From b3c53e0b3c853de0729acc144fc741916363af2f Mon Sep 17 00:00:00 2001 From: Julian Rojas Date: Wed, 3 Jul 2019 10:56:33 +0200 Subject: [PATCH 01/85] Bring Harm's work back --- README.md | 12 +- docs/index.html | 24 +- docs/js/example.js | 12 +- package-lock.json | 172 +++--- package.json | 5 + src/Planner.ts | 11 + src/analytics/isochrones/demo.html | 183 ++++++ src/analytics/isochrones/main.ts | 162 +++++ src/analytics/isochrones/util.ts | 52 ++ src/analytics/isochrones/visualize.ts | 189 ++++++ src/catalog.mivb.ts | 8 + src/catalog.tec.ts | 8 + src/demo.ts | 18 +- src/entities/footpaths/footpath.ts | 21 + src/entities/hydra/hydra.ts | 11 + src/entities/hydra/mapping.ts | 11 + src/entities/hydra/search.ts | 11 + src/entities/tiles/coordinate.ts | 11 + src/entities/tiles/node.ts | 22 + src/entities/tiles/registry.ts | 45 ++ src/entities/tiles/set.ts | 18 + src/entities/tiles/tile.ts | 59 ++ src/entities/tiles/way.ts | 75 +++ src/enums/Access.ts | 19 + src/enums/Barrier.ts | 20 + src/enums/Construction.ts | 5 + src/enums/Crossing.ts | 6 + src/enums/Cycleway.ts | 11 + src/enums/Footway.ts | 5 + src/enums/Highway.ts | 30 + src/enums/Oneway.ts | 7 + src/enums/Smoothness.ts | 12 + src/enums/Surface.ts | 22 + src/enums/TrackType.ts | 9 + src/fetcher/connections/IConnection.ts | 4 +- .../hydra/ConnectionsPageParser.ts | 2 +- .../tests/data/ingelmunster-ghent.ts | 352 +++++------ src/fetcher/connections/tests/data/joining.ts | 6 +- .../connections/tests/data/splitting.ts | 6 +- .../footpaths/FootpathsProviderDefault.ts | 51 ++ src/fetcher/footpaths/IFootpathsProvider.ts | 6 + .../stops/ld-fetch/StopsFetcherLDFetch.ts | 1 + src/fetcher/tiles/IRoutableTileFetcher.ts | 5 + src/fetcher/tiles/IRoutableTileProvider.ts | 19 + .../tiles/RoutableTileFetcherDefault.test.ts | 32 + .../tiles/RoutableTileFetcherDefault.ts | 99 +++ .../tiles/RoutableTileFetcherExtended.ts | 58 ++ .../tiles/RoutableTileProviderDefault.ts | 95 +++ src/index.ts | 6 +- src/index_2.ts | 96 +++ src/inversify.config.ts | 50 +- src/isochrone.demo.ts | 7 + src/loader/common.ts | 11 + src/loader/ldloader.ts | 95 +++ src/loader/results/common.ts | 6 + src/loader/results/index.ts | 18 + src/loader/results/single.ts | 13 + src/loader/views/index.ts | 10 + src/loader/views/single.ts | 121 ++++ src/pathfinding/PathfinderProvider.ts | 235 ++++++++ .../dijkstra-tree/dijkstra-tree-js.ts | 119 ++++ src/pathfinding/dijkstra/dijkstra-js.ts | 93 +++ src/pathfinding/graph.ts | 51 ++ src/pathfinding/pathfinder.ts | 34 ++ .../data-structure/IArrivalTimeByTransfers.ts | 6 +- .../data-structure/MultiConnectionQueue.ts | 53 ++ .../CSA/data-structure/stops/Profile.ts | 4 +- .../trips/IEarliestArrivalByTrip.ts | 2 +- .../public-transport/CSA/util/ProfileUtil.ts | 6 +- .../CSAEarliestArrival.test.ts | 25 +- .../public-transport/CSAEarliestArrival.ts | 568 +++++++----------- src/planner/public-transport/CSAProfile.ts | 10 +- .../JourneyExtractorEarliestArrival.ts | 72 +-- src/planner/road/RoadPlannerPathfinding.ts | 125 ++++ src/planner/stops/IReachableStopsFinder.ts | 4 +- .../stops/ReachableStopsFinderDelaunay.ts | 109 ++++ .../stops/ReachableStopsFinderFootpaths.ts | 52 ++ .../stops/ReachableStopsFinderRoadPlanner.ts | 43 +- .../ReachableStopsFinderRoadPlannerCached.ts | 9 +- src/profile/PedestrianProfile.ts | 93 +++ src/profile/Profile.ts | 23 + src/profile/ProfileProvider.ts | 57 ++ .../LocationResolverConvenience.ts | 13 +- .../QueryRunnerEarliestArrivalFirst.ts | 1 - .../exponential/ExponentialQueryIterator.ts | 4 + src/types.ts | 13 + src/uri/constants.ts | 8 + src/uri/uri.ts | 14 + src/util/Geo.ts | 4 + src/util/UnionFind.ts | 52 ++ webpack.config.js | 3 + 91 files changed, 3606 insertions(+), 754 deletions(-) create mode 100644 src/analytics/isochrones/demo.html create mode 100644 src/analytics/isochrones/main.ts create mode 100644 src/analytics/isochrones/util.ts create mode 100644 src/analytics/isochrones/visualize.ts create mode 100644 src/catalog.mivb.ts create mode 100644 src/catalog.tec.ts create mode 100644 src/entities/footpaths/footpath.ts create mode 100644 src/entities/hydra/hydra.ts create mode 100644 src/entities/hydra/mapping.ts create mode 100644 src/entities/hydra/search.ts create mode 100644 src/entities/tiles/coordinate.ts create mode 100644 src/entities/tiles/node.ts create mode 100644 src/entities/tiles/registry.ts create mode 100644 src/entities/tiles/set.ts create mode 100644 src/entities/tiles/tile.ts create mode 100644 src/entities/tiles/way.ts create mode 100644 src/enums/Access.ts create mode 100644 src/enums/Barrier.ts create mode 100644 src/enums/Construction.ts create mode 100644 src/enums/Crossing.ts create mode 100644 src/enums/Cycleway.ts create mode 100644 src/enums/Footway.ts create mode 100644 src/enums/Highway.ts create mode 100644 src/enums/Oneway.ts create mode 100644 src/enums/Smoothness.ts create mode 100644 src/enums/Surface.ts create mode 100644 src/enums/TrackType.ts create mode 100644 src/fetcher/footpaths/FootpathsProviderDefault.ts create mode 100644 src/fetcher/footpaths/IFootpathsProvider.ts create mode 100644 src/fetcher/tiles/IRoutableTileFetcher.ts create mode 100644 src/fetcher/tiles/IRoutableTileProvider.ts create mode 100644 src/fetcher/tiles/RoutableTileFetcherDefault.test.ts create mode 100644 src/fetcher/tiles/RoutableTileFetcherDefault.ts create mode 100644 src/fetcher/tiles/RoutableTileFetcherExtended.ts create mode 100644 src/fetcher/tiles/RoutableTileProviderDefault.ts create mode 100644 src/index_2.ts create mode 100644 src/isochrone.demo.ts create mode 100644 src/loader/common.ts create mode 100644 src/loader/ldloader.ts create mode 100644 src/loader/results/common.ts create mode 100644 src/loader/results/index.ts create mode 100644 src/loader/results/single.ts create mode 100644 src/loader/views/index.ts create mode 100644 src/loader/views/single.ts create mode 100644 src/pathfinding/PathfinderProvider.ts create mode 100644 src/pathfinding/dijkstra-tree/dijkstra-tree-js.ts create mode 100644 src/pathfinding/dijkstra/dijkstra-js.ts create mode 100644 src/pathfinding/graph.ts create mode 100644 src/pathfinding/pathfinder.ts create mode 100644 src/planner/public-transport/CSA/data-structure/MultiConnectionQueue.ts create mode 100644 src/planner/road/RoadPlannerPathfinding.ts create mode 100644 src/planner/stops/ReachableStopsFinderDelaunay.ts create mode 100644 src/planner/stops/ReachableStopsFinderFootpaths.ts create mode 100644 src/profile/PedestrianProfile.ts create mode 100644 src/profile/Profile.ts create mode 100644 src/profile/ProfileProvider.ts create mode 100644 src/uri/constants.ts create mode 100644 src/uri/uri.ts create mode 100644 src/util/UnionFind.ts diff --git a/README.md b/README.md index 34fbba2c..76b2991b 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ $ npm install plannerjs Include it in the browser: ```html - + ``` Include it in your JavaScript project: @@ -22,7 +22,7 @@ import Planner from 'plannerjs'; Use it in both environments: ```javascript -const planner = new Planner(); +const planner = new Planner.Planner(); planner.query({ from: "http://irail.be/stations/NMBS/008812005", // Brussels North @@ -36,10 +36,10 @@ planner.query({ maximumWalkingDistance: 200, // meters - minimumTransferDuration: Planner.Units.fromMinutes(1), - maximumTransferDuration: Planner.Units.fromMinutes(30), + minimumTransferDuration: Planner.Planner.Units.fromMinutes(1), + maximumTransferDuration: Planner.Planner.Units.fromMinutes(30), - maximumTravelDuration: Planner.Units.fromHours(1.5), + maximumTravelDuration: Planner.Planner.Units.fromHours(1.5), maximumTransfers: 4, }) @@ -57,7 +57,7 @@ planner.query({ ## Documentation -For further instructions, follow the documentation at https://openplannerteam.github.io/planner.js/ +For further instructions, follow the documentation at https://planner.js.org/ ## Developing diff --git a/docs/index.html b/docs/index.html index f3786b3d..6d150133 100644 --- a/docs/index.html +++ b/docs/index.html @@ -2,9 +2,9 @@ Doc Planner.js – The ultimate JavaScript route planning framework - - - + + + @@ -34,18 +34,12 @@

Getting Started

Demo

-

- See the Pen Using the new JavaScript route - planner on CodePen. -

+

+ See the Pen + Planner.js results NMBS by Julian Rojas (@julianrojas87) + on CodePen. +

+

Architecture

diff --git a/docs/js/example.js b/docs/js/example.js index b64c5f2b..17251d5d 100644 --- a/docs/js/example.js +++ b/docs/js/example.js @@ -12,7 +12,7 @@ L.tileLayer( } ).addTo(map); -const planner = new Planner(); +const planner = new Planner.Planner(); planner.prefetchStops(); planner.prefetchConnections(); @@ -293,7 +293,7 @@ function getRandomColor() { } function getTravelTime(path) { - return path.steps.reduce((time, step) => time + step.duration.minimum, 0) / 60000; + return path.steps.reduce((time, step) => time + step.duration.average, 0) / 60000; } function getTransferTime(path) { @@ -369,9 +369,9 @@ function addResultPanel(path, color) { const duration = document.createElement("div"); duration.className = "duration"; duration.innerHTML = - "Duration: minimum " + - step.duration.minimum / (60 * 1000) + - "min"; + "Duration: average " + + step.duration.average / (60 * 1000) + + " min"; details.appendChild(duration); } @@ -468,7 +468,7 @@ function runQuery(query) { to: query[1], minimumDepartureTime: new Date(), maximumWalkingDistance, - maximumTransferDuration: Planner.Units.fromMinutes(30), // 30 minutes + maximumTransferDuration: Planner.Planner.Units.fromMinutes(30), // 30 minutes minimumWalkingSpeed: 3 }) .take(amount) diff --git a/package-lock.json b/package-lock.json index 60e90144..27822215 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1044,6 +1044,23 @@ "lodash": "^4.17.4", "mkdirp": "^0.5.1", "source-map-support": "^0.4.15" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + }, + "source-map-support": { + "version": "0.4.18", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz", + "integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==", + "dev": true, + "requires": { + "source-map": "^0.5.6" + } + } } }, "babel-runtime": { @@ -1950,6 +1967,14 @@ "integrity": "sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA=", "dev": true }, + "d3-delaunay": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-4.1.5.tgz", + "integrity": "sha512-rBKVohmXT9+BrDicH8umAVUwtkfLIydVlWnpIEDUZ4l2e1vXCaKbypByF8tkN8TUUKnzJY0s8ldQEroeBRMO9Q==", + "requires": { + "delaunator": "^2.0.0" + } + }, "dashdash": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", @@ -2082,6 +2107,11 @@ } } }, + "delaunator": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-2.0.5.tgz", + "integrity": "sha512-GSYmkITO56erpQzv5Pw+8Vg769kurM16IVUq/AcMb5ZCJCtV7Z2agx9lJ7EbbLno8L099iH2d+hvAK34ZnsvIQ==" + }, "delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", @@ -2614,14 +2644,14 @@ "dev": true }, "fsevents": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz", - "integrity": "sha512-z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==", + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.9.tgz", + "integrity": "sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw==", "dev": true, "optional": true, "requires": { - "nan": "^2.9.2", - "node-pre-gyp": "^0.10.0" + "nan": "^2.12.1", + "node-pre-gyp": "^0.12.0" }, "dependencies": { "abbrev": { @@ -2643,7 +2673,7 @@ "optional": true }, "are-we-there-yet": { - "version": "1.1.4", + "version": "1.1.5", "bundled": true, "dev": true, "optional": true, @@ -2669,7 +2699,7 @@ } }, "chownr": { - "version": "1.0.1", + "version": "1.1.1", "bundled": true, "dev": true, "optional": true @@ -2699,16 +2729,16 @@ "optional": true }, "debug": { - "version": "2.6.9", + "version": "4.1.1", "bundled": true, "dev": true, "optional": true, "requires": { - "ms": "2.0.0" + "ms": "^2.1.1" } }, "deep-extend": { - "version": "0.5.1", + "version": "0.6.0", "bundled": true, "dev": true, "optional": true @@ -2757,7 +2787,7 @@ } }, "glob": { - "version": "7.1.2", + "version": "7.1.3", "bundled": true, "dev": true, "optional": true, @@ -2777,12 +2807,12 @@ "optional": true }, "iconv-lite": { - "version": "0.4.21", + "version": "0.4.24", "bundled": true, "dev": true, "optional": true, "requires": { - "safer-buffer": "^2.1.0" + "safer-buffer": ">= 2.1.2 < 3" } }, "ignore-walk": { @@ -2847,17 +2877,17 @@ "optional": true }, "minipass": { - "version": "2.2.4", + "version": "2.3.5", "bundled": true, "dev": true, "optional": true, "requires": { - "safe-buffer": "^5.1.1", + "safe-buffer": "^5.1.2", "yallist": "^3.0.0" } }, "minizlib": { - "version": "1.1.0", + "version": "1.2.1", "bundled": true, "dev": true, "optional": true, @@ -2875,35 +2905,35 @@ } }, "ms": { - "version": "2.0.0", + "version": "2.1.1", "bundled": true, "dev": true, "optional": true }, "needle": { - "version": "2.2.0", + "version": "2.3.0", "bundled": true, "dev": true, "optional": true, "requires": { - "debug": "^2.1.2", + "debug": "^4.1.0", "iconv-lite": "^0.4.4", "sax": "^1.2.4" } }, "node-pre-gyp": { - "version": "0.10.0", + "version": "0.12.0", "bundled": true, "dev": true, "optional": true, "requires": { "detect-libc": "^1.0.2", "mkdirp": "^0.5.1", - "needle": "^2.2.0", + "needle": "^2.2.1", "nopt": "^4.0.1", "npm-packlist": "^1.1.6", "npmlog": "^4.0.2", - "rc": "^1.1.7", + "rc": "^1.2.7", "rimraf": "^2.6.1", "semver": "^5.3.0", "tar": "^4" @@ -2920,13 +2950,13 @@ } }, "npm-bundled": { - "version": "1.0.3", + "version": "1.0.6", "bundled": true, "dev": true, "optional": true }, "npm-packlist": { - "version": "1.1.10", + "version": "1.4.1", "bundled": true, "dev": true, "optional": true, @@ -3003,12 +3033,12 @@ "optional": true }, "rc": { - "version": "1.2.7", + "version": "1.2.8", "bundled": true, "dev": true, "optional": true, "requires": { - "deep-extend": "^0.5.1", + "deep-extend": "^0.6.0", "ini": "~1.3.0", "minimist": "^1.2.0", "strip-json-comments": "~2.0.1" @@ -3038,16 +3068,16 @@ } }, "rimraf": { - "version": "2.6.2", + "version": "2.6.3", "bundled": true, "dev": true, "optional": true, "requires": { - "glob": "^7.0.5" + "glob": "^7.1.3" } }, "safe-buffer": { - "version": "5.1.1", + "version": "5.1.2", "bundled": true, "dev": true, "optional": true @@ -3065,7 +3095,7 @@ "optional": true }, "semver": { - "version": "5.5.0", + "version": "5.7.0", "bundled": true, "dev": true, "optional": true @@ -3118,17 +3148,17 @@ "optional": true }, "tar": { - "version": "4.4.1", + "version": "4.4.8", "bundled": true, "dev": true, "optional": true, "requires": { - "chownr": "^1.0.1", + "chownr": "^1.1.1", "fs-minipass": "^1.2.5", - "minipass": "^2.2.4", - "minizlib": "^1.1.0", + "minipass": "^2.3.4", + "minizlib": "^1.1.1", "mkdirp": "^0.5.0", - "safe-buffer": "^5.1.1", + "safe-buffer": "^5.1.2", "yallist": "^3.0.2" } }, @@ -3139,12 +3169,12 @@ "optional": true }, "wide-align": { - "version": "1.1.2", + "version": "1.1.3", "bundled": true, "dev": true, "optional": true, "requires": { - "string-width": "^1.0.2" + "string-width": "^1.0.2 || 2" } }, "wrappy": { @@ -3154,7 +3184,7 @@ "optional": true }, "yallist": { - "version": "3.0.2", + "version": "3.0.3", "bundled": true, "dev": true, "optional": true @@ -3251,12 +3281,12 @@ "dev": true }, "handlebars": { - "version": "4.0.12", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.0.12.tgz", - "integrity": "sha512-RhmTekP+FZL+XNhwS1Wf+bTTZpdLougwt5pcgA1tuz6Jcx0fpH/7z0qd71RKnZHBCxIRBHfBOnio4gViPemNzA==", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.1.2.tgz", + "integrity": "sha512-nvfrjqvt9xQ8Z/w0ijewdD/vvWDTOweBUm96NTr66Wfvo1mJenBLwcYmPs3TIBP5ruzYGD7Hx/DaM9RmhroGPw==", "dev": true, "requires": { - "async": "^2.5.0", + "neo-async": "^2.6.0", "optimist": "^0.6.1", "source-map": "^0.6.1", "uglify-js": "^3.1.4" @@ -4330,9 +4360,9 @@ "dev": true }, "js-yaml": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz", - "integrity": "sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==", + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", + "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", "dev": true, "requires": { "argparse": "^1.0.7", @@ -4852,9 +4882,9 @@ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" }, "nan": { - "version": "2.11.1", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.11.1.tgz", - "integrity": "sha512-iji6k87OSXa0CcrLl9z+ZiYSuR2o+c0bGuNmXdrhTQTakxytAFsC56SArGYoiHlJlFoHSnvmhpceZJaXkVuOtA==", + "version": "2.14.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz", + "integrity": "sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==", "dev": true, "optional": true }, @@ -4924,6 +4954,11 @@ "lodash": "4.x" } }, + "node-dijkstra": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/node-dijkstra/-/node-dijkstra-2.5.0.tgz", + "integrity": "sha1-D+t2xaBfNbVueG3m300zZK8o1Og=" + }, "node-forge": { "version": "0.7.6", "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.7.6.tgz", @@ -6850,20 +6885,13 @@ } }, "source-map-support": { - "version": "0.4.18", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz", - "integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==", + "version": "0.5.12", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.12.tgz", + "integrity": "sha512-4h2Pbvyy15EE02G+JOZpUCmqWJuqrs+sEkzewTm++BPi7Hvn/HwcqLAcNxYAyI0x13CpPPn+kMjl+hplXMHITQ==", "dev": true, "requires": { - "source-map": "^0.5.6" - }, - "dependencies": { - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - } + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" } }, "source-map-url": { @@ -7158,6 +7186,11 @@ "xtend": "~4.0.1" } }, + "tiles-in-bbox": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/tiles-in-bbox/-/tiles-in-bbox-1.0.2.tgz", + "integrity": "sha512-LTV5BK/9yb73DtS6C+2Y0J4fCPfu/hXW5BjH8DR7yeaE+ykWqaZmHVAKjCp7oL8ZkDxrxeLQhoq9FFYDHyyOzA==" + }, "timers-browserify": { "version": "2.0.10", "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz", @@ -7167,6 +7200,11 @@ "setimmediate": "^1.0.4" } }, + "tinyqueue": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/tinyqueue/-/tinyqueue-2.0.3.tgz", + "integrity": "sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==" + }, "tmpl": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz", @@ -7711,20 +7749,20 @@ "dev": true }, "uglify-js": { - "version": "3.4.9", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.9.tgz", - "integrity": "sha512-8CJsbKOtEbnJsTyv6LE6m6ZKniqMiFWmm9sRbopbkGs3gMPPfd3Fh8iIA4Ykv5MgaTbqHr4BaoGLJLZNhsrW1Q==", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.6.0.tgz", + "integrity": "sha512-W+jrUHJr3DXKhrsS7NUVxn3zqMOFn0hL/Ei6v0anCIMoKC93TjcflTagwIHLW7SfMFfiQuktQyFVCFHGUE0+yg==", "dev": true, "optional": true, "requires": { - "commander": "~2.17.1", + "commander": "~2.20.0", "source-map": "~0.6.1" }, "dependencies": { "commander": { - "version": "2.17.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz", - "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==", + "version": "2.20.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.0.tgz", + "integrity": "sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==", "dev": true, "optional": true } diff --git a/package.json b/package.json index bbcce882..6c9d830c 100644 --- a/package.json +++ b/package.json @@ -28,11 +28,15 @@ "dependencies": { "asynciterator": "^2.0.1", "asynciterator-promiseproxy": "^2.0.0", + "d3-delaunay": "^4.1.5", "haversine": "^1.1.0", "inversify": "^5.0.1", "isomorphic-fetch": "^2.2.1", "ldfetch": "^1.1.1-alpha", + "node-dijkstra": "^2.5.0", "reflect-metadata": "^0.1.12", + "tiles-in-bbox": "^1.0.2", + "tinyqueue": "^2.0.2", "uritemplate": "^0.3.4" }, "pre-commit": [ @@ -45,6 +49,7 @@ "jest": "^23.6.0", "pre-commit": "^1.2.2", "prettier": "1.14.3", + "source-map-support": "^0.5.11", "ts-jest": "^23.10.4", "ts-loader": "^5.3.0", "tslint": "^5.11.0", diff --git a/src/Planner.ts b/src/Planner.ts index f3cfaa36..34bd3699 100644 --- a/src/Planner.ts +++ b/src/Planner.ts @@ -10,6 +10,7 @@ import IStopsProvider from "./fetcher/stops/IStopsProvider"; import IPath from "./interfaces/IPath"; import IQuery from "./interfaces/IQuery"; import defaultContainer from "./inversify.config"; +import ProfileProvider from "./profile/ProfileProvider"; import IQueryRunner from "./query-runner/IQueryRunner"; import TYPES from "./types"; import Units from "./util/Units"; @@ -23,6 +24,7 @@ export default class Planner implements EventEmitter { private context: Context; private queryRunner: IQueryRunner; + private profileProvider: ProfileProvider; /** * Initializes a new Planner @@ -34,6 +36,7 @@ export default class Planner implements EventEmitter { this.context.setContainer(container); this.queryRunner = container.get(TYPES.QueryRunner); + this.profileProvider = container.get(TYPES.ProfileProvider); } /** @@ -125,7 +128,15 @@ export default class Planner implements EventEmitter { } } + public setProfileID(profileID: string) { + this.profileProvider.setActiveProfileID(profileID); + + return this; + } + public getAllStops(): Promise { + // fixme, why is this here? + // is this just for visualizations? const container = this.context.getContainer(); const stopsProvider = container.get(TYPES.StopsProvider); diff --git a/src/analytics/isochrones/demo.html b/src/analytics/isochrones/demo.html new file mode 100644 index 00000000..e7b9c430 --- /dev/null +++ b/src/analytics/isochrones/demo.html @@ -0,0 +1,183 @@ + + + + + Isochrone demo + + + + + + + +

+
+

+ Latitude:
+
+ Longitude:
+

+ +

+

+ Time (s):
+

+ +

+
+
+
+ +
+
+ + + + + + \ No newline at end of file diff --git a/src/analytics/isochrones/main.ts b/src/analytics/isochrones/main.ts new file mode 100644 index 00000000..13ad6a81 --- /dev/null +++ b/src/analytics/isochrones/main.ts @@ -0,0 +1,162 @@ +// @ts-ignore +import { EventEmitter, Listener } from "events"; +import "isomorphic-fetch"; +import "reflect-metadata"; +import inBBox from "tiles-in-bbox"; +import Context from "../../Context"; +import { RoutableTileCoordinate } from "../../entities/tiles/coordinate"; +import RoutableTileRegistry from "../../entities/tiles/registry"; +import IRoutableTileProvider from "../../fetcher/tiles/IRoutableTileProvider"; +import ILocation from "../../interfaces/ILocation"; +import defaultContainer from "../../inversify.config"; +import { IPathTree } from "../../pathfinding/pathfinder"; +import PathfinderProvider from "../../pathfinding/PathfinderProvider"; +import ProfileProvider from "../../profile/ProfileProvider"; +import TYPES from "../../types"; +import Geo from "../../util/Geo"; +import { toTileCoordinate } from "./util"; +import { visualizeIsochrone } from "./visualize"; + +// @ts-ignore +export default class IsochroneGenerator implements EventEmitter { + private context: Context; + + private pathfinderProvider: PathfinderProvider; + private tileProvider: IRoutableTileProvider; + private reachedTiles: Set; + private startPoint: ILocation; + private registry: RoutableTileRegistry; + private profileProvider: ProfileProvider; + + constructor(container = defaultContainer) { + this.context = container.get(TYPES.Context); + this.context.setContainer(container); + this.tileProvider = container.get(TYPES.RoutableTileProvider); + this.pathfinderProvider = container.get(TYPES.PathfinderProvider); + this.registry = container.get(TYPES.RoutableTileRegistry); + this.profileProvider = container.get(TYPES.ProfileProvider); + this.reachedTiles = new Set(); + } + + public addListener(type: string | symbol, listener: Listener): this { + this.context.addListener(type, listener); + + return this; + } + + public emit(type: string | symbol, ...args: any[]): boolean { + return this.context.emit(type, ...args); + } + + public listenerCount(type: string | symbol): number { + return this.context.listenerCount(type); + } + + public listeners(type: string | symbol): Listener[] { + return this.context.listeners(type); + } + + public on(type: string | symbol, listener: Listener): this { + this.context.on(type, listener); + + return this; + } + + public once(type: string | symbol, listener: Listener): this { + this.context.once(type, listener); + + return this; + } + + public removeAllListeners(type?: string | symbol): this { + this.context.removeAllListeners(type); + + return this; + } + + public removeListener(type: string | symbol, listener: Listener): this { + this.context.removeListener(type, listener); + + return this; + } + + public setMaxListeners(n: number): this { + this.context.setMaxListeners(n); + + return this; + } + + public async init(point: ILocation) { + this.startPoint = point; + await this.fetchInitialTiles(point); + } + + public async getIsochrone(maxDuration: number, reset = true) { + const pathfinder = this.pathfinderProvider.getShortestPathTreeAlgorithm(); + + // wait for all data to arrive + await this.tileProvider.wait(); + + let pathTree: IPathTree; + pathfinder.setUseWeightedCost(false); // we want the raw durations + if (reset) { + pathTree = await pathfinder.start(Geo.getId(this.startPoint), maxDuration); + } else { + pathTree = await pathfinder.continue(maxDuration); + } + + return visualizeIsochrone(this.registry, pathTree, maxDuration); + } + + private async fetchTile(coordinate: RoutableTileCoordinate) { + const tileId = this.tileProvider.getIdForTileCoords(coordinate); + if (!this.reachedTiles.has(tileId)) { + this.emit("TILE", coordinate); + this.reachedTiles.add(tileId); + + const pathfinder = this.pathfinderProvider.getShortestPathTreeAlgorithm(); + const tile = await this.tileProvider.getByTileCoords(coordinate); + const boundaryNodes: Set = new Set(); + + for (const nodeId of tile.getNodes()) { + pathfinder.removeBreakPoint(nodeId); + const node = this.registry.getNode(nodeId); + if (tile.contains(node)) { + boundaryNodes.add(nodeId); + } + } + + const self = this; + for (const nodeId of boundaryNodes) { + pathfinder.setBreakPoint(nodeId, async (on: string) => { + const node = self.registry.getNode(on); + const boundaryTileCoordinate = toTileCoordinate(node.latitude, node.longitude); + await self.fetchTile(boundaryTileCoordinate); + }); + } + } + } + + private async fetchInitialTiles(from: ILocation) { + const zoom = 14; + const padding = 0.01; + + const fromBBox = { + top: from.latitude + padding, + bottom: from.latitude - padding, + left: from.longitude - padding, + right: from.longitude + padding, + }; + + const fromTileCoords = inBBox.tilesInBbox(fromBBox, zoom).map((obj) => { + const coordinate = new RoutableTileCoordinate(zoom, obj.x, obj.y); + this.fetchTile(coordinate); + return coordinate; + }); + + // this won't download anything new + // but we need the tile data to embed the starting location + const fromTileset = await this.tileProvider.getMultipleByTileCoords(fromTileCoords); + this.pathfinderProvider.embedLocation(from, fromTileset); + } +} diff --git a/src/analytics/isochrones/util.ts b/src/analytics/isochrones/util.ts new file mode 100644 index 00000000..135934ce --- /dev/null +++ b/src/analytics/isochrones/util.ts @@ -0,0 +1,52 @@ +import { RoutableTileCoordinate } from "../../entities/tiles/coordinate"; +import ILocation from "../../interfaces/ILocation"; +import Geo from "../../util/Geo"; + +export function lat_to_tile(lat: number, zoom: number) { + // from https://wiki.openstreetmap.org/wiki/Slippy_map_tilenames + return Math.floor((1 - Math.log(Math.tan(lat * Math.PI / 180) + 1 / Math.cos(lat * Math.PI / 180)) / Math.PI) + / 2 * Math.pow(2, zoom)); +} + +export function long_to_tile(lon: number, zoom: number) { + // from https://wiki.openstreetmap.org/wiki/Slippy_map_tilenames + return Math.floor((lon + 180) / 360 * Math.pow(2, zoom)); +} + +export function toTileCoordinate(lat: number, long: number, zoom = 14): RoutableTileCoordinate { + return { + x: long_to_tile(long, zoom), + y: lat_to_tile(lat, zoom), + zoom, + }; +} + +export function edgesOfTriangle(t) { + // from https://mapbox.github.io/delaunator + return [3 * t, 3 * t + 1, 3 * t + 2]; +} + +export function pointsOfTriangle(delaunay, t) { + // from https://mapbox.github.io/delaunator + return edgesOfTriangle(t) + .map((e) => delaunay.triangles[e]); +} + +export function getNeighborTiles(coordinate: RoutableTileCoordinate): RoutableTileCoordinate[] { + const result = []; + + for (const xDelta of [-1, 0, 1]) { + for (const yDelta of [-1, 0, 1]) { + if (xDelta || yDelta) { + const neighbor = { + zoom: coordinate.zoom, + y: coordinate.y + yDelta, + x: coordinate.x + xDelta, + }; + result.push(neighbor); + } + } + } + + return result; +} diff --git a/src/analytics/isochrones/visualize.ts b/src/analytics/isochrones/visualize.ts new file mode 100644 index 00000000..20d7a49d --- /dev/null +++ b/src/analytics/isochrones/visualize.ts @@ -0,0 +1,189 @@ +import { Delaunay } from "d3-delaunay"; +import { RoutableTileNode } from "../../entities/tiles/node"; +import RoutableTileRegistry from "../../entities/tiles/registry"; +import ILocation from "../../interfaces/ILocation"; +import { IPathTree } from "../../pathfinding/pathfinder"; +import UnionFind from "../../util/UnionFind"; +import { pointsOfTriangle } from "./util"; + +// we make extensive use of the Delaunator library which uses indexes for everything +// we'll need this to get the corresponding RoutableTileNode for a given index +type NodeList = RoutableTileNode[]; + +// a list of boolean values, indicating whether or not the node with a given index has a specific label +type NodeLabelList = boolean[]; + +// A cluster of routable tile nodes +type NodeCluster = Set; + +// A ring is a list of connected geographical points. +type Ring = ILocation[]; + +// A polygon is represented as a list of rings. +// The first being the outer ring, the others being holes. +type Polygon = Ring[]; + +export function visualizeIsochrone(registry: RoutableTileRegistry, pathTree: IPathTree, maxCost: number) { + /** + * Isochrones are generated by applying a delaunay triangulisation to the road network nodes, + * Union-Find (= disjoint set) is used to find clusters of external/internal nodes. + * Each cluster will form one ring in the isochrone. + */ + + const nodes: NodeList = []; + const costs = {}; + for (const [id, branch] of Object.entries(pathTree)) { + const { duration } = branch; + const node = registry.getNode(id); + if (node && duration !== Infinity) { + nodes.push(node); + costs[node.id] = duration; + } + } + + nodes.push({ latitude: 90, longitude: 180, id: "1" }); + nodes.push({ latitude: -90, longitude: 180, id: "2" }); + nodes.push({ latitude: 90, longitude: -180, id: "3" }); + nodes.push({ latitude: -90, longitude: -180, id: "4" }); + + costs["1"] = Infinity; + costs["2"] = Infinity; + costs["3"] = Infinity; + costs["4"] = Infinity; + + const delaunay = createTriangulation(nodes); + const internalNodes: NodeLabelList = nodes.map((node) => costs[node.id] < maxCost); + const externalNodes: NodeLabelList = internalNodes.map((v) => !v); + const internalClusters = clusterNodes(nodes, internalNodes, delaunay); + const externalClusters = clusterNodes(nodes, externalNodes, delaunay); + + const polygons: Polygon[] = internalClusters + .filter((cluster) => cluster.size > 1) + .map((internalCluster) => + createPolygon(costs, maxCost, nodes, internalCluster, externalClusters, delaunay), + ); + + return { + isochrones: polygons.filter((p) => p.length > 0), + }; +} + +function createTriangulation(nodes: ILocation[]): Delaunay { + function getX(p: ILocation) { + return p.longitude; + } + + function getY(p: ILocation) { + return p.latitude; + } + + return Delaunay.from(nodes, getX, getY); +} + +function clusterNodes(allNodes: NodeList, relevantNodes: NodeLabelList, delaunay: Delaunay): NodeCluster[] { + /** + * Uses Union-Find to cluster the given (relevant) nodes based on the Delaunay triangulisation of all nodes. + * Returns an array of clusters. + */ + const forest = new UnionFind(allNodes.length); + + for (const nodeIndex of Array(allNodes.length).keys()) { + if (relevantNodes[nodeIndex]) { + const neighbors = delaunay.neighbors(nodeIndex); + for (const neighbor of neighbors) { + if (relevantNodes[neighbor]) { + forest.union(nodeIndex, neighbor); + } + } + } + } + + const clusters = forest.getClusters(); + + for (const key of Object.keys(clusters)) { + if (!relevantNodes[key]) { + delete clusters[key]; + } + } + + return Object.values(clusters); +} + +function createPolygon( + costs, + maxCost: number, + nodes: NodeList, + internalNodes: NodeCluster, + externalClusters: NodeCluster[], + delaunay: Delaunay, +): Polygon { + /** + * Creates a polygon for the given cluster of nodes that lie in an isochrone. + */ + const rings = []; + + // each cluster of external nodes yields a single ring. + // there's exactly one on the outside of the internal nodes cluster (because union-find) + // the others will form holes + for (const externalNodes of externalClusters) { + const borderLocations: ILocation[] = []; + const borderNodeIds = new Set(); + for (const nodeIndex of Array(nodes.length).keys()) { + if (!externalNodes.has(nodeIndex) && internalNodes.has(nodeIndex)) { + for (const neighbor of delaunay.neighbors(nodeIndex)) { + if (externalNodes.has(neighbor)) { + const point = pointBetween(nodes[nodeIndex], nodes[neighbor], costs, maxCost); + if (point) { + borderLocations.push(point); + } + } + } + } + } + + if (borderLocations.length > 0) { + const triangulation = createTriangulation(borderLocations); + const firstNode = triangulation.hull; + const ring = [borderLocations[firstNode.i]]; + let currentNode = firstNode.next; + while (currentNode.i !== firstNode.i) { + ring.push(borderLocations[currentNode.i]); + currentNode = currentNode.next; + } + rings.push(ring); + } + } + + // FIXME, the ring with the most nodes might not always be the outer ring + return rings + .filter((r) => r.length > 0) + .sort((a, b) => b.length - a.length); +} + +function pointBetween(node1: RoutableTileNode, node2: RoutableTileNode, costs, maxCost): ILocation { + const nodeCost1 = costs[node1.id]; + const nodeCost2 = costs[node2.id]; + + if (nodeCost1 === Infinity && nodeCost2 === Infinity) { + return null; + } else if (nodeCost1 === Infinity) { + return node2; + } else if (nodeCost2 === Infinity) { + return node1; + } + + const costDifference1 = Math.abs(nodeCost1 - maxCost); + const costDifference2 = Math.abs(nodeCost2 - maxCost); + const relDifference1 = 1 - costDifference1 / (costDifference1 + costDifference2); + const relDifference2 = 1 - costDifference2 / (costDifference1 + costDifference2); + + const weight = relDifference1 + relDifference2; + const latitude = (node1.latitude * relDifference1 + node2.latitude * relDifference2) / weight; + const longitude = (node1.longitude * relDifference1 + node2.longitude * relDifference2) / weight; + + if (isNaN(latitude) || isNaN(longitude)) { + return null; + } + + return { latitude, longitude }; +} diff --git a/src/catalog.mivb.ts b/src/catalog.mivb.ts new file mode 100644 index 00000000..d3882909 --- /dev/null +++ b/src/catalog.mivb.ts @@ -0,0 +1,8 @@ +import Catalog from "./Catalog"; +import TravelMode from "./enums/TravelMode"; + +const catalogMivb = new Catalog(); + +catalogMivb.addStopsSource("https://openplanner.ilabt.imec.be/mivb/stops"); + +export default catalogMivb; diff --git a/src/catalog.tec.ts b/src/catalog.tec.ts new file mode 100644 index 00000000..3e30627a --- /dev/null +++ b/src/catalog.tec.ts @@ -0,0 +1,8 @@ +import Catalog from "./Catalog"; +import TravelMode from "./enums/TravelMode"; + +const catalogTec = new Catalog(); + +catalogTec.addStopsSource("https://openplanner.ilabt.imec.be/tec/stops"); + +export default catalogTec; diff --git a/src/demo.ts b/src/demo.ts index beb2c7e9..1424a6c7 100644 --- a/src/demo.ts +++ b/src/demo.ts @@ -1,11 +1,11 @@ +import Planner from "."; import EventType from "./enums/EventType"; -import Planner from "./index"; import IPath from "./interfaces/IPath"; import Units from "./util/Units"; export default async (logResults) => { - const planner = new Planner(); + const planner = new Planner.Planner(); planner.prefetchStops(); planner.prefetchConnections(); @@ -17,10 +17,11 @@ export default async (logResults) => { // let logFetch = true; if (logResults) { - console.log("Start prefetch"); + console.log(`${new Date()} Start prefetch`); } planner + .setProfileID("PEDESTRIAN") .on(EventType.InvalidQuery, (error) => { console.log("InvalidQuery", error); }) @@ -56,13 +57,13 @@ export default async (logResults) => { }); } - return wait(5000) + return wait(10000) .then(() => new Promise((resolve, reject) => { if (logResults) { - console.log("Start query"); + console.log(`${new Date()} Start query`); } - const amount = 3; + const amount = 1; let i = 0; planner.query({ @@ -75,6 +76,10 @@ export default async (logResults) => { // to: "https://data.delijn.be/stops/200455", // Deinze weg op Grammene +456 from: "Ingelmunster", // Ingelmunster to: "http://irail.be/stations/NMBS/008892007", // Ghent-Sint-Pieters + // from: { latitude: 50.93278, longitude: 5.32665 }, // Pita Aladin, Hasselt + // to: { latitude: 50.7980187, longitude: 3.1877779 }, // Burger Pita Pasta, Menen + // from: "Hasselt", + // to: "Kortrijk", minimumDepartureTime: new Date(), maximumTransferDuration: Units.fromMinutes(30), }) @@ -86,6 +91,7 @@ export default async (logResults) => { ++i; if (logResults) { + console.log(new Date()); console.log(i); console.log(JSON.stringify(path, null, " ")); console.log("\n"); diff --git a/src/entities/footpaths/footpath.ts b/src/entities/footpaths/footpath.ts new file mode 100644 index 00000000..2d05f45e --- /dev/null +++ b/src/entities/footpaths/footpath.ts @@ -0,0 +1,21 @@ +import IStop from "../../fetcher/stops/IStop"; +import { DistanceM } from "../../interfaces/units"; + +export class Footpath { + public static create(id: string) { + return new Footpath(id); + } + + public from: string; + public to: string; + public distance: DistanceM; + public id: string; + + constructor(id: string) { + this.id = id; + } +} + +export interface IFootpathIndex { + [id: string]: Footpath; +} diff --git a/src/entities/hydra/hydra.ts b/src/entities/hydra/hydra.ts new file mode 100644 index 00000000..999808bc --- /dev/null +++ b/src/entities/hydra/hydra.ts @@ -0,0 +1,11 @@ +export class HydraEntity { + public static create(id) { + return new HydraEntity(id); + } + + public id: string; + + constructor(id: string) { + this.id = id; + } +} diff --git a/src/entities/hydra/mapping.ts b/src/entities/hydra/mapping.ts new file mode 100644 index 00000000..8f7b7e2b --- /dev/null +++ b/src/entities/hydra/mapping.ts @@ -0,0 +1,11 @@ +export class HydraTemplateMapping { + public static create(id?: string) { + return new HydraTemplateMapping(id); + } + + public id?: string; + + constructor(id?: string) { + this.id = id; + } +} diff --git a/src/entities/hydra/search.ts b/src/entities/hydra/search.ts new file mode 100644 index 00000000..cbcf0e54 --- /dev/null +++ b/src/entities/hydra/search.ts @@ -0,0 +1,11 @@ +export class HydraTemplate { + public static create(id?: string) { + return new HydraTemplate(id); + } + + public id?: string; + + constructor(id?: string) { + this.id = id; + } +} diff --git a/src/entities/tiles/coordinate.ts b/src/entities/tiles/coordinate.ts new file mode 100644 index 00000000..df331744 --- /dev/null +++ b/src/entities/tiles/coordinate.ts @@ -0,0 +1,11 @@ +export class RoutableTileCoordinate { + public zoom: number; + public x: number; + public y: number; + + constructor(zoom: number, x: number, y: number) { + this.zoom = zoom; + this.x = x; + this.y = y; + } +} diff --git a/src/entities/tiles/node.ts b/src/entities/tiles/node.ts new file mode 100644 index 00000000..c07aaf7c --- /dev/null +++ b/src/entities/tiles/node.ts @@ -0,0 +1,22 @@ +import Barrier from "../../enums/Barrier"; +import ILocation from "../../interfaces/ILocation"; + +export class RoutableTileNode implements ILocation { + public static create(id: string) { + return new RoutableTileNode(id); + } + + public latitude: number; + public longitude: number; + public id: string; + + public barrierKind?: Barrier; + + constructor(id: string) { + this.id = id; + } +} + +export interface IRoutableTileNodeIndex { + [id: string]: RoutableTileNode; +} diff --git a/src/entities/tiles/registry.ts b/src/entities/tiles/registry.ts new file mode 100644 index 00000000..66183169 --- /dev/null +++ b/src/entities/tiles/registry.ts @@ -0,0 +1,45 @@ +import { injectable } from "inversify"; +import { IRoutableTileNodeIndex, RoutableTileNode } from "./node"; +import { IRoutableTileWayIndex, RoutableTileWay } from "./way"; + +@injectable() +export default class RoutableTileRegistry { + private nodes: IRoutableTileNodeIndex; + private ways: IRoutableTileWayIndex; + + constructor() { + this.nodes = {}; + this.ways = {}; + } + + public registerNode(node: RoutableTileNode) { + this.nodes[node.id] = node; + } + + public registerWay(way: RoutableTileWay) { + if (!this.ways[way.id]) { + this.ways[way.id] = way; + } else { + // creates a new Way instance + // avoids overwriting data from the individual tile definitions + // otherwise ways might refer to nodes that aren't in the tile + this.ways[way.id] = way.mergeDefinitions(this.ways[way.id]); + } + } + + public getNode(id: string): RoutableTileNode { + return this.nodes[id]; + } + + public getWay(id: string): RoutableTileWay { + return this.ways[id]; + } + + public getNodes(): RoutableTileNode[] { + return Object.values(this.nodes); + } + + public getWays(): RoutableTileWay[] { + return Object.values(this.ways); + } +} diff --git a/src/entities/tiles/set.ts b/src/entities/tiles/set.ts new file mode 100644 index 00000000..f9c1b93b --- /dev/null +++ b/src/entities/tiles/set.ts @@ -0,0 +1,18 @@ +import { RoutableTile } from "./tile"; + +export class RoutableTileSet extends RoutableTile { + public tiles: RoutableTile[]; + + constructor(tiles: RoutableTile[], id?: string) { + let nodes = new Array(); + let ways = new Array(); + + for (const tile of tiles) { + nodes = nodes.concat(...tile.getNodes()); + ways = ways.concat(...tile.getWays()); + } + + super(id, new Set(nodes), new Set(ways)); + this.tiles = tiles; + } +} diff --git a/src/entities/tiles/tile.ts b/src/entities/tiles/tile.ts new file mode 100644 index 00000000..801c40bc --- /dev/null +++ b/src/entities/tiles/tile.ts @@ -0,0 +1,59 @@ +import ILocation from "../../interfaces/ILocation"; +import { RoutableTileCoordinate } from "./coordinate"; + +function tile_to_lat(coordinate: RoutableTileCoordinate) { + // from https://wiki.openstreetmap.org/wiki/Slippy_map_tilenames + const n = Math.PI - 2 * Math.PI * coordinate.y / Math.pow(2, coordinate.zoom); + return (180 / Math.PI * Math.atan(0.5 * (Math.exp(n) - Math.exp(-n)))); +} + +function tile_to_long(coordinate: RoutableTileCoordinate) { + // from https://wiki.openstreetmap.org/wiki/Slippy_map_tilenames + return (coordinate.x / Math.pow(2, coordinate.zoom) * 360 - 180); +} + +export class RoutableTile { + public id: string; + public coordinate?: RoutableTileCoordinate; + protected nodes: Set; + protected ways: Set; + + constructor(id: string, nodes: Set, ways: Set) { + this.id = id; + this.nodes = nodes; + this.ways = ways; + } + + public getWays() { + return this.ways; + } + + public getNodes() { + return this.nodes; + } + + public contains(location: ILocation): boolean { + const top = tile_to_lat(this.coordinate); + const left = tile_to_long(this.coordinate); + + const next = { + zoom: this.coordinate.zoom, + x: this.coordinate.x + 1, + y: this.coordinate.y + 1, + }; + + const bottom = tile_to_lat(next); + const right = tile_to_long(next); + + if (location.latitude > top || location.latitude < bottom) { + return false; + } else if (location.longitude < left || location.longitude > right) { + return false; + } + return true; + } +} + +export interface IRoutableTileIndex { + [id: string]: Promise; +} diff --git a/src/entities/tiles/way.ts b/src/entities/tiles/way.ts new file mode 100644 index 00000000..e5a3d7db --- /dev/null +++ b/src/entities/tiles/way.ts @@ -0,0 +1,75 @@ +import Access from "../../enums/Access"; +import Construction from "../../enums/Construction"; +import Crossing from "../../enums/Crossing"; +import Cycleway from "../../enums/Cycleway"; +import Footway from "../../enums/Footway"; +import Highway from "../../enums/Highway"; +import Oneway from "../../enums/Oneway"; +import Smoothness from "../../enums/Smoothness"; +import Surface from "../../enums/Surface"; +import TrackType from "../../enums/TrackType"; + +export class RoutableTileWay { + public static create(id: string) { + return new RoutableTileWay(id); + } + + public id: string; + public segments: string[][]; // ids of nodes that are part of this road + public name: string; + public reachable?: boolean; // not part of OSM but a result of preprocessing, do not use this (yet) + + public accessRestrictions?: Access; + public bicycleAccessRestrictions?: Access; + public constructionKind?: Construction; + public crossingKind?: Crossing; + public cyclewayKind?: Cycleway; + public footwayKind?: Footway; + public highwayKind: Highway; + public maxSpeed: number; + public motorVehicleAccessRestrictions?: Access; + public motorcarAccessRestrictions?: Access; + public onewayBicycleKind?: Oneway; + public onewayKind?: Oneway; + public smoothnessKind?: Smoothness; + public surfaceKind?: Surface; + public trackType?: TrackType; + public vehicleAccessRestrictions?: Access; + + constructor(id: string) { + this.id = id; + } + + public mergeDefinitions(other: RoutableTileWay): RoutableTileWay { + const result = new RoutableTileWay(this.id); + // copy data fields + Object.assign(result, this); + Object.assign(result, other); + // special cases + if (this.reachable === false || other.reachable === false) { + result.reachable = false; + } + // do not modify the existing objects, copy the lists + result.segments = []; + result.segments = result.segments.concat(this.segments); + result.segments = result.segments.concat(other.segments); + return result; + } + + public getParts(): Array<[string, string]> { + /** + * Returns pairs of node IDs that are connected because of this road. + */ + const result = []; + for (const segment of this.segments) { + for (let i = 0; i < segment.length - 1; i++) { + result.push([segment[i], segment[i + 1]]); + } + } + return result; + } +} + +export interface IRoutableTileWayIndex { + [id: string]: RoutableTileWay; +} diff --git a/src/enums/Access.ts b/src/enums/Access.ts new file mode 100644 index 00000000..7e44c5ee --- /dev/null +++ b/src/enums/Access.ts @@ -0,0 +1,19 @@ +enum Access { + Agricultural = "https://w3id.org/openstreetmap/terms#Agricultural", + Customers = "https://w3id.org/openstreetmap/terms#Customers", + Delivery = "https://w3id.org/openstreetmap/terms#Delivery", + Designated = "https://w3id.org/openstreetmap/terms#Designated", + Destination = "https://w3id.org/openstreetmap/terms#Destination", + Discouraged = "https://w3id.org/openstreetmap/terms#Discouraged", + Dismount = "https://w3id.org/openstreetmap/terms#Dismount", + Emergency = "https://w3id.org/openstreetmap/terms#Emergency", + Forestry = "https://w3id.org/openstreetmap/terms#Forestry", + No = "https://w3id.org/openstreetmap/terms#NoAccess", + Official = "https://w3id.org/openstreetmap/terms#Official", + Permissive = "https://w3id.org/openstreetmap/terms#Permissive", + Private = "https://w3id.org/openstreetmap/terms#Private", + UseSidepath = "https://w3id.org/openstreetmap/terms#UseSidepath", + Yes = "https://w3id.org/openstreetmap/terms#FreeAccess", +} + +export default Access; diff --git a/src/enums/Barrier.ts b/src/enums/Barrier.ts new file mode 100644 index 00000000..60edb2ea --- /dev/null +++ b/src/enums/Barrier.ts @@ -0,0 +1,20 @@ +enum Barrier { + Block = "https://w3id.org/openstreetmap/terms#Block", + Bollard = "https://w3id.org/openstreetmap/terms#Bollard", + BorderControl = "https://w3id.org/openstreetmap/terms#BorderControl", + BumpGate = "https://w3id.org/openstreetmap/terms#BumpGate", + BusTrap = "https://w3id.org/openstreetmap/terms#BusTrap", + CattleGrid = "https://w3id.org/openstreetmap/terms#CattleGrid", + Chain = "https://w3id.org/openstreetmap/terms#Chain", + CycleBarrier = "https://w3id.org/openstreetmap/terms#CycleBarrier", + Debris = "https://w3id.org/openstreetmap/terms#Debris", + Entrance = "https://w3id.org/openstreetmap/terms#Entrance", + Gate = "https://w3id.org/openstreetmap/terms#Gate", + LiftGate = "https://w3id.org/openstreetmap/terms#LiftGate", + SallyPort = "https://w3id.org/openstreetmap/terms#SallyPort", + SwingGate = "https://w3id.org/openstreetmap/terms#SwingGate", + TollBooth = "https://w3id.org/openstreetmap/terms#TollBooth", + Turnstile = "https://w3id.org/openstreetmap/terms#Turnstile", +} + +export default Barrier; diff --git a/src/enums/Construction.ts b/src/enums/Construction.ts new file mode 100644 index 00000000..f065c080 --- /dev/null +++ b/src/enums/Construction.ts @@ -0,0 +1,5 @@ +enum Construction { + Yes = "https://w3id.org/openstreetmap/terms#UnderConstruction", +} + +export default Construction; diff --git a/src/enums/Crossing.ts b/src/enums/Crossing.ts new file mode 100644 index 00000000..76bf8529 --- /dev/null +++ b/src/enums/Crossing.ts @@ -0,0 +1,6 @@ +enum Crossing { + Uncontrolled = "https://w3id.org/openstreetmap/terms#Uncontrolled", + Unmarked = "https://w3id.org/openstreetmap/terms#Unmarked", +} + +export default Crossing; diff --git a/src/enums/Cycleway.ts b/src/enums/Cycleway.ts new file mode 100644 index 00000000..126da528 --- /dev/null +++ b/src/enums/Cycleway.ts @@ -0,0 +1,11 @@ +enum Cycleway { + Lane = "https://w3id.org/openstreetmap/terms#Lane", + Opposite = "https://w3id.org/openstreetmap/terms#Opposite", + OppositeLane = "https://w3id.org/openstreetmap/terms#OppositeLane", + OppositeTrack = "https://w3id.org/openstreetmap/terms#OppositeTrack", + ShareBusway = "https://w3id.org/openstreetmap/terms#ShareBusway", + Shared = "https://w3id.org/openstreetmap/terms#Shared", + SharedLane = "https://w3id.org/openstreetmap/terms#SharedLane", +} + +export default Cycleway; diff --git a/src/enums/Footway.ts b/src/enums/Footway.ts new file mode 100644 index 00000000..2a35395e --- /dev/null +++ b/src/enums/Footway.ts @@ -0,0 +1,5 @@ +enum Footway { + Sidewalk = "https://w3id.org/openstreetmap/terms#Sidewalk", +} + +export default Footway; diff --git a/src/enums/Highway.ts b/src/enums/Highway.ts new file mode 100644 index 00000000..8ec64f6a --- /dev/null +++ b/src/enums/Highway.ts @@ -0,0 +1,30 @@ +enum Highway { + BridleWay = "https://w3id.org/openstreetmap/terms#BridleWay", + Crossing = "https://w3id.org/openstreetmap/terms#Crossing", + Cycleway = "https://w3id.org/openstreetmap/terms#CycleHighway", + Footway = "https://w3id.org/openstreetmap/terms#FootHighway", + Giveway = "https://w3id.org/openstreetmap/terms#Giveway", + LivingStreet = "https://w3id.org/openstreetmap/terms#LivingStreet", + Motorway = "https://w3id.org/openstreetmap/terms#Motorway", + MotorwayLink = "https://w3id.org/openstreetmap/terms#MotorwayLink", + Path = "https://w3id.org/openstreetmap/terms#Path", + Primary = "https://w3id.org/openstreetmap/terms#Primary", + PrimaryLink = "https://w3id.org/openstreetmap/terms#PrimaryLink", + Proposed = "https://w3id.org/openstreetmap/terms#Proposed", + Residential = "https://w3id.org/openstreetmap/terms#Residential", + Road = "https://w3id.org/openstreetmap/terms#Road", + Secondary = "https://w3id.org/openstreetmap/terms#Secondary", + SecondaryLink = "https://w3id.org/openstreetmap/terms#SecondaryLink", + Service = "https://w3id.org/openstreetmap/terms#Service", + Steps = "https://w3id.org/openstreetmap/terms#Steps", + Stop = "https://w3id.org/openstreetmap/terms#Stop", + Tertiary = "https://w3id.org/openstreetmap/terms#Tertiary", + TertiaryLink = "https://w3id.org/openstreetmap/terms#TertiaryLink", + Track = "https://w3id.org/openstreetmap/terms#Track", + TrafficSignals = "https://w3id.org/openstreetmap/terms#TrafficSignals", + Trunk = "https://w3id.org/openstreetmap/terms#Trunk", + TrunkLink = "https://w3id.org/openstreetmap/terms#TrunkLink", + Unclassified = "https://w3id.org/openstreetmap/terms#Unclassified", +} + +export default Highway; diff --git a/src/enums/Oneway.ts b/src/enums/Oneway.ts new file mode 100644 index 00000000..cc993d8a --- /dev/null +++ b/src/enums/Oneway.ts @@ -0,0 +1,7 @@ +enum Oneway { + InReverseOrder = "https://w3id.org/openstreetmap/terms#InReverseOrder", + BiDirectional = "https://w3id.org/openstreetmap/terms#BiDirectional", + InOrder = "https://w3id.org/openstreetmap/terms#BiDirectional", +} + +export default Oneway; diff --git a/src/enums/Smoothness.ts b/src/enums/Smoothness.ts new file mode 100644 index 00000000..8221004b --- /dev/null +++ b/src/enums/Smoothness.ts @@ -0,0 +1,12 @@ +enum Smoothness { + Bad = "https://w3id.org/openstreetmap/terms#Bad", + Excellent = "https://w3id.org/openstreetmap/terms#Excellent", + Good = "https://w3id.org/openstreetmap/terms#Good", + Horrible = "https://w3id.org/openstreetmap/terms#Horrible", + Impassable = "https://w3id.org/openstreetmap/terms#Impassable", + Intermediate = "https://w3id.org/openstreetmap/terms#Intermediate", + VeryBad = "https://w3id.org/openstreetmap/terms#VeryBad", + VeryHorrible = "https://w3id.org/openstreetmap/terms#VeryHorrible", +} + +export default Smoothness; diff --git a/src/enums/Surface.ts b/src/enums/Surface.ts new file mode 100644 index 00000000..bd408db2 --- /dev/null +++ b/src/enums/Surface.ts @@ -0,0 +1,22 @@ +enum Surface { + Asphalt = "https://w3id.org/openstreetmap/terms#Asphalt", + Cobblestone = "https://w3id.org/openstreetmap/terms#Cobblestone", + Compacted = "https://w3id.org/openstreetmap/terms#Compacted", + Concrete = "https://w3id.org/openstreetmap/terms#Concrete", + Dirt = "https://w3id.org/openstreetmap/terms#Dirt", + FineGravel = "https://w3id.org/openstreetmap/terms#FineGravel", + Grass = "https://w3id.org/openstreetmap/terms#Grass", + Gravel = "https://w3id.org/openstreetmap/terms#Gravel", + Ground = "https://w3id.org/openstreetmap/terms#Ground", + Mud = "https://w3id.org/openstreetmap/terms#Mud", + Paved = "https://w3id.org/openstreetmap/terms#Paved", + PavingStones = "https://w3id.org/openstreetmap/terms#PavingStones", + Pebblestone = "https://w3id.org/openstreetmap/terms#Pebblestone", + Sand = "https://w3id.org/openstreetmap/terms#Sand", + Sett = "https://w3id.org/openstreetmap/terms#Sett", + UnhewnCobblestone = "https://w3id.org/openstreetmap/terms#UnhewnCobblestone", + Unpaved = "https://w3id.org/openstreetmap/terms#Unpaved", + Wood = "https://w3id.org/openstreetmap/terms#Wood", +} + +export default Surface; diff --git a/src/enums/TrackType.ts b/src/enums/TrackType.ts new file mode 100644 index 00000000..0ad67020 --- /dev/null +++ b/src/enums/TrackType.ts @@ -0,0 +1,9 @@ +enum TrackType { + Grade1 = "https://w3id.org/openstreetmap/terms#Grade1", + Grade2 = "https://w3id.org/openstreetmap/terms#Grade2", + Grade3 = "https://w3id.org/openstreetmap/terms#Grade3", + Grade4 = "https://w3id.org/openstreetmap/terms#Grade4", + Grade5 = "https://w3id.org/openstreetmap/terms#Grade5", +} + +export default TrackType; diff --git a/src/fetcher/connections/IConnection.ts b/src/fetcher/connections/IConnection.ts index 19c9669c..aa0b1005 100644 --- a/src/fetcher/connections/IConnection.ts +++ b/src/fetcher/connections/IConnection.ts @@ -10,7 +10,7 @@ import { DurationMs } from "../../interfaces/units"; * for the actual arrival and departureTime. * The arrivalDelay and departureDelay then again contain the duration in which these times deviate * from the planned time. - * @property "gtfs:trip" (optional) an identifier for the trip this vehicle is making with this connection + * @property "tripId" (optional) an identifier for the trip this vehicle is making with this connection * @property nextConnection (optional) an identifier for the next connection the vehicle is going to make * @property TravelMode The type of vehicle that is used, chosen from an enum [[TravelMode]] */ @@ -27,9 +27,9 @@ export default interface IConnection { departureDelay?: DurationMs; nextConnection?: string[]; + tripId?: string; "gtfs:route"?: string; - "gtfs:trip"?: string; "gtfs:dropOffType"?: DropOffType; "gtfs:pickupType"?: PickupType; "gtfs:headsign"?: string; diff --git a/src/fetcher/connections/hydra/ConnectionsPageParser.ts b/src/fetcher/connections/hydra/ConnectionsPageParser.ts index 084d34f2..72459c65 100644 --- a/src/fetcher/connections/hydra/ConnectionsPageParser.ts +++ b/src/fetcher/connections/hydra/ConnectionsPageParser.ts @@ -68,7 +68,7 @@ export default class ConnectionsPageParser { "http://semweb.mmlab.be/ns/linkedconnections#nextConnection": "nextConnection", "http://vocab.gtfs.org/terms#route": "gtfs:route", - "http://vocab.gtfs.org/terms#trip": "gtfs:trip", + "http://vocab.gtfs.org/terms#trip": "tripId", "http://vocab.gtfs.org/terms#dropOffType": "gtfs:dropOffType", "http://vocab.gtfs.org/terms#pickupType": "gtfs:pickupType", "http://vocab.gtfs.org/terms#headsign": "gtfs:headsign", diff --git a/src/fetcher/connections/tests/data/ingelmunster-ghent.ts b/src/fetcher/connections/tests/data/ingelmunster-ghent.ts index d4c5f019..80ae830d 100644 --- a/src/fetcher/connections/tests/data/ingelmunster-ghent.ts +++ b/src/fetcher/connections/tests/data/ingelmunster-ghent.ts @@ -3,242 +3,242 @@ import TravelMode from "../../../../enums/TravelMode"; const connections = [ { value: - { - "arrivalDelay": 0, - "travelMode": TravelMode.Train, - "departureDelay": 0, - "id": "http://irail.be/connections/8891264/20181106/IC2310", - "arrivalStop": "http://irail.be/stations/NMBS/008891314", - "arrivalTime": new Date("2018-11-06T10:30:00.000Z"), - "departureStop": "http://irail.be/stations/NMBS/008891264", - "departureTime": new Date("2018-11-06T10:24:00.000Z"), - "gtfs:trip": "http://irail.be/vehicle/IC2310/20181106", - }, + { + arrivalDelay: 0, + travelMode: TravelMode.Train, + departureDelay: 0, + id: "http://irail.be/connections/8891264/20181106/IC2310", + arrivalStop: "http://irail.be/stations/NMBS/008891314", + arrivalTime: new Date("2018-11-06T10:30:00.000Z"), + departureStop: "http://irail.be/stations/NMBS/008891264", + departureTime: new Date("2018-11-06T10:24:00.000Z"), + tripId: "http://irail.be/vehicle/IC2310/20181106", + }, done: false, }, { value: - { - "arrivalDelay": 0, - "travelMode": TravelMode.Train, - "departureDelay": 0, - "id": "http://irail.be/connections/8891314/20181106/IC2310", - "arrivalStop": "http://irail.be/stations/NMBS/008892205", - "arrivalTime": new Date("2018-11-06T10:35:00.000Z"), - "departureStop": "http://irail.be/stations/NMBS/008891314", - "departureTime": new Date("2018-11-06T10:31:00.000Z"), - "gtfs:trip": "http://irail.be/vehicle/IC2310/20181106", - }, + { + arrivalDelay: 0, + travelMode: TravelMode.Train, + departureDelay: 0, + id: "http://irail.be/connections/8891314/20181106/IC2310", + arrivalStop: "http://irail.be/stations/NMBS/008892205", + arrivalTime: new Date("2018-11-06T10:35:00.000Z"), + departureStop: "http://irail.be/stations/NMBS/008891314", + departureTime: new Date("2018-11-06T10:31:00.000Z"), + tripId: "http://irail.be/vehicle/IC2310/20181106", + }, done: false, }, { value: - { - "arrivalDelay": 0, - "travelMode": TravelMode.Train, - "departureDelay": 0, - "id": "http://irail.be/connections/8892205/20181106/IC2310", - "arrivalStop": "http://irail.be/stations/NMBS/008896800", - "arrivalTime": new Date("2018-11-06T10:43:00.000Z"), - "departureStop": "http://irail.be/stations/NMBS/008892205", - "departureTime": new Date("2018-11-06T10:36:00.000Z"), - "gtfs:trip": "http://irail.be/vehicle/IC2310/20181106", - }, + { + arrivalDelay: 0, + travelMode: TravelMode.Train, + departureDelay: 0, + id: "http://irail.be/connections/8892205/20181106/IC2310", + arrivalStop: "http://irail.be/stations/NMBS/008896800", + arrivalTime: new Date("2018-11-06T10:43:00.000Z"), + departureStop: "http://irail.be/stations/NMBS/008892205", + departureTime: new Date("2018-11-06T10:36:00.000Z"), + tripId: "http://irail.be/vehicle/IC2310/20181106", + }, done: false, }, { value: - { - "arrivalDelay": 0, - "travelMode": TravelMode.Train, - "departureDelay": 0, - "id": "http://irail.be/connections/8896800/20181106/IC2310", - "arrivalStop": "http://irail.be/stations/NMBS/008896909", - "arrivalTime": new Date("2018-11-06T10:50:00.000Z"), - "departureStop": "http://irail.be/stations/NMBS/008896800", - "departureTime": new Date("2018-11-06T10:44:00.000Z"), - "gtfs:trip": "http://irail.be/vehicle/IC2310/20181106", - }, + { + arrivalDelay: 0, + travelMode: TravelMode.Train, + departureDelay: 0, + id: "http://irail.be/connections/8896800/20181106/IC2310", + arrivalStop: "http://irail.be/stations/NMBS/008896909", + arrivalTime: new Date("2018-11-06T10:50:00.000Z"), + departureStop: "http://irail.be/stations/NMBS/008896800", + departureTime: new Date("2018-11-06T10:44:00.000Z"), + tripId: "http://irail.be/vehicle/IC2310/20181106", + }, done: false, }, { value: - { - "arrivalDelay": 0, - "travelMode": TravelMode.Train, - "departureDelay": 0, - "id": "http://irail.be/connections/8896909/20181106/IC2310", - "arrivalStop": "http://irail.be/stations/NMBS/008896925", - "arrivalTime": new Date("2018-11-06T10:56:00.000Z"), - "departureStop": "http://irail.be/stations/NMBS/008896909", - "departureTime": new Date("2018-11-06T10:51:00.000Z"), - "gtfs:trip": "http://irail.be/vehicle/IC2310/20181106", - }, + { + arrivalDelay: 0, + travelMode: TravelMode.Train, + departureDelay: 0, + id: "http://irail.be/connections/8896909/20181106/IC2310", + arrivalStop: "http://irail.be/stations/NMBS/008896925", + arrivalTime: new Date("2018-11-06T10:56:00.000Z"), + departureStop: "http://irail.be/stations/NMBS/008896909", + departureTime: new Date("2018-11-06T10:51:00.000Z"), + tripId: "http://irail.be/vehicle/IC2310/20181106", + }, done: false, }, { value: - { - "arrivalDelay": 0, - "travelMode": TravelMode.Train, - "departureDelay": 0, - "id": "http://irail.be/connections/8896925/20181106/IC2310", - "arrivalStop": "http://irail.be/stations/NMBS/008896008", - "arrivalTime": new Date("2018-11-06T11:05:00.000Z"), - "departureStop": "http://irail.be/stations/NMBS/008896925", - "departureTime": new Date("2018-11-06T10:56:00.000Z"), - "gtfs:trip": "http://irail.be/vehicle/IC2310/20181106", - }, + { + arrivalDelay: 0, + travelMode: TravelMode.Train, + departureDelay: 0, + id: "http://irail.be/connections/8896925/20181106/IC2310", + arrivalStop: "http://irail.be/stations/NMBS/008896008", + arrivalTime: new Date("2018-11-06T11:05:00.000Z"), + departureStop: "http://irail.be/stations/NMBS/008896925", + departureTime: new Date("2018-11-06T10:56:00.000Z"), + tripId: "http://irail.be/vehicle/IC2310/20181106", + }, done: false, }, { value: - { - "arrivalDelay": 0, - "travelMode": TravelMode.Train, - "departureDelay": 0, - "id": "http://irail.be/connections/8896008/20181106/IC2310", - "arrivalStop": "http://irail.be/stations/NMBS/008892601", - "arrivalTime": new Date("2018-11-06T11:29:00.000Z"), - "departureStop": "http://irail.be/stations/NMBS/008896008", - "departureTime": new Date("2018-11-06T11:12:00.000Z"), - "gtfs:trip": "http://irail.be/vehicle/IC2310/20181106", - }, + { + arrivalDelay: 0, + travelMode: TravelMode.Train, + departureDelay: 0, + id: "http://irail.be/connections/8896008/20181106/IC2310", + arrivalStop: "http://irail.be/stations/NMBS/008892601", + arrivalTime: new Date("2018-11-06T11:29:00.000Z"), + departureStop: "http://irail.be/stations/NMBS/008896008", + departureTime: new Date("2018-11-06T11:12:00.000Z"), + tripId: "http://irail.be/vehicle/IC2310/20181106", + }, done: false, }, { value: - { - "arrivalDelay": 0, - "travelMode": TravelMode.Train, - "departureDelay": 0, - "id": "http://irail.be/connections/8896008/20181106/IC412", - "arrivalStop": "http://irail.be/stations/NMBS/008896115", - "arrivalTime": new Date("2018-11-06T11:22:00.000Z"), - "departureStop": "http://irail.be/stations/NMBS/008896008", - "departureTime": new Date("2018-11-06T11:17:00.000Z"), - "gtfs:trip": "http://irail.be/vehicle/IC412/20181106", - }, + { + arrivalDelay: 0, + travelMode: TravelMode.Train, + departureDelay: 0, + id: "http://irail.be/connections/8896008/20181106/IC412", + arrivalStop: "http://irail.be/stations/NMBS/008896115", + arrivalTime: new Date("2018-11-06T11:22:00.000Z"), + departureStop: "http://irail.be/stations/NMBS/008896008", + departureTime: new Date("2018-11-06T11:17:00.000Z"), + tripId: "http://irail.be/vehicle/IC412/20181106", + }, done: false, }, { value: - { - "arrivalDelay": 0, - "travelMode": TravelMode.Train, - "departureDelay": 0, - "id": "http://irail.be/connections/8896115/20181106/IC412", - "arrivalStop": "http://irail.be/stations/NMBS/008896149", - "arrivalTime": new Date("2018-11-06T11:29:00.000Z"), - "departureStop": "http://irail.be/stations/NMBS/008896115", - "departureTime": new Date("2018-11-06T11:23:00.000Z"), - "gtfs:trip": "http://irail.be/vehicle/IC412/20181106", - }, + { + arrivalDelay: 0, + travelMode: TravelMode.Train, + departureDelay: 0, + id: "http://irail.be/connections/8896115/20181106/IC412", + arrivalStop: "http://irail.be/stations/NMBS/008896149", + arrivalTime: new Date("2018-11-06T11:29:00.000Z"), + departureStop: "http://irail.be/stations/NMBS/008896115", + departureTime: new Date("2018-11-06T11:23:00.000Z"), + tripId: "http://irail.be/vehicle/IC412/20181106", + }, done: false, }, { value: - { - "arrivalDelay": 0, - "travelMode": TravelMode.Train, - "departureDelay": 0, - "id": "http://irail.be/connections/8896149/20181106/IC412", - "arrivalStop": "http://irail.be/stations/NMBS/008892106", - "arrivalTime": new Date("2018-11-06T11:37:00.000Z"), - "departureStop": "http://irail.be/stations/NMBS/008896149", - "departureTime": new Date("2018-11-06T11:30:00.000Z"), - "gtfs:trip": "http://irail.be/vehicle/IC412/20181106", - }, + { + arrivalDelay: 0, + travelMode: TravelMode.Train, + departureDelay: 0, + id: "http://irail.be/connections/8896149/20181106/IC412", + arrivalStop: "http://irail.be/stations/NMBS/008892106", + arrivalTime: new Date("2018-11-06T11:37:00.000Z"), + departureStop: "http://irail.be/stations/NMBS/008896149", + departureTime: new Date("2018-11-06T11:30:00.000Z"), + tripId: "http://irail.be/vehicle/IC412/20181106", + }, done: false, }, { value: - { - "arrivalDelay": 0, - "travelMode": TravelMode.Train, - "departureDelay": 0, - "id": "http://irail.be/connections/8892601/20181106/IC2310", - "arrivalStop": "http://irail.be/stations/NMBS/008895208", - "arrivalTime": new Date("2018-11-06T11:44:00.000Z"), - "departureStop": "http://irail.be/stations/NMBS/008892601", - "departureTime": new Date("2018-11-06T11:32:00.000Z"), - "gtfs:trip": "http://irail.be/vehicle/IC2310/20181106", - }, + { + arrivalDelay: 0, + travelMode: TravelMode.Train, + departureDelay: 0, + id: "http://irail.be/connections/8892601/20181106/IC2310", + arrivalStop: "http://irail.be/stations/NMBS/008895208", + arrivalTime: new Date("2018-11-06T11:44:00.000Z"), + departureStop: "http://irail.be/stations/NMBS/008892601", + departureTime: new Date("2018-11-06T11:32:00.000Z"), + tripId: "http://irail.be/vehicle/IC2310/20181106", + }, done: false, }, { value: - { - "arrivalDelay": 0, - "travelMode": TravelMode.Train, - "departureDelay": 0, - "id": "http://irail.be/connections/8892106/20181106/IC412", - "arrivalStop": "http://irail.be/stations/NMBS/008892080", - "arrivalTime": new Date("2018-11-06T11:43:00.000Z"), - "departureStop": "http://irail.be/stations/NMBS/008892106", - "departureTime": new Date("2018-11-06T11:38:00.000Z"), - "gtfs:trip": "http://irail.be/vehicle/IC412/20181106", - }, + { + arrivalDelay: 0, + travelMode: TravelMode.Train, + departureDelay: 0, + id: "http://irail.be/connections/8892106/20181106/IC412", + arrivalStop: "http://irail.be/stations/NMBS/008892080", + arrivalTime: new Date("2018-11-06T11:43:00.000Z"), + departureStop: "http://irail.be/stations/NMBS/008892106", + departureTime: new Date("2018-11-06T11:38:00.000Z"), + tripId: "http://irail.be/vehicle/IC412/20181106", + }, done: false, }, { value: - { - "arrivalDelay": 0, - "travelMode": TravelMode.Train, - "departureDelay": 0, - "id": "http://irail.be/connections/8892080/20181106/IC412", - "arrivalStop": "http://irail.be/stations/NMBS/008892007", - "arrivalTime": new Date("2018-11-06T11:51:00.000Z"), - "departureStop": "http://irail.be/stations/NMBS/008892080", - "departureTime": new Date("2018-11-06T11:44:00.000Z"), - "gtfs:trip": "http://irail.be/vehicle/IC412/20181106", - }, + { + arrivalDelay: 0, + travelMode: TravelMode.Train, + departureDelay: 0, + id: "http://irail.be/connections/8892080/20181106/IC412", + arrivalStop: "http://irail.be/stations/NMBS/008892007", + arrivalTime: new Date("2018-11-06T11:51:00.000Z"), + departureStop: "http://irail.be/stations/NMBS/008892080", + departureTime: new Date("2018-11-06T11:44:00.000Z"), + tripId: "http://irail.be/vehicle/IC412/20181106", + }, done: false, }, { value: - { - "arrivalDelay": 0, - "travelMode": TravelMode.Train, - "departureDelay": 0, - "id": "http://irail.be/connections/8895208/20181106/IC2310", - "arrivalStop": "http://irail.be/stations/NMBS/008895802", - "arrivalTime": new Date("2018-11-06T12:02:00.000Z"), - "departureStop": "http://irail.be/stations/NMBS/008895208", - "departureTime": new Date("2018-11-06T11:46:00.000Z"), - "gtfs:trip": "http://irail.be/vehicle/IC2310/20181106", - }, + { + arrivalDelay: 0, + travelMode: TravelMode.Train, + departureDelay: 0, + id: "http://irail.be/connections/8895208/20181106/IC2310", + arrivalStop: "http://irail.be/stations/NMBS/008895802", + arrivalTime: new Date("2018-11-06T12:02:00.000Z"), + departureStop: "http://irail.be/stations/NMBS/008895208", + departureTime: new Date("2018-11-06T11:46:00.000Z"), + tripId: "http://irail.be/vehicle/IC2310/20181106", + }, done: false, }, { value: - { - "id": "http://irail.be/connections/8895802/20181106/IC2310", - "arrivalStop": "http://irail.be/stations/NMBS/008814001", - "arrivalTime": new Date("2018-11-06T12:20:00.000Z"), - "arrivalDelay": 0, - "travelMode": TravelMode.Train, - "departureStop": "http://irail.be/stations/NMBS/008895802", - "departureTime": new Date("2018-11-06T12:05:00.000Z"), - "departureDelay": 0, - "gtfs:trip": "http://irail.be/vehicle/IC2310/20181106", - }, + { + id: "http://irail.be/connections/8895802/20181106/IC2310", + arrivalStop: "http://irail.be/stations/NMBS/008814001", + arrivalTime: new Date("2018-11-06T12:20:00.000Z"), + arrivalDelay: 0, + travelMode: TravelMode.Train, + departureStop: "http://irail.be/stations/NMBS/008895802", + departureTime: new Date("2018-11-06T12:05:00.000Z"), + departureDelay: 0, + tripId: "http://irail.be/vehicle/IC2310/20181106", + }, done: false, }, { value: - { - "id": "http://irail.be/connections/8814001/20181106/IC2310", - "arrivalStop": "http://irail.be/stations/NMBS/008813003", - "arrivalTime": new Date("2018-11-06T12:26:00.000Z"), - "arrivalDelay": 0, - "travelMode": TravelMode.Train, - "departureStop": "http://irail.be/stations/NMBS/008814001", - "departureTime": new Date("2018-11-06T12:23:00.000Z"), - "departureDelay": 0, - "gtfs:trip": "http://irail.be/vehicle/IC2310/20181106", - }, + { + id: "http://irail.be/connections/8814001/20181106/IC2310", + arrivalStop: "http://irail.be/stations/NMBS/008813003", + arrivalTime: new Date("2018-11-06T12:26:00.000Z"), + arrivalDelay: 0, + travelMode: TravelMode.Train, + departureStop: "http://irail.be/stations/NMBS/008814001", + departureTime: new Date("2018-11-06T12:23:00.000Z"), + departureDelay: 0, + tripId: "http://irail.be/vehicle/IC2310/20181106", + }, done: false, }, ]; diff --git a/src/fetcher/connections/tests/data/joining.ts b/src/fetcher/connections/tests/data/joining.ts index f237967b..4b71291d 100644 --- a/src/fetcher/connections/tests/data/joining.ts +++ b/src/fetcher/connections/tests/data/joining.ts @@ -11,7 +11,7 @@ const connections = [ "departureStop": "http://irail.be/stations/NMBS/008892007", // C "departureTime": new Date("2017-12-19T16:22:00.000Z"), "arrivalTime": new Date("2017-12-19T16:30:00.000Z"), - "gtfs:trip": "A", + "tripId": "A", "gtfs:pickupType": PickupType.Regular, "gtfs:dropOffType": DropOffType.Regular, }, @@ -25,7 +25,7 @@ const connections = [ "departureStop": "http://irail.be/stations/NMBS/008812005", // D "departureTime": new Date("2017-12-19T16:23:00.000Z"), "arrivalTime": new Date("2017-12-19T16:34:00.000Z"), - "gtfs:trip": "B", + "tripId": "B", "nextConnection": ["1"], "gtfs:pickupType": PickupType.Regular, "gtfs:dropOffType": DropOffType.Regular, @@ -40,7 +40,7 @@ const connections = [ "departureStop": "http://irail.be/stations/NMBS/008891702", // B "departureTime": new Date("2017-12-19T16:35:00.000Z"), "arrivalTime": new Date("2017-12-19T16:50:00.000Z"), - "gtfs:trip": "A", + "tripId": "A", "gtfs:pickupType": PickupType.Regular, "gtfs:dropOffType": DropOffType.Regular, }, diff --git a/src/fetcher/connections/tests/data/splitting.ts b/src/fetcher/connections/tests/data/splitting.ts index d625329d..9f388e88 100644 --- a/src/fetcher/connections/tests/data/splitting.ts +++ b/src/fetcher/connections/tests/data/splitting.ts @@ -11,7 +11,7 @@ const connections = [ "arrivalStop": "http://irail.be/stations/NMBS/008891702", // B "departureTime": new Date("2017-12-19T15:50:00.000Z"), "arrivalTime": new Date("2017-12-19T16:20:00.000Z"), - "gtfs:trip": "A", + "tripId": "A", "nextConnection": ["2b"], "gtfs:pickupType": PickupType.Regular, "gtfs:dropOffType": DropOffType.Regular, @@ -26,7 +26,7 @@ const connections = [ "arrivalStop": "http://irail.be/stations/NMBS/008892007", // C "departureTime": new Date("2017-12-19T16:22:00.000Z"), "arrivalTime": new Date("2017-12-19T16:30:00.000Z"), - "gtfs:trip": "A", + "tripId": "A", "gtfs:pickupType": PickupType.Regular, "gtfs:dropOffType": DropOffType.Regular, }, @@ -40,7 +40,7 @@ const connections = [ "arrivalStop": "http://irail.be/stations/NMBS/008812005", // D "departureTime": new Date("2017-12-19T16:23:00.000Z"), "arrivalTime": new Date("2017-12-19T16:50:00.000Z"), - "gtfs:trip": "B", + "tripId": "B", "gtfs:pickupType": PickupType.Regular, "gtfs:dropOffType": DropOffType.Regular, }, diff --git a/src/fetcher/footpaths/FootpathsProviderDefault.ts b/src/fetcher/footpaths/FootpathsProviderDefault.ts new file mode 100644 index 00000000..c4ece103 --- /dev/null +++ b/src/fetcher/footpaths/FootpathsProviderDefault.ts @@ -0,0 +1,51 @@ +import { inject, injectable } from "inversify"; +import LDFetch from "ldfetch"; +import { Footpath, IFootpathIndex } from "../../entities/footpaths/footpath"; +import { LDLoader } from "../../loader/ldloader"; +import { IndexThingView } from "../../loader/views"; +import TYPES from "../../types"; +import { PLANNER } from "../../uri/constants"; +import URI from "../../uri/uri"; +import IFootpathsProvider from "./IFootpathsProvider"; + +@injectable() +export default class FootpathsProviderDefault implements IFootpathsProvider { + + protected ldFetch: LDFetch; + protected ldLoader: LDLoader; + protected paths: IFootpathIndex; + + constructor( + @inject(TYPES.LDFetch) ldFetch: LDFetch, + ) { + this.ldFetch = ldFetch; + this.ldLoader = new LDLoader(); + this.paths = null; + } + + public async prefetch() { + this.get(); + } + + public async get(): Promise { + if (!this.paths) { + const rdfThing = await this.ldFetch.get("https://hdelva.be/stops/distances"); + const triples = rdfThing.triples; + + const [paths] = this.ldLoader.process(triples, [ + this.getPathsView(), + ]); + this.paths = paths; + } + + return this.paths; + } + + protected getPathsView() { + const nodesView = new IndexThingView(Footpath.create); + nodesView.addMapping(URI.inNS(PLANNER, "source"), "from"); + nodesView.addMapping(URI.inNS(PLANNER, "destination"), "to"); + nodesView.addMapping(URI.inNS(PLANNER, "distance"), "distance"); + return nodesView; + } +} diff --git a/src/fetcher/footpaths/IFootpathsProvider.ts b/src/fetcher/footpaths/IFootpathsProvider.ts new file mode 100644 index 00000000..2fa0a5d8 --- /dev/null +++ b/src/fetcher/footpaths/IFootpathsProvider.ts @@ -0,0 +1,6 @@ +import { IFootpathIndex } from "../../entities/footpaths/footpath"; + +export default interface IFootpathsProvider { + prefetch: () => void; + get: () => Promise; +} diff --git a/src/fetcher/stops/ld-fetch/StopsFetcherLDFetch.ts b/src/fetcher/stops/ld-fetch/StopsFetcherLDFetch.ts index 8812fc53..6311d3e8 100644 --- a/src/fetcher/stops/ld-fetch/StopsFetcherLDFetch.ts +++ b/src/fetcher/stops/ld-fetch/StopsFetcherLDFetch.ts @@ -27,6 +27,7 @@ export default class StopsFetcherLDFetch implements IStopsFetcher { @inject(TYPES.LDFetch) ldFetch: LDFetch, ) { this.ldFetch = ldFetch; + // FIXME does this ever do something? this.loadStops(); } diff --git a/src/fetcher/tiles/IRoutableTileFetcher.ts b/src/fetcher/tiles/IRoutableTileFetcher.ts new file mode 100644 index 00000000..74af371d --- /dev/null +++ b/src/fetcher/tiles/IRoutableTileFetcher.ts @@ -0,0 +1,5 @@ +import { RoutableTile } from "../../entities/tiles/tile"; + +export default interface IRoutableTileFetcher { + get(url: string): Promise; +} diff --git a/src/fetcher/tiles/IRoutableTileProvider.ts b/src/fetcher/tiles/IRoutableTileProvider.ts new file mode 100644 index 00000000..f8523aaf --- /dev/null +++ b/src/fetcher/tiles/IRoutableTileProvider.ts @@ -0,0 +1,19 @@ +import { RoutableTileCoordinate } from "../../entities/tiles/coordinate"; +import { RoutableTileSet } from "../../entities/tiles/set"; +import { RoutableTile } from "../../entities/tiles/tile"; +import ILocation from "../../interfaces/ILocation"; + +export default interface IRoutableTileProvider { + wait(): Promise; + + getIdForLocation(zoom: number, location: ILocation): string; + getIdForTileCoords(coordinate: RoutableTileCoordinate): string; + + getByUrl(url: string): Promise; + getByLocation(zoom: number, location: ILocation): Promise; + getByTileCoords(coordinate: RoutableTileCoordinate): Promise; + + getMultipleByUrl(urls: string[]): Promise; + getmultipleByLocation(zoom: number, locations: ILocation[]): Promise; + getMultipleByTileCoords(coordinates: RoutableTileCoordinate[]): Promise; +} diff --git a/src/fetcher/tiles/RoutableTileFetcherDefault.test.ts b/src/fetcher/tiles/RoutableTileFetcherDefault.test.ts new file mode 100644 index 00000000..c0a769ef --- /dev/null +++ b/src/fetcher/tiles/RoutableTileFetcherDefault.test.ts @@ -0,0 +1,32 @@ +import "jest"; +import LDFetch from "ldfetch"; +import RoutableTileRegistry from "../../entities/tiles/registry"; +import PathfinderProvider from "../../pathfinding/PathfinderProvider"; +import ProfileProvider from "../../profile/ProfileProvider"; +import RoutableTileFetcherDefault from "./RoutableTileFetcherDefault"; + +const registry = new RoutableTileRegistry(); +const profileProvider = new ProfileProvider(); +const fetcher = new RoutableTileFetcherDefault( + new LDFetch({ headers: { Accept: "application/ld+json" } }), + new PathfinderProvider(undefined, undefined, registry, profileProvider), + registry); + +test("[RoutableTileFetcherDefault] data completeness", async () => { + jest.setTimeout(15000); + + const expectedNodes: Set = new Set(); + const tile = await fetcher.get("https://tiles.openplanner.team/planet/14/8361/5482/"); + for (const wayId of tile.getWays()) { + const way = registry.getWay(wayId); + for (const segment of way.segments) { + for (const node of segment) { + expectedNodes.add(node); + } + } + } + + for (const id of expectedNodes) { + expect(tile.getNodes().has(id)); + } +}); diff --git a/src/fetcher/tiles/RoutableTileFetcherDefault.ts b/src/fetcher/tiles/RoutableTileFetcherDefault.ts new file mode 100644 index 00000000..f4b5aa71 --- /dev/null +++ b/src/fetcher/tiles/RoutableTileFetcherDefault.ts @@ -0,0 +1,99 @@ +import { inject, injectable } from "inversify"; +import LDFetch from "ldfetch"; +import { IRoutableTileNodeIndex, RoutableTileNode } from "../../entities/tiles/node"; +import RoutableTileRegistry from "../../entities/tiles/registry"; +import { RoutableTile } from "../../entities/tiles/tile"; +import { IRoutableTileWayIndex, RoutableTileWay } from "../../entities/tiles/way"; +import { LDLoader } from "../../loader/ldloader"; +import { IndexThingView } from "../../loader/views"; +import PathfinderProvider from "../../pathfinding/PathfinderProvider"; +import TYPES from "../../types"; +import { GEO, OSM, RDF, RDFS } from "../../uri/constants"; +import URI from "../../uri/uri"; +import IRoutableTileFetcher from "./IRoutableTileFetcher"; + +@injectable() +export default class RoutableTileFetcherDefault implements IRoutableTileFetcher { + + protected ldFetch: LDFetch; + protected ldLoader: LDLoader; + protected pathfinderProvider: PathfinderProvider; + protected routableTileRegistry: RoutableTileRegistry; + + constructor( + @inject(TYPES.LDFetch) ldFetch: LDFetch, + @inject(TYPES.PathfinderProvider) pathfinderProvider: PathfinderProvider, + @inject(TYPES.RoutableTileRegistry) routableTileRegistry: RoutableTileRegistry, + ) { + this.ldFetch = ldFetch; + this.ldLoader = new LDLoader(); + this.ldLoader.defineCollection(URI.inNS(OSM, "hasNodes")); // unordered collection + this.pathfinderProvider = pathfinderProvider; + this.routableTileRegistry = routableTileRegistry; + } + + public async get(url: string): Promise { + const rdfThing = await this.ldFetch.get(url); + const triples = rdfThing.triples; + + let nodes: IRoutableTileNodeIndex; + let ways: IRoutableTileWayIndex; + + [nodes, ways] = this.ldLoader.process(triples, [ + this.getNodesView(), + this.getWaysView(), + ]); + + return this.processTileData(url, nodes, ways); + } + + protected processTileData(url: string, nodes: IRoutableTileNodeIndex, ways: IRoutableTileWayIndex) { + this.pathfinderProvider.registerEdges(ways, nodes); + + for (const node of Object.values(nodes)) { + this.routableTileRegistry.registerNode(node); + } + + for (const way of Object.values(ways)) { + this.routableTileRegistry.registerWay(way); + } + + return new RoutableTile(url, new Set(Object.keys(nodes)), new Set(Object.keys(ways))); + } + + protected getNodesView() { + const nodesView = new IndexThingView(RoutableTileNode.create); + nodesView.addFilter((entity) => + entity[URI.inNS(GEO, "lat")] !== undefined && entity[URI.inNS(GEO, "long")] !== undefined, + ); + nodesView.addMapping(URI.inNS(GEO, "lat"), "latitude"); + nodesView.addMapping(URI.inNS(GEO, "long"), "longitude"); + return nodesView; + } + + protected getWaysView() { + const waysView = new IndexThingView(RoutableTileWay.create); + waysView.addFilter((entity) => + entity[URI.inNS(RDF, "type")] === URI.inNS(OSM, "Way"), + ); + waysView.addMapping(URI.inNS(OSM, "hasNodes"), "segments"); + waysView.addMapping(URI.inNS(OSM, "name"), "name"); + waysView.addMapping(URI.inNS(OSM, "access"), "accessRestrictions"); + waysView.addMapping(URI.inNS(OSM, "bicycle"), "bicycleAccessRestrictions"); + waysView.addMapping(URI.inNS(OSM, "construction"), "constructionKind"); + waysView.addMapping(URI.inNS(OSM, "crossing"), "crossingKind"); + waysView.addMapping(URI.inNS(OSM, "cycleway"), "cyclewayKind"); + waysView.addMapping(URI.inNS(OSM, "footway"), "footwayKind"); + waysView.addMapping(URI.inNS(OSM, "highway"), "highwayKind"); + waysView.addMapping(URI.inNS(OSM, "maxspeed"), "maxSpeed"); + waysView.addMapping(URI.inNS(OSM, "motor_vehicle"), "motorVehicleAccessRestrictions"); + waysView.addMapping(URI.inNS(OSM, "motorcar"), "motorcarAccessRestrictions"); + waysView.addMapping(URI.inNS(OSM, "oneway_bicycle"), "onewayBicycleKind"); + waysView.addMapping(URI.inNS(OSM, "oneway"), "onewayKind"); + waysView.addMapping(URI.inNS(OSM, "smoothness"), "smoothnessKind"); + waysView.addMapping(URI.inNS(OSM, "surface"), "surfaceKind"); + waysView.addMapping(URI.inNS(OSM, "tracktype"), "trackType"); + waysView.addMapping(URI.inNS(OSM, "vehicle"), "vehicleAccessRestrictions"); + return waysView; + } +} diff --git a/src/fetcher/tiles/RoutableTileFetcherExtended.ts b/src/fetcher/tiles/RoutableTileFetcherExtended.ts new file mode 100644 index 00000000..3ee64b20 --- /dev/null +++ b/src/fetcher/tiles/RoutableTileFetcherExtended.ts @@ -0,0 +1,58 @@ +import { inject, injectable } from "inversify"; +import LDFetch from "ldfetch"; +import RoutableTileRegistry from "../../entities/tiles/registry"; +import { RoutableTile } from "../../entities/tiles/tile"; +import PathfinderProvider from "../../pathfinding/PathfinderProvider"; +import TYPES from "../../types"; +import { ROUTE } from "../../uri/constants"; +import URI from "../../uri/uri"; +import RoutableTileFetcherDefault from "./RoutableTileFetcherDefault"; + +@injectable() +export default class RoutableTileFetcherExtended extends RoutableTileFetcherDefault { + + constructor( + @inject(TYPES.LDFetch) ldFetch: LDFetch, + @inject(TYPES.PathfinderProvider) pathfinder: PathfinderProvider, + @inject(TYPES.RoutableTileRegistry) routableTileRegistry: RoutableTileRegistry, + ) { + super(ldFetch, pathfinder, routableTileRegistry); + } + + public async get(url: string): Promise { + const lolJs = url.split("/"); + const tileX = lolJs[lolJs.length - 2]; + const tileY = lolJs[lolJs.length - 1]; + const otherUrl = `https://www.hdelva.be/tiles/inferred/${tileX}/${tileY}`; + + const basePromise = this.ldFetch.get(url); + const otherPromise = this.ldFetch.get(otherUrl); + + const baseResponse = await basePromise; + const baseTriples = baseResponse.triples; + + let otherTriples = []; + try { + const otherResponse = await otherPromise; + otherTriples = otherResponse.triples; + + this.ldLoader.disambiguateBlankNodes(baseTriples, "base"); + this.ldLoader.disambiguateBlankNodes(otherTriples, "other"); + } catch { + // not that important + } + + const [nodes, ways] = this.ldLoader.process(baseTriples.concat(otherTriples), [ + this.getNodesView(), + this.getWaysView(), + ]); + + return this.processTileData(url, nodes, ways); + } + + protected getWaysView() { + const original = super.getWaysView(); + original.addMapping(URI.inNS(ROUTE, "reachable"), "reachable"); + return original; + } +} diff --git a/src/fetcher/tiles/RoutableTileProviderDefault.ts b/src/fetcher/tiles/RoutableTileProviderDefault.ts new file mode 100644 index 00000000..d31083b3 --- /dev/null +++ b/src/fetcher/tiles/RoutableTileProviderDefault.ts @@ -0,0 +1,95 @@ +import { inject, injectable } from "inversify"; +import { RoutableTileCoordinate } from "../../entities/tiles/coordinate"; +import RoutableTileRegistry from "../../entities/tiles/registry"; +import { RoutableTileSet } from "../../entities/tiles/set"; +import { IRoutableTileIndex, RoutableTile } from "../../entities/tiles/tile"; +import ILocation from "../../interfaces/ILocation"; +import TYPES from "../../types"; +import IRoutableTileFetcher from "./IRoutableTileFetcher"; +import IRoutableTileProvider from "./IRoutableTileProvider"; + +@injectable() +export default class RoutableTileProviderDefault implements IRoutableTileProvider { + + private fetcher: IRoutableTileFetcher; + private registry: RoutableTileRegistry; + private tiles: IRoutableTileIndex = {}; + + constructor( + @inject(TYPES.RoutableTileFetcher) fetcher: IRoutableTileFetcher, + @inject(TYPES.RoutableTileRegistry) registry: RoutableTileRegistry, + ) { + this.fetcher = fetcher; + this.registry = registry; + } + + public async wait() { + await Promise.all(Object.values(this.tiles)); + } + + public getIdForLocation(zoom: number, location: ILocation): string { + const y = this.lat2tile(location.latitude, zoom); + const x = this.long2tile(location.longitude, zoom); + const coordinate = { zoom, x, y }; + return this.getIdForTileCoords(coordinate); + } + + public getIdForTileCoords(coordinate: RoutableTileCoordinate): string { + return `https://tiles.openplanner.team/planet/${coordinate.zoom}/${coordinate.x}/${coordinate.y}`; + } + + public getByLocation(zoom: number, location: ILocation): Promise { + const y = this.lat2tile(location.latitude, zoom); + const x = this.long2tile(location.longitude, zoom); + const coordinate = new RoutableTileCoordinate(zoom, x, y); + return this.getByTileCoords(coordinate); + } + + public async getByTileCoords(coordinate: RoutableTileCoordinate): Promise { + const url = this.getIdForTileCoords(coordinate); + const tile = await this.getByUrl(url); + tile.coordinate = coordinate; // todo, get these from server response + return tile; + } + + public async getByUrl(url: string): Promise { + if (!this.tiles[url]) { + this.tiles[url] = this.fetcher.get(url); + } + + return await this.tiles[url]; + } + + public async getMultipleByUrl(urls: string[]): Promise { + const tiles = await Promise.all(urls.map((url) => { + return this.getByUrl(url); + })); + + return new RoutableTileSet(tiles); + } + + public async getmultipleByLocation(zoom: number, locations: ILocation[]): Promise { + const tiles = await Promise.all(locations.map((location) => { + return this.getByLocation(zoom, location); + })); + + return new RoutableTileSet(tiles); + } + + public async getMultipleByTileCoords(coordinates: RoutableTileCoordinate[]): Promise { + const tiles = await Promise.all(coordinates.map((coordinate) => { + return this.getByTileCoords(coordinate); + })); + + return new RoutableTileSet(tiles); + } + + private long2tile(lon: number, zoom: number) { + return (Math.floor((lon + 180) / 360 * Math.pow(2, zoom))); + } + + private lat2tile(lat: number, zoom: number) { + return (Math.floor((1 - Math.log(Math.tan(lat * Math.PI / 180) + 1 + / Math.cos(lat * Math.PI / 180)) / Math.PI) / 2 * Math.pow(2, zoom))); + } +} diff --git a/src/index.ts b/src/index.ts index 99ba7489..15225cbb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,9 @@ import "isomorphic-fetch"; import "reflect-metadata"; +import IsochroneGenerator from "./analytics/isochrones/main"; import Planner from "./Planner"; -export default Planner; +export default { + Planner, + IsochroneGenerator, +}; diff --git a/src/index_2.ts b/src/index_2.ts new file mode 100644 index 00000000..bce46999 --- /dev/null +++ b/src/index_2.ts @@ -0,0 +1,96 @@ +import "isomorphic-fetch"; +import Dijkstra from "node-dijkstra"; +import "reflect-metadata"; +import t from "tiles-in-bbox"; +import Planner from "./Planner"; + +export default Planner; + +import EventType from "./enums/EventType"; +import IPath from "./interfaces/IPath"; +import defaultContainer from "./inversify.config"; +import Units from "./util/Units"; + +const planner = new Planner(); + +planner.prefetchStops(); +planner.prefetchConnections(); + +let scannedPages = 0; +let scannedConnections = 0; + +// let logFetch = true; + +console.log(`${new Date()} Start prefetch`); + +planner + .on(EventType.InvalidQuery, (error) => { + console.log("InvalidQuery", error); + }) + .on(EventType.AbortQuery, (reason) => { + console.log("AbortQuery", reason); + }) + .on(EventType.Query, (Query) => { + console.log("Query", Query); + }) + .on(EventType.SubQuery, (query) => { + const { minimumDepartureTime, maximumArrivalTime } = query; + + // logFetch = true; + + console.log("Total scanned pages", scannedPages); + console.log("Total scanned connections", scannedConnections); + console.log("[Subquery]", minimumDepartureTime, maximumArrivalTime, maximumArrivalTime - minimumDepartureTime); + }) + .on(EventType.LDFetchGet, (url, duration) => { + scannedPages++; + console.log(`[GET] ${url} (${duration}ms)`); + + // if (logFetch) { + // console.log(`[GET] ${url} (${duration}ms)`); + // logFetch = false; + // } + }) + .on(EventType.ConnectionScan, (connection) => { + scannedConnections++; + }) + .on(EventType.Warning, (e) => { + console.warn(e); + }); + +const wait = (ms) => new Promise((resolve) => setTimeout(resolve, ms)); + +wait(5000) + .then(() => new Promise((resolve, reject) => { + console.log(`${new Date()} Start query`); + + const amount = 3; + let i = 0; + + planner.query({ + publicTransportOnly: true, + // from: "https://data.delijn.be/stops/201657", + // to: "https://data.delijn.be/stops/205910", + // from: "https://data.delijn.be/stops/200455", // Deinze weg op Grammene +456 + // to: "https://data.delijn.be/stops/502481", // Tielt Metaalconstructie Goossens + // from: "https://data.delijn.be/stops/509927", // Tield Rameplein perron 1 + // to: "https://data.delijn.be/stops/200455", // Deinze weg op Grammene +456 + from: "Hasselt", // Ingelmunster + to: "Kortrijk", // Ghent-Sint-Pieters + minimumDepartureTime: new Date(), + maximumTransferDuration: Units.fromMinutes(30), + }) + .take(amount) + .on("error", (error) => { + console.log(error); + }) + .on("data", (path: IPath) => { + ++i; + + console.log(new Date()); + console.log(i); + console.log(JSON.stringify(path, null, " ")); + console.log("\n"); + + }); + })); diff --git a/src/inversify.config.ts b/src/inversify.config.ts index a5ec3b50..9505c062 100644 --- a/src/inversify.config.ts +++ b/src/inversify.config.ts @@ -1,8 +1,11 @@ import { Container, interfaces } from "inversify"; import Catalog from "./Catalog"; import catalogDeLijn from "./catalog.delijn"; +import catalogMivb from "./catalog.mivb"; import catalogNmbs from "./catalog.nmbs"; +import catalogTec from "./catalog.tec"; import Context from "./Context"; +import RoutableTileRegistry from "./entities/tiles/registry"; import ReachableStopsSearchPhase from "./enums/ReachableStopsSearchPhase"; import TravelMode from "./enums/TravelMode"; import ConnectionsProviderMerge from "./fetcher/connections/ConnectionsProviderMerge"; @@ -10,20 +13,39 @@ import IConnectionsFetcher from "./fetcher/connections/IConnectionsFetcher"; import IConnectionsProvider from "./fetcher/connections/IConnectionsProvider"; import ConnectionsFetcherLazy from "./fetcher/connections/lazy/ConnectionsFetcherLazy"; import ConnectionsProviderPrefetch from "./fetcher/connections/prefetch/ConnectionsProviderPrefetch"; +import FootpathsProviderDefault from "./fetcher/footpaths/FootpathsProviderDefault"; +import IFootpathsFetcher from "./fetcher/footpaths/IFootpathsProvider"; import LDFetch from "./fetcher/LDFetch"; import IStopsFetcher from "./fetcher/stops/IStopsFetcher"; import IStopsProvider from "./fetcher/stops/IStopsProvider"; import StopsFetcherLDFetch from "./fetcher/stops/ld-fetch/StopsFetcherLDFetch"; import StopsProviderDefault from "./fetcher/stops/StopsProviderDefault"; +import IRoutableTileFetcher from "./fetcher/tiles/IRoutableTileFetcher"; +import IRoutableTileProvider from "./fetcher/tiles/IRoutableTileProvider"; +import RoutableTileFetcherDefault from "./fetcher/tiles/RoutableTileFetcherDefault"; +import RoutableTileFetcherExtended from "./fetcher/tiles/RoutableTileFetcherExtended"; +import RoutableTileProviderDefault from "./fetcher/tiles/RoutableTileProviderDefault"; +import { LDLoader } from "./loader/ldloader"; +import DijkstraTree from "./pathfinding/dijkstra-tree/dijkstra-tree-js"; +import { Dijkstra } from "./pathfinding/dijkstra/dijkstra-js"; +import { IShortestPathAlgorithm, IShortestPathTreeAlgorithm } from "./pathfinding/pathfinder"; +import PathfinderProvider from "./pathfinding/PathfinderProvider"; +import CSAEarliestArrival from "./planner/public-transport/CSAEarliestArrival"; import CSAProfile from "./planner/public-transport/CSAProfile"; import IJourneyExtractor from "./planner/public-transport/IJourneyExtractor"; import IPublicTransportPlanner from "./planner/public-transport/IPublicTransportPlanner"; import JourneyExtractorProfile from "./planner/public-transport/JourneyExtractorProfile"; import IRoadPlanner from "./planner/road/IRoadPlanner"; import RoadPlannerBirdsEye from "./planner/road/RoadPlannerBirdsEye"; +import RoadPlannerPathfinding from "./planner/road/RoadPlannerPathfinding"; import IReachableStopsFinder from "./planner/stops/IReachableStopsFinder"; +import ReachableStopsFinderBirdsEyeCached from "./planner/stops/ReachableStopsFinderBirdsEyeCached"; +import ReachableStopsFinderDelaunay from "./planner/stops/ReachableStopsFinderDelaunay"; +import ReachableStopsFinderFootpaths from "./planner/stops/ReachableStopsFinderFootpaths"; import ReachableStopsFinderOnlySelf from "./planner/stops/ReachableStopsFinderOnlySelf"; +import ReachableStopsFinderRoadPlanner from "./planner/stops/ReachableStopsFinderRoadPlanner"; import ReachableStopsFinderRoadPlannerCached from "./planner/stops/ReachableStopsFinderRoadPlannerCached"; +import ProfileProvider from "./profile/ProfileProvider"; import QueryRunnerExponential from "./query-runner/exponential/QueryRunnerExponential"; import ILocationResolver from "./query-runner/ILocationResolver"; import IQueryRunner from "./query-runner/IQueryRunner"; @@ -36,22 +58,27 @@ container.bind(TYPES.QueryRunner).to(QueryRunnerExponential); container.bind(TYPES.LocationResolver).to(LocationResolverConvenience); container.bind(TYPES.PublicTransportPlanner) - .to(CSAProfile); + .to(CSAEarliestArrival); container.bind>(TYPES.PublicTransportPlannerFactory) .toAutoFactory(TYPES.PublicTransportPlanner); container.bind(TYPES.RoadPlanner) - .to(RoadPlannerBirdsEye); + .to(RoadPlannerPathfinding); + +container.bind(TYPES.ShortestPathTreeAlgorithm).to(DijkstraTree).inSingletonScope(); +container.bind(TYPES.ShortestPathAlgorithm).to(Dijkstra).inSingletonScope(); +container.bind(TYPES.PathfinderProvider).to(PathfinderProvider).inSingletonScope(); +container.bind(TYPES.ProfileProvider).to(ProfileProvider).inSingletonScope(); container.bind(TYPES.JourneyExtractor) .to(JourneyExtractorProfile); container.bind(TYPES.ReachableStopsFinder) - .to(ReachableStopsFinderRoadPlannerCached).whenTargetTagged("phase", ReachableStopsSearchPhase.Initial); + .to(ReachableStopsFinderDelaunay).whenTargetTagged("phase", ReachableStopsSearchPhase.Initial); container.bind(TYPES.ReachableStopsFinder) - .to(ReachableStopsFinderOnlySelf).whenTargetTagged("phase", ReachableStopsSearchPhase.Transfer); + .to(ReachableStopsFinderFootpaths).whenTargetTagged("phase", ReachableStopsSearchPhase.Transfer); container.bind(TYPES.ReachableStopsFinder) - .to(ReachableStopsFinderRoadPlannerCached).whenTargetTagged("phase", ReachableStopsSearchPhase.Final); + .to(ReachableStopsFinderDelaunay).whenTargetTagged("phase", ReachableStopsSearchPhase.Final); container.bind(TYPES.ConnectionsProvider).to(ConnectionsProviderPrefetch).inSingletonScope(); container.bind(TYPES.ConnectionsFetcher).to(ConnectionsFetcherLazy); @@ -80,13 +107,20 @@ container.bind>(TYPES.StopsFetcherFactory) }, ); +container.bind(TYPES.RoutableTileFetcher).to(RoutableTileFetcherDefault); +container.bind(TYPES.RoutableTileProvider) + .to(RoutableTileProviderDefault).inSingletonScope(); +container.bind(TYPES.RoutableTileRegistry).to(RoutableTileRegistry).inSingletonScope(); + +container.bind(TYPES.FootpathsProvider).to(FootpathsProviderDefault).inSingletonScope(); + // Bind catalog +const combinedCatalog = Catalog.combine(catalogNmbs, catalogDeLijn, catalogMivb, catalogTec); container.bind(TYPES.Catalog).toConstantValue(catalogNmbs); -// const combinedCatalog = Catalog.combine(catalogNmbs, catalogDeLijn); -// container.bind(TYPES.Catalog).toConstantValue(combinedCatalog); - // Init LDFetch container.bind(TYPES.LDFetch).to(LDFetch).inSingletonScope(); +container.bind(TYPES.LDLoader).to(LDLoader); + export default container; diff --git a/src/isochrone.demo.ts b/src/isochrone.demo.ts new file mode 100644 index 00000000..4299b18a --- /dev/null +++ b/src/isochrone.demo.ts @@ -0,0 +1,7 @@ +import Planner from "."; + +const point = { latitude: 51.0262973, longitude: 3.7110885 }; +const x = new Planner.IsochroneGenerator(); +x.init(point).then(async () => { + await x.getIsochrone(2500, true); +}); diff --git a/src/loader/common.ts b/src/loader/common.ts new file mode 100644 index 00000000..5a4b0380 --- /dev/null +++ b/src/loader/common.ts @@ -0,0 +1,11 @@ +export interface ISemiEntity { + id?: string; +} + +export interface IEntity extends ISemiEntity { + id: string; +} + +export interface IEntityMap { + [id: string]: T; +} diff --git a/src/loader/ldloader.ts b/src/loader/ldloader.ts new file mode 100644 index 00000000..00a2adc0 --- /dev/null +++ b/src/loader/ldloader.ts @@ -0,0 +1,95 @@ +import { injectable } from "inversify"; +import { Triple } from "rdf-js"; +import { XMLS } from "../uri/constants"; +import URI from "../uri/uri"; +import { IEntity, IEntityMap } from "./common"; +import { ThingView } from "./views/single"; + +@injectable() +export class LDLoader { + + private collectionFields: Set = new Set(); + + public defineCollection(field: string) { + this.collectionFields.add(field); + } + + public process(triples: Triple[], views: Array>) { + const entities = this._extractEntities(triples); + + for (const entity of Object.values(entities)) { + for (const view of views) { + const mapped = view.process(entity); + if (mapped) { + view.addEntity(mapped); + } + } + } + + return views.map((view) => view.getContents()); + } + + public disambiguateBlankNodes(triples, scope: string) { + for (const triple of triples) { + if (triple.subject.termType === "BlankNode") { + triple.subject.value = `${scope}#${triple.subject.value}`; + } + if (triple.object.termType === "BlankNode") { + triple.object.value = `${scope}#${triple.object.value}`; + } + } + } + + private _parseValue(entities, triple) { + const tripleObject = triple.object; + const rawValue = tripleObject.value; + if (tripleObject.termType === "BlankNode") { + if (!entities[rawValue]) { + entities[rawValue] = { id: rawValue }; + } + + return entities[rawValue]; + } + if (tripleObject.termType === "Literal") { + const valueType = tripleObject.datatype.value; + if (valueType === URI.inNS(XMLS, "string")) { + return rawValue; + } + if (valueType === URI.inNS(XMLS, "boolean")) { + return rawValue === "true"; + } + if (valueType === URI.inNS(XMLS, "double")) { + return parseFloat(rawValue); + } + if (valueType === URI.inNS(XMLS, "integer")) { + return parseInt(rawValue, 10); + } + } + + return rawValue; + } + + private _extractEntities(triples): IEntityMap { + const entities = {}; + for (const triple of triples) { + const { subject: { value: subject }, predicate: { value: predicate } } = triple; + + if (!(subject in entities)) { + entities[subject] = { id: subject }; + } + + const entity = entities[subject]; + const parsedValue = this._parseValue(entities, triple); + + if (!this.collectionFields.has(predicate)) { + entity[predicate] = parsedValue; + } else { + const fieldData = entity[predicate] || []; + fieldData.push(parsedValue); + entity[predicate] = fieldData; + } + + } + return entities; + } +} diff --git a/src/loader/results/common.ts b/src/loader/results/common.ts new file mode 100644 index 00000000..536ea161 --- /dev/null +++ b/src/loader/results/common.ts @@ -0,0 +1,6 @@ +import { IEntityMap, ISemiEntity } from "../common"; + +export interface IThingViewResult { + addEntity(entity: T): void; + getContents(): T | IEntityMap; +} diff --git a/src/loader/results/index.ts b/src/loader/results/index.ts new file mode 100644 index 00000000..495718d3 --- /dev/null +++ b/src/loader/results/index.ts @@ -0,0 +1,18 @@ +import { IEntity, IEntityMap } from "../common"; +import { IThingViewResult } from "./common"; + +export class IndexThingViewResult implements IThingViewResult { + private contents: IEntityMap; + + constructor() { + this.contents = {}; + } + + public addEntity(entity: T) { + this.contents[entity.id] = entity; + } + + public getContents(): IEntityMap { + return this.contents; + } +} diff --git a/src/loader/results/single.ts b/src/loader/results/single.ts new file mode 100644 index 00000000..32cbe44c --- /dev/null +++ b/src/loader/results/single.ts @@ -0,0 +1,13 @@ +import { ISemiEntity } from "../common"; +import { IThingViewResult } from "./common"; + +export class SingleThingViewResult implements IThingViewResult { + private contents: T; + public addEntity(entity: T): void { + this.contents = entity; + } + + public getContents(): T { + return this.contents; + } +} diff --git a/src/loader/views/index.ts b/src/loader/views/index.ts new file mode 100644 index 00000000..e27605e6 --- /dev/null +++ b/src/loader/views/index.ts @@ -0,0 +1,10 @@ +import { IEntity, ISemiEntity } from "../common"; +import { IndexThingViewResult } from "../results"; +import { IThingViewResult } from "../results/common"; +import { ThingView } from "./single"; + +export class IndexThingView extends ThingView { + public createResultObject(): IThingViewResult { + return new IndexThingViewResult(); + } +} diff --git a/src/loader/views/single.ts b/src/loader/views/single.ts new file mode 100644 index 00000000..c7d0e1f1 --- /dev/null +++ b/src/loader/views/single.ts @@ -0,0 +1,121 @@ +import { RDF } from "../../uri/constants"; +import URI from "../../uri/uri"; +import { IEntity, ISemiEntity } from "../common"; +import { IThingViewResult } from "../results/common"; +import { SingleThingViewResult } from "../results/single"; + +export class ThingView { + private filters: Array<(entity: IEntity) => boolean> = []; + private mappings = {}; + private nestedViews = {}; + private showId = true; + private resultObject: IThingViewResult; + + constructor(private entityType: (id?: string) => T) { + this.resultObject = this.createResultObject(); + } + + public addEntity(entity: T) { + this.resultObject.addEntity(entity); + } + + public getContents() { + return this.resultObject.getContents(); + } + + public hideId() { + this.showId = false; + } + + public addFilter(fn: (Entity) => boolean) { + this.filters.push(fn); + } + + public addMapping(from, to, view?: ThingView) { + this.mappings[from] = to; + this.nestedViews[from] = view; + } + + public process(entity: IEntity): T { + if (this._filter(entity)) { + return this._map(entity); + } + } + + public createResultObject(): IThingViewResult { + return new SingleThingViewResult(); + } + + private _filter(entity: IEntity) { + let ok = true; + for (const fn of this.filters) { + if (!fn(entity)) { + ok = false; + break; + } + } + return ok; + } + + private _makeList(element: IEntity): any[] { + let current = element; + const list = [current[URI.inNS(RDF, "first")]]; + let rest = current[URI.inNS(RDF, "rest")]; + + while (rest && rest !== URI.inNS(RDF, "nil")) { + current = rest; + list.push(current[URI.inNS(RDF, "first")]); + rest = current[URI.inNS(RDF, "rest")]; + } + + return list; + } + + private _flattenLists(entity: IEntity) { + for (const kv of Object.entries(entity)) { + const [field, entityValue] = kv; + if (Array.isArray(entityValue)) { + for (const v of entityValue.entries()) { + const [valueElementIndex, valueElement] = v; + if (valueElement[URI.inNS(RDF, "first")]) { + const list = this._makeList(valueElement); + entityValue[valueElementIndex] = list; + } + } + } + if (entityValue[URI.inNS(RDF, "first")]) { + // this value should become an array + entity[field] = this._makeList(entityValue); + } + } + } + + private _map(entity: IEntity): T { + this._flattenLists(entity); + + let result; + if (this.showId) { + result = this.entityType(entity.id); + } else { + result = this.entityType(); + } + + for (const kv of Object.entries(entity)) { + const field = kv[0]; + let value = kv[1]; + const fieldView = this.nestedViews[field]; + if (fieldView) { + if (Array.isArray(value)) { + value = value.map((v) => fieldView.process(v)); + } else { + value = fieldView.process(value); + } + } + const destinationField = this.mappings[field]; + if (destinationField) { + result[destinationField] = value; + } + } + return result; + } +} diff --git a/src/pathfinding/PathfinderProvider.ts b/src/pathfinding/PathfinderProvider.ts new file mode 100644 index 00000000..77ad43a6 --- /dev/null +++ b/src/pathfinding/PathfinderProvider.ts @@ -0,0 +1,235 @@ +import { inject, injectable } from "inversify"; +import { IRoutableTileNodeIndex, RoutableTileNode } from "../entities/tiles/node"; +import RoutableTileRegistry from "../entities/tiles/registry"; +import { RoutableTile } from "../entities/tiles/tile"; +import { IRoutableTileWayIndex, RoutableTileWay } from "../entities/tiles/way"; +import ILocation from "../interfaces/ILocation"; +import Profile from "../profile/Profile"; +import ProfileProvider from "../profile/ProfileProvider"; +import TYPES from "../types"; +import Geo from "../util/Geo"; +import PathfindingGraph from "./graph"; +import { IShortestPathAlgorithm, IShortestPathTreeAlgorithm } from "./pathfinder"; + +interface IPointEmbedding { + way: RoutableTileWay; // the road where the point gets embedded in + point: ILocation; // point that's embedded into the road network + intersection: ILocation; // closest point on the road segment closest to the point + segA: RoutableTileNode; // one side of the road segment closest to the point + segB: RoutableTileNode; // other side of the road segment closest to the point +} + +interface IGraphMap { + [label: string]: PathfindingGraph; +} + +@injectable() +export default class PathfinderProvider { + private graphs: IGraphMap; + + private shortestPath: IShortestPathAlgorithm; + private shortestPathTree: IShortestPathTreeAlgorithm; + private routableTileRegistry: RoutableTileRegistry; + private profileProvider: ProfileProvider; + + constructor( + @inject(TYPES.ShortestPathTreeAlgorithm) shortestPathTree: IShortestPathTreeAlgorithm, + @inject(TYPES.ShortestPathAlgorithm) pointToPoint: IShortestPathAlgorithm, + @inject(TYPES.RoutableTileRegistry) routableTileRegistry: RoutableTileRegistry, + @inject(TYPES.ProfileProvider) profileProvider: ProfileProvider, + ) { + this.shortestPath = pointToPoint; + this.shortestPathTree = shortestPathTree; + this.routableTileRegistry = routableTileRegistry; + this.profileProvider = profileProvider; + this.graphs = {}; + } + + public getShortestPathAlgorithm(): IShortestPathAlgorithm { + const profile = this.profileProvider.getActiveProfile(); + const graph = this.getGraphForProfile(profile); + this.shortestPath.setGraph(graph); + return this.shortestPath; + } + + public getShortestPathTreeAlgorithm(): IShortestPathTreeAlgorithm { + const profile = this.profileProvider.getActiveProfile(); + const graph = this.getGraphForProfile(profile); + this.shortestPathTree.setGraph(graph); + return this.shortestPathTree; + } + + public registerEdges(ways: IRoutableTileWayIndex, nodes: IRoutableTileNodeIndex): void { + // add new edges to existing graphs + for (const profileId of Object.keys(this.graphs)) { + const profile = this.profileProvider.getProfile(profileId); + + for (const way of Object.values(ways)) { + if (!profile.hasAccess(way)) { + continue; + } + + for (const [fromId, toId] of way.getParts()) { + const from = nodes[fromId]; + const to = nodes[toId]; + if (from && to) { + if (profile.isObstacle(from) || profile.isObstacle(to)) { + continue; + } + this.addEdge(profile, from, to, way); + if (!profile.isOneWay(way)) { + this.addEdge(profile, to, from, way); + } + } + } + } + } + } + + public embedLocation(p: ILocation, tileset: RoutableTile, invert = false) { + for (const profile of this.profileProvider.getProfiles()) { + let bestDistance = Infinity; + let bestEmbedding: IPointEmbedding; + + for (const wayId of tileset.getWays()) { + const way = this.routableTileRegistry.getWay(wayId); + + if (!profile.hasAccess(way) || way.reachable === false) { + continue; + } + + for (const segment of way.segments) { + for (let i = 0; i < segment.length - 1; i++) { + const nodeA = segment[i]; + const from = this.routableTileRegistry.getNode(nodeA); + const nodeB = segment[i + 1]; + const to = this.routableTileRegistry.getNode(nodeB); + + if (!from || !to) { + // FIXME, caused by bug in data + continue; + } + + const [distance, intersection] = this.segmentDistToPoint(from, to, p); + if (distance < bestDistance) { + bestDistance = distance; + bestEmbedding = { + way, + point: p, + segA: from, + segB: to, + intersection, + }; + } + } + } + } + + if (bestEmbedding) { + const intersection = bestEmbedding.intersection; + const segA = bestEmbedding.segA; + const segB = bestEmbedding.segB; + const way = bestEmbedding.way; + const isOneWay = profile.isOneWay(way); + + if (!invert) { + // A -------------------> B + // A <-- intersection --> B + // | + // p + this.addEdge(profile, p, intersection, way); + this.addEdge(profile, intersection, segB, way); + if (!isOneWay) { + this.addEdge(profile, intersection, segA, way); + } + } else { + // A -------------------> B + // A --> intersection <-- B + // | + // p + this.addEdge(profile, intersection, p, way); + this.addEdge(profile, segA, intersection, way); + if (!isOneWay) { + this.addEdge(profile, segB, intersection, way); + } + } + } + } + } + + private getGraphForProfile(profile: Profile): PathfindingGraph { + if (!this.graphs[profile.getID()]) { + // we don't have a graph for this profile yet + // create one + const graph = new PathfindingGraph(); + this.graphs[profile.getID()] = graph; + + // and populate it with all the data we have + for (const way of this.routableTileRegistry.getWays()) { + if (!profile.hasAccess(way)) { + continue; + } + + for (const [fromId, toId] of way.getParts()) { + const from = this.routableTileRegistry.getNode(fromId); + const to = this.routableTileRegistry.getNode(toId); + if (from && to) { + if (profile.isObstacle(from) || profile.isObstacle(to)) { + continue; + } + this.addEdge(profile, from, to, way, graph); + if (!profile.isOneWay(way)) { + this.addEdge(profile, to, from, way, graph); + } + } + } + } + } + return this.graphs[profile.getID()]; + } + + private addEdge(profile: Profile, from: ILocation, to: ILocation, way: RoutableTileWay, graph?: PathfindingGraph) { + // this specifically adds an edge that corresponds to an actual street + // if you need to add any other edge, you'll need to create a different method + graph = graph || this.getGraphForProfile(profile); + const distance = profile.getDistance(from, to, way); + const duration = profile.getDuration(from, to, way); + const cost = profile.getCost(from, to, way); + graph.addEdge(Geo.getId(from), Geo.getId(to), distance, duration, cost); + } + + private segmentDistToPoint(segA: ILocation, segB: ILocation, p: ILocation): [number, ILocation] { + // seems numerically unstable, see 'catastrophic cancellation' + const sx1 = segA.longitude; + const sx2 = segB.longitude; + const px = p.longitude; + + const sy1 = segA.latitude; + const sy2 = segB.latitude; + const py = p.latitude; + + const px2 = sx2 - sx1; // <- + const py2 = sy2 - sy2; // <- + + const norm = px2 * px2 + py2 * py2; + let u = ((px - sx1) * px2 + (py - sy1) * py2) / norm; + + if (u > 1) { + u = 1; + } else if (u < 0) { + u = 0; + } + + const x = sx1 + u * px2; + const y = sy1 + u * py2; + + const intersection = { + longitude: x, + latitude: y, + }; + + const dist = Geo.getDistanceBetweenLocations(p, intersection); + + return [dist, intersection]; + } +} diff --git a/src/pathfinding/dijkstra-tree/dijkstra-tree-js.ts b/src/pathfinding/dijkstra-tree/dijkstra-tree-js.ts new file mode 100644 index 00000000..ac68e4bd --- /dev/null +++ b/src/pathfinding/dijkstra-tree/dijkstra-tree-js.ts @@ -0,0 +1,119 @@ +import { injectable } from "inversify"; +import TinyQueue from "tinyqueue"; +import { DistanceM, DurationMs } from "../../interfaces/units"; +import PathfindingGraph from "../graph"; +import { IPathTree, IShortestPathTreeAlgorithm } from "../pathfinder"; + +interface IState { + position: number; + distance: DistanceM; + duration: DurationMs; + cost: number; +} + +interface IBreakPointIndex { + [position: number]: (on: string) => Promise; +} + +@injectable() +export default class DijkstraTree implements IShortestPathTreeAlgorithm { + private nextQueue: IState[]; + private costs: number[]; + private previousNodes: number[]; + private graph: PathfindingGraph; + private useWeightedCost: boolean; + private breakPoints: IBreakPointIndex; + + constructor() { + this.graph = new PathfindingGraph(); + this.useWeightedCost = true; + this.breakPoints = {}; + } + + public setUseWeightedCost(useWeightedCost: boolean) { + this.useWeightedCost = useWeightedCost; + } + + public setGraph(graph: PathfindingGraph) { + this.graph = graph; + } + + public setBreakPoint(on: string, callback: (on: string) => Promise): void { + const position = this.graph.getNodeIndex(on); + this.breakPoints[position] = callback; + } + + public removeBreakPoint(on: string): void { + const position = this.graph.getNodeIndex(on); + delete this.breakPoints[position]; + } + + public async start(from: string, maxCost: number): Promise { + this.costs = [...Array(this.graph.getAdjacencyList().length)].fill(Infinity); + this.previousNodes = [...Array(this.graph.getAdjacencyList().length)].fill(undefined); + + const fromIndex = this.graph.getNodeIndex(from); + this.costs[fromIndex] = 0; + this.nextQueue = [{ distance: 0, duration: 0, cost: 0, position: fromIndex }]; + + return this.continue(maxCost); + } + + public async continue(maxCost: number): Promise { + const queue = new TinyQueue(this.nextQueue, (a, b) => a.duration - b.duration); + this.nextQueue = []; + + while (queue.length) { + const { position, distance, duration, cost } = queue.pop(); + + if (duration > this.getCost(position)) { + // we have already found a better way + continue; + } + + if (this.breakPoints[position]) { + await this.breakPoints[position](this.graph.getLabel(position)); + } + + if (cost > maxCost) { + // remember this state for subsequent calls + this.nextQueue.push({ duration, distance, cost, position }); + } else { + for (const edge of this.graph.getAdjacencyList()[position]) { + const next = { + distance: distance + edge.distance, + duration: duration + edge.duration, + cost: cost + edge.cost, + position: edge.node, + previousPosition: position, + }; + + if (next.duration < this.getCost(next.position)) { + queue.push(next); + this.costs[next.position] = next.duration; + this.previousNodes[next.position] = position; + } + } + } + } + + const result: IPathTree = {}; + + for (const [position, cost] of this.costs.entries()) { + const label = this.graph.getLabel(position); + const previousLabel = this.graph.getLabel(this.previousNodes[position]); + result[label] = { duration: cost, previousNode: previousLabel }; + } + + return result; + } + + private getCost(position: number): number { + if (position >= this.costs.length) { + const missingCosts = this.graph.getAdjacencyList().length - this.costs.length; + this.costs = this.costs.concat([...Array(missingCosts)].fill(Infinity)); + this.previousNodes = this.previousNodes.concat([...Array(missingCosts)].fill(undefined)); + } + return this.costs[position]; + } +} diff --git a/src/pathfinding/dijkstra/dijkstra-js.ts b/src/pathfinding/dijkstra/dijkstra-js.ts new file mode 100644 index 00000000..6a380997 --- /dev/null +++ b/src/pathfinding/dijkstra/dijkstra-js.ts @@ -0,0 +1,93 @@ +import { injectable } from "inversify"; +import TinyQueue from "tinyqueue"; +import { DistanceM, DurationMs } from "../../interfaces/units"; +import PathfindingGraph from "../graph"; +import { IPathSummary, IShortestPathAlgorithm } from "../pathfinder"; + +interface IState { + position: number; + distance: DistanceM; + duration: DurationMs; + cost: number; +} + +interface IBreakPointIndex { + [position: number]: (on: string) => Promise; +} + +@injectable() +export class Dijkstra implements IShortestPathAlgorithm { + private graph: PathfindingGraph; + private useWeightedCost: boolean; + private breakPoints: IBreakPointIndex; + + constructor() { + this.graph = new PathfindingGraph(); + this.useWeightedCost = true; + this.breakPoints = {}; + } + + public setUseWeightedCost(useWeightedCost: boolean) { + this.useWeightedCost = useWeightedCost; + } + + public setGraph(graph: PathfindingGraph) { + this.graph = graph; + } + + public setBreakPoint(on: string, callback: (on: string) => Promise): void { + const position = this.graph.getNodeIndex(on); + this.breakPoints[position] = callback; + } + + public removeBreakPoint(on: string): void { + const position = this.graph.getNodeIndex(on); + delete this.breakPoints[position]; + } + + public queryPathSummary(from: string, to: string): IPathSummary { + const costs = [...Array(this.graph.getAdjacencyList().length)].map((_) => Infinity); + + let queue: TinyQueue; + if (this.useWeightedCost) { + queue = new TinyQueue([], (a, b) => a.cost - b.cost); + } else { + queue = new TinyQueue([], (a, b) => a.duration - b.duration); + } + + const fromIndex = this.graph.getNodeIndex(from); + costs[fromIndex] = 0; + queue.push({ position: fromIndex, duration: 0, cost: 0, distance: 0 }); + + const toIndex = this.graph.getNodeIndex(to); + + while (queue.length) { + const { duration, distance, cost, position } = queue.pop(); + + if (position === toIndex) { + return { duration, distance, cost }; + } + + if (cost > costs[position]) { + // we have already found a better way + continue; + } + + for (const edge of this.graph.getAdjacencyList()[position]) { + const next = { + distance: distance + edge.distance, + duration: duration + edge.duration, + cost: cost + edge.cost, + position: edge.node, + }; + + if (next.cost < costs[next.position]) { + queue.push(next); + costs[next.position] = next.cost; + } + } + } + + return undefined; + } +} diff --git a/src/pathfinding/graph.ts b/src/pathfinding/graph.ts new file mode 100644 index 00000000..1973cacc --- /dev/null +++ b/src/pathfinding/graph.ts @@ -0,0 +1,51 @@ +interface IEdge { + node: number; + distance: number; + duration: number; + cost: number; +} + +interface INodeMap { + [label: string]: number; +} + +export default class PathfindingGraph { + private nodes: INodeMap; + private labels: string[]; + private adjacencyList: IEdge[][]; + + constructor() { + this.nodes = {}; + this.labels = []; + this.adjacencyList = []; + } + + public addEdge(from: string, to: string, distance: number, duration: number, cost: number) { + const fromIndex = this.getNodeIndex(from); + const toIndex = this.getNodeIndex(to); + this.adjacencyList[fromIndex].push({ node: toIndex, distance, cost, duration }); + } + + public getNodeMap() { + return this.nodes; + } + + public getLabel(position: number) { + return this.labels[position]; + } + + public getAdjacencyList() { + return this.adjacencyList; + } + + public getNodeIndex(label: string) { + if (!this.nodes[label]) { + const index = this.adjacencyList.length; + this.nodes[label] = index; + this.labels.push(label); + this.adjacencyList.push([]); + } + + return this.nodes[label]; + } +} diff --git a/src/pathfinding/pathfinder.ts b/src/pathfinding/pathfinder.ts new file mode 100644 index 00000000..38f67d42 --- /dev/null +++ b/src/pathfinding/pathfinder.ts @@ -0,0 +1,34 @@ +import { DistanceM, DurationMs } from "../interfaces/units"; +import PathfindingGraph from "./graph"; + +export interface IPathTree { + [node: string]: IPathTreeBranch; +} + +export interface IPathTreeBranch { + duration: DurationMs; + previousNode: string; +} + +export interface IPathSummary { + distance: DistanceM; + duration: DurationMs; + cost: number; +} + +interface IPathfinder { + setGraph(graph: PathfindingGraph): void; + setUseWeightedCost(useWeightedCost: boolean): void; + + setBreakPoint(on: string, callback: (on: string) => Promise): void; + removeBreakPoint(on: string): void; +} + +export interface IShortestPathAlgorithm extends IPathfinder { + queryPathSummary(from: string, to: string): IPathSummary; +} + +export interface IShortestPathTreeAlgorithm extends IPathfinder { + start(from: string, maxCost: number): Promise; + continue(maxCost: number): Promise; +} diff --git a/src/planner/public-transport/CSA/data-structure/IArrivalTimeByTransfers.ts b/src/planner/public-transport/CSA/data-structure/IArrivalTimeByTransfers.ts index ffcb1877..e527ddcd 100644 --- a/src/planner/public-transport/CSA/data-structure/IArrivalTimeByTransfers.ts +++ b/src/planner/public-transport/CSA/data-structure/IArrivalTimeByTransfers.ts @@ -1,10 +1,10 @@ /** - * Stores an arrival time in milliseconds and the corresponding gtfs:trip + * Stores an arrival time in milliseconds and the corresponding trip ID * for a maximum amount of transfers that can be made. */ -export default interface IArrivalTimeByTransfers extends Array<{arrivalTime: number, "gtfs:trip"?: string}> { +export default interface IArrivalTimeByTransfers extends Array<{arrivalTime: number, tripId?: string}> { [amountOfTransfers: number]: { arrivalTime: number, - "gtfs:trip"?: string, + tripId?: string, }; } diff --git a/src/planner/public-transport/CSA/data-structure/MultiConnectionQueue.ts b/src/planner/public-transport/CSA/data-structure/MultiConnectionQueue.ts new file mode 100644 index 00000000..3af651f7 --- /dev/null +++ b/src/planner/public-transport/CSA/data-structure/MultiConnectionQueue.ts @@ -0,0 +1,53 @@ +import { AsyncIterator } from "asynciterator"; +import TinyQueue from "tinyqueue"; +import IConnection from "../../../../fetcher/connections/IConnection"; + +export default class MultiConnectionQueue { + private closed: boolean; + private asyncIterator: AsyncIterator; + private queue: TinyQueue; + private next: IConnection; + + constructor(asyncIterator: AsyncIterator) { + this.closed = false; + this.asyncIterator = asyncIterator; + this.queue = new TinyQueue([], (a, b) => { + return a.departureTime - b.departureTime; + }); + } + + public close() { + this.asyncIterator.close(); + this.closed = true; + } + + public isClosed(): boolean { + return this.closed || this.asyncIterator.closed; + } + + public push(connection: IConnection) { + this.queue.push(connection); + } + + public pop(): IConnection { + if (!this.asyncIterator.readable) { + return; + } + + if (!this.next) { + this.next = this.asyncIterator.read(); + } + + if (!this.next) { + return this.queue.pop(); + } + + if (this.queue.peek() && this.queue.peek().departureTime < this.next.departureTime) { + return this.queue.pop(); + } + const result = this.next; + this.next = undefined; + return result; + } + +} diff --git a/src/planner/public-transport/CSA/data-structure/stops/Profile.ts b/src/planner/public-transport/CSA/data-structure/stops/Profile.ts index b9b09ed5..2ad29a9e 100644 --- a/src/planner/public-transport/CSA/data-structure/stops/Profile.ts +++ b/src/planner/public-transport/CSA/data-structure/stops/Profile.ts @@ -60,8 +60,8 @@ export default class Profile implements IProfile { public getArrivalTimeByTransfers(tripId?: string): IArrivalTimeByTransfers { return this.transferProfiles.map((transfer: ITransferProfile) => ({ - "arrivalTime": transfer.arrivalTime, - "gtfs:trip": tripId, + arrivalTime: transfer.arrivalTime, + tripId, })); } } diff --git a/src/planner/public-transport/CSA/data-structure/trips/IEarliestArrivalByTrip.ts b/src/planner/public-transport/CSA/data-structure/trips/IEarliestArrivalByTrip.ts index 31cd4627..bbb4f7b8 100644 --- a/src/planner/public-transport/CSA/data-structure/trips/IEarliestArrivalByTrip.ts +++ b/src/planner/public-transport/CSA/data-structure/trips/IEarliestArrivalByTrip.ts @@ -1,5 +1,5 @@ /** - * Stores for each gtfs:trip the earliest arrival [[IEarliestArrivalByTransfers]] to the target [[IStop]]. + * Stores for each tripId the earliest arrival [[IEarliestArrivalByTransfers]] to the target [[IStop]]. */ import IEarliestArrivalByTransfers from "./IEarliestArrivalByTransfers"; diff --git a/src/planner/public-transport/CSA/util/ProfileUtil.ts b/src/planner/public-transport/CSA/util/ProfileUtil.ts index 95a9f7e9..54e2fc7a 100644 --- a/src/planner/public-transport/CSA/util/ProfileUtil.ts +++ b/src/planner/public-transport/CSA/util/ProfileUtil.ts @@ -34,7 +34,7 @@ export default class ProfileUtil { maximumTransferDuration: DurationMs, ): IArrivalTimeByTransfers { const { arrivalStop, arrivalTime } = connection; - const trip: string = connection["gtfs:trip"]; + const trip: string = connection.tripId; if (connection["gtfs:dropOffType"] !== DropOffType.NotAvailable) { @@ -56,8 +56,8 @@ export default class ProfileUtil { } return Array(maxLegs + 1).fill({ - "arrivalTime": Infinity, - "gtfs:trip": trip, + arrivalTime: Infinity, + tripId: trip, }); } } diff --git a/src/planner/public-transport/CSAEarliestArrival.test.ts b/src/planner/public-transport/CSAEarliestArrival.test.ts index ac04174a..0b8b0799 100644 --- a/src/planner/public-transport/CSAEarliestArrival.test.ts +++ b/src/planner/public-transport/CSAEarliestArrival.test.ts @@ -1,5 +1,6 @@ import "jest"; import LDFetch from "ldfetch"; +import Context from "../../Context"; import Defaults from "../../Defaults"; import TravelMode from "../../enums/TravelMode"; import ConnectionsFetcherLazy from "../../fetcher/connections/lazy/ConnectionsFetcherLazy"; @@ -11,13 +12,14 @@ import StopsFetcherLDFetch from "../../fetcher/stops/ld-fetch/StopsFetcherLDFetc import IPath from "../../interfaces/IPath"; import IQuery from "../../interfaces/IQuery"; import IStep from "../../interfaces/IStep"; +import defaultContainer from "../../inversify.config"; import IResolvedQuery from "../../query-runner/IResolvedQuery"; import LocationResolverDefault from "../../query-runner/LocationResolverDefault"; import QueryRunnerDefault from "../../query-runner/QueryRunnerDefault"; +import TYPES from "../../types"; import Iterators from "../../util/Iterators"; import ReachableStopsFinderBirdsEyeCached from "../stops/ReachableStopsFinderBirdsEyeCached"; import CSAEarliestArrival from "./CSAEarliestArrival"; -import JourneyExtractorEarliestArrival from "./JourneyExtractorEarliestArrival"; describe("[PublicTransportPlannerCSAEarliestArrival]", () => { describe("mock data", () => { @@ -34,9 +36,6 @@ describe("[PublicTransportPlannerCSAEarliestArrival]", () => { const locationResolver = new LocationResolverDefault(stopsFetcher); const reachableStopsFinder = new ReachableStopsFinderBirdsEyeCached(stopsFetcher); - const journeyExtractor = new JourneyExtractorEarliestArrival( - locationResolver, - ); return new CSAEarliestArrival( connectionFetcher, @@ -44,7 +43,7 @@ describe("[PublicTransportPlannerCSAEarliestArrival]", () => { reachableStopsFinder, reachableStopsFinder, reachableStopsFinder, - journeyExtractor, + defaultContainer.get(TYPES.Context), ); }; @@ -53,7 +52,7 @@ describe("[PublicTransportPlannerCSAEarliestArrival]", () => { const query: IResolvedQuery = { publicTransportOnly: true, - from: [{latitude: 50.914326, longitude: 3.255415, id: "http://irail.be/stations/NMBS/008896925" }], + from: [{ latitude: 50.914326, longitude: 3.255415, id: "http://irail.be/stations/NMBS/008896925" }], to: [{ latitude: 51.035896, longitude: 3.710875, id: "http://irail.be/stations/NMBS/008892007" }], minimumDepartureTime: new Date("2018-11-06T09:00:00.000Z"), maximumArrivalTime: new Date("2018-11-06T19:00:00.000Z"), @@ -71,9 +70,9 @@ describe("[PublicTransportPlannerCSAEarliestArrival]", () => { }); it("Correct departure and arrival stop", () => { - expect(result).toBeDefined(); + expect(result).toBeDefined(); - for (const path of result) { + for (const path of result) { expect(path.steps).toBeDefined(); expect(path.steps[0]).toBeDefined(); expect(query.from.map((from) => from.id)).toContain(path.steps[0].startLocation.id); @@ -82,6 +81,7 @@ describe("[PublicTransportPlannerCSAEarliestArrival]", () => { }); }); + /* describe("splitting", () => { let result: IPath[]; @@ -172,7 +172,7 @@ describe("[PublicTransportPlannerCSAEarliestArrival]", () => { expect(query.to.map((to) => to.id)).toContain(path.steps[0].stopLocation.id); } }); - }); + });*/ }); describe("real-time data", () => { @@ -188,9 +188,6 @@ describe("[PublicTransportPlannerCSAEarliestArrival]", () => { const locationResolver = new LocationResolverDefault(stopsFetcher); const reachableStopsFinder = new ReachableStopsFinderBirdsEyeCached(stopsFetcher); - const journeyExtractor = new JourneyExtractorEarliestArrival( - locationResolver, - ); const CSA = new CSAEarliestArrival( connectionFetcher, @@ -198,7 +195,7 @@ describe("[PublicTransportPlannerCSAEarliestArrival]", () => { reachableStopsFinder, reachableStopsFinder, reachableStopsFinder, - journeyExtractor, + defaultContainer.get(TYPES.Context), ); return new QueryRunnerDefault(locationResolver, CSA); @@ -264,7 +261,7 @@ describe("[PublicTransportPlannerCSAEarliestArrival]", () => { let result: IPath[]; beforeAll(async () => { - const queryRunner = createQueryRunner(); + const queryRunner = createQueryRunner(); const iterator = await queryRunner.run(query); result = await Iterators.toArray(iterator); diff --git a/src/planner/public-transport/CSAEarliestArrival.ts b/src/planner/public-transport/CSAEarliestArrival.ts index c065fc5a..74504dc0 100644 --- a/src/planner/public-transport/CSAEarliestArrival.ts +++ b/src/planner/public-transport/CSAEarliestArrival.ts @@ -12,94 +12,80 @@ import IConnectionsProvider from "../../fetcher/connections/IConnectionsProvider import IStop from "../../fetcher/stops/IStop"; import ILocation from "../../interfaces/ILocation"; import IPath from "../../interfaces/IPath"; -import IStep from "../../interfaces/IStep"; +import IQuery from "../../interfaces/IQuery"; import ILocationResolver from "../../query-runner/ILocationResolver"; import IResolvedQuery from "../../query-runner/IResolvedQuery"; import TYPES from "../../types"; import Geo from "../../util/Geo"; -import Path from "../Path"; -import Step from "../Step"; import IReachableStopsFinder, { IReachableStop } from "../stops/IReachableStopsFinder"; +import MultiConnectionQueue from "./CSA/data-structure/MultiConnectionQueue"; import IProfileByStop from "./CSA/data-structure/stops/IProfileByStop"; import ITransferProfile from "./CSA/data-structure/stops/ITransferProfile"; import IEnterConnectionByTrip from "./CSA/data-structure/trips/IEnterConnectionByTrip"; import IJourneyExtractor from "./IJourneyExtractor"; import IPublicTransportPlanner from "./IPublicTransportPlanner"; +import JourneyExtractorEarliestArrival from "./JourneyExtractorEarliestArrival"; + +interface IFinalReachableStops { + [stop: string]: IReachableStop; +} + +// Implementation is as close as possible to the original paper: https://arxiv.org/pdf/1703.05997.pdf -/** - * An implementation of the Earliest Arrival Connection Scan Algorithm. - * The earliest arrival connection scan algorithm takes the initial, transfer and final footpaths into account. - * - * Doesn't support the maximumTravelDuration and maximumTransfers query parameters. - * - * @implements [[IPublicTransportPlanner]] - * @property profilesByStop Describes the CSA profiles for each scanned stop. - * @property enterConnectionByTrip Describes the connection you should enter at a departure location for each trip. - * @property gtfsTripByConnection Stores the gtfs:trip's a connection is part of. Used for splitting and joining. - * - * @returns one [[IPath]] that consist of several [[IStep]]s. - */ @injectable() export default class CSAEarliestArrival implements IPublicTransportPlanner { private readonly connectionsProvider: IConnectionsProvider; private readonly locationResolver: ILocationResolver; + private readonly transferReachableStopsFinder: IReachableStopsFinder; private readonly initialReachableStopsFinder: IReachableStopsFinder; private readonly finalReachableStopsFinder: IReachableStopsFinder; - private readonly transferReachableStopsFinder: IReachableStopsFinder; - private readonly journeyExtractor: IJourneyExtractor; private readonly context: Context; + private finalReachableStops: IFinalReachableStops = {}; private profilesByStop: IProfileByStop = {}; // S private enterConnectionByTrip: IEnterConnectionByTrip = {}; // T - private gtfsTripsByConnection = {}; - private initialReachableStops: IReachableStop[] = []; - private finalReachableStops: IReachableStop[] = []; + private connectionsQueue: MultiConnectionQueue; - private query: IResolvedQuery; - private connectionsIterator: AsyncIterator; + private journeyExtractor: IJourneyExtractor; constructor( @inject(TYPES.ConnectionsProvider) - connectionsProvider: IConnectionsProvider, + connectionsProvider: IConnectionsProvider, @inject(TYPES.LocationResolver) - locationResolver: ILocationResolver, - @inject(TYPES.ReachableStopsFinder) - @tagged("phase", ReachableStopsSearchPhase.Initial) - initialReachableStopsFinder: IReachableStopsFinder, + locationResolver: ILocationResolver, @inject(TYPES.ReachableStopsFinder) @tagged("phase", ReachableStopsSearchPhase.Transfer) - transferReachableStopsFinder: IReachableStopsFinder, + transferReachableStopsFinder: IReachableStopsFinder, + @inject(TYPES.ReachableStopsFinder) + @tagged("phase", ReachableStopsSearchPhase.Initial) + initialReachableStopsFinder: IReachableStopsFinder, @inject(TYPES.ReachableStopsFinder) @tagged("phase", ReachableStopsSearchPhase.Final) - finalReachableStopsFinder: IReachableStopsFinder, - @inject(TYPES.JourneyExtractor) - journeyExtractor: IJourneyExtractor, + finalReachableStopsFinder: IReachableStopsFinder, @inject(TYPES.Context) - context?: Context, + context?: Context, ) { this.connectionsProvider = connectionsProvider; this.locationResolver = locationResolver; - this.initialReachableStopsFinder = initialReachableStopsFinder; this.transferReachableStopsFinder = transferReachableStopsFinder; + this.initialReachableStopsFinder = initialReachableStopsFinder; this.finalReachableStopsFinder = finalReachableStopsFinder; - this.journeyExtractor = journeyExtractor; this.context = context; + this.journeyExtractor = new JourneyExtractorEarliestArrival(locationResolver); } public async plan(query: IResolvedQuery): Promise> { - this.query = query; - - this.setBounds(); + this.setBounds(query); - return this.calculateJourneys(); + return this.calculateJourneys(query); } - private setBounds() { + private setBounds(query: IResolvedQuery) { const { minimumDepartureTime: lowerBoundDate, maximumArrivalTime: upperBoundDate, - } = this.query; + } = query; this.connectionsProvider.setIteratorOptions({ upperBoundDate, @@ -107,26 +93,29 @@ export default class CSAEarliestArrival implements IPublicTransportPlanner { }); } - private async calculateJourneys(): Promise> { - const hasInitialReachableStops: boolean = await this.initInitialReachableStops(); - const hasFinalReachableStops: boolean = await this.initFinalReachableStops(); + private async calculateJourneys(query: IResolvedQuery): Promise> { + const connectionsIterator = this.connectionsProvider.createIterator(); + this.connectionsQueue = new MultiConnectionQueue(connectionsIterator); + + const [hasInitialReachableStops, hasFinalReachableStops] = await Promise.all([ + this.initInitialReachableStops(query), + this.initFinalReachableStops(query), + ]); if (!hasInitialReachableStops || !hasFinalReachableStops) { return Promise.resolve(new ArrayIterator([])); } - this.connectionsIterator = this.connectionsProvider.createIterator(); - const self = this; return new Promise((resolve, reject) => { - let isDone = false; + let isDone: boolean = false; const done = () => { if (!isDone) { - self.connectionsIterator.close(); + self.connectionsQueue.close(); - self.journeyExtractor.extractJourneys(self.profilesByStop, self.query) + self.extractJourneys(query) .then((resultIterator) => { resolve(resultIterator); }); @@ -135,311 +124,144 @@ export default class CSAEarliestArrival implements IPublicTransportPlanner { } }; - this.connectionsIterator.on("readable", () => - self.processNextConnection(done), + connectionsIterator.on("readable", () => + self.processConnections(query, done), ); - this.connectionsIterator.on("end", () => done()); + connectionsIterator.on("end", () => done()); + + // iterator may have become readable before the listener was attached + self.processConnections(query, done); }) as Promise>; } - private async processNextConnection(done: () => void) { - let connection = this.connectionsIterator.read(); - - while (connection) { - this.discoverConnection(connection); - - const { - to, - minimumDepartureTime, - maximumWalkingDuration, - minimumTransferDuration, - maximumTransferDuration, - } = this.query; - - const arrivalStopId: string = to[0].id; - if (this.profilesByStop[arrivalStopId].arrivalTime <= connection.departureTime.getTime()) { - this.connectionsIterator.close(); - done(); - break; - } - - if (connection.departureTime < minimumDepartureTime && !this.connectionsIterator.closed) { - connection = this.connectionsIterator.read(); - continue; - } - - const tripIds = this.getTripIdsFromConnection(connection); - for (const tripId of tripIds) { - - const canRemainSeated = this.enterConnectionByTrip[tripId]; - - const initialStop = this.initialReachableStops.find(({ stop }) => - stop.id === connection.departureStop, - ); - - const departure = connection.departureTime.getTime(); - const arrival = this.profilesByStop[connection.departureStop].arrivalTime; - - const transferDuration = departure - arrival; - - const canTakeTransfer = ( - transferDuration > -Infinity && - (transferDuration >= minimumTransferDuration || initialStop && transferDuration >= 0) && - (transferDuration <= maximumTransferDuration || initialStop && transferDuration <= maximumWalkingDuration) && - connection["gtfs:pickupType"] !== PickupType.NotAvailable - ); - - if (canRemainSeated || canTakeTransfer) { - this.updateTrips(connection, tripId); - - if (connection["gtfs:dropOffType"] !== DropOffType.NotAvailable) { - await this.updateProfiles(connection, tripId); - } - } - - } - - if (!this.connectionsIterator.closed) { - connection = this.connectionsIterator.read(); - continue; - } - - connection = undefined; - } + private async extractJourneys(query: IResolvedQuery): Promise> { + return this.journeyExtractor.extractJourneys(this.profilesByStop, query); } - private async initInitialReachableStops(): Promise { - const fromLocation: IStop = this.query.from[0] as IStop; + private async processConnections(query: IResolvedQuery, resolve: () => void) { + const { from, to, minimumDepartureTime } = query; + const departureStopId: string = from[0].id; + const arrivalStopId: string = to[0].id; - // Making sure the departure location has an id - const geoId = Geo.getId(this.query.from[0]); - if (!fromLocation.id) { - this.query.from[0].id = geoId; - this.query.from[0].name = "Departure location"; - } + let connection: IConnection = this.connectionsQueue.pop(); - this.initialReachableStops = await this.initialReachableStopsFinder.findReachableStops( - fromLocation, - ReachableStopsFinderMode.Source, - this.query.maximumWalkingDuration, - this.query.minimumWalkingSpeed, - ); - - // Abort when we can't reach a single stop. - if (this.initialReachableStops.length <= 1 && this.initialReachableStops[0].stop.id === geoId && this.context) { - this.context.emit(EventType.AbortQuery, "No reachable stops at departure location"); + while (connection && !this.connectionsQueue.isClosed()) { - return false; - } - - // Check if departure location is a stop. - for (const reachableStop of this.initialReachableStops) { - if (reachableStop.duration === 0) { - this.query.from[0] = reachableStop.stop; + if (connection.departureTime < minimumDepartureTime && !this.connectionsQueue.isClosed()) { + // starting criterion + // skip connections before the minimum departure time + connection = this.connectionsQueue.pop(); + continue; } - } - if (this.context) { - this.context.emit(EventType.InitialReachableStops, this.initialReachableStops); - } - - this.initialReachableStops.forEach(({ stop, duration }: IReachableStop) => { - const departureTime = this.query.minimumDepartureTime.getTime(); - const arrivalTime = this.query.minimumDepartureTime.getTime() + duration; - - this.profilesByStop[stop.id] = { - departureTime, - arrivalTime, - }; - - if (duration > 0) { - const path: Path = Path.create(); - - const footpath: IStep = Step.create( - this.query.from[0], - stop, - TravelMode.Walking, - { - minimum: arrivalTime - departureTime, - }, - new Date(departureTime), - new Date(arrivalTime), - ); - - path.addStep(footpath); - - this.profilesByStop[stop.id].path = path; + if (this.getProfile(arrivalStopId).arrivalTime <= connection.departureTime.getTime()) { + // stopping criterion + // we cannot improve the tentative arrival time anymore + return resolve(); } - }); + const tripId = connection.tripId; + const departureTime = connection.departureTime.getTime(); - return true; - } - - private async initFinalReachableStops(): Promise { - const arrivalStop: IStop = this.query.to[0] as IStop; - - const geoId = Geo.getId(this.query.to[0]); - if (!this.query.to[0].id) { - this.query.to[0].id = geoId; - this.query.to[0].name = "Arrival location"; - } - - this.finalReachableStops = await this.finalReachableStopsFinder - .findReachableStops( - arrivalStop, - ReachableStopsFinderMode.Target, - this.query.maximumWalkingDuration, - this.query.minimumWalkingSpeed, + const canRemainSeated = this.enterConnectionByTrip[tripId]; + const canTakeTransfer = ( + ( + connection.departureStop === departureStopId || + this.getProfile(connection.departureStop).arrivalTime <= departureTime + ) && + connection["gtfs:pickupType"] !== PickupType.NotAvailable ); - if (this.finalReachableStops.length <= 1 && this.finalReachableStops[0].stop.id === geoId && this.context) { - this.context.emit(EventType.AbortQuery, "No reachable stops at arrival location"); - - return false; - } + if (canRemainSeated || canTakeTransfer) { + // enterConnectionByTrip should point to the first reachable connection + if (!this.enterConnectionByTrip[tripId]) { + this.enterConnectionByTrip[tripId] = connection; + } - if (this.context) { - this.context.emit(EventType.FinalReachableStops, this.finalReachableStops); - } + // limited walking optimization + const canImprove = connection.arrivalTime.getTime() < this.getProfile(connection.arrivalStop).arrivalTime; + const canLeave = connection["gtfs:dropOffType"] !== DropOffType.NotAvailable; - // Check if arrival location is a stop. - for (const reachableStop of this.finalReachableStops) { - if (reachableStop.duration === 0) { - this.query.to[0] = reachableStop.stop; + if (canLeave && canImprove) { + this.updateProfile(query, connection); + await this.scheduleExtraConnections(query, connection); + } } - } - - this.profilesByStop[this.query.to[0].id] = { - departureTime: Infinity, - arrivalTime: Infinity, - }; - - return true; - } - private discoverConnection(connection: IConnection) { - this.setTripIdsByConnectionId(connection); + if (!this.connectionsQueue.isClosed()) { + connection = this.connectionsQueue.pop(); + continue; + } - if (!this.profilesByStop[connection.departureStop]) { - this.profilesByStop[connection.departureStop] = { - departureTime: Infinity, - arrivalTime: Infinity, - }; + connection = undefined; } + } - if (!this.profilesByStop[connection.arrivalStop]) { - this.profilesByStop[connection.arrivalStop] = { + private getProfile(stopId: string): ITransferProfile { + if (!this.profilesByStop[stopId]) { + this.profilesByStop[stopId] = { departureTime: Infinity, arrivalTime: Infinity, }; } + return this.profilesByStop[stopId]; } - private getTripIdsFromConnection(connection: IConnection): string[] { - return this.gtfsTripsByConnection[connection.id]; - } - - private setTripIdsByConnectionId(connection: IConnection): void { - if (!this.gtfsTripsByConnection.hasOwnProperty(connection.id)) { - this.gtfsTripsByConnection[connection.id] = []; - } - - this.gtfsTripsByConnection[connection.id].push(connection["gtfs:trip"]); - - let nextConnectionIndex = 0; - while (connection.nextConnection && nextConnectionIndex < connection.nextConnection.length) { - const connectionId = connection.nextConnection[nextConnectionIndex]; - - if (!this.gtfsTripsByConnection.hasOwnProperty(connectionId)) { - this.gtfsTripsByConnection[connectionId] = []; - - } - - this.gtfsTripsByConnection[connectionId].push(connection["gtfs:trip"]); - nextConnectionIndex++; - } - - } - - private updateTrips(connection: IConnection, tripId: string): void { - const isInitialReachableStop = this.initialReachableStops.find(({ stop }: IReachableStop) => - stop.id === connection.departureStop, - ); - - if (!this.enterConnectionByTrip[tripId] || isInitialReachableStop) { - this.enterConnectionByTrip[tripId] = connection; - } + private updateProfile(query: IResolvedQuery, connection: IConnection) { + /* + Call this ONLY if the given connection is known to improve the arrival stop's profile + */ + + const tripId = connection.tripId; + const departureTime = connection.departureTime.getTime(); + const arrivalTime = connection.arrivalTime.getTime(); + + // update profile of arrival stop + const arrivalProfile: ITransferProfile = { + departureTime, + arrivalTime, + exitConnection: connection, + enterConnection: this.enterConnectionByTrip[tripId], + }; + this.profilesByStop[connection.arrivalStop] = arrivalProfile; } - private async updateProfiles(connection: IConnection, tripId: string): Promise { + private async scheduleExtraConnections(query: IQuery, sourceConnection: IConnection) { try { - const arrivalStop: ILocation = await this.locationResolver.resolve(connection.arrivalStop); + const arrivalStop: ILocation = await this.locationResolver.resolve(sourceConnection.arrivalStop); const reachableStops: IReachableStop[] = await this.transferReachableStopsFinder.findReachableStops( arrivalStop as IStop, ReachableStopsFinderMode.Source, - this.query.maximumTransferDuration, - this.query.minimumWalkingSpeed, + query.maximumTransferDuration, + query.minimumWalkingSpeed, ); - reachableStops.forEach((reachableStop: IReachableStop) => { - const { stop, duration } = reachableStop; - - if (!this.profilesByStop[stop.id]) { - this.profilesByStop[stop.id] = { - departureTime: Infinity, - arrivalTime: Infinity, - }; - } - - if (stop.id === this.query.to[0].id) { - return; - } - - const reachableStopArrival = this.profilesByStop[stop.id].arrivalTime; - - const departureTime = connection.departureTime.getTime(); - const arrivalTime = connection.arrivalTime.getTime() + duration; + if (this.finalReachableStops[arrivalStop.id]) { + reachableStops.push(this.finalReachableStops[arrivalStop.id]); + } - if (reachableStopArrival > arrivalTime) { - const transferProfile: ITransferProfile = { - departureTime, - arrivalTime, - exitConnection: connection, - enterConnection: this.enterConnectionByTrip[tripId], + for (const reachableStop of reachableStops) { + const { stop: stop, duration: duration } = reachableStop; + const transferTentativeArrival = this.getProfile(stop.id).arrivalTime; + + if (duration && transferTentativeArrival > sourceConnection.arrivalTime.getTime() && stop.id) { + // create a connection that resembles a footpath + // TODO, ditch the IReachbleStop and IConnection interfaces and make these proper objects + const transferConnection: IConnection = { + id: `TRANSFER_TO:${stop.id}`, + tripId: `TRANSFER_TO:${stop.id}`, + travelMode: TravelMode.Walking, // TODO, this should be part of the reachable stop object + departureTime: sourceConnection.arrivalTime, + departureStop: sourceConnection.arrivalStop, + arrivalTime: new Date(sourceConnection.arrivalTime.getTime() + duration), + arrivalStop: stop.id, }; - if (duration > 0) { - const path: Path = Path.create(); - - const footpath: IStep = Step.create( - arrivalStop, - stop, - TravelMode.Walking, - { - minimum: duration, - }, - new Date(arrivalTime - duration), - new Date(arrivalTime), - ); - - path.addStep(footpath); - - transferProfile.path = path; - } - - if (this.context && this.context.listenerCount(EventType.AddedNewTransferProfile) > 0) { - this.emitTransferProfile(transferProfile); - } - - this.profilesByStop[stop.id] = transferProfile; + this.connectionsQueue.push(transferConnection); } - }); - - this.checkIfArrivalStopIsReachable(connection, tripId, arrivalStop); - + } } catch (e) { if (this.context) { this.context.emitWarning(e); @@ -447,72 +269,94 @@ export default class CSAEarliestArrival implements IPublicTransportPlanner { } } - private checkIfArrivalStopIsReachable(connection: IConnection, tripId: string, arrivalStop: ILocation): void { - const canReachArrivalStop = this.finalReachableStops.find((reachableStop: IReachableStop) => - reachableStop.stop.id === arrivalStop.id, + private async initInitialReachableStops(query: IResolvedQuery): Promise { + const fromLocation: ILocation = query.from[0]; + + // Making sure the departure location has an id + const geoId = Geo.getId(fromLocation); + if (!fromLocation.id) { + query.from[0].id = geoId; + query.from[0].name = "Departure location"; + } + + const reachableStops = await this.initialReachableStopsFinder.findReachableStops( + fromLocation, + ReachableStopsFinderMode.Source, + query.maximumWalkingDuration, + query.minimumWalkingSpeed, ); - if (canReachArrivalStop) { - const finalLocationId = this.query.to[0].id; + // Abort when we can't reach a single stop. + if (reachableStops.length === 0) { + this.context.emit(EventType.AbortQuery, "No reachable stops at departure location"); + + return false; + } - if (canReachArrivalStop.stop.id === finalLocationId) { - const departureTime = connection.departureTime.getTime(); - const arrivalTime = connection.arrivalTime.getTime(); - const reachableStopArrival = this.profilesByStop[connection.arrivalStop].arrivalTime; + if (this.context) { + this.context.emit(EventType.InitialReachableStops, reachableStops); + } - if (reachableStopArrival > arrivalTime) { - this.profilesByStop[finalLocationId] = { - departureTime, - arrivalTime, - exitConnection: connection, - enterConnection: this.enterConnectionByTrip[tripId], - }; - } + for (const reachableStop of reachableStops) { + const { stop: stop, duration: duration } = reachableStop; + + if (duration) { + // create a connection that resembles a footpath + // TODO, ditch the IReachbleStop and IConnection interfaces and make these proper objects + const transferConnection: IConnection = { + id: `MOVE_TO:${stop.id}`, + tripId: `MOVE_TO:${stop.id}`, + travelMode: TravelMode.Walking, // TODO, this should be part of the reachable stop object + departureTime: query.minimumDepartureTime, + departureStop: fromLocation.id, + arrivalTime: new Date(query.minimumDepartureTime.getTime() + duration), + arrivalStop: stop.id, + }; + this.connectionsQueue.push(transferConnection); } + } - const finalProfile = this.profilesByStop[finalLocationId]; + return true; + } - const departureTime = connection.arrivalTime.getTime(); - const arrivalTime = connection.arrivalTime.getTime() + canReachArrivalStop.duration; + private async initFinalReachableStops(query: IResolvedQuery): Promise { + const toLocation: ILocation = query.to[0]; - if ((!finalProfile || finalProfile.arrivalTime > arrivalTime) && canReachArrivalStop.duration > 0) { - const path: Path = Path.create(); + // Making sure the departure location has an id + const geoId = Geo.getId(toLocation); + if (!toLocation.id) { + query.to[0].id = geoId; + query.to[0].name = "Arrival location"; + } - const footpath: IStep = Step.create( - arrivalStop, - this.query.to[0], - TravelMode.Walking, - { - minimum: arrivalTime - departureTime, - }, - new Date(departureTime), - new Date(arrivalTime), - ); + const reachableStops = await this.finalReachableStopsFinder.findReachableStops( + toLocation, + ReachableStopsFinderMode.Target, + query.maximumWalkingDuration, + query.minimumWalkingSpeed, + ); - path.addStep(footpath); + // Abort when we can't reach a single stop. + if (reachableStops.length === 0) { + this.context.emit(EventType.AbortQuery, "No reachable stops at arrival location"); - this.profilesByStop[finalLocationId] = { - departureTime, - arrivalTime, - path, - }; - } + return false; } - } - private async emitTransferProfile(transferProfile: ITransferProfile): Promise { - try { - const departureStop = await this.locationResolver.resolve(transferProfile.enterConnection.departureStop); - const arrivalStop = await this.locationResolver.resolve(transferProfile.exitConnection.arrivalStop); - - this.context.emit(EventType.AddedNewTransferProfile, { - departureStop, - arrivalStop, - }); + if (this.context) { + this.context.emit(EventType.FinalReachableStops, reachableStops); + } - } catch (e) { - this.context.emitWarning(e); + for (const reachableStop of reachableStops) { + if (reachableStop.duration > 0) { + this.finalReachableStops[reachableStop.stop.id] = { + stop: toLocation as IStop, + duration: reachableStop.duration, + }; + } } + + return true; } } diff --git a/src/planner/public-transport/CSAProfile.ts b/src/planner/public-transport/CSAProfile.ts index 20cb7941..97ad38ef 100644 --- a/src/planner/public-transport/CSAProfile.ts +++ b/src/planner/public-transport/CSAProfile.ts @@ -54,7 +54,7 @@ export default class CSAProfile implements IPublicTransportPlanner { private profilesByStop: IProfilesByStop = {}; // S private earliestArrivalByTrip: IEarliestArrivalByTrip = {}; // T - private durationToTargetByStop: DurationMs[] = []; + private durationToTargetByStop = {}; private gtfsTripByConnection = {}; private initialReachableStops: IReachableStop[] = []; @@ -268,7 +268,7 @@ export default class CSAProfile implements IPublicTransportPlanner { this.query.minimumWalkingSpeed, ); - if (reachableStops.length <= 1 && reachableStops[0].stop.id === geoId) { + if (reachableStops.length < 1) { if (this.context) { this.context.emit(EventType.AbortQuery, "No reachable stops at arrival location"); } @@ -313,7 +313,7 @@ export default class CSAProfile implements IPublicTransportPlanner { } } - if (this.initialReachableStops.length <= 1 && this.initialReachableStops[0].stop.id === geoId) { + if (this.initialReachableStops.length < 1) { if (this.context) { this.context.emit(EventType.AbortQuery, "No reachable stops at departure location"); } @@ -360,8 +360,8 @@ export default class CSAProfile implements IPublicTransportPlanner { if (!minimumArrivalTime || tripArrivalTime < minimumArrivalTime) { earliestArrivalTimeByTransfers[amountOfTransfers] = { - "arrivalTime": tripArrivalTime, - "gtfs:trip": tripId, + arrivalTime: tripArrivalTime, + tripId, }; minimumArrivalTime = tripArrivalTime; } diff --git a/src/planner/public-transport/JourneyExtractorEarliestArrival.ts b/src/planner/public-transport/JourneyExtractorEarliestArrival.ts index 8277019e..ca08ffac 100644 --- a/src/planner/public-transport/JourneyExtractorEarliestArrival.ts +++ b/src/planner/public-transport/JourneyExtractorEarliestArrival.ts @@ -13,11 +13,6 @@ import IProfileByStop from "./CSA/data-structure/stops/IProfileByStop"; import ITransferProfile from "./CSA/data-structure/stops/ITransferProfile"; import IJourneyExtractor from "./IJourneyExtractor"; -/** - * The earliest arrival journey based on the profiles and query from [[CSAEarliestArrival]]. - * A journey is an [[IPath]] that consist of several [[IStep]]s. - * - */ @injectable() export default class JourneyExtractorEarliestArrival implements IJourneyExtractor { private readonly locationResolver: ILocationResolver; @@ -26,7 +21,7 @@ export default class JourneyExtractorEarliestArrival implements IJourneyExtracto constructor( @inject(TYPES.LocationResolver) locationResolver: ILocationResolver, - @inject(TYPES.Context)context?: Context, + @inject(TYPES.Context) context?: Context, ) { this.locationResolver = locationResolver; this.context = context; @@ -39,43 +34,38 @@ export default class JourneyExtractorEarliestArrival implements IJourneyExtracto const path: Path = Path.create(); const departureStopId: string = query.from[0].id; - let currentStopId: string = query.to[0].id; - let currentProfile: ITransferProfile = profilesByStop[currentStopId]; - - while (currentStopId !== departureStopId && (currentProfile.enterConnection || currentProfile.path)) { - const { enterConnection, exitConnection, path: profilePath } = currentProfile; - - if (profilePath) { - currentStopId = profilePath.getStartLocationId(); - - if (currentStopId === departureStopId) { - const lastStep = path.steps[path.steps.length - 1]; - const timeToAdd = lastStep.startTime.getTime() - profilePath.steps[0].stopTime.getTime(); - - profilePath.addTime(timeToAdd); - } - - path.addPath(profilePath); - } - - if (currentProfile.enterConnection && currentProfile.exitConnection) { - const enterLocation: ILocation = await this.locationResolver.resolve(enterConnection.departureStop); - const exitLocation: ILocation = await this.locationResolver.resolve(exitConnection.arrivalStop); - - const step: IStep = Step.createFromConnections( - enterConnection, - exitConnection, - ); - - step.startLocation = enterLocation; - step.stopLocation = exitLocation; - path.addStep(step); - - currentStopId = enterConnection.departureStop; - } - currentProfile = profilesByStop[currentStopId]; + while (currentStopId !== departureStopId && + profilesByStop[currentStopId] && + profilesByStop[currentStopId].exitConnection) { + + const currentProfile: ITransferProfile = profilesByStop[currentStopId]; + const { enterConnection, exitConnection } = currentProfile; + const promises = [ + this.locationResolver.resolve(enterConnection.departureStop), + this.locationResolver.resolve(exitConnection.arrivalStop), + ]; + const [enterLocation, exitLocation] = await Promise.all(promises); + + const arrivalTime = exitConnection.arrivalTime; + const departureTime = enterConnection.departureTime; + const duration = arrivalTime.getTime() - departureTime.getTime(); + + const step = new Step( + enterLocation, + exitLocation, + exitConnection.travelMode, + { average: duration }, + departureTime, + arrivalTime, + undefined, + enterConnection.id, + exitConnection.id, + ); + + path.addStep(step); + currentStopId = enterConnection.departureStop; } if (!path.steps.length) { diff --git a/src/planner/road/RoadPlannerPathfinding.ts b/src/planner/road/RoadPlannerPathfinding.ts new file mode 100644 index 00000000..a5793acd --- /dev/null +++ b/src/planner/road/RoadPlannerPathfinding.ts @@ -0,0 +1,125 @@ +import { ArrayIterator, AsyncIterator } from "asynciterator"; +import { inject, injectable } from "inversify"; +import inBBox from "tiles-in-bbox"; +import { RoutableTileCoordinate } from "../../entities/tiles/coordinate"; +import TravelMode from "../../enums/TravelMode"; +import IRoutableTileProvider from "../../fetcher/tiles/IRoutableTileProvider"; +import ILocation from "../../interfaces/ILocation"; +import IPath from "../../interfaces/IPath"; +import IProbabilisticValue from "../../interfaces/IProbabilisticValue"; +import { DurationMs, SpeedKmH } from "../../interfaces/units"; +import PathfinderProvider from "../../pathfinding/PathfinderProvider"; +import IResolvedQuery from "../../query-runner/IResolvedQuery"; +import TYPES from "../../types"; +import Geo from "../../util/Geo"; +import Path from "../Path"; +import IRoadPlanner from "./IRoadPlanner"; + +@injectable() +export default class RoadPlannerPathfinding implements IRoadPlanner { + private tileProvider: IRoutableTileProvider; + private pathfinderProvider: PathfinderProvider; + + constructor( + @inject(TYPES.RoutableTileProvider) tileProvider: IRoutableTileProvider, + @inject(TYPES.PathfinderProvider) pathfinderProvider: PathfinderProvider, + ) { + this.tileProvider = tileProvider; + this.pathfinderProvider = pathfinderProvider; + } + + public async plan(query: IResolvedQuery): Promise> { + const { + from: fromLocations, + to: toLocations, + } = query; + + const paths = []; + + if (fromLocations && toLocations && fromLocations.length && toLocations.length) { + + for (const from of fromLocations) { + for (const to of toLocations) { + + const newPath = await this.getPathBetweenLocations( + from, + to, + ); + + if (newPath) { + paths.push(newPath); + } + } + } + } + + return new ArrayIterator(paths); + } + + private async getPathBetweenLocations( + from: ILocation, + to: ILocation, + ): Promise { + const padding = 0.02; + const zoom = 14; + + const fromBBox = { + top: from.latitude + padding, + bottom: from.latitude - padding, + left: from.longitude - padding, + right: from.longitude + padding, + }; + const toBBox = { + top: to.latitude + padding, + bottom: to.latitude - padding, + left: to.longitude - padding, + right: to.longitude + padding, + }; + const betweenBBox = { + top: Math.max(fromBBox.top, toBBox.top), + bottom: Math.min(fromBBox.bottom, toBBox.bottom), + left: Math.min(fromBBox.left, toBBox.left), + right: Math.max(fromBBox.right, toBBox.right), + }; + + const fromTileCoords = inBBox.tilesInBbox(fromBBox, zoom).map((obj) => { + return new RoutableTileCoordinate(zoom, obj.x, obj.y); + }); + const toTileCoords = inBBox.tilesInBbox(toBBox, zoom).map((obj) => { + return new RoutableTileCoordinate(zoom, obj.x, obj.y); + }); + const betweenTileCoords = inBBox.tilesInBbox(betweenBBox, zoom).map((obj) => { + return new RoutableTileCoordinate(zoom, obj.x, obj.y); + }); + + const [fromTileset, toTileset, _] = await Promise.all([ + this.tileProvider.getMultipleByTileCoords(fromTileCoords), + this.tileProvider.getMultipleByTileCoords(toTileCoords), + this.tileProvider.getMultipleByTileCoords(betweenTileCoords)]); + + this.pathfinderProvider.embedLocation(from, fromTileset); + this.pathfinderProvider.embedLocation(to, toTileset, true); + + return this._innerPath(from, to); + } + + private _innerPath( + start: ILocation, + stop: ILocation, + ): IPath { + const pathfinder = this.pathfinderProvider.getShortestPathAlgorithm(); + const summary = pathfinder.queryPathSummary(Geo.getId(start), Geo.getId(stop)); + + const duration: IProbabilisticValue = { + average: summary.duration, + }; + + return new Path([{ + startLocation: start, + stopLocation: stop, + distance: summary.distance, + duration, + travelMode: TravelMode.Walking, + }]); + } +} diff --git a/src/planner/stops/IReachableStopsFinder.ts b/src/planner/stops/IReachableStopsFinder.ts index 99ed8105..19f235b7 100644 --- a/src/planner/stops/IReachableStopsFinder.ts +++ b/src/planner/stops/IReachableStopsFinder.ts @@ -1,5 +1,6 @@ import ReachableStopsFinderMode from "../../enums/ReachableStopsFinderMode"; import IStop from "../../fetcher/stops/IStop"; +import ILocation from "../../interfaces/ILocation"; import { DurationMs, SpeedKmH } from "../../interfaces/units"; /** @@ -8,7 +9,7 @@ import { DurationMs, SpeedKmH } from "../../interfaces/units"; */ export default interface IReachableStopsFinder { findReachableStops: ( - sourceOrTargetStop: IStop, + sourceOrTargetStop: ILocation, mode: ReachableStopsFinderMode, maximumDuration: DurationMs, minimumSpeed: SpeedKmH, @@ -21,4 +22,5 @@ export default interface IReachableStopsFinder { export interface IReachableStop { stop: IStop; duration: DurationMs; + id?: string; } diff --git a/src/planner/stops/ReachableStopsFinderDelaunay.ts b/src/planner/stops/ReachableStopsFinderDelaunay.ts new file mode 100644 index 00000000..84ea6087 --- /dev/null +++ b/src/planner/stops/ReachableStopsFinderDelaunay.ts @@ -0,0 +1,109 @@ +import { AsyncIterator } from "asynciterator"; +import { Delaunay } from "d3-delaunay"; +import { inject, injectable } from "inversify"; +import ReachableStopsFinderMode from "../../enums/ReachableStopsFinderMode"; +import IStop from "../../fetcher/stops/IStop"; +import IStopsProvider from "../../fetcher/stops/IStopsProvider"; +import ILocation from "../../interfaces/ILocation"; +import IPath from "../../interfaces/IPath"; +import { DurationMs, SpeedKmH } from "../../interfaces/units"; +import IResolvedQuery from "../../query-runner/IResolvedQuery"; +import TYPES from "../../types"; +import Iterators from "../../util/Iterators"; +import IRoadPlanner from "../road/IRoadPlanner"; +import IReachableStopsFinder, { IReachableStop } from "./IReachableStopsFinder"; + +@injectable() +export default class ReachableStopsFinderDelaunay implements IReachableStopsFinder { + private readonly stopsProvider: IStopsProvider; + private readonly roadPlanner: IRoadPlanner; + private triangles: Delaunay; + private trianglePoints: IStop[]; + + constructor( + @inject(TYPES.StopsProvider) stopsProvider: IStopsProvider, + @inject(TYPES.RoadPlanner) roadPlanner: IRoadPlanner, + ) { + this.stopsProvider = stopsProvider; + this.roadPlanner = roadPlanner; + this.prepare(); + } + + public async findReachableStops( + location: ILocation, + mode: ReachableStopsFinderMode, + maximumDuration: DurationMs, + minimumSpeed: SpeedKmH, + ): Promise { + + const minimumDepartureTime = new Date(); + const maximumArrivalTime = new Date(minimumDepartureTime.getTime() + maximumDuration); + + const baseProp = mode === ReachableStopsFinderMode.Target ? "to" : "from"; + const otherProp = mode === ReachableStopsFinderMode.Target ? "from" : "to"; + + const baseQuery: IResolvedQuery = { + [baseProp]: [location], + minimumDepartureTime, + maximumArrivalTime, + minimumWalkingSpeed: minimumSpeed, + }; + + const stopsNearCell: IStop[] = await this.getNearbyStops(location); + const reachableStops: IReachableStop[] = []; + + await Promise.all(stopsNearCell.map(async (possibleTarget: IStop) => { + const query = Object.assign({}, baseQuery, { + [otherProp]: [possibleTarget as ILocation], + }); + + const pathIterator = await this.roadPlanner.plan(query); + + const durationIterator: AsyncIterator = pathIterator.map((path: IPath) => + path.steps.reduce((totalDuration: DurationMs, step) => totalDuration + step.duration.average, 0), + ); + + const durations = await Iterators.toArray(durationIterator); + if (durations.length) { + const shortestDuration = Math.min(...durations); + reachableStops.push({ stop: possibleTarget, duration: shortestDuration }); + } + })); + + return reachableStops; + } + + private async getNearbyStops(location: ILocation): Promise { + const triangles = await this.triangles; + const cell = triangles.find(location.longitude, location.latitude); + + const result = [this.trianglePoints[cell]]; + + // not including these for now + // may result in large route network queries if the stops network is sparse + /* + const neighbors = triangles.neighbors(cell); + for (const neighbor of neighbors) { + result.push(this.trianglePoints[neighbor]); + } + */ + + return result; + } + + private async prepare() { + this.triangles = this.stopsProvider.getAllStops().then((stops) => { + this.trianglePoints = stops; + + function getX(p: ILocation) { + return p.longitude; + } + + function getY(p: ILocation) { + return p.latitude; + } + + return Delaunay.from(stops, getX, getY); + }); + } +} diff --git a/src/planner/stops/ReachableStopsFinderFootpaths.ts b/src/planner/stops/ReachableStopsFinderFootpaths.ts new file mode 100644 index 00000000..dc392630 --- /dev/null +++ b/src/planner/stops/ReachableStopsFinderFootpaths.ts @@ -0,0 +1,52 @@ +import { inject, injectable } from "inversify"; +import ReachableStopsFinderMode from "../../enums/ReachableStopsFinderMode"; +import IFootpathsProvider from "../../fetcher/footpaths/IFootpathsProvider"; +import IStop from "../../fetcher/stops/IStop"; +import IStopsProvider from "../../fetcher/stops/IStopsProvider"; +import { DurationMs, SpeedKmH } from "../../interfaces/units"; +import TYPES from "../../types"; +import Units from "../../util/Units"; +import IReachableStopsFinder, { IReachableStop } from "./IReachableStopsFinder"; + +@injectable() +export default class ReachableStopsFinderFootpaths implements IReachableStopsFinder { + private readonly stopsProvider: IStopsProvider; + private readonly footpathsProvider: IFootpathsProvider; + + constructor( + @inject(TYPES.StopsProvider) stopsProvider: IStopsProvider, + @inject(TYPES.FootpathsProvider) footpathsProvider: IFootpathsProvider, + ) { + this.stopsProvider = stopsProvider; + this.footpathsProvider = footpathsProvider; + this.footpathsProvider.prefetch(); + } + + public async findReachableStops( + sourceOrTargetStop: IStop, + mode: ReachableStopsFinderMode, + maximumDuration: DurationMs, + minimumSpeed: SpeedKmH, + ): Promise { + + const reachableStops: IReachableStop[] = [{ stop: sourceOrTargetStop, duration: 0 }]; + + const footpaths = await this.footpathsProvider.get(); + for (const footpath of Object.values(footpaths)) { + let otherStop: IStop; + + if (mode === ReachableStopsFinderMode.Source && sourceOrTargetStop.id === footpath.from) { + otherStop = await this.stopsProvider.getStopById(footpath.to); + } else if (mode === ReachableStopsFinderMode.Target && sourceOrTargetStop.id === footpath.to) { + otherStop = await this.stopsProvider.getStopById(footpath.from); + } + + if (otherStop) { + const duration = Units.toDuration(footpath.distance, minimumSpeed); + reachableStops.push({stop: otherStop, duration, id: footpath.id}); + } + } + + return reachableStops; + } +} diff --git a/src/planner/stops/ReachableStopsFinderRoadPlanner.ts b/src/planner/stops/ReachableStopsFinderRoadPlanner.ts index 132171ce..d56789fd 100644 --- a/src/planner/stops/ReachableStopsFinderRoadPlanner.ts +++ b/src/planner/stops/ReachableStopsFinderRoadPlanner.ts @@ -33,7 +33,7 @@ export default class ReachableStopsFinderRoadPlanner implements IReachableStopsF } public async findReachableStops( - sourceOrTargetStop: IStop, + location: ILocation, mode: ReachableStopsFinderMode, maximumDuration: DurationMs, minimumSpeed: SpeedKmH, @@ -46,7 +46,7 @@ export default class ReachableStopsFinderRoadPlanner implements IReachableStopsF const otherProp = mode === ReachableStopsFinderMode.Target ? "from" : "to"; const baseQuery: IResolvedQuery = { - [baseProp]: [sourceOrTargetStop as ILocation], + [baseProp]: [location], minimumDepartureTime, maximumArrivalTime, minimumWalkingSpeed: minimumSpeed, @@ -56,7 +56,7 @@ export default class ReachableStopsFinderRoadPlanner implements IReachableStopsF const stopsInsideCircleArea: IStop[] = []; for (const stop of allStops) { - const distance = Geo.getDistanceBetweenStops(sourceOrTargetStop, stop); + const distance = Geo.getDistanceBetweenLocations(location, stop); const duration = Units.toDuration(distance, minimumSpeed); if (duration >= 0 && duration <= maximumDuration) { @@ -64,30 +64,27 @@ export default class ReachableStopsFinderRoadPlanner implements IReachableStopsF } } - const reachableStops: IReachableStop[] = [{stop: sourceOrTargetStop, duration: 0}]; + const reachableStops: IReachableStop[] = []; await Promise.all(stopsInsideCircleArea.map(async (possibleTarget: IStop) => { - if (possibleTarget.id !== sourceOrTargetStop.id) { - - const query = Object.assign({}, baseQuery, { - [otherProp]: [possibleTarget as ILocation], - }); - - const pathIterator = await this.roadPlanner.plan(query); - - const durationIterator: AsyncIterator = pathIterator.map((path: IPath) => - // Minimum speed is passed so sum max duration over all steps - path.steps.reduce((totalDuration: DurationMs, step) => totalDuration + step.duration.maximum, 0), - ); - - const sufficientlyShortDuration = await Iterators - .find(durationIterator, (duration: DurationMs) => duration < maximumDuration); - - if (sufficientlyShortDuration) { - reachableStops.push({stop: possibleTarget, duration: sufficientlyShortDuration}); + const query = Object.assign({}, baseQuery, { + [otherProp]: [possibleTarget as ILocation], + }); + + const pathIterator = await this.roadPlanner.plan(query); + + const durationIterator: AsyncIterator = pathIterator.map((path: IPath) => + // Minimum speed is passed so sum max duration over all steps + path.steps.reduce((totalDuration: DurationMs, step) => totalDuration + step.duration.maximum, 0), + ); + + const durations = await Iterators.toArray(durationIterator); + if (durations.length) { + const shortestDuration = Math.min(...durations); + if (shortestDuration < maximumDuration) { + reachableStops.push({ stop: possibleTarget, duration: shortestDuration }); } } - })); return reachableStops; diff --git a/src/planner/stops/ReachableStopsFinderRoadPlannerCached.ts b/src/planner/stops/ReachableStopsFinderRoadPlannerCached.ts index f373f29a..0a0b8dd7 100644 --- a/src/planner/stops/ReachableStopsFinderRoadPlannerCached.ts +++ b/src/planner/stops/ReachableStopsFinderRoadPlannerCached.ts @@ -2,8 +2,10 @@ import { inject, injectable } from "inversify"; import ReachableStopsFinderMode from "../../enums/ReachableStopsFinderMode"; import IStop from "../../fetcher/stops/IStop"; import IStopsProvider from "../../fetcher/stops/IStopsProvider"; +import ILocation from "../../interfaces/ILocation"; import { DurationMs, SpeedKmH } from "../../interfaces/units"; import TYPES from "../../types"; +import Geo from "../../util/Geo"; import IRoadPlanner from "../road/IRoadPlanner"; import IReachableStopsFinder, { IReachableStop } from "./IReachableStopsFinder"; import ReachableStopsFinderRoadPlanner from "./ReachableStopsFinderRoadPlanner"; @@ -26,13 +28,14 @@ export default class ReachableStopsFinderRoadPlannerCached implements IReachable } public async findReachableStops( - sourceOrTargetStop: IStop, + location: ILocation, mode: ReachableStopsFinderMode, maximumDuration: DurationMs, minimumSpeed: SpeedKmH, ): Promise { - const cacheKey = `${sourceOrTargetStop.id} ${mode} ${maximumDuration} ${minimumSpeed}`; + const id = location.id || Geo.getId(location); + const cacheKey = `${id} ${mode} ${maximumDuration} ${minimumSpeed}`; const cacheItem = this.reachableStopsCache[cacheKey]; if (cacheItem) { @@ -40,7 +43,7 @@ export default class ReachableStopsFinderRoadPlannerCached implements IReachable } const reachableStops = await this.reachableStopsFinder - .findReachableStops(sourceOrTargetStop, mode, maximumDuration, minimumSpeed); + .findReachableStops(location, mode, maximumDuration, minimumSpeed); this.reachableStopsCache[cacheKey] = reachableStops; return reachableStops; diff --git a/src/profile/PedestrianProfile.ts b/src/profile/PedestrianProfile.ts new file mode 100644 index 00000000..2db35c5c --- /dev/null +++ b/src/profile/PedestrianProfile.ts @@ -0,0 +1,93 @@ +import { RoutableTileNode } from "../entities/tiles/node"; +import { RoutableTileWay } from "../entities/tiles/way"; +import Highway from "../enums/Highway"; +import { DistanceM, DurationMs } from "../interfaces/units"; +import Geo from "../util/Geo"; +import Profile from "./Profile"; + +export default class PedestrianProfile extends Profile { + public getID(): string { + return "PEDESTRIAN"; + } + + public isOneWay(way: RoutableTileWay): boolean { + return false; + } + + public hasAccess(way: RoutableTileWay): boolean { + if (way.highwayKind === Highway.Motorway) { + return false; + } else if (way.highwayKind === Highway.MotorwayLink) { + return false; + } else if (way.highwayKind === Highway.Trunk) { + return false; + } else if (way.highwayKind === Highway.TrunkLink) { + return false; + } + + return true; + } + + public getDefaultSpeed() { + return 5; + } + + public getMaxSpeed() { + return this.getDefaultSpeed(); + } + + public getSpeed(way: RoutableTileWay) { + return this.getDefaultSpeed(); + } + + public getDistance(from: RoutableTileNode, to: RoutableTileNode, way: RoutableTileWay): DistanceM { + return Geo.getDistanceBetweenLocations(from, to); + } + + public getDuration(from: RoutableTileNode, to: RoutableTileNode, way: RoutableTileWay): DurationMs { + const distance = this.getDistance(from, to, way) / 1000; // km + const speed = 5; // km/h + const time = distance / speed; // h + return time * 60 * 60 * 1000; // ms + } + + public getMultiplier(way: RoutableTileWay): number { + if (way.highwayKind === Highway.Motorway) { + return 1.3; + } else if (way.highwayKind === Highway.MotorwayLink) { + return 1.3; + } else if (way.highwayKind === Highway.Trunk) { + return 1.3; + } else if (way.highwayKind === Highway.TrunkLink) { + return 1.3; + } else if (way.highwayKind === Highway.Service) { + return 1.1; + } else if (way.highwayKind === Highway.Tertiary) { + return 1.1; + } else if (way.highwayKind === Highway.TertiaryLink) { + return 1.1; + } else if (way.highwayKind === Highway.Secondary) { + return 1.1; + } else if (way.highwayKind === Highway.SecondaryLink) { + return 1.1; + } else if (way.highwayKind === Highway.Primary) { + return 1.1; + } else if (way.highwayKind === Highway.PrimaryLink) { + return 1.1; + } else if (way.highwayKind === Highway.LivingStreet) { + return 0.8; + } else if (way.highwayKind === Highway.Footway) { + return 0.8; + } + + return 1; + } + + public getCost(from: RoutableTileNode, to: RoutableTileNode, way: RoutableTileWay): number { + return this.getMultiplier(way) * this.getDuration(from, to, way); + } + + public isObstacle(node: RoutableTileNode): boolean { + return false; + } +} diff --git a/src/profile/Profile.ts b/src/profile/Profile.ts new file mode 100644 index 00000000..c33e882c --- /dev/null +++ b/src/profile/Profile.ts @@ -0,0 +1,23 @@ +import { RoutableTileNode } from "../entities/tiles/node"; +import { RoutableTileWay } from "../entities/tiles/way"; +import ILocation from "../interfaces/ILocation"; +import { DistanceM, DurationMs } from "../interfaces/units"; + +export default abstract class Profile { + public abstract getID(): string; + + public abstract isOneWay(way: RoutableTileWay): boolean; + public abstract hasAccess(way: RoutableTileWay): boolean; + + public abstract getDefaultSpeed(): number; + public abstract getMaxSpeed(): number; + public abstract getSpeed(way: RoutableTileWay): number; + + public abstract getDistance(from: ILocation, to: ILocation, way: RoutableTileWay): DistanceM; + public abstract getDuration(from: ILocation, to: ILocation, way: RoutableTileWay): DurationMs; + + public abstract getMultiplier(way: RoutableTileWay): number; + public abstract getCost(from: ILocation, to: ILocation, way: RoutableTileWay): number; + + public abstract isObstacle(node: RoutableTileNode): boolean; +} diff --git a/src/profile/ProfileProvider.ts b/src/profile/ProfileProvider.ts new file mode 100644 index 00000000..0e521432 --- /dev/null +++ b/src/profile/ProfileProvider.ts @@ -0,0 +1,57 @@ +import { injectable } from "inversify"; +import TravelMode from "../enums/TravelMode"; +import Profile from "../profile/Profile"; +import PedestrianProfile from "./PedestrianProfile"; + +interface IProfileMap { + [label: string]: Profile; +} + +@injectable() +export default class ProfileProvider { + // todo, fetcher that loads a profile from a URI + // todo, profiles per location + // e.g. bicycle near a specific station + + private travelModeProfiles: Map; + private profiles: IProfileMap; + private activeProfile: Profile; + + constructor() { + this.profiles = {}; + this.travelModeProfiles = new Map(); + this.activeProfile = undefined; + + // some placeholders + const pedestrian = new PedestrianProfile(); + this.travelModeProfiles.set(TravelMode.Walking, pedestrian); + this.setActiveProfile(pedestrian); + } + + public setActiveProfile(profile: Profile) { + if (!this.profiles[profile.getID()]) { + this.addProfile(profile); + } + this.activeProfile = profile; + } + + public setActiveProfileID(profileId: string) { + this.activeProfile = this.profiles[profileId]; + } + + public getActiveProfile(): Profile { + return this.activeProfile; + } + + public addProfile(profile: Profile) { + this.profiles[profile.getID()] = profile; + } + + public getProfile(profileId: string): Profile { + return this.profiles[profileId]; + } + + public getProfiles(): Profile[] { + return Object.values(this.profiles); + } +} diff --git a/src/query-runner/LocationResolverConvenience.ts b/src/query-runner/LocationResolverConvenience.ts index 992bc859..f962119a 100644 --- a/src/query-runner/LocationResolverConvenience.ts +++ b/src/query-runner/LocationResolverConvenience.ts @@ -26,9 +26,20 @@ export default class LocationResolverConvenience implements ILocationResolver { } public async resolve(input: ILocation | IStop | string): Promise { - if (typeof input === "string" && !this.isId(input)) { + if (input.includes("geo:")) { + const expression = /geo:([0-9.]+),([0-9.]+)/; + const result = expression.exec(input); + + if (result && result.length) { + return { + latitude: parseFloat(result[1]), + longitude: parseFloat(result[2]), + }; + } + } + if (!this.allStops) { this.allStops = await this.stopsProvider.getAllStops(); } diff --git a/src/query-runner/earliest-arrival-first/QueryRunnerEarliestArrivalFirst.ts b/src/query-runner/earliest-arrival-first/QueryRunnerEarliestArrivalFirst.ts index fe4a8774..51ca0e6a 100644 --- a/src/query-runner/earliest-arrival-first/QueryRunnerEarliestArrivalFirst.ts +++ b/src/query-runner/earliest-arrival-first/QueryRunnerEarliestArrivalFirst.ts @@ -97,7 +97,6 @@ export default class QueryRunnerEarliestArrivalFirst implements IQueryRunner { this.initialReachableStopsFinder, this.transferReachableStopsFinder, this.finalReachableStopsFinder, - this.journeyExtractorEarliestArrival, this.context, ); diff --git a/src/query-runner/exponential/ExponentialQueryIterator.ts b/src/query-runner/exponential/ExponentialQueryIterator.ts index a5525a2b..7b7f08df 100644 --- a/src/query-runner/exponential/ExponentialQueryIterator.ts +++ b/src/query-runner/exponential/ExponentialQueryIterator.ts @@ -29,6 +29,10 @@ export default class ExponentialQueryIterator extends AsyncIterator 2 * 24 * 60 * 60 * 1000) { + this.close(); + } + return Object.assign({}, this.baseQuery, {maximumArrivalTime}); } } diff --git a/src/types.ts b/src/types.ts index d8835c42..3ff3e2f0 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1,6 +1,7 @@ import TravelMode from "./enums/TravelMode"; import IConnectionsFetcher from "./fetcher/connections/IConnectionsFetcher"; import IStopsFetcher from "./fetcher/stops/IStopsFetcher"; +import IRoutableTileFetcher from "./fetcher/tiles/IRoutableTileFetcher"; const TYPES = { Context: Symbol("Context"), @@ -15,15 +16,26 @@ const TYPES = { StopsFetcher: Symbol("StopsFetcher"), StopsFetcherFactory: Symbol("StopsFetcherFactory"), + RoutableTileProvider: Symbol("TileProvider"), + RoutableTileFetcher: Symbol("TileFetcher"), + RoutableTileRegistry: Symbol("RoutableTileRegistry"), + + FootpathsProvider: Symbol("FootpathsProvider"), + PublicTransportPlanner: Symbol("PublicTransportPlanner"), PublicTransportPlannerFactory: Symbol("PublicTransportPlannerFactory"), + ProfileProvider: Symbol("ProfileProvider"), RoadPlanner: Symbol("RoadPlanner"), RoadPlannerFactory: Symbol("RoadPlannerFactory"), + PathfinderProvider: Symbol("PathfinderProvider"), + ShortestPathAlgorithm: Symbol("ShortestPathAlgorithm"), + ShortestPathTreeAlgorithm: Symbol("ShortestPathTreeAlgorithm"), ReachableStopsFinder: Symbol("ReachableStopsFinder"), JourneyExtractor: Symbol("JourneyExtractor"), LDFetch: Symbol("LDFetch"), + LDLoader: Symbol("LDLoader"), Catalog: Symbol("Catalog"), }; @@ -31,3 +43,4 @@ export default TYPES; export type StopsFetcherFactory = (accessUrl: string) => IStopsFetcher; export type ConnectionsFetcherFactory = (accessUrl: string, travelMode: TravelMode) => IConnectionsFetcher; +export type RoutableTilesFetcherFactory = (accesUrl: string) => IRoutableTileFetcher; diff --git a/src/uri/constants.ts b/src/uri/constants.ts new file mode 100644 index 00000000..31fb11cb --- /dev/null +++ b/src/uri/constants.ts @@ -0,0 +1,8 @@ +export const XMLS = "http://www.w3.org/2001/XMLSchema"; +export const HYDRA = "http://www.w3.org/ns/hydra/core"; +export const OSM = "https://w3id.org/openstreetmap/terms"; +export const GEO = "http://www.w3.org/2003/01/geo/wgs84_pos"; +export const RDF = "http://www.w3.org/1999/02/22-rdf-syntax-ns"; +export const RDFS = "http://www.w3.org/2000/01/rdf-schema"; +export const ROUTE = "https://w3id.org/routabletiles/terms#"; +export const PLANNER = "https://planner.js.org/terms#"; diff --git a/src/uri/uri.ts b/src/uri/uri.ts new file mode 100644 index 00000000..d4f41a8e --- /dev/null +++ b/src/uri/uri.ts @@ -0,0 +1,14 @@ +export default class URI { + public static inNS(ns: string, id: string): string { + // this probably misses a lot of special cases + // but it'll do for now + const lastChar = ns[ns.length - 1]; + if (lastChar === "/") { + return `${ns}${id}`; + } else if (lastChar === "#") { + return `${ns}${id}`; + } else { + return `${ns}#${id}`; + } + } +} diff --git a/src/util/Geo.ts b/src/util/Geo.ts index 6ab118a5..ce075e7d 100644 --- a/src/util/Geo.ts +++ b/src/util/Geo.ts @@ -46,6 +46,10 @@ export default class Geo { * @returns geo id string */ public static getId(location: ILocation): string { + if ("id" in location) { + return location.id; + } + return `geo:${location.latitude},${location.longitude}`; } } diff --git a/src/util/UnionFind.ts b/src/util/UnionFind.ts new file mode 100644 index 00000000..d1ab0fd7 --- /dev/null +++ b/src/util/UnionFind.ts @@ -0,0 +1,52 @@ +export default class UnionFind { + private ranks: number[]; + private connections: number[]; + + constructor(size: number) { + this.connections = [...Array(size).keys()]; + this.ranks = [...Array(size).keys()]; + } + + public union(x: number, y: number) { + let xRoot = this.find(x); + let yRoot = this.find(y); + + if (xRoot === yRoot) { + return; + } + + if (this.ranks[xRoot] < this.ranks[yRoot]) { + [xRoot, yRoot] = [yRoot, xRoot]; + } + + this.connections[yRoot] = xRoot; + if (this.ranks[xRoot] === this.ranks[yRoot]) { + this.ranks[xRoot] += 1; + } + } + + public find(val: number) { + if (this.connections[val] !== val) { + this.connections[val] = this.find(this.connections[val]); + } + + return this.connections[val]; + } + + public getClusters() { + const result = {}; + + for (const [index, connection] of this.connections.entries()) { + if (index === connection) { + result[index] = new Set(); + } + } + + for (const index of this.connections.keys()) { + const cluster = this.find(index); + result[cluster].add(index); + } + + return result; + } +} diff --git a/webpack.config.js b/webpack.config.js index 0a356e30..68c940d1 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -39,5 +39,8 @@ module.exports = { library: "Planner", libraryTarget: "umd", libraryExport: "default" + }, + node: { + fs: "empty" } }; From 65f542c0f96bf8bdb320c99d42983bb5cac580be Mon Sep 17 00:00:00 2001 From: Tim Vanhee Date: Wed, 3 Jul 2019 11:39:24 +0200 Subject: [PATCH 02/85] Fix condition and download more tiles for the isochrones --- src/analytics/isochrones/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/analytics/isochrones/main.ts b/src/analytics/isochrones/main.ts index 13ad6a81..520857f5 100644 --- a/src/analytics/isochrones/main.ts +++ b/src/analytics/isochrones/main.ts @@ -121,7 +121,7 @@ export default class IsochroneGenerator implements EventEmitter { for (const nodeId of tile.getNodes()) { pathfinder.removeBreakPoint(nodeId); const node = this.registry.getNode(nodeId); - if (tile.contains(node)) { + if (!tile.contains(node)) { boundaryNodes.add(nodeId); } } From 2d33c72d565b37972cdeade3b861a09c9941fae2 Mon Sep 17 00:00:00 2001 From: Tim Baccaert Date: Tue, 9 Jul 2019 09:36:19 +0200 Subject: [PATCH 03/85] Added a Webpack export with support for nodeJS. --- webpack.config.js | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index 68c940d1..922b803d 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -14,7 +14,7 @@ const excludeAlias = excludeModules.reduce((alias, moduleName) => { return alias; }, {}); -module.exports = { +const browserConfig = { entry: "./src/index.ts", devtool: "source-map",//"cheap-module-source-map", module: { @@ -44,3 +44,17 @@ module.exports = { fs: "empty" } }; + +const nodeConfig = { + ...browserConfig, + target: "node", + output: { + filename: "bundle.node.js", + path: path.resolve(__dirname, "dist"), + library: "Planner", + libraryTarget: "umd", + libraryExport: "default" + } +}; + +module.exports = [ browserConfig, nodeConfig ]; From e3badb44018e8677766c0ac1598ef2b7d6894d2c Mon Sep 17 00:00:00 2001 From: Harm Delva Date: Tue, 9 Jul 2019 21:28:22 +0200 Subject: [PATCH 04/85] Add dynamic profiles and concave isochrones --- package.json | 2 + src/Planner.ts | 2 +- .../analyze_approximations-checkpoint.ipynb | 583 ++++++++++++++++++ src/analytics/footpaths/combined_pairs.json | 1 + src/analytics/footpaths/delijn_pairs.json | 1 + src/analytics/footpaths/mivb_pairs.json | 1 + src/analytics/footpaths/nmbs_pairs.json | 1 + src/analytics/footpaths/tec_pairs.json | 1 + src/analytics/isochrones/demo.html | 25 +- src/analytics/isochrones/main.ts | 28 +- src/analytics/isochrones/visualize.ts | 26 + src/entities/profile/DynamicProfile.ts | 163 +++++ .../profile/PedestrianProfile.ts | 10 +- src/{ => entities}/profile/Profile.ts | 8 +- src/entities/profile/ProfileConclusion.ts | 24 + src/entities/profile/ProfileCondition.ts | 19 + src/entities/profile/ProfileRule.ts | 22 + src/entities/profile/ProfileValueReference.ts | 24 + src/enums/OSMTags.ts | 25 + src/fetcher/profiles/IProfileFetcher.ts | 5 + src/fetcher/profiles/IProfileProvider.ts | 12 + src/fetcher/profiles/ProfileFetcherDefault.ts | 106 ++++ .../profiles/ProfileProviderDefault.ts | 65 ++ .../tiles/RoutableTileFetcherDefault.test.ts | 8 +- .../tiles/RoutableTileFetcherDefault.ts | 28 +- src/index.ts | 13 + src/inversify.config.ts | 8 +- src/isochrone.demo.ts | 7 +- src/pathfinding/PathfinderProvider.ts | 12 +- src/planner/road/RoadPlannerPathfinding.ts | 6 +- src/profile/ProfileProvider.ts | 57 -- src/types.ts | 1 + src/uri/constants.ts | 1 + 33 files changed, 1177 insertions(+), 118 deletions(-) create mode 100644 src/analytics/footpaths/.ipynb_checkpoints/analyze_approximations-checkpoint.ipynb create mode 100644 src/analytics/footpaths/combined_pairs.json create mode 100644 src/analytics/footpaths/delijn_pairs.json create mode 100644 src/analytics/footpaths/mivb_pairs.json create mode 100644 src/analytics/footpaths/nmbs_pairs.json create mode 100644 src/analytics/footpaths/tec_pairs.json create mode 100644 src/entities/profile/DynamicProfile.ts rename src/{ => entities}/profile/PedestrianProfile.ts (91%) rename src/{ => entities}/profile/Profile.ts (77%) create mode 100644 src/entities/profile/ProfileConclusion.ts create mode 100644 src/entities/profile/ProfileCondition.ts create mode 100644 src/entities/profile/ProfileRule.ts create mode 100644 src/entities/profile/ProfileValueReference.ts create mode 100644 src/enums/OSMTags.ts create mode 100644 src/fetcher/profiles/IProfileFetcher.ts create mode 100644 src/fetcher/profiles/IProfileProvider.ts create mode 100644 src/fetcher/profiles/ProfileFetcherDefault.ts create mode 100644 src/fetcher/profiles/ProfileProviderDefault.ts delete mode 100644 src/profile/ProfileProvider.ts diff --git a/package.json b/package.json index 6c9d830c..da24841c 100644 --- a/package.json +++ b/package.json @@ -26,8 +26,10 @@ "doc": "npm run typedoc && npm run doc-bundle" }, "dependencies": { + "@types/concaveman": "^1.1.3", "asynciterator": "^2.0.1", "asynciterator-promiseproxy": "^2.0.0", + "concaveman": "^1.1.1", "d3-delaunay": "^4.1.5", "haversine": "^1.1.0", "inversify": "^5.0.1", diff --git a/src/Planner.ts b/src/Planner.ts index 34bd3699..3a2c6b83 100644 --- a/src/Planner.ts +++ b/src/Planner.ts @@ -5,12 +5,12 @@ import { EventEmitter, Listener } from "events"; import Context from "./Context"; import EventType from "./enums/EventType"; import IConnectionsProvider from "./fetcher/connections/IConnectionsProvider"; +import ProfileProvider from "./fetcher/profiles/ProfileProviderDefault"; import IStop from "./fetcher/stops/IStop"; import IStopsProvider from "./fetcher/stops/IStopsProvider"; import IPath from "./interfaces/IPath"; import IQuery from "./interfaces/IQuery"; import defaultContainer from "./inversify.config"; -import ProfileProvider from "./profile/ProfileProvider"; import IQueryRunner from "./query-runner/IQueryRunner"; import TYPES from "./types"; import Units from "./util/Units"; diff --git a/src/analytics/footpaths/.ipynb_checkpoints/analyze_approximations-checkpoint.ipynb b/src/analytics/footpaths/.ipynb_checkpoints/analyze_approximations-checkpoint.ipynb new file mode 100644 index 00000000..770665f5 --- /dev/null +++ b/src/analytics/footpaths/.ipynb_checkpoints/analyze_approximations-checkpoint.ipynb @@ -0,0 +1,583 @@ +{ + "cells": [ + { + "cell_type": "raw", + "metadata": {}, + "source": [ + "Tested with Python 3.7\n", + "Dependencies:\n", + " haversine 2.0.2\n", + " matplotlib 3.0.3\n", + " numpy 1.16.2\n", + " pandas 0.24.2\n", + " seaborn 0.9.0\n", + " tqdm 4.31.1" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import json" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "pairs = []" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# assumes you've written the pairs to files first\n", + "# alternatively, you can create your own triangulation using scipy and these URIs:\n", + "# https://irail.be/stations/NMBS\n", + "# https://openplanner.ilabt.imec.be/delijn/Antwerpen/stops\n", + "# https://openplanner.ilabt.imec.be/delijn/Limburg/stops\n", + "# https://openplanner.ilabt.imec.be/delijn/Oost-Vlaanderen/stops\n", + "# https://openplanner.ilabt.imec.be/delijn/Vlaams-Brabant/stops\n", + "# https://openplanner.ilabt.imec.be/delijn/West-Vlaanderen/stops\n", + "# https://openplanner.ilabt.imec.be/mivb/stops\n", + "# https://openplanner.ilabt.imec.be/tec/stops\n", + "\n", + "with open('combined_pairs.json') as f:\n", + " combined_pairs = json.load(f)\n", + "\n", + "with open('delijn_pairs.json') as f:\n", + " delijn_pairs = json.load(f)\n", + "\n", + "with open('nmbs_pairs.json') as f:\n", + " nmbs_pairs = json.load(f)\n", + " \n", + "with open('mivb_pairs.json') as f:\n", + " mivb_pairs = json.load(f)\n", + " \n", + "with open('tec_pairs.json') as f:\n", + " tec_pairs = json.load(f)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "def toId(uri):\n", + " id = uri.split(\"//\")[1];\n", + " id = id.replace(\".\", \"_\");\n", + " return id.replace(\"/\", \"_\");" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "def to_file_name(t, f):\n", + " dir_name = \"distances/{}/\".format(toId(f))\n", + " return \"{}{}.json\".format(dir_name, toId(t)) " + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "def load_distances(pairs):\n", + " distances = []\n", + " for f, t in pairs:\n", + " try:\n", + " with open(to_file_name(f, t)) as file:\n", + " distance = int(file.read())\n", + " distances.append((f, t, distance))\n", + " except:\n", + " pass\n", + " \n", + " try:\n", + " with open(to_file_name(t, f)) as file:\n", + " distance = int(file.read())\n", + " distances.append((t, f, distance))\n", + " except:\n", + " pass\n", + " return distances" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "nmbs_distances = load_distances(nmbs_pairs)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "tec_distances = load_distances(tec_pairs)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "delijn_distances = load_distances(delijn_pairs)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "mivb_distances = load_distances(mivb_pairs)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "combined_distances = load_distances(combined_pairs)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "from collections import defaultdict\n", + "from heapq import *\n", + "\n", + "def dijkstra(edges, f, t):\n", + " g = defaultdict(list)\n", + " for l,r,c in edges:\n", + " g[l].append((c,r))\n", + "\n", + " q, seen, mins = [(0,f)], set(), {f: 0}\n", + " while q:\n", + " (cost,v1) = heappop(q)\n", + " if v1 not in seen:\n", + " seen.add(v1)\n", + " if v1 == t: \n", + " return cost\n", + "\n", + " for c, v2 in g.get(v1, ()):\n", + " if v2 in seen: \n", + " continue\n", + " prev = mins.get(v2, None)\n", + " next = cost + c\n", + " if prev is None or next < prev:\n", + " mins[v2] = next\n", + " heappush(q, (next, v2))\n", + " return float(\"inf\")" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "from haversine import haversine\n", + "import requests\n", + "\n", + "def load_stations():\n", + " result = {}\n", + " stations = json.loads(requests.get(\"https://irail.be/stations/NMBS\").content)[\"@graph\"]\n", + " for station in stations:\n", + " result[station[\"@id\"]] = float(station['http://www.w3.org/2003/01/geo/wgs84_pos#lat']), \\\n", + " float(station['http://www.w3.org/2003/01/geo/wgs84_pos#long'])\n", + " return result\n", + "\n", + "stations = load_stations()" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100%|██████████| 3494/3494 [09:50<00:00, 5.92it/s]\n" + ] + } + ], + "source": [ + "from tqdm import tqdm\n", + "\n", + "triangle_errors = []\n", + "haversine_errors = []\n", + "\n", + "edges = delijn_distances + mivb_distances + tec_distances + combined_distances\n", + "for f, t, actual in tqdm(nmbs_distances):\n", + " if f < t:\n", + " approximated = dijkstra(edges, f, t)\n", + " if approximated != float(\"inf\"):\n", + " triangle_errors.append((actual, approximated))\n", + " \n", + " approximated = haversine(stations[f], stations[t], 'm')\n", + " haversine_errors.append((actual, approximated))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [], + "source": [ + "%matplotlib inline\n", + "\n", + "import matplotlib\n", + "import numpy as np\n", + "import matplotlib.pyplot as plt\n", + "\n", + "import seaborn as sns\n", + "import pandas as pd" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [], + "source": [ + "actual_distance_bins = []\n", + "actual_distances = []\n", + "triangle_approximations = []\n", + "haversine_approximations = []\n", + "\n", + "for h_error, t_error in zip(haversine_errors, triangle_errors):\n", + " actual, h_predicted = h_error\n", + " _, t_predicted = t_error\n", + " \n", + " h_relative_error = ((h_predicted / actual) - 1) * 100\n", + " t_relative_error = ((t_predicted / actual) - 1) * 100\n", + " if t_relative_error < 225:\n", + " actual_distance_bins.append((actual + 500) // 1000)\n", + " actual_distances.append(actual / 1000)\n", + " triangle_approximations.append(t_relative_error)\n", + " haversine_approximations.append(h_relative_error)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [], + "source": [ + "combined_approximations = [(x + y) / 2 for x, y in zip(triangle_approximations, haversine_approximations)]" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAagAAAEYCAYAAAAJeGK1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJzt3Xl8nWWZ+P/PlX1rmu5LmqZ70oLQYgU6QmXpVyWs+rVURqAonY7++CIKzlAVHMdB7ai4zcz3qxlQUQcsIlCWIjAI0o6yFAqUkqQJJemSpk2XpNmXk+v3x7NwTnpOzslykpPmer9eeSXneZ7znPs8SZ7r3Pd93fctqooxxhiTaJJGugDGGGNMOBagjDHGJCQLUMYYYxKSBShjjDEJyQKUMcaYhGQByhhjTEKyAGWGnIj8TETuHOlynMpEZLaINItI8jC93lMisnY4XssYj9g4KNMfIlINTAO6gQDwDvBroFRVewZwrnWq+t9DXEwzCCLyTWCBql470mUxY5vVoMxAXK6q44BCYCNwO3DvyBZp9BGRlJEuw2gS7nr19xraNR9dLECZAVPVRlV9DFgDrBWR0wFE5Fcicpf782QReUJEGkTkmIhsFZEkEfkNMBt43G2q+kf3+N+LSJ2INIrIiyJymvd67nn/Q0SeFJEmEXlZROYH7T9NRJ51X+eQiHzN3Z4kIhtE5F0ROSoiD4rIxHDvSUQmuOWtF5Hj7s+zgva/ICLfFZFX3DJu9s4lInNEREVkvYjUishBEbkt6LnfFJGHROS3InICuEFE0kXkx+7xte7P6e7xt4vIS95NVUS+ICK7RCQj6LVSgsp1l4j8xb2ej4vIJBH5LxE5ISKvisicoLL8RET2ufteE5Hz3e0fB74GrHHP82bQ+dcFXc87RKRGRA6LyK9FZHyva7BWRPaKyBER+XqkvyH3/f/APfaQ2zyc6e67QET2u9ehDvhluG3usX8nIlXu7/4xEZkZ9BoqIjeJSCVQGaksJvFYgDKDpqqvAPuB88Psvs3dNwWnafBrzlP0OmAvTm0sR1W/5x7/FLAQmAq8DvxXr/NdA/wzMAGoAr4NICLjgP8G/gjMBBYAz7nP+SJwFfARd99x4D8ivJ0knJteIU4AbQP+vdcx1wOfc8/VDfy01/4L3ffwUWCDiKwK2ncl8BCQ5763rwPnAkuBM4GzgTvcY78PdAJ3iMhC4DvAtaraHqHsnwauA/KB+cBf3fcyESgD/ino2Ffd15wI3A/8XkQyVPWP7utscn8vZ4Z5nRvcrwuBeUBOmGt0HlAEXAx8Q0QWRyjzvwKL3LIscMv+jaD9090yFgLrw20TkYuA7wJXAzOAGuB3vV7nKuAcYEmEcphEpKr2ZV8xfwHVwKow218Cvu7+/CvgLvfnbwGbcfo0YjpX0P48QIHxQee9J2h/CVDu/nwNsCPCecqAi4MezwC6gJQY3u9S4HjQ4xeAjUGPl+AEkWRgjlve4qD93wPudX/+JvBir/O/C5QEPf4YUB30eA5wzH0PX+21Xb334Jbr60H77waeCnp8OfBGH+/zOHBmUDl/22v/Czj9heAE/v8vaF+Rdz2DyjUraP8rwKfDvKYALcD8oG0rgPfcny9wr21G0P5w2+4Fvhf0OMctzxz3sQIXjfT/jn31/8tqUGao5OPcSHv7Pk5N5xkR2SMiGyKdQESSRWSj2xR3AieAAUwOOqwu6OdWnJsRQAHOzT6cQuARcZoZG3Bu9gGcGl3vMmSJyM/d5qsTwItAnoRmy+0L+rkGSO1Vxt77Z0bYh7uvJtLxqloNPI9z449U6/McCvq5Lcxj71ohIreJSJnbTNkAjO/1HvoSrswphF7PSL+nYFOALOC1oN/NH93tnno9ucbYe1tIeVS1GTiK8zfp6X3dzShgAcoMmoh8COdmsK33PlVtUtXbVHUezqf4W0XkYm93r8P/FqcJbBXODXOO9xIxFGMfTrNWpH2XqGpe0FeGqh4Ic+xtODWCc1Q1F1gZpgwFQT/Pxvm0fqSP/bVBj3u/51qcABr2eBEpwalVPIcT7AfN7W+6HadJbIKq5gGNvP8eo6X2hitzN6EBMRZHcALnaUG/l/GqGhzMwpWlz2soItnAJOBAH88xo4AFKDNgIpIrIpfhtPf/VlV3hjnmMhFZICICnMCpuQTc3Ydw+jA844AOnE+/WTh9IbF6ApguIl9yO97Hicg57r6fAd8WkUK3TFNE5MoI5xmHc9NscJMf/inMMdeKyBIRycJpwnxIVQNB++90a2KnAZ8FNvVR7gdw+pimiMhknP6X37rlnIzTfLUOWAtc7gaswRqHE1DqgRQR+QaQG7T/EDBHRCLdHx4Aviwic0Ukh/f7rLr7Uwh1hiX8J/AjEZkKICL5IvKx/r0d7gc+KyJL3QST7wAvu7VPM4pZgDID8biINOHUTL4O/BDnRhzOQpzkhWacTvv/q6ovuPu+i3NzbhCRr+CMp6rB+eT7Dk6/VkxUtQn4Xzi1tDqcbK0L3d0/AR7DaWZscs97TrjzAD8GMnE+3b+E0+TU229w+sPqgAycJIxgf8Zp1nwO+IGqPtNH0e8CtgNvATtxEkPucveVAptVdYuqHgVuBO4RkUl9nC8WT+Mko+zGud7thDaB/d79flREXg/z/F/gXIMXgffc5988wLLcjnOtXnKbVP8bpwYbM1V9DrgT+ANwEKcm/ekBlsckEBuoa0w/iMgLOLXFe8Lsm4Nzw07tb23CGHMyq0EZY4xJSBagjDHGJCRr4jPGGJOQrAZljDEmIY2KiRMnT56sc+bMGeliGGOMGQKvvfbaEVWdEu24URGg5syZw/bt20e6GMYYY4aAiNREP8qa+IwxxiQoC1DGGGMSkgUoY4wxCckClDHGmIRkAcoYY0xCsgBljDEmIVmAMsYYk5DGZIBas2YNS5cuZc2aNSNdFGOMMRGMioG6Q62iooI333xzpIthjDGmD2OyBmWMMSbxWYAyxhiTkCxAGWOMSUgWoIwxxiQkC1DGGGMSkgUoY4wxCckClDHGmIRkAcoYY0xCiutAXRGpBpqAANCtqstFZCKwCZgDVANXq+rxeJbDGGPM6DMcNagLVXWpqi53H28AnlPVhcBz7mNjjDEmxEg08V0J3Of+fB9w1QiUwRhjTIKLd4BS4BkReU1E1rvbpqnqQQD3+9RwTxSR9SKyXUS219fXx7mYxhhjEk28J4v9sKrWishU4FkRKY/1iapaCpQCLF++XONVQGOMMYkprjUoVa11vx8GHgHOBg6JyAwA9/vheJbBGGPM6BS3ACUi2SIyzvsZ+CjwNvAYsNY9bC2wOV5lMMYYM3rFs4lvGvCIiHivc7+q/lFEXgUeFJEbgb3A6jiWwRhjzCgVtwClqnuAM8NsPwpcHK/XNcYYc2qwmSSMMcYkJAtQxhhjEpIFKGOMMQnJApQxxpiEZAHKGGNMQrIAZYwxJiFZgDLGGJOQLEAZY4xJSBagjDHGJCQLUMYYYxKSBShjjDEJyQKUMcaYhGQByhhjTEKyAGWMMSYhWYAyxhiTkCxAGWOMSUgWoIwxxiQkC1DGGGMSkgUoY4wxCckClDHGmIRkAcoYY0xCsgBljDEmIVmAMsYYk5AsQBljjElIFqCMMcYkJAtQxhhjEpIFKGOMMQnJApQxxpiEZAHKGGNMQrIAZYwxJiFZgDLGGJOQ4h6gRCRZRHaIyBPu47ki8rKIVIrIJhFJi3cZjDHGjD7DUYO6BSgLevyvwI9UdSFwHLhxGMpgjDFmlIlrgBKRWcClwD3uYwEuAh5yD7kPuCqeZTDGGDM6RQ1QIrJCRP5DRN4SkXoR2SsiW0TkJhEZH+XpPwb+EehxH08CGlS12328H8gfcOmNMcacsvoMUCLyFLAOeBr4ODADWALcAWQAm0XkigjPvQw4rKqvBW8Oc6hGeP56EdkuItvr6+ujvhFjjDGnlpQo+69T1SO9tjUDr7tfd4vI5AjP/TBwhYiU4ASzXJwaVZ6IpLi1qFlAbbgnq2opUAqwfPnysEHMGGPMqavPGlSY4ISIXCwil4tIaqRj3O1fVdVZqjoH+DTwJ1X9DPA88Cn3sLXA5kGU3xhjzCmqX0kSInI3sAo4l4EHltuBW0WkCqdP6t4BnscYY8wprM8mPhH5AfAvqtrobpoNXO3+vDPWF1HVF4AX3J/3AGf3t6DGGGPGlmg1qEeATSJys4gkA78GXgLewO0fMsYYY+IhWh/U/6jqx4EG4I/utnNU9UxV/elwFNAYY8zYFC3NPEVELgUOAZ8AlonIYyJyxrCUzhhjzJgVLc38UZzmvCzgM6q6VkRmAt8SEVXVv4t7CY0xxoxJ0QJUoape5k7o+hKAqtYC60RkadxLZ4wxZsyKFqBKReQNnNke7g7eoapvxK1Uxhhjxrw+A5Sq/hvwb8NUFmOMMcYXLUniDhGZ0Mf+i9w594wxxpghFa2JbyfwhIi048y9V48zr95CYCnw38B34lpCY4wxY1K0cVCbVfXDwOeBXUAycAL4LXC2qn5ZVW2qcWNOQWvWrGHp0qWsWbNmpItixqhoNSgAVLUSqIxzWYwxCaSiooI333xzpIthxrDhWPLdGGOM6TcLUMYYYxKSBShjjDEJKaY+KBGZAvwdMCf4Oar6ufgUyxhjzFgXU4DCWZxwK05aeSB+xTHGGGMcsQaoLFW9Pa4lMcYYY4LE2gf1hIiUxLUkCcTGfxhjzMiLtQZ1C/A1EekEutxtqqq58SnWyLLxH8YYM/JiHag7Lt4FMcYYY4LFWoNCRK4AVroPX1DVJ+JTJGOMMSbGPigR2YjTzPeO+3WLu80YY4yJi1hrUCXAUlXtARCR+4AdwIZ4FcwYE19r1qyhoqKCoqIiNm3aNNLFMeYkMTfxAXnAMffn8XEoizFmGA02GcgCnIm3WAPUd4EdIvI8IDh9UV+NW6mMMQnPsl1NvMWaxfeAiLwAfAgnQN2uqnXxLJgxxpixLdqS78Xu97OAGcB+YB8w091mjDHGxEW0GtStwHrg7jD7FLhoyEtkjDHGECVAqep698dLVLU9eJ+IZMStVMYYY8a8WOfi+0uM24wxxpgh0WcNSkSmA/lApogsw0mQAMgFsuJcNmOMMWNYtD6ojwE3ALOAHwZtbwK+FqcyJTwb/2GMMfEXrQ/qPuA+EfnfqvqH/pzY7aN6EUh3X+chVf0nEZkL/A6YCLwOXKeqnQMq/Qix8R/GGBN/sY6D+oOIXAqcBmQEbf9WH0/rAC5S1WYRSQW2ichTOJmBP1LV34nIz4Abgf834HdgjDHmlBTrZLE/A9YAN+P0Q60GCvt6jjqa3Yep7peXmv6Qu/0+4Kr+F9sYY8ypLtYsvr9R1euB46r6z8AKoCDak0QkWUTeAA4DzwLvAg2q2u0esh8nCSPcc9eLyHYR2V5fXx9jMY0xxpwqYg1Qbe73VhGZibOq7txoT1LVgKouxUmyOBtYHO6wCM8tVdXlqrp8ypQpMRYzMST6kvGJXj5jjIHYJ4t9QkTygO/jJDYocE+sL6KqDe5cfucCeSKS4taiZgG1/Sty4kv0JIpEL58xxkCMNShV/RdVbXAz+QqBYlW9s6/niMgUN6ghIpnAKqAMeB74lHvYWmDzQAtvjDHm1BVTDUpEkoFLgTnec0QEVf1hH0+bgZOinowTCB9U1SdE5B3gdyJyF86ih/cOovzGGGNOUbE28T0OtAM7gZ5YnqCqbwHLwmzfg9MfZU5hNpjZGDNYsQaoWap6RlxLYk4p1s9ljBmsWLP4nhKRj8a1JMYYY0yQWGtQLwGPiEgSToq54IzFzY1byYIEAgE6OztJS0sbjpczxhiTAGINUHfjDM7dqaphxy3FU1dXF9XV1SQnJ5OZmel/paenIyLRT2CMMWbUiTVAVQJvj0RwChYIBGhubqa52ZlBSUTIyMgICVpJSbG2WhpjxjJL5El8sQaog8AL7mSvHd7GKGnmcaeqtLW10dbW5m9LT0/3g1ZWVhYpKbG+xcRh/zjGxJ8l8iS+WO/e77lfae5Xwuro6KCjo4PGxkYAUlJSTmoWTHT2j2OMMbEvt/HP8S5IvHR3d9PU1ERTUxMAycnJdHV1AdDT04Oq9qsfq6mpiaNHjwJw9OhRmpqaGDdu3NAX3Bhjxrg+O2xE5Mfu98dF5LHeX8NTxKEVCATo6XHGGnd1dVFVVcXevXupr6+npaWFQCAQ8bnbtm0jPz+f2lpn+sDa2lry8/PZtm2bf0y4AGaMGZ1sYuWRFa0G9Rv3+w/iXZC+7N+/n3vvvZfi4mIWL17MxIkTh+zcqkp7ezvt7e0cP34cgM5OZ4Hfnp4eurq6SE1NpampiZKSkpCA09PT42+vra3ljTfeoKSkhJaWFuD9ALZlyxbOO++8ISuzMWZ4nMrN7U1NTWzatInKykoWLlzImjVrEq41KNqS76+5Py5V1Z8E7xORW4A/x6tgwRobG/ne977nP54yZQqLFy/2A1ZxcTGFhYUkJycPyet5yYpdXV289957pKSk8PDDD0esXfX09HDffffx1a9+tc8AlpOTMyTlM8aYwdi2bRslJSX09PTQ0tJCdnY2t956a8J9mI41SWIt8JNe224Isy0uxo8fz+TJk3nvvffo6emhvr6e+vp6XnzxRf+YzMxMFi1aRHFxsR+4Fi1aRHZ29qBfv7u7m4qKClpbW8Pub2lp4cknn/SbDnvr6elh06ZN3HjjjYBl6RljRk641iCv1SfRPkz3GaBE5Brgb4G5vfqccoGj8SxYsFmzZvHwww/T1tZGZWUl5eXllJeXU1ZWRnl5Oa2trbS1tfHmm2+GVMdFhMLCQoqKikJqXAMZzlVYWEhmZmZISrsnMzOT1tZW/5fcW0tLC1VVVf7jU7nZwBiT2DZt2hTzh+mRFq0G9RecMVCTcWaT8DQBb8WrUJFkZmZyxhlncMYZ789b29PTw/79+ykrK/MDVnl5OQcPHkRVqa6uprq6mqefftp/jtcUeOjQIR599FGKi4uZP38+qampNDc309DQAEBDQwPNzc3k5ORQUlLCxo0bw5YrKSmJlStX8sorr4QNYFlZWcyfP38oL8WAWRaiMWNbZWVlzB+mR1q0PqgaoEZEVgFtqtojIouAYpylN0ZcUlISs2fPZvbs2XzsYx/ztzc0NFBWVkZFRYUftKqqqujq6vL7ko4fP87tt98OQGpqKjNnzuTAgQN0d3cDUFdXx8qVKyktLWX58uWUlpayfv16Wltb/fT0rKwsSktLKS4u5oc/DD9uWURYvnw5e/fuJTMzM+Knl3jz2p0ticOMhg8q1hQeHwsXLiQ7OztskMrOzmbBggUjUKrwYp0X6EUgQ0TygeeAzwK/ilehhkJeXh4rVqzghhtuYOPGjTz66KO8/vrrbN68mRkzZgBOzSYvLw9wEiJqamr84ORpaWnh+uuv5wc/+AHHjh3jgQceYOrUqQBMmzaNrVu3snz5cnJycigtLSU7O9sfVyUiZGdnU1paSlZWlp8p6I3D6uzspK6ujsbGRjo6nAk6YklTH0jqa3C7sxcgg5M4vOmjzKkvluESicBrCq+oqBjpopxS1qxZE3FKuKSkpIRKqY81QImqtgKfBP5NVT8BLIlfseIjLS2N4uJixo8fD8Ds2bN56aWXeOGFF7j22msjTosUCAT4z//8T26++WauuOIK6uvrAWhvb2fLli3s3LmT9vZ2li9fztatW5k2bRoQGsDCUVVOnDjBoUOHqKmp4Xe/+x0zZszgwIEDABw4cCDsjWMg/7ixtDubU599UDHjxo1jy5YtjBs3zk8iy87O9rcnSoIExJ7FJyKyAvgM4PWeDdskd/GcsVxEmDFjBhkZGSfVnoJNmTKFpqYm2tvb/X/shoYG7rjjDsD55DFv3jyKi4v9JsScnJyYswibm5tZt25dSLVbVWlqauLjH/84u3fvZsqUKaSmpg7ofY6mdmcTP6Opg9zEz3nnnUdtbS2bNm2iqqqKBQsWsGbNmoQKThB7kPkS8FXgEVXdJSLzgOfjV6xQ6enpLFy4kK6uLrq6uujs7Az57jWZDUa0LL1bbrmFT37yk1RXV7Nu3Tpqa2vJzs4mKyuL+vp6enp6qKqqCrnRV1VVcd5554VkERYWFvoDgoOTMLZs2dLnjeOXv/wlq1evJiUlJepUTeHa7kdTu7OJn6H6oDIa+rBM33JychL+w0isc/H9GfiziGS7j/cAX4xnwXoTEdLS0khLSzupVqKqIcErOID1VSsKFi1Lr6SkhOTkZObPn09ubi61tbUUFBSwefNmjh496mcQlpWV8cwzz/izUXhjtsK179fV1bFixQo2bNhAdXV12OAI0NbWxt69ewFnTFbvqZrS09PJzMz0Z3EPl8a+Zs0abr311ojvbyjbne3mlbhi/aDS1+/Qkm3McImpD0pEVojIO0CZ+/hMEfm/cS1ZP3jBKzs7mwkTJjBt2jRmzZrFvHnzWLBgAbNnz2b69OlMnDiRnJycsE2G0ZIc+mqqmzRpEueddx7r1q3j7rvvZt68eQDMmTOHu+66i2uvvZZly5aFfW5nZyff+ta3+PWvfx2xKTMzM5PZs2eH3edN1XT8+HEOHjzInj17/ODorUQMoe3OXgdpUlLSgNudIyVqjJYO+LEqlg7yvn6H1odlhlOsSRI/Bj6GOzhXVd8EVsarUEMpKSmJjIwMcnNzmTx5MjNnzvSXjk9LS6OgoMAPXhdeeCGvvPJKzEkO0WRkZLB69WruvPNOPvnJT5KRkdHn8ZEGEHd0dPDOO+/wyCOPUFZWFnWgsbe/u7ub6upq3n33XQ4cOMCSJUt49913mTlzJoB/ExrIp95wiRp280p80T6oqGqfv8P77rvPkm3MsIk50UFV9/X6hB952u9RQkT8daI8M2bMYNq0adTV1TFlyhTmz59/Up/XQNTU1NDe3h5x/2WXXcaECRN44IEHTmqW7Onp4f777+f+++8P2V5dXc3Pf/5zzjzzTIqLi/2U+d4CgQAtLS1+k4xXW8rNzQWcQDYUCztaB/zo4HWQL1myhH379pGfn88777xDTk4O99xzT5+/wyeffNKSbcywifWutE9E/gZQEUnD6X8qi1+xEkNSUpJ/Ew/mLXqYmprKpEmTQpI1Ik0oGy0J49xzz2X16tV8+ctfpqSkhLq6OiZNmsQtt9xCdXU15eXl7Ny5M2RcVHt7e8jg4BkzZlBcXOynwXd2dtLT0xOxSScQCPjNOCkpKX4flrewY3+zJ4czU9AGcQ5OTk4OEydOZN++fX7TN0T/HXrN3pZsY4ZDrAHq8zgTw+YD+4FngJviVajRIikpiUmTJoVs6+np8ZsQU1JSGD9+PF1dXVxxxRVRkzDA+SfPy8vza3BeH09zczPnn39+n+U5ePAgBw8e9B/v2bOHD37wgyfNRRjuE3J3dzfNzc1+M5xXu8zIyCArK4uMjIyIgc4znJmCNp9hfET7HV566aUR+xMTbZCnGf1izeI7gjMGykSRlJTk1zySk5P9/qxZs2axZcsWLr30UlpaWkKmSrr33nujjpfy+gfCycjIYO3atcyYMYOysjI2b97sNye2trayY8cOduzYcdLzDhw44E/TtHjxYqZMmeLvU1VaW1tpbW3l2LFjgFNz9GpZ4crSn0xBqwElpmi/w7Vr13LmmWf6WXxeDT07OzvhBnma0a/fHQ8i8rqqnhWPwpzqVq5cycGDB/22/1mzZvlt/4FAwO/n8vqDkpKSSEpKoqenh5qamohp6O3t7agq11xzDc3Nzfz5z3+mrq6OyZMnc9ttt1FTU+NPpnv48GH/eU1NTdx99/tzAE+aNInFixdz4MAB2tvbmT9/Pj//+c/98nR0dNDR0UFjY6OfHdjV1UV9fT0ZGRlkZGSwZcuWmG5eVgNKTF6yRF+/w776sBKJfQga/QbSMx6/aR3GgEht/8nJySQnJ5ORkeHPtp6amsqCBQsIBAIsW7aMrKyssGtSeWno27dv9yezBWf8yl133UVpaSlf/vKXATh27BhXX301+/btIzc3l+nTp/Puu+8SCAQ4evRoSPPNwYMHOeuss1i4cKHfROh9eXp6evyBx+D0g7366qtcdNFF1NbWMnPmTMrKyob95mU3p4GLJQBF+jtOJPYhaPQbSIB6cshLcYopKioK+T5YycnJXHfddWzYsCHi/tWrV3PWWWedNFVSS0sL69evZ+vWrWRnZzNx4kS/OXHmzJls3ryZjo4Oqqqq/MHGDz30kF9b6+jo4O233+btt98+6TUB9u/fzxNPPMGyZcuYOXMmgUAAEfEHM+fk5HDo0CEaGxv9Wla0dPuhYDenwRkNAcic+qIGKBFJBp5W1VUAqnpH3EsVR8Mxy0E8PrFHa3oJXl24N1Xl+eef51Of+lTYNPn09HROO+00TjvtNABeffVVysvLmT9/PrfeemvI4pD79+8H8LMVm5ubue222wAnbd2rYXlravX09JyU5g6EDCZuaWkhPT19SFLdjTGnjqh3BFUNiEiriIxX1cbhKFS8jPYpWvpqenn88ccjpge3trZSX1/vz0YRnCY/ceLEkHFewckPqamprFq1ilWrVgHvZxKGa2YEOHHiBK+88gqvvPKKv2337t1cfvnlfiLG4sWLKSoqChlM7M3enpycTHp6up+MkZGRMeDJcY01c5rRL9aPrO3AThF5FvDvgqoacT4+ESkAfg1MB3qAUlX9iYhMBDYBc4Bq4GpVPR7pPEMleJYDT/AIea85KhZD3YTXH5GaXgaS4p2UlMTkyZNDtnV1dflBwesT88ZT9ZVJmJ6ezuWXX8748eMpLy/npZde8mtZu3fvZvfu3Tz22GP+8V5tqb6+nqeeesqfSDcQCIQEQK8MXuBKT0/30/hN36yZ04x2sQaoJ+l/31M3cJuqvi4i44DX3AB3A/Ccqm4UkQ3ABuD2fp6734ZyloPBfhqNFuAGEgCHajLY1NRUf7xTSkqKX+vq7u7m2LFjETMJOzo6mDhxot/cd8UVV1BRUcGsWbO4+uqr/WbC6upqVNWfLePo0aN86UtfApwFJIuKikLGbS1atMhvBgx+P15TZSAQoL29nbS0tKjjtIJZ7WLk2e/ARBPrOKj7RCQTmK2qMa2Sp6oHgYPuz00iUoYz0PdK4AItO0GtAAAgAElEQVT3sPuAFxiGAJVI6yFF+2ccyD9rLOnBsYjUR5eSksKSJUsi1tKysrJYsmQJOTk5dHR0+GPBcnJy+Pu//3v/uG3btnHTTTeFnfYp3JgtEaGwsDBkoHFBQYFfxiNHjvjNnKmpqX4tK9KHEY/VLkae/Q5MNLHOZn458AbwR/fxUhF5rO9nhTx/DrAMeBmY5gYvL4hNjfCc9SKyXUS2e1P3DIbXBBbOqTJFi9dHlZ+fD/R/MthoM5H3NRN2cnIyN954IzNnzmTu3Lkh/VyTJ08mNzeX7u5uvvjFL4YNTpmZmXzve9/j85//PBdccAHTp08HnASP6upqnnrqKX70ox+xfv16LrnkEg4dOgQ4S5b8zd/8DY888gitra00Nzdz9OhRv4bV0dHBvn37OHz4MI2NjbS1tUUNXsZA+A9rZnjF2sT3TeBsnNoOqvqGiMyN5YkikgP8AfiSqp6IdX43VS0FSgGWL1/e9/TdMRjO9ZBGUizpweGaEGPpoxtILS0pKYmJEycC8MQTT/RZ9s7OTn+8FsDx48cpLy+noqKCsrIydu3aRWVl5UnP6+joYMOGDdx5550sWrSIoqIif/aLQCBAW1vbSU2TXhZhd3c3J06cIC0tbUDzD5pT02hPqDpVxBqgulW1sdc/b9SgISKpOMHpv1T1YXfzIRGZoaoHRWQGcDjyGYbOUDWBnQrCNSHG2kc3mFkE+mpmbWtro7Gxkfz8fDo6Oujs7CQ9PZ2JEyeyYsUKAB588EG+/e1vR5wVvquri127drFr166Q17zwwgv9DEIvDd57r4FAgLq6Ov/41NRU0tLSuOmmm9izZw+LFi3iwQcf7Ff/1nCxPpz4GMqEKjM4sQaot0Xkb4FkEVmIM5v5X/p6gjjR7F6gTFV/GLTrMWAtsNH9vrnfpR6g0TJFSzTxyCLsTx/dQAdxRss0LCoqIjs7+6SmWC8F/vDhw30uWfKxj32McePG8cgjj4TMKl9bW0ttbS3PPfecv80LOIcOHeL3v/89ixcvZuHChf7rVVRUUF5e7q9a7AUuL4vQ+z6SNS7rw4kPWzYmccQaoG4Gvg50APcDTwN3RXnOh4HrcNLT33C3fQ0nMD0oIjcCe4HV/S30YJwKI+Tj8Wl5OGYiH8xksqmpqZxxxhkRy5iZmcmKFSv4/ve/H3bJk5SUFIqKiqiqqqKjo8O/AR0/fpw77nDGnicnJzNv3jyKior8vgcv29BbTqX3a3uJGWlpaSFfiVjjGk2GY0B9JImUUDXWxRqgilT16zhBKiaquo3I8/ZdHOt5zPAYjj66/jSzhqsd9FXGlJQUJk2aFHGcVmpqKtdccw2f+MQnqKmpYd26ddTW1pKdnU1mZiZHjhwhEAhQWVkZ0s9VVVXFeeedF5JFWFRUxJw5c0hOTvYDV7jyeLUur8aVmpo6bAOPR/IGP1gj3f8znMvGmL7FGqB+6PYX/R74naruivYEM7oMVx/dYJpZo5Xx8ccfjzjLRVtbG0eOHGHChAn09PT4Nahx48bx5JNP0tbWRnl5uf/1zDPP+IkU9fX11NfXh0wnlZmZyaJFi/w+rcWLF7No0SK/ebK7u5vu7u6TkjNEhLS0NG6++Wbee+89Fi5cyP333z+kta6RvsEPRiL0/4yVhKrRINZxUBeKyHTgaqBURHKBTaoarZnPjICB9lENVx/dYJpZ+ypjeXl5n598Tz/9dN59911KSkr8hRkPHTrEypUr+cUvfsH555/vLwp55ZVXUl5eTmFhIevWrQsJXi0tLbS1tfHmm2+G1PK8MVu9F4icNm2a31elqnR0dFBZWUl5eTnd3d3s3bsXcJoYvVpXcO2rP31diXCDH4xE6P+xhKrEEfPsnKpaB/xURJ4H/hH4BtH7ocwIGEwf1VD10Q0mkSNa81SkMkb75FtSUkJRUVHIzdub8X3dunXs27eP1NRU2tvb/dpMZmYmV199tX98T08PBw4c8CfP9b7X1tb6Y7aqq6t5+umn/efk5eWF1LSKi4vDNkUGAgF/ZozegpM0vKbCcOdIhBv8YAxV/0+0v6Fo+0+VhKrRLqYAJSKLgTU4CQ1HgN8Bt8WxXGaUG2iQHEzzVLRPvk8++WSfN++HHnqIG2+8kaysLL+vKD093U99b29vp729nYKCAgoKCvjoRz/qP7+hocEfr1VRUcGzzz7rB8KGhgZeeuklXnrppZNet7a2ll/96ld+4Bo/fnzY8oVL0vCaIDs7Ozlw4ABpaWns3LlzVHfwD0X/T7S/oVj/xk6FhKrRLtYa1C+BB4D/paq1cSyPGSXikeo+FM1TA53xPfjm3fvTdU9Pjz/YGN6f/6+9vZ22tjba29vJy8vjnHPO4ZxzzgHgnXfeoby8nDlz5vCFL3whpLblLUUCzgzw3/3ud/3HM2fOPKm2NWvWrJP6p5qbm/3zHD9+nEOHDpGTk8OUKVPIzMwMO2diVlYWs2fPpru7O2GXNhls/0+0v6GKiopR3QQ61sT6V3ohMB+YICLHVDXyYBQzJsQj1X2omqcGM+N7LJ+uk5OTTxqv1dnZ6Qer4OCQkZHBVVdd5T9WVerq6rj22mvZv38/48aNY+LEidTU1PivV1tby5/+9KeQsgUHLVXlu9/9rv86Xj9aaWkpJSUlbNy4Mex1ERHOPfdc9uzZEzLhbnd3Nw0NDaSmpvrZh/FOk4/UxDbY/p9of0MbNmwY1U2gY02fAUpEUoDvAJ/FGbOUBMwSkV8CX1fVk/NrjRmgeI8/GUgfVaRP173HaXnJDF4TnTcXobdcSEdHB6qKiDBjxgz/PPn5+WzevJnm5mZ2794dkoyxc+dOenp6aGlp4bXXXuO1114LW/bgfrT/+Z//obS0lPXr19Pa2uq/ZlZWFqWlpX5QDc5kDAQCHD4cOqFLcnJyyHRQjY2Nfj/YYGtf0T4ExGu2kpaWFioqKkZ1E+hYE+0v7fvAOGCeqjYBuBl8P3C/bolv8cxIGI71rsK9RrzHnwy2jyr403Wsszh4S5aoqt8sWF9fT2Ojs/ZnQ0MDzc3N5OTkcNZZZ3HWWWf5z/WWLJk5cyaXX345ZWVlvP76634GYm9tbW2sXLmSpUuX8qlPfYpHH32UxsZGpk6dylNPPRVxsuRwAoGAn4QRCAT8yXnBqYmlpqaGLHnS0tLiJ2/0lXEYazNuPGcrefvtt22M0ygRLUBdBizSoHQhd8LXLwDlWIA6JQ3HvG7hXqM//Q/xSKWPtY9qIESEzMxMXnvttZDag9c8d99993HmmWeGBEjvRp+bm+tfl+9///vcc889EV+nubmZbdu2+TPQAxw+fJi1a9eG9GsVFRUxd64z37P3PVaq6i9iCaGrIoMTlL1U+eC0+dTU1LhnGUb7G9q4cSOPPPJIxP02ximxRAtQqmFyWd1l4Ac9w3iiGskVc8ey/vQ/xCOVfqhqcJH6V8LVHrzmuc9+9rPU1tb6ae7t7e1hayKFhYURkyDS09O55JJLGDdunF/b6unpQVXZuXMnO3fuDDl+9uzZ/hyEzz33HIsXL2bGjBkxj7mKFOC8Qcpf+tKXeO+995g7dy4//vGPAXjllVfi2sQW7W9oxowZNsZpFIkWoN4RketV9dfBG0XkWpwa1CnJZoYeOSM5/mQoZhDoq3+lvLw8ptpDeno648eP95e2T01NZeLEibS1tXHppZdGTIJISUnhG9/4ht+U5zUR5ufn84lPfIJ33nmHiooKv7azd+9e9u7dGzJma/z48X5ChtcMGWn6KC/oRPLee+9RXh56m5g9e3bEAJuZmUleXh4HDhwgNTXVn1NRVf2+tFhE+xuyMU6jR7QAdRPwsIh8DngNZ4mNDwGZwCfiXDYzRo3U+JPBZpBF619Zt27dgGoPSUlJTJ48GYBZs2axefNmrrrqKlpaWiImQcD7TYTjxo3j5ptv9rc3Njb6Y7a89bZ2795NV1cXjY2NvPzyy7z88sv+8RUVFVxxxRUhy5UUFxczYcKEKFf0ZH1lGSYlJfHRj37Uv0beRL2dnZ1UVlaGNBd62YbB34NF+xsajr+xpqYmNm3aRGVlJQsXLmTNmjWjZj7ERNFngFLVA8A5InIRcBrO5K9PqepzfT3PmNEqlk/XkZrwovWvHD16NOYmxEivISJcfPHFHDx4MKSMr776KikpKX6qe6RaDzi1pLPPPpuzzz7b39bV1cWePXtCsghffvllvxZTUVFBRUVFyHmmT5/uT57rrbdVUFDQZ4p6Tk5OTFmG4USamBec4NZ7mqiRXDnZq0l7WZjZ2dnceuuto2I+xEQS61x8fwL+FPVAYxLEYPoR+/p03VcTXrQU50mTJkW8eQc3IcYyFiu4jJMmTWL69On+ubyMQa9WEUvTWGpqKkVFRRQVFXHllVcC7zcRzpo1i9WrV/uDjWtqavzxXHV1dTz//PP+ebKysigqKqK4uNgfSNw7UCxfvpytW7dSUlJCXV0d06ZNY8uWLf3KMuytp6eHjo4OOjo6/G1eMOvo6GDv3r0nJWzES7iatPe7tMHA/ZOYw8nNmDfYRJVo/YgDOX+0JrzvfOc7fdaQTjvttKhNiEMxm4aXMZicnAxAWloac+bM8QcRt7W1+WOcop0HnGD4+c9/3t/e2trqL+jofVVUVNDW1kZrays7duxgx44d/vG7d+/mkksuCVmuZPHixYwfP566ujry8vIGFZxi4SWeBPOCWWdnJwcPHjxpgt6BDlYe7fMhJhILUCYhxTtRZSDnj3bjEZGoNaScnJw+mxCH8uYWHIS9m25ubi7gjF3ygpXXLBirrKwsli1bxrJly/xtgUCAvXv3+nMR7ty5k7/+9a/+e9mzZw979uxhy5Yt/nO8AHr48GEee+wxFi9ezNy5c4d9GiZVDflAEFy+4LFeJ06c8GtgXtnDsQUPh44FKGNiFO3Gs3///piSLPpqQhzKm1tfQTg5OdkfEAtO8BtowPLON3fuXObOncvUqVP5zW9+E9IPlpaWxtlnn83hw4fZs2cP3d3dfv/WsWPH+Id/+Af/uIULF1JcXMyxY8cAwq6QPBwCgUDIWK+6ujp/n9fn1Xusl1d+W/BwaFiAMiZGsdx4BpvCPFI3Ny+Qek1tqur30yQlJZGUlBRT0kFzczPr168/qfydnZ3s2LGDrVu3kpqaSlVVFV/4wheoq6sjMzOTlJQUmpqa6OzsZNeuXeza9f6aqJWVlVx88cUnZRHm5+fHnHo+1ML1eXk++MEPRnyeDQbuHwtQxsQo1nFSg0lhTpTVXIObK1NTU1mwYIHfh9Xa2kpbW1vYgLVly5Y+myi3bNnC6tWrWbJkCXl5edTV1VFYWMijjz5KbW2tn/peXl7OCy+84Dex7d+/n/379/Pss8/658vNzfUTMrwswgULFvjjx0ZKdna2n6no1UwzMzNJSkqitLSUY8eO0dTU5De7ejWveE/QOxpZgDImRsOx0moirebaO5EkIyODjIwMf/xTuIBVU1MTdhAuOHMFeqsH9yYi5Ofnk5+fz6pVq4D3VzWePXs2a9eupaysjLKyMiorK+ns7OTEiRO8+uqrvPrqq/55UlJSmDdvHsXFxX6avjeeajh5mYpbtmxh7969zJ49m5KSErKzs8MmbIDTTBocsIK/j9XgZQHKmDAiZfkNxywEiTLTQbREknAB6/TTT+9zpojZs2f3uxxZWVlce+21/uPu7m6qq6tZt24dBw8eJDs7m/T0dI4dO0Z3dze7d+9m9+7d/vFVVVWcf/75IU2E3rIlgxVuOidPdnY2q1evjvlcwYkrvYULXmOh5mUBypgw+ro5D8csBLG8RqLNGZmRkcHnPvc57rzzzrD7vSVNBislJYUFCxYwfvx4Dh48SEFBAY8++ij19fV+FmF5eTnPPvusn05/+PBhDh8+zJ///Gf/PF7/VV1dHQ888ADFxcUsWrSoXynv4aZziodowStc4IqWbTgaWIAyZgQMRXBJxDkj+2qifPzxx1m4cGHEG+1giAhTp05l6tSpfOQjHwHebyIsLCzkxhtvDJnayZvFApwlT775zW/65yksLPRrW97SJkNR24qXQCDgr/Lcmxe8wjUbjobgZQHKmDiIFoASMbgMlWhNlN734EUdMzMzo07RNFCZmZkhySU9PT3s27ePG264gdraWrKzsxk3bhx1dXWoKtXV1VRXV/PUU0/5z6mqquKGG27wA5c3ZivR9RW8wk0P5QWz4R6LFklilMKYU8ypHIBi0d8myoKCAn+KJq+GFa8U8qSkJAoLC8nNzaW2tpaCggI2b97M8ePH/RqWl5Cxe/duVJVAIMBf//pX/vrXv/rnCU5eOHbsGK+88grFxcX+YOhE11eqvIj4qyeHG+81XOn9FqCMMSOidxD3pmjKzMwE8NPFU1JSyM3Npb29PaYpmjz9XZBxwoQJrFixghUrVvjbOjs72bNnj9886H1vbGwMmbj28OHDXHfddQDk5+eHTKBbXFzMrFmzRmzM1kCoasTgBfjBygtgwbPMD2XToQUoYxJUoiVBjJTk5GR/Mlyvuaq+vt5fr6qhoYHm5uaTamnR1quKRVpamp/551FVDh48yBtvvMGdd95Jc3MzycnJ/owXBw4c4MCBA/zpT+/Pr52TkxMyyNhLyPCaOUebWGaWj/TVn0BtAcqYARiO4DHWmwnDSU5OZseOHSGzvR86dIiPfOQj/OY3v+GMM86I+7gnEaG2tpY77riD1tZWwGkuy8rK4itf+QqAX9PavXs3HR0dNDc3s337drZv3x7yXrwxW16/VnFxMZMmTYpr+eOtr6ZDoF/9WxagjBkACx4jI9xs76pKc3Mz119/PbW1tWRkZPjzCba1tdHR0TGkyRfhpnNSVVpbW7n77rvZunUrn/nMZwBnzFZNTc1JTYRHjhwhEAhQWVlJZWUljz/+uH+uKVOmhMyOUVRUxJw5c0ZF1l0s+vMBwgKUMSYu4lHLjHW293Hjxvmr1wYnX3jfBzMBbazTOYFTW5g/fz7z58/nsssu84+rr68PWa6kvLycPXv20NPTQ319PfX19WzdutU/PiMjg0WLFoUsV7Jo0aJTfl0pC1DGmLgYbC0zXIAbyGzvvZMvwEl+8CbD7W/ywkCncwo2ZcoUpkyZwvnnn+9va29vp7Ky0g9YXm2rpaWF9vZ23nrrLd56662Q8xQWFoY0ES5evJhp06aNqoSMvsQtQInIL4DLgMOqerq7bSKwCZgDVANXq+rxeJXBGDN6hQtwQzXbe/AUQWlpacybNy9kuZFI/SfgBIWhns4JnFrSBz7wAT7wgQ/423p6eti/f39I0KqoqODAgQOAEyxramp4+umn/efk5eWd1K81b968EZ9EdyAkXiOkRWQl0Az8OihAfQ84pqobRWQDMEFVb492ruXLl2tw5+JgLV26lDfffJMzzzyTN954Y8jOa4yJr6amJvLz88MuMDhu3Lh+Lafe133Am4Xcm9i1vb3dbxZsbm5m5cqVEYPk1q1b475CcGNjY0jAKisro6qqKmJmnTcjfe9Mwry8vLiWM5KioqLXVHV5tOPiVoNS1RdFZE6vzVcCF7g/3we8AEQNUMYYA8M323vv9bHAaRZsa2sjNzeXX/ziF3zuc5/zp0wSEbKysigtLY17cAIYP34855xzDuecc05I+fbs2XNSE2FDQwNdXV3+4ONgM2bMCGke9MZsJSUl0dzczJYtW6ipqaGwsJCSkpJh7/OKWw0KwA1QTwTVoBpUNS9o/3FVnRDhueuB9QCzZ8/+YE1NzZCVy2pQxoxuzc3N/lRKBQUFA5rtfbD3gYaGBk4//XQOHDjAjBkzePLJJ4clOPWHqnLo0KGQgFVeXk5NTU3EzMbs7Gzy8/PZs2cPIkJXVxcZGRkkJydTWlrK8uVRKz5RjXgNarBUtRQoBaeJb4SLY4xJIMMxo3w0eXl5TJ48mQMHDjB16lQ+8IEPhKyP1Z9ZL+JFRJg+fTrTp0/nggsu8Le3tLSwe/fukMBVUVFBe3u7vy+YN5ff9ddfz0033cQZZ5zB4sWLmTx5clzLP9wB6pCIzFDVgyIyAzg8zK9vjDFxkZKSEpLe3t3dnXABy5Odnc2yZctYtmyZvy0QCFBTU8Mvf/lLHn744bDjlQKBAD/96U/9x5MnTz4pIWPOnDlDNtnscAeox4C1wEb3++Zhfn1jjBkWvQNWIBDwg1W0TMGR4M1skZub2+dg2gkTJnDixAkCgQBHjhxh27ZtbNu2zd+fnp7OokWL/KBVVFREcXHxgGq58UwzfwAnIWKyiOwH/gknMD0oIjcCe4HYl5s0xphRLDk5+aSAFVzDSpSAFS2N/rbbbuOKK66gqqrqpBkympub6ejoYOfOnezcuTPkuQUFBX4tK1bxzOK7JsKui+P1msYYM1okJyeTk5Pj1yyCV81tbW0dsYBVUlLCxo0bw+7zVkVOT0/ntNNO47TTTvP3qSr79+/30969wOWN2dq3bx/79u3jmWeeibksCZskYYwxY0nvgOWNxfJqWOEWHYyHnJwcSktLWb9+vV+GzMxMkpKS+kyjFxEKCgooKChg1apV/vYTJ05QUVERUtPatWtXTGWxAGWMMQmo91gsL1gE17DiNUxo+fLlbN26lS1btrB3715mz55NSUnJgNLoc3Nz+dCHPsSHPvQhf1us8zNagDLGjEpjbb2s4Q5Y2dnZ/qS3I8UClDFmVBrrS570DliqGhKw2tvb41bDGi4WoIwx5hTgTbeUlZXFpEmTQpYZ8QJWpGVCEpUFKGOMOQUFLzMyceJEVJWOjo6QxItED1gWoIwxY9JQ9GGNpn4wESEjI4OMjAwmTHCmQO0dsAazkGM8WIAyxoxJQ9GHNdr7wdLT00lPT/eX3fBmbPcCVn+WZ48HC1DGGGMAZ/HGtLQ0xo8fD0BXV1dIwIq03lS8WIAyxhgTVmpqKqmpqeTm5gLDPwGuBShjjDExCTcBbjznE7QAZYwxZkAizSc4VAHLApQxxpghES5gecGqtbW1302CFqCMMcbERe8lRrq7u2ltbY35+UnxKpgxxhgTLCUlxU+4iIUFKGOMMQnJApQxxpiEZAHKGGNMQrIAZYwxJiFZgDLGGJOQLEAZY4xJSBagjDHGJKQxOVB3NK3hYowxY9WYDFCjfQ0XY4wZC6yJzxhjTEKyAGWMMSYhWYAyxhiTkCxAGWOMSUgWoIwxxiQkC1DGGGMSkgUoY4wxCUlUdaTLEJWI1AM1Q3zaycCRIT7nWGPXcHDs+g2eXcPBG4lrWKiqU6IdNCoCVDyIyHZVXT7S5RjN7BoOjl2/wbNrOHiJfA2tic8YY0xCsgBljDEmIY3lAFU60gU4Bdg1HBy7foNn13DwEvYajtk+KGOMMYltLNegjDHGJDALUMYYYxLSmAtQIvJxEakQkSoR2TDS5RkNROQXInJYRN4O2jZRRJ4VkUr3+4SRLGOiE5ECEXleRMpEZJeI3OJut+sYIxHJEJFXRORN9xr+s7t9roi87F7DTSKSNtJlTWQikiwiO0TkCfdxwl6/MRWgRCQZ+A/gEmAJcI2ILBnZUo0KvwI+3mvbBuA5VV0IPOc+NpF1A7ep6mLgXOAm92/PrmPsOoCLVPVMYCnwcRE5F/hX4EfuNTwO3DiCZRwNbgHKgh4n7PUbUwEKOBuoUtU9qtoJ/A64coTLlPBU9UXgWK/NVwL3uT/fB1w1rIUaZVT1oKq+7v7chHODyMeuY8zU0ew+THW/FLgIeMjdbtewDyIyC7gUuMd9LCTw9RtrASof2Bf0eL+7zfTfNFU9CM7NF5g6wuUZNURkDrAMeBm7jv3iNk+9ARwGngXeBRpUtds9xP6n+/Zj4B+BHvfxJBL4+o21ACVhtlmevRk2IpID/AH4kqqeGOnyjDaqGlDVpcAsnBaRxeEOG95SjQ4ichlwWFVfC94c5tCEuX4pI12AYbYfKAh6PAuoHaGyjHaHRGSGqh4UkRk4n2hNH0QkFSc4/ZeqPuxutus4AKraICIv4PTn5YlIilsLsP/pyD4MXCEiJUAGkItTo0rY6zfWalCvAgvdrJU04NPAYyNcptHqMWCt+/NaYPMIliXhuW399wJlqvrDoF12HWMkIlNEJM/9ORNYhdOX9zzwKfcwu4YRqOpXVXWWqs7Buff9SVU/QwJfvzE3k4T76eHHQDLwC1X99ggXKeGJyAPABTjT8h8C/gl4FHgQmA3sBVarau9ECuMSkfOArcBO3m///xpOP5RdxxiIyBk4nfjJOB+uH1TVb4nIPJyEp4nADuBaVe0YuZImPhG5APiKql6WyNdvzAUoY4wxo8NYa+IzxhgzSliAMsYYk5AsQBljjElIFqCMMcYkJAtQxhhjEpIFKDPqicgnRERFpDiGY28QkZmDeK0LvFmgw2xvdGeJrhCRF92R+97+z4vI9VHO+zcDLddgicgyEfHmZ/umiHxlgOdJc9/7WJsEwMSBBShzKrgG2IYz+DCaG4ABB6gotqrqMlUtAr4I/LuIXAygqj9T1V/38dwLgBELUDhjsv5tsCdxJ2F+Dlgz6BKZMc8ClBnV3LntPoyzRMCne+37RxHZ6a4ftFFEPgUsB/5LRN4QkUwRqRaRye7xy93pcxCRs0XkL26N6C8iUtSfcqnqG8C3gP/jns+vlYjIF0XkHRF5S0R+504e+3ngy265zheRy901enaIyH+LyLSg8/xCRF4QkT0i8sWg93u9e843ReQ37rYpIvIHEXnV/fpwmGs4DjhDVd8Ms+/vROQp91q9ICI/cmtIZSLyIRF52F1H6K6gpz0KfKY/18uYcKwabka7q4A/qupuETkmImep6usicom77xxVbRWRiap6TET+D84I+u0AzgxEYZUDK1W1W0RWAd8B/nc/y/Y68A9htm8A5qpqh4jkufPK/QxoVtUfuOWaAJyrqioi63BmoL7NfX4xcCEwDqgQkf8HLAK+DnxYVY+IyET32J/grPWzTURmA09z8gSry4G3e23DvYE4Dz4AAAKUSURBVFYfBa5yywrQqaorxVlwcTPwQZylWN4VkR+p6lH3XB/q57Uy5iQWoMxodw3O1FXgTNdyDU5gWAX8UlVbAQYwfdB44D4RWYgzu3PqAMoWKfq9hVOLexSnthHOLGCTO4FsGvBe0L4n3aloOkTkMDANd00fVT0CIe93FbAkKBDnisg4d00qzwygvtfrX4czufJVqtoVtN2bu3InsMtbKkRE9uBMxHxUVQMi0hnmdYzpF2viM6OWiEzCuTHfIyLVOLWVNe7ErEJsywZ08/7/QUbQ9n8BnlfV04HLe+2L1TJCVy71XIqzsvMHgdciJBT8G/DvqvoB4O97vX7wPGkBnA+akd5vErBCVZe6X/lhgkYbJ7+/t4E5OIEymPfaPb3K0UPoB950oD1MeYyJmQUoM5p9Cvi1qhaq6hxVLcCpaZwHPAN8TkSyAIKavJpwmsY81TiBAkKb8MYDB9yfb+hvwdyJTe/ECUTB25OAAlV9HqfZLg/ICVOu4NdfS3TPAVe7QTv4/T6D2w/mbl8a5rllwIJe23bgBMbH+pv16JahvlfNy5h+swBlRrNrgEd6bfsD8Leq+kec5qjt4qzA6qVN/wr4mZckAfwz8BMR2YpTG/F8D/iuiPwPzuzZsTjfSzPHCUxfVNXneh2TDPxWRHbiBIEfqWoD8DjwCS9JAvgm8Hu3XEeivbCq7gK+DfxZRN4EvCU9vggsd5Mn3sFJxuj93HJgvJssEbx9G851e9JLJInRhcCWfhxvTFg2m7kxBhH5MtCkqvcMwbkeBr6qqhWDL5kZy6wGZYwB+H+E9ikNiDgLgT5qwckMBatBGWOMSUhWgzLGGJOQLEAZY4xJSBagjDHGJCQLUMYYYxKSBShjjDEJ6f8HPBF5e0BTeCMAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "x, y = pd.Series(actual_distance_bins, name=\"Actual Distance (km)\"), pd.Series(triangle_approximations, name=\"Over-estimation (%)\")\n", + "ax = sns.regplot(x=x, y=y, color='black', x_estimator=np.mean)\n", + "\n", + "plt.title('Distance approximation error')\n", + "plt.tight_layout()\n", + "plt.savefig('overestimation.svg')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAagAAAEYCAYAAAAJeGK1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJzs3Xl81NW9+P/Xe7Inkw0IQRAMkU1AiBDDHqqitSlV24roVa9Wb6nXeq/U2mqr396trVv1avvrRtVetVSp1V65GGu1kg0EZAmyL0JkCYQ1yUz25fz+mJmPkzhJJsssSd7PxyOPTOYzy/lkknnPOed93keMMSillFLhxhbqBiillFK+aIBSSikVljRAKaWUCksaoJRSSoUlDVBKKaXCkgYopZRSYUkDlOoTIvIbEfl/oW7HQCYiY0TEKSIRQXq+d0TkjmA8l1K+iK6DUl0RkTIgHWgGWoDdwMvACmNMaw8e65+MMe/3cTNVL4jIvwPjjDG3hbotSnloD0r56yvGmETgIuBx4CHghdA2qf8RkchQt6E/8fX76u7vUH/n/ZcGKNUtxpgqY8xqYClwh4hMBRCR/xGRH7svDxORNSJSKSLnRKRYRGwi8gowBvg/91DV9923f11ETopIlYgUicgUz/O5H/eXIvK2iDhEZKOIXOx1fIqIvOd+ngoR+aH7epuIPCwin4jIWRH5k4gM8XVOIpLqbu9pETnvvnyh1/ECEXlMRDa52/iW57FEJENEjIgsE5FyETkhIt/1uu+/i8ifReQPIlIN3CkiMSLyrPv25e7LMe7bPyQiGzxvqiLyzyKyS0RivZ4r0qtdPxaR9e7f5/+JyFARWSki1SLykYhkeLXlORE56j62RUQWuK+/FvghsNT9ONu9Hv+fvH6fj4rIpyJySkReFpHkdr+DO0TkiIicEZFHOvobcp//z9y3rXAPD8e5j31BRI65fw8ngd/7us5922+KyEH3a79aREZ6PYcRkW+LyAHgQEdtUeFNA5TqEWPMJuAYsMDH4e+6j6XhGhr8oesu5nbgCK7emN0Y86T79u8A44HhwFZgZbvHuwX4DyAVOAj8BEBEEoH3gb8CI4FxwN/d9/lX4AZgofvYeeCXHZyODdeb3kW4Amgd8P+1u80/Ane5H6sZ+Hm741e4z+Ea4GERWeR17Hrgz0CK+9weAWYDWcB0IAd41H3bp4BG4FERGQ/8FLjNGFPfQdtvBm4HRgEXAx+6z2UIsAf4N6/bfuR+ziHAH4HXRSTWGPNX9/Oscr8u0308z53uryuATMDu43c0H5gIXAX8SEQu6aDNTwAT3G0Z5277j7yOj3C38SJgma/rRORK4DHgJuAC4FPgtXbPcwMwC5jcQTtUuDPG6Jd+dfoFlAGLfFy/AXjEffl/gB+7L/8n8BauOQ2/HsvreApggGSvx33e63gesNd9+RZgWwePswe4yuvnC4AmINKP880Cznv9XAA87vXzZFxBJALIcLd3ktfxJ4EX3Jf/HShq9/ifAHleP38RKPP6OQM45z6HH7S73njOwd2uR7yOPw284/XzV4DSTs7zPDDdq51/aHe8ANd8IbgC/71exyZ6fp9e7brQ6/gm4GYfzylADXCx13VzgMPuy19w/25jvY77uu4F4Emvn+3u9mS4fzbAlaH+39Gv3n1pD0r1xihcb6TtPYWrp/M3ETkkIg939AAiEiEij7uH4qpxBTCAYV43O+l1uRbXmxHAaFxv9r5cBPxFXMOMlbje7Ftw9ejatyFeRH7rHr6qBoqAFGmbLXfU6/KnQFS7NrY/PrKDY7iPfdrR7Y0xZcBaXG/8HfX6PCq8Ltf5+Nnzu0JEvisie9zDlJVAcrtz6IyvNkfS9vfZ0evkLQ2IB7Z4vTZ/dV/vcdp8vsfY/ro27THGOIGzuP4mPdr/3lU/owFK9YiIXI7rzaCk/TFjjMMY811jTCauT/EPiMhVnsPtbv4PuIbAFuF6w8zwPIUfzTiKa1iro2NfMsakeH3FGmOO+7jtd3H1CGYZY5KAXB9tGO11eQyuT+tnOjle7vVz+3MuxxVAfd5eRPJw9Sr+jivY95p7vukhXENiqcaYFKCKz86xq3ReX21upm1A9McZXIFzitfrkmyM8Q5mvtrS6e9QRBKAocDxTu6j+hkNUKpbRCRJRBbjGu//gzFmh4/bLBaRcSIiQDWunkuL+3AFrjkMj0SgAden33hccyH+WgOMEJHl7on3RBGZ5T72G+AnInKRu01pInJ9B4+TiOtNs9Kd/PBvPm5zm4hMFpF4XEOYfzbGtHgd/3/untgU4BvAqk7a/SquOaY0ERmGa/7lD+52DsM1fPVPwB3AV9wBq7cScQWU00CkiPwISPI6XgFkiEhH7wmvAt8RkbEiYuezOavm7jTCuJYl/A74bxEZDiAio0Tki907Hf4IfENEstwJJj8FNrp7n2qA0ACl/PV/IuLA1TN5BHgG1xuxL+NxJS84cU3a/8oYU+A+9hiuN+dKEXkQ13qqT3F98t2Na17LL8YYB3A1rl7aSVzZWle4Dz8HrMY1zOhwP+4sX48DPAvE4fp0vwHXkFN7r+CaDzsJxOJKwvBWiGtY8+/Az4wxf+uk6T8GNgMfAztwJYb82H1sBfCWMSbfGHMWuBt4XkSGdvJ4/ngXVzLKfly/73raDoG97v5+VkS2+rj/i7h+B0XAYff9/6WHbXkI1+9qg3tI9X1cPVi/GWP+Dvw/4A3gBK6e9M09bI8KU7pQV6kuiEgBrt7i8z6OZeB6w47qbm9CKdU57UEppZQKSxqglFJKhSUd4lNKKRWWtAellFIqLPWLIorDhg0zGRkZoW6GUkqpbtqyZcsZY0xa17f8vH4RoDIyMti8eXOom6GUUqqbROTTrm/lmw7xKaWUCksaoJRSSoUlDVBKKaXCkgYopZRSYUkDlFJKqbCkAUoppVRY0gCllFIqLA26ALV06VKysrJYunRpqJuilFKqE/1ioW5f2rdvH9u3bw91M5RSSnVh0PWglFJK9Q8aoJRSSoUlDVBKKaXCkgYopZRSYSlgAUpERovIWhHZIyK7ROR+9/VZIrJBREpFZLOI5ASqDUoppfqvQGbxNQPfNcZsFZFEYIuIvAc8CfyHMeYdEclz//yFALZDKaVUPxSwAGWMOQGccF92iMgeYBRggCT3zZKB8kC1QSmlVP8VlHVQIpIBXAZsBJYD74rIz3ANMc4NRhuUUkr1LwFPkhARO/AGsNwYUw38M/AdY8xo4DvACx3cb5l7jmrz6dOnA91MpZRSYSagAUpEonAFp5XGmDfdV98BeC6/DvhMkjDGrDDGZBtjstPSerSdvVJKqX4skFl8gqt3tMcY84zXoXJgofvylcCBQLVBKaVU/xXIOah5wO3ADhEpdV/3Q+CbwHMiEgnUA8sC2AallFL9VCCz+EoA6eDwzEA9r1JKqYFBK0kopZQKSxqglFJKhSUNUEoppcKSBiillFJhSQOUUkqpsKQBSimlVFjSAKWUUiosaYBSSikVljRAKaWUCksaoJRSSoUlDVBKKaXCkgYopZRSYUkDlFJKqbCkAUoppVRY0gCllFIqLGmA6gNLly4lKyuLpUuXhropSik1YARyR91BY9++fWzfvj3UzVBKqQFFe1BKKaXCkgYopZRSYUkDlFJKqbCkAaof0CQMpdRgpEkS/YAmYSilBqOA9aBEZLSIrBWRPSKyS0Tu9zr2LyKyz339k4Fqg1JKqf4rkD2oZuC7xpitIpIIbBGR94B04HpgmjGmQUSGB7ANSiml+qmABShjzAnghPuyQ0T2AKOAbwKPG2Ma3MdOBaoNSiml+q+gJEmISAZwGbARmAAsEJGNIlIoIpd3cJ9lIrJZRDafPn06GM1USikVRgIeoETEDrwBLDfGVOPqtaUCs4HvAX8SEWl/P2PMCmNMtjEmOyUlhZqamkA3VSmlVBgJaBafiEThCk4rjTFvuq8+BrxpjDHAJhFpBYYBHXaTWlpaOH78OFFRUSQnJ5OUlERkpCYgKqXUQBbILD4BXgD2GGOe8Tr0v8CV7ttMAKKBM/48ZlNTE2fOnOHw4cOUl5drr0oppQawQHZD5gG3AztEpNR93Q+BF4EXRWQn0Ajc4e5N+c0Yg9PpxOl0EhkZid1uJykpidjY2D49AaWUUqETyCy+EuBzc0tut/XV8zQ3N1NZWUllZSVRUVEkJiaSmJhITExMXz2FUkqpEBhQEzlNTU2cO3eOc+fOER0dbQWr6OjoUDdNKaVUNw2oAOWtsbGRs2fPcvbsWWJiYkhMTCQpKSnUzVJKKeWnARugvDU0NNDQ0MCZM2doamoCXPNYSimlwtegqmbudDo5d+4cAKdOnWLv3r1UVVXR0tIS4pYppZRqb9AEqM2bN5Obm0tFRQUAFRUVZGdn8/bbb3Po0CGOHz9OdXU1ra2tIW6pUkopGCRDfE6nk2XLlrVZN2WMoaamhmXLllFcXGz9LCIkJCSQlJREQkICPopcKKWUCoJB0YPKz8/vsGfU2tpKfn6+9bNnjVV5eTmffPIJFRUV1NXVBaupSiml3LrsQYnIHFzrlhYAFwB1wE7gbeAPxpiqgLawD3z66acdBpm6ujqOHDni81hraytVVVVUVVURHR1NUlKSlllSSqkg6bQHJSLvAP8EvAtciytATQYeBWKBt0TkukA3srcuuugi4uLifB6Li4tjzJgxXT5GY2MjZ86c4dChQxw7dgyHw6GZgEopFUBddQVuN8a0r5PnBLa6v54WkWEBaVkfysvL4/HHH/d5zGazkZeX163Hq62tpba2FpvNRmJiogYqpZQKgE57UD6CEyJylYh8xV2p3Odtwo3dbmfFihVtkh48yRCe63vCMwTY2NgIuKquNzc391m7lVJqMOtWkoSIPA0swrWX01sBaVGAZGdnU1xcTHp6OgDp6ekUFxeTnZ3dZ8/R3NxspazrEKBSSvVOp0N8IvIz4L+8EiHGADe5L+8IZMMCISEhgZSUFE6ePElKSkqPe05dqampoaamxhoCTE5O1krrSinVTV3NQf0FWCUibwO/Al4GNuBKkFgR4Lb1e5oFqJRSPdfpO6UxZh1wrYjcDvwV+LkxZlZQWjbAeLIAz5w5Q1xcHElJSdjtdiIiIkLdNKWUCktdpZlHisiXgQrgq8BlIrJaRKYFpXUDVF1dHRUVFVpiSSmlOtHVWNP/AqVAPHCrMeYOERkJ/KeIGGPMNwPewgHMU17Ju8RSYmIiCQkJ2GyDosiHUkp1qKsAdZExZrGIROOae8IYUw78k4hkBbx1btXV1TgcDhITE4P1lEHnvY29iBAfH4/dbsdut4e6aUopFRJdBagVIlIKGOBp7wPGmNKAtaqdo0ePMnv2bGbMmMHChQtZuHAh48aNG7CFXL17VqdOnbL2sFJKqcGkqySJXwC/CFJbOiQiNDc3s2nTJjZt2sRTTz3FyJEjyc3NJTc3l9mzZwcsZTzUjDHW/FRDQwMVFRUkJiYSHx8f4pYppVRgdbUO6lHgl8aY8x0cvxKIN8asCUTjPCZNmsR9991HUVERBQUFVFRUUF5ezmuvvcZrr71GVFQUOTk55ObmsnDhQjIyMoLWu3I6nVRWVgJQWVmJ0+kM6LCcJ209MjLS2sY+JiYmYM+nlFKh0tUQ3w5gjYjU46q9dxrXGqjxQBbwPvBTX3cUkdG41k2NAFqBFcaY57yOPwg8BaR1VS7JZrOxaNEiFi1ahDGG/fv3U1hYSFFREVu3bqWpqYl169axbt06HnvsMcaMGcPChQvJzc0lJycnYItkN2/ezLJly6itrQVcmyDm5uayYsWKPqtQ0VEAbG5u5vz585w/f57o6GgrWEVFRfXJ8yqlVKiJP+V4RGQ8MI/PttvYAxQZYzrcKElELgAuMMZsFZFEYAtwgzFmtzt4PQ9MAmZ2FaCmTp1q3nzzTZ/HqqurWb9+vRWwzpxp+1CxsbHMnj3bGg6877772Lt3L5MmTeKtt3percnpdJKbm9tmE0SPhIQEiouLez3s6B0AjTFW8kRnATA2NpakpCQSExN1jZVSKuREZIsxpkef2P0qaWCMOQAc6M4DG2NOACfclx0isgcYBewG/hv4Pn1Qzy8pKYlrr72Wa6+9ltbWVvbs2WMFq+3bt1NfX09BQQEFBQUAREdHA65yRI2NjdbP3eXPJohLlizp0WODf7sA+wqA9fX11NfXc/r0aRISEkhOTiY+Pr5PhzyXLl3Kvn37mDhxIqtWreqzx1VKKW9BqbkjIhnAZcBG9/5Rx40x2zt70xSRZcAygJEjR/r1PDabjSlTpjBlyhTuvfdezp8/z7p166yAVVlZaVUeP3r0KLNmzWLu3LnWcOCIESP8PqeeboLor94GQO+09YiICKvMUl/MV+3bt4/t27f3+nGUUqozAQ9QImIH3gCWA83AI8A1Xd3PGLMCd72/qVOn9qgseGpqKosXL2bx4sW0tLSwY8cO7r33Xs6ePQu49nV6//33ef/99wGYMGGClcaelZXV6XyOZxNEX0HK300QO9OXAbClpaXNfJXWBFRK9QcBLVfg3jPqDWClMeZN4GJgLLBdRMqAC4GtIuJ/16WHIiIiyMrKIi0tDYBx48bxxBNPkJeXR1JSEgD79+/nd7/7Hbfddhtz5szh/vvv58033+T06dOfe7y8vLwOqz30ZBPE9vpiF2BfvHcGPnr0KFVVVVpmSSkVlvz6CC0iacA3gQzv+xhj7urkPgK8AOwxxjzjvv0OYLjXbcqA7FBsehgZGckNN9zADTfcQHNzM6WlpRQVFVFYWMjevXtxOBz89a9/5a9//SsAU6ZMsYYCp02bZm2C2FESQ28TJPp6F2Bf6urqqKur49SpU1pmSSkVdvwd43kLKMaVVt7i533mAbcDO9zVKAB+aIzJ714TAy8yMpLs7Gyys7N54IEHOHnyJEVFRRQVFbF+/XpqamrYtWsXu3bt4le/+hUpKSnMnz+fhQsXsnr1am699VZOnjxJeno6+fn5fbJoONAB0Fv7MksarJRS4cDfABVvjHmoOw9sjCkBOk0dM8ZkdOcxg2XEiBHcdNNN3HTTTTQ2NrJ161Yr0eLgwYNUVlayZs0a1qxZg4hYiQcxMTEdDsv1hGcX4Ly8vD4PgB3pKFjZ7fYBW1pKKRWe/A1Qa0QkLxx7P4EWHR3N7NmzmT17Ng899BDHjh2jsLCQ4uJiPvzwQyutG1yJDQsWLCA3N5cFCxYwf/58a36rp4K1C7Av3sHKsztwb89HKaX85W+Auh/4oYg0Ap7KpcYYM+jerS688EJuvfVWbr31VhoaGti0aRPf+973OH/eVQ3qzJkzvPnmm7z55ptERERw2WWXWSWYJk6c2G97Id67A3tS9f1Z5K2UUj3l70LdgbvPRS/ExMSwYMEC0tPTOX/+PJmZmdx8880UFRWxadMmGhsb2bx5M5s3b+aZZ54hPT3dClZz5szpt1tpeAJTY2MjR44c0coVSqmA8HshjHuBba77x4JAF4jtj6Kjo7njjju44447qK2tZePGjRQUFFBcXMzx48epqKjg9ddf5/XXXycqKoqZM2da664yMzP7Ze/KM8R56tQp4uPjrfkqDVZKqd7yN838ceByYKX7qvtFZL4x5uGAtayfi4+P54orruCKK67AGMMnn3xiVWPfsmULTU1NbNiwgQ0bNvDEE08watQoq3c1a9asfrmdRm1tLbW1tZw6dYq4uDgNVkqpXvG3B5UHZBljWgFE5CVgG6AByg8iwrhx4xg3bhx33XUXTqeTDz/8kMLCQgoLCzl16hTHjx/n1Vdf5dVXXyU6OpqcnByrd9XfGGPaBCvvnpWmrSul/NWdWjcpwDn35eQAtGXQsNvtXH311Vx99dUYY9i3b58VrEpLS2lsbKSkpISSkhJ+8pOfWCWXnE4nDQ0N/Wr/J+/dgTVtXSnVHf4GqMeAbSKyFtfaplzgBwFr1SAiIkyaNIlJkybxrW99i6qqKtatW2ctFD579qy15fuxY8eYNWuWtX3IwoULGTVqVIjPwH/t11jZ7XZrQbAGK6VUe/5m8b0qIgW45qEEeMgYczKQDRuskpOTycvLIy8vj9bWVnbt2sU999xj7XNVV1fH2rVrWbt2LeCqKegJVjNmzOjx9iHBZozB4XDgcDiw2WxWsOrrrUGUUv1XV1u+TzLG7BWRGe6rjrm/jxSRkcaYrYFt3uBms9m49NJLGTZsGGfOnGHcuHF861vforCwkJKSEiorKzl48CAHDx7kxRdfJCEhoc32Ienp6aE+Bb+0trZSXV1NdXU1ERERVrCKi4vTYKXUINZVD+oBXHsyPe3jmAGu7PMWqQ5FRkZy3XXXcd1111nbhxQUFFBUVMSuXbuoqanhvffe47333gNg0qRJVrDKysrqF9trtLS0WAuCvYNVf8xq7Eu6SaQajDp9xzLGLHNf/JIxpt77mIjEBqxV7dhsNiIiImhp8bdO7cDn2T4kKyuL5cuXc+rUKYqLiykqKqKkpASn08nevXvZu3cvv/3tb0lKSrIK3C5YsIChQ4eG+hS65B2sIiMjrVJL/SlJpK/oJpFqMPL3I/V6YIYf1wVEdHQ0F198Mc3NzTQ0NNDQ0GAtEG1ubg5GE8Le8OHD+frXv87Xv/51mpqa2LZtm7V9yP79+6muriY/P5/8fFc5xalTp1pp7FOnTg37tUrNzc3WposxMTEkJyd3WL1CextKDQxdzUGNAEYBcSJyGZ9VJ08Cgj7mEhkZSWRkZJuCqS0tLdTX11NXV2cFrcG+AV9UVBQ5OTnk5OTw4IMPcuLEiTbbh9TW1rJz50527tzJL3/5S1JTU1mwYAELFy5k3rx5pKamhvoUOtXQ0MCpU6c6rF6hvQ2lBoauelBfBO7EtfPtM17XO4AfBqhN3RIREUFCQkKboOUJWLW1tdTV1Q36gHXBBRewdOlSli5datUH9PSuDh06xPnz51m9ejWrV6/GZrMxffp0a+7qkksuCevFte0XBGu1daUGjq7moF4CXhKRrxtj3ghSm3otNjaW2NhYqyfQ0NBgBavBnhUWHR3N3LlzmTt3Lg8//DBHjx61elcbNmygvr6ebdu2sW3bNp599lnS0tLa9K4SE8OzbrD3guCGhgaAQf/BRKn+zt91UG+IyJeBKUCs1/X/GaiG9aWYmBhiYmJITU211glFRkaSlJREfX29tX3EYDR69Ghr+5D6+no2bdpkVbU4evQop0+ftrYPiYyMZMaMGZw9exYI/+02mpqaOHTo0KBOrlCqP/O3WOxvcM05XQE8D9wIbApguwIuIiKCESNGAK5P2p5hQc9XuL/5BkJsbCy5ubnk5uby6KOPUlZWZgWrjz76iKamJjZt+uxl/+STT/jRj35Ebm4uc+bMCepmiv7yTq6Ijo62tgbxlI9SSoUvf7P45hpjponIx8aY/xCRp4E3A9mwYLLZbMTHx1trbYwxbYYFB+M8logwduxYxo4dy5133klNTQ0bNmygsLCQN954g+bmZpqbm1m1ahWrVq0iKiqKyy+/3Jq7Gjt2bNgNpzY2NnLmzBnOnDlDXFwcycnJWsBWqTDmb4Cqc3+vFZGRwFlgbGCaFHoiYs1jeXinttfX11vzHINFQkICV111FVdddRWlpaXs27ePtLQ0xo4dy9atW2lqamL9+vWsX7+exx57jAsvvNBKY8/JySEuLi7Up9CG54OHpyZgUlKSlllSKsz4G6DWiEgK8BSwFVcViecD1qow5JnHSk52FXJvbW21gla4ryHqa5438aFDh/LKK6/gcDhYv369lRl4+vRpjh07xsqVK1m5ciUxMTHMmjXLClijR48O8Rl8xrsmoFauUCq8+Jsk8V/ui2+IyBog1hhT1dl9RGQ08DIwAmgFVhhjnhORp4CvAI3AJ8A3jDGVPT2BULHZbMTFxREXF2eVEIqJiWH06NFtelmDIQEjMTGRL37xi3zxi1/EGMPevXvbbB/S0NBgZQr+13/9FxkZGVawuvzyy8OmwG37MkuJiYlWTUClVPD5myQRAXwZyPDcR0QwxjzTyd2age8aY7aKSCKwRUTeA94DfmCMaRaRJ3Bt2/FQL84hrHiClod3Aobne3+ez3I6nVRWuj5PVFZW4nQ6sdvt1nER4ZJLLuGSSy7hnnvuobKyss32IefOnaOsrIyysjJeeukl4uPjmT17tjV3NXLkyFCdWhstLS1UVlZSWVlJZGQkdrsdu92uBWyVCiJ/h/j+D6gHduDqDXXJGHMCOOG+7BCRPcAoY8zfvG62AVdG4IDVPgEDXJP1nuFBT+mm/lBncPPmzSxbtoza2loAKioqyM3NZcWKFWRnZ/u8T0pKCl/+8pf58pe/TGtrKzt37rSGAnfs2EFtbS0ffPABH3zwAQDjx49vs31IOGTbNTc3W8HKMwxot9t1zkqpAPM3QF1ojJnW0ycRkQzgMmBju0N3AYOuWFp0dDTR0dFtFr02NTW1qTPY0NAQVnUGnU4ny5Yto6amxrrOszh22bJlFBcXd5lmbrPZmDZtGtOmTeO+++7j7NmzbQrcVlVVceDAAQ4cOMALL7yA3W5n3rx55ObmsmDBgrDYPkSrrSsVPP4GqHdE5Jp2vR+/iIgdeANYboyp9rr+EVzDgCs7uN8yXFt9MGbMmO4+bb8TFRVFVFRUm+EyT3FczxxXKD+t5+fndzg02draSn5+PkuWLOnWYw4dOpQbbriBG264gebmZrZv3271rvbs2YPT6eTdd9/l3XffBWDy5MlW72r69OkhT07xVW3dbrcTGxurPSul+oC/AWoD8BcRsQFNuIrGGmNMp4XPRCQKV3BaaYx50+v6O4DFwFWmgxWxxpgVwAqA7Ozswbdqls+K43reiKOjo8nMzGyThFFfXx+U4cFPP/2Uuro6n8fq6uo4cuRIrx4/MjKSmTNnMnPmTL7zne9QUVHRpndVU1PD7t272b17N7/5zW9ISUmxele5ubkMGTKkV8/fW94Lgm02m1UfUtdZKdVz/gaop4E5wI6OAkp74voI+QKwxzuZQkSuxZUUsdAYU9vN9g563hP2Hp7hwfr6empra2loaOjzShgXXXQRcXFxPoNUXFxcn/dy09PTufHGG7nxxhtpampiy5YtVqLFgQNKk/LUAAAgAElEQVQHqKys5O233+btt99GRLj00kutRItQVwFpbW21Utc966wSExNJSEjQnpVS3eBvgDoA7PQ3OLnNA24HdohIqfu6HwI/B2KA99z/rBuMMfd043F7ZeLEiW2+DwTthwc9mYOeShj19fW9ftPOy8vj8ccf93nMZrORl5fXq8fvTFRUFLNnz2b27Nl8//vfp7y8nKKiIgoKCtiwYQN1dXV8/PHHfPzxx/ziF7+wepzV1dVUVlaSkpISsLZ1xXudlc1mazNnpcFKqc75G6BOAAUi8g5glVDoLM3cGFPCZ/tHecvvVgv7WH/cwK67QdVX6SbvOoM92TPLbrezYsUKK4vPGIOIEB8fz4oVK4Jah2/kyJHcfPPN3HzzzTQ0NLB582YKCgooKiqirKzMGvIsLy9nzpw5ZGVlWeuuJk2aFLLA0NraSnV1NdXV1W2CVTjWMFQqHIg/n6xF5N98XW+M+Y8+b5EP2dnZZvPmzcF4qh7Jyspi+/btTJ8+ndLS0q7vEAa8swU93/35W6ipqSEvL4+TJ08yYsQI8vPzw+oN9siRI9x2221UVFR41uq1OT58+HAr0WLu3LlthkpDxZ9Fwf3xb0wpABHZYozxvQ6lC/5WkghKIFLB4ynd5GGM8bk+q31PKyEhgZSUFE6ePElKSkpYBSdwZXympqZSUVHB+PHjefDBB62qFseOHePUqVP8+c9/5s9//rOVmOHpXV188cUh6V15LwrWdVZKfaarLd+fNcYsF5H/w1V/rw1jzHUBa1k/MhDmtUTEClreu9I2Njb22yK5NpvNCj7GGA4fPmwFq82bN9PU1MTGjRvZuHEjTz75JCNHjrR6V7Nnzw7J2ibv1HXPUG24fQhQKli66kG94v7+s0A3pD/rj/Na/vIsKvYELWOMVd3BZrP5HEYLRyJCZmYmmZmZfOMb38DpdLJhwwZr3dXJkycpLy/ntdde47XXXiMqKopZs2ZZASsjIyPobW5tbcXpdOJ0Oq0PBi0tLTQ1NYVFhQ2lAq2rLd+3uC9mGWOe8z4mIvcDhYFqmApPImKt64mKimLcuHHU1tZaX/2lh2W321m0aBGLFi3CGMP+/fspLCykqKjI2j6kpKSEkpISfvrTnzJmzBgrjT0nJ6fNVizB1NzczOHDh4mJicFut5OQkBCytigVaP5m8d0BPNfuujt9XKcGGRGxFqWC6xO+90aP/SFgiQgTJ05k4sSJLFu2jOrq6jYFbs+cOcORI0d45ZVXeOWVV4iNjbW2D8nNzQ3J9iGeOcKzZ89aa+MSEhJ03koNKF3NQd0C/AMwVkRWex1KwrVpoVJteGekwWcBq7a2lpqamrCqL9iRpKQkvvSlL/GlL32J1tZW9uzZY/Wutm/fTn19vTWXBZCZmWnNdc2cOTPo24d4F7P1rmKRkJAQ8nJQSvVGVz2o9bjWQA3DVU3CwwF8HKhGqYGjfcBqbGykrq7O6mWFe8Cy2WxMmTKFKVOmcO+993L+/HnWrVtHYWEhxcXFnD9/nkOHDnHo0CF+//vfEx8fz9y5c63e1YgRI4La3vZVLOLi4qysQE9NR6X6i67moD4FPhWRRUCdMaZVRCYAk3BtvaFUt3iSLjw7Ezc3N7fJEuzJIuJgSk1NZfHixSxevJiWlhZ27NhhJVrs3LmT2tpa3n//fd5//30AJkyYYPWusrKygprcYIyxeq+nTp0iNjbWKmirSRaqP/D3I1URsEBEUoG/A5uBpcCtgWqYGhx81Rb0rMfqyTxWVxsq9qWIiAiysrLIysriX//1Xzlz5gwlJSUUFBSwbt06qqur2b9/P/v37+d3v/sdiYmJbXpXaWlpAWlXRzwfAE6fPk1sbKxVyUKDlQpX/gYoMcbUisjdwC+MMU+KyLZANkwNXu33y2ppaWkzLNhRwOrJhop9adiwYW22DyktLbUSLfbs2YPD4WizfciUKVOsNPZp06YFdb7IE6zOnDlDdHS0lWSh29urcOJ3gBKRObh6THd3875K9Yp3dQX4LGB597AcDkevN1TsS5GRkWRnZ5Odnc0DDzxARUWFFazWrVtHTU0Nu3btYteuXfz6178mJSWF+fPns3DhQubPnx/U7UMaGxs5d+4c586d00oWKqz4G2SWAz8A/mKM2SUimcDawDVLqY61D1jGGH71q191uGC4pxsq9qX09HSWLFnCkiVLaGxsZOvWrVYm4CeffEJlZSVr1qxhzZo1iAjTp0+3eleTJ08OWjt9VbLwfAU7O1Epf2vxFQKFIpLg/vkQ8K+BbJhS/hIRjhw5Yg3ttVdXV8fx48eD3KqORUdHW9uHPPTQQxw7dszKCvzwww+pr6+ntLSU0tJSfv7znzN06FCrZ3ju3LmAzqt5865kAZ/NF3ZW1FapvuRXgHIP770A2IExIjId+JYx5t5ANk4pf40fP56EhIQ2Q3weCQkJzJw5k/Hjx1tzL575rHDIGLzwwgu59dZbufXWW2loaGDTpk1W7+rIkSOcPfvZksNTp05x+eWXc+ONN3LrrbcyceLEoA3Dea+38k5uCUXNQjU4+LvdxkbgRmC1MeYy93U7jTFTA9w+IPy32xhswnHrB4fDwahRo3A4HJ87lpiYSHl5uc9eR319fZt9ssJpXZbT6WT+/Pk+dzH2SE9Pt7IC58yZE5LtQ3TeSnUm4NttABhjjrb7w2vpyRMqFQiJiYnk5+eTl5dHTU0Nra2tVlWF/Pz8Dt+4Y2NjiY2NJTU1FYCmpiarl+VJwAhVMdz8/I739vQU6a2oqOBPf/oTf/rTn4iKimqzfUhmZmZQgkX7eauEhAQrWGklC9Ub/gaooyIyFzAiEo1r/mlP4JqlVPfNnz+f8vJyJk+ezNGjRxk1ahS7d+/uVq8iKiqKqKgoK8XdGGOtyfIErWD1sj799NMOe0/GGJYsWUJmZiYFBQVWgdsNGzawYcMGnnjiCUaNGmX1rmbPnh2UeSPvShbgmm+Li4sjPj6euLg4rWahusXfv5Z7cBWGHQUcA/4GfDtQjVKqp+x2O0OGDOHo0aMMGTKk10NeImL1sjyamprarMtqamrqbbN9uuiii4iLi/MZpOLi4pg+fTpLlizhrrvuwul08uGHH1o1AysqKjh+/Dh//OMf+eMf/0h0dLRV4HbhwoWMGTMmIG1ur7GxkcbGRqqqqgDXB4C4uDgraOkiYdUZv+agQk3noMJLOM5BeQt2+5qbmz+3LqsvOJ1OcnNzO0z86GhtlzGGffv2WYkWpaWltLS0HZHPyMggNzfX2j7Ee3flYIqKirI2ZUxISND5qwEoKHNQXk+21RgzoydPptRAFBkZ+bkK7u0DVk8+CNrtdlasWGFVxzDGICLEx8ezYsWKDhceiwiTJk1i0qRJfOtb36KqqqrN9iFnz56lrKyMsrIyXn75ZeLi4pg9e7a17mrUqFG9+n10R1NT0+fWXXnmr3Q4UPXkL0A/4ijVCV8LiXua3p6dnU1xcTF5eXmcPHmS9PR08vPzu1UVIzk5mby8PPLy8mhtbWXXrl1WsNq+fTt1dXWsXbuWtWtda+/HjRtnBasZM2YEbYGur3VXcXFx1hBrTEyMtVmmGhx6EqDe9udGIjIaeBkYAbQCK4wxz4nIEGAVkAGUATcZY873oB1K9QuebS/i4uKsbMGGhgar0nhXASshIYGUlBROnjxJSkpKr0o22Ww2Lr30Ui699FK+/e1vc+7cOYqLiykqKqKkpITKykoOHjzIwYMHefHFF0lISGhT4DY9Pb3Hz91dzc3NbRIuoG3ShWYJDnxdBigRiQDeNcYsAjDGPOrnYzcD3zXGbBWRRGCLiLyHayfevxtjHheRh4GHgYd61Hql+qmYmBhiYmJITU21MgW9dyIO1gLiIUOGcP3113P99ddb24d45q527dpFTU0N7733Hu+99x4AkyZNsoJVVlZW0Ifh2iddxMTEWPNXWt1i4Onyr8sY0yIitSKSbIyp8veBjTEncG12iDHGISJ7cGUBXg98wX2zl4ACNECpQcxXpqAnpd0TtILBe/uQ+++/n1OnTlFSUkJhYSHr1q3D4XCwd+9e9u7dy29/+1uSkpKYN28eCxcuZMGCBQwbNiwo7fTW0NBAQ0ODVejWs+297iY8MPj78ace2OHuAVkpRcYYv+rxiUgGcBmwEUh3By+MMSdEZHgH91kGLAOClhKrVLhov4DYMw8UzDmY4cOH87WvfY2vfe1rNDU1sW3bNmtzxv3791NdXc0777zDO++8A8DUqVOtNPapU6cGPUC0tLRQXV1NdXU14PodenpX3sFf9R/+Bqi38XPuqT0RsQNvAMuNMdX+ppEaY1YAK8CVZt6T51ZqoPD830RFRXHxxRdb81e1tbUBW4flLSoqipycHHJycnjwwQc5ceKElWixfv16amtr2blzJzt37uSXv/wlqampLFiwgIULFzJv3jwr0AaTJzHl7NmzVoagd9KFprSHP3+rmb8kInHAGGPMPn8fXESicAWnlcaYN91XV4jIBe7e0wXAqW63WqlBLCIiok1ae7AWDnu74IILWLp0KUuXLqWxsZEtW7ZQUFBAUVERhw4d4vz586xevZrVq1djs9nabB9yySWXBD0br32GoIgQExNjpbVrDys8+VvN/CvAz4BoYKyIZAH/aYy5rpP7CK4K6HuMMc94HVoN3AE87v7+Vg/brkJk4sSJbb6r0PKUZ0pKSgICt3C4I9HR0cyZM4c5c+bwgx/8gKNHj1q9qw0bNlBfX8+2bdvYtm0bzz33HGlpaW16V55AG0zeqf+e+StPZmBcXJzufRUm/K1mvgW4Eijwqma+wxhzaSf3mQ8UAztwpZkD/BDXPNSfgDHAEWCJMeZcZ8+vlSRUd4R7pYue6M05tbS0UFNTY30Fc4uR+vr6NtuHHD16tM3xiIgIZsyYYfWuJkyYEBZDbxEREdbSgLi4OGJiYsKiXf1RMCpJNBtjqtq9QJ1GNmNMCR0v6r3Kz+dVSvVSREQESUlJJCUlYYyhrq4Oh8OB0+n8XAmkvhYbG2uVVHr00UcpKyuz6gVu2rSJpqYmPvroIz766COefvppLrjgAuv2c+bM6dWar95oaWlpMyRos9msuStP0NJFw4Hnb4DaKSL/AESIyHhc1czXB65ZSqlA8JRKio+PJz093Zq7qq2tpb6+PqBbi4gIY8eOZezYsdx5553U1NSwceNGK2CVl5dz4sQJVq1axapVq4iKiuLyyy+30tiDtX2IL62trdbvycMTrDy/T+1h9T1/A9S/AI8ADcAfgXeBHweqUUqp4PD0BoYOHUpra2ubgBXouauEhASuvPJKrrzySowxHDx40Epj37JlC01NTaxfv57169fz2GOPceGFF1pp7Dk5OSFfmOuZwzp//ry1ls2zDkuTLvqGvwFqojHmEVxBSik1AHk2G/QMqwVz7kpEGD9+POPHj+fuu+/G4XBY24cUFhZy+vRpjh07xsqVK1m5ciUxMTHk5OQEffuQjniGTj2Lqr0XX3tS27X4bff5+xt7xp0S/jrwmjFmVwDbpJQKA77mrmpqanA6nX2ayr58+XIOHz7M2LFjefbZZwHXDsnXXHMN11xzDcYY9uzZY/WuSktLaWhooLi4mOLiYn784x+TkZFhBavLL7885Fl43gHr/HlXqVFP8VvvxAvVOX/XQV0hIiOAm4AVIpIErDLG6DCfUoOA99xVWloaDQ0NOJ1OHA4HjY2NvXrsw4cPs3fv3k6fe/LkyUyePJl77rmHyspKSkpKrFT28+fPW9uHvPTSS8THxzN79myrZuDIkSN71b6+0r74rc1maxOwdPHw5/nd5zTGnAR+LiJrge8DP0LnoZQalDzFbocOHUpjYyMOh4Oamhrq6+sD/twpKSksXryYxYsX09rays6dO63e1Y4dO6itreWDDz7ggw8+AGDChAlWZuCMGTPCZhff1tZWa/gUPhsW9A5agz1T0N+FupcAS4ElwBngNeC7AWyXUqqfiI6OZujQoQwdOpSWlhZqa2upqamhtraW5ubmgD63zWZj2rRpTJs2jfvuu4+zZ89aQ3/FxcVUVVWxf/9+9u/fz/PPP4/dbmfevHlWwBo+3Gcp0JBoP48Fn1Vr9ywgHmw9LH97UL8HXgWuNsaUB7A9Sql+rH0ZpsbGRmvuqra2NuCLhIcOHcoNN9zADTfcQHNzMx9//LGVxr57926cTifvvvsu7777LgCTJ0+2FglPnz497Cqge1dr9wwJeoZaB8Mclr8B6grgYiBVRM4ZYwLfj1dK9XvR0dFER0eTnJyMMcbqXdXU1AS8ZmBkZCQzZsxgxowZfOc736GiosLanHHdunU4nU52797N7t27+c1vfkNKSkqb3tWQIUMC2r7uaj8k6NlexG63Ex8fPyCHAzsNUCISCfwU+AauskQ24EIR+T3wiDEm8FUplVIDgoi0SWNvamqitrY2aG+s6enp3Hjjjdx44400NTWxdetWK9Fi//79VFZW8vbbb/P2228jIlx66aVWosXUqVPDLgB4by/iSWKx2+0kJCQMmJT2rs7iKSARyDTGOADcGXw/c3/dH9jmKaUGqqioKJKTk62kBc/PwSjBFBUVxaxZs5g1axbf+973KC8vt4YCP/zwQ+rq6vj444/5+OOP+cUvfsGQIUPaFLhNSUkJaPu6yxjTpnflmbvyrMXqrwGrq1YvBiYYr/on7j2d/hnYiwYoFYa02nr/ZLPZSE9Pt0owed5wA13RAmDkyJHccsst3HLLLTQ2NvLRRx9Zi4TLyso4d+4cb731Fm+99RY2m42srCxr3dWkSZPCLnnBM3flERkZaQWr2NhYYmJiwm6+zZdOq5mLyH5jzITuHutrWs1cDXYDsUK7R1fn1tTUZC0QrqurC2i9QF+OHDli9a42btz4uYCZlpZmJVrMnTs3JNuH9ER0dHSblPZApd8Hspr5bhH5R2PMy+2e8DZcPSillAqoqKgoUlJSSElJaZPGXlNTE/ChQIAxY8Zw++23c/vtt1NXV9dm+5Bjx45x+vRp3njjDd544w0rMcPTuxo3blzY9a48GhsbaWxspKqqCnD9nj1ZgoEMWN3RVYD6NvCmiNwFbMG1xcblQBzw1QC3TSml2mifxl5fX28Fq2AsEo6Li7OCjzGGw4cPU1RUREFBAZs3b6apqYlNmzaxadMmnnrqKUaOHGnNXc2ePTtk24f4o6mpiaamJqqrq4HPSjN5it+GIq290wBljDkOzBKRK4EpuPZ3escY8/dgNE4ppTrjmVPxLBKuqanB4XBQW1sb8KFAESEzM5PMzEzuvPNOnE4nGzZssKpanDx5kvLy8jbbh+Tk5FjDgRkZGWHbuwLfpZliYmKsYBUbGxvwmof+1uL7APggoC1RSqle8C5u69lw0BOsgsFut7No0SIWLVqEMYYDBw5YQ4Fbt26lqamJdevWsW7dOh577DHGjBljrbmaNWtW2G/R4dmOxbvShYhYZa88gasvdx/un7mHSg0ympnYPRERESQnJ5OcnExzc7MVrLzfXANJRJgwYQITJkzgm9/8JtXV1axfv57CwkKKi4s5ffo0R44c4Q9/+AN/+MMfiI2NZdasWda6q9GjRwelnb1ljLH2xfLMZXmClmd4sDc6zeILF5rFp9TAFcwMRc8cS3V1dcArWXSktbWVvXv3Wr2r7du3f64EVGZmpjXXNXPmzJBvH9JTUVFRZGZm9jiLTwOUUipkHA4HkydP5tixY1x44YXs3r07aGna3jUCg5Fg0ZHz58+zbt06K5W9srKyzfH4+Hjmzp1rzV2NGDEiRC3tPg1QSql+qaSkhLy8PGu3Xs+Ovvn5+cyfPz+obfHe7r6mpqbXe1z1VEtLCzt37rR6Vzt37vzcbSZMmGD1rrKyssIiHbwjYRugRORFXJUoThljprqvywJ+A8QCzcC9xphNXT2WBiilBhaHw8GoUaOsDDFviYmJlJeXY7fbQ9Ayl+bmZisjMBSLgz3OnDlDSUkJhYWFlJSUWCngHomJicybN4+FCxeyYMEC0tLSQtLOjoRzgMoFnMDLXgHqb8B/G2PeEZE84PvGmC909VgaoJQaWJ5//nmWL19u1Y7zlpCQwHPPPcfdd98dgpZ9nicj0Ol0BiV9vSPNzc2UlpZaaey+diGeMmWKNRQ4bdq0kJcz6m2AClgWnzGmSEQy2l8NJLkvJwO6t5RSg9CBAwd8BieAmpoaDh48GOQWdcw7I9CzZYjT6aSmpibgGzJ6i4yMJDs7m+zsbB544AEqKiqsauzr1q2jpqaGXbt2sWvXLn7961+TkpLC/Pnzyc3NZcGCBWG3fYg/gp1mvhx4V0R+hmvrjrkd3VBElgHLwFVqRCk1cIwfP56EhIQOe1Djxo0LQau61n7LkPr6eitYBaOorbf09HSWLFnCkiVLaGxsZOvWrVaixcGDB6msrGTNmjWsWbMGEWHatGlW72rKlClht32ILwFNknD3oNZ4DfH9HCg0xrwhIjcBy4wxi7p6HB3iU2pgCfc5qJ5obGy0hgJDmRUIcPz4cStYbdiw4XPrv4YOHWotEp4/fz5JSUksX76cw4cPM3bsWJ599tk+aUfYzkGBzwBVBaQYY4y4lhpXGWOSOnkIQAOUUgNROGXx9TXP4mDPvFUoNTQ08NFHH1FQUEBxcTFlZWVtjkdERHDZZZfx6aefcvr0aSZOnMjq1av75Ln7W4DaA/yzMaZARK4CnjTGzOzqcTRAKTUwOZ1OJk+ezNGjRxk9ejS7d+/udz2nrrS0tOBwOKiurg55zwqgrKzM6l1t2rTpcyn1kZGRfPWrX2XhwoXMmTOnV69H2AYoEXkV+AIwDKgA/g3YBzyHa+6rHlea+ZauHksDlFID10De66q9xsZGq5JFMBMsOlJbW8vGjRspLCzk9ddf/1yboqKimDlzprXuKjMzs1t19sI2QPUlDVBKDVyDKUB5q62tpaqqCqfTGbLUdW/XXXcd+/btIy0tjczMTKvArbdRo0ZZiRazZs3qstZe2KaZK6WU6lh8fDzx8fG0trZavapQDgF6ekZDhw7l5Zdfxul08uGHH1rrrioqKjh+/Divvvoqr776KtHR0eTk5Fi9q4suuqjP26QBSimlQshms1k7Bjc0NFjzVaEeArTb7Vx99dVcffXVGGPYt2+ftTljaWkpjY2NlJSUUFJSwk9+8hMyMjKszRlzcnL6ZINDDVBKKRUmPPspDRs2jNraWhwOB06nMyhb23dGRJg0aRKTJk1i2bJlVFVVsW7dOoqLiyksLOTs2bOUlZVRVlbGK6+8QmxsLHPmzOGKK67o1fNqgFJKqTDkGQIcPnx4m2DVfmuOUEhOTiYvL4+8vDxaW1vZvXu3lRm4fft26uvrWbt2LWvXru3V82iAUkqpMOZdvcIYY20TEsqq695sNhtTp05l6tSpfPvb3+bcuXNtCty23z6kOzRAKaVUPyEiVs8qLS0trKpXeAwZMoTrrruO6667DpvNxvjx43v8WBqglFKqn4qOjmbIkCEMGTKE5uZmKxswHHpWQK+rqWuAUkqpASAyMtIKVnV1dVRXV4dFgkVvaIBSSqkBJi4ujri4ONLT0605K6fTGTY9K39pgFJKqQHME6yGDRsWlnNWndEApZRSg0T7OSuHw4HD4QjbYKUBSimlBqHIyEhSU1NJTU2lqamJyMjwCwfhv6WiUkqpgKqvr7fWKzmdTqKjo4mKigpxqzRAKaXUoFZSUsKoUaMoLy8HoLy8nGnTpnH8+HFGjx5NSkpKr9PFeyr8+nRKqUFl4sSJbb6r4HE4HOTl5eFwOKzrWltbrevLy8sZPnw4aWlp1NbWWqnrwdoeRAOUUiqkVq1aFeomDFqrVq3qsLZfa2srq1at4u67725Tbqm1tRWn04nD4aC2tjagwUoDlFJKDVIHDhygpqbG57GamhoOHjz4uettNhtJSUkkJSVZ29k7HA7q6ur6vH0aoJRSapAaP348CQkJPoNUQkIC48aN6/T+ERER1l5WTU1N1l5WfbUgWJMklFJqkFq6dCk2m+8wYLPZWLp0qd+PFRUVxZAhQ8jIyOCiiy4iNTW116nrGqCUUmqQSkxMJD8/n8TERCtQ2Ww263q73d6jx42JiSEtLY3Ro0f3qn0aoJRSahCbP38+5eXljBo1CsBKOZ8/f36IWxbAACUiL4rIKRHZ2e76fxGRfSKyS0SeDNTzK6WU8o/dbmfIkCGAaz+nnvac+loge1D/A1zrfYWIXAFcD0wzxkwBfhbA51dKKdWPBSxAGWOKgHPtrv5n4HFjTIP7NqcC9fxKKaX6t2DPQU0AFojIRhEpFJHLg/z8Siml+olgr4OKBFKB2cDlwJ9EJNP4WIosIsuAZQBjxowJaiOVUkqFXrB7UMeAN43LJqAVGObrhsaYFcaYbGNMdlpaWlAbqZRSKvSCHaD+F7gSQEQmANHAmSC3QSmlVD8QsCE+EXkV+AIwTESOAf8GvAi86E49bwTu8DW8p5RSSgUsQBljbung0G2Bek6llFIDh1aSUEopFZY0QCmllApLGqCUUkqFJQ1QSimlwpIGKKWUUmFJd9RVSinFxIkT23wPBxqglFJKsWrVqlA34XN0iE8ppVRY0gCllFIqLGmAUkopFZY0QCmllApLGqCUUkqFJQ1QSimlwpIGKKWUUmFJ+sN2TCJyGvi0jx5uGANjk8SBcB4D4RxgYJyHnkP4GAjn4X0OFxljerQter8IUH1JRDYbY7JD3Y7eGgjnMRDOAQbGeeg5hI+BcB59dQ46xKeUUiosaYBSSikVlgZjgFoR6gb0kYFwHgPhHGBgnIeeQ/gYCOfRJ+cw6OaglFJK9Q+DsQellFKqH9AApZRSKiwNyAAlIqNFZK2I7BGRXSJyv4/bfEFEqkSk1P31o1C0tTMiUiYiO9zt2+zjuIjIz0XkoIh8LCIzQtHOzojIRK/fcamIVIvI8na3CcvXQkReFJFTIrLT62Hb2XwAAAjZSURBVLohIvKeiBxwf0/t4L53uG9zQETuCF6rP9cOX+fwlIjsdf/N/EVEUjq4b6d/f8HSwTn8u4gc9/qbyevgvteKyD73/8jDwWu1z7b4Oo9VXudQJiKlHdw3XF4Ln++tAfu/MMYMuC/gAmCG+3IisB+Y3O42XwDWhLqtXZxHGTCsk+N5wDuAALOBjaFucxfnEwGcxLVwL+xfCyAXmAHs9LruSeBh9+WHgSd83G8IcMj9PdV9OTWMzuEaINJ9+Qlf52D8+PsL8Tn8O/CgH39vnwCZQDSwvf37QKjPo93xp4Efhflr4fO9NVD/FwOyB2WMOWGM2eq+7AD2AKNC26qAuB542bhsAFJE5IJQN6oTVwGfGGP6qipIQBljioBz7a6+HnjJffkl4AYfd/0i8J4x5pwx5jzwHnBtwBraCV/nYIz5mzGm2f3jBuDCoDesGzp4HfyRAxw0xhwyxjQCr+F6/UKis/MQEQFuAl4NaqO6qZP31oD8XwzIAOVNRDKAy4CNPg7PEZHtIvKOiEwJasP8Y4C/icgWEVnm4/go4KjXz8cI70B8Mx3/A4b7a+GRbow5Aa5/VmC4j9v0p9flLly9cF+6+vsLtfvcw5QvdjCk1J9ehwVAhTHmQAfHw+61aPfeGpD/iwEdoETEDrwBLDfGVLc7vBXXUNN04BfA/wa7fX6YZ4yZAXwJ+LaI5LY7Lj7uE5brBkQkGrgOeN3H4f7wWnRHv3hdROQRoBlY2cFNuvr7C6VfAxcDWcAJXMNj7fWL18HtFjrvPYXVa9HFe2uHd/NxXaevx4ANUCIShesXuNIY82b748aYamOM0305H4gSkWFBbmanjDHl7u+ngL/gGrLwdgwY7fXzhUB5cFrXbV8CthpjKtof6A+vhZcKzzCq+/spH7cJ+9fFPUG9GLjVuCcI2vPj7y9kjDEVxpgWY0wr8Dt8ty3sXwcAEYkEvgas6ug24fRadPDeGpD/iwEZoNzjuS8Ae4wxz3RwmxHu2yEiObh+F2eD18rOiUiCiCR6LuOa2N7Z7margX90Z/PNBqo83eww1OEnxHB/LdpZDXiyj+4A3vJxm3eBa0Qk1T30dI37urAgItcCDwHXGWNqO7iNP39/IdNurvWr+G7bR8B4ERnr7sHfjOv1CzeLgL3GmGO+DobTa9HJe2tg/i9CnRUSiC9gPq6u48dAqfsrD7gHuMd9m/uAXbgyezYAc0Pd7nbnkOlu23Z3Ox9xX+99DgL8Elem0g4gO9Tt7uBc4nEFnGSv68L+tcAVUE8ATbg+/d0NDAX+Dhxwfx/ivm028LzXfe8CDrq/vhFm53AQ11yA53/jN+7bjgTyO/v7C6NzeMX9N/8xrjfHC9qfg/vnPFyZZp+E8hw6Og/39f/j+V/wum24vhYdvbcG5P9CSx0ppZQKSwNyiE8ppVT/pwFKKaVUWNIApZRSKixpgFJKKRWWNEAppZQKSxqgVL8kIl8VESMik/y47Z0iMrIXz/UFEVnTwfVVIrLNXTG7SEQWex2/R/7/9u42NKs6jOP496dlGZlmhURZBpUVJS5nT6ZkSRAhGElmkUkU9SIGUkkPBPYcESxJcC9Gz4FRihWGSENDEyJbLvMpyHzTm5wiGNVM/fXi/7/p7Pae9+5t0W52fWBwds59zrnOYeza/+x/rktaUOW4N/Q1rv6S1CCpNS8vkfR4H48zIl/7SQMbYRjqIkGFejUf2ER6+bKahaT3Sv4LG2032J4INAHLJN0CYLvF9nsn2Pcm4H9LUMDTpNJS/eJUiLUNmNfviEIoiAQV6k6uAzaN9MLm3WXbFue+OR2SXpU0l/Sy4Ie5l87I3Fvn7Pz5Rkkb8vI1kjbnEdFmSRNricv2VuB50ovH3UYlkpok7cjFTVfkQpuPAItyXNMlzZb0TT7/l5LGFY7zlqQNkvZIaipc74J8zA5J7+d150haKenb/DWtwj0cBUyy3VFh20NKRXtH5nM25xHSTklTJa1S6ufzYmG31cC9tdyvEKqJIXmoR3OAtbZ/knRA0tW22yXdlrdda/sPSWNtH5D0KKl30BaAXFWpkl3ADNtHJM0CXgburDG2duCJCuufBC6y3SVpjO2DklqA322/nuM6E7jOtiU9CCwGHsv7XwbMJPXg2S1pOXAp8AypkGinpLH5s0uBZtubJF1AKidzeVk8jVQol5Pv1a3AnBwrwGHbM5Sa030KTCG1jfhZUrPt/flYU2u8VyGcUCSoUI/mA2/k5RX5+3ZSTbO3nevL2a61h9Bo4F1Jl5DKuZzch9h6yn4/kEZxq+m5Wvv5wEe5ztwI4JfCtjW2u4AuSb8B44CbgU9sd0K3650FXFFIxGdIGuXUv6fkXGBf2fnvI5XgmWP778L6Uv26bcB253qPkvaQin/ut31U0uEK5wmhz+IRX6grks4i/WJulbSXNFqZl4tYit61UzjCvz/7pxbWvwCst30lMLtsW281kJq4lbudVDdxCvBdDxMK3gSW2b4KeLjs/F2F5aOkPy57ut5hwPW2J+ev8yokjT85/vp+BCZwfAPD0rmPlcVxjO5/5J4C/FUhnhD6JBJUqDdzSV2EL7Q9wfZ40kjjRmAd8ICk0wAKj7wOkR6NlewlJQro/ghvNPBrXl5Ya2CSJgHPkhJRcf0wYLzt9aTHdmOA0yvEVTz//VTXBtyVk3bxeteR/w+W10+usO9O4OKydd+TEuNntc56zDHsKxt5hdAvkaBCvZlP6odTtBK4x/Za0uOoLZK2AqVp0+8ALaVJEsBzwFJJG0mjkZLXgFckfQ0M72U800vTzEmJqcl2W9lnhgMfSNpGSgLNtg8CnwN3lCZJAEuAj3NcndVObHs78BLwlaQOoNT+oAlozJMndpAmY5TvuwsYnSdLFNdvIt23NaqtJ9dM4IsaPh9CVVHNPIQhStIi4JDt1gE41irgKdu7+x9ZCEmMoEIYupbT/X9KfaLUDHB1JKcw0GIEFUIIYVCKEVQIIYRBKRJUCCGEQSkSVAghhEEpElQIIYRBKRJUCCGEQekfD8AS9erFljkAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "x, y = pd.Series(actual_distances, name=\"Actual Distance (km)\"), pd.Series(triangle_approximations, name=\"Over-estimation (%)\")\n", + "sns.regplot(x=x, y=y, color='black', x_bins=8)\n", + "\n", + "plt.title('Distance approximation error')\n", + "plt.tight_layout()\n", + "plt.savefig('overestimation_2.svg')" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAagAAAEYCAYAAAAJeGK1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJztnXl4VeW1/z+LMcxJMCoODMapopd4g1MdrlqrgrZ6C1RpUDS0VvA6xREsFYsFq22cWlGv4HCLVFuKc2ttHLi9WtvQ0jrVn4lxQGbIQBgDrN8fe+/jPpt9puQcskPW53nOk3Pe/e53r71Pzvvda73rfbeoKoZhGIYRNbq0twGGYRiGEYYJlGEYhhFJTKAMwzCMSGICZRiGYUQSEyjDMAwjkphAGYZhGJHEBMrIKSLyoIhMb2879mREZLCINItI1910vN+JyMTdcSyjcyM2D8poLSLyCbAPsB3YAbwPPAE8rKo7W9HWd1X1j1k202gDIjIDOFhVJ7S3LUbnwzwoo618Q1X7AUOAO4CbgLnta1LHQ0S6tbcNHYmw65XpNbRrHn1MoIysoKqNqvoccAEwUUSOBBCRx0Tkdvf9XiLygog0iMh6EflfEekiIv8DDAaed0NVN7r1fy0iK0WkUUQWi8hw73huu78QkRdFZIOIvC0ixb7tw0XkFfc4q0RkmlveRURuFpFaEVknIk+LSGHYOYlIgWvvGhGpd98f4Nv+uojMFpG/uDY+67UlIkNFREXkMhFZLiIrROQ6374zROQ3IvJLEWkCLhGRniJyj1t/ufu+p1v/JhH5s9epishkEXlPRPJ8x+rms+t2EXnTvZ7Pi8hAEZkvIk0i8lcRGeqz5V4R+dzdtkRETnbLzwamARe47fzD1/53fdfzByLyqYisFpEnRGRA4BpMFJHPRGStiNyS6H/IPf+funVXueHhXu62U0VkmXsdVgKPhpW5db8nIjXud/+ciOznO4aKyBUi8hHwUSJbjGhgAmVkFVX9C7AMODlk83XutiKc0OA0Zxe9CPgMxxvrq6p3uvV/BxwC7A38DZgfaG88cBtQANQAPwYQkX7AH4HfA/sBBwNV7j5XAecD/+Fuqwd+keB0uuB0ekNwBHQz8PNAnYuBcret7cB9ge2nuedwJnCziJzh23Ye8Bsg3z23W4DjgRJgBHAs8AO37l3ANuAHInIIMAuYoKpbEth+IXARsD9QDLzlnksh8AFwq6/uX91jFgJPAr8WkTxV/b17nKfc72VEyHEucV+nAQcBfUOu0UnAYcDXgB+KyFcS2PwT4FDXloNd23/o276va+MQ4LKwMhE5HZgNfBsYBHwK/CpwnPOB44AjEthhRAVVtZe9WvUCPgHOCCn/M3CL+/4x4Hb3/Y+AZ3HGNNJqy7c9H1BggK/dR3zbRwP/ct+PB/6eoJ0PgK/5Pg8CWoBuaZxvCVDv+/w6cIfv8xE4ItIVGOrae7hv+53AXPf9DGBxoP1aYLTv81nAJ77PQ4H17jlMDZSrdw6uXbf4tv8M+J3v8zeApUnOsx4Y4bPzl4Htr+OMF4Ij/FN82w7zrqfPrgN82/8CXBhyTAE2AsW+shOAOvf9qe61zfNtDyubC9zp+9zXtWeo+1mB09v7t2Ov9F7mQRm5YH+cjjTIXTiezh9E5GMRuTlRAyLSVUTucENxTTgCBrCXr9pK3/tNOJ0RwIE4nX0YQ4BF4oQZG3A6+x04Hl3Qht4i8pAbvmoCFgP5Ep8t97nv/adA94CNwe37JdiGu+3TRPVV9RPgNZyOP5HX57HK935zyGfvWiEi14nIB26YsgEYEDiHZITZ3I3465noe/JTBPQGlvi+m9+75R5rdFePMVgWZ4+qNgPrcP4nPYLX3YgoJlBGVhGRY3A6gz8Ft6nqBlW9TlUPwrmLrxCRr3mbA9W/gxMCOwOnwxzqHSINMz7HCWsl2jZKVfN9rzxV/SKk7nU4HsFxqtofOCXEhgN97wfj3K2vTbJ9ue9z8JyX4whoaH0RGY3jVVThiH2bccebbsIJiRWoaj7QyJfnmCrNN8zm7cQLYjqsxRHO4b7vZYCq+sUszJak11BE+gADgS+S7GNEFBMoIyuISH8RORcn3v9LVX0npM65InKwiAjQhOO57HA3r8IZw/DoB2zFufvtjTMWki4vAPuKyDXuwHs/ETnO3fYg8GMRGeLaVCQi5yVopx9Op9ngJj/cGlJngogcISK9cUKYv1HVHb7t011PbDhwKfBUErsX4IwxFYnIXjjjL7907dwLJ3z1XWAi8A1XsNpKPxxBWQN0E5EfAv1921cBQ0UkUV+xALhWRIaJSF++HLPanokR6kxL+G/gbhHZG0BE9heRszI7HZ4ELhWREjfBZBbwtut9Gh0MEyijrTwvIhtwPJNbgEqcjjiMQ3CSF5pxBu0fUNXX3W2zcTrnBhG5Hmc+1ac4d77v44xrpYWqbgC+juOlrcTJ1jrN3Xwv8BxOmHGD2+5xYe0A9wC9cO7u/4wTcgryPzjjYSuBPJwkDD9v4IQ1q4Cfquofkph+O1AN/BN4Bycx5HZ328PAs6r6kqquAyYBj4jIwCTtpcPLOMko/w/nem8hPgT2a/fvOhH5W8j+83CuwWKgzt3/ylbachPOtfqzG1L9I44HmzaqWgVMBxYCK3A86QtbaY/RzthEXcNoJSLyOo63+EjItqE4HXb3TL0JwzAczIMyDMMwIokJlGEYhhFJLMRnGIZhRBLzoAzDMIxI0qEXS9xrr7106NCh7W2GYRiGkQFLlixZq6pFqep1aIEaOnQo1dXV7W2GYRiGkQEi8mnqWhbiMwzDMCKKCZRhGIYRSUygDMMwjEhiAmUYhmFEEhMowzAMI5KYQBmGYRiRxATKMAzDiCQmUElYvz7sobCGYRjG7sAEKgHr169n1qxZJlKGYRjthAlUAgoLC5k2bRqFhYXtbYphGEanxAQqCSZOhmEY7YcJlGEYhhFJTKAMwzCMSJIzgRKRA0XkNRH5QETeE5Gr3fJCEXlFRD5y/xa45SIi94lIjYj8U0T+PVe2GYZhGNEnlx7UduA6Vf0KcDxwhYgcAdwMVKnqIUCV+xlgFHCI+7oMmJND2wzDMIyIkzOBUtUVqvo39/0G4ANgf+A84HG32uPA+e7784An1OHPQL6IDMqVfYZhGEa02S1jUCIyFDgaeBvYR1VXgCNiwN5utf2Bz327LXPLgm1dJiLVIlK9Zs2aXJptGIZhtCM5FygR6QssBK5R1aZkVUPKdJcC1YdVdaSqjiwqSvnE4N2OTew1DMPIDjkVKBHpjiNO81X1t27xKi905/5d7ZYvAw707X4AsDyX9mUbW33CMAwje+Qyi0+AucAHqlrp2/QcMNF9PxF41ld+sZvNdzzQ6IUCOwq2+oRhGEb26JbDtk8ELgLeEZGlbtk04A7gaRGZBHwGjHO3vQSMBmqATcClObQtZ5g4GYZhZIecCZSq/onwcSWAr4XUV+CKXNljGIZhdCxsJQnDMAwjkphAGYZhGJHEBMowDMOIJCZQhmEYRiQxgTIMwzAiiQmUYRiGEUlMoAzDMIxIYgJlGIZhRBITKMMwDCOSmEDlGFs41jAMo3WYQOUQW93cMAyj9ZhA5RBb3dwwDKP1mEDlGBMnwzCM1mECZRiGYUQSEyjDMAwjkphAtRFLgDAMw8gNJlBtwLL0DMMwcocJVBuwLD3DMIzcYQLVRkycDMMwcoMJlGEYhhFJTKAMwzCMSGICZRiGYUQSEyjDMAwjkphAGYZhGJHEBMowDMOIJCZQhmEYRiQxgWoFtnKEYRhG7jGByhBb3sgwDGP3YAKVIba8kWEYxu7BBKoVmDgZhmHkHhMowzAMI5KYQBmGYRiRxATKyAmWRGIYRlsxgTKyjmU6GoaRDUygjKxjmY6GYWQDEygjJ5g4GYbRVkygDMMwjEhiAmUYhmFEkm6pKojICcAE4GRgELAZeBd4Efilqjbm1ELDMAyjU5LUgxKR3wHfBV4GzsYRqCOAHwB5wLMi8s0E+84TkdUi8q6vbIaIfCEiS93XaN+2qSJSIyIfishZbT81wzAMoyOTyoO6SFXXBsqagb+5r5+JyF4J9n0M+DnwRKD8blX9qb9ARI4ALgSGA/sBfxSRQ1V1R+pTMAzDMPZEknpQIeKEiHxNRL4hIt0T1XHLFwPpToQ5D/iVqm5V1TqgBjg2zX0NwzCMPZCMkiRE5GfAGcDxwLOtPOZ/icg/3RBggVu2P/C5r84ytyzMhstEpFpEqtesWdNKEwzDMIyok2oM6qciMsBXNBiYhjMGNbgVx5sDFAMlwArgZ96hQupqWAOq+rCqjlTVkUVFRa0wwTAMw+gIpPKgFgFPiciVItIVZzzpz8BS4OFMD6aqq1R1h6ruBP6bL8N4y4ADfVUPAJZn2r5hGIax55BqDOr/VPVsoAH4vVt2nKqOUNX7Mj2YiAzyffxPnHR1gOeAC0Wkp4gMAw4B/pJp+4ZhGMaeQ6oQXzcROQdYhSMoR4vIcyLyb6kaFpEFwFvAYSKyTEQmAXeKyDsi8k/gNOBaAFV9D3gaeB9HCK+wDD7DMIzOjaiGDvU4G0VewAnn9QYGqupEEdkP+BGgqvq93WNmOCNHjtTq6ur2NMEwDMPIEBFZoqojU9VLNQ9qiKqeKyI9cMaeUNXlwHdFpCQLdnZ41q9fbwujGoZh5IBUSRIPi8hS4G2g0r9BVZfmzKoOgj33yDAMI3ckDfFFnSiE+MyDMgzDyIx0Q3ypkiR+4JtMG7b9dBE5tzUG7imYOBmGYeSGVGNQ7wAviMgWnLX31uAsEnsIzmTbPwKzcmqhYRiG0SlJKlCq+izOiuWHACfirGbeBPwSuExVN+feRMMwDKMzkvJ5UACq+hHwUY5tMQzDMIwY9kRdwzAMI5KYQBmGYRiRxATKMAzDiCRpjUGJSBHwPWCofx9VLc+NWYZhGEZnJy2Bwnk44f/ipJXbIq4dGJtYbBhGRyHdEF9vVb1JVZ9W1YXeK6eWGVnHlmYyDKMjka5AvSAio3NqiZFzCgsLmTZtmnlQhmF0CNIVqKtxV5QQkQ3uqymXhhm5wcTJMIyOQroTdfvl2hDDMAzD8JNukgQi8k3gFPfj66r6Qm5MMgzDMIw0Q3wicgdOmO9993W1W2YYhmEYOSFdD2o0UKKqOwFE5HHg78DNuTLMMAzD6NxkspJEvu/9gGwbsqdgKdyGYRjZIV2Bmg38XUQec72nJdhzoHbB5hkZhmFkj7Qf+S4ig4BjAAHeVtWVuTQsHaLwyPcgtlKDYRhGcrL1yPfD3b//jvOwwmXA58B+bpkRwMTJMAwjO6RKkqgALgN+FrJNgdOzbpFhGIZhkPqR75e5b0ep6hb/NhHJy5lVhmEYRqcn3SSJN9MsMwzDMIyskNSDEpF9gf2BXiJyNE6CBEB/oHeObTMMwzA6ManGoM4CLgEOACp95RuAaTmyyTAMwzBSjkE9DjwuImPs+U+GYRjG7iTd1cwXisg5wHAgz1f+o1wZZhiGYXRu0l0s9kHgAuBKnHGoccCQHNplGIZhdHLSzeL7qqpeDNSr6m3ACcCBuTMr+thyRoZhGLklXYHa7P7dJCL7AS3AsNyYFH1szT3DMIzck+7jNl4QkXzgLuBvOKtIPJIzqyJOYWEh06ZNs2WNDMMwcki6SRIz3bcLReQFIE9VG3NnVvQxcTIMw8gtaQmUiHQFzgGGevuICKpamWw/wzAMw2gt6Yb4nge2AO8AO3NnjmEYhmE4pCtQB6jqv+XUEsMwDMPwkW4W3+9E5MycWmIYhmEYPtIVqD8Di0Rks4g0icgGEWlKtoOIzBOR1SLyrq+sUEReEZGP3L8FbrmIyH0iUiMi/7SHIRpGtLApFUZ7kK5A/Qxncm5vVe2vqv1UtX+KfR4Dzg6U3QxUqeohQJX7GWAUcIj7ugyYk6Zduw37gRqdFZv3Z7QX6QrUR8C7qqrpNqyqi4Hgf/R5wOPu+8eB833lT6jDn4F8ERmU7rFyjf1Ajc6Mzfsz2ot0kyRWAK+LyO+ArV5hK9LM91HVFe6+K0Rkb7d8f+BzX71lbtmKYAMichmOl8XgwYMzPHzrsB+o0dmx/32jPUjXg6rDCcn1APr5XtlCQspCvTVVfVhVR6rqyKKioiyakBz/D9Q8KcMwjNyT7koSt2XpeKtEZJDrPQ0CVrvly4hffPYAYHmWjplVvHCfeVSGYRi5JakHJSL3uH+fF5Hngq9WHO85YKL7fiLwrK/8Yjeb73ig0QsFRg0L9xmGYeweUnlQ/+P+/WmmDYvIAuBUYC8RWQbcCtwBPC0ik4DPcJ4rBfASMBqoATYBl2Z6vN3JnihO69ev3yPPyzCMjkuqR74vcd+WqOq9/m0icjXwRpJ9xyfY9LWQugpckdxUI1dY2NIwjCiSbpLExJCyS7Joh9GOWNjSMIwoktSDEpHxwHeAYYExp/7AulwaZmSPdMJ3Jk6GYUSNVGNQb+LMRdoLZzUJjw3AP3NllJE9LHxnGEZHRdJZHEJE+gCbVXWniBwKHA78TlVbcm1gMkaOHKnV1dXtaUKHwBIgDMOIEiKyRFVHpqqX7hjUYiBPRPbHmbB7Kc5ae0YHwMTJMIyOSLoCJaq6CfgWcL+q/idwRO7MMgzDMDo7aQuUiJwAlAEvumXpruPX6Yna0khRs8cwDCOMdAXqGmAqsEhV3xORg4DXcmfWnkPUVkKPmj2GYRiJSCtJIlZZpI+qbsyhPRnRUZIkopakEDV7DMPoXGQ1SUJEThCR94EP3M8jROSBNtrYaYiaGHj2mBdlGEaUSTfEdw9wFu7kXFX9B3BKrowyco+F+ozdgf1/GW0hXYFCVT8PFO3Isi1GErL9Q7fljYxcYzdBRltJV6A+F5GvAioiPUTketxwn5Ee3o+0NT/WXP3QTZyMXGI3QUZbSVegLsdZbXx/nIcLlmCrj6eNJzC1tbWtEhr7oRsdFfufNdpCRll8UaOjZPHBl5lziTLo2jOzzrL6DMPYnWR7qSN/w39rnUmdm6AA+L2oTEN42Qz12TiBYRhRJWOBAiTrVnQSgqG+2tpaILMQXrYFxcKHhmFElYxDfCJyu6r+IEf2ZERHCvF5eOG02tpa5syZ0ypx6IghuY5os2EYuSFrIT4R6Soif/Q+R0WcOipeJ11cXNxqz6WjdfQWRjQMozWkFChV3QFsEpEBu8GeTkVHE5rWkm4Y0QTMMAw/6Y5BbQHeEZG5InKf98qlYVEn0860s3e+6YiTeVmGYfhJV6BeBKbjPLhwie/VKWlN1p11vsmxZA3DMIKknSQhIr2Awar6YW5NSp/2TJLwxCbdDjWYJGBJA4ZhdFayvZr5N4ClwO/dzyUi8lzbTOz4BL2iZB6SN0nXq2celWEYRnLSDfHNAI4FGgBUdSkwLEc2dQiCIan169czffr0hGvu+Zc5SiecZeJlGEZnJ12B2q6qjYGyjrtGUpZI9Fwlv4fkvebMmcPkyZNj+6QSpz3Rw9rTzscwjNySrkC9KyLfAbqKyCEicj/wZg7t6jB4YgIwc+ZMCgsLYx4SENs2bdo0iouL02pzT0wY2FNF1zCM3JFWkoSI9AZuAc50i14GblfVLTm0LSVRWUkiWcKDJUN8iV0LwzAg/SSJbmm2d5iq3oIjUp2SZJ1rsk53d3XIHaHzj7p9hmFEi3RDfJUi8i8RmSkiw3NqUQSJengq6vZ1ZOyaGkb7kZZAqeppwKnAGuBhEXlHRDrNmnxtWaonFx1csM09ccwqCpjwG0b7kvbjNlR1pareh/N03aXAD3NmVQRpzVI9bengEu2TqM3dKU6dpcM24TeM9iXdibpfEZEZIvIe8HOcDL4DcmpZRPDSxFORqDPzp5Znckz/nKp0jrO76GxehYmTYbQf6XpQjwL1wNdV9T9UdY6qrs6hXZHAE4pEYhEkuJTR9OnTqaysTOoNtYb27DTbWyBT0VmE0zA6A+mmmfcCinEm59a2d3q5Ry7TzL2suLA199LJmFu/fj319fUUFBSE1vU8kUSdfUfIyosaqa6pYRjRICtr8YlINxG5E/gMeBz4JfC5iNwpIt2zY2r08IexvIm3YduS7e95T4koLCzcJfznb9M62MyJunfXkTBP1IgCqUJ8dwGFwEGqWqqqR+N4UvnAT3NtXHuRqqMLbgtLWJg5c2ZsZYmwOt7yR8EFZGtrayPZOUTRpjBMnNpOZxtnNKJLKoE6F/ieqm7wClS1CZgMjM6lYe1NsKPzkiW8pYv85Ymy6vziFKwTFEHPo6qsrEx7zGt3YR1W58I8USMqJB2DEpH/p6qHZrptd5HNMahUyxV5YxsQLl6pxpHSHbfyiFrnYGNihmFki2w9D+p9Ebk4pPEJwL/aYNwn7mTfpSJS7ZYVisgrIvKR+7egte1nSioPwX9HGRayS+ZthYX2Etkwffr00PaiQBRtMnKLecxGe5NKoK4ArhCR10XkZyLyUxF5A7gKJ8zXFk5T1RKfit4MVKnqIUCV+3m3kCykkSiLL5Gg+cOAXpte2ZIlS7IeKsvmJOD2aseIHhbWNSKBqqZ8AacDV+II09fS2SdFe58AewXKPgQGue8HAR+maqe0tFRzybp16/S6667TdevWhW5Ltl+Qmpoave6667SmpiauLFgnE9uS2Zdsv0z3SdTOlClT2tyOEV3suzVyBVCt6WhFOpWy/QLqgL8BS4DL3LKGQJ36BPteBlQD1YMHD87BpYsnEyFKVNcTk6A4lZaWxsqCwpGqLa9upuKZzvZ0MIEyDKO1RF2g9nP/7g38AzglXYHyv3LtQSUjKCiehxQmWlOmTNHy8vJdOvSampq4z35xCraVjjAl2jdXmDgZhtEaIi1QcQbADOD6KIb4wkgmKH5vKLiPX1T8n4NhvzAPKh1hSmRjqvLWiEyUhSnKthmG4ZCuQKW9mnm2EJE+ItLPe4/zlN53geeAiW61icCzu9u2VAQHjoNzmIqLixPOefJe/vX9wFlMds6cObEJuv4VLPz7B7MIk5FsaaW2rrYe5cHzKNtmGEYrSEfFsvkCDsIJ6/0DeA+4xS0fiJO995H7tzBVW+3tQfnLEo0fBT2nYJlqfHgwzJvK1J5EddLxoLJ1zPYiyrYZhuFARwnxteXVnmNQQRJ1/t7YU6IxKn/dYCgvGP4L2ycs9JcoPJjOObRl/CrK4hBl2wyjs2EClSMyyZDzEiQ8kUkkNv4xKf/+VVVVKQUjkbAlE6y2nF8iUglwNo7RWnZn4ohhGKkxgcoSYYKTqKPzd9JhYb0wj8hrc8KECXFiVl1draWlpVpdXZ3UpkR2JjqXXHTU6Xh7ubYhneMahhEN0hWo3Z4k0ZHIZNDdW5188mRngY2wZAcvISLYXkVFBf3792fMmDGxhIkFCxbw0EMPkZ+fH2s/aFPYckvB9f/8tGUR0GRPFvbaLS4uTtmO34Z0kxkyTXqora0NPa5hGB2MdFQsqq/d7UGFfU60LZjskCgJwiuvrq7eJVXdm8zrbQsmWYSF8pKF+lpzvl7ZlClT4rzHtnok6dqX6XkEJ0AbhhE9sBBf7mhNp+qJhj+MF5wPFRbOSzW3KlH9dOwM1ksmBsGwZbaWS8pmPQ8TJ8OINukKlIX4MiRRiM1P2NNyvfdbt26lsrKS2tra2KKyXv0FCxbs0qYXNgtbrNZ77y/3hxDTCWsF514lCr/552AFQ4WtnXeUbtgt3XqeHemEGv31jcyxa2fsFtJRsai+2tODSra6QzIPw7+8UWvmIPmPnypjz1+WKl09+DlRMkg659ra82oLmXp1ltnXeuzaGW0FC/HlhrCwXaI1+IL1a2pq2jyOEzxeWFvB9+Xl5XrkkUeGZhAmstmzM9EYV7Jjp1qjMBcdW6KQZ7BOss9G7sKuhuHHBCoHhHkWYSnlHsG0c2/R2DAPLJMffDKRDEv5rqmp0fLy8l28t2RCkshLDO4f5pklq5OLu+9EwpmsTjptdjY6s2dkNy+7FxOoHBAUqDBh8G/zRMH7XFNTEzdp1y9ckyZNSip2Ybb4BcC/b5jX4nlvnkD62/BsSCQ2iTquYHZhIjuTlWUqzqmOk6yTtfBfajrrOQd/u531+99dmEBlmUTCEdbZrlvnpI2PGDEiJh6eCE2ZMkWrqqriUqE98fA/1DDZhGD/D6i6ulqnTJkSJxaJOv2wEGPweMlChWE2BLMMM/UEvfT1ZJ5Ysv1TlWfSRlDQc02uQp1G5pgHtXsxgcoSibyjYB3v76RJk2Lr71VVVcXKPe/JEyFvW1gbYUISPLZf+MrKymKdfDJbw4QreAy/UKV6IKF/36DApisM/muSygsM7h8WkgzalW4bqbzhbJOLu3S78zc6CiZQWSDYYasm90L8HXVVVVXsvf+BhVVVVUlDYzU1NTp27Ni4JY+8/f3iFvSWguM8wRBgsg4/KDSpBCpM5Ly63vkmSwbxC5n/PLzPwUnLyb4f//HDFuVtrQe1O8I9HaXNKB7T6NiYQGWBYCftffaP46jumgxRU1OjI0aM0LKysrjxoaqqKi0qKtKysjKtrq7exRtat26djhs3TvPy8rSqqiq2KoIndl4bI0aMiJvUu27dul3Glrz61dXVsdBiojBaIjFJVJYoazHozQRFUlVDV8zwX8Nk4hTmASY6fqI6rSEdke7otOXatFXA97RraaTGBCpLhHXEYas7hHkJYV5LdXV1zCvyxo6GDx8elyThD/8FV53wQnr+Djw43uX35DxBDVulwms3TKDCxC7RuXplQc/F71V54hO2AG7QCw27ln4vqTUdWjKPMN39g/aG/W+k20aUaKvIpPrfyOWxMzmOER06hUCNGDFCV69erWvXrtX6+nptbGzUDRs26MaNG3Xz5s26bds23b59u+7cuTOji5fqLj3R852CnkNYZxvWGU+aNEkXLVqU0AZ/O37h8485eR5ZMCTpeVGZLGEU9Aj94pmsMwoe02+L9/J7jsF9w5JDPG/UP4aXjETfXaLEk2Remb9OWLp8OqKV7vb2JpfCnatjZ9J+lK99Z6RTCFSPHj308MMP16OPPlpPPPFEPeOMM/Sb3/ymXnDBBXrppZfqFVdcoddff73+8Ic/1DvuuEPvv/9+nTdvnj799NP64osv6htvvKFLlizRDz/8UL8cL7eBAAAgAElEQVT44gtdv3691tXV6ZVXXqmfffaZbt68Wbdu3aqrVq3SNWvWJM1483sr3svvQfgJfl60aJHus88+Mc/C/4Pyj+n4hckTAH+nHeYN+QUsSNgPN+ix+edQ+T2YZF5EeXl5LAzpt3nSpElxCR3+fcLS4P3thY1teduTnY+/PDg3LBOvLGxsK9G1S0QiYc4Vu7PjD3reuThWe+6/u9vd0+kUAgVoNl/du3fX/v37a1FRkQ4bNkyHDx+uJSUluv/+++vpp5+u55xzjpaVlenFF1+s11xzjf7gBz/Q2bNn6+zZs/Wss87S2bNn669+9St94YUX9MEHH9RXXnlF33zzTS0pKdH33ntPW1padPXq1Tp58uS4FPPrrrsu1IMKy4rzd+RlZWWxTt8vbv52/e2EdSKJOniv8y4rK9MJEybEeUGJFrAN2h603xNu/5ia56F5IpRs7CkdryXR+6A4eWN76XhQYe0lu3aJ6oe1l6tswdbY09rj5MpDSXYzEAWiale2ycX5dQqB2n///XXq1Kl69dVX6/e+9z2dMGGCfutb39JRo0bpqaeeqscee6weeeSRWlxcrIMGDdL8/Hzt0aNHVkUt3VfPnj01Pz9f9957b+3bt68WFBToiBEj9MADD9STTz5ZDz74YP3Od76jV155pV599dV67bXX6oknnqi33HKLPvnkk/r888/ra6+9ptXV1THhW7x4sf7xj3/Uww8/PG4po7BUdv+P3Rv7ChsLCnbknnj4hS+dx1n4PTf/sf0C6xeuSZMmxQlasK10MwqDx0/UgQbnooW1megcEwlVuuGuMNHIRmeXzK5cd6bZtNsrC6500haS/Z/kot09hVz936QrUOLU7ZiMHDlS//KXv8ROZufOnbucYFjZtm3b2LhxY+y1YcMGNm7cyKZNm+LKN27cyPr169mxYwebNm2ioaGBd999l6KiIurq6igoKGD16tV0796dDRs2sH37dnbu3Lnbr0PPnj3Jy8ujd+/e9OnTh6amJgYOHMjnn3/OV7/6Vfbdd1/69OlDnz596Nq1K3/4wx/45JNP2LZtGz/60Y8oKSlh586dzJ07l+7du/PDH/6QAw44gI0bNyIiQPyK4rW1tRQXF+/yQEY/69evp76+nsrKSgBmzpwZa8fbNmfOHKZNmxbbp7CwkNraWiorK5k5c2bcqurTp0+PKws7rn8V9+CK7t4+/n2XLFlCaWnpLg95nDVrFuPHj+f73/8+Tz31VNzq6N52/6rvs2bNYvLkybusoh5mZ3D/VPXTxd9u8Lw9+woKCnLy4MZs2R12PTwS1WnLMZId2/iStny/iRCRJao6MmW9ji5Q1dXVOWs/+KOvr6+noKCA+vp6vvWtb/HII48wYMAADjroIKqqqpg6dSrXX389b7zxBmeeeSYFBQVs2rSJ5uZmPvnkE1577TVGjBhBXl4ey5cv55lnnuHMM89kx44dbNy4kc2bN/Phhx+Sn59PS0sLzc3NbN26lS1btrBp0yZ293clIjFh88SvT58+9OjRgz59+lBXV8cxxxxDnz59GDhwIH379qVLly707duXl19+mYsuuojevXuzfft2Bg0axNy5c7n55ps54IAD6N69e8IO3BMjIK5z9UjUEd9444307NmTioqKmPgl6pC8dsaPH8+CBQt2ecyIJ5ZBcQoTyNra2tDjJSKZwCYTrVQdhWd7sNPN1L5MyEYnn+x6hH3X2T6GidPuxwSqjfg7o/r6embNmsVf/vIXHnvsMYYNG0ZdXR1z5syhZ8+elJeXs2DBAkaPHs3pp5/Oq6++yo033shDDz3EnDlzmDp1KnPmzIl1huPHjwfgkksu4d5772XhwoVUVFRQXFwc553478xramrYb7/9aG5uZtmyZTQ3N9OtWzeam5upqqqKtV9cXMzatWv53e9+x9ChQ6mtreWggw5i06ZNtLS0UF9fz7Jly+jRo0fMM9yyZUtOrmEyunfvHid6vXv3pm/fvvTp0weA3r17M2jQIFpaWnjvvfc49dRTefPNN7nwwgtRVXr16sXLL7/M5MmTY+1UVlZyww03cOihhybsePyi43Xc3jVO1pGnc6efSUeXjsj5xdrvcaY6Tpg9QbFtjY2Z1MtWx9+aa2tEn3QFqtvuMKajEQyLzJkzhylTprB161Z+8pOfUFRURHl5OT179mTMmDHMmzcvJlJDhgxh/vz53HnnneTn5/N///d/NDQ0xDrBzz//nIkTJ3L88cczc+ZM5s+fz7Zt26isrIy14XVCkydPZtasWUyZMiUWbiooKGDu3LlxIbPi4mLOOussTj/9dMDpjNatW0deXh733HMPAJWVlVRUVDBr1ixaWlo45phjGDBgABUVFfzsZz/j8ssvZ/bs2XTt2pXx48fTtWtXHnjgAUaNGkXfvn1ZtWoVv/3tb2lubmb79u0cd9xxbN++nfr6ehobG9m5cydNTU18+umn7Ny5k+7du7N582a2bt0aeo1bWlpobGyksbExre/krbfeAuCNN96IK//Vr34V9/mRRx6hV69eMdHq3bs3PXv2ZMCAAfTo0YPPPvuM0tJSBg4cSNeuXenTpw8vvPACAH/4wx8477zzWLp0aUw4+/TpQ0tLC71792bq1Km72OUXlkT/S8HONShG3oMmgw+59PDEKdH2MIJhyEw9qLBQZqJ9k51f2PZMyWYYzjymjoV5UAkI63gWL17MjBkzqKys5KWXXuKkk07ilVdeoampiXvvvRdwOpPzzz+fESNGcO211zJu3DhKS0vp378/ZWVlXHHFFRx11FHcdNNNzJs3j61btzJ16lQaGhpYsGBB3FhGbW0t559/Ps888wxAzLOaPn06FRUVVFZWMmbMGCoqKigtLeWuu+4CnPGaMWPGMGTIEAoKCrjxxhtRVe666y7q6+uZMWMGM2bMiI1JeD/a2trauLLvf//77L333rGxn9raWm699Vby8vKYOnUqBQUFTJ8+nS1btjBt2rTY54qKilg7q1evZtOmTXTv3p2NGzeyfPlyunXrxooVK9i4cSNr167l+eefZ9u2bZx00kmsX7+ejRs38tZbb3HooYfy/vvvs2PHDvLz89m8eTMtLS00NTWxZcsWduzYkZPvPhEiQteuXcnPz6dv37707NmTxsZGhgwZQv/+/SkoKIh5gn379kVEeOuttzjzzDMpKipi3333RVV56qmnuOiiizjiiCNiItjc3MzAgQOB8LBeJh2r9z3CrmNwiQgeJzieFxSJVGE57+YulbikG7bMRvjQxpyiQ7oeVLtn4rXltTuWOvL+Tpo0SYcPHx7LjPNWRaiqqtKysrK4dOWqqiqdNGmSVlVV6Ve+8hX95je/qWVlZTpu3Dg9/PDDY5ltXlq1P7MumFIdNi/I29ebUxTcr6ysLLY6hTdfyr9wbaIJq/4MOm+CbDALL7hyut8O/+TjZMsW+TP3/HO5/Onf3rE924PrEa5du1aXL1+uU6ZM0cWLF+uFF16oTzzxhL7++uv64osv6lNPPaX33XefnnTSSVpSUqIVFRV62WWX6bhx4/Swww7TM888U0888UQ9+uijdeDAgTp48GDde++9tU+fPioiuz3Ls2vXrtqvXz8tKirSAQMG6Fe+8hU99thj9eSTT9Zzzz1Xv/3tb2t5ebleeeWVevPNN+vtt9+ud999tz788MP60EMP6bPPPqtVVVW6cOFCPeKII/T555/XK664QletWpX0fzv43Qf/JqufTmZcsjlS6bTTlgyyRJPpW8Oenq23u6GzZPFl24NKNnYxa9Ys7rrrrpg34TFmzBgqKytjY0mVlZUsW7aMoqIivvOd77Bw4ULGjBnDwoULKS8vJz8/n8rKSpqamujRowfTpk3j1ltvBZyMPBGhZ8+esbEHz6Py351WVlbGeS7w5aB/fn4+DQ0NseOMGTOGG2+8MZaRFna3XFhYyDPPPMOf/vQnJk+eHDs3z7MLC2H5s+6C4cklS5bEhT7DxlYqKipibXneqne+nhdQV1cXG9/zrq8/G827w040RuPZ530vQFwb3hij/xr/+Mc/5tprr41ldt57772ceuqpLFq0iP/4j//g97//PS0tLZxxxhmoasxL3L59OytXruTDDz9k0KBBbNy4kc8//5yePXvGwp3tNd7Xp0+fWOizZ8+e1NfXc/DBBzNgwAB69+5N165dGThwICLCXnvtxZYtW/jrX//KmDFj4rJA+/TpQ79+/di2bRsHHnggXbt2paGhIbav//369etj39/kyZMTJq6k49llSrLsyta2ZZ5X9rAkiVYQljUUFm6pra2NCU5xcXGsM162bBmPPvoodXV1XHLJJRQXFzN9+nTy8/NjYwiffvppTKjuvvtuNmzYwNVXX82cOXPIy8tjxowZALFswcrKSr7+9a9z/vnnA8R13Pn5+XFhlLq6OiZNmsRRRx1F//79GTNmDE8++SR33nlnrBP2n4PXcc+ZM4fRo0fz7W9/m0ceeYSFCxfyzjvvxLbPnTuXYcOGxYmj18n7wzn19fUx26dPnx4LXwbTm/3pw9OnT6exsZHbbrttF/G86qqrGDBgAF//+tf505/+xOjRo3nppZdi5+qliPuz/rzvLXgsf9jKO65ftIJp7V4d7ybBE2HvmH68G4Nhw4bF2vXOxcv89NoaMGBAbDrDF198ERfuBFi5ciUbN27k+eef59hjj6W5uZkdO3ZQX1/P0qVLOeCAA9i0aROffPIJffv2ZevWrbEM0JaWltb827eJnj17As717dWrF01NTQwdOpRevXrx8ccf09zczMknn8zgwYPp0qULhYWFcQkx3vvt27ez3377xcp79epFly5dEBFEJOH7RNsgubhlKnw2dpVdLEmiFRQWFsalIAfv+rwOrKCggNLS0th+w4YNY8yYMVx44YUsXryY888/n5kzZ3LTTTcxceJEnn32WUaPHk1DQwNjx47l5JNPJj8/n61bt/LGG2/w97//nV69enHMMccAxMRs9uzZfPHFF4wfP54XX3yRAQMGMG/ePNasWcP777/P8ccfz9SpU5k8eTJ1dXUMGzaMhQsXAvDpp59y1VVXMXjwYMARDX/W2uzZs2Np616HP3DgQA488EB69OgRE6WRI0cybNiwuGvT1NQUEymvbPr06axevZoPPviAZ599lpkzZ8YyHb2sRf94xujRoykpKaG8vJyJEycCxETpvvvuo66ujnfffTc2XnbdddfFPKi6ujrOOeccXnzxRfLz8wFi5x82Ryk4WO95vwUFBbvMz/Lqe2ILjhe5detW5s2bx7Bhw2LlXl1vztRDDz0Ud6098SsvL4/t07VrV/r160e/fv3Yd999Wb9+PSNGjIjZ5f2/ffe7342zy/8/6l2rYIe5cuVK8vLyaGpqYsOGDXzwwQc88cQTtLS08I1vfAMRobm5mY0bN8b+eu83bdoU+tq8eTObN29OON7nJcGsWLEiVrZ27dq4Ol4SSiZ06dIlNrevd+/eMe8v+Nd7731WN8OzqKgolijTt2/fuIzRzZs38/Of/5yrrrqKwsLCmKg1NDTEffa/evToEZsXmEgc/a9MMPFLjHlQCQgbnPaHDfxJDd7EUi+JYu7cucybN4/GxkauvfZaAM455xwefPBBbrzxRo444gjmzZtHfX09b775JrNmzeIXv/gFJSUlcXOtvAy+n/zkJ1x++eWxO37PA2tsbGThwoWsWbOGV199lVGjRsWSOLZs2cLy5ct5++23+c1vfsOTTz4ZmyMExIXlvPBZY2Mj5eXlLFy4MC4xwh8OA7jhhhsoKyuL1QNHIB544AHWrl3Lo48+ChATomASx9KlS/n2t7/NqFGjuPTSS3n00Ue59957Y+VPP/00L730UkzELr30Uj7++GMOP/xw7rjjDoqLi3n11VcZMmRIzPurqKhg4cKFoeG/sLlQ48ePj91kBL9jz3bP4/WmDAwbNizmTfmFDeInL/v3B+JS2f0EE3GC3pffY4UvvbxE/69+cQ7ak2kHqO4k9507d7Jjxw7efPNNDj74YJYtW0aXLl1iArdixYo44fPCos3NzdTX18emMmzYsCH2v7R161Y2b94cE8DdTbdu3cjLy6NXr14xL6579+6sXbuWQw45hN69ezNgwIDYdr8AJhPHXr160a2bc88vIjQ2NtKlSxcKCgoSilpDQwP3338/11xzDYWFhQlFL5kHGazXETAPqo0kmtfh7zC8zt4bVzjllFMoLS1l2LBhsRCYdyf+4IMPcv7559O/f3+uuuoq6urqYmHBo446CnA6bq8z9DL8AGbPns2sWbM46qijKCkpoaSkhLq6uriO0/MgCgsLY+NcADfffDNDhgxBVXcRp2HDhjF69OhYOwCTJk1i7ty5sXOeNWsWIsLUqVNjXpOIMH/+fESE+vr6mDdWVlZGRUVFLJzodbyecHiiO23aNM4++2wuvfRSKioqOPLII6mrq2PhwoWcdtpplJSUxMRnyJAhFBUVMXbsWN54443YmNr8+fPJy8uLnUdpaeku4uT3nvwi5HnGnjfk79g9Ifa8qKuvvpqZM2dSWlpKbW1t7Fy9GwkPT3y8Y/i9OP/4nT/E6k8dX79+PVu3bo3LvvPaCIqhvy3vWvvr19bWcsEFF+yyCoZ/P397YXfw9fX1FBYW0rVrVz777LPYGOZXv/rVXdoLw2vTE7nq6mouu+wy5s+fz9ChQ2PCt3379rhwZ3NzMytXruTJJ5/khBNOoE+fPrt4dA0NDezYsSPm3XkhzubmZlatWkW3bt3YsmUL27ZtC7Vt+/btNDc309zczJo1a+K2ffHFF2mdXyJ69OgRG+fbvHkz3bp1Y+jQofTr1y8mYkHRy8/P5/nnn08qgF7IMx0SCVcmnzMJqwZDq9nEBCoJ/rtYL0GiuLg41tF7YwsehYWF3HXXXTFvYsqUKVx00UW0tLSQl5fHgQceyJAhQzj66KMZNmwYxx9/PFdeeSWlpaWMGTOGffbZhwceeIDS0lLy8/OZMWNGTDDy8vLiOqB58+bx0EMPxcZEvM62traWiRMnctxxxzFt2jT23ntvGhoaYjZWVlbS2NjInDlzUFXy8vJ46KGHYuNZRx55JPn5+XEegKrG2igoKIilxXvH3LJlC3l5eQwZMiQ2LufhF4mpU6fywQcfAHDbbbdRUFDAwoULY96oJ+pATODq6+vZsmULd955J4899hiNjY1UVFRw1FFHMWXKlNjEZy95xesYvZuJ4HibPzTpFxC/J+T3alpaWnjhhRc46qijqKysRFWZMmVKXJJKcNknTwD83po/UcD/13+tvOSFoOfu9179Ajd79myqq6tj19yrX1xcHCdOQdu8/1n/ah3BJBZ/WUFBQVKxCxvz8+/f0NDAb37zGx599NHYzVgQf+gU4IQTTogdz+/NrV27ljvuuIPrr7+e/Pz8mNCtW7eOnTt3xrYNGDCAlpYWvvjiC37xi18wduxYNm/eTNeuXVmzZg3PPvssxxxzDL169Yp5c0EB9Jf5w53Jxvu2bdu2izAGxyxbi1+sggKWyNML2xb86yVmZYN0BS3t9izElxh/hth5553Hfffdx5AhQ2Ie1Ne//nVOOeWUuASE+vp6zj33XHbs2MGCBQt44IEHKCsro6mpKTZnqkePHkyZMoWJEyeyZcsWHn744ViH5U22hS/HSoLJA9OnT6epqSmWUOF5OV4Ib8aMGVxzzTWxu34vY9CrD8Td/dfX13PBBRfEPDd/9qB3Tv7EiBtuuIElS5bEPKPp06eHZuuBs96d5+F5K2eUlJTEOkkvScPrrIOej9fBe4K/YMECTjrpJE455ZRYtqB/EnNYaM0T5dtuu41Zs2aRl5fHmDFjGDBgwC4ZisHwXzDE6c8ynD17dtzSSt5x/SE5fxab3ztKNoE3KGDJhM77/wj+3yab+5PMgwrL8PSvgxg8TqIxP39mZPAYqUiVNRe2BFWy9Qb9onnTTTeRn5/P2rVrYwLnf+3YsWOXsuA2ddfzXLlyJT169NhFyMLeB0UuTPy8v7t7Pc8uXbqkPcaXShCD+/To0SP0mIcddpjNg8qURHM9ampqdOzYsTp8+HCdMGGC1tTU6KJFi7R37966aNGiuKfXVldXxx5R4T23qby8XI888sjYfB5vzo+3orh/XpB/nlPYc5NUNWZPeXm5TpgwIbYSuLef/1lUXn2vfW9b2CPXvc/+Y/s/++daBZ/oG7x+XvmRRx4Z91iQ4Arb/mMHn0W1bt26WNueDWGrkPtXZfeusf8cg/ZXVVXpwIED4+aked918OGOyeb/hD0GJTgvLfhgyURzgsK+4+C8tODndFYBT3asdPdN9ryssLlNYefq/75TtZHM5kRzo4IP2Uz3OK1h586dun37dt22bZtu2bJFN23apM3NzdrU1KQNDQ26fv16Xbt2ra5evVpXrlypy5cv188//1w//fRTraur09raWv3oo4/0ww8/3OX1r3/9S//5z3/qW2+9pa+++qq++OKL+utf/1off/xxffDBB/Xuu+/W22+/XW+55RatqKjQyy+/XC+++GIdN26cnnvuuXr66afr8ccfryNGjNBDDz1U999/fy0sLNRevXq1y1McvEcY7bPPPjp06FA94ogjdOTIkTYPKlPC7gY9/IkRnodRV1dHY2MjJSUl3HDDDUybNi12d15RUUFDQwP33HMPqkp5eTnz58+PJQl46eCHHHJIbKUGv5dSWVkZmzMzYMCAXUIx9fX1sblX8+fPZ8qUKbFQnz/lORh68cap/GnTieYoNTU1xUKAnpfg91AaGhooLS2N82DC0ti9RBEvhBh2d+t5YF4400vXXr16NR999FEsM9FLTgjz7rzvxMumCzt//2cvycIfBvMvKRTmzQU9izDPJDgfK5F3ks4K3ona8ofpvKSKYButzQoLW7OvNenaQVu9MHDQE2vNHKNkx8xkzcIokIkHl2x7usfyhym9sbswLy6Rh7dhwwY+++wz+vbty7Zt22L1Eo33JcE8qExJ9Gye4Gz46upq3WeffWIPvPN7RV7dSZMm6UEHHaSHHnpozJvyPA9vlQlvZYSgBxLmQfi3q3756PcJEybs4i0lusMsLS3dxWNL9DykoBfllVdVVemECRO0qKhIq6qq4p47FbYiQaIn4frP07sO3ooU/uP7PZyg9+A9UNH/LKmwJweHnV8iTyFs1Yvg8cO+j7B9kh0/bLt3zt4KG6m8gUTfdWvJdOWGdOv7fxeJ2kl1nEzsaeuzo7LB7lx5IpFH19jYqPX19bpu3Tpds2ZNzJtbtmyZfvbZZ/rJJ58k9eYSvd5+++1dyt577z1dsmSJLl68WF9++WVdtGiRzp8/Xx955BG9//779Sc/+YneeuuteuONN+qVV17ZOR5YmMuljoJi4Q/3qWrcU2HDHlfuhdW8Dt0L9Y0dO1YPO+yw2DI+ixYtinX2/n9q73HpXjgrTHD8y//47U4UMgkuURQW6ksUGvJEd8SIEVpVVRUXegsLXQX3DRMn/6Pgw8JAicKb3jUJnkMmHVOYPYlENHieqcJ0ycJN/v+lsPBhqs48aFe2O8JM20vHzraIaGtEsy3bs0Fbz7m92LFjh7a0tISGLT2RW7Vqla5YsSJO5D7++GOtqanJSORMoLJAsNPw1qfz38F77z3BCa6LV1NTo4cddphOmDBBx44dq2VlZbGxGE/ERo0aFXfX7Hlonkj5x1BUvxQn/zp5nr1hnaxnm98u/x24/2+q8Yaw9fXacmecTBgS3Q0HvTp//bZ0CsnExG+v/5olszuRTcGbnkTHT2ZnR+oA22pne3mIbT1WZ8QTua1bt+rmzZt148aNoWNzJlAZEOyA/J+Doa6gl+SFZMrLy/Wuu+6KJQX4BcFbtLWsrCwmON7+3r5BL8kf9vN7Z157XmgrmUB59g8fPlzHjh0bJwhhgpVILIKkE1pK1jmHXfcw/B5fmLcRVp4pYfukajOV3enalE0xzVa7USPb4pZtD9FoHSZQaRL0HvxjM96YxtixY0PHYzwBqK6u1lGjRmleXp4ef/zxsXBdUCi8FbrDxmm8emH2BdvyvKdkISn/nfyECRPihDWsvWSdbiJRyTScEgx9pbOSdSJPJJ02ktniP0Yi8euIdHT7/bT1XNq6f7bH+Iwv6bACBZwNfAjUADcnq9tWgQqGkfwek/d+woQJOnz4cF20aFFc5zplyhQdN26clpeXx0Ttrrvu0oKCAj300ENjSRBBkQqKgydYYenN/vEWP8kEzX9uwVeiesm8pkSikqk4BAUnlf3B7el4K8naSWRrpmUdobPqCDamS7Y9qEz2i0rCxZ5IhxQooCtQCxwE9AD+ARyRqH42PKhUnZE398afIeZ5Tf7nJXkdb1VVlY4bN07Lysr08MMPj/MAPK/HH+Lzkg6CCQv+eTlBUUs0dhHmPaUTskvHiwmrm6k4ZCps2aSt4bRENxGZXg+j42DfZ+7oqAJ1AvCy7/NUYGqi+rlOklDdNYvLe1BhMDTnn6Tp/Q2beOtPC1+37ssU66CQ+BMxghNvw0JSYdl0qbyjTM6/LSQKQ3YkghNl/d95ewqvkRr7TqJHRxWoscAjvs8XAT8P1LkMqAaqBw8enPULlwy/WIVtC+vEwjyIZN6P9z7ZPonsSjdcZbSOMKE1Dyra2I1DNElXoCK1koSIjAPOUtXvup8vAo5V1SvD6ud6Lb7WEDbLvTUz++0ZMYaRHey3FD3SfdxG1B4esgw40Pf5AGB5O9nSKsJ+CK35cdgPyjCyg/2WOi5RE6i/AoeIyDAR6QFcCDzXzjYZhmEY7UCkngelqttF5L+Al3Ey+uap6nvtbJZhGIbRDkRKoABU9SXgpfa2wzAMw2hfohbiMwzDMAzABMowDMOIKCZQhmEYRiQxgTIMwzAiSaQm6maKiKwBPm3l7nsBa7NoTq7oCHaajdnBbMwOZmN2yKWNQ1S1KFWlDi1QbUFEqtOZydzedAQ7zWRm10AAAAiqSURBVMbsYDZmB7MxO0TBRgvxGYZhGJHEBMowDMOIJJ1ZoB5ubwPSpCPYaTZmB7MxO5iN2aHdbey0Y1CGYRhGtOnMHpRhGIYRYUygDMMwjEjSKQVKRM4WkQ9FpEZEbm5ve8IQkU9E5B0RWSoikXgqo4jME5HVIvKur6xQRF4RkY/cvwURtHGGiHzhXsulIjK6nW08UEReE5EPROQ9EbnaLY/MtUxiY9SuZZ6I/EVE/uHaeZtbPkxE3nav5VPu43uiZuNjIlLnu5Yl7WWja09XEfm7iLzgfm73a9jpBEpEugK/AEYBRwDjReSI9rUqIaepakl7z0Xw8RhwdqDsZqBKVQ8BqtzP7clj7GojwN3utSxxV8xvT7YD16nqV4DjgSvc/8EoXctENkK0ruVW4HRVHQGUAGeLyPHAT3DsPASoByZF0EaAG3zXcmn7mQjA1cAHvs/tfg07nUABxwI1qvqxqm4DfgWc1842dQhUdTGwPlB8HvC4+/5x4PzdalSABDZGClVdoap/c99vwOkU9idC1zKJjZFCHZrdj93dlwKnA79xy9v7WiayMTKIyAHAOcAj7mchAtewMwrU/sDnvs/LiOAPD+cf+A8iskRELmtvY5Kwj6quAKdTA/ZuZ3sS8V8i8k83BNiuYUg/IjIUOBp4m4hey4CNELFr6YamlgKrgVeAWqBBVbe7Vdr9Nx60UVW9a/lj91reLSI929HEe4AbgZ3u54FE4Bp2RoGSkLJI3c24nKiq/44TirxCRE5pb4M6MHOAYpzwygrgZ+1rjoOI9AUWAteoalN72xNGiI2Ru5aqukNVS4ADcCIkXwmrtnutChw8YKOIHAlMBQ4HjgEKgZvawzYRORdYrapL/MUhVXf7NeyMArUMOND3+QBgeTvZkhBVXe7+XQ0swvnhRZFVIjIIwP27up3t2QVVXeV2EDuB/yYC11JEuuN0/PNV9bducaSuZZiNUbyWHqraALyOM2aWLyLeE8Mj8xv32Xi2G0ZVVd0KPEr7XcsTgW+KyCc4Qx6n43hU7X4NO6NA/RU4xM1Q6QFcCDzXzjbFISJ9RKSf9x44E3g3+V7txnPARPf9RODZdrQlFK/Td/lP2vlauvH9ucAHqlrp2xSZa5nIxgheyyIRyXff9wLOwBkvew0Y61Zr72sZZuO/fDcjgjO+0y7XUlWnquoBqjoUpz98VVXLiMA17JQrSbipsfcAXYF5qvrjdjYpDhE5CMdrAugGPBkFG0VkAXAqzjL8q4BbgWeAp4HBwGfAOFVttySFBDaeihOSUuAT4PveWE97ICInAf8LvMOXMf9pOGM8kbiWSWwcT7Su5b/hDOB3xbnhflpVf+T+hn6FEzr7OzDB9VSiZOOrQBFOOG0pcLkvmaJdEJFTgetV9dwoXMNOKVCGYRhG9OmMIT7DMAyjA2ACZRiGYUQSEyjDMAwjkphAGYZhGJHEBMowDMOIJCZQxh6FiPyniKiIHJ5G3UtEZL82HOtUb+XnkPJGd2XoD0VksTtb39t+uYhcnKLdr7bWrrYiIkeLiLcm2wwRub6V7fRwz71b6tqGsSsmUMaexnjgTzgTDlNxCdBqgUrB/6rq0ap6GHAV8HMR+RqAqj6oqk8k2fdUoN0ECme+0/1tbcRdjLkKuKDNFhmdEhMoY4/BXTfuRJzHAlwY2HajOM/X+oeI3CEiY4GRwHz3WTy9xHkG115u/ZEi8rr7/lgRedP1iN4UkcMysct9jMKPgP9y24t5JSJylYi87y4Y+it3YdbLgWtdu04WkW+I81yev4vIH0VkH18780TkdRH5WESu8p3vxW6b/xCR/3HLikRkoYj81X2dGHIN+wH/pqr/CNn2PRH5nXutXncXOF0szjOjjhGR34rz7KDbfbs9A5Rlcr0Mw8Ncb2NP4nzg96r6/0RkvYj8u6r+TURGuduOU9VNIlKoqutF5L9wZs1XAzgrzoTyL+AUVd0uImcAs4AxGdr2N+CGkPKbgWGqulVE8lW1QUQeBJpV9aeuXQXA8aqqIvJdnFWnr3P3Pxw4DegHfCgic4BDgVtwFhxeKyKFbt17cZ7v8ycRGQy8zK4Lq44kZMkd91qdCZzv2gqwTVVPEedhhs8CpTiPOqkVkbtVdZ3b1jEZXivDAEygjD2L8ThLWIGzRMt4HGE4A3hUVTcBtGL5oAHA4yJyCM4SP91bYVsi9fsnjhf3DI63EcYBwFPu2m09gDrfthfd5We2ishqYB/c5/io6lqIO98zgCN8QtxfRPq5z3vyGASsCRz/IpxFls9X1RZfubeG5TvAe96SRyLyMc6CzOtUdYeIbAs5jmGkxEJ8xh6BiAzE6ZgfEWdV5huAC9yFOIX0HhWwnS9/E3m+8pnAa6p6JPCNwLZ0OZr4p5V6nIPzhOdSYEmChIL7gZ+r6lHA9wPH96+NtgPnpjPR+XYBTvA9wXX/ENHYzK7n9y4wFEco/XjH3hmwYyfxN789gS0h9hhGUkygjD2FscATqjpEVYeq6oE4nsZJwB+AchHpDeALeW3ACY15fIIjFBAfwhsAfOG+vyRTw9zFQqfjCJG/vAtwoKq+hhO2ywf6htjlP/5EUlMFfNsVbf/5/gF3HMwtLwnZ9wPg4EDZ33GE8blMsx5dG9YEPC/DSAsTKGNPYTxfrgDvsRD4jqr+HiccVS3OU029tOnHgAe9JAngNuBeEflfHG/E405gtoj8H86K1OlwspdmjiNMV6lqVaBOV+CXIvIOjgjc7T4v6HngP70kCWAG8GvXrrWpDqyq7wE/Bt4QkX8A3uMyrgJGuskT7+MkYwT3/RcwwE2W8Jf/Cee6veglkqTJacBLGdQ3jBi2mrlhGHGIyLXABlV9JAtt/RaYqqoftt0yo7NhHpRhGEHmED+m1CrEeSDoMyZORmsxD8owDMOIJOZBGYZhGJHEBMowDMOIJCZQhmEYRiQxgTIMwzAiiQmUYRiGEUn+P40e53xvEv7kAAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "x, y = pd.Series(actual_distances, name=\"Actual Distance (km)\"), pd.Series(triangle_approximations, name=\"Over-estimation (%)\")\n", + "sns.regplot(x=x, y=y, marker='o', color='black', scatter_kws={'s':0.1})\n", + "\n", + "plt.title('Distance approximation error')\n", + "plt.tight_layout()\n", + "plt.savefig('overestimation_3.svg')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAagAAAEYCAYAAAAJeGK1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJzt3XmcVNWd///Xp7tZegOEhkg3ICqIggJJEDUuP7eMggsmo6LRhCiGaPRrjJlMYtRoJtHRmIlmdKJBxomJC23cF6JRR0cYV1xwQRhAkKVFmwbsbna6P78/7q2yuru2Xqqruvv9fDzq0VX33rr3U7eq7+eec889x9wdERGRXJOX7QBERETiUYISEZGcpAQlIiI5SQlKRERykhKUiIjkJCUoERHJSUpQ3ZiZ3WFmV2c7ju7MzEaYWb2Z5XfS9v5mZjM6Y1vZZmYjzczNrCDbsSTS2d9/T2O6D6prMrNVwJeA3UADsBj4MzDb3RvbsK4L3P25Dg5T2sHMrgVGufu52Y4lG8xsJLAS6OXuu7MbjWSDSlBd2ynuXgrsBdwA/BT4z+yG1PXk8hl6Loq3v1q7D7vSPu9KsXY77q5HF3wAq4Djm02bDDQCB4av/wT8OnxeBjwJbAY2AvMJTlD+Er5nG1AP/HO4/F+B9cDnwEvAuJjt/An4D+ApoA54Ddg3Zv444NlwO58CPw+n5wE/A1YANcADwMAEn2+PMN5qYFP4fFjM/BeBfwVeD2N8LLIuYCTgwCygCvgE+HHMe68FHgTuAWqBC4A+wC3h8lXh8z7h8j8FXgUKwtcXAR8AfWO2VRAT16+Bl8P9+QQwCLg33NYbwMiYWH4PrAnnvQkcGU4/EdgJ7ArXsyhm/RfE7M+rgI+BzwhK0P2b7YMZwGpgA3Blkt9TH+C34bKfAncAheG8o4G14X5YT/CbaTEtXPZ7wPLwu38cKI/ZhgMXA8uAlWn8xpN+BoLf+ysEv+lPgNuA3uG8O4DfNlvfY8Dl4fNy4CGC39dK4NIUv4/JwMLw9afA75rFGPv9/wr4X4L/jb8DZTHrPjT8bWwGFgFHZ/tYksuPrAegRxu/uDgJKpy+GrgofP4nvkhQ/xr+0/YKH0fyRRVvi3UB5wOlfHHgfidm3p/CA9BkoIDg4Ds3nFcaHix+THAALwUOCeddRnCgHxau94/A/Qk+3yDgH4GicB1/BR6Nmf8isA44ECgODzb3hPMiB437w3kHhQei48P51xIc+E8jOMgXAv8SxjYEGBweRH4VLp9HkKSvBUYTJMwvN9tW7AFqObAv0J+g6vX/gOPDffVn4L9iPse54WctCPfZeqBvTJz3NNsvL/JFgjo/3NY+QAnwMF8kikhcd4afbwKwAzggwf6+hSChDAz39xPAv4bzjiaoSr4x/N4KE0w7liCJfCWcdivwUsw2nODEZSBfJL8ngZ8liCnpZwC+SnDALwiX/RC4LJx3FEHij/zG9yA4CSsPv883gV8AvcP99xFwQpLfxyvAt8P5JcChSb7/FcB+4fteBG4I51UQnJhNDdf79fD14GwfT3L1kfUA9GjjF5c4Qb1KeJZJ0wT1LwRnkKPSXVfM/AHhP2H/mPXOiZk/FVgSPj8beDvBej4Ejot5PTQ8EBSk8XknAptiXkf/8cPXYwlKHPkxB439Y+b/BvjP8Pm1xBw4w2krgKkxr08AVsW8HkmQlD8Ermg2vfkBKvYs/9+Av8W8PoWYZB/nc24CJsTEmSxBPQ/8IGbemMj+jIkrttT5OnBWnG0asIWmpeDDCEs5BMloJ2HiTDLtP4HfxLwuCeMZGb524NhW/MbT/gzhvMuAR2I+02rgqPD194D/Dp8fAqxu9t4rCE8cEvw+XgJ+SUxpKMn3f1XM/B8AT4fPf0p4AhEz/xlgRrr7pKc9dA2q+6kgOJA2dxPB2fbfzewjM/tZohWYWb6Z3WBmK8ysliCBQVBNGLE+5vlWgoMRwHCCg308ewGPmNlmM9tMcLBvIGjs0TyGIjP7o5l9HMbwEjCgWWupNTHPPyYoGZYlmV+eYB7hvI8TLe/uq4AXCA5I/5Hg80V8GvN8W5zXkX2Fmf3YzD40s8/DfdK/2WdIJl7MBTTdn4m+p1iDCUqqb8Z8N0+H0yOq3X17s/c1n9YkHnevJyghVMQs03y/pyPuZzCz/czsSTNbH/5Grifcdx4c/ecSnDABfIugpA/B77A88lnDz/tzmu635nHOJCgVLTGzN8zs5NbGG273jGbbPYLgRE3iUILqRszsYIKDwYLm89y9zt1/7O77EJzFX25mx0VmN1v8W8A0gmqp/gQHZQjOSlNZQ1C9lWjeFHcfEPPo6+7r4iz7Y4ISwSHu3o+gyqZ5DMNjno8gOFvfkGR+Vczr5p+5iuAAEnd5M5tKUKp4niDZt5uZHUlwVn0msIe7DyC4nhb5jM1jbC5ezLtpmhDTsYEgcY6L+V76u3tsMosXS9J9aGbFBNWX65K8pz1uB5YAo8PfyM9p+vu4HzjdzPYiKDU9FE5fQ1A6jP0dlrr71ERxuvsydz+boAr4RuDB8PO1xhqCElTsdovd/YZWrqfHUILqBsysX3hGN5egSui9OMucbGajzMwILvQ2hA8IDmj7xCxeSlDXX0NwZn19K8J5EtjTzC4zsz5mVmpmh4Tz7gCuCw8YmNlgM5uWYD2lBAfNzWY2ELgmzjLnmtlYMysiqMJ80N0bYuZfHZbExgHnAZVJ4r4fuCqMqYzg+sQ9YZxlBNVXFxBcsD8lTFjtVUqQUKqBAjP7BdAvZv6nwEgzS/R/ej/wIzPb28xKCL6nSm9lk2wPbku4E7jZzIYAmFmFmZ3Quo/DfcB5ZjbRzPqE8bwWlj4zoZTgt1xvZvsTNF6Jcve3CfbtHOAZd98cznodqDWzn5pZYVhjcGB4gheXmZ1rZoPDfRVZT0Oi5RO4h+C3c0K4zb5mdrSZDWvlenoMJaiu7QkzqyM4M7sS+B3BgTie0cBzBC3CXgH+4O4vhvP+leDgvNnM/ongQv7HBGe+iwmua6XF3esILv6eQlDVsQw4Jpz9e4IL8X8P436V4Mw2nlsILjJvCJd7Os4yfyG4HraeoEHGpc3m/w9BtebzBC26/p4k9F8TtNJ6F3gPeCucBjAbeMzd57l7DUF1zxwzG5Rkfel4BvgbQSOKj4HtNK1a+mv4t8bM3orz/rsI9sFLBC3RtgP/r42x/JRgX70aVpc9R1CCTZu7Pw9cTVBS+YSgJH1WsveENx7/vE0Rwz8RlPbrCBJsvBOQ+wlqAu6LibOB4Pc5kWC/bSBIYv2TbOtE4AMzqyf4HZ8Vp8ozKXdfQ1Az8XOCxLkG+Ak6DiekG3WlSzKzFwlKi3PizBuJbvAU6fKUuUVEJCcpQYmISE5SFZ+IiOQklaBERCQndYtOEMvKynzkyJHZDkNERNLw5ptvbnD3wamW6xYJauTIkSxcuDDbYYiISBrM7OPUS6mKT0REcpQSlIiI5CQlKBERyUlKUCIikpOUoEREJCcpQYmISE5SghIRkZykBCUiIjmpW9yoKyIiuamhoYHdu3eza9cudu3axe7d6Y+AowQlIjlv+vTpLF26lDFjxlBZmWxgZOlsu3fvbpGAYv82Nja2ed1ZSVBmdgZwLXAAMNndF8bMu4JgxNIG4FJ3fyYbMYr0JLmeAJYuXcqiRYva/P5c/3y5yt2bJKB4iSiTI2JkqwT1PvBN4I+xE81sLMEQ0eOAcuA5M9svHKJZRDKkvQkg13X3z9dW7p4w8bS2Oi4TspKg3P1DADNrPmsaMNfddwArzWw5MBl4pXMjFBHp+hobGxMmoEjJKJfl2jWoCuDVmNdrw2ktmNksYBbAiBEjMh+ZiEiOidcAIfZ5Q0PXrnzKWIIys+eAPePMutLdH0v0tjjT4lZwuvtsYDbApEmTNCywiLRZrl6jamhoiCaceAmoPQ0QMqGhoYGNGzdSXV1NdXU1n332WfR57CNdGUtQ7n58G962Fhge83oYUNUxEYn0XLl6AO4MdXV11NTUAFBTU0NdXR2lpaVNlsnWNap4VXCxj1xJQDt37qSmpiZh0olMq6mp6dBSW65V8T0O3GdmvyNoJDEaeD27IYl0DcmSUE9tJLBgwQKmTp3Kli1bAKiqqqKiooJ58+ZxxBFHZHz7kUYIiZJQtqvgtm7dmrK089lnn7F58+ZWr7tXr14MHjy4xWPIkCFcddVVaa0jW83MvwHcCgwGnjKzd9z9BHf/wMweABYDu4GL1YJPJD1tTULplDByvQQWL766ujqmTp1KXV1ddLnGxsbo9KqqKkpKStq13WSNELKVgNydurq6lKWdzz77LJq4W6OoqChh4ol9PWDAgHgN4QByO0G5+yPAIwnmXQdc17kRieS+tiaJZAko3RJGrt+HFC++ysrKhFVkjY2NVFZWMnPmzKTrzeRNqK3V2NjIpk2bqK6u5tNPP6W6upoNGzbELQHt2LGj1evv169fi0TTPOkMHjy43Um9NXKtik9EEmhLkkiWgCZMmJDxEka6sWcigS1btixhCWHLli0sX7482gghkmh2797NunXrognJ3bnssstYuXIle++9N7fcckuLdaWan8quXbuoqalJWtqJXN9pbbNwM2PQoEEJSztlZWXRaX379m117JmmBCXSTaWq4rr++uvbXcLoKJm4RjZ69GiKiorYunVri3mFhYWUlpayYsUKIEgSELRCa57UVq5cyZIlSxJuJ9H87du3p6xmq66uZtOmTa3ujaGgoCCtarZBgwZRUNB1D/NdN3IRSSpVFddTTz2VsoSR6yLXgGJLQFVVVezatYtJkyYlvAaSl5fHlClTWr09d6e+vr5FyQaC0ul3vvOd6PTYE4N0FRYWNinZxKtiGzJkCAMGDCAvr/sPRqEEJdJNpariMjOKi4vjLlNcXMyoUaMyHWJKiargYq8B1dfXR++tqampYf369ZSUlFBUVMTs2bOZNWsWW7duxd0xs+j04uLi6HYiJZjt27czf/78JqWddevWAbBixQomTpzI9u3b48ZaW1vLa6+9FndeaWlpiyTTPPkMGTKE4uLihEk1F5kZ+fn55OXlkZ+f3+IRb3prEqsSlEiacr0lW3OjR49OmoBOOukkFixYEPe9eXl5TJ8+vUPiSNZII14JqPk1IEhcBbdw4cJoAgL49NNPOeqoo5g9ezaTJk1i4sSJPPTQQ5xzzjnU1NRQWlrK2WefzRNPPMFdd90VTUKffPIJAKtWreKCCy6I+zkiMcXaY489qKurY/fu3RQWFnLWWWdRUVHRJOmUlZVRWFjYIfsyk5onk3SSTqZLcUpQImnKxoX+9pg+fTqXX3553Hl5eXnMmDEj2lBiy5YtNDY2kpeXR3FxMfPmzWtVA4lEn33+/PlNGmmsW7eOoUOHcvfddzNx4sRoM+xk14Di2bFjB6tWrWLmzJlNSjTuzpYtW/j2t7/NgAEDWlzfqa2t5Y9//GO8VUbl5+c3qWJ766232Lx5M3vuuSfXXHMNZWVlDBkyhFWrVvGDH/wg+hm2b9/OAw88EE2O2RJJIM3/pirV5GLJTQlKpIPk2s2wpaWlzJs3L2kCOuKII6iqqmLs2LGsWbOGiooKFi9enHZyityI+uGHH/Lee+/R0NDA+vXr2bVrF5s3b2bKlClNEk4kgcyYMYP58+c3qWaDIEF99NFHLZpPV1UFHcp89NFHHHzwwdTW1iaNq7GxkY0bN7aY3qtXLw488MBo9drOnTt59NFH2blzZ3SZPn368Lvf/S6aZKZNm8bmzZsZMGAAxx57LAD19fX84Ac/iPvZZs2aFfeztVa6JZnmf7sTJSjpVNksZeRaCacjJapGSycBlZSUMHDgQNasWcPAgQObzIt3Daiqqip6Dah5CWj37t3R5PHYY48lbKSxY8cOLr74Yvr378/69etZtmwZEFw3S9Z4YefOnU2SSTLHHHMMM2bMYMiQIfzwhz9k2bJl7LvvvsydOxcIksxRRx3VYn1bt25NmWTmzZuXtAHKvHnzOOOMM6LTUiWbeA9RgpJOls1SRq6VcDpKqpttEyWg2LGAYhPQ2rVrWwxGF1sFV19fH30e6Z8tMm3Dhg1ce+21VFdXs2jRIrZt2xY35t27d/PKK8lH0dljjz2i1WzvvvsutbW1DBkyhJ///OcMHjyYhQsXcvvtt8dttFBYWMhxxx3HYYcdBhD3gN/aJBORn5/P2rVrE362bdu2sWnTJkaOHKlk005KUK3Unc/Cc10293063QG1V1s+X7J7naZMmcKKFSvo27dvk5LOxx9/3GIohtgEtHnz5ibNqNeuXcuaNWuA4J6fU089lY0bN1JTU9PiAL9hwwbuv//+lHGbGaNGjWLlypVxbz4tKiri+eefj5Zgpk2bRm1tLQMHDoyWsPbff39mz54dd/15eXlMnTo1+nrvvfdu8hdg9erVSZPMhg0bKC8vp1evXkBQ9bfffvsBMGnSJO65556EDVAOOOAAevfunXI/SHJKUK3UXc/Cu4Js7fvO6nC0NZ8vUvV29913J+zvraGhgTvvvJMzzjiD4cOHs3PnTsrKyliwYEGLm0VXr14NwP/93/9x0EEHJdzujh07WLp0acL5vXr14sgjj2To0KH079+fOXPmxK2SKyoq4qyzzuK3v/1t3ATl7tESTH19fbSz0s2bN1NfX09JSQklJSXceeedfO9732vRjPz+++9nxIgR0Sq1v/71ry1an02ePJn77rsvYZI58MADcXc2bdoEND0xSdUApaNaQPZ47t7lH1/96le9s0yYMMEBnzBhQqdtM5eceeaZPmHCBD/zzDNb/d7a2lofNmyYAz5s2DCvra3tlPdGtOW7q62t9dLSUicYl6zJo7S01Ovq6tJef6p9F/v+7du3e319vW/evNmrq6v9k08+8bFjxzrg+++/vy9dutSXLl3qM2fOjBtb5DF06FAfOXKkFxUVJV2utY8+ffr47bff7jfeeGOTdZuZFxcX+7333utLly71e++914uLi93MWsy/4IILkm7jkksu8ccff9xLSkqavL+kpMRfeOEFb2hocHf3uro6Hz58uAM+fPjwJt9Je77bZ555xktLSz0vL88Bz8vL89LSUp8/f767u8+fPz/pfEkMWOhpHNuznlw64qEE1Xna+vnT+WdOdADvqANBW2K/8847vbi4OO5BrLi42OfMmZP2+iPzx48f71u2bPHPP//cN2zY4OvXr/e1a9f6AQccEE1Aixcv9gULFvgjjzzis2fP9quvvtpLSkqiyeGggw7yiooKLygoaFOCGTBggO+3335++OGH+7Rp03zgwIEOeHl5ud9zzz3+zDPP+FVXXeWFhYVx319YWOhXX3110n2zePFiX7t2rS9btszLy8sd8IqKCl+3bp3X19f7H/7wh4SJs7i42G+77bYOOzlIJNFvK5KcUm27rcmxp0s3QamKT9LW1mEZ0h32IF4VV2uGTMhWh6PNNTY2Ultb26Qn7N27d0erurZs2cJTTz2VsJpt+fLlHHTQQQmr7nbs2MF7772XMvaCggLOO+88ysvLm/RaUFZW1uL6yLRp09i4cSP9+vXj4IMPBuDBBx9Meo3mlVdeaXKPUXMvv/xytC+/wYMHU1VVRVlZGeXl5QCce+65/PSnP4373ry8PNw9430FJmrlOHfu3LS2nawFpLSfEpQ0kegg355hGdIZ9uDMM8+Mm/xaM2RCsms4bU2uyXpjKCoqoqysjNWrV1NbWxtNojU1Ndx4440tOgiNdEy6YsUKzjzzzLhxAmn3WN27d29uuukm6urquO6666LJJLY7n9gbRmOvwRQUFDRp0nzAAQfQq1cvxowZwz777ENBQUHKazQFBQVxO2KF9PryS3Wf1hNPPNEpfQXGSzJtOTGRjqcEJU20txQTT6p/9hdeeIEf/ehHcZNfugeK9o551NDQwJIlS3j33XdpaGhgw4YN7Nq1i/HjxydMkNu3b+fWW2/lmmuuaRJjVVUV119/fcL9EdF84LdXX32VTZs2MXToUK6//noGDx7M//7v/3LzzTfHbUqdn5/Pjh07OP/88zn77LM58sgjqaqqory8nIULF9K/f/+0ewp4+OGHW0xL1RDgpJNOYv78+e3qyy/ZfVpLlizJWl+BqbqJyoV+CnuC7t8dbg8zffp0Jk6c2KGtiNIpxSQT+WePp6ioiIceeoi6urroNmKT3/DhwxO+N3KgWLBgARUVFdHeBiIJaMGCBdTW1jJlypS46//617/OHXfcwQ033MBPfvKTaBXbihUr+PKXv8zee+/NIYcckrCaq7GxkY8//jjuQczMGDduHKeeeiozZ87kiiuuiFZt7bPPPrz55pu8/fbbPPvss8ydO5c//OEPDB06FICBAwdy8skn87WvfY2tW7cm7Jx027ZtbNy4kaFDh7LPPvswePBgAMrKythzzz0pLCykd+/e5Ofnt6kbm0gJp7S0NNrnWl5eXnT6jBkzEvbF1pqWbJESDNCkmmz69Olpr3/MmDFMmDCBMWPGpP35kmnNtiVzVIJqha4wNHYm+otrbykm2Zl4Q0NDwvFqGhsbMbOEBwoz45hjjmHChAnRG0Uj76urq+O4447j0EMPTZhgtm/fzkUXXdRi+rZt21i7dm2LbZkZjY2N9O7dmylTpkSbUt9yyy0tRjB1d1atWsUTTzxBv379yM/P58knn4yWNsePH09eXl6Tzxa536agoICysjIADjzwwKyeyafqiSJVV0oRkcTRmgSSTldNER39v9aabSdTV1dHZWUly5YtY/To0UyfPr3D75/r1tJpSZHrj85oxZduS7JstvJLpyl2ui3NYuen05It1f5JNP9b3/pW0tZml112mT/44IMtWpP16tXLjzrqKB81alS0CXJbHnl5eT506FAfP358tJVcWVmZ/+pXv/I//vGP/uijj/prr73mK1eujDbzHjdunG/cuNE///xzv+2225K2REu3lV+i764jm7m3R7J1d0RLtkyvv63bT2fbid4b+c1H/neKi4vVDD1Emq34VMWXhthrMPGqoWLP3rMlWTVXuuKVgCB1dcfUqVNT7p/DDjuMlStXRquxvvSlLzF//nwqKioS3nFvZtxxxx2cfvrpLUpBu3bt4qWXXmL58uVJW5L169cvYex9+/blxhtv5N133+WJJ56gf//+0emXXHIJs2bNYtq0aUyePJmRI0c2KeHsscce9OvXj9WrV6fVUCDRvoXk312qarZcaDWWqIquq6y/vduOV70Ye8yIlH63bNmSU8eMrkAJKg3pXoNJdhDKpHQTaEceJM2MkpISHnnkER566KGETaK3b9/ON7/5Tc477zzOOeecaA/T69evZ+LEidx0000JO/9097jXX3r37s2hhx7KKaecwuGHH56wirCoqIhrrrmGoqKiuPN79erFhRdeyJIlSzjwwAOjYwJVVVUxYsSItJJ7sutr6VwjS+e7i1SzVVRUAETX1ZG9WEjbVVZW8s477zSpZmzvdVsJKEGlIZ1rMB1RgmmrdP4ZUh0kEzUkOPHEE1m+fDnDhg3jscceY4899gCCOvpzzjmHO++8k5tuuilhKWLXrl08++yz/OUvf+GZZ56JloSSlXogSB7nn38+d9xxB48//jhvvPEGY8eOBYIz1hdeeIGHH36YefPmJRwMLj8/n1mzZvG3v/0tYQnE3dtVOm5v6fLuu+9O60CWzVKEtJ6aqXcMNZJIQ6omp8OGDWtXM+z2SvXP8NZbb3HZZZfFbUhwwgkncP755ycsxWzdupWJEydG+zqLSGfgNwhKWuXl5YwZM4bBgwfz3HPPUVNTw/Dhw5k9ezYVFRUMHTqUhoYGJk2axNq1axk+fHjcMYkOPPDA6L06ffv2BYIqvPaMeTRnzpx23Qya6mL6U089lXT9Tz31lA5k3ZCaqXcMJag0pLofxDvwjvfmrezcPdrzdOwjMkRCQ0MDgwYNorCwMG5rtd69e/P6668nbKq8detWbrvttoTxuHvcf7LYgd8GDBjAww8/3GI4bAj+Gd9++2369+9PQUEBX/nKV6ipqWHgwIGceOKJTZYdNGgQa9euTVhCSFQt0p4xj1pzppuoJVqy7ae62dTMusWBrC2t9HJJR8evzmQ7hhJUGjrqjnd3jyag0aNH86c//alJwmloaOD9999n8eLF7Ny5k2XLljUptbg7F198MStWrKCsrIzTTz+d6upq1q1bl7AEtHPnThYuXNjmz15QUMA3vvENTjvtNMrLy7noootYsmQJY8aMYf78+RQUFFBQUMArr7yScP9E7s+B5AeC9hwk2trlTGvOdJNdN0i0/VTrP+mkkxJWA3elA1l7r6lkO8Eli7+9TeQbGxvZsmULxcXF5OXl5Uzjlq5ACSpNzc+Sy8vLWbRoEYWFhbzzzjsUFRXFvQ5TWFhI//79Wb58OY2Njbz33nssWbKEnTt3Rq8H7d69m40bN1JdXR0djbS6uppf/OIXTbrKifRuALBq1aq0E09RURHbtm2Le92nd+/eXHjhhcyZMydu/H379uWuu+6K/kONHz+ePn36MGbMmCaNA9IdOjzZgSAbB7lMn+mmWv+MGTOYMGFCu++36epyudFAW2OL/E9UVlayfPlyRo0axfTp03vMd9oRlKCgRfVZQ0NDtPqseQknclAuKSlhw4YNAHzta19Leqf+nnvuydNPPx1NNABr1qzhtNNOo7q6mo0bN8Yd+C0yNHUikQ5AI3/79+9PZWVldGC3e+65h7333pvGxkYmT54c9yy+T58+XHfddZxxxhntviEy2x1ntuVA0lE3ZLZn/ekmd+l6SkpK2t2hbU/WrRJUJKnEJpfmiab560TNo1PZuXMnb7zxRrRH6qOPPpqnn366xfq2bdvGeeed1+L9W7Zs4cMPP0y6jfz8fI499ljGjRsX7a/t+uuvZ9WqVYwZM4bHH3+cgoICevXqFf37yiuv8P777zNs2DBOPPHEaOJ8+umndZBMINOfvT3XyER6sm6RoOJdr2ktd+fzzz+PlnJih0GIfUT6a/voo48499xz015/cXExZWVlVFVVsWvXLoqKivje975HRUUFpaWlXH755S0aOTQ0NPDyyy9z22230b9/f3r16sWtt94KBCWf0aNHtyi5jR3oFXjoAAAZ4UlEQVQ7lvz8fMaMGdNkXmcdJLN9LaGtMp0gOiMBZXLfd9XvVbq2rCQoM7sJOAXYCawAznP3zeG8K4CZQANwqbs/k846EyWnhoaG6PWdZImnuro6YUODZAYMGMCQIUMoKytjyJAhvPTSS2zcuJHy8nJuuummaMln8eLFzJo1KzqUwrZt25gzZw533303K1euTFpFOH/+fGbOnEldXV10+OmNGzdSX1/fol+vbFfB5fK1hO4uk/te36tkQ7ZKUM8CV7j7bjO7EbgC+KmZjQXOAsYB5cBzZrafuyeth/v888+57777WiSczz77jI0bN7a6Gi8vL49BgwY1GeQt8pgzZw7r1q1j33335dFHH0068Nuhhx5K79692b59O9///vebXAOKNN8+77zzuOCCC1J2l5PueEwiIt1FVhKUu/895uWrwOnh82nAXHffAaw0s+XAZOCVZOtbvXo1v/zlL1Nut1evXi0STmwjg8hj0KBB5Ofnx11H5EyyV69elJSU0KtXr+gjch0Igiq4ffbZB4A5c+YkLOE1NjZSU1PTaTcC9+Sqmp782UW6oly4BnU+EKk/qCBIWBFrw2ktmNksYFb4nL322itu8ol9DBgwIO1xcfLz85skncjfSImpT58+jBw5ssX74nV7k+pm0EGDBiXtLqcjbwROVVXTnQ/iqqYS6VoylqDM7DlgzzizrnT3x8JlrgR2A/dG3hZn+bhFD3efDcwGGD9+vD/44IOtiS16g2nz0k/kb6JElirBxTvAp7pZc9y4cTkx9DX07IN4d07OIl1RxhKUux+fbL6ZzQBOBo7zL+q/1gLDYxYbBlS1dttmFjfpNK+Gy4R4B/h0bgYtKSnJyaGve5Ku3huCSHeTrVZ8JwI/Bf4/d49tHfA4cJ+Z/Y6gkcRo4PVU6ysoKKC8vDyagBJdP+oImRwZNFErO/Xr1TX05NKnSCZk6xrUbUAf4NmwyuxVd7/Q3T8wsweAxQRVfxenasEHwUG6s25sbG+3J225GTTTvR1IblAJTKSpbLXiS1gn5e7XAdd1YjidJp37kNrSY7Z0DakSkEpgIk2llaDMbAhwOEG12zbgfYIx5eM3LZM2y/aNtpI5SkBtp9Jlz5Q0QZnZMcDPgIHA28BnQF/gNGBfM3sQ+Dd3r810oCLScym590ypSlBTge+5++rmM8ysgKAV3teBhzIQm4iIZFBdXR2VlZUsW7aM0aNHM3369Bbdp2VT0gTl7j9JMm838GiHR9TNtbeqQlUdPZe+e+lIke7TYgdUvPzyy3Oq+zRrTQ/gZnYocD1BC7zfuvsjmQqsNSZNmuTtGTVWRKQnqauro6Kiokn3aRGlpaWt6j6tLczsTXeflGq5+P3rfLGS5j1BXA6cCpwI/EvbwxMRkWyprKxM2X1aLkh1DeoOM3sTuMndtwObgW8BjYAaRoiIdEGp+gftyO7T2iNpCcrdTwPeAZ40s28DlxEkpyKClnwiItLFRPoHjSeXuk9LmqAA3P0J4ARgAPAwsNTd/93dqzMdnIiIdLzp06cnHUEhV7pPS3UN6lQzWwD8N8HNuWcB3zCz+81s384IUEREOlak+7TS0tJoSaq4uDg6PVc6AUh1DerXwGFAITDP3ScDl5vZaILuiM7KcHwiIpIBke7TKisrWb58OaNGjYqOrBCR7fukkjYzN7P5wJ8IEtSJ7n5yJ8XVKmpmLiLSseLdJ5WXl9ch90l1SDNz4BsEDSJ2E7TeExGRbq6uro6pU6dSV1cXbe23ZcuW6PT6+vpOiSNVgtru7re6+x2J+tszs9yorBQRkQ6RK/dJpUpQj5nZv5nZUWYWbZNoZvuY2Uwze4bgpl0REekmcuU+qVR98R1nZlOB7wOHm9keBNV9S4GngBnuvj7zYYqISGeJ3CcVL0l15n1SreqLL1epkYSISMfJdF99HdVIQkREephcuU8qK0O+i4hIbkvnPqlMU4ISEZG4SkpKmDlzZta2n3aCMrN84Eux74k30q6IiEhHSCtBmdn/A64BPiXozRzAgfEZiktERHq4dEtQPwTGuHtNJoMRERGJSLcV3xrg80wGIiIiEivdEtRHwItm9hSwIzLR3X+XkahERKTHSzdBrQ4fvcOHiIhIRqWVoNz9lwBmVhq89M7pylZERHqstK5BmdmBZvY2wai6H5jZm2Y2LrOhiYhIT5ZuI4nZwOXuvpe77wX8GLizrRs1s1+Z2btm9o6Z/d3MysPpZmb/bmbLw/lfaes22mP69OlMnDiR6dOnZ2PzIiJC+gmq2N1fiLxw9xeB4sSLp3STu49394nAk8AvwulTgNHhYxZwezu20WZLly5l0aJFLF26NBubFxER0k9QH5nZ1WY2MnxcBaxs60abDX5YTHDTL8A04M8eeBUYYGZD27odERHputJNUOcDg4GHgUfC5+e1Z8Nmdp2ZrQHO4YsSVAXBPVcRa8NpIiLSw6Tbim8TcGlrVmxmzwF7xpl1pbs/5u5XAlea2RXAJQRdKVm8zSdY/yyCakBGjBjRmtBERKQLSJqgzOwWd7/MzJ4gTqJw91MTvdfdj08zhvsIRue9hqDENDxm3jCgKsH6ZxM03mDSpEldf9RFERFpIlUJ6i/h39925EbNbLS7LwtfngosCZ8/DlxiZnOBQ4DP3f2Tjty2iIh0DUkTlLu/GT6d6O6/j51nZj8E/qeN273BzMYQ9Iz+MXBhOH0eMBVYDmylnde5RESk60q3q6MZwO+bTftunGlpcfd/TDDdgYvbsk4REeleUl2DOhv4FrC3mT0eM6sU0NAbIiKSMalKUC8DnwBlwL/FTK8D3s1UUCIiIqmuQX1McI3osM4JR0REJJBuZ7GHmtkbZlZvZjvNrMHMalO/U0REpG3S7UniNuBsYBlQCFwA3JqpoERERNJtxYe7LzezfHdvAP7LzF7OYFwiItLDpZugtppZb+AdM/sNQcOJ9vRmLiIiklS6VXzfBvIJ+szbQtAdUdx7mURERDpCup3Ffhw+3Qb8MnPhiIiIBNJtxXeymb1tZhvNrNbM6tSKT0REMinda1C3AN8E3gu7IxIREcmodK9BrQHeV3ISEZHOkm4J6p+BeWb2P8COyER3/11GohIRkR4v3QR1HVAP9AV6Zy4cERGRQLoJaqC7/0NGIxEREYmR7jWo58xMCUpERDpNugnqYuBpM9umZuYiItIZ0r1RtzTTgYiIiMRKNaLu/u6+xMy+Em++u7+VmbBERKSnS1WCuhyYRdPRdCMcOLbDIxIRESH1iLqzwqdT3H177Dwz65uxqEREpMdLt5FEvLGfNB6UiIhkTKprUHsCFUChmX0ZsHBWP6Aow7GJiEgPluoa1AnAd4FhBNehIgmqDvh55sISEZGeLtU1qLuBu83sH939oU6KSUREJO1rUMPMrJ8F5pjZW+pZQkREMindBHW+u9cC/wAMAc4DbshYVCIi0uOlm6Ai156mAv/l7otipomIiHS4dBPUm2b2d4IE9YyZlQKNmQtLRER6unQT1EzgZ8DB7r6VYEyo89q7cTP7JzNzMysLX5uZ/buZLTezdxN1sSQiIt1fugnKgbHApeHrYoLBC9vMzIYDXwdWx0yeAowOH7OA29uzDRER6brSTVB/AA4Dzg5f1wH/0c5t30wwlLzHTJsG/NkDrwIDzGxoO7cjIiJdULoJ6hB3vxjYDuDum2jH0O9mdiqwLmxsEasCWBPzem04Ld46ZpnZQjNbWF1d3dZQREQkR6U75PsuM8snLO2Y2WBSNJIws+eAPePMupKgF4p491HFaxnocabh7rOB2QCTJk2Ku4yIiHRd6SaofwceAYaY2XXA6cBVyd7g7sfHm25mBwF7A4vMDIJulN4ys8kEJabhMYsPA6rSjFFERLqRdEfUvdfM3gSOIyjlnObuH7Zlg+7+HsHNvgCY2SpgkrtvMLPHgUvMbC5wCPC5u3/Slu2IiEjXlm4JCndfAiwxs1ltTU5pmEdwr9VyYCsd0JRdRES6prQTVIwLCa/9dAR3Hxnz3IGLO2rdIiLSdaXbii+WujgSEZGMS5mgzCzPzM6MmXRKBuMREREB0khQ7t4IXBLzem1GIxIRESH9Kr5nw37zhpvZwMgjo5GJiEiPlm4jifPDv7ENGBzYp2PDyb66ujpqamoAqKmpoa6ujtLS0ixHJSLS86RVgnL3veM8ul1yWrBgARUVFVRVBfcGV1VVUVFRwYIFC7IcmYhIz5NWgjKzIjO7ysxmh69Hm9nJmQ2tc9XV1TF16lTq6upobAx6cWpsbIxOr6+vz3KEIiI9S7rXoP4L2Al8LXy9Fvh1RiLKksrKymhiaq6xsZHKyspOjkhEpGdLN0Ht6+6/AXYBuPs2utn9UMuWLWPLli1x523ZsoXly5d3ckQiIj1buglqp5kV8kVv5vsCOzIWVRaMHj2a4uLiuPOKi4sZNWpUJ0ckItKzpZugrgGeBoab2b3A8wSDDXYb06dPJy8v/u7Iy8tj+vTpnRyRiEjPlm4rvmeBbwLfBe4n6H38xcyF1flKS0uZN28epaWl0USVl5cXnV5SUpLlCEVEepak90GZ2VeaTYoMfTHCzEa4+1uZCSs7jjjiCKqqqhg7dixr1qyhoqKCxYsXKzmJiGRBqht1/y382xeYBCwiaBwxHngNOCJzoWVHSUkJAwcOZM2aNQwcOFDJSUQkS5JW8bn7Me5+DPAx8BV3n+TuXwW+TDBmk4iISEak20hi/3AkXADc/X1gYmZCEhERSb8vvg/NbA5wD0FT83OBTI2qKyIiknaCOg+4CPhh+Pol4PaMRCQiIkKaCcrdtwM3hw8REZGMSytBmdnhwLXAXrHv6Y49mouISG5It4rvP4EfAW8CDZkLR0REJJBugvrc3f+W0UhERERipJugXjCzm4CHiekktrv1JCEiIrkj3QR1SPh3Usw0B47t2HBEREQC6bbiOybTgYiIiMRK1Vns5c0mObABWODuKzMWlYiI9HipujoqbfboR1DN9zczOyvDsYmISA+WtATl7r+MN93MBgLPAXMzEZSIiEi6ncU24e4bCYbdaBMzu9bM1pnZO+Fjasy8K8xsuZktNbMT2roNERHp2tJtxdeEmR0LbGrntm929982W+9Y4CxgHFAOPGdm+7m7bg4WEelhUjWSeI+gYUSsgUAV8J0MxDMNmOvuO4CVZrYcmAy8koFtiYhIDktVgjq52WsHatx9Swds+xIz+w6wEPixu28CKoBXY5ZZG04TEZEeJlUjiY/bumIzew7YM86sKwmG6vgVQcL7FcHQ8ucT/7pW8xJcZP2zgFkAI0aMaGuYIiKSo9p0DSod7n58OsuZ2Z3Ak+HLtcDwmNnDCKoT461/NjAbYNKkSXGTmIiIdF1tasXXXmY2NOblN4D3w+ePA2eZWR8z2xsYDbze2fGJiEj2ZawElcJvzGwiQfXdKuD7AO7+gZk9ACwGdgMXqwWfiEjPlJUE5e7fTjLvOuC6TgxHRERyUFaq+ERERFJRghIRkZykBCUiIjlJCUpERHKSEpSIiOQkJSgREclJSlAiIpKTlKBERCQnKUGJiEhOUoISEZGcpAQlIiI5SQlKRERykhKUiIjkJCUoERHJSUpQIiKSk5SgREQkJylBiYhITlKCEhGRnKQEJSIiOUkJSkREcpISlIiI5CQlKBERyUlKUCIikpOUoEREJCcpQYmISE5SghIRkZykBCUiIjlJCUpERHKSEpSIiOSkrCUoM/t/ZrbUzD4ws9/ETL/CzJaH807IVnwiIpJdBdnYqJkdA0wDxrv7DjMbEk4fC5wFjAPKgefMbD93b8hGnCIikj3ZKkFdBNzg7jsA3P2zcPo0YK6773D3lcByYHKWYhQRkSzKVoLaDzjSzF4zs/8xs4PD6RXAmpjl1obTWjCzWWa20MwWVldXZzhcERHpbBmr4jOz54A948y6MtzuHsChwMHAA2a2D2Bxlvd463f32cBsgEmTJsVdRkREuq6MJSh3Pz7RPDO7CHjY3R143cwagTKCEtPwmEWHAVWZilFERHJXtqr4HgWOBTCz/YDewAbgceAsM+tjZnsDo4HXsxSjiIhkUVZa8QF3AXeZ2fvATmBGWJr6wMweABYDu4GL1YJPRKRnykqCcvedwLkJ5l0HXNe5EYmISK5RTxIiIpKTlKBERCQnZesaVE4bM2ZMk78iItL5lKDiqKyszHYIIiI9nqr4REQkJylBiYhITlKCEhGRnKQEJSIiOUkJSkREcpISlIiI5CQlKBERyUkW9NHatZlZNfBxB6+2jKCHdWk97bu2075rO+27tuvsfbeXuw9OtVC3SFCZYGYL3X1StuPoirTv2k77ru2079ouV/edqvhERCQnKUGJiEhOUoJKbHa2A+jCtO/aTvuu7bTv2i4n952uQYmISE5SCUpERHKSEpSIiOQkJahmzOxEM1tqZsvN7GfZjieXmdldZvaZmb0fM22gmT1rZsvCv3tkM8ZcZWbDzewFM/vQzD4wsx+G07X/UjCzvmb2upktCvfdL8Ppe5vZa+G+qzSz3tmONVeZWb6ZvW1mT4avc3LfKUHFMLN84D+AKcBY4GwzG5vdqHLan4ATm037GfC8u48Gng9fS0u7gR+7+wHAocDF4W9N+y+1HcCx7j4BmAicaGaHAjcCN4f7bhMwM4sx5rofAh/GvM7JfacE1dRkYLm7f+TuO4G5wLQsx5Sz3P0lYGOzydOAu8PndwOndWpQXYS7f+Lub4XP6wgOFhVo/6XkgfrwZa/w4cCxwIPhdO27BMxsGHASMCd8beTovlOCaqoCWBPzem04TdL3JXf/BIKDMDAky/HkPDMbCXwZeA3tv7SEVVTvAJ8BzwIrgM3uvjtcRP+7id0C/DPQGL4eRI7uOyWopizONLXDl4wxsxLgIeAyd6/Ndjxdhbs3uPtEYBhBzccB8Rbr3Khyn5mdDHzm7m/GTo6zaE7su4JsB5Bj1gLDY14PA6qyFEtX9amZDXX3T8xsKMEZrsRhZr0IktO97v5wOFn7rxXcfbOZvUhwHW+AmRWEJQH978Z3OHCqmU0F+gL9CEpUObnvVIJq6g1gdNiipTdwFvB4lmPqah4HZoTPZwCPZTGWnBXW+/8n8KG7/y5mlvZfCmY22MwGhM8LgeMJruG9AJweLqZ9F4e7X+Huw9x9JMHx7b/d/RxydN+pJ4lmwjOLW4B84C53vy7LIeUsM7sfOJqgq/5PgWuAR4EHgBHAauAMd2/ekKLHM7MjgPnAe3xxLeDnBNehtP+SMLPxBBfy8wlOsh9w938xs30IGjYNBN4GznX3HdmLNLeZ2dHAP7n7ybm675SgREQkJ6mKT0REcpISlIiI5CQlKBERyUlKUCIikpOUoEREJCcpQUm3Y2bfMDM3s/3TWPa7Zlbejm0dHekROs70z8Meo5ea2UvhXfyR+Rea2XdSrPdrbY2rvczsy2YW6avtWjP7pzaup3f42dUpgLSaEpR0R2cDCwhuREzlu0CbE1QK8939y+4+BrgUuM3MjgNw9zvc/c9J3ns0kLUERXBP1q3tXUnY6fLzwPR2RyQ9jhKUdCth33aHEwwXcFazef9sZu+F4wjdYGanA5OAe83sHTMrNLNVZlYWLj8p7EYHM5tsZi+HJaKXzWxMa+Jy93eAfwEuCdcXLZWY2aVmttjM3jWzuWHnsRcCPwrjOtLMTgnH63nbzJ4zsy/FrOcuM3vRzD4ys0tjPu93wnUuMrO/hNMGm9lDZvZG+Dg8zj4sBca7+6I4875nZn8L99WLZnZzWEL60MwONrOHwzGFfh3ztkeBc1qzv0RAffFJ93Ma8LS7/5+ZbTSzr7j7W2Y2JZx3iLtvNbOB7r7RzC4huJt+IUDQA1FcS4Cj3H23mR0PXA/8Yytjewv4SZzpPwP2dvcdZjYg7F/uDqDe3X8bxrUHcKi7u5ldQNAb9Y/D9+8PHAOUAkvN7HZgP+BK4HB332BmA8Nlf08w7s8CMxsBPEPLjlYnAe83m0a4r/4BOC2MFWCnux9lwYCLjwFfJRiCZYWZ3ezuNeG6Dm7lvhJRgpJu52yCrqog6LrlbILEcDzwX+6+FaAN3Qf1B+42s9EEPT33akNsibLfuwSluEcJShvxDAMqww5kewMrY+Y9FXZLs8PMPgO+RDi+j7tvgCaf93hgbEwi7mdmpeGYVBFDgepm2/82QWfKp7n7rpjpkb4q3wM+iAwVYmYfEXS8XOPuDWa2M852RJJSFZ90G2Y2iODAPMfMVhGUVqaHHbMa6Q0hsJsv/i/6xkz/FfCCux8InNJsXrq+TNNRTCNOIhjJ+avAmwkaFNwK3ObuBwHfb7b92D7TGghOPBN93jzgMHefGD4q4iSNbbT8fO8DIwkSZazIthubxdFI0xPgPsD2OPGIJKQEJd3J6cCf3X0vdx/p7sMJShpHAH8HzjezIoCYKq86gqqxiFUEiQKaVuH1B9aFz7/b2sDCDk6vJkhEsdPzgOHu/gJBtd0AoCROXLHbn0FqzwNnhkk79vP+nfA6WDh9Ypz3fgiMajbtbYLE+HhrWz2GMVQ3K3mJpKQEJd3J2cAjzaY9BHzL3Z8mqI5aaMFIrJFm038C7og0kgB+CfzezOYTlEYifgP8q5n9L0Ev2uk4MtLMnCAxXeruzzdbJh+4x8zeI0gCN7v7ZuAJ4BuRRhLAtcBfw7g2pNqwu38AXAf8j5ktAiJDelwKTAobTywmaIzR/L1LgP5hY4nY6QsI9ttTkYYkaToGmNeK5UUA9WYuInGY2Y+AOnef0wHrehi4wt2Xtj8y6UlUghKReG6n6TWlNrFg4M9HlZykLVSCEhGRnKQSlIiI5CQlKBERyUlKUCIikpOUoEREJCcpQYmISE76/wHXWPN/VBMwrgAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "x, y = pd.Series(actual_distance_bins, name=\"Actual Distance (km)\"), pd.Series(haversine_approximations, name=\"Under-estimation (%)\")\n", + "ax = sns.regplot(x=x, y=y, color='black', x_estimator=np.mean)\n", + "\n", + "plt.title('Distance approximation error: haversine')\n", + "plt.tight_layout()\n", + "plt.savefig('underestimation.svg')" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAagAAAEYCAYAAAAJeGK1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJzt3XmcXHWV8P/P6b27ukMTCAkJJAGysC+hSUKnybgwiP0DEZUJOiouQz/O6KOIjqCMM8yMjriCD8wMtowrPBIVEZVWWX6iSWeBBBICJCGEbCTprIT0ml7qPH/chVvVVd3V3VV1b3ef9+tVr66691bdU0vXqe+53/v9iqpijDHGRE1B2AEYY4wxqViCMsYYE0mWoIwxxkSSJShjjDGRZAnKGGNMJFmCMsYYE0mWoMYgEblXRL4cdhxjmYhMF5E2ESnM0/5+LyI35GNfYRORmSKiIlIUdizp5Pv9H6/EzoMaXURkOzAZ6AX6gJeAnwCNqhofxmP9nao+keUwzQiIyO3ALFX9YNixhEFEZgLbgGJV7Q03GhMma0GNTlerahUwA7gDuAX4n3BDGn2i/As9ilK9XkN9DUfTaz6aYh2zVNUuo+gCbAcuT1o2H4gD57q3fwR8xb1+IvA74AhwGFiG88Pkp+59OoE24Avu9r8AWoA3gL8A5wT28yPgP4FHgVZgNXBGYP05wOPufvYBX3KXFwC3AluBQ8DPgYlpnt/xbrwHgNfd66cE1j8FfA142o3xEe+xgJmAAg3AHmAv8LnAfW8HfgncDxwF/g4oBe5yt9/jXi91t78FWAUUubf/HngRKAvsqygQ11eAFe7r+VvgBOABd1/PADMDsXwX2OWuWwtc5i6/EugGetzHWR94/L8LvJ7/BOwA9uO0oI9Leg1uAHYCB4HbBvg8lQLfcrfdB9wLlLvr3gK85r4OLTifmX7L3G1vBF5x3/vfAFMD+1Dgk8AWYFsGn/EBnwPO530lzmd6L3APUOKuuxf4VtLjPQLc7F6fCjyE8/naBnx6kM/HfGCNe3sf8J2kGIPv/78DzTj/G48BJwYee6H72TgCrAfeEvZ3yWi4hB6AXYb4hqVIUO7yncDfu9d/xJsJ6mvuP22xe7mMN0u7/R4L+BhQxZtf3OsC637kfgHNB4pwvnwfdNdVuV8Wn8P5Aq8CFrjrbsL5oj/FfdzvAT9L8/xOAN4LVLiP8Qvg14H1TwG7gXOBmPtlc7+7zvvS+Jm77jz3i+hyd/3tOF/878b5ki8H/s2N7SRgkvsl8u/u9gU4Sfp2YDZOwrwoaV/BL6hXgDOA43BKry8Dl7uv1U+AHwaexwfd51rkvmYtQFkgzvuTXpeneDNBfczd1+lAJfAr3kwUXlzfd5/fBcAx4Kw0r/ddOAllovt6/xb4mrvuLTil5K+771t5mmVvw0ki89xldwN/CexDcX64TOTN5Pc74NY0MQ34HICLcb7wi9xtNwI3uesW4yR+7zN+PM6PsKnu+7kW+GegxH39XgXeMcDnYyXwIXd9JbBwgPd/KzDHvd9TwB3uumk4P8zq3cf9a/f2pLC/T6J+CT0AuwzxDUufoFbh/sokMUH9G84vyFmZPlZgfbX7T3hc4HHvC6yvBza5198PPJfmcTYCbw/cPtn9IijK4PleCLweuO3/47u3z8ZpcRQGvjTODKz/BvA/7vXbCXxxusu2AvWB2+8Atgduz8RJyhuBLyYtT/6CCv7K/zbw+8Dtqwkk+xTP83XggkCcAyWoJ4F/CKyb672egbiCrc6ngetT7FOAdhJbwZfitnJwklE3buIcYNn/AN8I3K5045np3lbgbUP4jGf8HNx1NwEPB57TTmCxe/tG4P93ry8Adibd94u4PxzSfD7+AvwrgdbQAO//PwXW/wPwB/f6Lbg/IALr/wjckOlrMl4vdgxq7JiG80Wa7Js4v7YfE5FXReTWdA8gIoUicoeIbBWRozgJDJwyoaclcL0D58sI4FScL/tUZgAPi8gRETmC82Xfh9PZIzmGChH5nojscGP4C1Cd1FtqV+D6DpyW4YkDrJ+aZh3uuh3ptlfV7cCfcL6Q/jPN8/PsC1zvTHHbe60Qkc+JyEYRecN9TY5Leg4DSRVzEYmvZ7r3KWgSTkt1beC9+YO73HNAVbuS7pe8LCEeVW3DaSFMC2yT/LpnIuVzEJE5IvI7EWlxPyP/gfvaqfPt/yDODyaAD+C09MH5HE71nqv7fL9E4uuWHOfHcVpFm0TkGRG5aqjxuvu9Lmm/dTg/1MwALEGNASJyCc6XwfLkdaraqqqfU9XTcX7F3ywib/dWJ23+AeAanLLUcThfyuD8Kh3MLpzyVrp171TV6sClTFV3p9j2czgtggWqOgGnZJMcw6mB69Nxfq0fHGD9nsDt5Oe8B+cLJOX2IlKP06p4EifZj5iIXIbzq/pvgONVtRrneJr3HJNjTJYq5l4SE2ImDuIkznMC78txqhpMZqliGfA1FJEYTvly9wD3GYn/BjYBs93PyJdI/Hz8DHifiMzAaTU95C7fhdM6DH4Oq1S1Pl2cqrpFVd+PUwL+OvBL9/kNxS6cFlRwvzFVvWOIjzPuWIIaxURkgvuL7kGcktCGFNtcJSKzRERwDvT2uRdwvtBOD2xehVPrP4Tzy/o/hhDO74ApInKTiJSKSJWILHDX3Qt81f3CQEQmicg1aR6nCudL84iITAT+JcU2HxSRs0WkAqeE+UtV7Qus/7LbEjsH+CiwdIC4fwb8kxvTiTjHJ+534zwRp3z1dzgH7K92E9ZIVeEklANAkYj8MzAhsH4fMFNE0v1//gz4rIicJiKVOO/TUh1il2x1Tkv4PnCniJwEICLTROQdQ3s6/F/goyJyoYiUuvGsdlufuVCF81luE5EzcTqv+FT1OZzX9j7gj6p6xF31NHBURG4RkXK3YnCu+wMvJRH5oIhMcl8r73H60m2fxv04n513uPssE5G3iMgpQ3yccccS1Oj0WxFpxflldhvwHZwv4lRmA0/g9AhbCfyXqj7lrvsazpfzERH5PM6B/B04v3xfwjmulRFVbcU5+Hs1TqljC/BWd/V3cQ7EP+bGvQrnl20qd+EcZD7obveHFNv8FOd4WAtOh4xPJ63/M05Z80mcHl2PDRD6V3B6aT0PbACedZcBNAKPqGqTqh7CKffcJyInDPB4mfgj8HucThQ7gC4SS0u/cP8eEpFnU9z/BzivwV9weqJ1Af97mLHcgvNarXLLZU/gtGAzpqpPAl/GaansxWlJXz/QfdwTj780rIjh8zit/VacBJvqB8jPcCoB/zcQZx/O5/NCnNftIE4SO26AfV0JvCgibTif4+tTlDwHpKq7cCoTX8JJnLuAf8S+fwdlJ+qaUUVEnsJpLd6XYt1M7ARPY8YMy+DGGGMiyRKUMcaYSLISnzHGmEiyFpQxxphIGhODIZ544ok6c+bMsMMwxhiTZO3atQdVddLgW/Y3JhLUzJkzWbNmTdhhGGOMSSIiOwbfKjUr8RljjImkUBKUiFwnIi+KSFxEalKs92ar/HwY8RljjAlfWC2oF4D34JwJn8qdOGfaG2OMGadCOQalqhsBnOHhEonIu3HmaGnPc1jGGGMiJFLHoNxRgm/BmX9lsG0bRGSNiKw5cOBA7oMzxhiTVzlLUCLyhIi8kOKSbhRrcBLTne58MgNS1UZVrVHVmkmThtWD0RhjTITlrMSnqpcP424LcOZx+QbObK5xEelS1XuyG50xxpioi9R5UKp6mXddRG4H2iw5GWNMfixZsoTNmzczd+5cli4daBq1/AglQYnItcDdOFNLPyoi61R1qJOkGWOMyaLNmzezfv36sMPwhdWL72Hg4UG2uT0/0RhjjImiSPXiM8YYYzyWoIwxxkSSJShjjDGRZAnKGGNMJFmCMsYYE0mWoIwxxkSSJShjjDGRZAnKGGNMJFmCMsYYE0mWoIwxxkSSJShjjDGRFKnRzI0xxox+qkpnZyednZ0jehxLUMYYY0ZMVWlvb6etrY22tjbi8TjFxcUjekxLUMYYY4ZFVf2E1N7eTjwez+rjW4IyxhiTMa+l1NraSltbG6qas31ZgjLGGDMgVaWjo8NPStluKaVjCcoYY0w/fX19tLe3+5d8JaWgULqZi8h1IvKiiMRFpCawfKaIdIrIOvdybxjxGWPMeOSV63p6eti6dSstLS20traGkpwgvBbUC8B7gO+lWLdVVS/MczzGGDMudXd309bWxt69e9m/fz8Ahw8fpq2tjcrKylBjC6UFpaobVXVzGPs2xpjxrru7m0OHDrFjxw62b9/OH/7wBxYsWMC+ffsA2LdvH4sXL2bNmjWhxhnFkSROE5HnROTPInJZuo1EpEFE1ojImgMHDuQzPmOMGXWOHTvGoUOH2L59O9u3b+fQoUMcO3aMtrY2GhoaaG9v90t8Xk89b3lYclbiE5EngCkpVt2mqo+kudteYLqqHhKRi4Ffi8g5qno0eUNVbQQaAWpqanLXz9EYY0aprq4u2traaG1tpaenJ+U2TU1NaY8xxeNxmpqauO6663IZZlo5S1Cqevkw7nMMOOZeXysiW4E5QLjtTGMiZsmSJWzevJm5c+eydOnSsMMxEdLV1UVrayutra309vYOuv2OHTvSDknU2dnJzp07sx1ixiLVzVxEJgGHVbVPRE4HZgOvhhyWMZGzefNm1q9fH3YYJiK8pNTW1pa2pZTOjBkzKC8vT5mkysvLmT59erbCHLKwuplfKyKvAZcCj4rIH91Vi4HnRWQ98EvgE6p6OIwYjTEmyrq7uzl48CDbtm1j586dvP7660NOTgD19fUUFKROBQUFBdTX14801GELpQWlqg8DD6dY/hDwUP4jMsaY6Ovt7aWtrY2jR4/S1dWVlcesrKyksbGRhoYGOjo6UFVEhIqKChobG4nFYlnZz3BEqsRnjDEmkZeUWltbRzx9RTo1NTUsW7aM+vp6WlpamDx5Mk1NTcNKTqrK9u3baW5uZsWKFSOKyxKUMSYyrPOHo6ury5+64tixY3nZZywWo7q6mpaWFqqrq4eUnN544w1WrlxJc3Mzzc3N7N69OysxWYIyxkTGeO384U3w501dkUnvuzD19PSwfv16PyFt2LChX1f1E044gbq6Oh55JN1ZRYOzBGWMMSEIjhDe3t5OX19f2CGlpars2LGD5uZmli9fzurVq/udwFtSUsLFF19MXV0ddXV1zJkzh9LSUktQxhgzGqSadTaqvLLdihUrWL58ecqy3Zw5c1i0aBG1tbVccskllJeXZzUGS1DGGJNDvb29dHR0hDptRSZ6enro6OgAYPv27SxcuLBfrBMnTmTRokXU1dVx6aWXMnny5JzGZAnKGGOyyDue1NraSkdHx7DOTcqHYNmuubmZVatW+WU7rwt7cXExNTU1LFq0iEWLFnHmmWemPWcqFyxBGWPMCI2W40lvvPEGq1at8o8lpettd/zxx/ONb3wjJ2W7obAEZYwxw6Cq/rGkqJbuenp6eP755/1W0vPPP5+ybFdbW8uiRYu477772Lp1K5MnT2bx4sUhRf0mS1DGGJMhr6V09OjRSCYlVWXnzp0sX76c5uZmVq9eTVtbW8I2xcXFXHzxxf6xpGDZ7sc//nEYYadlCcoYYwbR1dXF0aNHaW1tjVz57ujRo6xatcpPSq+99lq/bWbPnu33tps/f36oZbuhsARlxgUbocAMVU9PD62trRw9epTu7u6ww/H19vayfv16VqxYQXNzM+vXr09btqutraWuri7nve1yxRKUGRfG6wgFZmh6enpob2/P6bh3wxEs261atWpIZbvRzBKUMWbc8o4peecoRaVL+NGjR1m9erWflHbt2tVvm1mzZvndvy+55BIqKipCiDS3LEEZY8aVvr4+fzSHjo6OSHR06O3t7dfbLvlY1/HHH+8fR1q0aBFTpkwJKdr8sQRljBnzOjs7/VZSvkYHH8yuXbv8FtLKlStTlu3mzZtHXV0dtbW1nH322WOibDcUlqCMMWNOcMy7qJw429ramlC227lzZ79tzjjjDP84Uk1NTaiTBUZBKAlKRK4DbgfOAuar6prAuvOB7wETgDhwiapmZ+pIY8yYFY/HE5JS2KW73t5eNmzY4Jft1q9f3y9RVldXJ5TtTj755JCiza6ioiLKy8tH3J09rBbUC8B7cBKRT0SKgPuBD6nqehE5AYjGUUtjTOT09fX5ozl405WHadeuXX5CWrlyJa2trQnri4uLueiii/yy3TnnnDPqy3aFhYWUlpZSVlZGeXk5ZWVlFBYWZuWxQ0lQqroRQESSV10BPK+q693tDuU5NGNMxHmzzba3t/uDmoZlKGU7r7fdaC7biYifjLxLSUlJzvYXtWNQcwAVkT8Ck4AHVfUbqTYUkQagAWD69On5i9AYk1fB0l1HR0eox5MyLdsFT5IdTWW70047LeFvSUlJQjIqLS1N1bDImYwSlIicBCwCpgKdOCW6NaqatsgrIk8AqfpB3qaq6aZYLALqgEuADuBJEVmrqk8mb6iqjUAjQE1NTbjtemPyqLW1lUOHnOLCoUOHaG1tpaqqKuSoRi75ee3atYuCgoLQS3e7du3yR21YuXIlR48eTVjvle28VtLZZ5+dtRJXPhUWFvL973/fL9OVlZWFXn4cMEGJyFuBW4GJwHPAfqAMeDdwhoj8Evi2qh5Nvq+qXj6MeF4D/qyqB939NwHzgH4JypjxaPny5dTX1/vz9uzZs4dp06bR1NREXV1dyNEN37JlyxKe1+7duznrrLNobGykpqYmr7G0tbX5U1KsWLGC7du399vm9NNP93vbjdayXUFBAeXl5VRUVFBRUUFpaWnYIfUzWAuqHrhRVfsVVt0ODVcBfw08lKV4/gh8QUQqgG7gr4A7s/TYxoxqra2t1NfXJxx4j8fj/vI9e/ZQWVkZYoRD45XuWlpaeOc73+knJ3izm3hDQwPLli3LaQLo6+vjhRde8I8jrVu3LmXZ7tJLL/VbSVOnTs1ZPLmQ72NH2TJgglLVfxxgXS/w6+HsVESuBe7GOc70qIisU9V3qOrrIvId4BlAgSZVfXQ4+zBmrFm6dGnartPxeJylS5fy8Y9/PM9RDY03/bnXFVxV+fnPfz7g82pqauK6667LahyDle2KioqYN2+e3/37nHPOGVVlu6KiIj8ReSW7fB47ypYhdZIQkYXAfwClwLdU9eHh7NS9X8r7qur9OF3NjTEBW7ZsSWhlBLW3t/PKK6/kOaLB9fX10dnZSUdHBx0dHSlHBd+xY0fagVk7OztT9owbqmDZrrm5mR07dvTbxivbeb3tRktrtLCwMKETQ1lZGUVFUev/NjyDHYOaoqotgUU3A+8CBFhBmiRjjMm+2bNnE4vFUiapWCzGrFmzQogqUTwe95NRZ2dnRsMKzZgxg/Ly8pRJqry8fFi9dMdy2a6kpMQ/Cba8vJzi4uKwQ8qZwdLsvSKyFvimO5rDEeADOCM89OsYYYzJnSVLlnDzzTenXFdQUMCSJUvyHJFjpOcl1dfXc8cdd6RcV1BQQH19fUaP89prr7FixQqWL1/OqlWreOONNxLWFxUVJfS2i3rZTkQoLi72W0Xe37B71uXTYMeg3i0iVwO/E5EfAzfhJKgKnJ58xpg8qaqqoqmpye/tFo/HKSgoIBaL0dTUlLeSVHd3d0LZbqTnJVVWVtLY2EhDQ4PfpVxEqKiooLGxMW0Hiba2NlavXu2X7VL1tps5cyZ1dXUsWrSI+fPnR7ps57WMgp0YRuNxo2watFCpqr91u3v/A/Ar4KuquiznkRlj+qmrq2PPnj2cffbZ7Nq1i2nTpvHSSy/l9Iu3u7s7oWyXixNla2pq/K7mLS0tTJ48maampoTk1NfXx4svvphQtuvt7U14nOOOO84v29XW1nLKKadkPdZsKCgoSOjAkM3hgcaSwY5BvQv4AtCHM7jrT4F/FpF/AP5JVbfmPEJjTILKykomTpzIrl27mDhxYtaTkzdfkpeUkpNArsRiMaqrq2lpaaG6uppYLMbu3bv9st3KlStTlu0uvPBCv2x37rnnRvKLvri42D9m5JXrzOAGa0F9BbgUKMfp8j0fuFlEZgNfBa7PcXzGmBxTVb9kF/Z8SV7rbN++fVx55ZVs27at3zYzZ870E9KCBQsiWbYrKSmhoqLCT0pjpVddvg32qr2Bk4TKcUaRAEBVt2DJyZhRq6enJ6GVFNbUFF7ZzjuOtGXLFgBef/11Xn/9dQAmTJiQULY79dRTQ4l1IEVFRf6IDBUVFZaQsmSwV/Fa4P04U158IPfhGGNyIdj9u729nZ6e8Gax2bNnD83NzX5vuyNHjvTbpry8nBtvvJG6urpIlu28YYJisRgVFRWjYlSG0WiwBNWlqncPtIGIVKpq20DbmPFhyZIlbN68mblz57J06dKwwxn3jh075reSOjs7Qxtwtb29naefftpPSgOV7Z566il2797NjBkz+OQnPxlCtKmJCGVlZX4LabSOzDDaDJagHhGRdcAjwFpVbQcQkdOBtwJ/A3wf+GVOozSjwubNm1m/fn3YYYxbfX19fgspn50bUsXx0ksv+WW75557rl+LLV3Zbu3atWGE3I+XkIInxI6n84+iYrDzoN4uIvXA/wIWicjxQC+wGXgUuCFppAljTB7F43EOHjxIR0dHqJP37d27l+XLl7NixQpWrFjRr2xXWFjIBRdc4I8Afu6550bqOI03dl2w27e1kMKXyXlQTUBTHmIxxgyip6eHjo4Ov0XS09PD4cOH8x5He3s7zzzzjH9O0quvvtpvm+nTp/snyS5YsCAyc1YVFRVRXl5OaWmpf4lSsjRvsnfFjHmjeYK/eDxOZ2enP5SQl5jy3esuHo8n9LZLVbarqqryZ5JdtGhRZHrbiUhChwY7B2n0sARlxrTROMHfsWPH/GNJYXZu2Lt3r5+QBivbLVq0iPPOOy8yLZFgh4by8nIr141S0fg0GZMDo2WCv6h0bujo6Ego223d2n+gmOnTp/vHkaJSthMRfxw7LylZh4axIeMEJSKFwOTgfVLNtGtMVER1gr94PE5XV5dfugurc0M8Hvd72y1fvjxt2S44JUUUynYlJSUJM8OWlpZaC2mMyihBicj/Bv4F2Icz1QY4M96eP5ydish1OGP7nQXMV9U17vK/BYKz+J4PzFPVdcPZjxnfojLBn3ccKThHUlhlu5aWFr+3XXNzc8qy3fnnn+93bgi7bBecjM/rYWeto/Ej00/eZ4C5qnooS/t9AXgP8L3gQlV9AHgAQETOAx6x5GSGK4wJ/uLxOMeOHUu4hNn9e7SV7byWUFFRETNnzrQRGsa5TBPULpxx+bJCVTcCgzXL3w/8LFv7NONPPib4Cw602tHREWrrCJwEuXHjRr9s9+yzz/Yr21VWViaU7YYzY222JPew8xJSYWGhJSeTcYJ6FXhKRB4F/KGOVfU7OYnKsQS4Jt1KEWkAGoBQ/8FMdOVigj/vPKSuri66urpCHfnbs2/fPr+3XXNzsz/IqqegoIALLriAuro6amtrOf/880Mt25WWlvoJyXrYmYFk+ind6V5K3MugROQJYEqKVbep6iOD3HcB0KGqL6TbRlUbgUaAmpqa8H6ymkgb6QR/vb29fusozB52QR0dHbS1OcNfvvrqqyxevLjfNqeccgp1dXV+2W7ChAn5DtNXVFTkJ6SKiorIDfxqoiujBKWq/wogIlXOzcEHh1XVy0cQ1/VYec9kyVAm+Ovp6fF72HV0dNDd3Z3HSFMLlu2am5tZu3atX7bz4qusrGThwoX+saQwqwo20rfJlkx78Z2LM5vuRPf2QeDDqvpitgMSkQLgOqD/z0Jjsqivry+hVNfV1RWJFhIMXrbznHDCCdxzzz2hlu1spG+TK5l+ohuBm1X1TwAi8hacUcxrh7NTEbkWuBuYBDwqIutU9R3u6sXAa6raf3AvY0aor6+PPXv2RCoZAXR2dvpTUjQ3N6fsAn/KKaf4HRvuvvtutmzZwqRJk5g3b17e4/VmjLUTY00uZZqgYl5yAlDVp0QkNtydqurDwMNp1j0FLBzuYxsDiSfDer3rwDmm5B2/CVM8HmfTpk1+9+9g2c4Ti8USetvNmDHDX/df//VfeY23sLDQT0axWCwyQxqZsS3jXnwi8mWcMh/AB4H+s46ZvLNJAp2u3l6JzrtE4dhRsn379rFixQr/RNnkUcgLCgo4//zz/YR0/vnnU1xcHEqs3vQTXlLK13GkuXPnJvw141umCepjwL8CvwIE+Avw0VwFZTI3HicJ7O7uprOzM1JdvVPp7OxkzZo1ftnu5Zdf7rfNtGnT/FEbFi5cyHHHHRdCpFBcXJxwDCmsxDhef2SZ1DLtxfc68Okcx2JMSl6pzrv09fWFHVJK8XiczZs3+2W7NWvWpCzbeb3tvLLdcDoUnHbaaQl/h0pEEkp21tPORNGACUpE7lLVm0Tktzhj7yVQ1XflLDIzLnnlOm/cus7OzrzPfTQU+/fvT5iSwpt3yhMs29XW1nLBBRdkpXVy1113Dfk+JSUlCecjWU87E3WDtaC8Y07fynUgZvzyEpKXlKKckLq6uvyy3fLlyyNdtisoKPBbSBUVFaGV7YwZrgETlKquda9eqKrfDa4Tkc8Af85VYGZsCvau844jRTkhqapftluxYgXPPPNMvw4YFRUVLFy40E9Kwy3bZUNZWVnCMELGjGaZdpK4Afhu0rKPpFg26lmvuOzq7u72E1KUOzQE7d+/35+OYsWKFRw8eDBhfUFBAeeee66fkLJVthsOr/t3LBYjFovZMEJmTBnsGNT7gQ8Ap4nIbwKrqoBsTb0RKeOxV1y29fX1sXv3brq6uiLboSHI623ndQFPVbabOnVqQtmuuro6hEgdXispFotRVlYWWhzG5NpgLagVwF7gRODbgeWtwPO5CsqMDsFx6w4ePMi+ffsA/OtRmE49lWDZzuttl65s5/W2mzlzZmhlu8LCQj8h2WCrZjwZ7BjUDmAHcGl+wjFR5U3EFyzXeUMFrVmzhoaGBjo6OgDnhNTFixfT2NhITU1NmGH7vFj37NlDXV1dv7KdiHDeeef5g62GWbYDayUZA5kPFrsQZ+y8s3Cm2ygE2lU1vDH8Tc4kj8zgzQybSlsqhw4fAAAeIklEQVRbGw0NDQmz1qoq7e3tNDQ0sGzZMmKxYY+KNWzB3nbBse2OHj3qb3PyyScnlO2OP/74vMfpsWNJxvSXaSeJe3CmwPgFUAN8GMj+fNkm71Ilo+7u7oxnhW1qakrbCy8ej9PU1MR1112XzZBT8sp2XkJK1dsOnBNlb775ZmpraznttNNCK9slzyRbWloaShzGRFnGIz6q6isiUqiqfcAPRWRFDuMyOaCqfq+64Jh1I5mifMeOHXR2dqZc19nZyc6dO4f92IM5cOBAQm+7AwcOJKwXEc455xzq6upoampi586dnHrqqXzwgx/MWUwD8VpJlZWVxGIxGwHcmEFkmqA6RKQEWCci38DpOJH/uo3JmNcy8i5e62gkySiVGTNmUF5enjJJlZeXZ3XivK6uLtauXeufk7Rp06Z+25x88sl+x4ZLL73UL9s99dRTWYtjKLzpzWOxmJ2XZMwQZZqgPoRz3OlTwGeBU4H35iooM3SqypEjR4ZVphuJ+vp67rjjjpTrCgoKqK+vH/Zjqyovv/xyQtku+VhYRUUFCxYs8JNSmGU7cEYBD45xZ8eSjBm+TAeL3eFe7cQZ1dyEJPmYkXecpbu7m/379+c9nsrKShobG/1efKrqD0Ta2Ng45A4SBw8eTBjbLlXZ7uyzz+ayyy5j0aJFXHjhhaEOdGrHkozJnUx78V0F/Dsww72PAGq9+HIrk950+WglDaampoZly5ZRX19PS0sLkydPpqmpKaPkdOzYMb9s19zcnLJsN2XKFL+3XbBsF5bgeUl2LMmY3Mm0xHcX8B5gg2bhG1FErgNux+m2Pl9V17jLi4H7gHlubD9R1a+NdH+jRapJ96KQgDIRi8Worq6mpaWF6urqtMlJVdmyZYs/2Gqqsl15eXlC2e70008PfeRtO5ZkTP5lmqB2AS9kIzm5XsBJeN9LWn4dUKqq54lIBfCSiPxMVbdnab+Roar9Bk0dDcMCDcfBgwf93nbNzc1pe9t5Cemiiy4KfX4ir0zp9bizKc6Nyb9M/+u+ADSJyJ8B/+euqn5nODtV1Y1Aql/FCsREpAgoB7qBo8kbjUZ9fX1+IvL+jpbW0VDF43FWrlzpl+02btzYb5spU6b4ozYsXLiQiRMnhhBposLCQiorK6msrLT5koyJgEwT1FeBNqAMZySJXPklcA1ON/YK4LOqejjVhiLSADQAWe3KnA3elBLBkl3yzKpjiVe2O3zYeau2bNnCRz7ykYRtoli2AyvdGRNlmSaoiap6xVAeWESeAKakWHWbqj6S5m7zgT5gKnA8sExEnlDVV5M3VNVGoBGgpqYm1KZIX18fXV1d/oR7XV1dYYaTF4cOHUoo2wV7EHotQ+8k2aiU7Tzl5eV+S8km8TMmujJNUE+IyBWq+limD6yqlw8jng8Af1DVHmC/iDTjDK3UL0GFJdizrrOz0z/naKw7duwYzz77rH+S7EsvvdRvm6KiInp7e5k6dSoPPfRQJMp2Hq+nXUlJCaeeemrI0RhjMpFpgvok8AUROQb0kLtu5juBt4nI/TglvoU4PQhDkYuhgUYLVeWVV15J6G2X3DIsKytj/vz5/rGkm2++mc2bNzNhwoRIJCevpVRVVcW5555LcXExc+fODTssY0yGMj1RtyqbOxWRa3FGR58EPCoi61T1HcB/Aj/E6eUnwA9VNW/zTqmqP/BpT08Pr7zyyrhIRp7Dhw/7Zbvly5enPPHX621XW1vLxRdfnFC2C/uYUkFBQULPu+AoDjY7sjGjz2Az6p6pqptEZF6q9ar67HB2qqoPAw+nWN6G09U8L7q7u/1jRl7ryOvMEI/Hx3xy6u7uZu3atf5xpFRlu5NOOinhJNkTTjghhEjTKy4uJhaLUVlZSXl5eehJ0hiTPYO1oG7G6Sn37RTrFHhb1iPKkd7e3oRSXVdXV9ppIsYqVWXr1q1+9+9nnnmm3yCvZWVlXHLJJdTV1VFXV8cZZ5wRuS/94uJiqqqqqKystMn8jBnDBptRt8G9+k5VTTgAISKR/WbwToINXsZyN++BHD58OOGcJG9a9qCzzjrLbyUll+2iwpKSMeNPpp0kVuAMPzTYslCoKm+88ca468iQSnd3N88++2xC2S75tZg0aZKfkGprayNXtvOUlpb63cFtEFZjxp/BjkFNAaYB5SJyEU7HBYAJOL3sIqG3tzdly2A88JLP4cOHaWho4Omnn05ZtqupqfFHAJ81a1bkynbw5sjgXlKy4YWMGd8G+wZ4B/AR4BSc41Det1or8KXchWUGEizbbd26FYD9+/cn9Lo766yz/O7f8+bNi2wLpKCgwO/kYCODG2OCBjsG9WPgxyLyXlV9KE8xmSTd3d0899xzfvfvVGW7oqIirr766siX7cBJSt75STbmnTEmnUxrKKeIyAScltP3cY493TqUkSVM5lSVV1991R+14emnn6ajoyNhm9LSUi655BJefvll9u/fzxlnnJF2ZtsoEBFisRgTJkwgFotZUjLGDCrTBPUxVf2uiLwDOAn4KM4JtZagsuTw4cOsWrXK723X0tLSb5szzzzTL9tdfPHFlJaWcs0117B///5IfuF7U1Z4ve+sfGeMGYpME5T37VePM7rDeoniN+IItbW1ceTIEQCOHDlCW1sblZWVOdlXsGzX3NzMiy++mLK3nTf6d21tLSeeeGJOYsm2goICpkyZYknJGDMimSaotSLyGHAa8EURqQLG1Fmua9asoaGhwS+l7du3j8WLF9PY2EhNTc2IH98r23kJaaCyndcFfPbs2ZFsGSXzWkper7vi4mImTMj2MI3GmPEm0wT1ceBC4FVV7RCRE3DKfGNCW1sbDQ0NtLe3+8tUlfb2dhoaGli2bFnaKcwH8vrrr7Ny5Uo/Ke3du7ffNnPnzvVHbfDKdkOJO18tvmSpet8Fx74zxpiRyjRBKXA2cBXwb0AMZ/LCMaGpqSntsEfxeJympiauu27wIQK7u7tZt26dn5BeeOGFfmW7E088kdraWurq6qitrWXSpEnDijnXLb5UbMZZY0w+ZZqg/gunpPc2nATVCjwEXJKjuPJqx44d/U5u9XR2drJz586U61SVbdu2+Qlp9erVKct2NTU1ftluzpw5I/5iz1WLL5Xi4mI/KdmMs8aYfMo0QS1Q1Xki8hyAqr4uItEbsG2YZsyYQXl5ecokVV5enjClvFe286al2LNnT7/7zJ07N6G3XbbHjstWiy8dG2LIGBMFmSaoHhEpxCn1ISKTGEOdJOrr69OeQyQiTJ48mTvvvHPAsl2wt91wy3aZGm6LbyClpaV+d/AoDhZrjBl/Mk1Q/wdn/qaTROSrwPuAf8pZVHlWWVlJY2Njv7JZYWEh8XicG2+8MWH7kpKShLLd3Llz83o8ZigtvoF4Samqqori4uJsh2mMMSOS6Yy6D4jIWuDtOOdEvVtVN+Y0sjw6cuQIBw4c4IorruCRRx7xy2d9fX309fUBb5btFi1aRE1NTahTPgzU4isoKKC+vj7tfcvKyvxhhrKdlLzp1G1adWNMNmQ8XLSqbgI2iUjDSJOTiFwH3A6cBcxX1TXu8hLge0ANTgnxM6r61Ej2lUpPTw/r16/3R23YsGFDv7JdYWEh9fX1fm+7k046aVj7uummm9i2bRunnXYad911VzbCT2jxdXR0oKr+uUiNjY39OkiUlZX55btctpRsWnVjTDYNZz6DTwCNI9zvC8B7cJJR0I0AqnqeiJwE/F5ELlHVER3vUlW2b9/uD7aaqredV7bbsmULBw4cYNasWXzrW98ayW4B2LZtG5s2bRrx4ySrqalh2bJl1NfX09LSwuTJk2lqavKTU76SkjHG5MpwEtSID7Z4LbAUx23OBp50t9kvIkdwWlNPD3UfR44cYdWqVX4X8N27d/fbZs6cOf5xJK9sd80113DgwIFRcY5PLBajurqalpYWqqurmTx5MrFYjFgsZnMpGWNGvUG/xUSkAHifqv7cXXR1DuNZD1wjIg8CpwIXu3/7JSgRaQAaAKZNm+aX7byEtGHDhn5dsU844QT/JNlLL72UyZMn5/Cp5F5hYaE/ekNpaSlTp04NOSJjjMmeQROUqsZF5FPAz93br2XywCLyBDAlxarbVPWRNHf7Ac5xqTXADpxp5XvTxNWIW2o87rjjdMGCBQk98ODNsl1tbS2XXXYZc+bMGfWDl3pzKU2YMIHy8nJrKRljxqxMv90eF5HPA0sBPwuo6uF0d1DVy4cajKr2Ap/1bovICmDLYPc7evSof33OnDl+K6mmpmZMjH4gIn7PO5tLyRgzXmQ8H5T795OBZQqcns1gRKQCEFVtF5G/BnpV9aXB7lddXc2tt95KbW3tqC/beWwuJWPMeJfpeVCnZXOnInItcDcwCXhURNapqjcZ4h9FJA7sBj6UyeNNnz6da6+9Npshhqa8vJwJEyZQWVlpo4MbY8a1jBKU27K5GZiuqg0iMhuYq6q/G85OVfVhnJEpkpdvB8bVWZ4iQnl5ud9SsqRkjDGOTEt8PwTWArXu7deAXwDDSlCGhPKdJSVjjOkv0wR1hqouEZH3A6hq51ic8j3XvJNnq6qqrPedMcYMItNvyW4RKefN0czPAI7lLKoxxOvcUFJSkvEgrsYYYzJPUP8C/AE4VUQeABYBH8lVUKNdSUkJEyZMSBiQ1RqcxhgzNJn24ntcRJ4FFuIMdfQZVT2Y08hGmaKiIqqqqpgwYYJN8meMMVkwYIISkXlJi/a6f6eLyHRVfTY3YY0OhYWF/gm0FRUVYYdjjDFjymAtqG+7f8twBm1dj9OCOh9YDdTlLrRoslEdjDEmPwZMUKr6VgB38NYGVd3g3j4X+Hzuw4uOiooK/wRaG9XBGGNyL9NOEmd6yQlAVV8QkQtzFFNklJWV+Z0d7FwlY4zJr0wT1EYRuQ+4H6er+QeBMTPle5BXsrNu4cYYE65ME9RHgb8HPuPe/gvw3zmJKATFxcX+CbQlJSWAdQs3xpiwZdrNvAu4072MCV638KqqKsrKysIOxxhjTJJMB4tdBNwOzAjeR1WzOt1GrhUVFRGLxaxbuDHGjAKZlvj+B2ciwbVAX+7Cyb7y8nJisRixWMxOoDXGmFEk0wT1hqr+PqeRZElhYaGfkCoqKqz3nTHGjFKZJqg/icg3gV8RGCQ2KiNJiAjV1dVUVlZa6c4YY8aITBPUAvdvTWCZAm8bzk7dZHc10A1sBT6qqkfcdV8EPo5TSvy0qv5xsMcrKiripJNOGk4oxhhjIirTXnxvzfJ+Hwe+qKq9IvJ14IvALSJyNnA9cA4wFXhCROao6qg67mWMMWbkBhss9uakRQocBJar6rbh7lRVHwvcXAW8z71+DfCgqh4DtonIK8B8YOVw92WMMWZ0GmxQuaqkywScMt/vReT6LMXwMcDrgDEN2BVY95q7zBhjzDgz2GCx/5pquYhMBJ4AHkx3XxF5ApiSYtVtqvqIu81tQC/wgHe3VGGkefwGoAGwIYmMMWYMyrSTRAJVPSyDjAWkqpcPtF5EbgCuAt6uql4Seg04NbDZKcCeNI/fCDQC1NTUpExixhhjRq9hzRshIm8DXh/uTkXkSuAW4F2q2hFY9RvgehEpFZHTgNnA08PdjzHGmNFrsE4SG+hfYpuI06r58Aj2ew9QCjzuNsRWqeonVPVFEfk58BJO6e+T1oPPGGPGp8FKfFcl3VbgkKq2j2SnqjprgHVfBb46ksc3xhgz+g3WSWJHvgIxxhhjgmzu8hxqbW3l0KFDABw6dIjW1taQIzLGmNHDElSOLF++nGnTprFnj9MJcc+ePUybNo3ly5eHHJkxxowOw+pmPpbNnTs34e9wtLa2Ul9fn9Biisfj/vI9e/ZQWVk54liNMWYsswSVZOnSpVl5jHg8nnJdPB5n6dKlfPzjHx/xfowxZiyzEl8ObNmyhfb21B0d29vbeeWVV/IckTHGjD6WoHJg9uzZxGKxlOtisRizZqXtZW+MMcZlCSoHlixZQkFB6pe2oKCAJUuWZG1fc+fO5YILLhjRMTNjjIkiOwaVA1VVVTQ1NVFfX097ezvxeJyCggJisRhNTU1Z7SCRjWNmxhgTRdaCypG6ujq/azngdzmvq6sLOTJjjBkdLEHlUGVlJRMnTgRg4sSJ1rXcGGOGwBKUMcaYSLIEZYwxJpIsQRljjIkkS1DGGGMiyRKUMcaYSLIEZYwxJpJCSVAi8k0R2SQiz4vIwyJS7S4/QUT+JCJtInJPGLEZY4yJhrBaUI8D56rq+cDLwBfd5V3Al4HPhxSXMcaYiAglQanqY6ra695cBZziLm9X1eU4icoYY8w4FoVjUB8Dfj/UO4lIg4isEZE1Bw4cyEFYxhhjwpSzwWJF5AlgSopVt6nqI+42twG9wANDfXxVbQQaAWpqanQEoRpjjImgnCUoVb18oPUicgNwFfB2VbUEY4wxJkEo022IyJXALcBfqWpHGDEYY4yJtrDmg7oHKAUeFxGAVar6CQAR2Q5MAEpE5N3AFar6UkhxGmOMCUkoCUpV0855rqoz8xiKMcaYiIpCLz5jjDGmH0tQxhhjIskSlDHGmEiyBGWMMSaSLEEZY4yJJEtQxhhjIskSlDHGmEiyBGWMMSaSLEEZY4yJJEtQxhhjIskSlDHGmEiyBGWMMSaSLEEZY4yJJEtQxhhjIskSlDHGmEiyBGWMMSaSLEEZY4yJpFASlIh8U0Q2icjzIvKwiFS7y/9aRNaKyAb379vCiM8YY0z4wmpBPQ6cq6rnAy8DX3SXHwSuVtXzgBuAn4YUnzHGmJAVhbFTVX0scHMV8D53+XOB5S8CZSJSqqrH8hlfNs2dOzfhrzHGmMyEkqCSfAxYmmL5e4Hn0iUnEWkAGgCmT5+eu+hGaOnSVE/NGGPMYHKWoETkCWBKilW3qeoj7ja3Ab3AA0n3PQf4OnBFusdX1UagEaCmpkazFLYxxpiIyFmCUtXLB1ovIjcAVwFvV1UNLD8FeBj4sKpuzVV8xhhjoi2UEp+IXAncAvyVqnYEllcDjwJfVNXmMGIzxhgTDWH14rsHqAIeF5F1InKvu/xTwCzgy+7ydSJyUkgxGmOMCVFYvfhmpVn+FeAreQ7HGGNMBNlIEsYYYyLJEpQxxphIkkAHulFLRA4AO7L0cCfijGgxWo32+GH0PweLP3yj/TmMpfhnqOqk4TzImEhQ2SQia1S1Juw4hmu0xw+j/zlY/OEb7c/B4ndYic8YY0wkWYIyxhgTSZag+msMO4ARGu3xw+h/DhZ/+Eb7c7D4sWNQxhhjIspaUMYYYyLJEpQxxphIGpcJSkROFZE/ichGEXlRRD6TYpu3iMgbgTEB/zmMWNMRke0issGNbU2K9SIi/0dEXhGR50VkXhhxpiMicwOv7ToROSoiNyVtE6n3QER+ICL7ReSFwLKJIvK4iGxx/x6f5r43uNtscUfyz7s08X9TRDa5n5GH3QGbU913wM9bvqR5DreLyO7A56Q+zX2vFJHN7v/ErfmLOiGGVPEvDcS+XUTWpblv6O9Buu/OnP0fqOq4uwAnA/Pc61U4086fnbTNW4DfhR3rAM9hO3DiAOvrgd8DAiwEVocd8wCxFgItOCf0RfY9ABYD84AXAsu+AdzqXr8V+HqK+00EXnX/Hu9ePz4i8V8BFLnXv54q/kw+byE/h9uBz2fwGdsKnA6UAOuT/+fDij9p/beBf47qe5DuuzNX/wfjsgWlqntV9Vn3eiuwEZgWblRZdw3wE3WsAqpF5OSwg0rj7cBWVc3WaCA5oap/AQ4nLb4G+LF7/cfAu1Pc9R3A46p6WFVfBx4HrsxZoGmkil9VH1PVXvfmKuCUfMc1FGneg0zMB15R1VdVtRt4EOe9y6uB4hcRAf4G+FlegxqCAb47c/J/MC4TVJCIzAQuAlanWH2piKwXkd+7s/xGiQKPichaEWlIsX4asCtw+zWim4SvJ/0/ZZTfA4DJqroXnH9eINX0MKPlvfgYTqs7lcE+b2H7lFum/EGa8tJoeA8uA/ap6pY06yP1HiR9d+bk/2BcJygRqQQeAm5S1aNJq5/FKTldANwN/Drf8Q1ikarOA94JfFJEFietlxT3idw5BSJSArwL+EWK1VF/DzIV+fdCRG4DeoEH0mwy2OctTP8NnAFcCOzFKZMli/x7ALyfgVtPkXkPBvnuTHu3FMsGfA/GbYISkWKcF/gBVf1V8npVPaqqbe71JqBYRE7Mc5hpqeoe9+9+4GGcEkbQa8CpgdunAHvyE92QvBN4VlX3Ja+I+nvg2ueVTt2/+1NsE+n3wj1YfRXwt+oeLEiWwectNKq6T1X7VDUOfJ/UsUX9PSgC3gMsTbdNVN6DNN+dOfk/GJcJyq31/g+wUVW/k2abKe52iMh8nNfqUP6iTE9EYiJS5V3HOdD9QtJmvwE+7PbmWwi84TXBIybtr8YovwcBvwG83kg3AI+k2OaPwBUicrxbfrrCXRY6EbkSuAV4l6p2pNkmk89baJKOrV5L6tieAWaLyGluq/16nPcuKi4HNqnqa6lWRuU9GOC7Mzf/B2H2CAnrAtThNC2fB9a5l3rgE8An3G0+BbyI09tnFVAbdtyB+E9341rvxnibuzwYvwD/idNzaQNQE3bcKZ5HBU7COS6wLLLvAU4i3Qv04Pwa/DhwAvAksMX9O9Hdtga4L3DfjwGvuJePRij+V3COC3j/B/e6204Fmgb6vEXoOfzU/Yw/j/NFeXLyc3Bv1+P0Otsa1nNIFb+7/Efe5z6wbeTegwG+O3Pyf2BDHRljjImkcVniM8YYE32WoIwxxkSSJShjjDGRZAnKGGNMJFmCMsYYE0mWoMyYISLXioiKyJkZbPsREZk6gn29RUR+l2b5GyLynDty9l9E5KrA+k+IyIcHedza4cY1UiJykYjc516/XUQ+P8zHKXGfe1F2IzTjiSUoM5a8H1iOcxLmYD6Cc55JLixT1YtUdS7waeAeEXk7gKreq6o/GeC+bwFCS1DAl3CGlRoRdQZkfRJYMuKIzLhlCcqMCe7YYItwTty8PmndF9x5dNaLyB0i8j6cEwgfcOfWKXfn2jnR3b5GRJ5yr88XkRVui2iFiMwdSlyqug74N5yTjhNaJSLyaRF5yR3k9EF38M1PAJ9147pMRK4WkdXu/p8QkcmBx/mBiDwlIq+KyKcDz/fD7mOuF5GfussmichDIvKMe1mU4jWsAs5X1fUp1t0ozoC95e4+73RbSBtF5BIR+ZU4c/x8JXC3XwN/O5TXy5gga36bseLdwB9U9WUROSwi81T1WRF5p7tugap2iMhEVT0sIp/CmUNoDYA7olIqm4DFqtorIpcD/wG8d4ixPQv8Y4rltwKnqeoxEalW1SMici/QpqrfcuM6Hlioqioifwd8Afice/8zgbfizMuzWUT+G5gD3IYzsOhBEZnobvtd4E5VXS4i03GGmDkrKZ4aUgyf475WVwDvdmMF6FbVxeJMWPcIcDHONBJbReROVT3kPtYlQ3ytjPFZgjJjxfuBu9zrD7q3n8UZ4+yH6o4zp6pDnUvoOODHIjIbZ4iX4mHEli77PY/Tivs16UdqPwVY6o43VwJsC6x7VFWPAcdEZD8wGXgb8EtVPQgJz/dy4OxAIp4gIlXqzOnjORk4kLT/D+EMyfNuVe0JLPfGsdsAvKjuOI8i8irOgKCHVLVPRLpT7MeYjFiJz4x6InICzhfzfSKyHae1ssQd2FLIbFqFXt78fygLLP934E+qei5wddK6TF2EM7Fbsv8PZ7zEi4G1aToU3A3co6rnAf8raf/HAtf7cH5wpnu+BcClqnqhe5mWIml00v/5vQDMpP9Eht6+40lxxEn84VsKdKWIx5hBWYIyY8H7cGYPnqGqM1X1VJyWRh3wGPAxEakACJS8WnFKY57tOIkCEkt4xwG73esfGWpgInI+8GWcRBRcXgCcqqp/winbVQOVKeIK7v8GBvck8Ddu0g4+38dwj4O5yy9Mcd+NwKykZc/hJMbfDLXXoxvDgaSWlzEZswRlxoL348yPE/QQ8AFV/QNOOWqNiKwDvG7TPwLu9TpJAP8KfFdEluG0RjzfAL4mIs1AYYbxXOZ1M8dJTJ9W1SeTtikE7heRDThJ4E5VPQL8FrjW6yQB3A78wo3r4GA7VtUXga8CfxaR9YA3JcKngRq388RLOJ0xku+7CTjO7SwRXL4c53V7VIY2H9dbgaYhbG9MAhvN3BjjE5HPAq2qel8WHutXwBdVdfPIIzPjkbWgjDFB/03iMaVhEWdSwF9bcjIjYS0oY4wxkWQtKGOMMZFkCcoYY0wkWYIyxhgTSZagjDHGRJIlKGOMMZH0/wDFVId/oWsfgwAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "x, y = pd.Series(actual_distances, name=\"Actual Distance (km)\"), pd.Series(haversine_approximations, name=\"Under-estimation (%)\")\n", + "sns.regplot(x=x, y=y, color='black', x_bins=8)\n", + "\n", + "plt.title('Distance approximation error: haversine')\n", + "plt.tight_layout()\n", + "plt.savefig('underestimation_2.svg')" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAagAAAEYCAYAAAAJeGK1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJztvXmcHUXV//8+SciEJDPJDAlhJyEPCgQNkAiI+nwR+LkExAUUImFx4iNkVNBoWOITWaJh07C4RFEiLhhAAQFF5XEUcZcZBMMqE0JkScwyM5kkkP38/ujum7o93ff23Xtmzvv16tf07a6uPl33Tn36VJ2qElXFMAzDMNLGoFobYBiGYRhRmEAZhmEYqcQEyjAMw0glJlCGYRhGKjGBMgzDMFKJCZRhGIaRSkyg+jEi8i0RmVdrO/ozInKAiGwUkcFVut8vReTcatyr1ojIeBFRERlSa1viqPb3P9AQGwfVNxGRF4FxwHZgB/A08APgFlXdWUReH1fV35TZTKMEROQK4L9UdUatbakFIjIeWA7spqrba2uNUQvMg+rbvE9V64EDgWuAS4Bba2tS3yPNb+hpJKq8Ci3DvlTmfcnWfoeq2tYHN+BF4KTQsaOBncDh/ufbgC/5+2OAnwPdQCfwB7wXlB/617wObAQu9tP/BFgFrAceASY597kN+AbwC2AD8DdgonN+EvB//n3+A8z1jw8CLgWWAeuAu4CmmOdr9O1dA3T5+/s55x8Grgb+7tt4X5AXMB5Q4BPAq8BK4HPOtVcAPwV+BPQAHwfqgBv99K/6+3V++kuAvwJD/M+zgKeAYc69hjh2fQn4s1+eDwB7ALf793oUGO/YchPwkn+uHXiHf/w9wFZgm5/PE07+H3fK83+BFcBqPA96VKgMzgX+DawFvpDj91QHfMVP+x/gW8Du/rnjgZf9cliF95vpdcxP+z9Ah//d3w/s49xDgU8CzwPLE/zGcz4D3u/9L3i/6ZXA14Gh/rlvAV8J5XcfMNvf3we4G+/3tRy4MM/v42igzf/8H2BhyEb3+58P/Anvf+MhYIyT97H+b6MbeAI4vtZ1SZq3mhtgW5FfXIRA+cf/Dczy929jl0Bd7f/T7uZv72BXE2+vvIBmoJ5dFffjzrnb/AroaGAIXuV7h3+u3q8sPodXgdcDx/jnPoNX0e/n5/ttYEnM8+0BnAYM9/P4CfAz5/zDwCvA4cAIv7L5kX8uqDSW+Ofe5FdEJ/nnr8Cr+D+AV8nvDlzl27YnMNavROb76QfhifQVwMF4gnlk6F5uBdUBTARG4TW9/gs4yS+rHwDfc55jhv+sQ/wyWwUMc+z8UahcHmaXQDX79zoIGAncwy6hCOz6jv98k4EtwKEx5X0jnqA0+eX9AHC1f+54vKbka/3vbfeYYyfgichR/rGvAY8491C8F5cmdonfz4FLY2zK+QzAFLwKf4if9hngM/65/8YT/uA33oj3EraP/322A18Ehvrl9wLw7hy/j78AZ/vnRwLH5vj+lwFv8K97GLjGP7cv3ovZND/f/8//PLbW9Ulat5obYFuRX1y8QP0V/y2TbIG6Cu8N8r+S5uWcH+3/E45y8v2uc34a8Ky/Px34R0w+zwAnOp/39iuCIQme9wigy/mc+cf3Px+G53EMdiqNQ5zz1wG3+vtX4FSc/rFlwDTn87uBF53P4/FE+RngstDxcAXlvuV/Ffil8/l9OGIf8ZxdwGTHzlwC1Qq0OOfeGJSnY5frdf4dODPingJsItsLfiu+l4MnRlvxhTPHsVuB65zPI317xvufFTihgN944mfwz30GuNd5pn8D/+1//h/gt/7+McC/Q9dehv/iEPP7eAS4EscbyvH9/69zvgX4lb9/Cf4LhHP+18C5SctkoG3WB9X/2BevIg1zPd7b9kMi8oKIXBqXgYgMFpFrRGSZiPTgCRh4zYQBq5z91/AqI4D98Sr7KA4E7hWRbhHpxqvsd+AFe4RtGC4i3xaRFb4NjwCjQ9FSLzn7K/A8wzE5zu8Tcw7/3Iq49Kr6IvA7vArpGzHPF/AfZ//1iM9BWSEinxORZ0RkvV8mo0LPkIsom4eQXZ5x35PLWDxPtd35bn7lHw9Yo6qbQ9eFj2XZo6ob8TyEfZ004XJPQuQziMgbROTnIrLK/40swC879Wr/O/BemAA+iufpg/c73Cd4Vv9555JdbmE7Z+J5Rc+KyKMickqh9vr3/XDovm/He1EzIjCB6keIyFvwKoM/hs+p6gZV/ZyqHoT3Fj9bRE4MToeSfxR4P16z1Ci8Shm8t9J8vITXvBV37r2qOtrZhqnqKxFpP4fnERyjqg14TTZhG/Z39g/Ae1tfm+P8q87n8DO/ileBRKYXkWl4XkUrntiXjIi8A++t+iNAo6qOxutPC54xbGOYKJu3ky2ISViLJ5yTnO9llKq6YhZlS84yFJEReM2Xr+S4phQWAc8CB/u/kblk/z6WAKeLyIF4XtPd/vGX8LxD93dYr6rT4uxU1edVdTpeE/C1wE/95yuEl/A8KPe+I1T1mgLzGTCYQPUDRKTBf6O7A69JaGlEmlNE5L9ERPA6enf4G3gV2kFO8nq8tv51eG/WCwow5+fAXiLyGRGpE5F6ETnGP/ct4Mt+hYGIjBWR98fkU49XaXaLSBNweUSaGSJymIgMx2vC/Kmq7nDOz/M9sUnAx4A7c9i9BPhf36YxeP0TP/LtHIPXfPVxvA779/mCVSr1eIKyBhgiIl8EGpzz/wHGi0jc/+kS4LMiMkFERuJ9T3dqgSHZ6g1L+A5wg4jsCSAi+4rIuwt7HH4MfExEjhCROt+ev/neZyWox/stbxSRQ/CCVzKo6j/wyva7wK9Vtds/9XegR0QuEZHd/RaDw/0XvEhEZIaIjPXLKshnR1z6GH6E99t5t3/PYSJyvIjsV2A+AwYTqL7NAyKyAe/N7AvAQryKOIqDgd/gRYT9Bfimqj7sn7sar3LuFpHP43Xkr8B7830ar18rEaq6Aa/z9314TR3PA+/0T9+E1xH/kG/3X/HebKO4Ea+Tea2f7lcRaX6I1x+2Ci8g48LQ+d/jNWu24kV0PZTD9C/hRWn9E1gKPOYfA7gFuE9VH1TVdXjNPd8VkT1y5JeEXwO/xAuiWAFsJrtp6Sf+33Ui8ljE9YvxyuARvEi0zcCni7TlEryy+qvfXPYbPA82MaraCszD81RW4nnSZ+a6xh94PLcoi+HzeN7+BjyBjXoBWYLXEvBjx84deL/PI/DKbS2eiI3Kca/3AE+JyEa83/GZEU2eOVHVl/BaJubiCedLwBysHo7FBuoafRIReRjPW/xuxLnx2ABPw+jzmHIbhmEYqcQEyjAMw0gl1sRnGIZhpBLzoAzDMIxU0i8mQRwzZoyOHz++1mYYhmEYCWhvb1+rqmPzpesXAjV+/Hja2tpqbYZhGIaRABFZkT+VNfEZhmEYKcUEyjAMw0glJlCGYRhGKjGBMgzDMFJJagVKRN4jIs+JSEeupSEMwzCM/kkqBcpf8+cbwHvxFqKbLiKH1dYqwzAMo5qkUqDwlhLvUNUXVHUr3jISccsyGIZhGP2QtArUvmQvO/Ay2atyIiKfEJE2EWlbs2ZNVY0D6OyMWrTWMAzDKBdpFaiolVvDK1zeoqpTVXXq2LF5BySXlc7OThYsWGAiZRiGUUHSKlAvk71c935kL9ddU5qampg7dy5NTU2R50sVrmKuN7E0DKO/kVaBehQ42F/Keijeqpz319imLFxxcsWhVO+qmOvNozPsuzf6I6kUKH8V1E/hLYn9DHCXqj5VW6uiK4GwOOTzrvJRzPWl3tPo29gLitFf6RfrQU2dOlUrOVlsZ2cnXV1dLFq0KFIIOjs784pDkjR9nYHwjGnFyt7oS4hIu6pOzZculR5Umli2bBnz5s1j4cKFzJo1i6amJjo7O7PeVpOIU9QbbjneeNPy1jyQ3uLT+Iy1EKc0loPRvzCBykFnZyeLFi1i9uzZzJ8/n4kTJ9LZ2cm8efOYM2dO4n/QqCa4Yvuawp/TIgrlbmYM9+uFj9WKNJV5LbFyMKqCqvb5bcqUKVoJ1q1bp+vWret1vKOjQ1taWiLPudfmOxf+m8+Wz33uc0Vdm8S+YvMplnzlEzxrsN/R0ZH1/OW+Zy3y6etYORjFArRpgrq95uJSjq0SArVu3bqcIpSkgu3o6Ig95wpM0orXvSbOtjhRdQlX9oXYELalGJLczz1XqhgnvWe5sIrbMHJjAlUi+QQqnDa8H4hAR0dHL9Eo1XuJsy04Hmd3YEuUeBYqToVU9nFCWsy9S6Fa4lQtITSMvooJVBmI84DCn8PNUa5INTc3a3Nzs7a0tGQEohzEeRWuGLrnOjo6dMqUKYlsSOKxFCJOcd6ke74/VehpepZyvUT0FfqizQMRE6gSiao44ypTt/INpw+EKei3CrwbVwTiPKpCm+ry2R9nZ9R1xfT5xKWNalJMcl2a6As2hkkq/oX81tNMX7R5oGICVQbiKv5wRZ/rnyL8Tx9sgXCFm+RyCURUBdLW1laQ/VE2x3lhhfT9JC2HUiqROC+s0pSjSbNW9AcPqlp9o0b1MIGqEEFTWSAM+YIS4v7xXU8qiQcV1VRWqJcTF3gQFqu4Zss4e3M9aynpXDo6OnTy5MmJvMBCKMTmcgh1MRTyolBuqlnGcdeaV9T/MIGqEOvWrdPW1taM9xJ4QsG5cFpXVNx0uZrDwnm453J5Vfnsjrs2SqyiPL+WlpZMf1rS+xbj9QR5h8V45syZOYW1mPsUEkFZaLRlMeT6DVXj/m4ehTQR5jqXluEBRnowgSozbiXd0tKSEaezzjpLZ86cGVuBBMfb2tp08uTJ2tbWFluxtra2Zrwzt4Iol9eQyyOLE9moMkjqTUR5Pfnsc5su3aCOXJGHpVSCpTYfldOji3uOcja1hvPMl0eSfAoZMpAW0mjTQMIEqoxENXMFx91Bu7m8ora2Nm1ubs6KonPzDSrze++9N6tfKl+AQT67o/YDArF0xSBXevd5knhRYa/HzTfOU3DLsZDKP2nlXc6KKRwZWcrg7ULSlJpHuUWlr3lHhb7QmJiVHxOoMpCrgneDE+J+wIHANDc36+TJkzNNg2GRC7bm5mZdt25dxoMK5++KVVRlG9ccGNe8l6v5MVd0YEtLi86YMSOyKTCcf7icgnvGjeMqhxC5uM+Va4xYrvvl+h2E88/1W6jmYOha5l2IDfk8tUJfzJL8fgp5USnFOzfiMYEqkbhKXdVrihs3bpy2trbGXutWiIEHpdp7sGzYi3Lfyl3CA3/jov9cgcnlgQT3i3rmsJcXJhAYt7kyqryimj2DsoiqzPP1sxRaWYTLMvxikI9wOUeVazh9vvyqWTGmoVJNWiZxTZuF9L/lK7PgJbCYlxSjvJhAlYE4j6OlpUXvvffeSAELey6BNxR4E64YBZV8kDbwSsL9QUFFGRacsMhEeWVxz+WKp3s8sDEQS7dCjhKffM1wrogHFcThhx/ey7OKyi/O9nzHwnZGpS8k4CCX6BYqeHFBKHHpiyXXC1YpeZZiQ67rq+FBRf0fGeVn586dun37dt2yZYu+/vrrunHjRu3p6dGuri5dt26drl692gSqXERV+lGzQgTHg4AJ1ew3+KjK/tRTT80EEbS1tWljY2OvAIngc5zHERV6HdiX720/3H/mBoDMmDEjy0sKC2+4TKIIPE03JD9o8gyLb6EVh1uO4dk7klTM+QQ8jvDzh8s6n4CGPYZyeEq5bHX3S+l3KtZO9zdSzucs5TmMZOzYsUO3bt2qmzdv1k2bNumGDRu0u7s7IzKrVq3SV155RV966SV98cUXddmyZfr888/rc889l3czgSoDYa8pXAmGhcGtfIO0rqfgpg+i+gIPo6OjQydOnJjlZQVRfYHABfdx7TjrrLN6CUZgazhi0LU1+BtuJgzuFUQchtO7FU3UQGP3HjNnzsw8X5T3kCTsPmxzcF14LFr4+3Kvi/NacjUrxQlN2CNwg1miyiKJ15TLS0hSNkkpVYCKsSPu+UuhkO8oXz5R+/2NsDezfv167erq0rVr1+rq1at15cqV+vLLL+uKFSt0+fLl2tHRof/6178SCU0x29NPP20CVS7ClX7Um3pYyNzouLi+pnAAQUdHh06aNCnWg3Lzd2ehCKLkwt5Q3Ft9VCUb9ZYb1QcWTp/La8g3sNYV3yTfQbjSySe+Ud9hlGeVz+MJpwvP3JE0v3wVZ1RFHvzugujPuOviKFQUyplXMdeW09Yk14f7FtMsUjt37tRt27bp5s2b9bXXXst4M52dnbpmzRpdtWqVvvrqqxlv5oUXXkjszRQiLI8++qj+7ne/0wceeECXLFmit9xyi95www06f/58veSSS7SlpUXPOecc/dCHPqTvete79LjjjtM3v/nNOmHCBB07dqwOHz5cgcQCZUu+h4hbOjtYmG3BggXMnTs361xTUxPLli2jsbGR5cuXs2TJEqZPn575u3jxYubPnw9AV1cXCxcuZPbs2ZkFEIP7tbe3s2TJkszCf0GeUYTPz5s3j56eHm666abM8vSzZs0C6LVUvXvPzs5OLr74Yurq6jI2hp9/2bJlnHbaadx6660Z+4JnmThxYla6JJ/b29s5//zzue666zjhhBMSfQfhvNzvJMrmKMJ5BIvuTZ8+nSlTpvRK29jYSFdXF1dffTV1dXWcdtppzJ49m7vvvruXLblsT3LOfZ7gNxZ8xwsWLGDYsGHMnj2bxsbGrO/OTRvOa968eQCZ31qxuHnNnz8/8neU7/o4OwtJUyxRdgbPFDxP0mcplZ07d7Jjxw527NhR0H4p9fTOnTt57bXX2LRpExs3bmTDhg1Zfzdt2pTzWHD8tddeK2NJ0K4Jlnw3gXLI9w8f/JDBq0RmzZrFokWLmDZtGnfffTc9PT00NDRkKpKuri4AFi5cmKn8AyH52Mc+xhFHHJHJJ6hAgko0+AfavHlzpnIKhCbg4osv5rrrrqOpqYn29nYWL16cSTd9+nQmTJiQlX9ge3hl33nz5uWsxNrb27nhhhu4+eabgV0iC7sqrGXLlnHGGWdw5513Rt4rOP/tb3+bJUuWMG3atCxxcss3qDiC693vxRXFcMUZfrYk320glt/+9rczItXe3s7MmTM5+OCDGTVqFKpKS0sLixcvpqenhyuuuCLLBvd34VZ6cbjXxL00hL+jqDKPShu+T/CyUmrFH/4+CxWUJAIQJySl2p3vfzqpPcFnVc0IhysmSYSmEFSV119/PSMQSQTG3dzzlarnd9ttN0aOHEl9fT0jRoygvr6ekSNHZvbDn0eOHMnIkSM5++yzTaCKIe6fxPWc3MrF9QZuv/125s6dS2NjIxdffDGqyrBhw2hubs6q/K655hp+//vf88tf/pLRo0dnPKrGxsas+wQCF7w1B2/1CxYsYPLkyVx77bXcd999ABmPKRBGN0+34ofelXkur7Grq4vTTjuNww8/PCNQgei5b/PQW1yDewX3D8Rl2bJlGXvd9PPnz2f58uXceOONXHHFFb2eqbu7m/PPPz8jgsE9gzJK8pYe9d0GXm9Q7gsWLMi8dITL0K3w3bIIbHVfRuLKNPDawvfMV9lHiUSSZ43zNEsVhEp7HcV6VXHCEmbnzp2RIrJz507Wrl3LwoUL+fSnP01DQwPr1q3ja1/7GhdccAENDQ0576+qbNmyJSMSq1atAuglHFFiEghKsF+oqCVl8ODBWaISJyTBFhagYKurqyvq/m984xtNoMpJUBG6b6OuSE2YMIE5c+Zw/fXXA2S8Evca2FWhLV26lA984AN0dnZy0UUX0dDQ0KsZMPCeguPBP+vjjz/OmWeeyVvf+lYWLlyYVZEH912wYAFbtmzJiIr7lu/aEeU1hZuaAqGM8hrimkfcyjSqoglEKiiXefPm0dzczHnnnce2bdu4/fbbM+K9efNmtm7dSkNDQ5bYh4UwEMA4TzHJi4dreziPqLyiysItu6jrwwIdZ18u8nkG7rm4F4bw9cGxuN9FtYn6HqNwBWbNmjVcd911zJ49m4aGBtauXcvOnTtpaGjoJUJRdd/WrVszYrFy5Upgl7CsWbOGHTt2ZIlK2KsJtu3bt5e/QIBBgwZlxCKXcESJjHuurq4OEamIjUkwgSojnZ2dzJkzJ9PUFlSCwT9z4K0E//CNjY08/vjjHHHEEVn5BF7Q0qVL+dKXvsSdd95JY2Mjc+bMYe7cub28i6j+J7e/asKECb0qx6DZb/ny5Zm3dLcPzL0+OB6uyMMeUvD8119/fS+BCbyHsPhE9Rflelt3+3xWrFjBgw8+mCWOl19+OVdeeWVsP5Tb7xaIWmBvuDJ2Pb1wubplkKvfLnxNmFxNdnHHch2PIqqc4/JxPdhc91q2bFnGC0xic66yKORZAtEIBGTNmjV85Stf4TOf+QyjRo2KbTLbuXMnANu2bcsIxquvvoqI8J///Ie7776b7du3c/TRR7N9+/ZYDyY4vm3btkT2FoqIZHkrrsAEwhElOuG0u+++e82ERUQYNGgQgwYNyuznOhb3d9CgQey+++6JBGpINR6sP+CKE3j/kG4FCt4XuGDBAl588UWeeOIJTjjhBMaOHcvs2bNZuHAhzc3NXHXVVfzlL3/hq1/9alYl2djYSGdnZ6Q4uQEQAVOmTKG9vZ2mpqasSsB1uTs7O1m/fj1AphkryHvx4sWZc2HCTVVdXV20t7ezfPnyTAXvegBuRR703wSBBK4IhHHF6fLLL2fUqFHMnj2bBx98MBPgEZTbY489Rnd3d2QenZ2dWU2ap512GnfffXdWmlmzZmX1lQV9YW7znPvdBumDcnQ9rSQBA/n6auIq9HAfVi4hcz3Q8MtB1DVJ+qLignLiRNsti3B/zPXXX89nP/vZjMCERWjnzp1s2bKFnp4eXn31VQYNGpTVpzJixAi+9a1vxXbau8e2bNkS+0wAjz76aM7zuRg+fHhej8QVmfr6egD23nvvzPHhw4czaNCgom3IRRJhKPacKz61wAQqAU1NTZFvlOGIvMsuu4wVK1Zw5plncumll/LBD34w8w/f09PDDTfcwAsvvMDFF1/ME088wcknnwx4P7Dg7TaomN1//ObmZmbOnElXV1eWEJx88sn84he/yDR5NTU1MXv27Ixoffe73+WEE07gwAMPzAROBJVxIJpBnuHgD5eJEyeycOFClixZApCJTgxHIXZ2drJ48WIOP/zwjODOmzePLVu2oKpZHlhAZ2cnV199NX//+99ZsmRJluAFNq1fv56dO3dyww03cOWVV/aKZHO5+OKL+etf/8r3v//9rDRB5Txx4sRMQMTo0aMzZe56DW76oCzdijmqDy9Xk54rdoUQjuoM7uXaFHxnwctSOFAluC78DLmE86KLLmLkyJFs3rw5IySDBg3iggsuYMeOHaxatYpt27bR09PDKaecQk9PD/feey8/+tGPMpFexxxzDJs2beLSSy/NvFhEeS6vv/56weWSlN133z2vkMQ1h7l9MqUIS1IvoxAPJCwq/Rlr4iuQcLTZ+vXrufnmm7OamP785z9z7bXXcuyxxzJr1qysQIgVK1Ywe/Zsbr31VqZMmUJnZycXXnhhxnsIIrXCIcXt7e29QqF/+9vfZiLhwlFkQXDD3XffnRFJ1/sJKrRwM12QLiw8QR+RG0If17wXFpCuri6uuOIKbrrpptgghbPPPpsHHnggq1nRtXfatGksWrSIhoYGRITrrrsu63nd57v66qsz0Y1R31tUkEJSzyXuXNyxYgJTwp6e2+cWJSrhptKJEyeybt06vvzlLzNnzhxGjRqV8Vq2bdvGxo0b6erq4qWXXgKgu7ubDRs2sHLlSjZu3Mjvf/97DjnkkEzaqG3Tpk2RZVMO6urqYjvt3eavXE1mI0aMYMiQIZnnGz16dK/7JPUoShEWIxoRsSa+chOuIFwvJPBQLr/8curq6jjyyCP56Ec/yllnncVb3vKWTGhyY2Mjb3rTm5gwYUImXxHJeGFREWCdnZ0sWbIkc01Q0T744IOZfq6w59PY2Mjhhx+eOTd37tyMiAVv9EFTVuC1uHkH93WZMGFC5tlHjx5Nd3d3Vti763m4b/pdXV0sXbo00xwa1Sn/1re+Nes5gnwaGxuZO3cuy5cv5/nnn2fhwoXcfvvtvb6bIM/GxkYuu+yyXuXnpnOb9VyvKK6JLqp/Kjx2Ki5oIvg+3e/B3Q+/DLjPcccddzB+/Hi2bt3K9u3b2b59Ox/+8Ifp6Oigu7ub9evXZ7aenh42bNhAT08Pa9euZevWrXR3d3PyySezceNGenp62LRpU+KQ48cffzxvmjC77bZbllcyYsQI6urqGDp0KHvttRc7duxgxIgR7Lvvvr1Ex+2DGTp0KFB4n0ew393dzZgxYzL73/zmN7n00kvZY489at5kZRSGeVAFEhfBFngKwYDWCRMm0NXVxfve9z6mTJmS8R6CgZdBc5PbZwNkAiXCIdxR0WHhSLmA4D5uPxLAnDlz+POf/8xxxx2XqSijvKkgyADIiiJ0K+ELL7yQBx98kJ/+9KeZgAbw+roCj9Gt9KOiIPOVZ/C8gaBMnz4dICu4I8rTA7KCWYoZZJorGi8YWhAEubjfQdg7a2xsZOPGjXR3d/Piiy+iqqxfv55XXnmFHTt2sHLlSh566CEOP/xwtm7dyrp169iwYQPPP/88DQ0NvP7665mmsSAgoNwMGTIk008yatSoyGawqEixhoYG6uvrGTVqFJ2dnRxyyCGx3sSKFSs4++yzATJNueF03d3dWSJSDHF9ZZBsMLdRHZJ6UCZQBRKuOMNRVOGmuCDaDnb1Wa1fvz7TpBc0Xx144IGcccYZXHfddVx00UUcffTRsX02Uf0IQd7Nzc2MHj26V8d/YMuNN97IZz7zmaxBp8EYovCA3oCof+z29nZmzJjBz3/+80wlff755/Pss88yefJk6urqsuwvNoTZFazly5czc+bMTPOo+324ohaUhSti4efJ14S3YMECZs+ezYYNGxg0aBBLly6lvr4+47k89dRTDB48mIceeoitW7dy8MEHs3nzZtasWcNLL71EXV1dZpBlpUKORYSRI0eiquy1116MGjUq47UE3sjTTz/NSSedxIgRIzJp6uvraWhooKGhgVHFexa4AAAgAElEQVSjRrH77rszePDggpuywuWVLwAjeEmJi8TMFTlZCHFebyVmqTCKwwSqArhRVuEBm+4bdHgAanNzM4sXLwZ29S0F14T7hBobG7nooou44oorgN7/zGF7AubNm8fq1at55plnOPbYY7nsssuyxtgAmcHDc+fOpbu7m3PPPZfvf//7TJkyJSv0OmkFEYix6z0uXLiQAw88MMt2t18lLvw8/JYbVclcfPHFbN68mZtvvjnLSwzKNRClbdu2MXfuXD75yU8yaNAg1q9fz7///W9uu+02tmzZwpQpU/jTn/7EoYceypYtW1i7di2bN2/ONJFVM+TYbeaqr69n2LBhNDU1ZQTE9VJGjRpFQ0MDqsqBBx7Ili1bGDt2LF1dXYwZMybLE7nmmmv4whe+kFWmhVKIQCRJG9dPFzcWrZyiUqzYlZJvpe7ZH0gqUDWf6LUcW6UWLHT/BvvushDhSWBVNWsxPnfZimCW8FyTk7qTvoaXYc8363Zra2vmnlGzj4cnsu3o6MiyLTy5bZA+3/3dSXOD55s5c2bkIn+5VvVtaWnRCy64QNva2vQf//iHfuQjH9ElS5bo/fffrz/84Q/1i1/8oh599NH68Y9/XM8880z90Ic+pAcccIBOmTJFJ02apPvss4/W1dVpXV1dMBllRbYRI0boXnvtpQcddJAeeeSRetxxx+kpp5yiH/3oR/X888/XOXPm6Pz58/Wmm27S2267Te+55x5tbW3V1tZW7ejo0LVr1+qWLVt0x44dunPnziJ/nfkpdc2jckygGvU7TDI5b9T1hd6zGDvDx/LlVa5Z1Qci2GSxxRN4Pu78d25fStAfEvSFBJ4PkJk/r6WlhfPOO49DDz2USy65JGtWBHcAqZvvggULEJGM9+N6NXHRW+D1+5x88sn8+Mc/zuoPCs8E4U6ZFJ5xIfBGAm/Pnb3BLYfwbA3gDbLcbbfd6Onp4amnnuI73/kO06ZNY/fdd2f9+vWsXLmSrVu3snr1arZu3UpPTw+dnZ2ZvpXXXnuN9evXZ/q9KoE7lmX48OGsW7eOwYMHc8wxx7DbbrvR0dHBu971Lvbee++MtxJsPT091NfXM3PmTO66664szzANTUeVatIqxQNwWxOixmsVmk+SZ8mVNlfUZL7xXfn6Kkv1oAaip2VNfCXgNuUFhDvJFy9ezJYtW7jssst6hYYDmdDqYLqioUOHZiYcDdK5zYULFy6kp6eHoUOHZglYcO98zSPLly/PivILzoPXtNfW1pYJOQ+uGT16NP/85z8ZM2YMS5cu5ZZbbuGMM87oFRW2bds2XnnlFTZu3Mjf/vY39ttvP1auXMmQIUNYv359xfpYwJszbLfddmPs2LHsscce1NfXM2TIEMaNG8ewYcMYO3YsQ4cOZfDgwey9997ss88+DB48mLvuuovZs2dzwAEHZK5xcQU5aKaMKl/IFvrwTAxuecdRyQooSeh5rQgHvpSaT7Fp84lcru++0mWYlpecamMCVSLhcTNu5Jwb0h14E24UXCA+zc3N3HjjjWzevJm6urpe46WCfK+++mpmzZqVifwLRM6dXim4F8CaNWsYOnQo3d3dLF26lIaGBh577DF+8Ytf8Pa3v52hQ4fS09OT2dauXcuaNWsyU70E41gqOcvx4MGDM30mdXV1rF+/nqFDh3LUUUchIvzhD3/glFNO4aijjmLw4MHceeedvPLKK1x11VXss88+/OQnP2HevHls2rQpNqIx6vsJf3+5cKPxovrGwkurBN9NrvuG84BkE8GWQpKIxLRUfqV6ZbW4ttJ5pun7qRbWB1VGwu3IQV+Lu5pqcNztU/nXv/6lp59+uk6fPl3PO+88ffLJJ3Xt2rX66KOP6n333afTpk3TK6+8UseNG6fHHnuszpo1S4888kidNGmSnnrqqTp+/HidMmWKNjU1aV1dne65555aX1+vIlKxPhYR0dGjR+v++++vhx12mB555JG6zz776IknnqhnnXWWHnXUUTpnzhz90pe+pDfffLN+85vf1NbWVn3ssce0o6NDn3vuOd28eXNW/4G7sGFQbq2trb0WTgwv8Bi3yGCwiJ+7eGTcd5WPXH01rm0zZ87USZMm9VquPtc15V5JthhK7Qspp+2l2JLk2vDvpJJYH1NpYCvq5mfnzp26Y8cO3bZtm27dujWzWuWmTZt0w4YNun79+syqla+++qo+/fTT+tBDD+lpp52m1157rb797W/XlpYW3XvvvfXjH/+4fuITn9DTTjtNTznlFH3b296mb3rTm6omLIMGDdL6+nodN26cHnzwwTpu3Dh9xzveoR/84Af1nHPO0bPPPlsnTZqk48aN0y984Qv6ne98R3/1q1/pX//6V3322Wd11apV+vrrr+vatWsz5bNu3Tptbm7WQw89tNdS9sH5JP+k4c7ysLC7hIMposTADUQJC0ExopC0QzxqdeJwmijbS6XUfEoRp3JXwuUIuog7F/U7qCQmTsWTVKBq0sQnItcD7wO2AsuAj6lqt3/uMmAmsAO4UFV/nS+/o446SltbW1HVzGSUwb4bPhzuWwnPDeYu8BU+VsmQ48GDB9PY2JgJPW5sbGTYsGH8+9//ZvLkyYwdO5b6+nr23ntvBg0axEMPPURzczMNDQ2MHj2ar3/961xyySVs2LAha/oe6N0f9fjjj3P33Xfn7fwNCJovw81s7vkk/QxRTWZxiym64evh5jT3uvC0SO5zJh1z5YaqJy2T8PPENS0W03QTFW5fyz6KvtT8VGrZG9Uj1U18wLuAIf7+tcC1/v5hwBNAHTABT7wG58tv9OjReuKJJ+oxxxyjkyZN0gMPPFD32GOPioccDx8+XMeMGaOjR4/WQw89VPfdd1898cQT9dRTT9VJkybpOeeco8ccc4zOmTNHv/KVr+hJJ52kN954ox5wwAF6xx136NKlS3X9+vX65JNP6vnnn6/nnXeeNjc3a1tbm6pmNxkGf1Wz39xaW1t15syZetZZZ+nkyZMz10a9UXZ0dGhzc3PGG3I9mGLDkpO+sUZ5KW6TXktLS1Z4vXsu/MxJ7hkX1h62KQivL6YpLukbfSH5BeUQZXetmwqj9vsCfc3egQB9pYkP+CBwu79/GXCZc+7XwFsT5FGwsOy555560EEH6Zvf/GZ929vepu9+97v1Qx/6kJ5zzjna0tKil1xyiV511VV644036uLFi/W2227T008/Xe+55x7917/+pc8++6y2tLTo8uXLdcWKFbpp0yZ96qmndMuWLbp69Wp9/vnnVXVXJRxUgG1tbXrIIYf06m/p6OjQ1tZW/fCHP6yTJ0/OqpiD8+Hmq9bWVh03blxmjE24CSrcN+OObero6MiMswr2XXGLqszDhEUw13iWmTNnRvYlhZ/TtTtKZOJsylehxwlG+CUg6rnzlUUS++JIcr9c9leDWjSflYtC7e0rz9XX6UsC9QAww9//erDvf74VOD3muk8AbUDb8OHD9eyzz9ZZs2bpnDlz9Morr9SFCxfqLbfcorfffrs+8MAD+sgjj+gTTzyhL7zwgr7yyiu6atUqXbNmja5bt067u7u1p6dHN23apK+//rpu3bpVt2/f3msgZVT/iFuphr2BKM9nxowZetZZZ2UJxsyZM/X000/XSZMm6YwZM3oJRVjI3PsE4uQOtI2qSKJscQUsCFoI8g0HA+QakBjuWwrT0dGRJbrBde494khy3rUvrg8rLi/3O4wSi7BHE9XPVMmO/3D6WlGIBxVXzrWikPLtS+Lbl6m5QAG/AZ6M2N7vpPkCcC+7wt2/ESFQp+W71xFHHNFLaDZv3qxbt27VHTt2lLVgo97Kw5V/4JWoakZsguOTJ0/OzPrgekctLS36gx/8oJcQBV5X+D5B5Rmcc/+GbQ2LXFwl69of18zkPkv42ubm5timwvBxV9CSeiBx3k9YJMO25co/STNg+HxSDyrf8xRybRpI6hHGzRjSF561L9jYH6i5QOW9MZwL/AUY7hwrqomv0mHmuQi/fbtv3W1tbb2a64IINHc6oKB5r7GxUU8//XRtbm7OVLRR4hLgek7u5yiRCHs5UXZHPVcUbvOgKw7uM8WVU5RNcU1rYfHJ5REG14S9srjnc58l6p5RlOLxxFXcfaVCLOTZ+7oQG5Un1QIFvAd4GhgbOj4pFCTxQpIgiWoLVNJmI7fCDDdDud7TlClTtLW1Vd/4xjdGdtjnqsg7OjoyTYbB57gmrrBnlKTSyVWxR3licR5ILm8plyCEhSo47npKbvoogcx1vFDRKESccpWN+yLTVyrvpJ5urrSGoZp+geoAXgIe97dvOee+4EfvPQe8N0l+1RSocIUZV/EFhN/Qg2vcSV3dprXw9W4FFzUgta2tTceOHRvZtOd6GXHeVb7KON+4niTXB15j0si68OcoUS7UU0ua3vVYSyXfi4DbFFxuqiUQcSLfV5r0jNpQVoEC9vSj7T4JNANHA4OSXFuNrRoCFSUOURVf2FuIevufMWOGTpo0SWfOnNlLlNzr3Sa8qBnCXZFy8wj2XXHI1T+Ui0K8rShyhchHCWBUM164/AoV2iTno2wuZwUb59WV4kHl8miqKRBxTcrlwoSu/1EWgQLe6fcDPQrcAnwJ+ApwP/AUcCXQkORGldwqLVBun0uYKC8o3Izmhne7x8LBD66HFUTVRQlMXFNaVGUeZVMS8nkypeSV7z7BX7fvLZcnF1chl1KxlVPw4tKXWqZJQ/ArSaXF0Lyx2lOJsi+XQF0PHBBzbgjwgSRRdpXequVBxX1R7jiiqEi6lpYWPf3007M8prBoueLnDlYN8sjlyQTn3ei+YirrJJ6M+0yVrjQKbQoMf65UxVZo3m74f9I8C/m+ak0lxamS+Rv5qdT/Uar7oMq9VUOgwk13YVyhCYTIreCD8U+BKLW0tOiHP/zhyCY7N784W8J2uZF/4TFMSSu7qEG3UU1q1RKoJLbmS1fM+XKKQ3gQdJI8zWuwMkgTqfWgeiWGY4HfAn8CPljItZXcquVBxXX0h9NNmjQpS4yCCj08PuqNb3xjZN9MQNLmH1dUwkJaSD9HVHNaPtsq2ddQSNNgMffKF95eLkrp+6sltbYh6cuV0fcoVxPfXqHPdwEjgXpgaZIbVGOrxnIbbn9IVMSci5subixPR0eHHnroob3erMNv0UG0X9K57sL/1OGmyVz74T6scN5x5VKOiiSqiavSb9CleFD9nTR4MLleIoy+TbkE6mfAPGCY//kWf4qhjwN/SnKDamzVauJbt84b1xRMyhpVQYf7aaLCzFV3jV9yvZ1wfkFfVK7+L9dTCpr54prnwvnH2R71HHH9WnFNlEnLtJDPRnUptvwr7VXXWjiN0r/jsjXx4S2L8RvgbGC4L04XhgfZ1nKr9jio8HpErhCEo/FyiUPU1ENRnlb4/u6+e12u2SaivKs4oYoKishXUUSF4cd9dq8vtPkr3z+GVVy1pZaer1EdyvEdl3sc1GDg08CvgHckuaaaW7UEKuxVxHkcqrsGYSaduDTJ56hmsChvKaoPKa7vLCyK4WUukpZHlGcWPhem0PFGufIqxZMzyouVf/8nFR4UcCrwR+D3/pio0cBCYAkwMckNqrFVq4kvXPHmmhg1iNyKEqdS7h1X8cc11blpo7yxfPPbFWJj1H7U56TnkqaPKh/DMNJLuQTqn8AIYAzwd+f4wcAdSW5Qja3aHpRq9BISLm6ARJKKP5dn456P89rydSbHVdyV6vcph/CU8/pKCNdAE8OB9rxG5UgqUIPIzXrgTH9bHRxU1edV9cw81/Y7wktIT506lcbGxsi0U6ZMySxRvnDhQqZNm8aiRYsyS3rDruW9g2W93c/z5s1jzpw5zJs3r9fS552dnZm0y5Yto6mpKXLpcTfPrq6uRM9UyJLnuc65986XR1z6fNcnJarcyplnualEnqVSyec1jFhyqRee5/Rp4AJSMKVR3FaLPqhC+mncQbRxaxXFBTCE31rdcVXBMu9xAQru4OG4qZpyPWeu88XOgh6XR67gjXz5JLUn1z2LoVJeWVr70dJok9E3oUxNfCPzZpAgTaW3WvVBuefCx8LHg7n3XKEI55ErmCBcwQbH4tYziupfinqmfM+ZqzySkrR5MXz/QkSukECL8LVpI402GUY5KZdAtQJfBf4bGOEcPwiYiTeRbOSS7NXcqjFQ1/0bPhcVPReuPN1FDKPyiKtkg76umTNnZqXLFc0WtR9nd1zfV7koRggqlbac1xqGUTxJBSpYaj0WEZkGnAW8DWgEtuOt1fQL4FZVXVW+BsfimDp1qra1tZWUR9DPE3V8wYIFmf6kuDRBH1GQJmo/6vqgvwlg/vz5kfm3t7czYcKEXn1Mwec42/MRvs591iT5Jb1vrnTF2m4YRt9FRNpVdWrehElULO1bqR5Uvrd81wtK4pW4y1sk7R+J6x9KYlst+lWi7Comcq/YJjrDMPou2GzmhZGkvyPJpKuumOVavyl8Ta6gi6T9QdXuV0nah5br2kIDItLab2QYRnJMoCpAIQNY3T6pXLM4RKUvhUpFlhWTLlfQSLHeV5rFKc22GUaaSCpQ+cZBGT6dnZ0sWrSIZcuWJUo/ceLETL/VokWLmD59eq/+nmCMU5B+1qxZOftqkhC+RykE44aSjn/JNQ7L/Rw1bitpP1SudJUao5MkXxsnZBjlJ7FAichgEdlHRA4ItkoaljaampqYNWtWr8G2LuHjTU1NmeuWLFmSd3BrXN6FVn6usOQT1LjzwfVA4qAJl7AIRX0uJ5USiKT5RomuYRglksTNwhusuxZ4Cljqb/9Mcm01tmrPZh533J2hPO66uPFTSfqpktqXr2kxIGoAb5LxXUlsKIVir69UE5s13RlGeaHMs5l3AHskSVuLrZoCFcatxIPoPXfJ9XDaqL6XQla9LcSm8H4UcQN9cx3Ld+9S+tIsEMIw+j/lFqjfAUOSpK3FViuBihqk29HR0Uug8glGuQfHhvMuNX2hnl0aAz0KuZ+Jo2FUlqQClbQP6gXgYRG5TERmB1s5mxr7IkH/UhAQ0dTURGNjI8OGDcukCfdhRA3UDfqqatV/4hLVh5IrcCMq/1L7YarZjxN+hmXLllmwg2GkhLwzSQCIyOVRx1X1yrJbVATlmEnCpZAZEqJmXoiaoSFKmICsWSoWLFiQEbxysWzZsrLmF6Y/zAQRni2+3N+BYRjZVGQmCaCeFEwOG97K2cRXTJ9LePLXQgb95hsLVUpzU7nGVrn09+av/v58hpEGKGcTn4gcLiL/AJ4EnhKRdhGZVIKAppa4tZXi6Orq4owzzqC9vT0T1p2riSiuOayzszOrqTA4VmxzUxC2nmtsVZQ9udLlsqe/NIn1dW/QMPoVSVQM+DPwTufz8cCfk1xbja2SQRJJPKqkHlQ4BDzJPUoJoCjX1EH55syzyDvDMAqBcs1mDiAiT6jq5HzHakW5+6DClLOfJdz3lG9G8kr3i5RjRvJy5tPfGGjPaxhJSNoHlTiKT0Tmich4f/tfYHlpJvYdSq1gwsttFDrVT74ZLErBFcgk6Yo9H9xjIEXIDbTnNYxyk1SgmoGxwD3Avf7+xyplVF8g6Zx8pfYjLViwgMbGxshpdMpV8VWrIh1o0wENtOc1jHKTqIkv7VS6iS/MsmXLOOOMM7jzzjsTNbuFx0AVsjBgkoUUy1EBWlNUbUgyJMEw+htlaeITkRv9vw+IyP3hrVzG9jUmTpyYWJwCAg8lbjbvOOLSlPvt3CrF6pNrxnfDMPJ4UCIyRVXbReT/RZ1X1d9XzLICqLYHVQxxwRHVurcJUDoxD8oYiJTFg1LVdn/3CFX9vbsBR5TD0IFCUOkEs0ZU6y3Z3srTTViMTJwMYxdJgyTOjTh2Xqk3F5HPi4iKyBj/s4jIzSLSISL/FJGjSr1HWgiEoquri3nz5mUtVlhJgqbAWjIQxHEgPKNhVJt8fVDTReQBYEKo/+l3wLpSbiwi+wP/H/Bv5/B7gYP97RPAolLukSYCoWhsbGT27NnMnz+/rKvf5qNWXtRA8OAGwjMaRi3I1wd1IDABuBq41Dm1AW/Bwu1F31jkp8B84D5gqqquFZFvAw+r6hI/zXPA8aq6Mldete6DKmSQ6rx58wCyBGrZsmUsWrSoqL6pvjBANk39KpWyJU3PaBhpp1x9UCtU9WFVfWuoD+qxEsXpVOAVVX0idGpf4CXn88v+sapR6Ftw3NtzVD5NTU3Mnz+f2bNn9xKnfHPmFXLvKGpZeaal4q6kp5OWZzSM/kTSyWKPFZFHRWSjiGwVkR0i0pPnmt+IyJMR2/uBLwBfjLos4likiycinxCRNhFpW7NmTZLHyEux6ycFnk/ScOFgVgh3QtekIevhPG0gaHJs4Kxh9DGSTNgHtAH/BfwDGIw3i8SXk1wbkdebgNXAi/62Ha8fai/g28B0J+1zwN758iz3chvFXudOmJp0FdpC7heetNUmaDUMoy9CmSeLbVPVqSLyT1V9s3/sz6p6XKkCKSIvsqsP6mTgU8A04BjgZlU9Ol8ete6DCii0H6KYfgv3mr7Q/2QYhhGm3JPFviYiQ4HHReQ6EfksMKIkC6N5EG95+Q7gO0BLBe5RMQoVp6R9V3H3sAlaDcPozyT1oA7Ea5bbDfgsMAr4pqp2VNa8ZKTFgyqUqFkEkiwhX+p9+jL96VkMY6BSVg9KvWi+11W1R1WvVNXZaRGnvkzULAJR4lSqB9RfKnTzBg1jYJHUgzoFb8zSgcAQvGg7VdWGypqXjL7qQSXFvIZd9PVxTPZdGkb5+6BuxJvuaA9VbVDV+rSI00DAKrRdVEqcquGZmQdoGIWR1IP6HXCiqu6svEmF0989qGoxkN/uzYMyjOpRbg/qYuBBEblMRGYHW2km9j3685vvQH+7r5ZomDgZRnKSCtSXgdeAYUC9sw0YKl2B11oYbJYFwzDSxpCE6ZpU9V0VtSTlVLICz7d8e7WahUycDMNIE0k9qN+IyIAWKKhcBZ5L/AZ605thGAOXpEESG/BmjtgCbMPCzKuKdawbcdhvw+iLlHugbr2qDlLV3S3MvPpYBdT3qIbHa9610d/Jt6LuIf7fo6K26pjYd6hWpZR2+oKNlaRawmGBLUZ/J58HFYSSfzVi+0oF7epzJKmU8lVYSc6XWvEN9MGo1bCrmsJh4mT0a5KsyQEMS3KsVls514MqhVxrQeVbvynp+k6lrP9UrTWk0rpGla2hZRjpgDKvB/WYqh6V71itSFOQRK6Q8bgO7eB4NTq8B3qn+kB/fsNIA2UJkhCRvURkCrC7iBzp9D8dDwwvk639ilzNO/nCyN1l4ytp30BmoD+/YfQl8vVBvRuvr2k/svufZgNzK2ta36WQStAVtGIXMTTSiX1vhlEaOQVKVb+vqu8EzlPVE1T1nf52qqreUyUb+z2BoFVqPSij+tj3Zhilk7QP6iLge8AGvKXYjwIuVdWHKmteMtLUB1UJrN+kb2Lfm2FEU+7ZzJtVtQd4F7An8DHgmhLsMwqgUvP/GZXFxMkwSiOpQIn/dxrwPVV9wjlm9DGq3fxkYmgYRjEkFah2EXkIT6B+LSL1QCoXLzTyU82BpNYXYxhGsSTtgxoEHAG8oKrdIrIHsK+q/rPSBiahv/dB9XWsL8YwDJdy90EpcBhwof95BN7ihYaRFxMnwzCKIalAfRN4KzDd/7wB+EZFLEoh1jxlGIZRfZIK1DGq+klgM4CqdgFDK2ZViqh1H4p7XxNKwzAGEkkFapuIDMZr6kNExjJAgiRquaSBK461FkojG/seDKPyJBWom4F7gT1F5MvAH4EFFbMqZZRbnJJWbq442to/6cFeFgyjOiRdUfd24GLgamAl8AFV/UklDeuvFFq5uYJk4pQO7GXBMKpDUg8KVX1WVb8BbFXVZypoU7/GKrf+gX1/hlF5EguUwwVlt2KAYZWbYRhGfooRKJviqB9i/SmGYaSNvAIlIoNE5CPOofdV0J4BSa3FwTr9DcNII3kFSlV3Ap9yPr9cUYsGGGkQB+sXMwwjjSRt4vs/Efm8iOwvIk3BVlHL+jmBIKVFHGp9f8MwjDCJ14MCPgk8ArT7m83OWiRhr8nEwTAMozdDkiRS1QmVNmQgkRavyTAMI80k8qBEZLiI/K+I3OJ/PlhETinlxiLyaRF5TkSeEpHrnOOXiUiHf+7dpdwjzZg4GYZh5CaRBwV8D69Z7zj/88vAT4CfF3NTEXkn8H7gzaq6RUT29I8fBpwJTAL2AX4jIm9Q1R3F3McwDMPouyTtg5qoqtcB2wBU9XVKGw81C7hGVbf4+a32j78fuENVt6jqcqADOLqE+xiGYRh9lKQCtVVEdmfXbOYTgS0l3PcNwDtE5G8i8nsReYt/fF/gJSfdy/6xXojIJ0SkTUTa1qxZU4IplcHGFBmGYZRGUoG6HPgVsL+I3A604k0eG4uI/EZEnozY3o/XtNgIHAvMAe4SESHaK4tck15Vb1HVqao6dezYsQkfozqkYWyT0T+x35QxkEgaxfd/IvIYnqAIcJGqrs1zzUlx50RkFnCPqirwdxHZCYzB85j2d5LuB7yaxMY0YVF6RiUIXnzst2UMFHJ6UCJyVLABB+IttfEqcIB/rFh+Bpzg3+MNeKvzrgXuB84UkToRmQAcDPy9hPsURClvp+FrrQIxyo29+BgDjXxNfF/1t28AfwNuAb7j799cwn0XAweJyJPAHcC56vEUcBfwNF6T4ierFcFXSrOcNekZ1cLEyRhIiNfKlieRyB3Al1V1qf/5cODzqnpeZc1LxtSpU7WtrfSJLTo7O4uuAEq51jAMYyAhIu2qOjVfuqRBEocE4gSgqk8CRxRrXFopRWBMnAzDMMpL0oG6z4jId4Ef4UXVzQBsVV3DMAyjYiQVqI/hDa69yP/8CLCoIhYZhmEYBsnDzDcDN/ibYRiGYVScRAIlIm8DrsALNc9co6oHVcYswzAMY6CTtInvVuCzeBPG2urSlrwAAAyOSURBVMSthmEYRsVJKlDrVfWXFbXEMAzDMBySCtTvROR64B6cSWJV9bGKWGUYhmEMeJIK1DH+X3dgleJPV2QYhmEY5SZpFN87K22IYRiGYbjkFCgRmR06pHiTuv7RX1DQMAzDMCpCvqmO6kNbA14z3y9F5MwK22YYhmEMYHJ6UKp6ZdRxEWkCfoM3E7lhGIZhlJ2kk8VmoaqdRK9+axiGYRhloSiBEpETgK4y22IYhmEYGfIFSSzFC4xwacJbVfecShllGIZhGPnCzE8JfVZgnapuqpA9hmEYhgHkD5JYUS1DDMMwDMOlqD4owzAMw6g0JlCGYRhGKjGBMgzDMFKJCZRhGIaRSkygqkxnZ2etTTAMw+gTmEBVkc7OThYsWGAiZRiGkQATqCrS1NTE3LlzaWpqqrUphmEYqccEqsqYOBmGYSTDBMowDMNIJSZQhmEYRioxgTIMwzBSiQmUYRiGkUpMoAzDMIxUYgJlGIZhpBITKMMwDCOVmEAZhmEYqcQEyjAMw0glJlCGYRhGKqmJQInIESLyVxF5XETaRORo/7iIyM0i0iEi/xSRo2phn2EYhlF7auVBXQdcqapHAF/0PwO8FzjY3z4BLKqNeYZhGEatqZVAKdDg748CXvX33w/8QD3+CowWkb1rYaBhGIZRW4bU6L6fAX4tIl/BE8nj/OP7Ai856V72j60MZyAin8DzsjjggAMqaqxhGIZRfSrmQYnIb0TkyYjt/cAs4LOquj/wWeDW4LKIrDQqf1W9RVWnqurUsWPHVuYhyoQtUGgYhlE4FRMoVT1JVQ+P2O4DzgXu8ZP+BDja338Z2N/JZj92Nf/1SWwVXcMwjOKoVR/Uq8D/8/dPAJ739+8HzvGj+Y4F1qtqr+a9voStomsYhlEcteqD+h/gJhEZAmzG70sCHgSmAR3Aa8DHamNeeTFxMgzDKJyaCJSq/hGYEnFcgU9W3yLDMAwjbdhMEoZhGEYqMYEyDMMwUokJlGEYhpFKTKAMwzCMVGICZRiGYaQSEyjDMAwjlZhAGYZhGKnEBMowDMNIJSZQhmEYRioxgTIMwzBSiQmUYRiGkUpMoAzDMIxUYgJlGIZhpBITKMMwDCOVmEAZhmEYqcQEqoLYMu+GYRjFYwJVITo7O1mwYIGJlGEYRpGYQFWIpqYm5s6da8u9G4ZhFIkJVAUxcTIMwygeEyjDMAwjlZhAGYZhGKnEBMowDMNIJSZQhmEYRioxgTIMwzBSiQmUYRiGkUpMoAzDMIxUIqpaaxtKRkTWACuKvHwMsLaM5lQCs7E8mI3lwWwsnbTbB5W18UBVHZsvUb8QqFIQkTZVnVprO3JhNpYHs7E8mI2lk3b7IB02WhOfYRiGkUpMoAzDMIxUYgIFt9TagASYjeXBbCwPZmPppN0+SIGNA74PyjAMw0gn5kEZhmEYqcQEyjAMw0glA1qgROQ9IvKciHSIyKW1ticKEXlRRJaKyOMi0lZrewBEZLGIrBaRJ51jTSLyfyLyvP+3MYU2XiEir/hl+biITKuhffuLyO9E5BkReUpELvKPp6Ycc9iYpnIcJiJ/F5EnfBuv9I9PEJG/+eV4p4gMTaGNt4nIcqccj6iVjY6tg0XkHyLyc/9zTctxwAqUiAwGvgG8FzgMmC4ih9XWqljeqapH1HpMgsNtwHtCxy4FWlX1YKDV/1xLbqO3jQA3+GV5hKo+WGWbXLYDn1PVQ4FjgU/6v780lWOcjZCectwCnKCqk4EjgPeIyLHAtb6NBwNdwMwU2ggwxynHx2tnYoaLgGeczzUtxwErUMDRQIeqvqCqW4E7gPfX2KY+gao+AnSGDr8f+L6//33gA1U1KkSMjalBVVeq6mP+/ga8SmFfUlSOOWxMDeqx0f+4m78pcALwU/94rcsxzsZUISL7AScD3/U/CzUux4EsUPsCLzmfXyZl/3w+CjwkIu0i8olaG5ODcaq6EryKDdizxvbE8SkR+affBFjTZsgAERkPHAn8jZSWY8hGSFE5+s1SjwOrgf8DlgHdqrrdT1Lz/+2wjaoalOOX/XK8QUTqamgiwI3AxcBO//Me1LgcB7JAScSx1L3VAG9T1aPwmiI/KSL/XWuD+jCLgIl4zSwrga/W1hwQkZHA3cBnVLWn1vZEEWFjqspRVXeo6hHAfngtI4dGJauuVaGbh2wUkcOBy4BDgLcATcAltbJPRE4BVqtqu3s4ImlVy3EgC9TLwP7O5/2AV2tkSyyq+qr/dzVwL94/YBr5j4jsDeD/XV1je3qhqv/xK4qdwHeocVmKyG54Ff/tqnqPfzhV5RhlY9rKMUBVu4GH8frLRovIEP9Uav63HRvf4zehqqpuAb5HbcvxbcCpIvIiXnfHCXgeVU3LcSAL1KPAwX6UylDgTOD+GtuUhYiMEJH6YB94F/Bk7qtqxv3Auf7+ucB9NbQlkqDi9/kgNSxLv33/VuAZVV3onEpNOcbZmLJyHCsio/393YGT8PrKfgec7ierdTlG2fis8yIieH07NStHVb1MVfdT1fF4deFvVfUsalyOA3omCT889kZgMLBYVb9cY5OyEJGD8LwmgCHAj9Ngo4gsAY7Hm47/P8DlwM+Au4ADgH8DH1bVmgUpxNh4PF6zlAIvAucH/T01sO/twB+Apexq85+L18eTinLMYeN00lOOb8brvB+M98J9l6pe5f/v3IHXdPYPYIbvqaTJxt8CY/Ga0h4HLnCCKWqGiBwPfF5VT6l1OQ5ogTIMwzDSy0Bu4jMMwzBSjAmUYRiGkUpMoAzDMIxUYgJlGIZhpBITKMMwDCOVmEAZ/Q4R+aCIqIgckiDteSKyTwn3Oj6Y+Tni+Hp/ZujnROQRf7R+cP4CETknT77HFWtXqYjIkSISzMl2hYh8vsh8hvrPPiR/asPIxgTK6I9MB/6IN+AwH+cBRQtUHv6gqkeq6huBC4Gvi8iJAKr6LVX9QY5rjwdqJlB4452+Vmom/kTMrcAZJVtkDDhMoIx+hT9v3NvwlgU4M3TuYvHW1npCRK4RkdOBqcDt/no8u4u3/tYYP/1UEXnY3z9aRP7se0R/FpE3FmKXv5TCVcCn/PwyXomIXCgiT/uTht7hT8x6AfBZ3653iMj7xFuX5x8i8hsRGefks1hEHhaRF0TkQud5z/HzfEJEfugfGysid4vIo/72togyrAferKpPRJz7HxH5pV9WD/uTnD4i3ppRbxGRe8RbO+hLzmU/A84qpLwMA7zZCQyjP/EB4Feq+i8R6RSRo1T1MRF5r3/uGFV9TUSaVLVTRD6FN2q+DcCbdSaSZ4H/VtXtInISsAA4rUDbHgPmRBy/FJigqltEZLSqdovIt4CNqvoV365G4FhVVRH5ON6s05/zrz8EeCdQDzwnIouANwBfwJtseK2INPlpb8Jb3+ePInIA8Gt6T646lYhpd/yyehfwAd9WgK2q+t/iLWZ4HzAFb5mTZSJyg6qu8/N6S4FlZRgmUEa/Yzre9FXgTdEyHU8YTgK+p6qvARQxfdAo4PsicjDeFD+7FWFbnPr9E8+L+xmetxHFfsCd/vxtQ4Hlzrlf+NPPbBGR1cA4/HV8VHUtZD3vScBhjhA3iEi9v95TwN7AmtD9z8abYPkDqrrNOR7MX7kUeCqY8khEXsCbjHmdqu4Qka0R9zGMnFgTn9FvEJE98Crm74o3K/Mc4Ax/Mk4h2VIB29n1fzHMOT4f+J2qHg68L3QuKUeSvVppwMl4qztPAdpjAgq+BnxdVd8EnB+6vzs32g68F8+45x0EvNVZxXXfCNF4nd7P9yQwHk8oXYJ77wzZsZPsF+A6YHOEPYYRiwmU0Z84HfiBqh6oquNVdX88T+PtwENAs4gMB3CavDbgNY0FvIgnFJDdhDcKeMXfP69Qw/wJQ+fhCZF7fBCwv6r+Dq/ZbjQwMsIu9/7nkp9W4CO+aLvP+xB+P5h//IiIa58B/it07B94wnh/oVGPvg1rQp6XYeTFBMroT0xn1+zvAXcDH1XVX+E1R7WJt7JpEDZ9G/CtIEgCuBK4SUT+gOeNBFwHXC0if8KblToJ7wjCzPGE6UJVbQ2lGQz8SESW4onADf6aQQ8AHwyCJIArgJ/4dq3Nd2NVfQr4MvB7EXkCCJbLuBCY6gdPPI0XjBG+9llglB8s4R7/I165/SIIJEnIO4EHC0hvGIDNZm4YRgQi8llgg6p+twx53QNcpqrPlW6ZMZAwD8owjCgWkd2nVBTiLQb6MxMnoxjMgzIMwzBSiXlQhmEYRioxgTIMwzBSiQmUYRiGkUpMoAzDMIxUYgJlGIZhpJL/H3VRa+eFlVHKAAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "x, y = pd.Series(actual_distances, name=\"Actual Distance (km)\"), pd.Series(haversine_approximations, name=\"Under-estimation (%)\")\n", + "sns.regplot(x=x, y=y, marker='o', color='black', scatter_kws={'s':0.1})\n", + "\n", + "plt.title('Distance approximation error: haversine')\n", + "plt.tight_layout()\n", + "plt.savefig('underestimation_3.svg')" + ] + }, + { + "cell_type": "code", + "execution_count": 76, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAagAAAEYCAYAAAAJeGK1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJzt3XmcZHV57/HP09v0Cj3DDOMszI6MQACx4xJhrqJxmQtC7o0Oaoyosa9bFMUtEg3XGFySuNzExLTgLjpqRJG0C/FCGPSiDpugMEx3D9MNMz1LM0vv63P/OOcUp6qru6qX6jrd/X2/XvXqqnNO1XlOVfV56vc7z/kdc3dERESSpqTYAYiIiGSjBCUiIomkBCUiIomkBCUiIomkBCUiIomkBCUiIomkBDUPmdkXzOzDxY5jITOzdWbWY2alc7S+H5vZ6+diXYuFmX3FzD42yfweM9tUgPVeZWZ3zfbrLkZlxQ5A0pnZY8BKYAQYBX4PfA1ocvcxAHd/yxRe6y/c/T8LEuwC5u7tQG0hXtvMrgO2uPufxdb38kKsSybm7gX5fGX2qAWVTJe5ex2wHvgE8AHgxuKGNP+YmX6ATUG292uq76Hec5lNSlAJ5u4n3P0WYAfwejM7F9K7LsxsuZndambHzexJM9tlZiVm9nVgHfCjsCvj/eHy3zWzTjM7YWZ3mtk50frC1/28mf2HmXWb2a/MbHNs/jlmdlu4nkNm9qFweomZfdDMWs2sy8y+Y2bLsm2TmS0N4z1iZsfC+2tj8+8ws4+b2a/DGH8YvZaZbTAzN7NGMztgZgfN7JrYc68zs++Z2TfM7CRwlZktMbPPhssfCO8vCZf/gJndHe1UzeytZvY7M6uMrassFtfHzOyX4fv5IzM7zcy+aWYnzew3ZrYhFsvnzKwjnHePmV0cTn8Z8CFgR/g6D8Re/y9i7+dfm9l+MztsZl8zs1Mz3oPXm1m7mR01s2sn+g6F2/8P4bKHwu7hqnDeC8zs8fB96AS+nG1auOybzawl/OxvMbPVsXW4mb3dzPYCeyeKJSOui8L38nj4Pl0VTj813N4j4fb/tZmVhPOuMrNfmNlnwue1mdkfhdM7wvcqs5t0efid7Taz/zKz9Rlxbwnv5/rub7Wnvvt7zOxVsXmnhe/JSTP7NbAZmR3urluCbsBjwIuzTG8H3hre/wrwsfD+x4EvAOXh7WLAJnot4I1AHbAE+Cxwf2zeV4AngWcTdP9+E/h2OK8OOAhcA1SGj58TzrsauBtYG77uvwHfmmD7TgP+J1AdvsZ3gR/E5t8BPAGcC9QA/w58I5y3AXDgW+G8PwCORNsIXAcMA1cQ/PiqAj4axnY6sAL4JfC34fIlwJ3h884EjgHPzFhXWSyuFoKdz6kEXa+PAi8O36uvAV+ObcefhdtaFr5nnUBlLM5vZLwvdxB0x0afUQuwiaCb8fvA1zPi+mK4fecDg8AzJni/PwvcAiwL3+8fAR8P572AoCv5k+HnVjXBtEuAo8CF4bR/Au6MrcOB28J1VIXTbgU+OEFM64Bu4NUE39nTgAvCeV8DfhjGuiF8j98UzrsqjO0NQCnwMYL/i8+Hcb0kfN3a2Pe5G9gWzv8ccFdG3Fvy+O7XAB3hesvC9+EocE44/9vAd8LlziX4/t6Vbdt1m+L+sNgB6JbxgUycoO4Grg3vf4WnEtRHw3/oLfm+Vmx+ffhPemrsdW+Izd8OPBLefzVw3wSv8zDwotjjVQSJoiyP7b0AOBZ7fAfwidjjs4GhcIe0IYx3a2z+p4Abw/vXEdtxhtNage2xxy8FHos93hDumB4G/ipjemaCujY2/x+BH8ceX0Ys2WfZzmPA+bE4J0tQPwfeFpt3VvR+xuJaG5v/a+DKLOs0oBfYHJv2PGBfeP8F4XtbGZufbdqNwKdij2vDeDaEjx24ZArf8b8Cbs4yvZQg2Z4dm/a/gDvC+1cBe2Pz/iBc98rYtC6eSnZfIUwysbhHgTNicccT1ETf/R3AroxY/w34mzDmYdK/k9ejBDUrN3XxzR9rCHakmf6e4Nf2z8Iujw9O9AJmVmpmn7CgK+4kQQIDWB5brDN2v4+nCgXOINjZZ7MeuDnsdjlOsLMfJSj2yIyh2sz+Ley+OUnQgqm39Gq5jtj9/QS/spdPMn/1BPMI5+2faHl3fwy4nWDH//kJti9yKHa/P8vj1EF3M7vGzB62oJvyOEGrK74Nk8kWcxnp7+dEn1PcCoKW6j2xz+Yn4fTIEXcfyHhe5rS0eNy9hyARrIktk/m+T2ai79JyoILx2x5fT+Z7jrtP+DnE4wrjfpL070vcRO/peuA50XsYvo+vBZ5G8F6WMf47KbNACWoeMLM/JPgnHVe66u7d7n6Nu28i+BX/HjN7UTQ7Y/HXAJcTdEudSrBThuCXdi4dTNy33gG83N3rY7dKd38iy7LXELQInuPupxB0v2TGcEbs/jqCX6hHJ5l/IPY4c5sPEOxgsi5vZtsJWhU/J0j2MxYeb/oA8CpgqbvXAyd4ahtzXUIgW8wjpO+c83GUYId9TuxzOdXTq9eyxTLpe2hmNQTdck9M8pzJTPRdOkrwWWdue7bvUb5S3xUzqyXohjww8eJZdQD/lfH9rnX3txJ0MY8w/jsps0AJKsHM7BQzu5Sgj/sb7v5glmUuNbMtZmbASYKWy2g4+xDBcYxIHUEXShfBL+vrpxDOrcDTzOzq8MB7nZk9J5z3BeDvogPQZrbCzC6f4HXqCHaaxy0ofvibLMv8mZmdbWbVBF2Y33P30dj8D4ctsXMIjgvsnCTubwF/Hca0HPgI8I0wzuUE3Vd/AbweuCxMWDNVR7DTOgKUmdlHgFNi8w8BG6KD/xPE/G4z2xjuVK8Hdrr7yFSC8OC0hC8CnzGz0wHMbI2ZvXRqm8NNwBvM7AILCkyuB34Vtj6n45vAi83sVWZWFhYZXBB+xt8h+C7Vhd+n9xB+XtO0PSzIqAD+Nox7Kq09CL77Tzez15lZeXj7QzN7Rhjz94Hrwu/k2QTfJZkFSlDJ9CMz6yb45XYt8GmCHXE2ZwL/CfQA/w/4F3e/I5z3cYKd83Ezey/BAej9BL9If09wXCsv7t4N/DFBK62ToFrrheHszxEciP9ZGPfdwHOyvQ7BQfsqgl/LdxN0OWX6OsExgU6Cgox3Zsz/L4JuzZ8D/+DuP5sk9I8Bu4HfAg8C94bTAJqAH7p7s7t3AW8CbjCz0yZ5vXz8FPgxwQH+/cAA6V1A3w3/dpnZvVme/yWC9+BOYF/4/L+cZiwfIHiv7g67VP+ToAWbN3f/OfBhgoKVgwStnysne44FJx5/aILXayc4xnMNQZfb/QTFHhBsZy/QRtBjcBPB+zFdNxH8CHoSeBZB19yUhN/9lxBs8wGC72VURALwDoLuwE6C7+2XZxCvxETVXiKJYGZ3ELQWb8gybwPBDrt8qq0JEZl/1IISEZFEUoISEZFEUhefiIgkklpQIiKSSIka2HH58uW+YcOGYochIiKz5J577jnq7ityLzleohLUhg0b2L17d7HDEBGRWWJm0x5ZQ118IiKSSEpQIiKSSEpQIiKSSEpQIiKSSEpQIiKSSEpQIiKSSEpQIiKSSAs2Qe3YsYMLLriAHTt2FDsUERGZhkSdqDub9uzZwwMPPFDsMEREZJoWbAtKRETmNyUoERFJJCUoERFJJCUoERFJJCUoERFJpIJW8ZnZY0A3MAqMuHtDIdcnIiILx1yUmb/Q3Y/OwXpERGQBURefiIgkUqETlAM/M7N7zKwx2wJm1mhmu81s95EjRwocjoiIzBeFTlDPd/cLgZcDbzezbZkLuHuTuze4e8OKFdO6bL2IiCxABU1Q7n4g/HsYuBl4diHXJyIiC0fBEpSZ1ZhZXXQfeAnwUKHWJyIiC0shq/hWAjebWbSem9z9JwVcn4iILCAFS1Du3gacX6jXFxGRhU1l5iIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkh5JygzW2pm55jZJjObyvNKzew+M7t1eiGKiMhiVDbZTDM7FXg78GqgAjgCVAIrzexu4F/c/fYc63gX8DBwyszDFRGRxSJXS+h7QAdwsbuf5e4XuXuDu58BfAK43MzeNNGTzWwt8N+BG2Yt4gVux44dXHDBBezYsaPYoYiIFNWkLSh3/+NJ5t0D3JPj9T8LvB+om2gBM2sEGgHWrVuX4+UWvj179vDAAw8UOwwRkaKbUpGEma0ws4+Z2T+a2ZYcy14KHA4T2YTcvSlslTWsWLFiKuGIiMgCNtUqvn8E7gR+Anwrx7LPB15hZo8B3wYuMbNvTDlCERFZlCZNUGb2EzO7ODapAngsvC2Z7Lnu/lfuvtbdNwBXAv/X3f9sRtGKiMiikasFtYOgEOImM9sMfBj4CEGBxNsKHZyIiCxeuYokTgDvNbNNwN8BTwBvD6fnzd3vAO6YZowiIrII5ToPahPwVmAYuAbYDHwnPOn2X9x9tPAhiojIYpSri+9bBAURdwNfd/dd7v5S4CTws0IHJyIii9ekLSiCUSP2ATVAdTTR3b9qZt8pZGAiIrK45UpQbwP+HhgC3hKf4e79hQpKREQkV5HEL4BfzFEsIiIiKbnOg/qRmV1qZuVZ5m0ys4+a2RsLF56IiCxWubr43gy8B/icmT3JU6OZbwBagX929x8WNEIREVmUcnXxdRIM9vp+M9sArAL6gUfdva/g0YmIyKKVqwWV4u6PEQxxJCIiUnC65LuIiCSSEpSIiCRS3gnKzKrM7KxCBiMiIhLJK0GZ2WXA/QTDHmFmF5jZLbMdzNDQEMeOHWNwcHC2X1pEROaZfIskrgOeTTgiubvfH1b1zaqxsTGOHDkSBFZWRnV1NTU1NVRXV1NaWjrbq5uyHTt2sGfPHs466yx27txZ7HBERBa0fBPUiLufMLOCBpO2wpERTp48ycmTJwGorKykpqaGmpoaKisr5yyOuD179vDAAw8UZd2y+OgHkSx2+Saoh8zsNUCpmZ0JvBP4ZeHCGm9gYICBgQG6urooLS1Na12VleVdLS8yb+gHkSx2+RZJ/CVwDjAI3AScAK4uVFC5jI6O0t3dTWdnJ21tbezfv5/Dhw9z8uRJhoeHixXWgrRjxw4uuOACduzYUexQRGSRyavpEY4acW14S5zBwcG0woqysrJUohobG8PdmcvuyYVEv+JFpFjyreK7zczqY4+XmtlPCxfWzIyMjDA2NgbA8PAwLS0tPPHEExw7doyhoaEiRyciIvnI9+DNcnc/Hj1w92NmdnqBYpp17k5vby+9vb0cOXKEsrKyVMFFdXU1JSU6X1lEJGnyTVBjZrbO3dsBzGw94IULa2Z6eno4fjzIp8ePH6enp4fa2trU/JGREU6cOMGJEycwM5YsWUJ1dTVVVVVUVVUpYYmIJEC+Cepa4C4z+6/w8TagsTAhzczu3btpbGykry8YbP3QoUNs27aNpqYmGhoaxi3v7qkKwUhlZSVVVVVUV1dTWVmZiHOwREQWm3yLJH5iZhcCzwUMeLe7Hy1oZNPQ09NDY2Mjvb29qWlR915jYyO7du2ipqYm5+tECevYsWMAVFRUUFVVlTquJSIihTeVvqwlwJMEJeZnm9m2woQ0fc3NzRMmkbGxMZqbm6f1ukNDQ5w4cSJVGTg0NMSRI0fo6+vDPbE9nSIi81peLSgz+ySwA/gdEGUAB+4sUFzTsn//fvr7+7PO6+/vp729fVbW4+4cO3aMY8eOUVJSkjppuKamRicNF4FGXBBZmPLdm14BnOXuiR7Fdf369VRVVWVNUlVVVaxbt27W1zk2NkZPTw89PT0ALFmyhNra2qIOybTY6FwtkYUp3y6+NqC8kIHMhu3bt09YgVdSUsL27dsLHsPg4CBdXV20t7fT2tpKZ2cn3d3dOn4lIjJF+bag+oD7zeznBMMdAeDu7yxIVNNUW1tLU1NTqoovGkGiurqapqamvAokZtPo6GhqwFszo6qqKtUVWFFRMaexiIjMN/kmqFvCW+I1NDSwa9cutm/fTmdnJytXrqS5uXnOk1Mmd6evr4++vj6OHDlCeXl56kRhnSwsIjJevmXmXzWzKmCdu+/J5zlmVklQRLEkXM/33P1vph3pFNTU1FBfX09nZyf19fVFT07ZDA8Pc/z48dQJxdG5V+oKFBEJFPKKuoPAJe5+PnAB8DIze+5Mgl3IovOuMkvZe3p6GB0dLXJ0IiJzbyZX1N042RM8OEGoJ3xYHt500lCe4qXsEFQHRkMxJeUKwyIihTSTK+rmTDZmVgrcA2wBPu/uv8qyTCPhsEmrV6/OM5zFJ7qkSNQlGI1uEY0hqPOvRGShKegVdd19FLggvFTHzWZ2rrs/lLFME9AEcO6556qFlaehoaHUCBcA5eXlqWSlqwyLyEIwJ1fUDS/VcQfwsinGJ3kaHh7mxIkTaVcZ7urqSruQo4jIfJLzZ3bYTfe/3f19TOGKuma2Ahh29+NhBeCLgU9OO1KZkqhLsKuri/Ly8tToFlVVVbq6sIjMCzkTlLuPmtmzpvHaq4CvhgmuBPiOu986jdeRGRoeHk4bOzA6/0pjB4pIkuW7d7ovLCv/LpC6loW7f3+iJ7j7b4Fnziw8mW1jY2N0d3fT3d0NpFcHVlZWUl6e+BGtRGSRyDdBLQO6gEti0xyYMEHJ/JBZHVhaWppWHSgiUiz5jiTxhkIHIskwOjqaNjr70NBQavrg4CBLliwpZngisojkez2opwP/Cqx093PN7DzgFe7+sYJGJ0UXXZBxZGSE/fv3U1pamhqWqbKyksrKSo0jKCIFkW8X3xeB9wH/BsHxJTO7CVCCWmRGR0fp7e2ltzc4FGlmLFmyJNUlWFVVpYQlIrMi3wRV7e6/zihPHilAPDLPuDsDAwMMDAwATyWs+HEsJSwRmY58E9RRM9tMOLyRmf0pcLBgUcm8FU9Yx44dS2thVVdXq0tQRPKWb4J6O8FwRFvN7AlgH/DagkW1SPX09KSq6Y4fP05PTw+1tbVFjmpm4gnrySefBIJhmZYsWUJlZWUqaYmIZJr0p6yZvSu8u8rdXwysALa6+0Xuvn+2gzlx4gQPP/xwqrtoMdm9ezfbtm3j0KFDABw6dIht27axe/fuIkc2+4aHh+np6eHo0aO0t7fT2tpKZ2cnJ06cYGBgIFWYISKLW64W1BuAzwH/BFzo7r05lp+Rxx9/nCuuuAIzY+3atWzZsoXNmzezefNmtmzZwqZNm+Z9iyKbnp4eGhsbU4UHELQ8ent7aWxsZNeuXYm86OJsGR0d5eTJk5w8eRIIjmNVVFSkWlgarV1kccr1X/+wmT0GrDCz38amG8Eln86bzWBKS0sZHR3F3eno6KCjo4Pbb789bZmnPe1paUkrur906dLZDGVONTc3T3gl3bGxMZqbm3nlK185x1EVj7unTiCORmuPLi8S3TTihcjCN2mCcvdXm9nTgJ8Cryh0MFu3bqWpqYmWlhZaWlpobW2ltbWVlpYWurq6AOjs7KSzs5Nf/OIXac897bTT0hJX1BqZD91F+/fvp7+/P+u8/v5+2tvb5zii5Mm8vEhZWRk1NTULumUpsthNmqDM7Ofu/iIz+2khjjlls3z5cpYvX85zn5t+dfhjx47R2tpKW1tbWvI6eDAoJuzq6qKrq4tf//rXac/bu3cvV155ZVqLa8uWLaxatSoxo3qvX7+eqqqqrEmqqqqKdevWFSGqZBsZGeHEiROcOHEidUmR0dFRhoeH1boSWSBydfGtMrP/BlxmZt8i6NpLcfd7CxZZhqVLl9LQ0EBDQ0Pa9J6eHtra2lItrehvR0cHEHSR3Xfffdx3331pz6uurmbTpk3jEtfatWvn/HLq27dv5xOf+ETWeSUlJWzfvn1O45mvRkZG2LdvHxUVFakR23Uelsj8lStBfQT4ILAW+HTGPCd98NiiqK2t5bzzzuO889IPh1122WU8+uijrF69miuuuCKVuPbv38/IyAh9fX089NBDPPRQ2gV+qaioYOPGjamijC1btrBly5aCtmJqa2tpamqisbGRvr4+3B0zo7q6mqamJnVjTVHUHRidhxUNzaTzsETml1zHoL4HfM/MPuzufztHMc2KaCd0yimn8K53vSs1fWhoiI6OjnHHudra2lI7tj179rBnz5601ysrK0u95pEjR/jRj37E5s2b2bRp06ycx9PQ0MCuXbvYvn07nZ2drFy5kubmZiWnGXJ3+vv76e/vT52HFSWs6DbXLWYRyU+uY1Bb3f0R4D/M7MLM+XPZxTdbKioqUsUUL33pS1PTR0dHefzxx1NJK36sq6+vj5GRp0Z26urq4r3vfS9AWkl8vMU1nZL4mpoa6uvr6ezspL6+XsmpQOIjXUBw4nBlZSVLlixJnUCspCVSfLm6+K4B3gz8Y5Z5iejimy2lpaWsX7+e9evX86IXvSg1fWxsjM7OTlpbW/nQhz7E4cOHU2XOJ0+eXHQl8QvR8PAww8PDqYs4AuOGZ1LCEpl7ubr43hz+feHchJM8JSUlrF69mtWrV7Ns2TIOHz7M+vXr+cEPfsDRo0dTXYStra3s3buXtrY2jh49CuQuiY8nrc2bN7NixYpibKJkEZ2HFbWyohOHo5ZWRUWFkpZIgeXq4vsfk82f7JLvC52ZsWLFClasWDGuJP748eNpVYX5lsSfcsopDA8PA/Dkk09y5513Jq4kfrGKjk9Go11AcFwy6hKMjmupAENk9uTq4rss/Hs68EfA/w0fvxC4A13yPav6+nqe9axn8axnPStteraS+NbWVjo6OnD3tJ3f4cOHefOb3wwkqyRenjIyMsLIyEjaEFXRiBcaoklk5nJ18b0BwMxuBc5294Ph41XA5wsf3sIyUUn8wMAA+/bto7W1leuvv56uri4qKioYGxubdkl8RUXFXG6ahDJHvCgvL0+rGNTnIpK/fH/ebYiSU+gQ8PQCxLMoVVZW8oxnPINnPOMZfPGLX6Srq4tNmzbxve99j/b2dlpaWlLHt/ItiV+3bt24wXY3btyoS1vMsagAI2odl5SUUFFRQUVFRVrVoLoGRcbLN0HdYWY/Bb5FUL13JXD75E+RmSovL5+0JD7bca6oJL6trY22tra015vNkniZnrGxsbQrEEeiIowoaQ0NDaXGn+zq6qK7u5u6urpihCxSNHklKHd/h5n9CbAtnNTk7jcXLiyZTLwk/pJLnqr0d3c6OzvHDbTb0tKSV0l8PHFFiVHmRtQihuDaYNGoIgBPPPEEq1ev5uabb+aSSy5Ra0sWjbyP4IYJSUkpwcyMVatWsWrVKi6++OLUdHdPK4nfu3dvqqswsyT+rrvuSnvNaGfY3t7OjTfeyNlnn82WLVtYvny5KgsLYKJrg/X09HDFFVewa9culi5dmuoajFpcKpaRhUglRotAPiXx8RZXvCQ+uk5VX18fn/rUp1LPO+WUU8adhKyS+JnL99pgQ0NDaScWl5eXp5JVdNOo7jLfKUEtctlK4nt6erj44otTXUzZnDx5ctJR4jMLNFQSn5/pXhssKsbo6elJTSspKRmXtJYsWaIfEDJv5J2gzKwKWOfue3IuLPNac3PzhBd6rKys5E1vehObNm2ipaUlNWbhTEaJV+n1U2bz2mBjY2OpgXLj4hWE0U3na0kS5fWtNLPLgH8AKoCNZnYB8FF3L/hVdmXuTfYrfmBggOHhYS699NK06UNDQ7S3t4+7Lte+fftUEj8Fc3FtsOjziHcRlpaWpsrfKyoqKCsro7y8nLKyMiUvKZp8v3nXAc8mGD0Cd7/fzDYUJCIpuun8iq+oqEi1iiYbJX46JfHxxLXQS+KLdW2w0dHRrK0tCD6L8vLy1K2ioiLtsboMpVDyTVAj7n5iKl9EMzsD+BrwNGCMoDT9c1MPUebabP6Kz2eU+MxW11RHiZ/sWNl8lLRrg7l7Whl8nJmljfxeVVWlhCWzJt8E9ZCZvQYoNbMzgXcCv8zxnBHgGne/18zqgHvM7DZ3//0M4pU5MBe/4uOjxGcriY8f34ru5xol/tFHH+U1r3kNT3/609NaXitWrJh3O835cm0wd0+deBxdEDKztaVSeJmufBPUXwLXAoPATcBPgY9N9oRwaKSD4f1uM3sYWAMoQc0DxfoVHy+Jf97znpc2L14Sv3fvXu677z4eeuihVEHH2NgY99xzD/fcc0/a87KVxG/evJlVq1bppNcCiCoKM5WVlaUSVvS3vLxciUsmlG+COsvdryVIUlMWHq96JvCrLPMagUaA1atXT+flpUCS9is+XhLf09PDtm3bslYblpaWsmrVKp544onUKPGTlcRnJq4zzjhDO80CiEZ/z+ySjY5xRQUZ0f3o3C59FotXvgnq0+EI5t8Fvu3uv8t3BWZWC/w7cLW7n8yc7+5NQBPAueeem722WSTDZCe0VlRU8Ja3vIXLLruMffv2jRv6qb29PWdJ/IYNG9JOQN68eTPr169XSXwBTHaMC4KWV2VlZVpxRpTA5lvXrUxNvmPxvdDMnga8Cmgys1OAne4+aTefmZUTJKdvLuaLG8rsy+eE1vgo8XFRSXxmZWF8lPhHH32URx99NO15UcFHZnfhxo0bqaqqKti2LnYjIyNpJyBHzGzcyPA6p2thmcpYfJ3A/zGz24H3Ax9hkuNQFvy0uRF42N0/PdNAReJmckJrvCQ+bnR0lI6OjnFDP7W1tdHX18fo6GiqJP62225LPW+xlsQXm7szODjI4ODguHO64uMUVlZWatineSrfE3WfAewA/hToAr4NXJPjac8HXgc8aGb3h9M+5O7N04y1qHp6ejh+/DgQHKzv6enRzqeICnFCa2lpKRs2bGDDhg1ZS+IzuwpbW1vzHiU+nrS2bNlCfX39lOOT/IyOjtLb25s24G5JSUnWc7mik5IlmfL9ZL5McC2ol7j7gXye4O53AQuigzjz8geHDh1i27ZtNDU10dBgxBCYAAAY9UlEQVTQUOToFqe5PKE1XhK/bdu21PT4KPGZ3YW5Rolfvnz5uDEL52tJ/HwwNjaWam1liroKo+rC+LEuVXkWV77HoJ6be6mFaaLLH/T29tLY2MiuXbuKXt22WBX7hNZco8THz+WKklhnZycAR48e5ejRo/z6179Oe15UEr9ly5bUeUXDw8OpBCyzL95VmKm0tDRVCl9aWkpZWVnqb3RfxRqFM2mCMrPvuPurzOxBgivppmYB7u7nzWYwS5YsYd26dYyOjjI6Ooq74+6MjY1lvT/ZvNn6wuR7+QMpjqSVwkfq6+tpaGgY18Lu6emhra1tXKuro6NjwpL41tZWLrzwwnEl8RolvvCifVEu0Tle8ZOT1X04c7nevXeFfy+ddKlZYmazNkBoVA68ZMkStmzZkvqiZd5GRkbSHo+NjaUSHUz/8gci2dTW1nLeeedx3nnpv+0GBgZ47LHH0lpbd9xxR6r0Op9R4uMFGholfm5F53hlilpeJSUllJSUpO6bWepx5i2aLjkSVDgaBMDb3P0D8Xlm9kngA+OflTzRl2MqlTxRi6yhoYGbbrop63hv1dXVnHvuuSxfvjyV2KIvapT4JrpshUhcZWUlW7duZevWralpl19+OY888ggbN27k6quvTpXCR12HGiU++fJtgWWTrbAj6lqMuhcXunzbn3/M+GT08izTFgwzo7S0lNe85jW8733vy7pMaWkpb3jDGyat5ou31Ca7iUxkyZIlvOxlL0ubFo0Sn61AI99R4uPX5VJJfPJMVtgBT+2jMpNW/PF8T2S5jkG9FXgbsMnMfhubVQf8IvuzFpa6ujqam5vZvn07vb29jI2NUVJSQk1NDc3NzTn/qaNm+2TdLe6eSmJRK6+srIz6+vq0BDc2NqZWmQDpo8RfcsklqenuzsGDB9MS1t69e2lra+PEiRN5lcRnVhcuXbq0INtw9dVXs2/fPjZu3MhnP/vZgqxjIXP3vH7gRoks3n2Y2eUYFXtEo3QkRa5IbgJ+DHwc+GBsere7P1mwqBLmoosu4sCBA5x99tl0dHSwZs0afv/738/aL04zS/3aicpaS0tLOf3007MuH3U/xo+ZjYyMpAbpHB4eTn1xlcwWFzObcJT4rq6urOdy5SqJP+2001JdhPEEtnz58hkVI+3bt49HHnlk2s+X/OSbyCLZWmZmltqXxIvQzCy1/8r2nJnKdQzqBHACeHUYzOlAJVBrZrXuvmgqBGpra1m2bBkdHR0sW7asqN0h8V9EuWRrdUWVjtH9KMlFrbXh4eFJx0aT+cfMWL58OcuXL89aEp+ZtFpbWzl4MDgE3dXVRVdX16Ql8fHjXKtWrVLZ9Tw21YQ2kbKyshkPATaVS75/GlgNHAbWAw8D58xo7VJwUVN+uqKuyfLyclauXJmW7KJEl1kFGT8NIEqAklzxUeLj4iXxUfJqaWnh8ccfn/Io8SqJX3xGRkYYGBiY0Wvk29n4MeC5wH+6+zPN7IWErSpZ2KJfwiUlJZx66qnTfp3MVlrmcbWom3JoaEhFIwkxWUn8vn370o5vtba2sn///pyjxEcl8Zs2beLkyeDiBuqGlonkm6CG3b3LzErMrMTdbw/LzEXyErXk8jkAOzY2ltbNODQ0xODgYGpEBSmuXKPEx7sKW1pa2Ldv36Ql8Xv27OHlL3/5uAINjRIv+Sao4+F1ne4Evmlmhwku6S4y60pKSlIjUWeKdnRRMcjo6KjGS0uI+CjxL33pS1PTo5L4KGlF53LFr4asknjJJt8EdTkwALwbeC1wKvDRQgUlMpFoMM+4qDR/yZIlbN68OVXFGLXC4tWNMvfiJfHxUeJf8YpXsGfPHtauXcvrXve6tAKNXCXxq1atShtkt9Al8VIc+Q4W2xt7+NUCxSIyY5NVN0bVSZlJK7qpmGNuRcc3a2trueqqq1LTo1Hi44PtRsmrq6sLgIMHD3Lw4MFJS+LjlYUzLYmX4sh1om43WQaJ5anBYk8pYGwis8rMUicjZhMd+4qfX5Z5vlnmcFY6Jjb74qPEP+95z0ubd+zYsbSTkFUSP3uSeOJ0rvOg6uYqEJFii459TUW2YawmGphYyWzmli5dOmujxINK4uOSeOJ03mNamNlFwJnu/mUzWw7Uufu+woUmknxRl2I+iS1qoWXe4olNpidXSXxmgcZUSuI1Snzx5Hui7t8ADcBZBFfXrQC+QXBZ90Q666yz0v6KFNtk1YmQfgb/yMhIqiS/pKSE6urq1HQdK8vfRCXxw8PDtLe309LSknYul0aJT5Z8W1B/AjwTuBfA3Q+YWaK7/3bu3FnsEESmJPMYWdTFVF5eztq1a1PLxU9qjt/io3nI5MrLy1MJJltJfNRV2NbWlkpgGiV+7uWboIbc3c3MAcwsGZctFVmESkpKspbbR+LVivHzxjRKR24TjRI/NjZGZ2fnuEub5FMSP9ejxC8k+Sao75jZvwH1ZvZm4I3ADYULS0SmK94Sq6lJ/y05NjY2boSOwcFBJa4cSkpKUqPEb9u2LTU9KomPX9ok6irMd5T4zOrCFStWqLIwlO95UP9gZn8MnCQ4DvURd7+toJGJyKwrKSmhsrJy3PGS0dFRBgYGUgkrPlKHTCxeEp9tlPj4uVxRt2FnZyegkvh85F3FFyak2wDMrNTMXuvu3yxYZCIyZ0pLS6mpqRnX4nL3ceMixqsPZWL19fU5S+LjZfH5lsRnJq6FXBKf60TdU4C3A2uAWwgS1NuB9wH3A0pQIguYmU14vCtKXplDSkXHunTeV3aTlcQ/9thjqZEzosTV3t4+pVHiowS2fv36eV8Sn6sF9XXgGPD/gL8gSEwVwOXufn+BY1uUVB4v80U8eWW2vIBUwhocHEwd7xoaGlKV4QQqKyvZunUrW7duTZsejRKfWaCRqyQ+KviYzyXxuRLUJnf/AwAzuwE4Cqxz9+6CR7ZIqTxeFoqoUKO6ujptelRhGD/Pq7S0VMe7JhAfJT4uW0l8lMT6+voYHR2dUkl8Et//XAkqNfyzu4+a2T4lJxGZibKyMsrKytLO89q8eTMjIyP09/fT19dHf38/Q0NDRY402XKVxMdbW9G5XLlK4gE6Ojq4/vrrEzFKfK4Edb6ZnQzvG1AVPtZgsSIyq8rKyqirq6OuLhgDYHR0NFVVGHUPRmMf6vjWxOIl8RdffHFqerwkPrO7MCqJB+jt7eWrX02/aEV8lPh4y6vQo8TnGix2YZaGiEjilZaWUl1dPa6LENKvuhwlr/7+/kR2UyVFrpL4V77ylbS3t7N06VLOOeecRIwSn3eZ+VSZ2ZeAS4HD7n5uodYjIotPfFzDqMUFMDg4SF9fH319fToBeQrq6+tTPwRWrlzJjTfeCAQl8ZkjZ7S0tPD444/nVRL/9Kc/fUZxFSxBAV8B/hn4WgHXISKSEiWt6JhJNHJG1E0YnYysLsL81NbWcv7553P++eenTY9GiY8f32ptbc05SvxUFSxBufudZrahUK8vIvNXd3d36uq4XV1ddHd3p7WEZku2kTPcPZW0BgYGlLSmYaJR4oeGhujo6Eidx9XW1satt9467fUUsgWVFzNrBBoB1q1bV+RoRKTQ7rrrLrZv305vby8ABw4cYM2aNTQ3N3PRRRcVfP1mlmppnXJKUOfl7qmE1d/fT39/v7oHp6GioiJtlPjy8vL5naDcvQloAmhoaNBPGJHQQjxpu7u7m+3bt9Pd/dTZKmNjY6npBw4cKMrlKcws1dKqr68HghONo2QVtbJkbhU9QUmyLcSd5HyxEE/a3rlz54QjSYyNjbFz507e9KY3zXFU2UUnGketrLGxMQYHB1MJS1WDhacEJZNaiDtJKZ69e/emuvYy9fb20tLSMscR5a+kpISqqiqqqqpS09TKKqxClpl/C3gBsNzMHgf+xt1vLNT6RCT5zjzzTGpqarImqZqamnHD+SRdtlZWvIU1MDCgsQdnoJBVfK8u1GuLyPy0Y8cO3vOe92SdV1JSwo4dO+Y4otlVUlIy7rIl8YrBqItQFYP5URefiMyZuro6mpubU1V8Y2NjqZ16c3NzUQokCi0a8T0qo3f3tGrB/v7+oreyenp6OH78OBCMKtHT05OIz6Kk2AGIyOJy0UUXpUrLAdasWcOBAwfmpMQ8CcyMqqoqli1bxpo1a9iyZQvr16/n9NNPp66ubs6v4bR79262bdvGoUOHADh06BDbtm1j9+7dcxpHNmpBicicq62tZdmyZXR0dLBs2bJE/Fovpui8rKjEfWxsLHUScSErBnt6emhsbEw7Juju9Pb20tjYyK5du7Je62uuKEHJvKdSeFloSkpKxg2UOzQ0lBpnsK+vb1a6BZubmyct+29ubuaVr3zljNczXUpQMu+pFF4Wg+hYVn19feo4VrxacDojX+zfv5/+/v6s8/r7+2lvb59p2DOiBCUiMs9Ex7GqqqpSA+MODw+ndQsODg7mbGWtX7+eqqqqrEmqqqqq6MPPqUhCRGQBKC8vp66ujhUrVnDGGWewefNm1q1blyq+KCsb3x7Zvn07JSXZ00BJSQnbt28vdNiTUgtKRGQByja+4MjISKpLsK+vD4CmpiYaGxvp6+vD3TEzqquraWpqKmqBBChBiYgsGmVlZdTV1aXOyRodHWXVqlU8+OCDPP/5z+fgwYOsXLmS5ubmoicnUBefiMiiVVpaSl1dHRs3buT0008HYMWKFWzYsGHCbsG5pBaUiIiklJSUpAovIOgWjBdfzOX4gkpQIiIyobKyMmpra9NOps68uOPw8HBh1l2QVxURkQUrGvni1FNPBYJjWfHLjgwMDMzKgLhKUCIiMiOlpaVprSx3Z3BwkKGhoRm9rhKUiIjMqniJ+0yoik9ERBJJCUpERBJJCUpERBJJCUpERBJJCUpERBJJCUpERBJJCUpERBJJCUpERBJJCUpERBJJI0lMwVlnnZX2V0RECkcJagp27txZ7BBERBYNdfGJiEgiKUGJiEgiKUGJiEgiFfQYlJm9DPgcUArc4O6fKOT6RGT+UNGR5FKwBGVmpcDngT8GHgd+Y2a3uPvvC7VOEZk/VHQkuRSyi+/ZQIu7t7n7EPBt4PICrk9ERBaQQiaoNUBH7PHj4bQ0ZtZoZrvNbPeRI0cKGI6IiMwnhTwGZVmm+bgJ7k1AE0BDQ8O4+SIiUnhJPCZYyAT1OHBG7PFa4EAB1yciItOUxGOChezi+w1wppltNLMK4ErglgKuT0REFpCCtaDcfcTM3gH8lKDM/Evu/rtCrU9ERBaWgp4H5e7NQHMh1yEiIguTRpIQEZFEUoISEZFEUoISEZFEUoISEZFEMvfknBtrZkeA/bP0csuBo7P0WsW0ULYDFs62aDuSZ6Fsy0LcjvXuvmI6L5KoBDWbzGy3uzcUO46ZWijbAQtnW7QdybNQtkXbkU5dfCIikkhKUCIikkgLOUE1FTuAWbJQtgMWzrZoO5JnoWyLtiNmwR6DEhGR+W0ht6BERGQeU4ISEZFEmtcJyszOMLPbzexhM/udmb0ryzIvMLMTZnZ/ePtIMWLNxcweM7MHwxh3Z5lvZvZ/zKzFzH5rZhcWI85czOys2Ht9v5mdNLOrM5ZJ5GdiZl8ys8Nm9lBs2jIzu83M9oZ/l07w3NeHy+w1s9fPXdRZY8m2HX9vZo+E352bzax+gudO+j2caxNsy3Vm9kTs+7N9gue+zMz2hP8zH5y7qLPGkm07dsa24TEzu3+C5ybmM5lon1uw/xN3n7c3YBVwYXi/DngUODtjmRcAtxY71jy25TFg+STztwM/JrhS8XOBXxU75jy2qRToJDhRL/GfCbANuBB4KDbtU8AHw/sfBD6Z5XnLgLbw79Lw/tKEbcdLgLLw/iezbUc4b9LvYUK25TrgvXl891qBTUAF8EDmvqHY25Ex/x+BjyT9M5lon1uo/5N53YJy94Pufm94vxt4GFhT3KgK5nLgax64G6g3s1XFDiqHFwGt7j5bo4MUlLvfCTyZMfly4Kvh/a8CV2R56kuB29z9SXc/BtwGvKxggeaQbTvc/WfuPhI+vJvgCteJN8Fnko9nAy3u3ubuQ8C3CT7LophsO8zMgFcB35rToKZhkn1uQf5P5nWCijOzDcAzgV9lmf08M3vAzH5sZufMaWD5c+BnZnaPmTVmmb8G6Ig9fpzkJ+Mrmfifbj58JgAr3f0gBP+cwOlZlplvn80bCVrj2eT6HibFO8Luyi9N0J00nz6Ti4FD7r53gvmJ/Ewy9rkF+T9ZEAnKzGqBfweudveTGbPvJehiOh/4J+AHcx1fnp7v7hcCLwfebmbbMuZbluck9hwBM6sAXgF8N8vs+fKZ5GvefDZmdi0wAnxzgkVyfQ+T4F+BzcAFwEGC7rFM8+YzAV7N5K2nxH0mOfa5Ez4ty7RJP5N5n6DMrJzgjfqmu38/c767n3T3nvB+M1BuZsvnOMyc3P1A+PcwcDNBF0Xc48AZscdrgQNzE920vBy4190PZc6YL59J6FDUlRr+PZxlmXnx2YQHpS8FXuvhQYFMeXwPi87dD7n7qLuPAV8ke4zz5TMpA/4HsHOiZZL2mUywzy3I/8m8TlBh3+2NwMPu/ukJlnlauBxm9myCbe6auyhzM7MaM6uL7hMc0H4oY7FbgD8Pq/meC5yImtQJNeGvwvnwmcTcAkTVRq8HfphlmZ8CLzGzpWF300vCaYlhZi8DPgC8wt37Jlgmn+9h0WUce/0Tssf4G+BMM9sYtuavJPgsk+bFwCPu/ni2mUn7TCbZ5xbm/6TYVSEzrCi5iKCJ+Fvg/vC2HXgL8JZwmXcAvyOo4rkb+KNix51lOzaF8T0QxnptOD2+HQZ8nqAy6UGgodhxT7I91QQJ59TYtMR/JgQJ9SAwTPBr703AacDPgb3h32Xhsg3ADbHnvhFoCW9vSOB2tBD0/0f/J18Il10NNE/2PUzgtnw9/B/4LcGOcVXmtoSPtxNUmbUWe1uybUc4/SvR/0Vs2cR+JpPscwvyf6KhjkREJJHmdRefiIgsXEpQIiKSSEpQIiKSSEpQIiKSSEpQIiKSSEpQMm+Y2Z+YmZvZ1jyWvcrMVs9gXS8ws1snmH7CzO4LR8q+08wujc1/i5n9eY7X/aPpxjVTZvZMM7shvH+dmb13mq9TEW572exGKPIUJSiZT14N3EVw0mUuVxGcT1IIu9z9me5+FvBO4J/N7EUA7v4Fd//aJM99AVC0BAV8iGB4qRnxYADWnwM7ZhyRyASUoGReCMf+ej7BiZpXZsx7f3i9nAfM7BNm9qcEJwh+M7yGTlV4TZ3l4fINZnZHeP/ZZvbLsEX0SzM7aypxufv9wEcJTj5Oa5WY2TvN7PfhoKbfDgfXfAvw7jCui83sMjP7Vbj+/zSzlbHX+ZKZ3WFmbWb2ztj2/nn4mg+Y2dfDaSvM7N/N7Dfh7flZ3sM64Dx3fyDLvDdbMHBvVbjOz4QtpIfN7A/N7PsWXMPnY7Gn/QB47VTeL5GpUPNc5osrgJ+4+6Nm9qSZXeju95rZy8N5z3H3PjNb5u5Pmtk7CK4ZtBsgHFkpm0eAbe4+YmYvBq4H/ucUY7sXeF+W6R8ENrr7oJnVu/txM/sC0OPu/xDGtRR4rru7mf0F8H7gmvD5W4EXElx3Z4+Z/SvwdOBaggFEj5rZsnDZzwGfcfe7zGwdwRAyz8iIp4Esw+SE79VLgCvCWAGG3H2bBRek+yHwLILLRbSa2WfcvSt8rT+c4nslkjclKJkvXg18Nrz/7fDxvQRjmX3Zw/Hl3H2q1w46FfiqmZ1JMIRL+TRimyj7/ZagFfcDJh6xfS2wMxxfrgLYF5v3H+4+CAya2WFgJXAJ8D13Pwpp2/ti4OxYIj7FzOo8uGZPZBVwJGP9ryMYeucKdx+OTY/GrXsQ+J2H4z6aWRvBgJ9d7j5qZkNZ1iMyK9TFJ4lnZqcR7JhvMLPHCForO8KBK438LqMwwlPf98rY9L8Fbnf3c4HLMubl65kEF27L9N8Jxk98FnDPBAUF/wT8s7v/AfC/MtY/GLs/SvCDcqLtLQGe5+4XhLc1WZJGP+O37yFgA+MvYBiteywjjjHSf9guAQayxCMyY0pQMh/8KcHVhNe7+wZ3P4OgpXER8DPgjWZWDRDr8uom6BqLPEaQKCC9C+9U4Inw/lVTDczMzgM+TJCI4tNLgDPc/XaCbrt6oDZLXPH1v57cfg68Kkza8e39GeFxsHD6BVme+zCwJWPafQSJ8ZapVj2GMRzJaHmJzBolKJkPXk1wHZy4fwde4+4/IeiO2m1m9wNR2fRXgC9ERRLA/wY+Z2a7CFojkU8BHzezXwClecZzcVRmTpCY3unuP89YphT4hpk9SJAEPuPux4EfAX8SFUkA1wHfDeM6mmvF7v474O+A/zKzB4DokgfvBBrC4onfExRjZD73EeDUsFgiPv0ugvftP2xq1+V6IdA8heVFpkSjmYssImb2bqDb3W+Yhdf6PvBX7r5n5pGJjKcWlMji8q+kH1OaFgsuAvgDJScpJLWgREQkkdSCEhGRRFKCEhGRRFKCEhGRRFKCEhGRRFKCEhGRRPr/NqnS5LACvbgAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "x, y = pd.Series(actual_distances, name=\"Actual Distance (km)\"), pd.Series(combined_approximations, name=\"Relative difference (%)\")\n", + "sns.regplot(x=x, y=y, color='black', x_bins=8)\n", + "\n", + "plt.title('Distance approximation error: combined')\n", + "plt.tight_layout()\n", + "plt.savefig('approximation_2.svg')" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAagAAAEYCAYAAAAJeGK1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJztnXmYHUW5/z9vZrIBWSYLiEDIIiaQYCIJoFeuFwG9gGwKEUIiwckVSBQ0YZEtP9BggkEioBJAEiVKIiggIAjEkcXlAnfCLusMYQkBksxMFrLP5P390d2Hmk73OX22OWdm3s/z9DOnu6ur3q5zpr79Vr1dJaqKYRiGYZQbXUptgGEYhmFEYQJlGIZhlCUmUIZhGEZZYgJlGIZhlCUmUIZhGEZZYgJlGIZhlCUmUB0YEblJRGaW2o6OjIgMEpGPRKSijcr7i4hMbouyOgsi8hsRuSrN+Y9EZGgRyj1TRP5R6Hw7EpWlNsDIDRF5C9gDaAZagJeBRcAtqroDQFXPySKv/1HVvxbF2A6Mqr4D7FaMvEXkSuBTqjrJKe+YYpRlxKOqRfl+jcyYB9W+OV5VewH7AlcDPwAWlNak9oeI2INaFkTVV7Z1aHVuJMEEqgOgqutU9T7gVGCyiIyC1l0XIjJARP4sImtFpFFE/i4iXUTkt8Ag4H6/K+MiP/0fROQDEVknIk+IyMigPD/fX4rIAyKyQUSeEpFhzvmRIrLUL+dDEbnUP95FRC4WkXoRaRCRO0WkX9Q9iUiVb+9qEWnyP+/tnH9MROaIyNO+jfcGeYnIYBFRETlLRFaKyPsicr5z7ZUi8kcR+Z2IrAfOFJHuInKdn36l/7m7n/4HIvJk0KiKyFQR+beI9HDKqnTsukpE/uXX5/0i0l9EbheR9SLyfyIy2LHlehF51z+3TET+0z9+NHApcKqfz/NO/v/j1OflIvK2iKwSkUUi0idUB5NF5B0RWSMil8X9hvz7/6mf9kO/e7inf+5wEVnh18MHwK+jjvlpvy0idf53f5+IfNIpQ0XkOyLyBvBGnC0huw7z63KtX09n+sf7+Pe72r//y0Wki3/uTBH5p4j8zL/uTRH5D//4u35dhbtJB/i/2Q0i8riI7Buy+1P+50y//RHy8W//NRH5hnOuv18n60XkaWAYRnpU1bZ2uAFvAUdFHH8HmOp//g1wlf95DnAT0NXf/hOQuLyAaqAX0B24DnjOOfcboBE4BK+b+Hbg9/65XsD7wPlAD3//UP/c94Engb39fG8GlsTcX3/gZGAXP48/AH9yzj8GvAeMAnYF7gJ+558bDCiwxD93ILA6uEfgSmA7cBLeQ1pP4Ee+bbsDA4F/AbP89F2AJ/zr9gOagM+Gyqp07KrDa3z64HW9vg4c5dfVIuDXzn1M8u+10q+zD4Aejp2/C9XLY3jdscF3VAcMxetmvBv4bciuX/n3NxrYCuwfU9/XAfcB/fz6vh+Y4587HK8r+Sf+99Yz5tgRwBrgIP/Yz4EnnDIUWOqX0dM/9mfg4hibBgEbgAl4v9n+wBj/3CLgXt/WwX4dT/HPnenb9i2gArgK7//il75dX/Hz3c35PW8Avuifvx74R8juTyX47e8KvOuXW+nXwxpgpH/+98CdfrpReL/ff0Tdu21+3ZfaANty/OLiBepJ4DL/82/4WKB+5P9DfyppXs75vv4/aR8n31ud88cCr/qfJwDPxuTzCnCks78nnlBUJrjfMUCTs/8YcLWzfwCwzW+QBvv2jnDOzwUW+J+vxGk4/WP1wLHO/n8Dbzn7g/2G6RXgktDxsEBd5py/FviLs388jthH3GcTMNqxM51A1QDTnHPDg/p07NrbOf80cFpEmQJsBIY5xz4PLPc/H+7XbQ/nfNSxBcBcZ383357B/r4CR2TxG78EuCfieAWe2B7gHDsbeMz/fCbwhnPuQL/sPZxjDXwsdr/BFxnH7hZgH8duV6DifvunAn8P2XozcIVv83Za/yZnYwKVdrMuvo7HXngNaZhr8J62H/G7PC6Oy0BEKkTkavG64tbjCRjAACfZB87nTXwcKLAPXmMfxb7APX63y1q8xr4FL9gjbMMuInKz332zHs+D6Suto+XedT6/jfeUPSDN+U/GnMM/93ZcelV9C3gUr+H/Zcz9BXzofN4csZ8adBeR80XkFfG6KdfieV3uPaQjyuZKWtdn3PfkMhDPU13mfDcP+ccDVqvqltB14WOt7FHVj/CEYC8nTbje0xH3WxoAdGPne3fLCdc5qhr7Pbh2+XY30vr34hJXp/sChwZ16NfjROATeHVZyc6/SSMNJlAdCBE5GO+fdKfQVVXdoKrnq+pQvKf4GSJyZHA6lPx04ES8bqk+eI0yeE/amXiX+L71d4FjVLWvs/VQ1fci0p6P5xEcqqq98bpfwjbs43wehPeEuibN+ZXOfvieV+I1MJHpReRYPK+iBk/s88Yfb/oB8A2gSlX7Auv4+B4zLTUQZXMzrRvnJKzBa7BHOt9LH20dvRZlS9o6FJFd8brl3ktzTTrifktr8L7r8L1H/Y6SkvqtiMhueN2QK+OTR/Iu8Hjo972bqk7F62JuZuffpJEGE6gOgIj0FpHj8Pq4f6eqL0akOU5EPiUiAqzH81xa/NMf4o1jBPTC60JpwHuynp2FOX8GPiEi3/cH3nuJyKH+uZuAHwcD0CIyUEROjMmnF16juVa84IcrItJMEpEDRGQXvC7MP6pqi3N+pu+JjcQbF7gjjd1LgMt9mwYA/w/4nW/nALzuq/8BJgPH+4KVL73wGq3VQKWI/D+gt3P+Q2BwMPgfY/N0ERniN6qzgTtUtTkbI9R7LeFXwM9EZHcAEdlLRP47u9thMfAtERkjXoDJbOAp3/vMhduBo0TkGyJS6QcZjPG/4zvxfku9/N/TDPzvK0eO9QMyugGzfLuz8fbA++1/WkS+KSJd/e1gEdnft/lu4Er/N3kA3m/JSIMJVPvmfhHZgPfkdhkwD68hjmI/4K/AR8D/Ajeq6mP+uTl4jfNaEbkAbwD6bbwn0pfxxrUSoaobgC/jeWkf4EVrfck/fT3eQPwjvt1PAodG5YM3aN8T72n5SbwupzC/xRsT+AAvIOO80PnH8bo1a4CfquojaUy/CqgFXgBeBJ7xjwHcAtyrqg+qagMwBbhVRPqnyS8JDwN/wRvgfxvYQusuoD/4fxtE5JmI6xfi1cETwHL/+nNztOUHeHX1pN+l+lc8DzYxqloDzMQLWHkfz/s5Ld014r14fGlMfu/gjfGcj9fl9hxesAd497kReBOvx2AxXn3kymK8h6BGYCxe11xW+L/9r+Dd80q832UQRALwXbzuwA/wfre/zsPeTkEQxWUY7QoReQzPW7w14txgvAa7a7behGEY5YN5UIZhGEZZYgJlGIZhlCXWxWcYhmGUJeZBGYZhGGVJh5iwccCAATp48OBSm2EYhmEkYNmyZWtUdWCmdB1CoAYPHkxtbW2pzTAMwzASICKJZtGwLj7DMAyjLDGBMgzDMMoSEyjDMAyjLDGBMgzDMMoSEyjDMAyjLDGBMgzDMMoSEyjDMAyjLDGBKhKNjVGL2hqGYRhJMYEqAo2NjcyePdtEyjAMIw9MoIpAv379uPTSS+nXr1+pTTEMw2i3mEAVCRMnwzCM/DCBMgzDMMoSEyjDMAyjLDGBMgzDMMoSEyjDMAyjLDGBMgzDMMoSE6g2wN6HMgzDyB4TqAIRJ0L20q5hGEZumEAVgHQiZC/tGoZh5IYJVAHIJEImToZhGNlTUoESkeki8m8ReUlElohIDxEZIiJPicgbInKHiHQrpY1JMREyDMMoLCUTKBHZCzgPGKeqo4AK4DTgJ8DPVHU/oAmYUiobDcMwjNJR6i6+SqCniFQCuwDvA0cAf/TP3wacVCLbDMMwjBJSMoFS1feAnwLv4AnTOmAZsFZVm/1kK4C9SmOhYRiGUUpK2cVXBZwIDAE+CewKHBORVGOuP0tEakWkdvXq1cUz1DAMwygJpeziOwpYrqqrVXU7cDfwH0Bfv8sPYG9gZdTFqnqLqo5T1XEDBw5sG4tD2LtNhmEYxaOUAvUO8DkR2UVEBDgSeBl4FDjFTzMZuLdE9qXFXsA1DMMoLqUcg3oKLxjiGeBF35ZbgB8AM0SkDugPLCiVjQH2Aq5hGEbbU9IoPlW9QlVHqOooVf2mqm5V1TdV9RBV/ZSqjlfVraW0MdMsEYZhGEZxKHWYedljnpJhGEZpMIFKgImTYRhG22MCZRQNCyAxDCMfTKCMomBRjoZh5IsJlFEUbOzOMIx8MYEyioaJk2EY+WACZRiGYZQlJlCGYRhGWWICZRiGYZQlJlCGYRhGWWICZRiGYZQlJlCGYRhGWWICZRiGYZQlJlCGYRhGWWICZRiGYZQlJlCGYRhGWWICZRiGYZQlJlCGYRhGWWICZRiGYZQlJlCGYRhGWWICVSBsYT7DMIzCYgJVAGz1WMMwjMJTUoESkb4i8kcReVVEXhGRz4tIPxFZKiJv+H+rSmljEmz1WMMwjMKTWKBEpEpERorIUBEplLBdDzykqiOA0cArwMVAjaruB9T4+2WPiZNhGEZhqUx3UkT6AN8BJgDdgNVAD2APEXkSuFFVH82lYBHpDXwROBNAVbcB20TkROBwP9ltwGPAD3IpwzAMw2i/pBUo4I/AIuA/VXWte0JExgLfFJGhqrogh7KH4gner0VkNLAM+B6wh6q+D6Cq74vI7lEXi8hZwFkAgwYNyqF4wzAMo5wRVS1NwSLjgCeBL6jqUyJyPbAeOFdV+zrpmlQ17TjUuHHjtLa2trgGG4ZhGAVBRJap6rhM6bIaSxKRgSJylYhcKyKfyt08AFYAK1T1KX//j8BBwIcisqdf3p7AqjzLMQzDMNoh2QY7XAs8ATwELMmnYFX9AHhXRIb7h44EXgbuAyb7xyYD9+ZTjmEYhtE+yRQk8RDwY1X9u3+oG/AWoED3ApR/LnC7iHQD3gS+hSead4rIFOAdYHwByjFCNDY2WuShYRhlTSYP6lTgRBFZLCLDgJnA/wOuBqblW7iqPqeq41T1M6p6kqo2qWqDqh6pqvv5f+3t1wJjLxYbhtEeSBQkISJDgR8D7wGzVHVdsQ3LBguSyB7zoAzDKBVJgyQydfENBaYC24HzgWF43W9/xnsHqqUQxnZEyl0Aytk2wzAMyNzFtwQvIOJJ4Leq+ndV/W+8cPBHim1ce8W60AzDMPIn04u6PYDlwK7ALsFBVb1NRO4spmHtGZubzzAMI38yCdQ04BpgG3COe0JVNxfLqI6AiZNhGEZ+pBUoVf0n8M82ssUwDMMwUqQdgxKR+0XkOBHpGnFuqIj8SESqi2eeYRiG0VnJ1MX3bWAGcL2INPLxbOaDgXrgF6pqMz0YhmEYBSdTF98HwEXARSIyGNgT2Ay8rqqbim6dYRiG0WnJ5EGlUNW38KY5MgzDMIyiU9Il3w3DMAwjDhMowzAMoyxJLFAi0tNZGsPwsdkiDMMwikMigRKR44Hn8KY9QkTGiMh9xTSsPWBTGhmGYRSPpB7UlcAhwFrwlsnACzXv1NiURoZhGMUjqUA1l9sSG+WCiZNhGEZxSBpm/pKInA5UiMh+wHnAv4pnlmEYhtHZSepBnQuMBLYCi4F1wPeLZZRhGIZhJPKg/FkjLvM3wzAMwyg6SaP4lopIX2e/SkQeLp5ZhmEYRmcnaRffAFVdG+yoahOwe3FMMgzDMIzkArVDRAYFOyKyL6DFMckwDMMwkkfxXQb8Q0Qe9/e/CJxVCANEpAKoBd5T1eNEZAjwe6Af8AzwTVXdVoiyDMMwjPZDIg9KVR8CDgLuAO4Exqpqocagvge84uz/BPiZqu4HNAFTClSOYRiG0Y7IZrLY7kAjXoj5ASLyxXwLF5G9ga8Ct/r7AhwB/NFPchtwUr7lGIZhGO2PRF18IvIT4FTg38AO/7ACT+RZ/nV4CyL28vf7A2tVtdnfXwHsFWPTWfjdjIMGDYpKUnY0NjbazBOGYRgJSepBnQQMV9Wvqurx/nZCPgWLyHHAKlVd5h6OSBoZjKGqt6jqOFUdN3DgwHxMaRPaw8Sy5WybYRidj6QC9SbQtcBlfwE4QUTewguKOALPo+orIoFntzewssDl5kWujXg5Tyzb2NjYLgTUMIzORVKB2gQ8JyI3i8gNwZZPwap6iaruraqDgdOAv6nqROBR4BQ/2WTg3nzKKST5NuLlKk6zZ88GKFsBNQyjcyKqmV9nEpHJUcdV9baCGCFyOHCBH2Y+lI/DzJ8FJqnq1nTXjxs3TmtrawthSkY64jhSR7wno/DY78QoFCKyTFXHZUyXRKD8DHsCg1T1tXyNKzRtKVAdCWtwjKQEnrZ52UYhSCpQtqJuiSjFWI9bpo05GdmQzxiq/caMXMlnRd0hRbKp3ZDrP14pxCFcZjkHbRjlSa7iZA9CRq4kHYN6SlUPFZFnVfWz/rEXVPUzRbcwAaXo4su3y6MU3WuZyrQuP6MY2O/KCFPQLj5CK+qKyM/p5CvqpvNAkjwtluIfNpM42ZOuUQxMnIxcsRV18yBOnJI29OUkBtblZxhGuZFRoPzZxn+oqpep6sH+drmqbmkD+9odSRv6cvRYTJwMwygnMgqUqrYAY9vAlg5DkobePBbDMIz0JF0P6lk/rPwPwMbgoKreXRSrOgkmToZhGPEkFah+QAPefHkBCphAGYZhGEUhkUCp6reKbUhHIEk4bbFDbi2k1zCMjkLSmSQ+LSI1IvKSv/8ZEbm8uKa1LzIFPdTX1ycKjMgnaKIcAy8MwzByJWmY+a+AS4DtAKr6At4M5J2KdA1/EPQQRX19PaeeeirLly9PGxhRiNnSLfDCMIyOQlKB2kVVnw4da45M2UFJKh5RaYYNG8bNN9/MkiVL0l5bCIExcTIMo6OQdKqjvwDfBf6gqgeJyCnAFFU9ptgGJqGtpjrKZYzJ3Y/7nEs5hmEY7ZVCT3X0HeBmYISIvIc3i8Q5edjXLkn6flNA1AStmVavba8zURiGYRSatAIlIt/zP+6pqkcBA4ERqnqYqr5ddOvaOeEuuySr17aXmShMHA3DKDZpu/hE5DlVHSMiz6jqQW1oV1a0pwULC9l9V6quQFu8zjCMfChUF98rIvIWMFxEXnC2F0XkhYJYWsaEF/grBOEuwELl1ZaUe7SgeXeG0TFIK1CqOgH4HFAHHO9sx/l/OyxuF1o+3Wlx15S6iy5X3PG0cqS91qthGDuTqYuvRlWPFJG5qnpRG9qVFcXq4ouKusumWy1oLKdOncqwYcNi84/Ls9yi+dpL11651ZthGK0pVBffniLyX8DxIvJZETnI3QpjavniNnKBkISfzjO9vDt16lTmz58fmS4uzyDfmTNnlpUnUO5dewHlbl97opx+f0bnI5NA/T/gYmBvYB5wrbP9tLimlR9xUXn19fWx1wwbNmyna9LlGZWmnMin8S/n+zJ2xrpLjVKTaQzqj/7LuHNV9Uuh7Yh012ZCRPYRkUdF5BUR+XcQ0i4i/URkqYi84f+tyqecQhP2qtJ5SOFr4jywqHenAGbNmlVo81NluH/bIg9r7Nof7cVjNjowqhq74b3zBHBQ1Jbu2kwbsGeQB9ALeB04AJgLXOwfvxj4Saa8xo4dq6WkoaGh1d+kaRoaGnTatGk7XRfs19XV6fnnn58231xsPf/88/PKO9c8CnkfhmG0X4BaTaITaU/Cr/y/j0Zsf0tSQNINuBf4MvAa3ovBgYi9lunaUghUQ0PDTmIT11jHnQsEqq6uLvaa8LlCNPJxYplrHkkEOpe8jdJi34NRLAoiUG21AYOBd4DewNrQuaaYa84CaoHaQYMGFbr+0tLQ0KDV1dU7iUsmDyrqfDovJErQCu1R5ZtvITyyQtliFA77HoxiklSgMoWZfz1D92DeK+qKyG7A48CPVfVuEVmrqn2d802qmnYcqi1mkgiHnM+cOZPq6mqWLFmS1dREl156KU1NTa3CzqPCzdOFnkPmYIVsQ63zCc3OJQS/WLYYhcO+B6NYJA0zz+TZ/NrfHgCagLv8rRG4O4kCZsi/K/AwMMM5VnZdfFFPk+m6teLSNTQ0aF1dnY4dOzay6y4Yj0raXRjXRdfenn7bi52GYRQGEnpQmaL4vqXecu8KHKCqJ6vqycDI7DWzNSIiwALgFVWd55y6D5jsf56MNzZVUqKimYLP4SfMqBko6uvrU5F5VVVV3HHHHVRVpQ9OnDp1amToubswYtxMF4WIvmqraLu2jO6zCELDaGckUTHgpdB+l/CxbDfgMDzhewF4zt+OBfoDNcAb/t9+mfIqdRRfmHQeVNx4TXA+8KRcbyqp11RI+9vSA2uLctqbV9kesLo0coVCBkkAv8DrijsTz6v5C/DzJNe2xdYWAhXu0ksa1JApn+Cz23jW1dVFClNbNrIdsfHpiPdUKkzwjXwoqEB5+fE14Gf+9rWk17XF1lZjUIHnE+cBucfCYeKZvJ0oUYpKm02DEE4bFc6eDbk2RknH7kpBEjvKxdZyw+rFyJWCC1Q5b6XwoOLeXXKpq6tLhaK7nlD4/Sa3Wy8Qqrhy48oKExbRuro6HT16dKRgJiHJE3OSoI5ChqTnS9J7KgdbDaMjYQJVRDI1Wq4oRImO64kF6YMIP3dmibgGPW5Myi0/6h2t6urqvLoK03lgmSIPw5+L3eAnzd88KMNoe0ygikw6cXJFpba2NrLhdkXKDYgIT32UzoOKE4WofMJ5ZNsw5+pBFZJsRCfq/g3DKA+KMQbVExieNH1bbuUaxZfJWwg8K7cxdb2tJEEWmby4fGyPe/erFGTj9ZlAGUZ5k1SgMi23AYCIHO+HgT/k748RkftyCWvvCATvHmUimF0hLo/58+cDMGPGjFTaefPmMXPmzNS7U+71wTH3XNy7Tklmmog65pYZ9+5XMYizxy076btd/fr1Y9asWTYLgmG0d5KoGLAM6AM86xx7Icm1bbG1dZDEtGnTtLq6Ou0kr26XnTv24xLlQbkh5VFdbOEghyRBFFHn0o0XRQVyRNVDVN5xNqQjzlvLZZwsifdppKcz1lNnvOdSQoHfg3rK/9upBCquu6uurk4nTZqUaLyotrY2MpLPDWSIyicq0i9OaNxxrrDApBunSrefya504fZRdZaJJIKSKS/XvjjbrSFKT2esp854z6Wm0AK1ADgdb9aH/YCfAzclubYttmIIVPhHG27soqLkXFGpq6uLjdYLRMUNjgiXERaduH+gcKRgkC4siOF7S3ev7j3GeUxx9RIWyrh06cbloshGaOPGoOLKLfQ4XnunFPdd6roudfmdjUIL1C7Aj4H/87ergB5Jrm2LrdgeVJJzrijU1NToqFGjtLq6Wmtra3dKV1NTEylc4clikyzlEW6M012TTuyihCeJN5SujChPK7A36PYM11/cRLpxZaV7iEhy7+nqo1hLm5QrudqW7z2ZB9P5KLRAfTZJulJtpYzia2hoaOXtBB7NxIkTdwoxb2ho0EmTJuno0aO1pqYmdSyqWyqu2yzOhnBeUWnCHlv4fFToe7iM8DWZZnmPejG4tra2lUC5AhY1xpbpna84W6LszNeDyqcRTdIQF6KRziWPXEWiUOJi4tS5KLRAPQq8CswCRia5pi23UglUIDjDhw9v5Sml69qqrq7We+65J2P3WZTohMUu/E9dV1eX8s6iPIK4MhsaGnTKlCmtugqThmm7aaJsDAeI1NXVaXV1tU6aNCmttxjOJ8nsE4Vu+IvhVWWysRD557P4ZC7kO4VWuWKiWTwKKlBefnwCOA/4J/AicHnSa4u9taVAhRv2SZMm6YgRIxJNIRQ0zqeccopOnDgxUmQCcZgyZUpaAZsyZUqrxr+urk5Hjhyp+++/f0osw/mHPZawx+TeQ5wXFudVReVRW1uro0ePTnmSrncZ3H9UPuHywyIWVWfpyMejiIuajMo7zkPLttwkx9KlyeT5FpJCeVCZymhrsWiL++rMFFygUhfAgcBvgW3ZXlusra0EKsqbcRvTQICixlCCa2tqanTkyJE6ceLESI8jyGfatGlaW1sbK2LV1dV64okntupGdLvOgjRhTygcuBHVALvLfbj2h+cLjBtXCuwP7iF8b2Exc20bPXq0Tpw4MdJu9zsIe5hxjViS83Gki1aMyjtqbC1fkjSUcWnybWSTXpftA0O2NoR/j22FiVPxKHQX3/7AlcBLeMuzTwV2T3JtW2yFFKi4H2W4uylONEaMGJESn+B4OLItaKTD+bqNdm1trY4cOXKncPYgj5qaGq2qqtLx48e3usbNN8qjCR+La9jCdgViGRcd6N6fG+LuEh5rimp03Fndo/KM+o7cNHEiFHU+aeMfVWb4fGB7MRrSbD0olySBNnH5ZStumb6HXCmWZ2qUjkIL1JPA94BPJknf1luhBCrJk2i6WcEDEQjGc8Ji5npG4XGXuro6PeGEE1oFMkyaNCny+kBkxo8fnxrLqamp0YEDB+opp5yyk22BZxeIZ1iAourBPT9+/Pid7jl83+Hr4+rWzcPtxnRFOzjvPjlHzWmYSViT2pWEUqXLBbdOwx5etoKTTdqkrzVkQyHqqRiiaeRH0br4ynFrCw8q3LCGgwnCDWPQqAZjMO74S1ikGhoadOLEidq/f3+tqalJHXO7i4Lgh5qamtQx1yOaNm2aLlq0qFW3nvtEW1NTk+p+TOflhIXBFVW3LqK6+qLqMuxhuOfcLsGRI0fqqFGjdhLBOK8s7iXhwNZ03UKZGtC4B5SgDtLNsJHkePh3k8lLc6/LlCZqfDFcZrFI92CSqX5yuTYX20rh3Ro7UxCBAu70/77ov6QbbC92hpkkAsL/KIG4hGeJCL9cO23atJSX4zboQaPsNiKBoNXW1urYsWNb5V1bW6t77LGHLlq0KPWeUPjaQJjcIANXZKI8tqgxquB+XWEIRyhOmTKl1ThRXOMSDuQIjx2F399yx9zCT+NhoYoKp4+qh3TfZZRnEeXpBd/52LFjtaamZqd3taLuLep4VPer6xFnasgzjcXE2R58zjfaLtfGOIm9mbqaC0GhPSnzzHKnUAK1p/9336gtSQFtsbXVXHxuY+++bBslAm764KneDUwIuszC+Zx//vl6zz33pNIFAuGOAbkNnCtubv7Tpk0636OoAAAgAElEQVRLdf8F9oTvZ8qUKTsFMYQb06hAjvD9RJURiEXQjRfnrbmfw0EYUeNd6e7Hrfd0hL3IcMBGXHCEWydR9sQJcXAvrrBF2ZvU7nSk89jy8aCiGuO4z9nmG3V9pvIy5ZdNefkIjIlTbhR6DOonSY6VauvXr5+efvrpesYZZ2h1dbWeddZZOm3aND3vvPN0xowZetFFF+lll12mV1xxhc6aNUvnzJmj11xzjV533XX6i1/8Qm+66SZdsGCB3nbbbXr77bfrnXfeqXfffbfef//9euedd2pNTY3ef//9+vWvf11PPvlkXbx4sX7ta1/TpUuX6jPPPKPf/va39eWXX9Y33nhDly9fri+++KJOnz5d16xZk2rIp0yZkhKloPEOnsYXLVrUSojchixI477f5IrEqFGj9JRTTknNXOEK4imnnJK2AQi8ILdBdu1yG+RwAx5+8nc9tvAWbpzjcEUp3AUaFXbvXpdNsENY9OK6C+PKihIwN9847yrd/acTqSjhy0S23kgSkQzXT9S9x9meC3HlpUufxBNLans6e4z8SCpQ4qVNj4g8o6oHhY69oKqfyXhxGyAimW+iBIgIqkr37t2pqKigoqKC7t2706WLt8rJpk2b2GWXXVi3bh0DBw6koaGBIUOGUFFRwW677UZzczMffPABu+++O42NjQwdOpQ+ffpQWVlJS0sLlZWV1NbWcvDBB9PS0kJVVRWVlZX87//+LwcccAD33HMPZ555JrvvvjuPPfYYRx99NBUVFfTt25fGxkaWLl3Kcccdxz777MOWLVvYsmULP/rRjxg5ciRf//rXGTVqFBs3buTnP/85L774IjfddBNDhw6lsrKSFStW0L9/fyorK6moqKBr167MmjWLCy64gDlz5iAizJ07N7XkRX19PcOGDWtVP+5yIe75+vp65s+fz4QJExg7diz19fWcfPLJ3HXXXQDMnz+fqVOnUlVVlbo+bumRYMmOmTNnppbgCNLGlR+XX2NjIzNnzgS8JVKGDRvWKq+A2bNnt1oaJN2yKO79Tp06lfnz5+90bZAfJFvyxL0mfJ9R9xekd8tPUlY4j3T1VYjlTzLVY1Sa+vp65s2bt5MNmWyPyjf8vRq5IyLLVHVcxnTpBEpEpgLTgKFAvXOqF/BPVZ2Ur6GFoG/fvvr5z3+elpYWmpubaWlpSX1ubm5mx44dbN++vdX54FxUWve4kT0igojQvXt3unbtSmVlJQCVlZV0796dyspKduzYwbp169hzzz0BeOuttxg+fDi9evVKPT2tXLmSoUOH0rNnT7Zu3Urv3r15/vnnGTlyJG+88QZdunRh7NixVFZWsttuu9G7d2+2b99O79696dq1K9u2baOmpoZDDjmEJ598kpNPPpm+fftSWVnJli1buOeeezj++OPp27cvd9xxB2eccQb9+vVj06ZN/OpXv+Lcc8+loqKCyspKKisrGTBgABs2bKCyspKBAwdSWVnJ+vXr6dq1K3PnzuWyyy6LFYQ4XHEIC57bgMLOgpGuHDefKMF0y3TLCIhqjLO5r3CeSYW1kI2/e5/uw0w++Zk4FYZCCVQfoAqYA1zsnNqgqplX7MsDETkauB6oAG5V1avj0o4bN06feuopAML3k2k/fMz93NDQwJVXXsk555zDXnvtlRKyuro6br31VjZs2EDXrl1paWlh2rRprFixgkceeYSvfvWrdO/enVtvvZWRI0dSX1/Ppz/9afr27cvChQuZOHEi3bt358EHH+TII49kw4YN9OnTh/vuu4+uXbty8MEH07VrV/72t7+xY8cOAHbs2MHw4cPp06cPmzdvprm5mWXLliEiDB8+nI8++ogVK1akGk4RYd26daxatYpNmzaxxx57UFFRwapVq+jduzfbtm1j48aNdOvWjZaWFjZv3kyXLl1obm6OrCMjM126dGnlUQafu3TpQrdu3VqJnZsOoEePHlRUVKCqVFZWsnz5cgYNGsSAAQPYsmULb775JqNHj2bXXXelsrKS5uZmnn32WT7/+c+z2267pfIMyq2srGTr1q306dMn9beiooJu3bpRWVnJmjVreOSRR5gwYQJVVVVs2rSJ3//+95x55pn079+fjRs3MnDgwJTNGzdu5MYbb2T69OkMHDgwVc769evp378/TU1NO3mnV199NWeffXZKHBobG+nfv3+qvkQk9bmpqSnWQ3HTJSGdd5TOazaiKYYwF0SgIjLdHegR7KvqO7mZl7GcCuB14MvACrwZ1Ceo6stR6ceNG6e1tbXFMCXVReB2D82cOZPq6mquu+46rrzySoDUP6HbXTN79mzWr1/P1KlTmTFjBgsWLGDdunWMGTMGIJXP2Wefzdy5c5kxYwbz5s3jwQcfTHWzgPfPe8UVV/DSSy+xYMEClixZwoQJE5gyZQrz5s1jzJgxzJw5k5NPPplp06Zx2GGHMXXqVM4++2xuvvlmAJYsWcLUqVNT9wLw3HPP8eCDD6aOB+V///vfp3fv3jQ3N1NfX89tt93G5s2bufzyy2lpaeH666/ntNNO4/rrr6eyspJzzz2XXXfdlebmZt566y3uvPNOvvnNb9KzZ0+2b99Oc3Mzr7/+Oo888gjHHHMMNTU1HHbYYXTt2pUdO3bwyCOPcOCBB7LbbrvRrVs33n33Xbp27cpTTz3FiBEjqKysZNWqVSxbtowDDzyQlStXMmLECJqbm9m8eTNbtmyhubmZV199lX333ZeGhgb22GOPVBdp7969ERGam5vZtm0b27ZtY/369fTo0SPlKbe0tKQeBozsCLqsu3Xrxo4dO+jZsyfdunUDvG5sEaGqqooNGzaw++67p0Qy6PYOPqsqPXv2TB1raWlhl112iUzb3NycEutA6CsqKti2bRv/+te/OOKII+jVqxcVFRUpgd6yZQsPP/wwJ5xwAlu3buWXv/wl06dPZ++9997p4SH8IBG1H/QUhHGPiQhNTU1UVVVFno8iU57p8khybTbXNzU1cd111zF9+vRE95D0eFVVVeEEyl/yfR7wSWAVXhTfK6o6MuPFOSAinweuVNX/9vcvAVDVOVHpiyFQbveEO34RCFZ1dTVTpkxhwYIFLFy4ECDV8C9fvpyxY8fy29/+lvPPP59bbrmFxYsXo6q8+uqr7L///tx0002p/Juamhg2bBjLli0DYMiQITs9jbrpguN/+tOfWLp0KdXV1SlRPP3001m8eDFDhgzhiSee4KSTTgI+flqsr/d6amfPns2yZcuYN28eRxxxxE5dPBdeeGHqH3vGjBkArcaIqqqquOiii1BVrrnmmlZPpbNnz04da2xs5LnnnkuVETUGFFzTo0cPqqurOfPMMxk9ejQiQrdu3di2bRu1tbWMGjWKqVOnsnjxYi655BLmzZvHli1b6NGjBzNmzEiVC7Sqt6jxnOA7Ch4ojj32WA4//HBWrVrFnDlzmDFjBs3NzWzfvp0f/vCHbN26lZaWFrp168b06dN5++23eeCBBzjjjDNSDenbb7/NH/7wB3bs2MFpp51Gz549aW5upqmpKeWpbt++nXXr1tG1a9eUBx6U09zczJo1a3j22WcZM2YMTU1NvPrqqwwfPryV2Afd1Zs3b+bNN99kr732AmDLli2sXLmS/v37p86vX78+NZ65Y8eOlBhv376dbdu2AZgw50hYNF2hdEVs7dq1OwmzK3ZuHmERLNT5sF1R14ePB383btxI//79U2mz9WijGD58eCKBqkyY31XA54C/qupnReRLwIR8DMzAXsC7zv4K4FA3gYicBZwFMGjQoIIV7A6qgyc6rjjNnz8/NUB+1113MWzYMIYMGQJ4wnTjjTfy1FNPcdVVV3H99ddz7bXXsnTpUrp160aPHj2YNWsWl19+OcuXL6dv374pYWlsbOQnP/kJjz32GLfccgsHHnhgyqsJGt5AIAJbrrzySvbdd19uvPFGANatW5d6mv3e977Hww8/TO/evenTp0/Kg5ozZw7du3fn0ksvZe3atdx4440pj84djAdSDX9VVVXqXFNTU8rmuXPnprp24GNvM/gBNzY2cs455/DnP/+ZxYsXp8QyODd79mwmTJiQqr+grDFjxvD9738/dTzo/pk4cSIzZszgwAMPTH03Af369eOaa65pJeLh++nXr1/qHpYsWQLAwoUL+fKXv8zpp5/OAw88wNixY7niiitadWn88pe/pKmpKfV9VFVVcffddzN9+nSGDBmSKue//uu/OO6441qV5/6mAsIBCeEuqODawFsPfm9xv9WostxgDvf7i+ruCoTLFcBt27axevVqbrjhBr7xjW9w++23c/LJJ/OJT3yC7du3p9IG6YNt7dq13HPPPRxzzDGpcw899BCHHnoojz/+ONu2beNLX/oS3bp1ayXMGzdupLa2lpEjR1JZWcn27dvZvHkzIhI5Rrx161aAVmPKW7duZfXq1ezYsYNevXqlzm/fvr2VOAd55duVHeQXCH061q5dm1dZ5UQ6UUwqpklJ6kHVquo4EXkeb22oHSLytKoeksd9pitvPPDfqvo//v43gUNU9dyo9IXyoMKNWtDYuefcgWWX+vp6Tj31VC6//HJuv/12evfuzbRp0xgyZEhKjAIuvvhievToQbdu3Zg2bRo33ngjl156KfPmzeNzn/sc1157Lfvttx99+vRh6tSpTJkyJSWGrq3Lly9n4cKFzJgxIyU2W7du5YYbbgDggQce4PHHH+fJJ5/ktttuY8iQIVx44YVMmzaNsWPHsmzZMiZPnsxtt91G3759Uy580DgG9x94TPBxt2QgeG5EXXAu8AADO5944gn+8Y9/pOrV9WKC7s277rorJThnn302u++++05RV0E9rl27loULF+4UGRZ8B3fccUcrTzP8PQURgoGwX3PNNSmPKigrqIfwteGu3KiIt/DvaObMmWzdupXu3bun7jHII/ydhoXELSeqDLfbNp3QRd1PHFFjONkGfgA7RR+Gu8vTlRtFOAR5x44dKZEJjq1Zs4ampiaGDBkSG7rc0NBA3759U6LsCnOc+Lppg/3gWCB+wTWBaAYesvsAEA7UamlpYdOmTSlRDucbzjPufFwgWNjG7du3J/oO24CCdvH9FTgJL1hiAF4338Gq+h/5WhlTXsm6+NJFPwUNlCtc7jXLli1j4cKFrF+/ni1btnD11Vcze/Zsnn76aUaPHk337t1bPW0FAjV58mRuuOEG+vTpw5AhQ3jggQd48sknU0/O4YbMbbSC/u2gEbzkkktS15x66qnMnTuXxYsXM3fuXAAuuugiunfvnhpvWrVqFSLC66+/nhrfcoVkwoQJKREJxrpmzZpFU1NTyp7As5gzZ85OXX5R9eqyfPny1JiaG1K+YMECxo4d26puv/rVr7J48WLuuusutmzZ0qobET5uBIHIkPbgnqZOnQrAnDlzuOSSS3YKV3e95yDf4PiWLVu49NJLUwIY1H+6CDtX4KO6G+OEJSqvKOFxu6DDZBsenSSsPalYRdkdl2e6PLK5JtODZNL6yBSGnun9nYaGBubOncsFF1xAVVVVbLrGxsbUuG/fvn0Tv/sZiLO7JcWNVA6LXyBmgUiH06aLeg4LbDitu3/LLbckEqikL+ruihdNVwlMxlsXqn/Sysx288t5ExgCdAOeJ81CiW2x5Hvwsu3EiRNT8+sFadw584JZHUaOHJma/SGYPy94mTXYD84feeSROnToUB02bJiecMIJOnDgwNSKu2Fbgpd0w/PgRb0IGp4ZPDjmzmYQTKkUXkPK3WpqalL3HBwbP368jho1SmtqalpN6BpebiI8s4b7QnB4eY7ABtcWd/aDoE7cGTTCsyS4U0W5dee+9BtcE7zYHPWSbvglzsBOdyLg4Ht2XyKO+g2lm/cwvJ/ppVf3XpO8XJvkfJi4ORZzeWHYtTuYwzLb67KdASPJtFHpyszmJeRM+SShUC8A79ixQ1taWrS5uVm3b9+u27Zt061bt+qWLVt08+bNumnTJt24caN+9NFHumHDBl2/fr2uW7dO165dq01NTdrY2KgNDQ26Zs0aXb16ta5atUo//PBD/eCDD/T999/XlStX6nvvvacrVqzQd999V9955x19++239a233tLly5drfX291tXV6RtvvKGvv/66vvbaa7Eb7X2yWOBYvEi+euCydGnbYi4+t0ELGuVg/jh3pu8g/aRJk1Kr544ePTo1fVHQ2AfHFy1apH369NF99tlHhw0bpjU1NZHi5M5p586x5za6cROqutMzhSeCDTfcbqPgzuowfvz4VteNGjVKjz766FZi6YpOUL47r6Db0AfTIAXXTpo0qdXihq5wufcX3EN4zr1wmnCjEjVlkzulUtR3HvwNz7Ho1lMw43zc7yYoO+k8epmEJ0o805WdLVF2pDuelExzP6azJ1sxzJRnumvj7j1d2mzOdUbCwrl169aCzcW3AVjvbBvcv0kKaIutLQQqaKiCf7SJEyemnqYDQQk3iJMmTdJRo0bpkUcemfKKgoUGJ06cqCeeeKJWV1fr+PHjddGiRTpp0iQ95ZRTIr2QT3/60608i2A+v2Ai2tra2lYC5IpL2AsKjgVz8UU9mYcb13BDHLW2VHhOO1dEq6urU2UFohieKijsxbn2B+dHjx6dmvE9WNokbG9coxa2LRC6cH27DYwrsuHfgytu4YbRFVf3GjePqN9ZlA1xJBG7XEgnjPkQlUchG/NMnlMSMn1HcWmzOWdo+/egstmKKVBuQxms9hp4Uu5kr+4M527DHIiaKwrjx4/XiRMn6qRJk1rNv3fPPffoqFGjWi2HHlzbp0+fnZZJd/Pef//9dfjw4alyVD8WEXeZeXdW7mBBxLBnEP7ncj2g8PG4f+jwHH3umlLhdOH0AYHgBrOi19bWph4MgvoL7tmdhzBq3r5AkMJlh720uHtxP4e7B8P36qbJ9ISdTSOXjbdUyAay2B5BPkLgpoma4T4fm8wLKh4FFyjgMOBb/ucBwJCk1xZ7aysPKtydNH78eB05cmRKpAKBCSZvDRpTt3suaOxramr0hBNOaDUO43bZqX7cRVZTU7PTKr3hbq6gwXYb5EAwXe/JLcPtqgzsCzwp15uJW35i9OjRkY1wWGzC3oabLm65EtdzcbuHXFEJPNLg/qIEJ6q7MHxf4bTufbqfgzTuuFvYQwp3ZYbzcPezeeKPazDbqiHN1lsolD3Z1lEhMXEqHgUVKOAK4H7gdX//k3hz8ZVcnLRIAhXX3eKKx8iRI1MzhgeNVuCluOMbQYPvegKTJk3Sqqqq1PXhWcwDXM8sbF+UaLq4Yx9Bt5g7JhS1uF/gFQa2hMtxPYWwB+XWVZQYhdO53k64oQ9fE+V5uaIWjPFFfXdBWXECGS473PUYXnIj3ZN6WMzihCiunrIVgrjjbdW4Rglk3LFsyVTXRvul0AL1HCDAs86xDrtgYdw/WLibyBUh92k/ajB+2rRpqTEn15tyG8HwOEdAeJDeTZNk8N21yR0vCzfMbpegO17kimdUPUTl5xLUT5RAhK9J15hHiWFQP+mW8wh7NlHHg33XUwuXE7cfRzpxdM9nus9saSuvyi0v3bFc7IkT8LjyjPZFoQXqaf/vM/7fXTuyQKnGd/FENTZud06cxxHuZgvn73ojYY8tvKBhVCBCpn/aoPsrHHEY4I5NhRvt4PpweteGsFBGiZSbPu6+cm2UMj1lR3lD4XzTiUkSG+Ia6rgHiEJ5GkltKRZJBDwXe5LWWS75GKWl0AJ1AXCz/27St4H/Bc5Lcm1bbG0RJOE21G53WFRD64aeu5F1gTiNHj26VddWEO0Xfp8q+BuOngt7aGFxcAMPXA8qGMuJalBcDy5OZAKiPKLw2FmSENxwV1pUmbl6L3HkIjLB8Uxh3bm+L5OLneVC+L7bwnvLVpzyWUnYiCbf+ixGkMSXgWuAnwJfTnpdW2xtESThfg7EJmikww1t8N5QMJYTHqsJd20FXWpxYyTusulRL326+buBFUGUXjgQIsk9Zmpowh6Re//pvJCosqI+h/ON2k+Xbz7kmn8hy0/SyJdLo1voh4hCYgJVeArxEFLUMHN/VomJuVxbjK3YAhUQ1e0VNMrusREjRuh+++2nEydO3OmlW9erCfJyQ5PDjbEbaRf21IJ8wt5MMFOF+55TVPdg3D1m80Kma68rUElFKKrc8PF8rs+WXPMpdAOYRJwsDDoZVkeFpyw8KKA3cAnwC+ArfqDEd4G3gXuTFNAWW1sIVFSDENe9FoQ+u9PiBJ7V6NGjW70TFFwT1bDHhWsHn9107ucoz87NL5OHkPTHFxazJDMQZOsBZdMQF9uDSpc+l+69uPPZ1L9htEcKJVD3Ar8BzgbuBJYCjwNjkmTeVltbCVSmSKw4QQnEx42Oc9Ok81jCeSVprKMi0DKJTyE8h6Tdh5nSZHMumzRtfX0SQU4asWgYHYlCCdSLzucKoAnolSTjttzaYgwqbh4xN026CLTwRKrhRinuePgF1iSNfZxtuTzNZ1NOruTbKOfrZRVTFIrpQRlGe6VQAvVMuv1y2dpqstikoczh/WAuOzdyL2oWg6guuLjQ66guwXTkEzqdaYaFQtAWHlA+XXGGYRSOQglUS2ii2ObOOFms6s7iE5cmEBNXbIIAiHC4eNTSCUnfAUonUOFjcQ1ztp5VNuNJ5Uq521vu9hlGIbDJYrMkSSOdxGMJgiTctW/iAgeiXtjNptGPEpx0YpQkj2zKtMH8wtJeRd8wsiWpQHXBSK2yGV7tNcyWLVsy5lVVVcW2bdtQVaqqqlJ5u/Tr1y+1Kmt4pc64lT6jbItaAjwuj7jVQ7NZ3TScPmol2DBJ69b4+HeR7XdiGB0VEyiSNww9evSIPB4sMx7Qu3fvVH7hvKOW7A6Oh4UsOF5fXx/byLv5uWW2JelEqF+/fkydOjVySfSOTK73Z+JkGA5J3Kxy34oxWWzS4+57R+nGkYLjUUtBBHlHdcu5CxBG2VMuMw5YKPXHdPT7M4x8wcagciNp4xI1D11cJF6Qr7vQXXDMPZdkxuuo84W4n2LSGaPmOvr9GUY+JBUo8dK2b8aNG6e1tbUFy6+xsTFtV0t9fT2nnnoqd9xxB8OGDUulD/+NyrepqYn58+fv1O134YUX0qNHD2bMmMGwYcMKdi9J7scwDKMtEZFlqjouYzoTqNyor69PidPs2bOzGtwOrnWJEy+jPMlV9O1hwTCSC5QFSeRIIDDZRl41NjYyf/78nQIk+vXrx7Bhw0omTh09aKGQ5BqZaBGNhpEd5kGVAPcpOhcPrBj2lNqG9oZ5UIaRO2XdxSci1wDHA9uAeuBbqrrWP3cJMAVvFovzVPXhTPmVi0C150arHGwwsse+N6M9Uu5dfEuBUar6GeB1vCU9EJEDgNOAkcDRwI0iUlEiG7Min+6b8DtRmcopBOF8rJFrf1iXodHRKYlAqeojqtrs7z4J7O1/PhH4vapuVdXlQB1wSClszJa4F1KTkLShKVSDZA1b21Ds+rWZJ4yOTjkESVQDf/E/7wW865xb4R/bCRE5S0RqRaR29erVRTYxM1HBD9mQpKEpVIMUl48JVuFoq4cAEyejI1M0gRKRv4rISxHbiU6ay/BmSL89OBSRVeQgmareoqrjVHXcwIEDC38DWRLV6CdpnOKmOEpXTiGIEifzqgqHeTeGkT9FEyhVPUpVR0Vs9wKIyGTgOGCifhypsQLYx8lmb2BlsWwsNFGTt2Zq8MulISsXOzoSxahLe4AwOhMl6eITkaOBHwAnqOom59R9wGki0l1EhgD7AU+XwsZ8yabBLxdRKBc7jGjMyzU6G5UlKvcXQHdgqYgAPKmq56jqv0XkTuBlvK6/76hqS4lszBtr8I1CYl6u0dkoiUCp6qfSnPsx8OM2NKfssXddjAD7HRidiXKI4jPSYN06hmF0VkygSkA2YmPdOoZhdFZMoNqYXDwiEyfDMDojJlBtTC6zn0d9NgzD6OiYQJWAbMQp8LZsLMowjM6GLbdR5oSX5rDuPsMw2jvlPpt5WZKPd5LL4nVJcAXJxMkwjM6ECZRPPl1o2V5r3XWGYRiZsS4+h3y60LK91rrrDMPorFgXXw7kIxjZLl1h4mQYhpEeE6giYF14hmEY+WMCVQRs9gfDMIz8MYEqEiZOhmEY+WECZRiGYZQlJlCGYRhGWWICZRiGYZQlJlCGYRhGWWICZRiGYZQlJlCGYRhGWWICZRiGYZQlJlCGYRhGWWICZRiGYZQlJRUoEblARFREBvj7IiI3iEidiLwgIgeV0j7DMAyjdJRMoERkH+DLwDvO4WOA/fztLGB+CUwrODZprGEYRvaU0oP6GXAR4C5IdSKwSD2eBPqKyJ4lsa5A2MzmhmEYuVESgRKRE4D3VPX50Km9gHed/RX+sag8zhKRWhGpXb16dZEszR+b2dwwDCM3KouVsYj8FfhExKnLgEuBr0RdFnEscslfVb0FuAW8FXVzNLNNMHEyDMPInqIJlKoeFXVcRA4EhgDPiwjA3sAzInIInse0j5N8b2BlsWw0DMMwypc27+JT1RdVdXdVHayqg/FE6SBV/QC4DzjDj+b7HLBOVd9vaxsNwzCM0lM0DypHHgSOBeqATcC3SmuOYRiGUSpKLlC+FxV8VuA7pbPGMAzDKBdsJgnDMAyjLDGBMgzDMMoSEyjDMAyjLBFv2Kd9IyKrgbdzvHwAsKaA5hQDs7EwmI2FwWzMn3K3D4pr476qOjBTog4hUPkgIrWqOq7UdqTDbCwMZmNhMBvzp9ztg/Kw0br4DMMwjLLEBMowDMMoS0yg/Pn8yhyzsTCYjYXBbMyfcrcPysDGTj8GZRiGYZQn5kEZhmEYZYkJlGEYhlGWdGqBEpGjReQ1EakTkYtLbU8UIvKWiLwoIs+JSG2p7QEQkYUiskpEXnKO9RORpSLyhv+3qgxtvFJE3vPr8jkRObaE9u0jIo+KyCsi8m8R+Z5/vGzqMY2N5VSPPUTkaRF53pQGTB8AAAf1SURBVLfxh/7xISLylF+Pd4hItzK08TcistypxzGlstGxtUJEnhWRP/v7Ja3HTitQIlIB/BI4BjgAmCAiB5TWqli+pKpjSv1OgsNvgKNDxy4GalR1P6DG3y8lv2FnGwF+5tflGFV9sI1tcmkGzlfV/YHPAd/xf3/lVI9xNkL51ONW4AhVHQ2MAY72l+r5iW/jfkATMKUMbQS40KnH50pnYorvAa84+yWtx04rUMAhQJ2qvqmq24DfAyeW2KZ2gao+ATSGDp8I3OZ/vg04qU2NChFjY9mgqu+r6jP+5w14jcJelFE9prGxbFCPj/zdrv6mwBHAH/3jpa7HOBvLChHZG/gqcKu/L5S4HjuzQO0FvOvsr6DM/vl8FHhERJaJyFmlNiYNewSLS/p/dy+xPXF8V0Re8LsAS9oNGSAig4HPAk9RpvUYshHKqB79bqnngFXAUqAeWKuqzX6Skv9vh21U1aAef+zX489EpHsJTQS4DrgI2OHv96fE9diZBUoijpXdUw3wBVU9CK8r8jsi8sVSG9SOmQ8Mw+tmeR+4trTmgIjsBtwFfF9V15fanigibCyrelTVFlUdA+yN1zOyf1SytrUqVHjIRhEZBVwCjAAOBvoBPyiVfSJyHLBKVZe5hyOStmk9dmaBWgHs4+zvDawskS2xqOpK/+8q4B68f8By5EMR2RPA/7uqxPbshKp+6DcUO4BfUeK6FJGueA3/7ap6t3+4rOoxysZyq8cAVV0LPIY3XtZXRIIFWcvmf9ux8Wi/C1VVdSvwa0pbj18AThCRt/CGO47A86hKWo+dWaD+D9jPj1LpBpwG3Fdim1ohIruKSK/gM/AV4KX0V5WM+4DJ/ufJwL0ltCWSoOH3+RolrEu/f38B8IqqznNOlU09xtlYZvU4UET6+p97AkfhjZU9CpziJyt1PUbZ+KrzICJ4Yzslq0dVvURV9/ZXOD8N+JuqTqTE9dipZ5Lww2OvAyqAhar64xKb1AoRGYrnNQFUAovLwUYRWQIcjjcd/4fAFcCfgDuBQcA7wHhVLVmQQoyNh+N1SynwFnB2MN5TAvsOA/4OvMjHff6X4o3xlEU9prFxAuVTj5/BG7yvwHvgvlNVf+T/7/wer+vsWWCS76mUk41/AwbidaU9B5zjBFOUDBE5HLhAVY8rdT12aoEyDMMwypfO3MVnGIZhlDEmUIZhGEZZYgJlGIZhlCUmUIZhGEZZYgJlGIZhlCUmUEaHQ0S+JiIqIiMSpD1TRD6ZR1mHBzM/Rxxf588M/ZqIPOG/rR+cP0dEzsiQ73/kale+iMhnRSSYk+1KEbkgx3y6+fdemTm1YbTGBMroiEwA/oH3wmEmzgRyFqgM/F1VP6uqw4HzgF+IyJEAqnqTqi5Kc+3hQMkECu99p5/nm4k/EXMNcGreFhmdDhMoo0Phzxv3BbxlAU4LnbtIvLW1nheRq0XkFGAccLu/Hk9P8dbfGuCnHycij/mfDxGRf/ke0b9EZHg2dvlLKfwI+K6fX8orEZHzRORlf9LQ3/sTs54DTPft+k8ROV68dXmeFZG/isgeTj4LReQxEXlTRM5z7vcMP8/nReS3/rGBInKXiPyfv30hog57AZ9R1ecjzn1bRP7i19Vj/iSnT4i3ZtTBInK3eGsHXeVc9idgYjb1ZRjgzU5gGB2Jk4CHVPV1EWkUkYNU9RkROcY/d6iqbhKRfqraKCLfxXtrvhbAm3UmkleBL6pqs4gcBcwGTs7StmeACyOOXwwMUdWtItJXVdeKyE3AR6r6U9+uKuBzqqoi8j94s06f718/AvgS0At4TUTmA58GLsObbHiNiPTz016Pt77PP0RkEPAwO0+uOo6IaXf8uvoKcJJvK8A2Vf2ieIsZ3guMxVvmpF5EfqaqDX5eB2dZV4ZhAmV0OCbgTV8F3hQtE/CE4Sjg16q6CSCH6YP6ALeJyH54U/x0zcG2OPV7Ac+L+xOetxHF3sAd/vxt3YDlzrkH/OlntorIKmAP/HV8VHUNtLrfo4ADHCHuLSK9/PWeAvYEVofK/ybeBMsnqep253gwf+WLwL+DKY9E5E28yZgbVLVFRLZFlGMYabEuPqPDICL98RrmW8WblflC4FR/Mk4h2VIBzXz8f9HDOT4LeFRVRwHHh84l5bO0Xq004Kt4qzuPBZbFBBT8HPiFqh4InB0q350brQXvwTPufrsAn3dWcd0rQjQ2s/P9vQQMxhNKl6DsHSE7dtD6Abg7sCXCHsOIxQTK6EicAixS1X1VdbCq7oPnaRwGPAJUi8guAE6X1wa8rrGAt/CEAlp34fUB3vM/n5mtYf6EoTPxhMg93gXYR1Ufxeu26wvsFmGXW/5kMlMDfMMXbfd+H8EfB/OPj4m49hXgU6Fjz+IJ433ZRj36NqwOeV6GkRETKKMjMYGPZ38PuAs4XVUfwuuOqhVvZdMgbPo3wE1BkATwQ+B6Efk7njcSMBeYIyL/xJuVOgn/GYSZ4wnTeapaE0pTAfxORF7EE4Gf+WsG3Q98LQiSAK4E/uDbtSZTwar6b+DHwOMi8jwQLJdxHjDOD554GS8YI3ztq0AfP1jCPf4PvHp7IAgkSciXgAezSG8YgM1mbhhGBCIyHdigqrcWIK+7gUtU9bX8LTM6E+ZBGYYRxXxajynlhHiLgf7JxMnIBfOgDMMwjLLEPCjDMAyjLDGBMgzDMMoSEyjDMAyjLDGBMgzDMMoSEyjDMAyjLPn/VzRK4BGHv8MAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "x, y = pd.Series(actual_distances, name=\"Actual Distance (km)\"), pd.Series(combined_approximations, name=\"Relative difference (%)\")\n", + "sns.regplot(x=x, y=y, marker='o', color='black', scatter_kws={'s':0.1})\n", + "\n", + "plt.title('Distance approximation error: combined')\n", + "plt.tight_layout()\n", + "plt.savefig('approximation_3.svg')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "geo2", + "language": "python", + "name": "geo2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/src/analytics/footpaths/combined_pairs.json b/src/analytics/footpaths/combined_pairs.json new file mode 100644 index 00000000..4c37536f --- /dev/null +++ b/src/analytics/footpaths/combined_pairs.json @@ -0,0 +1 @@ +[["https://data.delijn.be/stops/209590", "https://tec.openplanner.team/stops/H1mk115a"], ["http://irail.be/stations/NMBS/008822426", "https://data.delijn.be/stops/105134"], ["https://data.delijn.be/stops/401398", "https://mivb.openplanner.team/stops/1320"], ["https://data.delijn.be/stops/300894", "https://mivb.openplanner.team/stops/0430748"], ["https://data.delijn.be/stops/300933", "https://mivb.openplanner.team/stops/3420"], ["https://data.delijn.be/stops/408916", "https://tec.openplanner.team/stops/LFPdeme2"], ["http://irail.be/stations/NMBS/008893542", "https://data.delijn.be/stops/207593"], ["http://irail.be/stations/NMBS/008896909", "https://data.delijn.be/stops/508307"], ["http://irail.be/stations/NMBS/008863008", "https://tec.openplanner.team/stops/N501gab"], ["http://irail.be/stations/NMBS/008861440", "https://tec.openplanner.team/stops/N527afa"], ["https://data.delijn.be/stops/302393", "https://tec.openplanner.team/stops/Bpecvme2"], ["https://data.delijn.be/stops/300849", "https://mivb.openplanner.team/stops/2854"], ["https://data.delijn.be/stops/301134", "https://tec.openplanner.team/stops/Buccdef2"], ["https://data.delijn.be/stops/307813", "https://mivb.openplanner.team/stops/2029"], ["http://irail.be/stations/NMBS/008861531", "https://tec.openplanner.team/stops/Bblmcel1"], ["https://data.delijn.be/stops/303121", "https://mivb.openplanner.team/stops/5964"], ["https://data.delijn.be/stops/408893", "https://tec.openplanner.team/stops/LFMvoge2"], ["https://data.delijn.be/stops/307498", "https://tec.openplanner.team/stops/Bixepla2"], ["https://data.delijn.be/stops/305915", "https://mivb.openplanner.team/stops/1196"], ["https://data.delijn.be/stops/300743", "https://mivb.openplanner.team/stops/2257G"], ["https://data.delijn.be/stops/305269", "https://mivb.openplanner.team/stops/2822"], ["http://irail.be/stations/NMBS/008892288", "https://data.delijn.be/stops/508111"], ["http://irail.be/stations/NMBS/008895869", "https://data.delijn.be/stops/207503"], ["http://irail.be/stations/NMBS/008893179", "https://data.delijn.be/stops/211086"], ["https://data.delijn.be/stops/302409", "https://mivb.openplanner.team/stops/7660209"], ["https://data.delijn.be/stops/410141", "https://tec.openplanner.team/stops/Lrcstad2"], ["https://data.delijn.be/stops/300811", "https://mivb.openplanner.team/stops/4130F"], ["https://data.delijn.be/stops/504772", "https://tec.openplanner.team/stops/H4wn130b"], ["https://data.delijn.be/stops/307722", "https://tec.openplanner.team/stops/Bwaucan1"], ["https://data.delijn.be/stops/208177", "https://tec.openplanner.team/stops/H5wo130a"], ["https://data.delijn.be/stops/305233", "https://mivb.openplanner.team/stops/9607"], ["http://irail.be/stations/NMBS/008872587", "https://tec.openplanner.team/stops/Btanbth1"], ["https://mivb.openplanner.team/stops/4342", "https://tec.openplanner.team/stops/Bwbfeta2"], ["http://irail.be/stations/NMBS/008872553", "https://tec.openplanner.team/stops/Btileco2"], ["http://irail.be/stations/NMBS/008896735", "https://data.delijn.be/stops/505970"], ["http://irail.be/stations/NMBS/008400526", "https://data.delijn.be/stops/104348"], ["https://data.delijn.be/stops/301048", "https://mivb.openplanner.team/stops/4655"], ["http://irail.be/stations/NMBS/008874054", "https://tec.openplanner.team/stops/Ccipier2"], ["http://irail.be/stations/NMBS/008892601", "https://data.delijn.be/stops/208237"], ["https://data.delijn.be/stops/408875", "https://tec.openplanner.team/stops/LVu03--2"], ["https://mivb.openplanner.team/stops/2152", "https://tec.openplanner.team/stops/Buccplj1"], ["https://data.delijn.be/stops/305430", "https://mivb.openplanner.team/stops/1631"], ["https://data.delijn.be/stops/303580", "https://mivb.openplanner.team/stops/9726"], ["http://irail.be/stations/NMBS/008833308", "https://data.delijn.be/stops/305202"], ["http://irail.be/stations/NMBS/008728687", "https://tec.openplanner.team/stops/H4bx167a"], ["https://data.delijn.be/stops/304116", "https://tec.openplanner.team/stops/Blmlvex2"], ["https://data.delijn.be/stops/300939", "https://mivb.openplanner.team/stops/3280"], ["http://irail.be/stations/NMBS/008811247", "https://data.delijn.be/stops/305550"], ["http://irail.be/stations/NMBS/008884335", "https://tec.openplanner.team/stops/H1qv111b"], ["http://irail.be/stations/NMBS/008871308", "https://tec.openplanner.team/stops/Clusncb1"], ["https://data.delijn.be/stops/302871", "https://mivb.openplanner.team/stops/2140"], ["https://data.delijn.be/stops/307636", "https://mivb.openplanner.team/stops/2702"], ["https://data.delijn.be/stops/504299", "https://tec.openplanner.team/stops/H4mo151a"], ["https://data.delijn.be/stops/405714", "https://tec.openplanner.team/stops/Llghoch3"], ["https://data.delijn.be/stops/208408", "https://tec.openplanner.team/stops/H5rx145a"], ["https://data.delijn.be/stops/300789", "https://mivb.openplanner.team/stops/1486B"], ["http://irail.be/stations/NMBS/008400280", "https://data.delijn.be/stops/501409"], ["https://data.delijn.be/stops/301130", "https://mivb.openplanner.team/stops/2136"], ["http://irail.be/stations/NMBS/008821543", "https://data.delijn.be/stops/109060"], ["http://irail.be/stations/NMBS/008863404", "https://tec.openplanner.team/stops/N506bma"], ["http://irail.be/stations/NMBS/008881406", "https://tec.openplanner.team/stops/H1ob330a"], ["https://data.delijn.be/stops/301928", "https://mivb.openplanner.team/stops/2022"], ["https://data.delijn.be/stops/301016", "https://mivb.openplanner.team/stops/4109"], ["https://data.delijn.be/stops/307696", "https://tec.openplanner.team/stops/Brsgsan1"], ["https://data.delijn.be/stops/208178", "https://tec.openplanner.team/stops/H5el100b"], ["http://irail.be/stations/NMBS/008832664", "https://data.delijn.be/stops/402851"], ["http://irail.be/stations/NMBS/008893252", "https://data.delijn.be/stops/203297"], ["https://data.delijn.be/stops/306912", "https://tec.openplanner.team/stops/Bbosgar1"], ["https://data.delijn.be/stops/307973", "https://tec.openplanner.team/stops/Bwavcar1"], ["https://data.delijn.be/stops/508772", "https://tec.openplanner.team/stops/H4eh100b"], ["https://data.delijn.be/stops/302446", "https://tec.openplanner.team/stops/Bzluqga2"], ["https://data.delijn.be/stops/302444", "https://tec.openplanner.team/stops/Bsrgm101"], ["https://mivb.openplanner.team/stops/3508", "https://tec.openplanner.team/stops/Bixlfla1"], ["https://mivb.openplanner.team/stops/2753", "https://tec.openplanner.team/stops/Baudhde1"], ["https://data.delijn.be/stops/304962", "https://mivb.openplanner.team/stops/9784B"], ["https://data.delijn.be/stops/301122", "https://tec.openplanner.team/stops/Buccdef1"], ["http://irail.be/stations/NMBS/008811726", "https://data.delijn.be/stops/305356"], ["http://irail.be/stations/NMBS/008814456", "https://mivb.openplanner.team/stops/5451F"], ["http://irail.be/stations/NMBS/008843067", "https://tec.openplanner.team/stops/Lsebrun4"], ["https://data.delijn.be/stops/300973", "https://mivb.openplanner.team/stops/1863"], ["https://data.delijn.be/stops/306049", "https://mivb.openplanner.team/stops/0536"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/503447"], ["https://data.delijn.be/stops/405730", "https://tec.openplanner.team/stops/Lrchype2"], ["https://data.delijn.be/stops/509739", "https://tec.openplanner.team/stops/H4mo206a"], ["https://data.delijn.be/stops/306284", "https://mivb.openplanner.team/stops/3201"], ["https://data.delijn.be/stops/301035", "https://mivb.openplanner.team/stops/42"], ["https://mivb.openplanner.team/stops/0140228", "https://tec.openplanner.team/stops/Bwolvan1"], ["http://irail.be/stations/NMBS/008811544", "https://tec.openplanner.team/stops/Blmlcar1"], ["https://data.delijn.be/stops/405456", "https://tec.openplanner.team/stops/LWHzave1"], ["http://irail.be/stations/NMBS/008871175", "https://tec.openplanner.team/stops/Cjxetri1"], ["https://data.delijn.be/stops/304580", "https://mivb.openplanner.team/stops/0430748"], ["https://data.delijn.be/stops/305425", "https://mivb.openplanner.team/stops/9577"], ["https://data.delijn.be/stops/304705", "https://tec.openplanner.team/stops/Baudtri1"], ["http://irail.be/stations/NMBS/008842663", "https://tec.openplanner.team/stops/LESgare*"], ["http://irail.be/stations/NMBS/008811429", "https://mivb.openplanner.team/stops/2080"], ["https://data.delijn.be/stops/307233", "https://mivb.openplanner.team/stops/4266"], ["http://irail.be/stations/NMBS/008865565", "https://tec.openplanner.team/stops/X850aoa"], ["http://irail.be/stations/NMBS/008869054", "https://tec.openplanner.team/stops/X626afa"], ["https://data.delijn.be/stops/208402", "https://tec.openplanner.team/stops/H5rx103a"], ["https://data.delijn.be/stops/302401", "https://mivb.openplanner.team/stops/1495"], ["https://data.delijn.be/stops/305224", "https://tec.openplanner.team/stops/H1mk108d"], ["https://mivb.openplanner.team/stops/6119F", "https://tec.openplanner.team/stops/Bixlfla2"], ["http://irail.be/stations/NMBS/008863115", "https://tec.openplanner.team/stops/N501jqa"], ["https://mivb.openplanner.team/stops/2752", "https://tec.openplanner.team/stops/Baudulb2"], ["http://irail.be/stations/NMBS/008884319", "https://tec.openplanner.team/stops/H1bo105a"], ["http://irail.be/stations/NMBS/008882107", "https://tec.openplanner.team/stops/H2ll258a"], ["http://irail.be/stations/NMBS/008811676", "https://tec.openplanner.team/stops/Bllncom1"], ["https://data.delijn.be/stops/306312", "https://mivb.openplanner.team/stops/1110"], ["https://data.delijn.be/stops/303650", "https://mivb.openplanner.team/stops/1273"], ["https://data.delijn.be/stops/307147", "https://tec.openplanner.team/stops/Bhaless1"], ["https://data.delijn.be/stops/301400", "https://mivb.openplanner.team/stops/9683"], ["http://irail.be/stations/NMBS/008811916", "https://mivb.openplanner.team/stops/8062"], ["https://data.delijn.be/stops/307035", "https://tec.openplanner.team/stops/Balssvi2"], ["https://data.delijn.be/stops/401401", "https://mivb.openplanner.team/stops/3207"], ["https://data.delijn.be/stops/208190", "https://tec.openplanner.team/stops/H5rx126b"], ["http://irail.be/stations/NMBS/008814209", "https://tec.openplanner.team/stops/Bnivath1"], ["https://data.delijn.be/stops/407203", "https://tec.openplanner.team/stops/LHThall4"], ["https://data.delijn.be/stops/303832", "https://mivb.openplanner.team/stops/4253"], ["https://data.delijn.be/stops/406368", "https://tec.openplanner.team/stops/LMaburg4"], ["https://mivb.openplanner.team/stops/1160", "https://tec.openplanner.team/stops/Bbxltou1"], ["https://data.delijn.be/stops/410319", "https://tec.openplanner.team/stops/LPldoua4"], ["http://irail.be/stations/NMBS/008400280", "https://data.delijn.be/stops/501412"], ["https://data.delijn.be/stops/308447", "https://tec.openplanner.team/stops/Bovecha1"], ["https://data.delijn.be/stops/300062", "https://tec.openplanner.team/stops/Btubcal1"], ["http://irail.be/stations/NMBS/008872520", "https://tec.openplanner.team/stops/Bsamegl2"], ["http://irail.be/stations/NMBS/008891116", "https://data.delijn.be/stops/507278"], ["https://mivb.openplanner.team/stops/1497B", "https://tec.openplanner.team/stops/Bbxltou1"], ["http://irail.be/stations/NMBS/008821147", "https://data.delijn.be/stops/104320"], ["https://data.delijn.be/stops/308819", "https://mivb.openplanner.team/stops/0410146"], ["http://irail.be/stations/NMBS/008811601", "https://tec.openplanner.team/stops/Bottgar5"], ["https://data.delijn.be/stops/308095", "https://tec.openplanner.team/stops/Bpiesta2"], ["https://data.delijn.be/stops/304147", "https://tec.openplanner.team/stops/Bbghpln1"], ["http://irail.be/stations/NMBS/008891264", "https://data.delijn.be/stops/507664"], ["http://irail.be/stations/NMBS/008843307", "https://tec.openplanner.team/stops/NL80afa"], ["http://irail.be/stations/NMBS/008200520", "https://tec.openplanner.team/stops/X626agb"], ["https://data.delijn.be/stops/300827", "https://mivb.openplanner.team/stops/2838"], ["http://irail.be/stations/NMBS/008864469", "https://tec.openplanner.team/stops/X982bua"], ["https://mivb.openplanner.team/stops/1828", "https://tec.openplanner.team/stops/Bwolkra2"], ["https://data.delijn.be/stops/300938", "https://mivb.openplanner.team/stops/1303"], ["http://irail.be/stations/NMBS/008842846", "https://tec.openplanner.team/stops/LHaxhor1"], ["https://data.delijn.be/stops/408810", "https://tec.openplanner.team/stops/LVIdeva1"], ["https://mivb.openplanner.team/stops/5269F", "https://tec.openplanner.team/stops/Baudwav2"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Clb4dgi1"], ["https://data.delijn.be/stops/401418", "https://mivb.openplanner.team/stops/1321"], ["http://irail.be/stations/NMBS/008893534", "https://data.delijn.be/stops/207402"], ["http://irail.be/stations/NMBS/008865300", "https://tec.openplanner.team/stops/X804bwa"], ["http://irail.be/stations/NMBS/008842838", "https://tec.openplanner.team/stops/LCTmonu1"], ["https://data.delijn.be/stops/305243", "https://mivb.openplanner.team/stops/9780"], ["https://data.delijn.be/stops/300742", "https://mivb.openplanner.team/stops/7710204"], ["http://irail.be/stations/NMBS/008895620", "https://data.delijn.be/stops/307600"], ["https://data.delijn.be/stops/307193", "https://tec.openplanner.team/stops/Bhalark2"], ["https://data.delijn.be/stops/404091", "https://tec.openplanner.team/stops/LCRabbe1"], ["https://data.delijn.be/stops/302885", "https://tec.openplanner.team/stops/Bhevgro2"], ["https://data.delijn.be/stops/305174", "https://tec.openplanner.team/stops/Bwaveur2"], ["https://data.delijn.be/stops/408825", "https://tec.openplanner.team/stops/LMgwith2"], ["http://irail.be/stations/NMBS/008861135", "https://tec.openplanner.team/stops/N551aja"], ["https://data.delijn.be/stops/301301", "https://mivb.openplanner.team/stops/1483"], ["https://data.delijn.be/stops/408585", "https://tec.openplanner.team/stops/LCRabbe1"], ["https://data.delijn.be/stops/300941", "https://mivb.openplanner.team/stops/3204"], ["https://data.delijn.be/stops/300833", "https://mivb.openplanner.team/stops/2323"], ["http://irail.be/stations/NMBS/008861416", "https://tec.openplanner.team/stops/Blnzcar1"], ["https://data.delijn.be/stops/504241", "https://tec.openplanner.team/stops/H4co105a"], ["http://irail.be/stations/NMBS/008844347", "https://tec.openplanner.team/stops/Lhufays1"], ["http://irail.be/stations/NMBS/008822459", "https://data.delijn.be/stops/300670"], ["http://irail.be/stations/NMBS/008812237", "https://data.delijn.be/stops/306149"], ["https://data.delijn.be/stops/301118", "https://mivb.openplanner.team/stops/5656"], ["https://mivb.openplanner.team/stops/5229F", "https://tec.openplanner.team/stops/Bwolrod1"], ["http://irail.be/stations/NMBS/008892205", "https://data.delijn.be/stops/502807"], ["https://data.delijn.be/stops/300770", "https://mivb.openplanner.team/stops/6860G"], ["https://data.delijn.be/stops/300897", "https://mivb.openplanner.team/stops/2895"], ["https://data.delijn.be/stops/410154", "https://mivb.openplanner.team/stops/1316"], ["https://data.delijn.be/stops/303994", "https://tec.openplanner.team/stops/Bhaawdr1"], ["https://data.delijn.be/stops/304190", "https://mivb.openplanner.team/stops/3017"], ["http://irail.be/stations/NMBS/008814134", "https://mivb.openplanner.team/stops/5817F"], ["https://data.delijn.be/stops/300980", "https://mivb.openplanner.team/stops/1513"], ["http://irail.be/stations/NMBS/008728654", "https://tec.openplanner.team/stops/H4tg163a"], ["http://irail.be/stations/NMBS/008844628", "https://tec.openplanner.team/stops/LeUhook2"], ["http://irail.be/stations/NMBS/008874609", "https://tec.openplanner.team/stops/N543cbb"], ["http://irail.be/stations/NMBS/008812021", "https://mivb.openplanner.team/stops/7790556"], ["http://irail.be/stations/NMBS/008891611", "https://data.delijn.be/stops/505835"], ["http://irail.be/stations/NMBS/008843158", "https://tec.openplanner.team/stops/Ljegare1"], ["https://data.delijn.be/stops/304641", "https://mivb.openplanner.team/stops/1606"], ["http://irail.be/stations/NMBS/008886041", "https://tec.openplanner.team/stops/H5ma180a"], ["http://irail.be/stations/NMBS/008883006", "https://tec.openplanner.team/stops/H3br112a"], ["https://data.delijn.be/stops/305324", "https://mivb.openplanner.team/stops/9627"], ["http://irail.be/stations/NMBS/008896305", "https://data.delijn.be/stops/503547"], ["http://irail.be/stations/NMBS/008886587", "https://tec.openplanner.team/stops/H5at122a"], ["https://data.delijn.be/stops/306915", "https://tec.openplanner.team/stops/Btiegoo2"], ["https://data.delijn.be/stops/505828", "https://tec.openplanner.team/stops/H4mo165a"], ["https://data.delijn.be/stops/403773", "https://tec.openplanner.team/stops/LLnlimb2"], ["https://mivb.openplanner.team/stops/1640B", "https://tec.openplanner.team/stops/Bwolvan1"], ["https://data.delijn.be/stops/302421", "https://tec.openplanner.team/stops/Bmlngch1"], ["https://data.delijn.be/stops/300789", "https://mivb.openplanner.team/stops/3718"], ["http://irail.be/stations/NMBS/008866530", "https://tec.openplanner.team/stops/X617aha"], ["https://data.delijn.be/stops/407216", "https://tec.openplanner.team/stops/LHecime2"], ["https://data.delijn.be/stops/300890", "https://mivb.openplanner.team/stops/2814"], ["http://irail.be/stations/NMBS/008822053", "https://data.delijn.be/stops/305874"], ["https://mivb.openplanner.team/stops/2701", "https://tec.openplanner.team/stops/Bucccal3"], ["http://irail.be/stations/NMBS/008814167", "https://data.delijn.be/stops/307651"], ["http://irail.be/stations/NMBS/008833001", "https://data.delijn.be/stops/303148"], ["https://data.delijn.be/stops/302192", "https://tec.openplanner.team/stops/Bbeagae2"], ["https://data.delijn.be/stops/300781", "https://mivb.openplanner.team/stops/2564"], ["https://data.delijn.be/stops/405311", "https://tec.openplanner.team/stops/Blankal3"], ["https://data.delijn.be/stops/408805", "https://tec.openplanner.team/stops/LVIgare2"], ["http://irail.be/stations/NMBS/008814209", "https://tec.openplanner.team/stops/Bnivga62"], ["http://irail.be/stations/NMBS/008895257", "https://data.delijn.be/stops/208691"], ["http://irail.be/stations/NMBS/008811718", "https://tec.openplanner.team/stops/Bbgevil1"], ["http://irail.be/stations/NMBS/008811635", "https://tec.openplanner.team/stops/Blimegl1"], ["http://irail.be/stations/NMBS/008891405", "https://data.delijn.be/stops/506620"], ["https://data.delijn.be/stops/301688", "https://tec.openplanner.team/stops/Bhaawdr1"], ["http://irail.be/stations/NMBS/008891140", "https://data.delijn.be/stops/203303"], ["http://irail.be/stations/NMBS/008861333", "https://tec.openplanner.team/stops/N531anb"], ["http://irail.be/stations/NMBS/008882248", "https://tec.openplanner.team/stops/Cptrebe2"], ["https://data.delijn.be/stops/300785", "https://mivb.openplanner.team/stops/2535F"], ["http://irail.be/stations/NMBS/008872579", "https://tec.openplanner.team/stops/Bvlvbth2"], ["http://irail.be/stations/NMBS/008842853", "https://tec.openplanner.team/stops/LHaeg--1"], ["http://irail.be/stations/NMBS/008811304", "https://mivb.openplanner.team/stops/1728"], ["https://data.delijn.be/stops/302855", "https://tec.openplanner.team/stops/LWscona2"], ["http://irail.be/stations/NMBS/008895752", "https://data.delijn.be/stops/206713"], ["https://data.delijn.be/stops/306000", "https://tec.openplanner.team/stops/Brsregl2"], ["http://irail.be/stations/NMBS/008400219", "https://tec.openplanner.team/stops/LLApavi1"], ["https://data.delijn.be/stops/408976", "https://tec.openplanner.team/stops/LWAalou2"], ["https://data.delijn.be/stops/333234", "https://mivb.openplanner.team/stops/7830352"], ["https://data.delijn.be/stops/308722", "https://tec.openplanner.team/stops/Bgoesch1"], ["http://irail.be/stations/NMBS/008891405", "https://data.delijn.be/stops/501687"], ["https://data.delijn.be/stops/307250", "https://mivb.openplanner.team/stops/9979B"], ["http://irail.be/stations/NMBS/008821105", "https://data.delijn.be/stops/102286"], ["https://data.delijn.be/stops/408878", "https://tec.openplanner.team/stops/LFMkrut1"], ["http://irail.be/stations/NMBS/008200100", "https://tec.openplanner.team/stops/X685acb"], ["https://data.delijn.be/stops/301414", "https://tec.openplanner.team/stops/H1en106b"], ["https://data.delijn.be/stops/305237", "https://tec.openplanner.team/stops/Bspkdon2"], ["http://irail.be/stations/NMBS/008873379", "https://tec.openplanner.team/stops/Ccstord1"], ["http://irail.be/stations/NMBS/008863354", "https://tec.openplanner.team/stops/N501kpb"], ["https://data.delijn.be/stops/300389", "https://mivb.openplanner.team/stops/9678"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LMastat4"], ["https://data.delijn.be/stops/301061", "https://mivb.openplanner.team/stops/5089"], ["https://data.delijn.be/stops/407212", "https://tec.openplanner.team/stops/LHecime1"], ["https://mivb.openplanner.team/stops/2018", "https://tec.openplanner.team/stops/Bwbfhip1"], ["https://data.delijn.be/stops/302449", "https://tec.openplanner.team/stops/Bzluegl2"], ["http://irail.be/stations/NMBS/008811155", "https://mivb.openplanner.team/stops/3130"], ["https://data.delijn.be/stops/300769", "https://mivb.openplanner.team/stops/3802"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N203aca"], ["https://data.delijn.be/stops/302239", "https://tec.openplanner.team/stops/Blhupqu1"], ["https://mivb.openplanner.team/stops/1476", "https://tec.openplanner.team/stops/Bbxlple2"], ["http://irail.be/stations/NMBS/008822269", "https://data.delijn.be/stops/305605"], ["http://irail.be/stations/NMBS/008871837", "https://tec.openplanner.team/stops/Clddelh2"], ["https://data.delijn.be/stops/305263", "https://mivb.openplanner.team/stops/9783"], ["https://data.delijn.be/stops/400458", "https://tec.openplanner.team/stops/LEBeg--2"], ["http://irail.be/stations/NMBS/008822715", "https://data.delijn.be/stops/102593"], ["https://data.delijn.be/stops/308871", "https://mivb.openplanner.team/stops/6475F"], ["https://data.delijn.be/stops/207795", "https://tec.openplanner.team/stops/H5rx101b"], ["https://data.delijn.be/stops/302402", "https://mivb.openplanner.team/stops/6799F"], ["https://data.delijn.be/stops/308046", "https://tec.openplanner.team/stops/Bovetdo2"], ["https://data.delijn.be/stops/300979", "https://mivb.openplanner.team/stops/6365"], ["https://data.delijn.be/stops/307853", "https://mivb.openplanner.team/stops/4298"], ["http://irail.be/stations/NMBS/008895638", "https://data.delijn.be/stops/307296"], ["http://irail.be/stations/NMBS/008811270", "https://data.delijn.be/stops/302075"], ["http://irail.be/stations/NMBS/008843349", "https://tec.openplanner.team/stops/LAMvert1"], ["http://irail.be/stations/NMBS/008811817", "https://tec.openplanner.team/stops/Bottvtc1"], ["http://irail.be/stations/NMBS/008881125", "https://tec.openplanner.team/stops/H1gh165c"], ["https://data.delijn.be/stops/304463", "https://tec.openplanner.team/stops/Brsgtou2"], ["https://data.delijn.be/stops/410137", "https://tec.openplanner.team/stops/Lalverr2"], ["https://data.delijn.be/stops/308105", "https://tec.openplanner.team/stops/Bsrgegl2"], ["http://irail.be/stations/NMBS/008895802", "https://data.delijn.be/stops/207105"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/503707"], ["https://mivb.openplanner.team/stops/4292", "https://tec.openplanner.team/stops/Bwbfeta1"], ["http://irail.be/stations/NMBS/008814126", "https://mivb.openplanner.team/stops/2306"], ["https://data.delijn.be/stops/303949", "https://tec.openplanner.team/stops/Bbldass1"], ["http://irail.be/stations/NMBS/008841525", "https://tec.openplanner.team/stops/LlgOPER2"], ["http://irail.be/stations/NMBS/008822459", "https://data.delijn.be/stops/305830"], ["http://irail.be/stations/NMBS/008812005", "https://mivb.openplanner.team/stops/6413F"], ["https://data.delijn.be/stops/300392", "https://tec.openplanner.team/stops/Bhalh312"], ["https://data.delijn.be/stops/504380", "https://tec.openplanner.team/stops/H4pl115b"], ["http://irail.be/stations/NMBS/008885522", "https://tec.openplanner.team/stops/H4ag100a"], ["https://data.delijn.be/stops/300623", "https://tec.openplanner.team/stops/Bbeapim2"], ["https://data.delijn.be/stops/408447", "https://tec.openplanner.team/stops/LCAeg--1"], ["https://data.delijn.be/stops/300957", "https://tec.openplanner.team/stops/Baudulb2"], ["http://irail.be/stations/NMBS/008832433", "https://data.delijn.be/stops/401934"], ["http://irail.be/stations/NMBS/008844545", "https://tec.openplanner.team/stops/LDOviad2"], ["https://mivb.openplanner.team/stops/5261", "https://tec.openplanner.team/stops/Bettgar1"], ["https://data.delijn.be/stops/208011", "https://tec.openplanner.team/stops/H5fl101a"], ["https://data.delijn.be/stops/308128", "https://tec.openplanner.team/stops/Bgoekaz2"], ["http://irail.be/stations/NMBS/008833050", "https://data.delijn.be/stops/301426"], ["http://irail.be/stations/NMBS/008821337", "https://data.delijn.be/stops/107243"], ["https://data.delijn.be/stops/300774", "https://mivb.openplanner.team/stops/2375"], ["https://data.delijn.be/stops/300798", "https://mivb.openplanner.team/stops/2218F"], ["http://irail.be/stations/NMBS/008844339", "https://tec.openplanner.team/stops/LTHperr2"], ["http://irail.be/stations/NMBS/008841467", "https://tec.openplanner.team/stops/LFHsucr1"], ["https://data.delijn.be/stops/302793", "https://mivb.openplanner.team/stops/1668"], ["https://data.delijn.be/stops/401409", "https://mivb.openplanner.team/stops/8081"], ["http://irail.be/stations/NMBS/008865615", "https://tec.openplanner.team/stops/N347acb"], ["http://irail.be/stations/NMBS/008811734", "https://data.delijn.be/stops/304817"], ["http://irail.be/stations/NMBS/008844206", "https://tec.openplanner.team/stops/Lpeptwa2"], ["https://data.delijn.be/stops/307976", "https://tec.openplanner.team/stops/Bwavfbe1"], ["https://data.delijn.be/stops/303832", "https://mivb.openplanner.team/stops/6604F"], ["https://data.delijn.be/stops/300880", "https://mivb.openplanner.team/stops/4956"], ["https://data.delijn.be/stops/304096", "https://tec.openplanner.team/stops/Bove4ko2"], ["http://irail.be/stations/NMBS/008865300", "https://tec.openplanner.team/stops/X804alb"], ["http://irail.be/stations/NMBS/008881430", "https://tec.openplanner.team/stops/H1ha189b"], ["http://irail.be/stations/NMBS/008719203", "https://tec.openplanner.team/stops/X610aja"], ["http://irail.be/stations/NMBS/008883311", "https://data.delijn.be/stops/301418"], ["http://irail.be/stations/NMBS/008811536", "https://tec.openplanner.team/stops/Brixpla1"], ["https://data.delijn.be/stops/308729", "https://tec.openplanner.team/stops/Bhakmkr2"], ["http://irail.be/stations/NMBS/008843166", "https://tec.openplanner.team/stops/Lfhxhor2"], ["http://irail.be/stations/NMBS/008822160", "https://data.delijn.be/stops/207701"], ["https://data.delijn.be/stops/304207", "https://tec.openplanner.team/stops/Brsrpch2"], ["https://mivb.openplanner.team/stops/19", "https://tec.openplanner.team/stops/Bbxltou1"], ["https://mivb.openplanner.team/stops/1714", "https://tec.openplanner.team/stops/Bettbue2"], ["https://data.delijn.be/stops/503332", "https://tec.openplanner.team/stops/H4eh100b"], ["https://data.delijn.be/stops/302141", "https://tec.openplanner.team/stops/Bptecal2"], ["https://data.delijn.be/stops/305520", "https://mivb.openplanner.team/stops/1381"], ["https://data.delijn.be/stops/304090", "https://tec.openplanner.team/stops/Bovesol2"], ["http://irail.be/stations/NMBS/008841558", "https://tec.openplanner.team/stops/Llgerac1"], ["http://irail.be/stations/NMBS/008400280", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/301418", "https://tec.openplanner.team/stops/Benggar1"], ["http://irail.be/stations/NMBS/008895232", "https://data.delijn.be/stops/208954"], ["http://irail.be/stations/NMBS/008833209", "https://data.delijn.be/stops/108612"], ["http://irail.be/stations/NMBS/008821535", "https://data.delijn.be/stops/102082"], ["http://irail.be/stations/NMBS/008885704", "https://data.delijn.be/stops/504322"], ["http://irail.be/stations/NMBS/008864469", "https://tec.openplanner.team/stops/X982bca"], ["https://data.delijn.be/stops/301121", "https://tec.openplanner.team/stops/Buccdef1"], ["https://mivb.openplanner.team/stops/5265F", "https://tec.openplanner.team/stops/Bettbue2"], ["http://irail.be/stations/NMBS/008893542", "https://data.delijn.be/stops/202240"], ["https://data.delijn.be/stops/400485", "https://tec.openplanner.team/stops/LRGcana2"], ["http://irail.be/stations/NMBS/008864337", "https://tec.openplanner.team/stops/X994afa"], ["https://data.delijn.be/stops/307974", "https://tec.openplanner.team/stops/Bwavfol2"], ["https://data.delijn.be/stops/300983", "https://mivb.openplanner.team/stops/5867F"], ["https://data.delijn.be/stops/302427", "https://tec.openplanner.team/stops/Bjodrrg1"], ["https://mivb.openplanner.team/stops/1876", "https://tec.openplanner.team/stops/Bsgicfo1"], ["https://data.delijn.be/stops/408925", "https://tec.openplanner.team/stops/LTEnuro1"], ["http://irail.be/stations/NMBS/008845005", "https://tec.openplanner.team/stops/X790akc"], ["http://irail.be/stations/NMBS/008822145", "https://data.delijn.be/stops/207741"], ["https://data.delijn.be/stops/504772", "https://tec.openplanner.team/stops/H4wn124a"], ["http://irail.be/stations/NMBS/008015345", "https://tec.openplanner.team/stops/LaAnorm1"], ["http://irail.be/stations/NMBS/008891645", "https://data.delijn.be/stops/501659"], ["https://data.delijn.be/stops/305448", "https://mivb.openplanner.team/stops/1904"], ["https://data.delijn.be/stops/410143", "https://tec.openplanner.team/stops/Llgverg1"], ["http://irail.be/stations/NMBS/008843430", "https://tec.openplanner.team/stops/LBsfer-1"], ["http://irail.be/stations/NMBS/008864931", "https://tec.openplanner.team/stops/N235aga"], ["http://irail.be/stations/NMBS/008833126", "https://data.delijn.be/stops/302886"], ["https://data.delijn.be/stops/304600", "https://mivb.openplanner.team/stops/1382"], ["https://data.delijn.be/stops/302886", "https://tec.openplanner.team/stops/Bhevgro2"], ["http://irail.be/stations/NMBS/008895646", "https://data.delijn.be/stops/305238"], ["https://data.delijn.be/stops/408856", "https://tec.openplanner.team/stops/LFChuis1"], ["http://irail.be/stations/NMBS/008400131", "https://data.delijn.be/stops/108024"], ["http://irail.be/stations/NMBS/008811106", "https://mivb.openplanner.team/stops/3448B"], ["https://data.delijn.be/stops/307086", "https://tec.openplanner.team/stops/Btiegoo2"], ["http://irail.be/stations/NMBS/008728686", "https://tec.openplanner.team/stops/H4rx143b"], ["https://data.delijn.be/stops/209591", "https://tec.openplanner.team/stops/H1en101b"], ["https://data.delijn.be/stops/509292", "https://tec.openplanner.team/stops/H4mo208a"], ["https://data.delijn.be/stops/305353", "https://tec.openplanner.team/stops/Blmlvex2"], ["https://data.delijn.be/stops/308725", "https://tec.openplanner.team/stops/Bgoevli1"], ["https://mivb.openplanner.team/stops/1762", "https://tec.openplanner.team/stops/Bettcha1"], ["https://data.delijn.be/stops/307030", "https://tec.openplanner.team/stops/Balssvi1"], ["https://data.delijn.be/stops/301038", "https://mivb.openplanner.team/stops/8744"], ["https://data.delijn.be/stops/301156", "https://tec.openplanner.team/stops/Buccpor2"], ["https://data.delijn.be/stops/303660", "https://tec.openplanner.team/stops/Blkbavo2"], ["https://data.delijn.be/stops/308853", "https://mivb.openplanner.team/stops/5003"], ["http://irail.be/stations/NMBS/008822228", "https://data.delijn.be/stops/109508"], ["http://irail.be/stations/NMBS/008884632", "https://tec.openplanner.team/stops/H1po133a"], ["http://irail.be/stations/NMBS/008811635", "https://tec.openplanner.team/stops/Bottbou2"], ["http://irail.be/stations/NMBS/008821436", "https://data.delijn.be/stops/104306"], ["http://irail.be/stations/NMBS/008863867", "https://tec.openplanner.team/stops/N308aha"], ["http://irail.be/stations/NMBS/008881570", "https://tec.openplanner.team/stops/H1fr127a"], ["http://irail.be/stations/NMBS/008842705", "https://tec.openplanner.team/stops/LCPconf2"], ["http://irail.be/stations/NMBS/008833175", "https://data.delijn.be/stops/303175"], ["http://irail.be/stations/NMBS/008200510", "https://tec.openplanner.team/stops/X685agb"], ["http://irail.be/stations/NMBS/008883808", "https://tec.openplanner.team/stops/Btubdeh2"], ["https://data.delijn.be/stops/301076", "https://mivb.openplanner.team/stops/3017"], ["https://mivb.openplanner.team/stops/1250", "https://tec.openplanner.team/stops/Buccdho1"], ["http://irail.be/stations/NMBS/008844339", "https://tec.openplanner.team/stops/LTHec--2"], ["https://data.delijn.be/stops/300918", "https://mivb.openplanner.team/stops/5044"], ["http://irail.be/stations/NMBS/008831781", "https://data.delijn.be/stops/402118"], ["http://irail.be/stations/NMBS/008814456", "https://mivb.openplanner.team/stops/4309"], ["https://data.delijn.be/stops/306912", "https://tec.openplanner.team/stops/Bbosgar2"], ["http://irail.be/stations/NMBS/008814209", "https://tec.openplanner.team/stops/Bnivrwi2"], ["http://irail.be/stations/NMBS/008821659", "https://data.delijn.be/stops/103136"], ["https://data.delijn.be/stops/404667", "https://tec.openplanner.team/stops/LJUmate1"], ["https://data.delijn.be/stops/300854", "https://mivb.openplanner.team/stops/0430948"], ["https://data.delijn.be/stops/406714", "https://tec.openplanner.team/stops/LRUhama1"], ["https://data.delijn.be/stops/300996", "https://mivb.openplanner.team/stops/2247"], ["http://irail.be/stations/NMBS/008811817", "https://tec.openplanner.team/stops/Bmoucnd2"], ["https://data.delijn.be/stops/300955", "https://mivb.openplanner.team/stops/2753"], ["https://mivb.openplanner.team/stops/8331", "https://tec.openplanner.team/stops/Bsgihmo1"], ["https://data.delijn.be/stops/504654", "https://tec.openplanner.team/stops/H4co162a"], ["https://data.delijn.be/stops/303223", "https://mivb.openplanner.team/stops/1479"], ["https://data.delijn.be/stops/400468", "https://tec.openplanner.team/stops/LEMeg--1"], ["http://irail.be/stations/NMBS/008843133", "https://tec.openplanner.team/stops/Lkivolg2"], ["https://data.delijn.be/stops/304442", "https://tec.openplanner.team/stops/Brsggar2"], ["http://irail.be/stations/NMBS/008833274", "https://data.delijn.be/stops/304428"], ["https://data.delijn.be/stops/504310", "https://tec.openplanner.team/stops/H4mo188a"], ["http://irail.be/stations/NMBS/008822715", "https://data.delijn.be/stops/102387"], ["https://data.delijn.be/stops/509452", "https://tec.openplanner.team/stops/H4mo133a"], ["https://data.delijn.be/stops/407772", "https://tec.openplanner.team/stops/LRmrode1"], ["https://data.delijn.be/stops/208186", "https://tec.openplanner.team/stops/H5rx135b"], ["https://data.delijn.be/stops/300833", "https://mivb.openplanner.team/stops/2518"], ["http://irail.be/stations/NMBS/008863842", "https://tec.openplanner.team/stops/N338aab"], ["https://data.delijn.be/stops/509738", "https://tec.openplanner.team/stops/H4mo195b"], ["https://data.delijn.be/stops/404662", "https://tec.openplanner.team/stops/LWinavi1"], ["http://irail.be/stations/NMBS/008811411", "https://data.delijn.be/stops/401415"], ["http://irail.be/stations/NMBS/008893815", "https://data.delijn.be/stops/202037"], ["https://data.delijn.be/stops/300773", "https://mivb.openplanner.team/stops/2373"], ["http://irail.be/stations/NMBS/008821816", "https://data.delijn.be/stops/104739"], ["http://irail.be/stations/NMBS/008845229", "https://tec.openplanner.team/stops/LCogara1"], ["https://data.delijn.be/stops/504295", "https://tec.openplanner.team/stops/H4lu127a"], ["http://irail.be/stations/NMBS/008832409", "https://data.delijn.be/stops/406795"], ["https://data.delijn.be/stops/301741", "https://mivb.openplanner.team/stops/9609"], ["https://data.delijn.be/stops/300906", "https://mivb.openplanner.team/stops/1913"], ["https://data.delijn.be/stops/401413", "https://mivb.openplanner.team/stops/4364"], ["http://irail.be/stations/NMBS/008811288", "https://data.delijn.be/stops/306340"], ["https://data.delijn.be/stops/407215", "https://tec.openplanner.team/stops/LHSfexh1"], ["https://data.delijn.be/stops/504317", "https://tec.openplanner.team/stops/H4mo207b"], ["https://data.delijn.be/stops/305208", "https://tec.openplanner.team/stops/Btiegma1"], ["https://mivb.openplanner.team/stops/5461F", "https://tec.openplanner.team/stops/Bixlozo1"], ["https://data.delijn.be/stops/300316", "https://tec.openplanner.team/stops/Bhmmcha1"], ["http://irail.be/stations/NMBS/008831765", "https://data.delijn.be/stops/402109"], ["http://irail.be/stations/NMBS/008871670", "https://tec.openplanner.team/stops/Clsghoy1"], ["https://data.delijn.be/stops/408920", "https://tec.openplanner.team/stops/LTEzinn2"], ["http://irail.be/stations/NMBS/008863362", "https://tec.openplanner.team/stops/N501cpa"], ["http://irail.be/stations/NMBS/008842051", "https://tec.openplanner.team/stops/Lcacaps2"], ["https://data.delijn.be/stops/408952", "https://tec.openplanner.team/stops/LWAor--1"], ["http://irail.be/stations/NMBS/008811148", "https://mivb.openplanner.team/stops/2899"], ["https://data.delijn.be/stops/303567", "https://mivb.openplanner.team/stops/3201"], ["https://data.delijn.be/stops/302400", "https://mivb.openplanner.team/stops/1490"], ["https://data.delijn.be/stops/404687", "https://tec.openplanner.team/stops/LWipaif1"], ["http://irail.be/stations/NMBS/008814308", "https://data.delijn.be/stops/301967"], ["https://mivb.openplanner.team/stops/5426", "https://tec.openplanner.team/stops/Baudhde1"], ["http://irail.be/stations/NMBS/008881315", "https://tec.openplanner.team/stops/H1ni323b"], ["https://data.delijn.be/stops/400467", "https://tec.openplanner.team/stops/LEMeg--1"], ["https://data.delijn.be/stops/305426", "https://mivb.openplanner.team/stops/5520F"], ["http://irail.be/stations/NMBS/008869047", "https://tec.openplanner.team/stops/X615afb"], ["https://data.delijn.be/stops/509534", "https://tec.openplanner.team/stops/H4wn126b"], ["http://irail.be/stations/NMBS/008889045", "https://tec.openplanner.team/stops/H4te249b"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bcsegal2"], ["https://data.delijn.be/stops/300920", "https://mivb.openplanner.team/stops/7271"], ["http://irail.be/stations/NMBS/008821089", "https://data.delijn.be/stops/101589"], ["http://irail.be/stations/NMBS/008728600", "https://tec.openplanner.team/stops/H4co142a"], ["http://irail.be/stations/NMBS/008893815", "https://data.delijn.be/stops/202986"], ["http://irail.be/stations/NMBS/008844230", "https://tec.openplanner.team/stops/LBachpl2"], ["https://data.delijn.be/stops/304168", "https://tec.openplanner.team/stops/Blemmar1"], ["http://irail.be/stations/NMBS/008821600", "https://data.delijn.be/stops/109664"], ["https://data.delijn.be/stops/308867", "https://tec.openplanner.team/stops/Bkrapri2"], ["http://irail.be/stations/NMBS/008843141", "https://tec.openplanner.team/stops/LjeGRPMD"], ["http://irail.be/stations/NMBS/008882230", "https://tec.openplanner.team/stops/H2mo144a"], ["http://irail.be/stations/NMBS/008863156", "https://tec.openplanner.team/stops/N539bfb"], ["http://irail.be/stations/NMBS/008886009", "https://tec.openplanner.team/stops/H5at116a"], ["http://irail.be/stations/NMBS/008811916", "https://mivb.openplanner.team/stops/6464"], ["https://data.delijn.be/stops/306396", "https://mivb.openplanner.team/stops/9726"], ["http://irail.be/stations/NMBS/008842648", "https://tec.openplanner.team/stops/LTIdonn1"], ["https://data.delijn.be/stops/407231", "https://tec.openplanner.team/stops/LORherl1"], ["http://irail.be/stations/NMBS/008861135", "https://tec.openplanner.team/stops/N533aca"], ["https://data.delijn.be/stops/303232", "https://tec.openplanner.team/stops/Bhevhha1"], ["https://data.delijn.be/stops/306816", "https://tec.openplanner.team/stops/Balsnie2"], ["https://mivb.openplanner.team/stops/2138B", "https://tec.openplanner.team/stops/Buccvoi2"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1ju119b"], ["https://data.delijn.be/stops/304446", "https://tec.openplanner.team/stops/Brsgleq1"], ["https://data.delijn.be/stops/308991", "https://tec.openplanner.team/stops/Balsnay2"], ["https://data.delijn.be/stops/300803", "https://mivb.openplanner.team/stops/2252"], ["https://data.delijn.be/stops/306930", "https://tec.openplanner.team/stops/Bgoevli1"], ["https://data.delijn.be/stops/509740", "https://tec.openplanner.team/stops/H4mo195b"], ["http://irail.be/stations/NMBS/008842838", "https://tec.openplanner.team/stops/LCPbatt1"], ["https://data.delijn.be/stops/300961", "https://mivb.openplanner.team/stops/0260137"], ["https://data.delijn.be/stops/302132", "https://tec.openplanner.team/stops/Bptemch2"], ["https://mivb.openplanner.team/stops/5826", "https://tec.openplanner.team/stops/Bucccre2"], ["http://irail.be/stations/NMBS/008874716", "https://tec.openplanner.team/stops/Causncb2"], ["http://irail.be/stations/NMBS/008811510", "https://tec.openplanner.team/stops/Blhupcl2"], ["https://data.delijn.be/stops/300810", "https://mivb.openplanner.team/stops/4266"], ["https://data.delijn.be/stops/408847", "https://tec.openplanner.team/stops/LRmrode2"], ["https://data.delijn.be/stops/408893", "https://tec.openplanner.team/stops/LDpulve2"], ["https://data.delijn.be/stops/209180", "https://tec.openplanner.team/stops/H5el101b"], ["http://irail.be/stations/NMBS/008845203", "https://tec.openplanner.team/stops/LTPpreh2"], ["https://data.delijn.be/stops/408951", "https://tec.openplanner.team/stops/LWApr%C3%A9s4"], ["http://irail.be/stations/NMBS/008811007", "https://mivb.openplanner.team/stops/5320"], ["https://data.delijn.be/stops/300999", "https://mivb.openplanner.team/stops/6419F"], ["http://irail.be/stations/NMBS/008896503", "https://data.delijn.be/stops/500949"], ["https://data.delijn.be/stops/304153", "https://tec.openplanner.team/stops/Blempuc2"], ["http://irail.be/stations/NMBS/008849023", "https://tec.openplanner.team/stops/LkEschi2"], ["https://data.delijn.be/stops/408863", "https://tec.openplanner.team/stops/LFCscho2"], ["https://data.delijn.be/stops/405430", "https://tec.openplanner.team/stops/Bezeksj1"], ["http://irail.be/stations/NMBS/008843901", "https://tec.openplanner.team/stops/Ljulieg2"], ["http://irail.be/stations/NMBS/008891165", "https://data.delijn.be/stops/209650"], ["https://data.delijn.be/stops/307676", "https://tec.openplanner.team/stops/Bbghepi2"], ["https://data.delijn.be/stops/304012", "https://tec.openplanner.team/stops/Boveker1"], ["https://data.delijn.be/stops/300801", "https://mivb.openplanner.team/stops/3854B"], ["http://irail.be/stations/NMBS/008821444", "https://data.delijn.be/stops/102236"], ["http://irail.be/stations/NMBS/008892007", "https://data.delijn.be/stops/205915"], ["http://irail.be/stations/NMBS/007015440", "https://data.delijn.be/stops/501170"], ["http://irail.be/stations/NMBS/008865565", "https://tec.openplanner.team/stops/X850aga"], ["https://data.delijn.be/stops/307605", "https://tec.openplanner.team/stops/Bspkkhe1"], ["http://irail.be/stations/NMBS/008892288", "https://data.delijn.be/stops/507685"], ["https://data.delijn.be/stops/303246", "https://tec.openplanner.team/stops/Blkbbeu1"], ["https://data.delijn.be/stops/307003", "https://tec.openplanner.team/stops/Blkbbvh2"], ["http://irail.be/stations/NMBS/008893542", "https://data.delijn.be/stops/200088"], ["https://mivb.openplanner.team/stops/1724", "https://tec.openplanner.team/stops/Baudsta2"], ["https://mivb.openplanner.team/stops/1915", "https://tec.openplanner.team/stops/Buccbas1"], ["https://data.delijn.be/stops/305226", "https://mivb.openplanner.team/stops/1143"], ["http://irail.be/stations/NMBS/008891157", "https://data.delijn.be/stops/211068"], ["https://data.delijn.be/stops/208872", "https://tec.openplanner.team/stops/H5rx106b"], ["https://mivb.openplanner.team/stops/3125", "https://tec.openplanner.team/stops/Bixleix1"], ["http://irail.be/stations/NMBS/008821071", "https://data.delijn.be/stops/109150"], ["https://data.delijn.be/stops/305522", "https://mivb.openplanner.team/stops/1635"], ["https://data.delijn.be/stops/401724", "https://tec.openplanner.team/stops/LWHkerk2"], ["https://mivb.openplanner.team/stops/1920", "https://tec.openplanner.team/stops/Buccobs2"], ["https://data.delijn.be/stops/301043", "https://mivb.openplanner.team/stops/3226B"], ["http://irail.be/stations/NMBS/008814266", "https://tec.openplanner.team/stops/Bwatgar4"], ["http://irail.be/stations/NMBS/008843224", "https://tec.openplanner.team/stops/Lpocent2"], ["http://irail.be/stations/NMBS/008895125", "https://data.delijn.be/stops/206005"], ["http://irail.be/stations/NMBS/008881000", "https://tec.openplanner.team/stops/H1ms936a"], ["https://data.delijn.be/stops/307644", "https://tec.openplanner.team/stops/Bbrlmez1"], ["http://irail.be/stations/NMBS/008886041", "https://tec.openplanner.team/stops/H5ma185a"], ["https://data.delijn.be/stops/209187", "https://tec.openplanner.team/stops/H5rx136a"], ["http://irail.be/stations/NMBS/008811247", "https://data.delijn.be/stops/305580"], ["http://irail.be/stations/NMBS/007015440", "https://data.delijn.be/stops/504023"], ["https://data.delijn.be/stops/303080", "https://tec.openplanner.team/stops/Bleunaa1"], ["https://data.delijn.be/stops/404662", "https://tec.openplanner.team/stops/LJU493-1"], ["https://mivb.openplanner.team/stops/0260237", "https://tec.openplanner.team/stops/Baudhde1"], ["http://irail.be/stations/NMBS/008893070", "https://data.delijn.be/stops/208697"], ["https://data.delijn.be/stops/408869", "https://tec.openplanner.team/stops/LFCalte2"], ["http://irail.be/stations/NMBS/008863834", "https://tec.openplanner.team/stops/N261afa"], ["https://data.delijn.be/stops/304038", "https://tec.openplanner.team/stops/Boveklo2"], ["https://data.delijn.be/stops/400454", "https://tec.openplanner.team/stops/LEBdoct2"], ["https://mivb.openplanner.team/stops/5208", "https://tec.openplanner.team/stops/Bixlozo2"], ["https://data.delijn.be/stops/300862", "https://mivb.openplanner.team/stops/4271"], ["https://data.delijn.be/stops/301156", "https://mivb.openplanner.team/stops/2118"], ["https://data.delijn.be/stops/300365", "https://tec.openplanner.team/stops/Bwaucig1"], ["https://data.delijn.be/stops/301924", "https://mivb.openplanner.team/stops/2071"], ["https://data.delijn.be/stops/300785", "https://mivb.openplanner.team/stops/7700205"], ["https://data.delijn.be/stops/407211", "https://tec.openplanner.team/stops/LHScite2"], ["https://data.delijn.be/stops/405701", "https://tec.openplanner.team/stops/Llghugo2"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N219abb"], ["http://irail.be/stations/NMBS/008872579", "https://tec.openplanner.team/stops/Bvlvpco1"], ["http://irail.be/stations/NMBS/008821071", "https://data.delijn.be/stops/107320"], ["http://irail.be/stations/NMBS/008842648", "https://tec.openplanner.team/stops/LEShony1"], ["https://mivb.openplanner.team/stops/1871B", "https://tec.openplanner.team/stops/Bettlha1"], ["https://data.delijn.be/stops/408492", "https://tec.openplanner.team/stops/LWAvisi2"], ["https://data.delijn.be/stops/209601", "https://tec.openplanner.team/stops/Bspkbeu1"], ["https://data.delijn.be/stops/304089", "https://tec.openplanner.team/stops/Bovesog2"], ["https://data.delijn.be/stops/304437", "https://tec.openplanner.team/stops/Brsggea1"], ["https://data.delijn.be/stops/406767", "https://tec.openplanner.team/stops/LHgroso2"], ["http://irail.be/stations/NMBS/008843224", "https://tec.openplanner.team/stops/Lfhdone2"], ["https://data.delijn.be/stops/307717", "https://mivb.openplanner.team/stops/4319"], ["https://data.delijn.be/stops/300335", "https://tec.openplanner.team/stops/Balswsa2"], ["https://data.delijn.be/stops/301014", "https://mivb.openplanner.team/stops/4058F"], ["https://data.delijn.be/stops/407901", "https://tec.openplanner.team/stops/LLaover3"], ["https://data.delijn.be/stops/302823", "https://tec.openplanner.team/stops/Blhugar2"], ["http://irail.be/stations/NMBS/008814373", "https://mivb.openplanner.team/stops/3860"], ["http://irail.be/stations/NMBS/008871647", "https://tec.openplanner.team/stops/H1so142c"], ["https://data.delijn.be/stops/307971", "https://tec.openplanner.team/stops/Bwavlav1"], ["https://data.delijn.be/stops/305297", "https://mivb.openplanner.team/stops/9631"], ["https://data.delijn.be/stops/205982", "https://tec.openplanner.team/stops/H4wt160b"], ["https://data.delijn.be/stops/308875", "https://tec.openplanner.team/stops/Bbosdra2"], ["https://data.delijn.be/stops/301072", "https://mivb.openplanner.team/stops/6471"], ["https://data.delijn.be/stops/504452", "https://tec.openplanner.team/stops/H4rk101b"], ["https://data.delijn.be/stops/307142", "https://mivb.openplanner.team/stops/2541"], ["https://data.delijn.be/stops/401417", "https://mivb.openplanner.team/stops/0806"], ["https://data.delijn.be/stops/307641", "https://mivb.openplanner.team/stops/1933B"], ["http://irail.be/stations/NMBS/008814340", "https://data.delijn.be/stops/303283"], ["https://data.delijn.be/stops/300816", "https://mivb.openplanner.team/stops/4230"], ["https://data.delijn.be/stops/509654", "https://tec.openplanner.team/stops/H4co151a"], ["https://data.delijn.be/stops/504451", "https://tec.openplanner.team/stops/H4mo133a"], ["http://irail.be/stations/NMBS/008871308", "https://tec.openplanner.team/stops/Cpccoss2"], ["https://data.delijn.be/stops/405739", "https://tec.openplanner.team/stops/Lrcarse2"], ["http://irail.be/stations/NMBS/008815040", "https://data.delijn.be/stops/301069"], ["http://irail.be/stations/NMBS/008873239", "https://tec.openplanner.team/stops/N118bbb"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N570aaa"], ["https://data.delijn.be/stops/406565", "https://tec.openplanner.team/stops/LLxmonu2"], ["http://irail.be/stations/NMBS/008892031", "https://data.delijn.be/stops/201186"], ["http://irail.be/stations/NMBS/008731388", "https://tec.openplanner.team/stops/H4lg100a"], ["https://data.delijn.be/stops/301985", "https://tec.openplanner.team/stops/Bhalark2"], ["https://data.delijn.be/stops/405717", "https://tec.openplanner.team/stops/Llglefe2"], ["https://data.delijn.be/stops/303948", "https://tec.openplanner.team/stops/Bbbksth2"], ["https://data.delijn.be/stops/307975", "https://tec.openplanner.team/stops/Bwavpar1"], ["https://data.delijn.be/stops/304726", "https://mivb.openplanner.team/stops/9600B"], ["http://irail.be/stations/NMBS/008811247", "https://data.delijn.be/stops/305460"], ["https://data.delijn.be/stops/208182", "https://tec.openplanner.team/stops/H5rx131a"], ["https://data.delijn.be/stops/302411", "https://tec.openplanner.team/stops/Bmlngch2"], ["http://irail.be/stations/NMBS/008885530", "https://tec.openplanner.team/stops/H4my120a"], ["https://data.delijn.be/stops/304621", "https://mivb.openplanner.team/stops/3850"], ["http://irail.be/stations/NMBS/008881166", "https://tec.openplanner.team/stops/H1ju120b"], ["https://data.delijn.be/stops/305342", "https://tec.openplanner.team/stops/Bbgever2"], ["http://irail.be/stations/NMBS/008861432", "https://tec.openplanner.team/stops/N525atb"], ["https://data.delijn.be/stops/307213", "https://tec.openplanner.team/stops/Bbchgod2"], ["https://data.delijn.be/stops/404062", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://data.delijn.be/stops/305423", "https://mivb.openplanner.team/stops/9169"], ["https://data.delijn.be/stops/409000", "https://tec.openplanner.team/stops/LWAeloi2"], ["https://data.delijn.be/stops/300969", "https://mivb.openplanner.team/stops/3529"], ["http://irail.be/stations/NMBS/008821725", "https://data.delijn.be/stops/107042"], ["http://irail.be/stations/NMBS/008844230", "https://tec.openplanner.team/stops/LNEgaul4"], ["http://irail.be/stations/NMBS/008814258", "https://tec.openplanner.team/stops/Bblagar1"], ["https://data.delijn.be/stops/307151", "https://tec.openplanner.team/stops/Bhalomo2"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2hp123d"], ["https://data.delijn.be/stops/300812", "https://mivb.openplanner.team/stops/8793"], ["http://irail.be/stations/NMBS/008885068", "https://tec.openplanner.team/stops/H4fr145b"], ["http://irail.be/stations/NMBS/008812120", "https://data.delijn.be/stops/302152"], ["http://irail.be/stations/NMBS/008814167", "https://tec.openplanner.team/stops/Brsggar1"], ["https://data.delijn.be/stops/304818", "https://tec.openplanner.team/stops/Bwavpar1"], ["http://irail.be/stations/NMBS/008811767", "https://tec.openplanner.team/stops/Bpecvme1"], ["http://irail.be/stations/NMBS/008891033", "https://data.delijn.be/stops/507643"], ["https://data.delijn.be/stops/305350", "https://tec.openplanner.team/stops/Bbgerlr2"], ["http://irail.be/stations/NMBS/008881505", "https://tec.openplanner.team/stops/H1qp150a"], ["http://irail.be/stations/NMBS/008811775", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://data.delijn.be/stops/308853", "https://mivb.openplanner.team/stops/5471"], ["https://data.delijn.be/stops/400475", "https://tec.openplanner.team/stops/LGLdeni2"], ["https://data.delijn.be/stops/300992", "https://mivb.openplanner.team/stops/2243F"], ["http://irail.be/stations/NMBS/008886553", "https://tec.openplanner.team/stops/H1le121a"], ["https://data.delijn.be/stops/410018", "https://tec.openplanner.team/stops/Blanath1"], ["http://irail.be/stations/NMBS/008821063", "https://data.delijn.be/stops/102909"], ["https://data.delijn.be/stops/303225", "https://mivb.openplanner.team/stops/9686"], ["https://data.delijn.be/stops/308856", "https://mivb.openplanner.team/stops/2801"], ["https://data.delijn.be/stops/304103", "https://tec.openplanner.team/stops/Bove4ko2"], ["https://mivb.openplanner.team/stops/1729", "https://tec.openplanner.team/stops/Bixlqll1"], ["https://data.delijn.be/stops/410144", "https://tec.openplanner.team/stops/Llgbois2"], ["https://data.delijn.be/stops/302855", "https://tec.openplanner.team/stops/Bwaanwi2"], ["https://data.delijn.be/stops/306641", "https://mivb.openplanner.team/stops/4274"], ["https://data.delijn.be/stops/308733", "https://tec.openplanner.team/stops/Bgoewat1"], ["https://data.delijn.be/stops/209183", "https://tec.openplanner.team/stops/H5rx104a"], ["https://data.delijn.be/stops/308446", "https://tec.openplanner.team/stops/Bovetdo2"], ["http://irail.be/stations/NMBS/008843349", "https://tec.openplanner.team/stops/LOmlime1"], ["https://data.delijn.be/stops/301076", "https://mivb.openplanner.team/stops/1320"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/N574aea"], ["https://mivb.openplanner.team/stops/2110B", "https://tec.openplanner.team/stops/Buccvoi3"], ["https://data.delijn.be/stops/302440", "https://tec.openplanner.team/stops/Bzluegl1"], ["https://data.delijn.be/stops/304452", "https://tec.openplanner.team/stops/Brsgrol1"], ["https://data.delijn.be/stops/301134", "https://tec.openplanner.team/stops/Buccvch2"], ["http://irail.be/stations/NMBS/008821519", "https://data.delijn.be/stops/105853"], ["http://irail.be/stations/NMBS/008822145", "https://data.delijn.be/stops/207338"], ["https://data.delijn.be/stops/405719", "https://tec.openplanner.team/stops/Llgwild8"], ["http://irail.be/stations/NMBS/008821154", "https://data.delijn.be/stops/104315"], ["https://mivb.openplanner.team/stops/6115F", "https://tec.openplanner.team/stops/Bettcha3"], ["http://irail.be/stations/NMBS/008400219", "https://data.delijn.be/stops/408826"], ["https://data.delijn.be/stops/305346", "https://tec.openplanner.team/stops/Bbgever2"], ["https://data.delijn.be/stops/407201", "https://tec.openplanner.team/stops/LHehacc2"], ["https://data.delijn.be/stops/400682", "https://tec.openplanner.team/stops/LHgtomb1"], ["https://data.delijn.be/stops/207761", "https://tec.openplanner.team/stops/H5rx150a"], ["https://data.delijn.be/stops/408681", "https://tec.openplanner.team/stops/LRUhama2"], ["http://irail.be/stations/NMBS/008874724", "https://tec.openplanner.team/stops/N534abb"], ["https://data.delijn.be/stops/301000", "https://mivb.openplanner.team/stops/6419F"], ["https://mivb.openplanner.team/stops/2927", "https://tec.openplanner.team/stops/Bbxltrv2"], ["https://data.delijn.be/stops/408894", "https://tec.openplanner.team/stops/LWHkerk1"], ["http://irail.be/stations/NMBS/008822053", "https://data.delijn.be/stops/301452"], ["http://irail.be/stations/NMBS/008844321", "https://tec.openplanner.team/stops/LTHcime2"], ["http://irail.be/stations/NMBS/008892692", "https://data.delijn.be/stops/209210"], ["https://data.delijn.be/stops/301088", "https://mivb.openplanner.team/stops/1515"], ["https://data.delijn.be/stops/307965", "https://tec.openplanner.team/stops/Bwavcar1"], ["http://irail.be/stations/NMBS/008822608", "https://data.delijn.be/stops/104573"], ["https://data.delijn.be/stops/307167", "https://tec.openplanner.team/stops/Bhalpar2"], ["http://irail.be/stations/NMBS/008822269", "https://data.delijn.be/stops/301448"], ["https://data.delijn.be/stops/408804", "https://tec.openplanner.team/stops/LVIgare2"], ["https://data.delijn.be/stops/401404", "https://mivb.openplanner.team/stops/5039"], ["http://irail.be/stations/NMBS/008847258", "https://tec.openplanner.team/stops/Lkivolg2"], ["https://data.delijn.be/stops/300330", "https://tec.openplanner.team/stops/Bblapin2"], ["http://irail.be/stations/NMBS/008863818", "https://tec.openplanner.team/stops/N232aaa"], ["https://data.delijn.be/stops/305435", "https://mivb.openplanner.team/stops/1627"], ["https://data.delijn.be/stops/408908", "https://tec.openplanner.team/stops/LXhmara2"], ["http://irail.be/stations/NMBS/008871381", "https://tec.openplanner.team/stops/H2go114c"], ["https://data.delijn.be/stops/208192", "https://tec.openplanner.team/stops/H5rx102b"], ["https://data.delijn.be/stops/300018", "https://mivb.openplanner.team/stops/2762"], ["https://data.delijn.be/stops/405401", "https://tec.openplanner.team/stops/Blanmde2"], ["https://data.delijn.be/stops/408871", "https://tec.openplanner.team/stops/LFCdree2"], ["https://data.delijn.be/stops/300772", "https://mivb.openplanner.team/stops/7670108"], ["https://data.delijn.be/stops/408690", "https://tec.openplanner.team/stops/LTobilz2"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/503465"], ["https://data.delijn.be/stops/300804", "https://mivb.openplanner.team/stops/1498"], ["https://data.delijn.be/stops/401419", "https://mivb.openplanner.team/stops/1540"], ["https://data.delijn.be/stops/301089", "https://tec.openplanner.team/stops/Bkrawil1"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/101666"], ["http://irail.be/stations/NMBS/008811510", "https://tec.openplanner.team/stops/Blhulor1"], ["http://irail.be/stations/NMBS/008866530", "https://tec.openplanner.team/stops/X696ala"], ["http://irail.be/stations/NMBS/008844008", "https://tec.openplanner.team/stops/Lveyser1"], ["http://irail.be/stations/NMBS/008892692", "https://data.delijn.be/stops/209808"], ["http://irail.be/stations/NMBS/008872520", "https://tec.openplanner.team/stops/N584bba"], ["https://data.delijn.be/stops/300815", "https://mivb.openplanner.team/stops/4276"], ["http://irail.be/stations/NMBS/008891124", "https://data.delijn.be/stops/502072"], ["https://data.delijn.be/stops/307807", "https://mivb.openplanner.team/stops/7750260"], ["http://irail.be/stations/NMBS/008811213", "https://data.delijn.be/stops/303529"], ["http://irail.be/stations/NMBS/008821907", "https://data.delijn.be/stops/109801"], ["https://data.delijn.be/stops/405310", "https://tec.openplanner.team/stops/Blangar1"], ["http://irail.be/stations/NMBS/008864964", "https://tec.openplanner.team/stops/N535aib"], ["https://data.delijn.be/stops/504239", "https://tec.openplanner.team/stops/H4co106a"], ["https://data.delijn.be/stops/303632", "https://mivb.openplanner.team/stops/6659F"], ["https://data.delijn.be/stops/307683", "https://mivb.openplanner.team/stops/1995F"], ["http://irail.be/stations/NMBS/008814373", "https://mivb.openplanner.team/stops/2665F"], ["https://data.delijn.be/stops/207767", "https://tec.openplanner.team/stops/H5rx114b"], ["https://mivb.openplanner.team/stops/1638B", "https://tec.openplanner.team/stops/Bwolkra1"], ["http://irail.be/stations/NMBS/008886058", "https://tec.openplanner.team/stops/H5ar103a"], ["https://data.delijn.be/stops/208760", "https://tec.openplanner.team/stops/H5rx102b"], ["https://data.delijn.be/stops/308955", "https://mivb.openplanner.team/stops/9553"], ["https://data.delijn.be/stops/408904", "https://tec.openplanner.team/stops/LAUscha1"], ["https://data.delijn.be/stops/302798", "https://mivb.openplanner.team/stops/2041"], ["https://data.delijn.be/stops/304435", "https://tec.openplanner.team/stops/Bwatcoq1"], ["http://irail.be/stations/NMBS/008842689", "https://tec.openplanner.team/stops/LPOeg--2"], ["https://mivb.openplanner.team/stops/8222", "https://tec.openplanner.team/stops/Baudsju1"], ["https://data.delijn.be/stops/301005", "https://mivb.openplanner.team/stops/4153"], ["http://irail.be/stations/NMBS/008896230", "https://data.delijn.be/stops/503828"], ["http://irail.be/stations/NMBS/008894425", "https://data.delijn.be/stops/204066"], ["https://data.delijn.be/stops/304103", "https://tec.openplanner.team/stops/Bovetwe1"], ["https://data.delijn.be/stops/504255", "https://tec.openplanner.team/stops/H4pl132a"], ["https://data.delijn.be/stops/208614", "https://tec.openplanner.team/stops/H1hq127b"], ["https://data.delijn.be/stops/307636", "https://mivb.openplanner.team/stops/1959"], ["https://data.delijn.be/stops/301108", "https://mivb.openplanner.team/stops/5256F"], ["http://irail.be/stations/NMBS/008821444", "https://data.delijn.be/stops/102907"], ["https://data.delijn.be/stops/504310", "https://tec.openplanner.team/stops/H4mo172a"], ["https://data.delijn.be/stops/301922", "https://mivb.openplanner.team/stops/2017"], ["https://data.delijn.be/stops/302822", "https://tec.openplanner.team/stops/Blhupcl1"], ["https://data.delijn.be/stops/306052", "https://mivb.openplanner.team/stops/0529"], ["https://data.delijn.be/stops/300787", "https://mivb.openplanner.team/stops/1259"], ["http://irail.be/stations/NMBS/008811155", "https://mivb.openplanner.team/stops/3280"], ["https://data.delijn.be/stops/504318", "https://tec.openplanner.team/stops/H4hx121a"], ["https://data.delijn.be/stops/407212", "https://tec.openplanner.team/stops/LWOpier1"], ["https://mivb.openplanner.team/stops/5419", "https://tec.openplanner.team/stops/Bwbfgar2"], ["https://data.delijn.be/stops/303629", "https://tec.openplanner.team/stops/Brsrrcu1"], ["https://data.delijn.be/stops/408893", "https://tec.openplanner.team/stops/LFMvoge1"], ["http://irail.be/stations/NMBS/008841327", "https://tec.openplanner.team/stops/LKmmelo2"], ["http://irail.be/stations/NMBS/008872306", "https://tec.openplanner.team/stops/Clojone1"], ["https://data.delijn.be/stops/408585", "https://tec.openplanner.team/stops/LTymahr1"], ["https://data.delijn.be/stops/208757", "https://tec.openplanner.team/stops/H5rx105a"], ["http://irail.be/stations/NMBS/008895489", "https://data.delijn.be/stops/207556"], ["https://data.delijn.be/stops/504772", "https://tec.openplanner.team/stops/H4wn138a"], ["http://irail.be/stations/NMBS/008814340", "https://data.delijn.be/stops/304659"], ["https://data.delijn.be/stops/300012", "https://mivb.openplanner.team/stops/7700205"], ["https://data.delijn.be/stops/301160", "https://mivb.openplanner.team/stops/5921B"], ["http://irail.be/stations/NMBS/008812245", "https://data.delijn.be/stops/306643"], ["http://irail.be/stations/NMBS/008824158", "https://data.delijn.be/stops/104888"], ["https://data.delijn.be/stops/301088", "https://mivb.openplanner.team/stops/1565"], ["https://data.delijn.be/stops/300923", "https://mivb.openplanner.team/stops/1538B"], ["http://irail.be/stations/NMBS/008831112", "https://data.delijn.be/stops/402023"], ["https://data.delijn.be/stops/307248", "https://mivb.openplanner.team/stops/9979B"], ["http://irail.be/stations/NMBS/008895208", "https://data.delijn.be/stops/218015"], ["https://data.delijn.be/stops/301117", "https://mivb.openplanner.team/stops/1048F"], ["https://data.delijn.be/stops/308874", "https://mivb.openplanner.team/stops/0050419"], ["https://mivb.openplanner.team/stops/2152", "https://tec.openplanner.team/stops/Buccplj2"], ["http://irail.be/stations/NMBS/008843349", "https://tec.openplanner.team/stops/LAMfrai2"], ["http://irail.be/stations/NMBS/008811817", "https://tec.openplanner.team/stops/Bottpar2"], ["http://irail.be/stations/NMBS/008884335", "https://tec.openplanner.team/stops/H1qv112a"], ["https://data.delijn.be/stops/305334", "https://tec.openplanner.team/stops/Bspkkhe1"], ["https://mivb.openplanner.team/stops/1472", "https://tec.openplanner.team/stops/Bwbfbon2"], ["https://data.delijn.be/stops/300794", "https://mivb.openplanner.team/stops/7660209"], ["http://irail.be/stations/NMBS/008841525", "https://tec.openplanner.team/stops/Llgelis1"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N568aeb"], ["http://irail.be/stations/NMBS/008891553", "https://data.delijn.be/stops/501541"], ["http://irail.be/stations/NMBS/008892650", "https://data.delijn.be/stops/201355"], ["https://data.delijn.be/stops/408428", "https://tec.openplanner.team/stops/LRUhama2"], ["https://data.delijn.be/stops/306159", "https://mivb.openplanner.team/stops/2041"], ["https://data.delijn.be/stops/405714", "https://tec.openplanner.team/stops/Llghoch4"], ["http://irail.be/stations/NMBS/008841434", "https://tec.openplanner.team/stops/LPUlecl1"], ["https://data.delijn.be/stops/308094", "https://tec.openplanner.team/stops/Bgoegma1"], ["https://data.delijn.be/stops/308981", "https://tec.openplanner.team/stops/Blhumga2"], ["http://irail.be/stations/NMBS/008896149", "https://data.delijn.be/stops/503850"], ["http://irail.be/stations/NMBS/008883022", "https://tec.openplanner.team/stops/Bquegen1"], ["https://data.delijn.be/stops/404666", "https://tec.openplanner.team/stops/LJUmc--2"], ["http://irail.be/stations/NMBS/008811460", "https://data.delijn.be/stops/302218"], ["http://irail.be/stations/NMBS/008883212", "https://tec.openplanner.team/stops/H2ec103b"], ["https://data.delijn.be/stops/307676", "https://tec.openplanner.team/stops/Bstecou2"], ["http://irail.be/stations/NMBS/008821964", "https://data.delijn.be/stops/109234"], ["http://irail.be/stations/NMBS/008842648", "https://tec.openplanner.team/stops/LESchat1"], ["https://data.delijn.be/stops/302405", "https://mivb.openplanner.team/stops/3608"], ["https://data.delijn.be/stops/400487", "https://tec.openplanner.team/stops/LRGile-2"], ["http://irail.be/stations/NMBS/008884640", "https://tec.openplanner.team/stops/H1po137a"], ["https://data.delijn.be/stops/304097", "https://tec.openplanner.team/stops/Bovetwe2"], ["http://irail.be/stations/NMBS/008719100", "https://tec.openplanner.team/stops/X687aaa"], ["https://data.delijn.be/stops/304614", "https://mivb.openplanner.team/stops/9655"], ["http://irail.be/stations/NMBS/008892254", "https://data.delijn.be/stops/505340"], ["https://data.delijn.be/stops/400496", "https://tec.openplanner.team/stops/LLxnive2"], ["https://data.delijn.be/stops/302446", "https://tec.openplanner.team/stops/Bzluqga1"], ["https://data.delijn.be/stops/301080", "https://mivb.openplanner.team/stops/1508"], ["http://irail.be/stations/NMBS/008893062", "https://data.delijn.be/stops/200647"], ["http://irail.be/stations/NMBS/008894714", "https://data.delijn.be/stops/204710"], ["http://irail.be/stations/NMBS/008811536", "https://tec.openplanner.team/stops/Brixcme2"], ["http://irail.be/stations/NMBS/008896735", "https://data.delijn.be/stops/509426"], ["http://irail.be/stations/NMBS/008896370", "https://data.delijn.be/stops/508871"], ["http://irail.be/stations/NMBS/008881562", "https://tec.openplanner.team/stops/H1sb144b"], ["https://data.delijn.be/stops/305227", "https://mivb.openplanner.team/stops/9626"], ["http://irail.be/stations/NMBS/008894433", "https://data.delijn.be/stops/204223"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Clbpepi1"], ["http://irail.be/stations/NMBS/008866662", "https://tec.openplanner.team/stops/X614aeb"], ["https://data.delijn.be/stops/401416", "https://mivb.openplanner.team/stops/5267"], ["https://data.delijn.be/stops/308447", "https://tec.openplanner.team/stops/Bovetsa1"], ["https://data.delijn.be/stops/305427", "https://mivb.openplanner.team/stops/1629"], ["https://data.delijn.be/stops/300326", "https://tec.openplanner.team/stops/Balswwe2"], ["http://irail.be/stations/NMBS/008895612", "https://data.delijn.be/stops/208548"], ["https://data.delijn.be/stops/301035", "https://mivb.openplanner.team/stops/5018"], ["http://irail.be/stations/NMBS/008862018", "https://tec.openplanner.team/stops/X602apb"], ["http://irail.be/stations/NMBS/008871175", "https://tec.openplanner.team/stops/Cjxetri2"], ["https://data.delijn.be/stops/301802", "https://mivb.openplanner.team/stops/5001F"], ["http://irail.be/stations/NMBS/008861200", "https://tec.openplanner.team/stops/N522bva"], ["https://data.delijn.be/stops/300861", "https://mivb.openplanner.team/stops/4258"], ["https://data.delijn.be/stops/307974", "https://tec.openplanner.team/stops/Bwavfbe1"], ["http://irail.be/stations/NMBS/008842663", "https://tec.openplanner.team/stops/LESgare1"], ["http://irail.be/stations/NMBS/008815016", "https://mivb.openplanner.team/stops/7780157"], ["http://irail.be/stations/NMBS/008814431", "https://data.delijn.be/stops/307641"], ["https://data.delijn.be/stops/307233", "https://mivb.openplanner.team/stops/4267"], ["https://data.delijn.be/stops/300920", "https://mivb.openplanner.team/stops/2900"], ["http://irail.be/stations/NMBS/008871225", "https://tec.openplanner.team/stops/Ccoptca2"], ["https://data.delijn.be/stops/405745", "https://tec.openplanner.team/stops/Llghugo2"], ["https://data.delijn.be/stops/408820", "https://tec.openplanner.team/stops/LMgberw1"], ["http://irail.be/stations/NMBS/008869054", "https://tec.openplanner.team/stops/X626aeb"], ["https://data.delijn.be/stops/307331", "https://tec.openplanner.team/stops/Bleugar1"], ["http://irail.be/stations/NMBS/008891165", "https://data.delijn.be/stops/208650"], ["https://data.delijn.be/stops/208179", "https://tec.openplanner.team/stops/H5el100b"], ["https://data.delijn.be/stops/308854", "https://mivb.openplanner.team/stops/5471"], ["https://mivb.openplanner.team/stops/1713", "https://tec.openplanner.team/stops/Bettcha2"], ["https://data.delijn.be/stops/307791", "https://mivb.openplanner.team/stops/1599"], ["http://irail.be/stations/NMBS/008892288", "https://data.delijn.be/stops/508021"], ["http://irail.be/stations/NMBS/008814431", "https://tec.openplanner.team/stops/Blkbbvh1"], ["http://irail.be/stations/NMBS/008864816", "https://tec.openplanner.team/stops/N201ama"], ["https://data.delijn.be/stops/408866", "https://tec.openplanner.team/stops/LFCvoge3"], ["https://mivb.openplanner.team/stops/0230334", "https://tec.openplanner.team/stops/Bauddel1"], ["http://irail.be/stations/NMBS/008895422", "https://data.delijn.be/stops/208538"], ["http://irail.be/stations/NMBS/008893401", "https://data.delijn.be/stops/206301"], ["https://data.delijn.be/stops/504382", "https://tec.openplanner.team/stops/H4pl122a"], ["http://irail.be/stations/NMBS/008822608", "https://data.delijn.be/stops/104469"], ["https://data.delijn.be/stops/305495", "https://mivb.openplanner.team/stops/3017"], ["https://data.delijn.be/stops/408601", "https://tec.openplanner.team/stops/LTotrui2"], ["https://data.delijn.be/stops/408883", "https://tec.openplanner.team/stops/LFCvoge4"], ["https://data.delijn.be/stops/304722", "https://mivb.openplanner.team/stops/5350G"], ["http://irail.be/stations/NMBS/008884319", "https://tec.openplanner.team/stops/H1bo105b"], ["https://data.delijn.be/stops/302401", "https://mivb.openplanner.team/stops/6856"], ["https://mivb.openplanner.team/stops/6162", "https://tec.openplanner.team/stops/Bsgimor1"], ["https://data.delijn.be/stops/300816", "https://mivb.openplanner.team/stops/7810254"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/503644"], ["http://irail.be/stations/NMBS/008811726", "https://tec.openplanner.team/stops/Bwavtpi2"], ["http://irail.be/stations/NMBS/008811916", "https://mivb.openplanner.team/stops/8061"], ["https://data.delijn.be/stops/308730", "https://tec.openplanner.team/stops/Bhakmkr2"], ["https://data.delijn.be/stops/308721", "https://tec.openplanner.team/stops/Bgoewat1"], ["http://irail.be/stations/NMBS/008863156", "https://tec.openplanner.team/stops/N539aha"], ["http://irail.be/stations/NMBS/008886009", "https://tec.openplanner.team/stops/H5at104b"], ["http://irail.be/stations/NMBS/008814167", "https://data.delijn.be/stops/304456"], ["http://irail.be/stations/NMBS/008821105", "https://data.delijn.be/stops/105518"], ["https://data.delijn.be/stops/408852", "https://tec.openplanner.team/stops/LFChofv1"], ["https://data.delijn.be/stops/410138", "https://tec.openplanner.team/stops/Lvopaqu1"], ["http://irail.be/stations/NMBS/008841673", "https://tec.openplanner.team/stops/Llianix2"], ["https://data.delijn.be/stops/303652", "https://tec.openplanner.team/stops/Bovevnd1"], ["https://data.delijn.be/stops/209189", "https://tec.openplanner.team/stops/H5rx150a"], ["https://mivb.openplanner.team/stops/2136", "https://tec.openplanner.team/stops/Buccfja2"], ["https://data.delijn.be/stops/303666", "https://mivb.openplanner.team/stops/1721"], ["https://data.delijn.be/stops/407688", "https://tec.openplanner.team/stops/LRGchap2"], ["http://irail.be/stations/NMBS/008843174", "https://tec.openplanner.team/stops/Louense2"], ["https://data.delijn.be/stops/304069", "https://tec.openplanner.team/stops/Bovesog2"], ["http://irail.be/stations/NMBS/008200520", "https://tec.openplanner.team/stops/X626aia"], ["http://irail.be/stations/NMBS/008894508", "https://data.delijn.be/stops/205714"], ["https://data.delijn.be/stops/305262", "https://tec.openplanner.team/stops/Bspkker1"], ["https://data.delijn.be/stops/408884", "https://tec.openplanner.team/stops/LFPho8a1"], ["https://data.delijn.be/stops/302398", "https://mivb.openplanner.team/stops/6484B"], ["http://irail.be/stations/NMBS/008844206", "https://tec.openplanner.team/stops/Lpegole1"], ["https://data.delijn.be/stops/408910", "https://tec.openplanner.team/stops/LVu03--1"], ["https://data.delijn.be/stops/301117", "https://mivb.openplanner.team/stops/5256F"], ["https://data.delijn.be/stops/400476", "https://tec.openplanner.team/stops/LBPmili2"], ["http://irail.be/stations/NMBS/008821089", "https://data.delijn.be/stops/107110"], ["http://irail.be/stations/NMBS/008871647", "https://tec.openplanner.team/stops/H1be100a"], ["https://data.delijn.be/stops/509452", "https://tec.openplanner.team/stops/H4rk101b"], ["https://data.delijn.be/stops/304458", "https://tec.openplanner.team/stops/Brsg7fo2"], ["http://irail.be/stations/NMBS/008895448", "https://data.delijn.be/stops/206536"], ["http://irail.be/stations/NMBS/007015440", "https://data.delijn.be/stops/501736"], ["http://irail.be/stations/NMBS/008891702", "https://data.delijn.be/stops/510012"], ["https://data.delijn.be/stops/209408", "https://tec.openplanner.team/stops/H5rx139b"], ["https://data.delijn.be/stops/300742", "https://mivb.openplanner.team/stops/7710104"], ["https://data.delijn.be/stops/302000", "https://tec.openplanner.team/stops/Blempuc2"], ["https://data.delijn.be/stops/509236", "https://tec.openplanner.team/stops/H4co109a"], ["https://data.delijn.be/stops/302163", "https://tec.openplanner.team/stops/Bzluqga2"], ["https://data.delijn.be/stops/300775", "https://mivb.openplanner.team/stops/1255"], ["https://data.delijn.be/stops/300565", "https://tec.openplanner.team/stops/Bhmmbog1"], ["http://irail.be/stations/NMBS/008821436", "https://data.delijn.be/stops/109747"], ["https://mivb.openplanner.team/stops/4288", "https://tec.openplanner.team/stops/Bwbfeta2"], ["https://data.delijn.be/stops/304091", "https://tec.openplanner.team/stops/Boveker2"], ["http://irail.be/stations/NMBS/008831039", "https://data.delijn.be/stops/400152"], ["http://irail.be/stations/NMBS/008863461", "https://tec.openplanner.team/stops/N509bga"], ["http://irail.be/stations/NMBS/008892320", "https://data.delijn.be/stops/509509"], ["https://data.delijn.be/stops/400470", "https://tec.openplanner.team/stops/LPleclu2"], ["https://data.delijn.be/stops/305889", "https://mivb.openplanner.team/stops/2358"], ["http://irail.be/stations/NMBS/008861135", "https://tec.openplanner.team/stops/N551ajb"], ["http://irail.be/stations/NMBS/008815016", "https://mivb.openplanner.team/stops/5077"], ["https://data.delijn.be/stops/408855", "https://tec.openplanner.team/stops/LFCkerk1"], ["https://data.delijn.be/stops/406212", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://data.delijn.be/stops/208180", "https://tec.openplanner.team/stops/H5el110b"], ["https://data.delijn.be/stops/300817", "https://mivb.openplanner.team/stops/0270314"], ["https://data.delijn.be/stops/300759", "https://mivb.openplanner.team/stops/3281"], ["https://data.delijn.be/stops/300314", "https://tec.openplanner.team/stops/Bhmmlad2"], ["http://irail.be/stations/NMBS/008863834", "https://tec.openplanner.team/stops/N217aba"], ["https://data.delijn.be/stops/408428", "https://tec.openplanner.team/stops/LTowijk2"], ["https://data.delijn.be/stops/301230", "https://tec.openplanner.team/stops/Bhaleur2"], ["https://data.delijn.be/stops/301197", "https://tec.openplanner.team/stops/Bmlnegl3"], ["http://irail.be/stations/NMBS/008886066", "https://tec.openplanner.team/stops/H1ch101b"], ["http://irail.be/stations/NMBS/008896503", "https://data.delijn.be/stops/504182"], ["http://irail.be/stations/NMBS/008841665", "https://tec.openplanner.team/stops/Lmigare2"], ["https://data.delijn.be/stops/304203", "https://tec.openplanner.team/stops/Brsregl2"], ["https://data.delijn.be/stops/401415", "https://tec.openplanner.team/stops/Bixepla2"], ["https://data.delijn.be/stops/307965", "https://tec.openplanner.team/stops/Bwavpar1"], ["http://irail.be/stations/NMBS/008814134", "https://mivb.openplanner.team/stops/5817"], ["http://irail.be/stations/NMBS/008728654", "https://tec.openplanner.team/stops/H4tg170a"], ["https://data.delijn.be/stops/300980", "https://mivb.openplanner.team/stops/1514"], ["https://mivb.openplanner.team/stops/5029", "https://tec.openplanner.team/stops/Buccmer2"], ["https://data.delijn.be/stops/300750", "https://mivb.openplanner.team/stops/3233"], ["http://irail.be/stations/NMBS/008832003", "https://data.delijn.be/stops/405552"], ["http://irail.be/stations/NMBS/008843158", "https://tec.openplanner.team/stops/Ljegare2"], ["http://irail.be/stations/NMBS/008892007", "https://data.delijn.be/stops/200144"], ["https://data.delijn.be/stops/305294", "https://mivb.openplanner.team/stops/2352"], ["https://data.delijn.be/stops/504382", "https://tec.openplanner.team/stops/H4pl122b"], ["http://irail.be/stations/NMBS/008813003", "https://mivb.openplanner.team/stops/3012"], ["https://data.delijn.be/stops/208024", "https://tec.openplanner.team/stops/H1og131a"], ["http://irail.be/stations/NMBS/008400426", "https://data.delijn.be/stops/406272"], ["https://data.delijn.be/stops/306915", "https://tec.openplanner.team/stops/Btiegoo1"], ["https://data.delijn.be/stops/401411", "https://mivb.openplanner.team/stops/5265F"], ["https://data.delijn.be/stops/300958", "https://mivb.openplanner.team/stops/3524"], ["https://data.delijn.be/stops/505828", "https://tec.openplanner.team/stops/H4mo165b"], ["http://irail.be/stations/NMBS/008841434", "https://tec.openplanner.team/stops/LBveg--1"], ["https://data.delijn.be/stops/300789", "https://mivb.openplanner.team/stops/3751"], ["https://data.delijn.be/stops/301196", "https://tec.openplanner.team/stops/Blthwav2"], ["https://data.delijn.be/stops/304930", "https://mivb.openplanner.team/stops/9784B"], ["https://mivb.openplanner.team/stops/2701", "https://tec.openplanner.team/stops/Bucccal4"], ["https://data.delijn.be/stops/301166", "https://tec.openplanner.team/stops/Buccvbe2"], ["https://data.delijn.be/stops/405311", "https://tec.openplanner.team/stops/Blankal4"], ["https://mivb.openplanner.team/stops/1716", "https://tec.openplanner.team/stops/Baudstr1"], ["http://irail.be/stations/NMBS/008811718", "https://tec.openplanner.team/stops/Bbgevil2"], ["https://data.delijn.be/stops/301016", "https://mivb.openplanner.team/stops/1094"], ["https://data.delijn.be/stops/300964", "https://mivb.openplanner.team/stops/1756B"], ["https://mivb.openplanner.team/stops/2717", "https://tec.openplanner.team/stops/Buccham2"], ["https://data.delijn.be/stops/300798", "https://mivb.openplanner.team/stops/2259"], ["http://irail.be/stations/NMBS/008861333", "https://tec.openplanner.team/stops/N531aoa"], ["http://irail.be/stations/NMBS/008865128", "https://tec.openplanner.team/stops/X725aef"], ["http://irail.be/stations/NMBS/008873312", "https://tec.openplanner.team/stops/N106akb"], ["https://mivb.openplanner.team/stops/5311", "https://tec.openplanner.team/stops/Bettars1"], ["https://data.delijn.be/stops/300885", "https://mivb.openplanner.team/stops/7830152"], ["http://irail.be/stations/NMBS/008874567", "https://tec.openplanner.team/stops/Cfachap2"], ["http://irail.be/stations/NMBS/008895752", "https://data.delijn.be/stops/206714"], ["http://irail.be/stations/NMBS/008400280", "https://data.delijn.be/stops/505602"], ["http://irail.be/stations/NMBS/008865615", "https://tec.openplanner.team/stops/X346akb"], ["http://irail.be/stations/NMBS/008896370", "https://data.delijn.be/stops/504755"], ["https://data.delijn.be/stops/400496", "https://tec.openplanner.team/stops/Llxcite2"], ["https://mivb.openplanner.team/stops/3524", "https://tec.openplanner.team/stops/Baudulb1"], ["https://data.delijn.be/stops/401402", "https://mivb.openplanner.team/stops/9311"], ["http://irail.be/stations/NMBS/008832227", "https://data.delijn.be/stops/407042"], ["http://irail.be/stations/NMBS/008864352", "https://tec.openplanner.team/stops/X999aia"], ["http://irail.be/stations/NMBS/008894821", "https://data.delijn.be/stops/205335"], ["https://data.delijn.be/stops/301029", "https://mivb.openplanner.team/stops/2122"], ["http://irail.be/stations/NMBS/008831401", "https://data.delijn.be/stops/306326"], ["http://irail.be/stations/NMBS/008843166", "https://tec.openplanner.team/stops/Lfhhosp2"], ["http://irail.be/stations/NMBS/008812005", "https://data.delijn.be/stops/306048"], ["http://irail.be/stations/NMBS/008811460", "https://tec.openplanner.team/stops/Blhuibm2"], ["https://data.delijn.be/stops/408878", "https://tec.openplanner.team/stops/LFMkrut2"], ["https://data.delijn.be/stops/304178", "https://tec.openplanner.team/stops/Bbldass2"], ["https://data.delijn.be/stops/408976", "https://tec.openplanner.team/stops/LWAwegg2"], ["http://irail.be/stations/NMBS/008824240", "https://data.delijn.be/stops/105997"], ["http://irail.be/stations/NMBS/008873379", "https://tec.openplanner.team/stops/Ccspla"], ["https://data.delijn.be/stops/300487", "https://tec.openplanner.team/stops/Bhalrat1"], ["https://data.delijn.be/stops/407212", "https://tec.openplanner.team/stops/LHecime2"], ["https://data.delijn.be/stops/410355", "https://tec.openplanner.team/stops/Llgangl1"], ["http://irail.be/stations/NMBS/008864469", "https://tec.openplanner.team/stops/X982aia"], ["http://irail.be/stations/NMBS/008811825", "https://tec.openplanner.team/stops/Bcsebde2"], ["http://irail.be/stations/NMBS/008865227", "https://tec.openplanner.team/stops/X878aca"], ["https://data.delijn.be/stops/407210", "https://tec.openplanner.team/stops/LHScite2"], ["http://irail.be/stations/NMBS/008871837", "https://tec.openplanner.team/stops/Cldplac1"], ["https://data.delijn.be/stops/209610", "https://tec.openplanner.team/stops/H1by106b"], ["https://data.delijn.be/stops/300961", "https://mivb.openplanner.team/stops/37"], ["http://irail.be/stations/NMBS/008893526", "https://data.delijn.be/stops/207398"], ["https://data.delijn.be/stops/306063", "https://tec.openplanner.team/stops/Brsga812"], ["https://data.delijn.be/stops/400458", "https://tec.openplanner.team/stops/LEBeg--1"], ["https://data.delijn.be/stops/308871", "https://mivb.openplanner.team/stops/6474F"], ["http://irail.be/stations/NMBS/008833233", "https://data.delijn.be/stops/304356"], ["https://data.delijn.be/stops/300795", "https://mivb.openplanner.team/stops/1541"], ["https://mivb.openplanner.team/stops/0631", "https://tec.openplanner.team/stops/Bbxlmid4"], ["http://irail.be/stations/NMBS/008831138", "https://data.delijn.be/stops/400761"], ["http://irail.be/stations/NMBS/008882701", "https://tec.openplanner.team/stops/Bmangar1"], ["http://irail.be/stations/NMBS/008866001", "https://tec.openplanner.team/stops/X601bca"], ["https://data.delijn.be/stops/301078", "https://mivb.openplanner.team/stops/6357"], ["https://data.delijn.be/stops/300355", "https://tec.openplanner.team/stops/Bbrlvil2"], ["https://data.delijn.be/stops/300744", "https://mivb.openplanner.team/stops/1327"], ["https://mivb.openplanner.team/stops/1835", "https://tec.openplanner.team/stops/Bkrapri1"], ["http://irail.be/stations/NMBS/008861515", "https://tec.openplanner.team/stops/Bcrnrpc1"], ["http://irail.be/stations/NMBS/008843323", "https://tec.openplanner.team/stops/LAmeg--2"], ["http://irail.be/stations/NMBS/008731388", "https://tec.openplanner.team/stops/Cmqbasv2"], ["http://irail.be/stations/NMBS/008844008", "https://tec.openplanner.team/stops/Lvegc--4"], ["http://irail.be/stations/NMBS/008895802", "https://data.delijn.be/stops/207104"], ["http://irail.be/stations/NMBS/008892692", "https://data.delijn.be/stops/208802"], ["https://data.delijn.be/stops/300925", "https://mivb.openplanner.team/stops/4505"], ["https://data.delijn.be/stops/301995", "https://tec.openplanner.team/stops/Bhalber2"], ["https://mivb.openplanner.team/stops/4292", "https://tec.openplanner.team/stops/Bwbfeta2"], ["https://data.delijn.be/stops/300972", "https://mivb.openplanner.team/stops/1719"], ["https://data.delijn.be/stops/405361", "https://tec.openplanner.team/stops/Blangar1"], ["https://data.delijn.be/stops/300392", "https://tec.openplanner.team/stops/Bhalh311"], ["https://data.delijn.be/stops/401416", "https://mivb.openplanner.team/stops/1779"], ["https://data.delijn.be/stops/308734", "https://tec.openplanner.team/stops/Boplsma4"], ["http://irail.be/stations/NMBS/008874005", "https://tec.openplanner.team/stops/Cculgeo2"], ["https://data.delijn.be/stops/400477", "https://tec.openplanner.team/stops/LBPmili1"], ["https://data.delijn.be/stops/408957", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://data.delijn.be/stops/304834", "https://mivb.openplanner.team/stops/5520F"], ["http://irail.be/stations/NMBS/008832433", "https://data.delijn.be/stops/401935"], ["https://data.delijn.be/stops/300907", "https://mivb.openplanner.team/stops/1975"], ["https://data.delijn.be/stops/400464", "https://tec.openplanner.team/stops/LPleclu2"], ["https://mivb.openplanner.team/stops/5205", "https://tec.openplanner.team/stops/Bettgar1"], ["https://data.delijn.be/stops/509453", "https://tec.openplanner.team/stops/H4tg170a"], ["https://mivb.openplanner.team/stops/1323", "https://tec.openplanner.team/stops/Bixllep1"], ["https://data.delijn.be/stops/300964", "https://mivb.openplanner.team/stops/1720B"], ["http://irail.be/stations/NMBS/008833134", "https://data.delijn.be/stops/308358"], ["http://irail.be/stations/NMBS/008892627", "https://data.delijn.be/stops/205987"], ["http://irail.be/stations/NMBS/008815040", "https://mivb.openplanner.team/stops/1145"], ["https://data.delijn.be/stops/300945", "https://mivb.openplanner.team/stops/4160"], ["http://irail.be/stations/NMBS/008811148", "https://mivb.openplanner.team/stops/5968"], ["https://data.delijn.be/stops/408921", "https://tec.openplanner.team/stops/LTEnuro1"], ["http://irail.be/stations/NMBS/008844206", "https://tec.openplanner.team/stops/Lpeptwa1"], ["http://irail.be/stations/NMBS/008400424", "https://data.delijn.be/stops/406368"], ["https://data.delijn.be/stops/404675", "https://tec.openplanner.team/stops/LVSslin3"], ["http://irail.be/stations/NMBS/008895737", "https://data.delijn.be/stops/206756"], ["http://irail.be/stations/NMBS/008892908", "https://data.delijn.be/stops/208406"], ["https://data.delijn.be/stops/300880", "https://mivb.openplanner.team/stops/4955F"], ["http://irail.be/stations/NMBS/008872066", "https://tec.openplanner.team/stops/Cchoues1"], ["https://data.delijn.be/stops/404676", "https://tec.openplanner.team/stops/Llabriq1"], ["https://data.delijn.be/stops/404655", "https://tec.openplanner.team/stops/LVSslin2"], ["https://mivb.openplanner.team/stops/4853", "https://tec.openplanner.team/stops/Buccmer2"], ["http://irail.be/stations/NMBS/008833258", "https://data.delijn.be/stops/306842"], ["http://irail.be/stations/NMBS/008865300", "https://tec.openplanner.team/stops/X804alc"], ["http://irail.be/stations/NMBS/008821022", "https://data.delijn.be/stops/101530"], ["http://irail.be/stations/NMBS/008843166", "https://tec.openplanner.team/stops/Lfhxhor1"], ["https://data.delijn.be/stops/307681", "https://mivb.openplanner.team/stops/5952F"], ["https://data.delijn.be/stops/304460", "https://tec.openplanner.team/stops/Brsgter2"], ["https://data.delijn.be/stops/305348", "https://tec.openplanner.team/stops/Bbgevil1"], ["http://irail.be/stations/NMBS/008841319", "https://tec.openplanner.team/stops/LAWbrou2"], ["https://mivb.openplanner.team/stops/1714", "https://tec.openplanner.team/stops/Bettbue1"], ["https://mivb.openplanner.team/stops/3953", "https://tec.openplanner.team/stops/Bettgle2"], ["https://data.delijn.be/stops/401399", "https://mivb.openplanner.team/stops/5041B"], ["https://data.delijn.be/stops/503332", "https://tec.openplanner.team/stops/H4eh100a"], ["https://data.delijn.be/stops/304663", "https://mivb.openplanner.team/stops/9660"], ["https://data.delijn.be/stops/307694", "https://tec.openplanner.team/stops/Brsgtou1"], ["https://data.delijn.be/stops/303631", "https://mivb.openplanner.team/stops/6648F"], ["http://irail.be/stations/NMBS/008892643", "https://data.delijn.be/stops/201279"], ["https://data.delijn.be/stops/304090", "https://tec.openplanner.team/stops/Bovesol1"], ["http://irail.be/stations/NMBS/008889045", "https://tec.openplanner.team/stops/H4ht172a"], ["https://data.delijn.be/stops/300487", "https://tec.openplanner.team/stops/Bhalber3"], ["https://data.delijn.be/stops/302121", "https://tec.openplanner.team/stops/Bpte1ma2"], ["http://irail.be/stations/NMBS/008895570", "https://data.delijn.be/stops/207666"], ["https://data.delijn.be/stops/401412", "https://mivb.openplanner.team/stops/4305"], ["https://data.delijn.be/stops/307974", "https://tec.openplanner.team/stops/Bwavfol1"], ["https://data.delijn.be/stops/207796", "https://tec.openplanner.team/stops/H5rx105a"], ["https://data.delijn.be/stops/305269", "https://mivb.openplanner.team/stops/2817"], ["http://irail.be/stations/NMBS/007015440", "https://data.delijn.be/stops/504547"], ["https://data.delijn.be/stops/408779", "https://tec.openplanner.team/stops/LVlleme1"], ["https://data.delijn.be/stops/304434", "https://tec.openplanner.team/stops/Bblapin1"], ["http://irail.be/stations/NMBS/008845005", "https://tec.openplanner.team/stops/X790aka"], ["http://irail.be/stations/NMBS/008811254", "https://data.delijn.be/stops/302776"], ["https://mivb.openplanner.team/stops/1757", "https://tec.openplanner.team/stops/Baudvdr2"], ["http://irail.be/stations/NMBS/008811528", "https://data.delijn.be/stops/307504"], ["http://irail.be/stations/NMBS/008015345", "https://tec.openplanner.team/stops/LaAnorm2"], ["https://data.delijn.be/stops/504295", "https://tec.openplanner.team/stops/H4mo142a"], ["https://mivb.openplanner.team/stops/5254", "https://tec.openplanner.team/stops/Buccbas1"], ["http://irail.be/stations/NMBS/008833126", "https://data.delijn.be/stops/302887"], ["http://irail.be/stations/NMBS/008822277", "https://data.delijn.be/stops/305612"], ["https://data.delijn.be/stops/404683", "https://tec.openplanner.team/stops/LWibare2"], ["https://data.delijn.be/stops/410132", "https://tec.openplanner.team/stops/LJU51--2"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/509951"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/300399"], ["https://data.delijn.be/stops/408962", "https://tec.openplanner.team/stops/LWAchpg1"], ["https://data.delijn.be/stops/305928", "https://mivb.openplanner.team/stops/2856B"], ["http://irail.be/stations/NMBS/008832227", "https://data.delijn.be/stops/401436"], ["http://irail.be/stations/NMBS/008843208", "https://tec.openplanner.team/stops/Lfhnrou2"], ["https://data.delijn.be/stops/300851", "https://mivb.openplanner.team/stops/6653F"], ["http://irail.be/stations/NMBS/008895877", "https://data.delijn.be/stops/206161"], ["https://data.delijn.be/stops/301038", "https://mivb.openplanner.team/stops/7740201"], ["https://data.delijn.be/stops/303660", "https://tec.openplanner.team/stops/Blkbavo1"], ["https://data.delijn.be/stops/505275", "https://tec.openplanner.team/stops/H4po124b"], ["https://data.delijn.be/stops/304431", "https://tec.openplanner.team/stops/Brsgcfl2"], ["http://irail.be/stations/NMBS/008884632", "https://tec.openplanner.team/stops/H1po133b"], ["https://data.delijn.be/stops/307147", "https://tec.openplanner.team/stops/Bhalvel2"], ["https://data.delijn.be/stops/300782", "https://mivb.openplanner.team/stops/2522"], ["http://irail.be/stations/NMBS/008821337", "https://data.delijn.be/stops/107210"], ["https://data.delijn.be/stops/301412", "https://tec.openplanner.team/stops/H1en105a"], ["https://data.delijn.be/stops/302887", "https://tec.openplanner.team/stops/Bhevhha2"], ["http://irail.be/stations/NMBS/008200510", "https://tec.openplanner.team/stops/X685aia"], ["http://irail.be/stations/NMBS/008200520", "https://tec.openplanner.team/stops/X626aja"], ["https://data.delijn.be/stops/408492", "https://tec.openplanner.team/stops/LWAathe1"], ["https://mivb.openplanner.team/stops/1048F", "https://tec.openplanner.team/stops/Bixlaca2"], ["http://irail.be/stations/NMBS/008821105", "https://data.delijn.be/stops/102736"], ["https://data.delijn.be/stops/301007", "https://mivb.openplanner.team/stops/1064"], ["https://data.delijn.be/stops/307050", "https://tec.openplanner.team/stops/Bovepla1"], ["https://data.delijn.be/stops/300839", "https://mivb.openplanner.team/stops/8823"], ["https://data.delijn.be/stops/300996", "https://mivb.openplanner.team/stops/2248"], ["https://data.delijn.be/stops/400457", "https://tec.openplanner.team/stops/LEBdoct2"], ["https://data.delijn.be/stops/301085", "https://mivb.openplanner.team/stops/1641"], ["http://irail.be/stations/NMBS/008866142", "https://tec.openplanner.team/stops/X670asa"], ["https://data.delijn.be/stops/305999", "https://tec.openplanner.team/stops/Brsrbbo2"], ["https://data.delijn.be/stops/406374", "https://tec.openplanner.team/stops/LMalamb4"], ["http://irail.be/stations/NMBS/008892080", "https://data.delijn.be/stops/201336"], ["http://irail.be/stations/NMBS/008893542", "https://data.delijn.be/stops/201922"], ["https://data.delijn.be/stops/302450", "https://tec.openplanner.team/stops/Bzluqga1"], ["https://data.delijn.be/stops/301047", "https://mivb.openplanner.team/stops/3009"], ["http://irail.be/stations/NMBS/008844545", "https://tec.openplanner.team/stops/LDOgare1"], ["https://data.delijn.be/stops/301002", "https://mivb.openplanner.team/stops/1512"], ["http://irail.be/stations/NMBS/008811155", "https://mivb.openplanner.team/stops/2987"], ["https://data.delijn.be/stops/305999", "https://tec.openplanner.team/stops/Bovetwe2"], ["http://irail.be/stations/NMBS/008833274", "https://data.delijn.be/stops/304429"], ["https://data.delijn.be/stops/305916", "https://mivb.openplanner.team/stops/5102F"], ["http://irail.be/stations/NMBS/008895471", "https://data.delijn.be/stops/206043"], ["http://irail.be/stations/NMBS/008892452", "https://data.delijn.be/stops/500929"], ["http://irail.be/stations/NMBS/008731388", "https://data.delijn.be/stops/504327"], ["https://data.delijn.be/stops/300768", "https://mivb.openplanner.team/stops/3858"], ["https://data.delijn.be/stops/300849", "https://mivb.openplanner.team/stops/2814"], ["http://irail.be/stations/NMBS/008863842", "https://tec.openplanner.team/stops/N338aaa"], ["https://data.delijn.be/stops/405702", "https://tec.openplanner.team/stops/Llgangl2"], ["https://data.delijn.be/stops/300995", "https://mivb.openplanner.team/stops/2241G"], ["https://data.delijn.be/stops/408806", "https://tec.openplanner.team/stops/LVItcm-1"], ["https://data.delijn.be/stops/300780", "https://mivb.openplanner.team/stops/6857"], ["https://data.delijn.be/stops/304255", "https://mivb.openplanner.team/stops/4004"], ["http://irail.be/stations/NMBS/008895067", "https://data.delijn.be/stops/206829"], ["https://data.delijn.be/stops/408874", "https://tec.openplanner.team/stops/LVu03--2"], ["http://irail.be/stations/NMBS/008845229", "https://tec.openplanner.team/stops/LCogara2"], ["https://data.delijn.be/stops/207781", "https://tec.openplanner.team/stops/H5rx114a"], ["http://irail.be/stations/NMBS/008832409", "https://data.delijn.be/stops/406792"], ["https://data.delijn.be/stops/301028", "https://mivb.openplanner.team/stops/2959"], ["https://data.delijn.be/stops/304551", "https://mivb.openplanner.team/stops/9679"], ["https://data.delijn.be/stops/208764", "https://tec.openplanner.team/stops/H5rx140b"], ["https://data.delijn.be/stops/504451", "https://tec.openplanner.team/stops/H4mo175b"], ["http://irail.be/stations/NMBS/008842002", "https://tec.openplanner.team/stops/Lagjado5"], ["http://irail.be/stations/NMBS/008864956", "https://tec.openplanner.team/stops/N564abb"], ["http://irail.be/stations/NMBS/008892288", "https://data.delijn.be/stops/508006"], ["https://data.delijn.be/stops/300358", "https://tec.openplanner.team/stops/Bbrlpar1"], ["https://data.delijn.be/stops/303950", "https://tec.openplanner.team/stops/Bbldass1"], ["https://data.delijn.be/stops/408779", "https://tec.openplanner.team/stops/LVleg--1"], ["http://irail.be/stations/NMBS/008874609", "https://tec.openplanner.team/stops/N543cjb"], ["http://irail.be/stations/NMBS/008895745", "https://data.delijn.be/stops/206618"], ["https://data.delijn.be/stops/407206", "https://tec.openplanner.team/stops/LHThall4"], ["https://data.delijn.be/stops/408920", "https://tec.openplanner.team/stops/LTEziho1"], ["http://irail.be/stations/NMBS/008842051", "https://tec.openplanner.team/stops/Lcacasi1"], ["http://irail.be/stations/NMBS/008821600", "https://data.delijn.be/stops/106931"], ["https://data.delijn.be/stops/404687", "https://tec.openplanner.team/stops/LWipaif3"], ["http://irail.be/stations/NMBS/008811171", "https://data.delijn.be/stops/301088"], ["https://data.delijn.be/stops/407230", "https://tec.openplanner.team/stops/LLGramk1"], ["https://data.delijn.be/stops/509299", "https://tec.openplanner.team/stops/H4mo206b"], ["https://mivb.openplanner.team/stops/1959", "https://tec.openplanner.team/stops/Bucceng2"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bcsegal1"], ["https://data.delijn.be/stops/305495", "https://mivb.openplanner.team/stops/3328"], ["https://data.delijn.be/stops/509455", "https://tec.openplanner.team/stops/H4mo164a"], ["http://irail.be/stations/NMBS/008821089", "https://data.delijn.be/stops/101590"], ["http://irail.be/stations/NMBS/008883121", "https://tec.openplanner.team/stops/H1ne143b"], ["http://irail.be/stations/NMBS/008844230", "https://tec.openplanner.team/stops/LBaeg--1"], ["https://data.delijn.be/stops/304168", "https://tec.openplanner.team/stops/Blemmar2"], ["https://data.delijn.be/stops/304545", "https://mivb.openplanner.team/stops/9685"], ["https://data.delijn.be/stops/308819", "https://mivb.openplanner.team/stops/1571"], ["https://mivb.openplanner.team/stops/1125", "https://tec.openplanner.team/stops/Bsgipha2"], ["https://data.delijn.be/stops/307195", "https://tec.openplanner.team/stops/Bhalsro2"], ["http://irail.be/stations/NMBS/008841673", "https://tec.openplanner.team/stops/Llithon1"], ["https://data.delijn.be/stops/300963", "https://mivb.openplanner.team/stops/0250236"], ["https://data.delijn.be/stops/304169", "https://tec.openplanner.team/stops/Blemwob2"], ["http://irail.be/stations/NMBS/008811635", "https://tec.openplanner.team/stops/Blmlcle1"], ["https://data.delijn.be/stops/303223", "https://mivb.openplanner.team/stops/3853"], ["http://irail.be/stations/NMBS/008883022", "https://tec.openplanner.team/stops/Bquevel2"], ["https://data.delijn.be/stops/303666", "https://mivb.openplanner.team/stops/1685F"], ["https://data.delijn.be/stops/400451", "https://tec.openplanner.team/stops/LBPrueg1"], ["http://irail.be/stations/NMBS/008832227", "https://data.delijn.be/stops/400559"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2le153a"], ["http://irail.be/stations/NMBS/008843406", "https://tec.openplanner.team/stops/LSteg--1"], ["https://mivb.openplanner.team/stops/2142", "https://tec.openplanner.team/stops/Buccrac2"], ["https://data.delijn.be/stops/410142", "https://tec.openplanner.team/stops/Llgverg1"], ["http://irail.be/stations/NMBS/008821196", "https://data.delijn.be/stops/104407"], ["https://data.delijn.be/stops/306123", "https://tec.openplanner.team/stops/Bhalcbr1"], ["http://irail.be/stations/NMBS/008894508", "https://data.delijn.be/stops/205696"], ["https://data.delijn.be/stops/408493", "https://tec.openplanner.team/stops/LWAvand2"], ["https://data.delijn.be/stops/305229", "https://mivb.openplanner.team/stops/2317"], ["https://data.delijn.be/stops/304127", "https://mivb.openplanner.team/stops/2838"], ["http://irail.be/stations/NMBS/008879004", "https://tec.openplanner.team/stops/H1mb125a"], ["https://data.delijn.be/stops/307697", "https://tec.openplanner.team/stops/Brsgfso1"], ["https://data.delijn.be/stops/300315", "https://tec.openplanner.team/stops/Bhmmcge1"], ["http://irail.be/stations/NMBS/008814464", "https://mivb.openplanner.team/stops/2138B"], ["https://data.delijn.be/stops/507689", "https://tec.openplanner.team/stops/H4mo193b"], ["http://irail.be/stations/NMBS/008822053", "https://data.delijn.be/stops/302511"], ["http://irail.be/stations/NMBS/008832433", "https://data.delijn.be/stops/103678"], ["https://mivb.openplanner.team/stops/5261", "https://tec.openplanner.team/stops/Bixepla2"], ["https://data.delijn.be/stops/304204", "https://tec.openplanner.team/stops/Brsrrcu1"], ["http://irail.be/stations/NMBS/008892288", "https://data.delijn.be/stops/503111"], ["http://irail.be/stations/NMBS/008843331", "https://tec.openplanner.team/stops/LAMgreg1"], ["https://data.delijn.be/stops/306399", "https://mivb.openplanner.team/stops/6648F"], ["http://irail.be/stations/NMBS/008813037", "https://mivb.openplanner.team/stops/1126"], ["https://data.delijn.be/stops/408847", "https://tec.openplanner.team/stops/LRmsmvo1"], ["http://irail.be/stations/NMBS/008895760", "https://data.delijn.be/stops/206995"], ["http://irail.be/stations/NMBS/008833134", "https://data.delijn.be/stops/300509"], ["http://irail.be/stations/NMBS/008843067", "https://tec.openplanner.team/stops/Lsecoll2"], ["http://irail.be/stations/NMBS/008841004", "https://tec.openplanner.team/stops/Llgfran1"], ["http://irail.be/stations/NMBS/008884640", "https://tec.openplanner.team/stops/H5gr137a"], ["http://irail.be/stations/NMBS/008811825", "https://tec.openplanner.team/stops/Bcsegar1"], ["https://data.delijn.be/stops/408863", "https://tec.openplanner.team/stops/LFCvoge3"], ["http://irail.be/stations/NMBS/008812013", "https://mivb.openplanner.team/stops/0472"], ["http://irail.be/stations/NMBS/008892627", "https://data.delijn.be/stops/219018"], ["https://data.delijn.be/stops/300906", "https://tec.openplanner.team/stops/Bixlpat2"], ["https://data.delijn.be/stops/405430", "https://tec.openplanner.team/stops/Bezeksj2"], ["https://data.delijn.be/stops/301070", "https://mivb.openplanner.team/stops/3225"], ["https://data.delijn.be/stops/301153", "https://tec.openplanner.team/stops/Buccpin2"], ["https://data.delijn.be/stops/301132", "https://mivb.openplanner.team/stops/1048F"], ["http://irail.be/stations/NMBS/008844057", "https://tec.openplanner.team/stops/Lvehv--1"], ["https://data.delijn.be/stops/300369", "https://tec.openplanner.team/stops/Bwaunou1"], ["http://irail.be/stations/NMBS/008891124", "https://data.delijn.be/stops/507605"], ["http://irail.be/stations/NMBS/008833266", "https://data.delijn.be/stops/304416"], ["https://data.delijn.be/stops/400486", "https://tec.openplanner.team/stops/LRGgrov2"], ["http://irail.be/stations/NMBS/008865565", "https://tec.openplanner.team/stops/X850agb"], ["https://data.delijn.be/stops/401409", "https://mivb.openplanner.team/stops/2289"], ["https://data.delijn.be/stops/508677", "https://tec.openplanner.team/stops/H4ef109a"], ["https://data.delijn.be/stops/404671", "https://tec.openplanner.team/stops/LJUxhen2"], ["https://data.delijn.be/stops/300852", "https://mivb.openplanner.team/stops/6608G"], ["http://irail.be/stations/NMBS/008822517", "https://data.delijn.be/stops/302465"], ["https://data.delijn.be/stops/301003", "https://mivb.openplanner.team/stops/3412"], ["https://data.delijn.be/stops/303246", "https://tec.openplanner.team/stops/Blkbbeu2"], ["http://irail.be/stations/NMBS/008895877", "https://data.delijn.be/stops/206449"], ["https://data.delijn.be/stops/305448", "https://mivb.openplanner.team/stops/1988"], ["http://irail.be/stations/NMBS/008829009", "https://data.delijn.be/stops/102187"], ["https://mivb.openplanner.team/stops/1915", "https://tec.openplanner.team/stops/Buccbas2"], ["http://irail.be/stations/NMBS/008812005", "https://data.delijn.be/stops/304580"], ["http://irail.be/stations/NMBS/008871605", "https://tec.openplanner.team/stops/H1er108d"], ["https://data.delijn.be/stops/305281", "https://mivb.openplanner.team/stops/9779"], ["http://irail.be/stations/NMBS/008893120", "https://data.delijn.be/stops/209922"], ["https://data.delijn.be/stops/300988", "https://mivb.openplanner.team/stops/4558"], ["https://data.delijn.be/stops/401724", "https://tec.openplanner.team/stops/LWHkerk1"], ["http://irail.be/stations/NMBS/008814266", "https://tec.openplanner.team/stops/Bwatgar3"], ["https://data.delijn.be/stops/408831", "https://tec.openplanner.team/stops/LBWviad2"], ["https://data.delijn.be/stops/300934", "https://mivb.openplanner.team/stops/7268"], ["https://data.delijn.be/stops/306387", "https://tec.openplanner.team/stops/Bhalrat2"], ["http://irail.be/stations/NMBS/008812146", "https://data.delijn.be/stops/207690"], ["https://data.delijn.be/stops/303080", "https://tec.openplanner.team/stops/Bleunaa2"], ["http://irail.be/stations/NMBS/008893070", "https://data.delijn.be/stops/208700"], ["http://irail.be/stations/NMBS/008875002", "https://tec.openplanner.team/stops/N134ada"], ["https://data.delijn.be/stops/400454", "https://tec.openplanner.team/stops/LEBdoct1"], ["http://irail.be/stations/NMBS/008895125", "https://data.delijn.be/stops/206257"], ["http://irail.be/stations/NMBS/008812047", "https://mivb.openplanner.team/stops/1066"], ["https://data.delijn.be/stops/509860", "https://tec.openplanner.team/stops/H4mo192a"], ["https://data.delijn.be/stops/301082", "https://mivb.openplanner.team/stops/2241G"], ["https://data.delijn.be/stops/301056", "https://mivb.openplanner.team/stops/4253"], ["https://data.delijn.be/stops/405701", "https://tec.openplanner.team/stops/Llghugo1"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N219aba"], ["https://data.delijn.be/stops/306048", "https://mivb.openplanner.team/stops/1644F"], ["https://data.delijn.be/stops/301030", "https://mivb.openplanner.team/stops/6162"], ["https://data.delijn.be/stops/304857", "https://mivb.openplanner.team/stops/7501"], ["http://irail.be/stations/NMBS/008842648", "https://tec.openplanner.team/stops/LEShony2"], ["https://data.delijn.be/stops/507767", "https://tec.openplanner.team/stops/H4ae100a"], ["https://mivb.openplanner.team/stops/1871B", "https://tec.openplanner.team/stops/Bettlha2"], ["http://irail.be/stations/NMBS/008821824", "https://data.delijn.be/stops/108163"], ["http://irail.be/stations/NMBS/008821238", "https://data.delijn.be/stops/107925"], ["https://data.delijn.be/stops/401409", "https://mivb.openplanner.team/stops/1042"], ["https://data.delijn.be/stops/300942", "https://mivb.openplanner.team/stops/1315"], ["http://irail.be/stations/NMBS/008893054", "https://data.delijn.be/stops/200604"], ["https://data.delijn.be/stops/407214", "https://tec.openplanner.team/stops/LHSvina2"], ["http://irail.be/stations/NMBS/008811916", "https://mivb.openplanner.team/stops/1273"], ["https://data.delijn.be/stops/408865", "https://tec.openplanner.team/stops/LFCkett1"], ["https://data.delijn.be/stops/404843", "https://tec.openplanner.team/stops/LEMec--2"], ["https://data.delijn.be/stops/301080", "https://mivb.openplanner.team/stops/1570"], ["https://data.delijn.be/stops/300922", "https://mivb.openplanner.team/stops/3902"], ["http://irail.be/stations/NMBS/008896503", "https://data.delijn.be/stops/502801"], ["http://irail.be/stations/NMBS/008896396", "https://data.delijn.be/stops/509568"], ["http://irail.be/stations/NMBS/008883212", "https://tec.openplanner.team/stops/Becepon1"], ["https://data.delijn.be/stops/400492", "https://tec.openplanner.team/stops/LBStong2"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Clbhour1"], ["https://data.delijn.be/stops/305297", "https://mivb.openplanner.team/stops/9627"], ["https://data.delijn.be/stops/205982", "https://tec.openplanner.team/stops/H4wt160a"], ["https://data.delijn.be/stops/504452", "https://tec.openplanner.team/stops/H4rk101a"], ["https://mivb.openplanner.team/stops/5420F", "https://tec.openplanner.team/stops/Bwbfgar1"], ["http://irail.be/stations/NMBS/008893211", "https://data.delijn.be/stops/200419"], ["https://data.delijn.be/stops/401417", "https://mivb.openplanner.team/stops/0801"], ["https://data.delijn.be/stops/301078", "https://mivb.openplanner.team/stops/3313"], ["https://data.delijn.be/stops/405455", "https://tec.openplanner.team/stops/LWHtrui1"], ["http://irail.be/stations/NMBS/008892403", "https://data.delijn.be/stops/503335"], ["http://irail.be/stations/NMBS/008895877", "https://data.delijn.be/stops/207449"], ["https://data.delijn.be/stops/208406", "https://tec.openplanner.team/stops/H5rx115d"], ["https://data.delijn.be/stops/207773", "https://tec.openplanner.team/stops/H5rx120b"], ["https://data.delijn.be/stops/504326", "https://tec.openplanner.team/stops/H4pl136a"], ["https://data.delijn.be/stops/306897", "https://tec.openplanner.team/stops/Bgoesch4"], ["https://data.delijn.be/stops/307683", "https://mivb.openplanner.team/stops/5952F"], ["http://irail.be/stations/NMBS/008841442", "https://tec.openplanner.team/stops/LReeg--1"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bsmgmas2"], ["http://irail.be/stations/NMBS/008844545", "https://tec.openplanner.team/stops/LBiroch1"], ["http://irail.be/stations/NMBS/008872306", "https://tec.openplanner.team/stops/Cjuhame3"], ["https://data.delijn.be/stops/300629", "https://tec.openplanner.team/stops/Bbeamon2"], ["http://irail.be/stations/NMBS/008895620", "https://data.delijn.be/stops/208598"], ["https://data.delijn.be/stops/302408", "https://mivb.openplanner.team/stops/3610F"], ["http://irail.be/stations/NMBS/008822004", "https://data.delijn.be/stops/105066"], ["https://data.delijn.be/stops/209358", "https://tec.openplanner.team/stops/H5rx135a"], ["https://data.delijn.be/stops/504639", "https://tec.openplanner.team/stops/H4co149a"], ["https://data.delijn.be/stops/406359", "https://tec.openplanner.team/stops/LMaburg4"], ["https://data.delijn.be/stops/301106", "https://mivb.openplanner.team/stops/5224F"], ["http://irail.be/stations/NMBS/008896412", "https://data.delijn.be/stops/504237"], ["https://data.delijn.be/stops/308818", "https://mivb.openplanner.team/stops/8421"], ["http://irail.be/stations/NMBS/008728600", "https://tec.openplanner.team/stops/H4ar101a"], ["https://data.delijn.be/stops/301402", "https://mivb.openplanner.team/stops/5727F"], ["http://irail.be/stations/NMBS/008893054", "https://data.delijn.be/stops/201940"], ["https://data.delijn.be/stops/208395", "https://tec.openplanner.team/stops/H4or116b"], ["http://irail.be/stations/NMBS/008861515", "https://tec.openplanner.team/stops/Bcrnnra2"], ["https://data.delijn.be/stops/404833", "https://tec.openplanner.team/stops/LaAbush*"], ["https://data.delijn.be/stops/405717", "https://tec.openplanner.team/stops/Llglefe1"], ["http://irail.be/stations/NMBS/008881125", "https://tec.openplanner.team/stops/H1gh147a"], ["https://mivb.openplanner.team/stops/2932", "https://tec.openplanner.team/stops/Bsgimca1"], ["http://irail.be/stations/NMBS/008200520", "https://tec.openplanner.team/stops/X687aba"], ["https://mivb.openplanner.team/stops/8042", "https://tec.openplanner.team/stops/Bbxltrv1"], ["http://irail.be/stations/NMBS/008884327", "https://tec.openplanner.team/stops/H1bo107a"], ["https://data.delijn.be/stops/303535", "https://mivb.openplanner.team/stops/9725"], ["https://data.delijn.be/stops/305342", "https://tec.openplanner.team/stops/Bbgever1"], ["https://data.delijn.be/stops/401413", "https://mivb.openplanner.team/stops/3125"], ["https://data.delijn.be/stops/302449", "https://tec.openplanner.team/stops/Bsjgegl1"], ["http://irail.be/stations/NMBS/008821907", "https://data.delijn.be/stops/106229"], ["http://irail.be/stations/NMBS/008814209", "https://tec.openplanner.team/stops/Bnivga71"], ["https://data.delijn.be/stops/300977", "https://mivb.openplanner.team/stops/6058"], ["https://data.delijn.be/stops/307151", "https://tec.openplanner.team/stops/Bhalomo1"], ["http://irail.be/stations/NMBS/008833001", "https://data.delijn.be/stops/304909"], ["https://data.delijn.be/stops/408903", "https://tec.openplanner.team/stops/LFPkape1"], ["https://mivb.openplanner.team/stops/2717", "https://tec.openplanner.team/stops/Buccrac2"], ["https://data.delijn.be/stops/300812", "https://mivb.openplanner.team/stops/8794"], ["https://data.delijn.be/stops/301116", "https://mivb.openplanner.team/stops/5604"], ["http://irail.be/stations/NMBS/008896115", "https://data.delijn.be/stops/503196"], ["http://irail.be/stations/NMBS/008885068", "https://tec.openplanner.team/stops/H4fr146a"], ["http://irail.be/stations/NMBS/008892452", "https://data.delijn.be/stops/508132"], ["https://data.delijn.be/stops/208614", "https://tec.openplanner.team/stops/H1bd100a"], ["https://data.delijn.be/stops/305261", "https://tec.openplanner.team/stops/Bspkkhe2"], ["https://data.delijn.be/stops/305350", "https://tec.openplanner.team/stops/Bbgerlr1"], ["https://data.delijn.be/stops/307151", "https://tec.openplanner.team/stops/Bhalwat1"], ["https://data.delijn.be/stops/306050", "https://mivb.openplanner.team/stops/0521"], ["https://data.delijn.be/stops/307817", "https://tec.openplanner.team/stops/Bovesnh1"], ["https://data.delijn.be/stops/301102", "https://mivb.openplanner.team/stops/5553"], ["https://data.delijn.be/stops/300963", "https://mivb.openplanner.team/stops/4407"], ["http://irail.be/stations/NMBS/008400280", "https://data.delijn.be/stops/204029"], ["https://data.delijn.be/stops/505926", "https://tec.openplanner.team/stops/H4co133b"], ["https://data.delijn.be/stops/308856", "https://mivb.openplanner.team/stops/2803"], ["https://data.delijn.be/stops/504234", "https://tec.openplanner.team/stops/H4co108b"], ["https://mivb.openplanner.team/stops/2131", "https://tec.openplanner.team/stops/Buccdho2"], ["http://irail.be/stations/NMBS/008863503", "https://tec.openplanner.team/stops/N232ana"], ["https://data.delijn.be/stops/304103", "https://tec.openplanner.team/stops/Bove4ko1"], ["http://irail.be/stations/NMBS/008865300", "https://tec.openplanner.team/stops/X804bpa"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LFCvoer2"], ["https://data.delijn.be/stops/208372", "https://tec.openplanner.team/stops/H5rx151a"], ["http://irail.be/stations/NMBS/008811536", "https://tec.openplanner.team/stops/Brixpje1"], ["https://data.delijn.be/stops/305294", "https://mivb.openplanner.team/stops/3001B"], ["http://irail.be/stations/NMBS/008881190", "https://tec.openplanner.team/stops/H1hh116a"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/107061"], ["https://data.delijn.be/stops/301076", "https://mivb.openplanner.team/stops/1321"], ["https://mivb.openplanner.team/stops/2110B", "https://tec.openplanner.team/stops/Buccvoi2"], ["http://irail.be/stations/NMBS/008841558", "https://tec.openplanner.team/stops/Llgfoss2"], ["https://mivb.openplanner.team/stops/3515", "https://tec.openplanner.team/stops/Bixefra1"], ["http://irail.be/stations/NMBS/008892734", "https://data.delijn.be/stops/508010"], ["https://data.delijn.be/stops/301050", "https://mivb.openplanner.team/stops/4074B"], ["http://irail.be/stations/NMBS/008842754", "https://tec.openplanner.team/stops/LAYwerb1"], ["http://irail.be/stations/NMBS/008841434", "https://tec.openplanner.team/stops/LBKmoes2"], ["http://irail.be/stations/NMBS/008821519", "https://data.delijn.be/stops/105854"], ["http://irail.be/stations/NMBS/008885001", "https://tec.openplanner.team/stops/H4ty305a"], ["http://irail.be/stations/NMBS/008886546", "https://tec.openplanner.team/stops/H1le120a"], ["http://irail.be/stations/NMBS/008822145", "https://data.delijn.be/stops/207337"], ["http://irail.be/stations/NMBS/008896909", "https://data.delijn.be/stops/505814"], ["https://mivb.openplanner.team/stops/6115F", "https://tec.openplanner.team/stops/Bettcha2"], ["http://irail.be/stations/NMBS/008400219", "https://data.delijn.be/stops/408825"], ["http://irail.be/stations/NMBS/008881463", "https://tec.openplanner.team/stops/H2sb221b"], ["https://data.delijn.be/stops/300061", "https://tec.openplanner.team/stops/Blemwro1"], ["https://data.delijn.be/stops/207761", "https://tec.openplanner.team/stops/H5rx151a"], ["https://data.delijn.be/stops/410152", "https://mivb.openplanner.team/stops/3403"], ["https://data.delijn.be/stops/305466", "https://tec.openplanner.team/stops/Bsgipha3"], ["https://mivb.openplanner.team/stops/3572", "https://tec.openplanner.team/stops/Bixlfla1"], ["https://data.delijn.be/stops/207787", "https://tec.openplanner.team/stops/H5rx138a"], ["http://irail.be/stations/NMBS/008893534", "https://data.delijn.be/stops/206247"], ["http://irail.be/stations/NMBS/008893039", "https://data.delijn.be/stops/202938"], ["https://data.delijn.be/stops/301118", "https://tec.openplanner.team/stops/Bovejei1"], ["http://irail.be/stations/NMBS/008892692", "https://data.delijn.be/stops/209213"], ["http://irail.be/stations/NMBS/008893211", "https://data.delijn.be/stops/201420"], ["http://irail.be/stations/NMBS/008886348", "https://tec.openplanner.team/stops/H4lz121d"], ["http://irail.be/stations/NMBS/008895505", "https://data.delijn.be/stops/208045"], ["https://data.delijn.be/stops/408804", "https://tec.openplanner.team/stops/LVIhala3"], ["https://data.delijn.be/stops/307795", "https://mivb.openplanner.team/stops/5299"], ["https://data.delijn.be/stops/307461", "https://mivb.openplanner.team/stops/1876"], ["http://irail.be/stations/NMBS/008200102", "https://tec.openplanner.team/stops/X685apb"], ["https://data.delijn.be/stops/304202", "https://tec.openplanner.team/stops/Brsregl4"], ["http://irail.be/stations/NMBS/008832565", "https://data.delijn.be/stops/404689"], ["http://irail.be/stations/NMBS/008871381", "https://tec.openplanner.team/stops/H2go114d"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N349afa"], ["https://data.delijn.be/stops/208405", "https://tec.openplanner.team/stops/H4rs117a"], ["https://data.delijn.be/stops/305225", "https://mivb.openplanner.team/stops/1143"], ["https://data.delijn.be/stops/305315", "https://mivb.openplanner.team/stops/9783"], ["http://irail.be/stations/NMBS/008895745", "https://data.delijn.be/stops/207657"], ["https://data.delijn.be/stops/405714", "https://tec.openplanner.team/stops/Llghoch2"], ["https://data.delijn.be/stops/208743", "https://tec.openplanner.team/stops/H4am101b"], ["http://irail.be/stations/NMBS/008811403", "https://mivb.openplanner.team/stops/3123"], ["https://data.delijn.be/stops/305889", "https://mivb.openplanner.team/stops/3002"], ["http://irail.be/stations/NMBS/008889045", "https://tec.openplanner.team/stops/H4te261a"], ["https://data.delijn.be/stops/307718", "https://tec.openplanner.team/stops/Bwatcoq1"], ["https://mivb.openplanner.team/stops/1975", "https://tec.openplanner.team/stops/Buccbas2"], ["http://irail.be/stations/NMBS/008866530", "https://tec.openplanner.team/stops/X696aka"], ["https://data.delijn.be/stops/302429", "https://tec.openplanner.team/stops/Bjodeco2"], ["http://irail.be/stations/NMBS/008872520", "https://tec.openplanner.team/stops/N584bab"], ["https://data.delijn.be/stops/300812", "https://mivb.openplanner.team/stops/4132B"], ["https://data.delijn.be/stops/307988", "https://mivb.openplanner.team/stops/3334G"], ["http://irail.be/stations/NMBS/008832045", "https://data.delijn.be/stops/102484"], ["http://irail.be/stations/NMBS/008815040", "https://mivb.openplanner.team/stops/7720303"], ["https://data.delijn.be/stops/405718", "https://tec.openplanner.team/stops/Llgwild8"], ["https://data.delijn.be/stops/307457", "https://mivb.openplanner.team/stops/1142"], ["http://irail.be/stations/NMBS/008841731", "https://data.delijn.be/stops/404681"], ["https://data.delijn.be/stops/504231", "https://tec.openplanner.team/stops/H4co146b"], ["https://data.delijn.be/stops/301052", "https://mivb.openplanner.team/stops/1056"], ["http://irail.be/stations/NMBS/008865615", "https://tec.openplanner.team/stops/N346aaa"], ["https://data.delijn.be/stops/300953", "https://mivb.openplanner.team/stops/51"], ["https://data.delijn.be/stops/504239", "https://tec.openplanner.team/stops/H4co103b"], ["http://irail.be/stations/NMBS/008843133", "https://tec.openplanner.team/stops/Lscgare2"], ["https://data.delijn.be/stops/300768", "https://mivb.openplanner.team/stops/2259"], ["https://data.delijn.be/stops/408904", "https://tec.openplanner.team/stops/LAUscha2"], ["http://irail.be/stations/NMBS/008896008", "https://data.delijn.be/stops/510015"], ["https://data.delijn.be/stops/302423", "https://tec.openplanner.team/stops/Bjodgai1"], ["https://data.delijn.be/stops/307002", "https://tec.openplanner.team/stops/Bjodgar1"], ["https://data.delijn.be/stops/208741", "https://tec.openplanner.team/stops/H5rx135b"], ["https://data.delijn.be/stops/400469", "https://tec.openplanner.team/stops/LEMfort2"], ["https://data.delijn.be/stops/301680", "https://tec.openplanner.team/stops/Bnetegl1"], ["http://irail.be/stations/NMBS/008833605", "https://tec.openplanner.team/stops/Blangar1"], ["https://data.delijn.be/stops/410136", "https://tec.openplanner.team/stops/Lvo60--1"], ["https://data.delijn.be/stops/305522", "https://mivb.openplanner.team/stops/1387"], ["http://irail.be/stations/NMBS/008865540", "https://tec.openplanner.team/stops/X850ana"], ["https://data.delijn.be/stops/301108", "https://mivb.openplanner.team/stops/5256"], ["https://mivb.openplanner.team/stops/1162C", "https://tec.openplanner.team/stops/Bixlqll1"], ["https://data.delijn.be/stops/403781", "https://tec.openplanner.team/stops/LORec--*"], ["http://irail.be/stations/NMBS/008821451", "https://data.delijn.be/stops/104289"], ["https://data.delijn.be/stops/305908", "https://mivb.openplanner.team/stops/9632"], ["https://data.delijn.be/stops/208406", "https://tec.openplanner.team/stops/H5rx151a"], ["https://data.delijn.be/stops/300940", "https://mivb.openplanner.team/stops/3203"], ["https://data.delijn.be/stops/301005", "https://mivb.openplanner.team/stops/1304"], ["https://data.delijn.be/stops/302822", "https://tec.openplanner.team/stops/Blhupcl2"], ["https://data.delijn.be/stops/306312", "https://mivb.openplanner.team/stops/5822F"], ["https://data.delijn.be/stops/304074", "https://tec.openplanner.team/stops/Bovepla1"], ["https://data.delijn.be/stops/408979", "https://tec.openplanner.team/stops/LWApt--2"], ["https://data.delijn.be/stops/408853", "https://tec.openplanner.team/stops/LFCdree2"], ["https://mivb.openplanner.team/stops/5455", "https://tec.openplanner.team/stops/Bwbfhip2"], ["http://irail.be/stations/NMBS/008832409", "https://data.delijn.be/stops/107726"], ["https://data.delijn.be/stops/408893", "https://tec.openplanner.team/stops/LFMvoge*"], ["http://irail.be/stations/NMBS/008728673", "https://tec.openplanner.team/stops/H4rx142a"], ["https://data.delijn.be/stops/300997", "https://mivb.openplanner.team/stops/6364"], ["https://data.delijn.be/stops/408779", "https://tec.openplanner.team/stops/LVlplan1"], ["https://data.delijn.be/stops/408833", "https://tec.openplanner.team/stops/LMgberw1"], ["https://data.delijn.be/stops/301062", "https://mivb.openplanner.team/stops/5015"], ["https://data.delijn.be/stops/302409", "https://mivb.openplanner.team/stops/8661"], ["https://data.delijn.be/stops/305914", "https://mivb.openplanner.team/stops/1303"], ["https://data.delijn.be/stops/305433", "https://mivb.openplanner.team/stops/5519"], ["http://irail.be/stations/NMBS/008841525", "https://data.delijn.be/stops/405720"], ["http://irail.be/stations/NMBS/008832573", "https://data.delijn.be/stops/407274"], ["https://data.delijn.be/stops/300781", "https://mivb.openplanner.team/stops/2522"], ["https://mivb.openplanner.team/stops/0230234", "https://tec.openplanner.team/stops/Baudtri1"], ["https://data.delijn.be/stops/306900", "https://tec.openplanner.team/stops/Bpienod2"], ["https://data.delijn.be/stops/408920", "https://tec.openplanner.team/stops/LTEkerk2"], ["https://data.delijn.be/stops/407643", "https://tec.openplanner.team/stops/LEMgren*"], ["http://irail.be/stations/NMBS/008824158", "https://data.delijn.be/stops/104889"], ["https://data.delijn.be/stops/300828", "https://mivb.openplanner.team/stops/2545"], ["https://data.delijn.be/stops/408848", "https://tec.openplanner.team/stops/LRmsmvo1"], ["http://irail.be/stations/NMBS/008865003", "https://tec.openplanner.team/stops/X801ajb"], ["https://data.delijn.be/stops/408877", "https://tec.openplanner.team/stops/LFMkrut3"], ["https://data.delijn.be/stops/400478", "https://tec.openplanner.team/stops/LBPmais2"], ["https://data.delijn.be/stops/509299", "https://tec.openplanner.team/stops/H4mo190a"], ["http://irail.be/stations/NMBS/008200110", "https://tec.openplanner.team/stops/X688aaa"], ["http://irail.be/stations/NMBS/008863115", "https://tec.openplanner.team/stops/N501kpa"], ["https://data.delijn.be/stops/301117", "https://mivb.openplanner.team/stops/1049F"], ["http://irail.be/stations/NMBS/008811528", "https://data.delijn.be/stops/304086"], ["http://irail.be/stations/NMBS/008843349", "https://tec.openplanner.team/stops/LAMfrai1"], ["http://irail.be/stations/NMBS/008833308", "https://data.delijn.be/stops/305200"], ["https://data.delijn.be/stops/308823", "https://tec.openplanner.team/stops/Blinbru1"], ["http://irail.be/stations/NMBS/008891314", "https://data.delijn.be/stops/502511"], ["https://data.delijn.be/stops/305264", "https://mivb.openplanner.team/stops/9783"], ["https://data.delijn.be/stops/306375", "https://tec.openplanner.team/stops/Boveker2"], ["http://irail.be/stations/NMBS/008843208", "https://tec.openplanner.team/stops/Lfhgare2"], ["http://irail.be/stations/NMBS/008861168", "https://tec.openplanner.team/stops/N534awc"], ["https://mivb.openplanner.team/stops/1472", "https://tec.openplanner.team/stops/Bwbfbon1"], ["http://irail.be/stations/NMBS/008200120", "https://tec.openplanner.team/stops/X626afb"], ["https://data.delijn.be/stops/305436", "https://mivb.openplanner.team/stops/5528F"], ["https://data.delijn.be/stops/405344", "https://tec.openplanner.team/stops/Bezeksj3"], ["http://irail.be/stations/NMBS/008844271", "https://tec.openplanner.team/stops/LTRfend2"], ["https://mivb.openplanner.team/stops/0650265", "https://tec.openplanner.team/stops/Bsgipmo1"], ["http://irail.be/stations/NMBS/008863156", "https://tec.openplanner.team/stops/N539asb"], ["http://irail.be/stations/NMBS/008821832", "https://data.delijn.be/stops/109584"], ["http://irail.be/stations/NMBS/008886009", "https://tec.openplanner.team/stops/H5at120b"], ["https://data.delijn.be/stops/405390", "https://tec.openplanner.team/stops/Braccen2"], ["https://data.delijn.be/stops/400466", "https://tec.openplanner.team/stops/LEMeg--2"], ["https://data.delijn.be/stops/304431", "https://tec.openplanner.team/stops/Brsgfso2"], ["https://data.delijn.be/stops/308981", "https://tec.openplanner.team/stops/Blhumga1"], ["https://data.delijn.be/stops/304169", "https://tec.openplanner.team/stops/Blemwob1"], ["https://data.delijn.be/stops/303223", "https://mivb.openplanner.team/stops/3860"], ["http://irail.be/stations/NMBS/008881570", "https://tec.openplanner.team/stops/H1fr114a"], ["https://data.delijn.be/stops/404666", "https://tec.openplanner.team/stops/LJUmc--1"], ["https://data.delijn.be/stops/405738", "https://tec.openplanner.team/stops/Lrclant3"], ["https://data.delijn.be/stops/410142", "https://tec.openplanner.team/stops/Llgverg2"], ["https://data.delijn.be/stops/406398", "https://tec.openplanner.team/stops/Blankal4"], ["https://data.delijn.be/stops/208761", "https://tec.openplanner.team/stops/H5rx122a"], ["https://data.delijn.be/stops/301109", "https://tec.openplanner.team/stops/Buccbou1"], ["http://irail.be/stations/NMBS/008812229", "https://data.delijn.be/stops/300286"], ["http://irail.be/stations/NMBS/008892338", "https://data.delijn.be/stops/501056"], ["https://data.delijn.be/stops/304097", "https://tec.openplanner.team/stops/Bovetwe1"], ["http://irail.be/stations/NMBS/008822772", "https://data.delijn.be/stops/104919"], ["https://data.delijn.be/stops/305295", "https://mivb.openplanner.team/stops/9635"], ["https://data.delijn.be/stops/300935", "https://mivb.openplanner.team/stops/3449"], ["http://irail.be/stations/NMBS/008814373", "https://mivb.openplanner.team/stops/9920F"], ["https://data.delijn.be/stops/300768", "https://mivb.openplanner.team/stops/2217"], ["https://data.delijn.be/stops/408927", "https://tec.openplanner.team/stops/LTEziho2"], ["http://irail.be/stations/NMBS/008814373", "https://mivb.openplanner.team/stops/5152"], ["https://data.delijn.be/stops/306647", "https://tec.openplanner.team/stops/Bsgicfo1"], ["http://irail.be/stations/NMBS/008811536", "https://tec.openplanner.team/stops/Brixcme1"], ["https://data.delijn.be/stops/303669", "https://mivb.openplanner.team/stops/1684F"], ["https://data.delijn.be/stops/406318", "https://tec.openplanner.team/stops/LMalune4"], ["https://data.delijn.be/stops/307208", "https://tec.openplanner.team/stops/Bcbqcha1"], ["https://data.delijn.be/stops/300962", "https://mivb.openplanner.team/stops/1754"], ["http://irail.be/stations/NMBS/008015345", "https://tec.openplanner.team/stops/LrTpost2"], ["https://data.delijn.be/stops/208411", "https://tec.openplanner.team/stops/H5rx110b"], ["https://data.delijn.be/stops/304705", "https://mivb.openplanner.team/stops/1597"], ["https://data.delijn.be/stops/301123", "https://tec.openplanner.team/stops/Buccham1"], ["http://irail.be/stations/NMBS/008892734", "https://data.delijn.be/stops/503021"], ["http://irail.be/stations/NMBS/008811544", "https://tec.openplanner.team/stops/Blmlbou1"], ["https://data.delijn.be/stops/308447", "https://tec.openplanner.team/stops/Bovetdo2"], ["http://irail.be/stations/NMBS/008895091", "https://data.delijn.be/stops/206977"], ["https://data.delijn.be/stops/305928", "https://mivb.openplanner.team/stops/5806"], ["http://irail.be/stations/NMBS/008891264", "https://data.delijn.be/stops/502653"], ["https://data.delijn.be/stops/301403", "https://mivb.openplanner.team/stops/5751"], ["https://data.delijn.be/stops/302898", "https://tec.openplanner.team/stops/Bhevgar2"], ["https://data.delijn.be/stops/306001", "https://mivb.openplanner.team/stops/0900468"], ["http://irail.be/stations/NMBS/008872413", "https://tec.openplanner.team/stops/Cflgazo2"], ["https://data.delijn.be/stops/305303", "https://mivb.openplanner.team/stops/9780"], ["http://irail.be/stations/NMBS/008821071", "https://data.delijn.be/stops/108965"], ["https://data.delijn.be/stops/302792", "https://mivb.openplanner.team/stops/1629"], ["https://data.delijn.be/stops/301944", "https://mivb.openplanner.team/stops/2519"], ["http://irail.be/stations/NMBS/008844057", "https://tec.openplanner.team/stops/Lveecol1"], ["https://data.delijn.be/stops/301032", "https://tec.openplanner.team/stops/Bsgipmo1"], ["https://data.delijn.be/stops/302155", "https://tec.openplanner.team/stops/Bhoealt2"], ["https://data.delijn.be/stops/306068", "https://tec.openplanner.team/stops/Btubcal2"], ["http://irail.be/stations/NMBS/008895745", "https://data.delijn.be/stops/206721"], ["http://irail.be/stations/NMBS/008200128", "https://tec.openplanner.team/stops/LoUzent1"], ["http://irail.be/stations/NMBS/008833233", "https://data.delijn.be/stops/304303"], ["http://irail.be/stations/NMBS/008891165", "https://data.delijn.be/stops/208649"], ["https://data.delijn.be/stops/300557", "https://tec.openplanner.team/stops/Bhmmbog1"], ["https://data.delijn.be/stops/508229", "https://tec.openplanner.team/stops/H4po130b"], ["http://irail.be/stations/NMBS/008861150", "https://tec.openplanner.team/stops/N534bsb"], ["https://data.delijn.be/stops/300927", "https://mivb.openplanner.team/stops/3460"], ["https://mivb.openplanner.team/stops/0230334", "https://tec.openplanner.team/stops/Bauddel2"], ["http://irail.be/stations/NMBS/008895422", "https://data.delijn.be/stops/208537"], ["https://data.delijn.be/stops/300935", "https://mivb.openplanner.team/stops/5802"], ["https://data.delijn.be/stops/504292", "https://tec.openplanner.team/stops/H4mo147a"], ["http://irail.be/stations/NMBS/008841319", "https://tec.openplanner.team/stops/LBIbois2"], ["https://data.delijn.be/stops/408601", "https://tec.openplanner.team/stops/LTotrui1"], ["https://data.delijn.be/stops/307877", "https://mivb.openplanner.team/stops/9853"], ["https://data.delijn.be/stops/403788", "https://tec.openplanner.team/stops/LWAbett2"], ["https://data.delijn.be/stops/410135", "https://tec.openplanner.team/stops/Lalverr2"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/300350"], ["https://data.delijn.be/stops/304449", "https://tec.openplanner.team/stops/Brsgleq1"], ["https://data.delijn.be/stops/300816", "https://mivb.openplanner.team/stops/7810154"], ["https://data.delijn.be/stops/408779", "https://tec.openplanner.team/stops/LOdmonu1"], ["https://data.delijn.be/stops/306932", "https://tec.openplanner.team/stops/Bboseco2"], ["https://data.delijn.be/stops/304030", "https://tec.openplanner.team/stops/Bovejme1"], ["https://data.delijn.be/stops/308544", "https://mivb.openplanner.team/stops/9553"], ["https://data.delijn.be/stops/307688", "https://tec.openplanner.team/stops/Blkbavo1"], ["http://irail.be/stations/NMBS/008822111", "https://data.delijn.be/stops/303358"], ["https://data.delijn.be/stops/308721", "https://tec.openplanner.team/stops/Bgoewat2"], ["https://data.delijn.be/stops/300297", "https://mivb.openplanner.team/stops/9802"], ["http://irail.be/stations/NMBS/008896230", "https://data.delijn.be/stops/508675"], ["https://data.delijn.be/stops/300741", "https://mivb.openplanner.team/stops/7710204"], ["http://irail.be/stations/NMBS/008863156", "https://tec.openplanner.team/stops/N539ahb"], ["https://data.delijn.be/stops/307160", "https://tec.openplanner.team/stops/Bhalomo1"], ["http://irail.be/stations/NMBS/008886009", "https://tec.openplanner.team/stops/H5at104a"], ["https://data.delijn.be/stops/307877", "https://mivb.openplanner.team/stops/2022"], ["http://irail.be/stations/NMBS/008884640", "https://tec.openplanner.team/stops/H1hc125b"], ["http://irail.be/stations/NMBS/008844347", "https://tec.openplanner.team/stops/LSXvill2"], ["http://irail.be/stations/NMBS/008821147", "https://data.delijn.be/stops/104310"], ["https://data.delijn.be/stops/301107", "https://tec.openplanner.team/stops/Bixlpat1"], ["https://data.delijn.be/stops/301016", "https://mivb.openplanner.team/stops/4169"], ["https://data.delijn.be/stops/306124", "https://tec.openplanner.team/stops/Bhalcbr1"], ["https://data.delijn.be/stops/410140", "https://tec.openplanner.team/stops/Lrctec-1"], ["https://data.delijn.be/stops/308819", "https://mivb.openplanner.team/stops/8411"], ["https://data.delijn.be/stops/208024", "https://tec.openplanner.team/stops/H1gy113a"], ["http://irail.be/stations/NMBS/008891009", "https://data.delijn.be/stops/500051"], ["https://data.delijn.be/stops/307697", "https://tec.openplanner.team/stops/Brsgcfl1"], ["https://data.delijn.be/stops/408910", "https://tec.openplanner.team/stops/LVu03--2"], ["https://data.delijn.be/stops/509452", "https://tec.openplanner.team/stops/H4rk101a"], ["http://irail.be/stations/NMBS/008815016", "https://data.delijn.be/stops/300862"], ["http://irail.be/stations/NMBS/008832565", "https://data.delijn.be/stops/409417"], ["http://irail.be/stations/NMBS/008872066", "https://tec.openplanner.team/stops/CMvil2"], ["http://irail.be/stations/NMBS/008821865", "https://data.delijn.be/stops/308503"], ["http://irail.be/stations/NMBS/008895448", "https://data.delijn.be/stops/206535"], ["http://irail.be/stations/NMBS/008891702", "https://data.delijn.be/stops/510013"], ["https://data.delijn.be/stops/509452", "https://tec.openplanner.team/stops/H4mo164a"], ["http://irail.be/stations/NMBS/008886504", "https://tec.openplanner.team/stops/H1le130b"], ["https://data.delijn.be/stops/302163", "https://tec.openplanner.team/stops/Bzluqga1"], ["https://data.delijn.be/stops/304535", "https://mivb.openplanner.team/stops/1410"], ["https://mivb.openplanner.team/stops/4288", "https://tec.openplanner.team/stops/Bwbfeta1"], ["http://irail.be/stations/NMBS/008812120", "https://data.delijn.be/stops/207958"], ["http://irail.be/stations/NMBS/008849023", "https://tec.openplanner.team/stops/LkEherg2"], ["https://data.delijn.be/stops/304450", "https://tec.openplanner.team/stops/Brsgece2"], ["https://data.delijn.be/stops/304018", "https://tec.openplanner.team/stops/Bovesol2"], ["http://irail.be/stations/NMBS/008814472", "https://mivb.openplanner.team/stops/2079"], ["https://data.delijn.be/stops/304929", "https://mivb.openplanner.team/stops/9751"], ["https://data.delijn.be/stops/207761", "https://tec.openplanner.team/stops/H5rx120a"], ["https://data.delijn.be/stops/208180", "https://tec.openplanner.team/stops/H5el110a"], ["http://irail.be/stations/NMBS/008885001", "https://tec.openplanner.team/stops/H4ty379a"], ["http://irail.be/stations/NMBS/008871837", "https://tec.openplanner.team/stops/Cldvign1"], ["https://data.delijn.be/stops/207769", "https://tec.openplanner.team/stops/H5rx114b"], ["https://data.delijn.be/stops/300311", "https://tec.openplanner.team/stops/Bzluegl2"], ["http://irail.be/stations/NMBS/008895620", "https://data.delijn.be/stops/208573"], ["https://data.delijn.be/stops/408428", "https://tec.openplanner.team/stops/LTowijk1"], ["https://data.delijn.be/stops/300927", "https://mivb.openplanner.team/stops/3766"], ["https://data.delijn.be/stops/301197", "https://tec.openplanner.team/stops/Bmlnegl4"], ["http://irail.be/stations/NMBS/008728600", "https://tec.openplanner.team/stops/H4ho119a"], ["https://data.delijn.be/stops/308957", "https://mivb.openplanner.team/stops/4308"], ["https://data.delijn.be/stops/308446", "https://tec.openplanner.team/stops/Bovetdo1"], ["https://data.delijn.be/stops/401415", "https://tec.openplanner.team/stops/Bixefra1"], ["https://data.delijn.be/stops/300954", "https://mivb.openplanner.team/stops/1782"], ["http://irail.be/stations/NMBS/008728654", "https://tec.openplanner.team/stops/H4tg170b"], ["https://mivb.openplanner.team/stops/5029", "https://tec.openplanner.team/stops/Buccmer1"], ["https://data.delijn.be/stops/308673", "https://mivb.openplanner.team/stops/1486B"], ["https://data.delijn.be/stops/300391", "https://tec.openplanner.team/stops/Bhalh311"], ["http://irail.be/stations/NMBS/008864501", "https://tec.openplanner.team/stops/N201aia"], ["http://irail.be/stations/NMBS/008883006", "https://tec.openplanner.team/stops/H3br110a"], ["https://data.delijn.be/stops/305918", "https://mivb.openplanner.team/stops/9802"], ["https://data.delijn.be/stops/405301", "https://tec.openplanner.team/stops/Blanmde2"], ["http://irail.be/stations/NMBS/008883220", "https://tec.openplanner.team/stops/H2me117a"], ["https://data.delijn.be/stops/307808", "https://mivb.openplanner.team/stops/1244"], ["https://data.delijn.be/stops/301074", "https://mivb.openplanner.team/stops/6018"], ["http://irail.be/stations/NMBS/008841434", "https://tec.openplanner.team/stops/LBveg--2"], ["https://data.delijn.be/stops/301196", "https://tec.openplanner.team/stops/Blthwav1"], ["http://irail.be/stations/NMBS/008843174", "https://tec.openplanner.team/stops/Lscbarg2"], ["https://data.delijn.be/stops/300024", "https://mivb.openplanner.team/stops/9659"], ["http://irail.be/stations/NMBS/008863446", "https://tec.openplanner.team/stops/N512ava"], ["https://data.delijn.be/stops/307969", "https://tec.openplanner.team/stops/Bbgever1"], ["http://irail.be/stations/NMBS/008895257", "https://data.delijn.be/stops/208689"], ["https://data.delijn.be/stops/408862", "https://tec.openplanner.team/stops/LFCscho2"], ["http://irail.be/stations/NMBS/008866258", "https://tec.openplanner.team/stops/X661ara"], ["https://data.delijn.be/stops/408978", "https://tec.openplanner.team/stops/LWAwegg2"], ["https://data.delijn.be/stops/308529", "https://tec.openplanner.team/stops/Bovevnd1"], ["http://irail.be/stations/NMBS/008882248", "https://tec.openplanner.team/stops/H2ca115b"], ["https://data.delijn.be/stops/302414", "https://tec.openplanner.team/stops/Bjodrdp2"], ["https://data.delijn.be/stops/305226", "https://mivb.openplanner.team/stops/9753"], ["https://data.delijn.be/stops/408851", "https://tec.openplanner.team/stops/LRmrode1"], ["http://irail.be/stations/NMBS/008896230", "https://data.delijn.be/stops/504201"], ["http://irail.be/stations/NMBS/008895869", "https://data.delijn.be/stops/206503"], ["https://mivb.openplanner.team/stops/0220233", "https://tec.openplanner.team/stops/Baudhan1"], ["http://irail.be/stations/NMBS/008010316", "https://data.delijn.be/stops/404726"], ["http://irail.be/stations/NMBS/008893260", "https://data.delijn.be/stops/202349"], ["http://irail.be/stations/NMBS/008865615", "https://tec.openplanner.team/stops/X346aka"], ["http://irail.be/stations/NMBS/008831088", "https://data.delijn.be/stops/403977"], ["http://irail.be/stations/NMBS/008864352", "https://tec.openplanner.team/stops/X999agb"], ["http://irail.be/stations/NMBS/008843166", "https://tec.openplanner.team/stops/Lfhhosp1"], ["http://irail.be/stations/NMBS/008812005", "https://data.delijn.be/stops/306049"], ["https://data.delijn.be/stops/301038", "https://mivb.openplanner.team/stops/3225"], ["https://data.delijn.be/stops/304178", "https://tec.openplanner.team/stops/Bbldgar1"], ["http://irail.be/stations/NMBS/008884715", "https://tec.openplanner.team/stops/H5bl119d"], ["https://data.delijn.be/stops/300810", "https://mivb.openplanner.team/stops/4125"], ["https://data.delijn.be/stops/301098", "https://tec.openplanner.team/stops/Bhalgja1"], ["https://data.delijn.be/stops/307111", "https://tec.openplanner.team/stops/Bjodsme2"], ["http://irail.be/stations/NMBS/008896909", "https://data.delijn.be/stops/503307"], ["http://irail.be/stations/NMBS/008821709", "https://data.delijn.be/stops/107051"], ["https://data.delijn.be/stops/300487", "https://tec.openplanner.team/stops/Bhalrat2"], ["http://irail.be/stations/NMBS/008845203", "https://tec.openplanner.team/stops/LTPcarr1"], ["https://data.delijn.be/stops/301043", "https://mivb.openplanner.team/stops/4594"], ["https://data.delijn.be/stops/305425", "https://mivb.openplanner.team/stops/1629"], ["https://data.delijn.be/stops/405658", "https://tec.openplanner.team/stops/LTowijk1"], ["http://irail.be/stations/NMBS/008833175", "https://data.delijn.be/stops/301919"], ["http://irail.be/stations/NMBS/008895646", "https://tec.openplanner.team/stops/Bspkker2"], ["https://data.delijn.be/stops/408979", "https://tec.openplanner.team/stops/LWApr%C3%A9s4"], ["http://irail.be/stations/NMBS/008871183", "https://tec.openplanner.team/stops/Cnapetr1"], ["http://irail.be/stations/NMBS/008863008", "https://tec.openplanner.team/stops/N501grc"], ["http://irail.be/stations/NMBS/008400219", "https://data.delijn.be/stops/408832"], ["https://data.delijn.be/stops/405732", "https://tec.openplanner.team/stops/Lrcastr1"], ["http://irail.be/stations/NMBS/008895570", "https://data.delijn.be/stops/208506"], ["https://data.delijn.be/stops/408894", "https://tec.openplanner.team/stops/LBegare1"], ["https://data.delijn.be/stops/509380", "https://tec.openplanner.team/stops/H4pl136a"], ["https://data.delijn.be/stops/402022", "https://tec.openplanner.team/stops/LFMkrut3"], ["http://irail.be/stations/NMBS/008400526", "https://data.delijn.be/stops/204029"], ["https://data.delijn.be/stops/204985", "https://tec.openplanner.team/stops/H5rx132a"], ["https://data.delijn.be/stops/304127", "https://mivb.openplanner.team/stops/2267"], ["https://mivb.openplanner.team/stops/1802", "https://tec.openplanner.team/stops/Bbxlner2"], ["http://irail.be/stations/NMBS/008811767", "https://tec.openplanner.team/stops/Bnetegl4"], ["https://data.delijn.be/stops/300744", "https://mivb.openplanner.team/stops/1326"], ["http://irail.be/stations/NMBS/008871811", "https://tec.openplanner.team/stops/Cthpibl2"], ["https://data.delijn.be/stops/301088", "https://mivb.openplanner.team/stops/6214"], ["https://data.delijn.be/stops/306775", "https://tec.openplanner.team/stops/Blanath1"], ["https://data.delijn.be/stops/304216", "https://mivb.openplanner.team/stops/0636"], ["https://data.delijn.be/stops/300789", "https://mivb.openplanner.team/stops/3752"], ["https://data.delijn.be/stops/304877", "https://mivb.openplanner.team/stops/9557"], ["http://irail.be/stations/NMBS/008843323", "https://tec.openplanner.team/stops/LAmeg--1"], ["http://irail.be/stations/NMBS/008844008", "https://tec.openplanner.team/stops/Lvegc--3"], ["https://data.delijn.be/stops/308105", "https://tec.openplanner.team/stops/Bsrgcur2"], ["https://data.delijn.be/stops/301995", "https://tec.openplanner.team/stops/Bhalber3"], ["https://data.delijn.be/stops/408851", "https://tec.openplanner.team/stops/LVu40--1"], ["https://data.delijn.be/stops/303949", "https://tec.openplanner.team/stops/Bbldgar1"], ["http://irail.be/stations/NMBS/008814456", "https://mivb.openplanner.team/stops/2074"], ["http://irail.be/stations/NMBS/008881562", "https://tec.openplanner.team/stops/H1ge115b"], ["http://irail.be/stations/NMBS/008821311", "https://data.delijn.be/stops/106902"], ["https://data.delijn.be/stops/301084", "https://mivb.openplanner.team/stops/2022"], ["http://irail.be/stations/NMBS/008871183", "https://tec.openplanner.team/stops/Chhplbe2"], ["https://data.delijn.be/stops/401401", "https://mivb.openplanner.team/stops/3765"], ["https://data.delijn.be/stops/305168", "https://tec.openplanner.team/stops/Btiegma1"], ["https://data.delijn.be/stops/303833", "https://mivb.openplanner.team/stops/0270114"], ["http://irail.be/stations/NMBS/008832433", "https://data.delijn.be/stops/401936"], ["https://data.delijn.be/stops/300957", "https://mivb.openplanner.team/stops/1723B"], ["http://irail.be/stations/NMBS/008869047", "https://tec.openplanner.team/stops/X615bda"], ["https://data.delijn.be/stops/302438", "https://tec.openplanner.team/stops/Bjodrrg2"], ["https://data.delijn.be/stops/305325", "https://mivb.openplanner.team/stops/9626"], ["https://data.delijn.be/stops/307913", "https://tec.openplanner.team/stops/Bhalgar2"], ["http://irail.be/stations/NMBS/008821121", "https://data.delijn.be/stops/104685"], ["https://data.delijn.be/stops/308731", "https://tec.openplanner.team/stops/Bgoemho1"], ["http://irail.be/stations/NMBS/008821238", "https://data.delijn.be/stops/102445"], ["https://data.delijn.be/stops/300346", "https://tec.openplanner.team/stops/Bbrlvil2"], ["https://data.delijn.be/stops/301030", "https://mivb.openplanner.team/stops/6430F"], ["https://data.delijn.be/stops/300408", "https://tec.openplanner.team/stops/Blemwro1"], ["https://data.delijn.be/stops/509385", "https://tec.openplanner.team/stops/H4pl121a"], ["http://irail.be/stations/NMBS/008719100", "https://tec.openplanner.team/stops/X696aea"], ["https://data.delijn.be/stops/208405", "https://tec.openplanner.team/stops/H5rx128b"], ["https://mivb.openplanner.team/stops/4853", "https://tec.openplanner.team/stops/Buccmer1"], ["http://irail.be/stations/NMBS/008833258", "https://data.delijn.be/stops/306843"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LFCdree2"], ["https://data.delijn.be/stops/208372", "https://tec.openplanner.team/stops/H5rx138a"], ["http://irail.be/stations/NMBS/008814118", "https://mivb.openplanner.team/stops/2952B"], ["https://data.delijn.be/stops/302437", "https://tec.openplanner.team/stops/Bjodcsb1"], ["https://mivb.openplanner.team/stops/1714", "https://tec.openplanner.team/stops/Bettars2"], ["https://mivb.openplanner.team/stops/3953", "https://tec.openplanner.team/stops/Bettgle1"], ["https://data.delijn.be/stops/308866", "https://mivb.openplanner.team/stops/1668"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N551aga"], ["http://irail.be/stations/NMBS/008871217", "https://tec.openplanner.team/stops/Crolach1"], ["http://irail.be/stations/NMBS/008884640", "https://tec.openplanner.team/stops/H5bl120b"], ["http://irail.be/stations/NMBS/008811189", "https://mivb.openplanner.team/stops/9729"], ["http://irail.be/stations/NMBS/008841442", "https://tec.openplanner.team/stops/LPUchpl2"], ["http://irail.be/stations/NMBS/008814308", "https://data.delijn.be/stops/307222"], ["https://data.delijn.be/stops/301033", "https://tec.openplanner.team/stops/Bsgimor2"], ["https://data.delijn.be/stops/401412", "https://mivb.openplanner.team/stops/1278"], ["https://data.delijn.be/stops/405703", "https://tec.openplanner.team/stops/Llgcamp1"], ["https://data.delijn.be/stops/307714", "https://tec.openplanner.team/stops/Buccpes2"], ["https://data.delijn.be/stops/305428", "https://mivb.openplanner.team/stops/9164"], ["https://data.delijn.be/stops/306286", "https://mivb.openplanner.team/stops/9825F"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N533ada"], ["https://data.delijn.be/stops/308095", "https://tec.openplanner.team/stops/Bzluegl1"], ["http://irail.be/stations/NMBS/008814175", "https://data.delijn.be/stops/304463"], ["https://data.delijn.be/stops/407205", "https://tec.openplanner.team/stops/LHTbaud1"], ["https://mivb.openplanner.team/stops/1132", "https://tec.openplanner.team/stops/Bbxltrv2"], ["https://data.delijn.be/stops/305226", "https://mivb.openplanner.team/stops/1121"], ["http://irail.be/stations/NMBS/008821022", "https://data.delijn.be/stops/104650"], ["https://data.delijn.be/stops/207796", "https://tec.openplanner.team/stops/H5rx105b"], ["http://irail.be/stations/NMBS/008871415", "https://tec.openplanner.team/stops/Cptrebe2"], ["https://data.delijn.be/stops/301009", "https://mivb.openplanner.team/stops/1236F"], ["https://data.delijn.be/stops/301034", "https://mivb.openplanner.team/stops/8331"], ["http://irail.be/stations/NMBS/008811528", "https://tec.openplanner.team/stops/Bgnvpos1"], ["http://irail.be/stations/NMBS/008845005", "https://tec.openplanner.team/stops/X790ajb"], ["https://data.delijn.be/stops/301010", "https://mivb.openplanner.team/stops/1094F"], ["http://irail.be/stations/NMBS/008811254", "https://data.delijn.be/stops/302777"], ["http://irail.be/stations/NMBS/008893443", "https://data.delijn.be/stops/207914"], ["https://data.delijn.be/stops/207776", "https://tec.openplanner.team/stops/H5rx135a"], ["http://irail.be/stations/NMBS/008872587", "https://tec.openplanner.team/stops/Bsmgpon2"], ["http://irail.be/stations/NMBS/008886348", "https://tec.openplanner.team/stops/H4lz157a"], ["https://data.delijn.be/stops/406565", "https://tec.openplanner.team/stops/LLxcana2"], ["https://data.delijn.be/stops/208402", "https://tec.openplanner.team/stops/H5rx128b"], ["https://data.delijn.be/stops/300987", "https://mivb.openplanner.team/stops/4550"], ["https://data.delijn.be/stops/300411", "https://mivb.openplanner.team/stops/9657"], ["http://irail.be/stations/NMBS/008863115", "https://tec.openplanner.team/stops/N501kea"], ["https://data.delijn.be/stops/304600", "https://mivb.openplanner.team/stops/1384"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/503727"], ["http://irail.be/stations/NMBS/008821600", "https://data.delijn.be/stops/107303"], ["https://data.delijn.be/stops/301047", "https://mivb.openplanner.team/stops/1792"], ["http://irail.be/stations/NMBS/008824158", "https://data.delijn.be/stops/104667"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/300402"], ["http://irail.be/stations/NMBS/008896412", "https://tec.openplanner.team/stops/H4co106a"], ["http://irail.be/stations/NMBS/008895067", "https://data.delijn.be/stops/207252"], ["https://mivb.openplanner.team/stops/5256", "https://tec.openplanner.team/stops/Buccbas2"], ["http://irail.be/stations/NMBS/008864915", "https://tec.openplanner.team/stops/N254ahb"], ["https://data.delijn.be/stops/404669", "https://tec.openplanner.team/stops/LSLhall*"], ["http://irail.be/stations/NMBS/008896230", "https://data.delijn.be/stops/505256"], ["http://irail.be/stations/NMBS/008843208", "https://tec.openplanner.team/stops/Lfhnrou1"], ["https://data.delijn.be/stops/303666", "https://mivb.openplanner.team/stops/1328"], ["https://data.delijn.be/stops/208182", "https://tec.openplanner.team/stops/H5el105a"], ["http://irail.be/stations/NMBS/008895448", "https://data.delijn.be/stops/209689"], ["https://data.delijn.be/stops/302806", "https://mivb.openplanner.team/stops/1673"], ["https://data.delijn.be/stops/408992", "https://tec.openplanner.team/stops/LWAlieg1"], ["https://data.delijn.be/stops/408840", "https://tec.openplanner.team/stops/LTEkl122"], ["http://irail.be/stations/NMBS/008872553", "https://tec.openplanner.team/stops/Bmarmpr2"], ["https://data.delijn.be/stops/505275", "https://tec.openplanner.team/stops/H4po126a"], ["https://data.delijn.be/stops/301986", "https://tec.openplanner.team/stops/Bhalark2"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/N524acb"], ["https://data.delijn.be/stops/302855", "https://tec.openplanner.team/stops/Blanmde1"], ["http://irail.be/stations/NMBS/008881125", "https://tec.openplanner.team/stops/H1eo103a"], ["http://irail.be/stations/NMBS/008821543", "https://data.delijn.be/stops/109055"], ["http://irail.be/stations/NMBS/008812211", "https://data.delijn.be/stops/300304"], ["https://mivb.openplanner.team/stops/1804", "https://tec.openplanner.team/stops/Bettlha2"], ["http://irail.be/stations/NMBS/008896396", "https://data.delijn.be/stops/504557"], ["https://data.delijn.be/stops/302887", "https://tec.openplanner.team/stops/Bhevhha1"], ["https://data.delijn.be/stops/403772", "https://tec.openplanner.team/stops/LBGvill2"], ["https://data.delijn.be/stops/300918", "https://mivb.openplanner.team/stops/5046"], ["https://data.delijn.be/stops/308673", "https://mivb.openplanner.team/stops/3751"], ["https://data.delijn.be/stops/308734", "https://tec.openplanner.team/stops/Bneecha2"], ["http://irail.be/stations/NMBS/008895729", "https://data.delijn.be/stops/206851"], ["https://data.delijn.be/stops/508995", "https://tec.openplanner.team/stops/H4po127a"], ["https://data.delijn.be/stops/207790", "https://tec.openplanner.team/stops/H5rx145a"], ["https://data.delijn.be/stops/407213", "https://tec.openplanner.team/stops/LBStec-2"], ["http://irail.be/stations/NMBS/008895778", "https://data.delijn.be/stops/207983"], ["http://irail.be/stations/NMBS/008884004", "https://tec.openplanner.team/stops/H1sg147a"], ["http://irail.be/stations/NMBS/008821659", "https://data.delijn.be/stops/103134"], ["http://irail.be/stations/NMBS/008822715", "https://data.delijn.be/stops/101182"], ["http://irail.be/stations/NMBS/008886561", "https://tec.openplanner.team/stops/H1ol137b"], ["https://data.delijn.be/stops/307716", "https://tec.openplanner.team/stops/Brsgges1"], ["http://irail.be/stations/NMBS/008872066", "https://tec.openplanner.team/stops/Cchdigu1"], ["http://irail.be/stations/NMBS/008811817", "https://tec.openplanner.team/stops/Bmoufil2"], ["https://data.delijn.be/stops/400457", "https://tec.openplanner.team/stops/LEBeg--1"], ["https://data.delijn.be/stops/307987", "https://mivb.openplanner.team/stops/3335F"], ["https://data.delijn.be/stops/300829", "https://mivb.openplanner.team/stops/4274"], ["https://data.delijn.be/stops/404843", "https://tec.openplanner.team/stops/LEBdoct2"], ["https://data.delijn.be/stops/408843", "https://tec.openplanner.team/stops/LRmstat2"], ["https://data.delijn.be/stops/507689", "https://tec.openplanner.team/stops/H4lu128a"], ["http://irail.be/stations/NMBS/008863560", "https://tec.openplanner.team/stops/N229asa"], ["http://irail.be/stations/NMBS/008896735", "https://data.delijn.be/stops/509411"], ["http://irail.be/stations/NMBS/008814456", "https://mivb.openplanner.team/stops/5416"], ["https://data.delijn.be/stops/302219", "https://tec.openplanner.team/stops/Bhoeboo2"], ["http://irail.be/stations/NMBS/008893047", "https://data.delijn.be/stops/200606"], ["https://data.delijn.be/stops/300746", "https://mivb.openplanner.team/stops/3760"], ["http://irail.be/stations/NMBS/008814357", "https://mivb.openplanner.team/stops/9659"], ["http://irail.be/stations/NMBS/008833274", "https://data.delijn.be/stops/304430"], ["https://data.delijn.be/stops/305916", "https://mivb.openplanner.team/stops/5102"], ["http://irail.be/stations/NMBS/008895232", "https://data.delijn.be/stops/208811"], ["http://irail.be/stations/NMBS/008884541", "https://tec.openplanner.team/stops/H1qu104b"], ["http://irail.be/stations/NMBS/008400058", "https://data.delijn.be/stops/408948"], ["http://irail.be/stations/NMBS/008891264", "https://data.delijn.be/stops/502664"], ["http://irail.be/stations/NMBS/008872413", "https://tec.openplanner.team/stops/Cflsncb3"], ["https://data.delijn.be/stops/302929", "https://tec.openplanner.team/stops/Blhusor1"], ["https://data.delijn.be/stops/300849", "https://mivb.openplanner.team/stops/2815B"], ["https://data.delijn.be/stops/209181", "https://tec.openplanner.team/stops/H5rx131b"], ["https://data.delijn.be/stops/408882", "https://tec.openplanner.team/stops/LFCvoer2"], ["https://data.delijn.be/stops/308871", "https://mivb.openplanner.team/stops/1840"], ["http://irail.be/stations/NMBS/008861119", "https://tec.openplanner.team/stops/N501apb"], ["http://irail.be/stations/NMBS/008822525", "https://data.delijn.be/stops/305974"], ["https://data.delijn.be/stops/301099", "https://tec.openplanner.team/stops/Bkrawil1"], ["https://data.delijn.be/stops/407751", "https://tec.openplanner.team/stops/LWOcomm2"], ["https://data.delijn.be/stops/509815", "https://tec.openplanner.team/stops/H4ef111a"], ["https://data.delijn.be/stops/400683", "https://tec.openplanner.team/stops/LHggeer1"], ["http://irail.be/stations/NMBS/008865540", "https://tec.openplanner.team/stops/X806abb"], ["http://irail.be/stations/NMBS/008842002", "https://tec.openplanner.team/stops/Laggare2"], ["http://irail.be/stations/NMBS/008822210", "https://data.delijn.be/stops/101424"], ["https://data.delijn.be/stops/505992", "https://tec.openplanner.team/stops/H4pl136a"], ["https://data.delijn.be/stops/300874", "https://mivb.openplanner.team/stops/4274"], ["http://irail.be/stations/NMBS/008885753", "https://tec.openplanner.team/stops/H4hx118a"], ["http://irail.be/stations/NMBS/008864931", "https://tec.openplanner.team/stops/N236anb"], ["http://irail.be/stations/NMBS/008831112", "https://data.delijn.be/stops/401559"], ["https://data.delijn.be/stops/408677", "https://tec.openplanner.team/stops/LRUhama2"], ["https://data.delijn.be/stops/400467", "https://tec.openplanner.team/stops/LEMec--1"], ["http://irail.be/stations/NMBS/008814266", "https://tec.openplanner.team/stops/Bwatgar5"], ["http://irail.be/stations/NMBS/008812211", "https://data.delijn.be/stops/301768"], ["http://irail.be/stations/NMBS/008889011", "https://tec.openplanner.team/stops/H4mo170a"], ["https://data.delijn.be/stops/504236", "https://tec.openplanner.team/stops/H4co142a"], ["http://irail.be/stations/NMBS/008884319", "https://tec.openplanner.team/stops/H1bo106b"], ["http://irail.be/stations/NMBS/008895067", "https://data.delijn.be/stops/207250"], ["http://irail.be/stations/NMBS/008821907", "https://data.delijn.be/stops/109123"], ["https://mivb.openplanner.team/stops/1995F", "https://tec.openplanner.team/stops/Bucccal4"], ["http://irail.be/stations/NMBS/008883121", "https://tec.openplanner.team/stops/H1ne144a"], ["http://irail.be/stations/NMBS/008893815", "https://data.delijn.be/stops/202988"], ["https://data.delijn.be/stops/307685", "https://mivb.openplanner.team/stops/1938"], ["https://data.delijn.be/stops/307198", "https://tec.openplanner.team/stops/Bhaleur1"], ["https://data.delijn.be/stops/307035", "https://tec.openplanner.team/stops/Balswwe1"], ["http://irail.be/stations/NMBS/008832243", "https://data.delijn.be/stops/404177"], ["http://irail.be/stations/NMBS/008894508", "https://data.delijn.be/stops/205340"], ["http://irail.be/stations/NMBS/008886546", "https://tec.openplanner.team/stops/H1gy111a"], ["https://data.delijn.be/stops/504240", "https://tec.openplanner.team/stops/H4co146b"], ["http://irail.be/stations/NMBS/008811155", "https://data.delijn.be/stops/300896"], ["https://mivb.openplanner.team/stops/1597", "https://tec.openplanner.team/stops/Baudtri2"], ["http://irail.be/stations/NMBS/008886009", "https://tec.openplanner.team/stops/H5at108b"], ["https://data.delijn.be/stops/304462", "https://tec.openplanner.team/stops/Brsggar2"], ["http://irail.be/stations/NMBS/008891660", "https://data.delijn.be/stops/506427"], ["http://irail.be/stations/NMBS/008822269", "https://data.delijn.be/stops/305242"], ["http://irail.be/stations/NMBS/008813045", "https://data.delijn.be/stops/304580"], ["http://irail.be/stations/NMBS/008842648", "https://tec.openplanner.team/stops/LTIdumo1"], ["https://data.delijn.be/stops/306913", "https://tec.openplanner.team/stops/Bbosgar1"], ["http://irail.be/stations/NMBS/008728671", "https://tec.openplanner.team/stops/H4rx142a"], ["http://irail.be/stations/NMBS/008883238", "https://tec.openplanner.team/stops/H2mg135a"], ["http://irail.be/stations/NMBS/008814365", "https://data.delijn.be/stops/303229"], ["https://data.delijn.be/stops/306123", "https://tec.openplanner.team/stops/Bhalcbr2"], ["https://data.delijn.be/stops/302397", "https://tec.openplanner.team/stops/Bpecdel2"], ["https://data.delijn.be/stops/408982", "https://tec.openplanner.team/stops/LWAaxhe2"], ["https://data.delijn.be/stops/305295", "https://mivb.openplanner.team/stops/3001B"], ["http://irail.be/stations/NMBS/008812005", "https://mivb.openplanner.team/stops/0526"], ["https://data.delijn.be/stops/303632", "https://mivb.openplanner.team/stops/6603"], ["http://irail.be/stations/NMBS/008893054", "https://data.delijn.be/stops/201637"], ["https://data.delijn.be/stops/300961", "https://mivb.openplanner.team/stops/8261"], ["http://irail.be/stations/NMBS/008841459", "https://tec.openplanner.team/stops/LJesole1"], ["https://data.delijn.be/stops/300357", "https://tec.openplanner.team/stops/Bbrlpar1"], ["https://data.delijn.be/stops/307241", "https://mivb.openplanner.team/stops/6806F"], ["http://irail.be/stations/NMBS/008861549", "https://tec.openplanner.team/stops/Bmsgpfo1"], ["https://data.delijn.be/stops/301080", "https://mivb.openplanner.team/stops/0410446"], ["http://irail.be/stations/NMBS/008200132", "https://tec.openplanner.team/stops/X791aba"], ["http://irail.be/stations/NMBS/008833134", "https://data.delijn.be/stops/300508"], ["http://irail.be/stations/NMBS/007015440", "https://data.delijn.be/stops/501508"], ["https://data.delijn.be/stops/300955", "https://mivb.openplanner.team/stops/5270F"], ["https://data.delijn.be/stops/304547", "https://mivb.openplanner.team/stops/9660"], ["https://data.delijn.be/stops/304461", "https://tec.openplanner.team/stops/Brsgter2"], ["https://mivb.openplanner.team/stops/3158B", "https://tec.openplanner.team/stops/Bbxlner2"], ["https://data.delijn.be/stops/505992", "https://tec.openplanner.team/stops/H4ar104b"], ["https://data.delijn.be/stops/505831", "https://tec.openplanner.team/stops/H4po125b"], ["https://data.delijn.be/stops/301925", "https://mivb.openplanner.team/stops/9876"], ["https://mivb.openplanner.team/stops/2118", "https://tec.openplanner.team/stops/Buccpor1"], ["https://data.delijn.be/stops/307225", "https://tec.openplanner.team/stops/Bhalgar2"], ["http://irail.be/stations/NMBS/008872306", "https://tec.openplanner.team/stops/Cgymast1"], ["https://data.delijn.be/stops/405655", "https://tec.openplanner.team/stops/LBevill1"], ["http://irail.be/stations/NMBS/008812013", "https://mivb.openplanner.team/stops/0471"], ["https://data.delijn.be/stops/300991", "https://mivb.openplanner.team/stops/4550"], ["https://data.delijn.be/stops/300940", "https://mivb.openplanner.team/stops/3280"], ["http://irail.be/stations/NMBS/008811411", "https://mivb.openplanner.team/stops/5261"], ["https://data.delijn.be/stops/300906", "https://tec.openplanner.team/stops/Bixlpat1"], ["https://data.delijn.be/stops/405430", "https://tec.openplanner.team/stops/Bezebru2"], ["https://data.delijn.be/stops/303669", "https://mivb.openplanner.team/stops/1080"], ["https://data.delijn.be/stops/401398", "https://mivb.openplanner.team/stops/3463"], ["http://irail.be/stations/NMBS/008822137", "https://data.delijn.be/stops/206332"], ["http://irail.be/stations/NMBS/008833605", "https://data.delijn.be/stops/405352"], ["http://irail.be/stations/NMBS/008894714", "https://data.delijn.be/stops/205705"], ["https://data.delijn.be/stops/301153", "https://tec.openplanner.team/stops/Buccpin1"], ["https://data.delijn.be/stops/307682", "https://mivb.openplanner.team/stops/5723B"], ["http://irail.be/stations/NMBS/008833266", "https://data.delijn.be/stops/304415"], ["https://data.delijn.be/stops/307791", "https://mivb.openplanner.team/stops/1368"], ["https://data.delijn.be/stops/304873", "https://mivb.openplanner.team/stops/9577"], ["http://irail.be/stations/NMBS/008865565", "https://tec.openplanner.team/stops/X850aja"], ["https://data.delijn.be/stops/300801", "https://mivb.openplanner.team/stops/1475"], ["https://data.delijn.be/stops/401650", "https://tec.openplanner.team/stops/Brach122"], ["https://data.delijn.be/stops/405343", "https://tec.openplanner.team/stops/Bneesjo2"], ["http://irail.be/stations/NMBS/008811726", "https://tec.openplanner.team/stops/Bwavmes2"], ["http://irail.be/stations/NMBS/008814415", "https://data.delijn.be/stops/303322"], ["https://data.delijn.be/stops/300771", "https://mivb.openplanner.team/stops/8672"], ["https://data.delijn.be/stops/404671", "https://tec.openplanner.team/stops/LJUxhen3"], ["https://data.delijn.be/stops/300852", "https://mivb.openplanner.team/stops/6653F"], ["https://data.delijn.be/stops/300769", "https://mivb.openplanner.team/stops/6860G"], ["https://data.delijn.be/stops/300933", "https://mivb.openplanner.team/stops/2995"], ["https://data.delijn.be/stops/303648", "https://mivb.openplanner.team/stops/5700G"], ["https://data.delijn.be/stops/307000", "https://mivb.openplanner.team/stops/9659"], ["http://irail.be/stations/NMBS/008849064", "https://data.delijn.be/stops/408802"], ["https://data.delijn.be/stops/307504", "https://tec.openplanner.team/stops/Brsrpar1"], ["https://data.delijn.be/stops/300934", "https://mivb.openplanner.team/stops/7269"], ["http://irail.be/stations/NMBS/008895125", "https://data.delijn.be/stops/205986"], ["http://irail.be/stations/NMBS/008811817", "https://tec.openplanner.team/stops/Bcsegar1"], ["http://irail.be/stations/NMBS/008200132", "https://tec.openplanner.team/stops/X769arb"], ["http://irail.be/stations/NMBS/008885704", "https://tec.openplanner.team/stops/H4mo142a"], ["https://data.delijn.be/stops/208357", "https://tec.openplanner.team/stops/H5rx121b"], ["https://data.delijn.be/stops/308105", "https://tec.openplanner.team/stops/Bbeagae2"], ["http://irail.be/stations/NMBS/008896503", "https://data.delijn.be/stops/509154"], ["http://irail.be/stations/NMBS/008833001", "https://data.delijn.be/stops/303135"], ["https://data.delijn.be/stops/305398", "https://mivb.openplanner.team/stops/1328"], ["https://data.delijn.be/stops/400494", "https://tec.openplanner.team/stops/LBSneuv2"], ["http://irail.be/stations/NMBS/008863446", "https://tec.openplanner.team/stops/N512ala"], ["http://irail.be/stations/NMBS/008891033", "https://data.delijn.be/stops/502643"], ["http://irail.be/stations/NMBS/008812047", "https://mivb.openplanner.team/stops/1065"], ["https://data.delijn.be/stops/302888", "https://tec.openplanner.team/stops/Bhevhha1"], ["http://irail.be/stations/NMBS/008821543", "https://data.delijn.be/stops/107315"], ["http://irail.be/stations/NMBS/008821006", "https://data.delijn.be/stops/101725"], ["https://data.delijn.be/stops/300785", "https://mivb.openplanner.team/stops/8701"], ["https://data.delijn.be/stops/300974", "https://mivb.openplanner.team/stops/6469"], ["http://irail.be/stations/NMBS/008814423", "https://mivb.openplanner.team/stops/9685"], ["http://irail.be/stations/NMBS/008821824", "https://data.delijn.be/stops/108162"], ["http://irail.be/stations/NMBS/008832458", "https://data.delijn.be/stops/109259"], ["http://irail.be/stations/NMBS/008886561", "https://tec.openplanner.team/stops/H1ol137a"], ["http://irail.be/stations/NMBS/008893054", "https://data.delijn.be/stops/200603"], ["http://irail.be/stations/NMBS/008833209", "https://data.delijn.be/stops/109048"], ["https://mivb.openplanner.team/stops/2721", "https://tec.openplanner.team/stops/Bixlozo2"], ["https://mivb.openplanner.team/stops/6408", "https://tec.openplanner.team/stops/Bixllep2"], ["http://irail.be/stations/NMBS/008812260", "https://data.delijn.be/stops/306705"], ["https://data.delijn.be/stops/400496", "https://tec.openplanner.team/stops/LLxcbr-2"], ["http://irail.be/stations/NMBS/008811247", "https://data.delijn.be/stops/306557"], ["http://irail.be/stations/NMBS/008811601", "https://tec.openplanner.team/stops/Blimmer2"], ["https://data.delijn.be/stops/304191", "https://mivb.openplanner.team/stops/3337F"], ["https://data.delijn.be/stops/301080", "https://mivb.openplanner.team/stops/1571"], ["https://data.delijn.be/stops/408897", "https://tec.openplanner.team/stops/LFPkast1"], ["http://irail.be/stations/NMBS/008831401", "https://data.delijn.be/stops/308671"], ["https://data.delijn.be/stops/305297", "https://mivb.openplanner.team/stops/9626"], ["https://data.delijn.be/stops/302423", "https://tec.openplanner.team/stops/Bsrgegl2"], ["http://irail.be/stations/NMBS/008861440", "https://tec.openplanner.team/stops/N521ala"], ["https://data.delijn.be/stops/307142", "https://mivb.openplanner.team/stops/2539F"], ["https://data.delijn.be/stops/305238", "https://tec.openplanner.team/stops/Bspkdon1"], ["http://irail.be/stations/NMBS/008893211", "https://data.delijn.be/stops/200420"], ["https://data.delijn.be/stops/301027", "https://mivb.openplanner.team/stops/2470"], ["https://data.delijn.be/stops/405734", "https://tec.openplanner.team/stops/Lrchype2"], ["https://data.delijn.be/stops/304190", "https://mivb.openplanner.team/stops/3338F"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/503217"], ["http://irail.be/stations/NMBS/008822137", "https://data.delijn.be/stops/207732"], ["http://irail.be/stations/NMBS/008874724", "https://tec.openplanner.team/stops/N534awb"], ["https://data.delijn.be/stops/401412", "https://mivb.openplanner.team/stops/4364"], ["https://data.delijn.be/stops/301052", "https://mivb.openplanner.team/stops/0460250"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bsmgmas1"], ["https://data.delijn.be/stops/301072", "https://mivb.openplanner.team/stops/1114B"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N570aba"], ["http://irail.be/stations/NMBS/008814373", "https://data.delijn.be/stops/303121"], ["https://data.delijn.be/stops/302201", "https://tec.openplanner.team/stops/Bhoealt2"], ["https://data.delijn.be/stops/302418", "https://tec.openplanner.team/stops/Bjodeco1"], ["http://irail.be/stations/NMBS/008833266", "https://data.delijn.be/stops/306847"], ["https://data.delijn.be/stops/305497", "https://mivb.openplanner.team/stops/2015"], ["http://irail.be/stations/NMBS/008841731", "https://tec.openplanner.team/stops/LPAeg--2"], ["http://irail.be/stations/NMBS/008882248", "https://tec.openplanner.team/stops/Ccpetan2"], ["https://data.delijn.be/stops/407642", "https://tec.openplanner.team/stops/LEMfort2"], ["https://data.delijn.be/stops/303226", "https://mivb.openplanner.team/stops/2661"], ["https://data.delijn.be/stops/308818", "https://mivb.openplanner.team/stops/8422"], ["https://mivb.openplanner.team/stops/5020", "https://tec.openplanner.team/stops/Bsgimca1"], ["https://data.delijn.be/stops/307640", "https://mivb.openplanner.team/stops/1954"], ["https://data.delijn.be/stops/306400", "https://mivb.openplanner.team/stops/6648F"], ["https://data.delijn.be/stops/305224", "https://tec.openplanner.team/stops/H1mk115a"], ["https://data.delijn.be/stops/305324", "https://mivb.openplanner.team/stops/9788"], ["http://irail.be/stations/NMBS/008892601", "https://data.delijn.be/stops/209120"], ["http://irail.be/stations/NMBS/008821048", "https://data.delijn.be/stops/105387"], ["https://data.delijn.be/stops/308855", "https://mivb.openplanner.team/stops/5403"], ["https://data.delijn.be/stops/301069", "https://mivb.openplanner.team/stops/8382"], ["https://data.delijn.be/stops/307791", "https://mivb.openplanner.team/stops/1008"], ["https://mivb.openplanner.team/stops/5453", "https://tec.openplanner.team/stops/Bwbfckr2"], ["https://data.delijn.be/stops/401416", "https://mivb.openplanner.team/stops/1807"], ["https://data.delijn.be/stops/508032", "https://tec.openplanner.team/stops/H4ef113b"], ["https://data.delijn.be/stops/403765", "https://tec.openplanner.team/stops/LBGvill2"], ["https://mivb.openplanner.team/stops/3508F", "https://tec.openplanner.team/stops/Bixlfla1"], ["http://irail.be/stations/NMBS/008821451", "https://data.delijn.be/stops/105859"], ["http://irail.be/stations/NMBS/008831807", "https://data.delijn.be/stops/407897"], ["https://data.delijn.be/stops/205982", "https://tec.openplanner.team/stops/H4an105a"], ["https://data.delijn.be/stops/509295", "https://tec.openplanner.team/stops/H4lu127a"], ["https://data.delijn.be/stops/408854", "https://tec.openplanner.team/stops/LFCkerk2"], ["http://irail.be/stations/NMBS/008891157", "https://data.delijn.be/stops/200820"], ["https://data.delijn.be/stops/408903", "https://tec.openplanner.team/stops/LFPho8a2"], ["https://data.delijn.be/stops/407204", "https://tec.openplanner.team/stops/LHTdelh1"], ["https://data.delijn.be/stops/303224", "https://mivb.openplanner.team/stops/3860"], ["https://data.delijn.be/stops/301116", "https://mivb.openplanner.team/stops/5603"], ["http://irail.be/stations/NMBS/008896115", "https://data.delijn.be/stops/503211"], ["http://irail.be/stations/NMBS/008822343", "https://data.delijn.be/stops/105189"], ["https://data.delijn.be/stops/207774", "https://tec.openplanner.team/stops/H5rx136b"], ["http://irail.be/stations/NMBS/008832375", "https://data.delijn.be/stops/403001"], ["https://data.delijn.be/stops/308732", "https://tec.openplanner.team/stops/Bneesj32"], ["https://data.delijn.be/stops/308732", "https://tec.openplanner.team/stops/Bgoemho2"], ["http://irail.be/stations/NMBS/008893013", "https://data.delijn.be/stops/205984"], ["http://irail.be/stations/NMBS/008811734", "https://tec.openplanner.team/stops/Bwavfbe1"], ["https://data.delijn.be/stops/304548", "https://mivb.openplanner.team/stops/9660"], ["https://data.delijn.be/stops/300344", "https://tec.openplanner.team/stops/Bbrlpar2"], ["https://data.delijn.be/stops/302398", "https://mivb.openplanner.team/stops/6856"], ["https://data.delijn.be/stops/207780", "https://tec.openplanner.team/stops/H5rx101a"], ["https://data.delijn.be/stops/504234", "https://tec.openplanner.team/stops/H4co108a"], ["http://irail.be/stations/NMBS/008866142", "https://tec.openplanner.team/stops/X670ala"], ["https://data.delijn.be/stops/303831", "https://mivb.openplanner.team/stops/6649F"], ["https://data.delijn.be/stops/308675", "https://mivb.openplanner.team/stops/1018"], ["https://data.delijn.be/stops/408843", "https://tec.openplanner.team/stops/LRmkerk2"], ["https://data.delijn.be/stops/405421", "https://tec.openplanner.team/stops/Blanath1"], ["http://irail.be/stations/NMBS/008833605", "https://data.delijn.be/stops/302831"], ["http://irail.be/stations/NMBS/008863461", "https://tec.openplanner.team/stops/N503abb"], ["https://data.delijn.be/stops/307791", "https://mivb.openplanner.team/stops/1755"], ["http://irail.be/stations/NMBS/008872579", "https://tec.openplanner.team/stops/Btilsce1"], ["https://data.delijn.be/stops/301026", "https://tec.openplanner.team/stops/Bsgipha1"], ["https://data.delijn.be/stops/308724", "https://tec.openplanner.team/stops/Bboseco1"], ["https://data.delijn.be/stops/307827", "https://mivb.openplanner.team/stops/9876"], ["https://data.delijn.be/stops/307726", "https://tec.openplanner.team/stops/Bbchm381"], ["https://data.delijn.be/stops/303631", "https://mivb.openplanner.team/stops/6650G"], ["http://irail.be/stations/NMBS/008863461", "https://tec.openplanner.team/stops/N503alb"], ["http://irail.be/stations/NMBS/008871217", "https://tec.openplanner.team/stops/Cropcan2"], ["http://irail.be/stations/NMBS/008841558", "https://tec.openplanner.team/stops/Llgfoss1"], ["https://data.delijn.be/stops/300487", "https://tec.openplanner.team/stops/Bhaleur1"], ["https://data.delijn.be/stops/503228", "https://tec.openplanner.team/stops/H4eh104b"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1mj129b"], ["http://irail.be/stations/NMBS/008885530", "https://tec.openplanner.team/stops/H4vz371b"], ["https://data.delijn.be/stops/301030", "https://mivb.openplanner.team/stops/5018"], ["http://irail.be/stations/NMBS/008821519", "https://data.delijn.be/stops/105856"], ["https://data.delijn.be/stops/304133", "https://tec.openplanner.team/stops/Bbghpln1"], ["https://data.delijn.be/stops/400465", "https://tec.openplanner.team/stops/LPleclu2"], ["http://irail.be/stations/NMBS/008832045", "https://data.delijn.be/stops/407100"], ["https://data.delijn.be/stops/301398", "https://mivb.openplanner.team/stops/5923"], ["https://data.delijn.be/stops/305346", "https://tec.openplanner.team/stops/Bbgerlr2"], ["http://irail.be/stations/NMBS/008881463", "https://tec.openplanner.team/stops/H2sb223a"], ["https://data.delijn.be/stops/405711", "https://tec.openplanner.team/stops/Llghugo2"], ["http://irail.be/stations/NMBS/007015440", "https://data.delijn.be/stops/504553"], ["https://data.delijn.be/stops/300952", "https://mivb.openplanner.team/stops/8471"], ["https://data.delijn.be/stops/304109", "https://tec.openplanner.team/stops/Bovejme1"], ["http://irail.be/stations/NMBS/008865540", "https://tec.openplanner.team/stops/X808aka"], ["http://irail.be/stations/NMBS/008400131", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/308644", "https://tec.openplanner.team/stops/Bovepla2"], ["https://mivb.openplanner.team/stops/3572", "https://tec.openplanner.team/stops/Bixlfla2"], ["http://irail.be/stations/NMBS/008893534", "https://data.delijn.be/stops/206246"], ["https://data.delijn.be/stops/307142", "https://mivb.openplanner.team/stops/0350240"], ["https://data.delijn.be/stops/300801", "https://mivb.openplanner.team/stops/1541"], ["https://data.delijn.be/stops/509380", "https://tec.openplanner.team/stops/H4pl114a"], ["https://data.delijn.be/stops/303231", "https://tec.openplanner.team/stops/Bhevl3l1"], ["https://data.delijn.be/stops/408884", "https://tec.openplanner.team/stops/LWRbois2"], ["https://data.delijn.be/stops/208872", "https://tec.openplanner.team/stops/H5rx147a"], ["http://irail.be/stations/NMBS/008874054", "https://tec.openplanner.team/stops/Ccicent3"], ["https://data.delijn.be/stops/307921", "https://mivb.openplanner.team/stops/4250"], ["http://irail.be/stations/NMBS/008895638", "https://data.delijn.be/stops/307327"], ["http://irail.be/stations/NMBS/008895505", "https://data.delijn.be/stops/208046"], ["http://irail.be/stations/NMBS/008842655", "https://tec.openplanner.team/stops/LESmich2"], ["http://irail.be/stations/NMBS/008895760", "https://data.delijn.be/stops/217011"], ["http://irail.be/stations/NMBS/008894672", "https://data.delijn.be/stops/205668"], ["https://data.delijn.be/stops/302869", "https://tec.openplanner.team/stops/Bhevjal1"], ["http://irail.be/stations/NMBS/008824240", "https://data.delijn.be/stops/107957"], ["http://irail.be/stations/NMBS/008811759", "https://tec.openplanner.team/stops/Bgzdgth1"], ["https://data.delijn.be/stops/307698", "https://tec.openplanner.team/stops/Brsgsan2"], ["http://irail.be/stations/NMBS/008200102", "https://tec.openplanner.team/stops/X685apa"], ["https://data.delijn.be/stops/304202", "https://tec.openplanner.team/stops/Brsregl3"], ["https://data.delijn.be/stops/300964", "https://tec.openplanner.team/stops/Baudvdu2"], ["https://data.delijn.be/stops/208184", "https://tec.openplanner.team/stops/H5rx104a"], ["https://data.delijn.be/stops/300922", "https://mivb.openplanner.team/stops/1534"], ["http://irail.be/stations/NMBS/008883113", "https://tec.openplanner.team/stops/H3so163b"], ["http://irail.be/stations/NMBS/008881562", "https://tec.openplanner.team/stops/H1bs110c"], ["https://data.delijn.be/stops/302870", "https://tec.openplanner.team/stops/Bhevjal1"], ["https://data.delijn.be/stops/302451", "https://tec.openplanner.team/stops/Bzluvil2"], ["http://irail.be/stations/NMBS/008821030", "https://data.delijn.be/stops/106000"], ["https://data.delijn.be/stops/304838", "https://mivb.openplanner.team/stops/9556"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/106498"], ["http://irail.be/stations/NMBS/008881570", "https://tec.openplanner.team/stops/H1fr152a"], ["http://irail.be/stations/NMBS/008200101", "https://tec.openplanner.team/stops/X685apb"], ["https://data.delijn.be/stops/405738", "https://tec.openplanner.team/stops/Lrc594-1"], ["http://irail.be/stations/NMBS/008891157", "https://data.delijn.be/stops/200851"], ["https://data.delijn.be/stops/306068", "https://tec.openplanner.team/stops/Blemwro2"], ["https://data.delijn.be/stops/508749", "https://tec.openplanner.team/stops/H4do106a"], ["https://data.delijn.be/stops/303648", "https://mivb.openplanner.team/stops/2857B"], ["https://data.delijn.be/stops/505391", "https://tec.openplanner.team/stops/H4po125a"], ["https://data.delijn.be/stops/306900", "https://tec.openplanner.team/stops/Boplcsj2"], ["https://data.delijn.be/stops/504231", "https://tec.openplanner.team/stops/H4co148a"], ["https://data.delijn.be/stops/408963", "https://tec.openplanner.team/stops/LWAchpg1"], ["https://data.delijn.be/stops/400496", "https://tec.openplanner.team/stops/LEBmoul1"], ["http://irail.be/stations/NMBS/008814373", "https://mivb.openplanner.team/stops/2664"], ["https://data.delijn.be/stops/307716", "https://tec.openplanner.team/stops/Brsgepr2"], ["https://data.delijn.be/stops/400665", "https://tec.openplanner.team/stops/LWAaxhe2"], ["https://data.delijn.be/stops/209188", "https://tec.openplanner.team/stops/H5rx137b"], ["https://data.delijn.be/stops/300768", "https://mivb.openplanner.team/stops/2259F"], ["http://irail.be/stations/NMBS/008896008", "https://data.delijn.be/stops/510022"], ["https://data.delijn.be/stops/300991", "https://mivb.openplanner.team/stops/3762"], ["https://data.delijn.be/stops/301005", "https://mivb.openplanner.team/stops/4157"], ["https://data.delijn.be/stops/408832", "https://tec.openplanner.team/stops/LMgkrui2"], ["http://irail.be/stations/NMBS/008866662", "https://tec.openplanner.team/stops/X614asb"], ["https://data.delijn.be/stops/300942", "https://mivb.openplanner.team/stops/3130"], ["https://data.delijn.be/stops/300740", "https://mivb.openplanner.team/stops/2550"], ["https://data.delijn.be/stops/300938", "https://mivb.openplanner.team/stops/6805F"], ["https://data.delijn.be/stops/304872", "https://mivb.openplanner.team/stops/9577"], ["http://irail.be/stations/NMBS/008822772", "https://data.delijn.be/stops/107858"], ["https://mivb.openplanner.team/stops/1673", "https://tec.openplanner.team/stops/Bkrawil1"], ["http://irail.be/stations/NMBS/007015440", "https://data.delijn.be/stops/501409"], ["https://data.delijn.be/stops/307717", "https://tec.openplanner.team/stops/Bwbfbon2"], ["http://irail.be/stations/NMBS/007015440", "https://data.delijn.be/stops/505401"], ["http://irail.be/stations/NMBS/008893708", "https://data.delijn.be/stops/202537"], ["https://data.delijn.be/stops/508023", "https://tec.openplanner.team/stops/H4ae102b"], ["https://data.delijn.be/stops/408853", "https://tec.openplanner.team/stops/LFChofv1"], ["http://irail.be/stations/NMBS/008821238", "https://data.delijn.be/stops/101915"], ["https://mivb.openplanner.team/stops/3556", "https://tec.openplanner.team/stops/Bauddel1"], ["http://irail.be/stations/NMBS/008892007", "https://data.delijn.be/stops/202350"], ["http://irail.be/stations/NMBS/008728673", "https://tec.openplanner.team/stops/H4rx142b"], ["http://irail.be/stations/NMBS/008814134", "https://tec.openplanner.team/stops/Bucccal3"], ["https://data.delijn.be/stops/301133", "https://mivb.openplanner.team/stops/2714"], ["https://data.delijn.be/stops/308855", "https://mivb.openplanner.team/stops/2874"], ["https://data.delijn.be/stops/206778", "https://tec.openplanner.team/stops/H1gy115a"], ["https://data.delijn.be/stops/408833", "https://tec.openplanner.team/stops/LMgberw2"], ["http://irail.be/stations/NMBS/008831088", "https://data.delijn.be/stops/402936"], ["http://irail.be/stations/NMBS/008895638", "https://tec.openplanner.team/stops/Bspkbeu2"], ["http://irail.be/stations/NMBS/008882107", "https://tec.openplanner.team/stops/H2ll186b"], ["https://data.delijn.be/stops/408848", "https://tec.openplanner.team/stops/LRmrode2"], ["http://irail.be/stations/NMBS/008864501", "https://tec.openplanner.team/stops/N201ajb"], ["http://irail.be/stations/NMBS/008822277", "https://data.delijn.be/stops/105132"], ["https://data.delijn.be/stops/408877", "https://tec.openplanner.team/stops/LFMkrut2"], ["https://data.delijn.be/stops/304932", "https://mivb.openplanner.team/stops/9751"], ["https://data.delijn.be/stops/400478", "https://tec.openplanner.team/stops/LBPmais1"], ["https://data.delijn.be/stops/303580", "https://mivb.openplanner.team/stops/9701"], ["https://data.delijn.be/stops/408842", "https://tec.openplanner.team/stops/LRmstat2"], ["http://irail.be/stations/NMBS/008812070", "https://data.delijn.be/stops/303735"], ["http://irail.be/stations/NMBS/008843208", "https://tec.openplanner.team/stops/Lfhgare1"], ["https://data.delijn.be/stops/209195", "https://tec.openplanner.team/stops/H5rx146b"], ["https://data.delijn.be/stops/409000", "https://tec.openplanner.team/stops/LWAvand1"], ["https://data.delijn.be/stops/302425", "https://tec.openplanner.team/stops/Bsjgegl1"], ["https://data.delijn.be/stops/405701", "https://tec.openplanner.team/stops/Llgplat2"], ["http://irail.be/stations/NMBS/008863156", "https://tec.openplanner.team/stops/N539ata"], ["http://irail.be/stations/NMBS/008886009", "https://tec.openplanner.team/stops/H5at120a"], ["http://irail.be/stations/NMBS/008891033", "https://data.delijn.be/stops/502140"], ["https://data.delijn.be/stops/300759", "https://mivb.openplanner.team/stops/6005"], ["http://irail.be/stations/NMBS/008863545", "https://tec.openplanner.team/stops/N229aka"], ["https://data.delijn.be/stops/300802", "https://mivb.openplanner.team/stops/7660109"], ["https://mivb.openplanner.team/stops/1048F", "https://tec.openplanner.team/stops/Buccgob2"], ["https://data.delijn.be/stops/208407", "https://tec.openplanner.team/stops/H5rx129a"], ["https://data.delijn.be/stops/305313", "https://mivb.openplanner.team/stops/2854"], ["https://data.delijn.be/stops/300976", "https://mivb.openplanner.team/stops/6019"], ["https://data.delijn.be/stops/208742", "https://tec.openplanner.team/stops/H4or113b"], ["https://data.delijn.be/stops/406398", "https://tec.openplanner.team/stops/Blaneli2"], ["http://irail.be/stations/NMBS/008821063", "https://data.delijn.be/stops/102625"], ["http://irail.be/stations/NMBS/008886041", "https://tec.openplanner.team/stops/H4ab103a"], ["http://irail.be/stations/NMBS/008832664", "https://data.delijn.be/stops/409881"], ["http://irail.be/stations/NMBS/008882206", "https://tec.openplanner.team/stops/H2hl112b"], ["https://data.delijn.be/stops/404675", "https://tec.openplanner.team/stops/LJU51--1"], ["http://irail.be/stations/NMBS/008893054", "https://data.delijn.be/stops/202859"], ["https://data.delijn.be/stops/306065", "https://tec.openplanner.team/stops/Blemsta2"], ["http://irail.be/stations/NMBS/008822228", "https://data.delijn.be/stops/106964"], ["https://data.delijn.be/stops/304453", "https://tec.openplanner.team/stops/Brsgrol2"], ["http://irail.be/stations/NMBS/008821600", "https://data.delijn.be/stops/101554"], ["https://data.delijn.be/stops/307693", "https://mivb.openplanner.team/stops/2147B"], ["https://data.delijn.be/stops/307555", "https://tec.openplanner.team/stops/Bstecal2"], ["https://data.delijn.be/stops/300955", "https://mivb.openplanner.team/stops/5283F"], ["http://irail.be/stations/NMBS/008845203", "https://tec.openplanner.team/stops/LTPsalm1"], ["https://data.delijn.be/stops/308825", "https://tec.openplanner.team/stops/LLaover4"], ["https://data.delijn.be/stops/300952", "https://mivb.openplanner.team/stops/1286"], ["http://irail.be/stations/NMBS/008814472", "https://mivb.openplanner.team/stops/2016"], ["http://irail.be/stations/NMBS/008895505", "https://data.delijn.be/stops/200978"], ["http://irail.be/stations/NMBS/008893054", "https://data.delijn.be/stops/210098"], ["https://data.delijn.be/stops/408597", "https://tec.openplanner.team/stops/LOreg--2"], ["http://irail.be/stations/NMBS/008891652", "https://data.delijn.be/stops/501665"], ["https://data.delijn.be/stops/301080", "https://mivb.openplanner.team/stops/3355"], ["https://data.delijn.be/stops/408844", "https://tec.openplanner.team/stops/LRmhage8"], ["https://data.delijn.be/stops/307683", "https://mivb.openplanner.team/stops/5917F"], ["https://data.delijn.be/stops/302836", "https://tec.openplanner.team/stops/Blanove2"], ["https://data.delijn.be/stops/304580", "https://mivb.openplanner.team/stops/0430448"], ["https://data.delijn.be/stops/301453", "https://tec.openplanner.team/stops/Bhalsro2"], ["http://irail.be/stations/NMBS/008814332", "https://data.delijn.be/stops/307607"], ["http://irail.be/stations/NMBS/008811429", "https://mivb.openplanner.team/stops/2115"], ["https://data.delijn.be/stops/301032", "https://tec.openplanner.team/stops/Bsgipmo2"], ["https://data.delijn.be/stops/300881", "https://mivb.openplanner.team/stops/5082"], ["http://irail.be/stations/NMBS/008869088", "https://tec.openplanner.team/stops/X615afa"], ["https://data.delijn.be/stops/302155", "https://tec.openplanner.team/stops/Bhoealt1"], ["http://irail.be/stations/NMBS/008892007", "https://data.delijn.be/stops/205923"], ["http://irail.be/stations/NMBS/008893062", "https://data.delijn.be/stops/208700"], ["https://data.delijn.be/stops/301001", "https://mivb.openplanner.team/stops/1567"], ["http://irail.be/stations/NMBS/008895745", "https://data.delijn.be/stops/206720"], ["http://irail.be/stations/NMBS/008833233", "https://data.delijn.be/stops/304302"], ["http://irail.be/stations/NMBS/008811726", "https://tec.openplanner.team/stops/Bwavgar4"], ["https://data.delijn.be/stops/301025", "https://tec.openplanner.team/stops/Bsgibla2"], ["https://data.delijn.be/stops/302450", "https://tec.openplanner.team/stops/Bjodrrg1"], ["https://data.delijn.be/stops/301019", "https://mivb.openplanner.team/stops/4165"], ["http://irail.be/stations/NMBS/008864451", "https://tec.openplanner.team/stops/X982cfa"], ["https://data.delijn.be/stops/208415", "https://tec.openplanner.team/stops/H4rs117a"], ["https://data.delijn.be/stops/307226", "https://tec.openplanner.team/stops/Bhalgar1"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/300349"], ["http://irail.be/stations/NMBS/008874716", "https://tec.openplanner.team/stops/N543aja"], ["https://data.delijn.be/stops/301752", "https://mivb.openplanner.team/stops/4273F"], ["https://mivb.openplanner.team/stops/4076", "https://tec.openplanner.team/stops/Buccdch1"], ["https://mivb.openplanner.team/stops/2050", "https://tec.openplanner.team/stops/Baudhde2"], ["http://irail.be/stations/NMBS/008811916", "https://mivb.openplanner.team/stops/0060120"], ["https://data.delijn.be/stops/300329", "https://tec.openplanner.team/stops/Balsnie2"], ["https://data.delijn.be/stops/304030", "https://tec.openplanner.team/stops/Bovejei1"], ["http://irail.be/stations/NMBS/008841327", "https://tec.openplanner.team/stops/LVGeg--1"], ["https://data.delijn.be/stops/300297", "https://mivb.openplanner.team/stops/9801"], ["https://data.delijn.be/stops/400474", "https://tec.openplanner.team/stops/LGLspor2"], ["https://data.delijn.be/stops/408700", "https://tec.openplanner.team/stops/LGLobor2"], ["http://irail.be/stations/NMBS/008821105", "https://data.delijn.be/stops/105521"], ["https://data.delijn.be/stops/410319", "https://tec.openplanner.team/stops/LPldoua3"], ["https://data.delijn.be/stops/306782", "https://tec.openplanner.team/stops/LLagert*"], ["https://data.delijn.be/stops/306898", "https://tec.openplanner.team/stops/Bgoegma2"], ["https://data.delijn.be/stops/300021", "https://mivb.openplanner.team/stops/9677"], ["https://data.delijn.be/stops/304107", "https://tec.openplanner.team/stops/Bovevri1"], ["https://data.delijn.be/stops/300750", "https://mivb.openplanner.team/stops/1256"], ["https://data.delijn.be/stops/218019", "https://tec.openplanner.team/stops/H5rx121a"], ["https://data.delijn.be/stops/404680", "https://tec.openplanner.team/stops/LWidepo2"], ["https://data.delijn.be/stops/410140", "https://tec.openplanner.team/stops/Lrctec-2"], ["http://irail.be/stations/NMBS/008861317", "https://tec.openplanner.team/stops/N522ahb"], ["https://data.delijn.be/stops/301752", "https://mivb.openplanner.team/stops/1142"], ["http://irail.be/stations/NMBS/008843174", "https://tec.openplanner.team/stops/Lougare3"], ["https://mivb.openplanner.team/stops/1810", "https://tec.openplanner.team/stops/Baudsju1"], ["https://data.delijn.be/stops/410152", "https://mivb.openplanner.team/stops/5045"], ["https://data.delijn.be/stops/307697", "https://tec.openplanner.team/stops/Brsgcfl2"], ["https://data.delijn.be/stops/300937", "https://mivb.openplanner.team/stops/4110"], ["https://data.delijn.be/stops/301026", "https://mivb.openplanner.team/stops/2467"], ["https://data.delijn.be/stops/303832", "https://mivb.openplanner.team/stops/0270514"], ["https://data.delijn.be/stops/307643", "https://mivb.openplanner.team/stops/1955"], ["https://mivb.openplanner.team/stops/1133", "https://tec.openplanner.team/stops/Bbxltrv2"], ["http://irail.be/stations/NMBS/008841731", "https://tec.openplanner.team/stops/LSLhall*"], ["https://data.delijn.be/stops/300793", "https://mivb.openplanner.team/stops/1256"], ["http://irail.be/stations/NMBS/008891702", "https://data.delijn.be/stops/510014"], ["https://data.delijn.be/stops/304453", "https://tec.openplanner.team/stops/Brsgfon1"], ["https://data.delijn.be/stops/300742", "https://mivb.openplanner.team/stops/8712"], ["https://data.delijn.be/stops/308902", "https://mivb.openplanner.team/stops/1722"], ["https://data.delijn.be/stops/304207", "https://tec.openplanner.team/stops/Brsrber1"], ["https://mivb.openplanner.team/stops/2148", "https://tec.openplanner.team/stops/Buccron1"], ["https://data.delijn.be/stops/403787", "https://tec.openplanner.team/stops/LWAbett2"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LMalune3"], ["http://irail.be/stations/NMBS/008811734", "https://tec.openplanner.team/stops/Bbwacol2"], ["http://irail.be/stations/NMBS/008864436", "https://tec.openplanner.team/stops/X923anb"], ["http://irail.be/stations/NMBS/008863461", "https://tec.openplanner.team/stops/N509bfa"], ["https://mivb.openplanner.team/stops/6956G", "https://tec.openplanner.team/stops/Buccptj1"], ["https://data.delijn.be/stops/400455", "https://tec.openplanner.team/stops/Llxcite2"], ["https://data.delijn.be/stops/307580", "https://tec.openplanner.team/stops/Bbghepi2"], ["https://data.delijn.be/stops/408806", "https://tec.openplanner.team/stops/LVIdepo2"], ["http://irail.be/stations/NMBS/008814472", "https://mivb.openplanner.team/stops/2080"], ["https://data.delijn.be/stops/300321", "https://tec.openplanner.team/stops/Bbeagae1"], ["https://data.delijn.be/stops/304929", "https://mivb.openplanner.team/stops/9729"], ["https://data.delijn.be/stops/405732", "https://tec.openplanner.team/stops/Lrclant2"], ["https://data.delijn.be/stops/300880", "https://mivb.openplanner.team/stops/7800455"], ["https://data.delijn.be/stops/405364", "https://tec.openplanner.team/stops/Bneelaa1"], ["https://data.delijn.be/stops/405453", "https://tec.openplanner.team/stops/LWHzave2"], ["http://irail.be/stations/NMBS/008882701", "https://tec.openplanner.team/stops/H2mg138d"], ["http://irail.be/stations/NMBS/008871837", "https://tec.openplanner.team/stops/Cldplac2"], ["https://mivb.openplanner.team/stops/5427", "https://tec.openplanner.team/stops/Baudhde1"], ["https://mivb.openplanner.team/stops/5026", "https://tec.openplanner.team/stops/Buccdch2"], ["http://irail.be/stations/NMBS/008879004", "https://tec.openplanner.team/stops/H1be102a"], ["http://irail.be/stations/NMBS/008895620", "https://data.delijn.be/stops/208572"], ["https://mivb.openplanner.team/stops/5407F", "https://tec.openplanner.team/stops/Bixlozo2"], ["http://irail.be/stations/NMBS/008728600", "https://tec.openplanner.team/stops/H4ho119b"], ["http://irail.be/stations/NMBS/008841665", "https://tec.openplanner.team/stops/Lmigare1"], ["https://data.delijn.be/stops/301677", "https://tec.openplanner.team/stops/Bpecsta1"], ["https://data.delijn.be/stops/300327", "https://tec.openplanner.team/stops/Balswwe1"], ["http://irail.be/stations/NMBS/008813003", "https://mivb.openplanner.team/stops/1144"], ["http://irail.be/stations/NMBS/008822004", "https://data.delijn.be/stops/105221"], ["https://data.delijn.be/stops/306050", "https://mivb.openplanner.team/stops/1900"], ["https://data.delijn.be/stops/300391", "https://tec.openplanner.team/stops/Bhalh312"], ["https://data.delijn.be/stops/306813", "https://mivb.openplanner.team/stops/1511"], ["https://data.delijn.be/stops/300752", "https://mivb.openplanner.team/stops/7650210"], ["https://data.delijn.be/stops/307534", "https://tec.openplanner.team/stops/H1mk112b"], ["https://data.delijn.be/stops/408587", "https://tec.openplanner.team/stops/LOreg--2"], ["http://irail.be/stations/NMBS/008874005", "https://tec.openplanner.team/stops/Cctsncb3"], ["https://data.delijn.be/stops/509735", "https://tec.openplanner.team/stops/H4do103a"], ["http://irail.be/stations/NMBS/008893708", "https://data.delijn.be/stops/203042"], ["http://irail.be/stations/NMBS/008864006", "https://tec.openplanner.team/stops/X390ana"], ["https://data.delijn.be/stops/300978", "https://mivb.openplanner.team/stops/6303"], ["http://irail.be/stations/NMBS/008822053", "https://data.delijn.be/stops/305873"], ["https://data.delijn.be/stops/300024", "https://mivb.openplanner.team/stops/9658"], ["https://data.delijn.be/stops/408881", "https://tec.openplanner.team/stops/LTEcamp2"], ["https://data.delijn.be/stops/301056", "https://mivb.openplanner.team/stops/5014"], ["https://data.delijn.be/stops/408883", "https://tec.openplanner.team/stops/LWRchem2"], ["http://irail.be/stations/NMBS/008895257", "https://data.delijn.be/stops/208690"], ["https://data.delijn.be/stops/300862", "https://mivb.openplanner.team/stops/7780157"], ["http://irail.be/stations/NMBS/008821089", "https://data.delijn.be/stops/103279"], ["https://data.delijn.be/stops/302849", "https://tec.openplanner.team/stops/LWHmath2"], ["http://irail.be/stations/NMBS/008841731", "https://data.delijn.be/stops/408625"], ["http://irail.be/stations/NMBS/008841202", "https://tec.openplanner.team/stops/Lmolagu1"], ["https://data.delijn.be/stops/300957", "https://mivb.openplanner.team/stops/3524"], ["http://irail.be/stations/NMBS/008841467", "https://tec.openplanner.team/stops/LFHjamo1"], ["http://irail.be/stations/NMBS/008865128", "https://tec.openplanner.team/stops/X725aed"], ["http://irail.be/stations/NMBS/008849072", "https://tec.openplanner.team/stops/X790amb"], ["https://data.delijn.be/stops/406564", "https://tec.openplanner.team/stops/LHThall4"], ["http://irail.be/stations/NMBS/008892734", "https://data.delijn.be/stops/508544"], ["https://data.delijn.be/stops/300962", "https://tec.openplanner.team/stops/Baudhde1"], ["https://mivb.openplanner.team/stops/0220233", "https://tec.openplanner.team/stops/Baudhan2"], ["http://irail.be/stations/NMBS/008896230", "https://data.delijn.be/stops/507709"], ["https://data.delijn.be/stops/304208", "https://tec.openplanner.team/stops/Brsrber2"], ["http://irail.be/stations/NMBS/008400280", "https://data.delijn.be/stops/505600"], ["https://data.delijn.be/stops/207789", "https://tec.openplanner.team/stops/H5rx150a"], ["https://data.delijn.be/stops/406318", "https://tec.openplanner.team/stops/LMawilh4"], ["http://irail.be/stations/NMBS/008863503", "https://tec.openplanner.team/stops/N232aza"], ["https://data.delijn.be/stops/300997", "https://mivb.openplanner.team/stops/3167"], ["http://irail.be/stations/NMBS/008819406", "https://data.delijn.be/stops/305550"], ["http://irail.be/stations/NMBS/008864352", "https://tec.openplanner.team/stops/X999aga"], ["https://data.delijn.be/stops/301145", "https://tec.openplanner.team/stops/Buccpes1"], ["http://irail.be/stations/NMBS/008821865", "https://data.delijn.be/stops/308538"], ["http://irail.be/stations/NMBS/008824240", "https://data.delijn.be/stops/105999"], ["http://irail.be/stations/NMBS/008832334", "https://data.delijn.be/stops/409263"], ["https://data.delijn.be/stops/400482", "https://tec.openplanner.team/stops/LRGchap1"], ["https://data.delijn.be/stops/300337", "https://tec.openplanner.team/stops/Balswin3"], ["https://data.delijn.be/stops/307971", "https://tec.openplanner.team/stops/Bwavrij1"], ["https://data.delijn.be/stops/307232", "https://mivb.openplanner.team/stops/4267"], ["https://data.delijn.be/stops/302810", "https://tec.openplanner.team/stops/Bkrabhu1"], ["http://irail.be/stations/NMBS/008873379", "https://tec.openplanner.team/stops/Ccstord2"], ["https://data.delijn.be/stops/408681", "https://tec.openplanner.team/stops/LOTsav-2"], ["https://mivb.openplanner.team/stops/9059", "https://tec.openplanner.team/stops/Bwbfckr1"], ["https://data.delijn.be/stops/302445", "https://tec.openplanner.team/stops/Bjodrrg2"], ["http://irail.be/stations/NMBS/008814431", "https://mivb.openplanner.team/stops/1110"], ["https://data.delijn.be/stops/400476", "https://tec.openplanner.team/stops/LSLdall1"], ["https://data.delijn.be/stops/300994", "https://mivb.openplanner.team/stops/5712F"], ["https://data.delijn.be/stops/300934", "https://mivb.openplanner.team/stops/3449"], ["https://data.delijn.be/stops/301039", "https://mivb.openplanner.team/stops/3257F"], ["https://data.delijn.be/stops/205982", "https://tec.openplanner.team/stops/H5rx103a"], ["https://data.delijn.be/stops/307795", "https://mivb.openplanner.team/stops/3214"], ["http://irail.be/stations/NMBS/008822269", "https://data.delijn.be/stops/305600"], ["http://irail.be/stations/NMBS/008881463", "https://tec.openplanner.team/stops/H2sb239c"], ["http://irail.be/stations/NMBS/008841442", "https://tec.openplanner.team/stops/LRepous2"], ["http://irail.be/stations/NMBS/008812021", "https://mivb.openplanner.team/stops/2545"], ["http://irail.be/stations/NMBS/008892254", "https://data.delijn.be/stops/502803"], ["https://data.delijn.be/stops/305263", "https://mivb.openplanner.team/stops/9787"], ["https://mivb.openplanner.team/stops/3517", "https://tec.openplanner.team/stops/Bixleix2"], ["https://data.delijn.be/stops/407686", "https://tec.openplanner.team/stops/LBPboir1"], ["https://data.delijn.be/stops/410154", "https://mivb.openplanner.team/stops/9311"], ["https://data.delijn.be/stops/408894", "https://tec.openplanner.team/stops/LBegare2"], ["https://data.delijn.be/stops/307637", "https://mivb.openplanner.team/stops/1937"], ["https://data.delijn.be/stops/408911", "https://tec.openplanner.team/stops/LFMkrin1"], ["https://mivb.openplanner.team/stops/0340341", "https://tec.openplanner.team/stops/Bsgipha3"], ["https://mivb.openplanner.team/stops/1802", "https://tec.openplanner.team/stops/Bbxlner1"], ["https://data.delijn.be/stops/304439", "https://tec.openplanner.team/stops/Balsnie1"], ["https://data.delijn.be/stops/408972", "https://tec.openplanner.team/stops/LWAlong3"], ["http://irail.be/stations/NMBS/008811262", "https://data.delijn.be/stops/302713"], ["https://data.delijn.be/stops/300730", "https://tec.openplanner.team/stops/Bbealou1"], ["https://data.delijn.be/stops/403788", "https://tec.openplanner.team/stops/LWAmouh1"], ["http://irail.be/stations/NMBS/008811270", "https://data.delijn.be/stops/302074"], ["http://irail.be/stations/NMBS/008811221", "https://data.delijn.be/stops/303892"], ["https://data.delijn.be/stops/304216", "https://mivb.openplanner.team/stops/0631"], ["https://data.delijn.be/stops/304463", "https://tec.openplanner.team/stops/Brsgtou1"], ["https://data.delijn.be/stops/301399", "https://mivb.openplanner.team/stops/5725"], ["http://irail.be/stations/NMBS/008844008", "https://tec.openplanner.team/stops/Lvegc-1*"], ["http://irail.be/stations/NMBS/008893518", "https://data.delijn.be/stops/207309"], ["https://data.delijn.be/stops/408851", "https://tec.openplanner.team/stops/LVu40--2"], ["http://irail.be/stations/NMBS/008814431", "https://data.delijn.be/stops/303249"], ["http://irail.be/stations/NMBS/008881562", "https://tec.openplanner.team/stops/H1ge116a"], ["http://irail.be/stations/NMBS/008821311", "https://data.delijn.be/stops/106905"], ["http://irail.be/stations/NMBS/008886066", "https://tec.openplanner.team/stops/H1hh116a"], ["http://irail.be/stations/NMBS/008871183", "https://tec.openplanner.team/stops/Chhverr1"], ["http://irail.be/stations/NMBS/008874005", "https://tec.openplanner.team/stops/Ccuhsti2"], ["https://data.delijn.be/stops/301089", "https://tec.openplanner.team/stops/Bkrawil2"], ["https://data.delijn.be/stops/307553", "https://tec.openplanner.team/stops/Blemwob2"], ["https://data.delijn.be/stops/208183", "https://tec.openplanner.team/stops/H5rx132a"], ["http://irail.be/stations/NMBS/008821337", "https://data.delijn.be/stops/107215"], ["https://data.delijn.be/stops/300811", "https://mivb.openplanner.team/stops/6171"], ["https://data.delijn.be/stops/300981", "https://mivb.openplanner.team/stops/2918"], ["https://data.delijn.be/stops/307913", "https://tec.openplanner.team/stops/Bhalgar1"], ["http://irail.be/stations/NMBS/008893179", "https://data.delijn.be/stops/201887"], ["https://data.delijn.be/stops/308731", "https://tec.openplanner.team/stops/Bgoemho2"], ["https://data.delijn.be/stops/305350", "https://tec.openplanner.team/stops/Bbgewal2"], ["https://data.delijn.be/stops/405459", "https://tec.openplanner.team/stops/LWHkape1"], ["https://data.delijn.be/stops/302822", "https://tec.openplanner.team/stops/Bgnvfai1"], ["http://irail.be/stations/NMBS/008400424", "https://data.delijn.be/stops/406370"], ["https://mivb.openplanner.team/stops/1863", "https://tec.openplanner.team/stops/Baudvdr1"], ["https://data.delijn.be/stops/400652", "https://tec.openplanner.team/stops/LHgroso1"], ["https://data.delijn.be/stops/219015", "https://tec.openplanner.team/stops/H5rx125b"], ["http://irail.be/stations/NMBS/008822343", "https://data.delijn.be/stops/105074"], ["https://data.delijn.be/stops/300880", "https://mivb.openplanner.team/stops/4957"], ["https://data.delijn.be/stops/301686", "https://tec.openplanner.team/stops/Bnetrec2"], ["https://data.delijn.be/stops/301048", "https://mivb.openplanner.team/stops/1201"], ["http://irail.be/stations/NMBS/008882206", "https://tec.openplanner.team/stops/H2ll179d"], ["https://data.delijn.be/stops/300370", "https://tec.openplanner.team/stops/Bwaubru1"], ["https://data.delijn.be/stops/404067", "https://tec.openplanner.team/stops/LBpbruy2"], ["https://data.delijn.be/stops/305150", "https://tec.openplanner.team/stops/Btiegma1"], ["https://data.delijn.be/stops/300748", "https://mivb.openplanner.team/stops/5296B"], ["https://data.delijn.be/stops/304451", "https://tec.openplanner.team/stops/Brsgera2"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/N574adb"], ["https://data.delijn.be/stops/302437", "https://tec.openplanner.team/stops/Bjodcsb2"], ["https://data.delijn.be/stops/301408", "https://tec.openplanner.team/stops/H1en102a"], ["https://mivb.openplanner.team/stops/1714", "https://tec.openplanner.team/stops/Bettars1"], ["https://data.delijn.be/stops/307252", "https://mivb.openplanner.team/stops/6068"], ["http://irail.be/stations/NMBS/008871308", "https://tec.openplanner.team/stops/H2lu100a"], ["https://data.delijn.be/stops/301074", "https://mivb.openplanner.team/stops/1568"], ["http://irail.be/stations/NMBS/008871217", "https://tec.openplanner.team/stops/Croheig2"], ["https://data.delijn.be/stops/208406", "https://tec.openplanner.team/stops/H5rx143b"], ["http://irail.be/stations/NMBS/008895570", "https://data.delijn.be/stops/207668"], ["http://irail.be/stations/NMBS/008841202", "https://tec.openplanner.team/stops/Lghsimo3"], ["https://data.delijn.be/stops/300836", "https://mivb.openplanner.team/stops/5701"], ["https://data.delijn.be/stops/301943", "https://mivb.openplanner.team/stops/4116"], ["https://data.delijn.be/stops/305519", "https://mivb.openplanner.team/stops/7501"], ["https://data.delijn.be/stops/300956", "https://mivb.openplanner.team/stops/1720B"], ["https://data.delijn.be/stops/300897", "https://mivb.openplanner.team/stops/3199"], ["https://data.delijn.be/stops/300792", "https://mivb.openplanner.team/stops/3281"], ["http://irail.be/stations/NMBS/008871415", "https://tec.openplanner.team/stops/Cptrebe1"], ["http://irail.be/stations/NMBS/008200134", "https://tec.openplanner.team/stops/LoUzent1"], ["https://data.delijn.be/stops/406132", "https://tec.openplanner.team/stops/LVAstjo1"], ["http://irail.be/stations/NMBS/008811254", "https://data.delijn.be/stops/302778"], ["https://data.delijn.be/stops/300924", "https://mivb.openplanner.team/stops/1538B"], ["http://irail.be/stations/NMBS/008833050", "https://data.delijn.be/stops/306935"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bboupde2"], ["https://data.delijn.be/stops/306116", "https://mivb.openplanner.team/stops/1483"], ["http://irail.be/stations/NMBS/008872306", "https://tec.openplanner.team/stops/Cjuruni2"], ["https://data.delijn.be/stops/408907", "https://tec.openplanner.team/stops/LFPkape1"], ["https://data.delijn.be/stops/305913", "https://mivb.openplanner.team/stops/4152"], ["https://data.delijn.be/stops/307649", "https://tec.openplanner.team/stops/Brsgrol2"], ["http://irail.be/stations/NMBS/008842002", "https://tec.openplanner.team/stops/Lagcile2"], ["http://irail.be/stations/NMBS/008822277", "https://data.delijn.be/stops/305614"], ["https://mivb.openplanner.team/stops/6166", "https://tec.openplanner.team/stops/Bsgicfo1"], ["http://irail.be/stations/NMBS/008400526", "https://data.delijn.be/stops/104344"], ["http://irail.be/stations/NMBS/008841327", "https://tec.openplanner.team/stops/LFHjamo1"], ["http://irail.be/stations/NMBS/008728686", "https://tec.openplanner.team/stops/H4lg103b"], ["https://data.delijn.be/stops/304721", "https://mivb.openplanner.team/stops/7246"], ["http://irail.be/stations/NMBS/008811445", "https://data.delijn.be/stops/302219"], ["https://mivb.openplanner.team/stops/1271B", "https://tec.openplanner.team/stops/Bbxlfro1"], ["http://irail.be/stations/NMBS/008871811", "https://tec.openplanner.team/stops/Cthathe1"], ["https://data.delijn.be/stops/300548", "https://tec.openplanner.team/stops/Bhmmbog1"], ["https://data.delijn.be/stops/300833", "https://mivb.openplanner.team/stops/8701"], ["https://data.delijn.be/stops/300743", "https://mivb.openplanner.team/stops/3805"], ["https://data.delijn.be/stops/307086", "https://tec.openplanner.team/stops/Btieast1"], ["http://irail.be/stations/NMBS/008728686", "https://tec.openplanner.team/stops/H4rx142a"], ["http://irail.be/stations/NMBS/008893534", "https://data.delijn.be/stops/205979"], ["https://data.delijn.be/stops/300854", "https://mivb.openplanner.team/stops/1083"], ["http://irail.be/stations/NMBS/008842655", "https://tec.openplanner.team/stops/LTIcime1"], ["http://irail.be/stations/NMBS/008843208", "https://tec.openplanner.team/stops/Lfhmalv2"], ["http://irail.be/stations/NMBS/008895448", "https://data.delijn.be/stops/209688"], ["https://data.delijn.be/stops/301411", "https://tec.openplanner.team/stops/H1en102a"], ["https://data.delijn.be/stops/408992", "https://tec.openplanner.team/stops/LWAlieg2"], ["http://irail.be/stations/NMBS/008400424", "https://tec.openplanner.team/stops/LMalamb4"], ["http://irail.be/stations/NMBS/008200940", "https://tec.openplanner.team/stops/X681aga"], ["http://irail.be/stations/NMBS/008872553", "https://tec.openplanner.team/stops/Bmarmru1"], ["https://data.delijn.be/stops/209190", "https://tec.openplanner.team/stops/H5rx127a"], ["https://data.delijn.be/stops/304535", "https://mivb.openplanner.team/stops/1816"], ["http://irail.be/stations/NMBS/008891033", "https://data.delijn.be/stops/507151"], ["http://irail.be/stations/NMBS/008822814", "https://data.delijn.be/stops/106754"], ["https://data.delijn.be/stops/406767", "https://tec.openplanner.team/stops/LBpvue-1"], ["http://irail.be/stations/NMBS/008863867", "https://tec.openplanner.team/stops/N308aea"], ["https://mivb.openplanner.team/stops/1804", "https://tec.openplanner.team/stops/Bettlha1"], ["http://irail.be/stations/NMBS/008881570", "https://tec.openplanner.team/stops/H1fr124b"], ["https://data.delijn.be/stops/300776", "https://mivb.openplanner.team/stops/1208"], ["http://irail.be/stations/NMBS/008200510", "https://tec.openplanner.team/stops/X685ama"], ["https://data.delijn.be/stops/301003", "https://mivb.openplanner.team/stops/7484"], ["https://data.delijn.be/stops/306123", "https://tec.openplanner.team/stops/Bhalvla1"], ["https://mivb.openplanner.team/stops/5605", "https://tec.openplanner.team/stops/Bkrabhu2"], ["https://data.delijn.be/stops/307696", "https://tec.openplanner.team/stops/Brsgtou1"], ["https://data.delijn.be/stops/300944", "https://mivb.openplanner.team/stops/1727"], ["http://irail.be/stations/NMBS/008895067", "https://data.delijn.be/stops/209951"], ["http://irail.be/stations/NMBS/008831088", "https://data.delijn.be/stops/405976"], ["https://data.delijn.be/stops/305164", "https://tec.openplanner.team/stops/Btiegoo2"], ["https://data.delijn.be/stops/408911", "https://tec.openplanner.team/stops/LVukabi2"], ["http://irail.be/stations/NMBS/008845146", "https://tec.openplanner.team/stops/X750alb"], ["https://data.delijn.be/stops/400472", "https://tec.openplanner.team/stops/LGLgeer1"], ["https://data.delijn.be/stops/400457", "https://tec.openplanner.team/stops/LEBeg--2"], ["https://data.delijn.be/stops/408867", "https://tec.openplanner.team/stops/LFCkett2"], ["https://data.delijn.be/stops/208023", "https://tec.openplanner.team/stops/H1og136a"], ["https://data.delijn.be/stops/300923", "https://mivb.openplanner.team/stops/3210B"], ["http://irail.be/stations/NMBS/008833274", "https://data.delijn.be/stops/307371"], ["https://data.delijn.be/stops/301016", "https://mivb.openplanner.team/stops/1236F"], ["https://data.delijn.be/stops/306969", "https://mivb.openplanner.team/stops/2824"], ["https://data.delijn.be/stops/302219", "https://tec.openplanner.team/stops/Bhoeboo1"], ["http://irail.be/stations/NMBS/008814365", "https://data.delijn.be/stops/304544"], ["https://data.delijn.be/stops/408906", "https://tec.openplanner.team/stops/LFPkerk2"], ["https://data.delijn.be/stops/308818", "https://mivb.openplanner.team/stops/6357"], ["https://data.delijn.be/stops/302450", "https://tec.openplanner.team/stops/Bzlufbo1"], ["https://mivb.openplanner.team/stops/5525", "https://tec.openplanner.team/stops/Bkrawil1"], ["http://irail.be/stations/NMBS/008814357", "https://mivb.openplanner.team/stops/9658"], ["http://irail.be/stations/NMBS/008895737", "https://data.delijn.be/stops/207658"], ["https://data.delijn.be/stops/301046", "https://mivb.openplanner.team/stops/0460150"], ["http://irail.be/stations/NMBS/008895232", "https://data.delijn.be/stops/208812"], ["http://irail.be/stations/NMBS/008884541", "https://tec.openplanner.team/stops/H1qu105a"], ["https://data.delijn.be/stops/509452", "https://tec.openplanner.team/stops/H4mo133b"], ["https://data.delijn.be/stops/407772", "https://tec.openplanner.team/stops/LRmrode2"], ["https://data.delijn.be/stops/307714", "https://tec.openplanner.team/stops/Brsgece2"], ["http://irail.be/stations/NMBS/008891264", "https://data.delijn.be/stops/502663"], ["http://irail.be/stations/NMBS/008842754", "https://tec.openplanner.team/stops/LAYgare1"], ["https://data.delijn.be/stops/407205", "https://tec.openplanner.team/stops/LHTmonu2"], ["http://irail.be/stations/NMBS/008871175", "https://tec.openplanner.team/stops/Cjxplac1"], ["https://mivb.openplanner.team/stops/5032B", "https://tec.openplanner.team/stops/Buccrac1"], ["http://irail.be/stations/NMBS/008892692", "https://data.delijn.be/stops/208210"], ["https://data.delijn.be/stops/504135", "https://tec.openplanner.team/stops/H4co162a"], ["https://data.delijn.be/stops/407201", "https://tec.openplanner.team/stops/LHe3com1"], ["http://irail.be/stations/NMBS/008832409", "https://data.delijn.be/stops/406796"], ["https://data.delijn.be/stops/301741", "https://mivb.openplanner.team/stops/9634"], ["http://irail.be/stations/NMBS/008893815", "https://data.delijn.be/stops/203037"], ["https://data.delijn.be/stops/302409", "https://mivb.openplanner.team/stops/8652"], ["https://data.delijn.be/stops/303577", "https://mivb.openplanner.team/stops/9729"], ["https://data.delijn.be/stops/408820", "https://tec.openplanner.team/stops/LMgbatt2"], ["http://irail.be/stations/NMBS/008842663", "https://tec.openplanner.team/stops/LFNhame1"], ["http://irail.be/stations/NMBS/008869054", "https://tec.openplanner.team/stops/X626ala"], ["http://irail.be/stations/NMBS/008864956", "https://tec.openplanner.team/stops/N564aab"], ["https://data.delijn.be/stops/301050", "https://mivb.openplanner.team/stops/7770258"], ["http://irail.be/stations/NMBS/008822210", "https://data.delijn.be/stops/101423"], ["https://data.delijn.be/stops/303833", "https://mivb.openplanner.team/stops/3320B"], ["https://data.delijn.be/stops/407215", "https://tec.openplanner.team/stops/LHStrez1"], ["http://irail.be/stations/NMBS/008812070", "https://data.delijn.be/stops/300213"], ["http://irail.be/stations/NMBS/008843323", "https://tec.openplanner.team/stops/LNHbarr1"], ["http://irail.be/stations/NMBS/008885753", "https://tec.openplanner.team/stops/H4hx118b"], ["http://irail.be/stations/NMBS/008883022", "https://tec.openplanner.team/stops/Btubren2"], ["http://irail.be/stations/NMBS/008822111", "https://data.delijn.be/stops/205572"], ["https://data.delijn.be/stops/302415", "https://tec.openplanner.team/stops/Bjodgar1"], ["https://mivb.openplanner.team/stops/1803B", "https://tec.openplanner.team/stops/Bettgle2"], ["http://irail.be/stations/NMBS/008841319", "https://tec.openplanner.team/stops/LBIaepo4"], ["http://irail.be/stations/NMBS/008822814", "https://data.delijn.be/stops/109529"], ["https://data.delijn.be/stops/405401", "https://tec.openplanner.team/stops/Brach122"], ["http://irail.be/stations/NMBS/008728654", "https://tec.openplanner.team/stops/H4mo155a"], ["http://irail.be/stations/NMBS/008893583", "https://data.delijn.be/stops/206589"], ["http://irail.be/stations/NMBS/008889011", "https://tec.openplanner.team/stops/H4mo170b"], ["http://irail.be/stations/NMBS/008882107", "https://tec.openplanner.team/stops/H2ll198a"], ["http://irail.be/stations/NMBS/008869047", "https://tec.openplanner.team/stops/X615aca"], ["https://mivb.openplanner.team/stops/3006", "https://tec.openplanner.team/stops/Bsgipha1"], ["http://irail.be/stations/NMBS/008872306", "https://tec.openplanner.team/stops/Cchalou2"], ["https://data.delijn.be/stops/405735", "https://tec.openplanner.team/stops/LrcarsT1"], ["https://data.delijn.be/stops/304545", "https://mivb.openplanner.team/stops/9682"], ["https://data.delijn.be/stops/509234", "https://tec.openplanner.team/stops/H4co133b"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N568adb"], ["https://data.delijn.be/stops/409000", "https://tec.openplanner.team/stops/LWArege1"], ["https://mivb.openplanner.team/stops/3122", "https://tec.openplanner.team/stops/Bixlfla2"], ["http://irail.be/stations/NMBS/008832227", "https://data.delijn.be/stops/403850"], ["https://data.delijn.be/stops/300579", "https://mivb.openplanner.team/stops/6202"], ["https://data.delijn.be/stops/304071", "https://tec.openplanner.team/stops/Bgnvbsi1"], ["https://data.delijn.be/stops/300821", "https://mivb.openplanner.team/stops/7820253"], ["https://data.delijn.be/stops/304544", "https://mivb.openplanner.team/stops/9685"], ["https://data.delijn.be/stops/309669", "https://mivb.openplanner.team/stops/9651"], ["http://irail.be/stations/NMBS/008891314", "https://data.delijn.be/stops/502806"], ["http://irail.be/stations/NMBS/008842648", "https://tec.openplanner.team/stops/LTIdumo2"], ["http://irail.be/stations/NMBS/008811635", "https://tec.openplanner.team/stops/Blmldmi1"], ["https://data.delijn.be/stops/208407", "https://tec.openplanner.team/stops/H5rx138a"], ["http://irail.be/stations/NMBS/008895067", "https://data.delijn.be/stops/207750"], ["https://data.delijn.be/stops/308104", "https://tec.openplanner.team/stops/Bsrgm102"], ["https://data.delijn.be/stops/300763", "https://mivb.openplanner.team/stops/1260"], ["https://mivb.openplanner.team/stops/2138B", "https://tec.openplanner.team/stops/Buccvoi3"], ["http://irail.be/stations/NMBS/008841004", "https://tec.openplanner.team/stops/Llgoise2"], ["https://data.delijn.be/stops/401415", "https://mivb.openplanner.team/stops/4306"], ["https://data.delijn.be/stops/300887", "https://mivb.openplanner.team/stops/52"], ["https://data.delijn.be/stops/207795", "https://tec.openplanner.team/stops/H4ss158b"], ["https://data.delijn.be/stops/410138", "https://tec.openplanner.team/stops/Lrc594-1"], ["https://data.delijn.be/stops/300357", "https://tec.openplanner.team/stops/Bbrlpar2"], ["https://data.delijn.be/stops/301802", "https://mivb.openplanner.team/stops/5776"], ["https://data.delijn.be/stops/308823", "https://tec.openplanner.team/stops/Bwaak101"], ["https://data.delijn.be/stops/333234", "https://mivb.openplanner.team/stops/4069"], ["https://data.delijn.be/stops/302163", "https://tec.openplanner.team/stops/Bzluvil1"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LMaslav3"], ["http://irail.be/stations/NMBS/008892320", "https://data.delijn.be/stops/504511"], ["http://irail.be/stations/NMBS/008010316", "https://data.delijn.be/stops/404945"], ["https://data.delijn.be/stops/300804", "https://mivb.openplanner.team/stops/2226"], ["https://data.delijn.be/stops/505992", "https://tec.openplanner.team/stops/H4ar104a"], ["https://data.delijn.be/stops/505831", "https://tec.openplanner.team/stops/H4po125a"], ["https://data.delijn.be/stops/402551", "https://tec.openplanner.team/stops/LCAeg--1"], ["https://mivb.openplanner.team/stops/2118", "https://tec.openplanner.team/stops/Buccpor2"], ["https://data.delijn.be/stops/301039", "https://mivb.openplanner.team/stops/4014"], ["http://irail.be/stations/NMBS/008884640", "https://tec.openplanner.team/stops/H5gr138a"], ["http://irail.be/stations/NMBS/008813003", "https://mivb.openplanner.team/stops/6447"], ["https://data.delijn.be/stops/408830", "https://tec.openplanner.team/stops/LMgbatt2"], ["http://irail.be/stations/NMBS/008843331", "https://tec.openplanner.team/stops/LOmpont1"], ["https://data.delijn.be/stops/305174", "https://tec.openplanner.team/stops/Bwavgar8"], ["http://irail.be/stations/NMBS/008891264", "https://data.delijn.be/stops/502549"], ["https://mivb.openplanner.team/stops/5532", "https://tec.openplanner.team/stops/Bkrawil2"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/CMsud2"], ["http://irail.be/stations/NMBS/008894714", "https://data.delijn.be/stops/205704"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/108727"], ["https://data.delijn.be/stops/306064", "https://tec.openplanner.team/stops/Brsggea2"], ["https://data.delijn.be/stops/405716", "https://tec.openplanner.team/stops/Llgpire2"], ["https://data.delijn.be/stops/301010", "https://mivb.openplanner.team/stops/4005F"], ["https://data.delijn.be/stops/307795", "https://mivb.openplanner.team/stops/3132"], ["http://irail.be/stations/NMBS/008871688", "https://tec.openplanner.team/stops/H1fv100a"], ["https://data.delijn.be/stops/301067", "https://mivb.openplanner.team/stops/0370138"], ["https://data.delijn.be/stops/303994", "https://tec.openplanner.team/stops/Bhevwzw1"], ["http://irail.be/stations/NMBS/008865565", "https://tec.openplanner.team/stops/X850ajb"], ["http://irail.be/stations/NMBS/008863362", "https://tec.openplanner.team/stops/N538aka"], ["https://data.delijn.be/stops/401650", "https://tec.openplanner.team/stops/Brach121"], ["http://irail.be/stations/NMBS/008821667", "https://data.delijn.be/stops/107016"], ["https://data.delijn.be/stops/300771", "https://mivb.openplanner.team/stops/7670208"], ["https://data.delijn.be/stops/300905", "https://mivb.openplanner.team/stops/6408"], ["https://data.delijn.be/stops/301003", "https://mivb.openplanner.team/stops/3410"], ["https://data.delijn.be/stops/301102", "https://mivb.openplanner.team/stops/1853"], ["https://data.delijn.be/stops/303650", "https://mivb.openplanner.team/stops/3219"], ["https://data.delijn.be/stops/301027", "https://mivb.openplanner.team/stops/0650165"], ["http://irail.be/stations/NMBS/008883006", "https://tec.openplanner.team/stops/H3br108a"], ["https://data.delijn.be/stops/307000", "https://mivb.openplanner.team/stops/9658"], ["https://data.delijn.be/stops/301944", "https://mivb.openplanner.team/stops/4110"], ["https://data.delijn.be/stops/301298", "https://mivb.openplanner.team/stops/7640111"], ["http://irail.be/stations/NMBS/008832235", "https://data.delijn.be/stops/410008"], ["http://irail.be/stations/NMBS/008811429", "https://mivb.openplanner.team/stops/4299"], ["https://data.delijn.be/stops/504232", "https://tec.openplanner.team/stops/H4co148a"], ["https://data.delijn.be/stops/300995", "https://mivb.openplanner.team/stops/3216"], ["https://data.delijn.be/stops/302876", "https://mivb.openplanner.team/stops/2759"], ["https://data.delijn.be/stops/303586", "https://mivb.openplanner.team/stops/9726"], ["http://irail.be/stations/NMBS/008871183", "https://tec.openplanner.team/stops/Chhclde1"], ["http://irail.be/stations/NMBS/008833001", "https://data.delijn.be/stops/303132"], ["https://data.delijn.be/stops/300325", "https://tec.openplanner.team/stops/Balsnay1"], ["https://data.delijn.be/stops/208183", "https://tec.openplanner.team/stops/H5rx121a"], ["https://mivb.openplanner.team/stops/2708G", "https://tec.openplanner.team/stops/Buccdst1"], ["https://data.delijn.be/stops/307970", "https://tec.openplanner.team/stops/Bwavrij2"], ["https://data.delijn.be/stops/407233", "https://tec.openplanner.team/stops/LORherl1"], ["https://data.delijn.be/stops/307835", "https://mivb.openplanner.team/stops/2027"], ["https://data.delijn.be/stops/306001", "https://mivb.openplanner.team/stops/1810"], ["http://irail.be/stations/NMBS/008822814", "https://data.delijn.be/stops/101060"], ["https://data.delijn.be/stops/301113", "https://tec.openplanner.team/stops/Buccbou1"], ["http://irail.be/stations/NMBS/008865128", "https://tec.openplanner.team/stops/X725bea"], ["https://data.delijn.be/stops/300974", "https://mivb.openplanner.team/stops/6468"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N219aea"], ["https://data.delijn.be/stops/306048", "https://mivb.openplanner.team/stops/1646F"], ["http://irail.be/stations/NMBS/008833209", "https://data.delijn.be/stops/108009"], ["http://irail.be/stations/NMBS/008891157", "https://data.delijn.be/stops/200890"], ["http://irail.be/stations/NMBS/008812237", "https://data.delijn.be/stops/301303"], ["http://irail.be/stations/NMBS/008872579", "https://tec.openplanner.team/stops/Bvlvpco2"], ["http://irail.be/stations/NMBS/008843240", "https://tec.openplanner.team/stops/LEN42--1"], ["https://data.delijn.be/stops/405744", "https://tec.openplanner.team/stops/Llgpire1"], ["https://data.delijn.be/stops/400479", "https://tec.openplanner.team/stops/LBPmais2"], ["http://irail.be/stations/NMBS/008833209", "https://data.delijn.be/stops/300070"], ["https://data.delijn.be/stops/407214", "https://tec.openplanner.team/stops/LHStrez2"], ["http://irail.be/stations/NMBS/008861168", "https://tec.openplanner.team/stops/N534aga"], ["https://data.delijn.be/stops/300979", "https://mivb.openplanner.team/stops/5711F"], ["https://data.delijn.be/stops/405731", "https://tec.openplanner.team/stops/Lrctec-1"], ["http://irail.be/stations/NMBS/008812260", "https://data.delijn.be/stops/306706"], ["https://data.delijn.be/stops/302133", "https://tec.openplanner.team/stops/Bptecal2"], ["https://data.delijn.be/stops/305341", "https://tec.openplanner.team/stops/Bbgever1"], ["https://data.delijn.be/stops/301032", "https://mivb.openplanner.team/stops/6109"], ["https://data.delijn.be/stops/408897", "https://tec.openplanner.team/stops/LFPkast2"], ["https://data.delijn.be/stops/302903", "https://tec.openplanner.team/stops/Bhevl3l2"], ["http://irail.be/stations/NMBS/008883212", "https://tec.openplanner.team/stops/Becepco1"], ["http://irail.be/stations/NMBS/008841202", "https://tec.openplanner.team/stops/Lloross2"], ["https://data.delijn.be/stops/301014", "https://mivb.openplanner.team/stops/4062"], ["https://data.delijn.be/stops/209838", "https://tec.openplanner.team/stops/H5rx100a"], ["https://data.delijn.be/stops/408892", "https://tec.openplanner.team/stops/LFMvoge2"], ["https://data.delijn.be/stops/401412", "https://mivb.openplanner.team/stops/5205"], ["https://data.delijn.be/stops/307964", "https://tec.openplanner.team/stops/Bwavnep1"], ["https://data.delijn.be/stops/408828", "https://tec.openplanner.team/stops/LVItroi*"], ["https://data.delijn.be/stops/302413", "https://tec.openplanner.team/stops/Bjodcar2"], ["https://data.delijn.be/stops/300745", "https://mivb.openplanner.team/stops/3760"], ["http://irail.be/stations/NMBS/008861440", "https://tec.openplanner.team/stops/N521alb"], ["https://data.delijn.be/stops/405715", "https://tec.openplanner.team/stops/Llgangl2"], ["http://irail.be/stations/NMBS/008824224", "https://data.delijn.be/stops/101087"], ["https://data.delijn.be/stops/307142", "https://mivb.openplanner.team/stops/2540"], ["https://data.delijn.be/stops/301131", "https://tec.openplanner.team/stops/Buccgob1"], ["https://data.delijn.be/stops/305238", "https://tec.openplanner.team/stops/Bspkdon2"], ["https://data.delijn.be/stops/305494", "https://mivb.openplanner.team/stops/1528"], ["https://data.delijn.be/stops/304552", "https://mivb.openplanner.team/stops/9655"], ["http://irail.be/stations/NMBS/008893120", "https://data.delijn.be/stops/201138"], ["https://data.delijn.be/stops/401413", "https://mivb.openplanner.team/stops/5205"], ["https://data.delijn.be/stops/408844", "https://tec.openplanner.team/stops/LRmsmvo1"], ["http://irail.be/stations/NMBS/008861127", "https://tec.openplanner.team/stops/N501dab"], ["https://data.delijn.be/stops/405734", "https://tec.openplanner.team/stops/Lrclant3"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N202aec"], ["http://irail.be/stations/NMBS/008891405", "https://data.delijn.be/stops/501021"], ["http://irail.be/stations/NMBS/008842630", "https://tec.openplanner.team/stops/LTIgare2"], ["https://data.delijn.be/stops/301019", "https://mivb.openplanner.team/stops/4010"], ["https://data.delijn.be/stops/301678", "https://tec.openplanner.team/stops/Bnetrec2"], ["https://data.delijn.be/stops/300829", "https://mivb.openplanner.team/stops/2875"], ["http://irail.be/stations/NMBS/008874724", "https://tec.openplanner.team/stops/N534awc"], ["https://data.delijn.be/stops/304698", "https://mivb.openplanner.team/stops/5727F"], ["https://data.delijn.be/stops/301008", "https://mivb.openplanner.team/stops/4112"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bsmgmar2"], ["http://irail.be/stations/NMBS/008811205", "https://data.delijn.be/stops/307852"], ["http://irail.be/stations/NMBS/008831781", "https://data.delijn.be/stops/403426"], ["https://mivb.openplanner.team/stops/1870", "https://tec.openplanner.team/stops/Bettcha3"], ["http://irail.be/stations/NMBS/008844404", "https://tec.openplanner.team/stops/LSPvigi2"], ["https://data.delijn.be/stops/304641", "https://mivb.openplanner.team/stops/1103"], ["https://data.delijn.be/stops/304061", "https://tec.openplanner.team/stops/Bovecha1"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N570aab"], ["http://irail.be/stations/NMBS/008814373", "https://data.delijn.be/stops/303120"], ["http://irail.be/stations/NMBS/008863362", "https://tec.openplanner.team/stops/N538axa"], ["https://data.delijn.be/stops/300927", "https://mivb.openplanner.team/stops/3898"], ["https://data.delijn.be/stops/302201", "https://tec.openplanner.team/stops/Bhoealt1"], ["https://data.delijn.be/stops/304714", "https://tec.openplanner.team/stops/Blkbbeu2"], ["http://irail.be/stations/NMBS/008893708", "https://data.delijn.be/stops/202730"], ["http://irail.be/stations/NMBS/008866175", "https://tec.openplanner.team/stops/X658aaa"], ["http://irail.be/stations/NMBS/008841731", "https://tec.openplanner.team/stops/LPAeg--1"], ["http://irail.be/stations/NMBS/008832243", "https://data.delijn.be/stops/401441"], ["http://irail.be/stations/NMBS/008833159", "https://data.delijn.be/stops/303995"], ["http://irail.be/stations/NMBS/008821147", "https://data.delijn.be/stops/105125"], ["http://irail.be/stations/NMBS/008895463", "https://data.delijn.be/stops/207484"], ["http://irail.be/stations/NMBS/007015440", "https://data.delijn.be/stops/504131"], ["https://data.delijn.be/stops/307157", "https://tec.openplanner.team/stops/Bhalwat2"], ["https://data.delijn.be/stops/305501", "https://mivb.openplanner.team/stops/1528"], ["http://irail.be/stations/NMBS/008863818", "https://tec.openplanner.team/stops/N232ana"], ["https://data.delijn.be/stops/307677", "https://tec.openplanner.team/stops/Bstecou2"], ["https://data.delijn.be/stops/308855", "https://mivb.openplanner.team/stops/5402"], ["http://irail.be/stations/NMBS/008885530", "https://tec.openplanner.team/stops/H4my121b"], ["https://mivb.openplanner.team/stops/5825", "https://tec.openplanner.team/stops/Bucceng2"], ["http://irail.be/stations/NMBS/008891132", "https://data.delijn.be/stops/200831"], ["https://data.delijn.be/stops/300992", "https://mivb.openplanner.team/stops/3705"], ["https://data.delijn.be/stops/404669", "https://tec.openplanner.team/stops/LPAmc--2"], ["https://data.delijn.be/stops/308867", "https://mivb.openplanner.team/stops/1835"], ["https://data.delijn.be/stops/307970", "https://tec.openplanner.team/stops/Bbgeegl1"], ["https://data.delijn.be/stops/209395", "https://tec.openplanner.team/stops/H4or116b"], ["https://data.delijn.be/stops/504380", "https://tec.openplanner.team/stops/H4pl117b"], ["https://data.delijn.be/stops/302387", "https://tec.openplanner.team/stops/Bgzdgpa2"], ["https://mivb.openplanner.team/stops/3526", "https://tec.openplanner.team/stops/Baudulb1"], ["https://data.delijn.be/stops/307213", "https://tec.openplanner.team/stops/Bbchgod1"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/300014"], ["http://irail.be/stations/NMBS/008824158", "https://data.delijn.be/stops/102875"], ["http://irail.be/stations/NMBS/008865227", "https://tec.openplanner.team/stops/X995afa"], ["http://irail.be/stations/NMBS/008821451", "https://data.delijn.be/stops/105862"], ["https://data.delijn.be/stops/209184", "https://tec.openplanner.team/stops/H5rx121b"], ["https://data.delijn.be/stops/408854", "https://tec.openplanner.team/stops/LFClage1"], ["https://data.delijn.be/stops/405720", "https://tec.openplanner.team/stops/LlgLAMB3"], ["https://data.delijn.be/stops/407204", "https://tec.openplanner.team/stops/LHTdelh2"], ["https://data.delijn.be/stops/208614", "https://tec.openplanner.team/stops/H1bd103a"], ["http://irail.be/stations/NMBS/008896230", "https://data.delijn.be/stops/508449"], ["https://data.delijn.be/stops/305261", "https://tec.openplanner.team/stops/Bspkker2"], ["http://irail.be/stations/NMBS/008822343", "https://data.delijn.be/stops/105191"], ["https://data.delijn.be/stops/406127", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://data.delijn.be/stops/400475", "https://tec.openplanner.team/stops/LGLcour4"], ["http://irail.be/stations/NMBS/008892031", "https://data.delijn.be/stops/200179"], ["http://irail.be/stations/NMBS/008866175", "https://tec.openplanner.team/stops/X671agb"], ["https://data.delijn.be/stops/301007", "https://mivb.openplanner.team/stops/4107"], ["https://data.delijn.be/stops/410018", "https://tec.openplanner.team/stops/Blanath2"], ["https://data.delijn.be/stops/301034", "https://mivb.openplanner.team/stops/0724"], ["https://data.delijn.be/stops/407202", "https://tec.openplanner.team/stops/LHThall3"], ["http://irail.be/stations/NMBS/008832003", "https://data.delijn.be/stops/404266"], ["https://data.delijn.be/stops/300344", "https://tec.openplanner.team/stops/Bbrlvil1"], ["http://irail.be/stations/NMBS/008895125", "https://data.delijn.be/stops/207007"], ["https://data.delijn.be/stops/408867", "https://tec.openplanner.team/stops/LFCvoge4"], ["http://irail.be/stations/NMBS/008866142", "https://tec.openplanner.team/stops/X670amb"], ["http://irail.be/stations/NMBS/008863503", "https://tec.openplanner.team/stops/N232aqa"], ["https://data.delijn.be/stops/509003", "https://tec.openplanner.team/stops/H4mo192a"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LFClage2"], ["https://mivb.openplanner.team/stops/1760", "https://tec.openplanner.team/stops/Baudhan1"], ["https://data.delijn.be/stops/301420", "https://tec.openplanner.team/stops/H1en105a"], ["https://data.delijn.be/stops/302855", "https://tec.openplanner.team/stops/Bwaanwi1"], ["http://irail.be/stations/NMBS/008863461", "https://tec.openplanner.team/stops/N503aba"], ["http://irail.be/stations/NMBS/008821121", "https://data.delijn.be/stops/102113"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/Cmlvpla1"], ["https://data.delijn.be/stops/300937", "https://mivb.openplanner.team/stops/1111"], ["https://mivb.openplanner.team/stops/5414F", "https://tec.openplanner.team/stops/Bixlozo2"], ["https://data.delijn.be/stops/401399", "https://mivb.openplanner.team/stops/5038"], ["https://data.delijn.be/stops/304459", "https://tec.openplanner.team/stops/Brsg7fo2"], ["http://irail.be/stations/NMBS/008863461", "https://tec.openplanner.team/stops/N503ala"], ["https://mivb.openplanner.team/stops/1913", "https://tec.openplanner.team/stops/Bixlpat2"], ["https://data.delijn.be/stops/208174", "https://tec.openplanner.team/stops/H5fl100a"], ["http://irail.be/stations/NMBS/008885522", "https://tec.openplanner.team/stops/H4ga150a"], ["https://data.delijn.be/stops/304653", "https://mivb.openplanner.team/stops/8642"], ["https://data.delijn.be/stops/503333", "https://tec.openplanner.team/stops/H4do105a"], ["http://irail.be/stations/NMBS/008841434", "https://tec.openplanner.team/stops/LBKmare2"], ["http://irail.be/stations/NMBS/008821519", "https://data.delijn.be/stops/105857"], ["https://mivb.openplanner.team/stops/0260137", "https://tec.openplanner.team/stops/Baudhde1"], ["https://data.delijn.be/stops/405737", "https://tec.openplanner.team/stops/Lrcstad1"], ["http://irail.be/stations/NMBS/008886546", "https://tec.openplanner.team/stops/H1le121a"], ["http://irail.be/stations/NMBS/008843901", "https://tec.openplanner.team/stops/Lbrddef3"], ["https://data.delijn.be/stops/300855", "https://mivb.openplanner.team/stops/0531"], ["https://data.delijn.be/stops/305346", "https://tec.openplanner.team/stops/Bbgerlr1"], ["https://data.delijn.be/stops/305244", "https://mivb.openplanner.team/stops/9780"], ["http://irail.be/stations/NMBS/008871852", "https://tec.openplanner.team/stops/Cmohame1"], ["https://data.delijn.be/stops/408681", "https://tec.openplanner.team/stops/LRUhama1"], ["https://data.delijn.be/stops/300958", "https://mivb.openplanner.team/stops/2752"], ["https://mivb.openplanner.team/stops/0130227", "https://tec.openplanner.team/stops/Bwolvan1"], ["https://data.delijn.be/stops/405739", "https://tec.openplanner.team/stops/Lrclohe2"], ["https://data.delijn.be/stops/301000", "https://mivb.openplanner.team/stops/6413F"], ["https://data.delijn.be/stops/408980", "https://tec.openplanner.team/stops/LWAathe1"], ["https://data.delijn.be/stops/401402", "https://mivb.openplanner.team/stops/5046"], ["https://data.delijn.be/stops/509380", "https://tec.openplanner.team/stops/H4pl114b"], ["http://irail.be/stations/NMBS/008892650", "https://data.delijn.be/stops/209726"], ["http://irail.be/stations/NMBS/008886348", "https://tec.openplanner.team/stops/H4lz118b"], ["https://data.delijn.be/stops/301088", "https://mivb.openplanner.team/stops/1514"], ["https://data.delijn.be/stops/307682", "https://mivb.openplanner.team/stops/5916F"], ["http://irail.be/stations/NMBS/008886546", "https://data.delijn.be/stops/206778"], ["http://irail.be/stations/NMBS/008842655", "https://tec.openplanner.team/stops/LESmich1"], ["https://data.delijn.be/stops/408804", "https://tec.openplanner.team/stops/LVIgare1"], ["https://data.delijn.be/stops/401404", "https://mivb.openplanner.team/stops/5038"], ["https://data.delijn.be/stops/302869", "https://tec.openplanner.team/stops/Bhevjac2"], ["http://irail.be/stations/NMBS/008811817", "https://tec.openplanner.team/stops/Bottegl2"], ["https://data.delijn.be/stops/509292", "https://tec.openplanner.team/stops/H4mo188a"], ["https://data.delijn.be/stops/307698", "https://tec.openplanner.team/stops/Brsgsan1"], ["https://data.delijn.be/stops/301416", "https://tec.openplanner.team/stops/H1en104d"], ["https://data.delijn.be/stops/305270", "https://mivb.openplanner.team/stops/2365"], ["https://data.delijn.be/stops/304202", "https://tec.openplanner.team/stops/Brsregl2"], ["https://data.delijn.be/stops/408896", "https://tec.openplanner.team/stops/LFMkrut1"], ["https://data.delijn.be/stops/305435", "https://mivb.openplanner.team/stops/1620B"], ["https://data.delijn.be/stops/505274", "https://tec.openplanner.team/stops/H4po129b"], ["https://data.delijn.be/stops/300953", "https://mivb.openplanner.team/stops/0470459"], ["https://data.delijn.be/stops/300932", "https://mivb.openplanner.team/stops/2982"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N349aea"], ["https://data.delijn.be/stops/401401", "https://mivb.openplanner.team/stops/3401"], ["https://data.delijn.be/stops/400455", "https://tec.openplanner.team/stops/LLAchpl1"], ["https://data.delijn.be/stops/409249", "https://tec.openplanner.team/stops/LEMfort2"], ["http://irail.be/stations/NMBS/008841731", "https://data.delijn.be/stops/408727"], ["https://data.delijn.be/stops/407209", "https://tec.openplanner.team/stops/LHTbonn2"], ["https://data.delijn.be/stops/400466", "https://tec.openplanner.team/stops/LEMec--2"], ["https://data.delijn.be/stops/302451", "https://tec.openplanner.team/stops/Bzluvil1"], ["https://data.delijn.be/stops/405738", "https://tec.openplanner.team/stops/Lrc594-2"], ["https://data.delijn.be/stops/306068", "https://tec.openplanner.team/stops/Blempuc1"], ["https://data.delijn.be/stops/504322", "https://tec.openplanner.team/stops/H4mo193a"], ["http://irail.be/stations/NMBS/008891702", "https://data.delijn.be/stops/501509"], ["https://data.delijn.be/stops/405310", "https://tec.openplanner.team/stops/Blankal3"], ["https://mivb.openplanner.team/stops/4290", "https://tec.openplanner.team/stops/Bwbfckr2"], ["http://irail.be/stations/NMBS/008812245", "https://data.delijn.be/stops/308767"], ["http://irail.be/stations/NMBS/008812146", "https://data.delijn.be/stops/206957"], ["http://irail.be/stations/NMBS/008831005", "https://data.delijn.be/stops/403065"], ["https://data.delijn.be/stops/400665", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://data.delijn.be/stops/305495", "https://mivb.openplanner.team/stops/1321"], ["http://irail.be/stations/NMBS/008812120", "https://data.delijn.be/stops/303844"], ["http://irail.be/stations/NMBS/008896008", "https://data.delijn.be/stops/510021"], ["http://irail.be/stations/NMBS/008814134", "https://data.delijn.be/stops/307683"], ["http://irail.be/stations/NMBS/008866845", "https://tec.openplanner.team/stops/X673ada"], ["https://data.delijn.be/stops/504377", "https://tec.openplanner.team/stops/H4pl121a"], ["https://data.delijn.be/stops/301057", "https://mivb.openplanner.team/stops/4212B"], ["https://data.delijn.be/stops/300336", "https://tec.openplanner.team/stops/Balssvi1"], ["http://irail.be/stations/NMBS/008865540", "https://tec.openplanner.team/stops/X850ama"], ["https://data.delijn.be/stops/300876", "https://mivb.openplanner.team/stops/4265"], ["http://irail.be/stations/NMBS/008822772", "https://data.delijn.be/stops/107857"], ["https://mivb.openplanner.team/stops/1869", "https://tec.openplanner.team/stops/Bettars1"], ["https://data.delijn.be/stops/301088", "https://mivb.openplanner.team/stops/3216"], ["http://irail.be/stations/NMBS/008872413", "https://tec.openplanner.team/stops/Cflbrun1"], ["http://irail.be/stations/NMBS/008842754", "https://tec.openplanner.team/stops/LAYchal2"], ["https://data.delijn.be/stops/302805", "https://mivb.openplanner.team/stops/1668"], ["https://data.delijn.be/stops/301020", "https://mivb.openplanner.team/stops/4004"], ["http://irail.be/stations/NMBS/008821089", "https://data.delijn.be/stops/107725"], ["https://data.delijn.be/stops/405703", "https://tec.openplanner.team/stops/Llgelis1"], ["https://data.delijn.be/stops/410137", "https://tec.openplanner.team/stops/Lrccomm1"], ["https://data.delijn.be/stops/307974", "https://tec.openplanner.team/stops/Bwavmes2"], ["http://irail.be/stations/NMBS/008847258", "https://tec.openplanner.team/stops/Loureno1"], ["https://data.delijn.be/stops/301133", "https://mivb.openplanner.team/stops/2715"], ["http://irail.be/stations/NMBS/008864006", "https://tec.openplanner.team/stops/N390aeb"], ["https://mivb.openplanner.team/stops/5418", "https://tec.openplanner.team/stops/Bwbfhip2"], ["https://data.delijn.be/stops/503678", "https://tec.openplanner.team/stops/H4ef111a"], ["https://data.delijn.be/stops/307682", "https://mivb.openplanner.team/stops/5953"], ["http://irail.be/stations/NMBS/008886504", "https://tec.openplanner.team/stops/H1le121a"], ["https://data.delijn.be/stops/408927", "https://tec.openplanner.team/stops/LRmstat2"], ["http://irail.be/stations/NMBS/008885753", "https://tec.openplanner.team/stops/H4hx119a"], ["http://irail.be/stations/NMBS/008821600", "https://data.delijn.be/stops/106933"], ["https://data.delijn.be/stops/301048", "https://mivb.openplanner.team/stops/4600"], ["https://data.delijn.be/stops/303648", "https://mivb.openplanner.team/stops/5773"], ["http://irail.be/stations/NMBS/008844008", "https://tec.openplanner.team/stops/Lvegc--6"], ["https://data.delijn.be/stops/304550", "https://mivb.openplanner.team/stops/9651"], ["https://mivb.openplanner.team/stops/1729", "https://tec.openplanner.team/stops/Bbxltrv2"], ["http://irail.be/stations/NMBS/008883238", "https://tec.openplanner.team/stops/H2fa101b"], ["https://data.delijn.be/stops/300877", "https://mivb.openplanner.team/stops/5474"], ["https://data.delijn.be/stops/305319", "https://mivb.openplanner.team/stops/2817"], ["https://data.delijn.be/stops/301972", "https://tec.openplanner.team/stops/Bhalgja2"], ["https://data.delijn.be/stops/300877", "https://mivb.openplanner.team/stops/1289"], ["https://data.delijn.be/stops/301078", "https://mivb.openplanner.team/stops/9023"], ["http://irail.be/stations/NMBS/008844271", "https://tec.openplanner.team/stops/LTRgare1"], ["http://irail.be/stations/NMBS/008871100", "https://tec.openplanner.team/stops/Cmastni2"], ["http://irail.be/stations/NMBS/008728654", "https://data.delijn.be/stops/509453"], ["http://irail.be/stations/NMBS/008886009", "https://tec.openplanner.team/stops/H5at119a"], ["https://data.delijn.be/stops/408697", "https://tec.openplanner.team/stops/LGLspor2"], ["https://data.delijn.be/stops/306907", "https://tec.openplanner.team/stops/Bboseco1"], ["http://irail.be/stations/NMBS/008893047", "https://data.delijn.be/stops/201941"], ["http://irail.be/stations/NMBS/008844420", "https://tec.openplanner.team/stops/LSPther2"], ["https://data.delijn.be/stops/300802", "https://mivb.openplanner.team/stops/8661"], ["http://irail.be/stations/NMBS/008866258", "https://tec.openplanner.team/stops/X661ajb"], ["https://data.delijn.be/stops/301016", "https://mivb.openplanner.team/stops/4104"], ["https://data.delijn.be/stops/401419", "https://mivb.openplanner.team/stops/1321"], ["https://data.delijn.be/stops/300976", "https://mivb.openplanner.team/stops/6020"], ["https://data.delijn.be/stops/208742", "https://tec.openplanner.team/stops/H4or115a"], ["https://data.delijn.be/stops/302410", "https://tec.openplanner.team/stops/Bmlngch2"], ["https://data.delijn.be/stops/408888", "https://tec.openplanner.team/stops/LFPknap1"], ["https://data.delijn.be/stops/406398", "https://tec.openplanner.team/stops/Blangar1"], ["https://data.delijn.be/stops/300829", "https://mivb.openplanner.team/stops/2545"], ["http://irail.be/stations/NMBS/008811213", "https://data.delijn.be/stops/303570"], ["http://irail.be/stations/NMBS/008883311", "https://data.delijn.be/stops/301422"], ["http://irail.be/stations/NMBS/008822772", "https://data.delijn.be/stops/208900"], ["http://irail.be/stations/NMBS/008864311", "https://tec.openplanner.team/stops/X991agb"], ["http://irail.be/stations/NMBS/008871365", "https://tec.openplanner.team/stops/Cobobjo2"], ["https://data.delijn.be/stops/307158", "https://tec.openplanner.team/stops/Bhalwat2"], ["https://data.delijn.be/stops/300745", "https://mivb.openplanner.team/stops/1255"], ["http://irail.be/stations/NMBS/008842846", "https://tec.openplanner.team/stops/LHaxhig2"], ["http://irail.be/stations/NMBS/008822053", "https://data.delijn.be/stops/302505"], ["http://irail.be/stations/NMBS/008822228", "https://data.delijn.be/stops/106965"], ["http://irail.be/stations/NMBS/008200120", "https://tec.openplanner.team/stops/LmNlieb1"], ["http://irail.be/stations/NMBS/008891660", "https://data.delijn.be/stops/501159"], ["https://data.delijn.be/stops/301077", "https://mivb.openplanner.team/stops/6436"], ["https://data.delijn.be/stops/300797", "https://mivb.openplanner.team/stops/6858C"], ["https://mivb.openplanner.team/stops/2714", "https://tec.openplanner.team/stops/Buccvch1"], ["http://irail.be/stations/NMBS/008886561", "https://tec.openplanner.team/stops/H1le119b"], ["https://data.delijn.be/stops/305238", "https://tec.openplanner.team/stops/Bspkker2"], ["https://data.delijn.be/stops/307814", "https://tec.openplanner.team/stops/Bovesnh1"], ["http://irail.be/stations/NMBS/008813003", "https://mivb.openplanner.team/stops/6445"], ["https://data.delijn.be/stops/300343", "https://tec.openplanner.team/stops/Bbrlvil2"], ["http://irail.be/stations/NMBS/008821337", "https://data.delijn.be/stops/108250"], ["https://data.delijn.be/stops/303229", "https://mivb.openplanner.team/stops/9649"], ["http://irail.be/stations/NMBS/008841608", "https://tec.openplanner.team/stops/Lhrtunn1"], ["https://data.delijn.be/stops/302895", "https://tec.openplanner.team/stops/Bhevl3l2"], ["https://data.delijn.be/stops/300950", "https://mivb.openplanner.team/stops/1184"], ["http://irail.be/stations/NMBS/008895489", "https://data.delijn.be/stops/206583"], ["https://data.delijn.be/stops/301975", "https://tec.openplanner.team/stops/Bhaldbo1"], ["http://irail.be/stations/NMBS/008866845", "https://tec.openplanner.team/stops/X641ala"], ["http://irail.be/stations/NMBS/008869088", "https://tec.openplanner.team/stops/X615afb"], ["http://irail.be/stations/NMBS/008891660", "https://data.delijn.be/stops/501749"], ["http://irail.be/stations/NMBS/008869054", "https://tec.openplanner.team/stops/X626ada"], ["http://irail.be/stations/NMBS/008811726", "https://tec.openplanner.team/stops/Bwavgar3"], ["https://data.delijn.be/stops/300387", "https://mivb.openplanner.team/stops/9658"], ["https://data.delijn.be/stops/307649", "https://tec.openplanner.team/stops/Brsgfon1"], ["http://irail.be/stations/NMBS/008814415", "https://data.delijn.be/stops/300033"], ["https://data.delijn.be/stops/208374", "https://tec.openplanner.team/stops/H5rx115a"], ["http://irail.be/stations/NMBS/008893518", "https://data.delijn.be/stops/207393"], ["http://irail.be/stations/NMBS/008895240", "https://data.delijn.be/stops/208442"], ["https://data.delijn.be/stops/401408", "https://mivb.openplanner.team/stops/5230F"], ["https://mivb.openplanner.team/stops/6162", "https://tec.openplanner.team/stops/Bsgimor2"], ["https://data.delijn.be/stops/307025", "https://tec.openplanner.team/stops/H1en101a"], ["https://mivb.openplanner.team/stops/4076", "https://tec.openplanner.team/stops/Buccdch2"], ["https://data.delijn.be/stops/408896", "https://tec.openplanner.team/stops/LFPzwaa2"], ["http://irail.be/stations/NMBS/008843208", "https://tec.openplanner.team/stops/Lfhtrxc1"], ["https://data.delijn.be/stops/307685", "https://mivb.openplanner.team/stops/1963"], ["https://data.delijn.be/stops/300329", "https://tec.openplanner.team/stops/Balsnie1"], ["https://data.delijn.be/stops/307688", "https://tec.openplanner.team/stops/Blkbbeu1"], ["https://data.delijn.be/stops/301138", "https://mivb.openplanner.team/stops/6440"], ["https://data.delijn.be/stops/400474", "https://tec.openplanner.team/stops/LGLspor1"], ["https://data.delijn.be/stops/407204", "https://tec.openplanner.team/stops/LHTbaud1"], ["https://data.delijn.be/stops/300885", "https://mivb.openplanner.team/stops/52"], ["http://irail.be/stations/NMBS/008812005", "https://mivb.openplanner.team/stops/5735"], ["http://irail.be/stations/NMBS/008841673", "https://tec.openplanner.team/stops/Llianix1"], ["https://data.delijn.be/stops/300021", "https://mivb.openplanner.team/stops/9678"], ["http://irail.be/stations/NMBS/008861317", "https://tec.openplanner.team/stops/N522aha"], ["https://data.delijn.be/stops/307859", "https://tec.openplanner.team/stops/Bhmmbog1"], ["https://data.delijn.be/stops/308095", "https://tec.openplanner.team/stops/Bpiepla2"], ["http://irail.be/stations/NMBS/008843240", "https://tec.openplanner.team/stops/LENpt--1"], ["https://data.delijn.be/stops/208024", "https://tec.openplanner.team/stops/H1gy112a"], ["https://data.delijn.be/stops/410152", "https://mivb.openplanner.team/stops/5046"], ["https://data.delijn.be/stops/300827", "https://mivb.openplanner.team/stops/2831"], ["http://irail.be/stations/NMBS/008844206", "https://tec.openplanner.team/stops/Lpegole2"], ["http://irail.be/stations/NMBS/008893559", "https://data.delijn.be/stops/203480"], ["http://irail.be/stations/NMBS/008821006", "https://data.delijn.be/stops/104470"], ["https://data.delijn.be/stops/301026", "https://mivb.openplanner.team/stops/2470"], ["https://data.delijn.be/stops/301968", "https://tec.openplanner.team/stops/Bhalath1"], ["https://data.delijn.be/stops/305891", "https://mivb.openplanner.team/stops/9707"], ["http://irail.be/stations/NMBS/008893401", "https://data.delijn.be/stops/207738"], ["https://data.delijn.be/stops/208187", "https://tec.openplanner.team/stops/H5rx136b"], ["https://data.delijn.be/stops/300810", "https://mivb.openplanner.team/stops/4127"], ["https://data.delijn.be/stops/301040", "https://mivb.openplanner.team/stops/5011"], ["http://irail.be/stations/NMBS/008811304", "https://mivb.openplanner.team/stops/1233"], ["https://data.delijn.be/stops/302854", "https://tec.openplanner.team/stops/Blanmde1"], ["https://data.delijn.be/stops/304661", "https://mivb.openplanner.team/stops/5963"], ["https://data.delijn.be/stops/408857", "https://tec.openplanner.team/stops/LFChofv2"], ["https://data.delijn.be/stops/405458", "https://tec.openplanner.team/stops/LWHtrui1"], ["http://irail.be/stations/NMBS/008893047", "https://data.delijn.be/stops/200633"], ["http://irail.be/stations/NMBS/008892288", "https://data.delijn.be/stops/503006"], ["https://mivb.openplanner.team/stops/1718B", "https://tec.openplanner.team/stops/Baudsju1"], ["https://data.delijn.be/stops/307019", "https://tec.openplanner.team/stops/Bhevwzw1"], ["https://mivb.openplanner.team/stops/1919", "https://tec.openplanner.team/stops/Buccgob1"], ["https://mivb.openplanner.team/stops/6956G", "https://tec.openplanner.team/stops/Buccptj2"], ["https://data.delijn.be/stops/307580", "https://tec.openplanner.team/stops/Bbghepi1"], ["https://data.delijn.be/stops/304450", "https://tec.openplanner.team/stops/Brsgera2"], ["https://data.delijn.be/stops/408825", "https://tec.openplanner.team/stops/LMgberw2"], ["https://data.delijn.be/stops/300987", "https://mivb.openplanner.team/stops/3956"], ["http://irail.be/stations/NMBS/008894201", "https://data.delijn.be/stops/203114"], ["https://data.delijn.be/stops/300759", "https://mivb.openplanner.team/stops/3282"], ["https://data.delijn.be/stops/410152", "https://mivb.openplanner.team/stops/3424"], ["https://data.delijn.be/stops/301110", "https://tec.openplanner.team/stops/Bucccre2"], ["https://data.delijn.be/stops/300976", "https://mivb.openplanner.team/stops/3360F"], ["http://irail.be/stations/NMBS/008814464", "https://data.delijn.be/stops/301123"], ["http://irail.be/stations/NMBS/008863362", "https://tec.openplanner.team/stops/N538ara"], ["http://irail.be/stations/NMBS/008896503", "https://data.delijn.be/stops/504181"], ["https://data.delijn.be/stops/400483", "https://tec.openplanner.team/stops/LRGunio3"], ["http://irail.be/stations/NMBS/008894151", "https://data.delijn.be/stops/203140"], ["http://irail.be/stations/NMBS/008892031", "https://data.delijn.be/stops/201199"], ["https://data.delijn.be/stops/307205", "https://tec.openplanner.team/stops/Btubnav1"], ["http://irail.be/stations/NMBS/008728600", "https://tec.openplanner.team/stops/H4ar103a"], ["http://irail.be/stations/NMBS/008861515", "https://tec.openplanner.team/stops/Bcrncjo1"], ["http://irail.be/stations/NMBS/008892080", "https://data.delijn.be/stops/200338"], ["https://data.delijn.be/stops/306065", "https://tec.openplanner.team/stops/Bhalker2"], ["https://data.delijn.be/stops/307534", "https://tec.openplanner.team/stops/H1mk112a"], ["http://irail.be/stations/NMBS/008881406", "https://tec.openplanner.team/stops/H1ha193b"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Cgzhour2"], ["https://data.delijn.be/stops/401417", "https://mivb.openplanner.team/stops/22"], ["https://data.delijn.be/stops/405364", "https://tec.openplanner.team/stops/Braclin2"], ["http://irail.be/stations/NMBS/008863446", "https://tec.openplanner.team/stops/N512awa"], ["https://data.delijn.be/stops/307647", "https://mivb.openplanner.team/stops/1953"], ["https://data.delijn.be/stops/300767", "https://mivb.openplanner.team/stops/2260F"], ["https://data.delijn.be/stops/301247", "https://tec.openplanner.team/stops/Bhalrat2"], ["https://data.delijn.be/stops/304134", "https://tec.openplanner.team/stops/Bbghsar2"], ["http://irail.be/stations/NMBS/008832243", "https://data.delijn.be/stops/404282"], ["https://data.delijn.be/stops/300862", "https://mivb.openplanner.team/stops/8784"], ["https://mivb.openplanner.team/stops/1716", "https://tec.openplanner.team/stops/Baudstr2"], ["https://data.delijn.be/stops/408862", "https://tec.openplanner.team/stops/LFCotte2"], ["https://data.delijn.be/stops/407201", "https://tec.openplanner.team/stops/LWOruis1"], ["https://data.delijn.be/stops/302228", "https://tec.openplanner.team/stops/Blhutma1"], ["http://irail.be/stations/NMBS/008815016", "https://mivb.openplanner.team/stops/2503"], ["http://irail.be/stations/NMBS/008892007", "https://data.delijn.be/stops/205358"], ["https://data.delijn.be/stops/403711", "https://tec.openplanner.team/stops/LWAbett2"], ["http://irail.be/stations/NMBS/008865128", "https://tec.openplanner.team/stops/X725aee"], ["https://data.delijn.be/stops/302414", "https://tec.openplanner.team/stops/Bjodeco3"], ["http://irail.be/stations/NMBS/008841525", "https://data.delijn.be/stops/410355"], ["https://data.delijn.be/stops/305427", "https://mivb.openplanner.team/stops/9164"], ["https://mivb.openplanner.team/stops/1322", "https://tec.openplanner.team/stops/Bixllep1"], ["http://irail.be/stations/NMBS/008895471", "https://data.delijn.be/stops/207455"], ["https://data.delijn.be/stops/304569", "https://mivb.openplanner.team/stops/7650110"], ["https://data.delijn.be/stops/207789", "https://tec.openplanner.team/stops/H5rx151a"], ["https://data.delijn.be/stops/302398", "https://mivb.openplanner.team/stops/7690206"], ["https://data.delijn.be/stops/300743", "https://mivb.openplanner.team/stops/6858G"], ["https://data.delijn.be/stops/408885", "https://tec.openplanner.team/stops/LDpzol-2"], ["https://data.delijn.be/stops/504230", "https://tec.openplanner.team/stops/H4co105a"], ["http://irail.be/stations/NMBS/008881430", "https://tec.openplanner.team/stops/H1ha192a"], ["http://irail.be/stations/NMBS/008812005", "https://data.delijn.be/stops/306052"], ["http://irail.be/stations/NMBS/008895760", "https://data.delijn.be/stops/206988"], ["http://irail.be/stations/NMBS/008811460", "https://tec.openplanner.team/stops/Blhuibm1"], ["https://data.delijn.be/stops/300016", "https://mivb.openplanner.team/stops/2138B"], ["https://data.delijn.be/stops/302410", "https://tec.openplanner.team/stops/Bjodgai1"], ["http://irail.be/stations/NMBS/008832334", "https://data.delijn.be/stops/409262"], ["https://data.delijn.be/stops/302925", "https://tec.openplanner.team/stops/Bhevgar1"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/107064"], ["https://data.delijn.be/stops/509244", "https://tec.openplanner.team/stops/H4co133a"], ["https://data.delijn.be/stops/307971", "https://tec.openplanner.team/stops/Bwavrij2"], ["http://irail.be/stations/NMBS/008883121", "https://tec.openplanner.team/stops/H1ca103b"], ["http://irail.be/stations/NMBS/008833670", "https://tec.openplanner.team/stops/Braccen1"], ["https://data.delijn.be/stops/307232", "https://mivb.openplanner.team/stops/4266"], ["http://irail.be/stations/NMBS/008814449", "https://tec.openplanner.team/stops/Buccptj1"], ["https://mivb.openplanner.team/stops/9059", "https://tec.openplanner.team/stops/Bwbfckr2"], ["http://irail.be/stations/NMBS/008885522", "https://tec.openplanner.team/stops/H4fo119a"], ["http://irail.be/stations/NMBS/008400058", "https://data.delijn.be/stops/104636"], ["https://data.delijn.be/stops/308854", "https://mivb.openplanner.team/stops/2859"], ["https://data.delijn.be/stops/307605", "https://tec.openplanner.team/stops/H1mk116a"], ["https://data.delijn.be/stops/307687", "https://tec.openplanner.team/stops/Bbrlmez1"], ["https://data.delijn.be/stops/207798", "https://tec.openplanner.team/stops/H5rx121b"], ["http://irail.be/stations/NMBS/008863008", "https://tec.openplanner.team/stops/N501gre"], ["https://data.delijn.be/stops/304432", "https://tec.openplanner.team/stops/Brsgcfl2"], ["https://data.delijn.be/stops/208766", "https://tec.openplanner.team/stops/H5rx103b"], ["https://data.delijn.be/stops/304549", "https://mivb.openplanner.team/stops/9683"], ["http://irail.be/stations/NMBS/008822269", "https://data.delijn.be/stops/305601"], ["https://data.delijn.be/stops/307246", "https://mivb.openplanner.team/stops/0350640"], ["https://data.delijn.be/stops/301165", "https://mivb.openplanner.team/stops/2144"], ["http://irail.be/stations/NMBS/008821725", "https://data.delijn.be/stops/108242"], ["https://data.delijn.be/stops/306064", "https://tec.openplanner.team/stops/Brsgera1"], ["https://data.delijn.be/stops/209610", "https://tec.openplanner.team/stops/H1by106a"], ["https://mivb.openplanner.team/stops/3517", "https://tec.openplanner.team/stops/Bixleix1"], ["https://data.delijn.be/stops/300997", "https://mivb.openplanner.team/stops/6302"], ["http://irail.be/stations/NMBS/008873239", "https://tec.openplanner.team/stops/N118ava"], ["http://irail.be/stations/NMBS/008844628", "https://tec.openplanner.team/stops/LeUschn2"], ["https://data.delijn.be/stops/301411", "https://tec.openplanner.team/stops/H1mk123a"], ["http://irail.be/stations/NMBS/008811734", "https://data.delijn.be/stops/307974"], ["https://data.delijn.be/stops/408851", "https://tec.openplanner.team/stops/LTErest1"], ["http://irail.be/stations/NMBS/008863560", "https://tec.openplanner.team/stops/N540ala"], ["http://irail.be/stations/NMBS/008866001", "https://tec.openplanner.team/stops/X601bbd"], ["http://irail.be/stations/NMBS/008842655", "https://tec.openplanner.team/stops/LESslmo2"], ["https://mivb.openplanner.team/stops/1835", "https://tec.openplanner.team/stops/Bkrapri2"], ["https://data.delijn.be/stops/404843", "https://tec.openplanner.team/stops/LWOrout2"], ["https://data.delijn.be/stops/403785", "https://tec.openplanner.team/stops/LOehart2"], ["https://data.delijn.be/stops/305501", "https://mivb.openplanner.team/stops/1552"], ["https://data.delijn.be/stops/302854", "https://tec.openplanner.team/stops/Bwaanwi2"], ["http://irail.be/stations/NMBS/008892692", "https://data.delijn.be/stops/208803"], ["https://data.delijn.be/stops/300815", "https://mivb.openplanner.team/stops/5400"], ["https://data.delijn.be/stops/304031", "https://tec.openplanner.team/stops/Bovevnd2"], ["http://irail.be/stations/NMBS/008895638", "https://data.delijn.be/stops/305261"], ["https://data.delijn.be/stops/209407", "https://tec.openplanner.team/stops/H5rx138a"], ["https://mivb.openplanner.team/stops/1719", "https://tec.openplanner.team/stops/Baudvdr1"], ["https://data.delijn.be/stops/303121", "https://mivb.openplanner.team/stops/3850"], ["https://data.delijn.be/stops/308819", "https://mivb.openplanner.team/stops/1508"], ["http://irail.be/stations/NMBS/008891702", "https://data.delijn.be/stops/506742"], ["https://data.delijn.be/stops/300832", "https://mivb.openplanner.team/stops/6100"], ["https://data.delijn.be/stops/300925", "https://mivb.openplanner.team/stops/3898"], ["https://data.delijn.be/stops/301132", "https://tec.openplanner.team/stops/Bixlaca2"], ["https://data.delijn.be/stops/301923", "https://mivb.openplanner.team/stops/2085"], ["http://irail.be/stations/NMBS/008822111", "https://data.delijn.be/stops/307136"], ["https://data.delijn.be/stops/306968", "https://mivb.openplanner.team/stops/5772"], ["http://irail.be/stations/NMBS/008894151", "https://data.delijn.be/stops/202176"], ["https://data.delijn.be/stops/301138", "https://tec.openplanner.team/stops/Buccham2"], ["http://irail.be/stations/NMBS/008400424", "https://data.delijn.be/stops/406369"], ["https://data.delijn.be/stops/300062", "https://tec.openplanner.team/stops/Blemsta2"], ["https://data.delijn.be/stops/400652", "https://tec.openplanner.team/stops/LHgroso2"], ["http://irail.be/stations/NMBS/008895455", "https://data.delijn.be/stops/207648"], ["http://irail.be/stations/NMBS/008841459", "https://tec.openplanner.team/stops/LMOfleu1"], ["https://data.delijn.be/stops/301686", "https://tec.openplanner.team/stops/Bnetrec1"], ["https://mivb.openplanner.team/stops/5456", "https://tec.openplanner.team/stops/Bwbfhip1"], ["https://data.delijn.be/stops/306969", "https://mivb.openplanner.team/stops/2875"], ["https://data.delijn.be/stops/305227", "https://mivb.openplanner.team/stops/9707"], ["https://mivb.openplanner.team/stops/1965", "https://tec.openplanner.team/stops/Buccbou1"], ["https://data.delijn.be/stops/301408", "https://tec.openplanner.team/stops/H1en103a"], ["https://data.delijn.be/stops/301054", "https://mivb.openplanner.team/stops/5013F"], ["https://data.delijn.be/stops/306314", "https://tec.openplanner.team/stops/Bhalber2"], ["https://data.delijn.be/stops/408847", "https://tec.openplanner.team/stops/LRmha262"], ["https://data.delijn.be/stops/302413", "https://tec.openplanner.team/stops/Bjodgar1"], ["https://data.delijn.be/stops/307156", "https://tec.openplanner.team/stops/Bhalalb1"], ["http://irail.be/stations/NMBS/008843067", "https://tec.openplanner.team/stops/Lsepapi4"], ["https://data.delijn.be/stops/304090", "https://tec.openplanner.team/stops/Boveker2"], ["http://irail.be/stations/NMBS/008841442", "https://tec.openplanner.team/stops/LPUlecl2"], ["https://data.delijn.be/stops/408916", "https://tec.openplanner.team/stops/LFPloob1"], ["https://data.delijn.be/stops/301114", "https://tec.openplanner.team/stops/Bucccal3"], ["http://irail.be/stations/NMBS/008894748", "https://data.delijn.be/stops/205536"], ["http://irail.be/stations/NMBS/008841202", "https://tec.openplanner.team/stops/Lghsimo4"], ["https://data.delijn.be/stops/300849", "https://mivb.openplanner.team/stops/2855"], ["https://data.delijn.be/stops/300407", "https://tec.openplanner.team/stops/Blempuc2"], ["https://data.delijn.be/stops/301013", "https://mivb.openplanner.team/stops/1236F"], ["https://data.delijn.be/stops/300933", "https://mivb.openplanner.team/stops/2903F"], ["http://irail.be/stations/NMBS/008874724", "https://tec.openplanner.team/stops/N534apg"], ["https://data.delijn.be/stops/304077", "https://tec.openplanner.team/stops/Bovesnh1"], ["https://data.delijn.be/stops/209185", "https://tec.openplanner.team/stops/H5rx134a"], ["https://data.delijn.be/stops/401397", "https://mivb.openplanner.team/stops/3962"], ["https://data.delijn.be/stops/304109", "https://tec.openplanner.team/stops/Bovejme2"], ["https://data.delijn.be/stops/308125", "https://tec.openplanner.team/stops/Bgoesch4"], ["https://mivb.openplanner.team/stops/1757", "https://tec.openplanner.team/stops/Baudvdr1"], ["https://data.delijn.be/stops/308819", "https://mivb.openplanner.team/stops/3354"], ["https://data.delijn.be/stops/408859", "https://tec.openplanner.team/stops/LWRvert2"], ["https://data.delijn.be/stops/408907", "https://tec.openplanner.team/stops/LFPkape2"], ["https://data.delijn.be/stops/208764", "https://tec.openplanner.team/stops/H5rx106a"], ["http://irail.be/stations/NMBS/008811544", "https://tec.openplanner.team/stops/Bottpry1"], ["https://data.delijn.be/stops/406565", "https://tec.openplanner.team/stops/LLxcbr-2"], ["https://data.delijn.be/stops/300813", "https://mivb.openplanner.team/stops/7790456"], ["https://data.delijn.be/stops/504307", "https://tec.openplanner.team/stops/H4mo188b"], ["https://data.delijn.be/stops/300979", "https://mivb.openplanner.team/stops/6303"], ["http://irail.be/stations/NMBS/008822277", "https://data.delijn.be/stops/305613"], ["http://irail.be/stations/NMBS/008874054", "https://tec.openplanner.team/stops/Ccivill1"], ["http://irail.be/stations/NMBS/008863115", "https://tec.openplanner.team/stops/N501kmz"], ["http://irail.be/stations/NMBS/008831765", "https://data.delijn.be/stops/409642"], ["https://data.delijn.be/stops/300331", "https://tec.openplanner.team/stops/Bblapin2"], ["https://data.delijn.be/stops/301154", "https://tec.openplanner.team/stops/Bwbfhip2"], ["http://irail.be/stations/NMBS/008811106", "https://mivb.openplanner.team/stops/3419"], ["http://irail.be/stations/NMBS/008811817", "https://tec.openplanner.team/stops/Bottpma2"], ["https://data.delijn.be/stops/305319", "https://mivb.openplanner.team/stops/2853"], ["https://data.delijn.be/stops/303079", "https://tec.openplanner.team/stops/Bhevgro2"], ["http://irail.be/stations/NMBS/008895802", "https://data.delijn.be/stops/206911"], ["https://data.delijn.be/stops/300764", "https://mivb.openplanner.team/stops/3713"], ["http://irail.be/stations/NMBS/008843208", "https://tec.openplanner.team/stops/Lfhmalv1"], ["https://data.delijn.be/stops/305436", "https://mivb.openplanner.team/stops/5521"], ["https://data.delijn.be/stops/301196", "https://tec.openplanner.team/stops/Bmlnegl1"], ["https://data.delijn.be/stops/208740", "https://tec.openplanner.team/stops/H5rx115d"], ["http://irail.be/stations/NMBS/008821063", "https://data.delijn.be/stops/102414"], ["https://data.delijn.be/stops/207794", "https://tec.openplanner.team/stops/H5rx130b"], ["https://data.delijn.be/stops/504327", "https://tec.openplanner.team/stops/H4ar100a"], ["https://data.delijn.be/stops/301033", "https://mivb.openplanner.team/stops/6109"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/N524adb"], ["https://data.delijn.be/stops/301688", "https://tec.openplanner.team/stops/Bnetvan1"], ["https://data.delijn.be/stops/209190", "https://tec.openplanner.team/stops/H5rx127b"], ["https://data.delijn.be/stops/305333", "https://tec.openplanner.team/stops/Bspkbeu1"], ["https://data.delijn.be/stops/305344", "https://tec.openplanner.team/stops/Bbgewal2"], ["http://irail.be/stations/NMBS/008863867", "https://tec.openplanner.team/stops/N308afb"], ["https://data.delijn.be/stops/304013", "https://tec.openplanner.team/stops/Bovesnh1"], ["http://irail.be/stations/NMBS/008881570", "https://tec.openplanner.team/stops/H1fr124a"], ["https://data.delijn.be/stops/304089", "https://tec.openplanner.team/stops/Bovevri1"], ["http://irail.be/stations/NMBS/008861135", "https://tec.openplanner.team/stops/N533aeb"], ["http://irail.be/stations/NMBS/008893260", "https://data.delijn.be/stops/202022"], ["http://irail.be/stations/NMBS/008891629", "https://data.delijn.be/stops/501529"], ["https://data.delijn.be/stops/407213", "https://tec.openplanner.team/stops/LWOpier1"], ["https://data.delijn.be/stops/305223", "https://tec.openplanner.team/stops/H1mk115a"], ["http://irail.be/stations/NMBS/008812229", "https://data.delijn.be/stops/300289"], ["https://data.delijn.be/stops/308957", "https://tec.openplanner.team/stops/Bixefra1"], ["https://data.delijn.be/stops/407217", "https://tec.openplanner.team/stops/LBStec-2"], ["https://data.delijn.be/stops/508995", "https://tec.openplanner.team/stops/H4po128a"], ["https://data.delijn.be/stops/401410", "https://mivb.openplanner.team/stops/4550"], ["https://data.delijn.be/stops/305164", "https://tec.openplanner.team/stops/Btiegoo1"], ["http://irail.be/stations/NMBS/008884004", "https://tec.openplanner.team/stops/H1sg148a"], ["http://irail.be/stations/NMBS/008873387", "https://tec.openplanner.team/stops/Chhsncb2"], ["https://data.delijn.be/stops/408911", "https://tec.openplanner.team/stops/LVukabi1"], ["https://data.delijn.be/stops/300958", "https://mivb.openplanner.team/stops/37"], ["http://irail.be/stations/NMBS/008845146", "https://tec.openplanner.team/stops/X750ama"], ["http://irail.be/stations/NMBS/008811817", "https://tec.openplanner.team/stops/Bmouegl2"], ["https://data.delijn.be/stops/307987", "https://mivb.openplanner.team/stops/3334F"], ["https://data.delijn.be/stops/404658", "https://tec.openplanner.team/stops/Llaflot2"], ["http://irail.be/stations/NMBS/008866142", "https://tec.openplanner.team/stops/X670asb"], ["https://data.delijn.be/stops/307853", "https://mivb.openplanner.team/stops/0230234"], ["https://data.delijn.be/stops/301015", "https://mivb.openplanner.team/stops/1094"], ["https://data.delijn.be/stops/304775", "https://mivb.openplanner.team/stops/2218F"], ["https://data.delijn.be/stops/300955", "https://mivb.openplanner.team/stops/2725"], ["http://irail.be/stations/NMBS/008833274", "https://data.delijn.be/stops/307372"], ["http://irail.be/stations/NMBS/008842689", "https://tec.openplanner.team/stops/LESchac1"], ["http://irail.be/stations/NMBS/008874559", "https://tec.openplanner.team/stops/Cfachap2"], ["http://irail.be/stations/NMBS/008821030", "https://data.delijn.be/stops/105316"], ["http://irail.be/stations/NMBS/008814456", "https://mivb.openplanner.team/stops/5415"], ["http://irail.be/stations/NMBS/008841004", "https://tec.openplanner.team/stops/LlgguilD"], ["https://data.delijn.be/stops/308818", "https://mivb.openplanner.team/stops/6357F"], ["https://data.delijn.be/stops/404686", "https://tec.openplanner.team/stops/LWipaif3"], ["https://data.delijn.be/stops/302450", "https://tec.openplanner.team/stops/Bzlufbo2"], ["http://irail.be/stations/NMBS/008861119", "https://tec.openplanner.team/stops/N501gba"], ["https://data.delijn.be/stops/300938", "https://mivb.openplanner.team/stops/6864F"], ["https://data.delijn.be/stops/308723", "https://tec.openplanner.team/stops/Bgoewat2"], ["https://data.delijn.be/stops/303583", "https://mivb.openplanner.team/stops/9701"], ["http://irail.be/stations/NMBS/008728686", "https://tec.openplanner.team/stops/H4rm110a"], ["https://data.delijn.be/stops/408800", "https://tec.openplanner.team/stops/LVItroi*"], ["https://data.delijn.be/stops/301046", "https://mivb.openplanner.team/stops/8462"], ["http://irail.be/stations/NMBS/008895232", "https://data.delijn.be/stops/208813"], ["http://irail.be/stations/NMBS/008884541", "https://tec.openplanner.team/stops/H1qu105b"], ["https://data.delijn.be/stops/208762", "https://tec.openplanner.team/stops/H5rx100a"], ["https://data.delijn.be/stops/407205", "https://tec.openplanner.team/stops/LHTmonu1"], ["https://data.delijn.be/stops/305388", "https://mivb.openplanner.team/stops/1687F"], ["http://irail.be/stations/NMBS/008832615", "https://data.delijn.be/stops/406931"], ["https://data.delijn.be/stops/208766", "https://tec.openplanner.team/stops/H5rx146b"], ["https://data.delijn.be/stops/304037", "https://tec.openplanner.team/stops/Boveker1"], ["https://data.delijn.be/stops/304721", "https://mivb.openplanner.team/stops/5866"], ["https://data.delijn.be/stops/301021", "https://mivb.openplanner.team/stops/1209"], ["https://data.delijn.be/stops/408820", "https://tec.openplanner.team/stops/LMgbatt1"], ["http://irail.be/stations/NMBS/008864956", "https://tec.openplanner.team/stops/N564aba"], ["https://data.delijn.be/stops/209178", "https://tec.openplanner.team/stops/H5el100b"], ["http://irail.be/stations/NMBS/008843323", "https://tec.openplanner.team/stops/LNHhome2"], ["https://data.delijn.be/stops/307813", "https://mivb.openplanner.team/stops/2015"], ["https://data.delijn.be/stops/407206", "https://tec.openplanner.team/stops/LHThall3"], ["http://irail.be/stations/NMBS/008842705", "https://tec.openplanner.team/stops/LCPlacr1"], ["https://data.delijn.be/stops/409797", "https://tec.openplanner.team/stops/LBSvi522"], ["https://data.delijn.be/stops/308727", "https://tec.openplanner.team/stops/Bhakmkr1"], ["https://data.delijn.be/stops/408601", "https://tec.openplanner.team/stops/LToluik2"], ["http://irail.be/stations/NMBS/008844644", "https://tec.openplanner.team/stops/LhGfl241"], ["https://mivb.openplanner.team/stops/3552", "https://tec.openplanner.team/stops/Baudvdr2"], ["https://data.delijn.be/stops/307504", "https://tec.openplanner.team/stops/Brsrrcu1"], ["https://data.delijn.be/stops/405448", "https://tec.openplanner.team/stops/LWHzave2"], ["http://irail.be/stations/NMBS/008832235", "https://data.delijn.be/stops/410006"], ["https://data.delijn.be/stops/301078", "https://mivb.openplanner.team/stops/0420147"], ["http://irail.be/stations/NMBS/008869047", "https://tec.openplanner.team/stops/X615acb"], ["http://irail.be/stations/NMBS/008814373", "https://mivb.openplanner.team/stops/5964"], ["https://data.delijn.be/stops/503331", "https://tec.openplanner.team/stops/H4do105a"], ["http://irail.be/stations/NMBS/008891702", "https://data.delijn.be/stops/501338"], ["http://irail.be/stations/NMBS/008814126", "https://mivb.openplanner.team/stops/2452"], ["http://irail.be/stations/NMBS/008843901", "https://tec.openplanner.team/stops/Llggeer3"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N568ada"], ["http://irail.be/stations/NMBS/008841327", "https://tec.openplanner.team/stops/LVGeg--5"], ["http://irail.be/stations/NMBS/008895877", "https://data.delijn.be/stops/206059"], ["https://data.delijn.be/stops/300579", "https://mivb.openplanner.team/stops/6203"], ["http://irail.be/stations/NMBS/008841525", "https://tec.openplanner.team/stops/Llgcadr4"], ["http://irail.be/stations/NMBS/008841673", "https://tec.openplanner.team/stops/Lligare2"], ["https://data.delijn.be/stops/300953", "https://mivb.openplanner.team/stops/59"], ["https://data.delijn.be/stops/207757", "https://tec.openplanner.team/stops/H5rx101a"], ["https://data.delijn.be/stops/300763", "https://mivb.openplanner.team/stops/1259"], ["http://irail.be/stations/NMBS/008843240", "https://tec.openplanner.team/stops/LENmc--2"], ["http://irail.be/stations/NMBS/008895752", "https://data.delijn.be/stops/206719"], ["https://data.delijn.be/stops/306930", "https://tec.openplanner.team/stops/Bgoekaz1"], ["https://data.delijn.be/stops/300826", "https://mivb.openplanner.team/stops/2828"], ["http://irail.be/stations/NMBS/008811304", "https://mivb.openplanner.team/stops/1769"], ["http://irail.be/stations/NMBS/008886587", "https://tec.openplanner.team/stops/H1le125b"], ["http://irail.be/stations/NMBS/008843224", "https://tec.openplanner.team/stops/Lfhvoye1"], ["https://data.delijn.be/stops/507766", "https://tec.openplanner.team/stops/H4ae102a"], ["https://data.delijn.be/stops/302807", "https://mivb.openplanner.team/stops/1673"], ["https://data.delijn.be/stops/305337", "https://tec.openplanner.team/stops/Blmlvex2"], ["https://data.delijn.be/stops/307199", "https://tec.openplanner.team/stops/Bhalker1"], ["http://irail.be/stations/NMBS/008200136", "https://tec.openplanner.team/stops/X793aqa"], ["http://irail.be/stations/NMBS/008815040", "https://mivb.openplanner.team/stops/2"], ["https://data.delijn.be/stops/304204", "https://tec.openplanner.team/stops/Brsrrcu2"], ["http://irail.be/stations/NMBS/008008094", "https://tec.openplanner.team/stops/LrTpost2"], ["https://data.delijn.be/stops/301478", "https://mivb.openplanner.team/stops/7660209"], ["http://irail.be/stations/NMBS/008892080", "https://data.delijn.be/stops/201281"], ["http://irail.be/stations/NMBS/008811403", "https://mivb.openplanner.team/stops/4366"], ["https://data.delijn.be/stops/308720", "https://tec.openplanner.team/stops/Bgoevli1"], ["https://data.delijn.be/stops/301768", "https://mivb.openplanner.team/stops/4270F"], ["https://data.delijn.be/stops/306781", "https://tec.openplanner.team/stops/LLagert*"], ["https://data.delijn.be/stops/301029", "https://mivb.openplanner.team/stops/6425F"], ["https://data.delijn.be/stops/304580", "https://mivb.openplanner.team/stops/2221"], ["https://data.delijn.be/stops/304091", "https://tec.openplanner.team/stops/Bovesol2"], ["https://data.delijn.be/stops/301925", "https://mivb.openplanner.team/stops/9851"], ["https://data.delijn.be/stops/402551", "https://tec.openplanner.team/stops/LCAcruc2"], ["http://irail.be/stations/NMBS/008884640", "https://tec.openplanner.team/stops/H5gr137b"], ["http://irail.be/stations/NMBS/008861333", "https://tec.openplanner.team/stops/N576afb"], ["http://irail.be/stations/NMBS/008896925", "https://data.delijn.be/stops/500955"], ["https://data.delijn.be/stops/301925", "https://mivb.openplanner.team/stops/2071"], ["https://data.delijn.be/stops/401408", "https://mivb.openplanner.team/stops/1385"], ["https://data.delijn.be/stops/504241", "https://tec.openplanner.team/stops/H4co134a"], ["https://data.delijn.be/stops/307283", "https://tec.openplanner.team/stops/Bbchgod1"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/CMsud1"], ["https://data.delijn.be/stops/300314", "https://tec.openplanner.team/stops/Bhmmcge1"], ["https://data.delijn.be/stops/306064", "https://tec.openplanner.team/stops/Brsggea1"], ["https://data.delijn.be/stops/300956", "https://mivb.openplanner.team/stops/1813"], ["http://irail.be/stations/NMBS/008833670", "https://data.delijn.be/stops/405390"], ["https://data.delijn.be/stops/300861", "https://mivb.openplanner.team/stops/4217"], ["http://irail.be/stations/NMBS/008886066", "https://tec.openplanner.team/stops/H5me105a"], ["https://data.delijn.be/stops/301055", "https://mivb.openplanner.team/stops/5071"], ["http://irail.be/stations/NMBS/008865565", "https://tec.openplanner.team/stops/X850aia"], ["http://irail.be/stations/NMBS/008863362", "https://tec.openplanner.team/stops/N538akb"], ["https://data.delijn.be/stops/401650", "https://tec.openplanner.team/stops/Bracgar2"], ["https://data.delijn.be/stops/208765", "https://tec.openplanner.team/stops/H5rx125a"], ["http://irail.be/stations/NMBS/008832250", "https://data.delijn.be/stops/404231"], ["https://mivb.openplanner.team/stops/6158", "https://tec.openplanner.team/stops/Bixleix1"], ["https://data.delijn.be/stops/300771", "https://mivb.openplanner.team/stops/7670108"], ["http://irail.be/stations/NMBS/008893252", "https://data.delijn.be/stops/201002"], ["http://irail.be/stations/NMBS/008813045", "https://mivb.openplanner.team/stops/1901"], ["http://irail.be/stations/NMBS/008891173", "https://data.delijn.be/stops/501461"], ["https://data.delijn.be/stops/403702", "https://tec.openplanner.team/stops/LOeelbe2"], ["http://irail.be/stations/NMBS/008821063", "https://data.delijn.be/stops/101620"], ["http://irail.be/stations/NMBS/008872553", "https://tec.openplanner.team/stops/Btilsnc1"], ["http://irail.be/stations/NMBS/008871605", "https://tec.openplanner.team/stops/H1er109a"], ["https://data.delijn.be/stops/307644", "https://mivb.openplanner.team/stops/1935"], ["https://mivb.openplanner.team/stops/4362", "https://tec.openplanner.team/stops/Bixefra1"], ["https://data.delijn.be/stops/301068", "https://mivb.openplanner.team/stops/3253F"], ["https://data.delijn.be/stops/301009", "https://mivb.openplanner.team/stops/1094"], ["https://data.delijn.be/stops/301399", "https://mivb.openplanner.team/stops/5922"], ["http://irail.be/stations/NMBS/008822145", "https://data.delijn.be/stops/206337"], ["http://irail.be/stations/NMBS/008875002", "https://tec.openplanner.team/stops/N134abb"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2re163a"], ["http://irail.be/stations/NMBS/008814464", "https://data.delijn.be/stops/300016"], ["https://data.delijn.be/stops/400474", "https://tec.openplanner.team/stops/LGLdeni2"], ["http://irail.be/stations/NMBS/008895000", "https://data.delijn.be/stops/217002"], ["http://irail.be/stations/NMBS/008821154", "https://data.delijn.be/stops/104090"], ["https://data.delijn.be/stops/300888", "https://mivb.openplanner.team/stops/3260"], ["https://data.delijn.be/stops/208173", "https://tec.openplanner.team/stops/H5fl103a"], ["https://data.delijn.be/stops/509860", "https://tec.openplanner.team/stops/H4mo190b"], ["http://irail.be/stations/NMBS/008814167", "https://tec.openplanner.team/stops/Brsggar2"], ["http://irail.be/stations/NMBS/008871514", "https://tec.openplanner.team/stops/Cfmwaut1"], ["https://mivb.openplanner.team/stops/1585", "https://tec.openplanner.team/stops/Bwolvan2"], ["https://data.delijn.be/stops/408992", "https://tec.openplanner.team/stops/LWAvisi2"], ["http://irail.be/stations/NMBS/008881406", "https://tec.openplanner.team/stops/H1ob335c"], ["http://irail.be/stations/NMBS/008864931", "https://tec.openplanner.team/stops/N570agb"], ["https://data.delijn.be/stops/301113", "https://mivb.openplanner.team/stops/5825"], ["http://irail.be/stations/NMBS/008814159", "https://data.delijn.be/stops/307693"], ["https://data.delijn.be/stops/405744", "https://tec.openplanner.team/stops/Llgpire2"], ["http://irail.be/stations/NMBS/008874567", "https://tec.openplanner.team/stops/Cfaamio1"], ["https://data.delijn.be/stops/301079", "https://mivb.openplanner.team/stops/6434F"], ["http://irail.be/stations/NMBS/008821519", "https://data.delijn.be/stops/102401"], ["http://irail.be/stations/NMBS/008833209", "https://data.delijn.be/stops/300071"], ["http://irail.be/stations/NMBS/008893252", "https://data.delijn.be/stops/211856"], ["https://data.delijn.be/stops/504563", "https://tec.openplanner.team/stops/H4co148b"], ["https://data.delijn.be/stops/505842", "https://tec.openplanner.team/stops/H4co133b"], ["https://data.delijn.be/stops/407214", "https://tec.openplanner.team/stops/LHSvina1"], ["https://data.delijn.be/stops/300323", "https://tec.openplanner.team/stops/Balswsa1"], ["http://irail.be/stations/NMBS/008861168", "https://tec.openplanner.team/stops/N534aeb"], ["http://irail.be/stations/NMBS/008400219", "https://tec.openplanner.team/stops/LLAvi651"], ["https://data.delijn.be/stops/307649", "https://tec.openplanner.team/stops/Balswsa1"], ["https://data.delijn.be/stops/308726", "https://tec.openplanner.team/stops/Bgoevli1"], ["https://data.delijn.be/stops/408865", "https://tec.openplanner.team/stops/LWRgare1"], ["https://data.delijn.be/stops/408897", "https://tec.openplanner.team/stops/LFPkerk1"], ["https://data.delijn.be/stops/302903", "https://tec.openplanner.team/stops/Bhevl3l1"], ["http://irail.be/stations/NMBS/008883212", "https://tec.openplanner.team/stops/Becegar1"], ["https://data.delijn.be/stops/400492", "https://tec.openplanner.team/stops/LBSnouw1"], ["http://irail.be/stations/NMBS/008893401", "https://data.delijn.be/stops/207861"], ["http://irail.be/stations/NMBS/008812120", "https://data.delijn.be/stops/207178"], ["https://data.delijn.be/stops/408964", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://data.delijn.be/stops/408918", "https://tec.openplanner.team/stops/LTEcamp1"], ["https://data.delijn.be/stops/302423", "https://tec.openplanner.team/stops/Bsrgcur2"], ["https://mivb.openplanner.team/stops/1046G", "https://tec.openplanner.team/stops/Bixlaca2"], ["https://data.delijn.be/stops/304076", "https://tec.openplanner.team/stops/Bovesnh1"], ["http://irail.be/stations/NMBS/008824224", "https://data.delijn.be/stops/101086"], ["http://irail.be/stations/NMBS/008864469", "https://tec.openplanner.team/stops/X982apb"], ["http://irail.be/stations/NMBS/008831039", "https://data.delijn.be/stops/400119"], ["https://data.delijn.be/stops/408844", "https://tec.openplanner.team/stops/LRmsmvo2"], ["https://data.delijn.be/stops/405734", "https://tec.openplanner.team/stops/Lrclant4"], ["https://data.delijn.be/stops/208406", "https://tec.openplanner.team/stops/H5rx115a"], ["https://data.delijn.be/stops/406461", "https://tec.openplanner.team/stops/LOTsav-1"], ["https://data.delijn.be/stops/301050", "https://mivb.openplanner.team/stops/5009F"], ["http://irail.be/stations/NMBS/008881190", "https://tec.openplanner.team/stops/H1mj126b"], ["https://data.delijn.be/stops/301399", "https://mivb.openplanner.team/stops/2661"], ["https://data.delijn.be/stops/504004", "https://tec.openplanner.team/stops/H4mo192a"], ["http://irail.be/stations/NMBS/008842838", "https://tec.openplanner.team/stops/LGmcent1"], ["https://data.delijn.be/stops/307878", "https://mivb.openplanner.team/stops/9853"], ["https://data.delijn.be/stops/302238", "https://tec.openplanner.team/stops/Blhupqu1"], ["http://irail.be/stations/NMBS/008892304", "https://data.delijn.be/stops/504503"], ["https://data.delijn.be/stops/508332", "https://tec.openplanner.team/stops/H4eh100b"], ["http://irail.be/stations/NMBS/008015345", "https://tec.openplanner.team/stops/LaAjahn1"], ["https://data.delijn.be/stops/300787", "https://mivb.openplanner.team/stops/1482"], ["http://irail.be/stations/NMBS/008842036", "https://tec.openplanner.team/stops/Lcelhon3"], ["https://data.delijn.be/stops/408830", "https://tec.openplanner.team/stops/LBWeg--4"], ["http://irail.be/stations/NMBS/008822004", "https://data.delijn.be/stops/108057"], ["https://data.delijn.be/stops/302425", "https://tec.openplanner.team/stops/Bjodrga1"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N570aca"], ["http://irail.be/stations/NMBS/008863362", "https://tec.openplanner.team/stops/N538axb"], ["http://irail.be/stations/NMBS/008833233", "https://data.delijn.be/stops/304352"], ["http://irail.be/stations/NMBS/008841731", "https://tec.openplanner.team/stops/LPAmc--2"], ["https://data.delijn.be/stops/300875", "https://mivb.openplanner.team/stops/4232"], ["http://irail.be/stations/NMBS/008811270", "https://data.delijn.be/stops/302088"], ["https://data.delijn.be/stops/301051", "https://mivb.openplanner.team/stops/5089"], ["https://data.delijn.be/stops/505276", "https://tec.openplanner.team/stops/H4eh101a"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Canplch3"], ["https://data.delijn.be/stops/205982", "https://tec.openplanner.team/stops/H4rs117a"], ["http://irail.be/stations/NMBS/008885530", "https://tec.openplanner.team/stops/H4my122a"], ["http://irail.be/stations/NMBS/008894672", "https://data.delijn.be/stops/205654"], ["http://irail.be/stations/NMBS/008891132", "https://data.delijn.be/stops/200832"], ["https://mivb.openplanner.team/stops/5825", "https://tec.openplanner.team/stops/Bucceng1"], ["http://irail.be/stations/NMBS/008881166", "https://tec.openplanner.team/stops/H1ju121b"], ["https://data.delijn.be/stops/300877", "https://mivb.openplanner.team/stops/5400"], ["https://data.delijn.be/stops/209395", "https://tec.openplanner.team/stops/H4or116a"], ["https://data.delijn.be/stops/302387", "https://tec.openplanner.team/stops/Bgzdgpa1"], ["http://irail.be/stations/NMBS/008891611", "https://data.delijn.be/stops/501472"], ["https://mivb.openplanner.team/stops/3526", "https://tec.openplanner.team/stops/Baudulb2"], ["http://irail.be/stations/NMBS/008824158", "https://data.delijn.be/stops/102880"], ["https://data.delijn.be/stops/300969", "https://mivb.openplanner.team/stops/3522"], ["https://data.delijn.be/stops/305892", "https://mivb.openplanner.team/stops/9729"], ["http://irail.be/stations/NMBS/008844230", "https://tec.openplanner.team/stops/LNEgare*"], ["https://data.delijn.be/stops/405720", "https://tec.openplanner.team/stops/LlgLAMB5"], ["https://data.delijn.be/stops/305914", "https://mivb.openplanner.team/stops/2508"], ["https://data.delijn.be/stops/208614", "https://tec.openplanner.team/stops/H1bd102b"], ["http://irail.be/stations/NMBS/008811767", "https://tec.openplanner.team/stops/Bpechos1"], ["http://irail.be/stations/NMBS/008822343", "https://data.delijn.be/stops/105192"], ["http://irail.be/stations/NMBS/008873312", "https://tec.openplanner.team/stops/N162afa"], ["http://irail.be/stations/NMBS/008886553", "https://tec.openplanner.team/stops/H1le124a"], ["http://irail.be/stations/NMBS/008892031", "https://data.delijn.be/stops/200180"], ["http://irail.be/stations/NMBS/008845146", "https://tec.openplanner.team/stops/X750bga"], ["http://irail.be/stations/NMBS/008871837", "https://tec.openplanner.team/stops/Cmyjaci2"], ["https://data.delijn.be/stops/302398", "https://mivb.openplanner.team/stops/6811"], ["https://data.delijn.be/stops/207754", "https://tec.openplanner.team/stops/H4ss158b"], ["http://irail.be/stations/NMBS/008866142", "https://tec.openplanner.team/stops/X670ama"], ["https://data.delijn.be/stops/307835", "https://mivb.openplanner.team/stops/2041"], ["http://irail.be/stations/NMBS/008893443", "https://data.delijn.be/stops/207353"], ["http://irail.be/stations/NMBS/008861531", "https://tec.openplanner.team/stops/Bchamco1"], ["http://irail.be/stations/NMBS/008811536", "https://tec.openplanner.team/stops/Brixpao3"], ["http://irail.be/stations/NMBS/008895422", "https://data.delijn.be/stops/209696"], ["https://data.delijn.be/stops/208589", "https://tec.openplanner.team/stops/H1mk115a"], ["https://mivb.openplanner.team/stops/5414F", "https://tec.openplanner.team/stops/Bixlozo1"], ["https://data.delijn.be/stops/300991", "https://mivb.openplanner.team/stops/3704"], ["https://data.delijn.be/stops/307971", "https://tec.openplanner.team/stops/Bwavcar1"], ["https://data.delijn.be/stops/400495", "https://tec.openplanner.team/stops/LHScite1"], ["http://irail.be/stations/NMBS/008849064", "https://tec.openplanner.team/stops/LVItcm-1"], ["http://irail.be/stations/NMBS/008893401", "https://data.delijn.be/stops/207299"], ["https://data.delijn.be/stops/304452", "https://tec.openplanner.team/stops/Brsgter1"], ["http://irail.be/stations/NMBS/008711184", "https://tec.openplanner.team/stops/N425aba"], ["http://irail.be/stations/NMBS/008885001", "https://tec.openplanner.team/stops/H4ty305d"], ["http://irail.be/stations/NMBS/008849064", "https://tec.openplanner.team/stops/LLxmonu1"], ["http://irail.be/stations/NMBS/008886546", "https://tec.openplanner.team/stops/H1le121b"], ["http://irail.be/stations/NMBS/008873122", "https://tec.openplanner.team/stops/N101aua"], ["https://data.delijn.be/stops/300941", "https://mivb.openplanner.team/stops/3279"], ["http://irail.be/stations/NMBS/008891629", "https://data.delijn.be/stops/509896"], ["https://mivb.openplanner.team/stops/4299", "https://tec.openplanner.team/stops/Baudtri2"], ["https://data.delijn.be/stops/407201", "https://tec.openplanner.team/stops/LHegame4"], ["https://data.delijn.be/stops/301687", "https://tec.openplanner.team/stops/Bnetrbr2"], ["https://data.delijn.be/stops/405739", "https://tec.openplanner.team/stops/Lrclohe1"], ["https://data.delijn.be/stops/300319", "https://tec.openplanner.team/stops/Bbeaech2"], ["http://irail.be/stations/NMBS/008891645", "https://data.delijn.be/stops/501674"], ["http://irail.be/stations/NMBS/008863438", "https://tec.openplanner.team/stops/N506bhb"], ["http://irail.be/stations/NMBS/008886348", "https://tec.openplanner.team/stops/H4lz121a"], ["https://data.delijn.be/stops/304065", "https://tec.openplanner.team/stops/Bovevnd2"], ["http://irail.be/stations/NMBS/008893526", "https://data.delijn.be/stops/207280"], ["http://irail.be/stations/NMBS/008865003", "https://tec.openplanner.team/stops/X801bma"], ["http://irail.be/stations/NMBS/008886587", "https://tec.openplanner.team/stops/H5la177b"], ["http://irail.be/stations/NMBS/008811817", "https://tec.openplanner.team/stops/Bottegl1"], ["http://irail.be/stations/NMBS/008864345", "https://tec.openplanner.team/stops/X999aga"], ["http://irail.be/stations/NMBS/008832334", "https://data.delijn.be/stops/403664"], ["http://irail.be/stations/NMBS/008881125", "https://tec.openplanner.team/stops/H1gh168a"], ["http://irail.be/stations/NMBS/008811759", "https://tec.openplanner.team/stops/Bgzdpis1"], ["https://data.delijn.be/stops/301927", "https://mivb.openplanner.team/stops/2069"], ["https://mivb.openplanner.team/stops/2715", "https://tec.openplanner.team/stops/Buccvch2"], ["http://irail.be/stations/NMBS/008861523", "https://tec.openplanner.team/stops/Bchadpt1"], ["http://irail.be/stations/NMBS/008871381", "https://tec.openplanner.team/stops/H2go116a"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N349adb"], ["http://irail.be/stations/NMBS/008883113", "https://tec.openplanner.team/stops/H3so166a"], ["http://irail.be/stations/NMBS/008884889", "https://tec.openplanner.team/stops/H4ca122b"], ["https://data.delijn.be/stops/307815", "https://tec.openplanner.team/stops/Bovesnh2"], ["https://data.delijn.be/stops/304086", "https://tec.openplanner.team/stops/Bgnvbsi1"], ["http://irail.be/stations/NMBS/008842689", "https://tec.openplanner.team/stops/LFNlato1"], ["http://irail.be/stations/NMBS/008821048", "https://data.delijn.be/stops/105626"], ["http://irail.be/stations/NMBS/008831310", "https://data.delijn.be/stops/408795"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/503460"], ["https://data.delijn.be/stops/400466", "https://tec.openplanner.team/stops/LEMec--1"], ["https://mivb.openplanner.team/stops/1975", "https://tec.openplanner.team/stops/Bixlpat1"], ["http://irail.be/stations/NMBS/008871852", "https://tec.openplanner.team/stops/Cmastma1"], ["https://data.delijn.be/stops/304447", "https://tec.openplanner.team/stops/Brsgece2"], ["https://data.delijn.be/stops/300778", "https://mivb.openplanner.team/stops/8651"], ["https://data.delijn.be/stops/209189", "https://tec.openplanner.team/stops/H5rx120a"], ["https://data.delijn.be/stops/300812", "https://mivb.openplanner.team/stops/4131B"], ["http://irail.be/stations/NMBS/008846201", "https://tec.openplanner.team/stops/LVIdepo3"], ["https://data.delijn.be/stops/301675", "https://tec.openplanner.team/stops/Bhaawdr1"], ["https://data.delijn.be/stops/404682", "https://tec.openplanner.team/stops/LWipaif4"], ["https://data.delijn.be/stops/302928", "https://tec.openplanner.team/stops/Blhulor1"], ["https://data.delijn.be/stops/405718", "https://tec.openplanner.team/stops/Llgwild6"], ["https://data.delijn.be/stops/303960", "https://tec.openplanner.team/stops/Bbldvaa2"], ["https://data.delijn.be/stops/300763", "https://mivb.openplanner.team/stops/1204"], ["https://mivb.openplanner.team/stops/4290", "https://tec.openplanner.team/stops/Bwbfckr1"], ["http://irail.be/stations/NMBS/008864964", "https://tec.openplanner.team/stops/N535aeb"], ["https://data.delijn.be/stops/404659", "https://tec.openplanner.team/stops/LJUmate2"], ["http://irail.be/stations/NMBS/008812245", "https://data.delijn.be/stops/308768"], ["http://irail.be/stations/NMBS/008843307", "https://tec.openplanner.team/stops/LHUlieg2"], ["http://irail.be/stations/NMBS/008831005", "https://data.delijn.be/stops/403064"], ["https://data.delijn.be/stops/301083", "https://mivb.openplanner.team/stops/2028"], ["https://data.delijn.be/stops/504452", "https://tec.openplanner.team/stops/H4mo164a"], ["http://irail.be/stations/NMBS/008812120", "https://data.delijn.be/stops/303843"], ["https://mivb.openplanner.team/stops/1873", "https://tec.openplanner.team/stops/Bbxlner1"], ["http://irail.be/stations/NMBS/008896008", "https://data.delijn.be/stops/510020"], ["https://data.delijn.be/stops/302399", "https://mivb.openplanner.team/stops/6"], ["https://data.delijn.be/stops/300579", "https://mivb.openplanner.team/stops/3164"], ["https://data.delijn.be/stops/208741", "https://tec.openplanner.team/stops/H5rx135a"], ["https://data.delijn.be/stops/408832", "https://tec.openplanner.team/stops/LMgwith2"], ["https://data.delijn.be/stops/307717", "https://mivb.openplanner.team/stops/1472"], ["https://data.delijn.be/stops/307555", "https://tec.openplanner.team/stops/Bstemco2"], ["http://irail.be/stations/NMBS/008841558", "https://tec.openplanner.team/stops/Llglonh2"], ["http://irail.be/stations/NMBS/008843067", "https://tec.openplanner.team/stops/Lsepuit2"], ["https://data.delijn.be/stops/408916", "https://tec.openplanner.team/stops/LFPdeme1"], ["https://mivb.openplanner.team/stops/5024", "https://tec.openplanner.team/stops/Buccdst2"], ["http://irail.be/stations/NMBS/008842754", "https://tec.openplanner.team/stops/LAYchal1"], ["http://irail.be/stations/NMBS/008866175", "https://tec.openplanner.team/stops/X651aaa"], ["https://data.delijn.be/stops/509239", "https://tec.openplanner.team/stops/H4co109a"], ["https://data.delijn.be/stops/504004", "https://tec.openplanner.team/stops/H4mo206b"], ["https://data.delijn.be/stops/408853", "https://tec.openplanner.team/stops/LFCdree1"], ["https://data.delijn.be/stops/307634", "https://mivb.openplanner.team/stops/5825"], ["https://data.delijn.be/stops/405716", "https://tec.openplanner.team/stops/Llglimb2"], ["https://data.delijn.be/stops/300395", "https://tec.openplanner.team/stops/Bhalgja2"], ["http://irail.be/stations/NMBS/008864006", "https://tec.openplanner.team/stops/N390aea"], ["https://data.delijn.be/stops/410152", "https://mivb.openplanner.team/stops/3304"], ["https://data.delijn.be/stops/300762", "https://mivb.openplanner.team/stops/8641"], ["http://irail.be/stations/NMBS/008864956", "https://tec.openplanner.team/stops/N564adb"], ["http://irail.be/stations/NMBS/008886504", "https://tec.openplanner.team/stops/H1le122d"], ["http://irail.be/stations/NMBS/008811403", "https://mivb.openplanner.team/stops/6157F"], ["https://mivb.openplanner.team/stops/1951", "https://tec.openplanner.team/stops/Buccdst1"], ["https://data.delijn.be/stops/308355", "https://mivb.openplanner.team/stops/6419F"], ["http://irail.be/stations/NMBS/008864931", "https://tec.openplanner.team/stops/N236afa"], ["http://irail.be/stations/NMBS/008814142", "https://data.delijn.be/stops/307646"], ["https://data.delijn.be/stops/408848", "https://tec.openplanner.team/stops/LRmsmvo2"], ["https://data.delijn.be/stops/408877", "https://tec.openplanner.team/stops/LFMkrut4"], ["http://irail.be/stations/NMBS/008822277", "https://data.delijn.be/stops/105134"], ["http://irail.be/stations/NMBS/008811163", "https://mivb.openplanner.team/stops/5362"], ["http://irail.be/stations/NMBS/008200110", "https://tec.openplanner.team/stops/X688abb"], ["https://data.delijn.be/stops/404654", "https://tec.openplanner.team/stops/Llaflot2"], ["https://data.delijn.be/stops/308047", "https://tec.openplanner.team/stops/Bovetdo1"], ["https://data.delijn.be/stops/404091", "https://tec.openplanner.team/stops/LOdcris2"], ["http://irail.be/stations/NMBS/008844644", "https://tec.openplanner.team/stops/LhGadap1"], ["https://data.delijn.be/stops/302793", "https://mivb.openplanner.team/stops/9551"], ["https://data.delijn.be/stops/308871", "https://mivb.openplanner.team/stops/5532"], ["http://irail.be/stations/NMBS/008883238", "https://tec.openplanner.team/stops/H2fa101a"], ["http://irail.be/stations/NMBS/008400131", "https://data.delijn.be/stops/102752"], ["https://data.delijn.be/stops/303249", "https://tec.openplanner.team/stops/Blkbbvh1"], ["http://irail.be/stations/NMBS/008728687", "https://tec.openplanner.team/stops/H4bx167b"], ["http://irail.be/stations/NMBS/008814431", "https://data.delijn.be/stops/303659"], ["https://data.delijn.be/stops/301042", "https://mivb.openplanner.team/stops/4595"], ["http://irail.be/stations/NMBS/008841467", "https://tec.openplanner.team/stops/LKmmelo2"], ["https://data.delijn.be/stops/300877", "https://mivb.openplanner.team/stops/1290"], ["https://data.delijn.be/stops/304168", "https://tec.openplanner.team/stops/Blemhon2"], ["https://data.delijn.be/stops/301071", "https://mivb.openplanner.team/stops/8382"], ["https://mivb.openplanner.team/stops/1455", "https://tec.openplanner.team/stops/Bwbfgar1"], ["https://data.delijn.be/stops/304088", "https://tec.openplanner.team/stops/Bovesog2"], ["http://irail.be/stations/NMBS/008844271", "https://tec.openplanner.team/stops/LTRgare4"], ["http://irail.be/stations/NMBS/008843141", "https://tec.openplanner.team/stops/Ljecocc2"], ["http://irail.be/stations/NMBS/008871183", "https://tec.openplanner.team/stops/Cjxdesc2"], ["http://irail.be/stations/NMBS/008841202", "https://tec.openplanner.team/stops/Lanstat2"], ["https://data.delijn.be/stops/300763", "https://mivb.openplanner.team/stops/2536"], ["https://data.delijn.be/stops/309669", "https://mivb.openplanner.team/stops/9683"], ["http://irail.be/stations/NMBS/008892080", "https://data.delijn.be/stops/208707"], ["http://irail.be/stations/NMBS/008863545", "https://tec.openplanner.team/stops/N229akc"], ["https://data.delijn.be/stops/401419", "https://mivb.openplanner.team/stops/1320"], ["https://data.delijn.be/stops/308129", "https://tec.openplanner.team/stops/Bgoestu2"], ["https://data.delijn.be/stops/307592", "https://tec.openplanner.team/stops/Bspkbeu1"], ["http://irail.be/stations/NMBS/008886546", "https://tec.openplanner.team/stops/H1bd100a"], ["https://data.delijn.be/stops/400492", "https://tec.openplanner.team/stops/LRGbett3"], ["http://irail.be/stations/NMBS/008821105", "https://data.delijn.be/stops/102737"], ["https://data.delijn.be/stops/302429", "https://tec.openplanner.team/stops/Bjod7co1"], ["http://irail.be/stations/NMBS/008886074", "https://tec.openplanner.team/stops/H1hh116a"], ["https://data.delijn.be/stops/307648", "https://mivb.openplanner.team/stops/1953"], ["http://irail.be/stations/NMBS/008843307", "https://tec.openplanner.team/stops/LHUmala1"], ["https://data.delijn.be/stops/509815", "https://tec.openplanner.team/stops/H4po127b"], ["https://mivb.openplanner.team/stops/1970", "https://tec.openplanner.team/stops/Buccobs2"], ["http://irail.be/stations/NMBS/008822228", "https://data.delijn.be/stops/106966"], ["https://data.delijn.be/stops/302831", "https://tec.openplanner.team/stops/LLaover3"], ["http://irail.be/stations/NMBS/008874559", "https://tec.openplanner.team/stops/Cfamonu8"], ["https://data.delijn.be/stops/301077", "https://mivb.openplanner.team/stops/6435"], ["https://data.delijn.be/stops/300797", "https://mivb.openplanner.team/stops/6858G"], ["https://data.delijn.be/stops/300829", "https://mivb.openplanner.team/stops/4998"], ["https://data.delijn.be/stops/406714", "https://tec.openplanner.team/stops/LOTsav-1"], ["http://irail.be/stations/NMBS/008811304", "https://mivb.openplanner.team/stops/1262B"], ["http://irail.be/stations/NMBS/008889011", "https://tec.openplanner.team/stops/H4rx176a"], ["https://data.delijn.be/stops/304931", "https://mivb.openplanner.team/stops/9784B"], ["https://data.delijn.be/stops/304642", "https://mivb.openplanner.team/stops/1679F"], ["https://data.delijn.be/stops/408841", "https://tec.openplanner.team/stops/LRmha262"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/Cchsud05"], ["https://data.delijn.be/stops/504296", "https://tec.openplanner.team/stops/H4mo144a"], ["https://mivb.openplanner.team/stops/1754", "https://tec.openplanner.team/stops/Baudhde1"], ["http://irail.be/stations/NMBS/008893518", "https://data.delijn.be/stops/206308"], ["http://irail.be/stations/NMBS/008879004", "https://tec.openplanner.team/stops/H1gg117a"], ["http://irail.be/stations/NMBS/008822517", "https://data.delijn.be/stops/301882"], ["http://irail.be/stations/NMBS/008841608", "https://tec.openplanner.team/stops/Lhrtunn2"], ["http://irail.be/stations/NMBS/008814373", "https://data.delijn.be/stops/303224"], ["http://irail.be/stations/NMBS/008893583", "https://data.delijn.be/stops/207590"], ["https://data.delijn.be/stops/300777", "https://mivb.openplanner.team/stops/7660209"], ["https://data.delijn.be/stops/302804", "https://mivb.openplanner.team/stops/5656"], ["https://data.delijn.be/stops/306647", "https://mivb.openplanner.team/stops/3004"], ["https://data.delijn.be/stops/408822", "https://tec.openplanner.team/stops/LMgberw2"], ["http://irail.be/stations/NMBS/008895778", "https://data.delijn.be/stops/206727"], ["https://data.delijn.be/stops/207763", "https://tec.openplanner.team/stops/H5rx139a"], ["https://data.delijn.be/stops/300962", "https://mivb.openplanner.team/stops/2753"], ["https://data.delijn.be/stops/207755", "https://tec.openplanner.team/stops/H5rx115d"], ["https://data.delijn.be/stops/300952", "https://mivb.openplanner.team/stops/0470159"], ["https://data.delijn.be/stops/301021", "https://mivb.openplanner.team/stops/1307F"], ["http://irail.be/stations/NMBS/008869054", "https://tec.openplanner.team/stops/X626acb"], ["https://data.delijn.be/stops/208402", "https://tec.openplanner.team/stops/H5rx110b"], ["https://data.delijn.be/stops/300825", "https://mivb.openplanner.team/stops/6607"], ["https://data.delijn.be/stops/300894", "https://mivb.openplanner.team/stops/1988"], ["https://data.delijn.be/stops/505272", "https://tec.openplanner.team/stops/H4eh101a"], ["https://data.delijn.be/stops/305918", "https://mivb.openplanner.team/stops/1194"], ["https://data.delijn.be/stops/508229", "https://tec.openplanner.team/stops/H4po130a"], ["http://irail.be/stations/NMBS/008814431", "https://tec.openplanner.team/stops/Blkbavo1"], ["http://irail.be/stations/NMBS/008895091", "https://data.delijn.be/stops/207412"], ["https://data.delijn.be/stops/307207", "https://tec.openplanner.team/stops/Bcbqcha1"], ["http://irail.be/stations/NMBS/008861150", "https://tec.openplanner.team/stops/N534bsa"], ["https://data.delijn.be/stops/301046", "https://mivb.openplanner.team/stops/6755"], ["http://irail.be/stations/NMBS/008400526", "https://data.delijn.be/stops/102323"], ["https://data.delijn.be/stops/300877", "https://mivb.openplanner.team/stops/4229"], ["http://irail.be/stations/NMBS/008865110", "https://tec.openplanner.team/stops/X725ada"], ["https://data.delijn.be/stops/208766", "https://tec.openplanner.team/stops/H4de114a"], ["https://mivb.openplanner.team/stops/1830", "https://tec.openplanner.team/stops/Bwolvan1"], ["https://data.delijn.be/stops/302928", "https://tec.openplanner.team/stops/Blhusor1"], ["https://data.delijn.be/stops/304048", "https://tec.openplanner.team/stops/Bovetwe1"], ["https://data.delijn.be/stops/301029", "https://mivb.openplanner.team/stops/2932"], ["https://data.delijn.be/stops/307043", "https://mivb.openplanner.team/stops/6203"], ["http://irail.be/stations/NMBS/008893518", "https://data.delijn.be/stops/207392"], ["https://data.delijn.be/stops/304933", "https://mivb.openplanner.team/stops/9784B"], ["http://irail.be/stations/NMBS/008895646", "https://data.delijn.be/stops/208575"], ["http://irail.be/stations/NMBS/008874583", "https://tec.openplanner.team/stops/N543chb"], ["http://irail.be/stations/NMBS/008892056", "https://data.delijn.be/stops/200696"], ["https://data.delijn.be/stops/300891", "https://mivb.openplanner.team/stops/5001F"], ["https://data.delijn.be/stops/306932", "https://tec.openplanner.team/stops/Bboseco1"], ["https://data.delijn.be/stops/301154", "https://mivb.openplanner.team/stops/5419"], ["https://data.delijn.be/stops/305423", "https://mivb.openplanner.team/stops/5528F"], ["http://irail.be/stations/NMBS/008873007", "https://tec.openplanner.team/stops/N106anb"], ["https://mivb.openplanner.team/stops/1134", "https://tec.openplanner.team/stops/Bbxlner1"], ["https://data.delijn.be/stops/301028", "https://tec.openplanner.team/stops/Bsgimca1"], ["https://data.delijn.be/stops/303650", "https://mivb.openplanner.team/stops/1511"], ["https://data.delijn.be/stops/301921", "https://mivb.openplanner.team/stops/2017"], ["https://data.delijn.be/stops/207782", "https://tec.openplanner.team/stops/H5rx127a"], ["http://irail.be/stations/NMBS/008822533", "https://data.delijn.be/stops/301868"], ["http://irail.be/stations/NMBS/008871514", "https://tec.openplanner.team/stops/Cfmcoro2"], ["https://data.delijn.be/stops/302381", "https://tec.openplanner.team/stops/Bwavlav2"], ["http://irail.be/stations/NMBS/008891652", "https://data.delijn.be/stops/506636"], ["http://irail.be/stations/NMBS/008861317", "https://tec.openplanner.team/stops/N522agb"], ["http://irail.be/stations/NMBS/008811106", "https://mivb.openplanner.team/stops/2996"], ["https://data.delijn.be/stops/306816", "https://tec.openplanner.team/stops/Balsbeg2"], ["http://irail.be/stations/NMBS/008891264", "https://data.delijn.be/stops/507663"], ["http://irail.be/stations/NMBS/008874567", "https://tec.openplanner.team/stops/Cfaysle2"], ["http://irail.be/stations/NMBS/008811445", "https://tec.openplanner.team/stops/Bhoeboo2"], ["http://irail.be/stations/NMBS/008865649", "https://tec.openplanner.team/stops/X343aic"], ["https://data.delijn.be/stops/301029", "https://tec.openplanner.team/stops/Bsgimca2"], ["https://data.delijn.be/stops/300747", "https://mivb.openplanner.team/stops/7680107"], ["http://irail.be/stations/NMBS/008895802", "https://data.delijn.be/stops/206101"], ["http://irail.be/stations/NMBS/008821022", "https://data.delijn.be/stops/103990"], ["https://data.delijn.be/stops/300827", "https://mivb.openplanner.team/stops/2833"], ["http://irail.be/stations/NMBS/008895000", "https://data.delijn.be/stops/205970"], ["https://data.delijn.be/stops/403701", "https://tec.openplanner.team/stops/LGreg--2"], ["https://data.delijn.be/stops/301059", "https://mivb.openplanner.team/stops/58"], ["http://irail.be/stations/NMBS/008896388", "https://data.delijn.be/stops/508076"], ["https://data.delijn.be/stops/208189", "https://tec.openplanner.team/stops/H5rx120b"], ["https://data.delijn.be/stops/408897", "https://tec.openplanner.team/stops/LFPkerk2"], ["https://data.delijn.be/stops/408901", "https://tec.openplanner.team/stops/LFPkerk1"], ["https://data.delijn.be/stops/300749", "https://mivb.openplanner.team/stops/1207"], ["https://data.delijn.be/stops/305243", "https://mivb.openplanner.team/stops/9786"], ["http://irail.be/stations/NMBS/008813037", "https://mivb.openplanner.team/stops/0610163"], ["https://data.delijn.be/stops/306311", "https://mivb.openplanner.team/stops/5751"], ["https://data.delijn.be/stops/300362", "https://tec.openplanner.team/stops/Bbrlvil2"], ["http://irail.be/stations/NMBS/008871217", "https://tec.openplanner.team/stops/Croegli2"], ["https://data.delijn.be/stops/405458", "https://tec.openplanner.team/stops/LWHmath2"], ["https://data.delijn.be/stops/305224", "https://tec.openplanner.team/stops/Bmrqpla1"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LMamuse3"], ["http://irail.be/stations/NMBS/008865110", "https://tec.openplanner.team/stops/X725aff"], ["https://data.delijn.be/stops/408951", "https://tec.openplanner.team/stops/LWAgare*"], ["https://data.delijn.be/stops/401411", "https://tec.openplanner.team/stops/Bettbue2"], ["https://data.delijn.be/stops/302437", "https://tec.openplanner.team/stops/Bsrgegl2"], ["https://data.delijn.be/stops/301029", "https://mivb.openplanner.team/stops/6408"], ["https://mivb.openplanner.team/stops/1718B", "https://tec.openplanner.team/stops/Baudsju2"], ["http://irail.be/stations/NMBS/008863461", "https://tec.openplanner.team/stops/N509bea"], ["http://irail.be/stations/NMBS/008821006", "https://data.delijn.be/stops/108005"], ["https://data.delijn.be/stops/305388", "https://mivb.openplanner.team/stops/1745"], ["https://data.delijn.be/stops/305347", "https://tec.openplanner.team/stops/Bwaveur1"], ["https://data.delijn.be/stops/307637", "https://mivb.openplanner.team/stops/5823"], ["https://data.delijn.be/stops/304018", "https://tec.openplanner.team/stops/Bovesol1"], ["https://data.delijn.be/stops/208762", "https://tec.openplanner.team/stops/H5rx100b"], ["https://data.delijn.be/stops/300366", "https://tec.openplanner.team/stops/Bwaucan1"], ["https://data.delijn.be/stops/305229", "https://mivb.openplanner.team/stops/9632"], ["http://irail.be/stations/NMBS/008892080", "https://data.delijn.be/stops/209707"], ["https://data.delijn.be/stops/308824", "https://tec.openplanner.team/stops/Blaneli1"], ["http://irail.be/stations/NMBS/008895455", "https://data.delijn.be/stops/206487"], ["https://data.delijn.be/stops/301118", "https://mivb.openplanner.team/stops/5604"], ["http://irail.be/stations/NMBS/008871837", "https://tec.openplanner.team/stops/Cldvign2"], ["http://irail.be/stations/NMBS/008844057", "https://tec.openplanner.team/stops/Lvepala9"], ["http://irail.be/stations/NMBS/008811254", "https://data.delijn.be/stops/302715"], ["https://data.delijn.be/stops/504307", "https://tec.openplanner.team/stops/H4mo144a"], ["https://data.delijn.be/stops/301110", "https://tec.openplanner.team/stops/Bucccre1"], ["http://irail.be/stations/NMBS/008831138", "https://data.delijn.be/stops/400859"], ["http://irail.be/stations/NMBS/008879004", "https://tec.openplanner.team/stops/H1be104a"], ["https://data.delijn.be/stops/307110", "https://tec.openplanner.team/stops/Bjodath1"], ["https://data.delijn.be/stops/300624", "https://tec.openplanner.team/stops/Bbealou2"], ["http://irail.be/stations/NMBS/008863362", "https://tec.openplanner.team/stops/N538arb"], ["https://data.delijn.be/stops/307262", "https://mivb.openplanner.team/stops/9657"], ["https://data.delijn.be/stops/307965", "https://tec.openplanner.team/stops/Bwavnep1"], ["http://irail.be/stations/NMBS/008814340", "https://data.delijn.be/stops/306970"], ["https://data.delijn.be/stops/408886", "https://tec.openplanner.team/stops/LVu40--2"], ["http://irail.be/stations/NMBS/008728600", "https://tec.openplanner.team/stops/H4ar103b"], ["https://data.delijn.be/stops/300940", "https://mivb.openplanner.team/stops/3130"], ["https://data.delijn.be/stops/307282", "https://tec.openplanner.team/stops/Bcbqa361"], ["https://data.delijn.be/stops/405448", "https://tec.openplanner.team/stops/LWscona1"], ["http://irail.be/stations/NMBS/008811742", "https://data.delijn.be/stops/302377"], ["https://data.delijn.be/stops/307975", "https://tec.openplanner.team/stops/Bwavfol1"], ["http://irail.be/stations/NMBS/008861127", "https://tec.openplanner.team/stops/N528akb"], ["https://data.delijn.be/stops/300752", "https://mivb.openplanner.team/stops/8651"], ["http://irail.be/stations/NMBS/008849064", "https://data.delijn.be/stops/408824"], ["http://irail.be/stations/NMBS/008881406", "https://tec.openplanner.team/stops/H1ha193a"], ["http://irail.be/stations/NMBS/008843224", "https://tec.openplanner.team/stops/Lpoprie2"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Cgzhour3"], ["http://irail.be/stations/NMBS/008866530", "https://tec.openplanner.team/stops/X617agb"], ["https://data.delijn.be/stops/305264", "https://mivb.openplanner.team/stops/1143"], ["https://data.delijn.be/stops/302177", "https://tec.openplanner.team/stops/Bzlucam1"], ["https://data.delijn.be/stops/408950", "https://tec.openplanner.team/stops/LWAfabr1"], ["https://data.delijn.be/stops/301247", "https://tec.openplanner.team/stops/Bhalrat1"], ["https://data.delijn.be/stops/408862", "https://tec.openplanner.team/stops/LFCscho1"], ["http://irail.be/stations/NMBS/008895000", "https://data.delijn.be/stops/216002"], ["https://data.delijn.be/stops/304872", "https://mivb.openplanner.team/stops/1629"], ["https://mivb.openplanner.team/stops/5025", "https://tec.openplanner.team/stops/Buccdst2"], ["https://data.delijn.be/stops/304599", "https://mivb.openplanner.team/stops/1379"], ["https://data.delijn.be/stops/209011", "https://tec.openplanner.team/stops/H1og136a"], ["http://irail.be/stations/NMBS/008865128", "https://tec.openplanner.team/stops/X725aeb"], ["https://mivb.openplanner.team/stops/5462F", "https://tec.openplanner.team/stops/Bixlozo1"], ["http://irail.be/stations/NMBS/008849072", "https://tec.openplanner.team/stops/X790alb"], ["http://irail.be/stations/NMBS/008873312", "https://tec.openplanner.team/stops/N106aeb"], ["https://data.delijn.be/stops/302001", "https://tec.openplanner.team/stops/Blemwro2"], ["http://irail.be/stations/NMBS/008886553", "https://tec.openplanner.team/stops/H1le118b"], ["https://data.delijn.be/stops/308868", "https://mivb.openplanner.team/stops/5515"], ["https://data.delijn.be/stops/300949", "https://mivb.openplanner.team/stops/1334"], ["http://irail.be/stations/NMBS/008844339", "https://tec.openplanner.team/stops/LTHroch2"], ["http://irail.be/stations/NMBS/008010316", "https://data.delijn.be/stops/404748"], ["https://data.delijn.be/stops/303955", "https://tec.openplanner.team/stops/Bbldvaa2"], ["https://data.delijn.be/stops/304569", "https://mivb.openplanner.team/stops/7650210"], ["https://data.delijn.be/stops/408963", "https://tec.openplanner.team/stops/LWAwila1"], ["https://data.delijn.be/stops/207754", "https://tec.openplanner.team/stops/H4ss158a"], ["https://mivb.openplanner.team/stops/2145", "https://tec.openplanner.team/stops/Buccpor1"], ["https://data.delijn.be/stops/408507", "https://tec.openplanner.team/stops/LTobilz2"], ["https://data.delijn.be/stops/400484", "https://tec.openplanner.team/stops/LRGgend1"], ["https://data.delijn.be/stops/503029", "https://tec.openplanner.team/stops/H4ae102a"], ["http://irail.be/stations/NMBS/008843224", "https://tec.openplanner.team/stops/Lfhnrou1"], ["http://irail.be/stations/NMBS/008841202", "https://tec.openplanner.team/stops/Llojeme4"], ["http://irail.be/stations/NMBS/008821121", "https://data.delijn.be/stops/101267"], ["http://irail.be/stations/NMBS/008831807", "https://data.delijn.be/stops/407931"], ["http://irail.be/stations/NMBS/008892304", "https://data.delijn.be/stops/505167"], ["http://irail.be/stations/NMBS/008833670", "https://tec.openplanner.team/stops/Braccen2"], ["http://irail.be/stations/NMBS/008843067", "https://tec.openplanner.team/stops/Lsehya-1"], ["http://irail.be/stations/NMBS/008821709", "https://data.delijn.be/stops/107052"], ["http://irail.be/stations/NMBS/008885522", "https://tec.openplanner.team/stops/H4fo118b"], ["https://data.delijn.be/stops/207764", "https://tec.openplanner.team/stops/H5rx130a"], ["https://data.delijn.be/stops/306968", "https://mivb.openplanner.team/stops/2824"], ["https://data.delijn.be/stops/302822", "https://tec.openplanner.team/stops/Blhugar2"], ["https://data.delijn.be/stops/306908", "https://tec.openplanner.team/stops/Bboseco1"], ["https://data.delijn.be/stops/300876", "https://mivb.openplanner.team/stops/5400"], ["http://irail.be/stations/NMBS/008881463", "https://tec.openplanner.team/stops/H2sb239a"], ["https://data.delijn.be/stops/305515", "https://mivb.openplanner.team/stops/9561"], ["https://data.delijn.be/stops/408747", "https://tec.openplanner.team/stops/LTowijk1"], ["https://data.delijn.be/stops/307246", "https://mivb.openplanner.team/stops/0350240"], ["https://data.delijn.be/stops/301165", "https://mivb.openplanner.team/stops/2143B"], ["http://irail.be/stations/NMBS/008821725", "https://data.delijn.be/stops/108241"], ["http://irail.be/stations/NMBS/008811304", "https://mivb.openplanner.team/stops/1133"], ["http://irail.be/stations/NMBS/008895570", "https://data.delijn.be/stops/208507"], ["https://data.delijn.be/stops/301154", "https://tec.openplanner.team/stops/Buccpin2"], ["http://irail.be/stations/NMBS/008895430", "https://data.delijn.be/stops/209690"], ["http://irail.be/stations/NMBS/008841525", "https://data.delijn.be/stops/405706"], ["http://irail.be/stations/NMBS/008842036", "https://tec.openplanner.team/stops/Lcegare2"], ["https://data.delijn.be/stops/405702", "https://tec.openplanner.team/stops/Llgpire2"], ["https://data.delijn.be/stops/306098", "https://tec.openplanner.team/stops/Bhevjac2"], ["https://data.delijn.be/stops/400452", "https://tec.openplanner.team/stops/LBPeg--1"], ["http://irail.be/stations/NMBS/008883220", "https://tec.openplanner.team/stops/H2ec106a"], ["https://data.delijn.be/stops/402022", "https://tec.openplanner.team/stops/LFMkrut4"], ["https://data.delijn.be/stops/307223", "https://tec.openplanner.team/stops/Bhalgar2"], ["http://irail.be/stations/NMBS/008833266", "https://data.delijn.be/stops/306858"], ["https://data.delijn.be/stops/408972", "https://tec.openplanner.team/stops/LWAlong1"], ["http://irail.be/stations/NMBS/008866407", "https://tec.openplanner.team/stops/X608abb"], ["http://irail.be/stations/NMBS/008842655", "https://tec.openplanner.team/stops/LESslmo1"], ["https://data.delijn.be/stops/306099", "https://tec.openplanner.team/stops/Bhevwzw2"], ["https://data.delijn.be/stops/304877", "https://mivb.openplanner.team/stops/9556"], ["https://data.delijn.be/stops/307792", "https://mivb.openplanner.team/stops/1746"], ["https://data.delijn.be/stops/307795", "https://mivb.openplanner.team/stops/5041B"], ["https://data.delijn.be/stops/404666", "https://tec.openplanner.team/stops/LJU51--1"], ["http://irail.be/stations/NMBS/008881000", "https://tec.openplanner.team/stops/H1ms259a"], ["http://irail.be/stations/NMBS/008811817", "https://tec.openplanner.team/stops/Bcseaba1"], ["http://irail.be/stations/NMBS/008821311", "https://data.delijn.be/stops/106901"], ["https://data.delijn.be/stops/408690", "https://tec.openplanner.team/stops/LTotrui2"], ["http://irail.be/stations/NMBS/008814142", "https://mivb.openplanner.team/stops/1935"], ["http://irail.be/stations/NMBS/008812112", "https://data.delijn.be/stops/301937"], ["https://data.delijn.be/stops/209373", "https://tec.openplanner.team/stops/H5rx151a"], ["https://data.delijn.be/stops/306932", "https://tec.openplanner.team/stops/Bgoekaz1"], ["http://irail.be/stations/NMBS/008894748", "https://data.delijn.be/stops/204530"], ["https://data.delijn.be/stops/303121", "https://mivb.openplanner.team/stops/3815"], ["https://data.delijn.be/stops/305168", "https://tec.openplanner.team/stops/Btiegoo1"], ["http://irail.be/stations/NMBS/008841525", "https://tec.openplanner.team/stops/LlgLAMB7"], ["https://data.delijn.be/stops/300767", "https://mivb.openplanner.team/stops/2217"], ["https://data.delijn.be/stops/300920", "https://mivb.openplanner.team/stops/6081"], ["http://irail.be/stations/NMBS/008844420", "https://tec.openplanner.team/stops/LSPec--1"], ["https://data.delijn.be/stops/305325", "https://mivb.openplanner.team/stops/9627"], ["https://data.delijn.be/stops/301132", "https://tec.openplanner.team/stops/Bixlaca1"], ["https://data.delijn.be/stops/401410", "https://mivb.openplanner.team/stops/2246F"], ["http://irail.be/stations/NMBS/008822111", "https://data.delijn.be/stops/307135"], ["http://irail.be/stations/NMBS/008844339", "https://tec.openplanner.team/stops/LTHmaka2"], ["http://irail.be/stations/NMBS/008814464", "https://data.delijn.be/stops/302872"], ["https://data.delijn.be/stops/401409", "https://mivb.openplanner.team/stops/0080422"], ["http://irail.be/stations/NMBS/008843133", "https://tec.openplanner.team/stops/Lscbour2"], ["http://irail.be/stations/NMBS/008844255", "https://tec.openplanner.team/stops/LFrfrai2"], ["https://mivb.openplanner.team/stops/1872B", "https://tec.openplanner.team/stops/Bettgle2"], ["https://data.delijn.be/stops/301129", "https://mivb.openplanner.team/stops/2136"], ["https://data.delijn.be/stops/301138", "https://tec.openplanner.team/stops/Buccham1"], ["https://data.delijn.be/stops/509381", "https://tec.openplanner.team/stops/H4pl137b"], ["https://data.delijn.be/stops/300815", "https://mivb.openplanner.team/stops/7810254"], ["https://data.delijn.be/stops/302401", "https://mivb.openplanner.team/stops/7"], ["http://irail.be/stations/NMBS/008822343", "https://data.delijn.be/stops/105076"], ["https://data.delijn.be/stops/303832", "https://mivb.openplanner.team/stops/6652"], ["https://data.delijn.be/stops/300859", "https://mivb.openplanner.team/stops/0536"], ["http://irail.be/stations/NMBS/008872066", "https://tec.openplanner.team/stops/Cchoues5"], ["https://mivb.openplanner.team/stops/5456", "https://tec.openplanner.team/stops/Bwbfhip2"], ["http://irail.be/stations/NMBS/008719203", "https://tec.openplanner.team/stops/X611aea"], ["https://data.delijn.be/stops/300747", "https://mivb.openplanner.team/stops/7"], ["http://irail.be/stations/NMBS/008895208", "https://data.delijn.be/stops/209447"], ["https://mivb.openplanner.team/stops/1965", "https://tec.openplanner.team/stops/Buccbou2"], ["https://data.delijn.be/stops/300757", "https://mivb.openplanner.team/stops/2220"], ["https://mivb.openplanner.team/stops/0210132", "https://tec.openplanner.team/stops/Baudstr1"], ["https://data.delijn.be/stops/307156", "https://tec.openplanner.team/stops/Bhalalb2"], ["https://data.delijn.be/stops/300888", "https://mivb.openplanner.team/stops/6654F"], ["http://irail.be/stations/NMBS/008821451", "https://data.delijn.be/stops/104334"], ["http://irail.be/stations/NMBS/008896388", "https://data.delijn.be/stops/503075"], ["https://data.delijn.be/stops/301012", "https://mivb.openplanner.team/stops/4006G"], ["http://irail.be/stations/NMBS/008833209", "https://data.delijn.be/stops/108607"], ["https://data.delijn.be/stops/301014", "https://mivb.openplanner.team/stops/1310"], ["http://irail.be/stations/NMBS/008833001", "https://data.delijn.be/stops/306086"], ["http://irail.be/stations/NMBS/008861440", "https://tec.openplanner.team/stops/N527aca"], ["https://data.delijn.be/stops/302393", "https://tec.openplanner.team/stops/Bpecdel2"], ["http://irail.be/stations/NMBS/008844347", "https://tec.openplanner.team/stops/Lhurfay1"], ["https://mivb.openplanner.team/stops/3562", "https://tec.openplanner.team/stops/Bixlaca2"], ["https://mivb.openplanner.team/stops/0350740", "https://tec.openplanner.team/stops/Bbxlmid1"], ["https://data.delijn.be/stops/302244", "https://tec.openplanner.team/stops/Bwbfbon1"], ["http://irail.be/stations/NMBS/008892692", "https://data.delijn.be/stops/208211"], ["https://data.delijn.be/stops/205982", "https://tec.openplanner.team/stops/H5rx128b"], ["https://data.delijn.be/stops/400465", "https://tec.openplanner.team/stops/LPlpomp2"], ["https://data.delijn.be/stops/300802", "https://mivb.openplanner.team/stops/1541"], ["https://data.delijn.be/stops/302427", "https://tec.openplanner.team/stops/Bjodrrg2"], ["https://data.delijn.be/stops/300933", "https://mivb.openplanner.team/stops/2903"], ["http://irail.be/stations/NMBS/008874724", "https://tec.openplanner.team/stops/N534aph"], ["https://data.delijn.be/stops/208765", "https://tec.openplanner.team/stops/H5rx146b"], ["https://data.delijn.be/stops/308125", "https://tec.openplanner.team/stops/Bgoesch3"], ["http://irail.be/stations/NMBS/008893518", "https://data.delijn.be/stops/206309"], ["https://data.delijn.be/stops/504305", "https://tec.openplanner.team/stops/H4mo186a"], ["http://irail.be/stations/NMBS/008811254", "https://data.delijn.be/stops/302780"], ["http://irail.be/stations/NMBS/008891645", "https://data.delijn.be/stops/501642"], ["http://irail.be/stations/NMBS/008814472", "https://mivb.openplanner.team/stops/4299"], ["https://data.delijn.be/stops/208402", "https://tec.openplanner.team/stops/H5rx128a"], ["http://irail.be/stations/NMBS/008822848", "https://data.delijn.be/stops/107889"], ["http://irail.be/stations/NMBS/008874054", "https://tec.openplanner.team/stops/Ccivill2"], ["http://irail.be/stations/NMBS/008863115", "https://tec.openplanner.team/stops/N501kmy"], ["https://data.delijn.be/stops/300782", "https://mivb.openplanner.team/stops/2564"], ["http://irail.be/stations/NMBS/008895240", "https://data.delijn.be/stops/208676"], ["http://irail.be/stations/NMBS/008811817", "https://tec.openplanner.team/stops/Bottpma1"], ["http://irail.be/stations/NMBS/008885704", "https://tec.openplanner.team/stops/H4lu125a"], ["http://irail.be/stations/NMBS/008864915", "https://tec.openplanner.team/stops/N254aha"], ["http://irail.be/stations/NMBS/008884335", "https://tec.openplanner.team/stops/H1qv116b"], ["http://irail.be/stations/NMBS/008811528", "https://tec.openplanner.team/stops/Bgnvbsi2"], ["https://data.delijn.be/stops/206772", "https://tec.openplanner.team/stops/H1gy115a"], ["https://data.delijn.be/stops/300972", "https://mivb.openplanner.team/stops/1757"], ["https://data.delijn.be/stops/307030", "https://tec.openplanner.team/stops/Balssvi2"], ["https://data.delijn.be/stops/208740", "https://tec.openplanner.team/stops/H5rx115a"], ["https://data.delijn.be/stops/301038", "https://mivb.openplanner.team/stops/8741"], ["http://irail.be/stations/NMBS/008822111", "https://data.delijn.be/stops/303393"], ["http://irail.be/stations/NMBS/008200110", "https://tec.openplanner.team/stops/X684aab"], ["http://irail.be/stations/NMBS/008821311", "https://data.delijn.be/stops/103923"], ["https://data.delijn.be/stops/305333", "https://tec.openplanner.team/stops/Bspkbeu2"], ["https://data.delijn.be/stops/401412", "https://tec.openplanner.team/stops/Bixepla2"], ["http://irail.be/stations/NMBS/008866530", "https://tec.openplanner.team/stops/X695ada"], ["https://data.delijn.be/stops/305344", "https://tec.openplanner.team/stops/Bbgewal1"], ["http://irail.be/stations/NMBS/008811635", "https://tec.openplanner.team/stops/Bottcbp2"], ["http://irail.be/stations/NMBS/008841731", "https://data.delijn.be/stops/408700"], ["http://irail.be/stations/NMBS/008811460", "https://data.delijn.be/stops/302232"], ["http://irail.be/stations/NMBS/008883808", "https://tec.openplanner.team/stops/Btubga04"], ["https://data.delijn.be/stops/301943", "https://mivb.openplanner.team/stops/0470651"], ["https://data.delijn.be/stops/307645", "https://mivb.openplanner.team/stops/1935"], ["https://data.delijn.be/stops/408888", "https://tec.openplanner.team/stops/LFMstat2"], ["https://data.delijn.be/stops/509532", "https://tec.openplanner.team/stops/H4wn129a"], ["http://irail.be/stations/NMBS/008875127", "https://tec.openplanner.team/stops/N135aka"], ["https://data.delijn.be/stops/207790", "https://tec.openplanner.team/stops/H5rx145b"], ["https://data.delijn.be/stops/504239", "https://tec.openplanner.team/stops/H4co134a"], ["https://data.delijn.be/stops/207767", "https://tec.openplanner.team/stops/H5rx126b"], ["http://irail.be/stations/NMBS/008873387", "https://tec.openplanner.team/stops/Chhthui1"], ["https://data.delijn.be/stops/302228", "https://tec.openplanner.team/stops/Blhufro1"], ["https://data.delijn.be/stops/307987", "https://mivb.openplanner.team/stops/3328"], ["https://data.delijn.be/stops/302395", "https://tec.openplanner.team/stops/Bpechos2"], ["https://data.delijn.be/stops/208023", "https://tec.openplanner.team/stops/H1og135a"], ["https://data.delijn.be/stops/208174", "https://tec.openplanner.team/stops/H5wo130a"], ["http://irail.be/stations/NMBS/008841558", "https://tec.openplanner.team/stops/Llgreyn1"], ["https://data.delijn.be/stops/400683", "https://tec.openplanner.team/stops/LGAnovi2"], ["https://data.delijn.be/stops/300346", "https://tec.openplanner.team/stops/Blkbbeu2"], ["https://data.delijn.be/stops/300906", "https://mivb.openplanner.team/stops/6453"], ["http://irail.be/stations/NMBS/008872066", "https://tec.openplanner.team/stops/CMoues1"], ["https://data.delijn.be/stops/508013", "https://tec.openplanner.team/stops/H4po127a"], ["https://data.delijn.be/stops/303996", "https://tec.openplanner.team/stops/Bovecha1"], ["https://data.delijn.be/stops/402652", "https://tec.openplanner.team/stops/LCAwals2"], ["https://data.delijn.be/stops/305227", "https://mivb.openplanner.team/stops/9605"], ["http://irail.be/stations/NMBS/008814365", "https://data.delijn.be/stops/304546"], ["http://irail.be/stations/NMBS/008821121", "https://data.delijn.be/stops/101520"], ["https://data.delijn.be/stops/300951", "https://mivb.openplanner.team/stops/1313"], ["http://irail.be/stations/NMBS/008886561", "https://tec.openplanner.team/stops/H1le118b"], ["https://data.delijn.be/stops/404686", "https://tec.openplanner.team/stops/LWipaif1"], ["https://data.delijn.be/stops/303653", "https://mivb.openplanner.team/stops/9575"], ["https://data.delijn.be/stops/300825", "https://mivb.openplanner.team/stops/0440549"], ["https://data.delijn.be/stops/300791", "https://mivb.openplanner.team/stops/3232"], ["https://data.delijn.be/stops/307647", "https://tec.openplanner.team/stops/Bbrlrph1"], ["https://data.delijn.be/stops/408870", "https://tec.openplanner.team/stops/LFCdree2"], ["http://irail.be/stations/NMBS/008811544", "https://tec.openplanner.team/stops/Blimbet3"], ["https://data.delijn.be/stops/304116", "https://tec.openplanner.team/stops/Bwavcin2"], ["https://data.delijn.be/stops/301046", "https://mivb.openplanner.team/stops/8461"], ["https://data.delijn.be/stops/307714", "https://tec.openplanner.team/stops/Brsgera2"], ["https://data.delijn.be/stops/300768", "https://mivb.openplanner.team/stops/3852"], ["http://irail.be/stations/NMBS/008866654", "https://tec.openplanner.team/stops/X615bdb"], ["http://irail.be/stations/NMBS/008882362", "https://tec.openplanner.team/stops/H3bi113b"], ["http://irail.be/stations/NMBS/008866175", "https://tec.openplanner.team/stops/X650afe"], ["http://irail.be/stations/NMBS/008812161", "https://data.delijn.be/stops/206357"], ["http://irail.be/stations/NMBS/008832615", "https://data.delijn.be/stops/406932"], ["https://data.delijn.be/stops/504233", "https://tec.openplanner.team/stops/H4co107b"], ["https://data.delijn.be/stops/301099", "https://tec.openplanner.team/stops/Bkrawil2"], ["https://data.delijn.be/stops/305144", "https://tec.openplanner.team/stops/H1mk108c"], ["http://irail.be/stations/NMBS/008891116", "https://data.delijn.be/stops/505225"], ["https://data.delijn.be/stops/302409", "https://mivb.openplanner.team/stops/7650110"], ["http://irail.be/stations/NMBS/008883022", "https://tec.openplanner.team/stops/Bhensei2"], ["https://data.delijn.be/stops/300811", "https://mivb.openplanner.team/stops/4126"], ["http://irail.be/stations/NMBS/008833209", "https://data.delijn.be/stops/109330"], ["http://irail.be/stations/NMBS/008814332", "https://tec.openplanner.team/stops/Blemsta1"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/N525aob"], ["http://irail.be/stations/NMBS/008843323", "https://tec.openplanner.team/stops/LNHhome1"], ["https://data.delijn.be/stops/209410", "https://tec.openplanner.team/stops/H5rx146a"], ["http://irail.be/stations/NMBS/008893039", "https://data.delijn.be/stops/210124"], ["https://data.delijn.be/stops/304177", "https://tec.openplanner.team/stops/Bbldvaa2"], ["http://irail.be/stations/NMBS/008814357", "https://data.delijn.be/stops/307490"], ["http://irail.be/stations/NMBS/008842705", "https://tec.openplanner.team/stops/LCPlacr2"], ["https://data.delijn.be/stops/509238", "https://tec.openplanner.team/stops/H4co158a"], ["https://data.delijn.be/stops/408991", "https://tec.openplanner.team/stops/LWAvisi2"], ["https://data.delijn.be/stops/300012", "https://mivb.openplanner.team/stops/2256F"], ["https://data.delijn.be/stops/300935", "https://mivb.openplanner.team/stops/5868"], ["https://data.delijn.be/stops/303670", "https://mivb.openplanner.team/stops/1727"], ["https://data.delijn.be/stops/308050", "https://tec.openplanner.team/stops/Btieast1"], ["https://data.delijn.be/stops/300785", "https://mivb.openplanner.team/stops/6857"], ["https://data.delijn.be/stops/408601", "https://tec.openplanner.team/stops/LToluik1"], ["http://irail.be/stations/NMBS/008821048", "https://data.delijn.be/stops/105291"], ["https://data.delijn.be/stops/407210", "https://tec.openplanner.team/stops/LRGbett3"], ["https://data.delijn.be/stops/303230", "https://mivb.openplanner.team/stops/9649"], ["http://irail.be/stations/NMBS/008891314", "https://data.delijn.be/stops/502498"], ["http://irail.be/stations/NMBS/008833308", "https://tec.openplanner.team/stops/Btiegar2"], ["https://data.delijn.be/stops/302871", "https://mivb.openplanner.team/stops/2138B"], ["http://irail.be/stations/NMBS/008891702", "https://data.delijn.be/stops/501342"], ["http://irail.be/stations/NMBS/008814126", "https://mivb.openplanner.team/stops/2414"], ["https://data.delijn.be/stops/307198", "https://tec.openplanner.team/stops/Bhaleur2"], ["https://data.delijn.be/stops/307035", "https://tec.openplanner.team/stops/Balswwe2"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N568acb"], ["https://data.delijn.be/stops/300830", "https://mivb.openplanner.team/stops/4274"], ["http://irail.be/stations/NMBS/008833126", "https://tec.openplanner.team/stops/Bhevgar1"], ["http://irail.be/stations/NMBS/008822475", "https://data.delijn.be/stops/300664"], ["https://mivb.openplanner.team/stops/6439", "https://tec.openplanner.team/stops/Bixlozo2"], ["http://irail.be/stations/NMBS/008811155", "https://data.delijn.be/stops/300897"], ["https://data.delijn.be/stops/407668", "https://tec.openplanner.team/stops/LBPboir1"], ["https://data.delijn.be/stops/406350", "https://tec.openplanner.team/stops/LMawilh3"], ["https://data.delijn.be/stops/302125", "https://tec.openplanner.team/stops/Bptecar1"], ["https://data.delijn.be/stops/300785", "https://mivb.openplanner.team/stops/2323"], ["https://data.delijn.be/stops/306913", "https://tec.openplanner.team/stops/Bbosdra2"], ["http://irail.be/stations/NMBS/008864956", "https://tec.openplanner.team/stops/N535amc"], ["https://data.delijn.be/stops/300837", "https://mivb.openplanner.team/stops/5776"], ["http://irail.be/stations/NMBS/008882206", "https://tec.openplanner.team/stops/H2ll197b"], ["http://irail.be/stations/NMBS/008811213", "https://data.delijn.be/stops/303552"], ["https://data.delijn.be/stops/207759", "https://tec.openplanner.team/stops/H5rx134b"], ["https://data.delijn.be/stops/304722", "https://mivb.openplanner.team/stops/7252B"], ["https://data.delijn.be/stops/307967", "https://tec.openplanner.team/stops/Bwavzno2"], ["https://data.delijn.be/stops/300315", "https://tec.openplanner.team/stops/Bhmmlad2"], ["https://data.delijn.be/stops/403761", "https://tec.openplanner.team/stops/LORroma1"], ["https://data.delijn.be/stops/408859", "https://tec.openplanner.team/stops/LFCotte2"], ["https://mivb.openplanner.team/stops/0060120", "https://tec.openplanner.team/stops/Bbxlple2"], ["https://data.delijn.be/stops/300805", "https://mivb.openplanner.team/stops/2257B"], ["http://irail.be/stations/NMBS/008821451", "https://data.delijn.be/stops/102237"], ["https://data.delijn.be/stops/304031", "https://tec.openplanner.team/stops/Bovehst2"], ["http://irail.be/stations/NMBS/008814118", "https://mivb.openplanner.team/stops/2667"], ["https://data.delijn.be/stops/301039", "https://mivb.openplanner.team/stops/1244"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LMastat3"], ["https://data.delijn.be/stops/301061", "https://mivb.openplanner.team/stops/5015"], ["http://irail.be/stations/NMBS/008865110", "https://tec.openplanner.team/stops/X725bga"], ["https://data.delijn.be/stops/304547", "https://mivb.openplanner.team/stops/9679"], ["https://data.delijn.be/stops/307213", "https://tec.openplanner.team/stops/Bhaltre2"], ["https://data.delijn.be/stops/509533", "https://tec.openplanner.team/stops/H4wn126b"], ["http://irail.be/stations/NMBS/008200133", "https://tec.openplanner.team/stops/X764afb"], ["https://data.delijn.be/stops/306906", "https://tec.openplanner.team/stops/Bgoekaz2"], ["http://irail.be/stations/NMBS/008822814", "https://data.delijn.be/stops/107463"], ["http://irail.be/stations/NMBS/008843331", "https://tec.openplanner.team/stops/LOmrela1"], ["http://irail.be/stations/NMBS/008864410", "https://tec.openplanner.team/stops/X901ava"], ["https://mivb.openplanner.team/stops/4363", "https://tec.openplanner.team/stops/Bettgar1"], ["https://data.delijn.be/stops/404668", "https://tec.openplanner.team/stops/LVSpota2"], ["https://data.delijn.be/stops/401408", "https://mivb.openplanner.team/stops/1384"], ["http://irail.be/stations/NMBS/008015458", "https://tec.openplanner.team/stops/LrTpost2"], ["https://data.delijn.be/stops/307639", "https://mivb.openplanner.team/stops/1938"], ["http://irail.be/stations/NMBS/008886066", "https://tec.openplanner.team/stops/H5me106a"], ["http://irail.be/stations/NMBS/008833266", "https://data.delijn.be/stops/304412"], ["http://irail.be/stations/NMBS/008891173", "https://data.delijn.be/stops/501016"], ["https://data.delijn.be/stops/400486", "https://tec.openplanner.team/stops/LRGmoul2"], ["http://irail.be/stations/NMBS/008874583", "https://tec.openplanner.team/stops/Caibras2"], ["https://data.delijn.be/stops/208765", "https://tec.openplanner.team/stops/H5rx125b"], ["http://irail.be/stations/NMBS/008865540", "https://tec.openplanner.team/stops/X806aab"], ["http://irail.be/stations/NMBS/008821667", "https://data.delijn.be/stops/107014"], ["http://irail.be/stations/NMBS/008871662", "https://tec.openplanner.team/stops/H1so135b"], ["http://irail.be/stations/NMBS/008882230", "https://tec.openplanner.team/stops/H2mo143a"], ["https://data.delijn.be/stops/300771", "https://mivb.openplanner.team/stops/8671"], ["http://irail.be/stations/NMBS/008200120", "https://tec.openplanner.team/stops/LoUpete2"], ["https://data.delijn.be/stops/503024", "https://tec.openplanner.team/stops/H4or116a"], ["https://data.delijn.be/stops/408980", "https://tec.openplanner.team/stops/LWAvand1"], ["http://irail.be/stations/NMBS/008864501", "https://tec.openplanner.team/stops/N201aea"], ["https://data.delijn.be/stops/508772", "https://tec.openplanner.team/stops/H4sl154a"], ["https://data.delijn.be/stops/401411", "https://mivb.openplanner.team/stops/5266F"], ["https://data.delijn.be/stops/301411", "https://tec.openplanner.team/stops/H1mk107a"], ["http://irail.be/stations/NMBS/008831401", "https://data.delijn.be/stops/307625"], ["https://data.delijn.be/stops/308984", "https://tec.openplanner.team/stops/Blhucmo2"], ["https://data.delijn.be/stops/403701", "https://tec.openplanner.team/stops/LORroma1"], ["https://data.delijn.be/stops/504232", "https://tec.openplanner.team/stops/H4co149a"], ["http://irail.be/stations/NMBS/008892452", "https://data.delijn.be/stops/509885"], ["http://irail.be/stations/NMBS/008841434", "https://tec.openplanner.team/stops/LBvviem3"], ["https://data.delijn.be/stops/504383", "https://tec.openplanner.team/stops/H4pl115a"], ["https://data.delijn.be/stops/302986", "https://mivb.openplanner.team/stops/0270314"], ["https://data.delijn.be/stops/209195", "https://tec.openplanner.team/stops/H5rx146a"], ["http://irail.be/stations/NMBS/008886553", "https://tec.openplanner.team/stops/H1le130b"], ["http://irail.be/stations/NMBS/008821006", "https://data.delijn.be/stops/102313"], ["http://irail.be/stations/NMBS/008893567", "https://data.delijn.be/stops/201949"], ["http://irail.be/stations/NMBS/008831807", "https://data.delijn.be/stops/407855"], ["https://data.delijn.be/stops/300977", "https://mivb.openplanner.team/stops/6020"], ["https://mivb.openplanner.team/stops/8221", "https://tec.openplanner.team/stops/Baudhan2"], ["https://data.delijn.be/stops/300018", "https://mivb.openplanner.team/stops/2109B"], ["https://data.delijn.be/stops/208173", "https://tec.openplanner.team/stops/H5fl100a"], ["https://data.delijn.be/stops/305889", "https://mivb.openplanner.team/stops/3064"], ["https://data.delijn.be/stops/509860", "https://tec.openplanner.team/stops/H4mo190a"], ["http://irail.be/stations/NMBS/008861531", "https://tec.openplanner.team/stops/Bhvltol2"], ["http://irail.be/stations/NMBS/008891652", "https://data.delijn.be/stops/506671"], ["http://irail.be/stations/NMBS/008821964", "https://data.delijn.be/stops/109153"], ["http://irail.be/stations/NMBS/008874567", "https://tec.openplanner.team/stops/Cfaamio4"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1ne142a"], ["https://mivb.openplanner.team/stops/2710G", "https://tec.openplanner.team/stops/Buccdch2"], ["https://data.delijn.be/stops/305165", "https://mivb.openplanner.team/stops/0900568"], ["https://data.delijn.be/stops/301089", "https://mivb.openplanner.team/stops/5525"], ["http://irail.be/stations/NMBS/008812260", "https://data.delijn.be/stops/306708"], ["http://irail.be/stations/NMBS/008842846", "https://tec.openplanner.team/stops/LHanest2"], ["https://mivb.openplanner.team/stops/4075", "https://tec.openplanner.team/stops/Buccdch1"], ["https://data.delijn.be/stops/408802", "https://tec.openplanner.team/stops/LVIacac1"], ["https://mivb.openplanner.team/stops/2108", "https://tec.openplanner.team/stops/Buccplj2"], ["https://data.delijn.be/stops/400492", "https://tec.openplanner.team/stops/LBSnouw2"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/Bbeubos1"], ["https://data.delijn.be/stops/300297", "https://mivb.openplanner.team/stops/4599"], ["https://data.delijn.be/stops/307971", "https://tec.openplanner.team/stops/Bwavlep2"], ["http://irail.be/stations/NMBS/008891009", "https://data.delijn.be/stops/502820"], ["https://data.delijn.be/stops/408918", "https://tec.openplanner.team/stops/LTEcamp2"], ["http://irail.be/stations/NMBS/008814126", "https://mivb.openplanner.team/stops/2952B"], ["http://irail.be/stations/NMBS/008400280", "https://data.delijn.be/stops/506146"], ["https://data.delijn.be/stops/303613", "https://tec.openplanner.team/stops/Bhalber3"], ["http://irail.be/stations/NMBS/008841558", "https://tec.openplanner.team/stops/Llglaur2"], ["https://data.delijn.be/stops/307142", "https://mivb.openplanner.team/stops/2539"], ["http://irail.be/stations/NMBS/008845203", "https://tec.openplanner.team/stops/LTPgare*"], ["http://irail.be/stations/NMBS/008841459", "https://tec.openplanner.team/stops/LNveg--2"], ["https://data.delijn.be/stops/408844", "https://tec.openplanner.team/stops/LRmsmvo3"], ["https://data.delijn.be/stops/303994", "https://tec.openplanner.team/stops/Bbldass1"], ["https://data.delijn.be/stops/407205", "https://tec.openplanner.team/stops/LHTptha4"], ["https://data.delijn.be/stops/307969", "https://tec.openplanner.team/stops/Bwavbar2"], ["https://data.delijn.be/stops/509654", "https://tec.openplanner.team/stops/H4co162a"], ["http://irail.be/stations/NMBS/008842630", "https://tec.openplanner.team/stops/LTIgare3"], ["https://data.delijn.be/stops/408904", "https://tec.openplanner.team/stops/LFProt-1"], ["https://data.delijn.be/stops/301399", "https://mivb.openplanner.team/stops/2662B"], ["https://data.delijn.be/stops/302244", "https://mivb.openplanner.team/stops/3522"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bsmgegl2"], ["https://mivb.openplanner.team/stops/3530", "https://tec.openplanner.team/stops/Baudulb2"], ["http://irail.be/stations/NMBS/008822004", "https://data.delijn.be/stops/108056"], ["https://data.delijn.be/stops/302425", "https://tec.openplanner.team/stops/Bjodrga2"], ["http://irail.be/stations/NMBS/008833233", "https://data.delijn.be/stops/304351"], ["https://data.delijn.be/stops/300786", "https://mivb.openplanner.team/stops/1489"], ["http://irail.be/stations/NMBS/008895851", "https://data.delijn.be/stops/207111"], ["http://irail.be/stations/NMBS/008863560", "https://tec.openplanner.team/stops/N540ama"], ["http://irail.be/stations/NMBS/008400526", "https://data.delijn.be/stops/102187"], ["https://data.delijn.be/stops/509377", "https://tec.openplanner.team/stops/H4pl121a"], ["http://irail.be/stations/NMBS/008833159", "https://data.delijn.be/stops/301684"], ["https://data.delijn.be/stops/301073", "https://mivb.openplanner.team/stops/8291"], ["https://data.delijn.be/stops/408908", "https://tec.openplanner.team/stops/LOTferm1"], ["http://irail.be/stations/NMBS/008811742", "https://data.delijn.be/stops/302393"], ["https://data.delijn.be/stops/408922", "https://tec.openplanner.team/stops/LTEnuro1"], ["https://data.delijn.be/stops/300749", "https://mivb.openplanner.team/stops/2564"], ["https://data.delijn.be/stops/307252", "https://mivb.openplanner.team/stops/9979B"], ["http://irail.be/stations/NMBS/008821154", "https://data.delijn.be/stops/105120"], ["https://data.delijn.be/stops/403726", "https://tec.openplanner.team/stops/LOewaut2"], ["http://irail.be/stations/NMBS/008884889", "https://tec.openplanner.team/stops/H4bs112a"], ["https://data.delijn.be/stops/404665", "https://tec.openplanner.team/stops/LPAeg--1"], ["https://data.delijn.be/stops/208745", "https://tec.openplanner.team/stops/H4am113a"], ["http://irail.be/stations/NMBS/008865227", "https://tec.openplanner.team/stops/X995aga"], ["http://irail.be/stations/NMBS/008822111", "https://data.delijn.be/stops/303395"], ["http://irail.be/stations/NMBS/008210014", "https://tec.openplanner.team/stops/X684aba"], ["https://data.delijn.be/stops/504304", "https://tec.openplanner.team/stops/H4pl114b"], ["https://data.delijn.be/stops/305448", "https://mivb.openplanner.team/stops/0511"], ["http://irail.be/stations/NMBS/008844230", "https://tec.openplanner.team/stops/LNEcite2"], ["https://mivb.openplanner.team/stops/0340141", "https://tec.openplanner.team/stops/Bsgipha3"], ["https://data.delijn.be/stops/405720", "https://tec.openplanner.team/stops/LlgLAMB7"], ["https://data.delijn.be/stops/405705", "https://tec.openplanner.team/stops/LlgR-F1*"], ["http://irail.be/stations/NMBS/008896115", "https://data.delijn.be/stops/503210"], ["https://data.delijn.be/stops/208614", "https://tec.openplanner.team/stops/H1bd102a"], ["http://irail.be/stations/NMBS/008849072", "https://tec.openplanner.team/stops/X793aab"], ["https://data.delijn.be/stops/308732", "https://tec.openplanner.team/stops/Bneesjo1"], ["https://data.delijn.be/stops/307152", "https://tec.openplanner.team/stops/Bhaless2"], ["http://irail.be/stations/NMBS/008895125", "https://data.delijn.be/stops/207005"], ["http://irail.be/stations/NMBS/008866142", "https://tec.openplanner.team/stops/X670anb"], ["http://irail.be/stations/NMBS/008893443", "https://data.delijn.be/stops/207354"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LFCotte2"], ["https://data.delijn.be/stops/405421", "https://tec.openplanner.team/stops/Blanath2"], ["https://data.delijn.be/stops/209387", "https://tec.openplanner.team/stops/H5rx110a"], ["https://data.delijn.be/stops/302855", "https://tec.openplanner.team/stops/Bwaakap1"], ["http://irail.be/stations/NMBS/008871373", "https://tec.openplanner.team/stops/Broscha2"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Cthdeco1"], ["http://irail.be/stations/NMBS/008812146", "https://data.delijn.be/stops/206182"], ["https://data.delijn.be/stops/301054", "https://mivb.openplanner.team/stops/5072"], ["https://data.delijn.be/stops/405716", "https://tec.openplanner.team/stops/Llglefe2"], ["https://data.delijn.be/stops/300922", "https://mivb.openplanner.team/stops/3210B"], ["https://data.delijn.be/stops/303078", "https://tec.openplanner.team/stops/Bleunaa1"], ["http://irail.be/stations/NMBS/008871217", "https://tec.openplanner.team/stops/Cropcan1"], ["https://data.delijn.be/stops/405711", "https://tec.openplanner.team/stops/Llgvott1"], ["https://data.delijn.be/stops/307089", "https://tec.openplanner.team/stops/Brsgfon2"], ["https://data.delijn.be/stops/301018", "https://mivb.openplanner.team/stops/1307F"], ["http://irail.be/stations/NMBS/008728105", "https://data.delijn.be/stops/500926"], ["https://data.delijn.be/stops/304653", "https://mivb.openplanner.team/stops/7640211"], ["http://irail.be/stations/NMBS/008864469", "https://tec.openplanner.team/stops/X982bjb"], ["http://irail.be/stations/NMBS/008862018", "https://tec.openplanner.team/stops/X602asa"], ["https://data.delijn.be/stops/400485", "https://tec.openplanner.team/stops/LRGgend1"], ["https://data.delijn.be/stops/304549", "https://mivb.openplanner.team/stops/9649"], ["https://data.delijn.be/stops/208759", "https://tec.openplanner.team/stops/H5rx104b"], ["https://data.delijn.be/stops/410152", "https://mivb.openplanner.team/stops/3362"], ["http://irail.be/stations/NMBS/008821022", "https://data.delijn.be/stops/102085"], ["http://irail.be/stations/NMBS/008865540", "https://tec.openplanner.team/stops/X808aib"], ["https://data.delijn.be/stops/405719", "https://tec.openplanner.team/stops/Llgcrah2"], ["http://irail.be/stations/NMBS/008400131", "https://data.delijn.be/stops/107709"], ["https://data.delijn.be/stops/300319", "https://tec.openplanner.team/stops/Bbeaech1"], ["http://irail.be/stations/NMBS/008892031", "https://data.delijn.be/stops/201732"], ["http://irail.be/stations/NMBS/008821824", "https://data.delijn.be/stops/104741"], ["http://irail.be/stations/NMBS/008863438", "https://tec.openplanner.team/stops/N506bia"], ["http://irail.be/stations/NMBS/008832375", "https://data.delijn.be/stops/403077"], ["https://data.delijn.be/stops/304065", "https://tec.openplanner.team/stops/Bovevnd1"], ["https://data.delijn.be/stops/404683", "https://tec.openplanner.team/stops/LWipaif3"], ["https://mivb.openplanner.team/stops/1059", "https://tec.openplanner.team/stops/Bixlaca2"], ["https://data.delijn.be/stops/302902", "https://tec.openplanner.team/stops/Bhevl3l2"], ["https://data.delijn.be/stops/301944", "https://mivb.openplanner.team/stops/2571"], ["https://data.delijn.be/stops/405343", "https://tec.openplanner.team/stops/Bezegar2"], ["https://data.delijn.be/stops/302406", "https://mivb.openplanner.team/stops/3611F"], ["https://data.delijn.be/stops/304209", "https://tec.openplanner.team/stops/Brsrabe2"], ["http://irail.be/stations/NMBS/008824240", "https://data.delijn.be/stops/107958"], ["https://data.delijn.be/stops/408885", "https://tec.openplanner.team/stops/LFCotte2"], ["https://mivb.openplanner.team/stops/2715", "https://tec.openplanner.team/stops/Buccvch1"], ["http://irail.be/stations/NMBS/008821238", "https://data.delijn.be/stops/104510"], ["https://data.delijn.be/stops/308356", "https://mivb.openplanner.team/stops/6416"], ["http://irail.be/stations/NMBS/008832003", "https://data.delijn.be/stops/402071"], ["http://irail.be/stations/NMBS/008871381", "https://tec.openplanner.team/stops/H2go116b"], ["https://data.delijn.be/stops/208192", "https://tec.openplanner.team/stops/H5rx102a"], ["https://data.delijn.be/stops/307966", "https://tec.openplanner.team/stops/Bwavlav2"], ["https://data.delijn.be/stops/304861", "https://tec.openplanner.team/stops/Bbrlvil2"], ["https://mivb.openplanner.team/stops/1742", "https://tec.openplanner.team/stops/Buccptj1"], ["https://data.delijn.be/stops/300579", "https://mivb.openplanner.team/stops/6304"], ["http://irail.be/stations/NMBS/008833308", "https://data.delijn.be/stops/308048"], ["https://data.delijn.be/stops/505827", "https://tec.openplanner.team/stops/H4mo145a"], ["https://data.delijn.be/stops/304061", "https://tec.openplanner.team/stops/Bwavcin1"], ["https://data.delijn.be/stops/305228", "https://mivb.openplanner.team/stops/9607"], ["https://data.delijn.be/stops/504381", "https://tec.openplanner.team/stops/H4pl122a"], ["https://data.delijn.be/stops/300803", "https://mivb.openplanner.team/stops/7690206"], ["http://irail.be/stations/NMBS/008812237", "https://data.delijn.be/stops/301374"], ["https://data.delijn.be/stops/303648", "https://mivb.openplanner.team/stops/2856B"], ["https://data.delijn.be/stops/307807", "https://mivb.openplanner.team/stops/8753"], ["https://data.delijn.be/stops/207791", "https://tec.openplanner.team/stops/H5rx106b"], ["https://data.delijn.be/stops/404682", "https://tec.openplanner.team/stops/LWipaif3"], ["https://data.delijn.be/stops/408982", "https://tec.openplanner.team/stops/LWAwila1"], ["http://irail.be/stations/NMBS/008864964", "https://tec.openplanner.team/stops/N535ahb"], ["https://data.delijn.be/stops/307639", "https://mivb.openplanner.team/stops/5823"], ["https://data.delijn.be/stops/307830", "https://mivb.openplanner.team/stops/9556"], ["https://mivb.openplanner.team/stops/1873", "https://tec.openplanner.team/stops/Bbxlner2"], ["http://irail.be/stations/NMBS/008892650", "https://data.delijn.be/stops/208294"], ["https://data.delijn.be/stops/408832", "https://tec.openplanner.team/stops/LMgwith1"], ["https://data.delijn.be/stops/400464", "https://tec.openplanner.team/stops/LEMgren*"], ["https://data.delijn.be/stops/410136", "https://tec.openplanner.team/stops/Lvopaqu2"], ["https://data.delijn.be/stops/302422", "https://tec.openplanner.team/stops/Bsrgegl2"], ["http://irail.be/stations/NMBS/008866662", "https://tec.openplanner.team/stops/X614baa"], ["https://data.delijn.be/stops/400482", "https://tec.openplanner.team/stops/LRGunio3"], ["http://irail.be/stations/NMBS/008843067", "https://tec.openplanner.team/stops/Lsepuit1"], ["https://data.delijn.be/stops/300023", "https://mivb.openplanner.team/stops/9658"], ["https://data.delijn.be/stops/409000", "https://tec.openplanner.team/stops/LFarhuy1"], ["https://data.delijn.be/stops/300963", "https://tec.openplanner.team/stops/Baudvdu1"], ["http://irail.be/stations/NMBS/008892205", "https://data.delijn.be/stops/502267"], ["https://data.delijn.be/stops/305270", "https://mivb.openplanner.team/stops/2822"], ["https://data.delijn.be/stops/300981", "https://mivb.openplanner.team/stops/1514"], ["https://data.delijn.be/stops/405353", "https://tec.openplanner.team/stops/LLasta-*"], ["http://irail.be/stations/NMBS/008866654", "https://tec.openplanner.team/stops/X615ayb"], ["http://irail.be/stations/NMBS/008842754", "https://tec.openplanner.team/stops/LAYathe2"], ["http://irail.be/stations/NMBS/008884566", "https://tec.openplanner.team/stops/H1je216b"], ["https://data.delijn.be/stops/405711", "https://tec.openplanner.team/stops/Llgplat2"], ["https://data.delijn.be/stops/408898", "https://tec.openplanner.team/stops/LFPdeme1"], ["http://irail.be/stations/NMBS/008871712", "https://tec.openplanner.team/stops/Clbentr1"], ["http://irail.be/stations/NMBS/008864410", "https://tec.openplanner.team/stops/X901adb"], ["https://data.delijn.be/stops/306641", "https://mivb.openplanner.team/stops/2545"], ["http://irail.be/stations/NMBS/008895869", "https://data.delijn.be/stops/207501"], ["https://data.delijn.be/stops/306116", "https://mivb.openplanner.team/stops/1203"], ["http://irail.be/stations/NMBS/008872306", "https://tec.openplanner.team/stops/Clogfay2"], ["http://irail.be/stations/NMBS/008864006", "https://tec.openplanner.team/stops/N390adb"], ["http://irail.be/stations/NMBS/008886504", "https://tec.openplanner.team/stops/H1le122a"], ["http://irail.be/stations/NMBS/008200120", "https://tec.openplanner.team/stops/X663aca"], ["https://data.delijn.be/stops/303585", "https://mivb.openplanner.team/stops/9702"], ["https://data.delijn.be/stops/300316", "https://tec.openplanner.team/stops/Bhmmgar1"], ["https://data.delijn.be/stops/300874", "https://mivb.openplanner.team/stops/4232"], ["https://data.delijn.be/stops/307249", "https://mivb.openplanner.team/stops/9979B"], ["https://data.delijn.be/stops/408972", "https://tec.openplanner.team/stops/LWAaxhe2"], ["http://irail.be/stations/NMBS/008811163", "https://mivb.openplanner.team/stops/5362F"], ["http://irail.be/stations/NMBS/008889011", "https://tec.openplanner.team/stops/H4mo155a"], ["http://irail.be/stations/NMBS/008895729", "https://data.delijn.be/stops/200976"], ["https://data.delijn.be/stops/302869", "https://tec.openplanner.team/stops/Bhevjac1"], ["https://data.delijn.be/stops/303230", "https://mivb.openplanner.team/stops/9683"], ["https://data.delijn.be/stops/408842", "https://tec.openplanner.team/stops/LRmstat1"], ["https://data.delijn.be/stops/208357", "https://tec.openplanner.team/stops/H5rx134a"], ["https://data.delijn.be/stops/301042", "https://mivb.openplanner.team/stops/4594"], ["http://irail.be/stations/NMBS/008891314", "https://data.delijn.be/stops/502515"], ["https://data.delijn.be/stops/410135", "https://tec.openplanner.team/stops/Lvo60--2"], ["https://data.delijn.be/stops/300322", "https://tec.openplanner.team/stops/Balsbeg2"], ["https://data.delijn.be/stops/300824", "https://mivb.openplanner.team/stops/0440649"], ["http://irail.be/stations/NMBS/008844271", "https://tec.openplanner.team/stops/LTRfica2"], ["http://irail.be/stations/NMBS/008843141", "https://tec.openplanner.team/stops/Ljecocc1"], ["https://data.delijn.be/stops/401416", "https://mivb.openplanner.team/stops/1716"], ["http://irail.be/stations/NMBS/008871100", "https://tec.openplanner.team/stops/Cmastfi1"], ["http://irail.be/stations/NMBS/008892205", "https://data.delijn.be/stops/507619"], ["http://irail.be/stations/NMBS/008871688", "https://tec.openplanner.team/stops/H1ls106a"], ["http://irail.be/stations/NMBS/008863404", "https://tec.openplanner.team/stops/N506bqa"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N224agc"], ["https://data.delijn.be/stops/301031", "https://mivb.openplanner.team/stops/0660166"], ["http://irail.be/stations/NMBS/008866258", "https://tec.openplanner.team/stops/X661aib"], ["https://data.delijn.be/stops/307922", "https://mivb.openplanner.team/stops/2803"], ["http://irail.be/stations/NMBS/008886546", "https://tec.openplanner.team/stops/H1bd100b"], ["http://irail.be/stations/NMBS/008864311", "https://tec.openplanner.team/stops/X991afb"], ["https://data.delijn.be/stops/300945", "https://mivb.openplanner.team/stops/4103"], ["https://data.delijn.be/stops/408654", "https://tec.openplanner.team/stops/LTotrui2"], ["http://irail.be/stations/NMBS/008719100", "https://tec.openplanner.team/stops/X685aia"], ["https://data.delijn.be/stops/302429", "https://tec.openplanner.team/stops/Bjod7co2"], ["http://irail.be/stations/NMBS/008831781", "https://data.delijn.be/stops/402129"], ["http://irail.be/stations/NMBS/008895851", "https://data.delijn.be/stops/206108"], ["https://data.delijn.be/stops/305311", "https://mivb.openplanner.team/stops/9788"], ["https://data.delijn.be/stops/300018", "https://tec.openplanner.team/stops/Buccvoi1"], ["http://irail.be/stations/NMBS/008811510", "https://data.delijn.be/stops/302823"], ["http://irail.be/stations/NMBS/008815040", "https://mivb.openplanner.team/stops/3230F"], ["http://irail.be/stations/NMBS/008843307", "https://tec.openplanner.team/stops/LHUgare*"], ["https://data.delijn.be/stops/403700", "https://tec.openplanner.team/stops/LBGvill2"], ["http://irail.be/stations/NMBS/008821865", "https://data.delijn.be/stops/308496"], ["https://data.delijn.be/stops/301689", "https://tec.openplanner.team/stops/Bnetrtb2"], ["https://data.delijn.be/stops/306065", "https://tec.openplanner.team/stops/Blemsta1"], ["https://data.delijn.be/stops/307162", "https://tec.openplanner.team/stops/Bhalkrk1"], ["http://irail.be/stations/NMBS/008200120", "https://tec.openplanner.team/stops/LmNkrew1"], ["https://data.delijn.be/stops/301134", "https://mivb.openplanner.team/stops/6440"], ["https://data.delijn.be/stops/300810", "https://mivb.openplanner.team/stops/4252"], ["https://data.delijn.be/stops/301310", "https://mivb.openplanner.team/stops/7640111"], ["https://data.delijn.be/stops/303653", "https://mivb.openplanner.team/stops/9552"], ["https://data.delijn.be/stops/333234", "https://mivb.openplanner.team/stops/4221"], ["https://data.delijn.be/stops/301077", "https://mivb.openplanner.team/stops/6434F"], ["http://irail.be/stations/NMBS/008892007", "https://data.delijn.be/stops/201242"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/304698"], ["https://data.delijn.be/stops/300780", "https://mivb.openplanner.team/stops/2323"], ["http://irail.be/stations/NMBS/008812245", "https://data.delijn.be/stops/301365"], ["https://data.delijn.be/stops/304642", "https://mivb.openplanner.team/stops/1680F"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/Cchsud04"], ["https://data.delijn.be/stops/405345", "https://tec.openplanner.team/stops/Bezeksj1"], ["https://data.delijn.be/stops/302898", "https://tec.openplanner.team/stops/Bhevhha2"], ["https://data.delijn.be/stops/306001", "https://mivb.openplanner.team/stops/0906"], ["http://irail.be/stations/NMBS/008871332", "https://tec.openplanner.team/stops/Cobbusc1"], ["https://data.delijn.be/stops/404670", "https://tec.openplanner.team/stops/LJUxhen3"], ["http://irail.be/stations/NMBS/008893583", "https://data.delijn.be/stops/207589"], ["https://data.delijn.be/stops/302895", "https://tec.openplanner.team/stops/Bhevjal2"], ["http://irail.be/stations/NMBS/008866845", "https://tec.openplanner.team/stops/X641ama"], ["http://irail.be/stations/NMBS/008814431", "https://data.delijn.be/stops/307638"], ["https://data.delijn.be/stops/408822", "https://tec.openplanner.team/stops/LMgberw1"], ["https://mivb.openplanner.team/stops/2046", "https://tec.openplanner.team/stops/Baudhde2"], ["http://irail.be/stations/NMBS/008869054", "https://tec.openplanner.team/stops/X626aca"], ["http://irail.be/stations/NMBS/008811726", "https://tec.openplanner.team/stops/Bwavgar5"], ["https://data.delijn.be/stops/307498", "https://mivb.openplanner.team/stops/5266F"], ["https://mivb.openplanner.team/stops/1713", "https://tec.openplanner.team/stops/Bettlha1"], ["https://data.delijn.be/stops/301017", "https://mivb.openplanner.team/stops/1306"], ["https://data.delijn.be/stops/407206", "https://tec.openplanner.team/stops/LHTbeau2"], ["https://mivb.openplanner.team/stops/1169", "https://tec.openplanner.team/stops/Bsgicfo1"], ["http://irail.be/stations/NMBS/008841525", "https://tec.openplanner.team/stops/LlgR-Fr*"], ["https://data.delijn.be/stops/307226", "https://tec.openplanner.team/stops/Bhalgar2"], ["https://data.delijn.be/stops/308984", "https://tec.openplanner.team/stops/Blhumga1"], ["https://data.delijn.be/stops/208192", "https://tec.openplanner.team/stops/H5rx144b"], ["https://data.delijn.be/stops/307202", "https://tec.openplanner.team/stops/Bhalker1"], ["https://data.delijn.be/stops/400497", "https://tec.openplanner.team/stops/LWOwonc1"], ["http://irail.be/stations/NMBS/008873007", "https://tec.openplanner.team/stops/N106aqb"], ["https://data.delijn.be/stops/409000", "https://tec.openplanner.team/stops/LWAor--2"], ["https://data.delijn.be/stops/301153", "https://mivb.openplanner.team/stops/2117B"], ["https://data.delijn.be/stops/301056", "https://mivb.openplanner.team/stops/5071"], ["https://data.delijn.be/stops/207782", "https://tec.openplanner.team/stops/H5rx127b"], ["http://irail.be/stations/NMBS/008822715", "https://data.delijn.be/stops/107813"], ["https://data.delijn.be/stops/304456", "https://tec.openplanner.team/stops/Brsggar1"], ["http://irail.be/stations/NMBS/008822533", "https://data.delijn.be/stops/301865"], ["http://irail.be/stations/NMBS/008872520", "https://tec.openplanner.team/stops/Bsampli2"], ["http://irail.be/stations/NMBS/008831765", "https://data.delijn.be/stops/406535"], ["http://irail.be/stations/NMBS/008861317", "https://tec.openplanner.team/stops/N522aga"], ["http://irail.be/stations/NMBS/008811106", "https://mivb.openplanner.team/stops/2997"], ["https://data.delijn.be/stops/308095", "https://tec.openplanner.team/stops/Bpiepnd2"], ["http://irail.be/stations/NMBS/008843174", "https://tec.openplanner.team/stops/Lougare2"], ["https://data.delijn.be/stops/304448", "https://tec.openplanner.team/stops/Brsgece2"], ["https://data.delijn.be/stops/504322", "https://tec.openplanner.team/stops/H4mo142a"], ["https://data.delijn.be/stops/300747", "https://mivb.openplanner.team/stops/8682"], ["http://irail.be/stations/NMBS/008861515", "https://tec.openplanner.team/stops/Bernpon1"], ["http://irail.be/stations/NMBS/008895729", "https://data.delijn.be/stops/206760"], ["http://irail.be/stations/NMBS/008871688", "https://tec.openplanner.team/stops/Csbsart1"], ["https://data.delijn.be/stops/300936", "https://mivb.openplanner.team/stops/1765"], ["http://irail.be/stations/NMBS/008896388", "https://data.delijn.be/stops/508075"], ["http://irail.be/stations/NMBS/008892627", "https://data.delijn.be/stops/209285"], ["https://data.delijn.be/stops/209387", "https://tec.openplanner.team/stops/H5rx128a"], ["http://irail.be/stations/NMBS/008843224", "https://tec.openplanner.team/stops/Lfhhaso2"], ["https://data.delijn.be/stops/301689", "https://tec.openplanner.team/stops/Bnetrtb1"], ["http://irail.be/stations/NMBS/008400219", "https://tec.openplanner.team/stops/LMgwith2"], ["https://data.delijn.be/stops/300822", "https://mivb.openplanner.team/stops/8824"], ["https://mivb.openplanner.team/stops/5826", "https://tec.openplanner.team/stops/Buccbou1"], ["https://data.delijn.be/stops/305514", "https://mivb.openplanner.team/stops/9561"], ["http://irail.be/stations/NMBS/008813037", "https://mivb.openplanner.team/stops/0610363"], ["https://data.delijn.be/stops/306311", "https://mivb.openplanner.team/stops/5753F"], ["https://data.delijn.be/stops/304106", "https://tec.openplanner.team/stops/Bovevri2"], ["https://data.delijn.be/stops/305224", "https://tec.openplanner.team/stops/Bmrqpla2"], ["https://data.delijn.be/stops/306641", "https://mivb.openplanner.team/stops/2809"], ["http://irail.be/stations/NMBS/008865110", "https://tec.openplanner.team/stops/X725afe"], ["https://data.delijn.be/stops/300273", "https://mivb.openplanner.team/stops/4168"], ["https://data.delijn.be/stops/307637", "https://mivb.openplanner.team/stops/5824"], ["http://irail.be/stations/NMBS/008711184", "https://tec.openplanner.team/stops/Cmqegl2"], ["https://data.delijn.be/stops/400495", "https://tec.openplanner.team/stops/LBSneuv2"], ["https://data.delijn.be/stops/300801", "https://mivb.openplanner.team/stops/8661"], ["https://data.delijn.be/stops/300817", "https://mivb.openplanner.team/stops/0270414"], ["https://data.delijn.be/stops/300744", "https://mivb.openplanner.team/stops/3805"], ["https://data.delijn.be/stops/504237", "https://tec.openplanner.team/stops/H4co110a"], ["https://data.delijn.be/stops/405453", "https://tec.openplanner.team/stops/LWHzave1"], ["https://data.delijn.be/stops/307252", "https://mivb.openplanner.team/stops/2262"], ["https://data.delijn.be/stops/307682", "https://mivb.openplanner.team/stops/5754"], ["https://data.delijn.be/stops/408587", "https://tec.openplanner.team/stops/LTywyna1"], ["https://data.delijn.be/stops/300624", "https://tec.openplanner.team/stops/Bbealou1"], ["https://data.delijn.be/stops/408811", "https://tec.openplanner.team/stops/LVIdeva2"], ["https://data.delijn.be/stops/302226", "https://tec.openplanner.team/stops/Bhoemel1"], ["https://data.delijn.be/stops/508677", "https://tec.openplanner.team/stops/H4ae101a"], ["https://data.delijn.be/stops/305918", "https://mivb.openplanner.team/stops/5170"], ["https://data.delijn.be/stops/209820", "https://tec.openplanner.team/stops/H5rx143b"], ["http://irail.be/stations/NMBS/008863362", "https://tec.openplanner.team/stops/N538asa"], ["http://irail.be/stations/NMBS/008821089", "https://data.delijn.be/stops/109040"], ["https://data.delijn.be/stops/301055", "https://mivb.openplanner.team/stops/1019"], ["https://data.delijn.be/stops/308957", "https://mivb.openplanner.team/stops/3515"], ["https://data.delijn.be/stops/408514", "https://tec.openplanner.team/stops/LRUhama2"], ["https://data.delijn.be/stops/208766", "https://tec.openplanner.team/stops/H4ss157a"], ["https://data.delijn.be/stops/300327", "https://tec.openplanner.team/stops/Balswwe2"], ["https://data.delijn.be/stops/301413", "https://tec.openplanner.team/stops/H1en106b"], ["https://data.delijn.be/stops/300769", "https://mivb.openplanner.team/stops/6808G"], ["https://data.delijn.be/stops/300806", "https://mivb.openplanner.team/stops/6809F"], ["https://data.delijn.be/stops/307282", "https://tec.openplanner.team/stops/Bcbqa362"], ["https://data.delijn.be/stops/305428", "https://mivb.openplanner.team/stops/1627"], ["https://data.delijn.be/stops/302426", "https://tec.openplanner.team/stops/Bjodrrg2"], ["http://irail.be/stations/NMBS/008844503", "https://tec.openplanner.team/stops/LWEcool2"], ["https://data.delijn.be/stops/408887", "https://tec.openplanner.team/stops/LTErest1"], ["https://data.delijn.be/stops/307975", "https://tec.openplanner.team/stops/Bwavfol2"], ["https://mivb.openplanner.team/stops/3547", "https://tec.openplanner.team/stops/Baudsju2"], ["http://irail.be/stations/NMBS/008883220", "https://tec.openplanner.team/stops/H2me115a"], ["https://data.delijn.be/stops/301074", "https://mivb.openplanner.team/stops/6059"], ["https://data.delijn.be/stops/303230", "https://mivb.openplanner.team/stops/9686"], ["http://irail.be/stations/NMBS/008884327", "https://tec.openplanner.team/stops/H1bo101a"], ["http://irail.be/stations/NMBS/008884327", "https://tec.openplanner.team/stops/H1hi124b"], ["http://irail.be/stations/NMBS/008866530", "https://tec.openplanner.team/stops/X617aga"], ["http://irail.be/stations/NMBS/008861432", "https://tec.openplanner.team/stops/N526abb"], ["http://irail.be/stations/NMBS/008811221", "https://data.delijn.be/stops/308829"], ["http://irail.be/stations/NMBS/008875002", "https://tec.openplanner.team/stops/N134ala"], ["http://irail.be/stations/NMBS/008844545", "https://tec.openplanner.team/stops/LDOgare2"], ["https://data.delijn.be/stops/404681", "https://tec.openplanner.team/stops/LWibare2"], ["https://data.delijn.be/stops/300981", "https://mivb.openplanner.team/stops/2974"], ["https://data.delijn.be/stops/408854", "https://tec.openplanner.team/stops/LFClage2"], ["https://mivb.openplanner.team/stops/5025", "https://tec.openplanner.team/stops/Buccdst1"], ["http://irail.be/stations/NMBS/008865128", "https://tec.openplanner.team/stops/X725aec"], ["https://mivb.openplanner.team/stops/5462F", "https://tec.openplanner.team/stops/Bixlozo2"], ["https://data.delijn.be/stops/301679", "https://tec.openplanner.team/stops/Bnetegl1"], ["https://data.delijn.be/stops/302414", "https://tec.openplanner.team/stops/Bjodeco1"], ["https://data.delijn.be/stops/305305", "https://mivb.openplanner.team/stops/9788"], ["http://irail.be/stations/NMBS/008886553", "https://tec.openplanner.team/stops/H1le118a"], ["https://data.delijn.be/stops/304569", "https://mivb.openplanner.team/stops/8652"], ["https://data.delijn.be/stops/300344", "https://tec.openplanner.team/stops/Bbrlvil2"], ["https://data.delijn.be/stops/408884", "https://tec.openplanner.team/stops/LFMrijk2"], ["https://data.delijn.be/stops/207754", "https://tec.openplanner.team/stops/H4ss157b"], ["https://mivb.openplanner.team/stops/2145", "https://tec.openplanner.team/stops/Buccpor2"], ["https://data.delijn.be/stops/408507", "https://tec.openplanner.team/stops/LTobilz1"], ["https://data.delijn.be/stops/503029", "https://tec.openplanner.team/stops/H4ae102b"], ["https://data.delijn.be/stops/301956", "https://mivb.openplanner.team/stops/8692"], ["https://data.delijn.be/stops/408885", "https://tec.openplanner.team/stops/LDpulve2"], ["https://data.delijn.be/stops/408563", "https://tec.openplanner.team/stops/LTobilz2"], ["https://data.delijn.be/stops/503679", "https://tec.openplanner.team/stops/H4ae101a"], ["https://data.delijn.be/stops/303581", "https://mivb.openplanner.team/stops/9729"], ["http://irail.be/stations/NMBS/008869088", "https://tec.openplanner.team/stops/X681aca"], ["http://irail.be/stations/NMBS/008831807", "https://data.delijn.be/stops/407932"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/107066"], ["https://data.delijn.be/stops/209183", "https://tec.openplanner.team/stops/H5rx121a"], ["http://irail.be/stations/NMBS/008811734", "https://data.delijn.be/stops/302387"], ["http://irail.be/stations/NMBS/008894425", "https://data.delijn.be/stops/204228"], ["https://data.delijn.be/stops/300907", "https://tec.openplanner.team/stops/Bixlpat1"], ["https://data.delijn.be/stops/300796", "https://mivb.openplanner.team/stops/7660209"], ["http://irail.be/stations/NMBS/008814308", "https://data.delijn.be/stops/307227"], ["https://data.delijn.be/stops/408951", "https://tec.openplanner.team/stops/LWAathe2"], ["http://irail.be/stations/NMBS/008891116", "https://data.delijn.be/stops/502278"], ["https://data.delijn.be/stops/301005", "https://mivb.openplanner.team/stops/5172F"], ["https://data.delijn.be/stops/306908", "https://tec.openplanner.team/stops/Bboseco2"], ["http://irail.be/stations/NMBS/008842754", "https://tec.openplanner.team/stops/LAYpl--3"], ["https://data.delijn.be/stops/207797", "https://tec.openplanner.team/stops/H4ss153a"], ["https://data.delijn.be/stops/301415", "https://tec.openplanner.team/stops/Bengvma2"], ["https://data.delijn.be/stops/308956", "https://mivb.openplanner.team/stops/9575"], ["http://irail.be/stations/NMBS/008873122", "https://tec.openplanner.team/stops/N101agc"], ["https://data.delijn.be/stops/407750", "https://tec.openplanner.team/stops/LWOcomm2"], ["https://data.delijn.be/stops/306914", "https://tec.openplanner.team/stops/Bbosdra2"], ["https://mivb.openplanner.team/stops/1806", "https://tec.openplanner.team/stops/Bettbue1"], ["https://data.delijn.be/stops/408747", "https://tec.openplanner.team/stops/LTowijk2"], ["https://mivb.openplanner.team/stops/1876", "https://tec.openplanner.team/stops/Bsgipha3"], ["https://data.delijn.be/stops/306064", "https://tec.openplanner.team/stops/Brsgepr1"], ["http://irail.be/stations/NMBS/008895240", "https://data.delijn.be/stops/209442"], ["https://data.delijn.be/stops/305345", "https://tec.openplanner.team/stops/Bbgerlr1"], ["http://irail.be/stations/NMBS/008814241", "https://tec.openplanner.team/stops/Blilton1"], ["http://irail.be/stations/NMBS/008833050", "https://data.delijn.be/stops/300724"], ["http://irail.be/stations/NMBS/008833001", "https://tec.openplanner.team/stops/Bleugar1"], ["http://irail.be/stations/NMBS/008895612", "https://data.delijn.be/stops/209547"], ["https://data.delijn.be/stops/302853", "https://tec.openplanner.team/stops/Blinbru1"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1et102b"], ["http://irail.be/stations/NMBS/008881125", "https://tec.openplanner.team/stops/H1gh160b"], ["http://irail.be/stations/NMBS/008896305", "https://data.delijn.be/stops/503574"], ["https://data.delijn.be/stops/308105", "https://tec.openplanner.team/stops/Bsrgm102"], ["https://data.delijn.be/stops/306091", "https://mivb.openplanner.team/stops/9784B"], ["https://data.delijn.be/stops/303949", "https://tec.openplanner.team/stops/Bbldvaa1"], ["https://data.delijn.be/stops/407215", "https://tec.openplanner.team/stops/LHScite1"], ["https://mivb.openplanner.team/stops/2119", "https://tec.openplanner.team/stops/Buccvbe2"], ["http://irail.be/stations/NMBS/008728686", "https://tec.openplanner.team/stops/H4tf147b"], ["https://data.delijn.be/stops/408690", "https://tec.openplanner.team/stops/LTotrui1"], ["http://irail.be/stations/NMBS/008894748", "https://data.delijn.be/stops/204532"], ["http://irail.be/stations/NMBS/008400424", "https://tec.openplanner.team/stops/LMaburg4"], ["https://data.delijn.be/stops/303121", "https://mivb.openplanner.team/stops/3814"], ["http://irail.be/stations/NMBS/008833258", "https://data.delijn.be/stops/300115"], ["https://data.delijn.be/stops/307004", "https://mivb.openplanner.team/stops/1110"], ["https://mivb.openplanner.team/stops/42", "https://tec.openplanner.team/stops/Bsgihmo2"], ["http://irail.be/stations/NMBS/008811288", "https://data.delijn.be/stops/308755"], ["https://data.delijn.be/stops/304113", "https://tec.openplanner.team/stops/Bovesog2"], ["https://data.delijn.be/stops/300760", "https://mivb.openplanner.team/stops/1211B"], ["http://irail.be/stations/NMBS/008812120", "https://data.delijn.be/stops/308574"], ["http://irail.be/stations/NMBS/008400424", "https://data.delijn.be/stops/406374"], ["http://irail.be/stations/NMBS/008015345", "https://tec.openplanner.team/stops/LlCgren1"], ["http://irail.be/stations/NMBS/008893443", "https://data.delijn.be/stops/206885"], ["https://data.delijn.be/stops/301967", "https://tec.openplanner.team/stops/Bhalath1"], ["http://irail.be/stations/NMBS/008893567", "https://data.delijn.be/stops/203943"], ["https://data.delijn.be/stops/307602", "https://tec.openplanner.team/stops/Bspkbeu1"], ["https://data.delijn.be/stops/219015", "https://tec.openplanner.team/stops/H5rx125a"], ["https://data.delijn.be/stops/207792", "https://tec.openplanner.team/stops/H5rx147a"], ["http://irail.be/stations/NMBS/008822053", "https://data.delijn.be/stops/302518"], ["https://data.delijn.be/stops/408714", "https://tec.openplanner.team/stops/LRUhama1"], ["http://irail.be/stations/NMBS/008874054", "https://tec.openplanner.team/stops/Cmtstan2"], ["https://data.delijn.be/stops/408906", "https://tec.openplanner.team/stops/LFPkape4"], ["http://irail.be/stations/NMBS/008841319", "https://tec.openplanner.team/stops/LAWbrou1"], ["https://data.delijn.be/stops/301021", "https://mivb.openplanner.team/stops/4003G"], ["https://data.delijn.be/stops/306314", "https://tec.openplanner.team/stops/Bhalark2"], ["https://mivb.openplanner.team/stops/5533", "https://tec.openplanner.team/stops/Bkrawil1"], ["http://irail.be/stations/NMBS/008831039", "https://data.delijn.be/stops/400085"], ["https://data.delijn.be/stops/305520", "https://mivb.openplanner.team/stops/1387"], ["http://irail.be/stations/NMBS/008811247", "https://data.delijn.be/stops/304724"], ["https://data.delijn.be/stops/300963", "https://tec.openplanner.team/stops/Baudvdu2"], ["https://data.delijn.be/stops/405703", "https://tec.openplanner.team/stops/Llgbatt2"], ["http://irail.be/stations/NMBS/008893542", "https://data.delijn.be/stops/203961"], ["http://irail.be/stations/NMBS/008833209", "https://data.delijn.be/stops/108608"], ["https://mivb.openplanner.team/stops/2760B", "https://tec.openplanner.team/stops/Buccham2"], ["http://irail.be/stations/NMBS/008861440", "https://tec.openplanner.team/stops/N527acb"], ["http://irail.be/stations/NMBS/008842754", "https://tec.openplanner.team/stops/LAYathe1"], ["http://irail.be/stations/NMBS/008822137", "https://data.delijn.be/stops/206364"], ["https://mivb.openplanner.team/stops/2144", "https://tec.openplanner.team/stops/Buccvbe2"], ["http://irail.be/stations/NMBS/008844347", "https://tec.openplanner.team/stops/Lhurfay2"], ["https://data.delijn.be/stops/307713", "https://tec.openplanner.team/stops/Brsggde1"], ["https://data.delijn.be/stops/409000", "https://tec.openplanner.team/stops/LBvviem3"], ["http://irail.be/stations/NMBS/008891116", "https://data.delijn.be/stops/505052"], ["https://data.delijn.be/stops/301050", "https://mivb.openplanner.team/stops/1180"], ["https://data.delijn.be/stops/504451", "https://tec.openplanner.team/stops/H4mo165b"], ["https://data.delijn.be/stops/302806", "https://mivb.openplanner.team/stops/1587"], ["https://data.delijn.be/stops/308125", "https://tec.openplanner.team/stops/Bgoesch2"], ["http://irail.be/stations/NMBS/008845005", "https://tec.openplanner.team/stops/X790alb"], ["https://data.delijn.be/stops/400658", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://data.delijn.be/stops/305433", "https://mivb.openplanner.team/stops/5528F"], ["https://data.delijn.be/stops/504294", "https://tec.openplanner.team/stops/H4mo190b"], ["https://data.delijn.be/stops/408907", "https://tec.openplanner.team/stops/LFPkape4"], ["https://data.delijn.be/stops/305356", "https://tec.openplanner.team/stops/Bwaveur2"], ["https://data.delijn.be/stops/308869", "https://tec.openplanner.team/stops/Bkrapri2"], ["https://data.delijn.be/stops/304216", "https://mivb.openplanner.team/stops/1370"], ["http://irail.be/stations/NMBS/008822277", "https://data.delijn.be/stops/305615"], ["http://irail.be/stations/NMBS/008400526", "https://data.delijn.be/stops/104341"], ["http://irail.be/stations/NMBS/008884350", "https://tec.openplanner.team/stops/H1tl119a"], ["http://irail.be/stations/NMBS/008893708", "https://data.delijn.be/stops/203245"], ["http://irail.be/stations/NMBS/008814431", "https://data.delijn.be/stops/307686"], ["https://data.delijn.be/stops/307194", "https://tec.openplanner.team/stops/Bhalark2"], ["http://irail.be/stations/NMBS/008863115", "https://tec.openplanner.team/stops/N501kmb"], ["https://data.delijn.be/stops/302886", "https://tec.openplanner.team/stops/Bhevgar2"], ["http://irail.be/stations/NMBS/008871811", "https://tec.openplanner.team/stops/Cthhvil1"], ["https://data.delijn.be/stops/300828", "https://mivb.openplanner.team/stops/2875"], ["https://mivb.openplanner.team/stops/6934F", "https://tec.openplanner.team/stops/Buccfja1"], ["http://irail.be/stations/NMBS/008863818", "https://tec.openplanner.team/stops/N232abb"], ["https://data.delijn.be/stops/406298", "https://tec.openplanner.team/stops/Blankal4"], ["https://data.delijn.be/stops/306901", "https://tec.openplanner.team/stops/Bgoestu1"], ["https://data.delijn.be/stops/308725", "https://tec.openplanner.team/stops/Bgoemgr1"], ["https://data.delijn.be/stops/405430", "https://tec.openplanner.team/stops/Bneelaa2"], ["http://irail.be/stations/NMBS/008821816", "https://data.delijn.be/stops/107329"], ["https://data.delijn.be/stops/301006", "https://mivb.openplanner.team/stops/2569"], ["https://data.delijn.be/stops/305436", "https://mivb.openplanner.team/stops/5519"], ["https://data.delijn.be/stops/300926", "https://mivb.openplanner.team/stops/3961"], ["https://data.delijn.be/stops/302442", "https://tec.openplanner.team/stops/Bzlufbo2"], ["https://data.delijn.be/stops/306003", "https://tec.openplanner.team/stops/Brsrabe1"], ["https://data.delijn.be/stops/408868", "https://tec.openplanner.team/stops/LWRgare1"], ["https://data.delijn.be/stops/505275", "https://tec.openplanner.team/stops/H4po124a"], ["https://data.delijn.be/stops/302855", "https://tec.openplanner.team/stops/Blaneli2"], ["https://data.delijn.be/stops/406767", "https://tec.openplanner.team/stops/LBpvue-2"], ["https://data.delijn.be/stops/305280", "https://mivb.openplanner.team/stops/9778"], ["http://irail.be/stations/NMBS/008824232", "https://data.delijn.be/stops/102014"], ["http://irail.be/stations/NMBS/008883212", "https://tec.openplanner.team/stops/H2ec100a"], ["http://irail.be/stations/NMBS/008200510", "https://tec.openplanner.team/stops/X687aaa"], ["http://irail.be/stations/NMBS/008883808", "https://tec.openplanner.team/stops/Btubga05"], ["https://data.delijn.be/stops/408888", "https://tec.openplanner.team/stops/LFMstat1"], ["https://data.delijn.be/stops/301079", "https://mivb.openplanner.team/stops/6438"], ["http://irail.be/stations/NMBS/008892908", "https://tec.openplanner.team/stops/H5rx149a"], ["http://irail.be/stations/NMBS/008864311", "https://tec.openplanner.team/stops/X991ahb"], ["https://data.delijn.be/stops/408912", "https://tec.openplanner.team/stops/LFProt-2"], ["http://irail.be/stations/NMBS/008871605", "https://tec.openplanner.team/stops/H1be100a"], ["http://irail.be/stations/NMBS/008875127", "https://tec.openplanner.team/stops/N135akb"], ["https://data.delijn.be/stops/408924", "https://tec.openplanner.team/stops/LTEnuro2"], ["http://irail.be/stations/NMBS/008882206", "https://tec.openplanner.team/stops/H2hl110b"], ["https://data.delijn.be/stops/301035", "https://mivb.openplanner.team/stops/0330242"], ["https://data.delijn.be/stops/307853", "https://mivb.openplanner.team/stops/8232"], ["http://irail.be/stations/NMBS/008893179", "https://data.delijn.be/stops/201479"], ["https://data.delijn.be/stops/301110", "https://mivb.openplanner.team/stops/5826"], ["https://data.delijn.be/stops/300884", "https://mivb.openplanner.team/stops/6482"], ["https://data.delijn.be/stops/303998", "https://tec.openplanner.team/stops/Blhurcl1"], ["http://irail.be/stations/NMBS/008841004", "https://tec.openplanner.team/stops/LlgguilB"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1ml112b"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N552aca"], ["https://data.delijn.be/stops/408961", "https://tec.openplanner.team/stops/LWAchpg1"], ["https://data.delijn.be/stops/300343", "https://tec.openplanner.team/stops/Bbrlvil1"], ["http://irail.be/stations/NMBS/008884541", "https://tec.openplanner.team/stops/H1qu110b"], ["http://irail.be/stations/NMBS/008814449", "https://mivb.openplanner.team/stops/6931G"], ["https://data.delijn.be/stops/307714", "https://tec.openplanner.team/stops/Brsgera1"], ["http://irail.be/stations/NMBS/008891652", "https://data.delijn.be/stops/501640"], ["http://irail.be/stations/NMBS/008893559", "https://data.delijn.be/stops/202889"], ["https://data.delijn.be/stops/300759", "https://mivb.openplanner.team/stops/3231"], ["https://data.delijn.be/stops/301676", "https://tec.openplanner.team/stops/Bnetace2"], ["https://data.delijn.be/stops/300780", "https://mivb.openplanner.team/stops/6810"], ["https://data.delijn.be/stops/300792", "https://mivb.openplanner.team/stops/3232"], ["https://data.delijn.be/stops/305272", "https://tec.openplanner.team/stops/Bspkker2"], ["http://irail.be/stations/NMBS/008864824", "https://tec.openplanner.team/stops/N211ala"], ["http://irail.be/stations/NMBS/008893062", "https://data.delijn.be/stops/208714"], ["https://data.delijn.be/stops/207755", "https://tec.openplanner.team/stops/H5rx102b"], ["https://data.delijn.be/stops/407751", "https://tec.openplanner.team/stops/LWOmart2"], ["https://data.delijn.be/stops/407686", "https://tec.openplanner.team/stops/LRGchap2"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/304545"], ["http://irail.be/stations/NMBS/008896230", "https://data.delijn.be/stops/505809"], ["https://data.delijn.be/stops/305347", "https://tec.openplanner.team/stops/Bbgepau1"], ["https://data.delijn.be/stops/302409", "https://mivb.openplanner.team/stops/8651"], ["https://data.delijn.be/stops/303577", "https://mivb.openplanner.team/stops/9751"], ["https://data.delijn.be/stops/300811", "https://mivb.openplanner.team/stops/4125"], ["https://data.delijn.be/stops/301000", "https://mivb.openplanner.team/stops/6201F"], ["https://data.delijn.be/stops/408960", "https://tec.openplanner.team/stops/LWAperv1"], ["http://irail.be/stations/NMBS/008813003", "https://mivb.openplanner.team/stops/4324"], ["http://irail.be/stations/NMBS/008883022", "https://tec.openplanner.team/stops/Btubren1"], ["https://data.delijn.be/stops/308957", "https://tec.openplanner.team/stops/Baudstr2"], ["https://data.delijn.be/stops/300012", "https://mivb.openplanner.team/stops/2256B"], ["https://data.delijn.be/stops/304932", "https://mivb.openplanner.team/stops/9784B"], ["http://irail.be/stations/NMBS/008881315", "https://tec.openplanner.team/stops/H1ni320b"], ["http://irail.be/stations/NMBS/008821196", "https://data.delijn.be/stops/103266"], ["https://data.delijn.be/stops/301422", "https://tec.openplanner.team/stops/Bengvma2"], ["http://irail.be/stations/NMBS/008895638", "https://data.delijn.be/stops/209600"], ["http://irail.be/stations/NMBS/008821048", "https://data.delijn.be/stops/105290"], ["https://data.delijn.be/stops/303832", "https://mivb.openplanner.team/stops/3221"], ["http://irail.be/stations/NMBS/008883436", "https://tec.openplanner.team/stops/H1by108e"], ["https://data.delijn.be/stops/409796", "https://tec.openplanner.team/stops/LWOsudr2"], ["http://irail.be/stations/NMBS/008881562", "https://tec.openplanner.team/stops/H1fr111b"], ["https://data.delijn.be/stops/304071", "https://tec.openplanner.team/stops/Bgnvtas1"], ["https://data.delijn.be/stops/300325", "https://tec.openplanner.team/stops/Balssvi1"], ["http://irail.be/stations/NMBS/008822475", "https://data.delijn.be/stops/300663"], ["https://data.delijn.be/stops/303584", "https://mivb.openplanner.team/stops/9729"], ["http://irail.be/stations/NMBS/008896149", "https://data.delijn.be/stops/505804"], ["https://data.delijn.be/stops/408978", "https://tec.openplanner.team/stops/LWAperv1"], ["https://data.delijn.be/stops/300905", "https://mivb.openplanner.team/stops/2931"], ["https://data.delijn.be/stops/307921", "https://mivb.openplanner.team/stops/9047"], ["http://irail.be/stations/NMBS/008893260", "https://data.delijn.be/stops/203349"], ["https://data.delijn.be/stops/303832", "https://mivb.openplanner.team/stops/5014"], ["https://data.delijn.be/stops/303223", "https://mivb.openplanner.team/stops/3810"], ["http://irail.be/stations/NMBS/008824232", "https://data.delijn.be/stops/101086"], ["https://data.delijn.be/stops/301018", "https://mivb.openplanner.team/stops/4066F"], ["https://data.delijn.be/stops/208407", "https://tec.openplanner.team/stops/H5rx138b"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2le149b"], ["http://irail.be/stations/NMBS/008843406", "https://tec.openplanner.team/stops/LStgare*"], ["https://data.delijn.be/stops/306816", "https://tec.openplanner.team/stops/Balswsa2"], ["https://data.delijn.be/stops/404666", "https://tec.openplanner.team/stops/LVSpota2"], ["https://data.delijn.be/stops/307473", "https://tec.openplanner.team/stops/Bhalvel1"], ["https://data.delijn.be/stops/300998", "https://mivb.openplanner.team/stops/3167"], ["http://irail.be/stations/NMBS/008893559", "https://data.delijn.be/stops/200086"], ["https://data.delijn.be/stops/304019", "https://tec.openplanner.team/stops/Bovevri1"], ["https://data.delijn.be/stops/300924", "https://mivb.openplanner.team/stops/3272"], ["https://data.delijn.be/stops/307643", "https://mivb.openplanner.team/stops/1935"], ["https://data.delijn.be/stops/301054", "https://mivb.openplanner.team/stops/4213"], ["https://data.delijn.be/stops/408810", "https://tec.openplanner.team/stops/LVIhala4"], ["http://irail.be/stations/NMBS/008821832", "https://data.delijn.be/stops/104681"], ["https://data.delijn.be/stops/300805", "https://mivb.openplanner.team/stops/2257G"], ["http://irail.be/stations/NMBS/008821451", "https://data.delijn.be/stops/102236"], ["https://data.delijn.be/stops/408964", "https://tec.openplanner.team/stops/LWAbett2"], ["http://irail.be/stations/NMBS/008861549", "https://tec.openplanner.team/stops/Bmsgmon1"], ["https://data.delijn.be/stops/300783", "https://mivb.openplanner.team/stops/7640111"], ["http://irail.be/stations/NMBS/008821535", "https://data.delijn.be/stops/105839"], ["http://irail.be/stations/NMBS/008843406", "https://tec.openplanner.team/stops/NL72afa"], ["http://irail.be/stations/NMBS/008893534", "https://data.delijn.be/stops/207247"], ["http://irail.be/stations/NMBS/008864436", "https://tec.openplanner.team/stops/X923apb"], ["http://irail.be/stations/NMBS/008814001", "https://mivb.openplanner.team/stops/2671F"], ["https://data.delijn.be/stops/509713", "https://tec.openplanner.team/stops/H4mo142a"], ["https://data.delijn.be/stops/304547", "https://mivb.openplanner.team/stops/9680"], ["https://data.delijn.be/stops/509533", "https://tec.openplanner.team/stops/H4wn126a"], ["http://irail.be/stations/NMBS/008811544", "https://tec.openplanner.team/stops/Blmlcim1"], ["https://data.delijn.be/stops/504003", "https://tec.openplanner.team/stops/H4mo192a"], ["https://data.delijn.be/stops/304096", "https://tec.openplanner.team/stops/Bovetwe1"], ["https://data.delijn.be/stops/407208", "https://tec.openplanner.team/stops/LHTbonn2"], ["https://data.delijn.be/stops/408910", "https://tec.openplanner.team/stops/LFPzwaa2"], ["https://data.delijn.be/stops/304153", "https://tec.openplanner.team/stops/Blemhon2"], ["http://irail.be/stations/NMBS/008821659", "https://data.delijn.be/stops/107107"], ["http://irail.be/stations/NMBS/008864410", "https://tec.openplanner.team/stops/X901atb"], ["http://irail.be/stations/NMBS/008822517", "https://data.delijn.be/stops/305871"], ["https://data.delijn.be/stops/405711", "https://tec.openplanner.team/stops/Llgegwa1"], ["https://data.delijn.be/stops/408871", "https://tec.openplanner.team/stops/LMgbatt2"], ["http://irail.be/stations/NMBS/008833670", "https://data.delijn.be/stops/405392"], ["https://data.delijn.be/stops/218014", "https://tec.openplanner.team/stops/H5rx122a"], ["https://data.delijn.be/stops/408894", "https://tec.openplanner.team/stops/LBevill1"], ["https://data.delijn.be/stops/400486", "https://tec.openplanner.team/stops/LRGmoul1"], ["http://irail.be/stations/NMBS/008874583", "https://tec.openplanner.team/stops/Caibras1"], ["https://data.delijn.be/stops/308096", "https://tec.openplanner.team/stops/Bhoealt2"], ["http://irail.be/stations/NMBS/008871662", "https://tec.openplanner.team/stops/H1so135a"], ["http://irail.be/stations/NMBS/008882230", "https://tec.openplanner.team/stops/H2mo143b"], ["https://data.delijn.be/stops/407213", "https://tec.openplanner.team/stops/LHSheur1"], ["https://data.delijn.be/stops/504292", "https://tec.openplanner.team/stops/H4mo208b"], ["https://data.delijn.be/stops/301133", "https://tec.openplanner.team/stops/Buccdef1"], ["https://data.delijn.be/stops/300759", "https://mivb.openplanner.team/stops/7720303"], ["https://data.delijn.be/stops/300945", "https://mivb.openplanner.team/stops/1727"], ["https://data.delijn.be/stops/304210", "https://tec.openplanner.team/stops/Brsrmon1"], ["https://data.delijn.be/stops/300904", "https://mivb.openplanner.team/stops/6453"], ["http://irail.be/stations/NMBS/008886546", "https://data.delijn.be/stops/206797"], ["http://irail.be/stations/NMBS/008892692", "https://data.delijn.be/stops/208838"], ["https://mivb.openplanner.team/stops/1370", "https://tec.openplanner.team/stops/Bbxlmid4"], ["https://data.delijn.be/stops/408908", "https://tec.openplanner.team/stops/LWieg--*"], ["https://data.delijn.be/stops/307635", "https://mivb.openplanner.team/stops/5826"], ["https://data.delijn.be/stops/509737", "https://tec.openplanner.team/stops/H4mo195a"], ["https://data.delijn.be/stops/304449", "https://tec.openplanner.team/stops/Brsgfso1"], ["https://data.delijn.be/stops/405300", "https://tec.openplanner.team/stops/Blanmde2"], ["https://data.delijn.be/stops/504232", "https://tec.openplanner.team/stops/H4co148b"], ["https://data.delijn.be/stops/300905", "https://tec.openplanner.team/stops/Bixllep2"], ["https://mivb.openplanner.team/stops/3921", "https://tec.openplanner.team/stops/Bbxlple2"], ["http://irail.be/stations/NMBS/008871225", "https://tec.openplanner.team/stops/Crowall1"], ["https://data.delijn.be/stops/303586", "https://mivb.openplanner.team/stops/9725"], ["https://data.delijn.be/stops/410142", "https://tec.openplanner.team/stops/Lrcstad1"], ["https://data.delijn.be/stops/300318", "https://tec.openplanner.team/stops/Bbeaech2"], ["https://data.delijn.be/stops/308991", "https://tec.openplanner.team/stops/Bbrlpar2"], ["http://irail.be/stations/NMBS/008821659", "https://data.delijn.be/stops/102391"], ["https://data.delijn.be/stops/301004", "https://mivb.openplanner.team/stops/7762"], ["https://data.delijn.be/stops/405733", "https://tec.openplanner.team/stops/Lrcastr1"], ["https://data.delijn.be/stops/300018", "https://mivb.openplanner.team/stops/2110B"], ["https://data.delijn.be/stops/308676", "https://mivb.openplanner.team/stops/1900"], ["https://data.delijn.be/stops/300881", "https://mivb.openplanner.team/stops/7800355"], ["https://data.delijn.be/stops/306001", "https://mivb.openplanner.team/stops/1809"], ["http://irail.be/stations/NMBS/008861531", "https://tec.openplanner.team/stops/Bhvltol1"], ["https://data.delijn.be/stops/304455", "https://tec.openplanner.team/stops/Brsgsan2"], ["https://data.delijn.be/stops/304721", "https://mivb.openplanner.team/stops/5350G"], ["http://irail.be/stations/NMBS/008893708", "https://data.delijn.be/stops/203730"], ["http://irail.be/stations/NMBS/008814159", "https://data.delijn.be/stops/307691"], ["https://data.delijn.be/stops/405408", "https://tec.openplanner.team/stops/LLagert*"], ["http://irail.be/stations/NMBS/008846201", "https://tec.openplanner.team/stops/LVIhv--2"], ["https://data.delijn.be/stops/400479", "https://tec.openplanner.team/stops/LBPmais1"], ["http://irail.be/stations/NMBS/008832458", "https://data.delijn.be/stops/109263"], ["https://data.delijn.be/stops/509135", "https://tec.openplanner.team/stops/H4co162a"], ["https://mivb.openplanner.team/stops/2710G", "https://tec.openplanner.team/stops/Buccdch1"], ["https://data.delijn.be/stops/407214", "https://tec.openplanner.team/stops/LHStrez1"], ["http://irail.be/stations/NMBS/008861168", "https://tec.openplanner.team/stops/N534agb"], ["https://data.delijn.be/stops/410144", "https://tec.openplanner.team/stops/Llgwild6"], ["https://data.delijn.be/stops/304027", "https://tec.openplanner.team/stops/Bovelge2"], ["http://irail.be/stations/NMBS/008842846", "https://tec.openplanner.team/stops/LHanest1"], ["https://data.delijn.be/stops/304317", "https://mivb.openplanner.team/stops/9725"], ["https://mivb.openplanner.team/stops/2108", "https://tec.openplanner.team/stops/Buccplj1"], ["http://irail.be/stations/NMBS/008811601", "https://tec.openplanner.team/stops/Blimegl1"], ["http://irail.be/stations/NMBS/008894821", "https://data.delijn.be/stops/205337"], ["https://mivb.openplanner.team/stops/1723B", "https://tec.openplanner.team/stops/Baudulb2"], ["http://irail.be/stations/NMBS/008871373", "https://tec.openplanner.team/stops/Cgpauln2"], ["https://data.delijn.be/stops/301061", "https://mivb.openplanner.team/stops/1056"], ["http://irail.be/stations/NMBS/008841319", "https://tec.openplanner.team/stops/LAWgill1"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/Bbeubos2"], ["http://irail.be/stations/NMBS/008871647", "https://tec.openplanner.team/stops/H1so142a"], ["http://irail.be/stations/NMBS/008891009", "https://data.delijn.be/stops/502821"], ["http://irail.be/stations/NMBS/008895471", "https://data.delijn.be/stops/206532"], ["https://data.delijn.be/stops/303669", "https://mivb.openplanner.team/stops/1328"], ["https://data.delijn.be/stops/405455", "https://tec.openplanner.team/stops/LWHkape2"], ["https://data.delijn.be/stops/405734", "https://tec.openplanner.team/stops/Lrclant2"], ["https://data.delijn.be/stops/408922", "https://tec.openplanner.team/stops/LSInd--2"], ["http://irail.be/stations/NMBS/008812161", "https://data.delijn.be/stops/207349"], ["https://data.delijn.be/stops/408977", "https://tec.openplanner.team/stops/LWApr%C3%A9s3"], ["https://data.delijn.be/stops/408904", "https://tec.openplanner.team/stops/LFProt-2"], ["https://data.delijn.be/stops/306052", "https://mivb.openplanner.team/stops/1900"], ["http://irail.be/stations/NMBS/008821238", "https://data.delijn.be/stops/108830"], ["https://data.delijn.be/stops/208180", "https://tec.openplanner.team/stops/H5el100a"], ["https://data.delijn.be/stops/302479", "https://mivb.openplanner.team/stops/1582"], ["http://irail.be/stations/NMBS/008882701", "https://tec.openplanner.team/stops/H2mg144b"], ["http://irail.be/stations/NMBS/008015345", "https://tec.openplanner.team/stops/LaAkapi1"], ["http://irail.be/stations/NMBS/008873239", "https://tec.openplanner.team/stops/N118avd"], ["http://irail.be/stations/NMBS/008895711", "https://data.delijn.be/stops/206760"], ["https://data.delijn.be/stops/302425", "https://tec.openplanner.team/stops/Bjodrrg1"], ["http://irail.be/stations/NMBS/008821022", "https://data.delijn.be/stops/104494"], ["http://irail.be/stations/NMBS/008811510", "https://data.delijn.be/stops/301184"], ["https://data.delijn.be/stops/509238", "https://tec.openplanner.team/stops/H4co144b"], ["https://data.delijn.be/stops/300938", "https://mivb.openplanner.team/stops/5165"], ["http://irail.be/stations/NMBS/008811148", "https://mivb.openplanner.team/stops/2991"], ["http://irail.be/stations/NMBS/008895851", "https://data.delijn.be/stops/207112"], ["http://irail.be/stations/NMBS/008863560", "https://tec.openplanner.team/stops/N540amb"], ["http://irail.be/stations/NMBS/008400526", "https://data.delijn.be/stops/104338"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N534bsb"], ["http://irail.be/stations/NMBS/008892031", "https://data.delijn.be/stops/201180"], ["http://irail.be/stations/NMBS/008841731", "https://tec.openplanner.team/stops/LGLgare*"], ["https://data.delijn.be/stops/303668", "https://mivb.openplanner.team/stops/1683F"], ["https://data.delijn.be/stops/301026", "https://mivb.openplanner.team/stops/3006"], ["https://data.delijn.be/stops/301974", "https://tec.openplanner.team/stops/Bhaldbo1"], ["https://data.delijn.be/stops/408701", "https://tec.openplanner.team/stops/LGLspor2"], ["http://irail.be/stations/NMBS/008895463", "https://data.delijn.be/stops/207485"], ["https://mivb.openplanner.team/stops/1587", "https://tec.openplanner.team/stops/Bwolkra2"], ["https://data.delijn.be/stops/408922", "https://tec.openplanner.team/stops/LTEnuro2"], ["https://data.delijn.be/stops/301422", "https://tec.openplanner.team/stops/Bptemch2"], ["http://irail.be/stations/NMBS/008885530", "https://tec.openplanner.team/stops/H4my121a"], ["https://data.delijn.be/stops/302415", "https://tec.openplanner.team/stops/Bjodcad1"], ["http://irail.be/stations/NMBS/008886561", "https://tec.openplanner.team/stops/H5is171b"], ["https://data.delijn.be/stops/404669", "https://tec.openplanner.team/stops/LPAchpl1"], ["http://irail.be/stations/NMBS/008841459", "https://tec.openplanner.team/stops/LMOpiss1"], ["https://data.delijn.be/stops/408862", "https://tec.openplanner.team/stops/LWRchem1"], ["https://data.delijn.be/stops/305448", "https://mivb.openplanner.team/stops/0516"], ["http://irail.be/stations/NMBS/008873312", "https://tec.openplanner.team/stops/N137ajb"], ["https://data.delijn.be/stops/407204", "https://tec.openplanner.team/stops/LHTbaud2"], ["https://data.delijn.be/stops/301063", "https://mivb.openplanner.team/stops/4656"], ["https://data.delijn.be/stops/301927", "https://mivb.openplanner.team/stops/9851"], ["https://data.delijn.be/stops/302832", "https://tec.openplanner.team/stops/Blangar1"], ["http://irail.be/stations/NMBS/008882248", "https://tec.openplanner.team/stops/H2ca105b"], ["https://data.delijn.be/stops/305261", "https://tec.openplanner.team/stops/Bspkker1"], ["https://data.delijn.be/stops/305350", "https://tec.openplanner.team/stops/Bbgeegl2"], ["https://data.delijn.be/stops/300906", "https://mivb.openplanner.team/stops/5212"], ["http://irail.be/stations/NMBS/008811189", "https://data.delijn.be/stops/304962"], ["https://data.delijn.be/stops/306969", "https://mivb.openplanner.team/stops/5001F"], ["https://data.delijn.be/stops/300062", "https://tec.openplanner.team/stops/Blemwro1"], ["https://data.delijn.be/stops/301052", "https://mivb.openplanner.team/stops/5013B"], ["https://data.delijn.be/stops/304548", "https://mivb.openplanner.team/stops/9680"], ["http://irail.be/stations/NMBS/008871100", "https://tec.openplanner.team/stops/Cmamons1"], ["http://irail.be/stations/NMBS/008866605", "https://tec.openplanner.team/stops/X615aaa"], ["https://data.delijn.be/stops/405347", "https://tec.openplanner.team/stops/Bezeksj1"], ["http://irail.be/stations/NMBS/008833258", "https://data.delijn.be/stops/306844"], ["http://irail.be/stations/NMBS/008865300", "https://tec.openplanner.team/stops/X804bma"], ["https://data.delijn.be/stops/509233", "https://tec.openplanner.team/stops/H4co107a"], ["http://irail.be/stations/NMBS/008814118", "https://mivb.openplanner.team/stops/2938"], ["https://data.delijn.be/stops/405337", "https://tec.openplanner.team/stops/Bezebru2"], ["http://irail.be/stations/NMBS/008833274", "https://data.delijn.be/stops/303681"], ["http://irail.be/stations/NMBS/008812146", "https://data.delijn.be/stops/206183"], ["https://data.delijn.be/stops/401399", "https://mivb.openplanner.team/stops/5039"], ["https://data.delijn.be/stops/304698", "https://mivb.openplanner.team/stops/9652"], ["https://data.delijn.be/stops/303078", "https://tec.openplanner.team/stops/Bleunaa2"], ["http://irail.be/stations/NMBS/008896735", "https://data.delijn.be/stops/504426"], ["https://data.delijn.be/stops/307089", "https://tec.openplanner.team/stops/Brsgfon1"], ["http://irail.be/stations/NMBS/008864469", "https://tec.openplanner.team/stops/X982bja"], ["http://irail.be/stations/NMBS/008841434", "https://tec.openplanner.team/stops/LBKmare1"], ["https://data.delijn.be/stops/300920", "https://mivb.openplanner.team/stops/3304"], ["https://data.delijn.be/stops/504318", "https://tec.openplanner.team/stops/H4mo160a"], ["http://irail.be/stations/NMBS/008886546", "https://tec.openplanner.team/stops/H1le122d"], ["https://data.delijn.be/stops/400485", "https://tec.openplanner.team/stops/LRGgend2"], ["http://irail.be/stations/NMBS/008811726", "https://tec.openplanner.team/stops/Bbgepau1"], ["https://data.delijn.be/stops/408926", "https://tec.openplanner.team/stops/LRmstat2"], ["https://data.delijn.be/stops/301102", "https://mivb.openplanner.team/stops/1822"], ["https://data.delijn.be/stops/405335", "https://tec.openplanner.team/stops/Bneelaa2"], ["https://data.delijn.be/stops/301165", "https://mivb.openplanner.team/stops/2117B"], ["https://data.delijn.be/stops/300958", "https://mivb.openplanner.team/stops/2725"], ["https://mivb.openplanner.team/stops/0130227", "https://tec.openplanner.team/stops/Bwolvan2"], ["https://data.delijn.be/stops/308874", "https://mivb.openplanner.team/stops/1570"], ["https://data.delijn.be/stops/307072", "https://tec.openplanner.team/stops/Bhevjal1"], ["https://data.delijn.be/stops/400650", "https://tec.openplanner.team/stops/LHgroso1"], ["http://irail.be/stations/NMBS/008892031", "https://data.delijn.be/stops/201733"], ["https://data.delijn.be/stops/405700", "https://tec.openplanner.team/stops/Llgcamp2"], ["https://data.delijn.be/stops/410143", "https://tec.openplanner.team/stops/Llgverg2"], ["https://data.delijn.be/stops/401397", "https://mivb.openplanner.team/stops/3462"], ["https://data.delijn.be/stops/304112", "https://tec.openplanner.team/stops/Bovesog2"], ["https://data.delijn.be/stops/300961", "https://tec.openplanner.team/stops/Baudhde2"], ["https://data.delijn.be/stops/300987", "https://mivb.openplanner.team/stops/4500"], ["https://data.delijn.be/stops/301134", "https://mivb.openplanner.team/stops/2762"], ["http://irail.be/stations/NMBS/008842655", "https://tec.openplanner.team/stops/LEShony1"], ["https://data.delijn.be/stops/300952", "https://mivb.openplanner.team/stops/51"], ["http://irail.be/stations/NMBS/008864345", "https://tec.openplanner.team/stops/X999aia"], ["https://data.delijn.be/stops/307791", "https://mivb.openplanner.team/stops/1067"], ["http://irail.be/stations/NMBS/008893047", "https://data.delijn.be/stops/201603"], ["https://data.delijn.be/stops/307249", "https://mivb.openplanner.team/stops/0350640"], ["http://irail.be/stations/NMBS/008895760", "https://data.delijn.be/stops/207989"], ["https://data.delijn.be/stops/305435", "https://mivb.openplanner.team/stops/1631"], ["https://data.delijn.be/stops/505274", "https://tec.openplanner.team/stops/H4po129a"], ["http://irail.be/stations/NMBS/008861523", "https://tec.openplanner.team/stops/Bchamco2"], ["https://data.delijn.be/stops/304216", "https://tec.openplanner.team/stops/Bbxlmid4"], ["http://irail.be/stations/NMBS/008871381", "https://tec.openplanner.team/stops/H2go117a"], ["https://data.delijn.be/stops/408881", "https://tec.openplanner.team/stops/LDppana1"], ["http://irail.be/stations/NMBS/008883113", "https://tec.openplanner.team/stops/H3so161b"], ["https://data.delijn.be/stops/408842", "https://tec.openplanner.team/stops/LRmkast*"], ["http://irail.be/stations/NMBS/008884889", "https://tec.openplanner.team/stops/H4ca121b"], ["https://data.delijn.be/stops/307966", "https://tec.openplanner.team/stops/Bwavlav1"], ["https://data.delijn.be/stops/304861", "https://tec.openplanner.team/stops/Bbrlvil1"], ["https://data.delijn.be/stops/302870", "https://tec.openplanner.team/stops/Bhevwzw1"], ["https://data.delijn.be/stops/207794", "https://tec.openplanner.team/stops/H5rx130a"], ["https://data.delijn.be/stops/306176", "https://tec.openplanner.team/stops/Bkrabhu2"], ["https://data.delijn.be/stops/408927", "https://tec.openplanner.team/stops/LTEzinn2"], ["https://data.delijn.be/stops/406406", "https://tec.openplanner.team/stops/LMastat4"], ["http://irail.be/stations/NMBS/008863404", "https://tec.openplanner.team/stops/N506baa"], ["https://data.delijn.be/stops/504381", "https://tec.openplanner.team/stops/H4pl116a"], ["http://irail.be/stations/NMBS/008811601", "https://tec.openplanner.team/stops/Bottvil2"], ["http://irail.be/stations/NMBS/008895430", "https://data.delijn.be/stops/206432"], ["https://data.delijn.be/stops/300778", "https://mivb.openplanner.team/stops/7650210"], ["https://data.delijn.be/stops/404687", "https://tec.openplanner.team/stops/LPAbour1"], ["https://data.delijn.be/stops/307921", "https://mivb.openplanner.team/stops/2872"], ["https://data.delijn.be/stops/404682", "https://tec.openplanner.team/stops/LWipaif1"], ["https://mivb.openplanner.team/stops/3623B", "https://tec.openplanner.team/stops/Bixlqll1"], ["https://data.delijn.be/stops/304073", "https://tec.openplanner.team/stops/Bovepla2"], ["https://data.delijn.be/stops/408921", "https://tec.openplanner.team/stops/LTEkerk2"], ["https://data.delijn.be/stops/300763", "https://mivb.openplanner.team/stops/1206"], ["https://data.delijn.be/stops/300549", "https://tec.openplanner.team/stops/Bhmmbog1"], ["https://data.delijn.be/stops/301102", "https://mivb.openplanner.team/stops/5510"], ["http://irail.be/stations/NMBS/008864964", "https://tec.openplanner.team/stops/N535afb"], ["http://irail.be/stations/NMBS/008812245", "https://data.delijn.be/stops/308766"], ["https://data.delijn.be/stops/405718", "https://tec.openplanner.team/stops/Llgcrah2"], ["http://irail.be/stations/NMBS/008891629", "https://data.delijn.be/stops/501199"], ["http://irail.be/stations/NMBS/008814001", "https://data.delijn.be/stops/307142"], ["https://data.delijn.be/stops/408898", "https://tec.openplanner.team/stops/LVukabi1"], ["http://irail.be/stations/NMBS/008400131", "https://data.delijn.be/stops/101749"], ["https://data.delijn.be/stops/504319", "https://tec.openplanner.team/stops/H4mo169a"], ["https://mivb.openplanner.team/stops/5056", "https://tec.openplanner.team/stops/Buccmer1"], ["http://irail.be/stations/NMBS/008883113", "https://tec.openplanner.team/stops/Bsoigar1"], ["https://data.delijn.be/stops/208405", "https://tec.openplanner.team/stops/H5rx112b"], ["https://data.delijn.be/stops/408861", "https://tec.openplanner.team/stops/LWRgare2"], ["https://data.delijn.be/stops/400456", "https://tec.openplanner.team/stops/LEBeg--1"], ["https://data.delijn.be/stops/305910", "https://mivb.openplanner.team/stops/9726"], ["http://irail.be/stations/NMBS/008894151", "https://data.delijn.be/stops/202496"], ["https://data.delijn.be/stops/408912", "https://tec.openplanner.team/stops/LVu40--1"], ["http://irail.be/stations/NMBS/008822772", "https://data.delijn.be/stops/107854"], ["https://data.delijn.be/stops/300023", "https://mivb.openplanner.team/stops/9659"], ["http://irail.be/stations/NMBS/008821451", "https://data.delijn.be/stops/104288"], ["http://irail.be/stations/NMBS/008811189", "https://mivb.openplanner.team/stops/9784B"], ["http://irail.be/stations/NMBS/008811775", "https://data.delijn.be/stops/302388"], ["https://data.delijn.be/stops/300981", "https://mivb.openplanner.team/stops/1513"], ["https://data.delijn.be/stops/305345", "https://tec.openplanner.team/stops/Blmlvex2"], ["http://irail.be/stations/NMBS/008882362", "https://tec.openplanner.team/stops/H3bi104a"], ["http://irail.be/stations/NMBS/008814175", "https://data.delijn.be/stops/304443"], ["https://data.delijn.be/stops/408882", "https://tec.openplanner.team/stops/LFCkett1"], ["https://data.delijn.be/stops/509239", "https://tec.openplanner.team/stops/H4co144a"], ["http://irail.be/stations/NMBS/008871852", "https://tec.openplanner.team/stops/CMmoul1"], ["http://irail.be/stations/NMBS/008861531", "https://tec.openplanner.team/stops/Bblmcel2"], ["http://irail.be/stations/NMBS/008821006", "https://data.delijn.be/stops/103377"], ["https://data.delijn.be/stops/407212", "https://tec.openplanner.team/stops/LWOruis1"], ["http://irail.be/stations/NMBS/008871712", "https://tec.openplanner.team/stops/Clbentr2"], ["https://data.delijn.be/stops/301021", "https://mivb.openplanner.team/stops/5168F"], ["http://irail.be/stations/NMBS/008832615", "https://data.delijn.be/stops/406950"], ["https://data.delijn.be/stops/301050", "https://mivb.openplanner.team/stops/5089"], ["https://data.delijn.be/stops/410355", "https://tec.openplanner.team/stops/Llgcadr2"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bsmgres2"], ["http://irail.be/stations/NMBS/008841400", "https://data.delijn.be/stops/408976"], ["https://data.delijn.be/stops/300395", "https://tec.openplanner.team/stops/Bhalh312"], ["http://irail.be/stations/NMBS/008893062", "https://data.delijn.be/stops/202861"], ["http://irail.be/stations/NMBS/008864006", "https://tec.openplanner.team/stops/N390ada"], ["https://data.delijn.be/stops/302121", "https://tec.openplanner.team/stops/Bbghgli2"], ["http://irail.be/stations/NMBS/008821535", "https://data.delijn.be/stops/105244"], ["https://mivb.openplanner.team/stops/6931B", "https://tec.openplanner.team/stops/Buccptj2"], ["http://irail.be/stations/NMBS/008865649", "https://tec.openplanner.team/stops/X892aga"], ["http://irail.be/stations/NMBS/008812237", "https://data.delijn.be/stops/306046"], ["https://data.delijn.be/stops/302986", "https://mivb.openplanner.team/stops/3320B"], ["http://irail.be/stations/NMBS/008864931", "https://tec.openplanner.team/stops/N254aab"], ["https://data.delijn.be/stops/304127", "https://mivb.openplanner.team/stops/0440349"], ["https://data.delijn.be/stops/504294", "https://tec.openplanner.team/stops/H4mo151a"], ["https://data.delijn.be/stops/300798", "https://mivb.openplanner.team/stops/3805"], ["http://irail.be/stations/NMBS/008814126", "https://data.delijn.be/stops/301168"], ["http://irail.be/stations/NMBS/008885753", "https://tec.openplanner.team/stops/H4hx120b"], ["https://data.delijn.be/stops/503775", "https://tec.openplanner.team/stops/H4eh101a"], ["https://data.delijn.be/stops/300750", "https://mivb.openplanner.team/stops/3252"], ["http://irail.be/stations/NMBS/008886587", "https://tec.openplanner.team/stops/H1og133a"], ["https://data.delijn.be/stops/408972", "https://tec.openplanner.team/stops/LWAaxhe1"], ["https://data.delijn.be/stops/301048", "https://mivb.openplanner.team/stops/4601"], ["http://irail.be/stations/NMBS/008895729", "https://data.delijn.be/stops/200975"], ["http://irail.be/stations/NMBS/008400131", "https://data.delijn.be/stops/102754"], ["https://data.delijn.be/stops/305334", "https://tec.openplanner.team/stops/Bspkbeu1"], ["http://irail.be/stations/NMBS/008893583", "https://data.delijn.be/stops/201925"], ["https://data.delijn.be/stops/408838", "https://tec.openplanner.team/stops/LRmkerk1"], ["https://data.delijn.be/stops/410135", "https://tec.openplanner.team/stops/Lvo60--1"], ["http://irail.be/stations/NMBS/008832375", "https://data.delijn.be/stops/401966"], ["http://irail.be/stations/NMBS/008894755", "https://data.delijn.be/stops/205289"], ["http://irail.be/stations/NMBS/008881562", "https://tec.openplanner.team/stops/H1fr113b"], ["https://mivb.openplanner.team/stops/1598", "https://tec.openplanner.team/stops/Baudtri2"], ["http://irail.be/stations/NMBS/008814209", "https://tec.openplanner.team/stops/Bnivaig1"], ["https://data.delijn.be/stops/405344", "https://tec.openplanner.team/stops/Bezeksj2"], ["https://data.delijn.be/stops/300824", "https://mivb.openplanner.team/stops/0440549"], ["http://irail.be/stations/NMBS/008844271", "https://tec.openplanner.team/stops/LTRgare0"], ["https://mivb.openplanner.team/stops/2290B", "https://tec.openplanner.team/stops/Baudhan1"], ["https://data.delijn.be/stops/505828", "https://tec.openplanner.team/stops/H4mo145a"], ["https://data.delijn.be/stops/209191", "https://tec.openplanner.team/stops/H5rx131b"], ["http://irail.be/stations/NMBS/008893260", "https://data.delijn.be/stops/201854"], ["http://irail.be/stations/NMBS/008871688", "https://tec.openplanner.team/stops/H1ls105b"], ["https://data.delijn.be/stops/408852", "https://tec.openplanner.team/stops/LFChofv2"], ["https://data.delijn.be/stops/306907", "https://tec.openplanner.team/stops/Bboseco2"], ["https://data.delijn.be/stops/308981", "https://tec.openplanner.team/stops/Blhunys2"], ["https://data.delijn.be/stops/307152", "https://tec.openplanner.team/stops/Bhalwat1"], ["https://data.delijn.be/stops/304169", "https://tec.openplanner.team/stops/Blemmar2"], ["http://irail.be/stations/NMBS/008863545", "https://tec.openplanner.team/stops/N229aia"], ["https://data.delijn.be/stops/300802", "https://mivb.openplanner.team/stops/7670108"], ["http://irail.be/stations/NMBS/008883022", "https://tec.openplanner.team/stops/Bquecge2"], ["https://data.delijn.be/stops/305234", "https://mivb.openplanner.team/stops/9755"], ["https://data.delijn.be/stops/301062", "https://mivb.openplanner.team/stops/0460150"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N224aba"], ["https://data.delijn.be/stops/301145", "https://mivb.openplanner.team/stops/2146"], ["https://data.delijn.be/stops/208742", "https://tec.openplanner.team/stops/H4or115b"], ["https://data.delijn.be/stops/300945", "https://mivb.openplanner.team/stops/4104"], ["http://irail.be/stations/NMBS/008871365", "https://tec.openplanner.team/stops/Cobobjo1"], ["https://data.delijn.be/stops/405440", "https://tec.openplanner.team/stops/LWscona2"], ["http://irail.be/stations/NMBS/008891405", "https://data.delijn.be/stops/506014"], ["http://irail.be/stations/NMBS/008831781", "https://data.delijn.be/stops/402128"], ["http://irail.be/stations/NMBS/008895851", "https://data.delijn.be/stops/206110"], ["http://irail.be/stations/NMBS/008875127", "https://tec.openplanner.team/stops/N135ada"], ["https://data.delijn.be/stops/300018", "https://tec.openplanner.team/stops/Buccvoi2"], ["https://data.delijn.be/stops/302444", "https://tec.openplanner.team/stops/Bsrgm102"], ["http://irail.be/stations/NMBS/008822053", "https://data.delijn.be/stops/302504"], ["https://mivb.openplanner.team/stops/1970", "https://tec.openplanner.team/stops/Buccplj2"], ["http://irail.be/stations/NMBS/008843224", "https://tec.openplanner.team/stops/Lfhweri2"], ["http://irail.be/stations/NMBS/008821865", "https://data.delijn.be/stops/308497"], ["https://data.delijn.be/stops/301134", "https://mivb.openplanner.team/stops/6439"], ["https://data.delijn.be/stops/508679", "https://tec.openplanner.team/stops/H4ae100b"], ["http://irail.be/stations/NMBS/008200130", "https://tec.openplanner.team/stops/X769arb"], ["https://data.delijn.be/stops/304439", "https://tec.openplanner.team/stops/Brsg7fo2"], ["https://data.delijn.be/stops/333234", "https://mivb.openplanner.team/stops/4223"], ["https://data.delijn.be/stops/503772", "https://tec.openplanner.team/stops/H4sl154a"], ["https://data.delijn.be/stops/301011", "https://mivb.openplanner.team/stops/1199F"], ["http://irail.be/stations/NMBS/008814456", "https://mivb.openplanner.team/stops/5459"], ["https://data.delijn.be/stops/504640", "https://tec.openplanner.team/stops/H4co149b"], ["http://irail.be/stations/NMBS/008895711", "https://data.delijn.be/stops/209456"], ["https://data.delijn.be/stops/408956", "https://tec.openplanner.team/stops/LWAbett2"], ["http://irail.be/stations/NMBS/008812229", "https://mivb.openplanner.team/stops/9825F"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/Cchsud03"], ["https://data.delijn.be/stops/405345", "https://tec.openplanner.team/stops/Bezeksj2"], ["http://irail.be/stations/NMBS/008884541", "https://tec.openplanner.team/stops/H1qu102b"], ["https://data.delijn.be/stops/301018", "https://mivb.openplanner.team/stops/1190"], ["http://irail.be/stations/NMBS/008882230", "https://tec.openplanner.team/stops/H2mo124a"], ["https://data.delijn.be/stops/304066", "https://tec.openplanner.team/stops/Bovevnd1"], ["https://data.delijn.be/stops/301453", "https://tec.openplanner.team/stops/Bhalpar2"], ["https://data.delijn.be/stops/300982", "https://mivb.openplanner.team/stops/2346"], ["https://data.delijn.be/stops/300369", "https://tec.openplanner.team/stops/Bwaubru1"], ["http://irail.be/stations/NMBS/008865227", "https://tec.openplanner.team/stops/X898abb"], ["https://data.delijn.be/stops/304654", "https://mivb.openplanner.team/stops/8642"], ["https://data.delijn.be/stops/407751", "https://tec.openplanner.team/stops/LWOwa162"], ["https://data.delijn.be/stops/209820", "https://tec.openplanner.team/stops/H5rx129a"], ["http://irail.be/stations/NMBS/008833175", "https://data.delijn.be/stops/301990"], ["https://data.delijn.be/stops/408972", "https://tec.openplanner.team/stops/LWAwila1"], ["http://irail.be/stations/NMBS/008731388", "https://tec.openplanner.team/stops/H4lg106a"], ["http://irail.be/stations/NMBS/008861150", "https://tec.openplanner.team/stops/N534bva"], ["http://irail.be/stations/NMBS/008821048", "https://data.delijn.be/stops/109881"], ["https://data.delijn.be/stops/408858", "https://tec.openplanner.team/stops/LWRvert2"], ["https://mivb.openplanner.team/stops/2117B", "https://tec.openplanner.team/stops/Buccvbe1"], ["http://irail.be/stations/NMBS/008814415", "https://data.delijn.be/stops/300032"], ["https://data.delijn.be/stops/300955", "https://mivb.openplanner.team/stops/2058"], ["https://data.delijn.be/stops/301029", "https://mivb.openplanner.team/stops/2931"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/300353"], ["https://data.delijn.be/stops/401412", "https://mivb.openplanner.team/stops/6155F"], ["https://data.delijn.be/stops/405735", "https://tec.openplanner.team/stops/Lrclant2"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2re174b"], ["https://data.delijn.be/stops/207784", "https://tec.openplanner.team/stops/H5rx150a"], ["http://irail.be/stations/NMBS/008891264", "https://data.delijn.be/stops/505019"], ["http://irail.be/stations/NMBS/008863156", "https://tec.openplanner.team/stops/N539afa"], ["http://irail.be/stations/NMBS/008841673", "https://tec.openplanner.team/stops/Lligare*"], ["http://irail.be/stations/NMBS/008822533", "https://data.delijn.be/stops/301866"], ["http://irail.be/stations/NMBS/008872520", "https://tec.openplanner.team/stops/Bsampli1"], ["http://irail.be/stations/NMBS/008814167", "https://tec.openplanner.team/stops/Brsgter1"], ["http://irail.be/stations/NMBS/008829009", "https://data.delijn.be/stops/101361"], ["https://mivb.openplanner.team/stops/1497B", "https://tec.openplanner.team/stops/Bbxltrv1"], ["https://data.delijn.be/stops/304112", "https://tec.openplanner.team/stops/Bovevnd2"], ["http://irail.be/stations/NMBS/008843240", "https://tec.openplanner.team/stops/LENsent2"], ["https://data.delijn.be/stops/306383", "https://mivb.openplanner.team/stops/9729"], ["http://irail.be/stations/NMBS/008893211", "https://data.delijn.be/stops/201163"], ["https://data.delijn.be/stops/300827", "https://mivb.openplanner.team/stops/2837"], ["http://irail.be/stations/NMBS/008811916", "https://mivb.openplanner.team/stops/1318"], ["https://data.delijn.be/stops/302876", "https://tec.openplanner.team/stops/Buccron1"], ["https://data.delijn.be/stops/300368", "https://tec.openplanner.team/stops/Bblapra1"], ["http://irail.be/stations/NMBS/008892627", "https://data.delijn.be/stops/209284"], ["http://irail.be/stations/NMBS/008841442", "https://tec.openplanner.team/stops/LLirout1"], ["https://data.delijn.be/stops/408801", "https://tec.openplanner.team/stops/LVIsacr2"], ["https://data.delijn.be/stops/208187", "https://tec.openplanner.team/stops/H5rx136a"], ["https://data.delijn.be/stops/403805", "https://tec.openplanner.team/stops/LOrchau1"], ["https://data.delijn.be/stops/300335", "https://tec.openplanner.team/stops/Balsnie1"], ["https://data.delijn.be/stops/300822", "https://mivb.openplanner.team/stops/7820153"], ["https://data.delijn.be/stops/301035", "https://tec.openplanner.team/stops/Bsgihmo2"], ["https://data.delijn.be/stops/405458", "https://tec.openplanner.team/stops/LWSstat2"], ["https://mivb.openplanner.team/stops/5826", "https://tec.openplanner.team/stops/Buccbou2"], ["https://data.delijn.be/stops/507748", "https://tec.openplanner.team/stops/H4ae102b"], ["https://mivb.openplanner.team/stops/4289", "https://tec.openplanner.team/stops/Bwbfeta1"], ["https://data.delijn.be/stops/305299", "https://tec.openplanner.team/stops/Bspkkhe1"], ["https://mivb.openplanner.team/stops/2714", "https://tec.openplanner.team/stops/Buccdef1"], ["http://irail.be/stations/NMBS/008865110", "https://tec.openplanner.team/stops/X725afd"], ["http://irail.be/stations/NMBS/008863818", "https://tec.openplanner.team/stops/N232bqa"], ["http://irail.be/stations/NMBS/008813037", "https://mivb.openplanner.team/stops/1167"], ["https://data.delijn.be/stops/400665", "https://tec.openplanner.team/stops/LGAbois2"], ["http://irail.be/stations/NMBS/008895646", "https://data.delijn.be/stops/209588"], ["http://irail.be/stations/NMBS/008863461", "https://tec.openplanner.team/stops/N509bda"], ["http://irail.be/stations/NMBS/008832227", "https://data.delijn.be/stops/410109"], ["https://data.delijn.be/stops/308530", "https://mivb.openplanner.team/stops/2225"], ["https://data.delijn.be/stops/307852", "https://mivb.openplanner.team/stops/0230234"], ["https://data.delijn.be/stops/400495", "https://tec.openplanner.team/stops/LBSneuv1"], ["https://data.delijn.be/stops/407201", "https://tec.openplanner.team/stops/LHexhav2"], ["http://irail.be/stations/NMBS/008895836", "https://data.delijn.be/stops/306716"], ["https://data.delijn.be/stops/300817", "https://mivb.openplanner.team/stops/0270514"], ["https://data.delijn.be/stops/504305", "https://tec.openplanner.team/stops/H4mo160a"], ["http://irail.be/stations/NMBS/008812237", "https://data.delijn.be/stops/306150"], ["http://irail.be/stations/NMBS/008844057", "https://tec.openplanner.team/stops/Lvepala7"], ["http://irail.be/stations/NMBS/008879004", "https://tec.openplanner.team/stops/H1be100a"], ["https://data.delijn.be/stops/218014", "https://tec.openplanner.team/stops/H5rx106a"], ["https://data.delijn.be/stops/302226", "https://tec.openplanner.team/stops/Bhoemel2"], ["https://data.delijn.be/stops/408913", "https://tec.openplanner.team/stops/LVukabi2"], ["http://irail.be/stations/NMBS/008894235", "https://data.delijn.be/stops/204165"], ["https://data.delijn.be/stops/301197", "https://tec.openplanner.team/stops/Bmlnegl1"], ["https://data.delijn.be/stops/509238", "https://tec.openplanner.team/stops/H4co107a"], ["https://data.delijn.be/stops/410154", "https://mivb.openplanner.team/stops/1315"], ["https://data.delijn.be/stops/307262", "https://mivb.openplanner.team/stops/9659"], ["https://data.delijn.be/stops/404677", "https://tec.openplanner.team/stops/Lvovent1"], ["http://irail.be/stations/NMBS/008822608", "https://data.delijn.be/stops/101886"], ["https://data.delijn.be/stops/303226", "https://mivb.openplanner.team/stops/2609"], ["http://irail.be/stations/NMBS/008812153", "https://data.delijn.be/stops/207873"], ["https://data.delijn.be/stops/302426", "https://tec.openplanner.team/stops/Bjodrrg1"], ["http://irail.be/stations/NMBS/008844503", "https://tec.openplanner.team/stops/LWEcool1"], ["https://data.delijn.be/stops/408887", "https://tec.openplanner.team/stops/LTErest2"], ["https://mivb.openplanner.team/stops/5408", "https://tec.openplanner.team/stops/Bixleix2"], ["http://irail.be/stations/NMBS/008814415", "https://data.delijn.be/stops/219080"], ["http://irail.be/stations/NMBS/008400426", "https://data.delijn.be/stops/406278"], ["http://irail.be/stations/NMBS/008883220", "https://tec.openplanner.team/stops/H2me113a"], ["https://data.delijn.be/stops/307261", "https://mivb.openplanner.team/stops/9657"], ["http://irail.be/stations/NMBS/008831310", "https://data.delijn.be/stops/408567"], ["https://mivb.openplanner.team/stops/1807", "https://tec.openplanner.team/stops/Bettars1"], ["http://irail.be/stations/NMBS/008832565", "https://data.delijn.be/stops/401924"], ["https://mivb.openplanner.team/stops/6112", "https://tec.openplanner.team/stops/Bixlfla2"], ["http://irail.be/stations/NMBS/008811288", "https://data.delijn.be/stops/304631"], ["http://irail.be/stations/NMBS/008822269", "https://data.delijn.be/stops/307272"], ["http://irail.be/stations/NMBS/008884327", "https://tec.openplanner.team/stops/H1hi124a"], ["http://irail.be/stations/NMBS/008884889", "https://tec.openplanner.team/stops/H4bs110b"], ["https://data.delijn.be/stops/305151", "https://tec.openplanner.team/stops/Btiegma1"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Cgzhour1"], ["https://data.delijn.be/stops/400663", "https://tec.openplanner.team/stops/LWAbeec1"], ["http://irail.be/stations/NMBS/008866530", "https://tec.openplanner.team/stops/X617acb"], ["http://irail.be/stations/NMBS/008895745", "https://data.delijn.be/stops/207617"], ["http://irail.be/stations/NMBS/008863446", "https://tec.openplanner.team/stops/N512awb"], ["https://data.delijn.be/stops/408862", "https://tec.openplanner.team/stops/LWRvert2"], ["https://data.delijn.be/stops/301398", "https://mivb.openplanner.team/stops/2662B"], ["https://data.delijn.be/stops/404681", "https://tec.openplanner.team/stops/LWidepo2"], ["http://irail.be/stations/NMBS/008833258", "https://data.delijn.be/stops/300105"], ["https://data.delijn.be/stops/409000", "https://tec.openplanner.team/stops/LWAipes1"], ["https://data.delijn.be/stops/301155", "https://tec.openplanner.team/stops/Buccpor1"], ["https://data.delijn.be/stops/207782", "https://tec.openplanner.team/stops/H5rx148a"], ["https://data.delijn.be/stops/509383", "https://tec.openplanner.team/stops/H4pl121b"], ["https://data.delijn.be/stops/302398", "https://mivb.openplanner.team/stops/6"], ["https://data.delijn.be/stops/307510", "https://tec.openplanner.team/stops/Bovesnh2"], ["https://data.delijn.be/stops/302414", "https://tec.openplanner.team/stops/Bjodeco2"], ["http://irail.be/stations/NMBS/008886553", "https://tec.openplanner.team/stops/H1le117a"], ["https://data.delijn.be/stops/304546", "https://mivb.openplanner.team/stops/9652"], ["https://data.delijn.be/stops/300769", "https://mivb.openplanner.team/stops/2528"], ["https://data.delijn.be/stops/301026", "https://mivb.openplanner.team/stops/2402"], ["https://data.delijn.be/stops/301052", "https://mivb.openplanner.team/stops/5072"], ["https://data.delijn.be/stops/505926", "https://tec.openplanner.team/stops/H4co108b"], ["https://data.delijn.be/stops/407202", "https://tec.openplanner.team/stops/LHTcent2"], ["https://data.delijn.be/stops/408884", "https://tec.openplanner.team/stops/LFMrijk1"], ["https://data.delijn.be/stops/304072", "https://tec.openplanner.team/stops/Blhugar1"], ["https://data.delijn.be/stops/307697", "https://tec.openplanner.team/stops/Brsgleq1"], ["http://irail.be/stations/NMBS/008891009", "https://data.delijn.be/stops/507456"], ["https://data.delijn.be/stops/305169", "https://tec.openplanner.team/stops/Btieast1"], ["http://irail.be/stations/NMBS/008821832", "https://data.delijn.be/stops/104784"], ["https://data.delijn.be/stops/303581", "https://mivb.openplanner.team/stops/9728"], ["https://data.delijn.be/stops/302925", "https://tec.openplanner.team/stops/Bhevgar2"], ["http://irail.be/stations/NMBS/008814118", "https://mivb.openplanner.team/stops/2604"], ["https://mivb.openplanner.team/stops/3529", "https://tec.openplanner.team/stops/Baudsta2"], ["https://data.delijn.be/stops/300907", "https://tec.openplanner.team/stops/Bixlpat2"], ["https://data.delijn.be/stops/405658", "https://tec.openplanner.team/stops/LToluik2"], ["http://irail.be/stations/NMBS/008885530", "https://tec.openplanner.team/stops/H4vz368a"], ["https://data.delijn.be/stops/304452", "https://tec.openplanner.team/stops/Brsgter2"], ["https://data.delijn.be/stops/504310", "https://tec.openplanner.team/stops/H4mo208a"], ["http://irail.be/stations/NMBS/008864337", "https://tec.openplanner.team/stops/X995afa"], ["https://mivb.openplanner.team/stops/4307", "https://tec.openplanner.team/stops/Bixefra1"], ["https://data.delijn.be/stops/405700", "https://tec.openplanner.team/stops/Llgpire1"], ["http://irail.be/stations/NMBS/008821725", "https://data.delijn.be/stops/108239"], ["https://data.delijn.be/stops/209609", "https://tec.openplanner.team/stops/H1by106b"], ["https://data.delijn.be/stops/408913", "https://tec.openplanner.team/stops/LDpulve1"], ["https://data.delijn.be/stops/300881", "https://mivb.openplanner.team/stops/4957"], ["http://irail.be/stations/NMBS/008814241", "https://tec.openplanner.team/stops/Blilhay1"], ["http://irail.be/stations/NMBS/008884541", "https://tec.openplanner.team/stops/H1wl123a"], ["http://irail.be/stations/NMBS/008883220", "https://tec.openplanner.team/stops/H2ec105a"], ["http://irail.be/stations/NMBS/008833050", "https://data.delijn.be/stops/300723"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1hh118b"], ["https://data.delijn.be/stops/407754", "https://tec.openplanner.team/stops/LWOcomm2"], ["https://data.delijn.be/stops/407648", "https://tec.openplanner.team/stops/LBPboir1"], ["http://irail.be/stations/NMBS/008843158", "https://tec.openplanner.team/stops/Ljejoli1"], ["https://data.delijn.be/stops/302986", "https://mivb.openplanner.team/stops/3261"], ["http://irail.be/stations/NMBS/008895612", "https://data.delijn.be/stops/209548"], ["https://data.delijn.be/stops/304817", "https://tec.openplanner.team/stops/Bwavpar1"], ["http://irail.be/stations/NMBS/008811262", "https://data.delijn.be/stops/302717"], ["http://irail.be/stations/NMBS/008893559", "https://data.delijn.be/stops/203749"], ["https://data.delijn.be/stops/307042", "https://tec.openplanner.team/stops/Bblapin2"], ["http://irail.be/stations/NMBS/008895638", "https://data.delijn.be/stops/307303"], ["http://irail.be/stations/NMBS/008833605", "https://data.delijn.be/stops/406398"], ["http://irail.be/stations/NMBS/008861515", "https://tec.openplanner.team/stops/Bcrnvic1"], ["https://data.delijn.be/stops/408890", "https://tec.openplanner.team/stops/LFMveur2"], ["https://data.delijn.be/stops/307159", "https://tec.openplanner.team/stops/Bhalwat1"], ["https://data.delijn.be/stops/304877", "https://mivb.openplanner.team/stops/9552"], ["http://irail.be/stations/NMBS/008843323", "https://tec.openplanner.team/stops/LAmarbo1"], ["https://data.delijn.be/stops/307971", "https://tec.openplanner.team/stops/Bbgeegl1"], ["https://mivb.openplanner.team/stops/2119", "https://tec.openplanner.team/stops/Buccvbe1"], ["https://data.delijn.be/stops/400675", "https://tec.openplanner.team/stops/Blinbru1"], ["https://data.delijn.be/stops/302798", "https://mivb.openplanner.team/stops/1339"], ["http://irail.be/stations/NMBS/008881190", "https://tec.openplanner.team/stops/H1cv102a"], ["https://data.delijn.be/stops/300957", "https://tec.openplanner.team/stops/Baudulb1"], ["http://irail.be/stations/NMBS/008811510", "https://tec.openplanner.team/stops/Blhugar1"], ["http://irail.be/stations/NMBS/008842648", "https://tec.openplanner.team/stops/LTIptme1"], ["https://data.delijn.be/stops/300956", "https://mivb.openplanner.team/stops/5282F"], ["http://irail.be/stations/NMBS/008200101", "https://tec.openplanner.team/stops/X685afb"], ["https://data.delijn.be/stops/306003", "https://tec.openplanner.team/stops/Brsrfen1"], ["http://irail.be/stations/NMBS/008895430", "https://data.delijn.be/stops/206433"], ["http://irail.be/stations/NMBS/008821402", "https://data.delijn.be/stops/102192"], ["https://data.delijn.be/stops/307089", "https://tec.openplanner.team/stops/Bblapin1"], ["https://data.delijn.be/stops/302428", "https://tec.openplanner.team/stops/Bjodfab2"], ["http://irail.be/stations/NMBS/008894508", "https://data.delijn.be/stops/204002"], ["http://irail.be/stations/NMBS/008821600", "https://data.delijn.be/stops/102068"], ["https://data.delijn.be/stops/304446", "https://tec.openplanner.team/stops/Brsgece2"], ["http://irail.be/stations/NMBS/008871365", "https://tec.openplanner.team/stops/Cpcha432"], ["https://data.delijn.be/stops/408963", "https://tec.openplanner.team/stops/LWAalou1"], ["https://data.delijn.be/stops/509237", "https://tec.openplanner.team/stops/H4co106d"], ["http://irail.be/stations/NMBS/008893567", "https://data.delijn.be/stops/203944"], ["http://irail.be/stations/NMBS/008893062", "https://data.delijn.be/stops/203860"], ["http://irail.be/stations/NMBS/008861333", "https://tec.openplanner.team/stops/N529afb"], ["http://irail.be/stations/NMBS/008892320", "https://data.delijn.be/stops/501180"], ["http://irail.be/stations/NMBS/008883006", "https://tec.openplanner.team/stops/Bbcoubo2"], ["https://data.delijn.be/stops/207767", "https://tec.openplanner.team/stops/H5rx126a"], ["http://irail.be/stations/NMBS/008811544", "https://tec.openplanner.team/stops/Brixcro1"], ["https://data.delijn.be/stops/301411", "https://tec.openplanner.team/stops/Bengvma1"], ["http://irail.be/stations/NMBS/008871100", "https://tec.openplanner.team/stops/Cmasncb2"], ["https://data.delijn.be/stops/407230", "https://tec.openplanner.team/stops/LORhorp1"], ["https://data.delijn.be/stops/301107", "https://tec.openplanner.team/stops/Buccbas1"], ["https://data.delijn.be/stops/301032", "https://mivb.openplanner.team/stops/6162"], ["https://data.delijn.be/stops/308902", "https://mivb.openplanner.team/stops/1732"], ["https://data.delijn.be/stops/408861", "https://tec.openplanner.team/stops/LBWfusi2"], ["http://irail.be/stations/NMBS/008822210", "https://data.delijn.be/stops/106976"], ["https://data.delijn.be/stops/304207", "https://tec.openplanner.team/stops/Brsrfen1"], ["https://data.delijn.be/stops/305887", "https://mivb.openplanner.team/stops/2823B"], ["https://data.delijn.be/stops/308981", "https://tec.openplanner.team/stops/Bgnvgir2"], ["https://data.delijn.be/stops/408906", "https://tec.openplanner.team/stops/LFPkerk1"], ["https://data.delijn.be/stops/406312", "https://tec.openplanner.team/stops/LMastat4"], ["https://data.delijn.be/stops/209609", "https://tec.openplanner.team/stops/H1mk116a"], ["https://data.delijn.be/stops/306000", "https://tec.openplanner.team/stops/Bovetsa1"], ["http://irail.be/stations/NMBS/008881455", "https://tec.openplanner.team/stops/H3th131b"], ["https://data.delijn.be/stops/405715", "https://tec.openplanner.team/stops/Llghoch2"], ["http://irail.be/stations/NMBS/008811247", "https://data.delijn.be/stops/304723"], ["https://data.delijn.be/stops/405337", "https://tec.openplanner.team/stops/Bneelaa1"], ["https://data.delijn.be/stops/408800", "https://tec.openplanner.team/stops/LVIjacq2"], ["https://data.delijn.be/stops/405703", "https://tec.openplanner.team/stops/Llgbatt1"], ["https://data.delijn.be/stops/307533", "https://tec.openplanner.team/stops/H1en101b"], ["https://data.delijn.be/stops/301099", "https://mivb.openplanner.team/stops/5532"], ["https://data.delijn.be/stops/503496", "https://tec.openplanner.team/stops/H4rk101b"], ["https://data.delijn.be/stops/304021", "https://tec.openplanner.team/stops/Bovehst1"], ["https://data.delijn.be/stops/301011", "https://mivb.openplanner.team/stops/1064"], ["https://mivb.openplanner.team/stops/2144", "https://tec.openplanner.team/stops/Buccvbe1"], ["http://irail.be/stations/NMBS/008863842", "https://tec.openplanner.team/stops/N338ahb"], ["https://data.delijn.be/stops/301082", "https://mivb.openplanner.team/stops/6214"], ["https://mivb.openplanner.team/stops/3562", "https://tec.openplanner.team/stops/Bixleix2"], ["https://data.delijn.be/stops/307713", "https://tec.openplanner.team/stops/Brsggde2"], ["https://data.delijn.be/stops/404676", "https://tec.openplanner.team/stops/Lvovent2"], ["http://irail.be/stations/NMBS/008892692", "https://data.delijn.be/stops/208213"], ["http://irail.be/stations/NMBS/008891611", "https://data.delijn.be/stops/506510"], ["https://data.delijn.be/stops/305914", "https://mivb.openplanner.team/stops/5108"], ["https://data.delijn.be/stops/508032", "https://tec.openplanner.team/stops/H4ae100a"], ["http://irail.be/stations/NMBS/008842036", "https://tec.openplanner.team/stops/Lcebail2"], ["https://data.delijn.be/stops/408926", "https://tec.openplanner.team/stops/LRmkast*"], ["http://irail.be/stations/NMBS/008845229", "https://tec.openplanner.team/stops/LCocasc1"], ["https://data.delijn.be/stops/209185", "https://tec.openplanner.team/stops/H5rx134b"], ["http://irail.be/stations/NMBS/008812153", "https://data.delijn.be/stops/207691"], ["https://data.delijn.be/stops/410153", "https://mivb.openplanner.team/stops/5046"], ["https://data.delijn.be/stops/301155", "https://mivb.openplanner.team/stops/2145"], ["http://irail.be/stations/NMBS/008831310", "https://tec.openplanner.team/stops/LTolijn*"], ["http://irail.be/stations/NMBS/008863404", "https://tec.openplanner.team/stops/LSssurl1"], ["https://data.delijn.be/stops/305356", "https://tec.openplanner.team/stops/Bwaveur1"], ["http://irail.be/stations/NMBS/008864451", "https://tec.openplanner.team/stops/X982aua"], ["http://irail.be/stations/NMBS/008821238", "https://data.delijn.be/stops/102335"], ["https://data.delijn.be/stops/305353", "https://tec.openplanner.team/stops/Brsreco2"], ["https://data.delijn.be/stops/307599", "https://tec.openplanner.team/stops/Bhalker1"], ["https://data.delijn.be/stops/308869", "https://tec.openplanner.team/stops/Bkrapri1"], ["https://data.delijn.be/stops/300813", "https://mivb.openplanner.team/stops/7790556"], ["http://irail.be/stations/NMBS/008822277", "https://data.delijn.be/stops/305618"], ["https://data.delijn.be/stops/301033", "https://mivb.openplanner.team/stops/2959"], ["https://data.delijn.be/stops/408810", "https://tec.openplanner.team/stops/LHAclin2"], ["http://irail.be/stations/NMBS/008872306", "https://tec.openplanner.team/stops/Cgyrdid1"], ["https://data.delijn.be/stops/307167", "https://tec.openplanner.team/stops/Bhalark2"], ["https://data.delijn.be/stops/410143", "https://tec.openplanner.team/stops/Llgbois2"], ["http://irail.be/stations/NMBS/008885704", "https://data.delijn.be/stops/509713"], ["https://mivb.openplanner.team/stops/1262B", "https://tec.openplanner.team/stops/Bixlqll1"], ["https://data.delijn.be/stops/306647", "https://mivb.openplanner.team/stops/1169"], ["http://irail.be/stations/NMBS/008864915", "https://tec.openplanner.team/stops/N254aga"], ["http://irail.be/stations/NMBS/008841327", "https://tec.openplanner.team/stops/LFOcomb4"], ["https://data.delijn.be/stops/400465", "https://tec.openplanner.team/stops/LEMgren*"], ["https://data.delijn.be/stops/300932", "https://mivb.openplanner.team/stops/2924"], ["https://data.delijn.be/stops/308856", "https://mivb.openplanner.team/stops/4251"], ["https://data.delijn.be/stops/305436", "https://mivb.openplanner.team/stops/5520F"], ["https://mivb.openplanner.team/stops/3550", "https://tec.openplanner.team/stops/Baudvdr2"], ["https://data.delijn.be/stops/301072", "https://mivb.openplanner.team/stops/1179"], ["http://irail.be/stations/NMBS/008871712", "https://tec.openplanner.team/stops/H1lo119a"], ["http://irail.be/stations/NMBS/008822475", "https://data.delijn.be/stops/305814"], ["https://data.delijn.be/stops/302442", "https://tec.openplanner.team/stops/Bzlufbo1"], ["https://data.delijn.be/stops/303660", "https://tec.openplanner.team/stops/Blkbbeu1"], ["http://irail.be/stations/NMBS/008871688", "https://tec.openplanner.team/stops/H1ls129a"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/N524aba"], ["https://data.delijn.be/stops/402549", "https://tec.openplanner.team/stops/LBpcren1"], ["https://data.delijn.be/stops/301688", "https://tec.openplanner.team/stops/Bnetrbr2"], ["http://irail.be/stations/NMBS/008200110", "https://tec.openplanner.team/stops/X684abb"], ["https://data.delijn.be/stops/300368", "https://tec.openplanner.team/stops/Bwaunou1"], ["https://data.delijn.be/stops/305280", "https://mivb.openplanner.team/stops/9779"], ["http://irail.be/stations/NMBS/008711184", "https://tec.openplanner.team/stops/X611aca"], ["http://irail.be/stations/NMBS/008881570", "https://tec.openplanner.team/stops/H1fr122a"], ["https://data.delijn.be/stops/301412", "https://tec.openplanner.team/stops/H1en106b"], ["https://data.delijn.be/stops/301079", "https://mivb.openplanner.team/stops/6437F"], ["http://irail.be/stations/NMBS/008892908", "https://tec.openplanner.team/stops/H5rx148a"], ["https://data.delijn.be/stops/303632", "https://mivb.openplanner.team/stops/6602"], ["https://data.delijn.be/stops/300887", "https://mivb.openplanner.team/stops/7830352"], ["http://irail.be/stations/NMBS/008892650", "https://data.delijn.be/stops/208726"], ["https://data.delijn.be/stops/307716", "https://tec.openplanner.team/stops/Brsggol2"], ["https://data.delijn.be/stops/308094", "https://tec.openplanner.team/stops/Bpienod2"], ["https://data.delijn.be/stops/301008", "https://mivb.openplanner.team/stops/1199F"], ["https://data.delijn.be/stops/300753", "https://mivb.openplanner.team/stops/1205"], ["http://irail.be/stations/NMBS/008841459", "https://tec.openplanner.team/stops/LJelava1"], ["https://data.delijn.be/stops/301086", "https://mivb.openplanner.team/stops/8131"], ["https://data.delijn.be/stops/509382", "https://tec.openplanner.team/stops/H4pl122b"], ["http://irail.be/stations/NMBS/008842689", "https://tec.openplanner.team/stops/LESchpl1"], ["https://data.delijn.be/stops/400683", "https://tec.openplanner.team/stops/LGAholl2"], ["https://data.delijn.be/stops/301958", "https://mivb.openplanner.team/stops/6484B"], ["https://data.delijn.be/stops/301928", "https://mivb.openplanner.team/stops/9853"], ["https://data.delijn.be/stops/300884", "https://mivb.openplanner.team/stops/6481"], ["https://data.delijn.be/stops/300982", "https://mivb.openplanner.team/stops/5350G"], ["http://irail.be/stations/NMBS/008866605", "https://tec.openplanner.team/stops/X615bia"], ["https://data.delijn.be/stops/303996", "https://tec.openplanner.team/stops/Bove4ko1"], ["https://data.delijn.be/stops/301006", "https://mivb.openplanner.team/stops/1111"], ["http://irail.be/stations/NMBS/008832433", "https://data.delijn.be/stops/109667"], ["https://data.delijn.be/stops/301051", "https://mivb.openplanner.team/stops/1792"], ["https://data.delijn.be/stops/504654", "https://tec.openplanner.team/stops/H4co150a"], ["https://data.delijn.be/stops/403750", "https://tec.openplanner.team/stops/LORec--*"], ["http://irail.be/stations/NMBS/008841004", "https://tec.openplanner.team/stops/LlgguilA"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/Cmlhotv1"], ["http://irail.be/stations/NMBS/008886561", "https://tec.openplanner.team/stops/H1le117a"], ["https://data.delijn.be/stops/404686", "https://tec.openplanner.team/stops/LWipaif4"], ["https://data.delijn.be/stops/306400", "https://mivb.openplanner.team/stops/3228"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N552abb"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/Cchsud01"], ["http://irail.be/stations/NMBS/008866118", "https://tec.openplanner.team/stops/X602aha"], ["https://data.delijn.be/stops/307636", "https://tec.openplanner.team/stops/Bucceng2"], ["http://irail.be/stations/NMBS/008884541", "https://tec.openplanner.team/stops/H1qu111a"], ["http://irail.be/stations/NMBS/008814449", "https://mivb.openplanner.team/stops/6931B"], ["https://mivb.openplanner.team/stops/8212", "https://tec.openplanner.team/stops/Baudstr1"], ["https://data.delijn.be/stops/509861", "https://tec.openplanner.team/stops/H4mo159a"], ["http://irail.be/stations/NMBS/008863842", "https://tec.openplanner.team/stops/N338aga"], ["http://irail.be/stations/NMBS/008866175", "https://tec.openplanner.team/stops/X650aha"], ["https://data.delijn.be/stops/301676", "https://tec.openplanner.team/stops/Bnetace1"], ["https://data.delijn.be/stops/504233", "https://tec.openplanner.team/stops/H4co108b"], ["http://irail.be/stations/NMBS/008861119", "https://tec.openplanner.team/stops/N501amb"], ["http://irail.be/stations/NMBS/008200516", "https://tec.openplanner.team/stops/X684aaa"], ["http://irail.be/stations/NMBS/008821667", "https://data.delijn.be/stops/107111"], ["https://data.delijn.be/stops/308823", "https://tec.openplanner.team/stops/Bgdhdet1"], ["https://data.delijn.be/stops/302849", "https://tec.openplanner.team/stops/Bwaakap2"], ["https://data.delijn.be/stops/304443", "https://tec.openplanner.team/stops/Brsggar2"], ["https://data.delijn.be/stops/305347", "https://tec.openplanner.team/stops/Bbgepau2"], ["https://data.delijn.be/stops/405414", "https://tec.openplanner.team/stops/Blanath1"], ["https://data.delijn.be/stops/404671", "https://tec.openplanner.team/stops/LJUmate1"], ["https://data.delijn.be/stops/303585", "https://mivb.openplanner.team/stops/9778"], ["http://irail.be/stations/NMBS/008891173", "https://data.delijn.be/stops/501412"], ["https://data.delijn.be/stops/408920", "https://tec.openplanner.team/stops/LTEnuro1"], ["http://irail.be/stations/NMBS/008842705", "https://tec.openplanner.team/stops/LCPscay1"], ["https://data.delijn.be/stops/305145", "https://tec.openplanner.team/stops/H1mk123b"], ["https://data.delijn.be/stops/401397", "https://mivb.openplanner.team/stops/1533"], ["https://data.delijn.be/stops/301923", "https://mivb.openplanner.team/stops/2017"], ["https://data.delijn.be/stops/306813", "https://mivb.openplanner.team/stops/1568"], ["https://data.delijn.be/stops/301043", "https://mivb.openplanner.team/stops/3263B"], ["http://irail.be/stations/NMBS/008884319", "https://tec.openplanner.team/stops/H1bo108b"], ["http://irail.be/stations/NMBS/008833308", "https://data.delijn.be/stops/305160"], ["http://irail.be/stations/NMBS/008883121", "https://tec.openplanner.team/stops/H1ne147a"], ["https://data.delijn.be/stops/304545", "https://mivb.openplanner.team/stops/9652"], ["http://irail.be/stations/NMBS/008863834", "https://tec.openplanner.team/stops/N261aab"], ["https://data.delijn.be/stops/300325", "https://tec.openplanner.team/stops/Balsnie2"], ["https://data.delijn.be/stops/400479", "https://tec.openplanner.team/stops/LSLdall1"], ["http://irail.be/stations/NMBS/008886587", "https://tec.openplanner.team/stops/H4re225a"], ["https://data.delijn.be/stops/300776", "https://mivb.openplanner.team/stops/1255"], ["https://data.delijn.be/stops/301811", "https://mivb.openplanner.team/stops/5776"], ["https://data.delijn.be/stops/303833", "https://mivb.openplanner.team/stops/2282"], ["https://data.delijn.be/stops/306816", "https://tec.openplanner.team/stops/Bbrlrph2"], ["https://data.delijn.be/stops/302438", "https://tec.openplanner.team/stops/Bsrgm102"], ["http://irail.be/stations/NMBS/008869088", "https://tec.openplanner.team/stops/X695aea"], ["http://irail.be/stations/NMBS/008822269", "https://data.delijn.be/stops/305274"], ["https://data.delijn.be/stops/306898", "https://tec.openplanner.team/stops/Bgoesch3"], ["http://irail.be/stations/NMBS/008811635", "https://tec.openplanner.team/stops/Blmlgar1"], ["https://data.delijn.be/stops/305913", "https://mivb.openplanner.team/stops/1314"], ["https://data.delijn.be/stops/407231", "https://tec.openplanner.team/stops/LORdtec*"], ["https://data.delijn.be/stops/303081", "https://tec.openplanner.team/stops/Bleunaa1"], ["https://data.delijn.be/stops/307859", "https://tec.openplanner.team/stops/Bhmmjco1"], ["https://data.delijn.be/stops/300012", "https://mivb.openplanner.team/stops/6857"], ["http://irail.be/stations/NMBS/008843240", "https://tec.openplanner.team/stops/LENindu2"], ["http://irail.be/stations/NMBS/008874567", "https://tec.openplanner.team/stops/Cfaplma2"], ["https://data.delijn.be/stops/304705", "https://mivb.openplanner.team/stops/0230234"], ["https://data.delijn.be/stops/300753", "https://mivb.openplanner.team/stops/2532"], ["http://irail.be/stations/NMBS/008719100", "https://tec.openplanner.team/stops/X681aeb"], ["https://data.delijn.be/stops/300979", "https://mivb.openplanner.team/stops/5765F"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N254aha"], ["https://data.delijn.be/stops/304011", "https://tec.openplanner.team/stops/Bovelge2"], ["https://data.delijn.be/stops/300994", "https://mivb.openplanner.team/stops/6202"], ["https://data.delijn.be/stops/305428", "https://mivb.openplanner.team/stops/5520F"], ["http://irail.be/stations/NMBS/008821832", "https://data.delijn.be/stops/104683"], ["http://irail.be/stations/NMBS/008814340", "https://data.delijn.be/stops/301952"], ["https://data.delijn.be/stops/301146", "https://mivb.openplanner.team/stops/4319"], ["https://data.delijn.be/stops/302807", "https://mivb.openplanner.team/stops/1661"], ["http://irail.be/stations/NMBS/008872579", "https://tec.openplanner.team/stops/Btilgar2"], ["https://data.delijn.be/stops/304204", "https://tec.openplanner.team/stops/Brsrfen2"], ["https://data.delijn.be/stops/305236", "https://tec.openplanner.team/stops/H1mk109b"], ["https://data.delijn.be/stops/300783", "https://mivb.openplanner.team/stops/7640211"], ["https://data.delijn.be/stops/301298", "https://mivb.openplanner.team/stops/1018"], ["https://data.delijn.be/stops/406318", "https://tec.openplanner.team/stops/LMapark3"], ["https://data.delijn.be/stops/400480", "https://tec.openplanner.team/stops/LGLcour4"], ["https://data.delijn.be/stops/308642", "https://mivb.openplanner.team/stops/9786"], ["http://irail.be/stations/NMBS/008893534", "https://data.delijn.be/stops/207246"], ["http://irail.be/stations/NMBS/008843331", "https://tec.openplanner.team/stops/LAMcloc1"], ["http://irail.be/stations/NMBS/008895620", "https://data.delijn.be/stops/307590"], ["https://data.delijn.be/stops/302898", "https://tec.openplanner.team/stops/Bhevl3l2"], ["https://data.delijn.be/stops/301107", "https://tec.openplanner.team/stops/Buccbas2"], ["https://data.delijn.be/stops/300758", "https://mivb.openplanner.team/stops/2220"], ["https://data.delijn.be/stops/300830", "https://mivb.openplanner.team/stops/7790456"], ["https://mivb.openplanner.team/stops/2709F", "https://tec.openplanner.team/stops/Buccdst1"], ["http://irail.be/stations/NMBS/008884640", "https://tec.openplanner.team/stops/H5gr135a"], ["https://mivb.openplanner.team/stops/1278", "https://tec.openplanner.team/stops/Bettcha3"], ["https://data.delijn.be/stops/301037", "https://mivb.openplanner.team/stops/3288"], ["http://irail.be/stations/NMBS/008821659", "https://data.delijn.be/stops/107106"], ["https://data.delijn.be/stops/408956", "https://tec.openplanner.team/stops/LWAwila1"], ["https://data.delijn.be/stops/304909", "https://tec.openplanner.team/stops/Bleugar1"], ["https://data.delijn.be/stops/301925", "https://mivb.openplanner.team/stops/2069"], ["https://data.delijn.be/stops/304432", "https://tec.openplanner.team/stops/Brsggea1"], ["http://irail.be/stations/NMBS/008831401", "https://data.delijn.be/stops/308251"], ["http://irail.be/stations/NMBS/008833670", "https://data.delijn.be/stops/405393"], ["https://data.delijn.be/stops/300938", "https://mivb.openplanner.team/stops/2571"], ["http://irail.be/stations/NMBS/008895489", "https://data.delijn.be/stops/206528"], ["http://irail.be/stations/NMBS/008821030", "https://data.delijn.be/stops/103900"], ["https://data.delijn.be/stops/301134", "https://tec.openplanner.team/stops/Bixlozo2"], ["https://data.delijn.be/stops/209820", "https://tec.openplanner.team/stops/H5rx138a"], ["https://data.delijn.be/stops/307695", "https://mivb.openplanner.team/stops/2147B"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1gh171a"], ["http://irail.be/stations/NMBS/008871662", "https://tec.openplanner.team/stops/H1so133b"], ["https://data.delijn.be/stops/300837", "https://mivb.openplanner.team/stops/5701"], ["https://data.delijn.be/stops/408885", "https://tec.openplanner.team/stops/LFMrijk2"], ["https://data.delijn.be/stops/300933", "https://mivb.openplanner.team/stops/2910"], ["http://irail.be/stations/NMBS/008829009", "https://data.delijn.be/stops/102193"], ["https://data.delijn.be/stops/301133", "https://tec.openplanner.team/stops/Buccdef2"], ["https://data.delijn.be/stops/503332", "https://tec.openplanner.team/stops/H4do108a"], ["http://irail.be/stations/NMBS/008811676", "https://tec.openplanner.team/stops/Bllngal1"], ["https://data.delijn.be/stops/400467", "https://tec.openplanner.team/stops/LEMeg--2"], ["https://data.delijn.be/stops/307827", "https://mivb.openplanner.team/stops/2071"], ["https://data.delijn.be/stops/410139", "https://tec.openplanner.team/stops/Llglimb2"], ["https://mivb.openplanner.team/stops/1370", "https://tec.openplanner.team/stops/Bbxlmid1"], ["https://mivb.openplanner.team/stops/7369", "https://tec.openplanner.team/stops/Bsgipha2"], ["https://data.delijn.be/stops/300919", "https://mivb.openplanner.team/stops/3129"], ["https://data.delijn.be/stops/407207", "https://tec.openplanner.team/stops/LHehacc2"], ["https://mivb.openplanner.team/stops/1961B", "https://tec.openplanner.team/stops/Bucceng2"], ["https://data.delijn.be/stops/304449", "https://tec.openplanner.team/stops/Brsgfso2"], ["https://data.delijn.be/stops/301106", "https://mivb.openplanner.team/stops/1449"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Cgzoctr2"], ["https://data.delijn.be/stops/301009", "https://mivb.openplanner.team/stops/1094F"], ["https://data.delijn.be/stops/504383", "https://tec.openplanner.team/stops/H4pl114a"], ["http://irail.be/stations/NMBS/008843430", "https://tec.openplanner.team/stops/NL72aab"], ["https://data.delijn.be/stops/305508", "https://mivb.openplanner.team/stops/9561"], ["https://data.delijn.be/stops/303586", "https://mivb.openplanner.team/stops/9702"], ["https://data.delijn.be/stops/305223", "https://tec.openplanner.team/stops/Bmrqpla2"], ["http://irail.be/stations/NMBS/008822251", "https://data.delijn.be/stops/308407"], ["http://irail.be/stations/NMBS/008896925", "https://data.delijn.be/stops/508288"], ["http://irail.be/stations/NMBS/008833266", "https://data.delijn.be/stops/307359"], ["http://irail.be/stations/NMBS/008871225", "https://tec.openplanner.team/stops/Cgofert1"], ["http://irail.be/stations/NMBS/008811205", "https://mivb.openplanner.team/stops/3556"], ["https://data.delijn.be/stops/405733", "https://tec.openplanner.team/stops/LrcarsT3"], ["https://mivb.openplanner.team/stops/1251", "https://tec.openplanner.team/stops/Buccdho1"], ["http://irail.be/stations/NMBS/008895125", "https://data.delijn.be/stops/206268"], ["https://data.delijn.be/stops/405714", "https://tec.openplanner.team/stops/Llgmart2"], ["https://data.delijn.be/stops/208173", "https://tec.openplanner.team/stops/H5fl101a"], ["https://data.delijn.be/stops/307645", "https://tec.openplanner.team/stops/Bbrlmez1"], ["https://data.delijn.be/stops/301043", "https://mivb.openplanner.team/stops/2261"], ["https://data.delijn.be/stops/408973", "https://tec.openplanner.team/stops/LWAlong5"], ["http://irail.be/stations/NMBS/008864949", "https://tec.openplanner.team/stops/N563ana"], ["http://irail.be/stations/NMBS/008865128", "https://tec.openplanner.team/stops/X725bca"], ["http://irail.be/stations/NMBS/008893583", "https://data.delijn.be/stops/206247"], ["http://irail.be/stations/NMBS/008821964", "https://data.delijn.be/stops/109156"], ["https://data.delijn.be/stops/405462", "https://tec.openplanner.team/stops/LWHwaas4"], ["http://irail.be/stations/NMBS/008832458", "https://data.delijn.be/stops/109262"], ["https://data.delijn.be/stops/207765", "https://tec.openplanner.team/stops/H5rx100b"], ["https://data.delijn.be/stops/305165", "https://mivb.openplanner.team/stops/0901"], ["http://irail.be/stations/NMBS/008811247", "https://data.delijn.be/stops/306556"], ["https://data.delijn.be/stops/509003", "https://tec.openplanner.team/stops/H4mo159b"], ["https://data.delijn.be/stops/303669", "https://mivb.openplanner.team/stops/1743"], ["http://irail.be/stations/NMBS/008874583", "https://tec.openplanner.team/stops/Crswaut2"], ["http://irail.be/stations/NMBS/008821246", "https://data.delijn.be/stops/107238"], ["http://irail.be/stations/NMBS/008883212", "https://tec.openplanner.team/stops/Becepri1"], ["http://irail.be/stations/NMBS/008891033", "https://data.delijn.be/stops/502767"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Cthrpoi1"], ["http://irail.be/stations/NMBS/008200100", "https://tec.openplanner.team/stops/X685apa"], ["http://irail.be/stations/NMBS/008871647", "https://tec.openplanner.team/stops/H1so142b"], ["https://data.delijn.be/stops/302423", "https://tec.openplanner.team/stops/Bsrgcur1"], ["http://irail.be/stations/NMBS/008811767", "https://tec.openplanner.team/stops/Barcsta1"], ["https://data.delijn.be/stops/308902", "https://mivb.openplanner.team/stops/1683F"], ["https://mivb.openplanner.team/stops/1764", "https://tec.openplanner.team/stops/Bettlha1"], ["https://data.delijn.be/stops/303112", "https://tec.openplanner.team/stops/Bleunaa1"], ["http://irail.be/stations/NMBS/008895471", "https://data.delijn.be/stops/206533"], ["https://data.delijn.be/stops/304876", "https://mivb.openplanner.team/stops/9575"], ["https://data.delijn.be/stops/302794", "https://mivb.openplanner.team/stops/2017"], ["https://data.delijn.be/stops/305348", "https://tec.openplanner.team/stops/Bwavwal3"], ["http://irail.be/stations/NMBS/008831039", "https://data.delijn.be/stops/400118"], ["http://irail.be/stations/NMBS/008841459", "https://tec.openplanner.team/stops/LNvrout2"], ["http://irail.be/stations/NMBS/008812047", "https://mivb.openplanner.team/stops/6800F"], ["https://data.delijn.be/stops/301927", "https://mivb.openplanner.team/stops/1043"], ["http://irail.be/stations/NMBS/008861333", "https://tec.openplanner.team/stops/N584aoa"], ["http://irail.be/stations/NMBS/008863818", "https://tec.openplanner.team/stops/N261acb"], ["http://irail.be/stations/NMBS/008863008", "https://tec.openplanner.team/stops/N501gra"], ["http://irail.be/stations/NMBS/008894672", "https://data.delijn.be/stops/214001"], ["https://data.delijn.be/stops/208180", "https://tec.openplanner.team/stops/H5el101b"], ["https://data.delijn.be/stops/305437", "https://tec.openplanner.team/stops/Bovesol2"], ["https://data.delijn.be/stops/301958", "https://mivb.openplanner.team/stops/7690106"], ["http://irail.be/stations/NMBS/008200128", "https://tec.openplanner.team/stops/LoUpete2"], ["http://irail.be/stations/NMBS/008895455", "https://data.delijn.be/stops/206534"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bsmgbsa2"], ["https://mivb.openplanner.team/stops/1870", "https://tec.openplanner.team/stops/Bettlha1"], ["https://data.delijn.be/stops/308855", "https://mivb.openplanner.team/stops/4257"], ["https://data.delijn.be/stops/405735", "https://tec.openplanner.team/stops/Lrcpaqu2"], ["https://data.delijn.be/stops/301230", "https://tec.openplanner.team/stops/Bhalrat1"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1hh110b"], ["https://mivb.openplanner.team/stops/3510", "https://tec.openplanner.team/stops/Bixlaca2"], ["http://irail.be/stations/NMBS/008863560", "https://tec.openplanner.team/stops/N540ana"], ["http://irail.be/stations/NMBS/008883220", "https://tec.openplanner.team/stops/Beclpma2"], ["http://irail.be/stations/NMBS/008866407", "https://tec.openplanner.team/stops/X608ala"], ["https://data.delijn.be/stops/307264", "https://tec.openplanner.team/stops/Bhalgar2"], ["http://irail.be/stations/NMBS/008841731", "https://tec.openplanner.team/stops/LGLeg--2"], ["http://irail.be/stations/NMBS/008833159", "https://data.delijn.be/stops/301682"], ["http://irail.be/stations/NMBS/008811270", "https://data.delijn.be/stops/302099"], ["https://data.delijn.be/stops/303122", "https://tec.openplanner.team/stops/Blemsta2"], ["https://data.delijn.be/stops/404668", "https://tec.openplanner.team/stops/LJUmc--2"], ["http://irail.be/stations/NMBS/008811742", "https://data.delijn.be/stops/302391"], ["http://irail.be/stations/NMBS/008881125", "https://tec.openplanner.team/stops/H1gh148a"], ["http://irail.be/stations/NMBS/008843323", "https://tec.openplanner.team/stops/LAmcorn1"], ["https://data.delijn.be/stops/300764", "https://mivb.openplanner.team/stops/3755"], ["https://data.delijn.be/stops/301422", "https://tec.openplanner.team/stops/Bptemch1"], ["https://data.delijn.be/stops/403726", "https://tec.openplanner.team/stops/LOesour2"], ["http://irail.be/stations/NMBS/008891132", "https://data.delijn.be/stops/200827"], ["https://data.delijn.be/stops/305918", "https://mivb.openplanner.team/stops/4599"], ["http://irail.be/stations/NMBS/008727100", "https://data.delijn.be/stops/505375"], ["https://data.delijn.be/stops/408862", "https://tec.openplanner.team/stops/LWRchem2"], ["http://irail.be/stations/NMBS/008895208", "https://data.delijn.be/stops/208125"], ["http://irail.be/stations/NMBS/008210014", "https://tec.openplanner.team/stops/X684aaa"], ["https://data.delijn.be/stops/307209", "https://tec.openplanner.team/stops/Bcbqa362"], ["https://mivb.openplanner.team/stops/4407", "https://tec.openplanner.team/stops/Baudvdu2"], ["http://irail.be/stations/NMBS/008844230", "https://tec.openplanner.team/stops/LNEcouc2"], ["http://irail.be/stations/NMBS/008873312", "https://tec.openplanner.team/stops/N137aja"], ["https://data.delijn.be/stops/408900", "https://tec.openplanner.team/stops/LFPkerk2"], ["https://data.delijn.be/stops/300925", "https://mivb.openplanner.team/stops/3272"], ["https://data.delijn.be/stops/303224", "https://mivb.openplanner.team/stops/3815"], ["http://irail.be/stations/NMBS/008824240", "https://data.delijn.be/stops/101132"], ["https://data.delijn.be/stops/301927", "https://mivb.openplanner.team/stops/9853"], ["https://data.delijn.be/stops/304445", "https://tec.openplanner.team/stops/Brsggar2"], ["https://data.delijn.be/stops/305261", "https://tec.openplanner.team/stops/Bspkbeu2"], ["http://irail.be/stations/NMBS/008843133", "https://tec.openplanner.team/stops/Lscbour1"], ["http://irail.be/stations/NMBS/008889045", "https://tec.openplanner.team/stops/H4bx167a"], ["https://data.delijn.be/stops/308676", "https://mivb.openplanner.team/stops/0521"], ["http://irail.be/stations/NMBS/008844255", "https://tec.openplanner.team/stops/LFrvesd2"], ["https://data.delijn.be/stops/503330", "https://tec.openplanner.team/stops/H4do108a"], ["https://data.delijn.be/stops/300815", "https://mivb.openplanner.team/stops/9056F"], ["http://irail.be/stations/NMBS/008811544", "https://tec.openplanner.team/stops/Brixape1"], ["http://irail.be/stations/NMBS/008895646", "https://data.delijn.be/stops/307327"], ["https://data.delijn.be/stops/300759", "https://mivb.openplanner.team/stops/1211B"], ["https://data.delijn.be/stops/300788", "https://mivb.openplanner.team/stops/3717"], ["http://irail.be/stations/NMBS/008866605", "https://tec.openplanner.team/stops/X615aab"], ["https://data.delijn.be/stops/301002", "https://mivb.openplanner.team/stops/6058"], ["http://irail.be/stations/NMBS/008881430", "https://tec.openplanner.team/stops/H1ha185b"], ["http://irail.be/stations/NMBS/008833274", "https://data.delijn.be/stops/307395"], ["http://irail.be/stations/NMBS/008881505", "https://tec.openplanner.team/stops/H1al106a"], ["http://irail.be/stations/NMBS/008895067", "https://data.delijn.be/stops/216021"], ["https://data.delijn.be/stops/301421", "https://tec.openplanner.team/stops/Bptemch2"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/Bgembhe1"], ["https://data.delijn.be/stops/300770", "https://mivb.openplanner.team/stops/3800"], ["https://data.delijn.be/stops/301107", "https://mivb.openplanner.team/stops/1975"], ["https://data.delijn.be/stops/408847", "https://tec.openplanner.team/stops/LRmhage8"], ["http://irail.be/stations/NMBS/008895000", "https://data.delijn.be/stops/204971"], ["https://data.delijn.be/stops/301002", "https://mivb.openplanner.team/stops/1567"], ["http://irail.be/stations/NMBS/008893815", "https://data.delijn.be/stops/203986"], ["http://irail.be/stations/NMBS/008842853", "https://tec.openplanner.team/stops/LVvboma2"], ["https://data.delijn.be/stops/209413", "https://tec.openplanner.team/stops/H5rx128b"], ["https://mivb.openplanner.team/stops/1942", "https://tec.openplanner.team/stops/Buccdst1"], ["https://mivb.openplanner.team/stops/5064", "https://tec.openplanner.team/stops/Bsgimca1"], ["https://data.delijn.be/stops/207798", "https://tec.openplanner.team/stops/H5rx105a"], ["http://irail.be/stations/NMBS/008873122", "https://tec.openplanner.team/stops/N101aob"], ["https://mivb.openplanner.team/stops/3625B", "https://tec.openplanner.team/stops/Bsgimca1"], ["https://data.delijn.be/stops/400485", "https://tec.openplanner.team/stops/LRGgend3"], ["https://data.delijn.be/stops/300836", "https://mivb.openplanner.team/stops/9056F"], ["http://irail.be/stations/NMBS/008864337", "https://tec.openplanner.team/stops/X994akb"], ["http://irail.be/stations/NMBS/008200940", "https://tec.openplanner.team/stops/X615ada"], ["http://irail.be/stations/NMBS/008884566", "https://tec.openplanner.team/stops/H1je225b"], ["https://data.delijn.be/stops/207761", "https://tec.openplanner.team/stops/H5rx149a"], ["https://mivb.openplanner.team/stops/2718", "https://tec.openplanner.team/stops/Buccvbe2"], ["https://data.delijn.be/stops/300786", "https://mivb.openplanner.team/stops/1259"], ["https://data.delijn.be/stops/404726", "https://tec.openplanner.team/stops/LaAbush*"], ["https://data.delijn.be/stops/308644", "https://tec.openplanner.team/stops/Boveklo1"], ["http://irail.be/stations/NMBS/008811163", "https://mivb.openplanner.team/stops/5042"], ["http://irail.be/stations/NMBS/008841731", "https://tec.openplanner.team/stops/LGLchap1"], ["http://irail.be/stations/NMBS/008863438", "https://tec.openplanner.team/stops/N506bha"], ["https://data.delijn.be/stops/407754", "https://tec.openplanner.team/stops/LWOsudr2"], ["https://data.delijn.be/stops/406565", "https://tec.openplanner.team/stops/LLxconj2"], ["http://irail.be/stations/NMBS/008832375", "https://data.delijn.be/stops/403073"], ["https://data.delijn.be/stops/301415", "https://tec.openplanner.team/stops/H1en104d"], ["http://irail.be/stations/NMBS/008874054", "https://tec.openplanner.team/stops/Ccipech1"], ["https://data.delijn.be/stops/303226", "https://mivb.openplanner.team/stops/2664"], ["https://data.delijn.be/stops/300806", "https://mivb.openplanner.team/stops/2257B"], ["https://data.delijn.be/stops/307635", "https://mivb.openplanner.team/stops/1937"], ["https://data.delijn.be/stops/302406", "https://mivb.openplanner.team/stops/3610F"], ["http://irail.be/stations/NMBS/008874583", "https://tec.openplanner.team/stops/N543cna"], ["https://data.delijn.be/stops/301020", "https://mivb.openplanner.team/stops/4059"], ["https://data.delijn.be/stops/406298", "https://tec.openplanner.team/stops/Blanmde2"], ["http://irail.be/stations/NMBS/008871381", "https://tec.openplanner.team/stops/H2go117b"], ["http://irail.be/stations/NMBS/008883113", "https://tec.openplanner.team/stops/H3so163a"], ["https://data.delijn.be/stops/206784", "https://tec.openplanner.team/stops/H1gy112a"], ["http://irail.be/stations/NMBS/008884889", "https://tec.openplanner.team/stops/H4ca122a"], ["http://irail.be/stations/NMBS/008886587", "https://tec.openplanner.team/stops/H4re226a"], ["https://data.delijn.be/stops/409249", "https://tec.openplanner.team/stops/LEMeg--2"], ["http://irail.be/stations/NMBS/008814142", "https://mivb.openplanner.team/stops/1953"], ["https://data.delijn.be/stops/208743", "https://tec.openplanner.team/stops/H4am100b"], ["http://irail.be/stations/NMBS/008822111", "https://data.delijn.be/stops/303359"], ["https://data.delijn.be/stops/307807", "https://mivb.openplanner.team/stops/1202"], ["https://data.delijn.be/stops/305918", "https://mivb.openplanner.team/stops/1116"], ["http://irail.be/stations/NMBS/008863404", "https://tec.openplanner.team/stops/N506azb"], ["https://data.delijn.be/stops/305228", "https://mivb.openplanner.team/stops/9605"], ["http://irail.be/stations/NMBS/008891157", "https://data.delijn.be/stops/200848"], ["https://data.delijn.be/stops/208763", "https://tec.openplanner.team/stops/H5rx112a"], ["https://data.delijn.be/stops/300815", "https://mivb.openplanner.team/stops/4265"], ["https://data.delijn.be/stops/300778", "https://mivb.openplanner.team/stops/8652"], ["http://irail.be/stations/NMBS/008812237", "https://data.delijn.be/stops/301380"], ["https://data.delijn.be/stops/404687", "https://tec.openplanner.team/stops/LPAbour2"], ["https://data.delijn.be/stops/307921", "https://mivb.openplanner.team/stops/2873"], ["https://data.delijn.be/stops/307877", "https://mivb.openplanner.team/stops/1552"], ["http://irail.be/stations/NMBS/008811916", "https://data.delijn.be/stops/303650"], ["https://data.delijn.be/stops/305149", "https://tec.openplanner.team/stops/Btieast1"], ["https://data.delijn.be/stops/218019", "https://tec.openplanner.team/stops/H5rx132a"], ["https://data.delijn.be/stops/408921", "https://tec.openplanner.team/stops/LTEkerk1"], ["https://data.delijn.be/stops/301007", "https://mivb.openplanner.team/stops/4156"], ["https://data.delijn.be/stops/404659", "https://tec.openplanner.team/stops/LJUmate1"], ["http://irail.be/stations/NMBS/008400131", "https://data.delijn.be/stops/101748"], ["http://irail.be/stations/NMBS/008815016", "https://mivb.openplanner.team/stops/2576"], ["https://data.delijn.be/stops/208405", "https://tec.openplanner.team/stops/H5rx112a"], ["https://data.delijn.be/stops/305522", "https://mivb.openplanner.team/stops/1375"], ["https://data.delijn.be/stops/400458", "https://tec.openplanner.team/stops/LWOwonc2"], ["https://data.delijn.be/stops/304642", "https://mivb.openplanner.team/stops/1008"], ["https://data.delijn.be/stops/208181", "https://tec.openplanner.team/stops/H5el105a"], ["https://data.delijn.be/stops/400456", "https://tec.openplanner.team/stops/LEBmoul2"], ["https://mivb.openplanner.team/stops/1731", "https://tec.openplanner.team/stops/Baudwav1"], ["http://irail.be/stations/NMBS/008824240", "https://data.delijn.be/stops/105987"], ["https://data.delijn.be/stops/305910", "https://mivb.openplanner.team/stops/9729"], ["https://data.delijn.be/stops/301408", "https://tec.openplanner.team/stops/H1en105a"], ["https://data.delijn.be/stops/410136", "https://tec.openplanner.team/stops/Lvomoul2"], ["https://data.delijn.be/stops/302422", "https://tec.openplanner.team/stops/Bsrgcur2"], ["https://data.delijn.be/stops/300826", "https://mivb.openplanner.team/stops/2209"], ["https://data.delijn.be/stops/307636", "https://mivb.openplanner.team/stops/1949"], ["https://data.delijn.be/stops/301131", "https://tec.openplanner.team/stops/Buccdef2"], ["https://data.delijn.be/stops/302450", "https://tec.openplanner.team/stops/Bzluvil2"], ["http://irail.be/stations/NMBS/008841434", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/307726", "https://tec.openplanner.team/stops/Bbchdra1"], ["https://mivb.openplanner.team/stops/1385", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://mivb.openplanner.team/stops/1712", "https://tec.openplanner.team/stops/Bettlha2"], ["https://data.delijn.be/stops/505396", "https://tec.openplanner.team/stops/H4or114b"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N552aba"], ["http://irail.be/stations/NMBS/008821451", "https://data.delijn.be/stops/104287"], ["http://irail.be/stations/NMBS/008822814", "https://data.delijn.be/stops/106012"], ["http://irail.be/stations/NMBS/008822426", "https://data.delijn.be/stops/305826"], ["https://data.delijn.be/stops/307970", "https://tec.openplanner.team/stops/Bwavzno2"], ["http://irail.be/stations/NMBS/008821006", "https://data.delijn.be/stops/103378"], ["https://data.delijn.be/stops/207772", "https://tec.openplanner.team/stops/H5rx115a"], ["http://irail.be/stations/NMBS/008871712", "https://tec.openplanner.team/stops/Clbgare1"], ["https://data.delijn.be/stops/301021", "https://mivb.openplanner.team/stops/5168"], ["http://irail.be/stations/NMBS/008832615", "https://data.delijn.be/stops/406951"], ["https://data.delijn.be/stops/307922", "https://mivb.openplanner.team/stops/5403"], ["https://data.delijn.be/stops/408821", "https://tec.openplanner.team/stops/LMgbatt2"], ["https://data.delijn.be/stops/410355", "https://tec.openplanner.team/stops/Llgcadr3"], ["http://irail.be/stations/NMBS/008841400", "https://data.delijn.be/stops/408973"], ["http://irail.be/stations/NMBS/008864824", "https://tec.openplanner.team/stops/N211bba"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/304547"], ["http://irail.be/stations/NMBS/008821535", "https://data.delijn.be/stops/105243"], ["https://mivb.openplanner.team/stops/6931B", "https://tec.openplanner.team/stops/Buccptj1"], ["https://data.delijn.be/stops/503678", "https://tec.openplanner.team/stops/H4ef109a"], ["https://mivb.openplanner.team/stops/5212", "https://tec.openplanner.team/stops/Bixllep1"], ["https://data.delijn.be/stops/504294", "https://tec.openplanner.team/stops/H4mo153d"], ["https://data.delijn.be/stops/503775", "https://tec.openplanner.team/stops/H4eh101b"], ["https://data.delijn.be/stops/303626", "https://tec.openplanner.team/stops/Bcbqcim2"], ["http://irail.be/stations/NMBS/008842705", "https://tec.openplanner.team/stops/LCPgare1"], ["https://data.delijn.be/stops/408848", "https://tec.openplanner.team/stops/LRmrode1"], ["https://data.delijn.be/stops/304316", "https://mivb.openplanner.team/stops/2991"], ["https://data.delijn.be/stops/301133", "https://tec.openplanner.team/stops/Buccvch1"], ["http://irail.be/stations/NMBS/008884004", "https://tec.openplanner.team/stops/H1ho131a"], ["http://irail.be/stations/NMBS/008895455", "https://data.delijn.be/stops/206648"], ["http://irail.be/stations/NMBS/008814472", "https://mivb.openplanner.team/stops/4359"], ["http://irail.be/stations/NMBS/008874716", "https://tec.openplanner.team/stops/N543azb"], ["https://data.delijn.be/stops/405448", "https://tec.openplanner.team/stops/LWHwaas1"], ["http://irail.be/stations/NMBS/008895729", "https://data.delijn.be/stops/200974"], ["http://irail.be/stations/NMBS/008843349", "https://tec.openplanner.team/stops/LAMhaut2"], ["http://irail.be/stations/NMBS/008400131", "https://data.delijn.be/stops/102753"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bcsempl2"], ["http://irail.be/stations/NMBS/008893567", "https://data.delijn.be/stops/202944"], ["https://data.delijn.be/stops/304863", "https://tec.openplanner.team/stops/Bbrlrph2"], ["https://data.delijn.be/stops/305928", "https://mivb.openplanner.team/stops/2813"], ["https://data.delijn.be/stops/405705", "https://tec.openplanner.team/stops/LlgLAMB3"], ["http://irail.be/stations/NMBS/008894755", "https://data.delijn.be/stops/205288"], ["https://data.delijn.be/stops/305434", "https://mivb.openplanner.team/stops/5521"], ["https://mivb.openplanner.team/stops/1598", "https://tec.openplanner.team/stops/Baudtri1"], ["https://data.delijn.be/stops/300824", "https://mivb.openplanner.team/stops/0440449"], ["https://mivb.openplanner.team/stops/2290B", "https://tec.openplanner.team/stops/Baudhan2"], ["http://irail.be/stations/NMBS/008843141", "https://tec.openplanner.team/stops/Ljecoqu1"], ["https://data.delijn.be/stops/209191", "https://tec.openplanner.team/stops/H5rx131a"], ["http://irail.be/stations/NMBS/008863156", "https://tec.openplanner.team/stops/N539atb"], ["https://data.delijn.be/stops/307279", "https://tec.openplanner.team/stops/Bhalh312"], ["https://data.delijn.be/stops/300821", "https://mivb.openplanner.team/stops/7820153"], ["https://data.delijn.be/stops/306902", "https://tec.openplanner.team/stops/Bgoestu1"], ["https://data.delijn.be/stops/401415", "https://mivb.openplanner.team/stops/5266F"], ["https://data.delijn.be/stops/303652", "https://mivb.openplanner.team/stops/9551"], ["http://irail.be/stations/NMBS/008833274", "https://data.delijn.be/stops/304364"], ["http://irail.be/stations/NMBS/008863503", "https://tec.openplanner.team/stops/N232bna"], ["http://irail.be/stations/NMBS/008863545", "https://tec.openplanner.team/stops/N229ajb"], ["https://data.delijn.be/stops/305234", "https://mivb.openplanner.team/stops/9756"], ["http://irail.be/stations/NMBS/008863834", "https://tec.openplanner.team/stops/N337aia"], ["http://irail.be/stations/NMBS/008891652", "https://data.delijn.be/stops/506148"], ["https://data.delijn.be/stops/305387", "https://mivb.openplanner.team/stops/1687F"], ["https://mivb.openplanner.team/stops/4856B", "https://tec.openplanner.team/stops/Buccobs1"], ["https://data.delijn.be/stops/406565", "https://tec.openplanner.team/stops/LWOwonc1"], ["https://data.delijn.be/stops/301085", "https://mivb.openplanner.team/stops/0120426"], ["https://data.delijn.be/stops/305889", "https://mivb.openplanner.team/stops/9608"], ["https://data.delijn.be/stops/301086", "https://mivb.openplanner.team/stops/1043"], ["https://data.delijn.be/stops/306123", "https://tec.openplanner.team/stops/Bhaltre1"], ["http://irail.be/stations/NMBS/008894508", "https://data.delijn.be/stops/204364"], ["https://data.delijn.be/stops/306386", "https://tec.openplanner.team/stops/Bhalrat2"], ["https://mivb.openplanner.team/stops/8341", "https://tec.openplanner.team/stops/Bsgicfo1"], ["https://mivb.openplanner.team/stops/0230434", "https://tec.openplanner.team/stops/Bauddel2"], ["https://data.delijn.be/stops/408924", "https://tec.openplanner.team/stops/LTEkerk1"], ["http://irail.be/stations/NMBS/008895737", "https://data.delijn.be/stops/206849"], ["https://data.delijn.be/stops/303632", "https://mivb.openplanner.team/stops/6656"], ["http://irail.be/stations/NMBS/008894714", "https://data.delijn.be/stops/205049"], ["http://irail.be/stations/NMBS/008883006", "https://tec.openplanner.team/stops/Bbcogar2"], ["https://data.delijn.be/stops/509815", "https://tec.openplanner.team/stops/H4po127a"], ["http://irail.be/stations/NMBS/008883436", "https://tec.openplanner.team/stops/H1sy143a"], ["http://irail.be/stations/NMBS/008891124", "https://data.delijn.be/stops/507072"], ["https://data.delijn.be/stops/508679", "https://tec.openplanner.team/stops/H4ae100a"], ["http://irail.be/stations/NMBS/008892908", "https://data.delijn.be/stops/208191"], ["https://data.delijn.be/stops/302831", "https://tec.openplanner.team/stops/LLaover4"], ["http://irail.be/stations/NMBS/008814449", "https://mivb.openplanner.team/stops/1742"], ["https://data.delijn.be/stops/408884", "https://tec.openplanner.team/stops/LFCotte1"], ["https://data.delijn.be/stops/305298", "https://tec.openplanner.team/stops/Bspkker1"], ["https://data.delijn.be/stops/300832", "https://mivb.openplanner.team/stops/2860"], ["https://data.delijn.be/stops/302848", "https://tec.openplanner.team/stops/Bwaak101"], ["https://data.delijn.be/stops/300973", "https://tec.openplanner.team/stops/Baudvdr1"], ["https://data.delijn.be/stops/307695", "https://tec.openplanner.team/stops/Brsgsan1"], ["https://data.delijn.be/stops/405345", "https://tec.openplanner.team/stops/Bezeksj3"], ["https://data.delijn.be/stops/300974", "https://mivb.openplanner.team/stops/5427"], ["http://irail.be/stations/NMBS/008824232", "https://data.delijn.be/stops/105981"], ["http://irail.be/stations/NMBS/008883311", "https://tec.openplanner.team/stops/Bengvma2"], ["https://mivb.openplanner.team/stops/1919", "https://tec.openplanner.team/stops/Buccchu1"], ["http://irail.be/stations/NMBS/008879004", "https://tec.openplanner.team/stops/H1gg117b"], ["https://data.delijn.be/stops/404670", "https://tec.openplanner.team/stops/LJUxhen1"], ["https://data.delijn.be/stops/404662", "https://tec.openplanner.team/stops/LPAmc--1"], ["https://data.delijn.be/stops/302895", "https://tec.openplanner.team/stops/Bhevjac2"], ["http://irail.be/stations/NMBS/008200516", "https://tec.openplanner.team/stops/X687aba"], ["https://data.delijn.be/stops/410355", "https://tec.openplanner.team/stops/Llghoch4"], ["http://irail.be/stations/NMBS/008811429", "https://mivb.openplanner.team/stops/2107"], ["https://data.delijn.be/stops/302450", "https://tec.openplanner.team/stops/Bsjgegl1"], ["https://data.delijn.be/stops/508677", "https://tec.openplanner.team/stops/H4ef109b"], ["https://data.delijn.be/stops/208402", "https://tec.openplanner.team/stops/H5rx110a"], ["http://irail.be/stations/NMBS/008895067", "https://data.delijn.be/stops/206936"], ["https://data.delijn.be/stops/301017", "https://mivb.openplanner.team/stops/1307"], ["https://data.delijn.be/stops/406272", "https://tec.openplanner.team/stops/LMastat4"], ["http://irail.be/stations/NMBS/008821048", "https://data.delijn.be/stops/109880"], ["http://irail.be/stations/NMBS/008811007", "https://mivb.openplanner.team/stops/3008"], ["http://irail.be/stations/NMBS/008831401", "https://data.delijn.be/stops/305950"], ["http://irail.be/stations/NMBS/008872553", "https://tec.openplanner.team/stops/Btilmon1"], ["http://irail.be/stations/NMBS/008812062", "https://data.delijn.be/stops/300302"], ["http://irail.be/stations/NMBS/008811288", "https://data.delijn.be/stops/307819"], ["https://data.delijn.be/stops/305272", "https://tec.openplanner.team/stops/H1mk111b"], ["https://data.delijn.be/stops/305225", "https://mivb.openplanner.team/stops/1121"], ["http://irail.be/stations/NMBS/008814266", "https://tec.openplanner.team/stops/Bwatfia1"], ["https://data.delijn.be/stops/404674", "https://tec.openplanner.team/stops/LVSslin4"], ["https://data.delijn.be/stops/302871", "https://tec.openplanner.team/stops/Buccvoi3"], ["https://data.delijn.be/stops/504236", "https://tec.openplanner.team/stops/H4co104a"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/300356"], ["https://data.delijn.be/stops/308814", "https://tec.openplanner.team/stops/Bjodsme2"], ["http://irail.be/stations/NMBS/008831765", "https://data.delijn.be/stops/410334"], ["https://data.delijn.be/stops/405735", "https://tec.openplanner.team/stops/Lrclant1"], ["https://data.delijn.be/stops/308673", "https://mivb.openplanner.team/stops/1018"], ["http://irail.be/stations/NMBS/008884855", "https://tec.openplanner.team/stops/H5pe127a"], ["http://irail.be/stations/NMBS/008873007", "https://tec.openplanner.team/stops/N106apa"], ["http://irail.be/stations/NMBS/008895778", "https://data.delijn.be/stops/206983"], ["http://irail.be/stations/NMBS/008886546", "https://data.delijn.be/stops/208541"], ["https://data.delijn.be/stops/301944", "https://mivb.openplanner.team/stops/5166"], ["https://data.delijn.be/stops/400474", "https://tec.openplanner.team/stops/LGLobor1"], ["http://irail.be/stations/NMBS/008896149", "https://data.delijn.be/stops/510028"], ["https://data.delijn.be/stops/410319", "https://tec.openplanner.team/stops/LPlchpl2"], ["http://irail.be/stations/NMBS/008841673", "https://tec.openplanner.team/stops/Lligare1"], ["http://irail.be/stations/NMBS/008822533", "https://data.delijn.be/stops/301863"], ["https://data.delijn.be/stops/207791", "https://tec.openplanner.team/stops/H5rx147a"], ["https://data.delijn.be/stops/304107", "https://tec.openplanner.team/stops/Bovevri2"], ["https://data.delijn.be/stops/302872", "https://mivb.openplanner.team/stops/2717"], ["https://data.delijn.be/stops/305271", "https://mivb.openplanner.team/stops/9783"], ["http://irail.be/stations/NMBS/008812237", "https://data.delijn.be/stops/301306"], ["http://irail.be/stations/NMBS/008843240", "https://tec.openplanner.team/stops/LENsent1"], ["https://data.delijn.be/stops/302407", "https://mivb.openplanner.team/stops/8661"], ["http://irail.be/stations/NMBS/008833209", "https://data.delijn.be/stops/300066"], ["https://mivb.openplanner.team/stops/3131", "https://tec.openplanner.team/stops/Bixleix1"], ["http://irail.be/stations/NMBS/008861515", "https://tec.openplanner.team/stops/Bernrar1"], ["https://data.delijn.be/stops/302876", "https://tec.openplanner.team/stops/Buccron2"], ["http://irail.be/stations/NMBS/008400219", "https://tec.openplanner.team/stops/LLAeg--1"], ["https://data.delijn.be/stops/300938", "https://mivb.openplanner.team/stops/1313"], ["https://data.delijn.be/stops/307601", "https://tec.openplanner.team/stops/Bspkbeu1"], ["http://irail.be/stations/NMBS/008812260", "https://data.delijn.be/stops/306703"], ["https://data.delijn.be/stops/302427", "https://tec.openplanner.team/stops/Bzlucam1"], ["https://data.delijn.be/stops/408969", "https://tec.openplanner.team/stops/LWAchpg2"], ["https://data.delijn.be/stops/408865", "https://tec.openplanner.team/stops/LWRcruc1"], ["http://irail.be/stations/NMBS/008874583", "https://tec.openplanner.team/stops/Crsaise4"], ["http://irail.be/stations/NMBS/008883436", "https://tec.openplanner.team/stops/H1sy143d"], ["https://data.delijn.be/stops/300996", "https://mivb.openplanner.team/stops/2249"], ["https://mivb.openplanner.team/stops/5655", "https://tec.openplanner.team/stops/Bkrabhu2"], ["https://data.delijn.be/stops/408901", "https://tec.openplanner.team/stops/LFPkerk2"], ["https://data.delijn.be/stops/304039", "https://tec.openplanner.team/stops/Boveklo2"], ["https://data.delijn.be/stops/507748", "https://tec.openplanner.team/stops/H4ae102a"], ["https://data.delijn.be/stops/307203", "https://tec.openplanner.team/stops/Btubcal1"], ["https://data.delijn.be/stops/306067", "https://tec.openplanner.team/stops/Blempuc2"], ["http://irail.be/stations/NMBS/008871217", "https://tec.openplanner.team/stops/Croegli1"], ["https://data.delijn.be/stops/300775", "https://mivb.openplanner.team/stops/2534"], ["https://data.delijn.be/stops/302792", "https://mivb.openplanner.team/stops/9551"], ["https://data.delijn.be/stops/302437", "https://tec.openplanner.team/stops/Bsrgegl1"], ["https://data.delijn.be/stops/307324", "https://mivb.openplanner.team/stops/1018"], ["https://data.delijn.be/stops/301015", "https://mivb.openplanner.team/stops/1199F"], ["http://irail.be/stations/NMBS/008711184", "https://tec.openplanner.team/stops/Cmqchap2"], ["https://data.delijn.be/stops/304141", "https://tec.openplanner.team/stops/Bbghpln1"], ["https://data.delijn.be/stops/504294", "https://tec.openplanner.team/stops/H4mo147a"], ["https://data.delijn.be/stops/407201", "https://tec.openplanner.team/stops/LHexhav1"], ["http://irail.be/stations/NMBS/008894201", "https://data.delijn.be/stops/203109"], ["http://irail.be/stations/NMBS/008822517", "https://data.delijn.be/stops/301848"], ["http://irail.be/stations/NMBS/008874724", "https://tec.openplanner.team/stops/N534caa"], ["https://data.delijn.be/stops/306063", "https://tec.openplanner.team/stops/Brsggea2"], ["https://data.delijn.be/stops/300830", "https://mivb.openplanner.team/stops/2809"], ["https://data.delijn.be/stops/301117", "https://tec.openplanner.team/stops/Buccchu2"], ["https://data.delijn.be/stops/307110", "https://tec.openplanner.team/stops/Bjodcad1"], ["http://irail.be/stations/NMBS/008864816", "https://tec.openplanner.team/stops/N211aib"], ["http://irail.be/stations/NMBS/008894235", "https://data.delijn.be/stops/204166"], ["https://data.delijn.be/stops/208764", "https://tec.openplanner.team/stops/H5rx147a"], ["http://irail.be/stations/NMBS/008863362", "https://tec.openplanner.team/stops/N538asc"], ["http://irail.be/stations/NMBS/008728600", "https://tec.openplanner.team/stops/H4ho120a"], ["https://data.delijn.be/stops/305310", "https://mivb.openplanner.team/stops/9788"], ["http://irail.be/stations/NMBS/008892056", "https://data.delijn.be/stops/208645"], ["https://data.delijn.be/stops/307972", "https://tec.openplanner.team/stops/Bwavlep1"], ["https://data.delijn.be/stops/404677", "https://tec.openplanner.team/stops/Lvovent2"], ["http://irail.be/stations/NMBS/008892031", "https://data.delijn.be/stops/201195"], ["https://data.delijn.be/stops/509316", "https://tec.openplanner.team/stops/H4mo159b"], ["https://data.delijn.be/stops/300783", "https://mivb.openplanner.team/stops/3610F"], ["https://data.delijn.be/stops/302426", "https://tec.openplanner.team/stops/Bjodrga2"], ["http://irail.be/stations/NMBS/008814332", "https://data.delijn.be/stops/307201"], ["https://data.delijn.be/stops/303567", "https://mivb.openplanner.team/stops/3334G"], ["http://irail.be/stations/NMBS/008821857", "https://data.delijn.be/stops/104646"], ["http://irail.be/stations/NMBS/008883220", "https://tec.openplanner.team/stops/H2me113b"], ["http://irail.be/stations/NMBS/008811429", "https://mivb.openplanner.team/stops/4358"], ["https://data.delijn.be/stops/303652", "https://tec.openplanner.team/stops/Bovelge1"], ["http://irail.be/stations/NMBS/008884327", "https://tec.openplanner.team/stops/H1hi123b"], ["http://irail.be/stations/NMBS/008813003", "https://mivb.openplanner.team/stops/3347"], ["https://data.delijn.be/stops/307820", "https://mivb.openplanner.team/stops/2015"], ["https://data.delijn.be/stops/301032", "https://mivb.openplanner.team/stops/2965"], ["http://irail.be/stations/NMBS/008861432", "https://tec.openplanner.team/stops/N526aab"], ["https://data.delijn.be/stops/404681", "https://tec.openplanner.team/stops/LWieg--*"], ["https://data.delijn.be/stops/300832", "https://mivb.openplanner.team/stops/2545"], ["https://data.delijn.be/stops/307142", "https://mivb.openplanner.team/stops/3800"], ["http://irail.be/stations/NMBS/008865128", "https://tec.openplanner.team/stops/X725aea"], ["http://irail.be/stations/NMBS/008822533", "https://data.delijn.be/stops/305465"], ["https://data.delijn.be/stops/300876", "https://mivb.openplanner.team/stops/1290"], ["https://data.delijn.be/stops/304546", "https://mivb.openplanner.team/stops/9651"], ["http://irail.be/stations/NMBS/008832458", "https://data.delijn.be/stops/109246"], ["https://data.delijn.be/stops/304548", "https://mivb.openplanner.team/stops/9654"], ["https://data.delijn.be/stops/301066", "https://mivb.openplanner.team/stops/3225"], ["https://data.delijn.be/stops/400484", "https://tec.openplanner.team/stops/LRGgend2"], ["http://irail.be/stations/NMBS/008864345", "https://tec.openplanner.team/stops/X902ada"], ["https://data.delijn.be/stops/301956", "https://mivb.openplanner.team/stops/7690106"], ["http://irail.be/stations/NMBS/008831088", "https://data.delijn.be/stops/403975"], ["http://irail.be/stations/NMBS/008864352", "https://tec.openplanner.team/stops/X999aib"], ["https://data.delijn.be/stops/301115", "https://mivb.openplanner.team/stops/5211"], ["http://irail.be/stations/NMBS/008843166", "https://tec.openplanner.team/stops/Lfhdonn1"], ["http://irail.be/stations/NMBS/008841202", "https://tec.openplanner.team/stops/Llojeme3"], ["https://data.delijn.be/stops/303581", "https://mivb.openplanner.team/stops/9727"], ["https://mivb.openplanner.team/stops/1937", "https://tec.openplanner.team/stops/Bucccre2"], ["https://data.delijn.be/stops/308733", "https://tec.openplanner.team/stops/Bgoesch1"], ["https://data.delijn.be/stops/305236", "https://tec.openplanner.team/stops/H1mk117b"], ["https://data.delijn.be/stops/300337", "https://tec.openplanner.team/stops/Balsnie1"], ["http://irail.be/stations/NMBS/008883121", "https://tec.openplanner.team/stops/H1ca106a"], ["https://data.delijn.be/stops/305510", "https://mivb.openplanner.team/stops/1635"], ["https://data.delijn.be/stops/301978", "https://tec.openplanner.team/stops/Bhaldbo1"], ["https://data.delijn.be/stops/301003", "https://mivb.openplanner.team/stops/5303"], ["https://data.delijn.be/stops/400450", "https://tec.openplanner.team/stops/LBPauto2"], ["https://mivb.openplanner.team/stops/3570", "https://tec.openplanner.team/stops/Bixleix1"], ["https://data.delijn.be/stops/302822", "https://tec.openplanner.team/stops/Blhugar1"], ["https://data.delijn.be/stops/307215", "https://tec.openplanner.team/stops/Bhalcbr2"], ["http://irail.be/stations/NMBS/008832409", "https://data.delijn.be/stops/107606"], ["https://data.delijn.be/stops/207758", "https://tec.openplanner.team/stops/H5rx121b"], ["http://irail.be/stations/NMBS/008842754", "https://tec.openplanner.team/stops/LAYpl--1"], ["http://irail.be/stations/NMBS/008892403", "https://data.delijn.be/stops/503342"], ["https://data.delijn.be/stops/307461", "https://tec.openplanner.team/stops/Bsgicfo1"], ["https://data.delijn.be/stops/504310", "https://tec.openplanner.team/stops/H4mo207b"], ["http://irail.be/stations/NMBS/008849064", "https://tec.openplanner.team/stops/LLxcite1"], ["https://data.delijn.be/stops/408831", "https://tec.openplanner.team/stops/LMgberw1"], ["https://data.delijn.be/stops/405335", "https://tec.openplanner.team/stops/Bneeace1"], ["https://data.delijn.be/stops/303226", "https://mivb.openplanner.team/stops/9686"], ["https://data.delijn.be/stops/408822", "https://tec.openplanner.team/stops/LVImons2"], ["http://irail.be/stations/NMBS/008892106", "https://data.delijn.be/stops/203403"], ["https://data.delijn.be/stops/302406", "https://mivb.openplanner.team/stops/8661"], ["http://irail.be/stations/NMBS/008863354", "https://tec.openplanner.team/stops/N501mvc"], ["https://data.delijn.be/stops/306063", "https://tec.openplanner.team/stops/Brsga811"], ["http://irail.be/stations/NMBS/008814241", "https://tec.openplanner.team/stops/Blilgar1"], ["http://irail.be/stations/NMBS/008881315", "https://tec.openplanner.team/stops/H1ms942a"], ["https://data.delijn.be/stops/300565", "https://tec.openplanner.team/stops/Bbeamon2"], ["https://data.delijn.be/stops/400452", "https://tec.openplanner.team/stops/LBPeg--2"], ["https://data.delijn.be/stops/402022", "https://tec.openplanner.team/stops/LFMkrut1"], ["http://irail.be/stations/NMBS/008821071", "https://data.delijn.be/stops/109060"], ["http://irail.be/stations/NMBS/008865003", "https://tec.openplanner.team/stops/X801bdb"], ["https://data.delijn.be/stops/300730", "https://tec.openplanner.team/stops/Bbealon4"], ["http://irail.be/stations/NMBS/008895638", "https://data.delijn.be/stops/307304"], ["https://data.delijn.be/stops/302924", "https://tec.openplanner.team/stops/Bhevgar2"], ["http://irail.be/stations/NMBS/008891157", "https://data.delijn.be/stops/209654"], ["https://data.delijn.be/stops/306814", "https://mivb.openplanner.team/stops/3100"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1et101b"], ["https://data.delijn.be/stops/408890", "https://tec.openplanner.team/stops/LFMveur1"], ["https://data.delijn.be/stops/307635", "https://mivb.openplanner.team/stops/1965"], ["https://data.delijn.be/stops/300754", "https://mivb.openplanner.team/stops/6811"], ["https://data.delijn.be/stops/301927", "https://mivb.openplanner.team/stops/2043"], ["https://data.delijn.be/stops/301146", "https://tec.openplanner.team/stops/Buccpes1"], ["http://irail.be/stations/NMBS/008896305", "https://data.delijn.be/stops/503572"], ["http://irail.be/stations/NMBS/008871712", "https://tec.openplanner.team/stops/H1bi101b"], ["https://data.delijn.be/stops/301054", "https://mivb.openplanner.team/stops/8461"], ["https://data.delijn.be/stops/306091", "https://mivb.openplanner.team/stops/9780"], ["http://irail.be/stations/NMBS/008892734", "https://data.delijn.be/stops/505285"], ["https://mivb.openplanner.team/stops/1354", "https://tec.openplanner.team/stops/Bixlfla1"], ["https://data.delijn.be/stops/304049", "https://tec.openplanner.team/stops/Bovetwe1"], ["https://data.delijn.be/stops/300992", "https://mivb.openplanner.team/stops/3761"], ["https://data.delijn.be/stops/400490", "https://tec.openplanner.team/stops/LBSneuv1"], ["http://irail.be/stations/NMBS/008884889", "https://tec.openplanner.team/stops/H4ca120b"], ["http://irail.be/stations/NMBS/008821089", "https://data.delijn.be/stops/105766"], ["https://data.delijn.be/stops/404681", "https://tec.openplanner.team/stops/LPAmosa2"], ["https://data.delijn.be/stops/301013", "https://mivb.openplanner.team/stops/4169"], ["http://irail.be/stations/NMBS/008210014", "https://tec.openplanner.team/stops/X687aba"], ["https://data.delijn.be/stops/408950", "https://tec.openplanner.team/stops/LWAathe1"], ["https://mivb.openplanner.team/stops/1416", "https://tec.openplanner.team/stops/Bbxlfro1"], ["https://data.delijn.be/stops/208183", "https://tec.openplanner.team/stops/H5rx132b"], ["http://irail.be/stations/NMBS/008863867", "https://tec.openplanner.team/stops/N308ahb"], ["http://irail.be/stations/NMBS/008861200", "https://tec.openplanner.team/stops/Bgemga12"], ["https://mivb.openplanner.team/stops/0340141", "https://tec.openplanner.team/stops/Bsgibla2"], ["http://irail.be/stations/NMBS/008814308", "https://data.delijn.be/stops/301358"], ["https://data.delijn.be/stops/405344", "https://tec.openplanner.team/stops/Bneeace2"], ["https://data.delijn.be/stops/307636", "https://mivb.openplanner.team/stops/2167"], ["https://data.delijn.be/stops/404682", "https://tec.openplanner.team/stops/LWieg--*"], ["https://data.delijn.be/stops/300346", "https://tec.openplanner.team/stops/Bbrlmez2"], ["http://irail.be/stations/NMBS/008871365", "https://tec.openplanner.team/stops/Cpcgout1"], ["http://irail.be/stations/NMBS/008814159", "https://data.delijn.be/stops/307651"], ["https://data.delijn.be/stops/509237", "https://tec.openplanner.team/stops/H4co106a"], ["https://data.delijn.be/stops/300826", "https://mivb.openplanner.team/stops/2837"], ["http://irail.be/stations/NMBS/008883006", "https://tec.openplanner.team/stops/Bbcoser2"], ["https://data.delijn.be/stops/301921", "https://mivb.openplanner.team/stops/2078"], ["https://data.delijn.be/stops/307716", "https://tec.openplanner.team/stops/Brsga152"], ["https://data.delijn.be/stops/301411", "https://tec.openplanner.team/stops/Bengvma2"], ["http://irail.be/stations/NMBS/008871100", "https://tec.openplanner.team/stops/Cmasncb1"], ["https://data.delijn.be/stops/208760", "https://tec.openplanner.team/stops/H5rx122b"], ["https://data.delijn.be/stops/308722", "https://tec.openplanner.team/stops/Bgoewat2"], ["http://irail.be/stations/NMBS/008822525", "https://data.delijn.be/stops/301881"], ["http://irail.be/stations/NMBS/008864931", "https://tec.openplanner.team/stops/N585alb"], ["https://data.delijn.be/stops/307681", "https://mivb.openplanner.team/stops/5952"], ["https://data.delijn.be/stops/308110", "https://tec.openplanner.team/stops/Bbeaech2"], ["https://data.delijn.be/stops/408951", "https://tec.openplanner.team/stops/LWApt--2"], ["https://data.delijn.be/stops/208784", "https://tec.openplanner.team/stops/H5el100a"], ["https://data.delijn.be/stops/306000", "https://tec.openplanner.team/stops/Bovetdo2"], ["http://irail.be/stations/NMBS/008841434", "https://tec.openplanner.team/stops/LWAeloi2"], ["http://irail.be/stations/NMBS/008831039", "https://data.delijn.be/stops/400083"], ["https://data.delijn.be/stops/301006", "https://mivb.openplanner.team/stops/2509"], ["https://data.delijn.be/stops/300888", "https://mivb.openplanner.team/stops/6604F"], ["https://data.delijn.be/stops/405715", "https://tec.openplanner.team/stops/Llghoch1"], ["https://data.delijn.be/stops/509861", "https://tec.openplanner.team/stops/H4mo192a"], ["https://data.delijn.be/stops/408861", "https://tec.openplanner.team/stops/LFChofv1"], ["https://data.delijn.be/stops/307832", "https://mivb.openplanner.team/stops/6857"], ["https://data.delijn.be/stops/308870", "https://mivb.openplanner.team/stops/5515"], ["http://irail.be/stations/NMBS/008863842", "https://tec.openplanner.team/stops/N338aha"], ["https://mivb.openplanner.team/stops/3562", "https://tec.openplanner.team/stops/Bixleix1"], ["https://data.delijn.be/stops/408871", "https://tec.openplanner.team/stops/LBWeg--4"], ["https://data.delijn.be/stops/300300", "https://mivb.openplanner.team/stops/4165"], ["http://irail.be/stations/NMBS/008844503", "https://tec.openplanner.team/stops/LBNauto1"], ["http://irail.be/stations/NMBS/008843901", "https://tec.openplanner.team/stops/Lbrgrot1"], ["https://data.delijn.be/stops/301132", "https://tec.openplanner.team/stops/Buccdef2"], ["http://irail.be/stations/NMBS/008871662", "https://tec.openplanner.team/stops/H1hw125b"], ["https://data.delijn.be/stops/508032", "https://tec.openplanner.team/stops/H4ae100b"], ["http://irail.be/stations/NMBS/008845229", "https://tec.openplanner.team/stops/LCocasc2"], ["https://data.delijn.be/stops/400659", "https://tec.openplanner.team/stops/LWAbeec1"], ["http://irail.be/stations/NMBS/008861523", "https://tec.openplanner.team/stops/Bwlhppg2"], ["https://data.delijn.be/stops/405370", "https://tec.openplanner.team/stops/Bneelaa1"], ["https://data.delijn.be/stops/410141", "https://tec.openplanner.team/stops/Lrcpaqu1"], ["http://irail.be/stations/NMBS/008889011", "https://tec.openplanner.team/stops/H4wa148a"], ["https://data.delijn.be/stops/410153", "https://mivb.openplanner.team/stops/5045"], ["https://data.delijn.be/stops/405702", "https://tec.openplanner.team/stops/Llgwesp1"], ["https://data.delijn.be/stops/404677", "https://tec.openplanner.team/stops/Llabriq1"], ["https://data.delijn.be/stops/400491", "https://tec.openplanner.team/stops/LBSchar4"], ["https://data.delijn.be/stops/304177", "https://tec.openplanner.team/stops/Bbldgar2"], ["http://irail.be/stations/NMBS/008812252", "https://data.delijn.be/stops/304796"], ["http://irail.be/stations/NMBS/008886348", "https://tec.openplanner.team/stops/H4lz158b"], ["https://data.delijn.be/stops/305343", "https://tec.openplanner.team/stops/Bbgeegl1"], ["http://irail.be/stations/NMBS/008882107", "https://tec.openplanner.team/stops/H2ll178d"], ["http://irail.be/stations/NMBS/008884350", "https://tec.openplanner.team/stops/H1tl120a"], ["http://irail.be/stations/NMBS/008814431", "https://data.delijn.be/stops/307688"], ["https://data.delijn.be/stops/410143", "https://tec.openplanner.team/stops/Llgbois1"], ["http://irail.be/stations/NMBS/008883238", "https://tec.openplanner.team/stops/H2fa103a"], ["http://irail.be/stations/NMBS/008832664", "https://data.delijn.be/stops/409017"], ["https://data.delijn.be/stops/508228", "https://tec.openplanner.team/stops/H4po130a"], ["http://irail.be/stations/NMBS/008815016", "https://mivb.openplanner.team/stops/58"], ["https://data.delijn.be/stops/302424", "https://tec.openplanner.team/stops/Bjodfab1"], ["http://irail.be/stations/NMBS/008895448", "https://data.delijn.be/stops/207535"], ["https://data.delijn.be/stops/302897", "https://tec.openplanner.team/stops/Bhevgro2"], ["http://irail.be/stations/NMBS/008831112", "https://data.delijn.be/stops/401554"], ["https://data.delijn.be/stops/301039", "https://mivb.openplanner.team/stops/60"], ["http://irail.be/stations/NMBS/008822475", "https://data.delijn.be/stops/305813"], ["https://data.delijn.be/stops/302837", "https://tec.openplanner.team/stops/LLaover3"], ["https://data.delijn.be/stops/408864", "https://tec.openplanner.team/stops/LFCvoer1"], ["https://data.delijn.be/stops/405736", "https://tec.openplanner.team/stops/Lanc14v1"], ["https://data.delijn.be/stops/307635", "https://tec.openplanner.team/stops/Bucccre2"], ["https://data.delijn.be/stops/305494", "https://mivb.openplanner.team/stops/3328"], ["http://irail.be/stations/NMBS/008811262", "https://data.delijn.be/stops/307522"], ["https://data.delijn.be/stops/402549", "https://tec.openplanner.team/stops/LBpbruy2"], ["https://data.delijn.be/stops/405736", "https://tec.openplanner.team/stops/Lrcstad1"], ["http://irail.be/stations/NMBS/008896925", "https://data.delijn.be/stops/503283"], ["https://data.delijn.be/stops/307148", "https://tec.openplanner.team/stops/Bhalvel2"], ["http://irail.be/stations/NMBS/008821634", "https://data.delijn.be/stops/102729"], ["https://data.delijn.be/stops/302410", "https://tec.openplanner.team/stops/Bmlngvi1"], ["http://irail.be/stations/NMBS/008844339", "https://tec.openplanner.team/stops/LTHcent2"], ["http://irail.be/stations/NMBS/008814308", "https://data.delijn.be/stops/307912"], ["https://data.delijn.be/stops/405504", "https://tec.openplanner.team/stops/LCAeg--1"], ["https://data.delijn.be/stops/300323", "https://tec.openplanner.team/stops/Balsbeg1"], ["http://irail.be/stations/NMBS/008844206", "https://tec.openplanner.team/stops/Lpeathe*"], ["https://data.delijn.be/stops/407230", "https://tec.openplanner.team/stops/LORgend1"], ["http://irail.be/stations/NMBS/008821196", "https://data.delijn.be/stops/104627"], ["http://irail.be/stations/NMBS/008886561", "https://tec.openplanner.team/stops/H1ol145b"], ["http://irail.be/stations/NMBS/008873387", "https://tec.openplanner.team/stops/Chhplbe2"], ["http://irail.be/stations/NMBS/008821048", "https://data.delijn.be/stops/102724"], ["http://irail.be/stations/NMBS/008841459", "https://tec.openplanner.team/stops/LJelava2"], ["https://data.delijn.be/stops/405659", "https://tec.openplanner.team/stops/LTowijk1"], ["https://data.delijn.be/stops/306911", "https://tec.openplanner.team/stops/Bboseco1"], ["https://mivb.openplanner.team/stops/2714", "https://tec.openplanner.team/stops/Buccplj2"], ["http://irail.be/stations/NMBS/008814365", "https://data.delijn.be/stops/304549"], ["https://data.delijn.be/stops/307968", "https://tec.openplanner.team/stops/Bwavzno2"], ["https://data.delijn.be/stops/307203", "https://tec.openplanner.team/stops/Btubnav1"], ["https://data.delijn.be/stops/306400", "https://mivb.openplanner.team/stops/3228F"], ["https://data.delijn.be/stops/408870", "https://tec.openplanner.team/stops/LFCdree1"], ["http://irail.be/stations/NMBS/008869047", "https://tec.openplanner.team/stops/X695aka"], ["https://data.delijn.be/stops/408910", "https://tec.openplanner.team/stops/LFPdeme2"], ["http://irail.be/stations/NMBS/008866118", "https://tec.openplanner.team/stops/X602ahb"], ["http://irail.be/stations/NMBS/008884541", "https://tec.openplanner.team/stops/H1qu111b"], ["https://data.delijn.be/stops/301001", "https://mivb.openplanner.team/stops/6082"], ["https://data.delijn.be/stops/301080", "https://mivb.openplanner.team/stops/3332"], ["https://data.delijn.be/stops/300833", "https://mivb.openplanner.team/stops/2533"], ["https://data.delijn.be/stops/408844", "https://tec.openplanner.team/stops/LRmhage6"], ["http://irail.be/stations/NMBS/008863842", "https://tec.openplanner.team/stops/N226aaa"], ["https://data.delijn.be/stops/307639", "https://mivb.openplanner.team/stops/1959"], ["http://irail.be/stations/NMBS/008866175", "https://tec.openplanner.team/stops/X650ahb"], ["https://data.delijn.be/stops/300920", "https://mivb.openplanner.team/stops/5362F"], ["https://data.delijn.be/stops/300980", "https://mivb.openplanner.team/stops/6056"], ["http://irail.be/stations/NMBS/008821667", "https://data.delijn.be/stops/107112"], ["http://irail.be/stations/NMBS/008866845", "https://tec.openplanner.team/stops/X641amb"], ["https://data.delijn.be/stops/300743", "https://mivb.openplanner.team/stops/2220"], ["https://data.delijn.be/stops/304037", "https://tec.openplanner.team/stops/Bovesol1"], ["http://irail.be/stations/NMBS/008864006", "https://tec.openplanner.team/stops/N390acb"], ["https://data.delijn.be/stops/301083", "https://mivb.openplanner.team/stops/1552"], ["https://data.delijn.be/stops/306904", "https://tec.openplanner.team/stops/Bgoevli2"], ["https://data.delijn.be/stops/301084", "https://mivb.openplanner.team/stops/1043"], ["https://data.delijn.be/stops/300811", "https://mivb.openplanner.team/stops/4123"], ["http://irail.be/stations/NMBS/008822210", "https://data.delijn.be/stops/101422"], ["https://mivb.openplanner.team/stops/0702", "https://tec.openplanner.team/stops/Bbxlmid1"], ["http://irail.be/stations/NMBS/008844628", "https://tec.openplanner.team/stops/LeUbahn4"], ["https://data.delijn.be/stops/408902", "https://tec.openplanner.team/stops/LFPknap1"], ["https://data.delijn.be/stops/301043", "https://mivb.openplanner.team/stops/3263F"], ["https://data.delijn.be/stops/306931", "https://tec.openplanner.team/stops/Bboseco1"], ["http://irail.be/stations/NMBS/008821048", "https://data.delijn.be/stops/105292"], ["https://data.delijn.be/stops/300854", "https://mivb.openplanner.team/stops/0529"], ["https://data.delijn.be/stops/302838", "https://tec.openplanner.team/stops/LLasta-*"], ["https://data.delijn.be/stops/301078", "https://mivb.openplanner.team/stops/0410346"], ["http://irail.be/stations/NMBS/008892601", "https://data.delijn.be/stops/209243"], ["http://irail.be/stations/NMBS/008015345", "https://tec.openplanner.team/stops/LpEzoll*"], ["https://data.delijn.be/stops/304457", "https://tec.openplanner.team/stops/Brsggar1"], ["https://data.delijn.be/stops/301015", "https://mivb.openplanner.team/stops/4112"], ["https://data.delijn.be/stops/300325", "https://tec.openplanner.team/stops/Balsnie1"], ["http://irail.be/stations/NMBS/008895638", "https://data.delijn.be/stops/305333"], ["http://irail.be/stations/NMBS/008892080", "https://data.delijn.be/stops/208956"], ["https://data.delijn.be/stops/407203", "https://tec.openplanner.team/stops/LHTcent2"], ["https://data.delijn.be/stops/300821", "https://mivb.openplanner.team/stops/9056F"], ["http://irail.be/stations/NMBS/008200940", "https://tec.openplanner.team/stops/X681ada"], ["http://irail.be/stations/NMBS/008869088", "https://tec.openplanner.team/stops/X695afa"], ["https://data.delijn.be/stops/302125", "https://tec.openplanner.team/stops/Bpte1ma2"], ["https://data.delijn.be/stops/306898", "https://tec.openplanner.team/stops/Bgoesch4"], ["https://data.delijn.be/stops/405462", "https://tec.openplanner.team/stops/LWscona2"], ["http://irail.be/stations/NMBS/008811635", "https://tec.openplanner.team/stops/Blmlgar2"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2le148b"], ["https://data.delijn.be/stops/301033", "https://mivb.openplanner.team/stops/6162"], ["https://data.delijn.be/stops/400470", "https://tec.openplanner.team/stops/LEMfort1"], ["https://data.delijn.be/stops/407214", "https://tec.openplanner.team/stops/LHSfexh1"], ["https://data.delijn.be/stops/302397", "https://tec.openplanner.team/stops/Bpechos2"], ["http://irail.be/stations/NMBS/008844206", "https://tec.openplanner.team/stops/Lpemata2"], ["https://data.delijn.be/stops/302903", "https://tec.openplanner.team/stops/Bhevhha2"], ["http://irail.be/stations/NMBS/008811163", "https://data.delijn.be/stops/300920"], ["http://irail.be/stations/NMBS/008844321", "https://tec.openplanner.team/stops/LJSec--1"], ["http://irail.be/stations/NMBS/008893526", "https://data.delijn.be/stops/203975"], ["https://data.delijn.be/stops/408861", "https://tec.openplanner.team/stops/LBOande2"], ["https://mivb.openplanner.team/stops/8152", "https://tec.openplanner.team/stops/Bwolkra2"], ["https://data.delijn.be/stops/405342", "https://tec.openplanner.team/stops/Bneesjo2"], ["http://irail.be/stations/NMBS/008865300", "https://tec.openplanner.team/stops/X804bwb"], ["http://irail.be/stations/NMBS/008894508", "https://data.delijn.be/stops/204716"], ["https://data.delijn.be/stops/303613", "https://tec.openplanner.team/stops/Bhalpar3"], ["https://data.delijn.be/stops/301010", "https://mivb.openplanner.team/stops/1236"], ["https://data.delijn.be/stops/307193", "https://tec.openplanner.team/stops/Bhalber3"], ["https://data.delijn.be/stops/405711", "https://tec.openplanner.team/stops/Llglimb1"], ["https://data.delijn.be/stops/300412", "https://mivb.openplanner.team/stops/9677"], ["http://irail.be/stations/NMBS/008822814", "https://data.delijn.be/stops/106853"], ["https://data.delijn.be/stops/207773", "https://tec.openplanner.team/stops/H5rx126b"], ["https://data.delijn.be/stops/208762", "https://tec.openplanner.team/stops/H5rx122b"], ["https://data.delijn.be/stops/300754", "https://mivb.openplanner.team/stops/2518"], ["https://data.delijn.be/stops/304012", "https://tec.openplanner.team/stops/Bovesnh1"], ["https://data.delijn.be/stops/209179", "https://tec.openplanner.team/stops/H5el100b"], ["https://data.delijn.be/stops/301944", "https://mivb.openplanner.team/stops/2507"], ["http://irail.be/stations/NMBS/008841400", "https://tec.openplanner.team/stops/LWAgare*"], ["https://data.delijn.be/stops/300938", "https://mivb.openplanner.team/stops/2572"], ["https://data.delijn.be/stops/302804", "https://mivb.openplanner.team/stops/5655"], ["https://data.delijn.be/stops/305272", "https://tec.openplanner.team/stops/Bspkker1"], ["http://irail.be/stations/NMBS/008865565", "https://tec.openplanner.team/stops/X850aka"], ["https://data.delijn.be/stops/301316", "https://mivb.openplanner.team/stops/9825F"], ["http://irail.be/stations/NMBS/008822004", "https://data.delijn.be/stops/105036"], ["https://data.delijn.be/stops/302418", "https://tec.openplanner.team/stops/Bjodsje1"], ["http://irail.be/stations/NMBS/008892635", "https://data.delijn.be/stops/208495"], ["https://data.delijn.be/stops/301047", "https://mivb.openplanner.team/stops/6702"], ["http://irail.be/stations/NMBS/008871662", "https://tec.openplanner.team/stops/H1so133a"], ["http://irail.be/stations/NMBS/008882230", "https://tec.openplanner.team/stops/H2mo144b"], ["http://irail.be/stations/NMBS/008833175", "https://data.delijn.be/stops/302007"], ["https://data.delijn.be/stops/503024", "https://tec.openplanner.team/stops/H4or114b"], ["https://data.delijn.be/stops/301102", "https://mivb.openplanner.team/stops/1850"], ["https://data.delijn.be/stops/305165", "https://mivb.openplanner.team/stops/1809"], ["https://data.delijn.be/stops/408991", "https://tec.openplanner.team/stops/LWAor--1"], ["https://data.delijn.be/stops/305230", "https://mivb.openplanner.team/stops/9707"], ["https://data.delijn.be/stops/408980", "https://tec.openplanner.team/stops/LWAvand2"], ["https://mivb.openplanner.team/stops/3159", "https://tec.openplanner.team/stops/Bbxlple2"], ["https://data.delijn.be/stops/304061", "https://tec.openplanner.team/stops/Bwavtrt1"], ["https://data.delijn.be/stops/401412", "https://mivb.openplanner.team/stops/6114F"], ["https://data.delijn.be/stops/410139", "https://tec.openplanner.team/stops/Llglimb1"], ["https://mivb.openplanner.team/stops/1961B", "https://tec.openplanner.team/stops/Bucceng1"], ["https://data.delijn.be/stops/406564", "https://tec.openplanner.team/stops/LWOwonc1"], ["https://data.delijn.be/stops/301166", "https://tec.openplanner.team/stops/Buccpor2"], ["http://irail.be/stations/NMBS/008822251", "https://data.delijn.be/stops/308406"], ["http://irail.be/stations/NMBS/008812005", "https://mivb.openplanner.team/stops/6012G"], ["https://data.delijn.be/stops/304075", "https://tec.openplanner.team/stops/Bovepla1"], ["https://data.delijn.be/stops/405733", "https://tec.openplanner.team/stops/LrcarsT2"], ["http://irail.be/stations/NMBS/008822848", "https://data.delijn.be/stops/104579"], ["http://irail.be/stations/NMBS/008871183", "https://tec.openplanner.team/stops/Cjxvalh2"], ["https://data.delijn.be/stops/307717", "https://tec.openplanner.team/stops/Brsggde2"], ["http://irail.be/stations/NMBS/008873312", "https://tec.openplanner.team/stops/N106aqa"], ["http://irail.be/stations/NMBS/008811189", "https://data.delijn.be/stops/304929"], ["https://data.delijn.be/stops/306899", "https://tec.openplanner.team/stops/Bgoestu2"], ["https://data.delijn.be/stops/403789", "https://tec.openplanner.team/stops/LWAbett2"], ["http://irail.be/stations/NMBS/008832458", "https://data.delijn.be/stops/109261"], ["http://irail.be/stations/NMBS/008894508", "https://data.delijn.be/stops/205716"], ["https://data.delijn.be/stops/302855", "https://tec.openplanner.team/stops/LWSstat1"], ["https://data.delijn.be/stops/505842", "https://tec.openplanner.team/stops/H4co142a"], ["https://data.delijn.be/stops/405731", "https://tec.openplanner.team/stops/Lrcpaqu2"], ["https://data.delijn.be/stops/302404", "https://mivb.openplanner.team/stops/3608"], ["https://data.delijn.be/stops/301089", "https://mivb.openplanner.team/stops/5532"], ["https://data.delijn.be/stops/207799", "https://tec.openplanner.team/stops/H5el101a"], ["http://irail.be/stations/NMBS/008811247", "https://data.delijn.be/stops/306555"], ["https://data.delijn.be/stops/408865", "https://tec.openplanner.team/stops/LFCvoer2"], ["https://data.delijn.be/stops/303669", "https://mivb.openplanner.team/stops/1744"], ["https://data.delijn.be/stops/208181", "https://tec.openplanner.team/stops/H5rx131a"], ["http://irail.be/stations/NMBS/008874583", "https://tec.openplanner.team/stops/Crswaut1"], ["http://irail.be/stations/NMBS/008821246", "https://data.delijn.be/stops/107237"], ["https://data.delijn.be/stops/408892", "https://tec.openplanner.team/stops/LFMveur2"], ["https://data.delijn.be/stops/404653", "https://tec.openplanner.team/stops/LJUfort1"], ["https://data.delijn.be/stops/300977", "https://mivb.openplanner.team/stops/9296"], ["https://data.delijn.be/stops/410135", "https://tec.openplanner.team/stops/Lladete4"], ["https://data.delijn.be/stops/302445", "https://tec.openplanner.team/stops/Bjodeco3"], ["https://mivb.openplanner.team/stops/1764", "https://tec.openplanner.team/stops/Bettlha2"], ["http://irail.be/stations/NMBS/008895620", "https://data.delijn.be/stops/209573"], ["http://irail.be/stations/NMBS/008845203", "https://tec.openplanner.team/stops/LTPnoup1"], ["http://irail.be/stations/NMBS/008892205", "https://data.delijn.be/stops/509723"], ["https://mivb.openplanner.team/stops/6956G", "https://tec.openplanner.team/stops/Buccmer2"], ["http://irail.be/stations/NMBS/008812047", "https://mivb.openplanner.team/stops/6800"], ["https://data.delijn.be/stops/301006", "https://mivb.openplanner.team/stops/1198"], ["https://data.delijn.be/stops/301956", "https://mivb.openplanner.team/stops/6483B"], ["https://data.delijn.be/stops/207773", "https://tec.openplanner.team/stops/H5rx126a"], ["https://data.delijn.be/stops/509235", "https://tec.openplanner.team/stops/H4co148b"], ["http://irail.be/stations/NMBS/008814126", "https://mivb.openplanner.team/stops/5756"], ["https://data.delijn.be/stops/304570", "https://mivb.openplanner.team/stops/7650210"], ["https://data.delijn.be/stops/404654", "https://tec.openplanner.team/stops/LJU51--2"], ["https://data.delijn.be/stops/301399", "https://mivb.openplanner.team/stops/2664"], ["http://irail.be/stations/NMBS/008841608", "https://tec.openplanner.team/stops/Lhrmare1"], ["https://data.delijn.be/stops/400487", "https://tec.openplanner.team/stops/LBPxhav1"], ["https://data.delijn.be/stops/401402", "https://mivb.openplanner.team/stops/3765"], ["https://data.delijn.be/stops/301046", "https://mivb.openplanner.team/stops/4214"], ["https://data.delijn.be/stops/305145", "https://tec.openplanner.team/stops/H1mk107b"], ["https://data.delijn.be/stops/300802", "https://mivb.openplanner.team/stops/1493"], ["http://irail.be/stations/NMBS/008728710", "https://tec.openplanner.team/stops/H4lg103b"], ["http://irail.be/stations/NMBS/008015345", "https://tec.openplanner.team/stops/LaAlinz1"], ["https://data.delijn.be/stops/410145", "https://tec.openplanner.team/stops/LlgPRVo2"], ["https://data.delijn.be/stops/405700", "https://tec.openplanner.team/stops/Llghugo1"], ["https://mivb.openplanner.team/stops/3510", "https://tec.openplanner.team/stops/Bixlaca1"], ["http://irail.be/stations/NMBS/008895851", "https://data.delijn.be/stops/207110"], ["https://data.delijn.be/stops/300961", "https://mivb.openplanner.team/stops/1754"], ["http://irail.be/stations/NMBS/008811262", "https://data.delijn.be/stops/302731"], ["https://data.delijn.be/stops/509299", "https://tec.openplanner.team/stops/H4mo151a"], ["http://irail.be/stations/NMBS/008841731", "https://tec.openplanner.team/stops/LGLgeer2"], ["https://data.delijn.be/stops/300746", "https://mivb.openplanner.team/stops/7720203"], ["http://irail.be/stations/NMBS/008861515", "https://tec.openplanner.team/stops/Bcrnnpl1"], ["https://data.delijn.be/stops/300390", "https://mivb.openplanner.team/stops/9677"], ["https://data.delijn.be/stops/301073", "https://mivb.openplanner.team/stops/0290212"], ["http://irail.be/stations/NMBS/008811742", "https://data.delijn.be/stops/302390"], ["https://data.delijn.be/stops/400496", "https://tec.openplanner.team/stops/LWOwonc1"], ["http://irail.be/stations/NMBS/008815040", "https://mivb.openplanner.team/stops/1117"], ["http://irail.be/stations/NMBS/008821063", "https://data.delijn.be/stops/103895"], ["https://mivb.openplanner.team/stops/5453", "https://tec.openplanner.team/stops/Bwbfeta2"], ["http://irail.be/stations/NMBS/008811130", "https://mivb.openplanner.team/stops/3130"], ["http://irail.be/stations/NMBS/008831765", "https://data.delijn.be/stops/402256"], ["https://data.delijn.be/stops/303583", "https://mivb.openplanner.team/stops/3042"], ["https://data.delijn.be/stops/407213", "https://tec.openplanner.team/stops/LHecime2"], ["http://irail.be/stations/NMBS/008821451", "https://data.delijn.be/stops/105857"], ["https://data.delijn.be/stops/409000", "https://tec.openplanner.team/stops/LWAclos1"], ["http://irail.be/stations/NMBS/008821337", "https://data.delijn.be/stops/107237"], ["https://data.delijn.be/stops/407200", "https://tec.openplanner.team/stops/LHehacc2"], ["https://data.delijn.be/stops/408903", "https://tec.openplanner.team/stops/LFPknap2"], ["http://irail.be/stations/NMBS/008894425", "https://data.delijn.be/stops/205227"], ["http://irail.be/stations/NMBS/008824240", "https://data.delijn.be/stops/101131"], ["https://data.delijn.be/stops/301063", "https://mivb.openplanner.team/stops/4599"], ["https://data.delijn.be/stops/303226", "https://mivb.openplanner.team/stops/5964"], ["https://data.delijn.be/stops/302793", "https://mivb.openplanner.team/stops/1656B"], ["http://irail.be/stations/NMBS/008893179", "https://data.delijn.be/stops/204556"], ["https://data.delijn.be/stops/304440", "https://tec.openplanner.team/stops/Balsnie1"], ["http://irail.be/stations/NMBS/008849072", "https://tec.openplanner.team/stops/X793ada"], ["http://irail.be/stations/NMBS/008889045", "https://tec.openplanner.team/stops/H4bx108b"], ["https://data.delijn.be/stops/406565", "https://tec.openplanner.team/stops/LHTcent2"], ["http://irail.be/stations/NMBS/008866175", "https://tec.openplanner.team/stops/X671afa"], ["https://data.delijn.be/stops/307283", "https://tec.openplanner.team/stops/Bcbqa361"], ["https://data.delijn.be/stops/301012", "https://mivb.openplanner.team/stops/1199F"], ["http://irail.be/stations/NMBS/008866605", "https://tec.openplanner.team/stops/X615aba"], ["https://data.delijn.be/stops/301400", "https://mivb.openplanner.team/stops/5729"], ["http://irail.be/stations/NMBS/008895125", "https://data.delijn.be/stops/207004"], ["http://irail.be/stations/NMBS/008895463", "https://data.delijn.be/stops/206861"], ["https://data.delijn.be/stops/405347", "https://tec.openplanner.team/stops/Bezebru2"], ["http://irail.be/stations/NMBS/008863503", "https://tec.openplanner.team/stops/N232aqb"], ["https://data.delijn.be/stops/302807", "https://mivb.openplanner.team/stops/1601"], ["http://irail.be/stations/NMBS/008200130", "https://tec.openplanner.team/stops/X663aac"], ["https://data.delijn.be/stops/300396", "https://tec.openplanner.team/stops/Blemwro1"], ["http://irail.be/stations/NMBS/008896388", "https://data.delijn.be/stops/508070"], ["https://data.delijn.be/stops/407491", "https://tec.openplanner.team/stops/LToluik2"], ["http://irail.be/stations/NMBS/008811536", "https://tec.openplanner.team/stops/Brixrmo1"], ["http://irail.be/stations/NMBS/008881505", "https://tec.openplanner.team/stops/H1al108a"], ["https://data.delijn.be/stops/301005", "https://mivb.openplanner.team/stops/4106"], ["https://data.delijn.be/stops/300315", "https://tec.openplanner.team/stops/Bnetace2"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/Cchdagn2"], ["https://data.delijn.be/stops/300974", "https://tec.openplanner.team/stops/Baudhde1"], ["https://data.delijn.be/stops/408847", "https://tec.openplanner.team/stops/LRmkult2"], ["https://data.delijn.be/stops/305494", "https://mivb.openplanner.team/stops/1321"], ["http://irail.be/stations/NMBS/008843224", "https://tec.openplanner.team/stops/Lfhborg1"], ["https://data.delijn.be/stops/308723", "https://tec.openplanner.team/stops/Bgoesch4"], ["http://irail.be/stations/NMBS/008895000", "https://data.delijn.be/stops/204970"], ["http://irail.be/stations/NMBS/008822160", "https://data.delijn.be/stops/207366"], ["https://data.delijn.be/stops/307634", "https://mivb.openplanner.team/stops/1965"], ["https://data.delijn.be/stops/509231", "https://tec.openplanner.team/stops/H4co146b"], ["http://irail.be/stations/NMBS/008811742", "https://tec.openplanner.team/stops/Bgzdgth1"], ["https://mivb.openplanner.team/stops/1715", "https://tec.openplanner.team/stops/Bettars1"], ["http://irail.be/stations/NMBS/008864469", "https://tec.openplanner.team/stops/X982bfb"], ["https://mivb.openplanner.team/stops/1942", "https://tec.openplanner.team/stops/Buccdst2"], ["http://irail.be/stations/NMBS/008842630", "https://tec.openplanner.team/stops/LTIpora2"], ["http://irail.be/stations/NMBS/008884566", "https://tec.openplanner.team/stops/H1je225a"], ["http://irail.be/stations/NMBS/008881463", "https://tec.openplanner.team/stops/H2sb228c"], ["https://data.delijn.be/stops/400682", "https://tec.openplanner.team/stops/LHgpost2"], ["https://data.delijn.be/stops/300963", "https://mivb.openplanner.team/stops/1720B"], ["https://data.delijn.be/stops/208759", "https://tec.openplanner.team/stops/H5rx104a"], ["https://data.delijn.be/stops/306399", "https://mivb.openplanner.team/stops/1245"], ["http://irail.be/stations/NMBS/008895489", "https://data.delijn.be/stops/207528"], ["http://irail.be/stations/NMBS/008821824", "https://data.delijn.be/stops/104742"], ["http://irail.be/stations/NMBS/008886348", "https://tec.openplanner.team/stops/H4lz123a"], ["http://irail.be/stations/NMBS/008843158", "https://tec.openplanner.team/stops/Ljetout2"], ["https://data.delijn.be/stops/408952", "https://tec.openplanner.team/stops/LWAvisi2"], ["https://data.delijn.be/stops/504307", "https://tec.openplanner.team/stops/H4mo180a"], ["http://irail.be/stations/NMBS/008866001", "https://tec.openplanner.team/stops/X601bcb"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/108231"], ["https://data.delijn.be/stops/209597", "https://tec.openplanner.team/stops/Benggar1"], ["http://irail.be/stations/NMBS/008863362", "https://tec.openplanner.team/stops/N501evb"], ["https://data.delijn.be/stops/408866", "https://tec.openplanner.team/stops/LFCvoge4"], ["https://data.delijn.be/stops/408856", "https://tec.openplanner.team/stops/LFClage2"], ["https://mivb.openplanner.team/stops/2757C", "https://tec.openplanner.team/stops/Buccpor2"], ["http://irail.be/stations/NMBS/008833308", "https://data.delijn.be/stops/305173"], ["https://data.delijn.be/stops/410145", "https://tec.openplanner.team/stops/Llgbois1"], ["https://data.delijn.be/stops/408885", "https://tec.openplanner.team/stops/LFCotte1"], ["https://data.delijn.be/stops/301020", "https://mivb.openplanner.team/stops/4059F"], ["https://data.delijn.be/stops/308356", "https://mivb.openplanner.team/stops/6418F"], ["http://irail.be/stations/NMBS/008821063", "https://data.delijn.be/stops/102178"], ["https://data.delijn.be/stops/308823", "https://tec.openplanner.team/stops/LWHmath2"], ["https://data.delijn.be/stops/300922", "https://mivb.openplanner.team/stops/1538B"], ["https://mivb.openplanner.team/stops/1762", "https://tec.openplanner.team/stops/Bettbue2"], ["https://data.delijn.be/stops/300803", "https://mivb.openplanner.team/stops/6"], ["http://irail.be/stations/NMBS/008821857", "https://data.delijn.be/stops/108054"], ["https://data.delijn.be/stops/301926", "https://mivb.openplanner.team/stops/9853"], ["http://irail.be/stations/NMBS/008844313", "https://tec.openplanner.team/stops/Lpemata2"], ["http://irail.be/stations/NMBS/008814142", "https://mivb.openplanner.team/stops/1954"], ["https://mivb.openplanner.team/stops/0650265", "https://tec.openplanner.team/stops/Bsgihmo2"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/503474"], ["http://irail.be/stations/NMBS/008892734", "https://data.delijn.be/stops/505279"], ["https://data.delijn.be/stops/304722", "https://mivb.openplanner.team/stops/5804G"], ["https://data.delijn.be/stops/302836", "https://tec.openplanner.team/stops/LLaover3"], ["https://data.delijn.be/stops/408600", "https://tec.openplanner.team/stops/LToluik2"], ["http://irail.be/stations/NMBS/008822210", "https://data.delijn.be/stops/109722"], ["https://data.delijn.be/stops/304838", "https://mivb.openplanner.team/stops/9552"], ["https://data.delijn.be/stops/404664", "https://tec.openplanner.team/stops/LPAvill2"], ["http://irail.be/stations/NMBS/008866530", "https://tec.openplanner.team/stops/X696ada"], ["http://irail.be/stations/NMBS/008896396", "https://data.delijn.be/stops/504564"], ["https://data.delijn.be/stops/400452", "https://tec.openplanner.team/stops/LRGile-2"], ["http://irail.be/stations/NMBS/008200510", "https://tec.openplanner.team/stops/X684aba"], ["http://irail.be/stations/NMBS/008812237", "https://data.delijn.be/stops/301379"], ["https://data.delijn.be/stops/303648", "https://mivb.openplanner.team/stops/2814"], ["https://data.delijn.be/stops/308675", "https://mivb.openplanner.team/stops/1486B"], ["http://irail.be/stations/NMBS/008811213", "https://data.delijn.be/stops/303542"], ["https://data.delijn.be/stops/308673", "https://mivb.openplanner.team/stops/3610F"], ["https://data.delijn.be/stops/306386", "https://tec.openplanner.team/stops/Bhalber3"], ["http://irail.be/stations/NMBS/008811734", "https://tec.openplanner.team/stops/Bwavpar1"], ["http://irail.be/stations/NMBS/008864345", "https://tec.openplanner.team/stops/X902afb"], ["https://data.delijn.be/stops/305427", "https://mivb.openplanner.team/stops/5520F"], ["http://irail.be/stations/NMBS/008849023", "https://tec.openplanner.team/stops/LhGscha*"], ["http://irail.be/stations/NMBS/008843133", "https://tec.openplanner.team/stops/Lscpamp1"], ["http://irail.be/stations/NMBS/008814464", "https://tec.openplanner.team/stops/Buccham2"], ["https://data.delijn.be/stops/408867", "https://tec.openplanner.team/stops/LFCscho2"], ["http://irail.be/stations/NMBS/008886074", "https://tec.openplanner.team/stops/H1cv101a"], ["https://data.delijn.be/stops/301020", "https://mivb.openplanner.team/stops/1196"], ["https://data.delijn.be/stops/307830", "https://mivb.openplanner.team/stops/9557"], ["https://data.delijn.be/stops/400458", "https://tec.openplanner.team/stops/LWOwonc1"], ["https://data.delijn.be/stops/304642", "https://mivb.openplanner.team/stops/1009"], ["https://data.delijn.be/stops/307967", "https://tec.openplanner.team/stops/Bwavrij1"], ["https://data.delijn.be/stops/400456", "https://tec.openplanner.team/stops/LEBmoul1"], ["https://mivb.openplanner.team/stops/1731", "https://tec.openplanner.team/stops/Baudwav2"], ["https://mivb.openplanner.team/stops/5817F", "https://tec.openplanner.team/stops/Bucccal4"], ["http://irail.be/stations/NMBS/008843067", "https://tec.openplanner.team/stops/Lseaven2"], ["https://data.delijn.be/stops/305910", "https://mivb.openplanner.team/stops/9728"], ["http://irail.be/stations/NMBS/008821709", "https://data.delijn.be/stops/102614"], ["https://data.delijn.be/stops/410136", "https://tec.openplanner.team/stops/Lvopaqu1"], ["https://data.delijn.be/stops/307555", "https://tec.openplanner.team/stops/Bstetre2"], ["https://data.delijn.be/stops/306660", "https://mivb.openplanner.team/stops/9802"], ["http://irail.be/stations/NMBS/008200516", "https://tec.openplanner.team/stops/X688aaa"], ["https://data.delijn.be/stops/301400", "https://mivb.openplanner.team/stops/2660"], ["https://data.delijn.be/stops/408912", "https://tec.openplanner.team/stops/LVukabi1"], ["http://irail.be/stations/NMBS/008881562", "https://tec.openplanner.team/stops/H1qp140a"], ["https://data.delijn.be/stops/305270", "https://mivb.openplanner.team/stops/2823B"], ["http://irail.be/stations/NMBS/008861119", "https://tec.openplanner.team/stops/N501cyb"], ["http://irail.be/stations/NMBS/008846201", "https://data.delijn.be/stops/408805"], ["http://irail.be/stations/NMBS/008882362", "https://tec.openplanner.team/stops/H3bi105d"], ["https://data.delijn.be/stops/307813", "https://mivb.openplanner.team/stops/2087"], ["https://data.delijn.be/stops/307713", "https://tec.openplanner.team/stops/Brsgepr1"], ["https://mivb.openplanner.team/stops/1962F", "https://tec.openplanner.team/stops/Bucccal3"], ["https://data.delijn.be/stops/408893", "https://tec.openplanner.team/stops/LFMrijk2"], ["http://irail.be/stations/NMBS/008891553", "https://data.delijn.be/stops/500603"], ["http://irail.be/stations/NMBS/008896305", "https://data.delijn.be/stops/504277"], ["https://data.delijn.be/stops/300980", "https://mivb.openplanner.team/stops/6190"], ["https://data.delijn.be/stops/410140", "https://tec.openplanner.team/stops/Lanetie2"], ["https://data.delijn.be/stops/300762", "https://mivb.openplanner.team/stops/7640311"], ["https://data.delijn.be/stops/407581", "https://tec.openplanner.team/stops/LDpzol-1"], ["https://data.delijn.be/stops/208757", "https://tec.openplanner.team/stops/H5rx101a"], ["https://data.delijn.be/stops/300316", "https://tec.openplanner.team/stops/Bhmmlad1"], ["https://data.delijn.be/stops/307689", "https://mivb.openplanner.team/stops/1935"], ["https://data.delijn.be/stops/308355", "https://mivb.openplanner.team/stops/6416"], ["https://data.delijn.be/stops/303626", "https://tec.openplanner.team/stops/Bcbqcim1"], ["https://data.delijn.be/stops/300945", "https://mivb.openplanner.team/stops/1732"], ["http://irail.be/stations/NMBS/008842705", "https://tec.openplanner.team/stops/LCPgare2"], ["http://irail.be/stations/NMBS/008891652", "https://data.delijn.be/stops/501164"], ["https://data.delijn.be/stops/306117", "https://mivb.openplanner.team/stops/3717"], ["https://data.delijn.be/stops/208591", "https://tec.openplanner.team/stops/H1en103a"], ["http://irail.be/stations/NMBS/008822228", "https://data.delijn.be/stops/108874"], ["https://data.delijn.be/stops/301675", "https://tec.openplanner.team/stops/Bbbksth1"], ["https://data.delijn.be/stops/301133", "https://tec.openplanner.team/stops/Buccvch2"], ["https://data.delijn.be/stops/401417", "https://mivb.openplanner.team/stops/0080222"], ["http://irail.be/stations/NMBS/008843349", "https://tec.openplanner.team/stops/LAMhaut1"], ["https://data.delijn.be/stops/408950", "https://tec.openplanner.team/stops/LWApt--2"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bcsempl1"], ["https://data.delijn.be/stops/302870", "https://tec.openplanner.team/stops/Bhevjac1"], ["http://irail.be/stations/NMBS/008883238", "https://tec.openplanner.team/stops/H2fa112b"], ["http://irail.be/stations/NMBS/008881000", "https://tec.openplanner.team/stops/H1ms400a"], ["https://data.delijn.be/stops/509234", "https://tec.openplanner.team/stops/H4co108b"], ["https://data.delijn.be/stops/401401", "https://mivb.openplanner.team/stops/3274"], ["https://data.delijn.be/stops/300830", "https://mivb.openplanner.team/stops/4232"], ["https://data.delijn.be/stops/300322", "https://tec.openplanner.team/stops/Balsbeg1"], ["https://data.delijn.be/stops/307642", "https://mivb.openplanner.team/stops/1935"], ["https://data.delijn.be/stops/302403", "https://mivb.openplanner.team/stops/3613F"], ["https://data.delijn.be/stops/404669", "https://tec.openplanner.team/stops/LVSpota1"], ["https://data.delijn.be/stops/509738", "https://tec.openplanner.team/stops/H4hx116b"], ["https://mivb.openplanner.team/stops/1598", "https://tec.openplanner.team/stops/Baudstr2"], ["https://data.delijn.be/stops/301168", "https://mivb.openplanner.team/stops/5953"], ["https://data.delijn.be/stops/302808", "https://mivb.openplanner.team/stops/1613"], ["https://data.delijn.be/stops/301068", "https://mivb.openplanner.team/stops/1145"], ["http://irail.be/stations/NMBS/008841525", "https://tec.openplanner.team/stops/Llgangl1"], ["https://data.delijn.be/stops/306902", "https://tec.openplanner.team/stops/Bgoestu2"], ["https://data.delijn.be/stops/505275", "https://tec.openplanner.team/stops/H4po129a"], ["https://data.delijn.be/stops/301130", "https://mivb.openplanner.team/stops/2120"], ["http://irail.be/stations/NMBS/008863503", "https://tec.openplanner.team/stops/N232bnb"], ["https://data.delijn.be/stops/305555", "https://mivb.openplanner.team/stops/9600B"], ["http://irail.be/stations/NMBS/008844420", "https://tec.openplanner.team/stops/LSPxhou1"], ["https://data.delijn.be/stops/306913", "https://tec.openplanner.team/stops/Bbosgar2"], ["https://data.delijn.be/stops/305201", "https://tec.openplanner.team/stops/Btiegar2"], ["http://irail.be/stations/NMBS/008814308", "https://tec.openplanner.team/stops/Bhalpar2"], ["http://irail.be/stations/NMBS/008863834", "https://tec.openplanner.team/stops/N337aib"], ["http://irail.be/stations/NMBS/008811460", "https://data.delijn.be/stops/302210"], ["https://data.delijn.be/stops/208742", "https://tec.openplanner.team/stops/H4or116b"], ["http://irail.be/stations/NMBS/008811213", "https://data.delijn.be/stops/303565"], ["https://data.delijn.be/stops/208178", "https://tec.openplanner.team/stops/H5el117a"], ["http://irail.be/stations/NMBS/008831781", "https://data.delijn.be/stops/402126"], ["http://irail.be/stations/NMBS/008875127", "https://tec.openplanner.team/stops/N135aba"], ["https://data.delijn.be/stops/302438", "https://tec.openplanner.team/stops/Bzlucam2"], ["https://mivb.openplanner.team/stops/0230434", "https://tec.openplanner.team/stops/Bauddel1"], ["http://irail.be/stations/NMBS/008882206", "https://tec.openplanner.team/stops/H2hp116b"], ["https://data.delijn.be/stops/403764", "https://tec.openplanner.team/stops/LBGvill2"], ["http://irail.be/stations/NMBS/008883006", "https://tec.openplanner.team/stops/Bbcogar1"], ["https://data.delijn.be/stops/301012", "https://mivb.openplanner.team/stops/1108"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N254aaa"], ["http://irail.be/stations/NMBS/008895729", "https://data.delijn.be/stops/209581"], ["https://data.delijn.be/stops/408927", "https://tec.openplanner.team/stops/LTEzinn1"], ["https://data.delijn.be/stops/509006", "https://tec.openplanner.team/stops/H4wn126a"], ["https://data.delijn.be/stops/509004", "https://tec.openplanner.team/stops/H4mo206b"], ["http://irail.be/stations/NMBS/008821048", "https://data.delijn.be/stops/107005"], ["http://irail.be/stations/NMBS/008814449", "https://mivb.openplanner.team/stops/1741"], ["https://data.delijn.be/stops/300795", "https://mivb.openplanner.team/stops/3850"], ["https://data.delijn.be/stops/303080", "https://tec.openplanner.team/stops/Bhevgar2"], ["https://data.delijn.be/stops/300999", "https://mivb.openplanner.team/stops/6409F"], ["https://data.delijn.be/stops/302848", "https://tec.openplanner.team/stops/Bwaab122"], ["https://data.delijn.be/stops/402551", "https://tec.openplanner.team/stops/LCAcruc1"], ["http://irail.be/stations/NMBS/008831005", "https://data.delijn.be/stops/403444"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N553aoa"], ["https://data.delijn.be/stops/300973", "https://tec.openplanner.team/stops/Baudvdr2"], ["http://irail.be/stations/NMBS/008811007", "https://mivb.openplanner.team/stops/5760"], ["http://irail.be/stations/NMBS/008824232", "https://data.delijn.be/stops/105982"], ["https://data.delijn.be/stops/301403", "https://mivb.openplanner.team/stops/5731F"], ["https://data.delijn.be/stops/405719", "https://tec.openplanner.team/stops/Llglimb1"], ["http://irail.be/stations/NMBS/008842630", "https://tec.openplanner.team/stops/LTIdamr1"], ["http://irail.be/stations/NMBS/008865227", "https://tec.openplanner.team/stops/X898ada"], ["http://irail.be/stations/NMBS/008864824", "https://tec.openplanner.team/stops/N211acb"], ["https://data.delijn.be/stops/300962", "https://mivb.openplanner.team/stops/2725"], ["https://data.delijn.be/stops/306310", "https://mivb.openplanner.team/stops/5823"], ["https://data.delijn.be/stops/307836", "https://mivb.openplanner.team/stops/1661"], ["https://data.delijn.be/stops/306910", "https://tec.openplanner.team/stops/Bbosgar2"], ["https://data.delijn.be/stops/408691", "https://tec.openplanner.team/stops/LTotrui2"], ["https://data.delijn.be/stops/307054", "https://mivb.openplanner.team/stops/9575"], ["https://data.delijn.be/stops/300933", "https://mivb.openplanner.team/stops/2982"], ["http://irail.be/stations/NMBS/008831401", "https://data.delijn.be/stops/305949"], ["http://irail.be/stations/NMBS/008872553", "https://tec.openplanner.team/stops/Btilmon2"], ["http://irail.be/stations/NMBS/008812062", "https://data.delijn.be/stops/300303"], ["https://mivb.openplanner.team/stops/5054F", "https://tec.openplanner.team/stops/Buccplj1"], ["http://irail.be/stations/NMBS/008893708", "https://data.delijn.be/stops/203225"], ["http://irail.be/stations/NMBS/008821451", "https://data.delijn.be/stops/102566"], ["https://data.delijn.be/stops/307808", "https://mivb.openplanner.team/stops/1202"], ["https://data.delijn.be/stops/404674", "https://tec.openplanner.team/stops/LVSslin3"], ["http://irail.be/stations/NMBS/008892056", "https://data.delijn.be/stops/209646"], ["http://irail.be/stations/NMBS/008889045", "https://tec.openplanner.team/stops/H4te253b"], ["http://irail.be/stations/NMBS/008896230", "https://data.delijn.be/stops/508828"], ["http://irail.be/stations/NMBS/008831765", "https://data.delijn.be/stops/410335"], ["https://data.delijn.be/stops/208183", "https://tec.openplanner.team/stops/H5el111a"], ["https://data.delijn.be/stops/307831", "https://mivb.openplanner.team/stops/5520F"], ["https://data.delijn.be/stops/408869", "https://tec.openplanner.team/stops/LFCalte1"], ["https://data.delijn.be/stops/301073", "https://mivb.openplanner.team/stops/1793"], ["http://irail.be/stations/NMBS/008861168", "https://tec.openplanner.team/stops/N534bnh"], ["https://mivb.openplanner.team/stops/2109B", "https://tec.openplanner.team/stops/Buccvoi3"], ["http://irail.be/stations/NMBS/008863834", "https://tec.openplanner.team/stops/N261ahb"], ["https://data.delijn.be/stops/407207", "https://tec.openplanner.team/stops/LHTmoul2"], ["https://data.delijn.be/stops/300904", "https://tec.openplanner.team/stops/Bixllep2"], ["http://irail.be/stations/NMBS/008841459", "https://tec.openplanner.team/stops/LMOm64-1"], ["http://irail.be/stations/NMBS/008873007", "https://tec.openplanner.team/stops/N106aqa"], ["http://irail.be/stations/NMBS/008821030", "https://data.delijn.be/stops/102414"], ["http://irail.be/stations/NMBS/008895778", "https://data.delijn.be/stops/206984"], ["https://data.delijn.be/stops/301153", "https://mivb.openplanner.team/stops/2118"], ["https://data.delijn.be/stops/306159", "https://mivb.openplanner.team/stops/8152"], ["http://irail.be/stations/NMBS/008863362", "https://tec.openplanner.team/stops/N501kfb"], ["https://data.delijn.be/stops/404655", "https://tec.openplanner.team/stops/LJU51--1"], ["https://data.delijn.be/stops/207786", "https://tec.openplanner.team/stops/H5rx139a"], ["https://data.delijn.be/stops/304462", "https://tec.openplanner.team/stops/Brsgtou2"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N219afa"], ["https://data.delijn.be/stops/404668", "https://tec.openplanner.team/stops/LPAchpl1"], ["http://irail.be/stations/NMBS/008811445", "https://tec.openplanner.team/stops/Bhoemel2"], ["http://irail.be/stations/NMBS/008842853", "https://tec.openplanner.team/stops/X982bfb"], ["http://irail.be/stations/NMBS/008895802", "https://data.delijn.be/stops/206105"], ["https://data.delijn.be/stops/307158", "https://tec.openplanner.team/stops/Bhalalb1"], ["http://irail.be/stations/NMBS/008844206", "https://tec.openplanner.team/stops/Lpeeg--1"], ["https://data.delijn.be/stops/304437", "https://tec.openplanner.team/stops/Brsggea2"], ["https://data.delijn.be/stops/307227", "https://tec.openplanner.team/stops/Bhalgar1"], ["https://data.delijn.be/stops/408969", "https://tec.openplanner.team/stops/LWAchpg1"], ["http://irail.be/stations/NMBS/008841442", "https://tec.openplanner.team/stops/LListie1"], ["https://data.delijn.be/stops/305435", "https://mivb.openplanner.team/stops/5518"], ["http://irail.be/stations/NMBS/008895455", "https://data.delijn.be/stops/207485"], ["http://irail.be/stations/NMBS/008400219", "https://tec.openplanner.team/stops/LMgkrui1"], ["https://data.delijn.be/stops/300988", "https://mivb.openplanner.team/stops/3763"], ["https://data.delijn.be/stops/301020", "https://mivb.openplanner.team/stops/1099"], ["http://irail.be/stations/NMBS/008811742", "https://tec.openplanner.team/stops/Bpecvme2"], ["https://data.delijn.be/stops/401399", "https://mivb.openplanner.team/stops/3132"], ["http://irail.be/stations/NMBS/008728654", "https://data.delijn.be/stops/508128"], ["https://data.delijn.be/stops/302000", "https://tec.openplanner.team/stops/Blemwro2"], ["https://data.delijn.be/stops/509236", "https://tec.openplanner.team/stops/H4co104a"], ["https://data.delijn.be/stops/300362", "https://tec.openplanner.team/stops/Bbrlpar2"], ["https://data.delijn.be/stops/301085", "https://mivb.openplanner.team/stops/1525"], ["https://data.delijn.be/stops/304442", "https://tec.openplanner.team/stops/Bwatali1"], ["http://irail.be/stations/NMBS/008821634", "https://data.delijn.be/stops/106587"], ["http://irail.be/stations/NMBS/008824224", "https://data.delijn.be/stops/101089"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LMalarg3"], ["http://irail.be/stations/NMBS/008841558", "https://tec.openplanner.team/stops/Llghec-1"], ["https://data.delijn.be/stops/300986", "https://mivb.openplanner.team/stops/0536"], ["https://data.delijn.be/stops/304720", "https://mivb.openplanner.team/stops/3280"], ["http://irail.be/stations/NMBS/008893179", "https://data.delijn.be/stops/200479"], ["https://data.delijn.be/stops/300993", "https://mivb.openplanner.team/stops/6304"], ["https://data.delijn.be/stops/300896", "https://mivb.openplanner.team/stops/3280"], ["https://data.delijn.be/stops/307852", "https://mivb.openplanner.team/stops/8232"], ["https://data.delijn.be/stops/301301", "https://mivb.openplanner.team/stops/1484"], ["https://data.delijn.be/stops/408855", "https://tec.openplanner.team/stops/LFCalte1"], ["http://irail.be/stations/NMBS/008895836", "https://data.delijn.be/stops/306718"], ["http://irail.be/stations/NMBS/008822517", "https://data.delijn.be/stops/301849"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/503080"], ["https://data.delijn.be/stops/300764", "https://mivb.openplanner.team/stops/2319"], ["https://data.delijn.be/stops/301055", "https://mivb.openplanner.team/stops/5014"], ["https://data.delijn.be/stops/307647", "https://tec.openplanner.team/stops/Balsbeg1"], ["http://irail.be/stations/NMBS/008831138", "https://data.delijn.be/stops/400863"], ["http://irail.be/stations/NMBS/008879004", "https://tec.openplanner.team/stops/H1be101a"], ["https://data.delijn.be/stops/207769", "https://tec.openplanner.team/stops/H5rx114a"], ["https://data.delijn.be/stops/307150", "https://tec.openplanner.team/stops/Bhaless2"], ["http://irail.be/stations/NMBS/008864816", "https://tec.openplanner.team/stops/N211ala"], ["https://data.delijn.be/stops/408913", "https://tec.openplanner.team/stops/LVu40--2"], ["http://irail.be/stations/NMBS/008872587", "https://tec.openplanner.team/stops/Bsmgmas1"], ["http://irail.be/stations/NMBS/008821089", "https://data.delijn.be/stops/109035"], ["http://irail.be/stations/NMBS/008822004", "https://data.delijn.be/stops/105057"], ["http://irail.be/stations/NMBS/008892056", "https://data.delijn.be/stops/208644"], ["https://data.delijn.be/stops/306176", "https://mivb.openplanner.team/stops/5605"], ["https://data.delijn.be/stops/301413", "https://tec.openplanner.team/stops/H1en106a"], ["https://data.delijn.be/stops/302407", "https://mivb.openplanner.team/stops/3609F"], ["https://data.delijn.be/stops/307651", "https://tec.openplanner.team/stops/Brsgter1"], ["https://data.delijn.be/stops/408886", "https://tec.openplanner.team/stops/LTErest2"], ["https://data.delijn.be/stops/407206", "https://tec.openplanner.team/stops/LHTmoul1"], ["https://data.delijn.be/stops/304210", "https://tec.openplanner.team/stops/Brsrabe2"], ["https://data.delijn.be/stops/307640", "https://mivb.openplanner.team/stops/1963"], ["https://data.delijn.be/stops/300982", "https://mivb.openplanner.team/stops/5803G"], ["http://irail.be/stations/NMBS/008833126", "https://data.delijn.be/stops/302924"], ["https://data.delijn.be/stops/304209", "https://tec.openplanner.team/stops/Brsrmon3"], ["https://data.delijn.be/stops/208024", "https://tec.openplanner.team/stops/H1og135a"], ["https://data.delijn.be/stops/401724", "https://tec.openplanner.team/stops/LWHzave2"], ["http://irail.be/stations/NMBS/008821519", "https://data.delijn.be/stops/104334"], ["http://irail.be/stations/NMBS/008811510", "https://data.delijn.be/stops/304072"], ["http://irail.be/stations/NMBS/008200101", "https://tec.openplanner.team/stops/LmNlieb1"], ["https://data.delijn.be/stops/304600", "https://mivb.openplanner.team/stops/1540"], ["https://data.delijn.be/stops/308356", "https://mivb.openplanner.team/stops/6202"], ["https://data.delijn.be/stops/509735", "https://tec.openplanner.team/stops/H4do106a"], ["http://irail.be/stations/NMBS/008895422", "https://data.delijn.be/stops/208752"], ["https://data.delijn.be/stops/300338", "https://tec.openplanner.team/stops/Balssvi1"], ["http://irail.be/stations/NMBS/008400526", "https://data.delijn.be/stops/105332"], ["https://data.delijn.be/stops/303652", "https://tec.openplanner.team/stops/Bovelge2"], ["http://irail.be/stations/NMBS/008400180", "https://data.delijn.be/stops/104636"], ["http://irail.be/stations/NMBS/008711184", "https://tec.openplanner.team/stops/X317aba"], ["http://irail.be/stations/NMBS/008893260", "https://data.delijn.be/stops/203027"], ["http://irail.be/stations/NMBS/008814266", "https://tec.openplanner.team/stops/Bwattri1"], ["http://irail.be/stations/NMBS/008861432", "https://tec.openplanner.team/stops/N526aaa"], ["https://data.delijn.be/stops/408447", "https://tec.openplanner.team/stops/LCAwals1"], ["http://irail.be/stations/NMBS/008400426", "https://data.delijn.be/stops/408869"], ["http://irail.be/stations/NMBS/008814258", "https://tec.openplanner.team/stops/Bblagard"], ["https://data.delijn.be/stops/305226", "https://mivb.openplanner.team/stops/9779"], ["https://data.delijn.be/stops/404067", "https://tec.openplanner.team/stops/LCAcruc2"], ["http://irail.be/stations/NMBS/008872066", "https://tec.openplanner.team/stops/Cchviad2"], ["https://data.delijn.be/stops/304862", "https://tec.openplanner.team/stops/Bbrlrph2"], ["http://irail.be/stations/NMBS/008886553", "https://tec.openplanner.team/stops/H1le120b"], ["https://data.delijn.be/stops/304208", "https://tec.openplanner.team/stops/Brsrmon1"], ["https://data.delijn.be/stops/504231", "https://tec.openplanner.team/stops/H4co105a"], ["http://irail.be/stations/NMBS/008819406", "https://data.delijn.be/stops/305558"], ["https://data.delijn.be/stops/302428", "https://tec.openplanner.team/stops/Bjod7co2"], ["http://irail.be/stations/NMBS/008831088", "https://data.delijn.be/stops/403974"], ["http://irail.be/stations/NMBS/008861531", "https://tec.openplanner.team/stops/Bchapir2"], ["https://mivb.openplanner.team/stops/2960F", "https://tec.openplanner.team/stops/Bixllep2"], ["https://data.delijn.be/stops/304437", "https://tec.openplanner.team/stops/Brsga811"], ["https://data.delijn.be/stops/301129", "https://tec.openplanner.team/stops/Buccfja1"], ["https://data.delijn.be/stops/300922", "https://mivb.openplanner.team/stops/3958"], ["https://data.delijn.be/stops/307213", "https://tec.openplanner.team/stops/Bhalvla2"], ["http://irail.be/stations/NMBS/008841202", "https://tec.openplanner.team/stops/Llonaes2"], ["http://irail.be/stations/NMBS/008811460", "https://tec.openplanner.team/stops/Blhufro1"], ["http://irail.be/stations/NMBS/008831807", "https://data.delijn.be/stops/407935"], ["http://irail.be/stations/NMBS/008831005", "https://data.delijn.be/stops/403445"], ["http://irail.be/stations/NMBS/008883121", "https://tec.openplanner.team/stops/H1ca106b"], ["https://data.delijn.be/stops/509236", "https://tec.openplanner.team/stops/H4co158a"], ["http://irail.be/stations/NMBS/008896735", "https://data.delijn.be/stops/504411"], ["https://data.delijn.be/stops/405715", "https://tec.openplanner.team/stops/Llghoch3"], ["https://data.delijn.be/stops/300389", "https://mivb.openplanner.team/stops/9655"], ["https://data.delijn.be/stops/400450", "https://tec.openplanner.team/stops/LBPauto1"], ["https://data.delijn.be/stops/307089", "https://tec.openplanner.team/stops/Brsg7fo2"], ["https://data.delijn.be/stops/300328", "https://tec.openplanner.team/stops/Balsnie2"], ["https://mivb.openplanner.team/stops/1811", "https://tec.openplanner.team/stops/Baudsju1"], ["http://irail.be/stations/NMBS/008200518", "https://tec.openplanner.team/stops/X688abb"], ["http://irail.be/stations/NMBS/008892403", "https://data.delijn.be/stops/503343"], ["http://irail.be/stations/NMBS/008895869", "https://data.delijn.be/stops/207153"], ["https://data.delijn.be/stops/307605", "https://tec.openplanner.team/stops/H1mk116b"], ["http://irail.be/stations/NMBS/008873122", "https://tec.openplanner.team/stops/N101aha"], ["https://data.delijn.be/stops/308046", "https://tec.openplanner.team/stops/Bovetdo1"], ["http://irail.be/stations/NMBS/008892007", "https://data.delijn.be/stops/200309"], ["https://data.delijn.be/stops/308957", "https://mivb.openplanner.team/stops/1598"], ["https://data.delijn.be/stops/306914", "https://tec.openplanner.team/stops/Bbosdra1"], ["http://irail.be/stations/NMBS/008822715", "https://data.delijn.be/stops/102599"], ["https://data.delijn.be/stops/408913", "https://tec.openplanner.team/stops/LDppana1"], ["http://irail.be/stations/NMBS/008896503", "https://data.delijn.be/stops/504154"], ["http://irail.be/stations/NMBS/008814142", "https://data.delijn.be/stops/307689"], ["https://data.delijn.be/stops/209610", "https://tec.openplanner.team/stops/H1by101b"], ["http://irail.be/stations/NMBS/008842036", "https://tec.openplanner.team/stops/Lceembo2"], ["https://mivb.openplanner.team/stops/2927", "https://tec.openplanner.team/stops/Bbxlple2"], ["http://irail.be/stations/NMBS/008884541", "https://tec.openplanner.team/stops/H1wl125a"], ["http://irail.be/stations/NMBS/008883220", "https://tec.openplanner.team/stops/H2ec104a"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1hh117b"], ["https://data.delijn.be/stops/407754", "https://tec.openplanner.team/stops/LWOunio2"], ["http://irail.be/stations/NMBS/008886348", "https://tec.openplanner.team/stops/H4lz126a"], ["http://irail.be/stations/NMBS/008891652", "https://data.delijn.be/stops/501114"], ["https://data.delijn.be/stops/307972", "https://tec.openplanner.team/stops/Bwavcar2"], ["https://data.delijn.be/stops/306001", "https://mivb.openplanner.team/stops/1544"], ["http://irail.be/stations/NMBS/008866001", "https://tec.openplanner.team/stops/X601azb"], ["http://irail.be/stations/NMBS/008822459", "https://data.delijn.be/stops/305965"], ["http://irail.be/stations/NMBS/008865003", "https://tec.openplanner.team/stops/X801bdc"], ["http://irail.be/stations/NMBS/008814365", "https://mivb.openplanner.team/stops/9682"], ["http://irail.be/stations/NMBS/008821402", "https://data.delijn.be/stops/105929"], ["https://data.delijn.be/stops/300875", "https://mivb.openplanner.team/stops/4274"], ["http://irail.be/stations/NMBS/008400131", "https://data.delijn.be/stops/108058"], ["https://data.delijn.be/stops/300754", "https://mivb.openplanner.team/stops/6810"], ["https://data.delijn.be/stops/208409", "https://tec.openplanner.team/stops/H5rx147a"], ["https://data.delijn.be/stops/301146", "https://tec.openplanner.team/stops/Buccpes2"], ["https://mivb.openplanner.team/stops/1354", "https://tec.openplanner.team/stops/Bixlfla2"], ["https://data.delijn.be/stops/300992", "https://mivb.openplanner.team/stops/3762"], ["https://data.delijn.be/stops/400490", "https://tec.openplanner.team/stops/LBSneuv2"], ["http://irail.be/stations/NMBS/008884889", "https://tec.openplanner.team/stops/H4ca121a"], ["https://data.delijn.be/stops/504383", "https://tec.openplanner.team/stops/H4pl136a"], ["http://irail.be/stations/NMBS/008891645", "https://data.delijn.be/stops/506662"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/503449"], ["http://irail.be/stations/NMBS/008881190", "https://tec.openplanner.team/stops/H1cv101a"], ["http://irail.be/stations/NMBS/008811403", "https://mivb.openplanner.team/stops/3156"], ["http://irail.be/stations/NMBS/008210014", "https://tec.openplanner.team/stops/X687aaa"], ["https://data.delijn.be/stops/300320", "https://tec.openplanner.team/stops/Bbeagae1"], ["http://irail.be/stations/NMBS/008863867", "https://tec.openplanner.team/stops/N308aia"], ["http://irail.be/stations/NMBS/008861200", "https://tec.openplanner.team/stops/Bgemgcw1"], ["http://irail.be/stations/NMBS/008843174", "https://tec.openplanner.team/stops/Loutras1"], ["http://irail.be/stations/NMBS/008883808", "https://tec.openplanner.team/stops/Btubind1"], ["https://data.delijn.be/stops/400493", "https://tec.openplanner.team/stops/LBSnouw2"], ["http://irail.be/stations/NMBS/008893542", "https://data.delijn.be/stops/207409"], ["https://data.delijn.be/stops/300408", "https://tec.openplanner.team/stops/Blemwro2"], ["https://data.delijn.be/stops/307241", "https://mivb.openplanner.team/stops/6068"], ["http://irail.be/stations/NMBS/008814159", "https://data.delijn.be/stops/307650"], ["http://irail.be/stations/NMBS/008893567", "https://data.delijn.be/stops/203946"], ["https://data.delijn.be/stops/302200", "https://tec.openplanner.team/stops/Bhoealt1"], ["https://data.delijn.be/stops/307973", "https://tec.openplanner.team/stops/Bwavfol1"], ["http://irail.be/stations/NMBS/008814118", "https://mivb.openplanner.team/stops/5161"], ["http://irail.be/stations/NMBS/008845146", "https://tec.openplanner.team/stops/X750bna"], ["https://data.delijn.be/stops/504534", "https://tec.openplanner.team/stops/H4pl112a"], ["http://irail.be/stations/NMBS/008896149", "https://data.delijn.be/stops/508847"], ["https://data.delijn.be/stops/304543", "https://mivb.openplanner.team/stops/9685"], ["https://data.delijn.be/stops/300831", "https://mivb.openplanner.team/stops/2860"], ["http://irail.be/stations/NMBS/008894201", "https://data.delijn.be/stops/205587"], ["https://data.delijn.be/stops/401411", "https://mivb.openplanner.team/stops/1762"], ["https://data.delijn.be/stops/308722", "https://tec.openplanner.team/stops/Bgoewat1"], ["http://irail.be/stations/NMBS/008895455", "https://data.delijn.be/stops/207487"], ["https://data.delijn.be/stops/300974", "https://tec.openplanner.team/stops/Baudwav2"], ["https://data.delijn.be/stops/305298", "https://tec.openplanner.team/stops/Bspkkhe2"], ["http://irail.be/stations/NMBS/008881455", "https://tec.openplanner.team/stops/H3th130b"], ["https://mivb.openplanner.team/stops/3117", "https://tec.openplanner.team/stops/Bbxlple2"], ["https://data.delijn.be/stops/301006", "https://mivb.openplanner.team/stops/2510"], ["https://mivb.openplanner.team/stops/6465", "https://tec.openplanner.team/stops/Bbxltou1"], ["https://data.delijn.be/stops/302436", "https://tec.openplanner.team/stops/Bsrgegl1"], ["https://data.delijn.be/stops/303576", "https://mivb.openplanner.team/stops/9779"], ["https://data.delijn.be/stops/504310", "https://tec.openplanner.team/stops/H4mo186a"], ["https://data.delijn.be/stops/303248", "https://tec.openplanner.team/stops/Blkbbvh1"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N562aya"], ["https://data.delijn.be/stops/407212", "https://tec.openplanner.team/stops/LHSheur1"], ["https://data.delijn.be/stops/509861", "https://tec.openplanner.team/stops/H4mo190b"], ["http://irail.be/stations/NMBS/008843901", "https://tec.openplanner.team/stops/Llgatel1"], ["http://irail.be/stations/NMBS/008861440", "https://tec.openplanner.team/stops/N527aea"], ["http://irail.be/stations/NMBS/008814340", "https://data.delijn.be/stops/303290"], ["http://irail.be/stations/NMBS/008884566", "https://tec.openplanner.team/stops/H1je213b"], ["http://irail.be/stations/NMBS/008863842", "https://tec.openplanner.team/stops/N338aib"], ["http://irail.be/stations/NMBS/008895505", "https://data.delijn.be/stops/209047"], ["https://data.delijn.be/stops/300300", "https://mivb.openplanner.team/stops/4168"], ["https://data.delijn.be/stops/400459", "https://tec.openplanner.team/stops/LEBmoul1"], ["http://irail.be/stations/NMBS/008843901", "https://tec.openplanner.team/stops/Lbrgrot2"], ["https://data.delijn.be/stops/408821", "https://tec.openplanner.team/stops/LMgbern2"], ["https://data.delijn.be/stops/302872", "https://mivb.openplanner.team/stops/2137"], ["http://irail.be/stations/NMBS/008871415", "https://tec.openplanner.team/stops/Cptsncb1"], ["https://data.delijn.be/stops/300954", "https://mivb.openplanner.team/stops/6805F"], ["http://irail.be/stations/NMBS/008861523", "https://tec.openplanner.team/stops/Bwlhppg3"], ["http://irail.be/stations/NMBS/008895620", "https://data.delijn.be/stops/306367"], ["https://data.delijn.be/stops/306159", "https://mivb.openplanner.team/stops/1339"], ["https://data.delijn.be/stops/410141", "https://tec.openplanner.team/stops/Lrctec-2"], ["https://data.delijn.be/stops/300811", "https://mivb.openplanner.team/stops/4129"], ["https://data.delijn.be/stops/305914", "https://mivb.openplanner.team/stops/1313"], ["https://data.delijn.be/stops/404652", "https://tec.openplanner.team/stops/Llabriq2"], ["https://data.delijn.be/stops/300795", "https://mivb.openplanner.team/stops/1499"], ["https://data.delijn.be/stops/308868", "https://mivb.openplanner.team/stops/1602"], ["http://irail.be/stations/NMBS/008892338", "https://data.delijn.be/stops/506505"], ["https://data.delijn.be/stops/305353", "https://tec.openplanner.team/stops/Brsregl3"], ["http://irail.be/stations/NMBS/008863438", "https://tec.openplanner.team/stops/N506bnb"], ["http://irail.be/stations/NMBS/008812252", "https://data.delijn.be/stops/304795"], ["http://irail.be/stations/NMBS/008893211", "https://data.delijn.be/stops/201452"], ["https://data.delijn.be/stops/305343", "https://tec.openplanner.team/stops/Bbgeegl2"], ["https://data.delijn.be/stops/307194", "https://tec.openplanner.team/stops/Bhalber3"], ["http://irail.be/stations/NMBS/008811445", "https://data.delijn.be/stops/302213"], ["https://data.delijn.be/stops/302812", "https://mivb.openplanner.team/stops/2029"], ["https://data.delijn.be/stops/208410", "https://tec.openplanner.team/stops/H5rx146b"], ["https://data.delijn.be/stops/305430", "https://mivb.openplanner.team/stops/1627"], ["http://irail.be/stations/NMBS/008871811", "https://tec.openplanner.team/stops/Cthnsnc"], ["http://irail.be/stations/NMBS/008869047", "https://tec.openplanner.team/stops/X615aub"], ["https://data.delijn.be/stops/302424", "https://tec.openplanner.team/stops/Bjodeco3"], ["http://irail.be/stations/NMBS/008864915", "https://tec.openplanner.team/stops/N254afa"], ["http://irail.be/stations/NMBS/008841327", "https://tec.openplanner.team/stops/LFOmc--2"], ["https://data.delijn.be/stops/303079", "https://tec.openplanner.team/stops/Bhevgro1"], ["https://data.delijn.be/stops/208192", "https://tec.openplanner.team/stops/H5rx122b"], ["http://irail.be/stations/NMBS/008821816", "https://data.delijn.be/stops/107328"], ["https://data.delijn.be/stops/301166", "https://mivb.openplanner.team/stops/2145"], ["http://irail.be/stations/NMBS/008891553", "https://data.delijn.be/stops/501533"], ["https://data.delijn.be/stops/307051", "https://mivb.openplanner.team/stops/9575"], ["https://data.delijn.be/stops/408864", "https://tec.openplanner.team/stops/LFCvoer2"], ["http://irail.be/stations/NMBS/008811759", "https://tec.openplanner.team/stops/Bpecvme2"], ["https://data.delijn.be/stops/405736", "https://tec.openplanner.team/stops/Lrcstad2"], ["https://data.delijn.be/stops/408973", "https://tec.openplanner.team/stops/LWAalou2"], ["http://irail.be/stations/NMBS/008893260", "https://data.delijn.be/stops/202027"], ["http://irail.be/stations/NMBS/008843406", "https://tec.openplanner.team/stops/LStroch2"], ["http://irail.be/stations/NMBS/008812260", "https://data.delijn.be/stops/303620"], ["https://data.delijn.be/stops/305352", "https://tec.openplanner.team/stops/Bwavbar2"], ["https://data.delijn.be/stops/306310", "https://mivb.openplanner.team/stops/5754"], ["https://data.delijn.be/stops/400664", "https://tec.openplanner.team/stops/LGAbois2"], ["http://irail.be/stations/NMBS/008864311", "https://tec.openplanner.team/stops/X991aha"], ["https://data.delijn.be/stops/408493", "https://tec.openplanner.team/stops/LWArege1"], ["https://data.delijn.be/stops/207783", "https://tec.openplanner.team/stops/H5rx150a"], ["https://data.delijn.be/stops/300781", "https://mivb.openplanner.team/stops/4601"], ["https://data.delijn.be/stops/305311", "https://mivb.openplanner.team/stops/9754B"], ["http://irail.be/stations/NMBS/008893542", "https://data.delijn.be/stops/201088"], ["https://data.delijn.be/stops/300861", "https://mivb.openplanner.team/stops/1019"], ["http://irail.be/stations/NMBS/008811148", "https://mivb.openplanner.team/stops/9756"], ["https://data.delijn.be/stops/301035", "https://mivb.openplanner.team/stops/0330342"], ["https://data.delijn.be/stops/209011", "https://tec.openplanner.team/stops/H5fl101a"], ["https://data.delijn.be/stops/401408", "https://mivb.openplanner.team/stops/0120226"], ["https://data.delijn.be/stops/208174", "https://tec.openplanner.team/stops/H5wo128a"], ["https://data.delijn.be/stops/305298", "https://tec.openplanner.team/stops/H1mk116b"], ["https://data.delijn.be/stops/300922", "https://mivb.openplanner.team/stops/3661"], ["https://data.delijn.be/stops/306969", "https://mivb.openplanner.team/stops/2810"], ["http://irail.be/stations/NMBS/008728654", "https://data.delijn.be/stops/504561"], ["http://irail.be/stations/NMBS/008814365", "https://data.delijn.be/stops/304550"], ["https://data.delijn.be/stops/301028", "https://mivb.openplanner.team/stops/5020"], ["https://data.delijn.be/stops/304580", "https://mivb.openplanner.team/stops/1901"], ["https://data.delijn.be/stops/308871", "https://tec.openplanner.team/stops/Bkrapri1"], ["https://data.delijn.be/stops/301055", "https://mivb.openplanner.team/stops/1350"], ["https://data.delijn.be/stops/300948", "https://mivb.openplanner.team/stops/1328"], ["https://data.delijn.be/stops/306284", "https://mivb.openplanner.team/stops/3199"], ["https://data.delijn.be/stops/300764", "https://mivb.openplanner.team/stops/1259"], ["https://data.delijn.be/stops/400668", "https://tec.openplanner.team/stops/LBpcren1"], ["https://data.delijn.be/stops/408831", "https://tec.openplanner.team/stops/LVImons2"], ["http://irail.be/stations/NMBS/008892106", "https://data.delijn.be/stops/202212"], ["http://irail.be/stations/NMBS/008871647", "https://tec.openplanner.team/stops/H1er109a"], ["https://data.delijn.be/stops/301025", "https://mivb.openplanner.team/stops/1169"], ["https://data.delijn.be/stops/301298", "https://mivb.openplanner.team/stops/3610F"], ["https://data.delijn.be/stops/301073", "https://mivb.openplanner.team/stops/4111"], ["https://data.delijn.be/stops/300751", "https://mivb.openplanner.team/stops/3610F"], ["https://data.delijn.be/stops/301064", "https://mivb.openplanner.team/stops/1261"], ["http://irail.be/stations/NMBS/008864006", "https://tec.openplanner.team/stops/N390aca"], ["http://irail.be/stations/NMBS/008894821", "https://data.delijn.be/stops/204446"], ["https://data.delijn.be/stops/304551", "https://mivb.openplanner.team/stops/9655"], ["https://data.delijn.be/stops/301062", "https://mivb.openplanner.team/stops/5089"], ["http://irail.be/stations/NMBS/008842002", "https://tec.openplanner.team/stops/Laggare1"], ["https://mivb.openplanner.team/stops/0702", "https://tec.openplanner.team/stops/Bbxlmid4"], ["http://irail.be/stations/NMBS/008812070", "https://data.delijn.be/stops/300223"], ["https://data.delijn.be/stops/403772", "https://tec.openplanner.team/stops/LLnlimb2"], ["http://irail.be/stations/NMBS/008861432", "https://tec.openplanner.team/stops/Bsdecdi2"], ["https://data.delijn.be/stops/408902", "https://tec.openplanner.team/stops/LFPknap2"], ["https://data.delijn.be/stops/308050", "https://tec.openplanner.team/stops/Btiegoo1"], ["https://data.delijn.be/stops/306159", "https://mivb.openplanner.team/stops/1638B"], ["https://data.delijn.be/stops/208192", "https://tec.openplanner.team/stops/H5rx130b"], ["http://irail.be/stations/NMBS/008895646", "https://data.delijn.be/stops/208588"], ["http://irail.be/stations/NMBS/008895463", "https://data.delijn.be/stops/206484"], ["https://mivb.openplanner.team/stops/2109B", "https://tec.openplanner.team/stops/Buccplj2"], ["https://data.delijn.be/stops/209186", "https://tec.openplanner.team/stops/H5rx135a"], ["https://data.delijn.be/stops/305423", "https://mivb.openplanner.team/stops/5521"], ["https://data.delijn.be/stops/304454", "https://tec.openplanner.team/stops/Brsgsan2"], ["http://irail.be/stations/NMBS/008892080", "https://data.delijn.be/stops/208957"], ["https://data.delijn.be/stops/209182", "https://tec.openplanner.team/stops/H5rx131a"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/304063"], ["http://irail.be/stations/NMBS/008831807", "https://data.delijn.be/stops/407856"], ["https://data.delijn.be/stops/303120", "https://mivb.openplanner.team/stops/3814"], ["https://data.delijn.be/stops/302402", "https://mivb.openplanner.team/stops/3613F"], ["https://data.delijn.be/stops/304020", "https://tec.openplanner.team/stops/Bovehst1"], ["http://irail.be/stations/NMBS/008893401", "https://data.delijn.be/stops/207640"], ["http://irail.be/stations/NMBS/008869088", "https://tec.openplanner.team/stops/X695aka"], ["http://irail.be/stations/NMBS/008872520", "https://tec.openplanner.team/stops/Bsamc7d2"], ["http://irail.be/stations/NMBS/008849072", "https://tec.openplanner.team/stops/X761aab"], ["https://data.delijn.be/stops/408562", "https://tec.openplanner.team/stops/LTobilz2"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2le149a"], ["https://data.delijn.be/stops/408492", "https://tec.openplanner.team/stops/LWApt--2"], ["https://data.delijn.be/stops/401409", "https://mivb.openplanner.team/stops/1113"], ["http://irail.be/stations/NMBS/008895752", "https://data.delijn.be/stops/206740"], ["https://data.delijn.be/stops/407688", "https://tec.openplanner.team/stops/LBSchpl2"], ["https://data.delijn.be/stops/302441", "https://tec.openplanner.team/stops/Bhoealt1"], ["http://irail.be/stations/NMBS/008731388", "https://tec.openplanner.team/stops/H4ry132b"], ["https://data.delijn.be/stops/300942", "https://mivb.openplanner.team/stops/3204"], ["https://data.delijn.be/stops/301004", "https://mivb.openplanner.team/stops/2898"], ["https://data.delijn.be/stops/405741", "https://tec.openplanner.team/stops/Llgcamp2"], ["https://data.delijn.be/stops/302903", "https://tec.openplanner.team/stops/Bhevhha1"], ["https://data.delijn.be/stops/400472", "https://tec.openplanner.team/stops/LBPunic2"], ["http://irail.be/stations/NMBS/008039904", "https://data.delijn.be/stops/404726"], ["http://irail.be/stations/NMBS/008200136", "https://tec.openplanner.team/stops/LwMzoll2"], ["https://mivb.openplanner.team/stops/8152", "https://tec.openplanner.team/stops/Bwolkra1"], ["https://data.delijn.be/stops/408726", "https://tec.openplanner.team/stops/LWieg--*"], ["https://data.delijn.be/stops/405342", "https://tec.openplanner.team/stops/Bneesjo1"], ["http://irail.be/stations/NMBS/008842838", "https://tec.openplanner.team/stops/LCTgare3"], ["https://data.delijn.be/stops/301924", "https://mivb.openplanner.team/stops/2017"], ["https://data.delijn.be/stops/401412", "https://mivb.openplanner.team/stops/5261"], ["http://irail.be/stations/NMBS/008843331", "https://tec.openplanner.team/stops/LAMhopi3"], ["http://irail.be/stations/NMBS/008813037", "https://mivb.openplanner.team/stops/0616"], ["http://irail.be/stations/NMBS/008811916", "https://mivb.openplanner.team/stops/2970"], ["https://data.delijn.be/stops/509236", "https://tec.openplanner.team/stops/H4co109b"], ["https://data.delijn.be/stops/303613", "https://tec.openplanner.team/stops/Bhalpar2"], ["https://data.delijn.be/stops/304547", "https://mivb.openplanner.team/stops/9685"], ["https://data.delijn.be/stops/308818", "https://mivb.openplanner.team/stops/6437F"], ["https://data.delijn.be/stops/302405", "https://mivb.openplanner.team/stops/7670108"], ["http://irail.be/stations/NMBS/008895471", "https://data.delijn.be/stops/206562"], ["https://data.delijn.be/stops/408951", "https://tec.openplanner.team/stops/LWAfabr1"], ["https://data.delijn.be/stops/401411", "https://tec.openplanner.team/stops/Bettcha1"], ["https://data.delijn.be/stops/303548", "https://mivb.openplanner.team/stops/9725"], ["https://data.delijn.be/stops/301010", "https://mivb.openplanner.team/stops/1236F"], ["https://data.delijn.be/stops/300764", "https://mivb.openplanner.team/stops/1204"], ["https://data.delijn.be/stops/307193", "https://tec.openplanner.team/stops/Bhalber2"], ["https://data.delijn.be/stops/304834", "https://mivb.openplanner.team/stops/9557"], ["https://mivb.openplanner.team/stops/1278", "https://tec.openplanner.team/stops/Bettcha1"], ["https://data.delijn.be/stops/408830", "https://tec.openplanner.team/stops/LMgbern2"], ["https://data.delijn.be/stops/300816", "https://mivb.openplanner.team/stops/4276"], ["https://data.delijn.be/stops/207773", "https://tec.openplanner.team/stops/H5rx127a"], ["https://data.delijn.be/stops/408806", "https://tec.openplanner.team/stops/LVIastr1"], ["http://irail.be/stations/NMBS/008872587", "https://tec.openplanner.team/stops/Btanpla3"], ["http://irail.be/stations/NMBS/008864410", "https://tec.openplanner.team/stops/X901ata"], ["http://irail.be/stations/NMBS/008015345", "https://data.delijn.be/stops/404726"], ["https://data.delijn.be/stops/300748", "https://mivb.openplanner.team/stops/8682"], ["https://data.delijn.be/stops/409796", "https://tec.openplanner.team/stops/LBSvi522"], ["http://irail.be/stations/NMBS/008811775", "https://data.delijn.be/stops/301681"], ["https://data.delijn.be/stops/408855", "https://tec.openplanner.team/stops/LFCkerk2"], ["https://data.delijn.be/stops/300936", "https://mivb.openplanner.team/stops/4110"], ["https://data.delijn.be/stops/306900", "https://tec.openplanner.team/stops/Bgoegma1"], ["https://data.delijn.be/stops/300995", "https://mivb.openplanner.team/stops/2250"], ["https://data.delijn.be/stops/209179", "https://tec.openplanner.team/stops/H5el100a"], ["http://irail.be/stations/NMBS/008829009", "https://data.delijn.be/stops/101778"], ["http://irail.be/stations/NMBS/008822715", "https://data.delijn.be/stops/102648"], ["https://data.delijn.be/stops/307792", "https://mivb.openplanner.team/stops/1067"], ["http://irail.be/stations/NMBS/008844230", "https://tec.openplanner.team/stops/LNEolne1"], ["http://irail.be/stations/NMBS/008863834", "https://tec.openplanner.team/stops/N217acd"], ["https://data.delijn.be/stops/300976", "https://mivb.openplanner.team/stops/3309F"], ["http://irail.be/stations/NMBS/008821030", "https://data.delijn.be/stops/103895"], ["https://data.delijn.be/stops/408587", "https://tec.openplanner.team/stops/LTymahr1"], ["http://irail.be/stations/NMBS/008865565", "https://tec.openplanner.team/stops/X850akb"], ["http://irail.be/stations/NMBS/008829009", "https://data.delijn.be/stops/104261"], ["https://data.delijn.be/stops/301316", "https://mivb.openplanner.team/stops/9802"], ["https://data.delijn.be/stops/302425", "https://tec.openplanner.team/stops/Bjodfab1"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1gh168a"], ["https://data.delijn.be/stops/308957", "https://mivb.openplanner.team/stops/3557"], ["http://irail.be/stations/NMBS/008871662", "https://tec.openplanner.team/stops/H1so132b"], ["https://mivb.openplanner.team/stops/5424", "https://tec.openplanner.team/stops/Bwbfhip1"], ["https://data.delijn.be/stops/301102", "https://mivb.openplanner.team/stops/1851"], ["http://irail.be/stations/NMBS/008812062", "https://data.delijn.be/stops/300287"], ["https://data.delijn.be/stops/408919", "https://tec.openplanner.team/stops/LTEkl121"], ["http://irail.be/stations/NMBS/008864501", "https://tec.openplanner.team/stops/N201aee"], ["https://data.delijn.be/stops/300988", "https://mivb.openplanner.team/stops/4500"], ["http://irail.be/stations/NMBS/008849064", "https://data.delijn.be/stops/408829"], ["https://data.delijn.be/stops/504323", "https://tec.openplanner.team/stops/H4mo207a"], ["https://data.delijn.be/stops/301050", "https://mivb.openplanner.team/stops/1792"], ["http://irail.be/stations/NMBS/008821154", "https://data.delijn.be/stops/105125"], ["http://irail.be/stations/NMBS/008894755", "https://data.delijn.be/stops/205498"], ["https://data.delijn.be/stops/207797", "https://tec.openplanner.team/stops/H4fa167b"], ["https://mivb.openplanner.team/stops/6931G", "https://tec.openplanner.team/stops/Buccptj1"], ["https://data.delijn.be/stops/408846", "https://tec.openplanner.team/stops/LRmsmvo4"], ["https://data.delijn.be/stops/304930", "https://mivb.openplanner.team/stops/9751"], ["https://data.delijn.be/stops/302850", "https://tec.openplanner.team/stops/Bwaakap2"], ["https://data.delijn.be/stops/300972", "https://mivb.openplanner.team/stops/3551"], ["http://irail.be/stations/NMBS/008884855", "https://tec.openplanner.team/stops/H5pe176a"], ["https://data.delijn.be/stops/408655", "https://tec.openplanner.team/stops/LTotrui2"], ["https://data.delijn.be/stops/301247", "https://tec.openplanner.team/stops/Bhalh311"], ["https://data.delijn.be/stops/407201", "https://tec.openplanner.team/stops/LWOwaer1"], ["https://data.delijn.be/stops/403701", "https://tec.openplanner.team/stops/LBGgeer2"], ["https://data.delijn.be/stops/300954", "https://mivb.openplanner.team/stops/4152"], ["https://data.delijn.be/stops/304455", "https://tec.openplanner.team/stops/Brsgsan1"], ["http://irail.be/stations/NMBS/008871514", "https://tec.openplanner.team/stops/Cfmpui82"], ["http://irail.be/stations/NMBS/008849072", "https://tec.openplanner.team/stops/X790afa"], ["http://irail.be/stations/NMBS/008894235", "https://data.delijn.be/stops/204589"], ["http://irail.be/stations/NMBS/008881406", "https://tec.openplanner.team/stops/H1ob335b"], ["https://data.delijn.be/stops/308676", "https://mivb.openplanner.team/stops/0526"], ["https://data.delijn.be/stops/306899", "https://tec.openplanner.team/stops/Bgoestu1"], ["https://data.delijn.be/stops/302448", "https://tec.openplanner.team/stops/Bzluegl2"], ["https://data.delijn.be/stops/304440", "https://tec.openplanner.team/stops/Brsgfon2"], ["http://irail.be/stations/NMBS/008821964", "https://data.delijn.be/stops/109158"], ["http://irail.be/stations/NMBS/008891314", "https://data.delijn.be/stops/507489"], ["http://irail.be/stations/NMBS/008832458", "https://data.delijn.be/stops/109260"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1ne140a"], ["https://data.delijn.be/stops/305165", "https://mivb.openplanner.team/stops/0900168"], ["http://irail.be/stations/NMBS/008861168", "https://tec.openplanner.team/stops/N534aea"], ["https://data.delijn.be/stops/405731", "https://tec.openplanner.team/stops/Lrcpaqu1"], ["https://data.delijn.be/stops/302404", "https://mivb.openplanner.team/stops/3609F"], ["https://mivb.openplanner.team/stops/2762", "https://tec.openplanner.team/stops/Buccvch2"], ["https://data.delijn.be/stops/300937", "https://mivb.openplanner.team/stops/4153"], ["https://data.delijn.be/stops/408865", "https://tec.openplanner.team/stops/LFCvoer1"], ["http://irail.be/stations/NMBS/008811601", "https://tec.openplanner.team/stops/Blimegl2"], ["https://data.delijn.be/stops/208181", "https://tec.openplanner.team/stops/H5rx131b"], ["https://data.delijn.be/stops/305891", "https://mivb.openplanner.team/stops/9626"], ["http://irail.be/stations/NMBS/008821246", "https://data.delijn.be/stops/107236"], ["http://irail.be/stations/NMBS/008895612", "https://data.delijn.be/stops/208611"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Cthrlef1"], ["http://irail.be/stations/NMBS/008200100", "https://tec.openplanner.team/stops/X685aib"], ["https://data.delijn.be/stops/300856", "https://mivb.openplanner.team/stops/0531"], ["http://irail.be/stations/NMBS/008821089", "https://data.delijn.be/stops/107600"], ["https://mivb.openplanner.team/stops/5458", "https://tec.openplanner.team/stops/Bixlozo2"], ["https://data.delijn.be/stops/404663", "https://tec.openplanner.team/stops/LPAchpl1"], ["https://mivb.openplanner.team/stops/2137", "https://tec.openplanner.team/stops/Buccrac1"], ["https://data.delijn.be/stops/300973", "https://mivb.openplanner.team/stops/1756B"], ["https://data.delijn.be/stops/307089", "https://tec.openplanner.team/stops/Brsg7fo1"], ["http://irail.be/stations/NMBS/008811742", "https://tec.openplanner.team/stops/Bgzdgst1"], ["http://irail.be/stations/NMBS/008811437", "https://mivb.openplanner.team/stops/5453"], ["https://data.delijn.be/stops/308854", "https://mivb.openplanner.team/stops/2871"], ["https://data.delijn.be/stops/303994", "https://tec.openplanner.team/stops/Bbldmun1"], ["https://data.delijn.be/stops/301956", "https://mivb.openplanner.team/stops/6484B"], ["http://irail.be/stations/NMBS/008895091", "https://data.delijn.be/stops/207684"], ["http://irail.be/stations/NMBS/008812161", "https://data.delijn.be/stops/207348"], ["http://irail.be/stations/NMBS/008849064", "https://tec.openplanner.team/stops/LLxconj1"], ["http://irail.be/stations/NMBS/008814126", "https://mivb.openplanner.team/stops/1258G"], ["https://data.delijn.be/stops/301019", "https://mivb.openplanner.team/stops/4002G"], ["https://data.delijn.be/stops/404654", "https://tec.openplanner.team/stops/LJU51--1"], ["https://data.delijn.be/stops/208180", "https://tec.openplanner.team/stops/H5el102b"], ["https://data.delijn.be/stops/302439", "https://tec.openplanner.team/stops/Bzlucam1"], ["https://data.delijn.be/stops/302479", "https://mivb.openplanner.team/stops/1570"], ["http://irail.be/stations/NMBS/008821022", "https://data.delijn.be/stops/102060"], ["https://data.delijn.be/stops/305145", "https://tec.openplanner.team/stops/H1mk108a"], ["https://data.delijn.be/stops/304441", "https://tec.openplanner.team/stops/Brsggde1"], ["http://irail.be/stations/NMBS/008728710", "https://tec.openplanner.team/stops/H4lg106a"], ["http://irail.be/stations/NMBS/008821121", "https://data.delijn.be/stops/102884"], ["https://data.delijn.be/stops/405700", "https://tec.openplanner.team/stops/Llghugo2"], ["https://data.delijn.be/stops/400675", "https://tec.openplanner.team/stops/Blanmde1"], ["http://irail.be/stations/NMBS/008829009", "https://data.delijn.be/stops/102323"], ["https://data.delijn.be/stops/307831", "https://mivb.openplanner.team/stops/9557"], ["https://data.delijn.be/stops/407648", "https://tec.openplanner.team/stops/LBPmais2"], ["https://data.delijn.be/stops/509238", "https://tec.openplanner.team/stops/H4co144a"], ["https://data.delijn.be/stops/401410", "https://mivb.openplanner.team/stops/0820270"], ["https://data.delijn.be/stops/305918", "https://mivb.openplanner.team/stops/1195"], ["http://irail.be/stations/NMBS/008895638", "https://data.delijn.be/stops/307302"], ["https://data.delijn.be/stops/304687", "https://tec.openplanner.team/stops/Bhalalb2"], ["https://data.delijn.be/stops/307640", "https://mivb.openplanner.team/stops/1939"], ["https://data.delijn.be/stops/307698", "https://tec.openplanner.team/stops/Brsgcfl2"], ["http://irail.be/stations/NMBS/008871712", "https://tec.openplanner.team/stops/H1bi103b"], ["http://irail.be/stations/NMBS/008885530", "https://tec.openplanner.team/stops/H4my122b"], ["https://data.delijn.be/stops/302415", "https://tec.openplanner.team/stops/Bjodcad2"], ["https://data.delijn.be/stops/301067", "https://mivb.openplanner.team/stops/3225"], ["https://data.delijn.be/stops/301690", "https://tec.openplanner.team/stops/Bnetvan1"], ["http://irail.be/stations/NMBS/008894433", "https://data.delijn.be/stops/204098"], ["https://data.delijn.be/stops/408779", "https://tec.openplanner.team/stops/LOdcris1"], ["https://data.delijn.be/stops/305340", "https://tec.openplanner.team/stops/Bwavtrt2"], ["https://data.delijn.be/stops/404665", "https://tec.openplanner.team/stops/LPAmosa1"], ["http://irail.be/stations/NMBS/008812013", "https://mivb.openplanner.team/stops/0470651"], ["https://mivb.openplanner.team/stops/5823", "https://tec.openplanner.team/stops/Bucccre1"], ["http://irail.be/stations/NMBS/008833449", "https://tec.openplanner.team/stops/Bezegar2"], ["http://irail.be/stations/NMBS/008871183", "https://tec.openplanner.team/stops/Chhverr2"], ["https://data.delijn.be/stops/207778", "https://tec.openplanner.team/stops/H5rx101a"], ["http://irail.be/stations/NMBS/008869047", "https://tec.openplanner.team/stops/X615bia"], ["https://data.delijn.be/stops/409000", "https://tec.openplanner.team/stops/LWAclos2"], ["https://data.delijn.be/stops/302795", "https://mivb.openplanner.team/stops/2017"], ["https://data.delijn.be/stops/307878", "https://mivb.openplanner.team/stops/1552"], ["http://irail.be/stations/NMBS/008821337", "https://data.delijn.be/stops/107236"], ["https://data.delijn.be/stops/300956", "https://mivb.openplanner.team/stops/5283F"], ["https://data.delijn.be/stops/408903", "https://tec.openplanner.team/stops/LFPknap1"], ["https://data.delijn.be/stops/303224", "https://mivb.openplanner.team/stops/3851"], ["http://irail.be/stations/NMBS/008894425", "https://data.delijn.be/stops/205226"], ["https://data.delijn.be/stops/301063", "https://mivb.openplanner.team/stops/4600"], ["http://irail.be/stations/NMBS/008885068", "https://tec.openplanner.team/stops/H4fr142a"], ["https://data.delijn.be/stops/303226", "https://mivb.openplanner.team/stops/5963"], ["http://irail.be/stations/NMBS/008849072", "https://tec.openplanner.team/stops/X793acb"], ["http://irail.be/stations/NMBS/008722326", "https://data.delijn.be/stops/505362"], ["http://irail.be/stations/NMBS/008814449", "https://mivb.openplanner.team/stops/2108"], ["https://data.delijn.be/stops/509385", "https://tec.openplanner.team/stops/H4pl137a"], ["https://data.delijn.be/stops/301052", "https://mivb.openplanner.team/stops/5013F"], ["https://data.delijn.be/stops/504534", "https://tec.openplanner.team/stops/H4pl121a"], ["http://irail.be/stations/NMBS/008871100", "https://tec.openplanner.team/stops/Cmamons2"], ["http://irail.be/stations/NMBS/008895570", "https://data.delijn.be/stops/217004"], ["https://data.delijn.be/stops/300756", "https://mivb.openplanner.team/stops/3856"], ["https://data.delijn.be/stops/405347", "https://tec.openplanner.team/stops/Bezegar2"], ["https://data.delijn.be/stops/407230", "https://tec.openplanner.team/stops/LORvill3"], ["http://irail.be/stations/NMBS/008200130", "https://tec.openplanner.team/stops/X663aca"], ["http://irail.be/stations/NMBS/008896388", "https://data.delijn.be/stops/508069"], ["https://data.delijn.be/stops/407491", "https://tec.openplanner.team/stops/LToluik1"], ["https://data.delijn.be/stops/409797", "https://tec.openplanner.team/stops/LBSchpl2"], ["http://irail.be/stations/NMBS/008728686", "https://tec.openplanner.team/stops/H4ne139b"], ["http://irail.be/stations/NMBS/008895000", "https://data.delijn.be/stops/204973"], ["http://irail.be/stations/NMBS/008879004", "https://tec.openplanner.team/stops/Ceqmeti1"], ["http://irail.be/stations/NMBS/008896735", "https://data.delijn.be/stops/504427"], ["http://irail.be/stations/NMBS/008843067", "https://tec.openplanner.team/stops/Lsemara2"], ["http://irail.be/stations/NMBS/008896388", "https://data.delijn.be/stops/503074"], ["http://irail.be/stations/NMBS/008812047", "https://data.delijn.be/stops/308856"], ["https://data.delijn.be/stops/408800", "https://tec.openplanner.team/stops/LVIsacr1"], ["https://mivb.openplanner.team/stops/1715", "https://tec.openplanner.team/stops/Bettars2"], ["http://irail.be/stations/NMBS/008872413", "https://tec.openplanner.team/stops/Cflchap2"], ["https://data.delijn.be/stops/304720", "https://mivb.openplanner.team/stops/3203"], ["https://data.delijn.be/stops/305356", "https://tec.openplanner.team/stops/Bbgepau1"], ["https://data.delijn.be/stops/305448", "https://mivb.openplanner.team/stops/0430948"], ["https://mivb.openplanner.team/stops/8352", "https://tec.openplanner.team/stops/Bbxlmid1"], ["http://irail.be/stations/NMBS/008842630", "https://tec.openplanner.team/stops/LTIpora1"], ["https://data.delijn.be/stops/400682", "https://tec.openplanner.team/stops/LHgpost1"], ["https://data.delijn.be/stops/305890", "https://mivb.openplanner.team/stops/9634"], ["https://data.delijn.be/stops/400471", "https://tec.openplanner.team/stops/LEMfort2"], ["http://irail.be/stations/NMBS/008821022", "https://data.delijn.be/stops/101992"], ["http://irail.be/stations/NMBS/008895646", "https://data.delijn.be/stops/302135"], ["https://data.delijn.be/stops/300919", "https://mivb.openplanner.team/stops/3317"], ["http://irail.be/stations/NMBS/008844339", "https://tec.openplanner.team/stops/Lpevove2"], ["https://data.delijn.be/stops/408991", "https://tec.openplanner.team/stops/LWAlieg1"], ["http://irail.be/stations/NMBS/008871415", "https://tec.openplanner.team/stops/Cfosurs2"], ["https://data.delijn.be/stops/300319", "https://tec.openplanner.team/stops/Bbeagae1"], ["http://irail.be/stations/NMBS/008895711", "https://data.delijn.be/stops/206798"], ["https://data.delijn.be/stops/208764", "https://tec.openplanner.team/stops/H5rx113a"], ["http://irail.be/stations/NMBS/008844321", "https://tec.openplanner.team/stops/LTHcent1"], ["https://data.delijn.be/stops/400483", "https://tec.openplanner.team/stops/LRGeg--1"], ["https://mivb.openplanner.team/stops/1971", "https://tec.openplanner.team/stops/Buccgob1"], ["https://data.delijn.be/stops/303668", "https://mivb.openplanner.team/stops/1743"], ["https://mivb.openplanner.team/stops/1159", "https://tec.openplanner.team/stops/Bettlha1"], ["https://data.delijn.be/stops/302812", "https://mivb.openplanner.team/stops/2078"], ["https://data.delijn.be/stops/408856", "https://tec.openplanner.team/stops/LFClage1"], ["http://irail.be/stations/NMBS/008896412", "https://tec.openplanner.team/stops/H4co110a"], ["https://data.delijn.be/stops/300851", "https://mivb.openplanner.team/stops/6608G"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N349aba"], ["https://data.delijn.be/stops/301025", "https://mivb.openplanner.team/stops/0340241"], ["https://mivb.openplanner.team/stops/1762", "https://tec.openplanner.team/stops/Bettbue1"], ["https://data.delijn.be/stops/308730", "https://tec.openplanner.team/stops/Bgoemgr1"], ["http://irail.be/stations/NMBS/008821857", "https://data.delijn.be/stops/108053"], ["https://data.delijn.be/stops/301926", "https://mivb.openplanner.team/stops/9851"], ["https://data.delijn.be/stops/307030", "https://tec.openplanner.team/stops/Balswwe1"], ["https://data.delijn.be/stops/208767", "https://tec.openplanner.team/stops/H5rx103b"], ["http://irail.be/stations/NMBS/008822475", "https://data.delijn.be/stops/300646"], ["http://irail.be/stations/NMBS/008844313", "https://tec.openplanner.team/stops/Lpemata1"], ["https://data.delijn.be/stops/300949", "https://mivb.openplanner.team/stops/4071"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/503466"], ["https://data.delijn.be/stops/302836", "https://tec.openplanner.team/stops/LLaover4"], ["https://data.delijn.be/stops/303960", "https://tec.openplanner.team/stops/Bhevwzw2"], ["https://data.delijn.be/stops/408600", "https://tec.openplanner.team/stops/LTowijk1"], ["https://data.delijn.be/stops/306176", "https://tec.openplanner.team/stops/Bkrabhu1"], ["http://irail.be/stations/NMBS/008812211", "https://mivb.openplanner.team/stops/4273F"], ["https://data.delijn.be/stops/404664", "https://tec.openplanner.team/stops/LPAvill1"], ["http://irail.be/stations/NMBS/008811510", "https://tec.openplanner.team/stops/Blhuone1"], ["http://irail.be/stations/NMBS/008891033", "https://data.delijn.be/stops/507140"], ["https://data.delijn.be/stops/304719", "https://mivb.openplanner.team/stops/1315"], ["http://irail.be/stations/NMBS/008812021", "https://mivb.openplanner.team/stops/4132B"], ["https://data.delijn.be/stops/305198", "https://tec.openplanner.team/stops/Btiegar1"], ["https://data.delijn.be/stops/400452", "https://tec.openplanner.team/stops/LRGile-1"], ["http://irail.be/stations/NMBS/008200510", "https://tec.openplanner.team/stops/X684abb"], ["http://irail.be/stations/NMBS/008895620", "https://data.delijn.be/stops/206800"], ["https://data.delijn.be/stops/301129", "https://mivb.openplanner.team/stops/2142"], ["http://irail.be/stations/NMBS/008894151", "https://data.delijn.be/stops/202155"], ["http://irail.be/stations/NMBS/008864345", "https://tec.openplanner.team/stops/X902afc"], ["http://irail.be/stations/NMBS/008833134", "https://data.delijn.be/stops/303977"], ["http://irail.be/stations/NMBS/008843133", "https://tec.openplanner.team/stops/Lscpamp2"], ["https://data.delijn.be/stops/300887", "https://mivb.openplanner.team/stops/4268"], ["http://irail.be/stations/NMBS/008814464", "https://tec.openplanner.team/stops/Buccham1"], ["http://irail.be/stations/NMBS/008893062", "https://data.delijn.be/stops/200605"], ["https://data.delijn.be/stops/408867", "https://tec.openplanner.team/stops/LFCvoge3"], ["https://data.delijn.be/stops/408839", "https://tec.openplanner.team/stops/LRmkerk2"], ["https://data.delijn.be/stops/302423", "https://tec.openplanner.team/stops/Bjodcsb2"], ["http://irail.be/stations/NMBS/008842689", "https://tec.openplanner.team/stops/LPOpass1"], ["https://mivb.openplanner.team/stops/5817F", "https://tec.openplanner.team/stops/Bucccal3"], ["https://data.delijn.be/stops/408827", "https://tec.openplanner.team/stops/LMgkrui1"], ["https://data.delijn.be/stops/305424", "https://mivb.openplanner.team/stops/5520F"], ["http://irail.be/stations/NMBS/008821709", "https://data.delijn.be/stops/102613"], ["https://mivb.openplanner.team/stops/5530", "https://tec.openplanner.team/stops/Bwolkra2"], ["https://data.delijn.be/stops/301400", "https://mivb.openplanner.team/stops/2659"], ["https://data.delijn.be/stops/300876", "https://mivb.openplanner.team/stops/4277"], ["https://data.delijn.be/stops/408912", "https://tec.openplanner.team/stops/LVukabi2"], ["http://irail.be/stations/NMBS/008893708", "https://data.delijn.be/stops/202686"], ["http://irail.be/stations/NMBS/008811544", "https://tec.openplanner.team/stops/Blimrof1"], ["https://data.delijn.be/stops/305908", "https://mivb.openplanner.team/stops/9605"], ["https://data.delijn.be/stops/306066", "https://tec.openplanner.team/stops/Blemsta2"], ["https://data.delijn.be/stops/303554", "https://mivb.openplanner.team/stops/3201"], ["https://data.delijn.be/stops/333233", "https://mivb.openplanner.team/stops/7830352"], ["https://data.delijn.be/stops/408882", "https://tec.openplanner.team/stops/LFCkett2"], ["https://data.delijn.be/stops/509239", "https://tec.openplanner.team/stops/H4co144b"], ["https://data.delijn.be/stops/303632", "https://mivb.openplanner.team/stops/2262"], ["http://irail.be/stations/NMBS/008811130", "https://mivb.openplanner.team/stops/2294B"], ["https://mivb.openplanner.team/stops/1962F", "https://tec.openplanner.team/stops/Bucccal4"], ["https://data.delijn.be/stops/301041", "https://mivb.openplanner.team/stops/4212B"], ["https://data.delijn.be/stops/410355", "https://tec.openplanner.team/stops/Llgcadr6"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bsmgpon1"], ["http://irail.be/stations/NMBS/008895489", "https://data.delijn.be/stops/206556"], ["http://irail.be/stations/NMBS/008821816", "https://data.delijn.be/stops/104752"], ["http://irail.be/stations/NMBS/008893062", "https://data.delijn.be/stops/202860"], ["http://irail.be/stations/NMBS/008842002", "https://tec.openplanner.team/stops/Lagjado6"], ["https://data.delijn.be/stops/300762", "https://mivb.openplanner.team/stops/8642"], ["https://data.delijn.be/stops/407581", "https://tec.openplanner.team/stops/LDpulve2"], ["https://data.delijn.be/stops/208757", "https://tec.openplanner.team/stops/H5rx101b"], ["https://data.delijn.be/stops/307682", "https://mivb.openplanner.team/stops/5921G"], ["http://irail.be/stations/NMBS/008844404", "https://tec.openplanner.team/stops/LSPclai2"], ["https://data.delijn.be/stops/408960", "https://tec.openplanner.team/stops/LWAmouh1"], ["https://data.delijn.be/stops/303585", "https://mivb.openplanner.team/stops/9726"], ["https://data.delijn.be/stops/301155", "https://mivb.openplanner.team/stops/2118"], ["https://data.delijn.be/stops/400491", "https://tec.openplanner.team/stops/LBSneuv1"], ["https://data.delijn.be/stops/401417", "https://mivb.openplanner.team/stops/2283"], ["https://data.delijn.be/stops/405346", "https://tec.openplanner.team/stops/Bezegar2"], ["http://irail.be/stations/NMBS/008895612", "https://data.delijn.be/stops/209611"], ["http://irail.be/stations/NMBS/008892601", "https://data.delijn.be/stops/208243"], ["http://irail.be/stations/NMBS/008824232", "https://data.delijn.be/stops/104458"], ["https://data.delijn.be/stops/504236", "https://tec.openplanner.team/stops/H4co109b"], ["https://data.delijn.be/stops/400477", "https://tec.openplanner.team/stops/LBPmili2"], ["http://irail.be/stations/NMBS/008895489", "https://data.delijn.be/stops/206927"], ["https://mivb.openplanner.team/stops/2291B", "https://tec.openplanner.team/stops/Baudsju1"], ["https://data.delijn.be/stops/302876", "https://mivb.openplanner.team/stops/2718"], ["https://data.delijn.be/stops/408896", "https://tec.openplanner.team/stops/LFPgeme2"], ["http://irail.be/stations/NMBS/008883238", "https://tec.openplanner.team/stops/H2fa112a"], ["https://data.delijn.be/stops/401401", "https://mivb.openplanner.team/stops/3276"], ["https://data.delijn.be/stops/405705", "https://tec.openplanner.team/stops/LlgLAMB7"], ["https://data.delijn.be/stops/304088", "https://tec.openplanner.team/stops/Bovesog1"], ["https://data.delijn.be/stops/306313", "https://mivb.openplanner.team/stops/5822F"], ["https://data.delijn.be/stops/301048", "https://mivb.openplanner.team/stops/2536"], ["https://data.delijn.be/stops/404669", "https://tec.openplanner.team/stops/LVSpota2"], ["https://data.delijn.be/stops/302443", "https://tec.openplanner.team/stops/Bzlucam1"], ["https://mivb.openplanner.team/stops/4854C", "https://tec.openplanner.team/stops/Buccobs1"], ["https://data.delijn.be/stops/300744", "https://mivb.openplanner.team/stops/2220"], ["http://irail.be/stations/NMBS/008814167", "https://data.delijn.be/stops/304462"], ["https://data.delijn.be/stops/208408", "https://tec.openplanner.team/stops/H5rx139a"], ["https://data.delijn.be/stops/300905", "https://mivb.openplanner.team/stops/2960F"], ["https://data.delijn.be/stops/306396", "https://mivb.openplanner.team/stops/9728"], ["https://data.delijn.be/stops/305280", "https://mivb.openplanner.team/stops/9754B"], ["https://data.delijn.be/stops/303223", "https://mivb.openplanner.team/stops/3850"], ["http://irail.be/stations/NMBS/008883022", "https://tec.openplanner.team/stops/Bquecge1"], ["https://data.delijn.be/stops/404675", "https://tec.openplanner.team/stops/LVSpota1"], ["http://irail.be/stations/NMBS/008882206", "https://tec.openplanner.team/stops/H2ll197a"], ["https://data.delijn.be/stops/400473", "https://tec.openplanner.team/stops/LGLc12-3"], ["https://data.delijn.be/stops/304535", "https://mivb.openplanner.team/stops/1859"], ["https://data.delijn.be/stops/408493", "https://tec.openplanner.team/stops/LWAvand1"], ["https://data.delijn.be/stops/307638", "https://mivb.openplanner.team/stops/1958B"], ["https://data.delijn.be/stops/301003", "https://mivb.openplanner.team/stops/5865"], ["https://data.delijn.be/stops/509003", "https://tec.openplanner.team/stops/H4mo133b"], ["https://mivb.openplanner.team/stops/8051", "https://tec.openplanner.team/stops/Bbxltou1"], ["https://data.delijn.be/stops/405440", "https://tec.openplanner.team/stops/LWHtrui1"], ["https://mivb.openplanner.team/stops/0230134", "https://tec.openplanner.team/stops/Bauddel2"], ["https://data.delijn.be/stops/305349", "https://tec.openplanner.team/stops/Bbgerlr1"], ["https://data.delijn.be/stops/508679", "https://tec.openplanner.team/stops/H4ae101a"], ["http://irail.be/stations/NMBS/008895505", "https://data.delijn.be/stops/209489"], ["https://data.delijn.be/stops/509382", "https://tec.openplanner.team/stops/H4pl121b"], ["https://data.delijn.be/stops/301004", "https://mivb.openplanner.team/stops/3166"], ["https://data.delijn.be/stops/304453", "https://tec.openplanner.team/stops/Brsgrol1"], ["http://irail.be/stations/NMBS/008874559", "https://tec.openplanner.team/stops/Cfamonu4"], ["https://mivb.openplanner.team/stops/1805", "https://tec.openplanner.team/stops/Bettcha1"], ["https://data.delijn.be/stops/307211", "https://tec.openplanner.team/stops/Bbchgod1"], ["https://data.delijn.be/stops/408875", "https://tec.openplanner.team/stops/LFMkrin2"], ["https://data.delijn.be/stops/300775", "https://mivb.openplanner.team/stops/7710204"], ["http://irail.be/stations/NMBS/008886561", "https://tec.openplanner.team/stops/H1le125b"], ["https://data.delijn.be/stops/505992", "https://tec.openplanner.team/stops/H4ar100a"], ["https://data.delijn.be/stops/410142", "https://tec.openplanner.team/stops/Lanc14v1"], ["http://irail.be/stations/NMBS/008811510", "https://data.delijn.be/stops/302928"], ["http://irail.be/stations/NMBS/008871670", "https://tec.openplanner.team/stops/H1ls108a"], ["https://data.delijn.be/stops/305174", "https://tec.openplanner.team/stops/Bwavgar1"], ["http://irail.be/stations/NMBS/008824232", "https://data.delijn.be/stops/105979"], ["https://data.delijn.be/stops/306897", "https://tec.openplanner.team/stops/Bgoewat2"], ["https://data.delijn.be/stops/304720", "https://mivb.openplanner.team/stops/3321"], ["https://data.delijn.be/stops/307553", "https://tec.openplanner.team/stops/Bstecal2"], ["https://data.delijn.be/stops/300936", "https://mivb.openplanner.team/stops/4063"], ["https://data.delijn.be/stops/306814", "https://mivb.openplanner.team/stops/1510"], ["https://mivb.openplanner.team/stops/5413F", "https://tec.openplanner.team/stops/Bixlozo1"], ["http://irail.be/stations/NMBS/008865227", "https://tec.openplanner.team/stops/X898aca"], ["https://data.delijn.be/stops/209820", "https://tec.openplanner.team/stops/H5rx129b"], ["http://irail.be/stations/NMBS/008895745", "https://data.delijn.be/stops/206729"], ["https://data.delijn.be/stops/300927", "https://mivb.openplanner.team/stops/3961"], ["https://data.delijn.be/stops/301017", "https://mivb.openplanner.team/stops/1308G"], ["https://data.delijn.be/stops/304660", "https://mivb.openplanner.team/stops/5963"], ["http://irail.be/stations/NMBS/008872553", "https://tec.openplanner.team/stops/Btilmar1"], ["https://data.delijn.be/stops/301053", "https://mivb.openplanner.team/stops/4213"], ["https://data.delijn.be/stops/303670", "https://mivb.openplanner.team/stops/1732"], ["https://data.delijn.be/stops/408506", "https://tec.openplanner.team/stops/LTobilz1"], ["https://data.delijn.be/stops/301042", "https://mivb.openplanner.team/stops/3226F"], ["http://irail.be/stations/NMBS/008884327", "https://tec.openplanner.team/stops/H1bo109a"], ["http://irail.be/stations/NMBS/008889045", "https://tec.openplanner.team/stops/H4te253a"], ["https://data.delijn.be/stops/301015", "https://mivb.openplanner.team/stops/4163"], ["http://irail.be/stations/NMBS/008811130", "https://mivb.openplanner.team/stops/2988"], ["https://data.delijn.be/stops/301168", "https://mivb.openplanner.team/stops/5916"], ["https://data.delijn.be/stops/408846", "https://tec.openplanner.team/stops/LRmsmvo3"], ["https://data.delijn.be/stops/307051", "https://mivb.openplanner.team/stops/9553"], ["https://data.delijn.be/stops/504304", "https://tec.openplanner.team/stops/H4ar102b"], ["http://irail.be/stations/NMBS/008861168", "https://tec.openplanner.team/stops/N534bpa"], ["http://irail.be/stations/NMBS/008884855", "https://tec.openplanner.team/stops/H5pe126a"], ["https://data.delijn.be/stops/300904", "https://tec.openplanner.team/stops/Bixllep1"], ["https://data.delijn.be/stops/300315", "https://tec.openplanner.team/stops/Bbsggot1"], ["https://data.delijn.be/stops/307557", "https://tec.openplanner.team/stops/Bstemco2"], ["http://irail.be/stations/NMBS/008886546", "https://data.delijn.be/stops/208543"], ["https://data.delijn.be/stops/306159", "https://mivb.openplanner.team/stops/8151"], ["https://data.delijn.be/stops/304462", "https://tec.openplanner.team/stops/Brsgtou1"], ["https://data.delijn.be/stops/410319", "https://tec.openplanner.team/stops/LPlpomp2"], ["http://irail.be/stations/NMBS/008822533", "https://data.delijn.be/stops/301861"], ["https://data.delijn.be/stops/300969", "https://tec.openplanner.team/stops/Baudsta2"], ["https://data.delijn.be/stops/305344", "https://tec.openplanner.team/stops/Bbgeegl2"], ["http://irail.be/stations/NMBS/008865128", "https://tec.openplanner.team/stops/X725aza"], ["http://irail.be/stations/NMBS/008832227", "https://data.delijn.be/stops/401961"], ["https://mivb.openplanner.team/stops/1943", "https://tec.openplanner.team/stops/Buccdst1"], ["https://data.delijn.be/stops/301304", "https://mivb.openplanner.team/stops/4599"], ["https://data.delijn.be/stops/301414", "https://tec.openplanner.team/stops/Bengvma1"], ["https://data.delijn.be/stops/307922", "https://mivb.openplanner.team/stops/2874"], ["https://mivb.openplanner.team/stops/5031F", "https://tec.openplanner.team/stops/Buccplj2"], ["https://data.delijn.be/stops/305271", "https://mivb.openplanner.team/stops/9786"], ["https://data.delijn.be/stops/308124", "https://tec.openplanner.team/stops/Boplsma4"], ["https://data.delijn.be/stops/306115", "https://mivb.openplanner.team/stops/2218"], ["https://data.delijn.be/stops/305424", "https://mivb.openplanner.team/stops/9169"], ["http://irail.be/stations/NMBS/008821824", "https://data.delijn.be/stops/108154"], ["http://irail.be/stations/NMBS/008833209", "https://data.delijn.be/stops/300069"], ["http://irail.be/stations/NMBS/008893252", "https://data.delijn.be/stops/211854"], ["https://data.delijn.be/stops/207792", "https://tec.openplanner.team/stops/H5rx106a"], ["https://data.delijn.be/stops/305237", "https://tec.openplanner.team/stops/H1mk109b"], ["https://data.delijn.be/stops/304860", "https://tec.openplanner.team/stops/Bbrlvil1"], ["https://data.delijn.be/stops/305354", "https://tec.openplanner.team/stops/Bovetsa1"], ["https://data.delijn.be/stops/306813", "https://mivb.openplanner.team/stops/3219"], ["https://data.delijn.be/stops/305429", "https://mivb.openplanner.team/stops/1631"], ["http://irail.be/stations/NMBS/008893559", "https://data.delijn.be/stops/203478"], ["https://data.delijn.be/stops/406276", "https://tec.openplanner.team/stops/LMastat4"], ["http://irail.be/stations/NMBS/008841442", "https://tec.openplanner.team/stops/LLirout2"], ["http://irail.be/stations/NMBS/008864931", "https://tec.openplanner.team/stops/N563ana"], ["https://data.delijn.be/stops/300335", "https://tec.openplanner.team/stops/Balsnie2"], ["http://irail.be/stations/NMBS/008814373", "https://mivb.openplanner.team/stops/3814"], ["https://data.delijn.be/stops/305339", "https://tec.openplanner.team/stops/Bovetsa2"], ["https://data.delijn.be/stops/307964", "https://tec.openplanner.team/stops/Bwavnep2"], ["https://data.delijn.be/stops/304642", "https://mivb.openplanner.team/stops/1368"], ["https://data.delijn.be/stops/305299", "https://tec.openplanner.team/stops/Bspkkhe2"], ["https://data.delijn.be/stops/401922", "https://tec.openplanner.team/stops/LORec--*"], ["http://irail.be/stations/NMBS/008824224", "https://data.delijn.be/stops/101088"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LMalarg4"], ["http://irail.be/stations/NMBS/008845203", "https://tec.openplanner.team/stops/LTPbeau2"], ["http://irail.be/stations/NMBS/008889011", "https://tec.openplanner.team/stops/H4rx143a"], ["https://data.delijn.be/stops/403785", "https://tec.openplanner.team/stops/LWAperv1"], ["https://data.delijn.be/stops/405734", "https://tec.openplanner.team/stops/Lrccomm2"], ["https://data.delijn.be/stops/408956", "https://tec.openplanner.team/stops/LWAmouh2"], ["https://data.delijn.be/stops/301301", "https://mivb.openplanner.team/stops/1486B"], ["http://irail.be/stations/NMBS/008814126", "https://mivb.openplanner.team/stops/5721"], ["https://data.delijn.be/stops/300764", "https://mivb.openplanner.team/stops/1489"], ["https://data.delijn.be/stops/504295", "https://tec.openplanner.team/stops/H4mo193a"], ["http://irail.be/stations/NMBS/008822517", "https://data.delijn.be/stops/301850"], ["https://data.delijn.be/stops/300790", "https://mivb.openplanner.team/stops/1208"], ["https://data.delijn.be/stops/307646", "https://mivb.openplanner.team/stops/1953"], ["https://data.delijn.be/stops/301676", "https://tec.openplanner.team/stops/Bbbksth1"], ["https://data.delijn.be/stops/504307", "https://tec.openplanner.team/stops/H4mo147a"], ["http://irail.be/stations/NMBS/008831138", "https://data.delijn.be/stops/400862"], ["https://data.delijn.be/stops/218014", "https://tec.openplanner.team/stops/H5rx106b"], ["https://data.delijn.be/stops/410133", "https://tec.openplanner.team/stops/LJUmc--1"], ["https://data.delijn.be/stops/402022", "https://tec.openplanner.team/stops/LVu03--1"], ["https://data.delijn.be/stops/301049", "https://mivb.openplanner.team/stops/4600"], ["https://data.delijn.be/stops/408913", "https://tec.openplanner.team/stops/LVu40--1"], ["http://irail.be/stations/NMBS/008872587", "https://tec.openplanner.team/stops/Bsmgmas2"], ["https://data.delijn.be/stops/503772", "https://tec.openplanner.team/stops/H4eh100a"], ["https://data.delijn.be/stops/300884", "https://mivb.openplanner.team/stops/7830152"], ["https://data.delijn.be/stops/407648", "https://tec.openplanner.team/stops/LBPauto1"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N534bqb"], ["http://irail.be/stations/NMBS/008814431", "https://mivb.openplanner.team/stops/1957B"], ["https://data.delijn.be/stops/407206", "https://tec.openplanner.team/stops/LHTmoul2"], ["http://irail.be/stations/NMBS/008821337", "https://data.delijn.be/stops/106598"], ["https://data.delijn.be/stops/208410", "https://tec.openplanner.team/stops/H5rx146a"], ["http://irail.be/stations/NMBS/008832565", "https://data.delijn.be/stops/405748"], ["http://irail.be/stations/NMBS/008833126", "https://data.delijn.be/stops/302925"], ["https://data.delijn.be/stops/305502", "https://mivb.openplanner.team/stops/2015"], ["http://irail.be/stations/NMBS/008871605", "https://tec.openplanner.team/stops/H1er113a"], ["https://data.delijn.be/stops/304209", "https://tec.openplanner.team/stops/Brsrmon1"], ["https://data.delijn.be/stops/302892", "https://tec.openplanner.team/stops/Bhevl3l2"], ["https://data.delijn.be/stops/302411", "https://tec.openplanner.team/stops/Bmlngvi2"], ["https://mivb.openplanner.team/stops/6440", "https://tec.openplanner.team/stops/Buccham2"], ["http://irail.be/stations/NMBS/008812229", "https://data.delijn.be/stops/301315"], ["https://data.delijn.be/stops/308544", "https://mivb.openplanner.team/stops/9575"], ["https://data.delijn.be/stops/208589", "https://tec.openplanner.team/stops/Bmrqgar2"], ["https://data.delijn.be/stops/307970", "https://tec.openplanner.team/stops/Bbgever2"], ["https://data.delijn.be/stops/307030", "https://tec.openplanner.team/stops/Balsnay1"], ["http://irail.be/stations/NMBS/008832243", "https://data.delijn.be/stops/404156"], ["http://irail.be/stations/NMBS/008895844", "https://data.delijn.be/stops/207846"], ["https://data.delijn.be/stops/307043", "https://mivb.openplanner.team/stops/3414"], ["https://data.delijn.be/stops/300781", "https://mivb.openplanner.team/stops/2579"], ["http://irail.be/stations/NMBS/008821907", "https://data.delijn.be/stops/106232"], ["http://irail.be/stations/NMBS/008865649", "https://tec.openplanner.team/stops/X346abb"], ["https://data.delijn.be/stops/408978", "https://tec.openplanner.team/stops/LWApt--2"], ["http://irail.be/stations/NMBS/008873379", "https://tec.openplanner.team/stops/Cbetrie1"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/109665"], ["https://data.delijn.be/stops/405731", "https://tec.openplanner.team/stops/Lrchype2"], ["http://irail.be/stations/NMBS/008886553", "https://tec.openplanner.team/stops/H1le120a"], ["https://data.delijn.be/stops/408492", "https://tec.openplanner.team/stops/LWApt--1"], ["https://data.delijn.be/stops/505926", "https://tec.openplanner.team/stops/H4co133a"], ["http://irail.be/stations/NMBS/008821436", "https://data.delijn.be/stops/102196"], ["https://data.delijn.be/stops/405741", "https://tec.openplanner.team/stops/Llgelis2"], ["https://data.delijn.be/stops/404676", "https://tec.openplanner.team/stops/Llaacca1"], ["https://data.delijn.be/stops/400484", "https://tec.openplanner.team/stops/LRGchap1"], ["https://data.delijn.be/stops/403784", "https://tec.openplanner.team/stops/LOehart2"], ["https://data.delijn.be/stops/302428", "https://tec.openplanner.team/stops/Bjod7co1"], ["http://irail.be/stations/NMBS/008819406", "https://data.delijn.be/stops/305555"], ["http://irail.be/stations/NMBS/008893039", "https://data.delijn.be/stops/203940"], ["http://irail.be/stations/NMBS/008831088", "https://data.delijn.be/stops/403969"], ["https://data.delijn.be/stops/404658", "https://tec.openplanner.team/stops/LJUmate2"], ["http://irail.be/stations/NMBS/008831807", "https://data.delijn.be/stops/407936"], ["http://irail.be/stations/NMBS/008896909", "https://data.delijn.be/stops/503315"], ["http://irail.be/stations/NMBS/008879004", "https://tec.openplanner.team/stops/H1er106b"], ["https://data.delijn.be/stops/304442", "https://tec.openplanner.team/stops/Bblapri1"], ["https://mivb.openplanner.team/stops/1949", "https://tec.openplanner.team/stops/Bucceng2"], ["https://data.delijn.be/stops/304028", "https://tec.openplanner.team/stops/Bovejme1"], ["http://irail.be/stations/NMBS/008813037", "https://mivb.openplanner.team/stops/2245"], ["http://irail.be/stations/NMBS/008893401", "https://data.delijn.be/stops/207301"], ["http://irail.be/stations/NMBS/008842754", "https://tec.openplanner.team/stops/LAYnias1"], ["http://irail.be/stations/NMBS/008895869", "https://data.delijn.be/stops/207152"], ["http://irail.be/stations/NMBS/008893252", "https://data.delijn.be/stops/210008"], ["https://data.delijn.be/stops/408831", "https://tec.openplanner.team/stops/LMgbern1"], ["http://irail.be/stations/NMBS/008844339", "https://tec.openplanner.team/stops/LJSec--2"], ["http://irail.be/stations/NMBS/008400219", "https://data.delijn.be/stops/408824"], ["http://irail.be/stations/NMBS/008822269", "https://data.delijn.be/stops/305595"], ["https://data.delijn.be/stops/301165", "https://mivb.openplanner.team/stops/2146"], ["https://data.delijn.be/stops/209610", "https://tec.openplanner.team/stops/H1by102a"], ["http://irail.be/stations/NMBS/008832433", "https://data.delijn.be/stops/108967"], ["http://irail.be/stations/NMBS/008842036", "https://tec.openplanner.team/stops/Lceembo1"], ["https://data.delijn.be/stops/305296", "https://mivb.openplanner.team/stops/9626"], ["https://mivb.openplanner.team/stops/2927", "https://tec.openplanner.team/stops/Bbxltou1"], ["https://data.delijn.be/stops/303582", "https://mivb.openplanner.team/stops/9727"], ["https://data.delijn.be/stops/408894", "https://tec.openplanner.team/stops/LWHkape1"], ["http://irail.be/stations/NMBS/008892106", "https://data.delijn.be/stops/201467"], ["http://irail.be/stations/NMBS/008822004", "https://data.delijn.be/stops/105169"], ["http://irail.be/stations/NMBS/008812112", "https://data.delijn.be/stops/302152"], ["https://data.delijn.be/stops/307972", "https://tec.openplanner.team/stops/Bwavcar1"], ["http://irail.be/stations/NMBS/008866001", "https://tec.openplanner.team/stops/X601aza"], ["https://data.delijn.be/stops/304019", "https://tec.openplanner.team/stops/Boveklo1"], ["https://data.delijn.be/stops/301920", "https://mivb.openplanner.team/stops/2029"], ["http://irail.be/stations/NMBS/008865003", "https://tec.openplanner.team/stops/X801bdd"], ["https://data.delijn.be/stops/405740", "https://tec.openplanner.team/stops/Llgbatt2"], ["https://data.delijn.be/stops/509736", "https://tec.openplanner.team/stops/H4ev126b"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1et100b"], ["http://irail.be/stations/NMBS/008822848", "https://data.delijn.be/stops/104853"], ["https://mivb.openplanner.team/stops/1417B", "https://tec.openplanner.team/stops/Bbxlner2"], ["http://irail.be/stations/NMBS/008871100", "https://tec.openplanner.team/stops/Cmocalv4"], ["https://data.delijn.be/stops/401404", "https://mivb.openplanner.team/stops/5045"], ["http://irail.be/stations/NMBS/008895463", "https://data.delijn.be/stops/206485"], ["https://data.delijn.be/stops/307159", "https://tec.openplanner.team/stops/Bhalwat2"], ["http://irail.be/stations/NMBS/008812245", "https://data.delijn.be/stops/306141"], ["https://data.delijn.be/stops/300772", "https://mivb.openplanner.team/stops/1493"], ["https://mivb.openplanner.team/stops/5284F", "https://tec.openplanner.team/stops/Baudwav2"], ["https://data.delijn.be/stops/304102", "https://tec.openplanner.team/stops/Bove4ko1"], ["http://irail.be/stations/NMBS/008891645", "https://data.delijn.be/stops/506661"], ["https://data.delijn.be/stops/300334", "https://tec.openplanner.team/stops/Balswsa2"], ["https://data.delijn.be/stops/302986", "https://mivb.openplanner.team/stops/2212"], ["https://data.delijn.be/stops/401419", "https://mivb.openplanner.team/stops/1550"], ["http://irail.be/stations/NMBS/008811403", "https://mivb.openplanner.team/stops/3155"], ["https://data.delijn.be/stops/504304", "https://tec.openplanner.team/stops/H4pl132a"], ["https://data.delijn.be/stops/308856", "https://mivb.openplanner.team/stops/1467"], ["http://irail.be/stations/NMBS/008811510", "https://tec.openplanner.team/stops/Blhugar2"], ["https://data.delijn.be/stops/300320", "https://tec.openplanner.team/stops/Bbeagae2"], ["https://data.delijn.be/stops/308645", "https://tec.openplanner.team/stops/Bovepla2"], ["https://data.delijn.be/stops/308128", "https://tec.openplanner.team/stops/Bgoestu2"], ["http://irail.be/stations/NMBS/008863867", "https://tec.openplanner.team/stops/N308aic"], ["http://irail.be/stations/NMBS/008892627", "https://data.delijn.be/stops/208284"], ["http://irail.be/stations/NMBS/008861200", "https://tec.openplanner.team/stops/Bgemgjo1"], ["http://irail.be/stations/NMBS/008881190", "https://tec.openplanner.team/stops/H1et102a"], ["http://irail.be/stations/NMBS/008883808", "https://tec.openplanner.team/stops/Btubga06"], ["https://data.delijn.be/stops/504322", "https://tec.openplanner.team/stops/H4mo207a"], ["http://irail.be/stations/NMBS/008833134", "https://data.delijn.be/stops/308357"], ["https://data.delijn.be/stops/404682", "https://tec.openplanner.team/stops/LWibare2"], ["http://irail.be/stations/NMBS/008821907", "https://data.delijn.be/stops/109803"], ["http://irail.be/stations/NMBS/008884715", "https://tec.openplanner.team/stops/H5qu182a"], ["https://data.delijn.be/stops/307716", "https://tec.openplanner.team/stops/Brsga812"], ["https://data.delijn.be/stops/300859", "https://mivb.openplanner.team/stops/0520161"], ["https://data.delijn.be/stops/407231", "https://tec.openplanner.team/stops/LLGramk2"], ["https://data.delijn.be/stops/410144", "https://tec.openplanner.team/stops/Llgseel2"], ["https://data.delijn.be/stops/304543", "https://mivb.openplanner.team/stops/9660"], ["https://data.delijn.be/stops/308856", "https://mivb.openplanner.team/stops/2873"], ["https://data.delijn.be/stops/307042", "https://tec.openplanner.team/stops/Brsg7fo2"], ["https://data.delijn.be/stops/509241", "https://tec.openplanner.team/stops/H4co134a"], ["https://mivb.openplanner.team/stops/1812", "https://tec.openplanner.team/stops/Baudvdr1"], ["http://irail.be/stations/NMBS/008822210", "https://data.delijn.be/stops/106977"], ["http://irail.be/stations/NMBS/008881463", "https://tec.openplanner.team/stops/H2sb228d"], ["https://data.delijn.be/stops/509735", "https://tec.openplanner.team/stops/H4ev118b"], ["https://data.delijn.be/stops/302244", "https://mivb.openplanner.team/stops/1725"], ["http://irail.be/stations/NMBS/008881455", "https://tec.openplanner.team/stops/H3th130a"], ["http://irail.be/stations/NMBS/008822772", "https://data.delijn.be/stops/102637"], ["https://data.delijn.be/stops/208188", "https://tec.openplanner.team/stops/H5rx137b"], ["https://data.delijn.be/stops/408916", "https://tec.openplanner.team/stops/LFPzwaa2"], ["https://data.delijn.be/stops/303248", "https://tec.openplanner.team/stops/Blkbbvh2"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1mj125a"], ["https://data.delijn.be/stops/407212", "https://tec.openplanner.team/stops/LHSheur2"], ["http://irail.be/stations/NMBS/008895125", "https://data.delijn.be/stops/207263"], ["https://data.delijn.be/stops/301099", "https://mivb.openplanner.team/stops/5533"], ["https://data.delijn.be/stops/307215", "https://tec.openplanner.team/stops/Bhalvel2"], ["http://irail.be/stations/NMBS/008814340", "https://data.delijn.be/stops/303291"], ["https://data.delijn.be/stops/408861", "https://tec.openplanner.team/stops/LFCdree1"], ["https://data.delijn.be/stops/306315", "https://tec.openplanner.team/stops/Bhalber2"], ["https://data.delijn.be/stops/301048", "https://mivb.openplanner.team/stops/2579"], ["http://irail.be/stations/NMBS/008841558", "https://tec.openplanner.team/stops/Llgcfra1"], ["https://data.delijn.be/stops/408871", "https://tec.openplanner.team/stops/LBWfusi2"], ["https://data.delijn.be/stops/400459", "https://tec.openplanner.team/stops/LEBmoul2"], ["https://data.delijn.be/stops/301050", "https://mivb.openplanner.team/stops/5074"], ["https://data.delijn.be/stops/302872", "https://mivb.openplanner.team/stops/2138B"], ["https://data.delijn.be/stops/207796", "https://tec.openplanner.team/stops/H5rx101b"], ["https://data.delijn.be/stops/508032", "https://tec.openplanner.team/stops/H4ae101b"], ["http://irail.be/stations/NMBS/008893013", "https://data.delijn.be/stops/200628"], ["https://data.delijn.be/stops/300998", "https://mivb.openplanner.team/stops/7762"], ["https://data.delijn.be/stops/302121", "https://tec.openplanner.team/stops/Bbghcar2"], ["http://irail.be/stations/NMBS/008861523", "https://tec.openplanner.team/stops/Bwlhppg4"], ["https://data.delijn.be/stops/410143", "https://tec.openplanner.team/stops/Llgnaes1"], ["https://data.delijn.be/stops/410141", "https://tec.openplanner.team/stops/Lrctec-1"], ["https://mivb.openplanner.team/stops/5409", "https://tec.openplanner.team/stops/Bixlaca2"], ["https://data.delijn.be/stops/300811", "https://mivb.openplanner.team/stops/4127"], ["https://data.delijn.be/stops/404652", "https://tec.openplanner.team/stops/Llabriq1"], ["http://irail.be/stations/NMBS/008821246", "https://data.delijn.be/stops/101909"], ["https://data.delijn.be/stops/504772", "https://tec.openplanner.team/stops/H4wn129a"], ["https://data.delijn.be/stops/304100", "https://tec.openplanner.team/stops/Bovelge2"], ["https://data.delijn.be/stops/300798", "https://mivb.openplanner.team/stops/3858"], ["https://mivb.openplanner.team/stops/2039", "https://tec.openplanner.team/stops/Bwolkra1"], ["https://data.delijn.be/stops/304912", "https://tec.openplanner.team/stops/Bovelge2"], ["http://irail.be/stations/NMBS/008894508", "https://data.delijn.be/stops/205100"], ["https://data.delijn.be/stops/304177", "https://tec.openplanner.team/stops/Bbldass2"], ["https://data.delijn.be/stops/301197", "https://tec.openplanner.team/stops/Blthwav2"], ["https://data.delijn.be/stops/307649", "https://tec.openplanner.team/stops/Brsgrol1"], ["https://data.delijn.be/stops/207765", "https://tec.openplanner.team/stops/H4ss157b"], ["http://irail.be/stations/NMBS/008864931", "https://tec.openplanner.team/stops/N235aha"], ["http://irail.be/stations/NMBS/008822277", "https://data.delijn.be/stops/305619"], ["http://irail.be/stations/NMBS/008884350", "https://tec.openplanner.team/stops/H1tl121a"], ["https://data.delijn.be/stops/300012", "https://mivb.openplanner.team/stops/2220"], ["https://data.delijn.be/stops/509299", "https://tec.openplanner.team/stops/H4mo190b"], ["http://irail.be/stations/NMBS/008811445", "https://data.delijn.be/stops/302212"], ["http://irail.be/stations/NMBS/008871811", "https://tec.openplanner.team/stops/Cthnord2"], ["http://irail.be/stations/NMBS/008833308", "https://data.delijn.be/stops/305198"], ["http://irail.be/stations/NMBS/008893567", "https://data.delijn.be/stops/201105"], ["https://data.delijn.be/stops/305197", "https://tec.openplanner.team/stops/Btiegar2"], ["https://data.delijn.be/stops/300806", "https://mivb.openplanner.team/stops/7710104"], ["http://irail.be/stations/NMBS/008833159", "https://data.delijn.be/stops/306294"], ["http://irail.be/stations/NMBS/008871308", "https://tec.openplanner.team/stops/Clusncb4"], ["https://data.delijn.be/stops/306375", "https://tec.openplanner.team/stops/Bovesol1"], ["http://irail.be/stations/NMBS/008881000", "https://tec.openplanner.team/stops/H1ms280a"], ["https://data.delijn.be/stops/300961", "https://mivb.openplanner.team/stops/2086"], ["https://data.delijn.be/stops/505362", "https://tec.openplanner.team/stops/H4co142a"], ["https://data.delijn.be/stops/302403", "https://mivb.openplanner.team/stops/3608"], ["https://data.delijn.be/stops/408574", "https://tec.openplanner.team/stops/LRUhama2"], ["https://data.delijn.be/stops/208408", "https://tec.openplanner.team/stops/H5rx139b"], ["https://data.delijn.be/stops/303956", "https://tec.openplanner.team/stops/Bbldmun2"], ["http://irail.be/stations/NMBS/008821667", "https://data.delijn.be/stops/102393"], ["https://data.delijn.be/stops/308529", "https://tec.openplanner.team/stops/Bovesog1"], ["https://data.delijn.be/stops/406398", "https://tec.openplanner.team/stops/Blanraa1"], ["http://irail.be/stations/NMBS/008849023", "https://tec.openplanner.team/stops/LhGfl242"], ["https://data.delijn.be/stops/300918", "https://mivb.openplanner.team/stops/5038"], ["https://data.delijn.be/stops/208761", "https://tec.openplanner.team/stops/H5rx122b"], ["http://irail.be/stations/NMBS/008719100", "https://tec.openplanner.team/stops/X687aga"], ["http://irail.be/stations/NMBS/008832664", "https://data.delijn.be/stops/402858"], ["https://data.delijn.be/stops/503556", "https://tec.openplanner.team/stops/H4mn100d"], ["https://data.delijn.be/stops/302446", "https://tec.openplanner.team/stops/Bzlucam1"], ["http://irail.be/stations/NMBS/008814449", "https://mivb.openplanner.team/stops/1970"], ["http://irail.be/stations/NMBS/008811148", "https://mivb.openplanner.team/stops/9776"], ["http://irail.be/stations/NMBS/008814159", "https://mivb.openplanner.team/stops/2116B"], ["https://data.delijn.be/stops/300728", "https://tec.openplanner.team/stops/Bbealon4"], ["https://data.delijn.be/stops/208785", "https://tec.openplanner.team/stops/H5el100a"], ["https://data.delijn.be/stops/306911", "https://tec.openplanner.team/stops/Bbosgar1"], ["https://data.delijn.be/stops/307853", "https://mivb.openplanner.team/stops/0230434"], ["http://irail.be/stations/NMBS/008894714", "https://data.delijn.be/stops/204704"], ["https://data.delijn.be/stops/304439", "https://tec.openplanner.team/stops/Brsgfon2"], ["http://irail.be/stations/NMBS/008811536", "https://tec.openplanner.team/stops/Brixga11"], ["https://data.delijn.be/stops/307002", "https://tec.openplanner.team/stops/Bjodath2"], ["https://data.delijn.be/stops/302810", "https://mivb.openplanner.team/stops/9578"], ["https://data.delijn.be/stops/402652", "https://tec.openplanner.team/stops/LCAwals1"], ["https://data.delijn.be/stops/504654", "https://tec.openplanner.team/stops/H4co150b"], ["https://data.delijn.be/stops/208188", "https://tec.openplanner.team/stops/H5rx120b"], ["http://irail.be/stations/NMBS/008866662", "https://tec.openplanner.team/stops/X614aqa"], ["http://irail.be/stations/NMBS/008891140", "https://data.delijn.be/stops/200845"], ["https://data.delijn.be/stops/303627", "https://tec.openplanner.team/stops/Bcbqcim1"], ["https://data.delijn.be/stops/302400", "https://mivb.openplanner.team/stops/6799F"], ["https://data.delijn.be/stops/408841", "https://tec.openplanner.team/stops/LRmmabr1"], ["https://data.delijn.be/stops/300764", "https://mivb.openplanner.team/stops/1260"], ["https://data.delijn.be/stops/302830", "https://tec.openplanner.team/stops/Blaneli2"], ["http://irail.be/stations/NMBS/008874609", "https://tec.openplanner.team/stops/Caih1632"], ["https://data.delijn.be/stops/509451", "https://tec.openplanner.team/stops/H4mo133b"], ["http://irail.be/stations/NMBS/008882362", "https://tec.openplanner.team/stops/H3bi116a"], ["https://data.delijn.be/stops/303577", "https://mivb.openplanner.team/stops/3042"], ["https://data.delijn.be/stops/300300", "https://mivb.openplanner.team/stops/4270F"], ["http://irail.be/stations/NMBS/008842663", "https://tec.openplanner.team/stops/LESlieg1"], ["https://data.delijn.be/stops/301685", "https://tec.openplanner.team/stops/Bnettir1"], ["https://data.delijn.be/stops/302891", "https://tec.openplanner.team/stops/Bhevjal2"], ["http://irail.be/stations/NMBS/008812005", "https://mivb.openplanner.team/stops/1900"], ["https://data.delijn.be/stops/306001", "https://mivb.openplanner.team/stops/5501"], ["https://data.delijn.be/stops/305144", "https://tec.openplanner.team/stops/H1mk108b"], ["https://data.delijn.be/stops/302849", "https://tec.openplanner.team/stops/Bwaab121"], ["https://data.delijn.be/stops/302479", "https://mivb.openplanner.team/stops/1509"], ["https://data.delijn.be/stops/302408", "https://mivb.openplanner.team/stops/8651"], ["https://data.delijn.be/stops/304255", "https://mivb.openplanner.team/stops/4273F"], ["https://data.delijn.be/stops/304065", "https://tec.openplanner.team/stops/Bovehst2"], ["http://irail.be/stations/NMBS/008844404", "https://tec.openplanner.team/stops/LSPgare*"], ["https://data.delijn.be/stops/504294", "https://tec.openplanner.team/stops/H4mo159a"], ["http://irail.be/stations/NMBS/008842051", "https://tec.openplanner.team/stops/Lcapisc2"], ["http://irail.be/stations/NMBS/008896735", "https://data.delijn.be/stops/505997"], ["http://irail.be/stations/NMBS/008861432", "https://tec.openplanner.team/stops/Bsdecdi1"], ["https://mivb.openplanner.team/stops/2117B", "https://tec.openplanner.team/stops/Buccpin1"], ["http://irail.be/stations/NMBS/008881315", "https://tec.openplanner.team/stops/H1ni322b"], ["https://mivb.openplanner.team/stops/2752", "https://tec.openplanner.team/stops/Baudulb1"], ["http://irail.be/stations/NMBS/008893211", "https://data.delijn.be/stops/203654"], ["https://data.delijn.be/stops/300828", "https://mivb.openplanner.team/stops/2811"], ["https://data.delijn.be/stops/206673", "https://tec.openplanner.team/stops/H5fl101a"], ["http://irail.be/stations/NMBS/008893047", "https://data.delijn.be/stops/201633"], ["http://irail.be/stations/NMBS/008863453", "https://tec.openplanner.team/stops/N504abb"], ["https://data.delijn.be/stops/408858", "https://tec.openplanner.team/stops/LFCotte1"], ["https://mivb.openplanner.team/stops/6109", "https://tec.openplanner.team/stops/Bsgimor2"], ["https://data.delijn.be/stops/503331", "https://tec.openplanner.team/stops/H4do202a"], ["http://irail.be/stations/NMBS/008885704", "https://data.delijn.be/stops/509295"], ["https://data.delijn.be/stops/308734", "https://tec.openplanner.team/stops/Bgoesch1"], ["https://data.delijn.be/stops/301154", "https://mivb.openplanner.team/stops/5455"], ["https://data.delijn.be/stops/308825", "https://tec.openplanner.team/stops/Blanove2"], ["https://data.delijn.be/stops/304454", "https://tec.openplanner.team/stops/Brsgsan1"], ["https://data.delijn.be/stops/300756", "https://mivb.openplanner.team/stops/2550"], ["http://irail.be/stations/NMBS/008892031", "https://data.delijn.be/stops/200195"], ["http://irail.be/stations/NMBS/008892080", "https://data.delijn.be/stops/208958"], ["https://data.delijn.be/stops/303120", "https://mivb.openplanner.team/stops/3815"], ["http://irail.be/stations/NMBS/008886546", "https://tec.openplanner.team/stops/H1gy115a"], ["https://data.delijn.be/stops/304020", "https://tec.openplanner.team/stops/Bovehst2"], ["https://data.delijn.be/stops/406350", "https://tec.openplanner.team/stops/LMastat4"], ["https://mivb.openplanner.team/stops/0050419", "https://tec.openplanner.team/stops/Bbxltrv1"], ["https://data.delijn.be/stops/408640", "https://tec.openplanner.team/stops/LRUhama1"], ["https://data.delijn.be/stops/307251", "https://mivb.openplanner.team/stops/9979B"], ["https://data.delijn.be/stops/304544", "https://mivb.openplanner.team/stops/9660"], ["https://data.delijn.be/stops/301106", "https://mivb.openplanner.team/stops/1859"], ["https://data.delijn.be/stops/301130", "https://mivb.openplanner.team/stops/2148"], ["http://irail.be/stations/NMBS/008821543", "https://data.delijn.be/stops/107320"], ["http://irail.be/stations/NMBS/008811635", "https://tec.openplanner.team/stops/Blmlmco2"], ["http://irail.be/stations/NMBS/008892254", "https://data.delijn.be/stops/502485"], ["https://data.delijn.be/stops/302400", "https://mivb.openplanner.team/stops/7"], ["https://data.delijn.be/stops/407638", "https://tec.openplanner.team/stops/LEMfort2"], ["http://irail.be/stations/NMBS/008200520", "https://tec.openplanner.team/stops/X626afa"], ["https://data.delijn.be/stops/301034", "https://mivb.openplanner.team/stops/0650265"], ["https://data.delijn.be/stops/304833", "https://mivb.openplanner.team/stops/9557"], ["http://irail.be/stations/NMBS/008861515", "https://tec.openplanner.team/stops/Bernpla1"], ["https://data.delijn.be/stops/307638", "https://mivb.openplanner.team/stops/1932"], ["https://data.delijn.be/stops/407232", "https://tec.openplanner.team/stops/LORherl1"], ["https://data.delijn.be/stops/308955", "https://mivb.openplanner.team/stops/9577"], ["https://data.delijn.be/stops/401415", "https://mivb.openplanner.team/stops/4307"], ["https://data.delijn.be/stops/307643", "https://mivb.openplanner.team/stops/1939"], ["https://data.delijn.be/stops/405741", "https://tec.openplanner.team/stops/Llgcamp1"], ["https://data.delijn.be/stops/301071", "https://mivb.openplanner.team/stops/1145"], ["https://data.delijn.be/stops/400492", "https://tec.openplanner.team/stops/LBSkann2"], ["http://irail.be/stations/NMBS/008844321", "https://tec.openplanner.team/stops/LJSeg--1"], ["http://irail.be/stations/NMBS/008200136", "https://tec.openplanner.team/stops/LwMzoll1"], ["http://irail.be/stations/NMBS/008893526", "https://data.delijn.be/stops/206280"], ["https://data.delijn.be/stops/300988", "https://mivb.openplanner.team/stops/3766"], ["https://data.delijn.be/stops/408726", "https://tec.openplanner.team/stops/LWidepo2"], ["http://irail.be/stations/NMBS/008842838", "https://tec.openplanner.team/stops/LCTgare4"], ["https://data.delijn.be/stops/307224", "https://tec.openplanner.team/stops/Bhalgar2"], ["http://irail.be/stations/NMBS/008843331", "https://tec.openplanner.team/stops/LAMgreg2"], ["https://mivb.openplanner.team/stops/1262B", "https://tec.openplanner.team/stops/Bbxltrv2"], ["https://data.delijn.be/stops/305209", "https://tec.openplanner.team/stops/Bboseco1"], ["https://mivb.openplanner.team/stops/4369", "https://tec.openplanner.team/stops/Bixefra1"], ["https://data.delijn.be/stops/308818", "https://mivb.openplanner.team/stops/6438"], ["https://mivb.openplanner.team/stops/4288", "https://tec.openplanner.team/stops/Bwbfckr2"], ["https://data.delijn.be/stops/301123", "https://tec.openplanner.team/stops/Buccvoi1"], ["https://data.delijn.be/stops/207758", "https://tec.openplanner.team/stops/H5rx134b"], ["https://data.delijn.be/stops/300830", "https://mivb.openplanner.team/stops/7790556"], ["https://mivb.openplanner.team/stops/9952G", "https://tec.openplanner.team/stops/Bixleix2"], ["https://data.delijn.be/stops/405706", "https://tec.openplanner.team/stops/Llgcadr4"], ["https://data.delijn.be/stops/408830", "https://tec.openplanner.team/stops/LMgbern1"], ["https://data.delijn.be/stops/300412", "https://mivb.openplanner.team/stops/9659"], ["https://data.delijn.be/stops/408806", "https://tec.openplanner.team/stops/LVIcarm1"], ["https://data.delijn.be/stops/300896", "https://mivb.openplanner.team/stops/3199"], ["http://irail.be/stations/NMBS/008814472", "https://mivb.openplanner.team/stops/2107"], ["http://irail.be/stations/NMBS/008892635", "https://data.delijn.be/stops/208277"], ["https://data.delijn.be/stops/300748", "https://mivb.openplanner.team/stops/7680107"], ["https://data.delijn.be/stops/410145", "https://tec.openplanner.team/stops/Llgwild6"], ["https://data.delijn.be/stops/306900", "https://tec.openplanner.team/stops/Bgoegma2"], ["https://data.delijn.be/stops/301086", "https://mivb.openplanner.team/stops/1641"], ["https://data.delijn.be/stops/300829", "https://mivb.openplanner.team/stops/2861"], ["https://data.delijn.be/stops/300875", "https://mivb.openplanner.team/stops/6173"], ["http://irail.be/stations/NMBS/008841400", "https://tec.openplanner.team/stops/LWAfabr2"], ["https://data.delijn.be/stops/504237", "https://tec.openplanner.team/stops/H4co141a"], ["http://irail.be/stations/NMBS/008844230", "https://tec.openplanner.team/stops/LNEolne2"], ["http://irail.be/stations/NMBS/008833670", "https://data.delijn.be/stops/405386"], ["https://data.delijn.be/stops/300961", "https://mivb.openplanner.team/stops/5427"], ["https://data.delijn.be/stops/305272", "https://tec.openplanner.team/stops/Bspkdon1"], ["http://irail.be/stations/NMBS/008821030", "https://data.delijn.be/stops/103896"], ["http://irail.be/stations/NMBS/008895778", "https://data.delijn.be/stops/206736"], ["https://data.delijn.be/stops/209820", "https://tec.openplanner.team/stops/H5rx138b"], ["https://data.delijn.be/stops/301316", "https://mivb.openplanner.team/stops/9801"], ["http://irail.be/stations/NMBS/008811304", "https://mivb.openplanner.team/stops/4367B"], ["https://data.delijn.be/stops/307695", "https://mivb.openplanner.team/stops/2146"], ["https://data.delijn.be/stops/303650", "https://mivb.openplanner.team/stops/2920"], ["http://irail.be/stations/NMBS/008841665", "https://tec.openplanner.team/stops/Lmirca-2"], ["http://irail.be/stations/NMBS/008871662", "https://tec.openplanner.team/stops/H1so132a"], ["https://mivb.openplanner.team/stops/5424", "https://tec.openplanner.team/stops/Bwbfhip2"], ["https://data.delijn.be/stops/307637", "https://tec.openplanner.team/stops/Bucccre2"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/101444"], ["https://data.delijn.be/stops/301922", "https://mivb.openplanner.team/stops/2078"], ["https://data.delijn.be/stops/300982", "https://mivb.openplanner.team/stops/5867F"], ["https://data.delijn.be/stops/300760", "https://mivb.openplanner.team/stops/3281"], ["https://data.delijn.be/stops/408980", "https://tec.openplanner.team/stops/LWAvisi2"], ["http://irail.be/stations/NMBS/008811676", "https://tec.openplanner.team/stops/Bllngar5"], ["http://irail.be/stations/NMBS/008811742", "https://data.delijn.be/stops/302387"], ["http://irail.be/stations/NMBS/008864824", "https://tec.openplanner.team/stops/N211ava"], ["https://data.delijn.be/stops/504323", "https://tec.openplanner.team/stops/H4mo206b"], ["https://data.delijn.be/stops/408836", "https://tec.openplanner.team/stops/LFPstro2"], ["https://mivb.openplanner.team/stops/5466", "https://tec.openplanner.team/stops/Bixleix2"], ["https://data.delijn.be/stops/301159", "https://mivb.openplanner.team/stops/4502F"], ["https://data.delijn.be/stops/207797", "https://tec.openplanner.team/stops/H4fa167a"], ["https://data.delijn.be/stops/302850", "https://tec.openplanner.team/stops/Bwaakap1"], ["https://data.delijn.be/stops/301059", "https://mivb.openplanner.team/stops/4271"], ["http://irail.be/stations/NMBS/008821006", "https://data.delijn.be/stops/104655"], ["https://data.delijn.be/stops/300817", "https://mivb.openplanner.team/stops/3261"], ["https://data.delijn.be/stops/308556", "https://tec.openplanner.team/stops/Bpecdel2"], ["http://irail.be/stations/NMBS/008891405", "https://data.delijn.be/stops/506598"], ["http://irail.be/stations/NMBS/008866258", "https://tec.openplanner.team/stops/X661amb"], ["https://data.delijn.be/stops/405714", "https://tec.openplanner.team/stops/Llgmart1"], ["http://irail.be/stations/NMBS/008711184", "https://tec.openplanner.team/stops/N141aaa"], ["http://irail.be/stations/NMBS/008811767", "https://tec.openplanner.team/stops/Bpecvme2"], ["http://irail.be/stations/NMBS/008864949", "https://tec.openplanner.team/stops/N563aab"], ["https://data.delijn.be/stops/400476", "https://tec.openplanner.team/stops/LBPmais1"], ["https://data.delijn.be/stops/306903", "https://tec.openplanner.team/stops/Bgoekaz1"], ["https://data.delijn.be/stops/306968", "https://mivb.openplanner.team/stops/2318G"], ["http://irail.be/stations/NMBS/008821964", "https://data.delijn.be/stops/109159"], ["https://data.delijn.be/stops/304546", "https://mivb.openplanner.team/stops/9682"], ["https://data.delijn.be/stops/300998", "https://mivb.openplanner.team/stops/3109"], ["http://irail.be/stations/NMBS/008832458", "https://data.delijn.be/stops/109267"], ["https://data.delijn.be/stops/505842", "https://tec.openplanner.team/stops/H4co144b"], ["https://data.delijn.be/stops/302876", "https://tec.openplanner.team/stops/Buccfja2"], ["https://data.delijn.be/stops/300979", "https://mivb.openplanner.team/stops/5712F"], ["https://mivb.openplanner.team/stops/2762", "https://tec.openplanner.team/stops/Buccvch1"], ["https://data.delijn.be/stops/408664", "https://tec.openplanner.team/stops/LRUhama1"], ["http://irail.be/stations/NMBS/008731388", "https://tec.openplanner.team/stops/H4ar100a"], ["https://data.delijn.be/stops/509233", "https://tec.openplanner.team/stops/H4co108b"], ["https://data.delijn.be/stops/408897", "https://tec.openplanner.team/stops/LFPgeme1"], ["https://data.delijn.be/stops/301027", "https://tec.openplanner.team/stops/Bsgipha2"], ["http://irail.be/stations/NMBS/008873320", "https://tec.openplanner.team/stops/N161aeb"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Cthrlef2"], ["https://data.delijn.be/stops/408892", "https://tec.openplanner.team/stops/LFMvoge1"], ["http://irail.be/stations/NMBS/008200100", "https://tec.openplanner.team/stops/X685aia"], ["https://data.delijn.be/stops/300856", "https://mivb.openplanner.team/stops/0520161"], ["http://irail.be/stations/NMBS/008861416", "https://tec.openplanner.team/stops/N541abb"], ["https://data.delijn.be/stops/504316", "https://tec.openplanner.team/stops/H4mo159b"], ["https://data.delijn.be/stops/404663", "https://tec.openplanner.team/stops/LPAchpl2"], ["https://mivb.openplanner.team/stops/2137", "https://tec.openplanner.team/stops/Buccrac2"], ["https://data.delijn.be/stops/301033", "https://mivb.openplanner.team/stops/5020"], ["http://irail.be/stations/NMBS/008811155", "https://mivb.openplanner.team/stops/2895"], ["https://data.delijn.be/stops/300973", "https://mivb.openplanner.team/stops/1757"], ["http://irail.be/stations/NMBS/008841558", "https://tec.openplanner.team/stops/Llglaur1"], ["http://irail.be/stations/NMBS/008845203", "https://tec.openplanner.team/stops/LTPpisc1"], ["https://mivb.openplanner.team/stops/5860", "https://tec.openplanner.team/stops/Buccbou1"], ["https://data.delijn.be/stops/207764", "https://tec.openplanner.team/stops/H5rx145a"], ["http://irail.be/stations/NMBS/008811742", "https://tec.openplanner.team/stops/Bgzdgpa2"], ["https://data.delijn.be/stops/304774", "https://mivb.openplanner.team/stops/6858C"], ["https://mivb.openplanner.team/stops/6956G", "https://tec.openplanner.team/stops/Buccobs2"], ["http://irail.be/stations/NMBS/008812047", "https://mivb.openplanner.team/stops/6803F"], ["https://data.delijn.be/stops/305915", "https://mivb.openplanner.team/stops/1099"], ["http://irail.be/stations/NMBS/008811759", "https://tec.openplanner.team/stops/Barcsta2"], ["https://data.delijn.be/stops/302154", "https://tec.openplanner.team/stops/Bhoealt1"], ["https://data.delijn.be/stops/300950", "https://mivb.openplanner.team/stops/1098"], ["https://data.delijn.be/stops/402953", "https://tec.openplanner.team/stops/LLagert*"], ["https://data.delijn.be/stops/301019", "https://mivb.openplanner.team/stops/4002B"], ["http://irail.be/stations/NMBS/008822269", "https://data.delijn.be/stops/305609"], ["http://irail.be/stations/NMBS/008895836", "https://data.delijn.be/stops/306709"], ["http://irail.be/stations/NMBS/008871852", "https://tec.openplanner.team/stops/Cmomoul6"], ["https://data.delijn.be/stops/405732", "https://tec.openplanner.team/stops/Lrcastr2"], ["https://data.delijn.be/stops/208180", "https://tec.openplanner.team/stops/H5el102a"], ["https://data.delijn.be/stops/302439", "https://tec.openplanner.team/stops/Bzlucam2"], ["https://mivb.openplanner.team/stops/6406", "https://tec.openplanner.team/stops/Bixllep1"], ["https://mivb.openplanner.team/stops/2763", "https://tec.openplanner.team/stops/Buccgob1"], ["https://data.delijn.be/stops/306064", "https://tec.openplanner.team/stops/Brsgfso2"], ["https://data.delijn.be/stops/301008", "https://mivb.openplanner.team/stops/4106"], ["https://data.delijn.be/stops/305145", "https://tec.openplanner.team/stops/H1mk108b"], ["https://data.delijn.be/stops/300787", "https://mivb.openplanner.team/stops/1489"], ["https://data.delijn.be/stops/400452", "https://tec.openplanner.team/stops/LBPboir1"], ["http://irail.be/stations/NMBS/008841400", "https://tec.openplanner.team/stops/LWAloui2"], ["http://irail.be/stations/NMBS/008844321", "https://tec.openplanner.team/stops/LTHmaka1"], ["https://data.delijn.be/stops/304719", "https://mivb.openplanner.team/stops/3317"], ["https://data.delijn.be/stops/407648", "https://tec.openplanner.team/stops/LBPmais1"], ["https://mivb.openplanner.team/stops/1846", "https://tec.openplanner.team/stops/Bwolkra2"], ["http://irail.be/stations/NMBS/008894151", "https://data.delijn.be/stops/203155"], ["https://data.delijn.be/stops/305343", "https://tec.openplanner.team/stops/Bbgewal1"], ["https://data.delijn.be/stops/307686", "https://mivb.openplanner.team/stops/1933B"], ["https://data.delijn.be/stops/307965", "https://tec.openplanner.team/stops/Bwavfol1"], ["https://data.delijn.be/stops/301920", "https://mivb.openplanner.team/stops/2078"], ["https://data.delijn.be/stops/308727", "https://tec.openplanner.team/stops/Bgoemho2"], ["http://irail.be/stations/NMBS/008883220", "https://tec.openplanner.team/stops/Beclpma1"], ["https://data.delijn.be/stops/300739", "https://mivb.openplanner.team/stops/6857"], ["https://data.delijn.be/stops/308355", "https://mivb.openplanner.team/stops/6202"], ["https://data.delijn.be/stops/301031", "https://tec.openplanner.team/stops/Bsgipmo2"], ["https://data.delijn.be/stops/304687", "https://tec.openplanner.team/stops/Bhalalb1"], ["https://data.delijn.be/stops/306814", "https://mivb.openplanner.team/stops/3118"], ["http://irail.be/stations/NMBS/008811270", "https://data.delijn.be/stops/302098"], ["https://data.delijn.be/stops/307640", "https://mivb.openplanner.team/stops/1938"], ["https://data.delijn.be/stops/303122", "https://tec.openplanner.team/stops/Blemsta1"], ["https://data.delijn.be/stops/509737", "https://tec.openplanner.team/stops/H4mo206b"], ["https://data.delijn.be/stops/305352", "https://tec.openplanner.team/stops/Bbgever1"], ["https://data.delijn.be/stops/408701", "https://tec.openplanner.team/stops/LGLobor2"], ["https://data.delijn.be/stops/400455", "https://tec.openplanner.team/stops/LEBdoct1"], ["http://irail.be/stations/NMBS/008891132", "https://data.delijn.be/stops/200826"], ["http://irail.be/stations/NMBS/008891173", "https://data.delijn.be/stops/501534"], ["https://data.delijn.be/stops/301068", "https://mivb.openplanner.team/stops/8381"], ["http://irail.be/stations/NMBS/008861523", "https://tec.openplanner.team/stops/Bcrnnca2"], ["http://irail.be/stations/NMBS/008874005", "https://tec.openplanner.team/stops/Ccugend2"], ["http://irail.be/stations/NMBS/008892007", "https://data.delijn.be/stops/201144"], ["http://irail.be/stations/NMBS/008400219", "https://tec.openplanner.team/stops/LFCdree2"], ["https://data.delijn.be/stops/305423", "https://mivb.openplanner.team/stops/9561"], ["https://data.delijn.be/stops/207760", "https://tec.openplanner.team/stops/H5rx137a"], ["https://data.delijn.be/stops/408922", "https://tec.openplanner.team/stops/LDpzol-2"], ["http://irail.be/stations/NMBS/008832433", "https://data.delijn.be/stops/104958"], ["https://data.delijn.be/stops/302798", "https://mivb.openplanner.team/stops/1587"], ["http://irail.be/stations/NMBS/008844420", "https://tec.openplanner.team/stops/LSPchap2"], ["http://irail.be/stations/NMBS/008821337", "https://data.delijn.be/stops/107239"], ["http://irail.be/stations/NMBS/008885068", "https://tec.openplanner.team/stops/H4fr142b"], ["https://mivb.openplanner.team/stops/2402", "https://tec.openplanner.team/stops/Bsgipha1"], ["https://data.delijn.be/stops/301043", "https://mivb.openplanner.team/stops/2216"], ["https://data.delijn.be/stops/403774", "https://tec.openplanner.team/stops/LBGvill2"], ["https://data.delijn.be/stops/509385", "https://tec.openplanner.team/stops/H4pl137b"], ["http://irail.be/stations/NMBS/008811734", "https://tec.openplanner.team/stops/Bwavdel1"], ["http://irail.be/stations/NMBS/008822160", "https://data.delijn.be/stops/207740"], ["http://irail.be/stations/NMBS/008866175", "https://tec.openplanner.team/stops/X671aga"], ["https://data.delijn.be/stops/509237", "https://tec.openplanner.team/stops/H4co141a"], ["http://irail.be/stations/NMBS/008814118", "https://mivb.openplanner.team/stops/5121"], ["https://data.delijn.be/stops/300827", "https://mivb.openplanner.team/stops/2828"], ["https://data.delijn.be/stops/307148", "https://tec.openplanner.team/stops/Bhaless2"], ["http://irail.be/stations/NMBS/008814373", "https://mivb.openplanner.team/stops/5719"], ["https://data.delijn.be/stops/300793", "https://mivb.openplanner.team/stops/1208"], ["https://data.delijn.be/stops/302133", "https://tec.openplanner.team/stops/Bptemch2"], ["https://data.delijn.be/stops/307490", "https://mivb.openplanner.team/stops/9659"], ["https://mivb.openplanner.team/stops/1760", "https://tec.openplanner.team/stops/Baudstr1"], ["http://irail.be/stations/NMBS/008833605", "https://tec.openplanner.team/stops/LLaover3"], ["https://data.delijn.be/stops/400456", "https://tec.openplanner.team/stops/LEBdoct2"], ["https://data.delijn.be/stops/304207", "https://tec.openplanner.team/stops/Brsrrcu2"], ["https://data.delijn.be/stops/306395", "https://mivb.openplanner.team/stops/9727"], ["https://data.delijn.be/stops/509739", "https://tec.openplanner.team/stops/H4lu128a"], ["https://data.delijn.be/stops/308723", "https://tec.openplanner.team/stops/Bgoesch2"], ["https://data.delijn.be/stops/303631", "https://mivb.openplanner.team/stops/6603"], ["http://irail.be/stations/NMBS/008895000", "https://data.delijn.be/stops/204972"], ["https://data.delijn.be/stops/304088", "https://tec.openplanner.team/stops/Bovevnd2"], ["https://data.delijn.be/stops/300758", "https://mivb.openplanner.team/stops/1327"], ["https://data.delijn.be/stops/300924", "https://mivb.openplanner.team/stops/4505"], ["http://irail.be/stations/NMBS/008841558", "https://tec.openplanner.team/stops/Llgerac2"], ["http://irail.be/stations/NMBS/008814308", "https://data.delijn.be/stops/307223"], ["https://data.delijn.be/stops/308818", "https://mivb.openplanner.team/stops/6436"], ["http://irail.be/stations/NMBS/008893815", "https://data.delijn.be/stops/203987"], ["https://data.delijn.be/stops/301018", "https://mivb.openplanner.team/stops/1306"], ["http://irail.be/stations/NMBS/008881505", "https://tec.openplanner.team/stops/H1go169a"], ["https://data.delijn.be/stops/209413", "https://tec.openplanner.team/stops/H5rx128a"], ["https://data.delijn.be/stops/300935", "https://mivb.openplanner.team/stops/7269"], ["http://irail.be/stations/NMBS/008822111", "https://data.delijn.be/stops/308715"], ["https://data.delijn.be/stops/302428", "https://tec.openplanner.team/stops/Bsjgmil1"], ["https://data.delijn.be/stops/305890", "https://mivb.openplanner.team/stops/9632"], ["http://irail.be/stations/NMBS/008895646", "https://data.delijn.be/stops/302134"], ["http://irail.be/stations/NMBS/008822145", "https://data.delijn.be/stops/207746"], ["https://data.delijn.be/stops/301019", "https://mivb.openplanner.team/stops/4062"], ["http://irail.be/stations/NMBS/008893120", "https://data.delijn.be/stops/203450"], ["http://irail.be/stations/NMBS/008015345", "https://tec.openplanner.team/stops/LaAlinz2"], ["http://irail.be/stations/NMBS/008895711", "https://data.delijn.be/stops/206799"], ["http://irail.be/stations/NMBS/008892635", "https://data.delijn.be/stops/208281"], ["https://data.delijn.be/stops/400483", "https://tec.openplanner.team/stops/LRGchap1"], ["https://mivb.openplanner.team/stops/0340341", "https://tec.openplanner.team/stops/Bsgicfo1"], ["http://irail.be/stations/NMBS/008833126", "https://data.delijn.be/stops/302897"], ["http://irail.be/stations/NMBS/008895208", "https://data.delijn.be/stops/218029"], ["http://irail.be/stations/NMBS/008872306", "https://tec.openplanner.team/stops/Cgystbe1"], ["http://irail.be/stations/NMBS/008886587", "https://tec.openplanner.team/stops/H5is168b"], ["http://irail.be/stations/NMBS/008842655", "https://tec.openplanner.team/stops/LESlieg1"], ["https://mivb.openplanner.team/stops/5254", "https://tec.openplanner.team/stops/Bixlpat1"], ["http://irail.be/stations/NMBS/008892304", "https://data.delijn.be/stops/501600"], ["https://mivb.openplanner.team/stops/6934F", "https://tec.openplanner.team/stops/Buccrac2"], ["https://data.delijn.be/stops/304209", "https://tec.openplanner.team/stops/Brsrabe1"], ["https://data.delijn.be/stops/308652", "https://mivb.openplanner.team/stops/9600B"], ["http://irail.be/stations/NMBS/008864345", "https://tec.openplanner.team/stops/X999aka"], ["http://irail.be/stations/NMBS/008895844", "https://data.delijn.be/stops/206846"], ["https://data.delijn.be/stops/406298", "https://tec.openplanner.team/stops/Blanraa1"], ["http://irail.be/stations/NMBS/008895760", "https://data.delijn.be/stops/207977"], ["https://data.delijn.be/stops/307024", "https://tec.openplanner.team/stops/H1en100b"], ["http://irail.be/stations/NMBS/008871381", "https://tec.openplanner.team/stops/H2go119a"], ["https://data.delijn.be/stops/300932", "https://mivb.openplanner.team/stops/2995"], ["http://irail.be/stations/NMBS/008883113", "https://tec.openplanner.team/stops/H3so159b"], ["https://data.delijn.be/stops/301025", "https://mivb.openplanner.team/stops/0340141"], ["http://irail.be/stations/NMBS/008821857", "https://data.delijn.be/stops/108052"], ["http://irail.be/stations/NMBS/008821543", "https://data.delijn.be/stops/105406"], ["http://irail.be/stations/NMBS/008822475", "https://data.delijn.be/stops/300645"], ["https://data.delijn.be/stops/407216", "https://tec.openplanner.team/stops/LHStrez1"], ["https://data.delijn.be/stops/301080", "https://mivb.openplanner.team/stops/6017"], ["https://data.delijn.be/stops/407209", "https://tec.openplanner.team/stops/LHTdelh2"], ["http://irail.be/stations/NMBS/008861416", "https://tec.openplanner.team/stops/Bgembhe2"], ["https://data.delijn.be/stops/300340", "https://tec.openplanner.team/stops/Bblapin2"], ["https://data.delijn.be/stops/308728", "https://tec.openplanner.team/stops/Bgoemho2"], ["https://data.delijn.be/stops/305234", "https://mivb.openplanner.team/stops/9627"], ["https://data.delijn.be/stops/307690", "https://tec.openplanner.team/stops/Bbrlpar1"], ["https://data.delijn.be/stops/300022", "https://mivb.openplanner.team/stops/9677"], ["https://data.delijn.be/stops/306068", "https://tec.openplanner.team/stops/Blempuc2"], ["https://data.delijn.be/stops/304688", "https://tec.openplanner.team/stops/Bhalwat2"], ["https://data.delijn.be/stops/303958", "https://tec.openplanner.team/stops/Bhmmhde1"], ["http://irail.be/stations/NMBS/008833175", "https://data.delijn.be/stops/303172"], ["http://irail.be/stations/NMBS/008015458", "https://tec.openplanner.team/stops/LmHflor2"], ["https://data.delijn.be/stops/504235", "https://tec.openplanner.team/stops/H4co148b"], ["http://irail.be/stations/NMBS/008872579", "https://tec.openplanner.team/stops/Bbstchv1"], ["https://data.delijn.be/stops/300753", "https://mivb.openplanner.team/stops/2373"], ["https://data.delijn.be/stops/408912", "https://tec.openplanner.team/stops/LFPchat2"], ["https://mivb.openplanner.team/stops/5210", "https://tec.openplanner.team/stops/Buccbas2"], ["https://data.delijn.be/stops/509381", "https://tec.openplanner.team/stops/H4pl116b"], ["http://irail.be/stations/NMBS/008864345", "https://tec.openplanner.team/stops/X902afd"], ["https://data.delijn.be/stops/308124", "https://tec.openplanner.team/stops/Bgoesch1"], ["http://irail.be/stations/NMBS/008821196", "https://data.delijn.be/stops/102470"], ["http://irail.be/stations/NMBS/008843307", "https://tec.openplanner.team/stops/LHUlebo2"], ["http://irail.be/stations/NMBS/008814134", "https://data.delijn.be/stops/301114"], ["http://irail.be/stations/NMBS/008845146", "https://tec.openplanner.team/stops/X750aga"], ["https://data.delijn.be/stops/408867", "https://tec.openplanner.team/stops/LFCvoer2"], ["http://irail.be/stations/NMBS/008822137", "https://data.delijn.be/stops/207710"], ["http://irail.be/stations/NMBS/008865300", "https://tec.openplanner.team/stops/X804ald"], ["https://data.delijn.be/stops/505396", "https://tec.openplanner.team/stops/H4ef113b"], ["http://irail.be/stations/NMBS/008847258", "https://tec.openplanner.team/stops/Louazot1"], ["https://data.delijn.be/stops/301680", "https://tec.openplanner.team/stops/Bnetrec2"], ["https://data.delijn.be/stops/305348", "https://tec.openplanner.team/stops/Bbgepau2"], ["http://irail.be/stations/NMBS/008894433", "https://data.delijn.be/stops/205222"], ["https://data.delijn.be/stops/408827", "https://tec.openplanner.team/stops/LMgkrui2"], ["http://irail.be/stations/NMBS/008821709", "https://data.delijn.be/stops/102617"], ["https://data.delijn.be/stops/410136", "https://tec.openplanner.team/stops/Lvomoul1"], ["https://data.delijn.be/stops/300969", "https://mivb.openplanner.team/stops/1724"], ["http://irail.be/stations/NMBS/008841327", "https://tec.openplanner.team/stops/LBIrout1"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1ml111a"], ["http://irail.be/stations/NMBS/008812229", "https://data.delijn.be/stops/306286"], ["http://irail.be/stations/NMBS/008892304", "https://data.delijn.be/stops/509503"], ["https://data.delijn.be/stops/408965", "https://tec.openplanner.team/stops/LWAbett2"], ["https://data.delijn.be/stops/304931", "https://mivb.openplanner.team/stops/9751"], ["https://data.delijn.be/stops/301315", "https://mivb.openplanner.team/stops/9801"], ["http://irail.be/stations/NMBS/008812005", "https://mivb.openplanner.team/stops/8422"], ["https://data.delijn.be/stops/305270", "https://mivb.openplanner.team/stops/2827"], ["https://data.delijn.be/stops/301083", "https://mivb.openplanner.team/stops/2022"], ["https://data.delijn.be/stops/404683", "https://tec.openplanner.team/stops/LPAbour2"], ["http://irail.be/stations/NMBS/008862018", "https://tec.openplanner.team/stops/X602ada"], ["https://mivb.openplanner.team/stops/3912", "https://tec.openplanner.team/stops/Bettgle2"], ["http://irail.be/stations/NMBS/008814175", "https://data.delijn.be/stops/304455"], ["http://irail.be/stations/NMBS/008866175", "https://tec.openplanner.team/stops/X650afc"], ["https://data.delijn.be/stops/303632", "https://mivb.openplanner.team/stops/2263"], ["https://data.delijn.be/stops/300995", "https://mivb.openplanner.team/stops/2247"], ["http://irail.be/stations/NMBS/008821006", "https://data.delijn.be/stops/103364"], ["http://irail.be/stations/NMBS/008811130", "https://mivb.openplanner.team/stops/2292B"], ["http://irail.be/stations/NMBS/008822525", "https://data.delijn.be/stops/305973"], ["https://data.delijn.be/stops/504135", "https://tec.openplanner.team/stops/H4co149b"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bsmgpla2"], ["http://irail.be/stations/NMBS/008842663", "https://tec.openplanner.team/stops/LESpaix1"], ["https://mivb.openplanner.team/stops/2764G", "https://tec.openplanner.team/stops/Buccdch1"], ["https://data.delijn.be/stops/302451", "https://tec.openplanner.team/stops/Bsjgegl1"], ["http://irail.be/stations/NMBS/008821071", "https://data.delijn.be/stops/108815"], ["https://mivb.openplanner.team/stops/6453", "https://tec.openplanner.team/stops/Bixllep2"], ["http://irail.be/stations/NMBS/008871332", "https://tec.openplanner.team/stops/Bbuztai1"], ["https://data.delijn.be/stops/401402", "https://mivb.openplanner.team/stops/3207"], ["https://data.delijn.be/stops/301010", "https://mivb.openplanner.team/stops/4055G"], ["https://data.delijn.be/stops/306904", "https://tec.openplanner.team/stops/Bgoekaz1"], ["https://data.delijn.be/stops/407581", "https://tec.openplanner.team/stops/LDpulve1"], ["https://data.delijn.be/stops/408839", "https://tec.openplanner.team/stops/LTEkl122"], ["https://data.delijn.be/stops/408858", "https://tec.openplanner.team/stops/LWRbois2"], ["http://irail.be/stations/NMBS/008861416", "https://tec.openplanner.team/stops/N522acb"], ["https://data.delijn.be/stops/208591", "https://tec.openplanner.team/stops/H1en101b"], ["https://data.delijn.be/stops/303958", "https://tec.openplanner.team/stops/Bbbksth2"], ["https://data.delijn.be/stops/302400", "https://mivb.openplanner.team/stops/1495"], ["https://data.delijn.be/stops/305518", "https://mivb.openplanner.team/stops/9169"], ["https://data.delijn.be/stops/300920", "https://mivb.openplanner.team/stops/5048"], ["https://data.delijn.be/stops/208766", "https://tec.openplanner.team/stops/H4de114b"], ["http://irail.be/stations/NMBS/008824232", "https://data.delijn.be/stops/104459"], ["https://data.delijn.be/stops/307795", "https://mivb.openplanner.team/stops/5363"], ["https://data.delijn.be/stops/302424", "https://tec.openplanner.team/stops/Bjodrga1"], ["https://data.delijn.be/stops/503331", "https://tec.openplanner.team/stops/H4do100b"], ["http://irail.be/stations/NMBS/008883121", "https://tec.openplanner.team/stops/H1ne140b"], ["http://irail.be/stations/NMBS/008832235", "https://data.delijn.be/stops/403062"], ["https://data.delijn.be/stops/408838", "https://tec.openplanner.team/stops/LRmmabr1"], ["https://data.delijn.be/stops/300907", "https://mivb.openplanner.team/stops/1913"], ["https://mivb.openplanner.team/stops/4854C", "https://tec.openplanner.team/stops/Buccobs2"], ["http://irail.be/stations/NMBS/008863156", "https://tec.openplanner.team/stops/N539bfa"], ["http://irail.be/stations/NMBS/008811155", "https://data.delijn.be/stops/300940"], ["https://data.delijn.be/stops/306902", "https://tec.openplanner.team/stops/Bgoekaz2"], ["https://data.delijn.be/stops/301752", "https://mivb.openplanner.team/stops/1099"], ["https://data.delijn.be/stops/304066", "https://tec.openplanner.team/stops/Bovehst1"], ["http://irail.be/stations/NMBS/008728105", "https://data.delijn.be/stops/504561"], ["https://data.delijn.be/stops/303223", "https://mivb.openplanner.team/stops/3851"], ["http://irail.be/stations/NMBS/008841665", "https://tec.openplanner.team/stops/Lhrmemo2"], ["https://data.delijn.be/stops/408890", "https://tec.openplanner.team/stops/LFMkrin2"], ["http://irail.be/stations/NMBS/008883808", "https://tec.openplanner.team/stops/Btubpla1"], ["https://data.delijn.be/stops/404675", "https://tec.openplanner.team/stops/LVSpota2"], ["http://irail.be/stations/NMBS/008842051", "https://tec.openplanner.team/stops/Lvcbasi*"], ["https://data.delijn.be/stops/307638", "https://mivb.openplanner.team/stops/1957B"], ["https://data.delijn.be/stops/408836", "https://tec.openplanner.team/stops/LAUcent2"], ["https://data.delijn.be/stops/305237", "https://tec.openplanner.team/stops/Bmrqgar2"], ["https://data.delijn.be/stops/301401", "https://mivb.openplanner.team/stops/2609"], ["https://data.delijn.be/stops/300935", "https://mivb.openplanner.team/stops/3407"], ["http://irail.be/stations/NMBS/008822053", "https://data.delijn.be/stops/302517"], ["http://irail.be/stations/NMBS/008821105", "https://data.delijn.be/stops/102212"], ["https://data.delijn.be/stops/301160", "https://mivb.openplanner.team/stops/1258B"], ["https://data.delijn.be/stops/508679", "https://tec.openplanner.team/stops/H4ae102b"], ["http://irail.be/stations/NMBS/008831807", "https://data.delijn.be/stops/410344"], ["https://data.delijn.be/stops/305340", "https://tec.openplanner.team/stops/Bovetsa2"], ["https://data.delijn.be/stops/300788", "https://mivb.openplanner.team/stops/1487"], ["http://irail.be/stations/NMBS/008893542", "https://data.delijn.be/stops/203240"], ["https://data.delijn.be/stops/303225", "https://mivb.openplanner.team/stops/5963"], ["https://data.delijn.be/stops/300852", "https://mivb.openplanner.team/stops/3259B"], ["https://data.delijn.be/stops/303831", "https://mivb.openplanner.team/stops/0280213"], ["https://mivb.openplanner.team/stops/3551", "https://tec.openplanner.team/stops/Baudvdr1"], ["http://irail.be/stations/NMBS/008866662", "https://tec.openplanner.team/stops/X614ahb"], ["https://data.delijn.be/stops/302848", "https://tec.openplanner.team/stops/Bwaak102"], ["https://data.delijn.be/stops/207773", "https://tec.openplanner.team/stops/H5rx137a"], ["http://irail.be/stations/NMBS/008892452", "https://data.delijn.be/stops/500938"], ["http://irail.be/stations/NMBS/008847258", "https://tec.openplanner.team/stops/Lscgare2"], ["https://data.delijn.be/stops/301403", "https://mivb.openplanner.team/stops/5727F"], ["https://data.delijn.be/stops/407205", "https://tec.openplanner.team/stops/LHTbaud2"], ["https://data.delijn.be/stops/305913", "https://mivb.openplanner.team/stops/5109"], ["http://irail.be/stations/NMBS/008814373", "https://data.delijn.be/stops/303226"], ["http://irail.be/stations/NMBS/008811437", "https://data.delijn.be/stops/301146"], ["https://data.delijn.be/stops/209411", "https://tec.openplanner.team/stops/H5rx110a"], ["https://data.delijn.be/stops/300952", "https://mivb.openplanner.team/stops/0470259"], ["https://data.delijn.be/stops/301069", "https://mivb.openplanner.team/stops/3230F"], ["https://data.delijn.be/stops/308822", "https://tec.openplanner.team/stops/Bwaak101"], ["http://irail.be/stations/NMBS/008891173", "https://data.delijn.be/stops/501018"], ["http://irail.be/stations/NMBS/008865565", "https://tec.openplanner.team/stops/X850afb"], ["https://data.delijn.be/stops/300813", "https://mivb.openplanner.team/stops/4131B"], ["https://data.delijn.be/stops/300784", "https://mivb.openplanner.team/stops/7640211"], ["https://data.delijn.be/stops/301017", "https://mivb.openplanner.team/stops/1307F"], ["https://data.delijn.be/stops/405403", "https://tec.openplanner.team/stops/Brach122"], ["http://irail.be/stations/NMBS/008884004", "https://tec.openplanner.team/stops/H1ho143c"], ["https://data.delijn.be/stops/303628", "https://tec.openplanner.team/stops/Brsrrcu1"], ["https://data.delijn.be/stops/302426", "https://tec.openplanner.team/stops/Bjodeco3"], ["https://data.delijn.be/stops/303631", "https://mivb.openplanner.team/stops/3228F"], ["https://data.delijn.be/stops/408919", "https://tec.openplanner.team/stops/LTEcamp1"], ["https://data.delijn.be/stops/301106", "https://mivb.openplanner.team/stops/5272F"], ["https://data.delijn.be/stops/400455", "https://tec.openplanner.team/stops/LEMec--1"], ["http://irail.be/stations/NMBS/008814266", "https://tec.openplanner.team/stops/Bwatfia2"], ["http://irail.be/stations/NMBS/008872520", "https://tec.openplanner.team/stops/N584bqb"], ["http://irail.be/stations/NMBS/008885068", "https://tec.openplanner.team/stops/H4rc234a"], ["http://irail.be/stations/NMBS/008886041", "https://tec.openplanner.team/stops/H5ma186b"], ["https://data.delijn.be/stops/301042", "https://mivb.openplanner.team/stops/3226B"], ["https://data.delijn.be/stops/305887", "https://mivb.openplanner.team/stops/2352"], ["https://data.delijn.be/stops/408846", "https://tec.openplanner.team/stops/LRmsmvo2"], ["https://data.delijn.be/stops/302420", "https://tec.openplanner.team/stops/Bmlngch2"], ["https://data.delijn.be/stops/300315", "https://tec.openplanner.team/stops/Bbsgrve2"], ["https://data.delijn.be/stops/307557", "https://tec.openplanner.team/stops/Bstemco1"], ["http://irail.be/stations/NMBS/008894201", "https://data.delijn.be/stops/204079"], ["http://irail.be/stations/NMBS/008814167", "https://data.delijn.be/stops/307694"], ["https://mivb.openplanner.team/stops/1160", "https://tec.openplanner.team/stops/Bbxltrv1"], ["http://irail.be/stations/NMBS/008866258", "https://tec.openplanner.team/stops/X661bca"], ["http://irail.be/stations/NMBS/008896149", "https://data.delijn.be/stops/510029"], ["https://data.delijn.be/stops/303376", "https://mivb.openplanner.team/stops/1850"], ["https://data.delijn.be/stops/308868", "https://tec.openplanner.team/stops/Bkrapri1"], ["http://irail.be/stations/NMBS/008895711", "https://data.delijn.be/stops/200973"], ["https://data.delijn.be/stops/302225", "https://tec.openplanner.team/stops/Bovelge2"], ["http://irail.be/stations/NMBS/008832227", "https://data.delijn.be/stops/401960"], ["http://irail.be/stations/NMBS/008861317", "https://tec.openplanner.team/stops/N522ama"], ["https://data.delijn.be/stops/304448", "https://tec.openplanner.team/stops/Brsgece1"], ["https://data.delijn.be/stops/302407", "https://mivb.openplanner.team/stops/7670108"], ["http://irail.be/stations/NMBS/008821824", "https://data.delijn.be/stops/108157"], ["http://irail.be/stations/NMBS/008886074", "https://tec.openplanner.team/stops/H5me106a"], ["https://mivb.openplanner.team/stops/6425F", "https://tec.openplanner.team/stops/Bsgimca2"], ["https://data.delijn.be/stops/300851", "https://mivb.openplanner.team/stops/1245"], ["https://data.delijn.be/stops/305354", "https://tec.openplanner.team/stops/Bovetsa2"], ["https://data.delijn.be/stops/305429", "https://mivb.openplanner.team/stops/1629"], ["https://data.delijn.be/stops/301943", "https://mivb.openplanner.team/stops/0470759"], ["https://data.delijn.be/stops/407721", "https://tec.openplanner.team/stops/LMalarg4"], ["https://data.delijn.be/stops/408810", "https://tec.openplanner.team/stops/LVIcarm4"], ["http://irail.be/stations/NMBS/008871647", "https://tec.openplanner.team/stops/H1so131e"], ["https://data.delijn.be/stops/306198", "https://tec.openplanner.team/stops/Bhalgja2"], ["https://mivb.openplanner.team/stops/4306", "https://tec.openplanner.team/stops/Bettgar1"], ["http://irail.be/stations/NMBS/008841558", "https://tec.openplanner.team/stops/Llghec-3"], ["http://irail.be/stations/NMBS/008865110", "https://tec.openplanner.team/stops/X725afh"], ["https://data.delijn.be/stops/301086", "https://mivb.openplanner.team/stops/2028"], ["https://data.delijn.be/stops/408836", "https://tec.openplanner.team/stops/LRmhage5"], ["https://data.delijn.be/stops/407212", "https://tec.openplanner.team/stops/LHe3com1"], ["https://data.delijn.be/stops/304552", "https://mivb.openplanner.team/stops/9679"], ["https://data.delijn.be/stops/301166", "https://mivb.openplanner.team/stops/2718"], ["https://data.delijn.be/stops/400668", "https://tec.openplanner.team/stops/LBpvue-1"], ["https://data.delijn.be/stops/401398", "https://mivb.openplanner.team/stops/1533"], ["http://irail.be/stations/NMBS/008861127", "https://tec.openplanner.team/stops/N501cwb"], ["http://irail.be/stations/NMBS/008811825", "https://tec.openplanner.team/stops/Bcsemon2"], ["http://irail.be/stations/NMBS/008849064", "https://tec.openplanner.team/stops/LVIacac1"], ["https://data.delijn.be/stops/304432", "https://tec.openplanner.team/stops/Brsgsan2"], ["http://irail.be/stations/NMBS/008822533", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/304141", "https://tec.openplanner.team/stops/Bbghgli2"], ["https://data.delijn.be/stops/207755", "https://tec.openplanner.team/stops/H5rx144b"], ["http://irail.be/stations/NMBS/008822517", "https://data.delijn.be/stops/301851"], ["http://irail.be/stations/NMBS/008821238", "https://data.delijn.be/stops/108835"], ["http://irail.be/stations/NMBS/008833274", "https://data.delijn.be/stops/308640"], ["http://irail.be/stations/NMBS/008811205", "https://mivb.openplanner.team/stops/8231"], ["https://data.delijn.be/stops/300974", "https://mivb.openplanner.team/stops/2753"], ["https://data.delijn.be/stops/304441", "https://tec.openplanner.team/stops/Brsgepr1"], ["http://irail.be/stations/NMBS/008882701", "https://tec.openplanner.team/stops/H2mg143a"], ["http://irail.be/stations/NMBS/008831138", "https://data.delijn.be/stops/400861"], ["http://irail.be/stations/NMBS/008015345", "https://tec.openplanner.team/stops/LaAbush*"], ["https://data.delijn.be/stops/303247", "https://tec.openplanner.team/stops/Blkbbeu2"], ["http://irail.be/stations/NMBS/008871373", "https://tec.openplanner.team/stops/H2gy113a"], ["https://data.delijn.be/stops/503772", "https://tec.openplanner.team/stops/H4eh100b"], ["http://irail.be/stations/NMBS/008832250", "https://data.delijn.be/stops/404221"], ["http://irail.be/stations/NMBS/008731388", "https://data.delijn.be/stops/504694"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N534bqa"], ["https://data.delijn.be/stops/302403", "https://mivb.openplanner.team/stops/7670208"], ["http://irail.be/stations/NMBS/008892254", "https://data.delijn.be/stops/509700"], ["http://irail.be/stations/NMBS/008874609", "https://tec.openplanner.team/stops/N543cfa"], ["https://data.delijn.be/stops/504323", "https://tec.openplanner.team/stops/H4mo193b"], ["https://data.delijn.be/stops/307726", "https://tec.openplanner.team/stops/Bwaucan1"], ["https://data.delijn.be/stops/306000", "https://tec.openplanner.team/stops/Bove4ko2"], ["http://irail.be/stations/NMBS/008844503", "https://tec.openplanner.team/stops/LWEgare1"], ["http://irail.be/stations/NMBS/008200132", "https://tec.openplanner.team/stops/X764afb"], ["https://data.delijn.be/stops/307792", "https://mivb.openplanner.team/stops/1755"], ["https://data.delijn.be/stops/307261", "https://mivb.openplanner.team/stops/9677"], ["https://data.delijn.be/stops/302411", "https://tec.openplanner.team/stops/Bmlngvi1"], ["https://data.delijn.be/stops/300338", "https://tec.openplanner.team/stops/Balsnie1"], ["https://mivb.openplanner.team/stops/0120126", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://data.delijn.be/stops/307970", "https://tec.openplanner.team/stops/Bbgever1"], ["http://irail.be/stations/NMBS/008811775", "https://data.delijn.be/stops/302761"], ["https://data.delijn.be/stops/304457", "https://tec.openplanner.team/stops/Brsggar2"], ["https://data.delijn.be/stops/406564", "https://tec.openplanner.team/stops/LWOrout1"], ["https://data.delijn.be/stops/302886", "https://tec.openplanner.team/stops/Bleunaa2"], ["https://data.delijn.be/stops/405364", "https://tec.openplanner.team/stops/Braclin1"], ["https://data.delijn.be/stops/404062", "https://tec.openplanner.team/stops/LWAbett2"], ["http://irail.be/stations/NMBS/008844255", "https://tec.openplanner.team/stops/LLUcdoy1"], ["http://irail.be/stations/NMBS/008845229", "https://tec.openplanner.team/stops/LTPlegr2"], ["http://irail.be/stations/NMBS/008728673", "https://tec.openplanner.team/stops/H4mo155a"], ["http://irail.be/stations/NMBS/008821907", "https://data.delijn.be/stops/106231"], ["http://irail.be/stations/NMBS/008824224", "https://data.delijn.be/stops/105972"], ["https://data.delijn.be/stops/408880", "https://tec.openplanner.team/stops/LDppana2"], ["https://data.delijn.be/stops/209191", "https://tec.openplanner.team/stops/H5el101a"], ["http://irail.be/stations/NMBS/008811437", "https://tec.openplanner.team/stops/Bwbfckr2"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2hp124c"], ["http://irail.be/stations/NMBS/008873379", "https://tec.openplanner.team/stops/Cbecarr2"], ["https://data.delijn.be/stops/305543", "https://tec.openplanner.team/stops/Brsg7fo2"], ["http://irail.be/stations/NMBS/008821402", "https://data.delijn.be/stops/104261"], ["http://irail.be/stations/NMBS/008882248", "https://tec.openplanner.team/stops/H2ca115a"], ["https://data.delijn.be/stops/301679", "https://tec.openplanner.team/stops/Bnetegl2"], ["http://irail.be/stations/NMBS/008849072", "https://tec.openplanner.team/stops/X790aib"], ["http://irail.be/stations/NMBS/008895646", "https://data.delijn.be/stops/300306"], ["https://mivb.openplanner.team/stops/0220333", "https://tec.openplanner.team/stops/Baudhan1"], ["https://data.delijn.be/stops/405731", "https://tec.openplanner.team/stops/Lrchype1"], ["https://data.delijn.be/stops/504653", "https://tec.openplanner.team/stops/H4wn124a"], ["https://data.delijn.be/stops/307976", "https://tec.openplanner.team/stops/Bwavmes2"], ["https://data.delijn.be/stops/405741", "https://tec.openplanner.team/stops/Llgelis1"], ["https://data.delijn.be/stops/207754", "https://tec.openplanner.team/stops/H4ss155a"], ["https://data.delijn.be/stops/302445", "https://tec.openplanner.team/stops/Bsrgm102"], ["http://irail.be/stations/NMBS/008864345", "https://tec.openplanner.team/stops/X902afa"], ["https://data.delijn.be/stops/300761", "https://mivb.openplanner.team/stops/7640311"], ["http://irail.be/stations/NMBS/008893039", "https://data.delijn.be/stops/203938"], ["http://irail.be/stations/NMBS/008831088", "https://data.delijn.be/stops/403968"], ["https://data.delijn.be/stops/300977", "https://mivb.openplanner.team/stops/2974"], ["https://data.delijn.be/stops/307205", "https://tec.openplanner.team/stops/Bcbqegl1"], ["https://data.delijn.be/stops/300994", "https://mivb.openplanner.team/stops/1642F"], ["http://irail.be/stations/NMBS/008881505", "https://tec.openplanner.team/stops/H1al108b"], ["http://irail.be/stations/NMBS/008892338", "https://data.delijn.be/stops/501004"], ["http://irail.be/stations/NMBS/008893211", "https://data.delijn.be/stops/202011"], ["https://data.delijn.be/stops/306048", "https://mivb.openplanner.team/stops/6012G"], ["http://irail.be/stations/NMBS/008879004", "https://tec.openplanner.team/stops/H1er108d"], ["https://data.delijn.be/stops/301006", "https://mivb.openplanner.team/stops/1304"], ["https://data.delijn.be/stops/301061", "https://mivb.openplanner.team/stops/5072"], ["https://mivb.openplanner.team/stops/1949", "https://tec.openplanner.team/stops/Bucceng1"], ["https://data.delijn.be/stops/304028", "https://tec.openplanner.team/stops/Bovejme2"], ["http://irail.be/stations/NMBS/008200518", "https://tec.openplanner.team/stops/X688aab"], ["http://irail.be/stations/NMBS/008832409", "https://data.delijn.be/stops/107603"], ["https://data.delijn.be/stops/302449", "https://tec.openplanner.team/stops/Bzluvil1"], ["https://data.delijn.be/stops/304069", "https://tec.openplanner.team/stops/Bovevri1"], ["https://data.delijn.be/stops/301134", "https://tec.openplanner.team/stops/Buccham1"], ["https://data.delijn.be/stops/405737", "https://tec.openplanner.team/stops/Lrcvill4"], ["https://data.delijn.be/stops/306814", "https://mivb.openplanner.team/stops/1569B"], ["https://data.delijn.be/stops/408831", "https://tec.openplanner.team/stops/LMgbern2"], ["https://data.delijn.be/stops/408826", "https://tec.openplanner.team/stops/LMgkrui2"], ["http://irail.be/stations/NMBS/008821154", "https://data.delijn.be/stops/104310"], ["https://data.delijn.be/stops/405335", "https://tec.openplanner.team/stops/Bneelaa1"], ["http://irail.be/stations/NMBS/008821725", "https://data.delijn.be/stops/108243"], ["http://irail.be/stations/NMBS/008811304", "https://mivb.openplanner.team/stops/1131B"], ["http://irail.be/stations/NMBS/008871308", "https://tec.openplanner.team/stops/Cpctunn2"], ["http://irail.be/stations/NMBS/008832375", "https://data.delijn.be/stops/403291"], ["https://data.delijn.be/stops/405449", "https://tec.openplanner.team/stops/LWscona1"], ["http://irail.be/stations/NMBS/008872306", "https://tec.openplanner.team/stops/Cjuecha1"], ["http://irail.be/stations/NMBS/008841467", "https://tec.openplanner.team/stops/LMOfrel2"], ["http://irail.be/stations/NMBS/008863438", "https://tec.openplanner.team/stops/N506bea"], ["http://irail.be/stations/NMBS/008832003", "https://data.delijn.be/stops/405582"], ["http://irail.be/stations/NMBS/008812112", "https://data.delijn.be/stops/302153"], ["https://data.delijn.be/stops/308534", "https://mivb.openplanner.team/stops/9553"], ["http://irail.be/stations/NMBS/008865003", "https://tec.openplanner.team/stops/X801bde"], ["http://irail.be/stations/NMBS/008814365", "https://mivb.openplanner.team/stops/9685"], ["https://data.delijn.be/stops/306115", "https://mivb.openplanner.team/stops/7720103"], ["http://irail.be/stations/NMBS/008811262", "https://data.delijn.be/stops/302721"], ["https://data.delijn.be/stops/302924", "https://tec.openplanner.team/stops/Bhevgar1"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1et101a"], ["http://irail.be/stations/NMBS/008893518", "https://data.delijn.be/stops/207308"], ["https://data.delijn.be/stops/301812", "https://mivb.openplanner.team/stops/5776"], ["http://irail.be/stations/NMBS/008896305", "https://data.delijn.be/stops/503569"], ["https://data.delijn.be/stops/300824", "https://mivb.openplanner.team/stops/6607"], ["https://data.delijn.be/stops/308105", "https://tec.openplanner.team/stops/Bsrgcur1"], ["https://data.delijn.be/stops/208416", "https://tec.openplanner.team/stops/H4rs119a"], ["https://data.delijn.be/stops/304102", "https://tec.openplanner.team/stops/Bove4ko2"], ["https://data.delijn.be/stops/206784", "https://tec.openplanner.team/stops/H1gy114a"], ["http://irail.be/stations/NMBS/008884889", "https://tec.openplanner.team/stops/H4ca120a"], ["https://data.delijn.be/stops/410133", "https://tec.openplanner.team/stops/LJU51--1"], ["https://data.delijn.be/stops/404067", "https://tec.openplanner.team/stops/LAOeg--1"], ["http://irail.be/stations/NMBS/008892106", "https://data.delijn.be/stops/210115"], ["https://data.delijn.be/stops/404681", "https://tec.openplanner.team/stops/LPAeg--1"], ["https://data.delijn.be/stops/400451", "https://tec.openplanner.team/stops/LBPmais2"], ["https://data.delijn.be/stops/301013", "https://mivb.openplanner.team/stops/4101"], ["https://data.delijn.be/stops/408950", "https://tec.openplanner.team/stops/LWAathe2"], ["https://data.delijn.be/stops/301923", "https://mivb.openplanner.team/stops/2069"], ["https://data.delijn.be/stops/306068", "https://tec.openplanner.team/stops/Blemwro1"], ["http://irail.be/stations/NMBS/008832573", "https://data.delijn.be/stops/405524"], ["https://data.delijn.be/stops/306310", "https://mivb.openplanner.team/stops/5724"], ["https://mivb.openplanner.team/stops/5208", "https://tec.openplanner.team/stops/Buccdef2"], ["http://irail.be/stations/NMBS/008844255", "https://tec.openplanner.team/stops/LFreg--1"], ["https://data.delijn.be/stops/300763", "https://mivb.openplanner.team/stops/1201"], ["http://irail.be/stations/NMBS/008814159", "https://data.delijn.be/stops/307648"], ["http://irail.be/stations/NMBS/008884715", "https://tec.openplanner.team/stops/H5qu182b"], ["https://data.delijn.be/stops/307152", "https://tec.openplanner.team/stops/Bhalomo2"], ["https://data.delijn.be/stops/407231", "https://tec.openplanner.team/stops/LLGramk3"], ["http://irail.be/stations/NMBS/008893054", "https://data.delijn.be/stops/201604"], ["http://irail.be/stations/NMBS/008811197", "https://mivb.openplanner.team/stops/0070221"], ["http://irail.be/stations/NMBS/008893518", "https://data.delijn.be/stops/204212"], ["https://data.delijn.be/stops/208355", "https://tec.openplanner.team/stops/H5rx121b"], ["https://data.delijn.be/stops/208417", "https://tec.openplanner.team/stops/H4rs118a"], ["https://data.delijn.be/stops/304451", "https://tec.openplanner.team/stops/Brsgfso2"], ["http://irail.be/stations/NMBS/008892080", "https://data.delijn.be/stops/201282"], ["https://data.delijn.be/stops/301116", "https://mivb.openplanner.team/stops/3522"], ["http://irail.be/stations/NMBS/008821444", "https://data.delijn.be/stops/102906"], ["http://irail.be/stations/NMBS/008822426", "https://data.delijn.be/stops/105138"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N553aca"], ["https://data.delijn.be/stops/301070", "https://mivb.openplanner.team/stops/1145"], ["https://data.delijn.be/stops/408916", "https://tec.openplanner.team/stops/LFPzwaa1"], ["https://data.delijn.be/stops/208406", "https://tec.openplanner.team/stops/H5rx149a"], ["https://data.delijn.be/stops/302399", "https://mivb.openplanner.team/stops/7690206"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1mj125b"], ["http://irail.be/stations/NMBS/008814175", "https://data.delijn.be/stops/307718"], ["http://irail.be/stations/NMBS/008861440", "https://tec.openplanner.team/stops/N527ada"], ["https://data.delijn.be/stops/408898", "https://tec.openplanner.team/stops/LFProt-2"], ["https://data.delijn.be/stops/307969", "https://tec.openplanner.team/stops/Bwavzno1"], ["https://data.delijn.be/stops/509133", "https://tec.openplanner.team/stops/H4co149b"], ["https://data.delijn.be/stops/401413", "https://mivb.openplanner.team/stops/4304"], ["https://data.delijn.be/stops/300784", "https://mivb.openplanner.team/stops/3610F"], ["https://data.delijn.be/stops/305503", "https://mivb.openplanner.team/stops/2015"], ["http://irail.be/stations/NMBS/008819406", "https://mivb.openplanner.team/stops/9600B"], ["https://data.delijn.be/stops/300754", "https://mivb.openplanner.team/stops/2373"], ["http://irail.be/stations/NMBS/008893013", "https://data.delijn.be/stops/200629"], ["http://irail.be/stations/NMBS/008871332", "https://tec.openplanner.team/stops/Bobacou2"], ["https://data.delijn.be/stops/304434", "https://tec.openplanner.team/stops/Bblapri1"], ["https://data.delijn.be/stops/401650", "https://tec.openplanner.team/stops/Bracgar1"], ["https://data.delijn.be/stops/404652", "https://tec.openplanner.team/stops/Llaacca2"], ["https://data.delijn.be/stops/305433", "https://mivb.openplanner.team/stops/5521"], ["https://data.delijn.be/stops/404671", "https://tec.openplanner.team/stops/LJUmate2"], ["https://data.delijn.be/stops/208745", "https://tec.openplanner.team/stops/H4rs118a"], ["http://irail.be/stations/NMBS/008894508", "https://data.delijn.be/stops/205099"], ["https://data.delijn.be/stops/400491", "https://tec.openplanner.team/stops/LBSchar1"], ["https://data.delijn.be/stops/304719", "https://mivb.openplanner.team/stops/9311"], ["http://irail.be/stations/NMBS/008843430", "https://tec.openplanner.team/stops/LBscasi2"], ["https://data.delijn.be/stops/306661", "https://mivb.openplanner.team/stops/9825F"], ["http://irail.be/stations/NMBS/008884350", "https://tec.openplanner.team/stops/H1tl120b"], ["https://data.delijn.be/stops/302387", "https://tec.openplanner.team/stops/Bwavlon1"], ["https://data.delijn.be/stops/404674", "https://tec.openplanner.team/stops/LVSpota1"], ["http://irail.be/stations/NMBS/008832664", "https://data.delijn.be/stops/409009"], ["http://irail.be/stations/NMBS/008832235", "https://data.delijn.be/stops/410034"], ["http://irail.be/stations/NMBS/008833308", "https://data.delijn.be/stops/305197"], ["https://data.delijn.be/stops/302424", "https://tec.openplanner.team/stops/Bjodfab2"], ["http://irail.be/stations/NMBS/008864915", "https://tec.openplanner.team/stops/N254aea"], ["http://irail.be/stations/NMBS/008821311", "https://data.delijn.be/stops/103043"], ["http://irail.be/stations/NMBS/008881000", "https://tec.openplanner.team/stops/H1ms280d"], ["http://irail.be/stations/NMBS/008861168", "https://tec.openplanner.team/stops/N534axb"], ["https://data.delijn.be/stops/302442", "https://tec.openplanner.team/stops/Bzlucam1"], ["https://data.delijn.be/stops/302218", "https://tec.openplanner.team/stops/Bhoeboo1"], ["https://data.delijn.be/stops/305466", "https://mivb.openplanner.team/stops/0340141"], ["http://irail.be/stations/NMBS/008841319", "https://tec.openplanner.team/stops/Lghlogi2"], ["https://data.delijn.be/stops/405736", "https://tec.openplanner.team/stops/Lrctec-2"], ["http://irail.be/stations/NMBS/008200110", "https://tec.openplanner.team/stops/X685afb"], ["https://mivb.openplanner.team/stops/9578", "https://tec.openplanner.team/stops/Bovejei1"], ["http://irail.be/stations/NMBS/008844347", "https://tec.openplanner.team/stops/LLrgare2"], ["https://data.delijn.be/stops/504381", "https://tec.openplanner.team/stops/H4pl136a"], ["http://irail.be/stations/NMBS/008861135", "https://tec.openplanner.team/stops/N533aea"], ["https://data.delijn.be/stops/304913", "https://tec.openplanner.team/stops/Bovelge1"], ["https://data.delijn.be/stops/304641", "https://mivb.openplanner.team/stops/1745"], ["http://irail.be/stations/NMBS/008821196", "https://data.delijn.be/stops/104408"], ["http://irail.be/stations/NMBS/008849023", "https://tec.openplanner.team/stops/LhGfl241"], ["https://data.delijn.be/stops/300739", "https://mivb.openplanner.team/stops/2225"], ["http://irail.be/stations/NMBS/008842853", "https://tec.openplanner.team/stops/X982agb"], ["https://data.delijn.be/stops/305168", "https://tec.openplanner.team/stops/Bbosdra1"], ["https://data.delijn.be/stops/300944", "https://mivb.openplanner.team/stops/1684F"], ["http://irail.be/stations/NMBS/008719100", "https://tec.openplanner.team/stops/X687afa"], ["http://irail.be/stations/NMBS/008871688", "https://tec.openplanner.team/stops/Csbberg1"], ["http://irail.be/stations/NMBS/008832664", "https://data.delijn.be/stops/402856"], ["https://data.delijn.be/stops/305295", "https://mivb.openplanner.team/stops/9609"], ["https://data.delijn.be/stops/301401", "https://mivb.openplanner.team/stops/2610"], ["https://data.delijn.be/stops/404667", "https://tec.openplanner.team/stops/LJUmc--2"], ["http://irail.be/stations/NMBS/008873387", "https://tec.openplanner.team/stops/Chhsncb1"], ["http://irail.be/stations/NMBS/008831005", "https://data.delijn.be/stops/403104"], ["https://data.delijn.be/stops/504319", "https://tec.openplanner.team/stops/H4mo154a"], ["http://irail.be/stations/NMBS/008895240", "https://data.delijn.be/stops/203348"], ["https://data.delijn.be/stops/308868", "https://mivb.openplanner.team/stops/1668"], ["http://irail.be/stations/NMBS/008811536", "https://tec.openplanner.team/stops/Brixfro3"], ["https://data.delijn.be/stops/306311", "https://mivb.openplanner.team/stops/5822F"], ["https://data.delijn.be/stops/307002", "https://tec.openplanner.team/stops/Bjodath1"], ["https://data.delijn.be/stops/307688", "https://mivb.openplanner.team/stops/1939"], ["https://data.delijn.be/stops/306049", "https://mivb.openplanner.team/stops/0526"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/Cchriga2"], ["https://data.delijn.be/stops/307912", "https://tec.openplanner.team/stops/Bhalgar1"], ["http://irail.be/stations/NMBS/008891652", "https://data.delijn.be/stops/501655"], ["https://data.delijn.be/stops/300833", "https://mivb.openplanner.team/stops/2532"], ["https://data.delijn.be/stops/307639", "https://mivb.openplanner.team/stops/1958B"], ["https://data.delijn.be/stops/300920", "https://mivb.openplanner.team/stops/5361"], ["https://data.delijn.be/stops/300949", "https://mivb.openplanner.team/stops/1687F"], ["http://irail.be/stations/NMBS/008895471", "https://data.delijn.be/stops/206277"], ["https://data.delijn.be/stops/303573", "https://mivb.openplanner.team/stops/9726"], ["https://data.delijn.be/stops/304435", "https://tec.openplanner.team/stops/Brsga811"], ["https://data.delijn.be/stops/300861", "https://mivb.openplanner.team/stops/4271"], ["https://data.delijn.be/stops/301685", "https://tec.openplanner.team/stops/Bnettou1"], ["https://data.delijn.be/stops/302891", "https://tec.openplanner.team/stops/Bhevjal1"], ["http://irail.be/stations/NMBS/008812005", "https://mivb.openplanner.team/stops/1901"], ["https://data.delijn.be/stops/305144", "https://tec.openplanner.team/stops/H1mk108a"], ["https://data.delijn.be/stops/302849", "https://tec.openplanner.team/stops/Bwaab122"], ["https://data.delijn.be/stops/302806", "https://mivb.openplanner.team/stops/5530"], ["https://data.delijn.be/stops/504294", "https://tec.openplanner.team/stops/H4mo158b"], ["https://data.delijn.be/stops/509230", "https://tec.openplanner.team/stops/H4co158a"], ["https://data.delijn.be/stops/300826", "https://mivb.openplanner.team/stops/0430348"], ["https://data.delijn.be/stops/303950", "https://tec.openplanner.team/stops/Bbldvaa1"], ["https://mivb.openplanner.team/stops/5454F", "https://tec.openplanner.team/stops/Bwbfgar1"], ["https://data.delijn.be/stops/301043", "https://mivb.openplanner.team/stops/0370438"], ["https://data.delijn.be/stops/304027", "https://mivb.openplanner.team/stops/9551"], ["https://data.delijn.be/stops/307004", "https://tec.openplanner.team/stops/Blkbbvh2"], ["http://irail.be/stations/NMBS/008871308", "https://tec.openplanner.team/stops/Cpcwaut1"], ["http://irail.be/stations/NMBS/008015588", "https://tec.openplanner.team/stops/LaHzoll*"], ["http://irail.be/stations/NMBS/008864931", "https://tec.openplanner.team/stops/N241aca"], ["https://data.delijn.be/stops/301923", "https://mivb.openplanner.team/stops/2025"], ["http://irail.be/stations/NMBS/008864501", "https://tec.openplanner.team/stops/N201ava"], ["http://irail.be/stations/NMBS/008881315", "https://tec.openplanner.team/stops/H1ni323a"], ["http://irail.be/stations/NMBS/008722326", "https://data.delijn.be/stops/504567"], ["https://data.delijn.be/stops/408957", "https://tec.openplanner.team/stops/LWAwila1"], ["https://data.delijn.be/stops/300828", "https://mivb.openplanner.team/stops/2810"], ["http://irail.be/stations/NMBS/008863453", "https://tec.openplanner.team/stops/N504aca"], ["https://mivb.openplanner.team/stops/1969", "https://tec.openplanner.team/stops/Buccdho1"], ["https://mivb.openplanner.team/stops/6109", "https://tec.openplanner.team/stops/Bsgimor1"], ["https://data.delijn.be/stops/408829", "https://tec.openplanner.team/stops/LVItroi*"], ["https://data.delijn.be/stops/401401", "https://mivb.openplanner.team/stops/3200"], ["https://data.delijn.be/stops/209182", "https://tec.openplanner.team/stops/H5rx132a"], ["https://data.delijn.be/stops/405733", "https://tec.openplanner.team/stops/Lrclant2"], ["https://data.delijn.be/stops/304071", "https://tec.openplanner.team/stops/Bgnvfai1"], ["https://data.delijn.be/stops/208758", "https://tec.openplanner.team/stops/H5rx105b"], ["http://irail.be/stations/NMBS/008822533", "https://data.delijn.be/stops/301859"], ["https://data.delijn.be/stops/301106", "https://mivb.openplanner.team/stops/1857"], ["http://irail.be/stations/NMBS/008811635", "https://tec.openplanner.team/stops/Blmlpla1"], ["https://data.delijn.be/stops/301145", "https://mivb.openplanner.team/stops/2117B"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2le148a"], ["https://data.delijn.be/stops/405462", "https://tec.openplanner.team/stops/LWHtrui1"], ["http://irail.be/stations/NMBS/008891009", "https://data.delijn.be/stops/500041"], ["https://data.delijn.be/stops/305888", "https://mivb.openplanner.team/stops/2352"], ["https://data.delijn.be/stops/404843", "https://tec.openplanner.team/stops/LEMeg--2"], ["https://data.delijn.be/stops/303832", "https://mivb.openplanner.team/stops/0280213"], ["http://irail.be/stations/NMBS/008844321", "https://tec.openplanner.team/stops/LJSeg--2"], ["http://irail.be/stations/NMBS/008893526", "https://data.delijn.be/stops/206281"], ["https://data.delijn.be/stops/307162", "https://tec.openplanner.team/stops/Bhalalb1"], ["https://data.delijn.be/stops/408746", "https://tec.openplanner.team/stops/LTowijk1"], ["https://data.delijn.be/stops/408811", "https://tec.openplanner.team/stops/LHAclin2"], ["https://data.delijn.be/stops/305514", "https://mivb.openplanner.team/stops/9169"], ["https://data.delijn.be/stops/507748", "https://tec.openplanner.team/stops/H4ae100a"], ["https://data.delijn.be/stops/301004", "https://mivb.openplanner.team/stops/5359"], ["https://data.delijn.be/stops/209408", "https://tec.openplanner.team/stops/H5rx139a"], ["https://data.delijn.be/stops/305280", "https://mivb.openplanner.team/stops/1143"], ["https://data.delijn.be/stops/405745", "https://tec.openplanner.team/stops/Llgpire2"], ["https://data.delijn.be/stops/400468", "https://tec.openplanner.team/stops/LEMeg--2"], ["http://irail.be/stations/NMBS/008812112", "https://data.delijn.be/stops/306825"], ["https://data.delijn.be/stops/207758", "https://tec.openplanner.team/stops/H5rx134a"], ["http://irail.be/stations/NMBS/008892320", "https://data.delijn.be/stops/509499"], ["https://data.delijn.be/stops/301121", "https://tec.openplanner.team/stops/Buccdef2"], ["http://irail.be/stations/NMBS/008811163", "https://mivb.openplanner.team/stops/3214"], ["https://data.delijn.be/stops/405706", "https://tec.openplanner.team/stops/Llgcadr3"], ["http://irail.be/stations/NMBS/008872587", "https://tec.openplanner.team/stops/Btanvil1"], ["http://irail.be/stations/NMBS/008892635", "https://data.delijn.be/stops/208278"], ["https://data.delijn.be/stops/307690", "https://mivb.openplanner.team/stops/1935"], ["http://irail.be/stations/NMBS/008811775", "https://data.delijn.be/stops/301683"], ["https://data.delijn.be/stops/407582", "https://tec.openplanner.team/stops/LDpzol-1"], ["http://irail.be/stations/NMBS/008831401", "https://data.delijn.be/stops/308259"], ["http://irail.be/stations/NMBS/008885001", "https://tec.openplanner.team/stops/H4ty397b"], ["https://data.delijn.be/stops/301944", "https://mivb.openplanner.team/stops/2508"], ["https://data.delijn.be/stops/300314", "https://tec.openplanner.team/stops/Bhmmlad1"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1ba113a"], ["http://irail.be/stations/NMBS/008822459", "https://data.delijn.be/stops/300683"], ["http://irail.be/stations/NMBS/008814332", "https://data.delijn.be/stops/307599"], ["https://data.delijn.be/stops/207797", "https://tec.openplanner.team/stops/H5rx104b"], ["https://data.delijn.be/stops/410143", "https://tec.openplanner.team/stops/LlgPRVo2"], ["http://irail.be/stations/NMBS/008811197", "https://mivb.openplanner.team/stops/1136"], ["https://data.delijn.be/stops/404833", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://data.delijn.be/stops/308874", "https://mivb.openplanner.team/stops/1509"], ["http://irail.be/stations/NMBS/008832250", "https://data.delijn.be/stops/404242"], ["https://mivb.openplanner.team/stops/4857B", "https://tec.openplanner.team/stops/Buccmer2"], ["http://irail.be/stations/NMBS/008811676", "https://tec.openplanner.team/stops/Bllngar4"], ["http://irail.be/stations/NMBS/008864501", "https://tec.openplanner.team/stops/N201aec"], ["https://data.delijn.be/stops/408922", "https://tec.openplanner.team/stops/LTEcamp2"], ["http://irail.be/stations/NMBS/008891314", "https://data.delijn.be/stops/502636"], ["http://irail.be/stations/NMBS/008811411", "https://tec.openplanner.team/stops/Bettgar1"], ["http://irail.be/stations/NMBS/008874005", "https://tec.openplanner.team/stops/Cctpass2"], ["https://data.delijn.be/stops/408836", "https://tec.openplanner.team/stops/LFPstro1"], ["https://data.delijn.be/stops/305318", "https://mivb.openplanner.team/stops/2853"], ["http://irail.be/stations/NMBS/008811429", "https://mivb.openplanner.team/stops/4310"], ["https://data.delijn.be/stops/305338", "https://tec.openplanner.team/stops/Bwavtrt2"], ["https://data.delijn.be/stops/302850", "https://tec.openplanner.team/stops/Bwaak102"], ["https://data.delijn.be/stops/300972", "https://mivb.openplanner.team/stops/3553"], ["http://irail.be/stations/NMBS/008821444", "https://data.delijn.be/stops/104287"], ["https://data.delijn.be/stops/209195", "https://tec.openplanner.team/stops/H5rx140a"], ["https://data.delijn.be/stops/307807", "https://mivb.openplanner.team/stops/1115"], ["https://data.delijn.be/stops/300862", "https://mivb.openplanner.team/stops/4258"], ["https://data.delijn.be/stops/408883", "https://tec.openplanner.team/stops/LWRcruc1"], ["http://irail.be/stations/NMBS/008895257", "https://data.delijn.be/stops/208687"], ["https://data.delijn.be/stops/304075", "https://tec.openplanner.team/stops/Bovepla2"], ["https://data.delijn.be/stops/405733", "https://tec.openplanner.team/stops/Lrcarse1"], ["https://data.delijn.be/stops/307714", "https://mivb.openplanner.team/stops/4319"], ["https://data.delijn.be/stops/302832", "https://tec.openplanner.team/stops/LLasta-*"], ["https://data.delijn.be/stops/403701", "https://tec.openplanner.team/stops/LBGjacq2"], ["https://data.delijn.be/stops/300812", "https://mivb.openplanner.team/stops/7790356"], ["http://irail.be/stations/NMBS/008896115", "https://data.delijn.be/stops/503218"], ["http://irail.be/stations/NMBS/008821311", "https://data.delijn.be/stops/104014"], ["http://irail.be/stations/NMBS/008893252", "https://data.delijn.be/stops/210856"], ["http://irail.be/stations/NMBS/008864949", "https://tec.openplanner.team/stops/N563aaa"], ["http://irail.be/stations/NMBS/008842002", "https://tec.openplanner.team/stops/Llgcond2"], ["https://data.delijn.be/stops/304688", "https://tec.openplanner.team/stops/Bhalomo1"], ["https://data.delijn.be/stops/505396", "https://tec.openplanner.team/stops/H4ae102a"], ["https://data.delijn.be/stops/305388", "https://mivb.openplanner.team/stops/4223"], ["https://mivb.openplanner.team/stops/2037", "https://tec.openplanner.team/stops/Bwolvan1"], ["http://irail.be/stations/NMBS/008846201", "https://tec.openplanner.team/stops/LVIgare2"], ["https://data.delijn.be/stops/301046", "https://mivb.openplanner.team/stops/1792"], ["https://data.delijn.be/stops/407202", "https://tec.openplanner.team/stops/LHTbeau2"], ["https://data.delijn.be/stops/207765", "https://tec.openplanner.team/stops/H5rx102b"], ["http://irail.be/stations/NMBS/008861168", "https://tec.openplanner.team/stops/N534aba"], ["http://irail.be/stations/NMBS/008842846", "https://tec.openplanner.team/stops/LHaeg--1"], ["https://data.delijn.be/stops/305225", "https://mivb.openplanner.team/stops/9753"], ["http://irail.be/stations/NMBS/008200136", "https://tec.openplanner.team/stops/X761aaa"], ["https://data.delijn.be/stops/208590", "https://tec.openplanner.team/stops/H1en101b"], ["https://data.delijn.be/stops/302428", "https://tec.openplanner.team/stops/Bjodcar2"], ["https://data.delijn.be/stops/304317", "https://mivb.openplanner.team/stops/9702"], ["https://data.delijn.be/stops/304437", "https://tec.openplanner.team/stops/Brsgsan2"], ["https://data.delijn.be/stops/305916", "https://mivb.openplanner.team/stops/4661B"], ["https://data.delijn.be/stops/300014", "https://mivb.openplanner.team/stops/9678"], ["http://irail.be/stations/NMBS/008873312", "https://tec.openplanner.team/stops/N137aga"], ["https://data.delijn.be/stops/307324", "https://mivb.openplanner.team/stops/1486B"], ["https://mivb.openplanner.team/stops/1739", "https://tec.openplanner.team/stops/Buccptj1"], ["https://data.delijn.be/stops/301145", "https://tec.openplanner.team/stops/Buccpin2"], ["https://data.delijn.be/stops/408897", "https://tec.openplanner.team/stops/LFPgeme2"], ["http://irail.be/stations/NMBS/008843224", "https://tec.openplanner.team/stops/Lfh-sci1"], ["https://data.delijn.be/stops/304178", "https://tec.openplanner.team/stops/Bbldass1"], ["http://irail.be/stations/NMBS/008814365", "https://data.delijn.be/stops/304606"], ["https://data.delijn.be/stops/308733", "https://tec.openplanner.team/stops/Bgoemgr1"], ["http://irail.be/stations/NMBS/008861416", "https://tec.openplanner.team/stops/N541aba"], ["https://data.delijn.be/stops/404663", "https://tec.openplanner.team/stops/LPAbrun1"], ["https://data.delijn.be/stops/301085", "https://mivb.openplanner.team/stops/1551"], ["http://irail.be/stations/NMBS/008812021", "https://data.delijn.be/stops/300812"], ["https://data.delijn.be/stops/404653", "https://tec.openplanner.team/stops/Llabriq2"], ["https://mivb.openplanner.team/stops/5860", "https://tec.openplanner.team/stops/Buccbou2"], ["https://data.delijn.be/stops/300324", "https://tec.openplanner.team/stops/Balsnay2"], ["https://data.delijn.be/stops/301011", "https://mivb.openplanner.team/stops/1108"], ["https://data.delijn.be/stops/405455", "https://tec.openplanner.team/stops/LWHkape1"], ["https://data.delijn.be/stops/304450", "https://tec.openplanner.team/stops/Brsgece1"], ["https://data.delijn.be/stops/208610", "https://tec.openplanner.team/stops/H1by109b"], ["http://irail.be/stations/NMBS/008849064", "https://tec.openplanner.team/stops/LLxcrem1"], ["http://irail.be/stations/NMBS/008881190", "https://tec.openplanner.team/stops/H1ml110b"], ["https://data.delijn.be/stops/509291", "https://tec.openplanner.team/stops/H4wn129a"], ["https://mivb.openplanner.team/stops/1806", "https://tec.openplanner.team/stops/Bettcha1"], ["http://irail.be/stations/NMBS/008841608", "https://tec.openplanner.team/stops/Lhrmare8"], ["https://mivb.openplanner.team/stops/6406", "https://tec.openplanner.team/stops/Bixllep2"], ["https://data.delijn.be/stops/305437", "https://tec.openplanner.team/stops/Boveker2"], ["https://data.delijn.be/stops/504455", "https://tec.openplanner.team/stops/H4tg162a"], ["https://mivb.openplanner.team/stops/3530", "https://tec.openplanner.team/stops/Baudsta2"], ["http://irail.be/stations/NMBS/008821121", "https://data.delijn.be/stops/102886"], ["http://irail.be/stations/NMBS/008893039", "https://data.delijn.be/stops/211052"], ["http://irail.be/stations/NMBS/008841467", "https://tec.openplanner.team/stops/LMOfrel1"], ["http://irail.be/stations/NMBS/008841400", "https://tec.openplanner.team/stops/LWAloui1"], ["http://irail.be/stations/NMBS/008814365", "https://mivb.openplanner.team/stops/9651"], ["http://irail.be/stations/NMBS/008811262", "https://data.delijn.be/stops/302736"], ["https://data.delijn.be/stops/308867", "https://mivb.openplanner.team/stops/5656"], ["http://irail.be/stations/NMBS/008895638", "https://data.delijn.be/stops/307300"], ["https://data.delijn.be/stops/301031", "https://tec.openplanner.team/stops/Bsgipmo1"], ["http://irail.be/stations/NMBS/008814431", "https://mivb.openplanner.team/stops/1932"], ["https://data.delijn.be/stops/300390", "https://mivb.openplanner.team/stops/9678"], ["https://data.delijn.be/stops/509737", "https://tec.openplanner.team/stops/H4mo206a"], ["https://data.delijn.be/stops/400455", "https://tec.openplanner.team/stops/LEBdoct2"], ["http://irail.be/stations/NMBS/008811759", "https://tec.openplanner.team/stops/Bgzddge1"], ["http://irail.be/stations/NMBS/008895802", "https://data.delijn.be/stops/207101"], ["https://data.delijn.be/stops/304114", "https://tec.openplanner.team/stops/Bovevri2"], ["https://data.delijn.be/stops/300972", "https://tec.openplanner.team/stops/Baudvdr1"], ["http://irail.be/stations/NMBS/008872587", "https://tec.openplanner.team/stops/Bbstchv1"], ["https://data.delijn.be/stops/408798", "https://tec.openplanner.team/stops/LOTsav-1"], ["http://irail.be/stations/NMBS/008885704", "https://tec.openplanner.team/stops/H4mo172a"], ["http://irail.be/stations/NMBS/008881562", "https://tec.openplanner.team/stops/H1ge116b"], ["https://data.delijn.be/stops/308867", "https://mivb.openplanner.team/stops/1826"], ["https://data.delijn.be/stops/404665", "https://tec.openplanner.team/stops/LPAvill1"], ["http://irail.be/stations/NMBS/008814142", "https://mivb.openplanner.team/stops/1944"], ["http://irail.be/stations/NMBS/008885522", "https://tec.openplanner.team/stops/H4ag102b"], ["https://data.delijn.be/stops/300623", "https://tec.openplanner.team/stops/Bbeamon2"], ["http://irail.be/stations/NMBS/008874005", "https://tec.openplanner.team/stops/Ccugend1"], ["https://data.delijn.be/stops/407567", "https://tec.openplanner.team/stops/LWHzave1"], ["https://data.delijn.be/stops/207760", "https://tec.openplanner.team/stops/H5rx136b"], ["https://data.delijn.be/stops/304599", "https://mivb.openplanner.team/stops/1382"], ["https://data.delijn.be/stops/405428", "https://tec.openplanner.team/stops/Blanmde1"], ["http://irail.be/stations/NMBS/008721222", "https://tec.openplanner.team/stops/LaHzoll*"], ["https://data.delijn.be/stops/307726", "https://tec.openplanner.team/stops/Bhalvla1"], ["http://irail.be/stations/NMBS/008866258", "https://tec.openplanner.team/stops/X661bcb"], ["http://irail.be/stations/NMBS/008894425", "https://data.delijn.be/stops/205228"], ["http://irail.be/stations/NMBS/008885068", "https://tec.openplanner.team/stops/H4fr139a"], ["http://irail.be/stations/NMBS/008865128", "https://tec.openplanner.team/stops/X725apb"], ["https://data.delijn.be/stops/407772", "https://tec.openplanner.team/stops/LTEkl122"], ["https://data.delijn.be/stops/301132", "https://mivb.openplanner.team/stops/5208"], ["http://irail.be/stations/NMBS/008812062", "https://data.delijn.be/stops/307476"], ["https://data.delijn.be/stops/307243", "https://mivb.openplanner.team/stops/0350640"], ["http://irail.be/stations/NMBS/008842853", "https://tec.openplanner.team/stops/LHaxhor1"], ["http://irail.be/stations/NMBS/008894201", "https://data.delijn.be/stops/205832"], ["https://data.delijn.be/stops/300747", "https://mivb.openplanner.team/stops/5297B"], ["https://data.delijn.be/stops/408801", "https://tec.openplanner.team/stops/LVIacac1"], ["https://data.delijn.be/stops/301063", "https://mivb.openplanner.team/stops/1201"], ["https://data.delijn.be/stops/305928", "https://mivb.openplanner.team/stops/5700G"], ["https://data.delijn.be/stops/307490", "https://mivb.openplanner.team/stops/9658"], ["https://mivb.openplanner.team/stops/1760", "https://tec.openplanner.team/stops/Baudstr2"], ["http://irail.be/stations/NMBS/008821535", "https://data.delijn.be/stops/101644"], ["https://data.delijn.be/stops/400456", "https://tec.openplanner.team/stops/LEBdoct1"], ["https://data.delijn.be/stops/307204", "https://tec.openplanner.team/stops/Btubcal1"], ["https://data.delijn.be/stops/300315", "https://tec.openplanner.team/stops/Bnetcor1"], ["http://irail.be/stations/NMBS/008814365", "https://data.delijn.be/stops/304605"], ["https://data.delijn.be/stops/305916", "https://mivb.openplanner.team/stops/1102"], ["https://data.delijn.be/stops/402529", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://data.delijn.be/stops/301098", "https://tec.openplanner.team/stops/Bhalker2"], ["https://data.delijn.be/stops/304698", "https://mivb.openplanner.team/stops/9683"], ["https://data.delijn.be/stops/408847", "https://tec.openplanner.team/stops/LRmkult1"], ["https://data.delijn.be/stops/302141", "https://tec.openplanner.team/stops/Bptegna2"], ["https://data.delijn.be/stops/302413", "https://tec.openplanner.team/stops/Bjodeco2"], ["https://data.delijn.be/stops/301033", "https://mivb.openplanner.team/stops/5063"], ["http://irail.be/stations/NMBS/008814308", "https://data.delijn.be/stops/307224"], ["http://irail.be/stations/NMBS/008866118", "https://tec.openplanner.team/stops/X601ccb"], ["https://mivb.openplanner.team/stops/2759", "https://tec.openplanner.team/stops/Bixlozo2"], ["https://data.delijn.be/stops/300324", "https://tec.openplanner.team/stops/Balsnay1"], ["https://data.delijn.be/stops/304621", "https://mivb.openplanner.team/stops/5964"], ["https://data.delijn.be/stops/307142", "https://mivb.openplanner.team/stops/39"], ["http://irail.be/stations/NMBS/008864337", "https://tec.openplanner.team/stops/X994aia"], ["http://irail.be/stations/NMBS/008871415", "https://tec.openplanner.team/stops/Cptdubo2"], ["https://data.delijn.be/stops/300935", "https://mivb.openplanner.team/stops/7268"], ["https://data.delijn.be/stops/400471", "https://tec.openplanner.team/stops/LEMfort1"], ["https://data.delijn.be/stops/509736", "https://tec.openplanner.team/stops/H4hx116b"], ["http://irail.be/stations/NMBS/008895646", "https://data.delijn.be/stops/306270"], ["http://irail.be/stations/NMBS/008845005", "https://tec.openplanner.team/stops/X790aib"], ["https://data.delijn.be/stops/300776", "https://mivb.openplanner.team/stops/2534"], ["https://data.delijn.be/stops/301019", "https://mivb.openplanner.team/stops/4059F"], ["https://data.delijn.be/stops/408868", "https://tec.openplanner.team/stops/LFCalte1"], ["http://irail.be/stations/NMBS/008811163", "https://mivb.openplanner.team/stops/5048"], ["https://data.delijn.be/stops/303626", "https://tec.openplanner.team/stops/Bcbqcha1"], ["http://irail.be/stations/NMBS/008814472", "https://mivb.openplanner.team/stops/4309"], ["https://data.delijn.be/stops/408952", "https://tec.openplanner.team/stops/LWAvand1"], ["https://data.delijn.be/stops/404683", "https://tec.openplanner.team/stops/LWibare1"], ["http://irail.be/stations/NMBS/008814365", "https://mivb.openplanner.team/stops/9649"], ["http://irail.be/stations/NMBS/008811262", "https://data.delijn.be/stops/302705"], ["https://mivb.openplanner.team/stops/2470", "https://tec.openplanner.team/stops/Bsgipha2"], ["https://data.delijn.be/stops/308874", "https://mivb.openplanner.team/stops/8042"], ["http://irail.be/stations/NMBS/008811445", "https://data.delijn.be/stops/302226"], ["https://data.delijn.be/stops/302812", "https://mivb.openplanner.team/stops/2087"], ["https://data.delijn.be/stops/300396", "https://tec.openplanner.team/stops/Bhalgja2"], ["https://data.delijn.be/stops/406298", "https://tec.openplanner.team/stops/Blanraa2"], ["https://data.delijn.be/stops/308356", "https://mivb.openplanner.team/stops/6418"], ["https://data.delijn.be/stops/307024", "https://tec.openplanner.team/stops/H1en101a"], ["https://data.delijn.be/stops/300964", "https://tec.openplanner.team/stops/Baudvdu1"], ["https://data.delijn.be/stops/301025", "https://mivb.openplanner.team/stops/8342"], ["https://data.delijn.be/stops/301926", "https://mivb.openplanner.team/stops/9876"], ["http://irail.be/stations/NMBS/008821543", "https://data.delijn.be/stops/105407"], ["http://irail.be/stations/NMBS/008822475", "https://data.delijn.be/stops/300640"], ["https://data.delijn.be/stops/304861", "https://tec.openplanner.team/stops/Bbrlmez2"], ["https://data.delijn.be/stops/407216", "https://tec.openplanner.team/stops/LHStrez2"], ["http://irail.be/stations/NMBS/008895844", "https://data.delijn.be/stops/207932"], ["https://mivb.openplanner.team/stops/1110", "https://tec.openplanner.team/stops/Blkbbvh1"], ["https://mivb.openplanner.team/stops/0650265", "https://tec.openplanner.team/stops/Bsgihmo1"], ["http://irail.be/stations/NMBS/008844347", "https://tec.openplanner.team/stops/LTHroch1"], ["http://irail.be/stations/NMBS/008861416", "https://tec.openplanner.team/stops/Bgembhe1"], ["https://data.delijn.be/stops/207760", "https://tec.openplanner.team/stops/H5rx114a"], ["http://irail.be/stations/NMBS/008891033", "https://data.delijn.be/stops/502151"], ["http://irail.be/stations/NMBS/008895208", "https://data.delijn.be/stops/208080"], ["http://irail.be/stations/NMBS/008822210", "https://data.delijn.be/stops/109723"], ["https://data.delijn.be/stops/301398", "https://mivb.openplanner.team/stops/5725"], ["https://data.delijn.be/stops/304101", "https://tec.openplanner.team/stops/Bovejme2"], ["https://data.delijn.be/stops/302876", "https://mivb.openplanner.team/stops/2143B"], ["https://data.delijn.be/stops/404660", "https://tec.openplanner.team/stops/LPAbrun2"], ["https://data.delijn.be/stops/308728", "https://tec.openplanner.team/stops/Bgoemho1"], ["https://data.delijn.be/stops/305234", "https://mivb.openplanner.team/stops/9631"], ["https://data.delijn.be/stops/300953", "https://mivb.openplanner.team/stops/1112"], ["https://data.delijn.be/stops/408968", "https://tec.openplanner.team/stops/LWAchpg2"], ["https://data.delijn.be/stops/400452", "https://tec.openplanner.team/stops/LRGmoul1"], ["https://data.delijn.be/stops/304073", "https://tec.openplanner.team/stops/Boveklo1"], ["https://data.delijn.be/stops/301129", "https://mivb.openplanner.team/stops/2148"], ["https://mivb.openplanner.team/stops/1661", "https://tec.openplanner.team/stops/Bkrawil1"], ["https://data.delijn.be/stops/509381", "https://tec.openplanner.team/stops/H4pl116a"], ["http://irail.be/stations/NMBS/008821659", "https://data.delijn.be/stops/103140"], ["http://irail.be/stations/NMBS/008814134", "https://data.delijn.be/stops/301113"], ["https://data.delijn.be/stops/407491", "https://tec.openplanner.team/stops/LTobilz2"], ["https://data.delijn.be/stops/303580", "https://mivb.openplanner.team/stops/3042"], ["https://data.delijn.be/stops/504319", "https://tec.openplanner.team/stops/H4mo153d"], ["https://data.delijn.be/stops/307232", "https://mivb.openplanner.team/stops/4217"], ["https://data.delijn.be/stops/302804", "https://tec.openplanner.team/stops/Bkrabhu2"], ["http://irail.be/stations/NMBS/008894433", "https://data.delijn.be/stops/205223"], ["https://data.delijn.be/stops/300969", "https://mivb.openplanner.team/stops/1725"], ["https://data.delijn.be/stops/301168", "https://mivb.openplanner.team/stops/1258G"], ["http://irail.be/stations/NMBS/008841327", "https://tec.openplanner.team/stops/LBIrout2"], ["https://data.delijn.be/stops/301004", "https://mivb.openplanner.team/stops/3412"], ["http://irail.be/stations/NMBS/008892304", "https://data.delijn.be/stops/509501"], ["http://irail.be/stations/NMBS/008831039", "https://data.delijn.be/stops/400090"], ["http://irail.be/stations/NMBS/008844503", "https://tec.openplanner.team/stops/LWElanc1"], ["https://data.delijn.be/stops/408878", "https://tec.openplanner.team/stops/LFPkerk2"], ["https://data.delijn.be/stops/503771", "https://tec.openplanner.team/stops/H4eh104b"], ["https://data.delijn.be/stops/402578", "https://tec.openplanner.team/stops/LCAwals1"], ["https://data.delijn.be/stops/300780", "https://mivb.openplanner.team/stops/2518"], ["https://data.delijn.be/stops/408836", "https://tec.openplanner.team/stops/LRmsmvo4"], ["http://irail.be/stations/NMBS/008891116", "https://data.delijn.be/stops/502332"], ["http://irail.be/stations/NMBS/008892106", "https://data.delijn.be/stops/203212"], ["http://irail.be/stations/NMBS/008866654", "https://tec.openplanner.team/stops/X615azb"], ["https://data.delijn.be/stops/509451", "https://tec.openplanner.team/stops/H4mo145b"], ["https://mivb.openplanner.team/stops/3912", "https://tec.openplanner.team/stops/Bettgle1"], ["https://data.delijn.be/stops/308870", "https://mivb.openplanner.team/stops/5532"], ["https://data.delijn.be/stops/208177", "https://tec.openplanner.team/stops/H5el104a"], ["http://irail.be/stations/NMBS/008866175", "https://tec.openplanner.team/stops/X650afd"], ["https://mivb.openplanner.team/stops/5032B", "https://tec.openplanner.team/stops/Buccplj2"], ["http://irail.be/stations/NMBS/008812237", "https://data.delijn.be/stops/306256"], ["https://data.delijn.be/stops/302872", "https://mivb.openplanner.team/stops/2140"], ["https://data.delijn.be/stops/304255", "https://mivb.openplanner.team/stops/4011"], ["http://irail.be/stations/NMBS/008886058", "https://tec.openplanner.team/stops/H1ch101a"], ["https://data.delijn.be/stops/300395", "https://tec.openplanner.team/stops/Bhalgja1"], ["https://mivb.openplanner.team/stops/6453", "https://tec.openplanner.team/stops/Bixllep1"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/304551"], ["http://irail.be/stations/NMBS/008896503", "https://data.delijn.be/stops/504990"], ["https://data.delijn.be/stops/306904", "https://tec.openplanner.team/stops/Bgoekaz2"], ["https://data.delijn.be/stops/407581", "https://tec.openplanner.team/stops/LDppana2"], ["https://data.delijn.be/stops/405730", "https://tec.openplanner.team/stops/Lantonn2"], ["http://irail.be/stations/NMBS/008844404", "https://tec.openplanner.team/stops/LSPClem2"], ["http://irail.be/stations/NMBS/008812070", "https://data.delijn.be/stops/300212"], ["https://data.delijn.be/stops/509243", "https://tec.openplanner.team/stops/H4co133a"], ["http://irail.be/stations/NMBS/008892288", "https://data.delijn.be/stops/508001"], ["https://data.delijn.be/stops/405449", "https://tec.openplanner.team/stops/Blanove2"], ["http://irail.be/stations/NMBS/008861416", "https://tec.openplanner.team/stops/N522aca"], ["http://irail.be/stations/NMBS/008821832", "https://data.delijn.be/stops/103244"], ["https://data.delijn.be/stops/308126", "https://tec.openplanner.team/stops/Bbosgar2"], ["https://data.delijn.be/stops/302875", "https://mivb.openplanner.team/stops/2143B"], ["http://irail.be/stations/NMBS/008822228", "https://data.delijn.be/stops/108877"], ["https://data.delijn.be/stops/208192", "https://tec.openplanner.team/stops/H5rx129a"], ["https://data.delijn.be/stops/207797", "https://tec.openplanner.team/stops/H5el111b"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bcsemar2"], ["http://irail.be/stations/NMBS/008821089", "https://data.delijn.be/stops/101593"], ["http://irail.be/stations/NMBS/008400058", "https://data.delijn.be/stops/103303"], ["https://data.delijn.be/stops/509234", "https://tec.openplanner.team/stops/H4co108a"], ["https://data.delijn.be/stops/301166", "https://mivb.openplanner.team/stops/2118"], ["https://data.delijn.be/stops/300907", "https://mivb.openplanner.team/stops/1914"], ["https://data.delijn.be/stops/410132", "https://tec.openplanner.team/stops/Llaflot2"], ["https://data.delijn.be/stops/301168", "https://mivb.openplanner.team/stops/5953F"], ["https://data.delijn.be/stops/305314", "https://mivb.openplanner.team/stops/9787"], ["https://data.delijn.be/stops/305426", "https://mivb.openplanner.team/stops/1629"], ["https://data.delijn.be/stops/405717", "https://tec.openplanner.team/stops/Llgpire2"], ["http://irail.be/stations/NMBS/008821816", "https://data.delijn.be/stops/103944"], ["https://data.delijn.be/stops/209192", "https://tec.openplanner.team/stops/H5rx136b"], ["https://data.delijn.be/stops/307853", "https://mivb.openplanner.team/stops/1597"], ["https://data.delijn.be/stops/304066", "https://tec.openplanner.team/stops/Bovehst2"], ["https://mivb.openplanner.team/stops/1931", "https://tec.openplanner.team/stops/Bucceng2"], ["http://irail.be/stations/NMBS/008863545", "https://tec.openplanner.team/stops/N229apa"], ["http://irail.be/stations/NMBS/008896149", "https://data.delijn.be/stops/503842"], ["http://irail.be/stations/NMBS/008883022", "https://tec.openplanner.team/stops/Bquevel1"], ["https://data.delijn.be/stops/301031", "https://mivb.openplanner.team/stops/0650265"], ["https://data.delijn.be/stops/307132", "https://tec.openplanner.team/stops/Bovecha1"], ["http://irail.be/stations/NMBS/008400131", "https://data.delijn.be/stops/106382"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2le176b"], ["https://data.delijn.be/stops/304447", "https://tec.openplanner.team/stops/Brsgleq2"], ["https://data.delijn.be/stops/300948", "https://mivb.openplanner.team/stops/1686F"], ["https://data.delijn.be/stops/408968", "https://tec.openplanner.team/stops/LWAwegg2"], ["https://data.delijn.be/stops/208178", "https://tec.openplanner.team/stops/H5el110b"], ["https://data.delijn.be/stops/408836", "https://tec.openplanner.team/stops/LAUcent1"], ["https://data.delijn.be/stops/305237", "https://tec.openplanner.team/stops/Bmrqgar1"], ["http://irail.be/stations/NMBS/008895851", "https://data.delijn.be/stops/206111"], ["https://data.delijn.be/stops/400494", "https://tec.openplanner.team/stops/LHScite1"], ["http://irail.be/stations/NMBS/008883006", "https://tec.openplanner.team/stops/Bbcoeca1"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N254aab"], ["https://data.delijn.be/stops/407721", "https://tec.openplanner.team/stops/LMaburg4"], ["https://data.delijn.be/stops/405460", "https://tec.openplanner.team/stops/LWHzave1"], ["http://irail.be/stations/NMBS/008814365", "https://data.delijn.be/stops/304660"], ["https://mivb.openplanner.team/stops/1805", "https://tec.openplanner.team/stops/Bettcha3"], ["https://data.delijn.be/stops/300579", "https://mivb.openplanner.team/stops/3113"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/N541adb"], ["https://mivb.openplanner.team/stops/1829", "https://tec.openplanner.team/stops/Bwolkra2"], ["https://data.delijn.be/stops/304547", "https://mivb.openplanner.team/stops/9654"], ["http://irail.be/stations/NMBS/008845203", "https://tec.openplanner.team/stops/LTPpisc2"], ["https://data.delijn.be/stops/301021", "https://mivb.openplanner.team/stops/4058F"], ["https://data.delijn.be/stops/300999", "https://mivb.openplanner.team/stops/6416"], ["http://irail.be/stations/NMBS/008811221", "https://data.delijn.be/stops/305568"], ["https://data.delijn.be/stops/304127", "https://mivb.openplanner.team/stops/0010415"], ["http://irail.be/stations/NMBS/008843406", "https://tec.openplanner.team/stops/NL80aaa"], ["https://data.delijn.be/stops/405702", "https://tec.openplanner.team/stops/Llgbatt1"], ["http://irail.be/stations/NMBS/008893039", "https://data.delijn.be/stops/210052"], ["http://irail.be/stations/NMBS/008010316", "https://data.delijn.be/stops/408948"], ["http://irail.be/stations/NMBS/008849064", "https://tec.openplanner.team/stops/LLApavi1"], ["https://data.delijn.be/stops/207773", "https://tec.openplanner.team/stops/H5rx137b"], ["http://irail.be/stations/NMBS/008811007", "https://mivb.openplanner.team/stops/5761"], ["http://irail.be/stations/NMBS/008892452", "https://data.delijn.be/stops/500937"], ["https://data.delijn.be/stops/218013", "https://tec.openplanner.team/stops/H5rx129a"], ["http://irail.be/stations/NMBS/008871332", "https://tec.openplanner.team/stops/Cobmven1"], ["https://data.delijn.be/stops/307639", "https://mivb.openplanner.team/stops/1932"], ["http://irail.be/stations/NMBS/008885001", "https://tec.openplanner.team/stops/H4ty406a"], ["https://data.delijn.be/stops/408679", "https://tec.openplanner.team/stops/LOTsava1"], ["https://data.delijn.be/stops/301013", "https://mivb.openplanner.team/stops/1310"], ["http://irail.be/stations/NMBS/008866845", "https://tec.openplanner.team/stops/X641aha"], ["https://data.delijn.be/stops/207763", "https://tec.openplanner.team/stops/H5rx145b"], ["https://data.delijn.be/stops/408977", "https://tec.openplanner.team/stops/LWAgare*"], ["https://mivb.openplanner.team/stops/4857B", "https://tec.openplanner.team/stops/Buccobs1"], ["http://irail.be/stations/NMBS/008864451", "https://tec.openplanner.team/stops/X982caa"], ["http://irail.be/stations/NMBS/008884004", "https://tec.openplanner.team/stops/H1ho143b"], ["http://irail.be/stations/NMBS/008894821", "https://data.delijn.be/stops/204337"], ["https://data.delijn.be/stops/304210", "https://tec.openplanner.team/stops/Brsrpmo1"], ["https://data.delijn.be/stops/305145", "https://tec.openplanner.team/stops/H1mk112a"], ["https://data.delijn.be/stops/301113", "https://mivb.openplanner.team/stops/2701"], ["https://data.delijn.be/stops/208185", "https://tec.openplanner.team/stops/H5rx134b"], ["https://data.delijn.be/stops/400455", "https://tec.openplanner.team/stops/LEMec--2"], ["http://irail.be/stations/NMBS/008832334", "https://data.delijn.be/stops/408198"], ["https://data.delijn.be/stops/408962", "https://tec.openplanner.team/stops/LWAmouh1"], ["http://irail.be/stations/NMBS/008822111", "https://data.delijn.be/stops/204572"], ["http://irail.be/stations/NMBS/008896149", "https://data.delijn.be/stops/200669"], ["http://irail.be/stations/NMBS/008832243", "https://data.delijn.be/stops/404157"], ["https://data.delijn.be/stops/302420", "https://tec.openplanner.team/stops/Bmlngch1"], ["https://data.delijn.be/stops/410142", "https://tec.openplanner.team/stops/Lrcvill1"], ["https://data.delijn.be/stops/308725", "https://tec.openplanner.team/stops/Bgoewat1"], ["http://irail.be/stations/NMBS/008863834", "https://tec.openplanner.team/stops/N261aha"], ["https://data.delijn.be/stops/407233", "https://tec.openplanner.team/stops/LGreg--2"], ["https://data.delijn.be/stops/301413", "https://tec.openplanner.team/stops/Bengvma1"], ["https://data.delijn.be/stops/306159", "https://mivb.openplanner.team/stops/0150129"], ["https://data.delijn.be/stops/400494", "https://tec.openplanner.team/stops/LRGbett3"], ["http://irail.be/stations/NMBS/008812047", "https://mivb.openplanner.team/stops/1067"], ["http://irail.be/stations/NMBS/008893013", "https://data.delijn.be/stops/201628"], ["http://irail.be/stations/NMBS/008892635", "https://data.delijn.be/stops/209494"], ["https://data.delijn.be/stops/300944", "https://mivb.openplanner.team/stops/1732"], ["https://mivb.openplanner.team/stops/1752", "https://tec.openplanner.team/stops/Baudulb2"], ["https://data.delijn.be/stops/306899", "https://tec.openplanner.team/stops/Bgoegma2"], ["http://irail.be/stations/NMBS/008861317", "https://tec.openplanner.team/stops/N522ala"], ["https://data.delijn.be/stops/300962", "https://mivb.openplanner.team/stops/0260237"], ["https://data.delijn.be/stops/505842", "https://tec.openplanner.team/stops/H4co107b"], ["http://irail.be/stations/NMBS/008865615", "https://tec.openplanner.team/stops/X347aab"], ["https://data.delijn.be/stops/304860", "https://tec.openplanner.team/stops/Bbrlmez1"], ["https://data.delijn.be/stops/407217", "https://tec.openplanner.team/stops/LHStrez1"], ["http://irail.be/stations/NMBS/008844206", "https://tec.openplanner.team/stops/Lpeeg--2"], ["https://data.delijn.be/stops/305429", "https://mivb.openplanner.team/stops/1627"], ["https://data.delijn.be/stops/302427", "https://tec.openplanner.team/stops/Bzlufbo1"], ["https://data.delijn.be/stops/208189", "https://tec.openplanner.team/stops/H5rx120a"], ["http://irail.be/stations/NMBS/008884715", "https://tec.openplanner.team/stops/H5bl141a"], ["https://data.delijn.be/stops/304580", "https://mivb.openplanner.team/stops/0529"], ["http://irail.be/stations/NMBS/008871217", "https://tec.openplanner.team/stops/Crodebr1"], ["https://data.delijn.be/stops/408857", "https://tec.openplanner.team/stops/LFClage2"], ["https://data.delijn.be/stops/301070", "https://mivb.openplanner.team/stops/8741"], ["http://irail.be/stations/NMBS/008812252", "https://data.delijn.be/stops/302313"], ["http://irail.be/stations/NMBS/008813037", "https://mivb.openplanner.team/stops/1168"], ["http://irail.be/stations/NMBS/008889011", "https://tec.openplanner.team/stops/H4rx175a"], ["http://irail.be/stations/NMBS/008861127", "https://tec.openplanner.team/stops/N501cwa"], ["https://mivb.openplanner.team/stops/6439", "https://tec.openplanner.team/stops/Buccham2"], ["https://data.delijn.be/stops/207773", "https://tec.openplanner.team/stops/H5rx114a"], ["https://data.delijn.be/stops/208610", "https://tec.openplanner.team/stops/H1by101b"], ["https://data.delijn.be/stops/405716", "https://tec.openplanner.team/stops/Llgwild8"], ["https://data.delijn.be/stops/301132", "https://tec.openplanner.team/stops/Buccgob2"], ["https://data.delijn.be/stops/304072", "https://tec.openplanner.team/stops/Bgnvfai1"], ["https://data.delijn.be/stops/300936", "https://mivb.openplanner.team/stops/4153"], ["http://irail.be/stations/NMBS/008885001", "https://tec.openplanner.team/stops/H4ty357a"], ["http://irail.be/stations/NMBS/008811205", "https://mivb.openplanner.team/stops/8232"], ["https://data.delijn.be/stops/306064", "https://tec.openplanner.team/stops/Brsga812"], ["https://data.delijn.be/stops/304698", "https://mivb.openplanner.team/stops/5729"], ["https://data.delijn.be/stops/504653", "https://tec.openplanner.team/stops/H4co151a"], ["http://irail.be/stations/NMBS/008892635", "https://data.delijn.be/stops/209277"], ["https://data.delijn.be/stops/304441", "https://tec.openplanner.team/stops/Brsgepr2"], ["https://data.delijn.be/stops/504305", "https://tec.openplanner.team/stops/H4mo161a"], ["https://data.delijn.be/stops/509456", "https://tec.openplanner.team/stops/H4rk101b"], ["http://irail.be/stations/NMBS/008015345", "https://tec.openplanner.team/stops/LaAdiep1"], ["https://data.delijn.be/stops/303247", "https://tec.openplanner.team/stops/Blkbbeu1"], ["http://irail.be/stations/NMBS/008871373", "https://tec.openplanner.team/stops/H2gy109b"], ["https://data.delijn.be/stops/302226", "https://tec.openplanner.team/stops/Bhoegbr1"], ["https://data.delijn.be/stops/307150", "https://tec.openplanner.team/stops/Bhaless1"], ["https://data.delijn.be/stops/301001", "https://mivb.openplanner.team/stops/1512"], ["http://irail.be/stations/NMBS/008832250", "https://data.delijn.be/stops/404222"], ["https://data.delijn.be/stops/509238", "https://tec.openplanner.team/stops/H4co107b"], ["http://irail.be/stations/NMBS/008871662", "https://tec.openplanner.team/stops/H1so141a"], ["https://data.delijn.be/stops/306905", "https://tec.openplanner.team/stops/Bboseco2"], ["https://data.delijn.be/stops/300327", "https://tec.openplanner.team/stops/Balsnay2"], ["https://data.delijn.be/stops/408972", "https://tec.openplanner.team/stops/LWAloui1"], ["https://data.delijn.be/stops/303950", "https://tec.openplanner.team/stops/Bhevwzw1"], ["http://irail.be/stations/NMBS/008874609", "https://tec.openplanner.team/stops/N543cfb"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1eo103a"], ["https://data.delijn.be/stops/504323", "https://tec.openplanner.team/stops/H4mo193a"], ["http://irail.be/stations/NMBS/008812021", "https://mivb.openplanner.team/stops/7790156"], ["http://irail.be/stations/NMBS/008889011", "https://tec.openplanner.team/stops/H4mo137a"], ["http://irail.be/stations/NMBS/008893567", "https://data.delijn.be/stops/201644"], ["https://data.delijn.be/stops/307157", "https://tec.openplanner.team/stops/Bhalwat1"], ["https://data.delijn.be/stops/301032", "https://mivb.openplanner.team/stops/6078"], ["https://data.delijn.be/stops/302892", "https://tec.openplanner.team/stops/Bhevjal2"], ["https://data.delijn.be/stops/304114", "https://tec.openplanner.team/stops/Bovevri1"], ["https://data.delijn.be/stops/300338", "https://tec.openplanner.team/stops/Balswin3"], ["https://data.delijn.be/stops/305318", "https://mivb.openplanner.team/stops/2816"], ["http://irail.be/stations/NMBS/008886561", "https://tec.openplanner.team/stops/H5is168b"], ["http://irail.be/stations/NMBS/008822251", "https://data.delijn.be/stops/301448"], ["http://irail.be/stations/NMBS/008811775", "https://data.delijn.be/stops/302762"], ["https://data.delijn.be/stops/307966", "https://tec.openplanner.team/stops/Bwavbar1"], ["http://irail.be/stations/NMBS/008893260", "https://data.delijn.be/stops/203030"], ["https://data.delijn.be/stops/300797", "https://mivb.openplanner.team/stops/3805"], ["https://data.delijn.be/stops/406350", "https://tec.openplanner.team/stops/LMastat3"], ["http://irail.be/stations/NMBS/008814308", "https://data.delijn.be/stops/301453"], ["https://data.delijn.be/stops/301076", "https://mivb.openplanner.team/stops/3286B"], ["https://data.delijn.be/stops/509534", "https://tec.openplanner.team/stops/H4pl112a"], ["https://data.delijn.be/stops/305509", "https://mivb.openplanner.team/stops/1381"], ["https://data.delijn.be/stops/408880", "https://tec.openplanner.team/stops/LDppana1"], ["https://mivb.openplanner.team/stops/0130127", "https://tec.openplanner.team/stops/Bwolvan1"], ["https://data.delijn.be/stops/408903", "https://tec.openplanner.team/stops/LFPkast2"], ["http://irail.be/stations/NMBS/008896115", "https://data.delijn.be/stops/503199"], ["http://irail.be/stations/NMBS/008821402", "https://data.delijn.be/stops/104262"], ["http://irail.be/stations/NMBS/008861333", "https://tec.openplanner.team/stops/N531apb"], ["https://data.delijn.be/stops/301679", "https://tec.openplanner.team/stops/Bnetegl3"], ["http://irail.be/stations/NMBS/008894235", "https://data.delijn.be/stops/204579"], ["https://data.delijn.be/stops/304862", "https://tec.openplanner.team/stops/Bbrlrph1"], ["https://data.delijn.be/stops/301007", "https://mivb.openplanner.team/stops/4106"], ["http://irail.be/stations/NMBS/008821436", "https://data.delijn.be/stops/102194"], ["https://data.delijn.be/stops/306398", "https://mivb.openplanner.team/stops/9726"], ["https://data.delijn.be/stops/400484", "https://tec.openplanner.team/stops/LRGderr1"], ["https://data.delijn.be/stops/300743", "https://mivb.openplanner.team/stops/6809F"], ["https://data.delijn.be/stops/403784", "https://tec.openplanner.team/stops/LOesour2"], ["https://data.delijn.be/stops/307687", "https://tec.openplanner.team/stops/Blkbbeu2"], ["http://irail.be/stations/NMBS/008841202", "https://tec.openplanner.team/stops/Llonaes1"], ["https://data.delijn.be/stops/303667", "https://mivb.openplanner.team/stops/1685F"], ["https://data.delijn.be/stops/509241", "https://tec.openplanner.team/stops/H4co158b"], ["http://irail.be/stations/NMBS/008811528", "https://tec.openplanner.team/stops/Brsrpar1"], ["http://irail.be/stations/NMBS/008893179", "https://data.delijn.be/stops/200797"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/Cmltemp5"], ["https://data.delijn.be/stops/300749", "https://mivb.openplanner.team/stops/1256"], ["https://data.delijn.be/stops/300829", "https://mivb.openplanner.team/stops/5087"], ["http://irail.be/stations/NMBS/008831807", "https://data.delijn.be/stops/407934"], ["https://data.delijn.be/stops/306117", "https://mivb.openplanner.team/stops/1483"], ["https://data.delijn.be/stops/300791", "https://mivb.openplanner.team/stops/3252"], ["http://irail.be/stations/NMBS/008812153", "https://data.delijn.be/stops/206691"], ["http://irail.be/stations/NMBS/008866118", "https://tec.openplanner.team/stops/X601bsa"], ["https://data.delijn.be/stops/303948", "https://tec.openplanner.team/stops/Bhaawdr2"], ["https://data.delijn.be/stops/508228", "https://tec.openplanner.team/stops/H4he101b"], ["http://irail.be/stations/NMBS/008200518", "https://tec.openplanner.team/stops/X688aba"], ["https://data.delijn.be/stops/405737", "https://tec.openplanner.team/stops/Lrcvill2"], ["https://data.delijn.be/stops/304133", "https://tec.openplanner.team/stops/Bbghsar2"], ["http://irail.be/stations/NMBS/008873122", "https://tec.openplanner.team/stops/N101aoa"], ["https://data.delijn.be/stops/300986", "https://mivb.openplanner.team/stops/1030"], ["https://data.delijn.be/stops/208766", "https://tec.openplanner.team/stops/H5rx110b"], ["http://irail.be/stations/NMBS/008884566", "https://tec.openplanner.team/stops/H1je222a"], ["http://irail.be/stations/NMBS/008400131", "https://data.delijn.be/stops/105799"], ["http://irail.be/stations/NMBS/008832433", "https://data.delijn.be/stops/108969"], ["https://data.delijn.be/stops/305296", "https://mivb.openplanner.team/stops/9631"], ["http://irail.be/stations/NMBS/008892338", "https://data.delijn.be/stops/506010"], ["https://mivb.openplanner.team/stops/5824", "https://tec.openplanner.team/stops/Bucccre1"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1hh117a"], ["https://data.delijn.be/stops/207752", "https://tec.openplanner.team/stops/H5rx126b"], ["http://irail.be/stations/NMBS/008822459", "https://data.delijn.be/stops/305964"], ["http://irail.be/stations/NMBS/008865003", "https://tec.openplanner.team/stops/X801bea"], ["https://data.delijn.be/stops/306115", "https://mivb.openplanner.team/stops/7720203"], ["http://irail.be/stations/NMBS/008886546", "https://data.delijn.be/stops/206771"], ["https://data.delijn.be/stops/504292", "https://tec.openplanner.team/stops/H4mo188b"], ["https://data.delijn.be/stops/305347", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://data.delijn.be/stops/300919", "https://mivb.openplanner.team/stops/5044"], ["https://data.delijn.be/stops/301030", "https://tec.openplanner.team/stops/Bsgipmo1"], ["http://irail.be/stations/NMBS/008895463", "https://data.delijn.be/stops/206487"], ["http://irail.be/stations/NMBS/008814001", "https://mivb.openplanner.team/stops/0350140"], ["https://data.delijn.be/stops/400490", "https://tec.openplanner.team/stops/LBSkann1"], ["http://irail.be/stations/NMBS/008833134", "https://data.delijn.be/stops/305524"], ["http://irail.be/stations/NMBS/008822137", "https://data.delijn.be/stops/207332"], ["https://data.delijn.be/stops/304033", "https://tec.openplanner.team/stops/Boveker2"], ["https://data.delijn.be/stops/410133", "https://tec.openplanner.team/stops/LJU51--2"], ["https://data.delijn.be/stops/209372", "https://tec.openplanner.team/stops/H5rx151a"], ["http://irail.be/stations/NMBS/008871183", "https://tec.openplanner.team/stops/Chhlori2"], ["https://data.delijn.be/stops/408829", "https://tec.openplanner.team/stops/LVIacac1"], ["https://data.delijn.be/stops/209409", "https://tec.openplanner.team/stops/H5rx140a"], ["https://mivb.openplanner.team/stops/1416", "https://tec.openplanner.team/stops/Bbxlner2"], ["http://irail.be/stations/NMBS/008882248", "https://tec.openplanner.team/stops/H2ch125a"], ["https://data.delijn.be/stops/300804", "https://mivb.openplanner.team/stops/5296B"], ["https://data.delijn.be/stops/305198", "https://tec.openplanner.team/stops/Btiegar2"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2le146a"], ["https://data.delijn.be/stops/301923", "https://mivb.openplanner.team/stops/2071"], ["http://irail.be/stations/NMBS/008896396", "https://data.delijn.be/stops/504568"], ["https://data.delijn.be/stops/208763", "https://tec.openplanner.team/stops/H5rx112b"], ["https://data.delijn.be/stops/304641", "https://mivb.openplanner.team/stops/1681F"], ["https://data.delijn.be/stops/302793", "https://mivb.openplanner.team/stops/1629"], ["http://irail.be/stations/NMBS/008895729", "https://data.delijn.be/stops/206803"], ["http://irail.be/stations/NMBS/008842630", "https://tec.openplanner.team/stops/Lstbota3"], ["https://data.delijn.be/stops/405459", "https://tec.openplanner.team/stops/LWHmath2"], ["http://irail.be/stations/NMBS/008844255", "https://tec.openplanner.team/stops/LFrec--1"], ["https://data.delijn.be/stops/301984", "https://tec.openplanner.team/stops/Bhaldbo1"], ["https://data.delijn.be/stops/209838", "https://tec.openplanner.team/stops/H4ss157b"], ["https://data.delijn.be/stops/307821", "https://mivb.openplanner.team/stops/2015"], ["http://irail.be/stations/NMBS/008811197", "https://mivb.openplanner.team/stops/0070521"], ["https://data.delijn.be/stops/305508", "https://mivb.openplanner.team/stops/1381"], ["http://irail.be/stations/NMBS/008893062", "https://data.delijn.be/stops/200604"], ["https://data.delijn.be/stops/504319", "https://tec.openplanner.team/stops/H4mo163a"], ["https://data.delijn.be/stops/208760", "https://tec.openplanner.team/stops/H5rx100b"], ["https://data.delijn.be/stops/304665", "https://mivb.openplanner.team/stops/9660"], ["http://irail.be/stations/NMBS/008813037", "https://mivb.openplanner.team/stops/1063"], ["http://irail.be/stations/NMBS/008822525", "https://data.delijn.be/stops/301887"], ["https://data.delijn.be/stops/208417", "https://tec.openplanner.team/stops/H4rs118b"], ["https://data.delijn.be/stops/302805", "https://mivb.openplanner.team/stops/5656"], ["https://data.delijn.be/stops/209838", "https://tec.openplanner.team/stops/H5rx100b"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Cthha501"], ["https://mivb.openplanner.team/stops/1725", "https://tec.openplanner.team/stops/Bwbfbon1"], ["https://data.delijn.be/stops/408906", "https://tec.openplanner.team/stops/LFPkape2"], ["https://data.delijn.be/stops/301168", "https://mivb.openplanner.team/stops/2452"], ["https://data.delijn.be/stops/410152", "https://mivb.openplanner.team/stops/6081"], ["https://data.delijn.be/stops/305298", "https://tec.openplanner.team/stops/Bspkkhe1"], ["https://data.delijn.be/stops/300336", "https://tec.openplanner.team/stops/Balssvi2"], ["https://mivb.openplanner.team/stops/0210132", "https://tec.openplanner.team/stops/Baudhan1"], ["https://data.delijn.be/stops/304639", "https://mivb.openplanner.team/stops/9655"], ["https://data.delijn.be/stops/303576", "https://mivb.openplanner.team/stops/9778"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N562ayb"], ["http://irail.be/stations/NMBS/008833449", "https://data.delijn.be/stops/405346"], ["http://irail.be/stations/NMBS/008884566", "https://tec.openplanner.team/stops/H1je211b"], ["http://irail.be/stations/NMBS/008866175", "https://tec.openplanner.team/stops/X650aka"], ["https://data.delijn.be/stops/408898", "https://tec.openplanner.team/stops/LFProt-1"], ["https://data.delijn.be/stops/300407", "https://tec.openplanner.team/stops/Blemwro2"], ["https://data.delijn.be/stops/408596", "https://tec.openplanner.team/stops/LOreg--2"], ["https://data.delijn.be/stops/401413", "https://mivb.openplanner.team/stops/4305"], ["http://irail.be/stations/NMBS/008871332", "https://tec.openplanner.team/stops/Bobacou1"], ["https://mivb.openplanner.team/stops/2150", "https://tec.openplanner.team/stops/Buccrac1"], ["https://data.delijn.be/stops/503678", "https://tec.openplanner.team/stops/H4ef111b"], ["https://mivb.openplanner.team/stops/5605", "https://tec.openplanner.team/stops/Bovejei1"], ["https://data.delijn.be/stops/404652", "https://tec.openplanner.team/stops/Llaacca1"], ["http://irail.be/stations/NMBS/008821246", "https://data.delijn.be/stops/101917"], ["https://data.delijn.be/stops/504772", "https://tec.openplanner.team/stops/H4wn130a"], ["https://data.delijn.be/stops/305233", "https://mivb.openplanner.team/stops/9606"], ["http://irail.be/stations/NMBS/008892205", "https://data.delijn.be/stops/502703"], ["https://data.delijn.be/stops/307808", "https://mivb.openplanner.team/stops/1115"], ["https://data.delijn.be/stops/400453", "https://tec.openplanner.team/stops/LBPboir1"], ["http://irail.be/stations/NMBS/008832565", "https://data.delijn.be/stops/405820"], ["https://data.delijn.be/stops/306661", "https://mivb.openplanner.team/stops/9802"], ["https://data.delijn.be/stops/300941", "https://mivb.openplanner.team/stops/3129"], ["http://irail.be/stations/NMBS/008896115", "https://data.delijn.be/stops/503983"], ["http://irail.be/stations/NMBS/008833308", "https://data.delijn.be/stops/305195"], ["http://irail.be/stations/NMBS/008874005", "https://tec.openplanner.team/stops/NC02aob"], ["https://data.delijn.be/stops/504277", "https://tec.openplanner.team/stops/H4mn100d"], ["http://irail.be/stations/NMBS/008811528", "https://tec.openplanner.team/stops/Bgnvbsi1"], ["http://irail.be/stations/NMBS/008881000", "https://tec.openplanner.team/stops/H1ms300a"], ["https://data.delijn.be/stops/303972", "https://tec.openplanner.team/stops/Bhmmjco1"], ["https://data.delijn.be/stops/405336", "https://tec.openplanner.team/stops/Bneelaa1"], ["http://irail.be/stations/NMBS/008895463", "https://data.delijn.be/stops/206323"], ["https://data.delijn.be/stops/307233", "https://mivb.openplanner.team/stops/9027"], ["https://data.delijn.be/stops/307642", "https://mivb.openplanner.team/stops/1955"], ["http://irail.be/stations/NMBS/008886009", "https://tec.openplanner.team/stops/H5at127a"], ["https://data.delijn.be/stops/302421", "https://tec.openplanner.team/stops/Bjodgai1"], ["https://data.delijn.be/stops/407209", "https://tec.openplanner.team/stops/LHTmc--1"], ["https://data.delijn.be/stops/300789", "https://mivb.openplanner.team/stops/1487"], ["https://mivb.openplanner.team/stops/5208", "https://tec.openplanner.team/stops/Bixlaca1"], ["https://data.delijn.be/stops/301688", "https://tec.openplanner.team/stops/Bnetrbr1"], ["https://data.delijn.be/stops/308981", "https://tec.openplanner.team/stops/Blhumpo4"], ["https://data.delijn.be/stops/408978", "https://tec.openplanner.team/stops/LWAcost2"], ["http://irail.be/stations/NMBS/008865649", "https://tec.openplanner.team/stops/N343aeb"], ["https://data.delijn.be/stops/504322", "https://tec.openplanner.team/stops/H4mo172a"], ["https://data.delijn.be/stops/400664", "https://tec.openplanner.team/stops/LGAnovi2"], ["http://irail.be/stations/NMBS/008842853", "https://tec.openplanner.team/stops/X982aha"], ["https://data.delijn.be/stops/301047", "https://mivb.openplanner.team/stops/4214"], ["https://data.delijn.be/stops/301401", "https://mivb.openplanner.team/stops/2611"], ["https://data.delijn.be/stops/300315", "https://tec.openplanner.team/stops/Bhmmvdu1"], ["https://data.delijn.be/stops/407230", "https://tec.openplanner.team/stops/LORec--*"], ["http://irail.be/stations/NMBS/008882206", "https://tec.openplanner.team/stops/H2hl113b"], ["https://data.delijn.be/stops/307973", "https://tec.openplanner.team/stops/Bwavcar2"], ["http://irail.be/stations/NMBS/008831005", "https://data.delijn.be/stops/403103"], ["http://irail.be/stations/NMBS/008895471", "https://data.delijn.be/stops/207532"], ["http://irail.be/stations/NMBS/008811148", "https://mivb.openplanner.team/stops/9755"], ["https://data.delijn.be/stops/401408", "https://mivb.openplanner.team/stops/0120326"], ["http://irail.be/stations/NMBS/008811536", "https://tec.openplanner.team/stops/Brixeur5"], ["http://irail.be/stations/NMBS/008812021", "https://mivb.openplanner.team/stops/6100"], ["https://data.delijn.be/stops/306311", "https://mivb.openplanner.team/stops/5823"], ["https://data.delijn.be/stops/301156", "https://tec.openplanner.team/stops/Bwbfhip2"], ["http://irail.be/stations/NMBS/008821535", "https://data.delijn.be/stops/109977"], ["https://data.delijn.be/stops/301039", "https://mivb.openplanner.team/stops/1202"], ["https://data.delijn.be/stops/302441", "https://tec.openplanner.team/stops/Bzluegl1"], ["http://irail.be/stations/NMBS/008896370", "https://data.delijn.be/stops/508867"], ["https://data.delijn.be/stops/301107", "https://mivb.openplanner.team/stops/1915"], ["http://irail.be/stations/NMBS/008843158", "https://tec.openplanner.team/stops/Lghmeun3"], ["https://data.delijn.be/stops/302831", "https://tec.openplanner.team/stops/Blaneli1"], ["https://data.delijn.be/stops/408841", "https://tec.openplanner.team/stops/LRmkult1"], ["https://data.delijn.be/stops/303583", "https://mivb.openplanner.team/stops/9729"], ["http://irail.be/stations/NMBS/008895232", "https://data.delijn.be/stops/208805"], ["https://data.delijn.be/stops/300897", "https://mivb.openplanner.team/stops/9946"], ["https://data.delijn.be/stops/307991", "https://tec.openplanner.team/stops/Bovejei1"], ["https://data.delijn.be/stops/404662", "https://tec.openplanner.team/stops/LPAbrun2"], ["https://data.delijn.be/stops/304705", "https://tec.openplanner.team/stops/Baudtri2"], ["https://data.delijn.be/stops/400675", "https://tec.openplanner.team/stops/Brach122"], ["http://irail.be/stations/NMBS/008833605", "https://data.delijn.be/stops/302838"], ["https://data.delijn.be/stops/504000", "https://tec.openplanner.team/stops/H4eh102b"], ["http://irail.be/stations/NMBS/008811429", "https://mivb.openplanner.team/stops/2079"], ["https://data.delijn.be/stops/302891", "https://tec.openplanner.team/stops/Bhevjac2"], ["https://data.delijn.be/stops/303576", "https://mivb.openplanner.team/stops/1121"], ["https://data.delijn.be/stops/308823", "https://tec.openplanner.team/stops/Bgdhbvu2"], ["https://data.delijn.be/stops/300920", "https://mivb.openplanner.team/stops/2903"], ["https://data.delijn.be/stops/303831", "https://mivb.openplanner.team/stops/3222"], ["https://data.delijn.be/stops/407751", "https://tec.openplanner.team/stops/LWOrout2"], ["https://data.delijn.be/stops/304037", "https://tec.openplanner.team/stops/Bovesnh1"], ["http://irail.be/stations/NMBS/008871225", "https://tec.openplanner.team/stops/Ccomott2"], ["http://irail.be/stations/NMBS/008821089", "https://data.delijn.be/stops/109135"], ["https://data.delijn.be/stops/408820", "https://tec.openplanner.team/stops/LMgwith1"], ["https://data.delijn.be/stops/508677", "https://tec.openplanner.team/stops/H4ef138a"], ["http://irail.be/stations/NMBS/008811726", "https://tec.openplanner.team/stops/Bwavlep2"], ["http://irail.be/stations/NMBS/008895711", "https://data.delijn.be/stops/206853"], ["https://mivb.openplanner.team/stops/5454F", "https://tec.openplanner.team/stops/Bwbfgar2"], ["https://data.delijn.be/stops/307004", "https://tec.openplanner.team/stops/Blkbbvh1"], ["https://data.delijn.be/stops/307831", "https://mivb.openplanner.team/stops/7501"], ["http://irail.be/stations/NMBS/008842705", "https://tec.openplanner.team/stops/LCPoneu2"], ["https://data.delijn.be/stops/301115", "https://mivb.openplanner.team/stops/1918"], ["https://data.delijn.be/stops/408908", "https://tec.openplanner.team/stops/LOTsav-1"], ["https://data.delijn.be/stops/302415", "https://tec.openplanner.team/stops/Bjodeco1"], ["http://irail.be/stations/NMBS/008813045", "https://mivb.openplanner.team/stops/6357F"], ["https://data.delijn.be/stops/308050", "https://tec.openplanner.team/stops/Btiegma1"], ["http://irail.be/stations/NMBS/008895646", "https://data.delijn.be/stops/208589"], ["https://data.delijn.be/stops/404661", "https://tec.openplanner.team/stops/LPAchpl1"], ["http://irail.be/stations/NMBS/008863453", "https://tec.openplanner.team/stops/N504acb"], ["https://data.delijn.be/stops/405740", "https://tec.openplanner.team/stops/Llgpire1"], ["http://irail.be/stations/NMBS/008891314", "https://data.delijn.be/stops/502505"], ["https://data.delijn.be/stops/207753", "https://tec.openplanner.team/stops/H4ss158b"], ["https://data.delijn.be/stops/307025", "https://tec.openplanner.team/stops/H1en100b"], ["https://mivb.openplanner.team/stops/1969", "https://tec.openplanner.team/stops/Buccdho2"], ["https://data.delijn.be/stops/308814", "https://tec.openplanner.team/stops/Bjodsje1"], ["https://data.delijn.be/stops/408896", "https://tec.openplanner.team/stops/LFPkerk2"], ["https://data.delijn.be/stops/302398", "https://mivb.openplanner.team/stops/5297B"], ["https://mivb.openplanner.team/stops/1872B", "https://tec.openplanner.team/stops/Bbxlner1"], ["https://data.delijn.be/stops/307233", "https://mivb.openplanner.team/stops/8784"], ["http://irail.be/stations/NMBS/008821311", "https://data.delijn.be/stops/107250"], ["https://data.delijn.be/stops/307221", "https://tec.openplanner.team/stops/Bhalgar2"], ["https://data.delijn.be/stops/407203", "https://tec.openplanner.team/stops/LHThall3"], ["https://data.delijn.be/stops/405733", "https://tec.openplanner.team/stops/Lrclant1"], ["https://data.delijn.be/stops/303376", "https://mivb.openplanner.team/stops/1826"], ["https://data.delijn.be/stops/208758", "https://tec.openplanner.team/stops/H5rx105a"], ["http://irail.be/stations/NMBS/008400280", "https://data.delijn.be/stops/501413"], ["http://irail.be/stations/NMBS/008892452", "https://data.delijn.be/stops/506629"], ["http://irail.be/stations/NMBS/008884640", "https://tec.openplanner.team/stops/H1hc127d"], ["http://irail.be/stations/NMBS/008863834", "https://tec.openplanner.team/stops/N338aia"], ["http://irail.be/stations/NMBS/008811601", "https://tec.openplanner.team/stops/Bottgar4"], ["http://irail.be/stations/NMBS/008200520", "https://tec.openplanner.team/stops/X626aga"], ["https://data.delijn.be/stops/301034", "https://mivb.openplanner.team/stops/0704"], ["https://data.delijn.be/stops/405462", "https://tec.openplanner.team/stops/LWHwaas1"], ["https://data.delijn.be/stops/300753", "https://mivb.openplanner.team/stops/2518"], ["https://data.delijn.be/stops/304027", "https://tec.openplanner.team/stops/Bovejme1"], ["https://mivb.openplanner.team/stops/3557", "https://tec.openplanner.team/stops/Bixefra1"], ["http://irail.be/stations/NMBS/008844206", "https://tec.openplanner.team/stops/Lpeprev2"], ["https://data.delijn.be/stops/408910", "https://tec.openplanner.team/stops/LVukabi1"], ["https://data.delijn.be/stops/300756", "https://mivb.openplanner.team/stops/1327"], ["https://data.delijn.be/stops/307807", "https://mivb.openplanner.team/stops/60"], ["http://irail.be/stations/NMBS/008844271", "https://tec.openplanner.team/stops/LTRfend1"], ["https://data.delijn.be/stops/300942", "https://mivb.openplanner.team/stops/3203"], ["http://irail.be/stations/NMBS/008893401", "https://data.delijn.be/stops/206915"], ["https://data.delijn.be/stops/301689", "https://tec.openplanner.team/stops/Bnetcor1"], ["https://data.delijn.be/stops/400492", "https://tec.openplanner.team/stops/LBSgeer2"], ["http://irail.be/stations/NMBS/008844321", "https://tec.openplanner.team/stops/LJSforg1"], ["https://data.delijn.be/stops/300923", "https://mivb.openplanner.team/stops/3273"], ["https://data.delijn.be/stops/307111", "https://tec.openplanner.team/stops/Bjodeco1"], ["https://mivb.openplanner.team/stops/5267", "https://tec.openplanner.team/stops/Bettars1"], ["https://data.delijn.be/stops/408828", "https://tec.openplanner.team/stops/LVImons2"], ["https://data.delijn.be/stops/305209", "https://tec.openplanner.team/stops/Bbosgar1"], ["http://irail.be/stations/NMBS/008015345", "https://tec.openplanner.team/stops/LrTbahn2"], ["https://data.delijn.be/stops/401416", "https://mivb.openplanner.team/stops/5312"], ["https://data.delijn.be/stops/405745", "https://tec.openplanner.team/stops/Llgpire1"], ["https://data.delijn.be/stops/304642", "https://mivb.openplanner.team/stops/1606"], ["http://irail.be/stations/NMBS/008811221", "https://data.delijn.be/stops/305547"], ["https://data.delijn.be/stops/307641", "https://mivb.openplanner.team/stops/1963"], ["https://data.delijn.be/stops/300412", "https://mivb.openplanner.team/stops/9657"], ["https://data.delijn.be/stops/302885", "https://tec.openplanner.team/stops/Bhevgro1"], ["https://data.delijn.be/stops/408983", "https://tec.openplanner.team/stops/LWAaxhe2"], ["https://data.delijn.be/stops/301037", "https://mivb.openplanner.team/stops/3284"], ["http://irail.be/stations/NMBS/008864410", "https://tec.openplanner.team/stops/X901aza"], ["http://irail.be/stations/NMBS/008711184", "https://tec.openplanner.team/stops/Cmqbasv2"], ["http://irail.be/stations/NMBS/008811775", "https://data.delijn.be/stops/301684"], ["https://data.delijn.be/stops/307146", "https://tec.openplanner.team/stops/Bhalvel1"], ["http://irail.be/stations/NMBS/008864824", "https://tec.openplanner.team/stops/N219adb"], ["https://data.delijn.be/stops/407582", "https://tec.openplanner.team/stops/LDpzol-2"], ["http://irail.be/stations/NMBS/008811411", "https://tec.openplanner.team/stops/Bixepla2"], ["http://irail.be/stations/NMBS/008822459", "https://data.delijn.be/stops/300679"], ["http://irail.be/stations/NMBS/008841202", "https://tec.openplanner.team/stops/Lghalli1"], ["https://data.delijn.be/stops/300855", "https://mivb.openplanner.team/stops/1083"], ["http://irail.be/stations/NMBS/008871688", "https://tec.openplanner.team/stops/H1fv103b"], ["https://data.delijn.be/stops/307233", "https://mivb.openplanner.team/stops/4129"], ["https://data.delijn.be/stops/408598", "https://tec.openplanner.team/stops/LTotrui2"], ["http://irail.be/stations/NMBS/008812120", "https://data.delijn.be/stops/307492"], ["https://data.delijn.be/stops/207797", "https://tec.openplanner.team/stops/H5rx104a"], ["http://irail.be/stations/NMBS/008895778", "https://data.delijn.be/stops/206734"], ["https://data.delijn.be/stops/300951", "https://mivb.openplanner.team/stops/2570"], ["http://irail.be/stations/NMBS/008864816", "https://tec.openplanner.team/stops/N211aia"], ["http://irail.be/stations/NMBS/008832250", "https://data.delijn.be/stops/404243"], ["https://data.delijn.be/stops/301047", "https://mivb.openplanner.team/stops/6755"], ["https://data.delijn.be/stops/303833", "https://mivb.openplanner.team/stops/1465"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/101446"], ["https://data.delijn.be/stops/306310", "https://tec.openplanner.team/stops/Bucccre1"], ["http://irail.be/stations/NMBS/008874609", "https://tec.openplanner.team/stops/N543cbc"], ["http://irail.be/stations/NMBS/008812237", "https://data.delijn.be/stops/306649"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/300347"], ["http://irail.be/stations/NMBS/008811106", "https://mivb.openplanner.team/stops/5275F"], ["https://data.delijn.be/stops/504382", "https://tec.openplanner.team/stops/H4pl136a"], ["http://irail.be/stations/NMBS/008886041", "https://tec.openplanner.team/stops/H5ma180b"], ["https://data.delijn.be/stops/405703", "https://tec.openplanner.team/stops/Llgangl2"], ["https://data.delijn.be/stops/301031", "https://mivb.openplanner.team/stops/6078"], ["http://irail.be/stations/NMBS/008891611", "https://data.delijn.be/stops/501510"], ["https://data.delijn.be/stops/306929", "https://tec.openplanner.team/stops/Bgoekaz1"], ["https://data.delijn.be/stops/303833", "https://mivb.openplanner.team/stops/2303"], ["https://data.delijn.be/stops/305318", "https://mivb.openplanner.team/stops/2854"], ["http://irail.be/stations/NMBS/008822228", "https://data.delijn.be/stops/102302"], ["http://irail.be/stations/NMBS/008841434", "https://tec.openplanner.team/stops/LBvnico1"], ["https://data.delijn.be/stops/301106", "https://mivb.openplanner.team/stops/1421"], ["https://data.delijn.be/stops/408869", "https://tec.openplanner.team/stops/LFClage2"], ["https://data.delijn.be/stops/308853", "https://mivb.openplanner.team/stops/5081F"], ["https://data.delijn.be/stops/306097", "https://tec.openplanner.team/stops/Bhevwzw2"], ["https://data.delijn.be/stops/408805", "https://tec.openplanner.team/stops/LVIgare1"], ["http://irail.be/stations/NMBS/008841665", "https://tec.openplanner.team/stops/Lhrherm2"], ["https://data.delijn.be/stops/302228", "https://tec.openplanner.team/stops/Blhupqu1"], ["http://irail.be/stations/NMBS/008891173", "https://data.delijn.be/stops/506461"], ["https://data.delijn.be/stops/306647", "https://mivb.openplanner.team/stops/7621"], ["https://data.delijn.be/stops/300957", "https://mivb.openplanner.team/stops/3526"], ["https://mivb.openplanner.team/stops/2717", "https://tec.openplanner.team/stops/Buccfja2"], ["https://data.delijn.be/stops/407233", "https://tec.openplanner.team/stops/LORroma1"], ["https://data.delijn.be/stops/302232", "https://tec.openplanner.team/stops/Blhufro1"], ["https://data.delijn.be/stops/400476", "https://tec.openplanner.team/stops/LBPmili1"], ["http://irail.be/stations/NMBS/008881406", "https://tec.openplanner.team/stops/H1ob330b"], ["http://irail.be/stations/NMBS/008872579", "https://tec.openplanner.team/stops/Bvlvbth1"], ["http://irail.be/stations/NMBS/008895737", "https://data.delijn.be/stops/206721"], ["http://irail.be/stations/NMBS/008844339", "https://tec.openplanner.team/stops/LTHwaux2"], ["http://irail.be/stations/NMBS/008846201", "https://tec.openplanner.team/stops/LVIgare1"], ["http://irail.be/stations/NMBS/008832458", "https://data.delijn.be/stops/109265"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1ne146a"], ["https://data.delijn.be/stops/407202", "https://tec.openplanner.team/stops/LHTbonn1"], ["https://data.delijn.be/stops/406318", "https://tec.openplanner.team/stops/LMastat4"], ["https://data.delijn.be/stops/305225", "https://mivb.openplanner.team/stops/9751"], ["https://data.delijn.be/stops/400496", "https://tec.openplanner.team/stops/LLxcrem2"], ["http://irail.be/stations/NMBS/008813003", "https://mivb.openplanner.team/stops/2268"], ["http://irail.be/stations/NMBS/008731388", "https://tec.openplanner.team/stops/H4ar101a"], ["https://data.delijn.be/stops/304317", "https://mivb.openplanner.team/stops/9703"], ["https://data.delijn.be/stops/509233", "https://tec.openplanner.team/stops/H4co107b"], ["http://irail.be/stations/NMBS/008844503", "https://tec.openplanner.team/stops/LhEcolo2"], ["http://irail.be/stations/NMBS/008873312", "https://tec.openplanner.team/stops/N137afb"], ["https://data.delijn.be/stops/301145", "https://tec.openplanner.team/stops/Buccpin1"], ["http://irail.be/stations/NMBS/008843224", "https://tec.openplanner.team/stops/Lfh-sci2"], ["https://data.delijn.be/stops/301014", "https://mivb.openplanner.team/stops/4101"], ["http://irail.be/stations/NMBS/008884715", "https://tec.openplanner.team/stops/H5bl117b"], ["https://data.delijn.be/stops/301675", "https://tec.openplanner.team/stops/Bnetcor1"], ["https://data.delijn.be/stops/308733", "https://tec.openplanner.team/stops/Bgoemgr2"], ["https://data.delijn.be/stops/301414", "https://tec.openplanner.team/stops/H1en106a"], ["http://irail.be/stations/NMBS/008861416", "https://tec.openplanner.team/stops/N541acb"], ["https://data.delijn.be/stops/301077", "https://mivb.openplanner.team/stops/6437F"], ["https://data.delijn.be/stops/305237", "https://tec.openplanner.team/stops/Bspkdon1"], ["http://irail.be/stations/NMBS/008896909", "https://data.delijn.be/stops/503312"], ["https://data.delijn.be/stops/404663", "https://tec.openplanner.team/stops/LPAbrun2"], ["https://data.delijn.be/stops/307791", "https://mivb.openplanner.team/stops/1711"], ["https://data.delijn.be/stops/407647", "https://tec.openplanner.team/stops/LBPmais1"], ["https://data.delijn.be/stops/208354", "https://tec.openplanner.team/stops/H5rx121b"], ["https://data.delijn.be/stops/408823", "https://tec.openplanner.team/stops/LMgberw2"], ["https://data.delijn.be/stops/504296", "https://tec.openplanner.team/stops/H4mo180a"], ["https://data.delijn.be/stops/303105", "https://tec.openplanner.team/stops/Bhevgro1"], ["https://data.delijn.be/stops/208610", "https://tec.openplanner.team/stops/H1by109a"], ["http://irail.be/stations/NMBS/008728687", "https://tec.openplanner.team/stops/H4rm110a"], ["http://irail.be/stations/NMBS/008881190", "https://tec.openplanner.team/stops/H1ml110a"], ["http://irail.be/stations/NMBS/008892452", "https://data.delijn.be/stops/505406"], ["https://data.delijn.be/stops/405702", "https://tec.openplanner.team/stops/Llghoch1"], ["http://irail.be/stations/NMBS/008895836", "https://data.delijn.be/stops/306713"], ["http://irail.be/stations/NMBS/008871852", "https://tec.openplanner.team/stops/Cmorgof2"], ["https://data.delijn.be/stops/400497", "https://tec.openplanner.team/stops/LEBmoul1"], ["https://data.delijn.be/stops/301071", "https://mivb.openplanner.team/stops/3253"], ["http://irail.be/stations/NMBS/008832615", "https://data.delijn.be/stops/400265"], ["http://irail.be/stations/NMBS/008871837", "https://tec.openplanner.team/stops/Clddelh1"], ["http://irail.be/stations/NMBS/008821634", "https://data.delijn.be/stops/101596"], ["https://data.delijn.be/stops/301022", "https://mivb.openplanner.team/stops/5105"], ["https://data.delijn.be/stops/504317", "https://tec.openplanner.team/stops/H4mo151b"], ["https://data.delijn.be/stops/305296", "https://mivb.openplanner.team/stops/9605"], ["https://mivb.openplanner.team/stops/1639", "https://tec.openplanner.team/stops/Bwolvan1"], ["http://irail.be/stations/NMBS/008812146", "https://data.delijn.be/stops/217006"], ["https://data.delijn.be/stops/207756", "https://tec.openplanner.team/stops/H5rx101a"], ["https://data.delijn.be/stops/207795", "https://tec.openplanner.team/stops/H5rx101a"], ["http://irail.be/stations/NMBS/008811734", "https://data.delijn.be/stops/307975"], ["https://data.delijn.be/stops/305145", "https://tec.openplanner.team/stops/Bmrqpla2"], ["https://data.delijn.be/stops/300760", "https://mivb.openplanner.team/stops/3760"], ["http://irail.be/stations/NMBS/008811262", "https://data.delijn.be/stops/302735"], ["https://data.delijn.be/stops/300875", "https://mivb.openplanner.team/stops/8803"], ["http://irail.be/stations/NMBS/008814431", "https://mivb.openplanner.team/stops/1933B"], ["http://irail.be/stations/NMBS/008861515", "https://tec.openplanner.team/stops/Bcrntru1"], ["http://irail.be/stations/NMBS/008869054", "https://tec.openplanner.team/stops/X687aca"], ["http://irail.be/stations/NMBS/008896412", "https://tec.openplanner.team/stops/H4co157b"], ["http://irail.be/stations/NMBS/008843349", "https://tec.openplanner.team/stops/LAMwall1"], ["http://irail.be/stations/NMBS/008894672", "https://data.delijn.be/stops/205830"], ["https://data.delijn.be/stops/300939", "https://mivb.openplanner.team/stops/3203"], ["http://irail.be/stations/NMBS/008895802", "https://data.delijn.be/stops/207100"], ["https://data.delijn.be/stops/301690", "https://tec.openplanner.team/stops/Bnetrtb2"], ["http://irail.be/stations/NMBS/008881562", "https://tec.openplanner.team/stops/H1ge117a"], ["https://data.delijn.be/stops/308867", "https://mivb.openplanner.team/stops/1825"], ["http://irail.be/stations/NMBS/008891173", "https://data.delijn.be/stops/501541"], ["http://irail.be/stations/NMBS/008844313", "https://tec.openplanner.team/stops/Lpecime2"], ["https://data.delijn.be/stops/404665", "https://tec.openplanner.team/stops/LPAvill2"], ["http://irail.be/stations/NMBS/008885522", "https://tec.openplanner.team/stops/H4ag102a"], ["http://irail.be/stations/NMBS/008832433", "https://data.delijn.be/stops/401931"], ["http://irail.be/stations/NMBS/008841459", "https://tec.openplanner.team/stops/LMOstat1"], ["https://data.delijn.be/stops/304599", "https://mivb.openplanner.team/stops/1383"], ["https://data.delijn.be/stops/307209", "https://tec.openplanner.team/stops/Bcbqcha1"], ["http://irail.be/stations/NMBS/008821337", "https://data.delijn.be/stops/107242"], ["http://irail.be/stations/NMBS/008832003", "https://data.delijn.be/stops/408556"], ["https://data.delijn.be/stops/208739", "https://tec.openplanner.team/stops/H5rx115a"], ["https://data.delijn.be/stops/300798", "https://mivb.openplanner.team/stops/2218"], ["https://data.delijn.be/stops/400493", "https://tec.openplanner.team/stops/LBStong2"], ["http://irail.be/stations/NMBS/008821238", "https://data.delijn.be/stops/102440"], ["https://mivb.openplanner.team/stops/1756B", "https://tec.openplanner.team/stops/Baudvdu2"], ["https://data.delijn.be/stops/406564", "https://tec.openplanner.team/stops/LHTcent2"], ["https://data.delijn.be/stops/208742", "https://tec.openplanner.team/stops/H4am100b"], ["http://irail.be/stations/NMBS/008865615", "https://tec.openplanner.team/stops/N347aca"], ["https://data.delijn.be/stops/503032", "https://tec.openplanner.team/stops/H4ae100a"], ["http://irail.be/stations/NMBS/008892254", "https://data.delijn.be/stops/505664"], ["http://irail.be/stations/NMBS/008812245", "https://data.delijn.be/stops/304782"], ["http://irail.be/stations/NMBS/008893252", "https://data.delijn.be/stops/203018"], ["http://irail.be/stations/NMBS/008831005", "https://data.delijn.be/stops/403121"], ["http://irail.be/stations/NMBS/008811544", "https://tec.openplanner.team/stops/Brixape2"], ["http://irail.be/stations/NMBS/008821246", "https://data.delijn.be/stops/107885"], ["https://data.delijn.be/stops/408801", "https://tec.openplanner.team/stops/LVIastr1"], ["https://data.delijn.be/stops/302807", "https://mivb.openplanner.team/stops/1587"], ["https://mivb.openplanner.team/stops/1760", "https://tec.openplanner.team/stops/Baudtri1"], ["https://data.delijn.be/stops/408976", "https://tec.openplanner.team/stops/LWApr%C3%A9s3"], ["https://data.delijn.be/stops/305354", "https://tec.openplanner.team/stops/Brsregl2"], ["https://data.delijn.be/stops/301014", "https://mivb.openplanner.team/stops/4162"], ["https://data.delijn.be/stops/304207", "https://tec.openplanner.team/stops/Brsrpri2"], ["http://irail.be/stations/NMBS/008896305", "https://tec.openplanner.team/stops/H4mn100d"], ["https://data.delijn.be/stops/307966", "https://tec.openplanner.team/stops/Bwavzno1"], ["http://irail.be/stations/NMBS/008895752", "https://data.delijn.be/stops/207652"], ["https://data.delijn.be/stops/509735", "https://tec.openplanner.team/stops/H4ev126b"], ["https://data.delijn.be/stops/300956", "https://mivb.openplanner.team/stops/2058"], ["https://data.delijn.be/stops/302413", "https://tec.openplanner.team/stops/Bjodeco1"], ["https://data.delijn.be/stops/305520", "https://mivb.openplanner.team/stops/1377"], ["https://data.delijn.be/stops/301053", "https://mivb.openplanner.team/stops/0460250"], ["http://irail.be/stations/NMBS/008814308", "https://data.delijn.be/stops/307225"], ["http://irail.be/stations/NMBS/008884335", "https://tec.openplanner.team/stops/H1he100a"], ["https://mivb.openplanner.team/stops/1251", "https://tec.openplanner.team/stops/Buccdho2"], ["http://irail.be/stations/NMBS/008864469", "https://tec.openplanner.team/stops/X982bdb"], ["http://irail.be/stations/NMBS/008833449", "https://data.delijn.be/stops/405343"], ["https://data.delijn.be/stops/304621", "https://mivb.openplanner.team/stops/5963"], ["https://data.delijn.be/stops/408861", "https://tec.openplanner.team/stops/LFChuis2"], ["https://mivb.openplanner.team/stops/2763", "https://tec.openplanner.team/stops/Buccdef1"], ["https://data.delijn.be/stops/301419", "https://tec.openplanner.team/stops/H1en105a"], ["https://data.delijn.be/stops/305341", "https://tec.openplanner.team/stops/Blmlvex2"], ["https://mivb.openplanner.team/stops/3625B", "https://tec.openplanner.team/stops/Bsgimca2"], ["https://data.delijn.be/stops/301041", "https://mivb.openplanner.team/stops/58"], ["https://data.delijn.be/stops/304447", "https://tec.openplanner.team/stops/Buccpes1"], ["https://data.delijn.be/stops/301683", "https://tec.openplanner.team/stops/Bpecsta1"], ["https://data.delijn.be/stops/300061", "https://tec.openplanner.team/stops/Blemsta2"], ["http://irail.be/stations/NMBS/008841442", "https://tec.openplanner.team/stops/LRemorr3"], ["https://data.delijn.be/stops/408889", "https://tec.openplanner.team/stops/LFMveur2"], ["http://irail.be/stations/NMBS/008895646", "https://data.delijn.be/stops/306269"], ["http://irail.be/stations/NMBS/008845005", "https://tec.openplanner.team/stops/X790aia"], ["http://irail.be/stations/NMBS/008821667", "https://data.delijn.be/stops/107012"], ["https://data.delijn.be/stops/301019", "https://mivb.openplanner.team/stops/4059"], ["https://data.delijn.be/stops/302851", "https://tec.openplanner.team/stops/Bwaakap1"], ["https://data.delijn.be/stops/404654", "https://tec.openplanner.team/stops/LJUfort2"], ["https://data.delijn.be/stops/208764", "https://tec.openplanner.team/stops/H5rx113b"], ["https://data.delijn.be/stops/408851", "https://tec.openplanner.team/stops/LTEkl161"], ["http://irail.be/stations/NMBS/008843430", "https://tec.openplanner.team/stops/LBseg--2"], ["http://irail.be/stations/NMBS/008832565", "https://data.delijn.be/stops/405765"], ["https://mivb.openplanner.team/stops/0220133", "https://tec.openplanner.team/stops/Baudsju1"], ["https://data.delijn.be/stops/304316", "https://mivb.openplanner.team/stops/9703"], ["http://irail.be/stations/NMBS/008886587", "https://tec.openplanner.team/stops/H5is169b"], ["https://data.delijn.be/stops/300886", "https://mivb.openplanner.team/stops/6482"], ["https://data.delijn.be/stops/302902", "https://tec.openplanner.team/stops/Bhevl3l1"], ["http://irail.be/stations/NMBS/008895240", "https://data.delijn.be/stops/208684"], ["https://data.delijn.be/stops/509292", "https://tec.openplanner.team/stops/H4mo208b"], ["http://irail.be/stations/NMBS/008896008", "https://data.delijn.be/stops/509770"], ["http://irail.be/stations/NMBS/008821238", "https://data.delijn.be/stops/105430"], ["https://data.delijn.be/stops/301068", "https://mivb.openplanner.team/stops/8741"], ["https://data.delijn.be/stops/300396", "https://tec.openplanner.team/stops/Bhalgja1"], ["http://irail.be/stations/NMBS/008842655", "https://tec.openplanner.team/stops/LTIdumo2"], ["https://data.delijn.be/stops/307024", "https://tec.openplanner.team/stops/H1en101b"], ["https://data.delijn.be/stops/300961", "https://mivb.openplanner.team/stops/2046"], ["https://data.delijn.be/stops/301025", "https://mivb.openplanner.team/stops/8341"], ["https://data.delijn.be/stops/301033", "https://mivb.openplanner.team/stops/3625B"], ["http://irail.be/stations/NMBS/008821857", "https://data.delijn.be/stops/108050"], ["http://irail.be/stations/NMBS/008821543", "https://data.delijn.be/stops/105404"], ["https://data.delijn.be/stops/208767", "https://tec.openplanner.team/stops/H5rx103a"], ["https://data.delijn.be/stops/304861", "https://tec.openplanner.team/stops/Bbrlmez1"], ["http://irail.be/stations/NMBS/008844347", "https://tec.openplanner.team/stops/LTHroch2"], ["http://irail.be/stations/NMBS/008200940", "https://tec.openplanner.team/stops/X681aha"], ["https://data.delijn.be/stops/505827", "https://tec.openplanner.team/stops/H4mo145b"], ["http://irail.be/stations/NMBS/008812211", "https://mivb.openplanner.team/stops/4270F"], ["http://irail.be/stations/NMBS/008871852", "https://tec.openplanner.team/stops/Cmazsnc2"], ["https://data.delijn.be/stops/307718", "https://tec.openplanner.team/stops/Bwatcrf1"], ["http://irail.be/stations/NMBS/008884632", "https://tec.openplanner.team/stops/H1po130a"], ["https://data.delijn.be/stops/300739", "https://mivb.openplanner.team/stops/2550"], ["http://irail.be/stations/NMBS/008822814", "https://data.delijn.be/stops/106752"], ["https://data.delijn.be/stops/302876", "https://mivb.openplanner.team/stops/2144"], ["http://irail.be/stations/NMBS/008863867", "https://tec.openplanner.team/stops/N308afc"], ["https://data.delijn.be/stops/404660", "https://tec.openplanner.team/stops/LJU493-1"], ["https://data.delijn.be/stops/301412", "https://tec.openplanner.team/stops/H1en102a"], ["http://irail.be/stations/NMBS/008833175", "https://data.delijn.be/stops/303174"], ["http://irail.be/stations/NMBS/008200510", "https://tec.openplanner.team/stops/X685afa"], ["https://data.delijn.be/stops/307921", "https://mivb.openplanner.team/stops/2874"], ["https://data.delijn.be/stops/504235", "https://tec.openplanner.team/stops/H4co146b"], ["http://irail.be/stations/NMBS/008895067", "https://data.delijn.be/stops/207929"], ["https://data.delijn.be/stops/300018", "https://tec.openplanner.team/stops/Buccham1"], ["https://data.delijn.be/stops/308124", "https://tec.openplanner.team/stops/Bgoesch3"], ["https://data.delijn.be/stops/400473", "https://tec.openplanner.team/stops/LGLeg--1"], ["https://data.delijn.be/stops/300806", "https://mivb.openplanner.team/stops/3709"], ["https://data.delijn.be/stops/407491", "https://tec.openplanner.team/stops/LTobilz1"], ["http://irail.be/stations/NMBS/008821063", "https://data.delijn.be/stops/102799"], ["http://irail.be/stations/NMBS/008872066", "https://tec.openplanner.team/stops/Cchheig1"], ["http://irail.be/stations/NMBS/008821154", "https://data.delijn.be/stops/101166"], ["https://data.delijn.be/stops/303585", "https://mivb.openplanner.team/stops/3042"], ["https://data.delijn.be/stops/509740", "https://tec.openplanner.team/stops/H4lu128a"], ["https://data.delijn.be/stops/307140", "https://tec.openplanner.team/stops/Bzluqga2"], ["https://data.delijn.be/stops/301004", "https://mivb.openplanner.team/stops/3109"], ["https://mivb.openplanner.team/stops/8331", "https://tec.openplanner.team/stops/Bsgihmo2"], ["https://data.delijn.be/stops/304451", "https://tec.openplanner.team/stops/Brsgece1"], ["https://data.delijn.be/stops/301680", "https://tec.openplanner.team/stops/Bnetegl2"], ["https://data.delijn.be/stops/307636", "https://mivb.openplanner.team/stops/1938"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1ml112a"], ["https://data.delijn.be/stops/305350", "https://tec.openplanner.team/stops/Blmldmi2"], ["https://data.delijn.be/stops/301315", "https://mivb.openplanner.team/stops/9825F"], ["https://data.delijn.be/stops/503771", "https://tec.openplanner.team/stops/H4eh104a"], ["http://irail.be/stations/NMBS/008893039", "https://data.delijn.be/stops/201495"], ["https://data.delijn.be/stops/408836", "https://tec.openplanner.team/stops/LRmsmvo3"], ["https://data.delijn.be/stops/301041", "https://mivb.openplanner.team/stops/5011"], ["http://irail.be/stations/NMBS/008822251", "https://data.delijn.be/stops/306765"], ["http://irail.be/stations/NMBS/008883311", "https://tec.openplanner.team/stops/Benggar1"], ["http://irail.be/stations/NMBS/008862018", "https://tec.openplanner.team/stops/X602aea"], ["http://irail.be/stations/NMBS/008812161", "https://data.delijn.be/stops/206349"], ["https://data.delijn.be/stops/408898", "https://tec.openplanner.team/stops/LFPdeme2"], ["https://data.delijn.be/stops/305913", "https://mivb.openplanner.team/stops/5165"], ["http://irail.be/stations/NMBS/008844503", "https://tec.openplanner.team/stops/LBNhegg1"], ["https://data.delijn.be/stops/504135", "https://tec.openplanner.team/stops/H4co150b"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bsmgmou2"], ["http://irail.be/stations/NMBS/008864824", "https://tec.openplanner.team/stops/N211asa"], ["http://irail.be/stations/NMBS/008841608", "https://tec.openplanner.team/stops/Lhrbell1"], ["http://irail.be/stations/NMBS/008889011", "https://tec.openplanner.team/stops/H4wa156a"], ["https://data.delijn.be/stops/300982", "https://mivb.openplanner.team/stops/7246"], ["https://data.delijn.be/stops/407581", "https://tec.openplanner.team/stops/LDppana1"], ["https://mivb.openplanner.team/stops/1903", "https://tec.openplanner.team/stops/Bixleix2"], ["http://irail.be/stations/NMBS/008812070", "https://data.delijn.be/stops/300211"], ["https://data.delijn.be/stops/300316", "https://tec.openplanner.team/stops/Bhmmpos1"], ["https://data.delijn.be/stops/208543", "https://tec.openplanner.team/stops/H1bd100a"], ["http://irail.be/stations/NMBS/008892288", "https://data.delijn.be/stops/508002"], ["https://data.delijn.be/stops/405449", "https://tec.openplanner.team/stops/Blanove1"], ["https://data.delijn.be/stops/302875", "https://mivb.openplanner.team/stops/2146"], ["http://irail.be/stations/NMBS/008822814", "https://data.delijn.be/stops/109527"], ["https://data.delijn.be/stops/301130", "https://tec.openplanner.team/stops/Buccron2"], ["http://irail.be/stations/NMBS/008812120", "https://data.delijn.be/stops/206178"], ["http://irail.be/stations/NMBS/008874583", "https://tec.openplanner.team/stops/N543bpc"], ["http://irail.be/stations/NMBS/008894755", "https://data.delijn.be/stops/205445"], ["https://data.delijn.be/stops/408842", "https://tec.openplanner.team/stops/LRmmabr2"], ["https://data.delijn.be/stops/301106", "https://mivb.openplanner.team/stops/1500"], ["http://irail.be/stations/NMBS/008893815", "https://data.delijn.be/stops/202985"], ["https://data.delijn.be/stops/307202", "https://tec.openplanner.team/stops/Bhaleur1"], ["https://data.delijn.be/stops/308734", "https://tec.openplanner.team/stops/Bgoemgr2"], ["https://data.delijn.be/stops/301166", "https://mivb.openplanner.team/stops/2119"], ["https://data.delijn.be/stops/305434", "https://mivb.openplanner.team/stops/5528F"], ["http://irail.be/stations/NMBS/008843141", "https://tec.openplanner.team/stops/LjeGRPMC"], ["http://irail.be/stations/NMBS/008812013", "https://mivb.openplanner.team/stops/0470759"], ["http://irail.be/stations/NMBS/008731388", "https://data.delijn.be/stops/505375"], ["https://data.delijn.be/stops/209192", "https://tec.openplanner.team/stops/H5rx137a"], ["https://data.delijn.be/stops/300954", "https://mivb.openplanner.team/stops/4116"], ["http://irail.be/stations/NMBS/008822533", "https://data.delijn.be/stops/301873"], ["http://irail.be/stations/NMBS/008863404", "https://tec.openplanner.team/stops/N506bqb"], ["http://irail.be/stations/NMBS/008821436", "https://data.delijn.be/stops/104277"], ["https://data.delijn.be/stops/407231", "https://tec.openplanner.team/stops/LORroma1"], ["https://data.delijn.be/stops/303223", "https://mivb.openplanner.team/stops/3815"], ["http://irail.be/stations/NMBS/008891652", "https://data.delijn.be/stops/506149"], ["https://data.delijn.be/stops/305352", "https://tec.openplanner.team/stops/Bwavcin2"], ["https://data.delijn.be/stops/404675", "https://tec.openplanner.team/stops/LVSslin2"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1ne138b"], ["http://irail.be/stations/NMBS/008864311", "https://tec.openplanner.team/stops/X991aaa"], ["https://data.delijn.be/stops/408963", "https://tec.openplanner.team/stops/LWAmouh2"], ["https://data.delijn.be/stops/405440", "https://tec.openplanner.team/stops/LWSstat2"], ["https://data.delijn.be/stops/300979", "https://mivb.openplanner.team/stops/5741"], ["https://data.delijn.be/stops/407232", "https://tec.openplanner.team/stops/LORroma1"], ["https://data.delijn.be/stops/400484", "https://tec.openplanner.team/stops/LRGunio3"], ["https://data.delijn.be/stops/305916", "https://mivb.openplanner.team/stops/4598"], ["http://irail.be/stations/NMBS/008861119", "https://tec.openplanner.team/stops/N501lxa"], ["http://irail.be/stations/NMBS/008883436", "https://tec.openplanner.team/stops/H1sy139b"], ["http://irail.be/stations/NMBS/008821105", "https://data.delijn.be/stops/102214"], ["http://irail.be/stations/NMBS/008821865", "https://data.delijn.be/stops/308499"], ["https://data.delijn.be/stops/303948", "https://tec.openplanner.team/stops/Bbldmun2"], ["https://data.delijn.be/stops/307199", "https://tec.openplanner.team/stops/Bhalker2"], ["https://data.delijn.be/stops/300788", "https://mivb.openplanner.team/stops/1484"], ["https://data.delijn.be/stops/300804", "https://mivb.openplanner.team/stops/7690206"], ["https://data.delijn.be/stops/307693", "https://mivb.openplanner.team/stops/2116B"], ["https://data.delijn.be/stops/400469", "https://tec.openplanner.team/stops/LEMeg--1"], ["http://irail.be/stations/NMBS/008863842", "https://tec.openplanner.team/stops/N261aab"], ["https://data.delijn.be/stops/303831", "https://mivb.openplanner.team/stops/8282"], ["https://data.delijn.be/stops/509317", "https://tec.openplanner.team/stops/H4mo206b"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/Cmlecha1"], ["https://mivb.openplanner.team/stops/1829", "https://tec.openplanner.team/stops/Bwolkra1"], ["https://data.delijn.be/stops/300999", "https://mivb.openplanner.team/stops/6413F"], ["http://irail.be/stations/NMBS/008896503", "https://data.delijn.be/stops/500954"], ["https://data.delijn.be/stops/302848", "https://tec.openplanner.team/stops/Bwaakap2"], ["https://data.delijn.be/stops/505831", "https://tec.openplanner.team/stops/H4po128a"], ["http://irail.be/stations/NMBS/008881190", "https://tec.openplanner.team/stops/H1ju121b"], ["http://irail.be/stations/NMBS/008843406", "https://tec.openplanner.team/stops/NL80aab"], ["https://data.delijn.be/stops/405702", "https://tec.openplanner.team/stops/Llgbatt2"], ["https://data.delijn.be/stops/408863", "https://tec.openplanner.team/stops/LFCscho1"], ["http://irail.be/stations/NMBS/008892452", "https://data.delijn.be/stops/500936"], ["https://data.delijn.be/stops/300273", "https://mivb.openplanner.team/stops/4115"], ["http://irail.be/stations/NMBS/008728600", "https://tec.openplanner.team/stops/H4fg116b"], ["http://irail.be/stations/NMBS/008892734", "https://data.delijn.be/stops/503010"], ["https://data.delijn.be/stops/303230", "https://mivb.openplanner.team/stops/2659"], ["https://data.delijn.be/stops/307832", "https://mivb.openplanner.team/stops/6483B"], ["http://irail.be/stations/NMBS/008821071", "https://data.delijn.be/stops/108970"], ["http://irail.be/stations/NMBS/008871332", "https://tec.openplanner.team/stops/Cobmara2"], ["https://data.delijn.be/stops/408871", "https://tec.openplanner.team/stops/LMgkrui1"], ["https://data.delijn.be/stops/305425", "https://mivb.openplanner.team/stops/9553"], ["https://data.delijn.be/stops/504237", "https://tec.openplanner.team/stops/H4co106a"], ["https://data.delijn.be/stops/408679", "https://tec.openplanner.team/stops/LOTsav-2"], ["https://data.delijn.be/stops/208416", "https://tec.openplanner.team/stops/H4rs117b"], ["http://irail.be/stations/NMBS/008865227", "https://tec.openplanner.team/stops/X898aoa"], ["https://data.delijn.be/stops/305338", "https://tec.openplanner.team/stops/Bwavcin2"], ["https://data.delijn.be/stops/301159", "https://mivb.openplanner.team/stops/5920C"], ["http://irail.be/stations/NMBS/008722326", "https://data.delijn.be/stops/500926"], ["http://irail.be/stations/NMBS/008814431", "https://mivb.openplanner.team/stops/5822F"], ["http://irail.be/stations/NMBS/008832250", "https://data.delijn.be/stops/404236"], ["https://data.delijn.be/stops/408896", "https://tec.openplanner.team/stops/LVu03--1"], ["http://irail.be/stations/NMBS/008822277", "https://data.delijn.be/stops/305825"], ["http://irail.be/stations/NMBS/008832045", "https://data.delijn.be/stops/400421"], ["https://mivb.openplanner.team/stops/4857B", "https://tec.openplanner.team/stops/Buccobs2"], ["https://data.delijn.be/stops/404660", "https://tec.openplanner.team/stops/LJUxhen1"], ["http://irail.be/stations/NMBS/008892403", "https://data.delijn.be/stops/508342"], ["https://mivb.openplanner.team/stops/1962", "https://tec.openplanner.team/stops/Bucccal4"], ["https://data.delijn.be/stops/307832", "https://mivb.openplanner.team/stops/2254"], ["http://irail.be/stations/NMBS/008883006", "https://tec.openplanner.team/stops/H3br100a"], ["http://irail.be/stations/NMBS/008831310", "https://data.delijn.be/stops/408540"], ["http://irail.be/stations/NMBS/008886041", "https://tec.openplanner.team/stops/H5ma185b"], ["http://irail.be/stations/NMBS/008889045", "https://tec.openplanner.team/stops/H4te251b"], ["http://irail.be/stations/NMBS/008891314", "https://data.delijn.be/stops/502489"], ["https://data.delijn.be/stops/301015", "https://mivb.openplanner.team/stops/4159"], ["https://data.delijn.be/stops/301131", "https://mivb.openplanner.team/stops/2763"], ["https://data.delijn.be/stops/305356", "https://tec.openplanner.team/stops/Bwavtpi2"], ["https://data.delijn.be/stops/307816", "https://tec.openplanner.team/stops/Bovesnh2"], ["http://irail.be/stations/NMBS/008893070", "https://data.delijn.be/stops/208696"], ["https://data.delijn.be/stops/307043", "https://mivb.openplanner.team/stops/3309F"], ["https://data.delijn.be/stops/307685", "https://mivb.openplanner.team/stops/1957B"], ["https://mivb.openplanner.team/stops/2109B", "https://tec.openplanner.team/stops/Buccvch1"], ["https://data.delijn.be/stops/408655", "https://tec.openplanner.team/stops/LToluik2"], ["https://data.delijn.be/stops/307557", "https://tec.openplanner.team/stops/Bstecou2"], ["https://data.delijn.be/stops/301413", "https://tec.openplanner.team/stops/Bengvma2"], ["http://irail.be/stations/NMBS/008893567", "https://data.delijn.be/stops/201939"], ["https://data.delijn.be/stops/400481", "https://tec.openplanner.team/stops/LGLc12-3"], ["http://irail.be/stations/NMBS/008822848", "https://data.delijn.be/stops/104578"], ["http://irail.be/stations/NMBS/008814258", "https://tec.openplanner.team/stops/Bblaast1"], ["http://irail.be/stations/NMBS/008895125", "https://data.delijn.be/stops/206262"], ["https://data.delijn.be/stops/307835", "https://mivb.openplanner.team/stops/2017"], ["https://data.delijn.be/stops/301113", "https://tec.openplanner.team/stops/Bucccal3"], ["https://data.delijn.be/stops/306903", "https://tec.openplanner.team/stops/Bgoevli2"], ["http://irail.be/stations/NMBS/008892635", "https://data.delijn.be/stops/209495"], ["https://data.delijn.be/stops/307922", "https://mivb.openplanner.team/stops/2871"], ["https://data.delijn.be/stops/306899", "https://tec.openplanner.team/stops/Bgoegma1"], ["https://data.delijn.be/stops/300542", "https://tec.openplanner.team/stops/Bhmmjco1"], ["https://data.delijn.be/stops/507767", "https://tec.openplanner.team/stops/H4ae102a"], ["http://irail.be/stations/NMBS/008891314", "https://data.delijn.be/stops/507509"], ["https://data.delijn.be/stops/301137", "https://tec.openplanner.team/stops/Buccham1"], ["https://data.delijn.be/stops/403773", "https://tec.openplanner.team/stops/LOeelbe2"], ["https://data.delijn.be/stops/505842", "https://tec.openplanner.team/stops/H4co108a"], ["http://irail.be/stations/NMBS/008865615", "https://tec.openplanner.team/stops/X347aaa"], ["http://irail.be/stations/NMBS/008814340", "https://data.delijn.be/stops/219080"], ["https://data.delijn.be/stops/301014", "https://mivb.openplanner.team/stops/4002B"], ["https://data.delijn.be/stops/308094", "https://tec.openplanner.team/stops/Bpiepnd2"], ["https://data.delijn.be/stops/301080", "https://mivb.openplanner.team/stops/9060"], ["https://data.delijn.be/stops/300335", "https://tec.openplanner.team/stops/Balswsa1"], ["https://data.delijn.be/stops/302823", "https://tec.openplanner.team/stops/Blhugar1"], ["https://data.delijn.be/stops/301137", "https://mivb.openplanner.team/stops/6440"], ["https://data.delijn.be/stops/410141", "https://tec.openplanner.team/stops/Lrcauto2"], ["https://mivb.openplanner.team/stops/2120", "https://tec.openplanner.team/stops/Buccron1"], ["https://data.delijn.be/stops/404663", "https://tec.openplanner.team/stops/LPAmc--1"], ["https://data.delijn.be/stops/401922", "https://tec.openplanner.team/stops/LORcomb1"], ["http://irail.be/stations/NMBS/008864436", "https://tec.openplanner.team/stops/X923ajb"], ["https://mivb.openplanner.team/stops/1718B", "https://tec.openplanner.team/stops/Baudvdr1"], ["https://data.delijn.be/stops/401413", "https://mivb.openplanner.team/stops/5264F"], ["https://data.delijn.be/stops/307641", "https://mivb.openplanner.team/stops/1939"], ["http://irail.be/stations/NMBS/008861127", "https://tec.openplanner.team/stops/N501cxb"], ["http://irail.be/stations/NMBS/008896008", "https://data.delijn.be/stops/508388"], ["https://data.delijn.be/stops/403809", "https://tec.openplanner.team/stops/LOreg--2"], ["http://irail.be/stations/NMBS/008895844", "https://data.delijn.be/stops/206101"], ["https://data.delijn.be/stops/405420", "https://tec.openplanner.team/stops/Blanath2"], ["http://irail.be/stations/NMBS/008821089", "https://data.delijn.be/stops/108875"], ["https://data.delijn.be/stops/308684", "https://mivb.openplanner.team/stops/9600B"], ["https://data.delijn.be/stops/301132", "https://tec.openplanner.team/stops/Buccgob1"], ["https://data.delijn.be/stops/504294", "https://tec.openplanner.team/stops/H4mo144a"], ["http://irail.be/stations/NMBS/008841400", "https://tec.openplanner.team/stops/LWAlong2"], ["https://data.delijn.be/stops/304698", "https://mivb.openplanner.team/stops/5731F"], ["http://irail.be/stations/NMBS/008892635", "https://data.delijn.be/stops/209278"], ["http://irail.be/stations/NMBS/008727100", "https://data.delijn.be/stops/504547"], ["https://data.delijn.be/stops/300774", "https://mivb.openplanner.team/stops/1489"], ["https://data.delijn.be/stops/306399", "https://mivb.openplanner.team/stops/1242"], ["https://data.delijn.be/stops/302238", "https://tec.openplanner.team/stops/Blhurcl1"], ["https://data.delijn.be/stops/304720", "https://mivb.openplanner.team/stops/1315"], ["http://irail.be/stations/NMBS/008831138", "https://data.delijn.be/stops/400867"], ["https://data.delijn.be/stops/305915", "https://mivb.openplanner.team/stops/5102"], ["https://data.delijn.be/stops/509230", "https://tec.openplanner.team/stops/H4co107a"], ["https://data.delijn.be/stops/302226", "https://tec.openplanner.team/stops/Bhoegbr2"], ["https://data.delijn.be/stops/307150", "https://tec.openplanner.team/stops/Bhalomo1"], ["https://data.delijn.be/stops/410152", "https://mivb.openplanner.team/stops/3765"], ["https://data.delijn.be/stops/302794", "https://mivb.openplanner.team/stops/2078"], ["http://irail.be/stations/NMBS/008871662", "https://tec.openplanner.team/stops/H1so139d"], ["https://data.delijn.be/stops/405740", "https://tec.openplanner.team/stops/Llgcamp1"], ["https://data.delijn.be/stops/302407", "https://mivb.openplanner.team/stops/3612F"], ["https://data.delijn.be/stops/304563", "https://tec.openplanner.team/stops/Bhaldbo1"], ["https://data.delijn.be/stops/303226", "https://mivb.openplanner.team/stops/2611"], ["https://data.delijn.be/stops/401411", "https://mivb.openplanner.team/stops/1278"], ["https://data.delijn.be/stops/300759", "https://mivb.openplanner.team/stops/7730602"], ["https://data.delijn.be/stops/304062", "https://tec.openplanner.team/stops/Bwavcin1"], ["https://data.delijn.be/stops/304687", "https://tec.openplanner.team/stops/Bhalkrk1"], ["http://irail.be/stations/NMBS/008889011", "https://tec.openplanner.team/stops/H4mo137b"], ["http://irail.be/stations/NMBS/008811189", "https://data.delijn.be/stops/306383"], ["http://irail.be/stations/NMBS/008871605", "https://tec.openplanner.team/stops/H1er113b"], ["https://data.delijn.be/stops/410145", "https://tec.openplanner.team/stops/Llgcrah2"], ["https://data.delijn.be/stops/405655", "https://tec.openplanner.team/stops/LCAwals2"], ["https://data.delijn.be/stops/208182", "https://tec.openplanner.team/stops/H5rx132b"], ["https://data.delijn.be/stops/302799", "https://mivb.openplanner.team/stops/1661"], ["https://data.delijn.be/stops/509735", "https://tec.openplanner.team/stops/H4do104a"], ["https://data.delijn.be/stops/208745", "https://tec.openplanner.team/stops/H4am101b"], ["https://data.delijn.be/stops/301115", "https://tec.openplanner.team/stops/Buccchu1"], ["https://data.delijn.be/stops/300890", "https://mivb.openplanner.team/stops/2856B"], ["http://irail.be/stations/NMBS/008812146", "https://data.delijn.be/stops/206358"], ["https://mivb.openplanner.team/stops/5460F", "https://tec.openplanner.team/stops/Bixlozo1"], ["https://data.delijn.be/stops/405720", "https://tec.openplanner.team/stops/LlgR-Fr*"], ["https://data.delijn.be/stops/404681", "https://tec.openplanner.team/stops/LWibare1"], ["http://irail.be/stations/NMBS/008821451", "https://data.delijn.be/stops/105864"], ["https://data.delijn.be/stops/301076", "https://mivb.openplanner.team/stops/3288"], ["https://data.delijn.be/stops/307718", "https://tec.openplanner.team/stops/Bwatali1"], ["https://data.delijn.be/stops/303079", "https://tec.openplanner.team/stops/Bleunaa2"], ["http://irail.be/stations/NMBS/008871514", "https://tec.openplanner.team/stops/Cfmwaut2"], ["https://data.delijn.be/stops/408973", "https://tec.openplanner.team/stops/LWAlong2"], ["http://irail.be/stations/NMBS/008881430", "https://tec.openplanner.team/stops/H1vh136b"], ["https://data.delijn.be/stops/305543", "https://tec.openplanner.team/stops/Balswin3"], ["https://data.delijn.be/stops/408854", "https://tec.openplanner.team/stops/LFChuis1"], ["https://data.delijn.be/stops/405738", "https://tec.openplanner.team/stops/Lrclohe1"], ["http://irail.be/stations/NMBS/008833001", "https://data.delijn.be/stops/302944"], ["http://irail.be/stations/NMBS/008400180", "https://data.delijn.be/stops/102754"], ["https://mivb.openplanner.team/stops/1758B", "https://tec.openplanner.team/stops/Baudsju2"], ["http://irail.be/stations/NMBS/008886546", "https://tec.openplanner.team/stops/H1ol140a"], ["http://irail.be/stations/NMBS/008849072", "https://tec.openplanner.team/stops/X790ahb"], ["http://irail.be/stations/NMBS/008881505", "https://tec.openplanner.team/stops/H1qp142b"], ["https://data.delijn.be/stops/505918", "https://tec.openplanner.team/stops/H4co148b"], ["https://data.delijn.be/stops/301051", "https://mivb.openplanner.team/stops/0460150"], ["http://irail.be/stations/NMBS/008812245", "https://data.delijn.be/stops/304797"], ["https://data.delijn.be/stops/304208", "https://tec.openplanner.team/stops/Brsrpch1"], ["https://mivb.openplanner.team/stops/8122", "https://tec.openplanner.team/stops/Bwolrod1"], ["http://irail.be/stations/NMBS/008891652", "https://data.delijn.be/stops/506435"], ["https://data.delijn.be/stops/300831", "https://mivb.openplanner.team/stops/2810"], ["https://data.delijn.be/stops/306398", "https://mivb.openplanner.team/stops/9727"], ["https://data.delijn.be/stops/300761", "https://mivb.openplanner.team/stops/7640111"], ["https://data.delijn.be/stops/304191", "https://mivb.openplanner.team/stops/3328"], ["https://data.delijn.be/stops/300994", "https://mivb.openplanner.team/stops/6304"], ["https://data.delijn.be/stops/301156", "https://mivb.openplanner.team/stops/5424"], ["https://data.delijn.be/stops/307681", "https://mivb.openplanner.team/stops/5916F"], ["https://data.delijn.be/stops/509241", "https://tec.openplanner.team/stops/H4co158a"], ["https://data.delijn.be/stops/305999", "https://tec.openplanner.team/stops/Brsregl4"], ["https://data.delijn.be/stops/300749", "https://mivb.openplanner.team/stops/1257"], ["http://irail.be/stations/NMBS/008811007", "https://mivb.openplanner.team/stops/3107"], ["https://data.delijn.be/stops/509244", "https://tec.openplanner.team/stops/H4co133b"], ["https://data.delijn.be/stops/300952", "https://mivb.openplanner.team/stops/1183"], ["http://irail.be/stations/NMBS/008883121", "https://tec.openplanner.team/stops/H1ca108b"], ["http://irail.be/stations/NMBS/008811304", "https://mivb.openplanner.team/stops/1162C"], ["https://data.delijn.be/stops/308875", "https://tec.openplanner.team/stops/Bbosgar2"], ["https://data.delijn.be/stops/305299", "https://tec.openplanner.team/stops/Bspkbeu2"], ["http://irail.be/stations/NMBS/008814449", "https://tec.openplanner.team/stops/Buccobs2"], ["https://data.delijn.be/stops/307243", "https://mivb.openplanner.team/stops/6862F"], ["http://irail.be/stations/NMBS/008863453", "https://tec.openplanner.team/stops/N511aha"], ["https://data.delijn.be/stops/302872", "https://tec.openplanner.team/stops/Buccham2"], ["https://data.delijn.be/stops/307697", "https://mivb.openplanner.team/stops/2146"], ["https://data.delijn.be/stops/300993", "https://mivb.openplanner.team/stops/6363"], ["https://data.delijn.be/stops/208406", "https://tec.openplanner.team/stops/H5rx129b"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1mj131a"], ["https://data.delijn.be/stops/403785", "https://tec.openplanner.team/stops/LWAhart1"], ["http://irail.be/stations/NMBS/008822251", "https://data.delijn.be/stops/307271"], ["https://data.delijn.be/stops/508228", "https://tec.openplanner.team/stops/H4he101a"], ["http://irail.be/stations/NMBS/008832409", "https://data.delijn.be/stops/107605"], ["https://data.delijn.be/stops/308104", "https://tec.openplanner.team/stops/Bzlucam1"], ["https://data.delijn.be/stops/308854", "https://mivb.openplanner.team/stops/5081F"], ["https://data.delijn.be/stops/503333", "https://tec.openplanner.team/stops/H4do106a"], ["https://data.delijn.be/stops/408983", "https://tec.openplanner.team/stops/LWAwila1"], ["https://data.delijn.be/stops/405737", "https://tec.openplanner.team/stops/Lrcvill1"], ["http://irail.be/stations/NMBS/008886546", "https://tec.openplanner.team/stops/H1le118a"], ["https://data.delijn.be/stops/410137", "https://tec.openplanner.team/stops/Lrc594-2"], ["http://irail.be/stations/NMBS/008864410", "https://tec.openplanner.team/stops/X901bpa"], ["https://data.delijn.be/stops/205982", "https://tec.openplanner.team/stops/H5rx112a"], ["http://irail.be/stations/NMBS/008864337", "https://tec.openplanner.team/stops/X995add"], ["http://irail.be/stations/NMBS/008832375", "https://data.delijn.be/stops/409317"], ["https://data.delijn.be/stops/300987", "https://mivb.openplanner.team/stops/3704"], ["https://data.delijn.be/stops/408874", "https://tec.openplanner.team/stops/LFMkrin2"], ["https://data.delijn.be/stops/400650", "https://tec.openplanner.team/stops/LHgtomb1"], ["http://irail.be/stations/NMBS/008832375", "https://data.delijn.be/stops/403289"], ["https://data.delijn.be/stops/405711", "https://tec.openplanner.team/stops/Llgcime1"], ["http://irail.be/stations/NMBS/008772319", "https://tec.openplanner.team/stops/X611aca"], ["http://irail.be/stations/NMBS/008895711", "https://data.delijn.be/stops/206775"], ["https://data.delijn.be/stops/408894", "https://tec.openplanner.team/stops/LWHkerk2"], ["https://data.delijn.be/stops/401402", "https://mivb.openplanner.team/stops/5044"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/109187"], ["https://mivb.openplanner.team/stops/5824", "https://tec.openplanner.team/stops/Bucccre2"], ["http://irail.be/stations/NMBS/008892692", "https://data.delijn.be/stops/209209"], ["http://irail.be/stations/NMBS/008814332", "https://data.delijn.be/stops/306065"], ["https://data.delijn.be/stops/300748", "https://mivb.openplanner.team/stops/7"], ["https://data.delijn.be/stops/307686", "https://mivb.openplanner.team/stops/1957B"], ["http://irail.be/stations/NMBS/008822608", "https://data.delijn.be/stops/104572"], ["https://data.delijn.be/stops/504292", "https://tec.openplanner.team/stops/H4mo188a"], ["https://data.delijn.be/stops/408573", "https://tec.openplanner.team/stops/LRUhama2"], ["http://irail.be/stations/NMBS/008831765", "https://data.delijn.be/stops/409631"], ["https://data.delijn.be/stops/408804", "https://tec.openplanner.team/stops/LVIhv--2"], ["http://irail.be/stations/NMBS/008896412", "https://tec.openplanner.team/stops/H4co134a"], ["http://irail.be/stations/NMBS/008814001", "https://mivb.openplanner.team/stops/0350240"], ["https://data.delijn.be/stops/302854", "https://tec.openplanner.team/stops/Bwaanwi1"], ["http://irail.be/stations/NMBS/008895802", "https://data.delijn.be/stops/306724"], ["https://data.delijn.be/stops/208184", "https://tec.openplanner.team/stops/H5rx104b"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N349ada"], ["https://data.delijn.be/stops/206784", "https://tec.openplanner.team/stops/H1gy115a"], ["https://data.delijn.be/stops/408926", "https://tec.openplanner.team/stops/LSInd--2"], ["https://data.delijn.be/stops/400490", "https://tec.openplanner.team/stops/LBSkann2"], ["http://irail.be/stations/NMBS/008833134", "https://data.delijn.be/stops/305523"], ["https://data.delijn.be/stops/304458", "https://tec.openplanner.team/stops/Balswin2"], ["https://data.delijn.be/stops/407211", "https://tec.openplanner.team/stops/LHScite1"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/503461"], ["https://data.delijn.be/stops/308823", "https://tec.openplanner.team/stops/LBegare2"], ["https://data.delijn.be/stops/300334", "https://tec.openplanner.team/stops/Balswsa1"], ["http://irail.be/stations/NMBS/008893518", "https://data.delijn.be/stops/206880"], ["http://irail.be/stations/NMBS/008833001", "https://data.delijn.be/stops/303124"], ["https://data.delijn.be/stops/303956", "https://tec.openplanner.team/stops/Bbldass2"], ["http://irail.be/stations/NMBS/008871852", "https://tec.openplanner.team/stops/Cmastma2"], ["http://irail.be/stations/NMBS/008893252", "https://data.delijn.be/stops/208889"], ["http://irail.be/stations/NMBS/008863115", "https://tec.openplanner.team/stops/N501dwb"], ["http://irail.be/stations/NMBS/008822343", "https://data.delijn.be/stops/108883"], ["https://data.delijn.be/stops/308645", "https://tec.openplanner.team/stops/Bovepla1"], ["https://data.delijn.be/stops/408493", "https://tec.openplanner.team/stops/LWAathe1"], ["http://irail.be/stations/NMBS/008200101", "https://tec.openplanner.team/stops/X685agb"], ["https://data.delijn.be/stops/302428", "https://tec.openplanner.team/stops/Bjodeco3"], ["https://data.delijn.be/stops/304641", "https://mivb.openplanner.team/stops/1680F"], ["https://data.delijn.be/stops/405459", "https://tec.openplanner.team/stops/LWHtrui1"], ["http://irail.be/stations/NMBS/008821907", "https://data.delijn.be/stops/109804"], ["https://data.delijn.be/stops/209838", "https://tec.openplanner.team/stops/H4ss157a"], ["https://data.delijn.be/stops/305424", "https://mivb.openplanner.team/stops/7501"], ["https://data.delijn.be/stops/504239", "https://tec.openplanner.team/stops/H4co106d"], ["http://irail.be/stations/NMBS/008886058", "https://tec.openplanner.team/stops/H5ar102a"], ["https://data.delijn.be/stops/407231", "https://tec.openplanner.team/stops/LLGramk1"], ["https://data.delijn.be/stops/305508", "https://mivb.openplanner.team/stops/1380"], ["https://data.delijn.be/stops/209188", "https://tec.openplanner.team/stops/H5rx137a"], ["http://irail.be/stations/NMBS/008811288", "https://data.delijn.be/stops/302014"], ["https://data.delijn.be/stops/208760", "https://tec.openplanner.team/stops/H5rx102a"], ["https://data.delijn.be/stops/301057", "https://mivb.openplanner.team/stops/1056"], ["https://data.delijn.be/stops/304599", "https://mivb.openplanner.team/stops/0120126"], ["https://data.delijn.be/stops/300859", "https://mivb.openplanner.team/stops/1030"], ["http://irail.be/stations/NMBS/008842689", "https://tec.openplanner.team/stops/LPOeg--1"], ["https://data.delijn.be/stops/300994", "https://mivb.openplanner.team/stops/6419F"], ["https://data.delijn.be/stops/307581", "https://tec.openplanner.team/stops/Bbghsar2"], ["http://irail.be/stations/NMBS/008814159", "https://mivb.openplanner.team/stops/1953"], ["https://data.delijn.be/stops/400469", "https://tec.openplanner.team/stops/LEMeg--2"], ["https://data.delijn.be/stops/304535", "https://mivb.openplanner.team/stops/5504"], ["https://data.delijn.be/stops/300336", "https://tec.openplanner.team/stops/Balswin2"], ["https://data.delijn.be/stops/507959", "https://tec.openplanner.team/stops/H4or116a"], ["http://irail.be/stations/NMBS/008822426", "https://data.delijn.be/stops/105136"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N562bfa"], ["http://irail.be/stations/NMBS/008861440", "https://tec.openplanner.team/stops/N527aga"], ["https://data.delijn.be/stops/300948", "https://mivb.openplanner.team/stops/4071"], ["https://data.delijn.be/stops/307832", "https://mivb.openplanner.team/stops/6810"], ["https://mivb.openplanner.team/stops/1716", "https://tec.openplanner.team/stops/Bixefra1"], ["http://irail.be/stations/NMBS/008814357", "https://data.delijn.be/stops/300023"], ["https://data.delijn.be/stops/401413", "https://mivb.openplanner.team/stops/4306"], ["http://irail.be/stations/NMBS/008841400", "https://data.delijn.be/stops/408977"], ["http://irail.be/stations/NMBS/008728673", "https://tec.openplanner.team/stops/H4rx175a"], ["https://data.delijn.be/stops/408833", "https://tec.openplanner.team/stops/LMgwith1"], ["http://irail.be/stations/NMBS/008842002", "https://tec.openplanner.team/stops/Lagpaix2"], ["https://mivb.openplanner.team/stops/2150", "https://tec.openplanner.team/stops/Buccrac2"], ["http://irail.be/stations/NMBS/008832375", "https://data.delijn.be/stops/403250"], ["https://data.delijn.be/stops/307650", "https://tec.openplanner.team/stops/Brsgter1"], ["http://irail.be/stations/NMBS/008844404", "https://tec.openplanner.team/stops/LSPastr2"], ["https://data.delijn.be/stops/300781", "https://mivb.openplanner.team/stops/2514"], ["https://data.delijn.be/stops/305233", "https://mivb.openplanner.team/stops/9605"], ["http://irail.be/stations/NMBS/008864451", "https://tec.openplanner.team/stops/X982ata"], ["https://data.delijn.be/stops/304912", "https://tec.openplanner.team/stops/Bovelge1"], ["https://data.delijn.be/stops/400453", "https://tec.openplanner.team/stops/LBPboir2"], ["http://irail.be/stations/NMBS/008864931", "https://tec.openplanner.team/stops/N236afb"], ["https://mivb.openplanner.team/stops/1983", "https://tec.openplanner.team/stops/Bixlqll1"], ["http://irail.be/stations/NMBS/008884350", "https://tec.openplanner.team/stops/H1tl121b"], ["https://data.delijn.be/stops/301053", "https://mivb.openplanner.team/stops/4253"], ["https://data.delijn.be/stops/509299", "https://tec.openplanner.team/stops/H4mo192a"], ["https://data.delijn.be/stops/408890", "https://tec.openplanner.team/stops/LFPkape4"], ["http://irail.be/stations/NMBS/008811247", "https://data.delijn.be/stops/305558"], ["https://data.delijn.be/stops/300951", "https://mivb.openplanner.team/stops/5108"], ["http://irail.be/stations/NMBS/008884335", "https://tec.openplanner.team/stops/H1qv112b"], ["http://irail.be/stations/NMBS/008833159", "https://data.delijn.be/stops/306293"], ["http://irail.be/stations/NMBS/008832235", "https://data.delijn.be/stops/403082"], ["https://data.delijn.be/stops/308721", "https://tec.openplanner.team/stops/Bgoevli1"], ["https://data.delijn.be/stops/307642", "https://mivb.openplanner.team/stops/1954"], ["http://irail.be/stations/NMBS/008871852", "https://tec.openplanner.team/stops/Cmamonu2"], ["http://irail.be/stations/NMBS/008892650", "https://data.delijn.be/stops/201356"], ["https://data.delijn.be/stops/408428", "https://tec.openplanner.team/stops/LRUhama1"], ["https://data.delijn.be/stops/302244", "https://tec.openplanner.team/stops/Bhoegbr2"], ["https://data.delijn.be/stops/307533", "https://tec.openplanner.team/stops/H1mk112b"], ["http://irail.be/stations/NMBS/008833266", "https://data.delijn.be/stops/307501"], ["http://irail.be/stations/NMBS/008841434", "https://tec.openplanner.team/stops/LPUlecl2"], ["https://data.delijn.be/stops/308094", "https://tec.openplanner.team/stops/Bgoestu2"], ["http://irail.be/stations/NMBS/008892643", "https://data.delijn.be/stops/209737"], ["http://irail.be/stations/NMBS/008822228", "https://data.delijn.be/stops/109505"], ["http://irail.be/stations/NMBS/008863404", "https://tec.openplanner.team/stops/N506bna"], ["https://data.delijn.be/stops/305501", "https://mivb.openplanner.team/stops/3328"], ["https://data.delijn.be/stops/301085", "https://mivb.openplanner.team/stops/2028"], ["https://data.delijn.be/stops/306001", "https://mivb.openplanner.team/stops/1865"], ["http://irail.be/stations/NMBS/008821964", "https://data.delijn.be/stops/109231"], ["http://irail.be/stations/NMBS/008891140", "https://data.delijn.be/stops/211005"], ["http://irail.be/stations/NMBS/008865649", "https://tec.openplanner.team/stops/N343aia"], ["http://irail.be/stations/NMBS/008842853", "https://tec.openplanner.team/stops/X982ahb"], ["https://data.delijn.be/stops/400487", "https://tec.openplanner.team/stops/LRGmoul1"], ["https://data.delijn.be/stops/300760", "https://mivb.openplanner.team/stops/1255"], ["https://data.delijn.be/stops/408924", "https://tec.openplanner.team/stops/LTEkl121"], ["https://data.delijn.be/stops/407230", "https://tec.openplanner.team/stops/LORdtec*"], ["http://irail.be/stations/NMBS/008882206", "https://tec.openplanner.team/stops/H2hl113a"], ["https://data.delijn.be/stops/509455", "https://tec.openplanner.team/stops/H4tg162a"], ["https://data.delijn.be/stops/302446", "https://tec.openplanner.team/stops/Bzlufbo2"], ["http://irail.be/stations/NMBS/008844347", "https://tec.openplanner.team/stops/LSPastr2"], ["http://irail.be/stations/NMBS/008814159", "https://mivb.openplanner.team/stops/2157"], ["http://irail.be/stations/NMBS/008894714", "https://data.delijn.be/stops/204705"], ["https://data.delijn.be/stops/305298", "https://tec.openplanner.team/stops/H1mk110a"], ["https://data.delijn.be/stops/300788", "https://mivb.openplanner.team/stops/1483"], ["https://data.delijn.be/stops/300982", "https://mivb.openplanner.team/stops/5317G"], ["http://irail.be/stations/NMBS/008894748", "https://data.delijn.be/stops/205761"], ["https://data.delijn.be/stops/406318", "https://tec.openplanner.team/stops/LMalamb4"], ["http://irail.be/stations/NMBS/008821535", "https://data.delijn.be/stops/109976"], ["http://irail.be/stations/NMBS/008728654", "https://data.delijn.be/stops/504565"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Clbpepi2"], ["http://irail.be/stations/NMBS/008010316", "https://data.delijn.be/stops/404772"], ["https://data.delijn.be/stops/301356", "https://tec.openplanner.team/stops/Bhalalb2"], ["https://data.delijn.be/stops/301711", "https://mivb.openplanner.team/stops/9632"], ["http://irail.be/stations/NMBS/008200132", "https://tec.openplanner.team/stops/X791aab"], ["https://data.delijn.be/stops/302830", "https://tec.openplanner.team/stops/Blaneli1"], ["https://data.delijn.be/stops/504296", "https://tec.openplanner.team/stops/H4mo136a"], ["https://data.delijn.be/stops/302402", "https://mivb.openplanner.team/stops/7670208"], ["http://irail.be/stations/NMBS/008882230", "https://tec.openplanner.team/stops/H2mo127d"], ["https://data.delijn.be/stops/509451", "https://tec.openplanner.team/stops/H4mo133a"], ["http://irail.be/stations/NMBS/008871175", "https://tec.openplanner.team/stops/Cjxegli1"], ["https://mivb.openplanner.team/stops/5032B", "https://tec.openplanner.team/stops/Buccvoi3"], ["http://irail.be/stations/NMBS/008731388", "https://tec.openplanner.team/stops/H1ro133a"], ["https://data.delijn.be/stops/404662", "https://tec.openplanner.team/stops/LPAbrun1"], ["https://data.delijn.be/stops/504000", "https://tec.openplanner.team/stops/H4eh104a"], ["http://irail.be/stations/NMBS/008821121", "https://data.delijn.be/stops/101880"], ["https://data.delijn.be/stops/300920", "https://mivb.openplanner.team/stops/2902"], ["https://data.delijn.be/stops/304443", "https://tec.openplanner.team/stops/Brsgtou2"], ["http://irail.be/stations/NMBS/008871225", "https://tec.openplanner.team/stops/Ccomott1"], ["http://irail.be/stations/NMBS/008812153", "https://data.delijn.be/stops/207718"], ["https://data.delijn.be/stops/301997", "https://tec.openplanner.team/stops/Blemwro1"], ["https://mivb.openplanner.team/stops/6931B", "https://tec.openplanner.team/stops/Buccobs2"], ["http://irail.be/stations/NMBS/008811726", "https://tec.openplanner.team/stops/Bwavlep1"], ["https://data.delijn.be/stops/303148", "https://tec.openplanner.team/stops/Bleugar1"], ["http://irail.be/stations/NMBS/008844628", "https://tec.openplanner.team/stops/LeUbahn3"], ["http://irail.be/stations/NMBS/008842705", "https://tec.openplanner.team/stops/LCPpech2"], ["http://irail.be/stations/NMBS/008842051", "https://tec.openplanner.team/stops/Lcapisc1"], ["https://data.delijn.be/stops/301923", "https://mivb.openplanner.team/stops/2027"], ["http://irail.be/stations/NMBS/008822608", "https://data.delijn.be/stops/104468"], ["https://data.delijn.be/stops/208767", "https://tec.openplanner.team/stops/H4wt159a"], ["http://irail.be/stations/NMBS/008881315", "https://tec.openplanner.team/stops/H1ni322a"], ["https://mivb.openplanner.team/stops/1920", "https://tec.openplanner.team/stops/Buccdho2"], ["https://mivb.openplanner.team/stops/1751", "https://tec.openplanner.team/stops/Baudwav1"], ["https://mivb.openplanner.team/stops/1986", "https://tec.openplanner.team/stops/Bixleix2"], ["https://data.delijn.be/stops/302871", "https://tec.openplanner.team/stops/Buccrac1"], ["https://data.delijn.be/stops/404661", "https://tec.openplanner.team/stops/LPAchpl2"], ["https://data.delijn.be/stops/405351", "https://tec.openplanner.team/stops/LLaover3"], ["https://data.delijn.be/stops/405740", "https://tec.openplanner.team/stops/Llgpire2"], ["https://data.delijn.be/stops/408858", "https://tec.openplanner.team/stops/LFCotte2"], ["https://data.delijn.be/stops/308814", "https://tec.openplanner.team/stops/Bjodsje2"], ["http://irail.be/stations/NMBS/008722326", "https://tec.openplanner.team/stops/H4co142a"], ["http://irail.be/stations/NMBS/008872520", "https://tec.openplanner.team/stops/NC12aab"], ["https://data.delijn.be/stops/301059", "https://mivb.openplanner.team/stops/4212B"], ["http://irail.be/stations/NMBS/008884855", "https://tec.openplanner.team/stops/H5pe137a"], ["https://data.delijn.be/stops/503572", "https://tec.openplanner.team/stops/H4mn100d"], ["https://data.delijn.be/stops/208190", "https://tec.openplanner.team/stops/H5rx127b"], ["https://data.delijn.be/stops/300817", "https://mivb.openplanner.team/stops/3221"], ["https://data.delijn.be/stops/407203", "https://tec.openplanner.team/stops/LHThall2"], ["https://data.delijn.be/stops/300964", "https://mivb.openplanner.team/stops/1813"], ["https://data.delijn.be/stops/303376", "https://mivb.openplanner.team/stops/1825"], ["http://irail.be/stations/NMBS/008866142", "https://tec.openplanner.team/stops/X636aba"], ["https://data.delijn.be/stops/208758", "https://tec.openplanner.team/stops/H5rx104b"], ["https://data.delijn.be/stops/304431", "https://tec.openplanner.team/stops/Brsggea1"], ["http://irail.be/stations/NMBS/008822533", "https://data.delijn.be/stops/301857"], ["http://irail.be/stations/NMBS/008821006", "https://data.delijn.be/stops/101700"], ["http://irail.be/stations/NMBS/008871514", "https://tec.openplanner.team/stops/Cfmcent1"], ["http://irail.be/stations/NMBS/008884640", "https://tec.openplanner.team/stops/H1hc127c"], ["https://data.delijn.be/stops/301039", "https://mivb.openplanner.team/stops/7740201"], ["https://mivb.openplanner.team/stops/2142", "https://tec.openplanner.team/stops/Buccfja2"], ["http://irail.be/stations/NMBS/008200520", "https://tec.openplanner.team/stops/X626afb"], ["https://mivb.openplanner.team/stops/2043", "https://tec.openplanner.team/stops/Bwolvan1"], ["https://data.delijn.be/stops/405462", "https://tec.openplanner.team/stops/LWHwaas3"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2mo122d"], ["https://data.delijn.be/stops/306284", "https://mivb.openplanner.team/stops/2905"], ["https://data.delijn.be/stops/304027", "https://tec.openplanner.team/stops/Bovejei1"], ["http://irail.be/stations/NMBS/008844206", "https://tec.openplanner.team/stops/Lpeprev1"], ["https://data.delijn.be/stops/300894", "https://mivb.openplanner.team/stops/48"], ["https://data.delijn.be/stops/301117", "https://mivb.openplanner.team/stops/5255"], ["https://data.delijn.be/stops/300016", "https://tec.openplanner.team/stops/Buccvoi1"], ["http://irail.be/stations/NMBS/008891611", "https://data.delijn.be/stops/500006"], ["https://data.delijn.be/stops/303832", "https://mivb.openplanner.team/stops/8282"], ["https://data.delijn.be/stops/300986", "https://mivb.openplanner.team/stops/5714"], ["https://mivb.openplanner.team/stops/1133", "https://tec.openplanner.team/stops/Bbxlple2"], ["http://irail.be/stations/NMBS/008821832", "https://data.delijn.be/stops/107959"], ["http://irail.be/stations/NMBS/008871688", "https://tec.openplanner.team/stops/H1sa112a"], ["http://irail.be/stations/NMBS/008893120", "https://data.delijn.be/stops/200137"], ["http://irail.be/stations/NMBS/008814159", "https://mivb.openplanner.team/stops/2112"], ["http://irail.be/stations/NMBS/008861549", "https://tec.openplanner.team/stops/Bmsgeco2"], ["https://data.delijn.be/stops/304039", "https://tec.openplanner.team/stops/Bovesol2"], ["http://irail.be/stations/NMBS/008842838", "https://tec.openplanner.team/stops/LCTpt--1"], ["https://data.delijn.be/stops/301924", "https://mivb.openplanner.team/stops/2025"], ["https://data.delijn.be/stops/300810", "https://mivb.openplanner.team/stops/4217"], ["http://irail.be/stations/NMBS/008833670", "https://tec.openplanner.team/stops/Bracgar2"], ["https://data.delijn.be/stops/400480", "https://tec.openplanner.team/stops/LGLc50-3"], ["http://irail.be/stations/NMBS/008895760", "https://data.delijn.be/stops/207012"], ["https://data.delijn.be/stops/401922", "https://tec.openplanner.team/stops/LOrchau2"], ["https://data.delijn.be/stops/303613", "https://tec.openplanner.team/stops/Bhalsro2"], ["http://irail.be/stations/NMBS/008864436", "https://tec.openplanner.team/stops/X923ala"], ["https://mivb.openplanner.team/stops/1929", "https://tec.openplanner.team/stops/Bucceng1"], ["https://data.delijn.be/stops/408922", "https://tec.openplanner.team/stops/LSIvieu2"], ["https://data.delijn.be/stops/407208", "https://tec.openplanner.team/stops/LHTbonn1"], ["https://data.delijn.be/stops/408585", "https://tec.openplanner.team/stops/LCRchpl1"], ["http://irail.be/stations/NMBS/008400424", "https://data.delijn.be/stops/410395"], ["https://data.delijn.be/stops/300987", "https://mivb.openplanner.team/stops/3905"], ["https://data.delijn.be/stops/305148", "https://tec.openplanner.team/stops/Btieast1"], ["http://irail.be/stations/NMBS/008844347", "https://tec.openplanner.team/stops/Lhuferm1"], ["http://irail.be/stations/NMBS/008822459", "https://data.delijn.be/stops/300680"], ["https://data.delijn.be/stops/300802", "https://mivb.openplanner.team/stops/1475"], ["https://data.delijn.be/stops/301032", "https://tec.openplanner.team/stops/Bsgimor1"], ["https://data.delijn.be/stops/408811", "https://tec.openplanner.team/stops/LVIcarm4"], ["https://data.delijn.be/stops/509653", "https://tec.openplanner.team/stops/H4co151a"], ["https://data.delijn.be/stops/302418", "https://tec.openplanner.team/stops/Bjodrdp2"], ["https://data.delijn.be/stops/304203", "https://tec.openplanner.team/stops/Brsregl3"], ["https://data.delijn.be/stops/301017", "https://mivb.openplanner.team/stops/1310"], ["https://data.delijn.be/stops/407213", "https://tec.openplanner.team/stops/LHSheur2"], ["http://irail.be/stations/NMBS/008895836", "https://data.delijn.be/stops/304889"], ["http://irail.be/stations/NMBS/008892601", "https://data.delijn.be/stops/208120"], ["https://data.delijn.be/stops/508229", "https://tec.openplanner.team/stops/H4po126a"], ["https://data.delijn.be/stops/302808", "https://mivb.openplanner.team/stops/1635"], ["http://irail.be/stations/NMBS/008874609", "https://tec.openplanner.team/stops/N543cca"], ["http://irail.be/stations/NMBS/008842655", "https://tec.openplanner.team/stops/LESecco2"], ["http://irail.be/stations/NMBS/008812062", "https://data.delijn.be/stops/300291"], ["http://irail.be/stations/NMBS/008811676", "https://tec.openplanner.team/stops/Bllngle1"], ["http://irail.be/stations/NMBS/008886041", "https://tec.openplanner.team/stops/H5ma181a"], ["http://irail.be/stations/NMBS/008872413", "https://tec.openplanner.team/stops/Bflegar5"], ["http://irail.be/stations/NMBS/008894508", "https://data.delijn.be/stops/205064"], ["https://data.delijn.be/stops/403773", "https://tec.openplanner.team/stops/LLnlimb1"], ["http://irail.be/stations/NMBS/008833159", "https://data.delijn.be/stops/306188"], ["http://irail.be/stations/NMBS/008895760", "https://data.delijn.be/stops/206265"], ["https://data.delijn.be/stops/504383", "https://tec.openplanner.team/stops/H4pl121b"], ["http://irail.be/stations/NMBS/008892908", "https://data.delijn.be/stops/207766"], ["https://data.delijn.be/stops/300974", "https://mivb.openplanner.team/stops/1751"], ["http://irail.be/stations/NMBS/008831310", "https://data.delijn.be/stops/405445"], ["http://irail.be/stations/NMBS/008891702", "https://data.delijn.be/stops/501292"], ["http://irail.be/stations/NMBS/008822251", "https://data.delijn.be/stops/308409"], ["http://irail.be/stations/NMBS/008821907", "https://data.delijn.be/stops/102109"], ["http://irail.be/stations/NMBS/008814209", "https://tec.openplanner.team/stops/Bnivga51"], ["https://data.delijn.be/stops/305244", "https://mivb.openplanner.team/stops/1143"], ["http://irail.be/stations/NMBS/008811718", "https://tec.openplanner.team/stops/Bbgewal1"], ["http://irail.be/stations/NMBS/008814258", "https://tec.openplanner.team/stops/Bblacim2"], ["https://data.delijn.be/stops/307160", "https://tec.openplanner.team/stops/Bhaless1"], ["https://data.delijn.be/stops/300742", "https://mivb.openplanner.team/stops/1255"], ["https://mivb.openplanner.team/stops/1586", "https://tec.openplanner.team/stops/Bwolkra1"], ["https://data.delijn.be/stops/300774", "https://mivb.openplanner.team/stops/2319"], ["http://irail.be/stations/NMBS/008812047", "https://mivb.openplanner.team/stops/1768"], ["https://data.delijn.be/stops/301074", "https://mivb.openplanner.team/stops/3219"], ["http://irail.be/stations/NMBS/008891140", "https://data.delijn.be/stops/203301"], ["https://mivb.openplanner.team/stops/2727", "https://tec.openplanner.team/stops/Baudulb2"], ["https://data.delijn.be/stops/308676", "https://mivb.openplanner.team/stops/0536"], ["http://irail.be/stations/NMBS/008895430", "https://data.delijn.be/stops/206537"], ["https://data.delijn.be/stops/300885", "https://mivb.openplanner.team/stops/7830252"], ["http://irail.be/stations/NMBS/008813045", "https://data.delijn.be/stops/308818"], ["https://data.delijn.be/stops/303659", "https://tec.openplanner.team/stops/Blkbavo1"], ["https://data.delijn.be/stops/509135", "https://tec.openplanner.team/stops/H4co151a"], ["https://data.delijn.be/stops/307043", "https://mivb.openplanner.team/stops/3164"], ["http://irail.be/stations/NMBS/008866605", "https://tec.openplanner.team/stops/X615afb"], ["https://data.delijn.be/stops/306000", "https://tec.openplanner.team/stops/Brsregl4"], ["https://data.delijn.be/stops/403701", "https://tec.openplanner.team/stops/LGrchpl2"], ["http://irail.be/stations/NMBS/008896370", "https://data.delijn.be/stops/504756"], ["http://irail.be/stations/NMBS/008873320", "https://tec.openplanner.team/stops/N161aea"], ["https://data.delijn.be/stops/408892", "https://tec.openplanner.team/stops/LFMstat1"], ["https://data.delijn.be/stops/300924", "https://mivb.openplanner.team/stops/3957"], ["http://irail.be/stations/NMBS/008883121", "https://tec.openplanner.team/stops/H1ca100b"], ["https://data.delijn.be/stops/304191", "https://mivb.openplanner.team/stops/3017"], ["https://data.delijn.be/stops/407721", "https://tec.openplanner.team/stops/LMazonn4"], ["http://irail.be/stations/NMBS/008861416", "https://tec.openplanner.team/stops/N541aca"], ["https://data.delijn.be/stops/504316", "https://tec.openplanner.team/stops/H4mo159a"], ["http://irail.be/stations/NMBS/008863354", "https://tec.openplanner.team/stops/N501knb"], ["https://data.delijn.be/stops/307243", "https://mivb.openplanner.team/stops/6806"], ["https://data.delijn.be/stops/404653", "https://tec.openplanner.team/stops/Llaacca2"], ["https://data.delijn.be/stops/306117", "https://mivb.openplanner.team/stops/1203"], ["https://data.delijn.be/stops/301041", "https://mivb.openplanner.team/stops/5074F"], ["https://data.delijn.be/stops/300324", "https://tec.openplanner.team/stops/Balsnie2"], ["http://irail.be/stations/NMBS/008811759", "https://tec.openplanner.team/stops/Barcsta1"], ["https://data.delijn.be/stops/301061", "https://mivb.openplanner.team/stops/8462"], ["https://data.delijn.be/stops/307968", "https://tec.openplanner.team/stops/Bbgever1"], ["http://irail.be/stations/NMBS/008861135", "https://tec.openplanner.team/stops/N551afa"], ["https://data.delijn.be/stops/301301", "https://mivb.openplanner.team/stops/1261"], ["https://data.delijn.be/stops/308046", "https://tec.openplanner.team/stops/Bove4ko1"], ["http://irail.be/stations/NMBS/008871837", "https://tec.openplanner.team/stops/Cgzdeve1"], ["http://irail.be/stations/NMBS/008866845", "https://tec.openplanner.team/stops/X640ada"], ["https://data.delijn.be/stops/301022", "https://mivb.openplanner.team/stops/1209"], ["https://data.delijn.be/stops/300987", "https://mivb.openplanner.team/stops/3763"], ["http://irail.be/stations/NMBS/008822269", "https://data.delijn.be/stops/305608"], ["https://data.delijn.be/stops/305466", "https://mivb.openplanner.team/stops/1801"], ["http://irail.be/stations/NMBS/008895836", "https://data.delijn.be/stops/306714"], ["https://mivb.openplanner.team/stops/5611", "https://tec.openplanner.team/stops/Bixlfla2"], ["http://irail.be/stations/NMBS/008871712", "https://tec.openplanner.team/stops/Clbhvil1"], ["https://data.delijn.be/stops/308824", "https://tec.openplanner.team/stops/Blanove2"], ["https://data.delijn.be/stops/305236", "https://tec.openplanner.team/stops/Bmrqgar1"], ["https://data.delijn.be/stops/304441", "https://tec.openplanner.team/stops/Brsgges1"], ["http://irail.be/stations/NMBS/008892304", "https://data.delijn.be/stops/504510"], ["https://data.delijn.be/stops/408887", "https://tec.openplanner.team/stops/LVu40--2"], ["http://irail.be/stations/NMBS/008821634", "https://data.delijn.be/stops/101597"], ["https://data.delijn.be/stops/301022", "https://mivb.openplanner.team/stops/5105F"], ["https://data.delijn.be/stops/305296", "https://mivb.openplanner.team/stops/9606"], ["https://data.delijn.be/stops/400458", "https://tec.openplanner.team/stops/LEBmoul2"], ["https://data.delijn.be/stops/400452", "https://tec.openplanner.team/stops/LBPboir2"], ["https://data.delijn.be/stops/307637", "https://mivb.openplanner.team/stops/1931"], ["https://data.delijn.be/stops/305343", "https://tec.openplanner.team/stops/Bbgevil2"], ["http://irail.be/stations/NMBS/008822277", "https://data.delijn.be/stops/305610"], ["http://irail.be/stations/NMBS/008863560", "https://tec.openplanner.team/stops/N540aia"], ["http://irail.be/stations/NMBS/008811262", "https://data.delijn.be/stops/302710"], ["http://irail.be/stations/NMBS/008895638", "https://data.delijn.be/stops/307298"], ["https://data.delijn.be/stops/300875", "https://mivb.openplanner.team/stops/8804"], ["https://data.delijn.be/stops/300390", "https://mivb.openplanner.team/stops/9656"], ["http://irail.be/stations/NMBS/008869054", "https://tec.openplanner.team/stops/X687aba"], ["http://irail.be/stations/NMBS/008896412", "https://tec.openplanner.team/stops/H4co157a"], ["http://irail.be/stations/NMBS/008895836", "https://data.delijn.be/stops/300843"], ["http://irail.be/stations/NMBS/008895570", "https://data.delijn.be/stops/208059"], ["http://irail.be/stations/NMBS/008831112", "https://data.delijn.be/stops/401503"], ["http://irail.be/stations/NMBS/008812005", "https://mivb.openplanner.team/stops/6411"], ["http://irail.be/stations/NMBS/008881562", "https://tec.openplanner.team/stops/H1ge117b"], ["https://data.delijn.be/stops/405361", "https://tec.openplanner.team/stops/Blankal3"], ["https://data.delijn.be/stops/307966", "https://tec.openplanner.team/stops/Bwavcin1"], ["https://data.delijn.be/stops/504380", "https://tec.openplanner.team/stops/H4pl114b"], ["http://irail.be/stations/NMBS/008814142", "https://mivb.openplanner.team/stops/1936"], ["https://data.delijn.be/stops/300891", "https://mivb.openplanner.team/stops/2856B"], ["https://data.delijn.be/stops/300623", "https://tec.openplanner.team/stops/Bbealou2"], ["http://irail.be/stations/NMBS/008832433", "https://data.delijn.be/stops/401932"], ["http://irail.be/stations/NMBS/008841459", "https://tec.openplanner.team/stops/LMOstat2"], ["https://data.delijn.be/stops/209597", "https://tec.openplanner.team/stops/H1en104a"], ["https://data.delijn.be/stops/307209", "https://tec.openplanner.team/stops/Bcbqcha2"], ["http://irail.be/stations/NMBS/008844420", "https://tec.openplanner.team/stops/LSPec--2"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1ca105a"], ["http://irail.be/stations/NMBS/008881190", "https://tec.openplanner.team/stops/H1et100a"], ["http://irail.be/stations/NMBS/008400131", "https://data.delijn.be/stops/104338"], ["https://data.delijn.be/stops/400493", "https://tec.openplanner.team/stops/LBStong1"], ["https://data.delijn.be/stops/407772", "https://tec.openplanner.team/stops/LTEkl162"], ["https://data.delijn.be/stops/208742", "https://tec.openplanner.team/stops/H4am100a"], ["https://data.delijn.be/stops/301047", "https://mivb.openplanner.team/stops/4074B"], ["http://irail.be/stations/NMBS/008400280", "https://data.delijn.be/stops/505781"], ["http://irail.be/stations/NMBS/008811460", "https://tec.openplanner.team/stops/Bhoeboo1"], ["http://irail.be/stations/NMBS/008812062", "https://data.delijn.be/stops/307478"], ["https://data.delijn.be/stops/503330", "https://tec.openplanner.team/stops/H4do202a"], ["https://data.delijn.be/stops/503032", "https://tec.openplanner.team/stops/H4ae100b"], ["https://data.delijn.be/stops/305349", "https://tec.openplanner.team/stops/Bbgerlr2"], ["https://data.delijn.be/stops/504653", "https://tec.openplanner.team/stops/H4wn131a"], ["http://irail.be/stations/NMBS/008843307", "https://tec.openplanner.team/stops/LHUalbe2"], ["https://data.delijn.be/stops/404676", "https://tec.openplanner.team/stops/Lladete4"], ["http://irail.be/stations/NMBS/008896149", "https://data.delijn.be/stops/508850"], ["https://data.delijn.be/stops/307201", "https://tec.openplanner.team/stops/Blemsta1"], ["https://data.delijn.be/stops/303831", "https://mivb.openplanner.team/stops/6654F"], ["http://irail.be/stations/NMBS/008865300", "https://tec.openplanner.team/stops/X804akb"], ["https://data.delijn.be/stops/407491", "https://tec.openplanner.team/stops/LTotrui1"], ["http://irail.be/stations/NMBS/008814118", "https://mivb.openplanner.team/stops/2939B"], ["https://data.delijn.be/stops/301115", "https://mivb.openplanner.team/stops/5255"], ["https://mivb.openplanner.team/stops/1601", "https://tec.openplanner.team/stops/Bkrawil1"], ["https://data.delijn.be/stops/303667", "https://mivb.openplanner.team/stops/1721"], ["https://data.delijn.be/stops/304460", "https://tec.openplanner.team/stops/Brsgter1"], ["https://data.delijn.be/stops/304207", "https://tec.openplanner.team/stops/Brsrpri1"], ["https://data.delijn.be/stops/302437", "https://tec.openplanner.team/stops/Bjodeco3"], ["http://irail.be/stations/NMBS/008895752", "https://data.delijn.be/stops/207653"], ["https://data.delijn.be/stops/304876", "https://mivb.openplanner.team/stops/9557"], ["https://data.delijn.be/stops/302141", "https://tec.openplanner.team/stops/Bptecar2"], ["https://data.delijn.be/stops/503575", "https://tec.openplanner.team/stops/H4mn100d"], ["https://data.delijn.be/stops/403781", "https://tec.openplanner.team/stops/LORroma1"], ["http://irail.be/stations/NMBS/008811247", "https://data.delijn.be/stops/304733"], ["https://data.delijn.be/stops/302872", "https://tec.openplanner.team/stops/Buccrac2"], ["https://data.delijn.be/stops/405337", "https://tec.openplanner.team/stops/Bneelaa2"], ["http://irail.be/stations/NMBS/008814308", "https://data.delijn.be/stops/307226"], ["https://data.delijn.be/stops/509231", "https://tec.openplanner.team/stops/H4co146a"], ["https://data.delijn.be/stops/509739", "https://tec.openplanner.team/stops/H4mo195a"], ["http://irail.be/stations/NMBS/008864469", "https://tec.openplanner.team/stops/X982bda"], ["https://mivb.openplanner.team/stops/5265F", "https://tec.openplanner.team/stops/Bettars2"], ["https://mivb.openplanner.team/stops/0340441", "https://tec.openplanner.team/stops/Bsgipha1"], ["https://data.delijn.be/stops/301037", "https://mivb.openplanner.team/stops/3462"], ["https://data.delijn.be/stops/300977", "https://mivb.openplanner.team/stops/3360F"], ["http://irail.be/stations/NMBS/008864337", "https://tec.openplanner.team/stops/X994aja"], ["https://data.delijn.be/stops/304447", "https://tec.openplanner.team/stops/Buccpes2"], ["https://data.delijn.be/stops/410319", "https://tec.openplanner.team/stops/LMalarg3"], ["http://irail.be/stations/NMBS/008893708", "https://data.delijn.be/stops/202042"], ["https://data.delijn.be/stops/301064", "https://mivb.openplanner.team/stops/1201"], ["http://irail.be/stations/NMBS/008841442", "https://tec.openplanner.team/stops/LRemorr2"], ["http://irail.be/stations/NMBS/008841608", "https://tec.openplanner.team/stops/Lhrgall1"], ["http://irail.be/stations/NMBS/008821667", "https://data.delijn.be/stops/107013"], ["https://data.delijn.be/stops/504772", "https://tec.openplanner.team/stops/H4wn123a"], ["http://irail.be/stations/NMBS/008891645", "https://data.delijn.be/stops/501662"], ["http://irail.be/stations/NMBS/008814241", "https://tec.openplanner.team/stops/Blilwit1"], ["http://irail.be/stations/NMBS/008891660", "https://data.delijn.be/stops/501668"], ["https://data.delijn.be/stops/410152", "https://mivb.openplanner.team/stops/3702"], ["https://data.delijn.be/stops/410139", "https://tec.openplanner.team/stops/Llghugo2"], ["http://irail.be/stations/NMBS/008861119", "https://tec.openplanner.team/stops/N528aha"], ["https://data.delijn.be/stops/408851", "https://tec.openplanner.team/stops/LTEkl162"], ["https://data.delijn.be/stops/300556", "https://tec.openplanner.team/stops/Bhmmbog1"], ["http://irail.be/stations/NMBS/008843430", "https://tec.openplanner.team/stops/LBseg--1"], ["http://irail.be/stations/NMBS/008896909", "https://data.delijn.be/stops/507173"], ["https://data.delijn.be/stops/301078", "https://mivb.openplanner.team/stops/6436"], ["https://data.delijn.be/stops/300411", "https://mivb.openplanner.team/stops/9677"], ["https://data.delijn.be/stops/408902", "https://tec.openplanner.team/stops/LFMveur1"], ["http://irail.be/stations/NMBS/008844644", "https://tec.openplanner.team/stops/LhGscha*"], ["http://irail.be/stations/NMBS/008895760", "https://data.delijn.be/stops/217008"], ["http://irail.be/stations/NMBS/008874716", "https://tec.openplanner.team/stops/N543awg"], ["https://data.delijn.be/stops/300828", "https://mivb.openplanner.team/stops/2861"], ["http://irail.be/stations/NMBS/008728686", "https://tec.openplanner.team/stops/H4rx175b"], ["https://data.delijn.be/stops/208614", "https://tec.openplanner.team/stops/H1by109b"], ["https://data.delijn.be/stops/410137", "https://tec.openplanner.team/stops/Lalexpa2"], ["https://data.delijn.be/stops/300961", "https://mivb.openplanner.team/stops/2050"], ["https://data.delijn.be/stops/401410", "https://mivb.openplanner.team/stops/1563"], ["http://irail.be/stations/NMBS/008831765", "https://data.delijn.be/stops/402301"], ["http://irail.be/stations/NMBS/008200940", "https://tec.openplanner.team/stops/X681aia"], ["https://data.delijn.be/stops/208408", "https://tec.openplanner.team/stops/H5rx106b"], ["https://data.delijn.be/stops/304431", "https://tec.openplanner.team/stops/Brsgcfl1"], ["https://data.delijn.be/stops/302855", "https://tec.openplanner.team/stops/Blanraa1"], ["https://data.delijn.be/stops/405736", "https://tec.openplanner.team/stops/Lrcvill1"], ["https://data.delijn.be/stops/306176", "https://mivb.openplanner.team/stops/9578"], ["https://data.delijn.be/stops/308981", "https://tec.openplanner.team/stops/Blhucmo2"], ["https://data.delijn.be/stops/404664", "https://tec.openplanner.team/stops/LPAmc--1"], ["http://irail.be/stations/NMBS/008822814", "https://data.delijn.be/stops/106753"], ["https://data.delijn.be/stops/300340", "https://tec.openplanner.team/stops/Bblapra1"], ["http://irail.be/stations/NMBS/008821337", "https://data.delijn.be/stops/107209"], ["https://data.delijn.be/stops/404660", "https://tec.openplanner.team/stops/LPAchpl2"], ["https://data.delijn.be/stops/305234", "https://mivb.openplanner.team/stops/9606"], ["https://data.delijn.be/stops/304774", "https://mivb.openplanner.team/stops/2218F"], ["https://data.delijn.be/stops/301677", "https://tec.openplanner.team/stops/Bnetegl4"], ["http://irail.be/stations/NMBS/008891629", "https://data.delijn.be/stops/501531"], ["https://data.delijn.be/stops/304688", "https://tec.openplanner.team/stops/Bhalwat1"], ["https://data.delijn.be/stops/303958", "https://tec.openplanner.team/stops/Bhmmjco1"], ["http://irail.be/stations/NMBS/008811460", "https://data.delijn.be/stops/302237"], ["http://irail.be/stations/NMBS/008200510", "https://tec.openplanner.team/stops/X685afb"], ["https://data.delijn.be/stops/504235", "https://tec.openplanner.team/stops/H4co148a"], ["https://mivb.openplanner.team/stops/5480", "https://tec.openplanner.team/stops/Bettcha2"], ["https://data.delijn.be/stops/306284", "https://mivb.openplanner.team/stops/2991"], ["http://irail.be/stations/NMBS/008811734", "https://tec.openplanner.team/stops/Bwavlon1"], ["https://data.delijn.be/stops/400473", "https://tec.openplanner.team/stops/LGLeg--2"], ["https://data.delijn.be/stops/300839", "https://mivb.openplanner.team/stops/8824"], ["http://irail.be/stations/NMBS/008811148", "https://mivb.openplanner.team/stops/9703"], ["https://data.delijn.be/stops/400472", "https://tec.openplanner.team/stops/LGLeg--1"], ["https://data.delijn.be/stops/300996", "https://mivb.openplanner.team/stops/2241G"], ["https://data.delijn.be/stops/503496", "https://tec.openplanner.team/stops/H4mo133b"], ["https://data.delijn.be/stops/303667", "https://mivb.openplanner.team/stops/1744"], ["http://irail.be/stations/NMBS/008200136", "https://tec.openplanner.team/stops/X793ada"], ["https://data.delijn.be/stops/305999", "https://tec.openplanner.team/stops/Brsrabe1"], ["http://irail.be/stations/NMBS/008874559", "https://tec.openplanner.team/stops/Cfaheni4"], ["http://irail.be/stations/NMBS/008842689", "https://tec.openplanner.team/stops/LPOthom1"], ["https://data.delijn.be/stops/307634", "https://tec.openplanner.team/stops/Bucceng2"], ["https://data.delijn.be/stops/307002", "https://tec.openplanner.team/stops/Bjodcad1"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/Cmlgoff2"], ["https://data.delijn.be/stops/504255", "https://tec.openplanner.team/stops/H4pl120a"], ["https://data.delijn.be/stops/307111", "https://tec.openplanner.team/stops/Bjodcad2"], ["http://irail.be/stations/NMBS/008821600", "https://data.delijn.be/stops/101397"], ["https://data.delijn.be/stops/305350", "https://tec.openplanner.team/stops/Blmldmi1"], ["https://mivb.openplanner.team/stops/5258", "https://tec.openplanner.team/stops/Bixlozo2"], ["https://data.delijn.be/stops/300335", "https://tec.openplanner.team/stops/Brsgfon1"], ["http://irail.be/stations/NMBS/008811775", "https://data.delijn.be/stops/302395"], ["http://irail.be/stations/NMBS/008885522", "https://tec.openplanner.team/stops/H4ga166a"], ["http://irail.be/stations/NMBS/008728687", "https://tec.openplanner.team/stops/H4ne139b"], ["https://data.delijn.be/stops/300740", "https://mivb.openplanner.team/stops/2226"], ["http://irail.be/stations/NMBS/008866654", "https://tec.openplanner.team/stops/X615bda"], ["https://data.delijn.be/stops/300956", "https://mivb.openplanner.team/stops/1751"], ["http://irail.be/stations/NMBS/008866845", "https://tec.openplanner.team/stops/X641aya"], ["http://irail.be/stations/NMBS/008815016", "https://mivb.openplanner.team/stops/4271"], ["http://irail.be/stations/NMBS/008886058", "https://tec.openplanner.team/stops/H1ch102a"], ["http://irail.be/stations/NMBS/008821071", "https://data.delijn.be/stops/108820"], ["https://data.delijn.be/stops/300767", "https://mivb.openplanner.team/stops/3804B"], ["https://mivb.openplanner.team/stops/3553", "https://tec.openplanner.team/stops/Baudvdr2"], ["http://irail.be/stations/NMBS/008841608", "https://tec.openplanner.team/stops/Lhrbell2"], ["https://data.delijn.be/stops/208764", "https://tec.openplanner.team/stops/H5rx140a"], ["https://data.delijn.be/stops/408840", "https://tec.openplanner.team/stops/LRmkult1"], ["https://data.delijn.be/stops/207796", "https://tec.openplanner.team/stops/H4ss158b"], ["https://data.delijn.be/stops/301165", "https://tec.openplanner.team/stops/Buccvbe1"], ["https://data.delijn.be/stops/303667", "https://mivb.openplanner.team/stops/1328"], ["https://data.delijn.be/stops/300316", "https://tec.openplanner.team/stops/Bhmmcge1"], ["https://data.delijn.be/stops/403772", "https://tec.openplanner.team/stops/LLnpomp2"], ["https://data.delijn.be/stops/400491", "https://tec.openplanner.team/stops/LBSkann1"], ["http://irail.be/stations/NMBS/008871670", "https://tec.openplanner.team/stops/Clsstpi1"], ["http://irail.be/stations/NMBS/008895745", "https://data.delijn.be/stops/206617"], ["http://irail.be/stations/NMBS/008842051", "https://tec.openplanner.team/stops/Lcacasi2"], ["http://irail.be/stations/NMBS/008871605", "https://tec.openplanner.team/stops/Ceqmeti1"], ["http://irail.be/stations/NMBS/008841319", "https://tec.openplanner.team/stops/LBIpont1"], ["http://irail.be/stations/NMBS/008822814", "https://data.delijn.be/stops/109528"], ["https://mivb.openplanner.team/stops/2759", "https://tec.openplanner.team/stops/Buccfja2"], ["http://irail.be/stations/NMBS/008894151", "https://data.delijn.be/stops/203176"], ["https://data.delijn.be/stops/301050", "https://mivb.openplanner.team/stops/1626"], ["https://data.delijn.be/stops/400477", "https://tec.openplanner.team/stops/LBPunic2"], ["http://irail.be/stations/NMBS/008812120", "https://data.delijn.be/stops/206177"], ["https://data.delijn.be/stops/302424", "https://tec.openplanner.team/stops/Bjodrga2"], ["http://irail.be/stations/NMBS/008894755", "https://data.delijn.be/stops/205444"], ["https://data.delijn.be/stops/503331", "https://tec.openplanner.team/stops/H4do100a"], ["http://irail.be/stations/NMBS/008833308", "https://tec.openplanner.team/stops/Btiegar1"], ["https://data.delijn.be/stops/305334", "https://tec.openplanner.team/stops/Bspkbeu2"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2pe156b"], ["https://data.delijn.be/stops/405705", "https://tec.openplanner.team/stops/LlgLAMB2"], ["https://data.delijn.be/stops/404664", "https://tec.openplanner.team/stops/LWinavi1"], ["https://data.delijn.be/stops/302443", "https://tec.openplanner.team/stops/Bzlufbo1"], ["http://irail.be/stations/NMBS/008821659", "https://data.delijn.be/stops/101391"], ["http://irail.be/stations/NMBS/008841673", "https://tec.openplanner.team/stops/Llithon2"], ["http://irail.be/stations/NMBS/008891553", "https://data.delijn.be/stops/506460"], ["http://irail.be/stations/NMBS/008821436", "https://data.delijn.be/stops/104276"], ["https://data.delijn.be/stops/306913", "https://tec.openplanner.team/stops/Bbosdra1"], ["http://irail.be/stations/NMBS/008861135", "https://tec.openplanner.team/stops/N533aaa"], ["https://data.delijn.be/stops/303666", "https://mivb.openplanner.team/stops/1684F"], ["https://data.delijn.be/stops/400451", "https://tec.openplanner.team/stops/LBPrueg2"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2le153b"], ["https://data.delijn.be/stops/306816", "https://tec.openplanner.team/stops/Balsnay2"], ["http://irail.be/stations/NMBS/008814365", "https://data.delijn.be/stops/303225"], ["https://data.delijn.be/stops/305889", "https://mivb.openplanner.team/stops/9634"], ["http://irail.be/stations/NMBS/008864311", "https://tec.openplanner.team/stops/X991aab"], ["https://data.delijn.be/stops/408963", "https://tec.openplanner.team/stops/LWAmouh1"], ["https://data.delijn.be/stops/405440", "https://tec.openplanner.team/stops/LWSstat1"], ["https://data.delijn.be/stops/304127", "https://mivb.openplanner.team/stops/2833"], ["http://irail.be/stations/NMBS/008832664", "https://data.delijn.be/stops/402832"], ["http://irail.be/stations/NMBS/008893526", "https://data.delijn.be/stops/206398"], ["https://data.delijn.be/stops/400484", "https://tec.openplanner.team/stops/LRGpt5-3"], ["http://irail.be/stations/NMBS/008864345", "https://tec.openplanner.team/stops/X902bca"], ["http://irail.be/stations/NMBS/008832334", "https://data.delijn.be/stops/409340"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N254abb"], ["http://irail.be/stations/NMBS/008891124", "https://data.delijn.be/stops/507066"], ["http://irail.be/stations/NMBS/008861549", "https://tec.openplanner.team/stops/Bmsgstj1"], ["https://data.delijn.be/stops/304535", "https://mivb.openplanner.team/stops/5559"], ["https://data.delijn.be/stops/301004", "https://mivb.openplanner.team/stops/5303"], ["https://data.delijn.be/stops/408875", "https://tec.openplanner.team/stops/LFMkrut4"], ["https://data.delijn.be/stops/300579", "https://mivb.openplanner.team/stops/3111"], ["https://data.delijn.be/stops/308720", "https://tec.openplanner.team/stops/Bgoewat1"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/N541aeb"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LDpzol-2"], ["https://data.delijn.be/stops/509317", "https://tec.openplanner.team/stops/H4mo207a"], ["https://data.delijn.be/stops/306906", "https://tec.openplanner.team/stops/Bboseco2"], ["http://irail.be/stations/NMBS/008811221", "https://data.delijn.be/stops/305565"], ["https://data.delijn.be/stops/307213", "https://tec.openplanner.team/stops/Bhalcbr2"], ["http://irail.be/stations/NMBS/008881190", "https://tec.openplanner.team/stops/H1ju121a"], ["https://data.delijn.be/stops/304127", "https://mivb.openplanner.team/stops/0010215"], ["http://irail.be/stations/NMBS/008811825", "https://tec.openplanner.team/stops/Bcsegar2"], ["https://data.delijn.be/stops/300906", "https://tec.openplanner.team/stops/Bixllep1"], ["https://data.delijn.be/stops/305519", "https://mivb.openplanner.team/stops/9169"], ["http://irail.be/stations/NMBS/008896925", "https://data.delijn.be/stops/505951"], ["https://data.delijn.be/stops/308856", "https://mivb.openplanner.team/stops/1768"], ["http://irail.be/stations/NMBS/008871332", "https://tec.openplanner.team/stops/Cobmara1"], ["https://data.delijn.be/stops/303632", "https://mivb.openplanner.team/stops/2214"], ["https://data.delijn.be/stops/208416", "https://tec.openplanner.team/stops/H4rs117a"], ["https://data.delijn.be/stops/300777", "https://mivb.openplanner.team/stops/7650110"], ["https://mivb.openplanner.team/stops/9551", "https://tec.openplanner.team/stops/Bovejei1"], ["http://irail.be/stations/NMBS/008866845", "https://tec.openplanner.team/stops/X641aia"], ["https://data.delijn.be/stops/301685", "https://tec.openplanner.team/stops/Bnetrbr2"], ["https://data.delijn.be/stops/308822", "https://tec.openplanner.team/stops/Bwaak102"], ["https://data.delijn.be/stops/300767", "https://mivb.openplanner.team/stops/3852"], ["https://data.delijn.be/stops/301159", "https://mivb.openplanner.team/stops/5921G"], ["https://data.delijn.be/stops/300281", "https://mivb.openplanner.team/stops/4168"], ["http://irail.be/stations/NMBS/008891660", "https://data.delijn.be/stops/501777"], ["https://data.delijn.be/stops/303231", "https://tec.openplanner.team/stops/Bhevhha1"], ["https://data.delijn.be/stops/300813", "https://mivb.openplanner.team/stops/4132B"], ["http://irail.be/stations/NMBS/008892734", "https://data.delijn.be/stops/505974"], ["http://irail.be/stations/NMBS/008832250", "https://data.delijn.be/stops/404237"], ["https://data.delijn.be/stops/301159", "https://mivb.openplanner.team/stops/5754"], ["https://data.delijn.be/stops/403702", "https://tec.openplanner.team/stops/LOewaut2"], ["https://data.delijn.be/stops/302229", "https://tec.openplanner.team/stops/Blhupqu1"], ["http://irail.be/stations/NMBS/008861150", "https://tec.openplanner.team/stops/N534bqb"], ["http://irail.be/stations/NMBS/008894821", "https://data.delijn.be/stops/204335"], ["https://data.delijn.be/stops/300945", "https://mivb.openplanner.team/stops/1684F"], ["https://mivb.openplanner.team/stops/1962", "https://tec.openplanner.team/stops/Bucccal3"], ["https://data.delijn.be/stops/307832", "https://mivb.openplanner.team/stops/2252"], ["https://data.delijn.be/stops/208409", "https://tec.openplanner.team/stops/H5rx140b"], ["http://irail.be/stations/NMBS/008891702", "https://data.delijn.be/stops/506343"], ["https://data.delijn.be/stops/408779", "https://tec.openplanner.team/stops/LOTsava1"], ["https://data.delijn.be/stops/508772", "https://tec.openplanner.team/stops/H4wg122b"], ["https://data.delijn.be/stops/408883", "https://tec.openplanner.team/stops/LFCkett1"], ["https://data.delijn.be/stops/302793", "https://mivb.openplanner.team/stops/9578"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/Bsdecdi2"], ["http://irail.be/stations/NMBS/008863354", "https://tec.openplanner.team/stops/N501dqa"], ["https://data.delijn.be/stops/307644", "https://tec.openplanner.team/stops/Bbrlvil1"], ["http://irail.be/stations/NMBS/008886041", "https://tec.openplanner.team/stops/H5ma186a"], ["https://data.delijn.be/stops/307147", "https://tec.openplanner.team/stops/Bhalvel1"], ["http://irail.be/stations/NMBS/008892908", "https://data.delijn.be/stops/207782"], ["https://data.delijn.be/stops/307043", "https://mivb.openplanner.team/stops/3309"], ["http://irail.be/stations/NMBS/008875002", "https://tec.openplanner.team/stops/N134aeb"], ["https://data.delijn.be/stops/307685", "https://mivb.openplanner.team/stops/1958B"], ["https://data.delijn.be/stops/408881", "https://tec.openplanner.team/stops/LTErest2"], ["https://data.delijn.be/stops/303576", "https://mivb.openplanner.team/stops/3042"], ["https://data.delijn.be/stops/400481", "https://tec.openplanner.team/stops/LGLc50-3"], ["http://irail.be/stations/NMBS/008728687", "https://tec.openplanner.team/stops/H4ep128b"], ["http://irail.be/stations/NMBS/008863362", "https://tec.openplanner.team/stops/N501kjb"], ["http://irail.be/stations/NMBS/008895125", "https://data.delijn.be/stops/206263"], ["https://data.delijn.be/stops/300982", "https://mivb.openplanner.team/stops/3407"], ["https://data.delijn.be/stops/301129", "https://mivb.openplanner.team/stops/6934F"], ["https://data.delijn.be/stops/303376", "https://mivb.openplanner.team/stops/1851"], ["https://data.delijn.be/stops/300888", "https://mivb.openplanner.team/stops/3222"], ["http://irail.be/stations/NMBS/008893013", "https://data.delijn.be/stops/201625"], ["https://mivb.openplanner.team/stops/5059", "https://tec.openplanner.team/stops/Buccdst2"], ["https://data.delijn.be/stops/306903", "https://tec.openplanner.team/stops/Bgoevli1"], ["https://data.delijn.be/stops/302381", "https://tec.openplanner.team/stops/Bwavcin1"], ["https://data.delijn.be/stops/301928", "https://mivb.openplanner.team/stops/1043"], ["http://irail.be/stations/NMBS/008833001", "https://data.delijn.be/stops/307075"], ["https://mivb.openplanner.team/stops/1871B", "https://tec.openplanner.team/stops/Bettgle1"], ["http://irail.be/stations/NMBS/008821824", "https://data.delijn.be/stops/108158"], ["https://data.delijn.be/stops/505842", "https://tec.openplanner.team/stops/H4co108b"], ["https://data.delijn.be/stops/307684", "https://mivb.openplanner.team/stops/5952F"], ["https://mivb.openplanner.team/stops/2140", "https://tec.openplanner.team/stops/Buccrac1"], ["https://data.delijn.be/stops/207799", "https://tec.openplanner.team/stops/H5el100a"], ["http://irail.be/stations/NMBS/008844503", "https://tec.openplanner.team/stops/LhEbruc2"], ["https://data.delijn.be/stops/305435", "https://mivb.openplanner.team/stops/5521"], ["http://irail.be/stations/NMBS/008874583", "https://tec.openplanner.team/stops/Crsapol2"], ["https://data.delijn.be/stops/306916", "https://tec.openplanner.team/stops/Btiegoo2"], ["http://irail.be/stations/NMBS/008893401", "https://data.delijn.be/stops/207859"], ["https://data.delijn.be/stops/508228", "https://tec.openplanner.team/stops/H4eh102b"], ["https://data.delijn.be/stops/304102", "https://tec.openplanner.team/stops/Bovetdo2"], ["https://data.delijn.be/stops/300805", "https://mivb.openplanner.team/stops/6809F"], ["https://data.delijn.be/stops/408866", "https://tec.openplanner.team/stops/LWRchem2"], ["http://irail.be/stations/NMBS/008893534", "https://data.delijn.be/stops/207404"], ["http://irail.be/stations/NMBS/008831807", "https://data.delijn.be/stops/407937"], ["https://mivb.openplanner.team/stops/2120", "https://tec.openplanner.team/stops/Buccron2"], ["http://irail.be/stations/NMBS/008821246", "https://data.delijn.be/stops/107920"], ["https://data.delijn.be/stops/404663", "https://tec.openplanner.team/stops/LPAmc--2"], ["http://irail.be/stations/NMBS/008812021", "https://data.delijn.be/stops/300832"], ["http://irail.be/stations/NMBS/008863453", "https://tec.openplanner.team/stops/N511aaa"], ["http://irail.be/stations/NMBS/008889011", "https://tec.openplanner.team/stops/H4rx141a"], ["https://data.delijn.be/stops/307200", "https://tec.openplanner.team/stops/Bhalker2"], ["https://mivb.openplanner.team/stops/4367B", "https://tec.openplanner.team/stops/Bixlqll1"], ["http://irail.be/stations/NMBS/008893443", "https://data.delijn.be/stops/206353"], ["https://data.delijn.be/stops/307461", "https://tec.openplanner.team/stops/Bsgipha3"], ["https://data.delijn.be/stops/307580", "https://tec.openplanner.team/stops/Bbghsar2"], ["https://data.delijn.be/stops/305174", "https://tec.openplanner.team/stops/Bwavcen1"], ["http://irail.be/stations/NMBS/008885001", "https://tec.openplanner.team/stops/H4ty296a"], ["https://data.delijn.be/stops/303229", "https://mivb.openplanner.team/stops/9686"], ["https://data.delijn.be/stops/509654", "https://tec.openplanner.team/stops/H4co150a"], ["https://data.delijn.be/stops/305229", "https://mivb.openplanner.team/stops/9608"], ["https://mivb.openplanner.team/stops/3520", "https://tec.openplanner.team/stops/Bauddel2"], ["https://data.delijn.be/stops/504294", "https://tec.openplanner.team/stops/H4mo138b"], ["https://data.delijn.be/stops/301072", "https://mivb.openplanner.team/stops/8291"], ["https://data.delijn.be/stops/300936", "https://mivb.openplanner.team/stops/4157"], ["http://irail.be/stations/NMBS/008811205", "https://mivb.openplanner.team/stops/0230234"], ["http://irail.be/stations/NMBS/008811411", "https://mivb.openplanner.team/stops/4306"], ["http://irail.be/stations/NMBS/008892304", "https://data.delijn.be/stops/504501"], ["http://irail.be/stations/NMBS/008815040", "https://data.delijn.be/stops/301071"], ["https://data.delijn.be/stops/305915", "https://mivb.openplanner.team/stops/5102F"], ["http://irail.be/stations/NMBS/008831138", "https://data.delijn.be/stops/400866"], ["http://irail.be/stations/NMBS/008842036", "https://tec.openplanner.team/stops/Lcemc--2"], ["https://data.delijn.be/stops/304697", "https://tec.openplanner.team/stops/Bhalalb2"], ["http://irail.be/stations/NMBS/008871373", "https://tec.openplanner.team/stops/H2gy113b"], ["https://data.delijn.be/stops/300749", "https://mivb.openplanner.team/stops/3233"], ["https://data.delijn.be/stops/307150", "https://tec.openplanner.team/stops/Bhalomo2"], ["https://data.delijn.be/stops/306968", "https://mivb.openplanner.team/stops/5704F"], ["http://irail.be/stations/NMBS/008891173", "https://data.delijn.be/stops/505781"], ["http://irail.be/stations/NMBS/008893013", "https://data.delijn.be/stops/204984"], ["https://data.delijn.be/stops/306112", "https://tec.openplanner.team/stops/Bbeamon2"], ["http://irail.be/stations/NMBS/008893013", "https://data.delijn.be/stops/200954"], ["http://irail.be/stations/NMBS/008866175", "https://tec.openplanner.team/stops/X658abb"], ["https://data.delijn.be/stops/405740", "https://tec.openplanner.team/stops/Llgcamp2"], ["https://data.delijn.be/stops/302407", "https://mivb.openplanner.team/stops/3611F"], ["http://irail.be/stations/NMBS/008891165", "https://data.delijn.be/stops/200683"], ["http://irail.be/stations/NMBS/008841731", "https://tec.openplanner.team/stops/LGLobor2"], ["https://data.delijn.be/stops/300806", "https://mivb.openplanner.team/stops/6858G"], ["http://irail.be/stations/NMBS/008728600", "https://tec.openplanner.team/stops/H4ar101b"], ["https://data.delijn.be/stops/300986", "https://mivb.openplanner.team/stops/2271"], ["https://data.delijn.be/stops/304255", "https://mivb.openplanner.team/stops/1099"], ["https://data.delijn.be/stops/301956", "https://mivb.openplanner.team/stops/2252"], ["https://mivb.openplanner.team/stops/6009", "https://tec.openplanner.team/stops/Bettlha1"], ["https://mivb.openplanner.team/stops/2932", "https://tec.openplanner.team/stops/Bsgimca2"], ["https://data.delijn.be/stops/208182", "https://tec.openplanner.team/stops/H5rx132a"], ["https://data.delijn.be/stops/509735", "https://tec.openplanner.team/stops/H4do103b"], ["https://data.delijn.be/stops/301067", "https://mivb.openplanner.team/stops/3257"], ["https://data.delijn.be/stops/301115", "https://tec.openplanner.team/stops/Buccchu2"], ["https://data.delijn.be/stops/300579", "https://mivb.openplanner.team/stops/6418F"], ["http://irail.be/stations/NMBS/008893120", "https://data.delijn.be/stops/201222"], ["https://data.delijn.be/stops/405720", "https://tec.openplanner.team/stops/LlgR-Fr3"], ["https://data.delijn.be/stops/306905", "https://tec.openplanner.team/stops/Bgoekaz2"], ["https://data.delijn.be/stops/408718", "https://tec.openplanner.team/stops/LWieg--*"], ["https://data.delijn.be/stops/504304", "https://tec.openplanner.team/stops/H4pl120a"], ["http://irail.be/stations/NMBS/008813045", "https://mivb.openplanner.team/stops/2221"], ["https://data.delijn.be/stops/307204", "https://tec.openplanner.team/stops/Blemsta2"], ["https://data.delijn.be/stops/408973", "https://tec.openplanner.team/stops/LWAlong3"], ["https://data.delijn.be/stops/208183", "https://tec.openplanner.team/stops/H5rx104a"], ["http://irail.be/stations/NMBS/008811437", "https://tec.openplanner.team/stops/Bwbfgar1"], ["https://mivb.openplanner.team/stops/2002", "https://tec.openplanner.team/stops/Buccplj2"], ["https://data.delijn.be/stops/509383", "https://tec.openplanner.team/stops/H4pl115b"], ["https://data.delijn.be/stops/405738", "https://tec.openplanner.team/stops/Lrclohe2"], ["http://irail.be/stations/NMBS/008844339", "https://tec.openplanner.team/stops/Lhuferm1"], ["http://irail.be/stations/NMBS/008894425", "https://data.delijn.be/stops/205225"], ["https://data.delijn.be/stops/307921", "https://mivb.openplanner.team/stops/2803"], ["https://mivb.openplanner.team/stops/1758B", "https://tec.openplanner.team/stops/Baudsju1"], ["http://irail.be/stations/NMBS/008861333", "https://tec.openplanner.team/stops/N531aob"], ["http://irail.be/stations/NMBS/008882248", "https://tec.openplanner.team/stops/Cpthaud2"], ["http://irail.be/stations/NMBS/008811767", "https://tec.openplanner.team/stops/Bpecsta1"], ["https://mivb.openplanner.team/stops/1756B", "https://tec.openplanner.team/stops/Baudvdr2"], ["https://data.delijn.be/stops/305350", "https://tec.openplanner.team/stops/Bbgever2"], ["http://irail.be/stations/NMBS/008881505", "https://tec.openplanner.team/stops/H1qp142a"], ["http://irail.be/stations/NMBS/008811775", "https://tec.openplanner.team/stops/Bpechos2"], ["https://data.delijn.be/stops/301027", "https://mivb.openplanner.team/stops/8331"], ["https://data.delijn.be/stops/306115", "https://mivb.openplanner.team/stops/2259"], ["https://data.delijn.be/stops/307817", "https://tec.openplanner.team/stops/Bovesnh2"], ["https://data.delijn.be/stops/308868", "https://mivb.openplanner.team/stops/5524"], ["https://data.delijn.be/stops/301967", "https://tec.openplanner.team/stops/Bhalpar2"], ["http://irail.be/stations/NMBS/008812245", "https://data.delijn.be/stops/304798"], ["https://data.delijn.be/stops/304448", "https://tec.openplanner.team/stops/Brsgleq1"], ["https://data.delijn.be/stops/304208", "https://tec.openplanner.team/stops/Brsrpch2"], ["https://data.delijn.be/stops/307976", "https://tec.openplanner.team/stops/Bwavcen1"], ["https://data.delijn.be/stops/300872", "https://tec.openplanner.team/stops/Bbeagae2"], ["https://data.delijn.be/stops/302445", "https://tec.openplanner.team/stops/Bsrgm101"], ["http://irail.be/stations/NMBS/008863503", "https://tec.openplanner.team/stops/N232anb"], ["https://data.delijn.be/stops/301042", "https://mivb.openplanner.team/stops/6706"], ["https://data.delijn.be/stops/300761", "https://mivb.openplanner.team/stops/8642"], ["http://irail.be/stations/NMBS/008813003", "https://mivb.openplanner.team/stops/2296"], ["https://data.delijn.be/stops/300924", "https://mivb.openplanner.team/stops/3461"], ["http://irail.be/stations/NMBS/008833605", "https://tec.openplanner.team/stops/LLasta-*"], ["https://data.delijn.be/stops/507689", "https://tec.openplanner.team/stops/H4mo206b"], ["http://irail.be/stations/NMBS/008821022", "https://data.delijn.be/stops/101515"], ["https://mivb.openplanner.team/stops/3572F", "https://tec.openplanner.team/stops/Bixlfla1"], ["http://irail.be/stations/NMBS/008896735", "https://data.delijn.be/stops/504697"], ["https://mivb.openplanner.team/stops/1937", "https://tec.openplanner.team/stops/Bucceng2"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/107058"], ["https://data.delijn.be/stops/306283", "https://mivb.openplanner.team/stops/3201"], ["http://irail.be/stations/NMBS/008814118", "https://mivb.openplanner.team/stops/2604F"], ["https://data.delijn.be/stops/509452", "https://tec.openplanner.team/stops/H4mo181b"], ["http://irail.be/stations/NMBS/008812153", "https://data.delijn.be/stops/206689"], ["https://data.delijn.be/stops/401397", "https://mivb.openplanner.team/stops/3920"], ["http://irail.be/stations/NMBS/008821154", "https://data.delijn.be/stops/102385"], ["https://data.delijn.be/stops/300389", "https://mivb.openplanner.team/stops/9656"], ["https://data.delijn.be/stops/503228", "https://tec.openplanner.team/stops/H4eh101b"], ["http://irail.be/stations/NMBS/008719203", "https://tec.openplanner.team/stops/X622aba"], ["https://data.delijn.be/stops/300934", "https://mivb.openplanner.team/stops/3411"], ["http://irail.be/stations/NMBS/008885530", "https://tec.openplanner.team/stops/H4vz369b"], ["https://data.delijn.be/stops/304205", "https://tec.openplanner.team/stops/Brsrfen1"], ["https://data.delijn.be/stops/509240", "https://tec.openplanner.team/stops/H4co146a"], ["http://irail.be/stations/NMBS/008200518", "https://tec.openplanner.team/stops/X688aaa"], ["http://irail.be/stations/NMBS/008832409", "https://data.delijn.be/stops/107604"], ["http://irail.be/stations/NMBS/008811437", "https://mivb.openplanner.team/stops/5419"], ["https://data.delijn.be/stops/308104", "https://tec.openplanner.team/stops/Bzlucam2"], ["http://irail.be/stations/NMBS/008015458", "https://tec.openplanner.team/stops/LaHzoll*"], ["https://data.delijn.be/stops/300956", "https://tec.openplanner.team/stops/Baudwav1"], ["https://data.delijn.be/stops/410137", "https://tec.openplanner.team/stops/Lrc594-1"], ["https://data.delijn.be/stops/405719", "https://tec.openplanner.team/stops/Llgwild1"], ["https://data.delijn.be/stops/300894", "https://mivb.openplanner.team/stops/0516"], ["https://data.delijn.be/stops/307149", "https://tec.openplanner.team/stops/Bhaless2"], ["https://data.delijn.be/stops/305244", "https://mivb.openplanner.team/stops/9786"], ["http://irail.be/stations/NMBS/008811718", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://data.delijn.be/stops/408874", "https://tec.openplanner.team/stops/LFMkrin1"], ["https://data.delijn.be/stops/408889", "https://tec.openplanner.team/stops/LFMstat2"], ["http://irail.be/stations/NMBS/008832375", "https://data.delijn.be/stops/403290"], ["https://data.delijn.be/stops/305915", "https://mivb.openplanner.team/stops/5174"], ["https://data.delijn.be/stops/300881", "https://mivb.openplanner.team/stops/4956"], ["http://irail.be/stations/NMBS/008832433", "https://data.delijn.be/stops/108971"], ["https://data.delijn.be/stops/300997", "https://mivb.openplanner.team/stops/7762"], ["https://data.delijn.be/stops/405711", "https://tec.openplanner.team/stops/Llgcime2"], ["https://data.delijn.be/stops/408894", "https://tec.openplanner.team/stops/LWHmath1"], ["https://data.delijn.be/stops/207776", "https://tec.openplanner.team/stops/H5rx135b"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/109188"], ["http://irail.be/stations/NMBS/008832003", "https://data.delijn.be/stops/405583"], ["https://data.delijn.be/stops/410341", "https://tec.openplanner.team/stops/LOdcris1"], ["http://irail.be/stations/NMBS/008843158", "https://tec.openplanner.team/stops/Ljeorda1"], ["https://data.delijn.be/stops/306914", "https://tec.openplanner.team/stops/Btiegoo1"], ["https://data.delijn.be/stops/207752", "https://tec.openplanner.team/stops/H5rx127b"], ["http://irail.be/stations/NMBS/008822608", "https://data.delijn.be/stops/104571"], ["http://irail.be/stations/NMBS/008895505", "https://data.delijn.be/stops/208040"], ["https://data.delijn.be/stops/408804", "https://tec.openplanner.team/stops/LVIhala4"], ["https://mivb.openplanner.team/stops/1417B", "https://tec.openplanner.team/stops/Bbxlfro1"], ["https://data.delijn.be/stops/300919", "https://mivb.openplanner.team/stops/5038"], ["http://irail.be/stations/NMBS/008895240", "https://data.delijn.be/stops/208516"], ["https://mivb.openplanner.team/stops/5266F", "https://tec.openplanner.team/stops/Bixefra1"], ["http://irail.be/stations/NMBS/008863818", "https://tec.openplanner.team/stops/N232aba"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N349acb"], ["http://irail.be/stations/NMBS/008831112", "https://data.delijn.be/stops/401520"], ["https://data.delijn.be/stops/206784", "https://tec.openplanner.team/stops/H1gy115b"], ["https://data.delijn.be/stops/301069", "https://mivb.openplanner.team/stops/8732"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Canboni1"], ["http://irail.be/stations/NMBS/008814001", "https://mivb.openplanner.team/stops/0726"], ["https://data.delijn.be/stops/304458", "https://tec.openplanner.team/stops/Balssvi2"], ["https://data.delijn.be/stops/508678", "https://tec.openplanner.team/stops/H4ef109a"], ["https://data.delijn.be/stops/305315", "https://mivb.openplanner.team/stops/9787"], ["https://data.delijn.be/stops/300772", "https://mivb.openplanner.team/stops/8672"], ["https://data.delijn.be/stops/301035", "https://mivb.openplanner.team/stops/0650265"], ["https://data.delijn.be/stops/300767", "https://mivb.openplanner.team/stops/6808G"], ["http://irail.be/stations/NMBS/008889045", "https://tec.openplanner.team/stops/H4te413b"], ["http://irail.be/stations/NMBS/008884632", "https://tec.openplanner.team/stops/H1po154a"], ["https://data.delijn.be/stops/301049", "https://mivb.openplanner.team/stops/1201"], ["https://data.delijn.be/stops/509639", "https://tec.openplanner.team/stops/H4co149a"], ["http://irail.be/stations/NMBS/008881000", "https://tec.openplanner.team/stops/Cmonsnc1"], ["http://irail.be/stations/NMBS/008891124", "https://data.delijn.be/stops/502066"], ["http://irail.be/stations/NMBS/008832573", "https://data.delijn.be/stops/405525"], ["https://data.delijn.be/stops/307988", "https://mivb.openplanner.team/stops/3334F"], ["http://irail.be/stations/NMBS/008832045", "https://data.delijn.be/stops/407928"], ["http://irail.be/stations/NMBS/008815040", "https://mivb.openplanner.team/stops/7730502"], ["http://irail.be/stations/NMBS/008841731", "https://data.delijn.be/stops/404680"], ["https://data.delijn.be/stops/404655", "https://tec.openplanner.team/stops/LJUfort1"], ["https://data.delijn.be/stops/301030", "https://mivb.openplanner.team/stops/6427F"], ["http://irail.be/stations/NMBS/008811734", "https://tec.openplanner.team/stops/Bwavfol2"], ["http://irail.be/stations/NMBS/008886058", "https://tec.openplanner.team/stops/H5ar100a"], ["http://irail.be/stations/NMBS/008811148", "https://mivb.openplanner.team/stops/9777"], ["https://data.delijn.be/stops/300370", "https://tec.openplanner.team/stops/Bwaucig2"], ["https://data.delijn.be/stops/302423", "https://tec.openplanner.team/stops/Bjodgai2"], ["https://mivb.openplanner.team/stops/4298", "https://tec.openplanner.team/stops/Baudtri2"], ["https://data.delijn.be/stops/307967", "https://tec.openplanner.team/stops/Bwavlav1"], ["http://irail.be/stations/NMBS/008821709", "https://data.delijn.be/stops/102612"], ["http://irail.be/stations/NMBS/008822269", "https://data.delijn.be/stops/308695"], ["https://data.delijn.be/stops/504255", "https://tec.openplanner.team/stops/H4pl135b"], ["http://irail.be/stations/NMBS/008865540", "https://tec.openplanner.team/stops/X850aob"], ["http://irail.be/stations/NMBS/008881455", "https://tec.openplanner.team/stops/H3th133a"], ["https://data.delijn.be/stops/302436", "https://tec.openplanner.team/stops/Bsrgm102"], ["https://data.delijn.be/stops/300894", "https://mivb.openplanner.team/stops/0430648"], ["https://data.delijn.be/stops/400450", "https://tec.openplanner.team/stops/LBPrueg1"], ["https://data.delijn.be/stops/307634", "https://mivb.openplanner.team/stops/1937"], ["https://data.delijn.be/stops/509231", "https://tec.openplanner.team/stops/H4co107a"], ["https://data.delijn.be/stops/300740", "https://mivb.openplanner.team/stops/2252"], ["http://irail.be/stations/NMBS/008863008", "https://tec.openplanner.team/stops/N501gaa"], ["https://data.delijn.be/stops/300941", "https://mivb.openplanner.team/stops/3317"], ["http://irail.be/stations/NMBS/008814175", "https://data.delijn.be/stops/307719"], ["http://irail.be/stations/NMBS/008861440", "https://tec.openplanner.team/stops/N527agb"], ["https://data.delijn.be/stops/302421", "https://tec.openplanner.team/stops/Bsrgcur1"], ["https://data.delijn.be/stops/307683", "https://mivb.openplanner.team/stops/5817"], ["https://data.delijn.be/stops/307142", "https://mivb.openplanner.team/stops/9979B"], ["https://data.delijn.be/stops/408925", "https://tec.openplanner.team/stops/LTEkerk1"], ["http://irail.be/stations/NMBS/008874583", "https://tec.openplanner.team/stops/Caimeno3"], ["https://data.delijn.be/stops/408833", "https://tec.openplanner.team/stops/LMgwith2"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1gh143a"], ["https://data.delijn.be/stops/300950", "https://mivb.openplanner.team/stops/5165"], ["https://mivb.openplanner.team/stops/0050119", "https://tec.openplanner.team/stops/Bbxltou1"], ["https://data.delijn.be/stops/408991", "https://tec.openplanner.team/stops/LWAcham1"], ["https://mivb.openplanner.team/stops/5058", "https://tec.openplanner.team/stops/Buccdch2"], ["https://data.delijn.be/stops/307461", "https://mivb.openplanner.team/stops/0340341"], ["https://data.delijn.be/stops/301160", "https://mivb.openplanner.team/stops/5920C"], ["http://irail.be/stations/NMBS/008812245", "https://data.delijn.be/stops/306645"], ["https://data.delijn.be/stops/408811", "https://tec.openplanner.team/stops/LVIvert1"], ["http://irail.be/stations/NMBS/008863404", "https://tec.openplanner.team/stops/LSssurl2"], ["http://irail.be/stations/NMBS/008893179", "https://data.delijn.be/stops/210072"], ["https://data.delijn.be/stops/408920", "https://tec.openplanner.team/stops/LTEkl121"], ["http://irail.be/stations/NMBS/008861416", "https://tec.openplanner.team/stops/N522afb"], ["http://irail.be/stations/NMBS/008896115", "https://data.delijn.be/stops/508983"], ["http://irail.be/stations/NMBS/008872553", "https://tec.openplanner.team/stops/Btileco1"], ["http://irail.be/stations/NMBS/008891132", "https://data.delijn.be/stops/200862"], ["https://data.delijn.be/stops/408848", "https://tec.openplanner.team/stops/LRmsmvo4"], ["https://data.delijn.be/stops/306660", "https://mivb.openplanner.team/stops/1142"], ["https://data.delijn.be/stops/408875", "https://tec.openplanner.team/stops/LVu03--1"], ["https://data.delijn.be/stops/300833", "https://mivb.openplanner.team/stops/8702"], ["https://data.delijn.be/stops/301130", "https://tec.openplanner.team/stops/Buccfja2"], ["http://irail.be/stations/NMBS/008881166", "https://tec.openplanner.team/stops/H1mj126b"], ["http://irail.be/stations/NMBS/008728687", "https://tec.openplanner.team/stops/H4bx108b"], ["http://irail.be/stations/NMBS/008864915", "https://tec.openplanner.team/stops/N254abb"], ["https://data.delijn.be/stops/305264", "https://mivb.openplanner.team/stops/9787"], ["http://irail.be/stations/NMBS/008831765", "https://data.delijn.be/stops/402485"], ["https://mivb.openplanner.team/stops/5817", "https://tec.openplanner.team/stops/Bucccal4"], ["http://irail.be/stations/NMBS/008811528", "https://tec.openplanner.team/stops/Bgnvgar1"], ["https://data.delijn.be/stops/306375", "https://tec.openplanner.team/stops/Boveker1"], ["https://data.delijn.be/stops/300794", "https://mivb.openplanner.team/stops/8661"], ["https://data.delijn.be/stops/402653", "https://tec.openplanner.team/stops/LCAwals2"], ["http://irail.be/stations/NMBS/008885704", "https://tec.openplanner.team/stops/H4mo160a"], ["https://data.delijn.be/stops/308721", "https://tec.openplanner.team/stops/Bgoevli2"], ["https://data.delijn.be/stops/504299", "https://tec.openplanner.team/stops/H4mo151b"], ["http://irail.be/stations/NMBS/008895471", "https://data.delijn.be/stops/207413"], ["http://irail.be/stations/NMBS/008863446", "https://tec.openplanner.team/stops/N511aia"], ["https://data.delijn.be/stops/307635", "https://tec.openplanner.team/stops/Buccbou2"], ["https://data.delijn.be/stops/304431", "https://tec.openplanner.team/stops/Brsgfso1"], ["https://data.delijn.be/stops/300789", "https://mivb.openplanner.team/stops/1484"], ["https://data.delijn.be/stops/300304", "https://mivb.openplanner.team/stops/4273F"], ["http://irail.be/stations/NMBS/008892643", "https://data.delijn.be/stops/209736"], ["http://irail.be/stations/NMBS/008892601", "https://data.delijn.be/stops/205974"], ["http://irail.be/stations/NMBS/008863404", "https://tec.openplanner.team/stops/N506bmb"], ["https://data.delijn.be/stops/408973", "https://tec.openplanner.team/stops/LWAwila1"], ["http://irail.be/stations/NMBS/008400426", "https://data.delijn.be/stops/408922"], ["https://data.delijn.be/stops/306915", "https://tec.openplanner.team/stops/Bbosdra2"], ["http://irail.be/stations/NMBS/008881570", "https://tec.openplanner.team/stops/H1fr116a"], ["http://irail.be/stations/NMBS/008866258", "https://tec.openplanner.team/stops/X661ama"], ["http://irail.be/stations/NMBS/008822608", "https://data.delijn.be/stops/107531"], ["http://irail.be/stations/NMBS/008814308", "https://data.delijn.be/stops/300633"], ["http://irail.be/stations/NMBS/008821964", "https://data.delijn.be/stops/109232"], ["https://data.delijn.be/stops/307473", "https://tec.openplanner.team/stops/Bhalcbr1"], ["https://data.delijn.be/stops/505391", "https://tec.openplanner.team/stops/H4po129b"], ["https://data.delijn.be/stops/300945", "https://mivb.openplanner.team/stops/4115"], ["https://data.delijn.be/stops/400487", "https://tec.openplanner.team/stops/LRGmoul2"], ["https://data.delijn.be/stops/301401", "https://mivb.openplanner.team/stops/2660"], ["https://mivb.openplanner.team/stops/8341", "https://tec.openplanner.team/stops/Bsgibla2"], ["https://data.delijn.be/stops/508772", "https://tec.openplanner.team/stops/H4eh101a"], ["https://data.delijn.be/stops/404667", "https://tec.openplanner.team/stops/LJUmc--1"], ["https://data.delijn.be/stops/304642", "https://mivb.openplanner.team/stops/1066"], ["https://data.delijn.be/stops/302805", "https://tec.openplanner.team/stops/Bkrabhu1"], ["https://data.delijn.be/stops/301122", "https://tec.openplanner.team/stops/Buccdef2"], ["https://data.delijn.be/stops/302852", "https://tec.openplanner.team/stops/Bwaak102"], ["https://data.delijn.be/stops/301057", "https://mivb.openplanner.team/stops/4254B"], ["https://data.delijn.be/stops/305298", "https://tec.openplanner.team/stops/H1mk110b"], ["https://data.delijn.be/stops/301006", "https://mivb.openplanner.team/stops/1096"], ["http://irail.be/stations/NMBS/008896370", "https://data.delijn.be/stops/508873"], ["https://data.delijn.be/stops/208411", "https://tec.openplanner.team/stops/H5rx110a"], ["https://data.delijn.be/stops/405730", "https://tec.openplanner.team/stops/Lrchype1"], ["https://data.delijn.be/stops/301711", "https://mivb.openplanner.team/stops/9634"], ["https://data.delijn.be/stops/209371", "https://tec.openplanner.team/stops/H5rx138a"], ["https://data.delijn.be/stops/300876", "https://mivb.openplanner.team/stops/8823"], ["https://data.delijn.be/stops/400668", "https://tec.openplanner.team/stops/LBpberl2"], ["http://irail.be/stations/NMBS/008874609", "https://tec.openplanner.team/stops/Cairous2"], ["https://data.delijn.be/stops/306001", "https://mivb.openplanner.team/stops/0900568"], ["http://irail.be/stations/NMBS/008862018", "https://tec.openplanner.team/stops/X602aob"], ["http://irail.be/stations/NMBS/008814175", "https://data.delijn.be/stops/304436"], ["http://irail.be/stations/NMBS/008886058", "https://tec.openplanner.team/stops/H4ab100b"], ["https://data.delijn.be/stops/208177", "https://tec.openplanner.team/stops/H5el117a"], ["http://irail.be/stations/NMBS/008842838", "https://tec.openplanner.team/stops/LGmhumb1"], ["http://irail.be/stations/NMBS/008894821", "https://data.delijn.be/stops/204626"], ["http://irail.be/stations/NMBS/008893583", "https://data.delijn.be/stops/207588"], ["https://data.delijn.be/stops/300956", "https://mivb.openplanner.team/stops/1731"], ["http://irail.be/stations/NMBS/008886066", "https://tec.openplanner.team/stops/H5ar103a"], ["http://irail.be/stations/NMBS/008200516", "https://tec.openplanner.team/stops/X684aab"], ["http://irail.be/stations/NMBS/008844057", "https://tec.openplanner.team/stops/Lveecol2"], ["https://data.delijn.be/stops/301108", "https://mivb.openplanner.team/stops/1975"], ["https://data.delijn.be/stops/300920", "https://mivb.openplanner.team/stops/2901"], ["https://data.delijn.be/stops/300770", "https://mivb.openplanner.team/stops/2528"], ["http://irail.be/stations/NMBS/008812153", "https://data.delijn.be/stops/207717"], ["https://data.delijn.be/stops/207785", "https://tec.openplanner.team/stops/H5rx137a"], ["https://data.delijn.be/stops/300825", "https://mivb.openplanner.team/stops/6651"], ["http://irail.be/stations/NMBS/008832573", "https://data.delijn.be/stops/407311"], ["http://irail.be/stations/NMBS/008864824", "https://tec.openplanner.team/stops/N201apa"], ["https://data.delijn.be/stops/304115", "https://tec.openplanner.team/stops/Bovepla1"], ["https://data.delijn.be/stops/301108", "https://tec.openplanner.team/stops/Buccbas2"], ["https://data.delijn.be/stops/300826", "https://mivb.openplanner.team/stops/0430848"], ["http://irail.be/stations/NMBS/008893583", "https://data.delijn.be/stops/216019"], ["http://irail.be/stations/NMBS/008842051", "https://tec.openplanner.team/stops/Lcavign2"], ["https://data.delijn.be/stops/408908", "https://tec.openplanner.team/stops/LOTtong1"], ["https://data.delijn.be/stops/301027", "https://mivb.openplanner.team/stops/0724"], ["https://data.delijn.be/stops/300904", "https://mivb.openplanner.team/stops/6406"], ["https://data.delijn.be/stops/300881", "https://mivb.openplanner.team/stops/54"], ["http://irail.be/stations/NMBS/008811171", "https://data.delijn.be/stops/301082"], ["http://irail.be/stations/NMBS/008892254", "https://data.delijn.be/stops/507483"], ["https://data.delijn.be/stops/208767", "https://tec.openplanner.team/stops/H4wt159b"], ["http://irail.be/stations/NMBS/008841319", "https://tec.openplanner.team/stops/LBIbois1"], ["https://mivb.openplanner.team/stops/1751", "https://tec.openplanner.team/stops/Baudwav2"], ["http://irail.be/stations/NMBS/008822004", "https://data.delijn.be/stops/102984"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/300361"], ["http://irail.be/stations/NMBS/008883436", "https://tec.openplanner.team/stops/H1by106a"], ["http://irail.be/stations/NMBS/008893401", "https://data.delijn.be/stops/206155"], ["http://irail.be/stations/NMBS/008811676", "https://tec.openplanner.team/stops/Bllncom2"], ["http://irail.be/stations/NMBS/008811155", "https://mivb.openplanner.team/stops/2294B"], ["https://data.delijn.be/stops/307685", "https://mivb.openplanner.team/stops/1933B"], ["http://irail.be/stations/NMBS/008895570", "https://data.delijn.be/stops/208660"], ["http://irail.be/stations/NMBS/008896925", "https://data.delijn.be/stops/508280"], ["http://irail.be/stations/NMBS/008873007", "https://tec.openplanner.team/stops/N106alb"], ["http://irail.be/stations/NMBS/008812161", "https://data.delijn.be/stops/207729"], ["https://data.delijn.be/stops/208190", "https://tec.openplanner.team/stops/H5rx127a"], ["https://data.delijn.be/stops/208590", "https://tec.openplanner.team/stops/H1mk115a"], ["https://data.delijn.be/stops/300741", "https://mivb.openplanner.team/stops/8712"], ["https://mivb.openplanner.team/stops/5656", "https://tec.openplanner.team/stops/Bovejei1"], ["https://data.delijn.be/stops/303584", "https://mivb.openplanner.team/stops/9701"], ["https://mivb.openplanner.team/stops/1048F", "https://tec.openplanner.team/stops/Buccchu2"], ["https://data.delijn.be/stops/300786", "https://mivb.openplanner.team/stops/2373"], ["http://irail.be/stations/NMBS/008841202", "https://tec.openplanner.team/stops/Langare*"], ["https://data.delijn.be/stops/308447", "https://tec.openplanner.team/stops/Bovecha2"], ["https://data.delijn.be/stops/300062", "https://tec.openplanner.team/stops/Btubcal2"], ["https://data.delijn.be/stops/207791", "https://tec.openplanner.team/stops/H5rx139b"], ["https://data.delijn.be/stops/400470", "https://tec.openplanner.team/stops/LEMfort2"], ["https://mivb.openplanner.team/stops/2142", "https://tec.openplanner.team/stops/Buccfja1"], ["http://irail.be/stations/NMBS/008200520", "https://tec.openplanner.team/stops/X626aha"], ["http://irail.be/stations/NMBS/008864469", "https://tec.openplanner.team/stops/X982bub"], ["http://irail.be/stations/NMBS/008842846", "https://tec.openplanner.team/stops/LHaxhor2"], ["https://data.delijn.be/stops/300997", "https://mivb.openplanner.team/stops/3109"], ["https://data.delijn.be/stops/300398", "https://mivb.openplanner.team/stops/9677"], ["https://data.delijn.be/stops/301040", "https://mivb.openplanner.team/stops/1056"], ["https://data.delijn.be/stops/300016", "https://tec.openplanner.team/stops/Buccvoi2"], ["https://data.delijn.be/stops/300994", "https://mivb.openplanner.team/stops/6201F"], ["https://data.delijn.be/stops/400492", "https://tec.openplanner.team/stops/LBSneuv2"], ["https://data.delijn.be/stops/403805", "https://tec.openplanner.team/stops/LOreg--2"], ["https://data.delijn.be/stops/401418", "https://mivb.openplanner.team/stops/1320"], ["http://irail.be/stations/NMBS/008200134", "https://tec.openplanner.team/stops/LwMzoll2"], ["https://data.delijn.be/stops/300958", "https://mivb.openplanner.team/stops/1753"], ["http://irail.be/stations/NMBS/008813037", "https://mivb.openplanner.team/stops/0610263"], ["https://data.delijn.be/stops/300876", "https://mivb.openplanner.team/stops/4229"], ["https://data.delijn.be/stops/401922", "https://tec.openplanner.team/stops/LOrchau1"], ["https://data.delijn.be/stops/301030", "https://mivb.openplanner.team/stops/0650265"], ["https://data.delijn.be/stops/307826", "https://mivb.openplanner.team/stops/1552"], ["http://irail.be/stations/NMBS/008865110", "https://tec.openplanner.team/stops/X725adb"], ["https://data.delijn.be/stops/300925", "https://mivb.openplanner.team/stops/1535"], ["https://data.delijn.be/stops/300956", "https://mivb.openplanner.team/stops/2009"], ["https://mivb.openplanner.team/stops/3546", "https://tec.openplanner.team/stops/Bauddel2"], ["https://data.delijn.be/stops/408904", "https://tec.openplanner.team/stops/LFPchat2"], ["https://data.delijn.be/stops/408855", "https://tec.openplanner.team/stops/LFChuis1"], ["https://data.delijn.be/stops/407582", "https://tec.openplanner.team/stops/LDpulve2"], ["http://irail.be/stations/NMBS/008892643", "https://data.delijn.be/stops/208736"], ["http://irail.be/stations/NMBS/008814001", "https://mivb.openplanner.team/stops/3211"], ["https://data.delijn.be/stops/306048", "https://mivb.openplanner.team/stops/5714"], ["http://irail.be/stations/NMBS/008833670", "https://data.delijn.be/stops/401650"], ["http://irail.be/stations/NMBS/008891124", "https://data.delijn.be/stops/502605"], ["https://data.delijn.be/stops/304190", "https://mivb.openplanner.team/stops/3018"], ["http://irail.be/stations/NMBS/008895836", "https://data.delijn.be/stops/304890"], ["https://mivb.openplanner.team/stops/2355", "https://tec.openplanner.team/stops/Buccdch1"], ["http://irail.be/stations/NMBS/008874609", "https://tec.openplanner.team/stops/N543cba"], ["http://irail.be/stations/NMBS/008812062", "https://data.delijn.be/stops/300292"], ["https://data.delijn.be/stops/305428", "https://mivb.openplanner.team/stops/1629"], ["http://irail.be/stations/NMBS/008811676", "https://tec.openplanner.team/stops/Bllngar9"], ["https://data.delijn.be/stops/307832", "https://mivb.openplanner.team/stops/2225"], ["http://irail.be/stations/NMBS/008864501", "https://tec.openplanner.team/stops/N201aef"], ["http://irail.be/stations/NMBS/008883006", "https://tec.openplanner.team/stops/H3br112b"], ["https://data.delijn.be/stops/300025", "https://mivb.openplanner.team/stops/9658"], ["https://mivb.openplanner.team/stops/5265F", "https://tec.openplanner.team/stops/Bixefra1"], ["http://irail.be/stations/NMBS/008872413", "https://tec.openplanner.team/stops/Bflegar6"], ["http://irail.be/stations/NMBS/008886587", "https://tec.openplanner.team/stops/H5at122b"], ["http://irail.be/stations/NMBS/008894508", "https://data.delijn.be/stops/205063"], ["https://mivb.openplanner.team/stops/1640B", "https://tec.openplanner.team/stops/Bwolvan2"], ["http://irail.be/stations/NMBS/008812070", "https://data.delijn.be/stops/307464"], ["http://irail.be/stations/NMBS/008866530", "https://tec.openplanner.team/stops/X617ahb"], ["https://data.delijn.be/stops/306116", "https://mivb.openplanner.team/stops/4215"], ["https://data.delijn.be/stops/406564", "https://tec.openplanner.team/stops/LWOwaer1"], ["https://data.delijn.be/stops/408869", "https://tec.openplanner.team/stops/LFCvoer2"], ["http://irail.be/stations/NMBS/008822251", "https://data.delijn.be/stops/308408"], ["https://data.delijn.be/stops/403701", "https://tec.openplanner.team/stops/LBGvill2"], ["https://data.delijn.be/stops/306097", "https://tec.openplanner.team/stops/Bhevjac2"], ["http://irail.be/stations/NMBS/008814209", "https://tec.openplanner.team/stops/Bnivga61"], ["https://data.delijn.be/stops/208175", "https://tec.openplanner.team/stops/H5wo130a"], ["https://data.delijn.be/stops/304456", "https://tec.openplanner.team/stops/Brsgter1"], ["https://data.delijn.be/stops/300982", "https://mivb.openplanner.team/stops/3454"], ["http://irail.be/stations/NMBS/008891173", "https://data.delijn.be/stops/506459"], ["http://irail.be/stations/NMBS/008894755", "https://data.delijn.be/stops/204288"], ["https://data.delijn.be/stops/300365", "https://tec.openplanner.team/stops/Bwaucan1"], ["https://data.delijn.be/stops/300785", "https://mivb.openplanner.team/stops/2535B"], ["http://irail.be/stations/NMBS/008873312", "https://tec.openplanner.team/stops/N106alb"], ["http://irail.be/stations/NMBS/008893583", "https://data.delijn.be/stops/206248"], ["https://data.delijn.be/stops/300906", "https://mivb.openplanner.team/stops/5254"], ["https://data.delijn.be/stops/302448", "https://tec.openplanner.team/stops/Bzluvil1"], ["https://data.delijn.be/stops/302200", "https://tec.openplanner.team/stops/Bzluegl1"], ["https://data.delijn.be/stops/304440", "https://tec.openplanner.team/stops/Brsgfon1"], ["http://irail.be/stations/NMBS/008872579", "https://tec.openplanner.team/stops/Bvlvmar1"], ["http://irail.be/stations/NMBS/008895869", "https://data.delijn.be/stops/206502"], ["https://data.delijn.be/stops/303659", "https://tec.openplanner.team/stops/Blkbavo2"], ["https://data.delijn.be/stops/407202", "https://tec.openplanner.team/stops/LHTbeau1"], ["http://irail.be/stations/NMBS/008861119", "https://tec.openplanner.team/stops/N501mja"], ["http://irail.be/stations/NMBS/008400219", "https://tec.openplanner.team/stops/LMalarg3"], ["https://data.delijn.be/stops/400484", "https://tec.openplanner.team/stops/LRGcana2"], ["http://irail.be/stations/NMBS/008200136", "https://tec.openplanner.team/stops/X761aab"], ["http://irail.be/stations/NMBS/008814373", "https://mivb.openplanner.team/stops/5720F"], ["https://data.delijn.be/stops/308722", "https://tec.openplanner.team/stops/Bgoesch2"], ["https://data.delijn.be/stops/407721", "https://tec.openplanner.team/stops/LMaslav4"], ["http://irail.be/stations/NMBS/008814126", "https://mivb.openplanner.team/stops/2663"], ["http://irail.be/stations/NMBS/008873320", "https://tec.openplanner.team/stops/N161aab"], ["https://data.delijn.be/stops/304178", "https://tec.openplanner.team/stops/Bbldgar2"], ["https://data.delijn.be/stops/409797", "https://tec.openplanner.team/stops/LBSvi322"], ["https://mivb.openplanner.team/stops/9972F", "https://tec.openplanner.team/stops/Buccdst1"], ["http://irail.be/stations/NMBS/008893559", "https://data.delijn.be/stops/202479"], ["https://data.delijn.be/stops/408892", "https://tec.openplanner.team/stops/LFMstat2"], ["https://data.delijn.be/stops/300856", "https://mivb.openplanner.team/stops/0521"], ["https://data.delijn.be/stops/400482", "https://tec.openplanner.team/stops/LRGeg--2"], ["https://data.delijn.be/stops/301675", "https://tec.openplanner.team/stops/Bnetace1"], ["https://data.delijn.be/stops/304191", "https://mivb.openplanner.team/stops/3018"], ["https://data.delijn.be/stops/504242", "https://tec.openplanner.team/stops/H4co149a"], ["https://data.delijn.be/stops/504316", "https://tec.openplanner.team/stops/H4mo133b"], ["https://data.delijn.be/stops/208589", "https://tec.openplanner.team/stops/Bspkdon2"], ["http://irail.be/stations/NMBS/008879004", "https://tec.openplanner.team/stops/H1er106a"], ["http://irail.be/stations/NMBS/008863354", "https://tec.openplanner.team/stops/N501kna"], ["https://data.delijn.be/stops/407647", "https://tec.openplanner.team/stops/LBPmili1"], ["https://data.delijn.be/stops/307243", "https://mivb.openplanner.team/stops/6806F"], ["https://data.delijn.be/stops/404653", "https://tec.openplanner.team/stops/Llabriq1"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LMazonn3"], ["https://data.delijn.be/stops/301043", "https://mivb.openplanner.team/stops/4595"], ["https://data.delijn.be/stops/509240", "https://tec.openplanner.team/stops/H4co146b"], ["http://irail.be/stations/NMBS/008864469", "https://tec.openplanner.team/stops/X982aja"], ["https://data.delijn.be/stops/308127", "https://tec.openplanner.team/stops/Bbosgar2"], ["https://data.delijn.be/stops/401416", "https://mivb.openplanner.team/stops/4369"], ["http://irail.be/stations/NMBS/008861135", "https://tec.openplanner.team/stops/N551afb"], ["http://irail.be/stations/NMBS/008865227", "https://tec.openplanner.team/stops/X878aba"], ["http://irail.be/stations/NMBS/008841442", "https://tec.openplanner.team/stops/LRemorr4"], ["https://data.delijn.be/stops/308824", "https://tec.openplanner.team/stops/Blanove1"], ["https://data.delijn.be/stops/305236", "https://tec.openplanner.team/stops/Bmrqgar2"], ["https://data.delijn.be/stops/504455", "https://tec.openplanner.team/stops/H4tg170a"], ["https://data.delijn.be/stops/304441", "https://tec.openplanner.team/stops/Brsgges2"], ["http://irail.be/stations/NMBS/008872306", "https://tec.openplanner.team/stops/Cjufrat2"], ["http://irail.be/stations/NMBS/008832003", "https://data.delijn.be/stops/405604"], ["http://irail.be/stations/NMBS/008833233", "https://data.delijn.be/stops/304358"], ["https://data.delijn.be/stops/305348", "https://tec.openplanner.team/stops/Bwavlep2"], ["http://irail.be/stations/NMBS/008882701", "https://tec.openplanner.team/stops/Bmanfbg1"], ["https://data.delijn.be/stops/301027", "https://mivb.openplanner.team/stops/1125"], ["http://irail.be/stations/NMBS/008866407", "https://tec.openplanner.team/stops/X608aib"], ["https://mivb.openplanner.team/stops/2146", "https://tec.openplanner.team/stops/Buccpes1"], ["http://irail.be/stations/NMBS/008811270", "https://data.delijn.be/stops/302094"], ["https://data.delijn.be/stops/308957", "https://mivb.openplanner.team/stops/4359"], ["https://data.delijn.be/stops/307640", "https://mivb.openplanner.team/stops/1944"], ["http://irail.be/stations/NMBS/008861127", "https://tec.openplanner.team/stops/N528aia"], ["https://data.delijn.be/stops/305324", "https://mivb.openplanner.team/stops/9754B"], ["https://data.delijn.be/stops/408922", "https://tec.openplanner.team/stops/LTEzinn2"], ["http://irail.be/stations/NMBS/008814266", "https://tec.openplanner.team/stops/Bwatath3"], ["https://data.delijn.be/stops/300972", "https://tec.openplanner.team/stops/Baudvdr2"], ["https://data.delijn.be/stops/208184", "https://tec.openplanner.team/stops/H5rx121b"], ["http://irail.be/stations/NMBS/008822459", "https://data.delijn.be/stops/305829"], ["https://data.delijn.be/stops/405361", "https://tec.openplanner.team/stops/Blankal4"], ["https://data.delijn.be/stops/504380", "https://tec.openplanner.team/stops/H4pl114a"], ["http://irail.be/stations/NMBS/008871183", "https://tec.openplanner.team/stops/Chhsncb1"], ["https://data.delijn.be/stops/405364", "https://tec.openplanner.team/stops/Braccen2"], ["https://data.delijn.be/stops/407567", "https://tec.openplanner.team/stops/LWHzave2"], ["http://irail.be/stations/NMBS/008832433", "https://data.delijn.be/stops/401933"], ["https://data.delijn.be/stops/209597", "https://tec.openplanner.team/stops/H1en104d"], ["https://mivb.openplanner.team/stops/1352", "https://tec.openplanner.team/stops/Bixleix2"], ["https://data.delijn.be/stops/509295", "https://tec.openplanner.team/stops/H4lu125a"], ["http://irail.be/stations/NMBS/008892106", "https://data.delijn.be/stops/211117"], ["https://data.delijn.be/stops/300906", "https://mivb.openplanner.team/stops/4705"], ["https://data.delijn.be/stops/302382", "https://tec.openplanner.team/stops/Bwavlav2"], ["https://data.delijn.be/stops/301029", "https://mivb.openplanner.team/stops/5020"], ["http://irail.be/stations/NMBS/008895067", "https://data.delijn.be/stops/207829"], ["http://irail.be/stations/NMBS/008894151", "https://data.delijn.be/stops/202179"], ["https://data.delijn.be/stops/509237", "https://tec.openplanner.team/stops/H4co110b"], ["https://data.delijn.be/stops/219015", "https://tec.openplanner.team/stops/H5rx113b"], ["http://irail.be/stations/NMBS/008815016", "https://data.delijn.be/stops/301059"], ["http://irail.be/stations/NMBS/008871100", "https://tec.openplanner.team/stops/Cmaprov2"], ["https://data.delijn.be/stops/307715", "https://tec.openplanner.team/stops/Brsgera1"], ["http://irail.be/stations/NMBS/008865300", "https://tec.openplanner.team/stops/X804ala"], ["https://data.delijn.be/stops/504230", "https://tec.openplanner.team/stops/H4co158a"], ["http://irail.be/stations/NMBS/008881430", "https://tec.openplanner.team/stops/H1ha189a"], ["https://data.delijn.be/stops/300942", "https://mivb.openplanner.team/stops/3317"], ["http://irail.be/stations/NMBS/008883311", "https://data.delijn.be/stops/301417"], ["https://data.delijn.be/stops/308729", "https://tec.openplanner.team/stops/Bhakmkr1"], ["http://irail.be/stations/NMBS/008893054", "https://data.delijn.be/stops/202858"], ["https://data.delijn.be/stops/305436", "https://mivb.openplanner.team/stops/1627"], ["https://mivb.openplanner.team/stops/1379", "https://tec.openplanner.team/stops/Bwolrod1"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Cthalli3"], ["https://data.delijn.be/stops/305518", "https://mivb.openplanner.team/stops/7501"], ["https://mivb.openplanner.team/stops/3953", "https://tec.openplanner.team/stops/Bettlha2"], ["https://data.delijn.be/stops/302141", "https://tec.openplanner.team/stops/Bptecar1"], ["https://data.delijn.be/stops/303631", "https://mivb.openplanner.team/stops/6608G"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N551aha"], ["http://irail.be/stations/NMBS/008871217", "https://tec.openplanner.team/stops/Crolach2"], ["https://data.delijn.be/stops/301072", "https://mivb.openplanner.team/stops/1793"], ["http://irail.be/stations/NMBS/008200110", "https://tec.openplanner.team/stops/X626afb"], ["http://irail.be/stations/NMBS/008889045", "https://tec.openplanner.team/stops/H4ht173a"], ["http://irail.be/stations/NMBS/008866118", "https://tec.openplanner.team/stops/X601cca"], ["https://data.delijn.be/stops/509240", "https://tec.openplanner.team/stops/H4co107a"], ["https://data.delijn.be/stops/408853", "https://tec.openplanner.team/stops/LFChofv2"], ["https://data.delijn.be/stops/301419", "https://tec.openplanner.team/stops/H1en106b"], ["https://data.delijn.be/stops/400485", "https://tec.openplanner.team/stops/LRGcana1"], ["http://irail.be/stations/NMBS/008864337", "https://tec.openplanner.team/stops/X994aib"], ["https://data.delijn.be/stops/300855", "https://mivb.openplanner.team/stops/0521"], ["http://irail.be/stations/NMBS/007015440", "https://data.delijn.be/stops/505212"], ["https://data.delijn.be/stops/410319", "https://tec.openplanner.team/stops/LMalarg4"], ["https://data.delijn.be/stops/300983", "https://mivb.openplanner.team/stops/5868"], ["https://data.delijn.be/stops/301009", "https://mivb.openplanner.team/stops/1236"], ["http://irail.be/stations/NMBS/008841608", "https://tec.openplanner.team/stops/Lhrgall2"], ["http://irail.be/stations/NMBS/008829009", "https://data.delijn.be/stops/104246"], ["https://data.delijn.be/stops/408925", "https://tec.openplanner.team/stops/LTEnuro2"], ["http://irail.be/stations/NMBS/008892403", "https://data.delijn.be/stops/504863"], ["https://data.delijn.be/stops/308644", "https://tec.openplanner.team/stops/Boveklo2"], ["http://irail.be/stations/NMBS/008891645", "https://data.delijn.be/stops/501661"], ["http://irail.be/stations/NMBS/008863438", "https://tec.openplanner.team/stops/N506bkb"], ["http://irail.be/stations/NMBS/008843430", "https://tec.openplanner.team/stops/LBsfer-2"], ["https://data.delijn.be/stops/400483", "https://tec.openplanner.team/stops/LRGeg--2"], ["http://irail.be/stations/NMBS/008822848", "https://data.delijn.be/stops/107893"], ["https://data.delijn.be/stops/207796", "https://tec.openplanner.team/stops/H4ss153a"], ["http://irail.be/stations/NMBS/008812047", "https://mivb.openplanner.team/stops/2803"], ["https://data.delijn.be/stops/300987", "https://mivb.openplanner.team/stops/4558"], ["https://data.delijn.be/stops/304316", "https://mivb.openplanner.team/stops/9725"], ["https://data.delijn.be/stops/300983", "https://mivb.openplanner.team/stops/3407"], ["https://data.delijn.be/stops/408902", "https://tec.openplanner.team/stops/LFMveur2"], ["https://data.delijn.be/stops/308047", "https://tec.openplanner.team/stops/Bove4ko1"], ["http://irail.be/stations/NMBS/008863115", "https://tec.openplanner.team/stops/N501kha"], ["https://data.delijn.be/stops/305893", "https://mivb.openplanner.team/stops/9729"], ["https://data.delijn.be/stops/304600", "https://mivb.openplanner.team/stops/1383"], ["http://irail.be/stations/NMBS/008821600", "https://data.delijn.be/stops/107302"], ["https://data.delijn.be/stops/408856", "https://tec.openplanner.team/stops/LFChuis2"], ["http://irail.be/stations/NMBS/008895760", "https://data.delijn.be/stops/217007"], ["http://irail.be/stations/NMBS/008874583", "https://tec.openplanner.team/stops/N543cnb"], ["https://data.delijn.be/stops/301072", "https://mivb.openplanner.team/stops/4111"], ["https://data.delijn.be/stops/307086", "https://tec.openplanner.team/stops/Btiegoo1"], ["https://data.delijn.be/stops/410137", "https://tec.openplanner.team/stops/Lalexpa1"], ["https://data.delijn.be/stops/307024", "https://tec.openplanner.team/stops/H1en103a"], ["https://data.delijn.be/stops/408926", "https://tec.openplanner.team/stops/LTEzinn2"], ["http://irail.be/stations/NMBS/008881562", "https://tec.openplanner.team/stops/H1fr130b"], ["https://data.delijn.be/stops/400451", "https://tec.openplanner.team/stops/LBPauto1"], ["https://data.delijn.be/stops/407209", "https://tec.openplanner.team/stops/LHTcent2"], ["http://irail.be/stations/NMBS/008824158", "https://data.delijn.be/stops/102910"], ["https://data.delijn.be/stops/306003", "https://tec.openplanner.team/stops/Brsrabe2"], ["https://data.delijn.be/stops/301006", "https://mivb.openplanner.team/stops/5172F"], ["http://irail.be/stations/NMBS/008895430", "https://data.delijn.be/stops/207432"], ["http://irail.be/stations/NMBS/008895208", "https://data.delijn.be/stops/208081"], ["https://data.delijn.be/stops/405736", "https://tec.openplanner.team/stops/Lrcvill2"], ["http://irail.be/stations/NMBS/008822228", "https://data.delijn.be/stops/109507"], ["http://irail.be/stations/NMBS/008863867", "https://tec.openplanner.team/stops/N308agb"], ["http://irail.be/stations/NMBS/008821337", "https://data.delijn.be/stops/107208"], ["http://irail.be/stations/NMBS/008881570", "https://tec.openplanner.team/stops/H1fr127b"], ["https://data.delijn.be/stops/305234", "https://mivb.openplanner.team/stops/9607"], ["https://data.delijn.be/stops/304438", "https://tec.openplanner.team/stops/Brsgsan2"], ["https://data.delijn.be/stops/304774", "https://mivb.openplanner.team/stops/2218"], ["http://irail.be/stations/NMBS/008891629", "https://data.delijn.be/stops/501532"], ["http://irail.be/stations/NMBS/008871415", "https://tec.openplanner.team/stops/Canboha1"], ["http://irail.be/stations/NMBS/008812260", "https://data.delijn.be/stops/303618"], ["https://mivb.openplanner.team/stops/1250", "https://tec.openplanner.team/stops/Buccdho2"], ["http://irail.be/stations/NMBS/008846201", "https://tec.openplanner.team/stops/LVIastr1"], ["https://mivb.openplanner.team/stops/5480", "https://tec.openplanner.team/stops/Bettcha3"], ["https://mivb.openplanner.team/stops/1233", "https://tec.openplanner.team/stops/Bixlqll1"], ["https://data.delijn.be/stops/509532", "https://tec.openplanner.team/stops/H4wn126a"], ["http://irail.be/stations/NMBS/008831781", "https://data.delijn.be/stops/402119"], ["https://data.delijn.be/stops/301074", "https://mivb.openplanner.team/stops/3100"], ["http://irail.be/stations/NMBS/008814001", "https://mivb.openplanner.team/stops/2539"], ["https://data.delijn.be/stops/408911", "https://tec.openplanner.team/stops/LVu03--2"], ["https://data.delijn.be/stops/300974", "https://mivb.openplanner.team/stops/0250336"], ["https://mivb.openplanner.team/stops/2753", "https://tec.openplanner.team/stops/Baudwav2"], ["http://irail.be/stations/NMBS/008886074", "https://tec.openplanner.team/stops/H1gq153b"], ["https://data.delijn.be/stops/408839", "https://tec.openplanner.team/stops/LRmkerk1"], ["https://data.delijn.be/stops/406212", "https://tec.openplanner.team/stops/LSIvieu2"], ["https://data.delijn.be/stops/408843", "https://tec.openplanner.team/stops/LRmstat1"], ["https://data.delijn.be/stops/302804", "https://tec.openplanner.team/stops/Bkrabhu1"], ["http://irail.be/stations/NMBS/008821030", "https://data.delijn.be/stops/105315"], ["https://data.delijn.be/stops/301680", "https://tec.openplanner.team/stops/Bnetegl4"], ["http://irail.be/stations/NMBS/008893047", "https://data.delijn.be/stops/200603"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/Cmlgoff1"], ["http://irail.be/stations/NMBS/008892908", "https://data.delijn.be/stops/208739"], ["https://data.delijn.be/stops/303997", "https://tec.openplanner.team/stops/Blhurcl1"], ["https://data.delijn.be/stops/302875", "https://tec.openplanner.team/stops/Buccron1"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1ml109a"], ["https://data.delijn.be/stops/302120", "https://tec.openplanner.team/stops/Bpte1ma2"], ["http://irail.be/stations/NMBS/008833274", "https://data.delijn.be/stops/304427"], ["https://data.delijn.be/stops/305916", "https://mivb.openplanner.team/stops/5105"], ["https://data.delijn.be/stops/301034", "https://tec.openplanner.team/stops/Bsgihmo1"], ["https://data.delijn.be/stops/300740", "https://mivb.openplanner.team/stops/2225"], ["http://irail.be/stations/NMBS/008866654", "https://tec.openplanner.team/stops/X615bcb"], ["http://irail.be/stations/NMBS/008862018", "https://tec.openplanner.team/stops/X602aga"], ["https://data.delijn.be/stops/302929", "https://tec.openplanner.team/stops/Blhurcl1"], ["https://data.delijn.be/stops/209181", "https://tec.openplanner.team/stops/H5rx131a"], ["https://data.delijn.be/stops/308870", "https://mivb.openplanner.team/stops/5525"], ["https://data.delijn.be/stops/408882", "https://tec.openplanner.team/stops/LFCvoer1"], ["https://data.delijn.be/stops/509738", "https://tec.openplanner.team/stops/H4mo195a"], ["https://data.delijn.be/stops/308871", "https://mivb.openplanner.team/stops/1835"], ["https://data.delijn.be/stops/300773", "https://mivb.openplanner.team/stops/2375"], ["http://irail.be/stations/NMBS/008886058", "https://tec.openplanner.team/stops/H1ch101b"], ["http://irail.be/stations/NMBS/008864824", "https://tec.openplanner.team/stops/N211avb"], ["https://data.delijn.be/stops/300767", "https://mivb.openplanner.team/stops/3802"], ["https://data.delijn.be/stops/405700", "https://tec.openplanner.team/stops/Llgelis2"], ["http://irail.be/stations/NMBS/008883022", "https://tec.openplanner.team/stops/Bhenron2"], ["https://data.delijn.be/stops/408840", "https://tec.openplanner.team/stops/LRmkult2"], ["https://data.delijn.be/stops/401413", "https://mivb.openplanner.team/stops/4363"], ["http://irail.be/stations/NMBS/008811288", "https://data.delijn.be/stops/306341"], ["https://data.delijn.be/stops/407215", "https://tec.openplanner.team/stops/LHSfexh2"], ["https://data.delijn.be/stops/504317", "https://tec.openplanner.team/stops/H4mo208a"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/N525atb"], ["https://data.delijn.be/stops/504294", "https://tec.openplanner.team/stops/H4mo169a"], ["https://data.delijn.be/stops/300316", "https://tec.openplanner.team/stops/Bhmmcge2"], ["http://irail.be/stations/NMBS/008831765", "https://data.delijn.be/stops/402108"], ["http://irail.be/stations/NMBS/008871670", "https://tec.openplanner.team/stops/Clsferr1"], ["http://irail.be/stations/NMBS/008832615", "https://data.delijn.be/stops/406812"], ["https://data.delijn.be/stops/408920", "https://tec.openplanner.team/stops/LTEzinn1"], ["http://irail.be/stations/NMBS/008895638", "https://tec.openplanner.team/stops/Bspkker2"], ["https://data.delijn.be/stops/408952", "https://tec.openplanner.team/stops/LWAor--2"], ["https://data.delijn.be/stops/307169", "https://tec.openplanner.team/stops/Bhalath1"], ["https://data.delijn.be/stops/404687", "https://tec.openplanner.team/stops/LWinavi1"], ["https://data.delijn.be/stops/302875", "https://mivb.openplanner.team/stops/2148"], ["http://irail.be/stations/NMBS/008813045", "https://mivb.openplanner.team/stops/6308"], ["https://data.delijn.be/stops/300926", "https://mivb.openplanner.team/stops/4500"], ["https://mivb.openplanner.team/stops/0350740", "https://tec.openplanner.team/stops/Bsgicfo1"], ["https://data.delijn.be/stops/304933", "https://mivb.openplanner.team/stops/9751"], ["https://data.delijn.be/stops/504232", "https://tec.openplanner.team/stops/H4co105a"], ["https://data.delijn.be/stops/301015", "https://mivb.openplanner.team/stops/4104"], ["http://irail.be/stations/NMBS/008883121", "https://tec.openplanner.team/stops/H1ne142b"], ["http://irail.be/stations/NMBS/008861168", "https://tec.openplanner.team/stops/N534cbh"], ["https://data.delijn.be/stops/305558", "https://mivb.openplanner.team/stops/9600B"], ["https://data.delijn.be/stops/301166", "https://mivb.openplanner.team/stops/2117B"], ["http://irail.be/stations/NMBS/008832243", "https://data.delijn.be/stops/404176"], ["https://data.delijn.be/stops/300978", "https://mivb.openplanner.team/stops/6363"], ["https://data.delijn.be/stops/305336", "https://mivb.openplanner.team/stops/2854"], ["http://irail.be/stations/NMBS/008886009", "https://tec.openplanner.team/stops/H5at116d"], ["https://data.delijn.be/stops/303631", "https://mivb.openplanner.team/stops/2262"], ["https://data.delijn.be/stops/209192", "https://tec.openplanner.team/stops/H5rx136a"], ["http://irail.be/stations/NMBS/008822533", "https://data.delijn.be/stops/301871"], ["http://irail.be/stations/NMBS/008844347", "https://tec.openplanner.team/stops/LLrdigu2"], ["https://data.delijn.be/stops/402503", "https://tec.openplanner.team/stops/LWAbeec1"], ["http://irail.be/stations/NMBS/008849072", "https://tec.openplanner.team/stops/X761abb"], ["https://data.delijn.be/stops/408890", "https://tec.openplanner.team/stops/LFMkrut4"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2le176a"], ["https://data.delijn.be/stops/301113", "https://mivb.openplanner.team/stops/1965"], ["https://data.delijn.be/stops/304447", "https://tec.openplanner.team/stops/Brsgleq1"], ["https://data.delijn.be/stops/408968", "https://tec.openplanner.team/stops/LWAwegg1"], ["http://irail.be/stations/NMBS/008821196", "https://data.delijn.be/stops/104405"], ["https://data.delijn.be/stops/304446", "https://tec.openplanner.team/stops/Brsgleq2"], ["https://data.delijn.be/stops/302429", "https://tec.openplanner.team/stops/Bjodcar2"], ["https://data.delijn.be/stops/305311", "https://mivb.openplanner.team/stops/9787"], ["https://data.delijn.be/stops/509740", "https://tec.openplanner.team/stops/H4mo195a"], ["https://data.delijn.be/stops/408802", "https://tec.openplanner.team/stops/LVItcm-1"], ["https://data.delijn.be/stops/300839", "https://mivb.openplanner.team/stops/6482"], ["https://data.delijn.be/stops/307197", "https://tec.openplanner.team/stops/Bhaleur2"], ["https://data.delijn.be/stops/304444", "https://tec.openplanner.team/stops/Bblapri1"], ["https://data.delijn.be/stops/305144", "https://tec.openplanner.team/stops/Bmrqpla2"], ["http://irail.be/stations/NMBS/008874716", "https://tec.openplanner.team/stops/Cauushm1"], ["http://irail.be/stations/NMBS/008861549", "https://tec.openplanner.team/stops/Bmsgstj2"], ["http://irail.be/stations/NMBS/008843331", "https://tec.openplanner.team/stops/LAMgare2"], ["https://data.delijn.be/stops/408828", "https://tec.openplanner.team/stops/LVIferm2"], ["https://data.delijn.be/stops/306311", "https://mivb.openplanner.team/stops/5724"], ["https://data.delijn.be/stops/302871", "https://mivb.openplanner.team/stops/5032B"], ["https://data.delijn.be/stops/300579", "https://mivb.openplanner.team/stops/3112"], ["https://data.delijn.be/stops/209180", "https://tec.openplanner.team/stops/H5el101a"], ["https://data.delijn.be/stops/509317", "https://tec.openplanner.team/stops/H4mo207b"], ["http://irail.be/stations/NMBS/007015440", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/408951", "https://tec.openplanner.team/stops/LWApr%C3%A9s3"], ["https://data.delijn.be/stops/304096", "https://tec.openplanner.team/stops/Bovetwe2"], ["https://data.delijn.be/stops/504310", "https://tec.openplanner.team/stops/H4mo160a"], ["http://irail.be/stations/NMBS/008871670", "https://tec.openplanner.team/stops/H1ls108b"], ["https://data.delijn.be/stops/301156", "https://mivb.openplanner.team/stops/2757C"], ["https://data.delijn.be/stops/304216", "https://mivb.openplanner.team/stops/7621"], ["https://data.delijn.be/stops/306400", "https://mivb.openplanner.team/stops/1242"], ["http://irail.be/stations/NMBS/008891165", "https://data.delijn.be/stops/209651"], ["http://irail.be/stations/NMBS/008871332", "https://tec.openplanner.team/stops/Cobhaut2"], ["http://irail.be/stations/NMBS/008833605", "https://data.delijn.be/stops/405351"], ["https://data.delijn.be/stops/400683", "https://tec.openplanner.team/stops/LHgpost1"], ["http://irail.be/stations/NMBS/008811437", "https://data.delijn.be/stops/301154"], ["https://data.delijn.be/stops/301021", "https://mivb.openplanner.team/stops/1095"], ["http://irail.be/stations/NMBS/008871365", "https://tec.openplanner.team/stops/Cgpmoul2"], ["https://data.delijn.be/stops/208416", "https://tec.openplanner.team/stops/H4rs118b"], ["https://data.delijn.be/stops/300861", "https://mivb.openplanner.team/stops/4254B"], ["https://mivb.openplanner.team/stops/5421", "https://tec.openplanner.team/stops/Bwbfeta2"], ["http://irail.be/stations/NMBS/008844057", "https://tec.openplanner.team/stops/Lvehv--4"], ["http://irail.be/stations/NMBS/008811254", "https://data.delijn.be/stops/302726"], ["http://irail.be/stations/NMBS/008871688", "https://tec.openplanner.team/stops/H1fv102a"], ["http://irail.be/stations/NMBS/008866845", "https://tec.openplanner.team/stops/X641ahb"], ["https://data.delijn.be/stops/301685", "https://tec.openplanner.team/stops/Bnetrec1"], ["http://irail.be/stations/NMBS/008815016", "https://mivb.openplanner.team/stops/8773"], ["https://data.delijn.be/stops/301159", "https://mivb.openplanner.team/stops/5921B"], ["https://data.delijn.be/stops/207763", "https://tec.openplanner.team/stops/H5rx145a"], ["http://irail.be/stations/NMBS/008814415", "https://data.delijn.be/stops/303323"], ["http://irail.be/stations/NMBS/008894821", "https://data.delijn.be/stops/204336"], ["https://data.delijn.be/stops/302140", "https://tec.openplanner.team/stops/Bptecal2"], ["http://irail.be/stations/NMBS/008892403", "https://data.delijn.be/stops/508344"], ["https://data.delijn.be/stops/304640", "https://mivb.openplanner.team/stops/9679"], ["http://irail.be/stations/NMBS/008400426", "https://data.delijn.be/stops/406211"], ["http://irail.be/stations/NMBS/008719203", "https://tec.openplanner.team/stops/X696aea"], ["https://data.delijn.be/stops/408883", "https://tec.openplanner.team/stops/LFCkett2"], ["http://irail.be/stations/NMBS/008891611", "https://data.delijn.be/stops/501532"], ["http://irail.be/stations/NMBS/008843224", "https://tec.openplanner.team/stops/Lpocent1"], ["https://data.delijn.be/stops/306284", "https://mivb.openplanner.team/stops/9946"], ["https://data.delijn.be/stops/305466", "https://mivb.openplanner.team/stops/0340341"], ["http://irail.be/stations/NMBS/008811247", "https://data.delijn.be/stops/305581"], ["http://irail.be/stations/NMBS/008832243", "https://data.delijn.be/stops/404164"], ["http://irail.be/stations/NMBS/008893070", "https://data.delijn.be/stops/208698"], ["http://irail.be/stations/NMBS/008875002", "https://tec.openplanner.team/stops/N134aea"], ["https://data.delijn.be/stops/301059", "https://mivb.openplanner.team/stops/4254B"], ["https://data.delijn.be/stops/304038", "https://tec.openplanner.team/stops/Boveklo1"], ["http://irail.be/stations/NMBS/008728687", "https://tec.openplanner.team/stops/H4ep129a"], ["https://data.delijn.be/stops/300982", "https://mivb.openplanner.team/stops/3408"], ["http://irail.be/stations/NMBS/008833001", "https://data.delijn.be/stops/302985"], ["http://irail.be/stations/NMBS/008896735", "https://data.delijn.be/stops/505166"], ["https://data.delijn.be/stops/302888", "https://tec.openplanner.team/stops/Bhevhha2"], ["https://data.delijn.be/stops/300785", "https://mivb.openplanner.team/stops/7700105"], ["http://irail.be/stations/NMBS/008865128", "https://tec.openplanner.team/stops/X725awa"], ["http://irail.be/stations/NMBS/008881406", "https://tec.openplanner.team/stops/H1ob341a"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N219aca"], ["https://data.delijn.be/stops/306647", "https://mivb.openplanner.team/stops/0350740"], ["http://irail.be/stations/NMBS/008891553", "https://data.delijn.be/stops/501461"], ["https://data.delijn.be/stops/408492", "https://tec.openplanner.team/stops/LWAvisi1"], ["http://irail.be/stations/NMBS/008821824", "https://data.delijn.be/stops/108161"], ["https://data.delijn.be/stops/304089", "https://tec.openplanner.team/stops/Bovesog1"], ["http://irail.be/stations/NMBS/008400219", "https://tec.openplanner.team/stops/LLAcalv1"], ["https://data.delijn.be/stops/300728", "https://tec.openplanner.team/stops/Bbeaech2"], ["http://irail.be/stations/NMBS/008811437", "https://mivb.openplanner.team/stops/9059"], ["https://data.delijn.be/stops/508775", "https://tec.openplanner.team/stops/H4eh101b"], ["https://data.delijn.be/stops/301014", "https://mivb.openplanner.team/stops/4003G"], ["https://data.delijn.be/stops/305429", "https://mivb.openplanner.team/stops/1620B"], ["https://mivb.openplanner.team/stops/4075", "https://tec.openplanner.team/stops/Buccdst1"], ["http://irail.be/stations/NMBS/008843224", "https://tec.openplanner.team/stops/Lfhdone1"], ["http://irail.be/stations/NMBS/008811437", "https://mivb.openplanner.team/stops/4319"], ["http://irail.be/stations/NMBS/008841467", "https://tec.openplanner.team/stops/LNveg--1"], ["http://irail.be/stations/NMBS/008891140", "https://data.delijn.be/stops/200886"], ["https://data.delijn.be/stops/306117", "https://mivb.openplanner.team/stops/1488"], ["https://data.delijn.be/stops/205982", "https://tec.openplanner.team/stops/H4wt159a"], ["http://irail.be/stations/NMBS/008863354", "https://tec.openplanner.team/stops/N501kga"], ["http://irail.be/stations/NMBS/008821634", "https://data.delijn.be/stops/106585"], ["https://data.delijn.be/stops/408800", "https://tec.openplanner.team/stops/LVIacac1"], ["https://data.delijn.be/stops/504296", "https://tec.openplanner.team/stops/H4mo161a"], ["http://irail.be/stations/NMBS/008889011", "https://tec.openplanner.team/stops/H4rx141b"], ["https://data.delijn.be/stops/300751", "https://mivb.openplanner.team/stops/7650210"], ["https://data.delijn.be/stops/304216", "https://mivb.openplanner.team/stops/6862"], ["https://data.delijn.be/stops/307200", "https://tec.openplanner.team/stops/Bhalker1"], ["http://irail.be/stations/NMBS/008814340", "https://data.delijn.be/stops/303282"], ["https://data.delijn.be/stops/301042", "https://mivb.openplanner.team/stops/1237"], ["http://irail.be/stations/NMBS/008893443", "https://data.delijn.be/stops/206354"], ["https://data.delijn.be/stops/300962", "https://mivb.openplanner.team/stops/2046"], ["http://irail.be/stations/NMBS/008895646", "https://tec.openplanner.team/stops/Bspkdon2"], ["https://data.delijn.be/stops/300933", "https://mivb.openplanner.team/stops/3304"], ["https://data.delijn.be/stops/407208", "https://tec.openplanner.team/stops/LHTmc--1"], ["https://data.delijn.be/stops/408979", "https://tec.openplanner.team/stops/LWAcost2"], ["https://data.delijn.be/stops/205982", "https://tec.openplanner.team/stops/H5rx112b"], ["https://data.delijn.be/stops/305229", "https://mivb.openplanner.team/stops/9607"], ["https://data.delijn.be/stops/304929", "https://mivb.openplanner.team/stops/9784B"], ["https://data.delijn.be/stops/504294", "https://tec.openplanner.team/stops/H4mo138a"], ["https://data.delijn.be/stops/300980", "https://mivb.openplanner.team/stops/6021"], ["https://data.delijn.be/stops/308649", "https://mivb.openplanner.team/stops/9600B"], ["http://irail.be/stations/NMBS/008871308", "https://tec.openplanner.team/stops/Cpccoss1"], ["https://data.delijn.be/stops/300950", "https://mivb.openplanner.team/stops/1314"], ["https://data.delijn.be/stops/405739", "https://tec.openplanner.team/stops/Lrc594-1"], ["https://data.delijn.be/stops/301110", "https://tec.openplanner.team/stops/Buccbou1"], ["http://irail.be/stations/NMBS/008873239", "https://tec.openplanner.team/stops/N118bba"], ["http://irail.be/stations/NMBS/008841467", "https://tec.openplanner.team/stops/LMObouh1"], ["https://data.delijn.be/stops/300749", "https://mivb.openplanner.team/stops/3234"], ["https://data.delijn.be/stops/401402", "https://mivb.openplanner.team/stops/3317"], ["https://data.delijn.be/stops/307637", "https://mivb.openplanner.team/stops/1959"], ["https://data.delijn.be/stops/300786", "https://mivb.openplanner.team/stops/1482"], ["http://irail.be/stations/NMBS/008813037", "https://mivb.openplanner.team/stops/4323"], ["http://irail.be/stations/NMBS/008896412", "https://data.delijn.be/stops/504239"], ["http://irail.be/stations/NMBS/008841731", "https://tec.openplanner.team/stops/LGLobor1"], ["https://data.delijn.be/stops/300806", "https://mivb.openplanner.team/stops/6858C"], ["https://data.delijn.be/stops/302808", "https://mivb.openplanner.team/stops/1661"], ["https://mivb.openplanner.team/stops/2959", "https://tec.openplanner.team/stops/Bsgimca1"], ["http://irail.be/stations/NMBS/008812021", "https://mivb.openplanner.team/stops/8794"], ["https://data.delijn.be/stops/304877", "https://mivb.openplanner.team/stops/9575"], ["https://data.delijn.be/stops/302892", "https://tec.openplanner.team/stops/Bhevjal1"], ["https://data.delijn.be/stops/300338", "https://tec.openplanner.team/stops/Balswin2"], ["http://irail.be/stations/NMBS/008886561", "https://tec.openplanner.team/stops/H5is168a"], ["http://irail.be/stations/NMBS/008881166", "https://tec.openplanner.team/stops/H1ju120c"], ["https://data.delijn.be/stops/301067", "https://mivb.openplanner.team/stops/3257F"], ["http://irail.be/stations/NMBS/008894433", "https://data.delijn.be/stops/204070"], ["https://data.delijn.be/stops/303652", "https://tec.openplanner.team/stops/Bovehst1"], ["https://data.delijn.be/stops/404665", "https://tec.openplanner.team/stops/LPAbour1"], ["https://data.delijn.be/stops/304722", "https://mivb.openplanner.team/stops/5866"], ["http://irail.be/stations/NMBS/008893120", "https://data.delijn.be/stops/201223"], ["https://data.delijn.be/stops/306905", "https://tec.openplanner.team/stops/Bgoekaz1"], ["http://irail.be/stations/NMBS/008812047", "https://mivb.openplanner.team/stops/1009"], ["http://irail.be/stations/NMBS/008844545", "https://tec.openplanner.team/stops/LDOchev1"], ["https://data.delijn.be/stops/504304", "https://tec.openplanner.team/stops/H4pl117b"], ["http://irail.be/stations/NMBS/008824224", "https://data.delijn.be/stops/105977"], ["http://irail.be/stations/NMBS/008200101", "https://tec.openplanner.team/stops/LaHzoll*"], ["https://data.delijn.be/stops/408880", "https://tec.openplanner.team/stops/LDpzol-2"], ["http://irail.be/stations/NMBS/008864949", "https://tec.openplanner.team/stops/N585alb"], ["http://irail.be/stations/NMBS/008811437", "https://tec.openplanner.team/stops/Bwbfgar2"], ["https://data.delijn.be/stops/509383", "https://tec.openplanner.team/stops/H4pl115a"], ["https://data.delijn.be/stops/408854", "https://tec.openplanner.team/stops/LFCkerk1"], ["https://data.delijn.be/stops/306003", "https://tec.openplanner.team/stops/Brsrpri1"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2hp123c"], ["https://data.delijn.be/stops/408903", "https://tec.openplanner.team/stops/LFPkape3"], ["https://data.delijn.be/stops/405705", "https://tec.openplanner.team/stops/LlgR-Fr3"], ["https://data.delijn.be/stops/407204", "https://tec.openplanner.team/stops/LHTcent2"], ["http://irail.be/stations/NMBS/008821402", "https://data.delijn.be/stops/102193"], ["http://irail.be/stations/NMBS/008885068", "https://tec.openplanner.team/stops/H4fr145a"], ["https://data.delijn.be/stops/302382", "https://tec.openplanner.team/stops/Bwavnep2"], ["https://mivb.openplanner.team/stops/1250", "https://tec.openplanner.team/stops/Buccobs2"], ["http://irail.be/stations/NMBS/008812120", "https://data.delijn.be/stops/302153"], ["http://irail.be/stations/NMBS/008861333", "https://tec.openplanner.team/stops/N531apa"], ["https://data.delijn.be/stops/208614", "https://tec.openplanner.team/stops/H1bd101a"], ["http://irail.be/stations/NMBS/008882248", "https://tec.openplanner.team/stops/H2ca105a"], ["http://irail.be/stations/NMBS/008881505", "https://tec.openplanner.team/stops/H1qp150b"], ["http://irail.be/stations/NMBS/008811775", "https://tec.openplanner.team/stops/Bpecsta1"], ["https://mivb.openplanner.team/stops/0220333", "https://tec.openplanner.team/stops/Baudsju1"], ["https://data.delijn.be/stops/300992", "https://mivb.openplanner.team/stops/2246F"], ["https://data.delijn.be/stops/306115", "https://mivb.openplanner.team/stops/2259F"], ["http://irail.be/stations/NMBS/008886553", "https://tec.openplanner.team/stops/H1le121b"], ["https://data.delijn.be/stops/304548", "https://mivb.openplanner.team/stops/9679"], ["https://mivb.openplanner.team/stops/1918", "https://tec.openplanner.team/stops/Buccchu1"], ["https://data.delijn.be/stops/300344", "https://tec.openplanner.team/stops/Bbrlpar1"], ["https://data.delijn.be/stops/300976", "https://mivb.openplanner.team/stops/6210"], ["https://data.delijn.be/stops/300761", "https://mivb.openplanner.team/stops/8641"], ["http://irail.be/stations/NMBS/008861531", "https://tec.openplanner.team/stops/Bchacen1"], ["https://data.delijn.be/stops/301052", "https://mivb.openplanner.team/stops/4253"], ["https://data.delijn.be/stops/300958", "https://tec.openplanner.team/stops/Baudulb1"], ["https://data.delijn.be/stops/307205", "https://tec.openplanner.team/stops/Bcbqcim1"], ["http://irail.be/stations/NMBS/008832565", "https://data.delijn.be/stops/409421"], ["https://data.delijn.be/stops/410144", "https://tec.openplanner.team/stops/Llgbois1"], ["http://irail.be/stations/NMBS/008811916", "https://mivb.openplanner.team/stops/3219"], ["https://data.delijn.be/stops/219015", "https://tec.openplanner.team/stops/H4ss157a"], ["https://data.delijn.be/stops/301085", "https://mivb.openplanner.team/stops/1584"], ["http://irail.be/stations/NMBS/008895737", "https://data.delijn.be/stops/207849"], ["https://data.delijn.be/stops/308818", "https://mivb.openplanner.team/stops/1901"], ["https://data.delijn.be/stops/306968", "https://mivb.openplanner.team/stops/2810"], ["https://data.delijn.be/stops/302440", "https://tec.openplanner.team/stops/Bzluegl2"], ["http://irail.be/stations/NMBS/008812021", "https://mivb.openplanner.team/stops/6171"], ["https://data.delijn.be/stops/304205", "https://tec.openplanner.team/stops/Brsrfen2"], ["http://irail.be/stations/NMBS/008864469", "https://tec.openplanner.team/stops/X982bld"], ["https://data.delijn.be/stops/404653", "https://tec.openplanner.team/stops/LVSbleu2"], ["http://irail.be/stations/NMBS/008811437", "https://mivb.openplanner.team/stops/5420F"], ["https://data.delijn.be/stops/301943", "https://mivb.openplanner.team/stops/4152"], ["https://data.delijn.be/stops/504318", "https://tec.openplanner.team/stops/H4mo161a"], ["https://data.delijn.be/stops/308854", "https://mivb.openplanner.team/stops/5403"], ["https://data.delijn.be/stops/307149", "https://tec.openplanner.team/stops/Bhaless1"], ["http://irail.be/stations/NMBS/008400219", "https://data.delijn.be/stops/408827"], ["http://irail.be/stations/NMBS/008881463", "https://tec.openplanner.team/stops/H2sb223b"], ["http://irail.be/stations/NMBS/008874724", "https://tec.openplanner.team/stops/N534aba"], ["http://irail.be/stations/NMBS/008895877", "https://data.delijn.be/stops/207161"], ["https://data.delijn.be/stops/305890", "https://mivb.openplanner.team/stops/9608"], ["https://mivb.openplanner.team/stops/2718", "https://tec.openplanner.team/stops/Buccpor2"], ["https://data.delijn.be/stops/301687", "https://tec.openplanner.team/stops/Bnetrbr1"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/500007"], ["https://data.delijn.be/stops/305915", "https://mivb.openplanner.team/stops/5174F"], ["http://irail.be/stations/NMBS/008772319", "https://tec.openplanner.team/stops/X611aea"], ["https://data.delijn.be/stops/303582", "https://mivb.openplanner.team/stops/9728"], ["https://data.delijn.be/stops/408894", "https://tec.openplanner.team/stops/LWHkape2"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/109189"], ["http://irail.be/stations/NMBS/008844321", "https://tec.openplanner.team/stops/LTHcime1"], ["http://irail.be/stations/NMBS/008811171", "https://mivb.openplanner.team/stops/6214"], ["https://data.delijn.be/stops/410341", "https://tec.openplanner.team/stops/LOdcris2"], ["http://irail.be/stations/NMBS/008895000", "https://data.delijn.be/stops/206902"], ["https://data.delijn.be/stops/301055", "https://mivb.openplanner.team/stops/6607"], ["http://irail.be/stations/NMBS/008896370", "https://data.delijn.be/stops/509755"], ["http://irail.be/stations/NMBS/008874054", "https://tec.openplanner.team/stops/Ccicent4"], ["http://irail.be/stations/NMBS/008822608", "https://data.delijn.be/stops/104574"], ["http://irail.be/stations/NMBS/008866407", "https://tec.openplanner.team/stops/X608aaa"], ["https://data.delijn.be/stops/307219", "https://tec.openplanner.team/stops/Bhaleur1"], ["http://irail.be/stations/NMBS/008871811", "https://tec.openplanner.team/stops/Cthvbas3"], ["https://data.delijn.be/stops/307692", "https://tec.openplanner.team/stops/Brsgter1"], ["https://data.delijn.be/stops/400455", "https://tec.openplanner.team/stops/LEBmoul1"], ["https://data.delijn.be/stops/304463", "https://tec.openplanner.team/stops/Brsgsan1"], ["http://irail.be/stations/NMBS/008896305", "https://data.delijn.be/stops/503565"], ["https://data.delijn.be/stops/301121", "https://mivb.openplanner.team/stops/2763"], ["https://data.delijn.be/stops/302854", "https://tec.openplanner.team/stops/Bwaakap1"], ["https://mivb.openplanner.team/stops/4804B", "https://tec.openplanner.team/stops/Buccmer2"], ["http://irail.be/stations/NMBS/008895760", "https://data.delijn.be/stops/207988"], ["http://irail.be/stations/NMBS/008871381", "https://tec.openplanner.team/stops/H2go114b"], ["http://irail.be/stations/NMBS/008895000", "https://data.delijn.be/stops/207265"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N349aca"], ["http://irail.be/stations/NMBS/008831112", "https://data.delijn.be/stops/401521"], ["https://data.delijn.be/stops/206784", "https://tec.openplanner.team/stops/H1gy116a"], ["https://data.delijn.be/stops/300772", "https://mivb.openplanner.team/stops/8671"], ["http://irail.be/stations/NMBS/008833001", "https://data.delijn.be/stops/303130"], ["https://data.delijn.be/stops/302400", "https://mivb.openplanner.team/stops/7670208"], ["https://data.delijn.be/stops/209409", "https://tec.openplanner.team/stops/H5rx140b"], ["https://data.delijn.be/stops/307697", "https://tec.openplanner.team/stops/Buccpes1"], ["http://irail.be/stations/NMBS/008821543", "https://data.delijn.be/stops/105834"], ["http://irail.be/stations/NMBS/008844008", "https://tec.openplanner.team/stops/Lveyser2"], ["https://data.delijn.be/stops/300804", "https://mivb.openplanner.team/stops/5297B"], ["https://data.delijn.be/stops/305228", "https://mivb.openplanner.team/stops/9632"], ["https://data.delijn.be/stops/300832", "https://mivb.openplanner.team/stops/6122"], ["https://data.delijn.be/stops/509639", "https://tec.openplanner.team/stops/H4co149b"], ["http://irail.be/stations/NMBS/008872520", "https://tec.openplanner.team/stops/N584bbb"], ["https://data.delijn.be/stops/504322", "https://tec.openplanner.team/stops/H4mo207b"], ["http://irail.be/stations/NMBS/008814175", "https://tec.openplanner.team/stops/Brsgtou2"], ["https://data.delijn.be/stops/404655", "https://tec.openplanner.team/stops/LJUfort2"], ["https://data.delijn.be/stops/405459", "https://tec.openplanner.team/stops/LWHmath1"], ["https://data.delijn.be/stops/301030", "https://mivb.openplanner.team/stops/6428"], ["https://data.delijn.be/stops/307716", "https://tec.openplanner.team/stops/Brsgepr1"], ["http://irail.be/stations/NMBS/008811544", "https://tec.openplanner.team/stops/Brixble5"], ["http://irail.be/stations/NMBS/008811197", "https://mivb.openplanner.team/stops/0070621"], ["https://data.delijn.be/stops/305500", "https://mivb.openplanner.team/stops/1552"], ["https://data.delijn.be/stops/301066", "https://mivb.openplanner.team/stops/3257F"], ["http://irail.be/stations/NMBS/008200136", "https://tec.openplanner.team/stops/X764afb"], ["https://data.delijn.be/stops/300370", "https://tec.openplanner.team/stops/Bwaucig1"], ["https://data.delijn.be/stops/404843", "https://tec.openplanner.team/stops/LEBeg--2"], ["https://data.delijn.be/stops/301040", "https://mivb.openplanner.team/stops/5089"], ["http://irail.be/stations/NMBS/008874559", "https://tec.openplanner.team/stops/Cfaamio1"], ["http://irail.be/stations/NMBS/008866845", "https://tec.openplanner.team/stops/X673aaa"], ["https://data.delijn.be/stops/410138", "https://tec.openplanner.team/stops/Lrcprin6"], ["https://data.delijn.be/stops/400469", "https://tec.openplanner.team/stops/LEMfort1"], ["https://data.delijn.be/stops/305348", "https://tec.openplanner.team/stops/Bbgeegl1"], ["https://data.delijn.be/stops/304207", "https://tec.openplanner.team/stops/Brsrber2"], ["https://data.delijn.be/stops/302437", "https://tec.openplanner.team/stops/Bjodpvi2"], ["https://data.delijn.be/stops/305910", "https://mivb.openplanner.team/stops/9701"], ["https://data.delijn.be/stops/305424", "https://mivb.openplanner.team/stops/5528F"]] \ No newline at end of file diff --git a/src/analytics/footpaths/delijn_pairs.json b/src/analytics/footpaths/delijn_pairs.json new file mode 100644 index 00000000..2af645ba --- /dev/null +++ b/src/analytics/footpaths/delijn_pairs.json @@ -0,0 +1 @@ +[["https://data.delijn.be/stops/500948", "https://data.delijn.be/stops/504205"], ["https://data.delijn.be/stops/206872", "https://data.delijn.be/stops/209364"], ["https://data.delijn.be/stops/200187", "https://data.delijn.be/stops/201198"], ["https://data.delijn.be/stops/403028", "https://data.delijn.be/stops/403569"], ["https://data.delijn.be/stops/504244", "https://data.delijn.be/stops/504442"], ["https://data.delijn.be/stops/408000", "https://data.delijn.be/stops/408429"], ["https://data.delijn.be/stops/504828", "https://data.delijn.be/stops/509455"], ["https://data.delijn.be/stops/301342", "https://data.delijn.be/stops/301343"], ["https://data.delijn.be/stops/207052", "https://data.delijn.be/stops/207520"], ["https://data.delijn.be/stops/203790", "https://data.delijn.be/stops/203791"], ["https://data.delijn.be/stops/402539", "https://data.delijn.be/stops/410264"], ["https://data.delijn.be/stops/302202", "https://data.delijn.be/stops/304165"], ["https://data.delijn.be/stops/107425", "https://data.delijn.be/stops/107429"], ["https://data.delijn.be/stops/306023", "https://data.delijn.be/stops/307684"], ["https://data.delijn.be/stops/103287", "https://data.delijn.be/stops/103288"], ["https://data.delijn.be/stops/306107", "https://data.delijn.be/stops/306110"], ["https://data.delijn.be/stops/207675", "https://data.delijn.be/stops/209142"], ["https://data.delijn.be/stops/200770", "https://data.delijn.be/stops/200773"], ["https://data.delijn.be/stops/108607", "https://data.delijn.be/stops/302939"], ["https://data.delijn.be/stops/403158", "https://data.delijn.be/stops/403159"], ["https://data.delijn.be/stops/201467", "https://data.delijn.be/stops/202775"], ["https://data.delijn.be/stops/502012", "https://data.delijn.be/stops/502246"], ["https://data.delijn.be/stops/201724", "https://data.delijn.be/stops/201725"], ["https://data.delijn.be/stops/407166", "https://data.delijn.be/stops/407171"], ["https://data.delijn.be/stops/208163", "https://data.delijn.be/stops/209169"], ["https://data.delijn.be/stops/507818", "https://data.delijn.be/stops/509789"], ["https://data.delijn.be/stops/304946", "https://data.delijn.be/stops/304948"], ["https://data.delijn.be/stops/404513", "https://data.delijn.be/stops/408981"], ["https://data.delijn.be/stops/106693", "https://data.delijn.be/stops/109390"], ["https://data.delijn.be/stops/504224", "https://data.delijn.be/stops/509627"], ["https://data.delijn.be/stops/401295", "https://data.delijn.be/stops/401315"], ["https://data.delijn.be/stops/301096", "https://data.delijn.be/stops/301097"], ["https://data.delijn.be/stops/302375", "https://data.delijn.be/stops/302381"], ["https://data.delijn.be/stops/204172", "https://data.delijn.be/stops/205593"], ["https://data.delijn.be/stops/200864", "https://data.delijn.be/stops/210291"], ["https://data.delijn.be/stops/208227", "https://data.delijn.be/stops/208233"], ["https://data.delijn.be/stops/304128", "https://data.delijn.be/stops/307580"], ["https://data.delijn.be/stops/503948", "https://data.delijn.be/stops/508948"], ["https://data.delijn.be/stops/106187", "https://data.delijn.be/stops/109560"], ["https://data.delijn.be/stops/307295", "https://data.delijn.be/stops/308927"], ["https://data.delijn.be/stops/101692", "https://data.delijn.be/stops/103693"], ["https://data.delijn.be/stops/509044", "https://data.delijn.be/stops/509650"], ["https://data.delijn.be/stops/406351", "https://data.delijn.be/stops/406352"], ["https://data.delijn.be/stops/400726", "https://data.delijn.be/stops/400732"], ["https://data.delijn.be/stops/406652", "https://data.delijn.be/stops/406656"], ["https://data.delijn.be/stops/300388", "https://data.delijn.be/stops/306089"], ["https://data.delijn.be/stops/210092", "https://data.delijn.be/stops/211093"], ["https://data.delijn.be/stops/207014", "https://data.delijn.be/stops/207020"], ["https://data.delijn.be/stops/204223", "https://data.delijn.be/stops/205222"], ["https://data.delijn.be/stops/404935", "https://data.delijn.be/stops/404966"], ["https://data.delijn.be/stops/206028", "https://data.delijn.be/stops/207871"], ["https://data.delijn.be/stops/201638", "https://data.delijn.be/stops/201639"], ["https://data.delijn.be/stops/105827", "https://data.delijn.be/stops/109749"], ["https://data.delijn.be/stops/502087", "https://data.delijn.be/stops/502729"], ["https://data.delijn.be/stops/405794", "https://data.delijn.be/stops/405795"], ["https://data.delijn.be/stops/501063", "https://data.delijn.be/stops/501485"], ["https://data.delijn.be/stops/409116", "https://data.delijn.be/stops/410049"], ["https://data.delijn.be/stops/206914", "https://data.delijn.be/stops/207912"], ["https://data.delijn.be/stops/504076", "https://data.delijn.be/stops/509329"], ["https://data.delijn.be/stops/500555", "https://data.delijn.be/stops/502210"], ["https://data.delijn.be/stops/107612", "https://data.delijn.be/stops/109719"], ["https://data.delijn.be/stops/201137", "https://data.delijn.be/stops/203134"], ["https://data.delijn.be/stops/405243", "https://data.delijn.be/stops/405249"], ["https://data.delijn.be/stops/303416", "https://data.delijn.be/stops/308066"], ["https://data.delijn.be/stops/503038", "https://data.delijn.be/stops/503456"], ["https://data.delijn.be/stops/209548", "https://data.delijn.be/stops/209611"], ["https://data.delijn.be/stops/504941", "https://data.delijn.be/stops/508808"], ["https://data.delijn.be/stops/200810", "https://data.delijn.be/stops/202052"], ["https://data.delijn.be/stops/407231", "https://data.delijn.be/stops/407232"], ["https://data.delijn.be/stops/205395", "https://data.delijn.be/stops/205396"], ["https://data.delijn.be/stops/400177", "https://data.delijn.be/stops/405297"], ["https://data.delijn.be/stops/105292", "https://data.delijn.be/stops/109880"], ["https://data.delijn.be/stops/400219", "https://data.delijn.be/stops/400226"], ["https://data.delijn.be/stops/108918", "https://data.delijn.be/stops/109427"], ["https://data.delijn.be/stops/103482", "https://data.delijn.be/stops/103484"], ["https://data.delijn.be/stops/507328", "https://data.delijn.be/stops/507330"], ["https://data.delijn.be/stops/400730", "https://data.delijn.be/stops/406611"], ["https://data.delijn.be/stops/102091", "https://data.delijn.be/stops/106811"], ["https://data.delijn.be/stops/301049", "https://data.delijn.be/stops/301063"], ["https://data.delijn.be/stops/104043", "https://data.delijn.be/stops/108406"], ["https://data.delijn.be/stops/502191", "https://data.delijn.be/stops/508338"], ["https://data.delijn.be/stops/304364", "https://data.delijn.be/stops/307097"], ["https://data.delijn.be/stops/108371", "https://data.delijn.be/stops/108459"], ["https://data.delijn.be/stops/108408", "https://data.delijn.be/stops/108409"], ["https://data.delijn.be/stops/106839", "https://data.delijn.be/stops/106840"], ["https://data.delijn.be/stops/102765", "https://data.delijn.be/stops/102790"], ["https://data.delijn.be/stops/106851", "https://data.delijn.be/stops/106984"], ["https://data.delijn.be/stops/506218", "https://data.delijn.be/stops/506422"], ["https://data.delijn.be/stops/200492", "https://data.delijn.be/stops/208939"], ["https://data.delijn.be/stops/507738", "https://data.delijn.be/stops/508211"], ["https://data.delijn.be/stops/308213", "https://data.delijn.be/stops/308244"], ["https://data.delijn.be/stops/500941", "https://data.delijn.be/stops/508897"], ["https://data.delijn.be/stops/505843", "https://data.delijn.be/stops/508788"], ["https://data.delijn.be/stops/302958", "https://data.delijn.be/stops/302965"], ["https://data.delijn.be/stops/208224", "https://data.delijn.be/stops/209773"], ["https://data.delijn.be/stops/200570", "https://data.delijn.be/stops/200960"], ["https://data.delijn.be/stops/302154", "https://data.delijn.be/stops/302200"], ["https://data.delijn.be/stops/102721", "https://data.delijn.be/stops/103725"], ["https://data.delijn.be/stops/500928", "https://data.delijn.be/stops/501508"], ["https://data.delijn.be/stops/104286", "https://data.delijn.be/stops/104287"], ["https://data.delijn.be/stops/501476", "https://data.delijn.be/stops/506476"], ["https://data.delijn.be/stops/106351", "https://data.delijn.be/stops/106353"], ["https://data.delijn.be/stops/304890", "https://data.delijn.be/stops/306718"], ["https://data.delijn.be/stops/400071", "https://data.delijn.be/stops/403544"], ["https://data.delijn.be/stops/300680", "https://data.delijn.be/stops/305830"], ["https://data.delijn.be/stops/303121", "https://data.delijn.be/stops/303225"], ["https://data.delijn.be/stops/106595", "https://data.delijn.be/stops/106596"], ["https://data.delijn.be/stops/504030", "https://data.delijn.be/stops/509030"], ["https://data.delijn.be/stops/204657", "https://data.delijn.be/stops/205657"], ["https://data.delijn.be/stops/202965", "https://data.delijn.be/stops/203530"], ["https://data.delijn.be/stops/202061", "https://data.delijn.be/stops/203061"], ["https://data.delijn.be/stops/408100", "https://data.delijn.be/stops/408101"], ["https://data.delijn.be/stops/102335", "https://data.delijn.be/stops/102445"], ["https://data.delijn.be/stops/502327", "https://data.delijn.be/stops/502328"], ["https://data.delijn.be/stops/501714", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/104553", "https://data.delijn.be/stops/107487"], ["https://data.delijn.be/stops/102461", "https://data.delijn.be/stops/400405"], ["https://data.delijn.be/stops/407364", "https://data.delijn.be/stops/408476"], ["https://data.delijn.be/stops/108406", "https://data.delijn.be/stops/108408"], ["https://data.delijn.be/stops/205975", "https://data.delijn.be/stops/209747"], ["https://data.delijn.be/stops/207785", "https://data.delijn.be/stops/209192"], ["https://data.delijn.be/stops/102145", "https://data.delijn.be/stops/104117"], ["https://data.delijn.be/stops/105479", "https://data.delijn.be/stops/105492"], ["https://data.delijn.be/stops/502648", "https://data.delijn.be/stops/502764"], ["https://data.delijn.be/stops/204126", "https://data.delijn.be/stops/205788"], ["https://data.delijn.be/stops/203860", "https://data.delijn.be/stops/208700"], ["https://data.delijn.be/stops/301448", "https://data.delijn.be/stops/308409"], ["https://data.delijn.be/stops/501309", "https://data.delijn.be/stops/501345"], ["https://data.delijn.be/stops/404570", "https://data.delijn.be/stops/404571"], ["https://data.delijn.be/stops/202342", "https://data.delijn.be/stops/202447"], ["https://data.delijn.be/stops/200860", "https://data.delijn.be/stops/203333"], ["https://data.delijn.be/stops/406323", "https://data.delijn.be/stops/406411"], ["https://data.delijn.be/stops/403644", "https://data.delijn.be/stops/403645"], ["https://data.delijn.be/stops/503719", "https://data.delijn.be/stops/508719"], ["https://data.delijn.be/stops/204248", "https://data.delijn.be/stops/204259"], ["https://data.delijn.be/stops/206245", "https://data.delijn.be/stops/207244"], ["https://data.delijn.be/stops/102006", "https://data.delijn.be/stops/104670"], ["https://data.delijn.be/stops/101755", "https://data.delijn.be/stops/105753"], ["https://data.delijn.be/stops/302689", "https://data.delijn.be/stops/302701"], ["https://data.delijn.be/stops/508767", "https://data.delijn.be/stops/508823"], ["https://data.delijn.be/stops/301432", "https://data.delijn.be/stops/301433"], ["https://data.delijn.be/stops/503751", "https://data.delijn.be/stops/508751"], ["https://data.delijn.be/stops/404327", "https://data.delijn.be/stops/404366"], ["https://data.delijn.be/stops/102464", "https://data.delijn.be/stops/400145"], ["https://data.delijn.be/stops/502528", "https://data.delijn.be/stops/507528"], ["https://data.delijn.be/stops/105068", "https://data.delijn.be/stops/105069"], ["https://data.delijn.be/stops/206849", "https://data.delijn.be/stops/207849"], ["https://data.delijn.be/stops/204135", "https://data.delijn.be/stops/205134"], ["https://data.delijn.be/stops/101591", "https://data.delijn.be/stops/101730"], ["https://data.delijn.be/stops/408507", "https://data.delijn.be/stops/408562"], ["https://data.delijn.be/stops/505529", "https://data.delijn.be/stops/509943"], ["https://data.delijn.be/stops/305610", "https://data.delijn.be/stops/305611"], ["https://data.delijn.be/stops/405825", "https://data.delijn.be/stops/405861"], ["https://data.delijn.be/stops/505619", "https://data.delijn.be/stops/505746"], ["https://data.delijn.be/stops/104364", "https://data.delijn.be/stops/104379"], ["https://data.delijn.be/stops/407172", "https://data.delijn.be/stops/410094"], ["https://data.delijn.be/stops/405936", "https://data.delijn.be/stops/405947"], ["https://data.delijn.be/stops/300413", "https://data.delijn.be/stops/307891"], ["https://data.delijn.be/stops/102780", "https://data.delijn.be/stops/102812"], ["https://data.delijn.be/stops/106767", "https://data.delijn.be/stops/106869"], ["https://data.delijn.be/stops/503010", "https://data.delijn.be/stops/508010"], ["https://data.delijn.be/stops/409435", "https://data.delijn.be/stops/409436"], ["https://data.delijn.be/stops/208221", "https://data.delijn.be/stops/209593"], ["https://data.delijn.be/stops/302508", "https://data.delijn.be/stops/305782"], ["https://data.delijn.be/stops/208308", "https://data.delijn.be/stops/209307"], ["https://data.delijn.be/stops/408333", "https://data.delijn.be/stops/410160"], ["https://data.delijn.be/stops/406053", "https://data.delijn.be/stops/409288"], ["https://data.delijn.be/stops/207740", "https://data.delijn.be/stops/207885"], ["https://data.delijn.be/stops/408599", "https://data.delijn.be/stops/306778"], ["https://data.delijn.be/stops/105571", "https://data.delijn.be/stops/105578"], ["https://data.delijn.be/stops/304216", "https://data.delijn.be/stops/307461"], ["https://data.delijn.be/stops/106227", "https://data.delijn.be/stops/106326"], ["https://data.delijn.be/stops/200803", "https://data.delijn.be/stops/203062"], ["https://data.delijn.be/stops/401215", "https://data.delijn.be/stops/401273"], ["https://data.delijn.be/stops/303192", "https://data.delijn.be/stops/307929"], ["https://data.delijn.be/stops/204171", "https://data.delijn.be/stops/204172"], ["https://data.delijn.be/stops/108994", "https://data.delijn.be/stops/108995"], ["https://data.delijn.be/stops/104608", "https://data.delijn.be/stops/108072"], ["https://data.delijn.be/stops/408107", "https://data.delijn.be/stops/408119"], ["https://data.delijn.be/stops/407016", "https://data.delijn.be/stops/407045"], ["https://data.delijn.be/stops/208719", "https://data.delijn.be/stops/209706"], ["https://data.delijn.be/stops/501117", "https://data.delijn.be/stops/501693"], ["https://data.delijn.be/stops/405521", "https://data.delijn.be/stops/407787"], ["https://data.delijn.be/stops/401980", "https://data.delijn.be/stops/401987"], ["https://data.delijn.be/stops/200752", "https://data.delijn.be/stops/200767"], ["https://data.delijn.be/stops/206380", "https://data.delijn.be/stops/207380"], ["https://data.delijn.be/stops/200536", "https://data.delijn.be/stops/201160"], ["https://data.delijn.be/stops/408231", "https://data.delijn.be/stops/408421"], ["https://data.delijn.be/stops/400502", "https://data.delijn.be/stops/402780"], ["https://data.delijn.be/stops/505716", "https://data.delijn.be/stops/508479"], ["https://data.delijn.be/stops/108808", "https://data.delijn.be/stops/108809"], ["https://data.delijn.be/stops/400754", "https://data.delijn.be/stops/407700"], ["https://data.delijn.be/stops/403746", "https://data.delijn.be/stops/403806"], ["https://data.delijn.be/stops/507915", "https://data.delijn.be/stops/508730"], ["https://data.delijn.be/stops/208800", "https://data.delijn.be/stops/209208"], ["https://data.delijn.be/stops/400881", "https://data.delijn.be/stops/409609"], ["https://data.delijn.be/stops/406350", "https://data.delijn.be/stops/408869"], ["https://data.delijn.be/stops/101152", "https://data.delijn.be/stops/102057"], ["https://data.delijn.be/stops/401123", "https://data.delijn.be/stops/408939"], ["https://data.delijn.be/stops/201926", "https://data.delijn.be/stops/201927"], ["https://data.delijn.be/stops/102946", "https://data.delijn.be/stops/109101"], ["https://data.delijn.be/stops/501426", "https://data.delijn.be/stops/501467"], ["https://data.delijn.be/stops/108376", "https://data.delijn.be/stops/108442"], ["https://data.delijn.be/stops/505165", "https://data.delijn.be/stops/509510"], ["https://data.delijn.be/stops/207720", "https://data.delijn.be/stops/207721"], ["https://data.delijn.be/stops/406925", "https://data.delijn.be/stops/406926"], ["https://data.delijn.be/stops/408239", "https://data.delijn.be/stops/408241"], ["https://data.delijn.be/stops/305265", "https://data.delijn.be/stops/305266"], ["https://data.delijn.be/stops/407677", "https://data.delijn.be/stops/408698"], ["https://data.delijn.be/stops/504042", "https://data.delijn.be/stops/504659"], ["https://data.delijn.be/stops/409674", "https://data.delijn.be/stops/409676"], ["https://data.delijn.be/stops/505754", "https://data.delijn.be/stops/507231"], ["https://data.delijn.be/stops/202766", "https://data.delijn.be/stops/202768"], ["https://data.delijn.be/stops/209118", "https://data.delijn.be/stops/219008"], ["https://data.delijn.be/stops/504644", "https://data.delijn.be/stops/505101"], ["https://data.delijn.be/stops/504066", "https://data.delijn.be/stops/504068"], ["https://data.delijn.be/stops/104056", "https://data.delijn.be/stops/108898"], ["https://data.delijn.be/stops/402808", "https://data.delijn.be/stops/404619"], ["https://data.delijn.be/stops/305781", "https://data.delijn.be/stops/305802"], ["https://data.delijn.be/stops/408585", "https://data.delijn.be/stops/408597"], ["https://data.delijn.be/stops/503993", "https://data.delijn.be/stops/508128"], ["https://data.delijn.be/stops/201022", "https://data.delijn.be/stops/201113"], ["https://data.delijn.be/stops/200852", "https://data.delijn.be/stops/203304"], ["https://data.delijn.be/stops/508657", "https://data.delijn.be/stops/509153"], ["https://data.delijn.be/stops/300904", "https://data.delijn.be/stops/301029"], ["https://data.delijn.be/stops/201683", "https://data.delijn.be/stops/208644"], ["https://data.delijn.be/stops/303024", "https://data.delijn.be/stops/303088"], ["https://data.delijn.be/stops/219024", "https://data.delijn.be/stops/219025"], ["https://data.delijn.be/stops/304362", "https://data.delijn.be/stops/307368"], ["https://data.delijn.be/stops/407760", "https://data.delijn.be/stops/409793"], ["https://data.delijn.be/stops/205578", "https://data.delijn.be/stops/207968"], ["https://data.delijn.be/stops/208065", "https://data.delijn.be/stops/209065"], ["https://data.delijn.be/stops/109323", "https://data.delijn.be/stops/307438"], ["https://data.delijn.be/stops/306903", "https://data.delijn.be/stops/308720"], ["https://data.delijn.be/stops/404551", "https://data.delijn.be/stops/406740"], ["https://data.delijn.be/stops/402100", "https://data.delijn.be/stops/402101"], ["https://data.delijn.be/stops/102570", "https://data.delijn.be/stops/103115"], ["https://data.delijn.be/stops/104986", "https://data.delijn.be/stops/104994"], ["https://data.delijn.be/stops/301333", "https://data.delijn.be/stops/301905"], ["https://data.delijn.be/stops/105414", "https://data.delijn.be/stops/105846"], ["https://data.delijn.be/stops/305181", "https://data.delijn.be/stops/308049"], ["https://data.delijn.be/stops/408650", "https://data.delijn.be/stops/408807"], ["https://data.delijn.be/stops/306926", "https://data.delijn.be/stops/307278"], ["https://data.delijn.be/stops/106695", "https://data.delijn.be/stops/106696"], ["https://data.delijn.be/stops/503126", "https://data.delijn.be/stops/504829"], ["https://data.delijn.be/stops/502411", "https://data.delijn.be/stops/502462"], ["https://data.delijn.be/stops/503030", "https://data.delijn.be/stops/508026"], ["https://data.delijn.be/stops/401110", "https://data.delijn.be/stops/401111"], ["https://data.delijn.be/stops/202949", "https://data.delijn.be/stops/216009"], ["https://data.delijn.be/stops/504390", "https://data.delijn.be/stops/504391"], ["https://data.delijn.be/stops/109260", "https://data.delijn.be/stops/109262"], ["https://data.delijn.be/stops/202476", "https://data.delijn.be/stops/203476"], ["https://data.delijn.be/stops/104284", "https://data.delijn.be/stops/105801"], ["https://data.delijn.be/stops/406556", "https://data.delijn.be/stops/406567"], ["https://data.delijn.be/stops/501596", "https://data.delijn.be/stops/505311"], ["https://data.delijn.be/stops/407262", "https://data.delijn.be/stops/407263"], ["https://data.delijn.be/stops/300885", "https://data.delijn.be/stops/300886"], ["https://data.delijn.be/stops/307618", "https://data.delijn.be/stops/307620"], ["https://data.delijn.be/stops/204162", "https://data.delijn.be/stops/207962"], ["https://data.delijn.be/stops/207866", "https://data.delijn.be/stops/208749"], ["https://data.delijn.be/stops/103596", "https://data.delijn.be/stops/103605"], ["https://data.delijn.be/stops/300821", "https://data.delijn.be/stops/301792"], ["https://data.delijn.be/stops/403457", "https://data.delijn.be/stops/410287"], ["https://data.delijn.be/stops/108087", "https://data.delijn.be/stops/108385"], ["https://data.delijn.be/stops/101475", "https://data.delijn.be/stops/108774"], ["https://data.delijn.be/stops/307296", "https://data.delijn.be/stops/307299"], ["https://data.delijn.be/stops/503237", "https://data.delijn.be/stops/509949"], ["https://data.delijn.be/stops/500931", "https://data.delijn.be/stops/508132"], ["https://data.delijn.be/stops/207108", "https://data.delijn.be/stops/207110"], ["https://data.delijn.be/stops/104043", "https://data.delijn.be/stops/104666"], ["https://data.delijn.be/stops/305771", "https://data.delijn.be/stops/305772"], ["https://data.delijn.be/stops/106101", "https://data.delijn.be/stops/106102"], ["https://data.delijn.be/stops/404676", "https://data.delijn.be/stops/410135"], ["https://data.delijn.be/stops/502648", "https://data.delijn.be/stops/507281"], ["https://data.delijn.be/stops/209597", "https://data.delijn.be/stops/301416"], ["https://data.delijn.be/stops/502373", "https://data.delijn.be/stops/507520"], ["https://data.delijn.be/stops/206679", "https://data.delijn.be/stops/209777"], ["https://data.delijn.be/stops/203788", "https://data.delijn.be/stops/210027"], ["https://data.delijn.be/stops/304361", "https://data.delijn.be/stops/307367"], ["https://data.delijn.be/stops/202138", "https://data.delijn.be/stops/202395"], ["https://data.delijn.be/stops/102384", "https://data.delijn.be/stops/106226"], ["https://data.delijn.be/stops/302850", "https://data.delijn.be/stops/302852"], ["https://data.delijn.be/stops/503959", "https://data.delijn.be/stops/504677"], ["https://data.delijn.be/stops/200748", "https://data.delijn.be/stops/202971"], ["https://data.delijn.be/stops/101070", "https://data.delijn.be/stops/101075"], ["https://data.delijn.be/stops/406717", "https://data.delijn.be/stops/406921"], ["https://data.delijn.be/stops/504394", "https://data.delijn.be/stops/509117"], ["https://data.delijn.be/stops/502058", "https://data.delijn.be/stops/507058"], ["https://data.delijn.be/stops/401135", "https://data.delijn.be/stops/407796"], ["https://data.delijn.be/stops/105579", "https://data.delijn.be/stops/105592"], ["https://data.delijn.be/stops/206181", "https://data.delijn.be/stops/207182"], ["https://data.delijn.be/stops/305157", "https://data.delijn.be/stops/305161"], ["https://data.delijn.be/stops/202523", "https://data.delijn.be/stops/203524"], ["https://data.delijn.be/stops/109220", "https://data.delijn.be/stops/109221"], ["https://data.delijn.be/stops/208385", "https://data.delijn.be/stops/209385"], ["https://data.delijn.be/stops/502554", "https://data.delijn.be/stops/502556"], ["https://data.delijn.be/stops/407925", "https://data.delijn.be/stops/407968"], ["https://data.delijn.be/stops/200937", "https://data.delijn.be/stops/203716"], ["https://data.delijn.be/stops/302573", "https://data.delijn.be/stops/302576"], ["https://data.delijn.be/stops/400056", "https://data.delijn.be/stops/400072"], ["https://data.delijn.be/stops/300125", "https://data.delijn.be/stops/300126"], ["https://data.delijn.be/stops/104029", "https://data.delijn.be/stops/107312"], ["https://data.delijn.be/stops/304985", "https://data.delijn.be/stops/308015"], ["https://data.delijn.be/stops/508715", "https://data.delijn.be/stops/509872"], ["https://data.delijn.be/stops/503879", "https://data.delijn.be/stops/508994"], ["https://data.delijn.be/stops/201818", "https://data.delijn.be/stops/208257"], ["https://data.delijn.be/stops/408059", "https://data.delijn.be/stops/408285"], ["https://data.delijn.be/stops/403755", "https://data.delijn.be/stops/403757"], ["https://data.delijn.be/stops/202020", "https://data.delijn.be/stops/203020"], ["https://data.delijn.be/stops/405891", "https://data.delijn.be/stops/409771"], ["https://data.delijn.be/stops/305156", "https://data.delijn.be/stops/305157"], ["https://data.delijn.be/stops/503072", "https://data.delijn.be/stops/503073"], ["https://data.delijn.be/stops/406576", "https://data.delijn.be/stops/407155"], ["https://data.delijn.be/stops/505302", "https://data.delijn.be/stops/509594"], ["https://data.delijn.be/stops/206839", "https://data.delijn.be/stops/207559"], ["https://data.delijn.be/stops/305066", "https://data.delijn.be/stops/305091"], ["https://data.delijn.be/stops/501198", "https://data.delijn.be/stops/501527"], ["https://data.delijn.be/stops/101501", "https://data.delijn.be/stops/308505"], ["https://data.delijn.be/stops/107197", "https://data.delijn.be/stops/109773"], ["https://data.delijn.be/stops/208352", "https://data.delijn.be/stops/209184"], ["https://data.delijn.be/stops/404116", "https://data.delijn.be/stops/404182"], ["https://data.delijn.be/stops/302908", "https://data.delijn.be/stops/304319"], ["https://data.delijn.be/stops/402781", "https://data.delijn.be/stops/404042"], ["https://data.delijn.be/stops/206903", "https://data.delijn.be/stops/207261"], ["https://data.delijn.be/stops/505046", "https://data.delijn.be/stops/506412"], ["https://data.delijn.be/stops/403702", "https://data.delijn.be/stops/403726"], ["https://data.delijn.be/stops/103597", "https://data.delijn.be/stops/109400"], ["https://data.delijn.be/stops/301544", "https://data.delijn.be/stops/305142"], ["https://data.delijn.be/stops/101571", "https://data.delijn.be/stops/101574"], ["https://data.delijn.be/stops/202826", "https://data.delijn.be/stops/203826"], ["https://data.delijn.be/stops/101193", "https://data.delijn.be/stops/101204"], ["https://data.delijn.be/stops/404269", "https://data.delijn.be/stops/405550"], ["https://data.delijn.be/stops/205660", "https://data.delijn.be/stops/205661"], ["https://data.delijn.be/stops/405807", "https://data.delijn.be/stops/405855"], ["https://data.delijn.be/stops/401590", "https://data.delijn.be/stops/401592"], ["https://data.delijn.be/stops/303184", "https://data.delijn.be/stops/303196"], ["https://data.delijn.be/stops/503427", "https://data.delijn.be/stops/508427"], ["https://data.delijn.be/stops/408103", "https://data.delijn.be/stops/408106"], ["https://data.delijn.be/stops/505734", "https://data.delijn.be/stops/509880"], ["https://data.delijn.be/stops/300840", "https://data.delijn.be/stops/304623"], ["https://data.delijn.be/stops/404700", "https://data.delijn.be/stops/404710"], ["https://data.delijn.be/stops/504666", "https://data.delijn.be/stops/509368"], ["https://data.delijn.be/stops/505271", "https://data.delijn.be/stops/508783"], ["https://data.delijn.be/stops/302763", "https://data.delijn.be/stops/302775"], ["https://data.delijn.be/stops/303541", "https://data.delijn.be/stops/304125"], ["https://data.delijn.be/stops/400535", "https://data.delijn.be/stops/403886"], ["https://data.delijn.be/stops/301046", "https://data.delijn.be/stops/301051"], ["https://data.delijn.be/stops/308229", "https://data.delijn.be/stops/308240"], ["https://data.delijn.be/stops/406076", "https://data.delijn.be/stops/407168"], ["https://data.delijn.be/stops/407537", "https://data.delijn.be/stops/408156"], ["https://data.delijn.be/stops/406430", "https://data.delijn.be/stops/409505"], ["https://data.delijn.be/stops/506146", "https://data.delijn.be/stops/506637"], ["https://data.delijn.be/stops/503213", "https://data.delijn.be/stops/508195"], ["https://data.delijn.be/stops/503196", "https://data.delijn.be/stops/508983"], ["https://data.delijn.be/stops/206207", "https://data.delijn.be/stops/206608"], ["https://data.delijn.be/stops/103558", "https://data.delijn.be/stops/103594"], ["https://data.delijn.be/stops/107125", "https://data.delijn.be/stops/107130"], ["https://data.delijn.be/stops/202267", "https://data.delijn.be/stops/203267"], ["https://data.delijn.be/stops/101898", "https://data.delijn.be/stops/107803"], ["https://data.delijn.be/stops/403324", "https://data.delijn.be/stops/403325"], ["https://data.delijn.be/stops/505190", "https://data.delijn.be/stops/505910"], ["https://data.delijn.be/stops/504494", "https://data.delijn.be/stops/504497"], ["https://data.delijn.be/stops/308773", "https://data.delijn.be/stops/308776"], ["https://data.delijn.be/stops/300489", "https://data.delijn.be/stops/300491"], ["https://data.delijn.be/stops/208736", "https://data.delijn.be/stops/208737"], ["https://data.delijn.be/stops/104454", "https://data.delijn.be/stops/104472"], ["https://data.delijn.be/stops/503413", "https://data.delijn.be/stops/510019"], ["https://data.delijn.be/stops/305633", "https://data.delijn.be/stops/306809"], ["https://data.delijn.be/stops/501426", "https://data.delijn.be/stops/506208"], ["https://data.delijn.be/stops/503055", "https://data.delijn.be/stops/509789"], ["https://data.delijn.be/stops/200865", "https://data.delijn.be/stops/202342"], ["https://data.delijn.be/stops/107311", "https://data.delijn.be/stops/107314"], ["https://data.delijn.be/stops/206856", "https://data.delijn.be/stops/207856"], ["https://data.delijn.be/stops/406521", "https://data.delijn.be/stops/407479"], ["https://data.delijn.be/stops/501095", "https://data.delijn.be/stops/501421"], ["https://data.delijn.be/stops/206455", "https://data.delijn.be/stops/206824"], ["https://data.delijn.be/stops/501135", "https://data.delijn.be/stops/506135"], ["https://data.delijn.be/stops/103572", "https://data.delijn.be/stops/107134"], ["https://data.delijn.be/stops/201739", "https://data.delijn.be/stops/505723"], ["https://data.delijn.be/stops/400854", "https://data.delijn.be/stops/400855"], ["https://data.delijn.be/stops/406265", "https://data.delijn.be/stops/406425"], ["https://data.delijn.be/stops/404354", "https://data.delijn.be/stops/404393"], ["https://data.delijn.be/stops/109432", "https://data.delijn.be/stops/109433"], ["https://data.delijn.be/stops/102498", "https://data.delijn.be/stops/400440"], ["https://data.delijn.be/stops/402452", "https://data.delijn.be/stops/402455"], ["https://data.delijn.be/stops/306923", "https://data.delijn.be/stops/306924"], ["https://data.delijn.be/stops/501533", "https://data.delijn.be/stops/501541"], ["https://data.delijn.be/stops/304061", "https://data.delijn.be/stops/304062"], ["https://data.delijn.be/stops/104320", "https://data.delijn.be/stops/104321"], ["https://data.delijn.be/stops/107353", "https://data.delijn.be/stops/108176"], ["https://data.delijn.be/stops/501608", "https://data.delijn.be/stops/506606"], ["https://data.delijn.be/stops/107012", "https://data.delijn.be/stops/107016"], ["https://data.delijn.be/stops/101461", "https://data.delijn.be/stops/109251"], ["https://data.delijn.be/stops/505129", "https://data.delijn.be/stops/508290"], ["https://data.delijn.be/stops/205729", "https://data.delijn.be/stops/205759"], ["https://data.delijn.be/stops/103944", "https://data.delijn.be/stops/108825"], ["https://data.delijn.be/stops/308781", "https://data.delijn.be/stops/308782"], ["https://data.delijn.be/stops/300303", "https://data.delijn.be/stops/307476"], ["https://data.delijn.be/stops/107537", "https://data.delijn.be/stops/107538"], ["https://data.delijn.be/stops/409522", "https://data.delijn.be/stops/410164"], ["https://data.delijn.be/stops/503856", "https://data.delijn.be/stops/505848"], ["https://data.delijn.be/stops/504979", "https://data.delijn.be/stops/504984"], ["https://data.delijn.be/stops/105390", "https://data.delijn.be/stops/105700"], ["https://data.delijn.be/stops/106272", "https://data.delijn.be/stops/109626"], ["https://data.delijn.be/stops/201053", "https://data.delijn.be/stops/211118"], ["https://data.delijn.be/stops/501307", "https://data.delijn.be/stops/506301"], ["https://data.delijn.be/stops/102210", "https://data.delijn.be/stops/105885"], ["https://data.delijn.be/stops/202264", "https://data.delijn.be/stops/203263"], ["https://data.delijn.be/stops/101583", "https://data.delijn.be/stops/101587"], ["https://data.delijn.be/stops/208001", "https://data.delijn.be/stops/209098"], ["https://data.delijn.be/stops/500924", "https://data.delijn.be/stops/508337"], ["https://data.delijn.be/stops/200733", "https://data.delijn.be/stops/200736"], ["https://data.delijn.be/stops/102693", "https://data.delijn.be/stops/102694"], ["https://data.delijn.be/stops/503915", "https://data.delijn.be/stops/508915"], ["https://data.delijn.be/stops/407406", "https://data.delijn.be/stops/407565"], ["https://data.delijn.be/stops/402284", "https://data.delijn.be/stops/410335"], ["https://data.delijn.be/stops/103236", "https://data.delijn.be/stops/109433"], ["https://data.delijn.be/stops/401997", "https://data.delijn.be/stops/406988"], ["https://data.delijn.be/stops/407396", "https://data.delijn.be/stops/407542"], ["https://data.delijn.be/stops/103146", "https://data.delijn.be/stops/109520"], ["https://data.delijn.be/stops/103121", "https://data.delijn.be/stops/105445"], ["https://data.delijn.be/stops/409296", "https://data.delijn.be/stops/409305"], ["https://data.delijn.be/stops/305399", "https://data.delijn.be/stops/305401"], ["https://data.delijn.be/stops/208153", "https://data.delijn.be/stops/209151"], ["https://data.delijn.be/stops/105386", "https://data.delijn.be/stops/105387"], ["https://data.delijn.be/stops/400909", "https://data.delijn.be/stops/400961"], ["https://data.delijn.be/stops/503097", "https://data.delijn.be/stops/508097"], ["https://data.delijn.be/stops/408157", "https://data.delijn.be/stops/408158"], ["https://data.delijn.be/stops/302750", "https://data.delijn.be/stops/306184"], ["https://data.delijn.be/stops/103639", "https://data.delijn.be/stops/103641"], ["https://data.delijn.be/stops/200224", "https://data.delijn.be/stops/200226"], ["https://data.delijn.be/stops/206063", "https://data.delijn.be/stops/206500"], ["https://data.delijn.be/stops/208679", "https://data.delijn.be/stops/219002"], ["https://data.delijn.be/stops/509102", "https://data.delijn.be/stops/509759"], ["https://data.delijn.be/stops/202127", "https://data.delijn.be/stops/203597"], ["https://data.delijn.be/stops/506170", "https://data.delijn.be/stops/506182"], ["https://data.delijn.be/stops/404475", "https://data.delijn.be/stops/404537"], ["https://data.delijn.be/stops/407223", "https://data.delijn.be/stops/407490"], ["https://data.delijn.be/stops/205986", "https://data.delijn.be/stops/207993"], ["https://data.delijn.be/stops/408270", "https://data.delijn.be/stops/408278"], ["https://data.delijn.be/stops/201091", "https://data.delijn.be/stops/202896"], ["https://data.delijn.be/stops/404332", "https://data.delijn.be/stops/404336"], ["https://data.delijn.be/stops/501262", "https://data.delijn.be/stops/501359"], ["https://data.delijn.be/stops/206933", "https://data.delijn.be/stops/210003"], ["https://data.delijn.be/stops/300403", "https://data.delijn.be/stops/300404"], ["https://data.delijn.be/stops/502735", "https://data.delijn.be/stops/507721"], ["https://data.delijn.be/stops/405941", "https://data.delijn.be/stops/405995"], ["https://data.delijn.be/stops/302068", "https://data.delijn.be/stops/302070"], ["https://data.delijn.be/stops/403448", "https://data.delijn.be/stops/403525"], ["https://data.delijn.be/stops/500009", "https://data.delijn.be/stops/502768"], ["https://data.delijn.be/stops/401415", "https://data.delijn.be/stops/401416"], ["https://data.delijn.be/stops/305775", "https://data.delijn.be/stops/305778"], ["https://data.delijn.be/stops/403742", "https://data.delijn.be/stops/403755"], ["https://data.delijn.be/stops/302693", "https://data.delijn.be/stops/302694"], ["https://data.delijn.be/stops/107476", "https://data.delijn.be/stops/107477"], ["https://data.delijn.be/stops/105241", "https://data.delijn.be/stops/105246"], ["https://data.delijn.be/stops/204525", "https://data.delijn.be/stops/205481"], ["https://data.delijn.be/stops/502918", "https://data.delijn.be/stops/505580"], ["https://data.delijn.be/stops/303359", "https://data.delijn.be/stops/308892"], ["https://data.delijn.be/stops/205158", "https://data.delijn.be/stops/205164"], ["https://data.delijn.be/stops/207857", "https://data.delijn.be/stops/208625"], ["https://data.delijn.be/stops/104794", "https://data.delijn.be/stops/106825"], ["https://data.delijn.be/stops/301870", "https://data.delijn.be/stops/301874"], ["https://data.delijn.be/stops/501282", "https://data.delijn.be/stops/506283"], ["https://data.delijn.be/stops/204332", "https://data.delijn.be/stops/205332"], ["https://data.delijn.be/stops/203912", "https://data.delijn.be/stops/203915"], ["https://data.delijn.be/stops/208155", "https://data.delijn.be/stops/208509"], ["https://data.delijn.be/stops/206925", "https://data.delijn.be/stops/207814"], ["https://data.delijn.be/stops/206670", "https://data.delijn.be/stops/209342"], ["https://data.delijn.be/stops/405004", "https://data.delijn.be/stops/406501"], ["https://data.delijn.be/stops/105134", "https://data.delijn.be/stops/305618"], ["https://data.delijn.be/stops/207418", "https://data.delijn.be/stops/207660"], ["https://data.delijn.be/stops/504268", "https://data.delijn.be/stops/505298"], ["https://data.delijn.be/stops/102227", "https://data.delijn.be/stops/105526"], ["https://data.delijn.be/stops/303856", "https://data.delijn.be/stops/303860"], ["https://data.delijn.be/stops/201959", "https://data.delijn.be/stops/203198"], ["https://data.delijn.be/stops/503755", "https://data.delijn.be/stops/508766"], ["https://data.delijn.be/stops/407963", "https://data.delijn.be/stops/407967"], ["https://data.delijn.be/stops/304190", "https://data.delijn.be/stops/305495"], ["https://data.delijn.be/stops/205106", "https://data.delijn.be/stops/205750"], ["https://data.delijn.be/stops/304308", "https://data.delijn.be/stops/304309"], ["https://data.delijn.be/stops/300199", "https://data.delijn.be/stops/303127"], ["https://data.delijn.be/stops/108429", "https://data.delijn.be/stops/108432"], ["https://data.delijn.be/stops/106860", "https://data.delijn.be/stops/106862"], ["https://data.delijn.be/stops/507396", "https://data.delijn.be/stops/507671"], ["https://data.delijn.be/stops/503042", "https://data.delijn.be/stops/509206"], ["https://data.delijn.be/stops/407883", "https://data.delijn.be/stops/408443"], ["https://data.delijn.be/stops/304995", "https://data.delijn.be/stops/305035"], ["https://data.delijn.be/stops/300036", "https://data.delijn.be/stops/300857"], ["https://data.delijn.be/stops/203738", "https://data.delijn.be/stops/209693"], ["https://data.delijn.be/stops/102011", "https://data.delijn.be/stops/102079"], ["https://data.delijn.be/stops/301567", "https://data.delijn.be/stops/308080"], ["https://data.delijn.be/stops/208068", "https://data.delijn.be/stops/209071"], ["https://data.delijn.be/stops/403300", "https://data.delijn.be/stops/404174"], ["https://data.delijn.be/stops/306124", "https://data.delijn.be/stops/307146"], ["https://data.delijn.be/stops/206014", "https://data.delijn.be/stops/206913"], ["https://data.delijn.be/stops/407785", "https://data.delijn.be/stops/307379"], ["https://data.delijn.be/stops/108443", "https://data.delijn.be/stops/108446"], ["https://data.delijn.be/stops/106571", "https://data.delijn.be/stops/108540"], ["https://data.delijn.be/stops/200807", "https://data.delijn.be/stops/202388"], ["https://data.delijn.be/stops/209789", "https://data.delijn.be/stops/219009"], ["https://data.delijn.be/stops/506127", "https://data.delijn.be/stops/506128"], ["https://data.delijn.be/stops/206994", "https://data.delijn.be/stops/307768"], ["https://data.delijn.be/stops/503541", "https://data.delijn.be/stops/508580"], ["https://data.delijn.be/stops/501684", "https://data.delijn.be/stops/506172"], ["https://data.delijn.be/stops/102411", "https://data.delijn.be/stops/104388"], ["https://data.delijn.be/stops/208117", "https://data.delijn.be/stops/208336"], ["https://data.delijn.be/stops/201730", "https://data.delijn.be/stops/211850"], ["https://data.delijn.be/stops/406356", "https://data.delijn.be/stops/406357"], ["https://data.delijn.be/stops/208593", "https://data.delijn.be/stops/209967"], ["https://data.delijn.be/stops/108510", "https://data.delijn.be/stops/108511"], ["https://data.delijn.be/stops/402548", "https://data.delijn.be/stops/402549"], ["https://data.delijn.be/stops/209259", "https://data.delijn.be/stops/209260"], ["https://data.delijn.be/stops/302648", "https://data.delijn.be/stops/308120"], ["https://data.delijn.be/stops/108924", "https://data.delijn.be/stops/108927"], ["https://data.delijn.be/stops/209114", "https://data.delijn.be/stops/218007"], ["https://data.delijn.be/stops/300688", "https://data.delijn.be/stops/306940"], ["https://data.delijn.be/stops/300807", "https://data.delijn.be/stops/307574"], ["https://data.delijn.be/stops/504353", "https://data.delijn.be/stops/509353"], ["https://data.delijn.be/stops/504274", "https://data.delijn.be/stops/509274"], ["https://data.delijn.be/stops/400623", "https://data.delijn.be/stops/400628"], ["https://data.delijn.be/stops/201877", "https://data.delijn.be/stops/202424"], ["https://data.delijn.be/stops/303519", "https://data.delijn.be/stops/303523"], ["https://data.delijn.be/stops/202500", "https://data.delijn.be/stops/203499"], ["https://data.delijn.be/stops/201808", "https://data.delijn.be/stops/208261"], ["https://data.delijn.be/stops/402409", "https://data.delijn.be/stops/406911"], ["https://data.delijn.be/stops/302240", "https://data.delijn.be/stops/302241"], ["https://data.delijn.be/stops/404724", "https://data.delijn.be/stops/404749"], ["https://data.delijn.be/stops/404324", "https://data.delijn.be/stops/404325"], ["https://data.delijn.be/stops/204045", "https://data.delijn.be/stops/204046"], ["https://data.delijn.be/stops/308484", "https://data.delijn.be/stops/308536"], ["https://data.delijn.be/stops/302512", "https://data.delijn.be/stops/305874"], ["https://data.delijn.be/stops/200388", "https://data.delijn.be/stops/208496"], ["https://data.delijn.be/stops/304906", "https://data.delijn.be/stops/304908"], ["https://data.delijn.be/stops/108058", "https://data.delijn.be/stops/108220"], ["https://data.delijn.be/stops/102912", "https://data.delijn.be/stops/102913"], ["https://data.delijn.be/stops/204613", "https://data.delijn.be/stops/204731"], ["https://data.delijn.be/stops/105117", "https://data.delijn.be/stops/105156"], ["https://data.delijn.be/stops/406664", "https://data.delijn.be/stops/406665"], ["https://data.delijn.be/stops/408164", "https://data.delijn.be/stops/409315"], ["https://data.delijn.be/stops/201626", "https://data.delijn.be/stops/219003"], ["https://data.delijn.be/stops/502490", "https://data.delijn.be/stops/507512"], ["https://data.delijn.be/stops/503870", "https://data.delijn.be/stops/508875"], ["https://data.delijn.be/stops/503607", "https://data.delijn.be/stops/508607"], ["https://data.delijn.be/stops/401123", "https://data.delijn.be/stops/409643"], ["https://data.delijn.be/stops/202337", "https://data.delijn.be/stops/203337"], ["https://data.delijn.be/stops/503075", "https://data.delijn.be/stops/508075"], ["https://data.delijn.be/stops/102088", "https://data.delijn.be/stops/102089"], ["https://data.delijn.be/stops/101954", "https://data.delijn.be/stops/101956"], ["https://data.delijn.be/stops/206747", "https://data.delijn.be/stops/207336"], ["https://data.delijn.be/stops/502319", "https://data.delijn.be/stops/507710"], ["https://data.delijn.be/stops/209206", "https://data.delijn.be/stops/209207"], ["https://data.delijn.be/stops/402292", "https://data.delijn.be/stops/402293"], ["https://data.delijn.be/stops/300763", "https://data.delijn.be/stops/301049"], ["https://data.delijn.be/stops/303333", "https://data.delijn.be/stops/303335"], ["https://data.delijn.be/stops/300952", "https://data.delijn.be/stops/301072"], ["https://data.delijn.be/stops/503039", "https://data.delijn.be/stops/508042"], ["https://data.delijn.be/stops/104056", "https://data.delijn.be/stops/108097"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/402620"], ["https://data.delijn.be/stops/207571", "https://data.delijn.be/stops/208953"], ["https://data.delijn.be/stops/202783", "https://data.delijn.be/stops/203782"], ["https://data.delijn.be/stops/105416", "https://data.delijn.be/stops/109846"], ["https://data.delijn.be/stops/200817", "https://data.delijn.be/stops/203055"], ["https://data.delijn.be/stops/403048", "https://data.delijn.be/stops/403049"], ["https://data.delijn.be/stops/307885", "https://data.delijn.be/stops/307886"], ["https://data.delijn.be/stops/202704", "https://data.delijn.be/stops/202705"], ["https://data.delijn.be/stops/208814", "https://data.delijn.be/stops/209198"], ["https://data.delijn.be/stops/104535", "https://data.delijn.be/stops/108025"], ["https://data.delijn.be/stops/106826", "https://data.delijn.be/stops/106827"], ["https://data.delijn.be/stops/505388", "https://data.delijn.be/stops/508106"], ["https://data.delijn.be/stops/506001", "https://data.delijn.be/stops/509556"], ["https://data.delijn.be/stops/303761", "https://data.delijn.be/stops/303765"], ["https://data.delijn.be/stops/308124", "https://data.delijn.be/stops/308125"], ["https://data.delijn.be/stops/201762", "https://data.delijn.be/stops/208266"], ["https://data.delijn.be/stops/407648", "https://data.delijn.be/stops/407676"], ["https://data.delijn.be/stops/303313", "https://data.delijn.be/stops/303330"], ["https://data.delijn.be/stops/402225", "https://data.delijn.be/stops/402368"], ["https://data.delijn.be/stops/103000", "https://data.delijn.be/stops/104021"], ["https://data.delijn.be/stops/402952", "https://data.delijn.be/stops/405308"], ["https://data.delijn.be/stops/403127", "https://data.delijn.be/stops/403138"], ["https://data.delijn.be/stops/305103", "https://data.delijn.be/stops/305124"], ["https://data.delijn.be/stops/304583", "https://data.delijn.be/stops/304617"], ["https://data.delijn.be/stops/408202", "https://data.delijn.be/stops/408205"], ["https://data.delijn.be/stops/202646", "https://data.delijn.be/stops/203646"], ["https://data.delijn.be/stops/101805", "https://data.delijn.be/stops/106359"], ["https://data.delijn.be/stops/400739", "https://data.delijn.be/stops/400740"], ["https://data.delijn.be/stops/503981", "https://data.delijn.be/stops/508635"], ["https://data.delijn.be/stops/202112", "https://data.delijn.be/stops/205585"], ["https://data.delijn.be/stops/406086", "https://data.delijn.be/stops/406139"], ["https://data.delijn.be/stops/104643", "https://data.delijn.be/stops/107966"], ["https://data.delijn.be/stops/303070", "https://data.delijn.be/stops/303126"], ["https://data.delijn.be/stops/304666", "https://data.delijn.be/stops/304676"], ["https://data.delijn.be/stops/300286", "https://data.delijn.be/stops/301315"], ["https://data.delijn.be/stops/401417", "https://data.delijn.be/stops/305165"], ["https://data.delijn.be/stops/409236", "https://data.delijn.be/stops/409246"], ["https://data.delijn.be/stops/403970", "https://data.delijn.be/stops/403971"], ["https://data.delijn.be/stops/400451", "https://data.delijn.be/stops/400453"], ["https://data.delijn.be/stops/404306", "https://data.delijn.be/stops/404330"], ["https://data.delijn.be/stops/200130", "https://data.delijn.be/stops/201131"], ["https://data.delijn.be/stops/202705", "https://data.delijn.be/stops/203704"], ["https://data.delijn.be/stops/502332", "https://data.delijn.be/stops/505225"], ["https://data.delijn.be/stops/206969", "https://data.delijn.be/stops/207969"], ["https://data.delijn.be/stops/302752", "https://data.delijn.be/stops/302754"], ["https://data.delijn.be/stops/508438", "https://data.delijn.be/stops/509920"], ["https://data.delijn.be/stops/502802", "https://data.delijn.be/stops/507582"], ["https://data.delijn.be/stops/205215", "https://data.delijn.be/stops/205216"], ["https://data.delijn.be/stops/202878", "https://data.delijn.be/stops/203878"], ["https://data.delijn.be/stops/402970", "https://data.delijn.be/stops/402979"], ["https://data.delijn.be/stops/105917", "https://data.delijn.be/stops/105918"], ["https://data.delijn.be/stops/409662", "https://data.delijn.be/stops/409774"], ["https://data.delijn.be/stops/407755", "https://data.delijn.be/stops/407756"], ["https://data.delijn.be/stops/202345", "https://data.delijn.be/stops/209743"], ["https://data.delijn.be/stops/101958", "https://data.delijn.be/stops/108296"], ["https://data.delijn.be/stops/206551", "https://data.delijn.be/stops/209744"], ["https://data.delijn.be/stops/103129", "https://data.delijn.be/stops/104431"], ["https://data.delijn.be/stops/405517", "https://data.delijn.be/stops/407291"], ["https://data.delijn.be/stops/209302", "https://data.delijn.be/stops/507962"], ["https://data.delijn.be/stops/204130", "https://data.delijn.be/stops/205789"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/302868"], ["https://data.delijn.be/stops/305017", "https://data.delijn.be/stops/305018"], ["https://data.delijn.be/stops/501103", "https://data.delijn.be/stops/506225"], ["https://data.delijn.be/stops/208182", "https://data.delijn.be/stops/208759"], ["https://data.delijn.be/stops/503894", "https://data.delijn.be/stops/508895"], ["https://data.delijn.be/stops/301791", "https://data.delijn.be/stops/301796"], ["https://data.delijn.be/stops/304436", "https://data.delijn.be/stops/304438"], ["https://data.delijn.be/stops/307152", "https://data.delijn.be/stops/307159"], ["https://data.delijn.be/stops/303759", "https://data.delijn.be/stops/303763"], ["https://data.delijn.be/stops/300292", "https://data.delijn.be/stops/300300"], ["https://data.delijn.be/stops/503540", "https://data.delijn.be/stops/508552"], ["https://data.delijn.be/stops/208602", "https://data.delijn.be/stops/306367"], ["https://data.delijn.be/stops/204172", "https://data.delijn.be/stops/205172"], ["https://data.delijn.be/stops/206912", "https://data.delijn.be/stops/207018"], ["https://data.delijn.be/stops/102867", "https://data.delijn.be/stops/106449"], ["https://data.delijn.be/stops/301287", "https://data.delijn.be/stops/307942"], ["https://data.delijn.be/stops/102172", "https://data.delijn.be/stops/108097"], ["https://data.delijn.be/stops/101226", "https://data.delijn.be/stops/107802"], ["https://data.delijn.be/stops/200072", "https://data.delijn.be/stops/201072"], ["https://data.delijn.be/stops/407741", "https://data.delijn.be/stops/409632"], ["https://data.delijn.be/stops/207401", "https://data.delijn.be/stops/207402"], ["https://data.delijn.be/stops/408312", "https://data.delijn.be/stops/408313"], ["https://data.delijn.be/stops/404408", "https://data.delijn.be/stops/404420"], ["https://data.delijn.be/stops/504287", "https://data.delijn.be/stops/504776"], ["https://data.delijn.be/stops/500027", "https://data.delijn.be/stops/502369"], ["https://data.delijn.be/stops/401285", "https://data.delijn.be/stops/410198"], ["https://data.delijn.be/stops/200117", "https://data.delijn.be/stops/200872"], ["https://data.delijn.be/stops/301213", "https://data.delijn.be/stops/301215"], ["https://data.delijn.be/stops/302206", "https://data.delijn.be/stops/308102"], ["https://data.delijn.be/stops/404776", "https://data.delijn.be/stops/404777"], ["https://data.delijn.be/stops/206840", "https://data.delijn.be/stops/206841"], ["https://data.delijn.be/stops/305028", "https://data.delijn.be/stops/305029"], ["https://data.delijn.be/stops/302715", "https://data.delijn.be/stops/302725"], ["https://data.delijn.be/stops/403124", "https://data.delijn.be/stops/403176"], ["https://data.delijn.be/stops/104960", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/101016", "https://data.delijn.be/stops/105070"], ["https://data.delijn.be/stops/209581", "https://data.delijn.be/stops/219020"], ["https://data.delijn.be/stops/103693", "https://data.delijn.be/stops/103694"], ["https://data.delijn.be/stops/306912", "https://data.delijn.be/stops/308875"], ["https://data.delijn.be/stops/205289", "https://data.delijn.be/stops/205546"], ["https://data.delijn.be/stops/501180", "https://data.delijn.be/stops/509495"], ["https://data.delijn.be/stops/406057", "https://data.delijn.be/stops/406138"], ["https://data.delijn.be/stops/208044", "https://data.delijn.be/stops/208082"], ["https://data.delijn.be/stops/304434", "https://data.delijn.be/stops/304459"], ["https://data.delijn.be/stops/206489", "https://data.delijn.be/stops/207489"], ["https://data.delijn.be/stops/503155", "https://data.delijn.be/stops/503437"], ["https://data.delijn.be/stops/101757", "https://data.delijn.be/stops/102182"], ["https://data.delijn.be/stops/201975", "https://data.delijn.be/stops/208045"], ["https://data.delijn.be/stops/502512", "https://data.delijn.be/stops/507512"], ["https://data.delijn.be/stops/205322", "https://data.delijn.be/stops/205323"], ["https://data.delijn.be/stops/405604", "https://data.delijn.be/stops/408556"], ["https://data.delijn.be/stops/200030", "https://data.delijn.be/stops/200031"], ["https://data.delijn.be/stops/205261", "https://data.delijn.be/stops/205652"], ["https://data.delijn.be/stops/406596", "https://data.delijn.be/stops/406611"], ["https://data.delijn.be/stops/206261", "https://data.delijn.be/stops/207261"], ["https://data.delijn.be/stops/104100", "https://data.delijn.be/stops/104300"], ["https://data.delijn.be/stops/105449", "https://data.delijn.be/stops/105450"], ["https://data.delijn.be/stops/503059", "https://data.delijn.be/stops/503117"], ["https://data.delijn.be/stops/304773", "https://data.delijn.be/stops/305250"], ["https://data.delijn.be/stops/409713", "https://data.delijn.be/stops/409715"], ["https://data.delijn.be/stops/406912", "https://data.delijn.be/stops/406969"], ["https://data.delijn.be/stops/302646", "https://data.delijn.be/stops/308113"], ["https://data.delijn.be/stops/408326", "https://data.delijn.be/stops/408335"], ["https://data.delijn.be/stops/200331", "https://data.delijn.be/stops/201961"], ["https://data.delijn.be/stops/407684", "https://data.delijn.be/stops/407687"], ["https://data.delijn.be/stops/405517", "https://data.delijn.be/stops/405519"], ["https://data.delijn.be/stops/200364", "https://data.delijn.be/stops/201364"], ["https://data.delijn.be/stops/400082", "https://data.delijn.be/stops/400085"], ["https://data.delijn.be/stops/505748", "https://data.delijn.be/stops/507183"], ["https://data.delijn.be/stops/104417", "https://data.delijn.be/stops/204489"], ["https://data.delijn.be/stops/501370", "https://data.delijn.be/stops/506370"], ["https://data.delijn.be/stops/206871", "https://data.delijn.be/stops/208790"], ["https://data.delijn.be/stops/102947", "https://data.delijn.be/stops/106127"], ["https://data.delijn.be/stops/508721", "https://data.delijn.be/stops/508723"], ["https://data.delijn.be/stops/302979", "https://data.delijn.be/stops/303450"], ["https://data.delijn.be/stops/102340", "https://data.delijn.be/stops/106359"], ["https://data.delijn.be/stops/201377", "https://data.delijn.be/stops/201378"], ["https://data.delijn.be/stops/105356", "https://data.delijn.be/stops/106235"], ["https://data.delijn.be/stops/503029", "https://data.delijn.be/stops/507766"], ["https://data.delijn.be/stops/400034", "https://data.delijn.be/stops/400681"], ["https://data.delijn.be/stops/103251", "https://data.delijn.be/stops/107720"], ["https://data.delijn.be/stops/303226", "https://data.delijn.be/stops/303229"], ["https://data.delijn.be/stops/406503", "https://data.delijn.be/stops/406508"], ["https://data.delijn.be/stops/200396", "https://data.delijn.be/stops/204804"], ["https://data.delijn.be/stops/102632", "https://data.delijn.be/stops/103334"], ["https://data.delijn.be/stops/300480", "https://data.delijn.be/stops/300535"], ["https://data.delijn.be/stops/503150", "https://data.delijn.be/stops/508148"], ["https://data.delijn.be/stops/504093", "https://data.delijn.be/stops/505196"], ["https://data.delijn.be/stops/208222", "https://data.delijn.be/stops/209282"], ["https://data.delijn.be/stops/402222", "https://data.delijn.be/stops/409631"], ["https://data.delijn.be/stops/402976", "https://data.delijn.be/stops/403317"], ["https://data.delijn.be/stops/505257", "https://data.delijn.be/stops/508292"], ["https://data.delijn.be/stops/307213", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/109693", "https://data.delijn.be/stops/109695"], ["https://data.delijn.be/stops/401572", "https://data.delijn.be/stops/402248"], ["https://data.delijn.be/stops/206756", "https://data.delijn.be/stops/207515"], ["https://data.delijn.be/stops/106590", "https://data.delijn.be/stops/107251"], ["https://data.delijn.be/stops/201401", "https://data.delijn.be/stops/202364"], ["https://data.delijn.be/stops/407452", "https://data.delijn.be/stops/407460"], ["https://data.delijn.be/stops/503633", "https://data.delijn.be/stops/508633"], ["https://data.delijn.be/stops/301596", "https://data.delijn.be/stops/307675"], ["https://data.delijn.be/stops/300288", "https://data.delijn.be/stops/300303"], ["https://data.delijn.be/stops/208538", "https://data.delijn.be/stops/209693"], ["https://data.delijn.be/stops/301603", "https://data.delijn.be/stops/301620"], ["https://data.delijn.be/stops/401783", "https://data.delijn.be/stops/410251"], ["https://data.delijn.be/stops/408840", "https://data.delijn.be/stops/408841"], ["https://data.delijn.be/stops/209776", "https://data.delijn.be/stops/219031"], ["https://data.delijn.be/stops/400827", "https://data.delijn.be/stops/402011"], ["https://data.delijn.be/stops/200076", "https://data.delijn.be/stops/201242"], ["https://data.delijn.be/stops/200958", "https://data.delijn.be/stops/209852"], ["https://data.delijn.be/stops/301745", "https://data.delijn.be/stops/308413"], ["https://data.delijn.be/stops/500002", "https://data.delijn.be/stops/505132"], ["https://data.delijn.be/stops/502574", "https://data.delijn.be/stops/507571"], ["https://data.delijn.be/stops/307251", "https://data.delijn.be/stops/307252"], ["https://data.delijn.be/stops/208110", "https://data.delijn.be/stops/219009"], ["https://data.delijn.be/stops/301165", "https://data.delijn.be/stops/307693"], ["https://data.delijn.be/stops/402095", "https://data.delijn.be/stops/402486"], ["https://data.delijn.be/stops/503425", "https://data.delijn.be/stops/508441"], ["https://data.delijn.be/stops/208718", "https://data.delijn.be/stops/209496"], ["https://data.delijn.be/stops/501205", "https://data.delijn.be/stops/501321"], ["https://data.delijn.be/stops/404767", "https://data.delijn.be/stops/404817"], ["https://data.delijn.be/stops/408284", "https://data.delijn.be/stops/408376"], ["https://data.delijn.be/stops/403077", "https://data.delijn.be/stops/403250"], ["https://data.delijn.be/stops/208174", "https://data.delijn.be/stops/209174"], ["https://data.delijn.be/stops/206471", "https://data.delijn.be/stops/207470"], ["https://data.delijn.be/stops/407498", "https://data.delijn.be/stops/407540"], ["https://data.delijn.be/stops/304296", "https://data.delijn.be/stops/304478"], ["https://data.delijn.be/stops/503111", "https://data.delijn.be/stops/508112"], ["https://data.delijn.be/stops/504862", "https://data.delijn.be/stops/505951"], ["https://data.delijn.be/stops/505138", "https://data.delijn.be/stops/505296"], ["https://data.delijn.be/stops/502754", "https://data.delijn.be/stops/505647"], ["https://data.delijn.be/stops/407803", "https://data.delijn.be/stops/407848"], ["https://data.delijn.be/stops/208159", "https://data.delijn.be/stops/209098"], ["https://data.delijn.be/stops/501617", "https://data.delijn.be/stops/506015"], ["https://data.delijn.be/stops/301122", "https://data.delijn.be/stops/301132"], ["https://data.delijn.be/stops/304877", "https://data.delijn.be/stops/307830"], ["https://data.delijn.be/stops/505814", "https://data.delijn.be/stops/507173"], ["https://data.delijn.be/stops/103087", "https://data.delijn.be/stops/107468"], ["https://data.delijn.be/stops/405696", "https://data.delijn.be/stops/405925"], ["https://data.delijn.be/stops/208536", "https://data.delijn.be/stops/209696"], ["https://data.delijn.be/stops/102567", "https://data.delijn.be/stops/406488"], ["https://data.delijn.be/stops/406826", "https://data.delijn.be/stops/409433"], ["https://data.delijn.be/stops/206546", "https://data.delijn.be/stops/209750"], ["https://data.delijn.be/stops/208149", "https://data.delijn.be/stops/209149"], ["https://data.delijn.be/stops/300543", "https://data.delijn.be/stops/300561"], ["https://data.delijn.be/stops/501245", "https://data.delijn.be/stops/501254"], ["https://data.delijn.be/stops/208225", "https://data.delijn.be/stops/208774"], ["https://data.delijn.be/stops/501423", "https://data.delijn.be/stops/506423"], ["https://data.delijn.be/stops/407692", "https://data.delijn.be/stops/407693"], ["https://data.delijn.be/stops/104666", "https://data.delijn.be/stops/108464"], ["https://data.delijn.be/stops/106955", "https://data.delijn.be/stops/106959"], ["https://data.delijn.be/stops/201683", "https://data.delijn.be/stops/210081"], ["https://data.delijn.be/stops/402873", "https://data.delijn.be/stops/402876"], ["https://data.delijn.be/stops/407538", "https://data.delijn.be/stops/407557"], ["https://data.delijn.be/stops/502128", "https://data.delijn.be/stops/502146"], ["https://data.delijn.be/stops/109314", "https://data.delijn.be/stops/109867"], ["https://data.delijn.be/stops/308506", "https://data.delijn.be/stops/308591"], ["https://data.delijn.be/stops/103066", "https://data.delijn.be/stops/305823"], ["https://data.delijn.be/stops/404042", "https://data.delijn.be/stops/404049"], ["https://data.delijn.be/stops/402105", "https://data.delijn.be/stops/407328"], ["https://data.delijn.be/stops/405772", "https://data.delijn.be/stops/409420"], ["https://data.delijn.be/stops/400312", "https://data.delijn.be/stops/400313"], ["https://data.delijn.be/stops/403132", "https://data.delijn.be/stops/403411"], ["https://data.delijn.be/stops/502326", "https://data.delijn.be/stops/507326"], ["https://data.delijn.be/stops/207797", "https://data.delijn.be/stops/208759"], ["https://data.delijn.be/stops/107224", "https://data.delijn.be/stops/109886"], ["https://data.delijn.be/stops/403255", "https://data.delijn.be/stops/403428"], ["https://data.delijn.be/stops/400063", "https://data.delijn.be/stops/400096"], ["https://data.delijn.be/stops/303188", "https://data.delijn.be/stops/303212"], ["https://data.delijn.be/stops/303824", "https://data.delijn.be/stops/303827"], ["https://data.delijn.be/stops/405875", "https://data.delijn.be/stops/406995"], ["https://data.delijn.be/stops/406443", "https://data.delijn.be/stops/409349"], ["https://data.delijn.be/stops/301517", "https://data.delijn.be/stops/301527"], ["https://data.delijn.be/stops/508105", "https://data.delijn.be/stops/508974"], ["https://data.delijn.be/stops/206145", "https://data.delijn.be/stops/207145"], ["https://data.delijn.be/stops/201370", "https://data.delijn.be/stops/201446"], ["https://data.delijn.be/stops/401776", "https://data.delijn.be/stops/401781"], ["https://data.delijn.be/stops/503277", "https://data.delijn.be/stops/504713"], ["https://data.delijn.be/stops/109115", "https://data.delijn.be/stops/109120"], ["https://data.delijn.be/stops/405527", "https://data.delijn.be/stops/405530"], ["https://data.delijn.be/stops/101442", "https://data.delijn.be/stops/106479"], ["https://data.delijn.be/stops/406305", "https://data.delijn.be/stops/406364"], ["https://data.delijn.be/stops/303497", "https://data.delijn.be/stops/303499"], ["https://data.delijn.be/stops/505687", "https://data.delijn.be/stops/507070"], ["https://data.delijn.be/stops/302722", "https://data.delijn.be/stops/308833"], ["https://data.delijn.be/stops/207453", "https://data.delijn.be/stops/207482"], ["https://data.delijn.be/stops/209303", "https://data.delijn.be/stops/507962"], ["https://data.delijn.be/stops/103108", "https://data.delijn.be/stops/104770"], ["https://data.delijn.be/stops/501115", "https://data.delijn.be/stops/506113"], ["https://data.delijn.be/stops/105844", "https://data.delijn.be/stops/105847"], ["https://data.delijn.be/stops/400085", "https://data.delijn.be/stops/400152"], ["https://data.delijn.be/stops/304403", "https://data.delijn.be/stops/307414"], ["https://data.delijn.be/stops/503714", "https://data.delijn.be/stops/508739"], ["https://data.delijn.be/stops/303733", "https://data.delijn.be/stops/307258"], ["https://data.delijn.be/stops/101789", "https://data.delijn.be/stops/106364"], ["https://data.delijn.be/stops/302091", "https://data.delijn.be/stops/302102"], ["https://data.delijn.be/stops/108874", "https://data.delijn.be/stops/109507"], ["https://data.delijn.be/stops/507817", "https://data.delijn.be/stops/508346"], ["https://data.delijn.be/stops/502665", "https://data.delijn.be/stops/505013"], ["https://data.delijn.be/stops/408981", "https://data.delijn.be/stops/408994"], ["https://data.delijn.be/stops/505306", "https://data.delijn.be/stops/508932"], ["https://data.delijn.be/stops/200135", "https://data.delijn.be/stops/200136"], ["https://data.delijn.be/stops/107315", "https://data.delijn.be/stops/108970"], ["https://data.delijn.be/stops/501064", "https://data.delijn.be/stops/501065"], ["https://data.delijn.be/stops/201672", "https://data.delijn.be/stops/203211"], ["https://data.delijn.be/stops/302374", "https://data.delijn.be/stops/302375"], ["https://data.delijn.be/stops/301257", "https://data.delijn.be/stops/301258"], ["https://data.delijn.be/stops/108042", "https://data.delijn.be/stops/108043"], ["https://data.delijn.be/stops/104018", "https://data.delijn.be/stops/107262"], ["https://data.delijn.be/stops/408135", "https://data.delijn.be/stops/408136"], ["https://data.delijn.be/stops/103313", "https://data.delijn.be/stops/109420"], ["https://data.delijn.be/stops/203785", "https://data.delijn.be/stops/203786"], ["https://data.delijn.be/stops/507912", "https://data.delijn.be/stops/509946"], ["https://data.delijn.be/stops/102217", "https://data.delijn.be/stops/102671"], ["https://data.delijn.be/stops/105602", "https://data.delijn.be/stops/105604"], ["https://data.delijn.be/stops/507090", "https://data.delijn.be/stops/507644"], ["https://data.delijn.be/stops/400911", "https://data.delijn.be/stops/400962"], ["https://data.delijn.be/stops/304359", "https://data.delijn.be/stops/307368"], ["https://data.delijn.be/stops/406158", "https://data.delijn.be/stops/406297"], ["https://data.delijn.be/stops/200070", "https://data.delijn.be/stops/200448"], ["https://data.delijn.be/stops/303818", "https://data.delijn.be/stops/303845"], ["https://data.delijn.be/stops/406108", "https://data.delijn.be/stops/406109"], ["https://data.delijn.be/stops/503982", "https://data.delijn.be/stops/508982"], ["https://data.delijn.be/stops/206002", "https://data.delijn.be/stops/207002"], ["https://data.delijn.be/stops/400452", "https://data.delijn.be/stops/400453"], ["https://data.delijn.be/stops/301184", "https://data.delijn.be/stops/304072"], ["https://data.delijn.be/stops/105139", "https://data.delijn.be/stops/305830"], ["https://data.delijn.be/stops/300323", "https://data.delijn.be/stops/300335"], ["https://data.delijn.be/stops/102598", "https://data.delijn.be/stops/102603"], ["https://data.delijn.be/stops/401127", "https://data.delijn.be/stops/401135"], ["https://data.delijn.be/stops/103496", "https://data.delijn.be/stops/106215"], ["https://data.delijn.be/stops/107492", "https://data.delijn.be/stops/107518"], ["https://data.delijn.be/stops/300267", "https://data.delijn.be/stops/302151"], ["https://data.delijn.be/stops/206305", "https://data.delijn.be/stops/206880"], ["https://data.delijn.be/stops/303123", "https://data.delijn.be/stops/307206"], ["https://data.delijn.be/stops/305603", "https://data.delijn.be/stops/305606"], ["https://data.delijn.be/stops/107300", "https://data.delijn.be/stops/107600"], ["https://data.delijn.be/stops/400825", "https://data.delijn.be/stops/403574"], ["https://data.delijn.be/stops/509299", "https://data.delijn.be/stops/509861"], ["https://data.delijn.be/stops/503656", "https://data.delijn.be/stops/505526"], ["https://data.delijn.be/stops/206377", "https://data.delijn.be/stops/207916"], ["https://data.delijn.be/stops/400830", "https://data.delijn.be/stops/409394"], ["https://data.delijn.be/stops/504376", "https://data.delijn.be/stops/507918"], ["https://data.delijn.be/stops/302848", "https://data.delijn.be/stops/308823"], ["https://data.delijn.be/stops/505099", "https://data.delijn.be/stops/507274"], ["https://data.delijn.be/stops/207712", "https://data.delijn.be/stops/207744"], ["https://data.delijn.be/stops/503332", "https://data.delijn.be/stops/508330"], ["https://data.delijn.be/stops/106395", "https://data.delijn.be/stops/107280"], ["https://data.delijn.be/stops/400878", "https://data.delijn.be/stops/400879"], ["https://data.delijn.be/stops/507278", "https://data.delijn.be/stops/507279"], ["https://data.delijn.be/stops/501600", "https://data.delijn.be/stops/506683"], ["https://data.delijn.be/stops/301255", "https://data.delijn.be/stops/308261"], ["https://data.delijn.be/stops/502218", "https://data.delijn.be/stops/507208"], ["https://data.delijn.be/stops/107600", "https://data.delijn.be/stops/108230"], ["https://data.delijn.be/stops/502351", "https://data.delijn.be/stops/502571"], ["https://data.delijn.be/stops/200205", "https://data.delijn.be/stops/202000"], ["https://data.delijn.be/stops/206595", "https://data.delijn.be/stops/207596"], ["https://data.delijn.be/stops/304542", "https://data.delijn.be/stops/307569"], ["https://data.delijn.be/stops/304722", "https://data.delijn.be/stops/306968"], ["https://data.delijn.be/stops/106607", "https://data.delijn.be/stops/106688"], ["https://data.delijn.be/stops/401504", "https://data.delijn.be/stops/404333"], ["https://data.delijn.be/stops/101386", "https://data.delijn.be/stops/101394"], ["https://data.delijn.be/stops/307372", "https://data.delijn.be/stops/308640"], ["https://data.delijn.be/stops/406313", "https://data.delijn.be/stops/406322"], ["https://data.delijn.be/stops/300072", "https://data.delijn.be/stops/304671"], ["https://data.delijn.be/stops/502363", "https://data.delijn.be/stops/507363"], ["https://data.delijn.be/stops/104596", "https://data.delijn.be/stops/107426"], ["https://data.delijn.be/stops/202388", "https://data.delijn.be/stops/202655"], ["https://data.delijn.be/stops/304157", "https://data.delijn.be/stops/307758"], ["https://data.delijn.be/stops/200669", "https://data.delijn.be/stops/508847"], ["https://data.delijn.be/stops/206484", "https://data.delijn.be/stops/206552"], ["https://data.delijn.be/stops/507318", "https://data.delijn.be/stops/507534"], ["https://data.delijn.be/stops/504090", "https://data.delijn.be/stops/508474"], ["https://data.delijn.be/stops/201001", "https://data.delijn.be/stops/202540"], ["https://data.delijn.be/stops/408143", "https://data.delijn.be/stops/308202"], ["https://data.delijn.be/stops/303091", "https://data.delijn.be/stops/303113"], ["https://data.delijn.be/stops/407819", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/503642", "https://data.delijn.be/stops/504876"], ["https://data.delijn.be/stops/305342", "https://data.delijn.be/stops/305345"], ["https://data.delijn.be/stops/402720", "https://data.delijn.be/stops/410057"], ["https://data.delijn.be/stops/202712", "https://data.delijn.be/stops/203712"], ["https://data.delijn.be/stops/108306", "https://data.delijn.be/stops/108308"], ["https://data.delijn.be/stops/403924", "https://data.delijn.be/stops/404005"], ["https://data.delijn.be/stops/405154", "https://data.delijn.be/stops/405160"], ["https://data.delijn.be/stops/105339", "https://data.delijn.be/stops/105341"], ["https://data.delijn.be/stops/208418", "https://data.delijn.be/stops/209418"], ["https://data.delijn.be/stops/106594", "https://data.delijn.be/stops/107790"], ["https://data.delijn.be/stops/106671", "https://data.delijn.be/stops/106673"], ["https://data.delijn.be/stops/305069", "https://data.delijn.be/stops/305079"], ["https://data.delijn.be/stops/507231", "https://data.delijn.be/stops/507237"], ["https://data.delijn.be/stops/305261", "https://data.delijn.be/stops/307296"], ["https://data.delijn.be/stops/501695", "https://data.delijn.be/stops/502061"], ["https://data.delijn.be/stops/301519", "https://data.delijn.be/stops/305737"], ["https://data.delijn.be/stops/300727", "https://data.delijn.be/stops/304254"], ["https://data.delijn.be/stops/106039", "https://data.delijn.be/stops/106041"], ["https://data.delijn.be/stops/302675", "https://data.delijn.be/stops/302679"], ["https://data.delijn.be/stops/202676", "https://data.delijn.be/stops/203677"], ["https://data.delijn.be/stops/304060", "https://data.delijn.be/stops/307504"], ["https://data.delijn.be/stops/108504", "https://data.delijn.be/stops/108506"], ["https://data.delijn.be/stops/506019", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/304805", "https://data.delijn.be/stops/308771"], ["https://data.delijn.be/stops/401355", "https://data.delijn.be/stops/401356"], ["https://data.delijn.be/stops/206888", "https://data.delijn.be/stops/207883"], ["https://data.delijn.be/stops/102675", "https://data.delijn.be/stops/105415"], ["https://data.delijn.be/stops/503487", "https://data.delijn.be/stops/509190"], ["https://data.delijn.be/stops/305285", "https://data.delijn.be/stops/305288"], ["https://data.delijn.be/stops/501322", "https://data.delijn.be/stops/506322"], ["https://data.delijn.be/stops/401784", "https://data.delijn.be/stops/401785"], ["https://data.delijn.be/stops/401410", "https://data.delijn.be/stops/300987"], ["https://data.delijn.be/stops/402642", "https://data.delijn.be/stops/402643"], ["https://data.delijn.be/stops/202558", "https://data.delijn.be/stops/203558"], ["https://data.delijn.be/stops/504909", "https://data.delijn.be/stops/504940"], ["https://data.delijn.be/stops/103037", "https://data.delijn.be/stops/107407"], ["https://data.delijn.be/stops/406169", "https://data.delijn.be/stops/406172"], ["https://data.delijn.be/stops/502668", "https://data.delijn.be/stops/502766"], ["https://data.delijn.be/stops/106215", "https://data.delijn.be/stops/106216"], ["https://data.delijn.be/stops/301967", "https://data.delijn.be/stops/307167"], ["https://data.delijn.be/stops/200506", "https://data.delijn.be/stops/201506"], ["https://data.delijn.be/stops/303594", "https://data.delijn.be/stops/308604"], ["https://data.delijn.be/stops/304662", "https://data.delijn.be/stops/304665"], ["https://data.delijn.be/stops/302385", "https://data.delijn.be/stops/304068"], ["https://data.delijn.be/stops/109023", "https://data.delijn.be/stops/109026"], ["https://data.delijn.be/stops/402406", "https://data.delijn.be/stops/402410"], ["https://data.delijn.be/stops/107921", "https://data.delijn.be/stops/308797"], ["https://data.delijn.be/stops/403411", "https://data.delijn.be/stops/403845"], ["https://data.delijn.be/stops/405397", "https://data.delijn.be/stops/408606"], ["https://data.delijn.be/stops/208263", "https://data.delijn.be/stops/209263"], ["https://data.delijn.be/stops/206967", "https://data.delijn.be/stops/207929"], ["https://data.delijn.be/stops/302952", "https://data.delijn.be/stops/306374"], ["https://data.delijn.be/stops/405633", "https://data.delijn.be/stops/405634"], ["https://data.delijn.be/stops/302113", "https://data.delijn.be/stops/302120"], ["https://data.delijn.be/stops/500024", "https://data.delijn.be/stops/500943"], ["https://data.delijn.be/stops/305567", "https://data.delijn.be/stops/307184"], ["https://data.delijn.be/stops/307149", "https://data.delijn.be/stops/307150"], ["https://data.delijn.be/stops/303421", "https://data.delijn.be/stops/304987"], ["https://data.delijn.be/stops/500118", "https://data.delijn.be/stops/507672"], ["https://data.delijn.be/stops/405322", "https://data.delijn.be/stops/405326"], ["https://data.delijn.be/stops/505060", "https://data.delijn.be/stops/505646"], ["https://data.delijn.be/stops/105740", "https://data.delijn.be/stops/105750"], ["https://data.delijn.be/stops/504594", "https://data.delijn.be/stops/505367"], ["https://data.delijn.be/stops/406205", "https://data.delijn.be/stops/410353"], ["https://data.delijn.be/stops/202360", "https://data.delijn.be/stops/202361"], ["https://data.delijn.be/stops/407657", "https://data.delijn.be/stops/407713"], ["https://data.delijn.be/stops/207672", "https://data.delijn.be/stops/208101"], ["https://data.delijn.be/stops/202743", "https://data.delijn.be/stops/203742"], ["https://data.delijn.be/stops/403092", "https://data.delijn.be/stops/403120"], ["https://data.delijn.be/stops/407363", "https://data.delijn.be/stops/408477"], ["https://data.delijn.be/stops/101261", "https://data.delijn.be/stops/103675"], ["https://data.delijn.be/stops/206124", "https://data.delijn.be/stops/207512"], ["https://data.delijn.be/stops/107622", "https://data.delijn.be/stops/109764"], ["https://data.delijn.be/stops/400037", "https://data.delijn.be/stops/400041"], ["https://data.delijn.be/stops/305628", "https://data.delijn.be/stops/305766"], ["https://data.delijn.be/stops/205987", "https://data.delijn.be/stops/209284"], ["https://data.delijn.be/stops/304135", "https://data.delijn.be/stops/307760"], ["https://data.delijn.be/stops/105111", "https://data.delijn.be/stops/105112"], ["https://data.delijn.be/stops/401574", "https://data.delijn.be/stops/407328"], ["https://data.delijn.be/stops/304866", "https://data.delijn.be/stops/304868"], ["https://data.delijn.be/stops/206406", "https://data.delijn.be/stops/207407"], ["https://data.delijn.be/stops/306765", "https://data.delijn.be/stops/307273"], ["https://data.delijn.be/stops/102199", "https://data.delijn.be/stops/103747"], ["https://data.delijn.be/stops/104485", "https://data.delijn.be/stops/105110"], ["https://data.delijn.be/stops/503335", "https://data.delijn.be/stops/503343"], ["https://data.delijn.be/stops/308660", "https://data.delijn.be/stops/308661"], ["https://data.delijn.be/stops/306873", "https://data.delijn.be/stops/306874"], ["https://data.delijn.be/stops/210058", "https://data.delijn.be/stops/211058"], ["https://data.delijn.be/stops/406205", "https://data.delijn.be/stops/406295"], ["https://data.delijn.be/stops/502013", "https://data.delijn.be/stops/507168"], ["https://data.delijn.be/stops/503945", "https://data.delijn.be/stops/508162"], ["https://data.delijn.be/stops/302915", "https://data.delijn.be/stops/303236"], ["https://data.delijn.be/stops/300945", "https://data.delijn.be/stops/300946"], ["https://data.delijn.be/stops/300232", "https://data.delijn.be/stops/302412"], ["https://data.delijn.be/stops/400621", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/506409", "https://data.delijn.be/stops/506410"], ["https://data.delijn.be/stops/207390", "https://data.delijn.be/stops/207391"], ["https://data.delijn.be/stops/200008", "https://data.delijn.be/stops/200416"], ["https://data.delijn.be/stops/503489", "https://data.delijn.be/stops/505718"], ["https://data.delijn.be/stops/101005", "https://data.delijn.be/stops/101141"], ["https://data.delijn.be/stops/102197", "https://data.delijn.be/stops/105259"], ["https://data.delijn.be/stops/302257", "https://data.delijn.be/stops/304343"], ["https://data.delijn.be/stops/302620", "https://data.delijn.be/stops/305726"], ["https://data.delijn.be/stops/105709", "https://data.delijn.be/stops/106078"], ["https://data.delijn.be/stops/101973", "https://data.delijn.be/stops/109705"], ["https://data.delijn.be/stops/504064", "https://data.delijn.be/stops/509064"], ["https://data.delijn.be/stops/506215", "https://data.delijn.be/stops/506221"], ["https://data.delijn.be/stops/300870", "https://data.delijn.be/stops/302234"], ["https://data.delijn.be/stops/403688", "https://data.delijn.be/stops/403689"], ["https://data.delijn.be/stops/505104", "https://data.delijn.be/stops/508887"], ["https://data.delijn.be/stops/105283", "https://data.delijn.be/stops/109957"], ["https://data.delijn.be/stops/400287", "https://data.delijn.be/stops/400402"], ["https://data.delijn.be/stops/406193", "https://data.delijn.be/stops/406746"], ["https://data.delijn.be/stops/404960", "https://data.delijn.be/stops/409524"], ["https://data.delijn.be/stops/501003", "https://data.delijn.be/stops/501056"], ["https://data.delijn.be/stops/508555", "https://data.delijn.be/stops/509404"], ["https://data.delijn.be/stops/209979", "https://data.delijn.be/stops/214003"], ["https://data.delijn.be/stops/201849", "https://data.delijn.be/stops/209641"], ["https://data.delijn.be/stops/400913", "https://data.delijn.be/stops/400918"], ["https://data.delijn.be/stops/404558", "https://data.delijn.be/stops/406706"], ["https://data.delijn.be/stops/504609", "https://data.delijn.be/stops/504614"], ["https://data.delijn.be/stops/101134", "https://data.delijn.be/stops/107805"], ["https://data.delijn.be/stops/400658", "https://data.delijn.be/stops/400662"], ["https://data.delijn.be/stops/207764", "https://data.delijn.be/stops/207790"], ["https://data.delijn.be/stops/101671", "https://data.delijn.be/stops/408809"], ["https://data.delijn.be/stops/201598", "https://data.delijn.be/stops/210132"], ["https://data.delijn.be/stops/302022", "https://data.delijn.be/stops/302047"], ["https://data.delijn.be/stops/502513", "https://data.delijn.be/stops/507513"], ["https://data.delijn.be/stops/109836", "https://data.delijn.be/stops/109856"], ["https://data.delijn.be/stops/206006", "https://data.delijn.be/stops/207079"], ["https://data.delijn.be/stops/303124", "https://data.delijn.be/stops/303130"], ["https://data.delijn.be/stops/101923", "https://data.delijn.be/stops/106506"], ["https://data.delijn.be/stops/503854", "https://data.delijn.be/stops/508857"], ["https://data.delijn.be/stops/407045", "https://data.delijn.be/stops/407079"], ["https://data.delijn.be/stops/105219", "https://data.delijn.be/stops/308817"], ["https://data.delijn.be/stops/204437", "https://data.delijn.be/stops/204749"], ["https://data.delijn.be/stops/302061", "https://data.delijn.be/stops/303516"], ["https://data.delijn.be/stops/106954", "https://data.delijn.be/stops/107267"], ["https://data.delijn.be/stops/304539", "https://data.delijn.be/stops/307576"], ["https://data.delijn.be/stops/503760", "https://data.delijn.be/stops/508760"], ["https://data.delijn.be/stops/301068", "https://data.delijn.be/stops/301071"], ["https://data.delijn.be/stops/202529", "https://data.delijn.be/stops/204063"], ["https://data.delijn.be/stops/302823", "https://data.delijn.be/stops/308981"], ["https://data.delijn.be/stops/104768", "https://data.delijn.be/stops/104771"], ["https://data.delijn.be/stops/200083", "https://data.delijn.be/stops/200269"], ["https://data.delijn.be/stops/405077", "https://data.delijn.be/stops/406501"], ["https://data.delijn.be/stops/502756", "https://data.delijn.be/stops/502761"], ["https://data.delijn.be/stops/209387", "https://data.delijn.be/stops/209411"], ["https://data.delijn.be/stops/106421", "https://data.delijn.be/stops/106422"], ["https://data.delijn.be/stops/303465", "https://data.delijn.be/stops/303478"], ["https://data.delijn.be/stops/403084", "https://data.delijn.be/stops/403085"], ["https://data.delijn.be/stops/509120", "https://data.delijn.be/stops/509481"], ["https://data.delijn.be/stops/206666", "https://data.delijn.be/stops/206868"], ["https://data.delijn.be/stops/300874", "https://data.delijn.be/stops/306641"], ["https://data.delijn.be/stops/303346", "https://data.delijn.be/stops/306336"], ["https://data.delijn.be/stops/200724", "https://data.delijn.be/stops/203329"], ["https://data.delijn.be/stops/406436", "https://data.delijn.be/stops/406445"], ["https://data.delijn.be/stops/102489", "https://data.delijn.be/stops/400383"], ["https://data.delijn.be/stops/102985", "https://data.delijn.be/stops/103675"], ["https://data.delijn.be/stops/201005", "https://data.delijn.be/stops/202524"], ["https://data.delijn.be/stops/406711", "https://data.delijn.be/stops/306781"], ["https://data.delijn.be/stops/101537", "https://data.delijn.be/stops/109022"], ["https://data.delijn.be/stops/501007", "https://data.delijn.be/stops/508253"], ["https://data.delijn.be/stops/200162", "https://data.delijn.be/stops/201162"], ["https://data.delijn.be/stops/204421", "https://data.delijn.be/stops/204829"], ["https://data.delijn.be/stops/202616", "https://data.delijn.be/stops/203594"], ["https://data.delijn.be/stops/202955", "https://data.delijn.be/stops/203749"], ["https://data.delijn.be/stops/403201", "https://data.delijn.be/stops/403419"], ["https://data.delijn.be/stops/105314", "https://data.delijn.be/stops/105317"], ["https://data.delijn.be/stops/503962", "https://data.delijn.be/stops/504667"], ["https://data.delijn.be/stops/201863", "https://data.delijn.be/stops/203667"], ["https://data.delijn.be/stops/102398", "https://data.delijn.be/stops/102421"], ["https://data.delijn.be/stops/209606", "https://data.delijn.be/stops/307606"], ["https://data.delijn.be/stops/503667", "https://data.delijn.be/stops/505131"], ["https://data.delijn.be/stops/503317", "https://data.delijn.be/stops/504668"], ["https://data.delijn.be/stops/501361", "https://data.delijn.be/stops/506117"], ["https://data.delijn.be/stops/206033", "https://data.delijn.be/stops/206034"], ["https://data.delijn.be/stops/206003", "https://data.delijn.be/stops/206524"], ["https://data.delijn.be/stops/206906", "https://data.delijn.be/stops/207108"], ["https://data.delijn.be/stops/103227", "https://data.delijn.be/stops/103228"], ["https://data.delijn.be/stops/400749", "https://data.delijn.be/stops/407670"], ["https://data.delijn.be/stops/304046", "https://data.delijn.be/stops/304792"], ["https://data.delijn.be/stops/503175", "https://data.delijn.be/stops/508164"], ["https://data.delijn.be/stops/102729", "https://data.delijn.be/stops/106590"], ["https://data.delijn.be/stops/502559", "https://data.delijn.be/stops/507559"], ["https://data.delijn.be/stops/204522", "https://data.delijn.be/stops/204756"], ["https://data.delijn.be/stops/301953", "https://data.delijn.be/stops/307055"], ["https://data.delijn.be/stops/303480", "https://data.delijn.be/stops/308739"], ["https://data.delijn.be/stops/504991", "https://data.delijn.be/stops/507948"], ["https://data.delijn.be/stops/301868", "https://data.delijn.be/stops/301875"], ["https://data.delijn.be/stops/509592", "https://data.delijn.be/stops/509594"], ["https://data.delijn.be/stops/102765", "https://data.delijn.be/stops/103090"], ["https://data.delijn.be/stops/204154", "https://data.delijn.be/stops/205153"], ["https://data.delijn.be/stops/407063", "https://data.delijn.be/stops/408001"], ["https://data.delijn.be/stops/505389", "https://data.delijn.be/stops/508106"], ["https://data.delijn.be/stops/404891", "https://data.delijn.be/stops/404904"], ["https://data.delijn.be/stops/200047", "https://data.delijn.be/stops/201245"], ["https://data.delijn.be/stops/502084", "https://data.delijn.be/stops/507101"], ["https://data.delijn.be/stops/105018", "https://data.delijn.be/stops/106830"], ["https://data.delijn.be/stops/201868", "https://data.delijn.be/stops/202657"], ["https://data.delijn.be/stops/300200", "https://data.delijn.be/stops/304655"], ["https://data.delijn.be/stops/505269", "https://data.delijn.be/stops/508784"], ["https://data.delijn.be/stops/101205", "https://data.delijn.be/stops/105500"], ["https://data.delijn.be/stops/502277", "https://data.delijn.be/stops/502289"], ["https://data.delijn.be/stops/101595", "https://data.delijn.be/stops/107180"], ["https://data.delijn.be/stops/300056", "https://data.delijn.be/stops/306793"], ["https://data.delijn.be/stops/302260", "https://data.delijn.be/stops/302271"], ["https://data.delijn.be/stops/204409", "https://data.delijn.be/stops/205201"], ["https://data.delijn.be/stops/400037", "https://data.delijn.be/stops/400175"], ["https://data.delijn.be/stops/409747", "https://data.delijn.be/stops/409752"], ["https://data.delijn.be/stops/505163", "https://data.delijn.be/stops/509425"], ["https://data.delijn.be/stops/506145", "https://data.delijn.be/stops/506150"], ["https://data.delijn.be/stops/403325", "https://data.delijn.be/stops/405984"], ["https://data.delijn.be/stops/404941", "https://data.delijn.be/stops/405648"], ["https://data.delijn.be/stops/202875", "https://data.delijn.be/stops/206968"], ["https://data.delijn.be/stops/503844", "https://data.delijn.be/stops/508844"], ["https://data.delijn.be/stops/209337", "https://data.delijn.be/stops/209338"], ["https://data.delijn.be/stops/407595", "https://data.delijn.be/stops/410349"], ["https://data.delijn.be/stops/405330", "https://data.delijn.be/stops/409311"], ["https://data.delijn.be/stops/402428", "https://data.delijn.be/stops/409856"], ["https://data.delijn.be/stops/203521", "https://data.delijn.be/stops/203540"], ["https://data.delijn.be/stops/204250", "https://data.delijn.be/stops/205208"], ["https://data.delijn.be/stops/204208", "https://data.delijn.be/stops/205208"], ["https://data.delijn.be/stops/201016", "https://data.delijn.be/stops/201551"], ["https://data.delijn.be/stops/304303", "https://data.delijn.be/stops/304358"], ["https://data.delijn.be/stops/409093", "https://data.delijn.be/stops/409224"], ["https://data.delijn.be/stops/105006", "https://data.delijn.be/stops/105074"], ["https://data.delijn.be/stops/302557", "https://data.delijn.be/stops/306638"], ["https://data.delijn.be/stops/304688", "https://data.delijn.be/stops/307158"], ["https://data.delijn.be/stops/202338", "https://data.delijn.be/stops/203338"], ["https://data.delijn.be/stops/101507", "https://data.delijn.be/stops/101509"], ["https://data.delijn.be/stops/300189", "https://data.delijn.be/stops/304163"], ["https://data.delijn.be/stops/208789", "https://data.delijn.be/stops/209347"], ["https://data.delijn.be/stops/101752", "https://data.delijn.be/stops/109825"], ["https://data.delijn.be/stops/104905", "https://data.delijn.be/stops/104910"], ["https://data.delijn.be/stops/502333", "https://data.delijn.be/stops/507333"], ["https://data.delijn.be/stops/304007", "https://data.delijn.be/stops/304008"], ["https://data.delijn.be/stops/301797", "https://data.delijn.be/stops/305395"], ["https://data.delijn.be/stops/200350", "https://data.delijn.be/stops/211335"], ["https://data.delijn.be/stops/108134", "https://data.delijn.be/stops/108136"], ["https://data.delijn.be/stops/503804", "https://data.delijn.be/stops/508803"], ["https://data.delijn.be/stops/206888", "https://data.delijn.be/stops/207358"], ["https://data.delijn.be/stops/307154", "https://data.delijn.be/stops/307155"], ["https://data.delijn.be/stops/504466", "https://data.delijn.be/stops/509418"], ["https://data.delijn.be/stops/206216", "https://data.delijn.be/stops/207215"], ["https://data.delijn.be/stops/208070", "https://data.delijn.be/stops/208072"], ["https://data.delijn.be/stops/306956", "https://data.delijn.be/stops/308295"], ["https://data.delijn.be/stops/405698", "https://data.delijn.be/stops/405909"], ["https://data.delijn.be/stops/402068", "https://data.delijn.be/stops/402766"], ["https://data.delijn.be/stops/204523", "https://data.delijn.be/stops/205523"], ["https://data.delijn.be/stops/202502", "https://data.delijn.be/stops/203501"], ["https://data.delijn.be/stops/404586", "https://data.delijn.be/stops/406913"], ["https://data.delijn.be/stops/200624", "https://data.delijn.be/stops/211093"], ["https://data.delijn.be/stops/404402", "https://data.delijn.be/stops/404444"], ["https://data.delijn.be/stops/204723", "https://data.delijn.be/stops/205722"], ["https://data.delijn.be/stops/503343", "https://data.delijn.be/stops/508344"], ["https://data.delijn.be/stops/202647", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/108702", "https://data.delijn.be/stops/108704"], ["https://data.delijn.be/stops/400453", "https://data.delijn.be/stops/407686"], ["https://data.delijn.be/stops/406299", "https://data.delijn.be/stops/409100"], ["https://data.delijn.be/stops/302931", "https://data.delijn.be/stops/307466"], ["https://data.delijn.be/stops/400830", "https://data.delijn.be/stops/401900"], ["https://data.delijn.be/stops/109457", "https://data.delijn.be/stops/109460"], ["https://data.delijn.be/stops/301835", "https://data.delijn.be/stops/305871"], ["https://data.delijn.be/stops/504679", "https://data.delijn.be/stops/504858"], ["https://data.delijn.be/stops/206738", "https://data.delijn.be/stops/206976"], ["https://data.delijn.be/stops/300271", "https://data.delijn.be/stops/302148"], ["https://data.delijn.be/stops/103925", "https://data.delijn.be/stops/104015"], ["https://data.delijn.be/stops/109058", "https://data.delijn.be/stops/109065"], ["https://data.delijn.be/stops/501456", "https://data.delijn.be/stops/501457"], ["https://data.delijn.be/stops/303183", "https://data.delijn.be/stops/303193"], ["https://data.delijn.be/stops/510012", "https://data.delijn.be/stops/510013"], ["https://data.delijn.be/stops/404200", "https://data.delijn.be/stops/404214"], ["https://data.delijn.be/stops/200753", "https://data.delijn.be/stops/201814"], ["https://data.delijn.be/stops/408270", "https://data.delijn.be/stops/408375"], ["https://data.delijn.be/stops/502691", "https://data.delijn.be/stops/507691"], ["https://data.delijn.be/stops/400540", "https://data.delijn.be/stops/403186"], ["https://data.delijn.be/stops/400512", "https://data.delijn.be/stops/400513"], ["https://data.delijn.be/stops/407010", "https://data.delijn.be/stops/407011"], ["https://data.delijn.be/stops/208678", "https://data.delijn.be/stops/209426"], ["https://data.delijn.be/stops/201714", "https://data.delijn.be/stops/202378"], ["https://data.delijn.be/stops/500010", "https://data.delijn.be/stops/505737"], ["https://data.delijn.be/stops/406915", "https://data.delijn.be/stops/406933"], ["https://data.delijn.be/stops/308496", "https://data.delijn.be/stops/308538"], ["https://data.delijn.be/stops/200231", "https://data.delijn.be/stops/200468"], ["https://data.delijn.be/stops/204721", "https://data.delijn.be/stops/205718"], ["https://data.delijn.be/stops/400793", "https://data.delijn.be/stops/400892"], ["https://data.delijn.be/stops/402254", "https://data.delijn.be/stops/402290"], ["https://data.delijn.be/stops/404488", "https://data.delijn.be/stops/404489"], ["https://data.delijn.be/stops/303837", "https://data.delijn.be/stops/303838"], ["https://data.delijn.be/stops/305228", "https://data.delijn.be/stops/305908"], ["https://data.delijn.be/stops/209132", "https://data.delijn.be/stops/209197"], ["https://data.delijn.be/stops/506173", "https://data.delijn.be/stops/506184"], ["https://data.delijn.be/stops/105060", "https://data.delijn.be/stops/106711"], ["https://data.delijn.be/stops/400786", "https://data.delijn.be/stops/409588"], ["https://data.delijn.be/stops/300423", "https://data.delijn.be/stops/308063"], ["https://data.delijn.be/stops/209078", "https://data.delijn.be/stops/218016"], ["https://data.delijn.be/stops/204995", "https://data.delijn.be/stops/303839"], ["https://data.delijn.be/stops/505956", "https://data.delijn.be/stops/508287"], ["https://data.delijn.be/stops/105547", "https://data.delijn.be/stops/106131"], ["https://data.delijn.be/stops/204064", "https://data.delijn.be/stops/205092"], ["https://data.delijn.be/stops/102322", "https://data.delijn.be/stops/106463"], ["https://data.delijn.be/stops/205090", "https://data.delijn.be/stops/214018"], ["https://data.delijn.be/stops/405327", "https://data.delijn.be/stops/405370"], ["https://data.delijn.be/stops/303849", "https://data.delijn.be/stops/303863"], ["https://data.delijn.be/stops/408164", "https://data.delijn.be/stops/408165"], ["https://data.delijn.be/stops/404655", "https://data.delijn.be/stops/404675"], ["https://data.delijn.be/stops/105987", "https://data.delijn.be/stops/105988"], ["https://data.delijn.be/stops/203024", "https://data.delijn.be/stops/203025"], ["https://data.delijn.be/stops/204122", "https://data.delijn.be/stops/205122"], ["https://data.delijn.be/stops/402946", "https://data.delijn.be/stops/306021"], ["https://data.delijn.be/stops/300237", "https://data.delijn.be/stops/302412"], ["https://data.delijn.be/stops/505969", "https://data.delijn.be/stops/508828"], ["https://data.delijn.be/stops/408598", "https://data.delijn.be/stops/408654"], ["https://data.delijn.be/stops/301192", "https://data.delijn.be/stops/307614"], ["https://data.delijn.be/stops/504283", "https://data.delijn.be/stops/509279"], ["https://data.delijn.be/stops/105599", "https://data.delijn.be/stops/106360"], ["https://data.delijn.be/stops/204079", "https://data.delijn.be/stops/205832"], ["https://data.delijn.be/stops/206226", "https://data.delijn.be/stops/300182"], ["https://data.delijn.be/stops/308512", "https://data.delijn.be/stops/308690"], ["https://data.delijn.be/stops/404464", "https://data.delijn.be/stops/406878"], ["https://data.delijn.be/stops/508299", "https://data.delijn.be/stops/508304"], ["https://data.delijn.be/stops/302273", "https://data.delijn.be/stops/306786"], ["https://data.delijn.be/stops/504819", "https://data.delijn.be/stops/508208"], ["https://data.delijn.be/stops/406603", "https://data.delijn.be/stops/406646"], ["https://data.delijn.be/stops/103186", "https://data.delijn.be/stops/103230"], ["https://data.delijn.be/stops/406159", "https://data.delijn.be/stops/406287"], ["https://data.delijn.be/stops/105971", "https://data.delijn.be/stops/205635"], ["https://data.delijn.be/stops/108062", "https://data.delijn.be/stops/108363"], ["https://data.delijn.be/stops/207423", "https://data.delijn.be/stops/207805"], ["https://data.delijn.be/stops/407258", "https://data.delijn.be/stops/407263"], ["https://data.delijn.be/stops/404506", "https://data.delijn.be/stops/404573"], ["https://data.delijn.be/stops/207744", "https://data.delijn.be/stops/207745"], ["https://data.delijn.be/stops/403621", "https://data.delijn.be/stops/403623"], ["https://data.delijn.be/stops/106290", "https://data.delijn.be/stops/106305"], ["https://data.delijn.be/stops/508710", "https://data.delijn.be/stops/509947"], ["https://data.delijn.be/stops/304952", "https://data.delijn.be/stops/304953"], ["https://data.delijn.be/stops/200117", "https://data.delijn.be/stops/201116"], ["https://data.delijn.be/stops/303457", "https://data.delijn.be/stops/304225"], ["https://data.delijn.be/stops/304248", "https://data.delijn.be/stops/304286"], ["https://data.delijn.be/stops/104812", "https://data.delijn.be/stops/105164"], ["https://data.delijn.be/stops/200744", "https://data.delijn.be/stops/202781"], ["https://data.delijn.be/stops/503320", "https://data.delijn.be/stops/508133"], ["https://data.delijn.be/stops/108846", "https://data.delijn.be/stops/108863"], ["https://data.delijn.be/stops/501018", "https://data.delijn.be/stops/506018"], ["https://data.delijn.be/stops/206893", "https://data.delijn.be/stops/207892"], ["https://data.delijn.be/stops/400848", "https://data.delijn.be/stops/400855"], ["https://data.delijn.be/stops/208355", "https://data.delijn.be/stops/209354"], ["https://data.delijn.be/stops/208179", "https://data.delijn.be/stops/208180"], ["https://data.delijn.be/stops/106479", "https://data.delijn.be/stops/109646"], ["https://data.delijn.be/stops/503241", "https://data.delijn.be/stops/508241"], ["https://data.delijn.be/stops/300214", "https://data.delijn.be/stops/307464"], ["https://data.delijn.be/stops/300478", "https://data.delijn.be/stops/302863"], ["https://data.delijn.be/stops/407493", "https://data.delijn.be/stops/407540"], ["https://data.delijn.be/stops/208155", "https://data.delijn.be/stops/209156"], ["https://data.delijn.be/stops/106964", "https://data.delijn.be/stops/106965"], ["https://data.delijn.be/stops/405357", "https://data.delijn.be/stops/408994"], ["https://data.delijn.be/stops/504354", "https://data.delijn.be/stops/509354"], ["https://data.delijn.be/stops/300896", "https://data.delijn.be/stops/304190"], ["https://data.delijn.be/stops/303623", "https://data.delijn.be/stops/304254"], ["https://data.delijn.be/stops/303829", "https://data.delijn.be/stops/305419"], ["https://data.delijn.be/stops/300379", "https://data.delijn.be/stops/300384"], ["https://data.delijn.be/stops/404851", "https://data.delijn.be/stops/404881"], ["https://data.delijn.be/stops/307199", "https://data.delijn.be/stops/307200"], ["https://data.delijn.be/stops/400450", "https://data.delijn.be/stops/400452"], ["https://data.delijn.be/stops/204406", "https://data.delijn.be/stops/205413"], ["https://data.delijn.be/stops/504943", "https://data.delijn.be/stops/505549"], ["https://data.delijn.be/stops/200928", "https://data.delijn.be/stops/202046"], ["https://data.delijn.be/stops/201313", "https://data.delijn.be/stops/210132"], ["https://data.delijn.be/stops/303576", "https://data.delijn.be/stops/303580"], ["https://data.delijn.be/stops/301301", "https://data.delijn.be/stops/306116"], ["https://data.delijn.be/stops/400004", "https://data.delijn.be/stops/400010"], ["https://data.delijn.be/stops/103647", "https://data.delijn.be/stops/103648"], ["https://data.delijn.be/stops/505748", "https://data.delijn.be/stops/507543"], ["https://data.delijn.be/stops/302869", "https://data.delijn.be/stops/302870"], ["https://data.delijn.be/stops/200826", "https://data.delijn.be/stops/200827"], ["https://data.delijn.be/stops/108453", "https://data.delijn.be/stops/108454"], ["https://data.delijn.be/stops/105048", "https://data.delijn.be/stops/106710"], ["https://data.delijn.be/stops/504222", "https://data.delijn.be/stops/509223"], ["https://data.delijn.be/stops/504635", "https://data.delijn.be/stops/509635"], ["https://data.delijn.be/stops/102054", "https://data.delijn.be/stops/103307"], ["https://data.delijn.be/stops/207651", "https://data.delijn.be/stops/207652"], ["https://data.delijn.be/stops/403274", "https://data.delijn.be/stops/403384"], ["https://data.delijn.be/stops/106658", "https://data.delijn.be/stops/106661"], ["https://data.delijn.be/stops/206327", "https://data.delijn.be/stops/304554"], ["https://data.delijn.be/stops/103520", "https://data.delijn.be/stops/104485"], ["https://data.delijn.be/stops/401174", "https://data.delijn.be/stops/406655"], ["https://data.delijn.be/stops/305335", "https://data.delijn.be/stops/305887"], ["https://data.delijn.be/stops/202869", "https://data.delijn.be/stops/208835"], ["https://data.delijn.be/stops/404302", "https://data.delijn.be/stops/409568"], ["https://data.delijn.be/stops/407241", "https://data.delijn.be/stops/407449"], ["https://data.delijn.be/stops/206561", "https://data.delijn.be/stops/209125"], ["https://data.delijn.be/stops/208218", "https://data.delijn.be/stops/209771"], ["https://data.delijn.be/stops/103557", "https://data.delijn.be/stops/103592"], ["https://data.delijn.be/stops/401034", "https://data.delijn.be/stops/404909"], ["https://data.delijn.be/stops/305945", "https://data.delijn.be/stops/308416"], ["https://data.delijn.be/stops/206059", "https://data.delijn.be/stops/206449"], ["https://data.delijn.be/stops/104647", "https://data.delijn.be/stops/107986"], ["https://data.delijn.be/stops/302219", "https://data.delijn.be/stops/302226"], ["https://data.delijn.be/stops/503416", "https://data.delijn.be/stops/508424"], ["https://data.delijn.be/stops/107393", "https://data.delijn.be/stops/107406"], ["https://data.delijn.be/stops/406088", "https://data.delijn.be/stops/407114"], ["https://data.delijn.be/stops/401157", "https://data.delijn.be/stops/407301"], ["https://data.delijn.be/stops/210085", "https://data.delijn.be/stops/211085"], ["https://data.delijn.be/stops/301504", "https://data.delijn.be/stops/301508"], ["https://data.delijn.be/stops/507206", "https://data.delijn.be/stops/507209"], ["https://data.delijn.be/stops/206214", "https://data.delijn.be/stops/206640"], ["https://data.delijn.be/stops/300014", "https://data.delijn.be/stops/307001"], ["https://data.delijn.be/stops/304207", "https://data.delijn.be/stops/307504"], ["https://data.delijn.be/stops/104893", "https://data.delijn.be/stops/109617"], ["https://data.delijn.be/stops/304239", "https://data.delijn.be/stops/304240"], ["https://data.delijn.be/stops/405400", "https://data.delijn.be/stops/405401"], ["https://data.delijn.be/stops/408315", "https://data.delijn.be/stops/408345"], ["https://data.delijn.be/stops/408560", "https://data.delijn.be/stops/408672"], ["https://data.delijn.be/stops/108746", "https://data.delijn.be/stops/108747"], ["https://data.delijn.be/stops/107546", "https://data.delijn.be/stops/109590"], ["https://data.delijn.be/stops/504963", "https://data.delijn.be/stops/509964"], ["https://data.delijn.be/stops/201864", "https://data.delijn.be/stops/202085"], ["https://data.delijn.be/stops/208463", "https://data.delijn.be/stops/209684"], ["https://data.delijn.be/stops/200620", "https://data.delijn.be/stops/201894"], ["https://data.delijn.be/stops/402719", "https://data.delijn.be/stops/402722"], ["https://data.delijn.be/stops/401773", "https://data.delijn.be/stops/406341"], ["https://data.delijn.be/stops/102869", "https://data.delijn.be/stops/105860"], ["https://data.delijn.be/stops/308138", "https://data.delijn.be/stops/308144"], ["https://data.delijn.be/stops/204634", "https://data.delijn.be/stops/205634"], ["https://data.delijn.be/stops/301976", "https://data.delijn.be/stops/301979"], ["https://data.delijn.be/stops/201088", "https://data.delijn.be/stops/202960"], ["https://data.delijn.be/stops/305160", "https://data.delijn.be/stops/305173"], ["https://data.delijn.be/stops/305198", "https://data.delijn.be/stops/307086"], ["https://data.delijn.be/stops/407423", "https://data.delijn.be/stops/407470"], ["https://data.delijn.be/stops/107590", "https://data.delijn.be/stops/109060"], ["https://data.delijn.be/stops/106366", "https://data.delijn.be/stops/106368"], ["https://data.delijn.be/stops/503755", "https://data.delijn.be/stops/508755"], ["https://data.delijn.be/stops/502112", "https://data.delijn.be/stops/505894"], ["https://data.delijn.be/stops/502143", "https://data.delijn.be/stops/502767"], ["https://data.delijn.be/stops/304831", "https://data.delijn.be/stops/304885"], ["https://data.delijn.be/stops/503837", "https://data.delijn.be/stops/505159"], ["https://data.delijn.be/stops/105726", "https://data.delijn.be/stops/105728"], ["https://data.delijn.be/stops/502587", "https://data.delijn.be/stops/505766"], ["https://data.delijn.be/stops/504862", "https://data.delijn.be/stops/508289"], ["https://data.delijn.be/stops/201692", "https://data.delijn.be/stops/203395"], ["https://data.delijn.be/stops/300887", "https://data.delijn.be/stops/305382"], ["https://data.delijn.be/stops/402115", "https://data.delijn.be/stops/402125"], ["https://data.delijn.be/stops/503776", "https://data.delijn.be/stops/508776"], ["https://data.delijn.be/stops/301769", "https://data.delijn.be/stops/301774"], ["https://data.delijn.be/stops/109330", "https://data.delijn.be/stops/300026"], ["https://data.delijn.be/stops/205719", "https://data.delijn.be/stops/214012"], ["https://data.delijn.be/stops/301480", "https://data.delijn.be/stops/301488"], ["https://data.delijn.be/stops/208298", "https://data.delijn.be/stops/209299"], ["https://data.delijn.be/stops/305743", "https://data.delijn.be/stops/306332"], ["https://data.delijn.be/stops/407728", "https://data.delijn.be/stops/407729"], ["https://data.delijn.be/stops/208506", "https://data.delijn.be/stops/208507"], ["https://data.delijn.be/stops/103294", "https://data.delijn.be/stops/105171"], ["https://data.delijn.be/stops/106269", "https://data.delijn.be/stops/106270"], ["https://data.delijn.be/stops/401899", "https://data.delijn.be/stops/406420"], ["https://data.delijn.be/stops/200473", "https://data.delijn.be/stops/201250"], ["https://data.delijn.be/stops/200389", "https://data.delijn.be/stops/201349"], ["https://data.delijn.be/stops/401099", "https://data.delijn.be/stops/401100"], ["https://data.delijn.be/stops/306882", "https://data.delijn.be/stops/306883"], ["https://data.delijn.be/stops/208601", "https://data.delijn.be/stops/307603"], ["https://data.delijn.be/stops/200399", "https://data.delijn.be/stops/200410"], ["https://data.delijn.be/stops/407830", "https://data.delijn.be/stops/407847"], ["https://data.delijn.be/stops/400568", "https://data.delijn.be/stops/400569"], ["https://data.delijn.be/stops/207238", "https://data.delijn.be/stops/207925"], ["https://data.delijn.be/stops/401187", "https://data.delijn.be/stops/401326"], ["https://data.delijn.be/stops/404207", "https://data.delijn.be/stops/404216"], ["https://data.delijn.be/stops/101845", "https://data.delijn.be/stops/102446"], ["https://data.delijn.be/stops/103981", "https://data.delijn.be/stops/105736"], ["https://data.delijn.be/stops/501422", "https://data.delijn.be/stops/506421"], ["https://data.delijn.be/stops/404543", "https://data.delijn.be/stops/406856"], ["https://data.delijn.be/stops/509247", "https://data.delijn.be/stops/509250"], ["https://data.delijn.be/stops/204788", "https://data.delijn.be/stops/205790"], ["https://data.delijn.be/stops/503573", "https://data.delijn.be/stops/503582"], ["https://data.delijn.be/stops/302614", "https://data.delijn.be/stops/302635"], ["https://data.delijn.be/stops/503333", "https://data.delijn.be/stops/508259"], ["https://data.delijn.be/stops/201779", "https://data.delijn.be/stops/209248"], ["https://data.delijn.be/stops/400791", "https://data.delijn.be/stops/409532"], ["https://data.delijn.be/stops/207165", "https://data.delijn.be/stops/308900"], ["https://data.delijn.be/stops/501596", "https://data.delijn.be/stops/504513"], ["https://data.delijn.be/stops/106018", "https://data.delijn.be/stops/106019"], ["https://data.delijn.be/stops/507616", "https://data.delijn.be/stops/507617"], ["https://data.delijn.be/stops/101268", "https://data.delijn.be/stops/101274"], ["https://data.delijn.be/stops/101290", "https://data.delijn.be/stops/101515"], ["https://data.delijn.be/stops/401413", "https://data.delijn.be/stops/301108"], ["https://data.delijn.be/stops/200278", "https://data.delijn.be/stops/201995"], ["https://data.delijn.be/stops/300570", "https://data.delijn.be/stops/301599"], ["https://data.delijn.be/stops/108836", "https://data.delijn.be/stops/108849"], ["https://data.delijn.be/stops/201863", "https://data.delijn.be/stops/202327"], ["https://data.delijn.be/stops/505096", "https://data.delijn.be/stops/505944"], ["https://data.delijn.be/stops/406178", "https://data.delijn.be/stops/406202"], ["https://data.delijn.be/stops/501254", "https://data.delijn.be/stops/506200"], ["https://data.delijn.be/stops/300305", "https://data.delijn.be/stops/301286"], ["https://data.delijn.be/stops/503487", "https://data.delijn.be/stops/509474"], ["https://data.delijn.be/stops/300772", "https://data.delijn.be/stops/303223"], ["https://data.delijn.be/stops/302308", "https://data.delijn.be/stops/302330"], ["https://data.delijn.be/stops/407301", "https://data.delijn.be/stops/409427"], ["https://data.delijn.be/stops/302276", "https://data.delijn.be/stops/303516"], ["https://data.delijn.be/stops/400839", "https://data.delijn.be/stops/409567"], ["https://data.delijn.be/stops/504571", "https://data.delijn.be/stops/509464"], ["https://data.delijn.be/stops/502328", "https://data.delijn.be/stops/505574"], ["https://data.delijn.be/stops/504136", "https://data.delijn.be/stops/509136"], ["https://data.delijn.be/stops/303617", "https://data.delijn.be/stops/306700"], ["https://data.delijn.be/stops/403307", "https://data.delijn.be/stops/403467"], ["https://data.delijn.be/stops/304159", "https://data.delijn.be/stops/307758"], ["https://data.delijn.be/stops/503204", "https://data.delijn.be/stops/503662"], ["https://data.delijn.be/stops/200583", "https://data.delijn.be/stops/200590"], ["https://data.delijn.be/stops/503210", "https://data.delijn.be/stops/508211"], ["https://data.delijn.be/stops/300230", "https://data.delijn.be/stops/300231"], ["https://data.delijn.be/stops/202289", "https://data.delijn.be/stops/202334"], ["https://data.delijn.be/stops/200742", "https://data.delijn.be/stops/203383"], ["https://data.delijn.be/stops/400212", "https://data.delijn.be/stops/408551"], ["https://data.delijn.be/stops/407918", "https://data.delijn.be/stops/305716"], ["https://data.delijn.be/stops/305171", "https://data.delijn.be/stops/307101"], ["https://data.delijn.be/stops/504178", "https://data.delijn.be/stops/504182"], ["https://data.delijn.be/stops/208216", "https://data.delijn.be/stops/209785"], ["https://data.delijn.be/stops/400877", "https://data.delijn.be/stops/401664"], ["https://data.delijn.be/stops/304144", "https://data.delijn.be/stops/304170"], ["https://data.delijn.be/stops/501355", "https://data.delijn.be/stops/501525"], ["https://data.delijn.be/stops/206923", "https://data.delijn.be/stops/207923"], ["https://data.delijn.be/stops/305438", "https://data.delijn.be/stops/305516"], ["https://data.delijn.be/stops/505422", "https://data.delijn.be/stops/509615"], ["https://data.delijn.be/stops/407984", "https://data.delijn.be/stops/408125"], ["https://data.delijn.be/stops/208748", "https://data.delijn.be/stops/209413"], ["https://data.delijn.be/stops/302950", "https://data.delijn.be/stops/306297"], ["https://data.delijn.be/stops/108710", "https://data.delijn.be/stops/108713"], ["https://data.delijn.be/stops/104042", "https://data.delijn.be/stops/108519"], ["https://data.delijn.be/stops/504430", "https://data.delijn.be/stops/509430"], ["https://data.delijn.be/stops/109448", "https://data.delijn.be/stops/109555"], ["https://data.delijn.be/stops/501629", "https://data.delijn.be/stops/503634"], ["https://data.delijn.be/stops/308462", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/104392", "https://data.delijn.be/stops/104396"], ["https://data.delijn.be/stops/200410", "https://data.delijn.be/stops/201399"], ["https://data.delijn.be/stops/504650", "https://data.delijn.be/stops/509650"], ["https://data.delijn.be/stops/108089", "https://data.delijn.be/stops/108689"], ["https://data.delijn.be/stops/503320", "https://data.delijn.be/stops/505823"], ["https://data.delijn.be/stops/208792", "https://data.delijn.be/stops/209786"], ["https://data.delijn.be/stops/505315", "https://data.delijn.be/stops/505696"], ["https://data.delijn.be/stops/107009", "https://data.delijn.be/stops/107011"], ["https://data.delijn.be/stops/401009", "https://data.delijn.be/stops/401010"], ["https://data.delijn.be/stops/405211", "https://data.delijn.be/stops/407341"], ["https://data.delijn.be/stops/205345", "https://data.delijn.be/stops/205346"], ["https://data.delijn.be/stops/206753", "https://data.delijn.be/stops/207851"], ["https://data.delijn.be/stops/503679", "https://data.delijn.be/stops/508677"], ["https://data.delijn.be/stops/204178", "https://data.delijn.be/stops/204905"], ["https://data.delijn.be/stops/204308", "https://data.delijn.be/stops/214008"], ["https://data.delijn.be/stops/107557", "https://data.delijn.be/stops/107559"], ["https://data.delijn.be/stops/104463", "https://data.delijn.be/stops/107197"], ["https://data.delijn.be/stops/408900", "https://data.delijn.be/stops/408906"], ["https://data.delijn.be/stops/308795", "https://data.delijn.be/stops/308850"], ["https://data.delijn.be/stops/200426", "https://data.delijn.be/stops/201426"], ["https://data.delijn.be/stops/302206", "https://data.delijn.be/stops/305095"], ["https://data.delijn.be/stops/109082", "https://data.delijn.be/stops/109086"], ["https://data.delijn.be/stops/302703", "https://data.delijn.be/stops/302717"], ["https://data.delijn.be/stops/402768", "https://data.delijn.be/stops/408124"], ["https://data.delijn.be/stops/408580", "https://data.delijn.be/stops/408587"], ["https://data.delijn.be/stops/506150", "https://data.delijn.be/stops/506644"], ["https://data.delijn.be/stops/206625", "https://data.delijn.be/stops/207625"], ["https://data.delijn.be/stops/108186", "https://data.delijn.be/stops/108187"], ["https://data.delijn.be/stops/403346", "https://data.delijn.be/stops/403347"], ["https://data.delijn.be/stops/303411", "https://data.delijn.be/stops/303425"], ["https://data.delijn.be/stops/105883", "https://data.delijn.be/stops/105894"], ["https://data.delijn.be/stops/410075", "https://data.delijn.be/stops/410076"], ["https://data.delijn.be/stops/301637", "https://data.delijn.be/stops/301649"], ["https://data.delijn.be/stops/101442", "https://data.delijn.be/stops/107057"], ["https://data.delijn.be/stops/401210", "https://data.delijn.be/stops/401268"], ["https://data.delijn.be/stops/500936", "https://data.delijn.be/stops/500937"], ["https://data.delijn.be/stops/502592", "https://data.delijn.be/stops/505783"], ["https://data.delijn.be/stops/200935", "https://data.delijn.be/stops/203711"], ["https://data.delijn.be/stops/209160", "https://data.delijn.be/stops/209161"], ["https://data.delijn.be/stops/401308", "https://data.delijn.be/stops/406652"], ["https://data.delijn.be/stops/107368", "https://data.delijn.be/stops/107371"], ["https://data.delijn.be/stops/202627", "https://data.delijn.be/stops/203627"], ["https://data.delijn.be/stops/406445", "https://data.delijn.be/stops/406446"], ["https://data.delijn.be/stops/402095", "https://data.delijn.be/stops/402197"], ["https://data.delijn.be/stops/202243", "https://data.delijn.be/stops/202486"], ["https://data.delijn.be/stops/507100", "https://data.delijn.be/stops/507143"], ["https://data.delijn.be/stops/504680", "https://data.delijn.be/stops/509265"], ["https://data.delijn.be/stops/108667", "https://data.delijn.be/stops/306610"], ["https://data.delijn.be/stops/308503", "https://data.delijn.be/stops/308505"], ["https://data.delijn.be/stops/401298", "https://data.delijn.be/stops/401300"], ["https://data.delijn.be/stops/404420", "https://data.delijn.be/stops/404449"], ["https://data.delijn.be/stops/304957", "https://data.delijn.be/stops/304958"], ["https://data.delijn.be/stops/109757", "https://data.delijn.be/stops/109758"], ["https://data.delijn.be/stops/307431", "https://data.delijn.be/stops/307440"], ["https://data.delijn.be/stops/208812", "https://data.delijn.be/stops/208954"], ["https://data.delijn.be/stops/300290", "https://data.delijn.be/stops/300317"], ["https://data.delijn.be/stops/301423", "https://data.delijn.be/stops/307326"], ["https://data.delijn.be/stops/206674", "https://data.delijn.be/stops/208166"], ["https://data.delijn.be/stops/305131", "https://data.delijn.be/stops/305135"], ["https://data.delijn.be/stops/409367", "https://data.delijn.be/stops/409368"], ["https://data.delijn.be/stops/200068", "https://data.delijn.be/stops/200198"], ["https://data.delijn.be/stops/407874", "https://data.delijn.be/stops/408166"], ["https://data.delijn.be/stops/507386", "https://data.delijn.be/stops/507413"], ["https://data.delijn.be/stops/303581", "https://data.delijn.be/stops/306398"], ["https://data.delijn.be/stops/106180", "https://data.delijn.be/stops/106181"], ["https://data.delijn.be/stops/404598", "https://data.delijn.be/stops/406900"], ["https://data.delijn.be/stops/200007", "https://data.delijn.be/stops/201007"], ["https://data.delijn.be/stops/202197", "https://data.delijn.be/stops/203151"], ["https://data.delijn.be/stops/209157", "https://data.delijn.be/stops/209158"], ["https://data.delijn.be/stops/101501", "https://data.delijn.be/stops/104892"], ["https://data.delijn.be/stops/202964", "https://data.delijn.be/stops/206271"], ["https://data.delijn.be/stops/202560", "https://data.delijn.be/stops/203610"], ["https://data.delijn.be/stops/200010", "https://data.delijn.be/stops/200416"], ["https://data.delijn.be/stops/202426", "https://data.delijn.be/stops/203327"], ["https://data.delijn.be/stops/209647", "https://data.delijn.be/stops/209648"], ["https://data.delijn.be/stops/106990", "https://data.delijn.be/stops/107314"], ["https://data.delijn.be/stops/300683", "https://data.delijn.be/stops/305829"], ["https://data.delijn.be/stops/304216", "https://data.delijn.be/stops/307142"], ["https://data.delijn.be/stops/503544", "https://data.delijn.be/stops/503565"], ["https://data.delijn.be/stops/508240", "https://data.delijn.be/stops/508514"], ["https://data.delijn.be/stops/504004", "https://data.delijn.be/stops/508494"], ["https://data.delijn.be/stops/105512", "https://data.delijn.be/stops/108728"], ["https://data.delijn.be/stops/204138", "https://data.delijn.be/stops/205239"], ["https://data.delijn.be/stops/208147", "https://data.delijn.be/stops/209678"], ["https://data.delijn.be/stops/101816", "https://data.delijn.be/stops/107836"], ["https://data.delijn.be/stops/305658", "https://data.delijn.be/stops/305666"], ["https://data.delijn.be/stops/102531", "https://data.delijn.be/stops/405087"], ["https://data.delijn.be/stops/404713", "https://data.delijn.be/stops/404765"], ["https://data.delijn.be/stops/501376", "https://data.delijn.be/stops/504667"], ["https://data.delijn.be/stops/403833", "https://data.delijn.be/stops/403835"], ["https://data.delijn.be/stops/403944", "https://data.delijn.be/stops/404087"], ["https://data.delijn.be/stops/101027", "https://data.delijn.be/stops/101350"], ["https://data.delijn.be/stops/509773", "https://data.delijn.be/stops/509789"], ["https://data.delijn.be/stops/103228", "https://data.delijn.be/stops/103229"], ["https://data.delijn.be/stops/502807", "https://data.delijn.be/stops/509725"], ["https://data.delijn.be/stops/302775", "https://data.delijn.be/stops/304733"], ["https://data.delijn.be/stops/306919", "https://data.delijn.be/stops/306921"], ["https://data.delijn.be/stops/400779", "https://data.delijn.be/stops/400807"], ["https://data.delijn.be/stops/107985", "https://data.delijn.be/stops/107990"], ["https://data.delijn.be/stops/107042", "https://data.delijn.be/stops/108244"], ["https://data.delijn.be/stops/201208", "https://data.delijn.be/stops/202144"], ["https://data.delijn.be/stops/505099", "https://data.delijn.be/stops/508590"], ["https://data.delijn.be/stops/102161", "https://data.delijn.be/stops/107906"], ["https://data.delijn.be/stops/202611", "https://data.delijn.be/stops/202612"], ["https://data.delijn.be/stops/206205", "https://data.delijn.be/stops/207204"], ["https://data.delijn.be/stops/104752", "https://data.delijn.be/stops/107329"], ["https://data.delijn.be/stops/106422", "https://data.delijn.be/stops/106423"], ["https://data.delijn.be/stops/505393", "https://data.delijn.be/stops/508277"], ["https://data.delijn.be/stops/102218", "https://data.delijn.be/stops/105539"], ["https://data.delijn.be/stops/208392", "https://data.delijn.be/stops/209393"], ["https://data.delijn.be/stops/102236", "https://data.delijn.be/stops/105864"], ["https://data.delijn.be/stops/301170", "https://data.delijn.be/stops/303207"], ["https://data.delijn.be/stops/301736", "https://data.delijn.be/stops/308418"], ["https://data.delijn.be/stops/400718", "https://data.delijn.be/stops/409512"], ["https://data.delijn.be/stops/208423", "https://data.delijn.be/stops/209466"], ["https://data.delijn.be/stops/503523", "https://data.delijn.be/stops/508523"], ["https://data.delijn.be/stops/508143", "https://data.delijn.be/stops/508988"], ["https://data.delijn.be/stops/504695", "https://data.delijn.be/stops/504993"], ["https://data.delijn.be/stops/208191", "https://data.delijn.be/stops/208739"], ["https://data.delijn.be/stops/504243", "https://data.delijn.be/stops/509398"], ["https://data.delijn.be/stops/403994", "https://data.delijn.be/stops/407635"], ["https://data.delijn.be/stops/105649", "https://data.delijn.be/stops/105651"], ["https://data.delijn.be/stops/300868", "https://data.delijn.be/stops/302243"], ["https://data.delijn.be/stops/204756", "https://data.delijn.be/stops/205756"], ["https://data.delijn.be/stops/301657", "https://data.delijn.be/stops/301892"], ["https://data.delijn.be/stops/303139", "https://data.delijn.be/stops/308604"], ["https://data.delijn.be/stops/107873", "https://data.delijn.be/stops/107874"], ["https://data.delijn.be/stops/502096", "https://data.delijn.be/stops/502139"], ["https://data.delijn.be/stops/504267", "https://data.delijn.be/stops/505298"], ["https://data.delijn.be/stops/503108", "https://data.delijn.be/stops/503159"], ["https://data.delijn.be/stops/405758", "https://data.delijn.be/stops/405761"], ["https://data.delijn.be/stops/202982", "https://data.delijn.be/stops/203037"], ["https://data.delijn.be/stops/204979", "https://data.delijn.be/stops/209008"], ["https://data.delijn.be/stops/209040", "https://data.delijn.be/stops/209053"], ["https://data.delijn.be/stops/401388", "https://data.delijn.be/stops/401452"], ["https://data.delijn.be/stops/402853", "https://data.delijn.be/stops/306044"], ["https://data.delijn.be/stops/204089", "https://data.delijn.be/stops/205088"], ["https://data.delijn.be/stops/104014", "https://data.delijn.be/stops/106905"], ["https://data.delijn.be/stops/101581", "https://data.delijn.be/stops/105731"], ["https://data.delijn.be/stops/204078", "https://data.delijn.be/stops/204198"], ["https://data.delijn.be/stops/207757", "https://data.delijn.be/stops/207776"], ["https://data.delijn.be/stops/106728", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/304229", "https://data.delijn.be/stops/305443"], ["https://data.delijn.be/stops/401970", "https://data.delijn.be/stops/408094"], ["https://data.delijn.be/stops/407388", "https://data.delijn.be/stops/407389"], ["https://data.delijn.be/stops/302794", "https://data.delijn.be/stops/302795"], ["https://data.delijn.be/stops/403996", "https://data.delijn.be/stops/404081"], ["https://data.delijn.be/stops/305778", "https://data.delijn.be/stops/306878"], ["https://data.delijn.be/stops/301961", "https://data.delijn.be/stops/304153"], ["https://data.delijn.be/stops/206265", "https://data.delijn.be/stops/207977"], ["https://data.delijn.be/stops/406707", "https://data.delijn.be/stops/408001"], ["https://data.delijn.be/stops/408512", "https://data.delijn.be/stops/408706"], ["https://data.delijn.be/stops/503432", "https://data.delijn.be/stops/508346"], ["https://data.delijn.be/stops/206941", "https://data.delijn.be/stops/218012"], ["https://data.delijn.be/stops/500045", "https://data.delijn.be/stops/500047"], ["https://data.delijn.be/stops/406107", "https://data.delijn.be/stops/406114"], ["https://data.delijn.be/stops/404071", "https://data.delijn.be/stops/409257"], ["https://data.delijn.be/stops/204754", "https://data.delijn.be/stops/205753"], ["https://data.delijn.be/stops/406106", "https://data.delijn.be/stops/406115"], ["https://data.delijn.be/stops/208211", "https://data.delijn.be/stops/209808"], ["https://data.delijn.be/stops/304462", "https://data.delijn.be/stops/304463"], ["https://data.delijn.be/stops/209345", "https://data.delijn.be/stops/209346"], ["https://data.delijn.be/stops/501173", "https://data.delijn.be/stops/504495"], ["https://data.delijn.be/stops/200266", "https://data.delijn.be/stops/201218"], ["https://data.delijn.be/stops/405771", "https://data.delijn.be/stops/405889"], ["https://data.delijn.be/stops/304074", "https://data.delijn.be/stops/304115"], ["https://data.delijn.be/stops/508004", "https://data.delijn.be/stops/508008"], ["https://data.delijn.be/stops/204503", "https://data.delijn.be/stops/205501"], ["https://data.delijn.be/stops/308476", "https://data.delijn.be/stops/308477"], ["https://data.delijn.be/stops/209461", "https://data.delijn.be/stops/209683"], ["https://data.delijn.be/stops/204445", "https://data.delijn.be/stops/205671"], ["https://data.delijn.be/stops/406622", "https://data.delijn.be/stops/406623"], ["https://data.delijn.be/stops/205981", "https://data.delijn.be/stops/208686"], ["https://data.delijn.be/stops/208068", "https://data.delijn.be/stops/208071"], ["https://data.delijn.be/stops/302576", "https://data.delijn.be/stops/305125"], ["https://data.delijn.be/stops/501770", "https://data.delijn.be/stops/507222"], ["https://data.delijn.be/stops/405344", "https://data.delijn.be/stops/306900"], ["https://data.delijn.be/stops/207666", "https://data.delijn.be/stops/207668"], ["https://data.delijn.be/stops/105964", "https://data.delijn.be/stops/105968"], ["https://data.delijn.be/stops/306861", "https://data.delijn.be/stops/307438"], ["https://data.delijn.be/stops/501253", "https://data.delijn.be/stops/506256"], ["https://data.delijn.be/stops/408628", "https://data.delijn.be/stops/408700"], ["https://data.delijn.be/stops/201809", "https://data.delijn.be/stops/201845"], ["https://data.delijn.be/stops/204290", "https://data.delijn.be/stops/204330"], ["https://data.delijn.be/stops/106790", "https://data.delijn.be/stops/106793"], ["https://data.delijn.be/stops/301588", "https://data.delijn.be/stops/301590"], ["https://data.delijn.be/stops/308265", "https://data.delijn.be/stops/308268"], ["https://data.delijn.be/stops/101473", "https://data.delijn.be/stops/109615"], ["https://data.delijn.be/stops/407014", "https://data.delijn.be/stops/407045"], ["https://data.delijn.be/stops/403336", "https://data.delijn.be/stops/403995"], ["https://data.delijn.be/stops/102247", "https://data.delijn.be/stops/105874"], ["https://data.delijn.be/stops/200833", "https://data.delijn.be/stops/505646"], ["https://data.delijn.be/stops/101846", "https://data.delijn.be/stops/101852"], ["https://data.delijn.be/stops/504883", "https://data.delijn.be/stops/505964"], ["https://data.delijn.be/stops/301249", "https://data.delijn.be/stops/307409"], ["https://data.delijn.be/stops/208395", "https://data.delijn.be/stops/209395"], ["https://data.delijn.be/stops/105718", "https://data.delijn.be/stops/105719"], ["https://data.delijn.be/stops/504016", "https://data.delijn.be/stops/509016"], ["https://data.delijn.be/stops/102428", "https://data.delijn.be/stops/103592"], ["https://data.delijn.be/stops/101497", "https://data.delijn.be/stops/108304"], ["https://data.delijn.be/stops/503364", "https://data.delijn.be/stops/503714"], ["https://data.delijn.be/stops/102684", "https://data.delijn.be/stops/107339"], ["https://data.delijn.be/stops/202327", "https://data.delijn.be/stops/203327"], ["https://data.delijn.be/stops/206543", "https://data.delijn.be/stops/207563"], ["https://data.delijn.be/stops/102222", "https://data.delijn.be/stops/102702"], ["https://data.delijn.be/stops/504073", "https://data.delijn.be/stops/509073"], ["https://data.delijn.be/stops/502406", "https://data.delijn.be/stops/507621"], ["https://data.delijn.be/stops/407645", "https://data.delijn.be/stops/409628"], ["https://data.delijn.be/stops/509422", "https://data.delijn.be/stops/509719"], ["https://data.delijn.be/stops/300768", "https://data.delijn.be/stops/301071"], ["https://data.delijn.be/stops/209069", "https://data.delijn.be/stops/209154"], ["https://data.delijn.be/stops/106844", "https://data.delijn.be/stops/106845"], ["https://data.delijn.be/stops/502203", "https://data.delijn.be/stops/508312"], ["https://data.delijn.be/stops/204084", "https://data.delijn.be/stops/204085"], ["https://data.delijn.be/stops/403924", "https://data.delijn.be/stops/403925"], ["https://data.delijn.be/stops/101176", "https://data.delijn.be/stops/106788"], ["https://data.delijn.be/stops/407647", "https://data.delijn.be/stops/407648"], ["https://data.delijn.be/stops/405144", "https://data.delijn.be/stops/405167"], ["https://data.delijn.be/stops/305258", "https://data.delijn.be/stops/306342"], ["https://data.delijn.be/stops/502210", "https://data.delijn.be/stops/505327"], ["https://data.delijn.be/stops/503456", "https://data.delijn.be/stops/508456"], ["https://data.delijn.be/stops/502104", "https://data.delijn.be/stops/502127"], ["https://data.delijn.be/stops/202311", "https://data.delijn.be/stops/203311"], ["https://data.delijn.be/stops/400928", "https://data.delijn.be/stops/400933"], ["https://data.delijn.be/stops/104301", "https://data.delijn.be/stops/104551"], ["https://data.delijn.be/stops/502258", "https://data.delijn.be/stops/502262"], ["https://data.delijn.be/stops/302162", "https://data.delijn.be/stops/302177"], ["https://data.delijn.be/stops/409106", "https://data.delijn.be/stops/409107"], ["https://data.delijn.be/stops/405148", "https://data.delijn.be/stops/405286"], ["https://data.delijn.be/stops/404722", "https://data.delijn.be/stops/404723"], ["https://data.delijn.be/stops/406255", "https://data.delijn.be/stops/406291"], ["https://data.delijn.be/stops/303425", "https://data.delijn.be/stops/307951"], ["https://data.delijn.be/stops/101183", "https://data.delijn.be/stops/107873"], ["https://data.delijn.be/stops/504282", "https://data.delijn.be/stops/504289"], ["https://data.delijn.be/stops/304832", "https://data.delijn.be/stops/306173"], ["https://data.delijn.be/stops/403777", "https://data.delijn.be/stops/403793"], ["https://data.delijn.be/stops/302619", "https://data.delijn.be/stops/303265"], ["https://data.delijn.be/stops/409343", "https://data.delijn.be/stops/409664"], ["https://data.delijn.be/stops/502012", "https://data.delijn.be/stops/507244"], ["https://data.delijn.be/stops/202758", "https://data.delijn.be/stops/203758"], ["https://data.delijn.be/stops/303645", "https://data.delijn.be/stops/305540"], ["https://data.delijn.be/stops/404539", "https://data.delijn.be/stops/404566"], ["https://data.delijn.be/stops/401442", "https://data.delijn.be/stops/401566"], ["https://data.delijn.be/stops/405333", "https://data.delijn.be/stops/405341"], ["https://data.delijn.be/stops/503402", "https://data.delijn.be/stops/509773"], ["https://data.delijn.be/stops/300008", "https://data.delijn.be/stops/304610"], ["https://data.delijn.be/stops/208219", "https://data.delijn.be/stops/209772"], ["https://data.delijn.be/stops/402106", "https://data.delijn.be/stops/402107"], ["https://data.delijn.be/stops/407319", "https://data.delijn.be/stops/407781"], ["https://data.delijn.be/stops/200630", "https://data.delijn.be/stops/200954"], ["https://data.delijn.be/stops/400444", "https://data.delijn.be/stops/400446"], ["https://data.delijn.be/stops/208493", "https://data.delijn.be/stops/209735"], ["https://data.delijn.be/stops/106211", "https://data.delijn.be/stops/106212"], ["https://data.delijn.be/stops/501158", "https://data.delijn.be/stops/506644"], ["https://data.delijn.be/stops/304009", "https://data.delijn.be/stops/304824"], ["https://data.delijn.be/stops/302571", "https://data.delijn.be/stops/308118"], ["https://data.delijn.be/stops/300719", "https://data.delijn.be/stops/300731"], ["https://data.delijn.be/stops/204176", "https://data.delijn.be/stops/205241"], ["https://data.delijn.be/stops/105019", "https://data.delijn.be/stops/105097"], ["https://data.delijn.be/stops/204472", "https://data.delijn.be/stops/204777"], ["https://data.delijn.be/stops/402220", "https://data.delijn.be/stops/402221"], ["https://data.delijn.be/stops/101261", "https://data.delijn.be/stops/105270"], ["https://data.delijn.be/stops/101944", "https://data.delijn.be/stops/108753"], ["https://data.delijn.be/stops/306326", "https://data.delijn.be/stops/308266"], ["https://data.delijn.be/stops/206257", "https://data.delijn.be/stops/206262"], ["https://data.delijn.be/stops/203671", "https://data.delijn.be/stops/203672"], ["https://data.delijn.be/stops/206650", "https://data.delijn.be/stops/207127"], ["https://data.delijn.be/stops/502506", "https://data.delijn.be/stops/507506"], ["https://data.delijn.be/stops/206294", "https://data.delijn.be/stops/207286"], ["https://data.delijn.be/stops/203825", "https://data.delijn.be/stops/203826"], ["https://data.delijn.be/stops/308746", "https://data.delijn.be/stops/308747"], ["https://data.delijn.be/stops/106921", "https://data.delijn.be/stops/106945"], ["https://data.delijn.be/stops/301321", "https://data.delijn.be/stops/301913"], ["https://data.delijn.be/stops/103748", "https://data.delijn.be/stops/106293"], ["https://data.delijn.be/stops/206390", "https://data.delijn.be/stops/207391"], ["https://data.delijn.be/stops/407911", "https://data.delijn.be/stops/407912"], ["https://data.delijn.be/stops/504452", "https://data.delijn.be/stops/509452"], ["https://data.delijn.be/stops/201658", "https://data.delijn.be/stops/210048"], ["https://data.delijn.be/stops/405574", "https://data.delijn.be/stops/405576"], ["https://data.delijn.be/stops/502527", "https://data.delijn.be/stops/505336"], ["https://data.delijn.be/stops/208022", "https://data.delijn.be/stops/209016"], ["https://data.delijn.be/stops/105994", "https://data.delijn.be/stops/105998"], ["https://data.delijn.be/stops/104659", "https://data.delijn.be/stops/306606"], ["https://data.delijn.be/stops/303355", "https://data.delijn.be/stops/308892"], ["https://data.delijn.be/stops/502227", "https://data.delijn.be/stops/507822"], ["https://data.delijn.be/stops/203622", "https://data.delijn.be/stops/210043"], ["https://data.delijn.be/stops/407819", "https://data.delijn.be/stops/407822"], ["https://data.delijn.be/stops/101383", "https://data.delijn.be/stops/107099"], ["https://data.delijn.be/stops/405369", "https://data.delijn.be/stops/405385"], ["https://data.delijn.be/stops/503923", "https://data.delijn.be/stops/509174"], ["https://data.delijn.be/stops/300808", "https://data.delijn.be/stops/304582"], ["https://data.delijn.be/stops/303472", "https://data.delijn.be/stops/303474"], ["https://data.delijn.be/stops/504227", "https://data.delijn.be/stops/505707"], ["https://data.delijn.be/stops/206286", "https://data.delijn.be/stops/206294"], ["https://data.delijn.be/stops/503498", "https://data.delijn.be/stops/508877"], ["https://data.delijn.be/stops/404006", "https://data.delijn.be/stops/404013"], ["https://data.delijn.be/stops/101398", "https://data.delijn.be/stops/106533"], ["https://data.delijn.be/stops/104492", "https://data.delijn.be/stops/104870"], ["https://data.delijn.be/stops/403377", "https://data.delijn.be/stops/403553"], ["https://data.delijn.be/stops/301787", "https://data.delijn.be/stops/301790"], ["https://data.delijn.be/stops/401810", "https://data.delijn.be/stops/401811"], ["https://data.delijn.be/stops/108981", "https://data.delijn.be/stops/108984"], ["https://data.delijn.be/stops/304152", "https://data.delijn.be/stops/304153"], ["https://data.delijn.be/stops/304432", "https://data.delijn.be/stops/306064"], ["https://data.delijn.be/stops/501008", "https://data.delijn.be/stops/501068"], ["https://data.delijn.be/stops/303963", "https://data.delijn.be/stops/303970"], ["https://data.delijn.be/stops/200949", "https://data.delijn.be/stops/202097"], ["https://data.delijn.be/stops/300421", "https://data.delijn.be/stops/302696"], ["https://data.delijn.be/stops/205288", "https://data.delijn.be/stops/205546"], ["https://data.delijn.be/stops/305694", "https://data.delijn.be/stops/307839"], ["https://data.delijn.be/stops/504151", "https://data.delijn.be/stops/509151"], ["https://data.delijn.be/stops/206471", "https://data.delijn.be/stops/207137"], ["https://data.delijn.be/stops/202745", "https://data.delijn.be/stops/203946"], ["https://data.delijn.be/stops/209087", "https://data.delijn.be/stops/209088"], ["https://data.delijn.be/stops/300690", "https://data.delijn.be/stops/308936"], ["https://data.delijn.be/stops/304849", "https://data.delijn.be/stops/304856"], ["https://data.delijn.be/stops/301866", "https://data.delijn.be/stops/301873"], ["https://data.delijn.be/stops/400904", "https://data.delijn.be/stops/401246"], ["https://data.delijn.be/stops/206917", "https://data.delijn.be/stops/207262"], ["https://data.delijn.be/stops/101141", "https://data.delijn.be/stops/102847"], ["https://data.delijn.be/stops/203771", "https://data.delijn.be/stops/208641"], ["https://data.delijn.be/stops/305774", "https://data.delijn.be/stops/305775"], ["https://data.delijn.be/stops/200948", "https://data.delijn.be/stops/202047"], ["https://data.delijn.be/stops/303142", "https://data.delijn.be/stops/308438"], ["https://data.delijn.be/stops/102422", "https://data.delijn.be/stops/107318"], ["https://data.delijn.be/stops/409772", "https://data.delijn.be/stops/409775"], ["https://data.delijn.be/stops/302508", "https://data.delijn.be/stops/302514"], ["https://data.delijn.be/stops/503792", "https://data.delijn.be/stops/508791"], ["https://data.delijn.be/stops/303496", "https://data.delijn.be/stops/303504"], ["https://data.delijn.be/stops/501680", "https://data.delijn.be/stops/509261"], ["https://data.delijn.be/stops/303440", "https://data.delijn.be/stops/303458"], ["https://data.delijn.be/stops/504491", "https://data.delijn.be/stops/509490"], ["https://data.delijn.be/stops/208225", "https://data.delijn.be/stops/209225"], ["https://data.delijn.be/stops/503463", "https://data.delijn.be/stops/503467"], ["https://data.delijn.be/stops/103676", "https://data.delijn.be/stops/103732"], ["https://data.delijn.be/stops/104504", "https://data.delijn.be/stops/104508"], ["https://data.delijn.be/stops/400467", "https://data.delijn.be/stops/400469"], ["https://data.delijn.be/stops/302935", "https://data.delijn.be/stops/302936"], ["https://data.delijn.be/stops/102951", "https://data.delijn.be/stops/102952"], ["https://data.delijn.be/stops/303256", "https://data.delijn.be/stops/303277"], ["https://data.delijn.be/stops/106287", "https://data.delijn.be/stops/106289"], ["https://data.delijn.be/stops/407237", "https://data.delijn.be/stops/409858"], ["https://data.delijn.be/stops/501379", "https://data.delijn.be/stops/506394"], ["https://data.delijn.be/stops/202180", "https://data.delijn.be/stops/204201"], ["https://data.delijn.be/stops/505330", "https://data.delijn.be/stops/505775"], ["https://data.delijn.be/stops/409317", "https://data.delijn.be/stops/409334"], ["https://data.delijn.be/stops/407114", "https://data.delijn.be/stops/407865"], ["https://data.delijn.be/stops/208575", "https://data.delijn.be/stops/208588"], ["https://data.delijn.be/stops/108041", "https://data.delijn.be/stops/108043"], ["https://data.delijn.be/stops/202007", "https://data.delijn.be/stops/209908"], ["https://data.delijn.be/stops/301019", "https://data.delijn.be/stops/301022"], ["https://data.delijn.be/stops/206191", "https://data.delijn.be/stops/207191"], ["https://data.delijn.be/stops/202109", "https://data.delijn.be/stops/203167"], ["https://data.delijn.be/stops/201452", "https://data.delijn.be/stops/202011"], ["https://data.delijn.be/stops/503388", "https://data.delijn.be/stops/508347"], ["https://data.delijn.be/stops/206402", "https://data.delijn.be/stops/207401"], ["https://data.delijn.be/stops/201298", "https://data.delijn.be/stops/203142"], ["https://data.delijn.be/stops/106131", "https://data.delijn.be/stops/106240"], ["https://data.delijn.be/stops/307780", "https://data.delijn.be/stops/308911"], ["https://data.delijn.be/stops/403458", "https://data.delijn.be/stops/409321"], ["https://data.delijn.be/stops/204309", "https://data.delijn.be/stops/205448"], ["https://data.delijn.be/stops/503824", "https://data.delijn.be/stops/508824"], ["https://data.delijn.be/stops/200649", "https://data.delijn.be/stops/201316"], ["https://data.delijn.be/stops/103231", "https://data.delijn.be/stops/103557"], ["https://data.delijn.be/stops/502146", "https://data.delijn.be/stops/502152"], ["https://data.delijn.be/stops/203559", "https://data.delijn.be/stops/203562"], ["https://data.delijn.be/stops/407796", "https://data.delijn.be/stops/409643"], ["https://data.delijn.be/stops/503924", "https://data.delijn.be/stops/508924"], ["https://data.delijn.be/stops/105315", "https://data.delijn.be/stops/106000"], ["https://data.delijn.be/stops/304929", "https://data.delijn.be/stops/305225"], ["https://data.delijn.be/stops/507109", "https://data.delijn.be/stops/507114"], ["https://data.delijn.be/stops/407860", "https://data.delijn.be/stops/306056"], ["https://data.delijn.be/stops/304060", "https://data.delijn.be/stops/304086"], ["https://data.delijn.be/stops/302018", "https://data.delijn.be/stops/302034"], ["https://data.delijn.be/stops/108912", "https://data.delijn.be/stops/109398"], ["https://data.delijn.be/stops/501337", "https://data.delijn.be/stops/506311"], ["https://data.delijn.be/stops/305168", "https://data.delijn.be/stops/306914"], ["https://data.delijn.be/stops/207061", "https://data.delijn.be/stops/207446"], ["https://data.delijn.be/stops/403785", "https://data.delijn.be/stops/408978"], ["https://data.delijn.be/stops/305178", "https://data.delijn.be/stops/305193"], ["https://data.delijn.be/stops/105706", "https://data.delijn.be/stops/105708"], ["https://data.delijn.be/stops/301650", "https://data.delijn.be/stops/301651"], ["https://data.delijn.be/stops/103923", "https://data.delijn.be/stops/103924"], ["https://data.delijn.be/stops/102505", "https://data.delijn.be/stops/104945"], ["https://data.delijn.be/stops/303139", "https://data.delijn.be/stops/307056"], ["https://data.delijn.be/stops/400749", "https://data.delijn.be/stops/407590"], ["https://data.delijn.be/stops/107637", "https://data.delijn.be/stops/107704"], ["https://data.delijn.be/stops/202300", "https://data.delijn.be/stops/203300"], ["https://data.delijn.be/stops/504667", "https://data.delijn.be/stops/505354"], ["https://data.delijn.be/stops/200915", "https://data.delijn.be/stops/200942"], ["https://data.delijn.be/stops/101093", "https://data.delijn.be/stops/101131"], ["https://data.delijn.be/stops/401076", "https://data.delijn.be/stops/401165"], ["https://data.delijn.be/stops/101182", "https://data.delijn.be/stops/102593"], ["https://data.delijn.be/stops/101795", "https://data.delijn.be/stops/101801"], ["https://data.delijn.be/stops/405506", "https://data.delijn.be/stops/410086"], ["https://data.delijn.be/stops/102512", "https://data.delijn.be/stops/406479"], ["https://data.delijn.be/stops/500941", "https://data.delijn.be/stops/504831"], ["https://data.delijn.be/stops/301608", "https://data.delijn.be/stops/301658"], ["https://data.delijn.be/stops/107138", "https://data.delijn.be/stops/107139"], ["https://data.delijn.be/stops/400577", "https://data.delijn.be/stops/404153"], ["https://data.delijn.be/stops/403545", "https://data.delijn.be/stops/410323"], ["https://data.delijn.be/stops/300015", "https://data.delijn.be/stops/303092"], ["https://data.delijn.be/stops/208635", "https://data.delijn.be/stops/209098"], ["https://data.delijn.be/stops/106643", "https://data.delijn.be/stops/106650"], ["https://data.delijn.be/stops/304321", "https://data.delijn.be/stops/304331"], ["https://data.delijn.be/stops/301358", "https://data.delijn.be/stops/301967"], ["https://data.delijn.be/stops/509017", "https://data.delijn.be/stops/509508"], ["https://data.delijn.be/stops/508357", "https://data.delijn.be/stops/508371"], ["https://data.delijn.be/stops/200181", "https://data.delijn.be/stops/201196"], ["https://data.delijn.be/stops/408265", "https://data.delijn.be/stops/408272"], ["https://data.delijn.be/stops/303457", "https://data.delijn.be/stops/303458"], ["https://data.delijn.be/stops/401436", "https://data.delijn.be/stops/401437"], ["https://data.delijn.be/stops/101519", "https://data.delijn.be/stops/109008"], ["https://data.delijn.be/stops/200767", "https://data.delijn.be/stops/200776"], ["https://data.delijn.be/stops/204753", "https://data.delijn.be/stops/205754"], ["https://data.delijn.be/stops/301457", "https://data.delijn.be/stops/307930"], ["https://data.delijn.be/stops/405938", "https://data.delijn.be/stops/405947"], ["https://data.delijn.be/stops/505542", "https://data.delijn.be/stops/508568"], ["https://data.delijn.be/stops/109242", "https://data.delijn.be/stops/109243"], ["https://data.delijn.be/stops/405986", "https://data.delijn.be/stops/405987"], ["https://data.delijn.be/stops/101914", "https://data.delijn.be/stops/101915"], ["https://data.delijn.be/stops/405683", "https://data.delijn.be/stops/405825"], ["https://data.delijn.be/stops/103151", "https://data.delijn.be/stops/103272"], ["https://data.delijn.be/stops/206818", "https://data.delijn.be/stops/207820"], ["https://data.delijn.be/stops/106375", "https://data.delijn.be/stops/106385"], ["https://data.delijn.be/stops/505158", "https://data.delijn.be/stops/508781"], ["https://data.delijn.be/stops/109260", "https://data.delijn.be/stops/109263"], ["https://data.delijn.be/stops/506641", "https://data.delijn.be/stops/506659"], ["https://data.delijn.be/stops/206101", "https://data.delijn.be/stops/207844"], ["https://data.delijn.be/stops/408897", "https://data.delijn.be/stops/408916"], ["https://data.delijn.be/stops/101786", "https://data.delijn.be/stops/109144"], ["https://data.delijn.be/stops/200977", "https://data.delijn.be/stops/203906"], ["https://data.delijn.be/stops/101781", "https://data.delijn.be/stops/104521"], ["https://data.delijn.be/stops/304068", "https://data.delijn.be/stops/304118"], ["https://data.delijn.be/stops/208293", "https://data.delijn.be/stops/209725"], ["https://data.delijn.be/stops/205021", "https://data.delijn.be/stops/205408"], ["https://data.delijn.be/stops/301711", "https://data.delijn.be/stops/301741"], ["https://data.delijn.be/stops/209090", "https://data.delijn.be/stops/209655"], ["https://data.delijn.be/stops/105873", "https://data.delijn.be/stops/105877"], ["https://data.delijn.be/stops/103928", "https://data.delijn.be/stops/106900"], ["https://data.delijn.be/stops/501551", "https://data.delijn.be/stops/507519"], ["https://data.delijn.be/stops/101475", "https://data.delijn.be/stops/108734"], ["https://data.delijn.be/stops/400842", "https://data.delijn.be/stops/409575"], ["https://data.delijn.be/stops/108743", "https://data.delijn.be/stops/109561"], ["https://data.delijn.be/stops/216002", "https://data.delijn.be/stops/217002"], ["https://data.delijn.be/stops/207942", "https://data.delijn.be/stops/209101"], ["https://data.delijn.be/stops/205930", "https://data.delijn.be/stops/210105"], ["https://data.delijn.be/stops/503048", "https://data.delijn.be/stops/509845"], ["https://data.delijn.be/stops/302308", "https://data.delijn.be/stops/302481"], ["https://data.delijn.be/stops/400166", "https://data.delijn.be/stops/400168"], ["https://data.delijn.be/stops/206232", "https://data.delijn.be/stops/207803"], ["https://data.delijn.be/stops/408882", "https://data.delijn.be/stops/408883"], ["https://data.delijn.be/stops/407292", "https://data.delijn.be/stops/407293"], ["https://data.delijn.be/stops/101296", "https://data.delijn.be/stops/109807"], ["https://data.delijn.be/stops/105708", "https://data.delijn.be/stops/106069"], ["https://data.delijn.be/stops/403258", "https://data.delijn.be/stops/403395"], ["https://data.delijn.be/stops/303361", "https://data.delijn.be/stops/307810"], ["https://data.delijn.be/stops/204981", "https://data.delijn.be/stops/206489"], ["https://data.delijn.be/stops/108607", "https://data.delijn.be/stops/307433"], ["https://data.delijn.be/stops/503449", "https://data.delijn.be/stops/503465"], ["https://data.delijn.be/stops/404402", "https://data.delijn.be/stops/404403"], ["https://data.delijn.be/stops/104023", "https://data.delijn.be/stops/109884"], ["https://data.delijn.be/stops/500001", "https://data.delijn.be/stops/502294"], ["https://data.delijn.be/stops/108052", "https://data.delijn.be/stops/108053"], ["https://data.delijn.be/stops/303752", "https://data.delijn.be/stops/303788"], ["https://data.delijn.be/stops/504220", "https://data.delijn.be/stops/509221"], ["https://data.delijn.be/stops/104090", "https://data.delijn.be/stops/105120"], ["https://data.delijn.be/stops/108216", "https://data.delijn.be/stops/108217"], ["https://data.delijn.be/stops/302687", "https://data.delijn.be/stops/302688"], ["https://data.delijn.be/stops/200582", "https://data.delijn.be/stops/200590"], ["https://data.delijn.be/stops/208566", "https://data.delijn.be/stops/208611"], ["https://data.delijn.be/stops/308798", "https://data.delijn.be/stops/308850"], ["https://data.delijn.be/stops/505848", "https://data.delijn.be/stops/508841"], ["https://data.delijn.be/stops/303057", "https://data.delijn.be/stops/303965"], ["https://data.delijn.be/stops/302757", "https://data.delijn.be/stops/307046"], ["https://data.delijn.be/stops/400598", "https://data.delijn.be/stops/404042"], ["https://data.delijn.be/stops/106435", "https://data.delijn.be/stops/106499"], ["https://data.delijn.be/stops/404502", "https://data.delijn.be/stops/404534"], ["https://data.delijn.be/stops/404740", "https://data.delijn.be/stops/404741"], ["https://data.delijn.be/stops/407910", "https://data.delijn.be/stops/407997"], ["https://data.delijn.be/stops/104463", "https://data.delijn.be/stops/104464"], ["https://data.delijn.be/stops/501640", "https://data.delijn.be/stops/506640"], ["https://data.delijn.be/stops/101366", "https://data.delijn.be/stops/102746"], ["https://data.delijn.be/stops/407491", "https://data.delijn.be/stops/408600"], ["https://data.delijn.be/stops/306123", "https://data.delijn.be/stops/307143"], ["https://data.delijn.be/stops/401404", "https://data.delijn.be/stops/300919"], ["https://data.delijn.be/stops/106116", "https://data.delijn.be/stops/106117"], ["https://data.delijn.be/stops/307003", "https://data.delijn.be/stops/307004"], ["https://data.delijn.be/stops/405187", "https://data.delijn.be/stops/405215"], ["https://data.delijn.be/stops/303419", "https://data.delijn.be/stops/305085"], ["https://data.delijn.be/stops/504790", "https://data.delijn.be/stops/508519"], ["https://data.delijn.be/stops/102532", "https://data.delijn.be/stops/405108"], ["https://data.delijn.be/stops/102280", "https://data.delijn.be/stops/104860"], ["https://data.delijn.be/stops/203184", "https://data.delijn.be/stops/205587"], ["https://data.delijn.be/stops/102638", "https://data.delijn.be/stops/104928"], ["https://data.delijn.be/stops/102137", "https://data.delijn.be/stops/103478"], ["https://data.delijn.be/stops/403552", "https://data.delijn.be/stops/410282"], ["https://data.delijn.be/stops/306340", "https://data.delijn.be/stops/307819"], ["https://data.delijn.be/stops/304466", "https://data.delijn.be/stops/304467"], ["https://data.delijn.be/stops/300214", "https://data.delijn.be/stops/300215"], ["https://data.delijn.be/stops/405252", "https://data.delijn.be/stops/408367"], ["https://data.delijn.be/stops/404102", "https://data.delijn.be/stops/404103"], ["https://data.delijn.be/stops/404647", "https://data.delijn.be/stops/405512"], ["https://data.delijn.be/stops/305664", "https://data.delijn.be/stops/307102"], ["https://data.delijn.be/stops/402759", "https://data.delijn.be/stops/408124"], ["https://data.delijn.be/stops/302390", "https://data.delijn.be/stops/302392"], ["https://data.delijn.be/stops/206318", "https://data.delijn.be/stops/206319"], ["https://data.delijn.be/stops/200846", "https://data.delijn.be/stops/200847"], ["https://data.delijn.be/stops/104137", "https://data.delijn.be/stops/104139"], ["https://data.delijn.be/stops/405397", "https://data.delijn.be/stops/302833"], ["https://data.delijn.be/stops/402237", "https://data.delijn.be/stops/402293"], ["https://data.delijn.be/stops/200413", "https://data.delijn.be/stops/203359"], ["https://data.delijn.be/stops/504347", "https://data.delijn.be/stops/504354"], ["https://data.delijn.be/stops/103668", "https://data.delijn.be/stops/106215"], ["https://data.delijn.be/stops/200926", "https://data.delijn.be/stops/202392"], ["https://data.delijn.be/stops/504641", "https://data.delijn.be/stops/509190"], ["https://data.delijn.be/stops/306770", "https://data.delijn.be/stops/307733"], ["https://data.delijn.be/stops/407984", "https://data.delijn.be/stops/408032"], ["https://data.delijn.be/stops/405907", "https://data.delijn.be/stops/405932"], ["https://data.delijn.be/stops/403039", "https://data.delijn.be/stops/404721"], ["https://data.delijn.be/stops/102531", "https://data.delijn.be/stops/408351"], ["https://data.delijn.be/stops/407955", "https://data.delijn.be/stops/408054"], ["https://data.delijn.be/stops/103151", "https://data.delijn.be/stops/109987"], ["https://data.delijn.be/stops/305578", "https://data.delijn.be/stops/305579"], ["https://data.delijn.be/stops/402069", "https://data.delijn.be/stops/402079"], ["https://data.delijn.be/stops/200719", "https://data.delijn.be/stops/202576"], ["https://data.delijn.be/stops/202656", "https://data.delijn.be/stops/203657"], ["https://data.delijn.be/stops/102874", "https://data.delijn.be/stops/103371"], ["https://data.delijn.be/stops/407613", "https://data.delijn.be/stops/407651"], ["https://data.delijn.be/stops/203525", "https://data.delijn.be/stops/203960"], ["https://data.delijn.be/stops/206162", "https://data.delijn.be/stops/207162"], ["https://data.delijn.be/stops/405433", "https://data.delijn.be/stops/408792"], ["https://data.delijn.be/stops/204330", "https://data.delijn.be/stops/204547"], ["https://data.delijn.be/stops/305590", "https://data.delijn.be/stops/305591"], ["https://data.delijn.be/stops/109671", "https://data.delijn.be/stops/408450"], ["https://data.delijn.be/stops/202359", "https://data.delijn.be/stops/210133"], ["https://data.delijn.be/stops/202032", "https://data.delijn.be/stops/203034"], ["https://data.delijn.be/stops/504622", "https://data.delijn.be/stops/504631"], ["https://data.delijn.be/stops/207228", "https://data.delijn.be/stops/302153"], ["https://data.delijn.be/stops/504772", "https://data.delijn.be/stops/509291"], ["https://data.delijn.be/stops/504163", "https://data.delijn.be/stops/509162"], ["https://data.delijn.be/stops/104589", "https://data.delijn.be/stops/106414"], ["https://data.delijn.be/stops/503189", "https://data.delijn.be/stops/509819"], ["https://data.delijn.be/stops/200686", "https://data.delijn.be/stops/203376"], ["https://data.delijn.be/stops/408672", "https://data.delijn.be/stops/408673"], ["https://data.delijn.be/stops/408246", "https://data.delijn.be/stops/408294"], ["https://data.delijn.be/stops/105102", "https://data.delijn.be/stops/107637"], ["https://data.delijn.be/stops/407363", "https://data.delijn.be/stops/407566"], ["https://data.delijn.be/stops/204386", "https://data.delijn.be/stops/204387"], ["https://data.delijn.be/stops/106098", "https://data.delijn.be/stops/106118"], ["https://data.delijn.be/stops/400103", "https://data.delijn.be/stops/400163"], ["https://data.delijn.be/stops/106480", "https://data.delijn.be/stops/106485"], ["https://data.delijn.be/stops/204073", "https://data.delijn.be/stops/205597"], ["https://data.delijn.be/stops/502293", "https://data.delijn.be/stops/507290"], ["https://data.delijn.be/stops/201301", "https://data.delijn.be/stops/201946"], ["https://data.delijn.be/stops/300416", "https://data.delijn.be/stops/300444"], ["https://data.delijn.be/stops/304862", "https://data.delijn.be/stops/307646"], ["https://data.delijn.be/stops/101703", "https://data.delijn.be/stops/104870"], ["https://data.delijn.be/stops/403160", "https://data.delijn.be/stops/403481"], ["https://data.delijn.be/stops/105999", "https://data.delijn.be/stops/106006"], ["https://data.delijn.be/stops/304290", "https://data.delijn.be/stops/304515"], ["https://data.delijn.be/stops/105902", "https://data.delijn.be/stops/105904"], ["https://data.delijn.be/stops/503490", "https://data.delijn.be/stops/504834"], ["https://data.delijn.be/stops/102212", "https://data.delijn.be/stops/102609"], ["https://data.delijn.be/stops/300129", "https://data.delijn.be/stops/306808"], ["https://data.delijn.be/stops/501066", "https://data.delijn.be/stops/506506"], ["https://data.delijn.be/stops/108387", "https://data.delijn.be/stops/108389"], ["https://data.delijn.be/stops/204095", "https://data.delijn.be/stops/205250"], ["https://data.delijn.be/stops/301888", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/203400", "https://data.delijn.be/stops/208262"], ["https://data.delijn.be/stops/503808", "https://data.delijn.be/stops/504587"], ["https://data.delijn.be/stops/409560", "https://data.delijn.be/stops/409606"], ["https://data.delijn.be/stops/107601", "https://data.delijn.be/stops/107657"], ["https://data.delijn.be/stops/503227", "https://data.delijn.be/stops/505275"], ["https://data.delijn.be/stops/304312", "https://data.delijn.be/stops/304319"], ["https://data.delijn.be/stops/200028", "https://data.delijn.be/stops/201447"], ["https://data.delijn.be/stops/505932", "https://data.delijn.be/stops/508137"], ["https://data.delijn.be/stops/103600", "https://data.delijn.be/stops/109898"], ["https://data.delijn.be/stops/208428", "https://data.delijn.be/stops/209808"], ["https://data.delijn.be/stops/406193", "https://data.delijn.be/stops/406436"], ["https://data.delijn.be/stops/506775", "https://data.delijn.be/stops/506776"], ["https://data.delijn.be/stops/400600", "https://data.delijn.be/stops/400601"], ["https://data.delijn.be/stops/202251", "https://data.delijn.be/stops/203252"], ["https://data.delijn.be/stops/304900", "https://data.delijn.be/stops/306405"], ["https://data.delijn.be/stops/103992", "https://data.delijn.be/stops/105394"], ["https://data.delijn.be/stops/107037", "https://data.delijn.be/stops/108241"], ["https://data.delijn.be/stops/306397", "https://data.delijn.be/stops/306398"], ["https://data.delijn.be/stops/501380", "https://data.delijn.be/stops/506380"], ["https://data.delijn.be/stops/104962", "https://data.delijn.be/stops/107425"], ["https://data.delijn.be/stops/108259", "https://data.delijn.be/stops/108351"], ["https://data.delijn.be/stops/102596", "https://data.delijn.be/stops/104918"], ["https://data.delijn.be/stops/204707", "https://data.delijn.be/stops/205707"], ["https://data.delijn.be/stops/300741", "https://data.delijn.be/stops/300806"], ["https://data.delijn.be/stops/402394", "https://data.delijn.be/stops/402395"], ["https://data.delijn.be/stops/400505", "https://data.delijn.be/stops/400516"], ["https://data.delijn.be/stops/200953", "https://data.delijn.be/stops/211114"], ["https://data.delijn.be/stops/306667", "https://data.delijn.be/stops/306669"], ["https://data.delijn.be/stops/402177", "https://data.delijn.be/stops/402470"], ["https://data.delijn.be/stops/405701", "https://data.delijn.be/stops/405740"], ["https://data.delijn.be/stops/201718", "https://data.delijn.be/stops/202375"], ["https://data.delijn.be/stops/506070", "https://data.delijn.be/stops/506075"], ["https://data.delijn.be/stops/508629", "https://data.delijn.be/stops/590009"], ["https://data.delijn.be/stops/304447", "https://data.delijn.be/stops/307697"], ["https://data.delijn.be/stops/209604", "https://data.delijn.be/stops/307595"], ["https://data.delijn.be/stops/501219", "https://data.delijn.be/stops/501222"], ["https://data.delijn.be/stops/103007", "https://data.delijn.be/stops/106512"], ["https://data.delijn.be/stops/401378", "https://data.delijn.be/stops/401380"], ["https://data.delijn.be/stops/202492", "https://data.delijn.be/stops/202493"], ["https://data.delijn.be/stops/301606", "https://data.delijn.be/stops/301607"], ["https://data.delijn.be/stops/503270", "https://data.delijn.be/stops/503274"], ["https://data.delijn.be/stops/301722", "https://data.delijn.be/stops/305275"], ["https://data.delijn.be/stops/406229", "https://data.delijn.be/stops/410131"], ["https://data.delijn.be/stops/402554", "https://data.delijn.be/stops/405302"], ["https://data.delijn.be/stops/302510", "https://data.delijn.be/stops/302520"], ["https://data.delijn.be/stops/208279", "https://data.delijn.be/stops/209280"], ["https://data.delijn.be/stops/404914", "https://data.delijn.be/stops/404915"], ["https://data.delijn.be/stops/304718", "https://data.delijn.be/stops/308685"], ["https://data.delijn.be/stops/206735", "https://data.delijn.be/stops/207655"], ["https://data.delijn.be/stops/503365", "https://data.delijn.be/stops/508072"], ["https://data.delijn.be/stops/402714", "https://data.delijn.be/stops/308145"], ["https://data.delijn.be/stops/409351", "https://data.delijn.be/stops/409370"], ["https://data.delijn.be/stops/504287", "https://data.delijn.be/stops/504618"], ["https://data.delijn.be/stops/401782", "https://data.delijn.be/stops/406424"], ["https://data.delijn.be/stops/107715", "https://data.delijn.be/stops/107717"], ["https://data.delijn.be/stops/208213", "https://data.delijn.be/stops/208838"], ["https://data.delijn.be/stops/208780", "https://data.delijn.be/stops/208799"], ["https://data.delijn.be/stops/201876", "https://data.delijn.be/stops/202661"], ["https://data.delijn.be/stops/406060", "https://data.delijn.be/stops/406138"], ["https://data.delijn.be/stops/404696", "https://data.delijn.be/stops/405306"], ["https://data.delijn.be/stops/502083", "https://data.delijn.be/stops/507412"], ["https://data.delijn.be/stops/105233", "https://data.delijn.be/stops/105251"], ["https://data.delijn.be/stops/206379", "https://data.delijn.be/stops/206380"], ["https://data.delijn.be/stops/206046", "https://data.delijn.be/stops/207967"], ["https://data.delijn.be/stops/107461", "https://data.delijn.be/stops/109202"], ["https://data.delijn.be/stops/104049", "https://data.delijn.be/stops/107525"], ["https://data.delijn.be/stops/405466", "https://data.delijn.be/stops/408570"], ["https://data.delijn.be/stops/502202", "https://data.delijn.be/stops/508805"], ["https://data.delijn.be/stops/503126", "https://data.delijn.be/stops/503159"], ["https://data.delijn.be/stops/305772", "https://data.delijn.be/stops/305774"], ["https://data.delijn.be/stops/202100", "https://data.delijn.be/stops/203100"], ["https://data.delijn.be/stops/405718", "https://data.delijn.be/stops/410145"], ["https://data.delijn.be/stops/405994", "https://data.delijn.be/stops/405995"], ["https://data.delijn.be/stops/104456", "https://data.delijn.be/stops/307524"], ["https://data.delijn.be/stops/106068", "https://data.delijn.be/stops/106416"], ["https://data.delijn.be/stops/301928", "https://data.delijn.be/stops/307878"], ["https://data.delijn.be/stops/206161", "https://data.delijn.be/stops/206492"], ["https://data.delijn.be/stops/207241", "https://data.delijn.be/stops/207320"], ["https://data.delijn.be/stops/505717", "https://data.delijn.be/stops/509387"], ["https://data.delijn.be/stops/200574", "https://data.delijn.be/stops/203194"], ["https://data.delijn.be/stops/509151", "https://data.delijn.be/stops/509194"], ["https://data.delijn.be/stops/300996", "https://data.delijn.be/stops/301082"], ["https://data.delijn.be/stops/304134", "https://data.delijn.be/stops/307580"], ["https://data.delijn.be/stops/405282", "https://data.delijn.be/stops/405505"], ["https://data.delijn.be/stops/204497", "https://data.delijn.be/stops/205497"], ["https://data.delijn.be/stops/503326", "https://data.delijn.be/stops/508326"], ["https://data.delijn.be/stops/403057", "https://data.delijn.be/stops/403569"], ["https://data.delijn.be/stops/503561", "https://data.delijn.be/stops/503583"], ["https://data.delijn.be/stops/306612", "https://data.delijn.be/stops/306617"], ["https://data.delijn.be/stops/208469", "https://data.delijn.be/stops/209469"], ["https://data.delijn.be/stops/304889", "https://data.delijn.be/stops/306714"], ["https://data.delijn.be/stops/303061", "https://data.delijn.be/stops/304465"], ["https://data.delijn.be/stops/206660", "https://data.delijn.be/stops/207417"], ["https://data.delijn.be/stops/405885", "https://data.delijn.be/stops/409704"], ["https://data.delijn.be/stops/105197", "https://data.delijn.be/stops/108881"], ["https://data.delijn.be/stops/109146", "https://data.delijn.be/stops/109149"], ["https://data.delijn.be/stops/305611", "https://data.delijn.be/stops/308944"], ["https://data.delijn.be/stops/200147", "https://data.delijn.be/stops/201567"], ["https://data.delijn.be/stops/501299", "https://data.delijn.be/stops/506299"], ["https://data.delijn.be/stops/501005", "https://data.delijn.be/stops/501220"], ["https://data.delijn.be/stops/202671", "https://data.delijn.be/stops/211034"], ["https://data.delijn.be/stops/104131", "https://data.delijn.be/stops/108434"], ["https://data.delijn.be/stops/505543", "https://data.delijn.be/stops/508803"], ["https://data.delijn.be/stops/206342", "https://data.delijn.be/stops/207705"], ["https://data.delijn.be/stops/206784", "https://data.delijn.be/stops/208024"], ["https://data.delijn.be/stops/206012", "https://data.delijn.be/stops/207388"], ["https://data.delijn.be/stops/507216", "https://data.delijn.be/stops/507219"], ["https://data.delijn.be/stops/304102", "https://data.delijn.be/stops/304103"], ["https://data.delijn.be/stops/108192", "https://data.delijn.be/stops/108194"], ["https://data.delijn.be/stops/103161", "https://data.delijn.be/stops/109932"], ["https://data.delijn.be/stops/208259", "https://data.delijn.be/stops/209260"], ["https://data.delijn.be/stops/206289", "https://data.delijn.be/stops/207256"], ["https://data.delijn.be/stops/409606", "https://data.delijn.be/stops/409609"], ["https://data.delijn.be/stops/105743", "https://data.delijn.be/stops/105744"], ["https://data.delijn.be/stops/203535", "https://data.delijn.be/stops/203588"], ["https://data.delijn.be/stops/505617", "https://data.delijn.be/stops/505618"], ["https://data.delijn.be/stops/206515", "https://data.delijn.be/stops/206659"], ["https://data.delijn.be/stops/301797", "https://data.delijn.be/stops/301798"], ["https://data.delijn.be/stops/403776", "https://data.delijn.be/stops/403816"], ["https://data.delijn.be/stops/103266", "https://data.delijn.be/stops/103268"], ["https://data.delijn.be/stops/403945", "https://data.delijn.be/stops/404087"], ["https://data.delijn.be/stops/204367", "https://data.delijn.be/stops/205216"], ["https://data.delijn.be/stops/204379", "https://data.delijn.be/stops/204764"], ["https://data.delijn.be/stops/400527", "https://data.delijn.be/stops/400580"], ["https://data.delijn.be/stops/106940", "https://data.delijn.be/stops/109714"], ["https://data.delijn.be/stops/206733", "https://data.delijn.be/stops/207998"], ["https://data.delijn.be/stops/400688", "https://data.delijn.be/stops/404253"], ["https://data.delijn.be/stops/203597", "https://data.delijn.be/stops/210077"], ["https://data.delijn.be/stops/105098", "https://data.delijn.be/stops/109504"], ["https://data.delijn.be/stops/106453", "https://data.delijn.be/stops/106457"], ["https://data.delijn.be/stops/200582", "https://data.delijn.be/stops/210078"], ["https://data.delijn.be/stops/107830", "https://data.delijn.be/stops/107832"], ["https://data.delijn.be/stops/203822", "https://data.delijn.be/stops/205941"], ["https://data.delijn.be/stops/208807", "https://data.delijn.be/stops/208811"], ["https://data.delijn.be/stops/206265", "https://data.delijn.be/stops/206739"], ["https://data.delijn.be/stops/303387", "https://data.delijn.be/stops/307183"], ["https://data.delijn.be/stops/509168", "https://data.delijn.be/stops/509173"], ["https://data.delijn.be/stops/302159", "https://data.delijn.be/stops/308099"], ["https://data.delijn.be/stops/303059", "https://data.delijn.be/stops/303082"], ["https://data.delijn.be/stops/101878", "https://data.delijn.be/stops/105697"], ["https://data.delijn.be/stops/109436", "https://data.delijn.be/stops/109437"], ["https://data.delijn.be/stops/209740", "https://data.delijn.be/stops/209741"], ["https://data.delijn.be/stops/504203", "https://data.delijn.be/stops/509203"], ["https://data.delijn.be/stops/402889", "https://data.delijn.be/stops/402898"], ["https://data.delijn.be/stops/202976", "https://data.delijn.be/stops/203976"], ["https://data.delijn.be/stops/403353", "https://data.delijn.be/stops/403483"], ["https://data.delijn.be/stops/106593", "https://data.delijn.be/stops/107246"], ["https://data.delijn.be/stops/105385", "https://data.delijn.be/stops/107040"], ["https://data.delijn.be/stops/205212", "https://data.delijn.be/stops/205342"], ["https://data.delijn.be/stops/303586", "https://data.delijn.be/stops/306398"], ["https://data.delijn.be/stops/406578", "https://data.delijn.be/stops/406579"], ["https://data.delijn.be/stops/208646", "https://data.delijn.be/stops/211041"], ["https://data.delijn.be/stops/202161", "https://data.delijn.be/stops/203161"], ["https://data.delijn.be/stops/505378", "https://data.delijn.be/stops/508839"], ["https://data.delijn.be/stops/501175", "https://data.delijn.be/stops/501184"], ["https://data.delijn.be/stops/503294", "https://data.delijn.be/stops/508294"], ["https://data.delijn.be/stops/504207", "https://data.delijn.be/stops/507255"], ["https://data.delijn.be/stops/303543", "https://data.delijn.be/stops/303564"], ["https://data.delijn.be/stops/301110", "https://data.delijn.be/stops/307637"], ["https://data.delijn.be/stops/107624", "https://data.delijn.be/stops/108543"], ["https://data.delijn.be/stops/503393", "https://data.delijn.be/stops/508393"], ["https://data.delijn.be/stops/303342", "https://data.delijn.be/stops/303345"], ["https://data.delijn.be/stops/400110", "https://data.delijn.be/stops/409833"], ["https://data.delijn.be/stops/302533", "https://data.delijn.be/stops/302538"], ["https://data.delijn.be/stops/208010", "https://data.delijn.be/stops/209009"], ["https://data.delijn.be/stops/400230", "https://data.delijn.be/stops/400231"], ["https://data.delijn.be/stops/408138", "https://data.delijn.be/stops/408139"], ["https://data.delijn.be/stops/408820", "https://data.delijn.be/stops/408822"], ["https://data.delijn.be/stops/304367", "https://data.delijn.be/stops/307454"], ["https://data.delijn.be/stops/406150", "https://data.delijn.be/stops/406274"], ["https://data.delijn.be/stops/203903", "https://data.delijn.be/stops/218003"], ["https://data.delijn.be/stops/401905", "https://data.delijn.be/stops/405055"], ["https://data.delijn.be/stops/506311", "https://data.delijn.be/stops/506480"], ["https://data.delijn.be/stops/103638", "https://data.delijn.be/stops/107164"], ["https://data.delijn.be/stops/200055", "https://data.delijn.be/stops/201470"], ["https://data.delijn.be/stops/405763", "https://data.delijn.be/stops/409280"], ["https://data.delijn.be/stops/102991", "https://data.delijn.be/stops/106358"], ["https://data.delijn.be/stops/404507", "https://data.delijn.be/stops/404508"], ["https://data.delijn.be/stops/303961", "https://data.delijn.be/stops/303962"], ["https://data.delijn.be/stops/107675", "https://data.delijn.be/stops/108625"], ["https://data.delijn.be/stops/405324", "https://data.delijn.be/stops/405325"], ["https://data.delijn.be/stops/502730", "https://data.delijn.be/stops/507732"], ["https://data.delijn.be/stops/405626", "https://data.delijn.be/stops/407470"], ["https://data.delijn.be/stops/300022", "https://data.delijn.be/stops/300025"], ["https://data.delijn.be/stops/101706", "https://data.delijn.be/stops/102920"], ["https://data.delijn.be/stops/400474", "https://data.delijn.be/stops/404665"], ["https://data.delijn.be/stops/106893", "https://data.delijn.be/stops/107219"], ["https://data.delijn.be/stops/206156", "https://data.delijn.be/stops/207156"], ["https://data.delijn.be/stops/503188", "https://data.delijn.be/stops/508385"], ["https://data.delijn.be/stops/501489", "https://data.delijn.be/stops/506038"], ["https://data.delijn.be/stops/107198", "https://data.delijn.be/stops/107199"], ["https://data.delijn.be/stops/405877", "https://data.delijn.be/stops/409889"], ["https://data.delijn.be/stops/504975", "https://data.delijn.be/stops/509975"], ["https://data.delijn.be/stops/106719", "https://data.delijn.be/stops/106720"], ["https://data.delijn.be/stops/208076", "https://data.delijn.be/stops/209076"], ["https://data.delijn.be/stops/203332", "https://data.delijn.be/stops/210291"], ["https://data.delijn.be/stops/505039", "https://data.delijn.be/stops/506122"], ["https://data.delijn.be/stops/202157", "https://data.delijn.be/stops/203158"], ["https://data.delijn.be/stops/302136", "https://data.delijn.be/stops/307529"], ["https://data.delijn.be/stops/408521", "https://data.delijn.be/stops/408734"], ["https://data.delijn.be/stops/204642", "https://data.delijn.be/stops/205643"], ["https://data.delijn.be/stops/102826", "https://data.delijn.be/stops/106236"], ["https://data.delijn.be/stops/500011", "https://data.delijn.be/stops/507282"], ["https://data.delijn.be/stops/407784", "https://data.delijn.be/stops/307447"], ["https://data.delijn.be/stops/504004", "https://data.delijn.be/stops/509737"], ["https://data.delijn.be/stops/105367", "https://data.delijn.be/stops/105386"], ["https://data.delijn.be/stops/200864", "https://data.delijn.be/stops/201493"], ["https://data.delijn.be/stops/501463", "https://data.delijn.be/stops/501537"], ["https://data.delijn.be/stops/200133", "https://data.delijn.be/stops/200134"], ["https://data.delijn.be/stops/404193", "https://data.delijn.be/stops/405983"], ["https://data.delijn.be/stops/400819", "https://data.delijn.be/stops/409641"], ["https://data.delijn.be/stops/101045", "https://data.delijn.be/stops/104320"], ["https://data.delijn.be/stops/304869", "https://data.delijn.be/stops/307799"], ["https://data.delijn.be/stops/502121", "https://data.delijn.be/stops/502149"], ["https://data.delijn.be/stops/405514", "https://data.delijn.be/stops/407319"], ["https://data.delijn.be/stops/200003", "https://data.delijn.be/stops/200004"], ["https://data.delijn.be/stops/504050", "https://data.delijn.be/stops/509050"], ["https://data.delijn.be/stops/203636", "https://data.delijn.be/stops/204077"], ["https://data.delijn.be/stops/405786", "https://data.delijn.be/stops/409750"], ["https://data.delijn.be/stops/201186", "https://data.delijn.be/stops/204951"], ["https://data.delijn.be/stops/304188", "https://data.delijn.be/stops/305335"], ["https://data.delijn.be/stops/501551", "https://data.delijn.be/stops/502373"], ["https://data.delijn.be/stops/201351", "https://data.delijn.be/stops/211335"], ["https://data.delijn.be/stops/107600", "https://data.delijn.be/stops/109040"], ["https://data.delijn.be/stops/505918", "https://data.delijn.be/stops/505927"], ["https://data.delijn.be/stops/400661", "https://data.delijn.be/stops/400662"], ["https://data.delijn.be/stops/306275", "https://data.delijn.be/stops/306276"], ["https://data.delijn.be/stops/102242", "https://data.delijn.be/stops/105882"], ["https://data.delijn.be/stops/216016", "https://data.delijn.be/stops/217016"], ["https://data.delijn.be/stops/106644", "https://data.delijn.be/stops/106679"], ["https://data.delijn.be/stops/401586", "https://data.delijn.be/stops/402126"], ["https://data.delijn.be/stops/408605", "https://data.delijn.be/stops/408608"], ["https://data.delijn.be/stops/408423", "https://data.delijn.be/stops/408490"], ["https://data.delijn.be/stops/300740", "https://data.delijn.be/stops/300804"], ["https://data.delijn.be/stops/303664", "https://data.delijn.be/stops/305397"], ["https://data.delijn.be/stops/207376", "https://data.delijn.be/stops/207726"], ["https://data.delijn.be/stops/401290", "https://data.delijn.be/stops/406652"], ["https://data.delijn.be/stops/401547", "https://data.delijn.be/stops/401551"], ["https://data.delijn.be/stops/404335", "https://data.delijn.be/stops/404355"], ["https://data.delijn.be/stops/204056", "https://data.delijn.be/stops/205725"], ["https://data.delijn.be/stops/402231", "https://data.delijn.be/stops/402294"], ["https://data.delijn.be/stops/105488", "https://data.delijn.be/stops/105493"], ["https://data.delijn.be/stops/505770", "https://data.delijn.be/stops/505811"], ["https://data.delijn.be/stops/200703", "https://data.delijn.be/stops/200706"], ["https://data.delijn.be/stops/507646", "https://data.delijn.be/stops/507696"], ["https://data.delijn.be/stops/304882", "https://data.delijn.be/stops/308543"], ["https://data.delijn.be/stops/102435", "https://data.delijn.be/stops/107975"], ["https://data.delijn.be/stops/108065", "https://data.delijn.be/stops/108160"], ["https://data.delijn.be/stops/200135", "https://data.delijn.be/stops/202134"], ["https://data.delijn.be/stops/200102", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/206074", "https://data.delijn.be/stops/207964"], ["https://data.delijn.be/stops/502092", "https://data.delijn.be/stops/507167"], ["https://data.delijn.be/stops/103767", "https://data.delijn.be/stops/106531"], ["https://data.delijn.be/stops/400069", "https://data.delijn.be/stops/400161"], ["https://data.delijn.be/stops/408523", "https://data.delijn.be/stops/408776"], ["https://data.delijn.be/stops/304569", "https://data.delijn.be/stops/304661"], ["https://data.delijn.be/stops/105234", "https://data.delijn.be/stops/109956"], ["https://data.delijn.be/stops/103766", "https://data.delijn.be/stops/108762"], ["https://data.delijn.be/stops/304244", "https://data.delijn.be/stops/305449"], ["https://data.delijn.be/stops/503104", "https://data.delijn.be/stops/505306"], ["https://data.delijn.be/stops/208433", "https://data.delijn.be/stops/208436"], ["https://data.delijn.be/stops/503568", "https://data.delijn.be/stops/508433"], ["https://data.delijn.be/stops/304263", "https://data.delijn.be/stops/304268"], ["https://data.delijn.be/stops/407324", "https://data.delijn.be/stops/408472"], ["https://data.delijn.be/stops/304216", "https://data.delijn.be/stops/307243"], ["https://data.delijn.be/stops/502526", "https://data.delijn.be/stops/507526"], ["https://data.delijn.be/stops/408952", "https://data.delijn.be/stops/408980"], ["https://data.delijn.be/stops/403399", "https://data.delijn.be/stops/410217"], ["https://data.delijn.be/stops/406339", "https://data.delijn.be/stops/406365"], ["https://data.delijn.be/stops/103789", "https://data.delijn.be/stops/109146"], ["https://data.delijn.be/stops/503980", "https://data.delijn.be/stops/505286"], ["https://data.delijn.be/stops/300232", "https://data.delijn.be/stops/301375"], ["https://data.delijn.be/stops/108943", "https://data.delijn.be/stops/109222"], ["https://data.delijn.be/stops/400265", "https://data.delijn.be/stops/406931"], ["https://data.delijn.be/stops/409681", "https://data.delijn.be/stops/409687"], ["https://data.delijn.be/stops/409320", "https://data.delijn.be/stops/409321"], ["https://data.delijn.be/stops/509937", "https://data.delijn.be/stops/509938"], ["https://data.delijn.be/stops/307881", "https://data.delijn.be/stops/307882"], ["https://data.delijn.be/stops/503159", "https://data.delijn.be/stops/509886"], ["https://data.delijn.be/stops/201281", "https://data.delijn.be/stops/208707"], ["https://data.delijn.be/stops/408546", "https://data.delijn.be/stops/408602"], ["https://data.delijn.be/stops/301038", "https://data.delijn.be/stops/301068"], ["https://data.delijn.be/stops/300777", "https://data.delijn.be/stops/300796"], ["https://data.delijn.be/stops/209305", "https://data.delijn.be/stops/507962"], ["https://data.delijn.be/stops/204066", "https://data.delijn.be/stops/205225"], ["https://data.delijn.be/stops/305337", "https://data.delijn.be/stops/305345"], ["https://data.delijn.be/stops/105075", "https://data.delijn.be/stops/105092"], ["https://data.delijn.be/stops/405364", "https://data.delijn.be/stops/405366"], ["https://data.delijn.be/stops/206464", "https://data.delijn.be/stops/206465"], ["https://data.delijn.be/stops/302336", "https://data.delijn.be/stops/302343"], ["https://data.delijn.be/stops/502176", "https://data.delijn.be/stops/508066"], ["https://data.delijn.be/stops/202697", "https://data.delijn.be/stops/203707"], ["https://data.delijn.be/stops/205659", "https://data.delijn.be/stops/205679"], ["https://data.delijn.be/stops/201911", "https://data.delijn.be/stops/204063"], ["https://data.delijn.be/stops/405538", "https://data.delijn.be/stops/409332"], ["https://data.delijn.be/stops/104008", "https://data.delijn.be/stops/104275"], ["https://data.delijn.be/stops/402339", "https://data.delijn.be/stops/402443"], ["https://data.delijn.be/stops/502035", "https://data.delijn.be/stops/502620"], ["https://data.delijn.be/stops/302552", "https://data.delijn.be/stops/302560"], ["https://data.delijn.be/stops/206175", "https://data.delijn.be/stops/207059"], ["https://data.delijn.be/stops/202988", "https://data.delijn.be/stops/203986"], ["https://data.delijn.be/stops/400366", "https://data.delijn.be/stops/400416"], ["https://data.delijn.be/stops/407504", "https://data.delijn.be/stops/407512"], ["https://data.delijn.be/stops/509329", "https://data.delijn.be/stops/509334"], ["https://data.delijn.be/stops/403157", "https://data.delijn.be/stops/403380"], ["https://data.delijn.be/stops/206295", "https://data.delijn.be/stops/206809"], ["https://data.delijn.be/stops/504144", "https://data.delijn.be/stops/505710"], ["https://data.delijn.be/stops/503933", "https://data.delijn.be/stops/508934"], ["https://data.delijn.be/stops/108107", "https://data.delijn.be/stops/108119"], ["https://data.delijn.be/stops/101050", "https://data.delijn.be/stops/101055"], ["https://data.delijn.be/stops/210013", "https://data.delijn.be/stops/502277"], ["https://data.delijn.be/stops/203389", "https://data.delijn.be/stops/203390"], ["https://data.delijn.be/stops/503774", "https://data.delijn.be/stops/508722"], ["https://data.delijn.be/stops/200013", "https://data.delijn.be/stops/211335"], ["https://data.delijn.be/stops/302807", "https://data.delijn.be/stops/306159"], ["https://data.delijn.be/stops/502083", "https://data.delijn.be/stops/502140"], ["https://data.delijn.be/stops/505387", "https://data.delijn.be/stops/505394"], ["https://data.delijn.be/stops/204363", "https://data.delijn.be/stops/205363"], ["https://data.delijn.be/stops/302753", "https://data.delijn.be/stops/303219"], ["https://data.delijn.be/stops/305197", "https://data.delijn.be/stops/305201"], ["https://data.delijn.be/stops/204171", "https://data.delijn.be/stops/205771"], ["https://data.delijn.be/stops/402048", "https://data.delijn.be/stops/402049"], ["https://data.delijn.be/stops/101525", "https://data.delijn.be/stops/103049"], ["https://data.delijn.be/stops/204077", "https://data.delijn.be/stops/205091"], ["https://data.delijn.be/stops/200203", "https://data.delijn.be/stops/200212"], ["https://data.delijn.be/stops/208269", "https://data.delijn.be/stops/208270"], ["https://data.delijn.be/stops/107343", "https://data.delijn.be/stops/108164"], ["https://data.delijn.be/stops/208027", "https://data.delijn.be/stops/208079"], ["https://data.delijn.be/stops/208610", "https://data.delijn.be/stops/209608"], ["https://data.delijn.be/stops/206950", "https://data.delijn.be/stops/306077"], ["https://data.delijn.be/stops/302523", "https://data.delijn.be/stops/302524"], ["https://data.delijn.be/stops/107573", "https://data.delijn.be/stops/109434"], ["https://data.delijn.be/stops/404095", "https://data.delijn.be/stops/409284"], ["https://data.delijn.be/stops/403236", "https://data.delijn.be/stops/410210"], ["https://data.delijn.be/stops/102763", "https://data.delijn.be/stops/106332"], ["https://data.delijn.be/stops/208451", "https://data.delijn.be/stops/219028"], ["https://data.delijn.be/stops/103283", "https://data.delijn.be/stops/104345"], ["https://data.delijn.be/stops/200919", "https://data.delijn.be/stops/211114"], ["https://data.delijn.be/stops/300890", "https://data.delijn.be/stops/300891"], ["https://data.delijn.be/stops/207785", "https://data.delijn.be/stops/209373"], ["https://data.delijn.be/stops/400762", "https://data.delijn.be/stops/400763"], ["https://data.delijn.be/stops/209235", "https://data.delijn.be/stops/209236"], ["https://data.delijn.be/stops/400078", "https://data.delijn.be/stops/400105"], ["https://data.delijn.be/stops/409024", "https://data.delijn.be/stops/409036"], ["https://data.delijn.be/stops/205029", "https://data.delijn.be/stops/205035"], ["https://data.delijn.be/stops/109309", "https://data.delijn.be/stops/109655"], ["https://data.delijn.be/stops/105566", "https://data.delijn.be/stops/105573"], ["https://data.delijn.be/stops/106198", "https://data.delijn.be/stops/106306"], ["https://data.delijn.be/stops/400970", "https://data.delijn.be/stops/400971"], ["https://data.delijn.be/stops/406944", "https://data.delijn.be/stops/406974"], ["https://data.delijn.be/stops/504554", "https://data.delijn.be/stops/509240"], ["https://data.delijn.be/stops/509347", "https://data.delijn.be/stops/509351"], ["https://data.delijn.be/stops/404237", "https://data.delijn.be/stops/404243"], ["https://data.delijn.be/stops/505436", "https://data.delijn.be/stops/509265"], ["https://data.delijn.be/stops/404708", "https://data.delijn.be/stops/410051"], ["https://data.delijn.be/stops/203373", "https://data.delijn.be/stops/203374"], ["https://data.delijn.be/stops/404192", "https://data.delijn.be/stops/405916"], ["https://data.delijn.be/stops/300660", "https://data.delijn.be/stops/305816"], ["https://data.delijn.be/stops/208604", "https://data.delijn.be/stops/307596"], ["https://data.delijn.be/stops/208655", "https://data.delijn.be/stops/209655"], ["https://data.delijn.be/stops/200151", "https://data.delijn.be/stops/201151"], ["https://data.delijn.be/stops/205369", "https://data.delijn.be/stops/205760"], ["https://data.delijn.be/stops/404170", "https://data.delijn.be/stops/404171"], ["https://data.delijn.be/stops/201766", "https://data.delijn.be/stops/209273"], ["https://data.delijn.be/stops/107189", "https://data.delijn.be/stops/107191"], ["https://data.delijn.be/stops/301404", "https://data.delijn.be/stops/301405"], ["https://data.delijn.be/stops/410152", "https://data.delijn.be/stops/300927"], ["https://data.delijn.be/stops/303139", "https://data.delijn.be/stops/303140"], ["https://data.delijn.be/stops/408052", "https://data.delijn.be/stops/408442"], ["https://data.delijn.be/stops/101227", "https://data.delijn.be/stops/107809"], ["https://data.delijn.be/stops/202097", "https://data.delijn.be/stops/203097"], ["https://data.delijn.be/stops/101919", "https://data.delijn.be/stops/102422"], ["https://data.delijn.be/stops/200897", "https://data.delijn.be/stops/200909"], ["https://data.delijn.be/stops/204108", "https://data.delijn.be/stops/204479"], ["https://data.delijn.be/stops/101464", "https://data.delijn.be/stops/109249"], ["https://data.delijn.be/stops/501474", "https://data.delijn.be/stops/506322"], ["https://data.delijn.be/stops/305576", "https://data.delijn.be/stops/305578"], ["https://data.delijn.be/stops/501601", "https://data.delijn.be/stops/504493"], ["https://data.delijn.be/stops/305642", "https://data.delijn.be/stops/305643"], ["https://data.delijn.be/stops/200308", "https://data.delijn.be/stops/209450"], ["https://data.delijn.be/stops/301908", "https://data.delijn.be/stops/306256"], ["https://data.delijn.be/stops/105988", "https://data.delijn.be/stops/109870"], ["https://data.delijn.be/stops/400741", "https://data.delijn.be/stops/400938"], ["https://data.delijn.be/stops/109814", "https://data.delijn.be/stops/109815"], ["https://data.delijn.be/stops/408109", "https://data.delijn.be/stops/408115"], ["https://data.delijn.be/stops/400045", "https://data.delijn.be/stops/407101"], ["https://data.delijn.be/stops/404932", "https://data.delijn.be/stops/404943"], ["https://data.delijn.be/stops/202886", "https://data.delijn.be/stops/209747"], ["https://data.delijn.be/stops/106687", "https://data.delijn.be/stops/106688"], ["https://data.delijn.be/stops/105036", "https://data.delijn.be/stops/108056"], ["https://data.delijn.be/stops/102843", "https://data.delijn.be/stops/108040"], ["https://data.delijn.be/stops/301332", "https://data.delijn.be/stops/306121"], ["https://data.delijn.be/stops/105129", "https://data.delijn.be/stops/105133"], ["https://data.delijn.be/stops/106760", "https://data.delijn.be/stops/107517"], ["https://data.delijn.be/stops/506291", "https://data.delijn.be/stops/506326"], ["https://data.delijn.be/stops/105693", "https://data.delijn.be/stops/105696"], ["https://data.delijn.be/stops/205347", "https://data.delijn.be/stops/205707"], ["https://data.delijn.be/stops/101404", "https://data.delijn.be/stops/106527"], ["https://data.delijn.be/stops/400606", "https://data.delijn.be/stops/400607"], ["https://data.delijn.be/stops/208556", "https://data.delijn.be/stops/209547"], ["https://data.delijn.be/stops/501038", "https://data.delijn.be/stops/501490"], ["https://data.delijn.be/stops/105289", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/207047", "https://data.delijn.be/stops/300172"], ["https://data.delijn.be/stops/204692", "https://data.delijn.be/stops/205322"], ["https://data.delijn.be/stops/505285", "https://data.delijn.be/stops/505286"], ["https://data.delijn.be/stops/206980", "https://data.delijn.be/stops/207979"], ["https://data.delijn.be/stops/304507", "https://data.delijn.be/stops/307674"], ["https://data.delijn.be/stops/109084", "https://data.delijn.be/stops/109312"], ["https://data.delijn.be/stops/404149", "https://data.delijn.be/stops/404278"], ["https://data.delijn.be/stops/202784", "https://data.delijn.be/stops/202785"], ["https://data.delijn.be/stops/502575", "https://data.delijn.be/stops/505700"], ["https://data.delijn.be/stops/208239", "https://data.delijn.be/stops/209123"], ["https://data.delijn.be/stops/503312", "https://data.delijn.be/stops/504859"], ["https://data.delijn.be/stops/300953", "https://data.delijn.be/stops/307808"], ["https://data.delijn.be/stops/102375", "https://data.delijn.be/stops/105745"], ["https://data.delijn.be/stops/403262", "https://data.delijn.be/stops/403862"], ["https://data.delijn.be/stops/300436", "https://data.delijn.be/stops/300441"], ["https://data.delijn.be/stops/403418", "https://data.delijn.be/stops/403559"], ["https://data.delijn.be/stops/206963", "https://data.delijn.be/stops/207040"], ["https://data.delijn.be/stops/208781", "https://data.delijn.be/stops/209351"], ["https://data.delijn.be/stops/303529", "https://data.delijn.be/stops/303571"], ["https://data.delijn.be/stops/303282", "https://data.delijn.be/stops/304659"], ["https://data.delijn.be/stops/206598", "https://data.delijn.be/stops/209666"], ["https://data.delijn.be/stops/504873", "https://data.delijn.be/stops/508701"], ["https://data.delijn.be/stops/202011", "https://data.delijn.be/stops/203653"], ["https://data.delijn.be/stops/104640", "https://data.delijn.be/stops/104805"], ["https://data.delijn.be/stops/406128", "https://data.delijn.be/stops/406129"], ["https://data.delijn.be/stops/300194", "https://data.delijn.be/stops/300220"], ["https://data.delijn.be/stops/108806", "https://data.delijn.be/stops/108807"], ["https://data.delijn.be/stops/200309", "https://data.delijn.be/stops/201341"], ["https://data.delijn.be/stops/300037", "https://data.delijn.be/stops/300038"], ["https://data.delijn.be/stops/300618", "https://data.delijn.be/stops/300691"], ["https://data.delijn.be/stops/101926", "https://data.delijn.be/stops/107074"], ["https://data.delijn.be/stops/303546", "https://data.delijn.be/stops/308791"], ["https://data.delijn.be/stops/302375", "https://data.delijn.be/stops/304068"], ["https://data.delijn.be/stops/200906", "https://data.delijn.be/stops/203237"], ["https://data.delijn.be/stops/101195", "https://data.delijn.be/stops/104721"], ["https://data.delijn.be/stops/302534", "https://data.delijn.be/stops/302545"], ["https://data.delijn.be/stops/402678", "https://data.delijn.be/stops/402736"], ["https://data.delijn.be/stops/208338", "https://data.delijn.be/stops/208360"], ["https://data.delijn.be/stops/202435", "https://data.delijn.be/stops/203717"], ["https://data.delijn.be/stops/300751", "https://data.delijn.be/stops/304570"], ["https://data.delijn.be/stops/209067", "https://data.delijn.be/stops/209194"], ["https://data.delijn.be/stops/101152", "https://data.delijn.be/stops/103032"], ["https://data.delijn.be/stops/500006", "https://data.delijn.be/stops/505835"], ["https://data.delijn.be/stops/302729", "https://data.delijn.be/stops/302737"], ["https://data.delijn.be/stops/406996", "https://data.delijn.be/stops/407130"], ["https://data.delijn.be/stops/303273", "https://data.delijn.be/stops/303304"], ["https://data.delijn.be/stops/503002", "https://data.delijn.be/stops/508002"], ["https://data.delijn.be/stops/300546", "https://data.delijn.be/stops/300551"], ["https://data.delijn.be/stops/501617", "https://data.delijn.be/stops/506616"], ["https://data.delijn.be/stops/305186", "https://data.delijn.be/stops/306961"], ["https://data.delijn.be/stops/206552", "https://data.delijn.be/stops/206860"], ["https://data.delijn.be/stops/103923", "https://data.delijn.be/stops/106901"], ["https://data.delijn.be/stops/306306", "https://data.delijn.be/stops/306307"], ["https://data.delijn.be/stops/200891", "https://data.delijn.be/stops/211012"], ["https://data.delijn.be/stops/407163", "https://data.delijn.be/stops/407185"], ["https://data.delijn.be/stops/101747", "https://data.delijn.be/stops/106371"], ["https://data.delijn.be/stops/206349", "https://data.delijn.be/stops/207689"], ["https://data.delijn.be/stops/304562", "https://data.delijn.be/stops/304640"], ["https://data.delijn.be/stops/505385", "https://data.delijn.be/stops/508009"], ["https://data.delijn.be/stops/400609", "https://data.delijn.be/stops/400617"], ["https://data.delijn.be/stops/408944", "https://data.delijn.be/stops/408970"], ["https://data.delijn.be/stops/503998", "https://data.delijn.be/stops/508917"], ["https://data.delijn.be/stops/204764", "https://data.delijn.be/stops/205764"], ["https://data.delijn.be/stops/500953", "https://data.delijn.be/stops/503627"], ["https://data.delijn.be/stops/509135", "https://data.delijn.be/stops/509653"], ["https://data.delijn.be/stops/302084", "https://data.delijn.be/stops/302251"], ["https://data.delijn.be/stops/409064", "https://data.delijn.be/stops/409120"], ["https://data.delijn.be/stops/302562", "https://data.delijn.be/stops/302573"], ["https://data.delijn.be/stops/501536", "https://data.delijn.be/stops/501537"], ["https://data.delijn.be/stops/201574", "https://data.delijn.be/stops/203194"], ["https://data.delijn.be/stops/405730", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/206515", "https://data.delijn.be/stops/207662"], ["https://data.delijn.be/stops/207275", "https://data.delijn.be/stops/207962"], ["https://data.delijn.be/stops/208700", "https://data.delijn.be/stops/208701"], ["https://data.delijn.be/stops/410135", "https://data.delijn.be/stops/410137"], ["https://data.delijn.be/stops/300270", "https://data.delijn.be/stops/302147"], ["https://data.delijn.be/stops/302734", "https://data.delijn.be/stops/302773"], ["https://data.delijn.be/stops/104412", "https://data.delijn.be/stops/104416"], ["https://data.delijn.be/stops/208562", "https://data.delijn.be/stops/209562"], ["https://data.delijn.be/stops/408180", "https://data.delijn.be/stops/408439"], ["https://data.delijn.be/stops/404764", "https://data.delijn.be/stops/404765"], ["https://data.delijn.be/stops/304998", "https://data.delijn.be/stops/305009"], ["https://data.delijn.be/stops/504699", "https://data.delijn.be/stops/509575"], ["https://data.delijn.be/stops/305228", "https://data.delijn.be/stops/305229"], ["https://data.delijn.be/stops/201072", "https://data.delijn.be/stops/211047"], ["https://data.delijn.be/stops/203715", "https://data.delijn.be/stops/203716"], ["https://data.delijn.be/stops/304262", "https://data.delijn.be/stops/304275"], ["https://data.delijn.be/stops/303569", "https://data.delijn.be/stops/303571"], ["https://data.delijn.be/stops/101920", "https://data.delijn.be/stops/103845"], ["https://data.delijn.be/stops/501223", "https://data.delijn.be/stops/506219"], ["https://data.delijn.be/stops/408580", "https://data.delijn.be/stops/408777"], ["https://data.delijn.be/stops/204306", "https://data.delijn.be/stops/205306"], ["https://data.delijn.be/stops/308876", "https://data.delijn.be/stops/308878"], ["https://data.delijn.be/stops/202034", "https://data.delijn.be/stops/203034"], ["https://data.delijn.be/stops/502820", "https://data.delijn.be/stops/507456"], ["https://data.delijn.be/stops/401474", "https://data.delijn.be/stops/410146"], ["https://data.delijn.be/stops/205981", "https://data.delijn.be/stops/208661"], ["https://data.delijn.be/stops/304878", "https://data.delijn.be/stops/304880"], ["https://data.delijn.be/stops/405565", "https://data.delijn.be/stops/405566"], ["https://data.delijn.be/stops/301703", "https://data.delijn.be/stops/305305"], ["https://data.delijn.be/stops/108566", "https://data.delijn.be/stops/108571"], ["https://data.delijn.be/stops/501694", "https://data.delijn.be/stops/502531"], ["https://data.delijn.be/stops/202772", "https://data.delijn.be/stops/203771"], ["https://data.delijn.be/stops/200632", "https://data.delijn.be/stops/202909"], ["https://data.delijn.be/stops/104139", "https://data.delijn.be/stops/109575"], ["https://data.delijn.be/stops/302426", "https://data.delijn.be/stops/302427"], ["https://data.delijn.be/stops/504993", "https://data.delijn.be/stops/507719"], ["https://data.delijn.be/stops/402006", "https://data.delijn.be/stops/405144"], ["https://data.delijn.be/stops/300380", "https://data.delijn.be/stops/300468"], ["https://data.delijn.be/stops/504096", "https://data.delijn.be/stops/505288"], ["https://data.delijn.be/stops/408664", "https://data.delijn.be/stops/410191"], ["https://data.delijn.be/stops/305377", "https://data.delijn.be/stops/305406"], ["https://data.delijn.be/stops/406960", "https://data.delijn.be/stops/406961"], ["https://data.delijn.be/stops/304349", "https://data.delijn.be/stops/304350"], ["https://data.delijn.be/stops/509843", "https://data.delijn.be/stops/509846"], ["https://data.delijn.be/stops/508920", "https://data.delijn.be/stops/508929"], ["https://data.delijn.be/stops/408628", "https://data.delijn.be/stops/408629"], ["https://data.delijn.be/stops/509452", "https://data.delijn.be/stops/509455"], ["https://data.delijn.be/stops/301451", "https://data.delijn.be/stops/301469"], ["https://data.delijn.be/stops/201608", "https://data.delijn.be/stops/202779"], ["https://data.delijn.be/stops/102308", "https://data.delijn.be/stops/102309"], ["https://data.delijn.be/stops/504526", "https://data.delijn.be/stops/509523"], ["https://data.delijn.be/stops/503925", "https://data.delijn.be/stops/505251"], ["https://data.delijn.be/stops/105564", "https://data.delijn.be/stops/105568"], ["https://data.delijn.be/stops/102182", "https://data.delijn.be/stops/102733"], ["https://data.delijn.be/stops/300478", "https://data.delijn.be/stops/300494"], ["https://data.delijn.be/stops/104553", "https://data.delijn.be/stops/104554"], ["https://data.delijn.be/stops/101873", "https://data.delijn.be/stops/106877"], ["https://data.delijn.be/stops/103140", "https://data.delijn.be/stops/106516"], ["https://data.delijn.be/stops/200190", "https://data.delijn.be/stops/201402"], ["https://data.delijn.be/stops/203510", "https://data.delijn.be/stops/203607"], ["https://data.delijn.be/stops/200390", "https://data.delijn.be/stops/200394"], ["https://data.delijn.be/stops/503841", "https://data.delijn.be/stops/503856"], ["https://data.delijn.be/stops/307546", "https://data.delijn.be/stops/307578"], ["https://data.delijn.be/stops/206121", "https://data.delijn.be/stops/206122"], ["https://data.delijn.be/stops/503276", "https://data.delijn.be/stops/508281"], ["https://data.delijn.be/stops/300374", "https://data.delijn.be/stops/300381"], ["https://data.delijn.be/stops/404533", "https://data.delijn.be/stops/404567"], ["https://data.delijn.be/stops/501547", "https://data.delijn.be/stops/505398"], ["https://data.delijn.be/stops/304637", "https://data.delijn.be/stops/304658"], ["https://data.delijn.be/stops/302272", "https://data.delijn.be/stops/303436"], ["https://data.delijn.be/stops/108937", "https://data.delijn.be/stops/109221"], ["https://data.delijn.be/stops/400932", "https://data.delijn.be/stops/402834"], ["https://data.delijn.be/stops/505551", "https://data.delijn.be/stops/505553"], ["https://data.delijn.be/stops/303030", "https://data.delijn.be/stops/307145"], ["https://data.delijn.be/stops/104803", "https://data.delijn.be/stops/108972"], ["https://data.delijn.be/stops/504519", "https://data.delijn.be/stops/504521"], ["https://data.delijn.be/stops/505636", "https://data.delijn.be/stops/508337"], ["https://data.delijn.be/stops/404900", "https://data.delijn.be/stops/404901"], ["https://data.delijn.be/stops/104031", "https://data.delijn.be/stops/104034"], ["https://data.delijn.be/stops/508603", "https://data.delijn.be/stops/508605"], ["https://data.delijn.be/stops/505781", "https://data.delijn.be/stops/506459"], ["https://data.delijn.be/stops/205029", "https://data.delijn.be/stops/205437"], ["https://data.delijn.be/stops/400161", "https://data.delijn.be/stops/409173"], ["https://data.delijn.be/stops/302078", "https://data.delijn.be/stops/302079"], ["https://data.delijn.be/stops/206141", "https://data.delijn.be/stops/207141"], ["https://data.delijn.be/stops/404944", "https://data.delijn.be/stops/404965"], ["https://data.delijn.be/stops/406575", "https://data.delijn.be/stops/406589"], ["https://data.delijn.be/stops/202952", "https://data.delijn.be/stops/203439"], ["https://data.delijn.be/stops/101170", "https://data.delijn.be/stops/101770"], ["https://data.delijn.be/stops/502114", "https://data.delijn.be/stops/502147"], ["https://data.delijn.be/stops/200218", "https://data.delijn.be/stops/201218"], ["https://data.delijn.be/stops/404908", "https://data.delijn.be/stops/404909"], ["https://data.delijn.be/stops/302174", "https://data.delijn.be/stops/302175"], ["https://data.delijn.be/stops/204319", "https://data.delijn.be/stops/204320"], ["https://data.delijn.be/stops/405088", "https://data.delijn.be/stops/405089"], ["https://data.delijn.be/stops/104514", "https://data.delijn.be/stops/107797"], ["https://data.delijn.be/stops/401124", "https://data.delijn.be/stops/402830"], ["https://data.delijn.be/stops/200489", "https://data.delijn.be/stops/201488"], ["https://data.delijn.be/stops/401415", "https://data.delijn.be/stops/307498"], ["https://data.delijn.be/stops/502536", "https://data.delijn.be/stops/507741"], ["https://data.delijn.be/stops/406101", "https://data.delijn.be/stops/406113"], ["https://data.delijn.be/stops/200437", "https://data.delijn.be/stops/201408"], ["https://data.delijn.be/stops/208449", "https://data.delijn.be/stops/208520"], ["https://data.delijn.be/stops/504338", "https://data.delijn.be/stops/504340"], ["https://data.delijn.be/stops/503855", "https://data.delijn.be/stops/508858"], ["https://data.delijn.be/stops/206397", "https://data.delijn.be/stops/207397"], ["https://data.delijn.be/stops/502946", "https://data.delijn.be/stops/508586"], ["https://data.delijn.be/stops/402670", "https://data.delijn.be/stops/402732"], ["https://data.delijn.be/stops/303830", "https://data.delijn.be/stops/305420"], ["https://data.delijn.be/stops/302913", "https://data.delijn.be/stops/304184"], ["https://data.delijn.be/stops/505424", "https://data.delijn.be/stops/509081"], ["https://data.delijn.be/stops/503093", "https://data.delijn.be/stops/508093"], ["https://data.delijn.be/stops/408092", "https://data.delijn.be/stops/408159"], ["https://data.delijn.be/stops/405231", "https://data.delijn.be/stops/409375"], ["https://data.delijn.be/stops/207680", "https://data.delijn.be/stops/209155"], ["https://data.delijn.be/stops/109162", "https://data.delijn.be/stops/109163"], ["https://data.delijn.be/stops/102445", "https://data.delijn.be/stops/107695"], ["https://data.delijn.be/stops/210035", "https://data.delijn.be/stops/210036"], ["https://data.delijn.be/stops/200159", "https://data.delijn.be/stops/200536"], ["https://data.delijn.be/stops/107708", "https://data.delijn.be/stops/109672"], ["https://data.delijn.be/stops/408576", "https://data.delijn.be/stops/408761"], ["https://data.delijn.be/stops/302255", "https://data.delijn.be/stops/302260"], ["https://data.delijn.be/stops/208336", "https://data.delijn.be/stops/209335"], ["https://data.delijn.be/stops/409052", "https://data.delijn.be/stops/409053"], ["https://data.delijn.be/stops/102188", "https://data.delijn.be/stops/102189"], ["https://data.delijn.be/stops/101502", "https://data.delijn.be/stops/101503"], ["https://data.delijn.be/stops/201843", "https://data.delijn.be/stops/202198"], ["https://data.delijn.be/stops/507946", "https://data.delijn.be/stops/507947"], ["https://data.delijn.be/stops/504142", "https://data.delijn.be/stops/509142"], ["https://data.delijn.be/stops/402468", "https://data.delijn.be/stops/410076"], ["https://data.delijn.be/stops/300260", "https://data.delijn.be/stops/307497"], ["https://data.delijn.be/stops/505257", "https://data.delijn.be/stops/508673"], ["https://data.delijn.be/stops/200179", "https://data.delijn.be/stops/200988"], ["https://data.delijn.be/stops/403038", "https://data.delijn.be/stops/410212"], ["https://data.delijn.be/stops/408919", "https://data.delijn.be/stops/408922"], ["https://data.delijn.be/stops/301661", "https://data.delijn.be/stops/301663"], ["https://data.delijn.be/stops/504397", "https://data.delijn.be/stops/509397"], ["https://data.delijn.be/stops/104275", "https://data.delijn.be/stops/105380"], ["https://data.delijn.be/stops/502185", "https://data.delijn.be/stops/507184"], ["https://data.delijn.be/stops/400701", "https://data.delijn.be/stops/400898"], ["https://data.delijn.be/stops/101701", "https://data.delijn.be/stops/102698"], ["https://data.delijn.be/stops/301743", "https://data.delijn.be/stops/305395"], ["https://data.delijn.be/stops/202266", "https://data.delijn.be/stops/203267"], ["https://data.delijn.be/stops/207883", "https://data.delijn.be/stops/207884"], ["https://data.delijn.be/stops/408719", "https://data.delijn.be/stops/408727"], ["https://data.delijn.be/stops/505943", "https://data.delijn.be/stops/508220"], ["https://data.delijn.be/stops/105803", "https://data.delijn.be/stops/305789"], ["https://data.delijn.be/stops/306608", "https://data.delijn.be/stops/306611"], ["https://data.delijn.be/stops/507227", "https://data.delijn.be/stops/507822"], ["https://data.delijn.be/stops/305669", "https://data.delijn.be/stops/305740"], ["https://data.delijn.be/stops/200764", "https://data.delijn.be/stops/208375"], ["https://data.delijn.be/stops/206979", "https://data.delijn.be/stops/207978"], ["https://data.delijn.be/stops/303959", "https://data.delijn.be/stops/303963"], ["https://data.delijn.be/stops/208746", "https://data.delijn.be/stops/209418"], ["https://data.delijn.be/stops/408099", "https://data.delijn.be/stops/408160"], ["https://data.delijn.be/stops/305344", "https://data.delijn.be/stops/305346"], ["https://data.delijn.be/stops/502330", "https://data.delijn.be/stops/505560"], ["https://data.delijn.be/stops/503728", "https://data.delijn.be/stops/504961"], ["https://data.delijn.be/stops/408332", "https://data.delijn.be/stops/408333"], ["https://data.delijn.be/stops/301775", "https://data.delijn.be/stops/301776"], ["https://data.delijn.be/stops/503849", "https://data.delijn.be/stops/505226"], ["https://data.delijn.be/stops/200982", "https://data.delijn.be/stops/210097"], ["https://data.delijn.be/stops/101186", "https://data.delijn.be/stops/101187"], ["https://data.delijn.be/stops/109259", "https://data.delijn.be/stops/109261"], ["https://data.delijn.be/stops/404988", "https://data.delijn.be/stops/406748"], ["https://data.delijn.be/stops/201089", "https://data.delijn.be/stops/202947"], ["https://data.delijn.be/stops/201364", "https://data.delijn.be/stops/201985"], ["https://data.delijn.be/stops/303194", "https://data.delijn.be/stops/303213"], ["https://data.delijn.be/stops/102584", "https://data.delijn.be/stops/109109"], ["https://data.delijn.be/stops/101815", "https://data.delijn.be/stops/105455"], ["https://data.delijn.be/stops/305178", "https://data.delijn.be/stops/307091"], ["https://data.delijn.be/stops/300647", "https://data.delijn.be/stops/300654"], ["https://data.delijn.be/stops/403500", "https://data.delijn.be/stops/403528"], ["https://data.delijn.be/stops/103263", "https://data.delijn.be/stops/204631"], ["https://data.delijn.be/stops/301633", "https://data.delijn.be/stops/306155"], ["https://data.delijn.be/stops/102715", "https://data.delijn.be/stops/102720"], ["https://data.delijn.be/stops/400092", "https://data.delijn.be/stops/409144"], ["https://data.delijn.be/stops/105626", "https://data.delijn.be/stops/109880"], ["https://data.delijn.be/stops/509282", "https://data.delijn.be/stops/509343"], ["https://data.delijn.be/stops/102594", "https://data.delijn.be/stops/102599"], ["https://data.delijn.be/stops/405412", "https://data.delijn.be/stops/303284"], ["https://data.delijn.be/stops/303815", "https://data.delijn.be/stops/303823"], ["https://data.delijn.be/stops/503074", "https://data.delijn.be/stops/508070"], ["https://data.delijn.be/stops/102012", "https://data.delijn.be/stops/205643"], ["https://data.delijn.be/stops/503169", "https://data.delijn.be/stops/508169"], ["https://data.delijn.be/stops/101223", "https://data.delijn.be/stops/102653"], ["https://data.delijn.be/stops/301469", "https://data.delijn.be/stops/306307"], ["https://data.delijn.be/stops/200003", "https://data.delijn.be/stops/200994"], ["https://data.delijn.be/stops/505735", "https://data.delijn.be/stops/507548"], ["https://data.delijn.be/stops/505098", "https://data.delijn.be/stops/508589"], ["https://data.delijn.be/stops/406417", "https://data.delijn.be/stops/406518"], ["https://data.delijn.be/stops/302584", "https://data.delijn.be/stops/302599"], ["https://data.delijn.be/stops/211019", "https://data.delijn.be/stops/503578"], ["https://data.delijn.be/stops/300128", "https://data.delijn.be/stops/300134"], ["https://data.delijn.be/stops/402800", "https://data.delijn.be/stops/402811"], ["https://data.delijn.be/stops/200777", "https://data.delijn.be/stops/208307"], ["https://data.delijn.be/stops/106707", "https://data.delijn.be/stops/106708"], ["https://data.delijn.be/stops/102423", "https://data.delijn.be/stops/102899"], ["https://data.delijn.be/stops/209654", "https://data.delijn.be/stops/211068"], ["https://data.delijn.be/stops/406748", "https://data.delijn.be/stops/409485"], ["https://data.delijn.be/stops/504433", "https://data.delijn.be/stops/505785"], ["https://data.delijn.be/stops/108203", "https://data.delijn.be/stops/108207"], ["https://data.delijn.be/stops/503525", "https://data.delijn.be/stops/503529"], ["https://data.delijn.be/stops/109786", "https://data.delijn.be/stops/109790"], ["https://data.delijn.be/stops/408310", "https://data.delijn.be/stops/408378"], ["https://data.delijn.be/stops/502736", "https://data.delijn.be/stops/507821"], ["https://data.delijn.be/stops/408497", "https://data.delijn.be/stops/408772"], ["https://data.delijn.be/stops/503272", "https://data.delijn.be/stops/503273"], ["https://data.delijn.be/stops/302664", "https://data.delijn.be/stops/302665"], ["https://data.delijn.be/stops/205976", "https://data.delijn.be/stops/218022"], ["https://data.delijn.be/stops/308264", "https://data.delijn.be/stops/308268"], ["https://data.delijn.be/stops/401074", "https://data.delijn.be/stops/401077"], ["https://data.delijn.be/stops/403830", "https://data.delijn.be/stops/403845"], ["https://data.delijn.be/stops/105684", "https://data.delijn.be/stops/105686"], ["https://data.delijn.be/stops/306344", "https://data.delijn.be/stops/306346"], ["https://data.delijn.be/stops/301146", "https://data.delijn.be/stops/301154"], ["https://data.delijn.be/stops/205116", "https://data.delijn.be/stops/205118"], ["https://data.delijn.be/stops/204822", "https://data.delijn.be/stops/205508"], ["https://data.delijn.be/stops/206896", "https://data.delijn.be/stops/207895"], ["https://data.delijn.be/stops/300208", "https://data.delijn.be/stops/300232"], ["https://data.delijn.be/stops/500010", "https://data.delijn.be/stops/505560"], ["https://data.delijn.be/stops/300905", "https://data.delijn.be/stops/308819"], ["https://data.delijn.be/stops/103484", "https://data.delijn.be/stops/109161"], ["https://data.delijn.be/stops/206765", "https://data.delijn.be/stops/209617"], ["https://data.delijn.be/stops/302323", "https://data.delijn.be/stops/302331"], ["https://data.delijn.be/stops/204396", "https://data.delijn.be/stops/205768"], ["https://data.delijn.be/stops/202948", "https://data.delijn.be/stops/203948"], ["https://data.delijn.be/stops/302600", "https://data.delijn.be/stops/302612"], ["https://data.delijn.be/stops/402807", "https://data.delijn.be/stops/405813"], ["https://data.delijn.be/stops/102301", "https://data.delijn.be/stops/102302"], ["https://data.delijn.be/stops/510028", "https://data.delijn.be/stops/510030"], ["https://data.delijn.be/stops/408514", "https://data.delijn.be/stops/408577"], ["https://data.delijn.be/stops/502063", "https://data.delijn.be/stops/502068"], ["https://data.delijn.be/stops/306620", "https://data.delijn.be/stops/306621"], ["https://data.delijn.be/stops/109068", "https://data.delijn.be/stops/306859"], ["https://data.delijn.be/stops/301718", "https://data.delijn.be/stops/308429"], ["https://data.delijn.be/stops/301336", "https://data.delijn.be/stops/301337"], ["https://data.delijn.be/stops/406035", "https://data.delijn.be/stops/406128"], ["https://data.delijn.be/stops/202156", "https://data.delijn.be/stops/205068"], ["https://data.delijn.be/stops/204365", "https://data.delijn.be/stops/205213"], ["https://data.delijn.be/stops/403702", "https://data.delijn.be/stops/403716"], ["https://data.delijn.be/stops/403057", "https://data.delijn.be/stops/403315"], ["https://data.delijn.be/stops/508048", "https://data.delijn.be/stops/508049"], ["https://data.delijn.be/stops/104137", "https://data.delijn.be/stops/108414"], ["https://data.delijn.be/stops/207461", "https://data.delijn.be/stops/207489"], ["https://data.delijn.be/stops/301428", "https://data.delijn.be/stops/307316"], ["https://data.delijn.be/stops/501382", "https://data.delijn.be/stops/501394"], ["https://data.delijn.be/stops/101272", "https://data.delijn.be/stops/101276"], ["https://data.delijn.be/stops/302235", "https://data.delijn.be/stops/302248"], ["https://data.delijn.be/stops/305537", "https://data.delijn.be/stops/307044"], ["https://data.delijn.be/stops/400828", "https://data.delijn.be/stops/403574"], ["https://data.delijn.be/stops/300181", "https://data.delijn.be/stops/307131"], ["https://data.delijn.be/stops/109987", "https://data.delijn.be/stops/406814"], ["https://data.delijn.be/stops/503400", "https://data.delijn.be/stops/508370"], ["https://data.delijn.be/stops/401910", "https://data.delijn.be/stops/409511"], ["https://data.delijn.be/stops/101073", "https://data.delijn.be/stops/105964"], ["https://data.delijn.be/stops/405861", "https://data.delijn.be/stops/409742"], ["https://data.delijn.be/stops/200308", "https://data.delijn.be/stops/210090"], ["https://data.delijn.be/stops/401207", "https://data.delijn.be/stops/401347"], ["https://data.delijn.be/stops/200725", "https://data.delijn.be/stops/202610"], ["https://data.delijn.be/stops/405854", "https://data.delijn.be/stops/405855"], ["https://data.delijn.be/stops/300813", "https://data.delijn.be/stops/300830"], ["https://data.delijn.be/stops/303758", "https://data.delijn.be/stops/303784"], ["https://data.delijn.be/stops/501206", "https://data.delijn.be/stops/506206"], ["https://data.delijn.be/stops/305213", "https://data.delijn.be/stops/306881"], ["https://data.delijn.be/stops/301345", "https://data.delijn.be/stops/304677"], ["https://data.delijn.be/stops/502739", "https://data.delijn.be/stops/506439"], ["https://data.delijn.be/stops/104853", "https://data.delijn.be/stops/107891"], ["https://data.delijn.be/stops/105599", "https://data.delijn.be/stops/109606"], ["https://data.delijn.be/stops/401573", "https://data.delijn.be/stops/402178"], ["https://data.delijn.be/stops/204774", "https://data.delijn.be/stops/205594"], ["https://data.delijn.be/stops/200566", "https://data.delijn.be/stops/201666"], ["https://data.delijn.be/stops/204767", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/208079", "https://data.delijn.be/stops/209634"], ["https://data.delijn.be/stops/502327", "https://data.delijn.be/stops/505338"], ["https://data.delijn.be/stops/300553", "https://data.delijn.be/stops/300563"], ["https://data.delijn.be/stops/403822", "https://data.delijn.be/stops/408440"], ["https://data.delijn.be/stops/405024", "https://data.delijn.be/stops/405607"], ["https://data.delijn.be/stops/303987", "https://data.delijn.be/stops/307014"], ["https://data.delijn.be/stops/101385", "https://data.delijn.be/stops/102565"], ["https://data.delijn.be/stops/408838", "https://data.delijn.be/stops/408839"], ["https://data.delijn.be/stops/302783", "https://data.delijn.be/stops/307046"], ["https://data.delijn.be/stops/406502", "https://data.delijn.be/stops/406504"], ["https://data.delijn.be/stops/305523", "https://data.delijn.be/stops/308358"], ["https://data.delijn.be/stops/508090", "https://data.delijn.be/stops/508107"], ["https://data.delijn.be/stops/400042", "https://data.delijn.be/stops/400043"], ["https://data.delijn.be/stops/505842", "https://data.delijn.be/stops/509244"], ["https://data.delijn.be/stops/201875", "https://data.delijn.be/stops/203020"], ["https://data.delijn.be/stops/304235", "https://data.delijn.be/stops/304805"], ["https://data.delijn.be/stops/208699", "https://data.delijn.be/stops/208709"], ["https://data.delijn.be/stops/204446", "https://data.delijn.be/stops/205335"], ["https://data.delijn.be/stops/509166", "https://data.delijn.be/stops/509196"], ["https://data.delijn.be/stops/402515", "https://data.delijn.be/stops/402519"], ["https://data.delijn.be/stops/305833", "https://data.delijn.be/stops/305834"], ["https://data.delijn.be/stops/400201", "https://data.delijn.be/stops/400211"], ["https://data.delijn.be/stops/306620", "https://data.delijn.be/stops/306761"], ["https://data.delijn.be/stops/202280", "https://data.delijn.be/stops/203280"], ["https://data.delijn.be/stops/503584", "https://data.delijn.be/stops/504774"], ["https://data.delijn.be/stops/104335", "https://data.delijn.be/stops/105351"], ["https://data.delijn.be/stops/300767", "https://data.delijn.be/stops/301067"], ["https://data.delijn.be/stops/101048", "https://data.delijn.be/stops/204608"], ["https://data.delijn.be/stops/308615", "https://data.delijn.be/stops/308616"], ["https://data.delijn.be/stops/202986", "https://data.delijn.be/stops/202987"], ["https://data.delijn.be/stops/204083", "https://data.delijn.be/stops/205201"], ["https://data.delijn.be/stops/106673", "https://data.delijn.be/stops/106675"], ["https://data.delijn.be/stops/504614", "https://data.delijn.be/stops/509613"], ["https://data.delijn.be/stops/108259", "https://data.delijn.be/stops/109338"], ["https://data.delijn.be/stops/403321", "https://data.delijn.be/stops/403906"], ["https://data.delijn.be/stops/404985", "https://data.delijn.be/stops/408647"], ["https://data.delijn.be/stops/208331", "https://data.delijn.be/stops/209715"], ["https://data.delijn.be/stops/408204", "https://data.delijn.be/stops/408205"], ["https://data.delijn.be/stops/204168", "https://data.delijn.be/stops/205168"], ["https://data.delijn.be/stops/403595", "https://data.delijn.be/stops/404319"], ["https://data.delijn.be/stops/201562", "https://data.delijn.be/stops/201563"], ["https://data.delijn.be/stops/400801", "https://data.delijn.be/stops/400856"], ["https://data.delijn.be/stops/204912", "https://data.delijn.be/stops/204913"], ["https://data.delijn.be/stops/302384", "https://data.delijn.be/stops/302672"], ["https://data.delijn.be/stops/407824", "https://data.delijn.be/stops/407921"], ["https://data.delijn.be/stops/402377", "https://data.delijn.be/stops/405568"], ["https://data.delijn.be/stops/303047", "https://data.delijn.be/stops/305504"], ["https://data.delijn.be/stops/209314", "https://data.delijn.be/stops/209788"], ["https://data.delijn.be/stops/104007", "https://data.delijn.be/stops/104021"], ["https://data.delijn.be/stops/301141", "https://data.delijn.be/stops/302954"], ["https://data.delijn.be/stops/300790", "https://data.delijn.be/stops/300792"], ["https://data.delijn.be/stops/503053", "https://data.delijn.be/stops/503056"], ["https://data.delijn.be/stops/106023", "https://data.delijn.be/stops/106133"], ["https://data.delijn.be/stops/200351", "https://data.delijn.be/stops/202650"], ["https://data.delijn.be/stops/101025", "https://data.delijn.be/stops/104946"], ["https://data.delijn.be/stops/405226", "https://data.delijn.be/stops/405227"], ["https://data.delijn.be/stops/206474", "https://data.delijn.be/stops/207475"], ["https://data.delijn.be/stops/201902", "https://data.delijn.be/stops/201921"], ["https://data.delijn.be/stops/202644", "https://data.delijn.be/stops/203644"], ["https://data.delijn.be/stops/108733", "https://data.delijn.be/stops/108734"], ["https://data.delijn.be/stops/209070", "https://data.delijn.be/stops/209087"], ["https://data.delijn.be/stops/404131", "https://data.delijn.be/stops/404189"], ["https://data.delijn.be/stops/403601", "https://data.delijn.be/stops/407514"], ["https://data.delijn.be/stops/402534", "https://data.delijn.be/stops/405029"], ["https://data.delijn.be/stops/301582", "https://data.delijn.be/stops/301583"], ["https://data.delijn.be/stops/204298", "https://data.delijn.be/stops/204352"], ["https://data.delijn.be/stops/107025", "https://data.delijn.be/stops/107026"], ["https://data.delijn.be/stops/505993", "https://data.delijn.be/stops/508825"], ["https://data.delijn.be/stops/305000", "https://data.delijn.be/stops/305002"], ["https://data.delijn.be/stops/106802", "https://data.delijn.be/stops/106871"], ["https://data.delijn.be/stops/404508", "https://data.delijn.be/stops/406753"], ["https://data.delijn.be/stops/503114", "https://data.delijn.be/stops/505373"], ["https://data.delijn.be/stops/201617", "https://data.delijn.be/stops/203921"], ["https://data.delijn.be/stops/104340", "https://data.delijn.be/stops/105351"], ["https://data.delijn.be/stops/501546", "https://data.delijn.be/stops/506326"], ["https://data.delijn.be/stops/202688", "https://data.delijn.be/stops/203038"], ["https://data.delijn.be/stops/107972", "https://data.delijn.be/stops/107973"], ["https://data.delijn.be/stops/108757", "https://data.delijn.be/stops/108797"], ["https://data.delijn.be/stops/302404", "https://data.delijn.be/stops/306117"], ["https://data.delijn.be/stops/506086", "https://data.delijn.be/stops/507739"], ["https://data.delijn.be/stops/206743", "https://data.delijn.be/stops/207743"], ["https://data.delijn.be/stops/200028", "https://data.delijn.be/stops/201028"], ["https://data.delijn.be/stops/106086", "https://data.delijn.be/stops/106090"], ["https://data.delijn.be/stops/402177", "https://data.delijn.be/stops/402298"], ["https://data.delijn.be/stops/409231", "https://data.delijn.be/stops/409234"], ["https://data.delijn.be/stops/502637", "https://data.delijn.be/stops/507569"], ["https://data.delijn.be/stops/400761", "https://data.delijn.be/stops/400847"], ["https://data.delijn.be/stops/508604", "https://data.delijn.be/stops/508616"], ["https://data.delijn.be/stops/105493", "https://data.delijn.be/stops/105503"], ["https://data.delijn.be/stops/404253", "https://data.delijn.be/stops/404254"], ["https://data.delijn.be/stops/300634", "https://data.delijn.be/stops/306627"], ["https://data.delijn.be/stops/405224", "https://data.delijn.be/stops/405226"], ["https://data.delijn.be/stops/106909", "https://data.delijn.be/stops/107252"], ["https://data.delijn.be/stops/209109", "https://data.delijn.be/stops/209455"], ["https://data.delijn.be/stops/102022", "https://data.delijn.be/stops/109962"], ["https://data.delijn.be/stops/400405", "https://data.delijn.be/stops/400406"], ["https://data.delijn.be/stops/102440", "https://data.delijn.be/stops/108830"], ["https://data.delijn.be/stops/302744", "https://data.delijn.be/stops/305551"], ["https://data.delijn.be/stops/108103", "https://data.delijn.be/stops/108112"], ["https://data.delijn.be/stops/203153", "https://data.delijn.be/stops/203175"], ["https://data.delijn.be/stops/403957", "https://data.delijn.be/stops/407075"], ["https://data.delijn.be/stops/103210", "https://data.delijn.be/stops/106303"], ["https://data.delijn.be/stops/402323", "https://data.delijn.be/stops/405573"], ["https://data.delijn.be/stops/203476", "https://data.delijn.be/stops/210003"], ["https://data.delijn.be/stops/103233", "https://data.delijn.be/stops/107141"], ["https://data.delijn.be/stops/204647", "https://data.delijn.be/stops/205647"], ["https://data.delijn.be/stops/302426", "https://data.delijn.be/stops/302438"], ["https://data.delijn.be/stops/301270", "https://data.delijn.be/stops/307034"], ["https://data.delijn.be/stops/101545", "https://data.delijn.be/stops/103800"], ["https://data.delijn.be/stops/209781", "https://data.delijn.be/stops/209782"], ["https://data.delijn.be/stops/103586", "https://data.delijn.be/stops/104254"], ["https://data.delijn.be/stops/201679", "https://data.delijn.be/stops/201840"], ["https://data.delijn.be/stops/402229", "https://data.delijn.be/stops/402333"], ["https://data.delijn.be/stops/508691", "https://data.delijn.be/stops/508692"], ["https://data.delijn.be/stops/201813", "https://data.delijn.be/stops/209328"], ["https://data.delijn.be/stops/503515", "https://data.delijn.be/stops/508514"], ["https://data.delijn.be/stops/206207", "https://data.delijn.be/stops/206686"], ["https://data.delijn.be/stops/208148", "https://data.delijn.be/stops/209149"], ["https://data.delijn.be/stops/204375", "https://data.delijn.be/stops/205374"], ["https://data.delijn.be/stops/200047", "https://data.delijn.be/stops/201142"], ["https://data.delijn.be/stops/504532", "https://data.delijn.be/stops/504634"], ["https://data.delijn.be/stops/406162", "https://data.delijn.be/stops/407331"], ["https://data.delijn.be/stops/301411", "https://data.delijn.be/stops/301422"], ["https://data.delijn.be/stops/400497", "https://data.delijn.be/stops/406564"], ["https://data.delijn.be/stops/504760", "https://data.delijn.be/stops/504767"], ["https://data.delijn.be/stops/202328", "https://data.delijn.be/stops/205559"], ["https://data.delijn.be/stops/101191", "https://data.delijn.be/stops/204651"], ["https://data.delijn.be/stops/304823", "https://data.delijn.be/stops/304900"], ["https://data.delijn.be/stops/204098", "https://data.delijn.be/stops/204224"], ["https://data.delijn.be/stops/101064", "https://data.delijn.be/stops/106747"], ["https://data.delijn.be/stops/302266", "https://data.delijn.be/stops/306374"], ["https://data.delijn.be/stops/203993", "https://data.delijn.be/stops/211025"], ["https://data.delijn.be/stops/306312", "https://data.delijn.be/stops/307004"], ["https://data.delijn.be/stops/507118", "https://data.delijn.be/stops/507821"], ["https://data.delijn.be/stops/404738", "https://data.delijn.be/stops/404741"], ["https://data.delijn.be/stops/204204", "https://data.delijn.be/stops/205230"], ["https://data.delijn.be/stops/104332", "https://data.delijn.be/stops/108125"], ["https://data.delijn.be/stops/407544", "https://data.delijn.be/stops/407557"], ["https://data.delijn.be/stops/104341", "https://data.delijn.be/stops/104344"], ["https://data.delijn.be/stops/206452", "https://data.delijn.be/stops/207452"], ["https://data.delijn.be/stops/107562", "https://data.delijn.be/stops/107564"], ["https://data.delijn.be/stops/505813", "https://data.delijn.be/stops/505911"], ["https://data.delijn.be/stops/300305", "https://data.delijn.be/stops/306249"], ["https://data.delijn.be/stops/300224", "https://data.delijn.be/stops/307112"], ["https://data.delijn.be/stops/204309", "https://data.delijn.be/stops/204310"], ["https://data.delijn.be/stops/503546", "https://data.delijn.be/stops/508546"], ["https://data.delijn.be/stops/504374", "https://data.delijn.be/stops/509580"], ["https://data.delijn.be/stops/403761", "https://data.delijn.be/stops/403781"], ["https://data.delijn.be/stops/107528", "https://data.delijn.be/stops/107748"], ["https://data.delijn.be/stops/200764", "https://data.delijn.be/stops/209382"], ["https://data.delijn.be/stops/200018", "https://data.delijn.be/stops/201171"], ["https://data.delijn.be/stops/104254", "https://data.delijn.be/stops/104255"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/202190"], ["https://data.delijn.be/stops/108339", "https://data.delijn.be/stops/109299"], ["https://data.delijn.be/stops/304168", "https://data.delijn.be/stops/307538"], ["https://data.delijn.be/stops/408802", "https://data.delijn.be/stops/408810"], ["https://data.delijn.be/stops/505926", "https://data.delijn.be/stops/505960"], ["https://data.delijn.be/stops/501368", "https://data.delijn.be/stops/590413"], ["https://data.delijn.be/stops/204373", "https://data.delijn.be/stops/205373"], ["https://data.delijn.be/stops/202272", "https://data.delijn.be/stops/202276"], ["https://data.delijn.be/stops/201414", "https://data.delijn.be/stops/208888"], ["https://data.delijn.be/stops/302262", "https://data.delijn.be/stops/302951"], ["https://data.delijn.be/stops/300871", "https://data.delijn.be/stops/302234"], ["https://data.delijn.be/stops/407003", "https://data.delijn.be/stops/408196"], ["https://data.delijn.be/stops/301713", "https://data.delijn.be/stops/305302"], ["https://data.delijn.be/stops/303295", "https://data.delijn.be/stops/303298"], ["https://data.delijn.be/stops/300672", "https://data.delijn.be/stops/300680"], ["https://data.delijn.be/stops/503508", "https://data.delijn.be/stops/503512"], ["https://data.delijn.be/stops/206563", "https://data.delijn.be/stops/209126"], ["https://data.delijn.be/stops/405527", "https://data.delijn.be/stops/408131"], ["https://data.delijn.be/stops/401045", "https://data.delijn.be/stops/409817"], ["https://data.delijn.be/stops/204660", "https://data.delijn.be/stops/204661"], ["https://data.delijn.be/stops/303392", "https://data.delijn.be/stops/308794"], ["https://data.delijn.be/stops/202936", "https://data.delijn.be/stops/203935"], ["https://data.delijn.be/stops/304925", "https://data.delijn.be/stops/306101"], ["https://data.delijn.be/stops/104461", "https://data.delijn.be/stops/104464"], ["https://data.delijn.be/stops/101617", "https://data.delijn.be/stops/102934"], ["https://data.delijn.be/stops/202499", "https://data.delijn.be/stops/203498"], ["https://data.delijn.be/stops/402386", "https://data.delijn.be/stops/402490"], ["https://data.delijn.be/stops/102693", "https://data.delijn.be/stops/102885"], ["https://data.delijn.be/stops/405678", "https://data.delijn.be/stops/408392"], ["https://data.delijn.be/stops/501501", "https://data.delijn.be/stops/506356"], ["https://data.delijn.be/stops/104887", "https://data.delijn.be/stops/104889"], ["https://data.delijn.be/stops/502107", "https://data.delijn.be/stops/502126"], ["https://data.delijn.be/stops/403192", "https://data.delijn.be/stops/407580"], ["https://data.delijn.be/stops/105102", "https://data.delijn.be/stops/109504"], ["https://data.delijn.be/stops/300398", "https://data.delijn.be/stops/307490"], ["https://data.delijn.be/stops/108713", "https://data.delijn.be/stops/108715"], ["https://data.delijn.be/stops/204505", "https://data.delijn.be/stops/205505"], ["https://data.delijn.be/stops/203535", "https://data.delijn.be/stops/203964"], ["https://data.delijn.be/stops/304561", "https://data.delijn.be/stops/304665"], ["https://data.delijn.be/stops/504737", "https://data.delijn.be/stops/505411"], ["https://data.delijn.be/stops/400228", "https://data.delijn.be/stops/400229"], ["https://data.delijn.be/stops/403932", "https://data.delijn.be/stops/403933"], ["https://data.delijn.be/stops/503609", "https://data.delijn.be/stops/503610"], ["https://data.delijn.be/stops/501046", "https://data.delijn.be/stops/505029"], ["https://data.delijn.be/stops/200392", "https://data.delijn.be/stops/201390"], ["https://data.delijn.be/stops/304132", "https://data.delijn.be/stops/304163"], ["https://data.delijn.be/stops/508715", "https://data.delijn.be/stops/509970"], ["https://data.delijn.be/stops/103162", "https://data.delijn.be/stops/103163"], ["https://data.delijn.be/stops/301320", "https://data.delijn.be/stops/301322"], ["https://data.delijn.be/stops/106400", "https://data.delijn.be/stops/106402"], ["https://data.delijn.be/stops/208199", "https://data.delijn.be/stops/208814"], ["https://data.delijn.be/stops/104856", "https://data.delijn.be/stops/104857"], ["https://data.delijn.be/stops/201569", "https://data.delijn.be/stops/202193"], ["https://data.delijn.be/stops/202014", "https://data.delijn.be/stops/203013"], ["https://data.delijn.be/stops/400558", "https://data.delijn.be/stops/407042"], ["https://data.delijn.be/stops/502189", "https://data.delijn.be/stops/505053"], ["https://data.delijn.be/stops/102752", "https://data.delijn.be/stops/103701"], ["https://data.delijn.be/stops/202154", "https://data.delijn.be/stops/202175"], ["https://data.delijn.be/stops/206022", "https://data.delijn.be/stops/206075"], ["https://data.delijn.be/stops/106273", "https://data.delijn.be/stops/106274"], ["https://data.delijn.be/stops/200730", "https://data.delijn.be/stops/202614"], ["https://data.delijn.be/stops/404306", "https://data.delijn.be/stops/404307"], ["https://data.delijn.be/stops/301194", "https://data.delijn.be/stops/308257"], ["https://data.delijn.be/stops/101546", "https://data.delijn.be/stops/101898"], ["https://data.delijn.be/stops/405624", "https://data.delijn.be/stops/409258"], ["https://data.delijn.be/stops/204726", "https://data.delijn.be/stops/205725"], ["https://data.delijn.be/stops/103712", "https://data.delijn.be/stops/104050"], ["https://data.delijn.be/stops/104703", "https://data.delijn.be/stops/107084"], ["https://data.delijn.be/stops/403588", "https://data.delijn.be/stops/403664"], ["https://data.delijn.be/stops/501080", "https://data.delijn.be/stops/501082"], ["https://data.delijn.be/stops/203429", "https://data.delijn.be/stops/205939"], ["https://data.delijn.be/stops/207373", "https://data.delijn.be/stops/215809"], ["https://data.delijn.be/stops/508213", "https://data.delijn.be/stops/509746"], ["https://data.delijn.be/stops/104720", "https://data.delijn.be/stops/105235"], ["https://data.delijn.be/stops/304012", "https://data.delijn.be/stops/307814"], ["https://data.delijn.be/stops/102715", "https://data.delijn.be/stops/103363"], ["https://data.delijn.be/stops/405637", "https://data.delijn.be/stops/405641"], ["https://data.delijn.be/stops/307553", "https://data.delijn.be/stops/307555"], ["https://data.delijn.be/stops/405434", "https://data.delijn.be/stops/409292"], ["https://data.delijn.be/stops/208035", "https://data.delijn.be/stops/209035"], ["https://data.delijn.be/stops/206566", "https://data.delijn.be/stops/207567"], ["https://data.delijn.be/stops/503949", "https://data.delijn.be/stops/508949"], ["https://data.delijn.be/stops/209274", "https://data.delijn.be/stops/209275"], ["https://data.delijn.be/stops/302034", "https://data.delijn.be/stops/308958"], ["https://data.delijn.be/stops/105046", "https://data.delijn.be/stops/109759"], ["https://data.delijn.be/stops/107970", "https://data.delijn.be/stops/107972"], ["https://data.delijn.be/stops/104584", "https://data.delijn.be/stops/107931"], ["https://data.delijn.be/stops/400704", "https://data.delijn.be/stops/400705"], ["https://data.delijn.be/stops/202009", "https://data.delijn.be/stops/203009"], ["https://data.delijn.be/stops/501006", "https://data.delijn.be/stops/506513"], ["https://data.delijn.be/stops/106619", "https://data.delijn.be/stops/106621"], ["https://data.delijn.be/stops/504596", "https://data.delijn.be/stops/509596"], ["https://data.delijn.be/stops/107842", "https://data.delijn.be/stops/107846"], ["https://data.delijn.be/stops/202737", "https://data.delijn.be/stops/203738"], ["https://data.delijn.be/stops/207669", "https://data.delijn.be/stops/208503"], ["https://data.delijn.be/stops/409053", "https://data.delijn.be/stops/409064"], ["https://data.delijn.be/stops/502640", "https://data.delijn.be/stops/507412"], ["https://data.delijn.be/stops/108644", "https://data.delijn.be/stops/109678"], ["https://data.delijn.be/stops/503819", "https://data.delijn.be/stops/508820"], ["https://data.delijn.be/stops/202406", "https://data.delijn.be/stops/203406"], ["https://data.delijn.be/stops/101995", "https://data.delijn.be/stops/103545"], ["https://data.delijn.be/stops/407061", "https://data.delijn.be/stops/407071"], ["https://data.delijn.be/stops/206301", "https://data.delijn.be/stops/206302"], ["https://data.delijn.be/stops/102013", "https://data.delijn.be/stops/102076"], ["https://data.delijn.be/stops/204047", "https://data.delijn.be/stops/204048"], ["https://data.delijn.be/stops/507605", "https://data.delijn.be/stops/507606"], ["https://data.delijn.be/stops/206547", "https://data.delijn.be/stops/207547"], ["https://data.delijn.be/stops/107331", "https://data.delijn.be/stops/107333"], ["https://data.delijn.be/stops/204310", "https://data.delijn.be/stops/205448"], ["https://data.delijn.be/stops/107058", "https://data.delijn.be/stops/108224"], ["https://data.delijn.be/stops/302459", "https://data.delijn.be/stops/302467"], ["https://data.delijn.be/stops/501247", "https://data.delijn.be/stops/501559"], ["https://data.delijn.be/stops/101607", "https://data.delijn.be/stops/109809"], ["https://data.delijn.be/stops/501045", "https://data.delijn.be/stops/501049"], ["https://data.delijn.be/stops/305146", "https://data.delijn.be/stops/305157"], ["https://data.delijn.be/stops/101985", "https://data.delijn.be/stops/103795"], ["https://data.delijn.be/stops/407371", "https://data.delijn.be/stops/407392"], ["https://data.delijn.be/stops/407427", "https://data.delijn.be/stops/409861"], ["https://data.delijn.be/stops/303051", "https://data.delijn.be/stops/303061"], ["https://data.delijn.be/stops/106713", "https://data.delijn.be/stops/106714"], ["https://data.delijn.be/stops/308459", "https://data.delijn.be/stops/308460"], ["https://data.delijn.be/stops/105727", "https://data.delijn.be/stops/109845"], ["https://data.delijn.be/stops/308158", "https://data.delijn.be/stops/308162"], ["https://data.delijn.be/stops/202171", "https://data.delijn.be/stops/202174"], ["https://data.delijn.be/stops/407331", "https://data.delijn.be/stops/409494"], ["https://data.delijn.be/stops/109754", "https://data.delijn.be/stops/109755"], ["https://data.delijn.be/stops/502109", "https://data.delijn.be/stops/502145"], ["https://data.delijn.be/stops/404969", "https://data.delijn.be/stops/404970"], ["https://data.delijn.be/stops/105666", "https://data.delijn.be/stops/105667"], ["https://data.delijn.be/stops/406738", "https://data.delijn.be/stops/407407"], ["https://data.delijn.be/stops/405631", "https://data.delijn.be/stops/405632"], ["https://data.delijn.be/stops/504713", "https://data.delijn.be/stops/508286"], ["https://data.delijn.be/stops/201954", "https://data.delijn.be/stops/211054"], ["https://data.delijn.be/stops/400712", "https://data.delijn.be/stops/409509"], ["https://data.delijn.be/stops/406804", "https://data.delijn.be/stops/410101"], ["https://data.delijn.be/stops/204144", "https://data.delijn.be/stops/205150"], ["https://data.delijn.be/stops/208261", "https://data.delijn.be/stops/209262"], ["https://data.delijn.be/stops/303459", "https://data.delijn.be/stops/303482"], ["https://data.delijn.be/stops/206470", "https://data.delijn.be/stops/207469"], ["https://data.delijn.be/stops/300687", "https://data.delijn.be/stops/306936"], ["https://data.delijn.be/stops/408243", "https://data.delijn.be/stops/408308"], ["https://data.delijn.be/stops/300431", "https://data.delijn.be/stops/302696"], ["https://data.delijn.be/stops/204221", "https://data.delijn.be/stops/205245"], ["https://data.delijn.be/stops/109182", "https://data.delijn.be/stops/109253"], ["https://data.delijn.be/stops/201799", "https://data.delijn.be/stops/210050"], ["https://data.delijn.be/stops/203105", "https://data.delijn.be/stops/203106"], ["https://data.delijn.be/stops/404661", "https://data.delijn.be/stops/404669"], ["https://data.delijn.be/stops/504752", "https://data.delijn.be/stops/504753"], ["https://data.delijn.be/stops/407088", "https://data.delijn.be/stops/407263"], ["https://data.delijn.be/stops/304247", "https://data.delijn.be/stops/306826"], ["https://data.delijn.be/stops/106765", "https://data.delijn.be/stops/107513"], ["https://data.delijn.be/stops/403929", "https://data.delijn.be/stops/403960"], ["https://data.delijn.be/stops/307725", "https://data.delijn.be/stops/307895"], ["https://data.delijn.be/stops/106493", "https://data.delijn.be/stops/109712"], ["https://data.delijn.be/stops/104861", "https://data.delijn.be/stops/105109"], ["https://data.delijn.be/stops/303865", "https://data.delijn.be/stops/308881"], ["https://data.delijn.be/stops/206298", "https://data.delijn.be/stops/207143"], ["https://data.delijn.be/stops/503925", "https://data.delijn.be/stops/503929"], ["https://data.delijn.be/stops/401842", "https://data.delijn.be/stops/401852"], ["https://data.delijn.be/stops/502429", "https://data.delijn.be/stops/507432"], ["https://data.delijn.be/stops/409081", "https://data.delijn.be/stops/409139"], ["https://data.delijn.be/stops/301467", "https://data.delijn.be/stops/307959"], ["https://data.delijn.be/stops/105764", "https://data.delijn.be/stops/106017"], ["https://data.delijn.be/stops/107577", "https://data.delijn.be/stops/109432"], ["https://data.delijn.be/stops/409763", "https://data.delijn.be/stops/409764"], ["https://data.delijn.be/stops/104026", "https://data.delijn.be/stops/104027"], ["https://data.delijn.be/stops/102928", "https://data.delijn.be/stops/106239"], ["https://data.delijn.be/stops/304932", "https://data.delijn.be/stops/304933"], ["https://data.delijn.be/stops/304376", "https://data.delijn.be/stops/305993"], ["https://data.delijn.be/stops/504949", "https://data.delijn.be/stops/507941"], ["https://data.delijn.be/stops/105091", "https://data.delijn.be/stops/108880"], ["https://data.delijn.be/stops/303033", "https://data.delijn.be/stops/303119"], ["https://data.delijn.be/stops/107182", "https://data.delijn.be/stops/107183"], ["https://data.delijn.be/stops/207499", "https://data.delijn.be/stops/207528"], ["https://data.delijn.be/stops/505201", "https://data.delijn.be/stops/508152"], ["https://data.delijn.be/stops/401565", "https://data.delijn.be/stops/401580"], ["https://data.delijn.be/stops/401393", "https://data.delijn.be/stops/410208"], ["https://data.delijn.be/stops/105704", "https://data.delijn.be/stops/105706"], ["https://data.delijn.be/stops/501007", "https://data.delijn.be/stops/508750"], ["https://data.delijn.be/stops/102725", "https://data.delijn.be/stops/107417"], ["https://data.delijn.be/stops/305076", "https://data.delijn.be/stops/307295"], ["https://data.delijn.be/stops/404865", "https://data.delijn.be/stops/404913"], ["https://data.delijn.be/stops/206948", "https://data.delijn.be/stops/207948"], ["https://data.delijn.be/stops/101907", "https://data.delijn.be/stops/101917"], ["https://data.delijn.be/stops/301724", "https://data.delijn.be/stops/301726"], ["https://data.delijn.be/stops/501323", "https://data.delijn.be/stops/501347"], ["https://data.delijn.be/stops/206251", "https://data.delijn.be/stops/216021"], ["https://data.delijn.be/stops/400200", "https://data.delijn.be/stops/402375"], ["https://data.delijn.be/stops/102309", "https://data.delijn.be/stops/105567"], ["https://data.delijn.be/stops/102638", "https://data.delijn.be/stops/107848"], ["https://data.delijn.be/stops/501560", "https://data.delijn.be/stops/506089"], ["https://data.delijn.be/stops/408360", "https://data.delijn.be/stops/408361"], ["https://data.delijn.be/stops/301642", "https://data.delijn.be/stops/301643"], ["https://data.delijn.be/stops/108683", "https://data.delijn.be/stops/108827"], ["https://data.delijn.be/stops/408520", "https://data.delijn.be/stops/408562"], ["https://data.delijn.be/stops/505201", "https://data.delijn.be/stops/505369"], ["https://data.delijn.be/stops/302128", "https://data.delijn.be/stops/307530"], ["https://data.delijn.be/stops/402809", "https://data.delijn.be/stops/409018"], ["https://data.delijn.be/stops/501255", "https://data.delijn.be/stops/506635"], ["https://data.delijn.be/stops/208188", "https://data.delijn.be/stops/209188"], ["https://data.delijn.be/stops/203512", "https://data.delijn.be/stops/203513"], ["https://data.delijn.be/stops/300368", "https://data.delijn.be/stops/300370"], ["https://data.delijn.be/stops/406296", "https://data.delijn.be/stops/406423"], ["https://data.delijn.be/stops/200514", "https://data.delijn.be/stops/200515"], ["https://data.delijn.be/stops/304000", "https://data.delijn.be/stops/306002"], ["https://data.delijn.be/stops/408314", "https://data.delijn.be/stops/408315"], ["https://data.delijn.be/stops/205064", "https://data.delijn.be/stops/205212"], ["https://data.delijn.be/stops/200228", "https://data.delijn.be/stops/201369"], ["https://data.delijn.be/stops/202277", "https://data.delijn.be/stops/203662"], ["https://data.delijn.be/stops/105059", "https://data.delijn.be/stops/105824"], ["https://data.delijn.be/stops/105724", "https://data.delijn.be/stops/108780"], ["https://data.delijn.be/stops/505424", "https://data.delijn.be/stops/505810"], ["https://data.delijn.be/stops/204566", "https://data.delijn.be/stops/305856"], ["https://data.delijn.be/stops/400318", "https://data.delijn.be/stops/400319"], ["https://data.delijn.be/stops/104001", "https://data.delijn.be/stops/104006"], ["https://data.delijn.be/stops/207762", "https://data.delijn.be/stops/209372"], ["https://data.delijn.be/stops/202855", "https://data.delijn.be/stops/203854"], ["https://data.delijn.be/stops/300304", "https://data.delijn.be/stops/304255"], ["https://data.delijn.be/stops/105716", "https://data.delijn.be/stops/106081"], ["https://data.delijn.be/stops/200401", "https://data.delijn.be/stops/202364"], ["https://data.delijn.be/stops/106444", "https://data.delijn.be/stops/106445"], ["https://data.delijn.be/stops/308770", "https://data.delijn.be/stops/308771"], ["https://data.delijn.be/stops/106436", "https://data.delijn.be/stops/106437"], ["https://data.delijn.be/stops/103043", "https://data.delijn.be/stops/107250"], ["https://data.delijn.be/stops/102915", "https://data.delijn.be/stops/103388"], ["https://data.delijn.be/stops/101536", "https://data.delijn.be/stops/109051"], ["https://data.delijn.be/stops/102163", "https://data.delijn.be/stops/104394"], ["https://data.delijn.be/stops/208484", "https://data.delijn.be/stops/208485"], ["https://data.delijn.be/stops/410085", "https://data.delijn.be/stops/410088"], ["https://data.delijn.be/stops/106774", "https://data.delijn.be/stops/106778"], ["https://data.delijn.be/stops/103326", "https://data.delijn.be/stops/105102"], ["https://data.delijn.be/stops/204706", "https://data.delijn.be/stops/205709"], ["https://data.delijn.be/stops/207353", "https://data.delijn.be/stops/207916"], ["https://data.delijn.be/stops/400598", "https://data.delijn.be/stops/404543"], ["https://data.delijn.be/stops/503244", "https://data.delijn.be/stops/508244"], ["https://data.delijn.be/stops/107696", "https://data.delijn.be/stops/107718"], ["https://data.delijn.be/stops/101850", "https://data.delijn.be/stops/103535"], ["https://data.delijn.be/stops/103611", "https://data.delijn.be/stops/103613"], ["https://data.delijn.be/stops/308451", "https://data.delijn.be/stops/308453"], ["https://data.delijn.be/stops/300516", "https://data.delijn.be/stops/300531"], ["https://data.delijn.be/stops/503845", "https://data.delijn.be/stops/505972"], ["https://data.delijn.be/stops/207302", "https://data.delijn.be/stops/207890"], ["https://data.delijn.be/stops/405505", "https://data.delijn.be/stops/407716"], ["https://data.delijn.be/stops/302474", "https://data.delijn.be/stops/302475"], ["https://data.delijn.be/stops/505570", "https://data.delijn.be/stops/508864"], ["https://data.delijn.be/stops/202188", "https://data.delijn.be/stops/203616"], ["https://data.delijn.be/stops/403750", "https://data.delijn.be/stops/403758"], ["https://data.delijn.be/stops/505600", "https://data.delijn.be/stops/506146"], ["https://data.delijn.be/stops/503073", "https://data.delijn.be/stops/503238"], ["https://data.delijn.be/stops/504695", "https://data.delijn.be/stops/508857"], ["https://data.delijn.be/stops/306119", "https://data.delijn.be/stops/306120"], ["https://data.delijn.be/stops/502622", "https://data.delijn.be/stops/502676"], ["https://data.delijn.be/stops/308227", "https://data.delijn.be/stops/308228"], ["https://data.delijn.be/stops/207737", "https://data.delijn.be/stops/207860"], ["https://data.delijn.be/stops/505926", "https://data.delijn.be/stops/509233"], ["https://data.delijn.be/stops/101649", "https://data.delijn.be/stops/103586"], ["https://data.delijn.be/stops/206642", "https://data.delijn.be/stops/209687"], ["https://data.delijn.be/stops/209370", "https://data.delijn.be/stops/209408"], ["https://data.delijn.be/stops/108736", "https://data.delijn.be/stops/108763"], ["https://data.delijn.be/stops/501612", "https://data.delijn.be/stops/506612"], ["https://data.delijn.be/stops/502367", "https://data.delijn.be/stops/505416"], ["https://data.delijn.be/stops/200308", "https://data.delijn.be/stops/201308"], ["https://data.delijn.be/stops/200400", "https://data.delijn.be/stops/203363"], ["https://data.delijn.be/stops/405492", "https://data.delijn.be/stops/405620"], ["https://data.delijn.be/stops/304309", "https://data.delijn.be/stops/304329"], ["https://data.delijn.be/stops/301096", "https://data.delijn.be/stops/306667"], ["https://data.delijn.be/stops/304437", "https://data.delijn.be/stops/304438"], ["https://data.delijn.be/stops/300306", "https://data.delijn.be/stops/302135"], ["https://data.delijn.be/stops/303664", "https://data.delijn.be/stops/308903"], ["https://data.delijn.be/stops/400874", "https://data.delijn.be/stops/409646"], ["https://data.delijn.be/stops/200774", "https://data.delijn.be/stops/505286"], ["https://data.delijn.be/stops/502748", "https://data.delijn.be/stops/507539"], ["https://data.delijn.be/stops/206944", "https://data.delijn.be/stops/206945"], ["https://data.delijn.be/stops/304725", "https://data.delijn.be/stops/308698"], ["https://data.delijn.be/stops/503513", "https://data.delijn.be/stops/508513"], ["https://data.delijn.be/stops/406541", "https://data.delijn.be/stops/406542"], ["https://data.delijn.be/stops/400752", "https://data.delijn.be/stops/409592"], ["https://data.delijn.be/stops/501693", "https://data.delijn.be/stops/505519"], ["https://data.delijn.be/stops/302014", "https://data.delijn.be/stops/306340"], ["https://data.delijn.be/stops/401030", "https://data.delijn.be/stops/401105"], ["https://data.delijn.be/stops/302906", "https://data.delijn.be/stops/302908"], ["https://data.delijn.be/stops/402825", "https://data.delijn.be/stops/402844"], ["https://data.delijn.be/stops/407580", "https://data.delijn.be/stops/409273"], ["https://data.delijn.be/stops/504582", "https://data.delijn.be/stops/504586"], ["https://data.delijn.be/stops/505292", "https://data.delijn.be/stops/509749"], ["https://data.delijn.be/stops/300097", "https://data.delijn.be/stops/306850"], ["https://data.delijn.be/stops/109847", "https://data.delijn.be/stops/109848"], ["https://data.delijn.be/stops/306844", "https://data.delijn.be/stops/307354"], ["https://data.delijn.be/stops/205191", "https://data.delijn.be/stops/205195"], ["https://data.delijn.be/stops/307814", "https://data.delijn.be/stops/307815"], ["https://data.delijn.be/stops/400489", "https://data.delijn.be/stops/400974"], ["https://data.delijn.be/stops/407271", "https://data.delijn.be/stops/407514"], ["https://data.delijn.be/stops/206215", "https://data.delijn.be/stops/207044"], ["https://data.delijn.be/stops/106325", "https://data.delijn.be/stops/109390"], ["https://data.delijn.be/stops/404328", "https://data.delijn.be/stops/404782"], ["https://data.delijn.be/stops/505022", "https://data.delijn.be/stops/505743"], ["https://data.delijn.be/stops/507404", "https://data.delijn.be/stops/507578"], ["https://data.delijn.be/stops/306060", "https://data.delijn.be/stops/306061"], ["https://data.delijn.be/stops/500602", "https://data.delijn.be/stops/501547"], ["https://data.delijn.be/stops/303677", "https://data.delijn.be/stops/303978"], ["https://data.delijn.be/stops/103634", "https://data.delijn.be/stops/107168"], ["https://data.delijn.be/stops/101943", "https://data.delijn.be/stops/108318"], ["https://data.delijn.be/stops/403520", "https://data.delijn.be/stops/410010"], ["https://data.delijn.be/stops/303640", "https://data.delijn.be/stops/303641"], ["https://data.delijn.be/stops/302667", "https://data.delijn.be/stops/302668"], ["https://data.delijn.be/stops/300582", "https://data.delijn.be/stops/300588"], ["https://data.delijn.be/stops/302100", "https://data.delijn.be/stops/302104"], ["https://data.delijn.be/stops/404466", "https://data.delijn.be/stops/404467"], ["https://data.delijn.be/stops/303818", "https://data.delijn.be/stops/303819"], ["https://data.delijn.be/stops/306688", "https://data.delijn.be/stops/307883"], ["https://data.delijn.be/stops/206027", "https://data.delijn.be/stops/207207"], ["https://data.delijn.be/stops/301506", "https://data.delijn.be/stops/301516"], ["https://data.delijn.be/stops/205346", "https://data.delijn.be/stops/205347"], ["https://data.delijn.be/stops/409576", "https://data.delijn.be/stops/410082"], ["https://data.delijn.be/stops/408142", "https://data.delijn.be/stops/307451"], ["https://data.delijn.be/stops/105521", "https://data.delijn.be/stops/105522"], ["https://data.delijn.be/stops/505215", "https://data.delijn.be/stops/505300"], ["https://data.delijn.be/stops/102702", "https://data.delijn.be/stops/105651"], ["https://data.delijn.be/stops/302087", "https://data.delijn.be/stops/302250"], ["https://data.delijn.be/stops/102997", "https://data.delijn.be/stops/109452"], ["https://data.delijn.be/stops/206254", "https://data.delijn.be/stops/206255"], ["https://data.delijn.be/stops/200091", "https://data.delijn.be/stops/201479"], ["https://data.delijn.be/stops/303019", "https://data.delijn.be/stops/304243"], ["https://data.delijn.be/stops/206123", "https://data.delijn.be/stops/207102"], ["https://data.delijn.be/stops/204648", "https://data.delijn.be/stops/205613"], ["https://data.delijn.be/stops/505660", "https://data.delijn.be/stops/508751"], ["https://data.delijn.be/stops/402200", "https://data.delijn.be/stops/402201"], ["https://data.delijn.be/stops/208274", "https://data.delijn.be/stops/209274"], ["https://data.delijn.be/stops/300456", "https://data.delijn.be/stops/304975"], ["https://data.delijn.be/stops/107056", "https://data.delijn.be/stops/107059"], ["https://data.delijn.be/stops/106479", "https://data.delijn.be/stops/107055"], ["https://data.delijn.be/stops/202170", "https://data.delijn.be/stops/203117"], ["https://data.delijn.be/stops/402807", "https://data.delijn.be/stops/409476"], ["https://data.delijn.be/stops/304205", "https://data.delijn.be/stops/306003"], ["https://data.delijn.be/stops/308958", "https://data.delijn.be/stops/308959"], ["https://data.delijn.be/stops/206446", "https://data.delijn.be/stops/207060"], ["https://data.delijn.be/stops/301447", "https://data.delijn.be/stops/307799"], ["https://data.delijn.be/stops/304296", "https://data.delijn.be/stops/304515"], ["https://data.delijn.be/stops/204522", "https://data.delijn.be/stops/205521"], ["https://data.delijn.be/stops/303336", "https://data.delijn.be/stops/305063"], ["https://data.delijn.be/stops/105357", "https://data.delijn.be/stops/105591"], ["https://data.delijn.be/stops/304218", "https://data.delijn.be/stops/308773"], ["https://data.delijn.be/stops/304542", "https://data.delijn.be/stops/307586"], ["https://data.delijn.be/stops/407460", "https://data.delijn.be/stops/407522"], ["https://data.delijn.be/stops/403307", "https://data.delijn.be/stops/410338"], ["https://data.delijn.be/stops/406244", "https://data.delijn.be/stops/409348"], ["https://data.delijn.be/stops/101838", "https://data.delijn.be/stops/102395"], ["https://data.delijn.be/stops/108638", "https://data.delijn.be/stops/109682"], ["https://data.delijn.be/stops/202524", "https://data.delijn.be/stops/203524"], ["https://data.delijn.be/stops/104215", "https://data.delijn.be/stops/104260"], ["https://data.delijn.be/stops/202316", "https://data.delijn.be/stops/203316"], ["https://data.delijn.be/stops/405160", "https://data.delijn.be/stops/405174"], ["https://data.delijn.be/stops/101785", "https://data.delijn.be/stops/101790"], ["https://data.delijn.be/stops/204597", "https://data.delijn.be/stops/205597"], ["https://data.delijn.be/stops/300419", "https://data.delijn.be/stops/300425"], ["https://data.delijn.be/stops/305087", "https://data.delijn.be/stops/306955"], ["https://data.delijn.be/stops/207941", "https://data.delijn.be/stops/208622"], ["https://data.delijn.be/stops/406668", "https://data.delijn.be/stops/406669"], ["https://data.delijn.be/stops/201666", "https://data.delijn.be/stops/201669"], ["https://data.delijn.be/stops/403528", "https://data.delijn.be/stops/410219"], ["https://data.delijn.be/stops/201531", "https://data.delijn.be/stops/210091"], ["https://data.delijn.be/stops/300078", "https://data.delijn.be/stops/306786"], ["https://data.delijn.be/stops/304235", "https://data.delijn.be/stops/308771"], ["https://data.delijn.be/stops/305078", "https://data.delijn.be/stops/308928"], ["https://data.delijn.be/stops/101292", "https://data.delijn.be/stops/105307"], ["https://data.delijn.be/stops/406286", "https://data.delijn.be/stops/406443"], ["https://data.delijn.be/stops/502415", "https://data.delijn.be/stops/507415"], ["https://data.delijn.be/stops/403149", "https://data.delijn.be/stops/403154"], ["https://data.delijn.be/stops/103143", "https://data.delijn.be/stops/109444"], ["https://data.delijn.be/stops/301518", "https://data.delijn.be/stops/301525"], ["https://data.delijn.be/stops/409073", "https://data.delijn.be/stops/409149"], ["https://data.delijn.be/stops/204013", "https://data.delijn.be/stops/204014"], ["https://data.delijn.be/stops/506491", "https://data.delijn.be/stops/506632"], ["https://data.delijn.be/stops/302995", "https://data.delijn.be/stops/303042"], ["https://data.delijn.be/stops/401389", "https://data.delijn.be/stops/401460"], ["https://data.delijn.be/stops/104738", "https://data.delijn.be/stops/104746"], ["https://data.delijn.be/stops/409265", "https://data.delijn.be/stops/409272"], ["https://data.delijn.be/stops/200967", "https://data.delijn.be/stops/209731"], ["https://data.delijn.be/stops/505970", "https://data.delijn.be/stops/509425"], ["https://data.delijn.be/stops/103042", "https://data.delijn.be/stops/106772"], ["https://data.delijn.be/stops/303019", "https://data.delijn.be/stops/303100"], ["https://data.delijn.be/stops/302258", "https://data.delijn.be/stops/302260"], ["https://data.delijn.be/stops/503007", "https://data.delijn.be/stops/505339"], ["https://data.delijn.be/stops/201518", "https://data.delijn.be/stops/204925"], ["https://data.delijn.be/stops/202761", "https://data.delijn.be/stops/203752"], ["https://data.delijn.be/stops/300086", "https://data.delijn.be/stops/300099"], ["https://data.delijn.be/stops/401355", "https://data.delijn.be/stops/401366"], ["https://data.delijn.be/stops/106558", "https://data.delijn.be/stops/106562"], ["https://data.delijn.be/stops/205930", "https://data.delijn.be/stops/211105"], ["https://data.delijn.be/stops/104082", "https://data.delijn.be/stops/104090"], ["https://data.delijn.be/stops/509037", "https://data.delijn.be/stops/509284"], ["https://data.delijn.be/stops/201736", "https://data.delijn.be/stops/202786"], ["https://data.delijn.be/stops/408195", "https://data.delijn.be/stops/408442"], ["https://data.delijn.be/stops/400651", "https://data.delijn.be/stops/400664"], ["https://data.delijn.be/stops/405333", "https://data.delijn.be/stops/405346"], ["https://data.delijn.be/stops/105244", "https://data.delijn.be/stops/105416"], ["https://data.delijn.be/stops/101982", "https://data.delijn.be/stops/108612"], ["https://data.delijn.be/stops/202169", "https://data.delijn.be/stops/202185"], ["https://data.delijn.be/stops/204989", "https://data.delijn.be/stops/205989"], ["https://data.delijn.be/stops/104955", "https://data.delijn.be/stops/105765"], ["https://data.delijn.be/stops/501184", "https://data.delijn.be/stops/506184"], ["https://data.delijn.be/stops/300925", "https://data.delijn.be/stops/300926"], ["https://data.delijn.be/stops/403278", "https://data.delijn.be/stops/403418"], ["https://data.delijn.be/stops/204394", "https://data.delijn.be/stops/205396"], ["https://data.delijn.be/stops/107208", "https://data.delijn.be/stops/107209"], ["https://data.delijn.be/stops/304537", "https://data.delijn.be/stops/306208"], ["https://data.delijn.be/stops/403259", "https://data.delijn.be/stops/403260"], ["https://data.delijn.be/stops/305356", "https://data.delijn.be/stops/307110"], ["https://data.delijn.be/stops/300690", "https://data.delijn.be/stops/303504"], ["https://data.delijn.be/stops/300564", "https://data.delijn.be/stops/300594"], ["https://data.delijn.be/stops/109043", "https://data.delijn.be/stops/109318"], ["https://data.delijn.be/stops/106105", "https://data.delijn.be/stops/106107"], ["https://data.delijn.be/stops/407889", "https://data.delijn.be/stops/408186"], ["https://data.delijn.be/stops/403306", "https://data.delijn.be/stops/405639"], ["https://data.delijn.be/stops/107149", "https://data.delijn.be/stops/109380"], ["https://data.delijn.be/stops/208702", "https://data.delijn.be/stops/209702"], ["https://data.delijn.be/stops/407198", "https://data.delijn.be/stops/407386"], ["https://data.delijn.be/stops/205015", "https://data.delijn.be/stops/205105"], ["https://data.delijn.be/stops/204261", "https://data.delijn.be/stops/205207"], ["https://data.delijn.be/stops/403375", "https://data.delijn.be/stops/410281"], ["https://data.delijn.be/stops/200591", "https://data.delijn.be/stops/201592"], ["https://data.delijn.be/stops/105085", "https://data.delijn.be/stops/105660"], ["https://data.delijn.be/stops/204583", "https://data.delijn.be/stops/205153"], ["https://data.delijn.be/stops/207082", "https://data.delijn.be/stops/217007"], ["https://data.delijn.be/stops/402701", "https://data.delijn.be/stops/306021"], ["https://data.delijn.be/stops/407337", "https://data.delijn.be/stops/407633"], ["https://data.delijn.be/stops/105644", "https://data.delijn.be/stops/105647"], ["https://data.delijn.be/stops/401194", "https://data.delijn.be/stops/410259"], ["https://data.delijn.be/stops/206846", "https://data.delijn.be/stops/207846"], ["https://data.delijn.be/stops/405959", "https://data.delijn.be/stops/405961"], ["https://data.delijn.be/stops/407038", "https://data.delijn.be/stops/407041"], ["https://data.delijn.be/stops/401066", "https://data.delijn.be/stops/406586"], ["https://data.delijn.be/stops/506444", "https://data.delijn.be/stops/590334"], ["https://data.delijn.be/stops/208592", "https://data.delijn.be/stops/208593"], ["https://data.delijn.be/stops/104895", "https://data.delijn.be/stops/108645"], ["https://data.delijn.be/stops/201310", "https://data.delijn.be/stops/201378"], ["https://data.delijn.be/stops/510017", "https://data.delijn.be/stops/510023"], ["https://data.delijn.be/stops/502441", "https://data.delijn.be/stops/502750"], ["https://data.delijn.be/stops/206641", "https://data.delijn.be/stops/207642"], ["https://data.delijn.be/stops/204611", "https://data.delijn.be/stops/204612"], ["https://data.delijn.be/stops/300413", "https://data.delijn.be/stops/300414"], ["https://data.delijn.be/stops/103244", "https://data.delijn.be/stops/104683"], ["https://data.delijn.be/stops/305290", "https://data.delijn.be/stops/305292"], ["https://data.delijn.be/stops/102212", "https://data.delijn.be/stops/102214"], ["https://data.delijn.be/stops/206775", "https://data.delijn.be/stops/207853"], ["https://data.delijn.be/stops/403432", "https://data.delijn.be/stops/403433"], ["https://data.delijn.be/stops/403065", "https://data.delijn.be/stops/403127"], ["https://data.delijn.be/stops/407894", "https://data.delijn.be/stops/408125"], ["https://data.delijn.be/stops/505773", "https://data.delijn.be/stops/507761"], ["https://data.delijn.be/stops/501093", "https://data.delijn.be/stops/506087"], ["https://data.delijn.be/stops/106488", "https://data.delijn.be/stops/109712"], ["https://data.delijn.be/stops/505957", "https://data.delijn.be/stops/508591"], ["https://data.delijn.be/stops/402305", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/201682", "https://data.delijn.be/stops/201687"], ["https://data.delijn.be/stops/101804", "https://data.delijn.be/stops/101812"], ["https://data.delijn.be/stops/202417", "https://data.delijn.be/stops/203417"], ["https://data.delijn.be/stops/304133", "https://data.delijn.be/stops/304147"], ["https://data.delijn.be/stops/504852", "https://data.delijn.be/stops/508832"], ["https://data.delijn.be/stops/402208", "https://data.delijn.be/stops/402321"], ["https://data.delijn.be/stops/109208", "https://data.delijn.be/stops/109226"], ["https://data.delijn.be/stops/208794", "https://data.delijn.be/stops/209378"], ["https://data.delijn.be/stops/103129", "https://data.delijn.be/stops/105068"], ["https://data.delijn.be/stops/307047", "https://data.delijn.be/stops/308911"], ["https://data.delijn.be/stops/206499", "https://data.delijn.be/stops/207555"], ["https://data.delijn.be/stops/503172", "https://data.delijn.be/stops/508170"], ["https://data.delijn.be/stops/503551", "https://data.delijn.be/stops/503561"], ["https://data.delijn.be/stops/503588", "https://data.delijn.be/stops/508588"], ["https://data.delijn.be/stops/308426", "https://data.delijn.be/stops/308429"], ["https://data.delijn.be/stops/206370", "https://data.delijn.be/stops/207728"], ["https://data.delijn.be/stops/106815", "https://data.delijn.be/stops/106842"], ["https://data.delijn.be/stops/406299", "https://data.delijn.be/stops/409811"], ["https://data.delijn.be/stops/305393", "https://data.delijn.be/stops/305463"], ["https://data.delijn.be/stops/109207", "https://data.delijn.be/stops/109208"], ["https://data.delijn.be/stops/305421", "https://data.delijn.be/stops/305422"], ["https://data.delijn.be/stops/200227", "https://data.delijn.be/stops/201368"], ["https://data.delijn.be/stops/501202", "https://data.delijn.be/stops/506201"], ["https://data.delijn.be/stops/106634", "https://data.delijn.be/stops/107164"], ["https://data.delijn.be/stops/404906", "https://data.delijn.be/stops/404966"], ["https://data.delijn.be/stops/502370", "https://data.delijn.be/stops/505608"], ["https://data.delijn.be/stops/308609", "https://data.delijn.be/stops/308610"], ["https://data.delijn.be/stops/202326", "https://data.delijn.be/stops/202714"], ["https://data.delijn.be/stops/302159", "https://data.delijn.be/stops/302162"], ["https://data.delijn.be/stops/401312", "https://data.delijn.be/stops/401328"], ["https://data.delijn.be/stops/407168", "https://data.delijn.be/stops/407169"], ["https://data.delijn.be/stops/300132", "https://data.delijn.be/stops/300133"], ["https://data.delijn.be/stops/201508", "https://data.delijn.be/stops/211510"], ["https://data.delijn.be/stops/400964", "https://data.delijn.be/stops/401254"], ["https://data.delijn.be/stops/103676", "https://data.delijn.be/stops/103677"], ["https://data.delijn.be/stops/409364", "https://data.delijn.be/stops/409501"], ["https://data.delijn.be/stops/400856", "https://data.delijn.be/stops/409541"], ["https://data.delijn.be/stops/408822", "https://data.delijn.be/stops/408828"], ["https://data.delijn.be/stops/101359", "https://data.delijn.be/stops/102187"], ["https://data.delijn.be/stops/200106", "https://data.delijn.be/stops/200196"], ["https://data.delijn.be/stops/407372", "https://data.delijn.be/stops/407377"], ["https://data.delijn.be/stops/306604", "https://data.delijn.be/stops/306609"], ["https://data.delijn.be/stops/202441", "https://data.delijn.be/stops/203441"], ["https://data.delijn.be/stops/104142", "https://data.delijn.be/stops/305793"], ["https://data.delijn.be/stops/101483", "https://data.delijn.be/stops/101972"], ["https://data.delijn.be/stops/508701", "https://data.delijn.be/stops/509937"], ["https://data.delijn.be/stops/406083", "https://data.delijn.be/stops/406140"], ["https://data.delijn.be/stops/102235", "https://data.delijn.be/stops/102816"], ["https://data.delijn.be/stops/403003", "https://data.delijn.be/stops/405603"], ["https://data.delijn.be/stops/204027", "https://data.delijn.be/stops/205818"], ["https://data.delijn.be/stops/200901", "https://data.delijn.be/stops/202268"], ["https://data.delijn.be/stops/106948", "https://data.delijn.be/stops/106950"], ["https://data.delijn.be/stops/105729", "https://data.delijn.be/stops/109839"], ["https://data.delijn.be/stops/307401", "https://data.delijn.be/stops/307404"], ["https://data.delijn.be/stops/503766", "https://data.delijn.be/stops/505532"], ["https://data.delijn.be/stops/307374", "https://data.delijn.be/stops/307377"], ["https://data.delijn.be/stops/207818", "https://data.delijn.be/stops/207820"], ["https://data.delijn.be/stops/506387", "https://data.delijn.be/stops/506390"], ["https://data.delijn.be/stops/107198", "https://data.delijn.be/stops/109771"], ["https://data.delijn.be/stops/107320", "https://data.delijn.be/stops/108970"], ["https://data.delijn.be/stops/304414", "https://data.delijn.be/stops/307385"], ["https://data.delijn.be/stops/503946", "https://data.delijn.be/stops/508178"], ["https://data.delijn.be/stops/408962", "https://data.delijn.be/stops/408965"], ["https://data.delijn.be/stops/408184", "https://data.delijn.be/stops/408443"], ["https://data.delijn.be/stops/504498", "https://data.delijn.be/stops/504705"], ["https://data.delijn.be/stops/302600", "https://data.delijn.be/stops/302630"], ["https://data.delijn.be/stops/505184", "https://data.delijn.be/stops/509561"], ["https://data.delijn.be/stops/500942", "https://data.delijn.be/stops/508801"], ["https://data.delijn.be/stops/506255", "https://data.delijn.be/stops/506635"], ["https://data.delijn.be/stops/108647", "https://data.delijn.be/stops/109791"], ["https://data.delijn.be/stops/307570", "https://data.delijn.be/stops/307571"], ["https://data.delijn.be/stops/200806", "https://data.delijn.be/stops/210056"], ["https://data.delijn.be/stops/107351", "https://data.delijn.be/stops/107352"], ["https://data.delijn.be/stops/403930", "https://data.delijn.be/stops/404084"], ["https://data.delijn.be/stops/103098", "https://data.delijn.be/stops/103266"], ["https://data.delijn.be/stops/305586", "https://data.delijn.be/stops/305592"], ["https://data.delijn.be/stops/301303", "https://data.delijn.be/stops/306256"], ["https://data.delijn.be/stops/400010", "https://data.delijn.be/stops/400431"], ["https://data.delijn.be/stops/207868", "https://data.delijn.be/stops/207997"], ["https://data.delijn.be/stops/101824", "https://data.delijn.be/stops/107013"], ["https://data.delijn.be/stops/301935", "https://data.delijn.be/stops/306098"], ["https://data.delijn.be/stops/201912", "https://data.delijn.be/stops/204100"], ["https://data.delijn.be/stops/102470", "https://data.delijn.be/stops/104627"], ["https://data.delijn.be/stops/402982", "https://data.delijn.be/stops/405592"], ["https://data.delijn.be/stops/208804", "https://data.delijn.be/stops/208805"], ["https://data.delijn.be/stops/200907", "https://data.delijn.be/stops/200908"], ["https://data.delijn.be/stops/409740", "https://data.delijn.be/stops/409999"], ["https://data.delijn.be/stops/102035", "https://data.delijn.be/stops/103630"], ["https://data.delijn.be/stops/105613", "https://data.delijn.be/stops/105657"], ["https://data.delijn.be/stops/403623", "https://data.delijn.be/stops/403653"], ["https://data.delijn.be/stops/304731", "https://data.delijn.be/stops/304732"], ["https://data.delijn.be/stops/202348", "https://data.delijn.be/stops/209709"], ["https://data.delijn.be/stops/108856", "https://data.delijn.be/stops/108857"], ["https://data.delijn.be/stops/407260", "https://data.delijn.be/stops/407272"], ["https://data.delijn.be/stops/300859", "https://data.delijn.be/stops/308676"], ["https://data.delijn.be/stops/200206", "https://data.delijn.be/stops/201208"], ["https://data.delijn.be/stops/300080", "https://data.delijn.be/stops/307341"], ["https://data.delijn.be/stops/303017", "https://data.delijn.be/stops/303087"], ["https://data.delijn.be/stops/204782", "https://data.delijn.be/stops/204783"], ["https://data.delijn.be/stops/305242", "https://data.delijn.be/stops/305600"], ["https://data.delijn.be/stops/104456", "https://data.delijn.be/stops/104472"], ["https://data.delijn.be/stops/300869", "https://data.delijn.be/stops/302233"], ["https://data.delijn.be/stops/305259", "https://data.delijn.be/stops/306344"], ["https://data.delijn.be/stops/308146", "https://data.delijn.be/stops/308159"], ["https://data.delijn.be/stops/101749", "https://data.delijn.be/stops/106392"], ["https://data.delijn.be/stops/301311", "https://data.delijn.be/stops/306200"], ["https://data.delijn.be/stops/406244", "https://data.delijn.be/stops/406258"], ["https://data.delijn.be/stops/101933", "https://data.delijn.be/stops/107742"], ["https://data.delijn.be/stops/302060", "https://data.delijn.be/stops/302061"], ["https://data.delijn.be/stops/302899", "https://data.delijn.be/stops/302901"], ["https://data.delijn.be/stops/400930", "https://data.delijn.be/stops/400940"], ["https://data.delijn.be/stops/202619", "https://data.delijn.be/stops/202620"], ["https://data.delijn.be/stops/401573", "https://data.delijn.be/stops/402197"], ["https://data.delijn.be/stops/200061", "https://data.delijn.be/stops/203132"], ["https://data.delijn.be/stops/303379", "https://data.delijn.be/stops/303392"], ["https://data.delijn.be/stops/500952", "https://data.delijn.be/stops/508633"], ["https://data.delijn.be/stops/103221", "https://data.delijn.be/stops/106016"], ["https://data.delijn.be/stops/104022", "https://data.delijn.be/stops/107266"], ["https://data.delijn.be/stops/101581", "https://data.delijn.be/stops/101584"], ["https://data.delijn.be/stops/400520", "https://data.delijn.be/stops/404051"], ["https://data.delijn.be/stops/308112", "https://data.delijn.be/stops/308113"], ["https://data.delijn.be/stops/508206", "https://data.delijn.be/stops/508815"], ["https://data.delijn.be/stops/102013", "https://data.delijn.be/stops/105996"], ["https://data.delijn.be/stops/107549", "https://data.delijn.be/stops/108933"], ["https://data.delijn.be/stops/304682", "https://data.delijn.be/stops/304683"], ["https://data.delijn.be/stops/408264", "https://data.delijn.be/stops/408305"], ["https://data.delijn.be/stops/403029", "https://data.delijn.be/stops/403086"], ["https://data.delijn.be/stops/206263", "https://data.delijn.be/stops/206917"], ["https://data.delijn.be/stops/305732", "https://data.delijn.be/stops/306328"], ["https://data.delijn.be/stops/400253", "https://data.delijn.be/stops/400333"], ["https://data.delijn.be/stops/307510", "https://data.delijn.be/stops/307815"], ["https://data.delijn.be/stops/101552", "https://data.delijn.be/stops/107919"], ["https://data.delijn.be/stops/208481", "https://data.delijn.be/stops/209501"], ["https://data.delijn.be/stops/300278", "https://data.delijn.be/stops/301314"], ["https://data.delijn.be/stops/305055", "https://data.delijn.be/stops/306931"], ["https://data.delijn.be/stops/101855", "https://data.delijn.be/stops/104999"], ["https://data.delijn.be/stops/103122", "https://data.delijn.be/stops/204605"], ["https://data.delijn.be/stops/303772", "https://data.delijn.be/stops/303785"], ["https://data.delijn.be/stops/405872", "https://data.delijn.be/stops/409762"], ["https://data.delijn.be/stops/504784", "https://data.delijn.be/stops/508514"], ["https://data.delijn.be/stops/205970", "https://data.delijn.be/stops/207067"], ["https://data.delijn.be/stops/504368", "https://data.delijn.be/stops/508648"], ["https://data.delijn.be/stops/301432", "https://data.delijn.be/stops/307320"], ["https://data.delijn.be/stops/202316", "https://data.delijn.be/stops/208887"], ["https://data.delijn.be/stops/400350", "https://data.delijn.be/stops/406866"], ["https://data.delijn.be/stops/103286", "https://data.delijn.be/stops/106105"], ["https://data.delijn.be/stops/403023", "https://data.delijn.be/stops/405768"], ["https://data.delijn.be/stops/305054", "https://data.delijn.be/stops/306934"], ["https://data.delijn.be/stops/307676", "https://data.delijn.be/stops/307677"], ["https://data.delijn.be/stops/206957", "https://data.delijn.be/stops/303858"], ["https://data.delijn.be/stops/300761", "https://data.delijn.be/stops/301310"], ["https://data.delijn.be/stops/107794", "https://data.delijn.be/stops/107796"], ["https://data.delijn.be/stops/102868", "https://data.delijn.be/stops/106442"], ["https://data.delijn.be/stops/206084", "https://data.delijn.be/stops/206410"], ["https://data.delijn.be/stops/510016", "https://data.delijn.be/stops/510020"], ["https://data.delijn.be/stops/301853", "https://data.delijn.be/stops/302550"], ["https://data.delijn.be/stops/406684", "https://data.delijn.be/stops/406689"], ["https://data.delijn.be/stops/508011", "https://data.delijn.be/stops/508012"], ["https://data.delijn.be/stops/207075", "https://data.delijn.be/stops/207903"], ["https://data.delijn.be/stops/207677", "https://data.delijn.be/stops/208121"], ["https://data.delijn.be/stops/105216", "https://data.delijn.be/stops/109405"], ["https://data.delijn.be/stops/302944", "https://data.delijn.be/stops/302985"], ["https://data.delijn.be/stops/503095", "https://data.delijn.be/stops/505383"], ["https://data.delijn.be/stops/404186", "https://data.delijn.be/stops/404281"], ["https://data.delijn.be/stops/204604", "https://data.delijn.be/stops/205604"], ["https://data.delijn.be/stops/301744", "https://data.delijn.be/stops/304571"], ["https://data.delijn.be/stops/503586", "https://data.delijn.be/stops/508586"], ["https://data.delijn.be/stops/508199", "https://data.delijn.be/stops/508204"], ["https://data.delijn.be/stops/304120", "https://data.delijn.be/stops/307578"], ["https://data.delijn.be/stops/407011", "https://data.delijn.be/stops/407068"], ["https://data.delijn.be/stops/101830", "https://data.delijn.be/stops/106070"], ["https://data.delijn.be/stops/406238", "https://data.delijn.be/stops/410043"], ["https://data.delijn.be/stops/109912", "https://data.delijn.be/stops/109916"], ["https://data.delijn.be/stops/104762", "https://data.delijn.be/stops/108902"], ["https://data.delijn.be/stops/102863", "https://data.delijn.be/stops/105934"], ["https://data.delijn.be/stops/205522", "https://data.delijn.be/stops/205523"], ["https://data.delijn.be/stops/306554", "https://data.delijn.be/stops/306555"], ["https://data.delijn.be/stops/406032", "https://data.delijn.be/stops/406651"], ["https://data.delijn.be/stops/501663", "https://data.delijn.be/stops/501674"], ["https://data.delijn.be/stops/302010", "https://data.delijn.be/stops/302016"], ["https://data.delijn.be/stops/404391", "https://data.delijn.be/stops/410082"], ["https://data.delijn.be/stops/209004", "https://data.delijn.be/stops/209097"], ["https://data.delijn.be/stops/301247", "https://data.delijn.be/stops/306387"], ["https://data.delijn.be/stops/505182", "https://data.delijn.be/stops/509422"], ["https://data.delijn.be/stops/507322", "https://data.delijn.be/stops/507338"], ["https://data.delijn.be/stops/501102", "https://data.delijn.be/stops/590334"], ["https://data.delijn.be/stops/106051", "https://data.delijn.be/stops/109876"], ["https://data.delijn.be/stops/508369", "https://data.delijn.be/stops/508411"], ["https://data.delijn.be/stops/508115", "https://data.delijn.be/stops/508116"], ["https://data.delijn.be/stops/102837", "https://data.delijn.be/stops/103761"], ["https://data.delijn.be/stops/206746", "https://data.delijn.be/stops/207745"], ["https://data.delijn.be/stops/106020", "https://data.delijn.be/stops/106188"], ["https://data.delijn.be/stops/501429", "https://data.delijn.be/stops/506429"], ["https://data.delijn.be/stops/206069", "https://data.delijn.be/stops/207902"], ["https://data.delijn.be/stops/302113", "https://data.delijn.be/stops/304141"], ["https://data.delijn.be/stops/301474", "https://data.delijn.be/stops/302623"], ["https://data.delijn.be/stops/303793", "https://data.delijn.be/stops/303870"], ["https://data.delijn.be/stops/505817", "https://data.delijn.be/stops/509394"], ["https://data.delijn.be/stops/504703", "https://data.delijn.be/stops/509350"], ["https://data.delijn.be/stops/404116", "https://data.delijn.be/stops/404119"], ["https://data.delijn.be/stops/303049", "https://data.delijn.be/stops/306111"], ["https://data.delijn.be/stops/203836", "https://data.delijn.be/stops/203837"], ["https://data.delijn.be/stops/202036", "https://data.delijn.be/stops/203036"], ["https://data.delijn.be/stops/505826", "https://data.delijn.be/stops/509908"], ["https://data.delijn.be/stops/209034", "https://data.delijn.be/stops/209035"], ["https://data.delijn.be/stops/300350", "https://data.delijn.be/stops/300353"], ["https://data.delijn.be/stops/305296", "https://data.delijn.be/stops/305297"], ["https://data.delijn.be/stops/410181", "https://data.delijn.be/stops/410259"], ["https://data.delijn.be/stops/102900", "https://data.delijn.be/stops/107610"], ["https://data.delijn.be/stops/202496", "https://data.delijn.be/stops/203173"], ["https://data.delijn.be/stops/208140", "https://data.delijn.be/stops/208815"], ["https://data.delijn.be/stops/307946", "https://data.delijn.be/stops/308064"], ["https://data.delijn.be/stops/500951", "https://data.delijn.be/stops/504987"], ["https://data.delijn.be/stops/106701", "https://data.delijn.be/stops/106703"], ["https://data.delijn.be/stops/509788", "https://data.delijn.be/stops/509789"], ["https://data.delijn.be/stops/202189", "https://data.delijn.be/stops/203189"], ["https://data.delijn.be/stops/302806", "https://data.delijn.be/stops/306159"], ["https://data.delijn.be/stops/407091", "https://data.delijn.be/stops/407260"], ["https://data.delijn.be/stops/105023", "https://data.delijn.be/stops/105829"], ["https://data.delijn.be/stops/206404", "https://data.delijn.be/stops/207403"], ["https://data.delijn.be/stops/104673", "https://data.delijn.be/stops/107376"], ["https://data.delijn.be/stops/105484", "https://data.delijn.be/stops/105501"], ["https://data.delijn.be/stops/408005", "https://data.delijn.be/stops/408090"], ["https://data.delijn.be/stops/108407", "https://data.delijn.be/stops/108408"], ["https://data.delijn.be/stops/203436", "https://data.delijn.be/stops/211114"], ["https://data.delijn.be/stops/202163", "https://data.delijn.be/stops/205070"], ["https://data.delijn.be/stops/200892", "https://data.delijn.be/stops/203074"], ["https://data.delijn.be/stops/305482", "https://data.delijn.be/stops/305508"], ["https://data.delijn.be/stops/301919", "https://data.delijn.be/stops/302006"], ["https://data.delijn.be/stops/302225", "https://data.delijn.be/stops/304010"], ["https://data.delijn.be/stops/508405", "https://data.delijn.be/stops/508427"], ["https://data.delijn.be/stops/105554", "https://data.delijn.be/stops/105563"], ["https://data.delijn.be/stops/403096", "https://data.delijn.be/stops/406887"], ["https://data.delijn.be/stops/502266", "https://data.delijn.be/stops/505558"], ["https://data.delijn.be/stops/405256", "https://data.delijn.be/stops/405261"], ["https://data.delijn.be/stops/302920", "https://data.delijn.be/stops/306199"], ["https://data.delijn.be/stops/200546", "https://data.delijn.be/stops/210061"], ["https://data.delijn.be/stops/300502", "https://data.delijn.be/stops/308357"], ["https://data.delijn.be/stops/109027", "https://data.delijn.be/stops/109077"], ["https://data.delijn.be/stops/304616", "https://data.delijn.be/stops/305977"], ["https://data.delijn.be/stops/101463", "https://data.delijn.be/stops/101466"], ["https://data.delijn.be/stops/400688", "https://data.delijn.be/stops/404369"], ["https://data.delijn.be/stops/104388", "https://data.delijn.be/stops/104389"], ["https://data.delijn.be/stops/105011", "https://data.delijn.be/stops/106831"], ["https://data.delijn.be/stops/201763", "https://data.delijn.be/stops/201765"], ["https://data.delijn.be/stops/103712", "https://data.delijn.be/stops/104630"], ["https://data.delijn.be/stops/300091", "https://data.delijn.be/stops/307947"], ["https://data.delijn.be/stops/200947", "https://data.delijn.be/stops/203230"], ["https://data.delijn.be/stops/301052", "https://data.delijn.be/stops/301053"], ["https://data.delijn.be/stops/404514", "https://data.delijn.be/stops/404515"], ["https://data.delijn.be/stops/402223", "https://data.delijn.be/stops/402260"], ["https://data.delijn.be/stops/502473", "https://data.delijn.be/stops/507487"], ["https://data.delijn.be/stops/305224", "https://data.delijn.be/stops/305236"], ["https://data.delijn.be/stops/301950", "https://data.delijn.be/stops/301951"], ["https://data.delijn.be/stops/103232", "https://data.delijn.be/stops/109405"], ["https://data.delijn.be/stops/102732", "https://data.delijn.be/stops/107056"], ["https://data.delijn.be/stops/401600", "https://data.delijn.be/stops/406859"], ["https://data.delijn.be/stops/303949", "https://data.delijn.be/stops/303950"], ["https://data.delijn.be/stops/206639", "https://data.delijn.be/stops/207416"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/504610"], ["https://data.delijn.be/stops/106816", "https://data.delijn.be/stops/106842"], ["https://data.delijn.be/stops/402715", "https://data.delijn.be/stops/308138"], ["https://data.delijn.be/stops/502917", "https://data.delijn.be/stops/507910"], ["https://data.delijn.be/stops/204406", "https://data.delijn.be/stops/205406"], ["https://data.delijn.be/stops/301047", "https://data.delijn.be/stops/301073"], ["https://data.delijn.be/stops/400714", "https://data.delijn.be/stops/400717"], ["https://data.delijn.be/stops/202213", "https://data.delijn.be/stops/202775"], ["https://data.delijn.be/stops/204239", "https://data.delijn.be/stops/204246"], ["https://data.delijn.be/stops/504019", "https://data.delijn.be/stops/505204"], ["https://data.delijn.be/stops/204169", "https://data.delijn.be/stops/204588"], ["https://data.delijn.be/stops/404489", "https://data.delijn.be/stops/404528"], ["https://data.delijn.be/stops/101206", "https://data.delijn.be/stops/101656"], ["https://data.delijn.be/stops/205307", "https://data.delijn.be/stops/214008"], ["https://data.delijn.be/stops/104364", "https://data.delijn.be/stops/204273"], ["https://data.delijn.be/stops/505236", "https://data.delijn.be/stops/505720"], ["https://data.delijn.be/stops/503401", "https://data.delijn.be/stops/509957"], ["https://data.delijn.be/stops/503511", "https://data.delijn.be/stops/508511"], ["https://data.delijn.be/stops/506034", "https://data.delijn.be/stops/506039"], ["https://data.delijn.be/stops/307860", "https://data.delijn.be/stops/307861"], ["https://data.delijn.be/stops/200502", "https://data.delijn.be/stops/205951"], ["https://data.delijn.be/stops/308243", "https://data.delijn.be/stops/308244"], ["https://data.delijn.be/stops/504585", "https://data.delijn.be/stops/505995"], ["https://data.delijn.be/stops/201278", "https://data.delijn.be/stops/201995"], ["https://data.delijn.be/stops/203827", "https://data.delijn.be/stops/218023"], ["https://data.delijn.be/stops/101512", "https://data.delijn.be/stops/109074"], ["https://data.delijn.be/stops/200352", "https://data.delijn.be/stops/200354"], ["https://data.delijn.be/stops/202930", "https://data.delijn.be/stops/203930"], ["https://data.delijn.be/stops/307648", "https://data.delijn.be/stops/307692"], ["https://data.delijn.be/stops/304653", "https://data.delijn.be/stops/304654"], ["https://data.delijn.be/stops/401090", "https://data.delijn.be/stops/409980"], ["https://data.delijn.be/stops/106113", "https://data.delijn.be/stops/106114"], ["https://data.delijn.be/stops/501358", "https://data.delijn.be/stops/501359"], ["https://data.delijn.be/stops/101922", "https://data.delijn.be/stops/106057"], ["https://data.delijn.be/stops/203270", "https://data.delijn.be/stops/211291"], ["https://data.delijn.be/stops/202923", "https://data.delijn.be/stops/202924"], ["https://data.delijn.be/stops/300105", "https://data.delijn.be/stops/306844"], ["https://data.delijn.be/stops/507103", "https://data.delijn.be/stops/507148"], ["https://data.delijn.be/stops/109173", "https://data.delijn.be/stops/109231"], ["https://data.delijn.be/stops/307643", "https://data.delijn.be/stops/307645"], ["https://data.delijn.be/stops/502628", "https://data.delijn.be/stops/507164"], ["https://data.delijn.be/stops/401636", "https://data.delijn.be/stops/401638"], ["https://data.delijn.be/stops/303513", "https://data.delijn.be/stops/303522"], ["https://data.delijn.be/stops/204496", "https://data.delijn.be/stops/205496"], ["https://data.delijn.be/stops/206751", "https://data.delijn.be/stops/208501"], ["https://data.delijn.be/stops/300875", "https://data.delijn.be/stops/300880"], ["https://data.delijn.be/stops/301780", "https://data.delijn.be/stops/306878"], ["https://data.delijn.be/stops/502419", "https://data.delijn.be/stops/507415"], ["https://data.delijn.be/stops/206192", "https://data.delijn.be/stops/207189"], ["https://data.delijn.be/stops/304446", "https://data.delijn.be/stops/304447"], ["https://data.delijn.be/stops/105434", "https://data.delijn.be/stops/109855"], ["https://data.delijn.be/stops/503381", "https://data.delijn.be/stops/509786"], ["https://data.delijn.be/stops/408862", "https://data.delijn.be/stops/408866"], ["https://data.delijn.be/stops/209162", "https://data.delijn.be/stops/209424"], ["https://data.delijn.be/stops/207743", "https://data.delijn.be/stops/207744"], ["https://data.delijn.be/stops/507812", "https://data.delijn.be/stops/508004"], ["https://data.delijn.be/stops/204410", "https://data.delijn.be/stops/205083"], ["https://data.delijn.be/stops/200370", "https://data.delijn.be/stops/201370"], ["https://data.delijn.be/stops/204525", "https://data.delijn.be/stops/205728"], ["https://data.delijn.be/stops/506045", "https://data.delijn.be/stops/506049"], ["https://data.delijn.be/stops/408165", "https://data.delijn.be/stops/410396"], ["https://data.delijn.be/stops/200028", "https://data.delijn.be/stops/200372"], ["https://data.delijn.be/stops/101341", "https://data.delijn.be/stops/104139"], ["https://data.delijn.be/stops/501308", "https://data.delijn.be/stops/506308"], ["https://data.delijn.be/stops/101757", "https://data.delijn.be/stops/103651"], ["https://data.delijn.be/stops/300214", "https://data.delijn.be/stops/303735"], ["https://data.delijn.be/stops/501638", "https://data.delijn.be/stops/506113"], ["https://data.delijn.be/stops/101193", "https://data.delijn.be/stops/204541"], ["https://data.delijn.be/stops/406545", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/402107", "https://data.delijn.be/stops/402217"], ["https://data.delijn.be/stops/102547", "https://data.delijn.be/stops/102550"], ["https://data.delijn.be/stops/207019", "https://data.delijn.be/stops/207107"], ["https://data.delijn.be/stops/408887", "https://data.delijn.be/stops/408913"], ["https://data.delijn.be/stops/300087", "https://data.delijn.be/stops/306855"], ["https://data.delijn.be/stops/207355", "https://data.delijn.be/stops/207725"], ["https://data.delijn.be/stops/503225", "https://data.delijn.be/stops/508225"], ["https://data.delijn.be/stops/205054", "https://data.delijn.be/stops/205065"], ["https://data.delijn.be/stops/503671", "https://data.delijn.be/stops/508673"], ["https://data.delijn.be/stops/102708", "https://data.delijn.be/stops/108040"], ["https://data.delijn.be/stops/208546", "https://data.delijn.be/stops/208614"], ["https://data.delijn.be/stops/402881", "https://data.delijn.be/stops/306391"], ["https://data.delijn.be/stops/304304", "https://data.delijn.be/stops/304324"], ["https://data.delijn.be/stops/409410", "https://data.delijn.be/stops/409411"], ["https://data.delijn.be/stops/302651", "https://data.delijn.be/stops/302652"], ["https://data.delijn.be/stops/507383", "https://data.delijn.be/stops/507725"], ["https://data.delijn.be/stops/106295", "https://data.delijn.be/stops/109480"], ["https://data.delijn.be/stops/202201", "https://data.delijn.be/stops/202505"], ["https://data.delijn.be/stops/101473", "https://data.delijn.be/stops/109269"], ["https://data.delijn.be/stops/504991", "https://data.delijn.be/stops/505797"], ["https://data.delijn.be/stops/303553", "https://data.delijn.be/stops/303558"], ["https://data.delijn.be/stops/204161", "https://data.delijn.be/stops/204167"], ["https://data.delijn.be/stops/406010", "https://data.delijn.be/stops/406131"], ["https://data.delijn.be/stops/300090", "https://data.delijn.be/stops/306862"], ["https://data.delijn.be/stops/300460", "https://data.delijn.be/stops/300467"], ["https://data.delijn.be/stops/102500", "https://data.delijn.be/stops/104161"], ["https://data.delijn.be/stops/407762", "https://data.delijn.be/stops/410319"], ["https://data.delijn.be/stops/302518", "https://data.delijn.be/stops/305873"], ["https://data.delijn.be/stops/101017", "https://data.delijn.be/stops/105070"], ["https://data.delijn.be/stops/201805", "https://data.delijn.be/stops/201832"], ["https://data.delijn.be/stops/504865", "https://data.delijn.be/stops/508094"], ["https://data.delijn.be/stops/106171", "https://data.delijn.be/stops/107442"], ["https://data.delijn.be/stops/206579", "https://data.delijn.be/stops/209680"], ["https://data.delijn.be/stops/301947", "https://data.delijn.be/stops/301948"], ["https://data.delijn.be/stops/208852", "https://data.delijn.be/stops/505602"], ["https://data.delijn.be/stops/307723", "https://data.delijn.be/stops/307725"], ["https://data.delijn.be/stops/200034", "https://data.delijn.be/stops/200391"], ["https://data.delijn.be/stops/302351", "https://data.delijn.be/stops/302355"], ["https://data.delijn.be/stops/308015", "https://data.delijn.be/stops/308016"], ["https://data.delijn.be/stops/300038", "https://data.delijn.be/stops/307730"], ["https://data.delijn.be/stops/301429", "https://data.delijn.be/stops/301446"], ["https://data.delijn.be/stops/402124", "https://data.delijn.be/stops/402125"], ["https://data.delijn.be/stops/400713", "https://data.delijn.be/stops/409500"], ["https://data.delijn.be/stops/409434", "https://data.delijn.be/stops/409435"], ["https://data.delijn.be/stops/308782", "https://data.delijn.be/stops/308925"], ["https://data.delijn.be/stops/107354", "https://data.delijn.be/stops/107357"], ["https://data.delijn.be/stops/107236", "https://data.delijn.be/stops/107243"], ["https://data.delijn.be/stops/104025", "https://data.delijn.be/stops/106900"], ["https://data.delijn.be/stops/308158", "https://data.delijn.be/stops/308180"], ["https://data.delijn.be/stops/508683", "https://data.delijn.be/stops/508685"], ["https://data.delijn.be/stops/503932", "https://data.delijn.be/stops/508009"], ["https://data.delijn.be/stops/200309", "https://data.delijn.be/stops/205358"], ["https://data.delijn.be/stops/102460", "https://data.delijn.be/stops/103369"], ["https://data.delijn.be/stops/106733", "https://data.delijn.be/stops/106734"], ["https://data.delijn.be/stops/408378", "https://data.delijn.be/stops/408379"], ["https://data.delijn.be/stops/101620", "https://data.delijn.be/stops/102808"], ["https://data.delijn.be/stops/200754", "https://data.delijn.be/stops/200769"], ["https://data.delijn.be/stops/404148", "https://data.delijn.be/stops/404182"], ["https://data.delijn.be/stops/200337", "https://data.delijn.be/stops/208730"], ["https://data.delijn.be/stops/408327", "https://data.delijn.be/stops/408339"], ["https://data.delijn.be/stops/107003", "https://data.delijn.be/stops/107004"], ["https://data.delijn.be/stops/403115", "https://data.delijn.be/stops/403116"], ["https://data.delijn.be/stops/302248", "https://data.delijn.be/stops/302249"], ["https://data.delijn.be/stops/502122", "https://data.delijn.be/stops/502147"], ["https://data.delijn.be/stops/407193", "https://data.delijn.be/stops/409514"], ["https://data.delijn.be/stops/200676", "https://data.delijn.be/stops/201460"], ["https://data.delijn.be/stops/503696", "https://data.delijn.be/stops/509948"], ["https://data.delijn.be/stops/108944", "https://data.delijn.be/stops/109224"], ["https://data.delijn.be/stops/300336", "https://data.delijn.be/stops/300338"], ["https://data.delijn.be/stops/206679", "https://data.delijn.be/stops/209102"], ["https://data.delijn.be/stops/509415", "https://data.delijn.be/stops/509435"], ["https://data.delijn.be/stops/200931", "https://data.delijn.be/stops/203235"], ["https://data.delijn.be/stops/102012", "https://data.delijn.be/stops/102078"], ["https://data.delijn.be/stops/303291", "https://data.delijn.be/stops/306970"], ["https://data.delijn.be/stops/405592", "https://data.delijn.be/stops/405604"], ["https://data.delijn.be/stops/502631", "https://data.delijn.be/stops/507455"], ["https://data.delijn.be/stops/107538", "https://data.delijn.be/stops/303880"], ["https://data.delijn.be/stops/202053", "https://data.delijn.be/stops/203356"], ["https://data.delijn.be/stops/200090", "https://data.delijn.be/stops/201479"], ["https://data.delijn.be/stops/106641", "https://data.delijn.be/stops/106643"], ["https://data.delijn.be/stops/501310", "https://data.delijn.be/stops/506222"], ["https://data.delijn.be/stops/105477", "https://data.delijn.be/stops/105479"], ["https://data.delijn.be/stops/104665", "https://data.delijn.be/stops/104670"], ["https://data.delijn.be/stops/302214", "https://data.delijn.be/stops/302226"], ["https://data.delijn.be/stops/402881", "https://data.delijn.be/stops/402944"], ["https://data.delijn.be/stops/208595", "https://data.delijn.be/stops/208679"], ["https://data.delijn.be/stops/402262", "https://data.delijn.be/stops/402401"], ["https://data.delijn.be/stops/503447", "https://data.delijn.be/stops/503461"], ["https://data.delijn.be/stops/405640", "https://data.delijn.be/stops/410339"], ["https://data.delijn.be/stops/202622", "https://data.delijn.be/stops/203622"], ["https://data.delijn.be/stops/503435", "https://data.delijn.be/stops/504872"], ["https://data.delijn.be/stops/204198", "https://data.delijn.be/stops/204199"], ["https://data.delijn.be/stops/107458", "https://data.delijn.be/stops/107459"], ["https://data.delijn.be/stops/401024", "https://data.delijn.be/stops/401025"], ["https://data.delijn.be/stops/101484", "https://data.delijn.be/stops/101957"], ["https://data.delijn.be/stops/504117", "https://data.delijn.be/stops/509120"], ["https://data.delijn.be/stops/102618", "https://data.delijn.be/stops/108208"], ["https://data.delijn.be/stops/303428", "https://data.delijn.be/stops/303435"], ["https://data.delijn.be/stops/408235", "https://data.delijn.be/stops/308204"], ["https://data.delijn.be/stops/505057", "https://data.delijn.be/stops/505646"], ["https://data.delijn.be/stops/405852", "https://data.delijn.be/stops/409755"], ["https://data.delijn.be/stops/509451", "https://data.delijn.be/stops/509452"], ["https://data.delijn.be/stops/401996", "https://data.delijn.be/stops/406988"], ["https://data.delijn.be/stops/308453", "https://data.delijn.be/stops/308692"], ["https://data.delijn.be/stops/504443", "https://data.delijn.be/stops/504445"], ["https://data.delijn.be/stops/305175", "https://data.delijn.be/stops/308905"], ["https://data.delijn.be/stops/108299", "https://data.delijn.be/stops/108326"], ["https://data.delijn.be/stops/504378", "https://data.delijn.be/stops/507958"], ["https://data.delijn.be/stops/206082", "https://data.delijn.be/stops/206265"], ["https://data.delijn.be/stops/509165", "https://data.delijn.be/stops/509645"], ["https://data.delijn.be/stops/503925", "https://data.delijn.be/stops/507698"], ["https://data.delijn.be/stops/206077", "https://data.delijn.be/stops/206889"], ["https://data.delijn.be/stops/106267", "https://data.delijn.be/stops/106341"], ["https://data.delijn.be/stops/501292", "https://data.delijn.be/stops/501525"], ["https://data.delijn.be/stops/106450", "https://data.delijn.be/stops/106460"], ["https://data.delijn.be/stops/505056", "https://data.delijn.be/stops/505658"], ["https://data.delijn.be/stops/504255", "https://data.delijn.be/stops/504304"], ["https://data.delijn.be/stops/108573", "https://data.delijn.be/stops/108993"], ["https://data.delijn.be/stops/307936", "https://data.delijn.be/stops/307938"], ["https://data.delijn.be/stops/404474", "https://data.delijn.be/stops/404584"], ["https://data.delijn.be/stops/206049", "https://data.delijn.be/stops/206162"], ["https://data.delijn.be/stops/206597", "https://data.delijn.be/stops/206598"], ["https://data.delijn.be/stops/507027", "https://data.delijn.be/stops/507042"], ["https://data.delijn.be/stops/407854", "https://data.delijn.be/stops/407897"], ["https://data.delijn.be/stops/102179", "https://data.delijn.be/stops/102790"], ["https://data.delijn.be/stops/401066", "https://data.delijn.be/stops/401172"], ["https://data.delijn.be/stops/200722", "https://data.delijn.be/stops/210256"], ["https://data.delijn.be/stops/407582", "https://data.delijn.be/stops/408893"], ["https://data.delijn.be/stops/503437", "https://data.delijn.be/stops/508437"], ["https://data.delijn.be/stops/404253", "https://data.delijn.be/stops/404308"], ["https://data.delijn.be/stops/208004", "https://data.delijn.be/stops/208005"], ["https://data.delijn.be/stops/203821", "https://data.delijn.be/stops/203890"], ["https://data.delijn.be/stops/200686", "https://data.delijn.be/stops/202750"], ["https://data.delijn.be/stops/505627", "https://data.delijn.be/stops/507708"], ["https://data.delijn.be/stops/206506", "https://data.delijn.be/stops/207145"], ["https://data.delijn.be/stops/203794", "https://data.delijn.be/stops/203796"], ["https://data.delijn.be/stops/107521", "https://data.delijn.be/stops/107522"], ["https://data.delijn.be/stops/404205", "https://data.delijn.be/stops/404206"], ["https://data.delijn.be/stops/504755", "https://data.delijn.be/stops/509755"], ["https://data.delijn.be/stops/305409", "https://data.delijn.be/stops/305925"], ["https://data.delijn.be/stops/402266", "https://data.delijn.be/stops/402268"], ["https://data.delijn.be/stops/201667", "https://data.delijn.be/stops/203400"], ["https://data.delijn.be/stops/200641", "https://data.delijn.be/stops/201219"], ["https://data.delijn.be/stops/104974", "https://data.delijn.be/stops/109769"], ["https://data.delijn.be/stops/403103", "https://data.delijn.be/stops/403118"], ["https://data.delijn.be/stops/204195", "https://data.delijn.be/stops/205193"], ["https://data.delijn.be/stops/108454", "https://data.delijn.be/stops/108508"], ["https://data.delijn.be/stops/304868", "https://data.delijn.be/stops/306267"], ["https://data.delijn.be/stops/207441", "https://data.delijn.be/stops/209086"], ["https://data.delijn.be/stops/101674", "https://data.delijn.be/stops/408809"], ["https://data.delijn.be/stops/201501", "https://data.delijn.be/stops/211087"], ["https://data.delijn.be/stops/300244", "https://data.delijn.be/stops/305926"], ["https://data.delijn.be/stops/101262", "https://data.delijn.be/stops/108800"], ["https://data.delijn.be/stops/104468", "https://data.delijn.be/stops/307524"], ["https://data.delijn.be/stops/202064", "https://data.delijn.be/stops/507596"], ["https://data.delijn.be/stops/407399", "https://data.delijn.be/stops/407404"], ["https://data.delijn.be/stops/504064", "https://data.delijn.be/stops/504067"], ["https://data.delijn.be/stops/403365", "https://data.delijn.be/stops/403519"], ["https://data.delijn.be/stops/101344", "https://data.delijn.be/stops/108364"], ["https://data.delijn.be/stops/503096", "https://data.delijn.be/stops/503097"], ["https://data.delijn.be/stops/101531", "https://data.delijn.be/stops/109556"], ["https://data.delijn.be/stops/405963", "https://data.delijn.be/stops/405987"], ["https://data.delijn.be/stops/300017", "https://data.delijn.be/stops/301991"], ["https://data.delijn.be/stops/206490", "https://data.delijn.be/stops/207491"], ["https://data.delijn.be/stops/400954", "https://data.delijn.be/stops/400955"], ["https://data.delijn.be/stops/103042", "https://data.delijn.be/stops/107529"], ["https://data.delijn.be/stops/102251", "https://data.delijn.be/stops/109032"], ["https://data.delijn.be/stops/101512", "https://data.delijn.be/stops/305994"], ["https://data.delijn.be/stops/106434", "https://data.delijn.be/stops/106435"], ["https://data.delijn.be/stops/303573", "https://data.delijn.be/stops/306397"], ["https://data.delijn.be/stops/206129", "https://data.delijn.be/stops/207650"], ["https://data.delijn.be/stops/200316", "https://data.delijn.be/stops/201729"], ["https://data.delijn.be/stops/101083", "https://data.delijn.be/stops/104459"], ["https://data.delijn.be/stops/300824", "https://data.delijn.be/stops/300856"], ["https://data.delijn.be/stops/503410", "https://data.delijn.be/stops/508419"], ["https://data.delijn.be/stops/400806", "https://data.delijn.be/stops/405666"], ["https://data.delijn.be/stops/301810", "https://data.delijn.be/stops/304669"], ["https://data.delijn.be/stops/403600", "https://data.delijn.be/stops/407525"], ["https://data.delijn.be/stops/201840", "https://data.delijn.be/stops/203320"], ["https://data.delijn.be/stops/407245", "https://data.delijn.be/stops/407558"], ["https://data.delijn.be/stops/306699", "https://data.delijn.be/stops/306700"], ["https://data.delijn.be/stops/202549", "https://data.delijn.be/stops/203550"], ["https://data.delijn.be/stops/504092", "https://data.delijn.be/stops/504981"], ["https://data.delijn.be/stops/206122", "https://data.delijn.be/stops/207138"], ["https://data.delijn.be/stops/308514", "https://data.delijn.be/stops/308515"], ["https://data.delijn.be/stops/204026", "https://data.delijn.be/stops/205026"], ["https://data.delijn.be/stops/208631", "https://data.delijn.be/stops/209511"], ["https://data.delijn.be/stops/506201", "https://data.delijn.be/stops/506257"], ["https://data.delijn.be/stops/503495", "https://data.delijn.be/stops/508501"], ["https://data.delijn.be/stops/502268", "https://data.delijn.be/stops/505671"], ["https://data.delijn.be/stops/202597", "https://data.delijn.be/stops/210077"], ["https://data.delijn.be/stops/504211", "https://data.delijn.be/stops/504214"], ["https://data.delijn.be/stops/301678", "https://data.delijn.be/stops/301686"], ["https://data.delijn.be/stops/206260", "https://data.delijn.be/stops/206262"], ["https://data.delijn.be/stops/306809", "https://data.delijn.be/stops/308407"], ["https://data.delijn.be/stops/407705", "https://data.delijn.be/stops/407708"], ["https://data.delijn.be/stops/209574", "https://data.delijn.be/stops/307310"], ["https://data.delijn.be/stops/202951", "https://data.delijn.be/stops/203951"], ["https://data.delijn.be/stops/101440", "https://data.delijn.be/stops/101815"], ["https://data.delijn.be/stops/506292", "https://data.delijn.be/stops/506742"], ["https://data.delijn.be/stops/102516", "https://data.delijn.be/stops/406464"], ["https://data.delijn.be/stops/204420", "https://data.delijn.be/stops/204829"], ["https://data.delijn.be/stops/101926", "https://data.delijn.be/stops/102899"], ["https://data.delijn.be/stops/205989", "https://data.delijn.be/stops/208549"], ["https://data.delijn.be/stops/106987", "https://data.delijn.be/stops/106988"], ["https://data.delijn.be/stops/504001", "https://data.delijn.be/stops/509001"], ["https://data.delijn.be/stops/102900", "https://data.delijn.be/stops/108485"], ["https://data.delijn.be/stops/301410", "https://data.delijn.be/stops/308411"], ["https://data.delijn.be/stops/300484", "https://data.delijn.be/stops/302863"], ["https://data.delijn.be/stops/300531", "https://data.delijn.be/stops/300533"], ["https://data.delijn.be/stops/208024", "https://data.delijn.be/stops/209029"], ["https://data.delijn.be/stops/307758", "https://data.delijn.be/stops/307760"], ["https://data.delijn.be/stops/407446", "https://data.delijn.be/stops/407500"], ["https://data.delijn.be/stops/200834", "https://data.delijn.be/stops/203302"], ["https://data.delijn.be/stops/102865", "https://data.delijn.be/stops/104890"], ["https://data.delijn.be/stops/104899", "https://data.delijn.be/stops/107548"], ["https://data.delijn.be/stops/502622", "https://data.delijn.be/stops/507431"], ["https://data.delijn.be/stops/204055", "https://data.delijn.be/stops/205056"], ["https://data.delijn.be/stops/107251", "https://data.delijn.be/stops/107254"], ["https://data.delijn.be/stops/208682", "https://data.delijn.be/stops/208683"], ["https://data.delijn.be/stops/106133", "https://data.delijn.be/stops/106134"], ["https://data.delijn.be/stops/208623", "https://data.delijn.be/stops/209622"], ["https://data.delijn.be/stops/201947", "https://data.delijn.be/stops/202453"], ["https://data.delijn.be/stops/408922", "https://data.delijn.be/stops/408925"], ["https://data.delijn.be/stops/206564", "https://data.delijn.be/stops/206997"], ["https://data.delijn.be/stops/404095", "https://data.delijn.be/stops/404110"], ["https://data.delijn.be/stops/200874", "https://data.delijn.be/stops/202077"], ["https://data.delijn.be/stops/404681", "https://data.delijn.be/stops/404683"], ["https://data.delijn.be/stops/206436", "https://data.delijn.be/stops/209689"], ["https://data.delijn.be/stops/301922", "https://data.delijn.be/stops/307835"], ["https://data.delijn.be/stops/303563", "https://data.delijn.be/stops/304125"], ["https://data.delijn.be/stops/409211", "https://data.delijn.be/stops/409215"], ["https://data.delijn.be/stops/406248", "https://data.delijn.be/stops/406249"], ["https://data.delijn.be/stops/204378", "https://data.delijn.be/stops/205376"], ["https://data.delijn.be/stops/405610", "https://data.delijn.be/stops/407156"], ["https://data.delijn.be/stops/400710", "https://data.delijn.be/stops/400720"], ["https://data.delijn.be/stops/204433", "https://data.delijn.be/stops/205432"], ["https://data.delijn.be/stops/503778", "https://data.delijn.be/stops/503781"], ["https://data.delijn.be/stops/400438", "https://data.delijn.be/stops/400441"], ["https://data.delijn.be/stops/505425", "https://data.delijn.be/stops/508150"], ["https://data.delijn.be/stops/508194", "https://data.delijn.be/stops/508201"], ["https://data.delijn.be/stops/210106", "https://data.delijn.be/stops/211009"], ["https://data.delijn.be/stops/202638", "https://data.delijn.be/stops/205072"], ["https://data.delijn.be/stops/406202", "https://data.delijn.be/stops/406203"], ["https://data.delijn.be/stops/300607", "https://data.delijn.be/stops/300608"], ["https://data.delijn.be/stops/402765", "https://data.delijn.be/stops/402791"], ["https://data.delijn.be/stops/508416", "https://data.delijn.be/stops/508438"], ["https://data.delijn.be/stops/304784", "https://data.delijn.be/stops/306685"], ["https://data.delijn.be/stops/303426", "https://data.delijn.be/stops/303430"], ["https://data.delijn.be/stops/404071", "https://data.delijn.be/stops/409266"], ["https://data.delijn.be/stops/103688", "https://data.delijn.be/stops/109432"], ["https://data.delijn.be/stops/408684", "https://data.delijn.be/stops/408688"], ["https://data.delijn.be/stops/203215", "https://data.delijn.be/stops/203224"], ["https://data.delijn.be/stops/504336", "https://data.delijn.be/stops/509331"], ["https://data.delijn.be/stops/206816", "https://data.delijn.be/stops/207817"], ["https://data.delijn.be/stops/107446", "https://data.delijn.be/stops/107448"], ["https://data.delijn.be/stops/508750", "https://data.delijn.be/stops/509783"], ["https://data.delijn.be/stops/302023", "https://data.delijn.be/stops/302047"], ["https://data.delijn.be/stops/405771", "https://data.delijn.be/stops/405841"], ["https://data.delijn.be/stops/107111", "https://data.delijn.be/stops/107113"], ["https://data.delijn.be/stops/105496", "https://data.delijn.be/stops/105497"], ["https://data.delijn.be/stops/206955", "https://data.delijn.be/stops/207954"], ["https://data.delijn.be/stops/206971", "https://data.delijn.be/stops/207971"], ["https://data.delijn.be/stops/301410", "https://data.delijn.be/stops/307269"], ["https://data.delijn.be/stops/300095", "https://data.delijn.be/stops/300099"], ["https://data.delijn.be/stops/405106", "https://data.delijn.be/stops/405108"], ["https://data.delijn.be/stops/308128", "https://data.delijn.be/stops/308129"], ["https://data.delijn.be/stops/406370", "https://data.delijn.be/stops/409884"], ["https://data.delijn.be/stops/307337", "https://data.delijn.be/stops/308833"], ["https://data.delijn.be/stops/107085", "https://data.delijn.be/stops/108775"], ["https://data.delijn.be/stops/505923", "https://data.delijn.be/stops/505972"], ["https://data.delijn.be/stops/208436", "https://data.delijn.be/stops/209436"], ["https://data.delijn.be/stops/408247", "https://data.delijn.be/stops/308194"], ["https://data.delijn.be/stops/504046", "https://data.delijn.be/stops/509046"], ["https://data.delijn.be/stops/201080", "https://data.delijn.be/stops/201121"], ["https://data.delijn.be/stops/301583", "https://data.delijn.be/stops/301590"], ["https://data.delijn.be/stops/300227", "https://data.delijn.be/stops/307131"], ["https://data.delijn.be/stops/303847", "https://data.delijn.be/stops/303871"], ["https://data.delijn.be/stops/208014", "https://data.delijn.be/stops/209013"], ["https://data.delijn.be/stops/301848", "https://data.delijn.be/stops/301850"], ["https://data.delijn.be/stops/405166", "https://data.delijn.be/stops/405167"], ["https://data.delijn.be/stops/400094", "https://data.delijn.be/stops/400095"], ["https://data.delijn.be/stops/300501", "https://data.delijn.be/stops/300502"], ["https://data.delijn.be/stops/503158", "https://data.delijn.be/stops/503175"], ["https://data.delijn.be/stops/304267", "https://data.delijn.be/stops/304268"], ["https://data.delijn.be/stops/203230", "https://data.delijn.be/stops/203231"], ["https://data.delijn.be/stops/308655", "https://data.delijn.be/stops/308656"], ["https://data.delijn.be/stops/104365", "https://data.delijn.be/stops/104375"], ["https://data.delijn.be/stops/504548", "https://data.delijn.be/stops/504553"], ["https://data.delijn.be/stops/207791", "https://data.delijn.be/stops/208409"], ["https://data.delijn.be/stops/503542", "https://data.delijn.be/stops/508548"], ["https://data.delijn.be/stops/201478", "https://data.delijn.be/stops/211072"], ["https://data.delijn.be/stops/101154", "https://data.delijn.be/stops/103308"], ["https://data.delijn.be/stops/303709", "https://data.delijn.be/stops/303733"], ["https://data.delijn.be/stops/506337", "https://data.delijn.be/stops/506480"], ["https://data.delijn.be/stops/408600", "https://data.delijn.be/stops/408601"], ["https://data.delijn.be/stops/208045", "https://data.delijn.be/stops/208046"], ["https://data.delijn.be/stops/400145", "https://data.delijn.be/stops/405537"], ["https://data.delijn.be/stops/206146", "https://data.delijn.be/stops/206321"], ["https://data.delijn.be/stops/505970", "https://data.delijn.be/stops/505997"], ["https://data.delijn.be/stops/101462", "https://data.delijn.be/stops/109282"], ["https://data.delijn.be/stops/201847", "https://data.delijn.be/stops/202654"], ["https://data.delijn.be/stops/109054", "https://data.delijn.be/stops/109067"], ["https://data.delijn.be/stops/401479", "https://data.delijn.be/stops/401581"], ["https://data.delijn.be/stops/308194", "https://data.delijn.be/stops/308195"], ["https://data.delijn.be/stops/107077", "https://data.delijn.be/stops/107078"], ["https://data.delijn.be/stops/503221", "https://data.delijn.be/stops/508219"], ["https://data.delijn.be/stops/400109", "https://data.delijn.be/stops/400144"], ["https://data.delijn.be/stops/305025", "https://data.delijn.be/stops/305026"], ["https://data.delijn.be/stops/200729", "https://data.delijn.be/stops/203591"], ["https://data.delijn.be/stops/301443", "https://data.delijn.be/stops/301444"], ["https://data.delijn.be/stops/104732", "https://data.delijn.be/stops/204273"], ["https://data.delijn.be/stops/509886", "https://data.delijn.be/stops/509887"], ["https://data.delijn.be/stops/200485", "https://data.delijn.be/stops/208732"], ["https://data.delijn.be/stops/400730", "https://data.delijn.be/stops/406601"], ["https://data.delijn.be/stops/505320", "https://data.delijn.be/stops/505654"], ["https://data.delijn.be/stops/300083", "https://data.delijn.be/stops/307344"], ["https://data.delijn.be/stops/303136", "https://data.delijn.be/stops/306086"], ["https://data.delijn.be/stops/405512", "https://data.delijn.be/stops/405671"], ["https://data.delijn.be/stops/404933", "https://data.delijn.be/stops/404941"], ["https://data.delijn.be/stops/104043", "https://data.delijn.be/stops/108414"], ["https://data.delijn.be/stops/508725", "https://data.delijn.be/stops/509938"], ["https://data.delijn.be/stops/503865", "https://data.delijn.be/stops/508964"], ["https://data.delijn.be/stops/301984", "https://data.delijn.be/stops/301986"], ["https://data.delijn.be/stops/204211", "https://data.delijn.be/stops/206385"], ["https://data.delijn.be/stops/402323", "https://data.delijn.be/stops/402626"], ["https://data.delijn.be/stops/207256", "https://data.delijn.be/stops/207257"], ["https://data.delijn.be/stops/101419", "https://data.delijn.be/stops/107269"], ["https://data.delijn.be/stops/505268", "https://data.delijn.be/stops/508333"], ["https://data.delijn.be/stops/403352", "https://data.delijn.be/stops/405636"], ["https://data.delijn.be/stops/402369", "https://data.delijn.be/stops/405573"], ["https://data.delijn.be/stops/501600", "https://data.delijn.be/stops/501601"], ["https://data.delijn.be/stops/208358", "https://data.delijn.be/stops/209192"], ["https://data.delijn.be/stops/409287", "https://data.delijn.be/stops/409319"], ["https://data.delijn.be/stops/503809", "https://data.delijn.be/stops/508812"], ["https://data.delijn.be/stops/102582", "https://data.delijn.be/stops/105150"], ["https://data.delijn.be/stops/208348", "https://data.delijn.be/stops/208784"], ["https://data.delijn.be/stops/505843", "https://data.delijn.be/stops/508780"], ["https://data.delijn.be/stops/102842", "https://data.delijn.be/stops/103047"], ["https://data.delijn.be/stops/302448", "https://data.delijn.be/stops/302449"], ["https://data.delijn.be/stops/407052", "https://data.delijn.be/stops/410016"], ["https://data.delijn.be/stops/209596", "https://data.delijn.be/stops/218012"], ["https://data.delijn.be/stops/101191", "https://data.delijn.be/stops/205542"], ["https://data.delijn.be/stops/302677", "https://data.delijn.be/stops/302680"], ["https://data.delijn.be/stops/408191", "https://data.delijn.be/stops/408257"], ["https://data.delijn.be/stops/508760", "https://data.delijn.be/stops/509743"], ["https://data.delijn.be/stops/108684", "https://data.delijn.be/stops/108685"], ["https://data.delijn.be/stops/304994", "https://data.delijn.be/stops/305035"], ["https://data.delijn.be/stops/303146", "https://data.delijn.be/stops/305442"], ["https://data.delijn.be/stops/505038", "https://data.delijn.be/stops/506126"], ["https://data.delijn.be/stops/406358", "https://data.delijn.be/stops/406359"], ["https://data.delijn.be/stops/304116", "https://data.delijn.be/stops/305341"], ["https://data.delijn.be/stops/104975", "https://data.delijn.be/stops/104980"], ["https://data.delijn.be/stops/505416", "https://data.delijn.be/stops/507370"], ["https://data.delijn.be/stops/201701", "https://data.delijn.be/stops/203610"], ["https://data.delijn.be/stops/504642", "https://data.delijn.be/stops/509647"], ["https://data.delijn.be/stops/504167", "https://data.delijn.be/stops/509169"], ["https://data.delijn.be/stops/105309", "https://data.delijn.be/stops/105396"], ["https://data.delijn.be/stops/402408", "https://data.delijn.be/stops/402430"], ["https://data.delijn.be/stops/405472", "https://data.delijn.be/stops/405484"], ["https://data.delijn.be/stops/202250", "https://data.delijn.be/stops/202251"], ["https://data.delijn.be/stops/108358", "https://data.delijn.be/stops/109012"], ["https://data.delijn.be/stops/206467", "https://data.delijn.be/stops/206469"], ["https://data.delijn.be/stops/206675", "https://data.delijn.be/stops/209163"], ["https://data.delijn.be/stops/402698", "https://data.delijn.be/stops/402743"], ["https://data.delijn.be/stops/105432", "https://data.delijn.be/stops/109953"], ["https://data.delijn.be/stops/303032", "https://data.delijn.be/stops/308654"], ["https://data.delijn.be/stops/106586", "https://data.delijn.be/stops/107276"], ["https://data.delijn.be/stops/402392", "https://data.delijn.be/stops/402394"], ["https://data.delijn.be/stops/106518", "https://data.delijn.be/stops/106520"], ["https://data.delijn.be/stops/305428", "https://data.delijn.be/stops/305434"], ["https://data.delijn.be/stops/307650", "https://data.delijn.be/stops/307693"], ["https://data.delijn.be/stops/201936", "https://data.delijn.be/stops/207407"], ["https://data.delijn.be/stops/209279", "https://data.delijn.be/stops/209398"], ["https://data.delijn.be/stops/403906", "https://data.delijn.be/stops/403914"], ["https://data.delijn.be/stops/504118", "https://data.delijn.be/stops/509119"], ["https://data.delijn.be/stops/208581", "https://data.delijn.be/stops/307322"], ["https://data.delijn.be/stops/103334", "https://data.delijn.be/stops/107046"], ["https://data.delijn.be/stops/208059", "https://data.delijn.be/stops/217004"], ["https://data.delijn.be/stops/401870", "https://data.delijn.be/stops/406124"], ["https://data.delijn.be/stops/102050", "https://data.delijn.be/stops/102800"], ["https://data.delijn.be/stops/200867", "https://data.delijn.be/stops/202336"], ["https://data.delijn.be/stops/105123", "https://data.delijn.be/stops/105127"], ["https://data.delijn.be/stops/204036", "https://data.delijn.be/stops/204558"], ["https://data.delijn.be/stops/503485", "https://data.delijn.be/stops/503989"], ["https://data.delijn.be/stops/208111", "https://data.delijn.be/stops/208387"], ["https://data.delijn.be/stops/303280", "https://data.delijn.be/stops/308938"], ["https://data.delijn.be/stops/102872", "https://data.delijn.be/stops/105456"], ["https://data.delijn.be/stops/507184", "https://data.delijn.be/stops/507667"], ["https://data.delijn.be/stops/200578", "https://data.delijn.be/stops/201579"], ["https://data.delijn.be/stops/106637", "https://data.delijn.be/stops/106638"], ["https://data.delijn.be/stops/302037", "https://data.delijn.be/stops/303895"], ["https://data.delijn.be/stops/406944", "https://data.delijn.be/stops/409453"], ["https://data.delijn.be/stops/304650", "https://data.delijn.be/stops/307982"], ["https://data.delijn.be/stops/502252", "https://data.delijn.be/stops/502253"], ["https://data.delijn.be/stops/204142", "https://data.delijn.be/stops/206898"], ["https://data.delijn.be/stops/504734", "https://data.delijn.be/stops/506768"], ["https://data.delijn.be/stops/206484", "https://data.delijn.be/stops/206485"], ["https://data.delijn.be/stops/204712", "https://data.delijn.be/stops/205714"], ["https://data.delijn.be/stops/104345", "https://data.delijn.be/stops/107070"], ["https://data.delijn.be/stops/503807", "https://data.delijn.be/stops/508807"], ["https://data.delijn.be/stops/200222", "https://data.delijn.be/stops/201987"], ["https://data.delijn.be/stops/102870", "https://data.delijn.be/stops/103610"], ["https://data.delijn.be/stops/300351", "https://data.delijn.be/stops/304693"], ["https://data.delijn.be/stops/401013", "https://data.delijn.be/stops/401016"], ["https://data.delijn.be/stops/304512", "https://data.delijn.be/stops/305606"], ["https://data.delijn.be/stops/302834", "https://data.delijn.be/stops/306774"], ["https://data.delijn.be/stops/505203", "https://data.delijn.be/stops/507011"], ["https://data.delijn.be/stops/108635", "https://data.delijn.be/stops/109773"], ["https://data.delijn.be/stops/106396", "https://data.delijn.be/stops/106573"], ["https://data.delijn.be/stops/500559", "https://data.delijn.be/stops/506037"], ["https://data.delijn.be/stops/204390", "https://data.delijn.be/stops/205390"], ["https://data.delijn.be/stops/200921", "https://data.delijn.be/stops/200946"], ["https://data.delijn.be/stops/206901", "https://data.delijn.be/stops/207034"], ["https://data.delijn.be/stops/504340", "https://data.delijn.be/stops/509339"], ["https://data.delijn.be/stops/402204", "https://data.delijn.be/stops/402499"], ["https://data.delijn.be/stops/107575", "https://data.delijn.be/stops/107746"], ["https://data.delijn.be/stops/203429", "https://data.delijn.be/stops/204939"], ["https://data.delijn.be/stops/200214", "https://data.delijn.be/stops/203545"], ["https://data.delijn.be/stops/502547", "https://data.delijn.be/stops/505025"], ["https://data.delijn.be/stops/203662", "https://data.delijn.be/stops/210007"], ["https://data.delijn.be/stops/409055", "https://data.delijn.be/stops/409069"], ["https://data.delijn.be/stops/401964", "https://data.delijn.be/stops/401990"], ["https://data.delijn.be/stops/301716", "https://data.delijn.be/stops/308424"], ["https://data.delijn.be/stops/306931", "https://data.delijn.be/stops/308724"], ["https://data.delijn.be/stops/105546", "https://data.delijn.be/stops/107234"], ["https://data.delijn.be/stops/300059", "https://data.delijn.be/stops/300060"], ["https://data.delijn.be/stops/304571", "https://data.delijn.be/stops/308878"], ["https://data.delijn.be/stops/407075", "https://data.delijn.be/stops/407775"], ["https://data.delijn.be/stops/308232", "https://data.delijn.be/stops/308234"], ["https://data.delijn.be/stops/205269", "https://data.delijn.be/stops/205286"], ["https://data.delijn.be/stops/401172", "https://data.delijn.be/stops/407169"], ["https://data.delijn.be/stops/409696", "https://data.delijn.be/stops/409701"], ["https://data.delijn.be/stops/206816", "https://data.delijn.be/stops/207291"], ["https://data.delijn.be/stops/504719", "https://data.delijn.be/stops/508562"], ["https://data.delijn.be/stops/106483", "https://data.delijn.be/stops/106484"], ["https://data.delijn.be/stops/407230", "https://data.delijn.be/stops/408597"], ["https://data.delijn.be/stops/205381", "https://data.delijn.be/stops/205382"], ["https://data.delijn.be/stops/508509", "https://data.delijn.be/stops/509824"], ["https://data.delijn.be/stops/505211", "https://data.delijn.be/stops/505898"], ["https://data.delijn.be/stops/208656", "https://data.delijn.be/stops/209638"], ["https://data.delijn.be/stops/407617", "https://data.delijn.be/stops/407674"], ["https://data.delijn.be/stops/104773", "https://data.delijn.be/stops/108150"], ["https://data.delijn.be/stops/302223", "https://data.delijn.be/stops/306277"], ["https://data.delijn.be/stops/202674", "https://data.delijn.be/stops/202726"], ["https://data.delijn.be/stops/400711", "https://data.delijn.be/stops/409504"], ["https://data.delijn.be/stops/300623", "https://data.delijn.be/stops/300626"], ["https://data.delijn.be/stops/202895", "https://data.delijn.be/stops/204357"], ["https://data.delijn.be/stops/502035", "https://data.delijn.be/stops/507604"], ["https://data.delijn.be/stops/202244", "https://data.delijn.be/stops/202500"], ["https://data.delijn.be/stops/302165", "https://data.delijn.be/stops/308099"], ["https://data.delijn.be/stops/502004", "https://data.delijn.be/stops/507007"], ["https://data.delijn.be/stops/402800", "https://data.delijn.be/stops/407080"], ["https://data.delijn.be/stops/301718", "https://data.delijn.be/stops/301754"], ["https://data.delijn.be/stops/304725", "https://data.delijn.be/stops/308652"], ["https://data.delijn.be/stops/400160", "https://data.delijn.be/stops/410278"], ["https://data.delijn.be/stops/102874", "https://data.delijn.be/stops/103710"], ["https://data.delijn.be/stops/505692", "https://data.delijn.be/stops/505703"], ["https://data.delijn.be/stops/204212", "https://data.delijn.be/stops/207392"], ["https://data.delijn.be/stops/200728", "https://data.delijn.be/stops/203572"], ["https://data.delijn.be/stops/402220", "https://data.delijn.be/stops/402383"], ["https://data.delijn.be/stops/300318", "https://data.delijn.be/stops/300321"], ["https://data.delijn.be/stops/204639", "https://data.delijn.be/stops/205639"], ["https://data.delijn.be/stops/302910", "https://data.delijn.be/stops/304711"], ["https://data.delijn.be/stops/502080", "https://data.delijn.be/stops/502410"], ["https://data.delijn.be/stops/502767", "https://data.delijn.be/stops/507116"], ["https://data.delijn.be/stops/211014", "https://data.delijn.be/stops/507277"], ["https://data.delijn.be/stops/208151", "https://data.delijn.be/stops/208153"], ["https://data.delijn.be/stops/103275", "https://data.delijn.be/stops/107035"], ["https://data.delijn.be/stops/200923", "https://data.delijn.be/stops/202724"], ["https://data.delijn.be/stops/505147", "https://data.delijn.be/stops/505721"], ["https://data.delijn.be/stops/108062", "https://data.delijn.be/stops/108064"], ["https://data.delijn.be/stops/304834", "https://data.delijn.be/stops/305434"], ["https://data.delijn.be/stops/202091", "https://data.delijn.be/stops/203091"], ["https://data.delijn.be/stops/201236", "https://data.delijn.be/stops/210051"], ["https://data.delijn.be/stops/504192", "https://data.delijn.be/stops/504739"], ["https://data.delijn.be/stops/104602", "https://data.delijn.be/stops/108272"], ["https://data.delijn.be/stops/300976", "https://data.delijn.be/stops/307043"], ["https://data.delijn.be/stops/105404", "https://data.delijn.be/stops/107315"], ["https://data.delijn.be/stops/208354", "https://data.delijn.be/stops/208799"], ["https://data.delijn.be/stops/402179", "https://data.delijn.be/stops/402196"], ["https://data.delijn.be/stops/106722", "https://data.delijn.be/stops/106726"], ["https://data.delijn.be/stops/106663", "https://data.delijn.be/stops/106665"], ["https://data.delijn.be/stops/503620", "https://data.delijn.be/stops/503623"], ["https://data.delijn.be/stops/400605", "https://data.delijn.be/stops/400621"], ["https://data.delijn.be/stops/502337", "https://data.delijn.be/stops/507337"], ["https://data.delijn.be/stops/104844", "https://data.delijn.be/stops/109964"], ["https://data.delijn.be/stops/107133", "https://data.delijn.be/stops/107136"], ["https://data.delijn.be/stops/103068", "https://data.delijn.be/stops/109824"], ["https://data.delijn.be/stops/401024", "https://data.delijn.be/stops/409643"], ["https://data.delijn.be/stops/202184", "https://data.delijn.be/stops/203183"], ["https://data.delijn.be/stops/406556", "https://data.delijn.be/stops/406559"], ["https://data.delijn.be/stops/404108", "https://data.delijn.be/stops/404205"], ["https://data.delijn.be/stops/102840", "https://data.delijn.be/stops/103744"], ["https://data.delijn.be/stops/307539", "https://data.delijn.be/stops/307577"], ["https://data.delijn.be/stops/200625", "https://data.delijn.be/stops/201625"], ["https://data.delijn.be/stops/301599", "https://data.delijn.be/stops/301624"], ["https://data.delijn.be/stops/105813", "https://data.delijn.be/stops/105815"], ["https://data.delijn.be/stops/102515", "https://data.delijn.be/stops/105495"], ["https://data.delijn.be/stops/304543", "https://data.delijn.be/stops/304544"], ["https://data.delijn.be/stops/104564", "https://data.delijn.be/stops/307523"], ["https://data.delijn.be/stops/206127", "https://data.delijn.be/stops/207127"], ["https://data.delijn.be/stops/404006", "https://data.delijn.be/stops/404009"], ["https://data.delijn.be/stops/301779", "https://data.delijn.be/stops/306796"], ["https://data.delijn.be/stops/106915", "https://data.delijn.be/stops/106951"], ["https://data.delijn.be/stops/109069", "https://data.delijn.be/stops/306859"], ["https://data.delijn.be/stops/306271", "https://data.delijn.be/stops/306272"], ["https://data.delijn.be/stops/301679", "https://data.delijn.be/stops/301686"], ["https://data.delijn.be/stops/307296", "https://data.delijn.be/stops/307323"], ["https://data.delijn.be/stops/204122", "https://data.delijn.be/stops/204666"], ["https://data.delijn.be/stops/301102", "https://data.delijn.be/stops/306159"], ["https://data.delijn.be/stops/303956", "https://data.delijn.be/stops/304177"], ["https://data.delijn.be/stops/207806", "https://data.delijn.be/stops/207817"], ["https://data.delijn.be/stops/407720", "https://data.delijn.be/stops/409777"], ["https://data.delijn.be/stops/206043", "https://data.delijn.be/stops/207533"], ["https://data.delijn.be/stops/302490", "https://data.delijn.be/stops/302495"], ["https://data.delijn.be/stops/503790", "https://data.delijn.be/stops/505822"], ["https://data.delijn.be/stops/200577", "https://data.delijn.be/stops/203756"], ["https://data.delijn.be/stops/202087", "https://data.delijn.be/stops/203088"], ["https://data.delijn.be/stops/308458", "https://data.delijn.be/stops/308462"], ["https://data.delijn.be/stops/503430", "https://data.delijn.be/stops/508255"], ["https://data.delijn.be/stops/505204", "https://data.delijn.be/stops/508474"], ["https://data.delijn.be/stops/208392", "https://data.delijn.be/stops/208744"], ["https://data.delijn.be/stops/300471", "https://data.delijn.be/stops/300545"], ["https://data.delijn.be/stops/207670", "https://data.delijn.be/stops/209618"], ["https://data.delijn.be/stops/204108", "https://data.delijn.be/stops/204109"], ["https://data.delijn.be/stops/206724", "https://data.delijn.be/stops/207985"], ["https://data.delijn.be/stops/204188", "https://data.delijn.be/stops/205189"], ["https://data.delijn.be/stops/503374", "https://data.delijn.be/stops/508374"], ["https://data.delijn.be/stops/103006", "https://data.delijn.be/stops/103007"], ["https://data.delijn.be/stops/105223", "https://data.delijn.be/stops/108057"], ["https://data.delijn.be/stops/407488", "https://data.delijn.be/stops/407509"], ["https://data.delijn.be/stops/504118", "https://data.delijn.be/stops/504395"], ["https://data.delijn.be/stops/408428", "https://data.delijn.be/stops/408681"], ["https://data.delijn.be/stops/206151", "https://data.delijn.be/stops/206497"], ["https://data.delijn.be/stops/101533", "https://data.delijn.be/stops/108786"], ["https://data.delijn.be/stops/102651", "https://data.delijn.be/stops/103061"], ["https://data.delijn.be/stops/408864", "https://data.delijn.be/stops/408869"], ["https://data.delijn.be/stops/101900", "https://data.delijn.be/stops/102655"], ["https://data.delijn.be/stops/300051", "https://data.delijn.be/stops/307732"], ["https://data.delijn.be/stops/300602", "https://data.delijn.be/stops/303523"], ["https://data.delijn.be/stops/303269", "https://data.delijn.be/stops/303306"], ["https://data.delijn.be/stops/408236", "https://data.delijn.be/stops/308222"], ["https://data.delijn.be/stops/503317", "https://data.delijn.be/stops/508316"], ["https://data.delijn.be/stops/107491", "https://data.delijn.be/stops/107492"], ["https://data.delijn.be/stops/301654", "https://data.delijn.be/stops/301655"], ["https://data.delijn.be/stops/301979", "https://data.delijn.be/stops/302920"], ["https://data.delijn.be/stops/403818", "https://data.delijn.be/stops/403819"], ["https://data.delijn.be/stops/406628", "https://data.delijn.be/stops/406629"], ["https://data.delijn.be/stops/300326", "https://data.delijn.be/stops/300327"], ["https://data.delijn.be/stops/301591", "https://data.delijn.be/stops/301593"], ["https://data.delijn.be/stops/300007", "https://data.delijn.be/stops/301339"], ["https://data.delijn.be/stops/104931", "https://data.delijn.be/stops/107841"], ["https://data.delijn.be/stops/506447", "https://data.delijn.be/stops/506454"], ["https://data.delijn.be/stops/405694", "https://data.delijn.be/stops/405989"], ["https://data.delijn.be/stops/406307", "https://data.delijn.be/stops/406322"], ["https://data.delijn.be/stops/505753", "https://data.delijn.be/stops/509878"], ["https://data.delijn.be/stops/204241", "https://data.delijn.be/stops/205240"], ["https://data.delijn.be/stops/302306", "https://data.delijn.be/stops/304083"], ["https://data.delijn.be/stops/202400", "https://data.delijn.be/stops/202401"], ["https://data.delijn.be/stops/301430", "https://data.delijn.be/stops/301438"], ["https://data.delijn.be/stops/404307", "https://data.delijn.be/stops/404648"], ["https://data.delijn.be/stops/403262", "https://data.delijn.be/stops/403445"], ["https://data.delijn.be/stops/200565", "https://data.delijn.be/stops/201565"], ["https://data.delijn.be/stops/403747", "https://data.delijn.be/stops/403751"], ["https://data.delijn.be/stops/101434", "https://data.delijn.be/stops/107292"], ["https://data.delijn.be/stops/105289", "https://data.delijn.be/stops/106496"], ["https://data.delijn.be/stops/107098", "https://data.delijn.be/stops/107099"], ["https://data.delijn.be/stops/408673", "https://data.delijn.be/stops/408807"], ["https://data.delijn.be/stops/403148", "https://data.delijn.be/stops/403149"], ["https://data.delijn.be/stops/402754", "https://data.delijn.be/stops/402776"], ["https://data.delijn.be/stops/400738", "https://data.delijn.be/stops/400742"], ["https://data.delijn.be/stops/105642", "https://data.delijn.be/stops/105643"], ["https://data.delijn.be/stops/300481", "https://data.delijn.be/stops/306162"], ["https://data.delijn.be/stops/206357", "https://data.delijn.be/stops/207729"], ["https://data.delijn.be/stops/102024", "https://data.delijn.be/stops/104844"], ["https://data.delijn.be/stops/408839", "https://data.delijn.be/stops/408840"], ["https://data.delijn.be/stops/102735", "https://data.delijn.be/stops/105405"], ["https://data.delijn.be/stops/501062", "https://data.delijn.be/stops/506135"], ["https://data.delijn.be/stops/407152", "https://data.delijn.be/stops/407183"], ["https://data.delijn.be/stops/204832", "https://data.delijn.be/stops/205832"], ["https://data.delijn.be/stops/404101", "https://data.delijn.be/stops/404109"], ["https://data.delijn.be/stops/504181", "https://data.delijn.be/stops/509170"], ["https://data.delijn.be/stops/503791", "https://data.delijn.be/stops/508795"], ["https://data.delijn.be/stops/502765", "https://data.delijn.be/stops/505701"], ["https://data.delijn.be/stops/209634", "https://data.delijn.be/stops/209635"], ["https://data.delijn.be/stops/202195", "https://data.delijn.be/stops/209491"], ["https://data.delijn.be/stops/301448", "https://data.delijn.be/stops/305609"], ["https://data.delijn.be/stops/504969", "https://data.delijn.be/stops/509969"], ["https://data.delijn.be/stops/300493", "https://data.delijn.be/stops/302094"], ["https://data.delijn.be/stops/102424", "https://data.delijn.be/stops/103751"], ["https://data.delijn.be/stops/102161", "https://data.delijn.be/stops/108963"], ["https://data.delijn.be/stops/304277", "https://data.delijn.be/stops/304286"], ["https://data.delijn.be/stops/300268", "https://data.delijn.be/stops/307492"], ["https://data.delijn.be/stops/204591", "https://data.delijn.be/stops/205594"], ["https://data.delijn.be/stops/404443", "https://data.delijn.be/stops/405851"], ["https://data.delijn.be/stops/406378", "https://data.delijn.be/stops/407862"], ["https://data.delijn.be/stops/301646", "https://data.delijn.be/stops/301670"], ["https://data.delijn.be/stops/408969", "https://data.delijn.be/stops/408978"], ["https://data.delijn.be/stops/504028", "https://data.delijn.be/stops/504036"], ["https://data.delijn.be/stops/503224", "https://data.delijn.be/stops/503593"], ["https://data.delijn.be/stops/209343", "https://data.delijn.be/stops/219031"], ["https://data.delijn.be/stops/102230", "https://data.delijn.be/stops/102390"], ["https://data.delijn.be/stops/303245", "https://data.delijn.be/stops/306670"], ["https://data.delijn.be/stops/504538", "https://data.delijn.be/stops/508012"], ["https://data.delijn.be/stops/300088", "https://data.delijn.be/stops/300089"], ["https://data.delijn.be/stops/408236", "https://data.delijn.be/stops/408237"], ["https://data.delijn.be/stops/104586", "https://data.delijn.be/stops/107817"], ["https://data.delijn.be/stops/404835", "https://data.delijn.be/stops/406129"], ["https://data.delijn.be/stops/302777", "https://data.delijn.be/stops/302779"], ["https://data.delijn.be/stops/501194", "https://data.delijn.be/stops/501699"], ["https://data.delijn.be/stops/400643", "https://data.delijn.be/stops/400961"], ["https://data.delijn.be/stops/305688", "https://data.delijn.be/stops/305702"], ["https://data.delijn.be/stops/202091", "https://data.delijn.be/stops/202093"], ["https://data.delijn.be/stops/308606", "https://data.delijn.be/stops/308631"], ["https://data.delijn.be/stops/507400", "https://data.delijn.be/stops/507590"], ["https://data.delijn.be/stops/101676", "https://data.delijn.be/stops/101679"], ["https://data.delijn.be/stops/408622", "https://data.delijn.be/stops/408626"], ["https://data.delijn.be/stops/501617", "https://data.delijn.be/stops/501624"], ["https://data.delijn.be/stops/101969", "https://data.delijn.be/stops/108208"], ["https://data.delijn.be/stops/305006", "https://data.delijn.be/stops/305015"], ["https://data.delijn.be/stops/302891", "https://data.delijn.be/stops/302903"], ["https://data.delijn.be/stops/107503", "https://data.delijn.be/stops/107504"], ["https://data.delijn.be/stops/308753", "https://data.delijn.be/stops/308754"], ["https://data.delijn.be/stops/402336", "https://data.delijn.be/stops/402441"], ["https://data.delijn.be/stops/208406", "https://data.delijn.be/stops/218013"], ["https://data.delijn.be/stops/108698", "https://data.delijn.be/stops/108704"], ["https://data.delijn.be/stops/503421", "https://data.delijn.be/stops/504099"], ["https://data.delijn.be/stops/300029", "https://data.delijn.be/stops/300065"], ["https://data.delijn.be/stops/505986", "https://data.delijn.be/stops/508482"], ["https://data.delijn.be/stops/402769", "https://data.delijn.be/stops/409552"], ["https://data.delijn.be/stops/201897", "https://data.delijn.be/stops/211043"], ["https://data.delijn.be/stops/109434", "https://data.delijn.be/stops/109435"], ["https://data.delijn.be/stops/303487", "https://data.delijn.be/stops/308739"], ["https://data.delijn.be/stops/307341", "https://data.delijn.be/stops/307344"], ["https://data.delijn.be/stops/501655", "https://data.delijn.be/stops/506671"], ["https://data.delijn.be/stops/504618", "https://data.delijn.be/stops/504627"], ["https://data.delijn.be/stops/204448", "https://data.delijn.be/stops/205269"], ["https://data.delijn.be/stops/307921", "https://data.delijn.be/stops/308854"], ["https://data.delijn.be/stops/209316", "https://data.delijn.be/stops/209789"], ["https://data.delijn.be/stops/300547", "https://data.delijn.be/stops/300551"], ["https://data.delijn.be/stops/301380", "https://data.delijn.be/stops/306649"], ["https://data.delijn.be/stops/206480", "https://data.delijn.be/stops/207480"], ["https://data.delijn.be/stops/401386", "https://data.delijn.be/stops/410178"], ["https://data.delijn.be/stops/102745", "https://data.delijn.be/stops/102814"], ["https://data.delijn.be/stops/101527", "https://data.delijn.be/stops/101953"], ["https://data.delijn.be/stops/206065", "https://data.delijn.be/stops/207065"], ["https://data.delijn.be/stops/304876", "https://data.delijn.be/stops/307051"], ["https://data.delijn.be/stops/308492", "https://data.delijn.be/stops/308522"], ["https://data.delijn.be/stops/400004", "https://data.delijn.be/stops/400440"], ["https://data.delijn.be/stops/106955", "https://data.delijn.be/stops/109734"], ["https://data.delijn.be/stops/507222", "https://data.delijn.be/stops/507223"], ["https://data.delijn.be/stops/307207", "https://data.delijn.be/stops/307209"], ["https://data.delijn.be/stops/509572", "https://data.delijn.be/stops/509577"], ["https://data.delijn.be/stops/405697", "https://data.delijn.be/stops/405900"], ["https://data.delijn.be/stops/202231", "https://data.delijn.be/stops/219505"], ["https://data.delijn.be/stops/103233", "https://data.delijn.be/stops/103582"], ["https://data.delijn.be/stops/203765", "https://data.delijn.be/stops/203766"], ["https://data.delijn.be/stops/405713", "https://data.delijn.be/stops/408276"], ["https://data.delijn.be/stops/103288", "https://data.delijn.be/stops/103293"], ["https://data.delijn.be/stops/503105", "https://data.delijn.be/stops/505383"], ["https://data.delijn.be/stops/500958", "https://data.delijn.be/stops/508286"], ["https://data.delijn.be/stops/400702", "https://data.delijn.be/stops/404310"], ["https://data.delijn.be/stops/218010", "https://data.delijn.be/stops/219011"], ["https://data.delijn.be/stops/400175", "https://data.delijn.be/stops/402791"], ["https://data.delijn.be/stops/109336", "https://data.delijn.be/stops/109371"], ["https://data.delijn.be/stops/505770", "https://data.delijn.be/stops/507344"], ["https://data.delijn.be/stops/105853", "https://data.delijn.be/stops/105854"], ["https://data.delijn.be/stops/505579", "https://data.delijn.be/stops/505580"], ["https://data.delijn.be/stops/501029", "https://data.delijn.be/stops/506029"], ["https://data.delijn.be/stops/105718", "https://data.delijn.be/stops/106562"], ["https://data.delijn.be/stops/407618", "https://data.delijn.be/stops/407662"], ["https://data.delijn.be/stops/200807", "https://data.delijn.be/stops/202655"], ["https://data.delijn.be/stops/409153", "https://data.delijn.be/stops/409154"], ["https://data.delijn.be/stops/207302", "https://data.delijn.be/stops/207303"], ["https://data.delijn.be/stops/108048", "https://data.delijn.be/stops/108051"], ["https://data.delijn.be/stops/201485", "https://data.delijn.be/stops/208732"], ["https://data.delijn.be/stops/502072", "https://data.delijn.be/stops/502605"], ["https://data.delijn.be/stops/305430", "https://data.delijn.be/stops/308868"], ["https://data.delijn.be/stops/200456", "https://data.delijn.be/stops/201456"], ["https://data.delijn.be/stops/502734", "https://data.delijn.be/stops/505596"], ["https://data.delijn.be/stops/103261", "https://data.delijn.be/stops/105853"], ["https://data.delijn.be/stops/202295", "https://data.delijn.be/stops/202334"], ["https://data.delijn.be/stops/102764", "https://data.delijn.be/stops/102766"], ["https://data.delijn.be/stops/103301", "https://data.delijn.be/stops/105778"], ["https://data.delijn.be/stops/305297", "https://data.delijn.be/stops/305325"], ["https://data.delijn.be/stops/302671", "https://data.delijn.be/stops/308555"], ["https://data.delijn.be/stops/303020", "https://data.delijn.be/stops/303062"], ["https://data.delijn.be/stops/304574", "https://data.delijn.be/stops/304575"], ["https://data.delijn.be/stops/302023", "https://data.delijn.be/stops/306341"], ["https://data.delijn.be/stops/502811", "https://data.delijn.be/stops/509724"], ["https://data.delijn.be/stops/501225", "https://data.delijn.be/stops/505085"], ["https://data.delijn.be/stops/402364", "https://data.delijn.be/stops/402462"], ["https://data.delijn.be/stops/400968", "https://data.delijn.be/stops/400970"], ["https://data.delijn.be/stops/107734", "https://data.delijn.be/stops/109383"], ["https://data.delijn.be/stops/104050", "https://data.delijn.be/stops/109709"], ["https://data.delijn.be/stops/105407", "https://data.delijn.be/stops/107320"], ["https://data.delijn.be/stops/210001", "https://data.delijn.be/stops/211094"], ["https://data.delijn.be/stops/405671", "https://data.delijn.be/stops/407869"], ["https://data.delijn.be/stops/203664", "https://data.delijn.be/stops/210080"], ["https://data.delijn.be/stops/307203", "https://data.delijn.be/stops/307206"], ["https://data.delijn.be/stops/303296", "https://data.delijn.be/stops/308737"], ["https://data.delijn.be/stops/308784", "https://data.delijn.be/stops/308785"], ["https://data.delijn.be/stops/501125", "https://data.delijn.be/stops/505221"], ["https://data.delijn.be/stops/507124", "https://data.delijn.be/stops/507434"], ["https://data.delijn.be/stops/206845", "https://data.delijn.be/stops/207844"], ["https://data.delijn.be/stops/102633", "https://data.delijn.be/stops/107849"], ["https://data.delijn.be/stops/501347", "https://data.delijn.be/stops/506742"], ["https://data.delijn.be/stops/206628", "https://data.delijn.be/stops/206629"], ["https://data.delijn.be/stops/302065", "https://data.delijn.be/stops/302460"], ["https://data.delijn.be/stops/208018", "https://data.delijn.be/stops/208079"], ["https://data.delijn.be/stops/302408", "https://data.delijn.be/stops/302409"], ["https://data.delijn.be/stops/400547", "https://data.delijn.be/stops/400973"], ["https://data.delijn.be/stops/108826", "https://data.delijn.be/stops/108891"], ["https://data.delijn.be/stops/208674", "https://data.delijn.be/stops/209439"], ["https://data.delijn.be/stops/403453", "https://data.delijn.be/stops/405127"], ["https://data.delijn.be/stops/502655", "https://data.delijn.be/stops/507655"], ["https://data.delijn.be/stops/404184", "https://data.delijn.be/stops/407365"], ["https://data.delijn.be/stops/302717", "https://data.delijn.be/stops/302718"], ["https://data.delijn.be/stops/203867", "https://data.delijn.be/stops/208712"], ["https://data.delijn.be/stops/207670", "https://data.delijn.be/stops/208483"], ["https://data.delijn.be/stops/202913", "https://data.delijn.be/stops/203822"], ["https://data.delijn.be/stops/503331", "https://data.delijn.be/stops/508333"], ["https://data.delijn.be/stops/400612", "https://data.delijn.be/stops/404293"], ["https://data.delijn.be/stops/300107", "https://data.delijn.be/stops/306842"], ["https://data.delijn.be/stops/301307", "https://data.delijn.be/stops/306256"], ["https://data.delijn.be/stops/200870", "https://data.delijn.be/stops/202287"], ["https://data.delijn.be/stops/101582", "https://data.delijn.be/stops/109890"], ["https://data.delijn.be/stops/300641", "https://data.delijn.be/stops/306747"], ["https://data.delijn.be/stops/400230", "https://data.delijn.be/stops/401865"], ["https://data.delijn.be/stops/104502", "https://data.delijn.be/stops/104506"], ["https://data.delijn.be/stops/504372", "https://data.delijn.be/stops/509612"], ["https://data.delijn.be/stops/101900", "https://data.delijn.be/stops/102150"], ["https://data.delijn.be/stops/107292", "https://data.delijn.be/stops/107297"], ["https://data.delijn.be/stops/502204", "https://data.delijn.be/stops/507204"], ["https://data.delijn.be/stops/504656", "https://data.delijn.be/stops/509643"], ["https://data.delijn.be/stops/406162", "https://data.delijn.be/stops/407302"], ["https://data.delijn.be/stops/204918", "https://data.delijn.be/stops/204919"], ["https://data.delijn.be/stops/208302", "https://data.delijn.be/stops/209301"], ["https://data.delijn.be/stops/103925", "https://data.delijn.be/stops/105655"], ["https://data.delijn.be/stops/502610", "https://data.delijn.be/stops/507610"], ["https://data.delijn.be/stops/102585", "https://data.delijn.be/stops/102590"], ["https://data.delijn.be/stops/407277", "https://data.delijn.be/stops/407326"], ["https://data.delijn.be/stops/504796", "https://data.delijn.be/stops/504799"], ["https://data.delijn.be/stops/208171", "https://data.delijn.be/stops/209171"], ["https://data.delijn.be/stops/305069", "https://data.delijn.be/stops/306953"], ["https://data.delijn.be/stops/400259", "https://data.delijn.be/stops/408363"], ["https://data.delijn.be/stops/503162", "https://data.delijn.be/stops/508174"], ["https://data.delijn.be/stops/303120", "https://data.delijn.be/stops/303121"], ["https://data.delijn.be/stops/301675", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/409305", "https://data.delijn.be/stops/409307"], ["https://data.delijn.be/stops/306829", "https://data.delijn.be/stops/306831"], ["https://data.delijn.be/stops/505047", "https://data.delijn.be/stops/509795"], ["https://data.delijn.be/stops/404222", "https://data.delijn.be/stops/404223"], ["https://data.delijn.be/stops/207713", "https://data.delijn.be/stops/207714"], ["https://data.delijn.be/stops/104009", "https://data.delijn.be/stops/104942"], ["https://data.delijn.be/stops/201877", "https://data.delijn.be/stops/202416"], ["https://data.delijn.be/stops/507200", "https://data.delijn.be/stops/507205"], ["https://data.delijn.be/stops/402409", "https://data.delijn.be/stops/406967"], ["https://data.delijn.be/stops/207066", "https://data.delijn.be/stops/207520"], ["https://data.delijn.be/stops/504389", "https://data.delijn.be/stops/509389"], ["https://data.delijn.be/stops/104703", "https://data.delijn.be/stops/108182"], ["https://data.delijn.be/stops/302886", "https://data.delijn.be/stops/303080"], ["https://data.delijn.be/stops/208606", "https://data.delijn.be/stops/307740"], ["https://data.delijn.be/stops/503590", "https://data.delijn.be/stops/508589"], ["https://data.delijn.be/stops/300634", "https://data.delijn.be/stops/304345"], ["https://data.delijn.be/stops/405181", "https://data.delijn.be/stops/406725"], ["https://data.delijn.be/stops/500129", "https://data.delijn.be/stops/505323"], ["https://data.delijn.be/stops/108273", "https://data.delijn.be/stops/108279"], ["https://data.delijn.be/stops/203873", "https://data.delijn.be/stops/209723"], ["https://data.delijn.be/stops/207231", "https://data.delijn.be/stops/300151"], ["https://data.delijn.be/stops/102408", "https://data.delijn.be/stops/109036"], ["https://data.delijn.be/stops/109997", "https://data.delijn.be/stops/109998"], ["https://data.delijn.be/stops/304738", "https://data.delijn.be/stops/304739"], ["https://data.delijn.be/stops/102851", "https://data.delijn.be/stops/106882"], ["https://data.delijn.be/stops/408258", "https://data.delijn.be/stops/307452"], ["https://data.delijn.be/stops/102396", "https://data.delijn.be/stops/108194"], ["https://data.delijn.be/stops/300862", "https://data.delijn.be/stops/308853"], ["https://data.delijn.be/stops/207338", "https://data.delijn.be/stops/207741"], ["https://data.delijn.be/stops/401672", "https://data.delijn.be/stops/308267"], ["https://data.delijn.be/stops/300762", "https://data.delijn.be/stops/304654"], ["https://data.delijn.be/stops/407986", "https://data.delijn.be/stops/407999"], ["https://data.delijn.be/stops/407324", "https://data.delijn.be/stops/407325"], ["https://data.delijn.be/stops/409651", "https://data.delijn.be/stops/409654"], ["https://data.delijn.be/stops/106206", "https://data.delijn.be/stops/109906"], ["https://data.delijn.be/stops/107697", "https://data.delijn.be/stops/107698"], ["https://data.delijn.be/stops/303381", "https://data.delijn.be/stops/305855"], ["https://data.delijn.be/stops/206617", "https://data.delijn.be/stops/207619"], ["https://data.delijn.be/stops/504405", "https://data.delijn.be/stops/505164"], ["https://data.delijn.be/stops/300400", "https://data.delijn.be/stops/300406"], ["https://data.delijn.be/stops/404845", "https://data.delijn.be/stops/407708"], ["https://data.delijn.be/stops/503500", "https://data.delijn.be/stops/508497"], ["https://data.delijn.be/stops/204369", "https://data.delijn.be/stops/205368"], ["https://data.delijn.be/stops/104113", "https://data.delijn.be/stops/107877"], ["https://data.delijn.be/stops/203186", "https://data.delijn.be/stops/203279"], ["https://data.delijn.be/stops/502564", "https://data.delijn.be/stops/502572"], ["https://data.delijn.be/stops/305685", "https://data.delijn.be/stops/305711"], ["https://data.delijn.be/stops/104459", "https://data.delijn.be/stops/104462"], ["https://data.delijn.be/stops/405159", "https://data.delijn.be/stops/405231"], ["https://data.delijn.be/stops/201758", "https://data.delijn.be/stops/201782"], ["https://data.delijn.be/stops/203634", "https://data.delijn.be/stops/205067"], ["https://data.delijn.be/stops/308116", "https://data.delijn.be/stops/308117"], ["https://data.delijn.be/stops/200155", "https://data.delijn.be/stops/203359"], ["https://data.delijn.be/stops/505388", "https://data.delijn.be/stops/508098"], ["https://data.delijn.be/stops/407648", "https://data.delijn.be/stops/407668"], ["https://data.delijn.be/stops/303467", "https://data.delijn.be/stops/308429"], ["https://data.delijn.be/stops/206894", "https://data.delijn.be/stops/206895"], ["https://data.delijn.be/stops/405499", "https://data.delijn.be/stops/407803"], ["https://data.delijn.be/stops/500120", "https://data.delijn.be/stops/507682"], ["https://data.delijn.be/stops/504146", "https://data.delijn.be/stops/509146"], ["https://data.delijn.be/stops/209362", "https://data.delijn.be/stops/209399"], ["https://data.delijn.be/stops/200522", "https://data.delijn.be/stops/201522"], ["https://data.delijn.be/stops/201880", "https://data.delijn.be/stops/202022"], ["https://data.delijn.be/stops/105080", "https://data.delijn.be/stops/105087"], ["https://data.delijn.be/stops/202710", "https://data.delijn.be/stops/202711"], ["https://data.delijn.be/stops/200947", "https://data.delijn.be/stops/211121"], ["https://data.delijn.be/stops/304962", "https://data.delijn.be/stops/305309"], ["https://data.delijn.be/stops/101171", "https://data.delijn.be/stops/102380"], ["https://data.delijn.be/stops/302310", "https://data.delijn.be/stops/302329"], ["https://data.delijn.be/stops/503797", "https://data.delijn.be/stops/508793"], ["https://data.delijn.be/stops/405805", "https://data.delijn.be/stops/409429"], ["https://data.delijn.be/stops/406202", "https://data.delijn.be/stops/406893"], ["https://data.delijn.be/stops/301759", "https://data.delijn.be/stops/308423"], ["https://data.delijn.be/stops/402986", "https://data.delijn.be/stops/410053"], ["https://data.delijn.be/stops/209163", "https://data.delijn.be/stops/209169"], ["https://data.delijn.be/stops/504130", "https://data.delijn.be/stops/504131"], ["https://data.delijn.be/stops/300851", "https://data.delijn.be/stops/303631"], ["https://data.delijn.be/stops/206242", "https://data.delijn.be/stops/207242"], ["https://data.delijn.be/stops/504469", "https://data.delijn.be/stops/509111"], ["https://data.delijn.be/stops/408078", "https://data.delijn.be/stops/408079"], ["https://data.delijn.be/stops/301464", "https://data.delijn.be/stops/301465"], ["https://data.delijn.be/stops/403970", "https://data.delijn.be/stops/403979"], ["https://data.delijn.be/stops/404229", "https://data.delijn.be/stops/404548"], ["https://data.delijn.be/stops/207643", "https://data.delijn.be/stops/209687"], ["https://data.delijn.be/stops/503613", "https://data.delijn.be/stops/509751"], ["https://data.delijn.be/stops/300266", "https://data.delijn.be/stops/300272"], ["https://data.delijn.be/stops/405342", "https://data.delijn.be/stops/308732"], ["https://data.delijn.be/stops/102200", "https://data.delijn.be/stops/104275"], ["https://data.delijn.be/stops/400222", "https://data.delijn.be/stops/406078"], ["https://data.delijn.be/stops/504148", "https://data.delijn.be/stops/509148"], ["https://data.delijn.be/stops/202878", "https://data.delijn.be/stops/202882"], ["https://data.delijn.be/stops/503667", "https://data.delijn.be/stops/508667"], ["https://data.delijn.be/stops/300997", "https://data.delijn.be/stops/307043"], ["https://data.delijn.be/stops/303169", "https://data.delijn.be/stops/303575"], ["https://data.delijn.be/stops/505238", "https://data.delijn.be/stops/507762"], ["https://data.delijn.be/stops/107162", "https://data.delijn.be/stops/107164"], ["https://data.delijn.be/stops/502673", "https://data.delijn.be/stops/507674"], ["https://data.delijn.be/stops/303723", "https://data.delijn.be/stops/303769"], ["https://data.delijn.be/stops/301668", "https://data.delijn.be/stops/301670"], ["https://data.delijn.be/stops/305457", "https://data.delijn.be/stops/305458"], ["https://data.delijn.be/stops/206003", "https://data.delijn.be/stops/207003"], ["https://data.delijn.be/stops/208363", "https://data.delijn.be/stops/208777"], ["https://data.delijn.be/stops/503423", "https://data.delijn.be/stops/508438"], ["https://data.delijn.be/stops/505694", "https://data.delijn.be/stops/507612"], ["https://data.delijn.be/stops/305101", "https://data.delijn.be/stops/305123"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/302894"], ["https://data.delijn.be/stops/303696", "https://data.delijn.be/stops/303698"], ["https://data.delijn.be/stops/505079", "https://data.delijn.be/stops/507690"], ["https://data.delijn.be/stops/503296", "https://data.delijn.be/stops/503303"], ["https://data.delijn.be/stops/401508", "https://data.delijn.be/stops/402033"], ["https://data.delijn.be/stops/303319", "https://data.delijn.be/stops/303330"], ["https://data.delijn.be/stops/304077", "https://data.delijn.be/stops/307509"], ["https://data.delijn.be/stops/205081", "https://data.delijn.be/stops/205203"], ["https://data.delijn.be/stops/502464", "https://data.delijn.be/stops/507464"], ["https://data.delijn.be/stops/206453", "https://data.delijn.be/stops/207454"], ["https://data.delijn.be/stops/206372", "https://data.delijn.be/stops/207346"], ["https://data.delijn.be/stops/204056", "https://data.delijn.be/stops/205703"], ["https://data.delijn.be/stops/504084", "https://data.delijn.be/stops/509083"], ["https://data.delijn.be/stops/300905", "https://data.delijn.be/stops/301029"], ["https://data.delijn.be/stops/101830", "https://data.delijn.be/stops/103950"], ["https://data.delijn.be/stops/409515", "https://data.delijn.be/stops/409876"], ["https://data.delijn.be/stops/101371", "https://data.delijn.be/stops/101406"], ["https://data.delijn.be/stops/406599", "https://data.delijn.be/stops/406638"], ["https://data.delijn.be/stops/301246", "https://data.delijn.be/stops/307092"], ["https://data.delijn.be/stops/503991", "https://data.delijn.be/stops/508692"], ["https://data.delijn.be/stops/205077", "https://data.delijn.be/stops/205078"], ["https://data.delijn.be/stops/305302", "https://data.delijn.be/stops/305315"], ["https://data.delijn.be/stops/200238", "https://data.delijn.be/stops/211129"], ["https://data.delijn.be/stops/504375", "https://data.delijn.be/stops/508609"], ["https://data.delijn.be/stops/204586", "https://data.delijn.be/stops/204594"], ["https://data.delijn.be/stops/302191", "https://data.delijn.be/stops/305458"], ["https://data.delijn.be/stops/404408", "https://data.delijn.be/stops/404412"], ["https://data.delijn.be/stops/106639", "https://data.delijn.be/stops/106678"], ["https://data.delijn.be/stops/104301", "https://data.delijn.be/stops/108940"], ["https://data.delijn.be/stops/200609", "https://data.delijn.be/stops/203311"], ["https://data.delijn.be/stops/206766", "https://data.delijn.be/stops/209544"], ["https://data.delijn.be/stops/107969", "https://data.delijn.be/stops/108431"], ["https://data.delijn.be/stops/307527", "https://data.delijn.be/stops/307530"], ["https://data.delijn.be/stops/501778", "https://data.delijn.be/stops/506157"], ["https://data.delijn.be/stops/305636", "https://data.delijn.be/stops/308600"], ["https://data.delijn.be/stops/103744", "https://data.delijn.be/stops/103759"], ["https://data.delijn.be/stops/501697", "https://data.delijn.be/stops/507248"], ["https://data.delijn.be/stops/208777", "https://data.delijn.be/stops/208778"], ["https://data.delijn.be/stops/202049", "https://data.delijn.be/stops/203050"], ["https://data.delijn.be/stops/102184", "https://data.delijn.be/stops/108027"], ["https://data.delijn.be/stops/203432", "https://data.delijn.be/stops/203435"], ["https://data.delijn.be/stops/305040", "https://data.delijn.be/stops/305041"], ["https://data.delijn.be/stops/503999", "https://data.delijn.be/stops/508164"], ["https://data.delijn.be/stops/403018", "https://data.delijn.be/stops/409276"], ["https://data.delijn.be/stops/407305", "https://data.delijn.be/stops/408472"], ["https://data.delijn.be/stops/204163", "https://data.delijn.be/stops/207962"], ["https://data.delijn.be/stops/203832", "https://data.delijn.be/stops/219024"], ["https://data.delijn.be/stops/209415", "https://data.delijn.be/stops/209417"], ["https://data.delijn.be/stops/502462", "https://data.delijn.be/stops/507462"], ["https://data.delijn.be/stops/203009", "https://data.delijn.be/stops/203652"], ["https://data.delijn.be/stops/202698", "https://data.delijn.be/stops/202706"], ["https://data.delijn.be/stops/502692", "https://data.delijn.be/stops/505959"], ["https://data.delijn.be/stops/405787", "https://data.delijn.be/stops/409764"], ["https://data.delijn.be/stops/400798", "https://data.delijn.be/stops/409654"], ["https://data.delijn.be/stops/206449", "https://data.delijn.be/stops/207449"], ["https://data.delijn.be/stops/101884", "https://data.delijn.be/stops/104489"], ["https://data.delijn.be/stops/101390", "https://data.delijn.be/stops/101828"], ["https://data.delijn.be/stops/504686", "https://data.delijn.be/stops/508522"], ["https://data.delijn.be/stops/305147", "https://data.delijn.be/stops/306962"], ["https://data.delijn.be/stops/201719", "https://data.delijn.be/stops/201886"], ["https://data.delijn.be/stops/101602", "https://data.delijn.be/stops/105553"], ["https://data.delijn.be/stops/101644", "https://data.delijn.be/stops/105243"], ["https://data.delijn.be/stops/202884", "https://data.delijn.be/stops/202887"], ["https://data.delijn.be/stops/206097", "https://data.delijn.be/stops/207998"], ["https://data.delijn.be/stops/405798", "https://data.delijn.be/stops/409705"], ["https://data.delijn.be/stops/202430", "https://data.delijn.be/stops/205939"], ["https://data.delijn.be/stops/306295", "https://data.delijn.be/stops/306299"], ["https://data.delijn.be/stops/200916", "https://data.delijn.be/stops/203247"], ["https://data.delijn.be/stops/204985", "https://data.delijn.be/stops/209182"], ["https://data.delijn.be/stops/301195", "https://data.delijn.be/stops/307613"], ["https://data.delijn.be/stops/305597", "https://data.delijn.be/stops/306270"], ["https://data.delijn.be/stops/308224", "https://data.delijn.be/stops/308226"], ["https://data.delijn.be/stops/305277", "https://data.delijn.be/stops/306344"], ["https://data.delijn.be/stops/502201", "https://data.delijn.be/stops/507099"], ["https://data.delijn.be/stops/207527", "https://data.delijn.be/stops/209080"], ["https://data.delijn.be/stops/204591", "https://data.delijn.be/stops/204775"], ["https://data.delijn.be/stops/500044", "https://data.delijn.be/stops/500046"], ["https://data.delijn.be/stops/203363", "https://data.delijn.be/stops/203989"], ["https://data.delijn.be/stops/101795", "https://data.delijn.be/stops/101940"], ["https://data.delijn.be/stops/108076", "https://data.delijn.be/stops/108462"], ["https://data.delijn.be/stops/203213", "https://data.delijn.be/stops/203775"], ["https://data.delijn.be/stops/306146", "https://data.delijn.be/stops/306259"], ["https://data.delijn.be/stops/504237", "https://data.delijn.be/stops/504255"], ["https://data.delijn.be/stops/502420", "https://data.delijn.be/stops/502424"], ["https://data.delijn.be/stops/206389", "https://data.delijn.be/stops/206553"], ["https://data.delijn.be/stops/102019", "https://data.delijn.be/stops/105477"], ["https://data.delijn.be/stops/206032", "https://data.delijn.be/stops/207901"], ["https://data.delijn.be/stops/302049", "https://data.delijn.be/stops/308860"], ["https://data.delijn.be/stops/200102", "https://data.delijn.be/stops/211094"], ["https://data.delijn.be/stops/208139", "https://data.delijn.be/stops/208815"], ["https://data.delijn.be/stops/109153", "https://data.delijn.be/stops/109156"], ["https://data.delijn.be/stops/106449", "https://data.delijn.be/stops/106506"], ["https://data.delijn.be/stops/109222", "https://data.delijn.be/stops/109224"], ["https://data.delijn.be/stops/202015", "https://data.delijn.be/stops/203015"], ["https://data.delijn.be/stops/406679", "https://data.delijn.be/stops/407179"], ["https://data.delijn.be/stops/509737", "https://data.delijn.be/stops/509866"], ["https://data.delijn.be/stops/503141", "https://data.delijn.be/stops/508146"], ["https://data.delijn.be/stops/409422", "https://data.delijn.be/stops/409674"], ["https://data.delijn.be/stops/207153", "https://data.delijn.be/stops/207503"], ["https://data.delijn.be/stops/302210", "https://data.delijn.be/stops/302232"], ["https://data.delijn.be/stops/304069", "https://data.delijn.be/stops/304070"], ["https://data.delijn.be/stops/305705", "https://data.delijn.be/stops/307840"], ["https://data.delijn.be/stops/108331", "https://data.delijn.be/stops/108332"], ["https://data.delijn.be/stops/109046", "https://data.delijn.be/stops/109047"], ["https://data.delijn.be/stops/304689", "https://data.delijn.be/stops/304690"], ["https://data.delijn.be/stops/202754", "https://data.delijn.be/stops/202794"], ["https://data.delijn.be/stops/509393", "https://data.delijn.be/stops/509395"], ["https://data.delijn.be/stops/508404", "https://data.delijn.be/stops/508426"], ["https://data.delijn.be/stops/400161", "https://data.delijn.be/stops/403296"], ["https://data.delijn.be/stops/106787", "https://data.delijn.be/stops/106788"], ["https://data.delijn.be/stops/304774", "https://data.delijn.be/stops/306115"], ["https://data.delijn.be/stops/101907", "https://data.delijn.be/stops/101916"], ["https://data.delijn.be/stops/103633", "https://data.delijn.be/stops/107562"], ["https://data.delijn.be/stops/508390", "https://data.delijn.be/stops/508451"], ["https://data.delijn.be/stops/407916", "https://data.delijn.be/stops/407917"], ["https://data.delijn.be/stops/308180", "https://data.delijn.be/stops/308181"], ["https://data.delijn.be/stops/504022", "https://data.delijn.be/stops/505103"], ["https://data.delijn.be/stops/101989", "https://data.delijn.be/stops/101991"], ["https://data.delijn.be/stops/504172", "https://data.delijn.be/stops/509166"], ["https://data.delijn.be/stops/200816", "https://data.delijn.be/stops/210016"], ["https://data.delijn.be/stops/208100", "https://data.delijn.be/stops/209097"], ["https://data.delijn.be/stops/108740", "https://data.delijn.be/stops/108870"], ["https://data.delijn.be/stops/206786", "https://data.delijn.be/stops/208846"], ["https://data.delijn.be/stops/300589", "https://data.delijn.be/stops/300590"], ["https://data.delijn.be/stops/109169", "https://data.delijn.be/stops/109170"], ["https://data.delijn.be/stops/502820", "https://data.delijn.be/stops/507410"], ["https://data.delijn.be/stops/407964", "https://data.delijn.be/stops/407965"], ["https://data.delijn.be/stops/103722", "https://data.delijn.be/stops/108539"], ["https://data.delijn.be/stops/405363", "https://data.delijn.be/stops/405410"], ["https://data.delijn.be/stops/101060", "https://data.delijn.be/stops/109527"], ["https://data.delijn.be/stops/208604", "https://data.delijn.be/stops/307595"], ["https://data.delijn.be/stops/503339", "https://data.delijn.be/stops/508336"], ["https://data.delijn.be/stops/301334", "https://data.delijn.be/stops/307941"], ["https://data.delijn.be/stops/101167", "https://data.delijn.be/stops/102385"], ["https://data.delijn.be/stops/400755", "https://data.delijn.be/stops/409586"], ["https://data.delijn.be/stops/502346", "https://data.delijn.be/stops/507345"], ["https://data.delijn.be/stops/101152", "https://data.delijn.be/stops/106747"], ["https://data.delijn.be/stops/503781", "https://data.delijn.be/stops/503885"], ["https://data.delijn.be/stops/503086", "https://data.delijn.be/stops/508106"], ["https://data.delijn.be/stops/201892", "https://data.delijn.be/stops/203776"], ["https://data.delijn.be/stops/504432", "https://data.delijn.be/stops/509426"], ["https://data.delijn.be/stops/402095", "https://data.delijn.be/stops/402101"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/509559"], ["https://data.delijn.be/stops/305077", "https://data.delijn.be/stops/307295"], ["https://data.delijn.be/stops/307069", "https://data.delijn.be/stops/308739"], ["https://data.delijn.be/stops/404118", "https://data.delijn.be/stops/404241"], ["https://data.delijn.be/stops/208784", "https://data.delijn.be/stops/208785"], ["https://data.delijn.be/stops/108201", "https://data.delijn.be/stops/108204"], ["https://data.delijn.be/stops/502049", "https://data.delijn.be/stops/502648"], ["https://data.delijn.be/stops/206830", "https://data.delijn.be/stops/207564"], ["https://data.delijn.be/stops/303812", "https://data.delijn.be/stops/303816"], ["https://data.delijn.be/stops/400312", "https://data.delijn.be/stops/405133"], ["https://data.delijn.be/stops/301392", "https://data.delijn.be/stops/301393"], ["https://data.delijn.be/stops/300573", "https://data.delijn.be/stops/300584"], ["https://data.delijn.be/stops/401250", "https://data.delijn.be/stops/401251"], ["https://data.delijn.be/stops/303581", "https://data.delijn.be/stops/305893"], ["https://data.delijn.be/stops/303994", "https://data.delijn.be/stops/306294"], ["https://data.delijn.be/stops/204160", "https://data.delijn.be/stops/205580"], ["https://data.delijn.be/stops/301367", "https://data.delijn.be/stops/304812"], ["https://data.delijn.be/stops/406204", "https://data.delijn.be/stops/410353"], ["https://data.delijn.be/stops/202490", "https://data.delijn.be/stops/203490"], ["https://data.delijn.be/stops/503227", "https://data.delijn.be/stops/508227"], ["https://data.delijn.be/stops/402256", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/108947", "https://data.delijn.be/stops/108948"], ["https://data.delijn.be/stops/302454", "https://data.delijn.be/stops/304754"], ["https://data.delijn.be/stops/300500", "https://data.delijn.be/stops/300514"], ["https://data.delijn.be/stops/303851", "https://data.delijn.be/stops/303978"], ["https://data.delijn.be/stops/304591", "https://data.delijn.be/stops/304592"], ["https://data.delijn.be/stops/504145", "https://data.delijn.be/stops/504254"], ["https://data.delijn.be/stops/407995", "https://data.delijn.be/stops/408139"], ["https://data.delijn.be/stops/201203", "https://data.delijn.be/stops/201210"], ["https://data.delijn.be/stops/210039", "https://data.delijn.be/stops/211039"], ["https://data.delijn.be/stops/202049", "https://data.delijn.be/stops/202050"], ["https://data.delijn.be/stops/104519", "https://data.delijn.be/stops/303881"], ["https://data.delijn.be/stops/101799", "https://data.delijn.be/stops/108513"], ["https://data.delijn.be/stops/303317", "https://data.delijn.be/stops/303333"], ["https://data.delijn.be/stops/502293", "https://data.delijn.be/stops/502296"], ["https://data.delijn.be/stops/303529", "https://data.delijn.be/stops/303542"], ["https://data.delijn.be/stops/205043", "https://data.delijn.be/stops/205409"], ["https://data.delijn.be/stops/201137", "https://data.delijn.be/stops/201224"], ["https://data.delijn.be/stops/106799", "https://data.delijn.be/stops/106802"], ["https://data.delijn.be/stops/505549", "https://data.delijn.be/stops/509944"], ["https://data.delijn.be/stops/405902", "https://data.delijn.be/stops/405993"], ["https://data.delijn.be/stops/403123", "https://data.delijn.be/stops/403124"], ["https://data.delijn.be/stops/301116", "https://data.delijn.be/stops/302213"], ["https://data.delijn.be/stops/203975", "https://data.delijn.be/stops/206399"], ["https://data.delijn.be/stops/303950", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/503490", "https://data.delijn.be/stops/503903"], ["https://data.delijn.be/stops/103971", "https://data.delijn.be/stops/106157"], ["https://data.delijn.be/stops/101605", "https://data.delijn.be/stops/102054"], ["https://data.delijn.be/stops/403141", "https://data.delijn.be/stops/403385"], ["https://data.delijn.be/stops/504852", "https://data.delijn.be/stops/507254"], ["https://data.delijn.be/stops/202034", "https://data.delijn.be/stops/202035"], ["https://data.delijn.be/stops/300443", "https://data.delijn.be/stops/300444"], ["https://data.delijn.be/stops/408183", "https://data.delijn.be/stops/408184"], ["https://data.delijn.be/stops/501159", "https://data.delijn.be/stops/501777"], ["https://data.delijn.be/stops/301427", "https://data.delijn.be/stops/301432"], ["https://data.delijn.be/stops/503118", "https://data.delijn.be/stops/504996"], ["https://data.delijn.be/stops/107092", "https://data.delijn.be/stops/107096"], ["https://data.delijn.be/stops/206741", "https://data.delijn.be/stops/207604"], ["https://data.delijn.be/stops/502404", "https://data.delijn.be/stops/502581"], ["https://data.delijn.be/stops/101587", "https://data.delijn.be/stops/105449"], ["https://data.delijn.be/stops/205513", "https://data.delijn.be/stops/205514"], ["https://data.delijn.be/stops/503405", "https://data.delijn.be/stops/503406"], ["https://data.delijn.be/stops/403485", "https://data.delijn.be/stops/405634"], ["https://data.delijn.be/stops/108114", "https://data.delijn.be/stops/108149"], ["https://data.delijn.be/stops/300637", "https://data.delijn.be/stops/302463"], ["https://data.delijn.be/stops/405421", "https://data.delijn.be/stops/410018"], ["https://data.delijn.be/stops/306314", "https://data.delijn.be/stops/307194"], ["https://data.delijn.be/stops/203301", "https://data.delijn.be/stops/203303"], ["https://data.delijn.be/stops/405297", "https://data.delijn.be/stops/406835"], ["https://data.delijn.be/stops/401177", "https://data.delijn.be/stops/406569"], ["https://data.delijn.be/stops/504322", "https://data.delijn.be/stops/509317"], ["https://data.delijn.be/stops/101944", "https://data.delijn.be/stops/108787"], ["https://data.delijn.be/stops/107561", "https://data.delijn.be/stops/107563"], ["https://data.delijn.be/stops/402877", "https://data.delijn.be/stops/306307"], ["https://data.delijn.be/stops/405748", "https://data.delijn.be/stops/409421"], ["https://data.delijn.be/stops/302985", "https://data.delijn.be/stops/303124"], ["https://data.delijn.be/stops/302189", "https://data.delijn.be/stops/302193"], ["https://data.delijn.be/stops/303965", "https://data.delijn.be/stops/304081"], ["https://data.delijn.be/stops/301548", "https://data.delijn.be/stops/301559"], ["https://data.delijn.be/stops/202233", "https://data.delijn.be/stops/203233"], ["https://data.delijn.be/stops/305600", "https://data.delijn.be/stops/305608"], ["https://data.delijn.be/stops/101614", "https://data.delijn.be/stops/106574"], ["https://data.delijn.be/stops/204035", "https://data.delijn.be/stops/204036"], ["https://data.delijn.be/stops/207014", "https://data.delijn.be/stops/207016"], ["https://data.delijn.be/stops/406395", "https://data.delijn.be/stops/302828"], ["https://data.delijn.be/stops/404172", "https://data.delijn.be/stops/404173"], ["https://data.delijn.be/stops/404466", "https://data.delijn.be/stops/404507"], ["https://data.delijn.be/stops/404658", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/206179", "https://data.delijn.be/stops/207179"], ["https://data.delijn.be/stops/505639", "https://data.delijn.be/stops/505643"], ["https://data.delijn.be/stops/200803", "https://data.delijn.be/stops/202062"], ["https://data.delijn.be/stops/200387", "https://data.delijn.be/stops/200391"], ["https://data.delijn.be/stops/208527", "https://data.delijn.be/stops/209526"], ["https://data.delijn.be/stops/305066", "https://data.delijn.be/stops/308294"], ["https://data.delijn.be/stops/403304", "https://data.delijn.be/stops/403305"], ["https://data.delijn.be/stops/503277", "https://data.delijn.be/stops/504891"], ["https://data.delijn.be/stops/204138", "https://data.delijn.be/stops/204141"], ["https://data.delijn.be/stops/102702", "https://data.delijn.be/stops/105544"], ["https://data.delijn.be/stops/408341", "https://data.delijn.be/stops/408343"], ["https://data.delijn.be/stops/501500", "https://data.delijn.be/stops/506391"], ["https://data.delijn.be/stops/503439", "https://data.delijn.be/stops/508439"], ["https://data.delijn.be/stops/406085", "https://data.delijn.be/stops/407168"], ["https://data.delijn.be/stops/308169", "https://data.delijn.be/stops/308171"], ["https://data.delijn.be/stops/304262", "https://data.delijn.be/stops/304276"], ["https://data.delijn.be/stops/501592", "https://data.delijn.be/stops/505411"], ["https://data.delijn.be/stops/103758", "https://data.delijn.be/stops/104215"], ["https://data.delijn.be/stops/504415", "https://data.delijn.be/stops/509435"], ["https://data.delijn.be/stops/404313", "https://data.delijn.be/stops/404381"], ["https://data.delijn.be/stops/201939", "https://data.delijn.be/stops/202944"], ["https://data.delijn.be/stops/303771", "https://data.delijn.be/stops/303808"], ["https://data.delijn.be/stops/200595", "https://data.delijn.be/stops/201524"], ["https://data.delijn.be/stops/200112", "https://data.delijn.be/stops/201147"], ["https://data.delijn.be/stops/404305", "https://data.delijn.be/stops/404649"], ["https://data.delijn.be/stops/103223", "https://data.delijn.be/stops/107040"], ["https://data.delijn.be/stops/300896", "https://data.delijn.be/stops/303567"], ["https://data.delijn.be/stops/300897", "https://data.delijn.be/stops/300942"], ["https://data.delijn.be/stops/400710", "https://data.delijn.be/stops/404382"], ["https://data.delijn.be/stops/506301", "https://data.delijn.be/stops/506318"], ["https://data.delijn.be/stops/208742", "https://data.delijn.be/stops/503678"], ["https://data.delijn.be/stops/204420", "https://data.delijn.be/stops/205765"], ["https://data.delijn.be/stops/503155", "https://data.delijn.be/stops/508376"], ["https://data.delijn.be/stops/406192", "https://data.delijn.be/stops/406193"], ["https://data.delijn.be/stops/505169", "https://data.delijn.be/stops/509337"], ["https://data.delijn.be/stops/101004", "https://data.delijn.be/stops/104882"], ["https://data.delijn.be/stops/403812", "https://data.delijn.be/stops/403875"], ["https://data.delijn.be/stops/304077", "https://data.delijn.be/stops/307816"], ["https://data.delijn.be/stops/202861", "https://data.delijn.be/stops/203860"], ["https://data.delijn.be/stops/101512", "https://data.delijn.be/stops/300110"], ["https://data.delijn.be/stops/400379", "https://data.delijn.be/stops/406774"], ["https://data.delijn.be/stops/304996", "https://data.delijn.be/stops/305029"], ["https://data.delijn.be/stops/404519", "https://data.delijn.be/stops/410396"], ["https://data.delijn.be/stops/401585", "https://data.delijn.be/stops/401741"], ["https://data.delijn.be/stops/211050", "https://data.delijn.be/stops/211092"], ["https://data.delijn.be/stops/102914", "https://data.delijn.be/stops/102917"], ["https://data.delijn.be/stops/200763", "https://data.delijn.be/stops/209302"], ["https://data.delijn.be/stops/301473", "https://data.delijn.be/stops/308937"], ["https://data.delijn.be/stops/205247", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/503176", "https://data.delijn.be/stops/508239"], ["https://data.delijn.be/stops/103756", "https://data.delijn.be/stops/104220"], ["https://data.delijn.be/stops/303448", "https://data.delijn.be/stops/307063"], ["https://data.delijn.be/stops/301241", "https://data.delijn.be/stops/307907"], ["https://data.delijn.be/stops/104838", "https://data.delijn.be/stops/104952"], ["https://data.delijn.be/stops/409279", "https://data.delijn.be/stops/409288"], ["https://data.delijn.be/stops/201703", "https://data.delijn.be/stops/202610"], ["https://data.delijn.be/stops/402002", "https://data.delijn.be/stops/406048"], ["https://data.delijn.be/stops/105055", "https://data.delijn.be/stops/108040"], ["https://data.delijn.be/stops/302190", "https://data.delijn.be/stops/305458"], ["https://data.delijn.be/stops/102720", "https://data.delijn.be/stops/103710"], ["https://data.delijn.be/stops/200698", "https://data.delijn.be/stops/203784"], ["https://data.delijn.be/stops/302675", "https://data.delijn.be/stops/303612"], ["https://data.delijn.be/stops/504398", "https://data.delijn.be/stops/509398"], ["https://data.delijn.be/stops/200465", "https://data.delijn.be/stops/201461"], ["https://data.delijn.be/stops/102045", "https://data.delijn.be/stops/108025"], ["https://data.delijn.be/stops/409082", "https://data.delijn.be/stops/409100"], ["https://data.delijn.be/stops/101224", "https://data.delijn.be/stops/108518"], ["https://data.delijn.be/stops/501444", "https://data.delijn.be/stops/506441"], ["https://data.delijn.be/stops/301063", "https://data.delijn.be/stops/301304"], ["https://data.delijn.be/stops/401817", "https://data.delijn.be/stops/406073"], ["https://data.delijn.be/stops/301870", "https://data.delijn.be/stops/304330"], ["https://data.delijn.be/stops/402587", "https://data.delijn.be/stops/408172"], ["https://data.delijn.be/stops/206536", "https://data.delijn.be/stops/207536"], ["https://data.delijn.be/stops/109844", "https://data.delijn.be/stops/109846"], ["https://data.delijn.be/stops/301309", "https://data.delijn.be/stops/306118"], ["https://data.delijn.be/stops/206122", "https://data.delijn.be/stops/207471"], ["https://data.delijn.be/stops/107045", "https://data.delijn.be/stops/108405"], ["https://data.delijn.be/stops/106446", "https://data.delijn.be/stops/106451"], ["https://data.delijn.be/stops/407663", "https://data.delijn.be/stops/409807"], ["https://data.delijn.be/stops/205036", "https://data.delijn.be/stops/205818"], ["https://data.delijn.be/stops/101357", "https://data.delijn.be/stops/102189"], ["https://data.delijn.be/stops/502296", "https://data.delijn.be/stops/507293"], ["https://data.delijn.be/stops/108785", "https://data.delijn.be/stops/109121"], ["https://data.delijn.be/stops/407051", "https://data.delijn.be/stops/407077"], ["https://data.delijn.be/stops/402973", "https://data.delijn.be/stops/402979"], ["https://data.delijn.be/stops/509081", "https://data.delijn.be/stops/509082"], ["https://data.delijn.be/stops/301669", "https://data.delijn.be/stops/301670"], ["https://data.delijn.be/stops/109123", "https://data.delijn.be/stops/109124"], ["https://data.delijn.be/stops/405512", "https://data.delijn.be/stops/405521"], ["https://data.delijn.be/stops/202046", "https://data.delijn.be/stops/203045"], ["https://data.delijn.be/stops/407173", "https://data.delijn.be/stops/408729"], ["https://data.delijn.be/stops/404486", "https://data.delijn.be/stops/404573"], ["https://data.delijn.be/stops/502163", "https://data.delijn.be/stops/502438"], ["https://data.delijn.be/stops/404561", "https://data.delijn.be/stops/404562"], ["https://data.delijn.be/stops/405838", "https://data.delijn.be/stops/409757"], ["https://data.delijn.be/stops/505344", "https://data.delijn.be/stops/505658"], ["https://data.delijn.be/stops/406550", "https://data.delijn.be/stops/406551"], ["https://data.delijn.be/stops/108371", "https://data.delijn.be/stops/108372"], ["https://data.delijn.be/stops/402709", "https://data.delijn.be/stops/402947"], ["https://data.delijn.be/stops/305651", "https://data.delijn.be/stops/308937"], ["https://data.delijn.be/stops/403008", "https://data.delijn.be/stops/403441"], ["https://data.delijn.be/stops/404836", "https://data.delijn.be/stops/406991"], ["https://data.delijn.be/stops/104649", "https://data.delijn.be/stops/108032"], ["https://data.delijn.be/stops/502740", "https://data.delijn.be/stops/507619"], ["https://data.delijn.be/stops/200290", "https://data.delijn.be/stops/211004"], ["https://data.delijn.be/stops/307596", "https://data.delijn.be/stops/307741"], ["https://data.delijn.be/stops/502525", "https://data.delijn.be/stops/507525"], ["https://data.delijn.be/stops/409788", "https://data.delijn.be/stops/409793"], ["https://data.delijn.be/stops/407724", "https://data.delijn.be/stops/407725"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/510012"], ["https://data.delijn.be/stops/200095", "https://data.delijn.be/stops/203131"], ["https://data.delijn.be/stops/400721", "https://data.delijn.be/stops/401466"], ["https://data.delijn.be/stops/101801", "https://data.delijn.be/stops/101955"], ["https://data.delijn.be/stops/207232", "https://data.delijn.be/stops/207233"], ["https://data.delijn.be/stops/206915", "https://data.delijn.be/stops/207299"], ["https://data.delijn.be/stops/500025", "https://data.delijn.be/stops/507467"], ["https://data.delijn.be/stops/404715", "https://data.delijn.be/stops/404768"], ["https://data.delijn.be/stops/206544", "https://data.delijn.be/stops/207543"], ["https://data.delijn.be/stops/400023", "https://data.delijn.be/stops/406497"], ["https://data.delijn.be/stops/404301", "https://data.delijn.be/stops/409572"], ["https://data.delijn.be/stops/104971", "https://data.delijn.be/stops/105299"], ["https://data.delijn.be/stops/200910", "https://data.delijn.be/stops/200952"], ["https://data.delijn.be/stops/202821", "https://data.delijn.be/stops/203913"], ["https://data.delijn.be/stops/405479", "https://data.delijn.be/stops/409290"], ["https://data.delijn.be/stops/105717", "https://data.delijn.be/stops/105719"], ["https://data.delijn.be/stops/404594", "https://data.delijn.be/stops/404596"], ["https://data.delijn.be/stops/400565", "https://data.delijn.be/stops/400568"], ["https://data.delijn.be/stops/501450", "https://data.delijn.be/stops/506450"], ["https://data.delijn.be/stops/106770", "https://data.delijn.be/stops/107521"], ["https://data.delijn.be/stops/504777", "https://data.delijn.be/stops/508528"], ["https://data.delijn.be/stops/502474", "https://data.delijn.be/stops/507474"], ["https://data.delijn.be/stops/405740", "https://data.delijn.be/stops/405741"], ["https://data.delijn.be/stops/504598", "https://data.delijn.be/stops/504604"], ["https://data.delijn.be/stops/504402", "https://data.delijn.be/stops/505163"], ["https://data.delijn.be/stops/403199", "https://data.delijn.be/stops/405359"], ["https://data.delijn.be/stops/301130", "https://data.delijn.be/stops/302875"], ["https://data.delijn.be/stops/204095", "https://data.delijn.be/stops/205471"], ["https://data.delijn.be/stops/505660", "https://data.delijn.be/stops/508958"], ["https://data.delijn.be/stops/507209", "https://data.delijn.be/stops/507214"], ["https://data.delijn.be/stops/102186", "https://data.delijn.be/stops/102196"], ["https://data.delijn.be/stops/103259", "https://data.delijn.be/stops/105854"], ["https://data.delijn.be/stops/101463", "https://data.delijn.be/stops/109282"], ["https://data.delijn.be/stops/400552", "https://data.delijn.be/stops/400553"], ["https://data.delijn.be/stops/207168", "https://data.delijn.be/stops/207169"], ["https://data.delijn.be/stops/106624", "https://data.delijn.be/stops/108016"], ["https://data.delijn.be/stops/105022", "https://data.delijn.be/stops/107292"], ["https://data.delijn.be/stops/401121", "https://data.delijn.be/stops/401154"], ["https://data.delijn.be/stops/301191", "https://data.delijn.be/stops/301198"], ["https://data.delijn.be/stops/107499", "https://data.delijn.be/stops/107529"], ["https://data.delijn.be/stops/510026", "https://data.delijn.be/stops/510028"], ["https://data.delijn.be/stops/207640", "https://data.delijn.be/stops/207859"], ["https://data.delijn.be/stops/404417", "https://data.delijn.be/stops/404448"], ["https://data.delijn.be/stops/101750", "https://data.delijn.be/stops/104882"], ["https://data.delijn.be/stops/300323", "https://data.delijn.be/stops/307647"], ["https://data.delijn.be/stops/300238", "https://data.delijn.be/stops/300247"], ["https://data.delijn.be/stops/101938", "https://data.delijn.be/stops/109341"], ["https://data.delijn.be/stops/301490", "https://data.delijn.be/stops/301493"], ["https://data.delijn.be/stops/206556", "https://data.delijn.be/stops/207528"], ["https://data.delijn.be/stops/208175", "https://data.delijn.be/stops/208176"], ["https://data.delijn.be/stops/300085", "https://data.delijn.be/stops/300108"], ["https://data.delijn.be/stops/101332", "https://data.delijn.be/stops/106645"], ["https://data.delijn.be/stops/501031", "https://data.delijn.be/stops/506023"], ["https://data.delijn.be/stops/303819", "https://data.delijn.be/stops/303823"], ["https://data.delijn.be/stops/200164", "https://data.delijn.be/stops/209730"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/506343"], ["https://data.delijn.be/stops/101451", "https://data.delijn.be/stops/101452"], ["https://data.delijn.be/stops/406361", "https://data.delijn.be/stops/409203"], ["https://data.delijn.be/stops/302441", "https://data.delijn.be/stops/308095"], ["https://data.delijn.be/stops/400879", "https://data.delijn.be/stops/410112"], ["https://data.delijn.be/stops/200724", "https://data.delijn.be/stops/202437"], ["https://data.delijn.be/stops/205247", "https://data.delijn.be/stops/205752"], ["https://data.delijn.be/stops/302302", "https://data.delijn.be/stops/302342"], ["https://data.delijn.be/stops/300978", "https://data.delijn.be/stops/300997"], ["https://data.delijn.be/stops/106661", "https://data.delijn.be/stops/107186"], ["https://data.delijn.be/stops/203344", "https://data.delijn.be/stops/207551"], ["https://data.delijn.be/stops/403207", "https://data.delijn.be/stops/403225"], ["https://data.delijn.be/stops/407351", "https://data.delijn.be/stops/409434"], ["https://data.delijn.be/stops/503586", "https://data.delijn.be/stops/504884"], ["https://data.delijn.be/stops/504425", "https://data.delijn.be/stops/509425"], ["https://data.delijn.be/stops/403163", "https://data.delijn.be/stops/403454"], ["https://data.delijn.be/stops/401258", "https://data.delijn.be/stops/401280"], ["https://data.delijn.be/stops/304640", "https://data.delijn.be/stops/304665"], ["https://data.delijn.be/stops/106454", "https://data.delijn.be/stops/106456"], ["https://data.delijn.be/stops/401397", "https://data.delijn.be/stops/304535"], ["https://data.delijn.be/stops/505681", "https://data.delijn.be/stops/507065"], ["https://data.delijn.be/stops/303588", "https://data.delijn.be/stops/305222"], ["https://data.delijn.be/stops/302070", "https://data.delijn.be/stops/302073"], ["https://data.delijn.be/stops/502267", "https://data.delijn.be/stops/507921"], ["https://data.delijn.be/stops/101131", "https://data.delijn.be/stops/101132"], ["https://data.delijn.be/stops/207117", "https://data.delijn.be/stops/207118"], ["https://data.delijn.be/stops/503637", "https://data.delijn.be/stops/503792"], ["https://data.delijn.be/stops/204031", "https://data.delijn.be/stops/204032"], ["https://data.delijn.be/stops/305251", "https://data.delijn.be/stops/305284"], ["https://data.delijn.be/stops/307167", "https://data.delijn.be/stops/307195"], ["https://data.delijn.be/stops/509387", "https://data.delijn.be/stops/509388"], ["https://data.delijn.be/stops/208569", "https://data.delijn.be/stops/209552"], ["https://data.delijn.be/stops/405815", "https://data.delijn.be/stops/409426"], ["https://data.delijn.be/stops/104551", "https://data.delijn.be/stops/104552"], ["https://data.delijn.be/stops/305394", "https://data.delijn.be/stops/305399"], ["https://data.delijn.be/stops/410003", "https://data.delijn.be/stops/410004"], ["https://data.delijn.be/stops/302380", "https://data.delijn.be/stops/302384"], ["https://data.delijn.be/stops/206975", "https://data.delijn.be/stops/207975"], ["https://data.delijn.be/stops/207100", "https://data.delijn.be/stops/207911"], ["https://data.delijn.be/stops/101424", "https://data.delijn.be/stops/106976"], ["https://data.delijn.be/stops/105423", "https://data.delijn.be/stops/109978"], ["https://data.delijn.be/stops/109795", "https://data.delijn.be/stops/109796"], ["https://data.delijn.be/stops/104816", "https://data.delijn.be/stops/105369"], ["https://data.delijn.be/stops/407972", "https://data.delijn.be/stops/303889"], ["https://data.delijn.be/stops/503027", "https://data.delijn.be/stops/508023"], ["https://data.delijn.be/stops/201949", "https://data.delijn.be/stops/203943"], ["https://data.delijn.be/stops/208183", "https://data.delijn.be/stops/218019"], ["https://data.delijn.be/stops/404218", "https://data.delijn.be/stops/404239"], ["https://data.delijn.be/stops/300654", "https://data.delijn.be/stops/302462"], ["https://data.delijn.be/stops/102055", "https://data.delijn.be/stops/102060"], ["https://data.delijn.be/stops/204980", "https://data.delijn.be/stops/207967"], ["https://data.delijn.be/stops/503741", "https://data.delijn.be/stops/504969"], ["https://data.delijn.be/stops/301392", "https://data.delijn.be/stops/306138"], ["https://data.delijn.be/stops/102827", "https://data.delijn.be/stops/106682"], ["https://data.delijn.be/stops/201467", "https://data.delijn.be/stops/202212"], ["https://data.delijn.be/stops/208305", "https://data.delijn.be/stops/209305"], ["https://data.delijn.be/stops/304191", "https://data.delijn.be/stops/305494"], ["https://data.delijn.be/stops/407806", "https://data.delijn.be/stops/407807"], ["https://data.delijn.be/stops/301524", "https://data.delijn.be/stops/301525"], ["https://data.delijn.be/stops/208416", "https://data.delijn.be/stops/208417"], ["https://data.delijn.be/stops/102289", "https://data.delijn.be/stops/109632"], ["https://data.delijn.be/stops/504991", "https://data.delijn.be/stops/507957"], ["https://data.delijn.be/stops/206418", "https://data.delijn.be/stops/207660"], ["https://data.delijn.be/stops/101903", "https://data.delijn.be/stops/105465"], ["https://data.delijn.be/stops/405628", "https://data.delijn.be/stops/407471"], ["https://data.delijn.be/stops/301568", "https://data.delijn.be/stops/308081"], ["https://data.delijn.be/stops/305017", "https://data.delijn.be/stops/308033"], ["https://data.delijn.be/stops/102651", "https://data.delijn.be/stops/104578"], ["https://data.delijn.be/stops/206548", "https://data.delijn.be/stops/207534"], ["https://data.delijn.be/stops/503100", "https://data.delijn.be/stops/508393"], ["https://data.delijn.be/stops/401220", "https://data.delijn.be/stops/401260"], ["https://data.delijn.be/stops/204069", "https://data.delijn.be/stops/205385"], ["https://data.delijn.be/stops/404809", "https://data.delijn.be/stops/406094"], ["https://data.delijn.be/stops/102714", "https://data.delijn.be/stops/108495"], ["https://data.delijn.be/stops/401671", "https://data.delijn.be/stops/307626"], ["https://data.delijn.be/stops/402756", "https://data.delijn.be/stops/405684"], ["https://data.delijn.be/stops/400325", "https://data.delijn.be/stops/400439"], ["https://data.delijn.be/stops/103132", "https://data.delijn.be/stops/103133"], ["https://data.delijn.be/stops/102668", "https://data.delijn.be/stops/305995"], ["https://data.delijn.be/stops/504404", "https://data.delijn.be/stops/504435"], ["https://data.delijn.be/stops/300481", "https://data.delijn.be/stops/300485"], ["https://data.delijn.be/stops/203810", "https://data.delijn.be/stops/208273"], ["https://data.delijn.be/stops/407911", "https://data.delijn.be/stops/408016"], ["https://data.delijn.be/stops/107549", "https://data.delijn.be/stops/107551"], ["https://data.delijn.be/stops/406739", "https://data.delijn.be/stops/407496"], ["https://data.delijn.be/stops/303189", "https://data.delijn.be/stops/303197"], ["https://data.delijn.be/stops/402578", "https://data.delijn.be/stops/402652"], ["https://data.delijn.be/stops/204038", "https://data.delijn.be/stops/205038"], ["https://data.delijn.be/stops/206914", "https://data.delijn.be/stops/207322"], ["https://data.delijn.be/stops/500008", "https://data.delijn.be/stops/507167"], ["https://data.delijn.be/stops/400418", "https://data.delijn.be/stops/407929"], ["https://data.delijn.be/stops/301439", "https://data.delijn.be/stops/307798"], ["https://data.delijn.be/stops/500116", "https://data.delijn.be/stops/502273"], ["https://data.delijn.be/stops/206400", "https://data.delijn.be/stops/206401"], ["https://data.delijn.be/stops/208588", "https://data.delijn.be/stops/208589"], ["https://data.delijn.be/stops/407656", "https://data.delijn.be/stops/407657"], ["https://data.delijn.be/stops/105668", "https://data.delijn.be/stops/105676"], ["https://data.delijn.be/stops/402772", "https://data.delijn.be/stops/402773"], ["https://data.delijn.be/stops/401163", "https://data.delijn.be/stops/408111"], ["https://data.delijn.be/stops/103241", "https://data.delijn.be/stops/107291"], ["https://data.delijn.be/stops/404958", "https://data.delijn.be/stops/404959"], ["https://data.delijn.be/stops/401783", "https://data.delijn.be/stops/401811"], ["https://data.delijn.be/stops/202129", "https://data.delijn.be/stops/202588"], ["https://data.delijn.be/stops/107041", "https://data.delijn.be/stops/108243"], ["https://data.delijn.be/stops/306880", "https://data.delijn.be/stops/307101"], ["https://data.delijn.be/stops/405019", "https://data.delijn.be/stops/405100"], ["https://data.delijn.be/stops/301986", "https://data.delijn.be/stops/307167"], ["https://data.delijn.be/stops/206314", "https://data.delijn.be/stops/207816"], ["https://data.delijn.be/stops/303047", "https://data.delijn.be/stops/305438"], ["https://data.delijn.be/stops/303800", "https://data.delijn.be/stops/308900"], ["https://data.delijn.be/stops/207103", "https://data.delijn.be/stops/207843"], ["https://data.delijn.be/stops/302647", "https://data.delijn.be/stops/302651"], ["https://data.delijn.be/stops/200640", "https://data.delijn.be/stops/201628"], ["https://data.delijn.be/stops/105887", "https://data.delijn.be/stops/105889"], ["https://data.delijn.be/stops/202094", "https://data.delijn.be/stops/202096"], ["https://data.delijn.be/stops/302370", "https://data.delijn.be/stops/306184"], ["https://data.delijn.be/stops/301640", "https://data.delijn.be/stops/307752"], ["https://data.delijn.be/stops/209014", "https://data.delijn.be/stops/209015"], ["https://data.delijn.be/stops/408956", "https://data.delijn.be/stops/408983"], ["https://data.delijn.be/stops/105759", "https://data.delijn.be/stops/109808"], ["https://data.delijn.be/stops/501070", "https://data.delijn.be/stops/501376"], ["https://data.delijn.be/stops/103604", "https://data.delijn.be/stops/109400"], ["https://data.delijn.be/stops/205258", "https://data.delijn.be/stops/205259"], ["https://data.delijn.be/stops/401196", "https://data.delijn.be/stops/410124"], ["https://data.delijn.be/stops/304555", "https://data.delijn.be/stops/307587"], ["https://data.delijn.be/stops/400411", "https://data.delijn.be/stops/400412"], ["https://data.delijn.be/stops/503680", "https://data.delijn.be/stops/509815"], ["https://data.delijn.be/stops/404596", "https://data.delijn.be/stops/404604"], ["https://data.delijn.be/stops/303080", "https://data.delijn.be/stops/303084"], ["https://data.delijn.be/stops/305652", "https://data.delijn.be/stops/305653"], ["https://data.delijn.be/stops/502429", "https://data.delijn.be/stops/502432"], ["https://data.delijn.be/stops/109014", "https://data.delijn.be/stops/109016"], ["https://data.delijn.be/stops/502127", "https://data.delijn.be/stops/502142"], ["https://data.delijn.be/stops/403613", "https://data.delijn.be/stops/403649"], ["https://data.delijn.be/stops/408481", "https://data.delijn.be/stops/409760"], ["https://data.delijn.be/stops/201694", "https://data.delijn.be/stops/202086"], ["https://data.delijn.be/stops/307351", "https://data.delijn.be/stops/307439"], ["https://data.delijn.be/stops/300770", "https://data.delijn.be/stops/307142"], ["https://data.delijn.be/stops/503323", "https://data.delijn.be/stops/508296"], ["https://data.delijn.be/stops/401425", "https://data.delijn.be/stops/401574"], ["https://data.delijn.be/stops/502435", "https://data.delijn.be/stops/507417"], ["https://data.delijn.be/stops/101060", "https://data.delijn.be/stops/106752"], ["https://data.delijn.be/stops/408950", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/503298", "https://data.delijn.be/stops/508304"], ["https://data.delijn.be/stops/104696", "https://data.delijn.be/stops/107351"], ["https://data.delijn.be/stops/102018", "https://data.delijn.be/stops/104092"], ["https://data.delijn.be/stops/106205", "https://data.delijn.be/stops/106213"], ["https://data.delijn.be/stops/203471", "https://data.delijn.be/stops/209852"], ["https://data.delijn.be/stops/202048", "https://data.delijn.be/stops/203436"], ["https://data.delijn.be/stops/105170", "https://data.delijn.be/stops/107130"], ["https://data.delijn.be/stops/107618", "https://data.delijn.be/stops/108689"], ["https://data.delijn.be/stops/508297", "https://data.delijn.be/stops/509926"], ["https://data.delijn.be/stops/202143", "https://data.delijn.be/stops/203143"], ["https://data.delijn.be/stops/505901", "https://data.delijn.be/stops/508123"], ["https://data.delijn.be/stops/103124", "https://data.delijn.be/stops/107429"], ["https://data.delijn.be/stops/303661", "https://data.delijn.be/stops/303662"], ["https://data.delijn.be/stops/405083", "https://data.delijn.be/stops/405093"], ["https://data.delijn.be/stops/105593", "https://data.delijn.be/stops/109737"], ["https://data.delijn.be/stops/200929", "https://data.delijn.be/stops/201122"], ["https://data.delijn.be/stops/409162", "https://data.delijn.be/stops/409163"], ["https://data.delijn.be/stops/107614", "https://data.delijn.be/stops/109218"], ["https://data.delijn.be/stops/101394", "https://data.delijn.be/stops/106515"], ["https://data.delijn.be/stops/407867", "https://data.delijn.be/stops/408188"], ["https://data.delijn.be/stops/402085", "https://data.delijn.be/stops/402087"], ["https://data.delijn.be/stops/504593", "https://data.delijn.be/stops/505928"], ["https://data.delijn.be/stops/405228", "https://data.delijn.be/stops/405287"], ["https://data.delijn.be/stops/209152", "https://data.delijn.be/stops/209153"], ["https://data.delijn.be/stops/400838", "https://data.delijn.be/stops/409567"], ["https://data.delijn.be/stops/505635", "https://data.delijn.be/stops/509807"], ["https://data.delijn.be/stops/107032", "https://data.delijn.be/stops/107034"], ["https://data.delijn.be/stops/201918", "https://data.delijn.be/stops/207566"], ["https://data.delijn.be/stops/304494", "https://data.delijn.be/stops/304508"], ["https://data.delijn.be/stops/304581", "https://data.delijn.be/stops/304582"], ["https://data.delijn.be/stops/208158", "https://data.delijn.be/stops/209158"], ["https://data.delijn.be/stops/503422", "https://data.delijn.be/stops/509939"], ["https://data.delijn.be/stops/401778", "https://data.delijn.be/stops/406144"], ["https://data.delijn.be/stops/405646", "https://data.delijn.be/stops/408642"], ["https://data.delijn.be/stops/101503", "https://data.delijn.be/stops/101977"], ["https://data.delijn.be/stops/405696", "https://data.delijn.be/stops/405698"], ["https://data.delijn.be/stops/204387", "https://data.delijn.be/stops/205388"], ["https://data.delijn.be/stops/101009", "https://data.delijn.be/stops/108420"], ["https://data.delijn.be/stops/106401", "https://data.delijn.be/stops/107406"], ["https://data.delijn.be/stops/206555", "https://data.delijn.be/stops/216006"], ["https://data.delijn.be/stops/305100", "https://data.delijn.be/stops/305140"], ["https://data.delijn.be/stops/302507", "https://data.delijn.be/stops/302513"], ["https://data.delijn.be/stops/400776", "https://data.delijn.be/stops/401280"], ["https://data.delijn.be/stops/303474", "https://data.delijn.be/stops/307932"], ["https://data.delijn.be/stops/102058", "https://data.delijn.be/stops/106862"], ["https://data.delijn.be/stops/109507", "https://data.delijn.be/stops/109509"], ["https://data.delijn.be/stops/409034", "https://data.delijn.be/stops/409039"], ["https://data.delijn.be/stops/104673", "https://data.delijn.be/stops/107377"], ["https://data.delijn.be/stops/501592", "https://data.delijn.be/stops/509497"], ["https://data.delijn.be/stops/504043", "https://data.delijn.be/stops/509043"], ["https://data.delijn.be/stops/101022", "https://data.delijn.be/stops/106030"], ["https://data.delijn.be/stops/502225", "https://data.delijn.be/stops/507235"], ["https://data.delijn.be/stops/201001", "https://data.delijn.be/stops/201910"], ["https://data.delijn.be/stops/403932", "https://data.delijn.be/stops/404030"], ["https://data.delijn.be/stops/101891", "https://data.delijn.be/stops/104959"], ["https://data.delijn.be/stops/209526", "https://data.delijn.be/stops/209527"], ["https://data.delijn.be/stops/209647", "https://data.delijn.be/stops/210111"], ["https://data.delijn.be/stops/105541", "https://data.delijn.be/stops/105542"], ["https://data.delijn.be/stops/505568", "https://data.delijn.be/stops/508637"], ["https://data.delijn.be/stops/307271", "https://data.delijn.be/stops/308409"], ["https://data.delijn.be/stops/301778", "https://data.delijn.be/stops/301788"], ["https://data.delijn.be/stops/504374", "https://data.delijn.be/stops/509585"], ["https://data.delijn.be/stops/102913", "https://data.delijn.be/stops/106335"], ["https://data.delijn.be/stops/105885", "https://data.delijn.be/stops/108090"], ["https://data.delijn.be/stops/300725", "https://data.delijn.be/stops/300735"], ["https://data.delijn.be/stops/300435", "https://data.delijn.be/stops/306043"], ["https://data.delijn.be/stops/104960", "https://data.delijn.be/stops/104965"], ["https://data.delijn.be/stops/302382", "https://data.delijn.be/stops/307965"], ["https://data.delijn.be/stops/401200", "https://data.delijn.be/stops/401360"], ["https://data.delijn.be/stops/408679", "https://data.delijn.be/stops/408681"], ["https://data.delijn.be/stops/101640", "https://data.delijn.be/stops/102837"], ["https://data.delijn.be/stops/104100", "https://data.delijn.be/stops/104111"], ["https://data.delijn.be/stops/506230", "https://data.delijn.be/stops/506403"], ["https://data.delijn.be/stops/501246", "https://data.delijn.be/stops/506246"], ["https://data.delijn.be/stops/101470", "https://data.delijn.be/stops/108764"], ["https://data.delijn.be/stops/300342", "https://data.delijn.be/stops/304714"], ["https://data.delijn.be/stops/503490", "https://data.delijn.be/stops/508490"], ["https://data.delijn.be/stops/102602", "https://data.delijn.be/stops/107866"], ["https://data.delijn.be/stops/101452", "https://data.delijn.be/stops/102629"], ["https://data.delijn.be/stops/209046", "https://data.delijn.be/stops/209561"], ["https://data.delijn.be/stops/408272", "https://data.delijn.be/stops/408388"], ["https://data.delijn.be/stops/301925", "https://data.delijn.be/stops/301926"], ["https://data.delijn.be/stops/102844", "https://data.delijn.be/stops/107900"], ["https://data.delijn.be/stops/403328", "https://data.delijn.be/stops/407040"], ["https://data.delijn.be/stops/505380", "https://data.delijn.be/stops/505381"], ["https://data.delijn.be/stops/202562", "https://data.delijn.be/stops/203562"], ["https://data.delijn.be/stops/101416", "https://data.delijn.be/stops/102068"], ["https://data.delijn.be/stops/104586", "https://data.delijn.be/stops/104858"], ["https://data.delijn.be/stops/105290", "https://data.delijn.be/stops/105291"], ["https://data.delijn.be/stops/405803", "https://data.delijn.be/stops/406995"], ["https://data.delijn.be/stops/407022", "https://data.delijn.be/stops/407034"], ["https://data.delijn.be/stops/305831", "https://data.delijn.be/stops/305832"], ["https://data.delijn.be/stops/403302", "https://data.delijn.be/stops/405637"], ["https://data.delijn.be/stops/502313", "https://data.delijn.be/stops/505681"], ["https://data.delijn.be/stops/404956", "https://data.delijn.be/stops/409075"], ["https://data.delijn.be/stops/200511", "https://data.delijn.be/stops/202358"], ["https://data.delijn.be/stops/501642", "https://data.delijn.be/stops/501658"], ["https://data.delijn.be/stops/206798", "https://data.delijn.be/stops/208532"], ["https://data.delijn.be/stops/206321", "https://data.delijn.be/stops/206991"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/402549"], ["https://data.delijn.be/stops/503504", "https://data.delijn.be/stops/508602"], ["https://data.delijn.be/stops/300358", "https://data.delijn.be/stops/307690"], ["https://data.delijn.be/stops/501698", "https://data.delijn.be/stops/506408"], ["https://data.delijn.be/stops/400541", "https://data.delijn.be/stops/404281"], ["https://data.delijn.be/stops/303892", "https://data.delijn.be/stops/305578"], ["https://data.delijn.be/stops/207168", "https://data.delijn.be/stops/303842"], ["https://data.delijn.be/stops/501005", "https://data.delijn.be/stops/506221"], ["https://data.delijn.be/stops/200703", "https://data.delijn.be/stops/200733"], ["https://data.delijn.be/stops/303551", "https://data.delijn.be/stops/306093"], ["https://data.delijn.be/stops/303288", "https://data.delijn.be/stops/308738"], ["https://data.delijn.be/stops/308776", "https://data.delijn.be/stops/308778"], ["https://data.delijn.be/stops/204698", "https://data.delijn.be/stops/205697"], ["https://data.delijn.be/stops/502628", "https://data.delijn.be/stops/507108"], ["https://data.delijn.be/stops/504083", "https://data.delijn.be/stops/509610"], ["https://data.delijn.be/stops/202209", "https://data.delijn.be/stops/202771"], ["https://data.delijn.be/stops/407664", "https://data.delijn.be/stops/407677"], ["https://data.delijn.be/stops/400785", "https://data.delijn.be/stops/400834"], ["https://data.delijn.be/stops/404710", "https://data.delijn.be/stops/404754"], ["https://data.delijn.be/stops/106630", "https://data.delijn.be/stops/107157"], ["https://data.delijn.be/stops/207766", "https://data.delijn.be/stops/209405"], ["https://data.delijn.be/stops/204983", "https://data.delijn.be/stops/207210"], ["https://data.delijn.be/stops/203626", "https://data.delijn.be/stops/203627"], ["https://data.delijn.be/stops/202857", "https://data.delijn.be/stops/203858"], ["https://data.delijn.be/stops/304938", "https://data.delijn.be/stops/304948"], ["https://data.delijn.be/stops/208026", "https://data.delijn.be/stops/208037"], ["https://data.delijn.be/stops/407403", "https://data.delijn.be/stops/409494"], ["https://data.delijn.be/stops/109002", "https://data.delijn.be/stops/402019"], ["https://data.delijn.be/stops/403373", "https://data.delijn.be/stops/403513"], ["https://data.delijn.be/stops/502258", "https://data.delijn.be/stops/502920"], ["https://data.delijn.be/stops/204477", "https://data.delijn.be/stops/205479"], ["https://data.delijn.be/stops/208451", "https://data.delijn.be/stops/218016"], ["https://data.delijn.be/stops/206328", "https://data.delijn.be/stops/207329"], ["https://data.delijn.be/stops/108573", "https://data.delijn.be/stops/108988"], ["https://data.delijn.be/stops/207957", "https://data.delijn.be/stops/303858"], ["https://data.delijn.be/stops/404306", "https://data.delijn.be/stops/404312"], ["https://data.delijn.be/stops/301641", "https://data.delijn.be/stops/302119"], ["https://data.delijn.be/stops/300297", "https://data.delijn.be/stops/301901"], ["https://data.delijn.be/stops/305261", "https://data.delijn.be/stops/305272"], ["https://data.delijn.be/stops/501665", "https://data.delijn.be/stops/506665"], ["https://data.delijn.be/stops/206347", "https://data.delijn.be/stops/207221"], ["https://data.delijn.be/stops/200478", "https://data.delijn.be/stops/200797"], ["https://data.delijn.be/stops/205171", "https://data.delijn.be/stops/205771"], ["https://data.delijn.be/stops/301951", "https://data.delijn.be/stops/301952"], ["https://data.delijn.be/stops/206374", "https://data.delijn.be/stops/207349"], ["https://data.delijn.be/stops/407923", "https://data.delijn.be/stops/408263"], ["https://data.delijn.be/stops/208002", "https://data.delijn.be/stops/208099"], ["https://data.delijn.be/stops/107649", "https://data.delijn.be/stops/107760"], ["https://data.delijn.be/stops/505734", "https://data.delijn.be/stops/507610"], ["https://data.delijn.be/stops/303172", "https://data.delijn.be/stops/303173"], ["https://data.delijn.be/stops/101651", "https://data.delijn.be/stops/101652"], ["https://data.delijn.be/stops/101956", "https://data.delijn.be/stops/109872"], ["https://data.delijn.be/stops/409123", "https://data.delijn.be/stops/409137"], ["https://data.delijn.be/stops/300503", "https://data.delijn.be/stops/302362"], ["https://data.delijn.be/stops/205260", "https://data.delijn.be/stops/205830"], ["https://data.delijn.be/stops/209168", "https://data.delijn.be/stops/209424"], ["https://data.delijn.be/stops/403090", "https://data.delijn.be/stops/410336"], ["https://data.delijn.be/stops/202913", "https://data.delijn.be/stops/203912"], ["https://data.delijn.be/stops/509157", "https://data.delijn.be/stops/509645"], ["https://data.delijn.be/stops/301753", "https://data.delijn.be/stops/304572"], ["https://data.delijn.be/stops/301914", "https://data.delijn.be/stops/305840"], ["https://data.delijn.be/stops/200906", "https://data.delijn.be/stops/200931"], ["https://data.delijn.be/stops/305087", "https://data.delijn.be/stops/305088"], ["https://data.delijn.be/stops/101875", "https://data.delijn.be/stops/104485"], ["https://data.delijn.be/stops/407537", "https://data.delijn.be/stops/409108"], ["https://data.delijn.be/stops/202225", "https://data.delijn.be/stops/208964"], ["https://data.delijn.be/stops/502580", "https://data.delijn.be/stops/507084"], ["https://data.delijn.be/stops/403730", "https://data.delijn.be/stops/403874"], ["https://data.delijn.be/stops/301830", "https://data.delijn.be/stops/301843"], ["https://data.delijn.be/stops/208483", "https://data.delijn.be/stops/209482"], ["https://data.delijn.be/stops/401147", "https://data.delijn.be/stops/401155"], ["https://data.delijn.be/stops/503796", "https://data.delijn.be/stops/507684"], ["https://data.delijn.be/stops/208750", "https://data.delijn.be/stops/209387"], ["https://data.delijn.be/stops/401768", "https://data.delijn.be/stops/401769"], ["https://data.delijn.be/stops/504316", "https://data.delijn.be/stops/509861"], ["https://data.delijn.be/stops/307443", "https://data.delijn.be/stops/307444"], ["https://data.delijn.be/stops/301693", "https://data.delijn.be/stops/301695"], ["https://data.delijn.be/stops/207561", "https://data.delijn.be/stops/209125"], ["https://data.delijn.be/stops/402460", "https://data.delijn.be/stops/410094"], ["https://data.delijn.be/stops/202714", "https://data.delijn.be/stops/203714"], ["https://data.delijn.be/stops/502675", "https://data.delijn.be/stops/502710"], ["https://data.delijn.be/stops/105569", "https://data.delijn.be/stops/105580"], ["https://data.delijn.be/stops/506760", "https://data.delijn.be/stops/509933"], ["https://data.delijn.be/stops/101227", "https://data.delijn.be/stops/104449"], ["https://data.delijn.be/stops/401639", "https://data.delijn.be/stops/308208"], ["https://data.delijn.be/stops/502391", "https://data.delijn.be/stops/507323"], ["https://data.delijn.be/stops/102841", "https://data.delijn.be/stops/102842"], ["https://data.delijn.be/stops/103303", "https://data.delijn.be/stops/408948"], ["https://data.delijn.be/stops/101515", "https://data.delijn.be/stops/102055"], ["https://data.delijn.be/stops/205069", "https://data.delijn.be/stops/205797"], ["https://data.delijn.be/stops/201070", "https://data.delijn.be/stops/208842"], ["https://data.delijn.be/stops/207789", "https://data.delijn.be/stops/208373"], ["https://data.delijn.be/stops/403058", "https://data.delijn.be/stops/403583"], ["https://data.delijn.be/stops/407809", "https://data.delijn.be/stops/407843"], ["https://data.delijn.be/stops/301253", "https://data.delijn.be/stops/307615"], ["https://data.delijn.be/stops/504580", "https://data.delijn.be/stops/509585"], ["https://data.delijn.be/stops/208087", "https://data.delijn.be/stops/209070"], ["https://data.delijn.be/stops/401455", "https://data.delijn.be/stops/401574"], ["https://data.delijn.be/stops/307440", "https://data.delijn.be/stops/307442"], ["https://data.delijn.be/stops/502918", "https://data.delijn.be/stops/508005"], ["https://data.delijn.be/stops/107815", "https://data.delijn.be/stops/107817"], ["https://data.delijn.be/stops/300656", "https://data.delijn.be/stops/300678"], ["https://data.delijn.be/stops/307143", "https://data.delijn.be/stops/307144"], ["https://data.delijn.be/stops/406738", "https://data.delijn.be/stops/407395"], ["https://data.delijn.be/stops/502174", "https://data.delijn.be/stops/507174"], ["https://data.delijn.be/stops/301233", "https://data.delijn.be/stops/307909"], ["https://data.delijn.be/stops/108526", "https://data.delijn.be/stops/108539"], ["https://data.delijn.be/stops/505552", "https://data.delijn.be/stops/505630"], ["https://data.delijn.be/stops/300816", "https://data.delijn.be/stops/300880"], ["https://data.delijn.be/stops/404148", "https://data.delijn.be/stops/404149"], ["https://data.delijn.be/stops/104592", "https://data.delijn.be/stops/104593"], ["https://data.delijn.be/stops/202420", "https://data.delijn.be/stops/203272"], ["https://data.delijn.be/stops/300357", "https://data.delijn.be/stops/308991"], ["https://data.delijn.be/stops/302719", "https://data.delijn.be/stops/308596"], ["https://data.delijn.be/stops/201833", "https://data.delijn.be/stops/201835"], ["https://data.delijn.be/stops/303142", "https://data.delijn.be/stops/303145"], ["https://data.delijn.be/stops/502706", "https://data.delijn.be/stops/505627"], ["https://data.delijn.be/stops/406891", "https://data.delijn.be/stops/406893"], ["https://data.delijn.be/stops/205751", "https://data.delijn.be/stops/205752"], ["https://data.delijn.be/stops/201776", "https://data.delijn.be/stops/208247"], ["https://data.delijn.be/stops/406511", "https://data.delijn.be/stops/406514"], ["https://data.delijn.be/stops/407595", "https://data.delijn.be/stops/407596"], ["https://data.delijn.be/stops/108400", "https://data.delijn.be/stops/108407"], ["https://data.delijn.be/stops/300579", "https://data.delijn.be/stops/300978"], ["https://data.delijn.be/stops/404169", "https://data.delijn.be/stops/410184"], ["https://data.delijn.be/stops/406676", "https://data.delijn.be/stops/406677"], ["https://data.delijn.be/stops/209756", "https://data.delijn.be/stops/216004"], ["https://data.delijn.be/stops/504085", "https://data.delijn.be/stops/509085"], ["https://data.delijn.be/stops/303069", "https://data.delijn.be/stops/303192"], ["https://data.delijn.be/stops/302326", "https://data.delijn.be/stops/302327"], ["https://data.delijn.be/stops/408766", "https://data.delijn.be/stops/408768"], ["https://data.delijn.be/stops/403275", "https://data.delijn.be/stops/403498"], ["https://data.delijn.be/stops/206794", "https://data.delijn.be/stops/209051"], ["https://data.delijn.be/stops/105963", "https://data.delijn.be/stops/105966"], ["https://data.delijn.be/stops/107867", "https://data.delijn.be/stops/107869"], ["https://data.delijn.be/stops/303977", "https://data.delijn.be/stops/303986"], ["https://data.delijn.be/stops/201250", "https://data.delijn.be/stops/211063"], ["https://data.delijn.be/stops/101586", "https://data.delijn.be/stops/101587"], ["https://data.delijn.be/stops/206859", "https://data.delijn.be/stops/207531"], ["https://data.delijn.be/stops/407088", "https://data.delijn.be/stops/409496"], ["https://data.delijn.be/stops/201242", "https://data.delijn.be/stops/205919"], ["https://data.delijn.be/stops/400821", "https://data.delijn.be/stops/400827"], ["https://data.delijn.be/stops/503029", "https://data.delijn.be/stops/508023"], ["https://data.delijn.be/stops/301873", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/103926", "https://data.delijn.be/stops/103927"], ["https://data.delijn.be/stops/405868", "https://data.delijn.be/stops/409769"], ["https://data.delijn.be/stops/300817", "https://data.delijn.be/stops/303632"], ["https://data.delijn.be/stops/204261", "https://data.delijn.be/stops/205472"], ["https://data.delijn.be/stops/502067", "https://data.delijn.be/stops/502465"], ["https://data.delijn.be/stops/407589", "https://data.delijn.be/stops/407658"], ["https://data.delijn.be/stops/400855", "https://data.delijn.be/stops/410047"], ["https://data.delijn.be/stops/404996", "https://data.delijn.be/stops/406911"], ["https://data.delijn.be/stops/304513", "https://data.delijn.be/stops/306206"], ["https://data.delijn.be/stops/103388", "https://data.delijn.be/stops/108395"], ["https://data.delijn.be/stops/303033", "https://data.delijn.be/stops/303100"], ["https://data.delijn.be/stops/308799", "https://data.delijn.be/stops/308845"], ["https://data.delijn.be/stops/301032", "https://data.delijn.be/stops/307683"], ["https://data.delijn.be/stops/503091", "https://data.delijn.be/stops/508973"], ["https://data.delijn.be/stops/408928", "https://data.delijn.be/stops/408946"], ["https://data.delijn.be/stops/501744", "https://data.delijn.be/stops/504125"], ["https://data.delijn.be/stops/300014", "https://data.delijn.be/stops/304547"], ["https://data.delijn.be/stops/501078", "https://data.delijn.be/stops/501401"], ["https://data.delijn.be/stops/501007", "https://data.delijn.be/stops/508745"], ["https://data.delijn.be/stops/208379", "https://data.delijn.be/stops/209379"], ["https://data.delijn.be/stops/303491", "https://data.delijn.be/stops/303497"], ["https://data.delijn.be/stops/304463", "https://data.delijn.be/stops/307719"], ["https://data.delijn.be/stops/502329", "https://data.delijn.be/stops/507327"], ["https://data.delijn.be/stops/200815", "https://data.delijn.be/stops/200816"], ["https://data.delijn.be/stops/301724", "https://data.delijn.be/stops/301761"], ["https://data.delijn.be/stops/403448", "https://data.delijn.be/stops/405139"], ["https://data.delijn.be/stops/410030", "https://data.delijn.be/stops/410031"], ["https://data.delijn.be/stops/206668", "https://data.delijn.be/stops/206799"], ["https://data.delijn.be/stops/303324", "https://data.delijn.be/stops/303325"], ["https://data.delijn.be/stops/503438", "https://data.delijn.be/stops/508438"], ["https://data.delijn.be/stops/104446", "https://data.delijn.be/stops/107538"], ["https://data.delijn.be/stops/508370", "https://data.delijn.be/stops/508444"], ["https://data.delijn.be/stops/300264", "https://data.delijn.be/stops/307495"], ["https://data.delijn.be/stops/501334", "https://data.delijn.be/stops/506334"], ["https://data.delijn.be/stops/204189", "https://data.delijn.be/stops/205189"], ["https://data.delijn.be/stops/105614", "https://data.delijn.be/stops/105617"], ["https://data.delijn.be/stops/300872", "https://data.delijn.be/stops/308109"], ["https://data.delijn.be/stops/400473", "https://data.delijn.be/stops/400480"], ["https://data.delijn.be/stops/201263", "https://data.delijn.be/stops/203545"], ["https://data.delijn.be/stops/403179", "https://data.delijn.be/stops/403183"], ["https://data.delijn.be/stops/503425", "https://data.delijn.be/stops/508374"], ["https://data.delijn.be/stops/504494", "https://data.delijn.be/stops/509490"], ["https://data.delijn.be/stops/402935", "https://data.delijn.be/stops/403964"], ["https://data.delijn.be/stops/407227", "https://data.delijn.be/stops/407507"], ["https://data.delijn.be/stops/503089", "https://data.delijn.be/stops/503094"], ["https://data.delijn.be/stops/303411", "https://data.delijn.be/stops/303417"], ["https://data.delijn.be/stops/200647", "https://data.delijn.be/stops/202863"], ["https://data.delijn.be/stops/401210", "https://data.delijn.be/stops/401256"], ["https://data.delijn.be/stops/410212", "https://data.delijn.be/stops/410390"], ["https://data.delijn.be/stops/403091", "https://data.delijn.be/stops/403094"], ["https://data.delijn.be/stops/208127", "https://data.delijn.be/stops/208128"], ["https://data.delijn.be/stops/301950", "https://data.delijn.be/stops/303287"], ["https://data.delijn.be/stops/405260", "https://data.delijn.be/stops/405261"], ["https://data.delijn.be/stops/405834", "https://data.delijn.be/stops/407361"], ["https://data.delijn.be/stops/102394", "https://data.delijn.be/stops/108183"], ["https://data.delijn.be/stops/401989", "https://data.delijn.be/stops/404980"], ["https://data.delijn.be/stops/200501", "https://data.delijn.be/stops/200502"], ["https://data.delijn.be/stops/200330", "https://data.delijn.be/stops/202200"], ["https://data.delijn.be/stops/402717", "https://data.delijn.be/stops/308145"], ["https://data.delijn.be/stops/404560", "https://data.delijn.be/stops/406742"], ["https://data.delijn.be/stops/204300", "https://data.delijn.be/stops/204306"], ["https://data.delijn.be/stops/101343", "https://data.delijn.be/stops/108101"], ["https://data.delijn.be/stops/106092", "https://data.delijn.be/stops/106143"], ["https://data.delijn.be/stops/101468", "https://data.delijn.be/stops/109267"], ["https://data.delijn.be/stops/407706", "https://data.delijn.be/stops/407707"], ["https://data.delijn.be/stops/402000", "https://data.delijn.be/stops/404969"], ["https://data.delijn.be/stops/502347", "https://data.delijn.be/stops/505309"], ["https://data.delijn.be/stops/305131", "https://data.delijn.be/stops/305143"], ["https://data.delijn.be/stops/104497", "https://data.delijn.be/stops/107511"], ["https://data.delijn.be/stops/405802", "https://data.delijn.be/stops/405861"], ["https://data.delijn.be/stops/403236", "https://data.delijn.be/stops/403471"], ["https://data.delijn.be/stops/400979", "https://data.delijn.be/stops/409632"], ["https://data.delijn.be/stops/207696", "https://data.delijn.be/stops/207714"], ["https://data.delijn.be/stops/405264", "https://data.delijn.be/stops/406410"], ["https://data.delijn.be/stops/400673", "https://data.delijn.be/stops/402539"], ["https://data.delijn.be/stops/501081", "https://data.delijn.be/stops/506078"], ["https://data.delijn.be/stops/106200", "https://data.delijn.be/stops/106301"], ["https://data.delijn.be/stops/502306", "https://data.delijn.be/stops/502316"], ["https://data.delijn.be/stops/508804", "https://data.delijn.be/stops/508809"], ["https://data.delijn.be/stops/407924", "https://data.delijn.be/stops/408037"], ["https://data.delijn.be/stops/200725", "https://data.delijn.be/stops/204942"], ["https://data.delijn.be/stops/302756", "https://data.delijn.be/stops/302763"], ["https://data.delijn.be/stops/108757", "https://data.delijn.be/stops/109757"], ["https://data.delijn.be/stops/201486", "https://data.delijn.be/stops/201489"], ["https://data.delijn.be/stops/101365", "https://data.delijn.be/stops/101580"], ["https://data.delijn.be/stops/204072", "https://data.delijn.be/stops/204186"], ["https://data.delijn.be/stops/501562", "https://data.delijn.be/stops/590411"], ["https://data.delijn.be/stops/401401", "https://data.delijn.be/stops/300924"], ["https://data.delijn.be/stops/102484", "https://data.delijn.be/stops/400421"], ["https://data.delijn.be/stops/203496", "https://data.delijn.be/stops/209867"], ["https://data.delijn.be/stops/106498", "https://data.delijn.be/stops/108231"], ["https://data.delijn.be/stops/406976", "https://data.delijn.be/stops/409478"], ["https://data.delijn.be/stops/103265", "https://data.delijn.be/stops/103270"], ["https://data.delijn.be/stops/103466", "https://data.delijn.be/stops/106686"], ["https://data.delijn.be/stops/401370", "https://data.delijn.be/stops/401377"], ["https://data.delijn.be/stops/405960", "https://data.delijn.be/stops/308153"], ["https://data.delijn.be/stops/200729", "https://data.delijn.be/stops/200730"], ["https://data.delijn.be/stops/402547", "https://data.delijn.be/stops/402580"], ["https://data.delijn.be/stops/101589", "https://data.delijn.be/stops/103695"], ["https://data.delijn.be/stops/204076", "https://data.delijn.be/stops/204088"], ["https://data.delijn.be/stops/504543", "https://data.delijn.be/stops/505989"], ["https://data.delijn.be/stops/306946", "https://data.delijn.be/stops/306949"], ["https://data.delijn.be/stops/101440", "https://data.delijn.be/stops/104081"], ["https://data.delijn.be/stops/109082", "https://data.delijn.be/stops/109654"], ["https://data.delijn.be/stops/505676", "https://data.delijn.be/stops/507303"], ["https://data.delijn.be/stops/302271", "https://data.delijn.be/stops/304315"], ["https://data.delijn.be/stops/101778", "https://data.delijn.be/stops/102186"], ["https://data.delijn.be/stops/403745", "https://data.delijn.be/stops/403777"], ["https://data.delijn.be/stops/202059", "https://data.delijn.be/stops/210073"], ["https://data.delijn.be/stops/201911", "https://data.delijn.be/stops/203529"], ["https://data.delijn.be/stops/305053", "https://data.delijn.be/stops/307277"], ["https://data.delijn.be/stops/302394", "https://data.delijn.be/stops/302396"], ["https://data.delijn.be/stops/206323", "https://data.delijn.be/stops/206860"], ["https://data.delijn.be/stops/404997", "https://data.delijn.be/stops/406908"], ["https://data.delijn.be/stops/301470", "https://data.delijn.be/stops/301480"], ["https://data.delijn.be/stops/505030", "https://data.delijn.be/stops/506476"], ["https://data.delijn.be/stops/202575", "https://data.delijn.be/stops/203575"], ["https://data.delijn.be/stops/206198", "https://data.delijn.be/stops/206199"], ["https://data.delijn.be/stops/407731", "https://data.delijn.be/stops/407734"], ["https://data.delijn.be/stops/503180", "https://data.delijn.be/stops/508179"], ["https://data.delijn.be/stops/102659", "https://data.delijn.be/stops/109382"], ["https://data.delijn.be/stops/108282", "https://data.delijn.be/stops/109361"], ["https://data.delijn.be/stops/400099", "https://data.delijn.be/stops/403311"], ["https://data.delijn.be/stops/206504", "https://data.delijn.be/stops/207504"], ["https://data.delijn.be/stops/305188", "https://data.delijn.be/stops/306965"], ["https://data.delijn.be/stops/407580", "https://data.delijn.be/stops/409313"], ["https://data.delijn.be/stops/200264", "https://data.delijn.be/stops/201432"], ["https://data.delijn.be/stops/200766", "https://data.delijn.be/stops/208300"], ["https://data.delijn.be/stops/300651", "https://data.delijn.be/stops/300652"], ["https://data.delijn.be/stops/101430", "https://data.delijn.be/stops/104225"], ["https://data.delijn.be/stops/206250", "https://data.delijn.be/stops/206586"], ["https://data.delijn.be/stops/105172", "https://data.delijn.be/stops/107707"], ["https://data.delijn.be/stops/407280", "https://data.delijn.be/stops/407281"], ["https://data.delijn.be/stops/408890", "https://data.delijn.be/stops/408892"], ["https://data.delijn.be/stops/108651", "https://data.delijn.be/stops/304329"], ["https://data.delijn.be/stops/204035", "https://data.delijn.be/stops/204558"], ["https://data.delijn.be/stops/300937", "https://data.delijn.be/stops/300951"], ["https://data.delijn.be/stops/303321", "https://data.delijn.be/stops/305685"], ["https://data.delijn.be/stops/304890", "https://data.delijn.be/stops/307982"], ["https://data.delijn.be/stops/501338", "https://data.delijn.be/stops/506343"], ["https://data.delijn.be/stops/502057", "https://data.delijn.be/stops/502750"], ["https://data.delijn.be/stops/403642", "https://data.delijn.be/stops/407344"], ["https://data.delijn.be/stops/302504", "https://data.delijn.be/stops/302505"], ["https://data.delijn.be/stops/503566", "https://data.delijn.be/stops/503996"], ["https://data.delijn.be/stops/204374", "https://data.delijn.be/stops/205383"], ["https://data.delijn.be/stops/407848", "https://data.delijn.be/stops/407908"], ["https://data.delijn.be/stops/200900", "https://data.delijn.be/stops/202236"], ["https://data.delijn.be/stops/200405", "https://data.delijn.be/stops/201724"], ["https://data.delijn.be/stops/300769", "https://data.delijn.be/stops/301067"], ["https://data.delijn.be/stops/502915", "https://data.delijn.be/stops/507019"], ["https://data.delijn.be/stops/307444", "https://data.delijn.be/stops/307825"], ["https://data.delijn.be/stops/102906", "https://data.delijn.be/stops/104287"], ["https://data.delijn.be/stops/204642", "https://data.delijn.be/stops/204643"], ["https://data.delijn.be/stops/505793", "https://data.delijn.be/stops/508040"], ["https://data.delijn.be/stops/208245", "https://data.delijn.be/stops/209245"], ["https://data.delijn.be/stops/106892", "https://data.delijn.be/stops/107219"], ["https://data.delijn.be/stops/400351", "https://data.delijn.be/stops/400396"], ["https://data.delijn.be/stops/403140", "https://data.delijn.be/stops/410010"], ["https://data.delijn.be/stops/407971", "https://data.delijn.be/stops/408421"], ["https://data.delijn.be/stops/204913", "https://data.delijn.be/stops/204916"], ["https://data.delijn.be/stops/200004", "https://data.delijn.be/stops/201004"], ["https://data.delijn.be/stops/103376", "https://data.delijn.be/stops/406848"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/107144"], ["https://data.delijn.be/stops/400936", "https://data.delijn.be/stops/400941"], ["https://data.delijn.be/stops/105074", "https://data.delijn.be/stops/105192"], ["https://data.delijn.be/stops/505364", "https://data.delijn.be/stops/508591"], ["https://data.delijn.be/stops/408034", "https://data.delijn.be/stops/408035"], ["https://data.delijn.be/stops/504548", "https://data.delijn.be/stops/509545"], ["https://data.delijn.be/stops/505803", "https://data.delijn.be/stops/509516"], ["https://data.delijn.be/stops/406290", "https://data.delijn.be/stops/410131"], ["https://data.delijn.be/stops/304385", "https://data.delijn.be/stops/306870"], ["https://data.delijn.be/stops/503840", "https://data.delijn.be/stops/508860"], ["https://data.delijn.be/stops/206442", "https://data.delijn.be/stops/207439"], ["https://data.delijn.be/stops/408537", "https://data.delijn.be/stops/408663"], ["https://data.delijn.be/stops/501415", "https://data.delijn.be/stops/501475"], ["https://data.delijn.be/stops/202513", "https://data.delijn.be/stops/203514"], ["https://data.delijn.be/stops/200027", "https://data.delijn.be/stops/201446"], ["https://data.delijn.be/stops/102248", "https://data.delijn.be/stops/105939"], ["https://data.delijn.be/stops/504462", "https://data.delijn.be/stops/504463"], ["https://data.delijn.be/stops/305092", "https://data.delijn.be/stops/305093"], ["https://data.delijn.be/stops/300673", "https://data.delijn.be/stops/300676"], ["https://data.delijn.be/stops/504909", "https://data.delijn.be/stops/509946"], ["https://data.delijn.be/stops/503560", "https://data.delijn.be/stops/503606"], ["https://data.delijn.be/stops/506769", "https://data.delijn.be/stops/506771"], ["https://data.delijn.be/stops/405300", "https://data.delijn.be/stops/405496"], ["https://data.delijn.be/stops/405546", "https://data.delijn.be/stops/406887"], ["https://data.delijn.be/stops/200408", "https://data.delijn.be/stops/200409"], ["https://data.delijn.be/stops/206973", "https://data.delijn.be/stops/207972"], ["https://data.delijn.be/stops/207980", "https://data.delijn.be/stops/207981"], ["https://data.delijn.be/stops/206809", "https://data.delijn.be/stops/207196"], ["https://data.delijn.be/stops/400533", "https://data.delijn.be/stops/403625"], ["https://data.delijn.be/stops/400593", "https://data.delijn.be/stops/405992"], ["https://data.delijn.be/stops/401480", "https://data.delijn.be/stops/406008"], ["https://data.delijn.be/stops/301845", "https://data.delijn.be/stops/306984"], ["https://data.delijn.be/stops/301382", "https://data.delijn.be/stops/306142"], ["https://data.delijn.be/stops/505208", "https://data.delijn.be/stops/505897"], ["https://data.delijn.be/stops/107539", "https://data.delijn.be/stops/109601"], ["https://data.delijn.be/stops/504520", "https://data.delijn.be/stops/509524"], ["https://data.delijn.be/stops/101023", "https://data.delijn.be/stops/105595"], ["https://data.delijn.be/stops/107449", "https://data.delijn.be/stops/107451"], ["https://data.delijn.be/stops/501635", "https://data.delijn.be/stops/506738"], ["https://data.delijn.be/stops/303271", "https://data.delijn.be/stops/305728"], ["https://data.delijn.be/stops/202498", "https://data.delijn.be/stops/205792"], ["https://data.delijn.be/stops/201705", "https://data.delijn.be/stops/203443"], ["https://data.delijn.be/stops/301422", "https://data.delijn.be/stops/302132"], ["https://data.delijn.be/stops/504976", "https://data.delijn.be/stops/509133"], ["https://data.delijn.be/stops/302472", "https://data.delijn.be/stops/302732"], ["https://data.delijn.be/stops/108840", "https://data.delijn.be/stops/108842"], ["https://data.delijn.be/stops/505341", "https://data.delijn.be/stops/507757"], ["https://data.delijn.be/stops/102064", "https://data.delijn.be/stops/109532"], ["https://data.delijn.be/stops/301949", "https://data.delijn.be/stops/303286"], ["https://data.delijn.be/stops/504018", "https://data.delijn.be/stops/509018"], ["https://data.delijn.be/stops/208846", "https://data.delijn.be/stops/209039"], ["https://data.delijn.be/stops/202776", "https://data.delijn.be/stops/202935"], ["https://data.delijn.be/stops/300487", "https://data.delijn.be/stops/301995"], ["https://data.delijn.be/stops/400850", "https://data.delijn.be/stops/400851"], ["https://data.delijn.be/stops/407792", "https://data.delijn.be/stops/307447"], ["https://data.delijn.be/stops/305180", "https://data.delijn.be/stops/305212"], ["https://data.delijn.be/stops/204078", "https://data.delijn.be/stops/205235"], ["https://data.delijn.be/stops/501108", "https://data.delijn.be/stops/506108"], ["https://data.delijn.be/stops/300955", "https://data.delijn.be/stops/301106"], ["https://data.delijn.be/stops/302707", "https://data.delijn.be/stops/302719"], ["https://data.delijn.be/stops/401618", "https://data.delijn.be/stops/308214"], ["https://data.delijn.be/stops/504010", "https://data.delijn.be/stops/509404"], ["https://data.delijn.be/stops/408311", "https://data.delijn.be/stops/408378"], ["https://data.delijn.be/stops/408572", "https://data.delijn.be/stops/408815"], ["https://data.delijn.be/stops/207732", "https://data.delijn.be/stops/304064"], ["https://data.delijn.be/stops/206927", "https://data.delijn.be/stops/207528"], ["https://data.delijn.be/stops/105238", "https://data.delijn.be/stops/105248"], ["https://data.delijn.be/stops/200247", "https://data.delijn.be/stops/201049"], ["https://data.delijn.be/stops/207787", "https://data.delijn.be/stops/208407"], ["https://data.delijn.be/stops/106374", "https://data.delijn.be/stops/106376"], ["https://data.delijn.be/stops/401865", "https://data.delijn.be/stops/401867"], ["https://data.delijn.be/stops/201403", "https://data.delijn.be/stops/202038"], ["https://data.delijn.be/stops/106786", "https://data.delijn.be/stops/106788"], ["https://data.delijn.be/stops/302630", "https://data.delijn.be/stops/302634"], ["https://data.delijn.be/stops/208238", "https://data.delijn.be/stops/209592"], ["https://data.delijn.be/stops/405756", "https://data.delijn.be/stops/405769"], ["https://data.delijn.be/stops/404245", "https://data.delijn.be/stops/409307"], ["https://data.delijn.be/stops/207664", "https://data.delijn.be/stops/209793"], ["https://data.delijn.be/stops/404871", "https://data.delijn.be/stops/404874"], ["https://data.delijn.be/stops/304832", "https://data.delijn.be/stops/306163"], ["https://data.delijn.be/stops/404794", "https://data.delijn.be/stops/404805"], ["https://data.delijn.be/stops/101572", "https://data.delijn.be/stops/105464"], ["https://data.delijn.be/stops/201964", "https://data.delijn.be/stops/206769"], ["https://data.delijn.be/stops/409250", "https://data.delijn.be/stops/409251"], ["https://data.delijn.be/stops/108854", "https://data.delijn.be/stops/108855"], ["https://data.delijn.be/stops/503549", "https://data.delijn.be/stops/503557"], ["https://data.delijn.be/stops/400444", "https://data.delijn.be/stops/404772"], ["https://data.delijn.be/stops/302374", "https://data.delijn.be/stops/304068"], ["https://data.delijn.be/stops/501344", "https://data.delijn.be/stops/501359"], ["https://data.delijn.be/stops/405344", "https://data.delijn.be/stops/308124"], ["https://data.delijn.be/stops/201017", "https://data.delijn.be/stops/201149"], ["https://data.delijn.be/stops/400730", "https://data.delijn.be/stops/406645"], ["https://data.delijn.be/stops/406659", "https://data.delijn.be/stops/406692"], ["https://data.delijn.be/stops/404213", "https://data.delijn.be/stops/404242"], ["https://data.delijn.be/stops/304873", "https://data.delijn.be/stops/308955"], ["https://data.delijn.be/stops/406639", "https://data.delijn.be/stops/406640"], ["https://data.delijn.be/stops/405294", "https://data.delijn.be/stops/405299"], ["https://data.delijn.be/stops/408125", "https://data.delijn.be/stops/408415"], ["https://data.delijn.be/stops/304813", "https://data.delijn.be/stops/308771"], ["https://data.delijn.be/stops/102543", "https://data.delijn.be/stops/405100"], ["https://data.delijn.be/stops/301971", "https://data.delijn.be/stops/301987"], ["https://data.delijn.be/stops/403682", "https://data.delijn.be/stops/403683"], ["https://data.delijn.be/stops/505301", "https://data.delijn.be/stops/509026"], ["https://data.delijn.be/stops/302345", "https://data.delijn.be/stops/306183"], ["https://data.delijn.be/stops/208474", "https://data.delijn.be/stops/209672"], ["https://data.delijn.be/stops/305714", "https://data.delijn.be/stops/306302"], ["https://data.delijn.be/stops/504772", "https://data.delijn.be/stops/509653"], ["https://data.delijn.be/stops/502242", "https://data.delijn.be/stops/507239"], ["https://data.delijn.be/stops/206130", "https://data.delijn.be/stops/206715"], ["https://data.delijn.be/stops/104724", "https://data.delijn.be/stops/105390"], ["https://data.delijn.be/stops/401311", "https://data.delijn.be/stops/406656"], ["https://data.delijn.be/stops/102548", "https://data.delijn.be/stops/405004"], ["https://data.delijn.be/stops/303202", "https://data.delijn.be/stops/305526"], ["https://data.delijn.be/stops/502736", "https://data.delijn.be/stops/507032"], ["https://data.delijn.be/stops/402808", "https://data.delijn.be/stops/402816"], ["https://data.delijn.be/stops/200807", "https://data.delijn.be/stops/200808"], ["https://data.delijn.be/stops/405806", "https://data.delijn.be/stops/408456"], ["https://data.delijn.be/stops/501418", "https://data.delijn.be/stops/506407"], ["https://data.delijn.be/stops/108952", "https://data.delijn.be/stops/108956"], ["https://data.delijn.be/stops/503364", "https://data.delijn.be/stops/509364"], ["https://data.delijn.be/stops/300022", "https://data.delijn.be/stops/307261"], ["https://data.delijn.be/stops/301188", "https://data.delijn.be/stops/301225"], ["https://data.delijn.be/stops/300789", "https://data.delijn.be/stops/302406"], ["https://data.delijn.be/stops/201414", "https://data.delijn.be/stops/201415"], ["https://data.delijn.be/stops/507272", "https://data.delijn.be/stops/507655"], ["https://data.delijn.be/stops/301265", "https://data.delijn.be/stops/301276"], ["https://data.delijn.be/stops/208166", "https://data.delijn.be/stops/209165"], ["https://data.delijn.be/stops/504729", "https://data.delijn.be/stops/504730"], ["https://data.delijn.be/stops/207584", "https://data.delijn.be/stops/207585"], ["https://data.delijn.be/stops/304994", "https://data.delijn.be/stops/305000"], ["https://data.delijn.be/stops/403142", "https://data.delijn.be/stops/403156"], ["https://data.delijn.be/stops/202318", "https://data.delijn.be/stops/208887"], ["https://data.delijn.be/stops/408356", "https://data.delijn.be/stops/410256"], ["https://data.delijn.be/stops/405414", "https://data.delijn.be/stops/306775"], ["https://data.delijn.be/stops/106184", "https://data.delijn.be/stops/107436"], ["https://data.delijn.be/stops/407835", "https://data.delijn.be/stops/407908"], ["https://data.delijn.be/stops/102679", "https://data.delijn.be/stops/105036"], ["https://data.delijn.be/stops/300753", "https://data.delijn.be/stops/300787"], ["https://data.delijn.be/stops/106285", "https://data.delijn.be/stops/106352"], ["https://data.delijn.be/stops/503366", "https://data.delijn.be/stops/510024"], ["https://data.delijn.be/stops/204539", "https://data.delijn.be/stops/205515"], ["https://data.delijn.be/stops/102724", "https://data.delijn.be/stops/105624"], ["https://data.delijn.be/stops/303988", "https://data.delijn.be/stops/306290"], ["https://data.delijn.be/stops/101828", "https://data.delijn.be/stops/101918"], ["https://data.delijn.be/stops/207566", "https://data.delijn.be/stops/207939"], ["https://data.delijn.be/stops/105121", "https://data.delijn.be/stops/105219"], ["https://data.delijn.be/stops/504480", "https://data.delijn.be/stops/505817"], ["https://data.delijn.be/stops/300367", "https://data.delijn.be/stops/304054"], ["https://data.delijn.be/stops/200604", "https://data.delijn.be/stops/201604"], ["https://data.delijn.be/stops/206639", "https://data.delijn.be/stops/207639"], ["https://data.delijn.be/stops/402160", "https://data.delijn.be/stops/402266"], ["https://data.delijn.be/stops/206645", "https://data.delijn.be/stops/207491"], ["https://data.delijn.be/stops/207186", "https://data.delijn.be/stops/207187"], ["https://data.delijn.be/stops/302858", "https://data.delijn.be/stops/302859"], ["https://data.delijn.be/stops/107106", "https://data.delijn.be/stops/107107"], ["https://data.delijn.be/stops/305171", "https://data.delijn.be/stops/305172"], ["https://data.delijn.be/stops/401951", "https://data.delijn.be/stops/407556"], ["https://data.delijn.be/stops/304992", "https://data.delijn.be/stops/304993"], ["https://data.delijn.be/stops/505154", "https://data.delijn.be/stops/505742"], ["https://data.delijn.be/stops/302955", "https://data.delijn.be/stops/302960"], ["https://data.delijn.be/stops/505959", "https://data.delijn.be/stops/509891"], ["https://data.delijn.be/stops/503194", "https://data.delijn.be/stops/503198"], ["https://data.delijn.be/stops/408399", "https://data.delijn.be/stops/408401"], ["https://data.delijn.be/stops/209683", "https://data.delijn.be/stops/209685"], ["https://data.delijn.be/stops/202160", "https://data.delijn.be/stops/203160"], ["https://data.delijn.be/stops/402192", "https://data.delijn.be/stops/402376"], ["https://data.delijn.be/stops/403145", "https://data.delijn.be/stops/410273"], ["https://data.delijn.be/stops/301289", "https://data.delijn.be/stops/301296"], ["https://data.delijn.be/stops/102420", "https://data.delijn.be/stops/102735"], ["https://data.delijn.be/stops/308609", "https://data.delijn.be/stops/308631"], ["https://data.delijn.be/stops/200835", "https://data.delijn.be/stops/200838"], ["https://data.delijn.be/stops/206257", "https://data.delijn.be/stops/207257"], ["https://data.delijn.be/stops/106615", "https://data.delijn.be/stops/106617"], ["https://data.delijn.be/stops/101197", "https://data.delijn.be/stops/101198"], ["https://data.delijn.be/stops/501212", "https://data.delijn.be/stops/501213"], ["https://data.delijn.be/stops/301262", "https://data.delijn.be/stops/307392"], ["https://data.delijn.be/stops/304389", "https://data.delijn.be/stops/304395"], ["https://data.delijn.be/stops/105109", "https://data.delijn.be/stops/107815"], ["https://data.delijn.be/stops/105487", "https://data.delijn.be/stops/108802"], ["https://data.delijn.be/stops/206322", "https://data.delijn.be/stops/206686"], ["https://data.delijn.be/stops/200570", "https://data.delijn.be/stops/200573"], ["https://data.delijn.be/stops/201914", "https://data.delijn.be/stops/201931"], ["https://data.delijn.be/stops/303256", "https://data.delijn.be/stops/303269"], ["https://data.delijn.be/stops/201218", "https://data.delijn.be/stops/201266"], ["https://data.delijn.be/stops/206669", "https://data.delijn.be/stops/209106"], ["https://data.delijn.be/stops/108896", "https://data.delijn.be/stops/108899"], ["https://data.delijn.be/stops/402287", "https://data.delijn.be/stops/406868"], ["https://data.delijn.be/stops/201279", "https://data.delijn.be/stops/211048"], ["https://data.delijn.be/stops/301343", "https://data.delijn.be/stops/301345"], ["https://data.delijn.be/stops/105128", "https://data.delijn.be/stops/105131"], ["https://data.delijn.be/stops/405063", "https://data.delijn.be/stops/405113"], ["https://data.delijn.be/stops/206116", "https://data.delijn.be/stops/206117"], ["https://data.delijn.be/stops/300545", "https://data.delijn.be/stops/307087"], ["https://data.delijn.be/stops/107523", "https://data.delijn.be/stops/107529"], ["https://data.delijn.be/stops/302613", "https://data.delijn.be/stops/302627"], ["https://data.delijn.be/stops/404431", "https://data.delijn.be/stops/404514"], ["https://data.delijn.be/stops/208593", "https://data.delijn.be/stops/209218"], ["https://data.delijn.be/stops/504134", "https://data.delijn.be/stops/504772"], ["https://data.delijn.be/stops/103998", "https://data.delijn.be/stops/104010"], ["https://data.delijn.be/stops/501153", "https://data.delijn.be/stops/509837"], ["https://data.delijn.be/stops/408223", "https://data.delijn.be/stops/408312"], ["https://data.delijn.be/stops/105216", "https://data.delijn.be/stops/106233"], ["https://data.delijn.be/stops/303420", "https://data.delijn.be/stops/308066"], ["https://data.delijn.be/stops/201387", "https://data.delijn.be/stops/209950"], ["https://data.delijn.be/stops/301370", "https://data.delijn.be/stops/306127"], ["https://data.delijn.be/stops/406179", "https://data.delijn.be/stops/406281"], ["https://data.delijn.be/stops/204230", "https://data.delijn.be/stops/205192"], ["https://data.delijn.be/stops/105117", "https://data.delijn.be/stops/109749"], ["https://data.delijn.be/stops/204252", "https://data.delijn.be/stops/204758"], ["https://data.delijn.be/stops/204362", "https://data.delijn.be/stops/205317"], ["https://data.delijn.be/stops/507557", "https://data.delijn.be/stops/509892"], ["https://data.delijn.be/stops/508445", "https://data.delijn.be/stops/508658"], ["https://data.delijn.be/stops/109784", "https://data.delijn.be/stops/109785"], ["https://data.delijn.be/stops/405277", "https://data.delijn.be/stops/410086"], ["https://data.delijn.be/stops/200354", "https://data.delijn.be/stops/201017"], ["https://data.delijn.be/stops/204144", "https://data.delijn.be/stops/207635"], ["https://data.delijn.be/stops/202690", "https://data.delijn.be/stops/203690"], ["https://data.delijn.be/stops/204115", "https://data.delijn.be/stops/205114"], ["https://data.delijn.be/stops/406232", "https://data.delijn.be/stops/406233"], ["https://data.delijn.be/stops/403565", "https://data.delijn.be/stops/410120"], ["https://data.delijn.be/stops/308694", "https://data.delijn.be/stops/308695"], ["https://data.delijn.be/stops/106511", "https://data.delijn.be/stops/106512"], ["https://data.delijn.be/stops/104044", "https://data.delijn.be/stops/107624"], ["https://data.delijn.be/stops/208164", "https://data.delijn.be/stops/209163"], ["https://data.delijn.be/stops/302202", "https://data.delijn.be/stops/304786"], ["https://data.delijn.be/stops/507454", "https://data.delijn.be/stops/509830"], ["https://data.delijn.be/stops/302353", "https://data.delijn.be/stops/306194"], ["https://data.delijn.be/stops/108154", "https://data.delijn.be/stops/108158"], ["https://data.delijn.be/stops/403368", "https://data.delijn.be/stops/403380"], ["https://data.delijn.be/stops/508436", "https://data.delijn.be/stops/508816"], ["https://data.delijn.be/stops/504290", "https://data.delijn.be/stops/504602"], ["https://data.delijn.be/stops/109285", "https://data.delijn.be/stops/109286"], ["https://data.delijn.be/stops/200809", "https://data.delijn.be/stops/203075"], ["https://data.delijn.be/stops/104698", "https://data.delijn.be/stops/104699"], ["https://data.delijn.be/stops/202760", "https://data.delijn.be/stops/203760"], ["https://data.delijn.be/stops/209571", "https://data.delijn.be/stops/209572"], ["https://data.delijn.be/stops/200915", "https://data.delijn.be/stops/200916"], ["https://data.delijn.be/stops/305031", "https://data.delijn.be/stops/305037"], ["https://data.delijn.be/stops/206813", "https://data.delijn.be/stops/206855"], ["https://data.delijn.be/stops/502795", "https://data.delijn.be/stops/502933"], ["https://data.delijn.be/stops/208130", "https://data.delijn.be/stops/209129"], ["https://data.delijn.be/stops/402750", "https://data.delijn.be/stops/402767"], ["https://data.delijn.be/stops/403570", "https://data.delijn.be/stops/406836"], ["https://data.delijn.be/stops/207137", "https://data.delijn.be/stops/207469"], ["https://data.delijn.be/stops/409271", "https://data.delijn.be/stops/409299"], ["https://data.delijn.be/stops/105528", "https://data.delijn.be/stops/105532"], ["https://data.delijn.be/stops/306147", "https://data.delijn.be/stops/306150"], ["https://data.delijn.be/stops/402374", "https://data.delijn.be/stops/402447"], ["https://data.delijn.be/stops/208661", "https://data.delijn.be/stops/208725"], ["https://data.delijn.be/stops/505272", "https://data.delijn.be/stops/505276"], ["https://data.delijn.be/stops/302490", "https://data.delijn.be/stops/308836"], ["https://data.delijn.be/stops/201707", "https://data.delijn.be/stops/202443"], ["https://data.delijn.be/stops/502084", "https://data.delijn.be/stops/507120"], ["https://data.delijn.be/stops/300155", "https://data.delijn.be/stops/300156"], ["https://data.delijn.be/stops/400556", "https://data.delijn.be/stops/403226"], ["https://data.delijn.be/stops/301758", "https://data.delijn.be/stops/305948"], ["https://data.delijn.be/stops/305894", "https://data.delijn.be/stops/308141"], ["https://data.delijn.be/stops/307777", "https://data.delijn.be/stops/307893"], ["https://data.delijn.be/stops/405185", "https://data.delijn.be/stops/405205"], ["https://data.delijn.be/stops/502290", "https://data.delijn.be/stops/507290"], ["https://data.delijn.be/stops/204113", "https://data.delijn.be/stops/205111"], ["https://data.delijn.be/stops/105487", "https://data.delijn.be/stops/105496"], ["https://data.delijn.be/stops/201566", "https://data.delijn.be/stops/201665"], ["https://data.delijn.be/stops/204753", "https://data.delijn.be/stops/205620"], ["https://data.delijn.be/stops/502181", "https://data.delijn.be/stops/507181"], ["https://data.delijn.be/stops/103630", "https://data.delijn.be/stops/103763"], ["https://data.delijn.be/stops/503372", "https://data.delijn.be/stops/503443"], ["https://data.delijn.be/stops/201953", "https://data.delijn.be/stops/202459"], ["https://data.delijn.be/stops/206220", "https://data.delijn.be/stops/207201"], ["https://data.delijn.be/stops/200537", "https://data.delijn.be/stops/200538"], ["https://data.delijn.be/stops/202699", "https://data.delijn.be/stops/203698"], ["https://data.delijn.be/stops/208128", "https://data.delijn.be/stops/208816"], ["https://data.delijn.be/stops/502170", "https://data.delijn.be/stops/507573"], ["https://data.delijn.be/stops/200278", "https://data.delijn.be/stops/200338"], ["https://data.delijn.be/stops/507798", "https://data.delijn.be/stops/508813"], ["https://data.delijn.be/stops/505319", "https://data.delijn.be/stops/505739"], ["https://data.delijn.be/stops/404360", "https://data.delijn.be/stops/408762"], ["https://data.delijn.be/stops/202153", "https://data.delijn.be/stops/202154"], ["https://data.delijn.be/stops/202161", "https://data.delijn.be/stops/203633"], ["https://data.delijn.be/stops/404300", "https://data.delijn.be/stops/409576"], ["https://data.delijn.be/stops/202276", "https://data.delijn.be/stops/210659"], ["https://data.delijn.be/stops/406718", "https://data.delijn.be/stops/408370"], ["https://data.delijn.be/stops/305430", "https://data.delijn.be/stops/305510"], ["https://data.delijn.be/stops/300278", "https://data.delijn.be/stops/301323"], ["https://data.delijn.be/stops/301711", "https://data.delijn.be/stops/301712"], ["https://data.delijn.be/stops/108539", "https://data.delijn.be/stops/108541"], ["https://data.delijn.be/stops/504940", "https://data.delijn.be/stops/509946"], ["https://data.delijn.be/stops/300298", "https://data.delijn.be/stops/306092"], ["https://data.delijn.be/stops/105846", "https://data.delijn.be/stops/105848"], ["https://data.delijn.be/stops/502005", "https://data.delijn.be/stops/505742"], ["https://data.delijn.be/stops/302368", "https://data.delijn.be/stops/302369"], ["https://data.delijn.be/stops/407899", "https://data.delijn.be/stops/407986"], ["https://data.delijn.be/stops/208314", "https://data.delijn.be/stops/209314"], ["https://data.delijn.be/stops/501372", "https://data.delijn.be/stops/506372"], ["https://data.delijn.be/stops/504595", "https://data.delijn.be/stops/509595"], ["https://data.delijn.be/stops/210057", "https://data.delijn.be/stops/211057"], ["https://data.delijn.be/stops/300944", "https://data.delijn.be/stops/300945"], ["https://data.delijn.be/stops/205239", "https://data.delijn.be/stops/207898"], ["https://data.delijn.be/stops/101474", "https://data.delijn.be/stops/109248"], ["https://data.delijn.be/stops/207473", "https://data.delijn.be/stops/207477"], ["https://data.delijn.be/stops/206238", "https://data.delijn.be/stops/206813"], ["https://data.delijn.be/stops/306069", "https://data.delijn.be/stops/306719"], ["https://data.delijn.be/stops/206068", "https://data.delijn.be/stops/207040"], ["https://data.delijn.be/stops/202028", "https://data.delijn.be/stops/211025"], ["https://data.delijn.be/stops/208184", "https://data.delijn.be/stops/208758"], ["https://data.delijn.be/stops/501519", "https://data.delijn.be/stops/510003"], ["https://data.delijn.be/stops/101686", "https://data.delijn.be/stops/101688"], ["https://data.delijn.be/stops/102182", "https://data.delijn.be/stops/105995"], ["https://data.delijn.be/stops/404953", "https://data.delijn.be/stops/404955"], ["https://data.delijn.be/stops/302687", "https://data.delijn.be/stops/302696"], ["https://data.delijn.be/stops/106229", "https://data.delijn.be/stops/106323"], ["https://data.delijn.be/stops/408666", "https://data.delijn.be/stops/408750"], ["https://data.delijn.be/stops/503270", "https://data.delijn.be/stops/505130"], ["https://data.delijn.be/stops/501768", "https://data.delijn.be/stops/507484"], ["https://data.delijn.be/stops/204056", "https://data.delijn.be/stops/205056"], ["https://data.delijn.be/stops/107125", "https://data.delijn.be/stops/108165"], ["https://data.delijn.be/stops/201385", "https://data.delijn.be/stops/202008"], ["https://data.delijn.be/stops/408675", "https://data.delijn.be/stops/408706"], ["https://data.delijn.be/stops/400598", "https://data.delijn.be/stops/404059"], ["https://data.delijn.be/stops/405025", "https://data.delijn.be/stops/405078"], ["https://data.delijn.be/stops/106337", "https://data.delijn.be/stops/106339"], ["https://data.delijn.be/stops/307306", "https://data.delijn.be/stops/307308"], ["https://data.delijn.be/stops/205482", "https://data.delijn.be/stops/205620"], ["https://data.delijn.be/stops/102077", "https://data.delijn.be/stops/105992"], ["https://data.delijn.be/stops/307429", "https://data.delijn.be/stops/308590"], ["https://data.delijn.be/stops/301466", "https://data.delijn.be/stops/308071"], ["https://data.delijn.be/stops/207488", "https://data.delijn.be/stops/207647"], ["https://data.delijn.be/stops/405863", "https://data.delijn.be/stops/405888"], ["https://data.delijn.be/stops/400775", "https://data.delijn.be/stops/402235"], ["https://data.delijn.be/stops/106007", "https://data.delijn.be/stops/106008"], ["https://data.delijn.be/stops/307961", "https://data.delijn.be/stops/308072"], ["https://data.delijn.be/stops/101013", "https://data.delijn.be/stops/109771"], ["https://data.delijn.be/stops/401074", "https://data.delijn.be/stops/401164"], ["https://data.delijn.be/stops/504856", "https://data.delijn.be/stops/508126"], ["https://data.delijn.be/stops/406285", "https://data.delijn.be/stops/409386"], ["https://data.delijn.be/stops/504653", "https://data.delijn.be/stops/509653"], ["https://data.delijn.be/stops/303393", "https://data.delijn.be/stops/308892"], ["https://data.delijn.be/stops/202314", "https://data.delijn.be/stops/203314"], ["https://data.delijn.be/stops/301896", "https://data.delijn.be/stops/304280"], ["https://data.delijn.be/stops/206186", "https://data.delijn.be/stops/206956"], ["https://data.delijn.be/stops/102889", "https://data.delijn.be/stops/108800"], ["https://data.delijn.be/stops/400162", "https://data.delijn.be/stops/400163"], ["https://data.delijn.be/stops/302373", "https://data.delijn.be/stops/302377"], ["https://data.delijn.be/stops/406110", "https://data.delijn.be/stops/406132"], ["https://data.delijn.be/stops/103467", "https://data.delijn.be/stops/106687"], ["https://data.delijn.be/stops/202483", "https://data.delijn.be/stops/203340"], ["https://data.delijn.be/stops/200482", "https://data.delijn.be/stops/202895"], ["https://data.delijn.be/stops/503593", "https://data.delijn.be/stops/503597"], ["https://data.delijn.be/stops/307441", "https://data.delijn.be/stops/307443"], ["https://data.delijn.be/stops/208551", "https://data.delijn.be/stops/208558"], ["https://data.delijn.be/stops/102063", "https://data.delijn.be/stops/102067"], ["https://data.delijn.be/stops/502232", "https://data.delijn.be/stops/507232"], ["https://data.delijn.be/stops/208223", "https://data.delijn.be/stops/209220"], ["https://data.delijn.be/stops/405930", "https://data.delijn.be/stops/405978"], ["https://data.delijn.be/stops/301992", "https://data.delijn.be/stops/303281"], ["https://data.delijn.be/stops/105593", "https://data.delijn.be/stops/105594"], ["https://data.delijn.be/stops/304399", "https://data.delijn.be/stops/307400"], ["https://data.delijn.be/stops/408098", "https://data.delijn.be/stops/408099"], ["https://data.delijn.be/stops/407070", "https://data.delijn.be/stops/407778"], ["https://data.delijn.be/stops/502929", "https://data.delijn.be/stops/507915"], ["https://data.delijn.be/stops/205996", "https://data.delijn.be/stops/206049"], ["https://data.delijn.be/stops/302919", "https://data.delijn.be/stops/303986"], ["https://data.delijn.be/stops/102355", "https://data.delijn.be/stops/105555"], ["https://data.delijn.be/stops/303735", "https://data.delijn.be/stops/307464"], ["https://data.delijn.be/stops/507209", "https://data.delijn.be/stops/507746"], ["https://data.delijn.be/stops/502554", "https://data.delijn.be/stops/507666"], ["https://data.delijn.be/stops/503205", "https://data.delijn.be/stops/508205"], ["https://data.delijn.be/stops/408002", "https://data.delijn.be/stops/408237"], ["https://data.delijn.be/stops/503927", "https://data.delijn.be/stops/505265"], ["https://data.delijn.be/stops/504356", "https://data.delijn.be/stops/505995"], ["https://data.delijn.be/stops/202981", "https://data.delijn.be/stops/203981"], ["https://data.delijn.be/stops/408713", "https://data.delijn.be/stops/408721"], ["https://data.delijn.be/stops/408633", "https://data.delijn.be/stops/410192"], ["https://data.delijn.be/stops/200555", "https://data.delijn.be/stops/201840"], ["https://data.delijn.be/stops/206744", "https://data.delijn.be/stops/207710"], ["https://data.delijn.be/stops/500945", "https://data.delijn.be/stops/504411"], ["https://data.delijn.be/stops/208305", "https://data.delijn.be/stops/209304"], ["https://data.delijn.be/stops/208724", "https://data.delijn.be/stops/209664"], ["https://data.delijn.be/stops/107220", "https://data.delijn.be/stops/107222"], ["https://data.delijn.be/stops/300840", "https://data.delijn.be/stops/304565"], ["https://data.delijn.be/stops/201645", "https://data.delijn.be/stops/203742"], ["https://data.delijn.be/stops/502805", "https://data.delijn.be/stops/505662"], ["https://data.delijn.be/stops/503093", "https://data.delijn.be/stops/507620"], ["https://data.delijn.be/stops/402068", "https://data.delijn.be/stops/402209"], ["https://data.delijn.be/stops/101025", "https://data.delijn.be/stops/101210"], ["https://data.delijn.be/stops/504831", "https://data.delijn.be/stops/508865"], ["https://data.delijn.be/stops/501353", "https://data.delijn.be/stops/501565"], ["https://data.delijn.be/stops/402352", "https://data.delijn.be/stops/405565"], ["https://data.delijn.be/stops/502608", "https://data.delijn.be/stops/507609"], ["https://data.delijn.be/stops/108065", "https://data.delijn.be/stops/109145"], ["https://data.delijn.be/stops/301596", "https://data.delijn.be/stops/301621"], ["https://data.delijn.be/stops/101830", "https://data.delijn.be/stops/103338"], ["https://data.delijn.be/stops/102785", "https://data.delijn.be/stops/102795"], ["https://data.delijn.be/stops/501231", "https://data.delijn.be/stops/506248"], ["https://data.delijn.be/stops/209341", "https://data.delijn.be/stops/218028"], ["https://data.delijn.be/stops/504501", "https://data.delijn.be/stops/509503"], ["https://data.delijn.be/stops/200108", "https://data.delijn.be/stops/201385"], ["https://data.delijn.be/stops/502730", "https://data.delijn.be/stops/506047"], ["https://data.delijn.be/stops/502548", "https://data.delijn.be/stops/505222"], ["https://data.delijn.be/stops/400587", "https://data.delijn.be/stops/400610"], ["https://data.delijn.be/stops/408674", "https://data.delijn.be/stops/408812"], ["https://data.delijn.be/stops/202875", "https://data.delijn.be/stops/203347"], ["https://data.delijn.be/stops/206116", "https://data.delijn.be/stops/207114"], ["https://data.delijn.be/stops/104941", "https://data.delijn.be/stops/400431"], ["https://data.delijn.be/stops/401458", "https://data.delijn.be/stops/401574"], ["https://data.delijn.be/stops/101488", "https://data.delijn.be/stops/109561"], ["https://data.delijn.be/stops/405071", "https://data.delijn.be/stops/408372"], ["https://data.delijn.be/stops/504737", "https://data.delijn.be/stops/509505"], ["https://data.delijn.be/stops/106923", "https://data.delijn.be/stops/106925"], ["https://data.delijn.be/stops/103352", "https://data.delijn.be/stops/104860"], ["https://data.delijn.be/stops/306851", "https://data.delijn.be/stops/306852"], ["https://data.delijn.be/stops/505261", "https://data.delijn.be/stops/508224"], ["https://data.delijn.be/stops/401401", "https://data.delijn.be/stops/304190"], ["https://data.delijn.be/stops/303693", "https://data.delijn.be/stops/303698"], ["https://data.delijn.be/stops/105757", "https://data.delijn.be/stops/109810"], ["https://data.delijn.be/stops/504102", "https://data.delijn.be/stops/504706"], ["https://data.delijn.be/stops/200142", "https://data.delijn.be/stops/200781"], ["https://data.delijn.be/stops/400481", "https://data.delijn.be/stops/408695"], ["https://data.delijn.be/stops/503848", "https://data.delijn.be/stops/507958"], ["https://data.delijn.be/stops/105683", "https://data.delijn.be/stops/105686"], ["https://data.delijn.be/stops/104844", "https://data.delijn.be/stops/105747"], ["https://data.delijn.be/stops/201164", "https://data.delijn.be/stops/208727"], ["https://data.delijn.be/stops/208462", "https://data.delijn.be/stops/209462"], ["https://data.delijn.be/stops/200075", "https://data.delijn.be/stops/201075"], ["https://data.delijn.be/stops/208208", "https://data.delijn.be/stops/209208"], ["https://data.delijn.be/stops/305794", "https://data.delijn.be/stops/305796"], ["https://data.delijn.be/stops/401199", "https://data.delijn.be/stops/401207"], ["https://data.delijn.be/stops/300415", "https://data.delijn.be/stops/300420"], ["https://data.delijn.be/stops/400519", "https://data.delijn.be/stops/410109"], ["https://data.delijn.be/stops/206885", "https://data.delijn.be/stops/207353"], ["https://data.delijn.be/stops/402387", "https://data.delijn.be/stops/402490"], ["https://data.delijn.be/stops/300140", "https://data.delijn.be/stops/306819"], ["https://data.delijn.be/stops/104958", "https://data.delijn.be/stops/104959"], ["https://data.delijn.be/stops/505973", "https://data.delijn.be/stops/509817"], ["https://data.delijn.be/stops/503109", "https://data.delijn.be/stops/503425"], ["https://data.delijn.be/stops/208628", "https://data.delijn.be/stops/209629"], ["https://data.delijn.be/stops/301503", "https://data.delijn.be/stops/301508"], ["https://data.delijn.be/stops/502648", "https://data.delijn.be/stops/507049"], ["https://data.delijn.be/stops/300263", "https://data.delijn.be/stops/302149"], ["https://data.delijn.be/stops/505985", "https://data.delijn.be/stops/509253"], ["https://data.delijn.be/stops/200139", "https://data.delijn.be/stops/200140"], ["https://data.delijn.be/stops/505030", "https://data.delijn.be/stops/506046"], ["https://data.delijn.be/stops/102422", "https://data.delijn.be/stops/106995"], ["https://data.delijn.be/stops/400446", "https://data.delijn.be/stops/400449"], ["https://data.delijn.be/stops/305979", "https://data.delijn.be/stops/305980"], ["https://data.delijn.be/stops/206169", "https://data.delijn.be/stops/303847"], ["https://data.delijn.be/stops/104646", "https://data.delijn.be/stops/108052"], ["https://data.delijn.be/stops/105967", "https://data.delijn.be/stops/105971"], ["https://data.delijn.be/stops/302289", "https://data.delijn.be/stops/307736"], ["https://data.delijn.be/stops/206029", "https://data.delijn.be/stops/207801"], ["https://data.delijn.be/stops/409723", "https://data.delijn.be/stops/409724"], ["https://data.delijn.be/stops/102513", "https://data.delijn.be/stops/102518"], ["https://data.delijn.be/stops/402574", "https://data.delijn.be/stops/402581"], ["https://data.delijn.be/stops/107327", "https://data.delijn.be/stops/107329"], ["https://data.delijn.be/stops/205425", "https://data.delijn.be/stops/205434"], ["https://data.delijn.be/stops/403953", "https://data.delijn.be/stops/404027"], ["https://data.delijn.be/stops/303088", "https://data.delijn.be/stops/303090"], ["https://data.delijn.be/stops/305263", "https://data.delijn.be/stops/305264"], ["https://data.delijn.be/stops/208652", "https://data.delijn.be/stops/208653"], ["https://data.delijn.be/stops/303567", "https://data.delijn.be/stops/307987"], ["https://data.delijn.be/stops/503278", "https://data.delijn.be/stops/505954"], ["https://data.delijn.be/stops/208528", "https://data.delijn.be/stops/209517"], ["https://data.delijn.be/stops/101030", "https://data.delijn.be/stops/105770"], ["https://data.delijn.be/stops/206129", "https://data.delijn.be/stops/207129"], ["https://data.delijn.be/stops/406606", "https://data.delijn.be/stops/406643"], ["https://data.delijn.be/stops/307545", "https://data.delijn.be/stops/307579"], ["https://data.delijn.be/stops/302283", "https://data.delijn.be/stops/302299"], ["https://data.delijn.be/stops/106735", "https://data.delijn.be/stops/107198"], ["https://data.delijn.be/stops/502296", "https://data.delijn.be/stops/505353"], ["https://data.delijn.be/stops/307940", "https://data.delijn.be/stops/308777"], ["https://data.delijn.be/stops/502093", "https://data.delijn.be/stops/502128"], ["https://data.delijn.be/stops/206180", "https://data.delijn.be/stops/207957"], ["https://data.delijn.be/stops/105926", "https://data.delijn.be/stops/109723"], ["https://data.delijn.be/stops/402551", "https://data.delijn.be/stops/405504"], ["https://data.delijn.be/stops/305413", "https://data.delijn.be/stops/305925"], ["https://data.delijn.be/stops/404332", "https://data.delijn.be/stops/404382"], ["https://data.delijn.be/stops/101204", "https://data.delijn.be/stops/205542"], ["https://data.delijn.be/stops/503241", "https://data.delijn.be/stops/503965"], ["https://data.delijn.be/stops/103116", "https://data.delijn.be/stops/107369"], ["https://data.delijn.be/stops/405149", "https://data.delijn.be/stops/405233"], ["https://data.delijn.be/stops/101060", "https://data.delijn.be/stops/106012"], ["https://data.delijn.be/stops/301653", "https://data.delijn.be/stops/306143"], ["https://data.delijn.be/stops/101556", "https://data.delijn.be/stops/102424"], ["https://data.delijn.be/stops/501051", "https://data.delijn.be/stops/502107"], ["https://data.delijn.be/stops/104411", "https://data.delijn.be/stops/104412"], ["https://data.delijn.be/stops/501760", "https://data.delijn.be/stops/506775"], ["https://data.delijn.be/stops/101395", "https://data.delijn.be/stops/103085"], ["https://data.delijn.be/stops/402049", "https://data.delijn.be/stops/402202"], ["https://data.delijn.be/stops/105731", "https://data.delijn.be/stops/105733"], ["https://data.delijn.be/stops/402580", "https://data.delijn.be/stops/402581"], ["https://data.delijn.be/stops/304642", "https://data.delijn.be/stops/305388"], ["https://data.delijn.be/stops/206209", "https://data.delijn.be/stops/206210"], ["https://data.delijn.be/stops/200386", "https://data.delijn.be/stops/200387"], ["https://data.delijn.be/stops/200343", "https://data.delijn.be/stops/211009"], ["https://data.delijn.be/stops/505799", "https://data.delijn.be/stops/509625"], ["https://data.delijn.be/stops/302141", "https://data.delijn.be/stops/307580"], ["https://data.delijn.be/stops/505045", "https://data.delijn.be/stops/506230"], ["https://data.delijn.be/stops/405835", "https://data.delijn.be/stops/407361"], ["https://data.delijn.be/stops/203384", "https://data.delijn.be/stops/203385"], ["https://data.delijn.be/stops/202179", "https://data.delijn.be/stops/203178"], ["https://data.delijn.be/stops/407833", "https://data.delijn.be/stops/407850"], ["https://data.delijn.be/stops/503082", "https://data.delijn.be/stops/508508"], ["https://data.delijn.be/stops/503225", "https://data.delijn.be/stops/508226"], ["https://data.delijn.be/stops/408016", "https://data.delijn.be/stops/408043"], ["https://data.delijn.be/stops/301885", "https://data.delijn.be/stops/301889"], ["https://data.delijn.be/stops/504909", "https://data.delijn.be/stops/508909"], ["https://data.delijn.be/stops/205192", "https://data.delijn.be/stops/205193"], ["https://data.delijn.be/stops/401509", "https://data.delijn.be/stops/402033"], ["https://data.delijn.be/stops/400330", "https://data.delijn.be/stops/400331"], ["https://data.delijn.be/stops/105762", "https://data.delijn.be/stops/109806"], ["https://data.delijn.be/stops/103019", "https://data.delijn.be/stops/107228"], ["https://data.delijn.be/stops/304383", "https://data.delijn.be/stops/304405"], ["https://data.delijn.be/stops/101748", "https://data.delijn.be/stops/104338"], ["https://data.delijn.be/stops/504705", "https://data.delijn.be/stops/504737"], ["https://data.delijn.be/stops/303436", "https://data.delijn.be/stops/307932"], ["https://data.delijn.be/stops/202738", "https://data.delijn.be/stops/209693"], ["https://data.delijn.be/stops/304972", "https://data.delijn.be/stops/308083"], ["https://data.delijn.be/stops/206854", "https://data.delijn.be/stops/207854"], ["https://data.delijn.be/stops/305483", "https://data.delijn.be/stops/308551"], ["https://data.delijn.be/stops/206094", "https://data.delijn.be/stops/206148"], ["https://data.delijn.be/stops/305149", "https://data.delijn.be/stops/305198"], ["https://data.delijn.be/stops/405673", "https://data.delijn.be/stops/409492"], ["https://data.delijn.be/stops/300729", "https://data.delijn.be/stops/304943"], ["https://data.delijn.be/stops/208498", "https://data.delijn.be/stops/209471"], ["https://data.delijn.be/stops/404446", "https://data.delijn.be/stops/404451"], ["https://data.delijn.be/stops/406122", "https://data.delijn.be/stops/406124"], ["https://data.delijn.be/stops/503590", "https://data.delijn.be/stops/505097"], ["https://data.delijn.be/stops/200501", "https://data.delijn.be/stops/201651"], ["https://data.delijn.be/stops/504517", "https://data.delijn.be/stops/509517"], ["https://data.delijn.be/stops/104598", "https://data.delijn.be/stops/107427"], ["https://data.delijn.be/stops/201676", "https://data.delijn.be/stops/201682"], ["https://data.delijn.be/stops/302627", "https://data.delijn.be/stops/302635"], ["https://data.delijn.be/stops/405222", "https://data.delijn.be/stops/405288"], ["https://data.delijn.be/stops/106091", "https://data.delijn.be/stops/106092"], ["https://data.delijn.be/stops/407963", "https://data.delijn.be/stops/408427"], ["https://data.delijn.be/stops/305830", "https://data.delijn.be/stops/305955"], ["https://data.delijn.be/stops/501205", "https://data.delijn.be/stops/506206"], ["https://data.delijn.be/stops/503168", "https://data.delijn.be/stops/508167"], ["https://data.delijn.be/stops/202175", "https://data.delijn.be/stops/203175"], ["https://data.delijn.be/stops/208543", "https://data.delijn.be/stops/208559"], ["https://data.delijn.be/stops/503009", "https://data.delijn.be/stops/508020"], ["https://data.delijn.be/stops/505085", "https://data.delijn.be/stops/505086"], ["https://data.delijn.be/stops/404647", "https://data.delijn.be/stops/406915"], ["https://data.delijn.be/stops/400807", "https://data.delijn.be/stops/400854"], ["https://data.delijn.be/stops/504210", "https://data.delijn.be/stops/504868"], ["https://data.delijn.be/stops/408649", "https://data.delijn.be/stops/410150"], ["https://data.delijn.be/stops/505276", "https://data.delijn.be/stops/508332"], ["https://data.delijn.be/stops/104133", "https://data.delijn.be/stops/104602"], ["https://data.delijn.be/stops/302106", "https://data.delijn.be/stops/302144"], ["https://data.delijn.be/stops/202347", "https://data.delijn.be/stops/209710"], ["https://data.delijn.be/stops/106213", "https://data.delijn.be/stops/109193"], ["https://data.delijn.be/stops/503415", "https://data.delijn.be/stops/508109"], ["https://data.delijn.be/stops/302663", "https://data.delijn.be/stops/302664"], ["https://data.delijn.be/stops/505218", "https://data.delijn.be/stops/505897"], ["https://data.delijn.be/stops/505180", "https://data.delijn.be/stops/507354"], ["https://data.delijn.be/stops/503199", "https://data.delijn.be/stops/508196"], ["https://data.delijn.be/stops/404177", "https://data.delijn.be/stops/404196"], ["https://data.delijn.be/stops/105244", "https://data.delijn.be/stops/109977"], ["https://data.delijn.be/stops/501017", "https://data.delijn.be/stops/505835"], ["https://data.delijn.be/stops/101892", "https://data.delijn.be/stops/104966"], ["https://data.delijn.be/stops/410285", "https://data.delijn.be/stops/410326"], ["https://data.delijn.be/stops/104054", "https://data.delijn.be/stops/108903"], ["https://data.delijn.be/stops/307756", "https://data.delijn.be/stops/307757"], ["https://data.delijn.be/stops/107223", "https://data.delijn.be/stops/107224"], ["https://data.delijn.be/stops/205983", "https://data.delijn.be/stops/208807"], ["https://data.delijn.be/stops/409054", "https://data.delijn.be/stops/409060"], ["https://data.delijn.be/stops/502691", "https://data.delijn.be/stops/502763"], ["https://data.delijn.be/stops/504811", "https://data.delijn.be/stops/508305"], ["https://data.delijn.be/stops/302308", "https://data.delijn.be/stops/304099"], ["https://data.delijn.be/stops/403500", "https://data.delijn.be/stops/410220"], ["https://data.delijn.be/stops/503454", "https://data.delijn.be/stops/503470"], ["https://data.delijn.be/stops/204724", "https://data.delijn.be/stops/205723"], ["https://data.delijn.be/stops/502748", "https://data.delijn.be/stops/507611"], ["https://data.delijn.be/stops/200022", "https://data.delijn.be/stops/201101"], ["https://data.delijn.be/stops/200734", "https://data.delijn.be/stops/202123"], ["https://data.delijn.be/stops/505062", "https://data.delijn.be/stops/505652"], ["https://data.delijn.be/stops/508758", "https://data.delijn.be/stops/509743"], ["https://data.delijn.be/stops/400133", "https://data.delijn.be/stops/409199"], ["https://data.delijn.be/stops/403644", "https://data.delijn.be/stops/407515"], ["https://data.delijn.be/stops/201645", "https://data.delijn.be/stops/203777"], ["https://data.delijn.be/stops/208050", "https://data.delijn.be/stops/209658"], ["https://data.delijn.be/stops/409077", "https://data.delijn.be/stops/409085"], ["https://data.delijn.be/stops/502030", "https://data.delijn.be/stops/507030"], ["https://data.delijn.be/stops/405607", "https://data.delijn.be/stops/406470"], ["https://data.delijn.be/stops/208017", "https://data.delijn.be/stops/208021"], ["https://data.delijn.be/stops/505199", "https://data.delijn.be/stops/505217"], ["https://data.delijn.be/stops/301426", "https://data.delijn.be/stops/306935"], ["https://data.delijn.be/stops/304240", "https://data.delijn.be/stops/304522"], ["https://data.delijn.be/stops/503342", "https://data.delijn.be/stops/505629"], ["https://data.delijn.be/stops/407673", "https://data.delijn.be/stops/407676"], ["https://data.delijn.be/stops/505847", "https://data.delijn.be/stops/508091"], ["https://data.delijn.be/stops/106333", "https://data.delijn.be/stops/106336"], ["https://data.delijn.be/stops/306875", "https://data.delijn.be/stops/307423"], ["https://data.delijn.be/stops/406294", "https://data.delijn.be/stops/406420"], ["https://data.delijn.be/stops/104619", "https://data.delijn.be/stops/205447"], ["https://data.delijn.be/stops/501195", "https://data.delijn.be/stops/501197"], ["https://data.delijn.be/stops/204098", "https://data.delijn.be/stops/205224"], ["https://data.delijn.be/stops/302210", "https://data.delijn.be/stops/302211"], ["https://data.delijn.be/stops/503518", "https://data.delijn.be/stops/508475"], ["https://data.delijn.be/stops/206121", "https://data.delijn.be/stops/207139"], ["https://data.delijn.be/stops/102239", "https://data.delijn.be/stops/102907"], ["https://data.delijn.be/stops/306385", "https://data.delijn.be/stops/307217"], ["https://data.delijn.be/stops/210061", "https://data.delijn.be/stops/211060"], ["https://data.delijn.be/stops/307969", "https://data.delijn.be/stops/308447"], ["https://data.delijn.be/stops/503271", "https://data.delijn.be/stops/508038"], ["https://data.delijn.be/stops/208759", "https://data.delijn.be/stops/209180"], ["https://data.delijn.be/stops/502105", "https://data.delijn.be/stops/502127"], ["https://data.delijn.be/stops/404838", "https://data.delijn.be/stops/405227"], ["https://data.delijn.be/stops/406086", "https://data.delijn.be/stops/406087"], ["https://data.delijn.be/stops/205531", "https://data.delijn.be/stops/205533"], ["https://data.delijn.be/stops/103729", "https://data.delijn.be/stops/108532"], ["https://data.delijn.be/stops/203004", "https://data.delijn.be/stops/203764"], ["https://data.delijn.be/stops/503142", "https://data.delijn.be/stops/508142"], ["https://data.delijn.be/stops/401867", "https://data.delijn.be/stops/406283"], ["https://data.delijn.be/stops/104596", "https://data.delijn.be/stops/106839"], ["https://data.delijn.be/stops/403938", "https://data.delijn.be/stops/403985"], ["https://data.delijn.be/stops/104896", "https://data.delijn.be/stops/105312"], ["https://data.delijn.be/stops/302587", "https://data.delijn.be/stops/302606"], ["https://data.delijn.be/stops/304392", "https://data.delijn.be/stops/305041"], ["https://data.delijn.be/stops/407991", "https://data.delijn.be/stops/408168"], ["https://data.delijn.be/stops/403964", "https://data.delijn.be/stops/406007"], ["https://data.delijn.be/stops/402134", "https://data.delijn.be/stops/402142"], ["https://data.delijn.be/stops/503279", "https://data.delijn.be/stops/503288"], ["https://data.delijn.be/stops/300065", "https://data.delijn.be/stops/307443"], ["https://data.delijn.be/stops/102085", "https://data.delijn.be/stops/102820"], ["https://data.delijn.be/stops/206745", "https://data.delijn.be/stops/207745"], ["https://data.delijn.be/stops/204414", "https://data.delijn.be/stops/205405"], ["https://data.delijn.be/stops/105555", "https://data.delijn.be/stops/108980"], ["https://data.delijn.be/stops/207755", "https://data.delijn.be/stops/208192"], ["https://data.delijn.be/stops/203580", "https://data.delijn.be/stops/203581"], ["https://data.delijn.be/stops/204716", "https://data.delijn.be/stops/205064"], ["https://data.delijn.be/stops/408579", "https://data.delijn.be/stops/408584"], ["https://data.delijn.be/stops/505155", "https://data.delijn.be/stops/506085"], ["https://data.delijn.be/stops/207123", "https://data.delijn.be/stops/306720"], ["https://data.delijn.be/stops/104899", "https://data.delijn.be/stops/109591"], ["https://data.delijn.be/stops/406066", "https://data.delijn.be/stops/406071"], ["https://data.delijn.be/stops/304231", "https://data.delijn.be/stops/304686"], ["https://data.delijn.be/stops/207772", "https://data.delijn.be/stops/208739"], ["https://data.delijn.be/stops/305219", "https://data.delijn.be/stops/305988"], ["https://data.delijn.be/stops/200261", "https://data.delijn.be/stops/201947"], ["https://data.delijn.be/stops/307544", "https://data.delijn.be/stops/307546"], ["https://data.delijn.be/stops/201564", "https://data.delijn.be/stops/210019"], ["https://data.delijn.be/stops/306020", "https://data.delijn.be/stops/306021"], ["https://data.delijn.be/stops/206637", "https://data.delijn.be/stops/206638"], ["https://data.delijn.be/stops/206525", "https://data.delijn.be/stops/207524"], ["https://data.delijn.be/stops/200570", "https://data.delijn.be/stops/201572"], ["https://data.delijn.be/stops/502027", "https://data.delijn.be/stops/507041"], ["https://data.delijn.be/stops/106232", "https://data.delijn.be/stops/106233"], ["https://data.delijn.be/stops/400113", "https://data.delijn.be/stops/409153"], ["https://data.delijn.be/stops/304522", "https://data.delijn.be/stops/304806"], ["https://data.delijn.be/stops/304649", "https://data.delijn.be/stops/307982"], ["https://data.delijn.be/stops/206168", "https://data.delijn.be/stops/303871"], ["https://data.delijn.be/stops/103377", "https://data.delijn.be/stops/103378"], ["https://data.delijn.be/stops/208162", "https://data.delijn.be/stops/209162"], ["https://data.delijn.be/stops/207900", "https://data.delijn.be/stops/207905"], ["https://data.delijn.be/stops/209679", "https://data.delijn.be/stops/209680"], ["https://data.delijn.be/stops/200669", "https://data.delijn.be/stops/510029"], ["https://data.delijn.be/stops/505298", "https://data.delijn.be/stops/509267"], ["https://data.delijn.be/stops/407830", "https://data.delijn.be/stops/407983"], ["https://data.delijn.be/stops/505953", "https://data.delijn.be/stops/508284"], ["https://data.delijn.be/stops/503412", "https://data.delijn.be/stops/503951"], ["https://data.delijn.be/stops/500555", "https://data.delijn.be/stops/507210"], ["https://data.delijn.be/stops/109729", "https://data.delijn.be/stops/109767"], ["https://data.delijn.be/stops/403255", "https://data.delijn.be/stops/403472"], ["https://data.delijn.be/stops/106018", "https://data.delijn.be/stops/106184"], ["https://data.delijn.be/stops/207763", "https://data.delijn.be/stops/209371"], ["https://data.delijn.be/stops/300319", "https://data.delijn.be/stops/300320"], ["https://data.delijn.be/stops/405372", "https://data.delijn.be/stops/405373"], ["https://data.delijn.be/stops/501050", "https://data.delijn.be/stops/502640"], ["https://data.delijn.be/stops/409681", "https://data.delijn.be/stops/409701"], ["https://data.delijn.be/stops/406208", "https://data.delijn.be/stops/406222"], ["https://data.delijn.be/stops/302034", "https://data.delijn.be/stops/307284"], ["https://data.delijn.be/stops/306343", "https://data.delijn.be/stops/306382"], ["https://data.delijn.be/stops/206705", "https://data.delijn.be/stops/206990"], ["https://data.delijn.be/stops/305682", "https://data.delijn.be/stops/306329"], ["https://data.delijn.be/stops/306096", "https://data.delijn.be/stops/306098"], ["https://data.delijn.be/stops/406596", "https://data.delijn.be/stops/406645"], ["https://data.delijn.be/stops/400145", "https://data.delijn.be/stops/400310"], ["https://data.delijn.be/stops/400599", "https://data.delijn.be/stops/401996"], ["https://data.delijn.be/stops/208799", "https://data.delijn.be/stops/209354"], ["https://data.delijn.be/stops/101810", "https://data.delijn.be/stops/105455"], ["https://data.delijn.be/stops/300601", "https://data.delijn.be/stops/300603"], ["https://data.delijn.be/stops/503286", "https://data.delijn.be/stops/505292"], ["https://data.delijn.be/stops/203851", "https://data.delijn.be/stops/203909"], ["https://data.delijn.be/stops/400823", "https://data.delijn.be/stops/406836"], ["https://data.delijn.be/stops/106422", "https://data.delijn.be/stops/106510"], ["https://data.delijn.be/stops/504349", "https://data.delijn.be/stops/509349"], ["https://data.delijn.be/stops/302599", "https://data.delijn.be/stops/302600"], ["https://data.delijn.be/stops/204458", "https://data.delijn.be/stops/205458"], ["https://data.delijn.be/stops/504348", "https://data.delijn.be/stops/509348"], ["https://data.delijn.be/stops/505351", "https://data.delijn.be/stops/507286"], ["https://data.delijn.be/stops/402546", "https://data.delijn.be/stops/402581"], ["https://data.delijn.be/stops/505438", "https://data.delijn.be/stops/507099"], ["https://data.delijn.be/stops/206596", "https://data.delijn.be/stops/206597"], ["https://data.delijn.be/stops/305380", "https://data.delijn.be/stops/305421"], ["https://data.delijn.be/stops/200906", "https://data.delijn.be/stops/202252"], ["https://data.delijn.be/stops/101379", "https://data.delijn.be/stops/103718"], ["https://data.delijn.be/stops/502302", "https://data.delijn.be/stops/505677"], ["https://data.delijn.be/stops/204372", "https://data.delijn.be/stops/204760"], ["https://data.delijn.be/stops/104135", "https://data.delijn.be/stops/105750"], ["https://data.delijn.be/stops/204016", "https://data.delijn.be/stops/205016"], ["https://data.delijn.be/stops/206619", "https://data.delijn.be/stops/206681"], ["https://data.delijn.be/stops/401648", "https://data.delijn.be/stops/406714"], ["https://data.delijn.be/stops/405775", "https://data.delijn.be/stops/405843"], ["https://data.delijn.be/stops/302837", "https://data.delijn.be/stops/302838"], ["https://data.delijn.be/stops/509382", "https://data.delijn.be/stops/509534"], ["https://data.delijn.be/stops/402311", "https://data.delijn.be/stops/402312"], ["https://data.delijn.be/stops/108685", "https://data.delijn.be/stops/108894"], ["https://data.delijn.be/stops/202104", "https://data.delijn.be/stops/203103"], ["https://data.delijn.be/stops/400274", "https://data.delijn.be/stops/400288"], ["https://data.delijn.be/stops/106096", "https://data.delijn.be/stops/106145"], ["https://data.delijn.be/stops/208309", "https://data.delijn.be/stops/209325"], ["https://data.delijn.be/stops/301314", "https://data.delijn.be/stops/301315"], ["https://data.delijn.be/stops/304266", "https://data.delijn.be/stops/304267"], ["https://data.delijn.be/stops/206391", "https://data.delijn.be/stops/207392"], ["https://data.delijn.be/stops/104722", "https://data.delijn.be/stops/105155"], ["https://data.delijn.be/stops/204386", "https://data.delijn.be/stops/205386"], ["https://data.delijn.be/stops/409263", "https://data.delijn.be/stops/409339"], ["https://data.delijn.be/stops/304512", "https://data.delijn.be/stops/306204"], ["https://data.delijn.be/stops/502138", "https://data.delijn.be/stops/507138"], ["https://data.delijn.be/stops/405308", "https://data.delijn.be/stops/302825"], ["https://data.delijn.be/stops/400565", "https://data.delijn.be/stops/400577"], ["https://data.delijn.be/stops/504954", "https://data.delijn.be/stops/508699"], ["https://data.delijn.be/stops/408836", "https://data.delijn.be/stops/408847"], ["https://data.delijn.be/stops/101941", "https://data.delijn.be/stops/101951"], ["https://data.delijn.be/stops/401751", "https://data.delijn.be/stops/408469"], ["https://data.delijn.be/stops/403199", "https://data.delijn.be/stops/403419"], ["https://data.delijn.be/stops/404411", "https://data.delijn.be/stops/404415"], ["https://data.delijn.be/stops/107718", "https://data.delijn.be/stops/107721"], ["https://data.delijn.be/stops/305109", "https://data.delijn.be/stops/305111"], ["https://data.delijn.be/stops/503824", "https://data.delijn.be/stops/507476"], ["https://data.delijn.be/stops/301179", "https://data.delijn.be/stops/305644"], ["https://data.delijn.be/stops/105303", "https://data.delijn.be/stops/105353"], ["https://data.delijn.be/stops/300637", "https://data.delijn.be/stops/305815"], ["https://data.delijn.be/stops/405311", "https://data.delijn.be/stops/405361"], ["https://data.delijn.be/stops/207286", "https://data.delijn.be/stops/207315"], ["https://data.delijn.be/stops/507047", "https://data.delijn.be/stops/507441"], ["https://data.delijn.be/stops/501309", "https://data.delijn.be/stops/501523"], ["https://data.delijn.be/stops/300257", "https://data.delijn.be/stops/300258"], ["https://data.delijn.be/stops/105266", "https://data.delijn.be/stops/105311"], ["https://data.delijn.be/stops/306277", "https://data.delijn.be/stops/306278"], ["https://data.delijn.be/stops/108612", "https://data.delijn.be/stops/109048"], ["https://data.delijn.be/stops/302552", "https://data.delijn.be/stops/305859"], ["https://data.delijn.be/stops/106425", "https://data.delijn.be/stops/106516"], ["https://data.delijn.be/stops/504515", "https://data.delijn.be/stops/504637"], ["https://data.delijn.be/stops/101687", "https://data.delijn.be/stops/101691"], ["https://data.delijn.be/stops/106064", "https://data.delijn.be/stops/109876"], ["https://data.delijn.be/stops/401435", "https://data.delijn.be/stops/410352"], ["https://data.delijn.be/stops/202630", "https://data.delijn.be/stops/203631"], ["https://data.delijn.be/stops/409478", "https://data.delijn.be/stops/410255"], ["https://data.delijn.be/stops/101474", "https://data.delijn.be/stops/109177"], ["https://data.delijn.be/stops/206487", "https://data.delijn.be/stops/207648"], ["https://data.delijn.be/stops/504052", "https://data.delijn.be/stops/505407"], ["https://data.delijn.be/stops/109171", "https://data.delijn.be/stops/109235"], ["https://data.delijn.be/stops/508055", "https://data.delijn.be/stops/508154"], ["https://data.delijn.be/stops/300261", "https://data.delijn.be/stops/302293"], ["https://data.delijn.be/stops/202266", "https://data.delijn.be/stops/202267"], ["https://data.delijn.be/stops/103631", "https://data.delijn.be/stops/107739"], ["https://data.delijn.be/stops/205779", "https://data.delijn.be/stops/214011"], ["https://data.delijn.be/stops/504834", "https://data.delijn.be/stops/505986"], ["https://data.delijn.be/stops/406203", "https://data.delijn.be/stops/410251"], ["https://data.delijn.be/stops/101161", "https://data.delijn.be/stops/105976"], ["https://data.delijn.be/stops/403678", "https://data.delijn.be/stops/410328"], ["https://data.delijn.be/stops/206258", "https://data.delijn.be/stops/207258"], ["https://data.delijn.be/stops/202620", "https://data.delijn.be/stops/202621"], ["https://data.delijn.be/stops/102693", "https://data.delijn.be/stops/103743"], ["https://data.delijn.be/stops/505708", "https://data.delijn.be/stops/509142"], ["https://data.delijn.be/stops/101533", "https://data.delijn.be/stops/109112"], ["https://data.delijn.be/stops/205130", "https://data.delijn.be/stops/205789"], ["https://data.delijn.be/stops/209164", "https://data.delijn.be/stops/209165"], ["https://data.delijn.be/stops/106677", "https://data.delijn.be/stops/106679"], ["https://data.delijn.be/stops/301263", "https://data.delijn.be/stops/301276"], ["https://data.delijn.be/stops/408672", "https://data.delijn.be/stops/408792"], ["https://data.delijn.be/stops/406100", "https://data.delijn.be/stops/406132"], ["https://data.delijn.be/stops/400206", "https://data.delijn.be/stops/400238"], ["https://data.delijn.be/stops/206032", "https://data.delijn.be/stops/206640"], ["https://data.delijn.be/stops/405797", "https://data.delijn.be/stops/409434"], ["https://data.delijn.be/stops/201736", "https://data.delijn.be/stops/203787"], ["https://data.delijn.be/stops/103201", "https://data.delijn.be/stops/109951"], ["https://data.delijn.be/stops/108708", "https://data.delijn.be/stops/108854"], ["https://data.delijn.be/stops/208992", "https://data.delijn.be/stops/211004"], ["https://data.delijn.be/stops/502235", "https://data.delijn.be/stops/507700"], ["https://data.delijn.be/stops/305085", "https://data.delijn.be/stops/306956"], ["https://data.delijn.be/stops/206909", "https://data.delijn.be/stops/207909"], ["https://data.delijn.be/stops/203737", "https://data.delijn.be/stops/209712"], ["https://data.delijn.be/stops/505212", "https://data.delijn.be/stops/509545"], ["https://data.delijn.be/stops/508561", "https://data.delijn.be/stops/508613"], ["https://data.delijn.be/stops/304267", "https://data.delijn.be/stops/304277"], ["https://data.delijn.be/stops/204978", "https://data.delijn.be/stops/208245"], ["https://data.delijn.be/stops/105135", "https://data.delijn.be/stops/105587"], ["https://data.delijn.be/stops/301318", "https://data.delijn.be/stops/306654"], ["https://data.delijn.be/stops/403259", "https://data.delijn.be/stops/409334"], ["https://data.delijn.be/stops/306290", "https://data.delijn.be/stops/306292"], ["https://data.delijn.be/stops/505774", "https://data.delijn.be/stops/509827"], ["https://data.delijn.be/stops/300836", "https://data.delijn.be/stops/300837"], ["https://data.delijn.be/stops/305735", "https://data.delijn.be/stops/305747"], ["https://data.delijn.be/stops/407675", "https://data.delijn.be/stops/407679"], ["https://data.delijn.be/stops/501300", "https://data.delijn.be/stops/506300"], ["https://data.delijn.be/stops/302198", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/304048", "https://data.delijn.be/stops/304049"], ["https://data.delijn.be/stops/107739", "https://data.delijn.be/stops/107741"], ["https://data.delijn.be/stops/200803", "https://data.delijn.be/stops/200898"], ["https://data.delijn.be/stops/102812", "https://data.delijn.be/stops/102813"], ["https://data.delijn.be/stops/101384", "https://data.delijn.be/stops/101396"], ["https://data.delijn.be/stops/204179", "https://data.delijn.be/stops/207394"], ["https://data.delijn.be/stops/208511", "https://data.delijn.be/stops/209062"], ["https://data.delijn.be/stops/301116", "https://data.delijn.be/stops/302245"], ["https://data.delijn.be/stops/101798", "https://data.delijn.be/stops/300641"], ["https://data.delijn.be/stops/509171", "https://data.delijn.be/stops/509348"], ["https://data.delijn.be/stops/206125", "https://data.delijn.be/stops/207684"], ["https://data.delijn.be/stops/405044", "https://data.delijn.be/stops/405068"], ["https://data.delijn.be/stops/308683", "https://data.delijn.be/stops/308684"], ["https://data.delijn.be/stops/507541", "https://data.delijn.be/stops/507712"], ["https://data.delijn.be/stops/200929", "https://data.delijn.be/stops/200950"], ["https://data.delijn.be/stops/302061", "https://data.delijn.be/stops/302074"], ["https://data.delijn.be/stops/403094", "https://data.delijn.be/stops/403507"], ["https://data.delijn.be/stops/108944", "https://data.delijn.be/stops/108946"], ["https://data.delijn.be/stops/501091", "https://data.delijn.be/stops/506099"], ["https://data.delijn.be/stops/505211", "https://data.delijn.be/stops/505998"], ["https://data.delijn.be/stops/503402", "https://data.delijn.be/stops/509760"], ["https://data.delijn.be/stops/301719", "https://data.delijn.be/stops/303891"], ["https://data.delijn.be/stops/502605", "https://data.delijn.be/stops/505705"], ["https://data.delijn.be/stops/200749", "https://data.delijn.be/stops/201167"], ["https://data.delijn.be/stops/504020", "https://data.delijn.be/stops/505248"], ["https://data.delijn.be/stops/400179", "https://data.delijn.be/stops/400435"], ["https://data.delijn.be/stops/507180", "https://data.delijn.be/stops/507182"], ["https://data.delijn.be/stops/200264", "https://data.delijn.be/stops/200431"], ["https://data.delijn.be/stops/505210", "https://data.delijn.be/stops/509087"], ["https://data.delijn.be/stops/200774", "https://data.delijn.be/stops/503329"], ["https://data.delijn.be/stops/407200", "https://data.delijn.be/stops/407206"], ["https://data.delijn.be/stops/303575", "https://data.delijn.be/stops/304327"], ["https://data.delijn.be/stops/402838", "https://data.delijn.be/stops/409011"], ["https://data.delijn.be/stops/405082", "https://data.delijn.be/stops/405708"], ["https://data.delijn.be/stops/503628", "https://data.delijn.be/stops/508628"], ["https://data.delijn.be/stops/105019", "https://data.delijn.be/stops/105081"], ["https://data.delijn.be/stops/405848", "https://data.delijn.be/stops/405893"], ["https://data.delijn.be/stops/304146", "https://data.delijn.be/stops/307547"], ["https://data.delijn.be/stops/300390", "https://data.delijn.be/stops/300411"], ["https://data.delijn.be/stops/302176", "https://data.delijn.be/stops/308103"], ["https://data.delijn.be/stops/102014", "https://data.delijn.be/stops/105985"], ["https://data.delijn.be/stops/209585", "https://data.delijn.be/stops/209586"], ["https://data.delijn.be/stops/105779", "https://data.delijn.be/stops/105782"], ["https://data.delijn.be/stops/302765", "https://data.delijn.be/stops/304704"], ["https://data.delijn.be/stops/303305", "https://data.delijn.be/stops/307294"], ["https://data.delijn.be/stops/403884", "https://data.delijn.be/stops/406886"], ["https://data.delijn.be/stops/508269", "https://data.delijn.be/stops/508275"], ["https://data.delijn.be/stops/208702", "https://data.delijn.be/stops/209331"], ["https://data.delijn.be/stops/106154", "https://data.delijn.be/stops/106445"], ["https://data.delijn.be/stops/504575", "https://data.delijn.be/stops/505300"], ["https://data.delijn.be/stops/102958", "https://data.delijn.be/stops/103138"], ["https://data.delijn.be/stops/503982", "https://data.delijn.be/stops/508516"], ["https://data.delijn.be/stops/302465", "https://data.delijn.be/stops/302486"], ["https://data.delijn.be/stops/101825", "https://data.delijn.be/stops/101830"], ["https://data.delijn.be/stops/407008", "https://data.delijn.be/stops/407010"], ["https://data.delijn.be/stops/105474", "https://data.delijn.be/stops/105476"], ["https://data.delijn.be/stops/106985", "https://data.delijn.be/stops/106986"], ["https://data.delijn.be/stops/408884", "https://data.delijn.be/stops/408888"], ["https://data.delijn.be/stops/207668", "https://data.delijn.be/stops/208507"], ["https://data.delijn.be/stops/300643", "https://data.delijn.be/stops/300662"], ["https://data.delijn.be/stops/303993", "https://data.delijn.be/stops/308711"], ["https://data.delijn.be/stops/304477", "https://data.delijn.be/stops/304482"], ["https://data.delijn.be/stops/505158", "https://data.delijn.be/stops/508839"], ["https://data.delijn.be/stops/403789", "https://data.delijn.be/stops/408965"], ["https://data.delijn.be/stops/102958", "https://data.delijn.be/stops/107008"], ["https://data.delijn.be/stops/306727", "https://data.delijn.be/stops/306730"], ["https://data.delijn.be/stops/105871", "https://data.delijn.be/stops/105874"], ["https://data.delijn.be/stops/501048", "https://data.delijn.be/stops/506048"], ["https://data.delijn.be/stops/406566", "https://data.delijn.be/stops/406567"], ["https://data.delijn.be/stops/505813", "https://data.delijn.be/stops/509013"], ["https://data.delijn.be/stops/504815", "https://data.delijn.be/stops/508013"], ["https://data.delijn.be/stops/401564", "https://data.delijn.be/stops/401580"], ["https://data.delijn.be/stops/108981", "https://data.delijn.be/stops/109689"], ["https://data.delijn.be/stops/204499", "https://data.delijn.be/stops/205495"], ["https://data.delijn.be/stops/305034", "https://data.delijn.be/stops/305035"], ["https://data.delijn.be/stops/109376", "https://data.delijn.be/stops/109377"], ["https://data.delijn.be/stops/500947", "https://data.delijn.be/stops/505415"], ["https://data.delijn.be/stops/503094", "https://data.delijn.be/stops/508094"], ["https://data.delijn.be/stops/402936", "https://data.delijn.be/stops/405928"], ["https://data.delijn.be/stops/302527", "https://data.delijn.be/stops/302528"], ["https://data.delijn.be/stops/107511", "https://data.delijn.be/stops/107518"], ["https://data.delijn.be/stops/202704", "https://data.delijn.be/stops/203703"], ["https://data.delijn.be/stops/104519", "https://data.delijn.be/stops/107933"], ["https://data.delijn.be/stops/206658", "https://data.delijn.be/stops/207658"], ["https://data.delijn.be/stops/205288", "https://data.delijn.be/stops/205445"], ["https://data.delijn.be/stops/304344", "https://data.delijn.be/stops/306784"], ["https://data.delijn.be/stops/200892", "https://data.delijn.be/stops/505683"], ["https://data.delijn.be/stops/303616", "https://data.delijn.be/stops/304581"], ["https://data.delijn.be/stops/504326", "https://data.delijn.be/stops/509380"], ["https://data.delijn.be/stops/503502", "https://data.delijn.be/stops/508270"], ["https://data.delijn.be/stops/305562", "https://data.delijn.be/stops/308553"], ["https://data.delijn.be/stops/403159", "https://data.delijn.be/stops/407583"], ["https://data.delijn.be/stops/407614", "https://data.delijn.be/stops/407680"], ["https://data.delijn.be/stops/102211", "https://data.delijn.be/stops/106121"], ["https://data.delijn.be/stops/201964", "https://data.delijn.be/stops/209035"], ["https://data.delijn.be/stops/200858", "https://data.delijn.be/stops/200890"], ["https://data.delijn.be/stops/206767", "https://data.delijn.be/stops/207800"], ["https://data.delijn.be/stops/406643", "https://data.delijn.be/stops/407410"], ["https://data.delijn.be/stops/303642", "https://data.delijn.be/stops/304530"], ["https://data.delijn.be/stops/301980", "https://data.delijn.be/stops/303615"], ["https://data.delijn.be/stops/200691", "https://data.delijn.be/stops/201745"], ["https://data.delijn.be/stops/504829", "https://data.delijn.be/stops/509887"], ["https://data.delijn.be/stops/300325", "https://data.delijn.be/stops/307030"], ["https://data.delijn.be/stops/502412", "https://data.delijn.be/stops/507669"], ["https://data.delijn.be/stops/200160", "https://data.delijn.be/stops/200311"], ["https://data.delijn.be/stops/308713", "https://data.delijn.be/stops/308714"], ["https://data.delijn.be/stops/402545", "https://data.delijn.be/stops/404064"], ["https://data.delijn.be/stops/400379", "https://data.delijn.be/stops/406835"], ["https://data.delijn.be/stops/503771", "https://data.delijn.be/stops/504000"], ["https://data.delijn.be/stops/202607", "https://data.delijn.be/stops/211076"], ["https://data.delijn.be/stops/401585", "https://data.delijn.be/stops/401743"], ["https://data.delijn.be/stops/207378", "https://data.delijn.be/stops/207379"], ["https://data.delijn.be/stops/508805", "https://data.delijn.be/stops/509588"], ["https://data.delijn.be/stops/304860", "https://data.delijn.be/stops/307687"], ["https://data.delijn.be/stops/502189", "https://data.delijn.be/stops/507713"], ["https://data.delijn.be/stops/407117", "https://data.delijn.be/stops/407276"], ["https://data.delijn.be/stops/400238", "https://data.delijn.be/stops/410000"], ["https://data.delijn.be/stops/304595", "https://data.delijn.be/stops/304658"], ["https://data.delijn.be/stops/202176", "https://data.delijn.be/stops/203178"], ["https://data.delijn.be/stops/204478", "https://data.delijn.be/stops/205479"], ["https://data.delijn.be/stops/201716", "https://data.delijn.be/stops/202642"], ["https://data.delijn.be/stops/504725", "https://data.delijn.be/stops/505813"], ["https://data.delijn.be/stops/305817", "https://data.delijn.be/stops/305819"], ["https://data.delijn.be/stops/406282", "https://data.delijn.be/stops/406283"], ["https://data.delijn.be/stops/503600", "https://data.delijn.be/stops/508151"], ["https://data.delijn.be/stops/304001", "https://data.delijn.be/stops/306002"], ["https://data.delijn.be/stops/101196", "https://data.delijn.be/stops/101204"], ["https://data.delijn.be/stops/107409", "https://data.delijn.be/stops/107598"], ["https://data.delijn.be/stops/404223", "https://data.delijn.be/stops/405547"], ["https://data.delijn.be/stops/504070", "https://data.delijn.be/stops/504074"], ["https://data.delijn.be/stops/101528", "https://data.delijn.be/stops/109007"], ["https://data.delijn.be/stops/502303", "https://data.delijn.be/stops/505678"], ["https://data.delijn.be/stops/405067", "https://data.delijn.be/stops/405114"], ["https://data.delijn.be/stops/503032", "https://data.delijn.be/stops/508679"], ["https://data.delijn.be/stops/200920", "https://data.delijn.be/stops/203260"], ["https://data.delijn.be/stops/504296", "https://data.delijn.be/stops/504305"], ["https://data.delijn.be/stops/108120", "https://data.delijn.be/stops/108465"], ["https://data.delijn.be/stops/103499", "https://data.delijn.be/stops/106215"], ["https://data.delijn.be/stops/509611", "https://data.delijn.be/stops/509612"], ["https://data.delijn.be/stops/504348", "https://data.delijn.be/stops/504353"], ["https://data.delijn.be/stops/504340", "https://data.delijn.be/stops/509329"], ["https://data.delijn.be/stops/201923", "https://data.delijn.be/stops/206406"], ["https://data.delijn.be/stops/505789", "https://data.delijn.be/stops/508059"], ["https://data.delijn.be/stops/207005", "https://data.delijn.be/stops/207263"], ["https://data.delijn.be/stops/205654", "https://data.delijn.be/stops/205670"], ["https://data.delijn.be/stops/502470", "https://data.delijn.be/stops/502763"], ["https://data.delijn.be/stops/106889", "https://data.delijn.be/stops/107220"], ["https://data.delijn.be/stops/403930", "https://data.delijn.be/stops/403984"], ["https://data.delijn.be/stops/204083", "https://data.delijn.be/stops/205082"], ["https://data.delijn.be/stops/407247", "https://data.delijn.be/stops/407458"], ["https://data.delijn.be/stops/201863", "https://data.delijn.be/stops/203186"], ["https://data.delijn.be/stops/303864", "https://data.delijn.be/stops/303868"], ["https://data.delijn.be/stops/509388", "https://data.delijn.be/stops/509392"], ["https://data.delijn.be/stops/406350", "https://data.delijn.be/stops/408853"], ["https://data.delijn.be/stops/408511", "https://data.delijn.be/stops/408750"], ["https://data.delijn.be/stops/200026", "https://data.delijn.be/stops/210113"], ["https://data.delijn.be/stops/101690", "https://data.delijn.be/stops/107395"], ["https://data.delijn.be/stops/501002", "https://data.delijn.be/stops/506215"], ["https://data.delijn.be/stops/201867", "https://data.delijn.be/stops/210033"], ["https://data.delijn.be/stops/505977", "https://data.delijn.be/stops/509390"], ["https://data.delijn.be/stops/503111", "https://data.delijn.be/stops/505667"], ["https://data.delijn.be/stops/109156", "https://data.delijn.be/stops/109157"], ["https://data.delijn.be/stops/108996", "https://data.delijn.be/stops/108998"], ["https://data.delijn.be/stops/201418", "https://data.delijn.be/stops/202654"], ["https://data.delijn.be/stops/305496", "https://data.delijn.be/stops/305497"], ["https://data.delijn.be/stops/102765", "https://data.delijn.be/stops/102938"], ["https://data.delijn.be/stops/202971", "https://data.delijn.be/stops/203971"], ["https://data.delijn.be/stops/101459", "https://data.delijn.be/stops/109281"], ["https://data.delijn.be/stops/301605", "https://data.delijn.be/stops/301612"], ["https://data.delijn.be/stops/301417", "https://data.delijn.be/stops/307529"], ["https://data.delijn.be/stops/305241", "https://data.delijn.be/stops/305274"], ["https://data.delijn.be/stops/505641", "https://data.delijn.be/stops/508893"], ["https://data.delijn.be/stops/301131", "https://data.delijn.be/stops/301133"], ["https://data.delijn.be/stops/504679", "https://data.delijn.be/stops/504680"], ["https://data.delijn.be/stops/101945", "https://data.delijn.be/stops/101946"], ["https://data.delijn.be/stops/204706", "https://data.delijn.be/stops/204710"], ["https://data.delijn.be/stops/404224", "https://data.delijn.be/stops/404231"], ["https://data.delijn.be/stops/302947", "https://data.delijn.be/stops/302998"], ["https://data.delijn.be/stops/202433", "https://data.delijn.be/stops/203438"], ["https://data.delijn.be/stops/407773", "https://data.delijn.be/stops/304360"], ["https://data.delijn.be/stops/303994", "https://data.delijn.be/stops/307016"], ["https://data.delijn.be/stops/109910", "https://data.delijn.be/stops/109911"], ["https://data.delijn.be/stops/404941", "https://data.delijn.be/stops/404943"], ["https://data.delijn.be/stops/405263", "https://data.delijn.be/stops/405269"], ["https://data.delijn.be/stops/200105", "https://data.delijn.be/stops/201549"], ["https://data.delijn.be/stops/405760", "https://data.delijn.be/stops/302845"], ["https://data.delijn.be/stops/102719", "https://data.delijn.be/stops/108307"], ["https://data.delijn.be/stops/304846", "https://data.delijn.be/stops/307280"], ["https://data.delijn.be/stops/301789", "https://data.delijn.be/stops/302523"], ["https://data.delijn.be/stops/106763", "https://data.delijn.be/stops/106866"], ["https://data.delijn.be/stops/208543", "https://data.delijn.be/stops/209543"], ["https://data.delijn.be/stops/303116", "https://data.delijn.be/stops/304222"], ["https://data.delijn.be/stops/501463", "https://data.delijn.be/stops/506463"], ["https://data.delijn.be/stops/102042", "https://data.delijn.be/stops/206898"], ["https://data.delijn.be/stops/303486", "https://data.delijn.be/stops/303487"], ["https://data.delijn.be/stops/402133", "https://data.delijn.be/stops/402397"], ["https://data.delijn.be/stops/206232", "https://data.delijn.be/stops/300151"], ["https://data.delijn.be/stops/404808", "https://data.delijn.be/stops/404812"], ["https://data.delijn.be/stops/103681", "https://data.delijn.be/stops/104514"], ["https://data.delijn.be/stops/501507", "https://data.delijn.be/stops/506072"], ["https://data.delijn.be/stops/404917", "https://data.delijn.be/stops/404919"], ["https://data.delijn.be/stops/405800", "https://data.delijn.be/stops/406995"], ["https://data.delijn.be/stops/404889", "https://data.delijn.be/stops/404897"], ["https://data.delijn.be/stops/408878", "https://data.delijn.be/stops/408890"], ["https://data.delijn.be/stops/202333", "https://data.delijn.be/stops/502315"], ["https://data.delijn.be/stops/106260", "https://data.delijn.be/stops/106278"], ["https://data.delijn.be/stops/301775", "https://data.delijn.be/stops/301784"], ["https://data.delijn.be/stops/202162", "https://data.delijn.be/stops/202163"], ["https://data.delijn.be/stops/505816", "https://data.delijn.be/stops/508544"], ["https://data.delijn.be/stops/302049", "https://data.delijn.be/stops/302709"], ["https://data.delijn.be/stops/201183", "https://data.delijn.be/stops/211003"], ["https://data.delijn.be/stops/106948", "https://data.delijn.be/stops/108714"], ["https://data.delijn.be/stops/101425", "https://data.delijn.be/stops/101426"], ["https://data.delijn.be/stops/302065", "https://data.delijn.be/stops/302096"], ["https://data.delijn.be/stops/207478", "https://data.delijn.be/stops/207479"], ["https://data.delijn.be/stops/303247", "https://data.delijn.be/stops/303660"], ["https://data.delijn.be/stops/204667", "https://data.delijn.be/stops/205667"], ["https://data.delijn.be/stops/204613", "https://data.delijn.be/stops/204638"], ["https://data.delijn.be/stops/304284", "https://data.delijn.be/stops/306140"], ["https://data.delijn.be/stops/101361", "https://data.delijn.be/stops/101363"], ["https://data.delijn.be/stops/201720", "https://data.delijn.be/stops/202372"], ["https://data.delijn.be/stops/502308", "https://data.delijn.be/stops/502815"], ["https://data.delijn.be/stops/102591", "https://data.delijn.be/stops/108564"], ["https://data.delijn.be/stops/302073", "https://data.delijn.be/stops/305636"], ["https://data.delijn.be/stops/302877", "https://data.delijn.be/stops/302978"], ["https://data.delijn.be/stops/104390", "https://data.delijn.be/stops/108395"], ["https://data.delijn.be/stops/200829", "https://data.delijn.be/stops/505066"], ["https://data.delijn.be/stops/200813", "https://data.delijn.be/stops/208919"], ["https://data.delijn.be/stops/507757", "https://data.delijn.be/stops/507758"], ["https://data.delijn.be/stops/207753", "https://data.delijn.be/stops/207796"], ["https://data.delijn.be/stops/502479", "https://data.delijn.be/stops/505510"], ["https://data.delijn.be/stops/401363", "https://data.delijn.be/stops/401366"], ["https://data.delijn.be/stops/405965", "https://data.delijn.be/stops/405986"], ["https://data.delijn.be/stops/107050", "https://data.delijn.be/stops/107985"], ["https://data.delijn.be/stops/505561", "https://data.delijn.be/stops/506105"], ["https://data.delijn.be/stops/507136", "https://data.delijn.be/stops/507138"], ["https://data.delijn.be/stops/504810", "https://data.delijn.be/stops/508204"], ["https://data.delijn.be/stops/204368", "https://data.delijn.be/stops/205368"], ["https://data.delijn.be/stops/505922", "https://data.delijn.be/stops/507939"], ["https://data.delijn.be/stops/301333", "https://data.delijn.be/stops/306118"], ["https://data.delijn.be/stops/300546", "https://data.delijn.be/stops/307860"], ["https://data.delijn.be/stops/208227", "https://data.delijn.be/stops/209227"], ["https://data.delijn.be/stops/303695", "https://data.delijn.be/stops/305970"], ["https://data.delijn.be/stops/108870", "https://data.delijn.be/stops/108875"], ["https://data.delijn.be/stops/501146", "https://data.delijn.be/stops/506146"], ["https://data.delijn.be/stops/302355", "https://data.delijn.be/stops/302356"], ["https://data.delijn.be/stops/403022", "https://data.delijn.be/stops/403484"], ["https://data.delijn.be/stops/305250", "https://data.delijn.be/stops/308694"], ["https://data.delijn.be/stops/403207", "https://data.delijn.be/stops/403509"], ["https://data.delijn.be/stops/504836", "https://data.delijn.be/stops/505110"], ["https://data.delijn.be/stops/503716", "https://data.delijn.be/stops/508306"], ["https://data.delijn.be/stops/302664", "https://data.delijn.be/stops/302673"], ["https://data.delijn.be/stops/307145", "https://data.delijn.be/stops/307895"], ["https://data.delijn.be/stops/206570", "https://data.delijn.be/stops/206571"], ["https://data.delijn.be/stops/402792", "https://data.delijn.be/stops/402793"], ["https://data.delijn.be/stops/504817", "https://data.delijn.be/stops/509817"], ["https://data.delijn.be/stops/400176", "https://data.delijn.be/stops/400398"], ["https://data.delijn.be/stops/404341", "https://data.delijn.be/stops/404383"], ["https://data.delijn.be/stops/300815", "https://data.delijn.be/stops/308855"], ["https://data.delijn.be/stops/208157", "https://data.delijn.be/stops/208509"], ["https://data.delijn.be/stops/200650", "https://data.delijn.be/stops/202864"], ["https://data.delijn.be/stops/306958", "https://data.delijn.be/stops/306959"], ["https://data.delijn.be/stops/402714", "https://data.delijn.be/stops/402716"], ["https://data.delijn.be/stops/504134", "https://data.delijn.be/stops/504653"], ["https://data.delijn.be/stops/304729", "https://data.delijn.be/stops/305558"], ["https://data.delijn.be/stops/206896", "https://data.delijn.be/stops/207887"], ["https://data.delijn.be/stops/502211", "https://data.delijn.be/stops/505244"], ["https://data.delijn.be/stops/403552", "https://data.delijn.be/stops/410214"], ["https://data.delijn.be/stops/400818", "https://data.delijn.be/stops/400819"], ["https://data.delijn.be/stops/409253", "https://data.delijn.be/stops/409316"], ["https://data.delijn.be/stops/106261", "https://data.delijn.be/stops/106263"], ["https://data.delijn.be/stops/504498", "https://data.delijn.be/stops/504499"], ["https://data.delijn.be/stops/302853", "https://data.delijn.be/stops/308823"], ["https://data.delijn.be/stops/204765", "https://data.delijn.be/stops/205375"], ["https://data.delijn.be/stops/406170", "https://data.delijn.be/stops/406171"], ["https://data.delijn.be/stops/205237", "https://data.delijn.be/stops/206873"], ["https://data.delijn.be/stops/403148", "https://data.delijn.be/stops/403154"], ["https://data.delijn.be/stops/400831", "https://data.delijn.be/stops/407532"], ["https://data.delijn.be/stops/207521", "https://data.delijn.be/stops/207876"], ["https://data.delijn.be/stops/505378", "https://data.delijn.be/stops/508538"], ["https://data.delijn.be/stops/503022", "https://data.delijn.be/stops/508016"], ["https://data.delijn.be/stops/305739", "https://data.delijn.be/stops/307118"], ["https://data.delijn.be/stops/204064", "https://data.delijn.be/stops/204770"], ["https://data.delijn.be/stops/208211", "https://data.delijn.be/stops/209211"], ["https://data.delijn.be/stops/504455", "https://data.delijn.be/stops/504828"], ["https://data.delijn.be/stops/400919", "https://data.delijn.be/stops/407374"], ["https://data.delijn.be/stops/301760", "https://data.delijn.be/stops/301761"], ["https://data.delijn.be/stops/403702", "https://data.delijn.be/stops/403703"], ["https://data.delijn.be/stops/200425", "https://data.delijn.be/stops/202536"], ["https://data.delijn.be/stops/303067", "https://data.delijn.be/stops/303182"], ["https://data.delijn.be/stops/406948", "https://data.delijn.be/stops/409499"], ["https://data.delijn.be/stops/503624", "https://data.delijn.be/stops/503629"], ["https://data.delijn.be/stops/206282", "https://data.delijn.be/stops/207283"], ["https://data.delijn.be/stops/206884", "https://data.delijn.be/stops/207354"], ["https://data.delijn.be/stops/402893", "https://data.delijn.be/stops/302631"], ["https://data.delijn.be/stops/501472", "https://data.delijn.be/stops/501510"], ["https://data.delijn.be/stops/400860", "https://data.delijn.be/stops/406700"], ["https://data.delijn.be/stops/200737", "https://data.delijn.be/stops/202595"], ["https://data.delijn.be/stops/501305", "https://data.delijn.be/stops/501337"], ["https://data.delijn.be/stops/205114", "https://data.delijn.be/stops/205115"], ["https://data.delijn.be/stops/103639", "https://data.delijn.be/stops/107171"], ["https://data.delijn.be/stops/107903", "https://data.delijn.be/stops/107910"], ["https://data.delijn.be/stops/301987", "https://data.delijn.be/stops/304153"], ["https://data.delijn.be/stops/307810", "https://data.delijn.be/stops/308714"], ["https://data.delijn.be/stops/307379", "https://data.delijn.be/stops/307448"], ["https://data.delijn.be/stops/404485", "https://data.delijn.be/stops/404525"], ["https://data.delijn.be/stops/409064", "https://data.delijn.be/stops/409082"], ["https://data.delijn.be/stops/102182", "https://data.delijn.be/stops/103505"], ["https://data.delijn.be/stops/301669", "https://data.delijn.be/stops/304179"], ["https://data.delijn.be/stops/402832", "https://data.delijn.be/stops/409017"], ["https://data.delijn.be/stops/107237", "https://data.delijn.be/stops/108730"], ["https://data.delijn.be/stops/509003", "https://data.delijn.be/stops/509316"], ["https://data.delijn.be/stops/208127", "https://data.delijn.be/stops/209074"], ["https://data.delijn.be/stops/305999", "https://data.delijn.be/stops/306000"], ["https://data.delijn.be/stops/104454", "https://data.delijn.be/stops/104456"], ["https://data.delijn.be/stops/502050", "https://data.delijn.be/stops/502750"], ["https://data.delijn.be/stops/107237", "https://data.delijn.be/stops/107920"], ["https://data.delijn.be/stops/107088", "https://data.delijn.be/stops/107089"], ["https://data.delijn.be/stops/208649", "https://data.delijn.be/stops/209650"], ["https://data.delijn.be/stops/200485", "https://data.delijn.be/stops/201485"], ["https://data.delijn.be/stops/300417", "https://data.delijn.be/stops/300446"], ["https://data.delijn.be/stops/305114", "https://data.delijn.be/stops/305128"], ["https://data.delijn.be/stops/504090", "https://data.delijn.be/stops/509005"], ["https://data.delijn.be/stops/402427", "https://data.delijn.be/stops/402961"], ["https://data.delijn.be/stops/403280", "https://data.delijn.be/stops/404175"], ["https://data.delijn.be/stops/206675", "https://data.delijn.be/stops/207942"], ["https://data.delijn.be/stops/208394", "https://data.delijn.be/stops/209393"], ["https://data.delijn.be/stops/101829", "https://data.delijn.be/stops/102422"], ["https://data.delijn.be/stops/207797", "https://data.delijn.be/stops/209610"], ["https://data.delijn.be/stops/101203", "https://data.delijn.be/stops/204663"], ["https://data.delijn.be/stops/104446", "https://data.delijn.be/stops/104447"], ["https://data.delijn.be/stops/204038", "https://data.delijn.be/stops/205039"], ["https://data.delijn.be/stops/202503", "https://data.delijn.be/stops/203502"], ["https://data.delijn.be/stops/404307", "https://data.delijn.be/stops/404312"], ["https://data.delijn.be/stops/502525", "https://data.delijn.be/stops/505336"], ["https://data.delijn.be/stops/109036", "https://data.delijn.be/stops/109037"], ["https://data.delijn.be/stops/202218", "https://data.delijn.be/stops/203218"], ["https://data.delijn.be/stops/208634", "https://data.delijn.be/stops/209509"], ["https://data.delijn.be/stops/302541", "https://data.delijn.be/stops/303360"], ["https://data.delijn.be/stops/102380", "https://data.delijn.be/stops/104855"], ["https://data.delijn.be/stops/505552", "https://data.delijn.be/stops/505981"], ["https://data.delijn.be/stops/402243", "https://data.delijn.be/stops/406870"], ["https://data.delijn.be/stops/300183", "https://data.delijn.be/stops/306743"], ["https://data.delijn.be/stops/205251", "https://data.delijn.be/stops/205525"], ["https://data.delijn.be/stops/102751", "https://data.delijn.be/stops/104811"], ["https://data.delijn.be/stops/104276", "https://data.delijn.be/stops/109748"], ["https://data.delijn.be/stops/101088", "https://data.delijn.be/stops/101161"], ["https://data.delijn.be/stops/503169", "https://data.delijn.be/stops/503172"], ["https://data.delijn.be/stops/505683", "https://data.delijn.be/stops/507315"], ["https://data.delijn.be/stops/302024", "https://data.delijn.be/stops/306381"], ["https://data.delijn.be/stops/505737", "https://data.delijn.be/stops/507333"], ["https://data.delijn.be/stops/202221", "https://data.delijn.be/stops/205077"], ["https://data.delijn.be/stops/403337", "https://data.delijn.be/stops/403957"], ["https://data.delijn.be/stops/405039", "https://data.delijn.be/stops/405072"], ["https://data.delijn.be/stops/302961", "https://data.delijn.be/stops/306300"], ["https://data.delijn.be/stops/400883", "https://data.delijn.be/stops/405667"], ["https://data.delijn.be/stops/505844", "https://data.delijn.be/stops/507235"], ["https://data.delijn.be/stops/403507", "https://data.delijn.be/stops/410130"], ["https://data.delijn.be/stops/205989", "https://data.delijn.be/stops/209568"], ["https://data.delijn.be/stops/208646", "https://data.delijn.be/stops/209648"], ["https://data.delijn.be/stops/203552", "https://data.delijn.be/stops/203564"], ["https://data.delijn.be/stops/103558", "https://data.delijn.be/stops/109394"], ["https://data.delijn.be/stops/300202", "https://data.delijn.be/stops/304785"], ["https://data.delijn.be/stops/301084", "https://data.delijn.be/stops/301086"], ["https://data.delijn.be/stops/200053", "https://data.delijn.be/stops/211057"], ["https://data.delijn.be/stops/101644", "https://data.delijn.be/stops/102082"], ["https://data.delijn.be/stops/208294", "https://data.delijn.be/stops/209726"], ["https://data.delijn.be/stops/105787", "https://data.delijn.be/stops/105938"], ["https://data.delijn.be/stops/502373", "https://data.delijn.be/stops/507373"], ["https://data.delijn.be/stops/406557", "https://data.delijn.be/stops/406559"], ["https://data.delijn.be/stops/405246", "https://data.delijn.be/stops/405248"], ["https://data.delijn.be/stops/501486", "https://data.delijn.be/stops/506135"], ["https://data.delijn.be/stops/107498", "https://data.delijn.be/stops/107501"], ["https://data.delijn.be/stops/507613", "https://data.delijn.be/stops/507749"], ["https://data.delijn.be/stops/308416", "https://data.delijn.be/stops/308430"], ["https://data.delijn.be/stops/206808", "https://data.delijn.be/stops/207204"], ["https://data.delijn.be/stops/101726", "https://data.delijn.be/stops/101846"], ["https://data.delijn.be/stops/205113", "https://data.delijn.be/stops/205681"], ["https://data.delijn.be/stops/304919", "https://data.delijn.be/stops/305395"], ["https://data.delijn.be/stops/303533", "https://data.delijn.be/stops/303572"], ["https://data.delijn.be/stops/406932", "https://data.delijn.be/stops/406951"], ["https://data.delijn.be/stops/200262", "https://data.delijn.be/stops/202549"], ["https://data.delijn.be/stops/104549", "https://data.delijn.be/stops/104852"], ["https://data.delijn.be/stops/407291", "https://data.delijn.be/stops/407310"], ["https://data.delijn.be/stops/506500", "https://data.delijn.be/stops/506511"], ["https://data.delijn.be/stops/209496", "https://data.delijn.be/stops/209718"], ["https://data.delijn.be/stops/505060", "https://data.delijn.be/stops/507918"], ["https://data.delijn.be/stops/108282", "https://data.delijn.be/stops/108283"], ["https://data.delijn.be/stops/107257", "https://data.delijn.be/stops/107259"], ["https://data.delijn.be/stops/303493", "https://data.delijn.be/stops/304989"], ["https://data.delijn.be/stops/404552", "https://data.delijn.be/stops/404553"], ["https://data.delijn.be/stops/505296", "https://data.delijn.be/stops/508839"], ["https://data.delijn.be/stops/306611", "https://data.delijn.be/stops/306619"], ["https://data.delijn.be/stops/204099", "https://data.delijn.be/stops/206408"], ["https://data.delijn.be/stops/404614", "https://data.delijn.be/stops/404996"], ["https://data.delijn.be/stops/304310", "https://data.delijn.be/stops/307005"], ["https://data.delijn.be/stops/306311", "https://data.delijn.be/stops/307682"], ["https://data.delijn.be/stops/302413", "https://data.delijn.be/stops/302429"], ["https://data.delijn.be/stops/407946", "https://data.delijn.be/stops/408055"], ["https://data.delijn.be/stops/501594", "https://data.delijn.be/stops/504663"], ["https://data.delijn.be/stops/206422", "https://data.delijn.be/stops/207424"], ["https://data.delijn.be/stops/108916", "https://data.delijn.be/stops/108917"], ["https://data.delijn.be/stops/503499", "https://data.delijn.be/stops/508688"], ["https://data.delijn.be/stops/208519", "https://data.delijn.be/stops/208520"], ["https://data.delijn.be/stops/403332", "https://data.delijn.be/stops/403339"], ["https://data.delijn.be/stops/109986", "https://data.delijn.be/stops/410346"], ["https://data.delijn.be/stops/102076", "https://data.delijn.be/stops/105996"], ["https://data.delijn.be/stops/405187", "https://data.delijn.be/stops/405249"], ["https://data.delijn.be/stops/300881", "https://data.delijn.be/stops/308853"], ["https://data.delijn.be/stops/403112", "https://data.delijn.be/stops/403234"], ["https://data.delijn.be/stops/406915", "https://data.delijn.be/stops/406968"], ["https://data.delijn.be/stops/405941", "https://data.delijn.be/stops/405944"], ["https://data.delijn.be/stops/502260", "https://data.delijn.be/stops/507257"], ["https://data.delijn.be/stops/206191", "https://data.delijn.be/stops/206192"], ["https://data.delijn.be/stops/104949", "https://data.delijn.be/stops/406832"], ["https://data.delijn.be/stops/301322", "https://data.delijn.be/stops/301323"], ["https://data.delijn.be/stops/105003", "https://data.delijn.be/stops/105191"], ["https://data.delijn.be/stops/102145", "https://data.delijn.be/stops/103209"], ["https://data.delijn.be/stops/506173", "https://data.delijn.be/stops/506175"], ["https://data.delijn.be/stops/200018", "https://data.delijn.be/stops/200354"], ["https://data.delijn.be/stops/102592", "https://data.delijn.be/stops/109002"], ["https://data.delijn.be/stops/505131", "https://data.delijn.be/stops/508667"], ["https://data.delijn.be/stops/207571", "https://data.delijn.be/stops/207573"], ["https://data.delijn.be/stops/503694", "https://data.delijn.be/stops/508347"], ["https://data.delijn.be/stops/301660", "https://data.delijn.be/stops/302995"], ["https://data.delijn.be/stops/206367", "https://data.delijn.be/stops/207809"], ["https://data.delijn.be/stops/300859", "https://data.delijn.be/stops/306049"], ["https://data.delijn.be/stops/200506", "https://data.delijn.be/stops/202359"], ["https://data.delijn.be/stops/507446", "https://data.delijn.be/stops/507462"], ["https://data.delijn.be/stops/207387", "https://data.delijn.be/stops/207967"], ["https://data.delijn.be/stops/300064", "https://data.delijn.be/stops/303836"], ["https://data.delijn.be/stops/409677", "https://data.delijn.be/stops/409722"], ["https://data.delijn.be/stops/402306", "https://data.delijn.be/stops/402307"], ["https://data.delijn.be/stops/107824", "https://data.delijn.be/stops/107827"], ["https://data.delijn.be/stops/301414", "https://data.delijn.be/stops/301419"], ["https://data.delijn.be/stops/501769", "https://data.delijn.be/stops/507705"], ["https://data.delijn.be/stops/206869", "https://data.delijn.be/stops/209748"], ["https://data.delijn.be/stops/305265", "https://data.delijn.be/stops/306346"], ["https://data.delijn.be/stops/404294", "https://data.delijn.be/stops/405698"], ["https://data.delijn.be/stops/503455", "https://data.delijn.be/stops/508200"], ["https://data.delijn.be/stops/307404", "https://data.delijn.be/stops/307410"], ["https://data.delijn.be/stops/107984", "https://data.delijn.be/stops/308491"], ["https://data.delijn.be/stops/109458", "https://data.delijn.be/stops/109793"], ["https://data.delijn.be/stops/208784", "https://data.delijn.be/stops/209179"], ["https://data.delijn.be/stops/305383", "https://data.delijn.be/stops/305386"], ["https://data.delijn.be/stops/301827", "https://data.delijn.be/stops/301829"], ["https://data.delijn.be/stops/401243", "https://data.delijn.be/stops/401390"], ["https://data.delijn.be/stops/203738", "https://data.delijn.be/stops/209712"], ["https://data.delijn.be/stops/300737", "https://data.delijn.be/stops/302199"], ["https://data.delijn.be/stops/107482", "https://data.delijn.be/stops/107517"], ["https://data.delijn.be/stops/301079", "https://data.delijn.be/stops/306052"], ["https://data.delijn.be/stops/504391", "https://data.delijn.be/stops/504715"], ["https://data.delijn.be/stops/301411", "https://data.delijn.be/stops/301414"], ["https://data.delijn.be/stops/304710", "https://data.delijn.be/stops/304711"], ["https://data.delijn.be/stops/400028", "https://data.delijn.be/stops/400029"], ["https://data.delijn.be/stops/408081", "https://data.delijn.be/stops/408174"], ["https://data.delijn.be/stops/101706", "https://data.delijn.be/stops/103415"], ["https://data.delijn.be/stops/109066", "https://data.delijn.be/stops/109067"], ["https://data.delijn.be/stops/502145", "https://data.delijn.be/stops/507113"], ["https://data.delijn.be/stops/504879", "https://data.delijn.be/stops/505171"], ["https://data.delijn.be/stops/508710", "https://data.delijn.be/stops/509979"], ["https://data.delijn.be/stops/302466", "https://data.delijn.be/stops/302467"], ["https://data.delijn.be/stops/306055", "https://data.delijn.be/stops/306056"], ["https://data.delijn.be/stops/208240", "https://data.delijn.be/stops/209717"], ["https://data.delijn.be/stops/303542", "https://data.delijn.be/stops/303564"], ["https://data.delijn.be/stops/410116", "https://data.delijn.be/stops/410118"], ["https://data.delijn.be/stops/105042", "https://data.delijn.be/stops/105043"], ["https://data.delijn.be/stops/206143", "https://data.delijn.be/stops/207021"], ["https://data.delijn.be/stops/301298", "https://data.delijn.be/stops/308673"], ["https://data.delijn.be/stops/108633", "https://data.delijn.be/stops/109669"], ["https://data.delijn.be/stops/504113", "https://data.delijn.be/stops/504466"], ["https://data.delijn.be/stops/204676", "https://data.delijn.be/stops/205676"], ["https://data.delijn.be/stops/508166", "https://data.delijn.be/stops/508171"], ["https://data.delijn.be/stops/200775", "https://data.delijn.be/stops/209302"], ["https://data.delijn.be/stops/401628", "https://data.delijn.be/stops/308245"], ["https://data.delijn.be/stops/208289", "https://data.delijn.be/stops/209288"], ["https://data.delijn.be/stops/304018", "https://data.delijn.be/stops/304036"], ["https://data.delijn.be/stops/406075", "https://data.delijn.be/stops/406076"], ["https://data.delijn.be/stops/504554", "https://data.delijn.be/stops/505926"], ["https://data.delijn.be/stops/404626", "https://data.delijn.be/stops/404632"], ["https://data.delijn.be/stops/303536", "https://data.delijn.be/stops/303537"], ["https://data.delijn.be/stops/301926", "https://data.delijn.be/stops/301927"], ["https://data.delijn.be/stops/101721", "https://data.delijn.be/stops/102924"], ["https://data.delijn.be/stops/504557", "https://data.delijn.be/stops/504568"], ["https://data.delijn.be/stops/407808", "https://data.delijn.be/stops/407837"], ["https://data.delijn.be/stops/201677", "https://data.delijn.be/stops/203773"], ["https://data.delijn.be/stops/408951", "https://data.delijn.be/stops/408972"], ["https://data.delijn.be/stops/301730", "https://data.delijn.be/stops/301782"], ["https://data.delijn.be/stops/400536", "https://data.delijn.be/stops/400572"], ["https://data.delijn.be/stops/200388", "https://data.delijn.be/stops/208703"], ["https://data.delijn.be/stops/306046", "https://data.delijn.be/stops/306257"], ["https://data.delijn.be/stops/103081", "https://data.delijn.be/stops/103082"], ["https://data.delijn.be/stops/208090", "https://data.delijn.be/stops/209846"], ["https://data.delijn.be/stops/201044", "https://data.delijn.be/stops/202487"], ["https://data.delijn.be/stops/403169", "https://data.delijn.be/stops/403183"], ["https://data.delijn.be/stops/502500", "https://data.delijn.be/stops/502515"], ["https://data.delijn.be/stops/200175", "https://data.delijn.be/stops/201174"], ["https://data.delijn.be/stops/405547", "https://data.delijn.be/stops/405653"], ["https://data.delijn.be/stops/501355", "https://data.delijn.be/stops/506318"], ["https://data.delijn.be/stops/408403", "https://data.delijn.be/stops/409825"], ["https://data.delijn.be/stops/402210", "https://data.delijn.be/stops/405566"], ["https://data.delijn.be/stops/404382", "https://data.delijn.be/stops/404395"], ["https://data.delijn.be/stops/200485", "https://data.delijn.be/stops/208265"], ["https://data.delijn.be/stops/304946", "https://data.delijn.be/stops/308017"], ["https://data.delijn.be/stops/206670", "https://data.delijn.be/stops/219030"], ["https://data.delijn.be/stops/101545", "https://data.delijn.be/stops/101985"], ["https://data.delijn.be/stops/106119", "https://data.delijn.be/stops/106121"], ["https://data.delijn.be/stops/200531", "https://data.delijn.be/stops/200532"], ["https://data.delijn.be/stops/407715", "https://data.delijn.be/stops/409777"], ["https://data.delijn.be/stops/206763", "https://data.delijn.be/stops/207631"], ["https://data.delijn.be/stops/503550", "https://data.delijn.be/stops/503551"], ["https://data.delijn.be/stops/104468", "https://data.delijn.be/stops/107531"], ["https://data.delijn.be/stops/406352", "https://data.delijn.be/stops/406353"], ["https://data.delijn.be/stops/503863", "https://data.delijn.be/stops/508863"], ["https://data.delijn.be/stops/202906", "https://data.delijn.be/stops/203906"], ["https://data.delijn.be/stops/204040", "https://data.delijn.be/stops/204041"], ["https://data.delijn.be/stops/305685", "https://data.delijn.be/stops/305722"], ["https://data.delijn.be/stops/406176", "https://data.delijn.be/stops/406200"], ["https://data.delijn.be/stops/403014", "https://data.delijn.be/stops/403024"], ["https://data.delijn.be/stops/503423", "https://data.delijn.be/stops/503434"], ["https://data.delijn.be/stops/102725", "https://data.delijn.be/stops/102792"], ["https://data.delijn.be/stops/305214", "https://data.delijn.be/stops/306880"], ["https://data.delijn.be/stops/204101", "https://data.delijn.be/stops/204102"], ["https://data.delijn.be/stops/304689", "https://data.delijn.be/stops/309671"], ["https://data.delijn.be/stops/502230", "https://data.delijn.be/stops/502699"], ["https://data.delijn.be/stops/206021", "https://data.delijn.be/stops/207028"], ["https://data.delijn.be/stops/504984", "https://data.delijn.be/stops/505967"], ["https://data.delijn.be/stops/401141", "https://data.delijn.be/stops/409817"], ["https://data.delijn.be/stops/304583", "https://data.delijn.be/stops/304604"], ["https://data.delijn.be/stops/408202", "https://data.delijn.be/stops/408204"], ["https://data.delijn.be/stops/105084", "https://data.delijn.be/stops/205279"], ["https://data.delijn.be/stops/404710", "https://data.delijn.be/stops/404791"], ["https://data.delijn.be/stops/300168", "https://data.delijn.be/stops/300173"], ["https://data.delijn.be/stops/504201", "https://data.delijn.be/stops/508449"], ["https://data.delijn.be/stops/402103", "https://data.delijn.be/stops/410094"], ["https://data.delijn.be/stops/106245", "https://data.delijn.be/stops/106246"], ["https://data.delijn.be/stops/501481", "https://data.delijn.be/stops/506466"], ["https://data.delijn.be/stops/401160", "https://data.delijn.be/stops/408187"], ["https://data.delijn.be/stops/402948", "https://data.delijn.be/stops/405561"], ["https://data.delijn.be/stops/401278", "https://data.delijn.be/stops/409191"], ["https://data.delijn.be/stops/106423", "https://data.delijn.be/stops/106559"], ["https://data.delijn.be/stops/407202", "https://data.delijn.be/stops/407206"], ["https://data.delijn.be/stops/105139", "https://data.delijn.be/stops/108503"], ["https://data.delijn.be/stops/204023", "https://data.delijn.be/stops/204024"], ["https://data.delijn.be/stops/510030", "https://data.delijn.be/stops/590007"], ["https://data.delijn.be/stops/406080", "https://data.delijn.be/stops/406140"], ["https://data.delijn.be/stops/101928", "https://data.delijn.be/stops/108207"], ["https://data.delijn.be/stops/201162", "https://data.delijn.be/stops/210132"], ["https://data.delijn.be/stops/105788", "https://data.delijn.be/stops/105790"], ["https://data.delijn.be/stops/503783", "https://data.delijn.be/stops/508783"], ["https://data.delijn.be/stops/102494", "https://data.delijn.be/stops/407109"], ["https://data.delijn.be/stops/101026", "https://data.delijn.be/stops/101989"], ["https://data.delijn.be/stops/101062", "https://data.delijn.be/stops/107955"], ["https://data.delijn.be/stops/206880", "https://data.delijn.be/stops/207309"], ["https://data.delijn.be/stops/505323", "https://data.delijn.be/stops/507497"], ["https://data.delijn.be/stops/407601", "https://data.delijn.be/stops/407693"], ["https://data.delijn.be/stops/402822", "https://data.delijn.be/stops/409228"], ["https://data.delijn.be/stops/304436", "https://data.delijn.be/stops/304455"], ["https://data.delijn.be/stops/507354", "https://data.delijn.be/stops/507665"], ["https://data.delijn.be/stops/400821", "https://data.delijn.be/stops/401664"], ["https://data.delijn.be/stops/505234", "https://data.delijn.be/stops/505330"], ["https://data.delijn.be/stops/401518", "https://data.delijn.be/stops/402028"], ["https://data.delijn.be/stops/200401", "https://data.delijn.be/stops/201400"], ["https://data.delijn.be/stops/206702", "https://data.delijn.be/stops/206980"], ["https://data.delijn.be/stops/400514", "https://data.delijn.be/stops/400520"], ["https://data.delijn.be/stops/209739", "https://data.delijn.be/stops/209741"], ["https://data.delijn.be/stops/501084", "https://data.delijn.be/stops/501435"], ["https://data.delijn.be/stops/210052", "https://data.delijn.be/stops/211053"], ["https://data.delijn.be/stops/400142", "https://data.delijn.be/stops/403512"], ["https://data.delijn.be/stops/200658", "https://data.delijn.be/stops/201527"], ["https://data.delijn.be/stops/303720", "https://data.delijn.be/stops/303750"], ["https://data.delijn.be/stops/400269", "https://data.delijn.be/stops/400955"], ["https://data.delijn.be/stops/303056", "https://data.delijn.be/stops/303965"], ["https://data.delijn.be/stops/504193", "https://data.delijn.be/stops/509193"], ["https://data.delijn.be/stops/201961", "https://data.delijn.be/stops/202196"], ["https://data.delijn.be/stops/101406", "https://data.delijn.be/stops/106524"], ["https://data.delijn.be/stops/106372", "https://data.delijn.be/stops/106375"], ["https://data.delijn.be/stops/200147", "https://data.delijn.be/stops/203355"], ["https://data.delijn.be/stops/208120", "https://data.delijn.be/stops/218008"], ["https://data.delijn.be/stops/102863", "https://data.delijn.be/stops/103301"], ["https://data.delijn.be/stops/501180", "https://data.delijn.be/stops/509511"], ["https://data.delijn.be/stops/303010", "https://data.delijn.be/stops/306101"], ["https://data.delijn.be/stops/106744", "https://data.delijn.be/stops/109775"], ["https://data.delijn.be/stops/502671", "https://data.delijn.be/stops/507670"], ["https://data.delijn.be/stops/305299", "https://data.delijn.be/stops/305333"], ["https://data.delijn.be/stops/307960", "https://data.delijn.be/stops/308070"], ["https://data.delijn.be/stops/202387", "https://data.delijn.be/stops/203387"], ["https://data.delijn.be/stops/202916", "https://data.delijn.be/stops/202917"], ["https://data.delijn.be/stops/300618", "https://data.delijn.be/stops/300619"], ["https://data.delijn.be/stops/106598", "https://data.delijn.be/stops/107215"], ["https://data.delijn.be/stops/101836", "https://data.delijn.be/stops/108202"], ["https://data.delijn.be/stops/102961", "https://data.delijn.be/stops/106591"], ["https://data.delijn.be/stops/109527", "https://data.delijn.be/stops/109528"], ["https://data.delijn.be/stops/211092", "https://data.delijn.be/stops/211093"], ["https://data.delijn.be/stops/501071", "https://data.delijn.be/stops/506073"], ["https://data.delijn.be/stops/301968", "https://data.delijn.be/stops/307169"], ["https://data.delijn.be/stops/200132", "https://data.delijn.be/stops/200468"], ["https://data.delijn.be/stops/202855", "https://data.delijn.be/stops/202857"], ["https://data.delijn.be/stops/502697", "https://data.delijn.be/stops/507696"], ["https://data.delijn.be/stops/502031", "https://data.delijn.be/stops/502619"], ["https://data.delijn.be/stops/401793", "https://data.delijn.be/stops/401816"], ["https://data.delijn.be/stops/505729", "https://data.delijn.be/stops/509893"], ["https://data.delijn.be/stops/206501", "https://data.delijn.be/stops/207500"], ["https://data.delijn.be/stops/103532", "https://data.delijn.be/stops/109626"], ["https://data.delijn.be/stops/504019", "https://data.delijn.be/stops/505428"], ["https://data.delijn.be/stops/502508", "https://data.delijn.be/stops/507496"], ["https://data.delijn.be/stops/403491", "https://data.delijn.be/stops/405630"], ["https://data.delijn.be/stops/507092", "https://data.delijn.be/stops/507167"], ["https://data.delijn.be/stops/400082", "https://data.delijn.be/stops/400084"], ["https://data.delijn.be/stops/402815", "https://data.delijn.be/stops/409034"], ["https://data.delijn.be/stops/505748", "https://data.delijn.be/stops/507186"], ["https://data.delijn.be/stops/101411", "https://data.delijn.be/stops/106921"], ["https://data.delijn.be/stops/106167", "https://data.delijn.be/stops/106170"], ["https://data.delijn.be/stops/302033", "https://data.delijn.be/stops/304631"], ["https://data.delijn.be/stops/104878", "https://data.delijn.be/stops/109972"], ["https://data.delijn.be/stops/207613", "https://data.delijn.be/stops/207614"], ["https://data.delijn.be/stops/200817", "https://data.delijn.be/stops/200896"], ["https://data.delijn.be/stops/504622", "https://data.delijn.be/stops/509628"], ["https://data.delijn.be/stops/301676", "https://data.delijn.be/stops/303948"], ["https://data.delijn.be/stops/408616", "https://data.delijn.be/stops/408707"], ["https://data.delijn.be/stops/102386", "https://data.delijn.be/stops/106318"], ["https://data.delijn.be/stops/301235", "https://data.delijn.be/stops/301243"], ["https://data.delijn.be/stops/504701", "https://data.delijn.be/stops/509550"], ["https://data.delijn.be/stops/300593", "https://data.delijn.be/stops/302955"], ["https://data.delijn.be/stops/401842", "https://data.delijn.be/stops/401844"], ["https://data.delijn.be/stops/405553", "https://data.delijn.be/stops/410052"], ["https://data.delijn.be/stops/301285", "https://data.delijn.be/stops/301286"], ["https://data.delijn.be/stops/306664", "https://data.delijn.be/stops/306681"], ["https://data.delijn.be/stops/403164", "https://data.delijn.be/stops/403267"], ["https://data.delijn.be/stops/504627", "https://data.delijn.be/stops/509627"], ["https://data.delijn.be/stops/504706", "https://data.delijn.be/stops/509487"], ["https://data.delijn.be/stops/301839", "https://data.delijn.be/stops/302487"], ["https://data.delijn.be/stops/400430", "https://data.delijn.be/stops/400431"], ["https://data.delijn.be/stops/303413", "https://data.delijn.be/stops/303418"], ["https://data.delijn.be/stops/505520", "https://data.delijn.be/stops/505620"], ["https://data.delijn.be/stops/302258", "https://data.delijn.be/stops/306370"], ["https://data.delijn.be/stops/403297", "https://data.delijn.be/stops/403305"], ["https://data.delijn.be/stops/305845", "https://data.delijn.be/stops/305898"], ["https://data.delijn.be/stops/302504", "https://data.delijn.be/stops/302518"], ["https://data.delijn.be/stops/302861", "https://data.delijn.be/stops/302914"], ["https://data.delijn.be/stops/102980", "https://data.delijn.be/stops/104810"], ["https://data.delijn.be/stops/407935", "https://data.delijn.be/stops/410344"], ["https://data.delijn.be/stops/501293", "https://data.delijn.be/stops/506565"], ["https://data.delijn.be/stops/106232", "https://data.delijn.be/stops/109395"], ["https://data.delijn.be/stops/404785", "https://data.delijn.be/stops/404832"], ["https://data.delijn.be/stops/401260", "https://data.delijn.be/stops/401303"], ["https://data.delijn.be/stops/302774", "https://data.delijn.be/stops/306556"], ["https://data.delijn.be/stops/504341", "https://data.delijn.be/stops/509073"], ["https://data.delijn.be/stops/101413", "https://data.delijn.be/stops/107297"], ["https://data.delijn.be/stops/208073", "https://data.delijn.be/stops/209073"], ["https://data.delijn.be/stops/206607", "https://data.delijn.be/stops/207606"], ["https://data.delijn.be/stops/101959", "https://data.delijn.be/stops/108764"], ["https://data.delijn.be/stops/400794", "https://data.delijn.be/stops/406691"], ["https://data.delijn.be/stops/201381", "https://data.delijn.be/stops/210079"], ["https://data.delijn.be/stops/101175", "https://data.delijn.be/stops/102973"], ["https://data.delijn.be/stops/505957", "https://data.delijn.be/stops/508277"], ["https://data.delijn.be/stops/200560", "https://data.delijn.be/stops/210067"], ["https://data.delijn.be/stops/208220", "https://data.delijn.be/stops/208224"], ["https://data.delijn.be/stops/202534", "https://data.delijn.be/stops/205174"], ["https://data.delijn.be/stops/404767", "https://data.delijn.be/stops/404816"], ["https://data.delijn.be/stops/202539", "https://data.delijn.be/stops/203539"], ["https://data.delijn.be/stops/302074", "https://data.delijn.be/stops/302099"], ["https://data.delijn.be/stops/300370", "https://data.delijn.be/stops/307213"], ["https://data.delijn.be/stops/200386", "https://data.delijn.be/stops/201729"], ["https://data.delijn.be/stops/102424", "https://data.delijn.be/stops/102874"], ["https://data.delijn.be/stops/403752", "https://data.delijn.be/stops/403757"], ["https://data.delijn.be/stops/203820", "https://data.delijn.be/stops/203890"], ["https://data.delijn.be/stops/402669", "https://data.delijn.be/stops/410057"], ["https://data.delijn.be/stops/202011", "https://data.delijn.be/stops/203011"], ["https://data.delijn.be/stops/407492", "https://data.delijn.be/stops/407493"], ["https://data.delijn.be/stops/505555", "https://data.delijn.be/stops/505556"], ["https://data.delijn.be/stops/504436", "https://data.delijn.be/stops/509409"], ["https://data.delijn.be/stops/400704", "https://data.delijn.be/stops/400896"], ["https://data.delijn.be/stops/109176", "https://data.delijn.be/stops/109228"], ["https://data.delijn.be/stops/206800", "https://data.delijn.be/stops/208554"], ["https://data.delijn.be/stops/105039", "https://data.delijn.be/stops/305831"], ["https://data.delijn.be/stops/208358", "https://data.delijn.be/stops/208741"], ["https://data.delijn.be/stops/307471", "https://data.delijn.be/stops/308911"], ["https://data.delijn.be/stops/101400", "https://data.delijn.be/stops/101403"], ["https://data.delijn.be/stops/405839", "https://data.delijn.be/stops/409760"], ["https://data.delijn.be/stops/201644", "https://data.delijn.be/stops/203743"], ["https://data.delijn.be/stops/405817", "https://data.delijn.be/stops/409712"], ["https://data.delijn.be/stops/506271", "https://data.delijn.be/stops/506302"], ["https://data.delijn.be/stops/300573", "https://data.delijn.be/stops/300574"], ["https://data.delijn.be/stops/204350", "https://data.delijn.be/stops/205103"], ["https://data.delijn.be/stops/206696", "https://data.delijn.be/stops/206743"], ["https://data.delijn.be/stops/505083", "https://data.delijn.be/stops/508112"], ["https://data.delijn.be/stops/300516", "https://data.delijn.be/stops/300523"], ["https://data.delijn.be/stops/202892", "https://data.delijn.be/stops/203892"], ["https://data.delijn.be/stops/302638", "https://data.delijn.be/stops/308117"], ["https://data.delijn.be/stops/402507", "https://data.delijn.be/stops/405663"], ["https://data.delijn.be/stops/501633", "https://data.delijn.be/stops/506634"], ["https://data.delijn.be/stops/108551", "https://data.delijn.be/stops/109590"], ["https://data.delijn.be/stops/301458", "https://data.delijn.be/stops/301459"], ["https://data.delijn.be/stops/103094", "https://data.delijn.be/stops/108767"], ["https://data.delijn.be/stops/102024", "https://data.delijn.be/stops/109950"], ["https://data.delijn.be/stops/504653", "https://data.delijn.be/stops/509134"], ["https://data.delijn.be/stops/109322", "https://data.delijn.be/stops/109354"], ["https://data.delijn.be/stops/107202", "https://data.delijn.be/stops/107607"], ["https://data.delijn.be/stops/505838", "https://data.delijn.be/stops/509207"], ["https://data.delijn.be/stops/504242", "https://data.delijn.be/stops/504639"], ["https://data.delijn.be/stops/103759", "https://data.delijn.be/stops/103761"], ["https://data.delijn.be/stops/503727", "https://data.delijn.be/stops/509873"], ["https://data.delijn.be/stops/400916", "https://data.delijn.be/stops/400917"], ["https://data.delijn.be/stops/201494", "https://data.delijn.be/stops/203937"], ["https://data.delijn.be/stops/504233", "https://data.delijn.be/stops/504234"], ["https://data.delijn.be/stops/404061", "https://data.delijn.be/stops/406988"], ["https://data.delijn.be/stops/304254", "https://data.delijn.be/stops/304280"], ["https://data.delijn.be/stops/505227", "https://data.delijn.be/stops/507270"], ["https://data.delijn.be/stops/404713", "https://data.delijn.be/stops/404718"], ["https://data.delijn.be/stops/410202", "https://data.delijn.be/stops/410203"], ["https://data.delijn.be/stops/102521", "https://data.delijn.be/stops/108632"], ["https://data.delijn.be/stops/502523", "https://data.delijn.be/stops/507525"], ["https://data.delijn.be/stops/208364", "https://data.delijn.be/stops/209364"], ["https://data.delijn.be/stops/301745", "https://data.delijn.be/stops/305906"], ["https://data.delijn.be/stops/404784", "https://data.delijn.be/stops/404785"], ["https://data.delijn.be/stops/204076", "https://data.delijn.be/stops/204091"], ["https://data.delijn.be/stops/301547", "https://data.delijn.be/stops/301550"], ["https://data.delijn.be/stops/400602", "https://data.delijn.be/stops/400610"], ["https://data.delijn.be/stops/301743", "https://data.delijn.be/stops/301791"], ["https://data.delijn.be/stops/201681", "https://data.delijn.be/stops/202809"], ["https://data.delijn.be/stops/204434", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/105137", "https://data.delijn.be/stops/105138"], ["https://data.delijn.be/stops/406485", "https://data.delijn.be/stops/406489"], ["https://data.delijn.be/stops/301597", "https://data.delijn.be/stops/301600"], ["https://data.delijn.be/stops/108566", "https://data.delijn.be/stops/109092"], ["https://data.delijn.be/stops/204168", "https://data.delijn.be/stops/204581"], ["https://data.delijn.be/stops/300355", "https://data.delijn.be/stops/300362"], ["https://data.delijn.be/stops/104549", "https://data.delijn.be/stops/301932"], ["https://data.delijn.be/stops/402511", "https://data.delijn.be/stops/402519"], ["https://data.delijn.be/stops/302470", "https://data.delijn.be/stops/302487"], ["https://data.delijn.be/stops/407975", "https://data.delijn.be/stops/408243"], ["https://data.delijn.be/stops/401342", "https://data.delijn.be/stops/410207"], ["https://data.delijn.be/stops/506080", "https://data.delijn.be/stops/506646"], ["https://data.delijn.be/stops/209707", "https://data.delijn.be/stops/209970"], ["https://data.delijn.be/stops/409331", "https://data.delijn.be/stops/410285"], ["https://data.delijn.be/stops/200253", "https://data.delijn.be/stops/210024"], ["https://data.delijn.be/stops/202901", "https://data.delijn.be/stops/203900"], ["https://data.delijn.be/stops/101578", "https://data.delijn.be/stops/105458"], ["https://data.delijn.be/stops/106770", "https://data.delijn.be/stops/106772"], ["https://data.delijn.be/stops/503057", "https://data.delijn.be/stops/508057"], ["https://data.delijn.be/stops/503147", "https://data.delijn.be/stops/505644"], ["https://data.delijn.be/stops/400702", "https://data.delijn.be/stops/400804"], ["https://data.delijn.be/stops/405363", "https://data.delijn.be/stops/410018"], ["https://data.delijn.be/stops/102537", "https://data.delijn.be/stops/405750"], ["https://data.delijn.be/stops/403756", "https://data.delijn.be/stops/403761"], ["https://data.delijn.be/stops/305888", "https://data.delijn.be/stops/305905"], ["https://data.delijn.be/stops/303321", "https://data.delijn.be/stops/305724"], ["https://data.delijn.be/stops/201872", "https://data.delijn.be/stops/211033"], ["https://data.delijn.be/stops/300934", "https://data.delijn.be/stops/300983"], ["https://data.delijn.be/stops/504331", "https://data.delijn.be/stops/504333"], ["https://data.delijn.be/stops/104260", "https://data.delijn.be/stops/104265"], ["https://data.delijn.be/stops/209006", "https://data.delijn.be/stops/209097"], ["https://data.delijn.be/stops/200509", "https://data.delijn.be/stops/201406"], ["https://data.delijn.be/stops/505819", "https://data.delijn.be/stops/509268"], ["https://data.delijn.be/stops/403714", "https://data.delijn.be/stops/406889"], ["https://data.delijn.be/stops/304375", "https://data.delijn.be/stops/304376"], ["https://data.delijn.be/stops/403705", "https://data.delijn.be/stops/403730"], ["https://data.delijn.be/stops/206513", "https://data.delijn.be/stops/206517"], ["https://data.delijn.be/stops/404978", "https://data.delijn.be/stops/404980"], ["https://data.delijn.be/stops/206775", "https://data.delijn.be/stops/206799"], ["https://data.delijn.be/stops/502469", "https://data.delijn.be/stops/507469"], ["https://data.delijn.be/stops/501410", "https://data.delijn.be/stops/506409"], ["https://data.delijn.be/stops/403347", "https://data.delijn.be/stops/407040"], ["https://data.delijn.be/stops/204178", "https://data.delijn.be/stops/205178"], ["https://data.delijn.be/stops/109974", "https://data.delijn.be/stops/109975"], ["https://data.delijn.be/stops/102702", "https://data.delijn.be/stops/105551"], ["https://data.delijn.be/stops/107370", "https://data.delijn.be/stops/109055"], ["https://data.delijn.be/stops/103004", "https://data.delijn.be/stops/108187"], ["https://data.delijn.be/stops/200918", "https://data.delijn.be/stops/200956"], ["https://data.delijn.be/stops/405775", "https://data.delijn.be/stops/409759"], ["https://data.delijn.be/stops/109498", "https://data.delijn.be/stops/306809"], ["https://data.delijn.be/stops/404458", "https://data.delijn.be/stops/404467"], ["https://data.delijn.be/stops/202883", "https://data.delijn.be/stops/203883"], ["https://data.delijn.be/stops/301704", "https://data.delijn.be/stops/305230"], ["https://data.delijn.be/stops/202249", "https://data.delijn.be/stops/203045"], ["https://data.delijn.be/stops/208304", "https://data.delijn.be/stops/208306"], ["https://data.delijn.be/stops/301539", "https://data.delijn.be/stops/306961"], ["https://data.delijn.be/stops/405966", "https://data.delijn.be/stops/405967"], ["https://data.delijn.be/stops/306384", "https://data.delijn.be/stops/307217"], ["https://data.delijn.be/stops/300326", "https://data.delijn.be/stops/308991"], ["https://data.delijn.be/stops/203166", "https://data.delijn.be/stops/204833"], ["https://data.delijn.be/stops/302328", "https://data.delijn.be/stops/304824"], ["https://data.delijn.be/stops/204795", "https://data.delijn.be/stops/205076"], ["https://data.delijn.be/stops/503161", "https://data.delijn.be/stops/508659"], ["https://data.delijn.be/stops/404702", "https://data.delijn.be/stops/404711"], ["https://data.delijn.be/stops/405268", "https://data.delijn.be/stops/405269"], ["https://data.delijn.be/stops/405342", "https://data.delijn.be/stops/405343"], ["https://data.delijn.be/stops/205000", "https://data.delijn.be/stops/207725"], ["https://data.delijn.be/stops/101508", "https://data.delijn.be/stops/102668"], ["https://data.delijn.be/stops/200894", "https://data.delijn.be/stops/202331"], ["https://data.delijn.be/stops/502309", "https://data.delijn.be/stops/505673"], ["https://data.delijn.be/stops/302334", "https://data.delijn.be/stops/302771"], ["https://data.delijn.be/stops/101492", "https://data.delijn.be/stops/108304"], ["https://data.delijn.be/stops/206356", "https://data.delijn.be/stops/215809"], ["https://data.delijn.be/stops/409365", "https://data.delijn.be/stops/410252"], ["https://data.delijn.be/stops/200934", "https://data.delijn.be/stops/202090"], ["https://data.delijn.be/stops/202017", "https://data.delijn.be/stops/203657"], ["https://data.delijn.be/stops/108791", "https://data.delijn.be/stops/109549"], ["https://data.delijn.be/stops/101501", "https://data.delijn.be/stops/109345"], ["https://data.delijn.be/stops/403186", "https://data.delijn.be/stops/403829"], ["https://data.delijn.be/stops/206754", "https://data.delijn.be/stops/206803"], ["https://data.delijn.be/stops/301117", "https://data.delijn.be/stops/301132"], ["https://data.delijn.be/stops/204106", "https://data.delijn.be/stops/205159"], ["https://data.delijn.be/stops/108728", "https://data.delijn.be/stops/108731"], ["https://data.delijn.be/stops/306922", "https://data.delijn.be/stops/308731"], ["https://data.delijn.be/stops/307212", "https://data.delijn.be/stops/307218"], ["https://data.delijn.be/stops/106749", "https://data.delijn.be/stops/307235"], ["https://data.delijn.be/stops/400738", "https://data.delijn.be/stops/404261"], ["https://data.delijn.be/stops/502134", "https://data.delijn.be/stops/502644"], ["https://data.delijn.be/stops/300177", "https://data.delijn.be/stops/300632"], ["https://data.delijn.be/stops/103914", "https://data.delijn.be/stops/107795"], ["https://data.delijn.be/stops/304149", "https://data.delijn.be/stops/307558"], ["https://data.delijn.be/stops/202721", "https://data.delijn.be/stops/203088"], ["https://data.delijn.be/stops/305251", "https://data.delijn.be/stops/305253"], ["https://data.delijn.be/stops/107265", "https://data.delijn.be/stops/107266"], ["https://data.delijn.be/stops/200850", "https://data.delijn.be/stops/203791"], ["https://data.delijn.be/stops/201249", "https://data.delijn.be/stops/201450"], ["https://data.delijn.be/stops/106349", "https://data.delijn.be/stops/106351"], ["https://data.delijn.be/stops/400606", "https://data.delijn.be/stops/408676"], ["https://data.delijn.be/stops/503878", "https://data.delijn.be/stops/508876"], ["https://data.delijn.be/stops/106149", "https://data.delijn.be/stops/106155"], ["https://data.delijn.be/stops/204065", "https://data.delijn.be/stops/205065"], ["https://data.delijn.be/stops/102854", "https://data.delijn.be/stops/204623"], ["https://data.delijn.be/stops/308222", "https://data.delijn.be/stops/308279"], ["https://data.delijn.be/stops/503009", "https://data.delijn.be/stops/503016"], ["https://data.delijn.be/stops/101931", "https://data.delijn.be/stops/103671"], ["https://data.delijn.be/stops/201663", "https://data.delijn.be/stops/203319"], ["https://data.delijn.be/stops/307355", "https://data.delijn.be/stops/307366"], ["https://data.delijn.be/stops/506347", "https://data.delijn.be/stops/506357"], ["https://data.delijn.be/stops/305452", "https://data.delijn.be/stops/307775"], ["https://data.delijn.be/stops/300432", "https://data.delijn.be/stops/300440"], ["https://data.delijn.be/stops/101700", "https://data.delijn.be/stops/101725"], ["https://data.delijn.be/stops/107398", "https://data.delijn.be/stops/107405"], ["https://data.delijn.be/stops/202725", "https://data.delijn.be/stops/203065"], ["https://data.delijn.be/stops/405603", "https://data.delijn.be/stops/405609"], ["https://data.delijn.be/stops/301867", "https://data.delijn.be/stops/301870"], ["https://data.delijn.be/stops/101416", "https://data.delijn.be/stops/101554"], ["https://data.delijn.be/stops/300340", "https://data.delijn.be/stops/304444"], ["https://data.delijn.be/stops/501425", "https://data.delijn.be/stops/506424"], ["https://data.delijn.be/stops/102243", "https://data.delijn.be/stops/102246"], ["https://data.delijn.be/stops/503149", "https://data.delijn.be/stops/508149"], ["https://data.delijn.be/stops/201087", "https://data.delijn.be/stops/202771"], ["https://data.delijn.be/stops/200408", "https://data.delijn.be/stops/201307"], ["https://data.delijn.be/stops/302172", "https://data.delijn.be/stops/302173"], ["https://data.delijn.be/stops/208015", "https://data.delijn.be/stops/209015"], ["https://data.delijn.be/stops/508793", "https://data.delijn.be/stops/508797"], ["https://data.delijn.be/stops/401557", "https://data.delijn.be/stops/410198"], ["https://data.delijn.be/stops/401309", "https://data.delijn.be/stops/401315"], ["https://data.delijn.be/stops/104277", "https://data.delijn.be/stops/104306"], ["https://data.delijn.be/stops/200902", "https://data.delijn.be/stops/200903"], ["https://data.delijn.be/stops/101315", "https://data.delijn.be/stops/104112"], ["https://data.delijn.be/stops/107664", "https://data.delijn.be/stops/107666"], ["https://data.delijn.be/stops/505391", "https://data.delijn.be/stops/505392"], ["https://data.delijn.be/stops/203237", "https://data.delijn.be/stops/203238"], ["https://data.delijn.be/stops/503854", "https://data.delijn.be/stops/507945"], ["https://data.delijn.be/stops/201055", "https://data.delijn.be/stops/202522"], ["https://data.delijn.be/stops/406197", "https://data.delijn.be/stops/406895"], ["https://data.delijn.be/stops/104861", "https://data.delijn.be/stops/107882"], ["https://data.delijn.be/stops/501259", "https://data.delijn.be/stops/506258"], ["https://data.delijn.be/stops/401679", "https://data.delijn.be/stops/308168"], ["https://data.delijn.be/stops/208162", "https://data.delijn.be/stops/208424"], ["https://data.delijn.be/stops/408762", "https://data.delijn.be/stops/410150"], ["https://data.delijn.be/stops/407773", "https://data.delijn.be/stops/304367"], ["https://data.delijn.be/stops/401789", "https://data.delijn.be/stops/406031"], ["https://data.delijn.be/stops/503216", "https://data.delijn.be/stops/508216"], ["https://data.delijn.be/stops/408504", "https://data.delijn.be/stops/408508"], ["https://data.delijn.be/stops/504085", "https://data.delijn.be/stops/504779"], ["https://data.delijn.be/stops/501390", "https://data.delijn.be/stops/506390"], ["https://data.delijn.be/stops/104659", "https://data.delijn.be/stops/306758"], ["https://data.delijn.be/stops/206368", "https://data.delijn.be/stops/206369"], ["https://data.delijn.be/stops/202819", "https://data.delijn.be/stops/202910"], ["https://data.delijn.be/stops/101377", "https://data.delijn.be/stops/106534"], ["https://data.delijn.be/stops/409378", "https://data.delijn.be/stops/409379"], ["https://data.delijn.be/stops/401416", "https://data.delijn.be/stops/304705"], ["https://data.delijn.be/stops/102543", "https://data.delijn.be/stops/102548"], ["https://data.delijn.be/stops/208443", "https://data.delijn.be/stops/209443"], ["https://data.delijn.be/stops/108521", "https://data.delijn.be/stops/108523"], ["https://data.delijn.be/stops/407625", "https://data.delijn.be/stops/407626"], ["https://data.delijn.be/stops/400660", "https://data.delijn.be/stops/402539"], ["https://data.delijn.be/stops/103273", "https://data.delijn.be/stops/410346"], ["https://data.delijn.be/stops/109396", "https://data.delijn.be/stops/109405"], ["https://data.delijn.be/stops/103981", "https://data.delijn.be/stops/109941"], ["https://data.delijn.be/stops/501623", "https://data.delijn.be/stops/506597"], ["https://data.delijn.be/stops/501267", "https://data.delijn.be/stops/506400"], ["https://data.delijn.be/stops/307393", "https://data.delijn.be/stops/307394"], ["https://data.delijn.be/stops/502514", "https://data.delijn.be/stops/505337"], ["https://data.delijn.be/stops/408888", "https://data.delijn.be/stops/408902"], ["https://data.delijn.be/stops/403464", "https://data.delijn.be/stops/407774"], ["https://data.delijn.be/stops/503520", "https://data.delijn.be/stops/507688"], ["https://data.delijn.be/stops/101019", "https://data.delijn.be/stops/101134"], ["https://data.delijn.be/stops/302922", "https://data.delijn.be/stops/303073"], ["https://data.delijn.be/stops/204251", "https://data.delijn.be/stops/205732"], ["https://data.delijn.be/stops/403438", "https://data.delijn.be/stops/404580"], ["https://data.delijn.be/stops/404677", "https://data.delijn.be/stops/410135"], ["https://data.delijn.be/stops/202588", "https://data.delijn.be/stops/210087"], ["https://data.delijn.be/stops/206339", "https://data.delijn.be/stops/207339"], ["https://data.delijn.be/stops/106017", "https://data.delijn.be/stops/106754"], ["https://data.delijn.be/stops/301580", "https://data.delijn.be/stops/301586"], ["https://data.delijn.be/stops/506014", "https://data.delijn.be/stops/506615"], ["https://data.delijn.be/stops/209461", "https://data.delijn.be/stops/209467"], ["https://data.delijn.be/stops/300420", "https://data.delijn.be/stops/300438"], ["https://data.delijn.be/stops/505950", "https://data.delijn.be/stops/505951"], ["https://data.delijn.be/stops/300932", "https://data.delijn.be/stops/300988"], ["https://data.delijn.be/stops/107196", "https://data.delijn.be/stops/107198"], ["https://data.delijn.be/stops/501427", "https://data.delijn.be/stops/506427"], ["https://data.delijn.be/stops/404115", "https://data.delijn.be/stops/404117"], ["https://data.delijn.be/stops/303316", "https://data.delijn.be/stops/303317"], ["https://data.delijn.be/stops/502711", "https://data.delijn.be/stops/507711"], ["https://data.delijn.be/stops/410037", "https://data.delijn.be/stops/410038"], ["https://data.delijn.be/stops/107792", "https://data.delijn.be/stops/107793"], ["https://data.delijn.be/stops/505694", "https://data.delijn.be/stops/507546"], ["https://data.delijn.be/stops/204980", "https://data.delijn.be/stops/206821"], ["https://data.delijn.be/stops/103357", "https://data.delijn.be/stops/103762"], ["https://data.delijn.be/stops/208124", "https://data.delijn.be/stops/209124"], ["https://data.delijn.be/stops/102760", "https://data.delijn.be/stops/102770"], ["https://data.delijn.be/stops/405265", "https://data.delijn.be/stops/405275"], ["https://data.delijn.be/stops/406222", "https://data.delijn.be/stops/406432"], ["https://data.delijn.be/stops/401409", "https://data.delijn.be/stops/401410"], ["https://data.delijn.be/stops/405442", "https://data.delijn.be/stops/408510"], ["https://data.delijn.be/stops/300999", "https://data.delijn.be/stops/306049"], ["https://data.delijn.be/stops/200037", "https://data.delijn.be/stops/201276"], ["https://data.delijn.be/stops/208425", "https://data.delijn.be/stops/209425"], ["https://data.delijn.be/stops/408065", "https://data.delijn.be/stops/408086"], ["https://data.delijn.be/stops/305192", "https://data.delijn.be/stops/305195"], ["https://data.delijn.be/stops/404406", "https://data.delijn.be/stops/404408"], ["https://data.delijn.be/stops/101274", "https://data.delijn.be/stops/108755"], ["https://data.delijn.be/stops/208402", "https://data.delijn.be/stops/209411"], ["https://data.delijn.be/stops/202667", "https://data.delijn.be/stops/203667"], ["https://data.delijn.be/stops/502249", "https://data.delijn.be/stops/505223"], ["https://data.delijn.be/stops/403927", "https://data.delijn.be/stops/308751"], ["https://data.delijn.be/stops/403514", "https://data.delijn.be/stops/410215"], ["https://data.delijn.be/stops/201768", "https://data.delijn.be/stops/201817"], ["https://data.delijn.be/stops/208710", "https://data.delijn.be/stops/208835"], ["https://data.delijn.be/stops/502286", "https://data.delijn.be/stops/507287"], ["https://data.delijn.be/stops/502006", "https://data.delijn.be/stops/507010"], ["https://data.delijn.be/stops/208738", "https://data.delijn.be/stops/209737"], ["https://data.delijn.be/stops/502447", "https://data.delijn.be/stops/507461"], ["https://data.delijn.be/stops/504403", "https://data.delijn.be/stops/504442"], ["https://data.delijn.be/stops/403256", "https://data.delijn.be/stops/403414"], ["https://data.delijn.be/stops/401758", "https://data.delijn.be/stops/401759"], ["https://data.delijn.be/stops/504852", "https://data.delijn.be/stops/504853"], ["https://data.delijn.be/stops/102617", "https://data.delijn.be/stops/108207"], ["https://data.delijn.be/stops/204696", "https://data.delijn.be/stops/205697"], ["https://data.delijn.be/stops/107694", "https://data.delijn.be/stops/406771"], ["https://data.delijn.be/stops/101812", "https://data.delijn.be/stops/107981"], ["https://data.delijn.be/stops/402876", "https://data.delijn.be/stops/402878"], ["https://data.delijn.be/stops/407032", "https://data.delijn.be/stops/407061"], ["https://data.delijn.be/stops/103472", "https://data.delijn.be/stops/107429"], ["https://data.delijn.be/stops/401434", "https://data.delijn.be/stops/401501"], ["https://data.delijn.be/stops/201841", "https://data.delijn.be/stops/210019"], ["https://data.delijn.be/stops/407646", "https://data.delijn.be/stops/407720"], ["https://data.delijn.be/stops/405954", "https://data.delijn.be/stops/405958"], ["https://data.delijn.be/stops/407570", "https://data.delijn.be/stops/407571"], ["https://data.delijn.be/stops/204695", "https://data.delijn.be/stops/205101"], ["https://data.delijn.be/stops/305220", "https://data.delijn.be/stops/306632"], ["https://data.delijn.be/stops/304082", "https://data.delijn.be/stops/304083"], ["https://data.delijn.be/stops/206868", "https://data.delijn.be/stops/207131"], ["https://data.delijn.be/stops/507529", "https://data.delijn.be/stops/507530"], ["https://data.delijn.be/stops/303742", "https://data.delijn.be/stops/303743"], ["https://data.delijn.be/stops/207622", "https://data.delijn.be/stops/207869"], ["https://data.delijn.be/stops/300381", "https://data.delijn.be/stops/300468"], ["https://data.delijn.be/stops/501105", "https://data.delijn.be/stops/506224"], ["https://data.delijn.be/stops/103274", "https://data.delijn.be/stops/107608"], ["https://data.delijn.be/stops/206631", "https://data.delijn.be/stops/208569"], ["https://data.delijn.be/stops/200751", "https://data.delijn.be/stops/200768"], ["https://data.delijn.be/stops/200917", "https://data.delijn.be/stops/202043"], ["https://data.delijn.be/stops/405907", "https://data.delijn.be/stops/405928"], ["https://data.delijn.be/stops/102055", "https://data.delijn.be/stops/102065"], ["https://data.delijn.be/stops/300162", "https://data.delijn.be/stops/301208"], ["https://data.delijn.be/stops/402085", "https://data.delijn.be/stops/402216"], ["https://data.delijn.be/stops/305108", "https://data.delijn.be/stops/305119"], ["https://data.delijn.be/stops/200706", "https://data.delijn.be/stops/200736"], ["https://data.delijn.be/stops/103609", "https://data.delijn.be/stops/106313"], ["https://data.delijn.be/stops/101394", "https://data.delijn.be/stops/102989"], ["https://data.delijn.be/stops/504623", "https://data.delijn.be/stops/509623"], ["https://data.delijn.be/stops/401847", "https://data.delijn.be/stops/406238"], ["https://data.delijn.be/stops/208536", "https://data.delijn.be/stops/208537"], ["https://data.delijn.be/stops/101808", "https://data.delijn.be/stops/104042"], ["https://data.delijn.be/stops/109246", "https://data.delijn.be/stops/109260"], ["https://data.delijn.be/stops/504834", "https://data.delijn.be/stops/508482"], ["https://data.delijn.be/stops/108843", "https://data.delijn.be/stops/108853"], ["https://data.delijn.be/stops/101632", "https://data.delijn.be/stops/105354"], ["https://data.delijn.be/stops/206632", "https://data.delijn.be/stops/207636"], ["https://data.delijn.be/stops/503292", "https://data.delijn.be/stops/505257"], ["https://data.delijn.be/stops/108434", "https://data.delijn.be/stops/109572"], ["https://data.delijn.be/stops/501132", "https://data.delijn.be/stops/501139"], ["https://data.delijn.be/stops/400819", "https://data.delijn.be/stops/400873"], ["https://data.delijn.be/stops/303814", "https://data.delijn.be/stops/303820"], ["https://data.delijn.be/stops/305347", "https://data.delijn.be/stops/305356"], ["https://data.delijn.be/stops/108900", "https://data.delijn.be/stops/108905"], ["https://data.delijn.be/stops/504236", "https://data.delijn.be/stops/504239"], ["https://data.delijn.be/stops/206726", "https://data.delijn.be/stops/301612"], ["https://data.delijn.be/stops/504836", "https://data.delijn.be/stops/509149"], ["https://data.delijn.be/stops/504530", "https://data.delijn.be/stops/509196"], ["https://data.delijn.be/stops/103134", "https://data.delijn.be/stops/103136"], ["https://data.delijn.be/stops/208696", "https://data.delijn.be/stops/208714"], ["https://data.delijn.be/stops/507289", "https://data.delijn.be/stops/509893"], ["https://data.delijn.be/stops/200482", "https://data.delijn.be/stops/201482"], ["https://data.delijn.be/stops/108934", "https://data.delijn.be/stops/108936"], ["https://data.delijn.be/stops/503290", "https://data.delijn.be/stops/508290"], ["https://data.delijn.be/stops/105555", "https://data.delijn.be/stops/105560"], ["https://data.delijn.be/stops/509061", "https://data.delijn.be/stops/509062"], ["https://data.delijn.be/stops/402497", "https://data.delijn.be/stops/402498"], ["https://data.delijn.be/stops/405366", "https://data.delijn.be/stops/302844"], ["https://data.delijn.be/stops/207709", "https://data.delijn.be/stops/207741"], ["https://data.delijn.be/stops/200202", "https://data.delijn.be/stops/201202"], ["https://data.delijn.be/stops/201928", "https://data.delijn.be/stops/202523"], ["https://data.delijn.be/stops/304007", "https://data.delijn.be/stops/304025"], ["https://data.delijn.be/stops/301008", "https://data.delijn.be/stops/301011"], ["https://data.delijn.be/stops/505817", "https://data.delijn.be/stops/509012"], ["https://data.delijn.be/stops/105170", "https://data.delijn.be/stops/108255"], ["https://data.delijn.be/stops/108046", "https://data.delijn.be/stops/108049"], ["https://data.delijn.be/stops/204116", "https://data.delijn.be/stops/205109"], ["https://data.delijn.be/stops/409715", "https://data.delijn.be/stops/409718"], ["https://data.delijn.be/stops/200442", "https://data.delijn.be/stops/202133"], ["https://data.delijn.be/stops/307215", "https://data.delijn.be/stops/307473"], ["https://data.delijn.be/stops/204473", "https://data.delijn.be/stops/205473"], ["https://data.delijn.be/stops/208668", "https://data.delijn.be/stops/208672"], ["https://data.delijn.be/stops/405337", "https://data.delijn.be/stops/405347"], ["https://data.delijn.be/stops/308129", "https://data.delijn.be/stops/308875"], ["https://data.delijn.be/stops/306043", "https://data.delijn.be/stops/307100"], ["https://data.delijn.be/stops/208134", "https://data.delijn.be/stops/209138"], ["https://data.delijn.be/stops/102705", "https://data.delijn.be/stops/103775"], ["https://data.delijn.be/stops/404586", "https://data.delijn.be/stops/406904"], ["https://data.delijn.be/stops/503591", "https://data.delijn.be/stops/504891"], ["https://data.delijn.be/stops/200719", "https://data.delijn.be/stops/200737"], ["https://data.delijn.be/stops/406276", "https://data.delijn.be/stops/406350"], ["https://data.delijn.be/stops/308485", "https://data.delijn.be/stops/308491"], ["https://data.delijn.be/stops/400138", "https://data.delijn.be/stops/409164"], ["https://data.delijn.be/stops/402584", "https://data.delijn.be/stops/402585"], ["https://data.delijn.be/stops/306864", "https://data.delijn.be/stops/306865"], ["https://data.delijn.be/stops/209283", "https://data.delijn.be/stops/209284"], ["https://data.delijn.be/stops/401093", "https://data.delijn.be/stops/401129"], ["https://data.delijn.be/stops/203061", "https://data.delijn.be/stops/211016"], ["https://data.delijn.be/stops/305170", "https://data.delijn.be/stops/305178"], ["https://data.delijn.be/stops/105489", "https://data.delijn.be/stops/105494"], ["https://data.delijn.be/stops/106130", "https://data.delijn.be/stops/109372"], ["https://data.delijn.be/stops/404915", "https://data.delijn.be/stops/404922"], ["https://data.delijn.be/stops/206592", "https://data.delijn.be/stops/207949"], ["https://data.delijn.be/stops/106793", "https://data.delijn.be/stops/106797"], ["https://data.delijn.be/stops/304821", "https://data.delijn.be/stops/304822"], ["https://data.delijn.be/stops/104771", "https://data.delijn.be/stops/108147"], ["https://data.delijn.be/stops/402837", "https://data.delijn.be/stops/409009"], ["https://data.delijn.be/stops/406185", "https://data.delijn.be/stops/406191"], ["https://data.delijn.be/stops/300137", "https://data.delijn.be/stops/300141"], ["https://data.delijn.be/stops/208153", "https://data.delijn.be/stops/208521"], ["https://data.delijn.be/stops/206060", "https://data.delijn.be/stops/206061"], ["https://data.delijn.be/stops/507431", "https://data.delijn.be/stops/507622"], ["https://data.delijn.be/stops/107596", "https://data.delijn.be/stops/107664"], ["https://data.delijn.be/stops/200682", "https://data.delijn.be/stops/209653"], ["https://data.delijn.be/stops/304510", "https://data.delijn.be/stops/305266"], ["https://data.delijn.be/stops/304931", "https://data.delijn.be/stops/304962"], ["https://data.delijn.be/stops/407638", "https://data.delijn.be/stops/407642"], ["https://data.delijn.be/stops/201281", "https://data.delijn.be/stops/201336"], ["https://data.delijn.be/stops/206938", "https://data.delijn.be/stops/207938"], ["https://data.delijn.be/stops/300875", "https://data.delijn.be/stops/307233"], ["https://data.delijn.be/stops/204145", "https://data.delijn.be/stops/206635"], ["https://data.delijn.be/stops/307388", "https://data.delijn.be/stops/307393"], ["https://data.delijn.be/stops/503904", "https://data.delijn.be/stops/508904"], ["https://data.delijn.be/stops/200118", "https://data.delijn.be/stops/201118"], ["https://data.delijn.be/stops/503710", "https://data.delijn.be/stops/509979"], ["https://data.delijn.be/stops/306925", "https://data.delijn.be/stops/306929"], ["https://data.delijn.be/stops/200660", "https://data.delijn.be/stops/210053"], ["https://data.delijn.be/stops/504871", "https://data.delijn.be/stops/509871"], ["https://data.delijn.be/stops/504530", "https://data.delijn.be/stops/509523"], ["https://data.delijn.be/stops/104608", "https://data.delijn.be/stops/108463"], ["https://data.delijn.be/stops/302265", "https://data.delijn.be/stops/304345"], ["https://data.delijn.be/stops/105574", "https://data.delijn.be/stops/105578"], ["https://data.delijn.be/stops/502281", "https://data.delijn.be/stops/507284"], ["https://data.delijn.be/stops/401047", "https://data.delijn.be/stops/401128"], ["https://data.delijn.be/stops/203826", "https://data.delijn.be/stops/209263"], ["https://data.delijn.be/stops/206448", "https://data.delijn.be/stops/207161"], ["https://data.delijn.be/stops/205528", "https://data.delijn.be/stops/205632"], ["https://data.delijn.be/stops/407156", "https://data.delijn.be/stops/407157"], ["https://data.delijn.be/stops/306248", "https://data.delijn.be/stops/306249"], ["https://data.delijn.be/stops/501555", "https://data.delijn.be/stops/506556"], ["https://data.delijn.be/stops/400634", "https://data.delijn.be/stops/400635"], ["https://data.delijn.be/stops/105127", "https://data.delijn.be/stops/105128"], ["https://data.delijn.be/stops/103256", "https://data.delijn.be/stops/107705"], ["https://data.delijn.be/stops/305785", "https://data.delijn.be/stops/305787"], ["https://data.delijn.be/stops/206048", "https://data.delijn.be/stops/207298"], ["https://data.delijn.be/stops/503060", "https://data.delijn.be/stops/508062"], ["https://data.delijn.be/stops/505717", "https://data.delijn.be/stops/509580"], ["https://data.delijn.be/stops/105428", "https://data.delijn.be/stops/105429"], ["https://data.delijn.be/stops/400581", "https://data.delijn.be/stops/400635"], ["https://data.delijn.be/stops/207213", "https://data.delijn.be/stops/207924"], ["https://data.delijn.be/stops/201820", "https://data.delijn.be/stops/201821"], ["https://data.delijn.be/stops/109810", "https://data.delijn.be/stops/109811"], ["https://data.delijn.be/stops/408010", "https://data.delijn.be/stops/408150"], ["https://data.delijn.be/stops/107401", "https://data.delijn.be/stops/107402"], ["https://data.delijn.be/stops/204619", "https://data.delijn.be/stops/205552"], ["https://data.delijn.be/stops/203118", "https://data.delijn.be/stops/204773"], ["https://data.delijn.be/stops/407837", "https://data.delijn.be/stops/407843"], ["https://data.delijn.be/stops/107565", "https://data.delijn.be/stops/108160"], ["https://data.delijn.be/stops/101972", "https://data.delijn.be/stops/103329"], ["https://data.delijn.be/stops/504429", "https://data.delijn.be/stops/505785"], ["https://data.delijn.be/stops/304316", "https://data.delijn.be/stops/305234"], ["https://data.delijn.be/stops/404421", "https://data.delijn.be/stops/404475"], ["https://data.delijn.be/stops/301728", "https://data.delijn.be/stops/301740"], ["https://data.delijn.be/stops/102479", "https://data.delijn.be/stops/102482"], ["https://data.delijn.be/stops/202436", "https://data.delijn.be/stops/210088"], ["https://data.delijn.be/stops/106091", "https://data.delijn.be/stops/108610"], ["https://data.delijn.be/stops/304494", "https://data.delijn.be/stops/304518"], ["https://data.delijn.be/stops/303490", "https://data.delijn.be/stops/303505"], ["https://data.delijn.be/stops/404617", "https://data.delijn.be/stops/406945"], ["https://data.delijn.be/stops/301569", "https://data.delijn.be/stops/303679"], ["https://data.delijn.be/stops/108231", "https://data.delijn.be/stops/108727"], ["https://data.delijn.be/stops/103622", "https://data.delijn.be/stops/103679"], ["https://data.delijn.be/stops/304088", "https://data.delijn.be/stops/304112"], ["https://data.delijn.be/stops/508356", "https://data.delijn.be/stops/508384"], ["https://data.delijn.be/stops/402740", "https://data.delijn.be/stops/406913"], ["https://data.delijn.be/stops/504076", "https://data.delijn.be/stops/504693"], ["https://data.delijn.be/stops/303245", "https://data.delijn.be/stops/306749"], ["https://data.delijn.be/stops/406368", "https://data.delijn.be/stops/407721"], ["https://data.delijn.be/stops/109316", "https://data.delijn.be/stops/109317"], ["https://data.delijn.be/stops/406002", "https://data.delijn.be/stops/406035"], ["https://data.delijn.be/stops/103958", "https://data.delijn.be/stops/105715"], ["https://data.delijn.be/stops/202204", "https://data.delijn.be/stops/203204"], ["https://data.delijn.be/stops/406109", "https://data.delijn.be/stops/406113"], ["https://data.delijn.be/stops/102109", "https://data.delijn.be/stops/102824"], ["https://data.delijn.be/stops/501441", "https://data.delijn.be/stops/501513"], ["https://data.delijn.be/stops/202155", "https://data.delijn.be/stops/203155"], ["https://data.delijn.be/stops/102382", "https://data.delijn.be/stops/106356"], ["https://data.delijn.be/stops/401458", "https://data.delijn.be/stops/401459"], ["https://data.delijn.be/stops/403364", "https://data.delijn.be/stops/403365"], ["https://data.delijn.be/stops/302229", "https://data.delijn.be/stops/302238"], ["https://data.delijn.be/stops/308408", "https://data.delijn.be/stops/308409"], ["https://data.delijn.be/stops/207760", "https://data.delijn.be/stops/207774"], ["https://data.delijn.be/stops/105319", "https://data.delijn.be/stops/105321"], ["https://data.delijn.be/stops/307298", "https://data.delijn.be/stops/307321"], ["https://data.delijn.be/stops/304546", "https://data.delijn.be/stops/309669"], ["https://data.delijn.be/stops/105149", "https://data.delijn.be/stops/109523"], ["https://data.delijn.be/stops/308468", "https://data.delijn.be/stops/308471"], ["https://data.delijn.be/stops/401876", "https://data.delijn.be/stops/408469"], ["https://data.delijn.be/stops/504533", "https://data.delijn.be/stops/509377"], ["https://data.delijn.be/stops/103245", "https://data.delijn.be/stops/103256"], ["https://data.delijn.be/stops/404160", "https://data.delijn.be/stops/404178"], ["https://data.delijn.be/stops/503041", "https://data.delijn.be/stops/508680"], ["https://data.delijn.be/stops/105267", "https://data.delijn.be/stops/105287"], ["https://data.delijn.be/stops/104966", "https://data.delijn.be/stops/109215"], ["https://data.delijn.be/stops/405496", "https://data.delijn.be/stops/303316"], ["https://data.delijn.be/stops/201357", "https://data.delijn.be/stops/209662"], ["https://data.delijn.be/stops/304955", "https://data.delijn.be/stops/304967"], ["https://data.delijn.be/stops/303115", "https://data.delijn.be/stops/304222"], ["https://data.delijn.be/stops/403464", "https://data.delijn.be/stops/410248"], ["https://data.delijn.be/stops/209266", "https://data.delijn.be/stops/209271"], ["https://data.delijn.be/stops/107818", "https://data.delijn.be/stops/107821"], ["https://data.delijn.be/stops/509226", "https://data.delijn.be/stops/509228"], ["https://data.delijn.be/stops/102466", "https://data.delijn.be/stops/102469"], ["https://data.delijn.be/stops/101645", "https://data.delijn.be/stops/102424"], ["https://data.delijn.be/stops/103985", "https://data.delijn.be/stops/103990"], ["https://data.delijn.be/stops/504055", "https://data.delijn.be/stops/509055"], ["https://data.delijn.be/stops/400060", "https://data.delijn.be/stops/400101"], ["https://data.delijn.be/stops/208175", "https://data.delijn.be/stops/209174"], ["https://data.delijn.be/stops/402575", "https://data.delijn.be/stops/402616"], ["https://data.delijn.be/stops/202279", "https://data.delijn.be/stops/203279"], ["https://data.delijn.be/stops/501366", "https://data.delijn.be/stops/506366"], ["https://data.delijn.be/stops/306267", "https://data.delijn.be/stops/307327"], ["https://data.delijn.be/stops/308955", "https://data.delijn.be/stops/308956"], ["https://data.delijn.be/stops/503621", "https://data.delijn.be/stops/503656"], ["https://data.delijn.be/stops/301342", "https://data.delijn.be/stops/306121"], ["https://data.delijn.be/stops/405210", "https://data.delijn.be/stops/409645"], ["https://data.delijn.be/stops/200567", "https://data.delijn.be/stops/201112"], ["https://data.delijn.be/stops/405984", "https://data.delijn.be/stops/410213"], ["https://data.delijn.be/stops/505626", "https://data.delijn.be/stops/505749"], ["https://data.delijn.be/stops/210855", "https://data.delijn.be/stops/211855"], ["https://data.delijn.be/stops/200978", "https://data.delijn.be/stops/201979"], ["https://data.delijn.be/stops/102206", "https://data.delijn.be/stops/105817"], ["https://data.delijn.be/stops/101227", "https://data.delijn.be/stops/101546"], ["https://data.delijn.be/stops/406450", "https://data.delijn.be/stops/406496"], ["https://data.delijn.be/stops/303948", "https://data.delijn.be/stops/304178"], ["https://data.delijn.be/stops/203178", "https://data.delijn.be/stops/209867"], ["https://data.delijn.be/stops/504705", "https://data.delijn.be/stops/509498"], ["https://data.delijn.be/stops/202973", "https://data.delijn.be/stops/205076"], ["https://data.delijn.be/stops/407378", "https://data.delijn.be/stops/407379"], ["https://data.delijn.be/stops/303531", "https://data.delijn.be/stops/303540"], ["https://data.delijn.be/stops/406763", "https://data.delijn.be/stops/406766"], ["https://data.delijn.be/stops/202607", "https://data.delijn.be/stops/203574"], ["https://data.delijn.be/stops/508098", "https://data.delijn.be/stops/508099"], ["https://data.delijn.be/stops/505125", "https://data.delijn.be/stops/505126"], ["https://data.delijn.be/stops/301013", "https://data.delijn.be/stops/301014"], ["https://data.delijn.be/stops/202103", "https://data.delijn.be/stops/202262"], ["https://data.delijn.be/stops/301439", "https://data.delijn.be/stops/301673"], ["https://data.delijn.be/stops/403948", "https://data.delijn.be/stops/403950"], ["https://data.delijn.be/stops/105049", "https://data.delijn.be/stops/305835"], ["https://data.delijn.be/stops/102621", "https://data.delijn.be/stops/108209"], ["https://data.delijn.be/stops/304420", "https://data.delijn.be/stops/307397"], ["https://data.delijn.be/stops/502003", "https://data.delijn.be/stops/507007"], ["https://data.delijn.be/stops/301504", "https://data.delijn.be/stops/301523"], ["https://data.delijn.be/stops/300585", "https://data.delijn.be/stops/300621"], ["https://data.delijn.be/stops/404670", "https://data.delijn.be/stops/404686"], ["https://data.delijn.be/stops/403087", "https://data.delijn.be/stops/410398"], ["https://data.delijn.be/stops/403126", "https://data.delijn.be/stops/403293"], ["https://data.delijn.be/stops/202507", "https://data.delijn.be/stops/203506"], ["https://data.delijn.be/stops/202549", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/206665", "https://data.delijn.be/stops/206713"], ["https://data.delijn.be/stops/407685", "https://data.delijn.be/stops/407694"], ["https://data.delijn.be/stops/506305", "https://data.delijn.be/stops/506353"], ["https://data.delijn.be/stops/306899", "https://data.delijn.be/stops/306902"], ["https://data.delijn.be/stops/400508", "https://data.delijn.be/stops/400511"], ["https://data.delijn.be/stops/101383", "https://data.delijn.be/stops/101829"], ["https://data.delijn.be/stops/401563", "https://data.delijn.be/stops/401564"], ["https://data.delijn.be/stops/401208", "https://data.delijn.be/stops/401239"], ["https://data.delijn.be/stops/502314", "https://data.delijn.be/stops/507307"], ["https://data.delijn.be/stops/502652", "https://data.delijn.be/stops/502766"], ["https://data.delijn.be/stops/405977", "https://data.delijn.be/stops/405991"], ["https://data.delijn.be/stops/106858", "https://data.delijn.be/stops/106861"], ["https://data.delijn.be/stops/403680", "https://data.delijn.be/stops/403681"], ["https://data.delijn.be/stops/108399", "https://data.delijn.be/stops/108401"], ["https://data.delijn.be/stops/402626", "https://data.delijn.be/stops/405560"], ["https://data.delijn.be/stops/208340", "https://data.delijn.be/stops/219010"], ["https://data.delijn.be/stops/203403", "https://data.delijn.be/stops/210115"], ["https://data.delijn.be/stops/409583", "https://data.delijn.be/stops/409588"], ["https://data.delijn.be/stops/403628", "https://data.delijn.be/stops/404581"], ["https://data.delijn.be/stops/108432", "https://data.delijn.be/stops/108433"], ["https://data.delijn.be/stops/303493", "https://data.delijn.be/stops/303494"], ["https://data.delijn.be/stops/405186", "https://data.delijn.be/stops/405215"], ["https://data.delijn.be/stops/406195", "https://data.delijn.be/stops/410224"], ["https://data.delijn.be/stops/304838", "https://data.delijn.be/stops/304877"], ["https://data.delijn.be/stops/506113", "https://data.delijn.be/stops/506642"], ["https://data.delijn.be/stops/105422", "https://data.delijn.be/stops/105427"], ["https://data.delijn.be/stops/209106", "https://data.delijn.be/stops/209777"], ["https://data.delijn.be/stops/403744", "https://data.delijn.be/stops/403745"], ["https://data.delijn.be/stops/505422", "https://data.delijn.be/stops/509080"], ["https://data.delijn.be/stops/305510", "https://data.delijn.be/stops/305522"], ["https://data.delijn.be/stops/104508", "https://data.delijn.be/stops/308849"], ["https://data.delijn.be/stops/503554", "https://data.delijn.be/stops/508554"], ["https://data.delijn.be/stops/302935", "https://data.delijn.be/stops/303450"], ["https://data.delijn.be/stops/102532", "https://data.delijn.be/stops/405664"], ["https://data.delijn.be/stops/400796", "https://data.delijn.be/stops/400798"], ["https://data.delijn.be/stops/208278", "https://data.delijn.be/stops/208281"], ["https://data.delijn.be/stops/300744", "https://data.delijn.be/stops/300805"], ["https://data.delijn.be/stops/405934", "https://data.delijn.be/stops/405935"], ["https://data.delijn.be/stops/404696", "https://data.delijn.be/stops/407255"], ["https://data.delijn.be/stops/300541", "https://data.delijn.be/stops/304906"], ["https://data.delijn.be/stops/200273", "https://data.delijn.be/stops/201273"], ["https://data.delijn.be/stops/504024", "https://data.delijn.be/stops/504034"], ["https://data.delijn.be/stops/502509", "https://data.delijn.be/stops/507714"], ["https://data.delijn.be/stops/404596", "https://data.delijn.be/stops/406951"], ["https://data.delijn.be/stops/305258", "https://data.delijn.be/stops/305892"], ["https://data.delijn.be/stops/200165", "https://data.delijn.be/stops/201166"], ["https://data.delijn.be/stops/205039", "https://data.delijn.be/stops/205040"], ["https://data.delijn.be/stops/107963", "https://data.delijn.be/stops/107964"], ["https://data.delijn.be/stops/302106", "https://data.delijn.be/stops/302108"], ["https://data.delijn.be/stops/104021", "https://data.delijn.be/stops/107213"], ["https://data.delijn.be/stops/500009", "https://data.delijn.be/stops/501692"], ["https://data.delijn.be/stops/501081", "https://data.delijn.be/stops/501082"], ["https://data.delijn.be/stops/207435", "https://data.delijn.be/stops/207436"], ["https://data.delijn.be/stops/203188", "https://data.delijn.be/stops/203616"], ["https://data.delijn.be/stops/303993", "https://data.delijn.be/stops/304851"], ["https://data.delijn.be/stops/104394", "https://data.delijn.be/stops/105083"], ["https://data.delijn.be/stops/202535", "https://data.delijn.be/stops/203534"], ["https://data.delijn.be/stops/405046", "https://data.delijn.be/stops/405756"], ["https://data.delijn.be/stops/208686", "https://data.delijn.be/stops/208687"], ["https://data.delijn.be/stops/404973", "https://data.delijn.be/stops/404975"], ["https://data.delijn.be/stops/205260", "https://data.delijn.be/stops/205261"], ["https://data.delijn.be/stops/402943", "https://data.delijn.be/stops/407299"], ["https://data.delijn.be/stops/208338", "https://data.delijn.be/stops/209376"], ["https://data.delijn.be/stops/206235", "https://data.delijn.be/stops/207235"], ["https://data.delijn.be/stops/305623", "https://data.delijn.be/stops/307269"], ["https://data.delijn.be/stops/304297", "https://data.delijn.be/stops/306826"], ["https://data.delijn.be/stops/304472", "https://data.delijn.be/stops/304473"], ["https://data.delijn.be/stops/108824", "https://data.delijn.be/stops/108825"], ["https://data.delijn.be/stops/104949", "https://data.delijn.be/stops/400430"], ["https://data.delijn.be/stops/308058", "https://data.delijn.be/stops/308059"], ["https://data.delijn.be/stops/504277", "https://data.delijn.be/stops/509277"], ["https://data.delijn.be/stops/301963", "https://data.delijn.be/stops/301988"], ["https://data.delijn.be/stops/204080", "https://data.delijn.be/stops/204202"], ["https://data.delijn.be/stops/206785", "https://data.delijn.be/stops/307316"], ["https://data.delijn.be/stops/406404", "https://data.delijn.be/stops/409778"], ["https://data.delijn.be/stops/101812", "https://data.delijn.be/stops/104639"], ["https://data.delijn.be/stops/204985", "https://data.delijn.be/stops/209351"], ["https://data.delijn.be/stops/503512", "https://data.delijn.be/stops/508512"], ["https://data.delijn.be/stops/301180", "https://data.delijn.be/stops/301260"], ["https://data.delijn.be/stops/200928", "https://data.delijn.be/stops/202137"], ["https://data.delijn.be/stops/109663", "https://data.delijn.be/stops/109668"], ["https://data.delijn.be/stops/400790", "https://data.delijn.be/stops/400889"], ["https://data.delijn.be/stops/400516", "https://data.delijn.be/stops/400517"], ["https://data.delijn.be/stops/106482", "https://data.delijn.be/stops/106483"], ["https://data.delijn.be/stops/204480", "https://data.delijn.be/stops/205420"], ["https://data.delijn.be/stops/303755", "https://data.delijn.be/stops/303764"], ["https://data.delijn.be/stops/504252", "https://data.delijn.be/stops/509365"], ["https://data.delijn.be/stops/208673", "https://data.delijn.be/stops/209444"], ["https://data.delijn.be/stops/408251", "https://data.delijn.be/stops/408305"], ["https://data.delijn.be/stops/202200", "https://data.delijn.be/stops/203200"], ["https://data.delijn.be/stops/102420", "https://data.delijn.be/stops/105410"], ["https://data.delijn.be/stops/207226", "https://data.delijn.be/stops/300187"], ["https://data.delijn.be/stops/206859", "https://data.delijn.be/stops/207559"], ["https://data.delijn.be/stops/304240", "https://data.delijn.be/stops/304488"], ["https://data.delijn.be/stops/203084", "https://data.delijn.be/stops/203085"], ["https://data.delijn.be/stops/500127", "https://data.delijn.be/stops/507479"], ["https://data.delijn.be/stops/204380", "https://data.delijn.be/stops/205763"], ["https://data.delijn.be/stops/503963", "https://data.delijn.be/stops/509886"], ["https://data.delijn.be/stops/108188", "https://data.delijn.be/stops/108206"], ["https://data.delijn.be/stops/503378", "https://data.delijn.be/stops/504763"], ["https://data.delijn.be/stops/301770", "https://data.delijn.be/stops/301775"], ["https://data.delijn.be/stops/103056", "https://data.delijn.be/stops/107179"], ["https://data.delijn.be/stops/302414", "https://data.delijn.be/stops/302415"], ["https://data.delijn.be/stops/408027", "https://data.delijn.be/stops/408029"], ["https://data.delijn.be/stops/503963", "https://data.delijn.be/stops/508124"], ["https://data.delijn.be/stops/201161", "https://data.delijn.be/stops/201313"], ["https://data.delijn.be/stops/410078", "https://data.delijn.be/stops/410079"], ["https://data.delijn.be/stops/401783", "https://data.delijn.be/stops/410357"], ["https://data.delijn.be/stops/106450", "https://data.delijn.be/stops/106452"], ["https://data.delijn.be/stops/508298", "https://data.delijn.be/stops/508301"], ["https://data.delijn.be/stops/208441", "https://data.delijn.be/stops/209440"], ["https://data.delijn.be/stops/102986", "https://data.delijn.be/stops/102987"], ["https://data.delijn.be/stops/107145", "https://data.delijn.be/stops/107315"], ["https://data.delijn.be/stops/210011", "https://data.delijn.be/stops/211011"], ["https://data.delijn.be/stops/209598", "https://data.delijn.be/stops/307334"], ["https://data.delijn.be/stops/200231", "https://data.delijn.be/stops/201231"], ["https://data.delijn.be/stops/303836", "https://data.delijn.be/stops/306835"], ["https://data.delijn.be/stops/505331", "https://data.delijn.be/stops/505767"], ["https://data.delijn.be/stops/104515", "https://data.delijn.be/stops/107797"], ["https://data.delijn.be/stops/407624", "https://data.delijn.be/stops/407691"], ["https://data.delijn.be/stops/102179", "https://data.delijn.be/stops/102765"], ["https://data.delijn.be/stops/507558", "https://data.delijn.be/stops/509892"], ["https://data.delijn.be/stops/403438", "https://data.delijn.be/stops/403448"], ["https://data.delijn.be/stops/204216", "https://data.delijn.be/stops/205216"], ["https://data.delijn.be/stops/302946", "https://data.delijn.be/stops/303022"], ["https://data.delijn.be/stops/406939", "https://data.delijn.be/stops/407285"], ["https://data.delijn.be/stops/103968", "https://data.delijn.be/stops/105764"], ["https://data.delijn.be/stops/101809", "https://data.delijn.be/stops/108107"], ["https://data.delijn.be/stops/405705", "https://data.delijn.be/stops/408904"], ["https://data.delijn.be/stops/405426", "https://data.delijn.be/stops/409303"], ["https://data.delijn.be/stops/200039", "https://data.delijn.be/stops/204100"], ["https://data.delijn.be/stops/200492", "https://data.delijn.be/stops/201131"], ["https://data.delijn.be/stops/201724", "https://data.delijn.be/stops/203377"], ["https://data.delijn.be/stops/101514", "https://data.delijn.be/stops/109375"], ["https://data.delijn.be/stops/202116", "https://data.delijn.be/stops/205832"], ["https://data.delijn.be/stops/101387", "https://data.delijn.be/stops/101393"], ["https://data.delijn.be/stops/304409", "https://data.delijn.be/stops/304416"], ["https://data.delijn.be/stops/207458", "https://data.delijn.be/stops/207823"], ["https://data.delijn.be/stops/502336", "https://data.delijn.be/stops/507658"], ["https://data.delijn.be/stops/307649", "https://data.delijn.be/stops/307692"], ["https://data.delijn.be/stops/503562", "https://data.delijn.be/stops/508550"], ["https://data.delijn.be/stops/206159", "https://data.delijn.be/stops/207507"], ["https://data.delijn.be/stops/102443", "https://data.delijn.be/stops/102840"], ["https://data.delijn.be/stops/200191", "https://data.delijn.be/stops/201191"], ["https://data.delijn.be/stops/403766", "https://data.delijn.be/stops/407882"], ["https://data.delijn.be/stops/107842", "https://data.delijn.be/stops/107843"], ["https://data.delijn.be/stops/204107", "https://data.delijn.be/stops/205107"], ["https://data.delijn.be/stops/404335", "https://data.delijn.be/stops/404384"], ["https://data.delijn.be/stops/504891", "https://data.delijn.be/stops/505091"], ["https://data.delijn.be/stops/104908", "https://data.delijn.be/stops/107849"], ["https://data.delijn.be/stops/304957", "https://data.delijn.be/stops/304972"], ["https://data.delijn.be/stops/502070", "https://data.delijn.be/stops/502072"], ["https://data.delijn.be/stops/504463", "https://data.delijn.be/stops/509463"], ["https://data.delijn.be/stops/505069", "https://data.delijn.be/stops/505655"], ["https://data.delijn.be/stops/505231", "https://data.delijn.be/stops/505330"], ["https://data.delijn.be/stops/505806", "https://data.delijn.be/stops/508597"], ["https://data.delijn.be/stops/104022", "https://data.delijn.be/stops/109885"], ["https://data.delijn.be/stops/202820", "https://data.delijn.be/stops/202890"], ["https://data.delijn.be/stops/102606", "https://data.delijn.be/stops/106834"], ["https://data.delijn.be/stops/302830", "https://data.delijn.be/stops/302855"], ["https://data.delijn.be/stops/403052", "https://data.delijn.be/stops/403090"], ["https://data.delijn.be/stops/208693", "https://data.delijn.be/stops/208725"], ["https://data.delijn.be/stops/403407", "https://data.delijn.be/stops/403417"], ["https://data.delijn.be/stops/306614", "https://data.delijn.be/stops/306615"], ["https://data.delijn.be/stops/105761", "https://data.delijn.be/stops/105762"], ["https://data.delijn.be/stops/404137", "https://data.delijn.be/stops/404178"], ["https://data.delijn.be/stops/202633", "https://data.delijn.be/stops/203632"], ["https://data.delijn.be/stops/206873", "https://data.delijn.be/stops/207285"], ["https://data.delijn.be/stops/201869", "https://data.delijn.be/stops/203015"], ["https://data.delijn.be/stops/105746", "https://data.delijn.be/stops/109831"], ["https://data.delijn.be/stops/106278", "https://data.delijn.be/stops/109909"], ["https://data.delijn.be/stops/102076", "https://data.delijn.be/stops/102077"], ["https://data.delijn.be/stops/301810", "https://data.delijn.be/stops/304679"], ["https://data.delijn.be/stops/107569", "https://data.delijn.be/stops/107570"], ["https://data.delijn.be/stops/400787", "https://data.delijn.be/stops/409588"], ["https://data.delijn.be/stops/101799", "https://data.delijn.be/stops/300671"], ["https://data.delijn.be/stops/501510", "https://data.delijn.be/stops/501531"], ["https://data.delijn.be/stops/503380", "https://data.delijn.be/stops/508380"], ["https://data.delijn.be/stops/209667", "https://data.delijn.be/stops/209670"], ["https://data.delijn.be/stops/106845", "https://data.delijn.be/stops/106851"], ["https://data.delijn.be/stops/109535", "https://data.delijn.be/stops/109589"], ["https://data.delijn.be/stops/208234", "https://data.delijn.be/stops/208797"], ["https://data.delijn.be/stops/201699", "https://data.delijn.be/stops/202782"], ["https://data.delijn.be/stops/307535", "https://data.delijn.be/stops/307538"], ["https://data.delijn.be/stops/305494", "https://data.delijn.be/stops/307877"], ["https://data.delijn.be/stops/404123", "https://data.delijn.be/stops/404129"], ["https://data.delijn.be/stops/304336", "https://data.delijn.be/stops/305219"], ["https://data.delijn.be/stops/504429", "https://data.delijn.be/stops/509418"], ["https://data.delijn.be/stops/201926", "https://data.delijn.be/stops/207750"], ["https://data.delijn.be/stops/106582", "https://data.delijn.be/stops/107387"], ["https://data.delijn.be/stops/504377", "https://data.delijn.be/stops/509377"], ["https://data.delijn.be/stops/504776", "https://data.delijn.be/stops/505714"], ["https://data.delijn.be/stops/304288", "https://data.delijn.be/stops/305493"], ["https://data.delijn.be/stops/305727", "https://data.delijn.be/stops/305728"], ["https://data.delijn.be/stops/103122", "https://data.delijn.be/stops/104369"], ["https://data.delijn.be/stops/305966", "https://data.delijn.be/stops/308138"], ["https://data.delijn.be/stops/105188", "https://data.delijn.be/stops/105189"], ["https://data.delijn.be/stops/102603", "https://data.delijn.be/stops/303882"], ["https://data.delijn.be/stops/202599", "https://data.delijn.be/stops/203125"], ["https://data.delijn.be/stops/209445", "https://data.delijn.be/stops/209446"], ["https://data.delijn.be/stops/109510", "https://data.delijn.be/stops/109511"], ["https://data.delijn.be/stops/206348", "https://data.delijn.be/stops/215809"], ["https://data.delijn.be/stops/207260", "https://data.delijn.be/stops/207319"], ["https://data.delijn.be/stops/301717", "https://data.delijn.be/stops/301760"], ["https://data.delijn.be/stops/403690", "https://data.delijn.be/stops/409286"], ["https://data.delijn.be/stops/300956", "https://data.delijn.be/stops/304535"], ["https://data.delijn.be/stops/308223", "https://data.delijn.be/stops/308288"], ["https://data.delijn.be/stops/400248", "https://data.delijn.be/stops/400925"], ["https://data.delijn.be/stops/207096", "https://data.delijn.be/stops/207908"], ["https://data.delijn.be/stops/205196", "https://data.delijn.be/stops/205197"], ["https://data.delijn.be/stops/407962", "https://data.delijn.be/stops/407967"], ["https://data.delijn.be/stops/301929", "https://data.delijn.be/stops/304493"], ["https://data.delijn.be/stops/202872", "https://data.delijn.be/stops/203080"], ["https://data.delijn.be/stops/303043", "https://data.delijn.be/stops/303104"], ["https://data.delijn.be/stops/506598", "https://data.delijn.be/stops/506612"], ["https://data.delijn.be/stops/301925", "https://data.delijn.be/stops/306159"], ["https://data.delijn.be/stops/206727", "https://data.delijn.be/stops/206736"], ["https://data.delijn.be/stops/304866", "https://data.delijn.be/stops/306172"], ["https://data.delijn.be/stops/101477", "https://data.delijn.be/stops/108736"], ["https://data.delijn.be/stops/305221", "https://data.delijn.be/stops/305893"], ["https://data.delijn.be/stops/401724", "https://data.delijn.be/stops/405462"], ["https://data.delijn.be/stops/304042", "https://data.delijn.be/stops/305836"], ["https://data.delijn.be/stops/308163", "https://data.delijn.be/stops/308227"], ["https://data.delijn.be/stops/200607", "https://data.delijn.be/stops/503642"], ["https://data.delijn.be/stops/502462", "https://data.delijn.be/stops/502581"], ["https://data.delijn.be/stops/505203", "https://data.delijn.be/stops/505764"], ["https://data.delijn.be/stops/108891", "https://data.delijn.be/stops/108892"], ["https://data.delijn.be/stops/304689", "https://data.delijn.be/stops/306686"], ["https://data.delijn.be/stops/400710", "https://data.delijn.be/stops/400712"], ["https://data.delijn.be/stops/508726", "https://data.delijn.be/stops/509965"], ["https://data.delijn.be/stops/408908", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/108889", "https://data.delijn.be/stops/108890"], ["https://data.delijn.be/stops/302262", "https://data.delijn.be/stops/306374"], ["https://data.delijn.be/stops/303282", "https://data.delijn.be/stops/303290"], ["https://data.delijn.be/stops/107559", "https://data.delijn.be/stops/109436"], ["https://data.delijn.be/stops/304865", "https://data.delijn.be/stops/308527"], ["https://data.delijn.be/stops/301246", "https://data.delijn.be/stops/308670"], ["https://data.delijn.be/stops/202541", "https://data.delijn.be/stops/209450"], ["https://data.delijn.be/stops/402755", "https://data.delijn.be/stops/408214"], ["https://data.delijn.be/stops/300797", "https://data.delijn.be/stops/304774"], ["https://data.delijn.be/stops/506112", "https://data.delijn.be/stops/506225"], ["https://data.delijn.be/stops/200187", "https://data.delijn.be/stops/201181"], ["https://data.delijn.be/stops/405168", "https://data.delijn.be/stops/405174"], ["https://data.delijn.be/stops/104814", "https://data.delijn.be/stops/105162"], ["https://data.delijn.be/stops/304656", "https://data.delijn.be/stops/304657"], ["https://data.delijn.be/stops/204769", "https://data.delijn.be/stops/205402"], ["https://data.delijn.be/stops/502762", "https://data.delijn.be/stops/507762"], ["https://data.delijn.be/stops/304619", "https://data.delijn.be/stops/304622"], ["https://data.delijn.be/stops/408638", "https://data.delijn.be/stops/307055"], ["https://data.delijn.be/stops/407234", "https://data.delijn.be/stops/407509"], ["https://data.delijn.be/stops/406264", "https://data.delijn.be/stops/406432"], ["https://data.delijn.be/stops/404653", "https://data.delijn.be/stops/404676"], ["https://data.delijn.be/stops/101851", "https://data.delijn.be/stops/107232"], ["https://data.delijn.be/stops/206646", "https://data.delijn.be/stops/207491"], ["https://data.delijn.be/stops/405771", "https://data.delijn.be/stops/405833"], ["https://data.delijn.be/stops/201071", "https://data.delijn.be/stops/211046"], ["https://data.delijn.be/stops/400304", "https://data.delijn.be/stops/400959"], ["https://data.delijn.be/stops/304024", "https://data.delijn.be/stops/304825"], ["https://data.delijn.be/stops/206905", "https://data.delijn.be/stops/207038"], ["https://data.delijn.be/stops/109308", "https://data.delijn.be/stops/109655"], ["https://data.delijn.be/stops/203177", "https://data.delijn.be/stops/209867"], ["https://data.delijn.be/stops/301159", "https://data.delijn.be/stops/301168"], ["https://data.delijn.be/stops/507239", "https://data.delijn.be/stops/507654"], ["https://data.delijn.be/stops/101918", "https://data.delijn.be/stops/106999"], ["https://data.delijn.be/stops/302320", "https://data.delijn.be/stops/303512"], ["https://data.delijn.be/stops/206296", "https://data.delijn.be/stops/207673"], ["https://data.delijn.be/stops/502605", "https://data.delijn.be/stops/507072"], ["https://data.delijn.be/stops/505222", "https://data.delijn.be/stops/507006"], ["https://data.delijn.be/stops/401831", "https://data.delijn.be/stops/406015"], ["https://data.delijn.be/stops/206190", "https://data.delijn.be/stops/308570"], ["https://data.delijn.be/stops/301645", "https://data.delijn.be/stops/301666"], ["https://data.delijn.be/stops/101078", "https://data.delijn.be/stops/107140"], ["https://data.delijn.be/stops/204085", "https://data.delijn.be/stops/205410"], ["https://data.delijn.be/stops/201696", "https://data.delijn.be/stops/202389"], ["https://data.delijn.be/stops/101677", "https://data.delijn.be/stops/102753"], ["https://data.delijn.be/stops/503104", "https://data.delijn.be/stops/508104"], ["https://data.delijn.be/stops/407928", "https://data.delijn.be/stops/407929"], ["https://data.delijn.be/stops/407083", "https://data.delijn.be/stops/407913"], ["https://data.delijn.be/stops/104384", "https://data.delijn.be/stops/105115"], ["https://data.delijn.be/stops/202935", "https://data.delijn.be/stops/203776"], ["https://data.delijn.be/stops/206570", "https://data.delijn.be/stops/207561"], ["https://data.delijn.be/stops/202104", "https://data.delijn.be/stops/202106"], ["https://data.delijn.be/stops/503158", "https://data.delijn.be/stops/503166"], ["https://data.delijn.be/stops/402656", "https://data.delijn.be/stops/402707"], ["https://data.delijn.be/stops/500115", "https://data.delijn.be/stops/502392"], ["https://data.delijn.be/stops/201881", "https://data.delijn.be/stops/203277"], ["https://data.delijn.be/stops/108872", "https://data.delijn.be/stops/109509"], ["https://data.delijn.be/stops/300106", "https://data.delijn.be/stops/307731"], ["https://data.delijn.be/stops/404300", "https://data.delijn.be/stops/404301"], ["https://data.delijn.be/stops/202719", "https://data.delijn.be/stops/210087"], ["https://data.delijn.be/stops/104601", "https://data.delijn.be/stops/106840"], ["https://data.delijn.be/stops/408492", "https://data.delijn.be/stops/408950"], ["https://data.delijn.be/stops/108106", "https://data.delijn.be/stops/108107"], ["https://data.delijn.be/stops/103013", "https://data.delijn.be/stops/109375"], ["https://data.delijn.be/stops/200163", "https://data.delijn.be/stops/201163"], ["https://data.delijn.be/stops/508050", "https://data.delijn.be/stops/508051"], ["https://data.delijn.be/stops/508902", "https://data.delijn.be/stops/508904"], ["https://data.delijn.be/stops/207695", "https://data.delijn.be/stops/207873"], ["https://data.delijn.be/stops/508191", "https://data.delijn.be/stops/508192"], ["https://data.delijn.be/stops/403220", "https://data.delijn.be/stops/403222"], ["https://data.delijn.be/stops/401580", "https://data.delijn.be/stops/408469"], ["https://data.delijn.be/stops/303668", "https://data.delijn.be/stops/308903"], ["https://data.delijn.be/stops/201933", "https://data.delijn.be/stops/206569"], ["https://data.delijn.be/stops/208064", "https://data.delijn.be/stops/209064"], ["https://data.delijn.be/stops/101849", "https://data.delijn.be/stops/107231"], ["https://data.delijn.be/stops/101130", "https://data.delijn.be/stops/102505"], ["https://data.delijn.be/stops/207798", "https://data.delijn.be/stops/208757"], ["https://data.delijn.be/stops/403683", "https://data.delijn.be/stops/405124"], ["https://data.delijn.be/stops/302075", "https://data.delijn.be/stops/302276"], ["https://data.delijn.be/stops/501485", "https://data.delijn.be/stops/501486"], ["https://data.delijn.be/stops/201515", "https://data.delijn.be/stops/201533"], ["https://data.delijn.be/stops/503592", "https://data.delijn.be/stops/507484"], ["https://data.delijn.be/stops/308214", "https://data.delijn.be/stops/308236"], ["https://data.delijn.be/stops/305166", "https://data.delijn.be/stops/305206"], ["https://data.delijn.be/stops/102158", "https://data.delijn.be/stops/107539"], ["https://data.delijn.be/stops/406578", "https://data.delijn.be/stops/410203"], ["https://data.delijn.be/stops/405807", "https://data.delijn.be/stops/406729"], ["https://data.delijn.be/stops/400846", "https://data.delijn.be/stops/410393"], ["https://data.delijn.be/stops/109203", "https://data.delijn.be/stops/109211"], ["https://data.delijn.be/stops/401345", "https://data.delijn.be/stops/406060"], ["https://data.delijn.be/stops/407888", "https://data.delijn.be/stops/408188"], ["https://data.delijn.be/stops/301354", "https://data.delijn.be/stops/304525"], ["https://data.delijn.be/stops/401432", "https://data.delijn.be/stops/401495"], ["https://data.delijn.be/stops/101468", "https://data.delijn.be/stops/101469"], ["https://data.delijn.be/stops/503653", "https://data.delijn.be/stops/505117"], ["https://data.delijn.be/stops/206866", "https://data.delijn.be/stops/208383"], ["https://data.delijn.be/stops/401105", "https://data.delijn.be/stops/401115"], ["https://data.delijn.be/stops/307114", "https://data.delijn.be/stops/307806"], ["https://data.delijn.be/stops/303435", "https://data.delijn.be/stops/307950"], ["https://data.delijn.be/stops/504464", "https://data.delijn.be/stops/504571"], ["https://data.delijn.be/stops/504021", "https://data.delijn.be/stops/509021"], ["https://data.delijn.be/stops/401177", "https://data.delijn.be/stops/406659"], ["https://data.delijn.be/stops/404642", "https://data.delijn.be/stops/404995"], ["https://data.delijn.be/stops/205747", "https://data.delijn.be/stops/205757"], ["https://data.delijn.be/stops/406668", "https://data.delijn.be/stops/406986"], ["https://data.delijn.be/stops/401783", "https://data.delijn.be/stops/406351"], ["https://data.delijn.be/stops/101591", "https://data.delijn.be/stops/106051"], ["https://data.delijn.be/stops/109352", "https://data.delijn.be/stops/109354"], ["https://data.delijn.be/stops/405146", "https://data.delijn.be/stops/405288"], ["https://data.delijn.be/stops/300006", "https://data.delijn.be/stops/300008"], ["https://data.delijn.be/stops/509484", "https://data.delijn.be/stops/509488"], ["https://data.delijn.be/stops/303632", "https://data.delijn.be/stops/307252"], ["https://data.delijn.be/stops/106853", "https://data.delijn.be/stops/107463"], ["https://data.delijn.be/stops/507225", "https://data.delijn.be/stops/507232"], ["https://data.delijn.be/stops/105013", "https://data.delijn.be/stops/105108"], ["https://data.delijn.be/stops/408497", "https://data.delijn.be/stops/408610"], ["https://data.delijn.be/stops/503161", "https://data.delijn.be/stops/503659"], ["https://data.delijn.be/stops/106139", "https://data.delijn.be/stops/106142"], ["https://data.delijn.be/stops/405748", "https://data.delijn.be/stops/405765"], ["https://data.delijn.be/stops/202967", "https://data.delijn.be/stops/202968"], ["https://data.delijn.be/stops/304540", "https://data.delijn.be/stops/307575"], ["https://data.delijn.be/stops/301368", "https://data.delijn.be/stops/306134"], ["https://data.delijn.be/stops/506120", "https://data.delijn.be/stops/506403"], ["https://data.delijn.be/stops/401086", "https://data.delijn.be/stops/401097"], ["https://data.delijn.be/stops/405002", "https://data.delijn.be/stops/405044"], ["https://data.delijn.be/stops/301464", "https://data.delijn.be/stops/305659"], ["https://data.delijn.be/stops/106564", "https://data.delijn.be/stops/106566"], ["https://data.delijn.be/stops/409502", "https://data.delijn.be/stops/409506"], ["https://data.delijn.be/stops/200921", "https://data.delijn.be/stops/201957"], ["https://data.delijn.be/stops/102295", "https://data.delijn.be/stops/107475"], ["https://data.delijn.be/stops/502729", "https://data.delijn.be/stops/507087"], ["https://data.delijn.be/stops/406678", "https://data.delijn.be/stops/407159"], ["https://data.delijn.be/stops/207937", "https://data.delijn.be/stops/208713"], ["https://data.delijn.be/stops/503699", "https://data.delijn.be/stops/503922"], ["https://data.delijn.be/stops/401035", "https://data.delijn.be/stops/401038"], ["https://data.delijn.be/stops/404499", "https://data.delijn.be/stops/404568"], ["https://data.delijn.be/stops/301009", "https://data.delijn.be/stops/301010"], ["https://data.delijn.be/stops/202215", "https://data.delijn.be/stops/203224"], ["https://data.delijn.be/stops/508986", "https://data.delijn.be/stops/509867"], ["https://data.delijn.be/stops/502566", "https://data.delijn.be/stops/505704"], ["https://data.delijn.be/stops/505918", "https://data.delijn.be/stops/509232"], ["https://data.delijn.be/stops/307347", "https://data.delijn.be/stops/308448"], ["https://data.delijn.be/stops/507239", "https://data.delijn.be/stops/507242"], ["https://data.delijn.be/stops/502647", "https://data.delijn.be/stops/507205"], ["https://data.delijn.be/stops/206534", "https://data.delijn.be/stops/207534"], ["https://data.delijn.be/stops/504058", "https://data.delijn.be/stops/504062"], ["https://data.delijn.be/stops/204681", "https://data.delijn.be/stops/205681"], ["https://data.delijn.be/stops/306063", "https://data.delijn.be/stops/307716"], ["https://data.delijn.be/stops/502647", "https://data.delijn.be/stops/507631"], ["https://data.delijn.be/stops/301502", "https://data.delijn.be/stops/301508"], ["https://data.delijn.be/stops/208457", "https://data.delijn.be/stops/209458"], ["https://data.delijn.be/stops/401951", "https://data.delijn.be/stops/407525"], ["https://data.delijn.be/stops/305377", "https://data.delijn.be/stops/305384"], ["https://data.delijn.be/stops/400560", "https://data.delijn.be/stops/402963"], ["https://data.delijn.be/stops/307250", "https://data.delijn.be/stops/307251"], ["https://data.delijn.be/stops/505949", "https://data.delijn.be/stops/508284"], ["https://data.delijn.be/stops/404114", "https://data.delijn.be/stops/404116"], ["https://data.delijn.be/stops/404081", "https://data.delijn.be/stops/404086"], ["https://data.delijn.be/stops/300396", "https://data.delijn.be/stops/306198"], ["https://data.delijn.be/stops/107995", "https://data.delijn.be/stops/108000"], ["https://data.delijn.be/stops/403710", "https://data.delijn.be/stops/403722"], ["https://data.delijn.be/stops/206348", "https://data.delijn.be/stops/207373"], ["https://data.delijn.be/stops/305654", "https://data.delijn.be/stops/305657"], ["https://data.delijn.be/stops/405567", "https://data.delijn.be/stops/405575"], ["https://data.delijn.be/stops/109211", "https://data.delijn.be/stops/109213"], ["https://data.delijn.be/stops/101459", "https://data.delijn.be/stops/108224"], ["https://data.delijn.be/stops/101423", "https://data.delijn.be/stops/101424"], ["https://data.delijn.be/stops/101586", "https://data.delijn.be/stops/105447"], ["https://data.delijn.be/stops/501454", "https://data.delijn.be/stops/506454"], ["https://data.delijn.be/stops/401026", "https://data.delijn.be/stops/404866"], ["https://data.delijn.be/stops/205140", "https://data.delijn.be/stops/206638"], ["https://data.delijn.be/stops/206219", "https://data.delijn.be/stops/207184"], ["https://data.delijn.be/stops/405796", "https://data.delijn.be/stops/405797"], ["https://data.delijn.be/stops/300223", "https://data.delijn.be/stops/307464"], ["https://data.delijn.be/stops/404734", "https://data.delijn.be/stops/404740"], ["https://data.delijn.be/stops/307724", "https://data.delijn.be/stops/307727"], ["https://data.delijn.be/stops/305040", "https://data.delijn.be/stops/307849"], ["https://data.delijn.be/stops/204321", "https://data.delijn.be/stops/205321"], ["https://data.delijn.be/stops/303108", "https://data.delijn.be/stops/303117"], ["https://data.delijn.be/stops/200853", "https://data.delijn.be/stops/202305"], ["https://data.delijn.be/stops/206713", "https://data.delijn.be/stops/206719"], ["https://data.delijn.be/stops/402311", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/201538", "https://data.delijn.be/stops/210049"], ["https://data.delijn.be/stops/400583", "https://data.delijn.be/stops/400625"], ["https://data.delijn.be/stops/101528", "https://data.delijn.be/stops/109004"], ["https://data.delijn.be/stops/104591", "https://data.delijn.be/stops/108696"], ["https://data.delijn.be/stops/201548", "https://data.delijn.be/stops/211528"], ["https://data.delijn.be/stops/504638", "https://data.delijn.be/stops/505305"], ["https://data.delijn.be/stops/302296", "https://data.delijn.be/stops/307133"], ["https://data.delijn.be/stops/209081", "https://data.delijn.be/stops/209524"], ["https://data.delijn.be/stops/206495", "https://data.delijn.be/stops/207507"], ["https://data.delijn.be/stops/202709", "https://data.delijn.be/stops/202710"], ["https://data.delijn.be/stops/504091", "https://data.delijn.be/stops/505102"], ["https://data.delijn.be/stops/501675", "https://data.delijn.be/stops/502366"], ["https://data.delijn.be/stops/202948", "https://data.delijn.be/stops/203849"], ["https://data.delijn.be/stops/300344", "https://data.delijn.be/stops/300357"], ["https://data.delijn.be/stops/202102", "https://data.delijn.be/stops/210006"], ["https://data.delijn.be/stops/204382", "https://data.delijn.be/stops/205381"], ["https://data.delijn.be/stops/202243", "https://data.delijn.be/stops/203750"], ["https://data.delijn.be/stops/403930", "https://data.delijn.be/stops/404030"], ["https://data.delijn.be/stops/304596", "https://data.delijn.be/stops/304598"], ["https://data.delijn.be/stops/108756", "https://data.delijn.be/stops/108758"], ["https://data.delijn.be/stops/502621", "https://data.delijn.be/stops/507394"], ["https://data.delijn.be/stops/107437", "https://data.delijn.be/stops/107439"], ["https://data.delijn.be/stops/505783", "https://data.delijn.be/stops/507707"], ["https://data.delijn.be/stops/507317", "https://data.delijn.be/stops/507323"], ["https://data.delijn.be/stops/305641", "https://data.delijn.be/stops/307269"], ["https://data.delijn.be/stops/303803", "https://data.delijn.be/stops/308900"], ["https://data.delijn.be/stops/200195", "https://data.delijn.be/stops/201186"], ["https://data.delijn.be/stops/403975", "https://data.delijn.be/stops/405979"], ["https://data.delijn.be/stops/300381", "https://data.delijn.be/stops/300382"], ["https://data.delijn.be/stops/409740", "https://data.delijn.be/stops/409754"], ["https://data.delijn.be/stops/105291", "https://data.delijn.be/stops/105292"], ["https://data.delijn.be/stops/302346", "https://data.delijn.be/stops/302350"], ["https://data.delijn.be/stops/208695", "https://data.delijn.be/stops/208696"], ["https://data.delijn.be/stops/501599", "https://data.delijn.be/stops/509833"], ["https://data.delijn.be/stops/303652", "https://data.delijn.be/stops/308955"], ["https://data.delijn.be/stops/408116", "https://data.delijn.be/stops/408117"], ["https://data.delijn.be/stops/108566", "https://data.delijn.be/stops/108992"], ["https://data.delijn.be/stops/200524", "https://data.delijn.be/stops/210131"], ["https://data.delijn.be/stops/105236", "https://data.delijn.be/stops/105239"], ["https://data.delijn.be/stops/403075", "https://data.delijn.be/stops/403250"], ["https://data.delijn.be/stops/404751", "https://data.delijn.be/stops/404945"], ["https://data.delijn.be/stops/408577", "https://data.delijn.be/stops/408637"], ["https://data.delijn.be/stops/405943", "https://data.delijn.be/stops/405978"], ["https://data.delijn.be/stops/306900", "https://data.delijn.be/stops/308094"], ["https://data.delijn.be/stops/504837", "https://data.delijn.be/stops/505427"], ["https://data.delijn.be/stops/302932", "https://data.delijn.be/stops/302937"], ["https://data.delijn.be/stops/209458", "https://data.delijn.be/stops/209676"], ["https://data.delijn.be/stops/206944", "https://data.delijn.be/stops/209551"], ["https://data.delijn.be/stops/204609", "https://data.delijn.be/stops/205609"], ["https://data.delijn.be/stops/404328", "https://data.delijn.be/stops/409572"], ["https://data.delijn.be/stops/104597", "https://data.delijn.be/stops/105158"], ["https://data.delijn.be/stops/304443", "https://data.delijn.be/stops/304457"], ["https://data.delijn.be/stops/203075", "https://data.delijn.be/stops/203436"], ["https://data.delijn.be/stops/300367", "https://data.delijn.be/stops/300368"], ["https://data.delijn.be/stops/408092", "https://data.delijn.be/stops/408110"], ["https://data.delijn.be/stops/305233", "https://data.delijn.be/stops/305234"], ["https://data.delijn.be/stops/404584", "https://data.delijn.be/stops/406786"], ["https://data.delijn.be/stops/104467", "https://data.delijn.be/stops/107197"], ["https://data.delijn.be/stops/103341", "https://data.delijn.be/stops/104575"], ["https://data.delijn.be/stops/508417", "https://data.delijn.be/stops/509867"], ["https://data.delijn.be/stops/104602", "https://data.delijn.be/stops/108262"], ["https://data.delijn.be/stops/301776", "https://data.delijn.be/stops/301785"], ["https://data.delijn.be/stops/102818", "https://data.delijn.be/stops/102821"], ["https://data.delijn.be/stops/304481", "https://data.delijn.be/stops/304482"], ["https://data.delijn.be/stops/409310", "https://data.delijn.be/stops/409311"], ["https://data.delijn.be/stops/403164", "https://data.delijn.be/stops/410222"], ["https://data.delijn.be/stops/407842", "https://data.delijn.be/stops/407843"], ["https://data.delijn.be/stops/300291", "https://data.delijn.be/stops/300292"], ["https://data.delijn.be/stops/206630", "https://data.delijn.be/stops/207630"], ["https://data.delijn.be/stops/206819", "https://data.delijn.be/stops/206820"], ["https://data.delijn.be/stops/504743", "https://data.delijn.be/stops/508624"], ["https://data.delijn.be/stops/302898", "https://data.delijn.be/stops/306096"], ["https://data.delijn.be/stops/504003", "https://data.delijn.be/stops/504004"], ["https://data.delijn.be/stops/107560", "https://data.delijn.be/stops/107565"], ["https://data.delijn.be/stops/107313", "https://data.delijn.be/stops/108813"], ["https://data.delijn.be/stops/306695", "https://data.delijn.be/stops/308789"], ["https://data.delijn.be/stops/103322", "https://data.delijn.be/stops/103749"], ["https://data.delijn.be/stops/502055", "https://data.delijn.be/stops/502736"], ["https://data.delijn.be/stops/503886", "https://data.delijn.be/stops/508115"], ["https://data.delijn.be/stops/202616", "https://data.delijn.be/stops/202617"], ["https://data.delijn.be/stops/108948", "https://data.delijn.be/stops/108951"], ["https://data.delijn.be/stops/200145", "https://data.delijn.be/stops/208842"], ["https://data.delijn.be/stops/202679", "https://data.delijn.be/stops/203691"], ["https://data.delijn.be/stops/407896", "https://data.delijn.be/stops/408044"], ["https://data.delijn.be/stops/303536", "https://data.delijn.be/stops/303878"], ["https://data.delijn.be/stops/207433", "https://data.delijn.be/stops/209690"], ["https://data.delijn.be/stops/109082", "https://data.delijn.be/stops/109309"], ["https://data.delijn.be/stops/304020", "https://data.delijn.be/stops/304913"], ["https://data.delijn.be/stops/504191", "https://data.delijn.be/stops/509159"], ["https://data.delijn.be/stops/206339", "https://data.delijn.be/stops/207342"], ["https://data.delijn.be/stops/207566", "https://data.delijn.be/stops/207997"], ["https://data.delijn.be/stops/103583", "https://data.delijn.be/stops/108913"], ["https://data.delijn.be/stops/303191", "https://data.delijn.be/stops/307952"], ["https://data.delijn.be/stops/303652", "https://data.delijn.be/stops/304027"], ["https://data.delijn.be/stops/410128", "https://data.delijn.be/stops/410288"], ["https://data.delijn.be/stops/301129", "https://data.delijn.be/stops/302872"], ["https://data.delijn.be/stops/303382", "https://data.delijn.be/stops/303384"], ["https://data.delijn.be/stops/406207", "https://data.delijn.be/stops/406268"], ["https://data.delijn.be/stops/305104", "https://data.delijn.be/stops/305127"], ["https://data.delijn.be/stops/201412", "https://data.delijn.be/stops/201454"], ["https://data.delijn.be/stops/207763", "https://data.delijn.be/stops/207787"], ["https://data.delijn.be/stops/202024", "https://data.delijn.be/stops/203023"], ["https://data.delijn.be/stops/301919", "https://data.delijn.be/stops/303175"], ["https://data.delijn.be/stops/306267", "https://data.delijn.be/stops/306268"], ["https://data.delijn.be/stops/300972", "https://data.delijn.be/stops/307852"], ["https://data.delijn.be/stops/503635", "https://data.delijn.be/stops/503981"], ["https://data.delijn.be/stops/400443", "https://data.delijn.be/stops/400444"], ["https://data.delijn.be/stops/507718", "https://data.delijn.be/stops/507719"], ["https://data.delijn.be/stops/506440", "https://data.delijn.be/stops/506442"], ["https://data.delijn.be/stops/507116", "https://data.delijn.be/stops/507725"], ["https://data.delijn.be/stops/405402", "https://data.delijn.be/stops/405403"], ["https://data.delijn.be/stops/101783", "https://data.delijn.be/stops/107872"], ["https://data.delijn.be/stops/501736", "https://data.delijn.be/stops/501746"], ["https://data.delijn.be/stops/206758", "https://data.delijn.be/stops/207623"], ["https://data.delijn.be/stops/404683", "https://data.delijn.be/stops/404687"], ["https://data.delijn.be/stops/206657", "https://data.delijn.be/stops/206729"], ["https://data.delijn.be/stops/504269", "https://data.delijn.be/stops/504851"], ["https://data.delijn.be/stops/304781", "https://data.delijn.be/stops/304782"], ["https://data.delijn.be/stops/300304", "https://data.delijn.be/stops/301752"], ["https://data.delijn.be/stops/502301", "https://data.delijn.be/stops/507301"], ["https://data.delijn.be/stops/405025", "https://data.delijn.be/stops/405092"], ["https://data.delijn.be/stops/203179", "https://data.delijn.be/stops/203498"], ["https://data.delijn.be/stops/402112", "https://data.delijn.be/stops/405189"], ["https://data.delijn.be/stops/206453", "https://data.delijn.be/stops/206454"], ["https://data.delijn.be/stops/409364", "https://data.delijn.be/stops/409366"], ["https://data.delijn.be/stops/303283", "https://data.delijn.be/stops/306970"], ["https://data.delijn.be/stops/201757", "https://data.delijn.be/stops/201778"], ["https://data.delijn.be/stops/108654", "https://data.delijn.be/stops/108656"], ["https://data.delijn.be/stops/103319", "https://data.delijn.be/stops/105420"], ["https://data.delijn.be/stops/203822", "https://data.delijn.be/stops/211004"], ["https://data.delijn.be/stops/302162", "https://data.delijn.be/stops/307804"], ["https://data.delijn.be/stops/301219", "https://data.delijn.be/stops/306717"], ["https://data.delijn.be/stops/405473", "https://data.delijn.be/stops/406689"], ["https://data.delijn.be/stops/103604", "https://data.delijn.be/stops/108924"], ["https://data.delijn.be/stops/404918", "https://data.delijn.be/stops/404920"], ["https://data.delijn.be/stops/404341", "https://data.delijn.be/stops/404344"], ["https://data.delijn.be/stops/302080", "https://data.delijn.be/stops/302082"], ["https://data.delijn.be/stops/104405", "https://data.delijn.be/stops/104407"], ["https://data.delijn.be/stops/400458", "https://data.delijn.be/stops/406564"], ["https://data.delijn.be/stops/505086", "https://data.delijn.be/stops/505762"], ["https://data.delijn.be/stops/106280", "https://data.delijn.be/stops/106344"], ["https://data.delijn.be/stops/208092", "https://data.delijn.be/stops/209657"], ["https://data.delijn.be/stops/202539", "https://data.delijn.be/stops/202688"], ["https://data.delijn.be/stops/203196", "https://data.delijn.be/stops/203203"], ["https://data.delijn.be/stops/102856", "https://data.delijn.be/stops/204624"], ["https://data.delijn.be/stops/308414", "https://data.delijn.be/stops/308428"], ["https://data.delijn.be/stops/302373", "https://data.delijn.be/stops/302386"], ["https://data.delijn.be/stops/405754", "https://data.delijn.be/stops/409294"], ["https://data.delijn.be/stops/103219", "https://data.delijn.be/stops/107364"], ["https://data.delijn.be/stops/106491", "https://data.delijn.be/stops/106495"], ["https://data.delijn.be/stops/103323", "https://data.delijn.be/stops/108395"], ["https://data.delijn.be/stops/105301", "https://data.delijn.be/stops/105303"], ["https://data.delijn.be/stops/108242", "https://data.delijn.be/stops/108244"], ["https://data.delijn.be/stops/201451", "https://data.delijn.be/stops/202550"], ["https://data.delijn.be/stops/105486", "https://data.delijn.be/stops/105487"], ["https://data.delijn.be/stops/509245", "https://data.delijn.be/stops/509593"], ["https://data.delijn.be/stops/200712", "https://data.delijn.be/stops/205090"], ["https://data.delijn.be/stops/303619", "https://data.delijn.be/stops/303620"], ["https://data.delijn.be/stops/404459", "https://data.delijn.be/stops/404523"], ["https://data.delijn.be/stops/304396", "https://data.delijn.be/stops/308055"], ["https://data.delijn.be/stops/305066", "https://data.delijn.be/stops/305075"], ["https://data.delijn.be/stops/104703", "https://data.delijn.be/stops/107357"], ["https://data.delijn.be/stops/304470", "https://data.delijn.be/stops/304557"], ["https://data.delijn.be/stops/103737", "https://data.delijn.be/stops/109461"], ["https://data.delijn.be/stops/406522", "https://data.delijn.be/stops/408477"], ["https://data.delijn.be/stops/301039", "https://data.delijn.be/stops/301043"], ["https://data.delijn.be/stops/208809", "https://data.delijn.be/stops/208810"], ["https://data.delijn.be/stops/107033", "https://data.delijn.be/stops/107036"], ["https://data.delijn.be/stops/108954", "https://data.delijn.be/stops/108958"], ["https://data.delijn.be/stops/204082", "https://data.delijn.be/stops/204087"], ["https://data.delijn.be/stops/308139", "https://data.delijn.be/stops/308142"], ["https://data.delijn.be/stops/201474", "https://data.delijn.be/stops/210061"], ["https://data.delijn.be/stops/200103", "https://data.delijn.be/stops/200104"], ["https://data.delijn.be/stops/307255", "https://data.delijn.be/stops/307466"], ["https://data.delijn.be/stops/204783", "https://data.delijn.be/stops/204788"], ["https://data.delijn.be/stops/209651", "https://data.delijn.be/stops/209652"], ["https://data.delijn.be/stops/105744", "https://data.delijn.be/stops/109832"], ["https://data.delijn.be/stops/202169", "https://data.delijn.be/stops/203109"], ["https://data.delijn.be/stops/304722", "https://data.delijn.be/stops/305319"], ["https://data.delijn.be/stops/304277", "https://data.delijn.be/stops/304278"], ["https://data.delijn.be/stops/301110", "https://data.delijn.be/stops/306312"], ["https://data.delijn.be/stops/404441", "https://data.delijn.be/stops/409418"], ["https://data.delijn.be/stops/203308", "https://data.delijn.be/stops/502759"], ["https://data.delijn.be/stops/300281", "https://data.delijn.be/stops/303825"], ["https://data.delijn.be/stops/204344", "https://data.delijn.be/stops/204346"], ["https://data.delijn.be/stops/300596", "https://data.delijn.be/stops/307170"], ["https://data.delijn.be/stops/108380", "https://data.delijn.be/stops/108964"], ["https://data.delijn.be/stops/204318", "https://data.delijn.be/stops/205321"], ["https://data.delijn.be/stops/105576", "https://data.delijn.be/stops/106040"], ["https://data.delijn.be/stops/307210", "https://data.delijn.be/stops/307217"], ["https://data.delijn.be/stops/505024", "https://data.delijn.be/stops/505749"], ["https://data.delijn.be/stops/400023", "https://data.delijn.be/stops/400199"], ["https://data.delijn.be/stops/300021", "https://data.delijn.be/stops/300404"], ["https://data.delijn.be/stops/501552", "https://data.delijn.be/stops/506682"], ["https://data.delijn.be/stops/504117", "https://data.delijn.be/stops/509759"], ["https://data.delijn.be/stops/107887", "https://data.delijn.be/stops/107888"], ["https://data.delijn.be/stops/300322", "https://data.delijn.be/stops/304863"], ["https://data.delijn.be/stops/206047", "https://data.delijn.be/stops/206048"], ["https://data.delijn.be/stops/104113", "https://data.delijn.be/stops/104114"], ["https://data.delijn.be/stops/403736", "https://data.delijn.be/stops/403743"], ["https://data.delijn.be/stops/200486", "https://data.delijn.be/stops/201471"], ["https://data.delijn.be/stops/108302", "https://data.delijn.be/stops/108303"], ["https://data.delijn.be/stops/208013", "https://data.delijn.be/stops/208023"], ["https://data.delijn.be/stops/103116", "https://data.delijn.be/stops/104687"], ["https://data.delijn.be/stops/102535", "https://data.delijn.be/stops/103500"], ["https://data.delijn.be/stops/404861", "https://data.delijn.be/stops/404862"], ["https://data.delijn.be/stops/106380", "https://data.delijn.be/stops/106383"], ["https://data.delijn.be/stops/201712", "https://data.delijn.be/stops/209652"], ["https://data.delijn.be/stops/501683", "https://data.delijn.be/stops/506684"], ["https://data.delijn.be/stops/503923", "https://data.delijn.be/stops/505388"], ["https://data.delijn.be/stops/502293", "https://data.delijn.be/stops/507291"], ["https://data.delijn.be/stops/109492", "https://data.delijn.be/stops/109800"], ["https://data.delijn.be/stops/409789", "https://data.delijn.be/stops/409813"], ["https://data.delijn.be/stops/301835", "https://data.delijn.be/stops/301847"], ["https://data.delijn.be/stops/202100", "https://data.delijn.be/stops/202258"], ["https://data.delijn.be/stops/103483", "https://data.delijn.be/stops/109162"], ["https://data.delijn.be/stops/202003", "https://data.delijn.be/stops/202349"], ["https://data.delijn.be/stops/508607", "https://data.delijn.be/stops/508616"], ["https://data.delijn.be/stops/306325", "https://data.delijn.be/stops/308671"], ["https://data.delijn.be/stops/502213", "https://data.delijn.be/stops/507213"], ["https://data.delijn.be/stops/404674", "https://data.delijn.be/stops/405737"], ["https://data.delijn.be/stops/303525", "https://data.delijn.be/stops/307858"], ["https://data.delijn.be/stops/407249", "https://data.delijn.be/stops/407468"], ["https://data.delijn.be/stops/208012", "https://data.delijn.be/stops/209018"], ["https://data.delijn.be/stops/504832", "https://data.delijn.be/stops/505192"], ["https://data.delijn.be/stops/103148", "https://data.delijn.be/stops/109480"], ["https://data.delijn.be/stops/408035", "https://data.delijn.be/stops/408056"], ["https://data.delijn.be/stops/405927", "https://data.delijn.be/stops/405986"], ["https://data.delijn.be/stops/206381", "https://data.delijn.be/stops/207381"], ["https://data.delijn.be/stops/204299", "https://data.delijn.be/stops/204300"], ["https://data.delijn.be/stops/204126", "https://data.delijn.be/stops/204789"], ["https://data.delijn.be/stops/501286", "https://data.delijn.be/stops/501289"], ["https://data.delijn.be/stops/400905", "https://data.delijn.be/stops/400964"], ["https://data.delijn.be/stops/204519", "https://data.delijn.be/stops/205520"], ["https://data.delijn.be/stops/504618", "https://data.delijn.be/stops/504619"], ["https://data.delijn.be/stops/505382", "https://data.delijn.be/stops/508096"], ["https://data.delijn.be/stops/502378", "https://data.delijn.be/stops/502595"], ["https://data.delijn.be/stops/302070", "https://data.delijn.be/stops/306350"], ["https://data.delijn.be/stops/101579", "https://data.delijn.be/stops/105731"], ["https://data.delijn.be/stops/302557", "https://data.delijn.be/stops/302558"], ["https://data.delijn.be/stops/501488", "https://data.delijn.be/stops/506284"], ["https://data.delijn.be/stops/203533", "https://data.delijn.be/stops/205174"], ["https://data.delijn.be/stops/407602", "https://data.delijn.be/stops/407605"], ["https://data.delijn.be/stops/103146", "https://data.delijn.be/stops/104974"], ["https://data.delijn.be/stops/302886", "https://data.delijn.be/stops/302925"], ["https://data.delijn.be/stops/405660", "https://data.delijn.be/stops/303189"], ["https://data.delijn.be/stops/102778", "https://data.delijn.be/stops/102956"], ["https://data.delijn.be/stops/204151", "https://data.delijn.be/stops/205151"], ["https://data.delijn.be/stops/300646", "https://data.delijn.be/stops/300664"], ["https://data.delijn.be/stops/503504", "https://data.delijn.be/stops/503612"], ["https://data.delijn.be/stops/503054", "https://data.delijn.be/stops/503057"], ["https://data.delijn.be/stops/201387", "https://data.delijn.be/stops/202651"], ["https://data.delijn.be/stops/107064", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/105825", "https://data.delijn.be/stops/305834"], ["https://data.delijn.be/stops/305668", "https://data.delijn.be/stops/307118"], ["https://data.delijn.be/stops/206961", "https://data.delijn.be/stops/306728"], ["https://data.delijn.be/stops/106886", "https://data.delijn.be/stops/109900"], ["https://data.delijn.be/stops/304783", "https://data.delijn.be/stops/308787"], ["https://data.delijn.be/stops/201870", "https://data.delijn.be/stops/203396"], ["https://data.delijn.be/stops/504149", "https://data.delijn.be/stops/505108"], ["https://data.delijn.be/stops/102742", "https://data.delijn.be/stops/102743"], ["https://data.delijn.be/stops/201272", "https://data.delijn.be/stops/201345"], ["https://data.delijn.be/stops/502087", "https://data.delijn.be/stops/507136"], ["https://data.delijn.be/stops/300246", "https://data.delijn.be/stops/300256"], ["https://data.delijn.be/stops/300428", "https://data.delijn.be/stops/301258"], ["https://data.delijn.be/stops/303533", "https://data.delijn.be/stops/303535"], ["https://data.delijn.be/stops/106027", "https://data.delijn.be/stops/106031"], ["https://data.delijn.be/stops/505969", "https://data.delijn.be/stops/508087"], ["https://data.delijn.be/stops/108678", "https://data.delijn.be/stops/300634"], ["https://data.delijn.be/stops/106768", "https://data.delijn.be/stops/106867"], ["https://data.delijn.be/stops/211052", "https://data.delijn.be/stops/211053"], ["https://data.delijn.be/stops/403967", "https://data.delijn.be/stops/403975"], ["https://data.delijn.be/stops/301468", "https://data.delijn.be/stops/301469"], ["https://data.delijn.be/stops/304801", "https://data.delijn.be/stops/307881"], ["https://data.delijn.be/stops/400382", "https://data.delijn.be/stops/400383"], ["https://data.delijn.be/stops/304927", "https://data.delijn.be/stops/304928"], ["https://data.delijn.be/stops/206479", "https://data.delijn.be/stops/207175"], ["https://data.delijn.be/stops/204663", "https://data.delijn.be/stops/205126"], ["https://data.delijn.be/stops/403850", "https://data.delijn.be/stops/403858"], ["https://data.delijn.be/stops/302356", "https://data.delijn.be/stops/302357"], ["https://data.delijn.be/stops/409351", "https://data.delijn.be/stops/409361"], ["https://data.delijn.be/stops/402578", "https://data.delijn.be/stops/408446"], ["https://data.delijn.be/stops/105349", "https://data.delijn.be/stops/109618"], ["https://data.delijn.be/stops/102509", "https://data.delijn.be/stops/406451"], ["https://data.delijn.be/stops/408096", "https://data.delijn.be/stops/408103"], ["https://data.delijn.be/stops/208390", "https://data.delijn.be/stops/208391"], ["https://data.delijn.be/stops/101878", "https://data.delijn.be/stops/106075"], ["https://data.delijn.be/stops/300045", "https://data.delijn.be/stops/300064"], ["https://data.delijn.be/stops/106147", "https://data.delijn.be/stops/106149"], ["https://data.delijn.be/stops/504767", "https://data.delijn.be/stops/508524"], ["https://data.delijn.be/stops/106860", "https://data.delijn.be/stops/109621"], ["https://data.delijn.be/stops/404174", "https://data.delijn.be/stops/404175"], ["https://data.delijn.be/stops/403659", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/508872", "https://data.delijn.be/stops/508873"], ["https://data.delijn.be/stops/306393", "https://data.delijn.be/stops/306394"], ["https://data.delijn.be/stops/403159", "https://data.delijn.be/stops/410320"], ["https://data.delijn.be/stops/204013", "https://data.delijn.be/stops/205697"], ["https://data.delijn.be/stops/400962", "https://data.delijn.be/stops/400963"], ["https://data.delijn.be/stops/503347", "https://data.delijn.be/stops/503439"], ["https://data.delijn.be/stops/104449", "https://data.delijn.be/stops/107809"], ["https://data.delijn.be/stops/407470", "https://data.delijn.be/stops/407471"], ["https://data.delijn.be/stops/303565", "https://data.delijn.be/stops/303570"], ["https://data.delijn.be/stops/101611", "https://data.delijn.be/stops/106405"], ["https://data.delijn.be/stops/404771", "https://data.delijn.be/stops/404777"], ["https://data.delijn.be/stops/107618", "https://data.delijn.be/stops/108097"], ["https://data.delijn.be/stops/206077", "https://data.delijn.be/stops/207315"], ["https://data.delijn.be/stops/405131", "https://data.delijn.be/stops/405199"], ["https://data.delijn.be/stops/206079", "https://data.delijn.be/stops/206304"], ["https://data.delijn.be/stops/202746", "https://data.delijn.be/stops/207937"], ["https://data.delijn.be/stops/200648", "https://data.delijn.be/stops/201646"], ["https://data.delijn.be/stops/101537", "https://data.delijn.be/stops/109073"], ["https://data.delijn.be/stops/201184", "https://data.delijn.be/stops/202955"], ["https://data.delijn.be/stops/409769", "https://data.delijn.be/stops/409770"], ["https://data.delijn.be/stops/101486", "https://data.delijn.be/stops/101487"], ["https://data.delijn.be/stops/102799", "https://data.delijn.be/stops/103901"], ["https://data.delijn.be/stops/503101", "https://data.delijn.be/stops/505384"], ["https://data.delijn.be/stops/204396", "https://data.delijn.be/stops/204413"], ["https://data.delijn.be/stops/202534", "https://data.delijn.be/stops/203533"], ["https://data.delijn.be/stops/503301", "https://data.delijn.be/stops/508301"], ["https://data.delijn.be/stops/400210", "https://data.delijn.be/stops/400211"], ["https://data.delijn.be/stops/505191", "https://data.delijn.be/stops/505195"], ["https://data.delijn.be/stops/105188", "https://data.delijn.be/stops/105832"], ["https://data.delijn.be/stops/201732", "https://data.delijn.be/stops/202756"], ["https://data.delijn.be/stops/400985", "https://data.delijn.be/stops/406622"], ["https://data.delijn.be/stops/108264", "https://data.delijn.be/stops/109336"], ["https://data.delijn.be/stops/305712", "https://data.delijn.be/stops/306302"], ["https://data.delijn.be/stops/402520", "https://data.delijn.be/stops/402586"], ["https://data.delijn.be/stops/504666", "https://data.delijn.be/stops/504667"], ["https://data.delijn.be/stops/200867", "https://data.delijn.be/stops/200868"], ["https://data.delijn.be/stops/103684", "https://data.delijn.be/stops/106316"], ["https://data.delijn.be/stops/203482", "https://data.delijn.be/stops/203952"], ["https://data.delijn.be/stops/106602", "https://data.delijn.be/stops/107214"], ["https://data.delijn.be/stops/102665", "https://data.delijn.be/stops/103754"], ["https://data.delijn.be/stops/402461", "https://data.delijn.be/stops/410094"], ["https://data.delijn.be/stops/503631", "https://data.delijn.be/stops/505906"], ["https://data.delijn.be/stops/400421", "https://data.delijn.be/stops/400422"], ["https://data.delijn.be/stops/403794", "https://data.delijn.be/stops/403813"], ["https://data.delijn.be/stops/206652", "https://data.delijn.be/stops/206714"], ["https://data.delijn.be/stops/405607", "https://data.delijn.be/stops/405689"], ["https://data.delijn.be/stops/508120", "https://data.delijn.be/stops/508131"], ["https://data.delijn.be/stops/105963", "https://data.delijn.be/stops/108940"], ["https://data.delijn.be/stops/107972", "https://data.delijn.be/stops/306759"], ["https://data.delijn.be/stops/504483", "https://data.delijn.be/stops/505837"], ["https://data.delijn.be/stops/505339", "https://data.delijn.be/stops/508007"], ["https://data.delijn.be/stops/401140", "https://data.delijn.be/stops/401141"], ["https://data.delijn.be/stops/301243", "https://data.delijn.be/stops/301244"], ["https://data.delijn.be/stops/301717", "https://data.delijn.be/stops/304572"], ["https://data.delijn.be/stops/200393", "https://data.delijn.be/stops/201066"], ["https://data.delijn.be/stops/200095", "https://data.delijn.be/stops/202132"], ["https://data.delijn.be/stops/501447", "https://data.delijn.be/stops/506451"], ["https://data.delijn.be/stops/206135", "https://data.delijn.be/stops/206511"], ["https://data.delijn.be/stops/505562", "https://data.delijn.be/stops/508636"], ["https://data.delijn.be/stops/108849", "https://data.delijn.be/stops/108850"], ["https://data.delijn.be/stops/106281", "https://data.delijn.be/stops/106344"], ["https://data.delijn.be/stops/103772", "https://data.delijn.be/stops/106499"], ["https://data.delijn.be/stops/206825", "https://data.delijn.be/stops/207825"], ["https://data.delijn.be/stops/206797", "https://data.delijn.be/stops/206802"], ["https://data.delijn.be/stops/200865", "https://data.delijn.be/stops/201723"], ["https://data.delijn.be/stops/504026", "https://data.delijn.be/stops/505113"], ["https://data.delijn.be/stops/105517", "https://data.delijn.be/stops/108709"], ["https://data.delijn.be/stops/506606", "https://data.delijn.be/stops/506607"], ["https://data.delijn.be/stops/105266", "https://data.delijn.be/stops/109966"], ["https://data.delijn.be/stops/206733", "https://data.delijn.be/stops/207983"], ["https://data.delijn.be/stops/107298", "https://data.delijn.be/stops/107301"], ["https://data.delijn.be/stops/103724", "https://data.delijn.be/stops/108691"], ["https://data.delijn.be/stops/404222", "https://data.delijn.be/stops/404231"], ["https://data.delijn.be/stops/206315", "https://data.delijn.be/stops/207286"], ["https://data.delijn.be/stops/104667", "https://data.delijn.be/stops/104888"], ["https://data.delijn.be/stops/102388", "https://data.delijn.be/stops/109915"], ["https://data.delijn.be/stops/503941", "https://data.delijn.be/stops/505558"], ["https://data.delijn.be/stops/300193", "https://data.delijn.be/stops/300220"], ["https://data.delijn.be/stops/501387", "https://data.delijn.be/stops/501390"], ["https://data.delijn.be/stops/300667", "https://data.delijn.be/stops/300677"], ["https://data.delijn.be/stops/400884", "https://data.delijn.be/stops/409614"], ["https://data.delijn.be/stops/400482", "https://data.delijn.be/stops/400485"], ["https://data.delijn.be/stops/401226", "https://data.delijn.be/stops/401239"], ["https://data.delijn.be/stops/406272", "https://data.delijn.be/stops/408859"], ["https://data.delijn.be/stops/304119", "https://data.delijn.be/stops/307545"], ["https://data.delijn.be/stops/403603", "https://data.delijn.be/stops/403645"], ["https://data.delijn.be/stops/204581", "https://data.delijn.be/stops/204596"], ["https://data.delijn.be/stops/401150", "https://data.delijn.be/stops/401154"], ["https://data.delijn.be/stops/204682", "https://data.delijn.be/stops/205615"], ["https://data.delijn.be/stops/301102", "https://data.delijn.be/stops/302804"], ["https://data.delijn.be/stops/103574", "https://data.delijn.be/stops/106610"], ["https://data.delijn.be/stops/407942", "https://data.delijn.be/stops/408014"], ["https://data.delijn.be/stops/105615", "https://data.delijn.be/stops/105830"], ["https://data.delijn.be/stops/109703", "https://data.delijn.be/stops/109706"], ["https://data.delijn.be/stops/101174", "https://data.delijn.be/stops/102380"], ["https://data.delijn.be/stops/409410", "https://data.delijn.be/stops/409766"], ["https://data.delijn.be/stops/503803", "https://data.delijn.be/stops/508803"], ["https://data.delijn.be/stops/204155", "https://data.delijn.be/stops/204774"], ["https://data.delijn.be/stops/508958", "https://data.delijn.be/stops/509743"], ["https://data.delijn.be/stops/407986", "https://data.delijn.be/stops/407989"], ["https://data.delijn.be/stops/402067", "https://data.delijn.be/stops/402766"], ["https://data.delijn.be/stops/303415", "https://data.delijn.be/stops/303433"], ["https://data.delijn.be/stops/502221", "https://data.delijn.be/stops/502224"], ["https://data.delijn.be/stops/507526", "https://data.delijn.be/stops/507708"], ["https://data.delijn.be/stops/204369", "https://data.delijn.be/stops/205355"], ["https://data.delijn.be/stops/507114", "https://data.delijn.be/stops/507145"], ["https://data.delijn.be/stops/300218", "https://data.delijn.be/stops/300221"], ["https://data.delijn.be/stops/407926", "https://data.delijn.be/stops/407990"], ["https://data.delijn.be/stops/408260", "https://data.delijn.be/stops/408340"], ["https://data.delijn.be/stops/206438", "https://data.delijn.be/stops/207438"], ["https://data.delijn.be/stops/401283", "https://data.delijn.be/stops/409191"], ["https://data.delijn.be/stops/208007", "https://data.delijn.be/stops/208009"], ["https://data.delijn.be/stops/302931", "https://data.delijn.be/stops/304505"], ["https://data.delijn.be/stops/405763", "https://data.delijn.be/stops/409293"], ["https://data.delijn.be/stops/505172", "https://data.delijn.be/stops/507348"], ["https://data.delijn.be/stops/105572", "https://data.delijn.be/stops/105578"], ["https://data.delijn.be/stops/302673", "https://data.delijn.be/stops/307088"], ["https://data.delijn.be/stops/102813", "https://data.delijn.be/stops/102829"], ["https://data.delijn.be/stops/105509", "https://data.delijn.be/stops/108731"], ["https://data.delijn.be/stops/400844", "https://data.delijn.be/stops/408550"], ["https://data.delijn.be/stops/400490", "https://data.delijn.be/stops/400495"], ["https://data.delijn.be/stops/402242", "https://data.delijn.be/stops/402336"], ["https://data.delijn.be/stops/304561", "https://data.delijn.be/stops/304589"], ["https://data.delijn.be/stops/406055", "https://data.delijn.be/stops/406064"], ["https://data.delijn.be/stops/402502", "https://data.delijn.be/stops/402559"], ["https://data.delijn.be/stops/407188", "https://data.delijn.be/stops/407198"], ["https://data.delijn.be/stops/208503", "https://data.delijn.be/stops/208504"], ["https://data.delijn.be/stops/503016", "https://data.delijn.be/stops/508016"], ["https://data.delijn.be/stops/400499", "https://data.delijn.be/stops/400948"], ["https://data.delijn.be/stops/103496", "https://data.delijn.be/stops/109897"], ["https://data.delijn.be/stops/206654", "https://data.delijn.be/stops/207655"], ["https://data.delijn.be/stops/301918", "https://data.delijn.be/stops/306746"], ["https://data.delijn.be/stops/502166", "https://data.delijn.be/stops/507166"], ["https://data.delijn.be/stops/501127", "https://data.delijn.be/stops/501139"], ["https://data.delijn.be/stops/300872", "https://data.delijn.be/stops/302420"], ["https://data.delijn.be/stops/203472", "https://data.delijn.be/stops/203473"], ["https://data.delijn.be/stops/208452", "https://data.delijn.be/stops/209452"], ["https://data.delijn.be/stops/102927", "https://data.delijn.be/stops/109421"], ["https://data.delijn.be/stops/410198", "https://data.delijn.be/stops/410207"], ["https://data.delijn.be/stops/507527", "https://data.delijn.be/stops/507808"], ["https://data.delijn.be/stops/206100", "https://data.delijn.be/stops/206101"], ["https://data.delijn.be/stops/403588", "https://data.delijn.be/stops/408197"], ["https://data.delijn.be/stops/102708", "https://data.delijn.be/stops/105055"], ["https://data.delijn.be/stops/205115", "https://data.delijn.be/stops/205117"], ["https://data.delijn.be/stops/303042", "https://data.delijn.be/stops/303142"], ["https://data.delijn.be/stops/501051", "https://data.delijn.be/stops/502242"], ["https://data.delijn.be/stops/101887", "https://data.delijn.be/stops/109998"], ["https://data.delijn.be/stops/301464", "https://data.delijn.be/stops/301490"], ["https://data.delijn.be/stops/402299", "https://data.delijn.be/stops/402471"], ["https://data.delijn.be/stops/400032", "https://data.delijn.be/stops/400317"], ["https://data.delijn.be/stops/402669", "https://data.delijn.be/stops/402735"], ["https://data.delijn.be/stops/104118", "https://data.delijn.be/stops/105160"], ["https://data.delijn.be/stops/505287", "https://data.delijn.be/stops/505816"], ["https://data.delijn.be/stops/502073", "https://data.delijn.be/stops/507073"], ["https://data.delijn.be/stops/501308", "https://data.delijn.be/stops/506356"], ["https://data.delijn.be/stops/505838", "https://data.delijn.be/stops/507253"], ["https://data.delijn.be/stops/204118", "https://data.delijn.be/stops/204689"], ["https://data.delijn.be/stops/503340", "https://data.delijn.be/stops/508340"], ["https://data.delijn.be/stops/505093", "https://data.delijn.be/stops/505139"], ["https://data.delijn.be/stops/301954", "https://data.delijn.be/stops/304183"], ["https://data.delijn.be/stops/308230", "https://data.delijn.be/stops/308234"], ["https://data.delijn.be/stops/302987", "https://data.delijn.be/stops/302988"], ["https://data.delijn.be/stops/304563", "https://data.delijn.be/stops/304616"], ["https://data.delijn.be/stops/105584", "https://data.delijn.be/stops/105592"], ["https://data.delijn.be/stops/400428", "https://data.delijn.be/stops/400429"], ["https://data.delijn.be/stops/202272", "https://data.delijn.be/stops/203272"], ["https://data.delijn.be/stops/200940", "https://data.delijn.be/stops/202705"], ["https://data.delijn.be/stops/301050", "https://data.delijn.be/stops/301072"], ["https://data.delijn.be/stops/102060", "https://data.delijn.be/stops/104494"], ["https://data.delijn.be/stops/503851", "https://data.delijn.be/stops/508826"], ["https://data.delijn.be/stops/503842", "https://data.delijn.be/stops/508847"], ["https://data.delijn.be/stops/201932", "https://data.delijn.be/stops/203510"], ["https://data.delijn.be/stops/103149", "https://data.delijn.be/stops/109992"], ["https://data.delijn.be/stops/403064", "https://data.delijn.be/stops/403862"], ["https://data.delijn.be/stops/308508", "https://data.delijn.be/stops/308509"], ["https://data.delijn.be/stops/503044", "https://data.delijn.be/stops/503962"], ["https://data.delijn.be/stops/105383", "https://data.delijn.be/stops/106025"], ["https://data.delijn.be/stops/509156", "https://data.delijn.be/stops/509191"], ["https://data.delijn.be/stops/403445", "https://data.delijn.be/stops/403862"], ["https://data.delijn.be/stops/407702", "https://data.delijn.be/stops/409521"], ["https://data.delijn.be/stops/500941", "https://data.delijn.be/stops/505643"], ["https://data.delijn.be/stops/104565", "https://data.delijn.be/stops/105180"], ["https://data.delijn.be/stops/107652", "https://data.delijn.be/stops/107653"], ["https://data.delijn.be/stops/304232", "https://data.delijn.be/stops/308771"], ["https://data.delijn.be/stops/501079", "https://data.delijn.be/stops/505354"], ["https://data.delijn.be/stops/400059", "https://data.delijn.be/stops/400935"], ["https://data.delijn.be/stops/207870", "https://data.delijn.be/stops/209177"], ["https://data.delijn.be/stops/200089", "https://data.delijn.be/stops/200983"], ["https://data.delijn.be/stops/400556", "https://data.delijn.be/stops/400557"], ["https://data.delijn.be/stops/501088", "https://data.delijn.be/stops/501091"], ["https://data.delijn.be/stops/508898", "https://data.delijn.be/stops/508987"], ["https://data.delijn.be/stops/204764", "https://data.delijn.be/stops/205378"], ["https://data.delijn.be/stops/103239", "https://data.delijn.be/stops/103241"], ["https://data.delijn.be/stops/200640", "https://data.delijn.be/stops/202905"], ["https://data.delijn.be/stops/101484", "https://data.delijn.be/stops/101486"], ["https://data.delijn.be/stops/104237", "https://data.delijn.be/stops/105006"], ["https://data.delijn.be/stops/202466", "https://data.delijn.be/stops/203466"], ["https://data.delijn.be/stops/204335", "https://data.delijn.be/stops/204336"], ["https://data.delijn.be/stops/109316", "https://data.delijn.be/stops/109357"], ["https://data.delijn.be/stops/304882", "https://data.delijn.be/stops/308525"], ["https://data.delijn.be/stops/108758", "https://data.delijn.be/stops/109757"], ["https://data.delijn.be/stops/408648", "https://data.delijn.be/stops/408649"], ["https://data.delijn.be/stops/104992", "https://data.delijn.be/stops/109992"], ["https://data.delijn.be/stops/203910", "https://data.delijn.be/stops/203916"], ["https://data.delijn.be/stops/106484", "https://data.delijn.be/stops/106485"], ["https://data.delijn.be/stops/503706", "https://data.delijn.be/stops/508706"], ["https://data.delijn.be/stops/106428", "https://data.delijn.be/stops/106558"], ["https://data.delijn.be/stops/303456", "https://data.delijn.be/stops/304225"], ["https://data.delijn.be/stops/407822", "https://data.delijn.be/stops/407823"], ["https://data.delijn.be/stops/107225", "https://data.delijn.be/stops/107226"], ["https://data.delijn.be/stops/202421", "https://data.delijn.be/stops/203420"], ["https://data.delijn.be/stops/103156", "https://data.delijn.be/stops/107666"], ["https://data.delijn.be/stops/404137", "https://data.delijn.be/stops/404152"], ["https://data.delijn.be/stops/402801", "https://data.delijn.be/stops/402816"], ["https://data.delijn.be/stops/401026", "https://data.delijn.be/stops/401029"], ["https://data.delijn.be/stops/304263", "https://data.delijn.be/stops/304285"], ["https://data.delijn.be/stops/401638", "https://data.delijn.be/stops/308221"], ["https://data.delijn.be/stops/202240", "https://data.delijn.be/stops/203240"], ["https://data.delijn.be/stops/200861", "https://data.delijn.be/stops/200864"], ["https://data.delijn.be/stops/200775", "https://data.delijn.be/stops/209383"], ["https://data.delijn.be/stops/406281", "https://data.delijn.be/stops/406891"], ["https://data.delijn.be/stops/202119", "https://data.delijn.be/stops/203119"], ["https://data.delijn.be/stops/403111", "https://data.delijn.be/stops/403112"], ["https://data.delijn.be/stops/202034", "https://data.delijn.be/stops/205995"], ["https://data.delijn.be/stops/402609", "https://data.delijn.be/stops/405485"], ["https://data.delijn.be/stops/103224", "https://data.delijn.be/stops/108615"], ["https://data.delijn.be/stops/300746", "https://data.delijn.be/stops/300760"], ["https://data.delijn.be/stops/108875", "https://data.delijn.be/stops/109135"], ["https://data.delijn.be/stops/303629", "https://data.delijn.be/stops/304016"], ["https://data.delijn.be/stops/503610", "https://data.delijn.be/stops/509751"], ["https://data.delijn.be/stops/409681", "https://data.delijn.be/stops/409704"], ["https://data.delijn.be/stops/302961", "https://data.delijn.be/stops/302962"], ["https://data.delijn.be/stops/402304", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/208238", "https://data.delijn.be/stops/209238"], ["https://data.delijn.be/stops/404885", "https://data.delijn.be/stops/404895"], ["https://data.delijn.be/stops/206997", "https://data.delijn.be/stops/207565"], ["https://data.delijn.be/stops/300352", "https://data.delijn.be/stops/301308"], ["https://data.delijn.be/stops/304701", "https://data.delijn.be/stops/308088"], ["https://data.delijn.be/stops/106092", "https://data.delijn.be/stops/108474"], ["https://data.delijn.be/stops/406056", "https://data.delijn.be/stops/406057"], ["https://data.delijn.be/stops/200183", "https://data.delijn.be/stops/202522"], ["https://data.delijn.be/stops/502141", "https://data.delijn.be/stops/502421"], ["https://data.delijn.be/stops/107338", "https://data.delijn.be/stops/107339"], ["https://data.delijn.be/stops/104347", "https://data.delijn.be/stops/105919"], ["https://data.delijn.be/stops/201626", "https://data.delijn.be/stops/211073"], ["https://data.delijn.be/stops/106275", "https://data.delijn.be/stops/109631"], ["https://data.delijn.be/stops/106107", "https://data.delijn.be/stops/106176"], ["https://data.delijn.be/stops/408625", "https://data.delijn.be/stops/408719"], ["https://data.delijn.be/stops/405364", "https://data.delijn.be/stops/405390"], ["https://data.delijn.be/stops/500874", "https://data.delijn.be/stops/508932"], ["https://data.delijn.be/stops/101004", "https://data.delijn.be/stops/103492"], ["https://data.delijn.be/stops/405449", "https://data.delijn.be/stops/308825"], ["https://data.delijn.be/stops/102190", "https://data.delijn.be/stops/102915"], ["https://data.delijn.be/stops/402546", "https://data.delijn.be/stops/402548"], ["https://data.delijn.be/stops/301156", "https://data.delijn.be/stops/304705"], ["https://data.delijn.be/stops/101007", "https://data.delijn.be/stops/108635"], ["https://data.delijn.be/stops/300739", "https://data.delijn.be/stops/307832"], ["https://data.delijn.be/stops/101870", "https://data.delijn.be/stops/102305"], ["https://data.delijn.be/stops/501365", "https://data.delijn.be/stops/501442"], ["https://data.delijn.be/stops/106137", "https://data.delijn.be/stops/106140"], ["https://data.delijn.be/stops/407548", "https://data.delijn.be/stops/407549"], ["https://data.delijn.be/stops/506645", "https://data.delijn.be/stops/506646"], ["https://data.delijn.be/stops/207157", "https://data.delijn.be/stops/207158"], ["https://data.delijn.be/stops/400912", "https://data.delijn.be/stops/400913"], ["https://data.delijn.be/stops/105356", "https://data.delijn.be/stops/106251"], ["https://data.delijn.be/stops/403451", "https://data.delijn.be/stops/407463"], ["https://data.delijn.be/stops/509490", "https://data.delijn.be/stops/509491"], ["https://data.delijn.be/stops/102579", "https://data.delijn.be/stops/102584"], ["https://data.delijn.be/stops/501217", "https://data.delijn.be/stops/501223"], ["https://data.delijn.be/stops/108984", "https://data.delijn.be/stops/109689"], ["https://data.delijn.be/stops/404919", "https://data.delijn.be/stops/404933"], ["https://data.delijn.be/stops/401446", "https://data.delijn.be/stops/401736"], ["https://data.delijn.be/stops/304266", "https://data.delijn.be/stops/304278"], ["https://data.delijn.be/stops/304139", "https://data.delijn.be/stops/307652"], ["https://data.delijn.be/stops/405850", "https://data.delijn.be/stops/409731"], ["https://data.delijn.be/stops/502269", "https://data.delijn.be/stops/507674"], ["https://data.delijn.be/stops/501121", "https://data.delijn.be/stops/506121"], ["https://data.delijn.be/stops/105091", "https://data.delijn.be/stops/108879"], ["https://data.delijn.be/stops/408191", "https://data.delijn.be/stops/408329"], ["https://data.delijn.be/stops/502436", "https://data.delijn.be/stops/505768"], ["https://data.delijn.be/stops/208492", "https://data.delijn.be/stops/211048"], ["https://data.delijn.be/stops/301185", "https://data.delijn.be/stops/301264"], ["https://data.delijn.be/stops/504075", "https://data.delijn.be/stops/504693"], ["https://data.delijn.be/stops/300087", "https://data.delijn.be/stops/300117"], ["https://data.delijn.be/stops/302457", "https://data.delijn.be/stops/305956"], ["https://data.delijn.be/stops/300979", "https://data.delijn.be/stops/306968"], ["https://data.delijn.be/stops/301654", "https://data.delijn.be/stops/304158"], ["https://data.delijn.be/stops/200337", "https://data.delijn.be/stops/203204"], ["https://data.delijn.be/stops/206353", "https://data.delijn.be/stops/206885"], ["https://data.delijn.be/stops/407239", "https://data.delijn.be/stops/407436"], ["https://data.delijn.be/stops/403073", "https://data.delijn.be/stops/410328"], ["https://data.delijn.be/stops/501541", "https://data.delijn.be/stops/506458"], ["https://data.delijn.be/stops/504954", "https://data.delijn.be/stops/508729"], ["https://data.delijn.be/stops/305187", "https://data.delijn.be/stops/307091"], ["https://data.delijn.be/stops/201380", "https://data.delijn.be/stops/205930"], ["https://data.delijn.be/stops/503532", "https://data.delijn.be/stops/508522"], ["https://data.delijn.be/stops/108369", "https://data.delijn.be/stops/108371"], ["https://data.delijn.be/stops/302694", "https://data.delijn.be/stops/302695"], ["https://data.delijn.be/stops/408038", "https://data.delijn.be/stops/408406"], ["https://data.delijn.be/stops/201733", "https://data.delijn.be/stops/211112"], ["https://data.delijn.be/stops/402464", "https://data.delijn.be/stops/402465"], ["https://data.delijn.be/stops/101975", "https://data.delijn.be/stops/105110"], ["https://data.delijn.be/stops/501218", "https://data.delijn.be/stops/506217"], ["https://data.delijn.be/stops/103291", "https://data.delijn.be/stops/105694"], ["https://data.delijn.be/stops/508180", "https://data.delijn.be/stops/508182"], ["https://data.delijn.be/stops/407618", "https://data.delijn.be/stops/410090"], ["https://data.delijn.be/stops/206184", "https://data.delijn.be/stops/308565"], ["https://data.delijn.be/stops/504515", "https://data.delijn.be/stops/509515"], ["https://data.delijn.be/stops/501308", "https://data.delijn.be/stops/506588"], ["https://data.delijn.be/stops/502002", "https://data.delijn.be/stops/505764"], ["https://data.delijn.be/stops/404278", "https://data.delijn.be/stops/404280"], ["https://data.delijn.be/stops/202738", "https://data.delijn.be/stops/203346"], ["https://data.delijn.be/stops/507195", "https://data.delijn.be/stops/507199"], ["https://data.delijn.be/stops/508359", "https://data.delijn.be/stops/508930"], ["https://data.delijn.be/stops/403691", "https://data.delijn.be/stops/409275"], ["https://data.delijn.be/stops/108266", "https://data.delijn.be/stops/109336"], ["https://data.delijn.be/stops/202235", "https://data.delijn.be/stops/202236"], ["https://data.delijn.be/stops/405882", "https://data.delijn.be/stops/409688"], ["https://data.delijn.be/stops/401441", "https://data.delijn.be/stops/404165"], ["https://data.delijn.be/stops/104959", "https://data.delijn.be/stops/108380"], ["https://data.delijn.be/stops/400106", "https://data.delijn.be/stops/410221"], ["https://data.delijn.be/stops/503169", "https://data.delijn.be/stops/507684"], ["https://data.delijn.be/stops/206602", "https://data.delijn.be/stops/206737"], ["https://data.delijn.be/stops/500944", "https://data.delijn.be/stops/509139"], ["https://data.delijn.be/stops/304519", "https://data.delijn.be/stops/307560"], ["https://data.delijn.be/stops/307844", "https://data.delijn.be/stops/307908"], ["https://data.delijn.be/stops/503439", "https://data.delijn.be/stops/503995"], ["https://data.delijn.be/stops/300828", "https://data.delijn.be/stops/306969"], ["https://data.delijn.be/stops/504492", "https://data.delijn.be/stops/504502"], ["https://data.delijn.be/stops/104894", "https://data.delijn.be/stops/105352"], ["https://data.delijn.be/stops/203180", "https://data.delijn.be/stops/203636"], ["https://data.delijn.be/stops/102131", "https://data.delijn.be/stops/106418"], ["https://data.delijn.be/stops/105830", "https://data.delijn.be/stops/105835"], ["https://data.delijn.be/stops/302519", "https://data.delijn.be/stops/302520"], ["https://data.delijn.be/stops/502798", "https://data.delijn.be/stops/507533"], ["https://data.delijn.be/stops/504067", "https://data.delijn.be/stops/505110"], ["https://data.delijn.be/stops/505154", "https://data.delijn.be/stops/505155"], ["https://data.delijn.be/stops/107280", "https://data.delijn.be/stops/107835"], ["https://data.delijn.be/stops/108434", "https://data.delijn.be/stops/108437"], ["https://data.delijn.be/stops/305029", "https://data.delijn.be/stops/305455"], ["https://data.delijn.be/stops/505647", "https://data.delijn.be/stops/505649"], ["https://data.delijn.be/stops/504126", "https://data.delijn.be/stops/504636"], ["https://data.delijn.be/stops/503285", "https://data.delijn.be/stops/505950"], ["https://data.delijn.be/stops/205546", "https://data.delijn.be/stops/205822"], ["https://data.delijn.be/stops/201892", "https://data.delijn.be/stops/202934"], ["https://data.delijn.be/stops/504435", "https://data.delijn.be/stops/504550"], ["https://data.delijn.be/stops/402743", "https://data.delijn.be/stops/306020"], ["https://data.delijn.be/stops/300396", "https://data.delijn.be/stops/301997"], ["https://data.delijn.be/stops/201090", "https://data.delijn.be/stops/206426"], ["https://data.delijn.be/stops/301329", "https://data.delijn.be/stops/306648"], ["https://data.delijn.be/stops/501438", "https://data.delijn.be/stops/506438"], ["https://data.delijn.be/stops/200419", "https://data.delijn.be/stops/203012"], ["https://data.delijn.be/stops/408943", "https://data.delijn.be/stops/408948"], ["https://data.delijn.be/stops/400807", "https://data.delijn.be/stops/400885"], ["https://data.delijn.be/stops/401638", "https://data.delijn.be/stops/308224"], ["https://data.delijn.be/stops/301453", "https://data.delijn.be/stops/307195"], ["https://data.delijn.be/stops/401565", "https://data.delijn.be/stops/401746"], ["https://data.delijn.be/stops/200355", "https://data.delijn.be/stops/201018"], ["https://data.delijn.be/stops/503272", "https://data.delijn.be/stops/509749"], ["https://data.delijn.be/stops/508329", "https://data.delijn.be/stops/508835"], ["https://data.delijn.be/stops/301134", "https://data.delijn.be/stops/301137"], ["https://data.delijn.be/stops/304427", "https://data.delijn.be/stops/304428"], ["https://data.delijn.be/stops/202341", "https://data.delijn.be/stops/203341"], ["https://data.delijn.be/stops/405902", "https://data.delijn.be/stops/405967"], ["https://data.delijn.be/stops/506629", "https://data.delijn.be/stops/509885"], ["https://data.delijn.be/stops/102093", "https://data.delijn.be/stops/105479"], ["https://data.delijn.be/stops/504162", "https://data.delijn.be/stops/505174"], ["https://data.delijn.be/stops/503658", "https://data.delijn.be/stops/504197"], ["https://data.delijn.be/stops/206583", "https://data.delijn.be/stops/207993"], ["https://data.delijn.be/stops/207754", "https://data.delijn.be/stops/207755"], ["https://data.delijn.be/stops/206145", "https://data.delijn.be/stops/206507"], ["https://data.delijn.be/stops/101278", "https://data.delijn.be/stops/106025"], ["https://data.delijn.be/stops/206628", "https://data.delijn.be/stops/207627"], ["https://data.delijn.be/stops/300743", "https://data.delijn.be/stops/300805"], ["https://data.delijn.be/stops/202183", "https://data.delijn.be/stops/202184"], ["https://data.delijn.be/stops/301494", "https://data.delijn.be/stops/301495"], ["https://data.delijn.be/stops/302453", "https://data.delijn.be/stops/302498"], ["https://data.delijn.be/stops/405045", "https://data.delijn.be/stops/405863"], ["https://data.delijn.be/stops/108740", "https://data.delijn.be/stops/109140"], ["https://data.delijn.be/stops/503286", "https://data.delijn.be/stops/505129"], ["https://data.delijn.be/stops/403453", "https://data.delijn.be/stops/403476"], ["https://data.delijn.be/stops/504330", "https://data.delijn.be/stops/509328"], ["https://data.delijn.be/stops/305215", "https://data.delijn.be/stops/306966"], ["https://data.delijn.be/stops/102701", "https://data.delijn.be/stops/105653"], ["https://data.delijn.be/stops/202142", "https://data.delijn.be/stops/203142"], ["https://data.delijn.be/stops/204006", "https://data.delijn.be/stops/204007"], ["https://data.delijn.be/stops/300231", "https://data.delijn.be/stops/300233"], ["https://data.delijn.be/stops/501386", "https://data.delijn.be/stops/501493"], ["https://data.delijn.be/stops/505665", "https://data.delijn.be/stops/505739"], ["https://data.delijn.be/stops/105811", "https://data.delijn.be/stops/105814"], ["https://data.delijn.be/stops/502120", "https://data.delijn.be/stops/507101"], ["https://data.delijn.be/stops/105069", "https://data.delijn.be/stops/106782"], ["https://data.delijn.be/stops/204290", "https://data.delijn.be/stops/205291"], ["https://data.delijn.be/stops/501079", "https://data.delijn.be/stops/501244"], ["https://data.delijn.be/stops/509050", "https://data.delijn.be/stops/509828"], ["https://data.delijn.be/stops/103575", "https://data.delijn.be/stops/103646"], ["https://data.delijn.be/stops/108066", "https://data.delijn.be/stops/108871"], ["https://data.delijn.be/stops/400716", "https://data.delijn.be/stops/400873"], ["https://data.delijn.be/stops/400877", "https://data.delijn.be/stops/402011"], ["https://data.delijn.be/stops/101665", "https://data.delijn.be/stops/104626"], ["https://data.delijn.be/stops/301290", "https://data.delijn.be/stops/307254"], ["https://data.delijn.be/stops/506080", "https://data.delijn.be/stops/506518"], ["https://data.delijn.be/stops/303481", "https://data.delijn.be/stops/303509"], ["https://data.delijn.be/stops/502533", "https://data.delijn.be/stops/505741"], ["https://data.delijn.be/stops/402495", "https://data.delijn.be/stops/404730"], ["https://data.delijn.be/stops/501298", "https://data.delijn.be/stops/506330"], ["https://data.delijn.be/stops/502928", "https://data.delijn.be/stops/509050"], ["https://data.delijn.be/stops/200031", "https://data.delijn.be/stops/205919"], ["https://data.delijn.be/stops/403686", "https://data.delijn.be/stops/403689"], ["https://data.delijn.be/stops/203345", "https://data.delijn.be/stops/209745"], ["https://data.delijn.be/stops/401042", "https://data.delijn.be/stops/409141"], ["https://data.delijn.be/stops/303621", "https://data.delijn.be/stops/306703"], ["https://data.delijn.be/stops/204164", "https://data.delijn.be/stops/207272"], ["https://data.delijn.be/stops/307109", "https://data.delijn.be/stops/308095"], ["https://data.delijn.be/stops/102622", "https://data.delijn.be/stops/108212"], ["https://data.delijn.be/stops/206763", "https://data.delijn.be/stops/208655"], ["https://data.delijn.be/stops/407008", "https://data.delijn.be/stops/407057"], ["https://data.delijn.be/stops/204145", "https://data.delijn.be/stops/207634"], ["https://data.delijn.be/stops/408259", "https://data.delijn.be/stops/307452"], ["https://data.delijn.be/stops/405767", "https://data.delijn.be/stops/406881"], ["https://data.delijn.be/stops/202769", "https://data.delijn.be/stops/203769"], ["https://data.delijn.be/stops/106750", "https://data.delijn.be/stops/307235"], ["https://data.delijn.be/stops/101935", "https://data.delijn.be/stops/101991"], ["https://data.delijn.be/stops/200967", "https://data.delijn.be/stops/208730"], ["https://data.delijn.be/stops/505373", "https://data.delijn.be/stops/505962"], ["https://data.delijn.be/stops/401378", "https://data.delijn.be/stops/410174"], ["https://data.delijn.be/stops/307639", "https://data.delijn.be/stops/307640"], ["https://data.delijn.be/stops/405448", "https://data.delijn.be/stops/405462"], ["https://data.delijn.be/stops/504779", "https://data.delijn.be/stops/509092"], ["https://data.delijn.be/stops/301834", "https://data.delijn.be/stops/305912"], ["https://data.delijn.be/stops/207146", "https://data.delijn.be/stops/207147"], ["https://data.delijn.be/stops/504667", "https://data.delijn.be/stops/509203"], ["https://data.delijn.be/stops/302097", "https://data.delijn.be/stops/302102"], ["https://data.delijn.be/stops/101442", "https://data.delijn.be/stops/102732"], ["https://data.delijn.be/stops/408341", "https://data.delijn.be/stops/408353"], ["https://data.delijn.be/stops/505440", "https://data.delijn.be/stops/509806"], ["https://data.delijn.be/stops/405067", "https://data.delijn.be/stops/405810"], ["https://data.delijn.be/stops/301720", "https://data.delijn.be/stops/301823"], ["https://data.delijn.be/stops/102652", "https://data.delijn.be/stops/104581"], ["https://data.delijn.be/stops/403145", "https://data.delijn.be/stops/407583"], ["https://data.delijn.be/stops/503655", "https://data.delijn.be/stops/504252"], ["https://data.delijn.be/stops/404458", "https://data.delijn.be/stops/404507"], ["https://data.delijn.be/stops/404699", "https://data.delijn.be/stops/405595"], ["https://data.delijn.be/stops/406200", "https://data.delijn.be/stops/406201"], ["https://data.delijn.be/stops/102888", "https://data.delijn.be/stops/108800"], ["https://data.delijn.be/stops/304974", "https://data.delijn.be/stops/304975"], ["https://data.delijn.be/stops/104097", "https://data.delijn.be/stops/104098"], ["https://data.delijn.be/stops/202481", "https://data.delijn.be/stops/203478"], ["https://data.delijn.be/stops/503088", "https://data.delijn.be/stops/503103"], ["https://data.delijn.be/stops/208471", "https://data.delijn.be/stops/209471"], ["https://data.delijn.be/stops/509117", "https://data.delijn.be/stops/509120"], ["https://data.delijn.be/stops/308070", "https://data.delijn.be/stops/308071"], ["https://data.delijn.be/stops/504119", "https://data.delijn.be/stops/504394"], ["https://data.delijn.be/stops/106976", "https://data.delijn.be/stops/106977"], ["https://data.delijn.be/stops/101516", "https://data.delijn.be/stops/109375"], ["https://data.delijn.be/stops/206917", "https://data.delijn.be/stops/207903"], ["https://data.delijn.be/stops/106963", "https://data.delijn.be/stops/106964"], ["https://data.delijn.be/stops/401477", "https://data.delijn.be/stops/401562"], ["https://data.delijn.be/stops/202184", "https://data.delijn.be/stops/204237"], ["https://data.delijn.be/stops/503155", "https://data.delijn.be/stops/508437"], ["https://data.delijn.be/stops/504181", "https://data.delijn.be/stops/504182"], ["https://data.delijn.be/stops/409424", "https://data.delijn.be/stops/409725"], ["https://data.delijn.be/stops/101983", "https://data.delijn.be/stops/109651"], ["https://data.delijn.be/stops/200227", "https://data.delijn.be/stops/201227"], ["https://data.delijn.be/stops/202779", "https://data.delijn.be/stops/203780"], ["https://data.delijn.be/stops/400205", "https://data.delijn.be/stops/400238"], ["https://data.delijn.be/stops/304917", "https://data.delijn.be/stops/308119"], ["https://data.delijn.be/stops/401728", "https://data.delijn.be/stops/406230"], ["https://data.delijn.be/stops/103593", "https://data.delijn.be/stops/109127"], ["https://data.delijn.be/stops/405302", "https://data.delijn.be/stops/408078"], ["https://data.delijn.be/stops/206250", "https://data.delijn.be/stops/207250"], ["https://data.delijn.be/stops/101547", "https://data.delijn.be/stops/107917"], ["https://data.delijn.be/stops/401446", "https://data.delijn.be/stops/401447"], ["https://data.delijn.be/stops/105771", "https://data.delijn.be/stops/109806"], ["https://data.delijn.be/stops/106817", "https://data.delijn.be/stops/106985"], ["https://data.delijn.be/stops/402410", "https://data.delijn.be/stops/402413"], ["https://data.delijn.be/stops/304348", "https://data.delijn.be/stops/304353"], ["https://data.delijn.be/stops/501624", "https://data.delijn.be/stops/506618"], ["https://data.delijn.be/stops/301540", "https://data.delijn.be/stops/305137"], ["https://data.delijn.be/stops/206197", "https://data.delijn.be/stops/207204"], ["https://data.delijn.be/stops/404460", "https://data.delijn.be/stops/404534"], ["https://data.delijn.be/stops/300413", "https://data.delijn.be/stops/303513"], ["https://data.delijn.be/stops/406589", "https://data.delijn.be/stops/406702"], ["https://data.delijn.be/stops/401746", "https://data.delijn.be/stops/410305"], ["https://data.delijn.be/stops/109887", "https://data.delijn.be/stops/109888"], ["https://data.delijn.be/stops/302003", "https://data.delijn.be/stops/302050"], ["https://data.delijn.be/stops/504212", "https://data.delijn.be/stops/509220"], ["https://data.delijn.be/stops/104638", "https://data.delijn.be/stops/107965"], ["https://data.delijn.be/stops/101502", "https://data.delijn.be/stops/308496"], ["https://data.delijn.be/stops/205434", "https://data.delijn.be/stops/205436"], ["https://data.delijn.be/stops/400925", "https://data.delijn.be/stops/401923"], ["https://data.delijn.be/stops/502100", "https://data.delijn.be/stops/502116"], ["https://data.delijn.be/stops/405566", "https://data.delijn.be/stops/410098"], ["https://data.delijn.be/stops/403640", "https://data.delijn.be/stops/407558"], ["https://data.delijn.be/stops/101589", "https://data.delijn.be/stops/103279"], ["https://data.delijn.be/stops/304502", "https://data.delijn.be/stops/306204"], ["https://data.delijn.be/stops/403930", "https://data.delijn.be/stops/403945"], ["https://data.delijn.be/stops/105424", "https://data.delijn.be/stops/105431"], ["https://data.delijn.be/stops/209290", "https://data.delijn.be/stops/209379"], ["https://data.delijn.be/stops/207790", "https://data.delijn.be/stops/208408"], ["https://data.delijn.be/stops/300121", "https://data.delijn.be/stops/300122"], ["https://data.delijn.be/stops/104687", "https://data.delijn.be/stops/104691"], ["https://data.delijn.be/stops/401297", "https://data.delijn.be/stops/401368"], ["https://data.delijn.be/stops/403774", "https://data.delijn.be/stops/403777"], ["https://data.delijn.be/stops/504489", "https://data.delijn.be/stops/509489"], ["https://data.delijn.be/stops/304873", "https://data.delijn.be/stops/307051"], ["https://data.delijn.be/stops/400103", "https://data.delijn.be/stops/410278"], ["https://data.delijn.be/stops/302789", "https://data.delijn.be/stops/307456"], ["https://data.delijn.be/stops/501294", "https://data.delijn.be/stops/501400"], ["https://data.delijn.be/stops/108445", "https://data.delijn.be/stops/108447"], ["https://data.delijn.be/stops/105517", "https://data.delijn.be/stops/105519"], ["https://data.delijn.be/stops/302347", "https://data.delijn.be/stops/302359"], ["https://data.delijn.be/stops/303785", "https://data.delijn.be/stops/303802"], ["https://data.delijn.be/stops/104511", "https://data.delijn.be/stops/107801"], ["https://data.delijn.be/stops/104749", "https://data.delijn.be/stops/107331"], ["https://data.delijn.be/stops/505972", "https://data.delijn.be/stops/508848"], ["https://data.delijn.be/stops/109362", "https://data.delijn.be/stops/109367"], ["https://data.delijn.be/stops/109306", "https://data.delijn.be/stops/109654"], ["https://data.delijn.be/stops/300109", "https://data.delijn.be/stops/300149"], ["https://data.delijn.be/stops/403009", "https://data.delijn.be/stops/410164"], ["https://data.delijn.be/stops/105603", "https://data.delijn.be/stops/105606"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/510004"], ["https://data.delijn.be/stops/404456", "https://data.delijn.be/stops/404480"], ["https://data.delijn.be/stops/108699", "https://data.delijn.be/stops/108704"], ["https://data.delijn.be/stops/105554", "https://data.delijn.be/stops/106034"], ["https://data.delijn.be/stops/505132", "https://data.delijn.be/stops/505978"], ["https://data.delijn.be/stops/503010", "https://data.delijn.be/stops/505974"], ["https://data.delijn.be/stops/305416", "https://data.delijn.be/stops/305422"], ["https://data.delijn.be/stops/500115", "https://data.delijn.be/stops/507381"], ["https://data.delijn.be/stops/109086", "https://data.delijn.be/stops/109319"], ["https://data.delijn.be/stops/104812", "https://data.delijn.be/stops/104813"], ["https://data.delijn.be/stops/502473", "https://data.delijn.be/stops/505317"], ["https://data.delijn.be/stops/509190", "https://data.delijn.be/stops/509641"], ["https://data.delijn.be/stops/300311", "https://data.delijn.be/stops/307805"], ["https://data.delijn.be/stops/502610", "https://data.delijn.be/stops/509880"], ["https://data.delijn.be/stops/408495", "https://data.delijn.be/stops/408608"], ["https://data.delijn.be/stops/202109", "https://data.delijn.be/stops/202167"], ["https://data.delijn.be/stops/300278", "https://data.delijn.be/stops/300285"], ["https://data.delijn.be/stops/200138", "https://data.delijn.be/stops/209931"], ["https://data.delijn.be/stops/502573", "https://data.delijn.be/stops/507572"], ["https://data.delijn.be/stops/302393", "https://data.delijn.be/stops/308556"], ["https://data.delijn.be/stops/301243", "https://data.delijn.be/stops/308559"], ["https://data.delijn.be/stops/304313", "https://data.delijn.be/stops/304329"], ["https://data.delijn.be/stops/502365", "https://data.delijn.be/stops/507365"], ["https://data.delijn.be/stops/503529", "https://data.delijn.be/stops/504670"], ["https://data.delijn.be/stops/203348", "https://data.delijn.be/stops/208676"], ["https://data.delijn.be/stops/503544", "https://data.delijn.be/stops/508564"], ["https://data.delijn.be/stops/503073", "https://data.delijn.be/stops/508238"], ["https://data.delijn.be/stops/206978", "https://data.delijn.be/stops/304275"], ["https://data.delijn.be/stops/207112", "https://data.delijn.be/stops/207125"], ["https://data.delijn.be/stops/206491", "https://data.delijn.be/stops/206518"], ["https://data.delijn.be/stops/502476", "https://data.delijn.be/stops/507476"], ["https://data.delijn.be/stops/301433", "https://data.delijn.be/stops/301434"], ["https://data.delijn.be/stops/104619", "https://data.delijn.be/stops/107870"], ["https://data.delijn.be/stops/504428", "https://data.delijn.be/stops/508299"], ["https://data.delijn.be/stops/405197", "https://data.delijn.be/stops/405198"], ["https://data.delijn.be/stops/305713", "https://data.delijn.be/stops/306305"], ["https://data.delijn.be/stops/300524", "https://data.delijn.be/stops/304905"], ["https://data.delijn.be/stops/505098", "https://data.delijn.be/stops/508586"], ["https://data.delijn.be/stops/503390", "https://data.delijn.be/stops/508390"], ["https://data.delijn.be/stops/203739", "https://data.delijn.be/stops/207431"], ["https://data.delijn.be/stops/101015", "https://data.delijn.be/stops/102987"], ["https://data.delijn.be/stops/106485", "https://data.delijn.be/stops/106486"], ["https://data.delijn.be/stops/506157", "https://data.delijn.be/stops/506165"], ["https://data.delijn.be/stops/300920", "https://data.delijn.be/stops/300933"], ["https://data.delijn.be/stops/202670", "https://data.delijn.be/stops/202671"], ["https://data.delijn.be/stops/308509", "https://data.delijn.be/stops/308691"], ["https://data.delijn.be/stops/402758", "https://data.delijn.be/stops/406545"], ["https://data.delijn.be/stops/402000", "https://data.delijn.be/stops/403081"], ["https://data.delijn.be/stops/509017", "https://data.delijn.be/stops/509018"], ["https://data.delijn.be/stops/502541", "https://data.delijn.be/stops/502542"], ["https://data.delijn.be/stops/509775", "https://data.delijn.be/stops/509784"], ["https://data.delijn.be/stops/404408", "https://data.delijn.be/stops/407245"], ["https://data.delijn.be/stops/204727", "https://data.delijn.be/stops/205726"], ["https://data.delijn.be/stops/106615", "https://data.delijn.be/stops/106692"], ["https://data.delijn.be/stops/307225", "https://data.delijn.be/stops/307913"], ["https://data.delijn.be/stops/104579", "https://data.delijn.be/stops/107893"], ["https://data.delijn.be/stops/109836", "https://data.delijn.be/stops/109838"], ["https://data.delijn.be/stops/206588", "https://data.delijn.be/stops/207572"], ["https://data.delijn.be/stops/103488", "https://data.delijn.be/stops/103499"], ["https://data.delijn.be/stops/303078", "https://data.delijn.be/stops/303081"], ["https://data.delijn.be/stops/203024", "https://data.delijn.be/stops/210039"], ["https://data.delijn.be/stops/301305", "https://data.delijn.be/stops/307324"], ["https://data.delijn.be/stops/401805", "https://data.delijn.be/stops/406078"], ["https://data.delijn.be/stops/405312", "https://data.delijn.be/stops/302827"], ["https://data.delijn.be/stops/104739", "https://data.delijn.be/stops/104747"], ["https://data.delijn.be/stops/305184", "https://data.delijn.be/stops/305206"], ["https://data.delijn.be/stops/305029", "https://data.delijn.be/stops/305031"], ["https://data.delijn.be/stops/209282", "https://data.delijn.be/stops/209967"], ["https://data.delijn.be/stops/208092", "https://data.delijn.be/stops/209056"], ["https://data.delijn.be/stops/203259", "https://data.delijn.be/stops/203260"], ["https://data.delijn.be/stops/302800", "https://data.delijn.be/stops/307838"], ["https://data.delijn.be/stops/207760", "https://data.delijn.be/stops/208187"], ["https://data.delijn.be/stops/400763", "https://data.delijn.be/stops/410035"], ["https://data.delijn.be/stops/200098", "https://data.delijn.be/stops/200383"], ["https://data.delijn.be/stops/401379", "https://data.delijn.be/stops/410183"], ["https://data.delijn.be/stops/102585", "https://data.delijn.be/stops/104280"], ["https://data.delijn.be/stops/402609", "https://data.delijn.be/stops/402645"], ["https://data.delijn.be/stops/102521", "https://data.delijn.be/stops/405013"], ["https://data.delijn.be/stops/501230", "https://data.delijn.be/stops/506227"], ["https://data.delijn.be/stops/504112", "https://data.delijn.be/stops/509111"], ["https://data.delijn.be/stops/101522", "https://data.delijn.be/stops/101983"], ["https://data.delijn.be/stops/201652", "https://data.delijn.be/stops/201662"], ["https://data.delijn.be/stops/507064", "https://data.delijn.be/stops/507071"], ["https://data.delijn.be/stops/208097", "https://data.delijn.be/stops/208160"], ["https://data.delijn.be/stops/201073", "https://data.delijn.be/stops/203353"], ["https://data.delijn.be/stops/102265", "https://data.delijn.be/stops/103762"], ["https://data.delijn.be/stops/206715", "https://data.delijn.be/stops/206868"], ["https://data.delijn.be/stops/101579", "https://data.delijn.be/stops/107205"], ["https://data.delijn.be/stops/208459", "https://data.delijn.be/stops/209754"], ["https://data.delijn.be/stops/106067", "https://data.delijn.be/stops/106068"], ["https://data.delijn.be/stops/105795", "https://data.delijn.be/stops/105942"], ["https://data.delijn.be/stops/207348", "https://data.delijn.be/stops/215809"], ["https://data.delijn.be/stops/505369", "https://data.delijn.be/stops/505426"], ["https://data.delijn.be/stops/201915", "https://data.delijn.be/stops/207426"], ["https://data.delijn.be/stops/106373", "https://data.delijn.be/stops/106387"], ["https://data.delijn.be/stops/101571", "https://data.delijn.be/stops/101577"], ["https://data.delijn.be/stops/203174", "https://data.delijn.be/stops/203190"], ["https://data.delijn.be/stops/502118", "https://data.delijn.be/stops/502620"], ["https://data.delijn.be/stops/201859", "https://data.delijn.be/stops/211038"], ["https://data.delijn.be/stops/404601", "https://data.delijn.be/stops/404603"], ["https://data.delijn.be/stops/102616", "https://data.delijn.be/stops/102617"], ["https://data.delijn.be/stops/505548", "https://data.delijn.be/stops/508572"], ["https://data.delijn.be/stops/308239", "https://data.delijn.be/stops/308242"], ["https://data.delijn.be/stops/200760", "https://data.delijn.be/stops/201806"], ["https://data.delijn.be/stops/101416", "https://data.delijn.be/stops/101427"], ["https://data.delijn.be/stops/300839", "https://data.delijn.be/stops/300884"], ["https://data.delijn.be/stops/208520", "https://data.delijn.be/stops/218016"], ["https://data.delijn.be/stops/201903", "https://data.delijn.be/stops/201932"], ["https://data.delijn.be/stops/503598", "https://data.delijn.be/stops/508078"], ["https://data.delijn.be/stops/203149", "https://data.delijn.be/stops/203150"], ["https://data.delijn.be/stops/204056", "https://data.delijn.be/stops/204057"], ["https://data.delijn.be/stops/106929", "https://data.delijn.be/stops/106930"], ["https://data.delijn.be/stops/206385", "https://data.delijn.be/stops/207807"], ["https://data.delijn.be/stops/410032", "https://data.delijn.be/stops/410033"], ["https://data.delijn.be/stops/107926", "https://data.delijn.be/stops/107930"], ["https://data.delijn.be/stops/306165", "https://data.delijn.be/stops/308587"], ["https://data.delijn.be/stops/401820", "https://data.delijn.be/stops/410357"], ["https://data.delijn.be/stops/408295", "https://data.delijn.be/stops/308291"], ["https://data.delijn.be/stops/303064", "https://data.delijn.be/stops/304484"], ["https://data.delijn.be/stops/109064", "https://data.delijn.be/stops/109065"], ["https://data.delijn.be/stops/206469", "https://data.delijn.be/stops/207862"], ["https://data.delijn.be/stops/404891", "https://data.delijn.be/stops/404925"], ["https://data.delijn.be/stops/204194", "https://data.delijn.be/stops/205232"], ["https://data.delijn.be/stops/206110", "https://data.delijn.be/stops/206111"], ["https://data.delijn.be/stops/200500", "https://data.delijn.be/stops/200501"], ["https://data.delijn.be/stops/405177", "https://data.delijn.be/stops/405203"], ["https://data.delijn.be/stops/208034", "https://data.delijn.be/stops/209034"], ["https://data.delijn.be/stops/400276", "https://data.delijn.be/stops/400368"], ["https://data.delijn.be/stops/207062", "https://data.delijn.be/stops/216008"], ["https://data.delijn.be/stops/502272", "https://data.delijn.be/stops/502273"], ["https://data.delijn.be/stops/503123", "https://data.delijn.be/stops/505793"], ["https://data.delijn.be/stops/103473", "https://data.delijn.be/stops/108267"], ["https://data.delijn.be/stops/505145", "https://data.delijn.be/stops/505775"], ["https://data.delijn.be/stops/408264", "https://data.delijn.be/stops/408271"], ["https://data.delijn.be/stops/205444", "https://data.delijn.be/stops/205445"], ["https://data.delijn.be/stops/106193", "https://data.delijn.be/stops/107440"], ["https://data.delijn.be/stops/305109", "https://data.delijn.be/stops/305128"], ["https://data.delijn.be/stops/400594", "https://data.delijn.be/stops/400595"], ["https://data.delijn.be/stops/106996", "https://data.delijn.be/stops/107099"], ["https://data.delijn.be/stops/408536", "https://data.delijn.be/stops/408663"], ["https://data.delijn.be/stops/104039", "https://data.delijn.be/stops/108369"], ["https://data.delijn.be/stops/504778", "https://data.delijn.be/stops/508531"], ["https://data.delijn.be/stops/302832", "https://data.delijn.be/stops/306777"], ["https://data.delijn.be/stops/103762", "https://data.delijn.be/stops/107485"], ["https://data.delijn.be/stops/508655", "https://data.delijn.be/stops/509252"], ["https://data.delijn.be/stops/405066", "https://data.delijn.be/stops/405067"], ["https://data.delijn.be/stops/200369", "https://data.delijn.be/stops/204810"], ["https://data.delijn.be/stops/204319", "https://data.delijn.be/stops/205697"], ["https://data.delijn.be/stops/502387", "https://data.delijn.be/stops/507389"], ["https://data.delijn.be/stops/502268", "https://data.delijn.be/stops/507268"], ["https://data.delijn.be/stops/408502", "https://data.delijn.be/stops/408504"], ["https://data.delijn.be/stops/101382", "https://data.delijn.be/stops/107099"], ["https://data.delijn.be/stops/206201", "https://data.delijn.be/stops/206295"], ["https://data.delijn.be/stops/305154", "https://data.delijn.be/stops/307872"], ["https://data.delijn.be/stops/302378", "https://data.delijn.be/stops/307842"], ["https://data.delijn.be/stops/200141", "https://data.delijn.be/stops/201245"], ["https://data.delijn.be/stops/501321", "https://data.delijn.be/stops/506321"], ["https://data.delijn.be/stops/208070", "https://data.delijn.be/stops/208088"], ["https://data.delijn.be/stops/404286", "https://data.delijn.be/stops/405814"], ["https://data.delijn.be/stops/405828", "https://data.delijn.be/stops/409437"], ["https://data.delijn.be/stops/302337", "https://data.delijn.be/stops/302343"], ["https://data.delijn.be/stops/106623", "https://data.delijn.be/stops/106670"], ["https://data.delijn.be/stops/201073", "https://data.delijn.be/stops/202353"], ["https://data.delijn.be/stops/107318", "https://data.delijn.be/stops/107321"], ["https://data.delijn.be/stops/402872", "https://data.delijn.be/stops/402874"], ["https://data.delijn.be/stops/208956", "https://data.delijn.be/stops/209956"], ["https://data.delijn.be/stops/302596", "https://data.delijn.be/stops/302693"], ["https://data.delijn.be/stops/204202", "https://data.delijn.be/stops/205082"], ["https://data.delijn.be/stops/101748", "https://data.delijn.be/stops/102754"], ["https://data.delijn.be/stops/300884", "https://data.delijn.be/stops/300885"], ["https://data.delijn.be/stops/400242", "https://data.delijn.be/stops/400935"], ["https://data.delijn.be/stops/206752", "https://data.delijn.be/stops/206755"], ["https://data.delijn.be/stops/505649", "https://data.delijn.be/stops/507918"], ["https://data.delijn.be/stops/501311", "https://data.delijn.be/stops/506309"], ["https://data.delijn.be/stops/402874", "https://data.delijn.be/stops/402876"], ["https://data.delijn.be/stops/207694", "https://data.delijn.be/stops/207956"], ["https://data.delijn.be/stops/503338", "https://data.delijn.be/stops/590010"], ["https://data.delijn.be/stops/208149", "https://data.delijn.be/stops/208521"], ["https://data.delijn.be/stops/302566", "https://data.delijn.be/stops/302605"], ["https://data.delijn.be/stops/504461", "https://data.delijn.be/stops/504679"], ["https://data.delijn.be/stops/207232", "https://data.delijn.be/stops/300161"], ["https://data.delijn.be/stops/401589", "https://data.delijn.be/stops/402124"], ["https://data.delijn.be/stops/405659", "https://data.delijn.be/stops/410191"], ["https://data.delijn.be/stops/302094", "https://data.delijn.be/stops/302098"], ["https://data.delijn.be/stops/503391", "https://data.delijn.be/stops/508251"], ["https://data.delijn.be/stops/302387", "https://data.delijn.be/stops/302391"], ["https://data.delijn.be/stops/300039", "https://data.delijn.be/stops/307732"], ["https://data.delijn.be/stops/302180", "https://data.delijn.be/stops/305091"], ["https://data.delijn.be/stops/106622", "https://data.delijn.be/stops/108017"], ["https://data.delijn.be/stops/403476", "https://data.delijn.be/stops/403477"], ["https://data.delijn.be/stops/202583", "https://data.delijn.be/stops/203128"], ["https://data.delijn.be/stops/201757", "https://data.delijn.be/stops/201758"], ["https://data.delijn.be/stops/400403", "https://data.delijn.be/stops/405871"], ["https://data.delijn.be/stops/405773", "https://data.delijn.be/stops/409421"], ["https://data.delijn.be/stops/502804", "https://data.delijn.be/stops/502805"], ["https://data.delijn.be/stops/200203", "https://data.delijn.be/stops/202554"], ["https://data.delijn.be/stops/506416", "https://data.delijn.be/stops/506475"], ["https://data.delijn.be/stops/409270", "https://data.delijn.be/stops/409271"], ["https://data.delijn.be/stops/201671", "https://data.delijn.be/stops/208640"], ["https://data.delijn.be/stops/504743", "https://data.delijn.be/stops/508760"], ["https://data.delijn.be/stops/103088", "https://data.delijn.be/stops/107476"], ["https://data.delijn.be/stops/107901", "https://data.delijn.be/stops/109751"], ["https://data.delijn.be/stops/201068", "https://data.delijn.be/stops/201188"], ["https://data.delijn.be/stops/106147", "https://data.delijn.be/stops/106155"], ["https://data.delijn.be/stops/106873", "https://data.delijn.be/stops/106877"], ["https://data.delijn.be/stops/505526", "https://data.delijn.be/stops/508632"], ["https://data.delijn.be/stops/403160", "https://data.delijn.be/stops/403220"], ["https://data.delijn.be/stops/505012", "https://data.delijn.be/stops/505735"], ["https://data.delijn.be/stops/101082", "https://data.delijn.be/stops/101083"], ["https://data.delijn.be/stops/504024", "https://data.delijn.be/stops/505301"], ["https://data.delijn.be/stops/402004", "https://data.delijn.be/stops/410354"], ["https://data.delijn.be/stops/400122", "https://data.delijn.be/stops/400123"], ["https://data.delijn.be/stops/507194", "https://data.delijn.be/stops/509312"], ["https://data.delijn.be/stops/501381", "https://data.delijn.be/stops/506383"], ["https://data.delijn.be/stops/200004", "https://data.delijn.be/stops/200005"], ["https://data.delijn.be/stops/404288", "https://data.delijn.be/stops/409746"], ["https://data.delijn.be/stops/200157", "https://data.delijn.be/stops/206404"], ["https://data.delijn.be/stops/206077", "https://data.delijn.be/stops/207078"], ["https://data.delijn.be/stops/301836", "https://data.delijn.be/stops/301847"], ["https://data.delijn.be/stops/404288", "https://data.delijn.be/stops/407511"], ["https://data.delijn.be/stops/207778", "https://data.delijn.be/stops/207798"], ["https://data.delijn.be/stops/505000", "https://data.delijn.be/stops/505107"], ["https://data.delijn.be/stops/108524", "https://data.delijn.be/stops/108527"], ["https://data.delijn.be/stops/403421", "https://data.delijn.be/stops/409149"], ["https://data.delijn.be/stops/200251", "https://data.delijn.be/stops/203193"], ["https://data.delijn.be/stops/405083", "https://data.delijn.be/stops/405109"], ["https://data.delijn.be/stops/304636", "https://data.delijn.be/stops/308963"], ["https://data.delijn.be/stops/300110", "https://data.delijn.be/stops/305995"], ["https://data.delijn.be/stops/501508", "https://data.delijn.be/stops/505401"], ["https://data.delijn.be/stops/502317", "https://data.delijn.be/stops/507336"], ["https://data.delijn.be/stops/300412", "https://data.delijn.be/stops/307490"], ["https://data.delijn.be/stops/400471", "https://data.delijn.be/stops/409249"], ["https://data.delijn.be/stops/300461", "https://data.delijn.be/stops/300471"], ["https://data.delijn.be/stops/301602", "https://data.delijn.be/stops/306301"], ["https://data.delijn.be/stops/507468", "https://data.delijn.be/stops/507761"], ["https://data.delijn.be/stops/407151", "https://data.delijn.be/stops/407901"], ["https://data.delijn.be/stops/503897", "https://data.delijn.be/stops/504141"], ["https://data.delijn.be/stops/504230", "https://data.delijn.be/stops/509230"], ["https://data.delijn.be/stops/402779", "https://data.delijn.be/stops/406921"], ["https://data.delijn.be/stops/505136", "https://data.delijn.be/stops/508669"], ["https://data.delijn.be/stops/208217", "https://data.delijn.be/stops/208218"], ["https://data.delijn.be/stops/104024", "https://data.delijn.be/stops/107214"], ["https://data.delijn.be/stops/208349", "https://data.delijn.be/stops/209191"], ["https://data.delijn.be/stops/204552", "https://data.delijn.be/stops/205297"], ["https://data.delijn.be/stops/103129", "https://data.delijn.be/stops/106783"], ["https://data.delijn.be/stops/400983", "https://data.delijn.be/stops/406569"], ["https://data.delijn.be/stops/501259", "https://data.delijn.be/stops/501406"], ["https://data.delijn.be/stops/401778", "https://data.delijn.be/stops/406135"], ["https://data.delijn.be/stops/504633", "https://data.delijn.be/stops/509633"], ["https://data.delijn.be/stops/501357", "https://data.delijn.be/stops/501772"], ["https://data.delijn.be/stops/300482", "https://data.delijn.be/stops/300496"], ["https://data.delijn.be/stops/409735", "https://data.delijn.be/stops/409737"], ["https://data.delijn.be/stops/408589", "https://data.delijn.be/stops/408670"], ["https://data.delijn.be/stops/401561", "https://data.delijn.be/stops/401738"], ["https://data.delijn.be/stops/402495", "https://data.delijn.be/stops/402496"], ["https://data.delijn.be/stops/302965", "https://data.delijn.be/stops/303005"], ["https://data.delijn.be/stops/409805", "https://data.delijn.be/stops/409810"], ["https://data.delijn.be/stops/403963", "https://data.delijn.be/stops/403968"], ["https://data.delijn.be/stops/103302", "https://data.delijn.be/stops/105769"], ["https://data.delijn.be/stops/108907", "https://data.delijn.be/stops/108908"], ["https://data.delijn.be/stops/400279", "https://data.delijn.be/stops/400954"], ["https://data.delijn.be/stops/503916", "https://data.delijn.be/stops/503922"], ["https://data.delijn.be/stops/103294", "https://data.delijn.be/stops/105031"], ["https://data.delijn.be/stops/101877", "https://data.delijn.be/stops/109496"], ["https://data.delijn.be/stops/504531", "https://data.delijn.be/stops/509155"], ["https://data.delijn.be/stops/302190", "https://data.delijn.be/stops/302193"], ["https://data.delijn.be/stops/200333", "https://data.delijn.be/stops/203890"], ["https://data.delijn.be/stops/104044", "https://data.delijn.be/stops/306591"], ["https://data.delijn.be/stops/400064", "https://data.delijn.be/stops/400065"], ["https://data.delijn.be/stops/407647", "https://data.delijn.be/stops/408698"], ["https://data.delijn.be/stops/305439", "https://data.delijn.be/stops/305507"], ["https://data.delijn.be/stops/205059", "https://data.delijn.be/stops/205318"], ["https://data.delijn.be/stops/502209", "https://data.delijn.be/stops/505156"], ["https://data.delijn.be/stops/406564", "https://data.delijn.be/stops/407203"], ["https://data.delijn.be/stops/102195", "https://data.delijn.be/stops/105316"], ["https://data.delijn.be/stops/200769", "https://data.delijn.be/stops/208250"], ["https://data.delijn.be/stops/106232", "https://data.delijn.be/stops/109802"], ["https://data.delijn.be/stops/500016", "https://data.delijn.be/stops/502466"], ["https://data.delijn.be/stops/204423", "https://data.delijn.be/stops/205431"], ["https://data.delijn.be/stops/507517", "https://data.delijn.be/stops/508800"], ["https://data.delijn.be/stops/207854", "https://data.delijn.be/stops/207863"], ["https://data.delijn.be/stops/408532", "https://data.delijn.be/stops/408763"], ["https://data.delijn.be/stops/501351", "https://data.delijn.be/stops/501449"], ["https://data.delijn.be/stops/302461", "https://data.delijn.be/stops/308669"], ["https://data.delijn.be/stops/308110", "https://data.delijn.be/stops/308111"], ["https://data.delijn.be/stops/303700", "https://data.delijn.be/stops/303728"], ["https://data.delijn.be/stops/203026", "https://data.delijn.be/stops/203082"], ["https://data.delijn.be/stops/204662", "https://data.delijn.be/stops/205662"], ["https://data.delijn.be/stops/206465", "https://data.delijn.be/stops/207465"], ["https://data.delijn.be/stops/201233", "https://data.delijn.be/stops/203354"], ["https://data.delijn.be/stops/501113", "https://data.delijn.be/stops/506659"], ["https://data.delijn.be/stops/208420", "https://data.delijn.be/stops/209401"], ["https://data.delijn.be/stops/207676", "https://data.delijn.be/stops/209135"], ["https://data.delijn.be/stops/504797", "https://data.delijn.be/stops/508470"], ["https://data.delijn.be/stops/300414", "https://data.delijn.be/stops/300601"], ["https://data.delijn.be/stops/105898", "https://data.delijn.be/stops/105902"], ["https://data.delijn.be/stops/404354", "https://data.delijn.be/stops/404355"], ["https://data.delijn.be/stops/306911", "https://data.delijn.be/stops/306912"], ["https://data.delijn.be/stops/200239", "https://data.delijn.be/stops/200276"], ["https://data.delijn.be/stops/206101", "https://data.delijn.be/stops/206846"], ["https://data.delijn.be/stops/508693", "https://data.delijn.be/stops/508718"], ["https://data.delijn.be/stops/505036", "https://data.delijn.be/stops/506022"], ["https://data.delijn.be/stops/408802", "https://data.delijn.be/stops/408829"], ["https://data.delijn.be/stops/200959", "https://data.delijn.be/stops/201906"], ["https://data.delijn.be/stops/500949", "https://data.delijn.be/stops/509154"], ["https://data.delijn.be/stops/300203", "https://data.delijn.be/stops/303127"], ["https://data.delijn.be/stops/202488", "https://data.delijn.be/stops/202930"], ["https://data.delijn.be/stops/501462", "https://data.delijn.be/stops/501535"], ["https://data.delijn.be/stops/305401", "https://data.delijn.be/stops/305402"], ["https://data.delijn.be/stops/505119", "https://data.delijn.be/stops/505175"], ["https://data.delijn.be/stops/304564", "https://data.delijn.be/stops/304616"], ["https://data.delijn.be/stops/304219", "https://data.delijn.be/stops/304220"], ["https://data.delijn.be/stops/200449", "https://data.delijn.be/stops/201449"], ["https://data.delijn.be/stops/501246", "https://data.delijn.be/stops/506236"], ["https://data.delijn.be/stops/200137", "https://data.delijn.be/stops/201138"], ["https://data.delijn.be/stops/104591", "https://data.delijn.be/stops/106535"], ["https://data.delijn.be/stops/202970", "https://data.delijn.be/stops/202971"], ["https://data.delijn.be/stops/202631", "https://data.delijn.be/stops/204091"], ["https://data.delijn.be/stops/302376", "https://data.delijn.be/stops/302382"], ["https://data.delijn.be/stops/108556", "https://data.delijn.be/stops/109602"], ["https://data.delijn.be/stops/105641", "https://data.delijn.be/stops/105811"], ["https://data.delijn.be/stops/108911", "https://data.delijn.be/stops/109398"], ["https://data.delijn.be/stops/503490", "https://data.delijn.be/stops/508482"], ["https://data.delijn.be/stops/407845", "https://data.delijn.be/stops/407906"], ["https://data.delijn.be/stops/304051", "https://data.delijn.be/stops/304056"], ["https://data.delijn.be/stops/108193", "https://data.delijn.be/stops/108194"], ["https://data.delijn.be/stops/105103", "https://data.delijn.be/stops/107633"], ["https://data.delijn.be/stops/208785", "https://data.delijn.be/stops/209178"], ["https://data.delijn.be/stops/503342", "https://data.delijn.be/stops/503343"], ["https://data.delijn.be/stops/208121", "https://data.delijn.be/stops/209121"], ["https://data.delijn.be/stops/401053", "https://data.delijn.be/stops/401136"], ["https://data.delijn.be/stops/302260", "https://data.delijn.be/stops/307007"], ["https://data.delijn.be/stops/503526", "https://data.delijn.be/stops/508524"], ["https://data.delijn.be/stops/200826", "https://data.delijn.be/stops/200875"], ["https://data.delijn.be/stops/201916", "https://data.delijn.be/stops/201920"], ["https://data.delijn.be/stops/403187", "https://data.delijn.be/stops/403864"], ["https://data.delijn.be/stops/502493", "https://data.delijn.be/stops/507493"], ["https://data.delijn.be/stops/303576", "https://data.delijn.be/stops/305281"], ["https://data.delijn.be/stops/203186", "https://data.delijn.be/stops/203298"], ["https://data.delijn.be/stops/104424", "https://data.delijn.be/stops/205445"], ["https://data.delijn.be/stops/407406", "https://data.delijn.be/stops/407571"], ["https://data.delijn.be/stops/503504", "https://data.delijn.be/stops/508611"], ["https://data.delijn.be/stops/402860", "https://data.delijn.be/stops/410203"], ["https://data.delijn.be/stops/300697", "https://data.delijn.be/stops/306941"], ["https://data.delijn.be/stops/503259", "https://data.delijn.be/stops/508174"], ["https://data.delijn.be/stops/303892", "https://data.delijn.be/stops/305565"], ["https://data.delijn.be/stops/201762", "https://data.delijn.be/stops/208272"], ["https://data.delijn.be/stops/103557", "https://data.delijn.be/stops/103558"], ["https://data.delijn.be/stops/207723", "https://data.delijn.be/stops/207921"], ["https://data.delijn.be/stops/203638", "https://data.delijn.be/stops/205072"], ["https://data.delijn.be/stops/407610", "https://data.delijn.be/stops/409788"], ["https://data.delijn.be/stops/302496", "https://data.delijn.be/stops/302497"], ["https://data.delijn.be/stops/305389", "https://data.delijn.be/stops/305418"], ["https://data.delijn.be/stops/109438", "https://data.delijn.be/stops/109440"], ["https://data.delijn.be/stops/305567", "https://data.delijn.be/stops/308829"], ["https://data.delijn.be/stops/203764", "https://data.delijn.be/stops/203765"], ["https://data.delijn.be/stops/105590", "https://data.delijn.be/stops/105595"], ["https://data.delijn.be/stops/202579", "https://data.delijn.be/stops/210077"], ["https://data.delijn.be/stops/206694", "https://data.delijn.be/stops/207185"], ["https://data.delijn.be/stops/300849", "https://data.delijn.be/stops/305319"], ["https://data.delijn.be/stops/302200", "https://data.delijn.be/stops/302201"], ["https://data.delijn.be/stops/303174", "https://data.delijn.be/stops/305526"], ["https://data.delijn.be/stops/501627", "https://data.delijn.be/stops/508806"], ["https://data.delijn.be/stops/401248", "https://data.delijn.be/stops/401254"], ["https://data.delijn.be/stops/302371", "https://data.delijn.be/stops/302750"], ["https://data.delijn.be/stops/300696", "https://data.delijn.be/stops/306936"], ["https://data.delijn.be/stops/202921", "https://data.delijn.be/stops/203921"], ["https://data.delijn.be/stops/405024", "https://data.delijn.be/stops/405025"], ["https://data.delijn.be/stops/200157", "https://data.delijn.be/stops/206242"], ["https://data.delijn.be/stops/106115", "https://data.delijn.be/stops/106117"], ["https://data.delijn.be/stops/504825", "https://data.delijn.be/stops/509423"], ["https://data.delijn.be/stops/407854", "https://data.delijn.be/stops/407855"], ["https://data.delijn.be/stops/300215", "https://data.delijn.be/stops/303735"], ["https://data.delijn.be/stops/304027", "https://data.delijn.be/stops/304100"], ["https://data.delijn.be/stops/408896", "https://data.delijn.be/stops/408916"], ["https://data.delijn.be/stops/205990", "https://data.delijn.be/stops/208779"], ["https://data.delijn.be/stops/304344", "https://data.delijn.be/stops/307344"], ["https://data.delijn.be/stops/204233", "https://data.delijn.be/stops/204261"], ["https://data.delijn.be/stops/300982", "https://data.delijn.be/stops/304722"], ["https://data.delijn.be/stops/108792", "https://data.delijn.be/stops/108797"], ["https://data.delijn.be/stops/405142", "https://data.delijn.be/stops/405289"], ["https://data.delijn.be/stops/305031", "https://data.delijn.be/stops/308034"], ["https://data.delijn.be/stops/407050", "https://data.delijn.be/stops/407052"], ["https://data.delijn.be/stops/301789", "https://data.delijn.be/stops/308887"], ["https://data.delijn.be/stops/501381", "https://data.delijn.be/stops/501641"], ["https://data.delijn.be/stops/103357", "https://data.delijn.be/stops/104075"], ["https://data.delijn.be/stops/303334", "https://data.delijn.be/stops/303335"], ["https://data.delijn.be/stops/204999", "https://data.delijn.be/stops/207723"], ["https://data.delijn.be/stops/305007", "https://data.delijn.be/stops/305025"], ["https://data.delijn.be/stops/105511", "https://data.delijn.be/stops/105788"], ["https://data.delijn.be/stops/200468", "https://data.delijn.be/stops/211086"], ["https://data.delijn.be/stops/408712", "https://data.delijn.be/stops/408713"], ["https://data.delijn.be/stops/405133", "https://data.delijn.be/stops/407928"], ["https://data.delijn.be/stops/303442", "https://data.delijn.be/stops/303449"], ["https://data.delijn.be/stops/301004", "https://data.delijn.be/stops/306968"], ["https://data.delijn.be/stops/206990", "https://data.delijn.be/stops/301442"], ["https://data.delijn.be/stops/501413", "https://data.delijn.be/stops/506413"], ["https://data.delijn.be/stops/409530", "https://data.delijn.be/stops/409547"], ["https://data.delijn.be/stops/402101", "https://data.delijn.be/stops/402330"], ["https://data.delijn.be/stops/303284", "https://data.delijn.be/stops/303316"], ["https://data.delijn.be/stops/300887", "https://data.delijn.be/stops/333454"], ["https://data.delijn.be/stops/200950", "https://data.delijn.be/stops/204994"], ["https://data.delijn.be/stops/109087", "https://data.delijn.be/stops/109314"], ["https://data.delijn.be/stops/504594", "https://data.delijn.be/stops/504775"], ["https://data.delijn.be/stops/503822", "https://data.delijn.be/stops/505073"], ["https://data.delijn.be/stops/503903", "https://data.delijn.be/stops/503907"], ["https://data.delijn.be/stops/202491", "https://data.delijn.be/stops/203491"], ["https://data.delijn.be/stops/207125", "https://data.delijn.be/stops/207412"], ["https://data.delijn.be/stops/500940", "https://data.delijn.be/stops/505642"], ["https://data.delijn.be/stops/102537", "https://data.delijn.be/stops/406547"], ["https://data.delijn.be/stops/209600", "https://data.delijn.be/stops/307302"], ["https://data.delijn.be/stops/205727", "https://data.delijn.be/stops/205728"], ["https://data.delijn.be/stops/200894", "https://data.delijn.be/stops/203340"], ["https://data.delijn.be/stops/201557", "https://data.delijn.be/stops/508021"], ["https://data.delijn.be/stops/407849", "https://data.delijn.be/stops/407852"], ["https://data.delijn.be/stops/301727", "https://data.delijn.be/stops/305227"], ["https://data.delijn.be/stops/304449", "https://data.delijn.be/stops/304451"], ["https://data.delijn.be/stops/101806", "https://data.delijn.be/stops/101955"], ["https://data.delijn.be/stops/501407", "https://data.delijn.be/stops/501698"], ["https://data.delijn.be/stops/503299", "https://data.delijn.be/stops/508299"], ["https://data.delijn.be/stops/403195", "https://data.delijn.be/stops/403226"], ["https://data.delijn.be/stops/403290", "https://data.delijn.be/stops/403394"], ["https://data.delijn.be/stops/101964", "https://data.delijn.be/stops/108733"], ["https://data.delijn.be/stops/102198", "https://data.delijn.be/stops/105847"], ["https://data.delijn.be/stops/303656", "https://data.delijn.be/stops/308616"], ["https://data.delijn.be/stops/106347", "https://data.delijn.be/stops/106350"], ["https://data.delijn.be/stops/102068", "https://data.delijn.be/stops/106929"], ["https://data.delijn.be/stops/307476", "https://data.delijn.be/stops/307477"], ["https://data.delijn.be/stops/403018", "https://data.delijn.be/stops/409339"], ["https://data.delijn.be/stops/306281", "https://data.delijn.be/stops/307096"], ["https://data.delijn.be/stops/202762", "https://data.delijn.be/stops/203761"], ["https://data.delijn.be/stops/200016", "https://data.delijn.be/stops/201017"], ["https://data.delijn.be/stops/104671", "https://data.delijn.be/stops/107382"], ["https://data.delijn.be/stops/504137", "https://data.delijn.be/stops/509137"], ["https://data.delijn.be/stops/403874", "https://data.delijn.be/stops/408185"], ["https://data.delijn.be/stops/107215", "https://data.delijn.be/stops/108250"], ["https://data.delijn.be/stops/308135", "https://data.delijn.be/stops/308178"], ["https://data.delijn.be/stops/106733", "https://data.delijn.be/stops/106774"], ["https://data.delijn.be/stops/502613", "https://data.delijn.be/stops/507749"], ["https://data.delijn.be/stops/102848", "https://data.delijn.be/stops/104981"], ["https://data.delijn.be/stops/404754", "https://data.delijn.be/stops/404758"], ["https://data.delijn.be/stops/206919", "https://data.delijn.be/stops/207919"], ["https://data.delijn.be/stops/405262", "https://data.delijn.be/stops/405278"], ["https://data.delijn.be/stops/400428", "https://data.delijn.be/stops/402759"], ["https://data.delijn.be/stops/206676", "https://data.delijn.be/stops/209166"], ["https://data.delijn.be/stops/202903", "https://data.delijn.be/stops/203904"], ["https://data.delijn.be/stops/109990", "https://data.delijn.be/stops/109997"], ["https://data.delijn.be/stops/208426", "https://data.delijn.be/stops/208681"], ["https://data.delijn.be/stops/403798", "https://data.delijn.be/stops/403805"], ["https://data.delijn.be/stops/103532", "https://data.delijn.be/stops/106338"], ["https://data.delijn.be/stops/208665", "https://data.delijn.be/stops/209128"], ["https://data.delijn.be/stops/401824", "https://data.delijn.be/stops/406333"], ["https://data.delijn.be/stops/503502", "https://data.delijn.be/stops/508867"], ["https://data.delijn.be/stops/204259", "https://data.delijn.be/stops/205095"], ["https://data.delijn.be/stops/204144", "https://data.delijn.be/stops/205131"], ["https://data.delijn.be/stops/107122", "https://data.delijn.be/stops/107127"], ["https://data.delijn.be/stops/206664", "https://data.delijn.be/stops/206711"], ["https://data.delijn.be/stops/305579", "https://data.delijn.be/stops/307824"], ["https://data.delijn.be/stops/402822", "https://data.delijn.be/stops/406304"], ["https://data.delijn.be/stops/206009", "https://data.delijn.be/stops/207052"], ["https://data.delijn.be/stops/403902", "https://data.delijn.be/stops/403914"], ["https://data.delijn.be/stops/108372", "https://data.delijn.be/stops/108462"], ["https://data.delijn.be/stops/305451", "https://data.delijn.be/stops/305452"], ["https://data.delijn.be/stops/400676", "https://data.delijn.be/stops/405029"], ["https://data.delijn.be/stops/307400", "https://data.delijn.be/stops/307401"], ["https://data.delijn.be/stops/503315", "https://data.delijn.be/stops/507173"], ["https://data.delijn.be/stops/201870", "https://data.delijn.be/stops/203662"], ["https://data.delijn.be/stops/202401", "https://data.delijn.be/stops/203401"], ["https://data.delijn.be/stops/504226", "https://data.delijn.be/stops/509228"], ["https://data.delijn.be/stops/108648", "https://data.delijn.be/stops/304329"], ["https://data.delijn.be/stops/503051", "https://data.delijn.be/stops/508056"], ["https://data.delijn.be/stops/402118", "https://data.delijn.be/stops/402127"], ["https://data.delijn.be/stops/202654", "https://data.delijn.be/stops/203654"], ["https://data.delijn.be/stops/209948", "https://data.delijn.be/stops/210119"], ["https://data.delijn.be/stops/202666", "https://data.delijn.be/stops/210080"], ["https://data.delijn.be/stops/202701", "https://data.delijn.be/stops/203705"], ["https://data.delijn.be/stops/102947", "https://data.delijn.be/stops/106238"], ["https://data.delijn.be/stops/306815", "https://data.delijn.be/stops/308506"], ["https://data.delijn.be/stops/405079", "https://data.delijn.be/stops/405091"], ["https://data.delijn.be/stops/503177", "https://data.delijn.be/stops/508176"], ["https://data.delijn.be/stops/201061", "https://data.delijn.be/stops/210058"], ["https://data.delijn.be/stops/408800", "https://data.delijn.be/stops/408861"], ["https://data.delijn.be/stops/201673", "https://data.delijn.be/stops/203207"], ["https://data.delijn.be/stops/202051", "https://data.delijn.be/stops/203052"], ["https://data.delijn.be/stops/305565", "https://data.delijn.be/stops/305568"], ["https://data.delijn.be/stops/300260", "https://data.delijn.be/stops/303893"], ["https://data.delijn.be/stops/208047", "https://data.delijn.be/stops/209047"], ["https://data.delijn.be/stops/201308", "https://data.delijn.be/stops/209450"], ["https://data.delijn.be/stops/502339", "https://data.delijn.be/stops/507339"], ["https://data.delijn.be/stops/202234", "https://data.delijn.be/stops/203234"], ["https://data.delijn.be/stops/403796", "https://data.delijn.be/stops/403800"], ["https://data.delijn.be/stops/307945", "https://data.delijn.be/stops/307946"], ["https://data.delijn.be/stops/216018", "https://data.delijn.be/stops/306072"], ["https://data.delijn.be/stops/204471", "https://data.delijn.be/stops/205471"], ["https://data.delijn.be/stops/210015", "https://data.delijn.be/stops/505723"], ["https://data.delijn.be/stops/108381", "https://data.delijn.be/stops/108445"], ["https://data.delijn.be/stops/209030", "https://data.delijn.be/stops/209031"], ["https://data.delijn.be/stops/105619", "https://data.delijn.be/stops/105622"], ["https://data.delijn.be/stops/201894", "https://data.delijn.be/stops/210069"], ["https://data.delijn.be/stops/300836", "https://data.delijn.be/stops/301792"], ["https://data.delijn.be/stops/104878", "https://data.delijn.be/stops/105278"], ["https://data.delijn.be/stops/504816", "https://data.delijn.be/stops/507960"], ["https://data.delijn.be/stops/105050", "https://data.delijn.be/stops/105060"], ["https://data.delijn.be/stops/502273", "https://data.delijn.be/stops/507673"], ["https://data.delijn.be/stops/102962", "https://data.delijn.be/stops/109279"], ["https://data.delijn.be/stops/407383", "https://data.delijn.be/stops/407857"], ["https://data.delijn.be/stops/304952", "https://data.delijn.be/stops/308033"], ["https://data.delijn.be/stops/105452", "https://data.delijn.be/stops/109937"], ["https://data.delijn.be/stops/206672", "https://data.delijn.be/stops/208096"], ["https://data.delijn.be/stops/206077", "https://data.delijn.be/stops/206912"], ["https://data.delijn.be/stops/206269", "https://data.delijn.be/stops/207269"], ["https://data.delijn.be/stops/403118", "https://data.delijn.be/stops/403120"], ["https://data.delijn.be/stops/109578", "https://data.delijn.be/stops/109581"], ["https://data.delijn.be/stops/207216", "https://data.delijn.be/stops/207905"], ["https://data.delijn.be/stops/502382", "https://data.delijn.be/stops/507398"], ["https://data.delijn.be/stops/102309", "https://data.delijn.be/stops/105552"], ["https://data.delijn.be/stops/301337", "https://data.delijn.be/stops/301338"], ["https://data.delijn.be/stops/507941", "https://data.delijn.be/stops/509949"], ["https://data.delijn.be/stops/209450", "https://data.delijn.be/stops/209987"], ["https://data.delijn.be/stops/505440", "https://data.delijn.be/stops/505825"], ["https://data.delijn.be/stops/410224", "https://data.delijn.be/stops/410270"], ["https://data.delijn.be/stops/403964", "https://data.delijn.be/stops/403978"], ["https://data.delijn.be/stops/406207", "https://data.delijn.be/stops/406449"], ["https://data.delijn.be/stops/204939", "https://data.delijn.be/stops/205939"], ["https://data.delijn.be/stops/208537", "https://data.delijn.be/stops/209538"], ["https://data.delijn.be/stops/504671", "https://data.delijn.be/stops/504766"], ["https://data.delijn.be/stops/401135", "https://data.delijn.be/stops/401139"], ["https://data.delijn.be/stops/505687", "https://data.delijn.be/stops/505783"], ["https://data.delijn.be/stops/405765", "https://data.delijn.be/stops/409421"], ["https://data.delijn.be/stops/502932", "https://data.delijn.be/stops/507016"], ["https://data.delijn.be/stops/304876", "https://data.delijn.be/stops/308544"], ["https://data.delijn.be/stops/104584", "https://data.delijn.be/stops/104587"], ["https://data.delijn.be/stops/303841", "https://data.delijn.be/stops/303870"], ["https://data.delijn.be/stops/203932", "https://data.delijn.be/stops/208426"], ["https://data.delijn.be/stops/505268", "https://data.delijn.be/stops/507715"], ["https://data.delijn.be/stops/200756", "https://data.delijn.be/stops/507693"], ["https://data.delijn.be/stops/200168", "https://data.delijn.be/stops/202624"], ["https://data.delijn.be/stops/304765", "https://data.delijn.be/stops/305250"], ["https://data.delijn.be/stops/302669", "https://data.delijn.be/stops/302670"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/404067"], ["https://data.delijn.be/stops/300398", "https://data.delijn.be/stops/308963"], ["https://data.delijn.be/stops/506429", "https://data.delijn.be/stops/506430"], ["https://data.delijn.be/stops/101305", "https://data.delijn.be/stops/102385"], ["https://data.delijn.be/stops/201103", "https://data.delijn.be/stops/211001"], ["https://data.delijn.be/stops/404795", "https://data.delijn.be/stops/404813"], ["https://data.delijn.be/stops/102613", "https://data.delijn.be/stops/102618"], ["https://data.delijn.be/stops/304591", "https://data.delijn.be/stops/304611"], ["https://data.delijn.be/stops/305612", "https://data.delijn.be/stops/305619"], ["https://data.delijn.be/stops/404149", "https://data.delijn.be/stops/404182"], ["https://data.delijn.be/stops/302474", "https://data.delijn.be/stops/302503"], ["https://data.delijn.be/stops/201326", "https://data.delijn.be/stops/210048"], ["https://data.delijn.be/stops/109244", "https://data.delijn.be/stops/109257"], ["https://data.delijn.be/stops/300824", "https://data.delijn.be/stops/300826"], ["https://data.delijn.be/stops/304639", "https://data.delijn.be/stops/304640"], ["https://data.delijn.be/stops/201851", "https://data.delijn.be/stops/201875"], ["https://data.delijn.be/stops/502428", "https://data.delijn.be/stops/502432"], ["https://data.delijn.be/stops/503772", "https://data.delijn.be/stops/509735"], ["https://data.delijn.be/stops/208831", "https://data.delijn.be/stops/209226"], ["https://data.delijn.be/stops/206269", "https://data.delijn.be/stops/207999"], ["https://data.delijn.be/stops/407629", "https://data.delijn.be/stops/407656"], ["https://data.delijn.be/stops/400063", "https://data.delijn.be/stops/400139"], ["https://data.delijn.be/stops/206693", "https://data.delijn.be/stops/207956"], ["https://data.delijn.be/stops/204759", "https://data.delijn.be/stops/204765"], ["https://data.delijn.be/stops/407141", "https://data.delijn.be/stops/407144"], ["https://data.delijn.be/stops/407734", "https://data.delijn.be/stops/407735"], ["https://data.delijn.be/stops/504248", "https://data.delijn.be/stops/505928"], ["https://data.delijn.be/stops/405769", "https://data.delijn.be/stops/307367"], ["https://data.delijn.be/stops/200159", "https://data.delijn.be/stops/210132"], ["https://data.delijn.be/stops/505097", "https://data.delijn.be/stops/505099"], ["https://data.delijn.be/stops/507033", "https://data.delijn.be/stops/507617"], ["https://data.delijn.be/stops/201667", "https://data.delijn.be/stops/209262"], ["https://data.delijn.be/stops/102071", "https://data.delijn.be/stops/106534"], ["https://data.delijn.be/stops/503675", "https://data.delijn.be/stops/508675"], ["https://data.delijn.be/stops/206811", "https://data.delijn.be/stops/207996"], ["https://data.delijn.be/stops/200951", "https://data.delijn.be/stops/203392"], ["https://data.delijn.be/stops/408097", "https://data.delijn.be/stops/408098"], ["https://data.delijn.be/stops/401637", "https://data.delijn.be/stops/308207"], ["https://data.delijn.be/stops/305960", "https://data.delijn.be/stops/305963"], ["https://data.delijn.be/stops/107795", "https://data.delijn.be/stops/107880"], ["https://data.delijn.be/stops/503141", "https://data.delijn.be/stops/505408"], ["https://data.delijn.be/stops/105876", "https://data.delijn.be/stops/105878"], ["https://data.delijn.be/stops/400817", "https://data.delijn.be/stops/406836"], ["https://data.delijn.be/stops/404559", "https://data.delijn.be/stops/405434"], ["https://data.delijn.be/stops/400039", "https://data.delijn.be/stops/400040"], ["https://data.delijn.be/stops/308464", "https://data.delijn.be/stops/308465"], ["https://data.delijn.be/stops/505076", "https://data.delijn.be/stops/507473"], ["https://data.delijn.be/stops/304648", "https://data.delijn.be/stops/304657"], ["https://data.delijn.be/stops/301741", "https://data.delijn.be/stops/305890"], ["https://data.delijn.be/stops/404009", "https://data.delijn.be/stops/404011"], ["https://data.delijn.be/stops/207690", "https://data.delijn.be/stops/308565"], ["https://data.delijn.be/stops/201918", "https://data.delijn.be/stops/207965"], ["https://data.delijn.be/stops/407055", "https://data.delijn.be/stops/410014"], ["https://data.delijn.be/stops/210004", "https://data.delijn.be/stops/211004"], ["https://data.delijn.be/stops/101235", "https://data.delijn.be/stops/101600"], ["https://data.delijn.be/stops/502378", "https://data.delijn.be/stops/507407"], ["https://data.delijn.be/stops/204918", "https://data.delijn.be/stops/205911"], ["https://data.delijn.be/stops/501213", "https://data.delijn.be/stops/506220"], ["https://data.delijn.be/stops/307628", "https://data.delijn.be/stops/307631"], ["https://data.delijn.be/stops/401773", "https://data.delijn.be/stops/401871"], ["https://data.delijn.be/stops/108061", "https://data.delijn.be/stops/108361"], ["https://data.delijn.be/stops/200808", "https://data.delijn.be/stops/203075"], ["https://data.delijn.be/stops/305804", "https://data.delijn.be/stops/305841"], ["https://data.delijn.be/stops/401063", "https://data.delijn.be/stops/406332"], ["https://data.delijn.be/stops/301789", "https://data.delijn.be/stops/303715"], ["https://data.delijn.be/stops/206479", "https://data.delijn.be/stops/207478"], ["https://data.delijn.be/stops/502368", "https://data.delijn.be/stops/507529"], ["https://data.delijn.be/stops/206087", "https://data.delijn.be/stops/206723"], ["https://data.delijn.be/stops/107897", "https://data.delijn.be/stops/108956"], ["https://data.delijn.be/stops/109552", "https://data.delijn.be/stops/300027"], ["https://data.delijn.be/stops/408890", "https://data.delijn.be/stops/408902"], ["https://data.delijn.be/stops/503005", "https://data.delijn.be/stops/508005"], ["https://data.delijn.be/stops/307441", "https://data.delijn.be/stops/308590"], ["https://data.delijn.be/stops/503272", "https://data.delijn.be/stops/505130"], ["https://data.delijn.be/stops/508059", "https://data.delijn.be/stops/508063"], ["https://data.delijn.be/stops/305262", "https://data.delijn.be/stops/305272"], ["https://data.delijn.be/stops/300655", "https://data.delijn.be/stops/306744"], ["https://data.delijn.be/stops/405408", "https://data.delijn.be/stops/302833"], ["https://data.delijn.be/stops/301234", "https://data.delijn.be/stops/307033"], ["https://data.delijn.be/stops/502050", "https://data.delijn.be/stops/502057"], ["https://data.delijn.be/stops/504541", "https://data.delijn.be/stops/509560"], ["https://data.delijn.be/stops/402544", "https://data.delijn.be/stops/404064"], ["https://data.delijn.be/stops/202778", "https://data.delijn.be/stops/203779"], ["https://data.delijn.be/stops/300262", "https://data.delijn.be/stops/304934"], ["https://data.delijn.be/stops/205523", "https://data.delijn.be/stops/205726"], ["https://data.delijn.be/stops/400774", "https://data.delijn.be/stops/400873"], ["https://data.delijn.be/stops/103472", "https://data.delijn.be/stops/104966"], ["https://data.delijn.be/stops/303753", "https://data.delijn.be/stops/303791"], ["https://data.delijn.be/stops/202888", "https://data.delijn.be/stops/203888"], ["https://data.delijn.be/stops/302270", "https://data.delijn.be/stops/302271"], ["https://data.delijn.be/stops/202827", "https://data.delijn.be/stops/202836"], ["https://data.delijn.be/stops/505227", "https://data.delijn.be/stops/505508"], ["https://data.delijn.be/stops/501120", "https://data.delijn.be/stops/506125"], ["https://data.delijn.be/stops/408475", "https://data.delijn.be/stops/410069"], ["https://data.delijn.be/stops/108706", "https://data.delijn.be/stops/108852"], ["https://data.delijn.be/stops/206628", "https://data.delijn.be/stops/209572"], ["https://data.delijn.be/stops/404622", "https://data.delijn.be/stops/406732"], ["https://data.delijn.be/stops/106596", "https://data.delijn.be/stops/107795"], ["https://data.delijn.be/stops/501057", "https://data.delijn.be/stops/506057"], ["https://data.delijn.be/stops/106913", "https://data.delijn.be/stops/106914"], ["https://data.delijn.be/stops/401095", "https://data.delijn.be/stops/401100"], ["https://data.delijn.be/stops/207513", "https://data.delijn.be/stops/207517"], ["https://data.delijn.be/stops/501114", "https://data.delijn.be/stops/501640"], ["https://data.delijn.be/stops/405808", "https://data.delijn.be/stops/405809"], ["https://data.delijn.be/stops/210118", "https://data.delijn.be/stops/211116"], ["https://data.delijn.be/stops/403420", "https://data.delijn.be/stops/403423"], ["https://data.delijn.be/stops/505232", "https://data.delijn.be/stops/507232"], ["https://data.delijn.be/stops/304033", "https://data.delijn.be/stops/305437"], ["https://data.delijn.be/stops/300456", "https://data.delijn.be/stops/304976"], ["https://data.delijn.be/stops/207767", "https://data.delijn.be/stops/207773"], ["https://data.delijn.be/stops/503693", "https://data.delijn.be/stops/508690"], ["https://data.delijn.be/stops/303771", "https://data.delijn.be/stops/303789"], ["https://data.delijn.be/stops/503828", "https://data.delijn.be/stops/505256"], ["https://data.delijn.be/stops/407641", "https://data.delijn.be/stops/407763"], ["https://data.delijn.be/stops/200369", "https://data.delijn.be/stops/201066"], ["https://data.delijn.be/stops/504263", "https://data.delijn.be/stops/505301"], ["https://data.delijn.be/stops/503804", "https://data.delijn.be/stops/505543"], ["https://data.delijn.be/stops/405072", "https://data.delijn.be/stops/406548"], ["https://data.delijn.be/stops/301447", "https://data.delijn.be/stops/307798"], ["https://data.delijn.be/stops/508918", "https://data.delijn.be/stops/508928"], ["https://data.delijn.be/stops/206008", "https://data.delijn.be/stops/206268"], ["https://data.delijn.be/stops/303336", "https://data.delijn.be/stops/305116"], ["https://data.delijn.be/stops/305819", "https://data.delijn.be/stops/305871"], ["https://data.delijn.be/stops/203231", "https://data.delijn.be/stops/203232"], ["https://data.delijn.be/stops/402821", "https://data.delijn.be/stops/406569"], ["https://data.delijn.be/stops/103963", "https://data.delijn.be/stops/108996"], ["https://data.delijn.be/stops/305504", "https://data.delijn.be/stops/305505"], ["https://data.delijn.be/stops/305540", "https://data.delijn.be/stops/305560"], ["https://data.delijn.be/stops/102183", "https://data.delijn.be/stops/107129"], ["https://data.delijn.be/stops/204376", "https://data.delijn.be/stops/204765"], ["https://data.delijn.be/stops/202607", "https://data.delijn.be/stops/215003"], ["https://data.delijn.be/stops/300524", "https://data.delijn.be/stops/305552"], ["https://data.delijn.be/stops/502580", "https://data.delijn.be/stops/502725"], ["https://data.delijn.be/stops/205998", "https://data.delijn.be/stops/209377"], ["https://data.delijn.be/stops/503754", "https://data.delijn.be/stops/509750"], ["https://data.delijn.be/stops/201666", "https://data.delijn.be/stops/201668"], ["https://data.delijn.be/stops/405967", "https://data.delijn.be/stops/405983"], ["https://data.delijn.be/stops/208354", "https://data.delijn.be/stops/208355"], ["https://data.delijn.be/stops/400725", "https://data.delijn.be/stops/400782"], ["https://data.delijn.be/stops/504158", "https://data.delijn.be/stops/504193"], ["https://data.delijn.be/stops/200668", "https://data.delijn.be/stops/200670"], ["https://data.delijn.be/stops/509617", "https://data.delijn.be/stops/509626"], ["https://data.delijn.be/stops/105063", "https://data.delijn.be/stops/105804"], ["https://data.delijn.be/stops/106682", "https://data.delijn.be/stops/106685"], ["https://data.delijn.be/stops/200336", "https://data.delijn.be/stops/201569"], ["https://data.delijn.be/stops/304706", "https://data.delijn.be/stops/304707"], ["https://data.delijn.be/stops/101125", "https://data.delijn.be/stops/101565"], ["https://data.delijn.be/stops/202208", "https://data.delijn.be/stops/203209"], ["https://data.delijn.be/stops/508454", "https://data.delijn.be/stops/508986"], ["https://data.delijn.be/stops/103139", "https://data.delijn.be/stops/103140"], ["https://data.delijn.be/stops/307640", "https://data.delijn.be/stops/307685"], ["https://data.delijn.be/stops/501388", "https://data.delijn.be/stops/501502"], ["https://data.delijn.be/stops/505223", "https://data.delijn.be/stops/505583"], ["https://data.delijn.be/stops/105794", "https://data.delijn.be/stops/105795"], ["https://data.delijn.be/stops/206402", "https://data.delijn.be/stops/207245"], ["https://data.delijn.be/stops/302491", "https://data.delijn.be/stops/302499"], ["https://data.delijn.be/stops/409106", "https://data.delijn.be/stops/409127"], ["https://data.delijn.be/stops/200506", "https://data.delijn.be/stops/203359"], ["https://data.delijn.be/stops/503045", "https://data.delijn.be/stops/508043"], ["https://data.delijn.be/stops/202971", "https://data.delijn.be/stops/202972"], ["https://data.delijn.be/stops/504485", "https://data.delijn.be/stops/504489"], ["https://data.delijn.be/stops/206814", "https://data.delijn.be/stops/207210"], ["https://data.delijn.be/stops/106777", "https://data.delijn.be/stops/106778"], ["https://data.delijn.be/stops/202085", "https://data.delijn.be/stops/203085"], ["https://data.delijn.be/stops/403917", "https://data.delijn.be/stops/404089"], ["https://data.delijn.be/stops/103641", "https://data.delijn.be/stops/103642"], ["https://data.delijn.be/stops/508689", "https://data.delijn.be/stops/508866"], ["https://data.delijn.be/stops/401016", "https://data.delijn.be/stops/401125"], ["https://data.delijn.be/stops/403409", "https://data.delijn.be/stops/405126"], ["https://data.delijn.be/stops/101078", "https://data.delijn.be/stops/101081"], ["https://data.delijn.be/stops/401423", "https://data.delijn.be/stops/401439"], ["https://data.delijn.be/stops/300435", "https://data.delijn.be/stops/300439"], ["https://data.delijn.be/stops/501050", "https://data.delijn.be/stops/506050"], ["https://data.delijn.be/stops/305797", "https://data.delijn.be/stops/305799"], ["https://data.delijn.be/stops/302087", "https://data.delijn.be/stops/306378"], ["https://data.delijn.be/stops/301985", "https://data.delijn.be/stops/301986"], ["https://data.delijn.be/stops/101471", "https://data.delijn.be/stops/109117"], ["https://data.delijn.be/stops/108638", "https://data.delijn.be/stops/108642"], ["https://data.delijn.be/stops/202178", "https://data.delijn.be/stops/203177"], ["https://data.delijn.be/stops/500208", "https://data.delijn.be/stops/500950"], ["https://data.delijn.be/stops/202696", "https://data.delijn.be/stops/203696"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/106453"], ["https://data.delijn.be/stops/407376", "https://data.delijn.be/stops/407598"], ["https://data.delijn.be/stops/503308", "https://data.delijn.be/stops/509926"], ["https://data.delijn.be/stops/504793", "https://data.delijn.be/stops/509774"], ["https://data.delijn.be/stops/105790", "https://data.delijn.be/stops/105792"], ["https://data.delijn.be/stops/304038", "https://data.delijn.be/stops/308644"], ["https://data.delijn.be/stops/406829", "https://data.delijn.be/stops/410070"], ["https://data.delijn.be/stops/300363", "https://data.delijn.be/stops/300372"], ["https://data.delijn.be/stops/504084", "https://data.delijn.be/stops/505803"], ["https://data.delijn.be/stops/401582", "https://data.delijn.be/stops/405501"], ["https://data.delijn.be/stops/301286", "https://data.delijn.be/stops/304691"], ["https://data.delijn.be/stops/109247", "https://data.delijn.be/stops/109248"], ["https://data.delijn.be/stops/201119", "https://data.delijn.be/stops/201120"], ["https://data.delijn.be/stops/407005", "https://data.delijn.be/stops/408441"], ["https://data.delijn.be/stops/202308", "https://data.delijn.be/stops/203307"], ["https://data.delijn.be/stops/206313", "https://data.delijn.be/stops/207314"], ["https://data.delijn.be/stops/405155", "https://data.delijn.be/stops/408367"], ["https://data.delijn.be/stops/301779", "https://data.delijn.be/stops/301780"], ["https://data.delijn.be/stops/204039", "https://data.delijn.be/stops/205039"], ["https://data.delijn.be/stops/301662", "https://data.delijn.be/stops/302136"], ["https://data.delijn.be/stops/302045", "https://data.delijn.be/stops/307285"], ["https://data.delijn.be/stops/404968", "https://data.delijn.be/stops/406890"], ["https://data.delijn.be/stops/103665", "https://data.delijn.be/stops/106359"], ["https://data.delijn.be/stops/202174", "https://data.delijn.be/stops/203172"], ["https://data.delijn.be/stops/400299", "https://data.delijn.be/stops/400365"], ["https://data.delijn.be/stops/503336", "https://data.delijn.be/stops/509807"], ["https://data.delijn.be/stops/101005", "https://data.delijn.be/stops/101008"], ["https://data.delijn.be/stops/206888", "https://data.delijn.be/stops/206916"], ["https://data.delijn.be/stops/205225", "https://data.delijn.be/stops/205226"], ["https://data.delijn.be/stops/505602", "https://data.delijn.be/stops/505603"], ["https://data.delijn.be/stops/502230", "https://data.delijn.be/stops/507230"], ["https://data.delijn.be/stops/300744", "https://data.delijn.be/stops/303223"], ["https://data.delijn.be/stops/507412", "https://data.delijn.be/stops/507668"], ["https://data.delijn.be/stops/504485", "https://data.delijn.be/stops/509248"], ["https://data.delijn.be/stops/302163", "https://data.delijn.be/stops/307140"], ["https://data.delijn.be/stops/308161", "https://data.delijn.be/stops/308181"], ["https://data.delijn.be/stops/403080", "https://data.delijn.be/stops/409574"], ["https://data.delijn.be/stops/104140", "https://data.delijn.be/stops/105750"], ["https://data.delijn.be/stops/300360", "https://data.delijn.be/stops/307003"], ["https://data.delijn.be/stops/403258", "https://data.delijn.be/stops/403260"], ["https://data.delijn.be/stops/106895", "https://data.delijn.be/stops/107220"], ["https://data.delijn.be/stops/200885", "https://data.delijn.be/stops/502596"], ["https://data.delijn.be/stops/509724", "https://data.delijn.be/stops/509725"], ["https://data.delijn.be/stops/109596", "https://data.delijn.be/stops/109597"], ["https://data.delijn.be/stops/203397", "https://data.delijn.be/stops/203611"], ["https://data.delijn.be/stops/209161", "https://data.delijn.be/stops/209162"], ["https://data.delijn.be/stops/500946", "https://data.delijn.be/stops/504168"], ["https://data.delijn.be/stops/401870", "https://data.delijn.be/stops/406092"], ["https://data.delijn.be/stops/206620", "https://data.delijn.be/stops/207621"], ["https://data.delijn.be/stops/301339", "https://data.delijn.be/stops/306119"], ["https://data.delijn.be/stops/102643", "https://data.delijn.be/stops/205649"], ["https://data.delijn.be/stops/200150", "https://data.delijn.be/stops/201151"], ["https://data.delijn.be/stops/402526", "https://data.delijn.be/stops/402536"], ["https://data.delijn.be/stops/303626", "https://data.delijn.be/stops/303627"], ["https://data.delijn.be/stops/306126", "https://data.delijn.be/stops/306127"], ["https://data.delijn.be/stops/206038", "https://data.delijn.be/stops/207046"], ["https://data.delijn.be/stops/202843", "https://data.delijn.be/stops/203839"], ["https://data.delijn.be/stops/401346", "https://data.delijn.be/stops/401349"], ["https://data.delijn.be/stops/502556", "https://data.delijn.be/stops/507548"], ["https://data.delijn.be/stops/201258", "https://data.delijn.be/stops/203611"], ["https://data.delijn.be/stops/505017", "https://data.delijn.be/stops/505627"], ["https://data.delijn.be/stops/104007", "https://data.delijn.be/stops/104275"], ["https://data.delijn.be/stops/202682", "https://data.delijn.be/stops/202710"], ["https://data.delijn.be/stops/405314", "https://data.delijn.be/stops/302829"], ["https://data.delijn.be/stops/303364", "https://data.delijn.be/stops/303389"], ["https://data.delijn.be/stops/504170", "https://data.delijn.be/stops/509164"], ["https://data.delijn.be/stops/307873", "https://data.delijn.be/stops/308122"], ["https://data.delijn.be/stops/407304", "https://data.delijn.be/stops/408472"], ["https://data.delijn.be/stops/501175", "https://data.delijn.be/stops/506175"], ["https://data.delijn.be/stops/508674", "https://data.delijn.be/stops/509842"], ["https://data.delijn.be/stops/401311", "https://data.delijn.be/stops/401314"], ["https://data.delijn.be/stops/104666", "https://data.delijn.be/stops/305987"], ["https://data.delijn.be/stops/101502", "https://data.delijn.be/stops/101977"], ["https://data.delijn.be/stops/208347", "https://data.delijn.be/stops/209347"], ["https://data.delijn.be/stops/200856", "https://data.delijn.be/stops/200857"], ["https://data.delijn.be/stops/104588", "https://data.delijn.be/stops/104589"], ["https://data.delijn.be/stops/504403", "https://data.delijn.be/stops/504414"], ["https://data.delijn.be/stops/302457", "https://data.delijn.be/stops/307514"], ["https://data.delijn.be/stops/501063", "https://data.delijn.be/stops/501064"], ["https://data.delijn.be/stops/300037", "https://data.delijn.be/stops/306865"], ["https://data.delijn.be/stops/200861", "https://data.delijn.be/stops/502065"], ["https://data.delijn.be/stops/101977", "https://data.delijn.be/stops/108274"], ["https://data.delijn.be/stops/105288", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/503361", "https://data.delijn.be/stops/503442"], ["https://data.delijn.be/stops/102292", "https://data.delijn.be/stops/108296"], ["https://data.delijn.be/stops/400583", "https://data.delijn.be/stops/400591"], ["https://data.delijn.be/stops/403051", "https://data.delijn.be/stops/403429"], ["https://data.delijn.be/stops/406547", "https://data.delijn.be/stops/408342"], ["https://data.delijn.be/stops/205303", "https://data.delijn.be/stops/205705"], ["https://data.delijn.be/stops/202929", "https://data.delijn.be/stops/203929"], ["https://data.delijn.be/stops/503035", "https://data.delijn.be/stops/508949"], ["https://data.delijn.be/stops/203809", "https://data.delijn.be/stops/210108"], ["https://data.delijn.be/stops/104133", "https://data.delijn.be/stops/108033"], ["https://data.delijn.be/stops/106738", "https://data.delijn.be/stops/107196"], ["https://data.delijn.be/stops/504111", "https://data.delijn.be/stops/509110"], ["https://data.delijn.be/stops/208813", "https://data.delijn.be/stops/208954"], ["https://data.delijn.be/stops/107526", "https://data.delijn.be/stops/107539"], ["https://data.delijn.be/stops/108067", "https://data.delijn.be/stops/108136"], ["https://data.delijn.be/stops/204393", "https://data.delijn.be/stops/205392"], ["https://data.delijn.be/stops/403861", "https://data.delijn.be/stops/403862"], ["https://data.delijn.be/stops/504602", "https://data.delijn.be/stops/509291"], ["https://data.delijn.be/stops/218011", "https://data.delijn.be/stops/219011"], ["https://data.delijn.be/stops/302353", "https://data.delijn.be/stops/306183"], ["https://data.delijn.be/stops/200451", "https://data.delijn.be/stops/202536"], ["https://data.delijn.be/stops/200723", "https://data.delijn.be/stops/203329"], ["https://data.delijn.be/stops/405443", "https://data.delijn.be/stops/405445"], ["https://data.delijn.be/stops/406151", "https://data.delijn.be/stops/406225"], ["https://data.delijn.be/stops/504089", "https://data.delijn.be/stops/505915"], ["https://data.delijn.be/stops/105896", "https://data.delijn.be/stops/105903"], ["https://data.delijn.be/stops/304377", "https://data.delijn.be/stops/304378"], ["https://data.delijn.be/stops/204980", "https://data.delijn.be/stops/205980"], ["https://data.delijn.be/stops/209491", "https://data.delijn.be/stops/211087"], ["https://data.delijn.be/stops/102485", "https://data.delijn.be/stops/103170"], ["https://data.delijn.be/stops/300837", "https://data.delijn.be/stops/301812"], ["https://data.delijn.be/stops/501259", "https://data.delijn.be/stops/501684"], ["https://data.delijn.be/stops/200928", "https://data.delijn.be/stops/200948"], ["https://data.delijn.be/stops/500138", "https://data.delijn.be/stops/590333"], ["https://data.delijn.be/stops/204666", "https://data.delijn.be/stops/205126"], ["https://data.delijn.be/stops/503240", "https://data.delijn.be/stops/508231"], ["https://data.delijn.be/stops/108843", "https://data.delijn.be/stops/108844"], ["https://data.delijn.be/stops/300359", "https://data.delijn.be/stops/304699"], ["https://data.delijn.be/stops/207381", "https://data.delijn.be/stops/207382"], ["https://data.delijn.be/stops/409062", "https://data.delijn.be/stops/409063"], ["https://data.delijn.be/stops/208005", "https://data.delijn.be/stops/209005"], ["https://data.delijn.be/stops/300155", "https://data.delijn.be/stops/300165"], ["https://data.delijn.be/stops/208402", "https://data.delijn.be/stops/208405"], ["https://data.delijn.be/stops/208127", "https://data.delijn.be/stops/209127"], ["https://data.delijn.be/stops/307373", "https://data.delijn.be/stops/307377"], ["https://data.delijn.be/stops/203121", "https://data.delijn.be/stops/203636"], ["https://data.delijn.be/stops/101050", "https://data.delijn.be/stops/103047"], ["https://data.delijn.be/stops/301304", "https://data.delijn.be/stops/301305"], ["https://data.delijn.be/stops/217009", "https://data.delijn.be/stops/217010"], ["https://data.delijn.be/stops/403900", "https://data.delijn.be/stops/403901"], ["https://data.delijn.be/stops/103082", "https://data.delijn.be/stops/104669"], ["https://data.delijn.be/stops/108474", "https://data.delijn.be/stops/108610"], ["https://data.delijn.be/stops/206046", "https://data.delijn.be/stops/206387"], ["https://data.delijn.be/stops/505051", "https://data.delijn.be/stops/507554"], ["https://data.delijn.be/stops/301539", "https://data.delijn.be/stops/301541"], ["https://data.delijn.be/stops/503898", "https://data.delijn.be/stops/508898"], ["https://data.delijn.be/stops/403041", "https://data.delijn.be/stops/403497"], ["https://data.delijn.be/stops/303512", "https://data.delijn.be/stops/307892"], ["https://data.delijn.be/stops/101581", "https://data.delijn.be/stops/101583"], ["https://data.delijn.be/stops/402870", "https://data.delijn.be/stops/404433"], ["https://data.delijn.be/stops/401882", "https://data.delijn.be/stops/410306"], ["https://data.delijn.be/stops/202652", "https://data.delijn.be/stops/203651"], ["https://data.delijn.be/stops/301402", "https://data.delijn.be/stops/304699"], ["https://data.delijn.be/stops/202954", "https://data.delijn.be/stops/203954"], ["https://data.delijn.be/stops/106265", "https://data.delijn.be/stops/106342"], ["https://data.delijn.be/stops/200731", "https://data.delijn.be/stops/202613"], ["https://data.delijn.be/stops/507361", "https://data.delijn.be/stops/507374"], ["https://data.delijn.be/stops/503808", "https://data.delijn.be/stops/505538"], ["https://data.delijn.be/stops/403703", "https://data.delijn.be/stops/403705"], ["https://data.delijn.be/stops/105231", "https://data.delijn.be/stops/109926"], ["https://data.delijn.be/stops/200267", "https://data.delijn.be/stops/200444"], ["https://data.delijn.be/stops/502231", "https://data.delijn.be/stops/505754"], ["https://data.delijn.be/stops/103963", "https://data.delijn.be/stops/408147"], ["https://data.delijn.be/stops/300006", "https://data.delijn.be/stops/306202"], ["https://data.delijn.be/stops/106360", "https://data.delijn.be/stops/109606"], ["https://data.delijn.be/stops/202940", "https://data.delijn.be/stops/211053"], ["https://data.delijn.be/stops/200278", "https://data.delijn.be/stops/200347"], ["https://data.delijn.be/stops/402409", "https://data.delijn.be/stops/404996"], ["https://data.delijn.be/stops/407732", "https://data.delijn.be/stops/409782"], ["https://data.delijn.be/stops/205993", "https://data.delijn.be/stops/208809"], ["https://data.delijn.be/stops/202852", "https://data.delijn.be/stops/203851"], ["https://data.delijn.be/stops/108356", "https://data.delijn.be/stops/109333"], ["https://data.delijn.be/stops/204595", "https://data.delijn.be/stops/205093"], ["https://data.delijn.be/stops/200584", "https://data.delijn.be/stops/201583"], ["https://data.delijn.be/stops/503839", "https://data.delijn.be/stops/505159"], ["https://data.delijn.be/stops/201899", "https://data.delijn.be/stops/202362"], ["https://data.delijn.be/stops/107026", "https://data.delijn.be/stops/107027"], ["https://data.delijn.be/stops/401034", "https://data.delijn.be/stops/401036"], ["https://data.delijn.be/stops/400304", "https://data.delijn.be/stops/400424"], ["https://data.delijn.be/stops/505045", "https://data.delijn.be/stops/505221"], ["https://data.delijn.be/stops/406933", "https://data.delijn.be/stops/406948"], ["https://data.delijn.be/stops/105106", "https://data.delijn.be/stops/106970"], ["https://data.delijn.be/stops/200577", "https://data.delijn.be/stops/203193"], ["https://data.delijn.be/stops/401460", "https://data.delijn.be/stops/410207"], ["https://data.delijn.be/stops/107427", "https://data.delijn.be/stops/107502"], ["https://data.delijn.be/stops/504754", "https://data.delijn.be/stops/508265"], ["https://data.delijn.be/stops/300733", "https://data.delijn.be/stops/300738"], ["https://data.delijn.be/stops/107258", "https://data.delijn.be/stops/107262"], ["https://data.delijn.be/stops/203782", "https://data.delijn.be/stops/203783"], ["https://data.delijn.be/stops/106115", "https://data.delijn.be/stops/108803"], ["https://data.delijn.be/stops/305333", "https://data.delijn.be/stops/307298"], ["https://data.delijn.be/stops/305514", "https://data.delijn.be/stops/305519"], ["https://data.delijn.be/stops/303477", "https://data.delijn.be/stops/303497"], ["https://data.delijn.be/stops/208575", "https://data.delijn.be/stops/306269"], ["https://data.delijn.be/stops/406574", "https://data.delijn.be/stops/406586"], ["https://data.delijn.be/stops/107080", "https://data.delijn.be/stops/108173"], ["https://data.delijn.be/stops/403218", "https://data.delijn.be/stops/403376"], ["https://data.delijn.be/stops/505692", "https://data.delijn.be/stops/507542"], ["https://data.delijn.be/stops/103273", "https://data.delijn.be/stops/108705"], ["https://data.delijn.be/stops/201855", "https://data.delijn.be/stops/203021"], ["https://data.delijn.be/stops/501519", "https://data.delijn.be/stops/510011"], ["https://data.delijn.be/stops/200318", "https://data.delijn.be/stops/200585"], ["https://data.delijn.be/stops/502412", "https://data.delijn.be/stops/507412"], ["https://data.delijn.be/stops/504502", "https://data.delijn.be/stops/509744"], ["https://data.delijn.be/stops/404442", "https://data.delijn.be/stops/404548"], ["https://data.delijn.be/stops/206611", "https://data.delijn.be/stops/206706"], ["https://data.delijn.be/stops/301835", "https://data.delijn.be/stops/305820"], ["https://data.delijn.be/stops/407067", "https://data.delijn.be/stops/407068"], ["https://data.delijn.be/stops/305259", "https://data.delijn.be/stops/305277"], ["https://data.delijn.be/stops/504470", "https://data.delijn.be/stops/509109"], ["https://data.delijn.be/stops/202290", "https://data.delijn.be/stops/203294"], ["https://data.delijn.be/stops/403022", "https://data.delijn.be/stops/405768"], ["https://data.delijn.be/stops/106429", "https://data.delijn.be/stops/106431"], ["https://data.delijn.be/stops/503042", "https://data.delijn.be/stops/508042"], ["https://data.delijn.be/stops/503286", "https://data.delijn.be/stops/508286"], ["https://data.delijn.be/stops/303774", "https://data.delijn.be/stops/307810"], ["https://data.delijn.be/stops/409286", "https://data.delijn.be/stops/409287"], ["https://data.delijn.be/stops/408454", "https://data.delijn.be/stops/408490"], ["https://data.delijn.be/stops/201281", "https://data.delijn.be/stops/201295"], ["https://data.delijn.be/stops/504317", "https://data.delijn.be/stops/509292"], ["https://data.delijn.be/stops/204556", "https://data.delijn.be/stops/211086"], ["https://data.delijn.be/stops/402525", "https://data.delijn.be/stops/402649"], ["https://data.delijn.be/stops/101274", "https://data.delijn.be/stops/103760"], ["https://data.delijn.be/stops/408636", "https://data.delijn.be/stops/408753"], ["https://data.delijn.be/stops/300016", "https://data.delijn.be/stops/300018"], ["https://data.delijn.be/stops/306681", "https://data.delijn.be/stops/306682"], ["https://data.delijn.be/stops/508705", "https://data.delijn.be/stops/508731"], ["https://data.delijn.be/stops/500136", "https://data.delijn.be/stops/502075"], ["https://data.delijn.be/stops/301865", "https://data.delijn.be/stops/305465"], ["https://data.delijn.be/stops/308496", "https://data.delijn.be/stops/308497"], ["https://data.delijn.be/stops/107452", "https://data.delijn.be/stops/107455"], ["https://data.delijn.be/stops/208025", "https://data.delijn.be/stops/209029"], ["https://data.delijn.be/stops/301624", "https://data.delijn.be/stops/301625"], ["https://data.delijn.be/stops/104412", "https://data.delijn.be/stops/205335"], ["https://data.delijn.be/stops/400748", "https://data.delijn.be/stops/407659"], ["https://data.delijn.be/stops/304793", "https://data.delijn.be/stops/304799"], ["https://data.delijn.be/stops/407103", "https://data.delijn.be/stops/407104"], ["https://data.delijn.be/stops/300074", "https://data.delijn.be/stops/304670"], ["https://data.delijn.be/stops/101178", "https://data.delijn.be/stops/106782"], ["https://data.delijn.be/stops/303810", "https://data.delijn.be/stops/303811"], ["https://data.delijn.be/stops/505764", "https://data.delijn.be/stops/507002"], ["https://data.delijn.be/stops/305553", "https://data.delijn.be/stops/305878"], ["https://data.delijn.be/stops/301970", "https://data.delijn.be/stops/304537"], ["https://data.delijn.be/stops/108377", "https://data.delijn.be/stops/108443"], ["https://data.delijn.be/stops/404532", "https://data.delijn.be/stops/404567"], ["https://data.delijn.be/stops/102694", "https://data.delijn.be/stops/103743"], ["https://data.delijn.be/stops/101721", "https://data.delijn.be/stops/109567"], ["https://data.delijn.be/stops/505798", "https://data.delijn.be/stops/508934"], ["https://data.delijn.be/stops/401794", "https://data.delijn.be/stops/401853"], ["https://data.delijn.be/stops/505515", "https://data.delijn.be/stops/505607"], ["https://data.delijn.be/stops/206710", "https://data.delijn.be/stops/207601"], ["https://data.delijn.be/stops/409102", "https://data.delijn.be/stops/409140"], ["https://data.delijn.be/stops/402532", "https://data.delijn.be/stops/402533"], ["https://data.delijn.be/stops/500127", "https://data.delijn.be/stops/502478"], ["https://data.delijn.be/stops/505694", "https://data.delijn.be/stops/505701"], ["https://data.delijn.be/stops/301951", "https://data.delijn.be/stops/303283"], ["https://data.delijn.be/stops/203731", "https://data.delijn.be/stops/203844"], ["https://data.delijn.be/stops/206232", "https://data.delijn.be/stops/206864"], ["https://data.delijn.be/stops/302808", "https://data.delijn.be/stops/305531"], ["https://data.delijn.be/stops/403872", "https://data.delijn.be/stops/410164"], ["https://data.delijn.be/stops/200504", "https://data.delijn.be/stops/200505"], ["https://data.delijn.be/stops/208134", "https://data.delijn.be/stops/208137"], ["https://data.delijn.be/stops/200928", "https://data.delijn.be/stops/203137"], ["https://data.delijn.be/stops/201451", "https://data.delijn.be/stops/203406"], ["https://data.delijn.be/stops/101729", "https://data.delijn.be/stops/106047"], ["https://data.delijn.be/stops/107581", "https://data.delijn.be/stops/107721"], ["https://data.delijn.be/stops/101800", "https://data.delijn.be/stops/101940"], ["https://data.delijn.be/stops/206519", "https://data.delijn.be/stops/216007"], ["https://data.delijn.be/stops/302348", "https://data.delijn.be/stops/302364"], ["https://data.delijn.be/stops/102918", "https://data.delijn.be/stops/102921"], ["https://data.delijn.be/stops/501038", "https://data.delijn.be/stops/506031"], ["https://data.delijn.be/stops/204761", "https://data.delijn.be/stops/205724"], ["https://data.delijn.be/stops/301967", "https://data.delijn.be/stops/303092"], ["https://data.delijn.be/stops/202447", "https://data.delijn.be/stops/203446"], ["https://data.delijn.be/stops/200631", "https://data.delijn.be/stops/202909"], ["https://data.delijn.be/stops/407680", "https://data.delijn.be/stops/407681"], ["https://data.delijn.be/stops/300473", "https://data.delijn.be/stops/302670"], ["https://data.delijn.be/stops/406317", "https://data.delijn.be/stops/406410"], ["https://data.delijn.be/stops/401074", "https://data.delijn.be/stops/408092"], ["https://data.delijn.be/stops/503047", "https://data.delijn.be/stops/503624"], ["https://data.delijn.be/stops/503292", "https://data.delijn.be/stops/503295"], ["https://data.delijn.be/stops/200694", "https://data.delijn.be/stops/203789"], ["https://data.delijn.be/stops/209343", "https://data.delijn.be/stops/219030"], ["https://data.delijn.be/stops/504884", "https://data.delijn.be/stops/505091"], ["https://data.delijn.be/stops/103019", "https://data.delijn.be/stops/103021"], ["https://data.delijn.be/stops/410117", "https://data.delijn.be/stops/410118"], ["https://data.delijn.be/stops/200318", "https://data.delijn.be/stops/200996"], ["https://data.delijn.be/stops/400106", "https://data.delijn.be/stops/400107"], ["https://data.delijn.be/stops/506105", "https://data.delijn.be/stops/506106"], ["https://data.delijn.be/stops/501133", "https://data.delijn.be/stops/506140"], ["https://data.delijn.be/stops/504299", "https://data.delijn.be/stops/504317"], ["https://data.delijn.be/stops/200296", "https://data.delijn.be/stops/211004"], ["https://data.delijn.be/stops/408303", "https://data.delijn.be/stops/408938"], ["https://data.delijn.be/stops/104080", "https://data.delijn.be/stops/104090"], ["https://data.delijn.be/stops/106098", "https://data.delijn.be/stops/106102"], ["https://data.delijn.be/stops/206382", "https://data.delijn.be/stops/207382"], ["https://data.delijn.be/stops/301882", "https://data.delijn.be/stops/305911"], ["https://data.delijn.be/stops/304616", "https://data.delijn.be/stops/304652"], ["https://data.delijn.be/stops/109399", "https://data.delijn.be/stops/109400"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/203621"], ["https://data.delijn.be/stops/301329", "https://data.delijn.be/stops/305920"], ["https://data.delijn.be/stops/500555", "https://data.delijn.be/stops/505844"], ["https://data.delijn.be/stops/300416", "https://data.delijn.be/stops/300426"], ["https://data.delijn.be/stops/204688", "https://data.delijn.be/stops/205689"], ["https://data.delijn.be/stops/205020", "https://data.delijn.be/stops/205413"], ["https://data.delijn.be/stops/400654", "https://data.delijn.be/stops/401246"], ["https://data.delijn.be/stops/409084", "https://data.delijn.be/stops/409086"], ["https://data.delijn.be/stops/404318", "https://data.delijn.be/stops/404319"], ["https://data.delijn.be/stops/102826", "https://data.delijn.be/stops/106682"], ["https://data.delijn.be/stops/204459", "https://data.delijn.be/stops/204460"], ["https://data.delijn.be/stops/406081", "https://data.delijn.be/stops/406087"], ["https://data.delijn.be/stops/107607", "https://data.delijn.be/stops/406796"], ["https://data.delijn.be/stops/200079", "https://data.delijn.be/stops/203895"], ["https://data.delijn.be/stops/101770", "https://data.delijn.be/stops/104300"], ["https://data.delijn.be/stops/105563", "https://data.delijn.be/stops/106289"], ["https://data.delijn.be/stops/303423", "https://data.delijn.be/stops/303430"], ["https://data.delijn.be/stops/207330", "https://data.delijn.be/stops/308845"], ["https://data.delijn.be/stops/403765", "https://data.delijn.be/stops/403793"], ["https://data.delijn.be/stops/105589", "https://data.delijn.be/stops/105592"], ["https://data.delijn.be/stops/407713", "https://data.delijn.be/stops/407714"], ["https://data.delijn.be/stops/206168", "https://data.delijn.be/stops/207732"], ["https://data.delijn.be/stops/402879", "https://data.delijn.be/stops/306020"], ["https://data.delijn.be/stops/206142", "https://data.delijn.be/stops/207142"], ["https://data.delijn.be/stops/408718", "https://data.delijn.be/stops/408719"], ["https://data.delijn.be/stops/404691", "https://data.delijn.be/stops/407315"], ["https://data.delijn.be/stops/300692", "https://data.delijn.be/stops/308132"], ["https://data.delijn.be/stops/301713", "https://data.delijn.be/stops/305235"], ["https://data.delijn.be/stops/502576", "https://data.delijn.be/stops/507576"], ["https://data.delijn.be/stops/401006", "https://data.delijn.be/stops/401009"], ["https://data.delijn.be/stops/108327", "https://data.delijn.be/stops/109305"], ["https://data.delijn.be/stops/104117", "https://data.delijn.be/stops/104122"], ["https://data.delijn.be/stops/402690", "https://data.delijn.be/stops/402865"], ["https://data.delijn.be/stops/501022", "https://data.delijn.be/stops/506471"], ["https://data.delijn.be/stops/504881", "https://data.delijn.be/stops/505705"], ["https://data.delijn.be/stops/206327", "https://data.delijn.be/stops/207732"], ["https://data.delijn.be/stops/400450", "https://data.delijn.be/stops/400478"], ["https://data.delijn.be/stops/408596", "https://data.delijn.be/stops/408744"], ["https://data.delijn.be/stops/307834", "https://data.delijn.be/stops/308279"], ["https://data.delijn.be/stops/400348", "https://data.delijn.be/stops/400350"], ["https://data.delijn.be/stops/406090", "https://data.delijn.be/stops/409406"], ["https://data.delijn.be/stops/503485", "https://data.delijn.be/stops/503486"], ["https://data.delijn.be/stops/206349", "https://data.delijn.be/stops/206350"], ["https://data.delijn.be/stops/203962", "https://data.delijn.be/stops/206554"], ["https://data.delijn.be/stops/400953", "https://data.delijn.be/stops/400955"], ["https://data.delijn.be/stops/204174", "https://data.delijn.be/stops/205388"], ["https://data.delijn.be/stops/402871", "https://data.delijn.be/stops/402872"], ["https://data.delijn.be/stops/202487", "https://data.delijn.be/stops/203488"], ["https://data.delijn.be/stops/304598", "https://data.delijn.be/stops/304651"], ["https://data.delijn.be/stops/304084", "https://data.delijn.be/stops/304085"], ["https://data.delijn.be/stops/403192", "https://data.delijn.be/stops/407463"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/501409"], ["https://data.delijn.be/stops/401804", "https://data.delijn.be/stops/401864"], ["https://data.delijn.be/stops/203151", "https://data.delijn.be/stops/203169"], ["https://data.delijn.be/stops/505310", "https://data.delijn.be/stops/507343"], ["https://data.delijn.be/stops/406211", "https://data.delijn.be/stops/406278"], ["https://data.delijn.be/stops/303632", "https://data.delijn.be/stops/306647"], ["https://data.delijn.be/stops/209054", "https://data.delijn.be/stops/209657"], ["https://data.delijn.be/stops/503504", "https://data.delijn.be/stops/508508"], ["https://data.delijn.be/stops/200411", "https://data.delijn.be/stops/200505"], ["https://data.delijn.be/stops/201609", "https://data.delijn.be/stops/202310"], ["https://data.delijn.be/stops/106014", "https://data.delijn.be/stops/107463"], ["https://data.delijn.be/stops/200274", "https://data.delijn.be/stops/201382"], ["https://data.delijn.be/stops/300029", "https://data.delijn.be/stops/303943"], ["https://data.delijn.be/stops/402071", "https://data.delijn.be/stops/405554"], ["https://data.delijn.be/stops/300495", "https://data.delijn.be/stops/307084"], ["https://data.delijn.be/stops/208528", "https://data.delijn.be/stops/209534"], ["https://data.delijn.be/stops/501080", "https://data.delijn.be/stops/506080"], ["https://data.delijn.be/stops/304467", "https://data.delijn.be/stops/304555"], ["https://data.delijn.be/stops/107513", "https://data.delijn.be/stops/107514"], ["https://data.delijn.be/stops/503558", "https://data.delijn.be/stops/503584"], ["https://data.delijn.be/stops/404008", "https://data.delijn.be/stops/404011"], ["https://data.delijn.be/stops/402713", "https://data.delijn.be/stops/410056"], ["https://data.delijn.be/stops/109890", "https://data.delijn.be/stops/109936"], ["https://data.delijn.be/stops/207374", "https://data.delijn.be/stops/207689"], ["https://data.delijn.be/stops/105926", "https://data.delijn.be/stops/109734"], ["https://data.delijn.be/stops/406158", "https://data.delijn.be/stops/406423"], ["https://data.delijn.be/stops/502228", "https://data.delijn.be/stops/507228"], ["https://data.delijn.be/stops/200912", "https://data.delijn.be/stops/200920"], ["https://data.delijn.be/stops/506075", "https://data.delijn.be/stops/506506"], ["https://data.delijn.be/stops/505333", "https://data.delijn.be/stops/505650"], ["https://data.delijn.be/stops/508049", "https://data.delijn.be/stops/508052"], ["https://data.delijn.be/stops/403920", "https://data.delijn.be/stops/403923"], ["https://data.delijn.be/stops/106746", "https://data.delijn.be/stops/106747"], ["https://data.delijn.be/stops/502089", "https://data.delijn.be/stops/507134"], ["https://data.delijn.be/stops/303249", "https://data.delijn.be/stops/307686"], ["https://data.delijn.be/stops/203968", "https://data.delijn.be/stops/204092"], ["https://data.delijn.be/stops/201780", "https://data.delijn.be/stops/203894"], ["https://data.delijn.be/stops/101642", "https://data.delijn.be/stops/106195"], ["https://data.delijn.be/stops/407944", "https://data.delijn.be/stops/407982"], ["https://data.delijn.be/stops/202731", "https://data.delijn.be/stops/203731"], ["https://data.delijn.be/stops/302704", "https://data.delijn.be/stops/302718"], ["https://data.delijn.be/stops/403329", "https://data.delijn.be/stops/403356"], ["https://data.delijn.be/stops/204025", "https://data.delijn.be/stops/205024"], ["https://data.delijn.be/stops/407916", "https://data.delijn.be/stops/407972"], ["https://data.delijn.be/stops/104338", "https://data.delijn.be/stops/105902"], ["https://data.delijn.be/stops/106736", "https://data.delijn.be/stops/106737"], ["https://data.delijn.be/stops/204071", "https://data.delijn.be/stops/205183"], ["https://data.delijn.be/stops/501126", "https://data.delijn.be/stops/506121"], ["https://data.delijn.be/stops/502198", "https://data.delijn.be/stops/507190"], ["https://data.delijn.be/stops/304655", "https://data.delijn.be/stops/304657"], ["https://data.delijn.be/stops/101267", "https://data.delijn.be/stops/101880"], ["https://data.delijn.be/stops/307575", "https://data.delijn.be/stops/307576"], ["https://data.delijn.be/stops/405612", "https://data.delijn.be/stops/407156"], ["https://data.delijn.be/stops/104338", "https://data.delijn.be/stops/104342"], ["https://data.delijn.be/stops/405769", "https://data.delijn.be/stops/405810"], ["https://data.delijn.be/stops/206189", "https://data.delijn.be/stops/207194"], ["https://data.delijn.be/stops/201274", "https://data.delijn.be/stops/201984"], ["https://data.delijn.be/stops/302005", "https://data.delijn.be/stops/303279"], ["https://data.delijn.be/stops/502564", "https://data.delijn.be/stops/507565"], ["https://data.delijn.be/stops/502078", "https://data.delijn.be/stops/507080"], ["https://data.delijn.be/stops/108693", "https://data.delijn.be/stops/108812"], ["https://data.delijn.be/stops/302469", "https://data.delijn.be/stops/308832"], ["https://data.delijn.be/stops/402805", "https://data.delijn.be/stops/406111"], ["https://data.delijn.be/stops/407833", "https://data.delijn.be/stops/407859"], ["https://data.delijn.be/stops/401060", "https://data.delijn.be/stops/401086"], ["https://data.delijn.be/stops/403923", "https://data.delijn.be/stops/404017"], ["https://data.delijn.be/stops/201693", "https://data.delijn.be/stops/205995"], ["https://data.delijn.be/stops/102060", "https://data.delijn.be/stops/104650"], ["https://data.delijn.be/stops/202361", "https://data.delijn.be/stops/203362"], ["https://data.delijn.be/stops/203940", "https://data.delijn.be/stops/211053"], ["https://data.delijn.be/stops/410298", "https://data.delijn.be/stops/410350"], ["https://data.delijn.be/stops/507500", "https://data.delijn.be/stops/507636"], ["https://data.delijn.be/stops/105422", "https://data.delijn.be/stops/109979"], ["https://data.delijn.be/stops/404631", "https://data.delijn.be/stops/406962"], ["https://data.delijn.be/stops/207319", "https://data.delijn.be/stops/207918"], ["https://data.delijn.be/stops/204387", "https://data.delijn.be/stops/205188"], ["https://data.delijn.be/stops/301269", "https://data.delijn.be/stops/305951"], ["https://data.delijn.be/stops/504048", "https://data.delijn.be/stops/504962"], ["https://data.delijn.be/stops/301379", "https://data.delijn.be/stops/306649"], ["https://data.delijn.be/stops/300729", "https://data.delijn.be/stops/304935"], ["https://data.delijn.be/stops/409051", "https://data.delijn.be/stops/409087"], ["https://data.delijn.be/stops/303448", "https://data.delijn.be/stops/304841"], ["https://data.delijn.be/stops/304817", "https://data.delijn.be/stops/307975"], ["https://data.delijn.be/stops/401826", "https://data.delijn.be/stops/401827"], ["https://data.delijn.be/stops/208282", "https://data.delijn.be/stops/209282"], ["https://data.delijn.be/stops/504988", "https://data.delijn.be/stops/504989"], ["https://data.delijn.be/stops/504541", "https://data.delijn.be/stops/504567"], ["https://data.delijn.be/stops/200902", "https://data.delijn.be/stops/203105"], ["https://data.delijn.be/stops/402706", "https://data.delijn.be/stops/402719"], ["https://data.delijn.be/stops/504124", "https://data.delijn.be/stops/509124"], ["https://data.delijn.be/stops/303245", "https://data.delijn.be/stops/304649"], ["https://data.delijn.be/stops/209713", "https://data.delijn.be/stops/209723"], ["https://data.delijn.be/stops/107040", "https://data.delijn.be/stops/107705"], ["https://data.delijn.be/stops/201187", "https://data.delijn.be/stops/201198"], ["https://data.delijn.be/stops/109422", "https://data.delijn.be/stops/109423"], ["https://data.delijn.be/stops/206124", "https://data.delijn.be/stops/206512"], ["https://data.delijn.be/stops/107403", "https://data.delijn.be/stops/107404"], ["https://data.delijn.be/stops/105556", "https://data.delijn.be/stops/106031"], ["https://data.delijn.be/stops/304770", "https://data.delijn.be/stops/304771"], ["https://data.delijn.be/stops/109967", "https://data.delijn.be/stops/109968"], ["https://data.delijn.be/stops/501407", "https://data.delijn.be/stops/501409"], ["https://data.delijn.be/stops/305174", "https://data.delijn.be/stops/307976"], ["https://data.delijn.be/stops/302507", "https://data.delijn.be/stops/305781"], ["https://data.delijn.be/stops/505276", "https://data.delijn.be/stops/508772"], ["https://data.delijn.be/stops/500927", "https://data.delijn.be/stops/504664"], ["https://data.delijn.be/stops/303420", "https://data.delijn.be/stops/303421"], ["https://data.delijn.be/stops/101538", "https://data.delijn.be/stops/108264"], ["https://data.delijn.be/stops/303134", "https://data.delijn.be/stops/303136"], ["https://data.delijn.be/stops/406649", "https://data.delijn.be/stops/406653"], ["https://data.delijn.be/stops/104038", "https://data.delijn.be/stops/109764"], ["https://data.delijn.be/stops/206241", "https://data.delijn.be/stops/207320"], ["https://data.delijn.be/stops/404244", "https://data.delijn.be/stops/404245"], ["https://data.delijn.be/stops/206155", "https://data.delijn.be/stops/207738"], ["https://data.delijn.be/stops/302388", "https://data.delijn.be/stops/306183"], ["https://data.delijn.be/stops/407205", "https://data.delijn.be/stops/407209"], ["https://data.delijn.be/stops/109131", "https://data.delijn.be/stops/109132"], ["https://data.delijn.be/stops/104960", "https://data.delijn.be/stops/104961"], ["https://data.delijn.be/stops/201222", "https://data.delijn.be/stops/209931"], ["https://data.delijn.be/stops/204606", "https://data.delijn.be/stops/205606"], ["https://data.delijn.be/stops/101296", "https://data.delijn.be/stops/105481"], ["https://data.delijn.be/stops/401819", "https://data.delijn.be/stops/406824"], ["https://data.delijn.be/stops/106706", "https://data.delijn.be/stops/106707"], ["https://data.delijn.be/stops/505115", "https://data.delijn.be/stops/505761"], ["https://data.delijn.be/stops/202746", "https://data.delijn.be/stops/207569"], ["https://data.delijn.be/stops/107262", "https://data.delijn.be/stops/107264"], ["https://data.delijn.be/stops/400621", "https://data.delijn.be/stops/404042"], ["https://data.delijn.be/stops/402528", "https://data.delijn.be/stops/404093"], ["https://data.delijn.be/stops/308484", "https://data.delijn.be/stops/308486"], ["https://data.delijn.be/stops/108179", "https://data.delijn.be/stops/108182"], ["https://data.delijn.be/stops/508211", "https://data.delijn.be/stops/508213"], ["https://data.delijn.be/stops/208387", "https://data.delijn.be/stops/209111"], ["https://data.delijn.be/stops/405147", "https://data.delijn.be/stops/405192"], ["https://data.delijn.be/stops/208338", "https://data.delijn.be/stops/209338"], ["https://data.delijn.be/stops/108945", "https://data.delijn.be/stops/109731"], ["https://data.delijn.be/stops/200767", "https://data.delijn.be/stops/208319"], ["https://data.delijn.be/stops/302743", "https://data.delijn.be/stops/307845"], ["https://data.delijn.be/stops/504643", "https://data.delijn.be/stops/509642"], ["https://data.delijn.be/stops/202630", "https://data.delijn.be/stops/204091"], ["https://data.delijn.be/stops/405438", "https://data.delijn.be/stops/408531"], ["https://data.delijn.be/stops/208342", "https://data.delijn.be/stops/209341"], ["https://data.delijn.be/stops/405776", "https://data.delijn.be/stops/405777"], ["https://data.delijn.be/stops/305393", "https://data.delijn.be/stops/305404"], ["https://data.delijn.be/stops/206524", "https://data.delijn.be/stops/207524"], ["https://data.delijn.be/stops/104139", "https://data.delijn.be/stops/108417"], ["https://data.delijn.be/stops/503297", "https://data.delijn.be/stops/504428"], ["https://data.delijn.be/stops/201052", "https://data.delijn.be/stops/211113"], ["https://data.delijn.be/stops/301441", "https://data.delijn.be/stops/301442"], ["https://data.delijn.be/stops/504616", "https://data.delijn.be/stops/504617"], ["https://data.delijn.be/stops/207864", "https://data.delijn.be/stops/209086"], ["https://data.delijn.be/stops/102656", "https://data.delijn.be/stops/205799"], ["https://data.delijn.be/stops/508034", "https://data.delijn.be/stops/508036"], ["https://data.delijn.be/stops/106384", "https://data.delijn.be/stops/106385"], ["https://data.delijn.be/stops/102427", "https://data.delijn.be/stops/109129"], ["https://data.delijn.be/stops/204121", "https://data.delijn.be/stops/205121"], ["https://data.delijn.be/stops/407984", "https://data.delijn.be/stops/408195"], ["https://data.delijn.be/stops/505052", "https://data.delijn.be/stops/507280"], ["https://data.delijn.be/stops/203159", "https://data.delijn.be/stops/205792"], ["https://data.delijn.be/stops/301604", "https://data.delijn.be/stops/307338"], ["https://data.delijn.be/stops/504117", "https://data.delijn.be/stops/509117"], ["https://data.delijn.be/stops/107497", "https://data.delijn.be/stops/107499"], ["https://data.delijn.be/stops/501261", "https://data.delijn.be/stops/506256"], ["https://data.delijn.be/stops/206243", "https://data.delijn.be/stops/207243"], ["https://data.delijn.be/stops/208814", "https://data.delijn.be/stops/209197"], ["https://data.delijn.be/stops/206219", "https://data.delijn.be/stops/207690"], ["https://data.delijn.be/stops/102686", "https://data.delijn.be/stops/103323"], ["https://data.delijn.be/stops/308869", "https://data.delijn.be/stops/308871"], ["https://data.delijn.be/stops/506363", "https://data.delijn.be/stops/506442"], ["https://data.delijn.be/stops/206624", "https://data.delijn.be/stops/206764"], ["https://data.delijn.be/stops/507207", "https://data.delijn.be/stops/507583"], ["https://data.delijn.be/stops/502483", "https://data.delijn.be/stops/505317"], ["https://data.delijn.be/stops/406993", "https://data.delijn.be/stops/409246"], ["https://data.delijn.be/stops/102087", "https://data.delijn.be/stops/108868"], ["https://data.delijn.be/stops/206629", "https://data.delijn.be/stops/207629"], ["https://data.delijn.be/stops/304971", "https://data.delijn.be/stops/304972"], ["https://data.delijn.be/stops/204760", "https://data.delijn.be/stops/205760"], ["https://data.delijn.be/stops/106893", "https://data.delijn.be/stops/106895"], ["https://data.delijn.be/stops/201811", "https://data.delijn.be/stops/201819"], ["https://data.delijn.be/stops/306198", "https://data.delijn.be/stops/306318"], ["https://data.delijn.be/stops/408352", "https://data.delijn.be/stops/408353"], ["https://data.delijn.be/stops/105421", "https://data.delijn.be/stops/105849"], ["https://data.delijn.be/stops/303254", "https://data.delijn.be/stops/303257"], ["https://data.delijn.be/stops/204773", "https://data.delijn.be/stops/205832"], ["https://data.delijn.be/stops/103470", "https://data.delijn.be/stops/106620"], ["https://data.delijn.be/stops/300919", "https://data.delijn.be/stops/307795"], ["https://data.delijn.be/stops/404888", "https://data.delijn.be/stops/404900"], ["https://data.delijn.be/stops/403254", "https://data.delijn.be/stops/403397"], ["https://data.delijn.be/stops/109888", "https://data.delijn.be/stops/109889"], ["https://data.delijn.be/stops/503922", "https://data.delijn.be/stops/508709"], ["https://data.delijn.be/stops/104742", "https://data.delijn.be/stops/104757"], ["https://data.delijn.be/stops/305244", "https://data.delijn.be/stops/305264"], ["https://data.delijn.be/stops/107446", "https://data.delijn.be/stops/109754"], ["https://data.delijn.be/stops/507023", "https://data.delijn.be/stops/508321"], ["https://data.delijn.be/stops/501158", "https://data.delijn.be/stops/509835"], ["https://data.delijn.be/stops/208554", "https://data.delijn.be/stops/307744"], ["https://data.delijn.be/stops/505274", "https://data.delijn.be/stops/505392"], ["https://data.delijn.be/stops/301885", "https://data.delijn.be/stops/302065"], ["https://data.delijn.be/stops/301405", "https://data.delijn.be/stops/308684"], ["https://data.delijn.be/stops/204587", "https://data.delijn.be/stops/204593"], ["https://data.delijn.be/stops/108229", "https://data.delijn.be/stops/109276"], ["https://data.delijn.be/stops/502380", "https://data.delijn.be/stops/507380"], ["https://data.delijn.be/stops/407481", "https://data.delijn.be/stops/410254"], ["https://data.delijn.be/stops/506140", "https://data.delijn.be/stops/590331"], ["https://data.delijn.be/stops/300274", "https://data.delijn.be/stops/300288"], ["https://data.delijn.be/stops/407653", "https://data.delijn.be/stops/407707"], ["https://data.delijn.be/stops/404252", "https://data.delijn.be/stops/404254"], ["https://data.delijn.be/stops/501736", "https://data.delijn.be/stops/506070"], ["https://data.delijn.be/stops/107888", "https://data.delijn.be/stops/107891"], ["https://data.delijn.be/stops/106908", "https://data.delijn.be/stops/107250"], ["https://data.delijn.be/stops/503914", "https://data.delijn.be/stops/509822"], ["https://data.delijn.be/stops/408229", "https://data.delijn.be/stops/408273"], ["https://data.delijn.be/stops/307381", "https://data.delijn.be/stops/308202"], ["https://data.delijn.be/stops/400344", "https://data.delijn.be/stops/400437"], ["https://data.delijn.be/stops/403372", "https://data.delijn.be/stops/405328"], ["https://data.delijn.be/stops/403946", "https://data.delijn.be/stops/407056"], ["https://data.delijn.be/stops/204465", "https://data.delijn.be/stops/204466"], ["https://data.delijn.be/stops/306558", "https://data.delijn.be/stops/307896"], ["https://data.delijn.be/stops/201735", "https://data.delijn.be/stops/203752"], ["https://data.delijn.be/stops/506242", "https://data.delijn.be/stops/506243"], ["https://data.delijn.be/stops/200200", "https://data.delijn.be/stops/201373"], ["https://data.delijn.be/stops/205160", "https://data.delijn.be/stops/205161"], ["https://data.delijn.be/stops/105163", "https://data.delijn.be/stops/105164"], ["https://data.delijn.be/stops/300048", "https://data.delijn.be/stops/308449"], ["https://data.delijn.be/stops/202045", "https://data.delijn.be/stops/210122"], ["https://data.delijn.be/stops/400917", "https://data.delijn.be/stops/400921"], ["https://data.delijn.be/stops/200010", "https://data.delijn.be/stops/200508"], ["https://data.delijn.be/stops/501379", "https://data.delijn.be/stops/501394"], ["https://data.delijn.be/stops/304320", "https://data.delijn.be/stops/304321"], ["https://data.delijn.be/stops/302486", "https://data.delijn.be/stops/302732"], ["https://data.delijn.be/stops/201901", "https://data.delijn.be/stops/201921"], ["https://data.delijn.be/stops/300298", "https://data.delijn.be/stops/300299"], ["https://data.delijn.be/stops/200885", "https://data.delijn.be/stops/507597"], ["https://data.delijn.be/stops/203185", "https://data.delijn.be/stops/204206"], ["https://data.delijn.be/stops/206796", "https://data.delijn.be/stops/209048"], ["https://data.delijn.be/stops/406339", "https://data.delijn.be/stops/406402"], ["https://data.delijn.be/stops/502200", "https://data.delijn.be/stops/507200"], ["https://data.delijn.be/stops/204389", "https://data.delijn.be/stops/205390"], ["https://data.delijn.be/stops/201524", "https://data.delijn.be/stops/211130"], ["https://data.delijn.be/stops/305747", "https://data.delijn.be/stops/305748"], ["https://data.delijn.be/stops/402042", "https://data.delijn.be/stops/410072"], ["https://data.delijn.be/stops/202549", "https://data.delijn.be/stops/203549"], ["https://data.delijn.be/stops/508385", "https://data.delijn.be/stops/508410"], ["https://data.delijn.be/stops/205208", "https://data.delijn.be/stops/215011"], ["https://data.delijn.be/stops/207668", "https://data.delijn.be/stops/208057"], ["https://data.delijn.be/stops/203217", "https://data.delijn.be/stops/204582"], ["https://data.delijn.be/stops/509844", "https://data.delijn.be/stops/509846"], ["https://data.delijn.be/stops/503398", "https://data.delijn.be/stops/508398"], ["https://data.delijn.be/stops/200548", "https://data.delijn.be/stops/201374"], ["https://data.delijn.be/stops/503958", "https://data.delijn.be/stops/509015"], ["https://data.delijn.be/stops/209582", "https://data.delijn.be/stops/209583"], ["https://data.delijn.be/stops/405366", "https://data.delijn.be/stops/405367"], ["https://data.delijn.be/stops/108967", "https://data.delijn.be/stops/108968"], ["https://data.delijn.be/stops/508526", "https://data.delijn.be/stops/509784"], ["https://data.delijn.be/stops/405948", "https://data.delijn.be/stops/405949"], ["https://data.delijn.be/stops/104347", "https://data.delijn.be/stops/104348"], ["https://data.delijn.be/stops/503074", "https://data.delijn.be/stops/503075"], ["https://data.delijn.be/stops/201648", "https://data.delijn.be/stops/202863"], ["https://data.delijn.be/stops/407891", "https://data.delijn.be/stops/408176"], ["https://data.delijn.be/stops/302792", "https://data.delijn.be/stops/305427"], ["https://data.delijn.be/stops/101080", "https://data.delijn.be/stops/105320"], ["https://data.delijn.be/stops/308052", "https://data.delijn.be/stops/308054"], ["https://data.delijn.be/stops/500001", "https://data.delijn.be/stops/507293"], ["https://data.delijn.be/stops/208025", "https://data.delijn.be/stops/208026"], ["https://data.delijn.be/stops/406931", "https://data.delijn.be/stops/406951"], ["https://data.delijn.be/stops/501186", "https://data.delijn.be/stops/506186"], ["https://data.delijn.be/stops/108205", "https://data.delijn.be/stops/108970"], ["https://data.delijn.be/stops/108642", "https://data.delijn.be/stops/109690"], ["https://data.delijn.be/stops/200422", "https://data.delijn.be/stops/201451"], ["https://data.delijn.be/stops/201752", "https://data.delijn.be/stops/209215"], ["https://data.delijn.be/stops/107270", "https://data.delijn.be/stops/109734"], ["https://data.delijn.be/stops/308248", "https://data.delijn.be/stops/308250"], ["https://data.delijn.be/stops/106957", "https://data.delijn.be/stops/106959"], ["https://data.delijn.be/stops/303996", "https://data.delijn.be/stops/304102"], ["https://data.delijn.be/stops/301609", "https://data.delijn.be/stops/301658"], ["https://data.delijn.be/stops/107554", "https://data.delijn.be/stops/108941"], ["https://data.delijn.be/stops/407446", "https://data.delijn.be/stops/407481"], ["https://data.delijn.be/stops/405697", "https://data.delijn.be/stops/405698"], ["https://data.delijn.be/stops/403690", "https://data.delijn.be/stops/409310"], ["https://data.delijn.be/stops/400734", "https://data.delijn.be/stops/400808"], ["https://data.delijn.be/stops/401836", "https://data.delijn.be/stops/401837"], ["https://data.delijn.be/stops/503293", "https://data.delijn.be/stops/508436"], ["https://data.delijn.be/stops/301495", "https://data.delijn.be/stops/308704"], ["https://data.delijn.be/stops/303740", "https://data.delijn.be/stops/304919"], ["https://data.delijn.be/stops/107251", "https://data.delijn.be/stops/107279"], ["https://data.delijn.be/stops/301881", "https://data.delijn.be/stops/301887"], ["https://data.delijn.be/stops/200923", "https://data.delijn.be/stops/203085"], ["https://data.delijn.be/stops/404667", "https://data.delijn.be/stops/404670"], ["https://data.delijn.be/stops/208195", "https://data.delijn.be/stops/208450"], ["https://data.delijn.be/stops/202110", "https://data.delijn.be/stops/202111"], ["https://data.delijn.be/stops/105901", "https://data.delijn.be/stops/105902"], ["https://data.delijn.be/stops/509737", "https://data.delijn.be/stops/509738"], ["https://data.delijn.be/stops/305138", "https://data.delijn.be/stops/305139"], ["https://data.delijn.be/stops/102680", "https://data.delijn.be/stops/105320"], ["https://data.delijn.be/stops/207301", "https://data.delijn.be/stops/207304"], ["https://data.delijn.be/stops/202731", "https://data.delijn.be/stops/202733"], ["https://data.delijn.be/stops/400423", "https://data.delijn.be/stops/409723"], ["https://data.delijn.be/stops/403446", "https://data.delijn.be/stops/409291"], ["https://data.delijn.be/stops/209234", "https://data.delijn.be/stops/209235"], ["https://data.delijn.be/stops/403464", "https://data.delijn.be/stops/403465"], ["https://data.delijn.be/stops/108694", "https://data.delijn.be/stops/108696"], ["https://data.delijn.be/stops/305162", "https://data.delijn.be/stops/307101"], ["https://data.delijn.be/stops/408836", "https://data.delijn.be/stops/408838"], ["https://data.delijn.be/stops/105567", "https://data.delijn.be/stops/105569"], ["https://data.delijn.be/stops/201690", "https://data.delijn.be/stops/203998"], ["https://data.delijn.be/stops/303993", "https://data.delijn.be/stops/305282"], ["https://data.delijn.be/stops/206928", "https://data.delijn.be/stops/209126"], ["https://data.delijn.be/stops/104713", "https://data.delijn.be/stops/108166"], ["https://data.delijn.be/stops/101941", "https://data.delijn.be/stops/101942"], ["https://data.delijn.be/stops/304406", "https://data.delijn.be/stops/307414"], ["https://data.delijn.be/stops/400015", "https://data.delijn.be/stops/400430"], ["https://data.delijn.be/stops/104037", "https://data.delijn.be/stops/108092"], ["https://data.delijn.be/stops/102249", "https://data.delijn.be/stops/104284"], ["https://data.delijn.be/stops/200157", "https://data.delijn.be/stops/207242"], ["https://data.delijn.be/stops/407609", "https://data.delijn.be/stops/407745"], ["https://data.delijn.be/stops/202685", "https://data.delijn.be/stops/202730"], ["https://data.delijn.be/stops/304399", "https://data.delijn.be/stops/304400"], ["https://data.delijn.be/stops/303734", "https://data.delijn.be/stops/303764"], ["https://data.delijn.be/stops/301753", "https://data.delijn.be/stops/308876"], ["https://data.delijn.be/stops/202859", "https://data.delijn.be/stops/203859"], ["https://data.delijn.be/stops/201112", "https://data.delijn.be/stops/202355"], ["https://data.delijn.be/stops/502484", "https://data.delijn.be/stops/507484"], ["https://data.delijn.be/stops/302268", "https://data.delijn.be/stops/302269"], ["https://data.delijn.be/stops/405204", "https://data.delijn.be/stops/405218"], ["https://data.delijn.be/stops/504659", "https://data.delijn.be/stops/509047"], ["https://data.delijn.be/stops/206831", "https://data.delijn.be/stops/207426"], ["https://data.delijn.be/stops/200962", "https://data.delijn.be/stops/201962"], ["https://data.delijn.be/stops/406215", "https://data.delijn.be/stops/406222"], ["https://data.delijn.be/stops/107051", "https://data.delijn.be/stops/107052"], ["https://data.delijn.be/stops/504079", "https://data.delijn.be/stops/505803"], ["https://data.delijn.be/stops/404945", "https://data.delijn.be/stops/408948"], ["https://data.delijn.be/stops/400533", "https://data.delijn.be/stops/400573"], ["https://data.delijn.be/stops/104738", "https://data.delijn.be/stops/107336"], ["https://data.delijn.be/stops/300670", "https://data.delijn.be/stops/305964"], ["https://data.delijn.be/stops/406555", "https://data.delijn.be/stops/406698"], ["https://data.delijn.be/stops/208570", "https://data.delijn.be/stops/209553"], ["https://data.delijn.be/stops/206282", "https://data.delijn.be/stops/206283"], ["https://data.delijn.be/stops/407731", "https://data.delijn.be/stops/409782"], ["https://data.delijn.be/stops/401347", "https://data.delijn.be/stops/401356"], ["https://data.delijn.be/stops/101017", "https://data.delijn.be/stops/108360"], ["https://data.delijn.be/stops/202758", "https://data.delijn.be/stops/202763"], ["https://data.delijn.be/stops/404644", "https://data.delijn.be/stops/406969"], ["https://data.delijn.be/stops/400296", "https://data.delijn.be/stops/406769"], ["https://data.delijn.be/stops/305303", "https://data.delijn.be/stops/308642"], ["https://data.delijn.be/stops/404039", "https://data.delijn.be/stops/405982"], ["https://data.delijn.be/stops/104894", "https://data.delijn.be/stops/105313"], ["https://data.delijn.be/stops/403298", "https://data.delijn.be/stops/403299"], ["https://data.delijn.be/stops/308475", "https://data.delijn.be/stops/308477"], ["https://data.delijn.be/stops/402174", "https://data.delijn.be/stops/402372"], ["https://data.delijn.be/stops/302102", "https://data.delijn.be/stops/302103"], ["https://data.delijn.be/stops/507205", "https://data.delijn.be/stops/509944"], ["https://data.delijn.be/stops/104101", "https://data.delijn.be/stops/108295"], ["https://data.delijn.be/stops/402205", "https://data.delijn.be/stops/407328"], ["https://data.delijn.be/stops/405545", "https://data.delijn.be/stops/406886"], ["https://data.delijn.be/stops/303567", "https://data.delijn.be/stops/306283"], ["https://data.delijn.be/stops/501283", "https://data.delijn.be/stops/506317"], ["https://data.delijn.be/stops/108879", "https://data.delijn.be/stops/108880"], ["https://data.delijn.be/stops/505767", "https://data.delijn.be/stops/507502"], ["https://data.delijn.be/stops/206300", "https://data.delijn.be/stops/206466"], ["https://data.delijn.be/stops/300208", "https://data.delijn.be/stops/301377"], ["https://data.delijn.be/stops/106882", "https://data.delijn.be/stops/106883"], ["https://data.delijn.be/stops/504284", "https://data.delijn.be/stops/509286"], ["https://data.delijn.be/stops/507318", "https://data.delijn.be/stops/507711"], ["https://data.delijn.be/stops/101146", "https://data.delijn.be/stops/106863"], ["https://data.delijn.be/stops/303681", "https://data.delijn.be/stops/304421"], ["https://data.delijn.be/stops/406218", "https://data.delijn.be/stops/406219"], ["https://data.delijn.be/stops/503469", "https://data.delijn.be/stops/508354"], ["https://data.delijn.be/stops/301857", "https://data.delijn.be/stops/301871"], ["https://data.delijn.be/stops/206843", "https://data.delijn.be/stops/207103"], ["https://data.delijn.be/stops/300133", "https://data.delijn.be/stops/307849"], ["https://data.delijn.be/stops/102717", "https://data.delijn.be/stops/103002"], ["https://data.delijn.be/stops/200468", "https://data.delijn.be/stops/201132"], ["https://data.delijn.be/stops/502643", "https://data.delijn.be/stops/507728"], ["https://data.delijn.be/stops/207414", "https://data.delijn.be/stops/207600"], ["https://data.delijn.be/stops/303708", "https://data.delijn.be/stops/303738"], ["https://data.delijn.be/stops/504360", "https://data.delijn.be/stops/509360"], ["https://data.delijn.be/stops/505578", "https://data.delijn.be/stops/508765"], ["https://data.delijn.be/stops/401550", "https://data.delijn.be/stops/405545"], ["https://data.delijn.be/stops/102410", "https://data.delijn.be/stops/102415"], ["https://data.delijn.be/stops/105268", "https://data.delijn.be/stops/109957"], ["https://data.delijn.be/stops/102121", "https://data.delijn.be/stops/109371"], ["https://data.delijn.be/stops/303611", "https://data.delijn.be/stops/303612"], ["https://data.delijn.be/stops/204429", "https://data.delijn.be/stops/205429"], ["https://data.delijn.be/stops/202870", "https://data.delijn.be/stops/203869"], ["https://data.delijn.be/stops/202742", "https://data.delijn.be/stops/202865"], ["https://data.delijn.be/stops/200918", "https://data.delijn.be/stops/203076"], ["https://data.delijn.be/stops/502100", "https://data.delijn.be/stops/502243"], ["https://data.delijn.be/stops/405671", "https://data.delijn.be/stops/406969"], ["https://data.delijn.be/stops/109163", "https://data.delijn.be/stops/109166"], ["https://data.delijn.be/stops/401214", "https://data.delijn.be/stops/401215"], ["https://data.delijn.be/stops/301291", "https://data.delijn.be/stops/301292"], ["https://data.delijn.be/stops/503763", "https://data.delijn.be/stops/508624"], ["https://data.delijn.be/stops/301405", "https://data.delijn.be/stops/304739"], ["https://data.delijn.be/stops/402485", "https://data.delijn.be/stops/402486"], ["https://data.delijn.be/stops/102330", "https://data.delijn.be/stops/102860"], ["https://data.delijn.be/stops/109063", "https://data.delijn.be/stops/307376"], ["https://data.delijn.be/stops/203091", "https://data.delijn.be/stops/203270"], ["https://data.delijn.be/stops/504689", "https://data.delijn.be/stops/509275"], ["https://data.delijn.be/stops/202886", "https://data.delijn.be/stops/207421"], ["https://data.delijn.be/stops/201863", "https://data.delijn.be/stops/203326"], ["https://data.delijn.be/stops/505934", "https://data.delijn.be/stops/508315"], ["https://data.delijn.be/stops/105232", "https://data.delijn.be/stops/109957"], ["https://data.delijn.be/stops/304092", "https://data.delijn.be/stops/308644"], ["https://data.delijn.be/stops/301425", "https://data.delijn.be/stops/306935"], ["https://data.delijn.be/stops/207678", "https://data.delijn.be/stops/208071"], ["https://data.delijn.be/stops/306077", "https://data.delijn.be/stops/306078"], ["https://data.delijn.be/stops/304496", "https://data.delijn.be/stops/304498"], ["https://data.delijn.be/stops/105475", "https://data.delijn.be/stops/105476"], ["https://data.delijn.be/stops/501029", "https://data.delijn.be/stops/501128"], ["https://data.delijn.be/stops/302658", "https://data.delijn.be/stops/303258"], ["https://data.delijn.be/stops/404213", "https://data.delijn.be/stops/404220"], ["https://data.delijn.be/stops/503966", "https://data.delijn.be/stops/508534"], ["https://data.delijn.be/stops/404429", "https://data.delijn.be/stops/404437"], ["https://data.delijn.be/stops/504985", "https://data.delijn.be/stops/509021"], ["https://data.delijn.be/stops/103105", "https://data.delijn.be/stops/104810"], ["https://data.delijn.be/stops/503308", "https://data.delijn.be/stops/505999"], ["https://data.delijn.be/stops/501244", "https://data.delijn.be/stops/506238"], ["https://data.delijn.be/stops/105020", "https://data.delijn.be/stops/108630"], ["https://data.delijn.be/stops/505543", "https://data.delijn.be/stops/509584"], ["https://data.delijn.be/stops/102750", "https://data.delijn.be/stops/102813"], ["https://data.delijn.be/stops/303060", "https://data.delijn.be/stops/304532"], ["https://data.delijn.be/stops/505721", "https://data.delijn.be/stops/505762"], ["https://data.delijn.be/stops/504772", "https://data.delijn.be/stops/509600"], ["https://data.delijn.be/stops/405939", "https://data.delijn.be/stops/405945"], ["https://data.delijn.be/stops/508167", "https://data.delijn.be/stops/508945"], ["https://data.delijn.be/stops/303071", "https://data.delijn.be/stops/308439"], ["https://data.delijn.be/stops/208375", "https://data.delijn.be/stops/209300"], ["https://data.delijn.be/stops/509519", "https://data.delijn.be/stops/509522"], ["https://data.delijn.be/stops/506423", "https://data.delijn.be/stops/506425"], ["https://data.delijn.be/stops/204971", "https://data.delijn.be/stops/217002"], ["https://data.delijn.be/stops/200638", "https://data.delijn.be/stops/202941"], ["https://data.delijn.be/stops/101706", "https://data.delijn.be/stops/104403"], ["https://data.delijn.be/stops/303774", "https://data.delijn.be/stops/303806"], ["https://data.delijn.be/stops/300784", "https://data.delijn.be/stops/304653"], ["https://data.delijn.be/stops/202574", "https://data.delijn.be/stops/203574"], ["https://data.delijn.be/stops/208492", "https://data.delijn.be/stops/210066"], ["https://data.delijn.be/stops/504628", "https://data.delijn.be/stops/509628"], ["https://data.delijn.be/stops/502217", "https://data.delijn.be/stops/502635"], ["https://data.delijn.be/stops/304510", "https://data.delijn.be/stops/304511"], ["https://data.delijn.be/stops/101753", "https://data.delijn.be/stops/109825"], ["https://data.delijn.be/stops/404130", "https://data.delijn.be/stops/404194"], ["https://data.delijn.be/stops/106433", "https://data.delijn.be/stops/106500"], ["https://data.delijn.be/stops/105568", "https://data.delijn.be/stops/105571"], ["https://data.delijn.be/stops/102073", "https://data.delijn.be/stops/109715"], ["https://data.delijn.be/stops/208548", "https://data.delijn.be/stops/209568"], ["https://data.delijn.be/stops/204019", "https://data.delijn.be/stops/205020"], ["https://data.delijn.be/stops/403126", "https://data.delijn.be/stops/403129"], ["https://data.delijn.be/stops/403440", "https://data.delijn.be/stops/403864"], ["https://data.delijn.be/stops/303438", "https://data.delijn.be/stops/303523"], ["https://data.delijn.be/stops/205971", "https://data.delijn.be/stops/217002"], ["https://data.delijn.be/stops/101642", "https://data.delijn.be/stops/107444"], ["https://data.delijn.be/stops/102875", "https://data.delijn.be/stops/104889"], ["https://data.delijn.be/stops/400826", "https://data.delijn.be/stops/401908"], ["https://data.delijn.be/stops/507523", "https://data.delijn.be/stops/507665"], ["https://data.delijn.be/stops/404439", "https://data.delijn.be/stops/404568"], ["https://data.delijn.be/stops/204071", "https://data.delijn.be/stops/204072"], ["https://data.delijn.be/stops/105724", "https://data.delijn.be/stops/107855"], ["https://data.delijn.be/stops/401537", "https://data.delijn.be/stops/401539"], ["https://data.delijn.be/stops/401882", "https://data.delijn.be/stops/401883"], ["https://data.delijn.be/stops/404344", "https://data.delijn.be/stops/404345"], ["https://data.delijn.be/stops/408755", "https://data.delijn.be/stops/408762"], ["https://data.delijn.be/stops/206900", "https://data.delijn.be/stops/207905"], ["https://data.delijn.be/stops/301389", "https://data.delijn.be/stops/304174"], ["https://data.delijn.be/stops/407720", "https://data.delijn.be/stops/409520"], ["https://data.delijn.be/stops/403485", "https://data.delijn.be/stops/403486"], ["https://data.delijn.be/stops/103203", "https://data.delijn.be/stops/107191"], ["https://data.delijn.be/stops/304958", "https://data.delijn.be/stops/304959"], ["https://data.delijn.be/stops/101855", "https://data.delijn.be/stops/101860"], ["https://data.delijn.be/stops/104822", "https://data.delijn.be/stops/105139"], ["https://data.delijn.be/stops/304534", "https://data.delijn.be/stops/304540"], ["https://data.delijn.be/stops/106363", "https://data.delijn.be/stops/106365"], ["https://data.delijn.be/stops/204070", "https://data.delijn.be/stops/205222"], ["https://data.delijn.be/stops/504136", "https://data.delijn.be/stops/505710"], ["https://data.delijn.be/stops/102815", "https://data.delijn.be/stops/105070"], ["https://data.delijn.be/stops/400857", "https://data.delijn.be/stops/409536"], ["https://data.delijn.be/stops/501601", "https://data.delijn.be/stops/504744"], ["https://data.delijn.be/stops/408610", "https://data.delijn.be/stops/408772"], ["https://data.delijn.be/stops/304757", "https://data.delijn.be/stops/304773"], ["https://data.delijn.be/stops/201559", "https://data.delijn.be/stops/201662"], ["https://data.delijn.be/stops/303086", "https://data.delijn.be/stops/304245"], ["https://data.delijn.be/stops/302212", "https://data.delijn.be/stops/302213"], ["https://data.delijn.be/stops/101015", "https://data.delijn.be/stops/103845"], ["https://data.delijn.be/stops/303058", "https://data.delijn.be/stops/305442"], ["https://data.delijn.be/stops/408911", "https://data.delijn.be/stops/408912"], ["https://data.delijn.be/stops/402004", "https://data.delijn.be/stops/406207"], ["https://data.delijn.be/stops/204463", "https://data.delijn.be/stops/205463"], ["https://data.delijn.be/stops/101197", "https://data.delijn.be/stops/204615"], ["https://data.delijn.be/stops/208402", "https://data.delijn.be/stops/208763"], ["https://data.delijn.be/stops/106181", "https://data.delijn.be/stops/109372"], ["https://data.delijn.be/stops/300426", "https://data.delijn.be/stops/300446"], ["https://data.delijn.be/stops/404484", "https://data.delijn.be/stops/404525"], ["https://data.delijn.be/stops/401582", "https://data.delijn.be/stops/410353"], ["https://data.delijn.be/stops/202465", "https://data.delijn.be/stops/203465"], ["https://data.delijn.be/stops/501633", "https://data.delijn.be/stops/506248"], ["https://data.delijn.be/stops/109073", "https://data.delijn.be/stops/300149"], ["https://data.delijn.be/stops/403487", "https://data.delijn.be/stops/403490"], ["https://data.delijn.be/stops/503016", "https://data.delijn.be/stops/508544"], ["https://data.delijn.be/stops/103644", "https://data.delijn.be/stops/107173"], ["https://data.delijn.be/stops/308195", "https://data.delijn.be/stops/308226"], ["https://data.delijn.be/stops/409080", "https://data.delijn.be/stops/409081"], ["https://data.delijn.be/stops/102213", "https://data.delijn.be/stops/102214"], ["https://data.delijn.be/stops/200746", "https://data.delijn.be/stops/201746"], ["https://data.delijn.be/stops/206341", "https://data.delijn.be/stops/207340"], ["https://data.delijn.be/stops/300234", "https://data.delijn.be/stops/303893"], ["https://data.delijn.be/stops/504147", "https://data.delijn.be/stops/509145"], ["https://data.delijn.be/stops/504674", "https://data.delijn.be/stops/509013"], ["https://data.delijn.be/stops/401215", "https://data.delijn.be/stops/401252"], ["https://data.delijn.be/stops/305615", "https://data.delijn.be/stops/308945"], ["https://data.delijn.be/stops/500958", "https://data.delijn.be/stops/504713"], ["https://data.delijn.be/stops/202376", "https://data.delijn.be/stops/203375"], ["https://data.delijn.be/stops/304754", "https://data.delijn.be/stops/304772"], ["https://data.delijn.be/stops/400200", "https://data.delijn.be/stops/400240"], ["https://data.delijn.be/stops/504076", "https://data.delijn.be/stops/509483"], ["https://data.delijn.be/stops/304285", "https://data.delijn.be/stops/306667"], ["https://data.delijn.be/stops/302157", "https://data.delijn.be/stops/308098"], ["https://data.delijn.be/stops/405780", "https://data.delijn.be/stops/409760"], ["https://data.delijn.be/stops/109124", "https://data.delijn.be/stops/109394"], ["https://data.delijn.be/stops/507425", "https://data.delijn.be/stops/507426"], ["https://data.delijn.be/stops/202366", "https://data.delijn.be/stops/203998"], ["https://data.delijn.be/stops/501135", "https://data.delijn.be/stops/501486"], ["https://data.delijn.be/stops/103133", "https://data.delijn.be/stops/106669"], ["https://data.delijn.be/stops/305624", "https://data.delijn.be/stops/305625"], ["https://data.delijn.be/stops/503187", "https://data.delijn.be/stops/508196"], ["https://data.delijn.be/stops/301832", "https://data.delijn.be/stops/301874"], ["https://data.delijn.be/stops/306145", "https://data.delijn.be/stops/306146"], ["https://data.delijn.be/stops/205333", "https://data.delijn.be/stops/205499"], ["https://data.delijn.be/stops/101355", "https://data.delijn.be/stops/105835"], ["https://data.delijn.be/stops/208081", "https://data.delijn.be/stops/209447"], ["https://data.delijn.be/stops/503778", "https://data.delijn.be/stops/508778"], ["https://data.delijn.be/stops/406101", "https://data.delijn.be/stops/406129"], ["https://data.delijn.be/stops/106382", "https://data.delijn.be/stops/107709"], ["https://data.delijn.be/stops/204535", "https://data.delijn.be/stops/204613"], ["https://data.delijn.be/stops/200502", "https://data.delijn.be/stops/201553"], ["https://data.delijn.be/stops/107328", "https://data.delijn.be/stops/107332"], ["https://data.delijn.be/stops/301040", "https://data.delijn.be/stops/301055"], ["https://data.delijn.be/stops/208513", "https://data.delijn.be/stops/209513"], ["https://data.delijn.be/stops/501159", "https://data.delijn.be/stops/501160"], ["https://data.delijn.be/stops/301641", "https://data.delijn.be/stops/307754"], ["https://data.delijn.be/stops/200227", "https://data.delijn.be/stops/201369"], ["https://data.delijn.be/stops/502655", "https://data.delijn.be/stops/502664"], ["https://data.delijn.be/stops/300255", "https://data.delijn.be/stops/300260"], ["https://data.delijn.be/stops/106208", "https://data.delijn.be/stops/106209"], ["https://data.delijn.be/stops/202389", "https://data.delijn.be/stops/202390"], ["https://data.delijn.be/stops/308098", "https://data.delijn.be/stops/308099"], ["https://data.delijn.be/stops/303410", "https://data.delijn.be/stops/303411"], ["https://data.delijn.be/stops/101617", "https://data.delijn.be/stops/106398"], ["https://data.delijn.be/stops/105136", "https://data.delijn.be/stops/105138"], ["https://data.delijn.be/stops/200554", "https://data.delijn.be/stops/200566"], ["https://data.delijn.be/stops/300783", "https://data.delijn.be/stops/300784"], ["https://data.delijn.be/stops/507030", "https://data.delijn.be/stops/507163"], ["https://data.delijn.be/stops/201013", "https://data.delijn.be/stops/211335"], ["https://data.delijn.be/stops/201265", "https://data.delijn.be/stops/203543"], ["https://data.delijn.be/stops/402369", "https://data.delijn.be/stops/410098"], ["https://data.delijn.be/stops/105114", "https://data.delijn.be/stops/105116"], ["https://data.delijn.be/stops/107641", "https://data.delijn.be/stops/109614"], ["https://data.delijn.be/stops/301360", "https://data.delijn.be/stops/303828"], ["https://data.delijn.be/stops/102780", "https://data.delijn.be/stops/104145"], ["https://data.delijn.be/stops/508904", "https://data.delijn.be/stops/508905"], ["https://data.delijn.be/stops/406598", "https://data.delijn.be/stops/406599"], ["https://data.delijn.be/stops/501220", "https://data.delijn.be/stops/501221"], ["https://data.delijn.be/stops/203663", "https://data.delijn.be/stops/203664"], ["https://data.delijn.be/stops/308517", "https://data.delijn.be/stops/308540"], ["https://data.delijn.be/stops/206887", "https://data.delijn.be/stops/206891"], ["https://data.delijn.be/stops/206232", "https://data.delijn.be/stops/300162"], ["https://data.delijn.be/stops/200405", "https://data.delijn.be/stops/201404"], ["https://data.delijn.be/stops/101365", "https://data.delijn.be/stops/104060"], ["https://data.delijn.be/stops/505348", "https://data.delijn.be/stops/507367"], ["https://data.delijn.be/stops/108156", "https://data.delijn.be/stops/108682"], ["https://data.delijn.be/stops/206911", "https://data.delijn.be/stops/207104"], ["https://data.delijn.be/stops/206927", "https://data.delijn.be/stops/207927"], ["https://data.delijn.be/stops/201327", "https://data.delijn.be/stops/202199"], ["https://data.delijn.be/stops/103677", "https://data.delijn.be/stops/106219"], ["https://data.delijn.be/stops/403519", "https://data.delijn.be/stops/410010"], ["https://data.delijn.be/stops/500136", "https://data.delijn.be/stops/507074"], ["https://data.delijn.be/stops/404889", "https://data.delijn.be/stops/404906"], ["https://data.delijn.be/stops/301956", "https://data.delijn.be/stops/302399"], ["https://data.delijn.be/stops/208160", "https://data.delijn.be/stops/208161"], ["https://data.delijn.be/stops/302386", "https://data.delijn.be/stops/304817"], ["https://data.delijn.be/stops/403926", "https://data.delijn.be/stops/403927"], ["https://data.delijn.be/stops/106887", "https://data.delijn.be/stops/107227"], ["https://data.delijn.be/stops/402506", "https://data.delijn.be/stops/402546"], ["https://data.delijn.be/stops/203348", "https://data.delijn.be/stops/208710"], ["https://data.delijn.be/stops/206793", "https://data.delijn.be/stops/208033"], ["https://data.delijn.be/stops/405412", "https://data.delijn.be/stops/405496"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/504080"], ["https://data.delijn.be/stops/405342", "https://data.delijn.be/stops/306922"], ["https://data.delijn.be/stops/200762", "https://data.delijn.be/stops/505285"], ["https://data.delijn.be/stops/403500", "https://data.delijn.be/stops/403508"], ["https://data.delijn.be/stops/300579", "https://data.delijn.be/stops/302479"], ["https://data.delijn.be/stops/204915", "https://data.delijn.be/stops/204916"], ["https://data.delijn.be/stops/206216", "https://data.delijn.be/stops/207269"], ["https://data.delijn.be/stops/107578", "https://data.delijn.be/stops/109430"], ["https://data.delijn.be/stops/406051", "https://data.delijn.be/stops/407780"], ["https://data.delijn.be/stops/108642", "https://data.delijn.be/stops/108974"], ["https://data.delijn.be/stops/302223", "https://data.delijn.be/stops/304045"], ["https://data.delijn.be/stops/204581", "https://data.delijn.be/stops/205593"], ["https://data.delijn.be/stops/401041", "https://data.delijn.be/stops/401145"], ["https://data.delijn.be/stops/101934", "https://data.delijn.be/stops/107742"], ["https://data.delijn.be/stops/302877", "https://data.delijn.be/stops/302988"], ["https://data.delijn.be/stops/502364", "https://data.delijn.be/stops/502713"], ["https://data.delijn.be/stops/402096", "https://data.delijn.be/stops/402097"], ["https://data.delijn.be/stops/504567", "https://data.delijn.be/stops/509569"], ["https://data.delijn.be/stops/408424", "https://data.delijn.be/stops/408425"], ["https://data.delijn.be/stops/302180", "https://data.delijn.be/stops/308097"], ["https://data.delijn.be/stops/504117", "https://data.delijn.be/stops/504120"], ["https://data.delijn.be/stops/104582", "https://data.delijn.be/stops/308605"], ["https://data.delijn.be/stops/206732", "https://data.delijn.be/stops/301665"], ["https://data.delijn.be/stops/401989", "https://data.delijn.be/stops/403081"], ["https://data.delijn.be/stops/403408", "https://data.delijn.be/stops/405126"], ["https://data.delijn.be/stops/402104", "https://data.delijn.be/stops/407328"], ["https://data.delijn.be/stops/303674", "https://data.delijn.be/stops/306023"], ["https://data.delijn.be/stops/507380", "https://data.delijn.be/stops/507670"], ["https://data.delijn.be/stops/502946", "https://data.delijn.be/stops/505241"], ["https://data.delijn.be/stops/107163", "https://data.delijn.be/stops/107165"], ["https://data.delijn.be/stops/502248", "https://data.delijn.be/stops/507248"], ["https://data.delijn.be/stops/503980", "https://data.delijn.be/stops/508329"], ["https://data.delijn.be/stops/407519", "https://data.delijn.be/stops/308173"], ["https://data.delijn.be/stops/203130", "https://data.delijn.be/stops/203419"], ["https://data.delijn.be/stops/102764", "https://data.delijn.be/stops/107407"], ["https://data.delijn.be/stops/500007", "https://data.delijn.be/stops/503080"], ["https://data.delijn.be/stops/204121", "https://data.delijn.be/stops/204783"], ["https://data.delijn.be/stops/304402", "https://data.delijn.be/stops/304407"], ["https://data.delijn.be/stops/401413", "https://data.delijn.be/stops/308819"], ["https://data.delijn.be/stops/406952", "https://data.delijn.be/stops/409465"], ["https://data.delijn.be/stops/503429", "https://data.delijn.be/stops/503439"], ["https://data.delijn.be/stops/503274", "https://data.delijn.be/stops/508274"], ["https://data.delijn.be/stops/200765", "https://data.delijn.be/stops/209379"], ["https://data.delijn.be/stops/408024", "https://data.delijn.be/stops/408025"], ["https://data.delijn.be/stops/403484", "https://data.delijn.be/stops/409255"], ["https://data.delijn.be/stops/407812", "https://data.delijn.be/stops/407813"], ["https://data.delijn.be/stops/503970", "https://data.delijn.be/stops/504810"], ["https://data.delijn.be/stops/208368", "https://data.delijn.be/stops/208777"], ["https://data.delijn.be/stops/406521", "https://data.delijn.be/stops/407221"], ["https://data.delijn.be/stops/307626", "https://data.delijn.be/stops/307629"], ["https://data.delijn.be/stops/502106", "https://data.delijn.be/stops/502124"], ["https://data.delijn.be/stops/103748", "https://data.delijn.be/stops/106740"], ["https://data.delijn.be/stops/501439", "https://data.delijn.be/stops/506439"], ["https://data.delijn.be/stops/206750", "https://data.delijn.be/stops/209474"], ["https://data.delijn.be/stops/304235", "https://data.delijn.be/stops/304515"], ["https://data.delijn.be/stops/201121", "https://data.delijn.be/stops/203888"], ["https://data.delijn.be/stops/209004", "https://data.delijn.be/stops/209005"], ["https://data.delijn.be/stops/206328", "https://data.delijn.be/stops/206331"], ["https://data.delijn.be/stops/503421", "https://data.delijn.be/stops/504840"], ["https://data.delijn.be/stops/407327", "https://data.delijn.be/stops/407343"], ["https://data.delijn.be/stops/302999", "https://data.delijn.be/stops/304708"], ["https://data.delijn.be/stops/206730", "https://data.delijn.be/stops/206978"], ["https://data.delijn.be/stops/200336", "https://data.delijn.be/stops/200338"], ["https://data.delijn.be/stops/200267", "https://data.delijn.be/stops/201445"], ["https://data.delijn.be/stops/301179", "https://data.delijn.be/stops/307103"], ["https://data.delijn.be/stops/409602", "https://data.delijn.be/stops/409606"], ["https://data.delijn.be/stops/409646", "https://data.delijn.be/stops/410393"], ["https://data.delijn.be/stops/102573", "https://data.delijn.be/stops/109163"], ["https://data.delijn.be/stops/303837", "https://data.delijn.be/stops/303866"], ["https://data.delijn.be/stops/206562", "https://data.delijn.be/stops/207413"], ["https://data.delijn.be/stops/305151", "https://data.delijn.be/stops/305175"], ["https://data.delijn.be/stops/304495", "https://data.delijn.be/stops/304498"], ["https://data.delijn.be/stops/109310", "https://data.delijn.be/stops/109344"], ["https://data.delijn.be/stops/300686", "https://data.delijn.be/stops/300690"], ["https://data.delijn.be/stops/206104", "https://data.delijn.be/stops/207101"], ["https://data.delijn.be/stops/202368", "https://data.delijn.be/stops/203998"], ["https://data.delijn.be/stops/306795", "https://data.delijn.be/stops/306796"], ["https://data.delijn.be/stops/102186", "https://data.delijn.be/stops/104244"], ["https://data.delijn.be/stops/304709", "https://data.delijn.be/stops/306300"], ["https://data.delijn.be/stops/505151", "https://data.delijn.be/stops/505154"], ["https://data.delijn.be/stops/204393", "https://data.delijn.be/stops/204769"], ["https://data.delijn.be/stops/304289", "https://data.delijn.be/stops/304295"], ["https://data.delijn.be/stops/301600", "https://data.delijn.be/stops/301601"], ["https://data.delijn.be/stops/503918", "https://data.delijn.be/stops/505255"], ["https://data.delijn.be/stops/106364", "https://data.delijn.be/stops/106367"], ["https://data.delijn.be/stops/502769", "https://data.delijn.be/stops/507601"], ["https://data.delijn.be/stops/303853", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/106745", "https://data.delijn.be/stops/109775"], ["https://data.delijn.be/stops/503082", "https://data.delijn.be/stops/508082"], ["https://data.delijn.be/stops/300404", "https://data.delijn.be/stops/307001"], ["https://data.delijn.be/stops/502118", "https://data.delijn.be/stops/502584"], ["https://data.delijn.be/stops/204032", "https://data.delijn.be/stops/204558"], ["https://data.delijn.be/stops/204535", "https://data.delijn.be/stops/205695"], ["https://data.delijn.be/stops/507379", "https://data.delijn.be/stops/507404"], ["https://data.delijn.be/stops/200819", "https://data.delijn.be/stops/200845"], ["https://data.delijn.be/stops/500562", "https://data.delijn.be/stops/500566"], ["https://data.delijn.be/stops/203925", "https://data.delijn.be/stops/211022"], ["https://data.delijn.be/stops/109584", "https://data.delijn.be/stops/109586"], ["https://data.delijn.be/stops/300212", "https://data.delijn.be/stops/307464"], ["https://data.delijn.be/stops/303458", "https://data.delijn.be/stops/304225"], ["https://data.delijn.be/stops/202881", "https://data.delijn.be/stops/203878"], ["https://data.delijn.be/stops/106488", "https://data.delijn.be/stops/106489"], ["https://data.delijn.be/stops/503338", "https://data.delijn.be/stops/508338"], ["https://data.delijn.be/stops/204114", "https://data.delijn.be/stops/205111"], ["https://data.delijn.be/stops/107709", "https://data.delijn.be/stops/107710"], ["https://data.delijn.be/stops/506059", "https://data.delijn.be/stops/506084"], ["https://data.delijn.be/stops/503719", "https://data.delijn.be/stops/504967"], ["https://data.delijn.be/stops/205471", "https://data.delijn.be/stops/205472"], ["https://data.delijn.be/stops/204109", "https://data.delijn.be/stops/205109"], ["https://data.delijn.be/stops/405222", "https://data.delijn.be/stops/406312"], ["https://data.delijn.be/stops/305091", "https://data.delijn.be/stops/305093"], ["https://data.delijn.be/stops/201828", "https://data.delijn.be/stops/208283"], ["https://data.delijn.be/stops/400548", "https://data.delijn.be/stops/400551"], ["https://data.delijn.be/stops/401253", "https://data.delijn.be/stops/401255"], ["https://data.delijn.be/stops/503969", "https://data.delijn.be/stops/505641"], ["https://data.delijn.be/stops/403681", "https://data.delijn.be/stops/405124"], ["https://data.delijn.be/stops/502755", "https://data.delijn.be/stops/502756"], ["https://data.delijn.be/stops/408275", "https://data.delijn.be/stops/408396"], ["https://data.delijn.be/stops/108931", "https://data.delijn.be/stops/108933"], ["https://data.delijn.be/stops/200486", "https://data.delijn.be/stops/201486"], ["https://data.delijn.be/stops/501408", "https://data.delijn.be/stops/501418"], ["https://data.delijn.be/stops/302394", "https://data.delijn.be/stops/306194"], ["https://data.delijn.be/stops/406561", "https://data.delijn.be/stops/406562"], ["https://data.delijn.be/stops/504734", "https://data.delijn.be/stops/509507"], ["https://data.delijn.be/stops/504490", "https://data.delijn.be/stops/509060"], ["https://data.delijn.be/stops/104906", "https://data.delijn.be/stops/106595"], ["https://data.delijn.be/stops/402444", "https://data.delijn.be/stops/402445"], ["https://data.delijn.be/stops/300645", "https://data.delijn.be/stops/306746"], ["https://data.delijn.be/stops/206176", "https://data.delijn.be/stops/207176"], ["https://data.delijn.be/stops/303625", "https://data.delijn.be/stops/304923"], ["https://data.delijn.be/stops/301293", "https://data.delijn.be/stops/301294"], ["https://data.delijn.be/stops/200954", "https://data.delijn.be/stops/201629"], ["https://data.delijn.be/stops/101675", "https://data.delijn.be/stops/105495"], ["https://data.delijn.be/stops/504161", "https://data.delijn.be/stops/509193"], ["https://data.delijn.be/stops/203340", "https://data.delijn.be/stops/203483"], ["https://data.delijn.be/stops/503384", "https://data.delijn.be/stops/508384"], ["https://data.delijn.be/stops/404166", "https://data.delijn.be/stops/404196"], ["https://data.delijn.be/stops/504756", "https://data.delijn.be/stops/509756"], ["https://data.delijn.be/stops/105531", "https://data.delijn.be/stops/105534"], ["https://data.delijn.be/stops/407027", "https://data.delijn.be/stops/407030"], ["https://data.delijn.be/stops/403648", "https://data.delijn.be/stops/403654"], ["https://data.delijn.be/stops/200388", "https://data.delijn.be/stops/208263"], ["https://data.delijn.be/stops/307389", "https://data.delijn.be/stops/308273"], ["https://data.delijn.be/stops/304219", "https://data.delijn.be/stops/304233"], ["https://data.delijn.be/stops/101345", "https://data.delijn.be/stops/102910"], ["https://data.delijn.be/stops/105616", "https://data.delijn.be/stops/105619"], ["https://data.delijn.be/stops/205395", "https://data.delijn.be/stops/205763"], ["https://data.delijn.be/stops/408667", "https://data.delijn.be/stops/408705"], ["https://data.delijn.be/stops/307341", "https://data.delijn.be/stops/308535"], ["https://data.delijn.be/stops/501549", "https://data.delijn.be/stops/506245"], ["https://data.delijn.be/stops/407839", "https://data.delijn.be/stops/407903"], ["https://data.delijn.be/stops/403121", "https://data.delijn.be/stops/403445"], ["https://data.delijn.be/stops/301628", "https://data.delijn.be/stops/302119"], ["https://data.delijn.be/stops/402096", "https://data.delijn.be/stops/402320"], ["https://data.delijn.be/stops/206505", "https://data.delijn.be/stops/207505"], ["https://data.delijn.be/stops/207909", "https://data.delijn.be/stops/207931"], ["https://data.delijn.be/stops/303246", "https://data.delijn.be/stops/304714"], ["https://data.delijn.be/stops/407980", "https://data.delijn.be/stops/408089"], ["https://data.delijn.be/stops/404457", "https://data.delijn.be/stops/404458"], ["https://data.delijn.be/stops/509352", "https://data.delijn.be/stops/509460"], ["https://data.delijn.be/stops/405807", "https://data.delijn.be/stops/409705"], ["https://data.delijn.be/stops/202648", "https://data.delijn.be/stops/203355"], ["https://data.delijn.be/stops/201875", "https://data.delijn.be/stops/203655"], ["https://data.delijn.be/stops/105778", "https://data.delijn.be/stops/105936"], ["https://data.delijn.be/stops/401003", "https://data.delijn.be/stops/401007"], ["https://data.delijn.be/stops/308416", "https://data.delijn.be/stops/308422"], ["https://data.delijn.be/stops/101789", "https://data.delijn.be/stops/105614"], ["https://data.delijn.be/stops/201196", "https://data.delijn.be/stops/201199"], ["https://data.delijn.be/stops/306132", "https://data.delijn.be/stops/306683"], ["https://data.delijn.be/stops/102596", "https://data.delijn.be/stops/102643"], ["https://data.delijn.be/stops/504105", "https://data.delijn.be/stops/509105"], ["https://data.delijn.be/stops/104662", "https://data.delijn.be/stops/306607"], ["https://data.delijn.be/stops/107494", "https://data.delijn.be/stops/107524"], ["https://data.delijn.be/stops/104377", "https://data.delijn.be/stops/104732"], ["https://data.delijn.be/stops/200291", "https://data.delijn.be/stops/210200"], ["https://data.delijn.be/stops/304573", "https://data.delijn.be/stops/304574"], ["https://data.delijn.be/stops/109430", "https://data.delijn.be/stops/109431"], ["https://data.delijn.be/stops/501457", "https://data.delijn.be/stops/501540"], ["https://data.delijn.be/stops/202494", "https://data.delijn.be/stops/203171"], ["https://data.delijn.be/stops/504441", "https://data.delijn.be/stops/509441"], ["https://data.delijn.be/stops/407826", "https://data.delijn.be/stops/407992"], ["https://data.delijn.be/stops/300332", "https://data.delijn.be/stops/307478"], ["https://data.delijn.be/stops/401946", "https://data.delijn.be/stops/405846"], ["https://data.delijn.be/stops/207444", "https://data.delijn.be/stops/207445"], ["https://data.delijn.be/stops/105282", "https://data.delijn.be/stops/105353"], ["https://data.delijn.be/stops/208834", "https://data.delijn.be/stops/209316"], ["https://data.delijn.be/stops/204153", "https://data.delijn.be/stops/205152"], ["https://data.delijn.be/stops/503678", "https://data.delijn.be/stops/503680"], ["https://data.delijn.be/stops/101825", "https://data.delijn.be/stops/103338"], ["https://data.delijn.be/stops/501097", "https://data.delijn.be/stops/507218"], ["https://data.delijn.be/stops/200590", "https://data.delijn.be/stops/201583"], ["https://data.delijn.be/stops/408202", "https://data.delijn.be/stops/408355"], ["https://data.delijn.be/stops/508496", "https://data.delijn.be/stops/508502"], ["https://data.delijn.be/stops/500024", "https://data.delijn.be/stops/508893"], ["https://data.delijn.be/stops/404538", "https://data.delijn.be/stops/404566"], ["https://data.delijn.be/stops/201730", "https://data.delijn.be/stops/210607"], ["https://data.delijn.be/stops/405244", "https://data.delijn.be/stops/405245"], ["https://data.delijn.be/stops/400219", "https://data.delijn.be/stops/408551"], ["https://data.delijn.be/stops/101788", "https://data.delijn.be/stops/105612"], ["https://data.delijn.be/stops/302296", "https://data.delijn.be/stops/306791"], ["https://data.delijn.be/stops/303304", "https://data.delijn.be/stops/303308"], ["https://data.delijn.be/stops/403088", "https://data.delijn.be/stops/403089"], ["https://data.delijn.be/stops/201475", "https://data.delijn.be/stops/210063"], ["https://data.delijn.be/stops/501265", "https://data.delijn.be/stops/506474"], ["https://data.delijn.be/stops/204251", "https://data.delijn.be/stops/204252"], ["https://data.delijn.be/stops/101171", "https://data.delijn.be/stops/102705"], ["https://data.delijn.be/stops/505639", "https://data.delijn.be/stops/508801"], ["https://data.delijn.be/stops/503327", "https://data.delijn.be/stops/505752"], ["https://data.delijn.be/stops/105573", "https://data.delijn.be/stops/106352"], ["https://data.delijn.be/stops/200802", "https://data.delijn.be/stops/502596"], ["https://data.delijn.be/stops/401342", "https://data.delijn.be/stops/401394"], ["https://data.delijn.be/stops/106473", "https://data.delijn.be/stops/107048"], ["https://data.delijn.be/stops/503036", "https://data.delijn.be/stops/508185"], ["https://data.delijn.be/stops/503538", "https://data.delijn.be/stops/508538"], ["https://data.delijn.be/stops/300788", "https://data.delijn.be/stops/306116"], ["https://data.delijn.be/stops/302280", "https://data.delijn.be/stops/302281"], ["https://data.delijn.be/stops/206795", "https://data.delijn.be/stops/209049"], ["https://data.delijn.be/stops/407058", "https://data.delijn.be/stops/407059"], ["https://data.delijn.be/stops/506413", "https://data.delijn.be/stops/506414"], ["https://data.delijn.be/stops/206194", "https://data.delijn.be/stops/207193"], ["https://data.delijn.be/stops/400761", "https://data.delijn.be/stops/400863"], ["https://data.delijn.be/stops/405254", "https://data.delijn.be/stops/405255"], ["https://data.delijn.be/stops/101067", "https://data.delijn.be/stops/101068"], ["https://data.delijn.be/stops/207540", "https://data.delijn.be/stops/207560"], ["https://data.delijn.be/stops/300473", "https://data.delijn.be/stops/308062"], ["https://data.delijn.be/stops/206443", "https://data.delijn.be/stops/209685"], ["https://data.delijn.be/stops/203974", "https://data.delijn.be/stops/204078"], ["https://data.delijn.be/stops/502186", "https://data.delijn.be/stops/507183"], ["https://data.delijn.be/stops/501558", "https://data.delijn.be/stops/501559"], ["https://data.delijn.be/stops/201816", "https://data.delijn.be/stops/208250"], ["https://data.delijn.be/stops/204757", "https://data.delijn.be/stops/205755"], ["https://data.delijn.be/stops/108436", "https://data.delijn.be/stops/108437"], ["https://data.delijn.be/stops/305012", "https://data.delijn.be/stops/305014"], ["https://data.delijn.be/stops/402323", "https://data.delijn.be/stops/405557"], ["https://data.delijn.be/stops/301153", "https://data.delijn.be/stops/301155"], ["https://data.delijn.be/stops/405254", "https://data.delijn.be/stops/406310"], ["https://data.delijn.be/stops/409677", "https://data.delijn.be/stops/409707"], ["https://data.delijn.be/stops/407456", "https://data.delijn.be/stops/407457"], ["https://data.delijn.be/stops/505514", "https://data.delijn.be/stops/505614"], ["https://data.delijn.be/stops/208009", "https://data.delijn.be/stops/209010"], ["https://data.delijn.be/stops/405293", "https://data.delijn.be/stops/405295"], ["https://data.delijn.be/stops/403564", "https://data.delijn.be/stops/410286"], ["https://data.delijn.be/stops/200504", "https://data.delijn.be/stops/201157"], ["https://data.delijn.be/stops/204566", "https://data.delijn.be/stops/303672"], ["https://data.delijn.be/stops/101982", "https://data.delijn.be/stops/300071"], ["https://data.delijn.be/stops/402046", "https://data.delijn.be/stops/410149"], ["https://data.delijn.be/stops/402878", "https://data.delijn.be/stops/306307"], ["https://data.delijn.be/stops/206058", "https://data.delijn.be/stops/206875"], ["https://data.delijn.be/stops/502126", "https://data.delijn.be/stops/506051"], ["https://data.delijn.be/stops/102973", "https://data.delijn.be/stops/105565"], ["https://data.delijn.be/stops/502288", "https://data.delijn.be/stops/505438"], ["https://data.delijn.be/stops/401764", "https://data.delijn.be/stops/406346"], ["https://data.delijn.be/stops/504513", "https://data.delijn.be/stops/505311"], ["https://data.delijn.be/stops/205692", "https://data.delijn.be/stops/205700"], ["https://data.delijn.be/stops/203831", "https://data.delijn.be/stops/210065"], ["https://data.delijn.be/stops/502550", "https://data.delijn.be/stops/502674"], ["https://data.delijn.be/stops/404420", "https://data.delijn.be/stops/404421"], ["https://data.delijn.be/stops/302081", "https://data.delijn.be/stops/302082"], ["https://data.delijn.be/stops/207700", "https://data.delijn.be/stops/207715"], ["https://data.delijn.be/stops/102283", "https://data.delijn.be/stops/103214"], ["https://data.delijn.be/stops/508162", "https://data.delijn.be/stops/508168"], ["https://data.delijn.be/stops/202922", "https://data.delijn.be/stops/203922"], ["https://data.delijn.be/stops/500556", "https://data.delijn.be/stops/507953"], ["https://data.delijn.be/stops/505550", "https://data.delijn.be/stops/505551"], ["https://data.delijn.be/stops/400287", "https://data.delijn.be/stops/404827"], ["https://data.delijn.be/stops/103224", "https://data.delijn.be/stops/105385"], ["https://data.delijn.be/stops/109399", "https://data.delijn.be/stops/109427"], ["https://data.delijn.be/stops/202725", "https://data.delijn.be/stops/203326"], ["https://data.delijn.be/stops/406957", "https://data.delijn.be/stops/410125"], ["https://data.delijn.be/stops/503300", "https://data.delijn.be/stops/503568"], ["https://data.delijn.be/stops/407209", "https://data.delijn.be/stops/408811"], ["https://data.delijn.be/stops/208097", "https://data.delijn.be/stops/209006"], ["https://data.delijn.be/stops/208801", "https://data.delijn.be/stops/209808"], ["https://data.delijn.be/stops/301602", "https://data.delijn.be/stops/301620"], ["https://data.delijn.be/stops/106343", "https://data.delijn.be/stops/109633"], ["https://data.delijn.be/stops/307082", "https://data.delijn.be/stops/308085"], ["https://data.delijn.be/stops/405335", "https://data.delijn.be/stops/308823"], ["https://data.delijn.be/stops/204717", "https://data.delijn.be/stops/205718"], ["https://data.delijn.be/stops/201148", "https://data.delijn.be/stops/201172"], ["https://data.delijn.be/stops/301837", "https://data.delijn.be/stops/301852"], ["https://data.delijn.be/stops/405050", "https://data.delijn.be/stops/405804"], ["https://data.delijn.be/stops/206142", "https://data.delijn.be/stops/207090"], ["https://data.delijn.be/stops/504002", "https://data.delijn.be/stops/509004"], ["https://data.delijn.be/stops/209646", "https://data.delijn.be/stops/211041"], ["https://data.delijn.be/stops/507657", "https://data.delijn.be/stops/507658"], ["https://data.delijn.be/stops/300634", "https://data.delijn.be/stops/304358"], ["https://data.delijn.be/stops/501290", "https://data.delijn.be/stops/501373"], ["https://data.delijn.be/stops/105391", "https://data.delijn.be/stops/105392"], ["https://data.delijn.be/stops/502932", "https://data.delijn.be/stops/507932"], ["https://data.delijn.be/stops/105243", "https://data.delijn.be/stops/109976"], ["https://data.delijn.be/stops/504229", "https://data.delijn.be/stops/505816"], ["https://data.delijn.be/stops/300964", "https://data.delijn.be/stops/300973"], ["https://data.delijn.be/stops/201234", "https://data.delijn.be/stops/201249"], ["https://data.delijn.be/stops/101524", "https://data.delijn.be/stops/108798"], ["https://data.delijn.be/stops/502592", "https://data.delijn.be/stops/507313"], ["https://data.delijn.be/stops/105376", "https://data.delijn.be/stops/107501"], ["https://data.delijn.be/stops/206763", "https://data.delijn.be/stops/207623"], ["https://data.delijn.be/stops/105552", "https://data.delijn.be/stops/106031"], ["https://data.delijn.be/stops/409365", "https://data.delijn.be/stops/409371"], ["https://data.delijn.be/stops/406198", "https://data.delijn.be/stops/406432"], ["https://data.delijn.be/stops/107837", "https://data.delijn.be/stops/107841"], ["https://data.delijn.be/stops/502732", "https://data.delijn.be/stops/507731"], ["https://data.delijn.be/stops/500051", "https://data.delijn.be/stops/502821"], ["https://data.delijn.be/stops/202532", "https://data.delijn.be/stops/202533"], ["https://data.delijn.be/stops/101909", "https://data.delijn.be/stops/101912"], ["https://data.delijn.be/stops/302616", "https://data.delijn.be/stops/302635"], ["https://data.delijn.be/stops/304887", "https://data.delijn.be/stops/306166"], ["https://data.delijn.be/stops/503475", "https://data.delijn.be/stops/504807"], ["https://data.delijn.be/stops/503818", "https://data.delijn.be/stops/508816"], ["https://data.delijn.be/stops/107280", "https://data.delijn.be/stops/108590"], ["https://data.delijn.be/stops/507025", "https://data.delijn.be/stops/507308"], ["https://data.delijn.be/stops/104027", "https://data.delijn.be/stops/106899"], ["https://data.delijn.be/stops/109245", "https://data.delijn.be/stops/109246"], ["https://data.delijn.be/stops/102990", "https://data.delijn.be/stops/109639"], ["https://data.delijn.be/stops/208249", "https://data.delijn.be/stops/209250"], ["https://data.delijn.be/stops/304161", "https://data.delijn.be/stops/304164"], ["https://data.delijn.be/stops/400815", "https://data.delijn.be/stops/403571"], ["https://data.delijn.be/stops/403837", "https://data.delijn.be/stops/403848"], ["https://data.delijn.be/stops/402502", "https://data.delijn.be/stops/402503"], ["https://data.delijn.be/stops/204245", "https://data.delijn.be/stops/204259"], ["https://data.delijn.be/stops/101549", "https://data.delijn.be/stops/107804"], ["https://data.delijn.be/stops/306182", "https://data.delijn.be/stops/306187"], ["https://data.delijn.be/stops/503605", "https://data.delijn.be/stops/508605"], ["https://data.delijn.be/stops/400915", "https://data.delijn.be/stops/406876"], ["https://data.delijn.be/stops/201171", "https://data.delijn.be/stops/201229"], ["https://data.delijn.be/stops/503522", "https://data.delijn.be/stops/508069"], ["https://data.delijn.be/stops/200508", "https://data.delijn.be/stops/201552"], ["https://data.delijn.be/stops/404680", "https://data.delijn.be/stops/408908"], ["https://data.delijn.be/stops/408685", "https://data.delijn.be/stops/408687"], ["https://data.delijn.be/stops/402026", "https://data.delijn.be/stops/403885"], ["https://data.delijn.be/stops/304142", "https://data.delijn.be/stops/304143"], ["https://data.delijn.be/stops/509204", "https://data.delijn.be/stops/509205"], ["https://data.delijn.be/stops/108187", "https://data.delijn.be/stops/108357"], ["https://data.delijn.be/stops/402261", "https://data.delijn.be/stops/402473"], ["https://data.delijn.be/stops/305514", "https://data.delijn.be/stops/308549"], ["https://data.delijn.be/stops/202295", "https://data.delijn.be/stops/203295"], ["https://data.delijn.be/stops/501471", "https://data.delijn.be/stops/506471"], ["https://data.delijn.be/stops/301343", "https://data.delijn.be/stops/306119"], ["https://data.delijn.be/stops/204163", "https://data.delijn.be/stops/207243"], ["https://data.delijn.be/stops/104677", "https://data.delijn.be/stops/104683"], ["https://data.delijn.be/stops/205533", "https://data.delijn.be/stops/205537"], ["https://data.delijn.be/stops/302208", "https://data.delijn.be/stops/302209"], ["https://data.delijn.be/stops/207774", "https://data.delijn.be/stops/209186"], ["https://data.delijn.be/stops/208383", "https://data.delijn.be/stops/209237"], ["https://data.delijn.be/stops/503820", "https://data.delijn.be/stops/508817"], ["https://data.delijn.be/stops/407624", "https://data.delijn.be/stops/407625"], ["https://data.delijn.be/stops/403056", "https://data.delijn.be/stops/410361"], ["https://data.delijn.be/stops/402286", "https://data.delijn.be/stops/402287"], ["https://data.delijn.be/stops/300628", "https://data.delijn.be/stops/307861"], ["https://data.delijn.be/stops/105203", "https://data.delijn.be/stops/105206"], ["https://data.delijn.be/stops/107610", "https://data.delijn.be/stops/108170"], ["https://data.delijn.be/stops/404984", "https://data.delijn.be/stops/408553"], ["https://data.delijn.be/stops/200823", "https://data.delijn.be/stops/200894"], ["https://data.delijn.be/stops/108683", "https://data.delijn.be/stops/108684"], ["https://data.delijn.be/stops/403104", "https://data.delijn.be/stops/403116"], ["https://data.delijn.be/stops/500119", "https://data.delijn.be/stops/507672"], ["https://data.delijn.be/stops/505141", "https://data.delijn.be/stops/505232"], ["https://data.delijn.be/stops/508685", "https://data.delijn.be/stops/508687"], ["https://data.delijn.be/stops/406155", "https://data.delijn.be/stops/406157"], ["https://data.delijn.be/stops/503087", "https://data.delijn.be/stops/505969"], ["https://data.delijn.be/stops/304019", "https://data.delijn.be/stops/304038"], ["https://data.delijn.be/stops/202443", "https://data.delijn.be/stops/203442"], ["https://data.delijn.be/stops/103698", "https://data.delijn.be/stops/103700"], ["https://data.delijn.be/stops/501160", "https://data.delijn.be/stops/501668"], ["https://data.delijn.be/stops/503650", "https://data.delijn.be/stops/509757"], ["https://data.delijn.be/stops/501125", "https://data.delijn.be/stops/506125"], ["https://data.delijn.be/stops/301772", "https://data.delijn.be/stops/301778"], ["https://data.delijn.be/stops/504637", "https://data.delijn.be/stops/509637"], ["https://data.delijn.be/stops/204427", "https://data.delijn.be/stops/205426"], ["https://data.delijn.be/stops/402159", "https://data.delijn.be/stops/402322"], ["https://data.delijn.be/stops/402221", "https://data.delijn.be/stops/402373"], ["https://data.delijn.be/stops/202694", "https://data.delijn.be/stops/203693"], ["https://data.delijn.be/stops/107520", "https://data.delijn.be/stops/109683"], ["https://data.delijn.be/stops/302932", "https://data.delijn.be/stops/303071"], ["https://data.delijn.be/stops/307337", "https://data.delijn.be/stops/308598"], ["https://data.delijn.be/stops/403832", "https://data.delijn.be/stops/410116"], ["https://data.delijn.be/stops/503964", "https://data.delijn.be/stops/509285"], ["https://data.delijn.be/stops/109145", "https://data.delijn.be/stops/109150"], ["https://data.delijn.be/stops/300120", "https://data.delijn.be/stops/304940"], ["https://data.delijn.be/stops/208919", "https://data.delijn.be/stops/211075"], ["https://data.delijn.be/stops/304436", "https://data.delijn.be/stops/304463"], ["https://data.delijn.be/stops/403790", "https://data.delijn.be/stops/404264"], ["https://data.delijn.be/stops/503171", "https://data.delijn.be/stops/508158"], ["https://data.delijn.be/stops/305744", "https://data.delijn.be/stops/306332"], ["https://data.delijn.be/stops/104513", "https://data.delijn.be/stops/107801"], ["https://data.delijn.be/stops/202119", "https://data.delijn.be/stops/205073"], ["https://data.delijn.be/stops/304486", "https://data.delijn.be/stops/304491"], ["https://data.delijn.be/stops/204750", "https://data.delijn.be/stops/205751"], ["https://data.delijn.be/stops/102485", "https://data.delijn.be/stops/104950"], ["https://data.delijn.be/stops/404150", "https://data.delijn.be/stops/404151"], ["https://data.delijn.be/stops/502795", "https://data.delijn.be/stops/507017"], ["https://data.delijn.be/stops/101226", "https://data.delijn.be/stops/107803"], ["https://data.delijn.be/stops/209648", "https://data.delijn.be/stops/210041"], ["https://data.delijn.be/stops/400973", "https://data.delijn.be/stops/400974"], ["https://data.delijn.be/stops/200551", "https://data.delijn.be/stops/200780"], ["https://data.delijn.be/stops/501191", "https://data.delijn.be/stops/501196"], ["https://data.delijn.be/stops/405285", "https://data.delijn.be/stops/407333"], ["https://data.delijn.be/stops/503492", "https://data.delijn.be/stops/505137"], ["https://data.delijn.be/stops/102414", "https://data.delijn.be/stops/105316"], ["https://data.delijn.be/stops/406228", "https://data.delijn.be/stops/406229"], ["https://data.delijn.be/stops/202099", "https://data.delijn.be/stops/203258"], ["https://data.delijn.be/stops/303720", "https://data.delijn.be/stops/303721"], ["https://data.delijn.be/stops/106527", "https://data.delijn.be/stops/106529"], ["https://data.delijn.be/stops/304320", "https://data.delijn.be/stops/304331"], ["https://data.delijn.be/stops/301104", "https://data.delijn.be/stops/302926"], ["https://data.delijn.be/stops/508187", "https://data.delijn.be/stops/508267"], ["https://data.delijn.be/stops/504838", "https://data.delijn.be/stops/504985"], ["https://data.delijn.be/stops/407371", "https://data.delijn.be/stops/407372"], ["https://data.delijn.be/stops/404659", "https://data.delijn.be/stops/404667"], ["https://data.delijn.be/stops/103626", "https://data.delijn.be/stops/107731"], ["https://data.delijn.be/stops/509303", "https://data.delijn.be/stops/509949"], ["https://data.delijn.be/stops/300945", "https://data.delijn.be/stops/301007"], ["https://data.delijn.be/stops/103597", "https://data.delijn.be/stops/103598"], ["https://data.delijn.be/stops/503500", "https://data.delijn.be/stops/503501"], ["https://data.delijn.be/stops/406339", "https://data.delijn.be/stops/406410"], ["https://data.delijn.be/stops/402214", "https://data.delijn.be/stops/404856"], ["https://data.delijn.be/stops/105083", "https://data.delijn.be/stops/105084"], ["https://data.delijn.be/stops/109071", "https://data.delijn.be/stops/109072"], ["https://data.delijn.be/stops/105014", "https://data.delijn.be/stops/105082"], ["https://data.delijn.be/stops/508002", "https://data.delijn.be/stops/508004"], ["https://data.delijn.be/stops/407141", "https://data.delijn.be/stops/407297"], ["https://data.delijn.be/stops/402609", "https://data.delijn.be/stops/405472"], ["https://data.delijn.be/stops/400344", "https://data.delijn.be/stops/406768"], ["https://data.delijn.be/stops/409060", "https://data.delijn.be/stops/409069"], ["https://data.delijn.be/stops/105133", "https://data.delijn.be/stops/105138"], ["https://data.delijn.be/stops/208123", "https://data.delijn.be/stops/219004"], ["https://data.delijn.be/stops/203009", "https://data.delijn.be/stops/203651"], ["https://data.delijn.be/stops/402087", "https://data.delijn.be/stops/402088"], ["https://data.delijn.be/stops/402097", "https://data.delijn.be/stops/402316"], ["https://data.delijn.be/stops/101296", "https://data.delijn.be/stops/101297"], ["https://data.delijn.be/stops/503372", "https://data.delijn.be/stops/508372"], ["https://data.delijn.be/stops/208546", "https://data.delijn.be/stops/209545"], ["https://data.delijn.be/stops/408625", "https://data.delijn.be/stops/408728"], ["https://data.delijn.be/stops/401592", "https://data.delijn.be/stops/401598"], ["https://data.delijn.be/stops/206323", "https://data.delijn.be/stops/207458"], ["https://data.delijn.be/stops/405536", "https://data.delijn.be/stops/301483"], ["https://data.delijn.be/stops/503810", "https://data.delijn.be/stops/508811"], ["https://data.delijn.be/stops/407965", "https://data.delijn.be/stops/408429"], ["https://data.delijn.be/stops/303111", "https://data.delijn.be/stops/303112"], ["https://data.delijn.be/stops/505442", "https://data.delijn.be/stops/509146"], ["https://data.delijn.be/stops/407684", "https://data.delijn.be/stops/407690"], ["https://data.delijn.be/stops/503775", "https://data.delijn.be/stops/508772"], ["https://data.delijn.be/stops/508140", "https://data.delijn.be/stops/508314"], ["https://data.delijn.be/stops/304435", "https://data.delijn.be/stops/307716"], ["https://data.delijn.be/stops/105772", "https://data.delijn.be/stops/105779"], ["https://data.delijn.be/stops/208071", "https://data.delijn.be/stops/209194"], ["https://data.delijn.be/stops/107608", "https://data.delijn.be/stops/107609"], ["https://data.delijn.be/stops/406069", "https://data.delijn.be/stops/406379"], ["https://data.delijn.be/stops/503035", "https://data.delijn.be/stops/504368"], ["https://data.delijn.be/stops/305065", "https://data.delijn.be/stops/306917"], ["https://data.delijn.be/stops/206225", "https://data.delijn.be/stops/300196"], ["https://data.delijn.be/stops/302979", "https://data.delijn.be/stops/303441"], ["https://data.delijn.be/stops/507525", "https://data.delijn.be/stops/507527"], ["https://data.delijn.be/stops/303175", "https://data.delijn.be/stops/305526"], ["https://data.delijn.be/stops/104033", "https://data.delijn.be/stops/205280"], ["https://data.delijn.be/stops/201648", "https://data.delijn.be/stops/203863"], ["https://data.delijn.be/stops/206264", "https://data.delijn.be/stops/207052"], ["https://data.delijn.be/stops/202382", "https://data.delijn.be/stops/203382"], ["https://data.delijn.be/stops/204121", "https://data.delijn.be/stops/205788"], ["https://data.delijn.be/stops/502095", "https://data.delijn.be/stops/502107"], ["https://data.delijn.be/stops/406427", "https://data.delijn.be/stops/409397"], ["https://data.delijn.be/stops/203819", "https://data.delijn.be/stops/203911"], ["https://data.delijn.be/stops/200547", "https://data.delijn.be/stops/208431"], ["https://data.delijn.be/stops/505185", "https://data.delijn.be/stops/505188"], ["https://data.delijn.be/stops/208222", "https://data.delijn.be/stops/209283"], ["https://data.delijn.be/stops/105050", "https://data.delijn.be/stops/106709"], ["https://data.delijn.be/stops/405193", "https://data.delijn.be/stops/407333"], ["https://data.delijn.be/stops/401157", "https://data.delijn.be/stops/404286"], ["https://data.delijn.be/stops/503229", "https://data.delijn.be/stops/508786"], ["https://data.delijn.be/stops/201204", "https://data.delijn.be/stops/201210"], ["https://data.delijn.be/stops/102013", "https://data.delijn.be/stops/107908"], ["https://data.delijn.be/stops/206753", "https://data.delijn.be/stops/209500"], ["https://data.delijn.be/stops/408056", "https://data.delijn.be/stops/408121"], ["https://data.delijn.be/stops/300339", "https://data.delijn.be/stops/308991"], ["https://data.delijn.be/stops/305345", "https://data.delijn.be/stops/305346"], ["https://data.delijn.be/stops/105189", "https://data.delijn.be/stops/108890"], ["https://data.delijn.be/stops/102465", "https://data.delijn.be/stops/103393"], ["https://data.delijn.be/stops/401386", "https://data.delijn.be/stops/407323"], ["https://data.delijn.be/stops/206597", "https://data.delijn.be/stops/206662"], ["https://data.delijn.be/stops/509408", "https://data.delijn.be/stops/509425"], ["https://data.delijn.be/stops/300350", "https://data.delijn.be/stops/304054"], ["https://data.delijn.be/stops/506053", "https://data.delijn.be/stops/506057"], ["https://data.delijn.be/stops/208569", "https://data.delijn.be/stops/208655"], ["https://data.delijn.be/stops/304642", "https://data.delijn.be/stops/307791"], ["https://data.delijn.be/stops/202535", "https://data.delijn.be/stops/204064"], ["https://data.delijn.be/stops/404916", "https://data.delijn.be/stops/404922"], ["https://data.delijn.be/stops/307561", "https://data.delijn.be/stops/307583"], ["https://data.delijn.be/stops/404307", "https://data.delijn.be/stops/409690"], ["https://data.delijn.be/stops/300626", "https://data.delijn.be/stops/300628"], ["https://data.delijn.be/stops/300109", "https://data.delijn.be/stops/306853"], ["https://data.delijn.be/stops/300822", "https://data.delijn.be/stops/300839"], ["https://data.delijn.be/stops/401537", "https://data.delijn.be/stops/401883"], ["https://data.delijn.be/stops/302850", "https://data.delijn.be/stops/308822"], ["https://data.delijn.be/stops/107369", "https://data.delijn.be/stops/107371"], ["https://data.delijn.be/stops/505362", "https://data.delijn.be/stops/509244"], ["https://data.delijn.be/stops/502141", "https://data.delijn.be/stops/502145"], ["https://data.delijn.be/stops/304398", "https://data.delijn.be/stops/307402"], ["https://data.delijn.be/stops/504294", "https://data.delijn.be/stops/504296"], ["https://data.delijn.be/stops/301360", "https://data.delijn.be/stops/301362"], ["https://data.delijn.be/stops/208806", "https://data.delijn.be/stops/208812"], ["https://data.delijn.be/stops/505714", "https://data.delijn.be/stops/506002"], ["https://data.delijn.be/stops/507306", "https://data.delijn.be/stops/507597"], ["https://data.delijn.be/stops/103036", "https://data.delijn.be/stops/106404"], ["https://data.delijn.be/stops/202412", "https://data.delijn.be/stops/203421"], ["https://data.delijn.be/stops/501474", "https://data.delijn.be/stops/506283"], ["https://data.delijn.be/stops/303191", "https://data.delijn.be/stops/303197"], ["https://data.delijn.be/stops/308469", "https://data.delijn.be/stops/308471"], ["https://data.delijn.be/stops/509621", "https://data.delijn.be/stops/509628"], ["https://data.delijn.be/stops/509444", "https://data.delijn.be/stops/509445"], ["https://data.delijn.be/stops/207046", "https://data.delijn.be/stops/207216"], ["https://data.delijn.be/stops/200012", "https://data.delijn.be/stops/201014"], ["https://data.delijn.be/stops/102567", "https://data.delijn.be/stops/406497"], ["https://data.delijn.be/stops/200348", "https://data.delijn.be/stops/200349"], ["https://data.delijn.be/stops/301715", "https://data.delijn.be/stops/301717"], ["https://data.delijn.be/stops/206001", "https://data.delijn.be/stops/207063"], ["https://data.delijn.be/stops/405034", "https://data.delijn.be/stops/405756"], ["https://data.delijn.be/stops/303754", "https://data.delijn.be/stops/303771"], ["https://data.delijn.be/stops/505413", "https://data.delijn.be/stops/507916"], ["https://data.delijn.be/stops/405380", "https://data.delijn.be/stops/408444"], ["https://data.delijn.be/stops/301368", "https://data.delijn.be/stops/303642"], ["https://data.delijn.be/stops/208084", "https://data.delijn.be/stops/209701"], ["https://data.delijn.be/stops/307422", "https://data.delijn.be/stops/307501"], ["https://data.delijn.be/stops/200755", "https://data.delijn.be/stops/505974"], ["https://data.delijn.be/stops/300055", "https://data.delijn.be/stops/306791"], ["https://data.delijn.be/stops/105763", "https://data.delijn.be/stops/109527"], ["https://data.delijn.be/stops/504335", "https://data.delijn.be/stops/504341"], ["https://data.delijn.be/stops/207282", "https://data.delijn.be/stops/207397"], ["https://data.delijn.be/stops/303851", "https://data.delijn.be/stops/303977"], ["https://data.delijn.be/stops/507181", "https://data.delijn.be/stops/507686"], ["https://data.delijn.be/stops/102399", "https://data.delijn.be/stops/107865"], ["https://data.delijn.be/stops/403874", "https://data.delijn.be/stops/403875"], ["https://data.delijn.be/stops/302110", "https://data.delijn.be/stops/302111"], ["https://data.delijn.be/stops/301622", "https://data.delijn.be/stops/301623"], ["https://data.delijn.be/stops/403290", "https://data.delijn.be/stops/403291"], ["https://data.delijn.be/stops/401150", "https://data.delijn.be/stops/409140"], ["https://data.delijn.be/stops/303046", "https://data.delijn.be/stops/307897"], ["https://data.delijn.be/stops/103229", "https://data.delijn.be/stops/103596"], ["https://data.delijn.be/stops/102924", "https://data.delijn.be/stops/108972"], ["https://data.delijn.be/stops/402793", "https://data.delijn.be/stops/402795"], ["https://data.delijn.be/stops/501069", "https://data.delijn.be/stops/501095"], ["https://data.delijn.be/stops/206494", "https://data.delijn.be/stops/207494"], ["https://data.delijn.be/stops/102121", "https://data.delijn.be/stops/109360"], ["https://data.delijn.be/stops/103845", "https://data.delijn.be/stops/104450"], ["https://data.delijn.be/stops/201184", "https://data.delijn.be/stops/201920"], ["https://data.delijn.be/stops/101555", "https://data.delijn.be/stops/109673"], ["https://data.delijn.be/stops/108761", "https://data.delijn.be/stops/305783"], ["https://data.delijn.be/stops/106011", "https://data.delijn.be/stops/106013"], ["https://data.delijn.be/stops/104448", "https://data.delijn.be/stops/107811"], ["https://data.delijn.be/stops/502228", "https://data.delijn.be/stops/504051"], ["https://data.delijn.be/stops/208352", "https://data.delijn.be/stops/208353"], ["https://data.delijn.be/stops/504941", "https://data.delijn.be/stops/508897"], ["https://data.delijn.be/stops/502621", "https://data.delijn.be/stops/507909"], ["https://data.delijn.be/stops/304075", "https://data.delijn.be/stops/307050"], ["https://data.delijn.be/stops/200797", "https://data.delijn.be/stops/201887"], ["https://data.delijn.be/stops/401246", "https://data.delijn.be/stops/401247"], ["https://data.delijn.be/stops/403552", "https://data.delijn.be/stops/403553"], ["https://data.delijn.be/stops/105560", "https://data.delijn.be/stops/108980"], ["https://data.delijn.be/stops/200390", "https://data.delijn.be/stops/208721"], ["https://data.delijn.be/stops/208409", "https://data.delijn.be/stops/208764"], ["https://data.delijn.be/stops/502197", "https://data.delijn.be/stops/507197"], ["https://data.delijn.be/stops/501636", "https://data.delijn.be/stops/506375"], ["https://data.delijn.be/stops/103624", "https://data.delijn.be/stops/107732"], ["https://data.delijn.be/stops/200129", "https://data.delijn.be/stops/200241"], ["https://data.delijn.be/stops/202423", "https://data.delijn.be/stops/203666"], ["https://data.delijn.be/stops/409467", "https://data.delijn.be/stops/409468"], ["https://data.delijn.be/stops/102601", "https://data.delijn.be/stops/102602"], ["https://data.delijn.be/stops/409636", "https://data.delijn.be/stops/409774"], ["https://data.delijn.be/stops/300317", "https://data.delijn.be/stops/301285"], ["https://data.delijn.be/stops/404260", "https://data.delijn.be/stops/405182"], ["https://data.delijn.be/stops/307433", "https://data.delijn.be/stops/308591"], ["https://data.delijn.be/stops/401413", "https://data.delijn.be/stops/303650"], ["https://data.delijn.be/stops/502258", "https://data.delijn.be/stops/507619"], ["https://data.delijn.be/stops/302091", "https://data.delijn.be/stops/302105"], ["https://data.delijn.be/stops/406902", "https://data.delijn.be/stops/406904"], ["https://data.delijn.be/stops/202833", "https://data.delijn.be/stops/209735"], ["https://data.delijn.be/stops/302021", "https://data.delijn.be/stops/302054"], ["https://data.delijn.be/stops/208181", "https://data.delijn.be/stops/209191"], ["https://data.delijn.be/stops/106795", "https://data.delijn.be/stops/106798"], ["https://data.delijn.be/stops/300858", "https://data.delijn.be/stops/307897"], ["https://data.delijn.be/stops/108284", "https://data.delijn.be/stops/108286"], ["https://data.delijn.be/stops/105686", "https://data.delijn.be/stops/105711"], ["https://data.delijn.be/stops/408639", "https://data.delijn.be/stops/408747"], ["https://data.delijn.be/stops/407354", "https://data.delijn.be/stops/409859"], ["https://data.delijn.be/stops/106761", "https://data.delijn.be/stops/106762"], ["https://data.delijn.be/stops/502431", "https://data.delijn.be/stops/507431"], ["https://data.delijn.be/stops/200224", "https://data.delijn.be/stops/200445"], ["https://data.delijn.be/stops/106735", "https://data.delijn.be/stops/106780"], ["https://data.delijn.be/stops/205669", "https://data.delijn.be/stops/205699"], ["https://data.delijn.be/stops/509167", "https://data.delijn.be/stops/509175"], ["https://data.delijn.be/stops/405270", "https://data.delijn.be/stops/405272"], ["https://data.delijn.be/stops/300784", "https://data.delijn.be/stops/304590"], ["https://data.delijn.be/stops/506729", "https://data.delijn.be/stops/507572"], ["https://data.delijn.be/stops/306855", "https://data.delijn.be/stops/306856"], ["https://data.delijn.be/stops/108136", "https://data.delijn.be/stops/108866"], ["https://data.delijn.be/stops/400974", "https://data.delijn.be/stops/408473"], ["https://data.delijn.be/stops/303807", "https://data.delijn.be/stops/303809"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/107024"], ["https://data.delijn.be/stops/502171", "https://data.delijn.be/stops/507341"], ["https://data.delijn.be/stops/104741", "https://data.delijn.be/stops/108156"], ["https://data.delijn.be/stops/102412", "https://data.delijn.be/stops/107500"], ["https://data.delijn.be/stops/402079", "https://data.delijn.be/stops/402338"], ["https://data.delijn.be/stops/101779", "https://data.delijn.be/stops/106729"], ["https://data.delijn.be/stops/102686", "https://data.delijn.be/stops/105195"], ["https://data.delijn.be/stops/207190", "https://data.delijn.be/stops/308569"], ["https://data.delijn.be/stops/202154", "https://data.delijn.be/stops/203154"], ["https://data.delijn.be/stops/403980", "https://data.delijn.be/stops/403985"], ["https://data.delijn.be/stops/401127", "https://data.delijn.be/stops/401134"], ["https://data.delijn.be/stops/209720", "https://data.delijn.be/stops/209721"], ["https://data.delijn.be/stops/404949", "https://data.delijn.be/stops/404954"], ["https://data.delijn.be/stops/308616", "https://data.delijn.be/stops/308618"], ["https://data.delijn.be/stops/101851", "https://data.delijn.be/stops/106850"], ["https://data.delijn.be/stops/204711", "https://data.delijn.be/stops/204712"], ["https://data.delijn.be/stops/106308", "https://data.delijn.be/stops/106309"], ["https://data.delijn.be/stops/204067", "https://data.delijn.be/stops/204226"], ["https://data.delijn.be/stops/402472", "https://data.delijn.be/stops/402473"], ["https://data.delijn.be/stops/104387", "https://data.delijn.be/stops/104388"], ["https://data.delijn.be/stops/207344", "https://data.delijn.be/stops/207366"], ["https://data.delijn.be/stops/407361", "https://data.delijn.be/stops/409424"], ["https://data.delijn.be/stops/107042", "https://data.delijn.be/stops/107044"], ["https://data.delijn.be/stops/305724", "https://data.delijn.be/stops/305728"], ["https://data.delijn.be/stops/109707", "https://data.delijn.be/stops/109708"], ["https://data.delijn.be/stops/206925", "https://data.delijn.be/stops/207925"], ["https://data.delijn.be/stops/502645", "https://data.delijn.be/stops/507418"], ["https://data.delijn.be/stops/202976", "https://data.delijn.be/stops/203367"], ["https://data.delijn.be/stops/204228", "https://data.delijn.be/stops/205228"], ["https://data.delijn.be/stops/305308", "https://data.delijn.be/stops/306383"], ["https://data.delijn.be/stops/305983", "https://data.delijn.be/stops/305984"], ["https://data.delijn.be/stops/209275", "https://data.delijn.be/stops/209276"], ["https://data.delijn.be/stops/207753", "https://data.delijn.be/stops/207754"], ["https://data.delijn.be/stops/203735", "https://data.delijn.be/stops/203853"], ["https://data.delijn.be/stops/504042", "https://data.delijn.be/stops/504989"], ["https://data.delijn.be/stops/101173", "https://data.delijn.be/stops/104595"], ["https://data.delijn.be/stops/402462", "https://data.delijn.be/stops/402463"], ["https://data.delijn.be/stops/204155", "https://data.delijn.be/stops/205594"], ["https://data.delijn.be/stops/407746", "https://data.delijn.be/stops/407747"], ["https://data.delijn.be/stops/209436", "https://data.delijn.be/stops/209437"], ["https://data.delijn.be/stops/105123", "https://data.delijn.be/stops/105196"], ["https://data.delijn.be/stops/107599", "https://data.delijn.be/stops/107689"], ["https://data.delijn.be/stops/201723", "https://data.delijn.be/stops/202445"], ["https://data.delijn.be/stops/402871", "https://data.delijn.be/stops/404006"], ["https://data.delijn.be/stops/204659", "https://data.delijn.be/stops/205658"], ["https://data.delijn.be/stops/208520", "https://data.delijn.be/stops/208878"], ["https://data.delijn.be/stops/303436", "https://data.delijn.be/stops/303474"], ["https://data.delijn.be/stops/503958", "https://data.delijn.be/stops/504724"], ["https://data.delijn.be/stops/103262", "https://data.delijn.be/stops/214002"], ["https://data.delijn.be/stops/303584", "https://data.delijn.be/stops/305892"], ["https://data.delijn.be/stops/206611", "https://data.delijn.be/stops/206970"], ["https://data.delijn.be/stops/508586", "https://data.delijn.be/stops/508588"], ["https://data.delijn.be/stops/200780", "https://data.delijn.be/stops/201034"], ["https://data.delijn.be/stops/102647", "https://data.delijn.be/stops/107832"], ["https://data.delijn.be/stops/304775", "https://data.delijn.be/stops/306115"], ["https://data.delijn.be/stops/400434", "https://data.delijn.be/stops/406784"], ["https://data.delijn.be/stops/306127", "https://data.delijn.be/stops/306132"], ["https://data.delijn.be/stops/204047", "https://data.delijn.be/stops/205048"], ["https://data.delijn.be/stops/206229", "https://data.delijn.be/stops/207113"], ["https://data.delijn.be/stops/202785", "https://data.delijn.be/stops/203785"], ["https://data.delijn.be/stops/304386", "https://data.delijn.be/stops/307416"], ["https://data.delijn.be/stops/504023", "https://data.delijn.be/stops/505121"], ["https://data.delijn.be/stops/302773", "https://data.delijn.be/stops/308597"], ["https://data.delijn.be/stops/300656", "https://data.delijn.be/stops/306885"], ["https://data.delijn.be/stops/403059", "https://data.delijn.be/stops/403276"], ["https://data.delijn.be/stops/502397", "https://data.delijn.be/stops/507671"], ["https://data.delijn.be/stops/102529", "https://data.delijn.be/stops/102532"], ["https://data.delijn.be/stops/201055", "https://data.delijn.be/stops/203522"], ["https://data.delijn.be/stops/207756", "https://data.delijn.be/stops/207768"], ["https://data.delijn.be/stops/202029", "https://data.delijn.be/stops/203028"], ["https://data.delijn.be/stops/208085", "https://data.delijn.be/stops/209619"], ["https://data.delijn.be/stops/304833", "https://data.delijn.be/stops/304834"], ["https://data.delijn.be/stops/103880", "https://data.delijn.be/stops/103885"], ["https://data.delijn.be/stops/406467", "https://data.delijn.be/stops/406477"], ["https://data.delijn.be/stops/506123", "https://data.delijn.be/stops/506209"], ["https://data.delijn.be/stops/405046", "https://data.delijn.be/stops/405070"], ["https://data.delijn.be/stops/206666", "https://data.delijn.be/stops/206718"], ["https://data.delijn.be/stops/503637", "https://data.delijn.be/stops/505568"], ["https://data.delijn.be/stops/300242", "https://data.delijn.be/stops/304618"], ["https://data.delijn.be/stops/302460", "https://data.delijn.be/stops/308669"], ["https://data.delijn.be/stops/503621", "https://data.delijn.be/stops/508632"], ["https://data.delijn.be/stops/106175", "https://data.delijn.be/stops/106178"], ["https://data.delijn.be/stops/300776", "https://data.delijn.be/stops/300790"], ["https://data.delijn.be/stops/400054", "https://data.delijn.be/stops/400104"], ["https://data.delijn.be/stops/502271", "https://data.delijn.be/stops/502926"], ["https://data.delijn.be/stops/207513", "https://data.delijn.be/stops/207847"], ["https://data.delijn.be/stops/407173", "https://data.delijn.be/stops/407179"], ["https://data.delijn.be/stops/201964", "https://data.delijn.be/stops/206795"], ["https://data.delijn.be/stops/302541", "https://data.delijn.be/stops/307810"], ["https://data.delijn.be/stops/404033", "https://data.delijn.be/stops/407635"], ["https://data.delijn.be/stops/501039", "https://data.delijn.be/stops/506039"], ["https://data.delijn.be/stops/103032", "https://data.delijn.be/stops/106749"], ["https://data.delijn.be/stops/102290", "https://data.delijn.be/stops/107445"], ["https://data.delijn.be/stops/106918", "https://data.delijn.be/stops/107251"], ["https://data.delijn.be/stops/201886", "https://data.delijn.be/stops/202978"], ["https://data.delijn.be/stops/203272", "https://data.delijn.be/stops/203277"], ["https://data.delijn.be/stops/307377", "https://data.delijn.be/stops/307446"], ["https://data.delijn.be/stops/109626", "https://data.delijn.be/stops/109627"], ["https://data.delijn.be/stops/301554", "https://data.delijn.be/stops/301555"], ["https://data.delijn.be/stops/200079", "https://data.delijn.be/stops/201534"], ["https://data.delijn.be/stops/305591", "https://data.delijn.be/stops/305617"], ["https://data.delijn.be/stops/107835", "https://data.delijn.be/stops/108590"], ["https://data.delijn.be/stops/300772", "https://data.delijn.be/stops/300802"], ["https://data.delijn.be/stops/404195", "https://data.delijn.be/stops/405933"], ["https://data.delijn.be/stops/102945", "https://data.delijn.be/stops/104975"], ["https://data.delijn.be/stops/200072", "https://data.delijn.be/stops/203354"], ["https://data.delijn.be/stops/200342", "https://data.delijn.be/stops/201310"], ["https://data.delijn.be/stops/504037", "https://data.delijn.be/stops/504046"], ["https://data.delijn.be/stops/208332", "https://data.delijn.be/stops/209117"], ["https://data.delijn.be/stops/407907", "https://data.delijn.be/stops/408006"], ["https://data.delijn.be/stops/401118", "https://data.delijn.be/stops/401121"], ["https://data.delijn.be/stops/501120", "https://data.delijn.be/stops/505039"], ["https://data.delijn.be/stops/303394", "https://data.delijn.be/stops/308892"], ["https://data.delijn.be/stops/502179", "https://data.delijn.be/stops/505556"], ["https://data.delijn.be/stops/305715", "https://data.delijn.be/stops/306302"], ["https://data.delijn.be/stops/108235", "https://data.delijn.be/stops/108240"], ["https://data.delijn.be/stops/508636", "https://data.delijn.be/stops/508638"], ["https://data.delijn.be/stops/104699", "https://data.delijn.be/stops/108182"], ["https://data.delijn.be/stops/503781", "https://data.delijn.be/stops/508776"], ["https://data.delijn.be/stops/503108", "https://data.delijn.be/stops/503964"], ["https://data.delijn.be/stops/409423", "https://data.delijn.be/stops/409424"], ["https://data.delijn.be/stops/301381", "https://data.delijn.be/stops/306142"], ["https://data.delijn.be/stops/409050", "https://data.delijn.be/stops/409085"], ["https://data.delijn.be/stops/502654", "https://data.delijn.be/stops/507654"], ["https://data.delijn.be/stops/206678", "https://data.delijn.be/stops/208809"], ["https://data.delijn.be/stops/103916", "https://data.delijn.be/stops/107238"], ["https://data.delijn.be/stops/208224", "https://data.delijn.be/stops/209224"], ["https://data.delijn.be/stops/401374", "https://data.delijn.be/stops/401375"], ["https://data.delijn.be/stops/402028", "https://data.delijn.be/stops/403880"], ["https://data.delijn.be/stops/401326", "https://data.delijn.be/stops/401327"], ["https://data.delijn.be/stops/205324", "https://data.delijn.be/stops/205713"], ["https://data.delijn.be/stops/103260", "https://data.delijn.be/stops/103265"], ["https://data.delijn.be/stops/209705", "https://data.delijn.be/stops/209709"], ["https://data.delijn.be/stops/404658", "https://data.delijn.be/stops/410132"], ["https://data.delijn.be/stops/308539", "https://data.delijn.be/stops/308540"], ["https://data.delijn.be/stops/206217", "https://data.delijn.be/stops/207313"], ["https://data.delijn.be/stops/206214", "https://data.delijn.be/stops/206820"], ["https://data.delijn.be/stops/407029", "https://data.delijn.be/stops/407038"], ["https://data.delijn.be/stops/303289", "https://data.delijn.be/stops/303296"], ["https://data.delijn.be/stops/204905", "https://data.delijn.be/stops/205905"], ["https://data.delijn.be/stops/401490", "https://data.delijn.be/stops/410306"], ["https://data.delijn.be/stops/401841", "https://data.delijn.be/stops/406018"], ["https://data.delijn.be/stops/509367", "https://data.delijn.be/stops/509372"], ["https://data.delijn.be/stops/302088", "https://data.delijn.be/stops/302094"], ["https://data.delijn.be/stops/407078", "https://data.delijn.be/stops/407085"], ["https://data.delijn.be/stops/408099", "https://data.delijn.be/stops/408108"], ["https://data.delijn.be/stops/504607", "https://data.delijn.be/stops/509599"], ["https://data.delijn.be/stops/408888", "https://data.delijn.be/stops/408892"], ["https://data.delijn.be/stops/204377", "https://data.delijn.be/stops/204378"], ["https://data.delijn.be/stops/108056", "https://data.delijn.be/stops/108057"], ["https://data.delijn.be/stops/106177", "https://data.delijn.be/stops/106178"], ["https://data.delijn.be/stops/301549", "https://data.delijn.be/stops/308093"], ["https://data.delijn.be/stops/304724", "https://data.delijn.be/stops/306555"], ["https://data.delijn.be/stops/204546", "https://data.delijn.be/stops/205501"], ["https://data.delijn.be/stops/106589", "https://data.delijn.be/stops/106592"], ["https://data.delijn.be/stops/501629", "https://data.delijn.be/stops/506765"], ["https://data.delijn.be/stops/106394", "https://data.delijn.be/stops/106570"], ["https://data.delijn.be/stops/101586", "https://data.delijn.be/stops/107230"], ["https://data.delijn.be/stops/504525", "https://data.delijn.be/stops/509529"], ["https://data.delijn.be/stops/106654", "https://data.delijn.be/stops/106664"], ["https://data.delijn.be/stops/401524", "https://data.delijn.be/stops/402513"], ["https://data.delijn.be/stops/200841", "https://data.delijn.be/stops/202314"], ["https://data.delijn.be/stops/204354", "https://data.delijn.be/stops/205354"], ["https://data.delijn.be/stops/206334", "https://data.delijn.be/stops/207335"], ["https://data.delijn.be/stops/307061", "https://data.delijn.be/stops/307063"], ["https://data.delijn.be/stops/503947", "https://data.delijn.be/stops/504801"], ["https://data.delijn.be/stops/300238", "https://data.delijn.be/stops/300256"], ["https://data.delijn.be/stops/202985", "https://data.delijn.be/stops/203035"], ["https://data.delijn.be/stops/201751", "https://data.delijn.be/stops/209398"], ["https://data.delijn.be/stops/102688", "https://data.delijn.be/stops/103946"], ["https://data.delijn.be/stops/305060", "https://data.delijn.be/stops/307277"], ["https://data.delijn.be/stops/203894", "https://data.delijn.be/stops/209285"], ["https://data.delijn.be/stops/206275", "https://data.delijn.be/stops/207275"], ["https://data.delijn.be/stops/200139", "https://data.delijn.be/stops/201139"], ["https://data.delijn.be/stops/501534", "https://data.delijn.be/stops/506013"], ["https://data.delijn.be/stops/104947", "https://data.delijn.be/stops/109728"], ["https://data.delijn.be/stops/102054", "https://data.delijn.be/stops/102330"], ["https://data.delijn.be/stops/410171", "https://data.delijn.be/stops/410178"], ["https://data.delijn.be/stops/404406", "https://data.delijn.be/stops/404416"], ["https://data.delijn.be/stops/211113", "https://data.delijn.be/stops/211119"], ["https://data.delijn.be/stops/407445", "https://data.delijn.be/stops/407503"], ["https://data.delijn.be/stops/504093", "https://data.delijn.be/stops/504096"], ["https://data.delijn.be/stops/302129", "https://data.delijn.be/stops/307530"], ["https://data.delijn.be/stops/502492", "https://data.delijn.be/stops/505635"], ["https://data.delijn.be/stops/302223", "https://data.delijn.be/stops/302246"], ["https://data.delijn.be/stops/407041", "https://data.delijn.be/stops/407061"], ["https://data.delijn.be/stops/207697", "https://data.delijn.be/stops/207698"], ["https://data.delijn.be/stops/209514", "https://data.delijn.be/stops/209674"], ["https://data.delijn.be/stops/504458", "https://data.delijn.be/stops/509612"], ["https://data.delijn.be/stops/200756", "https://data.delijn.be/stops/508018"], ["https://data.delijn.be/stops/300747", "https://data.delijn.be/stops/302399"], ["https://data.delijn.be/stops/301721", "https://data.delijn.be/stops/304187"], ["https://data.delijn.be/stops/202691", "https://data.delijn.be/stops/203691"], ["https://data.delijn.be/stops/405723", "https://data.delijn.be/stops/408325"], ["https://data.delijn.be/stops/203218", "https://data.delijn.be/stops/205795"], ["https://data.delijn.be/stops/407619", "https://data.delijn.be/stops/409806"], ["https://data.delijn.be/stops/201891", "https://data.delijn.be/stops/201893"], ["https://data.delijn.be/stops/502396", "https://data.delijn.be/stops/507399"], ["https://data.delijn.be/stops/400918", "https://data.delijn.be/stops/407374"], ["https://data.delijn.be/stops/403080", "https://data.delijn.be/stops/403502"], ["https://data.delijn.be/stops/500016", "https://data.delijn.be/stops/507454"], ["https://data.delijn.be/stops/406180", "https://data.delijn.be/stops/406181"], ["https://data.delijn.be/stops/301691", "https://data.delijn.be/stops/301790"], ["https://data.delijn.be/stops/200069", "https://data.delijn.be/stops/200551"], ["https://data.delijn.be/stops/302794", "https://data.delijn.be/stops/305496"], ["https://data.delijn.be/stops/504124", "https://data.delijn.be/stops/504128"], ["https://data.delijn.be/stops/102528", "https://data.delijn.be/stops/405082"], ["https://data.delijn.be/stops/403742", "https://data.delijn.be/stops/403764"], ["https://data.delijn.be/stops/107658", "https://data.delijn.be/stops/109862"], ["https://data.delijn.be/stops/102536", "https://data.delijn.be/stops/405087"], ["https://data.delijn.be/stops/301031", "https://data.delijn.be/stops/301035"], ["https://data.delijn.be/stops/103971", "https://data.delijn.be/stops/106445"], ["https://data.delijn.be/stops/404864", "https://data.delijn.be/stops/404894"], ["https://data.delijn.be/stops/501007", "https://data.delijn.be/stops/508259"], ["https://data.delijn.be/stops/400794", "https://data.delijn.be/stops/406675"], ["https://data.delijn.be/stops/201181", "https://data.delijn.be/stops/201186"], ["https://data.delijn.be/stops/101206", "https://data.delijn.be/stops/107853"], ["https://data.delijn.be/stops/502187", "https://data.delijn.be/stops/505053"], ["https://data.delijn.be/stops/505704", "https://data.delijn.be/stops/507570"], ["https://data.delijn.be/stops/206170", "https://data.delijn.be/stops/303847"], ["https://data.delijn.be/stops/400606", "https://data.delijn.be/stops/404294"], ["https://data.delijn.be/stops/501519", "https://data.delijn.be/stops/506307"], ["https://data.delijn.be/stops/206707", "https://data.delijn.be/stops/206735"], ["https://data.delijn.be/stops/305108", "https://data.delijn.be/stops/305111"], ["https://data.delijn.be/stops/308607", "https://data.delijn.be/stops/308608"], ["https://data.delijn.be/stops/202608", "https://data.delijn.be/stops/203608"], ["https://data.delijn.be/stops/203593", "https://data.delijn.be/stops/203594"], ["https://data.delijn.be/stops/204148", "https://data.delijn.be/stops/205150"], ["https://data.delijn.be/stops/101820", "https://data.delijn.be/stops/103338"], ["https://data.delijn.be/stops/506249", "https://data.delijn.be/stops/506768"], ["https://data.delijn.be/stops/202408", "https://data.delijn.be/stops/210409"], ["https://data.delijn.be/stops/501293", "https://data.delijn.be/stops/501312"], ["https://data.delijn.be/stops/402843", "https://data.delijn.be/stops/409881"], ["https://data.delijn.be/stops/217014", "https://data.delijn.be/stops/306729"], ["https://data.delijn.be/stops/206140", "https://data.delijn.be/stops/207129"], ["https://data.delijn.be/stops/302093", "https://data.delijn.be/stops/302095"], ["https://data.delijn.be/stops/107662", "https://data.delijn.be/stops/107664"], ["https://data.delijn.be/stops/504237", "https://data.delijn.be/stops/505362"], ["https://data.delijn.be/stops/102385", "https://data.delijn.be/stops/104310"], ["https://data.delijn.be/stops/401418", "https://data.delijn.be/stops/304600"], ["https://data.delijn.be/stops/202371", "https://data.delijn.be/stops/203587"], ["https://data.delijn.be/stops/206168", "https://data.delijn.be/stops/303404"], ["https://data.delijn.be/stops/503333", "https://data.delijn.be/stops/509735"], ["https://data.delijn.be/stops/105487", "https://data.delijn.be/stops/105489"], ["https://data.delijn.be/stops/108074", "https://data.delijn.be/stops/108076"], ["https://data.delijn.be/stops/400266", "https://data.delijn.be/stops/408364"], ["https://data.delijn.be/stops/503265", "https://data.delijn.be/stops/508076"], ["https://data.delijn.be/stops/105797", "https://data.delijn.be/stops/105798"], ["https://data.delijn.be/stops/408090", "https://data.delijn.be/stops/408167"], ["https://data.delijn.be/stops/207133", "https://data.delijn.be/stops/207134"], ["https://data.delijn.be/stops/108828", "https://data.delijn.be/stops/108829"], ["https://data.delijn.be/stops/102668", "https://data.delijn.be/stops/305994"], ["https://data.delijn.be/stops/404534", "https://data.delijn.be/stops/404547"], ["https://data.delijn.be/stops/502266", "https://data.delijn.be/stops/507260"], ["https://data.delijn.be/stops/205020", "https://data.delijn.be/stops/205769"], ["https://data.delijn.be/stops/207102", "https://data.delijn.be/stops/207123"], ["https://data.delijn.be/stops/305502", "https://data.delijn.be/stops/307821"], ["https://data.delijn.be/stops/205444", "https://data.delijn.be/stops/205498"], ["https://data.delijn.be/stops/503012", "https://data.delijn.be/stops/508012"], ["https://data.delijn.be/stops/301348", "https://data.delijn.be/stops/306135"], ["https://data.delijn.be/stops/202590", "https://data.delijn.be/stops/203590"], ["https://data.delijn.be/stops/209778", "https://data.delijn.be/stops/209779"], ["https://data.delijn.be/stops/108505", "https://data.delijn.be/stops/108507"], ["https://data.delijn.be/stops/207734", "https://data.delijn.be/stops/207749"], ["https://data.delijn.be/stops/504236", "https://data.delijn.be/stops/509236"], ["https://data.delijn.be/stops/503529", "https://data.delijn.be/stops/508525"], ["https://data.delijn.be/stops/204484", "https://data.delijn.be/stops/204738"], ["https://data.delijn.be/stops/303346", "https://data.delijn.be/stops/304713"], ["https://data.delijn.be/stops/406523", "https://data.delijn.be/stops/406524"], ["https://data.delijn.be/stops/502237", "https://data.delijn.be/stops/505025"], ["https://data.delijn.be/stops/402724", "https://data.delijn.be/stops/402725"], ["https://data.delijn.be/stops/200030", "https://data.delijn.be/stops/200984"], ["https://data.delijn.be/stops/106798", "https://data.delijn.be/stops/106869"], ["https://data.delijn.be/stops/201089", "https://data.delijn.be/stops/203945"], ["https://data.delijn.be/stops/206216", "https://data.delijn.be/stops/207216"], ["https://data.delijn.be/stops/405698", "https://data.delijn.be/stops/405900"], ["https://data.delijn.be/stops/407316", "https://data.delijn.be/stops/409044"], ["https://data.delijn.be/stops/302978", "https://data.delijn.be/stops/302987"], ["https://data.delijn.be/stops/302596", "https://data.delijn.be/stops/302652"], ["https://data.delijn.be/stops/205000", "https://data.delijn.be/stops/207355"], ["https://data.delijn.be/stops/404848", "https://data.delijn.be/stops/407739"], ["https://data.delijn.be/stops/508578", "https://data.delijn.be/stops/508844"], ["https://data.delijn.be/stops/408519", "https://data.delijn.be/stops/408768"], ["https://data.delijn.be/stops/103287", "https://data.delijn.be/stops/109992"], ["https://data.delijn.be/stops/500874", "https://data.delijn.be/stops/505920"], ["https://data.delijn.be/stops/101860", "https://data.delijn.be/stops/107805"], ["https://data.delijn.be/stops/101077", "https://data.delijn.be/stops/102718"], ["https://data.delijn.be/stops/408510", "https://data.delijn.be/stops/408613"], ["https://data.delijn.be/stops/300613", "https://data.delijn.be/stops/300621"], ["https://data.delijn.be/stops/502029", "https://data.delijn.be/stops/507041"], ["https://data.delijn.be/stops/109798", "https://data.delijn.be/stops/305766"], ["https://data.delijn.be/stops/207080", "https://data.delijn.be/stops/207083"], ["https://data.delijn.be/stops/202923", "https://data.delijn.be/stops/203921"], ["https://data.delijn.be/stops/501680", "https://data.delijn.be/stops/509514"], ["https://data.delijn.be/stops/200261", "https://data.delijn.be/stops/201302"], ["https://data.delijn.be/stops/504222", "https://data.delijn.be/stops/509632"], ["https://data.delijn.be/stops/108269", "https://data.delijn.be/stops/108271"], ["https://data.delijn.be/stops/200374", "https://data.delijn.be/stops/200375"], ["https://data.delijn.be/stops/104780", "https://data.delijn.be/stops/104785"], ["https://data.delijn.be/stops/200659", "https://data.delijn.be/stops/201659"], ["https://data.delijn.be/stops/503499", "https://data.delijn.be/stops/508499"], ["https://data.delijn.be/stops/501193", "https://data.delijn.be/stops/501497"], ["https://data.delijn.be/stops/301115", "https://data.delijn.be/stops/301117"], ["https://data.delijn.be/stops/101531", "https://data.delijn.be/stops/108791"], ["https://data.delijn.be/stops/407491", "https://data.delijn.be/stops/408690"], ["https://data.delijn.be/stops/101069", "https://data.delijn.be/stops/101072"], ["https://data.delijn.be/stops/204224", "https://data.delijn.be/stops/205223"], ["https://data.delijn.be/stops/202884", "https://data.delijn.be/stops/203887"], ["https://data.delijn.be/stops/403022", "https://data.delijn.be/stops/404228"], ["https://data.delijn.be/stops/203840", "https://data.delijn.be/stops/209494"], ["https://data.delijn.be/stops/408044", "https://data.delijn.be/stops/408125"], ["https://data.delijn.be/stops/405214", "https://data.delijn.be/stops/405255"], ["https://data.delijn.be/stops/208515", "https://data.delijn.be/stops/209464"], ["https://data.delijn.be/stops/102935", "https://data.delijn.be/stops/103330"], ["https://data.delijn.be/stops/104119", "https://data.delijn.be/stops/105165"], ["https://data.delijn.be/stops/301064", "https://data.delijn.be/stops/301305"], ["https://data.delijn.be/stops/308866", "https://data.delijn.be/stops/308869"], ["https://data.delijn.be/stops/203810", "https://data.delijn.be/stops/209276"], ["https://data.delijn.be/stops/403613", "https://data.delijn.be/stops/403629"], ["https://data.delijn.be/stops/204822", "https://data.delijn.be/stops/205546"], ["https://data.delijn.be/stops/501358", "https://data.delijn.be/stops/506326"], ["https://data.delijn.be/stops/200165", "https://data.delijn.be/stops/202190"], ["https://data.delijn.be/stops/102756", "https://data.delijn.be/stops/103304"], ["https://data.delijn.be/stops/301992", "https://data.delijn.be/stops/305977"], ["https://data.delijn.be/stops/206234", "https://data.delijn.be/stops/207935"], ["https://data.delijn.be/stops/404546", "https://data.delijn.be/stops/404547"], ["https://data.delijn.be/stops/107986", "https://data.delijn.be/stops/108054"], ["https://data.delijn.be/stops/108198", "https://data.delijn.be/stops/108199"], ["https://data.delijn.be/stops/303810", "https://data.delijn.be/stops/303845"], ["https://data.delijn.be/stops/206287", "https://data.delijn.be/stops/206315"], ["https://data.delijn.be/stops/105003", "https://data.delijn.be/stops/105122"], ["https://data.delijn.be/stops/101278", "https://data.delijn.be/stops/205820"], ["https://data.delijn.be/stops/300835", "https://data.delijn.be/stops/307736"], ["https://data.delijn.be/stops/300498", "https://data.delijn.be/stops/302099"], ["https://data.delijn.be/stops/107703", "https://data.delijn.be/stops/109240"], ["https://data.delijn.be/stops/502929", "https://data.delijn.be/stops/507016"], ["https://data.delijn.be/stops/303837", "https://data.delijn.be/stops/303849"], ["https://data.delijn.be/stops/405478", "https://data.delijn.be/stops/409302"], ["https://data.delijn.be/stops/300571", "https://data.delijn.be/stops/300589"], ["https://data.delijn.be/stops/503230", "https://data.delijn.be/stops/503260"], ["https://data.delijn.be/stops/305004", "https://data.delijn.be/stops/305037"], ["https://data.delijn.be/stops/208440", "https://data.delijn.be/stops/208672"], ["https://data.delijn.be/stops/103678", "https://data.delijn.be/stops/109667"], ["https://data.delijn.be/stops/305148", "https://data.delijn.be/stops/305198"], ["https://data.delijn.be/stops/504631", "https://data.delijn.be/stops/509628"], ["https://data.delijn.be/stops/402314", "https://data.delijn.be/stops/408203"], ["https://data.delijn.be/stops/301969", "https://data.delijn.be/stops/304155"], ["https://data.delijn.be/stops/503408", "https://data.delijn.be/stops/508406"], ["https://data.delijn.be/stops/507813", "https://data.delijn.be/stops/509878"], ["https://data.delijn.be/stops/208514", "https://data.delijn.be/stops/209514"], ["https://data.delijn.be/stops/502246", "https://data.delijn.be/stops/502247"], ["https://data.delijn.be/stops/401650", "https://data.delijn.be/stops/405393"], ["https://data.delijn.be/stops/504752", "https://data.delijn.be/stops/509752"], ["https://data.delijn.be/stops/301359", "https://data.delijn.be/stops/304695"], ["https://data.delijn.be/stops/401085", "https://data.delijn.be/stops/410024"], ["https://data.delijn.be/stops/400729", "https://data.delijn.be/stops/400736"], ["https://data.delijn.be/stops/108336", "https://data.delijn.be/stops/109369"], ["https://data.delijn.be/stops/408963", "https://data.delijn.be/stops/408983"], ["https://data.delijn.be/stops/404662", "https://data.delijn.be/stops/404663"], ["https://data.delijn.be/stops/505200", "https://data.delijn.be/stops/505217"], ["https://data.delijn.be/stops/200832", "https://data.delijn.be/stops/200833"], ["https://data.delijn.be/stops/206008", "https://data.delijn.be/stops/207052"], ["https://data.delijn.be/stops/405190", "https://data.delijn.be/stops/406325"], ["https://data.delijn.be/stops/200492", "https://data.delijn.be/stops/201473"], ["https://data.delijn.be/stops/103291", "https://data.delijn.be/stops/103292"], ["https://data.delijn.be/stops/106382", "https://data.delijn.be/stops/108024"], ["https://data.delijn.be/stops/307150", "https://data.delijn.be/stops/307152"], ["https://data.delijn.be/stops/209472", "https://data.delijn.be/stops/209473"], ["https://data.delijn.be/stops/501366", "https://data.delijn.be/stops/507745"], ["https://data.delijn.be/stops/404090", "https://data.delijn.be/stops/408799"], ["https://data.delijn.be/stops/405228", "https://data.delijn.be/stops/405234"], ["https://data.delijn.be/stops/501688", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/107581", "https://data.delijn.be/stops/107583"], ["https://data.delijn.be/stops/303490", "https://data.delijn.be/stops/303497"], ["https://data.delijn.be/stops/408266", "https://data.delijn.be/stops/408406"], ["https://data.delijn.be/stops/208632", "https://data.delijn.be/stops/208633"], ["https://data.delijn.be/stops/502243", "https://data.delijn.be/stops/507100"], ["https://data.delijn.be/stops/501149", "https://data.delijn.be/stops/505600"], ["https://data.delijn.be/stops/200887", "https://data.delijn.be/stops/202057"], ["https://data.delijn.be/stops/108137", "https://data.delijn.be/stops/108138"], ["https://data.delijn.be/stops/505208", "https://data.delijn.be/stops/508849"], ["https://data.delijn.be/stops/106060", "https://data.delijn.be/stops/205610"], ["https://data.delijn.be/stops/304533", "https://data.delijn.be/stops/304542"], ["https://data.delijn.be/stops/107017", "https://data.delijn.be/stops/107067"], ["https://data.delijn.be/stops/303500", "https://data.delijn.be/stops/303508"], ["https://data.delijn.be/stops/401038", "https://data.delijn.be/stops/401039"], ["https://data.delijn.be/stops/101305", "https://data.delijn.be/stops/104810"], ["https://data.delijn.be/stops/505315", "https://data.delijn.be/stops/508767"], ["https://data.delijn.be/stops/300550", "https://data.delijn.be/stops/300558"], ["https://data.delijn.be/stops/305765", "https://data.delijn.be/stops/305767"], ["https://data.delijn.be/stops/405715", "https://data.delijn.be/stops/405730"], ["https://data.delijn.be/stops/401516", "https://data.delijn.be/stops/401741"], ["https://data.delijn.be/stops/102669", "https://data.delijn.be/stops/103314"], ["https://data.delijn.be/stops/502675", "https://data.delijn.be/stops/505010"], ["https://data.delijn.be/stops/105012", "https://data.delijn.be/stops/105081"], ["https://data.delijn.be/stops/206353", "https://data.delijn.be/stops/206354"], ["https://data.delijn.be/stops/401359", "https://data.delijn.be/stops/401365"], ["https://data.delijn.be/stops/503952", "https://data.delijn.be/stops/508952"], ["https://data.delijn.be/stops/202388", "https://data.delijn.be/stops/203388"], ["https://data.delijn.be/stops/407904", "https://data.delijn.be/stops/408013"], ["https://data.delijn.be/stops/504443", "https://data.delijn.be/stops/509443"], ["https://data.delijn.be/stops/107342", "https://data.delijn.be/stops/108168"], ["https://data.delijn.be/stops/407237", "https://data.delijn.be/stops/407508"], ["https://data.delijn.be/stops/206930", "https://data.delijn.be/stops/207575"], ["https://data.delijn.be/stops/206331", "https://data.delijn.be/stops/207331"], ["https://data.delijn.be/stops/507034", "https://data.delijn.be/stops/507617"], ["https://data.delijn.be/stops/505773", "https://data.delijn.be/stops/507468"], ["https://data.delijn.be/stops/105275", "https://data.delijn.be/stops/108800"], ["https://data.delijn.be/stops/206169", "https://data.delijn.be/stops/207169"], ["https://data.delijn.be/stops/306315", "https://data.delijn.be/stops/307193"], ["https://data.delijn.be/stops/406786", "https://data.delijn.be/stops/406797"], ["https://data.delijn.be/stops/207020", "https://data.delijn.be/stops/207913"], ["https://data.delijn.be/stops/103632", "https://data.delijn.be/stops/107167"], ["https://data.delijn.be/stops/502589", "https://data.delijn.be/stops/507589"], ["https://data.delijn.be/stops/508128", "https://data.delijn.be/stops/509276"], ["https://data.delijn.be/stops/204413", "https://data.delijn.be/stops/204767"], ["https://data.delijn.be/stops/504354", "https://data.delijn.be/stops/509347"], ["https://data.delijn.be/stops/207085", "https://data.delijn.be/stops/207989"], ["https://data.delijn.be/stops/304997", "https://data.delijn.be/stops/305016"], ["https://data.delijn.be/stops/401835", "https://data.delijn.be/stops/406020"], ["https://data.delijn.be/stops/303133", "https://data.delijn.be/stops/303240"], ["https://data.delijn.be/stops/503163", "https://data.delijn.be/stops/503397"], ["https://data.delijn.be/stops/506368", "https://data.delijn.be/stops/590413"], ["https://data.delijn.be/stops/407855", "https://data.delijn.be/stops/407897"], ["https://data.delijn.be/stops/504207", "https://data.delijn.be/stops/509203"], ["https://data.delijn.be/stops/508142", "https://data.delijn.be/stops/509888"], ["https://data.delijn.be/stops/200197", "https://data.delijn.be/stops/203954"], ["https://data.delijn.be/stops/307761", "https://data.delijn.be/stops/307763"], ["https://data.delijn.be/stops/304051", "https://data.delijn.be/stops/304085"], ["https://data.delijn.be/stops/301677", "https://data.delijn.be/stops/301678"], ["https://data.delijn.be/stops/206704", "https://data.delijn.be/stops/206705"], ["https://data.delijn.be/stops/102291", "https://data.delijn.be/stops/106346"], ["https://data.delijn.be/stops/202151", "https://data.delijn.be/stops/203169"], ["https://data.delijn.be/stops/303035", "https://data.delijn.be/stops/303105"], ["https://data.delijn.be/stops/101151", "https://data.delijn.be/stops/102057"], ["https://data.delijn.be/stops/103763", "https://data.delijn.be/stops/106775"], ["https://data.delijn.be/stops/106358", "https://data.delijn.be/stops/109638"], ["https://data.delijn.be/stops/405442", "https://data.delijn.be/stops/408775"], ["https://data.delijn.be/stops/501311", "https://data.delijn.be/stops/506480"], ["https://data.delijn.be/stops/503815", "https://data.delijn.be/stops/508815"], ["https://data.delijn.be/stops/103790", "https://data.delijn.be/stops/105895"], ["https://data.delijn.be/stops/404845", "https://data.delijn.be/stops/407768"], ["https://data.delijn.be/stops/109296", "https://data.delijn.be/stops/109297"], ["https://data.delijn.be/stops/505268", "https://data.delijn.be/stops/505942"], ["https://data.delijn.be/stops/102209", "https://data.delijn.be/stops/106239"], ["https://data.delijn.be/stops/406374", "https://data.delijn.be/stops/410395"], ["https://data.delijn.be/stops/305498", "https://data.delijn.be/stops/305502"], ["https://data.delijn.be/stops/300671", "https://data.delijn.be/stops/300672"], ["https://data.delijn.be/stops/202775", "https://data.delijn.be/stops/203775"], ["https://data.delijn.be/stops/502435", "https://data.delijn.be/stops/502645"], ["https://data.delijn.be/stops/503228", "https://data.delijn.be/stops/508228"], ["https://data.delijn.be/stops/401498", "https://data.delijn.be/stops/401499"], ["https://data.delijn.be/stops/203485", "https://data.delijn.be/stops/203506"], ["https://data.delijn.be/stops/304849", "https://data.delijn.be/stops/308524"], ["https://data.delijn.be/stops/102416", "https://data.delijn.be/stops/108419"], ["https://data.delijn.be/stops/108319", "https://data.delijn.be/stops/108380"], ["https://data.delijn.be/stops/405626", "https://data.delijn.be/stops/407388"], ["https://data.delijn.be/stops/405335", "https://data.delijn.be/stops/405344"], ["https://data.delijn.be/stops/402437", "https://data.delijn.be/stops/402438"], ["https://data.delijn.be/stops/501055", "https://data.delijn.be/stops/506057"], ["https://data.delijn.be/stops/503718", "https://data.delijn.be/stops/507352"], ["https://data.delijn.be/stops/205304", "https://data.delijn.be/stops/205352"], ["https://data.delijn.be/stops/201892", "https://data.delijn.be/stops/201893"], ["https://data.delijn.be/stops/203823", "https://data.delijn.be/stops/203925"], ["https://data.delijn.be/stops/203065", "https://data.delijn.be/stops/203729"], ["https://data.delijn.be/stops/305981", "https://data.delijn.be/stops/305983"], ["https://data.delijn.be/stops/406032", "https://data.delijn.be/stops/406081"], ["https://data.delijn.be/stops/305048", "https://data.delijn.be/stops/306958"], ["https://data.delijn.be/stops/503388", "https://data.delijn.be/stops/508362"], ["https://data.delijn.be/stops/201806", "https://data.delijn.be/stops/201807"], ["https://data.delijn.be/stops/304726", "https://data.delijn.be/stops/308652"], ["https://data.delijn.be/stops/205982", "https://data.delijn.be/stops/208763"], ["https://data.delijn.be/stops/202636", "https://data.delijn.be/stops/205066"], ["https://data.delijn.be/stops/107916", "https://data.delijn.be/stops/107917"], ["https://data.delijn.be/stops/504569", "https://data.delijn.be/stops/505412"], ["https://data.delijn.be/stops/507206", "https://data.delijn.be/stops/507216"], ["https://data.delijn.be/stops/504610", "https://data.delijn.be/stops/509610"], ["https://data.delijn.be/stops/403885", "https://data.delijn.be/stops/403890"], ["https://data.delijn.be/stops/403373", "https://data.delijn.be/stops/403514"], ["https://data.delijn.be/stops/106220", "https://data.delijn.be/stops/106320"], ["https://data.delijn.be/stops/500929", "https://data.delijn.be/stops/509885"], ["https://data.delijn.be/stops/303238", "https://data.delijn.be/stops/303242"], ["https://data.delijn.be/stops/503346", "https://data.delijn.be/stops/503432"], ["https://data.delijn.be/stops/503941", "https://data.delijn.be/stops/507016"], ["https://data.delijn.be/stops/503950", "https://data.delijn.be/stops/508648"], ["https://data.delijn.be/stops/102179", "https://data.delijn.be/stops/102937"], ["https://data.delijn.be/stops/206421", "https://data.delijn.be/stops/207421"], ["https://data.delijn.be/stops/409304", "https://data.delijn.be/stops/409306"], ["https://data.delijn.be/stops/303067", "https://data.delijn.be/stops/303151"], ["https://data.delijn.be/stops/106602", "https://data.delijn.be/stops/106900"], ["https://data.delijn.be/stops/502645", "https://data.delijn.be/stops/507646"], ["https://data.delijn.be/stops/202194", "https://data.delijn.be/stops/203197"], ["https://data.delijn.be/stops/206767", "https://data.delijn.be/stops/206947"], ["https://data.delijn.be/stops/200001", "https://data.delijn.be/stops/210856"], ["https://data.delijn.be/stops/400676", "https://data.delijn.be/stops/402534"], ["https://data.delijn.be/stops/204739", "https://data.delijn.be/stops/204740"], ["https://data.delijn.be/stops/205206", "https://data.delijn.be/stops/205233"], ["https://data.delijn.be/stops/301452", "https://data.delijn.be/stops/302516"], ["https://data.delijn.be/stops/306696", "https://data.delijn.be/stops/308781"], ["https://data.delijn.be/stops/208606", "https://data.delijn.be/stops/208615"], ["https://data.delijn.be/stops/308469", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/201144", "https://data.delijn.be/stops/205358"], ["https://data.delijn.be/stops/208854", "https://data.delijn.be/stops/209244"], ["https://data.delijn.be/stops/504393", "https://data.delijn.be/stops/509395"], ["https://data.delijn.be/stops/501467", "https://data.delijn.be/stops/505035"], ["https://data.delijn.be/stops/302081", "https://data.delijn.be/stops/302093"], ["https://data.delijn.be/stops/101430", "https://data.delijn.be/stops/101815"], ["https://data.delijn.be/stops/301093", "https://data.delijn.be/stops/301227"], ["https://data.delijn.be/stops/503795", "https://data.delijn.be/stops/508798"], ["https://data.delijn.be/stops/405615", "https://data.delijn.be/stops/407190"], ["https://data.delijn.be/stops/308145", "https://data.delijn.be/stops/308177"], ["https://data.delijn.be/stops/102081", "https://data.delijn.be/stops/105413"], ["https://data.delijn.be/stops/400533", "https://data.delijn.be/stops/408458"], ["https://data.delijn.be/stops/503123", "https://data.delijn.be/stops/509888"], ["https://data.delijn.be/stops/505225", "https://data.delijn.be/stops/505689"], ["https://data.delijn.be/stops/107659", "https://data.delijn.be/stops/107662"], ["https://data.delijn.be/stops/103929", "https://data.delijn.be/stops/107246"], ["https://data.delijn.be/stops/108428", "https://data.delijn.be/stops/108431"], ["https://data.delijn.be/stops/400932", "https://data.delijn.be/stops/409011"], ["https://data.delijn.be/stops/403513", "https://data.delijn.be/stops/403560"], ["https://data.delijn.be/stops/403787", "https://data.delijn.be/stops/408965"], ["https://data.delijn.be/stops/505097", "https://data.delijn.be/stops/508590"], ["https://data.delijn.be/stops/501405", "https://data.delijn.be/stops/506405"], ["https://data.delijn.be/stops/504278", "https://data.delijn.be/stops/509280"], ["https://data.delijn.be/stops/103113", "https://data.delijn.be/stops/106844"], ["https://data.delijn.be/stops/204210", "https://data.delijn.be/stops/207312"], ["https://data.delijn.be/stops/504433", "https://data.delijn.be/stops/505166"], ["https://data.delijn.be/stops/103123", "https://data.delijn.be/stops/109172"], ["https://data.delijn.be/stops/408685", "https://data.delijn.be/stops/410082"], ["https://data.delijn.be/stops/301825", "https://data.delijn.be/stops/301834"], ["https://data.delijn.be/stops/108616", "https://data.delijn.be/stops/301916"], ["https://data.delijn.be/stops/501031", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/404647", "https://data.delijn.be/stops/406968"], ["https://data.delijn.be/stops/409136", "https://data.delijn.be/stops/409193"], ["https://data.delijn.be/stops/105480", "https://data.delijn.be/stops/105482"], ["https://data.delijn.be/stops/300839", "https://data.delijn.be/stops/333454"], ["https://data.delijn.be/stops/406057", "https://data.delijn.be/stops/406060"], ["https://data.delijn.be/stops/307394", "https://data.delijn.be/stops/307398"], ["https://data.delijn.be/stops/101487", "https://data.delijn.be/stops/109707"], ["https://data.delijn.be/stops/202945", "https://data.delijn.be/stops/203945"], ["https://data.delijn.be/stops/300289", "https://data.delijn.be/stops/301315"], ["https://data.delijn.be/stops/401413", "https://data.delijn.be/stops/301117"], ["https://data.delijn.be/stops/202099", "https://data.delijn.be/stops/202258"], ["https://data.delijn.be/stops/304452", "https://data.delijn.be/stops/307692"], ["https://data.delijn.be/stops/101546", "https://data.delijn.be/stops/101548"], ["https://data.delijn.be/stops/103624", "https://data.delijn.be/stops/103627"], ["https://data.delijn.be/stops/400306", "https://data.delijn.be/stops/400325"], ["https://data.delijn.be/stops/501433", "https://data.delijn.be/stops/506432"], ["https://data.delijn.be/stops/504136", "https://data.delijn.be/stops/509144"], ["https://data.delijn.be/stops/300579", "https://data.delijn.be/stops/300997"], ["https://data.delijn.be/stops/104132", "https://data.delijn.be/stops/108045"], ["https://data.delijn.be/stops/106422", "https://data.delijn.be/stops/106560"], ["https://data.delijn.be/stops/207702", "https://data.delijn.be/stops/207887"], ["https://data.delijn.be/stops/302599", "https://data.delijn.be/stops/302693"], ["https://data.delijn.be/stops/300754", "https://data.delijn.be/stops/300780"], ["https://data.delijn.be/stops/106666", "https://data.delijn.be/stops/106667"], ["https://data.delijn.be/stops/500126", "https://data.delijn.be/stops/505316"], ["https://data.delijn.be/stops/206323", "https://data.delijn.be/stops/206484"], ["https://data.delijn.be/stops/402808", "https://data.delijn.be/stops/409018"], ["https://data.delijn.be/stops/206385", "https://data.delijn.be/stops/206806"], ["https://data.delijn.be/stops/200182", "https://data.delijn.be/stops/201735"], ["https://data.delijn.be/stops/204298", "https://data.delijn.be/stops/204540"], ["https://data.delijn.be/stops/206579", "https://data.delijn.be/stops/207464"], ["https://data.delijn.be/stops/107136", "https://data.delijn.be/stops/107139"], ["https://data.delijn.be/stops/305769", "https://data.delijn.be/stops/305785"], ["https://data.delijn.be/stops/104053", "https://data.delijn.be/stops/108413"], ["https://data.delijn.be/stops/406983", "https://data.delijn.be/stops/407915"], ["https://data.delijn.be/stops/408498", "https://data.delijn.be/stops/408688"], ["https://data.delijn.be/stops/401081", "https://data.delijn.be/stops/409058"], ["https://data.delijn.be/stops/402084", "https://data.delijn.be/stops/402134"], ["https://data.delijn.be/stops/206064", "https://data.delijn.be/stops/207118"], ["https://data.delijn.be/stops/407206", "https://data.delijn.be/stops/407208"], ["https://data.delijn.be/stops/302699", "https://data.delijn.be/stops/302700"], ["https://data.delijn.be/stops/105777", "https://data.delijn.be/stops/105779"], ["https://data.delijn.be/stops/205016", "https://data.delijn.be/stops/205107"], ["https://data.delijn.be/stops/305438", "https://data.delijn.be/stops/305507"], ["https://data.delijn.be/stops/505422", "https://data.delijn.be/stops/509608"], ["https://data.delijn.be/stops/503399", "https://data.delijn.be/stops/508430"], ["https://data.delijn.be/stops/300979", "https://data.delijn.be/stops/300994"], ["https://data.delijn.be/stops/101676", "https://data.delijn.be/stops/103132"], ["https://data.delijn.be/stops/101591", "https://data.delijn.be/stops/103038"], ["https://data.delijn.be/stops/206526", "https://data.delijn.be/stops/207526"], ["https://data.delijn.be/stops/204520", "https://data.delijn.be/stops/205520"], ["https://data.delijn.be/stops/207377", "https://data.delijn.be/stops/207726"], ["https://data.delijn.be/stops/408968", "https://data.delijn.be/stops/408978"], ["https://data.delijn.be/stops/400616", "https://data.delijn.be/stops/400626"], ["https://data.delijn.be/stops/303892", "https://data.delijn.be/stops/306093"], ["https://data.delijn.be/stops/401849", "https://data.delijn.be/stops/406818"], ["https://data.delijn.be/stops/208667", "https://data.delijn.be/stops/208673"], ["https://data.delijn.be/stops/402389", "https://data.delijn.be/stops/404704"], ["https://data.delijn.be/stops/207028", "https://data.delijn.be/stops/207077"], ["https://data.delijn.be/stops/201978", "https://data.delijn.be/stops/208040"], ["https://data.delijn.be/stops/101921", "https://data.delijn.be/stops/106039"], ["https://data.delijn.be/stops/400470", "https://data.delijn.be/stops/407642"], ["https://data.delijn.be/stops/102962", "https://data.delijn.be/stops/109256"], ["https://data.delijn.be/stops/105704", "https://data.delijn.be/stops/105712"], ["https://data.delijn.be/stops/208753", "https://data.delijn.be/stops/209382"], ["https://data.delijn.be/stops/101135", "https://data.delijn.be/stops/103352"], ["https://data.delijn.be/stops/102400", "https://data.delijn.be/stops/104760"], ["https://data.delijn.be/stops/200360", "https://data.delijn.be/stops/201108"], ["https://data.delijn.be/stops/102389", "https://data.delijn.be/stops/107083"], ["https://data.delijn.be/stops/208105", "https://data.delijn.be/stops/209777"], ["https://data.delijn.be/stops/404850", "https://data.delijn.be/stops/404855"], ["https://data.delijn.be/stops/105220", "https://data.delijn.be/stops/105415"], ["https://data.delijn.be/stops/304594", "https://data.delijn.be/stops/304656"], ["https://data.delijn.be/stops/409300", "https://data.delijn.be/stops/409318"], ["https://data.delijn.be/stops/406914", "https://data.delijn.be/stops/406968"], ["https://data.delijn.be/stops/210849", "https://data.delijn.be/stops/211849"], ["https://data.delijn.be/stops/105614", "https://data.delijn.be/stops/106365"], ["https://data.delijn.be/stops/301915", "https://data.delijn.be/stops/305814"], ["https://data.delijn.be/stops/105064", "https://data.delijn.be/stops/305832"], ["https://data.delijn.be/stops/509501", "https://data.delijn.be/stops/509503"], ["https://data.delijn.be/stops/409275", "https://data.delijn.be/stops/409311"], ["https://data.delijn.be/stops/505704", "https://data.delijn.be/stops/507571"], ["https://data.delijn.be/stops/206553", "https://data.delijn.be/stops/207485"], ["https://data.delijn.be/stops/101651", "https://data.delijn.be/stops/105502"], ["https://data.delijn.be/stops/402935", "https://data.delijn.be/stops/403979"], ["https://data.delijn.be/stops/306770", "https://data.delijn.be/stops/306823"], ["https://data.delijn.be/stops/504992", "https://data.delijn.be/stops/505962"], ["https://data.delijn.be/stops/105883", "https://data.delijn.be/stops/105884"], ["https://data.delijn.be/stops/306746", "https://data.delijn.be/stops/306747"], ["https://data.delijn.be/stops/403064", "https://data.delijn.be/stops/403241"], ["https://data.delijn.be/stops/410212", "https://data.delijn.be/stops/410391"], ["https://data.delijn.be/stops/409745", "https://data.delijn.be/stops/409794"], ["https://data.delijn.be/stops/501399", "https://data.delijn.be/stops/506399"], ["https://data.delijn.be/stops/400707", "https://data.delijn.be/stops/401910"], ["https://data.delijn.be/stops/408653", "https://data.delijn.be/stops/408660"], ["https://data.delijn.be/stops/108271", "https://data.delijn.be/stops/109360"], ["https://data.delijn.be/stops/103950", "https://data.delijn.be/stops/106070"], ["https://data.delijn.be/stops/308610", "https://data.delijn.be/stops/308612"], ["https://data.delijn.be/stops/206165", "https://data.delijn.be/stops/207165"], ["https://data.delijn.be/stops/404012", "https://data.delijn.be/stops/404016"], ["https://data.delijn.be/stops/103096", "https://data.delijn.be/stops/109270"], ["https://data.delijn.be/stops/200885", "https://data.delijn.be/stops/202064"], ["https://data.delijn.be/stops/402095", "https://data.delijn.be/stops/402228"], ["https://data.delijn.be/stops/401530", "https://data.delijn.be/stops/402028"], ["https://data.delijn.be/stops/405687", "https://data.delijn.be/stops/406467"], ["https://data.delijn.be/stops/308770", "https://data.delijn.be/stops/308782"], ["https://data.delijn.be/stops/204107", "https://data.delijn.be/stops/205115"], ["https://data.delijn.be/stops/504427", "https://data.delijn.be/stops/504697"], ["https://data.delijn.be/stops/204742", "https://data.delijn.be/stops/204746"], ["https://data.delijn.be/stops/406852", "https://data.delijn.be/stops/406853"], ["https://data.delijn.be/stops/502533", "https://data.delijn.be/stops/507533"], ["https://data.delijn.be/stops/101875", "https://data.delijn.be/stops/103520"], ["https://data.delijn.be/stops/206659", "https://data.delijn.be/stops/207658"], ["https://data.delijn.be/stops/108310", "https://data.delijn.be/stops/108315"], ["https://data.delijn.be/stops/108971", "https://data.delijn.be/stops/109667"], ["https://data.delijn.be/stops/300725", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/503692", "https://data.delijn.be/stops/508691"], ["https://data.delijn.be/stops/206990", "https://data.delijn.be/stops/207990"], ["https://data.delijn.be/stops/303875", "https://data.delijn.be/stops/303876"], ["https://data.delijn.be/stops/402359", "https://data.delijn.be/stops/402456"], ["https://data.delijn.be/stops/102564", "https://data.delijn.be/stops/406469"], ["https://data.delijn.be/stops/200723", "https://data.delijn.be/stops/200937"], ["https://data.delijn.be/stops/303796", "https://data.delijn.be/stops/303800"], ["https://data.delijn.be/stops/206105", "https://data.delijn.be/stops/206106"], ["https://data.delijn.be/stops/404795", "https://data.delijn.be/stops/404801"], ["https://data.delijn.be/stops/403407", "https://data.delijn.be/stops/403408"], ["https://data.delijn.be/stops/203120", "https://data.delijn.be/stops/203636"], ["https://data.delijn.be/stops/301501", "https://data.delijn.be/stops/308075"], ["https://data.delijn.be/stops/503096", "https://data.delijn.be/stops/508095"], ["https://data.delijn.be/stops/103900", "https://data.delijn.be/stops/106000"], ["https://data.delijn.be/stops/208958", "https://data.delijn.be/stops/209958"], ["https://data.delijn.be/stops/406635", "https://data.delijn.be/stops/407224"], ["https://data.delijn.be/stops/200534", "https://data.delijn.be/stops/201346"], ["https://data.delijn.be/stops/109243", "https://data.delijn.be/stops/109258"], ["https://data.delijn.be/stops/207428", "https://data.delijn.be/stops/209693"], ["https://data.delijn.be/stops/503277", "https://data.delijn.be/stops/508587"], ["https://data.delijn.be/stops/406242", "https://data.delijn.be/stops/406243"], ["https://data.delijn.be/stops/208132", "https://data.delijn.be/stops/208815"], ["https://data.delijn.be/stops/400875", "https://data.delijn.be/stops/409524"], ["https://data.delijn.be/stops/501134", "https://data.delijn.be/stops/506367"], ["https://data.delijn.be/stops/405960", "https://data.delijn.be/stops/308170"], ["https://data.delijn.be/stops/104652", "https://data.delijn.be/stops/306761"], ["https://data.delijn.be/stops/200563", "https://data.delijn.be/stops/201561"], ["https://data.delijn.be/stops/307631", "https://data.delijn.be/stops/307632"], ["https://data.delijn.be/stops/204045", "https://data.delijn.be/stops/204517"], ["https://data.delijn.be/stops/203346", "https://data.delijn.be/stops/204975"], ["https://data.delijn.be/stops/103122", "https://data.delijn.be/stops/104383"], ["https://data.delijn.be/stops/101678", "https://data.delijn.be/stops/101684"], ["https://data.delijn.be/stops/302136", "https://data.delijn.be/stops/302145"], ["https://data.delijn.be/stops/203869", "https://data.delijn.be/stops/209723"], ["https://data.delijn.be/stops/403745", "https://data.delijn.be/stops/403776"], ["https://data.delijn.be/stops/201004", "https://data.delijn.be/stops/201994"], ["https://data.delijn.be/stops/101821", "https://data.delijn.be/stops/107024"], ["https://data.delijn.be/stops/202460", "https://data.delijn.be/stops/203460"], ["https://data.delijn.be/stops/508658", "https://data.delijn.be/stops/508748"], ["https://data.delijn.be/stops/502012", "https://data.delijn.be/stops/502346"], ["https://data.delijn.be/stops/200319", "https://data.delijn.be/stops/201319"], ["https://data.delijn.be/stops/505117", "https://data.delijn.be/stops/508653"], ["https://data.delijn.be/stops/101750", "https://data.delijn.be/stops/102861"], ["https://data.delijn.be/stops/218503", "https://data.delijn.be/stops/219503"], ["https://data.delijn.be/stops/104402", "https://data.delijn.be/stops/104403"], ["https://data.delijn.be/stops/106625", "https://data.delijn.be/stops/106627"], ["https://data.delijn.be/stops/300868", "https://data.delijn.be/stops/302217"], ["https://data.delijn.be/stops/206936", "https://data.delijn.be/stops/207249"], ["https://data.delijn.be/stops/300517", "https://data.delijn.be/stops/300528"], ["https://data.delijn.be/stops/206897", "https://data.delijn.be/stops/207896"], ["https://data.delijn.be/stops/205988", "https://data.delijn.be/stops/219010"], ["https://data.delijn.be/stops/407947", "https://data.delijn.be/stops/408087"], ["https://data.delijn.be/stops/103225", "https://data.delijn.be/stops/103235"], ["https://data.delijn.be/stops/302618", "https://data.delijn.be/stops/302627"], ["https://data.delijn.be/stops/502068", "https://data.delijn.be/stops/507061"], ["https://data.delijn.be/stops/209040", "https://data.delijn.be/stops/209052"], ["https://data.delijn.be/stops/302721", "https://data.delijn.be/stops/302722"], ["https://data.delijn.be/stops/103590", "https://data.delijn.be/stops/108917"], ["https://data.delijn.be/stops/404208", "https://data.delijn.be/stops/404209"], ["https://data.delijn.be/stops/300798", "https://data.delijn.be/stops/306115"], ["https://data.delijn.be/stops/303087", "https://data.delijn.be/stops/303089"], ["https://data.delijn.be/stops/502555", "https://data.delijn.be/stops/507558"], ["https://data.delijn.be/stops/301193", "https://data.delijn.be/stops/308558"], ["https://data.delijn.be/stops/507738", "https://data.delijn.be/stops/509820"], ["https://data.delijn.be/stops/201305", "https://data.delijn.be/stops/203764"], ["https://data.delijn.be/stops/302976", "https://data.delijn.be/stops/303004"], ["https://data.delijn.be/stops/301948", "https://data.delijn.be/stops/307895"], ["https://data.delijn.be/stops/504237", "https://data.delijn.be/stops/509237"], ["https://data.delijn.be/stops/206027", "https://data.delijn.be/stops/206686"], ["https://data.delijn.be/stops/103120", "https://data.delijn.be/stops/104175"], ["https://data.delijn.be/stops/302403", "https://data.delijn.be/stops/302404"], ["https://data.delijn.be/stops/407076", "https://data.delijn.be/stops/407077"], ["https://data.delijn.be/stops/501614", "https://data.delijn.be/stops/501620"], ["https://data.delijn.be/stops/108459", "https://data.delijn.be/stops/108463"], ["https://data.delijn.be/stops/202710", "https://data.delijn.be/stops/202728"], ["https://data.delijn.be/stops/200509", "https://data.delijn.be/stops/201509"], ["https://data.delijn.be/stops/302844", "https://data.delijn.be/stops/302847"], ["https://data.delijn.be/stops/404475", "https://data.delijn.be/stops/405623"], ["https://data.delijn.be/stops/405258", "https://data.delijn.be/stops/405265"], ["https://data.delijn.be/stops/200508", "https://data.delijn.be/stops/201508"], ["https://data.delijn.be/stops/305835", "https://data.delijn.be/stops/305836"], ["https://data.delijn.be/stops/200156", "https://data.delijn.be/stops/201410"], ["https://data.delijn.be/stops/200954", "https://data.delijn.be/stops/202935"], ["https://data.delijn.be/stops/301184", "https://data.delijn.be/stops/304015"], ["https://data.delijn.be/stops/304785", "https://data.delijn.be/stops/308786"], ["https://data.delijn.be/stops/505357", "https://data.delijn.be/stops/505359"], ["https://data.delijn.be/stops/208410", "https://data.delijn.be/stops/209410"], ["https://data.delijn.be/stops/204527", "https://data.delijn.be/stops/205729"], ["https://data.delijn.be/stops/200899", "https://data.delijn.be/stops/203436"], ["https://data.delijn.be/stops/303773", "https://data.delijn.be/stops/308713"], ["https://data.delijn.be/stops/206705", "https://data.delijn.be/stops/207973"], ["https://data.delijn.be/stops/402954", "https://data.delijn.be/stops/404900"], ["https://data.delijn.be/stops/203348", "https://data.delijn.be/stops/208442"], ["https://data.delijn.be/stops/400832", "https://data.delijn.be/stops/403573"], ["https://data.delijn.be/stops/108827", "https://data.delijn.be/stops/108829"], ["https://data.delijn.be/stops/401756", "https://data.delijn.be/stops/401762"], ["https://data.delijn.be/stops/208293", "https://data.delijn.be/stops/209790"], ["https://data.delijn.be/stops/307069", "https://data.delijn.be/stops/307932"], ["https://data.delijn.be/stops/400266", "https://data.delijn.be/stops/400310"], ["https://data.delijn.be/stops/103976", "https://data.delijn.be/stops/109010"], ["https://data.delijn.be/stops/501077", "https://data.delijn.be/stops/506081"], ["https://data.delijn.be/stops/304628", "https://data.delijn.be/stops/304633"], ["https://data.delijn.be/stops/503092", "https://data.delijn.be/stops/505384"], ["https://data.delijn.be/stops/408034", "https://data.delijn.be/stops/408057"], ["https://data.delijn.be/stops/105308", "https://data.delijn.be/stops/105353"], ["https://data.delijn.be/stops/502116", "https://data.delijn.be/stops/507100"], ["https://data.delijn.be/stops/300687", "https://data.delijn.be/stops/308936"], ["https://data.delijn.be/stops/301961", "https://data.delijn.be/stops/301983"], ["https://data.delijn.be/stops/301444", "https://data.delijn.be/stops/306416"], ["https://data.delijn.be/stops/306942", "https://data.delijn.be/stops/306943"], ["https://data.delijn.be/stops/504160", "https://data.delijn.be/stops/504195"], ["https://data.delijn.be/stops/502514", "https://data.delijn.be/stops/507514"], ["https://data.delijn.be/stops/200573", "https://data.delijn.be/stops/201573"], ["https://data.delijn.be/stops/505384", "https://data.delijn.be/stops/508092"], ["https://data.delijn.be/stops/102231", "https://data.delijn.be/stops/105526"], ["https://data.delijn.be/stops/409058", "https://data.delijn.be/stops/409059"], ["https://data.delijn.be/stops/301005", "https://data.delijn.be/stops/301006"], ["https://data.delijn.be/stops/407404", "https://data.delijn.be/stops/407427"], ["https://data.delijn.be/stops/406426", "https://data.delijn.be/stops/409395"], ["https://data.delijn.be/stops/402192", "https://data.delijn.be/stops/402254"], ["https://data.delijn.be/stops/503148", "https://data.delijn.be/stops/505201"], ["https://data.delijn.be/stops/501547", "https://data.delijn.be/stops/505781"], ["https://data.delijn.be/stops/300498", "https://data.delijn.be/stops/302867"], ["https://data.delijn.be/stops/206012", "https://data.delijn.be/stops/207723"], ["https://data.delijn.be/stops/503282", "https://data.delijn.be/stops/508282"], ["https://data.delijn.be/stops/408208", "https://data.delijn.be/stops/408361"], ["https://data.delijn.be/stops/208351", "https://data.delijn.be/stops/209352"], ["https://data.delijn.be/stops/101023", "https://data.delijn.be/stops/105575"], ["https://data.delijn.be/stops/403319", "https://data.delijn.be/stops/410320"], ["https://data.delijn.be/stops/508717", "https://data.delijn.be/stops/508732"], ["https://data.delijn.be/stops/407975", "https://data.delijn.be/stops/407979"], ["https://data.delijn.be/stops/408319", "https://data.delijn.be/stops/408349"], ["https://data.delijn.be/stops/304526", "https://data.delijn.be/stops/304528"], ["https://data.delijn.be/stops/407792", "https://data.delijn.be/stops/307446"], ["https://data.delijn.be/stops/400595", "https://data.delijn.be/stops/400604"], ["https://data.delijn.be/stops/208444", "https://data.delijn.be/stops/209444"], ["https://data.delijn.be/stops/108106", "https://data.delijn.be/stops/108116"], ["https://data.delijn.be/stops/108135", "https://data.delijn.be/stops/108140"], ["https://data.delijn.be/stops/105618", "https://data.delijn.be/stops/105657"], ["https://data.delijn.be/stops/106399", "https://data.delijn.be/stops/107406"], ["https://data.delijn.be/stops/302372", "https://data.delijn.be/stops/302377"], ["https://data.delijn.be/stops/400928", "https://data.delijn.be/stops/400941"], ["https://data.delijn.be/stops/300939", "https://data.delijn.be/stops/304190"], ["https://data.delijn.be/stops/502394", "https://data.delijn.be/stops/507393"], ["https://data.delijn.be/stops/508191", "https://data.delijn.be/stops/508200"], ["https://data.delijn.be/stops/504075", "https://data.delijn.be/stops/509271"], ["https://data.delijn.be/stops/101183", "https://data.delijn.be/stops/107874"], ["https://data.delijn.be/stops/205022", "https://data.delijn.be/stops/205023"], ["https://data.delijn.be/stops/209219", "https://data.delijn.be/stops/209222"], ["https://data.delijn.be/stops/404871", "https://data.delijn.be/stops/404880"], ["https://data.delijn.be/stops/104017", "https://data.delijn.be/stops/104025"], ["https://data.delijn.be/stops/302619", "https://data.delijn.be/stops/303275"], ["https://data.delijn.be/stops/301271", "https://data.delijn.be/stops/307033"], ["https://data.delijn.be/stops/205288", "https://data.delijn.be/stops/205823"], ["https://data.delijn.be/stops/402678", "https://data.delijn.be/stops/402713"], ["https://data.delijn.be/stops/400349", "https://data.delijn.be/stops/400382"], ["https://data.delijn.be/stops/402304", "https://data.delijn.be/stops/402305"], ["https://data.delijn.be/stops/300265", "https://data.delijn.be/stops/302149"], ["https://data.delijn.be/stops/105802", "https://data.delijn.be/stops/107498"], ["https://data.delijn.be/stops/408752", "https://data.delijn.be/stops/408760"], ["https://data.delijn.be/stops/102296", "https://data.delijn.be/stops/106582"], ["https://data.delijn.be/stops/505073", "https://data.delijn.be/stops/508822"], ["https://data.delijn.be/stops/106091", "https://data.delijn.be/stops/108474"], ["https://data.delijn.be/stops/304933", "https://data.delijn.be/stops/304962"], ["https://data.delijn.be/stops/206619", "https://data.delijn.be/stops/207620"], ["https://data.delijn.be/stops/200938", "https://data.delijn.be/stops/202040"], ["https://data.delijn.be/stops/202473", "https://data.delijn.be/stops/203472"], ["https://data.delijn.be/stops/508280", "https://data.delijn.be/stops/508283"], ["https://data.delijn.be/stops/308215", "https://data.delijn.be/stops/308248"], ["https://data.delijn.be/stops/109911", "https://data.delijn.be/stops/109912"], ["https://data.delijn.be/stops/204304", "https://data.delijn.be/stops/205352"], ["https://data.delijn.be/stops/103477", "https://data.delijn.be/stops/109165"], ["https://data.delijn.be/stops/201806", "https://data.delijn.be/stops/208327"], ["https://data.delijn.be/stops/405924", "https://data.delijn.be/stops/405925"], ["https://data.delijn.be/stops/105843", "https://data.delijn.be/stops/105846"], ["https://data.delijn.be/stops/101601", "https://data.delijn.be/stops/101602"], ["https://data.delijn.be/stops/202094", "https://data.delijn.be/stops/203096"], ["https://data.delijn.be/stops/205047", "https://data.delijn.be/stops/205048"], ["https://data.delijn.be/stops/206891", "https://data.delijn.be/stops/207891"], ["https://data.delijn.be/stops/505105", "https://data.delijn.be/stops/508119"], ["https://data.delijn.be/stops/103236", "https://data.delijn.be/stops/107687"], ["https://data.delijn.be/stops/102648", "https://data.delijn.be/stops/105109"], ["https://data.delijn.be/stops/107589", "https://data.delijn.be/stops/107591"], ["https://data.delijn.be/stops/405322", "https://data.delijn.be/stops/303327"], ["https://data.delijn.be/stops/202048", "https://data.delijn.be/stops/211114"], ["https://data.delijn.be/stops/401166", "https://data.delijn.be/stops/401525"], ["https://data.delijn.be/stops/400057", "https://data.delijn.be/stops/400072"], ["https://data.delijn.be/stops/107216", "https://data.delijn.be/stops/107217"], ["https://data.delijn.be/stops/402840", "https://data.delijn.be/stops/402894"], ["https://data.delijn.be/stops/405002", "https://data.delijn.be/stops/405036"], ["https://data.delijn.be/stops/505501", "https://data.delijn.be/stops/505605"], ["https://data.delijn.be/stops/300026", "https://data.delijn.be/stops/300051"], ["https://data.delijn.be/stops/503091", "https://data.delijn.be/stops/508090"], ["https://data.delijn.be/stops/503932", "https://data.delijn.be/stops/508923"], ["https://data.delijn.be/stops/405916", "https://data.delijn.be/stops/405917"], ["https://data.delijn.be/stops/101358", "https://data.delijn.be/stops/102187"], ["https://data.delijn.be/stops/408134", "https://data.delijn.be/stops/408137"], ["https://data.delijn.be/stops/206023", "https://data.delijn.be/stops/207267"], ["https://data.delijn.be/stops/206149", "https://data.delijn.be/stops/207095"], ["https://data.delijn.be/stops/305048", "https://data.delijn.be/stops/305087"], ["https://data.delijn.be/stops/305507", "https://data.delijn.be/stops/305519"], ["https://data.delijn.be/stops/307743", "https://data.delijn.be/stops/307744"], ["https://data.delijn.be/stops/205133", "https://data.delijn.be/stops/205147"], ["https://data.delijn.be/stops/202215", "https://data.delijn.be/stops/203214"], ["https://data.delijn.be/stops/102056", "https://data.delijn.be/stops/102065"], ["https://data.delijn.be/stops/200931", "https://data.delijn.be/stops/202237"], ["https://data.delijn.be/stops/102302", "https://data.delijn.be/stops/109507"], ["https://data.delijn.be/stops/503111", "https://data.delijn.be/stops/505083"], ["https://data.delijn.be/stops/210013", "https://data.delijn.be/stops/211013"], ["https://data.delijn.be/stops/102301", "https://data.delijn.be/stops/106968"], ["https://data.delijn.be/stops/105228", "https://data.delijn.be/stops/109957"], ["https://data.delijn.be/stops/202259", "https://data.delijn.be/stops/203102"], ["https://data.delijn.be/stops/301787", "https://data.delijn.be/stops/301789"], ["https://data.delijn.be/stops/102854", "https://data.delijn.be/stops/205622"], ["https://data.delijn.be/stops/302779", "https://data.delijn.be/stops/302781"], ["https://data.delijn.be/stops/206865", "https://data.delijn.be/stops/207865"], ["https://data.delijn.be/stops/209612", "https://data.delijn.be/stops/209613"], ["https://data.delijn.be/stops/501348", "https://data.delijn.be/stops/506306"], ["https://data.delijn.be/stops/308257", "https://data.delijn.be/stops/308258"], ["https://data.delijn.be/stops/202768", "https://data.delijn.be/stops/203505"], ["https://data.delijn.be/stops/503558", "https://data.delijn.be/stops/508558"], ["https://data.delijn.be/stops/201873", "https://data.delijn.be/stops/202024"], ["https://data.delijn.be/stops/303303", "https://data.delijn.be/stops/308738"], ["https://data.delijn.be/stops/108703", "https://data.delijn.be/stops/108707"], ["https://data.delijn.be/stops/206043", "https://data.delijn.be/stops/206539"], ["https://data.delijn.be/stops/301689", "https://data.delijn.be/stops/301690"], ["https://data.delijn.be/stops/503458", "https://data.delijn.be/stops/503476"], ["https://data.delijn.be/stops/201133", "https://data.delijn.be/stops/201134"], ["https://data.delijn.be/stops/304849", "https://data.delijn.be/stops/304865"], ["https://data.delijn.be/stops/401533", "https://data.delijn.be/stops/406015"], ["https://data.delijn.be/stops/403492", "https://data.delijn.be/stops/405630"], ["https://data.delijn.be/stops/207234", "https://data.delijn.be/stops/207236"], ["https://data.delijn.be/stops/101472", "https://data.delijn.be/stops/109613"], ["https://data.delijn.be/stops/501103", "https://data.delijn.be/stops/506103"], ["https://data.delijn.be/stops/303595", "https://data.delijn.be/stops/303895"], ["https://data.delijn.be/stops/301231", "https://data.delijn.be/stops/305949"], ["https://data.delijn.be/stops/501182", "https://data.delijn.be/stops/501406"], ["https://data.delijn.be/stops/507611", "https://data.delijn.be/stops/507612"], ["https://data.delijn.be/stops/302479", "https://data.delijn.be/stops/308356"], ["https://data.delijn.be/stops/300553", "https://data.delijn.be/stops/307857"], ["https://data.delijn.be/stops/208151", "https://data.delijn.be/stops/209153"], ["https://data.delijn.be/stops/204021", "https://data.delijn.be/stops/204023"], ["https://data.delijn.be/stops/502556", "https://data.delijn.be/stops/507556"], ["https://data.delijn.be/stops/404598", "https://data.delijn.be/stops/404603"], ["https://data.delijn.be/stops/504205", "https://data.delijn.be/stops/505409"], ["https://data.delijn.be/stops/104504", "https://data.delijn.be/stops/104507"], ["https://data.delijn.be/stops/302509", "https://data.delijn.be/stops/302514"], ["https://data.delijn.be/stops/400563", "https://data.delijn.be/stops/403858"], ["https://data.delijn.be/stops/505597", "https://data.delijn.be/stops/509724"], ["https://data.delijn.be/stops/406927", "https://data.delijn.be/stops/406968"], ["https://data.delijn.be/stops/202707", "https://data.delijn.be/stops/203707"], ["https://data.delijn.be/stops/406368", "https://data.delijn.be/stops/406392"], ["https://data.delijn.be/stops/103128", "https://data.delijn.be/stops/103129"], ["https://data.delijn.be/stops/501175", "https://data.delijn.be/stops/506184"], ["https://data.delijn.be/stops/504849", "https://data.delijn.be/stops/504850"], ["https://data.delijn.be/stops/302180", "https://data.delijn.be/stops/302181"], ["https://data.delijn.be/stops/508082", "https://data.delijn.be/stops/508083"], ["https://data.delijn.be/stops/501001", "https://data.delijn.be/stops/501686"], ["https://data.delijn.be/stops/304595", "https://data.delijn.be/stops/304603"], ["https://data.delijn.be/stops/503902", "https://data.delijn.be/stops/508902"], ["https://data.delijn.be/stops/404734", "https://data.delijn.be/stops/404751"], ["https://data.delijn.be/stops/200813", "https://data.delijn.be/stops/203058"], ["https://data.delijn.be/stops/302315", "https://data.delijn.be/stops/302326"], ["https://data.delijn.be/stops/501142", "https://data.delijn.be/stops/501157"], ["https://data.delijn.be/stops/502024", "https://data.delijn.be/stops/507024"], ["https://data.delijn.be/stops/204696", "https://data.delijn.be/stops/205686"], ["https://data.delijn.be/stops/400664", "https://data.delijn.be/stops/400683"], ["https://data.delijn.be/stops/103084", "https://data.delijn.be/stops/107387"], ["https://data.delijn.be/stops/407591", "https://data.delijn.be/stops/407662"], ["https://data.delijn.be/stops/206448", "https://data.delijn.be/stops/206478"], ["https://data.delijn.be/stops/206291", "https://data.delijn.be/stops/206816"], ["https://data.delijn.be/stops/301699", "https://data.delijn.be/stops/305875"], ["https://data.delijn.be/stops/506318", "https://data.delijn.be/stops/506517"], ["https://data.delijn.be/stops/209394", "https://data.delijn.be/stops/509816"], ["https://data.delijn.be/stops/201475", "https://data.delijn.be/stops/208862"], ["https://data.delijn.be/stops/301938", "https://data.delijn.be/stops/302152"], ["https://data.delijn.be/stops/503885", "https://data.delijn.be/stops/505104"], ["https://data.delijn.be/stops/206953", "https://data.delijn.be/stops/207047"], ["https://data.delijn.be/stops/303363", "https://data.delijn.be/stops/308798"], ["https://data.delijn.be/stops/208150", "https://data.delijn.be/stops/208521"], ["https://data.delijn.be/stops/108488", "https://data.delijn.be/stops/306593"], ["https://data.delijn.be/stops/308099", "https://data.delijn.be/stops/308100"], ["https://data.delijn.be/stops/103761", "https://data.delijn.be/stops/105351"], ["https://data.delijn.be/stops/204067", "https://data.delijn.be/stops/205250"], ["https://data.delijn.be/stops/108541", "https://data.delijn.be/stops/108542"], ["https://data.delijn.be/stops/401816", "https://data.delijn.be/stops/406074"], ["https://data.delijn.be/stops/104962", "https://data.delijn.be/stops/109241"], ["https://data.delijn.be/stops/400659", "https://data.delijn.be/stops/400662"], ["https://data.delijn.be/stops/505707", "https://data.delijn.be/stops/509228"], ["https://data.delijn.be/stops/403024", "https://data.delijn.be/stops/403025"], ["https://data.delijn.be/stops/206710", "https://data.delijn.be/stops/206711"], ["https://data.delijn.be/stops/301494", "https://data.delijn.be/stops/307957"], ["https://data.delijn.be/stops/302346", "https://data.delijn.be/stops/302358"], ["https://data.delijn.be/stops/505026", "https://data.delijn.be/stops/505771"], ["https://data.delijn.be/stops/200628", "https://data.delijn.be/stops/205984"], ["https://data.delijn.be/stops/407665", "https://data.delijn.be/stops/407678"], ["https://data.delijn.be/stops/208154", "https://data.delijn.be/stops/209241"], ["https://data.delijn.be/stops/402886", "https://data.delijn.be/stops/402888"], ["https://data.delijn.be/stops/207761", "https://data.delijn.be/stops/209189"], ["https://data.delijn.be/stops/305252", "https://data.delijn.be/stops/305260"], ["https://data.delijn.be/stops/403109", "https://data.delijn.be/stops/403193"], ["https://data.delijn.be/stops/407374", "https://data.delijn.be/stops/407375"], ["https://data.delijn.be/stops/202809", "https://data.delijn.be/stops/203809"], ["https://data.delijn.be/stops/408812", "https://data.delijn.be/stops/408813"], ["https://data.delijn.be/stops/208030", "https://data.delijn.be/stops/209030"], ["https://data.delijn.be/stops/203931", "https://data.delijn.be/stops/211002"], ["https://data.delijn.be/stops/106161", "https://data.delijn.be/stops/106451"], ["https://data.delijn.be/stops/101221", "https://data.delijn.be/stops/107827"], ["https://data.delijn.be/stops/200733", "https://data.delijn.be/stops/202572"], ["https://data.delijn.be/stops/509702", "https://data.delijn.be/stops/509928"], ["https://data.delijn.be/stops/303287", "https://data.delijn.be/stops/305978"], ["https://data.delijn.be/stops/503769", "https://data.delijn.be/stops/508769"], ["https://data.delijn.be/stops/300771", "https://data.delijn.be/stops/302400"], ["https://data.delijn.be/stops/406043", "https://data.delijn.be/stops/406063"], ["https://data.delijn.be/stops/204135", "https://data.delijn.be/stops/204136"], ["https://data.delijn.be/stops/103743", "https://data.delijn.be/stops/105630"], ["https://data.delijn.be/stops/408866", "https://data.delijn.be/stops/408883"], ["https://data.delijn.be/stops/501026", "https://data.delijn.be/stops/506448"], ["https://data.delijn.be/stops/200393", "https://data.delijn.be/stops/201370"], ["https://data.delijn.be/stops/305895", "https://data.delijn.be/stops/305898"], ["https://data.delijn.be/stops/201718", "https://data.delijn.be/stops/203374"], ["https://data.delijn.be/stops/307383", "https://data.delijn.be/stops/307387"], ["https://data.delijn.be/stops/408518", "https://data.delijn.be/stops/408715"], ["https://data.delijn.be/stops/407162", "https://data.delijn.be/stops/407163"], ["https://data.delijn.be/stops/105591", "https://data.delijn.be/stops/105592"], ["https://data.delijn.be/stops/108311", "https://data.delijn.be/stops/109871"], ["https://data.delijn.be/stops/107169", "https://data.delijn.be/stops/107171"], ["https://data.delijn.be/stops/207067", "https://data.delijn.be/stops/207265"], ["https://data.delijn.be/stops/405816", "https://data.delijn.be/stops/409433"], ["https://data.delijn.be/stops/109194", "https://data.delijn.be/stops/109195"], ["https://data.delijn.be/stops/403300", "https://data.delijn.be/stops/407362"], ["https://data.delijn.be/stops/304938", "https://data.delijn.be/stops/308017"], ["https://data.delijn.be/stops/402070", "https://data.delijn.be/stops/402443"], ["https://data.delijn.be/stops/209551", "https://data.delijn.be/stops/209558"], ["https://data.delijn.be/stops/101672", "https://data.delijn.be/stops/408809"], ["https://data.delijn.be/stops/408828", "https://data.delijn.be/stops/408831"], ["https://data.delijn.be/stops/504405", "https://data.delijn.be/stops/509009"], ["https://data.delijn.be/stops/108359", "https://data.delijn.be/stops/108361"], ["https://data.delijn.be/stops/103284", "https://data.delijn.be/stops/106127"], ["https://data.delijn.be/stops/202133", "https://data.delijn.be/stops/203132"], ["https://data.delijn.be/stops/404171", "https://data.delijn.be/stops/404182"], ["https://data.delijn.be/stops/200755", "https://data.delijn.be/stops/503010"], ["https://data.delijn.be/stops/306140", "https://data.delijn.be/stops/306644"], ["https://data.delijn.be/stops/502914", "https://data.delijn.be/stops/507933"], ["https://data.delijn.be/stops/303499", "https://data.delijn.be/stops/308069"], ["https://data.delijn.be/stops/205979", "https://data.delijn.be/stops/206247"], ["https://data.delijn.be/stops/302590", "https://data.delijn.be/stops/302594"], ["https://data.delijn.be/stops/208609", "https://data.delijn.be/stops/209609"], ["https://data.delijn.be/stops/107490", "https://data.delijn.be/stops/109683"], ["https://data.delijn.be/stops/406523", "https://data.delijn.be/stops/406631"], ["https://data.delijn.be/stops/208746", "https://data.delijn.be/stops/209417"], ["https://data.delijn.be/stops/501356", "https://data.delijn.be/stops/506034"], ["https://data.delijn.be/stops/300634", "https://data.delijn.be/stops/308456"], ["https://data.delijn.be/stops/507387", "https://data.delijn.be/stops/507389"], ["https://data.delijn.be/stops/201675", "https://data.delijn.be/stops/203503"], ["https://data.delijn.be/stops/208687", "https://data.delijn.be/stops/208689"], ["https://data.delijn.be/stops/308160", "https://data.delijn.be/stops/308162"], ["https://data.delijn.be/stops/200115", "https://data.delijn.be/stops/202077"], ["https://data.delijn.be/stops/202664", "https://data.delijn.be/stops/203663"], ["https://data.delijn.be/stops/308490", "https://data.delijn.be/stops/308492"], ["https://data.delijn.be/stops/105873", "https://data.delijn.be/stops/105881"], ["https://data.delijn.be/stops/101446", "https://data.delijn.be/stops/107058"], ["https://data.delijn.be/stops/208790", "https://data.delijn.be/stops/209335"], ["https://data.delijn.be/stops/206603", "https://data.delijn.be/stops/206982"], ["https://data.delijn.be/stops/508509", "https://data.delijn.be/stops/508616"], ["https://data.delijn.be/stops/405379", "https://data.delijn.be/stops/408444"], ["https://data.delijn.be/stops/101440", "https://data.delijn.be/stops/103075"], ["https://data.delijn.be/stops/407656", "https://data.delijn.be/stops/407730"], ["https://data.delijn.be/stops/208467", "https://data.delijn.be/stops/209466"], ["https://data.delijn.be/stops/101008", "https://data.delijn.be/stops/108285"], ["https://data.delijn.be/stops/301014", "https://data.delijn.be/stops/304255"], ["https://data.delijn.be/stops/101474", "https://data.delijn.be/stops/109245"], ["https://data.delijn.be/stops/101833", "https://data.delijn.be/stops/108234"], ["https://data.delijn.be/stops/202332", "https://data.delijn.be/stops/203332"], ["https://data.delijn.be/stops/504792", "https://data.delijn.be/stops/505204"], ["https://data.delijn.be/stops/300057", "https://data.delijn.be/stops/307728"], ["https://data.delijn.be/stops/206993", "https://data.delijn.be/stops/207608"], ["https://data.delijn.be/stops/106775", "https://data.delijn.be/stops/106882"], ["https://data.delijn.be/stops/408428", "https://data.delijn.be/stops/408664"], ["https://data.delijn.be/stops/200227", "https://data.delijn.be/stops/201139"], ["https://data.delijn.be/stops/108922", "https://data.delijn.be/stops/108923"], ["https://data.delijn.be/stops/401728", "https://data.delijn.be/stops/406127"], ["https://data.delijn.be/stops/303125", "https://data.delijn.be/stops/304594"], ["https://data.delijn.be/stops/300698", "https://data.delijn.be/stops/306366"], ["https://data.delijn.be/stops/502033", "https://data.delijn.be/stops/507034"], ["https://data.delijn.be/stops/208127", "https://data.delijn.be/stops/208665"], ["https://data.delijn.be/stops/206469", "https://data.delijn.be/stops/206509"], ["https://data.delijn.be/stops/101150", "https://data.delijn.be/stops/101210"], ["https://data.delijn.be/stops/502399", "https://data.delijn.be/stops/507379"], ["https://data.delijn.be/stops/108636", "https://data.delijn.be/stops/109640"], ["https://data.delijn.be/stops/206716", "https://data.delijn.be/stops/207847"], ["https://data.delijn.be/stops/300336", "https://data.delijn.be/stops/307030"], ["https://data.delijn.be/stops/503259", "https://data.delijn.be/stops/508241"], ["https://data.delijn.be/stops/403089", "https://data.delijn.be/stops/403133"], ["https://data.delijn.be/stops/404518", "https://data.delijn.be/stops/410396"], ["https://data.delijn.be/stops/502062", "https://data.delijn.be/stops/507683"], ["https://data.delijn.be/stops/408650", "https://data.delijn.be/stops/408663"], ["https://data.delijn.be/stops/409580", "https://data.delijn.be/stops/409598"], ["https://data.delijn.be/stops/108653", "https://data.delijn.be/stops/304305"], ["https://data.delijn.be/stops/502202", "https://data.delijn.be/stops/507202"], ["https://data.delijn.be/stops/107573", "https://data.delijn.be/stops/107745"], ["https://data.delijn.be/stops/206424", "https://data.delijn.be/stops/207832"], ["https://data.delijn.be/stops/109292", "https://data.delijn.be/stops/109293"], ["https://data.delijn.be/stops/300074", "https://data.delijn.be/stops/304645"], ["https://data.delijn.be/stops/102469", "https://data.delijn.be/stops/406849"], ["https://data.delijn.be/stops/403619", "https://data.delijn.be/stops/403653"], ["https://data.delijn.be/stops/404288", "https://data.delijn.be/stops/409665"], ["https://data.delijn.be/stops/503697", "https://data.delijn.be/stops/503720"], ["https://data.delijn.be/stops/503572", "https://data.delijn.be/stops/504277"], ["https://data.delijn.be/stops/304074", "https://data.delijn.be/stops/308645"], ["https://data.delijn.be/stops/300769", "https://data.delijn.be/stops/303224"], ["https://data.delijn.be/stops/101055", "https://data.delijn.be/stops/104900"], ["https://data.delijn.be/stops/503510", "https://data.delijn.be/stops/505659"], ["https://data.delijn.be/stops/305151", "https://data.delijn.be/stops/305208"], ["https://data.delijn.be/stops/203884", "https://data.delijn.be/stops/203885"], ["https://data.delijn.be/stops/302683", "https://data.delijn.be/stops/302684"], ["https://data.delijn.be/stops/108051", "https://data.delijn.be/stops/308492"], ["https://data.delijn.be/stops/200739", "https://data.delijn.be/stops/202602"], ["https://data.delijn.be/stops/503697", "https://data.delijn.be/stops/504197"], ["https://data.delijn.be/stops/504697", "https://data.delijn.be/stops/505163"], ["https://data.delijn.be/stops/109572", "https://data.delijn.be/stops/109575"], ["https://data.delijn.be/stops/405039", "https://data.delijn.be/stops/406548"], ["https://data.delijn.be/stops/507698", "https://data.delijn.be/stops/508915"], ["https://data.delijn.be/stops/106142", "https://data.delijn.be/stops/106436"], ["https://data.delijn.be/stops/209109", "https://data.delijn.be/stops/209342"], ["https://data.delijn.be/stops/302568", "https://data.delijn.be/stops/302590"], ["https://data.delijn.be/stops/201044", "https://data.delijn.be/stops/201208"], ["https://data.delijn.be/stops/207666", "https://data.delijn.be/stops/209056"], ["https://data.delijn.be/stops/107556", "https://data.delijn.be/stops/109381"], ["https://data.delijn.be/stops/402579", "https://data.delijn.be/stops/403468"], ["https://data.delijn.be/stops/206810", "https://data.delijn.be/stops/217016"], ["https://data.delijn.be/stops/409100", "https://data.delijn.be/stops/409114"], ["https://data.delijn.be/stops/205161", "https://data.delijn.be/stops/207278"], ["https://data.delijn.be/stops/200778", "https://data.delijn.be/stops/203234"], ["https://data.delijn.be/stops/303856", "https://data.delijn.be/stops/303865"], ["https://data.delijn.be/stops/307922", "https://data.delijn.be/stops/308855"], ["https://data.delijn.be/stops/202322", "https://data.delijn.be/stops/210044"], ["https://data.delijn.be/stops/505344", "https://data.delijn.be/stops/505756"], ["https://data.delijn.be/stops/109353", "https://data.delijn.be/stops/109354"], ["https://data.delijn.be/stops/405900", "https://data.delijn.be/stops/405901"], ["https://data.delijn.be/stops/502096", "https://data.delijn.be/stops/507101"], ["https://data.delijn.be/stops/201924", "https://data.delijn.be/stops/207590"], ["https://data.delijn.be/stops/207759", "https://data.delijn.be/stops/208185"], ["https://data.delijn.be/stops/102721", "https://data.delijn.be/stops/104724"], ["https://data.delijn.be/stops/301907", "https://data.delijn.be/stops/306251"], ["https://data.delijn.be/stops/107554", "https://data.delijn.be/stops/107902"], ["https://data.delijn.be/stops/109351", "https://data.delijn.be/stops/109352"], ["https://data.delijn.be/stops/101540", "https://data.delijn.be/stops/101670"], ["https://data.delijn.be/stops/106875", "https://data.delijn.be/stops/106876"], ["https://data.delijn.be/stops/401518", "https://data.delijn.be/stops/401519"], ["https://data.delijn.be/stops/204430", "https://data.delijn.be/stops/204431"], ["https://data.delijn.be/stops/201080", "https://data.delijn.be/stops/202888"], ["https://data.delijn.be/stops/208378", "https://data.delijn.be/stops/209334"], ["https://data.delijn.be/stops/403113", "https://data.delijn.be/stops/403114"], ["https://data.delijn.be/stops/503917", "https://data.delijn.be/stops/503928"], ["https://data.delijn.be/stops/405850", "https://data.delijn.be/stops/406995"], ["https://data.delijn.be/stops/305423", "https://data.delijn.be/stops/305424"], ["https://data.delijn.be/stops/206717", "https://data.delijn.be/stops/206764"], ["https://data.delijn.be/stops/404835", "https://data.delijn.be/stops/406113"], ["https://data.delijn.be/stops/303948", "https://data.delijn.be/stops/303956"], ["https://data.delijn.be/stops/501734", "https://data.delijn.be/stops/506734"], ["https://data.delijn.be/stops/503188", "https://data.delijn.be/stops/503216"], ["https://data.delijn.be/stops/104992", "https://data.delijn.be/stops/400391"], ["https://data.delijn.be/stops/406740", "https://data.delijn.be/stops/406743"], ["https://data.delijn.be/stops/404886", "https://data.delijn.be/stops/408646"], ["https://data.delijn.be/stops/201958", "https://data.delijn.be/stops/203469"], ["https://data.delijn.be/stops/208742", "https://data.delijn.be/stops/208763"], ["https://data.delijn.be/stops/502075", "https://data.delijn.be/stops/507739"], ["https://data.delijn.be/stops/209007", "https://data.delijn.be/stops/209008"], ["https://data.delijn.be/stops/503525", "https://data.delijn.be/stops/508527"], ["https://data.delijn.be/stops/101444", "https://data.delijn.be/stops/101666"], ["https://data.delijn.be/stops/109856", "https://data.delijn.be/stops/109857"], ["https://data.delijn.be/stops/403280", "https://data.delijn.be/stops/403372"], ["https://data.delijn.be/stops/201910", "https://data.delijn.be/stops/201911"], ["https://data.delijn.be/stops/104446", "https://data.delijn.be/stops/104579"], ["https://data.delijn.be/stops/505193", "https://data.delijn.be/stops/505919"], ["https://data.delijn.be/stops/403338", "https://data.delijn.be/stops/403365"], ["https://data.delijn.be/stops/200909", "https://data.delijn.be/stops/200950"], ["https://data.delijn.be/stops/400031", "https://data.delijn.be/stops/400681"], ["https://data.delijn.be/stops/400829", "https://data.delijn.be/stops/403574"], ["https://data.delijn.be/stops/307981", "https://data.delijn.be/stops/307982"], ["https://data.delijn.be/stops/400672", "https://data.delijn.be/stops/410264"], ["https://data.delijn.be/stops/206749", "https://data.delijn.be/stops/207686"], ["https://data.delijn.be/stops/301613", "https://data.delijn.be/stops/307339"], ["https://data.delijn.be/stops/200624", "https://data.delijn.be/stops/203934"], ["https://data.delijn.be/stops/206804", "https://data.delijn.be/stops/208789"], ["https://data.delijn.be/stops/108942", "https://data.delijn.be/stops/108946"], ["https://data.delijn.be/stops/101451", "https://data.delijn.be/stops/108605"], ["https://data.delijn.be/stops/208630", "https://data.delijn.be/stops/209630"], ["https://data.delijn.be/stops/301914", "https://data.delijn.be/stops/308620"], ["https://data.delijn.be/stops/406604", "https://data.delijn.be/stops/406646"], ["https://data.delijn.be/stops/504055", "https://data.delijn.be/stops/509155"], ["https://data.delijn.be/stops/207610", "https://data.delijn.be/stops/207611"], ["https://data.delijn.be/stops/202599", "https://data.delijn.be/stops/202600"], ["https://data.delijn.be/stops/408601", "https://data.delijn.be/stops/408690"], ["https://data.delijn.be/stops/106412", "https://data.delijn.be/stops/106413"], ["https://data.delijn.be/stops/504762", "https://data.delijn.be/stops/504763"], ["https://data.delijn.be/stops/509613", "https://data.delijn.be/stops/509615"], ["https://data.delijn.be/stops/207771", "https://data.delijn.be/stops/209405"], ["https://data.delijn.be/stops/504694", "https://data.delijn.be/stops/509328"], ["https://data.delijn.be/stops/101987", "https://data.delijn.be/stops/105457"], ["https://data.delijn.be/stops/108404", "https://data.delijn.be/stops/305456"], ["https://data.delijn.be/stops/503357", "https://data.delijn.be/stops/503379"], ["https://data.delijn.be/stops/504229", "https://data.delijn.be/stops/508544"], ["https://data.delijn.be/stops/204659", "https://data.delijn.be/stops/204660"], ["https://data.delijn.be/stops/109041", "https://data.delijn.be/stops/109042"], ["https://data.delijn.be/stops/206001", "https://data.delijn.be/stops/206522"], ["https://data.delijn.be/stops/104429", "https://data.delijn.be/stops/107367"], ["https://data.delijn.be/stops/406882", "https://data.delijn.be/stops/409737"], ["https://data.delijn.be/stops/200704", "https://data.delijn.be/stops/200737"], ["https://data.delijn.be/stops/302267", "https://data.delijn.be/stops/303207"], ["https://data.delijn.be/stops/204981", "https://data.delijn.be/stops/209680"], ["https://data.delijn.be/stops/400535", "https://data.delijn.be/stops/410109"], ["https://data.delijn.be/stops/401242", "https://data.delijn.be/stops/401268"], ["https://data.delijn.be/stops/105619", "https://data.delijn.be/stops/106361"], ["https://data.delijn.be/stops/408056", "https://data.delijn.be/stops/408057"], ["https://data.delijn.be/stops/202892", "https://data.delijn.be/stops/203279"], ["https://data.delijn.be/stops/302036", "https://data.delijn.be/stops/304914"], ["https://data.delijn.be/stops/307973", "https://data.delijn.be/stops/307975"], ["https://data.delijn.be/stops/300388", "https://data.delijn.be/stops/306156"], ["https://data.delijn.be/stops/400991", "https://data.delijn.be/stops/401150"], ["https://data.delijn.be/stops/501095", "https://data.delijn.be/stops/506218"], ["https://data.delijn.be/stops/407017", "https://data.delijn.be/stops/407044"], ["https://data.delijn.be/stops/306837", "https://data.delijn.be/stops/308541"], ["https://data.delijn.be/stops/205489", "https://data.delijn.be/stops/205508"], ["https://data.delijn.be/stops/503851", "https://data.delijn.be/stops/505218"], ["https://data.delijn.be/stops/304697", "https://data.delijn.be/stops/307156"], ["https://data.delijn.be/stops/302862", "https://data.delijn.be/stops/303104"], ["https://data.delijn.be/stops/108945", "https://data.delijn.be/stops/205635"], ["https://data.delijn.be/stops/102632", "https://data.delijn.be/stops/107047"], ["https://data.delijn.be/stops/501560", "https://data.delijn.be/stops/505152"], ["https://data.delijn.be/stops/204705", "https://data.delijn.be/stops/205705"], ["https://data.delijn.be/stops/303764", "https://data.delijn.be/stops/303770"], ["https://data.delijn.be/stops/107461", "https://data.delijn.be/stops/109199"], ["https://data.delijn.be/stops/306367", "https://data.delijn.be/stops/307590"], ["https://data.delijn.be/stops/301375", "https://data.delijn.be/stops/301377"], ["https://data.delijn.be/stops/405877", "https://data.delijn.be/stops/409414"], ["https://data.delijn.be/stops/407245", "https://data.delijn.be/stops/407460"], ["https://data.delijn.be/stops/408681", "https://data.delijn.be/stops/408788"], ["https://data.delijn.be/stops/105978", "https://data.delijn.be/stops/105982"], ["https://data.delijn.be/stops/101312", "https://data.delijn.be/stops/101729"], ["https://data.delijn.be/stops/106941", "https://data.delijn.be/stops/106942"], ["https://data.delijn.be/stops/204260", "https://data.delijn.be/stops/205475"], ["https://data.delijn.be/stops/102587", "https://data.delijn.be/stops/409531"], ["https://data.delijn.be/stops/405024", "https://data.delijn.be/stops/405077"], ["https://data.delijn.be/stops/504189", "https://data.delijn.be/stops/504193"], ["https://data.delijn.be/stops/408852", "https://data.delijn.be/stops/408853"], ["https://data.delijn.be/stops/106306", "https://data.delijn.be/stops/106307"], ["https://data.delijn.be/stops/407916", "https://data.delijn.be/stops/306060"], ["https://data.delijn.be/stops/204163", "https://data.delijn.be/stops/207275"], ["https://data.delijn.be/stops/501241", "https://data.delijn.be/stops/501371"], ["https://data.delijn.be/stops/503705", "https://data.delijn.be/stops/507203"], ["https://data.delijn.be/stops/407988", "https://data.delijn.be/stops/408070"], ["https://data.delijn.be/stops/504132", "https://data.delijn.be/stops/509132"], ["https://data.delijn.be/stops/202858", "https://data.delijn.be/stops/203859"], ["https://data.delijn.be/stops/407758", "https://data.delijn.be/stops/407761"], ["https://data.delijn.be/stops/303067", "https://data.delijn.be/stops/303093"], ["https://data.delijn.be/stops/406525", "https://data.delijn.be/stops/406602"], ["https://data.delijn.be/stops/503164", "https://data.delijn.be/stops/503796"], ["https://data.delijn.be/stops/508146", "https://data.delijn.be/stops/509622"], ["https://data.delijn.be/stops/301365", "https://data.delijn.be/stops/304782"], ["https://data.delijn.be/stops/406196", "https://data.delijn.be/stops/406895"], ["https://data.delijn.be/stops/503687", "https://data.delijn.be/stops/508686"], ["https://data.delijn.be/stops/401402", "https://data.delijn.be/stops/410152"], ["https://data.delijn.be/stops/400676", "https://data.delijn.be/stops/402620"], ["https://data.delijn.be/stops/109146", "https://data.delijn.be/stops/109148"], ["https://data.delijn.be/stops/503826", "https://data.delijn.be/stops/508825"], ["https://data.delijn.be/stops/105134", "https://data.delijn.be/stops/305610"], ["https://data.delijn.be/stops/206137", "https://data.delijn.be/stops/207137"], ["https://data.delijn.be/stops/103115", "https://data.delijn.be/stops/103790"], ["https://data.delijn.be/stops/206801", "https://data.delijn.be/stops/208488"], ["https://data.delijn.be/stops/103056", "https://data.delijn.be/stops/103643"], ["https://data.delijn.be/stops/102298", "https://data.delijn.be/stops/106585"], ["https://data.delijn.be/stops/103070", "https://data.delijn.be/stops/103080"], ["https://data.delijn.be/stops/501299", "https://data.delijn.be/stops/506298"], ["https://data.delijn.be/stops/107564", "https://data.delijn.be/stops/109435"], ["https://data.delijn.be/stops/401012", "https://data.delijn.be/stops/401016"], ["https://data.delijn.be/stops/306820", "https://data.delijn.be/stops/306824"], ["https://data.delijn.be/stops/301190", "https://data.delijn.be/stops/301253"], ["https://data.delijn.be/stops/108392", "https://data.delijn.be/stops/108394"], ["https://data.delijn.be/stops/300271", "https://data.delijn.be/stops/300272"], ["https://data.delijn.be/stops/101192", "https://data.delijn.be/stops/204541"], ["https://data.delijn.be/stops/105149", "https://data.delijn.be/stops/105152"], ["https://data.delijn.be/stops/305692", "https://data.delijn.be/stops/305695"], ["https://data.delijn.be/stops/307697", "https://data.delijn.be/stops/307698"], ["https://data.delijn.be/stops/406844", "https://data.delijn.be/stops/408622"], ["https://data.delijn.be/stops/410117", "https://data.delijn.be/stops/410326"], ["https://data.delijn.be/stops/400383", "https://data.delijn.be/stops/400427"], ["https://data.delijn.be/stops/105088", "https://data.delijn.be/stops/105094"], ["https://data.delijn.be/stops/301014", "https://data.delijn.be/stops/301018"], ["https://data.delijn.be/stops/300812", "https://data.delijn.be/stops/300832"], ["https://data.delijn.be/stops/101414", "https://data.delijn.be/stops/101429"], ["https://data.delijn.be/stops/208160", "https://data.delijn.be/stops/209100"], ["https://data.delijn.be/stops/106661", "https://data.delijn.be/stops/106663"], ["https://data.delijn.be/stops/201357", "https://data.delijn.be/stops/201358"], ["https://data.delijn.be/stops/204684", "https://data.delijn.be/stops/205684"], ["https://data.delijn.be/stops/302962", "https://data.delijn.be/stops/302981"], ["https://data.delijn.be/stops/203330", "https://data.delijn.be/stops/203331"], ["https://data.delijn.be/stops/501074", "https://data.delijn.be/stops/506513"], ["https://data.delijn.be/stops/402681", "https://data.delijn.be/stops/405939"], ["https://data.delijn.be/stops/503931", "https://data.delijn.be/stops/508919"], ["https://data.delijn.be/stops/107378", "https://data.delijn.be/stops/109594"], ["https://data.delijn.be/stops/202573", "https://data.delijn.be/stops/203430"], ["https://data.delijn.be/stops/501201", "https://data.delijn.be/stops/506203"], ["https://data.delijn.be/stops/102586", "https://data.delijn.be/stops/109097"], ["https://data.delijn.be/stops/403273", "https://data.delijn.be/stops/403383"], ["https://data.delijn.be/stops/405700", "https://data.delijn.be/stops/405701"], ["https://data.delijn.be/stops/303670", "https://data.delijn.be/stops/304641"], ["https://data.delijn.be/stops/210019", "https://data.delijn.be/stops/503578"], ["https://data.delijn.be/stops/501400", "https://data.delijn.be/stops/506306"], ["https://data.delijn.be/stops/200109", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/500022", "https://data.delijn.be/stops/501195"], ["https://data.delijn.be/stops/502253", "https://data.delijn.be/stops/505583"], ["https://data.delijn.be/stops/302382", "https://data.delijn.be/stops/304818"], ["https://data.delijn.be/stops/503471", "https://data.delijn.be/stops/508470"], ["https://data.delijn.be/stops/506200", "https://data.delijn.be/stops/506424"], ["https://data.delijn.be/stops/400195", "https://data.delijn.be/stops/408187"], ["https://data.delijn.be/stops/407352", "https://data.delijn.be/stops/410253"], ["https://data.delijn.be/stops/400797", "https://data.delijn.be/stops/400798"], ["https://data.delijn.be/stops/306556", "https://data.delijn.be/stops/306557"], ["https://data.delijn.be/stops/204134", "https://data.delijn.be/stops/205134"], ["https://data.delijn.be/stops/205590", "https://data.delijn.be/stops/207968"], ["https://data.delijn.be/stops/402337", "https://data.delijn.be/stops/410076"], ["https://data.delijn.be/stops/208634", "https://data.delijn.be/stops/209634"], ["https://data.delijn.be/stops/200426", "https://data.delijn.be/stops/203008"], ["https://data.delijn.be/stops/409407", "https://data.delijn.be/stops/409529"], ["https://data.delijn.be/stops/403438", "https://data.delijn.be/stops/405139"], ["https://data.delijn.be/stops/404376", "https://data.delijn.be/stops/404381"], ["https://data.delijn.be/stops/219080", "https://data.delijn.be/stops/300388"], ["https://data.delijn.be/stops/305967", "https://data.delijn.be/stops/308141"], ["https://data.delijn.be/stops/502151", "https://data.delijn.be/stops/507166"], ["https://data.delijn.be/stops/504555", "https://data.delijn.be/stops/509555"], ["https://data.delijn.be/stops/107985", "https://data.delijn.be/stops/108240"], ["https://data.delijn.be/stops/206673", "https://data.delijn.be/stops/208173"], ["https://data.delijn.be/stops/200704", "https://data.delijn.be/stops/203575"], ["https://data.delijn.be/stops/201897", "https://data.delijn.be/stops/203149"], ["https://data.delijn.be/stops/504504", "https://data.delijn.be/stops/504505"], ["https://data.delijn.be/stops/305060", "https://data.delijn.be/stops/305061"], ["https://data.delijn.be/stops/306652", "https://data.delijn.be/stops/306655"], ["https://data.delijn.be/stops/408154", "https://data.delijn.be/stops/408923"], ["https://data.delijn.be/stops/206560", "https://data.delijn.be/stops/207560"], ["https://data.delijn.be/stops/202938", "https://data.delijn.be/stops/203940"], ["https://data.delijn.be/stops/107094", "https://data.delijn.be/stops/108233"], ["https://data.delijn.be/stops/203328", "https://data.delijn.be/stops/210088"], ["https://data.delijn.be/stops/204293", "https://data.delijn.be/stops/204294"], ["https://data.delijn.be/stops/400077", "https://data.delijn.be/stops/407030"], ["https://data.delijn.be/stops/404980", "https://data.delijn.be/stops/410217"], ["https://data.delijn.be/stops/407986", "https://data.delijn.be/stops/408018"], ["https://data.delijn.be/stops/503704", "https://data.delijn.be/stops/508728"], ["https://data.delijn.be/stops/200011", "https://data.delijn.be/stops/201508"], ["https://data.delijn.be/stops/504991", "https://data.delijn.be/stops/508578"], ["https://data.delijn.be/stops/201052", "https://data.delijn.be/stops/211118"], ["https://data.delijn.be/stops/209195", "https://data.delijn.be/stops/209409"], ["https://data.delijn.be/stops/204161", "https://data.delijn.be/stops/205167"], ["https://data.delijn.be/stops/200776", "https://data.delijn.be/stops/208304"], ["https://data.delijn.be/stops/400762", "https://data.delijn.be/stops/410035"], ["https://data.delijn.be/stops/105332", "https://data.delijn.be/stops/105333"], ["https://data.delijn.be/stops/406940", "https://data.delijn.be/stops/409478"], ["https://data.delijn.be/stops/300824", "https://data.delijn.be/stops/307232"], ["https://data.delijn.be/stops/206726", "https://data.delijn.be/stops/307029"], ["https://data.delijn.be/stops/210111", "https://data.delijn.be/stops/211111"], ["https://data.delijn.be/stops/201905", "https://data.delijn.be/stops/201906"], ["https://data.delijn.be/stops/306369", "https://data.delijn.be/stops/307066"], ["https://data.delijn.be/stops/502612", "https://data.delijn.be/stops/507612"], ["https://data.delijn.be/stops/209183", "https://data.delijn.be/stops/209184"], ["https://data.delijn.be/stops/104053", "https://data.delijn.be/stops/104137"], ["https://data.delijn.be/stops/407045", "https://data.delijn.be/stops/407046"], ["https://data.delijn.be/stops/406901", "https://data.delijn.be/stops/409454"], ["https://data.delijn.be/stops/105507", "https://data.delijn.be/stops/105508"], ["https://data.delijn.be/stops/407772", "https://data.delijn.be/stops/408927"], ["https://data.delijn.be/stops/402622", "https://data.delijn.be/stops/402628"], ["https://data.delijn.be/stops/301541", "https://data.delijn.be/stops/301542"], ["https://data.delijn.be/stops/200709", "https://data.delijn.be/stops/214003"], ["https://data.delijn.be/stops/400756", "https://data.delijn.be/stops/400839"], ["https://data.delijn.be/stops/300644", "https://data.delijn.be/stops/300645"], ["https://data.delijn.be/stops/107396", "https://data.delijn.be/stops/107397"], ["https://data.delijn.be/stops/202726", "https://data.delijn.be/stops/203674"], ["https://data.delijn.be/stops/208019", "https://data.delijn.be/stops/208037"], ["https://data.delijn.be/stops/504564", "https://data.delijn.be/stops/509568"], ["https://data.delijn.be/stops/205028", "https://data.delijn.be/stops/205036"], ["https://data.delijn.be/stops/105016", "https://data.delijn.be/stops/106830"], ["https://data.delijn.be/stops/505565", "https://data.delijn.be/stops/505566"], ["https://data.delijn.be/stops/109579", "https://data.delijn.be/stops/109581"], ["https://data.delijn.be/stops/101921", "https://data.delijn.be/stops/106058"], ["https://data.delijn.be/stops/200521", "https://data.delijn.be/stops/201521"], ["https://data.delijn.be/stops/301592", "https://data.delijn.be/stops/305047"], ["https://data.delijn.be/stops/505009", "https://data.delijn.be/stops/505508"], ["https://data.delijn.be/stops/300089", "https://data.delijn.be/stops/307734"], ["https://data.delijn.be/stops/207599", "https://data.delijn.be/stops/207847"], ["https://data.delijn.be/stops/201490", "https://data.delijn.be/stops/201890"], ["https://data.delijn.be/stops/208004", "https://data.delijn.be/stops/209004"], ["https://data.delijn.be/stops/104659", "https://data.delijn.be/stops/108436"], ["https://data.delijn.be/stops/208379", "https://data.delijn.be/stops/209299"], ["https://data.delijn.be/stops/101470", "https://data.delijn.be/stops/101959"], ["https://data.delijn.be/stops/108078", "https://data.delijn.be/stops/108841"], ["https://data.delijn.be/stops/208243", "https://data.delijn.be/stops/208794"], ["https://data.delijn.be/stops/101804", "https://data.delijn.be/stops/107979"], ["https://data.delijn.be/stops/301688", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/103223", "https://data.delijn.be/stops/103224"], ["https://data.delijn.be/stops/403965", "https://data.delijn.be/stops/403976"], ["https://data.delijn.be/stops/504214", "https://data.delijn.be/stops/509065"], ["https://data.delijn.be/stops/101975", "https://data.delijn.be/stops/104485"], ["https://data.delijn.be/stops/408560", "https://data.delijn.be/stops/408618"], ["https://data.delijn.be/stops/105789", "https://data.delijn.be/stops/105941"], ["https://data.delijn.be/stops/303126", "https://data.delijn.be/stops/303130"], ["https://data.delijn.be/stops/407784", "https://data.delijn.be/stops/408143"], ["https://data.delijn.be/stops/200025", "https://data.delijn.be/stops/200069"], ["https://data.delijn.be/stops/300163", "https://data.delijn.be/stops/300165"], ["https://data.delijn.be/stops/302781", "https://data.delijn.be/stops/307047"], ["https://data.delijn.be/stops/203695", "https://data.delijn.be/stops/211023"], ["https://data.delijn.be/stops/201928", "https://data.delijn.be/stops/201935"], ["https://data.delijn.be/stops/102200", "https://data.delijn.be/stops/104021"], ["https://data.delijn.be/stops/201603", "https://data.delijn.be/stops/201606"], ["https://data.delijn.be/stops/101674", "https://data.delijn.be/stops/103157"], ["https://data.delijn.be/stops/206350", "https://data.delijn.be/stops/207727"], ["https://data.delijn.be/stops/402807", "https://data.delijn.be/stops/409036"], ["https://data.delijn.be/stops/405786", "https://data.delijn.be/stops/409747"], ["https://data.delijn.be/stops/503409", "https://data.delijn.be/stops/508525"], ["https://data.delijn.be/stops/400822", "https://data.delijn.be/stops/400823"], ["https://data.delijn.be/stops/301574", "https://data.delijn.be/stops/301577"], ["https://data.delijn.be/stops/204352", "https://data.delijn.be/stops/205299"], ["https://data.delijn.be/stops/408568", "https://data.delijn.be/stops/408569"], ["https://data.delijn.be/stops/508398", "https://data.delijn.be/stops/508400"], ["https://data.delijn.be/stops/400090", "https://data.delijn.be/stops/400101"], ["https://data.delijn.be/stops/200582", "https://data.delijn.be/stops/201582"], ["https://data.delijn.be/stops/207762", "https://data.delijn.be/stops/209193"], ["https://data.delijn.be/stops/202749", "https://data.delijn.be/stops/203749"], ["https://data.delijn.be/stops/200069", "https://data.delijn.be/stops/205926"], ["https://data.delijn.be/stops/507423", "https://data.delijn.be/stops/507439"], ["https://data.delijn.be/stops/504593", "https://data.delijn.be/stops/509594"], ["https://data.delijn.be/stops/208439", "https://data.delijn.be/stops/208674"], ["https://data.delijn.be/stops/106644", "https://data.delijn.be/stops/106676"], ["https://data.delijn.be/stops/408605", "https://data.delijn.be/stops/408609"], ["https://data.delijn.be/stops/403739", "https://data.delijn.be/stops/403743"], ["https://data.delijn.be/stops/300599", "https://data.delijn.be/stops/300617"], ["https://data.delijn.be/stops/202380", "https://data.delijn.be/stops/202442"], ["https://data.delijn.be/stops/407632", "https://data.delijn.be/stops/409788"], ["https://data.delijn.be/stops/400059", "https://data.delijn.be/stops/400927"], ["https://data.delijn.be/stops/206902", "https://data.delijn.be/stops/207917"], ["https://data.delijn.be/stops/204430", "https://data.delijn.be/stops/205429"], ["https://data.delijn.be/stops/206207", "https://data.delijn.be/stops/206208"], ["https://data.delijn.be/stops/207864", "https://data.delijn.be/stops/208086"], ["https://data.delijn.be/stops/302517", "https://data.delijn.be/stops/305804"], ["https://data.delijn.be/stops/204465", "https://data.delijn.be/stops/204475"], ["https://data.delijn.be/stops/405543", "https://data.delijn.be/stops/405546"], ["https://data.delijn.be/stops/503524", "https://data.delijn.be/stops/504671"], ["https://data.delijn.be/stops/409373", "https://data.delijn.be/stops/409379"], ["https://data.delijn.be/stops/202031", "https://data.delijn.be/stops/202082"], ["https://data.delijn.be/stops/204572", "https://data.delijn.be/stops/303394"], ["https://data.delijn.be/stops/207669", "https://data.delijn.be/stops/207671"], ["https://data.delijn.be/stops/403009", "https://data.delijn.be/stops/403269"], ["https://data.delijn.be/stops/302282", "https://data.delijn.be/stops/302287"], ["https://data.delijn.be/stops/401474", "https://data.delijn.be/stops/401495"], ["https://data.delijn.be/stops/301168", "https://data.delijn.be/stops/307682"], ["https://data.delijn.be/stops/200973", "https://data.delijn.be/stops/206798"], ["https://data.delijn.be/stops/406037", "https://data.delijn.be/stops/407779"], ["https://data.delijn.be/stops/402586", "https://data.delijn.be/stops/407950"], ["https://data.delijn.be/stops/405873", "https://data.delijn.be/stops/409761"], ["https://data.delijn.be/stops/101188", "https://data.delijn.be/stops/107859"], ["https://data.delijn.be/stops/403996", "https://data.delijn.be/stops/405946"], ["https://data.delijn.be/stops/501078", "https://data.delijn.be/stops/506083"], ["https://data.delijn.be/stops/401459", "https://data.delijn.be/stops/407150"], ["https://data.delijn.be/stops/201929", "https://data.delijn.be/stops/210047"], ["https://data.delijn.be/stops/306726", "https://data.delijn.be/stops/306730"], ["https://data.delijn.be/stops/500958", "https://data.delijn.be/stops/505129"], ["https://data.delijn.be/stops/504201", "https://data.delijn.be/stops/505394"], ["https://data.delijn.be/stops/206514", "https://data.delijn.be/stops/207514"], ["https://data.delijn.be/stops/204302", "https://data.delijn.be/stops/205302"], ["https://data.delijn.be/stops/200868", "https://data.delijn.be/stops/203483"], ["https://data.delijn.be/stops/402972", "https://data.delijn.be/stops/403662"], ["https://data.delijn.be/stops/306915", "https://data.delijn.be/stops/308875"], ["https://data.delijn.be/stops/404894", "https://data.delijn.be/stops/404896"], ["https://data.delijn.be/stops/205377", "https://data.delijn.be/stops/205480"], ["https://data.delijn.be/stops/507425", "https://data.delijn.be/stops/507697"], ["https://data.delijn.be/stops/303350", "https://data.delijn.be/stops/303351"], ["https://data.delijn.be/stops/505729", "https://data.delijn.be/stops/507286"], ["https://data.delijn.be/stops/401752", "https://data.delijn.be/stops/401773"], ["https://data.delijn.be/stops/200862", "https://data.delijn.be/stops/507065"], ["https://data.delijn.be/stops/305337", "https://data.delijn.be/stops/305353"], ["https://data.delijn.be/stops/106212", "https://data.delijn.be/stops/106213"], ["https://data.delijn.be/stops/402115", "https://data.delijn.be/stops/406810"], ["https://data.delijn.be/stops/300555", "https://data.delijn.be/stops/307857"], ["https://data.delijn.be/stops/202117", "https://data.delijn.be/stops/202170"], ["https://data.delijn.be/stops/300612", "https://data.delijn.be/stops/300619"], ["https://data.delijn.be/stops/206267", "https://data.delijn.be/stops/207267"], ["https://data.delijn.be/stops/405364", "https://data.delijn.be/stops/405373"], ["https://data.delijn.be/stops/301272", "https://data.delijn.be/stops/307613"], ["https://data.delijn.be/stops/509295", "https://data.delijn.be/stops/509713"], ["https://data.delijn.be/stops/102417", "https://data.delijn.be/stops/105588"], ["https://data.delijn.be/stops/202235", "https://data.delijn.be/stops/203236"], ["https://data.delijn.be/stops/202697", "https://data.delijn.be/stops/203698"], ["https://data.delijn.be/stops/302511", "https://data.delijn.be/stops/302518"], ["https://data.delijn.be/stops/101927", "https://data.delijn.be/stops/107006"], ["https://data.delijn.be/stops/200686", "https://data.delijn.be/stops/200692"], ["https://data.delijn.be/stops/103510", "https://data.delijn.be/stops/104490"], ["https://data.delijn.be/stops/300795", "https://data.delijn.be/stops/304621"], ["https://data.delijn.be/stops/505059", "https://data.delijn.be/stops/505072"], ["https://data.delijn.be/stops/200683", "https://data.delijn.be/stops/200694"], ["https://data.delijn.be/stops/303268", "https://data.delijn.be/stops/308921"], ["https://data.delijn.be/stops/105169", "https://data.delijn.be/stops/105221"], ["https://data.delijn.be/stops/504460", "https://data.delijn.be/stops/509352"], ["https://data.delijn.be/stops/304991", "https://data.delijn.be/stops/305015"], ["https://data.delijn.be/stops/305061", "https://data.delijn.be/stops/308122"], ["https://data.delijn.be/stops/209447", "https://data.delijn.be/stops/209520"], ["https://data.delijn.be/stops/200136", "https://data.delijn.be/stops/201136"], ["https://data.delijn.be/stops/508006", "https://data.delijn.be/stops/508111"], ["https://data.delijn.be/stops/201423", "https://data.delijn.be/stops/209263"], ["https://data.delijn.be/stops/503148", "https://data.delijn.be/stops/508148"], ["https://data.delijn.be/stops/506181", "https://data.delijn.be/stops/506677"], ["https://data.delijn.be/stops/206820", "https://data.delijn.be/stops/207214"], ["https://data.delijn.be/stops/108941", "https://data.delijn.be/stops/108943"], ["https://data.delijn.be/stops/501207", "https://data.delijn.be/stops/506207"], ["https://data.delijn.be/stops/303790", "https://data.delijn.be/stops/303791"], ["https://data.delijn.be/stops/501385", "https://data.delijn.be/stops/506385"], ["https://data.delijn.be/stops/406275", "https://data.delijn.be/stops/406279"], ["https://data.delijn.be/stops/308122", "https://data.delijn.be/stops/308123"], ["https://data.delijn.be/stops/409092", "https://data.delijn.be/stops/409093"], ["https://data.delijn.be/stops/304266", "https://data.delijn.be/stops/304286"], ["https://data.delijn.be/stops/304603", "https://data.delijn.be/stops/304611"], ["https://data.delijn.be/stops/102849", "https://data.delijn.be/stops/102851"], ["https://data.delijn.be/stops/201951", "https://data.delijn.be/stops/203464"], ["https://data.delijn.be/stops/503595", "https://data.delijn.be/stops/503596"], ["https://data.delijn.be/stops/301185", "https://data.delijn.be/stops/301256"], ["https://data.delijn.be/stops/304606", "https://data.delijn.be/stops/304662"], ["https://data.delijn.be/stops/305993", "https://data.delijn.be/stops/306867"], ["https://data.delijn.be/stops/305249", "https://data.delijn.be/stops/305274"], ["https://data.delijn.be/stops/400893", "https://data.delijn.be/stops/402769"], ["https://data.delijn.be/stops/406788", "https://data.delijn.be/stops/406855"], ["https://data.delijn.be/stops/503022", "https://data.delijn.be/stops/504538"], ["https://data.delijn.be/stops/107710", "https://data.delijn.be/stops/107747"], ["https://data.delijn.be/stops/400592", "https://data.delijn.be/stops/400629"], ["https://data.delijn.be/stops/208433", "https://data.delijn.be/stops/209436"], ["https://data.delijn.be/stops/102927", "https://data.delijn.be/stops/109129"], ["https://data.delijn.be/stops/502575", "https://data.delijn.be/stops/507575"], ["https://data.delijn.be/stops/202677", "https://data.delijn.be/stops/203723"], ["https://data.delijn.be/stops/204378", "https://data.delijn.be/stops/205420"], ["https://data.delijn.be/stops/208048", "https://data.delijn.be/stops/208049"], ["https://data.delijn.be/stops/109833", "https://data.delijn.be/stops/109952"], ["https://data.delijn.be/stops/206177", "https://data.delijn.be/stops/303862"], ["https://data.delijn.be/stops/406707", "https://data.delijn.be/stops/407912"], ["https://data.delijn.be/stops/504400", "https://data.delijn.be/stops/509400"], ["https://data.delijn.be/stops/107718", "https://data.delijn.be/stops/107740"], ["https://data.delijn.be/stops/401000", "https://data.delijn.be/stops/403746"], ["https://data.delijn.be/stops/404006", "https://data.delijn.be/stops/404433"], ["https://data.delijn.be/stops/207419", "https://data.delijn.be/stops/306731"], ["https://data.delijn.be/stops/301888", "https://data.delijn.be/stops/305973"], ["https://data.delijn.be/stops/300540", "https://data.delijn.be/stops/304891"], ["https://data.delijn.be/stops/101195", "https://data.delijn.be/stops/103095"], ["https://data.delijn.be/stops/304228", "https://data.delijn.be/stops/304243"], ["https://data.delijn.be/stops/503805", "https://data.delijn.be/stops/504944"], ["https://data.delijn.be/stops/201759", "https://data.delijn.be/stops/208271"], ["https://data.delijn.be/stops/200466", "https://data.delijn.be/stops/208706"], ["https://data.delijn.be/stops/201764", "https://data.delijn.be/stops/201765"], ["https://data.delijn.be/stops/303518", "https://data.delijn.be/stops/303519"], ["https://data.delijn.be/stops/102881", "https://data.delijn.be/stops/102882"], ["https://data.delijn.be/stops/505436", "https://data.delijn.be/stops/509266"], ["https://data.delijn.be/stops/200674", "https://data.delijn.be/stops/200677"], ["https://data.delijn.be/stops/502374", "https://data.delijn.be/stops/502815"], ["https://data.delijn.be/stops/502017", "https://data.delijn.be/stops/502914"], ["https://data.delijn.be/stops/301028", "https://data.delijn.be/stops/301035"], ["https://data.delijn.be/stops/208417", "https://data.delijn.be/stops/208746"], ["https://data.delijn.be/stops/206670", "https://data.delijn.be/stops/209107"], ["https://data.delijn.be/stops/402881", "https://data.delijn.be/stops/306020"], ["https://data.delijn.be/stops/509491", "https://data.delijn.be/stops/509637"], ["https://data.delijn.be/stops/505314", "https://data.delijn.be/stops/505774"], ["https://data.delijn.be/stops/400254", "https://data.delijn.be/stops/405550"], ["https://data.delijn.be/stops/105417", "https://data.delijn.be/stops/105846"], ["https://data.delijn.be/stops/503722", "https://data.delijn.be/stops/508722"], ["https://data.delijn.be/stops/403797", "https://data.delijn.be/stops/403805"], ["https://data.delijn.be/stops/503356", "https://data.delijn.be/stops/503416"], ["https://data.delijn.be/stops/404874", "https://data.delijn.be/stops/404963"], ["https://data.delijn.be/stops/404298", "https://data.delijn.be/stops/301468"], ["https://data.delijn.be/stops/102567", "https://data.delijn.be/stops/406450"], ["https://data.delijn.be/stops/202317", "https://data.delijn.be/stops/202318"], ["https://data.delijn.be/stops/301216", "https://data.delijn.be/stops/304923"], ["https://data.delijn.be/stops/504622", "https://data.delijn.be/stops/508142"], ["https://data.delijn.be/stops/504492", "https://data.delijn.be/stops/504494"], ["https://data.delijn.be/stops/200727", "https://data.delijn.be/stops/202412"], ["https://data.delijn.be/stops/304230", "https://data.delijn.be/stops/304232"], ["https://data.delijn.be/stops/202333", "https://data.delijn.be/stops/210017"], ["https://data.delijn.be/stops/205643", "https://data.delijn.be/stops/205644"], ["https://data.delijn.be/stops/408652", "https://data.delijn.be/stops/408662"], ["https://data.delijn.be/stops/204343", "https://data.delijn.be/stops/205101"], ["https://data.delijn.be/stops/503005", "https://data.delijn.be/stops/508326"], ["https://data.delijn.be/stops/200034", "https://data.delijn.be/stops/203719"], ["https://data.delijn.be/stops/405818", "https://data.delijn.be/stops/405872"], ["https://data.delijn.be/stops/403912", "https://data.delijn.be/stops/403981"], ["https://data.delijn.be/stops/203167", "https://data.delijn.be/stops/205075"], ["https://data.delijn.be/stops/300848", "https://data.delijn.be/stops/301578"], ["https://data.delijn.be/stops/102951", "https://data.delijn.be/stops/104001"], ["https://data.delijn.be/stops/403508", "https://data.delijn.be/stops/403512"], ["https://data.delijn.be/stops/101131", "https://data.delijn.be/stops/106002"], ["https://data.delijn.be/stops/102370", "https://data.delijn.be/stops/102375"], ["https://data.delijn.be/stops/504202", "https://data.delijn.be/stops/504262"], ["https://data.delijn.be/stops/408662", "https://data.delijn.be/stops/408663"], ["https://data.delijn.be/stops/504094", "https://data.delijn.be/stops/504095"], ["https://data.delijn.be/stops/101746", "https://data.delijn.be/stops/101747"], ["https://data.delijn.be/stops/300500", "https://data.delijn.be/stops/300535"], ["https://data.delijn.be/stops/409665", "https://data.delijn.be/stops/409666"], ["https://data.delijn.be/stops/204378", "https://data.delijn.be/stops/205764"], ["https://data.delijn.be/stops/207118", "https://data.delijn.be/stops/207502"], ["https://data.delijn.be/stops/501383", "https://data.delijn.be/stops/506381"], ["https://data.delijn.be/stops/504865", "https://data.delijn.be/stops/508841"], ["https://data.delijn.be/stops/204607", "https://data.delijn.be/stops/205606"], ["https://data.delijn.be/stops/408492", "https://data.delijn.be/stops/408978"], ["https://data.delijn.be/stops/106283", "https://data.delijn.be/stops/106346"], ["https://data.delijn.be/stops/308567", "https://data.delijn.be/stops/308574"], ["https://data.delijn.be/stops/407591", "https://data.delijn.be/stops/407592"], ["https://data.delijn.be/stops/402358", "https://data.delijn.be/stops/402460"], ["https://data.delijn.be/stops/204990", "https://data.delijn.be/stops/208782"], ["https://data.delijn.be/stops/400410", "https://data.delijn.be/stops/400411"], ["https://data.delijn.be/stops/202211", "https://data.delijn.be/stops/203773"], ["https://data.delijn.be/stops/205238", "https://data.delijn.be/stops/205575"], ["https://data.delijn.be/stops/108716", "https://data.delijn.be/stops/108717"], ["https://data.delijn.be/stops/303708", "https://data.delijn.be/stops/303728"], ["https://data.delijn.be/stops/306002", "https://data.delijn.be/stops/306003"], ["https://data.delijn.be/stops/105432", "https://data.delijn.be/stops/105433"], ["https://data.delijn.be/stops/502077", "https://data.delijn.be/stops/502078"], ["https://data.delijn.be/stops/504133", "https://data.delijn.be/stops/504135"], ["https://data.delijn.be/stops/102245", "https://data.delijn.be/stops/102919"], ["https://data.delijn.be/stops/108363", "https://data.delijn.be/stops/108506"], ["https://data.delijn.be/stops/109045", "https://data.delijn.be/stops/109105"], ["https://data.delijn.be/stops/200965", "https://data.delijn.be/stops/201065"], ["https://data.delijn.be/stops/501508", "https://data.delijn.be/stops/501736"], ["https://data.delijn.be/stops/401315", "https://data.delijn.be/stops/405467"], ["https://data.delijn.be/stops/404669", "https://data.delijn.be/stops/404675"], ["https://data.delijn.be/stops/506028", "https://data.delijn.be/stops/506632"], ["https://data.delijn.be/stops/410274", "https://data.delijn.be/stops/410276"], ["https://data.delijn.be/stops/504556", "https://data.delijn.be/stops/504561"], ["https://data.delijn.be/stops/300130", "https://data.delijn.be/stops/300131"], ["https://data.delijn.be/stops/106346", "https://data.delijn.be/stops/106348"], ["https://data.delijn.be/stops/104132", "https://data.delijn.be/stops/104651"], ["https://data.delijn.be/stops/307855", "https://data.delijn.be/stops/307856"], ["https://data.delijn.be/stops/407375", "https://data.delijn.be/stops/407393"], ["https://data.delijn.be/stops/201088", "https://data.delijn.be/stops/201919"], ["https://data.delijn.be/stops/409228", "https://data.delijn.be/stops/409231"], ["https://data.delijn.be/stops/305061", "https://data.delijn.be/stops/305126"], ["https://data.delijn.be/stops/407702", "https://data.delijn.be/stops/407703"], ["https://data.delijn.be/stops/304699", "https://data.delijn.be/stops/304714"], ["https://data.delijn.be/stops/501099", "https://data.delijn.be/stops/501560"], ["https://data.delijn.be/stops/303404", "https://data.delijn.be/stops/304827"], ["https://data.delijn.be/stops/200859", "https://data.delijn.be/stops/200892"], ["https://data.delijn.be/stops/200694", "https://data.delijn.be/stops/202789"], ["https://data.delijn.be/stops/403178", "https://data.delijn.be/stops/403517"], ["https://data.delijn.be/stops/403114", "https://data.delijn.be/stops/403115"], ["https://data.delijn.be/stops/305186", "https://data.delijn.be/stops/306954"], ["https://data.delijn.be/stops/206572", "https://data.delijn.be/stops/207572"], ["https://data.delijn.be/stops/405834", "https://data.delijn.be/stops/405865"], ["https://data.delijn.be/stops/200837", "https://data.delijn.be/stops/200875"], ["https://data.delijn.be/stops/206061", "https://data.delijn.be/stops/207061"], ["https://data.delijn.be/stops/501384", "https://data.delijn.be/stops/506379"], ["https://data.delijn.be/stops/301403", "https://data.delijn.be/stops/306311"], ["https://data.delijn.be/stops/304608", "https://data.delijn.be/stops/306170"], ["https://data.delijn.be/stops/300011", "https://data.delijn.be/stops/304620"], ["https://data.delijn.be/stops/407163", "https://data.delijn.be/stops/407186"], ["https://data.delijn.be/stops/304571", "https://data.delijn.be/stops/304572"], ["https://data.delijn.be/stops/103141", "https://data.delijn.be/stops/106513"], ["https://data.delijn.be/stops/502247", "https://data.delijn.be/stops/505704"], ["https://data.delijn.be/stops/503287", "https://data.delijn.be/stops/508287"], ["https://data.delijn.be/stops/208049", "https://data.delijn.be/stops/209485"], ["https://data.delijn.be/stops/303856", "https://data.delijn.be/stops/308881"], ["https://data.delijn.be/stops/302562", "https://data.delijn.be/stops/302576"], ["https://data.delijn.be/stops/200883", "https://data.delijn.be/stops/202053"], ["https://data.delijn.be/stops/203362", "https://data.delijn.be/stops/205950"], ["https://data.delijn.be/stops/302585", "https://data.delijn.be/stops/303611"], ["https://data.delijn.be/stops/201773", "https://data.delijn.be/stops/208254"], ["https://data.delijn.be/stops/200603", "https://data.delijn.be/stops/201637"], ["https://data.delijn.be/stops/302862", "https://data.delijn.be/stops/303679"], ["https://data.delijn.be/stops/206841", "https://data.delijn.be/stops/207840"], ["https://data.delijn.be/stops/107069", "https://data.delijn.be/stops/107071"], ["https://data.delijn.be/stops/202637", "https://data.delijn.be/stops/203636"], ["https://data.delijn.be/stops/200005", "https://data.delijn.be/stops/202014"], ["https://data.delijn.be/stops/506108", "https://data.delijn.be/stops/506111"], ["https://data.delijn.be/stops/103298", "https://data.delijn.be/stops/105097"], ["https://data.delijn.be/stops/505603", "https://data.delijn.be/stops/505605"], ["https://data.delijn.be/stops/407717", "https://data.delijn.be/stops/407729"], ["https://data.delijn.be/stops/503417", "https://data.delijn.be/stops/503446"], ["https://data.delijn.be/stops/509024", "https://data.delijn.be/stops/509034"], ["https://data.delijn.be/stops/101086", "https://data.delijn.be/stops/101089"], ["https://data.delijn.be/stops/201072", "https://data.delijn.be/stops/211046"], ["https://data.delijn.be/stops/200016", "https://data.delijn.be/stops/200353"], ["https://data.delijn.be/stops/204467", "https://data.delijn.be/stops/204468"], ["https://data.delijn.be/stops/103388", "https://data.delijn.be/stops/103389"], ["https://data.delijn.be/stops/109829", "https://data.delijn.be/stops/109830"], ["https://data.delijn.be/stops/203549", "https://data.delijn.be/stops/203552"], ["https://data.delijn.be/stops/504663", "https://data.delijn.be/stops/509252"], ["https://data.delijn.be/stops/206120", "https://data.delijn.be/stops/207120"], ["https://data.delijn.be/stops/202180", "https://data.delijn.be/stops/203180"], ["https://data.delijn.be/stops/103582", "https://data.delijn.be/stops/103583"], ["https://data.delijn.be/stops/503686", "https://data.delijn.be/stops/503687"], ["https://data.delijn.be/stops/504415", "https://data.delijn.be/stops/509415"], ["https://data.delijn.be/stops/101948", "https://data.delijn.be/stops/108752"], ["https://data.delijn.be/stops/202199", "https://data.delijn.be/stops/203200"], ["https://data.delijn.be/stops/202659", "https://data.delijn.be/stops/210659"], ["https://data.delijn.be/stops/206447", "https://data.delijn.be/stops/207446"], ["https://data.delijn.be/stops/202488", "https://data.delijn.be/stops/203930"], ["https://data.delijn.be/stops/207170", "https://data.delijn.be/stops/303849"], ["https://data.delijn.be/stops/206682", "https://data.delijn.be/stops/208105"], ["https://data.delijn.be/stops/102978", "https://data.delijn.be/stops/105151"], ["https://data.delijn.be/stops/402150", "https://data.delijn.be/stops/406810"], ["https://data.delijn.be/stops/109522", "https://data.delijn.be/stops/109523"], ["https://data.delijn.be/stops/503036", "https://data.delijn.be/stops/503037"], ["https://data.delijn.be/stops/206573", "https://data.delijn.be/stops/207574"], ["https://data.delijn.be/stops/509843", "https://data.delijn.be/stops/509845"], ["https://data.delijn.be/stops/501607", "https://data.delijn.be/stops/506607"], ["https://data.delijn.be/stops/404227", "https://data.delijn.be/stops/404505"], ["https://data.delijn.be/stops/404343", "https://data.delijn.be/stops/404351"], ["https://data.delijn.be/stops/202227", "https://data.delijn.be/stops/208857"], ["https://data.delijn.be/stops/108652", "https://data.delijn.be/stops/302906"], ["https://data.delijn.be/stops/407844", "https://data.delijn.be/stops/407907"], ["https://data.delijn.be/stops/503958", "https://data.delijn.be/stops/504682"], ["https://data.delijn.be/stops/303129", "https://data.delijn.be/stops/303131"], ["https://data.delijn.be/stops/200126", "https://data.delijn.be/stops/201323"], ["https://data.delijn.be/stops/402117", "https://data.delijn.be/stops/402135"], ["https://data.delijn.be/stops/401283", "https://data.delijn.be/stops/408418"], ["https://data.delijn.be/stops/300588", "https://data.delijn.be/stops/303518"], ["https://data.delijn.be/stops/409435", "https://data.delijn.be/stops/409680"], ["https://data.delijn.be/stops/204140", "https://data.delijn.be/stops/206638"], ["https://data.delijn.be/stops/101577", "https://data.delijn.be/stops/101579"], ["https://data.delijn.be/stops/200135", "https://data.delijn.be/stops/201231"], ["https://data.delijn.be/stops/101030", "https://data.delijn.be/stops/104946"], ["https://data.delijn.be/stops/202225", "https://data.delijn.be/stops/203283"], ["https://data.delijn.be/stops/103681", "https://data.delijn.be/stops/107791"], ["https://data.delijn.be/stops/200887", "https://data.delijn.be/stops/210103"], ["https://data.delijn.be/stops/105571", "https://data.delijn.be/stops/105580"], ["https://data.delijn.be/stops/401478", "https://data.delijn.be/stops/410208"], ["https://data.delijn.be/stops/501475", "https://data.delijn.be/stops/506475"], ["https://data.delijn.be/stops/508755", "https://data.delijn.be/stops/508966"], ["https://data.delijn.be/stops/400417", "https://data.delijn.be/stops/400418"], ["https://data.delijn.be/stops/502423", "https://data.delijn.be/stops/507439"], ["https://data.delijn.be/stops/107982", "https://data.delijn.be/stops/107983"], ["https://data.delijn.be/stops/504759", "https://data.delijn.be/stops/509759"], ["https://data.delijn.be/stops/208629", "https://data.delijn.be/stops/209045"], ["https://data.delijn.be/stops/200742", "https://data.delijn.be/stops/201742"], ["https://data.delijn.be/stops/206290", "https://data.delijn.be/stops/207289"], ["https://data.delijn.be/stops/106910", "https://data.delijn.be/stops/107254"], ["https://data.delijn.be/stops/501306", "https://data.delijn.be/stops/506306"], ["https://data.delijn.be/stops/104205", "https://data.delijn.be/stops/104220"], ["https://data.delijn.be/stops/502613", "https://data.delijn.be/stops/507438"], ["https://data.delijn.be/stops/505085", "https://data.delijn.be/stops/505762"], ["https://data.delijn.be/stops/209188", "https://data.delijn.be/stops/209192"], ["https://data.delijn.be/stops/502180", "https://data.delijn.be/stops/507179"], ["https://data.delijn.be/stops/204407", "https://data.delijn.be/stops/205407"], ["https://data.delijn.be/stops/204751", "https://data.delijn.be/stops/205437"], ["https://data.delijn.be/stops/206595", "https://data.delijn.be/stops/209665"], ["https://data.delijn.be/stops/211085", "https://data.delijn.be/stops/211105"], ["https://data.delijn.be/stops/200537", "https://data.delijn.be/stops/201537"], ["https://data.delijn.be/stops/206622", "https://data.delijn.be/stops/207622"], ["https://data.delijn.be/stops/500025", "https://data.delijn.be/stops/505076"], ["https://data.delijn.be/stops/206639", "https://data.delijn.be/stops/206810"], ["https://data.delijn.be/stops/408898", "https://data.delijn.be/stops/408916"], ["https://data.delijn.be/stops/201915", "https://data.delijn.be/stops/207568"], ["https://data.delijn.be/stops/305828", "https://data.delijn.be/stops/305955"], ["https://data.delijn.be/stops/504050", "https://data.delijn.be/stops/509828"], ["https://data.delijn.be/stops/302340", "https://data.delijn.be/stops/302349"], ["https://data.delijn.be/stops/105352", "https://data.delijn.be/stops/109618"], ["https://data.delijn.be/stops/509762", "https://data.delijn.be/stops/509763"], ["https://data.delijn.be/stops/401423", "https://data.delijn.be/stops/401498"], ["https://data.delijn.be/stops/503636", "https://data.delijn.be/stops/503638"], ["https://data.delijn.be/stops/300942", "https://data.delijn.be/stops/307795"], ["https://data.delijn.be/stops/102586", "https://data.delijn.be/stops/409531"], ["https://data.delijn.be/stops/403648", "https://data.delijn.be/stops/407345"], ["https://data.delijn.be/stops/207425", "https://data.delijn.be/stops/207832"], ["https://data.delijn.be/stops/206228", "https://data.delijn.be/stops/207228"], ["https://data.delijn.be/stops/304980", "https://data.delijn.be/stops/304981"], ["https://data.delijn.be/stops/200850", "https://data.delijn.be/stops/200893"], ["https://data.delijn.be/stops/304044", "https://data.delijn.be/stops/304811"], ["https://data.delijn.be/stops/201423", "https://data.delijn.be/stops/209719"], ["https://data.delijn.be/stops/107828", "https://data.delijn.be/stops/107832"], ["https://data.delijn.be/stops/506149", "https://data.delijn.be/stops/506164"], ["https://data.delijn.be/stops/101451", "https://data.delijn.be/stops/102631"], ["https://data.delijn.be/stops/204141", "https://data.delijn.be/stops/207898"], ["https://data.delijn.be/stops/402896", "https://data.delijn.be/stops/308117"], ["https://data.delijn.be/stops/105204", "https://data.delijn.be/stops/108878"], ["https://data.delijn.be/stops/202589", "https://data.delijn.be/stops/202684"], ["https://data.delijn.be/stops/407600", "https://data.delijn.be/stops/407604"], ["https://data.delijn.be/stops/304401", "https://data.delijn.be/stops/304402"], ["https://data.delijn.be/stops/304430", "https://data.delijn.be/stops/307383"], ["https://data.delijn.be/stops/504819", "https://data.delijn.be/stops/507764"], ["https://data.delijn.be/stops/206203", "https://data.delijn.be/stops/207687"], ["https://data.delijn.be/stops/509346", "https://data.delijn.be/stops/509353"], ["https://data.delijn.be/stops/204140", "https://data.delijn.be/stops/205140"], ["https://data.delijn.be/stops/101342", "https://data.delijn.be/stops/108101"], ["https://data.delijn.be/stops/504142", "https://data.delijn.be/stops/509147"], ["https://data.delijn.be/stops/407872", "https://data.delijn.be/stops/407874"], ["https://data.delijn.be/stops/502443", "https://data.delijn.be/stops/507451"], ["https://data.delijn.be/stops/101550", "https://data.delijn.be/stops/102896"], ["https://data.delijn.be/stops/503325", "https://data.delijn.be/stops/508324"], ["https://data.delijn.be/stops/108388", "https://data.delijn.be/stops/108392"], ["https://data.delijn.be/stops/204404", "https://data.delijn.be/stops/205405"], ["https://data.delijn.be/stops/407945", "https://data.delijn.be/stops/407983"], ["https://data.delijn.be/stops/504855", "https://data.delijn.be/stops/509150"], ["https://data.delijn.be/stops/401093", "https://data.delijn.be/stops/408958"], ["https://data.delijn.be/stops/505954", "https://data.delijn.be/stops/508161"], ["https://data.delijn.be/stops/401924", "https://data.delijn.be/stops/404689"], ["https://data.delijn.be/stops/108709", "https://data.delijn.be/stops/108803"], ["https://data.delijn.be/stops/307258", "https://data.delijn.be/stops/307259"], ["https://data.delijn.be/stops/302173", "https://data.delijn.be/stops/308096"], ["https://data.delijn.be/stops/201913", "https://data.delijn.be/stops/201932"], ["https://data.delijn.be/stops/501443", "https://data.delijn.be/stops/506443"], ["https://data.delijn.be/stops/401541", "https://data.delijn.be/stops/406888"], ["https://data.delijn.be/stops/502107", "https://data.delijn.be/stops/507134"], ["https://data.delijn.be/stops/209557", "https://data.delijn.be/stops/209612"], ["https://data.delijn.be/stops/305110", "https://data.delijn.be/stops/305111"], ["https://data.delijn.be/stops/508186", "https://data.delijn.be/stops/508385"], ["https://data.delijn.be/stops/206113", "https://data.delijn.be/stops/206156"], ["https://data.delijn.be/stops/208179", "https://data.delijn.be/stops/209179"], ["https://data.delijn.be/stops/107045", "https://data.delijn.be/stops/107985"], ["https://data.delijn.be/stops/304202", "https://data.delijn.be/stops/306000"], ["https://data.delijn.be/stops/304344", "https://data.delijn.be/stops/304346"], ["https://data.delijn.be/stops/506394", "https://data.delijn.be/stops/506464"], ["https://data.delijn.be/stops/102399", "https://data.delijn.be/stops/104096"], ["https://data.delijn.be/stops/103541", "https://data.delijn.be/stops/103542"], ["https://data.delijn.be/stops/303194", "https://data.delijn.be/stops/303202"], ["https://data.delijn.be/stops/106085", "https://data.delijn.be/stops/106100"], ["https://data.delijn.be/stops/405736", "https://data.delijn.be/stops/405737"], ["https://data.delijn.be/stops/102697", "https://data.delijn.be/stops/103743"], ["https://data.delijn.be/stops/504115", "https://data.delijn.be/stops/505921"], ["https://data.delijn.be/stops/202572", "https://data.delijn.be/stops/203572"], ["https://data.delijn.be/stops/401468", "https://data.delijn.be/stops/401890"], ["https://data.delijn.be/stops/205668", "https://data.delijn.be/stops/214001"], ["https://data.delijn.be/stops/106298", "https://data.delijn.be/stops/106471"], ["https://data.delijn.be/stops/302321", "https://data.delijn.be/stops/303452"], ["https://data.delijn.be/stops/404010", "https://data.delijn.be/stops/404082"], ["https://data.delijn.be/stops/302723", "https://data.delijn.be/stops/308833"], ["https://data.delijn.be/stops/307606", "https://data.delijn.be/stops/307740"], ["https://data.delijn.be/stops/504304", "https://data.delijn.be/stops/504772"], ["https://data.delijn.be/stops/204344", "https://data.delijn.be/stops/205345"], ["https://data.delijn.be/stops/404867", "https://data.delijn.be/stops/404878"], ["https://data.delijn.be/stops/200982", "https://data.delijn.be/stops/202920"], ["https://data.delijn.be/stops/405817", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/103529", "https://data.delijn.be/stops/109635"], ["https://data.delijn.be/stops/104093", "https://data.delijn.be/stops/109837"], ["https://data.delijn.be/stops/206152", "https://data.delijn.be/stops/207114"], ["https://data.delijn.be/stops/408663", "https://data.delijn.be/stops/408743"], ["https://data.delijn.be/stops/208008", "https://data.delijn.be/stops/209009"], ["https://data.delijn.be/stops/109315", "https://data.delijn.be/stops/109866"], ["https://data.delijn.be/stops/301636", "https://data.delijn.be/stops/301638"], ["https://data.delijn.be/stops/301553", "https://data.delijn.be/stops/301559"], ["https://data.delijn.be/stops/107082", "https://data.delijn.be/stops/107083"], ["https://data.delijn.be/stops/402722", "https://data.delijn.be/stops/402723"], ["https://data.delijn.be/stops/506463", "https://data.delijn.be/stops/506658"], ["https://data.delijn.be/stops/104001", "https://data.delijn.be/stops/107285"], ["https://data.delijn.be/stops/108475", "https://data.delijn.be/stops/108986"], ["https://data.delijn.be/stops/409099", "https://data.delijn.be/stops/409106"], ["https://data.delijn.be/stops/300408", "https://data.delijn.be/stops/302001"], ["https://data.delijn.be/stops/503429", "https://data.delijn.be/stops/503434"], ["https://data.delijn.be/stops/503176", "https://data.delijn.be/stops/508170"], ["https://data.delijn.be/stops/200689", "https://data.delijn.be/stops/200696"], ["https://data.delijn.be/stops/504500", "https://data.delijn.be/stops/504501"], ["https://data.delijn.be/stops/102373", "https://data.delijn.be/stops/105671"], ["https://data.delijn.be/stops/201051", "https://data.delijn.be/stops/203934"], ["https://data.delijn.be/stops/301368", "https://data.delijn.be/stops/304811"], ["https://data.delijn.be/stops/107957", "https://data.delijn.be/stops/109870"], ["https://data.delijn.be/stops/302184", "https://data.delijn.be/stops/305095"], ["https://data.delijn.be/stops/504169", "https://data.delijn.be/stops/509177"], ["https://data.delijn.be/stops/400407", "https://data.delijn.be/stops/400410"], ["https://data.delijn.be/stops/206353", "https://data.delijn.be/stops/207916"], ["https://data.delijn.be/stops/504249", "https://data.delijn.be/stops/509447"], ["https://data.delijn.be/stops/106649", "https://data.delijn.be/stops/109753"], ["https://data.delijn.be/stops/107661", "https://data.delijn.be/stops/109862"], ["https://data.delijn.be/stops/303465", "https://data.delijn.be/stops/303470"], ["https://data.delijn.be/stops/200068", "https://data.delijn.be/stops/205951"], ["https://data.delijn.be/stops/207698", "https://data.delijn.be/stops/207747"], ["https://data.delijn.be/stops/209401", "https://data.delijn.be/stops/209420"], ["https://data.delijn.be/stops/200240", "https://data.delijn.be/stops/201241"], ["https://data.delijn.be/stops/302295", "https://data.delijn.be/stops/303506"], ["https://data.delijn.be/stops/304754", "https://data.delijn.be/stops/304778"], ["https://data.delijn.be/stops/407995", "https://data.delijn.be/stops/408005"], ["https://data.delijn.be/stops/201713", "https://data.delijn.be/stops/201723"], ["https://data.delijn.be/stops/208511", "https://data.delijn.be/stops/208633"], ["https://data.delijn.be/stops/302940", "https://data.delijn.be/stops/302977"], ["https://data.delijn.be/stops/401582", "https://data.delijn.be/stops/401899"], ["https://data.delijn.be/stops/106190", "https://data.delijn.be/stops/107441"], ["https://data.delijn.be/stops/301129", "https://data.delijn.be/stops/307650"], ["https://data.delijn.be/stops/105460", "https://data.delijn.be/stops/105500"], ["https://data.delijn.be/stops/109310", "https://data.delijn.be/stops/109311"], ["https://data.delijn.be/stops/104046", "https://data.delijn.be/stops/302552"], ["https://data.delijn.be/stops/106921", "https://data.delijn.be/stops/107287"], ["https://data.delijn.be/stops/305318", "https://data.delijn.be/stops/305335"], ["https://data.delijn.be/stops/105897", "https://data.delijn.be/stops/105899"], ["https://data.delijn.be/stops/102525", "https://data.delijn.be/stops/102527"], ["https://data.delijn.be/stops/409371", "https://data.delijn.be/stops/409378"], ["https://data.delijn.be/stops/304596", "https://data.delijn.be/stops/304717"], ["https://data.delijn.be/stops/105314", "https://data.delijn.be/stops/105343"], ["https://data.delijn.be/stops/206260", "https://data.delijn.be/stops/206918"], ["https://data.delijn.be/stops/109552", "https://data.delijn.be/stops/307436"], ["https://data.delijn.be/stops/204689", "https://data.delijn.be/stops/205689"], ["https://data.delijn.be/stops/206924", "https://data.delijn.be/stops/207814"], ["https://data.delijn.be/stops/401442", "https://data.delijn.be/stops/401723"], ["https://data.delijn.be/stops/404189", "https://data.delijn.be/stops/404241"], ["https://data.delijn.be/stops/405717", "https://data.delijn.be/stops/405736"], ["https://data.delijn.be/stops/304230", "https://data.delijn.be/stops/308773"], ["https://data.delijn.be/stops/305150", "https://data.delijn.be/stops/305164"], ["https://data.delijn.be/stops/208011", "https://data.delijn.be/stops/209009"], ["https://data.delijn.be/stops/405603", "https://data.delijn.be/stops/410052"], ["https://data.delijn.be/stops/200699", "https://data.delijn.be/stops/203789"], ["https://data.delijn.be/stops/301307", "https://data.delijn.be/stops/306649"], ["https://data.delijn.be/stops/402270", "https://data.delijn.be/stops/410149"], ["https://data.delijn.be/stops/400177", "https://data.delijn.be/stops/400295"], ["https://data.delijn.be/stops/300791", "https://data.delijn.be/stops/300793"], ["https://data.delijn.be/stops/503293", "https://data.delijn.be/stops/505257"], ["https://data.delijn.be/stops/109968", "https://data.delijn.be/stops/109973"], ["https://data.delijn.be/stops/206151", "https://data.delijn.be/stops/207907"], ["https://data.delijn.be/stops/106092", "https://data.delijn.be/stops/106093"], ["https://data.delijn.be/stops/101015", "https://data.delijn.be/stops/104600"], ["https://data.delijn.be/stops/409436", "https://data.delijn.be/stops/409680"], ["https://data.delijn.be/stops/301543", "https://data.delijn.be/stops/305142"], ["https://data.delijn.be/stops/201734", "https://data.delijn.be/stops/202056"], ["https://data.delijn.be/stops/205400", "https://data.delijn.be/stops/205411"], ["https://data.delijn.be/stops/507710", "https://data.delijn.be/stops/507711"], ["https://data.delijn.be/stops/502316", "https://data.delijn.be/stops/505675"], ["https://data.delijn.be/stops/400454", "https://data.delijn.be/stops/400455"], ["https://data.delijn.be/stops/502458", "https://data.delijn.be/stops/507657"], ["https://data.delijn.be/stops/406805", "https://data.delijn.be/stops/406810"], ["https://data.delijn.be/stops/503351", "https://data.delijn.be/stops/508351"], ["https://data.delijn.be/stops/207420", "https://data.delijn.be/stops/217014"], ["https://data.delijn.be/stops/302144", "https://data.delijn.be/stops/302145"], ["https://data.delijn.be/stops/208366", "https://data.delijn.be/stops/209366"], ["https://data.delijn.be/stops/400656", "https://data.delijn.be/stops/401250"], ["https://data.delijn.be/stops/302842", "https://data.delijn.be/stops/302844"], ["https://data.delijn.be/stops/200237", "https://data.delijn.be/stops/205924"], ["https://data.delijn.be/stops/404441", "https://data.delijn.be/stops/405875"], ["https://data.delijn.be/stops/408321", "https://data.delijn.be/stops/408325"], ["https://data.delijn.be/stops/205327", "https://data.delijn.be/stops/205536"], ["https://data.delijn.be/stops/107685", "https://data.delijn.be/stops/107985"], ["https://data.delijn.be/stops/204054", "https://data.delijn.be/stops/205054"], ["https://data.delijn.be/stops/204987", "https://data.delijn.be/stops/209258"], ["https://data.delijn.be/stops/300205", "https://data.delijn.be/stops/302115"], ["https://data.delijn.be/stops/503228", "https://data.delijn.be/stops/503229"], ["https://data.delijn.be/stops/206005", "https://data.delijn.be/stops/206007"], ["https://data.delijn.be/stops/408490", "https://data.delijn.be/stops/408491"], ["https://data.delijn.be/stops/306603", "https://data.delijn.be/stops/306605"], ["https://data.delijn.be/stops/407036", "https://data.delijn.be/stops/407071"], ["https://data.delijn.be/stops/501409", "https://data.delijn.be/stops/506409"], ["https://data.delijn.be/stops/505725", "https://data.delijn.be/stops/505730"], ["https://data.delijn.be/stops/301428", "https://data.delijn.be/stops/301432"], ["https://data.delijn.be/stops/202986", "https://data.delijn.be/stops/203986"], ["https://data.delijn.be/stops/400789", "https://data.delijn.be/stops/409594"], ["https://data.delijn.be/stops/305270", "https://data.delijn.be/stops/305887"], ["https://data.delijn.be/stops/208145", "https://data.delijn.be/stops/208146"], ["https://data.delijn.be/stops/404555", "https://data.delijn.be/stops/407354"], ["https://data.delijn.be/stops/206336", "https://data.delijn.be/stops/206337"], ["https://data.delijn.be/stops/206765", "https://data.delijn.be/stops/208618"], ["https://data.delijn.be/stops/404514", "https://data.delijn.be/stops/404551"], ["https://data.delijn.be/stops/401416", "https://data.delijn.be/stops/306001"], ["https://data.delijn.be/stops/204341", "https://data.delijn.be/stops/205761"], ["https://data.delijn.be/stops/300557", "https://data.delijn.be/stops/300565"], ["https://data.delijn.be/stops/201626", "https://data.delijn.be/stops/203902"], ["https://data.delijn.be/stops/101913", "https://data.delijn.be/stops/101916"], ["https://data.delijn.be/stops/401933", "https://data.delijn.be/stops/401936"], ["https://data.delijn.be/stops/300320", "https://data.delijn.be/stops/302420"], ["https://data.delijn.be/stops/109080", "https://data.delijn.be/stops/109853"], ["https://data.delijn.be/stops/508334", "https://data.delijn.be/stops/508335"], ["https://data.delijn.be/stops/106966", "https://data.delijn.be/stops/106981"], ["https://data.delijn.be/stops/304370", "https://data.delijn.be/stops/307372"], ["https://data.delijn.be/stops/302751", "https://data.delijn.be/stops/303219"], ["https://data.delijn.be/stops/300423", "https://data.delijn.be/stops/300430"], ["https://data.delijn.be/stops/306897", "https://data.delijn.be/stops/308125"], ["https://data.delijn.be/stops/102216", "https://data.delijn.be/stops/105536"], ["https://data.delijn.be/stops/208338", "https://data.delijn.be/stops/209115"], ["https://data.delijn.be/stops/505823", "https://data.delijn.be/stops/508319"], ["https://data.delijn.be/stops/303828", "https://data.delijn.be/stops/305895"], ["https://data.delijn.be/stops/408924", "https://data.delijn.be/stops/408925"], ["https://data.delijn.be/stops/308406", "https://data.delijn.be/stops/308407"], ["https://data.delijn.be/stops/206016", "https://data.delijn.be/stops/206387"], ["https://data.delijn.be/stops/301541", "https://data.delijn.be/stops/308088"], ["https://data.delijn.be/stops/403321", "https://data.delijn.be/stops/403915"], ["https://data.delijn.be/stops/504970", "https://data.delijn.be/stops/508713"], ["https://data.delijn.be/stops/208173", "https://data.delijn.be/stops/208174"], ["https://data.delijn.be/stops/204406", "https://data.delijn.be/stops/205199"], ["https://data.delijn.be/stops/504630", "https://data.delijn.be/stops/509620"], ["https://data.delijn.be/stops/102421", "https://data.delijn.be/stops/103668"], ["https://data.delijn.be/stops/304295", "https://data.delijn.be/stops/304475"], ["https://data.delijn.be/stops/200397", "https://data.delijn.be/stops/209702"], ["https://data.delijn.be/stops/204912", "https://data.delijn.be/stops/204918"], ["https://data.delijn.be/stops/400326", "https://data.delijn.be/stops/400327"], ["https://data.delijn.be/stops/202045", "https://data.delijn.be/stops/202248"], ["https://data.delijn.be/stops/201164", "https://data.delijn.be/stops/201383"], ["https://data.delijn.be/stops/306615", "https://data.delijn.be/stops/306624"], ["https://data.delijn.be/stops/104401", "https://data.delijn.be/stops/109650"], ["https://data.delijn.be/stops/401589", "https://data.delijn.be/stops/402116"], ["https://data.delijn.be/stops/102864", "https://data.delijn.be/stops/105937"], ["https://data.delijn.be/stops/502653", "https://data.delijn.be/stops/505577"], ["https://data.delijn.be/stops/400568", "https://data.delijn.be/stops/403165"], ["https://data.delijn.be/stops/202260", "https://data.delijn.be/stops/203260"], ["https://data.delijn.be/stops/503902", "https://data.delijn.be/stops/505443"], ["https://data.delijn.be/stops/503567", "https://data.delijn.be/stops/505139"], ["https://data.delijn.be/stops/306881", "https://data.delijn.be/stops/307872"], ["https://data.delijn.be/stops/501357", "https://data.delijn.be/stops/506302"], ["https://data.delijn.be/stops/407906", "https://data.delijn.be/stops/407907"], ["https://data.delijn.be/stops/507518", "https://data.delijn.be/stops/509794"], ["https://data.delijn.be/stops/402427", "https://data.delijn.be/stops/405559"], ["https://data.delijn.be/stops/208688", "https://data.delijn.be/stops/208712"], ["https://data.delijn.be/stops/504372", "https://data.delijn.be/stops/505786"], ["https://data.delijn.be/stops/102428", "https://data.delijn.be/stops/106228"], ["https://data.delijn.be/stops/408956", "https://data.delijn.be/stops/408964"], ["https://data.delijn.be/stops/103970", "https://data.delijn.be/stops/104645"], ["https://data.delijn.be/stops/208088", "https://data.delijn.be/stops/209088"], ["https://data.delijn.be/stops/301969", "https://data.delijn.be/stops/301970"], ["https://data.delijn.be/stops/208093", "https://data.delijn.be/stops/209629"], ["https://data.delijn.be/stops/109456", "https://data.delijn.be/stops/109791"], ["https://data.delijn.be/stops/108089", "https://data.delijn.be/stops/108093"], ["https://data.delijn.be/stops/400992", "https://data.delijn.be/stops/406587"], ["https://data.delijn.be/stops/305231", "https://data.delijn.be/stops/305256"], ["https://data.delijn.be/stops/304762", "https://data.delijn.be/stops/304763"], ["https://data.delijn.be/stops/401484", "https://data.delijn.be/stops/401494"], ["https://data.delijn.be/stops/301331", "https://data.delijn.be/stops/307942"], ["https://data.delijn.be/stops/503812", "https://data.delijn.be/stops/508948"], ["https://data.delijn.be/stops/303780", "https://data.delijn.be/stops/303810"], ["https://data.delijn.be/stops/504211", "https://data.delijn.be/stops/509223"], ["https://data.delijn.be/stops/508335", "https://data.delijn.be/stops/508339"], ["https://data.delijn.be/stops/405613", "https://data.delijn.be/stops/407156"], ["https://data.delijn.be/stops/400171", "https://data.delijn.be/stops/407471"], ["https://data.delijn.be/stops/203637", "https://data.delijn.be/stops/205072"], ["https://data.delijn.be/stops/202161", "https://data.delijn.be/stops/205067"], ["https://data.delijn.be/stops/103152", "https://data.delijn.be/stops/107201"], ["https://data.delijn.be/stops/200925", "https://data.delijn.be/stops/203248"], ["https://data.delijn.be/stops/402504", "https://data.delijn.be/stops/408178"], ["https://data.delijn.be/stops/300679", "https://data.delijn.be/stops/305964"], ["https://data.delijn.be/stops/206743", "https://data.delijn.be/stops/207744"], ["https://data.delijn.be/stops/505514", "https://data.delijn.be/stops/505518"], ["https://data.delijn.be/stops/502801", "https://data.delijn.be/stops/504154"], ["https://data.delijn.be/stops/204162", "https://data.delijn.be/stops/206400"], ["https://data.delijn.be/stops/303247", "https://data.delijn.be/stops/304861"], ["https://data.delijn.be/stops/301097", "https://data.delijn.be/stops/301449"], ["https://data.delijn.be/stops/501618", "https://data.delijn.be/stops/506614"], ["https://data.delijn.be/stops/101130", "https://data.delijn.be/stops/103755"], ["https://data.delijn.be/stops/200051", "https://data.delijn.be/stops/201052"], ["https://data.delijn.be/stops/209067", "https://data.delijn.be/stops/209068"], ["https://data.delijn.be/stops/501064", "https://data.delijn.be/stops/506064"], ["https://data.delijn.be/stops/301560", "https://data.delijn.be/stops/308086"], ["https://data.delijn.be/stops/306178", "https://data.delijn.be/stops/306405"], ["https://data.delijn.be/stops/203975", "https://data.delijn.be/stops/204001"], ["https://data.delijn.be/stops/202728", "https://data.delijn.be/stops/203728"], ["https://data.delijn.be/stops/407918", "https://data.delijn.be/stops/407920"], ["https://data.delijn.be/stops/303511", "https://data.delijn.be/stops/303512"], ["https://data.delijn.be/stops/108103", "https://data.delijn.be/stops/108113"], ["https://data.delijn.be/stops/402605", "https://data.delijn.be/stops/402608"], ["https://data.delijn.be/stops/104343", "https://data.delijn.be/stops/104344"], ["https://data.delijn.be/stops/200669", "https://data.delijn.be/stops/200670"], ["https://data.delijn.be/stops/302225", "https://data.delijn.be/stops/302240"], ["https://data.delijn.be/stops/206278", "https://data.delijn.be/stops/207279"], ["https://data.delijn.be/stops/501431", "https://data.delijn.be/stops/506431"], ["https://data.delijn.be/stops/405646", "https://data.delijn.be/stops/408661"], ["https://data.delijn.be/stops/508266", "https://data.delijn.be/stops/508703"], ["https://data.delijn.be/stops/306864", "https://data.delijn.be/stops/307825"], ["https://data.delijn.be/stops/300409", "https://data.delijn.be/stops/300410"], ["https://data.delijn.be/stops/502274", "https://data.delijn.be/stops/507276"], ["https://data.delijn.be/stops/406100", "https://data.delijn.be/stops/407914"], ["https://data.delijn.be/stops/206164", "https://data.delijn.be/stops/303363"], ["https://data.delijn.be/stops/300508", "https://data.delijn.be/stops/302919"], ["https://data.delijn.be/stops/200184", "https://data.delijn.be/stops/201247"], ["https://data.delijn.be/stops/403991", "https://data.delijn.be/stops/404025"], ["https://data.delijn.be/stops/305383", "https://data.delijn.be/stops/305385"], ["https://data.delijn.be/stops/103302", "https://data.delijn.be/stops/105761"], ["https://data.delijn.be/stops/202102", "https://data.delijn.be/stops/203101"], ["https://data.delijn.be/stops/405711", "https://data.delijn.be/stops/405719"], ["https://data.delijn.be/stops/200181", "https://data.delijn.be/stops/201186"], ["https://data.delijn.be/stops/102254", "https://data.delijn.be/stops/108287"], ["https://data.delijn.be/stops/501133", "https://data.delijn.be/stops/506064"], ["https://data.delijn.be/stops/502527", "https://data.delijn.be/stops/507527"], ["https://data.delijn.be/stops/201373", "https://data.delijn.be/stops/203002"], ["https://data.delijn.be/stops/204917", "https://data.delijn.be/stops/204918"], ["https://data.delijn.be/stops/407133", "https://data.delijn.be/stops/407342"], ["https://data.delijn.be/stops/407978", "https://data.delijn.be/stops/407994"], ["https://data.delijn.be/stops/106047", "https://data.delijn.be/stops/106049"], ["https://data.delijn.be/stops/404261", "https://data.delijn.be/stops/404262"], ["https://data.delijn.be/stops/102217", "https://data.delijn.be/stops/102218"], ["https://data.delijn.be/stops/208750", "https://data.delijn.be/stops/209661"], ["https://data.delijn.be/stops/202306", "https://data.delijn.be/stops/202307"], ["https://data.delijn.be/stops/501617", "https://data.delijn.be/stops/501620"], ["https://data.delijn.be/stops/403381", "https://data.delijn.be/stops/403384"], ["https://data.delijn.be/stops/308544", "https://data.delijn.be/stops/308955"], ["https://data.delijn.be/stops/105692", "https://data.delijn.be/stops/105711"], ["https://data.delijn.be/stops/105064", "https://data.delijn.be/stops/107424"], ["https://data.delijn.be/stops/101204", "https://data.delijn.be/stops/204542"], ["https://data.delijn.be/stops/305069", "https://data.delijn.be/stops/306951"], ["https://data.delijn.be/stops/408826", "https://data.delijn.be/stops/408832"], ["https://data.delijn.be/stops/404462", "https://data.delijn.be/stops/404497"], ["https://data.delijn.be/stops/303016", "https://data.delijn.be/stops/306279"], ["https://data.delijn.be/stops/303693", "https://data.delijn.be/stops/303761"], ["https://data.delijn.be/stops/407814", "https://data.delijn.be/stops/407903"], ["https://data.delijn.be/stops/409104", "https://data.delijn.be/stops/409127"], ["https://data.delijn.be/stops/303700", "https://data.delijn.be/stops/303739"], ["https://data.delijn.be/stops/506393", "https://data.delijn.be/stops/509797"], ["https://data.delijn.be/stops/206693", "https://data.delijn.be/stops/207694"], ["https://data.delijn.be/stops/101008", "https://data.delijn.be/stops/101009"], ["https://data.delijn.be/stops/103998", "https://data.delijn.be/stops/106888"], ["https://data.delijn.be/stops/302572", "https://data.delijn.be/stops/302579"], ["https://data.delijn.be/stops/501369", "https://data.delijn.be/stops/590413"], ["https://data.delijn.be/stops/102650", "https://data.delijn.be/stops/102820"], ["https://data.delijn.be/stops/404743", "https://data.delijn.be/stops/404801"], ["https://data.delijn.be/stops/208209", "https://data.delijn.be/stops/208211"], ["https://data.delijn.be/stops/505325", "https://data.delijn.be/stops/505625"], ["https://data.delijn.be/stops/507013", "https://data.delijn.be/stops/507021"], ["https://data.delijn.be/stops/502446", "https://data.delijn.be/stops/507446"], ["https://data.delijn.be/stops/109291", "https://data.delijn.be/stops/109293"], ["https://data.delijn.be/stops/510002", "https://data.delijn.be/stops/510004"], ["https://data.delijn.be/stops/201673", "https://data.delijn.be/stops/201674"], ["https://data.delijn.be/stops/104452", "https://data.delijn.be/stops/104453"], ["https://data.delijn.be/stops/204725", "https://data.delijn.be/stops/204726"], ["https://data.delijn.be/stops/404298", "https://data.delijn.be/stops/404353"], ["https://data.delijn.be/stops/503026", "https://data.delijn.be/stops/503027"], ["https://data.delijn.be/stops/305401", "https://data.delijn.be/stops/305413"], ["https://data.delijn.be/stops/303094", "https://data.delijn.be/stops/304243"], ["https://data.delijn.be/stops/504485", "https://data.delijn.be/stops/509489"], ["https://data.delijn.be/stops/505393", "https://data.delijn.be/stops/505957"], ["https://data.delijn.be/stops/402616", "https://data.delijn.be/stops/408446"], ["https://data.delijn.be/stops/103992", "https://data.delijn.be/stops/105367"], ["https://data.delijn.be/stops/301359", "https://data.delijn.be/stops/306153"], ["https://data.delijn.be/stops/203594", "https://data.delijn.be/stops/203595"], ["https://data.delijn.be/stops/407855", "https://data.delijn.be/stops/407931"], ["https://data.delijn.be/stops/504834", "https://data.delijn.be/stops/508907"], ["https://data.delijn.be/stops/401477", "https://data.delijn.be/stops/401749"], ["https://data.delijn.be/stops/200002", "https://data.delijn.be/stops/202016"], ["https://data.delijn.be/stops/204381", "https://data.delijn.be/stops/205381"], ["https://data.delijn.be/stops/503715", "https://data.delijn.be/stops/508715"], ["https://data.delijn.be/stops/308500", "https://data.delijn.be/stops/308501"], ["https://data.delijn.be/stops/505833", "https://data.delijn.be/stops/507224"], ["https://data.delijn.be/stops/407959", "https://data.delijn.be/stops/408071"], ["https://data.delijn.be/stops/109350", "https://data.delijn.be/stops/109352"], ["https://data.delijn.be/stops/209500", "https://data.delijn.be/stops/209667"], ["https://data.delijn.be/stops/406638", "https://data.delijn.be/stops/406639"], ["https://data.delijn.be/stops/103685", "https://data.delijn.be/stops/108355"], ["https://data.delijn.be/stops/509123", "https://data.delijn.be/stops/509257"], ["https://data.delijn.be/stops/208227", "https://data.delijn.be/stops/208831"], ["https://data.delijn.be/stops/501238", "https://data.delijn.be/stops/506244"], ["https://data.delijn.be/stops/101909", "https://data.delijn.be/stops/101917"], ["https://data.delijn.be/stops/400860", "https://data.delijn.be/stops/400871"], ["https://data.delijn.be/stops/200652", "https://data.delijn.be/stops/201652"], ["https://data.delijn.be/stops/504665", "https://data.delijn.be/stops/509496"], ["https://data.delijn.be/stops/503200", "https://data.delijn.be/stops/508208"], ["https://data.delijn.be/stops/307279", "https://data.delijn.be/stops/308760"], ["https://data.delijn.be/stops/503138", "https://data.delijn.be/stops/508134"], ["https://data.delijn.be/stops/507095", "https://data.delijn.be/stops/507148"], ["https://data.delijn.be/stops/107925", "https://data.delijn.be/stops/108730"], ["https://data.delijn.be/stops/108919", "https://data.delijn.be/stops/108921"], ["https://data.delijn.be/stops/206301", "https://data.delijn.be/stops/207301"], ["https://data.delijn.be/stops/106470", "https://data.delijn.be/stops/106473"], ["https://data.delijn.be/stops/105527", "https://data.delijn.be/stops/105529"], ["https://data.delijn.be/stops/401340", "https://data.delijn.be/stops/406653"], ["https://data.delijn.be/stops/304333", "https://data.delijn.be/stops/304334"], ["https://data.delijn.be/stops/209202", "https://data.delijn.be/stops/209203"], ["https://data.delijn.be/stops/206082", "https://data.delijn.be/stops/207977"], ["https://data.delijn.be/stops/209362", "https://data.delijn.be/stops/209363"], ["https://data.delijn.be/stops/503908", "https://data.delijn.be/stops/507061"], ["https://data.delijn.be/stops/400400", "https://data.delijn.be/stops/400958"], ["https://data.delijn.be/stops/203949", "https://data.delijn.be/stops/206554"], ["https://data.delijn.be/stops/504601", "https://data.delijn.be/stops/504605"], ["https://data.delijn.be/stops/401798", "https://data.delijn.be/stops/401799"], ["https://data.delijn.be/stops/502419", "https://data.delijn.be/stops/502749"], ["https://data.delijn.be/stops/407362", "https://data.delijn.be/stops/407365"], ["https://data.delijn.be/stops/101510", "https://data.delijn.be/stops/101855"], ["https://data.delijn.be/stops/206492", "https://data.delijn.be/stops/206493"], ["https://data.delijn.be/stops/303020", "https://data.delijn.be/stops/303107"], ["https://data.delijn.be/stops/105828", "https://data.delijn.be/stops/105829"], ["https://data.delijn.be/stops/202545", "https://data.delijn.be/stops/203545"], ["https://data.delijn.be/stops/202195", "https://data.delijn.be/stops/203198"], ["https://data.delijn.be/stops/103101", "https://data.delijn.be/stops/105852"], ["https://data.delijn.be/stops/200002", "https://data.delijn.be/stops/210857"], ["https://data.delijn.be/stops/302009", "https://data.delijn.be/stops/302022"], ["https://data.delijn.be/stops/109241", "https://data.delijn.be/stops/109243"], ["https://data.delijn.be/stops/300064", "https://data.delijn.be/stops/300857"], ["https://data.delijn.be/stops/400200", "https://data.delijn.be/stops/400210"], ["https://data.delijn.be/stops/208245", "https://data.delijn.be/stops/208854"], ["https://data.delijn.be/stops/300487", "https://data.delijn.be/stops/306386"], ["https://data.delijn.be/stops/200053", "https://data.delijn.be/stops/203931"], ["https://data.delijn.be/stops/202258", "https://data.delijn.be/stops/203257"], ["https://data.delijn.be/stops/504200", "https://data.delijn.be/stops/504263"], ["https://data.delijn.be/stops/302381", "https://data.delijn.be/stops/302383"], ["https://data.delijn.be/stops/204162", "https://data.delijn.be/stops/206278"], ["https://data.delijn.be/stops/101396", "https://data.delijn.be/stops/107099"], ["https://data.delijn.be/stops/206875", "https://data.delijn.be/stops/207967"], ["https://data.delijn.be/stops/301795", "https://data.delijn.be/stops/301801"], ["https://data.delijn.be/stops/207751", "https://data.delijn.be/stops/207768"], ["https://data.delijn.be/stops/504532", "https://data.delijn.be/stops/509006"], ["https://data.delijn.be/stops/301668", "https://data.delijn.be/stops/301672"], ["https://data.delijn.be/stops/401848", "https://data.delijn.be/stops/406347"], ["https://data.delijn.be/stops/503363", "https://data.delijn.be/stops/508403"], ["https://data.delijn.be/stops/300254", "https://data.delijn.be/stops/300257"], ["https://data.delijn.be/stops/409087", "https://data.delijn.be/stops/409210"], ["https://data.delijn.be/stops/504355", "https://data.delijn.be/stops/504589"], ["https://data.delijn.be/stops/402345", "https://data.delijn.be/stops/402417"], ["https://data.delijn.be/stops/504041", "https://data.delijn.be/stops/504108"], ["https://data.delijn.be/stops/202437", "https://data.delijn.be/stops/205559"], ["https://data.delijn.be/stops/509230", "https://data.delijn.be/stops/509238"], ["https://data.delijn.be/stops/201305", "https://data.delijn.be/stops/202763"], ["https://data.delijn.be/stops/109861", "https://data.delijn.be/stops/109862"], ["https://data.delijn.be/stops/507456", "https://data.delijn.be/stops/507662"], ["https://data.delijn.be/stops/401490", "https://data.delijn.be/stops/401528"], ["https://data.delijn.be/stops/305555", "https://data.delijn.be/stops/308684"], ["https://data.delijn.be/stops/302126", "https://data.delijn.be/stops/304104"], ["https://data.delijn.be/stops/303112", "https://data.delijn.be/stops/305159"], ["https://data.delijn.be/stops/406436", "https://data.delijn.be/stops/409404"], ["https://data.delijn.be/stops/108294", "https://data.delijn.be/stops/108297"], ["https://data.delijn.be/stops/207180", "https://data.delijn.be/stops/308566"], ["https://data.delijn.be/stops/201062", "https://data.delijn.be/stops/203132"], ["https://data.delijn.be/stops/103201", "https://data.delijn.be/stops/108677"], ["https://data.delijn.be/stops/301727", "https://data.delijn.be/stops/301733"], ["https://data.delijn.be/stops/200734", "https://data.delijn.be/stops/201704"], ["https://data.delijn.be/stops/508619", "https://data.delijn.be/stops/590009"], ["https://data.delijn.be/stops/208372", "https://data.delijn.be/stops/209193"], ["https://data.delijn.be/stops/107709", "https://data.delijn.be/stops/108058"], ["https://data.delijn.be/stops/404971", "https://data.delijn.be/stops/404974"], ["https://data.delijn.be/stops/204466", "https://data.delijn.be/stops/204475"], ["https://data.delijn.be/stops/401046", "https://data.delijn.be/stops/401130"], ["https://data.delijn.be/stops/200709", "https://data.delijn.be/stops/211076"], ["https://data.delijn.be/stops/404975", "https://data.delijn.be/stops/404978"], ["https://data.delijn.be/stops/502262", "https://data.delijn.be/stops/507350"], ["https://data.delijn.be/stops/108819", "https://data.delijn.be/stops/108821"], ["https://data.delijn.be/stops/204099", "https://data.delijn.be/stops/206826"], ["https://data.delijn.be/stops/502707", "https://data.delijn.be/stops/507060"], ["https://data.delijn.be/stops/504552", "https://data.delijn.be/stops/505375"], ["https://data.delijn.be/stops/402301", "https://data.delijn.be/stops/402302"], ["https://data.delijn.be/stops/300518", "https://data.delijn.be/stops/306174"], ["https://data.delijn.be/stops/502672", "https://data.delijn.be/stops/505227"], ["https://data.delijn.be/stops/208492", "https://data.delijn.be/stops/219025"], ["https://data.delijn.be/stops/505022", "https://data.delijn.be/stops/507528"], ["https://data.delijn.be/stops/206496", "https://data.delijn.be/stops/207508"], ["https://data.delijn.be/stops/202685", "https://data.delijn.be/stops/204620"], ["https://data.delijn.be/stops/102461", "https://data.delijn.be/stops/102464"], ["https://data.delijn.be/stops/409444", "https://data.delijn.be/stops/409470"], ["https://data.delijn.be/stops/404249", "https://data.delijn.be/stops/404390"], ["https://data.delijn.be/stops/401306", "https://data.delijn.be/stops/401316"], ["https://data.delijn.be/stops/300396", "https://data.delijn.be/stops/301098"], ["https://data.delijn.be/stops/405623", "https://data.delijn.be/stops/409301"], ["https://data.delijn.be/stops/101985", "https://data.delijn.be/stops/103790"], ["https://data.delijn.be/stops/300945", "https://data.delijn.be/stops/301014"], ["https://data.delijn.be/stops/102010", "https://data.delijn.be/stops/105170"], ["https://data.delijn.be/stops/104638", "https://data.delijn.be/stops/104869"], ["https://data.delijn.be/stops/402030", "https://data.delijn.be/stops/402033"], ["https://data.delijn.be/stops/208721", "https://data.delijn.be/stops/209722"], ["https://data.delijn.be/stops/300205", "https://data.delijn.be/stops/300206"], ["https://data.delijn.be/stops/206540", "https://data.delijn.be/stops/207483"], ["https://data.delijn.be/stops/203321", "https://data.delijn.be/stops/210044"], ["https://data.delijn.be/stops/304423", "https://data.delijn.be/stops/304425"], ["https://data.delijn.be/stops/200202", "https://data.delijn.be/stops/201624"], ["https://data.delijn.be/stops/503532", "https://data.delijn.be/stops/504767"], ["https://data.delijn.be/stops/403360", "https://data.delijn.be/stops/405139"], ["https://data.delijn.be/stops/304544", "https://data.delijn.be/stops/304665"], ["https://data.delijn.be/stops/504137", "https://data.delijn.be/stops/509146"], ["https://data.delijn.be/stops/302359", "https://data.delijn.be/stops/302363"], ["https://data.delijn.be/stops/204641", "https://data.delijn.be/stops/204731"], ["https://data.delijn.be/stops/503155", "https://data.delijn.be/stops/503400"], ["https://data.delijn.be/stops/507101", "https://data.delijn.be/stops/507120"], ["https://data.delijn.be/stops/208061", "https://data.delijn.be/stops/208631"], ["https://data.delijn.be/stops/502219", "https://data.delijn.be/stops/505591"], ["https://data.delijn.be/stops/207754", "https://data.delijn.be/stops/207797"], ["https://data.delijn.be/stops/410344", "https://data.delijn.be/stops/410345"], ["https://data.delijn.be/stops/504587", "https://data.delijn.be/stops/505538"], ["https://data.delijn.be/stops/403791", "https://data.delijn.be/stops/403877"], ["https://data.delijn.be/stops/201874", "https://data.delijn.be/stops/201875"], ["https://data.delijn.be/stops/105687", "https://data.delijn.be/stops/105688"], ["https://data.delijn.be/stops/408656", "https://data.delijn.be/stops/408657"], ["https://data.delijn.be/stops/103069", "https://data.delijn.be/stops/109810"], ["https://data.delijn.be/stops/404437", "https://data.delijn.be/stops/404472"], ["https://data.delijn.be/stops/402236", "https://data.delijn.be/stops/402295"], ["https://data.delijn.be/stops/308812", "https://data.delijn.be/stops/308813"], ["https://data.delijn.be/stops/200435", "https://data.delijn.be/stops/201434"], ["https://data.delijn.be/stops/104046", "https://data.delijn.be/stops/306588"], ["https://data.delijn.be/stops/502714", "https://data.delijn.be/stops/504882"], ["https://data.delijn.be/stops/108141", "https://data.delijn.be/stops/108143"], ["https://data.delijn.be/stops/204452", "https://data.delijn.be/stops/205343"], ["https://data.delijn.be/stops/203883", "https://data.delijn.be/stops/203887"], ["https://data.delijn.be/stops/502059", "https://data.delijn.be/stops/507059"], ["https://data.delijn.be/stops/509076", "https://data.delijn.be/stops/509329"], ["https://data.delijn.be/stops/407088", "https://data.delijn.be/stops/407262"], ["https://data.delijn.be/stops/402118", "https://data.delijn.be/stops/402119"], ["https://data.delijn.be/stops/101411", "https://data.delijn.be/stops/106924"], ["https://data.delijn.be/stops/107968", "https://data.delijn.be/stops/108433"], ["https://data.delijn.be/stops/208111", "https://data.delijn.be/stops/209114"], ["https://data.delijn.be/stops/400727", "https://data.delijn.be/stops/400728"], ["https://data.delijn.be/stops/408800", "https://data.delijn.be/stops/408830"], ["https://data.delijn.be/stops/304144", "https://data.delijn.be/stops/304145"], ["https://data.delijn.be/stops/204974", "https://data.delijn.be/stops/208854"], ["https://data.delijn.be/stops/303732", "https://data.delijn.be/stops/303733"], ["https://data.delijn.be/stops/205606", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/408073", "https://data.delijn.be/stops/410128"], ["https://data.delijn.be/stops/300831", "https://data.delijn.be/stops/306969"], ["https://data.delijn.be/stops/300326", "https://data.delijn.be/stops/304459"], ["https://data.delijn.be/stops/200495", "https://data.delijn.be/stops/211124"], ["https://data.delijn.be/stops/502429", "https://data.delijn.be/stops/507425"], ["https://data.delijn.be/stops/409081", "https://data.delijn.be/stops/409122"], ["https://data.delijn.be/stops/209585", "https://data.delijn.be/stops/209676"], ["https://data.delijn.be/stops/409763", "https://data.delijn.be/stops/409770"], ["https://data.delijn.be/stops/204391", "https://data.delijn.be/stops/205391"], ["https://data.delijn.be/stops/503086", "https://data.delijn.be/stops/505387"], ["https://data.delijn.be/stops/501054", "https://data.delijn.be/stops/506054"], ["https://data.delijn.be/stops/408137", "https://data.delijn.be/stops/408140"], ["https://data.delijn.be/stops/509044", "https://data.delijn.be/stops/509047"], ["https://data.delijn.be/stops/408303", "https://data.delijn.be/stops/408354"], ["https://data.delijn.be/stops/407127", "https://data.delijn.be/stops/407130"], ["https://data.delijn.be/stops/304015", "https://data.delijn.be/stops/304050"], ["https://data.delijn.be/stops/502796", "https://data.delijn.be/stops/508343"], ["https://data.delijn.be/stops/404747", "https://data.delijn.be/stops/404749"], ["https://data.delijn.be/stops/201357", "https://data.delijn.be/stops/201842"], ["https://data.delijn.be/stops/107148", "https://data.delijn.be/stops/109381"], ["https://data.delijn.be/stops/400747", "https://data.delijn.be/stops/409598"], ["https://data.delijn.be/stops/506363", "https://data.delijn.be/stops/506367"], ["https://data.delijn.be/stops/508825", "https://data.delijn.be/stops/508828"], ["https://data.delijn.be/stops/104036", "https://data.delijn.be/stops/108087"], ["https://data.delijn.be/stops/503146", "https://data.delijn.be/stops/505408"], ["https://data.delijn.be/stops/304069", "https://data.delijn.be/stops/304113"], ["https://data.delijn.be/stops/504062", "https://data.delijn.be/stops/509061"], ["https://data.delijn.be/stops/405323", "https://data.delijn.be/stops/405326"], ["https://data.delijn.be/stops/102013", "https://data.delijn.be/stops/107878"], ["https://data.delijn.be/stops/504400", "https://data.delijn.be/stops/504423"], ["https://data.delijn.be/stops/403296", "https://data.delijn.be/stops/410322"], ["https://data.delijn.be/stops/501084", "https://data.delijn.be/stops/505712"], ["https://data.delijn.be/stops/505562", "https://data.delijn.be/stops/508958"], ["https://data.delijn.be/stops/101849", "https://data.delijn.be/stops/106848"], ["https://data.delijn.be/stops/208619", "https://data.delijn.be/stops/209700"], ["https://data.delijn.be/stops/408012", "https://data.delijn.be/stops/408013"], ["https://data.delijn.be/stops/306948", "https://data.delijn.be/stops/306956"], ["https://data.delijn.be/stops/300087", "https://data.delijn.be/stops/300099"], ["https://data.delijn.be/stops/301603", "https://data.delijn.be/stops/301654"], ["https://data.delijn.be/stops/305455", "https://data.delijn.be/stops/308034"], ["https://data.delijn.be/stops/105356", "https://data.delijn.be/stops/109122"], ["https://data.delijn.be/stops/206246", "https://data.delijn.be/stops/206404"], ["https://data.delijn.be/stops/302940", "https://data.delijn.be/stops/303002"], ["https://data.delijn.be/stops/209733", "https://data.delijn.be/stops/209847"], ["https://data.delijn.be/stops/502382", "https://data.delijn.be/stops/507387"], ["https://data.delijn.be/stops/300276", "https://data.delijn.be/stops/301318"], ["https://data.delijn.be/stops/400221", "https://data.delijn.be/stops/400230"], ["https://data.delijn.be/stops/204436", "https://data.delijn.be/stops/205437"], ["https://data.delijn.be/stops/303483", "https://data.delijn.be/stops/303484"], ["https://data.delijn.be/stops/210067", "https://data.delijn.be/stops/505753"], ["https://data.delijn.be/stops/108793", "https://data.delijn.be/stops/109556"], ["https://data.delijn.be/stops/404152", "https://data.delijn.be/stops/404153"], ["https://data.delijn.be/stops/207113", "https://data.delijn.be/stops/207114"], ["https://data.delijn.be/stops/109268", "https://data.delijn.be/stops/109269"], ["https://data.delijn.be/stops/400051", "https://data.delijn.be/stops/409143"], ["https://data.delijn.be/stops/305147", "https://data.delijn.be/stops/305187"], ["https://data.delijn.be/stops/206209", "https://data.delijn.be/stops/207819"], ["https://data.delijn.be/stops/504830", "https://data.delijn.be/stops/508180"], ["https://data.delijn.be/stops/200396", "https://data.delijn.be/stops/201570"], ["https://data.delijn.be/stops/304930", "https://data.delijn.be/stops/305225"], ["https://data.delijn.be/stops/504419", "https://data.delijn.be/stops/504696"], ["https://data.delijn.be/stops/102210", "https://data.delijn.be/stops/108085"], ["https://data.delijn.be/stops/502663", "https://data.delijn.be/stops/507663"], ["https://data.delijn.be/stops/206780", "https://data.delijn.be/stops/209242"], ["https://data.delijn.be/stops/206800", "https://data.delijn.be/stops/307590"], ["https://data.delijn.be/stops/400990", "https://data.delijn.be/stops/409059"], ["https://data.delijn.be/stops/504534", "https://data.delijn.be/stops/509377"], ["https://data.delijn.be/stops/207666", "https://data.delijn.be/stops/208055"], ["https://data.delijn.be/stops/504801", "https://data.delijn.be/stops/504802"], ["https://data.delijn.be/stops/502268", "https://data.delijn.be/stops/505013"], ["https://data.delijn.be/stops/404384", "https://data.delijn.be/stops/404899"], ["https://data.delijn.be/stops/400768", "https://data.delijn.be/stops/400770"], ["https://data.delijn.be/stops/105104", "https://data.delijn.be/stops/105106"], ["https://data.delijn.be/stops/301456", "https://data.delijn.be/stops/308077"], ["https://data.delijn.be/stops/509428", "https://data.delijn.be/stops/509719"], ["https://data.delijn.be/stops/505591", "https://data.delijn.be/stops/507492"], ["https://data.delijn.be/stops/202115", "https://data.delijn.be/stops/202185"], ["https://data.delijn.be/stops/200526", "https://data.delijn.be/stops/201679"], ["https://data.delijn.be/stops/504176", "https://data.delijn.be/stops/509176"], ["https://data.delijn.be/stops/502920", "https://data.delijn.be/stops/507351"], ["https://data.delijn.be/stops/109014", "https://data.delijn.be/stops/404046"], ["https://data.delijn.be/stops/206299", "https://data.delijn.be/stops/207473"], ["https://data.delijn.be/stops/303023", "https://data.delijn.be/stops/307726"], ["https://data.delijn.be/stops/507489", "https://data.delijn.be/stops/507714"], ["https://data.delijn.be/stops/407352", "https://data.delijn.be/stops/407481"], ["https://data.delijn.be/stops/408604", "https://data.delijn.be/stops/408605"], ["https://data.delijn.be/stops/505690", "https://data.delijn.be/stops/507062"], ["https://data.delijn.be/stops/207626", "https://data.delijn.be/stops/207628"], ["https://data.delijn.be/stops/102223", "https://data.delijn.be/stops/105543"], ["https://data.delijn.be/stops/302222", "https://data.delijn.be/stops/302246"], ["https://data.delijn.be/stops/409085", "https://data.delijn.be/stops/409139"], ["https://data.delijn.be/stops/304953", "https://data.delijn.be/stops/304954"], ["https://data.delijn.be/stops/108039", "https://data.delijn.be/stops/108041"], ["https://data.delijn.be/stops/107501", "https://data.delijn.be/stops/107502"], ["https://data.delijn.be/stops/308751", "https://data.delijn.be/stops/308752"], ["https://data.delijn.be/stops/403407", "https://data.delijn.be/stops/403443"], ["https://data.delijn.be/stops/403059", "https://data.delijn.be/stops/403396"], ["https://data.delijn.be/stops/400050", "https://data.delijn.be/stops/400093"], ["https://data.delijn.be/stops/405505", "https://data.delijn.be/stops/407725"], ["https://data.delijn.be/stops/106397", "https://data.delijn.be/stops/106581"], ["https://data.delijn.be/stops/403598", "https://data.delijn.be/stops/403616"], ["https://data.delijn.be/stops/106191", "https://data.delijn.be/stops/107440"], ["https://data.delijn.be/stops/103677", "https://data.delijn.be/stops/103732"], ["https://data.delijn.be/stops/105033", "https://data.delijn.be/stops/106716"], ["https://data.delijn.be/stops/208958", "https://data.delijn.be/stops/209957"], ["https://data.delijn.be/stops/401672", "https://data.delijn.be/stops/401673"], ["https://data.delijn.be/stops/201047", "https://data.delijn.be/stops/201958"], ["https://data.delijn.be/stops/303274", "https://data.delijn.be/stops/303275"], ["https://data.delijn.be/stops/509038", "https://data.delijn.be/stops/509039"], ["https://data.delijn.be/stops/402692", "https://data.delijn.be/stops/402694"], ["https://data.delijn.be/stops/405769", "https://data.delijn.be/stops/307375"], ["https://data.delijn.be/stops/201885", "https://data.delijn.be/stops/201955"], ["https://data.delijn.be/stops/102384", "https://data.delijn.be/stops/109131"], ["https://data.delijn.be/stops/101834", "https://data.delijn.be/stops/107034"], ["https://data.delijn.be/stops/307833", "https://data.delijn.be/stops/308277"], ["https://data.delijn.be/stops/202420", "https://data.delijn.be/stops/203419"], ["https://data.delijn.be/stops/400329", "https://data.delijn.be/stops/406769"], ["https://data.delijn.be/stops/300906", "https://data.delijn.be/stops/301107"], ["https://data.delijn.be/stops/105966", "https://data.delijn.be/stops/108940"], ["https://data.delijn.be/stops/405247", "https://data.delijn.be/stops/405254"], ["https://data.delijn.be/stops/502220", "https://data.delijn.be/stops/509796"], ["https://data.delijn.be/stops/506411", "https://data.delijn.be/stops/506417"], ["https://data.delijn.be/stops/502174", "https://data.delijn.be/stops/502177"], ["https://data.delijn.be/stops/304867", "https://data.delijn.be/stops/304869"], ["https://data.delijn.be/stops/406291", "https://data.delijn.be/stops/406417"], ["https://data.delijn.be/stops/102937", "https://data.delijn.be/stops/102987"], ["https://data.delijn.be/stops/301741", "https://data.delijn.be/stops/305875"], ["https://data.delijn.be/stops/308513", "https://data.delijn.be/stops/308691"], ["https://data.delijn.be/stops/302863", "https://data.delijn.be/stops/302864"], ["https://data.delijn.be/stops/404225", "https://data.delijn.be/stops/404236"], ["https://data.delijn.be/stops/300615", "https://data.delijn.be/stops/303242"], ["https://data.delijn.be/stops/400922", "https://data.delijn.be/stops/400923"], ["https://data.delijn.be/stops/306717", "https://data.delijn.be/stops/306718"], ["https://data.delijn.be/stops/301026", "https://data.delijn.be/stops/301027"], ["https://data.delijn.be/stops/400734", "https://data.delijn.be/stops/400735"], ["https://data.delijn.be/stops/508338", "https://data.delijn.be/stops/590010"], ["https://data.delijn.be/stops/501420", "https://data.delijn.be/stops/506420"], ["https://data.delijn.be/stops/502126", "https://data.delijn.be/stops/507126"], ["https://data.delijn.be/stops/200982", "https://data.delijn.be/stops/201982"], ["https://data.delijn.be/stops/304986", "https://data.delijn.be/stops/308020"], ["https://data.delijn.be/stops/301852", "https://data.delijn.be/stops/302550"], ["https://data.delijn.be/stops/206632", "https://data.delijn.be/stops/207302"], ["https://data.delijn.be/stops/200766", "https://data.delijn.be/stops/209319"], ["https://data.delijn.be/stops/102656", "https://data.delijn.be/stops/107923"], ["https://data.delijn.be/stops/302502", "https://data.delijn.be/stops/302718"], ["https://data.delijn.be/stops/106023", "https://data.delijn.be/stops/106026"], ["https://data.delijn.be/stops/205191", "https://data.delijn.be/stops/205204"], ["https://data.delijn.be/stops/101515", "https://data.delijn.be/stops/104494"], ["https://data.delijn.be/stops/504770", "https://data.delijn.be/stops/508152"], ["https://data.delijn.be/stops/400489", "https://data.delijn.be/stops/400949"], ["https://data.delijn.be/stops/307145", "https://data.delijn.be/stops/307147"], ["https://data.delijn.be/stops/405864", "https://data.delijn.be/stops/405865"], ["https://data.delijn.be/stops/402235", "https://data.delijn.be/stops/402481"], ["https://data.delijn.be/stops/201720", "https://data.delijn.be/stops/210104"], ["https://data.delijn.be/stops/400677", "https://data.delijn.be/stops/410022"], ["https://data.delijn.be/stops/404110", "https://data.delijn.be/stops/409257"], ["https://data.delijn.be/stops/401130", "https://data.delijn.be/stops/406549"], ["https://data.delijn.be/stops/304826", "https://data.delijn.be/stops/304879"], ["https://data.delijn.be/stops/301506", "https://data.delijn.be/stops/301509"], ["https://data.delijn.be/stops/109456", "https://data.delijn.be/stops/109458"], ["https://data.delijn.be/stops/504157", "https://data.delijn.be/stops/504474"], ["https://data.delijn.be/stops/206706", "https://data.delijn.be/stops/206711"], ["https://data.delijn.be/stops/306709", "https://data.delijn.be/stops/306713"], ["https://data.delijn.be/stops/304732", "https://data.delijn.be/stops/304754"], ["https://data.delijn.be/stops/303728", "https://data.delijn.be/stops/303739"], ["https://data.delijn.be/stops/200014", "https://data.delijn.be/stops/201012"], ["https://data.delijn.be/stops/108328", "https://data.delijn.be/stops/108331"], ["https://data.delijn.be/stops/201472", "https://data.delijn.be/stops/201473"], ["https://data.delijn.be/stops/206736", "https://data.delijn.be/stops/206985"], ["https://data.delijn.be/stops/103616", "https://data.delijn.be/stops/103618"], ["https://data.delijn.be/stops/206829", "https://data.delijn.be/stops/207252"], ["https://data.delijn.be/stops/214018", "https://data.delijn.be/stops/215018"], ["https://data.delijn.be/stops/406278", "https://data.delijn.be/stops/407582"], ["https://data.delijn.be/stops/305195", "https://data.delijn.be/stops/305201"], ["https://data.delijn.be/stops/404213", "https://data.delijn.be/stops/409789"], ["https://data.delijn.be/stops/206780", "https://data.delijn.be/stops/209564"], ["https://data.delijn.be/stops/502132", "https://data.delijn.be/stops/507145"], ["https://data.delijn.be/stops/401136", "https://data.delijn.be/stops/403751"], ["https://data.delijn.be/stops/109895", "https://data.delijn.be/stops/109946"], ["https://data.delijn.be/stops/502079", "https://data.delijn.be/stops/507079"], ["https://data.delijn.be/stops/503840", "https://data.delijn.be/stops/508840"], ["https://data.delijn.be/stops/408824", "https://data.delijn.be/stops/408828"], ["https://data.delijn.be/stops/206618", "https://data.delijn.be/stops/207619"], ["https://data.delijn.be/stops/304304", "https://data.delijn.be/stops/306882"], ["https://data.delijn.be/stops/203651", "https://data.delijn.be/stops/203652"], ["https://data.delijn.be/stops/207108", "https://data.delijn.be/stops/207931"], ["https://data.delijn.be/stops/303157", "https://data.delijn.be/stops/308661"], ["https://data.delijn.be/stops/302126", "https://data.delijn.be/stops/302127"], ["https://data.delijn.be/stops/102421", "https://data.delijn.be/stops/106261"], ["https://data.delijn.be/stops/301606", "https://data.delijn.be/stops/307674"], ["https://data.delijn.be/stops/104035", "https://data.delijn.be/stops/105750"], ["https://data.delijn.be/stops/407712", "https://data.delijn.be/stops/407713"], ["https://data.delijn.be/stops/406609", "https://data.delijn.be/stops/406611"], ["https://data.delijn.be/stops/501144", "https://data.delijn.be/stops/507512"], ["https://data.delijn.be/stops/201693", "https://data.delijn.be/stops/203979"], ["https://data.delijn.be/stops/300950", "https://data.delijn.be/stops/300954"], ["https://data.delijn.be/stops/502376", "https://data.delijn.be/stops/507372"], ["https://data.delijn.be/stops/504096", "https://data.delijn.be/stops/505198"], ["https://data.delijn.be/stops/208184", "https://data.delijn.be/stops/209185"], ["https://data.delijn.be/stops/305283", "https://data.delijn.be/stops/305287"], ["https://data.delijn.be/stops/407746", "https://data.delijn.be/stops/407754"], ["https://data.delijn.be/stops/103732", "https://data.delijn.be/stops/109896"], ["https://data.delijn.be/stops/400570", "https://data.delijn.be/stops/400571"], ["https://data.delijn.be/stops/401062", "https://data.delijn.be/stops/408653"], ["https://data.delijn.be/stops/501635", "https://data.delijn.be/stops/501738"], ["https://data.delijn.be/stops/206653", "https://data.delijn.be/stops/206654"], ["https://data.delijn.be/stops/407014", "https://data.delijn.be/stops/407019"], ["https://data.delijn.be/stops/205264", "https://data.delijn.be/stops/205489"], ["https://data.delijn.be/stops/507422", "https://data.delijn.be/stops/507750"], ["https://data.delijn.be/stops/303474", "https://data.delijn.be/stops/307069"], ["https://data.delijn.be/stops/204368", "https://data.delijn.be/stops/205181"], ["https://data.delijn.be/stops/306897", "https://data.delijn.be/stops/306898"], ["https://data.delijn.be/stops/200205", "https://data.delijn.be/stops/200242"], ["https://data.delijn.be/stops/101494", "https://data.delijn.be/stops/101497"], ["https://data.delijn.be/stops/303060", "https://data.delijn.be/stops/303061"], ["https://data.delijn.be/stops/503362", "https://data.delijn.be/stops/508404"], ["https://data.delijn.be/stops/300078", "https://data.delijn.be/stops/306784"], ["https://data.delijn.be/stops/201406", "https://data.delijn.be/stops/201509"], ["https://data.delijn.be/stops/103299", "https://data.delijn.be/stops/108615"], ["https://data.delijn.be/stops/107010", "https://data.delijn.be/stops/108955"], ["https://data.delijn.be/stops/303613", "https://data.delijn.be/stops/307195"], ["https://data.delijn.be/stops/505566", "https://data.delijn.be/stops/508751"], ["https://data.delijn.be/stops/401782", "https://data.delijn.be/stops/406268"], ["https://data.delijn.be/stops/401757", "https://data.delijn.be/stops/406349"], ["https://data.delijn.be/stops/308273", "https://data.delijn.be/stops/308274"], ["https://data.delijn.be/stops/101473", "https://data.delijn.be/stops/103094"], ["https://data.delijn.be/stops/103145", "https://data.delijn.be/stops/109443"], ["https://data.delijn.be/stops/408566", "https://data.delijn.be/stops/408614"], ["https://data.delijn.be/stops/305036", "https://data.delijn.be/stops/305038"], ["https://data.delijn.be/stops/202040", "https://data.delijn.be/stops/203041"], ["https://data.delijn.be/stops/302937", "https://data.delijn.be/stops/303085"], ["https://data.delijn.be/stops/503469", "https://data.delijn.be/stops/508412"], ["https://data.delijn.be/stops/101643", "https://data.delijn.be/stops/105836"], ["https://data.delijn.be/stops/306835", "https://data.delijn.be/stops/307734"], ["https://data.delijn.be/stops/405962", "https://data.delijn.be/stops/405972"], ["https://data.delijn.be/stops/505724", "https://data.delijn.be/stops/505725"], ["https://data.delijn.be/stops/209342", "https://data.delijn.be/stops/209343"], ["https://data.delijn.be/stops/408019", "https://data.delijn.be/stops/408043"], ["https://data.delijn.be/stops/206429", "https://data.delijn.be/stops/207430"], ["https://data.delijn.be/stops/504726", "https://data.delijn.be/stops/505342"], ["https://data.delijn.be/stops/208603", "https://data.delijn.be/stops/209603"], ["https://data.delijn.be/stops/407335", "https://data.delijn.be/stops/409490"], ["https://data.delijn.be/stops/202289", "https://data.delijn.be/stops/203334"], ["https://data.delijn.be/stops/206889", "https://data.delijn.be/stops/207806"], ["https://data.delijn.be/stops/503974", "https://data.delijn.be/stops/508095"], ["https://data.delijn.be/stops/305021", "https://data.delijn.be/stops/305034"], ["https://data.delijn.be/stops/205403", "https://data.delijn.be/stops/205404"], ["https://data.delijn.be/stops/207715", "https://data.delijn.be/stops/207873"], ["https://data.delijn.be/stops/504444", "https://data.delijn.be/stops/509445"], ["https://data.delijn.be/stops/502219", "https://data.delijn.be/stops/507215"], ["https://data.delijn.be/stops/407035", "https://data.delijn.be/stops/407038"], ["https://data.delijn.be/stops/505287", "https://data.delijn.be/stops/508328"], ["https://data.delijn.be/stops/503848", "https://data.delijn.be/stops/505972"], ["https://data.delijn.be/stops/204157", "https://data.delijn.be/stops/214007"], ["https://data.delijn.be/stops/108389", "https://data.delijn.be/stops/108392"], ["https://data.delijn.be/stops/208666", "https://data.delijn.be/stops/209127"], ["https://data.delijn.be/stops/502670", "https://data.delijn.be/stops/502766"], ["https://data.delijn.be/stops/203743", "https://data.delijn.be/stops/203812"], ["https://data.delijn.be/stops/202270", "https://data.delijn.be/stops/203090"], ["https://data.delijn.be/stops/406169", "https://data.delijn.be/stops/406281"], ["https://data.delijn.be/stops/407702", "https://data.delijn.be/stops/407719"], ["https://data.delijn.be/stops/409520", "https://data.delijn.be/stops/409521"], ["https://data.delijn.be/stops/509585", "https://data.delijn.be/stops/509587"], ["https://data.delijn.be/stops/405333", "https://data.delijn.be/stops/405349"], ["https://data.delijn.be/stops/507035", "https://data.delijn.be/stops/507105"], ["https://data.delijn.be/stops/505999", "https://data.delijn.be/stops/508308"], ["https://data.delijn.be/stops/406555", "https://data.delijn.be/stops/406561"], ["https://data.delijn.be/stops/101497", "https://data.delijn.be/stops/102722"], ["https://data.delijn.be/stops/402702", "https://data.delijn.be/stops/306035"], ["https://data.delijn.be/stops/300269", "https://data.delijn.be/stops/306825"], ["https://data.delijn.be/stops/205596", "https://data.delijn.be/stops/205761"], ["https://data.delijn.be/stops/404146", "https://data.delijn.be/stops/404156"], ["https://data.delijn.be/stops/208204", "https://data.delijn.be/stops/209203"], ["https://data.delijn.be/stops/204338", "https://data.delijn.be/stops/205301"], ["https://data.delijn.be/stops/503404", "https://data.delijn.be/stops/503535"], ["https://data.delijn.be/stops/206851", "https://data.delijn.be/stops/207851"], ["https://data.delijn.be/stops/502418", "https://data.delijn.be/stops/507417"], ["https://data.delijn.be/stops/507073", "https://data.delijn.be/stops/507560"], ["https://data.delijn.be/stops/301952", "https://data.delijn.be/stops/303283"], ["https://data.delijn.be/stops/107664", "https://data.delijn.be/stops/107697"], ["https://data.delijn.be/stops/102393", "https://data.delijn.be/stops/107111"], ["https://data.delijn.be/stops/402171", "https://data.delijn.be/stops/402225"], ["https://data.delijn.be/stops/101188", "https://data.delijn.be/stops/102597"], ["https://data.delijn.be/stops/300438", "https://data.delijn.be/stops/302701"], ["https://data.delijn.be/stops/502301", "https://data.delijn.be/stops/505681"], ["https://data.delijn.be/stops/401835", "https://data.delijn.be/stops/401839"], ["https://data.delijn.be/stops/201071", "https://data.delijn.be/stops/202352"], ["https://data.delijn.be/stops/109302", "https://data.delijn.be/stops/109303"], ["https://data.delijn.be/stops/105327", "https://data.delijn.be/stops/105329"], ["https://data.delijn.be/stops/504361", "https://data.delijn.be/stops/509361"], ["https://data.delijn.be/stops/406416", "https://data.delijn.be/stops/406518"], ["https://data.delijn.be/stops/302626", "https://data.delijn.be/stops/302631"], ["https://data.delijn.be/stops/501010", "https://data.delijn.be/stops/502410"], ["https://data.delijn.be/stops/208782", "https://data.delijn.be/stops/208788"], ["https://data.delijn.be/stops/207789", "https://data.delijn.be/stops/209820"], ["https://data.delijn.be/stops/200886", "https://data.delijn.be/stops/203301"], ["https://data.delijn.be/stops/203343", "https://data.delijn.be/stops/203951"], ["https://data.delijn.be/stops/207776", "https://data.delijn.be/stops/207777"], ["https://data.delijn.be/stops/300633", "https://data.delijn.be/stops/305452"], ["https://data.delijn.be/stops/206379", "https://data.delijn.be/stops/207379"], ["https://data.delijn.be/stops/202573", "https://data.delijn.be/stops/203574"], ["https://data.delijn.be/stops/301662", "https://data.delijn.be/stops/302128"], ["https://data.delijn.be/stops/201665", "https://data.delijn.be/stops/202213"], ["https://data.delijn.be/stops/301901", "https://data.delijn.be/stops/308657"], ["https://data.delijn.be/stops/401066", "https://data.delijn.be/stops/406574"], ["https://data.delijn.be/stops/405408", "https://data.delijn.be/stops/306781"], ["https://data.delijn.be/stops/505644", "https://data.delijn.be/stops/508898"], ["https://data.delijn.be/stops/208344", "https://data.delijn.be/stops/209344"], ["https://data.delijn.be/stops/105476", "https://data.delijn.be/stops/105683"], ["https://data.delijn.be/stops/108338", "https://data.delijn.be/stops/108339"], ["https://data.delijn.be/stops/503945", "https://data.delijn.be/stops/508174"], ["https://data.delijn.be/stops/501450", "https://data.delijn.be/stops/501451"], ["https://data.delijn.be/stops/105871", "https://data.delijn.be/stops/105886"], ["https://data.delijn.be/stops/400299", "https://data.delijn.be/stops/400331"], ["https://data.delijn.be/stops/505148", "https://data.delijn.be/stops/505327"], ["https://data.delijn.be/stops/405060", "https://data.delijn.be/stops/405067"], ["https://data.delijn.be/stops/402362", "https://data.delijn.be/stops/402363"], ["https://data.delijn.be/stops/107045", "https://data.delijn.be/stops/108240"], ["https://data.delijn.be/stops/206127", "https://data.delijn.be/stops/207085"], ["https://data.delijn.be/stops/104099", "https://data.delijn.be/stops/107230"], ["https://data.delijn.be/stops/408425", "https://data.delijn.be/stops/408427"], ["https://data.delijn.be/stops/402894", "https://data.delijn.be/stops/402895"], ["https://data.delijn.be/stops/206093", "https://data.delijn.be/stops/207091"], ["https://data.delijn.be/stops/502553", "https://data.delijn.be/stops/502559"], ["https://data.delijn.be/stops/404601", "https://data.delijn.be/stops/406920"], ["https://data.delijn.be/stops/206018", "https://data.delijn.be/stops/206107"], ["https://data.delijn.be/stops/300906", "https://data.delijn.be/stops/300907"], ["https://data.delijn.be/stops/400769", "https://data.delijn.be/stops/400770"], ["https://data.delijn.be/stops/308749", "https://data.delijn.be/stops/308752"], ["https://data.delijn.be/stops/301854", "https://data.delijn.be/stops/302102"], ["https://data.delijn.be/stops/401423", "https://data.delijn.be/stops/401598"], ["https://data.delijn.be/stops/201333", "https://data.delijn.be/stops/210084"], ["https://data.delijn.be/stops/503234", "https://data.delijn.be/stops/509762"], ["https://data.delijn.be/stops/405698", "https://data.delijn.be/stops/405699"], ["https://data.delijn.be/stops/504480", "https://data.delijn.be/stops/509482"], ["https://data.delijn.be/stops/105546", "https://data.delijn.be/stops/105547"], ["https://data.delijn.be/stops/201712", "https://data.delijn.be/stops/201713"], ["https://data.delijn.be/stops/502490", "https://data.delijn.be/stops/507919"], ["https://data.delijn.be/stops/504030", "https://data.delijn.be/stops/504032"], ["https://data.delijn.be/stops/304549", "https://data.delijn.be/stops/304698"], ["https://data.delijn.be/stops/404338", "https://data.delijn.be/stops/404345"], ["https://data.delijn.be/stops/504091", "https://data.delijn.be/stops/509091"], ["https://data.delijn.be/stops/404494", "https://data.delijn.be/stops/404551"], ["https://data.delijn.be/stops/406542", "https://data.delijn.be/stops/407478"], ["https://data.delijn.be/stops/102760", "https://data.delijn.be/stops/102812"], ["https://data.delijn.be/stops/107976", "https://data.delijn.be/stops/306761"], ["https://data.delijn.be/stops/503638", "https://data.delijn.be/stops/508313"], ["https://data.delijn.be/stops/503563", "https://data.delijn.be/stops/508552"], ["https://data.delijn.be/stops/403796", "https://data.delijn.be/stops/408745"], ["https://data.delijn.be/stops/106895", "https://data.delijn.be/stops/109884"], ["https://data.delijn.be/stops/504049", "https://data.delijn.be/stops/505368"], ["https://data.delijn.be/stops/302104", "https://data.delijn.be/stops/303516"], ["https://data.delijn.be/stops/200887", "https://data.delijn.be/stops/203057"], ["https://data.delijn.be/stops/504427", "https://data.delijn.be/stops/505166"], ["https://data.delijn.be/stops/506206", "https://data.delijn.be/stops/506374"], ["https://data.delijn.be/stops/407913", "https://data.delijn.be/stops/408032"], ["https://data.delijn.be/stops/206366", "https://data.delijn.be/stops/207339"], ["https://data.delijn.be/stops/200870", "https://data.delijn.be/stops/200895"], ["https://data.delijn.be/stops/400764", "https://data.delijn.be/stops/409638"], ["https://data.delijn.be/stops/101016", "https://data.delijn.be/stops/108360"], ["https://data.delijn.be/stops/303587", "https://data.delijn.be/stops/308709"], ["https://data.delijn.be/stops/508075", "https://data.delijn.be/stops/508945"], ["https://data.delijn.be/stops/201696", "https://data.delijn.be/stops/201697"], ["https://data.delijn.be/stops/206936", "https://data.delijn.be/stops/207750"], ["https://data.delijn.be/stops/400094", "https://data.delijn.be/stops/401971"], ["https://data.delijn.be/stops/502311", "https://data.delijn.be/stops/507310"], ["https://data.delijn.be/stops/101511", "https://data.delijn.be/stops/101512"], ["https://data.delijn.be/stops/208583", "https://data.delijn.be/stops/208584"], ["https://data.delijn.be/stops/405312", "https://data.delijn.be/stops/302825"], ["https://data.delijn.be/stops/403246", "https://data.delijn.be/stops/403529"], ["https://data.delijn.be/stops/201767", "https://data.delijn.be/stops/201805"], ["https://data.delijn.be/stops/502083", "https://data.delijn.be/stops/502767"], ["https://data.delijn.be/stops/300260", "https://data.delijn.be/stops/307112"], ["https://data.delijn.be/stops/200940", "https://data.delijn.be/stops/211709"], ["https://data.delijn.be/stops/301402", "https://data.delijn.be/stops/306311"], ["https://data.delijn.be/stops/202377", "https://data.delijn.be/stops/203377"], ["https://data.delijn.be/stops/108173", "https://data.delijn.be/stops/108176"], ["https://data.delijn.be/stops/106087", "https://data.delijn.be/stops/106089"], ["https://data.delijn.be/stops/503195", "https://data.delijn.be/stops/508092"], ["https://data.delijn.be/stops/206844", "https://data.delijn.be/stops/303240"], ["https://data.delijn.be/stops/204449", "https://data.delijn.be/stops/205303"], ["https://data.delijn.be/stops/506387", "https://data.delijn.be/stops/506389"], ["https://data.delijn.be/stops/108878", "https://data.delijn.be/stops/108880"], ["https://data.delijn.be/stops/503303", "https://data.delijn.be/stops/508315"], ["https://data.delijn.be/stops/505747", "https://data.delijn.be/stops/507293"], ["https://data.delijn.be/stops/403398", "https://data.delijn.be/stops/403399"], ["https://data.delijn.be/stops/209170", "https://data.delijn.be/stops/209171"], ["https://data.delijn.be/stops/501532", "https://data.delijn.be/stops/509896"], ["https://data.delijn.be/stops/407032", "https://data.delijn.be/stops/407041"], ["https://data.delijn.be/stops/200630", "https://data.delijn.be/stops/203935"], ["https://data.delijn.be/stops/406576", "https://data.delijn.be/stops/407183"], ["https://data.delijn.be/stops/502547", "https://data.delijn.be/stops/505087"], ["https://data.delijn.be/stops/400650", "https://data.delijn.be/stops/400651"], ["https://data.delijn.be/stops/206996", "https://data.delijn.be/stops/207254"], ["https://data.delijn.be/stops/304857", "https://data.delijn.be/stops/304884"], ["https://data.delijn.be/stops/101645", "https://data.delijn.be/stops/105725"], ["https://data.delijn.be/stops/300622", "https://data.delijn.be/stops/303523"], ["https://data.delijn.be/stops/105392", "https://data.delijn.be/stops/105393"], ["https://data.delijn.be/stops/410216", "https://data.delijn.be/stops/410217"], ["https://data.delijn.be/stops/200367", "https://data.delijn.be/stops/201900"], ["https://data.delijn.be/stops/504100", "https://data.delijn.be/stops/504102"], ["https://data.delijn.be/stops/303238", "https://data.delijn.be/stops/307983"], ["https://data.delijn.be/stops/405339", "https://data.delijn.be/stops/306922"], ["https://data.delijn.be/stops/403850", "https://data.delijn.be/stops/410109"], ["https://data.delijn.be/stops/504536", "https://data.delijn.be/stops/509080"], ["https://data.delijn.be/stops/404887", "https://data.delijn.be/stops/404903"], ["https://data.delijn.be/stops/106190", "https://data.delijn.be/stops/106191"], ["https://data.delijn.be/stops/305726", "https://data.delijn.be/stops/305729"], ["https://data.delijn.be/stops/200641", "https://data.delijn.be/stops/201436"], ["https://data.delijn.be/stops/502035", "https://data.delijn.be/stops/507680"], ["https://data.delijn.be/stops/200138", "https://data.delijn.be/stops/201222"], ["https://data.delijn.be/stops/501003", "https://data.delijn.be/stops/501505"], ["https://data.delijn.be/stops/200828", "https://data.delijn.be/stops/200829"], ["https://data.delijn.be/stops/500935", "https://data.delijn.be/stops/505406"], ["https://data.delijn.be/stops/301974", "https://data.delijn.be/stops/301978"], ["https://data.delijn.be/stops/402019", "https://data.delijn.be/stops/405030"], ["https://data.delijn.be/stops/403746", "https://data.delijn.be/stops/409822"], ["https://data.delijn.be/stops/303695", "https://data.delijn.be/stops/303764"], ["https://data.delijn.be/stops/305242", "https://data.delijn.be/stops/305608"], ["https://data.delijn.be/stops/305379", "https://data.delijn.be/stops/305380"], ["https://data.delijn.be/stops/307379", "https://data.delijn.be/stops/307380"], ["https://data.delijn.be/stops/102172", "https://data.delijn.be/stops/108398"], ["https://data.delijn.be/stops/200018", "https://data.delijn.be/stops/210119"], ["https://data.delijn.be/stops/201717", "https://data.delijn.be/stops/202127"], ["https://data.delijn.be/stops/404428", "https://data.delijn.be/stops/404437"], ["https://data.delijn.be/stops/201072", "https://data.delijn.be/stops/201113"], ["https://data.delijn.be/stops/202979", "https://data.delijn.be/stops/203978"], ["https://data.delijn.be/stops/302365", "https://data.delijn.be/stops/302367"], ["https://data.delijn.be/stops/504094", "https://data.delijn.be/stops/505192"], ["https://data.delijn.be/stops/505310", "https://data.delijn.be/stops/505581"], ["https://data.delijn.be/stops/101519", "https://data.delijn.be/stops/109052"], ["https://data.delijn.be/stops/502220", "https://data.delijn.be/stops/502221"], ["https://data.delijn.be/stops/303488", "https://data.delijn.be/stops/308739"], ["https://data.delijn.be/stops/502278", "https://data.delijn.be/stops/507278"], ["https://data.delijn.be/stops/105983", "https://data.delijn.be/stops/105984"], ["https://data.delijn.be/stops/405556", "https://data.delijn.be/stops/405557"], ["https://data.delijn.be/stops/206606", "https://data.delijn.be/stops/206607"], ["https://data.delijn.be/stops/208012", "https://data.delijn.be/stops/208079"], ["https://data.delijn.be/stops/304818", "https://data.delijn.be/stops/307965"], ["https://data.delijn.be/stops/405938", "https://data.delijn.be/stops/405939"], ["https://data.delijn.be/stops/206409", "https://data.delijn.be/stops/207408"], ["https://data.delijn.be/stops/504679", "https://data.delijn.be/stops/505819"], ["https://data.delijn.be/stops/401201", "https://data.delijn.be/stops/401304"], ["https://data.delijn.be/stops/206846", "https://data.delijn.be/stops/207998"], ["https://data.delijn.be/stops/107343", "https://data.delijn.be/stops/107344"], ["https://data.delijn.be/stops/401526", "https://data.delijn.be/stops/401557"], ["https://data.delijn.be/stops/308569", "https://data.delijn.be/stops/308570"], ["https://data.delijn.be/stops/106597", "https://data.delijn.be/stops/106598"], ["https://data.delijn.be/stops/308014", "https://data.delijn.be/stops/308020"], ["https://data.delijn.be/stops/206210", "https://data.delijn.be/stops/207210"], ["https://data.delijn.be/stops/208696", "https://data.delijn.be/stops/208697"], ["https://data.delijn.be/stops/402201", "https://data.delijn.be/stops/402398"], ["https://data.delijn.be/stops/405320", "https://data.delijn.be/stops/405327"], ["https://data.delijn.be/stops/406711", "https://data.delijn.be/stops/406803"], ["https://data.delijn.be/stops/503689", "https://data.delijn.be/stops/508689"], ["https://data.delijn.be/stops/502462", "https://data.delijn.be/stops/507588"], ["https://data.delijn.be/stops/108046", "https://data.delijn.be/stops/108048"], ["https://data.delijn.be/stops/304013", "https://data.delijn.be/stops/307814"], ["https://data.delijn.be/stops/109664", "https://data.delijn.be/stops/109717"], ["https://data.delijn.be/stops/407979", "https://data.delijn.be/stops/408243"], ["https://data.delijn.be/stops/202412", "https://data.delijn.be/stops/205943"], ["https://data.delijn.be/stops/209693", "https://data.delijn.be/stops/209712"], ["https://data.delijn.be/stops/205082", "https://data.delijn.be/stops/205202"], ["https://data.delijn.be/stops/101427", "https://data.delijn.be/stops/101553"], ["https://data.delijn.be/stops/208862", "https://data.delijn.be/stops/209862"], ["https://data.delijn.be/stops/203212", "https://data.delijn.be/stops/211116"], ["https://data.delijn.be/stops/208765", "https://data.delijn.be/stops/208766"], ["https://data.delijn.be/stops/403748", "https://data.delijn.be/stops/403751"], ["https://data.delijn.be/stops/502365", "https://data.delijn.be/stops/505054"], ["https://data.delijn.be/stops/502430", "https://data.delijn.be/stops/507430"], ["https://data.delijn.be/stops/504127", "https://data.delijn.be/stops/504683"], ["https://data.delijn.be/stops/403595", "https://data.delijn.be/stops/404390"], ["https://data.delijn.be/stops/407978", "https://data.delijn.be/stops/408153"], ["https://data.delijn.be/stops/501387", "https://data.delijn.be/stops/506391"], ["https://data.delijn.be/stops/207090", "https://data.delijn.be/stops/207092"], ["https://data.delijn.be/stops/203656", "https://data.delijn.be/stops/211857"], ["https://data.delijn.be/stops/208545", "https://data.delijn.be/stops/209545"], ["https://data.delijn.be/stops/301801", "https://data.delijn.be/stops/301808"], ["https://data.delijn.be/stops/303724", "https://data.delijn.be/stops/303733"], ["https://data.delijn.be/stops/206270", "https://data.delijn.be/stops/206271"], ["https://data.delijn.be/stops/202367", "https://data.delijn.be/stops/203367"], ["https://data.delijn.be/stops/502551", "https://data.delijn.be/stops/507551"], ["https://data.delijn.be/stops/200670", "https://data.delijn.be/stops/505914"], ["https://data.delijn.be/stops/105356", "https://data.delijn.be/stops/106681"], ["https://data.delijn.be/stops/501634", "https://data.delijn.be/stops/501658"], ["https://data.delijn.be/stops/101276", "https://data.delijn.be/stops/204257"], ["https://data.delijn.be/stops/201461", "https://data.delijn.be/stops/210082"], ["https://data.delijn.be/stops/104010", "https://data.delijn.be/stops/107219"], ["https://data.delijn.be/stops/108919", "https://data.delijn.be/stops/109427"], ["https://data.delijn.be/stops/301003", "https://data.delijn.be/stops/304722"], ["https://data.delijn.be/stops/402427", "https://data.delijn.be/stops/405569"], ["https://data.delijn.be/stops/303825", "https://data.delijn.be/stops/303827"], ["https://data.delijn.be/stops/503182", "https://data.delijn.be/stops/504830"], ["https://data.delijn.be/stops/306714", "https://data.delijn.be/stops/306716"], ["https://data.delijn.be/stops/108021", "https://data.delijn.be/stops/109635"], ["https://data.delijn.be/stops/505125", "https://data.delijn.be/stops/505241"], ["https://data.delijn.be/stops/404224", "https://data.delijn.be/stops/407365"], ["https://data.delijn.be/stops/204582", "https://data.delijn.be/stops/205092"], ["https://data.delijn.be/stops/304736", "https://data.delijn.be/stops/305282"], ["https://data.delijn.be/stops/302471", "https://data.delijn.be/stops/308831"], ["https://data.delijn.be/stops/208534", "https://data.delijn.be/stops/209535"], ["https://data.delijn.be/stops/202684", "https://data.delijn.be/stops/204942"], ["https://data.delijn.be/stops/504856", "https://data.delijn.be/stops/508145"], ["https://data.delijn.be/stops/206636", "https://data.delijn.be/stops/207912"], ["https://data.delijn.be/stops/204084", "https://data.delijn.be/stops/205085"], ["https://data.delijn.be/stops/408232", "https://data.delijn.be/stops/408233"], ["https://data.delijn.be/stops/101176", "https://data.delijn.be/stops/101177"], ["https://data.delijn.be/stops/308261", "https://data.delijn.be/stops/308263"], ["https://data.delijn.be/stops/202632", "https://data.delijn.be/stops/203632"], ["https://data.delijn.be/stops/306912", "https://data.delijn.be/stops/308127"], ["https://data.delijn.be/stops/300088", "https://data.delijn.be/stops/306835"], ["https://data.delijn.be/stops/308496", "https://data.delijn.be/stops/308505"], ["https://data.delijn.be/stops/200397", "https://data.delijn.be/stops/201729"], ["https://data.delijn.be/stops/105617", "https://data.delijn.be/stops/105623"], ["https://data.delijn.be/stops/503061", "https://data.delijn.be/stops/508061"], ["https://data.delijn.be/stops/202836", "https://data.delijn.be/stops/203837"], ["https://data.delijn.be/stops/505764", "https://data.delijn.be/stops/507011"], ["https://data.delijn.be/stops/207665", "https://data.delijn.be/stops/208504"], ["https://data.delijn.be/stops/406520", "https://data.delijn.be/stops/407445"], ["https://data.delijn.be/stops/102573", "https://data.delijn.be/stops/109235"], ["https://data.delijn.be/stops/102888", "https://data.delijn.be/stops/102889"], ["https://data.delijn.be/stops/503183", "https://data.delijn.be/stops/508183"], ["https://data.delijn.be/stops/209211", "https://data.delijn.be/stops/209785"], ["https://data.delijn.be/stops/206803", "https://data.delijn.be/stops/206851"], ["https://data.delijn.be/stops/407603", "https://data.delijn.be/stops/407747"], ["https://data.delijn.be/stops/105060", "https://data.delijn.be/stops/106709"], ["https://data.delijn.be/stops/405311", "https://data.delijn.be/stops/302832"], ["https://data.delijn.be/stops/509493", "https://data.delijn.be/stops/509506"], ["https://data.delijn.be/stops/403788", "https://data.delijn.be/stops/408965"], ["https://data.delijn.be/stops/204497", "https://data.delijn.be/stops/205510"], ["https://data.delijn.be/stops/401593", "https://data.delijn.be/stops/401596"], ["https://data.delijn.be/stops/303308", "https://data.delijn.be/stops/303310"], ["https://data.delijn.be/stops/500555", "https://data.delijn.be/stops/505149"], ["https://data.delijn.be/stops/308728", "https://data.delijn.be/stops/308731"], ["https://data.delijn.be/stops/403198", "https://data.delijn.be/stops/403278"], ["https://data.delijn.be/stops/201765", "https://data.delijn.be/stops/201766"], ["https://data.delijn.be/stops/105696", "https://data.delijn.be/stops/105711"], ["https://data.delijn.be/stops/206350", "https://data.delijn.be/stops/207375"], ["https://data.delijn.be/stops/206843", "https://data.delijn.be/stops/303133"], ["https://data.delijn.be/stops/202036", "https://data.delijn.be/stops/203035"], ["https://data.delijn.be/stops/105534", "https://data.delijn.be/stops/106731"], ["https://data.delijn.be/stops/302939", "https://data.delijn.be/stops/307441"], ["https://data.delijn.be/stops/207804", "https://data.delijn.be/stops/208347"], ["https://data.delijn.be/stops/400662", "https://data.delijn.be/stops/400663"], ["https://data.delijn.be/stops/105523", "https://data.delijn.be/stops/105524"], ["https://data.delijn.be/stops/408737", "https://data.delijn.be/stops/408773"], ["https://data.delijn.be/stops/509278", "https://data.delijn.be/stops/509282"], ["https://data.delijn.be/stops/107051", "https://data.delijn.be/stops/109646"], ["https://data.delijn.be/stops/106956", "https://data.delijn.be/stops/107269"], ["https://data.delijn.be/stops/301772", "https://data.delijn.be/stops/302527"], ["https://data.delijn.be/stops/206074", "https://data.delijn.be/stops/216003"], ["https://data.delijn.be/stops/406298", "https://data.delijn.be/stops/406398"], ["https://data.delijn.be/stops/400676", "https://data.delijn.be/stops/400677"], ["https://data.delijn.be/stops/205135", "https://data.delijn.be/stops/205147"], ["https://data.delijn.be/stops/404180", "https://data.delijn.be/stops/404181"], ["https://data.delijn.be/stops/302892", "https://data.delijn.be/stops/302902"], ["https://data.delijn.be/stops/206175", "https://data.delijn.be/stops/206480"], ["https://data.delijn.be/stops/509623", "https://data.delijn.be/stops/509624"], ["https://data.delijn.be/stops/401015", "https://data.delijn.be/stops/401018"], ["https://data.delijn.be/stops/206166", "https://data.delijn.be/stops/207297"], ["https://data.delijn.be/stops/302713", "https://data.delijn.be/stops/302714"], ["https://data.delijn.be/stops/200110", "https://data.delijn.be/stops/202646"], ["https://data.delijn.be/stops/505649", "https://data.delijn.be/stops/505651"], ["https://data.delijn.be/stops/201289", "https://data.delijn.be/stops/210079"], ["https://data.delijn.be/stops/202615", "https://data.delijn.be/stops/203615"], ["https://data.delijn.be/stops/404374", "https://data.delijn.be/stops/404395"], ["https://data.delijn.be/stops/504232", "https://data.delijn.be/stops/509232"], ["https://data.delijn.be/stops/206039", "https://data.delijn.be/stops/207050"], ["https://data.delijn.be/stops/505012", "https://data.delijn.be/stops/505222"], ["https://data.delijn.be/stops/503385", "https://data.delijn.be/stops/508206"], ["https://data.delijn.be/stops/206892", "https://data.delijn.be/stops/207883"], ["https://data.delijn.be/stops/502041", "https://data.delijn.be/stops/507037"], ["https://data.delijn.be/stops/107271", "https://data.delijn.be/stops/109734"], ["https://data.delijn.be/stops/101083", "https://data.delijn.be/stops/102718"], ["https://data.delijn.be/stops/201858", "https://data.delijn.be/stops/211035"], ["https://data.delijn.be/stops/503606", "https://data.delijn.be/stops/505184"], ["https://data.delijn.be/stops/107508", "https://data.delijn.be/stops/107511"], ["https://data.delijn.be/stops/403811", "https://data.delijn.be/stops/403818"], ["https://data.delijn.be/stops/206935", "https://data.delijn.be/stops/207813"], ["https://data.delijn.be/stops/104121", "https://data.delijn.be/stops/106395"], ["https://data.delijn.be/stops/304893", "https://data.delijn.be/stops/306407"], ["https://data.delijn.be/stops/200889", "https://data.delijn.be/stops/203296"], ["https://data.delijn.be/stops/106907", "https://data.delijn.be/stops/107258"], ["https://data.delijn.be/stops/401584", "https://data.delijn.be/stops/401743"], ["https://data.delijn.be/stops/109210", "https://data.delijn.be/stops/109212"], ["https://data.delijn.be/stops/504177", "https://data.delijn.be/stops/504739"], ["https://data.delijn.be/stops/105728", "https://data.delijn.be/stops/109842"], ["https://data.delijn.be/stops/200825", "https://data.delijn.be/stops/202296"], ["https://data.delijn.be/stops/105976", "https://data.delijn.be/stops/205640"], ["https://data.delijn.be/stops/207480", "https://data.delijn.be/stops/207481"], ["https://data.delijn.be/stops/307344", "https://data.delijn.be/stops/308456"], ["https://data.delijn.be/stops/102378", "https://data.delijn.be/stops/106669"], ["https://data.delijn.be/stops/505010", "https://data.delijn.be/stops/505053"], ["https://data.delijn.be/stops/200893", "https://data.delijn.be/stops/203792"], ["https://data.delijn.be/stops/502392", "https://data.delijn.be/stops/505023"], ["https://data.delijn.be/stops/109397", "https://data.delijn.be/stops/109398"], ["https://data.delijn.be/stops/505809", "https://data.delijn.be/stops/509842"], ["https://data.delijn.be/stops/201696", "https://data.delijn.be/stops/209947"], ["https://data.delijn.be/stops/503665", "https://data.delijn.be/stops/508667"], ["https://data.delijn.be/stops/502687", "https://data.delijn.be/stops/507191"], ["https://data.delijn.be/stops/101417", "https://data.delijn.be/stops/108696"], ["https://data.delijn.be/stops/106596", "https://data.delijn.be/stops/107244"], ["https://data.delijn.be/stops/406456", "https://data.delijn.be/stops/406494"], ["https://data.delijn.be/stops/306164", "https://data.delijn.be/stops/307045"], ["https://data.delijn.be/stops/502699", "https://data.delijn.be/stops/507699"], ["https://data.delijn.be/stops/101704", "https://data.delijn.be/stops/103165"], ["https://data.delijn.be/stops/301091", "https://data.delijn.be/stops/306164"], ["https://data.delijn.be/stops/105892", "https://data.delijn.be/stops/105893"], ["https://data.delijn.be/stops/301241", "https://data.delijn.be/stops/301242"], ["https://data.delijn.be/stops/200371", "https://data.delijn.be/stops/201372"], ["https://data.delijn.be/stops/503375", "https://data.delijn.be/stops/503419"], ["https://data.delijn.be/stops/304148", "https://data.delijn.be/stops/304149"], ["https://data.delijn.be/stops/204732", "https://data.delijn.be/stops/204758"], ["https://data.delijn.be/stops/305154", "https://data.delijn.be/stops/305180"], ["https://data.delijn.be/stops/407713", "https://data.delijn.be/stops/407742"], ["https://data.delijn.be/stops/105871", "https://data.delijn.be/stops/109744"], ["https://data.delijn.be/stops/102732", "https://data.delijn.be/stops/107057"], ["https://data.delijn.be/stops/102355", "https://data.delijn.be/stops/108975"], ["https://data.delijn.be/stops/503070", "https://data.delijn.be/stops/503076"], ["https://data.delijn.be/stops/505144", "https://data.delijn.be/stops/509828"], ["https://data.delijn.be/stops/300264", "https://data.delijn.be/stops/303813"], ["https://data.delijn.be/stops/502504", "https://data.delijn.be/stops/507706"], ["https://data.delijn.be/stops/107486", "https://data.delijn.be/stops/107487"], ["https://data.delijn.be/stops/201871", "https://data.delijn.be/stops/203663"], ["https://data.delijn.be/stops/109091", "https://data.delijn.be/stops/109535"], ["https://data.delijn.be/stops/105770", "https://data.delijn.be/stops/105775"], ["https://data.delijn.be/stops/203894", "https://data.delijn.be/stops/208285"], ["https://data.delijn.be/stops/208178", "https://data.delijn.be/stops/208180"], ["https://data.delijn.be/stops/408272", "https://data.delijn.be/stops/408374"], ["https://data.delijn.be/stops/503811", "https://data.delijn.be/stops/508804"], ["https://data.delijn.be/stops/209410", "https://data.delijn.be/stops/209411"], ["https://data.delijn.be/stops/504883", "https://data.delijn.be/stops/505099"], ["https://data.delijn.be/stops/502815", "https://data.delijn.be/stops/505673"], ["https://data.delijn.be/stops/201807", "https://data.delijn.be/stops/208327"], ["https://data.delijn.be/stops/506615", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/204997", "https://data.delijn.be/stops/503641"], ["https://data.delijn.be/stops/408510", "https://data.delijn.be/stops/408750"], ["https://data.delijn.be/stops/503611", "https://data.delijn.be/stops/508602"], ["https://data.delijn.be/stops/305064", "https://data.delijn.be/stops/305116"], ["https://data.delijn.be/stops/405173", "https://data.delijn.be/stops/405216"], ["https://data.delijn.be/stops/208475", "https://data.delijn.be/stops/209667"], ["https://data.delijn.be/stops/202139", "https://data.delijn.be/stops/203365"], ["https://data.delijn.be/stops/503526", "https://data.delijn.be/stops/508378"], ["https://data.delijn.be/stops/109494", "https://data.delijn.be/stops/109495"], ["https://data.delijn.be/stops/209604", "https://data.delijn.be/stops/307605"], ["https://data.delijn.be/stops/409552", "https://data.delijn.be/stops/409609"], ["https://data.delijn.be/stops/104386", "https://data.delijn.be/stops/104387"], ["https://data.delijn.be/stops/501490", "https://data.delijn.be/stops/506489"], ["https://data.delijn.be/stops/400684", "https://data.delijn.be/stops/406635"], ["https://data.delijn.be/stops/107183", "https://data.delijn.be/stops/107184"], ["https://data.delijn.be/stops/308377", "https://data.delijn.be/stops/308406"], ["https://data.delijn.be/stops/305107", "https://data.delijn.be/stops/305134"], ["https://data.delijn.be/stops/200087", "https://data.delijn.be/stops/203770"], ["https://data.delijn.be/stops/404505", "https://data.delijn.be/stops/409601"], ["https://data.delijn.be/stops/505517", "https://data.delijn.be/stops/505617"], ["https://data.delijn.be/stops/303167", "https://data.delijn.be/stops/303575"], ["https://data.delijn.be/stops/302446", "https://data.delijn.be/stops/302450"], ["https://data.delijn.be/stops/105104", "https://data.delijn.be/stops/106971"], ["https://data.delijn.be/stops/408020", "https://data.delijn.be/stops/408089"], ["https://data.delijn.be/stops/206701", "https://data.delijn.be/stops/206730"], ["https://data.delijn.be/stops/207644", "https://data.delijn.be/stops/209687"], ["https://data.delijn.be/stops/406286", "https://data.delijn.be/stops/406290"], ["https://data.delijn.be/stops/300366", "https://data.delijn.be/stops/300402"], ["https://data.delijn.be/stops/501401", "https://data.delijn.be/stops/505398"], ["https://data.delijn.be/stops/206132", "https://data.delijn.be/stops/206512"], ["https://data.delijn.be/stops/503918", "https://data.delijn.be/stops/508922"], ["https://data.delijn.be/stops/107573", "https://data.delijn.be/stops/107743"], ["https://data.delijn.be/stops/209463", "https://data.delijn.be/stops/209674"], ["https://data.delijn.be/stops/200702", "https://data.delijn.be/stops/202613"], ["https://data.delijn.be/stops/404435", "https://data.delijn.be/stops/404553"], ["https://data.delijn.be/stops/103498", "https://data.delijn.be/stops/109897"], ["https://data.delijn.be/stops/406621", "https://data.delijn.be/stops/406629"], ["https://data.delijn.be/stops/301504", "https://data.delijn.be/stops/301506"], ["https://data.delijn.be/stops/303249", "https://data.delijn.be/stops/307638"], ["https://data.delijn.be/stops/207357", "https://data.delijn.be/stops/207728"], ["https://data.delijn.be/stops/202288", "https://data.delijn.be/stops/203287"], ["https://data.delijn.be/stops/402254", "https://data.delijn.be/stops/402255"], ["https://data.delijn.be/stops/302881", "https://data.delijn.be/stops/302882"], ["https://data.delijn.be/stops/208082", "https://data.delijn.be/stops/209082"], ["https://data.delijn.be/stops/206521", "https://data.delijn.be/stops/206876"], ["https://data.delijn.be/stops/105573", "https://data.delijn.be/stops/106287"], ["https://data.delijn.be/stops/301991", "https://data.delijn.be/stops/301992"], ["https://data.delijn.be/stops/105690", "https://data.delijn.be/stops/105691"], ["https://data.delijn.be/stops/301035", "https://data.delijn.be/stops/304127"], ["https://data.delijn.be/stops/404763", "https://data.delijn.be/stops/404788"], ["https://data.delijn.be/stops/208286", "https://data.delijn.be/stops/209287"], ["https://data.delijn.be/stops/403279", "https://data.delijn.be/stops/403418"], ["https://data.delijn.be/stops/101848", "https://data.delijn.be/stops/102092"], ["https://data.delijn.be/stops/502170", "https://data.delijn.be/stops/502802"], ["https://data.delijn.be/stops/505336", "https://data.delijn.be/stops/507527"], ["https://data.delijn.be/stops/502198", "https://data.delijn.be/stops/507198"], ["https://data.delijn.be/stops/305696", "https://data.delijn.be/stops/305705"], ["https://data.delijn.be/stops/403489", "https://data.delijn.be/stops/403491"], ["https://data.delijn.be/stops/406048", "https://data.delijn.be/stops/406049"], ["https://data.delijn.be/stops/206511", "https://data.delijn.be/stops/207511"], ["https://data.delijn.be/stops/101799", "https://data.delijn.be/stops/308976"], ["https://data.delijn.be/stops/307156", "https://data.delijn.be/stops/307157"], ["https://data.delijn.be/stops/102174", "https://data.delijn.be/stops/109364"], ["https://data.delijn.be/stops/304781", "https://data.delijn.be/stops/307130"], ["https://data.delijn.be/stops/303001", "https://data.delijn.be/stops/306282"], ["https://data.delijn.be/stops/105716", "https://data.delijn.be/stops/106138"], ["https://data.delijn.be/stops/300749", "https://data.delijn.be/stops/301018"], ["https://data.delijn.be/stops/408501", "https://data.delijn.be/stops/408688"], ["https://data.delijn.be/stops/400095", "https://data.delijn.be/stops/400156"], ["https://data.delijn.be/stops/401451", "https://data.delijn.be/stops/402033"], ["https://data.delijn.be/stops/103273", "https://data.delijn.be/stops/109478"], ["https://data.delijn.be/stops/401418", "https://data.delijn.be/stops/401419"], ["https://data.delijn.be/stops/408000", "https://data.delijn.be/stops/408001"], ["https://data.delijn.be/stops/302879", "https://data.delijn.be/stops/304710"], ["https://data.delijn.be/stops/204227", "https://data.delijn.be/stops/205226"], ["https://data.delijn.be/stops/201817", "https://data.delijn.be/stops/201832"], ["https://data.delijn.be/stops/102965", "https://data.delijn.be/stops/104095"], ["https://data.delijn.be/stops/501338", "https://data.delijn.be/stops/501509"], ["https://data.delijn.be/stops/206289", "https://data.delijn.be/stops/206811"], ["https://data.delijn.be/stops/104910", "https://data.delijn.be/stops/106053"], ["https://data.delijn.be/stops/302968", "https://data.delijn.be/stops/308661"], ["https://data.delijn.be/stops/508214", "https://data.delijn.be/stops/508456"], ["https://data.delijn.be/stops/302655", "https://data.delijn.be/stops/302656"], ["https://data.delijn.be/stops/204027", "https://data.delijn.be/stops/205028"], ["https://data.delijn.be/stops/508760", "https://data.delijn.be/stops/508958"], ["https://data.delijn.be/stops/208097", "https://data.delijn.be/stops/209097"], ["https://data.delijn.be/stops/503610", "https://data.delijn.be/stops/508610"], ["https://data.delijn.be/stops/206674", "https://data.delijn.be/stops/208174"], ["https://data.delijn.be/stops/304382", "https://data.delijn.be/stops/305041"], ["https://data.delijn.be/stops/203453", "https://data.delijn.be/stops/203454"], ["https://data.delijn.be/stops/303032", "https://data.delijn.be/stops/303895"], ["https://data.delijn.be/stops/502256", "https://data.delijn.be/stops/507256"], ["https://data.delijn.be/stops/500557", "https://data.delijn.be/stops/501044"], ["https://data.delijn.be/stops/109278", "https://data.delijn.be/stops/109281"], ["https://data.delijn.be/stops/304056", "https://data.delijn.be/stops/304084"], ["https://data.delijn.be/stops/200812", "https://data.delijn.be/stops/200897"], ["https://data.delijn.be/stops/402220", "https://data.delijn.be/stops/410041"], ["https://data.delijn.be/stops/401673", "https://data.delijn.be/stops/308270"], ["https://data.delijn.be/stops/401107", "https://data.delijn.be/stops/401111"], ["https://data.delijn.be/stops/202759", "https://data.delijn.be/stops/203758"], ["https://data.delijn.be/stops/501134", "https://data.delijn.be/stops/506134"], ["https://data.delijn.be/stops/508535", "https://data.delijn.be/stops/509872"], ["https://data.delijn.be/stops/400288", "https://data.delijn.be/stops/400334"], ["https://data.delijn.be/stops/201710", "https://data.delijn.be/stops/202750"], ["https://data.delijn.be/stops/203316", "https://data.delijn.be/stops/210067"], ["https://data.delijn.be/stops/101765", "https://data.delijn.be/stops/101770"], ["https://data.delijn.be/stops/502744", "https://data.delijn.be/stops/505067"], ["https://data.delijn.be/stops/106323", "https://data.delijn.be/stops/106326"], ["https://data.delijn.be/stops/307221", "https://data.delijn.be/stops/307222"], ["https://data.delijn.be/stops/209089", "https://data.delijn.be/stops/209303"], ["https://data.delijn.be/stops/208130", "https://data.delijn.be/stops/208131"], ["https://data.delijn.be/stops/106325", "https://data.delijn.be/stops/106689"], ["https://data.delijn.be/stops/204402", "https://data.delijn.be/stops/204403"], ["https://data.delijn.be/stops/305386", "https://data.delijn.be/stops/305387"], ["https://data.delijn.be/stops/302858", "https://data.delijn.be/stops/304184"], ["https://data.delijn.be/stops/109830", "https://data.delijn.be/stops/109831"], ["https://data.delijn.be/stops/106641", "https://data.delijn.be/stops/106650"], ["https://data.delijn.be/stops/401279", "https://data.delijn.be/stops/409191"], ["https://data.delijn.be/stops/200012", "https://data.delijn.be/stops/201392"], ["https://data.delijn.be/stops/102908", "https://data.delijn.be/stops/102915"], ["https://data.delijn.be/stops/501057", "https://data.delijn.be/stops/505359"], ["https://data.delijn.be/stops/401089", "https://data.delijn.be/stops/401097"], ["https://data.delijn.be/stops/503006", "https://data.delijn.be/stops/508021"], ["https://data.delijn.be/stops/105787", "https://data.delijn.be/stops/105789"], ["https://data.delijn.be/stops/305951", "https://data.delijn.be/stops/307850"], ["https://data.delijn.be/stops/408251", "https://data.delijn.be/stops/408291"], ["https://data.delijn.be/stops/408260", "https://data.delijn.be/stops/408284"], ["https://data.delijn.be/stops/402138", "https://data.delijn.be/stops/402139"], ["https://data.delijn.be/stops/203978", "https://data.delijn.be/stops/205995"], ["https://data.delijn.be/stops/302959", "https://data.delijn.be/stops/302960"], ["https://data.delijn.be/stops/101393", "https://data.delijn.be/stops/101394"], ["https://data.delijn.be/stops/503631", "https://data.delijn.be/stops/508631"], ["https://data.delijn.be/stops/501537", "https://data.delijn.be/stops/505781"], ["https://data.delijn.be/stops/302054", "https://data.delijn.be/stops/307074"], ["https://data.delijn.be/stops/200452", "https://data.delijn.be/stops/208273"], ["https://data.delijn.be/stops/104783", "https://data.delijn.be/stops/104784"], ["https://data.delijn.be/stops/400584", "https://data.delijn.be/stops/400597"], ["https://data.delijn.be/stops/103752", "https://data.delijn.be/stops/105650"], ["https://data.delijn.be/stops/405676", "https://data.delijn.be/stops/408203"], ["https://data.delijn.be/stops/104886", "https://data.delijn.be/stops/104888"], ["https://data.delijn.be/stops/301306", "https://data.delijn.be/stops/306649"], ["https://data.delijn.be/stops/201937", "https://data.delijn.be/stops/207966"], ["https://data.delijn.be/stops/509736", "https://data.delijn.be/stops/509738"], ["https://data.delijn.be/stops/202298", "https://data.delijn.be/stops/202725"], ["https://data.delijn.be/stops/303371", "https://data.delijn.be/stops/303803"], ["https://data.delijn.be/stops/505502", "https://data.delijn.be/stops/505605"], ["https://data.delijn.be/stops/303051", "https://data.delijn.be/stops/304531"], ["https://data.delijn.be/stops/301138", "https://data.delijn.be/stops/301165"], ["https://data.delijn.be/stops/500117", "https://data.delijn.be/stops/502271"], ["https://data.delijn.be/stops/200760", "https://data.delijn.be/stops/208304"], ["https://data.delijn.be/stops/402853", "https://data.delijn.be/stops/300435"], ["https://data.delijn.be/stops/206318", "https://data.delijn.be/stops/207871"], ["https://data.delijn.be/stops/401642", "https://data.delijn.be/stops/408660"], ["https://data.delijn.be/stops/300557", "https://data.delijn.be/stops/307865"], ["https://data.delijn.be/stops/508756", "https://data.delijn.be/stops/509971"], ["https://data.delijn.be/stops/407604", "https://data.delijn.be/stops/407607"], ["https://data.delijn.be/stops/202079", "https://data.delijn.be/stops/203118"], ["https://data.delijn.be/stops/108247", "https://data.delijn.be/stops/109557"], ["https://data.delijn.be/stops/200076", "https://data.delijn.be/stops/201076"], ["https://data.delijn.be/stops/400968", "https://data.delijn.be/stops/401250"], ["https://data.delijn.be/stops/405255", "https://data.delijn.be/stops/406726"], ["https://data.delijn.be/stops/409088", "https://data.delijn.be/stops/409089"], ["https://data.delijn.be/stops/101809", "https://data.delijn.be/stops/108121"], ["https://data.delijn.be/stops/509698", "https://data.delijn.be/stops/509699"], ["https://data.delijn.be/stops/101267", "https://data.delijn.be/stops/102113"], ["https://data.delijn.be/stops/503928", "https://data.delijn.be/stops/505254"], ["https://data.delijn.be/stops/407958", "https://data.delijn.be/stops/408014"], ["https://data.delijn.be/stops/503082", "https://data.delijn.be/stops/503504"], ["https://data.delijn.be/stops/407369", "https://data.delijn.be/stops/407395"], ["https://data.delijn.be/stops/203243", "https://data.delijn.be/stops/203485"], ["https://data.delijn.be/stops/405702", "https://data.delijn.be/stops/405703"], ["https://data.delijn.be/stops/305269", "https://data.delijn.be/stops/305887"], ["https://data.delijn.be/stops/102244", "https://data.delijn.be/stops/102247"], ["https://data.delijn.be/stops/203876", "https://data.delijn.be/stops/203877"], ["https://data.delijn.be/stops/209520", "https://data.delijn.be/stops/209709"], ["https://data.delijn.be/stops/203150", "https://data.delijn.be/stops/203170"], ["https://data.delijn.be/stops/304019", "https://data.delijn.be/stops/304107"], ["https://data.delijn.be/stops/408799", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/503429", "https://data.delijn.be/stops/508429"], ["https://data.delijn.be/stops/405209", "https://data.delijn.be/stops/405291"], ["https://data.delijn.be/stops/200958", "https://data.delijn.be/stops/201913"], ["https://data.delijn.be/stops/202527", "https://data.delijn.be/stops/203527"], ["https://data.delijn.be/stops/205240", "https://data.delijn.be/stops/205479"], ["https://data.delijn.be/stops/302610", "https://data.delijn.be/stops/302632"], ["https://data.delijn.be/stops/308610", "https://data.delijn.be/stops/308631"], ["https://data.delijn.be/stops/204746", "https://data.delijn.be/stops/205742"], ["https://data.delijn.be/stops/206794", "https://data.delijn.be/stops/208035"], ["https://data.delijn.be/stops/302463", "https://data.delijn.be/stops/308831"], ["https://data.delijn.be/stops/304534", "https://data.delijn.be/stops/307575"], ["https://data.delijn.be/stops/101832", "https://data.delijn.be/stops/108192"], ["https://data.delijn.be/stops/303713", "https://data.delijn.be/stops/303750"], ["https://data.delijn.be/stops/204300", "https://data.delijn.be/stops/204338"], ["https://data.delijn.be/stops/405118", "https://data.delijn.be/stops/408147"], ["https://data.delijn.be/stops/302234", "https://data.delijn.be/stops/302249"], ["https://data.delijn.be/stops/502946", "https://data.delijn.be/stops/503588"], ["https://data.delijn.be/stops/308503", "https://data.delijn.be/stops/308538"], ["https://data.delijn.be/stops/504997", "https://data.delijn.be/stops/508116"], ["https://data.delijn.be/stops/201636", "https://data.delijn.be/stops/211055"], ["https://data.delijn.be/stops/502618", "https://data.delijn.be/stops/507059"], ["https://data.delijn.be/stops/300202", "https://data.delijn.be/stops/308786"], ["https://data.delijn.be/stops/201276", "https://data.delijn.be/stops/210335"], ["https://data.delijn.be/stops/203106", "https://data.delijn.be/stops/203107"], ["https://data.delijn.be/stops/400443", "https://data.delijn.be/stops/405357"], ["https://data.delijn.be/stops/201865", "https://data.delijn.be/stops/210039"], ["https://data.delijn.be/stops/200409", "https://data.delijn.be/stops/201409"], ["https://data.delijn.be/stops/201861", "https://data.delijn.be/stops/203670"], ["https://data.delijn.be/stops/302595", "https://data.delijn.be/stops/302693"], ["https://data.delijn.be/stops/208359", "https://data.delijn.be/stops/208706"], ["https://data.delijn.be/stops/104846", "https://data.delijn.be/stops/104847"], ["https://data.delijn.be/stops/306067", "https://data.delijn.be/stops/307555"], ["https://data.delijn.be/stops/207884", "https://data.delijn.be/stops/207886"], ["https://data.delijn.be/stops/205063", "https://data.delijn.be/stops/205340"], ["https://data.delijn.be/stops/108738", "https://data.delijn.be/stops/108763"], ["https://data.delijn.be/stops/404019", "https://data.delijn.be/stops/410025"], ["https://data.delijn.be/stops/208770", "https://data.delijn.be/stops/208772"], ["https://data.delijn.be/stops/409239", "https://data.delijn.be/stops/409242"], ["https://data.delijn.be/stops/308518", "https://data.delijn.be/stops/308689"], ["https://data.delijn.be/stops/402413", "https://data.delijn.be/stops/402416"], ["https://data.delijn.be/stops/504371", "https://data.delijn.be/stops/504665"], ["https://data.delijn.be/stops/507017", "https://data.delijn.be/stops/507914"], ["https://data.delijn.be/stops/301510", "https://data.delijn.be/stops/301511"], ["https://data.delijn.be/stops/104093", "https://data.delijn.be/stops/405880"], ["https://data.delijn.be/stops/503056", "https://data.delijn.be/stops/509757"], ["https://data.delijn.be/stops/108867", "https://data.delijn.be/stops/108868"], ["https://data.delijn.be/stops/106469", "https://data.delijn.be/stops/106471"], ["https://data.delijn.be/stops/401743", "https://data.delijn.be/stops/401744"], ["https://data.delijn.be/stops/202658", "https://data.delijn.be/stops/202660"], ["https://data.delijn.be/stops/205769", "https://data.delijn.be/stops/205772"], ["https://data.delijn.be/stops/108614", "https://data.delijn.be/stops/108616"], ["https://data.delijn.be/stops/502331", "https://data.delijn.be/stops/507331"], ["https://data.delijn.be/stops/201030", "https://data.delijn.be/stops/201447"], ["https://data.delijn.be/stops/502227", "https://data.delijn.be/stops/507227"], ["https://data.delijn.be/stops/407176", "https://data.delijn.be/stops/407178"], ["https://data.delijn.be/stops/509439", "https://data.delijn.be/stops/509441"], ["https://data.delijn.be/stops/300123", "https://data.delijn.be/stops/306831"], ["https://data.delijn.be/stops/102395", "https://data.delijn.be/stops/103775"], ["https://data.delijn.be/stops/101012", "https://data.delijn.be/stops/103246"], ["https://data.delijn.be/stops/407382", "https://data.delijn.be/stops/407566"], ["https://data.delijn.be/stops/400866", "https://data.delijn.be/stops/400867"], ["https://data.delijn.be/stops/106834", "https://data.delijn.be/stops/106973"], ["https://data.delijn.be/stops/403465", "https://data.delijn.be/stops/403494"], ["https://data.delijn.be/stops/502762", "https://data.delijn.be/stops/505752"], ["https://data.delijn.be/stops/401183", "https://data.delijn.be/stops/401221"], ["https://data.delijn.be/stops/101822", "https://data.delijn.be/stops/107072"], ["https://data.delijn.be/stops/303350", "https://data.delijn.be/stops/303389"], ["https://data.delijn.be/stops/102566", "https://data.delijn.be/stops/105849"], ["https://data.delijn.be/stops/402492", "https://data.delijn.be/stops/402493"], ["https://data.delijn.be/stops/107601", "https://data.delijn.be/stops/109861"], ["https://data.delijn.be/stops/305499", "https://data.delijn.be/stops/307987"], ["https://data.delijn.be/stops/401670", "https://data.delijn.be/stops/401671"], ["https://data.delijn.be/stops/501518", "https://data.delijn.be/stops/506518"], ["https://data.delijn.be/stops/401132", "https://data.delijn.be/stops/401140"], ["https://data.delijn.be/stops/108608", "https://data.delijn.be/stops/300070"], ["https://data.delijn.be/stops/108155", "https://data.delijn.be/stops/109845"], ["https://data.delijn.be/stops/105674", "https://data.delijn.be/stops/105678"], ["https://data.delijn.be/stops/402404", "https://data.delijn.be/stops/402405"], ["https://data.delijn.be/stops/308029", "https://data.delijn.be/stops/308030"], ["https://data.delijn.be/stops/403738", "https://data.delijn.be/stops/403740"], ["https://data.delijn.be/stops/204708", "https://data.delijn.be/stops/205708"], ["https://data.delijn.be/stops/209286", "https://data.delijn.be/stops/219018"], ["https://data.delijn.be/stops/200514", "https://data.delijn.be/stops/201514"], ["https://data.delijn.be/stops/204080", "https://data.delijn.be/stops/204081"], ["https://data.delijn.be/stops/410222", "https://data.delijn.be/stops/410223"], ["https://data.delijn.be/stops/108372", "https://data.delijn.be/stops/108517"], ["https://data.delijn.be/stops/504863", "https://data.delijn.be/stops/508344"], ["https://data.delijn.be/stops/301170", "https://data.delijn.be/stops/303195"], ["https://data.delijn.be/stops/504359", "https://data.delijn.be/stops/509356"], ["https://data.delijn.be/stops/504609", "https://data.delijn.be/stops/509609"], ["https://data.delijn.be/stops/503289", "https://data.delijn.be/stops/508289"], ["https://data.delijn.be/stops/106926", "https://data.delijn.be/stops/106941"], ["https://data.delijn.be/stops/202898", "https://data.delijn.be/stops/210127"], ["https://data.delijn.be/stops/201946", "https://data.delijn.be/stops/202454"], ["https://data.delijn.be/stops/304980", "https://data.delijn.be/stops/308011"], ["https://data.delijn.be/stops/305304", "https://data.delijn.be/stops/305305"], ["https://data.delijn.be/stops/402442", "https://data.delijn.be/stops/409599"], ["https://data.delijn.be/stops/108102", "https://data.delijn.be/stops/108104"], ["https://data.delijn.be/stops/303047", "https://data.delijn.be/stops/304704"], ["https://data.delijn.be/stops/103249", "https://data.delijn.be/stops/107370"], ["https://data.delijn.be/stops/200136", "https://data.delijn.be/stops/201137"], ["https://data.delijn.be/stops/200924", "https://data.delijn.be/stops/200937"], ["https://data.delijn.be/stops/503557", "https://data.delijn.be/stops/503576"], ["https://data.delijn.be/stops/506218", "https://data.delijn.be/stops/506219"], ["https://data.delijn.be/stops/102065", "https://data.delijn.be/stops/104285"], ["https://data.delijn.be/stops/102599", "https://data.delijn.be/stops/107813"], ["https://data.delijn.be/stops/401779", "https://data.delijn.be/stops/401836"], ["https://data.delijn.be/stops/402549", "https://data.delijn.be/stops/404067"], ["https://data.delijn.be/stops/301459", "https://data.delijn.be/stops/301487"], ["https://data.delijn.be/stops/502096", "https://data.delijn.be/stops/502102"], ["https://data.delijn.be/stops/209044", "https://data.delijn.be/stops/209792"], ["https://data.delijn.be/stops/101854", "https://data.delijn.be/stops/107952"], ["https://data.delijn.be/stops/502454", "https://data.delijn.be/stops/507454"], ["https://data.delijn.be/stops/207133", "https://data.delijn.be/stops/207598"], ["https://data.delijn.be/stops/101534", "https://data.delijn.be/stops/108742"], ["https://data.delijn.be/stops/408761", "https://data.delijn.be/stops/408813"], ["https://data.delijn.be/stops/203631", "https://data.delijn.be/stops/204091"], ["https://data.delijn.be/stops/109693", "https://data.delijn.be/stops/109768"], ["https://data.delijn.be/stops/201230", "https://data.delijn.be/stops/201550"], ["https://data.delijn.be/stops/400592", "https://data.delijn.be/stops/400593"], ["https://data.delijn.be/stops/401024", "https://data.delijn.be/stops/407796"], ["https://data.delijn.be/stops/507413", "https://data.delijn.be/stops/507671"], ["https://data.delijn.be/stops/204507", "https://data.delijn.be/stops/205904"], ["https://data.delijn.be/stops/502570", "https://data.delijn.be/stops/507571"], ["https://data.delijn.be/stops/403446", "https://data.delijn.be/stops/409283"], ["https://data.delijn.be/stops/202733", "https://data.delijn.be/stops/203854"], ["https://data.delijn.be/stops/208156", "https://data.delijn.be/stops/208194"], ["https://data.delijn.be/stops/300810", "https://data.delijn.be/stops/300986"], ["https://data.delijn.be/stops/200803", "https://data.delijn.be/stops/201884"], ["https://data.delijn.be/stops/508362", "https://data.delijn.be/stops/508404"], ["https://data.delijn.be/stops/301184", "https://data.delijn.be/stops/304060"], ["https://data.delijn.be/stops/302036", "https://data.delijn.be/stops/308753"], ["https://data.delijn.be/stops/403597", "https://data.delijn.be/stops/407515"], ["https://data.delijn.be/stops/209588", "https://data.delijn.be/stops/307528"], ["https://data.delijn.be/stops/101110", "https://data.delijn.be/stops/102908"], ["https://data.delijn.be/stops/407030", "https://data.delijn.be/stops/409203"], ["https://data.delijn.be/stops/501482", "https://data.delijn.be/stops/501513"], ["https://data.delijn.be/stops/401256", "https://data.delijn.be/stops/401257"], ["https://data.delijn.be/stops/503470", "https://data.delijn.be/stops/508454"], ["https://data.delijn.be/stops/201112", "https://data.delijn.be/stops/203355"], ["https://data.delijn.be/stops/504828", "https://data.delijn.be/stops/509454"], ["https://data.delijn.be/stops/405050", "https://data.delijn.be/stops/405118"], ["https://data.delijn.be/stops/501077", "https://data.delijn.be/stops/506077"], ["https://data.delijn.be/stops/502132", "https://data.delijn.be/stops/502139"], ["https://data.delijn.be/stops/406904", "https://data.delijn.be/stops/406931"], ["https://data.delijn.be/stops/101174", "https://data.delijn.be/stops/104855"], ["https://data.delijn.be/stops/503443", "https://data.delijn.be/stops/508443"], ["https://data.delijn.be/stops/201044", "https://data.delijn.be/stops/201943"], ["https://data.delijn.be/stops/105538", "https://data.delijn.be/stops/106249"], ["https://data.delijn.be/stops/207675", "https://data.delijn.be/stops/209141"], ["https://data.delijn.be/stops/401602", "https://data.delijn.be/stops/408481"], ["https://data.delijn.be/stops/301405", "https://data.delijn.be/stops/308649"], ["https://data.delijn.be/stops/206511", "https://data.delijn.be/stops/207135"], ["https://data.delijn.be/stops/302204", "https://data.delijn.be/stops/302209"], ["https://data.delijn.be/stops/105726", "https://data.delijn.be/stops/107860"], ["https://data.delijn.be/stops/105357", "https://data.delijn.be/stops/105659"], ["https://data.delijn.be/stops/407166", "https://data.delijn.be/stops/407170"], ["https://data.delijn.be/stops/105734", "https://data.delijn.be/stops/109836"], ["https://data.delijn.be/stops/403285", "https://data.delijn.be/stops/409523"], ["https://data.delijn.be/stops/204702", "https://data.delijn.be/stops/205691"], ["https://data.delijn.be/stops/201304", "https://data.delijn.be/stops/202761"], ["https://data.delijn.be/stops/201809", "https://data.delijn.be/stops/201810"], ["https://data.delijn.be/stops/304946", "https://data.delijn.be/stops/304947"], ["https://data.delijn.be/stops/101418", "https://data.delijn.be/stops/106952"], ["https://data.delijn.be/stops/306922", "https://data.delijn.be/stops/306924"], ["https://data.delijn.be/stops/206656", "https://data.delijn.be/stops/207657"], ["https://data.delijn.be/stops/101655", "https://data.delijn.be/stops/104866"], ["https://data.delijn.be/stops/505686", "https://data.delijn.be/stops/507064"], ["https://data.delijn.be/stops/107399", "https://data.delijn.be/stops/107402"], ["https://data.delijn.be/stops/304128", "https://data.delijn.be/stops/307581"], ["https://data.delijn.be/stops/503079", "https://data.delijn.be/stops/508079"], ["https://data.delijn.be/stops/403632", "https://data.delijn.be/stops/403641"], ["https://data.delijn.be/stops/102681", "https://data.delijn.be/stops/102830"], ["https://data.delijn.be/stops/505390", "https://data.delijn.be/stops/505933"], ["https://data.delijn.be/stops/507399", "https://data.delijn.be/stops/507404"], ["https://data.delijn.be/stops/206103", "https://data.delijn.be/stops/207103"], ["https://data.delijn.be/stops/406652", "https://data.delijn.be/stops/406657"], ["https://data.delijn.be/stops/408528", "https://data.delijn.be/stops/408529"], ["https://data.delijn.be/stops/200603", "https://data.delijn.be/stops/200633"], ["https://data.delijn.be/stops/405257", "https://data.delijn.be/stops/405265"], ["https://data.delijn.be/stops/400541", "https://data.delijn.be/stops/400544"], ["https://data.delijn.be/stops/101274", "https://data.delijn.be/stops/104210"], ["https://data.delijn.be/stops/104285", "https://data.delijn.be/stops/104635"], ["https://data.delijn.be/stops/206430", "https://data.delijn.be/stops/207430"], ["https://data.delijn.be/stops/406210", "https://data.delijn.be/stops/406211"], ["https://data.delijn.be/stops/301354", "https://data.delijn.be/stops/301355"], ["https://data.delijn.be/stops/301857", "https://data.delijn.be/stops/301863"], ["https://data.delijn.be/stops/408079", "https://data.delijn.be/stops/305705"], ["https://data.delijn.be/stops/209591", "https://data.delijn.be/stops/307024"], ["https://data.delijn.be/stops/201779", "https://data.delijn.be/stops/208855"], ["https://data.delijn.be/stops/202440", "https://data.delijn.be/stops/203441"], ["https://data.delijn.be/stops/107143", "https://data.delijn.be/stops/107146"], ["https://data.delijn.be/stops/302895", "https://data.delijn.be/stops/302898"], ["https://data.delijn.be/stops/306926", "https://data.delijn.be/stops/308725"], ["https://data.delijn.be/stops/107330", "https://data.delijn.be/stops/107335"], ["https://data.delijn.be/stops/210069", "https://data.delijn.be/stops/210072"], ["https://data.delijn.be/stops/300375", "https://data.delijn.be/stops/300382"], ["https://data.delijn.be/stops/103253", "https://data.delijn.be/stops/105440"], ["https://data.delijn.be/stops/202870", "https://data.delijn.be/stops/203878"], ["https://data.delijn.be/stops/504940", "https://data.delijn.be/stops/507015"], ["https://data.delijn.be/stops/401424", "https://data.delijn.be/stops/401458"], ["https://data.delijn.be/stops/500555", "https://data.delijn.be/stops/502213"], ["https://data.delijn.be/stops/504481", "https://data.delijn.be/stops/509014"], ["https://data.delijn.be/stops/503436", "https://data.delijn.be/stops/508356"], ["https://data.delijn.be/stops/304432", "https://data.delijn.be/stops/304455"], ["https://data.delijn.be/stops/202170", "https://data.delijn.be/stops/202171"], ["https://data.delijn.be/stops/204071", "https://data.delijn.be/stops/205097"], ["https://data.delijn.be/stops/105992", "https://data.delijn.be/stops/105993"], ["https://data.delijn.be/stops/504624", "https://data.delijn.be/stops/509617"], ["https://data.delijn.be/stops/108528", "https://data.delijn.be/stops/108529"], ["https://data.delijn.be/stops/105641", "https://data.delijn.be/stops/105799"], ["https://data.delijn.be/stops/200810", "https://data.delijn.be/stops/202053"], ["https://data.delijn.be/stops/103482", "https://data.delijn.be/stops/103483"], ["https://data.delijn.be/stops/205583", "https://data.delijn.be/stops/214007"], ["https://data.delijn.be/stops/101503", "https://data.delijn.be/stops/109346"], ["https://data.delijn.be/stops/208288", "https://data.delijn.be/stops/208289"], ["https://data.delijn.be/stops/501205", "https://data.delijn.be/stops/501372"], ["https://data.delijn.be/stops/507328", "https://data.delijn.be/stops/507331"], ["https://data.delijn.be/stops/304884", "https://data.delijn.be/stops/305504"], ["https://data.delijn.be/stops/101492", "https://data.delijn.be/stops/101957"], ["https://data.delijn.be/stops/301493", "https://data.delijn.be/stops/301498"], ["https://data.delijn.be/stops/401575", "https://data.delijn.be/stops/401576"], ["https://data.delijn.be/stops/502511", "https://data.delijn.be/stops/507509"], ["https://data.delijn.be/stops/206067", "https://data.delijn.be/stops/207074"], ["https://data.delijn.be/stops/404213", "https://data.delijn.be/stops/404228"], ["https://data.delijn.be/stops/501044", "https://data.delijn.be/stops/506033"], ["https://data.delijn.be/stops/505540", "https://data.delijn.be/stops/509941"], ["https://data.delijn.be/stops/501099", "https://data.delijn.be/stops/505152"], ["https://data.delijn.be/stops/206097", "https://data.delijn.be/stops/206724"], ["https://data.delijn.be/stops/503920", "https://data.delijn.be/stops/508709"], ["https://data.delijn.be/stops/103594", "https://data.delijn.be/stops/109124"], ["https://data.delijn.be/stops/502394", "https://data.delijn.be/stops/502621"], ["https://data.delijn.be/stops/504965", "https://data.delijn.be/stops/508766"], ["https://data.delijn.be/stops/200877", "https://data.delijn.be/stops/202543"], ["https://data.delijn.be/stops/204637", "https://data.delijn.be/stops/205637"], ["https://data.delijn.be/stops/202856", "https://data.delijn.be/stops/208714"], ["https://data.delijn.be/stops/403093", "https://data.delijn.be/stops/403126"], ["https://data.delijn.be/stops/106811", "https://data.delijn.be/stops/106813"], ["https://data.delijn.be/stops/206030", "https://data.delijn.be/stops/207801"], ["https://data.delijn.be/stops/509873", "https://data.delijn.be/stops/509937"], ["https://data.delijn.be/stops/407730", "https://data.delijn.be/stops/407735"], ["https://data.delijn.be/stops/206991", "https://data.delijn.be/stops/207505"], ["https://data.delijn.be/stops/202242", "https://data.delijn.be/stops/202617"], ["https://data.delijn.be/stops/109367", "https://data.delijn.be/stops/109368"], ["https://data.delijn.be/stops/406416", "https://data.delijn.be/stops/406417"], ["https://data.delijn.be/stops/103958", "https://data.delijn.be/stops/105250"], ["https://data.delijn.be/stops/102427", "https://data.delijn.be/stops/102428"], ["https://data.delijn.be/stops/303765", "https://data.delijn.be/stops/303766"], ["https://data.delijn.be/stops/400071", "https://data.delijn.be/stops/403545"], ["https://data.delijn.be/stops/103094", "https://data.delijn.be/stops/109121"], ["https://data.delijn.be/stops/400057", "https://data.delijn.be/stops/400101"], ["https://data.delijn.be/stops/504584", "https://data.delijn.be/stops/505535"], ["https://data.delijn.be/stops/401790", "https://data.delijn.be/stops/401791"], ["https://data.delijn.be/stops/204657", "https://data.delijn.be/stops/205656"], ["https://data.delijn.be/stops/504013", "https://data.delijn.be/stops/504674"], ["https://data.delijn.be/stops/206772", "https://data.delijn.be/stops/208031"], ["https://data.delijn.be/stops/401470", "https://data.delijn.be/stops/401547"], ["https://data.delijn.be/stops/208104", "https://data.delijn.be/stops/209104"], ["https://data.delijn.be/stops/405448", "https://data.delijn.be/stops/405449"], ["https://data.delijn.be/stops/402860", "https://data.delijn.be/stops/406570"], ["https://data.delijn.be/stops/108406", "https://data.delijn.be/stops/108407"], ["https://data.delijn.be/stops/401795", "https://data.delijn.be/stops/401812"], ["https://data.delijn.be/stops/208287", "https://data.delijn.be/stops/209247"], ["https://data.delijn.be/stops/205975", "https://data.delijn.be/stops/209746"], ["https://data.delijn.be/stops/304202", "https://data.delijn.be/stops/304203"], ["https://data.delijn.be/stops/505582", "https://data.delijn.be/stops/505663"], ["https://data.delijn.be/stops/204156", "https://data.delijn.be/stops/204157"], ["https://data.delijn.be/stops/206217", "https://data.delijn.be/stops/206806"], ["https://data.delijn.be/stops/103633", "https://data.delijn.be/stops/107165"], ["https://data.delijn.be/stops/400985", "https://data.delijn.be/stops/400992"], ["https://data.delijn.be/stops/303036", "https://data.delijn.be/stops/303101"], ["https://data.delijn.be/stops/406787", "https://data.delijn.be/stops/406805"], ["https://data.delijn.be/stops/102548", "https://data.delijn.be/stops/102550"], ["https://data.delijn.be/stops/503381", "https://data.delijn.be/stops/503395"], ["https://data.delijn.be/stops/208043", "https://data.delijn.be/stops/209043"], ["https://data.delijn.be/stops/400078", "https://data.delijn.be/stops/405130"], ["https://data.delijn.be/stops/502028", "https://data.delijn.be/stops/502659"], ["https://data.delijn.be/stops/503265", "https://data.delijn.be/stops/503945"], ["https://data.delijn.be/stops/202342", "https://data.delijn.be/stops/202448"], ["https://data.delijn.be/stops/503432", "https://data.delijn.be/stops/509767"], ["https://data.delijn.be/stops/206810", "https://data.delijn.be/stops/207810"], ["https://data.delijn.be/stops/502187", "https://data.delijn.be/stops/507189"], ["https://data.delijn.be/stops/302967", "https://data.delijn.be/stops/303001"], ["https://data.delijn.be/stops/409878", "https://data.delijn.be/stops/409879"], ["https://data.delijn.be/stops/404870", "https://data.delijn.be/stops/404871"], ["https://data.delijn.be/stops/300542", "https://data.delijn.be/stops/303972"], ["https://data.delijn.be/stops/402330", "https://data.delijn.be/stops/402331"], ["https://data.delijn.be/stops/206245", "https://data.delijn.be/stops/207245"], ["https://data.delijn.be/stops/103087", "https://data.delijn.be/stops/104572"], ["https://data.delijn.be/stops/501257", "https://data.delijn.be/stops/506257"], ["https://data.delijn.be/stops/404258", "https://data.delijn.be/stops/409256"], ["https://data.delijn.be/stops/405156", "https://data.delijn.be/stops/405219"], ["https://data.delijn.be/stops/209293", "https://data.delijn.be/stops/209791"], ["https://data.delijn.be/stops/101755", "https://data.delijn.be/stops/105752"], ["https://data.delijn.be/stops/502596", "https://data.delijn.be/stops/502597"], ["https://data.delijn.be/stops/206546", "https://data.delijn.be/stops/207547"], ["https://data.delijn.be/stops/202748", "https://data.delijn.be/stops/203748"], ["https://data.delijn.be/stops/504174", "https://data.delijn.be/stops/509174"], ["https://data.delijn.be/stops/201608", "https://data.delijn.be/stops/202770"], ["https://data.delijn.be/stops/408197", "https://data.delijn.be/stops/408198"], ["https://data.delijn.be/stops/407272", "https://data.delijn.be/stops/407273"], ["https://data.delijn.be/stops/407634", "https://data.delijn.be/stops/407635"], ["https://data.delijn.be/stops/406378", "https://data.delijn.be/stops/406379"], ["https://data.delijn.be/stops/502675", "https://data.delijn.be/stops/507357"], ["https://data.delijn.be/stops/102385", "https://data.delijn.be/stops/103106"], ["https://data.delijn.be/stops/403482", "https://data.delijn.be/stops/410012"], ["https://data.delijn.be/stops/109034", "https://data.delijn.be/stops/109036"], ["https://data.delijn.be/stops/404660", "https://data.delijn.be/stops/404667"], ["https://data.delijn.be/stops/101591", "https://data.delijn.be/stops/101729"], ["https://data.delijn.be/stops/300962", "https://data.delijn.be/stops/300963"], ["https://data.delijn.be/stops/408507", "https://data.delijn.be/stops/408563"], ["https://data.delijn.be/stops/503948", "https://data.delijn.be/stops/508812"], ["https://data.delijn.be/stops/302615", "https://data.delijn.be/stops/302627"], ["https://data.delijn.be/stops/108472", "https://data.delijn.be/stops/109085"], ["https://data.delijn.be/stops/301729", "https://data.delijn.be/stops/308422"], ["https://data.delijn.be/stops/401795", "https://data.delijn.be/stops/406354"], ["https://data.delijn.be/stops/503065", "https://data.delijn.be/stops/508065"], ["https://data.delijn.be/stops/503845", "https://data.delijn.be/stops/505226"], ["https://data.delijn.be/stops/501108", "https://data.delijn.be/stops/501503"], ["https://data.delijn.be/stops/400884", "https://data.delijn.be/stops/400887"], ["https://data.delijn.be/stops/503807", "https://data.delijn.be/stops/508802"], ["https://data.delijn.be/stops/204175", "https://data.delijn.be/stops/205241"], ["https://data.delijn.be/stops/208308", "https://data.delijn.be/stops/209308"], ["https://data.delijn.be/stops/105826", "https://data.delijn.be/stops/105827"], ["https://data.delijn.be/stops/405052", "https://data.delijn.be/stops/405055"], ["https://data.delijn.be/stops/202602", "https://data.delijn.be/stops/203602"], ["https://data.delijn.be/stops/208129", "https://data.delijn.be/stops/209129"], ["https://data.delijn.be/stops/106427", "https://data.delijn.be/stops/106559"], ["https://data.delijn.be/stops/302321", "https://data.delijn.be/stops/302324"], ["https://data.delijn.be/stops/505203", "https://data.delijn.be/stops/507003"], ["https://data.delijn.be/stops/108994", "https://data.delijn.be/stops/108996"], ["https://data.delijn.be/stops/502498", "https://data.delijn.be/stops/507498"], ["https://data.delijn.be/stops/204061", "https://data.delijn.be/stops/205062"], ["https://data.delijn.be/stops/209603", "https://data.delijn.be/stops/209604"], ["https://data.delijn.be/stops/506123", "https://data.delijn.be/stops/506126"], ["https://data.delijn.be/stops/407016", "https://data.delijn.be/stops/407049"], ["https://data.delijn.be/stops/108967", "https://data.delijn.be/stops/401931"], ["https://data.delijn.be/stops/504024", "https://data.delijn.be/stops/504202"], ["https://data.delijn.be/stops/206375", "https://data.delijn.be/stops/207375"], ["https://data.delijn.be/stops/503084", "https://data.delijn.be/stops/508631"], ["https://data.delijn.be/stops/208344", "https://data.delijn.be/stops/219031"], ["https://data.delijn.be/stops/105039", "https://data.delijn.be/stops/105042"], ["https://data.delijn.be/stops/206380", "https://data.delijn.be/stops/207381"], ["https://data.delijn.be/stops/200709", "https://data.delijn.be/stops/200723"], ["https://data.delijn.be/stops/502216", "https://data.delijn.be/stops/502219"], ["https://data.delijn.be/stops/208325", "https://data.delijn.be/stops/209325"], ["https://data.delijn.be/stops/200724", "https://data.delijn.be/stops/205559"], ["https://data.delijn.be/stops/504326", "https://data.delijn.be/stops/504382"], ["https://data.delijn.be/stops/401278", "https://data.delijn.be/stops/410180"], ["https://data.delijn.be/stops/407860", "https://data.delijn.be/stops/306054"], ["https://data.delijn.be/stops/402738", "https://data.delijn.be/stops/402739"], ["https://data.delijn.be/stops/503267", "https://data.delijn.be/stops/503271"], ["https://data.delijn.be/stops/404944", "https://data.delijn.be/stops/404957"], ["https://data.delijn.be/stops/204645", "https://data.delijn.be/stops/205646"], ["https://data.delijn.be/stops/205139", "https://data.delijn.be/stops/205147"], ["https://data.delijn.be/stops/109586", "https://data.delijn.be/stops/109659"], ["https://data.delijn.be/stops/405719", "https://data.delijn.be/stops/410139"], ["https://data.delijn.be/stops/207164", "https://data.delijn.be/stops/303372"], ["https://data.delijn.be/stops/104035", "https://data.delijn.be/stops/104145"], ["https://data.delijn.be/stops/406350", "https://data.delijn.be/stops/408870"], ["https://data.delijn.be/stops/207586", "https://data.delijn.be/stops/208951"], ["https://data.delijn.be/stops/206238", "https://data.delijn.be/stops/207198"], ["https://data.delijn.be/stops/102946", "https://data.delijn.be/stops/109102"], ["https://data.delijn.be/stops/201904", "https://data.delijn.be/stops/202511"], ["https://data.delijn.be/stops/300623", "https://data.delijn.be/stops/300629"], ["https://data.delijn.be/stops/408543", "https://data.delijn.be/stops/408705"], ["https://data.delijn.be/stops/303933", "https://data.delijn.be/stops/304634"], ["https://data.delijn.be/stops/402574", "https://data.delijn.be/stops/408446"], ["https://data.delijn.be/stops/408316", "https://data.delijn.be/stops/408340"], ["https://data.delijn.be/stops/405841", "https://data.delijn.be/stops/405882"], ["https://data.delijn.be/stops/407677", "https://data.delijn.be/stops/408699"], ["https://data.delijn.be/stops/507462", "https://data.delijn.be/stops/507588"], ["https://data.delijn.be/stops/401002", "https://data.delijn.be/stops/401007"], ["https://data.delijn.be/stops/107241", "https://data.delijn.be/stops/107243"], ["https://data.delijn.be/stops/507396", "https://data.delijn.be/stops/507399"], ["https://data.delijn.be/stops/406477", "https://data.delijn.be/stops/407513"], ["https://data.delijn.be/stops/208661", "https://data.delijn.be/stops/208697"], ["https://data.delijn.be/stops/403395", "https://data.delijn.be/stops/403830"], ["https://data.delijn.be/stops/505975", "https://data.delijn.be/stops/509434"], ["https://data.delijn.be/stops/303024", "https://data.delijn.be/stops/303087"], ["https://data.delijn.be/stops/108310", "https://data.delijn.be/stops/108930"], ["https://data.delijn.be/stops/300245", "https://data.delijn.be/stops/305402"], ["https://data.delijn.be/stops/306903", "https://data.delijn.be/stops/308721"], ["https://data.delijn.be/stops/202690", "https://data.delijn.be/stops/203093"], ["https://data.delijn.be/stops/500116", "https://data.delijn.be/stops/505671"], ["https://data.delijn.be/stops/401778", "https://data.delijn.be/stops/401779"], ["https://data.delijn.be/stops/300057", "https://data.delijn.be/stops/300058"], ["https://data.delijn.be/stops/304143", "https://data.delijn.be/stops/304145"], ["https://data.delijn.be/stops/102086", "https://data.delijn.be/stops/108861"], ["https://data.delijn.be/stops/501229", "https://data.delijn.be/stops/501419"], ["https://data.delijn.be/stops/106695", "https://data.delijn.be/stops/106697"], ["https://data.delijn.be/stops/505954", "https://data.delijn.be/stops/508283"], ["https://data.delijn.be/stops/409721", "https://data.delijn.be/stops/409725"], ["https://data.delijn.be/stops/107066", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/201736", "https://data.delijn.be/stops/210108"], ["https://data.delijn.be/stops/502207", "https://data.delijn.be/stops/505844"], ["https://data.delijn.be/stops/109260", "https://data.delijn.be/stops/109261"], ["https://data.delijn.be/stops/203323", "https://data.delijn.be/stops/209640"], ["https://data.delijn.be/stops/200255", "https://data.delijn.be/stops/203562"], ["https://data.delijn.be/stops/102733", "https://data.delijn.be/stops/107065"], ["https://data.delijn.be/stops/302957", "https://data.delijn.be/stops/302959"], ["https://data.delijn.be/stops/101839", "https://data.delijn.be/stops/107620"], ["https://data.delijn.be/stops/502228", "https://data.delijn.be/stops/502229"], ["https://data.delijn.be/stops/407896", "https://data.delijn.be/stops/408023"], ["https://data.delijn.be/stops/504044", "https://data.delijn.be/stops/504047"], ["https://data.delijn.be/stops/202816", "https://data.delijn.be/stops/203461"], ["https://data.delijn.be/stops/203365", "https://data.delijn.be/stops/203997"], ["https://data.delijn.be/stops/207866", "https://data.delijn.be/stops/208748"], ["https://data.delijn.be/stops/408571", "https://data.delijn.be/stops/408817"], ["https://data.delijn.be/stops/403759", "https://data.delijn.be/stops/403781"], ["https://data.delijn.be/stops/304670", "https://data.delijn.be/stops/304677"], ["https://data.delijn.be/stops/103596", "https://data.delijn.be/stops/103604"], ["https://data.delijn.be/stops/303119", "https://data.delijn.be/stops/306316"], ["https://data.delijn.be/stops/103673", "https://data.delijn.be/stops/106255"], ["https://data.delijn.be/stops/504087", "https://data.delijn.be/stops/509087"], ["https://data.delijn.be/stops/207322", "https://data.delijn.be/stops/207914"], ["https://data.delijn.be/stops/506464", "https://data.delijn.be/stops/509797"], ["https://data.delijn.be/stops/400551", "https://data.delijn.be/stops/400630"], ["https://data.delijn.be/stops/101293", "https://data.delijn.be/stops/105387"], ["https://data.delijn.be/stops/504052", "https://data.delijn.be/stops/509052"], ["https://data.delijn.be/stops/204392", "https://data.delijn.be/stops/205415"], ["https://data.delijn.be/stops/106983", "https://data.delijn.be/stops/106985"], ["https://data.delijn.be/stops/508322", "https://data.delijn.be/stops/508324"], ["https://data.delijn.be/stops/102874", "https://data.delijn.be/stops/104990"], ["https://data.delijn.be/stops/305771", "https://data.delijn.be/stops/305773"], ["https://data.delijn.be/stops/106101", "https://data.delijn.be/stops/106103"], ["https://data.delijn.be/stops/504171", "https://data.delijn.be/stops/509354"], ["https://data.delijn.be/stops/502082", "https://data.delijn.be/stops/507079"], ["https://data.delijn.be/stops/108271", "https://data.delijn.be/stops/108273"], ["https://data.delijn.be/stops/305057", "https://data.delijn.be/stops/306931"], ["https://data.delijn.be/stops/303582", "https://data.delijn.be/stops/306396"], ["https://data.delijn.be/stops/206732", "https://data.delijn.be/stops/301673"], ["https://data.delijn.be/stops/403437", "https://data.delijn.be/stops/403498"], ["https://data.delijn.be/stops/505211", "https://data.delijn.be/stops/509402"], ["https://data.delijn.be/stops/104261", "https://data.delijn.be/stops/104262"], ["https://data.delijn.be/stops/408428", "https://data.delijn.be/stops/408665"], ["https://data.delijn.be/stops/502455", "https://data.delijn.be/stops/502820"], ["https://data.delijn.be/stops/207483", "https://data.delijn.be/stops/207823"], ["https://data.delijn.be/stops/300213", "https://data.delijn.be/stops/303735"], ["https://data.delijn.be/stops/206181", "https://data.delijn.be/stops/207181"], ["https://data.delijn.be/stops/401500", "https://data.delijn.be/stops/406808"], ["https://data.delijn.be/stops/407850", "https://data.delijn.be/stops/407908"], ["https://data.delijn.be/stops/407831", "https://data.delijn.be/stops/407835"], ["https://data.delijn.be/stops/202523", "https://data.delijn.be/stops/203523"], ["https://data.delijn.be/stops/404772", "https://data.delijn.be/stops/404776"], ["https://data.delijn.be/stops/409568", "https://data.delijn.be/stops/409573"], ["https://data.delijn.be/stops/503391", "https://data.delijn.be/stops/508068"], ["https://data.delijn.be/stops/302771", "https://data.delijn.be/stops/308119"], ["https://data.delijn.be/stops/403921", "https://data.delijn.be/stops/404014"], ["https://data.delijn.be/stops/106959", "https://data.delijn.be/stops/109512"], ["https://data.delijn.be/stops/405816", "https://data.delijn.be/stops/409712"], ["https://data.delijn.be/stops/300572", "https://data.delijn.be/stops/300613"], ["https://data.delijn.be/stops/407372", "https://data.delijn.be/stops/407471"], ["https://data.delijn.be/stops/502188", "https://data.delijn.be/stops/507321"], ["https://data.delijn.be/stops/507307", "https://data.delijn.be/stops/507309"], ["https://data.delijn.be/stops/107227", "https://data.delijn.be/stops/109900"], ["https://data.delijn.be/stops/401448", "https://data.delijn.be/stops/401547"], ["https://data.delijn.be/stops/508715", "https://data.delijn.be/stops/509871"], ["https://data.delijn.be/stops/200271", "https://data.delijn.be/stops/201372"], ["https://data.delijn.be/stops/104931", "https://data.delijn.be/stops/107838"], ["https://data.delijn.be/stops/402732", "https://data.delijn.be/stops/402733"], ["https://data.delijn.be/stops/307616", "https://data.delijn.be/stops/307618"], ["https://data.delijn.be/stops/206623", "https://data.delijn.be/stops/206759"], ["https://data.delijn.be/stops/406523", "https://data.delijn.be/stops/408477"], ["https://data.delijn.be/stops/503522", "https://data.delijn.be/stops/508522"], ["https://data.delijn.be/stops/303559", "https://data.delijn.be/stops/305559"], ["https://data.delijn.be/stops/201548", "https://data.delijn.be/stops/210528"], ["https://data.delijn.be/stops/108509", "https://data.delijn.be/stops/108510"], ["https://data.delijn.be/stops/505404", "https://data.delijn.be/stops/506077"], ["https://data.delijn.be/stops/202703", "https://data.delijn.be/stops/203705"], ["https://data.delijn.be/stops/401257", "https://data.delijn.be/stops/401339"], ["https://data.delijn.be/stops/505302", "https://data.delijn.be/stops/509597"], ["https://data.delijn.be/stops/503864", "https://data.delijn.be/stops/507957"], ["https://data.delijn.be/stops/406725", "https://data.delijn.be/stops/408367"], ["https://data.delijn.be/stops/405978", "https://data.delijn.be/stops/405979"], ["https://data.delijn.be/stops/105191", "https://data.delijn.be/stops/105193"], ["https://data.delijn.be/stops/501198", "https://data.delijn.be/stops/501528"], ["https://data.delijn.be/stops/405604", "https://data.delijn.be/stops/407797"], ["https://data.delijn.be/stops/302908", "https://data.delijn.be/stops/304318"], ["https://data.delijn.be/stops/302535", "https://data.delijn.be/stops/302546"], ["https://data.delijn.be/stops/106130", "https://data.delijn.be/stops/106131"], ["https://data.delijn.be/stops/401650", "https://data.delijn.be/stops/405392"], ["https://data.delijn.be/stops/200115", "https://data.delijn.be/stops/201115"], ["https://data.delijn.be/stops/103821", "https://data.delijn.be/stops/104215"], ["https://data.delijn.be/stops/403702", "https://data.delijn.be/stops/403728"], ["https://data.delijn.be/stops/405070", "https://data.delijn.be/stops/405112"], ["https://data.delijn.be/stops/103721", "https://data.delijn.be/stops/305816"], ["https://data.delijn.be/stops/503741", "https://data.delijn.be/stops/508703"], ["https://data.delijn.be/stops/408074", "https://data.delijn.be/stops/408075"], ["https://data.delijn.be/stops/106339", "https://data.delijn.be/stops/106341"], ["https://data.delijn.be/stops/410023", "https://data.delijn.be/stops/410024"], ["https://data.delijn.be/stops/503785", "https://data.delijn.be/stops/505272"], ["https://data.delijn.be/stops/306170", "https://data.delijn.be/stops/306171"], ["https://data.delijn.be/stops/503307", "https://data.delijn.be/stops/504859"], ["https://data.delijn.be/stops/404269", "https://data.delijn.be/stops/405551"], ["https://data.delijn.be/stops/400598", "https://data.delijn.be/stops/400599"], ["https://data.delijn.be/stops/300347", "https://data.delijn.be/stops/300399"], ["https://data.delijn.be/stops/306291", "https://data.delijn.be/stops/306292"], ["https://data.delijn.be/stops/302633", "https://data.delijn.be/stops/306044"], ["https://data.delijn.be/stops/303184", "https://data.delijn.be/stops/303197"], ["https://data.delijn.be/stops/200573", "https://data.delijn.be/stops/200962"], ["https://data.delijn.be/stops/300938", "https://data.delijn.be/stops/305914"], ["https://data.delijn.be/stops/304631", "https://data.delijn.be/stops/307819"], ["https://data.delijn.be/stops/103990", "https://data.delijn.be/stops/104635"], ["https://data.delijn.be/stops/104503", "https://data.delijn.be/stops/107930"], ["https://data.delijn.be/stops/308229", "https://data.delijn.be/stops/308233"], ["https://data.delijn.be/stops/506146", "https://data.delijn.be/stops/506644"], ["https://data.delijn.be/stops/105261", "https://data.delijn.be/stops/109975"], ["https://data.delijn.be/stops/302970", "https://data.delijn.be/stops/306713"], ["https://data.delijn.be/stops/202343", "https://data.delijn.be/stops/203343"], ["https://data.delijn.be/stops/102050", "https://data.delijn.be/stops/108030"], ["https://data.delijn.be/stops/505123", "https://data.delijn.be/stops/505124"], ["https://data.delijn.be/stops/106155", "https://data.delijn.be/stops/106156"], ["https://data.delijn.be/stops/409550", "https://data.delijn.be/stops/409556"], ["https://data.delijn.be/stops/406355", "https://data.delijn.be/stops/410044"], ["https://data.delijn.be/stops/503841", "https://data.delijn.be/stops/505848"], ["https://data.delijn.be/stops/308773", "https://data.delijn.be/stops/308774"], ["https://data.delijn.be/stops/407192", "https://data.delijn.be/stops/407193"], ["https://data.delijn.be/stops/209065", "https://data.delijn.be/stops/209066"], ["https://data.delijn.be/stops/502492", "https://data.delijn.be/stops/508339"], ["https://data.delijn.be/stops/302770", "https://data.delijn.be/stops/302781"], ["https://data.delijn.be/stops/406262", "https://data.delijn.be/stops/406266"], ["https://data.delijn.be/stops/300553", "https://data.delijn.be/stops/300555"], ["https://data.delijn.be/stops/300676", "https://data.delijn.be/stops/306745"], ["https://data.delijn.be/stops/205327", "https://data.delijn.be/stops/205495"], ["https://data.delijn.be/stops/405440", "https://data.delijn.be/stops/405458"], ["https://data.delijn.be/stops/405986", "https://data.delijn.be/stops/406134"], ["https://data.delijn.be/stops/302564", "https://data.delijn.be/stops/302596"], ["https://data.delijn.be/stops/106590", "https://data.delijn.be/stops/107279"], ["https://data.delijn.be/stops/106913", "https://data.delijn.be/stops/107263"], ["https://data.delijn.be/stops/306898", "https://data.delijn.be/stops/308124"], ["https://data.delijn.be/stops/402123", "https://data.delijn.be/stops/405490"], ["https://data.delijn.be/stops/104897", "https://data.delijn.be/stops/105314"], ["https://data.delijn.be/stops/303270", "https://data.delijn.be/stops/305725"], ["https://data.delijn.be/stops/103914", "https://data.delijn.be/stops/107241"], ["https://data.delijn.be/stops/504871", "https://data.delijn.be/stops/508719"], ["https://data.delijn.be/stops/303479", "https://data.delijn.be/stops/303508"], ["https://data.delijn.be/stops/105238", "https://data.delijn.be/stops/105839"], ["https://data.delijn.be/stops/305155", "https://data.delijn.be/stops/307101"], ["https://data.delijn.be/stops/302270", "https://data.delijn.be/stops/302979"], ["https://data.delijn.be/stops/504975", "https://data.delijn.be/stops/505556"], ["https://data.delijn.be/stops/301462", "https://data.delijn.be/stops/301493"], ["https://data.delijn.be/stops/406265", "https://data.delijn.be/stops/406426"], ["https://data.delijn.be/stops/201711", "https://data.delijn.be/stops/202809"], ["https://data.delijn.be/stops/206532", "https://data.delijn.be/stops/206533"], ["https://data.delijn.be/stops/300702", "https://data.delijn.be/stops/306943"], ["https://data.delijn.be/stops/301323", "https://data.delijn.be/stops/306190"], ["https://data.delijn.be/stops/409698", "https://data.delijn.be/stops/409700"], ["https://data.delijn.be/stops/204320", "https://data.delijn.be/stops/205362"], ["https://data.delijn.be/stops/504281", "https://data.delijn.be/stops/509616"], ["https://data.delijn.be/stops/405039", "https://data.delijn.be/stops/405056"], ["https://data.delijn.be/stops/504392", "https://data.delijn.be/stops/509712"], ["https://data.delijn.be/stops/101963", "https://data.delijn.be/stops/108766"], ["https://data.delijn.be/stops/401775", "https://data.delijn.be/stops/401785"], ["https://data.delijn.be/stops/405035", "https://data.delijn.be/stops/408373"], ["https://data.delijn.be/stops/308118", "https://data.delijn.be/stops/308121"], ["https://data.delijn.be/stops/201263", "https://data.delijn.be/stops/202546"], ["https://data.delijn.be/stops/301362", "https://data.delijn.be/stops/305530"], ["https://data.delijn.be/stops/300554", "https://data.delijn.be/stops/307859"], ["https://data.delijn.be/stops/202973", "https://data.delijn.be/stops/203166"], ["https://data.delijn.be/stops/406519", "https://data.delijn.be/stops/408712"], ["https://data.delijn.be/stops/206347", "https://data.delijn.be/stops/215809"], ["https://data.delijn.be/stops/500873", "https://data.delijn.be/stops/505208"], ["https://data.delijn.be/stops/102204", "https://data.delijn.be/stops/105643"], ["https://data.delijn.be/stops/406246", "https://data.delijn.be/stops/406291"], ["https://data.delijn.be/stops/401386", "https://data.delijn.be/stops/410175"], ["https://data.delijn.be/stops/403943", "https://data.delijn.be/stops/403951"], ["https://data.delijn.be/stops/202264", "https://data.delijn.be/stops/203264"], ["https://data.delijn.be/stops/106084", "https://data.delijn.be/stops/106135"], ["https://data.delijn.be/stops/508914", "https://data.delijn.be/stops/508917"], ["https://data.delijn.be/stops/105407", "https://data.delijn.be/stops/105833"], ["https://data.delijn.be/stops/401543", "https://data.delijn.be/stops/401897"], ["https://data.delijn.be/stops/304482", "https://data.delijn.be/stops/304509"], ["https://data.delijn.be/stops/402715", "https://data.delijn.be/stops/307789"], ["https://data.delijn.be/stops/409465", "https://data.delijn.be/stops/409467"], ["https://data.delijn.be/stops/503582", "https://data.delijn.be/stops/508556"], ["https://data.delijn.be/stops/404862", "https://data.delijn.be/stops/404966"], ["https://data.delijn.be/stops/400684", "https://data.delijn.be/stops/406646"], ["https://data.delijn.be/stops/304802", "https://data.delijn.be/stops/304809"], ["https://data.delijn.be/stops/402749", "https://data.delijn.be/stops/405239"], ["https://data.delijn.be/stops/503097", "https://data.delijn.be/stops/508096"], ["https://data.delijn.be/stops/307356", "https://data.delijn.be/stops/307358"], ["https://data.delijn.be/stops/502362", "https://data.delijn.be/stops/505016"], ["https://data.delijn.be/stops/206063", "https://data.delijn.be/stops/206501"], ["https://data.delijn.be/stops/103618", "https://data.delijn.be/stops/103679"], ["https://data.delijn.be/stops/207271", "https://data.delijn.be/stops/207272"], ["https://data.delijn.be/stops/504246", "https://data.delijn.be/stops/504247"], ["https://data.delijn.be/stops/406601", "https://data.delijn.be/stops/406698"], ["https://data.delijn.be/stops/300920", "https://data.delijn.be/stops/305889"], ["https://data.delijn.be/stops/503467", "https://data.delijn.be/stops/508978"], ["https://data.delijn.be/stops/303395", "https://data.delijn.be/stops/307135"], ["https://data.delijn.be/stops/201760", "https://data.delijn.be/stops/219006"], ["https://data.delijn.be/stops/503238", "https://data.delijn.be/stops/509792"], ["https://data.delijn.be/stops/402965", "https://data.delijn.be/stops/402967"], ["https://data.delijn.be/stops/305466", "https://data.delijn.be/stops/307142"], ["https://data.delijn.be/stops/307080", "https://data.delijn.be/stops/307145"], ["https://data.delijn.be/stops/107143", "https://data.delijn.be/stops/108926"], ["https://data.delijn.be/stops/104470", "https://data.delijn.be/stops/104655"], ["https://data.delijn.be/stops/404723", "https://data.delijn.be/stops/404753"], ["https://data.delijn.be/stops/403292", "https://data.delijn.be/stops/404979"], ["https://data.delijn.be/stops/504523", "https://data.delijn.be/stops/509523"], ["https://data.delijn.be/stops/503230", "https://data.delijn.be/stops/508263"], ["https://data.delijn.be/stops/507421", "https://data.delijn.be/stops/507424"], ["https://data.delijn.be/stops/500009", "https://data.delijn.be/stops/502769"], ["https://data.delijn.be/stops/407470", "https://data.delijn.be/stops/407493"], ["https://data.delijn.be/stops/200016", "https://data.delijn.be/stops/201512"], ["https://data.delijn.be/stops/304171", "https://data.delijn.be/stops/307546"], ["https://data.delijn.be/stops/403457", "https://data.delijn.be/stops/403565"], ["https://data.delijn.be/stops/105241", "https://data.delijn.be/stops/105247"], ["https://data.delijn.be/stops/206077", "https://data.delijn.be/stops/207294"], ["https://data.delijn.be/stops/502646", "https://data.delijn.be/stops/507646"], ["https://data.delijn.be/stops/300561", "https://data.delijn.be/stops/307857"], ["https://data.delijn.be/stops/502918", "https://data.delijn.be/stops/505579"], ["https://data.delijn.be/stops/307203", "https://data.delijn.be/stops/307205"], ["https://data.delijn.be/stops/403892", "https://data.delijn.be/stops/403894"], ["https://data.delijn.be/stops/206345", "https://data.delijn.be/stops/207717"], ["https://data.delijn.be/stops/405093", "https://data.delijn.be/stops/405664"], ["https://data.delijn.be/stops/102205", "https://data.delijn.be/stops/104535"], ["https://data.delijn.be/stops/407058", "https://data.delijn.be/stops/407069"], ["https://data.delijn.be/stops/502379", "https://data.delijn.be/stops/507379"], ["https://data.delijn.be/stops/409383", "https://data.delijn.be/stops/409442"], ["https://data.delijn.be/stops/301824", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/206092", "https://data.delijn.be/stops/206146"], ["https://data.delijn.be/stops/202047", "https://data.delijn.be/stops/202138"], ["https://data.delijn.be/stops/405922", "https://data.delijn.be/stops/405976"], ["https://data.delijn.be/stops/307638", "https://data.delijn.be/stops/307639"], ["https://data.delijn.be/stops/107306", "https://data.delijn.be/stops/107307"], ["https://data.delijn.be/stops/304385", "https://data.delijn.be/stops/307417"], ["https://data.delijn.be/stops/402805", "https://data.delijn.be/stops/406129"], ["https://data.delijn.be/stops/101987", "https://data.delijn.be/stops/105010"], ["https://data.delijn.be/stops/204647", "https://data.delijn.be/stops/205613"], ["https://data.delijn.be/stops/304896", "https://data.delijn.be/stops/304905"], ["https://data.delijn.be/stops/403638", "https://data.delijn.be/stops/403820"], ["https://data.delijn.be/stops/502008", "https://data.delijn.be/stops/505203"], ["https://data.delijn.be/stops/209308", "https://data.delijn.be/stops/505973"], ["https://data.delijn.be/stops/304579", "https://data.delijn.be/stops/308683"], ["https://data.delijn.be/stops/402133", "https://data.delijn.be/stops/410101"], ["https://data.delijn.be/stops/202340", "https://data.delijn.be/stops/202849"], ["https://data.delijn.be/stops/205985", "https://data.delijn.be/stops/206577"], ["https://data.delijn.be/stops/201244", "https://data.delijn.be/stops/202000"], ["https://data.delijn.be/stops/108429", "https://data.delijn.be/stops/108431"], ["https://data.delijn.be/stops/106860", "https://data.delijn.be/stops/106861"], ["https://data.delijn.be/stops/503042", "https://data.delijn.be/stops/509205"], ["https://data.delijn.be/stops/402896", "https://data.delijn.be/stops/405536"], ["https://data.delijn.be/stops/101954", "https://data.delijn.be/stops/108307"], ["https://data.delijn.be/stops/304548", "https://data.delijn.be/stops/304640"], ["https://data.delijn.be/stops/301924", "https://data.delijn.be/stops/307820"], ["https://data.delijn.be/stops/209192", "https://data.delijn.be/stops/209499"], ["https://data.delijn.be/stops/409494", "https://data.delijn.be/stops/409496"], ["https://data.delijn.be/stops/206649", "https://data.delijn.be/stops/207869"], ["https://data.delijn.be/stops/104825", "https://data.delijn.be/stops/105200"], ["https://data.delijn.be/stops/500556", "https://data.delijn.be/stops/507944"], ["https://data.delijn.be/stops/402842", "https://data.delijn.be/stops/409881"], ["https://data.delijn.be/stops/400238", "https://data.delijn.be/stops/406283"], ["https://data.delijn.be/stops/208366", "https://data.delijn.be/stops/208777"], ["https://data.delijn.be/stops/104883", "https://data.delijn.be/stops/104886"], ["https://data.delijn.be/stops/500012", "https://data.delijn.be/stops/505833"], ["https://data.delijn.be/stops/101831", "https://data.delijn.be/stops/107332"], ["https://data.delijn.be/stops/501536", "https://data.delijn.be/stops/506463"], ["https://data.delijn.be/stops/202176", "https://data.delijn.be/stops/202497"], ["https://data.delijn.be/stops/504796", "https://data.delijn.be/stops/504802"], ["https://data.delijn.be/stops/400773", "https://data.delijn.be/stops/409621"], ["https://data.delijn.be/stops/207192", "https://data.delijn.be/stops/207222"], ["https://data.delijn.be/stops/402393", "https://data.delijn.be/stops/407494"], ["https://data.delijn.be/stops/101632", "https://data.delijn.be/stops/109745"], ["https://data.delijn.be/stops/501778", "https://data.delijn.be/stops/506456"], ["https://data.delijn.be/stops/502171", "https://data.delijn.be/stops/502540"], ["https://data.delijn.be/stops/508686", "https://data.delijn.be/stops/508687"], ["https://data.delijn.be/stops/200933", "https://data.delijn.be/stops/203266"], ["https://data.delijn.be/stops/108698", "https://data.delijn.be/stops/108852"], ["https://data.delijn.be/stops/101378", "https://data.delijn.be/stops/109714"], ["https://data.delijn.be/stops/404355", "https://data.delijn.be/stops/404366"], ["https://data.delijn.be/stops/108924", "https://data.delijn.be/stops/108926"], ["https://data.delijn.be/stops/204131", "https://data.delijn.be/stops/204143"], ["https://data.delijn.be/stops/505223", "https://data.delijn.be/stops/506464"], ["https://data.delijn.be/stops/404680", "https://data.delijn.be/stops/408726"], ["https://data.delijn.be/stops/206963", "https://data.delijn.be/stops/207963"], ["https://data.delijn.be/stops/206371", "https://data.delijn.be/stops/206372"], ["https://data.delijn.be/stops/108427", "https://data.delijn.be/stops/108429"], ["https://data.delijn.be/stops/504012", "https://data.delijn.be/stops/504725"], ["https://data.delijn.be/stops/405836", "https://data.delijn.be/stops/405837"], ["https://data.delijn.be/stops/206760", "https://data.delijn.be/stops/206803"], ["https://data.delijn.be/stops/305168", "https://data.delijn.be/stops/305207"], ["https://data.delijn.be/stops/302512", "https://data.delijn.be/stops/305873"], ["https://data.delijn.be/stops/505250", "https://data.delijn.be/stops/505254"], ["https://data.delijn.be/stops/400010", "https://data.delijn.be/stops/400025"], ["https://data.delijn.be/stops/201719", "https://data.delijn.be/stops/202029"], ["https://data.delijn.be/stops/200694", "https://data.delijn.be/stops/200850"], ["https://data.delijn.be/stops/302993", "https://data.delijn.be/stops/306298"], ["https://data.delijn.be/stops/409710", "https://data.delijn.be/stops/409713"], ["https://data.delijn.be/stops/106911", "https://data.delijn.be/stops/107254"], ["https://data.delijn.be/stops/301503", "https://data.delijn.be/stops/301504"], ["https://data.delijn.be/stops/505680", "https://data.delijn.be/stops/505682"], ["https://data.delijn.be/stops/206747", "https://data.delijn.be/stops/207337"], ["https://data.delijn.be/stops/502319", "https://data.delijn.be/stops/507711"], ["https://data.delijn.be/stops/208214", "https://data.delijn.be/stops/209429"], ["https://data.delijn.be/stops/402158", "https://data.delijn.be/stops/402159"], ["https://data.delijn.be/stops/302479", "https://data.delijn.be/stops/308874"], ["https://data.delijn.be/stops/103989", "https://data.delijn.be/stops/109094"], ["https://data.delijn.be/stops/503832", "https://data.delijn.be/stops/503834"], ["https://data.delijn.be/stops/103326", "https://data.delijn.be/stops/103399"], ["https://data.delijn.be/stops/503039", "https://data.delijn.be/stops/508043"], ["https://data.delijn.be/stops/404750", "https://data.delijn.be/stops/404751"], ["https://data.delijn.be/stops/203652", "https://data.delijn.be/stops/203653"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/402621"], ["https://data.delijn.be/stops/202783", "https://data.delijn.be/stops/203783"], ["https://data.delijn.be/stops/503077", "https://data.delijn.be/stops/503680"], ["https://data.delijn.be/stops/106826", "https://data.delijn.be/stops/106828"], ["https://data.delijn.be/stops/208814", "https://data.delijn.be/stops/209199"], ["https://data.delijn.be/stops/401345", "https://data.delijn.be/stops/401364"], ["https://data.delijn.be/stops/407648", "https://data.delijn.be/stops/407673"], ["https://data.delijn.be/stops/301920", "https://data.delijn.be/stops/301924"], ["https://data.delijn.be/stops/400551", "https://data.delijn.be/stops/403062"], ["https://data.delijn.be/stops/405499", "https://data.delijn.be/stops/407850"], ["https://data.delijn.be/stops/302676", "https://data.delijn.be/stops/302690"], ["https://data.delijn.be/stops/202552", "https://data.delijn.be/stops/202608"], ["https://data.delijn.be/stops/206156", "https://data.delijn.be/stops/207116"], ["https://data.delijn.be/stops/403127", "https://data.delijn.be/stops/403135"], ["https://data.delijn.be/stops/103909", "https://data.delijn.be/stops/105642"], ["https://data.delijn.be/stops/101358", "https://data.delijn.be/stops/104348"], ["https://data.delijn.be/stops/503914", "https://data.delijn.be/stops/503998"], ["https://data.delijn.be/stops/505266", "https://data.delijn.be/stops/507715"], ["https://data.delijn.be/stops/305622", "https://data.delijn.be/stops/305640"], ["https://data.delijn.be/stops/503336", "https://data.delijn.be/stops/508336"], ["https://data.delijn.be/stops/303182", "https://data.delijn.be/stops/303183"], ["https://data.delijn.be/stops/404714", "https://data.delijn.be/stops/404768"], ["https://data.delijn.be/stops/103515", "https://data.delijn.be/stops/104565"], ["https://data.delijn.be/stops/503981", "https://data.delijn.be/stops/508634"], ["https://data.delijn.be/stops/202112", "https://data.delijn.be/stops/205584"], ["https://data.delijn.be/stops/103310", "https://data.delijn.be/stops/107010"], ["https://data.delijn.be/stops/404051", "https://data.delijn.be/stops/404052"], ["https://data.delijn.be/stops/200465", "https://data.delijn.be/stops/200674"], ["https://data.delijn.be/stops/102389", "https://data.delijn.be/stops/107030"], ["https://data.delijn.be/stops/104643", "https://data.delijn.be/stops/107965"], ["https://data.delijn.be/stops/101906", "https://data.delijn.be/stops/107018"], ["https://data.delijn.be/stops/400784", "https://data.delijn.be/stops/400785"], ["https://data.delijn.be/stops/104760", "https://data.delijn.be/stops/108900"], ["https://data.delijn.be/stops/101476", "https://data.delijn.be/stops/108736"], ["https://data.delijn.be/stops/303030", "https://data.delijn.be/stops/307895"], ["https://data.delijn.be/stops/409236", "https://data.delijn.be/stops/409245"], ["https://data.delijn.be/stops/300286", "https://data.delijn.be/stops/301314"], ["https://data.delijn.be/stops/200463", "https://data.delijn.be/stops/200662"], ["https://data.delijn.be/stops/505206", "https://data.delijn.be/stops/509089"], ["https://data.delijn.be/stops/404306", "https://data.delijn.be/stops/404331"], ["https://data.delijn.be/stops/504477", "https://data.delijn.be/stops/504479"], ["https://data.delijn.be/stops/201864", "https://data.delijn.be/stops/202033"], ["https://data.delijn.be/stops/101045", "https://data.delijn.be/stops/101166"], ["https://data.delijn.be/stops/302552", "https://data.delijn.be/stops/306589"], ["https://data.delijn.be/stops/305445", "https://data.delijn.be/stops/307933"], ["https://data.delijn.be/stops/503924", "https://data.delijn.be/stops/507798"], ["https://data.delijn.be/stops/507818", "https://data.delijn.be/stops/508360"], ["https://data.delijn.be/stops/102955", "https://data.delijn.be/stops/104675"], ["https://data.delijn.be/stops/104507", "https://data.delijn.be/stops/107923"], ["https://data.delijn.be/stops/201082", "https://data.delijn.be/stops/208722"], ["https://data.delijn.be/stops/408016", "https://data.delijn.be/stops/408019"], ["https://data.delijn.be/stops/402221", "https://data.delijn.be/stops/402383"], ["https://data.delijn.be/stops/401762", "https://data.delijn.be/stops/406137"], ["https://data.delijn.be/stops/407651", "https://data.delijn.be/stops/409879"], ["https://data.delijn.be/stops/200087", "https://data.delijn.be/stops/202771"], ["https://data.delijn.be/stops/504666", "https://data.delijn.be/stops/509895"], ["https://data.delijn.be/stops/200722", "https://data.delijn.be/stops/203408"], ["https://data.delijn.be/stops/507495", "https://data.delijn.be/stops/507734"], ["https://data.delijn.be/stops/203109", "https://data.delijn.be/stops/203184"], ["https://data.delijn.be/stops/405042", "https://data.delijn.be/stops/405051"], ["https://data.delijn.be/stops/305590", "https://data.delijn.be/stops/307514"], ["https://data.delijn.be/stops/301791", "https://data.delijn.be/stops/301795"], ["https://data.delijn.be/stops/303319", "https://data.delijn.be/stops/303333"], ["https://data.delijn.be/stops/102963", "https://data.delijn.be/stops/109898"], ["https://data.delijn.be/stops/109496", "https://data.delijn.be/stops/305625"], ["https://data.delijn.be/stops/203427", "https://data.delijn.be/stops/203816"], ["https://data.delijn.be/stops/503850", "https://data.delijn.be/stops/508850"], ["https://data.delijn.be/stops/105202", "https://data.delijn.be/stops/108059"], ["https://data.delijn.be/stops/204376", "https://data.delijn.be/stops/204418"], ["https://data.delijn.be/stops/304314", "https://data.delijn.be/stops/304322"], ["https://data.delijn.be/stops/505761", "https://data.delijn.be/stops/507757"], ["https://data.delijn.be/stops/504418", "https://data.delijn.be/stops/504516"], ["https://data.delijn.be/stops/509417", "https://data.delijn.be/stops/509437"], ["https://data.delijn.be/stops/403744", "https://data.delijn.be/stops/403819"], ["https://data.delijn.be/stops/102172", "https://data.delijn.be/stops/108098"], ["https://data.delijn.be/stops/102089", "https://data.delijn.be/stops/106811"], ["https://data.delijn.be/stops/103333", "https://data.delijn.be/stops/106508"], ["https://data.delijn.be/stops/107010", "https://data.delijn.be/stops/108655"], ["https://data.delijn.be/stops/504380", "https://data.delijn.be/stops/504382"], ["https://data.delijn.be/stops/402042", "https://data.delijn.be/stops/402457"], ["https://data.delijn.be/stops/301562", "https://data.delijn.be/stops/301563"], ["https://data.delijn.be/stops/301213", "https://data.delijn.be/stops/301216"], ["https://data.delijn.be/stops/406289", "https://data.delijn.be/stops/406443"], ["https://data.delijn.be/stops/105909", "https://data.delijn.be/stops/109745"], ["https://data.delijn.be/stops/402602", "https://data.delijn.be/stops/402649"], ["https://data.delijn.be/stops/400920", "https://data.delijn.be/stops/400962"], ["https://data.delijn.be/stops/302179", "https://data.delijn.be/stops/305160"], ["https://data.delijn.be/stops/301723", "https://data.delijn.be/stops/301726"], ["https://data.delijn.be/stops/501247", "https://data.delijn.be/stops/501549"], ["https://data.delijn.be/stops/208770", "https://data.delijn.be/stops/209770"], ["https://data.delijn.be/stops/201706", "https://data.delijn.be/stops/202445"], ["https://data.delijn.be/stops/403278", "https://data.delijn.be/stops/403518"], ["https://data.delijn.be/stops/403124", "https://data.delijn.be/stops/403177"], ["https://data.delijn.be/stops/200807", "https://data.delijn.be/stops/203436"], ["https://data.delijn.be/stops/102746", "https://data.delijn.be/stops/107288"], ["https://data.delijn.be/stops/204622", "https://data.delijn.be/stops/205336"], ["https://data.delijn.be/stops/206713", "https://data.delijn.be/stops/206740"], ["https://data.delijn.be/stops/206540", "https://data.delijn.be/stops/207540"], ["https://data.delijn.be/stops/105014", "https://data.delijn.be/stops/105108"], ["https://data.delijn.be/stops/505019", "https://data.delijn.be/stops/507663"], ["https://data.delijn.be/stops/102321", "https://data.delijn.be/stops/107485"], ["https://data.delijn.be/stops/503985", "https://data.delijn.be/stops/509936"], ["https://data.delijn.be/stops/501733", "https://data.delijn.be/stops/506436"], ["https://data.delijn.be/stops/405734", "https://data.delijn.be/stops/405735"], ["https://data.delijn.be/stops/106512", "https://data.delijn.be/stops/106521"], ["https://data.delijn.be/stops/305078", "https://data.delijn.be/stops/306952"], ["https://data.delijn.be/stops/201863", "https://data.delijn.be/stops/202425"], ["https://data.delijn.be/stops/502475", "https://data.delijn.be/stops/502918"], ["https://data.delijn.be/stops/101822", "https://data.delijn.be/stops/107026"], ["https://data.delijn.be/stops/505364", "https://data.delijn.be/stops/505933"], ["https://data.delijn.be/stops/206261", "https://data.delijn.be/stops/207262"], ["https://data.delijn.be/stops/300347", "https://data.delijn.be/stops/300350"], ["https://data.delijn.be/stops/401500", "https://data.delijn.be/stops/401501"], ["https://data.delijn.be/stops/103991", "https://data.delijn.be/stops/104897"], ["https://data.delijn.be/stops/403307", "https://data.delijn.be/stops/403415"], ["https://data.delijn.be/stops/106276", "https://data.delijn.be/stops/109634"], ["https://data.delijn.be/stops/201814", "https://data.delijn.be/stops/209253"], ["https://data.delijn.be/stops/202280", "https://data.delijn.be/stops/203056"], ["https://data.delijn.be/stops/504254", "https://data.delijn.be/stops/509254"], ["https://data.delijn.be/stops/102960", "https://data.delijn.be/stops/104999"], ["https://data.delijn.be/stops/406570", "https://data.delijn.be/stops/406571"], ["https://data.delijn.be/stops/305716", "https://data.delijn.be/stops/305717"], ["https://data.delijn.be/stops/206225", "https://data.delijn.be/stops/300188"], ["https://data.delijn.be/stops/501549", "https://data.delijn.be/stops/501558"], ["https://data.delijn.be/stops/403177", "https://data.delijn.be/stops/403228"], ["https://data.delijn.be/stops/109043", "https://data.delijn.be/stops/109047"], ["https://data.delijn.be/stops/200052", "https://data.delijn.be/stops/211118"], ["https://data.delijn.be/stops/503933", "https://data.delijn.be/stops/508920"], ["https://data.delijn.be/stops/202242", "https://data.delijn.be/stops/203148"], ["https://data.delijn.be/stops/101574", "https://data.delijn.be/stops/103982"], ["https://data.delijn.be/stops/208846", "https://data.delijn.be/stops/209846"], ["https://data.delijn.be/stops/503881", "https://data.delijn.be/stops/508881"], ["https://data.delijn.be/stops/204797", "https://data.delijn.be/stops/204799"], ["https://data.delijn.be/stops/504093", "https://data.delijn.be/stops/505195"], ["https://data.delijn.be/stops/300886", "https://data.delijn.be/stops/333454"], ["https://data.delijn.be/stops/401203", "https://data.delijn.be/stops/401349"], ["https://data.delijn.be/stops/301306", "https://data.delijn.be/stops/306149"], ["https://data.delijn.be/stops/303994", "https://data.delijn.be/stops/304178"], ["https://data.delijn.be/stops/205245", "https://data.delijn.be/stops/205905"], ["https://data.delijn.be/stops/402756", "https://data.delijn.be/stops/408393"], ["https://data.delijn.be/stops/500002", "https://data.delijn.be/stops/508665"], ["https://data.delijn.be/stops/302563", "https://data.delijn.be/stops/302564"], ["https://data.delijn.be/stops/300227", "https://data.delijn.be/stops/302115"], ["https://data.delijn.be/stops/401470", "https://data.delijn.be/stops/401897"], ["https://data.delijn.be/stops/204403", "https://data.delijn.be/stops/205403"], ["https://data.delijn.be/stops/407452", "https://data.delijn.be/stops/407458"], ["https://data.delijn.be/stops/403446", "https://data.delijn.be/stops/409273"], ["https://data.delijn.be/stops/103118", "https://data.delijn.be/stops/108370"], ["https://data.delijn.be/stops/305181", "https://data.delijn.be/stops/305182"], ["https://data.delijn.be/stops/202964", "https://data.delijn.be/stops/203964"], ["https://data.delijn.be/stops/403305", "https://data.delijn.be/stops/409173"], ["https://data.delijn.be/stops/503235", "https://data.delijn.be/stops/508235"], ["https://data.delijn.be/stops/503115", "https://data.delijn.be/stops/504848"], ["https://data.delijn.be/stops/208165", "https://data.delijn.be/stops/209164"], ["https://data.delijn.be/stops/200267", "https://data.delijn.be/stops/201225"], ["https://data.delijn.be/stops/103339", "https://data.delijn.be/stops/103955"], ["https://data.delijn.be/stops/504124", "https://data.delijn.be/stops/504746"], ["https://data.delijn.be/stops/201860", "https://data.delijn.be/stops/203671"], ["https://data.delijn.be/stops/104431", "https://data.delijn.be/stops/106784"], ["https://data.delijn.be/stops/304208", "https://data.delijn.be/stops/306003"], ["https://data.delijn.be/stops/400078", "https://data.delijn.be/stops/400150"], ["https://data.delijn.be/stops/202579", "https://data.delijn.be/stops/203581"], ["https://data.delijn.be/stops/305388", "https://data.delijn.be/stops/307791"], ["https://data.delijn.be/stops/105491", "https://data.delijn.be/stops/105493"], ["https://data.delijn.be/stops/506150", "https://data.delijn.be/stops/509838"], ["https://data.delijn.be/stops/205237", "https://data.delijn.be/stops/207239"], ["https://data.delijn.be/stops/101919", "https://data.delijn.be/stops/106997"], ["https://data.delijn.be/stops/102200", "https://data.delijn.be/stops/104008"], ["https://data.delijn.be/stops/410067", "https://data.delijn.be/stops/410068"], ["https://data.delijn.be/stops/302946", "https://data.delijn.be/stops/302962"], ["https://data.delijn.be/stops/302633", "https://data.delijn.be/stops/302641"], ["https://data.delijn.be/stops/200948", "https://data.delijn.be/stops/208857"], ["https://data.delijn.be/stops/101085", "https://data.delijn.be/stops/103585"], ["https://data.delijn.be/stops/207541", "https://data.delijn.be/stops/207561"], ["https://data.delijn.be/stops/504370", "https://data.delijn.be/stops/509363"], ["https://data.delijn.be/stops/208417", "https://data.delijn.be/stops/208745"], ["https://data.delijn.be/stops/209675", "https://data.delijn.be/stops/209754"], ["https://data.delijn.be/stops/501401", "https://data.delijn.be/stops/509896"], ["https://data.delijn.be/stops/503111", "https://data.delijn.be/stops/508111"], ["https://data.delijn.be/stops/300536", "https://data.delijn.be/stops/302340"], ["https://data.delijn.be/stops/405003", "https://data.delijn.be/stops/408923"], ["https://data.delijn.be/stops/301122", "https://data.delijn.be/stops/301133"], ["https://data.delijn.be/stops/303705", "https://data.delijn.be/stops/303740"], ["https://data.delijn.be/stops/200982", "https://data.delijn.be/stops/203921"], ["https://data.delijn.be/stops/501538", "https://data.delijn.be/stops/505404"], ["https://data.delijn.be/stops/504570", "https://data.delijn.be/stops/509081"], ["https://data.delijn.be/stops/405696", "https://data.delijn.be/stops/405924"], ["https://data.delijn.be/stops/203970", "https://data.delijn.be/stops/205092"], ["https://data.delijn.be/stops/406826", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/505952", "https://data.delijn.be/stops/508289"], ["https://data.delijn.be/stops/300010", "https://data.delijn.be/stops/304257"], ["https://data.delijn.be/stops/502283", "https://data.delijn.be/stops/502322"], ["https://data.delijn.be/stops/401011", "https://data.delijn.be/stops/401059"], ["https://data.delijn.be/stops/505579", "https://data.delijn.be/stops/507481"], ["https://data.delijn.be/stops/208812", "https://data.delijn.be/stops/208813"], ["https://data.delijn.be/stops/204729", "https://data.delijn.be/stops/205759"], ["https://data.delijn.be/stops/407692", "https://data.delijn.be/stops/407698"], ["https://data.delijn.be/stops/304730", "https://data.delijn.be/stops/308699"], ["https://data.delijn.be/stops/204218", "https://data.delijn.be/stops/205178"], ["https://data.delijn.be/stops/302330", "https://data.delijn.be/stops/304099"], ["https://data.delijn.be/stops/503605", "https://data.delijn.be/stops/503614"], ["https://data.delijn.be/stops/204798", "https://data.delijn.be/stops/205484"], ["https://data.delijn.be/stops/502578", "https://data.delijn.be/stops/502581"], ["https://data.delijn.be/stops/407912", "https://data.delijn.be/stops/407913"], ["https://data.delijn.be/stops/202149", "https://data.delijn.be/stops/202242"], ["https://data.delijn.be/stops/200732", "https://data.delijn.be/stops/202628"], ["https://data.delijn.be/stops/503845", "https://data.delijn.be/stops/504995"], ["https://data.delijn.be/stops/306685", "https://data.delijn.be/stops/306686"], ["https://data.delijn.be/stops/102882", "https://data.delijn.be/stops/108681"], ["https://data.delijn.be/stops/106254", "https://data.delijn.be/stops/109902"], ["https://data.delijn.be/stops/208802", "https://data.delijn.be/stops/209210"], ["https://data.delijn.be/stops/300272", "https://data.delijn.be/stops/307497"], ["https://data.delijn.be/stops/403132", "https://data.delijn.be/stops/403410"], ["https://data.delijn.be/stops/106579", "https://data.delijn.be/stops/108440"], ["https://data.delijn.be/stops/101799", "https://data.delijn.be/stops/108510"], ["https://data.delijn.be/stops/107224", "https://data.delijn.be/stops/109885"], ["https://data.delijn.be/stops/202480", "https://data.delijn.be/stops/202954"], ["https://data.delijn.be/stops/303566", "https://data.delijn.be/stops/307987"], ["https://data.delijn.be/stops/301517", "https://data.delijn.be/stops/301526"], ["https://data.delijn.be/stops/102514", "https://data.delijn.be/stops/405607"], ["https://data.delijn.be/stops/106020", "https://data.delijn.be/stops/106021"], ["https://data.delijn.be/stops/302349", "https://data.delijn.be/stops/302750"], ["https://data.delijn.be/stops/403634", "https://data.delijn.be/stops/403648"], ["https://data.delijn.be/stops/108197", "https://data.delijn.be/stops/108198"], ["https://data.delijn.be/stops/407044", "https://data.delijn.be/stops/407047"], ["https://data.delijn.be/stops/102547", "https://data.delijn.be/stops/402283"], ["https://data.delijn.be/stops/305235", "https://data.delijn.be/stops/305304"], ["https://data.delijn.be/stops/406700", "https://data.delijn.be/stops/406987"], ["https://data.delijn.be/stops/304174", "https://data.delijn.be/stops/304685"], ["https://data.delijn.be/stops/505704", "https://data.delijn.be/stops/507264"], ["https://data.delijn.be/stops/505378", "https://data.delijn.be/stops/505579"], ["https://data.delijn.be/stops/102984", "https://data.delijn.be/stops/105169"], ["https://data.delijn.be/stops/400574", "https://data.delijn.be/stops/403005"], ["https://data.delijn.be/stops/507187", "https://data.delijn.be/stops/507683"], ["https://data.delijn.be/stops/105844", "https://data.delijn.be/stops/105846"], ["https://data.delijn.be/stops/103570", "https://data.delijn.be/stops/107139"], ["https://data.delijn.be/stops/104093", "https://data.delijn.be/stops/109391"], ["https://data.delijn.be/stops/102120", "https://data.delijn.be/stops/105885"], ["https://data.delijn.be/stops/504726", "https://data.delijn.be/stops/509637"], ["https://data.delijn.be/stops/300101", "https://data.delijn.be/stops/306851"], ["https://data.delijn.be/stops/401030", "https://data.delijn.be/stops/401115"], ["https://data.delijn.be/stops/400845", "https://data.delijn.be/stops/409568"], ["https://data.delijn.be/stops/203313", "https://data.delijn.be/stops/505753"], ["https://data.delijn.be/stops/102474", "https://data.delijn.be/stops/406855"], ["https://data.delijn.be/stops/206962", "https://data.delijn.be/stops/207040"], ["https://data.delijn.be/stops/405489", "https://data.delijn.be/stops/405492"], ["https://data.delijn.be/stops/504257", "https://data.delijn.be/stops/509257"], ["https://data.delijn.be/stops/408454", "https://data.delijn.be/stops/409162"], ["https://data.delijn.be/stops/103313", "https://data.delijn.be/stops/109419"], ["https://data.delijn.be/stops/105602", "https://data.delijn.be/stops/105603"], ["https://data.delijn.be/stops/300702", "https://data.delijn.be/stops/300708"], ["https://data.delijn.be/stops/210092", "https://data.delijn.be/stops/211050"], ["https://data.delijn.be/stops/206931", "https://data.delijn.be/stops/207911"], ["https://data.delijn.be/stops/400911", "https://data.delijn.be/stops/400963"], ["https://data.delijn.be/stops/300703", "https://data.delijn.be/stops/308068"], ["https://data.delijn.be/stops/105053", "https://data.delijn.be/stops/306810"], ["https://data.delijn.be/stops/504591", "https://data.delijn.be/stops/509596"], ["https://data.delijn.be/stops/509154", "https://data.delijn.be/stops/509166"], ["https://data.delijn.be/stops/502746", "https://data.delijn.be/stops/505344"], ["https://data.delijn.be/stops/300169", "https://data.delijn.be/stops/300170"], ["https://data.delijn.be/stops/305525", "https://data.delijn.be/stops/305526"], ["https://data.delijn.be/stops/501103", "https://data.delijn.be/stops/501438"], ["https://data.delijn.be/stops/503788", "https://data.delijn.be/stops/503790"], ["https://data.delijn.be/stops/506438", "https://data.delijn.be/stops/506440"], ["https://data.delijn.be/stops/107641", "https://data.delijn.be/stops/108837"], ["https://data.delijn.be/stops/208527", "https://data.delijn.be/stops/209517"], ["https://data.delijn.be/stops/503707", "https://data.delijn.be/stops/508065"], ["https://data.delijn.be/stops/300267", "https://data.delijn.be/stops/302150"], ["https://data.delijn.be/stops/106327", "https://data.delijn.be/stops/106330"], ["https://data.delijn.be/stops/409386", "https://data.delijn.be/stops/409439"], ["https://data.delijn.be/stops/202882", "https://data.delijn.be/stops/209746"], ["https://data.delijn.be/stops/105436", "https://data.delijn.be/stops/109980"], ["https://data.delijn.be/stops/207209", "https://data.delijn.be/stops/207722"], ["https://data.delijn.be/stops/207691", "https://data.delijn.be/stops/207954"], ["https://data.delijn.be/stops/201028", "https://data.delijn.be/stops/201447"], ["https://data.delijn.be/stops/509299", "https://data.delijn.be/stops/509860"], ["https://data.delijn.be/stops/101655", "https://data.delijn.be/stops/107856"], ["https://data.delijn.be/stops/109272", "https://data.delijn.be/stops/109273"], ["https://data.delijn.be/stops/101390", "https://data.delijn.be/stops/102391"], ["https://data.delijn.be/stops/505664", "https://data.delijn.be/stops/509701"], ["https://data.delijn.be/stops/502177", "https://data.delijn.be/stops/507179"], ["https://data.delijn.be/stops/104563", "https://data.delijn.be/stops/107482"], ["https://data.delijn.be/stops/204795", "https://data.delijn.be/stops/205092"], ["https://data.delijn.be/stops/204259", "https://data.delijn.be/stops/205466"], ["https://data.delijn.be/stops/405456", "https://data.delijn.be/stops/407568"], ["https://data.delijn.be/stops/207712", "https://data.delijn.be/stops/207745"], ["https://data.delijn.be/stops/102232", "https://data.delijn.be/stops/105569"], ["https://data.delijn.be/stops/502308", "https://data.delijn.be/stops/502425"], ["https://data.delijn.be/stops/402398", "https://data.delijn.be/stops/402501"], ["https://data.delijn.be/stops/504128", "https://data.delijn.be/stops/504746"], ["https://data.delijn.be/stops/304104", "https://data.delijn.be/stops/304799"], ["https://data.delijn.be/stops/102423", "https://data.delijn.be/stops/104711"], ["https://data.delijn.be/stops/301255", "https://data.delijn.be/stops/308264"], ["https://data.delijn.be/stops/501372", "https://data.delijn.be/stops/501374"], ["https://data.delijn.be/stops/104121", "https://data.delijn.be/stops/108535"], ["https://data.delijn.be/stops/406616", "https://data.delijn.be/stops/406639"], ["https://data.delijn.be/stops/400824", "https://data.delijn.be/stops/400828"], ["https://data.delijn.be/stops/202093", "https://data.delijn.be/stops/202644"], ["https://data.delijn.be/stops/102778", "https://data.delijn.be/stops/106045"], ["https://data.delijn.be/stops/303877", "https://data.delijn.be/stops/308632"], ["https://data.delijn.be/stops/102726", "https://data.delijn.be/stops/104109"], ["https://data.delijn.be/stops/407171", "https://data.delijn.be/stops/407489"], ["https://data.delijn.be/stops/501119", "https://data.delijn.be/stops/501122"], ["https://data.delijn.be/stops/504198", "https://data.delijn.be/stops/509198"], ["https://data.delijn.be/stops/200162", "https://data.delijn.be/stops/210132"], ["https://data.delijn.be/stops/505091", "https://data.delijn.be/stops/505581"], ["https://data.delijn.be/stops/103218", "https://data.delijn.be/stops/104699"], ["https://data.delijn.be/stops/501419", "https://data.delijn.be/stops/506407"], ["https://data.delijn.be/stops/501397", "https://data.delijn.be/stops/506120"], ["https://data.delijn.be/stops/304996", "https://data.delijn.be/stops/305030"], ["https://data.delijn.be/stops/204597", "https://data.delijn.be/stops/205587"], ["https://data.delijn.be/stops/405436", "https://data.delijn.be/stops/408873"], ["https://data.delijn.be/stops/101386", "https://data.delijn.be/stops/101393"], ["https://data.delijn.be/stops/507499", "https://data.delijn.be/stops/507505"], ["https://data.delijn.be/stops/306860", "https://data.delijn.be/stops/307361"], ["https://data.delijn.be/stops/300072", "https://data.delijn.be/stops/304676"], ["https://data.delijn.be/stops/504322", "https://data.delijn.be/stops/509713"], ["https://data.delijn.be/stops/208129", "https://data.delijn.be/stops/208131"], ["https://data.delijn.be/stops/501380", "https://data.delijn.be/stops/501383"], ["https://data.delijn.be/stops/104015", "https://data.delijn.be/stops/105655"], ["https://data.delijn.be/stops/200560", "https://data.delijn.be/stops/201560"], ["https://data.delijn.be/stops/200148", "https://data.delijn.be/stops/201171"], ["https://data.delijn.be/stops/206484", "https://data.delijn.be/stops/206553"], ["https://data.delijn.be/stops/501055", "https://data.delijn.be/stops/505712"], ["https://data.delijn.be/stops/202963", "https://data.delijn.be/stops/206271"], ["https://data.delijn.be/stops/208733", "https://data.delijn.be/stops/209733"], ["https://data.delijn.be/stops/400833", "https://data.delijn.be/stops/403574"], ["https://data.delijn.be/stops/202712", "https://data.delijn.be/stops/203711"], ["https://data.delijn.be/stops/303548", "https://data.delijn.be/stops/306284"], ["https://data.delijn.be/stops/101573", "https://data.delijn.be/stops/101611"], ["https://data.delijn.be/stops/308424", "https://data.delijn.be/stops/308426"], ["https://data.delijn.be/stops/204241", "https://data.delijn.be/stops/205478"], ["https://data.delijn.be/stops/407160", "https://data.delijn.be/stops/409514"], ["https://data.delijn.be/stops/206954", "https://data.delijn.be/stops/300169"], ["https://data.delijn.be/stops/105339", "https://data.delijn.be/stops/105342"], ["https://data.delijn.be/stops/400354", "https://data.delijn.be/stops/400397"], ["https://data.delijn.be/stops/208418", "https://data.delijn.be/stops/209419"], ["https://data.delijn.be/stops/202859", "https://data.delijn.be/stops/202860"], ["https://data.delijn.be/stops/400678", "https://data.delijn.be/stops/405407"], ["https://data.delijn.be/stops/206882", "https://data.delijn.be/stops/206883"], ["https://data.delijn.be/stops/402943", "https://data.delijn.be/stops/301271"], ["https://data.delijn.be/stops/204539", "https://data.delijn.be/stops/204540"], ["https://data.delijn.be/stops/301300", "https://data.delijn.be/stops/301331"], ["https://data.delijn.be/stops/501764", "https://data.delijn.be/stops/502340"], ["https://data.delijn.be/stops/202676", "https://data.delijn.be/stops/203675"], ["https://data.delijn.be/stops/303142", "https://data.delijn.be/stops/304710"], ["https://data.delijn.be/stops/205913", "https://data.delijn.be/stops/205916"], ["https://data.delijn.be/stops/101798", "https://data.delijn.be/stops/300668"], ["https://data.delijn.be/stops/408231", "https://data.delijn.be/stops/408491"], ["https://data.delijn.be/stops/301886", "https://data.delijn.be/stops/301890"], ["https://data.delijn.be/stops/500026", "https://data.delijn.be/stops/505437"], ["https://data.delijn.be/stops/202281", "https://data.delijn.be/stops/203056"], ["https://data.delijn.be/stops/206888", "https://data.delijn.be/stops/207884"], ["https://data.delijn.be/stops/402876", "https://data.delijn.be/stops/301468"], ["https://data.delijn.be/stops/200559", "https://data.delijn.be/stops/210067"], ["https://data.delijn.be/stops/303864", "https://data.delijn.be/stops/303962"], ["https://data.delijn.be/stops/202558", "https://data.delijn.be/stops/203557"], ["https://data.delijn.be/stops/504359", "https://data.delijn.be/stops/505995"], ["https://data.delijn.be/stops/402527", "https://data.delijn.be/stops/404092"], ["https://data.delijn.be/stops/501332", "https://data.delijn.be/stops/506265"], ["https://data.delijn.be/stops/105038", "https://data.delijn.be/stops/105041"], ["https://data.delijn.be/stops/401442", "https://data.delijn.be/stops/401443"], ["https://data.delijn.be/stops/505403", "https://data.delijn.be/stops/509061"], ["https://data.delijn.be/stops/501270", "https://data.delijn.be/stops/506317"], ["https://data.delijn.be/stops/300001", "https://data.delijn.be/stops/302519"], ["https://data.delijn.be/stops/403308", "https://data.delijn.be/stops/410323"], ["https://data.delijn.be/stops/301118", "https://data.delijn.be/stops/304030"], ["https://data.delijn.be/stops/403411", "https://data.delijn.be/stops/403844"], ["https://data.delijn.be/stops/505594", "https://data.delijn.be/stops/509725"], ["https://data.delijn.be/stops/302224", "https://data.delijn.be/stops/302240"], ["https://data.delijn.be/stops/302119", "https://data.delijn.be/stops/304142"], ["https://data.delijn.be/stops/402366", "https://data.delijn.be/stops/402367"], ["https://data.delijn.be/stops/403285", "https://data.delijn.be/stops/408959"], ["https://data.delijn.be/stops/503659", "https://data.delijn.be/stops/505529"], ["https://data.delijn.be/stops/202519", "https://data.delijn.be/stops/203520"], ["https://data.delijn.be/stops/204385", "https://data.delijn.be/stops/205386"], ["https://data.delijn.be/stops/502430", "https://data.delijn.be/stops/502751"], ["https://data.delijn.be/stops/405330", "https://data.delijn.be/stops/405486"], ["https://data.delijn.be/stops/301570", "https://data.delijn.be/stops/308080"], ["https://data.delijn.be/stops/200338", "https://data.delijn.be/stops/200995"], ["https://data.delijn.be/stops/300620", "https://data.delijn.be/stops/303517"], ["https://data.delijn.be/stops/202764", "https://data.delijn.be/stops/203763"], ["https://data.delijn.be/stops/508696", "https://data.delijn.be/stops/509950"], ["https://data.delijn.be/stops/200021", "https://data.delijn.be/stops/201021"], ["https://data.delijn.be/stops/405322", "https://data.delijn.be/stops/405325"], ["https://data.delijn.be/stops/106096", "https://data.delijn.be/stops/106097"], ["https://data.delijn.be/stops/502736", "https://data.delijn.be/stops/507055"], ["https://data.delijn.be/stops/403905", "https://data.delijn.be/stops/403909"], ["https://data.delijn.be/stops/503212", "https://data.delijn.be/stops/508390"], ["https://data.delijn.be/stops/503750", "https://data.delijn.be/stops/509788"], ["https://data.delijn.be/stops/501011", "https://data.delijn.be/stops/501507"], ["https://data.delijn.be/stops/409061", "https://data.delijn.be/stops/409122"], ["https://data.delijn.be/stops/204760", "https://data.delijn.be/stops/205372"], ["https://data.delijn.be/stops/204215", "https://data.delijn.be/stops/205215"], ["https://data.delijn.be/stops/101915", "https://data.delijn.be/stops/104081"], ["https://data.delijn.be/stops/205986", "https://data.delijn.be/stops/206254"], ["https://data.delijn.be/stops/304149", "https://data.delijn.be/stops/304164"], ["https://data.delijn.be/stops/208708", "https://data.delijn.be/stops/209952"], ["https://data.delijn.be/stops/401967", "https://data.delijn.be/stops/401970"], ["https://data.delijn.be/stops/503231", "https://data.delijn.be/stops/508240"], ["https://data.delijn.be/stops/205987", "https://data.delijn.be/stops/209283"], ["https://data.delijn.be/stops/303085", "https://data.delijn.be/stops/303086"], ["https://data.delijn.be/stops/504543", "https://data.delijn.be/stops/504552"], ["https://data.delijn.be/stops/403385", "https://data.delijn.be/stops/403389"], ["https://data.delijn.be/stops/503452", "https://data.delijn.be/stops/504811"], ["https://data.delijn.be/stops/304866", "https://data.delijn.be/stops/304867"], ["https://data.delijn.be/stops/103945", "https://data.delijn.be/stops/103946"], ["https://data.delijn.be/stops/501745", "https://data.delijn.be/stops/506366"], ["https://data.delijn.be/stops/304477", "https://data.delijn.be/stops/304509"], ["https://data.delijn.be/stops/108427", "https://data.delijn.be/stops/109583"], ["https://data.delijn.be/stops/104128", "https://data.delijn.be/stops/107460"], ["https://data.delijn.be/stops/101083", "https://data.delijn.be/stops/107154"], ["https://data.delijn.be/stops/301854", "https://data.delijn.be/stops/305465"], ["https://data.delijn.be/stops/102958", "https://data.delijn.be/stops/107116"], ["https://data.delijn.be/stops/200104", "https://data.delijn.be/stops/201104"], ["https://data.delijn.be/stops/403934", "https://data.delijn.be/stops/408356"], ["https://data.delijn.be/stops/303959", "https://data.delijn.be/stops/303970"], ["https://data.delijn.be/stops/400464", "https://data.delijn.be/stops/400470"], ["https://data.delijn.be/stops/503498", "https://data.delijn.be/stops/508868"], ["https://data.delijn.be/stops/403599", "https://data.delijn.be/stops/407538"], ["https://data.delijn.be/stops/407669", "https://data.delijn.be/stops/409802"], ["https://data.delijn.be/stops/302620", "https://data.delijn.be/stops/305729"], ["https://data.delijn.be/stops/202683", "https://data.delijn.be/stops/203683"], ["https://data.delijn.be/stops/300199", "https://data.delijn.be/stops/300222"], ["https://data.delijn.be/stops/202221", "https://data.delijn.be/stops/204832"], ["https://data.delijn.be/stops/102743", "https://data.delijn.be/stops/102744"], ["https://data.delijn.be/stops/504398", "https://data.delijn.be/stops/504415"], ["https://data.delijn.be/stops/102730", "https://data.delijn.be/stops/102734"], ["https://data.delijn.be/stops/300733", "https://data.delijn.be/stops/302530"], ["https://data.delijn.be/stops/501098", "https://data.delijn.be/stops/506096"], ["https://data.delijn.be/stops/400728", "https://data.delijn.be/stops/400903"], ["https://data.delijn.be/stops/405572", "https://data.delijn.be/stops/405573"], ["https://data.delijn.be/stops/503538", "https://data.delijn.be/stops/505378"], ["https://data.delijn.be/stops/108833", "https://data.delijn.be/stops/108849"], ["https://data.delijn.be/stops/204051", "https://data.delijn.be/stops/205054"], ["https://data.delijn.be/stops/104393", "https://data.delijn.be/stops/104399"], ["https://data.delijn.be/stops/200219", "https://data.delijn.be/stops/210090"], ["https://data.delijn.be/stops/200887", "https://data.delijn.be/stops/203056"], ["https://data.delijn.be/stops/502087", "https://data.delijn.be/stops/507110"], ["https://data.delijn.be/stops/404558", "https://data.delijn.be/stops/406700"], ["https://data.delijn.be/stops/208517", "https://data.delijn.be/stops/209084"], ["https://data.delijn.be/stops/400658", "https://data.delijn.be/stops/400663"], ["https://data.delijn.be/stops/207764", "https://data.delijn.be/stops/207791"], ["https://data.delijn.be/stops/509908", "https://data.delijn.be/stops/509926"], ["https://data.delijn.be/stops/503086", "https://data.delijn.be/stops/503923"], ["https://data.delijn.be/stops/104015", "https://data.delijn.be/stops/105680"], ["https://data.delijn.be/stops/300311", "https://data.delijn.be/stops/302449"], ["https://data.delijn.be/stops/400257", "https://data.delijn.be/stops/405864"], ["https://data.delijn.be/stops/403441", "https://data.delijn.be/stops/403442"], ["https://data.delijn.be/stops/203312", "https://data.delijn.be/stops/203313"], ["https://data.delijn.be/stops/400056", "https://data.delijn.be/stops/400162"], ["https://data.delijn.be/stops/508305", "https://data.delijn.be/stops/508456"], ["https://data.delijn.be/stops/204437", "https://data.delijn.be/stops/204746"], ["https://data.delijn.be/stops/200746", "https://data.delijn.be/stops/201812"], ["https://data.delijn.be/stops/504589", "https://data.delijn.be/stops/509589"], ["https://data.delijn.be/stops/405758", "https://data.delijn.be/stops/303335"], ["https://data.delijn.be/stops/405063", "https://data.delijn.be/stops/405112"], ["https://data.delijn.be/stops/201684", "https://data.delijn.be/stops/202318"], ["https://data.delijn.be/stops/102454", "https://data.delijn.be/stops/109018"], ["https://data.delijn.be/stops/204589", "https://data.delijn.be/stops/205158"], ["https://data.delijn.be/stops/300316", "https://data.delijn.be/stops/300319"], ["https://data.delijn.be/stops/404974", "https://data.delijn.be/stops/404976"], ["https://data.delijn.be/stops/105677", "https://data.delijn.be/stops/109875"], ["https://data.delijn.be/stops/401970", "https://data.delijn.be/stops/408157"], ["https://data.delijn.be/stops/502203", "https://data.delijn.be/stops/508748"], ["https://data.delijn.be/stops/402109", "https://data.delijn.be/stops/402241"], ["https://data.delijn.be/stops/401789", "https://data.delijn.be/stops/401791"], ["https://data.delijn.be/stops/303076", "https://data.delijn.be/stops/307048"], ["https://data.delijn.be/stops/304937", "https://data.delijn.be/stops/304942"], ["https://data.delijn.be/stops/407924", "https://data.delijn.be/stops/408199"], ["https://data.delijn.be/stops/107145", "https://data.delijn.be/stops/107150"], ["https://data.delijn.be/stops/200286", "https://data.delijn.be/stops/201377"], ["https://data.delijn.be/stops/301455", "https://data.delijn.be/stops/307958"], ["https://data.delijn.be/stops/201005", "https://data.delijn.be/stops/202523"], ["https://data.delijn.be/stops/101827", "https://data.delijn.be/stops/106431"], ["https://data.delijn.be/stops/206829", "https://data.delijn.be/stops/207750"], ["https://data.delijn.be/stops/409371", "https://data.delijn.be/stops/409391"], ["https://data.delijn.be/stops/204189", "https://data.delijn.be/stops/204402"], ["https://data.delijn.be/stops/202616", "https://data.delijn.be/stops/203593"], ["https://data.delijn.be/stops/201884", "https://data.delijn.be/stops/202061"], ["https://data.delijn.be/stops/410172", "https://data.delijn.be/stops/410178"], ["https://data.delijn.be/stops/501347", "https://data.delijn.be/stops/506347"], ["https://data.delijn.be/stops/200475", "https://data.delijn.be/stops/201081"], ["https://data.delijn.be/stops/206170", "https://data.delijn.be/stops/303839"], ["https://data.delijn.be/stops/204130", "https://data.delijn.be/stops/204575"], ["https://data.delijn.be/stops/404632", "https://data.delijn.be/stops/406959"], ["https://data.delijn.be/stops/300654", "https://data.delijn.be/stops/302463"], ["https://data.delijn.be/stops/102729", "https://data.delijn.be/stops/106587"], ["https://data.delijn.be/stops/304046", "https://data.delijn.be/stops/304791"], ["https://data.delijn.be/stops/303257", "https://data.delijn.be/stops/303259"], ["https://data.delijn.be/stops/501421", "https://data.delijn.be/stops/506421"], ["https://data.delijn.be/stops/301649", "https://data.delijn.be/stops/301650"], ["https://data.delijn.be/stops/403971", "https://data.delijn.be/stops/403981"], ["https://data.delijn.be/stops/101023", "https://data.delijn.be/stops/103530"], ["https://data.delijn.be/stops/504991", "https://data.delijn.be/stops/507947"], ["https://data.delijn.be/stops/404728", "https://data.delijn.be/stops/404729"], ["https://data.delijn.be/stops/305707", "https://data.delijn.be/stops/306302"], ["https://data.delijn.be/stops/200945", "https://data.delijn.be/stops/203698"], ["https://data.delijn.be/stops/204154", "https://data.delijn.be/stops/205154"], ["https://data.delijn.be/stops/404409", "https://data.delijn.be/stops/404570"], ["https://data.delijn.be/stops/503543", "https://data.delijn.be/stops/508542"], ["https://data.delijn.be/stops/200164", "https://data.delijn.be/stops/208727"], ["https://data.delijn.be/stops/102915", "https://data.delijn.be/stops/102916"], ["https://data.delijn.be/stops/307556", "https://data.delijn.be/stops/307677"], ["https://data.delijn.be/stops/503213", "https://data.delijn.be/stops/508213"], ["https://data.delijn.be/stops/107140", "https://data.delijn.be/stops/107151"], ["https://data.delijn.be/stops/404151", "https://data.delijn.be/stops/407365"], ["https://data.delijn.be/stops/200880", "https://data.delijn.be/stops/211016"], ["https://data.delijn.be/stops/501043", "https://data.delijn.be/stops/506043"], ["https://data.delijn.be/stops/407258", "https://data.delijn.be/stops/409498"], ["https://data.delijn.be/stops/206203", "https://data.delijn.be/stops/207808"], ["https://data.delijn.be/stops/401830", "https://data.delijn.be/stops/406015"], ["https://data.delijn.be/stops/305335", "https://data.delijn.be/stops/305336"], ["https://data.delijn.be/stops/102780", "https://data.delijn.be/stops/104785"], ["https://data.delijn.be/stops/300200", "https://data.delijn.be/stops/304656"], ["https://data.delijn.be/stops/503243", "https://data.delijn.be/stops/503965"], ["https://data.delijn.be/stops/308797", "https://data.delijn.be/stops/308847"], ["https://data.delijn.be/stops/300205", "https://data.delijn.be/stops/303127"], ["https://data.delijn.be/stops/202755", "https://data.delijn.be/stops/202794"], ["https://data.delijn.be/stops/300056", "https://data.delijn.be/stops/306794"], ["https://data.delijn.be/stops/404356", "https://data.delijn.be/stops/404393"], ["https://data.delijn.be/stops/104588", "https://data.delijn.be/stops/106066"], ["https://data.delijn.be/stops/502016", "https://data.delijn.be/stops/503941"], ["https://data.delijn.be/stops/303101", "https://data.delijn.be/stops/305442"], ["https://data.delijn.be/stops/505272", "https://data.delijn.be/stops/508775"], ["https://data.delijn.be/stops/106788", "https://data.delijn.be/stops/106790"], ["https://data.delijn.be/stops/105016", "https://data.delijn.be/stops/105111"], ["https://data.delijn.be/stops/400147", "https://data.delijn.be/stops/400153"], ["https://data.delijn.be/stops/403325", "https://data.delijn.be/stops/405985"], ["https://data.delijn.be/stops/402388", "https://data.delijn.be/stops/402389"], ["https://data.delijn.be/stops/404941", "https://data.delijn.be/stops/405649"], ["https://data.delijn.be/stops/109006", "https://data.delijn.be/stops/402018"], ["https://data.delijn.be/stops/403156", "https://data.delijn.be/stops/403157"], ["https://data.delijn.be/stops/303891", "https://data.delijn.be/stops/305313"], ["https://data.delijn.be/stops/200345", "https://data.delijn.be/stops/210200"], ["https://data.delijn.be/stops/104101", "https://data.delijn.be/stops/104104"], ["https://data.delijn.be/stops/505503", "https://data.delijn.be/stops/505514"], ["https://data.delijn.be/stops/208120", "https://data.delijn.be/stops/209243"], ["https://data.delijn.be/stops/407917", "https://data.delijn.be/stops/407919"], ["https://data.delijn.be/stops/402428", "https://data.delijn.be/stops/409857"], ["https://data.delijn.be/stops/206674", "https://data.delijn.be/stops/209174"], ["https://data.delijn.be/stops/105057", "https://data.delijn.be/stops/105224"], ["https://data.delijn.be/stops/206623", "https://data.delijn.be/stops/218020"], ["https://data.delijn.be/stops/304984", "https://data.delijn.be/stops/304985"], ["https://data.delijn.be/stops/400044", "https://data.delijn.be/stops/400045"], ["https://data.delijn.be/stops/408500", "https://data.delijn.be/stops/408501"], ["https://data.delijn.be/stops/408035", "https://data.delijn.be/stops/408121"], ["https://data.delijn.be/stops/208789", "https://data.delijn.be/stops/209350"], ["https://data.delijn.be/stops/302621", "https://data.delijn.be/stops/302624"], ["https://data.delijn.be/stops/200988", "https://data.delijn.be/stops/201337"], ["https://data.delijn.be/stops/108134", "https://data.delijn.be/stops/108137"], ["https://data.delijn.be/stops/304007", "https://data.delijn.be/stops/304009"], ["https://data.delijn.be/stops/503291", "https://data.delijn.be/stops/505929"], ["https://data.delijn.be/stops/300394", "https://data.delijn.be/stops/303125"], ["https://data.delijn.be/stops/506629", "https://data.delijn.be/stops/506945"], ["https://data.delijn.be/stops/503804", "https://data.delijn.be/stops/508804"], ["https://data.delijn.be/stops/308159", "https://data.delijn.be/stops/308162"], ["https://data.delijn.be/stops/306956", "https://data.delijn.be/stops/308294"], ["https://data.delijn.be/stops/206600", "https://data.delijn.be/stops/206601"], ["https://data.delijn.be/stops/201547", "https://data.delijn.be/stops/211109"], ["https://data.delijn.be/stops/108241", "https://data.delijn.be/stops/108243"], ["https://data.delijn.be/stops/301769", "https://data.delijn.be/stops/306796"], ["https://data.delijn.be/stops/300647", "https://data.delijn.be/stops/302463"], ["https://data.delijn.be/stops/505997", "https://data.delijn.be/stops/509417"], ["https://data.delijn.be/stops/404082", "https://data.delijn.be/stops/404298"], ["https://data.delijn.be/stops/202502", "https://data.delijn.be/stops/203502"], ["https://data.delijn.be/stops/203901", "https://data.delijn.be/stops/211109"], ["https://data.delijn.be/stops/202791", "https://data.delijn.be/stops/203792"], ["https://data.delijn.be/stops/106175", "https://data.delijn.be/stops/109103"], ["https://data.delijn.be/stops/401783", "https://data.delijn.be/stops/401821"], ["https://data.delijn.be/stops/404402", "https://data.delijn.be/stops/404447"], ["https://data.delijn.be/stops/204723", "https://data.delijn.be/stops/205723"], ["https://data.delijn.be/stops/202562", "https://data.delijn.be/stops/203397"], ["https://data.delijn.be/stops/407084", "https://data.delijn.be/stops/407913"], ["https://data.delijn.be/stops/102726", "https://data.delijn.be/stops/102727"], ["https://data.delijn.be/stops/405253", "https://data.delijn.be/stops/406853"], ["https://data.delijn.be/stops/204043", "https://data.delijn.be/stops/205408"], ["https://data.delijn.be/stops/504514", "https://data.delijn.be/stops/504635"], ["https://data.delijn.be/stops/504470", "https://data.delijn.be/stops/504471"], ["https://data.delijn.be/stops/305651", "https://data.delijn.be/stops/308112"], ["https://data.delijn.be/stops/106982", "https://data.delijn.be/stops/106983"], ["https://data.delijn.be/stops/109202", "https://data.delijn.be/stops/109203"], ["https://data.delijn.be/stops/106103", "https://data.delijn.be/stops/106157"], ["https://data.delijn.be/stops/304860", "https://data.delijn.be/stops/304861"], ["https://data.delijn.be/stops/404127", "https://data.delijn.be/stops/404197"], ["https://data.delijn.be/stops/204914", "https://data.delijn.be/stops/204915"], ["https://data.delijn.be/stops/203909", "https://data.delijn.be/stops/211098"], ["https://data.delijn.be/stops/301848", "https://data.delijn.be/stops/301882"], ["https://data.delijn.be/stops/206087", "https://data.delijn.be/stops/206088"], ["https://data.delijn.be/stops/402369", "https://data.delijn.be/stops/408486"], ["https://data.delijn.be/stops/102531", "https://data.delijn.be/stops/102534"], ["https://data.delijn.be/stops/402859", "https://data.delijn.be/stops/402860"], ["https://data.delijn.be/stops/502399", "https://data.delijn.be/stops/507389"], ["https://data.delijn.be/stops/307209", "https://data.delijn.be/stops/307217"], ["https://data.delijn.be/stops/102153", "https://data.delijn.be/stops/108335"], ["https://data.delijn.be/stops/400469", "https://data.delijn.be/stops/400496"], ["https://data.delijn.be/stops/206086", "https://data.delijn.be/stops/206988"], ["https://data.delijn.be/stops/201928", "https://data.delijn.be/stops/203958"], ["https://data.delijn.be/stops/304251", "https://data.delijn.be/stops/305492"], ["https://data.delijn.be/stops/106316", "https://data.delijn.be/stops/106317"], ["https://data.delijn.be/stops/102253", "https://data.delijn.be/stops/109081"], ["https://data.delijn.be/stops/305459", "https://data.delijn.be/stops/305580"], ["https://data.delijn.be/stops/406834", "https://data.delijn.be/stops/407287"], ["https://data.delijn.be/stops/509658", "https://data.delijn.be/stops/509659"], ["https://data.delijn.be/stops/208678", "https://data.delijn.be/stops/209427"], ["https://data.delijn.be/stops/305162", "https://data.delijn.be/stops/305189"], ["https://data.delijn.be/stops/508039", "https://data.delijn.be/stops/508042"], ["https://data.delijn.be/stops/204721", "https://data.delijn.be/stops/205719"], ["https://data.delijn.be/stops/201983", "https://data.delijn.be/stops/202905"], ["https://data.delijn.be/stops/403224", "https://data.delijn.be/stops/403385"], ["https://data.delijn.be/stops/203004", "https://data.delijn.be/stops/203779"], ["https://data.delijn.be/stops/406170", "https://data.delijn.be/stops/406281"], ["https://data.delijn.be/stops/506173", "https://data.delijn.be/stops/506183"], ["https://data.delijn.be/stops/105060", "https://data.delijn.be/stops/106712"], ["https://data.delijn.be/stops/300423", "https://data.delijn.be/stops/308062"], ["https://data.delijn.be/stops/204995", "https://data.delijn.be/stops/303838"], ["https://data.delijn.be/stops/200069", "https://data.delijn.be/stops/201033"], ["https://data.delijn.be/stops/505831", "https://data.delijn.be/stops/505832"], ["https://data.delijn.be/stops/405012", "https://data.delijn.be/stops/405013"], ["https://data.delijn.be/stops/308681", "https://data.delijn.be/stops/308682"], ["https://data.delijn.be/stops/407152", "https://data.delijn.be/stops/407162"], ["https://data.delijn.be/stops/102418", "https://data.delijn.be/stops/105580"], ["https://data.delijn.be/stops/505817", "https://data.delijn.be/stops/509482"], ["https://data.delijn.be/stops/405101", "https://data.delijn.be/stops/405102"], ["https://data.delijn.be/stops/401650", "https://data.delijn.be/stops/405405"], ["https://data.delijn.be/stops/503487", "https://data.delijn.be/stops/508903"], ["https://data.delijn.be/stops/504111", "https://data.delijn.be/stops/504269"], ["https://data.delijn.be/stops/409000", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/505659", "https://data.delijn.be/stops/508047"], ["https://data.delijn.be/stops/503871", "https://data.delijn.be/stops/508867"], ["https://data.delijn.be/stops/507140", "https://data.delijn.be/stops/507151"], ["https://data.delijn.be/stops/204151", "https://data.delijn.be/stops/204778"], ["https://data.delijn.be/stops/204566", "https://data.delijn.be/stops/305481"], ["https://data.delijn.be/stops/204110", "https://data.delijn.be/stops/205105"], ["https://data.delijn.be/stops/502197", "https://data.delijn.be/stops/508345"], ["https://data.delijn.be/stops/402750", "https://data.delijn.be/stops/408088"], ["https://data.delijn.be/stops/303674", "https://data.delijn.be/stops/307683"], ["https://data.delijn.be/stops/301192", "https://data.delijn.be/stops/307615"], ["https://data.delijn.be/stops/307326", "https://data.delijn.be/stops/307327"], ["https://data.delijn.be/stops/302879", "https://data.delijn.be/stops/302880"], ["https://data.delijn.be/stops/107128", "https://data.delijn.be/stops/107129"], ["https://data.delijn.be/stops/204387", "https://data.delijn.be/stops/205387"], ["https://data.delijn.be/stops/401561", "https://data.delijn.be/stops/401744"], ["https://data.delijn.be/stops/201019", "https://data.delijn.be/stops/211106"], ["https://data.delijn.be/stops/200756", "https://data.delijn.be/stops/509817"], ["https://data.delijn.be/stops/103525", "https://data.delijn.be/stops/103740"], ["https://data.delijn.be/stops/405061", "https://data.delijn.be/stops/405863"], ["https://data.delijn.be/stops/108062", "https://data.delijn.be/stops/108362"], ["https://data.delijn.be/stops/308451", "https://data.delijn.be/stops/308513"], ["https://data.delijn.be/stops/502368", "https://data.delijn.be/stops/505608"], ["https://data.delijn.be/stops/403621", "https://data.delijn.be/stops/403622"], ["https://data.delijn.be/stops/406405", "https://data.delijn.be/stops/406410"], ["https://data.delijn.be/stops/500010", "https://data.delijn.be/stops/500011"], ["https://data.delijn.be/stops/206496", "https://data.delijn.be/stops/207474"], ["https://data.delijn.be/stops/303513", "https://data.delijn.be/stops/307891"], ["https://data.delijn.be/stops/204204", "https://data.delijn.be/stops/205192"], ["https://data.delijn.be/stops/106117", "https://data.delijn.be/stops/108709"], ["https://data.delijn.be/stops/406498", "https://data.delijn.be/stops/406508"], ["https://data.delijn.be/stops/404455", "https://data.delijn.be/stops/404562"], ["https://data.delijn.be/stops/302011", "https://data.delijn.be/stops/303894"], ["https://data.delijn.be/stops/505747", "https://data.delijn.be/stops/506187"], ["https://data.delijn.be/stops/101600", "https://data.delijn.be/stops/102733"], ["https://data.delijn.be/stops/107158", "https://data.delijn.be/stops/107558"], ["https://data.delijn.be/stops/503585", "https://data.delijn.be/stops/503591"], ["https://data.delijn.be/stops/507149", "https://data.delijn.be/stops/507164"], ["https://data.delijn.be/stops/208355", "https://data.delijn.be/stops/209355"], ["https://data.delijn.be/stops/200429", "https://data.delijn.be/stops/201429"], ["https://data.delijn.be/stops/300725", "https://data.delijn.be/stops/300726"], ["https://data.delijn.be/stops/304010", "https://data.delijn.be/stops/307991"], ["https://data.delijn.be/stops/505030", "https://data.delijn.be/stops/505035"], ["https://data.delijn.be/stops/501319", "https://data.delijn.be/stops/509898"], ["https://data.delijn.be/stops/503241", "https://data.delijn.be/stops/508246"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/202153"], ["https://data.delijn.be/stops/300275", "https://data.delijn.be/stops/300288"], ["https://data.delijn.be/stops/200561", "https://data.delijn.be/stops/211102"], ["https://data.delijn.be/stops/202160", "https://data.delijn.be/stops/203633"], ["https://data.delijn.be/stops/102938", "https://data.delijn.be/stops/102960"], ["https://data.delijn.be/stops/208155", "https://data.delijn.be/stops/209155"], ["https://data.delijn.be/stops/308126", "https://data.delijn.be/stops/308128"], ["https://data.delijn.be/stops/300896", "https://data.delijn.be/stops/304191"], ["https://data.delijn.be/stops/103991", "https://data.delijn.be/stops/105313"], ["https://data.delijn.be/stops/303829", "https://data.delijn.be/stops/305420"], ["https://data.delijn.be/stops/401145", "https://data.delijn.be/stops/401155"], ["https://data.delijn.be/stops/409415", "https://data.delijn.be/stops/409416"], ["https://data.delijn.be/stops/206682", "https://data.delijn.be/stops/207677"], ["https://data.delijn.be/stops/400450", "https://data.delijn.be/stops/400453"], ["https://data.delijn.be/stops/201144", "https://data.delijn.be/stops/205916"], ["https://data.delijn.be/stops/101446", "https://data.delijn.be/stops/102732"], ["https://data.delijn.be/stops/103502", "https://data.delijn.be/stops/103731"], ["https://data.delijn.be/stops/402355", "https://data.delijn.be/stops/402363"], ["https://data.delijn.be/stops/303576", "https://data.delijn.be/stops/303577"], ["https://data.delijn.be/stops/407398", "https://data.delijn.be/stops/408482"], ["https://data.delijn.be/stops/300998", "https://data.delijn.be/stops/306968"], ["https://data.delijn.be/stops/407033", "https://data.delijn.be/stops/408429"], ["https://data.delijn.be/stops/408972", "https://data.delijn.be/stops/408977"], ["https://data.delijn.be/stops/503896", "https://data.delijn.be/stops/508896"], ["https://data.delijn.be/stops/405851", "https://data.delijn.be/stops/409730"], ["https://data.delijn.be/stops/401671", "https://data.delijn.be/stops/308272"], ["https://data.delijn.be/stops/402592", "https://data.delijn.be/stops/402605"], ["https://data.delijn.be/stops/405805", "https://data.delijn.be/stops/405853"], ["https://data.delijn.be/stops/500559", "https://data.delijn.be/stops/500562"], ["https://data.delijn.be/stops/302560", "https://data.delijn.be/stops/305859"], ["https://data.delijn.be/stops/501628", "https://data.delijn.be/stops/508491"], ["https://data.delijn.be/stops/307008", "https://data.delijn.be/stops/307019"], ["https://data.delijn.be/stops/300938", "https://data.delijn.be/stops/300950"], ["https://data.delijn.be/stops/502532", "https://data.delijn.be/stops/507531"], ["https://data.delijn.be/stops/403458", "https://data.delijn.be/stops/407464"], ["https://data.delijn.be/stops/402177", "https://data.delijn.be/stops/410079"], ["https://data.delijn.be/stops/407241", "https://data.delijn.be/stops/407448"], ["https://data.delijn.be/stops/402800", "https://data.delijn.be/stops/409018"], ["https://data.delijn.be/stops/406564", "https://data.delijn.be/stops/407751"], ["https://data.delijn.be/stops/103557", "https://data.delijn.be/stops/103593"], ["https://data.delijn.be/stops/401582", "https://data.delijn.be/stops/406243"], ["https://data.delijn.be/stops/401034", "https://data.delijn.be/stops/404908"], ["https://data.delijn.be/stops/303255", "https://data.delijn.be/stops/303259"], ["https://data.delijn.be/stops/400400", "https://data.delijn.be/stops/400973"], ["https://data.delijn.be/stops/105859", "https://data.delijn.be/stops/105862"], ["https://data.delijn.be/stops/302745", "https://data.delijn.be/stops/302747"], ["https://data.delijn.be/stops/407785", "https://data.delijn.be/stops/408143"], ["https://data.delijn.be/stops/202966", "https://data.delijn.be/stops/202967"], ["https://data.delijn.be/stops/307958", "https://data.delijn.be/stops/307959"], ["https://data.delijn.be/stops/400324", "https://data.delijn.be/stops/400325"], ["https://data.delijn.be/stops/408001", "https://data.delijn.be/stops/408199"], ["https://data.delijn.be/stops/102314", "https://data.delijn.be/stops/104050"], ["https://data.delijn.be/stops/300175", "https://data.delijn.be/stops/300193"], ["https://data.delijn.be/stops/505371", "https://data.delijn.be/stops/508241"], ["https://data.delijn.be/stops/105501", "https://data.delijn.be/stops/105691"], ["https://data.delijn.be/stops/108560", "https://data.delijn.be/stops/205528"], ["https://data.delijn.be/stops/504004", "https://data.delijn.be/stops/509860"], ["https://data.delijn.be/stops/501080", "https://data.delijn.be/stops/502238"], ["https://data.delijn.be/stops/104369", "https://data.delijn.be/stops/205602"], ["https://data.delijn.be/stops/101278", "https://data.delijn.be/stops/105388"], ["https://data.delijn.be/stops/408546", "https://data.delijn.be/stops/408770"], ["https://data.delijn.be/stops/401600", "https://data.delijn.be/stops/405880"], ["https://data.delijn.be/stops/408896", "https://data.delijn.be/stops/408897"], ["https://data.delijn.be/stops/208463", "https://data.delijn.be/stops/209683"], ["https://data.delijn.be/stops/103006", "https://data.delijn.be/stops/106557"], ["https://data.delijn.be/stops/206679", "https://data.delijn.be/stops/208103"], ["https://data.delijn.be/stops/209520", "https://data.delijn.be/stops/209524"], ["https://data.delijn.be/stops/508833", "https://data.delijn.be/stops/509052"], ["https://data.delijn.be/stops/101472", "https://data.delijn.be/stops/108556"], ["https://data.delijn.be/stops/508106", "https://data.delijn.be/stops/508799"], ["https://data.delijn.be/stops/102625", "https://data.delijn.be/stops/102866"], ["https://data.delijn.be/stops/207314", "https://data.delijn.be/stops/207816"], ["https://data.delijn.be/stops/106366", "https://data.delijn.be/stops/106367"], ["https://data.delijn.be/stops/301452", "https://data.delijn.be/stops/302524"], ["https://data.delijn.be/stops/401774", "https://data.delijn.be/stops/401781"], ["https://data.delijn.be/stops/208606", "https://data.delijn.be/stops/208607"], ["https://data.delijn.be/stops/407640", "https://data.delijn.be/stops/407641"], ["https://data.delijn.be/stops/304831", "https://data.delijn.be/stops/304884"], ["https://data.delijn.be/stops/503837", "https://data.delijn.be/stops/505160"], ["https://data.delijn.be/stops/105726", "https://data.delijn.be/stops/105727"], ["https://data.delijn.be/stops/400375", "https://data.delijn.be/stops/407109"], ["https://data.delijn.be/stops/107130", "https://data.delijn.be/stops/108255"], ["https://data.delijn.be/stops/305956", "https://data.delijn.be/stops/305958"], ["https://data.delijn.be/stops/503776", "https://data.delijn.be/stops/508777"], ["https://data.delijn.be/stops/405383", "https://data.delijn.be/stops/302841"], ["https://data.delijn.be/stops/204343", "https://data.delijn.be/stops/205342"], ["https://data.delijn.be/stops/500158", "https://data.delijn.be/stops/505177"], ["https://data.delijn.be/stops/103623", "https://data.delijn.be/stops/107734"], ["https://data.delijn.be/stops/209307", "https://data.delijn.be/stops/505973"], ["https://data.delijn.be/stops/502795", "https://data.delijn.be/stops/507933"], ["https://data.delijn.be/stops/503883", "https://data.delijn.be/stops/508885"], ["https://data.delijn.be/stops/105221", "https://data.delijn.be/stops/108056"], ["https://data.delijn.be/stops/205112", "https://data.delijn.be/stops/205682"], ["https://data.delijn.be/stops/403176", "https://data.delijn.be/stops/403205"], ["https://data.delijn.be/stops/408735", "https://data.delijn.be/stops/408785"], ["https://data.delijn.be/stops/502571", "https://data.delijn.be/stops/507571"], ["https://data.delijn.be/stops/300541", "https://data.delijn.be/stops/304888"], ["https://data.delijn.be/stops/501422", "https://data.delijn.be/stops/506422"], ["https://data.delijn.be/stops/200544", "https://data.delijn.be/stops/211107"], ["https://data.delijn.be/stops/208592", "https://data.delijn.be/stops/209217"], ["https://data.delijn.be/stops/400791", "https://data.delijn.be/stops/409541"], ["https://data.delijn.be/stops/202368", "https://data.delijn.be/stops/202976"], ["https://data.delijn.be/stops/406553", "https://data.delijn.be/stops/406567"], ["https://data.delijn.be/stops/302964", "https://data.delijn.be/stops/306281"], ["https://data.delijn.be/stops/207754", "https://data.delijn.be/stops/207771"], ["https://data.delijn.be/stops/502537", "https://data.delijn.be/stops/507542"], ["https://data.delijn.be/stops/204060", "https://data.delijn.be/stops/205711"], ["https://data.delijn.be/stops/103661", "https://data.delijn.be/stops/106220"], ["https://data.delijn.be/stops/103077", "https://data.delijn.be/stops/103078"], ["https://data.delijn.be/stops/205790", "https://data.delijn.be/stops/205791"], ["https://data.delijn.be/stops/505050", "https://data.delijn.be/stops/507673"], ["https://data.delijn.be/stops/108400", "https://data.delijn.be/stops/108402"], ["https://data.delijn.be/stops/400839", "https://data.delijn.be/stops/409568"], ["https://data.delijn.be/stops/503660", "https://data.delijn.be/stops/505979"], ["https://data.delijn.be/stops/503146", "https://data.delijn.be/stops/509622"], ["https://data.delijn.be/stops/502187", "https://data.delijn.be/stops/502683"], ["https://data.delijn.be/stops/304261", "https://data.delijn.be/stops/306667"], ["https://data.delijn.be/stops/205497", "https://data.delijn.be/stops/205552"], ["https://data.delijn.be/stops/304159", "https://data.delijn.be/stops/307757"], ["https://data.delijn.be/stops/300431", "https://data.delijn.be/stops/302662"], ["https://data.delijn.be/stops/403502", "https://data.delijn.be/stops/409574"], ["https://data.delijn.be/stops/502108", "https://data.delijn.be/stops/502113"], ["https://data.delijn.be/stops/200742", "https://data.delijn.be/stops/203382"], ["https://data.delijn.be/stops/206118", "https://data.delijn.be/stops/207120"], ["https://data.delijn.be/stops/401771", "https://data.delijn.be/stops/401851"], ["https://data.delijn.be/stops/204972", "https://data.delijn.be/stops/204973"], ["https://data.delijn.be/stops/208216", "https://data.delijn.be/stops/209786"], ["https://data.delijn.be/stops/400702", "https://data.delijn.be/stops/406816"], ["https://data.delijn.be/stops/502636", "https://data.delijn.be/stops/507636"], ["https://data.delijn.be/stops/206859", "https://data.delijn.be/stops/207538"], ["https://data.delijn.be/stops/305819", "https://data.delijn.be/stops/308441"], ["https://data.delijn.be/stops/401476", "https://data.delijn.be/stops/401477"], ["https://data.delijn.be/stops/403345", "https://data.delijn.be/stops/403442"], ["https://data.delijn.be/stops/105482", "https://data.delijn.be/stops/105689"], ["https://data.delijn.be/stops/409556", "https://data.delijn.be/stops/409560"], ["https://data.delijn.be/stops/501355", "https://data.delijn.be/stops/501523"], ["https://data.delijn.be/stops/300831", "https://data.delijn.be/stops/306968"], ["https://data.delijn.be/stops/403526", "https://data.delijn.be/stops/408453"], ["https://data.delijn.be/stops/303414", "https://data.delijn.be/stops/303435"], ["https://data.delijn.be/stops/505396", "https://data.delijn.be/stops/508024"], ["https://data.delijn.be/stops/306146", "https://data.delijn.be/stops/306151"], ["https://data.delijn.be/stops/205148", "https://data.delijn.be/stops/205476"], ["https://data.delijn.be/stops/201475", "https://data.delijn.be/stops/201477"], ["https://data.delijn.be/stops/504455", "https://data.delijn.be/stops/509455"], ["https://data.delijn.be/stops/201113", "https://data.delijn.be/stops/211047"], ["https://data.delijn.be/stops/301703", "https://data.delijn.be/stops/301704"], ["https://data.delijn.be/stops/300268", "https://data.delijn.be/stops/301938"], ["https://data.delijn.be/stops/300472", "https://data.delijn.be/stops/300473"], ["https://data.delijn.be/stops/305099", "https://data.delijn.be/stops/305101"], ["https://data.delijn.be/stops/402242", "https://data.delijn.be/stops/402405"], ["https://data.delijn.be/stops/509701", "https://data.delijn.be/stops/509927"], ["https://data.delijn.be/stops/104042", "https://data.delijn.be/stops/108521"], ["https://data.delijn.be/stops/502006", "https://data.delijn.be/stops/505222"], ["https://data.delijn.be/stops/201842", "https://data.delijn.be/stops/208733"], ["https://data.delijn.be/stops/207724", "https://data.delijn.be/stops/207733"], ["https://data.delijn.be/stops/205749", "https://data.delijn.be/stops/205750"], ["https://data.delijn.be/stops/504639", "https://data.delijn.be/stops/505915"], ["https://data.delijn.be/stops/300836", "https://data.delijn.be/stops/301812"], ["https://data.delijn.be/stops/200955", "https://data.delijn.be/stops/203507"], ["https://data.delijn.be/stops/502643", "https://data.delijn.be/stops/507643"], ["https://data.delijn.be/stops/202750", "https://data.delijn.be/stops/210041"], ["https://data.delijn.be/stops/302909", "https://data.delijn.be/stops/304711"], ["https://data.delijn.be/stops/208792", "https://data.delijn.be/stops/209782"], ["https://data.delijn.be/stops/505315", "https://data.delijn.be/stops/505695"], ["https://data.delijn.be/stops/104881", "https://data.delijn.be/stops/104882"], ["https://data.delijn.be/stops/109193", "https://data.delijn.be/stops/109194"], ["https://data.delijn.be/stops/304773", "https://data.delijn.be/stops/308815"], ["https://data.delijn.be/stops/404440", "https://data.delijn.be/stops/404548"], ["https://data.delijn.be/stops/104051", "https://data.delijn.be/stops/108398"], ["https://data.delijn.be/stops/408741", "https://data.delijn.be/stops/408744"], ["https://data.delijn.be/stops/107557", "https://data.delijn.be/stops/107558"], ["https://data.delijn.be/stops/107585", "https://data.delijn.be/stops/107595"], ["https://data.delijn.be/stops/409360", "https://data.delijn.be/stops/409439"], ["https://data.delijn.be/stops/201028", "https://data.delijn.be/stops/201030"], ["https://data.delijn.be/stops/504446", "https://data.delijn.be/stops/509109"], ["https://data.delijn.be/stops/503460", "https://data.delijn.be/stops/503465"], ["https://data.delijn.be/stops/202027", "https://data.delijn.be/stops/203027"], ["https://data.delijn.be/stops/502714", "https://data.delijn.be/stops/505598"], ["https://data.delijn.be/stops/211852", "https://data.delijn.be/stops/507596"], ["https://data.delijn.be/stops/501205", "https://data.delijn.be/stops/501206"], ["https://data.delijn.be/stops/208618", "https://data.delijn.be/stops/209565"], ["https://data.delijn.be/stops/303411", "https://data.delijn.be/stops/303426"], ["https://data.delijn.be/stops/508924", "https://data.delijn.be/stops/509822"], ["https://data.delijn.be/stops/103239", "https://data.delijn.be/stops/107293"], ["https://data.delijn.be/stops/206486", "https://data.delijn.be/stops/206648"], ["https://data.delijn.be/stops/305013", "https://data.delijn.be/stops/305035"], ["https://data.delijn.be/stops/108814", "https://data.delijn.be/stops/108816"], ["https://data.delijn.be/stops/101904", "https://data.delijn.be/stops/105465"], ["https://data.delijn.be/stops/209385", "https://data.delijn.be/stops/209386"], ["https://data.delijn.be/stops/106732", "https://data.delijn.be/stops/108920"], ["https://data.delijn.be/stops/303855", "https://data.delijn.be/stops/305524"], ["https://data.delijn.be/stops/502112", "https://data.delijn.be/stops/507108"], ["https://data.delijn.be/stops/200867", "https://data.delijn.be/stops/200884"], ["https://data.delijn.be/stops/504499", "https://data.delijn.be/stops/509500"], ["https://data.delijn.be/stops/400952", "https://data.delijn.be/stops/406569"], ["https://data.delijn.be/stops/200935", "https://data.delijn.be/stops/203714"], ["https://data.delijn.be/stops/503184", "https://data.delijn.be/stops/508815"], ["https://data.delijn.be/stops/300761", "https://data.delijn.be/stops/301298"], ["https://data.delijn.be/stops/509232", "https://data.delijn.be/stops/509242"], ["https://data.delijn.be/stops/202627", "https://data.delijn.be/stops/203626"], ["https://data.delijn.be/stops/208152", "https://data.delijn.be/stops/209678"], ["https://data.delijn.be/stops/206258", "https://data.delijn.be/stops/207290"], ["https://data.delijn.be/stops/108667", "https://data.delijn.be/stops/306611"], ["https://data.delijn.be/stops/307471", "https://data.delijn.be/stops/308859"], ["https://data.delijn.be/stops/107283", "https://data.delijn.be/stops/107286"], ["https://data.delijn.be/stops/106174", "https://data.delijn.be/stops/109183"], ["https://data.delijn.be/stops/301752", "https://data.delijn.be/stops/305918"], ["https://data.delijn.be/stops/409062", "https://data.delijn.be/stops/409137"], ["https://data.delijn.be/stops/101637", "https://data.delijn.be/stops/102825"], ["https://data.delijn.be/stops/400672", "https://data.delijn.be/stops/400676"], ["https://data.delijn.be/stops/305131", "https://data.delijn.be/stops/305134"], ["https://data.delijn.be/stops/101586", "https://data.delijn.be/stops/105726"], ["https://data.delijn.be/stops/409367", "https://data.delijn.be/stops/409369"], ["https://data.delijn.be/stops/402337", "https://data.delijn.be/stops/402339"], ["https://data.delijn.be/stops/303581", "https://data.delijn.be/stops/306395"], ["https://data.delijn.be/stops/505029", "https://data.delijn.be/stops/506048"], ["https://data.delijn.be/stops/106180", "https://data.delijn.be/stops/106182"], ["https://data.delijn.be/stops/404598", "https://data.delijn.be/stops/406901"], ["https://data.delijn.be/stops/208516", "https://data.delijn.be/stops/209441"], ["https://data.delijn.be/stops/302213", "https://data.delijn.be/stops/302231"], ["https://data.delijn.be/stops/501193", "https://data.delijn.be/stops/501498"], ["https://data.delijn.be/stops/502290", "https://data.delijn.be/stops/505725"], ["https://data.delijn.be/stops/206587", "https://data.delijn.be/stops/208951"], ["https://data.delijn.be/stops/500555", "https://data.delijn.be/stops/507207"], ["https://data.delijn.be/stops/307740", "https://data.delijn.be/stops/307743"], ["https://data.delijn.be/stops/208138", "https://data.delijn.be/stops/209138"], ["https://data.delijn.be/stops/403598", "https://data.delijn.be/stops/403599"], ["https://data.delijn.be/stops/203556", "https://data.delijn.be/stops/203557"], ["https://data.delijn.be/stops/308687", "https://data.delijn.be/stops/308688"], ["https://data.delijn.be/stops/107784", "https://data.delijn.be/stops/107787"], ["https://data.delijn.be/stops/304090", "https://data.delijn.be/stops/304091"], ["https://data.delijn.be/stops/503544", "https://data.delijn.be/stops/503564"], ["https://data.delijn.be/stops/301642", "https://data.delijn.be/stops/306154"], ["https://data.delijn.be/stops/102680", "https://data.delijn.be/stops/102830"], ["https://data.delijn.be/stops/509583", "https://data.delijn.be/stops/509587"], ["https://data.delijn.be/stops/404228", "https://data.delijn.be/stops/409601"], ["https://data.delijn.be/stops/202262", "https://data.delijn.be/stops/202263"], ["https://data.delijn.be/stops/503261", "https://data.delijn.be/stops/509793"], ["https://data.delijn.be/stops/305658", "https://data.delijn.be/stops/305667"], ["https://data.delijn.be/stops/505255", "https://data.delijn.be/stops/505266"], ["https://data.delijn.be/stops/300721", "https://data.delijn.be/stops/300723"], ["https://data.delijn.be/stops/404713", "https://data.delijn.be/stops/404764"], ["https://data.delijn.be/stops/503488", "https://data.delijn.be/stops/505713"], ["https://data.delijn.be/stops/206069", "https://data.delijn.be/stops/206267"], ["https://data.delijn.be/stops/203128", "https://data.delijn.be/stops/211851"], ["https://data.delijn.be/stops/401017", "https://data.delijn.be/stops/401137"], ["https://data.delijn.be/stops/307833", "https://data.delijn.be/stops/308272"], ["https://data.delijn.be/stops/306946", "https://data.delijn.be/stops/306948"], ["https://data.delijn.be/stops/106229", "https://data.delijn.be/stops/109123"], ["https://data.delijn.be/stops/405751", "https://data.delijn.be/stops/408328"], ["https://data.delijn.be/stops/503977", "https://data.delijn.be/stops/508978"], ["https://data.delijn.be/stops/301355", "https://data.delijn.be/stops/306129"], ["https://data.delijn.be/stops/400368", "https://data.delijn.be/stops/400369"], ["https://data.delijn.be/stops/201208", "https://data.delijn.be/stops/202143"], ["https://data.delijn.be/stops/104752", "https://data.delijn.be/stops/107328"], ["https://data.delijn.be/stops/501346", "https://data.delijn.be/stops/501391"], ["https://data.delijn.be/stops/201350", "https://data.delijn.be/stops/209950"], ["https://data.delijn.be/stops/200661", "https://data.delijn.be/stops/201809"], ["https://data.delijn.be/stops/102701", "https://data.delijn.be/stops/105549"], ["https://data.delijn.be/stops/102218", "https://data.delijn.be/stops/105538"], ["https://data.delijn.be/stops/405849", "https://data.delijn.be/stops/405869"], ["https://data.delijn.be/stops/102417", "https://data.delijn.be/stops/105661"], ["https://data.delijn.be/stops/506088", "https://data.delijn.be/stops/506091"], ["https://data.delijn.be/stops/107090", "https://data.delijn.be/stops/107355"], ["https://data.delijn.be/stops/301695", "https://data.delijn.be/stops/301777"], ["https://data.delijn.be/stops/303009", "https://data.delijn.be/stops/304925"], ["https://data.delijn.be/stops/400718", "https://data.delijn.be/stops/409511"], ["https://data.delijn.be/stops/103855", "https://data.delijn.be/stops/104680"], ["https://data.delijn.be/stops/403525", "https://data.delijn.be/stops/403641"], ["https://data.delijn.be/stops/406844", "https://data.delijn.be/stops/406999"], ["https://data.delijn.be/stops/102688", "https://data.delijn.be/stops/105671"], ["https://data.delijn.be/stops/408638", "https://data.delijn.be/stops/301953"], ["https://data.delijn.be/stops/206091", "https://data.delijn.be/stops/207089"], ["https://data.delijn.be/stops/505259", "https://data.delijn.be/stops/508671"], ["https://data.delijn.be/stops/105649", "https://data.delijn.be/stops/105652"], ["https://data.delijn.be/stops/108282", "https://data.delijn.be/stops/109364"], ["https://data.delijn.be/stops/108475", "https://data.delijn.be/stops/108495"], ["https://data.delijn.be/stops/501324", "https://data.delijn.be/stops/506326"], ["https://data.delijn.be/stops/108921", "https://data.delijn.be/stops/108922"], ["https://data.delijn.be/stops/301657", "https://data.delijn.be/stops/301891"], ["https://data.delijn.be/stops/404103", "https://data.delijn.be/stops/404107"], ["https://data.delijn.be/stops/502517", "https://data.delijn.be/stops/502812"], ["https://data.delijn.be/stops/218024", "https://data.delijn.be/stops/219025"], ["https://data.delijn.be/stops/102492", "https://data.delijn.be/stops/400418"], ["https://data.delijn.be/stops/404964", "https://data.delijn.be/stops/404965"], ["https://data.delijn.be/stops/208019", "https://data.delijn.be/stops/208029"], ["https://data.delijn.be/stops/206180", "https://data.delijn.be/stops/207180"], ["https://data.delijn.be/stops/304306", "https://data.delijn.be/stops/304329"], ["https://data.delijn.be/stops/404110", "https://data.delijn.be/stops/409284"], ["https://data.delijn.be/stops/402393", "https://data.delijn.be/stops/402450"], ["https://data.delijn.be/stops/206549", "https://data.delijn.be/stops/206648"], ["https://data.delijn.be/stops/500136", "https://data.delijn.be/stops/502562"], ["https://data.delijn.be/stops/208697", "https://data.delijn.be/stops/208700"], ["https://data.delijn.be/stops/204374", "https://data.delijn.be/stops/205384"], ["https://data.delijn.be/stops/308938", "https://data.delijn.be/stops/308965"], ["https://data.delijn.be/stops/204705", "https://data.delijn.be/stops/204706"], ["https://data.delijn.be/stops/206465", "https://data.delijn.be/stops/206466"], ["https://data.delijn.be/stops/300655", "https://data.delijn.be/stops/300656"], ["https://data.delijn.be/stops/301961", "https://data.delijn.be/stops/304152"], ["https://data.delijn.be/stops/409372", "https://data.delijn.be/stops/409389"], ["https://data.delijn.be/stops/109066", "https://data.delijn.be/stops/307363"], ["https://data.delijn.be/stops/303157", "https://data.delijn.be/stops/304186"], ["https://data.delijn.be/stops/502094", "https://data.delijn.be/stops/502104"], ["https://data.delijn.be/stops/202947", "https://data.delijn.be/stops/216009"], ["https://data.delijn.be/stops/206079", "https://data.delijn.be/stops/206880"], ["https://data.delijn.be/stops/402528", "https://data.delijn.be/stops/402529"], ["https://data.delijn.be/stops/205237", "https://data.delijn.be/stops/207291"], ["https://data.delijn.be/stops/400748", "https://data.delijn.be/stops/400749"], ["https://data.delijn.be/stops/402812", "https://data.delijn.be/stops/409024"], ["https://data.delijn.be/stops/505232", "https://data.delijn.be/stops/507233"], ["https://data.delijn.be/stops/204754", "https://data.delijn.be/stops/205754"], ["https://data.delijn.be/stops/201846", "https://data.delijn.be/stops/203305"], ["https://data.delijn.be/stops/304074", "https://data.delijn.be/stops/304114"], ["https://data.delijn.be/stops/303389", "https://data.delijn.be/stops/307136"], ["https://data.delijn.be/stops/503016", "https://data.delijn.be/stops/503819"], ["https://data.delijn.be/stops/405443", "https://data.delijn.be/stops/408612"], ["https://data.delijn.be/stops/201276", "https://data.delijn.be/stops/203541"], ["https://data.delijn.be/stops/301028", "https://data.delijn.be/stops/301114"], ["https://data.delijn.be/stops/108626", "https://data.delijn.be/stops/301843"], ["https://data.delijn.be/stops/102660", "https://data.delijn.be/stops/108761"], ["https://data.delijn.be/stops/405608", "https://data.delijn.be/stops/405609"], ["https://data.delijn.be/stops/503357", "https://data.delijn.be/stops/509939"], ["https://data.delijn.be/stops/207666", "https://data.delijn.be/stops/207669"], ["https://data.delijn.be/stops/105964", "https://data.delijn.be/stops/105967"], ["https://data.delijn.be/stops/503111", "https://data.delijn.be/stops/508021"], ["https://data.delijn.be/stops/201693", "https://data.delijn.be/stops/203982"], ["https://data.delijn.be/stops/400943", "https://data.delijn.be/stops/404992"], ["https://data.delijn.be/stops/102435", "https://data.delijn.be/stops/104011"], ["https://data.delijn.be/stops/303246", "https://data.delijn.be/stops/304861"], ["https://data.delijn.be/stops/402518", "https://data.delijn.be/stops/402519"], ["https://data.delijn.be/stops/102852", "https://data.delijn.be/stops/205284"], ["https://data.delijn.be/stops/502008", "https://data.delijn.be/stops/505027"], ["https://data.delijn.be/stops/503099", "https://data.delijn.be/stops/503675"], ["https://data.delijn.be/stops/308722", "https://data.delijn.be/stops/308734"], ["https://data.delijn.be/stops/305642", "https://data.delijn.be/stops/305726"], ["https://data.delijn.be/stops/200237", "https://data.delijn.be/stops/201237"], ["https://data.delijn.be/stops/404644", "https://data.delijn.be/stops/406912"], ["https://data.delijn.be/stops/304397", "https://data.delijn.be/stops/304398"], ["https://data.delijn.be/stops/204176", "https://data.delijn.be/stops/204177"], ["https://data.delijn.be/stops/301588", "https://data.delijn.be/stops/301591"], ["https://data.delijn.be/stops/102623", "https://data.delijn.be/stops/108217"], ["https://data.delijn.be/stops/407404", "https://data.delijn.be/stops/407405"], ["https://data.delijn.be/stops/206299", "https://data.delijn.be/stops/206494"], ["https://data.delijn.be/stops/104093", "https://data.delijn.be/stops/109923"], ["https://data.delijn.be/stops/407014", "https://data.delijn.be/stops/407046"], ["https://data.delijn.be/stops/403336", "https://data.delijn.be/stops/403994"], ["https://data.delijn.be/stops/204615", "https://data.delijn.be/stops/204658"], ["https://data.delijn.be/stops/503303", "https://data.delijn.be/stops/503320"], ["https://data.delijn.be/stops/101211", "https://data.delijn.be/stops/107823"], ["https://data.delijn.be/stops/103002", "https://data.delijn.be/stops/107417"], ["https://data.delijn.be/stops/208038", "https://data.delijn.be/stops/209039"], ["https://data.delijn.be/stops/307632", "https://data.delijn.be/stops/308278"], ["https://data.delijn.be/stops/204405", "https://data.delijn.be/stops/205199"], ["https://data.delijn.be/stops/203529", "https://data.delijn.be/stops/204063"], ["https://data.delijn.be/stops/300077", "https://data.delijn.be/stops/308453"], ["https://data.delijn.be/stops/107855", "https://data.delijn.be/stops/108780"], ["https://data.delijn.be/stops/202747", "https://data.delijn.be/stops/207594"], ["https://data.delijn.be/stops/107598", "https://data.delijn.be/stops/109861"], ["https://data.delijn.be/stops/206689", "https://data.delijn.be/stops/207873"], ["https://data.delijn.be/stops/301422", "https://data.delijn.be/stops/302133"], ["https://data.delijn.be/stops/300501", "https://data.delijn.be/stops/300510"], ["https://data.delijn.be/stops/102684", "https://data.delijn.be/stops/107338"], ["https://data.delijn.be/stops/401446", "https://data.delijn.be/stops/401516"], ["https://data.delijn.be/stops/304533", "https://data.delijn.be/stops/307586"], ["https://data.delijn.be/stops/200937", "https://data.delijn.be/stops/203435"], ["https://data.delijn.be/stops/405124", "https://data.delijn.be/stops/405319"], ["https://data.delijn.be/stops/103145", "https://data.delijn.be/stops/109444"], ["https://data.delijn.be/stops/101780", "https://data.delijn.be/stops/105340"], ["https://data.delijn.be/stops/405505", "https://data.delijn.be/stops/407702"], ["https://data.delijn.be/stops/107007", "https://data.delijn.be/stops/107008"], ["https://data.delijn.be/stops/102933", "https://data.delijn.be/stops/106037"], ["https://data.delijn.be/stops/409441", "https://data.delijn.be/stops/409442"], ["https://data.delijn.be/stops/408200", "https://data.delijn.be/stops/307451"], ["https://data.delijn.be/stops/200114", "https://data.delijn.be/stops/203057"], ["https://data.delijn.be/stops/302995", "https://data.delijn.be/stops/302996"], ["https://data.delijn.be/stops/304557", "https://data.delijn.be/stops/307570"], ["https://data.delijn.be/stops/204447", "https://data.delijn.be/stops/205449"], ["https://data.delijn.be/stops/107192", "https://data.delijn.be/stops/109383"], ["https://data.delijn.be/stops/208831", "https://data.delijn.be/stops/209796"], ["https://data.delijn.be/stops/104301", "https://data.delijn.be/stops/104552"], ["https://data.delijn.be/stops/203477", "https://data.delijn.be/stops/211003"], ["https://data.delijn.be/stops/109014", "https://data.delijn.be/stops/109643"], ["https://data.delijn.be/stops/103322", "https://data.delijn.be/stops/105660"], ["https://data.delijn.be/stops/406255", "https://data.delijn.be/stops/406290"], ["https://data.delijn.be/stops/302630", "https://data.delijn.be/stops/302642"], ["https://data.delijn.be/stops/301794", "https://data.delijn.be/stops/305313"], ["https://data.delijn.be/stops/404603", "https://data.delijn.be/stops/404604"], ["https://data.delijn.be/stops/300017", "https://data.delijn.be/stops/303092"], ["https://data.delijn.be/stops/405023", "https://data.delijn.be/stops/405071"], ["https://data.delijn.be/stops/206645", "https://data.delijn.be/stops/209686"], ["https://data.delijn.be/stops/204473", "https://data.delijn.be/stops/205094"], ["https://data.delijn.be/stops/405842", "https://data.delijn.be/stops/405843"], ["https://data.delijn.be/stops/300815", "https://data.delijn.be/stops/300836"], ["https://data.delijn.be/stops/505797", "https://data.delijn.be/stops/507957"], ["https://data.delijn.be/stops/101170", "https://data.delijn.be/stops/101175"], ["https://data.delijn.be/stops/303645", "https://data.delijn.be/stops/305541"], ["https://data.delijn.be/stops/102746", "https://data.delijn.be/stops/104589"], ["https://data.delijn.be/stops/403388", "https://data.delijn.be/stops/403662"], ["https://data.delijn.be/stops/201941", "https://data.delijn.be/stops/211054"], ["https://data.delijn.be/stops/300391", "https://data.delijn.be/stops/300392"], ["https://data.delijn.be/stops/401442", "https://data.delijn.be/stops/401567"], ["https://data.delijn.be/stops/103369", "https://data.delijn.be/stops/103393"], ["https://data.delijn.be/stops/405333", "https://data.delijn.be/stops/405340"], ["https://data.delijn.be/stops/501305", "https://data.delijn.be/stops/501477"], ["https://data.delijn.be/stops/208219", "https://data.delijn.be/stops/209771"], ["https://data.delijn.be/stops/502424", "https://data.delijn.be/stops/507434"], ["https://data.delijn.be/stops/206112", "https://data.delijn.be/stops/207229"], ["https://data.delijn.be/stops/301723", "https://data.delijn.be/stops/303467"], ["https://data.delijn.be/stops/101811", "https://data.delijn.be/stops/103116"], ["https://data.delijn.be/stops/201356", "https://data.delijn.be/stops/208727"], ["https://data.delijn.be/stops/208177", "https://data.delijn.be/stops/209177"], ["https://data.delijn.be/stops/500007", "https://data.delijn.be/stops/509947"], ["https://data.delijn.be/stops/302571", "https://data.delijn.be/stops/308119"], ["https://data.delijn.be/stops/200821", "https://data.delijn.be/stops/209653"], ["https://data.delijn.be/stops/101409", "https://data.delijn.be/stops/101411"], ["https://data.delijn.be/stops/408396", "https://data.delijn.be/stops/408397"], ["https://data.delijn.be/stops/200352", "https://data.delijn.be/stops/202650"], ["https://data.delijn.be/stops/105019", "https://data.delijn.be/stops/105096"], ["https://data.delijn.be/stops/201862", "https://data.delijn.be/stops/203274"], ["https://data.delijn.be/stops/408295", "https://data.delijn.be/stops/308182"], ["https://data.delijn.be/stops/402378", "https://data.delijn.be/stops/402439"], ["https://data.delijn.be/stops/505166", "https://data.delijn.be/stops/509426"], ["https://data.delijn.be/stops/103169", "https://data.delijn.be/stops/104093"], ["https://data.delijn.be/stops/300759", "https://data.delijn.be/stops/300791"], ["https://data.delijn.be/stops/102378", "https://data.delijn.be/stops/102379"], ["https://data.delijn.be/stops/207262", "https://data.delijn.be/stops/207263"], ["https://data.delijn.be/stops/303717", "https://data.delijn.be/stops/303718"], ["https://data.delijn.be/stops/404363", "https://data.delijn.be/stops/404364"], ["https://data.delijn.be/stops/304237", "https://data.delijn.be/stops/306706"], ["https://data.delijn.be/stops/301856", "https://data.delijn.be/stops/307285"], ["https://data.delijn.be/stops/201546", "https://data.delijn.be/stops/203898"], ["https://data.delijn.be/stops/402080", "https://data.delijn.be/stops/402081"], ["https://data.delijn.be/stops/406901", "https://data.delijn.be/stops/406920"], ["https://data.delijn.be/stops/201095", "https://data.delijn.be/stops/201482"], ["https://data.delijn.be/stops/406322", "https://data.delijn.be/stops/406325"], ["https://data.delijn.be/stops/208431", "https://data.delijn.be/stops/208677"], ["https://data.delijn.be/stops/308746", "https://data.delijn.be/stops/308748"], ["https://data.delijn.be/stops/303167", "https://data.delijn.be/stops/304327"], ["https://data.delijn.be/stops/400729", "https://data.delijn.be/stops/409442"], ["https://data.delijn.be/stops/504069", "https://data.delijn.be/stops/509064"], ["https://data.delijn.be/stops/302032", "https://data.delijn.be/stops/308756"], ["https://data.delijn.be/stops/301321", "https://data.delijn.be/stops/301912"], ["https://data.delijn.be/stops/301265", "https://data.delijn.be/stops/301275"], ["https://data.delijn.be/stops/201773", "https://data.delijn.be/stops/218026"], ["https://data.delijn.be/stops/206376", "https://data.delijn.be/stops/207727"], ["https://data.delijn.be/stops/403356", "https://data.delijn.be/stops/403520"], ["https://data.delijn.be/stops/200156", "https://data.delijn.be/stops/201545"], ["https://data.delijn.be/stops/106083", "https://data.delijn.be/stops/106138"], ["https://data.delijn.be/stops/505186", "https://data.delijn.be/stops/505960"], ["https://data.delijn.be/stops/405176", "https://data.delijn.be/stops/405218"], ["https://data.delijn.be/stops/305547", "https://data.delijn.be/stops/305568"], ["https://data.delijn.be/stops/504389", "https://data.delijn.be/stops/505977"], ["https://data.delijn.be/stops/200531", "https://data.delijn.be/stops/210079"], ["https://data.delijn.be/stops/202048", "https://data.delijn.be/stops/203048"], ["https://data.delijn.be/stops/204540", "https://data.delijn.be/stops/204619"], ["https://data.delijn.be/stops/407896", "https://data.delijn.be/stops/407897"], ["https://data.delijn.be/stops/303472", "https://data.delijn.be/stops/303473"], ["https://data.delijn.be/stops/402408", "https://data.delijn.be/stops/402419"], ["https://data.delijn.be/stops/504227", "https://data.delijn.be/stops/505706"], ["https://data.delijn.be/stops/400549", "https://data.delijn.be/stops/403858"], ["https://data.delijn.be/stops/206286", "https://data.delijn.be/stops/206291"], ["https://data.delijn.be/stops/300463", "https://data.delijn.be/stops/302669"], ["https://data.delijn.be/stops/401538", "https://data.delijn.be/stops/401887"], ["https://data.delijn.be/stops/302473", "https://data.delijn.be/stops/302474"], ["https://data.delijn.be/stops/407683", "https://data.delijn.be/stops/407684"], ["https://data.delijn.be/stops/208553", "https://data.delijn.be/stops/208554"], ["https://data.delijn.be/stops/402773", "https://data.delijn.be/stops/402776"], ["https://data.delijn.be/stops/405311", "https://data.delijn.be/stops/306777"], ["https://data.delijn.be/stops/102166", "https://data.delijn.be/stops/104585"], ["https://data.delijn.be/stops/402151", "https://data.delijn.be/stops/406804"], ["https://data.delijn.be/stops/407903", "https://data.delijn.be/stops/408043"], ["https://data.delijn.be/stops/308417", "https://data.delijn.be/stops/308708"], ["https://data.delijn.be/stops/401431", "https://data.delijn.be/stops/408469"], ["https://data.delijn.be/stops/108981", "https://data.delijn.be/stops/108982"], ["https://data.delijn.be/stops/404458", "https://data.delijn.be/stops/404583"], ["https://data.delijn.be/stops/304432", "https://data.delijn.be/stops/306063"], ["https://data.delijn.be/stops/502645", "https://data.delijn.be/stops/502695"], ["https://data.delijn.be/stops/406814", "https://data.delijn.be/stops/410163"], ["https://data.delijn.be/stops/504025", "https://data.delijn.be/stops/509759"], ["https://data.delijn.be/stops/300394", "https://data.delijn.be/stops/304635"], ["https://data.delijn.be/stops/501672", "https://data.delijn.be/stops/506435"], ["https://data.delijn.be/stops/108951", "https://data.delijn.be/stops/108953"], ["https://data.delijn.be/stops/304209", "https://data.delijn.be/stops/305349"], ["https://data.delijn.be/stops/207239", "https://data.delijn.be/stops/207285"], ["https://data.delijn.be/stops/400714", "https://data.delijn.be/stops/401919"], ["https://data.delijn.be/stops/502354", "https://data.delijn.be/stops/502355"], ["https://data.delijn.be/stops/206512", "https://data.delijn.be/stops/207847"], ["https://data.delijn.be/stops/504346", "https://data.delijn.be/stops/504352"], ["https://data.delijn.be/stops/300293", "https://data.delijn.be/stops/301318"], ["https://data.delijn.be/stops/302053", "https://data.delijn.be/stops/308959"], ["https://data.delijn.be/stops/304849", "https://data.delijn.be/stops/304857"], ["https://data.delijn.be/stops/408337", "https://data.delijn.be/stops/410157"], ["https://data.delijn.be/stops/402156", "https://data.delijn.be/stops/402157"], ["https://data.delijn.be/stops/307780", "https://data.delijn.be/stops/307781"], ["https://data.delijn.be/stops/500007", "https://data.delijn.be/stops/508710"], ["https://data.delijn.be/stops/104839", "https://data.delijn.be/stops/108985"], ["https://data.delijn.be/stops/102930", "https://data.delijn.be/stops/104002"], ["https://data.delijn.be/stops/102422", "https://data.delijn.be/stops/107319"], ["https://data.delijn.be/stops/409476", "https://data.delijn.be/stops/409478"], ["https://data.delijn.be/stops/201051", "https://data.delijn.be/stops/211093"], ["https://data.delijn.be/stops/503870", "https://data.delijn.be/stops/503875"], ["https://data.delijn.be/stops/103058", "https://data.delijn.be/stops/103576"], ["https://data.delijn.be/stops/503674", "https://data.delijn.be/stops/508674"], ["https://data.delijn.be/stops/302508", "https://data.delijn.be/stops/302513"], ["https://data.delijn.be/stops/503792", "https://data.delijn.be/stops/508792"], ["https://data.delijn.be/stops/206879", "https://data.delijn.be/stops/207879"], ["https://data.delijn.be/stops/206250", "https://data.delijn.be/stops/217019"], ["https://data.delijn.be/stops/204524", "https://data.delijn.be/stops/204525"], ["https://data.delijn.be/stops/102255", "https://data.delijn.be/stops/102446"], ["https://data.delijn.be/stops/403382", "https://data.delijn.be/stops/403530"], ["https://data.delijn.be/stops/204930", "https://data.delijn.be/stops/208730"], ["https://data.delijn.be/stops/301254", "https://data.delijn.be/stops/301274"], ["https://data.delijn.be/stops/400467", "https://data.delijn.be/stops/400468"], ["https://data.delijn.be/stops/102857", "https://data.delijn.be/stops/204612"], ["https://data.delijn.be/stops/106287", "https://data.delijn.be/stops/106288"], ["https://data.delijn.be/stops/504679", "https://data.delijn.be/stops/509200"], ["https://data.delijn.be/stops/304595", "https://data.delijn.be/stops/304611"], ["https://data.delijn.be/stops/305780", "https://data.delijn.be/stops/305782"], ["https://data.delijn.be/stops/406206", "https://data.delijn.be/stops/406448"], ["https://data.delijn.be/stops/404547", "https://data.delijn.be/stops/404575"], ["https://data.delijn.be/stops/106262", "https://data.delijn.be/stops/106274"], ["https://data.delijn.be/stops/200500", "https://data.delijn.be/stops/202362"], ["https://data.delijn.be/stops/103075", "https://data.delijn.be/stops/104122"], ["https://data.delijn.be/stops/301303", "https://data.delijn.be/stops/301908"], ["https://data.delijn.be/stops/400732", "https://data.delijn.be/stops/400733"], ["https://data.delijn.be/stops/109335", "https://data.delijn.be/stops/109336"], ["https://data.delijn.be/stops/202241", "https://data.delijn.be/stops/202957"], ["https://data.delijn.be/stops/404780", "https://data.delijn.be/stops/404781"], ["https://data.delijn.be/stops/408603", "https://data.delijn.be/stops/408699"], ["https://data.delijn.be/stops/402798", "https://data.delijn.be/stops/402799"], ["https://data.delijn.be/stops/504539", "https://data.delijn.be/stops/504540"], ["https://data.delijn.be/stops/206402", "https://data.delijn.be/stops/207402"], ["https://data.delijn.be/stops/400044", "https://data.delijn.be/stops/400307"], ["https://data.delijn.be/stops/503085", "https://data.delijn.be/stops/505198"], ["https://data.delijn.be/stops/208344", "https://data.delijn.be/stops/218028"], ["https://data.delijn.be/stops/105356", "https://data.delijn.be/stops/107121"], ["https://data.delijn.be/stops/304601", "https://data.delijn.be/stops/304717"], ["https://data.delijn.be/stops/403458", "https://data.delijn.be/stops/409320"], ["https://data.delijn.be/stops/101046", "https://data.delijn.be/stops/205642"], ["https://data.delijn.be/stops/208786", "https://data.delijn.be/stops/209167"], ["https://data.delijn.be/stops/101948", "https://data.delijn.be/stops/102256"], ["https://data.delijn.be/stops/204230", "https://data.delijn.be/stops/205193"], ["https://data.delijn.be/stops/302641", "https://data.delijn.be/stops/302688"], ["https://data.delijn.be/stops/508745", "https://data.delijn.be/stops/509782"], ["https://data.delijn.be/stops/104561", "https://data.delijn.be/stops/104564"], ["https://data.delijn.be/stops/406707", "https://data.delijn.be/stops/407083"], ["https://data.delijn.be/stops/501176", "https://data.delijn.be/stops/501406"], ["https://data.delijn.be/stops/405822", "https://data.delijn.be/stops/409418"], ["https://data.delijn.be/stops/108914", "https://data.delijn.be/stops/109399"], ["https://data.delijn.be/stops/400363", "https://data.delijn.be/stops/400417"], ["https://data.delijn.be/stops/502355", "https://data.delijn.be/stops/505016"], ["https://data.delijn.be/stops/305697", "https://data.delijn.be/stops/305700"], ["https://data.delijn.be/stops/405170", "https://data.delijn.be/stops/405171"], ["https://data.delijn.be/stops/204612", "https://data.delijn.be/stops/204624"], ["https://data.delijn.be/stops/101835", "https://data.delijn.be/stops/104825"], ["https://data.delijn.be/stops/303011", "https://data.delijn.be/stops/306316"], ["https://data.delijn.be/stops/105706", "https://data.delijn.be/stops/105707"], ["https://data.delijn.be/stops/301647", "https://data.delijn.be/stops/302112"], ["https://data.delijn.be/stops/205518", "https://data.delijn.be/stops/205519"], ["https://data.delijn.be/stops/301308", "https://data.delijn.be/stops/304858"], ["https://data.delijn.be/stops/208695", "https://data.delijn.be/stops/208714"], ["https://data.delijn.be/stops/102625", "https://data.delijn.be/stops/104410"], ["https://data.delijn.be/stops/201600", "https://data.delijn.be/stops/201601"], ["https://data.delijn.be/stops/107062", "https://data.delijn.be/stops/107063"], ["https://data.delijn.be/stops/101162", "https://data.delijn.be/stops/205639"], ["https://data.delijn.be/stops/304377", "https://data.delijn.be/stops/304393"], ["https://data.delijn.be/stops/509117", "https://data.delijn.be/stops/509394"], ["https://data.delijn.be/stops/209140", "https://data.delijn.be/stops/209141"], ["https://data.delijn.be/stops/304409", "https://data.delijn.be/stops/306876"], ["https://data.delijn.be/stops/101093", "https://data.delijn.be/stops/101132"], ["https://data.delijn.be/stops/403187", "https://data.delijn.be/stops/403193"], ["https://data.delijn.be/stops/206944", "https://data.delijn.be/stops/209612"], ["https://data.delijn.be/stops/401076", "https://data.delijn.be/stops/401166"], ["https://data.delijn.be/stops/204992", "https://data.delijn.be/stops/208334"], ["https://data.delijn.be/stops/501129", "https://data.delijn.be/stops/506366"], ["https://data.delijn.be/stops/501146", "https://data.delijn.be/stops/509833"], ["https://data.delijn.be/stops/206338", "https://data.delijn.be/stops/207741"], ["https://data.delijn.be/stops/403138", "https://data.delijn.be/stops/403276"], ["https://data.delijn.be/stops/403545", "https://data.delijn.be/stops/410322"], ["https://data.delijn.be/stops/402171", "https://data.delijn.be/stops/402368"], ["https://data.delijn.be/stops/402090", "https://data.delijn.be/stops/402104"], ["https://data.delijn.be/stops/503548", "https://data.delijn.be/stops/508548"], ["https://data.delijn.be/stops/209670", "https://data.delijn.be/stops/209671"], ["https://data.delijn.be/stops/503929", "https://data.delijn.be/stops/508929"], ["https://data.delijn.be/stops/307912", "https://data.delijn.be/stops/307913"], ["https://data.delijn.be/stops/209325", "https://data.delijn.be/stops/503864"], ["https://data.delijn.be/stops/207782", "https://data.delijn.be/stops/208739"], ["https://data.delijn.be/stops/204753", "https://data.delijn.be/stops/205753"], ["https://data.delijn.be/stops/402542", "https://data.delijn.be/stops/404064"], ["https://data.delijn.be/stops/402856", "https://data.delijn.be/stops/409881"], ["https://data.delijn.be/stops/407882", "https://data.delijn.be/stops/408183"], ["https://data.delijn.be/stops/201950", "https://data.delijn.be/stops/203940"], ["https://data.delijn.be/stops/102286", "https://data.delijn.be/stops/105518"], ["https://data.delijn.be/stops/108709", "https://data.delijn.be/stops/108720"], ["https://data.delijn.be/stops/504549", "https://data.delijn.be/stops/504701"], ["https://data.delijn.be/stops/406402", "https://data.delijn.be/stops/406404"], ["https://data.delijn.be/stops/200376", "https://data.delijn.be/stops/211044"], ["https://data.delijn.be/stops/108946", "https://data.delijn.be/stops/108948"], ["https://data.delijn.be/stops/506641", "https://data.delijn.be/stops/506661"], ["https://data.delijn.be/stops/407838", "https://data.delijn.be/stops/407839"], ["https://data.delijn.be/stops/101943", "https://data.delijn.be/stops/109642"], ["https://data.delijn.be/stops/408967", "https://data.delijn.be/stops/408981"], ["https://data.delijn.be/stops/206101", "https://data.delijn.be/stops/207845"], ["https://data.delijn.be/stops/206586", "https://data.delijn.be/stops/207586"], ["https://data.delijn.be/stops/308478", "https://data.delijn.be/stops/308483"], ["https://data.delijn.be/stops/404909", "https://data.delijn.be/stops/404966"], ["https://data.delijn.be/stops/202985", "https://data.delijn.be/stops/203985"], ["https://data.delijn.be/stops/201922", "https://data.delijn.be/stops/207948"], ["https://data.delijn.be/stops/408263", "https://data.delijn.be/stops/408438"], ["https://data.delijn.be/stops/408026", "https://data.delijn.be/stops/305731"], ["https://data.delijn.be/stops/300810", "https://data.delijn.be/stops/307232"], ["https://data.delijn.be/stops/304068", "https://data.delijn.be/stops/304117"], ["https://data.delijn.be/stops/208293", "https://data.delijn.be/stops/209724"], ["https://data.delijn.be/stops/406465", "https://data.delijn.be/stops/406478"], ["https://data.delijn.be/stops/405283", "https://data.delijn.be/stops/405506"], ["https://data.delijn.be/stops/205021", "https://data.delijn.be/stops/205409"], ["https://data.delijn.be/stops/102550", "https://data.delijn.be/stops/102552"], ["https://data.delijn.be/stops/302533", "https://data.delijn.be/stops/308619"], ["https://data.delijn.be/stops/301890", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/102035", "https://data.delijn.be/stops/105590"], ["https://data.delijn.be/stops/105679", "https://data.delijn.be/stops/106755"], ["https://data.delijn.be/stops/504428", "https://data.delijn.be/stops/505946"], ["https://data.delijn.be/stops/305777", "https://data.delijn.be/stops/305796"], ["https://data.delijn.be/stops/407859", "https://data.delijn.be/stops/407983"], ["https://data.delijn.be/stops/105708", "https://data.delijn.be/stops/106068"], ["https://data.delijn.be/stops/407284", "https://data.delijn.be/stops/407871"], ["https://data.delijn.be/stops/204981", "https://data.delijn.be/stops/206490"], ["https://data.delijn.be/stops/501306", "https://data.delijn.be/stops/501400"], ["https://data.delijn.be/stops/204452", "https://data.delijn.be/stops/205452"], ["https://data.delijn.be/stops/210076", "https://data.delijn.be/stops/505518"], ["https://data.delijn.be/stops/208606", "https://data.delijn.be/stops/209606"], ["https://data.delijn.be/stops/108607", "https://data.delijn.be/stops/307434"], ["https://data.delijn.be/stops/201121", "https://data.delijn.be/stops/202888"], ["https://data.delijn.be/stops/104023", "https://data.delijn.be/stops/109885"], ["https://data.delijn.be/stops/406574", "https://data.delijn.be/stops/406587"], ["https://data.delijn.be/stops/301832", "https://data.delijn.be/stops/305985"], ["https://data.delijn.be/stops/503012", "https://data.delijn.be/stops/505277"], ["https://data.delijn.be/stops/300024", "https://data.delijn.be/stops/307000"], ["https://data.delijn.be/stops/500933", "https://data.delijn.be/stops/500935"], ["https://data.delijn.be/stops/200939", "https://data.delijn.be/stops/202041"], ["https://data.delijn.be/stops/504220", "https://data.delijn.be/stops/509222"], ["https://data.delijn.be/stops/205445", "https://data.delijn.be/stops/205498"], ["https://data.delijn.be/stops/308798", "https://data.delijn.be/stops/308849"], ["https://data.delijn.be/stops/209192", "https://data.delijn.be/stops/209358"], ["https://data.delijn.be/stops/203344", "https://data.delijn.be/stops/206869"], ["https://data.delijn.be/stops/200098", "https://data.delijn.be/stops/201368"], ["https://data.delijn.be/stops/409028", "https://data.delijn.be/stops/409030"], ["https://data.delijn.be/stops/502696", "https://data.delijn.be/stops/507696"], ["https://data.delijn.be/stops/502379", "https://data.delijn.be/stops/502381"], ["https://data.delijn.be/stops/108636", "https://data.delijn.be/stops/109669"], ["https://data.delijn.be/stops/300290", "https://data.delijn.be/stops/301315"], ["https://data.delijn.be/stops/200592", "https://data.delijn.be/stops/201593"], ["https://data.delijn.be/stops/504945", "https://data.delijn.be/stops/507201"], ["https://data.delijn.be/stops/208237", "https://data.delijn.be/stops/208243"], ["https://data.delijn.be/stops/208464", "https://data.delijn.be/stops/208514"], ["https://data.delijn.be/stops/501692", "https://data.delijn.be/stops/505437"], ["https://data.delijn.be/stops/501199", "https://data.delijn.be/stops/501529"], ["https://data.delijn.be/stops/502495", "https://data.delijn.be/stops/505588"], ["https://data.delijn.be/stops/401404", "https://data.delijn.be/stops/300918"], ["https://data.delijn.be/stops/502139", "https://data.delijn.be/stops/502579"], ["https://data.delijn.be/stops/300174", "https://data.delijn.be/stops/301219"], ["https://data.delijn.be/stops/502415", "https://data.delijn.be/stops/507749"], ["https://data.delijn.be/stops/200660", "https://data.delijn.be/stops/210124"], ["https://data.delijn.be/stops/409071", "https://data.delijn.be/stops/409087"], ["https://data.delijn.be/stops/503872", "https://data.delijn.be/stops/508872"], ["https://data.delijn.be/stops/206826", "https://data.delijn.be/stops/210009"], ["https://data.delijn.be/stops/503796", "https://data.delijn.be/stops/503798"], ["https://data.delijn.be/stops/102638", "https://data.delijn.be/stops/104926"], ["https://data.delijn.be/stops/107452", "https://data.delijn.be/stops/107454"], ["https://data.delijn.be/stops/304970", "https://data.delijn.be/stops/304972"], ["https://data.delijn.be/stops/202795", "https://data.delijn.be/stops/203311"], ["https://data.delijn.be/stops/403199", "https://data.delijn.be/stops/404759"], ["https://data.delijn.be/stops/303810", "https://data.delijn.be/stops/303826"], ["https://data.delijn.be/stops/302390", "https://data.delijn.be/stops/302391"], ["https://data.delijn.be/stops/504859", "https://data.delijn.be/stops/505990"], ["https://data.delijn.be/stops/200384", "https://data.delijn.be/stops/208726"], ["https://data.delijn.be/stops/501176", "https://data.delijn.be/stops/501250"], ["https://data.delijn.be/stops/504525", "https://data.delijn.be/stops/504530"], ["https://data.delijn.be/stops/504089", "https://data.delijn.be/stops/505210"], ["https://data.delijn.be/stops/200820", "https://data.delijn.be/stops/200847"], ["https://data.delijn.be/stops/106463", "https://data.delijn.be/stops/109557"], ["https://data.delijn.be/stops/403276", "https://data.delijn.be/stops/403666"], ["https://data.delijn.be/stops/207119", "https://data.delijn.be/stops/207120"], ["https://data.delijn.be/stops/507024", "https://data.delijn.be/stops/507168"], ["https://data.delijn.be/stops/506078", "https://data.delijn.be/stops/506081"], ["https://data.delijn.be/stops/302670", "https://data.delijn.be/stops/302674"], ["https://data.delijn.be/stops/106424", "https://data.delijn.be/stops/106425"], ["https://data.delijn.be/stops/101423", "https://data.delijn.be/stops/106981"], ["https://data.delijn.be/stops/402069", "https://data.delijn.be/stops/402078"], ["https://data.delijn.be/stops/204117", "https://data.delijn.be/stops/205117"], ["https://data.delijn.be/stops/202656", "https://data.delijn.be/stops/203656"], ["https://data.delijn.be/stops/403898", "https://data.delijn.be/stops/404051"], ["https://data.delijn.be/stops/503984", "https://data.delijn.be/stops/504946"], ["https://data.delijn.be/stops/400093", "https://data.delijn.be/stops/409143"], ["https://data.delijn.be/stops/401296", "https://data.delijn.be/stops/401363"], ["https://data.delijn.be/stops/503964", "https://data.delijn.be/stops/509617"], ["https://data.delijn.be/stops/400648", "https://data.delijn.be/stops/400649"], ["https://data.delijn.be/stops/402068", "https://data.delijn.be/stops/402222"], ["https://data.delijn.be/stops/202032", "https://data.delijn.be/stops/203033"], ["https://data.delijn.be/stops/200805", "https://data.delijn.be/stops/200888"], ["https://data.delijn.be/stops/207544", "https://data.delijn.be/stops/209748"], ["https://data.delijn.be/stops/504163", "https://data.delijn.be/stops/509163"], ["https://data.delijn.be/stops/102196", "https://data.delijn.be/stops/104271"], ["https://data.delijn.be/stops/407590", "https://data.delijn.be/stops/407674"], ["https://data.delijn.be/stops/508189", "https://data.delijn.be/stops/508208"], ["https://data.delijn.be/stops/305002", "https://data.delijn.be/stops/305020"], ["https://data.delijn.be/stops/404835", "https://data.delijn.be/stops/406101"], ["https://data.delijn.be/stops/408246", "https://data.delijn.be/stops/408295"], ["https://data.delijn.be/stops/401922", "https://data.delijn.be/stops/403746"], ["https://data.delijn.be/stops/204217", "https://data.delijn.be/stops/205217"], ["https://data.delijn.be/stops/200192", "https://data.delijn.be/stops/201191"], ["https://data.delijn.be/stops/104080", "https://data.delijn.be/stops/104082"], ["https://data.delijn.be/stops/408674", "https://data.delijn.be/stops/408752"], ["https://data.delijn.be/stops/106480", "https://data.delijn.be/stops/106482"], ["https://data.delijn.be/stops/409308", "https://data.delijn.be/stops/409309"], ["https://data.delijn.be/stops/201007", "https://data.delijn.be/stops/203297"], ["https://data.delijn.be/stops/408114", "https://data.delijn.be/stops/408116"], ["https://data.delijn.be/stops/501396", "https://data.delijn.be/stops/505836"], ["https://data.delijn.be/stops/103644", "https://data.delijn.be/stops/107731"], ["https://data.delijn.be/stops/201301", "https://data.delijn.be/stops/201945"], ["https://data.delijn.be/stops/200272", "https://data.delijn.be/stops/200273"], ["https://data.delijn.be/stops/503362", "https://data.delijn.be/stops/503396"], ["https://data.delijn.be/stops/405949", "https://data.delijn.be/stops/405951"], ["https://data.delijn.be/stops/300416", "https://data.delijn.be/stops/300445"], ["https://data.delijn.be/stops/202796", "https://data.delijn.be/stops/203797"], ["https://data.delijn.be/stops/300548", "https://data.delijn.be/stops/300549"], ["https://data.delijn.be/stops/400654", "https://data.delijn.be/stops/401270"], ["https://data.delijn.be/stops/206319", "https://data.delijn.be/stops/206918"], ["https://data.delijn.be/stops/204459", "https://data.delijn.be/stops/204479"], ["https://data.delijn.be/stops/502646", "https://data.delijn.be/stops/505356"], ["https://data.delijn.be/stops/207235", "https://data.delijn.be/stops/207236"], ["https://data.delijn.be/stops/107639", "https://data.delijn.be/stops/107641"], ["https://data.delijn.be/stops/503848", "https://data.delijn.be/stops/507942"], ["https://data.delijn.be/stops/208644", "https://data.delijn.be/stops/208645"], ["https://data.delijn.be/stops/204428", "https://data.delijn.be/stops/205428"], ["https://data.delijn.be/stops/208293", "https://data.delijn.be/stops/209293"], ["https://data.delijn.be/stops/302540", "https://data.delijn.be/stops/308714"], ["https://data.delijn.be/stops/304148", "https://data.delijn.be/stops/304154"], ["https://data.delijn.be/stops/200028", "https://data.delijn.be/stops/201446"], ["https://data.delijn.be/stops/202702", "https://data.delijn.be/stops/203703"], ["https://data.delijn.be/stops/201926", "https://data.delijn.be/stops/207401"], ["https://data.delijn.be/stops/202251", "https://data.delijn.be/stops/203251"], ["https://data.delijn.be/stops/400600", "https://data.delijn.be/stops/400604"], ["https://data.delijn.be/stops/406056", "https://data.delijn.be/stops/406388"], ["https://data.delijn.be/stops/102629", "https://data.delijn.be/stops/108213"], ["https://data.delijn.be/stops/502355", "https://data.delijn.be/stops/502362"], ["https://data.delijn.be/stops/202348", "https://data.delijn.be/stops/208443"], ["https://data.delijn.be/stops/501551", "https://data.delijn.be/stops/509795"], ["https://data.delijn.be/stops/305700", "https://data.delijn.be/stops/305705"], ["https://data.delijn.be/stops/301463", "https://data.delijn.be/stops/308071"], ["https://data.delijn.be/stops/402703", "https://data.delijn.be/stops/402870"], ["https://data.delijn.be/stops/500195", "https://data.delijn.be/stops/505032"], ["https://data.delijn.be/stops/404523", "https://data.delijn.be/stops/404538"], ["https://data.delijn.be/stops/406160", "https://data.delijn.be/stops/406264"], ["https://data.delijn.be/stops/200399", "https://data.delijn.be/stops/205950"], ["https://data.delijn.be/stops/501661", "https://data.delijn.be/stops/506642"], ["https://data.delijn.be/stops/403218", "https://data.delijn.be/stops/403553"], ["https://data.delijn.be/stops/201872", "https://data.delijn.be/stops/202572"], ["https://data.delijn.be/stops/402177", "https://data.delijn.be/stops/402471"], ["https://data.delijn.be/stops/501550", "https://data.delijn.be/stops/501741"], ["https://data.delijn.be/stops/402262", "https://data.delijn.be/stops/402263"], ["https://data.delijn.be/stops/305071", "https://data.delijn.be/stops/306952"], ["https://data.delijn.be/stops/404305", "https://data.delijn.be/stops/409576"], ["https://data.delijn.be/stops/400746", "https://data.delijn.be/stops/400748"], ["https://data.delijn.be/stops/401378", "https://data.delijn.be/stops/401379"], ["https://data.delijn.be/stops/502414", "https://data.delijn.be/stops/502696"], ["https://data.delijn.be/stops/503270", "https://data.delijn.be/stops/503273"], ["https://data.delijn.be/stops/106429", "https://data.delijn.be/stops/106562"], ["https://data.delijn.be/stops/403333", "https://data.delijn.be/stops/403339"], ["https://data.delijn.be/stops/301635", "https://data.delijn.be/stops/301649"], ["https://data.delijn.be/stops/401804", "https://data.delijn.be/stops/401805"], ["https://data.delijn.be/stops/307496", "https://data.delijn.be/stops/307497"], ["https://data.delijn.be/stops/208279", "https://data.delijn.be/stops/209279"], ["https://data.delijn.be/stops/101430", "https://data.delijn.be/stops/103075"], ["https://data.delijn.be/stops/306379", "https://data.delijn.be/stops/306381"], ["https://data.delijn.be/stops/105697", "https://data.delijn.be/stops/105699"], ["https://data.delijn.be/stops/107882", "https://data.delijn.be/stops/107886"], ["https://data.delijn.be/stops/107715", "https://data.delijn.be/stops/107716"], ["https://data.delijn.be/stops/106231", "https://data.delijn.be/stops/106232"], ["https://data.delijn.be/stops/402071", "https://data.delijn.be/stops/405549"], ["https://data.delijn.be/stops/305346", "https://data.delijn.be/stops/307970"], ["https://data.delijn.be/stops/300133", "https://data.delijn.be/stops/305009"], ["https://data.delijn.be/stops/404037", "https://data.delijn.be/stops/404039"], ["https://data.delijn.be/stops/106431", "https://data.delijn.be/stops/106500"], ["https://data.delijn.be/stops/501446", "https://data.delijn.be/stops/501601"], ["https://data.delijn.be/stops/105549", "https://data.delijn.be/stops/105551"], ["https://data.delijn.be/stops/300045", "https://data.delijn.be/stops/300046"], ["https://data.delijn.be/stops/206977", "https://data.delijn.be/stops/207684"], ["https://data.delijn.be/stops/300185", "https://data.delijn.be/stops/300186"], ["https://data.delijn.be/stops/308720", "https://data.delijn.be/stops/308721"], ["https://data.delijn.be/stops/206751", "https://data.delijn.be/stops/208469"], ["https://data.delijn.be/stops/109046", "https://data.delijn.be/stops/109318"], ["https://data.delijn.be/stops/305772", "https://data.delijn.be/stops/305773"], ["https://data.delijn.be/stops/103046", "https://data.delijn.be/stops/106566"], ["https://data.delijn.be/stops/201138", "https://data.delijn.be/stops/201223"], ["https://data.delijn.be/stops/206161", "https://data.delijn.be/stops/206493"], ["https://data.delijn.be/stops/502303", "https://data.delijn.be/stops/507601"], ["https://data.delijn.be/stops/505689", "https://data.delijn.be/stops/505690"], ["https://data.delijn.be/stops/304134", "https://data.delijn.be/stops/307581"], ["https://data.delijn.be/stops/405282", "https://data.delijn.be/stops/405506"], ["https://data.delijn.be/stops/504310", "https://data.delijn.be/stops/504322"], ["https://data.delijn.be/stops/404934", "https://data.delijn.be/stops/404935"], ["https://data.delijn.be/stops/301556", "https://data.delijn.be/stops/301557"], ["https://data.delijn.be/stops/204347", "https://data.delijn.be/stops/205707"], ["https://data.delijn.be/stops/502078", "https://data.delijn.be/stops/507079"], ["https://data.delijn.be/stops/200761", "https://data.delijn.be/stops/505280"], ["https://data.delijn.be/stops/406552", "https://data.delijn.be/stops/406562"], ["https://data.delijn.be/stops/300379", "https://data.delijn.be/stops/301945"], ["https://data.delijn.be/stops/202182", "https://data.delijn.be/stops/202183"], ["https://data.delijn.be/stops/305987", "https://data.delijn.be/stops/305988"], ["https://data.delijn.be/stops/209423", "https://data.delijn.be/stops/209458"], ["https://data.delijn.be/stops/200810", "https://data.delijn.be/stops/200883"], ["https://data.delijn.be/stops/208469", "https://data.delijn.be/stops/209468"], ["https://data.delijn.be/stops/200370", "https://data.delijn.be/stops/200393"], ["https://data.delijn.be/stops/405371", "https://data.delijn.be/stops/302844"], ["https://data.delijn.be/stops/105197", "https://data.delijn.be/stops/108880"], ["https://data.delijn.be/stops/408324", "https://data.delijn.be/stops/408332"], ["https://data.delijn.be/stops/208588", "https://data.delijn.be/stops/305238"], ["https://data.delijn.be/stops/202506", "https://data.delijn.be/stops/203506"], ["https://data.delijn.be/stops/304383", "https://data.delijn.be/stops/304396"], ["https://data.delijn.be/stops/305707", "https://data.delijn.be/stops/305753"], ["https://data.delijn.be/stops/305613", "https://data.delijn.be/stops/305615"], ["https://data.delijn.be/stops/405304", "https://data.delijn.be/stops/405305"], ["https://data.delijn.be/stops/104402", "https://data.delijn.be/stops/204611"], ["https://data.delijn.be/stops/104586", "https://data.delijn.be/stops/107931"], ["https://data.delijn.be/stops/202818", "https://data.delijn.be/stops/203844"], ["https://data.delijn.be/stops/302551", "https://data.delijn.be/stops/302560"], ["https://data.delijn.be/stops/400064", "https://data.delijn.be/stops/400140"], ["https://data.delijn.be/stops/101873", "https://data.delijn.be/stops/104239"], ["https://data.delijn.be/stops/101590", "https://data.delijn.be/stops/103279"], ["https://data.delijn.be/stops/402681", "https://data.delijn.be/stops/405947"], ["https://data.delijn.be/stops/403978", "https://data.delijn.be/stops/403981"], ["https://data.delijn.be/stops/300744", "https://data.delijn.be/stops/300768"], ["https://data.delijn.be/stops/103266", "https://data.delijn.be/stops/103267"], ["https://data.delijn.be/stops/404530", "https://data.delijn.be/stops/409252"], ["https://data.delijn.be/stops/209340", "https://data.delijn.be/stops/219010"], ["https://data.delijn.be/stops/206131", "https://data.delijn.be/stops/206136"], ["https://data.delijn.be/stops/204379", "https://data.delijn.be/stops/204763"], ["https://data.delijn.be/stops/201726", "https://data.delijn.be/stops/203979"], ["https://data.delijn.be/stops/500927", "https://data.delijn.be/stops/504682"], ["https://data.delijn.be/stops/208767", "https://data.delijn.be/stops/209838"], ["https://data.delijn.be/stops/408657", "https://data.delijn.be/stops/408663"], ["https://data.delijn.be/stops/501673", "https://data.delijn.be/stops/505712"], ["https://data.delijn.be/stops/101362", "https://data.delijn.be/stops/102187"], ["https://data.delijn.be/stops/202960", "https://data.delijn.be/stops/203960"], ["https://data.delijn.be/stops/505081", "https://data.delijn.be/stops/508327"], ["https://data.delijn.be/stops/107830", "https://data.delijn.be/stops/107833"], ["https://data.delijn.be/stops/204134", "https://data.delijn.be/stops/205142"], ["https://data.delijn.be/stops/200258", "https://data.delijn.be/stops/201258"], ["https://data.delijn.be/stops/402141", "https://data.delijn.be/stops/402143"], ["https://data.delijn.be/stops/108314", "https://data.delijn.be/stops/109018"], ["https://data.delijn.be/stops/302620", "https://data.delijn.be/stops/303273"], ["https://data.delijn.be/stops/505522", "https://data.delijn.be/stops/505746"], ["https://data.delijn.be/stops/109436", "https://data.delijn.be/stops/109438"], ["https://data.delijn.be/stops/208791", "https://data.delijn.be/stops/208793"], ["https://data.delijn.be/stops/504203", "https://data.delijn.be/stops/509204"], ["https://data.delijn.be/stops/103314", "https://data.delijn.be/stops/105812"], ["https://data.delijn.be/stops/503459", "https://data.delijn.be/stops/503947"], ["https://data.delijn.be/stops/204682", "https://data.delijn.be/stops/205674"], ["https://data.delijn.be/stops/302640", "https://data.delijn.be/stops/302672"], ["https://data.delijn.be/stops/202161", "https://data.delijn.be/stops/203160"], ["https://data.delijn.be/stops/506226", "https://data.delijn.be/stops/506475"], ["https://data.delijn.be/stops/503851", "https://data.delijn.be/stops/509936"], ["https://data.delijn.be/stops/101587", "https://data.delijn.be/stops/105728"], ["https://data.delijn.be/stops/101073", "https://data.delijn.be/stops/101074"], ["https://data.delijn.be/stops/202727", "https://data.delijn.be/stops/203683"], ["https://data.delijn.be/stops/502245", "https://data.delijn.be/stops/502917"], ["https://data.delijn.be/stops/102019", "https://data.delijn.be/stops/109949"], ["https://data.delijn.be/stops/201748", "https://data.delijn.be/stops/202972"], ["https://data.delijn.be/stops/508060", "https://data.delijn.be/stops/508062"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/405705"], ["https://data.delijn.be/stops/305190", "https://data.delijn.be/stops/308682"], ["https://data.delijn.be/stops/202844", "https://data.delijn.be/stops/203844"], ["https://data.delijn.be/stops/404447", "https://data.delijn.be/stops/404449"], ["https://data.delijn.be/stops/201915", "https://data.delijn.be/stops/201933"], ["https://data.delijn.be/stops/202970", "https://data.delijn.be/stops/203970"], ["https://data.delijn.be/stops/200669", "https://data.delijn.be/stops/505843"], ["https://data.delijn.be/stops/201753", "https://data.delijn.be/stops/209221"], ["https://data.delijn.be/stops/303047", "https://data.delijn.be/stops/307897"], ["https://data.delijn.be/stops/105508", "https://data.delijn.be/stops/105511"], ["https://data.delijn.be/stops/208403", "https://data.delijn.be/stops/208790"], ["https://data.delijn.be/stops/504646", "https://data.delijn.be/stops/509165"], ["https://data.delijn.be/stops/501603", "https://data.delijn.be/stops/506400"], ["https://data.delijn.be/stops/102412", "https://data.delijn.be/stops/103290"], ["https://data.delijn.be/stops/300135", "https://data.delijn.be/stops/300139"], ["https://data.delijn.be/stops/304164", "https://data.delijn.be/stops/307535"], ["https://data.delijn.be/stops/301813", "https://data.delijn.be/stops/301814"], ["https://data.delijn.be/stops/103057", "https://data.delijn.be/stops/105036"], ["https://data.delijn.be/stops/206074", "https://data.delijn.be/stops/207074"], ["https://data.delijn.be/stops/107529", "https://data.delijn.be/stops/107748"], ["https://data.delijn.be/stops/208780", "https://data.delijn.be/stops/209352"], ["https://data.delijn.be/stops/101125", "https://data.delijn.be/stops/102370"], ["https://data.delijn.be/stops/101643", "https://data.delijn.be/stops/105236"], ["https://data.delijn.be/stops/106893", "https://data.delijn.be/stops/107220"], ["https://data.delijn.be/stops/202410", "https://data.delijn.be/stops/202412"], ["https://data.delijn.be/stops/302210", "https://data.delijn.be/stops/302218"], ["https://data.delijn.be/stops/400696", "https://data.delijn.be/stops/400697"], ["https://data.delijn.be/stops/304547", "https://data.delijn.be/stops/304548"], ["https://data.delijn.be/stops/401124", "https://data.delijn.be/stops/401132"], ["https://data.delijn.be/stops/206121", "https://data.delijn.be/stops/207142"], ["https://data.delijn.be/stops/204504", "https://data.delijn.be/stops/205904"], ["https://data.delijn.be/stops/503228", "https://data.delijn.be/stops/503771"], ["https://data.delijn.be/stops/300311", "https://data.delijn.be/stops/307108"], ["https://data.delijn.be/stops/202157", "https://data.delijn.be/stops/203157"], ["https://data.delijn.be/stops/103216", "https://data.delijn.be/stops/104889"], ["https://data.delijn.be/stops/102932", "https://data.delijn.be/stops/102934"], ["https://data.delijn.be/stops/504088", "https://data.delijn.be/stops/509088"], ["https://data.delijn.be/stops/408521", "https://data.delijn.be/stops/408735"], ["https://data.delijn.be/stops/204642", "https://data.delijn.be/stops/205642"], ["https://data.delijn.be/stops/503324", "https://data.delijn.be/stops/508321"], ["https://data.delijn.be/stops/209823", "https://data.delijn.be/stops/211113"], ["https://data.delijn.be/stops/209598", "https://data.delijn.be/stops/307308"], ["https://data.delijn.be/stops/105367", "https://data.delijn.be/stops/105387"], ["https://data.delijn.be/stops/102862", "https://data.delijn.be/stops/102869"], ["https://data.delijn.be/stops/204740", "https://data.delijn.be/stops/205741"], ["https://data.delijn.be/stops/205200", "https://data.delijn.be/stops/205235"], ["https://data.delijn.be/stops/404193", "https://data.delijn.be/stops/405984"], ["https://data.delijn.be/stops/409672", "https://data.delijn.be/stops/409687"], ["https://data.delijn.be/stops/407971", "https://data.delijn.be/stops/408008"], ["https://data.delijn.be/stops/101045", "https://data.delijn.be/stops/104321"], ["https://data.delijn.be/stops/301764", "https://data.delijn.be/stops/306795"], ["https://data.delijn.be/stops/204067", "https://data.delijn.be/stops/204599"], ["https://data.delijn.be/stops/404888", "https://data.delijn.be/stops/404891"], ["https://data.delijn.be/stops/400529", "https://data.delijn.be/stops/410002"], ["https://data.delijn.be/stops/101848", "https://data.delijn.be/stops/109750"], ["https://data.delijn.be/stops/302202", "https://data.delijn.be/stops/304132"], ["https://data.delijn.be/stops/303227", "https://data.delijn.be/stops/303228"], ["https://data.delijn.be/stops/203243", "https://data.delijn.be/stops/203506"], ["https://data.delijn.be/stops/307582", "https://data.delijn.be/stops/307760"], ["https://data.delijn.be/stops/204066", "https://data.delijn.be/stops/205097"], ["https://data.delijn.be/stops/501240", "https://data.delijn.be/stops/506243"], ["https://data.delijn.be/stops/304909", "https://data.delijn.be/stops/308660"], ["https://data.delijn.be/stops/502495", "https://data.delijn.be/stops/502734"], ["https://data.delijn.be/stops/504471", "https://data.delijn.be/stops/509471"], ["https://data.delijn.be/stops/206423", "https://data.delijn.be/stops/217012"], ["https://data.delijn.be/stops/505694", "https://data.delijn.be/stops/507712"], ["https://data.delijn.be/stops/200435", "https://data.delijn.be/stops/201364"], ["https://data.delijn.be/stops/302256", "https://data.delijn.be/stops/302274"], ["https://data.delijn.be/stops/102865", "https://data.delijn.be/stops/103510"], ["https://data.delijn.be/stops/105558", "https://data.delijn.be/stops/105561"], ["https://data.delijn.be/stops/400965", "https://data.delijn.be/stops/400969"], ["https://data.delijn.be/stops/504280", "https://data.delijn.be/stops/504284"], ["https://data.delijn.be/stops/204108", "https://data.delijn.be/stops/204667"], ["https://data.delijn.be/stops/305343", "https://data.delijn.be/stops/305344"], ["https://data.delijn.be/stops/501370", "https://data.delijn.be/stops/501371"], ["https://data.delijn.be/stops/202042", "https://data.delijn.be/stops/202396"], ["https://data.delijn.be/stops/202327", "https://data.delijn.be/stops/202429"], ["https://data.delijn.be/stops/401586", "https://data.delijn.be/stops/402127"], ["https://data.delijn.be/stops/407068", "https://data.delijn.be/stops/407070"], ["https://data.delijn.be/stops/204381", "https://data.delijn.be/stops/204382"], ["https://data.delijn.be/stops/300377", "https://data.delijn.be/stops/300378"], ["https://data.delijn.be/stops/101093", "https://data.delijn.be/stops/106002"], ["https://data.delijn.be/stops/302809", "https://data.delijn.be/stops/307836"], ["https://data.delijn.be/stops/402231", "https://data.delijn.be/stops/402293"], ["https://data.delijn.be/stops/105488", "https://data.delijn.be/stops/105494"], ["https://data.delijn.be/stops/505770", "https://data.delijn.be/stops/505812"], ["https://data.delijn.be/stops/302538", "https://data.delijn.be/stops/308714"], ["https://data.delijn.be/stops/102730", "https://data.delijn.be/stops/305624"], ["https://data.delijn.be/stops/509043", "https://data.delijn.be/stops/509045"], ["https://data.delijn.be/stops/300047", "https://data.delijn.be/stops/306794"], ["https://data.delijn.be/stops/503412", "https://data.delijn.be/stops/503986"], ["https://data.delijn.be/stops/202013", "https://data.delijn.be/stops/211069"], ["https://data.delijn.be/stops/304569", "https://data.delijn.be/stops/304660"], ["https://data.delijn.be/stops/501463", "https://data.delijn.be/stops/505781"], ["https://data.delijn.be/stops/103766", "https://data.delijn.be/stops/108763"], ["https://data.delijn.be/stops/302539", "https://data.delijn.be/stops/302540"], ["https://data.delijn.be/stops/109729", "https://data.delijn.be/stops/109785"], ["https://data.delijn.be/stops/206958", "https://data.delijn.be/stops/308565"], ["https://data.delijn.be/stops/207570", "https://data.delijn.be/stops/208953"], ["https://data.delijn.be/stops/307966", "https://data.delijn.be/stops/307967"], ["https://data.delijn.be/stops/301937", "https://data.delijn.be/stops/303634"], ["https://data.delijn.be/stops/208573", "https://data.delijn.be/stops/209574"], ["https://data.delijn.be/stops/502089", "https://data.delijn.be/stops/502090"], ["https://data.delijn.be/stops/102757", "https://data.delijn.be/stops/108227"], ["https://data.delijn.be/stops/301701", "https://data.delijn.be/stops/301761"], ["https://data.delijn.be/stops/101001", "https://data.delijn.be/stops/102688"], ["https://data.delijn.be/stops/106616", "https://data.delijn.be/stops/106617"], ["https://data.delijn.be/stops/507033", "https://data.delijn.be/stops/507034"], ["https://data.delijn.be/stops/502671", "https://data.delijn.be/stops/507671"], ["https://data.delijn.be/stops/505047", "https://data.delijn.be/stops/506207"], ["https://data.delijn.be/stops/108378", "https://data.delijn.be/stops/108441"], ["https://data.delijn.be/stops/300232", "https://data.delijn.be/stops/301376"], ["https://data.delijn.be/stops/308846", "https://data.delijn.be/stops/308847"], ["https://data.delijn.be/stops/206913", "https://data.delijn.be/stops/207020"], ["https://data.delijn.be/stops/300950", "https://data.delijn.be/stops/307807"], ["https://data.delijn.be/stops/401495", "https://data.delijn.be/stops/403895"], ["https://data.delijn.be/stops/509783", "https://data.delijn.be/stops/509784"], ["https://data.delijn.be/stops/107592", "https://data.delijn.be/stops/107593"], ["https://data.delijn.be/stops/301318", "https://data.delijn.be/stops/301321"], ["https://data.delijn.be/stops/102848", "https://data.delijn.be/stops/103630"], ["https://data.delijn.be/stops/401397", "https://data.delijn.be/stops/401398"], ["https://data.delijn.be/stops/402161", "https://data.delijn.be/stops/402389"], ["https://data.delijn.be/stops/101620", "https://data.delijn.be/stops/102911"], ["https://data.delijn.be/stops/400635", "https://data.delijn.be/stops/404139"], ["https://data.delijn.be/stops/502340", "https://data.delijn.be/stops/505090"], ["https://data.delijn.be/stops/502264", "https://data.delijn.be/stops/507912"], ["https://data.delijn.be/stops/206489", "https://data.delijn.be/stops/216010"], ["https://data.delijn.be/stops/407159", "https://data.delijn.be/stops/407173"], ["https://data.delijn.be/stops/408546", "https://data.delijn.be/stops/408607"], ["https://data.delijn.be/stops/404214", "https://data.delijn.be/stops/404239"], ["https://data.delijn.be/stops/301038", "https://data.delijn.be/stops/301069"], ["https://data.delijn.be/stops/101555", "https://data.delijn.be/stops/102405"], ["https://data.delijn.be/stops/201281", "https://data.delijn.be/stops/208708"], ["https://data.delijn.be/stops/502621", "https://data.delijn.be/stops/507621"], ["https://data.delijn.be/stops/200717", "https://data.delijn.be/stops/203127"], ["https://data.delijn.be/stops/502743", "https://data.delijn.be/stops/505320"], ["https://data.delijn.be/stops/207059", "https://data.delijn.be/stops/207450"], ["https://data.delijn.be/stops/501629", "https://data.delijn.be/stops/508959"], ["https://data.delijn.be/stops/300605", "https://data.delijn.be/stops/300613"], ["https://data.delijn.be/stops/206932", "https://data.delijn.be/stops/207846"], ["https://data.delijn.be/stops/507669", "https://data.delijn.be/stops/507671"], ["https://data.delijn.be/stops/302336", "https://data.delijn.be/stops/302342"], ["https://data.delijn.be/stops/205685", "https://data.delijn.be/stops/205686"], ["https://data.delijn.be/stops/402843", "https://data.delijn.be/stops/402855"], ["https://data.delijn.be/stops/102868", "https://data.delijn.be/stops/103332"], ["https://data.delijn.be/stops/408371", "https://data.delijn.be/stops/409418"], ["https://data.delijn.be/stops/301194", "https://data.delijn.be/stops/301195"], ["https://data.delijn.be/stops/206174", "https://data.delijn.be/stops/216001"], ["https://data.delijn.be/stops/206970", "https://data.delijn.be/stops/301442"], ["https://data.delijn.be/stops/400716", "https://data.delijn.be/stops/400717"], ["https://data.delijn.be/stops/300209", "https://data.delijn.be/stops/306742"], ["https://data.delijn.be/stops/208767", "https://data.delijn.be/stops/504000"], ["https://data.delijn.be/stops/207230", "https://data.delijn.be/stops/207232"], ["https://data.delijn.be/stops/200421", "https://data.delijn.be/stops/203011"], ["https://data.delijn.be/stops/102614", "https://data.delijn.be/stops/102616"], ["https://data.delijn.be/stops/408036", "https://data.delijn.be/stops/408037"], ["https://data.delijn.be/stops/504394", "https://data.delijn.be/stops/509759"], ["https://data.delijn.be/stops/109142", "https://data.delijn.be/stops/109154"], ["https://data.delijn.be/stops/202332", "https://data.delijn.be/stops/210291"], ["https://data.delijn.be/stops/305227", "https://data.delijn.be/stops/305297"], ["https://data.delijn.be/stops/504156", "https://data.delijn.be/stops/509191"], ["https://data.delijn.be/stops/307299", "https://data.delijn.be/stops/307323"], ["https://data.delijn.be/stops/504775", "https://data.delijn.be/stops/509409"], ["https://data.delijn.be/stops/201195", "https://data.delijn.be/stops/201199"], ["https://data.delijn.be/stops/200668", "https://data.delijn.be/stops/508844"], ["https://data.delijn.be/stops/409339", "https://data.delijn.be/stops/410286"], ["https://data.delijn.be/stops/301864", "https://data.delijn.be/stops/301865"], ["https://data.delijn.be/stops/302242", "https://data.delijn.be/stops/302248"], ["https://data.delijn.be/stops/106728", "https://data.delijn.be/stops/107747"], ["https://data.delijn.be/stops/305585", "https://data.delijn.be/stops/307514"], ["https://data.delijn.be/stops/101534", "https://data.delijn.be/stops/108753"], ["https://data.delijn.be/stops/303492", "https://data.delijn.be/stops/303501"], ["https://data.delijn.be/stops/204124", "https://data.delijn.be/stops/204786"], ["https://data.delijn.be/stops/503730", "https://data.delijn.be/stops/503756"], ["https://data.delijn.be/stops/405308", "https://data.delijn.be/stops/302828"], ["https://data.delijn.be/stops/202680", "https://data.delijn.be/stops/202693"], ["https://data.delijn.be/stops/103701", "https://data.delijn.be/stops/109604"], ["https://data.delijn.be/stops/409203", "https://data.delijn.be/stops/409833"], ["https://data.delijn.be/stops/303566", "https://data.delijn.be/stops/303571"], ["https://data.delijn.be/stops/401120", "https://data.delijn.be/stops/402830"], ["https://data.delijn.be/stops/402938", "https://data.delijn.be/stops/405982"], ["https://data.delijn.be/stops/202381", "https://data.delijn.be/stops/203443"], ["https://data.delijn.be/stops/400803", "https://data.delijn.be/stops/400846"], ["https://data.delijn.be/stops/405876", "https://data.delijn.be/stops/409750"], ["https://data.delijn.be/stops/303846", "https://data.delijn.be/stops/303869"], ["https://data.delijn.be/stops/409024", "https://data.delijn.be/stops/409034"], ["https://data.delijn.be/stops/504442", "https://data.delijn.be/stops/504591"], ["https://data.delijn.be/stops/106198", "https://data.delijn.be/stops/106307"], ["https://data.delijn.be/stops/107285", "https://data.delijn.be/stops/108900"], ["https://data.delijn.be/stops/501046", "https://data.delijn.be/stops/506046"], ["https://data.delijn.be/stops/101345", "https://data.delijn.be/stops/103591"], ["https://data.delijn.be/stops/200856", "https://data.delijn.be/stops/507759"], ["https://data.delijn.be/stops/400171", "https://data.delijn.be/stops/400940"], ["https://data.delijn.be/stops/404192", "https://data.delijn.be/stops/405915"], ["https://data.delijn.be/stops/300660", "https://data.delijn.be/stops/305817"], ["https://data.delijn.be/stops/402428", "https://data.delijn.be/stops/402429"], ["https://data.delijn.be/stops/308064", "https://data.delijn.be/stops/308065"], ["https://data.delijn.be/stops/107189", "https://data.delijn.be/stops/107192"], ["https://data.delijn.be/stops/202738", "https://data.delijn.be/stops/207430"], ["https://data.delijn.be/stops/304497", "https://data.delijn.be/stops/307564"], ["https://data.delijn.be/stops/505740", "https://data.delijn.be/stops/507342"], ["https://data.delijn.be/stops/209515", "https://data.delijn.be/stops/209679"], ["https://data.delijn.be/stops/408052", "https://data.delijn.be/stops/408441"], ["https://data.delijn.be/stops/105533", "https://data.delijn.be/stops/106250"], ["https://data.delijn.be/stops/505700", "https://data.delijn.be/stops/505766"], ["https://data.delijn.be/stops/101432", "https://data.delijn.be/stops/107297"], ["https://data.delijn.be/stops/101464", "https://data.delijn.be/stops/109250"], ["https://data.delijn.be/stops/105024", "https://data.delijn.be/stops/105026"], ["https://data.delijn.be/stops/402662", "https://data.delijn.be/stops/308175"], ["https://data.delijn.be/stops/505917", "https://data.delijn.be/stops/508900"], ["https://data.delijn.be/stops/305576", "https://data.delijn.be/stops/305577"], ["https://data.delijn.be/stops/504834", "https://data.delijn.be/stops/505995"], ["https://data.delijn.be/stops/301809", "https://data.delijn.be/stops/304668"], ["https://data.delijn.be/stops/201355", "https://data.delijn.be/stops/208294"], ["https://data.delijn.be/stops/105988", "https://data.delijn.be/stops/109869"], ["https://data.delijn.be/stops/109814", "https://data.delijn.be/stops/109816"], ["https://data.delijn.be/stops/202886", "https://data.delijn.be/stops/209746"], ["https://data.delijn.be/stops/106687", "https://data.delijn.be/stops/106689"], ["https://data.delijn.be/stops/201141", "https://data.delijn.be/stops/201245"], ["https://data.delijn.be/stops/102598", "https://data.delijn.be/stops/303882"], ["https://data.delijn.be/stops/508006", "https://data.delijn.be/stops/508007"], ["https://data.delijn.be/stops/101595", "https://data.delijn.be/stops/103974"], ["https://data.delijn.be/stops/105026", "https://data.delijn.be/stops/107707"], ["https://data.delijn.be/stops/105129", "https://data.delijn.be/stops/105132"], ["https://data.delijn.be/stops/206257", "https://data.delijn.be/stops/207005"], ["https://data.delijn.be/stops/200866", "https://data.delijn.be/stops/200894"], ["https://data.delijn.be/stops/300179", "https://data.delijn.be/stops/300180"], ["https://data.delijn.be/stops/206431", "https://data.delijn.be/stops/206432"], ["https://data.delijn.be/stops/400961", "https://data.delijn.be/stops/400963"], ["https://data.delijn.be/stops/101404", "https://data.delijn.be/stops/106526"], ["https://data.delijn.be/stops/300311", "https://data.delijn.be/stops/302167"], ["https://data.delijn.be/stops/208556", "https://data.delijn.be/stops/209548"], ["https://data.delijn.be/stops/403631", "https://data.delijn.be/stops/403642"], ["https://data.delijn.be/stops/304834", "https://data.delijn.be/stops/307051"], ["https://data.delijn.be/stops/206980", "https://data.delijn.be/stops/207980"], ["https://data.delijn.be/stops/302213", "https://data.delijn.be/stops/302219"], ["https://data.delijn.be/stops/503376", "https://data.delijn.be/stops/508376"], ["https://data.delijn.be/stops/203297", "https://data.delijn.be/stops/210008"], ["https://data.delijn.be/stops/501420", "https://data.delijn.be/stops/501422"], ["https://data.delijn.be/stops/108309", "https://data.delijn.be/stops/108311"], ["https://data.delijn.be/stops/202903", "https://data.delijn.be/stops/218003"], ["https://data.delijn.be/stops/400609", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/202344", "https://data.delijn.be/stops/202345"], ["https://data.delijn.be/stops/300953", "https://data.delijn.be/stops/307807"], ["https://data.delijn.be/stops/507531", "https://data.delijn.be/stops/507532"], ["https://data.delijn.be/stops/204447", "https://data.delijn.be/stops/205694"], ["https://data.delijn.be/stops/400613", "https://data.delijn.be/stops/400614"], ["https://data.delijn.be/stops/107330", "https://data.delijn.be/stops/107345"], ["https://data.delijn.be/stops/300436", "https://data.delijn.be/stops/300442"], ["https://data.delijn.be/stops/210084", "https://data.delijn.be/stops/211105"], ["https://data.delijn.be/stops/505567", "https://data.delijn.be/stops/508958"], ["https://data.delijn.be/stops/502700", "https://data.delijn.be/stops/505721"], ["https://data.delijn.be/stops/402071", "https://data.delijn.be/stops/402076"], ["https://data.delijn.be/stops/302544", "https://data.delijn.be/stops/303381"], ["https://data.delijn.be/stops/504149", "https://data.delijn.be/stops/505645"], ["https://data.delijn.be/stops/301582", "https://data.delijn.be/stops/303434"], ["https://data.delijn.be/stops/202742", "https://data.delijn.be/stops/202866"], ["https://data.delijn.be/stops/400123", "https://data.delijn.be/stops/400132"], ["https://data.delijn.be/stops/108134", "https://data.delijn.be/stops/108845"], ["https://data.delijn.be/stops/307642", "https://data.delijn.be/stops/307689"], ["https://data.delijn.be/stops/407840", "https://data.delijn.be/stops/407842"], ["https://data.delijn.be/stops/108528", "https://data.delijn.be/stops/108538"], ["https://data.delijn.be/stops/300004", "https://data.delijn.be/stops/304248"], ["https://data.delijn.be/stops/503848", "https://data.delijn.be/stops/508848"], ["https://data.delijn.be/stops/403210", "https://data.delijn.be/stops/403368"], ["https://data.delijn.be/stops/501426", "https://data.delijn.be/stops/505047"], ["https://data.delijn.be/stops/302377", "https://data.delijn.be/stops/302391"], ["https://data.delijn.be/stops/503013", "https://data.delijn.be/stops/508011"], ["https://data.delijn.be/stops/503192", "https://data.delijn.be/stops/503205"], ["https://data.delijn.be/stops/406996", "https://data.delijn.be/stops/407127"], ["https://data.delijn.be/stops/102484", "https://data.delijn.be/stops/407100"], ["https://data.delijn.be/stops/503002", "https://data.delijn.be/stops/508001"], ["https://data.delijn.be/stops/502536", "https://data.delijn.be/stops/507508"], ["https://data.delijn.be/stops/504164", "https://data.delijn.be/stops/509164"], ["https://data.delijn.be/stops/400493", "https://data.delijn.be/stops/407688"], ["https://data.delijn.be/stops/205118", "https://data.delijn.be/stops/205119"], ["https://data.delijn.be/stops/505925", "https://data.delijn.be/stops/509334"], ["https://data.delijn.be/stops/408830", "https://data.delijn.be/stops/408871"], ["https://data.delijn.be/stops/104401", "https://data.delijn.be/stops/107123"], ["https://data.delijn.be/stops/503224", "https://data.delijn.be/stops/508594"], ["https://data.delijn.be/stops/300033", "https://data.delijn.be/stops/300388"], ["https://data.delijn.be/stops/200891", "https://data.delijn.be/stops/211013"], ["https://data.delijn.be/stops/300963", "https://data.delijn.be/stops/300974"], ["https://data.delijn.be/stops/503628", "https://data.delijn.be/stops/508623"], ["https://data.delijn.be/stops/103710", "https://data.delijn.be/stops/105410"], ["https://data.delijn.be/stops/401177", "https://data.delijn.be/stops/406579"], ["https://data.delijn.be/stops/103767", "https://data.delijn.be/stops/107307"], ["https://data.delijn.be/stops/406608", "https://data.delijn.be/stops/406639"], ["https://data.delijn.be/stops/303372", "https://data.delijn.be/stops/303386"], ["https://data.delijn.be/stops/109047", "https://data.delijn.be/stops/109323"], ["https://data.delijn.be/stops/205988", "https://data.delijn.be/stops/208339"], ["https://data.delijn.be/stops/500017", "https://data.delijn.be/stops/501045"], ["https://data.delijn.be/stops/405748", "https://data.delijn.be/stops/405841"], ["https://data.delijn.be/stops/503422", "https://data.delijn.be/stops/503426"], ["https://data.delijn.be/stops/500602", "https://data.delijn.be/stops/501456"], ["https://data.delijn.be/stops/503995", "https://data.delijn.be/stops/508439"], ["https://data.delijn.be/stops/410135", "https://data.delijn.be/stops/410138"], ["https://data.delijn.be/stops/307352", "https://data.delijn.be/stops/307437"], ["https://data.delijn.be/stops/208222", "https://data.delijn.be/stops/209967"], ["https://data.delijn.be/stops/102940", "https://data.delijn.be/stops/104975"], ["https://data.delijn.be/stops/301113", "https://data.delijn.be/stops/307634"], ["https://data.delijn.be/stops/301439", "https://data.delijn.be/stops/302131"], ["https://data.delijn.be/stops/506332", "https://data.delijn.be/stops/509897"], ["https://data.delijn.be/stops/300643", "https://data.delijn.be/stops/300661"], ["https://data.delijn.be/stops/503986", "https://data.delijn.be/stops/508412"], ["https://data.delijn.be/stops/408180", "https://data.delijn.be/stops/408440"], ["https://data.delijn.be/stops/206700", "https://data.delijn.be/stops/207690"], ["https://data.delijn.be/stops/207445", "https://data.delijn.be/stops/209681"], ["https://data.delijn.be/stops/306302", "https://data.delijn.be/stops/306303"], ["https://data.delijn.be/stops/505785", "https://data.delijn.be/stops/509412"], ["https://data.delijn.be/stops/308178", "https://data.delijn.be/stops/308179"], ["https://data.delijn.be/stops/302185", "https://data.delijn.be/stops/302187"], ["https://data.delijn.be/stops/200187", "https://data.delijn.be/stops/201049"], ["https://data.delijn.be/stops/501301", "https://data.delijn.be/stops/501517"], ["https://data.delijn.be/stops/106012", "https://data.delijn.be/stops/107463"], ["https://data.delijn.be/stops/503102", "https://data.delijn.be/stops/505380"], ["https://data.delijn.be/stops/400136", "https://data.delijn.be/stops/400137"], ["https://data.delijn.be/stops/305682", "https://data.delijn.be/stops/305683"], ["https://data.delijn.be/stops/108987", "https://data.delijn.be/stops/108988"], ["https://data.delijn.be/stops/304628", "https://data.delijn.be/stops/304630"], ["https://data.delijn.be/stops/502662", "https://data.delijn.be/stops/507456"], ["https://data.delijn.be/stops/504271", "https://data.delijn.be/stops/504689"], ["https://data.delijn.be/stops/408559", "https://data.delijn.be/stops/408560"], ["https://data.delijn.be/stops/304878", "https://data.delijn.be/stops/304881"], ["https://data.delijn.be/stops/502765", "https://data.delijn.be/stops/507541"], ["https://data.delijn.be/stops/207208", "https://data.delijn.be/stops/207209"], ["https://data.delijn.be/stops/508647", "https://data.delijn.be/stops/508712"], ["https://data.delijn.be/stops/404480", "https://data.delijn.be/stops/410156"], ["https://data.delijn.be/stops/403258", "https://data.delijn.be/stops/403845"], ["https://data.delijn.be/stops/504993", "https://data.delijn.be/stops/507718"], ["https://data.delijn.be/stops/406909", "https://data.delijn.be/stops/409450"], ["https://data.delijn.be/stops/300380", "https://data.delijn.be/stops/300469"], ["https://data.delijn.be/stops/101387", "https://data.delijn.be/stops/106516"], ["https://data.delijn.be/stops/406960", "https://data.delijn.be/stops/406965"], ["https://data.delijn.be/stops/304349", "https://data.delijn.be/stops/304353"], ["https://data.delijn.be/stops/401827", "https://data.delijn.be/stops/401831"], ["https://data.delijn.be/stops/302628", "https://data.delijn.be/stops/302632"], ["https://data.delijn.be/stops/301744", "https://data.delijn.be/stops/308878"], ["https://data.delijn.be/stops/103557", "https://data.delijn.be/stops/109422"], ["https://data.delijn.be/stops/504526", "https://data.delijn.be/stops/509524"], ["https://data.delijn.be/stops/504318", "https://data.delijn.be/stops/509295"], ["https://data.delijn.be/stops/105564", "https://data.delijn.be/stops/105567"], ["https://data.delijn.be/stops/202150", "https://data.delijn.be/stops/203169"], ["https://data.delijn.be/stops/102586", "https://data.delijn.be/stops/102587"], ["https://data.delijn.be/stops/304185", "https://data.delijn.be/stops/307952"], ["https://data.delijn.be/stops/402952", "https://data.delijn.be/stops/302825"], ["https://data.delijn.be/stops/101873", "https://data.delijn.be/stops/106878"], ["https://data.delijn.be/stops/404484", "https://data.delijn.be/stops/404554"], ["https://data.delijn.be/stops/504258", "https://data.delijn.be/stops/509683"], ["https://data.delijn.be/stops/505389", "https://data.delijn.be/stops/508799"], ["https://data.delijn.be/stops/101978", "https://data.delijn.be/stops/108287"], ["https://data.delijn.be/stops/105434", "https://data.delijn.be/stops/105436"], ["https://data.delijn.be/stops/105742", "https://data.delijn.be/stops/305793"], ["https://data.delijn.be/stops/207246", "https://data.delijn.be/stops/207247"], ["https://data.delijn.be/stops/202050", "https://data.delijn.be/stops/203050"], ["https://data.delijn.be/stops/402587", "https://data.delijn.be/stops/407950"], ["https://data.delijn.be/stops/205980", "https://data.delijn.be/stops/206819"], ["https://data.delijn.be/stops/505641", "https://data.delijn.be/stops/505994"], ["https://data.delijn.be/stops/300215", "https://data.delijn.be/stops/301381"], ["https://data.delijn.be/stops/302698", "https://data.delijn.be/stops/302702"], ["https://data.delijn.be/stops/407591", "https://data.delijn.be/stops/408549"], ["https://data.delijn.be/stops/301346", "https://data.delijn.be/stops/306134"], ["https://data.delijn.be/stops/201688", "https://data.delijn.be/stops/201836"], ["https://data.delijn.be/stops/406053", "https://data.delijn.be/stops/409303"], ["https://data.delijn.be/stops/109093", "https://data.delijn.be/stops/109094"], ["https://data.delijn.be/stops/305354", "https://data.delijn.be/stops/306000"], ["https://data.delijn.be/stops/400614", "https://data.delijn.be/stops/400619"], ["https://data.delijn.be/stops/403243", "https://data.delijn.be/stops/403561"], ["https://data.delijn.be/stops/206472", "https://data.delijn.be/stops/206473"], ["https://data.delijn.be/stops/101580", "https://data.delijn.be/stops/105265"], ["https://data.delijn.be/stops/400701", "https://data.delijn.be/stops/400782"], ["https://data.delijn.be/stops/303211", "https://data.delijn.be/stops/303212"], ["https://data.delijn.be/stops/504477", "https://data.delijn.be/stops/509477"], ["https://data.delijn.be/stops/502627", "https://data.delijn.be/stops/507040"], ["https://data.delijn.be/stops/400142", "https://data.delijn.be/stops/409147"], ["https://data.delijn.be/stops/504091", "https://data.delijn.be/stops/505206"], ["https://data.delijn.be/stops/302641", "https://data.delijn.be/stops/302642"], ["https://data.delijn.be/stops/108158", "https://data.delijn.be/stops/108159"], ["https://data.delijn.be/stops/109678", "https://data.delijn.be/stops/109682"], ["https://data.delijn.be/stops/102658", "https://data.delijn.be/stops/105597"], ["https://data.delijn.be/stops/206280", "https://data.delijn.be/stops/207280"], ["https://data.delijn.be/stops/501107", "https://data.delijn.be/stops/506112"], ["https://data.delijn.be/stops/204065", "https://data.delijn.be/stops/205054"], ["https://data.delijn.be/stops/502470", "https://data.delijn.be/stops/502757"], ["https://data.delijn.be/stops/400783", "https://data.delijn.be/stops/400818"], ["https://data.delijn.be/stops/508603", "https://data.delijn.be/stops/508604"], ["https://data.delijn.be/stops/205029", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/503487", "https://data.delijn.be/stops/504474"], ["https://data.delijn.be/stops/102723", "https://data.delijn.be/stops/103340"], ["https://data.delijn.be/stops/206141", "https://data.delijn.be/stops/207142"], ["https://data.delijn.be/stops/406575", "https://data.delijn.be/stops/406587"], ["https://data.delijn.be/stops/101170", "https://data.delijn.be/stops/101765"], ["https://data.delijn.be/stops/200218", "https://data.delijn.be/stops/201219"], ["https://data.delijn.be/stops/107584", "https://data.delijn.be/stops/107588"], ["https://data.delijn.be/stops/404894", "https://data.delijn.be/stops/406722"], ["https://data.delijn.be/stops/105696", "https://data.delijn.be/stops/106068"], ["https://data.delijn.be/stops/200797", "https://data.delijn.be/stops/201797"], ["https://data.delijn.be/stops/104514", "https://data.delijn.be/stops/107794"], ["https://data.delijn.be/stops/207453", "https://data.delijn.be/stops/207454"], ["https://data.delijn.be/stops/304528", "https://data.delijn.be/stops/304673"], ["https://data.delijn.be/stops/200489", "https://data.delijn.be/stops/201486"], ["https://data.delijn.be/stops/501330", "https://data.delijn.be/stops/501480"], ["https://data.delijn.be/stops/208582", "https://data.delijn.be/stops/209583"], ["https://data.delijn.be/stops/202716", "https://data.delijn.be/stops/203717"], ["https://data.delijn.be/stops/504068", "https://data.delijn.be/stops/509518"], ["https://data.delijn.be/stops/201633", "https://data.delijn.be/stops/201941"], ["https://data.delijn.be/stops/202046", "https://data.delijn.be/stops/203076"], ["https://data.delijn.be/stops/206112", "https://data.delijn.be/stops/207125"], ["https://data.delijn.be/stops/305116", "https://data.delijn.be/stops/305128"], ["https://data.delijn.be/stops/505059", "https://data.delijn.be/stops/505333"], ["https://data.delijn.be/stops/207672", "https://data.delijn.be/stops/209001"], ["https://data.delijn.be/stops/102390", "https://data.delijn.be/stops/105525"], ["https://data.delijn.be/stops/502946", "https://data.delijn.be/stops/508587"], ["https://data.delijn.be/stops/403602", "https://data.delijn.be/stops/403654"], ["https://data.delijn.be/stops/402709", "https://data.delijn.be/stops/402867"], ["https://data.delijn.be/stops/106264", "https://data.delijn.be/stops/106272"], ["https://data.delijn.be/stops/506181", "https://data.delijn.be/stops/509933"], ["https://data.delijn.be/stops/204014", "https://data.delijn.be/stops/204015"], ["https://data.delijn.be/stops/201924", "https://data.delijn.be/stops/207406"], ["https://data.delijn.be/stops/303410", "https://data.delijn.be/stops/303426"], ["https://data.delijn.be/stops/305640", "https://data.delijn.be/stops/307269"], ["https://data.delijn.be/stops/406918", "https://data.delijn.be/stops/409483"], ["https://data.delijn.be/stops/407306", "https://data.delijn.be/stops/407398"], ["https://data.delijn.be/stops/501244", "https://data.delijn.be/stops/501771"], ["https://data.delijn.be/stops/204120", "https://data.delijn.be/stops/204122"], ["https://data.delijn.be/stops/408576", "https://data.delijn.be/stops/408753"], ["https://data.delijn.be/stops/401883", "https://data.delijn.be/stops/410306"], ["https://data.delijn.be/stops/501111", "https://data.delijn.be/stops/506109"], ["https://data.delijn.be/stops/202660", "https://data.delijn.be/stops/203660"], ["https://data.delijn.be/stops/101342", "https://data.delijn.be/stops/108111"], ["https://data.delijn.be/stops/407054", "https://data.delijn.be/stops/407056"], ["https://data.delijn.be/stops/202740", "https://data.delijn.be/stops/203740"], ["https://data.delijn.be/stops/505349", "https://data.delijn.be/stops/507297"], ["https://data.delijn.be/stops/202530", "https://data.delijn.be/stops/203530"], ["https://data.delijn.be/stops/504235", "https://data.delijn.be/stops/504240"], ["https://data.delijn.be/stops/107893", "https://data.delijn.be/stops/107898"], ["https://data.delijn.be/stops/402468", "https://data.delijn.be/stops/410078"], ["https://data.delijn.be/stops/204224", "https://data.delijn.be/stops/204599"], ["https://data.delijn.be/stops/200744", "https://data.delijn.be/stops/201744"], ["https://data.delijn.be/stops/101160", "https://data.delijn.be/stops/104126"], ["https://data.delijn.be/stops/507717", "https://data.delijn.be/stops/508451"], ["https://data.delijn.be/stops/102086", "https://data.delijn.be/stops/108868"], ["https://data.delijn.be/stops/402180", "https://data.delijn.be/stops/402497"], ["https://data.delijn.be/stops/304065", "https://data.delijn.be/stops/304066"], ["https://data.delijn.be/stops/106747", "https://data.delijn.be/stops/106748"], ["https://data.delijn.be/stops/409630", "https://data.delijn.be/stops/409789"], ["https://data.delijn.be/stops/307791", "https://data.delijn.be/stops/307792"], ["https://data.delijn.be/stops/302090", "https://data.delijn.be/stops/302091"], ["https://data.delijn.be/stops/203861", "https://data.delijn.be/stops/203862"], ["https://data.delijn.be/stops/408865", "https://data.delijn.be/stops/408882"], ["https://data.delijn.be/stops/403658", "https://data.delijn.be/stops/404580"], ["https://data.delijn.be/stops/301661", "https://data.delijn.be/stops/301662"], ["https://data.delijn.be/stops/304948", "https://data.delijn.be/stops/304949"], ["https://data.delijn.be/stops/502185", "https://data.delijn.be/stops/507183"], ["https://data.delijn.be/stops/407525", "https://data.delijn.be/stops/407538"], ["https://data.delijn.be/stops/202109", "https://data.delijn.be/stops/202184"], ["https://data.delijn.be/stops/206233", "https://data.delijn.be/stops/206864"], ["https://data.delijn.be/stops/307592", "https://data.delijn.be/stops/307601"], ["https://data.delijn.be/stops/503055", "https://data.delijn.be/stops/507818"], ["https://data.delijn.be/stops/105803", "https://data.delijn.be/stops/305791"], ["https://data.delijn.be/stops/504400", "https://data.delijn.be/stops/509719"], ["https://data.delijn.be/stops/300753", "https://data.delijn.be/stops/300833"], ["https://data.delijn.be/stops/404682", "https://data.delijn.be/stops/408908"], ["https://data.delijn.be/stops/305110", "https://data.delijn.be/stops/305119"], ["https://data.delijn.be/stops/108893", "https://data.delijn.be/stops/108897"], ["https://data.delijn.be/stops/506182", "https://data.delijn.be/stops/506676"], ["https://data.delijn.be/stops/208746", "https://data.delijn.be/stops/209419"], ["https://data.delijn.be/stops/206742", "https://data.delijn.be/stops/206985"], ["https://data.delijn.be/stops/200016", "https://data.delijn.be/stops/200149"], ["https://data.delijn.be/stops/408350", "https://data.delijn.be/stops/408382"], ["https://data.delijn.be/stops/202385", "https://data.delijn.be/stops/202386"], ["https://data.delijn.be/stops/106736", "https://data.delijn.be/stops/107198"], ["https://data.delijn.be/stops/106204", "https://data.delijn.be/stops/106205"], ["https://data.delijn.be/stops/104039", "https://data.delijn.be/stops/108518"], ["https://data.delijn.be/stops/500931", "https://data.delijn.be/stops/500933"], ["https://data.delijn.be/stops/300614", "https://data.delijn.be/stops/300621"], ["https://data.delijn.be/stops/201089", "https://data.delijn.be/stops/202946"], ["https://data.delijn.be/stops/300412", "https://data.delijn.be/stops/307261"], ["https://data.delijn.be/stops/505337", "https://data.delijn.be/stops/505599"], ["https://data.delijn.be/stops/103490", "https://data.delijn.be/stops/106214"], ["https://data.delijn.be/stops/204510", "https://data.delijn.be/stops/204613"], ["https://data.delijn.be/stops/300236", "https://data.delijn.be/stops/301379"], ["https://data.delijn.be/stops/301249", "https://data.delijn.be/stops/301261"], ["https://data.delijn.be/stops/501160", "https://data.delijn.be/stops/501751"], ["https://data.delijn.be/stops/504029", "https://data.delijn.be/stops/504706"], ["https://data.delijn.be/stops/102012", "https://data.delijn.be/stops/205642"], ["https://data.delijn.be/stops/503169", "https://data.delijn.be/stops/508170"], ["https://data.delijn.be/stops/405782", "https://data.delijn.be/stops/405809"], ["https://data.delijn.be/stops/403114", "https://data.delijn.be/stops/403234"], ["https://data.delijn.be/stops/200777", "https://data.delijn.be/stops/208308"], ["https://data.delijn.be/stops/504810", "https://data.delijn.be/stops/508214"], ["https://data.delijn.be/stops/303181", "https://data.delijn.be/stops/307799"], ["https://data.delijn.be/stops/301354", "https://data.delijn.be/stops/306129"], ["https://data.delijn.be/stops/407014", "https://data.delijn.be/stops/407085"], ["https://data.delijn.be/stops/105752", "https://data.delijn.be/stops/109817"], ["https://data.delijn.be/stops/204516", "https://data.delijn.be/stops/205046"], ["https://data.delijn.be/stops/208227", "https://data.delijn.be/stops/209226"], ["https://data.delijn.be/stops/503799", "https://data.delijn.be/stops/505388"], ["https://data.delijn.be/stops/101147", "https://data.delijn.be/stops/106862"], ["https://data.delijn.be/stops/201902", "https://data.delijn.be/stops/202475"], ["https://data.delijn.be/stops/403042", "https://data.delijn.be/stops/403044"], ["https://data.delijn.be/stops/208348", "https://data.delijn.be/stops/208349"], ["https://data.delijn.be/stops/302002", "https://data.delijn.be/stops/306381"], ["https://data.delijn.be/stops/305632", "https://data.delijn.be/stops/306809"], ["https://data.delijn.be/stops/403399", "https://data.delijn.be/stops/404976"], ["https://data.delijn.be/stops/409076", "https://data.delijn.be/stops/409139"], ["https://data.delijn.be/stops/108565", "https://data.delijn.be/stops/109731"], ["https://data.delijn.be/stops/300835", "https://data.delijn.be/stops/302280"], ["https://data.delijn.be/stops/206132", "https://data.delijn.be/stops/207136"], ["https://data.delijn.be/stops/505342", "https://data.delijn.be/stops/509480"], ["https://data.delijn.be/stops/408509", "https://data.delijn.be/stops/410249"], ["https://data.delijn.be/stops/408650", "https://data.delijn.be/stops/408673"], ["https://data.delijn.be/stops/307565", "https://data.delijn.be/stops/307652"], ["https://data.delijn.be/stops/403830", "https://data.delijn.be/stops/403844"], ["https://data.delijn.be/stops/202912", "https://data.delijn.be/stops/203819"], ["https://data.delijn.be/stops/306344", "https://data.delijn.be/stops/306345"], ["https://data.delijn.be/stops/504169", "https://data.delijn.be/stops/509169"], ["https://data.delijn.be/stops/405611", "https://data.delijn.be/stops/407172"], ["https://data.delijn.be/stops/502106", "https://data.delijn.be/stops/502145"], ["https://data.delijn.be/stops/204822", "https://data.delijn.be/stops/205507"], ["https://data.delijn.be/stops/509424", "https://data.delijn.be/stops/509438"], ["https://data.delijn.be/stops/300606", "https://data.delijn.be/stops/300614"], ["https://data.delijn.be/stops/106504", "https://data.delijn.be/stops/107114"], ["https://data.delijn.be/stops/200594", "https://data.delijn.be/stops/211129"], ["https://data.delijn.be/stops/206896", "https://data.delijn.be/stops/207896"], ["https://data.delijn.be/stops/102779", "https://data.delijn.be/stops/102951"], ["https://data.delijn.be/stops/306811", "https://data.delijn.be/stops/306812"], ["https://data.delijn.be/stops/302323", "https://data.delijn.be/stops/302332"], ["https://data.delijn.be/stops/504190", "https://data.delijn.be/stops/504645"], ["https://data.delijn.be/stops/406170", "https://data.delijn.be/stops/406181"], ["https://data.delijn.be/stops/302600", "https://data.delijn.be/stops/302611"], ["https://data.delijn.be/stops/510029", "https://data.delijn.be/stops/510030"], ["https://data.delijn.be/stops/306916", "https://data.delijn.be/stops/308875"], ["https://data.delijn.be/stops/302940", "https://data.delijn.be/stops/302969"], ["https://data.delijn.be/stops/301910", "https://data.delijn.be/stops/305920"], ["https://data.delijn.be/stops/302269", "https://data.delijn.be/stops/304314"], ["https://data.delijn.be/stops/408514", "https://data.delijn.be/stops/408576"], ["https://data.delijn.be/stops/200842", "https://data.delijn.be/stops/200890"], ["https://data.delijn.be/stops/108377", "https://data.delijn.be/stops/108378"], ["https://data.delijn.be/stops/503893", "https://data.delijn.be/stops/508898"], ["https://data.delijn.be/stops/400362", "https://data.delijn.be/stops/400363"], ["https://data.delijn.be/stops/214017", "https://data.delijn.be/stops/215017"], ["https://data.delijn.be/stops/208211", "https://data.delijn.be/stops/209210"], ["https://data.delijn.be/stops/300558", "https://data.delijn.be/stops/307864"], ["https://data.delijn.be/stops/104778", "https://data.delijn.be/stops/108154"], ["https://data.delijn.be/stops/101383", "https://data.delijn.be/stops/101396"], ["https://data.delijn.be/stops/207383", "https://data.delijn.be/stops/207807"], ["https://data.delijn.be/stops/401208", "https://data.delijn.be/stops/401264"], ["https://data.delijn.be/stops/207461", "https://data.delijn.be/stops/207490"], ["https://data.delijn.be/stops/202933", "https://data.delijn.be/stops/218001"], ["https://data.delijn.be/stops/308204", "https://data.delijn.be/stops/308208"], ["https://data.delijn.be/stops/206282", "https://data.delijn.be/stops/207282"], ["https://data.delijn.be/stops/502355", "https://data.delijn.be/stops/507353"], ["https://data.delijn.be/stops/109851", "https://data.delijn.be/stops/109853"], ["https://data.delijn.be/stops/501382", "https://data.delijn.be/stops/501393"], ["https://data.delijn.be/stops/101272", "https://data.delijn.be/stops/101277"], ["https://data.delijn.be/stops/301277", "https://data.delijn.be/stops/301278"], ["https://data.delijn.be/stops/304100", "https://data.delijn.be/stops/307996"], ["https://data.delijn.be/stops/104895", "https://data.delijn.be/stops/105030"], ["https://data.delijn.be/stops/409293", "https://data.delijn.be/stops/409303"], ["https://data.delijn.be/stops/103821", "https://data.delijn.be/stops/108085"], ["https://data.delijn.be/stops/405899", "https://data.delijn.be/stops/409458"], ["https://data.delijn.be/stops/507942", "https://data.delijn.be/stops/508848"], ["https://data.delijn.be/stops/509426", "https://data.delijn.be/stops/509437"], ["https://data.delijn.be/stops/308277", "https://data.delijn.be/stops/308278"], ["https://data.delijn.be/stops/507215", "https://data.delijn.be/stops/507217"], ["https://data.delijn.be/stops/307028", "https://data.delijn.be/stops/307029"], ["https://data.delijn.be/stops/107315", "https://data.delijn.be/stops/107565"], ["https://data.delijn.be/stops/104901", "https://data.delijn.be/stops/107611"], ["https://data.delijn.be/stops/207483", "https://data.delijn.be/stops/207533"], ["https://data.delijn.be/stops/503025", "https://data.delijn.be/stops/505264"], ["https://data.delijn.be/stops/200062", "https://data.delijn.be/stops/201096"], ["https://data.delijn.be/stops/503335", "https://data.delijn.be/stops/505630"], ["https://data.delijn.be/stops/305213", "https://data.delijn.be/stops/306880"], ["https://data.delijn.be/stops/304604", "https://data.delijn.be/stops/304611"], ["https://data.delijn.be/stops/104853", "https://data.delijn.be/stops/107893"], ["https://data.delijn.be/stops/300006", "https://data.delijn.be/stops/301339"], ["https://data.delijn.be/stops/402645", "https://data.delijn.be/stops/405485"], ["https://data.delijn.be/stops/200913", "https://data.delijn.be/stops/202093"], ["https://data.delijn.be/stops/306159", "https://data.delijn.be/stops/307835"], ["https://data.delijn.be/stops/402587", "https://data.delijn.be/stops/402863"], ["https://data.delijn.be/stops/404415", "https://data.delijn.be/stops/404570"], ["https://data.delijn.be/stops/400276", "https://data.delijn.be/stops/400398"], ["https://data.delijn.be/stops/502739", "https://data.delijn.be/stops/507739"], ["https://data.delijn.be/stops/105404", "https://data.delijn.be/stops/107150"], ["https://data.delijn.be/stops/408838", "https://data.delijn.be/stops/408842"], ["https://data.delijn.be/stops/507286", "https://data.delijn.be/stops/507290"], ["https://data.delijn.be/stops/406502", "https://data.delijn.be/stops/406503"], ["https://data.delijn.be/stops/305523", "https://data.delijn.be/stops/308357"], ["https://data.delijn.be/stops/204762", "https://data.delijn.be/stops/205370"], ["https://data.delijn.be/stops/105707", "https://data.delijn.be/stops/105708"], ["https://data.delijn.be/stops/504884", "https://data.delijn.be/stops/508586"], ["https://data.delijn.be/stops/105229", "https://data.delijn.be/stops/105231"], ["https://data.delijn.be/stops/302272", "https://data.delijn.be/stops/302278"], ["https://data.delijn.be/stops/109141", "https://data.delijn.be/stops/109142"], ["https://data.delijn.be/stops/200584", "https://data.delijn.be/stops/200649"], ["https://data.delijn.be/stops/101358", "https://data.delijn.be/stops/105921"], ["https://data.delijn.be/stops/404318", "https://data.delijn.be/stops/404390"], ["https://data.delijn.be/stops/201378", "https://data.delijn.be/stops/211049"], ["https://data.delijn.be/stops/504601", "https://data.delijn.be/stops/509601"], ["https://data.delijn.be/stops/206824", "https://data.delijn.be/stops/207458"], ["https://data.delijn.be/stops/400201", "https://data.delijn.be/stops/400210"], ["https://data.delijn.be/stops/303494", "https://data.delijn.be/stops/304989"], ["https://data.delijn.be/stops/407719", "https://data.delijn.be/stops/409521"], ["https://data.delijn.be/stops/401081", "https://data.delijn.be/stops/401525"], ["https://data.delijn.be/stops/501436", "https://data.delijn.be/stops/506117"], ["https://data.delijn.be/stops/402243", "https://data.delijn.be/stops/406857"], ["https://data.delijn.be/stops/308615", "https://data.delijn.be/stops/308617"], ["https://data.delijn.be/stops/302831", "https://data.delijn.be/stops/308824"], ["https://data.delijn.be/stops/405131", "https://data.delijn.be/stops/406411"], ["https://data.delijn.be/stops/101878", "https://data.delijn.be/stops/106078"], ["https://data.delijn.be/stops/503227", "https://data.delijn.be/stops/505274"], ["https://data.delijn.be/stops/300320", "https://data.delijn.be/stops/302411"], ["https://data.delijn.be/stops/408179", "https://data.delijn.be/stops/408182"], ["https://data.delijn.be/stops/206839", "https://data.delijn.be/stops/207839"], ["https://data.delijn.be/stops/306802", "https://data.delijn.be/stops/307728"], ["https://data.delijn.be/stops/105873", "https://data.delijn.be/stops/105884"], ["https://data.delijn.be/stops/508407", "https://data.delijn.be/stops/508444"], ["https://data.delijn.be/stops/402017", "https://data.delijn.be/stops/407797"], ["https://data.delijn.be/stops/203155", "https://data.delijn.be/stops/205792"], ["https://data.delijn.be/stops/106673", "https://data.delijn.be/stops/106674"], ["https://data.delijn.be/stops/201776", "https://data.delijn.be/stops/209247"], ["https://data.delijn.be/stops/200711", "https://data.delijn.be/stops/200712"], ["https://data.delijn.be/stops/502510", "https://data.delijn.be/stops/505553"], ["https://data.delijn.be/stops/204523", "https://data.delijn.be/stops/205482"], ["https://data.delijn.be/stops/405800", "https://data.delijn.be/stops/409429"], ["https://data.delijn.be/stops/204052", "https://data.delijn.be/stops/205051"], ["https://data.delijn.be/stops/208331", "https://data.delijn.be/stops/209716"], ["https://data.delijn.be/stops/204168", "https://data.delijn.be/stops/205169"], ["https://data.delijn.be/stops/400345", "https://data.delijn.be/stops/400438"], ["https://data.delijn.be/stops/402630", "https://data.delijn.be/stops/410022"], ["https://data.delijn.be/stops/200140", "https://data.delijn.be/stops/200985"], ["https://data.delijn.be/stops/108364", "https://data.delijn.be/stops/304920"], ["https://data.delijn.be/stops/504694", "https://data.delijn.be/stops/505573"], ["https://data.delijn.be/stops/303044", "https://data.delijn.be/stops/303141"], ["https://data.delijn.be/stops/504653", "https://data.delijn.be/stops/504976"], ["https://data.delijn.be/stops/501284", "https://data.delijn.be/stops/506349"], ["https://data.delijn.be/stops/303618", "https://data.delijn.be/stops/306708"], ["https://data.delijn.be/stops/305163", "https://data.delijn.be/stops/305190"], ["https://data.delijn.be/stops/300586", "https://data.delijn.be/stops/300621"], ["https://data.delijn.be/stops/300790", "https://data.delijn.be/stops/300793"], ["https://data.delijn.be/stops/200180", "https://data.delijn.be/stops/201180"], ["https://data.delijn.be/stops/301616", "https://data.delijn.be/stops/301665"], ["https://data.delijn.be/stops/501421", "https://data.delijn.be/stops/505528"], ["https://data.delijn.be/stops/105712", "https://data.delijn.be/stops/105714"], ["https://data.delijn.be/stops/300267", "https://data.delijn.be/stops/307492"], ["https://data.delijn.be/stops/409083", "https://data.delijn.be/stops/409098"], ["https://data.delijn.be/stops/200769", "https://data.delijn.be/stops/209251"], ["https://data.delijn.be/stops/404131", "https://data.delijn.be/stops/404190"], ["https://data.delijn.be/stops/400763", "https://data.delijn.be/stops/409638"], ["https://data.delijn.be/stops/501489", "https://data.delijn.be/stops/506284"], ["https://data.delijn.be/stops/303080", "https://data.delijn.be/stops/303112"], ["https://data.delijn.be/stops/300387", "https://data.delijn.be/stops/307491"], ["https://data.delijn.be/stops/208515", "https://data.delijn.be/stops/209515"], ["https://data.delijn.be/stops/501644", "https://data.delijn.be/stops/506150"], ["https://data.delijn.be/stops/303068", "https://data.delijn.be/stops/303149"], ["https://data.delijn.be/stops/107025", "https://data.delijn.be/stops/107027"], ["https://data.delijn.be/stops/503033", "https://data.delijn.be/stops/503100"], ["https://data.delijn.be/stops/504639", "https://data.delijn.be/stops/509242"], ["https://data.delijn.be/stops/304471", "https://data.delijn.be/stops/304557"], ["https://data.delijn.be/stops/404435", "https://data.delijn.be/stops/404467"], ["https://data.delijn.be/stops/302943", "https://data.delijn.be/stops/302956"], ["https://data.delijn.be/stops/304262", "https://data.delijn.be/stops/306662"], ["https://data.delijn.be/stops/401789", "https://data.delijn.be/stops/401840"], ["https://data.delijn.be/stops/409632", "https://data.delijn.be/stops/409634"], ["https://data.delijn.be/stops/204511", "https://data.delijn.be/stops/205509"], ["https://data.delijn.be/stops/202273", "https://data.delijn.be/stops/202668"], ["https://data.delijn.be/stops/404508", "https://data.delijn.be/stops/406758"], ["https://data.delijn.be/stops/502729", "https://data.delijn.be/stops/507728"], ["https://data.delijn.be/stops/200940", "https://data.delijn.be/stops/203682"], ["https://data.delijn.be/stops/507194", "https://data.delijn.be/stops/507205"], ["https://data.delijn.be/stops/409231", "https://data.delijn.be/stops/409236"], ["https://data.delijn.be/stops/301518", "https://data.delijn.be/stops/305737"], ["https://data.delijn.be/stops/401471", "https://data.delijn.be/stops/401930"], ["https://data.delijn.be/stops/301316", "https://data.delijn.be/stops/306661"], ["https://data.delijn.be/stops/204675", "https://data.delijn.be/stops/205311"], ["https://data.delijn.be/stops/200291", "https://data.delijn.be/stops/201380"], ["https://data.delijn.be/stops/405224", "https://data.delijn.be/stops/405225"], ["https://data.delijn.be/stops/204599", "https://data.delijn.be/stops/205096"], ["https://data.delijn.be/stops/104047", "https://data.delijn.be/stops/108396"], ["https://data.delijn.be/stops/509357", "https://data.delijn.be/stops/509589"], ["https://data.delijn.be/stops/401225", "https://data.delijn.be/stops/401380"], ["https://data.delijn.be/stops/307538", "https://data.delijn.be/stops/307540"], ["https://data.delijn.be/stops/504160", "https://data.delijn.be/stops/504170"], ["https://data.delijn.be/stops/202437", "https://data.delijn.be/stops/203431"], ["https://data.delijn.be/stops/508124", "https://data.delijn.be/stops/508318"], ["https://data.delijn.be/stops/409677", "https://data.delijn.be/stops/409680"], ["https://data.delijn.be/stops/201936", "https://data.delijn.be/stops/207948"], ["https://data.delijn.be/stops/209100", "https://data.delijn.be/stops/209160"], ["https://data.delijn.be/stops/103586", "https://data.delijn.be/stops/104250"], ["https://data.delijn.be/stops/405344", "https://data.delijn.be/stops/405345"], ["https://data.delijn.be/stops/103574", "https://data.delijn.be/stops/107131"], ["https://data.delijn.be/stops/402229", "https://data.delijn.be/stops/402332"], ["https://data.delijn.be/stops/506190", "https://data.delijn.be/stops/506479"], ["https://data.delijn.be/stops/506118", "https://data.delijn.be/stops/506124"], ["https://data.delijn.be/stops/101723", "https://data.delijn.be/stops/102197"], ["https://data.delijn.be/stops/202416", "https://data.delijn.be/stops/202570"], ["https://data.delijn.be/stops/208664", "https://data.delijn.be/stops/208754"], ["https://data.delijn.be/stops/307148", "https://data.delijn.be/stops/307150"], ["https://data.delijn.be/stops/400497", "https://data.delijn.be/stops/406565"], ["https://data.delijn.be/stops/200903", "https://data.delijn.be/stops/203261"], ["https://data.delijn.be/stops/202527", "https://data.delijn.be/stops/210009"], ["https://data.delijn.be/stops/203969", "https://data.delijn.be/stops/203970"], ["https://data.delijn.be/stops/202324", "https://data.delijn.be/stops/203066"], ["https://data.delijn.be/stops/503301", "https://data.delijn.be/stops/503309"], ["https://data.delijn.be/stops/504107", "https://data.delijn.be/stops/504471"], ["https://data.delijn.be/stops/302266", "https://data.delijn.be/stops/306373"], ["https://data.delijn.be/stops/301683", "https://data.delijn.be/stops/306294"], ["https://data.delijn.be/stops/504558", "https://data.delijn.be/stops/509557"], ["https://data.delijn.be/stops/203585", "https://data.delijn.be/stops/211076"], ["https://data.delijn.be/stops/503238", "https://data.delijn.be/stops/508238"], ["https://data.delijn.be/stops/301054", "https://data.delijn.be/stops/301062"], ["https://data.delijn.be/stops/502207", "https://data.delijn.be/stops/509890"], ["https://data.delijn.be/stops/219080", "https://data.delijn.be/stops/303322"], ["https://data.delijn.be/stops/105874", "https://data.delijn.be/stops/105883"], ["https://data.delijn.be/stops/302054", "https://data.delijn.be/stops/302055"], ["https://data.delijn.be/stops/307908", "https://data.delijn.be/stops/307909"], ["https://data.delijn.be/stops/304491", "https://data.delijn.be/stops/305602"], ["https://data.delijn.be/stops/400926", "https://data.delijn.be/stops/400934"], ["https://data.delijn.be/stops/504025", "https://data.delijn.be/stops/504721"], ["https://data.delijn.be/stops/206452", "https://data.delijn.be/stops/207451"], ["https://data.delijn.be/stops/200978", "https://data.delijn.be/stops/208560"], ["https://data.delijn.be/stops/409643", "https://data.delijn.be/stops/409817"], ["https://data.delijn.be/stops/202597", "https://data.delijn.be/stops/203580"], ["https://data.delijn.be/stops/408339", "https://data.delijn.be/stops/408383"], ["https://data.delijn.be/stops/308450", "https://data.delijn.be/stops/308691"], ["https://data.delijn.be/stops/300512", "https://data.delijn.be/stops/300530"], ["https://data.delijn.be/stops/105793", "https://data.delijn.be/stops/105794"], ["https://data.delijn.be/stops/408802", "https://data.delijn.be/stops/408811"], ["https://data.delijn.be/stops/206696", "https://data.delijn.be/stops/303857"], ["https://data.delijn.be/stops/506683", "https://data.delijn.be/stops/506684"], ["https://data.delijn.be/stops/302392", "https://data.delijn.be/stops/308556"], ["https://data.delijn.be/stops/108339", "https://data.delijn.be/stops/109300"], ["https://data.delijn.be/stops/400582", "https://data.delijn.be/stops/400583"], ["https://data.delijn.be/stops/500052", "https://data.delijn.be/stops/500053"], ["https://data.delijn.be/stops/206351", "https://data.delijn.be/stops/207362"], ["https://data.delijn.be/stops/303652", "https://data.delijn.be/stops/304873"], ["https://data.delijn.be/stops/407003", "https://data.delijn.be/stops/408195"], ["https://data.delijn.be/stops/303295", "https://data.delijn.be/stops/303299"], ["https://data.delijn.be/stops/502711", "https://data.delijn.be/stops/507319"], ["https://data.delijn.be/stops/302086", "https://data.delijn.be/stops/302087"], ["https://data.delijn.be/stops/404010", "https://data.delijn.be/stops/404298"], ["https://data.delijn.be/stops/105702", "https://data.delijn.be/stops/106074"], ["https://data.delijn.be/stops/305435", "https://data.delijn.be/stops/305510"], ["https://data.delijn.be/stops/304925", "https://data.delijn.be/stops/306102"], ["https://data.delijn.be/stops/302013", "https://data.delijn.be/stops/302045"], ["https://data.delijn.be/stops/206635", "https://data.delijn.be/stops/207637"], ["https://data.delijn.be/stops/102851", "https://data.delijn.be/stops/106878"], ["https://data.delijn.be/stops/505900", "https://data.delijn.be/stops/505934"], ["https://data.delijn.be/stops/303449", "https://data.delijn.be/stops/304226"], ["https://data.delijn.be/stops/207526", "https://data.delijn.be/stops/209080"], ["https://data.delijn.be/stops/504633", "https://data.delijn.be/stops/509073"], ["https://data.delijn.be/stops/505625", "https://data.delijn.be/stops/505749"], ["https://data.delijn.be/stops/206405", "https://data.delijn.be/stops/207405"], ["https://data.delijn.be/stops/405534", "https://data.delijn.be/stops/406896"], ["https://data.delijn.be/stops/104887", "https://data.delijn.be/stops/104888"], ["https://data.delijn.be/stops/106883", "https://data.delijn.be/stops/106884"], ["https://data.delijn.be/stops/502510", "https://data.delijn.be/stops/502811"], ["https://data.delijn.be/stops/304798", "https://data.delijn.be/stops/307130"], ["https://data.delijn.be/stops/302322", "https://data.delijn.be/stops/302323"], ["https://data.delijn.be/stops/505503", "https://data.delijn.be/stops/505603"], ["https://data.delijn.be/stops/105357", "https://data.delijn.be/stops/109737"], ["https://data.delijn.be/stops/204089", "https://data.delijn.be/stops/204091"], ["https://data.delijn.be/stops/206970", "https://data.delijn.be/stops/207611"], ["https://data.delijn.be/stops/108713", "https://data.delijn.be/stops/108714"], ["https://data.delijn.be/stops/101909", "https://data.delijn.be/stops/103209"], ["https://data.delijn.be/stops/206031", "https://data.delijn.be/stops/207029"], ["https://data.delijn.be/stops/406650", "https://data.delijn.be/stops/406651"], ["https://data.delijn.be/stops/502269", "https://data.delijn.be/stops/507272"], ["https://data.delijn.be/stops/301478", "https://data.delijn.be/stops/304569"], ["https://data.delijn.be/stops/102991", "https://data.delijn.be/stops/105604"], ["https://data.delijn.be/stops/202898", "https://data.delijn.be/stops/203898"], ["https://data.delijn.be/stops/107884", "https://data.delijn.be/stops/107888"], ["https://data.delijn.be/stops/504552", "https://data.delijn.be/stops/505991"], ["https://data.delijn.be/stops/400431", "https://data.delijn.be/stops/400440"], ["https://data.delijn.be/stops/200392", "https://data.delijn.be/stops/201392"], ["https://data.delijn.be/stops/303525", "https://data.delijn.be/stops/304242"], ["https://data.delijn.be/stops/101297", "https://data.delijn.be/stops/105483"], ["https://data.delijn.be/stops/208464", "https://data.delijn.be/stops/209682"], ["https://data.delijn.be/stops/101794", "https://data.delijn.be/stops/109102"], ["https://data.delijn.be/stops/200356", "https://data.delijn.be/stops/202651"], ["https://data.delijn.be/stops/106400", "https://data.delijn.be/stops/106403"], ["https://data.delijn.be/stops/400527", "https://data.delijn.be/stops/401997"], ["https://data.delijn.be/stops/106335", "https://data.delijn.be/stops/106336"], ["https://data.delijn.be/stops/307304", "https://data.delijn.be/stops/307305"], ["https://data.delijn.be/stops/104009", "https://data.delijn.be/stops/107219"], ["https://data.delijn.be/stops/109998", "https://data.delijn.be/stops/406469"], ["https://data.delijn.be/stops/304964", "https://data.delijn.be/stops/304965"], ["https://data.delijn.be/stops/504026", "https://data.delijn.be/stops/504704"], ["https://data.delijn.be/stops/301021", "https://data.delijn.be/stops/301022"], ["https://data.delijn.be/stops/200959", "https://data.delijn.be/stops/203518"], ["https://data.delijn.be/stops/502627", "https://data.delijn.be/stops/507627"], ["https://data.delijn.be/stops/503072", "https://data.delijn.be/stops/503365"], ["https://data.delijn.be/stops/308428", "https://data.delijn.be/stops/308431"], ["https://data.delijn.be/stops/504804", "https://data.delijn.be/stops/504807"], ["https://data.delijn.be/stops/301194", "https://data.delijn.be/stops/308258"], ["https://data.delijn.be/stops/307626", "https://data.delijn.be/stops/308263"], ["https://data.delijn.be/stops/404426", "https://data.delijn.be/stops/404444"], ["https://data.delijn.be/stops/200452", "https://data.delijn.be/stops/200618"], ["https://data.delijn.be/stops/502449", "https://data.delijn.be/stops/507595"], ["https://data.delijn.be/stops/108403", "https://data.delijn.be/stops/108407"], ["https://data.delijn.be/stops/404601", "https://data.delijn.be/stops/409465"], ["https://data.delijn.be/stops/204606", "https://data.delijn.be/stops/204608"], ["https://data.delijn.be/stops/406080", "https://data.delijn.be/stops/406139"], ["https://data.delijn.be/stops/108357", "https://data.delijn.be/stops/109335"], ["https://data.delijn.be/stops/304705", "https://data.delijn.be/stops/307853"], ["https://data.delijn.be/stops/502121", "https://data.delijn.be/stops/507164"], ["https://data.delijn.be/stops/103538", "https://data.delijn.be/stops/106722"], ["https://data.delijn.be/stops/209289", "https://data.delijn.be/stops/219004"], ["https://data.delijn.be/stops/102886", "https://data.delijn.be/stops/104685"], ["https://data.delijn.be/stops/200940", "https://data.delijn.be/stops/202682"], ["https://data.delijn.be/stops/202748", "https://data.delijn.be/stops/207424"], ["https://data.delijn.be/stops/402836", "https://data.delijn.be/stops/408944"], ["https://data.delijn.be/stops/308860", "https://data.delijn.be/stops/308861"], ["https://data.delijn.be/stops/107602", "https://data.delijn.be/stops/107603"], ["https://data.delijn.be/stops/305166", "https://data.delijn.be/stops/306964"], ["https://data.delijn.be/stops/405828", "https://data.delijn.be/stops/409698"], ["https://data.delijn.be/stops/503601", "https://data.delijn.be/stops/503603"], ["https://data.delijn.be/stops/208035", "https://data.delijn.be/stops/209034"], ["https://data.delijn.be/stops/208349", "https://data.delijn.be/stops/209348"], ["https://data.delijn.be/stops/206566", "https://data.delijn.be/stops/207566"], ["https://data.delijn.be/stops/106173", "https://data.delijn.be/stops/106179"], ["https://data.delijn.be/stops/104972", "https://data.delijn.be/stops/108556"], ["https://data.delijn.be/stops/301078", "https://data.delijn.be/stops/308819"], ["https://data.delijn.be/stops/105046", "https://data.delijn.be/stops/109766"], ["https://data.delijn.be/stops/107970", "https://data.delijn.be/stops/107971"], ["https://data.delijn.be/stops/304868", "https://data.delijn.be/stops/306172"], ["https://data.delijn.be/stops/202009", "https://data.delijn.be/stops/203008"], ["https://data.delijn.be/stops/106619", "https://data.delijn.be/stops/106620"], ["https://data.delijn.be/stops/207669", "https://data.delijn.be/stops/208502"], ["https://data.delijn.be/stops/202737", "https://data.delijn.be/stops/203737"], ["https://data.delijn.be/stops/404544", "https://data.delijn.be/stops/404583"], ["https://data.delijn.be/stops/104509", "https://data.delijn.be/stops/104511"], ["https://data.delijn.be/stops/403617", "https://data.delijn.be/stops/406332"], ["https://data.delijn.be/stops/208726", "https://data.delijn.be/stops/209726"], ["https://data.delijn.be/stops/108644", "https://data.delijn.be/stops/109680"], ["https://data.delijn.be/stops/206206", "https://data.delijn.be/stops/207207"], ["https://data.delijn.be/stops/503819", "https://data.delijn.be/stops/508819"], ["https://data.delijn.be/stops/102610", "https://data.delijn.be/stops/107765"], ["https://data.delijn.be/stops/407061", "https://data.delijn.be/stops/407070"], ["https://data.delijn.be/stops/302178", "https://data.delijn.be/stops/302179"], ["https://data.delijn.be/stops/304045", "https://data.delijn.be/stops/304047"], ["https://data.delijn.be/stops/204671", "https://data.delijn.be/stops/205671"], ["https://data.delijn.be/stops/106654", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/308507", "https://data.delijn.be/stops/308509"], ["https://data.delijn.be/stops/301558", "https://data.delijn.be/stops/308087"], ["https://data.delijn.be/stops/108819", "https://data.delijn.be/stops/108829"], ["https://data.delijn.be/stops/107331", "https://data.delijn.be/stops/107332"], ["https://data.delijn.be/stops/300657", "https://data.delijn.be/stops/302473"], ["https://data.delijn.be/stops/502731", "https://data.delijn.be/stops/505839"], ["https://data.delijn.be/stops/405302", "https://data.delijn.be/stops/405314"], ["https://data.delijn.be/stops/303333", "https://data.delijn.be/stops/308932"], ["https://data.delijn.be/stops/301740", "https://data.delijn.be/stops/305875"], ["https://data.delijn.be/stops/107030", "https://data.delijn.be/stops/107033"], ["https://data.delijn.be/stops/501191", "https://data.delijn.be/stops/501641"], ["https://data.delijn.be/stops/400881", "https://data.delijn.be/stops/400889"], ["https://data.delijn.be/stops/308151", "https://data.delijn.be/stops/308153"], ["https://data.delijn.be/stops/406129", "https://data.delijn.be/stops/406983"], ["https://data.delijn.be/stops/206953", "https://data.delijn.be/stops/300171"], ["https://data.delijn.be/stops/303051", "https://data.delijn.be/stops/303060"], ["https://data.delijn.be/stops/501256", "https://data.delijn.be/stops/506259"], ["https://data.delijn.be/stops/402493", "https://data.delijn.be/stops/402495"], ["https://data.delijn.be/stops/201678", "https://data.delijn.be/stops/203400"], ["https://data.delijn.be/stops/208397", "https://data.delijn.be/stops/209397"], ["https://data.delijn.be/stops/101510", "https://data.delijn.be/stops/104999"], ["https://data.delijn.be/stops/304411", "https://data.delijn.be/stops/304412"], ["https://data.delijn.be/stops/501330", "https://data.delijn.be/stops/506309"], ["https://data.delijn.be/stops/502152", "https://data.delijn.be/stops/507681"], ["https://data.delijn.be/stops/406152", "https://data.delijn.be/stops/406270"], ["https://data.delijn.be/stops/405631", "https://data.delijn.be/stops/405633"], ["https://data.delijn.be/stops/503489", "https://data.delijn.be/stops/508485"], ["https://data.delijn.be/stops/505232", "https://data.delijn.be/stops/507699"], ["https://data.delijn.be/stops/503508", "https://data.delijn.be/stops/508512"], ["https://data.delijn.be/stops/403328", "https://data.delijn.be/stops/403329"], ["https://data.delijn.be/stops/402608", "https://data.delijn.be/stops/405302"], ["https://data.delijn.be/stops/400712", "https://data.delijn.be/stops/409506"], ["https://data.delijn.be/stops/505596", "https://data.delijn.be/stops/505767"], ["https://data.delijn.be/stops/106595", "https://data.delijn.be/stops/107244"], ["https://data.delijn.be/stops/208485", "https://data.delijn.be/stops/209659"], ["https://data.delijn.be/stops/206885", "https://data.delijn.be/stops/206887"], ["https://data.delijn.be/stops/300431", "https://data.delijn.be/stops/302695"], ["https://data.delijn.be/stops/109182", "https://data.delijn.be/stops/109252"], ["https://data.delijn.be/stops/503048", "https://data.delijn.be/stops/503333"], ["https://data.delijn.be/stops/404661", "https://data.delijn.be/stops/404668"], ["https://data.delijn.be/stops/408748", "https://data.delijn.be/stops/408807"], ["https://data.delijn.be/stops/406164", "https://data.delijn.be/stops/406427"], ["https://data.delijn.be/stops/109790", "https://data.delijn.be/stops/109791"], ["https://data.delijn.be/stops/510020", "https://data.delijn.be/stops/510021"], ["https://data.delijn.be/stops/302648", "https://data.delijn.be/stops/302650"], ["https://data.delijn.be/stops/301251", "https://data.delijn.be/stops/308266"], ["https://data.delijn.be/stops/202652", "https://data.delijn.be/stops/202653"], ["https://data.delijn.be/stops/208149", "https://data.delijn.be/stops/208193"], ["https://data.delijn.be/stops/301512", "https://data.delijn.be/stops/301526"], ["https://data.delijn.be/stops/402322", "https://data.delijn.be/stops/406857"], ["https://data.delijn.be/stops/503451", "https://data.delijn.be/stops/508354"], ["https://data.delijn.be/stops/201685", "https://data.delijn.be/stops/208887"], ["https://data.delijn.be/stops/106727", "https://data.delijn.be/stops/106728"], ["https://data.delijn.be/stops/505648", "https://data.delijn.be/stops/509878"], ["https://data.delijn.be/stops/401842", "https://data.delijn.be/stops/401853"], ["https://data.delijn.be/stops/107105", "https://data.delijn.be/stops/108820"], ["https://data.delijn.be/stops/301467", "https://data.delijn.be/stops/307958"], ["https://data.delijn.be/stops/103031", "https://data.delijn.be/stops/108124"], ["https://data.delijn.be/stops/410361", "https://data.delijn.be/stops/410399"], ["https://data.delijn.be/stops/301589", "https://data.delijn.be/stops/308089"], ["https://data.delijn.be/stops/104021", "https://data.delijn.be/stops/105170"], ["https://data.delijn.be/stops/501046", "https://data.delijn.be/stops/502719"], ["https://data.delijn.be/stops/407323", "https://data.delijn.be/stops/410259"], ["https://data.delijn.be/stops/206941", "https://data.delijn.be/stops/207941"], ["https://data.delijn.be/stops/201887", "https://data.delijn.be/stops/210072"], ["https://data.delijn.be/stops/504430", "https://data.delijn.be/stops/509472"], ["https://data.delijn.be/stops/106203", "https://data.delijn.be/stops/107457"], ["https://data.delijn.be/stops/304015", "https://data.delijn.be/stops/304060"], ["https://data.delijn.be/stops/102042", "https://data.delijn.be/stops/102649"], ["https://data.delijn.be/stops/305330", "https://data.delijn.be/stops/308710"], ["https://data.delijn.be/stops/300936", "https://data.delijn.be/stops/304642"], ["https://data.delijn.be/stops/109891", "https://data.delijn.be/stops/109893"], ["https://data.delijn.be/stops/102013", "https://data.delijn.be/stops/107886"], ["https://data.delijn.be/stops/300198", "https://data.delijn.be/stops/307112"], ["https://data.delijn.be/stops/200009", "https://data.delijn.be/stops/201417"], ["https://data.delijn.be/stops/301410", "https://data.delijn.be/stops/301448"], ["https://data.delijn.be/stops/404850", "https://data.delijn.be/stops/404884"], ["https://data.delijn.be/stops/108784", "https://data.delijn.be/stops/108785"], ["https://data.delijn.be/stops/507303", "https://data.delijn.be/stops/507601"], ["https://data.delijn.be/stops/508474", "https://data.delijn.be/stops/509021"], ["https://data.delijn.be/stops/204097", "https://data.delijn.be/stops/204259"], ["https://data.delijn.be/stops/403630", "https://data.delijn.be/stops/403631"], ["https://data.delijn.be/stops/203101", "https://data.delijn.be/stops/203102"], ["https://data.delijn.be/stops/301456", "https://data.delijn.be/stops/307930"], ["https://data.delijn.be/stops/204527", "https://data.delijn.be/stops/205251"], ["https://data.delijn.be/stops/504357", "https://data.delijn.be/stops/509357"], ["https://data.delijn.be/stops/403775", "https://data.delijn.be/stops/403777"], ["https://data.delijn.be/stops/307203", "https://data.delijn.be/stops/307555"], ["https://data.delijn.be/stops/205350", "https://data.delijn.be/stops/205446"], ["https://data.delijn.be/stops/102660", "https://data.delijn.be/stops/105154"], ["https://data.delijn.be/stops/502597", "https://data.delijn.be/stops/507597"], ["https://data.delijn.be/stops/201381", "https://data.delijn.be/stops/210089"], ["https://data.delijn.be/stops/108683", "https://data.delijn.be/stops/108826"], ["https://data.delijn.be/stops/505783", "https://data.delijn.be/stops/507063"], ["https://data.delijn.be/stops/206864", "https://data.delijn.be/stops/207803"], ["https://data.delijn.be/stops/400226", "https://data.delijn.be/stops/400237"], ["https://data.delijn.be/stops/408796", "https://data.delijn.be/stops/410150"], ["https://data.delijn.be/stops/203192", "https://data.delijn.be/stops/211855"], ["https://data.delijn.be/stops/503851", "https://data.delijn.be/stops/505993"], ["https://data.delijn.be/stops/102237", "https://data.delijn.be/stops/104291"], ["https://data.delijn.be/stops/203166", "https://data.delijn.be/stops/205073"], ["https://data.delijn.be/stops/302074", "https://data.delijn.be/stops/302088"], ["https://data.delijn.be/stops/504129", "https://data.delijn.be/stops/509129"], ["https://data.delijn.be/stops/504879", "https://data.delijn.be/stops/507363"], ["https://data.delijn.be/stops/402538", "https://data.delijn.be/stops/410022"], ["https://data.delijn.be/stops/204566", "https://data.delijn.be/stops/305855"], ["https://data.delijn.be/stops/404450", "https://data.delijn.be/stops/404451"], ["https://data.delijn.be/stops/207762", "https://data.delijn.be/stops/209373"], ["https://data.delijn.be/stops/208159", "https://data.delijn.be/stops/209159"], ["https://data.delijn.be/stops/501262", "https://data.delijn.be/stops/506262"], ["https://data.delijn.be/stops/105716", "https://data.delijn.be/stops/106080"], ["https://data.delijn.be/stops/201639", "https://data.delijn.be/stops/211018"], ["https://data.delijn.be/stops/400251", "https://data.delijn.be/stops/400435"], ["https://data.delijn.be/stops/308770", "https://data.delijn.be/stops/308772"], ["https://data.delijn.be/stops/106436", "https://data.delijn.be/stops/106440"], ["https://data.delijn.be/stops/301535", "https://data.delijn.be/stops/301536"], ["https://data.delijn.be/stops/407686", "https://data.delijn.be/stops/407688"], ["https://data.delijn.be/stops/503369", "https://data.delijn.be/stops/510023"], ["https://data.delijn.be/stops/303754", "https://data.delijn.be/stops/303760"], ["https://data.delijn.be/stops/406094", "https://data.delijn.be/stops/406133"], ["https://data.delijn.be/stops/300564", "https://data.delijn.be/stops/304242"], ["https://data.delijn.be/stops/103611", "https://data.delijn.be/stops/103614"], ["https://data.delijn.be/stops/400779", "https://data.delijn.be/stops/409616"], ["https://data.delijn.be/stops/503321", "https://data.delijn.be/stops/508319"], ["https://data.delijn.be/stops/206910", "https://data.delijn.be/stops/207911"], ["https://data.delijn.be/stops/503536", "https://data.delijn.be/stops/503538"], ["https://data.delijn.be/stops/400129", "https://data.delijn.be/stops/400130"], ["https://data.delijn.be/stops/308730", "https://data.delijn.be/stops/308732"], ["https://data.delijn.be/stops/402870", "https://data.delijn.be/stops/306035"], ["https://data.delijn.be/stops/502128", "https://data.delijn.be/stops/502152"], ["https://data.delijn.be/stops/405505", "https://data.delijn.be/stops/407715"], ["https://data.delijn.be/stops/201473", "https://data.delijn.be/stops/201890"], ["https://data.delijn.be/stops/402529", "https://data.delijn.be/stops/404092"], ["https://data.delijn.be/stops/202188", "https://data.delijn.be/stops/203615"], ["https://data.delijn.be/stops/406006", "https://data.delijn.be/stops/406008"], ["https://data.delijn.be/stops/106184", "https://data.delijn.be/stops/109860"], ["https://data.delijn.be/stops/102950", "https://data.delijn.be/stops/104999"], ["https://data.delijn.be/stops/501615", "https://data.delijn.be/stops/506014"], ["https://data.delijn.be/stops/301067", "https://data.delijn.be/stops/301068"], ["https://data.delijn.be/stops/102447", "https://data.delijn.be/stops/104225"], ["https://data.delijn.be/stops/405206", "https://data.delijn.be/stops/405213"], ["https://data.delijn.be/stops/204411", "https://data.delijn.be/stops/205400"], ["https://data.delijn.be/stops/401397", "https://data.delijn.be/stops/300922"], ["https://data.delijn.be/stops/505926", "https://data.delijn.be/stops/509234"], ["https://data.delijn.be/stops/106195", "https://data.delijn.be/stops/107443"], ["https://data.delijn.be/stops/402268", "https://data.delijn.be/stops/402422"], ["https://data.delijn.be/stops/305105", "https://data.delijn.be/stops/305126"], ["https://data.delijn.be/stops/200548", "https://data.delijn.be/stops/201530"], ["https://data.delijn.be/stops/206642", "https://data.delijn.be/stops/209686"], ["https://data.delijn.be/stops/201808", "https://data.delijn.be/stops/209260"], ["https://data.delijn.be/stops/501612", "https://data.delijn.be/stops/506609"], ["https://data.delijn.be/stops/305546", "https://data.delijn.be/stops/306561"], ["https://data.delijn.be/stops/300130", "https://data.delijn.be/stops/300145"], ["https://data.delijn.be/stops/501690", "https://data.delijn.be/stops/506156"], ["https://data.delijn.be/stops/204189", "https://data.delijn.be/stops/204190"], ["https://data.delijn.be/stops/405492", "https://data.delijn.be/stops/405623"], ["https://data.delijn.be/stops/404122", "https://data.delijn.be/stops/404123"], ["https://data.delijn.be/stops/306801", "https://data.delijn.be/stops/306802"], ["https://data.delijn.be/stops/410213", "https://data.delijn.be/stops/410214"], ["https://data.delijn.be/stops/301844", "https://data.delijn.be/stops/302550"], ["https://data.delijn.be/stops/206201", "https://data.delijn.be/stops/207201"], ["https://data.delijn.be/stops/107690", "https://data.delijn.be/stops/108330"], ["https://data.delijn.be/stops/105721", "https://data.delijn.be/stops/105723"], ["https://data.delijn.be/stops/301628", "https://data.delijn.be/stops/301629"], ["https://data.delijn.be/stops/207696", "https://data.delijn.be/stops/303858"], ["https://data.delijn.be/stops/503612", "https://data.delijn.be/stops/508546"], ["https://data.delijn.be/stops/305497", "https://data.delijn.be/stops/305503"], ["https://data.delijn.be/stops/508467", "https://data.delijn.be/stops/508978"], ["https://data.delijn.be/stops/302993", "https://data.delijn.be/stops/302994"], ["https://data.delijn.be/stops/103586", "https://data.delijn.be/stops/105587"], ["https://data.delijn.be/stops/207865", "https://data.delijn.be/stops/208384"], ["https://data.delijn.be/stops/102006", "https://data.delijn.be/stops/102925"], ["https://data.delijn.be/stops/206385", "https://data.delijn.be/stops/206889"], ["https://data.delijn.be/stops/505837", "https://data.delijn.be/stops/509030"], ["https://data.delijn.be/stops/208122", "https://data.delijn.be/stops/209120"], ["https://data.delijn.be/stops/103672", "https://data.delijn.be/stops/103673"], ["https://data.delijn.be/stops/302470", "https://data.delijn.be/stops/302471"], ["https://data.delijn.be/stops/403484", "https://data.delijn.be/stops/404263"], ["https://data.delijn.be/stops/502405", "https://data.delijn.be/stops/507405"], ["https://data.delijn.be/stops/304092", "https://data.delijn.be/stops/307508"], ["https://data.delijn.be/stops/305242", "https://data.delijn.be/stops/305274"], ["https://data.delijn.be/stops/207342", "https://data.delijn.be/stops/207704"], ["https://data.delijn.be/stops/404416", "https://data.delijn.be/stops/404417"], ["https://data.delijn.be/stops/301408", "https://data.delijn.be/stops/301412"], ["https://data.delijn.be/stops/404168", "https://data.delijn.be/stops/404218"], ["https://data.delijn.be/stops/101235", "https://data.delijn.be/stops/104345"], ["https://data.delijn.be/stops/108685", "https://data.delijn.be/stops/108686"], ["https://data.delijn.be/stops/303122", "https://data.delijn.be/stops/307201"], ["https://data.delijn.be/stops/406071", "https://data.delijn.be/stops/410148"], ["https://data.delijn.be/stops/400489", "https://data.delijn.be/stops/400975"], ["https://data.delijn.be/stops/101221", "https://data.delijn.be/stops/102649"], ["https://data.delijn.be/stops/400102", "https://data.delijn.be/stops/404872"], ["https://data.delijn.be/stops/408181", "https://data.delijn.be/stops/408439"], ["https://data.delijn.be/stops/403312", "https://data.delijn.be/stops/403345"], ["https://data.delijn.be/stops/202680", "https://data.delijn.be/stops/203680"], ["https://data.delijn.be/stops/208700", "https://data.delijn.be/stops/208714"], ["https://data.delijn.be/stops/107355", "https://data.delijn.be/stops/108155"], ["https://data.delijn.be/stops/202920", "https://data.delijn.be/stops/210097"], ["https://data.delijn.be/stops/400911", "https://data.delijn.be/stops/400956"], ["https://data.delijn.be/stops/503975", "https://data.delijn.be/stops/508450"], ["https://data.delijn.be/stops/405245", "https://data.delijn.be/stops/405249"], ["https://data.delijn.be/stops/300027", "https://data.delijn.be/stops/303943"], ["https://data.delijn.be/stops/406158", "https://data.delijn.be/stops/406286"], ["https://data.delijn.be/stops/302643", "https://data.delijn.be/stops/306044"], ["https://data.delijn.be/stops/206878", "https://data.delijn.be/stops/207038"], ["https://data.delijn.be/stops/302100", "https://data.delijn.be/stops/302105"], ["https://data.delijn.be/stops/401755", "https://data.delijn.be/stops/401763"], ["https://data.delijn.be/stops/102388", "https://data.delijn.be/stops/102657"], ["https://data.delijn.be/stops/306688", "https://data.delijn.be/stops/307884"], ["https://data.delijn.be/stops/504716", "https://data.delijn.be/stops/505118"], ["https://data.delijn.be/stops/301584", "https://data.delijn.be/stops/301585"], ["https://data.delijn.be/stops/201671", "https://data.delijn.be/stops/203213"], ["https://data.delijn.be/stops/103209", "https://data.delijn.be/stops/107880"], ["https://data.delijn.be/stops/400540", "https://data.delijn.be/stops/400569"], ["https://data.delijn.be/stops/304806", "https://data.delijn.be/stops/304813"], ["https://data.delijn.be/stops/401084", "https://data.delijn.be/stops/401525"], ["https://data.delijn.be/stops/200385", "https://data.delijn.be/stops/209957"], ["https://data.delijn.be/stops/300977", "https://data.delijn.be/stops/301002"], ["https://data.delijn.be/stops/501382", "https://data.delijn.be/stops/506394"], ["https://data.delijn.be/stops/400212", "https://data.delijn.be/stops/400213"], ["https://data.delijn.be/stops/103352", "https://data.delijn.be/stops/103353"], ["https://data.delijn.be/stops/206748", "https://data.delijn.be/stops/207699"], ["https://data.delijn.be/stops/204023", "https://data.delijn.be/stops/205022"], ["https://data.delijn.be/stops/400266", "https://data.delijn.be/stops/400384"], ["https://data.delijn.be/stops/502132", "https://data.delijn.be/stops/507130"], ["https://data.delijn.be/stops/202902", "https://data.delijn.be/stops/210092"], ["https://data.delijn.be/stops/208031", "https://data.delijn.be/stops/209032"], ["https://data.delijn.be/stops/407892", "https://data.delijn.be/stops/407895"], ["https://data.delijn.be/stops/200949", "https://data.delijn.be/stops/202093"], ["https://data.delijn.be/stops/301822", "https://data.delijn.be/stops/301823"], ["https://data.delijn.be/stops/203786", "https://data.delijn.be/stops/209643"], ["https://data.delijn.be/stops/208197", "https://data.delijn.be/stops/209130"], ["https://data.delijn.be/stops/108227", "https://data.delijn.be/stops/108229"], ["https://data.delijn.be/stops/402382", "https://data.delijn.be/stops/402395"], ["https://data.delijn.be/stops/404365", "https://data.delijn.be/stops/404782"], ["https://data.delijn.be/stops/403443", "https://data.delijn.be/stops/403476"], ["https://data.delijn.be/stops/207047", "https://data.delijn.be/stops/306069"], ["https://data.delijn.be/stops/504265", "https://data.delijn.be/stops/509265"], ["https://data.delijn.be/stops/503685", "https://data.delijn.be/stops/508685"], ["https://data.delijn.be/stops/108638", "https://data.delijn.be/stops/109681"], ["https://data.delijn.be/stops/101945", "https://data.delijn.be/stops/108739"], ["https://data.delijn.be/stops/202524", "https://data.delijn.be/stops/203525"], ["https://data.delijn.be/stops/305540", "https://data.delijn.be/stops/305541"], ["https://data.delijn.be/stops/306696", "https://data.delijn.be/stops/306697"], ["https://data.delijn.be/stops/508232", "https://data.delijn.be/stops/508256"], ["https://data.delijn.be/stops/301614", "https://data.delijn.be/stops/301633"], ["https://data.delijn.be/stops/404526", "https://data.delijn.be/stops/408171"], ["https://data.delijn.be/stops/504470", "https://data.delijn.be/stops/509471"], ["https://data.delijn.be/stops/507010", "https://data.delijn.be/stops/507039"], ["https://data.delijn.be/stops/106452", "https://data.delijn.be/stops/106454"], ["https://data.delijn.be/stops/102457", "https://data.delijn.be/stops/102466"], ["https://data.delijn.be/stops/200944", "https://data.delijn.be/stops/202697"], ["https://data.delijn.be/stops/203510", "https://data.delijn.be/stops/203511"], ["https://data.delijn.be/stops/104384", "https://data.delijn.be/stops/104386"], ["https://data.delijn.be/stops/101036", "https://data.delijn.be/stops/308795"], ["https://data.delijn.be/stops/403985", "https://data.delijn.be/stops/404004"], ["https://data.delijn.be/stops/302252", "https://data.delijn.be/stops/302268"], ["https://data.delijn.be/stops/503493", "https://data.delijn.be/stops/505139"], ["https://data.delijn.be/stops/300691", "https://data.delijn.be/stops/303459"], ["https://data.delijn.be/stops/504145", "https://data.delijn.be/stops/504389"], ["https://data.delijn.be/stops/405962", "https://data.delijn.be/stops/405963"], ["https://data.delijn.be/stops/503024", "https://data.delijn.be/stops/507959"], ["https://data.delijn.be/stops/501373", "https://data.delijn.be/stops/506375"], ["https://data.delijn.be/stops/407680", "https://data.delijn.be/stops/410091"], ["https://data.delijn.be/stops/500053", "https://data.delijn.be/stops/507076"], ["https://data.delijn.be/stops/504461", "https://data.delijn.be/stops/505786"], ["https://data.delijn.be/stops/502656", "https://data.delijn.be/stops/507656"], ["https://data.delijn.be/stops/104738", "https://data.delijn.be/stops/104747"], ["https://data.delijn.be/stops/205039", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/503041", "https://data.delijn.be/stops/508077"], ["https://data.delijn.be/stops/103027", "https://data.delijn.be/stops/104564"], ["https://data.delijn.be/stops/108464", "https://data.delijn.be/stops/305989"], ["https://data.delijn.be/stops/405203", "https://data.delijn.be/stops/405204"], ["https://data.delijn.be/stops/409114", "https://data.delijn.be/stops/409811"], ["https://data.delijn.be/stops/304006", "https://data.delijn.be/stops/304025"], ["https://data.delijn.be/stops/202761", "https://data.delijn.be/stops/203751"], ["https://data.delijn.be/stops/503538", "https://data.delijn.be/stops/505945"], ["https://data.delijn.be/stops/408740", "https://data.delijn.be/stops/408741"], ["https://data.delijn.be/stops/407935", "https://data.delijn.be/stops/407936"], ["https://data.delijn.be/stops/107398", "https://data.delijn.be/stops/107406"], ["https://data.delijn.be/stops/200128", "https://data.delijn.be/stops/200129"], ["https://data.delijn.be/stops/400651", "https://data.delijn.be/stops/400665"], ["https://data.delijn.be/stops/102746", "https://data.delijn.be/stops/106417"], ["https://data.delijn.be/stops/206656", "https://data.delijn.be/stops/206718"], ["https://data.delijn.be/stops/206596", "https://data.delijn.be/stops/207596"], ["https://data.delijn.be/stops/209347", "https://data.delijn.be/stops/218028"], ["https://data.delijn.be/stops/503900", "https://data.delijn.be/stops/505917"], ["https://data.delijn.be/stops/502553", "https://data.delijn.be/stops/507559"], ["https://data.delijn.be/stops/200167", "https://data.delijn.be/stops/200749"], ["https://data.delijn.be/stops/305356", "https://data.delijn.be/stops/307111"], ["https://data.delijn.be/stops/402563", "https://data.delijn.be/stops/407801"], ["https://data.delijn.be/stops/402000", "https://data.delijn.be/stops/403501"], ["https://data.delijn.be/stops/205420", "https://data.delijn.be/stops/205765"], ["https://data.delijn.be/stops/204297", "https://data.delijn.be/stops/204497"], ["https://data.delijn.be/stops/202434", "https://data.delijn.be/stops/203717"], ["https://data.delijn.be/stops/201249", "https://data.delijn.be/stops/211051"], ["https://data.delijn.be/stops/106105", "https://data.delijn.be/stops/106108"], ["https://data.delijn.be/stops/403306", "https://data.delijn.be/stops/405637"], ["https://data.delijn.be/stops/305100", "https://data.delijn.be/stops/305107"], ["https://data.delijn.be/stops/405867", "https://data.delijn.be/stops/407511"], ["https://data.delijn.be/stops/400081", "https://data.delijn.be/stops/400161"], ["https://data.delijn.be/stops/407352", "https://data.delijn.be/stops/407397"], ["https://data.delijn.be/stops/200591", "https://data.delijn.be/stops/201591"], ["https://data.delijn.be/stops/301145", "https://data.delijn.be/stops/307697"], ["https://data.delijn.be/stops/104484", "https://data.delijn.be/stops/303561"], ["https://data.delijn.be/stops/304386", "https://data.delijn.be/stops/307070"], ["https://data.delijn.be/stops/208222", "https://data.delijn.be/stops/208967"], ["https://data.delijn.be/stops/103478", "https://data.delijn.be/stops/108929"], ["https://data.delijn.be/stops/305875", "https://data.delijn.be/stops/305907"], ["https://data.delijn.be/stops/307026", "https://data.delijn.be/stops/307573"], ["https://data.delijn.be/stops/504155", "https://data.delijn.be/stops/505109"], ["https://data.delijn.be/stops/201174", "https://data.delijn.be/stops/201650"], ["https://data.delijn.be/stops/400990", "https://data.delijn.be/stops/400991"], ["https://data.delijn.be/stops/503753", "https://data.delijn.be/stops/508756"], ["https://data.delijn.be/stops/407931", "https://data.delijn.be/stops/407933"], ["https://data.delijn.be/stops/405959", "https://data.delijn.be/stops/405960"], ["https://data.delijn.be/stops/304729", "https://data.delijn.be/stops/307333"], ["https://data.delijn.be/stops/201896", "https://data.delijn.be/stops/203941"], ["https://data.delijn.be/stops/103244", "https://data.delijn.be/stops/104681"], ["https://data.delijn.be/stops/305290", "https://data.delijn.be/stops/305291"], ["https://data.delijn.be/stops/300265", "https://data.delijn.be/stops/307494"], ["https://data.delijn.be/stops/401730", "https://data.delijn.be/stops/401765"], ["https://data.delijn.be/stops/404658", "https://data.delijn.be/stops/404659"], ["https://data.delijn.be/stops/401771", "https://data.delijn.be/stops/406347"], ["https://data.delijn.be/stops/300941", "https://data.delijn.be/stops/300942"], ["https://data.delijn.be/stops/104024", "https://data.delijn.be/stops/106898"], ["https://data.delijn.be/stops/302078", "https://data.delijn.be/stops/302277"], ["https://data.delijn.be/stops/302922", "https://data.delijn.be/stops/303072"], ["https://data.delijn.be/stops/201782", "https://data.delijn.be/stops/218010"], ["https://data.delijn.be/stops/304954", "https://data.delijn.be/stops/304977"], ["https://data.delijn.be/stops/200583", "https://data.delijn.be/stops/201583"], ["https://data.delijn.be/stops/207618", "https://data.delijn.be/stops/207619"], ["https://data.delijn.be/stops/300420", "https://data.delijn.be/stops/300429"], ["https://data.delijn.be/stops/201607", "https://data.delijn.be/stops/211001"], ["https://data.delijn.be/stops/208174", "https://data.delijn.be/stops/208177"], ["https://data.delijn.be/stops/208319", "https://data.delijn.be/stops/209375"], ["https://data.delijn.be/stops/202417", "https://data.delijn.be/stops/203409"], ["https://data.delijn.be/stops/304133", "https://data.delijn.be/stops/304146"], ["https://data.delijn.be/stops/504852", "https://data.delijn.be/stops/508833"], ["https://data.delijn.be/stops/202361", "https://data.delijn.be/stops/203990"], ["https://data.delijn.be/stops/300961", "https://data.delijn.be/stops/302226"], ["https://data.delijn.be/stops/204294", "https://data.delijn.be/stops/204532"], ["https://data.delijn.be/stops/308494", "https://data.delijn.be/stops/308497"], ["https://data.delijn.be/stops/108682", "https://data.delijn.be/stops/108904"], ["https://data.delijn.be/stops/503172", "https://data.delijn.be/stops/508169"], ["https://data.delijn.be/stops/105228", "https://data.delijn.be/stops/105283"], ["https://data.delijn.be/stops/101173", "https://data.delijn.be/stops/104855"], ["https://data.delijn.be/stops/303560", "https://data.delijn.be/stops/308619"], ["https://data.delijn.be/stops/205007", "https://data.delijn.be/stops/205699"], ["https://data.delijn.be/stops/304261", "https://data.delijn.be/stops/304263"], ["https://data.delijn.be/stops/202430", "https://data.delijn.be/stops/203429"], ["https://data.delijn.be/stops/105533", "https://data.delijn.be/stops/105534"], ["https://data.delijn.be/stops/501202", "https://data.delijn.be/stops/506202"], ["https://data.delijn.be/stops/401788", "https://data.delijn.be/stops/406031"], ["https://data.delijn.be/stops/402340", "https://data.delijn.be/stops/410075"], ["https://data.delijn.be/stops/302020", "https://data.delijn.be/stops/303657"], ["https://data.delijn.be/stops/509150", "https://data.delijn.be/stops/509741"], ["https://data.delijn.be/stops/400964", "https://data.delijn.be/stops/401255"], ["https://data.delijn.be/stops/509211", "https://data.delijn.be/stops/509217"], ["https://data.delijn.be/stops/503461", "https://data.delijn.be/stops/509951"], ["https://data.delijn.be/stops/401413", "https://data.delijn.be/stops/308957"], ["https://data.delijn.be/stops/207739", "https://data.delijn.be/stops/207899"], ["https://data.delijn.be/stops/408581", "https://data.delijn.be/stops/302893"], ["https://data.delijn.be/stops/104471", "https://data.delijn.be/stops/104472"], ["https://data.delijn.be/stops/502286", "https://data.delijn.be/stops/507286"], ["https://data.delijn.be/stops/400820", "https://data.delijn.be/stops/400822"], ["https://data.delijn.be/stops/102598", "https://data.delijn.be/stops/107818"], ["https://data.delijn.be/stops/407372", "https://data.delijn.be/stops/407378"], ["https://data.delijn.be/stops/102405", "https://data.delijn.be/stops/109673"], ["https://data.delijn.be/stops/108949", "https://data.delijn.be/stops/109222"], ["https://data.delijn.be/stops/106948", "https://data.delijn.be/stops/106949"], ["https://data.delijn.be/stops/504682", "https://data.delijn.be/stops/509017"], ["https://data.delijn.be/stops/200901", "https://data.delijn.be/stops/202269"], ["https://data.delijn.be/stops/304106", "https://data.delijn.be/stops/304114"], ["https://data.delijn.be/stops/302613", "https://data.delijn.be/stops/302635"], ["https://data.delijn.be/stops/107694", "https://data.delijn.be/stops/406770"], ["https://data.delijn.be/stops/107409", "https://data.delijn.be/stops/107691"], ["https://data.delijn.be/stops/200668", "https://data.delijn.be/stops/508578"], ["https://data.delijn.be/stops/400701", "https://data.delijn.be/stops/400724"], ["https://data.delijn.be/stops/402109", "https://data.delijn.be/stops/402284"], ["https://data.delijn.be/stops/302634", "https://data.delijn.be/stops/302642"], ["https://data.delijn.be/stops/304414", "https://data.delijn.be/stops/307386"], ["https://data.delijn.be/stops/501114", "https://data.delijn.be/stops/506640"], ["https://data.delijn.be/stops/502757", "https://data.delijn.be/stops/505238"], ["https://data.delijn.be/stops/307233", "https://data.delijn.be/stops/308853"], ["https://data.delijn.be/stops/403080", "https://data.delijn.be/stops/403501"], ["https://data.delijn.be/stops/109103", "https://data.delijn.be/stops/109183"], ["https://data.delijn.be/stops/504304", "https://data.delijn.be/stops/509380"], ["https://data.delijn.be/stops/301945", "https://data.delijn.be/stops/301948"], ["https://data.delijn.be/stops/302600", "https://data.delijn.be/stops/302629"], ["https://data.delijn.be/stops/102564", "https://data.delijn.be/stops/102567"], ["https://data.delijn.be/stops/400650", "https://data.delijn.be/stops/400660"], ["https://data.delijn.be/stops/202174", "https://data.delijn.be/stops/202190"], ["https://data.delijn.be/stops/208146", "https://data.delijn.be/stops/209698"], ["https://data.delijn.be/stops/403040", "https://data.delijn.be/stops/403276"], ["https://data.delijn.be/stops/107351", "https://data.delijn.be/stops/107353"], ["https://data.delijn.be/stops/403930", "https://data.delijn.be/stops/404086"], ["https://data.delijn.be/stops/406558", "https://data.delijn.be/stops/406566"], ["https://data.delijn.be/stops/303156", "https://data.delijn.be/stops/303210"], ["https://data.delijn.be/stops/206344", "https://data.delijn.be/stops/207344"], ["https://data.delijn.be/stops/301303", "https://data.delijn.be/stops/306257"], ["https://data.delijn.be/stops/104200", "https://data.delijn.be/stops/105235"], ["https://data.delijn.be/stops/306725", "https://data.delijn.be/stops/306728"], ["https://data.delijn.be/stops/200462", "https://data.delijn.be/stops/200465"], ["https://data.delijn.be/stops/105869", "https://data.delijn.be/stops/105872"], ["https://data.delijn.be/stops/204287", "https://data.delijn.be/stops/205287"], ["https://data.delijn.be/stops/307433", "https://data.delijn.be/stops/307434"], ["https://data.delijn.be/stops/304731", "https://data.delijn.be/stops/304733"], ["https://data.delijn.be/stops/102449", "https://data.delijn.be/stops/107983"], ["https://data.delijn.be/stops/403623", "https://data.delijn.be/stops/403652"], ["https://data.delijn.be/stops/200128", "https://data.delijn.be/stops/200301"], ["https://data.delijn.be/stops/108974", "https://data.delijn.be/stops/109462"], ["https://data.delijn.be/stops/202348", "https://data.delijn.be/stops/209710"], ["https://data.delijn.be/stops/300162", "https://data.delijn.be/stops/301188"], ["https://data.delijn.be/stops/405683", "https://data.delijn.be/stops/409727"], ["https://data.delijn.be/stops/503194", "https://data.delijn.be/stops/503984"], ["https://data.delijn.be/stops/503224", "https://data.delijn.be/stops/508224"], ["https://data.delijn.be/stops/406733", "https://data.delijn.be/stops/408755"], ["https://data.delijn.be/stops/103745", "https://data.delijn.be/stops/103770"], ["https://data.delijn.be/stops/201971", "https://data.delijn.be/stops/207616"], ["https://data.delijn.be/stops/105713", "https://data.delijn.be/stops/105716"], ["https://data.delijn.be/stops/301958", "https://data.delijn.be/stops/307832"], ["https://data.delijn.be/stops/303017", "https://data.delijn.be/stops/303088"], ["https://data.delijn.be/stops/106664", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/403484", "https://data.delijn.be/stops/403664"], ["https://data.delijn.be/stops/405956", "https://data.delijn.be/stops/308152"], ["https://data.delijn.be/stops/207432", "https://data.delijn.be/stops/209690"], ["https://data.delijn.be/stops/102582", "https://data.delijn.be/stops/104450"], ["https://data.delijn.be/stops/308146", "https://data.delijn.be/stops/308162"], ["https://data.delijn.be/stops/503385", "https://data.delijn.be/stops/508385"], ["https://data.delijn.be/stops/406244", "https://data.delijn.be/stops/406259"], ["https://data.delijn.be/stops/408257", "https://data.delijn.be/stops/408336"], ["https://data.delijn.be/stops/200227", "https://data.delijn.be/stops/200228"], ["https://data.delijn.be/stops/509831", "https://data.delijn.be/stops/509833"], ["https://data.delijn.be/stops/402445", "https://data.delijn.be/stops/402447"], ["https://data.delijn.be/stops/301959", "https://data.delijn.be/stops/301963"], ["https://data.delijn.be/stops/408246", "https://data.delijn.be/stops/408249"], ["https://data.delijn.be/stops/200045", "https://data.delijn.be/stops/210095"], ["https://data.delijn.be/stops/208693", "https://data.delijn.be/stops/209664"], ["https://data.delijn.be/stops/302165", "https://data.delijn.be/stops/302167"], ["https://data.delijn.be/stops/302770", "https://data.delijn.be/stops/302778"], ["https://data.delijn.be/stops/303379", "https://data.delijn.be/stops/303391"], ["https://data.delijn.be/stops/303702", "https://data.delijn.be/stops/304919"], ["https://data.delijn.be/stops/204530", "https://data.delijn.be/stops/205296"], ["https://data.delijn.be/stops/503553", "https://data.delijn.be/stops/508553"], ["https://data.delijn.be/stops/504404", "https://data.delijn.be/stops/504416"], ["https://data.delijn.be/stops/307885", "https://data.delijn.be/stops/309671"], ["https://data.delijn.be/stops/406240", "https://data.delijn.be/stops/406252"], ["https://data.delijn.be/stops/207102", "https://data.delijn.be/stops/207103"], ["https://data.delijn.be/stops/303016", "https://data.delijn.be/stops/303033"], ["https://data.delijn.be/stops/501207", "https://data.delijn.be/stops/505047"], ["https://data.delijn.be/stops/102633", "https://data.delijn.be/stops/102638"], ["https://data.delijn.be/stops/306054", "https://data.delijn.be/stops/306056"], ["https://data.delijn.be/stops/407452", "https://data.delijn.be/stops/407468"], ["https://data.delijn.be/stops/201695", "https://data.delijn.be/stops/203689"], ["https://data.delijn.be/stops/204748", "https://data.delijn.be/stops/204749"], ["https://data.delijn.be/stops/101186", "https://data.delijn.be/stops/106776"], ["https://data.delijn.be/stops/200544", "https://data.delijn.be/stops/210046"], ["https://data.delijn.be/stops/402681", "https://data.delijn.be/stops/402730"], ["https://data.delijn.be/stops/407585", "https://data.delijn.be/stops/407586"], ["https://data.delijn.be/stops/305177", "https://data.delijn.be/stops/305201"], ["https://data.delijn.be/stops/208202", "https://data.delijn.be/stops/209202"], ["https://data.delijn.be/stops/106350", "https://data.delijn.be/stops/106352"], ["https://data.delijn.be/stops/207250", "https://data.delijn.be/stops/216021"], ["https://data.delijn.be/stops/303220", "https://data.delijn.be/stops/305551"], ["https://data.delijn.be/stops/209102", "https://data.delijn.be/stops/219005"], ["https://data.delijn.be/stops/502226", "https://data.delijn.be/stops/507226"], ["https://data.delijn.be/stops/303179", "https://data.delijn.be/stops/303575"], ["https://data.delijn.be/stops/502491", "https://data.delijn.be/stops/507508"], ["https://data.delijn.be/stops/500008", "https://data.delijn.be/stops/507112"], ["https://data.delijn.be/stops/208256", "https://data.delijn.be/stops/218027"], ["https://data.delijn.be/stops/101552", "https://data.delijn.be/stops/107918"], ["https://data.delijn.be/stops/106305", "https://data.delijn.be/stops/106308"], ["https://data.delijn.be/stops/305055", "https://data.delijn.be/stops/306934"], ["https://data.delijn.be/stops/302611", "https://data.delijn.be/stops/302655"], ["https://data.delijn.be/stops/106273", "https://data.delijn.be/stops/109629"], ["https://data.delijn.be/stops/303772", "https://data.delijn.be/stops/303784"], ["https://data.delijn.be/stops/204116", "https://data.delijn.be/stops/205116"], ["https://data.delijn.be/stops/504784", "https://data.delijn.be/stops/508515"], ["https://data.delijn.be/stops/102297", "https://data.delijn.be/stops/102298"], ["https://data.delijn.be/stops/106493", "https://data.delijn.be/stops/106495"], ["https://data.delijn.be/stops/407377", "https://data.delijn.be/stops/407379"], ["https://data.delijn.be/stops/505238", "https://data.delijn.be/stops/505650"], ["https://data.delijn.be/stops/300099", "https://data.delijn.be/stops/307360"], ["https://data.delijn.be/stops/302021", "https://data.delijn.be/stops/303657"], ["https://data.delijn.be/stops/502749", "https://data.delijn.be/stops/507415"], ["https://data.delijn.be/stops/206333", "https://data.delijn.be/stops/207363"], ["https://data.delijn.be/stops/504802", "https://data.delijn.be/stops/504804"], ["https://data.delijn.be/stops/207701", "https://data.delijn.be/stops/207887"], ["https://data.delijn.be/stops/202280", "https://data.delijn.be/stops/202281"], ["https://data.delijn.be/stops/109602", "https://data.delijn.be/stops/109603"], ["https://data.delijn.be/stops/504408", "https://data.delijn.be/stops/505997"], ["https://data.delijn.be/stops/102795", "https://data.delijn.be/stops/102890"], ["https://data.delijn.be/stops/201362", "https://data.delijn.be/stops/203005"], ["https://data.delijn.be/stops/101419", "https://data.delijn.be/stops/108716"], ["https://data.delijn.be/stops/401536", "https://data.delijn.be/stops/401539"], ["https://data.delijn.be/stops/505675", "https://data.delijn.be/stops/505676"], ["https://data.delijn.be/stops/400533", "https://data.delijn.be/stops/403548"], ["https://data.delijn.be/stops/301801", "https://data.delijn.be/stops/301818"], ["https://data.delijn.be/stops/302647", "https://data.delijn.be/stops/302649"], ["https://data.delijn.be/stops/208182", "https://data.delijn.be/stops/218019"], ["https://data.delijn.be/stops/207382", "https://data.delijn.be/stops/207921"], ["https://data.delijn.be/stops/504270", "https://data.delijn.be/stops/504689"], ["https://data.delijn.be/stops/201804", "https://data.delijn.be/stops/208250"], ["https://data.delijn.be/stops/105474", "https://data.delijn.be/stops/109935"], ["https://data.delijn.be/stops/200859", "https://data.delijn.be/stops/203333"], ["https://data.delijn.be/stops/402004", "https://data.delijn.be/stops/406449"], ["https://data.delijn.be/stops/105884", "https://data.delijn.be/stops/105934"], ["https://data.delijn.be/stops/204604", "https://data.delijn.be/stops/205605"], ["https://data.delijn.be/stops/202246", "https://data.delijn.be/stops/203043"], ["https://data.delijn.be/stops/210078", "https://data.delijn.be/stops/211078"], ["https://data.delijn.be/stops/304120", "https://data.delijn.be/stops/307579"], ["https://data.delijn.be/stops/201943", "https://data.delijn.be/stops/203145"], ["https://data.delijn.be/stops/204556", "https://data.delijn.be/stops/211063"], ["https://data.delijn.be/stops/206938", "https://data.delijn.be/stops/207937"], ["https://data.delijn.be/stops/406238", "https://data.delijn.be/stops/410044"], ["https://data.delijn.be/stops/501041", "https://data.delijn.be/stops/506031"], ["https://data.delijn.be/stops/109912", "https://data.delijn.be/stops/109917"], ["https://data.delijn.be/stops/302413", "https://data.delijn.be/stops/302424"], ["https://data.delijn.be/stops/305523", "https://data.delijn.be/stops/307012"], ["https://data.delijn.be/stops/200414", "https://data.delijn.be/stops/203359"], ["https://data.delijn.be/stops/303249", "https://data.delijn.be/stops/303659"], ["https://data.delijn.be/stops/504746", "https://data.delijn.be/stops/505305"], ["https://data.delijn.be/stops/406405", "https://data.delijn.be/stops/407725"], ["https://data.delijn.be/stops/104036", "https://data.delijn.be/stops/108832"], ["https://data.delijn.be/stops/203058", "https://data.delijn.be/stops/210073"], ["https://data.delijn.be/stops/200247", "https://data.delijn.be/stops/202757"], ["https://data.delijn.be/stops/502476", "https://data.delijn.be/stops/502945"], ["https://data.delijn.be/stops/406032", "https://data.delijn.be/stops/406652"], ["https://data.delijn.be/stops/303813", "https://data.delijn.be/stops/303867"], ["https://data.delijn.be/stops/106760", "https://data.delijn.be/stops/106857"], ["https://data.delijn.be/stops/109355", "https://data.delijn.be/stops/109356"], ["https://data.delijn.be/stops/304491", "https://data.delijn.be/stops/304516"], ["https://data.delijn.be/stops/304462", "https://data.delijn.be/stops/307694"], ["https://data.delijn.be/stops/400275", "https://data.delijn.be/stops/400413"], ["https://data.delijn.be/stops/504379", "https://data.delijn.be/stops/504993"], ["https://data.delijn.be/stops/303446", "https://data.delijn.be/stops/303448"], ["https://data.delijn.be/stops/405776", "https://data.delijn.be/stops/409761"], ["https://data.delijn.be/stops/208459", "https://data.delijn.be/stops/209460"], ["https://data.delijn.be/stops/202410", "https://data.delijn.be/stops/203417"], ["https://data.delijn.be/stops/101268", "https://data.delijn.be/stops/104102"], ["https://data.delijn.be/stops/203430", "https://data.delijn.be/stops/205939"], ["https://data.delijn.be/stops/501655", "https://data.delijn.be/stops/506165"], ["https://data.delijn.be/stops/302113", "https://data.delijn.be/stops/304140"], ["https://data.delijn.be/stops/502343", "https://data.delijn.be/stops/507348"], ["https://data.delijn.be/stops/405327", "https://data.delijn.be/stops/405348"], ["https://data.delijn.be/stops/303849", "https://data.delijn.be/stops/303961"], ["https://data.delijn.be/stops/407837", "https://data.delijn.be/stops/407850"], ["https://data.delijn.be/stops/105465", "https://data.delijn.be/stops/105470"], ["https://data.delijn.be/stops/307198", "https://data.delijn.be/stops/307200"], ["https://data.delijn.be/stops/206216", "https://data.delijn.be/stops/206904"], ["https://data.delijn.be/stops/304868", "https://data.delijn.be/stops/304869"], ["https://data.delijn.be/stops/208628", "https://data.delijn.be/stops/208629"], ["https://data.delijn.be/stops/103950", "https://data.delijn.be/stops/103955"], ["https://data.delijn.be/stops/201897", "https://data.delijn.be/stops/202001"], ["https://data.delijn.be/stops/101719", "https://data.delijn.be/stops/109667"], ["https://data.delijn.be/stops/200783", "https://data.delijn.be/stops/201019"], ["https://data.delijn.be/stops/304848", "https://data.delijn.be/stops/304849"], ["https://data.delijn.be/stops/106821", "https://data.delijn.be/stops/106822"], ["https://data.delijn.be/stops/307946", "https://data.delijn.be/stops/308065"], ["https://data.delijn.be/stops/102472", "https://data.delijn.be/stops/406849"], ["https://data.delijn.be/stops/302293", "https://data.delijn.be/stops/303506"], ["https://data.delijn.be/stops/404711", "https://data.delijn.be/stops/404754"], ["https://data.delijn.be/stops/407002", "https://data.delijn.be/stops/407003"], ["https://data.delijn.be/stops/208167", "https://data.delijn.be/stops/208176"], ["https://data.delijn.be/stops/407893", "https://data.delijn.be/stops/306055"], ["https://data.delijn.be/stops/103330", "https://data.delijn.be/stops/104362"], ["https://data.delijn.be/stops/400974", "https://data.delijn.be/stops/400975"], ["https://data.delijn.be/stops/400130", "https://data.delijn.be/stops/400132"], ["https://data.delijn.be/stops/205106", "https://data.delijn.be/stops/205620"], ["https://data.delijn.be/stops/205053", "https://data.delijn.be/stops/205054"], ["https://data.delijn.be/stops/109859", "https://data.delijn.be/stops/109894"], ["https://data.delijn.be/stops/201903", "https://data.delijn.be/stops/202513"], ["https://data.delijn.be/stops/202177", "https://data.delijn.be/stops/203497"], ["https://data.delijn.be/stops/400034", "https://data.delijn.be/stops/400035"], ["https://data.delijn.be/stops/206404", "https://data.delijn.be/stops/207404"], ["https://data.delijn.be/stops/408609", "https://data.delijn.be/stops/408772"], ["https://data.delijn.be/stops/206060", "https://data.delijn.be/stops/207061"], ["https://data.delijn.be/stops/406568", "https://data.delijn.be/stops/406693"], ["https://data.delijn.be/stops/403232", "https://data.delijn.be/stops/404180"], ["https://data.delijn.be/stops/402301", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/202922", "https://data.delijn.be/stops/203855"], ["https://data.delijn.be/stops/307421", "https://data.delijn.be/stops/307423"], ["https://data.delijn.be/stops/300688", "https://data.delijn.be/stops/300700"], ["https://data.delijn.be/stops/401165", "https://data.delijn.be/stops/407537"], ["https://data.delijn.be/stops/306067", "https://data.delijn.be/stops/307204"], ["https://data.delijn.be/stops/305482", "https://data.delijn.be/stops/305509"], ["https://data.delijn.be/stops/107019", "https://data.delijn.be/stops/107021"], ["https://data.delijn.be/stops/403973", "https://data.delijn.be/stops/406007"], ["https://data.delijn.be/stops/503108", "https://data.delijn.be/stops/504628"], ["https://data.delijn.be/stops/109189", "https://data.delijn.be/stops/109190"], ["https://data.delijn.be/stops/105554", "https://data.delijn.be/stops/105566"], ["https://data.delijn.be/stops/305765", "https://data.delijn.be/stops/305784"], ["https://data.delijn.be/stops/501745", "https://data.delijn.be/stops/590412"], ["https://data.delijn.be/stops/207301", "https://data.delijn.be/stops/207860"], ["https://data.delijn.be/stops/109593", "https://data.delijn.be/stops/109595"], ["https://data.delijn.be/stops/108112", "https://data.delijn.be/stops/108114"], ["https://data.delijn.be/stops/202252", "https://data.delijn.be/stops/203252"], ["https://data.delijn.be/stops/302464", "https://data.delijn.be/stops/302465"], ["https://data.delijn.be/stops/503322", "https://data.delijn.be/stops/503324"], ["https://data.delijn.be/stops/505143", "https://data.delijn.be/stops/505410"], ["https://data.delijn.be/stops/404160", "https://data.delijn.be/stops/404171"], ["https://data.delijn.be/stops/208629", "https://data.delijn.be/stops/209629"], ["https://data.delijn.be/stops/201763", "https://data.delijn.be/stops/201764"], ["https://data.delijn.be/stops/404886", "https://data.delijn.be/stops/404887"], ["https://data.delijn.be/stops/208746", "https://data.delijn.be/stops/208747"], ["https://data.delijn.be/stops/104521", "https://data.delijn.be/stops/104720"], ["https://data.delijn.be/stops/103322", "https://data.delijn.be/stops/105457"], ["https://data.delijn.be/stops/301052", "https://data.delijn.be/stops/301054"], ["https://data.delijn.be/stops/106912", "https://data.delijn.be/stops/107257"], ["https://data.delijn.be/stops/502485", "https://data.delijn.be/stops/502615"], ["https://data.delijn.be/stops/503375", "https://data.delijn.be/stops/503393"], ["https://data.delijn.be/stops/403765", "https://data.delijn.be/stops/403774"], ["https://data.delijn.be/stops/408126", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/403511", "https://data.delijn.be/stops/403528"], ["https://data.delijn.be/stops/102747", "https://data.delijn.be/stops/107403"], ["https://data.delijn.be/stops/402046", "https://data.delijn.be/stops/402340"], ["https://data.delijn.be/stops/102680", "https://data.delijn.be/stops/107765"], ["https://data.delijn.be/stops/405705", "https://data.delijn.be/stops/504255"], ["https://data.delijn.be/stops/104142", "https://data.delijn.be/stops/105742"], ["https://data.delijn.be/stops/200388", "https://data.delijn.be/stops/208716"], ["https://data.delijn.be/stops/206013", "https://data.delijn.be/stops/207013"], ["https://data.delijn.be/stops/503753", "https://data.delijn.be/stops/503762"], ["https://data.delijn.be/stops/203328", "https://data.delijn.be/stops/203329"], ["https://data.delijn.be/stops/105385", "https://data.delijn.be/stops/107035"], ["https://data.delijn.be/stops/304272", "https://data.delijn.be/stops/304279"], ["https://data.delijn.be/stops/503176", "https://data.delijn.be/stops/503239"], ["https://data.delijn.be/stops/305191", "https://data.delijn.be/stops/305200"], ["https://data.delijn.be/stops/504068", "https://data.delijn.be/stops/505109"], ["https://data.delijn.be/stops/301047", "https://data.delijn.be/stops/301072"], ["https://data.delijn.be/stops/502306", "https://data.delijn.be/stops/507306"], ["https://data.delijn.be/stops/304051", "https://data.delijn.be/stops/304070"], ["https://data.delijn.be/stops/301334", "https://data.delijn.be/stops/306146"], ["https://data.delijn.be/stops/202151", "https://data.delijn.be/stops/203151"], ["https://data.delijn.be/stops/208152", "https://data.delijn.be/stops/209152"], ["https://data.delijn.be/stops/101987", "https://data.delijn.be/stops/105400"], ["https://data.delijn.be/stops/504109", "https://data.delijn.be/stops/504446"], ["https://data.delijn.be/stops/502334", "https://data.delijn.be/stops/507281"], ["https://data.delijn.be/stops/503611", "https://data.delijn.be/stops/508611"], ["https://data.delijn.be/stops/409651", "https://data.delijn.be/stops/410047"], ["https://data.delijn.be/stops/200749", "https://data.delijn.be/stops/203620"], ["https://data.delijn.be/stops/503815", "https://data.delijn.be/stops/508814"], ["https://data.delijn.be/stops/109041", "https://data.delijn.be/stops/109083"], ["https://data.delijn.be/stops/109657", "https://data.delijn.be/stops/406505"], ["https://data.delijn.be/stops/301840", "https://data.delijn.be/stops/301852"], ["https://data.delijn.be/stops/508840", "https://data.delijn.be/stops/508856"], ["https://data.delijn.be/stops/408208", "https://data.delijn.be/stops/408914"], ["https://data.delijn.be/stops/407519", "https://data.delijn.be/stops/308240"], ["https://data.delijn.be/stops/204583", "https://data.delijn.be/stops/207391"], ["https://data.delijn.be/stops/209648", "https://data.delijn.be/stops/211111"], ["https://data.delijn.be/stops/202570", "https://data.delijn.be/stops/211033"], ["https://data.delijn.be/stops/200352", "https://data.delijn.be/stops/200353"], ["https://data.delijn.be/stops/105582", "https://data.delijn.be/stops/105584"], ["https://data.delijn.be/stops/202973", "https://data.delijn.be/stops/205075"], ["https://data.delijn.be/stops/106113", "https://data.delijn.be/stops/106115"], ["https://data.delijn.be/stops/404126", "https://data.delijn.be/stops/404149"], ["https://data.delijn.be/stops/305014", "https://data.delijn.be/stops/305035"], ["https://data.delijn.be/stops/305256", "https://data.delijn.be/stops/305274"], ["https://data.delijn.be/stops/109631", "https://data.delijn.be/stops/109634"], ["https://data.delijn.be/stops/102305", "https://data.delijn.be/stops/104595"], ["https://data.delijn.be/stops/401636", "https://data.delijn.be/stops/401639"], ["https://data.delijn.be/stops/206028", "https://data.delijn.be/stops/207028"], ["https://data.delijn.be/stops/109173", "https://data.delijn.be/stops/109232"], ["https://data.delijn.be/stops/305209", "https://data.delijn.be/stops/306931"], ["https://data.delijn.be/stops/305617", "https://data.delijn.be/stops/305619"], ["https://data.delijn.be/stops/108869", "https://data.delijn.be/stops/108873"], ["https://data.delijn.be/stops/107560", "https://data.delijn.be/stops/108155"], ["https://data.delijn.be/stops/301077", "https://data.delijn.be/stops/301078"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/504557"], ["https://data.delijn.be/stops/303400", "https://data.delijn.be/stops/303401"], ["https://data.delijn.be/stops/305680", "https://data.delijn.be/stops/305699"], ["https://data.delijn.be/stops/102072", "https://data.delijn.be/stops/106928"], ["https://data.delijn.be/stops/502735", "https://data.delijn.be/stops/507654"], ["https://data.delijn.be/stops/305461", "https://data.delijn.be/stops/305462"], ["https://data.delijn.be/stops/500230", "https://data.delijn.be/stops/590332"], ["https://data.delijn.be/stops/408391", "https://data.delijn.be/stops/308249"], ["https://data.delijn.be/stops/101915", "https://data.delijn.be/stops/108830"], ["https://data.delijn.be/stops/104638", "https://data.delijn.be/stops/108427"], ["https://data.delijn.be/stops/204410", "https://data.delijn.be/stops/205084"], ["https://data.delijn.be/stops/300316", "https://data.delijn.be/stops/307859"], ["https://data.delijn.be/stops/503886", "https://data.delijn.be/stops/505117"], ["https://data.delijn.be/stops/508155", "https://data.delijn.be/stops/508750"], ["https://data.delijn.be/stops/503080", "https://data.delijn.be/stops/503707"], ["https://data.delijn.be/stops/202766", "https://data.delijn.be/stops/203505"], ["https://data.delijn.be/stops/106032", "https://data.delijn.be/stops/106036"], ["https://data.delijn.be/stops/300061", "https://data.delijn.be/stops/306066"], ["https://data.delijn.be/stops/402407", "https://data.delijn.be/stops/402419"], ["https://data.delijn.be/stops/305696", "https://data.delijn.be/stops/305697"], ["https://data.delijn.be/stops/101593", "https://data.delijn.be/stops/105766"], ["https://data.delijn.be/stops/300087", "https://data.delijn.be/stops/306856"], ["https://data.delijn.be/stops/502314", "https://data.delijn.be/stops/507314"], ["https://data.delijn.be/stops/210314", "https://data.delijn.be/stops/211026"], ["https://data.delijn.be/stops/201860", "https://data.delijn.be/stops/211036"], ["https://data.delijn.be/stops/302575", "https://data.delijn.be/stops/305124"], ["https://data.delijn.be/stops/307623", "https://data.delijn.be/stops/308559"], ["https://data.delijn.be/stops/206789", "https://data.delijn.be/stops/209242"], ["https://data.delijn.be/stops/102506", "https://data.delijn.be/stops/400016"], ["https://data.delijn.be/stops/503143", "https://data.delijn.be/stops/503988"], ["https://data.delijn.be/stops/304304", "https://data.delijn.be/stops/304325"], ["https://data.delijn.be/stops/106366", "https://data.delijn.be/stops/106374"], ["https://data.delijn.be/stops/200451", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/206117", "https://data.delijn.be/stops/207117"], ["https://data.delijn.be/stops/400514", "https://data.delijn.be/stops/403826"], ["https://data.delijn.be/stops/207679", "https://data.delijn.be/stops/209403"], ["https://data.delijn.be/stops/204206", "https://data.delijn.be/stops/205094"], ["https://data.delijn.be/stops/503024", "https://data.delijn.be/stops/503028"], ["https://data.delijn.be/stops/508231", "https://data.delijn.be/stops/508239"], ["https://data.delijn.be/stops/305606", "https://data.delijn.be/stops/306204"], ["https://data.delijn.be/stops/303553", "https://data.delijn.be/stops/303559"], ["https://data.delijn.be/stops/101473", "https://data.delijn.be/stops/109268"], ["https://data.delijn.be/stops/105743", "https://data.delijn.be/stops/109855"], ["https://data.delijn.be/stops/502338", "https://data.delijn.be/stops/507338"], ["https://data.delijn.be/stops/105149", "https://data.delijn.be/stops/105177"], ["https://data.delijn.be/stops/402718", "https://data.delijn.be/stops/405995"], ["https://data.delijn.be/stops/207870", "https://data.delijn.be/stops/208347"], ["https://data.delijn.be/stops/503400", "https://data.delijn.be/stops/503442"], ["https://data.delijn.be/stops/408540", "https://data.delijn.be/stops/408567"], ["https://data.delijn.be/stops/206683", "https://data.delijn.be/stops/207975"], ["https://data.delijn.be/stops/106257", "https://data.delijn.be/stops/106260"], ["https://data.delijn.be/stops/300887", "https://data.delijn.be/stops/333234"], ["https://data.delijn.be/stops/502263", "https://data.delijn.be/stops/502920"], ["https://data.delijn.be/stops/409792", "https://data.delijn.be/stops/409793"], ["https://data.delijn.be/stops/202216", "https://data.delijn.be/stops/210121"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/204090"], ["https://data.delijn.be/stops/207423", "https://data.delijn.be/stops/207685"], ["https://data.delijn.be/stops/400907", "https://data.delijn.be/stops/408473"], ["https://data.delijn.be/stops/200929", "https://data.delijn.be/stops/505612"], ["https://data.delijn.be/stops/101929", "https://data.delijn.be/stops/103994"], ["https://data.delijn.be/stops/204929", "https://data.delijn.be/stops/209725"], ["https://data.delijn.be/stops/107321", "https://data.delijn.be/stops/108818"], ["https://data.delijn.be/stops/506332", "https://data.delijn.be/stops/506734"], ["https://data.delijn.be/stops/206046", "https://data.delijn.be/stops/206058"], ["https://data.delijn.be/stops/505214", "https://data.delijn.be/stops/508857"], ["https://data.delijn.be/stops/403776", "https://data.delijn.be/stops/403777"], ["https://data.delijn.be/stops/402290", "https://data.delijn.be/stops/402292"], ["https://data.delijn.be/stops/505570", "https://data.delijn.be/stops/508793"], ["https://data.delijn.be/stops/304107", "https://data.delijn.be/stops/304114"], ["https://data.delijn.be/stops/300029", "https://data.delijn.be/stops/300857"], ["https://data.delijn.be/stops/401756", "https://data.delijn.be/stops/406137"], ["https://data.delijn.be/stops/301237", "https://data.delijn.be/stops/307907"], ["https://data.delijn.be/stops/505187", "https://data.delijn.be/stops/505189"], ["https://data.delijn.be/stops/208766", "https://data.delijn.be/stops/209838"], ["https://data.delijn.be/stops/107236", "https://data.delijn.be/stops/107242"], ["https://data.delijn.be/stops/104094", "https://data.delijn.be/stops/104097"], ["https://data.delijn.be/stops/408318", "https://data.delijn.be/stops/408337"], ["https://data.delijn.be/stops/204690", "https://data.delijn.be/stops/205690"], ["https://data.delijn.be/stops/308158", "https://data.delijn.be/stops/308179"], ["https://data.delijn.be/stops/505253", "https://data.delijn.be/stops/508931"], ["https://data.delijn.be/stops/206336", "https://data.delijn.be/stops/207697"], ["https://data.delijn.be/stops/200357", "https://data.delijn.be/stops/202651"], ["https://data.delijn.be/stops/201275", "https://data.delijn.be/stops/201374"], ["https://data.delijn.be/stops/202948", "https://data.delijn.be/stops/203339"], ["https://data.delijn.be/stops/106733", "https://data.delijn.be/stops/106735"], ["https://data.delijn.be/stops/502023", "https://data.delijn.be/stops/507023"], ["https://data.delijn.be/stops/400360", "https://data.delijn.be/stops/400416"], ["https://data.delijn.be/stops/408378", "https://data.delijn.be/stops/408380"], ["https://data.delijn.be/stops/200530", "https://data.delijn.be/stops/211079"], ["https://data.delijn.be/stops/301000", "https://data.delijn.be/stops/306049"], ["https://data.delijn.be/stops/201055", "https://data.delijn.be/stops/211003"], ["https://data.delijn.be/stops/200477", "https://data.delijn.be/stops/202931"], ["https://data.delijn.be/stops/200953", "https://data.delijn.be/stops/202395"], ["https://data.delijn.be/stops/105121", "https://data.delijn.be/stops/105122"], ["https://data.delijn.be/stops/202687", "https://data.delijn.be/stops/203040"], ["https://data.delijn.be/stops/408870", "https://data.delijn.be/stops/408871"], ["https://data.delijn.be/stops/301330", "https://data.delijn.be/stops/301397"], ["https://data.delijn.be/stops/303984", "https://data.delijn.be/stops/304295"], ["https://data.delijn.be/stops/402024", "https://data.delijn.be/stops/403880"], ["https://data.delijn.be/stops/304329", "https://data.delijn.be/stops/304331"], ["https://data.delijn.be/stops/304140", "https://data.delijn.be/stops/304170"], ["https://data.delijn.be/stops/404236", "https://data.delijn.be/stops/404237"], ["https://data.delijn.be/stops/300336", "https://data.delijn.be/stops/300337"], ["https://data.delijn.be/stops/206679", "https://data.delijn.be/stops/209103"], ["https://data.delijn.be/stops/406042", "https://data.delijn.be/stops/406062"], ["https://data.delijn.be/stops/303291", "https://data.delijn.be/stops/306971"], ["https://data.delijn.be/stops/502631", "https://data.delijn.be/stops/507451"], ["https://data.delijn.be/stops/502425", "https://data.delijn.be/stops/507425"], ["https://data.delijn.be/stops/204420", "https://data.delijn.be/stops/205420"], ["https://data.delijn.be/stops/108294", "https://data.delijn.be/stops/109735"], ["https://data.delijn.be/stops/206323", "https://data.delijn.be/stops/206483"], ["https://data.delijn.be/stops/106641", "https://data.delijn.be/stops/106642"], ["https://data.delijn.be/stops/206487", "https://data.delijn.be/stops/206488"], ["https://data.delijn.be/stops/408087", "https://data.delijn.be/stops/408139"], ["https://data.delijn.be/stops/303058", "https://data.delijn.be/stops/303146"], ["https://data.delijn.be/stops/503704", "https://data.delijn.be/stops/508701"], ["https://data.delijn.be/stops/209468", "https://data.delijn.be/stops/209675"], ["https://data.delijn.be/stops/302979", "https://data.delijn.be/stops/306370"], ["https://data.delijn.be/stops/300400", "https://data.delijn.be/stops/300401"], ["https://data.delijn.be/stops/306341", "https://data.delijn.be/stops/307819"], ["https://data.delijn.be/stops/105477", "https://data.delijn.be/stops/105478"], ["https://data.delijn.be/stops/208673", "https://data.delijn.be/stops/209453"], ["https://data.delijn.be/stops/211022", "https://data.delijn.be/stops/218002"], ["https://data.delijn.be/stops/402138", "https://data.delijn.be/stops/402155"], ["https://data.delijn.be/stops/105579", "https://data.delijn.be/stops/106358"], ["https://data.delijn.be/stops/102870", "https://data.delijn.be/stops/108490"], ["https://data.delijn.be/stops/502414", "https://data.delijn.be/stops/502428"], ["https://data.delijn.be/stops/200628", "https://data.delijn.be/stops/201628"], ["https://data.delijn.be/stops/107458", "https://data.delijn.be/stops/107462"], ["https://data.delijn.be/stops/505396", "https://data.delijn.be/stops/508032"], ["https://data.delijn.be/stops/502003", "https://data.delijn.be/stops/505024"], ["https://data.delijn.be/stops/405894", "https://data.delijn.be/stops/307834"], ["https://data.delijn.be/stops/204991", "https://data.delijn.be/stops/208782"], ["https://data.delijn.be/stops/108788", "https://data.delijn.be/stops/108791"], ["https://data.delijn.be/stops/207447", "https://data.delijn.be/stops/207448"], ["https://data.delijn.be/stops/218024", "https://data.delijn.be/stops/218025"], ["https://data.delijn.be/stops/503844", "https://data.delijn.be/stops/504660"], ["https://data.delijn.be/stops/502093", "https://data.delijn.be/stops/502152"], ["https://data.delijn.be/stops/102655", "https://data.delijn.be/stops/108435"], ["https://data.delijn.be/stops/505057", "https://data.delijn.be/stops/505647"], ["https://data.delijn.be/stops/500026", "https://data.delijn.be/stops/507369"], ["https://data.delijn.be/stops/303840", "https://data.delijn.be/stops/303862"], ["https://data.delijn.be/stops/202931", "https://data.delijn.be/stops/210086"], ["https://data.delijn.be/stops/404167", "https://data.delijn.be/stops/404198"], ["https://data.delijn.be/stops/201530", "https://data.delijn.be/stops/211089"], ["https://data.delijn.be/stops/305175", "https://data.delijn.be/stops/308904"], ["https://data.delijn.be/stops/105856", "https://data.delijn.be/stops/105858"], ["https://data.delijn.be/stops/405504", "https://data.delijn.be/stops/408446"], ["https://data.delijn.be/stops/401777", "https://data.delijn.be/stops/401778"], ["https://data.delijn.be/stops/305502", "https://data.delijn.be/stops/305503"], ["https://data.delijn.be/stops/503854", "https://data.delijn.be/stops/503858"], ["https://data.delijn.be/stops/508094", "https://data.delijn.be/stops/508841"], ["https://data.delijn.be/stops/207370", "https://data.delijn.be/stops/207371"], ["https://data.delijn.be/stops/306847", "https://data.delijn.be/stops/307356"], ["https://data.delijn.be/stops/505056", "https://data.delijn.be/stops/505655"], ["https://data.delijn.be/stops/504255", "https://data.delijn.be/stops/504305"], ["https://data.delijn.be/stops/106866", "https://data.delijn.be/stops/106867"], ["https://data.delijn.be/stops/202638", "https://data.delijn.be/stops/204598"], ["https://data.delijn.be/stops/202013", "https://data.delijn.be/stops/202014"], ["https://data.delijn.be/stops/507027", "https://data.delijn.be/stops/507041"], ["https://data.delijn.be/stops/506334", "https://data.delijn.be/stops/506588"], ["https://data.delijn.be/stops/106114", "https://data.delijn.be/stops/106116"], ["https://data.delijn.be/stops/202603", "https://data.delijn.be/stops/203602"], ["https://data.delijn.be/stops/106088", "https://data.delijn.be/stops/106091"], ["https://data.delijn.be/stops/409599", "https://data.delijn.be/stops/409600"], ["https://data.delijn.be/stops/505245", "https://data.delijn.be/stops/505696"], ["https://data.delijn.be/stops/201147", "https://data.delijn.be/stops/201567"], ["https://data.delijn.be/stops/203794", "https://data.delijn.be/stops/203797"], ["https://data.delijn.be/stops/405702", "https://data.delijn.be/stops/405715"], ["https://data.delijn.be/stops/206279", "https://data.delijn.be/stops/207279"], ["https://data.delijn.be/stops/101946", "https://data.delijn.be/stops/108739"], ["https://data.delijn.be/stops/304883", "https://data.delijn.be/stops/308543"], ["https://data.delijn.be/stops/206414", "https://data.delijn.be/stops/207600"], ["https://data.delijn.be/stops/209675", "https://data.delijn.be/stops/209676"], ["https://data.delijn.be/stops/303471", "https://data.delijn.be/stops/304175"], ["https://data.delijn.be/stops/109690", "https://data.delijn.be/stops/109692"], ["https://data.delijn.be/stops/502407", "https://data.delijn.be/stops/507408"], ["https://data.delijn.be/stops/300049", "https://data.delijn.be/stops/307436"], ["https://data.delijn.be/stops/204195", "https://data.delijn.be/stops/205194"], ["https://data.delijn.be/stops/400077", "https://data.delijn.be/stops/406361"], ["https://data.delijn.be/stops/202380", "https://data.delijn.be/stops/202381"], ["https://data.delijn.be/stops/208337", "https://data.delijn.be/stops/209115"], ["https://data.delijn.be/stops/503688", "https://data.delijn.be/stops/508876"], ["https://data.delijn.be/stops/409062", "https://data.delijn.be/stops/409121"], ["https://data.delijn.be/stops/204524", "https://data.delijn.be/stops/205524"], ["https://data.delijn.be/stops/501147", "https://data.delijn.be/stops/509833"], ["https://data.delijn.be/stops/106878", "https://data.delijn.be/stops/106882"], ["https://data.delijn.be/stops/407399", "https://data.delijn.be/stops/407405"], ["https://data.delijn.be/stops/508271", "https://data.delijn.be/stops/508814"], ["https://data.delijn.be/stops/406656", "https://data.delijn.be/stops/406657"], ["https://data.delijn.be/stops/501053", "https://data.delijn.be/stops/501059"], ["https://data.delijn.be/stops/408224", "https://data.delijn.be/stops/408361"], ["https://data.delijn.be/stops/108962", "https://data.delijn.be/stops/108964"], ["https://data.delijn.be/stops/108733", "https://data.delijn.be/stops/109282"], ["https://data.delijn.be/stops/105761", "https://data.delijn.be/stops/105767"], ["https://data.delijn.be/stops/403349", "https://data.delijn.be/stops/410274"], ["https://data.delijn.be/stops/101083", "https://data.delijn.be/stops/104461"], ["https://data.delijn.be/stops/407678", "https://data.delijn.be/stops/407680"], ["https://data.delijn.be/stops/404590", "https://data.delijn.be/stops/404594"], ["https://data.delijn.be/stops/304646", "https://data.delijn.be/stops/304657"], ["https://data.delijn.be/stops/304311", "https://data.delijn.be/stops/304321"], ["https://data.delijn.be/stops/505669", "https://data.delijn.be/stops/508691"], ["https://data.delijn.be/stops/409590", "https://data.delijn.be/stops/409592"], ["https://data.delijn.be/stops/207428", "https://data.delijn.be/stops/209712"], ["https://data.delijn.be/stops/304156", "https://data.delijn.be/stops/304159"], ["https://data.delijn.be/stops/508553", "https://data.delijn.be/stops/508556"], ["https://data.delijn.be/stops/101799", "https://data.delijn.be/stops/300668"], ["https://data.delijn.be/stops/503154", "https://data.delijn.be/stops/505201"], ["https://data.delijn.be/stops/206122", "https://data.delijn.be/stops/207139"], ["https://data.delijn.be/stops/407653", "https://data.delijn.be/stops/409626"], ["https://data.delijn.be/stops/503276", "https://data.delijn.be/stops/503277"], ["https://data.delijn.be/stops/410173", "https://data.delijn.be/stops/410177"], ["https://data.delijn.be/stops/401758", "https://data.delijn.be/stops/409406"], ["https://data.delijn.be/stops/304385", "https://data.delijn.be/stops/304386"], ["https://data.delijn.be/stops/206113", "https://data.delijn.be/stops/207116"], ["https://data.delijn.be/stops/107145", "https://data.delijn.be/stops/109853"], ["https://data.delijn.be/stops/505522", "https://data.delijn.be/stops/505622"], ["https://data.delijn.be/stops/502012", "https://data.delijn.be/stops/507916"], ["https://data.delijn.be/stops/504352", "https://data.delijn.be/stops/509352"], ["https://data.delijn.be/stops/103097", "https://data.delijn.be/stops/107180"], ["https://data.delijn.be/stops/206260", "https://data.delijn.be/stops/206261"], ["https://data.delijn.be/stops/304261", "https://data.delijn.be/stops/306662"], ["https://data.delijn.be/stops/501606", "https://data.delijn.be/stops/501609"], ["https://data.delijn.be/stops/206707", "https://data.delijn.be/stops/207612"], ["https://data.delijn.be/stops/302953", "https://data.delijn.be/stops/302954"], ["https://data.delijn.be/stops/107209", "https://data.delijn.be/stops/107210"], ["https://data.delijn.be/stops/209574", "https://data.delijn.be/stops/307313"], ["https://data.delijn.be/stops/202951", "https://data.delijn.be/stops/203950"], ["https://data.delijn.be/stops/206800", "https://data.delijn.be/stops/306367"], ["https://data.delijn.be/stops/203377", "https://data.delijn.be/stops/203378"], ["https://data.delijn.be/stops/305906", "https://data.delijn.be/stops/308876"], ["https://data.delijn.be/stops/102394", "https://data.delijn.be/stops/107092"], ["https://data.delijn.be/stops/504001", "https://data.delijn.be/stops/509002"], ["https://data.delijn.be/stops/204093", "https://data.delijn.be/stops/204795"], ["https://data.delijn.be/stops/505234", "https://data.delijn.be/stops/505775"], ["https://data.delijn.be/stops/102436", "https://data.delijn.be/stops/107818"], ["https://data.delijn.be/stops/400854", "https://data.delijn.be/stops/409651"], ["https://data.delijn.be/stops/207184", "https://data.delijn.be/stops/308565"], ["https://data.delijn.be/stops/401784", "https://data.delijn.be/stops/406093"], ["https://data.delijn.be/stops/400248", "https://data.delijn.be/stops/400934"], ["https://data.delijn.be/stops/303440", "https://data.delijn.be/stops/304225"], ["https://data.delijn.be/stops/206709", "https://data.delijn.be/stops/206970"], ["https://data.delijn.be/stops/104593", "https://data.delijn.be/stops/108033"], ["https://data.delijn.be/stops/104899", "https://data.delijn.be/stops/107546"], ["https://data.delijn.be/stops/502803", "https://data.delijn.be/stops/507483"], ["https://data.delijn.be/stops/204055", "https://data.delijn.be/stops/205055"], ["https://data.delijn.be/stops/300259", "https://data.delijn.be/stops/300283"], ["https://data.delijn.be/stops/204351", "https://data.delijn.be/stops/205708"], ["https://data.delijn.be/stops/101022", "https://data.delijn.be/stops/101027"], ["https://data.delijn.be/stops/201947", "https://data.delijn.be/stops/202454"], ["https://data.delijn.be/stops/408922", "https://data.delijn.be/stops/408924"], ["https://data.delijn.be/stops/208889", "https://data.delijn.be/stops/211854"], ["https://data.delijn.be/stops/204073", "https://data.delijn.be/stops/204237"], ["https://data.delijn.be/stops/504872", "https://data.delijn.be/stops/509873"], ["https://data.delijn.be/stops/103478", "https://data.delijn.be/stops/109137"], ["https://data.delijn.be/stops/503216", "https://data.delijn.be/stops/508186"], ["https://data.delijn.be/stops/303401", "https://data.delijn.be/stops/303792"], ["https://data.delijn.be/stops/503620", "https://data.delijn.be/stops/505526"], ["https://data.delijn.be/stops/302888", "https://data.delijn.be/stops/302903"], ["https://data.delijn.be/stops/101534", "https://data.delijn.be/stops/108752"], ["https://data.delijn.be/stops/300392", "https://data.delijn.be/stops/308761"], ["https://data.delijn.be/stops/203810", "https://data.delijn.be/stops/208737"], ["https://data.delijn.be/stops/508057", "https://data.delijn.be/stops/509844"], ["https://data.delijn.be/stops/404681", "https://data.delijn.be/stops/404682"], ["https://data.delijn.be/stops/503445", "https://data.delijn.be/stops/508406"], ["https://data.delijn.be/stops/500042", "https://data.delijn.be/stops/500053"], ["https://data.delijn.be/stops/204378", "https://data.delijn.be/stops/205377"], ["https://data.delijn.be/stops/103715", "https://data.delijn.be/stops/104145"], ["https://data.delijn.be/stops/504422", "https://data.delijn.be/stops/504696"], ["https://data.delijn.be/stops/405610", "https://data.delijn.be/stops/407157"], ["https://data.delijn.be/stops/404764", "https://data.delijn.be/stops/404829"], ["https://data.delijn.be/stops/501031", "https://data.delijn.be/stops/501041"], ["https://data.delijn.be/stops/103168", "https://data.delijn.be/stops/108673"], ["https://data.delijn.be/stops/203335", "https://data.delijn.be/stops/203336"], ["https://data.delijn.be/stops/107392", "https://data.delijn.be/stops/107393"], ["https://data.delijn.be/stops/406774", "https://data.delijn.be/stops/406788"], ["https://data.delijn.be/stops/205237", "https://data.delijn.be/stops/207312"], ["https://data.delijn.be/stops/109666", "https://data.delijn.be/stops/403860"], ["https://data.delijn.be/stops/502554", "https://data.delijn.be/stops/507556"], ["https://data.delijn.be/stops/408684", "https://data.delijn.be/stops/408689"], ["https://data.delijn.be/stops/206816", "https://data.delijn.be/stops/207816"], ["https://data.delijn.be/stops/208715", "https://data.delijn.be/stops/210004"], ["https://data.delijn.be/stops/107446", "https://data.delijn.be/stops/107447"], ["https://data.delijn.be/stops/107111", "https://data.delijn.be/stops/107112"], ["https://data.delijn.be/stops/308495", "https://data.delijn.be/stops/308500"], ["https://data.delijn.be/stops/101811", "https://data.delijn.be/stops/108131"], ["https://data.delijn.be/stops/105496", "https://data.delijn.be/stops/105498"], ["https://data.delijn.be/stops/206884", "https://data.delijn.be/stops/207916"], ["https://data.delijn.be/stops/402872", "https://data.delijn.be/stops/404006"], ["https://data.delijn.be/stops/505092", "https://data.delijn.be/stops/505581"], ["https://data.delijn.be/stops/507721", "https://data.delijn.be/stops/507722"], ["https://data.delijn.be/stops/303191", "https://data.delijn.be/stops/304915"], ["https://data.delijn.be/stops/401435", "https://data.delijn.be/stops/410147"], ["https://data.delijn.be/stops/206971", "https://data.delijn.be/stops/207970"], ["https://data.delijn.be/stops/206204", "https://data.delijn.be/stops/207687"], ["https://data.delijn.be/stops/101019", "https://data.delijn.be/stops/108355"], ["https://data.delijn.be/stops/204919", "https://data.delijn.be/stops/205910"], ["https://data.delijn.be/stops/505423", "https://data.delijn.be/stops/508808"], ["https://data.delijn.be/stops/405106", "https://data.delijn.be/stops/405107"], ["https://data.delijn.be/stops/109508", "https://data.delijn.be/stops/109510"], ["https://data.delijn.be/stops/102209", "https://data.delijn.be/stops/107233"], ["https://data.delijn.be/stops/400455", "https://data.delijn.be/stops/400467"], ["https://data.delijn.be/stops/300705", "https://data.delijn.be/stops/308065"], ["https://data.delijn.be/stops/105888", "https://data.delijn.be/stops/105889"], ["https://data.delijn.be/stops/208436", "https://data.delijn.be/stops/209437"], ["https://data.delijn.be/stops/202350", "https://data.delijn.be/stops/204912"], ["https://data.delijn.be/stops/505940", "https://data.delijn.be/stops/509077"], ["https://data.delijn.be/stops/303812", "https://data.delijn.be/stops/303870"], ["https://data.delijn.be/stops/508017", "https://data.delijn.be/stops/509817"], ["https://data.delijn.be/stops/201645", "https://data.delijn.be/stops/201646"], ["https://data.delijn.be/stops/300681", "https://data.delijn.be/stops/305960"], ["https://data.delijn.be/stops/300179", "https://data.delijn.be/stops/300213"], ["https://data.delijn.be/stops/505068", "https://data.delijn.be/stops/505069"], ["https://data.delijn.be/stops/301583", "https://data.delijn.be/stops/301585"], ["https://data.delijn.be/stops/406332", "https://data.delijn.be/stops/407099"], ["https://data.delijn.be/stops/508193", "https://data.delijn.be/stops/508216"], ["https://data.delijn.be/stops/206364", "https://data.delijn.be/stops/206365"], ["https://data.delijn.be/stops/106310", "https://data.delijn.be/stops/106312"], ["https://data.delijn.be/stops/202117", "https://data.delijn.be/stops/211043"], ["https://data.delijn.be/stops/106097", "https://data.delijn.be/stops/106145"], ["https://data.delijn.be/stops/502188", "https://data.delijn.be/stops/507188"], ["https://data.delijn.be/stops/207791", "https://data.delijn.be/stops/208408"], ["https://data.delijn.be/stops/401389", "https://data.delijn.be/stops/401526"], ["https://data.delijn.be/stops/304352", "https://data.delijn.be/stops/304356"], ["https://data.delijn.be/stops/504519", "https://data.delijn.be/stops/505803"], ["https://data.delijn.be/stops/402421", "https://data.delijn.be/stops/402431"], ["https://data.delijn.be/stops/101154", "https://data.delijn.be/stops/103307"], ["https://data.delijn.be/stops/200967", "https://data.delijn.be/stops/209663"], ["https://data.delijn.be/stops/408361", "https://data.delijn.be/stops/408914"], ["https://data.delijn.be/stops/206521", "https://data.delijn.be/stops/207876"], ["https://data.delijn.be/stops/400894", "https://data.delijn.be/stops/400981"], ["https://data.delijn.be/stops/301044", "https://data.delijn.be/stops/306690"], ["https://data.delijn.be/stops/203438", "https://data.delijn.be/stops/203717"], ["https://data.delijn.be/stops/206585", "https://data.delijn.be/stops/207841"], ["https://data.delijn.be/stops/101462", "https://data.delijn.be/stops/109279"], ["https://data.delijn.be/stops/109054", "https://data.delijn.be/stops/109068"], ["https://data.delijn.be/stops/401479", "https://data.delijn.be/stops/401580"], ["https://data.delijn.be/stops/501248", "https://data.delijn.be/stops/506774"], ["https://data.delijn.be/stops/202224", "https://data.delijn.be/stops/203215"], ["https://data.delijn.be/stops/502289", "https://data.delijn.be/stops/509893"], ["https://data.delijn.be/stops/200822", "https://data.delijn.be/stops/200865"], ["https://data.delijn.be/stops/105894", "https://data.delijn.be/stops/105896"], ["https://data.delijn.be/stops/405792", "https://data.delijn.be/stops/405889"], ["https://data.delijn.be/stops/505629", "https://data.delijn.be/stops/505633"], ["https://data.delijn.be/stops/402252", "https://data.delijn.be/stops/402376"], ["https://data.delijn.be/stops/200729", "https://data.delijn.be/stops/203592"], ["https://data.delijn.be/stops/303556", "https://data.delijn.be/stops/304131"], ["https://data.delijn.be/stops/201157", "https://data.delijn.be/stops/203359"], ["https://data.delijn.be/stops/104732", "https://data.delijn.be/stops/204271"], ["https://data.delijn.be/stops/501537", "https://data.delijn.be/stops/501540"], ["https://data.delijn.be/stops/109689", "https://data.delijn.be/stops/109692"], ["https://data.delijn.be/stops/400885", "https://data.delijn.be/stops/409614"], ["https://data.delijn.be/stops/205498", "https://data.delijn.be/stops/205596"], ["https://data.delijn.be/stops/101492", "https://data.delijn.be/stops/101948"], ["https://data.delijn.be/stops/307330", "https://data.delijn.be/stops/308157"], ["https://data.delijn.be/stops/106325", "https://data.delijn.be/stops/106328"], ["https://data.delijn.be/stops/503402", "https://data.delijn.be/stops/509789"], ["https://data.delijn.be/stops/305511", "https://data.delijn.be/stops/305522"], ["https://data.delijn.be/stops/405779", "https://data.delijn.be/stops/409422"], ["https://data.delijn.be/stops/101932", "https://data.delijn.be/stops/109902"], ["https://data.delijn.be/stops/302303", "https://data.delijn.be/stops/302322"], ["https://data.delijn.be/stops/404486", "https://data.delijn.be/stops/404508"], ["https://data.delijn.be/stops/104043", "https://data.delijn.be/stops/108413"], ["https://data.delijn.be/stops/103537", "https://data.delijn.be/stops/106723"], ["https://data.delijn.be/stops/405790", "https://data.delijn.be/stops/409889"], ["https://data.delijn.be/stops/301984", "https://data.delijn.be/stops/301985"], ["https://data.delijn.be/stops/403722", "https://data.delijn.be/stops/404062"], ["https://data.delijn.be/stops/405750", "https://data.delijn.be/stops/408349"], ["https://data.delijn.be/stops/400709", "https://data.delijn.be/stops/409511"], ["https://data.delijn.be/stops/400029", "https://data.delijn.be/stops/400306"], ["https://data.delijn.be/stops/302284", "https://data.delijn.be/stops/302285"], ["https://data.delijn.be/stops/201343", "https://data.delijn.be/stops/211009"], ["https://data.delijn.be/stops/300719", "https://data.delijn.be/stops/300721"], ["https://data.delijn.be/stops/209167", "https://data.delijn.be/stops/209176"], ["https://data.delijn.be/stops/104510", "https://data.delijn.be/stops/105120"], ["https://data.delijn.be/stops/200530", "https://data.delijn.be/stops/201530"], ["https://data.delijn.be/stops/504156", "https://data.delijn.be/stops/509156"], ["https://data.delijn.be/stops/304110", "https://data.delijn.be/stops/304111"], ["https://data.delijn.be/stops/204979", "https://data.delijn.be/stops/209161"], ["https://data.delijn.be/stops/502506", "https://data.delijn.be/stops/507492"], ["https://data.delijn.be/stops/400918", "https://data.delijn.be/stops/400970"], ["https://data.delijn.be/stops/403319", "https://data.delijn.be/stops/403324"], ["https://data.delijn.be/stops/305294", "https://data.delijn.be/stops/305905"], ["https://data.delijn.be/stops/108071", "https://data.delijn.be/stops/108459"], ["https://data.delijn.be/stops/400605", "https://data.delijn.be/stops/401997"], ["https://data.delijn.be/stops/503995", "https://data.delijn.be/stops/508396"], ["https://data.delijn.be/stops/503772", "https://data.delijn.be/stops/508332"], ["https://data.delijn.be/stops/109989", "https://data.delijn.be/stops/109997"], ["https://data.delijn.be/stops/106867", "https://data.delijn.be/stops/106869"], ["https://data.delijn.be/stops/302988", "https://data.delijn.be/stops/308674"], ["https://data.delijn.be/stops/405530", "https://data.delijn.be/stops/407285"], ["https://data.delijn.be/stops/204046", "https://data.delijn.be/stops/205518"], ["https://data.delijn.be/stops/101905", "https://data.delijn.be/stops/102807"], ["https://data.delijn.be/stops/208212", "https://data.delijn.be/stops/209206"], ["https://data.delijn.be/stops/107277", "https://data.delijn.be/stops/107278"], ["https://data.delijn.be/stops/204341", "https://data.delijn.be/stops/204510"], ["https://data.delijn.be/stops/505416", "https://data.delijn.be/stops/507367"], ["https://data.delijn.be/stops/102462", "https://data.delijn.be/stops/400411"], ["https://data.delijn.be/stops/102461", "https://data.delijn.be/stops/400412"], ["https://data.delijn.be/stops/102880", "https://data.delijn.be/stops/204611"], ["https://data.delijn.be/stops/102825", "https://data.delijn.be/stops/104280"], ["https://data.delijn.be/stops/200104", "https://data.delijn.be/stops/200363"], ["https://data.delijn.be/stops/402855", "https://data.delijn.be/stops/409239"], ["https://data.delijn.be/stops/504783", "https://data.delijn.be/stops/508516"], ["https://data.delijn.be/stops/200682", "https://data.delijn.be/stops/200694"], ["https://data.delijn.be/stops/501070", "https://data.delijn.be/stops/506380"], ["https://data.delijn.be/stops/406614", "https://data.delijn.be/stops/406638"], ["https://data.delijn.be/stops/405280", "https://data.delijn.be/stops/405293"], ["https://data.delijn.be/stops/201260", "https://data.delijn.be/stops/202452"], ["https://data.delijn.be/stops/301827", "https://data.delijn.be/stops/308603"], ["https://data.delijn.be/stops/106773", "https://data.delijn.be/stops/106774"], ["https://data.delijn.be/stops/507047", "https://data.delijn.be/stops/507048"], ["https://data.delijn.be/stops/105188", "https://data.delijn.be/stops/108890"], ["https://data.delijn.be/stops/308535", "https://data.delijn.be/stops/308693"], ["https://data.delijn.be/stops/102689", "https://data.delijn.be/stops/105083"], ["https://data.delijn.be/stops/402392", "https://data.delijn.be/stops/402395"], ["https://data.delijn.be/stops/201897", "https://data.delijn.be/stops/202492"], ["https://data.delijn.be/stops/305428", "https://data.delijn.be/stops/305433"], ["https://data.delijn.be/stops/506265", "https://data.delijn.be/stops/506474"], ["https://data.delijn.be/stops/402011", "https://data.delijn.be/stops/407532"], ["https://data.delijn.be/stops/300052", "https://data.delijn.be/stops/300065"], ["https://data.delijn.be/stops/102260", "https://data.delijn.be/stops/107500"], ["https://data.delijn.be/stops/300366", "https://data.delijn.be/stops/307726"], ["https://data.delijn.be/stops/303417", "https://data.delijn.be/stops/303425"], ["https://data.delijn.be/stops/403906", "https://data.delijn.be/stops/403915"], ["https://data.delijn.be/stops/203223", "https://data.delijn.be/stops/204079"], ["https://data.delijn.be/stops/103528", "https://data.delijn.be/stops/103531"], ["https://data.delijn.be/stops/206977", "https://data.delijn.be/stops/216016"], ["https://data.delijn.be/stops/201930", "https://data.delijn.be/stops/210047"], ["https://data.delijn.be/stops/503078", "https://data.delijn.be/stops/503994"], ["https://data.delijn.be/stops/304096", "https://data.delijn.be/stops/306000"], ["https://data.delijn.be/stops/102518", "https://data.delijn.be/stops/406499"], ["https://data.delijn.be/stops/102872", "https://data.delijn.be/stops/105457"], ["https://data.delijn.be/stops/108711", "https://data.delijn.be/stops/108856"], ["https://data.delijn.be/stops/106991", "https://data.delijn.be/stops/106994"], ["https://data.delijn.be/stops/502924", "https://data.delijn.be/stops/505317"], ["https://data.delijn.be/stops/302037", "https://data.delijn.be/stops/303894"], ["https://data.delijn.be/stops/501066", "https://data.delijn.be/stops/501074"], ["https://data.delijn.be/stops/303422", "https://data.delijn.be/stops/306948"], ["https://data.delijn.be/stops/102642", "https://data.delijn.be/stops/102643"], ["https://data.delijn.be/stops/301872", "https://data.delijn.be/stops/303166"], ["https://data.delijn.be/stops/300392", "https://data.delijn.be/stops/306315"], ["https://data.delijn.be/stops/502250", "https://data.delijn.be/stops/502252"], ["https://data.delijn.be/stops/300329", "https://data.delijn.be/stops/304440"], ["https://data.delijn.be/stops/401013", "https://data.delijn.be/stops/401017"], ["https://data.delijn.be/stops/104639", "https://data.delijn.be/stops/108428"], ["https://data.delijn.be/stops/407404", "https://data.delijn.be/stops/409873"], ["https://data.delijn.be/stops/503616", "https://data.delijn.be/stops/508616"], ["https://data.delijn.be/stops/207677", "https://data.delijn.be/stops/208201"], ["https://data.delijn.be/stops/401215", "https://data.delijn.be/stops/401275"], ["https://data.delijn.be/stops/305875", "https://data.delijn.be/stops/308422"], ["https://data.delijn.be/stops/108635", "https://data.delijn.be/stops/109772"], ["https://data.delijn.be/stops/401459", "https://data.delijn.be/stops/406888"], ["https://data.delijn.be/stops/205649", "https://data.delijn.be/stops/205695"], ["https://data.delijn.be/stops/107923", "https://data.delijn.be/stops/107927"], ["https://data.delijn.be/stops/405536", "https://data.delijn.be/stops/308117"], ["https://data.delijn.be/stops/503242", "https://data.delijn.be/stops/508244"], ["https://data.delijn.be/stops/107737", "https://data.delijn.be/stops/107739"], ["https://data.delijn.be/stops/200960", "https://data.delijn.be/stops/201960"], ["https://data.delijn.be/stops/103168", "https://data.delijn.be/stops/109932"], ["https://data.delijn.be/stops/300425", "https://data.delijn.be/stops/300426"], ["https://data.delijn.be/stops/307219", "https://data.delijn.be/stops/307220"], ["https://data.delijn.be/stops/202441", "https://data.delijn.be/stops/202449"], ["https://data.delijn.be/stops/501392", "https://data.delijn.be/stops/506392"], ["https://data.delijn.be/stops/301716", "https://data.delijn.be/stops/308425"], ["https://data.delijn.be/stops/204796", "https://data.delijn.be/stops/205585"], ["https://data.delijn.be/stops/203332", "https://data.delijn.be/stops/203333"], ["https://data.delijn.be/stops/409740", "https://data.delijn.be/stops/409742"], ["https://data.delijn.be/stops/302165", "https://data.delijn.be/stops/308098"], ["https://data.delijn.be/stops/503640", "https://data.delijn.be/stops/508640"], ["https://data.delijn.be/stops/407284", "https://data.delijn.be/stops/409490"], ["https://data.delijn.be/stops/408069", "https://data.delijn.be/stops/305705"], ["https://data.delijn.be/stops/403688", "https://data.delijn.be/stops/409274"], ["https://data.delijn.be/stops/201121", "https://data.delijn.be/stops/201915"], ["https://data.delijn.be/stops/303031", "https://data.delijn.be/stops/307143"], ["https://data.delijn.be/stops/104456", "https://data.delijn.be/stops/104479"], ["https://data.delijn.be/stops/204212", "https://data.delijn.be/stops/207393"], ["https://data.delijn.be/stops/505254", "https://data.delijn.be/stops/509757"], ["https://data.delijn.be/stops/305781", "https://data.delijn.be/stops/305799"], ["https://data.delijn.be/stops/102419", "https://data.delijn.be/stops/106217"], ["https://data.delijn.be/stops/200680", "https://data.delijn.be/stops/201840"], ["https://data.delijn.be/stops/108864", "https://data.delijn.be/stops/108866"], ["https://data.delijn.be/stops/305164", "https://data.delijn.be/stops/305168"], ["https://data.delijn.be/stops/302550", "https://data.delijn.be/stops/302551"], ["https://data.delijn.be/stops/108062", "https://data.delijn.be/stops/108063"], ["https://data.delijn.be/stops/202091", "https://data.delijn.be/stops/203090"], ["https://data.delijn.be/stops/501630", "https://data.delijn.be/stops/501645"], ["https://data.delijn.be/stops/208681", "https://data.delijn.be/stops/208724"], ["https://data.delijn.be/stops/503953", "https://data.delijn.be/stops/508953"], ["https://data.delijn.be/stops/405770", "https://data.delijn.be/stops/405823"], ["https://data.delijn.be/stops/400586", "https://data.delijn.be/stops/400608"], ["https://data.delijn.be/stops/301733", "https://data.delijn.be/stops/301734"], ["https://data.delijn.be/stops/410176", "https://data.delijn.be/stops/410177"], ["https://data.delijn.be/stops/307753", "https://data.delijn.be/stops/307756"], ["https://data.delijn.be/stops/503923", "https://data.delijn.be/stops/505253"], ["https://data.delijn.be/stops/106663", "https://data.delijn.be/stops/106664"], ["https://data.delijn.be/stops/107133", "https://data.delijn.be/stops/107134"], ["https://data.delijn.be/stops/208051", "https://data.delijn.be/stops/208052"], ["https://data.delijn.be/stops/109037", "https://data.delijn.be/stops/300103"], ["https://data.delijn.be/stops/408495", "https://data.delijn.be/stops/408697"], ["https://data.delijn.be/stops/300177", "https://data.delijn.be/stops/300191"], ["https://data.delijn.be/stops/403584", "https://data.delijn.be/stops/403625"], ["https://data.delijn.be/stops/503055", "https://data.delijn.be/stops/508057"], ["https://data.delijn.be/stops/204766", "https://data.delijn.be/stops/205484"], ["https://data.delijn.be/stops/206100", "https://data.delijn.be/stops/207100"], ["https://data.delijn.be/stops/106010", "https://data.delijn.be/stops/108035"], ["https://data.delijn.be/stops/108467", "https://data.delijn.be/stops/108469"], ["https://data.delijn.be/stops/206022", "https://data.delijn.be/stops/207028"], ["https://data.delijn.be/stops/508524", "https://data.delijn.be/stops/509774"], ["https://data.delijn.be/stops/505223", "https://data.delijn.be/stops/509797"], ["https://data.delijn.be/stops/105813", "https://data.delijn.be/stops/105816"], ["https://data.delijn.be/stops/300342", "https://data.delijn.be/stops/300346"], ["https://data.delijn.be/stops/401147", "https://data.delijn.be/stops/403735"], ["https://data.delijn.be/stops/200172", "https://data.delijn.be/stops/201550"], ["https://data.delijn.be/stops/208415", "https://data.delijn.be/stops/208763"], ["https://data.delijn.be/stops/406465", "https://data.delijn.be/stops/406479"], ["https://data.delijn.be/stops/400854", "https://data.delijn.be/stops/400885"], ["https://data.delijn.be/stops/107603", "https://data.delijn.be/stops/107657"], ["https://data.delijn.be/stops/107570", "https://data.delijn.be/stops/107743"], ["https://data.delijn.be/stops/105214", "https://data.delijn.be/stops/105542"], ["https://data.delijn.be/stops/103272", "https://data.delijn.be/stops/410162"], ["https://data.delijn.be/stops/308601", "https://data.delijn.be/stops/308602"], ["https://data.delijn.be/stops/303956", "https://data.delijn.be/stops/304178"], ["https://data.delijn.be/stops/304209", "https://data.delijn.be/stops/305337"], ["https://data.delijn.be/stops/302490", "https://data.delijn.be/stops/302492"], ["https://data.delijn.be/stops/106689", "https://data.delijn.be/stops/106690"], ["https://data.delijn.be/stops/206043", "https://data.delijn.be/stops/207532"], ["https://data.delijn.be/stops/202087", "https://data.delijn.be/stops/203087"], ["https://data.delijn.be/stops/308458", "https://data.delijn.be/stops/308461"], ["https://data.delijn.be/stops/302156", "https://data.delijn.be/stops/302174"], ["https://data.delijn.be/stops/106034", "https://data.delijn.be/stops/106313"], ["https://data.delijn.be/stops/301507", "https://data.delijn.be/stops/307931"], ["https://data.delijn.be/stops/204188", "https://data.delijn.be/stops/205188"], ["https://data.delijn.be/stops/404227", "https://data.delijn.be/stops/404246"], ["https://data.delijn.be/stops/407488", "https://data.delijn.be/stops/407508"], ["https://data.delijn.be/stops/101533", "https://data.delijn.be/stops/108789"], ["https://data.delijn.be/stops/201924", "https://data.delijn.be/stops/206590"], ["https://data.delijn.be/stops/105579", "https://data.delijn.be/stops/105584"], ["https://data.delijn.be/stops/501119", "https://data.delijn.be/stops/505039"], ["https://data.delijn.be/stops/405220", "https://data.delijn.be/stops/405221"], ["https://data.delijn.be/stops/304541", "https://data.delijn.be/stops/304542"], ["https://data.delijn.be/stops/402551", "https://data.delijn.be/stops/404067"], ["https://data.delijn.be/stops/300336", "https://data.delijn.be/stops/307089"], ["https://data.delijn.be/stops/406916", "https://data.delijn.be/stops/406952"], ["https://data.delijn.be/stops/402944", "https://data.delijn.be/stops/306391"], ["https://data.delijn.be/stops/107178", "https://data.delijn.be/stops/107181"], ["https://data.delijn.be/stops/201704", "https://data.delijn.be/stops/215018"], ["https://data.delijn.be/stops/101915", "https://data.delijn.be/stops/105120"], ["https://data.delijn.be/stops/107661", "https://data.delijn.be/stops/107663"], ["https://data.delijn.be/stops/101964", "https://data.delijn.be/stops/109287"], ["https://data.delijn.be/stops/304136", "https://data.delijn.be/stops/304496"], ["https://data.delijn.be/stops/301064", "https://data.delijn.be/stops/301304"], ["https://data.delijn.be/stops/409080", "https://data.delijn.be/stops/409811"], ["https://data.delijn.be/stops/403848", "https://data.delijn.be/stops/410113"], ["https://data.delijn.be/stops/406063", "https://data.delijn.be/stops/407114"], ["https://data.delijn.be/stops/305212", "https://data.delijn.be/stops/307872"], ["https://data.delijn.be/stops/405754", "https://data.delijn.be/stops/409295"], ["https://data.delijn.be/stops/503604", "https://data.delijn.be/stops/508605"], ["https://data.delijn.be/stops/300103", "https://data.delijn.be/stops/300113"], ["https://data.delijn.be/stops/403747", "https://data.delijn.be/stops/403750"], ["https://data.delijn.be/stops/101434", "https://data.delijn.be/stops/107293"], ["https://data.delijn.be/stops/400695", "https://data.delijn.be/stops/400858"], ["https://data.delijn.be/stops/105289", "https://data.delijn.be/stops/106497"], ["https://data.delijn.be/stops/302670", "https://data.delijn.be/stops/307905"], ["https://data.delijn.be/stops/402283", "https://data.delijn.be/stops/405015"], ["https://data.delijn.be/stops/101110", "https://data.delijn.be/stops/101704"], ["https://data.delijn.be/stops/507389", "https://data.delijn.be/stops/507399"], ["https://data.delijn.be/stops/300316", "https://data.delijn.be/stops/305174"], ["https://data.delijn.be/stops/105642", "https://data.delijn.be/stops/105644"], ["https://data.delijn.be/stops/400040", "https://data.delijn.be/stops/405585"], ["https://data.delijn.be/stops/501588", "https://data.delijn.be/stops/506032"], ["https://data.delijn.be/stops/206839", "https://data.delijn.be/stops/207587"], ["https://data.delijn.be/stops/503623", "https://data.delijn.be/stops/508623"], ["https://data.delijn.be/stops/408839", "https://data.delijn.be/stops/408841"], ["https://data.delijn.be/stops/404101", "https://data.delijn.be/stops/404108"], ["https://data.delijn.be/stops/202160", "https://data.delijn.be/stops/205068"], ["https://data.delijn.be/stops/200687", "https://data.delijn.be/stops/200688"], ["https://data.delijn.be/stops/502765", "https://data.delijn.be/stops/505703"], ["https://data.delijn.be/stops/103668", "https://data.delijn.be/stops/106257"], ["https://data.delijn.be/stops/301448", "https://data.delijn.be/stops/305605"], ["https://data.delijn.be/stops/202671", "https://data.delijn.be/stops/203671"], ["https://data.delijn.be/stops/109511", "https://data.delijn.be/stops/109513"], ["https://data.delijn.be/stops/407921", "https://data.delijn.be/stops/408081"], ["https://data.delijn.be/stops/503211", "https://data.delijn.be/stops/503218"], ["https://data.delijn.be/stops/504598", "https://data.delijn.be/stops/509604"], ["https://data.delijn.be/stops/208676", "https://data.delijn.be/stops/208688"], ["https://data.delijn.be/stops/205369", "https://data.delijn.be/stops/205370"], ["https://data.delijn.be/stops/201147", "https://data.delijn.be/stops/202355"], ["https://data.delijn.be/stops/300273", "https://data.delijn.be/stops/300945"], ["https://data.delijn.be/stops/109143", "https://data.delijn.be/stops/109144"], ["https://data.delijn.be/stops/406295", "https://data.delijn.be/stops/406444"], ["https://data.delijn.be/stops/502279", "https://data.delijn.be/stops/502281"], ["https://data.delijn.be/stops/404443", "https://data.delijn.be/stops/405850"], ["https://data.delijn.be/stops/401296", "https://data.delijn.be/stops/401297"], ["https://data.delijn.be/stops/300213", "https://data.delijn.be/stops/304797"], ["https://data.delijn.be/stops/107130", "https://data.delijn.be/stops/108730"], ["https://data.delijn.be/stops/403009", "https://data.delijn.be/stops/409522"], ["https://data.delijn.be/stops/305513", "https://data.delijn.be/stops/308549"], ["https://data.delijn.be/stops/403908", "https://data.delijn.be/stops/403958"], ["https://data.delijn.be/stops/509702", "https://data.delijn.be/stops/509703"], ["https://data.delijn.be/stops/303245", "https://data.delijn.be/stops/306671"], ["https://data.delijn.be/stops/508723", "https://data.delijn.be/stops/508728"], ["https://data.delijn.be/stops/202558", "https://data.delijn.be/stops/202608"], ["https://data.delijn.be/stops/105206", "https://data.delijn.be/stops/108876"], ["https://data.delijn.be/stops/504020", "https://data.delijn.be/stops/505830"], ["https://data.delijn.be/stops/508519", "https://data.delijn.be/stops/508982"], ["https://data.delijn.be/stops/200347", "https://data.delijn.be/stops/200348"], ["https://data.delijn.be/stops/305688", "https://data.delijn.be/stops/305703"], ["https://data.delijn.be/stops/200587", "https://data.delijn.be/stops/201582"], ["https://data.delijn.be/stops/200417", "https://data.delijn.be/stops/201848"], ["https://data.delijn.be/stops/401584", "https://data.delijn.be/stops/401590"], ["https://data.delijn.be/stops/208615", "https://data.delijn.be/stops/307745"], ["https://data.delijn.be/stops/202347", "https://data.delijn.be/stops/203880"], ["https://data.delijn.be/stops/106151", "https://data.delijn.be/stops/106152"], ["https://data.delijn.be/stops/305645", "https://data.delijn.be/stops/308130"], ["https://data.delijn.be/stops/206047", "https://data.delijn.be/stops/207880"], ["https://data.delijn.be/stops/406068", "https://data.delijn.be/stops/406138"], ["https://data.delijn.be/stops/203169", "https://data.delijn.be/stops/203170"], ["https://data.delijn.be/stops/300796", "https://data.delijn.be/stops/301478"], ["https://data.delijn.be/stops/302564", "https://data.delijn.be/stops/302586"], ["https://data.delijn.be/stops/408292", "https://data.delijn.be/stops/308208"], ["https://data.delijn.be/stops/504964", "https://data.delijn.be/stops/509964"], ["https://data.delijn.be/stops/102400", "https://data.delijn.be/stops/105500"], ["https://data.delijn.be/stops/303479", "https://data.delijn.be/stops/303500"], ["https://data.delijn.be/stops/403427", "https://data.delijn.be/stops/410351"], ["https://data.delijn.be/stops/300029", "https://data.delijn.be/stops/300064"], ["https://data.delijn.be/stops/504299", "https://data.delijn.be/stops/509292"], ["https://data.delijn.be/stops/104077", "https://data.delijn.be/stops/105701"], ["https://data.delijn.be/stops/300243", "https://data.delijn.be/stops/304645"], ["https://data.delijn.be/stops/502322", "https://data.delijn.be/stops/507327"], ["https://data.delijn.be/stops/103725", "https://data.delijn.be/stops/104700"], ["https://data.delijn.be/stops/106244", "https://data.delijn.be/stops/106248"], ["https://data.delijn.be/stops/105666", "https://data.delijn.be/stops/105673"], ["https://data.delijn.be/stops/107931", "https://data.delijn.be/stops/301152"], ["https://data.delijn.be/stops/503681", "https://data.delijn.be/stops/508683"], ["https://data.delijn.be/stops/408133", "https://data.delijn.be/stops/408375"], ["https://data.delijn.be/stops/206115", "https://data.delijn.be/stops/206117"], ["https://data.delijn.be/stops/202543", "https://data.delijn.be/stops/211015"], ["https://data.delijn.be/stops/101602", "https://data.delijn.be/stops/106026"], ["https://data.delijn.be/stops/503181", "https://data.delijn.be/stops/505778"], ["https://data.delijn.be/stops/300443", "https://data.delijn.be/stops/301276"], ["https://data.delijn.be/stops/201663", "https://data.delijn.be/stops/201688"], ["https://data.delijn.be/stops/304969", "https://data.delijn.be/stops/304973"], ["https://data.delijn.be/stops/304612", "https://data.delijn.be/stops/306171"], ["https://data.delijn.be/stops/504416", "https://data.delijn.be/stops/509416"], ["https://data.delijn.be/stops/202621", "https://data.delijn.be/stops/203621"], ["https://data.delijn.be/stops/306872", "https://data.delijn.be/stops/307954"], ["https://data.delijn.be/stops/303285", "https://data.delijn.be/stops/303318"], ["https://data.delijn.be/stops/206333", "https://data.delijn.be/stops/207335"], ["https://data.delijn.be/stops/407230", "https://data.delijn.be/stops/408799"], ["https://data.delijn.be/stops/504712", "https://data.delijn.be/stops/509712"], ["https://data.delijn.be/stops/501636", "https://data.delijn.be/stops/506206"], ["https://data.delijn.be/stops/104256", "https://data.delijn.be/stops/104946"], ["https://data.delijn.be/stops/109198", "https://data.delijn.be/stops/109204"], ["https://data.delijn.be/stops/502924", "https://data.delijn.be/stops/505802"], ["https://data.delijn.be/stops/505183", "https://data.delijn.be/stops/505817"], ["https://data.delijn.be/stops/105985", "https://data.delijn.be/stops/105988"], ["https://data.delijn.be/stops/304876", "https://data.delijn.be/stops/307053"], ["https://data.delijn.be/stops/502756", "https://data.delijn.be/stops/505752"], ["https://data.delijn.be/stops/405336", "https://data.delijn.be/stops/405348"], ["https://data.delijn.be/stops/307207", "https://data.delijn.be/stops/307208"], ["https://data.delijn.be/stops/405697", "https://data.delijn.be/stops/405901"], ["https://data.delijn.be/stops/104429", "https://data.delijn.be/stops/107366"], ["https://data.delijn.be/stops/402170", "https://data.delijn.be/stops/402480"], ["https://data.delijn.be/stops/304500", "https://data.delijn.be/stops/307560"], ["https://data.delijn.be/stops/405713", "https://data.delijn.be/stops/408277"], ["https://data.delijn.be/stops/200461", "https://data.delijn.be/stops/201461"], ["https://data.delijn.be/stops/208413", "https://data.delijn.be/stops/208748"], ["https://data.delijn.be/stops/409302", "https://data.delijn.be/stops/409312"], ["https://data.delijn.be/stops/206617", "https://data.delijn.be/stops/206720"], ["https://data.delijn.be/stops/403097", "https://data.delijn.be/stops/403422"], ["https://data.delijn.be/stops/106484", "https://data.delijn.be/stops/109212"], ["https://data.delijn.be/stops/501325", "https://data.delijn.be/stops/501603"], ["https://data.delijn.be/stops/108873", "https://data.delijn.be/stops/109511"], ["https://data.delijn.be/stops/109336", "https://data.delijn.be/stops/109370"], ["https://data.delijn.be/stops/404105", "https://data.delijn.be/stops/404149"], ["https://data.delijn.be/stops/203993", "https://data.delijn.be/stops/203994"], ["https://data.delijn.be/stops/101869", "https://data.delijn.be/stops/105272"], ["https://data.delijn.be/stops/200674", "https://data.delijn.be/stops/210082"], ["https://data.delijn.be/stops/408096", "https://data.delijn.be/stops/408118"], ["https://data.delijn.be/stops/405739", "https://data.delijn.be/stops/410137"], ["https://data.delijn.be/stops/201485", "https://data.delijn.be/stops/208733"], ["https://data.delijn.be/stops/502254", "https://data.delijn.be/stops/507254"], ["https://data.delijn.be/stops/205051", "https://data.delijn.be/stops/205065"], ["https://data.delijn.be/stops/200456", "https://data.delijn.be/stops/201455"], ["https://data.delijn.be/stops/208278", "https://data.delijn.be/stops/209494"], ["https://data.delijn.be/stops/300185", "https://data.delijn.be/stops/300209"], ["https://data.delijn.be/stops/404332", "https://data.delijn.be/stops/404337"], ["https://data.delijn.be/stops/200891", "https://data.delijn.be/stops/202543"], ["https://data.delijn.be/stops/101518", "https://data.delijn.be/stops/109052"], ["https://data.delijn.be/stops/401100", "https://data.delijn.be/stops/404984"], ["https://data.delijn.be/stops/300152", "https://data.delijn.be/stops/300160"], ["https://data.delijn.be/stops/102920", "https://data.delijn.be/stops/102925"], ["https://data.delijn.be/stops/300299", "https://data.delijn.be/stops/307475"], ["https://data.delijn.be/stops/305155", "https://data.delijn.be/stops/305163"], ["https://data.delijn.be/stops/200744", "https://data.delijn.be/stops/203783"], ["https://data.delijn.be/stops/219080", "https://data.delijn.be/stops/300033"], ["https://data.delijn.be/stops/307228", "https://data.delijn.be/stops/307229"], ["https://data.delijn.be/stops/106279", "https://data.delijn.be/stops/106280"], ["https://data.delijn.be/stops/306378", "https://data.delijn.be/stops/306379"], ["https://data.delijn.be/stops/103305", "https://data.delijn.be/stops/103310"], ["https://data.delijn.be/stops/104794", "https://data.delijn.be/stops/106826"], ["https://data.delijn.be/stops/200082", "https://data.delijn.be/stops/204804"], ["https://data.delijn.be/stops/405175", "https://data.delijn.be/stops/405263"], ["https://data.delijn.be/stops/406736", "https://data.delijn.be/stops/407275"], ["https://data.delijn.be/stops/407652", "https://data.delijn.be/stops/409810"], ["https://data.delijn.be/stops/302065", "https://data.delijn.be/stops/302461"], ["https://data.delijn.be/stops/405242", "https://data.delijn.be/stops/406324"], ["https://data.delijn.be/stops/304302", "https://data.delijn.be/stops/304305"], ["https://data.delijn.be/stops/302290", "https://data.delijn.be/stops/306802"], ["https://data.delijn.be/stops/103061", "https://data.delijn.be/stops/104581"], ["https://data.delijn.be/stops/501014", "https://data.delijn.be/stops/501606"], ["https://data.delijn.be/stops/404346", "https://data.delijn.be/stops/404365"], ["https://data.delijn.be/stops/302717", "https://data.delijn.be/stops/302721"], ["https://data.delijn.be/stops/203932", "https://data.delijn.be/stops/208681"], ["https://data.delijn.be/stops/304031", "https://data.delijn.be/stops/304065"], ["https://data.delijn.be/stops/103152", "https://data.delijn.be/stops/406814"], ["https://data.delijn.be/stops/301347", "https://data.delijn.be/stops/306684"], ["https://data.delijn.be/stops/103217", "https://data.delijn.be/stops/109898"], ["https://data.delijn.be/stops/208372", "https://data.delijn.be/stops/209372"], ["https://data.delijn.be/stops/200870", "https://data.delijn.be/stops/202288"], ["https://data.delijn.be/stops/101582", "https://data.delijn.be/stops/109891"], ["https://data.delijn.be/stops/204211", "https://data.delijn.be/stops/207311"], ["https://data.delijn.be/stops/400230", "https://data.delijn.be/stops/401867"], ["https://data.delijn.be/stops/300396", "https://data.delijn.be/stops/306066"], ["https://data.delijn.be/stops/403580", "https://data.delijn.be/stops/407533"], ["https://data.delijn.be/stops/107292", "https://data.delijn.be/stops/107293"], ["https://data.delijn.be/stops/102842", "https://data.delijn.be/stops/102843"], ["https://data.delijn.be/stops/106922", "https://data.delijn.be/stops/106924"], ["https://data.delijn.be/stops/504656", "https://data.delijn.be/stops/509642"], ["https://data.delijn.be/stops/104683", "https://data.delijn.be/stops/104776"], ["https://data.delijn.be/stops/208302", "https://data.delijn.be/stops/209302"], ["https://data.delijn.be/stops/305736", "https://data.delijn.be/stops/305737"], ["https://data.delijn.be/stops/300844", "https://data.delijn.be/stops/306717"], ["https://data.delijn.be/stops/304271", "https://data.delijn.be/stops/304279"], ["https://data.delijn.be/stops/209282", "https://data.delijn.be/stops/209283"], ["https://data.delijn.be/stops/301576", "https://data.delijn.be/stops/301577"], ["https://data.delijn.be/stops/300543", "https://data.delijn.be/stops/307858"], ["https://data.delijn.be/stops/305255", "https://data.delijn.be/stops/305256"], ["https://data.delijn.be/stops/404366", "https://data.delijn.be/stops/404386"], ["https://data.delijn.be/stops/505047", "https://data.delijn.be/stops/509794"], ["https://data.delijn.be/stops/306765", "https://data.delijn.be/stops/308407"], ["https://data.delijn.be/stops/404482", "https://data.delijn.be/stops/409261"], ["https://data.delijn.be/stops/508194", "https://data.delijn.be/stops/508882"], ["https://data.delijn.be/stops/206963", "https://data.delijn.be/stops/207950"], ["https://data.delijn.be/stops/202129", "https://data.delijn.be/stops/210087"], ["https://data.delijn.be/stops/404886", "https://data.delijn.be/stops/404903"], ["https://data.delijn.be/stops/503808", "https://data.delijn.be/stops/509587"], ["https://data.delijn.be/stops/400164", "https://data.delijn.be/stops/410339"], ["https://data.delijn.be/stops/504379", "https://data.delijn.be/stops/504695"], ["https://data.delijn.be/stops/105112", "https://data.delijn.be/stops/106831"], ["https://data.delijn.be/stops/106680", "https://data.delijn.be/stops/107124"], ["https://data.delijn.be/stops/201585", "https://data.delijn.be/stops/201649"], ["https://data.delijn.be/stops/107045", "https://data.delijn.be/stops/107050"], ["https://data.delijn.be/stops/406333", "https://data.delijn.be/stops/409406"], ["https://data.delijn.be/stops/304993", "https://data.delijn.be/stops/305007"], ["https://data.delijn.be/stops/106670", "https://data.delijn.be/stops/106671"], ["https://data.delijn.be/stops/202858", "https://data.delijn.be/stops/202859"], ["https://data.delijn.be/stops/302722", "https://data.delijn.be/stops/307336"], ["https://data.delijn.be/stops/200391", "https://data.delijn.be/stops/208703"], ["https://data.delijn.be/stops/302886", "https://data.delijn.be/stops/303079"], ["https://data.delijn.be/stops/304497", "https://data.delijn.be/stops/304498"], ["https://data.delijn.be/stops/504567", "https://data.delijn.be/stops/505362"], ["https://data.delijn.be/stops/200898", "https://data.delijn.be/stops/203060"], ["https://data.delijn.be/stops/202823", "https://data.delijn.be/stops/218503"], ["https://data.delijn.be/stops/503590", "https://data.delijn.be/stops/508590"], ["https://data.delijn.be/stops/106271", "https://data.delijn.be/stops/106274"], ["https://data.delijn.be/stops/102408", "https://data.delijn.be/stops/109039"], ["https://data.delijn.be/stops/208392", "https://data.delijn.be/stops/208421"], ["https://data.delijn.be/stops/302993", "https://data.delijn.be/stops/303003"], ["https://data.delijn.be/stops/301267", "https://data.delijn.be/stops/301268"], ["https://data.delijn.be/stops/101974", "https://data.delijn.be/stops/101976"], ["https://data.delijn.be/stops/300862", "https://data.delijn.be/stops/308854"], ["https://data.delijn.be/stops/102396", "https://data.delijn.be/stops/108198"], ["https://data.delijn.be/stops/300762", "https://data.delijn.be/stops/304653"], ["https://data.delijn.be/stops/402386", "https://data.delijn.be/stops/402450"], ["https://data.delijn.be/stops/401672", "https://data.delijn.be/stops/308268"], ["https://data.delijn.be/stops/407986", "https://data.delijn.be/stops/407988"], ["https://data.delijn.be/stops/409651", "https://data.delijn.be/stops/409657"], ["https://data.delijn.be/stops/106206", "https://data.delijn.be/stops/109907"], ["https://data.delijn.be/stops/107697", "https://data.delijn.be/stops/107699"], ["https://data.delijn.be/stops/402817", "https://data.delijn.be/stops/409446"], ["https://data.delijn.be/stops/203409", "https://data.delijn.be/stops/210409"], ["https://data.delijn.be/stops/304415", "https://data.delijn.be/stops/307501"], ["https://data.delijn.be/stops/105719", "https://data.delijn.be/stops/105721"], ["https://data.delijn.be/stops/200567", "https://data.delijn.be/stops/201169"], ["https://data.delijn.be/stops/404845", "https://data.delijn.be/stops/407709"], ["https://data.delijn.be/stops/408589", "https://data.delijn.be/stops/408755"], ["https://data.delijn.be/stops/307641", "https://data.delijn.be/stops/307688"], ["https://data.delijn.be/stops/501174", "https://data.delijn.be/stops/506076"], ["https://data.delijn.be/stops/505176", "https://data.delijn.be/stops/505363"], ["https://data.delijn.be/stops/502393", "https://data.delijn.be/stops/502408"], ["https://data.delijn.be/stops/109605", "https://data.delijn.be/stops/109973"], ["https://data.delijn.be/stops/503806", "https://data.delijn.be/stops/508806"], ["https://data.delijn.be/stops/206916", "https://data.delijn.be/stops/207358"], ["https://data.delijn.be/stops/305783", "https://data.delijn.be/stops/305784"], ["https://data.delijn.be/stops/108872", "https://data.delijn.be/stops/108873"], ["https://data.delijn.be/stops/302152", "https://data.delijn.be/stops/307492"], ["https://data.delijn.be/stops/105251", "https://data.delijn.be/stops/105252"], ["https://data.delijn.be/stops/200090", "https://data.delijn.be/stops/210069"], ["https://data.delijn.be/stops/205404", "https://data.delijn.be/stops/205416"], ["https://data.delijn.be/stops/402728", "https://data.delijn.be/stops/402729"], ["https://data.delijn.be/stops/105886", "https://data.delijn.be/stops/105888"], ["https://data.delijn.be/stops/200522", "https://data.delijn.be/stops/201523"], ["https://data.delijn.be/stops/202395", "https://data.delijn.be/stops/203389"], ["https://data.delijn.be/stops/101089", "https://data.delijn.be/stops/105972"], ["https://data.delijn.be/stops/501630", "https://data.delijn.be/stops/506636"], ["https://data.delijn.be/stops/200710", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/301421", "https://data.delijn.be/stops/307529"], ["https://data.delijn.be/stops/209676", "https://data.delijn.be/stops/209793"], ["https://data.delijn.be/stops/102152", "https://data.delijn.be/stops/108335"], ["https://data.delijn.be/stops/301759", "https://data.delijn.be/stops/308422"], ["https://data.delijn.be/stops/209163", "https://data.delijn.be/stops/209170"], ["https://data.delijn.be/stops/207366", "https://data.delijn.be/stops/207701"], ["https://data.delijn.be/stops/500041", "https://data.delijn.be/stops/500045"], ["https://data.delijn.be/stops/502194", "https://data.delijn.be/stops/507196"], ["https://data.delijn.be/stops/505039", "https://data.delijn.be/stops/509796"], ["https://data.delijn.be/stops/300727", "https://data.delijn.be/stops/303623"], ["https://data.delijn.be/stops/303880", "https://data.delijn.be/stops/303881"], ["https://data.delijn.be/stops/102650", "https://data.delijn.be/stops/104480"], ["https://data.delijn.be/stops/401785", "https://data.delijn.be/stops/401870"], ["https://data.delijn.be/stops/504270", "https://data.delijn.be/stops/509270"], ["https://data.delijn.be/stops/503112", "https://data.delijn.be/stops/505083"], ["https://data.delijn.be/stops/108815", "https://data.delijn.be/stops/108820"], ["https://data.delijn.be/stops/204306", "https://data.delijn.be/stops/204338"], ["https://data.delijn.be/stops/306053", "https://data.delijn.be/stops/306060"], ["https://data.delijn.be/stops/200045", "https://data.delijn.be/stops/200437"], ["https://data.delijn.be/stops/202878", "https://data.delijn.be/stops/202881"], ["https://data.delijn.be/stops/408123", "https://data.delijn.be/stops/303263"], ["https://data.delijn.be/stops/103620", "https://data.delijn.be/stops/105420"], ["https://data.delijn.be/stops/107162", "https://data.delijn.be/stops/107163"], ["https://data.delijn.be/stops/108568", "https://data.delijn.be/stops/108994"], ["https://data.delijn.be/stops/200946", "https://data.delijn.be/stops/505602"], ["https://data.delijn.be/stops/502673", "https://data.delijn.be/stops/507673"], ["https://data.delijn.be/stops/301668", "https://data.delijn.be/stops/301671"], ["https://data.delijn.be/stops/206003", "https://data.delijn.be/stops/207004"], ["https://data.delijn.be/stops/208363", "https://data.delijn.be/stops/208778"], ["https://data.delijn.be/stops/504199", "https://data.delijn.be/stops/505176"], ["https://data.delijn.be/stops/206306", "https://data.delijn.be/stops/207048"], ["https://data.delijn.be/stops/307722", "https://data.delijn.be/stops/307723"], ["https://data.delijn.be/stops/408214", "https://data.delijn.be/stops/408360"], ["https://data.delijn.be/stops/206185", "https://data.delijn.be/stops/206690"], ["https://data.delijn.be/stops/303841", "https://data.delijn.be/stops/303842"], ["https://data.delijn.be/stops/300554", "https://data.delijn.be/stops/300555"], ["https://data.delijn.be/stops/207752", "https://data.delijn.be/stops/207782"], ["https://data.delijn.be/stops/300773", "https://data.delijn.be/stops/300774"], ["https://data.delijn.be/stops/106732", "https://data.delijn.be/stops/107198"], ["https://data.delijn.be/stops/402825", "https://data.delijn.be/stops/405357"], ["https://data.delijn.be/stops/303696", "https://data.delijn.be/stops/303699"], ["https://data.delijn.be/stops/302285", "https://data.delijn.be/stops/302288"], ["https://data.delijn.be/stops/405042", "https://data.delijn.be/stops/405043"], ["https://data.delijn.be/stops/200511", "https://data.delijn.be/stops/201151"], ["https://data.delijn.be/stops/107130", "https://data.delijn.be/stops/108330"], ["https://data.delijn.be/stops/202189", "https://data.delijn.be/stops/203617"], ["https://data.delijn.be/stops/106530", "https://data.delijn.be/stops/107309"], ["https://data.delijn.be/stops/104509", "https://data.delijn.be/stops/104512"], ["https://data.delijn.be/stops/206902", "https://data.delijn.be/stops/207902"], ["https://data.delijn.be/stops/308425", "https://data.delijn.be/stops/308876"], ["https://data.delijn.be/stops/303589", "https://data.delijn.be/stops/305893"], ["https://data.delijn.be/stops/504084", "https://data.delijn.be/stops/509084"], ["https://data.delijn.be/stops/504126", "https://data.delijn.be/stops/504127"], ["https://data.delijn.be/stops/505697", "https://data.delijn.be/stops/505734"], ["https://data.delijn.be/stops/200472", "https://data.delijn.be/stops/201486"], ["https://data.delijn.be/stops/305302", "https://data.delijn.be/stops/305314"], ["https://data.delijn.be/stops/301771", "https://data.delijn.be/stops/301788"], ["https://data.delijn.be/stops/307155", "https://data.delijn.be/stops/307156"], ["https://data.delijn.be/stops/106234", "https://data.delijn.be/stops/106235"], ["https://data.delijn.be/stops/406289", "https://data.delijn.be/stops/406425"], ["https://data.delijn.be/stops/107969", "https://data.delijn.be/stops/108432"], ["https://data.delijn.be/stops/507017", "https://data.delijn.be/stops/507797"], ["https://data.delijn.be/stops/207299", "https://data.delijn.be/stops/207861"], ["https://data.delijn.be/stops/408523", "https://data.delijn.be/stops/408788"], ["https://data.delijn.be/stops/402694", "https://data.delijn.be/stops/402698"], ["https://data.delijn.be/stops/302715", "https://data.delijn.be/stops/302716"], ["https://data.delijn.be/stops/507028", "https://data.delijn.be/stops/507059"], ["https://data.delijn.be/stops/502282", "https://data.delijn.be/stops/507334"], ["https://data.delijn.be/stops/208777", "https://data.delijn.be/stops/208779"], ["https://data.delijn.be/stops/202049", "https://data.delijn.be/stops/203049"], ["https://data.delijn.be/stops/107016", "https://data.delijn.be/stops/107067"], ["https://data.delijn.be/stops/102057", "https://data.delijn.be/stops/102058"], ["https://data.delijn.be/stops/304311", "https://data.delijn.be/stops/304331"], ["https://data.delijn.be/stops/102184", "https://data.delijn.be/stops/108028"], ["https://data.delijn.be/stops/201265", "https://data.delijn.be/stops/201434"], ["https://data.delijn.be/stops/404246", "https://data.delijn.be/stops/409630"], ["https://data.delijn.be/stops/109991", "https://data.delijn.be/stops/109992"], ["https://data.delijn.be/stops/401459", "https://data.delijn.be/stops/407120"], ["https://data.delijn.be/stops/203432", "https://data.delijn.be/stops/203433"], ["https://data.delijn.be/stops/206262", "https://data.delijn.be/stops/207263"], ["https://data.delijn.be/stops/503485", "https://data.delijn.be/stops/508485"], ["https://data.delijn.be/stops/300123", "https://data.delijn.be/stops/306770"], ["https://data.delijn.be/stops/401185", "https://data.delijn.be/stops/401287"], ["https://data.delijn.be/stops/502633", "https://data.delijn.be/stops/507149"], ["https://data.delijn.be/stops/300314", "https://data.delijn.be/stops/303948"], ["https://data.delijn.be/stops/202286", "https://data.delijn.be/stops/203285"], ["https://data.delijn.be/stops/505629", "https://data.delijn.be/stops/508336"], ["https://data.delijn.be/stops/209415", "https://data.delijn.be/stops/209416"], ["https://data.delijn.be/stops/505746", "https://data.delijn.be/stops/506187"], ["https://data.delijn.be/stops/300527", "https://data.delijn.be/stops/302338"], ["https://data.delijn.be/stops/405787", "https://data.delijn.be/stops/409763"], ["https://data.delijn.be/stops/408861", "https://data.delijn.be/stops/408865"], ["https://data.delijn.be/stops/206449", "https://data.delijn.be/stops/207450"], ["https://data.delijn.be/stops/101390", "https://data.delijn.be/stops/101827"], ["https://data.delijn.be/stops/504489", "https://data.delijn.be/stops/505928"], ["https://data.delijn.be/stops/405751", "https://data.delijn.be/stops/408349"], ["https://data.delijn.be/stops/406056", "https://data.delijn.be/stops/406069"], ["https://data.delijn.be/stops/503372", "https://data.delijn.be/stops/508443"], ["https://data.delijn.be/stops/502535", "https://data.delijn.be/stops/502635"], ["https://data.delijn.be/stops/106478", "https://data.delijn.be/stops/109645"], ["https://data.delijn.be/stops/405872", "https://data.delijn.be/stops/405873"], ["https://data.delijn.be/stops/303558", "https://data.delijn.be/stops/307990"], ["https://data.delijn.be/stops/302599", "https://data.delijn.be/stops/302630"], ["https://data.delijn.be/stops/305925", "https://data.delijn.be/stops/305926"], ["https://data.delijn.be/stops/200916", "https://data.delijn.be/stops/203246"], ["https://data.delijn.be/stops/502658", "https://data.delijn.be/stops/502659"], ["https://data.delijn.be/stops/501029", "https://data.delijn.be/stops/501041"], ["https://data.delijn.be/stops/301538", "https://data.delijn.be/stops/308090"], ["https://data.delijn.be/stops/302072", "https://data.delijn.be/stops/305637"], ["https://data.delijn.be/stops/502059", "https://data.delijn.be/stops/507028"], ["https://data.delijn.be/stops/300795", "https://data.delijn.be/stops/304620"], ["https://data.delijn.be/stops/101367", "https://data.delijn.be/stops/103242"], ["https://data.delijn.be/stops/403571", "https://data.delijn.be/stops/406836"], ["https://data.delijn.be/stops/300484", "https://data.delijn.be/stops/302918"], ["https://data.delijn.be/stops/504259", "https://data.delijn.be/stops/504261"], ["https://data.delijn.be/stops/506149", "https://data.delijn.be/stops/506671"], ["https://data.delijn.be/stops/105694", "https://data.delijn.be/stops/106078"], ["https://data.delijn.be/stops/401876", "https://data.delijn.be/stops/401878"], ["https://data.delijn.be/stops/307574", "https://data.delijn.be/stops/307575"], ["https://data.delijn.be/stops/402688", "https://data.delijn.be/stops/402690"], ["https://data.delijn.be/stops/500044", "https://data.delijn.be/stops/500045"], ["https://data.delijn.be/stops/408800", "https://data.delijn.be/stops/408801"], ["https://data.delijn.be/stops/200167", "https://data.delijn.be/stops/201167"], ["https://data.delijn.be/stops/204500", "https://data.delijn.be/stops/205500"], ["https://data.delijn.be/stops/406529", "https://data.delijn.be/stops/409279"], ["https://data.delijn.be/stops/104056", "https://data.delijn.be/stops/107618"], ["https://data.delijn.be/stops/503501", "https://data.delijn.be/stops/508501"], ["https://data.delijn.be/stops/200214", "https://data.delijn.be/stops/201218"], ["https://data.delijn.be/stops/105969", "https://data.delijn.be/stops/105971"], ["https://data.delijn.be/stops/102019", "https://data.delijn.be/stops/105478"], ["https://data.delijn.be/stops/302049", "https://data.delijn.be/stops/308861"], ["https://data.delijn.be/stops/302146", "https://data.delijn.be/stops/303634"], ["https://data.delijn.be/stops/400274", "https://data.delijn.be/stops/400334"], ["https://data.delijn.be/stops/109153", "https://data.delijn.be/stops/109157"], ["https://data.delijn.be/stops/106449", "https://data.delijn.be/stops/106505"], ["https://data.delijn.be/stops/102419", "https://data.delijn.be/stops/103668"], ["https://data.delijn.be/stops/305923", "https://data.delijn.be/stops/308881"], ["https://data.delijn.be/stops/109222", "https://data.delijn.be/stops/109223"], ["https://data.delijn.be/stops/504627", "https://data.delijn.be/stops/509619"], ["https://data.delijn.be/stops/402976", "https://data.delijn.be/stops/403326"], ["https://data.delijn.be/stops/504730", "https://data.delijn.be/stops/509493"], ["https://data.delijn.be/stops/102201", "https://data.delijn.be/stops/105801"], ["https://data.delijn.be/stops/408513", "https://data.delijn.be/stops/408564"], ["https://data.delijn.be/stops/305705", "https://data.delijn.be/stops/307839"], ["https://data.delijn.be/stops/107148", "https://data.delijn.be/stops/107549"], ["https://data.delijn.be/stops/209203", "https://data.delijn.be/stops/209204"], ["https://data.delijn.be/stops/104496", "https://data.delijn.be/stops/107489"], ["https://data.delijn.be/stops/202107", "https://data.delijn.be/stops/208852"], ["https://data.delijn.be/stops/208564", "https://data.delijn.be/stops/208622"], ["https://data.delijn.be/stops/109833", "https://data.delijn.be/stops/109930"], ["https://data.delijn.be/stops/402387", "https://data.delijn.be/stops/402392"], ["https://data.delijn.be/stops/201008", "https://data.delijn.be/stops/201848"], ["https://data.delijn.be/stops/401260", "https://data.delijn.be/stops/401267"], ["https://data.delijn.be/stops/503506", "https://data.delijn.be/stops/508506"], ["https://data.delijn.be/stops/301683", "https://data.delijn.be/stops/301684"], ["https://data.delijn.be/stops/104677", "https://data.delijn.be/stops/108131"], ["https://data.delijn.be/stops/306705", "https://data.delijn.be/stops/306706"], ["https://data.delijn.be/stops/202471", "https://data.delijn.be/stops/203471"], ["https://data.delijn.be/stops/200442", "https://data.delijn.be/stops/200443"], ["https://data.delijn.be/stops/504773", "https://data.delijn.be/stops/508807"], ["https://data.delijn.be/stops/303438", "https://data.delijn.be/stops/303439"], ["https://data.delijn.be/stops/403159", "https://data.delijn.be/stops/403380"], ["https://data.delijn.be/stops/101452", "https://data.delijn.be/stops/108605"], ["https://data.delijn.be/stops/101597", "https://data.delijn.be/stops/106591"], ["https://data.delijn.be/stops/501154", "https://data.delijn.be/stops/506166"], ["https://data.delijn.be/stops/101528", "https://data.delijn.be/stops/101529"], ["https://data.delijn.be/stops/408520", "https://data.delijn.be/stops/408521"], ["https://data.delijn.be/stops/204544", "https://data.delijn.be/stops/205619"], ["https://data.delijn.be/stops/504370", "https://data.delijn.be/stops/509371"], ["https://data.delijn.be/stops/101520", "https://data.delijn.be/stops/102056"], ["https://data.delijn.be/stops/103722", "https://data.delijn.be/stops/108542"], ["https://data.delijn.be/stops/200555", "https://data.delijn.be/stops/201679"], ["https://data.delijn.be/stops/204144", "https://data.delijn.be/stops/204150"], ["https://data.delijn.be/stops/300229", "https://data.delijn.be/stops/307131"], ["https://data.delijn.be/stops/501353", "https://data.delijn.be/stops/506327"], ["https://data.delijn.be/stops/304873", "https://data.delijn.be/stops/308534"], ["https://data.delijn.be/stops/406127", "https://data.delijn.be/stops/406212"], ["https://data.delijn.be/stops/202033", "https://data.delijn.be/stops/203029"], ["https://data.delijn.be/stops/103591", "https://data.delijn.be/stops/103600"], ["https://data.delijn.be/stops/306939", "https://data.delijn.be/stops/307945"], ["https://data.delijn.be/stops/502346", "https://data.delijn.be/stops/507346"], ["https://data.delijn.be/stops/400755", "https://data.delijn.be/stops/409585"], ["https://data.delijn.be/stops/202881", "https://data.delijn.be/stops/203741"], ["https://data.delijn.be/stops/106772", "https://data.delijn.be/stops/107522"], ["https://data.delijn.be/stops/504058", "https://data.delijn.be/stops/509058"], ["https://data.delijn.be/stops/403291", "https://data.delijn.be/stops/403394"], ["https://data.delijn.be/stops/202092", "https://data.delijn.be/stops/203092"], ["https://data.delijn.be/stops/404118", "https://data.delijn.be/stops/404240"], ["https://data.delijn.be/stops/201089", "https://data.delijn.be/stops/216009"], ["https://data.delijn.be/stops/206203", "https://data.delijn.be/stops/207203"], ["https://data.delijn.be/stops/400800", "https://data.delijn.be/stops/400829"], ["https://data.delijn.be/stops/300573", "https://data.delijn.be/stops/300583"], ["https://data.delijn.be/stops/305536", "https://data.delijn.be/stops/305562"], ["https://data.delijn.be/stops/108434", "https://data.delijn.be/stops/108436"], ["https://data.delijn.be/stops/202597", "https://data.delijn.be/stops/203127"], ["https://data.delijn.be/stops/505908", "https://data.delijn.be/stops/508896"], ["https://data.delijn.be/stops/204364", "https://data.delijn.be/stops/204718"], ["https://data.delijn.be/stops/408143", "https://data.delijn.be/stops/307451"], ["https://data.delijn.be/stops/303965", "https://data.delijn.be/stops/304927"], ["https://data.delijn.be/stops/405525", "https://data.delijn.be/stops/407290"], ["https://data.delijn.be/stops/403659", "https://data.delijn.be/stops/405587"], ["https://data.delijn.be/stops/200102", "https://data.delijn.be/stops/210001"], ["https://data.delijn.be/stops/104301", "https://data.delijn.be/stops/109100"], ["https://data.delijn.be/stops/406204", "https://data.delijn.be/stops/410354"], ["https://data.delijn.be/stops/501668", "https://data.delijn.be/stops/501777"], ["https://data.delijn.be/stops/101172", "https://data.delijn.be/stops/101305"], ["https://data.delijn.be/stops/208690", "https://data.delijn.be/stops/208691"], ["https://data.delijn.be/stops/202490", "https://data.delijn.be/stops/203491"], ["https://data.delijn.be/stops/108947", "https://data.delijn.be/stops/108951"], ["https://data.delijn.be/stops/107830", "https://data.delijn.be/stops/204142"], ["https://data.delijn.be/stops/102933", "https://data.delijn.be/stops/106057"], ["https://data.delijn.be/stops/104519", "https://data.delijn.be/stops/303880"], ["https://data.delijn.be/stops/304310", "https://data.delijn.be/stops/304321"], ["https://data.delijn.be/stops/503691", "https://data.delijn.be/stops/508694"], ["https://data.delijn.be/stops/505013", "https://data.delijn.be/stops/505577"], ["https://data.delijn.be/stops/206842", "https://data.delijn.be/stops/207586"], ["https://data.delijn.be/stops/202026", "https://data.delijn.be/stops/203030"], ["https://data.delijn.be/stops/405148", "https://data.delijn.be/stops/405221"], ["https://data.delijn.be/stops/301116", "https://data.delijn.be/stops/302214"], ["https://data.delijn.be/stops/307642", "https://data.delijn.be/stops/307646"], ["https://data.delijn.be/stops/200028", "https://data.delijn.be/stops/201027"], ["https://data.delijn.be/stops/506074", "https://data.delijn.be/stops/506775"], ["https://data.delijn.be/stops/503034", "https://data.delijn.be/stops/508035"], ["https://data.delijn.be/stops/408524", "https://data.delijn.be/stops/408548"], ["https://data.delijn.be/stops/508054", "https://data.delijn.be/stops/509845"], ["https://data.delijn.be/stops/303636", "https://data.delijn.be/stops/304804"], ["https://data.delijn.be/stops/204913", "https://data.delijn.be/stops/205912"], ["https://data.delijn.be/stops/403110", "https://data.delijn.be/stops/403187"], ["https://data.delijn.be/stops/303141", "https://data.delijn.be/stops/306279"], ["https://data.delijn.be/stops/102560", "https://data.delijn.be/stops/102635"], ["https://data.delijn.be/stops/303718", "https://data.delijn.be/stops/303747"], ["https://data.delijn.be/stops/503580", "https://data.delijn.be/stops/503582"], ["https://data.delijn.be/stops/502295", "https://data.delijn.be/stops/507295"], ["https://data.delijn.be/stops/200195", "https://data.delijn.be/stops/201195"], ["https://data.delijn.be/stops/503639", "https://data.delijn.be/stops/508637"], ["https://data.delijn.be/stops/504558", "https://data.delijn.be/stops/505185"], ["https://data.delijn.be/stops/402688", "https://data.delijn.be/stops/306020"], ["https://data.delijn.be/stops/301427", "https://data.delijn.be/stops/301431"], ["https://data.delijn.be/stops/101587", "https://data.delijn.be/stops/105446"], ["https://data.delijn.be/stops/104948", "https://data.delijn.be/stops/401956"], ["https://data.delijn.be/stops/406077", "https://data.delijn.be/stops/406085"], ["https://data.delijn.be/stops/301313", "https://data.delijn.be/stops/301320"], ["https://data.delijn.be/stops/204417", "https://data.delijn.be/stops/205115"], ["https://data.delijn.be/stops/103550", "https://data.delijn.be/stops/103725"], ["https://data.delijn.be/stops/101677", "https://data.delijn.be/stops/101683"], ["https://data.delijn.be/stops/305989", "https://data.delijn.be/stops/307234"], ["https://data.delijn.be/stops/504215", "https://data.delijn.be/stops/504690"], ["https://data.delijn.be/stops/304165", "https://data.delijn.be/stops/304786"], ["https://data.delijn.be/stops/307034", "https://data.delijn.be/stops/307908"], ["https://data.delijn.be/stops/105026", "https://data.delijn.be/stops/109523"], ["https://data.delijn.be/stops/401177", "https://data.delijn.be/stops/406568"], ["https://data.delijn.be/stops/401092", "https://data.delijn.be/stops/401113"], ["https://data.delijn.be/stops/307580", "https://data.delijn.be/stops/307676"], ["https://data.delijn.be/stops/503476", "https://data.delijn.be/stops/503477"], ["https://data.delijn.be/stops/101944", "https://data.delijn.be/stops/108786"], ["https://data.delijn.be/stops/505722", "https://data.delijn.be/stops/506117"], ["https://data.delijn.be/stops/408115", "https://data.delijn.be/stops/408454"], ["https://data.delijn.be/stops/409271", "https://data.delijn.be/stops/409332"], ["https://data.delijn.be/stops/505274", "https://data.delijn.be/stops/505831"], ["https://data.delijn.be/stops/301881", "https://data.delijn.be/stops/302065"], ["https://data.delijn.be/stops/206522", "https://data.delijn.be/stops/206523"], ["https://data.delijn.be/stops/107484", "https://data.delijn.be/stops/107486"], ["https://data.delijn.be/stops/501417", "https://data.delijn.be/stops/506417"], ["https://data.delijn.be/stops/101854", "https://data.delijn.be/stops/107906"], ["https://data.delijn.be/stops/202233", "https://data.delijn.be/stops/203234"], ["https://data.delijn.be/stops/503979", "https://data.delijn.be/stops/505054"], ["https://data.delijn.be/stops/401849", "https://data.delijn.be/stops/406196"], ["https://data.delijn.be/stops/101614", "https://data.delijn.be/stops/106575"], ["https://data.delijn.be/stops/104602", "https://data.delijn.be/stops/108044"], ["https://data.delijn.be/stops/508164", "https://data.delijn.be/stops/508175"], ["https://data.delijn.be/stops/403735", "https://data.delijn.be/stops/403814"], ["https://data.delijn.be/stops/204383", "https://data.delijn.be/stops/204384"], ["https://data.delijn.be/stops/505437", "https://data.delijn.be/stops/507769"], ["https://data.delijn.be/stops/300457", "https://data.delijn.be/stops/300460"], ["https://data.delijn.be/stops/104041", "https://data.delijn.be/stops/108523"], ["https://data.delijn.be/stops/103671", "https://data.delijn.be/stops/106257"], ["https://data.delijn.be/stops/200803", "https://data.delijn.be/stops/202061"], ["https://data.delijn.be/stops/207367", "https://data.delijn.be/stops/207809"], ["https://data.delijn.be/stops/408274", "https://data.delijn.be/stops/408404"], ["https://data.delijn.be/stops/408505", "https://data.delijn.be/stops/408538"], ["https://data.delijn.be/stops/403383", "https://data.delijn.be/stops/410294"], ["https://data.delijn.be/stops/202477", "https://data.delijn.be/stops/202478"], ["https://data.delijn.be/stops/407017", "https://data.delijn.be/stops/410017"], ["https://data.delijn.be/stops/503635", "https://data.delijn.be/stops/508756"], ["https://data.delijn.be/stops/206351", "https://data.delijn.be/stops/206376"], ["https://data.delijn.be/stops/102198", "https://data.delijn.be/stops/102237"], ["https://data.delijn.be/stops/404989", "https://data.delijn.be/stops/404992"], ["https://data.delijn.be/stops/400847", "https://data.delijn.be/stops/400859"], ["https://data.delijn.be/stops/502246", "https://data.delijn.be/stops/502911"], ["https://data.delijn.be/stops/501017", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/201939", "https://data.delijn.be/stops/202945"], ["https://data.delijn.be/stops/208405", "https://data.delijn.be/stops/209414"], ["https://data.delijn.be/stops/504578", "https://data.delijn.be/stops/504579"], ["https://data.delijn.be/stops/302499", "https://data.delijn.be/stops/302501"], ["https://data.delijn.be/stops/500137", "https://data.delijn.be/stops/590332"], ["https://data.delijn.be/stops/303876", "https://data.delijn.be/stops/307870"], ["https://data.delijn.be/stops/106966", "https://data.delijn.be/stops/109508"], ["https://data.delijn.be/stops/407344", "https://data.delijn.be/stops/407345"], ["https://data.delijn.be/stops/205049", "https://data.delijn.be/stops/205052"], ["https://data.delijn.be/stops/206309", "https://data.delijn.be/stops/207310"], ["https://data.delijn.be/stops/103332", "https://data.delijn.be/stops/106440"], ["https://data.delijn.be/stops/200659", "https://data.delijn.be/stops/205928"], ["https://data.delijn.be/stops/409644", "https://data.delijn.be/stops/409825"], ["https://data.delijn.be/stops/503264", "https://data.delijn.be/stops/503265"], ["https://data.delijn.be/stops/503252", "https://data.delijn.be/stops/508252"], ["https://data.delijn.be/stops/504095", "https://data.delijn.be/stops/505192"], ["https://data.delijn.be/stops/218016", "https://data.delijn.be/stops/219028"], ["https://data.delijn.be/stops/308033", "https://data.delijn.be/stops/308034"], ["https://data.delijn.be/stops/102742", "https://data.delijn.be/stops/103037"], ["https://data.delijn.be/stops/300393", "https://data.delijn.be/stops/308963"], ["https://data.delijn.be/stops/300536", "https://data.delijn.be/stops/300537"], ["https://data.delijn.be/stops/501655", "https://data.delijn.be/stops/501778"], ["https://data.delijn.be/stops/505169", "https://data.delijn.be/stops/509338"], ["https://data.delijn.be/stops/302889", "https://data.delijn.be/stops/307048"], ["https://data.delijn.be/stops/304077", "https://data.delijn.be/stops/307817"], ["https://data.delijn.be/stops/109181", "https://data.delijn.be/stops/109225"], ["https://data.delijn.be/stops/107701", "https://data.delijn.be/stops/107702"], ["https://data.delijn.be/stops/407229", "https://data.delijn.be/stops/407234"], ["https://data.delijn.be/stops/304581", "https://data.delijn.be/stops/307027"], ["https://data.delijn.be/stops/106897", "https://data.delijn.be/stops/109884"], ["https://data.delijn.be/stops/301227", "https://data.delijn.be/stops/304270"], ["https://data.delijn.be/stops/201155", "https://data.delijn.be/stops/201453"], ["https://data.delijn.be/stops/106253", "https://data.delijn.be/stops/106254"], ["https://data.delijn.be/stops/304287", "https://data.delijn.be/stops/304288"], ["https://data.delijn.be/stops/200763", "https://data.delijn.be/stops/209301"], ["https://data.delijn.be/stops/306665", "https://data.delijn.be/stops/306667"], ["https://data.delijn.be/stops/402863", "https://data.delijn.be/stops/403647"], ["https://data.delijn.be/stops/404484", "https://data.delijn.be/stops/404485"], ["https://data.delijn.be/stops/501010", "https://data.delijn.be/stops/502080"], ["https://data.delijn.be/stops/304908", "https://data.delijn.be/stops/306178"], ["https://data.delijn.be/stops/508167", "https://data.delijn.be/stops/508168"], ["https://data.delijn.be/stops/104943", "https://data.delijn.be/stops/108228"], ["https://data.delijn.be/stops/106657", "https://data.delijn.be/stops/106659"], ["https://data.delijn.be/stops/201175", "https://data.delijn.be/stops/201176"], ["https://data.delijn.be/stops/402002", "https://data.delijn.be/stops/406049"], ["https://data.delijn.be/stops/201869", "https://data.delijn.be/stops/202658"], ["https://data.delijn.be/stops/301324", "https://data.delijn.be/stops/306654"], ["https://data.delijn.be/stops/402436", "https://data.delijn.be/stops/402437"], ["https://data.delijn.be/stops/508677", "https://data.delijn.be/stops/508678"], ["https://data.delijn.be/stops/301564", "https://data.delijn.be/stops/308080"], ["https://data.delijn.be/stops/200198", "https://data.delijn.be/stops/201187"], ["https://data.delijn.be/stops/409594", "https://data.delijn.be/stops/409596"], ["https://data.delijn.be/stops/308900", "https://data.delijn.be/stops/308901"], ["https://data.delijn.be/stops/501338", "https://data.delijn.be/stops/509897"], ["https://data.delijn.be/stops/503242", "https://data.delijn.be/stops/508251"], ["https://data.delijn.be/stops/101224", "https://data.delijn.be/stops/108517"], ["https://data.delijn.be/stops/501444", "https://data.delijn.be/stops/506440"], ["https://data.delijn.be/stops/302003", "https://data.delijn.be/stops/302012"], ["https://data.delijn.be/stops/405032", "https://data.delijn.be/stops/405033"], ["https://data.delijn.be/stops/406179", "https://data.delijn.be/stops/406181"], ["https://data.delijn.be/stops/501296", "https://data.delijn.be/stops/501336"], ["https://data.delijn.be/stops/109844", "https://data.delijn.be/stops/109847"], ["https://data.delijn.be/stops/101502", "https://data.delijn.be/stops/308497"], ["https://data.delijn.be/stops/203852", "https://data.delijn.be/stops/211098"], ["https://data.delijn.be/stops/300384", "https://data.delijn.be/stops/307895"], ["https://data.delijn.be/stops/206919", "https://data.delijn.be/stops/207841"], ["https://data.delijn.be/stops/101357", "https://data.delijn.be/stops/102188"], ["https://data.delijn.be/stops/502296", "https://data.delijn.be/stops/507296"], ["https://data.delijn.be/stops/504100", "https://data.delijn.be/stops/504202"], ["https://data.delijn.be/stops/407051", "https://data.delijn.be/stops/407076"], ["https://data.delijn.be/stops/200425", "https://data.delijn.be/stops/201425"], ["https://data.delijn.be/stops/504362", "https://data.delijn.be/stops/508664"], ["https://data.delijn.be/stops/303984", "https://data.delijn.be/stops/304289"], ["https://data.delijn.be/stops/508300", "https://data.delijn.be/stops/508968"], ["https://data.delijn.be/stops/109123", "https://data.delijn.be/stops/109126"], ["https://data.delijn.be/stops/304419", "https://data.delijn.be/stops/304420"], ["https://data.delijn.be/stops/405443", "https://data.delijn.be/stops/408783"], ["https://data.delijn.be/stops/202046", "https://data.delijn.be/stops/203046"], ["https://data.delijn.be/stops/401259", "https://data.delijn.be/stops/406681"], ["https://data.delijn.be/stops/501732", "https://data.delijn.be/stops/506732"], ["https://data.delijn.be/stops/504247", "https://data.delijn.be/stops/509248"], ["https://data.delijn.be/stops/204015", "https://data.delijn.be/stops/205015"], ["https://data.delijn.be/stops/401813", "https://data.delijn.be/stops/410044"], ["https://data.delijn.be/stops/505344", "https://data.delijn.be/stops/505655"], ["https://data.delijn.be/stops/504126", "https://data.delijn.be/stops/509122"], ["https://data.delijn.be/stops/400810", "https://data.delijn.be/stops/400811"], ["https://data.delijn.be/stops/208204", "https://data.delijn.be/stops/209109"], ["https://data.delijn.be/stops/207441", "https://data.delijn.be/stops/209696"], ["https://data.delijn.be/stops/407753", "https://data.delijn.be/stops/409792"], ["https://data.delijn.be/stops/300109", "https://data.delijn.be/stops/300110"], ["https://data.delijn.be/stops/208357", "https://data.delijn.be/stops/209185"], ["https://data.delijn.be/stops/307596", "https://data.delijn.be/stops/307742"], ["https://data.delijn.be/stops/502745", "https://data.delijn.be/stops/505697"], ["https://data.delijn.be/stops/403826", "https://data.delijn.be/stops/403886"], ["https://data.delijn.be/stops/300441", "https://data.delijn.be/stops/300442"], ["https://data.delijn.be/stops/200318", "https://data.delijn.be/stops/201319"], ["https://data.delijn.be/stops/204292", "https://data.delijn.be/stops/205537"], ["https://data.delijn.be/stops/303310", "https://data.delijn.be/stops/303313"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/510013"], ["https://data.delijn.be/stops/200390", "https://data.delijn.be/stops/201394"], ["https://data.delijn.be/stops/405867", "https://data.delijn.be/stops/409727"], ["https://data.delijn.be/stops/405869", "https://data.delijn.be/stops/409769"], ["https://data.delijn.be/stops/303183", "https://data.delijn.be/stops/304915"], ["https://data.delijn.be/stops/200778", "https://data.delijn.be/stops/202234"], ["https://data.delijn.be/stops/108916", "https://data.delijn.be/stops/109411"], ["https://data.delijn.be/stops/104971", "https://data.delijn.be/stops/105298"], ["https://data.delijn.be/stops/102841", "https://data.delijn.be/stops/103048"], ["https://data.delijn.be/stops/405928", "https://data.delijn.be/stops/405977"], ["https://data.delijn.be/stops/208269", "https://data.delijn.be/stops/209269"], ["https://data.delijn.be/stops/300308", "https://data.delijn.be/stops/300511"], ["https://data.delijn.be/stops/104412", "https://data.delijn.be/stops/204337"], ["https://data.delijn.be/stops/404882", "https://data.delijn.be/stops/404944"], ["https://data.delijn.be/stops/108059", "https://data.delijn.be/stops/108878"], ["https://data.delijn.be/stops/300038", "https://data.delijn.be/stops/306865"], ["https://data.delijn.be/stops/401642", "https://data.delijn.be/stops/408807"], ["https://data.delijn.be/stops/504840", "https://data.delijn.be/stops/505919"], ["https://data.delijn.be/stops/106770", "https://data.delijn.be/stops/107522"], ["https://data.delijn.be/stops/501450", "https://data.delijn.be/stops/506449"], ["https://data.delijn.be/stops/509753", "https://data.delijn.be/stops/509754"], ["https://data.delijn.be/stops/503878", "https://data.delijn.be/stops/509752"], ["https://data.delijn.be/stops/505730", "https://data.delijn.be/stops/507290"], ["https://data.delijn.be/stops/505218", "https://data.delijn.be/stops/505993"], ["https://data.delijn.be/stops/504263", "https://data.delijn.be/stops/509683"], ["https://data.delijn.be/stops/105158", "https://data.delijn.be/stops/105159"], ["https://data.delijn.be/stops/300181", "https://data.delijn.be/stops/300182"], ["https://data.delijn.be/stops/301130", "https://data.delijn.be/stops/302876"], ["https://data.delijn.be/stops/203316", "https://data.delijn.be/stops/208887"], ["https://data.delijn.be/stops/200811", "https://data.delijn.be/stops/203052"], ["https://data.delijn.be/stops/406338", "https://data.delijn.be/stops/406339"], ["https://data.delijn.be/stops/504244", "https://data.delijn.be/stops/504250"], ["https://data.delijn.be/stops/208558", "https://data.delijn.be/stops/209558"], ["https://data.delijn.be/stops/400924", "https://data.delijn.be/stops/400929"], ["https://data.delijn.be/stops/208778", "https://data.delijn.be/stops/209361"], ["https://data.delijn.be/stops/503726", "https://data.delijn.be/stops/509968"], ["https://data.delijn.be/stops/206978", "https://data.delijn.be/stops/304262"], ["https://data.delijn.be/stops/302870", "https://data.delijn.be/stops/307019"], ["https://data.delijn.be/stops/102604", "https://data.delijn.be/stops/102606"], ["https://data.delijn.be/stops/303966", "https://data.delijn.be/stops/303968"], ["https://data.delijn.be/stops/201908", "https://data.delijn.be/stops/202520"], ["https://data.delijn.be/stops/400210", "https://data.delijn.be/stops/400240"], ["https://data.delijn.be/stops/205388", "https://data.delijn.be/stops/205389"], ["https://data.delijn.be/stops/302105", "https://data.delijn.be/stops/302277"], ["https://data.delijn.be/stops/207979", "https://data.delijn.be/stops/301093"], ["https://data.delijn.be/stops/401814", "https://data.delijn.be/stops/406891"], ["https://data.delijn.be/stops/107448", "https://data.delijn.be/stops/107451"], ["https://data.delijn.be/stops/302321", "https://data.delijn.be/stops/303439"], ["https://data.delijn.be/stops/101485", "https://data.delijn.be/stops/102235"], ["https://data.delijn.be/stops/301490", "https://data.delijn.be/stops/301504"], ["https://data.delijn.be/stops/101938", "https://data.delijn.be/stops/109344"], ["https://data.delijn.be/stops/402156", "https://data.delijn.be/stops/402244"], ["https://data.delijn.be/stops/307208", "https://data.delijn.be/stops/307219"], ["https://data.delijn.be/stops/204344", "https://data.delijn.be/stops/205344"], ["https://data.delijn.be/stops/203428", "https://data.delijn.be/stops/203466"], ["https://data.delijn.be/stops/304765", "https://data.delijn.be/stops/304771"], ["https://data.delijn.be/stops/106494", "https://data.delijn.be/stops/106497"], ["https://data.delijn.be/stops/505236", "https://data.delijn.be/stops/505312"], ["https://data.delijn.be/stops/101451", "https://data.delijn.be/stops/101456"], ["https://data.delijn.be/stops/206393", "https://data.delijn.be/stops/207393"], ["https://data.delijn.be/stops/204085", "https://data.delijn.be/stops/205085"], ["https://data.delijn.be/stops/204058", "https://data.delijn.be/stops/205725"], ["https://data.delijn.be/stops/107365", "https://data.delijn.be/stops/107905"], ["https://data.delijn.be/stops/502001", "https://data.delijn.be/stops/507008"], ["https://data.delijn.be/stops/406374", "https://data.delijn.be/stops/409884"], ["https://data.delijn.be/stops/400789", "https://data.delijn.be/stops/400799"], ["https://data.delijn.be/stops/204706", "https://data.delijn.be/stops/205314"], ["https://data.delijn.be/stops/107864", "https://data.delijn.be/stops/107866"], ["https://data.delijn.be/stops/300311", "https://data.delijn.be/stops/302440"], ["https://data.delijn.be/stops/200037", "https://data.delijn.be/stops/200239"], ["https://data.delijn.be/stops/403374", "https://data.delijn.be/stops/404123"], ["https://data.delijn.be/stops/502062", "https://data.delijn.be/stops/507187"], ["https://data.delijn.be/stops/303469", "https://data.delijn.be/stops/303482"], ["https://data.delijn.be/stops/407011", "https://data.delijn.be/stops/407053"], ["https://data.delijn.be/stops/502603", "https://data.delijn.be/stops/507598"], ["https://data.delijn.be/stops/502225", "https://data.delijn.be/stops/505987"], ["https://data.delijn.be/stops/407608", "https://data.delijn.be/stops/407611"], ["https://data.delijn.be/stops/302800", "https://data.delijn.be/stops/307837"], ["https://data.delijn.be/stops/504614", "https://data.delijn.be/stops/505422"], ["https://data.delijn.be/stops/401258", "https://data.delijn.be/stops/401281"], ["https://data.delijn.be/stops/401379", "https://data.delijn.be/stops/410171"], ["https://data.delijn.be/stops/301706", "https://data.delijn.be/stops/308696"], ["https://data.delijn.be/stops/501053", "https://data.delijn.be/stops/505359"], ["https://data.delijn.be/stops/303588", "https://data.delijn.be/stops/305221"], ["https://data.delijn.be/stops/101970", "https://data.delijn.be/stops/105145"], ["https://data.delijn.be/stops/300639", "https://data.delijn.be/stops/306747"], ["https://data.delijn.be/stops/200912", "https://data.delijn.be/stops/203098"], ["https://data.delijn.be/stops/506369", "https://data.delijn.be/stops/590413"], ["https://data.delijn.be/stops/204039", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/504472", "https://data.delijn.be/stops/509424"], ["https://data.delijn.be/stops/109184", "https://data.delijn.be/stops/109878"], ["https://data.delijn.be/stops/105486", "https://data.delijn.be/stops/105498"], ["https://data.delijn.be/stops/307013", "https://data.delijn.be/stops/307014"], ["https://data.delijn.be/stops/101369", "https://data.delijn.be/stops/101406"], ["https://data.delijn.be/stops/304839", "https://data.delijn.be/stops/304840"], ["https://data.delijn.be/stops/406597", "https://data.delijn.be/stops/406642"], ["https://data.delijn.be/stops/101223", "https://data.delijn.be/stops/107789"], ["https://data.delijn.be/stops/200345", "https://data.delijn.be/stops/201359"], ["https://data.delijn.be/stops/101834", "https://data.delijn.be/stops/108238"], ["https://data.delijn.be/stops/504687", "https://data.delijn.be/stops/508378"], ["https://data.delijn.be/stops/400100", "https://data.delijn.be/stops/400158"], ["https://data.delijn.be/stops/407625", "https://data.delijn.be/stops/409805"], ["https://data.delijn.be/stops/206975", "https://data.delijn.be/stops/207974"], ["https://data.delijn.be/stops/302380", "https://data.delijn.be/stops/302383"], ["https://data.delijn.be/stops/204725", "https://data.delijn.be/stops/205724"], ["https://data.delijn.be/stops/109280", "https://data.delijn.be/stops/109283"], ["https://data.delijn.be/stops/101700", "https://data.delijn.be/stops/104719"], ["https://data.delijn.be/stops/202820", "https://data.delijn.be/stops/203912"], ["https://data.delijn.be/stops/502326", "https://data.delijn.be/stops/502336"], ["https://data.delijn.be/stops/403201", "https://data.delijn.be/stops/403418"], ["https://data.delijn.be/stops/502763", "https://data.delijn.be/stops/507758"], ["https://data.delijn.be/stops/503636", "https://data.delijn.be/stops/508638"], ["https://data.delijn.be/stops/305054", "https://data.delijn.be/stops/305055"], ["https://data.delijn.be/stops/204158", "https://data.delijn.be/stops/206275"], ["https://data.delijn.be/stops/400084", "https://data.delijn.be/stops/400133"], ["https://data.delijn.be/stops/201805", "https://data.delijn.be/stops/209261"], ["https://data.delijn.be/stops/101018", "https://data.delijn.be/stops/102945"], ["https://data.delijn.be/stops/204434", "https://data.delijn.be/stops/204436"], ["https://data.delijn.be/stops/102827", "https://data.delijn.be/stops/106681"], ["https://data.delijn.be/stops/302792", "https://data.delijn.be/stops/304872"], ["https://data.delijn.be/stops/307508", "https://data.delijn.be/stops/307510"], ["https://data.delijn.be/stops/208493", "https://data.delijn.be/stops/209493"], ["https://data.delijn.be/stops/502710", "https://data.delijn.be/stops/505010"], ["https://data.delijn.be/stops/301243", "https://data.delijn.be/stops/307622"], ["https://data.delijn.be/stops/102874", "https://data.delijn.be/stops/103751"], ["https://data.delijn.be/stops/401780", "https://data.delijn.be/stops/401790"], ["https://data.delijn.be/stops/505786", "https://data.delijn.be/stops/505787"], ["https://data.delijn.be/stops/108324", "https://data.delijn.be/stops/108342"], ["https://data.delijn.be/stops/402893", "https://data.delijn.be/stops/306044"], ["https://data.delijn.be/stops/502496", "https://data.delijn.be/stops/507496"], ["https://data.delijn.be/stops/203781", "https://data.delijn.be/stops/203782"], ["https://data.delijn.be/stops/502502", "https://data.delijn.be/stops/505767"], ["https://data.delijn.be/stops/503411", "https://data.delijn.be/stops/503438"], ["https://data.delijn.be/stops/102651", "https://data.delijn.be/stops/104579"], ["https://data.delijn.be/stops/402157", "https://data.delijn.be/stops/409372"], ["https://data.delijn.be/stops/405436", "https://data.delijn.be/stops/406733"], ["https://data.delijn.be/stops/503556", "https://data.delijn.be/stops/503571"], ["https://data.delijn.be/stops/304613", "https://data.delijn.be/stops/304614"], ["https://data.delijn.be/stops/206671", "https://data.delijn.be/stops/208054"], ["https://data.delijn.be/stops/105741", "https://data.delijn.be/stops/109958"], ["https://data.delijn.be/stops/502457", "https://data.delijn.be/stops/502463"], ["https://data.delijn.be/stops/107346", "https://data.delijn.be/stops/108161"], ["https://data.delijn.be/stops/405838", "https://data.delijn.be/stops/405842"], ["https://data.delijn.be/stops/208056", "https://data.delijn.be/stops/209092"], ["https://data.delijn.be/stops/304911", "https://data.delijn.be/stops/306408"], ["https://data.delijn.be/stops/503188", "https://data.delijn.be/stops/504820"], ["https://data.delijn.be/stops/401278", "https://data.delijn.be/stops/401478"], ["https://data.delijn.be/stops/300999", "https://data.delijn.be/stops/308355"], ["https://data.delijn.be/stops/407074", "https://data.delijn.be/stops/407778"], ["https://data.delijn.be/stops/201202", "https://data.delijn.be/stops/203776"], ["https://data.delijn.be/stops/208200", "https://data.delijn.be/stops/209199"], ["https://data.delijn.be/stops/101606", "https://data.delijn.be/stops/105758"], ["https://data.delijn.be/stops/300200", "https://data.delijn.be/stops/306170"], ["https://data.delijn.be/stops/107822", "https://data.delijn.be/stops/107882"], ["https://data.delijn.be/stops/208031", "https://data.delijn.be/stops/208032"], ["https://data.delijn.be/stops/209337", "https://data.delijn.be/stops/209360"], ["https://data.delijn.be/stops/502182", "https://data.delijn.be/stops/507182"], ["https://data.delijn.be/stops/405330", "https://data.delijn.be/stops/409300"], ["https://data.delijn.be/stops/401110", "https://data.delijn.be/stops/401156"], ["https://data.delijn.be/stops/400252", "https://data.delijn.be/stops/408364"], ["https://data.delijn.be/stops/108333", "https://data.delijn.be/stops/108334"], ["https://data.delijn.be/stops/402578", "https://data.delijn.be/stops/402655"], ["https://data.delijn.be/stops/507599", "https://data.delijn.be/stops/507601"], ["https://data.delijn.be/stops/403589", "https://data.delijn.be/stops/403590"], ["https://data.delijn.be/stops/101790", "https://data.delijn.be/stops/102390"], ["https://data.delijn.be/stops/400789", "https://data.delijn.be/stops/409604"], ["https://data.delijn.be/stops/402780", "https://data.delijn.be/stops/402781"], ["https://data.delijn.be/stops/405758", "https://data.delijn.be/stops/308932"], ["https://data.delijn.be/stops/406523", "https://data.delijn.be/stops/406555"], ["https://data.delijn.be/stops/503178", "https://data.delijn.be/stops/508177"], ["https://data.delijn.be/stops/400958", "https://data.delijn.be/stops/400959"], ["https://data.delijn.be/stops/408133", "https://data.delijn.be/stops/408389"], ["https://data.delijn.be/stops/206378", "https://data.delijn.be/stops/207725"], ["https://data.delijn.be/stops/202827", "https://data.delijn.be/stops/203827"], ["https://data.delijn.be/stops/405066", "https://data.delijn.be/stops/405112"], ["https://data.delijn.be/stops/200383", "https://data.delijn.be/stops/201140"], ["https://data.delijn.be/stops/305408", "https://data.delijn.be/stops/305417"], ["https://data.delijn.be/stops/200889", "https://data.delijn.be/stops/202330"], ["https://data.delijn.be/stops/109047", "https://data.delijn.be/stops/306862"], ["https://data.delijn.be/stops/101382", "https://data.delijn.be/stops/107098"], ["https://data.delijn.be/stops/105616", "https://data.delijn.be/stops/105657"], ["https://data.delijn.be/stops/302907", "https://data.delijn.be/stops/304710"], ["https://data.delijn.be/stops/302877", "https://data.delijn.be/stops/302889"], ["https://data.delijn.be/stops/503762", "https://data.delijn.be/stops/508756"], ["https://data.delijn.be/stops/103645", "https://data.delijn.be/stops/103646"], ["https://data.delijn.be/stops/504369", "https://data.delijn.be/stops/508134"], ["https://data.delijn.be/stops/300115", "https://data.delijn.be/stops/300116"], ["https://data.delijn.be/stops/405676", "https://data.delijn.be/stops/405678"], ["https://data.delijn.be/stops/404958", "https://data.delijn.be/stops/404962"], ["https://data.delijn.be/stops/300392", "https://data.delijn.be/stops/301247"], ["https://data.delijn.be/stops/107041", "https://data.delijn.be/stops/108244"], ["https://data.delijn.be/stops/400675", "https://data.delijn.be/stops/405401"], ["https://data.delijn.be/stops/302731", "https://data.delijn.be/stops/302732"], ["https://data.delijn.be/stops/101961", "https://data.delijn.be/stops/108774"], ["https://data.delijn.be/stops/103631", "https://data.delijn.be/stops/107562"], ["https://data.delijn.be/stops/503494", "https://data.delijn.be/stops/503498"], ["https://data.delijn.be/stops/504140", "https://data.delijn.be/stops/505442"], ["https://data.delijn.be/stops/400326", "https://data.delijn.be/stops/400355"], ["https://data.delijn.be/stops/503494", "https://data.delijn.be/stops/508496"], ["https://data.delijn.be/stops/302647", "https://data.delijn.be/stops/302650"], ["https://data.delijn.be/stops/204036", "https://data.delijn.be/stops/205036"], ["https://data.delijn.be/stops/200640", "https://data.delijn.be/stops/201629"], ["https://data.delijn.be/stops/207039", "https://data.delijn.be/stops/207050"], ["https://data.delijn.be/stops/504643", "https://data.delijn.be/stops/504657"], ["https://data.delijn.be/stops/507054", "https://data.delijn.be/stops/507441"], ["https://data.delijn.be/stops/505619", "https://data.delijn.be/stops/505621"], ["https://data.delijn.be/stops/202315", "https://data.delijn.be/stops/203316"], ["https://data.delijn.be/stops/300123", "https://data.delijn.be/stops/300124"], ["https://data.delijn.be/stops/405662", "https://data.delijn.be/stops/405663"], ["https://data.delijn.be/stops/409351", "https://data.delijn.be/stops/409441"], ["https://data.delijn.be/stops/106995", "https://data.delijn.be/stops/107316"], ["https://data.delijn.be/stops/101507", "https://data.delijn.be/stops/109027"], ["https://data.delijn.be/stops/502171", "https://data.delijn.be/stops/507171"], ["https://data.delijn.be/stops/502415", "https://data.delijn.be/stops/502431"], ["https://data.delijn.be/stops/103604", "https://data.delijn.be/stops/109401"], ["https://data.delijn.be/stops/205258", "https://data.delijn.be/stops/205262"], ["https://data.delijn.be/stops/103363", "https://data.delijn.be/stops/104995"], ["https://data.delijn.be/stops/400992", "https://data.delijn.be/stops/406586"], ["https://data.delijn.be/stops/501197", "https://data.delijn.be/stops/506190"], ["https://data.delijn.be/stops/404596", "https://data.delijn.be/stops/404603"], ["https://data.delijn.be/stops/404200", "https://data.delijn.be/stops/404201"], ["https://data.delijn.be/stops/503841", "https://data.delijn.be/stops/505373"], ["https://data.delijn.be/stops/200154", "https://data.delijn.be/stops/201154"], ["https://data.delijn.be/stops/303046", "https://data.delijn.be/stops/305516"], ["https://data.delijn.be/stops/500943", "https://data.delijn.be/stops/508987"], ["https://data.delijn.be/stops/200235", "https://data.delijn.be/stops/201235"], ["https://data.delijn.be/stops/404963", "https://data.delijn.be/stops/404964"], ["https://data.delijn.be/stops/300347", "https://data.delijn.be/stops/304543"], ["https://data.delijn.be/stops/401425", "https://data.delijn.be/stops/401575"], ["https://data.delijn.be/stops/502435", "https://data.delijn.be/stops/507416"], ["https://data.delijn.be/stops/408950", "https://data.delijn.be/stops/408980"], ["https://data.delijn.be/stops/402404", "https://data.delijn.be/stops/409599"], ["https://data.delijn.be/stops/402524", "https://data.delijn.be/stops/402649"], ["https://data.delijn.be/stops/400122", "https://data.delijn.be/stops/400129"], ["https://data.delijn.be/stops/201858", "https://data.delijn.be/stops/202673"], ["https://data.delijn.be/stops/503090", "https://data.delijn.be/stops/508090"], ["https://data.delijn.be/stops/405343", "https://data.delijn.be/stops/308732"], ["https://data.delijn.be/stops/206746", "https://data.delijn.be/stops/207711"], ["https://data.delijn.be/stops/206583", "https://data.delijn.be/stops/207556"], ["https://data.delijn.be/stops/103723", "https://data.delijn.be/stops/108381"], ["https://data.delijn.be/stops/403427", "https://data.delijn.be/stops/403686"], ["https://data.delijn.be/stops/101509", "https://data.delijn.be/stops/101512"], ["https://data.delijn.be/stops/503487", "https://data.delijn.be/stops/504190"], ["https://data.delijn.be/stops/206768", "https://data.delijn.be/stops/206790"], ["https://data.delijn.be/stops/407152", "https://data.delijn.be/stops/407153"], ["https://data.delijn.be/stops/201455", "https://data.delijn.be/stops/203318"], ["https://data.delijn.be/stops/206764", "https://data.delijn.be/stops/307316"], ["https://data.delijn.be/stops/404721", "https://data.delijn.be/stops/404755"], ["https://data.delijn.be/stops/502449", "https://data.delijn.be/stops/502589"], ["https://data.delijn.be/stops/501498", "https://data.delijn.be/stops/506290"], ["https://data.delijn.be/stops/106013", "https://data.delijn.be/stops/106016"], ["https://data.delijn.be/stops/504000", "https://data.delijn.be/stops/504255"], ["https://data.delijn.be/stops/505894", "https://data.delijn.be/stops/507167"], ["https://data.delijn.be/stops/104805", "https://data.delijn.be/stops/105655"], ["https://data.delijn.be/stops/201044", "https://data.delijn.be/stops/201126"], ["https://data.delijn.be/stops/102430", "https://data.delijn.be/stops/103005"], ["https://data.delijn.be/stops/300461", "https://data.delijn.be/stops/300462"], ["https://data.delijn.be/stops/501470", "https://data.delijn.be/stops/506468"], ["https://data.delijn.be/stops/306296", "https://data.delijn.be/stops/306299"], ["https://data.delijn.be/stops/201859", "https://data.delijn.be/stops/210036"], ["https://data.delijn.be/stops/402085", "https://data.delijn.be/stops/402086"], ["https://data.delijn.be/stops/103022", "https://data.delijn.be/stops/104947"], ["https://data.delijn.be/stops/408664", "https://data.delijn.be/stops/408737"], ["https://data.delijn.be/stops/300431", "https://data.delijn.be/stops/300432"], ["https://data.delijn.be/stops/503870", "https://data.delijn.be/stops/509756"], ["https://data.delijn.be/stops/204202", "https://data.delijn.be/stops/205202"], ["https://data.delijn.be/stops/304760", "https://data.delijn.be/stops/304769"], ["https://data.delijn.be/stops/505635", "https://data.delijn.be/stops/509806"], ["https://data.delijn.be/stops/505087", "https://data.delijn.be/stops/505583"], ["https://data.delijn.be/stops/403049", "https://data.delijn.be/stops/403090"], ["https://data.delijn.be/stops/107032", "https://data.delijn.be/stops/107033"], ["https://data.delijn.be/stops/304494", "https://data.delijn.be/stops/304509"], ["https://data.delijn.be/stops/403831", "https://data.delijn.be/stops/405636"], ["https://data.delijn.be/stops/211017", "https://data.delijn.be/stops/502065"], ["https://data.delijn.be/stops/300749", "https://data.delijn.be/stops/300791"], ["https://data.delijn.be/stops/104981", "https://data.delijn.be/stops/104982"], ["https://data.delijn.be/stops/107121", "https://data.delijn.be/stops/109122"], ["https://data.delijn.be/stops/305145", "https://data.delijn.be/stops/307283"], ["https://data.delijn.be/stops/301532", "https://data.delijn.be/stops/301541"], ["https://data.delijn.be/stops/406574", "https://data.delijn.be/stops/410202"], ["https://data.delijn.be/stops/502055", "https://data.delijn.be/stops/507055"], ["https://data.delijn.be/stops/304556", "https://data.delijn.be/stops/307575"], ["https://data.delijn.be/stops/405696", "https://data.delijn.be/stops/405697"], ["https://data.delijn.be/stops/503072", "https://data.delijn.be/stops/508072"], ["https://data.delijn.be/stops/206902", "https://data.delijn.be/stops/207265"], ["https://data.delijn.be/stops/402352", "https://data.delijn.be/stops/405556"], ["https://data.delijn.be/stops/505575", "https://data.delijn.be/stops/505689"], ["https://data.delijn.be/stops/202119", "https://data.delijn.be/stops/204598"], ["https://data.delijn.be/stops/109507", "https://data.delijn.be/stops/109510"], ["https://data.delijn.be/stops/103525", "https://data.delijn.be/stops/103750"], ["https://data.delijn.be/stops/106789", "https://data.delijn.be/stops/106791"], ["https://data.delijn.be/stops/402802", "https://data.delijn.be/stops/402803"], ["https://data.delijn.be/stops/402411", "https://data.delijn.be/stops/402413"], ["https://data.delijn.be/stops/101971", "https://data.delijn.be/stops/105670"], ["https://data.delijn.be/stops/502068", "https://data.delijn.be/stops/502680"], ["https://data.delijn.be/stops/403186", "https://data.delijn.be/stops/403190"], ["https://data.delijn.be/stops/503446", "https://data.delijn.be/stops/508357"], ["https://data.delijn.be/stops/200388", "https://data.delijn.be/stops/200395"], ["https://data.delijn.be/stops/403324", "https://data.delijn.be/stops/410320"], ["https://data.delijn.be/stops/202206", "https://data.delijn.be/stops/202769"], ["https://data.delijn.be/stops/407990", "https://data.delijn.be/stops/408071"], ["https://data.delijn.be/stops/209621", "https://data.delijn.be/stops/219012"], ["https://data.delijn.be/stops/105541", "https://data.delijn.be/stops/105543"], ["https://data.delijn.be/stops/503576", "https://data.delijn.be/stops/505191"], ["https://data.delijn.be/stops/203036", "https://data.delijn.be/stops/203037"], ["https://data.delijn.be/stops/201657", "https://data.delijn.be/stops/205928"], ["https://data.delijn.be/stops/507300", "https://data.delijn.be/stops/507314"], ["https://data.delijn.be/stops/403183", "https://data.delijn.be/stops/403444"], ["https://data.delijn.be/stops/104954", "https://data.delijn.be/stops/109724"], ["https://data.delijn.be/stops/206893", "https://data.delijn.be/stops/207883"], ["https://data.delijn.be/stops/200903", "https://data.delijn.be/stops/202260"], ["https://data.delijn.be/stops/504285", "https://data.delijn.be/stops/504617"], ["https://data.delijn.be/stops/408001", "https://data.delijn.be/stops/410016"], ["https://data.delijn.be/stops/200100", "https://data.delijn.be/stops/211094"], ["https://data.delijn.be/stops/301243", "https://data.delijn.be/stops/308140"], ["https://data.delijn.be/stops/502671", "https://data.delijn.be/stops/507396"], ["https://data.delijn.be/stops/300488", "https://data.delijn.be/stops/300489"], ["https://data.delijn.be/stops/502165", "https://data.delijn.be/stops/502643"], ["https://data.delijn.be/stops/208248", "https://data.delijn.be/stops/209246"], ["https://data.delijn.be/stops/403984", "https://data.delijn.be/stops/403985"], ["https://data.delijn.be/stops/302382", "https://data.delijn.be/stops/307964"], ["https://data.delijn.be/stops/400582", "https://data.delijn.be/stops/400623"], ["https://data.delijn.be/stops/104553", "https://data.delijn.be/stops/305803"], ["https://data.delijn.be/stops/201578", "https://data.delijn.be/stops/201730"], ["https://data.delijn.be/stops/200028", "https://data.delijn.be/stops/201372"], ["https://data.delijn.be/stops/504109", "https://data.delijn.be/stops/509103"], ["https://data.delijn.be/stops/200873", "https://data.delijn.be/stops/200890"], ["https://data.delijn.be/stops/402698", "https://data.delijn.be/stops/402869"], ["https://data.delijn.be/stops/101640", "https://data.delijn.be/stops/102836"], ["https://data.delijn.be/stops/401099", "https://data.delijn.be/stops/408553"], ["https://data.delijn.be/stops/101470", "https://data.delijn.be/stops/108766"], ["https://data.delijn.be/stops/405947", "https://data.delijn.be/stops/405998"], ["https://data.delijn.be/stops/305237", "https://data.delijn.be/stops/305238"], ["https://data.delijn.be/stops/406159", "https://data.delijn.be/stops/409408"], ["https://data.delijn.be/stops/300242", "https://data.delijn.be/stops/300243"], ["https://data.delijn.be/stops/104953", "https://data.delijn.be/stops/406498"], ["https://data.delijn.be/stops/107552", "https://data.delijn.be/stops/109376"], ["https://data.delijn.be/stops/300342", "https://data.delijn.be/stops/304715"], ["https://data.delijn.be/stops/300002", "https://data.delijn.be/stops/301772"], ["https://data.delijn.be/stops/202347", "https://data.delijn.be/stops/202880"], ["https://data.delijn.be/stops/408163", "https://data.delijn.be/stops/410396"], ["https://data.delijn.be/stops/200722", "https://data.delijn.be/stops/204943"], ["https://data.delijn.be/stops/204102", "https://data.delijn.be/stops/206395"], ["https://data.delijn.be/stops/101416", "https://data.delijn.be/stops/102067"], ["https://data.delijn.be/stops/101699", "https://data.delijn.be/stops/103743"], ["https://data.delijn.be/stops/306190", "https://data.delijn.be/stops/306656"], ["https://data.delijn.be/stops/301752", "https://data.delijn.be/stops/304255"], ["https://data.delijn.be/stops/503500", "https://data.delijn.be/stops/508500"], ["https://data.delijn.be/stops/502313", "https://data.delijn.be/stops/505682"], ["https://data.delijn.be/stops/300952", "https://data.delijn.be/stops/301041"], ["https://data.delijn.be/stops/405805", "https://data.delijn.be/stops/405843"], ["https://data.delijn.be/stops/506105", "https://data.delijn.be/stops/506389"], ["https://data.delijn.be/stops/206669", "https://data.delijn.be/stops/209780"], ["https://data.delijn.be/stops/106499", "https://data.delijn.be/stops/106500"], ["https://data.delijn.be/stops/300716", "https://data.delijn.be/stops/302608"], ["https://data.delijn.be/stops/304610", "https://data.delijn.be/stops/306203"], ["https://data.delijn.be/stops/504704", "https://data.delijn.be/stops/509036"], ["https://data.delijn.be/stops/108099", "https://data.delijn.be/stops/108141"], ["https://data.delijn.be/stops/101957", "https://data.delijn.be/stops/101972"], ["https://data.delijn.be/stops/204217", "https://data.delijn.be/stops/204218"], ["https://data.delijn.be/stops/300748", "https://data.delijn.be/stops/302400"], ["https://data.delijn.be/stops/206738", "https://data.delijn.be/stops/207601"], ["https://data.delijn.be/stops/401048", "https://data.delijn.be/stops/401049"], ["https://data.delijn.be/stops/302945", "https://data.delijn.be/stops/308655"], ["https://data.delijn.be/stops/501005", "https://data.delijn.be/stops/506220"], ["https://data.delijn.be/stops/301259", "https://data.delijn.be/stops/308262"], ["https://data.delijn.be/stops/400702", "https://data.delijn.be/stops/400878"], ["https://data.delijn.be/stops/303255", "https://data.delijn.be/stops/303302"], ["https://data.delijn.be/stops/509964", "https://data.delijn.be/stops/509965"], ["https://data.delijn.be/stops/206153", "https://data.delijn.be/stops/207114"], ["https://data.delijn.be/stops/410132", "https://data.delijn.be/stops/410133"], ["https://data.delijn.be/stops/208253", "https://data.delijn.be/stops/209253"], ["https://data.delijn.be/stops/102935", "https://data.delijn.be/stops/103095"], ["https://data.delijn.be/stops/308776", "https://data.delijn.be/stops/308777"], ["https://data.delijn.be/stops/206128", "https://data.delijn.be/stops/207128"], ["https://data.delijn.be/stops/202209", "https://data.delijn.be/stops/202772"], ["https://data.delijn.be/stops/405184", "https://data.delijn.be/stops/405185"], ["https://data.delijn.be/stops/102150", "https://data.delijn.be/stops/102444"], ["https://data.delijn.be/stops/202857", "https://data.delijn.be/stops/203857"], ["https://data.delijn.be/stops/300696", "https://data.delijn.be/stops/306937"], ["https://data.delijn.be/stops/407403", "https://data.delijn.be/stops/409492"], ["https://data.delijn.be/stops/502258", "https://data.delijn.be/stops/502921"], ["https://data.delijn.be/stops/403910", "https://data.delijn.be/stops/403998"], ["https://data.delijn.be/stops/507915", "https://data.delijn.be/stops/508325"], ["https://data.delijn.be/stops/405296", "https://data.delijn.be/stops/406726"], ["https://data.delijn.be/stops/108573", "https://data.delijn.be/stops/108987"], ["https://data.delijn.be/stops/206823", "https://data.delijn.be/stops/207823"], ["https://data.delijn.be/stops/207065", "https://data.delijn.be/stops/207520"], ["https://data.delijn.be/stops/503380", "https://data.delijn.be/stops/505856"], ["https://data.delijn.be/stops/409169", "https://data.delijn.be/stops/409173"], ["https://data.delijn.be/stops/106581", "https://data.delijn.be/stops/106582"], ["https://data.delijn.be/stops/201864", "https://data.delijn.be/stops/202086"], ["https://data.delijn.be/stops/502763", "https://data.delijn.be/stops/507470"], ["https://data.delijn.be/stops/408580", "https://data.delijn.be/stops/408741"], ["https://data.delijn.be/stops/305321", "https://data.delijn.be/stops/305893"], ["https://data.delijn.be/stops/303130", "https://data.delijn.be/stops/303132"], ["https://data.delijn.be/stops/105581", "https://data.delijn.be/stops/107501"], ["https://data.delijn.be/stops/208668", "https://data.delijn.be/stops/209440"], ["https://data.delijn.be/stops/106822", "https://data.delijn.be/stops/106838"], ["https://data.delijn.be/stops/101162", "https://data.delijn.be/stops/105973"], ["https://data.delijn.be/stops/502289", "https://data.delijn.be/stops/507289"], ["https://data.delijn.be/stops/301659", "https://data.delijn.be/stops/301893"], ["https://data.delijn.be/stops/101094", "https://data.delijn.be/stops/106002"], ["https://data.delijn.be/stops/304141", "https://data.delijn.be/stops/304170"], ["https://data.delijn.be/stops/300813", "https://data.delijn.be/stops/306641"], ["https://data.delijn.be/stops/406612", "https://data.delijn.be/stops/406614"], ["https://data.delijn.be/stops/302555", "https://data.delijn.be/stops/305979"], ["https://data.delijn.be/stops/402245", "https://data.delijn.be/stops/409394"], ["https://data.delijn.be/stops/304751", "https://data.delijn.be/stops/304851"], ["https://data.delijn.be/stops/403090", "https://data.delijn.be/stops/410337"], ["https://data.delijn.be/stops/304581", "https://data.delijn.be/stops/304716"], ["https://data.delijn.be/stops/202913", "https://data.delijn.be/stops/203913"], ["https://data.delijn.be/stops/504605", "https://data.delijn.be/stops/505971"], ["https://data.delijn.be/stops/305007", "https://data.delijn.be/stops/305016"], ["https://data.delijn.be/stops/202854", "https://data.delijn.be/stops/202857"], ["https://data.delijn.be/stops/301914", "https://data.delijn.be/stops/305841"], ["https://data.delijn.be/stops/202140", "https://data.delijn.be/stops/202175"], ["https://data.delijn.be/stops/200457", "https://data.delijn.be/stops/201457"], ["https://data.delijn.be/stops/105234", "https://data.delijn.be/stops/105251"], ["https://data.delijn.be/stops/105677", "https://data.delijn.be/stops/106755"], ["https://data.delijn.be/stops/301973", "https://data.delijn.be/stops/301979"], ["https://data.delijn.be/stops/301630", "https://data.delijn.be/stops/303662"], ["https://data.delijn.be/stops/503579", "https://data.delijn.be/stops/508579"], ["https://data.delijn.be/stops/502689", "https://data.delijn.be/stops/502921"], ["https://data.delijn.be/stops/401768", "https://data.delijn.be/stops/401771"], ["https://data.delijn.be/stops/301693", "https://data.delijn.be/stops/301694"], ["https://data.delijn.be/stops/503746", "https://data.delijn.be/stops/508746"], ["https://data.delijn.be/stops/405056", "https://data.delijn.be/stops/405888"], ["https://data.delijn.be/stops/301771", "https://data.delijn.be/stops/301778"], ["https://data.delijn.be/stops/401639", "https://data.delijn.be/stops/308207"], ["https://data.delijn.be/stops/101090", "https://data.delijn.be/stops/102987"], ["https://data.delijn.be/stops/304232", "https://data.delijn.be/stops/304686"], ["https://data.delijn.be/stops/201677", "https://data.delijn.be/stops/202773"], ["https://data.delijn.be/stops/202611", "https://data.delijn.be/stops/203610"], ["https://data.delijn.be/stops/405795", "https://data.delijn.be/stops/407351"], ["https://data.delijn.be/stops/304887", "https://data.delijn.be/stops/308587"], ["https://data.delijn.be/stops/404246", "https://data.delijn.be/stops/409601"], ["https://data.delijn.be/stops/103342", "https://data.delijn.be/stops/103343"], ["https://data.delijn.be/stops/502192", "https://data.delijn.be/stops/505547"], ["https://data.delijn.be/stops/508867", "https://data.delijn.be/stops/508873"], ["https://data.delijn.be/stops/200455", "https://data.delijn.be/stops/201455"], ["https://data.delijn.be/stops/409285", "https://data.delijn.be/stops/409308"], ["https://data.delijn.be/stops/302790", "https://data.delijn.be/stops/308593"], ["https://data.delijn.be/stops/404311", "https://data.delijn.be/stops/404322"], ["https://data.delijn.be/stops/106799", "https://data.delijn.be/stops/106871"], ["https://data.delijn.be/stops/407262", "https://data.delijn.be/stops/407497"], ["https://data.delijn.be/stops/202897", "https://data.delijn.be/stops/203897"], ["https://data.delijn.be/stops/503428", "https://data.delijn.be/stops/505188"], ["https://data.delijn.be/stops/208132", "https://data.delijn.be/stops/209131"], ["https://data.delijn.be/stops/302933", "https://data.delijn.be/stops/303999"], ["https://data.delijn.be/stops/501066", "https://data.delijn.be/stops/506066"], ["https://data.delijn.be/stops/205237", "https://data.delijn.be/stops/206313"], ["https://data.delijn.be/stops/204097", "https://data.delijn.be/stops/205465"], ["https://data.delijn.be/stops/300816", "https://data.delijn.be/stops/300881"], ["https://data.delijn.be/stops/408861", "https://data.delijn.be/stops/408871"], ["https://data.delijn.be/stops/402097", "https://data.delijn.be/stops/402326"], ["https://data.delijn.be/stops/202321", "https://data.delijn.be/stops/203321"], ["https://data.delijn.be/stops/503625", "https://data.delijn.be/stops/503632"], ["https://data.delijn.be/stops/400039", "https://data.delijn.be/stops/400175"], ["https://data.delijn.be/stops/503930", "https://data.delijn.be/stops/505250"], ["https://data.delijn.be/stops/501090", "https://data.delijn.be/stops/501100"], ["https://data.delijn.be/stops/409636", "https://data.delijn.be/stops/409638"], ["https://data.delijn.be/stops/502747", "https://data.delijn.be/stops/505655"], ["https://data.delijn.be/stops/202401", "https://data.delijn.be/stops/203400"], ["https://data.delijn.be/stops/504632", "https://data.delijn.be/stops/504634"], ["https://data.delijn.be/stops/507092", "https://data.delijn.be/stops/507112"], ["https://data.delijn.be/stops/301672", "https://data.delijn.be/stops/303661"], ["https://data.delijn.be/stops/507436", "https://data.delijn.be/stops/507622"], ["https://data.delijn.be/stops/501370", "https://data.delijn.be/stops/506241"], ["https://data.delijn.be/stops/504680", "https://data.delijn.be/stops/509661"], ["https://data.delijn.be/stops/302384", "https://data.delijn.be/stops/302385"], ["https://data.delijn.be/stops/107867", "https://data.delijn.be/stops/107868"], ["https://data.delijn.be/stops/303977", "https://data.delijn.be/stops/303985"], ["https://data.delijn.be/stops/102947", "https://data.delijn.be/stops/106237"], ["https://data.delijn.be/stops/502223", "https://data.delijn.be/stops/507223"], ["https://data.delijn.be/stops/304390", "https://data.delijn.be/stops/307413"], ["https://data.delijn.be/stops/501190", "https://data.delijn.be/stops/506193"], ["https://data.delijn.be/stops/103757", "https://data.delijn.be/stops/104258"], ["https://data.delijn.be/stops/505199", "https://data.delijn.be/stops/505248"], ["https://data.delijn.be/stops/301873", "https://data.delijn.be/stops/306984"], ["https://data.delijn.be/stops/200914", "https://data.delijn.be/stops/202089"], ["https://data.delijn.be/stops/103926", "https://data.delijn.be/stops/103928"], ["https://data.delijn.be/stops/501505", "https://data.delijn.be/stops/506505"], ["https://data.delijn.be/stops/300817", "https://data.delijn.be/stops/303631"], ["https://data.delijn.be/stops/202486", "https://data.delijn.be/stops/203486"], ["https://data.delijn.be/stops/208165", "https://data.delijn.be/stops/208166"], ["https://data.delijn.be/stops/504578", "https://data.delijn.be/stops/509270"], ["https://data.delijn.be/stops/209395", "https://data.delijn.be/stops/503024"], ["https://data.delijn.be/stops/208377", "https://data.delijn.be/stops/209377"], ["https://data.delijn.be/stops/202110", "https://data.delijn.be/stops/203111"], ["https://data.delijn.be/stops/302104", "https://data.delijn.be/stops/308600"], ["https://data.delijn.be/stops/201675", "https://data.delijn.be/stops/202504"], ["https://data.delijn.be/stops/207724", "https://data.delijn.be/stops/207725"], ["https://data.delijn.be/stops/400855", "https://data.delijn.be/stops/410048"], ["https://data.delijn.be/stops/404996", "https://data.delijn.be/stops/406910"], ["https://data.delijn.be/stops/401121", "https://data.delijn.be/stops/402830"], ["https://data.delijn.be/stops/103216", "https://data.delijn.be/stops/103491"], ["https://data.delijn.be/stops/504963", "https://data.delijn.be/stops/504964"], ["https://data.delijn.be/stops/500137", "https://data.delijn.be/stops/501102"], ["https://data.delijn.be/stops/405857", "https://data.delijn.be/stops/409713"], ["https://data.delijn.be/stops/202730", "https://data.delijn.be/stops/204621"], ["https://data.delijn.be/stops/302622", "https://data.delijn.be/stops/308074"], ["https://data.delijn.be/stops/208464", "https://data.delijn.be/stops/209464"], ["https://data.delijn.be/stops/200179", "https://data.delijn.be/stops/201195"], ["https://data.delijn.be/stops/300494", "https://data.delijn.be/stops/307084"], ["https://data.delijn.be/stops/200955", "https://data.delijn.be/stops/202509"], ["https://data.delijn.be/stops/508001", "https://data.delijn.be/stops/508006"], ["https://data.delijn.be/stops/101030", "https://data.delijn.be/stops/103135"], ["https://data.delijn.be/stops/205126", "https://data.delijn.be/stops/205666"], ["https://data.delijn.be/stops/303033", "https://data.delijn.be/stops/303098"], ["https://data.delijn.be/stops/402255", "https://data.delijn.be/stops/402291"], ["https://data.delijn.be/stops/104108", "https://data.delijn.be/stops/205604"], ["https://data.delijn.be/stops/208076", "https://data.delijn.be/stops/209143"], ["https://data.delijn.be/stops/204766", "https://data.delijn.be/stops/205765"], ["https://data.delijn.be/stops/404860", "https://data.delijn.be/stops/404866"], ["https://data.delijn.be/stops/501007", "https://data.delijn.be/stops/508744"], ["https://data.delijn.be/stops/502411", "https://data.delijn.be/stops/502588"], ["https://data.delijn.be/stops/104934", "https://data.delijn.be/stops/107841"], ["https://data.delijn.be/stops/307624", "https://data.delijn.be/stops/308292"], ["https://data.delijn.be/stops/202412", "https://data.delijn.be/stops/202421"], ["https://data.delijn.be/stops/206956", "https://data.delijn.be/stops/207189"], ["https://data.delijn.be/stops/202381", "https://data.delijn.be/stops/203380"], ["https://data.delijn.be/stops/206608", "https://data.delijn.be/stops/207208"], ["https://data.delijn.be/stops/405689", "https://data.delijn.be/stops/408203"], ["https://data.delijn.be/stops/301364", "https://data.delijn.be/stops/306152"], ["https://data.delijn.be/stops/206283", "https://data.delijn.be/stops/206285"], ["https://data.delijn.be/stops/403229", "https://data.delijn.be/stops/405359"], ["https://data.delijn.be/stops/503121", "https://data.delijn.be/stops/508121"], ["https://data.delijn.be/stops/104535", "https://data.delijn.be/stops/105365"], ["https://data.delijn.be/stops/303719", "https://data.delijn.be/stops/303744"], ["https://data.delijn.be/stops/101175", "https://data.delijn.be/stops/102230"], ["https://data.delijn.be/stops/204189", "https://data.delijn.be/stops/205190"], ["https://data.delijn.be/stops/106693", "https://data.delijn.be/stops/106694"], ["https://data.delijn.be/stops/503262", "https://data.delijn.be/stops/508241"], ["https://data.delijn.be/stops/300831", "https://data.delijn.be/stops/300832"], ["https://data.delijn.be/stops/105338", "https://data.delijn.be/stops/105342"], ["https://data.delijn.be/stops/104817", "https://data.delijn.be/stops/109800"], ["https://data.delijn.be/stops/300204", "https://data.delijn.be/stops/300209"], ["https://data.delijn.be/stops/501373", "https://data.delijn.be/stops/501375"], ["https://data.delijn.be/stops/207392", "https://data.delijn.be/stops/207393"], ["https://data.delijn.be/stops/206767", "https://data.delijn.be/stops/206790"], ["https://data.delijn.be/stops/106050", "https://data.delijn.be/stops/106090"], ["https://data.delijn.be/stops/500563", "https://data.delijn.be/stops/501027"], ["https://data.delijn.be/stops/504366", "https://data.delijn.be/stops/509365"], ["https://data.delijn.be/stops/101665", "https://data.delijn.be/stops/101670"], ["https://data.delijn.be/stops/503869", "https://data.delijn.be/stops/508531"], ["https://data.delijn.be/stops/401989", "https://data.delijn.be/stops/404979"], ["https://data.delijn.be/stops/208184", "https://data.delijn.be/stops/208357"], ["https://data.delijn.be/stops/200330", "https://data.delijn.be/stops/202201"], ["https://data.delijn.be/stops/408242", "https://data.delijn.be/stops/308222"], ["https://data.delijn.be/stops/106188", "https://data.delijn.be/stops/107437"], ["https://data.delijn.be/stops/206198", "https://data.delijn.be/stops/207198"], ["https://data.delijn.be/stops/304186", "https://data.delijn.be/stops/306282"], ["https://data.delijn.be/stops/201680", "https://data.delijn.be/stops/203402"], ["https://data.delijn.be/stops/102210", "https://data.delijn.be/stops/102695"], ["https://data.delijn.be/stops/208050", "https://data.delijn.be/stops/208485"], ["https://data.delijn.be/stops/504176", "https://data.delijn.be/stops/509163"], ["https://data.delijn.be/stops/106457", "https://data.delijn.be/stops/107031"], ["https://data.delijn.be/stops/101468", "https://data.delijn.be/stops/109268"], ["https://data.delijn.be/stops/200081", "https://data.delijn.be/stops/203192"], ["https://data.delijn.be/stops/103376", "https://data.delijn.be/stops/108673"], ["https://data.delijn.be/stops/502347", "https://data.delijn.be/stops/505308"], ["https://data.delijn.be/stops/408874", "https://data.delijn.be/stops/408911"], ["https://data.delijn.be/stops/405802", "https://data.delijn.be/stops/405860"], ["https://data.delijn.be/stops/301593", "https://data.delijn.be/stops/306960"], ["https://data.delijn.be/stops/200068", "https://data.delijn.be/stops/200188"], ["https://data.delijn.be/stops/400779", "https://data.delijn.be/stops/409664"], ["https://data.delijn.be/stops/204364", "https://data.delijn.be/stops/205364"], ["https://data.delijn.be/stops/303405", "https://data.delijn.be/stops/304553"], ["https://data.delijn.be/stops/407549", "https://data.delijn.be/stops/407556"], ["https://data.delijn.be/stops/405264", "https://data.delijn.be/stops/406411"], ["https://data.delijn.be/stops/208053", "https://data.delijn.be/stops/208658"], ["https://data.delijn.be/stops/207604", "https://data.delijn.be/stops/207605"], ["https://data.delijn.be/stops/200166", "https://data.delijn.be/stops/202150"], ["https://data.delijn.be/stops/106888", "https://data.delijn.be/stops/106890"], ["https://data.delijn.be/stops/101546", "https://data.delijn.be/stops/107806"], ["https://data.delijn.be/stops/306315", "https://data.delijn.be/stops/308761"], ["https://data.delijn.be/stops/201486", "https://data.delijn.be/stops/201488"], ["https://data.delijn.be/stops/102208", "https://data.delijn.be/stops/102211"], ["https://data.delijn.be/stops/400055", "https://data.delijn.be/stops/400139"], ["https://data.delijn.be/stops/101530", "https://data.delijn.be/stops/104494"], ["https://data.delijn.be/stops/102884", "https://data.delijn.be/stops/102886"], ["https://data.delijn.be/stops/501451", "https://data.delijn.be/stops/501452"], ["https://data.delijn.be/stops/501562", "https://data.delijn.be/stops/590412"], ["https://data.delijn.be/stops/501018", "https://data.delijn.be/stops/501609"], ["https://data.delijn.be/stops/101673", "https://data.delijn.be/stops/400433"], ["https://data.delijn.be/stops/401401", "https://data.delijn.be/stops/300923"], ["https://data.delijn.be/stops/503154", "https://data.delijn.be/stops/509559"], ["https://data.delijn.be/stops/102484", "https://data.delijn.be/stops/400417"], ["https://data.delijn.be/stops/305658", "https://data.delijn.be/stops/305659"], ["https://data.delijn.be/stops/107349", "https://data.delijn.be/stops/107352"], ["https://data.delijn.be/stops/502109", "https://data.delijn.be/stops/502129"], ["https://data.delijn.be/stops/402547", "https://data.delijn.be/stops/402581"], ["https://data.delijn.be/stops/203850", "https://data.delijn.be/stops/203909"], ["https://data.delijn.be/stops/200638", "https://data.delijn.be/stops/203941"], ["https://data.delijn.be/stops/204076", "https://data.delijn.be/stops/204089"], ["https://data.delijn.be/stops/304283", "https://data.delijn.be/stops/306140"], ["https://data.delijn.be/stops/506777", "https://data.delijn.be/stops/509933"], ["https://data.delijn.be/stops/302577", "https://data.delijn.be/stops/302603"], ["https://data.delijn.be/stops/204340", "https://data.delijn.be/stops/205269"], ["https://data.delijn.be/stops/208276", "https://data.delijn.be/stops/208282"], ["https://data.delijn.be/stops/109082", "https://data.delijn.be/stops/109655"], ["https://data.delijn.be/stops/506150", "https://data.delijn.be/stops/506163"], ["https://data.delijn.be/stops/305690", "https://data.delijn.be/stops/305691"], ["https://data.delijn.be/stops/408233", "https://data.delijn.be/stops/408238"], ["https://data.delijn.be/stops/503636", "https://data.delijn.be/stops/505935"], ["https://data.delijn.be/stops/206018", "https://data.delijn.be/stops/207107"], ["https://data.delijn.be/stops/504943", "https://data.delijn.be/stops/509943"], ["https://data.delijn.be/stops/101440", "https://data.delijn.be/stops/104082"], ["https://data.delijn.be/stops/105140", "https://data.delijn.be/stops/105145"], ["https://data.delijn.be/stops/304593", "https://data.delijn.be/stops/304630"], ["https://data.delijn.be/stops/108977", "https://data.delijn.be/stops/108978"], ["https://data.delijn.be/stops/106084", "https://data.delijn.be/stops/108720"], ["https://data.delijn.be/stops/400841", "https://data.delijn.be/stops/409568"], ["https://data.delijn.be/stops/200128", "https://data.delijn.be/stops/201128"], ["https://data.delijn.be/stops/409692", "https://data.delijn.be/stops/409701"], ["https://data.delijn.be/stops/503275", "https://data.delijn.be/stops/505129"], ["https://data.delijn.be/stops/410114", "https://data.delijn.be/stops/410115"], ["https://data.delijn.be/stops/205789", "https://data.delijn.be/stops/205790"], ["https://data.delijn.be/stops/504644", "https://data.delijn.be/stops/509646"], ["https://data.delijn.be/stops/304940", "https://data.delijn.be/stops/304991"], ["https://data.delijn.be/stops/302394", "https://data.delijn.be/stops/302395"], ["https://data.delijn.be/stops/301470", "https://data.delijn.be/stops/301481"], ["https://data.delijn.be/stops/404997", "https://data.delijn.be/stops/406909"], ["https://data.delijn.be/stops/403165", "https://data.delijn.be/stops/403172"], ["https://data.delijn.be/stops/207203", "https://data.delijn.be/stops/207204"], ["https://data.delijn.be/stops/504079", "https://data.delijn.be/stops/509054"], ["https://data.delijn.be/stops/103105", "https://data.delijn.be/stops/104690"], ["https://data.delijn.be/stops/409283", "https://data.delijn.be/stops/409284"], ["https://data.delijn.be/stops/503393", "https://data.delijn.be/stops/508100"], ["https://data.delijn.be/stops/401062", "https://data.delijn.be/stops/409980"], ["https://data.delijn.be/stops/207191", "https://data.delijn.be/stops/207224"], ["https://data.delijn.be/stops/105116", "https://data.delijn.be/stops/105117"], ["https://data.delijn.be/stops/302911", "https://data.delijn.be/stops/303080"], ["https://data.delijn.be/stops/301929", "https://data.delijn.be/stops/306204"], ["https://data.delijn.be/stops/505127", "https://data.delijn.be/stops/505136"], ["https://data.delijn.be/stops/201899", "https://data.delijn.be/stops/204950"], ["https://data.delijn.be/stops/307628", "https://data.delijn.be/stops/307630"], ["https://data.delijn.be/stops/218005", "https://data.delijn.be/stops/219005"], ["https://data.delijn.be/stops/305188", "https://data.delijn.be/stops/306966"], ["https://data.delijn.be/stops/501324", "https://data.delijn.be/stops/506291"], ["https://data.delijn.be/stops/501117", "https://data.delijn.be/stops/506116"], ["https://data.delijn.be/stops/101971", "https://data.delijn.be/stops/103865"], ["https://data.delijn.be/stops/405245", "https://data.delijn.be/stops/406325"], ["https://data.delijn.be/stops/206250", "https://data.delijn.be/stops/206585"], ["https://data.delijn.be/stops/408890", "https://data.delijn.be/stops/408893"], ["https://data.delijn.be/stops/105686", "https://data.delijn.be/stops/105688"], ["https://data.delijn.be/stops/105907", "https://data.delijn.be/stops/105909"], ["https://data.delijn.be/stops/209045", "https://data.delijn.be/stops/209058"], ["https://data.delijn.be/stops/506399", "https://data.delijn.be/stops/506401"], ["https://data.delijn.be/stops/504391", "https://data.delijn.be/stops/509391"], ["https://data.delijn.be/stops/204167", "https://data.delijn.be/stops/204587"], ["https://data.delijn.be/stops/406398", "https://data.delijn.be/stops/302831"], ["https://data.delijn.be/stops/503222", "https://data.delijn.be/stops/503593"], ["https://data.delijn.be/stops/303321", "https://data.delijn.be/stops/305684"], ["https://data.delijn.be/stops/204078", "https://data.delijn.be/stops/204199"], ["https://data.delijn.be/stops/301777", "https://data.delijn.be/stops/301786"], ["https://data.delijn.be/stops/105962", "https://data.delijn.be/stops/108940"], ["https://data.delijn.be/stops/401724", "https://data.delijn.be/stops/405448"], ["https://data.delijn.be/stops/106465", "https://data.delijn.be/stops/108247"], ["https://data.delijn.be/stops/208782", "https://data.delijn.be/stops/209339"], ["https://data.delijn.be/stops/107039", "https://data.delijn.be/stops/108243"], ["https://data.delijn.be/stops/505670", "https://data.delijn.be/stops/507517"], ["https://data.delijn.be/stops/201714", "https://data.delijn.be/stops/201724"], ["https://data.delijn.be/stops/208697", "https://data.delijn.be/stops/208709"], ["https://data.delijn.be/stops/305553", "https://data.delijn.be/stops/308687"], ["https://data.delijn.be/stops/202795", "https://data.delijn.be/stops/203795"], ["https://data.delijn.be/stops/200405", "https://data.delijn.be/stops/201725"], ["https://data.delijn.be/stops/202827", "https://data.delijn.be/stops/202837"], ["https://data.delijn.be/stops/108915", "https://data.delijn.be/stops/108920"], ["https://data.delijn.be/stops/201044", "https://data.delijn.be/stops/203487"], ["https://data.delijn.be/stops/402700", "https://data.delijn.be/stops/402709"], ["https://data.delijn.be/stops/304441", "https://data.delijn.be/stops/307713"], ["https://data.delijn.be/stops/103393", "https://data.delijn.be/stops/108010"], ["https://data.delijn.be/stops/204459", "https://data.delijn.be/stops/205118"], ["https://data.delijn.be/stops/502267", "https://data.delijn.be/stops/502921"], ["https://data.delijn.be/stops/103482", "https://data.delijn.be/stops/109139"], ["https://data.delijn.be/stops/208460", "https://data.delijn.be/stops/209462"], ["https://data.delijn.be/stops/106223", "https://data.delijn.be/stops/106334"], ["https://data.delijn.be/stops/301888", "https://data.delijn.be/stops/305912"], ["https://data.delijn.be/stops/402812", "https://data.delijn.be/stops/409041"], ["https://data.delijn.be/stops/403420", "https://data.delijn.be/stops/403422"], ["https://data.delijn.be/stops/302350", "https://data.delijn.be/stops/302366"], ["https://data.delijn.be/stops/103303", "https://data.delijn.be/stops/109604"], ["https://data.delijn.be/stops/305060", "https://data.delijn.be/stops/306918"], ["https://data.delijn.be/stops/407892", "https://data.delijn.be/stops/303889"], ["https://data.delijn.be/stops/304074", "https://data.delijn.be/stops/304106"], ["https://data.delijn.be/stops/107928", "https://data.delijn.be/stops/109910"], ["https://data.delijn.be/stops/305742", "https://data.delijn.be/stops/305747"], ["https://data.delijn.be/stops/409355", "https://data.delijn.be/stops/409387"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/504412"], ["https://data.delijn.be/stops/208419", "https://data.delijn.be/stops/209419"], ["https://data.delijn.be/stops/103256", "https://data.delijn.be/stops/103260"], ["https://data.delijn.be/stops/201935", "https://data.delijn.be/stops/202958"], ["https://data.delijn.be/stops/103629", "https://data.delijn.be/stops/107739"], ["https://data.delijn.be/stops/406609", "https://data.delijn.be/stops/406637"], ["https://data.delijn.be/stops/403064", "https://data.delijn.be/stops/403445"], ["https://data.delijn.be/stops/502592", "https://data.delijn.be/stops/505681"], ["https://data.delijn.be/stops/508513", "https://data.delijn.be/stops/508514"], ["https://data.delijn.be/stops/207794", "https://data.delijn.be/stops/208192"], ["https://data.delijn.be/stops/400695", "https://data.delijn.be/stops/409526"], ["https://data.delijn.be/stops/401526", "https://data.delijn.be/stops/410198"], ["https://data.delijn.be/stops/401472", "https://data.delijn.be/stops/409347"], ["https://data.delijn.be/stops/505255", "https://data.delijn.be/stops/505942"], ["https://data.delijn.be/stops/501202", "https://data.delijn.be/stops/506425"], ["https://data.delijn.be/stops/300731", "https://data.delijn.be/stops/300732"], ["https://data.delijn.be/stops/204640", "https://data.delijn.be/stops/204641"], ["https://data.delijn.be/stops/107701", "https://data.delijn.be/stops/107713"], ["https://data.delijn.be/stops/107539", "https://data.delijn.be/stops/109602"], ["https://data.delijn.be/stops/101211", "https://data.delijn.be/stops/107797"], ["https://data.delijn.be/stops/107449", "https://data.delijn.be/stops/107452"], ["https://data.delijn.be/stops/201667", "https://data.delijn.be/stops/201678"], ["https://data.delijn.be/stops/205566", "https://data.delijn.be/stops/308795"], ["https://data.delijn.be/stops/509361", "https://data.delijn.be/stops/509367"], ["https://data.delijn.be/stops/204460", "https://data.delijn.be/stops/204464"], ["https://data.delijn.be/stops/503168", "https://data.delijn.be/stops/503177"], ["https://data.delijn.be/stops/207275", "https://data.delijn.be/stops/207276"], ["https://data.delijn.be/stops/206570", "https://data.delijn.be/stops/207570"], ["https://data.delijn.be/stops/108840", "https://data.delijn.be/stops/108843"], ["https://data.delijn.be/stops/206762", "https://data.delijn.be/stops/208622"], ["https://data.delijn.be/stops/108101", "https://data.delijn.be/stops/108113"], ["https://data.delijn.be/stops/202776", "https://data.delijn.be/stops/202936"], ["https://data.delijn.be/stops/103095", "https://data.delijn.be/stops/105185"], ["https://data.delijn.be/stops/300778", "https://data.delijn.be/stops/302409"], ["https://data.delijn.be/stops/103221", "https://data.delijn.be/stops/104856"], ["https://data.delijn.be/stops/208212", "https://data.delijn.be/stops/208213"], ["https://data.delijn.be/stops/304805", "https://data.delijn.be/stops/304813"], ["https://data.delijn.be/stops/410004", "https://data.delijn.be/stops/410005"], ["https://data.delijn.be/stops/506089", "https://data.delijn.be/stops/506095"], ["https://data.delijn.be/stops/305090", "https://data.delijn.be/stops/305091"], ["https://data.delijn.be/stops/505855", "https://data.delijn.be/stops/509517"], ["https://data.delijn.be/stops/504264", "https://data.delijn.be/stops/509265"], ["https://data.delijn.be/stops/401618", "https://data.delijn.be/stops/308213"], ["https://data.delijn.be/stops/508445", "https://data.delijn.be/stops/508731"], ["https://data.delijn.be/stops/204090", "https://data.delijn.be/stops/205089"], ["https://data.delijn.be/stops/500053", "https://data.delijn.be/stops/507117"], ["https://data.delijn.be/stops/101573", "https://data.delijn.be/stops/106404"], ["https://data.delijn.be/stops/206927", "https://data.delijn.be/stops/207529"], ["https://data.delijn.be/stops/407902", "https://data.delijn.be/stops/407905"], ["https://data.delijn.be/stops/504201", "https://data.delijn.be/stops/505969"], ["https://data.delijn.be/stops/305254", "https://data.delijn.be/stops/305306"], ["https://data.delijn.be/stops/206318", "https://data.delijn.be/stops/207290"], ["https://data.delijn.be/stops/501439", "https://data.delijn.be/stops/501444"], ["https://data.delijn.be/stops/106374", "https://data.delijn.be/stops/106375"], ["https://data.delijn.be/stops/508016", "https://data.delijn.be/stops/508818"], ["https://data.delijn.be/stops/200231", "https://data.delijn.be/stops/203133"], ["https://data.delijn.be/stops/201403", "https://data.delijn.be/stops/202040"], ["https://data.delijn.be/stops/206621", "https://data.delijn.be/stops/206649"], ["https://data.delijn.be/stops/504444", "https://data.delijn.be/stops/509439"], ["https://data.delijn.be/stops/407594", "https://data.delijn.be/stops/409801"], ["https://data.delijn.be/stops/402692", "https://data.delijn.be/stops/306307"], ["https://data.delijn.be/stops/200173", "https://data.delijn.be/stops/201173"], ["https://data.delijn.be/stops/102927", "https://data.delijn.be/stops/103557"], ["https://data.delijn.be/stops/105296", "https://data.delijn.be/stops/109605"], ["https://data.delijn.be/stops/404794", "https://data.delijn.be/stops/404801"], ["https://data.delijn.be/stops/206811", "https://data.delijn.be/stops/207287"], ["https://data.delijn.be/stops/209290", "https://data.delijn.be/stops/209380"], ["https://data.delijn.be/stops/504145", "https://data.delijn.be/stops/505985"], ["https://data.delijn.be/stops/201964", "https://data.delijn.be/stops/206770"], ["https://data.delijn.be/stops/302070", "https://data.delijn.be/stops/305634"], ["https://data.delijn.be/stops/206731", "https://data.delijn.be/stops/206979"], ["https://data.delijn.be/stops/301308", "https://data.delijn.be/stops/301903"], ["https://data.delijn.be/stops/407944", "https://data.delijn.be/stops/408120"], ["https://data.delijn.be/stops/201125", "https://data.delijn.be/stops/210010"], ["https://data.delijn.be/stops/501344", "https://data.delijn.be/stops/501358"], ["https://data.delijn.be/stops/105745", "https://data.delijn.be/stops/105750"], ["https://data.delijn.be/stops/400730", "https://data.delijn.be/stops/406644"], ["https://data.delijn.be/stops/105059", "https://data.delijn.be/stops/105063"], ["https://data.delijn.be/stops/300349", "https://data.delijn.be/stops/300350"], ["https://data.delijn.be/stops/103637", "https://data.delijn.be/stops/107167"], ["https://data.delijn.be/stops/502917", "https://data.delijn.be/stops/507245"], ["https://data.delijn.be/stops/104817", "https://data.delijn.be/stops/109492"], ["https://data.delijn.be/stops/201023", "https://data.delijn.be/stops/201101"], ["https://data.delijn.be/stops/300695", "https://data.delijn.be/stops/300696"], ["https://data.delijn.be/stops/205748", "https://data.delijn.be/stops/205749"], ["https://data.delijn.be/stops/404004", "https://data.delijn.be/stops/410257"], ["https://data.delijn.be/stops/400862", "https://data.delijn.be/stops/400863"], ["https://data.delijn.be/stops/303057", "https://data.delijn.be/stops/306108"], ["https://data.delijn.be/stops/201609", "https://data.delijn.be/stops/203311"], ["https://data.delijn.be/stops/300082", "https://data.delijn.be/stops/300083"], ["https://data.delijn.be/stops/404146", "https://data.delijn.be/stops/404175"], ["https://data.delijn.be/stops/109265", "https://data.delijn.be/stops/407110"], ["https://data.delijn.be/stops/302345", "https://data.delijn.be/stops/306184"], ["https://data.delijn.be/stops/208474", "https://data.delijn.be/stops/209673"], ["https://data.delijn.be/stops/508139", "https://data.delijn.be/stops/508163"], ["https://data.delijn.be/stops/504772", "https://data.delijn.be/stops/509654"], ["https://data.delijn.be/stops/402799", "https://data.delijn.be/stops/405581"], ["https://data.delijn.be/stops/401311", "https://data.delijn.be/stops/406657"], ["https://data.delijn.be/stops/402736", "https://data.delijn.be/stops/402737"], ["https://data.delijn.be/stops/306670", "https://data.delijn.be/stops/306671"], ["https://data.delijn.be/stops/501441", "https://data.delijn.be/stops/506482"], ["https://data.delijn.be/stops/508116", "https://data.delijn.be/stops/508651"], ["https://data.delijn.be/stops/207561", "https://data.delijn.be/stops/216004"], ["https://data.delijn.be/stops/509147", "https://data.delijn.be/stops/509148"], ["https://data.delijn.be/stops/502425", "https://data.delijn.be/stops/502426"], ["https://data.delijn.be/stops/109068", "https://data.delijn.be/stops/109069"], ["https://data.delijn.be/stops/303717", "https://data.delijn.be/stops/303747"], ["https://data.delijn.be/stops/504447", "https://data.delijn.be/stops/505299"], ["https://data.delijn.be/stops/206294", "https://data.delijn.be/stops/207294"], ["https://data.delijn.be/stops/405592", "https://data.delijn.be/stops/408556"], ["https://data.delijn.be/stops/105114", "https://data.delijn.be/stops/105153"], ["https://data.delijn.be/stops/207663", "https://data.delijn.be/stops/208152"], ["https://data.delijn.be/stops/400656", "https://data.delijn.be/stops/400968"], ["https://data.delijn.be/stops/403946", "https://data.delijn.be/stops/403955"], ["https://data.delijn.be/stops/403458", "https://data.delijn.be/stops/403678"], ["https://data.delijn.be/stops/202080", "https://data.delijn.be/stops/203080"], ["https://data.delijn.be/stops/107028", "https://data.delijn.be/stops/107031"], ["https://data.delijn.be/stops/403373", "https://data.delijn.be/stops/410215"], ["https://data.delijn.be/stops/504036", "https://data.delijn.be/stops/509036"], ["https://data.delijn.be/stops/405486", "https://data.delijn.be/stops/409311"], ["https://data.delijn.be/stops/300022", "https://data.delijn.be/stops/307262"], ["https://data.delijn.be/stops/307352", "https://data.delijn.be/stops/307439"], ["https://data.delijn.be/stops/208166", "https://data.delijn.be/stops/209166"], ["https://data.delijn.be/stops/303042", "https://data.delijn.be/stops/304710"], ["https://data.delijn.be/stops/304994", "https://data.delijn.be/stops/305001"], ["https://data.delijn.be/stops/403142", "https://data.delijn.be/stops/403157"], ["https://data.delijn.be/stops/104118", "https://data.delijn.be/stops/104127"], ["https://data.delijn.be/stops/302929", "https://data.delijn.be/stops/304045"], ["https://data.delijn.be/stops/307568", "https://data.delijn.be/stops/307584"], ["https://data.delijn.be/stops/201555", "https://data.delijn.be/stops/201840"], ["https://data.delijn.be/stops/504031", "https://data.delijn.be/stops/505121"], ["https://data.delijn.be/stops/204833", "https://data.delijn.be/stops/205073"], ["https://data.delijn.be/stops/208287", "https://data.delijn.be/stops/209287"], ["https://data.delijn.be/stops/204060", "https://data.delijn.be/stops/205722"], ["https://data.delijn.be/stops/200759", "https://data.delijn.be/stops/209302"], ["https://data.delijn.be/stops/300753", "https://data.delijn.be/stops/300786"], ["https://data.delijn.be/stops/506058", "https://data.delijn.be/stops/506491"], ["https://data.delijn.be/stops/400299", "https://data.delijn.be/stops/400364"], ["https://data.delijn.be/stops/401272", "https://data.delijn.be/stops/401275"], ["https://data.delijn.be/stops/405225", "https://data.delijn.be/stops/405226"], ["https://data.delijn.be/stops/106223", "https://data.delijn.be/stops/106224"], ["https://data.delijn.be/stops/307144", "https://data.delijn.be/stops/307145"], ["https://data.delijn.be/stops/201105", "https://data.delijn.be/stops/203944"], ["https://data.delijn.be/stops/202489", "https://data.delijn.be/stops/203930"], ["https://data.delijn.be/stops/409856", "https://data.delijn.be/stops/409857"], ["https://data.delijn.be/stops/401359", "https://data.delijn.be/stops/406067"], ["https://data.delijn.be/stops/505027", "https://data.delijn.be/stops/507011"], ["https://data.delijn.be/stops/305098", "https://data.delijn.be/stops/305101"], ["https://data.delijn.be/stops/406018", "https://data.delijn.be/stops/406019"], ["https://data.delijn.be/stops/200276", "https://data.delijn.be/stops/203541"], ["https://data.delijn.be/stops/204287", "https://data.delijn.be/stops/204823"], ["https://data.delijn.be/stops/405788", "https://data.delijn.be/stops/405789"], ["https://data.delijn.be/stops/505297", "https://data.delijn.be/stops/508629"], ["https://data.delijn.be/stops/402160", "https://data.delijn.be/stops/402267"], ["https://data.delijn.be/stops/206645", "https://data.delijn.be/stops/207488"], ["https://data.delijn.be/stops/208806", "https://data.delijn.be/stops/209213"], ["https://data.delijn.be/stops/101355", "https://data.delijn.be/stops/101540"], ["https://data.delijn.be/stops/204293", "https://data.delijn.be/stops/205293"], ["https://data.delijn.be/stops/504305", "https://data.delijn.be/stops/504310"], ["https://data.delijn.be/stops/204672", "https://data.delijn.be/stops/205672"], ["https://data.delijn.be/stops/503899", "https://data.delijn.be/stops/508899"], ["https://data.delijn.be/stops/103999", "https://data.delijn.be/stops/106888"], ["https://data.delijn.be/stops/300117", "https://data.delijn.be/stops/306856"], ["https://data.delijn.be/stops/408373", "https://data.delijn.be/stops/410157"], ["https://data.delijn.be/stops/302263", "https://data.delijn.be/stops/302963"], ["https://data.delijn.be/stops/209683", "https://data.delijn.be/stops/209684"], ["https://data.delijn.be/stops/204043", "https://data.delijn.be/stops/205200"], ["https://data.delijn.be/stops/403145", "https://data.delijn.be/stops/410272"], ["https://data.delijn.be/stops/402526", "https://data.delijn.be/stops/402537"], ["https://data.delijn.be/stops/103683", "https://data.delijn.be/stops/106315"], ["https://data.delijn.be/stops/303496", "https://data.delijn.be/stops/303497"], ["https://data.delijn.be/stops/207936", "https://data.delijn.be/stops/209157"], ["https://data.delijn.be/stops/102081", "https://data.delijn.be/stops/102082"], ["https://data.delijn.be/stops/502058", "https://data.delijn.be/stops/507027"], ["https://data.delijn.be/stops/503794", "https://data.delijn.be/stops/508794"], ["https://data.delijn.be/stops/206257", "https://data.delijn.be/stops/207256"], ["https://data.delijn.be/stops/102634", "https://data.delijn.be/stops/104939"], ["https://data.delijn.be/stops/106615", "https://data.delijn.be/stops/106616"], ["https://data.delijn.be/stops/503232", "https://data.delijn.be/stops/503417"], ["https://data.delijn.be/stops/105823", "https://data.delijn.be/stops/107414"], ["https://data.delijn.be/stops/202778", "https://data.delijn.be/stops/202779"], ["https://data.delijn.be/stops/108439", "https://data.delijn.be/stops/108441"], ["https://data.delijn.be/stops/105109", "https://data.delijn.be/stops/107814"], ["https://data.delijn.be/stops/203121", "https://data.delijn.be/stops/204598"], ["https://data.delijn.be/stops/303865", "https://data.delijn.be/stops/305923"], ["https://data.delijn.be/stops/102412", "https://data.delijn.be/stops/103354"], ["https://data.delijn.be/stops/106981", "https://data.delijn.be/stops/107266"], ["https://data.delijn.be/stops/302158", "https://data.delijn.be/stops/308103"], ["https://data.delijn.be/stops/301343", "https://data.delijn.be/stops/301344"], ["https://data.delijn.be/stops/106990", "https://data.delijn.be/stops/106992"], ["https://data.delijn.be/stops/105278", "https://data.delijn.be/stops/105298"], ["https://data.delijn.be/stops/307565", "https://data.delijn.be/stops/307567"], ["https://data.delijn.be/stops/302613", "https://data.delijn.be/stops/302628"], ["https://data.delijn.be/stops/102381", "https://data.delijn.be/stops/106374"], ["https://data.delijn.be/stops/301864", "https://data.delijn.be/stops/306989"], ["https://data.delijn.be/stops/105926", "https://data.delijn.be/stops/107268"], ["https://data.delijn.be/stops/501513", "https://data.delijn.be/stops/506136"], ["https://data.delijn.be/stops/503447", "https://data.delijn.be/stops/509951"], ["https://data.delijn.be/stops/300405", "https://data.delijn.be/stops/307001"], ["https://data.delijn.be/stops/208420", "https://data.delijn.be/stops/208745"], ["https://data.delijn.be/stops/410207", "https://data.delijn.be/stops/410208"], ["https://data.delijn.be/stops/300378", "https://data.delijn.be/stops/307725"], ["https://data.delijn.be/stops/503136", "https://data.delijn.be/stops/508122"], ["https://data.delijn.be/stops/207755", "https://data.delijn.be/stops/207765"], ["https://data.delijn.be/stops/504075", "https://data.delijn.be/stops/509071"], ["https://data.delijn.be/stops/305946", "https://data.delijn.be/stops/308421"], ["https://data.delijn.be/stops/204115", "https://data.delijn.be/stops/205115"], ["https://data.delijn.be/stops/300578", "https://data.delijn.be/stops/300593"], ["https://data.delijn.be/stops/301303", "https://data.delijn.be/stops/306149"], ["https://data.delijn.be/stops/301905", "https://data.delijn.be/stops/306118"], ["https://data.delijn.be/stops/406232", "https://data.delijn.be/stops/406236"], ["https://data.delijn.be/stops/208164", "https://data.delijn.be/stops/209164"], ["https://data.delijn.be/stops/204518", "https://data.delijn.be/stops/205045"], ["https://data.delijn.be/stops/106909", "https://data.delijn.be/stops/107258"], ["https://data.delijn.be/stops/203702", "https://data.delijn.be/stops/203703"], ["https://data.delijn.be/stops/401198", "https://data.delijn.be/stops/401199"], ["https://data.delijn.be/stops/101045", "https://data.delijn.be/stops/105125"], ["https://data.delijn.be/stops/302353", "https://data.delijn.be/stops/306195"], ["https://data.delijn.be/stops/303201", "https://data.delijn.be/stops/305552"], ["https://data.delijn.be/stops/108154", "https://data.delijn.be/stops/108157"], ["https://data.delijn.be/stops/207969", "https://data.delijn.be/stops/301442"], ["https://data.delijn.be/stops/108385", "https://data.delijn.be/stops/108447"], ["https://data.delijn.be/stops/403197", "https://data.delijn.be/stops/403465"], ["https://data.delijn.be/stops/105163", "https://data.delijn.be/stops/107503"], ["https://data.delijn.be/stops/503837", "https://data.delijn.be/stops/508837"], ["https://data.delijn.be/stops/504267", "https://data.delijn.be/stops/509015"], ["https://data.delijn.be/stops/102248", "https://data.delijn.be/stops/102864"], ["https://data.delijn.be/stops/406660", "https://data.delijn.be/stops/406688"], ["https://data.delijn.be/stops/104685", "https://data.delijn.be/stops/104690"], ["https://data.delijn.be/stops/410086", "https://data.delijn.be/stops/410087"], ["https://data.delijn.be/stops/500023", "https://data.delijn.be/stops/506402"], ["https://data.delijn.be/stops/208130", "https://data.delijn.be/stops/209130"], ["https://data.delijn.be/stops/502732", "https://data.delijn.be/stops/507110"], ["https://data.delijn.be/stops/206177", "https://data.delijn.be/stops/207178"], ["https://data.delijn.be/stops/202831", "https://data.delijn.be/stops/203831"], ["https://data.delijn.be/stops/207680", "https://data.delijn.be/stops/209087"], ["https://data.delijn.be/stops/101679", "https://data.delijn.be/stops/101683"], ["https://data.delijn.be/stops/301701", "https://data.delijn.be/stops/303704"], ["https://data.delijn.be/stops/101616", "https://data.delijn.be/stops/101730"], ["https://data.delijn.be/stops/503996", "https://data.delijn.be/stops/508542"], ["https://data.delijn.be/stops/409264", "https://data.delijn.be/stops/409308"], ["https://data.delijn.be/stops/102254", "https://data.delijn.be/stops/109307"], ["https://data.delijn.be/stops/308463", "https://data.delijn.be/stops/308693"], ["https://data.delijn.be/stops/201830", "https://data.delijn.be/stops/201834"], ["https://data.delijn.be/stops/408452", "https://data.delijn.be/stops/410218"], ["https://data.delijn.be/stops/300155", "https://data.delijn.be/stops/300157"], ["https://data.delijn.be/stops/409330", "https://data.delijn.be/stops/409339"], ["https://data.delijn.be/stops/407843", "https://data.delijn.be/stops/407845"], ["https://data.delijn.be/stops/504136", "https://data.delijn.be/stops/504148"], ["https://data.delijn.be/stops/202711", "https://data.delijn.be/stops/202728"], ["https://data.delijn.be/stops/301279", "https://data.delijn.be/stops/304859"], ["https://data.delijn.be/stops/302291", "https://data.delijn.be/stops/307812"], ["https://data.delijn.be/stops/501386", "https://data.delijn.be/stops/506493"], ["https://data.delijn.be/stops/204175", "https://data.delijn.be/stops/204241"], ["https://data.delijn.be/stops/503692", "https://data.delijn.be/stops/503735"], ["https://data.delijn.be/stops/207336", "https://data.delijn.be/stops/207697"], ["https://data.delijn.be/stops/400256", "https://data.delijn.be/stops/402989"], ["https://data.delijn.be/stops/301889", "https://data.delijn.be/stops/301890"], ["https://data.delijn.be/stops/109070", "https://data.delijn.be/stops/306859"], ["https://data.delijn.be/stops/102717", "https://data.delijn.be/stops/105028"], ["https://data.delijn.be/stops/208078", "https://data.delijn.be/stops/209077"], ["https://data.delijn.be/stops/503950", "https://data.delijn.be/stops/508950"], ["https://data.delijn.be/stops/407212", "https://data.delijn.be/stops/407216"], ["https://data.delijn.be/stops/208128", "https://data.delijn.be/stops/208817"], ["https://data.delijn.be/stops/400700", "https://data.delijn.be/stops/400704"], ["https://data.delijn.be/stops/200267", "https://data.delijn.be/stops/200445"], ["https://data.delijn.be/stops/103747", "https://data.delijn.be/stops/105792"], ["https://data.delijn.be/stops/503735", "https://data.delijn.be/stops/508691"], ["https://data.delijn.be/stops/206435", "https://data.delijn.be/stops/209689"], ["https://data.delijn.be/stops/504285", "https://data.delijn.be/stops/504616"], ["https://data.delijn.be/stops/209736", "https://data.delijn.be/stops/210066"], ["https://data.delijn.be/stops/405915", "https://data.delijn.be/stops/405970"], ["https://data.delijn.be/stops/107568", "https://data.delijn.be/stops/107741"], ["https://data.delijn.be/stops/307561", "https://data.delijn.be/stops/307762"], ["https://data.delijn.be/stops/403814", "https://data.delijn.be/stops/403815"], ["https://data.delijn.be/stops/307950", "https://data.delijn.be/stops/307951"], ["https://data.delijn.be/stops/208257", "https://data.delijn.be/stops/208258"], ["https://data.delijn.be/stops/107603", "https://data.delijn.be/stops/107604"], ["https://data.delijn.be/stops/508071", "https://data.delijn.be/stops/508075"], ["https://data.delijn.be/stops/205388", "https://data.delijn.be/stops/205764"], ["https://data.delijn.be/stops/206585", "https://data.delijn.be/stops/217019"], ["https://data.delijn.be/stops/406320", "https://data.delijn.be/stops/406331"], ["https://data.delijn.be/stops/304458", "https://data.delijn.be/stops/307030"], ["https://data.delijn.be/stops/200661", "https://data.delijn.be/stops/200666"], ["https://data.delijn.be/stops/300944", "https://data.delijn.be/stops/300946"], ["https://data.delijn.be/stops/300084", "https://data.delijn.be/stops/306850"], ["https://data.delijn.be/stops/403129", "https://data.delijn.be/stops/403352"], ["https://data.delijn.be/stops/509163", "https://data.delijn.be/stops/509529"], ["https://data.delijn.be/stops/501522", "https://data.delijn.be/stops/506323"], ["https://data.delijn.be/stops/208184", "https://data.delijn.be/stops/208759"], ["https://data.delijn.be/stops/303443", "https://data.delijn.be/stops/303449"], ["https://data.delijn.be/stops/301960", "https://data.delijn.be/stops/301962"], ["https://data.delijn.be/stops/101686", "https://data.delijn.be/stops/101687"], ["https://data.delijn.be/stops/303207", "https://data.delijn.be/stops/303208"], ["https://data.delijn.be/stops/101050", "https://data.delijn.be/stops/108550"], ["https://data.delijn.be/stops/201386", "https://data.delijn.be/stops/202008"], ["https://data.delijn.be/stops/505963", "https://data.delijn.be/stops/507952"], ["https://data.delijn.be/stops/200126", "https://data.delijn.be/stops/201000"], ["https://data.delijn.be/stops/102494", "https://data.delijn.be/stops/400427"], ["https://data.delijn.be/stops/206258", "https://data.delijn.be/stops/206918"], ["https://data.delijn.be/stops/104007", "https://data.delijn.be/stops/104008"], ["https://data.delijn.be/stops/502721", "https://data.delijn.be/stops/502735"], ["https://data.delijn.be/stops/405025", "https://data.delijn.be/stops/405079"], ["https://data.delijn.be/stops/505983", "https://data.delijn.be/stops/509610"], ["https://data.delijn.be/stops/503454", "https://data.delijn.be/stops/508412"], ["https://data.delijn.be/stops/209444", "https://data.delijn.be/stops/209516"], ["https://data.delijn.be/stops/106337", "https://data.delijn.be/stops/106340"], ["https://data.delijn.be/stops/103254", "https://data.delijn.be/stops/104388"], ["https://data.delijn.be/stops/307429", "https://data.delijn.be/stops/308591"], ["https://data.delijn.be/stops/405890", "https://data.delijn.be/stops/409769"], ["https://data.delijn.be/stops/303305", "https://data.delijn.be/stops/303310"], ["https://data.delijn.be/stops/201477", "https://data.delijn.be/stops/208963"], ["https://data.delijn.be/stops/503200", "https://data.delijn.be/stops/508189"], ["https://data.delijn.be/stops/408822", "https://data.delijn.be/stops/408825"], ["https://data.delijn.be/stops/108636", "https://data.delijn.be/stops/109661"], ["https://data.delijn.be/stops/201916", "https://data.delijn.be/stops/207426"], ["https://data.delijn.be/stops/206560", "https://data.delijn.be/stops/208953"], ["https://data.delijn.be/stops/106007", "https://data.delijn.be/stops/106011"], ["https://data.delijn.be/stops/108438", "https://data.delijn.be/stops/108466"], ["https://data.delijn.be/stops/405525", "https://data.delijn.be/stops/405527"], ["https://data.delijn.be/stops/209622", "https://data.delijn.be/stops/209623"], ["https://data.delijn.be/stops/501206", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/501034", "https://data.delijn.be/stops/506034"], ["https://data.delijn.be/stops/208758", "https://data.delijn.be/stops/208759"], ["https://data.delijn.be/stops/407448", "https://data.delijn.be/stops/407449"], ["https://data.delijn.be/stops/207352", "https://data.delijn.be/stops/207353"], ["https://data.delijn.be/stops/502616", "https://data.delijn.be/stops/502620"], ["https://data.delijn.be/stops/202311", "https://data.delijn.be/stops/202312"], ["https://data.delijn.be/stops/301896", "https://data.delijn.be/stops/304281"], ["https://data.delijn.be/stops/405935", "https://data.delijn.be/stops/405967"], ["https://data.delijn.be/stops/501369", "https://data.delijn.be/stops/506493"], ["https://data.delijn.be/stops/503593", "https://data.delijn.be/stops/503596"], ["https://data.delijn.be/stops/300373", "https://data.delijn.be/stops/300403"], ["https://data.delijn.be/stops/401766", "https://data.delijn.be/stops/401769"], ["https://data.delijn.be/stops/307441", "https://data.delijn.be/stops/307444"], ["https://data.delijn.be/stops/303810", "https://data.delijn.be/stops/303818"], ["https://data.delijn.be/stops/403619", "https://data.delijn.be/stops/403630"], ["https://data.delijn.be/stops/208408", "https://data.delijn.be/stops/209408"], ["https://data.delijn.be/stops/402078", "https://data.delijn.be/stops/402356"], ["https://data.delijn.be/stops/403224", "https://data.delijn.be/stops/403225"], ["https://data.delijn.be/stops/208473", "https://data.delijn.be/stops/209474"], ["https://data.delijn.be/stops/208223", "https://data.delijn.be/stops/209219"], ["https://data.delijn.be/stops/305004", "https://data.delijn.be/stops/305005"], ["https://data.delijn.be/stops/302631", "https://data.delijn.be/stops/302643"], ["https://data.delijn.be/stops/503408", "https://data.delijn.be/stops/508441"], ["https://data.delijn.be/stops/208514", "https://data.delijn.be/stops/209464"], ["https://data.delijn.be/stops/405799", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/102417", "https://data.delijn.be/stops/102418"], ["https://data.delijn.be/stops/406204", "https://data.delijn.be/stops/406449"], ["https://data.delijn.be/stops/403822", "https://data.delijn.be/stops/406889"], ["https://data.delijn.be/stops/104693", "https://data.delijn.be/stops/107353"], ["https://data.delijn.be/stops/204675", "https://data.delijn.be/stops/205262"], ["https://data.delijn.be/stops/202780", "https://data.delijn.be/stops/203770"], ["https://data.delijn.be/stops/301339", "https://data.delijn.be/stops/301343"], ["https://data.delijn.be/stops/405345", "https://data.delijn.be/stops/405347"], ["https://data.delijn.be/stops/504463", "https://data.delijn.be/stops/504574"], ["https://data.delijn.be/stops/200010", "https://data.delijn.be/stops/211020"], ["https://data.delijn.be/stops/402219", "https://data.delijn.be/stops/402297"], ["https://data.delijn.be/stops/101808", "https://data.delijn.be/stops/108378"], ["https://data.delijn.be/stops/509136", "https://data.delijn.be/stops/509143"], ["https://data.delijn.be/stops/403140", "https://data.delijn.be/stops/403141"], ["https://data.delijn.be/stops/502549", "https://data.delijn.be/stops/507655"], ["https://data.delijn.be/stops/106626", "https://data.delijn.be/stops/106630"], ["https://data.delijn.be/stops/201304", "https://data.delijn.be/stops/201305"], ["https://data.delijn.be/stops/504369", "https://data.delijn.be/stops/507173"], ["https://data.delijn.be/stops/207546", "https://data.delijn.be/stops/207547"], ["https://data.delijn.be/stops/408810", "https://data.delijn.be/stops/408811"], ["https://data.delijn.be/stops/107220", "https://data.delijn.be/stops/107221"], ["https://data.delijn.be/stops/308446", "https://data.delijn.be/stops/308447"], ["https://data.delijn.be/stops/300840", "https://data.delijn.be/stops/304566"], ["https://data.delijn.be/stops/503302", "https://data.delijn.be/stops/504859"], ["https://data.delijn.be/stops/304494", "https://data.delijn.be/stops/307467"], ["https://data.delijn.be/stops/102842", "https://data.delijn.be/stops/106566"], ["https://data.delijn.be/stops/300473", "https://data.delijn.be/stops/302669"], ["https://data.delijn.be/stops/301533", "https://data.delijn.be/stops/301542"], ["https://data.delijn.be/stops/204597", "https://data.delijn.be/stops/204832"], ["https://data.delijn.be/stops/207149", "https://data.delijn.be/stops/207150"], ["https://data.delijn.be/stops/106676", "https://data.delijn.be/stops/106677"], ["https://data.delijn.be/stops/201847", "https://data.delijn.be/stops/210020"], ["https://data.delijn.be/stops/105554", "https://data.delijn.be/stops/105557"], ["https://data.delijn.be/stops/200825", "https://data.delijn.be/stops/202299"], ["https://data.delijn.be/stops/107076", "https://data.delijn.be/stops/107078"], ["https://data.delijn.be/stops/206391", "https://data.delijn.be/stops/206392"], ["https://data.delijn.be/stops/303744", "https://data.delijn.be/stops/303757"], ["https://data.delijn.be/stops/203102", "https://data.delijn.be/stops/203103"], ["https://data.delijn.be/stops/400642", "https://data.delijn.be/stops/400907"], ["https://data.delijn.be/stops/402637", "https://data.delijn.be/stops/402641"], ["https://data.delijn.be/stops/107018", "https://data.delijn.be/stops/107021"], ["https://data.delijn.be/stops/204677", "https://data.delijn.be/stops/205338"], ["https://data.delijn.be/stops/501224", "https://data.delijn.be/stops/506105"], ["https://data.delijn.be/stops/206774", "https://data.delijn.be/stops/217001"], ["https://data.delijn.be/stops/504601", "https://data.delijn.be/stops/509605"], ["https://data.delijn.be/stops/105999", "https://data.delijn.be/stops/106001"], ["https://data.delijn.be/stops/203155", "https://data.delijn.be/stops/203158"], ["https://data.delijn.be/stops/308450", "https://data.delijn.be/stops/308513"], ["https://data.delijn.be/stops/501149", "https://data.delijn.be/stops/501156"], ["https://data.delijn.be/stops/403261", "https://data.delijn.be/stops/403845"], ["https://data.delijn.be/stops/201864", "https://data.delijn.be/stops/203031"], ["https://data.delijn.be/stops/301323", "https://data.delijn.be/stops/306656"], ["https://data.delijn.be/stops/104844", "https://data.delijn.be/stops/105746"], ["https://data.delijn.be/stops/508172", "https://data.delijn.be/stops/508177"], ["https://data.delijn.be/stops/503431", "https://data.delijn.be/stops/508441"], ["https://data.delijn.be/stops/200075", "https://data.delijn.be/stops/201076"], ["https://data.delijn.be/stops/300415", "https://data.delijn.be/stops/300419"], ["https://data.delijn.be/stops/402387", "https://data.delijn.be/stops/402489"], ["https://data.delijn.be/stops/501497", "https://data.delijn.be/stops/506375"], ["https://data.delijn.be/stops/206885", "https://data.delijn.be/stops/207352"], ["https://data.delijn.be/stops/200670", "https://data.delijn.be/stops/201561"], ["https://data.delijn.be/stops/107486", "https://data.delijn.be/stops/107509"], ["https://data.delijn.be/stops/402942", "https://data.delijn.be/stops/301271"], ["https://data.delijn.be/stops/208628", "https://data.delijn.be/stops/209628"], ["https://data.delijn.be/stops/504380", "https://data.delijn.be/stops/509383"], ["https://data.delijn.be/stops/403954", "https://data.delijn.be/stops/403955"], ["https://data.delijn.be/stops/502565", "https://data.delijn.be/stops/507582"], ["https://data.delijn.be/stops/409762", "https://data.delijn.be/stops/409766"], ["https://data.delijn.be/stops/403299", "https://data.delijn.be/stops/403545"], ["https://data.delijn.be/stops/503594", "https://data.delijn.be/stops/508593"], ["https://data.delijn.be/stops/101666", "https://data.delijn.be/stops/107064"], ["https://data.delijn.be/stops/305151", "https://data.delijn.be/stops/308904"], ["https://data.delijn.be/stops/504109", "https://data.delijn.be/stops/504470"], ["https://data.delijn.be/stops/102218", "https://data.delijn.be/stops/102221"], ["https://data.delijn.be/stops/102422", "https://data.delijn.be/stops/106996"], ["https://data.delijn.be/stops/102836", "https://data.delijn.be/stops/102839"], ["https://data.delijn.be/stops/502618", "https://data.delijn.be/stops/507618"], ["https://data.delijn.be/stops/104364", "https://data.delijn.be/stops/204258"], ["https://data.delijn.be/stops/305979", "https://data.delijn.be/stops/305981"], ["https://data.delijn.be/stops/101067", "https://data.delijn.be/stops/109095"], ["https://data.delijn.be/stops/208369", "https://data.delijn.be/stops/209387"], ["https://data.delijn.be/stops/406202", "https://data.delijn.be/stops/410270"], ["https://data.delijn.be/stops/402574", "https://data.delijn.be/stops/402583"], ["https://data.delijn.be/stops/501398", "https://data.delijn.be/stops/506401"], ["https://data.delijn.be/stops/406369", "https://data.delijn.be/stops/410395"], ["https://data.delijn.be/stops/410143", "https://data.delijn.be/stops/410144"], ["https://data.delijn.be/stops/103047", "https://data.delijn.be/stops/103048"], ["https://data.delijn.be/stops/403196", "https://data.delijn.be/stops/403197"], ["https://data.delijn.be/stops/300392", "https://data.delijn.be/stops/307279"], ["https://data.delijn.be/stops/109361", "https://data.delijn.be/stops/109364"], ["https://data.delijn.be/stops/403153", "https://data.delijn.be/stops/410275"], ["https://data.delijn.be/stops/405200", "https://data.delijn.be/stops/405289"], ["https://data.delijn.be/stops/503278", "https://data.delijn.be/stops/505953"], ["https://data.delijn.be/stops/504588", "https://data.delijn.be/stops/509153"], ["https://data.delijn.be/stops/202706", "https://data.delijn.be/stops/203705"], ["https://data.delijn.be/stops/302219", "https://data.delijn.be/stops/302230"], ["https://data.delijn.be/stops/103094", "https://data.delijn.be/stops/109273"], ["https://data.delijn.be/stops/206786", "https://data.delijn.be/stops/206788"], ["https://data.delijn.be/stops/504156", "https://data.delijn.be/stops/504191"], ["https://data.delijn.be/stops/502811", "https://data.delijn.be/stops/505594"], ["https://data.delijn.be/stops/105926", "https://data.delijn.be/stops/109722"], ["https://data.delijn.be/stops/503098", "https://data.delijn.be/stops/503800"], ["https://data.delijn.be/stops/201885", "https://data.delijn.be/stops/203285"], ["https://data.delijn.be/stops/206451", "https://data.delijn.be/stops/207494"], ["https://data.delijn.be/stops/304481", "https://data.delijn.be/stops/307674"], ["https://data.delijn.be/stops/410342", "https://data.delijn.be/stops/410343"], ["https://data.delijn.be/stops/304393", "https://data.delijn.be/stops/307404"], ["https://data.delijn.be/stops/202181", "https://data.delijn.be/stops/202183"], ["https://data.delijn.be/stops/405024", "https://data.delijn.be/stops/405106"], ["https://data.delijn.be/stops/405171", "https://data.delijn.be/stops/405175"], ["https://data.delijn.be/stops/502617", "https://data.delijn.be/stops/507052"], ["https://data.delijn.be/stops/503830", "https://data.delijn.be/stops/503832"], ["https://data.delijn.be/stops/200713", "https://data.delijn.be/stops/203599"], ["https://data.delijn.be/stops/503230", "https://data.delijn.be/stops/503263"], ["https://data.delijn.be/stops/102743", "https://data.delijn.be/stops/107402"], ["https://data.delijn.be/stops/204436", "https://data.delijn.be/stops/204437"], ["https://data.delijn.be/stops/501047", "https://data.delijn.be/stops/507730"], ["https://data.delijn.be/stops/101345", "https://data.delijn.be/stops/104889"], ["https://data.delijn.be/stops/301384", "https://data.delijn.be/stops/304797"], ["https://data.delijn.be/stops/208029", "https://data.delijn.be/stops/208037"], ["https://data.delijn.be/stops/305829", "https://data.delijn.be/stops/305830"], ["https://data.delijn.be/stops/105288", "https://data.delijn.be/stops/105289"], ["https://data.delijn.be/stops/403588", "https://data.delijn.be/stops/404263"], ["https://data.delijn.be/stops/206183", "https://data.delijn.be/stops/207183"], ["https://data.delijn.be/stops/301365", "https://data.delijn.be/stops/304800"], ["https://data.delijn.be/stops/200633", "https://data.delijn.be/stops/201633"], ["https://data.delijn.be/stops/306612", "https://data.delijn.be/stops/306628"], ["https://data.delijn.be/stops/209423", "https://data.delijn.be/stops/209466"], ["https://data.delijn.be/stops/306943", "https://data.delijn.be/stops/306947"], ["https://data.delijn.be/stops/300442", "https://data.delijn.be/stops/307093"], ["https://data.delijn.be/stops/507230", "https://data.delijn.be/stops/507822"], ["https://data.delijn.be/stops/308508", "https://data.delijn.be/stops/308691"], ["https://data.delijn.be/stops/200548", "https://data.delijn.be/stops/211089"], ["https://data.delijn.be/stops/300180", "https://data.delijn.be/stops/300184"], ["https://data.delijn.be/stops/505362", "https://data.delijn.be/stops/505842"], ["https://data.delijn.be/stops/302998", "https://data.delijn.be/stops/303004"], ["https://data.delijn.be/stops/401509", "https://data.delijn.be/stops/402034"], ["https://data.delijn.be/stops/104681", "https://data.delijn.be/stops/109600"], ["https://data.delijn.be/stops/304796", "https://data.delijn.be/stops/306688"], ["https://data.delijn.be/stops/407519", "https://data.delijn.be/stops/408267"], ["https://data.delijn.be/stops/305483", "https://data.delijn.be/stops/308550"], ["https://data.delijn.be/stops/206571", "https://data.delijn.be/stops/208953"], ["https://data.delijn.be/stops/208498", "https://data.delijn.be/stops/209470"], ["https://data.delijn.be/stops/104502", "https://data.delijn.be/stops/204563"], ["https://data.delijn.be/stops/504047", "https://data.delijn.be/stops/509047"], ["https://data.delijn.be/stops/307544", "https://data.delijn.be/stops/307755"], ["https://data.delijn.be/stops/206222", "https://data.delijn.be/stops/207809"], ["https://data.delijn.be/stops/304548", "https://data.delijn.be/stops/304665"], ["https://data.delijn.be/stops/406122", "https://data.delijn.be/stops/406125"], ["https://data.delijn.be/stops/504517", "https://data.delijn.be/stops/509516"], ["https://data.delijn.be/stops/203499", "https://data.delijn.be/stops/204092"], ["https://data.delijn.be/stops/104598", "https://data.delijn.be/stops/107426"], ["https://data.delijn.be/stops/304036", "https://data.delijn.be/stops/304076"], ["https://data.delijn.be/stops/202057", "https://data.delijn.be/stops/210073"], ["https://data.delijn.be/stops/206014", "https://data.delijn.be/stops/206889"], ["https://data.delijn.be/stops/105834", "https://data.delijn.be/stops/105836"], ["https://data.delijn.be/stops/304823", "https://data.delijn.be/stops/304824"], ["https://data.delijn.be/stops/209374", "https://data.delijn.be/stops/209454"], ["https://data.delijn.be/stops/407241", "https://data.delijn.be/stops/407490"], ["https://data.delijn.be/stops/109967", "https://data.delijn.be/stops/109973"], ["https://data.delijn.be/stops/406228", "https://data.delijn.be/stops/406264"], ["https://data.delijn.be/stops/206089", "https://data.delijn.be/stops/207094"], ["https://data.delijn.be/stops/503238", "https://data.delijn.be/stops/508261"], ["https://data.delijn.be/stops/300744", "https://data.delijn.be/stops/300758"], ["https://data.delijn.be/stops/101429", "https://data.delijn.be/stops/101431"], ["https://data.delijn.be/stops/103292", "https://data.delijn.be/stops/105502"], ["https://data.delijn.be/stops/303259", "https://data.delijn.be/stops/306338"], ["https://data.delijn.be/stops/208547", "https://data.delijn.be/stops/209547"], ["https://data.delijn.be/stops/505276", "https://data.delijn.be/stops/508331"], ["https://data.delijn.be/stops/404320", "https://data.delijn.be/stops/404352"], ["https://data.delijn.be/stops/206315", "https://data.delijn.be/stops/207315"], ["https://data.delijn.be/stops/204527", "https://data.delijn.be/stops/204730"], ["https://data.delijn.be/stops/401437", "https://data.delijn.be/stops/410109"], ["https://data.delijn.be/stops/206287", "https://data.delijn.be/stops/207286"], ["https://data.delijn.be/stops/200836", "https://data.delijn.be/stops/203303"], ["https://data.delijn.be/stops/303059", "https://data.delijn.be/stops/303071"], ["https://data.delijn.be/stops/404092", "https://data.delijn.be/stops/404093"], ["https://data.delijn.be/stops/204216", "https://data.delijn.be/stops/204217"], ["https://data.delijn.be/stops/201089", "https://data.delijn.be/stops/202746"], ["https://data.delijn.be/stops/200711", "https://data.delijn.be/stops/202602"], ["https://data.delijn.be/stops/502659", "https://data.delijn.be/stops/507659"], ["https://data.delijn.be/stops/400288", "https://data.delijn.be/stops/400359"], ["https://data.delijn.be/stops/303227", "https://data.delijn.be/stops/304184"], ["https://data.delijn.be/stops/406224", "https://data.delijn.be/stops/406225"], ["https://data.delijn.be/stops/403603", "https://data.delijn.be/stops/403609"], ["https://data.delijn.be/stops/101487", "https://data.delijn.be/stops/108744"], ["https://data.delijn.be/stops/107223", "https://data.delijn.be/stops/107225"], ["https://data.delijn.be/stops/501247", "https://data.delijn.be/stops/506254"], ["https://data.delijn.be/stops/210020", "https://data.delijn.be/stops/210021"], ["https://data.delijn.be/stops/102190", "https://data.delijn.be/stops/102195"], ["https://data.delijn.be/stops/207138", "https://data.delijn.be/stops/207139"], ["https://data.delijn.be/stops/407855", "https://data.delijn.be/stops/407856"], ["https://data.delijn.be/stops/505772", "https://data.delijn.be/stops/507675"], ["https://data.delijn.be/stops/300171", "https://data.delijn.be/stops/300174"], ["https://data.delijn.be/stops/502631", "https://data.delijn.be/stops/507443"], ["https://data.delijn.be/stops/504521", "https://data.delijn.be/stops/509519"], ["https://data.delijn.be/stops/208841", "https://data.delijn.be/stops/209583"], ["https://data.delijn.be/stops/107590", "https://data.delijn.be/stops/108820"], ["https://data.delijn.be/stops/502748", "https://data.delijn.be/stops/507612"], ["https://data.delijn.be/stops/503487", "https://data.delijn.be/stops/508487"], ["https://data.delijn.be/stops/403737", "https://data.delijn.be/stops/403740"], ["https://data.delijn.be/stops/107837", "https://data.delijn.be/stops/109652"], ["https://data.delijn.be/stops/101393", "https://data.delijn.be/stops/106516"], ["https://data.delijn.be/stops/400133", "https://data.delijn.be/stops/409173"], ["https://data.delijn.be/stops/202959", "https://data.delijn.be/stops/202960"], ["https://data.delijn.be/stops/204211", "https://data.delijn.be/stops/206807"], ["https://data.delijn.be/stops/101220", "https://data.delijn.be/stops/102594"], ["https://data.delijn.be/stops/306195", "https://data.delijn.be/stops/307854"], ["https://data.delijn.be/stops/203094", "https://data.delijn.be/stops/203097"], ["https://data.delijn.be/stops/401514", "https://data.delijn.be/stops/409193"], ["https://data.delijn.be/stops/503006", "https://data.delijn.be/stops/508006"], ["https://data.delijn.be/stops/307185", "https://data.delijn.be/stops/307187"], ["https://data.delijn.be/stops/208017", "https://data.delijn.be/stops/208022"], ["https://data.delijn.be/stops/102473", "https://data.delijn.be/stops/400299"], ["https://data.delijn.be/stops/306610", "https://data.delijn.be/stops/306613"], ["https://data.delijn.be/stops/408616", "https://data.delijn.be/stops/408617"], ["https://data.delijn.be/stops/505082", "https://data.delijn.be/stops/507813"], ["https://data.delijn.be/stops/208488", "https://data.delijn.be/stops/209488"], ["https://data.delijn.be/stops/200690", "https://data.delijn.be/stops/201683"], ["https://data.delijn.be/stops/204200", "https://data.delijn.be/stops/204201"], ["https://data.delijn.be/stops/104907", "https://data.delijn.be/stops/107849"], ["https://data.delijn.be/stops/103977", "https://data.delijn.be/stops/109010"], ["https://data.delijn.be/stops/105667", "https://data.delijn.be/stops/105668"], ["https://data.delijn.be/stops/101841", "https://data.delijn.be/stops/109398"], ["https://data.delijn.be/stops/405614", "https://data.delijn.be/stops/405615"], ["https://data.delijn.be/stops/210065", "https://data.delijn.be/stops/211065"], ["https://data.delijn.be/stops/101837", "https://data.delijn.be/stops/108198"], ["https://data.delijn.be/stops/109253", "https://data.delijn.be/stops/109254"], ["https://data.delijn.be/stops/305460", "https://data.delijn.be/stops/306555"], ["https://data.delijn.be/stops/208103", "https://data.delijn.be/stops/209104"], ["https://data.delijn.be/stops/406086", "https://data.delijn.be/stops/406090"], ["https://data.delijn.be/stops/205531", "https://data.delijn.be/stops/205537"], ["https://data.delijn.be/stops/208787", "https://data.delijn.be/stops/209167"], ["https://data.delijn.be/stops/101186", "https://data.delijn.be/stops/102849"], ["https://data.delijn.be/stops/406914", "https://data.delijn.be/stops/406927"], ["https://data.delijn.be/stops/401582", "https://data.delijn.be/stops/401583"], ["https://data.delijn.be/stops/502281", "https://data.delijn.be/stops/507281"], ["https://data.delijn.be/stops/401867", "https://data.delijn.be/stops/406282"], ["https://data.delijn.be/stops/403938", "https://data.delijn.be/stops/403984"], ["https://data.delijn.be/stops/402405", "https://data.delijn.be/stops/409600"], ["https://data.delijn.be/stops/301555", "https://data.delijn.be/stops/301558"], ["https://data.delijn.be/stops/200030", "https://data.delijn.be/stops/201075"], ["https://data.delijn.be/stops/402134", "https://data.delijn.be/stops/402143"], ["https://data.delijn.be/stops/406939", "https://data.delijn.be/stops/407325"], ["https://data.delijn.be/stops/303723", "https://data.delijn.be/stops/303734"], ["https://data.delijn.be/stops/208765", "https://data.delijn.be/stops/219015"], ["https://data.delijn.be/stops/500119", "https://data.delijn.be/stops/507466"], ["https://data.delijn.be/stops/305132", "https://data.delijn.be/stops/305214"], ["https://data.delijn.be/stops/206238", "https://data.delijn.be/stops/207813"], ["https://data.delijn.be/stops/303762", "https://data.delijn.be/stops/303763"], ["https://data.delijn.be/stops/503457", "https://data.delijn.be/stops/508459"], ["https://data.delijn.be/stops/501158", "https://data.delijn.be/stops/509836"], ["https://data.delijn.be/stops/501039", "https://data.delijn.be/stops/501488"], ["https://data.delijn.be/stops/504041", "https://data.delijn.be/stops/508916"], ["https://data.delijn.be/stops/303970", "https://data.delijn.be/stops/303972"], ["https://data.delijn.be/stops/206397", "https://data.delijn.be/stops/207281"], ["https://data.delijn.be/stops/302688", "https://data.delijn.be/stops/302696"], ["https://data.delijn.be/stops/302749", "https://data.delijn.be/stops/308911"], ["https://data.delijn.be/stops/306648", "https://data.delijn.be/stops/306649"], ["https://data.delijn.be/stops/301704", "https://data.delijn.be/stops/301727"], ["https://data.delijn.be/stops/300797", "https://data.delijn.be/stops/300805"], ["https://data.delijn.be/stops/204666", "https://data.delijn.be/stops/205666"], ["https://data.delijn.be/stops/101832", "https://data.delijn.be/stops/108181"], ["https://data.delijn.be/stops/207772", "https://data.delijn.be/stops/208740"], ["https://data.delijn.be/stops/301702", "https://data.delijn.be/stops/303711"], ["https://data.delijn.be/stops/307544", "https://data.delijn.be/stops/307545"], ["https://data.delijn.be/stops/503143", "https://data.delijn.be/stops/508143"], ["https://data.delijn.be/stops/106562", "https://data.delijn.be/stops/106563"], ["https://data.delijn.be/stops/209285", "https://data.delijn.be/stops/219018"], ["https://data.delijn.be/stops/101371", "https://data.delijn.be/stops/101372"], ["https://data.delijn.be/stops/206525", "https://data.delijn.be/stops/207525"], ["https://data.delijn.be/stops/505924", "https://data.delijn.be/stops/509827"], ["https://data.delijn.be/stops/206650", "https://data.delijn.be/stops/207650"], ["https://data.delijn.be/stops/105258", "https://data.delijn.be/stops/109975"], ["https://data.delijn.be/stops/503567", "https://data.delijn.be/stops/504362"], ["https://data.delijn.be/stops/504375", "https://data.delijn.be/stops/508561"], ["https://data.delijn.be/stops/209782", "https://data.delijn.be/stops/209784"], ["https://data.delijn.be/stops/401588", "https://data.delijn.be/stops/402116"], ["https://data.delijn.be/stops/303995", "https://data.delijn.be/stops/306291"], ["https://data.delijn.be/stops/302646", "https://data.delijn.be/stops/302656"], ["https://data.delijn.be/stops/102125", "https://data.delijn.be/stops/105760"], ["https://data.delijn.be/stops/101990", "https://data.delijn.be/stops/102425"], ["https://data.delijn.be/stops/208368", "https://data.delijn.be/stops/209368"], ["https://data.delijn.be/stops/504664", "https://data.delijn.be/stops/509018"], ["https://data.delijn.be/stops/302461", "https://data.delijn.be/stops/308600"], ["https://data.delijn.be/stops/304536", "https://data.delijn.be/stops/306207"], ["https://data.delijn.be/stops/102546", "https://data.delijn.be/stops/405004"], ["https://data.delijn.be/stops/102198", "https://data.delijn.be/stops/105264"], ["https://data.delijn.be/stops/102591", "https://data.delijn.be/stops/102592"], ["https://data.delijn.be/stops/108799", "https://data.delijn.be/stops/108801"], ["https://data.delijn.be/stops/103789", "https://data.delijn.be/stops/109143"], ["https://data.delijn.be/stops/501349", "https://data.delijn.be/stops/506349"], ["https://data.delijn.be/stops/501528", "https://data.delijn.be/stops/506199"], ["https://data.delijn.be/stops/106872", "https://data.delijn.be/stops/106877"], ["https://data.delijn.be/stops/300319", "https://data.delijn.be/stops/300321"], ["https://data.delijn.be/stops/301030", "https://data.delijn.be/stops/301035"], ["https://data.delijn.be/stops/505558", "https://data.delijn.be/stops/507921"], ["https://data.delijn.be/stops/109642", "https://data.delijn.be/stops/109643"], ["https://data.delijn.be/stops/303745", "https://data.delijn.be/stops/303756"], ["https://data.delijn.be/stops/308474", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/506412", "https://data.delijn.be/stops/509840"], ["https://data.delijn.be/stops/406947", "https://data.delijn.be/stops/406979"], ["https://data.delijn.be/stops/408338", "https://data.delijn.be/stops/408383"], ["https://data.delijn.be/stops/206631", "https://data.delijn.be/stops/209569"], ["https://data.delijn.be/stops/206439", "https://data.delijn.be/stops/207439"], ["https://data.delijn.be/stops/407140", "https://data.delijn.be/stops/407330"], ["https://data.delijn.be/stops/408004", "https://data.delijn.be/stops/408283"], ["https://data.delijn.be/stops/208799", "https://data.delijn.be/stops/209353"], ["https://data.delijn.be/stops/502410", "https://data.delijn.be/stops/507410"], ["https://data.delijn.be/stops/200926", "https://data.delijn.be/stops/201697"], ["https://data.delijn.be/stops/200515", "https://data.delijn.be/stops/201173"], ["https://data.delijn.be/stops/101375", "https://data.delijn.be/stops/102894"], ["https://data.delijn.be/stops/404559", "https://data.delijn.be/stops/405330"], ["https://data.delijn.be/stops/204458", "https://data.delijn.be/stops/205459"], ["https://data.delijn.be/stops/206580", "https://data.delijn.be/stops/207209"], ["https://data.delijn.be/stops/201153", "https://data.delijn.be/stops/202359"], ["https://data.delijn.be/stops/205659", "https://data.delijn.be/stops/205680"], ["https://data.delijn.be/stops/304301", "https://data.delijn.be/stops/306826"], ["https://data.delijn.be/stops/200935", "https://data.delijn.be/stops/200940"], ["https://data.delijn.be/stops/106906", "https://data.delijn.be/stops/107250"], ["https://data.delijn.be/stops/502508", "https://data.delijn.be/stops/507535"], ["https://data.delijn.be/stops/201765", "https://data.delijn.be/stops/209847"], ["https://data.delijn.be/stops/305380", "https://data.delijn.be/stops/305422"], ["https://data.delijn.be/stops/101379", "https://data.delijn.be/stops/103716"], ["https://data.delijn.be/stops/107554", "https://data.delijn.be/stops/108948"], ["https://data.delijn.be/stops/507443", "https://data.delijn.be/stops/507449"], ["https://data.delijn.be/stops/101222", "https://data.delijn.be/stops/102649"], ["https://data.delijn.be/stops/108283", "https://data.delijn.be/stops/109361"], ["https://data.delijn.be/stops/201120", "https://data.delijn.be/stops/201125"], ["https://data.delijn.be/stops/108282", "https://data.delijn.be/stops/109310"], ["https://data.delijn.be/stops/101726", "https://data.delijn.be/stops/106805"], ["https://data.delijn.be/stops/102442", "https://data.delijn.be/stops/102596"], ["https://data.delijn.be/stops/105698", "https://data.delijn.be/stops/105701"], ["https://data.delijn.be/stops/200204", "https://data.delijn.be/stops/201253"], ["https://data.delijn.be/stops/101921", "https://data.delijn.be/stops/109895"], ["https://data.delijn.be/stops/405231", "https://data.delijn.be/stops/408369"], ["https://data.delijn.be/stops/204412", "https://data.delijn.be/stops/204427"], ["https://data.delijn.be/stops/206720", "https://data.delijn.be/stops/207657"], ["https://data.delijn.be/stops/405428", "https://data.delijn.be/stops/302852"], ["https://data.delijn.be/stops/304266", "https://data.delijn.be/stops/304268"], ["https://data.delijn.be/stops/204167", "https://data.delijn.be/stops/204593"], ["https://data.delijn.be/stops/206391", "https://data.delijn.be/stops/207391"], ["https://data.delijn.be/stops/408080", "https://data.delijn.be/stops/305696"], ["https://data.delijn.be/stops/204101", "https://data.delijn.be/stops/206395"], ["https://data.delijn.be/stops/204386", "https://data.delijn.be/stops/205387"], ["https://data.delijn.be/stops/500120", "https://data.delijn.be/stops/507462"], ["https://data.delijn.be/stops/104483", "https://data.delijn.be/stops/104484"], ["https://data.delijn.be/stops/304512", "https://data.delijn.be/stops/306205"], ["https://data.delijn.be/stops/207301", "https://data.delijn.be/stops/207303"], ["https://data.delijn.be/stops/300148", "https://data.delijn.be/stops/306830"], ["https://data.delijn.be/stops/202206", "https://data.delijn.be/stops/202207"], ["https://data.delijn.be/stops/403155", "https://data.delijn.be/stops/407585"], ["https://data.delijn.be/stops/505792", "https://data.delijn.be/stops/508088"], ["https://data.delijn.be/stops/403464", "https://data.delijn.be/stops/403494"], ["https://data.delijn.be/stops/103715", "https://data.delijn.be/stops/104135"], ["https://data.delijn.be/stops/202218", "https://data.delijn.be/stops/204795"], ["https://data.delijn.be/stops/105340", "https://data.delijn.be/stops/108980"], ["https://data.delijn.be/stops/303536", "https://data.delijn.be/stops/305481"], ["https://data.delijn.be/stops/401781", "https://data.delijn.be/stops/406124"], ["https://data.delijn.be/stops/104776", "https://data.delijn.be/stops/104781"], ["https://data.delijn.be/stops/503432", "https://data.delijn.be/stops/508393"], ["https://data.delijn.be/stops/400078", "https://data.delijn.be/stops/400104"], ["https://data.delijn.be/stops/103718", "https://data.delijn.be/stops/103767"], ["https://data.delijn.be/stops/300977", "https://data.delijn.be/stops/301074"], ["https://data.delijn.be/stops/504055", "https://data.delijn.be/stops/504057"], ["https://data.delijn.be/stops/508071", "https://data.delijn.be/stops/508945"], ["https://data.delijn.be/stops/102398", "https://data.delijn.be/stops/106218"], ["https://data.delijn.be/stops/403134", "https://data.delijn.be/stops/410146"], ["https://data.delijn.be/stops/201014", "https://data.delijn.be/stops/201016"], ["https://data.delijn.be/stops/400171", "https://data.delijn.be/stops/400931"], ["https://data.delijn.be/stops/101687", "https://data.delijn.be/stops/101692"], ["https://data.delijn.be/stops/209231", "https://data.delijn.be/stops/209796"], ["https://data.delijn.be/stops/200555", "https://data.delijn.be/stops/201555"], ["https://data.delijn.be/stops/201482", "https://data.delijn.be/stops/202895"], ["https://data.delijn.be/stops/102540", "https://data.delijn.be/stops/104346"], ["https://data.delijn.be/stops/201871", "https://data.delijn.be/stops/203278"], ["https://data.delijn.be/stops/109171", "https://data.delijn.be/stops/109236"], ["https://data.delijn.be/stops/304579", "https://data.delijn.be/stops/305578"], ["https://data.delijn.be/stops/101474", "https://data.delijn.be/stops/109173"], ["https://data.delijn.be/stops/503355", "https://data.delijn.be/stops/505135"], ["https://data.delijn.be/stops/508055", "https://data.delijn.be/stops/508155"], ["https://data.delijn.be/stops/403474", "https://data.delijn.be/stops/410219"], ["https://data.delijn.be/stops/304361", "https://data.delijn.be/stops/304362"], ["https://data.delijn.be/stops/405300", "https://data.delijn.be/stops/405301"], ["https://data.delijn.be/stops/304490", "https://data.delijn.be/stops/304491"], ["https://data.delijn.be/stops/101492", "https://data.delijn.be/stops/108326"], ["https://data.delijn.be/stops/204017", "https://data.delijn.be/stops/204315"], ["https://data.delijn.be/stops/302673", "https://data.delijn.be/stops/308298"], ["https://data.delijn.be/stops/101161", "https://data.delijn.be/stops/105974"], ["https://data.delijn.be/stops/404558", "https://data.delijn.be/stops/406681"], ["https://data.delijn.be/stops/401845", "https://data.delijn.be/stops/401853"], ["https://data.delijn.be/stops/106989", "https://data.delijn.be/stops/108807"], ["https://data.delijn.be/stops/405826", "https://data.delijn.be/stops/405827"], ["https://data.delijn.be/stops/301648", "https://data.delijn.be/stops/301655"], ["https://data.delijn.be/stops/201736", "https://data.delijn.be/stops/203786"], ["https://data.delijn.be/stops/504943", "https://data.delijn.be/stops/505526"], ["https://data.delijn.be/stops/108708", "https://data.delijn.be/stops/108855"], ["https://data.delijn.be/stops/306692", "https://data.delijn.be/stops/308925"], ["https://data.delijn.be/stops/404903", "https://data.delijn.be/stops/406722"], ["https://data.delijn.be/stops/206909", "https://data.delijn.be/stops/207908"], ["https://data.delijn.be/stops/105135", "https://data.delijn.be/stops/105586"], ["https://data.delijn.be/stops/306290", "https://data.delijn.be/stops/306291"], ["https://data.delijn.be/stops/205302", "https://data.delijn.be/stops/205303"], ["https://data.delijn.be/stops/303507", "https://data.delijn.be/stops/307133"], ["https://data.delijn.be/stops/300739", "https://data.delijn.be/stops/300740"], ["https://data.delijn.be/stops/204152", "https://data.delijn.be/stops/205151"], ["https://data.delijn.be/stops/204404", "https://data.delijn.be/stops/204405"], ["https://data.delijn.be/stops/501179", "https://data.delijn.be/stops/509932"], ["https://data.delijn.be/stops/305735", "https://data.delijn.be/stops/305746"], ["https://data.delijn.be/stops/407675", "https://data.delijn.be/stops/407680"], ["https://data.delijn.be/stops/503542", "https://data.delijn.be/stops/508580"], ["https://data.delijn.be/stops/200229", "https://data.delijn.be/stops/203354"], ["https://data.delijn.be/stops/307540", "https://data.delijn.be/stops/307577"], ["https://data.delijn.be/stops/200081", "https://data.delijn.be/stops/201282"], ["https://data.delijn.be/stops/208796", "https://data.delijn.be/stops/209796"], ["https://data.delijn.be/stops/107739", "https://data.delijn.be/stops/107740"], ["https://data.delijn.be/stops/302290", "https://data.delijn.be/stops/302291"], ["https://data.delijn.be/stops/101580", "https://data.delijn.be/stops/102585"], ["https://data.delijn.be/stops/305846", "https://data.delijn.be/stops/305895"], ["https://data.delijn.be/stops/101517", "https://data.delijn.be/stops/109024"], ["https://data.delijn.be/stops/204236", "https://data.delijn.be/stops/204238"], ["https://data.delijn.be/stops/404674", "https://data.delijn.be/stops/404675"], ["https://data.delijn.be/stops/106371", "https://data.delijn.be/stops/106372"], ["https://data.delijn.be/stops/308845", "https://data.delijn.be/stops/308846"], ["https://data.delijn.be/stops/410012", "https://data.delijn.be/stops/410013"], ["https://data.delijn.be/stops/407861", "https://data.delijn.be/stops/301846"], ["https://data.delijn.be/stops/403397", "https://data.delijn.be/stops/403428"], ["https://data.delijn.be/stops/200418", "https://data.delijn.be/stops/208843"], ["https://data.delijn.be/stops/402348", "https://data.delijn.be/stops/402349"], ["https://data.delijn.be/stops/206281", "https://data.delijn.be/stops/206282"], ["https://data.delijn.be/stops/204184", "https://data.delijn.be/stops/205184"], ["https://data.delijn.be/stops/408688", "https://data.delijn.be/stops/408689"], ["https://data.delijn.be/stops/101786", "https://data.delijn.be/stops/101787"], ["https://data.delijn.be/stops/105397", "https://data.delijn.be/stops/106823"], ["https://data.delijn.be/stops/302061", "https://data.delijn.be/stops/302075"], ["https://data.delijn.be/stops/104732", "https://data.delijn.be/stops/204258"], ["https://data.delijn.be/stops/208021", "https://data.delijn.be/stops/209021"], ["https://data.delijn.be/stops/302939", "https://data.delijn.be/stops/307349"], ["https://data.delijn.be/stops/400602", "https://data.delijn.be/stops/400603"], ["https://data.delijn.be/stops/504755", "https://data.delijn.be/stops/508871"], ["https://data.delijn.be/stops/302658", "https://data.delijn.be/stops/303251"], ["https://data.delijn.be/stops/104043", "https://data.delijn.be/stops/108404"], ["https://data.delijn.be/stops/302052", "https://data.delijn.be/stops/304914"], ["https://data.delijn.be/stops/302762", "https://data.delijn.be/stops/306194"], ["https://data.delijn.be/stops/207722", "https://data.delijn.be/stops/207920"], ["https://data.delijn.be/stops/502108", "https://data.delijn.be/stops/502145"], ["https://data.delijn.be/stops/303972", "https://data.delijn.be/stops/307859"], ["https://data.delijn.be/stops/503719", "https://data.delijn.be/stops/509968"], ["https://data.delijn.be/stops/502319", "https://data.delijn.be/stops/507319"], ["https://data.delijn.be/stops/304895", "https://data.delijn.be/stops/304896"], ["https://data.delijn.be/stops/403077", "https://data.delijn.be/stops/409317"], ["https://data.delijn.be/stops/107564", "https://data.delijn.be/stops/107566"], ["https://data.delijn.be/stops/507945", "https://data.delijn.be/stops/508847"], ["https://data.delijn.be/stops/407497", "https://data.delijn.be/stops/407871"], ["https://data.delijn.be/stops/404899", "https://data.delijn.be/stops/404949"], ["https://data.delijn.be/stops/202126", "https://data.delijn.be/stops/203127"], ["https://data.delijn.be/stops/105019", "https://data.delijn.be/stops/105080"], ["https://data.delijn.be/stops/401165", "https://data.delijn.be/stops/409058"], ["https://data.delijn.be/stops/402220", "https://data.delijn.be/stops/402249"], ["https://data.delijn.be/stops/401600", "https://data.delijn.be/stops/409723"], ["https://data.delijn.be/stops/307596", "https://data.delijn.be/stops/307606"], ["https://data.delijn.be/stops/301353", "https://data.delijn.be/stops/304528"], ["https://data.delijn.be/stops/505682", "https://data.delijn.be/stops/507301"], ["https://data.delijn.be/stops/204579", "https://data.delijn.be/stops/204591"], ["https://data.delijn.be/stops/106749", "https://data.delijn.be/stops/109622"], ["https://data.delijn.be/stops/300390", "https://data.delijn.be/stops/300412"], ["https://data.delijn.be/stops/102014", "https://data.delijn.be/stops/105984"], ["https://data.delijn.be/stops/300660", "https://data.delijn.be/stops/301839"], ["https://data.delijn.be/stops/401654", "https://data.delijn.be/stops/307092"], ["https://data.delijn.be/stops/200189", "https://data.delijn.be/stops/200190"], ["https://data.delijn.be/stops/206300", "https://data.delijn.be/stops/207470"], ["https://data.delijn.be/stops/302765", "https://data.delijn.be/stops/304703"], ["https://data.delijn.be/stops/406416", "https://data.delijn.be/stops/406443"], ["https://data.delijn.be/stops/300479", "https://data.delijn.be/stops/300491"], ["https://data.delijn.be/stops/505669", "https://data.delijn.be/stops/507204"], ["https://data.delijn.be/stops/207663", "https://data.delijn.be/stops/207666"], ["https://data.delijn.be/stops/201914", "https://data.delijn.be/stops/202945"], ["https://data.delijn.be/stops/200402", "https://data.delijn.be/stops/203997"], ["https://data.delijn.be/stops/504584", "https://data.delijn.be/stops/505543"], ["https://data.delijn.be/stops/400511", "https://data.delijn.be/stops/400512"], ["https://data.delijn.be/stops/203945", "https://data.delijn.be/stops/216009"], ["https://data.delijn.be/stops/302465", "https://data.delijn.be/stops/302487"], ["https://data.delijn.be/stops/102382", "https://data.delijn.be/stops/105607"], ["https://data.delijn.be/stops/103982", "https://data.delijn.be/stops/109949"], ["https://data.delijn.be/stops/407882", "https://data.delijn.be/stops/408443"], ["https://data.delijn.be/stops/400502", "https://data.delijn.be/stops/400509"], ["https://data.delijn.be/stops/305180", "https://data.delijn.be/stops/307872"], ["https://data.delijn.be/stops/201124", "https://data.delijn.be/stops/201125"], ["https://data.delijn.be/stops/204631", "https://data.delijn.be/stops/205528"], ["https://data.delijn.be/stops/207620", "https://data.delijn.be/stops/207849"], ["https://data.delijn.be/stops/501746", "https://data.delijn.be/stops/506070"], ["https://data.delijn.be/stops/206023", "https://data.delijn.be/stops/207075"], ["https://data.delijn.be/stops/505158", "https://data.delijn.be/stops/508838"], ["https://data.delijn.be/stops/200219", "https://data.delijn.be/stops/201307"], ["https://data.delijn.be/stops/300019", "https://data.delijn.be/stops/301318"], ["https://data.delijn.be/stops/308267", "https://data.delijn.be/stops/308287"], ["https://data.delijn.be/stops/305060", "https://data.delijn.be/stops/306923"], ["https://data.delijn.be/stops/106241", "https://data.delijn.be/stops/106242"], ["https://data.delijn.be/stops/202704", "https://data.delijn.be/stops/203704"], ["https://data.delijn.be/stops/504578", "https://data.delijn.be/stops/504689"], ["https://data.delijn.be/stops/108964", "https://data.delijn.be/stops/108966"], ["https://data.delijn.be/stops/104519", "https://data.delijn.be/stops/107932"], ["https://data.delijn.be/stops/504134", "https://data.delijn.be/stops/509134"], ["https://data.delijn.be/stops/407513", "https://data.delijn.be/stops/407517"], ["https://data.delijn.be/stops/504510", "https://data.delijn.be/stops/509510"], ["https://data.delijn.be/stops/402694", "https://data.delijn.be/stops/301482"], ["https://data.delijn.be/stops/503164", "https://data.delijn.be/stops/503175"], ["https://data.delijn.be/stops/201584", "https://data.delijn.be/stops/201590"], ["https://data.delijn.be/stops/200102", "https://data.delijn.be/stops/203005"], ["https://data.delijn.be/stops/504763", "https://data.delijn.be/stops/504765"], ["https://data.delijn.be/stops/104637", "https://data.delijn.be/stops/108038"], ["https://data.delijn.be/stops/201871", "https://data.delijn.be/stops/203421"], ["https://data.delijn.be/stops/502490", "https://data.delijn.be/stops/507740"], ["https://data.delijn.be/stops/201964", "https://data.delijn.be/stops/209037"], ["https://data.delijn.be/stops/105151", "https://data.delijn.be/stops/105152"], ["https://data.delijn.be/stops/305694", "https://data.delijn.be/stops/305695"], ["https://data.delijn.be/stops/208815", "https://data.delijn.be/stops/209851"], ["https://data.delijn.be/stops/403595", "https://data.delijn.be/stops/405669"], ["https://data.delijn.be/stops/202214", "https://data.delijn.be/stops/203214"], ["https://data.delijn.be/stops/503900", "https://data.delijn.be/stops/508900"], ["https://data.delijn.be/stops/303642", "https://data.delijn.be/stops/304529"], ["https://data.delijn.be/stops/505016", "https://data.delijn.be/stops/505021"], ["https://data.delijn.be/stops/502412", "https://data.delijn.be/stops/507668"], ["https://data.delijn.be/stops/502192", "https://data.delijn.be/stops/502196"], ["https://data.delijn.be/stops/205460", "https://data.delijn.be/stops/215017"], ["https://data.delijn.be/stops/102519", "https://data.delijn.be/stops/109657"], ["https://data.delijn.be/stops/106556", "https://data.delijn.be/stops/106559"], ["https://data.delijn.be/stops/204371", "https://data.delijn.be/stops/204372"], ["https://data.delijn.be/stops/205228", "https://data.delijn.be/stops/205231"], ["https://data.delijn.be/stops/505078", "https://data.delijn.be/stops/507469"], ["https://data.delijn.be/stops/502038", "https://data.delijn.be/stops/502648"], ["https://data.delijn.be/stops/504218", "https://data.delijn.be/stops/509065"], ["https://data.delijn.be/stops/509003", "https://data.delijn.be/stops/509451"], ["https://data.delijn.be/stops/509825", "https://data.delijn.be/stops/509827"], ["https://data.delijn.be/stops/305050", "https://data.delijn.be/stops/305051"], ["https://data.delijn.be/stops/506356", "https://data.delijn.be/stops/506588"], ["https://data.delijn.be/stops/407117", "https://data.delijn.be/stops/407277"], ["https://data.delijn.be/stops/505224", "https://data.delijn.be/stops/505983"], ["https://data.delijn.be/stops/106287", "https://data.delijn.be/stops/106304"], ["https://data.delijn.be/stops/102153", "https://data.delijn.be/stops/108730"], ["https://data.delijn.be/stops/105278", "https://data.delijn.be/stops/105279"], ["https://data.delijn.be/stops/305817", "https://data.delijn.be/stops/305818"], ["https://data.delijn.be/stops/505954", "https://data.delijn.be/stops/506000"], ["https://data.delijn.be/stops/107409", "https://data.delijn.be/stops/107597"], ["https://data.delijn.be/stops/400778", "https://data.delijn.be/stops/409616"], ["https://data.delijn.be/stops/400713", "https://data.delijn.be/stops/409516"], ["https://data.delijn.be/stops/502435", "https://data.delijn.be/stops/507427"], ["https://data.delijn.be/stops/103027", "https://data.delijn.be/stops/104468"], ["https://data.delijn.be/stops/101656", "https://data.delijn.be/stops/107853"], ["https://data.delijn.be/stops/304135", "https://data.delijn.be/stops/304159"], ["https://data.delijn.be/stops/502340", "https://data.delijn.be/stops/502348"], ["https://data.delijn.be/stops/103499", "https://data.delijn.be/stops/106212"], ["https://data.delijn.be/stops/402533", "https://data.delijn.be/stops/402539"], ["https://data.delijn.be/stops/106478", "https://data.delijn.be/stops/106481"], ["https://data.delijn.be/stops/304758", "https://data.delijn.be/stops/305285"], ["https://data.delijn.be/stops/404254", "https://data.delijn.be/stops/404315"], ["https://data.delijn.be/stops/106889", "https://data.delijn.be/stops/107221"], ["https://data.delijn.be/stops/407233", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/408611", "https://data.delijn.be/stops/408699"], ["https://data.delijn.be/stops/403310", "https://data.delijn.be/stops/403344"], ["https://data.delijn.be/stops/403210", "https://data.delijn.be/stops/403214"], ["https://data.delijn.be/stops/409221", "https://data.delijn.be/stops/409224"], ["https://data.delijn.be/stops/508170", "https://data.delijn.be/stops/508239"], ["https://data.delijn.be/stops/407026", "https://data.delijn.be/stops/407040"], ["https://data.delijn.be/stops/202120", "https://data.delijn.be/stops/202637"], ["https://data.delijn.be/stops/301742", "https://data.delijn.be/stops/301798"], ["https://data.delijn.be/stops/205143", "https://data.delijn.be/stops/205789"], ["https://data.delijn.be/stops/109311", "https://data.delijn.be/stops/109356"], ["https://data.delijn.be/stops/104773", "https://data.delijn.be/stops/108156"], ["https://data.delijn.be/stops/208217", "https://data.delijn.be/stops/209217"], ["https://data.delijn.be/stops/502456", "https://data.delijn.be/stops/505508"], ["https://data.delijn.be/stops/505154", "https://data.delijn.be/stops/507073"], ["https://data.delijn.be/stops/505977", "https://data.delijn.be/stops/509389"], ["https://data.delijn.be/stops/104114", "https://data.delijn.be/stops/107878"], ["https://data.delijn.be/stops/200437", "https://data.delijn.be/stops/201436"], ["https://data.delijn.be/stops/406925", "https://data.delijn.be/stops/406948"], ["https://data.delijn.be/stops/503927", "https://data.delijn.be/stops/508931"], ["https://data.delijn.be/stops/208509", "https://data.delijn.be/stops/209509"], ["https://data.delijn.be/stops/109354", "https://data.delijn.be/stops/307438"], ["https://data.delijn.be/stops/108996", "https://data.delijn.be/stops/108999"], ["https://data.delijn.be/stops/403602", "https://data.delijn.be/stops/403643"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/106506"], ["https://data.delijn.be/stops/306900", "https://data.delijn.be/stops/308124"], ["https://data.delijn.be/stops/102058", "https://data.delijn.be/stops/104847"], ["https://data.delijn.be/stops/202868", "https://data.delijn.be/stops/203867"], ["https://data.delijn.be/stops/202971", "https://data.delijn.be/stops/203970"], ["https://data.delijn.be/stops/200902", "https://data.delijn.be/stops/200946"], ["https://data.delijn.be/stops/501244", "https://data.delijn.be/stops/504371"], ["https://data.delijn.be/stops/507216", "https://data.delijn.be/stops/507583"], ["https://data.delijn.be/stops/301131", "https://data.delijn.be/stops/301132"], ["https://data.delijn.be/stops/302567", "https://data.delijn.be/stops/304916"], ["https://data.delijn.be/stops/504991", "https://data.delijn.be/stops/508844"], ["https://data.delijn.be/stops/303024", "https://data.delijn.be/stops/303072"], ["https://data.delijn.be/stops/404224", "https://data.delijn.be/stops/404230"], ["https://data.delijn.be/stops/407773", "https://data.delijn.be/stops/304359"], ["https://data.delijn.be/stops/502579", "https://data.delijn.be/stops/507114"], ["https://data.delijn.be/stops/403793", "https://data.delijn.be/stops/403811"], ["https://data.delijn.be/stops/102581", "https://data.delijn.be/stops/102582"], ["https://data.delijn.be/stops/303994", "https://data.delijn.be/stops/307015"], ["https://data.delijn.be/stops/101595", "https://data.delijn.be/stops/107065"], ["https://data.delijn.be/stops/200420", "https://data.delijn.be/stops/201452"], ["https://data.delijn.be/stops/204035", "https://data.delijn.be/stops/205034"], ["https://data.delijn.be/stops/201836", "https://data.delijn.be/stops/203318"], ["https://data.delijn.be/stops/405263", "https://data.delijn.be/stops/405268"], ["https://data.delijn.be/stops/301333", "https://data.delijn.be/stops/301907"], ["https://data.delijn.be/stops/303116", "https://data.delijn.be/stops/304221"], ["https://data.delijn.be/stops/207779", "https://data.delijn.be/stops/207781"], ["https://data.delijn.be/stops/503420", "https://data.delijn.be/stops/503431"], ["https://data.delijn.be/stops/303750", "https://data.delijn.be/stops/303751"], ["https://data.delijn.be/stops/300007", "https://data.delijn.be/stops/300009"], ["https://data.delijn.be/stops/103151", "https://data.delijn.be/stops/103152"], ["https://data.delijn.be/stops/408294", "https://data.delijn.be/stops/308194"], ["https://data.delijn.be/stops/404808", "https://data.delijn.be/stops/404813"], ["https://data.delijn.be/stops/103681", "https://data.delijn.be/stops/104515"], ["https://data.delijn.be/stops/206647", "https://data.delijn.be/stops/207647"], ["https://data.delijn.be/stops/402121", "https://data.delijn.be/stops/402257"], ["https://data.delijn.be/stops/302733", "https://data.delijn.be/stops/302734"], ["https://data.delijn.be/stops/409443", "https://data.delijn.be/stops/409444"], ["https://data.delijn.be/stops/408878", "https://data.delijn.be/stops/408900"], ["https://data.delijn.be/stops/401084", "https://data.delijn.be/stops/401085"], ["https://data.delijn.be/stops/406265", "https://data.delijn.be/stops/406296"], ["https://data.delijn.be/stops/402506", "https://data.delijn.be/stops/402547"], ["https://data.delijn.be/stops/503395", "https://data.delijn.be/stops/509774"], ["https://data.delijn.be/stops/502170", "https://data.delijn.be/stops/502171"], ["https://data.delijn.be/stops/405306", "https://data.delijn.be/stops/407307"], ["https://data.delijn.be/stops/109603", "https://data.delijn.be/stops/109612"], ["https://data.delijn.be/stops/406035", "https://data.delijn.be/stops/407915"], ["https://data.delijn.be/stops/301299", "https://data.delijn.be/stops/307941"], ["https://data.delijn.be/stops/206394", "https://data.delijn.be/stops/207394"], ["https://data.delijn.be/stops/302182", "https://data.delijn.be/stops/307108"], ["https://data.delijn.be/stops/504132", "https://data.delijn.be/stops/504746"], ["https://data.delijn.be/stops/302065", "https://data.delijn.be/stops/302097"], ["https://data.delijn.be/stops/208116", "https://data.delijn.be/stops/209336"], ["https://data.delijn.be/stops/204613", "https://data.delijn.be/stops/204637"], ["https://data.delijn.be/stops/204610", "https://data.delijn.be/stops/205610"], ["https://data.delijn.be/stops/302926", "https://data.delijn.be/stops/302927"], ["https://data.delijn.be/stops/509497", "https://data.delijn.be/stops/509504"], ["https://data.delijn.be/stops/109179", "https://data.delijn.be/stops/109227"], ["https://data.delijn.be/stops/403929", "https://data.delijn.be/stops/405937"], ["https://data.delijn.be/stops/106101", "https://data.delijn.be/stops/106120"], ["https://data.delijn.be/stops/105325", "https://data.delijn.be/stops/205608"], ["https://data.delijn.be/stops/303815", "https://data.delijn.be/stops/303816"], ["https://data.delijn.be/stops/107083", "https://data.delijn.be/stops/107084"], ["https://data.delijn.be/stops/307490", "https://data.delijn.be/stops/307491"], ["https://data.delijn.be/stops/503153", "https://data.delijn.be/stops/505425"], ["https://data.delijn.be/stops/207753", "https://data.delijn.be/stops/207795"], ["https://data.delijn.be/stops/106034", "https://data.delijn.be/stops/106292"], ["https://data.delijn.be/stops/305171", "https://data.delijn.be/stops/305214"], ["https://data.delijn.be/stops/109714", "https://data.delijn.be/stops/109715"], ["https://data.delijn.be/stops/202427", "https://data.delijn.be/stops/203427"], ["https://data.delijn.be/stops/200160", "https://data.delijn.be/stops/200161"], ["https://data.delijn.be/stops/204368", "https://data.delijn.be/stops/205369"], ["https://data.delijn.be/stops/107897", "https://data.delijn.be/stops/107906"], ["https://data.delijn.be/stops/104974", "https://data.delijn.be/stops/104988"], ["https://data.delijn.be/stops/503256", "https://data.delijn.be/stops/508256"], ["https://data.delijn.be/stops/204798", "https://data.delijn.be/stops/205376"], ["https://data.delijn.be/stops/408420", "https://data.delijn.be/stops/408421"], ["https://data.delijn.be/stops/103299", "https://data.delijn.be/stops/107845"], ["https://data.delijn.be/stops/400141", "https://data.delijn.be/stops/409163"], ["https://data.delijn.be/stops/201659", "https://data.delijn.be/stops/205928"], ["https://data.delijn.be/stops/302355", "https://data.delijn.be/stops/302357"], ["https://data.delijn.be/stops/404436", "https://data.delijn.be/stops/404539"], ["https://data.delijn.be/stops/202875", "https://data.delijn.be/stops/203875"], ["https://data.delijn.be/stops/301025", "https://data.delijn.be/stops/302986"], ["https://data.delijn.be/stops/305250", "https://data.delijn.be/stops/308695"], ["https://data.delijn.be/stops/401123", "https://data.delijn.be/stops/407796"], ["https://data.delijn.be/stops/300835", "https://data.delijn.be/stops/302288"], ["https://data.delijn.be/stops/303358", "https://data.delijn.be/stops/307183"], ["https://data.delijn.be/stops/206570", "https://data.delijn.be/stops/206574"], ["https://data.delijn.be/stops/402792", "https://data.delijn.be/stops/402796"], ["https://data.delijn.be/stops/303150", "https://data.delijn.be/stops/307928"], ["https://data.delijn.be/stops/406083", "https://data.delijn.be/stops/406090"], ["https://data.delijn.be/stops/200650", "https://data.delijn.be/stops/202865"], ["https://data.delijn.be/stops/104025", "https://data.delijn.be/stops/104027"], ["https://data.delijn.be/stops/201289", "https://data.delijn.be/stops/201359"], ["https://data.delijn.be/stops/402714", "https://data.delijn.be/stops/402715"], ["https://data.delijn.be/stops/407766", "https://data.delijn.be/stops/409628"], ["https://data.delijn.be/stops/201728", "https://data.delijn.be/stops/201774"], ["https://data.delijn.be/stops/204447", "https://data.delijn.be/stops/204693"], ["https://data.delijn.be/stops/407628", "https://data.delijn.be/stops/409788"], ["https://data.delijn.be/stops/402890", "https://data.delijn.be/stops/402898"], ["https://data.delijn.be/stops/200533", "https://data.delijn.be/stops/201515"], ["https://data.delijn.be/stops/503496", "https://data.delijn.be/stops/508494"], ["https://data.delijn.be/stops/206883", "https://data.delijn.be/stops/206884"], ["https://data.delijn.be/stops/400880", "https://data.delijn.be/stops/400892"], ["https://data.delijn.be/stops/106261", "https://data.delijn.be/stops/106262"], ["https://data.delijn.be/stops/107953", "https://data.delijn.be/stops/108968"], ["https://data.delijn.be/stops/509772", "https://data.delijn.be/stops/509790"], ["https://data.delijn.be/stops/101369", "https://data.delijn.be/stops/101373"], ["https://data.delijn.be/stops/200857", "https://data.delijn.be/stops/203302"], ["https://data.delijn.be/stops/302853", "https://data.delijn.be/stops/308822"], ["https://data.delijn.be/stops/204765", "https://data.delijn.be/stops/205374"], ["https://data.delijn.be/stops/203120", "https://data.delijn.be/stops/203121"], ["https://data.delijn.be/stops/103378", "https://data.delijn.be/stops/108145"], ["https://data.delijn.be/stops/503924", "https://data.delijn.be/stops/508813"], ["https://data.delijn.be/stops/502335", "https://data.delijn.be/stops/502456"], ["https://data.delijn.be/stops/206104", "https://data.delijn.be/stops/207104"], ["https://data.delijn.be/stops/405815", "https://data.delijn.be/stops/405873"], ["https://data.delijn.be/stops/302091", "https://data.delijn.be/stops/306989"], ["https://data.delijn.be/stops/301565", "https://data.delijn.be/stops/301568"], ["https://data.delijn.be/stops/205912", "https://data.delijn.be/stops/205923"], ["https://data.delijn.be/stops/400919", "https://data.delijn.be/stops/407375"], ["https://data.delijn.be/stops/207358", "https://data.delijn.be/stops/207688"], ["https://data.delijn.be/stops/303556", "https://data.delijn.be/stops/303573"], ["https://data.delijn.be/stops/308464", "https://data.delijn.be/stops/308692"], ["https://data.delijn.be/stops/304397", "https://data.delijn.be/stops/307409"], ["https://data.delijn.be/stops/402893", "https://data.delijn.be/stops/302632"], ["https://data.delijn.be/stops/300397", "https://data.delijn.be/stops/304585"], ["https://data.delijn.be/stops/303011", "https://data.delijn.be/stops/303095"], ["https://data.delijn.be/stops/206212", "https://data.delijn.be/stops/207818"], ["https://data.delijn.be/stops/502495", "https://data.delijn.be/stops/502503"], ["https://data.delijn.be/stops/400860", "https://data.delijn.be/stops/406699"], ["https://data.delijn.be/stops/200737", "https://data.delijn.be/stops/202596"], ["https://data.delijn.be/stops/107934", "https://data.delijn.be/stops/204564"], ["https://data.delijn.be/stops/305282", "https://data.delijn.be/stops/305331"], ["https://data.delijn.be/stops/102345", "https://data.delijn.be/stops/104254"], ["https://data.delijn.be/stops/307379", "https://data.delijn.be/stops/307447"], ["https://data.delijn.be/stops/503842", "https://data.delijn.be/stops/505214"], ["https://data.delijn.be/stops/400830", "https://data.delijn.be/stops/400831"], ["https://data.delijn.be/stops/509766", "https://data.delijn.be/stops/509792"], ["https://data.delijn.be/stops/207098", "https://data.delijn.be/stops/207998"], ["https://data.delijn.be/stops/308290", "https://data.delijn.be/stops/308293"], ["https://data.delijn.be/stops/408593", "https://data.delijn.be/stops/408776"], ["https://data.delijn.be/stops/402952", "https://data.delijn.be/stops/402953"], ["https://data.delijn.be/stops/503893", "https://data.delijn.be/stops/503898"], ["https://data.delijn.be/stops/208127", "https://data.delijn.be/stops/209073"], ["https://data.delijn.be/stops/300688", "https://data.delijn.be/stops/300735"], ["https://data.delijn.be/stops/306616", "https://data.delijn.be/stops/306617"], ["https://data.delijn.be/stops/504703", "https://data.delijn.be/stops/505303"], ["https://data.delijn.be/stops/102057", "https://data.delijn.be/stops/106747"], ["https://data.delijn.be/stops/503333", "https://data.delijn.be/stops/509843"], ["https://data.delijn.be/stops/402158", "https://data.delijn.be/stops/408054"], ["https://data.delijn.be/stops/401554", "https://data.delijn.be/stops/401559"], ["https://data.delijn.be/stops/503651", "https://data.delijn.be/stops/508651"], ["https://data.delijn.be/stops/503095", "https://data.delijn.be/stops/508105"], ["https://data.delijn.be/stops/305114", "https://data.delijn.be/stops/305129"], ["https://data.delijn.be/stops/409314", "https://data.delijn.be/stops/409316"], ["https://data.delijn.be/stops/102456", "https://data.delijn.be/stops/102458"], ["https://data.delijn.be/stops/403163", "https://data.delijn.be/stops/403183"], ["https://data.delijn.be/stops/403433", "https://data.delijn.be/stops/403498"], ["https://data.delijn.be/stops/403280", "https://data.delijn.be/stops/404174"], ["https://data.delijn.be/stops/208394", "https://data.delijn.be/stops/209394"], ["https://data.delijn.be/stops/101203", "https://data.delijn.be/stops/204662"], ["https://data.delijn.be/stops/103770", "https://data.delijn.be/stops/104545"], ["https://data.delijn.be/stops/303424", "https://data.delijn.be/stops/303425"], ["https://data.delijn.be/stops/407968", "https://data.delijn.be/stops/408001"], ["https://data.delijn.be/stops/201726", "https://data.delijn.be/stops/202980"], ["https://data.delijn.be/stops/300133", "https://data.delijn.be/stops/300134"], ["https://data.delijn.be/stops/101518", "https://data.delijn.be/stops/109559"], ["https://data.delijn.be/stops/107075", "https://data.delijn.be/stops/107077"], ["https://data.delijn.be/stops/504212", "https://data.delijn.be/stops/504691"], ["https://data.delijn.be/stops/504083", "https://data.delijn.be/stops/504084"], ["https://data.delijn.be/stops/204158", "https://data.delijn.be/stops/204164"], ["https://data.delijn.be/stops/400764", "https://data.delijn.be/stops/400765"], ["https://data.delijn.be/stops/300014", "https://data.delijn.be/stops/300021"], ["https://data.delijn.be/stops/106670", "https://data.delijn.be/stops/106702"], ["https://data.delijn.be/stops/210021", "https://data.delijn.be/stops/211021"], ["https://data.delijn.be/stops/306344", "https://data.delijn.be/stops/308696"], ["https://data.delijn.be/stops/202221", "https://data.delijn.be/stops/205076"], ["https://data.delijn.be/stops/102909", "https://data.delijn.be/stops/102916"], ["https://data.delijn.be/stops/105616", "https://data.delijn.be/stops/105618"], ["https://data.delijn.be/stops/401524", "https://data.delijn.be/stops/402631"], ["https://data.delijn.be/stops/103944", "https://data.delijn.be/stops/108823"], ["https://data.delijn.be/stops/505092", "https://data.delijn.be/stops/508592"], ["https://data.delijn.be/stops/407257", "https://data.delijn.be/stops/409492"], ["https://data.delijn.be/stops/505096", "https://data.delijn.be/stops/505241"], ["https://data.delijn.be/stops/301195", "https://data.delijn.be/stops/307907"], ["https://data.delijn.be/stops/101527", "https://data.delijn.be/stops/101942"], ["https://data.delijn.be/stops/205046", "https://data.delijn.be/stops/205516"], ["https://data.delijn.be/stops/502400", "https://data.delijn.be/stops/507400"], ["https://data.delijn.be/stops/305163", "https://data.delijn.be/stops/308681"], ["https://data.delijn.be/stops/301897", "https://data.delijn.be/stops/308130"], ["https://data.delijn.be/stops/208292", "https://data.delijn.be/stops/209725"], ["https://data.delijn.be/stops/206808", "https://data.delijn.be/stops/207203"], ["https://data.delijn.be/stops/300345", "https://data.delijn.be/stops/304715"], ["https://data.delijn.be/stops/303533", "https://data.delijn.be/stops/303573"], ["https://data.delijn.be/stops/401543", "https://data.delijn.be/stops/401930"], ["https://data.delijn.be/stops/200262", "https://data.delijn.be/stops/202548"], ["https://data.delijn.be/stops/407681", "https://data.delijn.be/stops/410091"], ["https://data.delijn.be/stops/503915", "https://data.delijn.be/stops/508929"], ["https://data.delijn.be/stops/305049", "https://data.delijn.be/stops/306958"], ["https://data.delijn.be/stops/201493", "https://data.delijn.be/stops/202334"], ["https://data.delijn.be/stops/108282", "https://data.delijn.be/stops/108286"], ["https://data.delijn.be/stops/503815", "https://data.delijn.be/stops/508271"], ["https://data.delijn.be/stops/410349", "https://data.delijn.be/stops/410350"], ["https://data.delijn.be/stops/308480", "https://data.delijn.be/stops/308481"], ["https://data.delijn.be/stops/408053", "https://data.delijn.be/stops/408442"], ["https://data.delijn.be/stops/200264", "https://data.delijn.be/stops/201264"], ["https://data.delijn.be/stops/308797", "https://data.delijn.be/stops/308798"], ["https://data.delijn.be/stops/202597", "https://data.delijn.be/stops/202598"], ["https://data.delijn.be/stops/106404", "https://data.delijn.be/stops/106405"], ["https://data.delijn.be/stops/407910", "https://data.delijn.be/stops/408032"], ["https://data.delijn.be/stops/405440", "https://data.delijn.be/stops/308824"], ["https://data.delijn.be/stops/504104", "https://data.delijn.be/stops/504544"], ["https://data.delijn.be/stops/103066", "https://data.delijn.be/stops/308817"], ["https://data.delijn.be/stops/208088", "https://data.delijn.be/stops/209071"], ["https://data.delijn.be/stops/306145", "https://data.delijn.be/stops/306148"], ["https://data.delijn.be/stops/401440", "https://data.delijn.be/stops/408403"], ["https://data.delijn.be/stops/503656", "https://data.delijn.be/stops/508656"], ["https://data.delijn.be/stops/508332", "https://data.delijn.be/stops/508772"], ["https://data.delijn.be/stops/407946", "https://data.delijn.be/stops/408056"], ["https://data.delijn.be/stops/109014", "https://data.delijn.be/stops/109049"], ["https://data.delijn.be/stops/306627", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/403681", "https://data.delijn.be/stops/405319"], ["https://data.delijn.be/stops/101554", "https://data.delijn.be/stops/102068"], ["https://data.delijn.be/stops/403269", "https://data.delijn.be/stops/410325"], ["https://data.delijn.be/stops/108968", "https://data.delijn.be/stops/108985"], ["https://data.delijn.be/stops/406784", "https://data.delijn.be/stops/406785"], ["https://data.delijn.be/stops/206002", "https://data.delijn.be/stops/206522"], ["https://data.delijn.be/stops/305008", "https://data.delijn.be/stops/305026"], ["https://data.delijn.be/stops/202079", "https://data.delijn.be/stops/202185"], ["https://data.delijn.be/stops/303780", "https://data.delijn.be/stops/303826"], ["https://data.delijn.be/stops/306056", "https://data.delijn.be/stops/306062"], ["https://data.delijn.be/stops/102314", "https://data.delijn.be/stops/103925"], ["https://data.delijn.be/stops/206687", "https://data.delijn.be/stops/207920"], ["https://data.delijn.be/stops/101788", "https://data.delijn.be/stops/105608"], ["https://data.delijn.be/stops/201725", "https://data.delijn.be/stops/203376"], ["https://data.delijn.be/stops/407771", "https://data.delijn.be/stops/407773"], ["https://data.delijn.be/stops/107920", "https://data.delijn.be/stops/108730"], ["https://data.delijn.be/stops/103045", "https://data.delijn.be/stops/103085"], ["https://data.delijn.be/stops/107909", "https://data.delijn.be/stops/109751"], ["https://data.delijn.be/stops/506173", "https://data.delijn.be/stops/506174"], ["https://data.delijn.be/stops/501614", "https://data.delijn.be/stops/506021"], ["https://data.delijn.be/stops/200940", "https://data.delijn.be/stops/203711"], ["https://data.delijn.be/stops/209101", "https://data.delijn.be/stops/219005"], ["https://data.delijn.be/stops/304934", "https://data.delijn.be/stops/304945"], ["https://data.delijn.be/stops/102592", "https://data.delijn.be/stops/109003"], ["https://data.delijn.be/stops/104667", "https://data.delijn.be/stops/204611"], ["https://data.delijn.be/stops/400255", "https://data.delijn.be/stops/405565"], ["https://data.delijn.be/stops/404345", "https://data.delijn.be/stops/404349"], ["https://data.delijn.be/stops/405175", "https://data.delijn.be/stops/405217"], ["https://data.delijn.be/stops/306902", "https://data.delijn.be/stops/306906"], ["https://data.delijn.be/stops/506616", "https://data.delijn.be/stops/506623"], ["https://data.delijn.be/stops/504281", "https://data.delijn.be/stops/509279"], ["https://data.delijn.be/stops/200734", "https://data.delijn.be/stops/203601"], ["https://data.delijn.be/stops/408667", "https://data.delijn.be/stops/408767"], ["https://data.delijn.be/stops/502172", "https://data.delijn.be/stops/507171"], ["https://data.delijn.be/stops/200174", "https://data.delijn.be/stops/201173"], ["https://data.delijn.be/stops/503409", "https://data.delijn.be/stops/508109"], ["https://data.delijn.be/stops/200027", "https://data.delijn.be/stops/200446"], ["https://data.delijn.be/stops/201286", "https://data.delijn.be/stops/201618"], ["https://data.delijn.be/stops/107366", "https://data.delijn.be/stops/107369"], ["https://data.delijn.be/stops/105203", "https://data.delijn.be/stops/108361"], ["https://data.delijn.be/stops/103233", "https://data.delijn.be/stops/107133"], ["https://data.delijn.be/stops/206986", "https://data.delijn.be/stops/207994"], ["https://data.delijn.be/stops/200868", "https://data.delijn.be/stops/202339"], ["https://data.delijn.be/stops/303674", "https://data.delijn.be/stops/307634"], ["https://data.delijn.be/stops/105865", "https://data.delijn.be/stops/105872"], ["https://data.delijn.be/stops/203733", "https://data.delijn.be/stops/203854"], ["https://data.delijn.be/stops/400983", "https://data.delijn.be/stops/406579"], ["https://data.delijn.be/stops/108313", "https://data.delijn.be/stops/108314"], ["https://data.delijn.be/stops/504739", "https://data.delijn.be/stops/505101"], ["https://data.delijn.be/stops/101503", "https://data.delijn.be/stops/101938"], ["https://data.delijn.be/stops/590334", "https://data.delijn.be/stops/590335"], ["https://data.delijn.be/stops/201609", "https://data.delijn.be/stops/203754"], ["https://data.delijn.be/stops/509203", "https://data.delijn.be/stops/509204"], ["https://data.delijn.be/stops/105283", "https://data.delijn.be/stops/105287"], ["https://data.delijn.be/stops/101272", "https://data.delijn.be/stops/106025"], ["https://data.delijn.be/stops/200308", "https://data.delijn.be/stops/209987"], ["https://data.delijn.be/stops/302727", "https://data.delijn.be/stops/308836"], ["https://data.delijn.be/stops/503149", "https://data.delijn.be/stops/503555"], ["https://data.delijn.be/stops/406541", "https://data.delijn.be/stops/407478"], ["https://data.delijn.be/stops/501356", "https://data.delijn.be/stops/501588"], ["https://data.delijn.be/stops/504190", "https://data.delijn.be/stops/509157"], ["https://data.delijn.be/stops/202058", "https://data.delijn.be/stops/210073"], ["https://data.delijn.be/stops/506235", "https://data.delijn.be/stops/506249"], ["https://data.delijn.be/stops/503104", "https://data.delijn.be/stops/507698"], ["https://data.delijn.be/stops/200314", "https://data.delijn.be/stops/218936"], ["https://data.delijn.be/stops/202942", "https://data.delijn.be/stops/208656"], ["https://data.delijn.be/stops/208533", "https://data.delijn.be/stops/209517"], ["https://data.delijn.be/stops/101725", "https://data.delijn.be/stops/102313"], ["https://data.delijn.be/stops/105575", "https://data.delijn.be/stops/105576"], ["https://data.delijn.be/stops/107017", "https://data.delijn.be/stops/107018"], ["https://data.delijn.be/stops/106076", "https://data.delijn.be/stops/106077"], ["https://data.delijn.be/stops/400028", "https://data.delijn.be/stops/400030"], ["https://data.delijn.be/stops/109066", "https://data.delijn.be/stops/109068"], ["https://data.delijn.be/stops/408081", "https://data.delijn.be/stops/408173"], ["https://data.delijn.be/stops/306930", "https://data.delijn.be/stops/306932"], ["https://data.delijn.be/stops/200577", "https://data.delijn.be/stops/201578"], ["https://data.delijn.be/stops/403195", "https://data.delijn.be/stops/405328"], ["https://data.delijn.be/stops/206825", "https://data.delijn.be/stops/207862"], ["https://data.delijn.be/stops/405222", "https://data.delijn.be/stops/405233"], ["https://data.delijn.be/stops/108617", "https://data.delijn.be/stops/300648"], ["https://data.delijn.be/stops/202742", "https://data.delijn.be/stops/203742"], ["https://data.delijn.be/stops/403089", "https://data.delijn.be/stops/403277"], ["https://data.delijn.be/stops/303542", "https://data.delijn.be/stops/303565"], ["https://data.delijn.be/stops/201204", "https://data.delijn.be/stops/202136"], ["https://data.delijn.be/stops/105042", "https://data.delijn.be/stops/105044"], ["https://data.delijn.be/stops/202632", "https://data.delijn.be/stops/205066"], ["https://data.delijn.be/stops/410174", "https://data.delijn.be/stops/410176"], ["https://data.delijn.be/stops/501541", "https://data.delijn.be/stops/505834"], ["https://data.delijn.be/stops/207463", "https://data.delijn.be/stops/207464"], ["https://data.delijn.be/stops/409104", "https://data.delijn.be/stops/409107"], ["https://data.delijn.be/stops/106504", "https://data.delijn.be/stops/106507"], ["https://data.delijn.be/stops/505019", "https://data.delijn.be/stops/507808"], ["https://data.delijn.be/stops/303304", "https://data.delijn.be/stops/303320"], ["https://data.delijn.be/stops/301926", "https://data.delijn.be/stops/301928"], ["https://data.delijn.be/stops/404626", "https://data.delijn.be/stops/404634"], ["https://data.delijn.be/stops/107210", "https://data.delijn.be/stops/107215"], ["https://data.delijn.be/stops/202147", "https://data.delijn.be/stops/203242"], ["https://data.delijn.be/stops/106102", "https://data.delijn.be/stops/106147"], ["https://data.delijn.be/stops/401350", "https://data.delijn.be/stops/401361"], ["https://data.delijn.be/stops/201677", "https://data.delijn.be/stops/203774"], ["https://data.delijn.be/stops/502148", "https://data.delijn.be/stops/505894"], ["https://data.delijn.be/stops/400582", "https://data.delijn.be/stops/400591"], ["https://data.delijn.be/stops/502544", "https://data.delijn.be/stops/505694"], ["https://data.delijn.be/stops/201364", "https://data.delijn.be/stops/201549"], ["https://data.delijn.be/stops/301481", "https://data.delijn.be/stops/301497"], ["https://data.delijn.be/stops/206148", "https://data.delijn.be/stops/207095"], ["https://data.delijn.be/stops/306347", "https://data.delijn.be/stops/308697"], ["https://data.delijn.be/stops/206351", "https://data.delijn.be/stops/207351"], ["https://data.delijn.be/stops/202634", "https://data.delijn.be/stops/203161"], ["https://data.delijn.be/stops/300389", "https://data.delijn.be/stops/300390"], ["https://data.delijn.be/stops/302342", "https://data.delijn.be/stops/303468"], ["https://data.delijn.be/stops/505931", "https://data.delijn.be/stops/505932"], ["https://data.delijn.be/stops/402894", "https://data.delijn.be/stops/302614"], ["https://data.delijn.be/stops/202065", "https://data.delijn.be/stops/202713"], ["https://data.delijn.be/stops/102093", "https://data.delijn.be/stops/109815"], ["https://data.delijn.be/stops/407622", "https://data.delijn.be/stops/408448"], ["https://data.delijn.be/stops/405631", "https://data.delijn.be/stops/410248"], ["https://data.delijn.be/stops/208469", "https://data.delijn.be/stops/208498"], ["https://data.delijn.be/stops/201752", "https://data.delijn.be/stops/209428"], ["https://data.delijn.be/stops/301217", "https://data.delijn.be/stops/301220"], ["https://data.delijn.be/stops/501092", "https://data.delijn.be/stops/506093"], ["https://data.delijn.be/stops/109893", "https://data.delijn.be/stops/109947"], ["https://data.delijn.be/stops/304030", "https://data.delijn.be/stops/307996"], ["https://data.delijn.be/stops/306909", "https://data.delijn.be/stops/308724"], ["https://data.delijn.be/stops/208808", "https://data.delijn.be/stops/208809"], ["https://data.delijn.be/stops/403144", "https://data.delijn.be/stops/403145"], ["https://data.delijn.be/stops/200830", "https://data.delijn.be/stops/200876"], ["https://data.delijn.be/stops/207524", "https://data.delijn.be/stops/216007"], ["https://data.delijn.be/stops/301676", "https://data.delijn.be/stops/301689"], ["https://data.delijn.be/stops/402688", "https://data.delijn.be/stops/402867"], ["https://data.delijn.be/stops/206466", "https://data.delijn.be/stops/207466"], ["https://data.delijn.be/stops/206187", "https://data.delijn.be/stops/207188"], ["https://data.delijn.be/stops/407926", "https://data.delijn.be/stops/407958"], ["https://data.delijn.be/stops/104056", "https://data.delijn.be/stops/108099"], ["https://data.delijn.be/stops/301286", "https://data.delijn.be/stops/306249"], ["https://data.delijn.be/stops/101606", "https://data.delijn.be/stops/109809"], ["https://data.delijn.be/stops/108237", "https://data.delijn.be/stops/108239"], ["https://data.delijn.be/stops/406176", "https://data.delijn.be/stops/406201"], ["https://data.delijn.be/stops/105780", "https://data.delijn.be/stops/108645"], ["https://data.delijn.be/stops/208591", "https://data.delijn.be/stops/301420"], ["https://data.delijn.be/stops/501270", "https://data.delijn.be/stops/501313"], ["https://data.delijn.be/stops/103319", "https://data.delijn.be/stops/105715"], ["https://data.delijn.be/stops/502230", "https://data.delijn.be/stops/502700"], ["https://data.delijn.be/stops/202837", "https://data.delijn.be/stops/208679"], ["https://data.delijn.be/stops/204069", "https://data.delijn.be/stops/204385"], ["https://data.delijn.be/stops/408020", "https://data.delijn.be/stops/408021"], ["https://data.delijn.be/stops/503403", "https://data.delijn.be/stops/508403"], ["https://data.delijn.be/stops/503918", "https://data.delijn.be/stops/505942"], ["https://data.delijn.be/stops/301476", "https://data.delijn.be/stops/301480"], ["https://data.delijn.be/stops/503164", "https://data.delijn.be/stops/508164"], ["https://data.delijn.be/stops/201167", "https://data.delijn.be/stops/203620"], ["https://data.delijn.be/stops/204317", "https://data.delijn.be/stops/205318"], ["https://data.delijn.be/stops/404866", "https://data.delijn.be/stops/404867"], ["https://data.delijn.be/stops/204658", "https://data.delijn.be/stops/204659"], ["https://data.delijn.be/stops/206688", "https://data.delijn.be/stops/206689"], ["https://data.delijn.be/stops/408202", "https://data.delijn.be/stops/408203"], ["https://data.delijn.be/stops/403959", "https://data.delijn.be/stops/403972"], ["https://data.delijn.be/stops/304243", "https://data.delijn.be/stops/305449"], ["https://data.delijn.be/stops/501630", "https://data.delijn.be/stops/506645"], ["https://data.delijn.be/stops/103078", "https://data.delijn.be/stops/105026"], ["https://data.delijn.be/stops/408606", "https://data.delijn.be/stops/302835"], ["https://data.delijn.be/stops/303774", "https://data.delijn.be/stops/308714"], ["https://data.delijn.be/stops/106332", "https://data.delijn.be/stops/106359"], ["https://data.delijn.be/stops/108317", "https://data.delijn.be/stops/109018"], ["https://data.delijn.be/stops/501161", "https://data.delijn.be/stops/501777"], ["https://data.delijn.be/stops/407382", "https://data.delijn.be/stops/407383"], ["https://data.delijn.be/stops/402669", "https://data.delijn.be/stops/402729"], ["https://data.delijn.be/stops/303577", "https://data.delijn.be/stops/303580"], ["https://data.delijn.be/stops/400697", "https://data.delijn.be/stops/400857"], ["https://data.delijn.be/stops/300627", "https://data.delijn.be/stops/300710"], ["https://data.delijn.be/stops/206488", "https://data.delijn.be/stops/206647"], ["https://data.delijn.be/stops/402286", "https://data.delijn.be/stops/402299"], ["https://data.delijn.be/stops/200872", "https://data.delijn.be/stops/200896"], ["https://data.delijn.be/stops/108037", "https://data.delijn.be/stops/108041"], ["https://data.delijn.be/stops/505337", "https://data.delijn.be/stops/507514"], ["https://data.delijn.be/stops/307068", "https://data.delijn.be/stops/307932"], ["https://data.delijn.be/stops/109159", "https://data.delijn.be/stops/109234"], ["https://data.delijn.be/stops/301196", "https://data.delijn.be/stops/305356"], ["https://data.delijn.be/stops/505265", "https://data.delijn.be/stops/507715"], ["https://data.delijn.be/stops/101062", "https://data.delijn.be/stops/107956"], ["https://data.delijn.be/stops/305160", "https://data.delijn.be/stops/305200"], ["https://data.delijn.be/stops/508018", "https://data.delijn.be/stops/509817"], ["https://data.delijn.be/stops/204352", "https://data.delijn.be/stops/205352"], ["https://data.delijn.be/stops/305643", "https://data.delijn.be/stops/305649"], ["https://data.delijn.be/stops/200781", "https://data.delijn.be/stops/200782"], ["https://data.delijn.be/stops/501335", "https://data.delijn.be/stops/506320"], ["https://data.delijn.be/stops/407104", "https://data.delijn.be/stops/407112"], ["https://data.delijn.be/stops/503796", "https://data.delijn.be/stops/508796"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/302916"], ["https://data.delijn.be/stops/405412", "https://data.delijn.be/stops/410151"], ["https://data.delijn.be/stops/204169", "https://data.delijn.be/stops/205170"], ["https://data.delijn.be/stops/301554", "https://data.delijn.be/stops/301576"], ["https://data.delijn.be/stops/301727", "https://data.delijn.be/stops/301757"], ["https://data.delijn.be/stops/207758", "https://data.delijn.be/stops/207777"], ["https://data.delijn.be/stops/207309", "https://data.delijn.be/stops/207310"], ["https://data.delijn.be/stops/405906", "https://data.delijn.be/stops/405928"], ["https://data.delijn.be/stops/204789", "https://data.delijn.be/stops/205790"], ["https://data.delijn.be/stops/403617", "https://data.delijn.be/stops/406363"], ["https://data.delijn.be/stops/409053", "https://data.delijn.be/stops/409072"], ["https://data.delijn.be/stops/303759", "https://data.delijn.be/stops/303782"], ["https://data.delijn.be/stops/305146", "https://data.delijn.be/stops/305156"], ["https://data.delijn.be/stops/404943", "https://data.delijn.be/stops/404947"], ["https://data.delijn.be/stops/200401", "https://data.delijn.be/stops/201401"], ["https://data.delijn.be/stops/400214", "https://data.delijn.be/stops/400217"], ["https://data.delijn.be/stops/400035", "https://data.delijn.be/stops/400317"], ["https://data.delijn.be/stops/201943", "https://data.delijn.be/stops/203187"], ["https://data.delijn.be/stops/209739", "https://data.delijn.be/stops/209740"], ["https://data.delijn.be/stops/401049", "https://data.delijn.be/stops/402830"], ["https://data.delijn.be/stops/306882", "https://data.delijn.be/stops/307007"], ["https://data.delijn.be/stops/200894", "https://data.delijn.be/stops/203448"], ["https://data.delijn.be/stops/201121", "https://data.delijn.be/stops/207426"], ["https://data.delijn.be/stops/408853", "https://data.delijn.be/stops/408857"], ["https://data.delijn.be/stops/200410", "https://data.delijn.be/stops/202360"], ["https://data.delijn.be/stops/303720", "https://data.delijn.be/stops/303751"], ["https://data.delijn.be/stops/105169", "https://data.delijn.be/stops/108056"], ["https://data.delijn.be/stops/109112", "https://data.delijn.be/stops/109114"], ["https://data.delijn.be/stops/504040", "https://data.delijn.be/stops/509039"], ["https://data.delijn.be/stops/502436", "https://data.delijn.be/stops/507308"], ["https://data.delijn.be/stops/300188", "https://data.delijn.be/stops/300193"], ["https://data.delijn.be/stops/202889", "https://data.delijn.be/stops/203480"], ["https://data.delijn.be/stops/301359", "https://data.delijn.be/stops/308769"], ["https://data.delijn.be/stops/206840", "https://data.delijn.be/stops/207559"], ["https://data.delijn.be/stops/303068", "https://data.delijn.be/stops/307929"], ["https://data.delijn.be/stops/502089", "https://data.delijn.be/stops/502107"], ["https://data.delijn.be/stops/206291", "https://data.delijn.be/stops/207291"], ["https://data.delijn.be/stops/106372", "https://data.delijn.be/stops/106387"], ["https://data.delijn.be/stops/103626", "https://data.delijn.be/stops/107732"], ["https://data.delijn.be/stops/208120", "https://data.delijn.be/stops/218009"], ["https://data.delijn.be/stops/303341", "https://data.delijn.be/stops/306335"], ["https://data.delijn.be/stops/101406", "https://data.delijn.be/stops/106525"], ["https://data.delijn.be/stops/206100", "https://data.delijn.be/stops/206932"], ["https://data.delijn.be/stops/102321", "https://data.delijn.be/stops/107460"], ["https://data.delijn.be/stops/502671", "https://data.delijn.be/stops/507669"], ["https://data.delijn.be/stops/501776", "https://data.delijn.be/stops/506456"], ["https://data.delijn.be/stops/305299", "https://data.delijn.be/stops/305334"], ["https://data.delijn.be/stops/203303", "https://data.delijn.be/stops/203304"], ["https://data.delijn.be/stops/202387", "https://data.delijn.be/stops/203388"], ["https://data.delijn.be/stops/505629", "https://data.delijn.be/stops/508343"], ["https://data.delijn.be/stops/403833", "https://data.delijn.be/stops/403848"], ["https://data.delijn.be/stops/502284", "https://data.delijn.be/stops/507280"], ["https://data.delijn.be/stops/303643", "https://data.delijn.be/stops/305602"], ["https://data.delijn.be/stops/101836", "https://data.delijn.be/stops/108201"], ["https://data.delijn.be/stops/301344", "https://data.delijn.be/stops/304666"], ["https://data.delijn.be/stops/504970", "https://data.delijn.be/stops/508535"], ["https://data.delijn.be/stops/300347", "https://data.delijn.be/stops/300361"], ["https://data.delijn.be/stops/202855", "https://data.delijn.be/stops/202856"], ["https://data.delijn.be/stops/404437", "https://data.delijn.be/stops/404491"], ["https://data.delijn.be/stops/206664", "https://data.delijn.be/stops/206735"], ["https://data.delijn.be/stops/502697", "https://data.delijn.be/stops/507697"], ["https://data.delijn.be/stops/200053", "https://data.delijn.be/stops/208963"], ["https://data.delijn.be/stops/401793", "https://data.delijn.be/stops/401817"], ["https://data.delijn.be/stops/208314", "https://data.delijn.be/stops/219009"], ["https://data.delijn.be/stops/502118", "https://data.delijn.be/stops/502127"], ["https://data.delijn.be/stops/105678", "https://data.delijn.be/stops/106047"], ["https://data.delijn.be/stops/407871", "https://data.delijn.be/stops/409490"], ["https://data.delijn.be/stops/503100", "https://data.delijn.be/stops/503373"], ["https://data.delijn.be/stops/303554", "https://data.delijn.be/stops/308791"], ["https://data.delijn.be/stops/307870", "https://data.delijn.be/stops/308887"], ["https://data.delijn.be/stops/109032", "https://data.delijn.be/stops/109033"], ["https://data.delijn.be/stops/405465", "https://data.delijn.be/stops/405466"], ["https://data.delijn.be/stops/302977", "https://data.delijn.be/stops/303000"], ["https://data.delijn.be/stops/305634", "https://data.delijn.be/stops/305635"], ["https://data.delijn.be/stops/505748", "https://data.delijn.be/stops/507185"], ["https://data.delijn.be/stops/400082", "https://data.delijn.be/stops/400083"], ["https://data.delijn.be/stops/204206", "https://data.delijn.be/stops/205206"], ["https://data.delijn.be/stops/203920", "https://data.delijn.be/stops/211097"], ["https://data.delijn.be/stops/403284", "https://data.delijn.be/stops/403866"], ["https://data.delijn.be/stops/102255", "https://data.delijn.be/stops/103131"], ["https://data.delijn.be/stops/401511", "https://data.delijn.be/stops/409017"], ["https://data.delijn.be/stops/303435", "https://data.delijn.be/stops/304961"], ["https://data.delijn.be/stops/401842", "https://data.delijn.be/stops/401845"], ["https://data.delijn.be/stops/200892", "https://data.delijn.be/stops/201955"], ["https://data.delijn.be/stops/108452", "https://data.delijn.be/stops/108509"], ["https://data.delijn.be/stops/505216", "https://data.delijn.be/stops/505989"], ["https://data.delijn.be/stops/200190", "https://data.delijn.be/stops/200191"], ["https://data.delijn.be/stops/206356", "https://data.delijn.be/stops/206357"], ["https://data.delijn.be/stops/504956", "https://data.delijn.be/stops/508693"], ["https://data.delijn.be/stops/202240", "https://data.delijn.be/stops/206593"], ["https://data.delijn.be/stops/108553", "https://data.delijn.be/stops/109601"], ["https://data.delijn.be/stops/403634", "https://data.delijn.be/stops/409965"], ["https://data.delijn.be/stops/504063", "https://data.delijn.be/stops/504066"], ["https://data.delijn.be/stops/303551", "https://data.delijn.be/stops/305577"], ["https://data.delijn.be/stops/303413", "https://data.delijn.be/stops/303419"], ["https://data.delijn.be/stops/404636", "https://data.delijn.be/stops/404992"], ["https://data.delijn.be/stops/402401", "https://data.delijn.be/stops/402492"], ["https://data.delijn.be/stops/504352", "https://data.delijn.be/stops/504590"], ["https://data.delijn.be/stops/307624", "https://data.delijn.be/stops/308252"], ["https://data.delijn.be/stops/206513", "https://data.delijn.be/stops/207513"], ["https://data.delijn.be/stops/405103", "https://data.delijn.be/stops/408336"], ["https://data.delijn.be/stops/200218", "https://data.delijn.be/stops/200266"], ["https://data.delijn.be/stops/408038", "https://data.delijn.be/stops/408279"], ["https://data.delijn.be/stops/203139", "https://data.delijn.be/stops/210849"], ["https://data.delijn.be/stops/503237", "https://data.delijn.be/stops/504949"], ["https://data.delijn.be/stops/108903", "https://data.delijn.be/stops/108904"], ["https://data.delijn.be/stops/404652", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/301317", "https://data.delijn.be/stops/306660"], ["https://data.delijn.be/stops/206762", "https://data.delijn.be/stops/207940"], ["https://data.delijn.be/stops/202815", "https://data.delijn.be/stops/203887"], ["https://data.delijn.be/stops/302633", "https://data.delijn.be/stops/302642"], ["https://data.delijn.be/stops/503817", "https://data.delijn.be/stops/503818"], ["https://data.delijn.be/stops/400226", "https://data.delijn.be/stops/400227"], ["https://data.delijn.be/stops/210857", "https://data.delijn.be/stops/211857"], ["https://data.delijn.be/stops/103307", "https://data.delijn.be/stops/103308"], ["https://data.delijn.be/stops/408284", "https://data.delijn.be/stops/408370"], ["https://data.delijn.be/stops/203191", "https://data.delijn.be/stops/211850"], ["https://data.delijn.be/stops/101551", "https://data.delijn.be/stops/107921"], ["https://data.delijn.be/stops/206486", "https://data.delijn.be/stops/206553"], ["https://data.delijn.be/stops/408228", "https://data.delijn.be/stops/408273"], ["https://data.delijn.be/stops/504294", "https://data.delijn.be/stops/504316"], ["https://data.delijn.be/stops/208546", "https://data.delijn.be/stops/208556"], ["https://data.delijn.be/stops/209665", "https://data.delijn.be/stops/209679"], ["https://data.delijn.be/stops/304787", "https://data.delijn.be/stops/304788"], ["https://data.delijn.be/stops/202193", "https://data.delijn.be/stops/203193"], ["https://data.delijn.be/stops/300829", "https://data.delijn.be/stops/306641"], ["https://data.delijn.be/stops/201420", "https://data.delijn.be/stops/201452"], ["https://data.delijn.be/stops/107115", "https://data.delijn.be/stops/107820"], ["https://data.delijn.be/stops/101011", "https://data.delijn.be/stops/104255"], ["https://data.delijn.be/stops/203904", "https://data.delijn.be/stops/203905"], ["https://data.delijn.be/stops/206974", "https://data.delijn.be/stops/207610"], ["https://data.delijn.be/stops/101015", "https://data.delijn.be/stops/101090"], ["https://data.delijn.be/stops/402717", "https://data.delijn.be/stops/308177"], ["https://data.delijn.be/stops/206800", "https://data.delijn.be/stops/208553"], ["https://data.delijn.be/stops/203672", "https://data.delijn.be/stops/203727"], ["https://data.delijn.be/stops/405839", "https://data.delijn.be/stops/409759"], ["https://data.delijn.be/stops/201644", "https://data.delijn.be/stops/203744"], ["https://data.delijn.be/stops/201850", "https://data.delijn.be/stops/202659"], ["https://data.delijn.be/stops/208854", "https://data.delijn.be/stops/209854"], ["https://data.delijn.be/stops/501064", "https://data.delijn.be/stops/501512"], ["https://data.delijn.be/stops/401412", "https://data.delijn.be/stops/307498"], ["https://data.delijn.be/stops/106610", "https://data.delijn.be/stops/109649"], ["https://data.delijn.be/stops/207371", "https://data.delijn.be/stops/207691"], ["https://data.delijn.be/stops/106723", "https://data.delijn.be/stops/106726"], ["https://data.delijn.be/stops/206110", "https://data.delijn.be/stops/207108"], ["https://data.delijn.be/stops/202892", "https://data.delijn.be/stops/203891"], ["https://data.delijn.be/stops/302638", "https://data.delijn.be/stops/308116"], ["https://data.delijn.be/stops/402507", "https://data.delijn.be/stops/405662"], ["https://data.delijn.be/stops/108551", "https://data.delijn.be/stops/109591"], ["https://data.delijn.be/stops/505349", "https://data.delijn.be/stops/505608"], ["https://data.delijn.be/stops/201777", "https://data.delijn.be/stops/201829"], ["https://data.delijn.be/stops/402708", "https://data.delijn.be/stops/405997"], ["https://data.delijn.be/stops/103094", "https://data.delijn.be/stops/108768"], ["https://data.delijn.be/stops/302110", "https://data.delijn.be/stops/302116"], ["https://data.delijn.be/stops/200273", "https://data.delijn.be/stops/201372"], ["https://data.delijn.be/stops/400503", "https://data.delijn.be/stops/402780"], ["https://data.delijn.be/stops/501268", "https://data.delijn.be/stops/501500"], ["https://data.delijn.be/stops/300783", "https://data.delijn.be/stops/308673"], ["https://data.delijn.be/stops/400390", "https://data.delijn.be/stops/406468"], ["https://data.delijn.be/stops/301355", "https://data.delijn.be/stops/304531"], ["https://data.delijn.be/stops/504356", "https://data.delijn.be/stops/509356"], ["https://data.delijn.be/stops/306552", "https://data.delijn.be/stops/306556"], ["https://data.delijn.be/stops/302218", "https://data.delijn.be/stops/302232"], ["https://data.delijn.be/stops/406753", "https://data.delijn.be/stops/408164"], ["https://data.delijn.be/stops/401074", "https://data.delijn.be/stops/408110"], ["https://data.delijn.be/stops/402850", "https://data.delijn.be/stops/402851"], ["https://data.delijn.be/stops/205384", "https://data.delijn.be/stops/205385"], ["https://data.delijn.be/stops/504615", "https://data.delijn.be/stops/509615"], ["https://data.delijn.be/stops/107285", "https://data.delijn.be/stops/107290"], ["https://data.delijn.be/stops/202088", "https://data.delijn.be/stops/203088"], ["https://data.delijn.be/stops/105180", "https://data.delijn.be/stops/105235"], ["https://data.delijn.be/stops/505109", "https://data.delijn.be/stops/509522"], ["https://data.delijn.be/stops/108386", "https://data.delijn.be/stops/108389"], ["https://data.delijn.be/stops/305230", "https://data.delijn.be/stops/305891"], ["https://data.delijn.be/stops/104488", "https://data.delijn.be/stops/104560"], ["https://data.delijn.be/stops/300547", "https://data.delijn.be/stops/302530"], ["https://data.delijn.be/stops/400574", "https://data.delijn.be/stops/403027"], ["https://data.delijn.be/stops/304704", "https://data.delijn.be/stops/304829"], ["https://data.delijn.be/stops/101988", "https://data.delijn.be/stops/105457"], ["https://data.delijn.be/stops/404664", "https://data.delijn.be/stops/404665"], ["https://data.delijn.be/stops/307031", "https://data.delijn.be/stops/307032"], ["https://data.delijn.be/stops/407975", "https://data.delijn.be/stops/408242"], ["https://data.delijn.be/stops/407832", "https://data.delijn.be/stops/407859"], ["https://data.delijn.be/stops/501236", "https://data.delijn.be/stops/506235"], ["https://data.delijn.be/stops/208158", "https://data.delijn.be/stops/208510"], ["https://data.delijn.be/stops/107660", "https://data.delijn.be/stops/107665"], ["https://data.delijn.be/stops/103537", "https://data.delijn.be/stops/103541"], ["https://data.delijn.be/stops/207016", "https://data.delijn.be/stops/207926"], ["https://data.delijn.be/stops/203765", "https://data.delijn.be/stops/203779"], ["https://data.delijn.be/stops/401342", "https://data.delijn.be/stops/410208"], ["https://data.delijn.be/stops/204016", "https://data.delijn.be/stops/205107"], ["https://data.delijn.be/stops/204387", "https://data.delijn.be/stops/204389"], ["https://data.delijn.be/stops/301443", "https://data.delijn.be/stops/306417"], ["https://data.delijn.be/stops/104941", "https://data.delijn.be/stops/104949"], ["https://data.delijn.be/stops/200971", "https://data.delijn.be/stops/207624"], ["https://data.delijn.be/stops/400754", "https://data.delijn.be/stops/408448"], ["https://data.delijn.be/stops/301408", "https://data.delijn.be/stops/301420"], ["https://data.delijn.be/stops/202901", "https://data.delijn.be/stops/203901"], ["https://data.delijn.be/stops/403157", "https://data.delijn.be/stops/403159"], ["https://data.delijn.be/stops/408153", "https://data.delijn.be/stops/410161"], ["https://data.delijn.be/stops/204143", "https://data.delijn.be/stops/206637"], ["https://data.delijn.be/stops/304326", "https://data.delijn.be/stops/304330"], ["https://data.delijn.be/stops/206096", "https://data.delijn.be/stops/207095"], ["https://data.delijn.be/stops/208667", "https://data.delijn.be/stops/218029"], ["https://data.delijn.be/stops/407271", "https://data.delijn.be/stops/407525"], ["https://data.delijn.be/stops/505022", "https://data.delijn.be/stops/505749"], ["https://data.delijn.be/stops/101014", "https://data.delijn.be/stops/102986"], ["https://data.delijn.be/stops/505835", "https://data.delijn.be/stops/506022"], ["https://data.delijn.be/stops/202037", "https://data.delijn.be/stops/203983"], ["https://data.delijn.be/stops/205669", "https://data.delijn.be/stops/205691"], ["https://data.delijn.be/stops/303321", "https://data.delijn.be/stops/305723"], ["https://data.delijn.be/stops/303663", "https://data.delijn.be/stops/306806"], ["https://data.delijn.be/stops/203877", "https://data.delijn.be/stops/203880"], ["https://data.delijn.be/stops/407733", "https://data.delijn.be/stops/409787"], ["https://data.delijn.be/stops/504331", "https://data.delijn.be/stops/504335"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/107025"], ["https://data.delijn.be/stops/404172", "https://data.delijn.be/stops/404196"], ["https://data.delijn.be/stops/200557", "https://data.delijn.be/stops/508021"], ["https://data.delijn.be/stops/106748", "https://data.delijn.be/stops/109776"], ["https://data.delijn.be/stops/305315", "https://data.delijn.be/stops/308642"], ["https://data.delijn.be/stops/201934", "https://data.delijn.be/stops/203343"], ["https://data.delijn.be/stops/401794", "https://data.delijn.be/stops/406352"], ["https://data.delijn.be/stops/501410", "https://data.delijn.be/stops/506410"], ["https://data.delijn.be/stops/502471", "https://data.delijn.be/stops/502476"], ["https://data.delijn.be/stops/406641", "https://data.delijn.be/stops/406683"], ["https://data.delijn.be/stops/504153", "https://data.delijn.be/stops/504855"], ["https://data.delijn.be/stops/301960", "https://data.delijn.be/stops/304534"], ["https://data.delijn.be/stops/107351", "https://data.delijn.be/stops/108176"], ["https://data.delijn.be/stops/103004", "https://data.delijn.be/stops/108186"], ["https://data.delijn.be/stops/103975", "https://data.delijn.be/stops/103985"], ["https://data.delijn.be/stops/206748", "https://data.delijn.be/stops/207741"], ["https://data.delijn.be/stops/204067", "https://data.delijn.be/stops/204225"], ["https://data.delijn.be/stops/105286", "https://data.delijn.be/stops/109881"], ["https://data.delijn.be/stops/405775", "https://data.delijn.be/stops/409757"], ["https://data.delijn.be/stops/104387", "https://data.delijn.be/stops/104393"], ["https://data.delijn.be/stops/201954", "https://data.delijn.be/stops/211123"], ["https://data.delijn.be/stops/206680", "https://data.delijn.be/stops/208101"], ["https://data.delijn.be/stops/409719", "https://data.delijn.be/stops/409725"], ["https://data.delijn.be/stops/301539", "https://data.delijn.be/stops/306960"], ["https://data.delijn.be/stops/302328", "https://data.delijn.be/stops/304823"], ["https://data.delijn.be/stops/305618", "https://data.delijn.be/stops/305825"], ["https://data.delijn.be/stops/206860", "https://data.delijn.be/stops/207484"], ["https://data.delijn.be/stops/401676", "https://data.delijn.be/stops/405960"], ["https://data.delijn.be/stops/501325", "https://data.delijn.be/stops/506565"], ["https://data.delijn.be/stops/107552", "https://data.delijn.be/stops/107553"], ["https://data.delijn.be/stops/108739", "https://data.delijn.be/stops/108774"], ["https://data.delijn.be/stops/301400", "https://data.delijn.be/stops/304698"], ["https://data.delijn.be/stops/503765", "https://data.delijn.be/stops/508756"], ["https://data.delijn.be/stops/505706", "https://data.delijn.be/stops/509884"], ["https://data.delijn.be/stops/101492", "https://data.delijn.be/stops/108303"], ["https://data.delijn.be/stops/504407", "https://data.delijn.be/stops/509407"], ["https://data.delijn.be/stops/302679", "https://data.delijn.be/stops/302680"], ["https://data.delijn.be/stops/304625", "https://data.delijn.be/stops/304626"], ["https://data.delijn.be/stops/102006", "https://data.delijn.be/stops/204488"], ["https://data.delijn.be/stops/102897", "https://data.delijn.be/stops/109102"], ["https://data.delijn.be/stops/107445", "https://data.delijn.be/stops/107470"], ["https://data.delijn.be/stops/408687", "https://data.delijn.be/stops/408706"], ["https://data.delijn.be/stops/103959", "https://data.delijn.be/stops/109581"], ["https://data.delijn.be/stops/202150", "https://data.delijn.be/stops/203150"], ["https://data.delijn.be/stops/300933", "https://data.delijn.be/stops/305270"], ["https://data.delijn.be/stops/501734", "https://data.delijn.be/stops/509897"], ["https://data.delijn.be/stops/401585", "https://data.delijn.be/stops/401594"], ["https://data.delijn.be/stops/406313", "https://data.delijn.be/stops/406331"], ["https://data.delijn.be/stops/504670", "https://data.delijn.be/stops/504671"], ["https://data.delijn.be/stops/400823", "https://data.delijn.be/stops/401908"], ["https://data.delijn.be/stops/207306", "https://data.delijn.be/stops/207307"], ["https://data.delijn.be/stops/109492", "https://data.delijn.be/stops/109494"], ["https://data.delijn.be/stops/500020", "https://data.delijn.be/stops/507114"], ["https://data.delijn.be/stops/201676", "https://data.delijn.be/stops/202401"], ["https://data.delijn.be/stops/303325", "https://data.delijn.be/stops/303326"], ["https://data.delijn.be/stops/409766", "https://data.delijn.be/stops/409767"], ["https://data.delijn.be/stops/504458", "https://data.delijn.be/stops/509458"], ["https://data.delijn.be/stops/209214", "https://data.delijn.be/stops/209429"], ["https://data.delijn.be/stops/401102", "https://data.delijn.be/stops/401140"], ["https://data.delijn.be/stops/204078", "https://data.delijn.be/stops/205199"], ["https://data.delijn.be/stops/405767", "https://data.delijn.be/stops/405883"], ["https://data.delijn.be/stops/300325", "https://data.delijn.be/stops/300329"], ["https://data.delijn.be/stops/505161", "https://data.delijn.be/stops/509876"], ["https://data.delijn.be/stops/202853", "https://data.delijn.be/stops/203852"], ["https://data.delijn.be/stops/104630", "https://data.delijn.be/stops/105650"], ["https://data.delijn.be/stops/400778", "https://data.delijn.be/stops/409613"], ["https://data.delijn.be/stops/303960", "https://data.delijn.be/stops/303965"], ["https://data.delijn.be/stops/210019", "https://data.delijn.be/stops/504991"], ["https://data.delijn.be/stops/301594", "https://data.delijn.be/stops/301595"], ["https://data.delijn.be/stops/107048", "https://data.delijn.be/stops/107051"], ["https://data.delijn.be/stops/202672", "https://data.delijn.be/stops/203673"], ["https://data.delijn.be/stops/208126", "https://data.delijn.be/stops/208449"], ["https://data.delijn.be/stops/400640", "https://data.delijn.be/stops/400921"], ["https://data.delijn.be/stops/102078", "https://data.delijn.be/stops/102079"], ["https://data.delijn.be/stops/404674", "https://data.delijn.be/stops/407214"], ["https://data.delijn.be/stops/303494", "https://data.delijn.be/stops/303495"], ["https://data.delijn.be/stops/104596", "https://data.delijn.be/stops/104597"], ["https://data.delijn.be/stops/209367", "https://data.delijn.be/stops/209639"], ["https://data.delijn.be/stops/203127", "https://data.delijn.be/stops/203598"], ["https://data.delijn.be/stops/305251", "https://data.delijn.be/stops/305252"], ["https://data.delijn.be/stops/203873", "https://data.delijn.be/stops/203874"], ["https://data.delijn.be/stops/403154", "https://data.delijn.be/stops/407585"], ["https://data.delijn.be/stops/108514", "https://data.delijn.be/stops/108518"], ["https://data.delijn.be/stops/101207", "https://data.delijn.be/stops/104928"], ["https://data.delijn.be/stops/501593", "https://data.delijn.be/stops/504511"], ["https://data.delijn.be/stops/305857", "https://data.delijn.be/stops/308615"], ["https://data.delijn.be/stops/103689", "https://data.delijn.be/stops/107578"], ["https://data.delijn.be/stops/408839", "https://data.delijn.be/stops/408927"], ["https://data.delijn.be/stops/305552", "https://data.delijn.be/stops/307845"], ["https://data.delijn.be/stops/308222", "https://data.delijn.be/stops/308287"], ["https://data.delijn.be/stops/108362", "https://data.delijn.be/stops/108503"], ["https://data.delijn.be/stops/409044", "https://data.delijn.be/stops/409444"], ["https://data.delijn.be/stops/201074", "https://data.delijn.be/stops/201075"], ["https://data.delijn.be/stops/503585", "https://data.delijn.be/stops/505581"], ["https://data.delijn.be/stops/101931", "https://data.delijn.be/stops/103672"], ["https://data.delijn.be/stops/109680", "https://data.delijn.be/stops/408449"], ["https://data.delijn.be/stops/108159", "https://data.delijn.be/stops/108161"], ["https://data.delijn.be/stops/107611", "https://data.delijn.be/stops/109719"], ["https://data.delijn.be/stops/403192", "https://data.delijn.be/stops/409314"], ["https://data.delijn.be/stops/200404", "https://data.delijn.be/stops/203983"], ["https://data.delijn.be/stops/301218", "https://data.delijn.be/stops/301224"], ["https://data.delijn.be/stops/504092", "https://data.delijn.be/stops/509641"], ["https://data.delijn.be/stops/502566", "https://data.delijn.be/stops/502567"], ["https://data.delijn.be/stops/508622", "https://data.delijn.be/stops/508628"], ["https://data.delijn.be/stops/300961", "https://data.delijn.be/stops/301154"], ["https://data.delijn.be/stops/300483", "https://data.delijn.be/stops/300484"], ["https://data.delijn.be/stops/406070", "https://data.delijn.be/stops/406071"], ["https://data.delijn.be/stops/402850", "https://data.delijn.be/stops/408981"], ["https://data.delijn.be/stops/407588", "https://data.delijn.be/stops/407619"], ["https://data.delijn.be/stops/208471", "https://data.delijn.be/stops/208472"], ["https://data.delijn.be/stops/404855", "https://data.delijn.be/stops/404881"], ["https://data.delijn.be/stops/305677", "https://data.delijn.be/stops/305686"], ["https://data.delijn.be/stops/107656", "https://data.delijn.be/stops/107658"], ["https://data.delijn.be/stops/106897", "https://data.delijn.be/stops/107213"], ["https://data.delijn.be/stops/301169", "https://data.delijn.be/stops/303202"], ["https://data.delijn.be/stops/307550", "https://data.delijn.be/stops/307556"], ["https://data.delijn.be/stops/407907", "https://data.delijn.be/stops/408007"], ["https://data.delijn.be/stops/502179", "https://data.delijn.be/stops/505555"], ["https://data.delijn.be/stops/405557", "https://data.delijn.be/stops/405573"], ["https://data.delijn.be/stops/401309", "https://data.delijn.be/stops/401314"], ["https://data.delijn.be/stops/107487", "https://data.delijn.be/stops/107489"], ["https://data.delijn.be/stops/407727", "https://data.delijn.be/stops/409779"], ["https://data.delijn.be/stops/502215", "https://data.delijn.be/stops/507215"], ["https://data.delijn.be/stops/402229", "https://data.delijn.be/stops/407328"], ["https://data.delijn.be/stops/401679", "https://data.delijn.be/stops/308167"], ["https://data.delijn.be/stops/103916", "https://data.delijn.be/stops/107239"], ["https://data.delijn.be/stops/104659", "https://data.delijn.be/stops/306759"], ["https://data.delijn.be/stops/405864", "https://data.delijn.be/stops/409425"], ["https://data.delijn.be/stops/407337", "https://data.delijn.be/stops/407630"], ["https://data.delijn.be/stops/104471", "https://data.delijn.be/stops/107903"], ["https://data.delijn.be/stops/202819", "https://data.delijn.be/stops/202911"], ["https://data.delijn.be/stops/109025", "https://data.delijn.be/stops/109030"], ["https://data.delijn.be/stops/301835", "https://data.delijn.be/stops/301882"], ["https://data.delijn.be/stops/501326", "https://data.delijn.be/stops/506326"], ["https://data.delijn.be/stops/102543", "https://data.delijn.be/stops/102547"], ["https://data.delijn.be/stops/204481", "https://data.delijn.be/stops/205252"], ["https://data.delijn.be/stops/208443", "https://data.delijn.be/stops/209442"], ["https://data.delijn.be/stops/407029", "https://data.delijn.be/stops/407033"], ["https://data.delijn.be/stops/202058", "https://data.delijn.be/stops/203058"], ["https://data.delijn.be/stops/509291", "https://data.delijn.be/stops/509532"], ["https://data.delijn.be/stops/306906", "https://data.delijn.be/stops/306908"], ["https://data.delijn.be/stops/108628", "https://data.delijn.be/stops/109678"], ["https://data.delijn.be/stops/304906", "https://data.delijn.be/stops/306388"], ["https://data.delijn.be/stops/106765", "https://data.delijn.be/stops/106866"], ["https://data.delijn.be/stops/408514", "https://data.delijn.be/stops/408813"], ["https://data.delijn.be/stops/501382", "https://data.delijn.be/stops/507249"], ["https://data.delijn.be/stops/409523", "https://data.delijn.be/stops/410164"], ["https://data.delijn.be/stops/103975", "https://data.delijn.be/stops/104285"], ["https://data.delijn.be/stops/406230", "https://data.delijn.be/stops/406231"], ["https://data.delijn.be/stops/204428", "https://data.delijn.be/stops/204429"], ["https://data.delijn.be/stops/204067", "https://data.delijn.be/stops/204095"], ["https://data.delijn.be/stops/108464", "https://data.delijn.be/stops/108467"], ["https://data.delijn.be/stops/504998", "https://data.delijn.be/stops/508879"], ["https://data.delijn.be/stops/502257", "https://data.delijn.be/stops/507919"], ["https://data.delijn.be/stops/307464", "https://data.delijn.be/stops/307465"], ["https://data.delijn.be/stops/502387", "https://data.delijn.be/stops/507518"], ["https://data.delijn.be/stops/509225", "https://data.delijn.be/stops/509884"], ["https://data.delijn.be/stops/205997", "https://data.delijn.be/stops/503642"], ["https://data.delijn.be/stops/300932", "https://data.delijn.be/stops/300987"], ["https://data.delijn.be/stops/107196", "https://data.delijn.be/stops/107197"], ["https://data.delijn.be/stops/105752", "https://data.delijn.be/stops/105753"], ["https://data.delijn.be/stops/502684", "https://data.delijn.be/stops/502699"], ["https://data.delijn.be/stops/302307", "https://data.delijn.be/stops/302322"], ["https://data.delijn.be/stops/503559", "https://data.delijn.be/stops/508559"], ["https://data.delijn.be/stops/101036", "https://data.delijn.be/stops/104502"], ["https://data.delijn.be/stops/301919", "https://data.delijn.be/stops/303163"], ["https://data.delijn.be/stops/207537", "https://data.delijn.be/stops/209741"], ["https://data.delijn.be/stops/408239", "https://data.delijn.be/stops/308289"], ["https://data.delijn.be/stops/507306", "https://data.delijn.be/stops/507316"], ["https://data.delijn.be/stops/102701", "https://data.delijn.be/stops/102944"], ["https://data.delijn.be/stops/504100", "https://data.delijn.be/stops/509102"], ["https://data.delijn.be/stops/502913", "https://data.delijn.be/stops/507022"], ["https://data.delijn.be/stops/103244", "https://data.delijn.be/stops/107959"], ["https://data.delijn.be/stops/209501", "https://data.delijn.be/stops/209502"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/406767"], ["https://data.delijn.be/stops/202023", "https://data.delijn.be/stops/202349"], ["https://data.delijn.be/stops/211109", "https://data.delijn.be/stops/211132"], ["https://data.delijn.be/stops/300129", "https://data.delijn.be/stops/300130"], ["https://data.delijn.be/stops/405265", "https://data.delijn.be/stops/405274"], ["https://data.delijn.be/stops/101880", "https://data.delijn.be/stops/101992"], ["https://data.delijn.be/stops/404343", "https://data.delijn.be/stops/404384"], ["https://data.delijn.be/stops/200047", "https://data.delijn.be/stops/200383"], ["https://data.delijn.be/stops/503390", "https://data.delijn.be/stops/508451"], ["https://data.delijn.be/stops/503896", "https://data.delijn.be/stops/509941"], ["https://data.delijn.be/stops/302986", "https://data.delijn.be/stops/303833"], ["https://data.delijn.be/stops/408065", "https://data.delijn.be/stops/408087"], ["https://data.delijn.be/stops/400127", "https://data.delijn.be/stops/409194"], ["https://data.delijn.be/stops/404406", "https://data.delijn.be/stops/404407"], ["https://data.delijn.be/stops/208272", "https://data.delijn.be/stops/209272"], ["https://data.delijn.be/stops/300132", "https://data.delijn.be/stops/300144"], ["https://data.delijn.be/stops/510011", "https://data.delijn.be/stops/510014"], ["https://data.delijn.be/stops/204585", "https://data.delijn.be/stops/204586"], ["https://data.delijn.be/stops/502006", "https://data.delijn.be/stops/507006"], ["https://data.delijn.be/stops/107487", "https://data.delijn.be/stops/305803"], ["https://data.delijn.be/stops/208738", "https://data.delijn.be/stops/209738"], ["https://data.delijn.be/stops/101435", "https://data.delijn.be/stops/107289"], ["https://data.delijn.be/stops/300747", "https://data.delijn.be/stops/302398"], ["https://data.delijn.be/stops/400112", "https://data.delijn.be/stops/400113"], ["https://data.delijn.be/stops/200701", "https://data.delijn.be/stops/201545"], ["https://data.delijn.be/stops/108881", "https://data.delijn.be/stops/108883"], ["https://data.delijn.be/stops/102617", "https://data.delijn.be/stops/108208"], ["https://data.delijn.be/stops/104036", "https://data.delijn.be/stops/108685"], ["https://data.delijn.be/stops/300267", "https://data.delijn.be/stops/300268"], ["https://data.delijn.be/stops/400158", "https://data.delijn.be/stops/409157"], ["https://data.delijn.be/stops/106917", "https://data.delijn.be/stops/106951"], ["https://data.delijn.be/stops/200912", "https://data.delijn.be/stops/203097"], ["https://data.delijn.be/stops/300843", "https://data.delijn.be/stops/304890"], ["https://data.delijn.be/stops/503630", "https://data.delijn.be/stops/509360"], ["https://data.delijn.be/stops/208386", "https://data.delijn.be/stops/209385"], ["https://data.delijn.be/stops/200783", "https://data.delijn.be/stops/211045"], ["https://data.delijn.be/stops/307066", "https://data.delijn.be/stops/307067"], ["https://data.delijn.be/stops/408092", "https://data.delijn.be/stops/408093"], ["https://data.delijn.be/stops/404427", "https://data.delijn.be/stops/410102"], ["https://data.delijn.be/stops/209050", "https://data.delijn.be/stops/209051"], ["https://data.delijn.be/stops/503240", "https://data.delijn.be/stops/503262"], ["https://data.delijn.be/stops/402219", "https://data.delijn.be/stops/405609"], ["https://data.delijn.be/stops/202849", "https://data.delijn.be/stops/202948"], ["https://data.delijn.be/stops/501107", "https://data.delijn.be/stops/506224"], ["https://data.delijn.be/stops/401399", "https://data.delijn.be/stops/300919"], ["https://data.delijn.be/stops/505019", "https://data.delijn.be/stops/505335"], ["https://data.delijn.be/stops/504518", "https://data.delijn.be/stops/505803"], ["https://data.delijn.be/stops/404726", "https://data.delijn.be/stops/408926"], ["https://data.delijn.be/stops/201925", "https://data.delijn.be/stops/207588"], ["https://data.delijn.be/stops/204189", "https://data.delijn.be/stops/204387"], ["https://data.delijn.be/stops/408106", "https://data.delijn.be/stops/408107"], ["https://data.delijn.be/stops/101389", "https://data.delijn.be/stops/107107"], ["https://data.delijn.be/stops/400953", "https://data.delijn.be/stops/407487"], ["https://data.delijn.be/stops/204502", "https://data.delijn.be/stops/204547"], ["https://data.delijn.be/stops/103274", "https://data.delijn.be/stops/107607"], ["https://data.delijn.be/stops/200751", "https://data.delijn.be/stops/200767"], ["https://data.delijn.be/stops/401442", "https://data.delijn.be/stops/401633"], ["https://data.delijn.be/stops/502380", "https://data.delijn.be/stops/502671"], ["https://data.delijn.be/stops/207610", "https://data.delijn.be/stops/207974"], ["https://data.delijn.be/stops/207181", "https://data.delijn.be/stops/308566"], ["https://data.delijn.be/stops/300812", "https://data.delijn.be/stops/306641"], ["https://data.delijn.be/stops/406551", "https://data.delijn.be/stops/406553"], ["https://data.delijn.be/stops/206988", "https://data.delijn.be/stops/206995"], ["https://data.delijn.be/stops/208653", "https://data.delijn.be/stops/209653"], ["https://data.delijn.be/stops/408020", "https://data.delijn.be/stops/408135"], ["https://data.delijn.be/stops/104022", "https://data.delijn.be/stops/106851"], ["https://data.delijn.be/stops/302788", "https://data.delijn.be/stops/307455"], ["https://data.delijn.be/stops/205678", "https://data.delijn.be/stops/205683"], ["https://data.delijn.be/stops/103684", "https://data.delijn.be/stops/106221"], ["https://data.delijn.be/stops/207794", "https://data.delijn.be/stops/208872"], ["https://data.delijn.be/stops/300572", "https://data.delijn.be/stops/307855"], ["https://data.delijn.be/stops/109246", "https://data.delijn.be/stops/109259"], ["https://data.delijn.be/stops/202538", "https://data.delijn.be/stops/219022"], ["https://data.delijn.be/stops/501043", "https://data.delijn.be/stops/506026"], ["https://data.delijn.be/stops/202849", "https://data.delijn.be/stops/203849"], ["https://data.delijn.be/stops/201797", "https://data.delijn.be/stops/211063"], ["https://data.delijn.be/stops/208250", "https://data.delijn.be/stops/209250"], ["https://data.delijn.be/stops/204334", "https://data.delijn.be/stops/205817"], ["https://data.delijn.be/stops/402832", "https://data.delijn.be/stops/409009"], ["https://data.delijn.be/stops/302849", "https://data.delijn.be/stops/302851"], ["https://data.delijn.be/stops/300200", "https://data.delijn.be/stops/304657"], ["https://data.delijn.be/stops/101285", "https://data.delijn.be/stops/101880"], ["https://data.delijn.be/stops/107576", "https://data.delijn.be/stops/107746"], ["https://data.delijn.be/stops/207282", "https://data.delijn.be/stops/207283"], ["https://data.delijn.be/stops/206841", "https://data.delijn.be/stops/207584"], ["https://data.delijn.be/stops/304729", "https://data.delijn.be/stops/304730"], ["https://data.delijn.be/stops/504551", "https://data.delijn.be/stops/509551"], ["https://data.delijn.be/stops/101204", "https://data.delijn.be/stops/101206"], ["https://data.delijn.be/stops/103671", "https://data.delijn.be/stops/103672"], ["https://data.delijn.be/stops/101370", "https://data.delijn.be/stops/102075"], ["https://data.delijn.be/stops/402813", "https://data.delijn.be/stops/409034"], ["https://data.delijn.be/stops/502945", "https://data.delijn.be/stops/507479"], ["https://data.delijn.be/stops/402597", "https://data.delijn.be/stops/402639"], ["https://data.delijn.be/stops/207789", "https://data.delijn.be/stops/209407"], ["https://data.delijn.be/stops/401435", "https://data.delijn.be/stops/401501"], ["https://data.delijn.be/stops/101850", "https://data.delijn.be/stops/108035"], ["https://data.delijn.be/stops/108051", "https://data.delijn.be/stops/307903"], ["https://data.delijn.be/stops/205418", "https://data.delijn.be/stops/205766"], ["https://data.delijn.be/stops/403662", "https://data.delijn.be/stops/404849"], ["https://data.delijn.be/stops/305649", "https://data.delijn.be/stops/305656"], ["https://data.delijn.be/stops/108934", "https://data.delijn.be/stops/108937"], ["https://data.delijn.be/stops/400837", "https://data.delijn.be/stops/404380"], ["https://data.delijn.be/stops/102109", "https://data.delijn.be/stops/109804"], ["https://data.delijn.be/stops/403038", "https://data.delijn.be/stops/403169"], ["https://data.delijn.be/stops/503874", "https://data.delijn.be/stops/508579"], ["https://data.delijn.be/stops/208427", "https://data.delijn.be/stops/208679"], ["https://data.delijn.be/stops/204649", "https://data.delijn.be/stops/205447"], ["https://data.delijn.be/stops/301987", "https://data.delijn.be/stops/302000"], ["https://data.delijn.be/stops/201928", "https://data.delijn.be/stops/202522"], ["https://data.delijn.be/stops/500002", "https://data.delijn.be/stops/503662"], ["https://data.delijn.be/stops/200256", "https://data.delijn.be/stops/200257"], ["https://data.delijn.be/stops/301576", "https://data.delijn.be/stops/308087"], ["https://data.delijn.be/stops/403213", "https://data.delijn.be/stops/403453"], ["https://data.delijn.be/stops/102023", "https://data.delijn.be/stops/102024"], ["https://data.delijn.be/stops/206125", "https://data.delijn.be/stops/207125"], ["https://data.delijn.be/stops/202687", "https://data.delijn.be/stops/202688"], ["https://data.delijn.be/stops/208668", "https://data.delijn.be/stops/208673"], ["https://data.delijn.be/stops/503227", "https://data.delijn.be/stops/503229"], ["https://data.delijn.be/stops/405799", "https://data.delijn.be/stops/409705"], ["https://data.delijn.be/stops/308159", "https://data.delijn.be/stops/308179"], ["https://data.delijn.be/stops/304476", "https://data.delijn.be/stops/304477"], ["https://data.delijn.be/stops/400865", "https://data.delijn.be/stops/400866"], ["https://data.delijn.be/stops/404849", "https://data.delijn.be/stops/405587"], ["https://data.delijn.be/stops/301435", "https://data.delijn.be/stops/306417"], ["https://data.delijn.be/stops/302014", "https://data.delijn.be/stops/302018"], ["https://data.delijn.be/stops/508622", "https://data.delijn.be/stops/590008"], ["https://data.delijn.be/stops/509040", "https://data.delijn.be/stops/509650"], ["https://data.delijn.be/stops/304592", "https://data.delijn.be/stops/304611"], ["https://data.delijn.be/stops/505772", "https://data.delijn.be/stops/507364"], ["https://data.delijn.be/stops/202397", "https://data.delijn.be/stops/203610"], ["https://data.delijn.be/stops/503654", "https://data.delijn.be/stops/504668"], ["https://data.delijn.be/stops/301039", "https://data.delijn.be/stops/307807"], ["https://data.delijn.be/stops/105489", "https://data.delijn.be/stops/105493"], ["https://data.delijn.be/stops/404915", "https://data.delijn.be/stops/404920"], ["https://data.delijn.be/stops/106793", "https://data.delijn.be/stops/106796"], ["https://data.delijn.be/stops/401946", "https://data.delijn.be/stops/404443"], ["https://data.delijn.be/stops/105260", "https://data.delijn.be/stops/105370"], ["https://data.delijn.be/stops/103710", "https://data.delijn.be/stops/106000"], ["https://data.delijn.be/stops/105072", "https://data.delijn.be/stops/108229"], ["https://data.delijn.be/stops/105474", "https://data.delijn.be/stops/109948"], ["https://data.delijn.be/stops/505933", "https://data.delijn.be/stops/507797"], ["https://data.delijn.be/stops/108162", "https://data.delijn.be/stops/108164"], ["https://data.delijn.be/stops/504625", "https://data.delijn.be/stops/505799"], ["https://data.delijn.be/stops/102580", "https://data.delijn.be/stops/108791"], ["https://data.delijn.be/stops/503693", "https://data.delijn.be/stops/503711"], ["https://data.delijn.be/stops/205297", "https://data.delijn.be/stops/205304"], ["https://data.delijn.be/stops/405002", "https://data.delijn.be/stops/408923"], ["https://data.delijn.be/stops/502399", "https://data.delijn.be/stops/507399"], ["https://data.delijn.be/stops/302617", "https://data.delijn.be/stops/302628"], ["https://data.delijn.be/stops/302240", "https://data.delijn.be/stops/304031"], ["https://data.delijn.be/stops/302413", "https://data.delijn.be/stops/302415"], ["https://data.delijn.be/stops/200118", "https://data.delijn.be/stops/201117"], ["https://data.delijn.be/stops/200679", "https://data.delijn.be/stops/201461"], ["https://data.delijn.be/stops/104762", "https://data.delijn.be/stops/108899"], ["https://data.delijn.be/stops/306925", "https://data.delijn.be/stops/306930"], ["https://data.delijn.be/stops/205735", "https://data.delijn.be/stops/205736"], ["https://data.delijn.be/stops/202776", "https://data.delijn.be/stops/203816"], ["https://data.delijn.be/stops/405187", "https://data.delijn.be/stops/405190"], ["https://data.delijn.be/stops/401149", "https://data.delijn.be/stops/402830"], ["https://data.delijn.be/stops/300872", "https://data.delijn.be/stops/302190"], ["https://data.delijn.be/stops/304150", "https://data.delijn.be/stops/307759"], ["https://data.delijn.be/stops/505340", "https://data.delijn.be/stops/507483"], ["https://data.delijn.be/stops/105574", "https://data.delijn.be/stops/105577"], ["https://data.delijn.be/stops/407059", "https://data.delijn.be/stops/407071"], ["https://data.delijn.be/stops/105053", "https://data.delijn.be/stops/304041"], ["https://data.delijn.be/stops/301080", "https://data.delijn.be/stops/308874"], ["https://data.delijn.be/stops/205528", "https://data.delijn.be/stops/205633"], ["https://data.delijn.be/stops/201399", "https://data.delijn.be/stops/205950"], ["https://data.delijn.be/stops/503183", "https://data.delijn.be/stops/508199"], ["https://data.delijn.be/stops/303446", "https://data.delijn.be/stops/303458"], ["https://data.delijn.be/stops/503271", "https://data.delijn.be/stops/503273"], ["https://data.delijn.be/stops/204995", "https://data.delijn.be/stops/303861"], ["https://data.delijn.be/stops/500874", "https://data.delijn.be/stops/503932"], ["https://data.delijn.be/stops/408010", "https://data.delijn.be/stops/408151"], ["https://data.delijn.be/stops/505160", "https://data.delijn.be/stops/505914"], ["https://data.delijn.be/stops/402120", "https://data.delijn.be/stops/402261"], ["https://data.delijn.be/stops/303793", "https://data.delijn.be/stops/303869"], ["https://data.delijn.be/stops/504281", "https://data.delijn.be/stops/504289"], ["https://data.delijn.be/stops/104165", "https://data.delijn.be/stops/107695"], ["https://data.delijn.be/stops/104699", "https://data.delijn.be/stops/104703"], ["https://data.delijn.be/stops/206861", "https://data.delijn.be/stops/207458"], ["https://data.delijn.be/stops/200832", "https://data.delijn.be/stops/200838"], ["https://data.delijn.be/stops/200075", "https://data.delijn.be/stops/201449"], ["https://data.delijn.be/stops/501488", "https://data.delijn.be/stops/506039"], ["https://data.delijn.be/stops/506487", "https://data.delijn.be/stops/506673"], ["https://data.delijn.be/stops/405456", "https://data.delijn.be/stops/405484"], ["https://data.delijn.be/stops/206614", "https://data.delijn.be/stops/207613"], ["https://data.delijn.be/stops/104895", "https://data.delijn.be/stops/104900"], ["https://data.delijn.be/stops/504977", "https://data.delijn.be/stops/505572"], ["https://data.delijn.be/stops/208674", "https://data.delijn.be/stops/208751"], ["https://data.delijn.be/stops/304371", "https://data.delijn.be/stops/307501"], ["https://data.delijn.be/stops/203723", "https://data.delijn.be/stops/203724"], ["https://data.delijn.be/stops/208057", "https://data.delijn.be/stops/208058"], ["https://data.delijn.be/stops/300207", "https://data.delijn.be/stops/300270"], ["https://data.delijn.be/stops/206252", "https://data.delijn.be/stops/206828"], ["https://data.delijn.be/stops/504799", "https://data.delijn.be/stops/507814"], ["https://data.delijn.be/stops/502007", "https://data.delijn.be/stops/505024"], ["https://data.delijn.be/stops/301569", "https://data.delijn.be/stops/303678"], ["https://data.delijn.be/stops/402046", "https://data.delijn.be/stops/410075"], ["https://data.delijn.be/stops/200039", "https://data.delijn.be/stops/201911"], ["https://data.delijn.be/stops/102298", "https://data.delijn.be/stops/103084"], ["https://data.delijn.be/stops/204736", "https://data.delijn.be/stops/205735"], ["https://data.delijn.be/stops/304088", "https://data.delijn.be/stops/304113"], ["https://data.delijn.be/stops/402740", "https://data.delijn.be/stops/406912"], ["https://data.delijn.be/stops/400128", "https://data.delijn.be/stops/403311"], ["https://data.delijn.be/stops/105023", "https://data.delijn.be/stops/105826"], ["https://data.delijn.be/stops/303163", "https://data.delijn.be/stops/303172"], ["https://data.delijn.be/stops/304533", "https://data.delijn.be/stops/304534"], ["https://data.delijn.be/stops/500129", "https://data.delijn.be/stops/507706"], ["https://data.delijn.be/stops/104598", "https://data.delijn.be/stops/107529"], ["https://data.delijn.be/stops/208691", "https://data.delijn.be/stops/208709"], ["https://data.delijn.be/stops/402845", "https://data.delijn.be/stops/405357"], ["https://data.delijn.be/stops/505835", "https://data.delijn.be/stops/506510"], ["https://data.delijn.be/stops/200667", "https://data.delijn.be/stops/201841"], ["https://data.delijn.be/stops/300127", "https://data.delijn.be/stops/300140"], ["https://data.delijn.be/stops/503780", "https://data.delijn.be/stops/505843"], ["https://data.delijn.be/stops/102965", "https://data.delijn.be/stops/105160"], ["https://data.delijn.be/stops/102382", "https://data.delijn.be/stops/106355"], ["https://data.delijn.be/stops/409155", "https://data.delijn.be/stops/409156"], ["https://data.delijn.be/stops/302229", "https://data.delijn.be/stops/302241"], ["https://data.delijn.be/stops/405715", "https://data.delijn.be/stops/405731"], ["https://data.delijn.be/stops/201810", "https://data.delijn.be/stops/505797"], ["https://data.delijn.be/stops/507949", "https://data.delijn.be/stops/507957"], ["https://data.delijn.be/stops/207760", "https://data.delijn.be/stops/207776"], ["https://data.delijn.be/stops/101908", "https://data.delijn.be/stops/101916"], ["https://data.delijn.be/stops/103473", "https://data.delijn.be/stops/109360"], ["https://data.delijn.be/stops/202254", "https://data.delijn.be/stops/202255"], ["https://data.delijn.be/stops/105319", "https://data.delijn.be/stops/105322"], ["https://data.delijn.be/stops/504333", "https://data.delijn.be/stops/509337"], ["https://data.delijn.be/stops/303314", "https://data.delijn.be/stops/307294"], ["https://data.delijn.be/stops/401838", "https://data.delijn.be/stops/406046"], ["https://data.delijn.be/stops/501764", "https://data.delijn.be/stops/503823"], ["https://data.delijn.be/stops/402321", "https://data.delijn.be/stops/402398"], ["https://data.delijn.be/stops/101590", "https://data.delijn.be/stops/109040"], ["https://data.delijn.be/stops/108047", "https://data.delijn.be/stops/108049"], ["https://data.delijn.be/stops/106426", "https://data.delijn.be/stops/106559"], ["https://data.delijn.be/stops/505030", "https://data.delijn.be/stops/505034"], ["https://data.delijn.be/stops/201876", "https://data.delijn.be/stops/203396"], ["https://data.delijn.be/stops/109925", "https://data.delijn.be/stops/109957"], ["https://data.delijn.be/stops/201521", "https://data.delijn.be/stops/201523"], ["https://data.delijn.be/stops/202771", "https://data.delijn.be/stops/202772"], ["https://data.delijn.be/stops/405351", "https://data.delijn.be/stops/302832"], ["https://data.delijn.be/stops/407804", "https://data.delijn.be/stops/407806"], ["https://data.delijn.be/stops/401581", "https://data.delijn.be/stops/401744"], ["https://data.delijn.be/stops/104446", "https://data.delijn.be/stops/303879"], ["https://data.delijn.be/stops/305429", "https://data.delijn.be/stops/305436"], ["https://data.delijn.be/stops/208774", "https://data.delijn.be/stops/209774"], ["https://data.delijn.be/stops/301350", "https://data.delijn.be/stops/303642"], ["https://data.delijn.be/stops/101820", "https://data.delijn.be/stops/105710"], ["https://data.delijn.be/stops/402715", "https://data.delijn.be/stops/308143"], ["https://data.delijn.be/stops/501221", "https://data.delijn.be/stops/506215"], ["https://data.delijn.be/stops/206272", "https://data.delijn.be/stops/206273"], ["https://data.delijn.be/stops/102291", "https://data.delijn.be/stops/106351"], ["https://data.delijn.be/stops/304371", "https://data.delijn.be/stops/306869"], ["https://data.delijn.be/stops/208803", "https://data.delijn.be/stops/209213"], ["https://data.delijn.be/stops/510018", "https://data.delijn.be/stops/510023"], ["https://data.delijn.be/stops/102991", "https://data.delijn.be/stops/109639"], ["https://data.delijn.be/stops/302141", "https://data.delijn.be/stops/308106"], ["https://data.delijn.be/stops/305215", "https://data.delijn.be/stops/308905"], ["https://data.delijn.be/stops/200978", "https://data.delijn.be/stops/201978"], ["https://data.delijn.be/stops/402659", "https://data.delijn.be/stops/410057"], ["https://data.delijn.be/stops/500951", "https://data.delijn.be/stops/509173"], ["https://data.delijn.be/stops/300029", "https://data.delijn.be/stops/303836"], ["https://data.delijn.be/stops/504278", "https://data.delijn.be/stops/504284"], ["https://data.delijn.be/stops/101312", "https://data.delijn.be/stops/106048"], ["https://data.delijn.be/stops/408523", "https://data.delijn.be/stops/408593"], ["https://data.delijn.be/stops/204363", "https://data.delijn.be/stops/205105"], ["https://data.delijn.be/stops/408575", "https://data.delijn.be/stops/408813"], ["https://data.delijn.be/stops/109054", "https://data.delijn.be/stops/405032"], ["https://data.delijn.be/stops/403948", "https://data.delijn.be/stops/403949"], ["https://data.delijn.be/stops/301902", "https://data.delijn.be/stops/306248"], ["https://data.delijn.be/stops/201902", "https://data.delijn.be/stops/203474"], ["https://data.delijn.be/stops/302165", "https://data.delijn.be/stops/307805"], ["https://data.delijn.be/stops/503648", "https://data.delijn.be/stops/503652"], ["https://data.delijn.be/stops/404670", "https://data.delijn.be/stops/404687"], ["https://data.delijn.be/stops/205984", "https://data.delijn.be/stops/219003"], ["https://data.delijn.be/stops/405730", "https://data.delijn.be/stops/405731"], ["https://data.delijn.be/stops/504417", "https://data.delijn.be/stops/509422"], ["https://data.delijn.be/stops/209102", "https://data.delijn.be/stops/209163"], ["https://data.delijn.be/stops/206107", "https://data.delijn.be/stops/207107"], ["https://data.delijn.be/stops/305112", "https://data.delijn.be/stops/305134"], ["https://data.delijn.be/stops/103529", "https://data.delijn.be/stops/103531"], ["https://data.delijn.be/stops/407685", "https://data.delijn.be/stops/407695"], ["https://data.delijn.be/stops/102708", "https://data.delijn.be/stops/102843"], ["https://data.delijn.be/stops/406674", "https://data.delijn.be/stops/406691"], ["https://data.delijn.be/stops/206345", "https://data.delijn.be/stops/206355"], ["https://data.delijn.be/stops/504783", "https://data.delijn.be/stops/508240"], ["https://data.delijn.be/stops/105905", "https://data.delijn.be/stops/108930"], ["https://data.delijn.be/stops/201559", "https://data.delijn.be/stops/210067"], ["https://data.delijn.be/stops/502755", "https://data.delijn.be/stops/505651"], ["https://data.delijn.be/stops/404759", "https://data.delijn.be/stops/405359"], ["https://data.delijn.be/stops/102180", "https://data.delijn.be/stops/107133"], ["https://data.delijn.be/stops/201825", "https://data.delijn.be/stops/202794"], ["https://data.delijn.be/stops/200239", "https://data.delijn.be/stops/201275"], ["https://data.delijn.be/stops/401728", "https://data.delijn.be/stops/401834"], ["https://data.delijn.be/stops/406552", "https://data.delijn.be/stops/406553"], ["https://data.delijn.be/stops/201154", "https://data.delijn.be/stops/202359"], ["https://data.delijn.be/stops/102531", "https://data.delijn.be/stops/408253"], ["https://data.delijn.be/stops/200728", "https://data.delijn.be/stops/202593"], ["https://data.delijn.be/stops/209107", "https://data.delijn.be/stops/219030"], ["https://data.delijn.be/stops/307392", "https://data.delijn.be/stops/307630"], ["https://data.delijn.be/stops/300180", "https://data.delijn.be/stops/300223"], ["https://data.delijn.be/stops/402626", "https://data.delijn.be/stops/405561"], ["https://data.delijn.be/stops/108399", "https://data.delijn.be/stops/108402"], ["https://data.delijn.be/stops/206947", "https://data.delijn.be/stops/209542"], ["https://data.delijn.be/stops/401490", "https://data.delijn.be/stops/401491"], ["https://data.delijn.be/stops/507943", "https://data.delijn.be/stops/507944"], ["https://data.delijn.be/stops/501555", "https://data.delijn.be/stops/501556"], ["https://data.delijn.be/stops/203403", "https://data.delijn.be/stops/210116"], ["https://data.delijn.be/stops/501183", "https://data.delijn.be/stops/506183"], ["https://data.delijn.be/stops/501320", "https://data.delijn.be/stops/506284"], ["https://data.delijn.be/stops/503790", "https://data.delijn.be/stops/508788"], ["https://data.delijn.be/stops/109645", "https://data.delijn.be/stops/109646"], ["https://data.delijn.be/stops/302678", "https://data.delijn.be/stops/302685"], ["https://data.delijn.be/stops/504346", "https://data.delijn.be/stops/509346"], ["https://data.delijn.be/stops/200249", "https://data.delijn.be/stops/201235"], ["https://data.delijn.be/stops/106722", "https://data.delijn.be/stops/109672"], ["https://data.delijn.be/stops/304264", "https://data.delijn.be/stops/304271"], ["https://data.delijn.be/stops/406660", "https://data.delijn.be/stops/406669"], ["https://data.delijn.be/stops/305743", "https://data.delijn.be/stops/306308"], ["https://data.delijn.be/stops/200452", "https://data.delijn.be/stops/209273"], ["https://data.delijn.be/stops/102965", "https://data.delijn.be/stops/104111"], ["https://data.delijn.be/stops/503481", "https://data.delijn.be/stops/503488"], ["https://data.delijn.be/stops/406444", "https://data.delijn.be/stops/406449"], ["https://data.delijn.be/stops/202790", "https://data.delijn.be/stops/203790"], ["https://data.delijn.be/stops/104662", "https://data.delijn.be/stops/108468"], ["https://data.delijn.be/stops/503579", "https://data.delijn.be/stops/508543"], ["https://data.delijn.be/stops/209486", "https://data.delijn.be/stops/209487"], ["https://data.delijn.be/stops/501391", "https://data.delijn.be/stops/506392"], ["https://data.delijn.be/stops/109057", "https://data.delijn.be/stops/109065"], ["https://data.delijn.be/stops/505536", "https://data.delijn.be/stops/505543"], ["https://data.delijn.be/stops/101235", "https://data.delijn.be/stops/105800"], ["https://data.delijn.be/stops/300279", "https://data.delijn.be/stops/300280"], ["https://data.delijn.be/stops/407645", "https://data.delijn.be/stops/407651"], ["https://data.delijn.be/stops/509243", "https://data.delijn.be/stops/509562"], ["https://data.delijn.be/stops/405069", "https://data.delijn.be/stops/406548"], ["https://data.delijn.be/stops/210055", "https://data.delijn.be/stops/210123"], ["https://data.delijn.be/stops/503934", "https://data.delijn.be/stops/505306"], ["https://data.delijn.be/stops/301267", "https://data.delijn.be/stops/308029"], ["https://data.delijn.be/stops/404466", "https://data.delijn.be/stops/406753"], ["https://data.delijn.be/stops/400796", "https://data.delijn.be/stops/400797"], ["https://data.delijn.be/stops/200222", "https://data.delijn.be/stops/202450"], ["https://data.delijn.be/stops/109214", "https://data.delijn.be/stops/109215"], ["https://data.delijn.be/stops/203993", "https://data.delijn.be/stops/210849"], ["https://data.delijn.be/stops/405911", "https://data.delijn.be/stops/409696"], ["https://data.delijn.be/stops/101378", "https://data.delijn.be/stops/107302"], ["https://data.delijn.be/stops/405847", "https://data.delijn.be/stops/409663"], ["https://data.delijn.be/stops/402290", "https://data.delijn.be/stops/402320"], ["https://data.delijn.be/stops/407924", "https://data.delijn.be/stops/407925"], ["https://data.delijn.be/stops/503270", "https://data.delijn.be/stops/508274"], ["https://data.delijn.be/stops/404596", "https://data.delijn.be/stops/406950"], ["https://data.delijn.be/stops/305258", "https://data.delijn.be/stops/305893"], ["https://data.delijn.be/stops/200165", "https://data.delijn.be/stops/201165"], ["https://data.delijn.be/stops/405214", "https://data.delijn.be/stops/406726"], ["https://data.delijn.be/stops/307735", "https://data.delijn.be/stops/307736"], ["https://data.delijn.be/stops/206642", "https://data.delijn.be/stops/207643"], ["https://data.delijn.be/stops/308209", "https://data.delijn.be/stops/308211"], ["https://data.delijn.be/stops/104021", "https://data.delijn.be/stops/107214"], ["https://data.delijn.be/stops/204916", "https://data.delijn.be/stops/204917"], ["https://data.delijn.be/stops/404215", "https://data.delijn.be/stops/404239"], ["https://data.delijn.be/stops/502613", "https://data.delijn.be/stops/507613"], ["https://data.delijn.be/stops/404743", "https://data.delijn.be/stops/404945"], ["https://data.delijn.be/stops/106277", "https://data.delijn.be/stops/109634"], ["https://data.delijn.be/stops/104669", "https://data.delijn.be/stops/104671"], ["https://data.delijn.be/stops/206574", "https://data.delijn.be/stops/207575"], ["https://data.delijn.be/stops/303148", "https://data.delijn.be/stops/306086"], ["https://data.delijn.be/stops/503656", "https://data.delijn.be/stops/503658"], ["https://data.delijn.be/stops/401979", "https://data.delijn.be/stops/401980"], ["https://data.delijn.be/stops/401855", "https://data.delijn.be/stops/406347"], ["https://data.delijn.be/stops/301814", "https://data.delijn.be/stops/305545"], ["https://data.delijn.be/stops/405406", "https://data.delijn.be/stops/405420"], ["https://data.delijn.be/stops/106497", "https://data.delijn.be/stops/107062"], ["https://data.delijn.be/stops/302497", "https://data.delijn.be/stops/302716"], ["https://data.delijn.be/stops/108824", "https://data.delijn.be/stops/108826"], ["https://data.delijn.be/stops/503645", "https://data.delijn.be/stops/504535"], ["https://data.delijn.be/stops/101958", "https://data.delijn.be/stops/109304"], ["https://data.delijn.be/stops/104757", "https://data.delijn.be/stops/108893"], ["https://data.delijn.be/stops/208489", "https://data.delijn.be/stops/209485"], ["https://data.delijn.be/stops/406404", "https://data.delijn.be/stops/409779"], ["https://data.delijn.be/stops/300926", "https://data.delijn.be/stops/300927"], ["https://data.delijn.be/stops/300981", "https://data.delijn.be/stops/301082"], ["https://data.delijn.be/stops/502531", "https://data.delijn.be/stops/502586"], ["https://data.delijn.be/stops/201185", "https://data.delijn.be/stops/203756"], ["https://data.delijn.be/stops/210036", "https://data.delijn.be/stops/211036"], ["https://data.delijn.be/stops/400790", "https://data.delijn.be/stops/400886"], ["https://data.delijn.be/stops/107636", "https://data.delijn.be/stops/107641"], ["https://data.delijn.be/stops/505708", "https://data.delijn.be/stops/509685"], ["https://data.delijn.be/stops/202200", "https://data.delijn.be/stops/203201"], ["https://data.delijn.be/stops/102420", "https://data.delijn.be/stops/105405"], ["https://data.delijn.be/stops/305183", "https://data.delijn.be/stops/305205"], ["https://data.delijn.be/stops/206188", "https://data.delijn.be/stops/207954"], ["https://data.delijn.be/stops/204501", "https://data.delijn.be/stops/205533"], ["https://data.delijn.be/stops/304240", "https://data.delijn.be/stops/304489"], ["https://data.delijn.be/stops/501355", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/500127", "https://data.delijn.be/stops/507476"], ["https://data.delijn.be/stops/503399", "https://data.delijn.be/stops/508400"], ["https://data.delijn.be/stops/301188", "https://data.delijn.be/stops/303625"], ["https://data.delijn.be/stops/505189", "https://data.delijn.be/stops/505369"], ["https://data.delijn.be/stops/504665", "https://data.delijn.be/stops/509371"], ["https://data.delijn.be/stops/503745", "https://data.delijn.be/stops/508747"], ["https://data.delijn.be/stops/404910", "https://data.delijn.be/stops/404911"], ["https://data.delijn.be/stops/402512", "https://data.delijn.be/stops/402515"], ["https://data.delijn.be/stops/503601", "https://data.delijn.be/stops/508604"], ["https://data.delijn.be/stops/206526", "https://data.delijn.be/stops/207525"], ["https://data.delijn.be/stops/203389", "https://data.delijn.be/stops/203436"], ["https://data.delijn.be/stops/407262", "https://data.delijn.be/stops/410255"], ["https://data.delijn.be/stops/400057", "https://data.delijn.be/stops/401976"], ["https://data.delijn.be/stops/501219", "https://data.delijn.be/stops/505355"], ["https://data.delijn.be/stops/101090", "https://data.delijn.be/stops/102125"], ["https://data.delijn.be/stops/307372", "https://data.delijn.be/stops/307395"], ["https://data.delijn.be/stops/400499", "https://data.delijn.be/stops/400908"], ["https://data.delijn.be/stops/300022", "https://data.delijn.be/stops/307000"], ["https://data.delijn.be/stops/504037", "https://data.delijn.be/stops/509042"], ["https://data.delijn.be/stops/101837", "https://data.delijn.be/stops/108234"], ["https://data.delijn.be/stops/505289", "https://data.delijn.be/stops/505960"], ["https://data.delijn.be/stops/507044", "https://data.delijn.be/stops/507081"], ["https://data.delijn.be/stops/102962", "https://data.delijn.be/stops/109253"], ["https://data.delijn.be/stops/404435", "https://data.delijn.be/stops/404440"], ["https://data.delijn.be/stops/408490", "https://data.delijn.be/stops/409162"], ["https://data.delijn.be/stops/201701", "https://data.delijn.be/stops/202560"], ["https://data.delijn.be/stops/109017", "https://data.delijn.be/stops/109049"], ["https://data.delijn.be/stops/403374", "https://data.delijn.be/stops/409296"], ["https://data.delijn.be/stops/206750", "https://data.delijn.be/stops/208473"], ["https://data.delijn.be/stops/403837", "https://data.delijn.be/stops/410114"], ["https://data.delijn.be/stops/301631", "https://data.delijn.be/stops/302117"], ["https://data.delijn.be/stops/102265", "https://data.delijn.be/stops/103095"], ["https://data.delijn.be/stops/209598", "https://data.delijn.be/stops/307335"], ["https://data.delijn.be/stops/207805", "https://data.delijn.be/stops/306731"], ["https://data.delijn.be/stops/407670", "https://data.delijn.be/stops/407671"], ["https://data.delijn.be/stops/501334", "https://data.delijn.be/stops/506266"], ["https://data.delijn.be/stops/204216", "https://data.delijn.be/stops/205217"], ["https://data.delijn.be/stops/105082", "https://data.delijn.be/stops/106830"], ["https://data.delijn.be/stops/203097", "https://data.delijn.be/stops/203098"], ["https://data.delijn.be/stops/207089", "https://data.delijn.be/stops/207090"], ["https://data.delijn.be/stops/103968", "https://data.delijn.be/stops/105763"], ["https://data.delijn.be/stops/206553", "https://data.delijn.be/stops/207486"], ["https://data.delijn.be/stops/405426", "https://data.delijn.be/stops/409302"], ["https://data.delijn.be/stops/200229", "https://data.delijn.be/stops/201172"], ["https://data.delijn.be/stops/404856", "https://data.delijn.be/stops/404857"], ["https://data.delijn.be/stops/105893", "https://data.delijn.be/stops/105896"], ["https://data.delijn.be/stops/300393", "https://data.delijn.be/stops/304635"], ["https://data.delijn.be/stops/206745", "https://data.delijn.be/stops/207711"], ["https://data.delijn.be/stops/508625", "https://data.delijn.be/stops/508632"], ["https://data.delijn.be/stops/303934", "https://data.delijn.be/stops/304575"], ["https://data.delijn.be/stops/304409", "https://data.delijn.be/stops/304415"], ["https://data.delijn.be/stops/204679", "https://data.delijn.be/stops/205615"], ["https://data.delijn.be/stops/304365", "https://data.delijn.be/stops/307373"], ["https://data.delijn.be/stops/300092", "https://data.delijn.be/stops/300093"], ["https://data.delijn.be/stops/402207", "https://data.delijn.be/stops/402499"], ["https://data.delijn.be/stops/403274", "https://data.delijn.be/stops/410336"], ["https://data.delijn.be/stops/402369", "https://data.delijn.be/stops/402612"], ["https://data.delijn.be/stops/101519", "https://data.delijn.be/stops/102407"], ["https://data.delijn.be/stops/504289", "https://data.delijn.be/stops/509283"], ["https://data.delijn.be/stops/200191", "https://data.delijn.be/stops/201190"], ["https://data.delijn.be/stops/410010", "https://data.delijn.be/stops/410277"], ["https://data.delijn.be/stops/203963", "https://data.delijn.be/stops/206270"], ["https://data.delijn.be/stops/407225", "https://data.delijn.be/stops/407488"], ["https://data.delijn.be/stops/108373", "https://data.delijn.be/stops/108462"], ["https://data.delijn.be/stops/502070", "https://data.delijn.be/stops/507070"], ["https://data.delijn.be/stops/203275", "https://data.delijn.be/stops/203423"], ["https://data.delijn.be/stops/503480", "https://data.delijn.be/stops/508480"], ["https://data.delijn.be/stops/306669", "https://data.delijn.be/stops/306671"], ["https://data.delijn.be/stops/304957", "https://data.delijn.be/stops/304973"], ["https://data.delijn.be/stops/304442", "https://data.delijn.be/stops/304443"], ["https://data.delijn.be/stops/504463", "https://data.delijn.be/stops/509462"], ["https://data.delijn.be/stops/102011", "https://data.delijn.be/stops/102012"], ["https://data.delijn.be/stops/505113", "https://data.delijn.be/stops/505301"], ["https://data.delijn.be/stops/504007", "https://data.delijn.be/stops/504424"], ["https://data.delijn.be/stops/208693", "https://data.delijn.be/stops/208724"], ["https://data.delijn.be/stops/302213", "https://data.delijn.be/stops/302248"], ["https://data.delijn.be/stops/405711", "https://data.delijn.be/stops/410143"], ["https://data.delijn.be/stops/106200", "https://data.delijn.be/stops/106201"], ["https://data.delijn.be/stops/404137", "https://data.delijn.be/stops/404179"], ["https://data.delijn.be/stops/301510", "https://data.delijn.be/stops/301527"], ["https://data.delijn.be/stops/301857", "https://data.delijn.be/stops/302051"], ["https://data.delijn.be/stops/103221", "https://data.delijn.be/stops/104571"], ["https://data.delijn.be/stops/401093", "https://data.delijn.be/stops/409815"], ["https://data.delijn.be/stops/508656", "https://data.delijn.be/stops/508748"], ["https://data.delijn.be/stops/103515", "https://data.delijn.be/stops/106015"], ["https://data.delijn.be/stops/502032", "https://data.delijn.be/stops/507661"], ["https://data.delijn.be/stops/301810", "https://data.delijn.be/stops/304684"], ["https://data.delijn.be/stops/204307", "https://data.delijn.be/stops/205309"], ["https://data.delijn.be/stops/211850", "https://data.delijn.be/stops/211855"], ["https://data.delijn.be/stops/306765", "https://data.delijn.be/stops/308816"], ["https://data.delijn.be/stops/405312", "https://data.delijn.be/stops/406395"], ["https://data.delijn.be/stops/501420", "https://data.delijn.be/stops/505528"], ["https://data.delijn.be/stops/202403", "https://data.delijn.be/stops/203402"], ["https://data.delijn.be/stops/504299", "https://data.delijn.be/stops/509861"], ["https://data.delijn.be/stops/503597", "https://data.delijn.be/stops/508593"], ["https://data.delijn.be/stops/304660", "https://data.delijn.be/stops/304661"], ["https://data.delijn.be/stops/501018", "https://data.delijn.be/stops/501534"], ["https://data.delijn.be/stops/308794", "https://data.delijn.be/stops/308796"], ["https://data.delijn.be/stops/103643", "https://data.delijn.be/stops/107182"], ["https://data.delijn.be/stops/501510", "https://data.delijn.be/stops/501532"], ["https://data.delijn.be/stops/402936", "https://data.delijn.be/stops/402938"], ["https://data.delijn.be/stops/504849", "https://data.delijn.be/stops/508742"], ["https://data.delijn.be/stops/503958", "https://data.delijn.be/stops/508959"], ["https://data.delijn.be/stops/300721", "https://data.delijn.be/stops/300738"], ["https://data.delijn.be/stops/202387", "https://data.delijn.be/stops/203447"], ["https://data.delijn.be/stops/506101", "https://data.delijn.be/stops/590331"], ["https://data.delijn.be/stops/204976", "https://data.delijn.be/stops/209248"], ["https://data.delijn.be/stops/201699", "https://data.delijn.be/stops/202781"], ["https://data.delijn.be/stops/202373", "https://data.delijn.be/stops/202374"], ["https://data.delijn.be/stops/108767", "https://data.delijn.be/stops/108777"], ["https://data.delijn.be/stops/304762", "https://data.delijn.be/stops/308699"], ["https://data.delijn.be/stops/101397", "https://data.delijn.be/stops/101553"], ["https://data.delijn.be/stops/505092", "https://data.delijn.be/stops/505310"], ["https://data.delijn.be/stops/301953", "https://data.delijn.be/stops/303227"], ["https://data.delijn.be/stops/208501", "https://data.delijn.be/stops/209480"], ["https://data.delijn.be/stops/304309", "https://data.delijn.be/stops/304310"], ["https://data.delijn.be/stops/408233", "https://data.delijn.be/stops/408248"], ["https://data.delijn.be/stops/209178", "https://data.delijn.be/stops/209179"], ["https://data.delijn.be/stops/201061", "https://data.delijn.be/stops/202133"], ["https://data.delijn.be/stops/406496", "https://data.delijn.be/stops/406497"], ["https://data.delijn.be/stops/202599", "https://data.delijn.be/stops/203126"], ["https://data.delijn.be/stops/406362", "https://data.delijn.be/stops/409203"], ["https://data.delijn.be/stops/302327", "https://data.delijn.be/stops/302343"], ["https://data.delijn.be/stops/501012", "https://data.delijn.be/stops/501714"], ["https://data.delijn.be/stops/303132", "https://data.delijn.be/stops/303135"], ["https://data.delijn.be/stops/202184", "https://data.delijn.be/stops/203184"], ["https://data.delijn.be/stops/505061", "https://data.delijn.be/stops/505652"], ["https://data.delijn.be/stops/104513", "https://data.delijn.be/stops/104515"], ["https://data.delijn.be/stops/103279", "https://data.delijn.be/stops/107400"], ["https://data.delijn.be/stops/304925", "https://data.delijn.be/stops/304927"], ["https://data.delijn.be/stops/406249", "https://data.delijn.be/stops/406256"], ["https://data.delijn.be/stops/508159", "https://data.delijn.be/stops/508265"], ["https://data.delijn.be/stops/208024", "https://data.delijn.be/stops/209011"], ["https://data.delijn.be/stops/101865", "https://data.delijn.be/stops/105895"], ["https://data.delijn.be/stops/503025", "https://data.delijn.be/stops/503678"], ["https://data.delijn.be/stops/408027", "https://data.delijn.be/stops/301841"], ["https://data.delijn.be/stops/404463", "https://data.delijn.be/stops/404464"], ["https://data.delijn.be/stops/403138", "https://data.delijn.be/stops/403666"], ["https://data.delijn.be/stops/301929", "https://data.delijn.be/stops/304492"], ["https://data.delijn.be/stops/305227", "https://data.delijn.be/stops/305230"], ["https://data.delijn.be/stops/404480", "https://data.delijn.be/stops/404481"], ["https://data.delijn.be/stops/408736", "https://data.delijn.be/stops/408737"], ["https://data.delijn.be/stops/506598", "https://data.delijn.be/stops/506609"], ["https://data.delijn.be/stops/300891", "https://data.delijn.be/stops/305928"], ["https://data.delijn.be/stops/104821", "https://data.delijn.be/stops/108452"], ["https://data.delijn.be/stops/200475", "https://data.delijn.be/stops/211855"], ["https://data.delijn.be/stops/201747", "https://data.delijn.be/stops/202157"], ["https://data.delijn.be/stops/107967", "https://data.delijn.be/stops/108428"], ["https://data.delijn.be/stops/104042", "https://data.delijn.be/stops/108372"], ["https://data.delijn.be/stops/503351", "https://data.delijn.be/stops/508375"], ["https://data.delijn.be/stops/307819", "https://data.delijn.be/stops/308755"], ["https://data.delijn.be/stops/504999", "https://data.delijn.be/stops/508061"], ["https://data.delijn.be/stops/206083", "https://data.delijn.be/stops/206084"], ["https://data.delijn.be/stops/304042", "https://data.delijn.be/stops/305835"], ["https://data.delijn.be/stops/203503", "https://data.delijn.be/stops/203504"], ["https://data.delijn.be/stops/406157", "https://data.delijn.be/stops/406225"], ["https://data.delijn.be/stops/303960", "https://data.delijn.be/stops/304177"], ["https://data.delijn.be/stops/307939", "https://data.delijn.be/stops/308774"], ["https://data.delijn.be/stops/209074", "https://data.delijn.be/stops/209075"], ["https://data.delijn.be/stops/306188", "https://data.delijn.be/stops/306294"], ["https://data.delijn.be/stops/406248", "https://data.delijn.be/stops/406256"], ["https://data.delijn.be/stops/406294", "https://data.delijn.be/stops/410359"], ["https://data.delijn.be/stops/404667", "https://data.delijn.be/stops/410133"], ["https://data.delijn.be/stops/407154", "https://data.delijn.be/stops/409514"], ["https://data.delijn.be/stops/400710", "https://data.delijn.be/stops/400711"], ["https://data.delijn.be/stops/205370", "https://data.delijn.be/stops/205760"], ["https://data.delijn.be/stops/207980", "https://data.delijn.be/stops/307768"], ["https://data.delijn.be/stops/201872", "https://data.delijn.be/stops/203425"], ["https://data.delijn.be/stops/301282", "https://data.delijn.be/stops/301906"], ["https://data.delijn.be/stops/105419", "https://data.delijn.be/stops/105426"], ["https://data.delijn.be/stops/403295", "https://data.delijn.be/stops/409173"], ["https://data.delijn.be/stops/502653", "https://data.delijn.be/stops/502665"], ["https://data.delijn.be/stops/204196", "https://data.delijn.be/stops/204197"], ["https://data.delijn.be/stops/504153", "https://data.delijn.be/stops/504988"], ["https://data.delijn.be/stops/507087", "https://data.delijn.be/stops/507732"], ["https://data.delijn.be/stops/206785", "https://data.delijn.be/stops/301428"], ["https://data.delijn.be/stops/502126", "https://data.delijn.be/stops/502167"], ["https://data.delijn.be/stops/208768", "https://data.delijn.be/stops/209780"], ["https://data.delijn.be/stops/500136", "https://data.delijn.be/stops/590333"], ["https://data.delijn.be/stops/105266", "https://data.delijn.be/stops/105349"], ["https://data.delijn.be/stops/408343", "https://data.delijn.be/stops/408345"], ["https://data.delijn.be/stops/407234", "https://data.delijn.be/stops/407506"], ["https://data.delijn.be/stops/102979", "https://data.delijn.be/stops/109523"], ["https://data.delijn.be/stops/106674", "https://data.delijn.be/stops/109672"], ["https://data.delijn.be/stops/104892", "https://data.delijn.be/stops/109311"], ["https://data.delijn.be/stops/307389", "https://data.delijn.be/stops/307390"], ["https://data.delijn.be/stops/405453", "https://data.delijn.be/stops/405655"], ["https://data.delijn.be/stops/304330", "https://data.delijn.be/stops/304339"], ["https://data.delijn.be/stops/205064", "https://data.delijn.be/stops/205340"], ["https://data.delijn.be/stops/405808", "https://data.delijn.be/stops/409696"], ["https://data.delijn.be/stops/504635", "https://data.delijn.be/stops/505363"], ["https://data.delijn.be/stops/404116", "https://data.delijn.be/stops/408554"], ["https://data.delijn.be/stops/407201", "https://data.delijn.be/stops/407212"], ["https://data.delijn.be/stops/303096", "https://data.delijn.be/stops/303999"], ["https://data.delijn.be/stops/201696", "https://data.delijn.be/stops/202390"], ["https://data.delijn.be/stops/303567", "https://data.delijn.be/stops/303568"], ["https://data.delijn.be/stops/409701", "https://data.delijn.be/stops/409704"], ["https://data.delijn.be/stops/308649", "https://data.delijn.be/stops/308684"], ["https://data.delijn.be/stops/302318", "https://data.delijn.be/stops/308784"], ["https://data.delijn.be/stops/107456", "https://data.delijn.be/stops/107461"], ["https://data.delijn.be/stops/300365", "https://data.delijn.be/stops/307726"], ["https://data.delijn.be/stops/106188", "https://data.delijn.be/stops/106190"], ["https://data.delijn.be/stops/204397", "https://data.delijn.be/stops/205397"], ["https://data.delijn.be/stops/202104", "https://data.delijn.be/stops/202105"], ["https://data.delijn.be/stops/206430", "https://data.delijn.be/stops/209690"], ["https://data.delijn.be/stops/300106", "https://data.delijn.be/stops/307730"], ["https://data.delijn.be/stops/500998", "https://data.delijn.be/stops/504408"], ["https://data.delijn.be/stops/200947", "https://data.delijn.be/stops/208857"], ["https://data.delijn.be/stops/401111", "https://data.delijn.be/stops/401115"], ["https://data.delijn.be/stops/102998", "https://data.delijn.be/stops/107413"], ["https://data.delijn.be/stops/501742", "https://data.delijn.be/stops/504498"], ["https://data.delijn.be/stops/103013", "https://data.delijn.be/stops/109374"], ["https://data.delijn.be/stops/105618", "https://data.delijn.be/stops/105652"], ["https://data.delijn.be/stops/105596", "https://data.delijn.be/stops/106360"], ["https://data.delijn.be/stops/204718", "https://data.delijn.be/stops/205719"], ["https://data.delijn.be/stops/101002", "https://data.delijn.be/stops/107670"], ["https://data.delijn.be/stops/503755", "https://data.delijn.be/stops/503766"], ["https://data.delijn.be/stops/206311", "https://data.delijn.be/stops/207311"], ["https://data.delijn.be/stops/207460", "https://data.delijn.be/stops/207646"], ["https://data.delijn.be/stops/301862", "https://data.delijn.be/stops/302079"], ["https://data.delijn.be/stops/208268", "https://data.delijn.be/stops/209268"], ["https://data.delijn.be/stops/307363", "https://data.delijn.be/stops/307364"], ["https://data.delijn.be/stops/407994", "https://data.delijn.be/stops/408153"], ["https://data.delijn.be/stops/403220", "https://data.delijn.be/stops/403221"], ["https://data.delijn.be/stops/503347", "https://data.delijn.be/stops/510025"], ["https://data.delijn.be/stops/203787", "https://data.delijn.be/stops/208642"], ["https://data.delijn.be/stops/300194", "https://data.delijn.be/stops/300196"], ["https://data.delijn.be/stops/506299", "https://data.delijn.be/stops/506480"], ["https://data.delijn.be/stops/105933", "https://data.delijn.be/stops/105934"], ["https://data.delijn.be/stops/105926", "https://data.delijn.be/stops/106962"], ["https://data.delijn.be/stops/105669", "https://data.delijn.be/stops/105676"], ["https://data.delijn.be/stops/402712", "https://data.delijn.be/stops/402737"], ["https://data.delijn.be/stops/506133", "https://data.delijn.be/stops/506140"], ["https://data.delijn.be/stops/304687", "https://data.delijn.be/stops/307162"], ["https://data.delijn.be/stops/300424", "https://data.delijn.be/stops/308053"], ["https://data.delijn.be/stops/202895", "https://data.delijn.be/stops/203895"], ["https://data.delijn.be/stops/204564", "https://data.delijn.be/stops/205564"], ["https://data.delijn.be/stops/405575", "https://data.delijn.be/stops/405576"], ["https://data.delijn.be/stops/109297", "https://data.delijn.be/stops/109299"], ["https://data.delijn.be/stops/207597", "https://data.delijn.be/stops/209666"], ["https://data.delijn.be/stops/401432", "https://data.delijn.be/stops/401496"], ["https://data.delijn.be/stops/407109", "https://data.delijn.be/stops/408809"], ["https://data.delijn.be/stops/107879", "https://data.delijn.be/stops/107881"], ["https://data.delijn.be/stops/101468", "https://data.delijn.be/stops/101470"], ["https://data.delijn.be/stops/504325", "https://data.delijn.be/stops/509335"], ["https://data.delijn.be/stops/507817", "https://data.delijn.be/stops/508360"], ["https://data.delijn.be/stops/400922", "https://data.delijn.be/stops/400947"], ["https://data.delijn.be/stops/303435", "https://data.delijn.be/stops/307951"], ["https://data.delijn.be/stops/407063", "https://data.delijn.be/stops/407065"], ["https://data.delijn.be/stops/201673", "https://data.delijn.be/stops/203504"], ["https://data.delijn.be/stops/206199", "https://data.delijn.be/stops/207238"], ["https://data.delijn.be/stops/103694", "https://data.delijn.be/stops/103700"], ["https://data.delijn.be/stops/307213", "https://data.delijn.be/stops/307473"], ["https://data.delijn.be/stops/404642", "https://data.delijn.be/stops/404993"], ["https://data.delijn.be/stops/503379", "https://data.delijn.be/stops/503426"], ["https://data.delijn.be/stops/207469", "https://data.delijn.be/stops/207470"], ["https://data.delijn.be/stops/101725", "https://data.delijn.be/stops/103378"], ["https://data.delijn.be/stops/109352", "https://data.delijn.be/stops/109353"], ["https://data.delijn.be/stops/209329", "https://data.delijn.be/stops/211004"], ["https://data.delijn.be/stops/300006", "https://data.delijn.be/stops/300009"], ["https://data.delijn.be/stops/204521", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/104857", "https://data.delijn.be/stops/106756"], ["https://data.delijn.be/stops/505611", "https://data.delijn.be/stops/505615"], ["https://data.delijn.be/stops/508561", "https://data.delijn.be/stops/509752"], ["https://data.delijn.be/stops/106962", "https://data.delijn.be/stops/109508"], ["https://data.delijn.be/stops/105191", "https://data.delijn.be/stops/108883"], ["https://data.delijn.be/stops/502653", "https://data.delijn.be/stops/507354"], ["https://data.delijn.be/stops/408497", "https://data.delijn.be/stops/408611"], ["https://data.delijn.be/stops/407188", "https://data.delijn.be/stops/407471"], ["https://data.delijn.be/stops/101299", "https://data.delijn.be/stops/107457"], ["https://data.delijn.be/stops/101343", "https://data.delijn.be/stops/102172"], ["https://data.delijn.be/stops/504122", "https://data.delijn.be/stops/509127"], ["https://data.delijn.be/stops/106564", "https://data.delijn.be/stops/106565"], ["https://data.delijn.be/stops/209339", "https://data.delijn.be/stops/219007"], ["https://data.delijn.be/stops/503950", "https://data.delijn.be/stops/504997"], ["https://data.delijn.be/stops/509079", "https://data.delijn.be/stops/509082"], ["https://data.delijn.be/stops/407668", "https://data.delijn.be/stops/409802"], ["https://data.delijn.be/stops/501095", "https://data.delijn.be/stops/501244"], ["https://data.delijn.be/stops/306911", "https://data.delijn.be/stops/308724"], ["https://data.delijn.be/stops/504342", "https://data.delijn.be/stops/504345"], ["https://data.delijn.be/stops/403441", "https://data.delijn.be/stops/410280"], ["https://data.delijn.be/stops/506073", "https://data.delijn.be/stops/506075"], ["https://data.delijn.be/stops/301967", "https://data.delijn.be/stops/301986"], ["https://data.delijn.be/stops/206148", "https://data.delijn.be/stops/206149"], ["https://data.delijn.be/stops/106301", "https://data.delijn.be/stops/109909"], ["https://data.delijn.be/stops/104495", "https://data.delijn.be/stops/107489"], ["https://data.delijn.be/stops/200607", "https://data.delijn.be/stops/509876"], ["https://data.delijn.be/stops/207900", "https://data.delijn.be/stops/306077"], ["https://data.delijn.be/stops/205336", "https://data.delijn.be/stops/205622"], ["https://data.delijn.be/stops/305594", "https://data.delijn.be/stops/305600"], ["https://data.delijn.be/stops/408824", "https://data.delijn.be/stops/408825"], ["https://data.delijn.be/stops/301821", "https://data.delijn.be/stops/307889"], ["https://data.delijn.be/stops/302133", "https://data.delijn.be/stops/308106"], ["https://data.delijn.be/stops/202981", "https://data.delijn.be/stops/202982"], ["https://data.delijn.be/stops/503883", "https://data.delijn.be/stops/504998"], ["https://data.delijn.be/stops/207923", "https://data.delijn.be/stops/207924"], ["https://data.delijn.be/stops/202588", "https://data.delijn.be/stops/203432"], ["https://data.delijn.be/stops/403906", "https://data.delijn.be/stops/403907"], ["https://data.delijn.be/stops/304519", "https://data.delijn.be/stops/307467"], ["https://data.delijn.be/stops/202353", "https://data.delijn.be/stops/211046"], ["https://data.delijn.be/stops/504254", "https://data.delijn.be/stops/505985"], ["https://data.delijn.be/stops/405442", "https://data.delijn.be/stops/408671"], ["https://data.delijn.be/stops/404114", "https://data.delijn.be/stops/404115"], ["https://data.delijn.be/stops/200984", "https://data.delijn.be/stops/201335"], ["https://data.delijn.be/stops/410137", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/404081", "https://data.delijn.be/stops/404087"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/305343"], ["https://data.delijn.be/stops/501042", "https://data.delijn.be/stops/506042"], ["https://data.delijn.be/stops/206348", "https://data.delijn.be/stops/207374"], ["https://data.delijn.be/stops/301952", "https://data.delijn.be/stops/306970"], ["https://data.delijn.be/stops/301648", "https://data.delijn.be/stops/301891"], ["https://data.delijn.be/stops/101459", "https://data.delijn.be/stops/108223"], ["https://data.delijn.be/stops/200098", "https://data.delijn.be/stops/201142"], ["https://data.delijn.be/stops/304070", "https://data.delijn.be/stops/304115"], ["https://data.delijn.be/stops/101586", "https://data.delijn.be/stops/105446"], ["https://data.delijn.be/stops/300015", "https://data.delijn.be/stops/304563"], ["https://data.delijn.be/stops/503300", "https://data.delijn.be/stops/508306"], ["https://data.delijn.be/stops/306066", "https://data.delijn.be/stops/307201"], ["https://data.delijn.be/stops/505696", "https://data.delijn.be/stops/509880"], ["https://data.delijn.be/stops/202262", "https://data.delijn.be/stops/210006"], ["https://data.delijn.be/stops/204585", "https://data.delijn.be/stops/204592"], ["https://data.delijn.be/stops/407337", "https://data.delijn.be/stops/409788"], ["https://data.delijn.be/stops/408720", "https://data.delijn.be/stops/408721"], ["https://data.delijn.be/stops/505316", "https://data.delijn.be/stops/508111"], ["https://data.delijn.be/stops/301271", "https://data.delijn.be/stops/301272"], ["https://data.delijn.be/stops/404318", "https://data.delijn.be/stops/406816"], ["https://data.delijn.be/stops/206005", "https://data.delijn.be/stops/207005"], ["https://data.delijn.be/stops/204547", "https://data.delijn.be/stops/205292"], ["https://data.delijn.be/stops/202910", "https://data.delijn.be/stops/202911"], ["https://data.delijn.be/stops/302172", "https://data.delijn.be/stops/305092"], ["https://data.delijn.be/stops/300659", "https://data.delijn.be/stops/302471"], ["https://data.delijn.be/stops/402326", "https://data.delijn.be/stops/402376"], ["https://data.delijn.be/stops/107789", "https://data.delijn.be/stops/107791"], ["https://data.delijn.be/stops/208572", "https://data.delijn.be/stops/209573"], ["https://data.delijn.be/stops/209678", "https://data.delijn.be/stops/209793"], ["https://data.delijn.be/stops/503638", "https://data.delijn.be/stops/503639"], ["https://data.delijn.be/stops/302145", "https://data.delijn.be/stops/307082"], ["https://data.delijn.be/stops/300344", "https://data.delijn.be/stops/300358"], ["https://data.delijn.be/stops/104561", "https://data.delijn.be/stops/104563"], ["https://data.delijn.be/stops/401469", "https://data.delijn.be/stops/401890"], ["https://data.delijn.be/stops/207755", "https://data.delijn.be/stops/207772"], ["https://data.delijn.be/stops/204382", "https://data.delijn.be/stops/205382"], ["https://data.delijn.be/stops/403732", "https://data.delijn.be/stops/403814"], ["https://data.delijn.be/stops/207023", "https://data.delijn.be/stops/207075"], ["https://data.delijn.be/stops/209224", "https://data.delijn.be/stops/219018"], ["https://data.delijn.be/stops/403529", "https://data.delijn.be/stops/403530"], ["https://data.delijn.be/stops/507557", "https://data.delijn.be/stops/507558"], ["https://data.delijn.be/stops/401124", "https://data.delijn.be/stops/406549"], ["https://data.delijn.be/stops/403972", "https://data.delijn.be/stops/403973"], ["https://data.delijn.be/stops/408077", "https://data.delijn.be/stops/408081"], ["https://data.delijn.be/stops/101907", "https://data.delijn.be/stops/107925"], ["https://data.delijn.be/stops/209473", "https://data.delijn.be/stops/209498"], ["https://data.delijn.be/stops/206900", "https://data.delijn.be/stops/206904"], ["https://data.delijn.be/stops/303475", "https://data.delijn.be/stops/303498"], ["https://data.delijn.be/stops/302008", "https://data.delijn.be/stops/302033"], ["https://data.delijn.be/stops/203987", "https://data.delijn.be/stops/203988"], ["https://data.delijn.be/stops/500930", "https://data.delijn.be/stops/500931"], ["https://data.delijn.be/stops/202056", "https://data.delijn.be/stops/203055"], ["https://data.delijn.be/stops/403291", "https://data.delijn.be/stops/409334"], ["https://data.delijn.be/stops/400730", "https://data.delijn.be/stops/405476"], ["https://data.delijn.be/stops/303737", "https://data.delijn.be/stops/303748"], ["https://data.delijn.be/stops/403909", "https://data.delijn.be/stops/404073"], ["https://data.delijn.be/stops/108566", "https://data.delijn.be/stops/108991"], ["https://data.delijn.be/stops/303725", "https://data.delijn.be/stops/303732"], ["https://data.delijn.be/stops/301347", "https://data.delijn.be/stops/306132"], ["https://data.delijn.be/stops/302846", "https://data.delijn.be/stops/303324"], ["https://data.delijn.be/stops/408577", "https://data.delijn.be/stops/408636"], ["https://data.delijn.be/stops/505591", "https://data.delijn.be/stops/505635"], ["https://data.delijn.be/stops/202760", "https://data.delijn.be/stops/203752"], ["https://data.delijn.be/stops/501394", "https://data.delijn.be/stops/506394"], ["https://data.delijn.be/stops/401118", "https://data.delijn.be/stops/401138"], ["https://data.delijn.be/stops/304718", "https://data.delijn.be/stops/305554"], ["https://data.delijn.be/stops/303590", "https://data.delijn.be/stops/308709"], ["https://data.delijn.be/stops/104813", "https://data.delijn.be/stops/105164"], ["https://data.delijn.be/stops/208385", "https://data.delijn.be/stops/208386"], ["https://data.delijn.be/stops/502212", "https://data.delijn.be/stops/505244"], ["https://data.delijn.be/stops/302167", "https://data.delijn.be/stops/307805"], ["https://data.delijn.be/stops/201830", "https://data.delijn.be/stops/201844"], ["https://data.delijn.be/stops/304390", "https://data.delijn.be/stops/304405"], ["https://data.delijn.be/stops/303626", "https://data.delijn.be/stops/307219"], ["https://data.delijn.be/stops/301675", "https://data.delijn.be/stops/301690"], ["https://data.delijn.be/stops/104898", "https://data.delijn.be/stops/108959"], ["https://data.delijn.be/stops/109849", "https://data.delijn.be/stops/109851"], ["https://data.delijn.be/stops/400829", "https://data.delijn.be/stops/400882"], ["https://data.delijn.be/stops/208574", "https://data.delijn.be/stops/307310"], ["https://data.delijn.be/stops/104596", "https://data.delijn.be/stops/109749"], ["https://data.delijn.be/stops/301275", "https://data.delijn.be/stops/301276"], ["https://data.delijn.be/stops/300417", "https://data.delijn.be/stops/300419"], ["https://data.delijn.be/stops/406598", "https://data.delijn.be/stops/406609"], ["https://data.delijn.be/stops/304763", "https://data.delijn.be/stops/304765"], ["https://data.delijn.be/stops/103545", "https://data.delijn.be/stops/104655"], ["https://data.delijn.be/stops/302898", "https://data.delijn.be/stops/306095"], ["https://data.delijn.be/stops/407842", "https://data.delijn.be/stops/407844"], ["https://data.delijn.be/stops/206630", "https://data.delijn.be/stops/207629"], ["https://data.delijn.be/stops/206819", "https://data.delijn.be/stops/206821"], ["https://data.delijn.be/stops/300986", "https://data.delijn.be/stops/306049"], ["https://data.delijn.be/stops/504855", "https://data.delijn.be/stops/509048"], ["https://data.delijn.be/stops/308355", "https://data.delijn.be/stops/308356"], ["https://data.delijn.be/stops/106629", "https://data.delijn.be/stops/106632"], ["https://data.delijn.be/stops/102884", "https://data.delijn.be/stops/105305"], ["https://data.delijn.be/stops/200104", "https://data.delijn.be/stops/201363"], ["https://data.delijn.be/stops/200355", "https://data.delijn.be/stops/201387"], ["https://data.delijn.be/stops/405169", "https://data.delijn.be/stops/405171"], ["https://data.delijn.be/stops/405445", "https://data.delijn.be/stops/408785"], ["https://data.delijn.be/stops/505744", "https://data.delijn.be/stops/507516"], ["https://data.delijn.be/stops/104271", "https://data.delijn.be/stops/109747"], ["https://data.delijn.be/stops/202676", "https://data.delijn.be/stops/202677"], ["https://data.delijn.be/stops/303653", "https://data.delijn.be/stops/308526"], ["https://data.delijn.be/stops/508627", "https://data.delijn.be/stops/590008"], ["https://data.delijn.be/stops/200172", "https://data.delijn.be/stops/201515"], ["https://data.delijn.be/stops/300365", "https://data.delijn.be/stops/300366"], ["https://data.delijn.be/stops/503981", "https://data.delijn.be/stops/508981"], ["https://data.delijn.be/stops/504417", "https://data.delijn.be/stops/505182"], ["https://data.delijn.be/stops/300173", "https://data.delijn.be/stops/301221"], ["https://data.delijn.be/stops/107066", "https://data.delijn.be/stops/403860"], ["https://data.delijn.be/stops/406465", "https://data.delijn.be/stops/406495"], ["https://data.delijn.be/stops/103583", "https://data.delijn.be/stops/108916"], ["https://data.delijn.be/stops/401125", "https://data.delijn.be/stops/401149"], ["https://data.delijn.be/stops/200217", "https://data.delijn.be/stops/201212"], ["https://data.delijn.be/stops/301557", "https://data.delijn.be/stops/308089"], ["https://data.delijn.be/stops/406814", "https://data.delijn.be/stops/410346"], ["https://data.delijn.be/stops/410128", "https://data.delijn.be/stops/410289"], ["https://data.delijn.be/stops/301129", "https://data.delijn.be/stops/302871"], ["https://data.delijn.be/stops/101170", "https://data.delijn.be/stops/102225"], ["https://data.delijn.be/stops/300328", "https://data.delijn.be/stops/300335"], ["https://data.delijn.be/stops/404920", "https://data.delijn.be/stops/404927"], ["https://data.delijn.be/stops/503816", "https://data.delijn.be/stops/508816"], ["https://data.delijn.be/stops/206043", "https://data.delijn.be/stops/207540"], ["https://data.delijn.be/stops/404100", "https://data.delijn.be/stops/404244"], ["https://data.delijn.be/stops/302801", "https://data.delijn.be/stops/306561"], ["https://data.delijn.be/stops/400985", "https://data.delijn.be/stops/407191"], ["https://data.delijn.be/stops/300972", "https://data.delijn.be/stops/307853"], ["https://data.delijn.be/stops/508735", "https://data.delijn.be/stops/509955"], ["https://data.delijn.be/stops/402006", "https://data.delijn.be/stops/405231"], ["https://data.delijn.be/stops/506440", "https://data.delijn.be/stops/506443"], ["https://data.delijn.be/stops/503135", "https://data.delijn.be/stops/508120"], ["https://data.delijn.be/stops/202427", "https://data.delijn.be/stops/203463"], ["https://data.delijn.be/stops/101783", "https://data.delijn.be/stops/107873"], ["https://data.delijn.be/stops/507380", "https://data.delijn.be/stops/507581"], ["https://data.delijn.be/stops/102397", "https://data.delijn.be/stops/102421"], ["https://data.delijn.be/stops/304990", "https://data.delijn.be/stops/305008"], ["https://data.delijn.be/stops/400908", "https://data.delijn.be/stops/407401"], ["https://data.delijn.be/stops/404683", "https://data.delijn.be/stops/404686"], ["https://data.delijn.be/stops/106134", "https://data.delijn.be/stops/106181"], ["https://data.delijn.be/stops/403787", "https://data.delijn.be/stops/403789"], ["https://data.delijn.be/stops/108651", "https://data.delijn.be/stops/302906"], ["https://data.delijn.be/stops/206453", "https://data.delijn.be/stops/206455"], ["https://data.delijn.be/stops/304252", "https://data.delijn.be/stops/304287"], ["https://data.delijn.be/stops/409364", "https://data.delijn.be/stops/409365"], ["https://data.delijn.be/stops/101379", "https://data.delijn.be/stops/108693"], ["https://data.delijn.be/stops/200643", "https://data.delijn.be/stops/201603"], ["https://data.delijn.be/stops/408334", "https://data.delijn.be/stops/410158"], ["https://data.delijn.be/stops/407747", "https://data.delijn.be/stops/409793"], ["https://data.delijn.be/stops/205147", "https://data.delijn.be/stops/209912"], ["https://data.delijn.be/stops/504303", "https://data.delijn.be/stops/507941"], ["https://data.delijn.be/stops/206804", "https://data.delijn.be/stops/207804"], ["https://data.delijn.be/stops/101507", "https://data.delijn.be/stops/109076"], ["https://data.delijn.be/stops/103651", "https://data.delijn.be/stops/104406"], ["https://data.delijn.be/stops/302311", "https://data.delijn.be/stops/304049"], ["https://data.delijn.be/stops/504349", "https://data.delijn.be/stops/504721"], ["https://data.delijn.be/stops/301219", "https://data.delijn.be/stops/306716"], ["https://data.delijn.be/stops/201930", "https://data.delijn.be/stops/203472"], ["https://data.delijn.be/stops/407491", "https://data.delijn.be/stops/408614"], ["https://data.delijn.be/stops/505383", "https://data.delijn.be/stops/508088"], ["https://data.delijn.be/stops/301725", "https://data.delijn.be/stops/301726"], ["https://data.delijn.be/stops/406628", "https://data.delijn.be/stops/406643"], ["https://data.delijn.be/stops/404918", "https://data.delijn.be/stops/404922"], ["https://data.delijn.be/stops/409580", "https://data.delijn.be/stops/409588"], ["https://data.delijn.be/stops/404341", "https://data.delijn.be/stops/404345"], ["https://data.delijn.be/stops/302080", "https://data.delijn.be/stops/302083"], ["https://data.delijn.be/stops/301412", "https://data.delijn.be/stops/301419"], ["https://data.delijn.be/stops/104405", "https://data.delijn.be/stops/104408"], ["https://data.delijn.be/stops/200753", "https://data.delijn.be/stops/201728"], ["https://data.delijn.be/stops/204367", "https://data.delijn.be/stops/204368"], ["https://data.delijn.be/stops/102286", "https://data.delijn.be/stops/103317"], ["https://data.delijn.be/stops/401399", "https://data.delijn.be/stops/307795"], ["https://data.delijn.be/stops/102856", "https://data.delijn.be/stops/204623"], ["https://data.delijn.be/stops/102532", "https://data.delijn.be/stops/405077"], ["https://data.delijn.be/stops/308414", "https://data.delijn.be/stops/308425"], ["https://data.delijn.be/stops/200676", "https://data.delijn.be/stops/210082"], ["https://data.delijn.be/stops/101255", "https://data.delijn.be/stops/103946"], ["https://data.delijn.be/stops/409285", "https://data.delijn.be/stops/410067"], ["https://data.delijn.be/stops/205977", "https://data.delijn.be/stops/205978"], ["https://data.delijn.be/stops/108242", "https://data.delijn.be/stops/108246"], ["https://data.delijn.be/stops/504114", "https://data.delijn.be/stops/509272"], ["https://data.delijn.be/stops/303837", "https://data.delijn.be/stops/303962"], ["https://data.delijn.be/stops/505912", "https://data.delijn.be/stops/509272"], ["https://data.delijn.be/stops/206100", "https://data.delijn.be/stops/207932"], ["https://data.delijn.be/stops/507420", "https://data.delijn.be/stops/507434"], ["https://data.delijn.be/stops/208607", "https://data.delijn.be/stops/208615"], ["https://data.delijn.be/stops/504404", "https://data.delijn.be/stops/509407"], ["https://data.delijn.be/stops/304396", "https://data.delijn.be/stops/308056"], ["https://data.delijn.be/stops/301129", "https://data.delijn.be/stops/307691"], ["https://data.delijn.be/stops/205182", "https://data.delijn.be/stops/205355"], ["https://data.delijn.be/stops/207774", "https://data.delijn.be/stops/208187"], ["https://data.delijn.be/stops/302683", "https://data.delijn.be/stops/302691"], ["https://data.delijn.be/stops/400934", "https://data.delijn.be/stops/400937"], ["https://data.delijn.be/stops/306729", "https://data.delijn.be/stops/306732"], ["https://data.delijn.be/stops/400041", "https://data.delijn.be/stops/400382"], ["https://data.delijn.be/stops/301039", "https://data.delijn.be/stops/301042"], ["https://data.delijn.be/stops/305402", "https://data.delijn.be/stops/305926"], ["https://data.delijn.be/stops/403198", "https://data.delijn.be/stops/403386"], ["https://data.delijn.be/stops/204082", "https://data.delijn.be/stops/204088"], ["https://data.delijn.be/stops/404163", "https://data.delijn.be/stops/404183"], ["https://data.delijn.be/stops/201474", "https://data.delijn.be/stops/210060"], ["https://data.delijn.be/stops/201698", "https://data.delijn.be/stops/201705"], ["https://data.delijn.be/stops/103474", "https://data.delijn.be/stops/103476"], ["https://data.delijn.be/stops/305384", "https://data.delijn.be/stops/305389"], ["https://data.delijn.be/stops/103721", "https://data.delijn.be/stops/306590"], ["https://data.delijn.be/stops/202631", "https://data.delijn.be/stops/203632"], ["https://data.delijn.be/stops/211026", "https://data.delijn.be/stops/218936"], ["https://data.delijn.be/stops/108988", "https://data.delijn.be/stops/109689"], ["https://data.delijn.be/stops/503777", "https://data.delijn.be/stops/508788"], ["https://data.delijn.be/stops/501241", "https://data.delijn.be/stops/506241"], ["https://data.delijn.be/stops/406273", "https://data.delijn.be/stops/406279"], ["https://data.delijn.be/stops/102179", "https://data.delijn.be/stops/109050"], ["https://data.delijn.be/stops/109143", "https://data.delijn.be/stops/109152"], ["https://data.delijn.be/stops/103097", "https://data.delijn.be/stops/103098"], ["https://data.delijn.be/stops/410147", "https://data.delijn.be/stops/410352"], ["https://data.delijn.be/stops/301110", "https://data.delijn.be/stops/306313"], ["https://data.delijn.be/stops/204290", "https://data.delijn.be/stops/205546"], ["https://data.delijn.be/stops/305282", "https://data.delijn.be/stops/305292"], ["https://data.delijn.be/stops/406452", "https://data.delijn.be/stops/406453"], ["https://data.delijn.be/stops/105824", "https://data.delijn.be/stops/109516"], ["https://data.delijn.be/stops/204344", "https://data.delijn.be/stops/204345"], ["https://data.delijn.be/stops/404464", "https://data.delijn.be/stops/406527"], ["https://data.delijn.be/stops/208614", "https://data.delijn.be/stops/209608"], ["https://data.delijn.be/stops/206812", "https://data.delijn.be/stops/207287"], ["https://data.delijn.be/stops/503644", "https://data.delijn.be/stops/504873"], ["https://data.delijn.be/stops/307243", "https://data.delijn.be/stops/307251"], ["https://data.delijn.be/stops/207375", "https://data.delijn.be/stops/207727"], ["https://data.delijn.be/stops/405035", "https://data.delijn.be/stops/405046"], ["https://data.delijn.be/stops/401518", "https://data.delijn.be/stops/401530"], ["https://data.delijn.be/stops/405833", "https://data.delijn.be/stops/405889"], ["https://data.delijn.be/stops/504246", "https://data.delijn.be/stops/509248"], ["https://data.delijn.be/stops/302297", "https://data.delijn.be/stops/303295"], ["https://data.delijn.be/stops/406729", "https://data.delijn.be/stops/407301"], ["https://data.delijn.be/stops/107560", "https://data.delijn.be/stops/109848"], ["https://data.delijn.be/stops/406694", "https://data.delijn.be/stops/409760"], ["https://data.delijn.be/stops/102493", "https://data.delijn.be/stops/400029"], ["https://data.delijn.be/stops/206197", "https://data.delijn.be/stops/206856"], ["https://data.delijn.be/stops/202183", "https://data.delijn.be/stops/204598"], ["https://data.delijn.be/stops/401511", "https://data.delijn.be/stops/402832"], ["https://data.delijn.be/stops/206610", "https://data.delijn.be/stops/206973"], ["https://data.delijn.be/stops/505015", "https://data.delijn.be/stops/507362"], ["https://data.delijn.be/stops/209203", "https://data.delijn.be/stops/209781"], ["https://data.delijn.be/stops/109675", "https://data.delijn.be/stops/408450"], ["https://data.delijn.be/stops/403598", "https://data.delijn.be/stops/407338"], ["https://data.delijn.be/stops/301489", "https://data.delijn.be/stops/308117"], ["https://data.delijn.be/stops/202100", "https://data.delijn.be/stops/202257"], ["https://data.delijn.be/stops/407031", "https://data.delijn.be/stops/409203"], ["https://data.delijn.be/stops/302464", "https://data.delijn.be/stops/302486"], ["https://data.delijn.be/stops/303084", "https://data.delijn.be/stops/303101"], ["https://data.delijn.be/stops/108359", "https://data.delijn.be/stops/108501"], ["https://data.delijn.be/stops/208287", "https://data.delijn.be/stops/208289"], ["https://data.delijn.be/stops/202219", "https://data.delijn.be/stops/202220"], ["https://data.delijn.be/stops/204214", "https://data.delijn.be/stops/204215"], ["https://data.delijn.be/stops/106628", "https://data.delijn.be/stops/106671"], ["https://data.delijn.be/stops/205972", "https://data.delijn.be/stops/216003"], ["https://data.delijn.be/stops/200076", "https://data.delijn.be/stops/202350"], ["https://data.delijn.be/stops/203027", "https://data.delijn.be/stops/203349"], ["https://data.delijn.be/stops/505382", "https://data.delijn.be/stops/508097"], ["https://data.delijn.be/stops/401092", "https://data.delijn.be/stops/409815"], ["https://data.delijn.be/stops/304385", "https://data.delijn.be/stops/307070"], ["https://data.delijn.be/stops/505191", "https://data.delijn.be/stops/508550"], ["https://data.delijn.be/stops/201754", "https://data.delijn.be/stops/208282"], ["https://data.delijn.be/stops/400581", "https://data.delijn.be/stops/404531"], ["https://data.delijn.be/stops/302886", "https://data.delijn.be/stops/302924"], ["https://data.delijn.be/stops/207893", "https://data.delijn.be/stops/207894"], ["https://data.delijn.be/stops/502490", "https://data.delijn.be/stops/507494"], ["https://data.delijn.be/stops/206971", "https://data.delijn.be/stops/207611"], ["https://data.delijn.be/stops/305264", "https://data.delijn.be/stops/305311"], ["https://data.delijn.be/stops/300741", "https://data.delijn.be/stops/300790"], ["https://data.delijn.be/stops/502807", "https://data.delijn.be/stops/507619"], ["https://data.delijn.be/stops/102112", "https://data.delijn.be/stops/103119"], ["https://data.delijn.be/stops/206274", "https://data.delijn.be/stops/207275"], ["https://data.delijn.be/stops/408543", "https://data.delijn.be/stops/408768"], ["https://data.delijn.be/stops/106927", "https://data.delijn.be/stops/108694"], ["https://data.delijn.be/stops/300566", "https://data.delijn.be/stops/307863"], ["https://data.delijn.be/stops/306405", "https://data.delijn.be/stops/306406"], ["https://data.delijn.be/stops/202771", "https://data.delijn.be/stops/203771"], ["https://data.delijn.be/stops/101565", "https://data.delijn.be/stops/105840"], ["https://data.delijn.be/stops/204062", "https://data.delijn.be/stops/205099"], ["https://data.delijn.be/stops/305951", "https://data.delijn.be/stops/307909"], ["https://data.delijn.be/stops/301425", "https://data.delijn.be/stops/308936"], ["https://data.delijn.be/stops/107494", "https://data.delijn.be/stops/107496"], ["https://data.delijn.be/stops/308174", "https://data.delijn.be/stops/308176"], ["https://data.delijn.be/stops/305605", "https://data.delijn.be/stops/305609"], ["https://data.delijn.be/stops/400684", "https://data.delijn.be/stops/406665"], ["https://data.delijn.be/stops/403850", "https://data.delijn.be/stops/403853"], ["https://data.delijn.be/stops/106183", "https://data.delijn.be/stops/107438"], ["https://data.delijn.be/stops/109848", "https://data.delijn.be/stops/109849"], ["https://data.delijn.be/stops/103057", "https://data.delijn.be/stops/105064"], ["https://data.delijn.be/stops/403925", "https://data.delijn.be/stops/403928"], ["https://data.delijn.be/stops/204303", "https://data.delijn.be/stops/205351"], ["https://data.delijn.be/stops/203062", "https://data.delijn.be/stops/211016"], ["https://data.delijn.be/stops/200825", "https://data.delijn.be/stops/200838"], ["https://data.delijn.be/stops/301513", "https://data.delijn.be/stops/308750"], ["https://data.delijn.be/stops/305992", "https://data.delijn.be/stops/307733"], ["https://data.delijn.be/stops/107653", "https://data.delijn.be/stops/410261"], ["https://data.delijn.be/stops/401777", "https://data.delijn.be/stops/401840"], ["https://data.delijn.be/stops/102449", "https://data.delijn.be/stops/308481"], ["https://data.delijn.be/stops/302562", "https://data.delijn.be/stops/308093"], ["https://data.delijn.be/stops/504696", "https://data.delijn.be/stops/509696"], ["https://data.delijn.be/stops/101312", "https://data.delijn.be/stops/101730"], ["https://data.delijn.be/stops/502627", "https://data.delijn.be/stops/507752"], ["https://data.delijn.be/stops/208657", "https://data.delijn.be/stops/209054"], ["https://data.delijn.be/stops/203825", "https://data.delijn.be/stops/209717"], ["https://data.delijn.be/stops/101611", "https://data.delijn.be/stops/106404"], ["https://data.delijn.be/stops/509582", "https://data.delijn.be/stops/509589"], ["https://data.delijn.be/stops/508745", "https://data.delijn.be/stops/508750"], ["https://data.delijn.be/stops/206079", "https://data.delijn.be/stops/206305"], ["https://data.delijn.be/stops/200075", "https://data.delijn.be/stops/200449"], ["https://data.delijn.be/stops/302557", "https://data.delijn.be/stops/305456"], ["https://data.delijn.be/stops/200648", "https://data.delijn.be/stops/201647"], ["https://data.delijn.be/stops/300500", "https://data.delijn.be/stops/302786"], ["https://data.delijn.be/stops/301723", "https://data.delijn.be/stops/308431"], ["https://data.delijn.be/stops/108455", "https://data.delijn.be/stops/108458"], ["https://data.delijn.be/stops/202534", "https://data.delijn.be/stops/203534"], ["https://data.delijn.be/stops/306139", "https://data.delijn.be/stops/308768"], ["https://data.delijn.be/stops/101368", "https://data.delijn.be/stops/101406"], ["https://data.delijn.be/stops/407172", "https://data.delijn.be/stops/407179"], ["https://data.delijn.be/stops/505418", "https://data.delijn.be/stops/505419"], ["https://data.delijn.be/stops/200344", "https://data.delijn.be/stops/201359"], ["https://data.delijn.be/stops/505191", "https://data.delijn.be/stops/505196"], ["https://data.delijn.be/stops/400985", "https://data.delijn.be/stops/406623"], ["https://data.delijn.be/stops/304926", "https://data.delijn.be/stops/304928"], ["https://data.delijn.be/stops/507688", "https://data.delijn.be/stops/508754"], ["https://data.delijn.be/stops/407400", "https://data.delijn.be/stops/407423"], ["https://data.delijn.be/stops/302209", "https://data.delijn.be/stops/308105"], ["https://data.delijn.be/stops/304721", "https://data.delijn.be/stops/305270"], ["https://data.delijn.be/stops/402379", "https://data.delijn.be/stops/402439"], ["https://data.delijn.be/stops/200012", "https://data.delijn.be/stops/201350"], ["https://data.delijn.be/stops/101986", "https://data.delijn.be/stops/109255"], ["https://data.delijn.be/stops/206937", "https://data.delijn.be/stops/208723"], ["https://data.delijn.be/stops/504226", "https://data.delijn.be/stops/504227"], ["https://data.delijn.be/stops/102687", "https://data.delijn.be/stops/103946"], ["https://data.delijn.be/stops/301544", "https://data.delijn.be/stops/301545"], ["https://data.delijn.be/stops/104004", "https://data.delijn.be/stops/108535"], ["https://data.delijn.be/stops/406565", "https://data.delijn.be/stops/407203"], ["https://data.delijn.be/stops/300135", "https://data.delijn.be/stops/306808"], ["https://data.delijn.be/stops/405492", "https://data.delijn.be/stops/409301"], ["https://data.delijn.be/stops/108065", "https://data.delijn.be/stops/108740"], ["https://data.delijn.be/stops/405790", "https://data.delijn.be/stops/405877"], ["https://data.delijn.be/stops/101987", "https://data.delijn.be/stops/102645"], ["https://data.delijn.be/stops/106931", "https://data.delijn.be/stops/106933"], ["https://data.delijn.be/stops/200341", "https://data.delijn.be/stops/200342"], ["https://data.delijn.be/stops/503547", "https://data.delijn.be/stops/503560"], ["https://data.delijn.be/stops/304073", "https://data.delijn.be/stops/304075"], ["https://data.delijn.be/stops/406359", "https://data.delijn.be/stops/406400"], ["https://data.delijn.be/stops/301282", "https://data.delijn.be/stops/306251"], ["https://data.delijn.be/stops/507384", "https://data.delijn.be/stops/509794"], ["https://data.delijn.be/stops/204419", "https://data.delijn.be/stops/205467"], ["https://data.delijn.be/stops/105059", "https://data.delijn.be/stops/107424"], ["https://data.delijn.be/stops/406288", "https://data.delijn.be/stops/410131"], ["https://data.delijn.be/stops/305319", "https://data.delijn.be/stops/306968"], ["https://data.delijn.be/stops/400142", "https://data.delijn.be/stops/403422"], ["https://data.delijn.be/stops/203457", "https://data.delijn.be/stops/211018"], ["https://data.delijn.be/stops/200718", "https://data.delijn.be/stops/203583"], ["https://data.delijn.be/stops/402681", "https://data.delijn.be/stops/405944"], ["https://data.delijn.be/stops/102907", "https://data.delijn.be/stops/104287"], ["https://data.delijn.be/stops/504015", "https://data.delijn.be/stops/509015"], ["https://data.delijn.be/stops/400028", "https://data.delijn.be/stops/407517"], ["https://data.delijn.be/stops/304597", "https://data.delijn.be/stops/304651"], ["https://data.delijn.be/stops/409075", "https://data.delijn.be/stops/409215"], ["https://data.delijn.be/stops/105216", "https://data.delijn.be/stops/105217"], ["https://data.delijn.be/stops/405700", "https://data.delijn.be/stops/405711"], ["https://data.delijn.be/stops/204821", "https://data.delijn.be/stops/205332"], ["https://data.delijn.be/stops/503214", "https://data.delijn.be/stops/508038"], ["https://data.delijn.be/stops/502104", "https://data.delijn.be/stops/502817"], ["https://data.delijn.be/stops/404222", "https://data.delijn.be/stops/404238"], ["https://data.delijn.be/stops/206706", "https://data.delijn.be/stops/207975"], ["https://data.delijn.be/stops/202265", "https://data.delijn.be/stops/203265"], ["https://data.delijn.be/stops/206929", "https://data.delijn.be/stops/207996"], ["https://data.delijn.be/stops/209582", "https://data.delijn.be/stops/209698"], ["https://data.delijn.be/stops/505643", "https://data.delijn.be/stops/508181"], ["https://data.delijn.be/stops/305286", "https://data.delijn.be/stops/305290"], ["https://data.delijn.be/stops/206673", "https://data.delijn.be/stops/208170"], ["https://data.delijn.be/stops/302710", "https://data.delijn.be/stops/302723"], ["https://data.delijn.be/stops/504553", "https://data.delijn.be/stops/505991"], ["https://data.delijn.be/stops/304012", "https://data.delijn.be/stops/306375"], ["https://data.delijn.be/stops/401150", "https://data.delijn.be/stops/401155"], ["https://data.delijn.be/stops/200686", "https://data.delijn.be/stops/202374"], ["https://data.delijn.be/stops/106276", "https://data.delijn.be/stops/109631"], ["https://data.delijn.be/stops/503011", "https://data.delijn.be/stops/508848"], ["https://data.delijn.be/stops/302253", "https://data.delijn.be/stops/302936"], ["https://data.delijn.be/stops/103631", "https://data.delijn.be/stops/107171"], ["https://data.delijn.be/stops/101205", "https://data.delijn.be/stops/108905"], ["https://data.delijn.be/stops/508159", "https://data.delijn.be/stops/508178"], ["https://data.delijn.be/stops/300295", "https://data.delijn.be/stops/300296"], ["https://data.delijn.be/stops/206871", "https://data.delijn.be/stops/209362"], ["https://data.delijn.be/stops/400313", "https://data.delijn.be/stops/407109"], ["https://data.delijn.be/stops/102520", "https://data.delijn.be/stops/104946"], ["https://data.delijn.be/stops/301859", "https://data.delijn.be/stops/301863"], ["https://data.delijn.be/stops/408260", "https://data.delijn.be/stops/408341"], ["https://data.delijn.be/stops/401283", "https://data.delijn.be/stops/409190"], ["https://data.delijn.be/stops/302616", "https://data.delijn.be/stops/302627"], ["https://data.delijn.be/stops/505722", "https://data.delijn.be/stops/505747"], ["https://data.delijn.be/stops/303101", "https://data.delijn.be/stops/304245"], ["https://data.delijn.be/stops/105572", "https://data.delijn.be/stops/105577"], ["https://data.delijn.be/stops/202372", "https://data.delijn.be/stops/210104"], ["https://data.delijn.be/stops/101235", "https://data.delijn.be/stops/103505"], ["https://data.delijn.be/stops/304059", "https://data.delijn.be/stops/304060"], ["https://data.delijn.be/stops/504435", "https://data.delijn.be/stops/509440"], ["https://data.delijn.be/stops/306594", "https://data.delijn.be/stops/306595"], ["https://data.delijn.be/stops/108319", "https://data.delijn.be/stops/108322"], ["https://data.delijn.be/stops/203941", "https://data.delijn.be/stops/211054"], ["https://data.delijn.be/stops/407772", "https://data.delijn.be/stops/408920"], ["https://data.delijn.be/stops/405626", "https://data.delijn.be/stops/407493"], ["https://data.delijn.be/stops/502393", "https://data.delijn.be/stops/502400"], ["https://data.delijn.be/stops/102928", "https://data.delijn.be/stops/106129"], ["https://data.delijn.be/stops/407188", "https://data.delijn.be/stops/407197"], ["https://data.delijn.be/stops/402502", "https://data.delijn.be/stops/402558"], ["https://data.delijn.be/stops/405189", "https://data.delijn.be/stops/405562"], ["https://data.delijn.be/stops/102670", "https://data.delijn.be/stops/102675"], ["https://data.delijn.be/stops/300571", "https://data.delijn.be/stops/307855"], ["https://data.delijn.be/stops/302965", "https://data.delijn.be/stops/308660"], ["https://data.delijn.be/stops/505924", "https://data.delijn.be/stops/505987"], ["https://data.delijn.be/stops/206544", "https://data.delijn.be/stops/206546"], ["https://data.delijn.be/stops/502021", "https://data.delijn.be/stops/507021"], ["https://data.delijn.be/stops/103496", "https://data.delijn.be/stops/109896"], ["https://data.delijn.be/stops/300592", "https://data.delijn.be/stops/300594"], ["https://data.delijn.be/stops/206654", "https://data.delijn.be/stops/207654"], ["https://data.delijn.be/stops/502166", "https://data.delijn.be/stops/507165"], ["https://data.delijn.be/stops/404714", "https://data.delijn.be/stops/404788"], ["https://data.delijn.be/stops/102927", "https://data.delijn.be/stops/109422"], ["https://data.delijn.be/stops/501250", "https://data.delijn.be/stops/501256"], ["https://data.delijn.be/stops/109882", "https://data.delijn.be/stops/204820"], ["https://data.delijn.be/stops/207421", "https://data.delijn.be/stops/207938"], ["https://data.delijn.be/stops/503900", "https://data.delijn.be/stops/504834"], ["https://data.delijn.be/stops/505604", "https://data.delijn.be/stops/505605"], ["https://data.delijn.be/stops/301910", "https://data.delijn.be/stops/306253"], ["https://data.delijn.be/stops/302390", "https://data.delijn.be/stops/302671"], ["https://data.delijn.be/stops/404474", "https://data.delijn.be/stops/404475"], ["https://data.delijn.be/stops/400378", "https://data.delijn.be/stops/400379"], ["https://data.delijn.be/stops/101887", "https://data.delijn.be/stops/109997"], ["https://data.delijn.be/stops/400032", "https://data.delijn.be/stops/400318"], ["https://data.delijn.be/stops/402860", "https://data.delijn.be/stops/406701"], ["https://data.delijn.be/stops/204229", "https://data.delijn.be/stops/204232"], ["https://data.delijn.be/stops/201928", "https://data.delijn.be/stops/201956"], ["https://data.delijn.be/stops/505093", "https://data.delijn.be/stops/505140"], ["https://data.delijn.be/stops/301954", "https://data.delijn.be/stops/304184"], ["https://data.delijn.be/stops/206377", "https://data.delijn.be/stops/207730"], ["https://data.delijn.be/stops/308230", "https://data.delijn.be/stops/308233"], ["https://data.delijn.be/stops/400433", "https://data.delijn.be/stops/406776"], ["https://data.delijn.be/stops/402354", "https://data.delijn.be/stops/402465"], ["https://data.delijn.be/stops/509495", "https://data.delijn.be/stops/509511"], ["https://data.delijn.be/stops/304563", "https://data.delijn.be/stops/304615"], ["https://data.delijn.be/stops/407770", "https://data.delijn.be/stops/307368"], ["https://data.delijn.be/stops/405142", "https://data.delijn.be/stops/405221"], ["https://data.delijn.be/stops/204414", "https://data.delijn.be/stops/205416"], ["https://data.delijn.be/stops/106797", "https://data.delijn.be/stops/106869"], ["https://data.delijn.be/stops/300401", "https://data.delijn.be/stops/300402"], ["https://data.delijn.be/stops/504506", "https://data.delijn.be/stops/509493"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/302881"], ["https://data.delijn.be/stops/305754", "https://data.delijn.be/stops/305755"], ["https://data.delijn.be/stops/208520", "https://data.delijn.be/stops/209878"], ["https://data.delijn.be/stops/500941", "https://data.delijn.be/stops/505642"], ["https://data.delijn.be/stops/203165", "https://data.delijn.be/stops/205074"], ["https://data.delijn.be/stops/508629", "https://data.delijn.be/stops/508631"], ["https://data.delijn.be/stops/209265", "https://data.delijn.be/stops/209847"], ["https://data.delijn.be/stops/403488", "https://data.delijn.be/stops/405634"], ["https://data.delijn.be/stops/502475", "https://data.delijn.be/stops/505579"], ["https://data.delijn.be/stops/107652", "https://data.delijn.be/stops/107654"], ["https://data.delijn.be/stops/302824", "https://data.delijn.be/stops/302828"], ["https://data.delijn.be/stops/407658", "https://data.delijn.be/stops/407659"], ["https://data.delijn.be/stops/505066", "https://data.delijn.be/stops/505734"], ["https://data.delijn.be/stops/107379", "https://data.delijn.be/stops/107382"], ["https://data.delijn.be/stops/204640", "https://data.delijn.be/stops/205640"], ["https://data.delijn.be/stops/204430", "https://data.delijn.be/stops/205430"], ["https://data.delijn.be/stops/204764", "https://data.delijn.be/stops/205379"], ["https://data.delijn.be/stops/302054", "https://data.delijn.be/stops/303165"], ["https://data.delijn.be/stops/408792", "https://data.delijn.be/stops/408807"], ["https://data.delijn.be/stops/104458", "https://data.delijn.be/stops/104459"], ["https://data.delijn.be/stops/108484", "https://data.delijn.be/stops/306597"], ["https://data.delijn.be/stops/300389", "https://data.delijn.be/stops/304552"], ["https://data.delijn.be/stops/208663", "https://data.delijn.be/stops/209663"], ["https://data.delijn.be/stops/302546", "https://data.delijn.be/stops/303381"], ["https://data.delijn.be/stops/104346", "https://data.delijn.be/stops/104965"], ["https://data.delijn.be/stops/108235", "https://data.delijn.be/stops/108325"], ["https://data.delijn.be/stops/304882", "https://data.delijn.be/stops/308526"], ["https://data.delijn.be/stops/305378", "https://data.delijn.be/stops/305406"], ["https://data.delijn.be/stops/405615", "https://data.delijn.be/stops/407163"], ["https://data.delijn.be/stops/305257", "https://data.delijn.be/stops/305892"], ["https://data.delijn.be/stops/307146", "https://data.delijn.be/stops/307148"], ["https://data.delijn.be/stops/501187", "https://data.delijn.be/stops/506187"], ["https://data.delijn.be/stops/201665", "https://data.delijn.be/stops/203323"], ["https://data.delijn.be/stops/402122", "https://data.delijn.be/stops/402123"], ["https://data.delijn.be/stops/205301", "https://data.delijn.be/stops/205302"], ["https://data.delijn.be/stops/406712", "https://data.delijn.be/stops/408745"], ["https://data.delijn.be/stops/104672", "https://data.delijn.be/stops/107378"], ["https://data.delijn.be/stops/404137", "https://data.delijn.be/stops/404153"], ["https://data.delijn.be/stops/504371", "https://data.delijn.be/stops/509372"], ["https://data.delijn.be/stops/501680", "https://data.delijn.be/stops/504262"], ["https://data.delijn.be/stops/406037", "https://data.delijn.be/stops/407780"], ["https://data.delijn.be/stops/200861", "https://data.delijn.be/stops/200875"], ["https://data.delijn.be/stops/301736", "https://data.delijn.be/stops/301740"], ["https://data.delijn.be/stops/202408", "https://data.delijn.be/stops/202417"], ["https://data.delijn.be/stops/504985", "https://data.delijn.be/stops/505428"], ["https://data.delijn.be/stops/503142", "https://data.delijn.be/stops/508041"], ["https://data.delijn.be/stops/209687", "https://data.delijn.be/stops/209688"], ["https://data.delijn.be/stops/304623", "https://data.delijn.be/stops/304624"], ["https://data.delijn.be/stops/403318", "https://data.delijn.be/stops/403324"], ["https://data.delijn.be/stops/504357", "https://data.delijn.be/stops/504360"], ["https://data.delijn.be/stops/403944", "https://data.delijn.be/stops/404004"], ["https://data.delijn.be/stops/401397", "https://data.delijn.be/stops/401417"], ["https://data.delijn.be/stops/501017", "https://data.delijn.be/stops/506017"], ["https://data.delijn.be/stops/508124", "https://data.delijn.be/stops/509886"], ["https://data.delijn.be/stops/302766", "https://data.delijn.be/stops/304703"], ["https://data.delijn.be/stops/207491", "https://data.delijn.be/stops/209686"], ["https://data.delijn.be/stops/408317", "https://data.delijn.be/stops/408323"], ["https://data.delijn.be/stops/107338", "https://data.delijn.be/stops/107341"], ["https://data.delijn.be/stops/104347", "https://data.delijn.be/stops/105921"], ["https://data.delijn.be/stops/109139", "https://data.delijn.be/stops/109142"], ["https://data.delijn.be/stops/200137", "https://data.delijn.be/stops/201223"], ["https://data.delijn.be/stops/106107", "https://data.delijn.be/stops/106177"], ["https://data.delijn.be/stops/209107", "https://data.delijn.be/stops/209109"], ["https://data.delijn.be/stops/101451", "https://data.delijn.be/stops/107056"], ["https://data.delijn.be/stops/504536", "https://data.delijn.be/stops/504537"], ["https://data.delijn.be/stops/504262", "https://data.delijn.be/stops/509262"], ["https://data.delijn.be/stops/306693", "https://data.delijn.be/stops/308785"], ["https://data.delijn.be/stops/302020", "https://data.delijn.be/stops/308958"], ["https://data.delijn.be/stops/501197", "https://data.delijn.be/stops/501568"], ["https://data.delijn.be/stops/402546", "https://data.delijn.be/stops/402547"], ["https://data.delijn.be/stops/306784", "https://data.delijn.be/stops/306786"], ["https://data.delijn.be/stops/202737", "https://data.delijn.be/stops/202738"], ["https://data.delijn.be/stops/209257", "https://data.delijn.be/stops/209258"], ["https://data.delijn.be/stops/204985", "https://data.delijn.be/stops/209191"], ["https://data.delijn.be/stops/303069", "https://data.delijn.be/stops/303209"], ["https://data.delijn.be/stops/201615", "https://data.delijn.be/stops/201656"], ["https://data.delijn.be/stops/303535", "https://data.delijn.be/stops/303586"], ["https://data.delijn.be/stops/500998", "https://data.delijn.be/stops/509425"], ["https://data.delijn.be/stops/504396", "https://data.delijn.be/stops/504680"], ["https://data.delijn.be/stops/109496", "https://data.delijn.be/stops/109499"], ["https://data.delijn.be/stops/409423", "https://data.delijn.be/stops/409715"], ["https://data.delijn.be/stops/404919", "https://data.delijn.be/stops/404932"], ["https://data.delijn.be/stops/104676", "https://data.delijn.be/stops/107377"], ["https://data.delijn.be/stops/107314", "https://data.delijn.be/stops/108813"], ["https://data.delijn.be/stops/302753", "https://data.delijn.be/stops/306167"], ["https://data.delijn.be/stops/507015", "https://data.delijn.be/stops/507016"], ["https://data.delijn.be/stops/303495", "https://data.delijn.be/stops/303503"], ["https://data.delijn.be/stops/503630", "https://data.delijn.be/stops/504360"], ["https://data.delijn.be/stops/307945", "https://data.delijn.be/stops/308065"], ["https://data.delijn.be/stops/500950", "https://data.delijn.be/stops/504988"], ["https://data.delijn.be/stops/401548", "https://data.delijn.be/stops/408635"], ["https://data.delijn.be/stops/201184", "https://data.delijn.be/stops/203749"], ["https://data.delijn.be/stops/501482", "https://data.delijn.be/stops/506482"], ["https://data.delijn.be/stops/503141", "https://data.delijn.be/stops/508141"], ["https://data.delijn.be/stops/101160", "https://data.delijn.be/stops/103790"], ["https://data.delijn.be/stops/308462", "https://data.delijn.be/stops/308463"], ["https://data.delijn.be/stops/200432", "https://data.delijn.be/stops/201430"], ["https://data.delijn.be/stops/104639", "https://data.delijn.be/stops/108038"], ["https://data.delijn.be/stops/400650", "https://data.delijn.be/stops/406767"], ["https://data.delijn.be/stops/202126", "https://data.delijn.be/stops/203598"], ["https://data.delijn.be/stops/204001", "https://data.delijn.be/stops/206929"], ["https://data.delijn.be/stops/200337", "https://data.delijn.be/stops/203203"], ["https://data.delijn.be/stops/402040", "https://data.delijn.be/stops/403882"], ["https://data.delijn.be/stops/206438", "https://data.delijn.be/stops/209560"], ["https://data.delijn.be/stops/206353", "https://data.delijn.be/stops/206884"], ["https://data.delijn.be/stops/108369", "https://data.delijn.be/stops/108372"], ["https://data.delijn.be/stops/106694", "https://data.delijn.be/stops/106702"], ["https://data.delijn.be/stops/408318", "https://data.delijn.be/stops/410159"], ["https://data.delijn.be/stops/201901", "https://data.delijn.be/stops/203514"], ["https://data.delijn.be/stops/501218", "https://data.delijn.be/stops/506218"], ["https://data.delijn.be/stops/106146", "https://data.delijn.be/stops/106440"], ["https://data.delijn.be/stops/304452", "https://data.delijn.be/stops/307089"], ["https://data.delijn.be/stops/208481", "https://data.delijn.be/stops/208532"], ["https://data.delijn.be/stops/106223", "https://data.delijn.be/stops/106314"], ["https://data.delijn.be/stops/505380", "https://data.delijn.be/stops/508102"], ["https://data.delijn.be/stops/406976", "https://data.delijn.be/stops/406978"], ["https://data.delijn.be/stops/302350", "https://data.delijn.be/stops/302351"], ["https://data.delijn.be/stops/404278", "https://data.delijn.be/stops/404279"], ["https://data.delijn.be/stops/501415", "https://data.delijn.be/stops/501416"], ["https://data.delijn.be/stops/204248", "https://data.delijn.be/stops/205095"], ["https://data.delijn.be/stops/503876", "https://data.delijn.be/stops/508866"], ["https://data.delijn.be/stops/201778", "https://data.delijn.be/stops/208855"], ["https://data.delijn.be/stops/500563", "https://data.delijn.be/stops/500566"], ["https://data.delijn.be/stops/400078", "https://data.delijn.be/stops/410031"], ["https://data.delijn.be/stops/501694", "https://data.delijn.be/stops/502366"], ["https://data.delijn.be/stops/505512", "https://data.delijn.be/stops/505612"], ["https://data.delijn.be/stops/207449", "https://data.delijn.be/stops/207492"], ["https://data.delijn.be/stops/402767", "https://data.delijn.be/stops/408124"], ["https://data.delijn.be/stops/301851", "https://data.delijn.be/stops/302465"], ["https://data.delijn.be/stops/301475", "https://data.delijn.be/stops/307960"], ["https://data.delijn.be/stops/101198", "https://data.delijn.be/stops/101207"], ["https://data.delijn.be/stops/106831", "https://data.delijn.be/stops/106832"], ["https://data.delijn.be/stops/302879", "https://data.delijn.be/stops/303084"], ["https://data.delijn.be/stops/301950", "https://data.delijn.be/stops/307894"], ["https://data.delijn.be/stops/303394", "https://data.delijn.be/stops/308715"], ["https://data.delijn.be/stops/102256", "https://data.delijn.be/stops/108306"], ["https://data.delijn.be/stops/403961", "https://data.delijn.be/stops/403970"], ["https://data.delijn.be/stops/108051", "https://data.delijn.be/stops/108277"], ["https://data.delijn.be/stops/502798", "https://data.delijn.be/stops/507532"], ["https://data.delijn.be/stops/109039", "https://data.delijn.be/stops/300103"], ["https://data.delijn.be/stops/503774", "https://data.delijn.be/stops/509938"], ["https://data.delijn.be/stops/305780", "https://data.delijn.be/stops/306878"], ["https://data.delijn.be/stops/107902", "https://data.delijn.be/stops/109447"], ["https://data.delijn.be/stops/307683", "https://data.delijn.be/stops/307684"], ["https://data.delijn.be/stops/403513", "https://data.delijn.be/stops/403514"], ["https://data.delijn.be/stops/508794", "https://data.delijn.be/stops/508795"], ["https://data.delijn.be/stops/300343", "https://data.delijn.be/stops/304860"], ["https://data.delijn.be/stops/505141", "https://data.delijn.be/stops/507226"], ["https://data.delijn.be/stops/301329", "https://data.delijn.be/stops/306651"], ["https://data.delijn.be/stops/504364", "https://data.delijn.be/stops/508932"], ["https://data.delijn.be/stops/401638", "https://data.delijn.be/stops/308226"], ["https://data.delijn.be/stops/501562", "https://data.delijn.be/stops/506365"], ["https://data.delijn.be/stops/200806", "https://data.delijn.be/stops/203055"], ["https://data.delijn.be/stops/301533", "https://data.delijn.be/stops/304702"], ["https://data.delijn.be/stops/504081", "https://data.delijn.be/stops/504082"], ["https://data.delijn.be/stops/502482", "https://data.delijn.be/stops/507482"], ["https://data.delijn.be/stops/200698", "https://data.delijn.be/stops/201736"], ["https://data.delijn.be/stops/109120", "https://data.delijn.be/stops/109145"], ["https://data.delijn.be/stops/301134", "https://data.delijn.be/stops/301138"], ["https://data.delijn.be/stops/200868", "https://data.delijn.be/stops/203338"], ["https://data.delijn.be/stops/303964", "https://data.delijn.be/stops/303968"], ["https://data.delijn.be/stops/302706", "https://data.delijn.be/stops/305634"], ["https://data.delijn.be/stops/208064", "https://data.delijn.be/stops/209067"], ["https://data.delijn.be/stops/105269", "https://data.delijn.be/stops/105291"], ["https://data.delijn.be/stops/200908", "https://data.delijn.be/stops/203046"], ["https://data.delijn.be/stops/305341", "https://data.delijn.be/stops/307969"], ["https://data.delijn.be/stops/509518", "https://data.delijn.be/stops/509521"], ["https://data.delijn.be/stops/203076", "https://data.delijn.be/stops/203393"], ["https://data.delijn.be/stops/200466", "https://data.delijn.be/stops/209706"], ["https://data.delijn.be/stops/409780", "https://data.delijn.be/stops/409782"], ["https://data.delijn.be/stops/305967", "https://data.delijn.be/stops/307911"], ["https://data.delijn.be/stops/302061", "https://data.delijn.be/stops/302076"], ["https://data.delijn.be/stops/302339", "https://data.delijn.be/stops/302340"], ["https://data.delijn.be/stops/501159", "https://data.delijn.be/stops/501751"], ["https://data.delijn.be/stops/102701", "https://data.delijn.be/stops/105652"], ["https://data.delijn.be/stops/401120", "https://data.delijn.be/stops/401149"], ["https://data.delijn.be/stops/404977", "https://data.delijn.be/stops/404980"], ["https://data.delijn.be/stops/204103", "https://data.delijn.be/stops/207048"], ["https://data.delijn.be/stops/102790", "https://data.delijn.be/stops/102987"], ["https://data.delijn.be/stops/305608", "https://data.delijn.be/stops/305609"], ["https://data.delijn.be/stops/400472", "https://data.delijn.be/stops/400473"], ["https://data.delijn.be/stops/303790", "https://data.delijn.be/stops/308713"], ["https://data.delijn.be/stops/502069", "https://data.delijn.be/stops/505686"], ["https://data.delijn.be/stops/206001", "https://data.delijn.be/stops/206062"], ["https://data.delijn.be/stops/402084", "https://data.delijn.be/stops/402085"], ["https://data.delijn.be/stops/101747", "https://data.delijn.be/stops/106386"], ["https://data.delijn.be/stops/301124", "https://data.delijn.be/stops/303624"], ["https://data.delijn.be/stops/304599", "https://data.delijn.be/stops/304600"], ["https://data.delijn.be/stops/204257", "https://data.delijn.be/stops/204489"], ["https://data.delijn.be/stops/208357", "https://data.delijn.be/stops/209356"], ["https://data.delijn.be/stops/307402", "https://data.delijn.be/stops/307406"], ["https://data.delijn.be/stops/200095", "https://data.delijn.be/stops/201345"], ["https://data.delijn.be/stops/201419", "https://data.delijn.be/stops/210070"], ["https://data.delijn.be/stops/505254", "https://data.delijn.be/stops/508930"], ["https://data.delijn.be/stops/500941", "https://data.delijn.be/stops/508865"], ["https://data.delijn.be/stops/400717", "https://data.delijn.be/stops/409512"], ["https://data.delijn.be/stops/403251", "https://data.delijn.be/stops/403280"], ["https://data.delijn.be/stops/201881", "https://data.delijn.be/stops/202421"], ["https://data.delijn.be/stops/305447", "https://data.delijn.be/stops/307327"], ["https://data.delijn.be/stops/403686", "https://data.delijn.be/stops/403688"], ["https://data.delijn.be/stops/401077", "https://data.delijn.be/stops/402899"], ["https://data.delijn.be/stops/202837", "https://data.delijn.be/stops/219002"], ["https://data.delijn.be/stops/106051", "https://data.delijn.be/stops/106412"], ["https://data.delijn.be/stops/205344", "https://data.delijn.be/stops/205452"], ["https://data.delijn.be/stops/204164", "https://data.delijn.be/stops/207273"], ["https://data.delijn.be/stops/208224", "https://data.delijn.be/stops/209043"], ["https://data.delijn.be/stops/302677", "https://data.delijn.be/stops/302685"], ["https://data.delijn.be/stops/102622", "https://data.delijn.be/stops/108211"], ["https://data.delijn.be/stops/101009", "https://data.delijn.be/stops/101701"], ["https://data.delijn.be/stops/204698", "https://data.delijn.be/stops/205320"], ["https://data.delijn.be/stops/204224", "https://data.delijn.be/stops/204246"], ["https://data.delijn.be/stops/405767", "https://data.delijn.be/stops/406880"], ["https://data.delijn.be/stops/202769", "https://data.delijn.be/stops/203768"], ["https://data.delijn.be/stops/303180", "https://data.delijn.be/stops/304867"], ["https://data.delijn.be/stops/504770", "https://data.delijn.be/stops/505200"], ["https://data.delijn.be/stops/505039", "https://data.delijn.be/stops/505757"], ["https://data.delijn.be/stops/200967", "https://data.delijn.be/stops/208731"], ["https://data.delijn.be/stops/401378", "https://data.delijn.be/stops/410173"], ["https://data.delijn.be/stops/202418", "https://data.delijn.be/stops/203418"], ["https://data.delijn.be/stops/402395", "https://data.delijn.be/stops/407495"], ["https://data.delijn.be/stops/407123", "https://data.delijn.be/stops/407277"], ["https://data.delijn.be/stops/406306", "https://data.delijn.be/stops/406308"], ["https://data.delijn.be/stops/103472", "https://data.delijn.be/stops/109214"], ["https://data.delijn.be/stops/407938", "https://data.delijn.be/stops/303263"], ["https://data.delijn.be/stops/300108", "https://data.delijn.be/stops/306812"], ["https://data.delijn.be/stops/501362", "https://data.delijn.be/stops/506386"], ["https://data.delijn.be/stops/306869", "https://data.delijn.be/stops/307501"], ["https://data.delijn.be/stops/102517", "https://data.delijn.be/stops/406511"], ["https://data.delijn.be/stops/104966", "https://data.delijn.be/stops/107429"], ["https://data.delijn.be/stops/301739", "https://data.delijn.be/stops/305908"], ["https://data.delijn.be/stops/208233", "https://data.delijn.be/stops/209234"], ["https://data.delijn.be/stops/202886", "https://data.delijn.be/stops/207868"], ["https://data.delijn.be/stops/505898", "https://data.delijn.be/stops/509402"], ["https://data.delijn.be/stops/404699", "https://data.delijn.be/stops/405594"], ["https://data.delijn.be/stops/407523", "https://data.delijn.be/stops/407542"], ["https://data.delijn.be/stops/305051", "https://data.delijn.be/stops/306958"], ["https://data.delijn.be/stops/105546", "https://data.delijn.be/stops/106131"], ["https://data.delijn.be/stops/504398", "https://data.delijn.be/stops/504550"], ["https://data.delijn.be/stops/502299", "https://data.delijn.be/stops/507299"], ["https://data.delijn.be/stops/101297", "https://data.delijn.be/stops/108802"], ["https://data.delijn.be/stops/304104", "https://data.delijn.be/stops/304781"], ["https://data.delijn.be/stops/202481", "https://data.delijn.be/stops/203481"], ["https://data.delijn.be/stops/501173", "https://data.delijn.be/stops/506173"], ["https://data.delijn.be/stops/503728", "https://data.delijn.be/stops/508060"], ["https://data.delijn.be/stops/101024", "https://data.delijn.be/stops/105150"], ["https://data.delijn.be/stops/400859", "https://data.delijn.be/stops/410393"], ["https://data.delijn.be/stops/401762", "https://data.delijn.be/stops/406343"], ["https://data.delijn.be/stops/208241", "https://data.delijn.be/stops/209068"], ["https://data.delijn.be/stops/408396", "https://data.delijn.be/stops/308241"], ["https://data.delijn.be/stops/504848", "https://data.delijn.be/stops/508115"], ["https://data.delijn.be/stops/409424", "https://data.delijn.be/stops/409724"], ["https://data.delijn.be/stops/106632", "https://data.delijn.be/stops/107159"], ["https://data.delijn.be/stops/404343", "https://data.delijn.be/stops/404358"], ["https://data.delijn.be/stops/207794", "https://data.delijn.be/stops/218013"], ["https://data.delijn.be/stops/304151", "https://data.delijn.be/stops/304157"], ["https://data.delijn.be/stops/400379", "https://data.delijn.be/stops/406788"], ["https://data.delijn.be/stops/206791", "https://data.delijn.be/stops/209090"], ["https://data.delijn.be/stops/406090", "https://data.delijn.be/stops/406091"], ["https://data.delijn.be/stops/209052", "https://data.delijn.be/stops/209053"], ["https://data.delijn.be/stops/200214", "https://data.delijn.be/stops/202545"], ["https://data.delijn.be/stops/101637", "https://data.delijn.be/stops/104370"], ["https://data.delijn.be/stops/404136", "https://data.delijn.be/stops/404138"], ["https://data.delijn.be/stops/502416", "https://data.delijn.be/stops/507416"], ["https://data.delijn.be/stops/503401", "https://data.delijn.be/stops/504949"], ["https://data.delijn.be/stops/102240", "https://data.delijn.be/stops/102245"], ["https://data.delijn.be/stops/200158", "https://data.delijn.be/stops/203942"], ["https://data.delijn.be/stops/509064", "https://data.delijn.be/stops/509067"], ["https://data.delijn.be/stops/502623", "https://data.delijn.be/stops/507623"], ["https://data.delijn.be/stops/200942", "https://data.delijn.be/stops/203539"], ["https://data.delijn.be/stops/304218", "https://data.delijn.be/stops/304230"], ["https://data.delijn.be/stops/303355", "https://data.delijn.be/stops/303370"], ["https://data.delijn.be/stops/105771", "https://data.delijn.be/stops/109807"], ["https://data.delijn.be/stops/209292", "https://data.delijn.be/stops/209791"], ["https://data.delijn.be/stops/103028", "https://data.delijn.be/stops/104564"], ["https://data.delijn.be/stops/501624", "https://data.delijn.be/stops/506616"], ["https://data.delijn.be/stops/305878", "https://data.delijn.be/stops/308687"], ["https://data.delijn.be/stops/301540", "https://data.delijn.be/stops/305142"], ["https://data.delijn.be/stops/402002", "https://data.delijn.be/stops/406041"], ["https://data.delijn.be/stops/105277", "https://data.delijn.be/stops/105681"], ["https://data.delijn.be/stops/406589", "https://data.delijn.be/stops/406701"], ["https://data.delijn.be/stops/403673", "https://data.delijn.be/stops/405633"], ["https://data.delijn.be/stops/403966", "https://data.delijn.be/stops/403976"], ["https://data.delijn.be/stops/507416", "https://data.delijn.be/stops/507751"], ["https://data.delijn.be/stops/205174", "https://data.delijn.be/stops/206827"], ["https://data.delijn.be/stops/201570", "https://data.delijn.be/stops/209291"], ["https://data.delijn.be/stops/208781", "https://data.delijn.be/stops/208782"], ["https://data.delijn.be/stops/504212", "https://data.delijn.be/stops/509219"], ["https://data.delijn.be/stops/109678", "https://data.delijn.be/stops/109681"], ["https://data.delijn.be/stops/407783", "https://data.delijn.be/stops/307381"], ["https://data.delijn.be/stops/200507", "https://data.delijn.be/stops/201506"], ["https://data.delijn.be/stops/403704", "https://data.delijn.be/stops/406973"], ["https://data.delijn.be/stops/304502", "https://data.delijn.be/stops/306205"], ["https://data.delijn.be/stops/505059", "https://data.delijn.be/stops/507918"], ["https://data.delijn.be/stops/405044", "https://data.delijn.be/stops/405045"], ["https://data.delijn.be/stops/207588", "https://data.delijn.be/stops/216019"], ["https://data.delijn.be/stops/102016", "https://data.delijn.be/stops/102025"], ["https://data.delijn.be/stops/400206", "https://data.delijn.be/stops/408489"], ["https://data.delijn.be/stops/205332", "https://data.delijn.be/stops/205506"], ["https://data.delijn.be/stops/107200", "https://data.delijn.be/stops/107689"], ["https://data.delijn.be/stops/400195", "https://data.delijn.be/stops/401166"], ["https://data.delijn.be/stops/303203", "https://data.delijn.be/stops/303204"], ["https://data.delijn.be/stops/108445", "https://data.delijn.be/stops/108448"], ["https://data.delijn.be/stops/407084", "https://data.delijn.be/stops/407086"], ["https://data.delijn.be/stops/202675", "https://data.delijn.be/stops/203724"], ["https://data.delijn.be/stops/105639", "https://data.delijn.be/stops/105815"], ["https://data.delijn.be/stops/502163", "https://data.delijn.be/stops/507676"], ["https://data.delijn.be/stops/301461", "https://data.delijn.be/stops/301492"], ["https://data.delijn.be/stops/200624", "https://data.delijn.be/stops/211073"], ["https://data.delijn.be/stops/101870", "https://data.delijn.be/stops/101875"], ["https://data.delijn.be/stops/505574", "https://data.delijn.be/stops/507327"], ["https://data.delijn.be/stops/104749", "https://data.delijn.be/stops/107332"], ["https://data.delijn.be/stops/300022", "https://data.delijn.be/stops/300404"], ["https://data.delijn.be/stops/109362", "https://data.delijn.be/stops/109365"], ["https://data.delijn.be/stops/102872", "https://data.delijn.be/stops/103281"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/510005"], ["https://data.delijn.be/stops/509346", "https://data.delijn.be/stops/509350"], ["https://data.delijn.be/stops/206321", "https://data.delijn.be/stops/207149"], ["https://data.delijn.be/stops/202972", "https://data.delijn.be/stops/203972"], ["https://data.delijn.be/stops/401252", "https://data.delijn.be/stops/401452"], ["https://data.delijn.be/stops/305416", "https://data.delijn.be/stops/305421"], ["https://data.delijn.be/stops/409257", "https://data.delijn.be/stops/409302"], ["https://data.delijn.be/stops/200560", "https://data.delijn.be/stops/200652"], ["https://data.delijn.be/stops/300935", "https://data.delijn.be/stops/305270"], ["https://data.delijn.be/stops/302654", "https://data.delijn.be/stops/306339"], ["https://data.delijn.be/stops/101417", "https://data.delijn.be/stops/103716"], ["https://data.delijn.be/stops/207222", "https://data.delijn.be/stops/207223"], ["https://data.delijn.be/stops/102272", "https://data.delijn.be/stops/105995"], ["https://data.delijn.be/stops/103084", "https://data.delijn.be/stops/106585"], ["https://data.delijn.be/stops/502443", "https://data.delijn.be/stops/507443"], ["https://data.delijn.be/stops/504613", "https://data.delijn.be/stops/509609"], ["https://data.delijn.be/stops/103749", "https://data.delijn.be/stops/105085"], ["https://data.delijn.be/stops/104812", "https://data.delijn.be/stops/104814"], ["https://data.delijn.be/stops/308237", "https://data.delijn.be/stops/308238"], ["https://data.delijn.be/stops/506136", "https://data.delijn.be/stops/506441"], ["https://data.delijn.be/stops/504490", "https://data.delijn.be/stops/509490"], ["https://data.delijn.be/stops/101002", "https://data.delijn.be/stops/102691"], ["https://data.delijn.be/stops/107313", "https://data.delijn.be/stops/108816"], ["https://data.delijn.be/stops/509757", "https://data.delijn.be/stops/509767"], ["https://data.delijn.be/stops/407537", "https://data.delijn.be/stops/408092"], ["https://data.delijn.be/stops/404580", "https://data.delijn.be/stops/404581"], ["https://data.delijn.be/stops/300278", "https://data.delijn.be/stops/300286"], ["https://data.delijn.be/stops/407112", "https://data.delijn.be/stops/407343"], ["https://data.delijn.be/stops/101660", "https://data.delijn.be/stops/102636"], ["https://data.delijn.be/stops/202507", "https://data.delijn.be/stops/202930"], ["https://data.delijn.be/stops/304313", "https://data.delijn.be/stops/304328"], ["https://data.delijn.be/stops/208675", "https://data.delijn.be/stops/208751"], ["https://data.delijn.be/stops/503516", "https://data.delijn.be/stops/505966"], ["https://data.delijn.be/stops/104475", "https://data.delijn.be/stops/105395"], ["https://data.delijn.be/stops/405915", "https://data.delijn.be/stops/405918"], ["https://data.delijn.be/stops/501249", "https://data.delijn.be/stops/506235"], ["https://data.delijn.be/stops/201572", "https://data.delijn.be/stops/203197"], ["https://data.delijn.be/stops/105421", "https://data.delijn.be/stops/105426"], ["https://data.delijn.be/stops/302887", "https://data.delijn.be/stops/302925"], ["https://data.delijn.be/stops/308830", "https://data.delijn.be/stops/308831"], ["https://data.delijn.be/stops/200334", "https://data.delijn.be/stops/200336"], ["https://data.delijn.be/stops/302230", "https://data.delijn.be/stops/302231"], ["https://data.delijn.be/stops/403117", "https://data.delijn.be/stops/403118"], ["https://data.delijn.be/stops/407389", "https://data.delijn.be/stops/407493"], ["https://data.delijn.be/stops/300421", "https://data.delijn.be/stops/302641"], ["https://data.delijn.be/stops/407257", "https://data.delijn.be/stops/407335"], ["https://data.delijn.be/stops/300870", "https://data.delijn.be/stops/302249"], ["https://data.delijn.be/stops/203951", "https://data.delijn.be/stops/203952"], ["https://data.delijn.be/stops/208776", "https://data.delijn.be/stops/209363"], ["https://data.delijn.be/stops/307324", "https://data.delijn.be/stops/308673"], ["https://data.delijn.be/stops/505351", "https://data.delijn.be/stops/505724"], ["https://data.delijn.be/stops/104382", "https://data.delijn.be/stops/105420"], ["https://data.delijn.be/stops/106298", "https://data.delijn.be/stops/106468"], ["https://data.delijn.be/stops/502332", "https://data.delijn.be/stops/507278"], ["https://data.delijn.be/stops/504496", "https://data.delijn.be/stops/504665"], ["https://data.delijn.be/stops/209672", "https://data.delijn.be/stops/209674"], ["https://data.delijn.be/stops/201751", "https://data.delijn.be/stops/209428"], ["https://data.delijn.be/stops/102960", "https://data.delijn.be/stops/104675"], ["https://data.delijn.be/stops/504324", "https://data.delijn.be/stops/504407"], ["https://data.delijn.be/stops/300885", "https://data.delijn.be/stops/308856"], ["https://data.delijn.be/stops/108761", "https://data.delijn.be/stops/109797"], ["https://data.delijn.be/stops/502120", "https://data.delijn.be/stops/502633"], ["https://data.delijn.be/stops/503882", "https://data.delijn.be/stops/508101"], ["https://data.delijn.be/stops/406658", "https://data.delijn.be/stops/406659"], ["https://data.delijn.be/stops/102477", "https://data.delijn.be/stops/406835"], ["https://data.delijn.be/stops/502541", "https://data.delijn.be/stops/505703"], ["https://data.delijn.be/stops/305492", "https://data.delijn.be/stops/305493"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/208509"], ["https://data.delijn.be/stops/406928", "https://data.delijn.be/stops/407422"], ["https://data.delijn.be/stops/304813", "https://data.delijn.be/stops/304814"], ["https://data.delijn.be/stops/204727", "https://data.delijn.be/stops/205727"], ["https://data.delijn.be/stops/504105", "https://data.delijn.be/stops/504441"], ["https://data.delijn.be/stops/104506", "https://data.delijn.be/stops/308795"], ["https://data.delijn.be/stops/107866", "https://data.delijn.be/stops/107867"], ["https://data.delijn.be/stops/303560", "https://data.delijn.be/stops/303561"], ["https://data.delijn.be/stops/301440", "https://data.delijn.be/stops/301674"], ["https://data.delijn.be/stops/204186", "https://data.delijn.be/stops/205186"], ["https://data.delijn.be/stops/106661", "https://data.delijn.be/stops/107194"], ["https://data.delijn.be/stops/408310", "https://data.delijn.be/stops/408355"], ["https://data.delijn.be/stops/105131", "https://data.delijn.be/stops/105199"], ["https://data.delijn.be/stops/104246", "https://data.delijn.be/stops/104247"], ["https://data.delijn.be/stops/400976", "https://data.delijn.be/stops/409660"], ["https://data.delijn.be/stops/200188", "https://data.delijn.be/stops/200501"], ["https://data.delijn.be/stops/106617", "https://data.delijn.be/stops/106702"], ["https://data.delijn.be/stops/106973", "https://data.delijn.be/stops/106974"], ["https://data.delijn.be/stops/104014", "https://data.delijn.be/stops/104027"], ["https://data.delijn.be/stops/104503", "https://data.delijn.be/stops/104506"], ["https://data.delijn.be/stops/205095", "https://data.delijn.be/stops/205419"], ["https://data.delijn.be/stops/201694", "https://data.delijn.be/stops/203087"], ["https://data.delijn.be/stops/505982", "https://data.delijn.be/stops/507190"], ["https://data.delijn.be/stops/208468", "https://data.delijn.be/stops/208469"], ["https://data.delijn.be/stops/502483", "https://data.delijn.be/stops/502924"], ["https://data.delijn.be/stops/405754", "https://data.delijn.be/stops/409281"], ["https://data.delijn.be/stops/108616", "https://data.delijn.be/stops/108617"], ["https://data.delijn.be/stops/106096", "https://data.delijn.be/stops/109185"], ["https://data.delijn.be/stops/200811", "https://data.delijn.be/stops/203436"], ["https://data.delijn.be/stops/102528", "https://data.delijn.be/stops/405093"], ["https://data.delijn.be/stops/406597", "https://data.delijn.be/stops/406632"], ["https://data.delijn.be/stops/305394", "https://data.delijn.be/stops/305404"], ["https://data.delijn.be/stops/406166", "https://data.delijn.be/stops/410225"], ["https://data.delijn.be/stops/303351", "https://data.delijn.be/stops/303373"], ["https://data.delijn.be/stops/301718", "https://data.delijn.be/stops/308427"], ["https://data.delijn.be/stops/303793", "https://data.delijn.be/stops/303841"], ["https://data.delijn.be/stops/108969", "https://data.delijn.be/stops/108971"], ["https://data.delijn.be/stops/505407", "https://data.delijn.be/stops/509052"], ["https://data.delijn.be/stops/508922", "https://data.delijn.be/stops/508929"], ["https://data.delijn.be/stops/201578", "https://data.delijn.be/stops/203192"], ["https://data.delijn.be/stops/302381", "https://data.delijn.be/stops/304082"], ["https://data.delijn.be/stops/503026", "https://data.delijn.be/stops/508026"], ["https://data.delijn.be/stops/405276", "https://data.delijn.be/stops/410088"], ["https://data.delijn.be/stops/201856", "https://data.delijn.be/stops/201867"], ["https://data.delijn.be/stops/303704", "https://data.delijn.be/stops/303705"], ["https://data.delijn.be/stops/505143", "https://data.delijn.be/stops/509052"], ["https://data.delijn.be/stops/208140", "https://data.delijn.be/stops/209139"], ["https://data.delijn.be/stops/300637", "https://data.delijn.be/stops/300647"], ["https://data.delijn.be/stops/201138", "https://data.delijn.be/stops/209931"], ["https://data.delijn.be/stops/404708", "https://data.delijn.be/stops/404728"], ["https://data.delijn.be/stops/501293", "https://data.delijn.be/stops/501303"], ["https://data.delijn.be/stops/301705", "https://data.delijn.be/stops/301713"], ["https://data.delijn.be/stops/301566", "https://data.delijn.be/stops/301578"], ["https://data.delijn.be/stops/107926", "https://data.delijn.be/stops/107929"], ["https://data.delijn.be/stops/405208", "https://data.delijn.be/stops/405255"], ["https://data.delijn.be/stops/103117", "https://data.delijn.be/stops/104676"], ["https://data.delijn.be/stops/204300", "https://data.delijn.be/stops/204539"], ["https://data.delijn.be/stops/105235", "https://data.delijn.be/stops/106015"], ["https://data.delijn.be/stops/502468", "https://data.delijn.be/stops/507487"], ["https://data.delijn.be/stops/301569", "https://data.delijn.be/stops/306102"], ["https://data.delijn.be/stops/303064", "https://data.delijn.be/stops/304485"], ["https://data.delijn.be/stops/400663", "https://data.delijn.be/stops/408964"], ["https://data.delijn.be/stops/209329", "https://data.delijn.be/stops/210048"], ["https://data.delijn.be/stops/200500", "https://data.delijn.be/stops/200502"], ["https://data.delijn.be/stops/105332", "https://data.delijn.be/stops/204027"], ["https://data.delijn.be/stops/402300", "https://data.delijn.be/stops/409372"], ["https://data.delijn.be/stops/508032", "https://data.delijn.be/stops/508677"], ["https://data.delijn.be/stops/206332", "https://data.delijn.be/stops/207710"], ["https://data.delijn.be/stops/400355", "https://data.delijn.be/stops/400397"], ["https://data.delijn.be/stops/401220", "https://data.delijn.be/stops/401277"], ["https://data.delijn.be/stops/405177", "https://data.delijn.be/stops/405202"], ["https://data.delijn.be/stops/101191", "https://data.delijn.be/stops/205668"], ["https://data.delijn.be/stops/304425", "https://data.delijn.be/stops/307420"], ["https://data.delijn.be/stops/204789", "https://data.delijn.be/stops/205129"], ["https://data.delijn.be/stops/502233", "https://data.delijn.be/stops/507233"], ["https://data.delijn.be/stops/405259", "https://data.delijn.be/stops/405275"], ["https://data.delijn.be/stops/404620", "https://data.delijn.be/stops/410125"], ["https://data.delijn.be/stops/400156", "https://data.delijn.be/stops/409067"], ["https://data.delijn.be/stops/210015", "https://data.delijn.be/stops/507292"], ["https://data.delijn.be/stops/103473", "https://data.delijn.be/stops/108271"], ["https://data.delijn.be/stops/404216", "https://data.delijn.be/stops/404217"], ["https://data.delijn.be/stops/502047", "https://data.delijn.be/stops/502619"], ["https://data.delijn.be/stops/201937", "https://data.delijn.be/stops/203440"], ["https://data.delijn.be/stops/105369", "https://data.delijn.be/stops/105373"], ["https://data.delijn.be/stops/407321", "https://data.delijn.be/stops/408456"], ["https://data.delijn.be/stops/405705", "https://data.delijn.be/stops/407204"], ["https://data.delijn.be/stops/403292", "https://data.delijn.be/stops/403384"], ["https://data.delijn.be/stops/101977", "https://data.delijn.be/stops/108051"], ["https://data.delijn.be/stops/207226", "https://data.delijn.be/stops/308570"], ["https://data.delijn.be/stops/105113", "https://data.delijn.be/stops/105153"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/106622"], ["https://data.delijn.be/stops/400789", "https://data.delijn.be/stops/409592"], ["https://data.delijn.be/stops/508638", "https://data.delijn.be/stops/508639"], ["https://data.delijn.be/stops/503084", "https://data.delijn.be/stops/503085"], ["https://data.delijn.be/stops/208810", "https://data.delijn.be/stops/208813"], ["https://data.delijn.be/stops/103598", "https://data.delijn.be/stops/108914"], ["https://data.delijn.be/stops/407080", "https://data.delijn.be/stops/409028"], ["https://data.delijn.be/stops/206535", "https://data.delijn.be/stops/207645"], ["https://data.delijn.be/stops/503874", "https://data.delijn.be/stops/508563"], ["https://data.delijn.be/stops/502634", "https://data.delijn.be/stops/507444"], ["https://data.delijn.be/stops/305985", "https://data.delijn.be/stops/305986"], ["https://data.delijn.be/stops/409070", "https://data.delijn.be/stops/409086"], ["https://data.delijn.be/stops/504812", "https://data.delijn.be/stops/508473"], ["https://data.delijn.be/stops/500195", "https://data.delijn.be/stops/506207"], ["https://data.delijn.be/stops/408502", "https://data.delijn.be/stops/408503"], ["https://data.delijn.be/stops/102379", "https://data.delijn.be/stops/107716"], ["https://data.delijn.be/stops/407682", "https://data.delijn.be/stops/407693"], ["https://data.delijn.be/stops/202020", "https://data.delijn.be/stops/208889"], ["https://data.delijn.be/stops/503185", "https://data.delijn.be/stops/503201"], ["https://data.delijn.be/stops/507381", "https://data.delijn.be/stops/507388"], ["https://data.delijn.be/stops/206105", "https://data.delijn.be/stops/306726"], ["https://data.delijn.be/stops/402872", "https://data.delijn.be/stops/402873"], ["https://data.delijn.be/stops/406287", "https://data.delijn.be/stops/410131"], ["https://data.delijn.be/stops/103241", "https://data.delijn.be/stops/107301"], ["https://data.delijn.be/stops/107916", "https://data.delijn.be/stops/308845"], ["https://data.delijn.be/stops/305308", "https://data.delijn.be/stops/305309"], ["https://data.delijn.be/stops/407707", "https://data.delijn.be/stops/407768"], ["https://data.delijn.be/stops/302697", "https://data.delijn.be/stops/302702"], ["https://data.delijn.be/stops/201188", "https://data.delijn.be/stops/201189"], ["https://data.delijn.be/stops/502004", "https://data.delijn.be/stops/505744"], ["https://data.delijn.be/stops/504993", "https://data.delijn.be/stops/508845"], ["https://data.delijn.be/stops/501311", "https://data.delijn.be/stops/506311"], ["https://data.delijn.be/stops/508313", "https://data.delijn.be/stops/508433"], ["https://data.delijn.be/stops/206683", "https://data.delijn.be/stops/207605"], ["https://data.delijn.be/stops/201140", "https://data.delijn.be/stops/201607"], ["https://data.delijn.be/stops/500562", "https://data.delijn.be/stops/506031"], ["https://data.delijn.be/stops/407831", "https://data.delijn.be/stops/407977"], ["https://data.delijn.be/stops/302180", "https://data.delijn.be/stops/305090"], ["https://data.delijn.be/stops/200550", "https://data.delijn.be/stops/201518"], ["https://data.delijn.be/stops/504164", "https://data.delijn.be/stops/504176"], ["https://data.delijn.be/stops/103676", "https://data.delijn.be/stops/106216"], ["https://data.delijn.be/stops/503457", "https://data.delijn.be/stops/503477"], ["https://data.delijn.be/stops/207254", "https://data.delijn.be/stops/207993"], ["https://data.delijn.be/stops/103088", "https://data.delijn.be/stops/107469"], ["https://data.delijn.be/stops/300515", "https://data.delijn.be/stops/300516"], ["https://data.delijn.be/stops/304982", "https://data.delijn.be/stops/304983"], ["https://data.delijn.be/stops/405214", "https://data.delijn.be/stops/405296"], ["https://data.delijn.be/stops/304762", "https://data.delijn.be/stops/304768"], ["https://data.delijn.be/stops/206867", "https://data.delijn.be/stops/208813"], ["https://data.delijn.be/stops/505633", "https://data.delijn.be/stops/509807"], ["https://data.delijn.be/stops/201955", "https://data.delijn.be/stops/202286"], ["https://data.delijn.be/stops/505809", "https://data.delijn.be/stops/508828"], ["https://data.delijn.be/stops/503323", "https://data.delijn.be/stops/508319"], ["https://data.delijn.be/stops/304279", "https://data.delijn.be/stops/304282"], ["https://data.delijn.be/stops/404827", "https://data.delijn.be/stops/405586"], ["https://data.delijn.be/stops/401491", "https://data.delijn.be/stops/406888"], ["https://data.delijn.be/stops/305267", "https://data.delijn.be/stops/305268"], ["https://data.delijn.be/stops/400695", "https://data.delijn.be/stops/400784"], ["https://data.delijn.be/stops/502729", "https://data.delijn.be/stops/507729"], ["https://data.delijn.be/stops/109716", "https://data.delijn.be/stops/109717"], ["https://data.delijn.be/stops/504978", "https://data.delijn.be/stops/509091"], ["https://data.delijn.be/stops/200004", "https://data.delijn.be/stops/200006"], ["https://data.delijn.be/stops/402098", "https://data.delijn.be/stops/402260"], ["https://data.delijn.be/stops/104391", "https://data.delijn.be/stops/104492"], ["https://data.delijn.be/stops/204978", "https://data.delijn.be/stops/205978"], ["https://data.delijn.be/stops/305527", "https://data.delijn.be/stops/305530"], ["https://data.delijn.be/stops/500195", "https://data.delijn.be/stops/507386"], ["https://data.delijn.be/stops/503756", "https://data.delijn.be/stops/508324"], ["https://data.delijn.be/stops/206164", "https://data.delijn.be/stops/207164"], ["https://data.delijn.be/stops/207595", "https://data.delijn.be/stops/207596"], ["https://data.delijn.be/stops/107984", "https://data.delijn.be/stops/307903"], ["https://data.delijn.be/stops/302009", "https://data.delijn.be/stops/306381"], ["https://data.delijn.be/stops/402690", "https://data.delijn.be/stops/306036"], ["https://data.delijn.be/stops/504620", "https://data.delijn.be/stops/509616"], ["https://data.delijn.be/stops/401315", "https://data.delijn.be/stops/401324"], ["https://data.delijn.be/stops/201770", "https://data.delijn.be/stops/201771"], ["https://data.delijn.be/stops/403000", "https://data.delijn.be/stops/403089"], ["https://data.delijn.be/stops/204003", "https://data.delijn.be/stops/205103"], ["https://data.delijn.be/stops/206843", "https://data.delijn.be/stops/304890"], ["https://data.delijn.be/stops/404107", "https://data.delijn.be/stops/404126"], ["https://data.delijn.be/stops/300825", "https://data.delijn.be/stops/303832"], ["https://data.delijn.be/stops/405058", "https://data.delijn.be/stops/405066"], ["https://data.delijn.be/stops/304760", "https://data.delijn.be/stops/304761"], ["https://data.delijn.be/stops/104749", "https://data.delijn.be/stops/104752"], ["https://data.delijn.be/stops/204552", "https://data.delijn.be/stops/205298"], ["https://data.delijn.be/stops/200593", "https://data.delijn.be/stops/201594"], ["https://data.delijn.be/stops/408598", "https://data.delijn.be/stops/408636"], ["https://data.delijn.be/stops/102203", "https://data.delijn.be/stops/102206"], ["https://data.delijn.be/stops/302965", "https://data.delijn.be/stops/303006"], ["https://data.delijn.be/stops/403963", "https://data.delijn.be/stops/403969"], ["https://data.delijn.be/stops/300277", "https://data.delijn.be/stops/300285"], ["https://data.delijn.be/stops/101205", "https://data.delijn.be/stops/102595"], ["https://data.delijn.be/stops/300018", "https://data.delijn.be/stops/301137"], ["https://data.delijn.be/stops/302741", "https://data.delijn.be/stops/307045"], ["https://data.delijn.be/stops/208556", "https://data.delijn.be/stops/208557"], ["https://data.delijn.be/stops/200996", "https://data.delijn.be/stops/201319"], ["https://data.delijn.be/stops/208838", "https://data.delijn.be/stops/209210"], ["https://data.delijn.be/stops/303844", "https://data.delijn.be/stops/307492"], ["https://data.delijn.be/stops/206550", "https://data.delijn.be/stops/207550"], ["https://data.delijn.be/stops/102612", "https://data.delijn.be/stops/107049"], ["https://data.delijn.be/stops/305439", "https://data.delijn.be/stops/305512"], ["https://data.delijn.be/stops/103542", "https://data.delijn.be/stops/108220"], ["https://data.delijn.be/stops/206764", "https://data.delijn.be/stops/206785"], ["https://data.delijn.be/stops/408090", "https://data.delijn.be/stops/408285"], ["https://data.delijn.be/stops/206337", "https://data.delijn.be/stops/207338"], ["https://data.delijn.be/stops/102195", "https://data.delijn.be/stops/105315"], ["https://data.delijn.be/stops/302769", "https://data.delijn.be/stops/302770"], ["https://data.delijn.be/stops/500016", "https://data.delijn.be/stops/502465"], ["https://data.delijn.be/stops/204423", "https://data.delijn.be/stops/205430"], ["https://data.delijn.be/stops/400315", "https://data.delijn.be/stops/402758"], ["https://data.delijn.be/stops/403370", "https://data.delijn.be/stops/410282"], ["https://data.delijn.be/stops/405455", "https://data.delijn.be/stops/308823"], ["https://data.delijn.be/stops/403703", "https://data.delijn.be/stops/403791"], ["https://data.delijn.be/stops/204112", "https://data.delijn.be/stops/204113"], ["https://data.delijn.be/stops/206465", "https://data.delijn.be/stops/207466"], ["https://data.delijn.be/stops/301360", "https://data.delijn.be/stops/308710"], ["https://data.delijn.be/stops/307014", "https://data.delijn.be/stops/307015"], ["https://data.delijn.be/stops/305561", "https://data.delijn.be/stops/308550"], ["https://data.delijn.be/stops/300994", "https://data.delijn.be/stops/306048"], ["https://data.delijn.be/stops/105898", "https://data.delijn.be/stops/105901"], ["https://data.delijn.be/stops/106125", "https://data.delijn.be/stops/106126"], ["https://data.delijn.be/stops/306911", "https://data.delijn.be/stops/306913"], ["https://data.delijn.be/stops/206743", "https://data.delijn.be/stops/206744"], ["https://data.delijn.be/stops/300335", "https://data.delijn.be/stops/304440"], ["https://data.delijn.be/stops/200491", "https://data.delijn.be/stops/202452"], ["https://data.delijn.be/stops/503384", "https://data.delijn.be/stops/508356"], ["https://data.delijn.be/stops/408244", "https://data.delijn.be/stops/408245"], ["https://data.delijn.be/stops/405618", "https://data.delijn.be/stops/407185"], ["https://data.delijn.be/stops/107358", "https://data.delijn.be/stops/107361"], ["https://data.delijn.be/stops/503069", "https://data.delijn.be/stops/508869"], ["https://data.delijn.be/stops/503866", "https://data.delijn.be/stops/503876"], ["https://data.delijn.be/stops/104378", "https://data.delijn.be/stops/204258"], ["https://data.delijn.be/stops/302262", "https://data.delijn.be/stops/302969"], ["https://data.delijn.be/stops/206622", "https://data.delijn.be/stops/206756"], ["https://data.delijn.be/stops/303652", "https://data.delijn.be/stops/304872"], ["https://data.delijn.be/stops/304219", "https://data.delijn.be/stops/304221"], ["https://data.delijn.be/stops/208198", "https://data.delijn.be/stops/209198"], ["https://data.delijn.be/stops/305776", "https://data.delijn.be/stops/306879"], ["https://data.delijn.be/stops/200661", "https://data.delijn.be/stops/201466"], ["https://data.delijn.be/stops/505393", "https://data.delijn.be/stops/508606"], ["https://data.delijn.be/stops/108556", "https://data.delijn.be/stops/109601"], ["https://data.delijn.be/stops/104953", "https://data.delijn.be/stops/406508"], ["https://data.delijn.be/stops/400060", "https://data.delijn.be/stops/400061"], ["https://data.delijn.be/stops/406316", "https://data.delijn.be/stops/406317"], ["https://data.delijn.be/stops/101511", "https://data.delijn.be/stops/305995"], ["https://data.delijn.be/stops/303035", "https://data.delijn.be/stops/303114"], ["https://data.delijn.be/stops/400900", "https://data.delijn.be/stops/400901"], ["https://data.delijn.be/stops/306694", "https://data.delijn.be/stops/306695"], ["https://data.delijn.be/stops/208785", "https://data.delijn.be/stops/209177"], ["https://data.delijn.be/stops/502276", "https://data.delijn.be/stops/507276"], ["https://data.delijn.be/stops/207630", "https://data.delijn.be/stops/209570"], ["https://data.delijn.be/stops/105536", "https://data.delijn.be/stops/105537"], ["https://data.delijn.be/stops/106980", "https://data.delijn.be/stops/106981"], ["https://data.delijn.be/stops/503550", "https://data.delijn.be/stops/503561"], ["https://data.delijn.be/stops/503526", "https://data.delijn.be/stops/508523"], ["https://data.delijn.be/stops/401365", "https://data.delijn.be/stops/401374"], ["https://data.delijn.be/stops/101653", "https://data.delijn.be/stops/107921"], ["https://data.delijn.be/stops/504286", "https://data.delijn.be/stops/509286"], ["https://data.delijn.be/stops/403376", "https://data.delijn.be/stops/410282"], ["https://data.delijn.be/stops/507176", "https://data.delijn.be/stops/508691"], ["https://data.delijn.be/stops/206332", "https://data.delijn.be/stops/207332"], ["https://data.delijn.be/stops/404483", "https://data.delijn.be/stops/409258"], ["https://data.delijn.be/stops/408493", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/504704", "https://data.delijn.be/stops/509028"], ["https://data.delijn.be/stops/106633", "https://data.delijn.be/stops/106636"], ["https://data.delijn.be/stops/208749", "https://data.delijn.be/stops/209295"], ["https://data.delijn.be/stops/203638", "https://data.delijn.be/stops/205073"], ["https://data.delijn.be/stops/502049", "https://data.delijn.be/stops/505768"], ["https://data.delijn.be/stops/305389", "https://data.delijn.be/stops/305417"], ["https://data.delijn.be/stops/101534", "https://data.delijn.be/stops/108777"], ["https://data.delijn.be/stops/109438", "https://data.delijn.be/stops/109441"], ["https://data.delijn.be/stops/206496", "https://data.delijn.be/stops/206507"], ["https://data.delijn.be/stops/101079", "https://data.delijn.be/stops/107140"], ["https://data.delijn.be/stops/109854", "https://data.delijn.be/stops/109979"], ["https://data.delijn.be/stops/404104", "https://data.delijn.be/stops/404126"], ["https://data.delijn.be/stops/402119", "https://data.delijn.be/stops/403688"], ["https://data.delijn.be/stops/401239", "https://data.delijn.be/stops/401264"], ["https://data.delijn.be/stops/104105", "https://data.delijn.be/stops/104840"], ["https://data.delijn.be/stops/304938", "https://data.delijn.be/stops/304939"], ["https://data.delijn.be/stops/406742", "https://data.delijn.be/stops/406743"], ["https://data.delijn.be/stops/109374", "https://data.delijn.be/stops/109375"], ["https://data.delijn.be/stops/502754", "https://data.delijn.be/stops/502755"], ["https://data.delijn.be/stops/106609", "https://data.delijn.be/stops/106690"], ["https://data.delijn.be/stops/305725", "https://data.delijn.be/stops/305728"], ["https://data.delijn.be/stops/207143", "https://data.delijn.be/stops/207298"], ["https://data.delijn.be/stops/102645", "https://data.delijn.be/stops/105400"], ["https://data.delijn.be/stops/407854", "https://data.delijn.be/stops/407858"], ["https://data.delijn.be/stops/402539", "https://data.delijn.be/stops/410022"], ["https://data.delijn.be/stops/206334", "https://data.delijn.be/stops/206363"], ["https://data.delijn.be/stops/503340", "https://data.delijn.be/stops/505629"], ["https://data.delijn.be/stops/400471", "https://data.delijn.be/stops/408824"], ["https://data.delijn.be/stops/405458", "https://data.delijn.be/stops/302848"], ["https://data.delijn.be/stops/503363", "https://data.delijn.be/stops/508360"], ["https://data.delijn.be/stops/300982", "https://data.delijn.be/stops/304721"], ["https://data.delijn.be/stops/403865", "https://data.delijn.be/stops/403872"], ["https://data.delijn.be/stops/401769", "https://data.delijn.be/stops/406346"], ["https://data.delijn.be/stops/300260", "https://data.delijn.be/stops/300271"], ["https://data.delijn.be/stops/201305", "https://data.delijn.be/stops/202764"], ["https://data.delijn.be/stops/406127", "https://data.delijn.be/stops/406148"], ["https://data.delijn.be/stops/101796", "https://data.delijn.be/stops/103216"], ["https://data.delijn.be/stops/104974", "https://data.delijn.be/stops/109553"], ["https://data.delijn.be/stops/300997", "https://data.delijn.be/stops/300998"], ["https://data.delijn.be/stops/300012", "https://data.delijn.be/stops/300756"], ["https://data.delijn.be/stops/400892", "https://data.delijn.be/stops/400893"], ["https://data.delijn.be/stops/407860", "https://data.delijn.be/stops/301846"], ["https://data.delijn.be/stops/306716", "https://data.delijn.be/stops/306718"], ["https://data.delijn.be/stops/406900", "https://data.delijn.be/stops/409454"], ["https://data.delijn.be/stops/201225", "https://data.delijn.be/stops/201226"], ["https://data.delijn.be/stops/206967", "https://data.delijn.be/stops/206996"], ["https://data.delijn.be/stops/102287", "https://data.delijn.be/stops/109007"], ["https://data.delijn.be/stops/304125", "https://data.delijn.be/stops/305897"], ["https://data.delijn.be/stops/201423", "https://data.delijn.be/stops/208719"], ["https://data.delijn.be/stops/504269", "https://data.delijn.be/stops/509271"], ["https://data.delijn.be/stops/510005", "https://data.delijn.be/stops/510006"], ["https://data.delijn.be/stops/502323", "https://data.delijn.be/stops/507323"], ["https://data.delijn.be/stops/201166", "https://data.delijn.be/stops/201749"], ["https://data.delijn.be/stops/400051", "https://data.delijn.be/stops/400167"], ["https://data.delijn.be/stops/207758", "https://data.delijn.be/stops/208184"], ["https://data.delijn.be/stops/102012", "https://data.delijn.be/stops/107876"], ["https://data.delijn.be/stops/300854", "https://data.delijn.be/stops/306052"], ["https://data.delijn.be/stops/107434", "https://data.delijn.be/stops/107526"], ["https://data.delijn.be/stops/402245", "https://data.delijn.be/stops/402252"], ["https://data.delijn.be/stops/508508", "https://data.delijn.be/stops/508511"], ["https://data.delijn.be/stops/202491", "https://data.delijn.be/stops/203490"], ["https://data.delijn.be/stops/201780", "https://data.delijn.be/stops/201820"], ["https://data.delijn.be/stops/301682", "https://data.delijn.be/stops/306294"], ["https://data.delijn.be/stops/305752", "https://data.delijn.be/stops/305753"], ["https://data.delijn.be/stops/209600", "https://data.delijn.be/stops/307303"], ["https://data.delijn.be/stops/507066", "https://data.delijn.be/stops/507070"], ["https://data.delijn.be/stops/105808", "https://data.delijn.be/stops/105809"], ["https://data.delijn.be/stops/202693", "https://data.delijn.be/stops/203693"], ["https://data.delijn.be/stops/409592", "https://data.delijn.be/stops/409594"], ["https://data.delijn.be/stops/508832", "https://data.delijn.be/stops/508833"], ["https://data.delijn.be/stops/101909", "https://data.delijn.be/stops/107920"], ["https://data.delijn.be/stops/410116", "https://data.delijn.be/stops/410327"], ["https://data.delijn.be/stops/302507", "https://data.delijn.be/stops/305802"], ["https://data.delijn.be/stops/502149", "https://data.delijn.be/stops/507135"], ["https://data.delijn.be/stops/200807", "https://data.delijn.be/stops/203389"], ["https://data.delijn.be/stops/206319", "https://data.delijn.be/stops/207319"], ["https://data.delijn.be/stops/402573", "https://data.delijn.be/stops/402617"], ["https://data.delijn.be/stops/301236", "https://data.delijn.be/stops/307622"], ["https://data.delijn.be/stops/404449", "https://data.delijn.be/stops/404537"], ["https://data.delijn.be/stops/400238", "https://data.delijn.be/stops/400239"], ["https://data.delijn.be/stops/405825", "https://data.delijn.be/stops/409746"], ["https://data.delijn.be/stops/202822", "https://data.delijn.be/stops/219503"], ["https://data.delijn.be/stops/503863", "https://data.delijn.be/stops/504695"], ["https://data.delijn.be/stops/300073", "https://data.delijn.be/stops/304670"], ["https://data.delijn.be/stops/104671", "https://data.delijn.be/stops/107379"], ["https://data.delijn.be/stops/107215", "https://data.delijn.be/stops/108255"], ["https://data.delijn.be/stops/103253", "https://data.delijn.be/stops/105715"], ["https://data.delijn.be/stops/208631", "https://data.delijn.be/stops/209631"], ["https://data.delijn.be/stops/405980", "https://data.delijn.be/stops/405985"], ["https://data.delijn.be/stops/405262", "https://data.delijn.be/stops/405279"], ["https://data.delijn.be/stops/107344", "https://data.delijn.be/stops/108161"], ["https://data.delijn.be/stops/206676", "https://data.delijn.be/stops/209165"], ["https://data.delijn.be/stops/203850", "https://data.delijn.be/stops/203948"], ["https://data.delijn.be/stops/104005", "https://data.delijn.be/stops/108900"], ["https://data.delijn.be/stops/403798", "https://data.delijn.be/stops/403806"], ["https://data.delijn.be/stops/103532", "https://data.delijn.be/stops/106339"], ["https://data.delijn.be/stops/503502", "https://data.delijn.be/stops/508868"], ["https://data.delijn.be/stops/303343", "https://data.delijn.be/stops/303345"], ["https://data.delijn.be/stops/107122", "https://data.delijn.be/stops/107124"], ["https://data.delijn.be/stops/408183", "https://data.delijn.be/stops/408443"], ["https://data.delijn.be/stops/207595", "https://data.delijn.be/stops/209515"], ["https://data.delijn.be/stops/206062", "https://data.delijn.be/stops/207063"], ["https://data.delijn.be/stops/501235", "https://data.delijn.be/stops/501245"], ["https://data.delijn.be/stops/204169", "https://data.delijn.be/stops/204771"], ["https://data.delijn.be/stops/206493", "https://data.delijn.be/stops/206495"], ["https://data.delijn.be/stops/503626", "https://data.delijn.be/stops/503628"], ["https://data.delijn.be/stops/204463", "https://data.delijn.be/stops/214017"], ["https://data.delijn.be/stops/300624", "https://data.delijn.be/stops/300627"], ["https://data.delijn.be/stops/208177", "https://data.delijn.be/stops/208178"], ["https://data.delijn.be/stops/508131", "https://data.delijn.be/stops/508132"], ["https://data.delijn.be/stops/306815", "https://data.delijn.be/stops/308507"], ["https://data.delijn.be/stops/407088", "https://data.delijn.be/stops/409494"], ["https://data.delijn.be/stops/306064", "https://data.delijn.be/stops/307715"], ["https://data.delijn.be/stops/405079", "https://data.delijn.be/stops/405090"], ["https://data.delijn.be/stops/201673", "https://data.delijn.be/stops/203208"], ["https://data.delijn.be/stops/407341", "https://data.delijn.be/stops/409355"], ["https://data.delijn.be/stops/206427", "https://data.delijn.be/stops/206428"], ["https://data.delijn.be/stops/202051", "https://data.delijn.be/stops/203051"], ["https://data.delijn.be/stops/205977", "https://data.delijn.be/stops/209245"], ["https://data.delijn.be/stops/404522", "https://data.delijn.be/stops/404523"], ["https://data.delijn.be/stops/308012", "https://data.delijn.be/stops/308013"], ["https://data.delijn.be/stops/207371", "https://data.delijn.be/stops/207372"], ["https://data.delijn.be/stops/201746", "https://data.delijn.be/stops/201773"], ["https://data.delijn.be/stops/502011", "https://data.delijn.be/stops/507011"], ["https://data.delijn.be/stops/300387", "https://data.delijn.be/stops/300388"], ["https://data.delijn.be/stops/406471", "https://data.delijn.be/stops/406496"], ["https://data.delijn.be/stops/108952", "https://data.delijn.be/stops/109220"], ["https://data.delijn.be/stops/104043", "https://data.delijn.be/stops/305456"], ["https://data.delijn.be/stops/302842", "https://data.delijn.be/stops/303334"], ["https://data.delijn.be/stops/102519", "https://data.delijn.be/stops/102552"], ["https://data.delijn.be/stops/105302", "https://data.delijn.be/stops/105363"], ["https://data.delijn.be/stops/502611", "https://data.delijn.be/stops/507611"], ["https://data.delijn.be/stops/504816", "https://data.delijn.be/stops/508028"], ["https://data.delijn.be/stops/504497", "https://data.delijn.be/stops/509504"], ["https://data.delijn.be/stops/504214", "https://data.delijn.be/stops/504523"], ["https://data.delijn.be/stops/590332", "https://data.delijn.be/stops/590333"], ["https://data.delijn.be/stops/305595", "https://data.delijn.be/stops/305604"], ["https://data.delijn.be/stops/400423", "https://data.delijn.be/stops/409424"], ["https://data.delijn.be/stops/107735", "https://data.delijn.be/stops/108555"], ["https://data.delijn.be/stops/206672", "https://data.delijn.be/stops/208095"], ["https://data.delijn.be/stops/206539", "https://data.delijn.be/stops/207539"], ["https://data.delijn.be/stops/206688", "https://data.delijn.be/stops/207341"], ["https://data.delijn.be/stops/105057", "https://data.delijn.be/stops/105169"], ["https://data.delijn.be/stops/202412", "https://data.delijn.be/stops/202413"], ["https://data.delijn.be/stops/403118", "https://data.delijn.be/stops/403119"], ["https://data.delijn.be/stops/502658", "https://data.delijn.be/stops/507323"], ["https://data.delijn.be/stops/300226", "https://data.delijn.be/stops/300227"], ["https://data.delijn.be/stops/200271", "https://data.delijn.be/stops/200273"], ["https://data.delijn.be/stops/404686", "https://data.delijn.be/stops/408908"], ["https://data.delijn.be/stops/102064", "https://data.delijn.be/stops/106926"], ["https://data.delijn.be/stops/504200", "https://data.delijn.be/stops/504707"], ["https://data.delijn.be/stops/101425", "https://data.delijn.be/stops/106958"], ["https://data.delijn.be/stops/400934", "https://data.delijn.be/stops/401923"], ["https://data.delijn.be/stops/104945", "https://data.delijn.be/stops/105840"], ["https://data.delijn.be/stops/404152", "https://data.delijn.be/stops/404162"], ["https://data.delijn.be/stops/407357", "https://data.delijn.be/stops/407468"], ["https://data.delijn.be/stops/302946", "https://data.delijn.be/stops/302980"], ["https://data.delijn.be/stops/205244", "https://data.delijn.be/stops/205905"], ["https://data.delijn.be/stops/302873", "https://data.delijn.be/stops/302927"], ["https://data.delijn.be/stops/103944", "https://data.delijn.be/stops/107323"], ["https://data.delijn.be/stops/104905", "https://data.delijn.be/stops/107310"], ["https://data.delijn.be/stops/401192", "https://data.delijn.be/stops/407323"], ["https://data.delijn.be/stops/404619", "https://data.delijn.be/stops/404620"], ["https://data.delijn.be/stops/405992", "https://data.delijn.be/stops/405993"], ["https://data.delijn.be/stops/300028", "https://data.delijn.be/stops/300052"], ["https://data.delijn.be/stops/208537", "https://data.delijn.be/stops/209537"], ["https://data.delijn.be/stops/200594", "https://data.delijn.be/stops/201594"], ["https://data.delijn.be/stops/103764", "https://data.delijn.be/stops/105576"], ["https://data.delijn.be/stops/202106", "https://data.delijn.be/stops/203107"], ["https://data.delijn.be/stops/204679", "https://data.delijn.be/stops/205657"], ["https://data.delijn.be/stops/508312", "https://data.delijn.be/stops/508748"], ["https://data.delijn.be/stops/404357", "https://data.delijn.be/stops/404359"], ["https://data.delijn.be/stops/200074", "https://data.delijn.be/stops/202352"], ["https://data.delijn.be/stops/206763", "https://data.delijn.be/stops/207622"], ["https://data.delijn.be/stops/400479", "https://data.delijn.be/stops/407648"], ["https://data.delijn.be/stops/505389", "https://data.delijn.be/stops/505394"], ["https://data.delijn.be/stops/106463", "https://data.delijn.be/stops/106465"], ["https://data.delijn.be/stops/200168", "https://data.delijn.be/stops/202625"], ["https://data.delijn.be/stops/508800", "https://data.delijn.be/stops/509726"], ["https://data.delijn.be/stops/101536", "https://data.delijn.be/stops/109049"], ["https://data.delijn.be/stops/200216", "https://data.delijn.be/stops/200259"], ["https://data.delijn.be/stops/101134", "https://data.delijn.be/stops/108355"], ["https://data.delijn.be/stops/202253", "https://data.delijn.be/stops/202254"], ["https://data.delijn.be/stops/206720", "https://data.delijn.be/stops/206729"], ["https://data.delijn.be/stops/403222", "https://data.delijn.be/stops/403402"], ["https://data.delijn.be/stops/108065", "https://data.delijn.be/stops/108210"], ["https://data.delijn.be/stops/504650", "https://data.delijn.be/stops/505787"], ["https://data.delijn.be/stops/501174", "https://data.delijn.be/stops/506781"], ["https://data.delijn.be/stops/200512", "https://data.delijn.be/stops/201016"], ["https://data.delijn.be/stops/200703", "https://data.delijn.be/stops/202572"], ["https://data.delijn.be/stops/402656", "https://data.delijn.be/stops/402738"], ["https://data.delijn.be/stops/102727", "https://data.delijn.be/stops/104108"], ["https://data.delijn.be/stops/507268", "https://data.delijn.be/stops/507672"], ["https://data.delijn.be/stops/408319", "https://data.delijn.be/stops/408328"], ["https://data.delijn.be/stops/101825", "https://data.delijn.be/stops/102065"], ["https://data.delijn.be/stops/300365", "https://data.delijn.be/stops/304054"], ["https://data.delijn.be/stops/403059", "https://data.delijn.be/stops/403404"], ["https://data.delijn.be/stops/409026", "https://data.delijn.be/stops/409028"], ["https://data.delijn.be/stops/303332", "https://data.delijn.be/stops/303333"], ["https://data.delijn.be/stops/304473", "https://data.delijn.be/stops/304485"], ["https://data.delijn.be/stops/300824", "https://data.delijn.be/stops/300827"], ["https://data.delijn.be/stops/503801", "https://data.delijn.be/stops/508896"], ["https://data.delijn.be/stops/506104", "https://data.delijn.be/stops/506106"], ["https://data.delijn.be/stops/201851", "https://data.delijn.be/stops/201876"], ["https://data.delijn.be/stops/501562", "https://data.delijn.be/stops/506363"], ["https://data.delijn.be/stops/108939", "https://data.delijn.be/stops/109222"], ["https://data.delijn.be/stops/403255", "https://data.delijn.be/stops/403397"], ["https://data.delijn.be/stops/203146", "https://data.delijn.be/stops/203147"], ["https://data.delijn.be/stops/101020", "https://data.delijn.be/stops/102816"], ["https://data.delijn.be/stops/200812", "https://data.delijn.be/stops/203054"], ["https://data.delijn.be/stops/109391", "https://data.delijn.be/stops/405767"], ["https://data.delijn.be/stops/103398", "https://data.delijn.be/stops/106827"], ["https://data.delijn.be/stops/103074", "https://data.delijn.be/stops/105168"], ["https://data.delijn.be/stops/505578", "https://data.delijn.be/stops/508981"], ["https://data.delijn.be/stops/301854", "https://data.delijn.be/stops/306989"], ["https://data.delijn.be/stops/302460", "https://data.delijn.be/stops/308600"], ["https://data.delijn.be/stops/206286", "https://data.delijn.be/stops/207286"], ["https://data.delijn.be/stops/204229", "https://data.delijn.be/stops/205230"], ["https://data.delijn.be/stops/202731", "https://data.delijn.be/stops/203844"], ["https://data.delijn.be/stops/502610", "https://data.delijn.be/stops/502611"], ["https://data.delijn.be/stops/102722", "https://data.delijn.be/stops/108311"], ["https://data.delijn.be/stops/508926", "https://data.delijn.be/stops/508927"], ["https://data.delijn.be/stops/208052", "https://data.delijn.be/stops/209053"], ["https://data.delijn.be/stops/300471", "https://data.delijn.be/stops/306288"], ["https://data.delijn.be/stops/302011", "https://data.delijn.be/stops/308755"], ["https://data.delijn.be/stops/405835", "https://data.delijn.be/stops/405865"], ["https://data.delijn.be/stops/308150", "https://data.delijn.be/stops/308152"], ["https://data.delijn.be/stops/101932", "https://data.delijn.be/stops/106254"], ["https://data.delijn.be/stops/204076", "https://data.delijn.be/stops/204081"], ["https://data.delijn.be/stops/108697", "https://data.delijn.be/stops/109532"], ["https://data.delijn.be/stops/408126", "https://data.delijn.be/stops/408172"], ["https://data.delijn.be/stops/109289", "https://data.delijn.be/stops/109290"], ["https://data.delijn.be/stops/401752", "https://data.delijn.be/stops/401872"], ["https://data.delijn.be/stops/205655", "https://data.delijn.be/stops/205670"], ["https://data.delijn.be/stops/303258", "https://data.delijn.be/stops/303259"], ["https://data.delijn.be/stops/406305", "https://data.delijn.be/stops/406317"], ["https://data.delijn.be/stops/101839", "https://data.delijn.be/stops/102440"], ["https://data.delijn.be/stops/102071", "https://data.delijn.be/stops/107304"], ["https://data.delijn.be/stops/306731", "https://data.delijn.be/stops/306732"], ["https://data.delijn.be/stops/105876", "https://data.delijn.be/stops/105877"], ["https://data.delijn.be/stops/206534", "https://data.delijn.be/stops/206535"], ["https://data.delijn.be/stops/208795", "https://data.delijn.be/stops/209795"], ["https://data.delijn.be/stops/500127", "https://data.delijn.be/stops/505074"], ["https://data.delijn.be/stops/103993", "https://data.delijn.be/stops/105319"], ["https://data.delijn.be/stops/409636", "https://data.delijn.be/stops/410035"], ["https://data.delijn.be/stops/502019", "https://data.delijn.be/stops/507019"], ["https://data.delijn.be/stops/304867", "https://data.delijn.be/stops/307608"], ["https://data.delijn.be/stops/206068", "https://data.delijn.be/stops/206074"], ["https://data.delijn.be/stops/402809", "https://data.delijn.be/stops/402835"], ["https://data.delijn.be/stops/503190", "https://data.delijn.be/stops/508196"], ["https://data.delijn.be/stops/505127", "https://data.delijn.be/stops/505128"], ["https://data.delijn.be/stops/502378", "https://data.delijn.be/stops/507408"], ["https://data.delijn.be/stops/101481", "https://data.delijn.be/stops/108218"], ["https://data.delijn.be/stops/206504", "https://data.delijn.be/stops/207497"], ["https://data.delijn.be/stops/204183", "https://data.delijn.be/stops/204355"], ["https://data.delijn.be/stops/300160", "https://data.delijn.be/stops/301208"], ["https://data.delijn.be/stops/403335", "https://data.delijn.be/stops/407075"], ["https://data.delijn.be/stops/503641", "https://data.delijn.be/stops/508641"], ["https://data.delijn.be/stops/404103", "https://data.delijn.be/stops/404128"], ["https://data.delijn.be/stops/307369", "https://data.delijn.be/stops/307376"], ["https://data.delijn.be/stops/408890", "https://data.delijn.be/stops/408903"], ["https://data.delijn.be/stops/503632", "https://data.delijn.be/stops/508625"], ["https://data.delijn.be/stops/400532", "https://data.delijn.be/stops/403195"], ["https://data.delijn.be/stops/102681", "https://data.delijn.be/stops/204608"], ["https://data.delijn.be/stops/203906", "https://data.delijn.be/stops/219953"], ["https://data.delijn.be/stops/503272", "https://data.delijn.be/stops/505129"], ["https://data.delijn.be/stops/500115", "https://data.delijn.be/stops/507462"], ["https://data.delijn.be/stops/507407", "https://data.delijn.be/stops/507681"], ["https://data.delijn.be/stops/503046", "https://data.delijn.be/stops/508624"], ["https://data.delijn.be/stops/202972", "https://data.delijn.be/stops/205074"], ["https://data.delijn.be/stops/406040", "https://data.delijn.be/stops/406062"], ["https://data.delijn.be/stops/305698", "https://data.delijn.be/stops/305750"], ["https://data.delijn.be/stops/301973", "https://data.delijn.be/stops/302921"], ["https://data.delijn.be/stops/300262", "https://data.delijn.be/stops/304935"], ["https://data.delijn.be/stops/202778", "https://data.delijn.be/stops/203778"], ["https://data.delijn.be/stops/206576", "https://data.delijn.be/stops/209126"], ["https://data.delijn.be/stops/104856", "https://data.delijn.be/stops/106854"], ["https://data.delijn.be/stops/303318", "https://data.delijn.be/stops/303330"], ["https://data.delijn.be/stops/209062", "https://data.delijn.be/stops/209063"], ["https://data.delijn.be/stops/401572", "https://data.delijn.be/stops/402373"], ["https://data.delijn.be/stops/303753", "https://data.delijn.be/stops/303771"], ["https://data.delijn.be/stops/502238", "https://data.delijn.be/stops/507645"], ["https://data.delijn.be/stops/505810", "https://data.delijn.be/stops/509057"], ["https://data.delijn.be/stops/403356", "https://data.delijn.be/stops/403365"], ["https://data.delijn.be/stops/202860", "https://data.delijn.be/stops/203859"], ["https://data.delijn.be/stops/406880", "https://data.delijn.be/stops/406881"], ["https://data.delijn.be/stops/401800", "https://data.delijn.be/stops/401864"], ["https://data.delijn.be/stops/206177", "https://data.delijn.be/stops/303848"], ["https://data.delijn.be/stops/303680", "https://data.delijn.be/stops/307929"], ["https://data.delijn.be/stops/509233", "https://data.delijn.be/stops/509238"], ["https://data.delijn.be/stops/104490", "https://data.delijn.be/stops/104595"], ["https://data.delijn.be/stops/508270", "https://data.delijn.be/stops/508503"], ["https://data.delijn.be/stops/301145", "https://data.delijn.be/stops/301153"], ["https://data.delijn.be/stops/402700", "https://data.delijn.be/stops/402701"], ["https://data.delijn.be/stops/206824", "https://data.delijn.be/stops/207824"], ["https://data.delijn.be/stops/201323", "https://data.delijn.be/stops/201945"], ["https://data.delijn.be/stops/302895", "https://data.delijn.be/stops/306096"], ["https://data.delijn.be/stops/405217", "https://data.delijn.be/stops/405263"], ["https://data.delijn.be/stops/401000", "https://data.delijn.be/stops/403803"], ["https://data.delijn.be/stops/300977", "https://data.delijn.be/stops/300983"], ["https://data.delijn.be/stops/206106", "https://data.delijn.be/stops/207111"], ["https://data.delijn.be/stops/210118", "https://data.delijn.be/stops/211115"], ["https://data.delijn.be/stops/504409", "https://data.delijn.be/stops/504775"], ["https://data.delijn.be/stops/409730", "https://data.delijn.be/stops/409732"], ["https://data.delijn.be/stops/404240", "https://data.delijn.be/stops/408555"], ["https://data.delijn.be/stops/200004", "https://data.delijn.be/stops/200994"], ["https://data.delijn.be/stops/108754", "https://data.delijn.be/stops/108756"], ["https://data.delijn.be/stops/200462", "https://data.delijn.be/stops/201737"], ["https://data.delijn.be/stops/406177", "https://data.delijn.be/stops/410226"], ["https://data.delijn.be/stops/304592", "https://data.delijn.be/stops/306171"], ["https://data.delijn.be/stops/403275", "https://data.delijn.be/stops/410130"], ["https://data.delijn.be/stops/306345", "https://data.delijn.be/stops/306346"], ["https://data.delijn.be/stops/408340", "https://data.delijn.be/stops/307452"], ["https://data.delijn.be/stops/504462", "https://data.delijn.be/stops/504468"], ["https://data.delijn.be/stops/508918", "https://data.delijn.be/stops/508929"], ["https://data.delijn.be/stops/304130", "https://data.delijn.be/stops/306397"], ["https://data.delijn.be/stops/302341", "https://data.delijn.be/stops/302750"], ["https://data.delijn.be/stops/405860", "https://data.delijn.be/stops/405861"], ["https://data.delijn.be/stops/504436", "https://data.delijn.be/stops/509472"], ["https://data.delijn.be/stops/408579", "https://data.delijn.be/stops/408591"], ["https://data.delijn.be/stops/304758", "https://data.delijn.be/stops/308698"], ["https://data.delijn.be/stops/302439", "https://data.delijn.be/stops/302446"], ["https://data.delijn.be/stops/103963", "https://data.delijn.be/stops/108997"], ["https://data.delijn.be/stops/302500", "https://data.delijn.be/stops/302501"], ["https://data.delijn.be/stops/208121", "https://data.delijn.be/stops/209201"], ["https://data.delijn.be/stops/502742", "https://data.delijn.be/stops/505356"], ["https://data.delijn.be/stops/300694", "https://data.delijn.be/stops/300723"], ["https://data.delijn.be/stops/102183", "https://data.delijn.be/stops/107128"], ["https://data.delijn.be/stops/304353", "https://data.delijn.be/stops/304355"], ["https://data.delijn.be/stops/201903", "https://data.delijn.be/stops/203512"], ["https://data.delijn.be/stops/105343", "https://data.delijn.be/stops/109617"], ["https://data.delijn.be/stops/204450", "https://data.delijn.be/stops/205287"], ["https://data.delijn.be/stops/201923", "https://data.delijn.be/stops/201925"], ["https://data.delijn.be/stops/403042", "https://data.delijn.be/stops/403289"], ["https://data.delijn.be/stops/504553", "https://data.delijn.be/stops/505212"], ["https://data.delijn.be/stops/400740", "https://data.delijn.be/stops/400938"], ["https://data.delijn.be/stops/405124", "https://data.delijn.be/stops/405389"], ["https://data.delijn.be/stops/505284", "https://data.delijn.be/stops/505996"], ["https://data.delijn.be/stops/104342", "https://data.delijn.be/stops/104343"], ["https://data.delijn.be/stops/200668", "https://data.delijn.be/stops/200669"], ["https://data.delijn.be/stops/300314", "https://data.delijn.be/stops/300316"], ["https://data.delijn.be/stops/200339", "https://data.delijn.be/stops/210085"], ["https://data.delijn.be/stops/104007", "https://data.delijn.be/stops/107285"], ["https://data.delijn.be/stops/404470", "https://data.delijn.be/stops/404567"], ["https://data.delijn.be/stops/204046", "https://data.delijn.be/stops/204518"], ["https://data.delijn.be/stops/101135", "https://data.delijn.be/stops/103331"], ["https://data.delijn.be/stops/501368", "https://data.delijn.be/stops/501442"], ["https://data.delijn.be/stops/503919", "https://data.delijn.be/stops/508919"], ["https://data.delijn.be/stops/501388", "https://data.delijn.be/stops/501501"], ["https://data.delijn.be/stops/300453", "https://data.delijn.be/stops/308063"], ["https://data.delijn.be/stops/503284", "https://data.delijn.be/stops/505953"], ["https://data.delijn.be/stops/102072", "https://data.delijn.be/stops/104591"], ["https://data.delijn.be/stops/406404", "https://data.delijn.be/stops/407638"], ["https://data.delijn.be/stops/400678", "https://data.delijn.be/stops/405363"], ["https://data.delijn.be/stops/403211", "https://data.delijn.be/stops/403380"], ["https://data.delijn.be/stops/302360", "https://data.delijn.be/stops/302361"], ["https://data.delijn.be/stops/305846", "https://data.delijn.be/stops/306392"], ["https://data.delijn.be/stops/101012", "https://data.delijn.be/stops/103743"], ["https://data.delijn.be/stops/304723", "https://data.delijn.be/stops/304731"], ["https://data.delijn.be/stops/300128", "https://data.delijn.be/stops/306823"], ["https://data.delijn.be/stops/205403", "https://data.delijn.be/stops/205416"], ["https://data.delijn.be/stops/109480", "https://data.delijn.be/stops/109992"], ["https://data.delijn.be/stops/504581", "https://data.delijn.be/stops/509586"], ["https://data.delijn.be/stops/200842", "https://data.delijn.be/stops/200873"], ["https://data.delijn.be/stops/104939", "https://data.delijn.be/stops/107854"], ["https://data.delijn.be/stops/106514", "https://data.delijn.be/stops/106521"], ["https://data.delijn.be/stops/509060", "https://data.delijn.be/stops/509061"], ["https://data.delijn.be/stops/105061", "https://data.delijn.be/stops/107414"], ["https://data.delijn.be/stops/103203", "https://data.delijn.be/stops/109383"], ["https://data.delijn.be/stops/101924", "https://data.delijn.be/stops/102423"], ["https://data.delijn.be/stops/407853", "https://data.delijn.be/stops/408086"], ["https://data.delijn.be/stops/105286", "https://data.delijn.be/stops/108120"], ["https://data.delijn.be/stops/109915", "https://data.delijn.be/stops/109916"], ["https://data.delijn.be/stops/302914", "https://data.delijn.be/stops/307072"], ["https://data.delijn.be/stops/402829", "https://data.delijn.be/stops/402890"], ["https://data.delijn.be/stops/410273", "https://data.delijn.be/stops/410275"], ["https://data.delijn.be/stops/207707", "https://data.delijn.be/stops/207742"], ["https://data.delijn.be/stops/405223", "https://data.delijn.be/stops/405287"], ["https://data.delijn.be/stops/305797", "https://data.delijn.be/stops/305800"], ["https://data.delijn.be/stops/303556", "https://data.delijn.be/stops/306397"], ["https://data.delijn.be/stops/209642", "https://data.delijn.be/stops/210027"], ["https://data.delijn.be/stops/506431", "https://data.delijn.be/stops/506456"], ["https://data.delijn.be/stops/202178", "https://data.delijn.be/stops/203178"], ["https://data.delijn.be/stops/107509", "https://data.delijn.be/stops/107516"], ["https://data.delijn.be/stops/408624", "https://data.delijn.be/stops/408700"], ["https://data.delijn.be/stops/208182", "https://data.delijn.be/stops/208183"], ["https://data.delijn.be/stops/204338", "https://data.delijn.be/stops/205310"], ["https://data.delijn.be/stops/300080", "https://data.delijn.be/stops/300081"], ["https://data.delijn.be/stops/505678", "https://data.delijn.be/stops/505679"], ["https://data.delijn.be/stops/300564", "https://data.delijn.be/stops/300592"], ["https://data.delijn.be/stops/202355", "https://data.delijn.be/stops/203355"], ["https://data.delijn.be/stops/102785", "https://data.delijn.be/stops/103120"], ["https://data.delijn.be/stops/401654", "https://data.delijn.be/stops/305950"], ["https://data.delijn.be/stops/101794", "https://data.delijn.be/stops/102897"], ["https://data.delijn.be/stops/308124", "https://data.delijn.be/stops/308722"], ["https://data.delijn.be/stops/305294", "https://data.delijn.be/stops/305888"], ["https://data.delijn.be/stops/109247", "https://data.delijn.be/stops/109249"], ["https://data.delijn.be/stops/200556", "https://data.delijn.be/stops/210067"], ["https://data.delijn.be/stops/202308", "https://data.delijn.be/stops/203308"], ["https://data.delijn.be/stops/403946", "https://data.delijn.be/stops/403947"], ["https://data.delijn.be/stops/503021", "https://data.delijn.be/stops/505974"], ["https://data.delijn.be/stops/302273", "https://data.delijn.be/stops/302274"], ["https://data.delijn.be/stops/206313", "https://data.delijn.be/stops/207313"], ["https://data.delijn.be/stops/200977", "https://data.delijn.be/stops/202901"], ["https://data.delijn.be/stops/306907", "https://data.delijn.be/stops/308724"], ["https://data.delijn.be/stops/103795", "https://data.delijn.be/stops/103800"], ["https://data.delijn.be/stops/303753", "https://data.delijn.be/stops/303808"], ["https://data.delijn.be/stops/204039", "https://data.delijn.be/stops/205040"], ["https://data.delijn.be/stops/307297", "https://data.delijn.be/stops/307322"], ["https://data.delijn.be/stops/502635", "https://data.delijn.be/stops/507746"], ["https://data.delijn.be/stops/101652", "https://data.delijn.be/stops/105499"], ["https://data.delijn.be/stops/300956", "https://data.delijn.be/stops/300964"], ["https://data.delijn.be/stops/303738", "https://data.delijn.be/stops/303749"], ["https://data.delijn.be/stops/403046", "https://data.delijn.be/stops/410293"], ["https://data.delijn.be/stops/202174", "https://data.delijn.be/stops/203173"], ["https://data.delijn.be/stops/103981", "https://data.delijn.be/stops/109933"], ["https://data.delijn.be/stops/401179", "https://data.delijn.be/stops/401320"], ["https://data.delijn.be/stops/503428", "https://data.delijn.be/stops/504564"], ["https://data.delijn.be/stops/102212", "https://data.delijn.be/stops/102226"], ["https://data.delijn.be/stops/505946", "https://data.delijn.be/stops/505999"], ["https://data.delijn.be/stops/400806", "https://data.delijn.be/stops/400848"], ["https://data.delijn.be/stops/102197", "https://data.delijn.be/stops/105264"], ["https://data.delijn.be/stops/400805", "https://data.delijn.be/stops/400847"], ["https://data.delijn.be/stops/205225", "https://data.delijn.be/stops/205227"], ["https://data.delijn.be/stops/106108", "https://data.delijn.be/stops/106166"], ["https://data.delijn.be/stops/302524", "https://data.delijn.be/stops/307871"], ["https://data.delijn.be/stops/104816", "https://data.delijn.be/stops/105161"], ["https://data.delijn.be/stops/303627", "https://data.delijn.be/stops/307206"], ["https://data.delijn.be/stops/308161", "https://data.delijn.be/stops/308182"], ["https://data.delijn.be/stops/208319", "https://data.delijn.be/stops/209319"], ["https://data.delijn.be/stops/204003", "https://data.delijn.be/stops/205691"], ["https://data.delijn.be/stops/208467", "https://data.delijn.be/stops/209683"], ["https://data.delijn.be/stops/201938", "https://data.delijn.be/stops/202449"], ["https://data.delijn.be/stops/306846", "https://data.delijn.be/stops/306863"], ["https://data.delijn.be/stops/204110", "https://data.delijn.be/stops/205685"], ["https://data.delijn.be/stops/302792", "https://data.delijn.be/stops/302793"], ["https://data.delijn.be/stops/207701", "https://data.delijn.be/stops/207702"], ["https://data.delijn.be/stops/202751", "https://data.delijn.be/stops/203762"], ["https://data.delijn.be/stops/107131", "https://data.delijn.be/stops/107132"], ["https://data.delijn.be/stops/207980", "https://data.delijn.be/stops/216020"], ["https://data.delijn.be/stops/400444", "https://data.delijn.be/stops/401267"], ["https://data.delijn.be/stops/200885", "https://data.delijn.be/stops/502597"], ["https://data.delijn.be/stops/403258", "https://data.delijn.be/stops/403259"], ["https://data.delijn.be/stops/302904", "https://data.delijn.be/stops/303228"], ["https://data.delijn.be/stops/102831", "https://data.delijn.be/stops/102847"], ["https://data.delijn.be/stops/300079", "https://data.delijn.be/stops/307341"], ["https://data.delijn.be/stops/308426", "https://data.delijn.be/stops/308427"], ["https://data.delijn.be/stops/308952", "https://data.delijn.be/stops/308965"], ["https://data.delijn.be/stops/503226", "https://data.delijn.be/stops/508786"], ["https://data.delijn.be/stops/206620", "https://data.delijn.be/stops/207620"], ["https://data.delijn.be/stops/201917", "https://data.delijn.be/stops/207834"], ["https://data.delijn.be/stops/200037", "https://data.delijn.be/stops/201342"], ["https://data.delijn.be/stops/302540", "https://data.delijn.be/stops/307810"], ["https://data.delijn.be/stops/102596", "https://data.delijn.be/stops/205650"], ["https://data.delijn.be/stops/204625", "https://data.delijn.be/stops/204626"], ["https://data.delijn.be/stops/301622", "https://data.delijn.be/stops/307338"], ["https://data.delijn.be/stops/306126", "https://data.delijn.be/stops/306128"], ["https://data.delijn.be/stops/505640", "https://data.delijn.be/stops/509827"], ["https://data.delijn.be/stops/400764", "https://data.delijn.be/stops/409636"], ["https://data.delijn.be/stops/202682", "https://data.delijn.be/stops/202709"], ["https://data.delijn.be/stops/201258", "https://data.delijn.be/stops/203613"], ["https://data.delijn.be/stops/303364", "https://data.delijn.be/stops/303390"], ["https://data.delijn.be/stops/300301", "https://data.delijn.be/stops/301768"], ["https://data.delijn.be/stops/404179", "https://data.delijn.be/stops/405933"], ["https://data.delijn.be/stops/302807", "https://data.delijn.be/stops/307836"], ["https://data.delijn.be/stops/201875", "https://data.delijn.be/stops/211856"], ["https://data.delijn.be/stops/103644", "https://data.delijn.be/stops/105627"], ["https://data.delijn.be/stops/502062", "https://data.delijn.be/stops/507062"], ["https://data.delijn.be/stops/303256", "https://data.delijn.be/stops/303259"], ["https://data.delijn.be/stops/303520", "https://data.delijn.be/stops/304175"], ["https://data.delijn.be/stops/206124", "https://data.delijn.be/stops/206135"], ["https://data.delijn.be/stops/408581", "https://data.delijn.be/stops/302878"], ["https://data.delijn.be/stops/104666", "https://data.delijn.be/stops/305988"], ["https://data.delijn.be/stops/109353", "https://data.delijn.be/stops/307352"], ["https://data.delijn.be/stops/402976", "https://data.delijn.be/stops/405980"], ["https://data.delijn.be/stops/204049", "https://data.delijn.be/stops/205049"], ["https://data.delijn.be/stops/501716", "https://data.delijn.be/stops/506012"], ["https://data.delijn.be/stops/400831", "https://data.delijn.be/stops/401900"], ["https://data.delijn.be/stops/205037", "https://data.delijn.be/stops/205818"], ["https://data.delijn.be/stops/207177", "https://data.delijn.be/stops/305924"], ["https://data.delijn.be/stops/106097", "https://data.delijn.be/stops/106099"], ["https://data.delijn.be/stops/501063", "https://data.delijn.be/stops/501065"], ["https://data.delijn.be/stops/404398", "https://data.delijn.be/stops/404410"], ["https://data.delijn.be/stops/300037", "https://data.delijn.be/stops/306864"], ["https://data.delijn.be/stops/404628", "https://data.delijn.be/stops/404632"], ["https://data.delijn.be/stops/207583", "https://data.delijn.be/stops/207927"], ["https://data.delijn.be/stops/501628", "https://data.delijn.be/stops/504373"], ["https://data.delijn.be/stops/502192", "https://data.delijn.be/stops/507198"], ["https://data.delijn.be/stops/504361", "https://data.delijn.be/stops/504367"], ["https://data.delijn.be/stops/204390", "https://data.delijn.be/stops/205415"], ["https://data.delijn.be/stops/201905", "https://data.delijn.be/stops/209867"], ["https://data.delijn.be/stops/408962", "https://data.delijn.be/stops/408963"], ["https://data.delijn.be/stops/204065", "https://data.delijn.be/stops/204520"], ["https://data.delijn.be/stops/302922", "https://data.delijn.be/stops/307228"], ["https://data.delijn.be/stops/208461", "https://data.delijn.be/stops/209461"], ["https://data.delijn.be/stops/209237", "https://data.delijn.be/stops/209383"], ["https://data.delijn.be/stops/300447", "https://data.delijn.be/stops/308297"], ["https://data.delijn.be/stops/304941", "https://data.delijn.be/stops/304947"], ["https://data.delijn.be/stops/301044", "https://data.delijn.be/stops/308782"], ["https://data.delijn.be/stops/402154", "https://data.delijn.be/stops/410100"], ["https://data.delijn.be/stops/405912", "https://data.delijn.be/stops/405933"], ["https://data.delijn.be/stops/203456", "https://data.delijn.be/stops/203750"], ["https://data.delijn.be/stops/504111", "https://data.delijn.be/stops/509111"], ["https://data.delijn.be/stops/502099", "https://data.delijn.be/stops/502104"], ["https://data.delijn.be/stops/107526", "https://data.delijn.be/stops/107542"], ["https://data.delijn.be/stops/403037", "https://data.delijn.be/stops/403872"], ["https://data.delijn.be/stops/300432", "https://data.delijn.be/stops/300437"], ["https://data.delijn.be/stops/206667", "https://data.delijn.be/stops/206701"], ["https://data.delijn.be/stops/200949", "https://data.delijn.be/stops/203096"], ["https://data.delijn.be/stops/105391", "https://data.delijn.be/stops/205820"], ["https://data.delijn.be/stops/104835", "https://data.delijn.be/stops/106086"], ["https://data.delijn.be/stops/505156", "https://data.delijn.be/stops/505328"], ["https://data.delijn.be/stops/300953", "https://data.delijn.be/stops/301072"], ["https://data.delijn.be/stops/301042", "https://data.delijn.be/stops/303631"], ["https://data.delijn.be/stops/504574", "https://data.delijn.be/stops/509465"], ["https://data.delijn.be/stops/109949", "https://data.delijn.be/stops/109960"], ["https://data.delijn.be/stops/200867", "https://data.delijn.be/stops/203338"], ["https://data.delijn.be/stops/300303", "https://data.delijn.be/stops/306045"], ["https://data.delijn.be/stops/103228", "https://data.delijn.be/stops/109400"], ["https://data.delijn.be/stops/102458", "https://data.delijn.be/stops/400410"], ["https://data.delijn.be/stops/403532", "https://data.delijn.be/stops/403548"], ["https://data.delijn.be/stops/300837", "https://data.delijn.be/stops/301796"], ["https://data.delijn.be/stops/200915", "https://data.delijn.be/stops/200925"], ["https://data.delijn.be/stops/302650", "https://data.delijn.be/stops/302657"], ["https://data.delijn.be/stops/401015", "https://data.delijn.be/stops/401145"], ["https://data.delijn.be/stops/206166", "https://data.delijn.be/stops/207162"], ["https://data.delijn.be/stops/206184", "https://data.delijn.be/stops/206219"], ["https://data.delijn.be/stops/206365", "https://data.delijn.be/stops/207711"], ["https://data.delijn.be/stops/302979", "https://data.delijn.be/stops/306972"], ["https://data.delijn.be/stops/303464", "https://data.delijn.be/stops/308934"], ["https://data.delijn.be/stops/503085", "https://data.delijn.be/stops/508081"], ["https://data.delijn.be/stops/201019", "https://data.delijn.be/stops/210045"], ["https://data.delijn.be/stops/107058", "https://data.delijn.be/stops/109665"], ["https://data.delijn.be/stops/404428", "https://data.delijn.be/stops/404429"], ["https://data.delijn.be/stops/205291", "https://data.delijn.be/stops/205292"], ["https://data.delijn.be/stops/400432", "https://data.delijn.be/stops/400433"], ["https://data.delijn.be/stops/206060", "https://data.delijn.be/stops/207446"], ["https://data.delijn.be/stops/300362", "https://data.delijn.be/stops/308991"], ["https://data.delijn.be/stops/505146", "https://data.delijn.be/stops/505720"], ["https://data.delijn.be/stops/400645", "https://data.delijn.be/stops/400654"], ["https://data.delijn.be/stops/302777", "https://data.delijn.be/stops/302784"], ["https://data.delijn.be/stops/204113", "https://data.delijn.be/stops/205112"], ["https://data.delijn.be/stops/400586", "https://data.delijn.be/stops/400609"], ["https://data.delijn.be/stops/301539", "https://data.delijn.be/stops/301540"], ["https://data.delijn.be/stops/101581", "https://data.delijn.be/stops/101582"], ["https://data.delijn.be/stops/401494", "https://data.delijn.be/stops/401496"], ["https://data.delijn.be/stops/404255", "https://data.delijn.be/stops/405145"], ["https://data.delijn.be/stops/300178", "https://data.delijn.be/stops/300191"], ["https://data.delijn.be/stops/403703", "https://data.delijn.be/stops/403704"], ["https://data.delijn.be/stops/307965", "https://data.delijn.be/stops/307973"], ["https://data.delijn.be/stops/107730", "https://data.delijn.be/stops/107735"], ["https://data.delijn.be/stops/506213", "https://data.delijn.be/stops/506220"], ["https://data.delijn.be/stops/300661", "https://data.delijn.be/stops/304875"], ["https://data.delijn.be/stops/200431", "https://data.delijn.be/stops/200432"], ["https://data.delijn.be/stops/402179", "https://data.delijn.be/stops/402484"], ["https://data.delijn.be/stops/505510", "https://data.delijn.be/stops/507471"], ["https://data.delijn.be/stops/106379", "https://data.delijn.be/stops/108019"], ["https://data.delijn.be/stops/101786", "https://data.delijn.be/stops/109153"], ["https://data.delijn.be/stops/206559", "https://data.delijn.be/stops/207559"], ["https://data.delijn.be/stops/102042", "https://data.delijn.be/stops/107831"], ["https://data.delijn.be/stops/107084", "https://data.delijn.be/stops/107087"], ["https://data.delijn.be/stops/202852", "https://data.delijn.be/stops/203852"], ["https://data.delijn.be/stops/108356", "https://data.delijn.be/stops/109334"], ["https://data.delijn.be/stops/103066", "https://data.delijn.be/stops/109696"], ["https://data.delijn.be/stops/207855", "https://data.delijn.be/stops/207863"], ["https://data.delijn.be/stops/200584", "https://data.delijn.be/stops/201584"], ["https://data.delijn.be/stops/202724", "https://data.delijn.be/stops/203724"], ["https://data.delijn.be/stops/201556", "https://data.delijn.be/stops/210067"], ["https://data.delijn.be/stops/108835", "https://data.delijn.be/stops/109725"], ["https://data.delijn.be/stops/504392", "https://data.delijn.be/stops/509388"], ["https://data.delijn.be/stops/401034", "https://data.delijn.be/stops/401035"], ["https://data.delijn.be/stops/204445", "https://data.delijn.be/stops/204674"], ["https://data.delijn.be/stops/206236", "https://data.delijn.be/stops/206813"], ["https://data.delijn.be/stops/201561", "https://data.delijn.be/stops/211102"], ["https://data.delijn.be/stops/106284", "https://data.delijn.be/stops/106286"], ["https://data.delijn.be/stops/206906", "https://data.delijn.be/stops/206908"], ["https://data.delijn.be/stops/105268", "https://data.delijn.be/stops/105269"], ["https://data.delijn.be/stops/408252", "https://data.delijn.be/stops/408350"], ["https://data.delijn.be/stops/305777", "https://data.delijn.be/stops/305778"], ["https://data.delijn.be/stops/400252", "https://data.delijn.be/stops/400253"], ["https://data.delijn.be/stops/400957", "https://data.delijn.be/stops/400960"], ["https://data.delijn.be/stops/407316", "https://data.delijn.be/stops/409046"], ["https://data.delijn.be/stops/402096", "https://data.delijn.be/stops/402376"], ["https://data.delijn.be/stops/409066", "https://data.delijn.be/stops/409067"], ["https://data.delijn.be/stops/301299", "https://data.delijn.be/stops/301334"], ["https://data.delijn.be/stops/403502", "https://data.delijn.be/stops/410222"], ["https://data.delijn.be/stops/401783", "https://data.delijn.be/stops/401871"], ["https://data.delijn.be/stops/405950", "https://data.delijn.be/stops/405951"], ["https://data.delijn.be/stops/208080", "https://data.delijn.be/stops/209447"], ["https://data.delijn.be/stops/102241", "https://data.delijn.be/stops/105882"], ["https://data.delijn.be/stops/304888", "https://data.delijn.be/stops/304902"], ["https://data.delijn.be/stops/304746", "https://data.delijn.be/stops/305880"], ["https://data.delijn.be/stops/207382", "https://data.delijn.be/stops/207920"], ["https://data.delijn.be/stops/505963", "https://data.delijn.be/stops/507943"], ["https://data.delijn.be/stops/107147", "https://data.delijn.be/stops/107149"], ["https://data.delijn.be/stops/304405", "https://data.delijn.be/stops/307417"], ["https://data.delijn.be/stops/504571", "https://data.delijn.be/stops/504577"], ["https://data.delijn.be/stops/508819", "https://data.delijn.be/stops/508821"], ["https://data.delijn.be/stops/106429", "https://data.delijn.be/stops/106430"], ["https://data.delijn.be/stops/506760", "https://data.delijn.be/stops/506776"], ["https://data.delijn.be/stops/400657", "https://data.delijn.be/stops/400970"], ["https://data.delijn.be/stops/201410", "https://data.delijn.be/stops/208941"], ["https://data.delijn.be/stops/201966", "https://data.delijn.be/stops/209039"], ["https://data.delijn.be/stops/504499", "https://data.delijn.be/stops/504500"], ["https://data.delijn.be/stops/407337", "https://data.delijn.be/stops/409520"], ["https://data.delijn.be/stops/501062", "https://data.delijn.be/stops/501485"], ["https://data.delijn.be/stops/102411", "https://data.delijn.be/stops/104870"], ["https://data.delijn.be/stops/201943", "https://data.delijn.be/stops/202930"], ["https://data.delijn.be/stops/206649", "https://data.delijn.be/stops/206792"], ["https://data.delijn.be/stops/204370", "https://data.delijn.be/stops/205370"], ["https://data.delijn.be/stops/107364", "https://data.delijn.be/stops/107367"], ["https://data.delijn.be/stops/503496", "https://data.delijn.be/stops/509456"], ["https://data.delijn.be/stops/108021", "https://data.delijn.be/stops/109636"], ["https://data.delijn.be/stops/504884", "https://data.delijn.be/stops/509883"], ["https://data.delijn.be/stops/402365", "https://data.delijn.be/stops/402464"], ["https://data.delijn.be/stops/408292", "https://data.delijn.be/stops/408376"], ["https://data.delijn.be/stops/106534", "https://data.delijn.be/stops/107304"], ["https://data.delijn.be/stops/305138", "https://data.delijn.be/stops/308093"], ["https://data.delijn.be/stops/306912", "https://data.delijn.be/stops/308126"], ["https://data.delijn.be/stops/306874", "https://data.delijn.be/stops/307954"], ["https://data.delijn.be/stops/504123", "https://data.delijn.be/stops/504125"], ["https://data.delijn.be/stops/201699", "https://data.delijn.be/stops/203781"], ["https://data.delijn.be/stops/301847", "https://data.delijn.be/stops/301882"], ["https://data.delijn.be/stops/505764", "https://data.delijn.be/stops/507003"], ["https://data.delijn.be/stops/104970", "https://data.delijn.be/stops/104975"], ["https://data.delijn.be/stops/502040", "https://data.delijn.be/stops/507040"], ["https://data.delijn.be/stops/503689", "https://data.delijn.be/stops/508558"], ["https://data.delijn.be/stops/204525", "https://data.delijn.be/stops/205525"], ["https://data.delijn.be/stops/304375", "https://data.delijn.be/stops/306870"], ["https://data.delijn.be/stops/108377", "https://data.delijn.be/stops/108444"], ["https://data.delijn.be/stops/502929", "https://data.delijn.be/stops/507932"], ["https://data.delijn.be/stops/102016", "https://data.delijn.be/stops/105140"], ["https://data.delijn.be/stops/101721", "https://data.delijn.be/stops/109566"], ["https://data.delijn.be/stops/404474", "https://data.delijn.be/stops/407249"], ["https://data.delijn.be/stops/206710", "https://data.delijn.be/stops/207600"], ["https://data.delijn.be/stops/302183", "https://data.delijn.be/stops/307186"], ["https://data.delijn.be/stops/503728", "https://data.delijn.be/stops/508728"], ["https://data.delijn.be/stops/300350", "https://data.delijn.be/stops/300367"], ["https://data.delijn.be/stops/301358", "https://data.delijn.be/stops/305451"], ["https://data.delijn.be/stops/302398", "https://data.delijn.be/stops/302399"], ["https://data.delijn.be/stops/503294", "https://data.delijn.be/stops/509842"], ["https://data.delijn.be/stops/300092", "https://data.delijn.be/stops/300106"], ["https://data.delijn.be/stops/300091", "https://data.delijn.be/stops/300093"], ["https://data.delijn.be/stops/102918", "https://data.delijn.be/stops/102922"], ["https://data.delijn.be/stops/501002", "https://data.delijn.be/stops/501008"], ["https://data.delijn.be/stops/303009", "https://data.delijn.be/stops/303960"], ["https://data.delijn.be/stops/504325", "https://data.delijn.be/stops/504336"], ["https://data.delijn.be/stops/204761", "https://data.delijn.be/stops/205727"], ["https://data.delijn.be/stops/407893", "https://data.delijn.be/stops/306056"], ["https://data.delijn.be/stops/202177", "https://data.delijn.be/stops/202178"], ["https://data.delijn.be/stops/108315", "https://data.delijn.be/stops/108930"], ["https://data.delijn.be/stops/400465", "https://data.delijn.be/stops/408826"], ["https://data.delijn.be/stops/304708", "https://data.delijn.be/stops/306374"], ["https://data.delijn.be/stops/504884", "https://data.delijn.be/stops/505092"], ["https://data.delijn.be/stops/504461", "https://data.delijn.be/stops/505116"], ["https://data.delijn.be/stops/103479", "https://data.delijn.be/stops/109217"], ["https://data.delijn.be/stops/103525", "https://data.delijn.be/stops/103770"], ["https://data.delijn.be/stops/206892", "https://data.delijn.be/stops/207892"], ["https://data.delijn.be/stops/300161", "https://data.delijn.be/stops/300162"], ["https://data.delijn.be/stops/102600", "https://data.delijn.be/stops/104915"], ["https://data.delijn.be/stops/404027", "https://data.delijn.be/stops/404028"], ["https://data.delijn.be/stops/303986", "https://data.delijn.be/stops/307019"], ["https://data.delijn.be/stops/300353", "https://data.delijn.be/stops/300399"], ["https://data.delijn.be/stops/201927", "https://data.delijn.be/stops/207399"], ["https://data.delijn.be/stops/504737", "https://data.delijn.be/stops/509497"], ["https://data.delijn.be/stops/505275", "https://data.delijn.be/stops/508227"], ["https://data.delijn.be/stops/202394", "https://data.delijn.be/stops/210122"], ["https://data.delijn.be/stops/407656", "https://data.delijn.be/stops/409774"], ["https://data.delijn.be/stops/405648", "https://data.delijn.be/stops/405649"], ["https://data.delijn.be/stops/204688", "https://data.delijn.be/stops/205688"], ["https://data.delijn.be/stops/504537", "https://data.delijn.be/stops/509608"], ["https://data.delijn.be/stops/300757", "https://data.delijn.be/stops/300758"], ["https://data.delijn.be/stops/300131", "https://data.delijn.be/stops/300132"], ["https://data.delijn.be/stops/305550", "https://data.delijn.be/stops/305561"], ["https://data.delijn.be/stops/301699", "https://data.delijn.be/stops/305295"], ["https://data.delijn.be/stops/409084", "https://data.delijn.be/stops/409085"], ["https://data.delijn.be/stops/409625", "https://data.delijn.be/stops/409632"], ["https://data.delijn.be/stops/208247", "https://data.delijn.be/stops/209247"], ["https://data.delijn.be/stops/302775", "https://data.delijn.be/stops/302785"], ["https://data.delijn.be/stops/410223", "https://data.delijn.be/stops/410293"], ["https://data.delijn.be/stops/305515", "https://data.delijn.be/stops/308549"], ["https://data.delijn.be/stops/502052", "https://data.delijn.be/stops/507052"], ["https://data.delijn.be/stops/305750", "https://data.delijn.be/stops/306333"], ["https://data.delijn.be/stops/505981", "https://data.delijn.be/stops/507197"], ["https://data.delijn.be/stops/406610", "https://data.delijn.be/stops/406619"], ["https://data.delijn.be/stops/400491", "https://data.delijn.be/stops/407751"], ["https://data.delijn.be/stops/503913", "https://data.delijn.be/stops/508933"], ["https://data.delijn.be/stops/408718", "https://data.delijn.be/stops/408720"], ["https://data.delijn.be/stops/404691", "https://data.delijn.be/stops/407314"], ["https://data.delijn.be/stops/406771", "https://data.delijn.be/stops/406842"], ["https://data.delijn.be/stops/301328", "https://data.delijn.be/stops/305920"], ["https://data.delijn.be/stops/401006", "https://data.delijn.be/stops/401010"], ["https://data.delijn.be/stops/504525", "https://data.delijn.be/stops/509196"], ["https://data.delijn.be/stops/204177", "https://data.delijn.be/stops/205176"], ["https://data.delijn.be/stops/502164", "https://data.delijn.be/stops/507113"], ["https://data.delijn.be/stops/402281", "https://data.delijn.be/stops/406888"], ["https://data.delijn.be/stops/300804", "https://data.delijn.be/stops/302399"], ["https://data.delijn.be/stops/408237", "https://data.delijn.be/stops/308199"], ["https://data.delijn.be/stops/404976", "https://data.delijn.be/stops/410295"], ["https://data.delijn.be/stops/304615", "https://data.delijn.be/stops/304651"], ["https://data.delijn.be/stops/101838", "https://data.delijn.be/stops/105430"], ["https://data.delijn.be/stops/304567", "https://data.delijn.be/stops/304657"], ["https://data.delijn.be/stops/506092", "https://data.delijn.be/stops/506225"], ["https://data.delijn.be/stops/509760", "https://data.delijn.be/stops/509773"], ["https://data.delijn.be/stops/106528", "https://data.delijn.be/stops/107309"], ["https://data.delijn.be/stops/400184", "https://data.delijn.be/stops/407670"], ["https://data.delijn.be/stops/503515", "https://data.delijn.be/stops/504791"], ["https://data.delijn.be/stops/306125", "https://data.delijn.be/stops/306153"], ["https://data.delijn.be/stops/402854", "https://data.delijn.be/stops/402858"], ["https://data.delijn.be/stops/503485", "https://data.delijn.be/stops/503489"], ["https://data.delijn.be/stops/106697", "https://data.delijn.be/stops/106699"], ["https://data.delijn.be/stops/202487", "https://data.delijn.be/stops/203487"], ["https://data.delijn.be/stops/402802", "https://data.delijn.be/stops/407316"], ["https://data.delijn.be/stops/410218", "https://data.delijn.be/stops/410219"], ["https://data.delijn.be/stops/103146", "https://data.delijn.be/stops/109439"], ["https://data.delijn.be/stops/303584", "https://data.delijn.be/stops/304929"], ["https://data.delijn.be/stops/107183", "https://data.delijn.be/stops/107189"], ["https://data.delijn.be/stops/304573", "https://data.delijn.be/stops/304634"], ["https://data.delijn.be/stops/202125", "https://data.delijn.be/stops/203124"], ["https://data.delijn.be/stops/503504", "https://data.delijn.be/stops/508509"], ["https://data.delijn.be/stops/106658", "https://data.delijn.be/stops/106664"], ["https://data.delijn.be/stops/206276", "https://data.delijn.be/stops/207276"], ["https://data.delijn.be/stops/102199", "https://data.delijn.be/stops/105796"], ["https://data.delijn.be/stops/208780", "https://data.delijn.be/stops/208781"], ["https://data.delijn.be/stops/404037", "https://data.delijn.be/stops/404073"], ["https://data.delijn.be/stops/503619", "https://data.delijn.be/stops/505526"], ["https://data.delijn.be/stops/302344", "https://data.delijn.be/stops/302750"], ["https://data.delijn.be/stops/204401", "https://data.delijn.be/stops/205402"], ["https://data.delijn.be/stops/202157", "https://data.delijn.be/stops/205068"], ["https://data.delijn.be/stops/505333", "https://data.delijn.be/stops/505651"], ["https://data.delijn.be/stops/106480", "https://data.delijn.be/stops/109211"], ["https://data.delijn.be/stops/306912", "https://data.delijn.be/stops/308724"], ["https://data.delijn.be/stops/200290", "https://data.delijn.be/stops/200296"], ["https://data.delijn.be/stops/101788", "https://data.delijn.be/stops/105659"], ["https://data.delijn.be/stops/305772", "https://data.delijn.be/stops/306879"], ["https://data.delijn.be/stops/301411", "https://data.delijn.be/stops/307534"], ["https://data.delijn.be/stops/302881", "https://data.delijn.be/stops/302889"], ["https://data.delijn.be/stops/105704", "https://data.delijn.be/stops/106075"], ["https://data.delijn.be/stops/304948", "https://data.delijn.be/stops/308017"], ["https://data.delijn.be/stops/201288", "https://data.delijn.be/stops/201359"], ["https://data.delijn.be/stops/408918", "https://data.delijn.be/stops/408919"], ["https://data.delijn.be/stops/502341", "https://data.delijn.be/stops/505172"], ["https://data.delijn.be/stops/303625", "https://data.delijn.be/stops/306699"], ["https://data.delijn.be/stops/408978", "https://data.delijn.be/stops/408979"], ["https://data.delijn.be/stops/305148", "https://data.delijn.be/stops/305169"], ["https://data.delijn.be/stops/202243", "https://data.delijn.be/stops/203243"], ["https://data.delijn.be/stops/409680", "https://data.delijn.be/stops/409700"], ["https://data.delijn.be/stops/107579", "https://data.delijn.be/stops/107582"], ["https://data.delijn.be/stops/200045", "https://data.delijn.be/stops/200218"], ["https://data.delijn.be/stops/101193", "https://data.delijn.be/stops/204614"], ["https://data.delijn.be/stops/206618", "https://data.delijn.be/stops/206721"], ["https://data.delijn.be/stops/405612", "https://data.delijn.be/stops/407157"], ["https://data.delijn.be/stops/504111", "https://data.delijn.be/stops/504469"], ["https://data.delijn.be/stops/206189", "https://data.delijn.be/stops/207193"], ["https://data.delijn.be/stops/209109", "https://data.delijn.be/stops/209204"], ["https://data.delijn.be/stops/502564", "https://data.delijn.be/stops/507564"], ["https://data.delijn.be/stops/305696", "https://data.delijn.be/stops/305716"], ["https://data.delijn.be/stops/402805", "https://data.delijn.be/stops/406110"], ["https://data.delijn.be/stops/402726", "https://data.delijn.be/stops/402727"], ["https://data.delijn.be/stops/403923", "https://data.delijn.be/stops/404016"], ["https://data.delijn.be/stops/200810", "https://data.delijn.be/stops/200899"], ["https://data.delijn.be/stops/304166", "https://data.delijn.be/stops/304172"], ["https://data.delijn.be/stops/503175", "https://data.delijn.be/stops/507684"], ["https://data.delijn.be/stops/203619", "https://data.delijn.be/stops/203620"], ["https://data.delijn.be/stops/108777", "https://data.delijn.be/stops/108784"], ["https://data.delijn.be/stops/109016", "https://data.delijn.be/stops/404047"], ["https://data.delijn.be/stops/300466", "https://data.delijn.be/stops/304975"], ["https://data.delijn.be/stops/205192", "https://data.delijn.be/stops/205204"], ["https://data.delijn.be/stops/108264", "https://data.delijn.be/stops/109371"], ["https://data.delijn.be/stops/101054", "https://data.delijn.be/stops/103790"], ["https://data.delijn.be/stops/105422", "https://data.delijn.be/stops/109980"], ["https://data.delijn.be/stops/503528", "https://data.delijn.be/stops/508498"], ["https://data.delijn.be/stops/404631", "https://data.delijn.be/stops/406959"], ["https://data.delijn.be/stops/200126", "https://data.delijn.be/stops/200241"], ["https://data.delijn.be/stops/400329", "https://data.delijn.be/stops/400354"], ["https://data.delijn.be/stops/102604", "https://data.delijn.be/stops/106972"], ["https://data.delijn.be/stops/504500", "https://data.delijn.be/stops/509500"], ["https://data.delijn.be/stops/300976", "https://data.delijn.be/stops/300982"], ["https://data.delijn.be/stops/305007", "https://data.delijn.be/stops/305026"], ["https://data.delijn.be/stops/501320", "https://data.delijn.be/stops/506349"], ["https://data.delijn.be/stops/505056", "https://data.delijn.be/stops/505073"], ["https://data.delijn.be/stops/304817", "https://data.delijn.be/stops/307974"], ["https://data.delijn.be/stops/403113", "https://data.delijn.be/stops/403234"], ["https://data.delijn.be/stops/202082", "https://data.delijn.be/stops/202083"], ["https://data.delijn.be/stops/501447", "https://data.delijn.be/stops/506502"], ["https://data.delijn.be/stops/202735", "https://data.delijn.be/stops/203907"], ["https://data.delijn.be/stops/501391", "https://data.delijn.be/stops/506385"], ["https://data.delijn.be/stops/401220", "https://data.delijn.be/stops/401221"], ["https://data.delijn.be/stops/303245", "https://data.delijn.be/stops/304650"], ["https://data.delijn.be/stops/206593", "https://data.delijn.be/stops/206928"], ["https://data.delijn.be/stops/106760", "https://data.delijn.be/stops/109700"], ["https://data.delijn.be/stops/502557", "https://data.delijn.be/stops/509892"], ["https://data.delijn.be/stops/104910", "https://data.delijn.be/stops/105447"], ["https://data.delijn.be/stops/204415", "https://data.delijn.be/stops/204416"], ["https://data.delijn.be/stops/404979", "https://data.delijn.be/stops/404980"], ["https://data.delijn.be/stops/102812", "https://data.delijn.be/stops/104780"], ["https://data.delijn.be/stops/302507", "https://data.delijn.be/stops/305782"], ["https://data.delijn.be/stops/101852", "https://data.delijn.be/stops/106803"], ["https://data.delijn.be/stops/502477", "https://data.delijn.be/stops/507753"], ["https://data.delijn.be/stops/301644", "https://data.delijn.be/stops/302108"], ["https://data.delijn.be/stops/300552", "https://data.delijn.be/stops/300553"], ["https://data.delijn.be/stops/108797", "https://data.delijn.be/stops/108798"], ["https://data.delijn.be/stops/404873", "https://data.delijn.be/stops/409149"], ["https://data.delijn.be/stops/207789", "https://data.delijn.be/stops/208406"], ["https://data.delijn.be/stops/302711", "https://data.delijn.be/stops/302728"], ["https://data.delijn.be/stops/400527", "https://data.delijn.be/stops/400593"], ["https://data.delijn.be/stops/209770", "https://data.delijn.be/stops/209789"], ["https://data.delijn.be/stops/300347", "https://data.delijn.be/stops/304698"], ["https://data.delijn.be/stops/101538", "https://data.delijn.be/stops/108266"], ["https://data.delijn.be/stops/406649", "https://data.delijn.be/stops/406652"], ["https://data.delijn.be/stops/407768", "https://data.delijn.be/stops/407769"], ["https://data.delijn.be/stops/208451", "https://data.delijn.be/stops/208452"], ["https://data.delijn.be/stops/406648", "https://data.delijn.be/stops/406653"], ["https://data.delijn.be/stops/501072", "https://data.delijn.be/stops/506072"], ["https://data.delijn.be/stops/200900", "https://data.delijn.be/stops/505514"], ["https://data.delijn.be/stops/201142", "https://data.delijn.be/stops/211094"], ["https://data.delijn.be/stops/402830", "https://data.delijn.be/stops/406549"], ["https://data.delijn.be/stops/400528", "https://data.delijn.be/stops/403027"], ["https://data.delijn.be/stops/505085", "https://data.delijn.be/stops/506224"], ["https://data.delijn.be/stops/300648", "https://data.delijn.be/stops/300654"], ["https://data.delijn.be/stops/501345", "https://data.delijn.be/stops/506345"], ["https://data.delijn.be/stops/308484", "https://data.delijn.be/stops/308485"], ["https://data.delijn.be/stops/304726", "https://data.delijn.be/stops/304751"], ["https://data.delijn.be/stops/508720", "https://data.delijn.be/stops/508732"], ["https://data.delijn.be/stops/302096", "https://data.delijn.be/stops/302100"], ["https://data.delijn.be/stops/405778", "https://data.delijn.be/stops/409705"], ["https://data.delijn.be/stops/101645", "https://data.delijn.be/stops/102620"], ["https://data.delijn.be/stops/103223", "https://data.delijn.be/stops/107705"], ["https://data.delijn.be/stops/302442", "https://data.delijn.be/stops/302443"], ["https://data.delijn.be/stops/504643", "https://data.delijn.be/stops/509643"], ["https://data.delijn.be/stops/403795", "https://data.delijn.be/stops/403825"], ["https://data.delijn.be/stops/108077", "https://data.delijn.be/stops/108446"], ["https://data.delijn.be/stops/305237", "https://data.delijn.be/stops/305272"], ["https://data.delijn.be/stops/200461", "https://data.delijn.be/stops/200679"], ["https://data.delijn.be/stops/208103", "https://data.delijn.be/stops/208104"], ["https://data.delijn.be/stops/206940", "https://data.delijn.be/stops/209565"], ["https://data.delijn.be/stops/304111", "https://data.delijn.be/stops/304824"], ["https://data.delijn.be/stops/302326", "https://data.delijn.be/stops/302332"], ["https://data.delijn.be/stops/305393", "https://data.delijn.be/stops/305403"], ["https://data.delijn.be/stops/208015", "https://data.delijn.be/stops/208026"], ["https://data.delijn.be/stops/502592", "https://data.delijn.be/stops/507316"], ["https://data.delijn.be/stops/505018", "https://data.delijn.be/stops/507674"], ["https://data.delijn.be/stops/502258", "https://data.delijn.be/stops/507351"], ["https://data.delijn.be/stops/301227", "https://data.delijn.be/stops/306681"], ["https://data.delijn.be/stops/503767", "https://data.delijn.be/stops/508769"], ["https://data.delijn.be/stops/504616", "https://data.delijn.be/stops/504620"], ["https://data.delijn.be/stops/303095", "https://data.delijn.be/stops/303106"], ["https://data.delijn.be/stops/202265", "https://data.delijn.be/stops/202266"], ["https://data.delijn.be/stops/508034", "https://data.delijn.be/stops/508035"], ["https://data.delijn.be/stops/208077", "https://data.delijn.be/stops/218029"], ["https://data.delijn.be/stops/200736", "https://data.delijn.be/stops/202594"], ["https://data.delijn.be/stops/400257", "https://data.delijn.be/stops/403003"], ["https://data.delijn.be/stops/301604", "https://data.delijn.be/stops/307339"], ["https://data.delijn.be/stops/204991", "https://data.delijn.be/stops/208798"], ["https://data.delijn.be/stops/203282", "https://data.delijn.be/stops/203632"], ["https://data.delijn.be/stops/302659", "https://data.delijn.be/stops/302660"], ["https://data.delijn.be/stops/304161", "https://data.delijn.be/stops/304227"], ["https://data.delijn.be/stops/503754", "https://data.delijn.be/stops/508647"], ["https://data.delijn.be/stops/504194", "https://data.delijn.be/stops/509151"], ["https://data.delijn.be/stops/308747", "https://data.delijn.be/stops/308748"], ["https://data.delijn.be/stops/302154", "https://data.delijn.be/stops/302441"], ["https://data.delijn.be/stops/401504", "https://data.delijn.be/stops/401507"], ["https://data.delijn.be/stops/401344", "https://data.delijn.be/stops/404777"], ["https://data.delijn.be/stops/208377", "https://data.delijn.be/stops/209334"], ["https://data.delijn.be/stops/106720", "https://data.delijn.be/stops/106721"], ["https://data.delijn.be/stops/204416", "https://data.delijn.be/stops/205397"], ["https://data.delijn.be/stops/409346", "https://data.delijn.be/stops/409348"], ["https://data.delijn.be/stops/409080", "https://data.delijn.be/stops/409139"], ["https://data.delijn.be/stops/105737", "https://data.delijn.be/stops/109952"], ["https://data.delijn.be/stops/307566", "https://data.delijn.be/stops/307569"], ["https://data.delijn.be/stops/302753", "https://data.delijn.be/stops/302754"], ["https://data.delijn.be/stops/200179", "https://data.delijn.be/stops/201180"], ["https://data.delijn.be/stops/200333", "https://data.delijn.be/stops/210046"], ["https://data.delijn.be/stops/206756", "https://data.delijn.be/stops/207622"], ["https://data.delijn.be/stops/200253", "https://data.delijn.be/stops/203557"], ["https://data.delijn.be/stops/101557", "https://data.delijn.be/stops/109673"], ["https://data.delijn.be/stops/106060", "https://data.delijn.be/stops/108055"], ["https://data.delijn.be/stops/304952", "https://data.delijn.be/stops/307950"], ["https://data.delijn.be/stops/503063", "https://data.delijn.be/stops/504999"], ["https://data.delijn.be/stops/105274", "https://data.delijn.be/stops/105292"], ["https://data.delijn.be/stops/406523", "https://data.delijn.be/stops/407566"], ["https://data.delijn.be/stops/206330", "https://data.delijn.be/stops/308845"], ["https://data.delijn.be/stops/501094", "https://data.delijn.be/stops/501100"], ["https://data.delijn.be/stops/204766", "https://data.delijn.be/stops/205423"], ["https://data.delijn.be/stops/307764", "https://data.delijn.be/stops/307765"], ["https://data.delijn.be/stops/402869", "https://data.delijn.be/stops/402870"], ["https://data.delijn.be/stops/203004", "https://data.delijn.be/stops/203763"], ["https://data.delijn.be/stops/206214", "https://data.delijn.be/stops/207214"], ["https://data.delijn.be/stops/408644", "https://data.delijn.be/stops/408645"], ["https://data.delijn.be/stops/203834", "https://data.delijn.be/stops/209638"], ["https://data.delijn.be/stops/400311", "https://data.delijn.be/stops/400384"], ["https://data.delijn.be/stops/105421", "https://data.delijn.be/stops/105848"], ["https://data.delijn.be/stops/108741", "https://data.delijn.be/stops/109708"], ["https://data.delijn.be/stops/407783", "https://data.delijn.be/stops/407784"], ["https://data.delijn.be/stops/401018", "https://data.delijn.be/stops/403736"], ["https://data.delijn.be/stops/500230", "https://data.delijn.be/stops/501102"], ["https://data.delijn.be/stops/402134", "https://data.delijn.be/stops/402135"], ["https://data.delijn.be/stops/505195", "https://data.delijn.be/stops/505196"], ["https://data.delijn.be/stops/109820", "https://data.delijn.be/stops/109821"], ["https://data.delijn.be/stops/202603", "https://data.delijn.be/stops/203603"], ["https://data.delijn.be/stops/308774", "https://data.delijn.be/stops/308776"], ["https://data.delijn.be/stops/302744", "https://data.delijn.be/stops/303220"], ["https://data.delijn.be/stops/102499", "https://data.delijn.be/stops/102504"], ["https://data.delijn.be/stops/504266", "https://data.delijn.be/stops/509266"], ["https://data.delijn.be/stops/206831", "https://data.delijn.be/stops/207832"], ["https://data.delijn.be/stops/403683", "https://data.delijn.be/stops/403685"], ["https://data.delijn.be/stops/405702", "https://data.delijn.be/stops/405744"], ["https://data.delijn.be/stops/102244", "https://data.delijn.be/stops/102246"], ["https://data.delijn.be/stops/201775", "https://data.delijn.be/stops/209227"], ["https://data.delijn.be/stops/208817", "https://data.delijn.be/stops/209851"], ["https://data.delijn.be/stops/505274", "https://data.delijn.be/stops/505391"], ["https://data.delijn.be/stops/206423", "https://data.delijn.be/stops/216012"], ["https://data.delijn.be/stops/106605", "https://data.delijn.be/stops/106686"], ["https://data.delijn.be/stops/305770", "https://data.delijn.be/stops/305772"], ["https://data.delijn.be/stops/408214", "https://data.delijn.be/stops/408313"], ["https://data.delijn.be/stops/304166", "https://data.delijn.be/stops/307577"], ["https://data.delijn.be/stops/200719", "https://data.delijn.be/stops/202619"], ["https://data.delijn.be/stops/208176", "https://data.delijn.be/stops/209167"], ["https://data.delijn.be/stops/300774", "https://data.delijn.be/stops/302402"], ["https://data.delijn.be/stops/408501", "https://data.delijn.be/stops/408526"], ["https://data.delijn.be/stops/501736", "https://data.delijn.be/stops/506067"], ["https://data.delijn.be/stops/202944", "https://data.delijn.be/stops/203946"], ["https://data.delijn.be/stops/106908", "https://data.delijn.be/stops/107249"], ["https://data.delijn.be/stops/101500", "https://data.delijn.be/stops/109347"], ["https://data.delijn.be/stops/504481", "https://data.delijn.be/stops/504720"], ["https://data.delijn.be/stops/501517", "https://data.delijn.be/stops/506300"], ["https://data.delijn.be/stops/101832", "https://data.delijn.be/stops/108191"], ["https://data.delijn.be/stops/402120", "https://data.delijn.be/stops/409631"], ["https://data.delijn.be/stops/300595", "https://data.delijn.be/stops/307170"], ["https://data.delijn.be/stops/206684", "https://data.delijn.be/stops/207684"], ["https://data.delijn.be/stops/300861", "https://data.delijn.be/stops/307233"], ["https://data.delijn.be/stops/200745", "https://data.delijn.be/stops/201683"], ["https://data.delijn.be/stops/104988", "https://data.delijn.be/stops/109769"], ["https://data.delijn.be/stops/507178", "https://data.delijn.be/stops/507179"], ["https://data.delijn.be/stops/305503", "https://data.delijn.be/stops/307989"], ["https://data.delijn.be/stops/208350", "https://data.delijn.be/stops/209350"], ["https://data.delijn.be/stops/303615", "https://data.delijn.be/stops/303616"], ["https://data.delijn.be/stops/306558", "https://data.delijn.be/stops/307897"], ["https://data.delijn.be/stops/502199", "https://data.delijn.be/stops/502647"], ["https://data.delijn.be/stops/506242", "https://data.delijn.be/stops/506246"], ["https://data.delijn.be/stops/300564", "https://data.delijn.be/stops/307858"], ["https://data.delijn.be/stops/402814", "https://data.delijn.be/stops/409034"], ["https://data.delijn.be/stops/205059", "https://data.delijn.be/stops/205060"], ["https://data.delijn.be/stops/509133", "https://data.delijn.be/stops/509639"], ["https://data.delijn.be/stops/201353", "https://data.delijn.be/stops/208267"], ["https://data.delijn.be/stops/504276", "https://data.delijn.be/stops/508128"], ["https://data.delijn.be/stops/101226", "https://data.delijn.be/stops/101660"], ["https://data.delijn.be/stops/402284", "https://data.delijn.be/stops/402766"], ["https://data.delijn.be/stops/107004", "https://data.delijn.be/stops/107329"], ["https://data.delijn.be/stops/504319", "https://data.delijn.be/stops/505827"], ["https://data.delijn.be/stops/107575", "https://data.delijn.be/stops/109433"], ["https://data.delijn.be/stops/207624", "https://data.delijn.be/stops/207625"], ["https://data.delijn.be/stops/406339", "https://data.delijn.be/stops/406401"], ["https://data.delijn.be/stops/301692", "https://data.delijn.be/stops/301693"], ["https://data.delijn.be/stops/503398", "https://data.delijn.be/stops/508400"], ["https://data.delijn.be/stops/407892", "https://data.delijn.be/stops/306055"], ["https://data.delijn.be/stops/102193", "https://data.delijn.be/stops/104262"], ["https://data.delijn.be/stops/106889", "https://data.delijn.be/stops/106890"], ["https://data.delijn.be/stops/307960", "https://data.delijn.be/stops/307961"], ["https://data.delijn.be/stops/105353", "https://data.delijn.be/stops/109968"], ["https://data.delijn.be/stops/502683", "https://data.delijn.be/stops/507188"], ["https://data.delijn.be/stops/406208", "https://data.delijn.be/stops/406213"], ["https://data.delijn.be/stops/503731", "https://data.delijn.be/stops/508991"], ["https://data.delijn.be/stops/104858", "https://data.delijn.be/stops/308810"], ["https://data.delijn.be/stops/407891", "https://data.delijn.be/stops/408177"], ["https://data.delijn.be/stops/403654", "https://data.delijn.be/stops/403655"], ["https://data.delijn.be/stops/403353", "https://data.delijn.be/stops/403385"], ["https://data.delijn.be/stops/308052", "https://data.delijn.be/stops/308055"], ["https://data.delijn.be/stops/500001", "https://data.delijn.be/stops/507294"], ["https://data.delijn.be/stops/206256", "https://data.delijn.be/stops/206996"], ["https://data.delijn.be/stops/206932", "https://data.delijn.be/stops/207932"], ["https://data.delijn.be/stops/504148", "https://data.delijn.be/stops/505709"], ["https://data.delijn.be/stops/104869", "https://data.delijn.be/stops/108028"], ["https://data.delijn.be/stops/101228", "https://data.delijn.be/stops/109915"], ["https://data.delijn.be/stops/306791", "https://data.delijn.be/stops/307732"], ["https://data.delijn.be/stops/403950", "https://data.delijn.be/stops/403951"], ["https://data.delijn.be/stops/308248", "https://data.delijn.be/stops/308249"], ["https://data.delijn.be/stops/400755", "https://data.delijn.be/stops/408448"], ["https://data.delijn.be/stops/407726", "https://data.delijn.be/stops/409777"], ["https://data.delijn.be/stops/505154", "https://data.delijn.be/stops/507560"], ["https://data.delijn.be/stops/405210", "https://data.delijn.be/stops/410167"], ["https://data.delijn.be/stops/407094", "https://data.delijn.be/stops/407272"], ["https://data.delijn.be/stops/400734", "https://data.delijn.be/stops/400809"], ["https://data.delijn.be/stops/402554", "https://data.delijn.be/stops/402649"], ["https://data.delijn.be/stops/207096", "https://data.delijn.be/stops/207931"], ["https://data.delijn.be/stops/503293", "https://data.delijn.be/stops/508435"], ["https://data.delijn.be/stops/305188", "https://data.delijn.be/stops/307091"], ["https://data.delijn.be/stops/305182", "https://data.delijn.be/stops/305183"], ["https://data.delijn.be/stops/407612", "https://data.delijn.be/stops/407613"], ["https://data.delijn.be/stops/503902", "https://data.delijn.be/stops/504358"], ["https://data.delijn.be/stops/106105", "https://data.delijn.be/stops/106124"], ["https://data.delijn.be/stops/301459", "https://data.delijn.be/stops/301486"], ["https://data.delijn.be/stops/303555", "https://data.delijn.be/stops/303568"], ["https://data.delijn.be/stops/105104", "https://data.delijn.be/stops/109506"], ["https://data.delijn.be/stops/304257", "https://data.delijn.be/stops/304258"], ["https://data.delijn.be/stops/207336", "https://data.delijn.be/stops/207337"], ["https://data.delijn.be/stops/206174", "https://data.delijn.be/stops/207265"], ["https://data.delijn.be/stops/202731", "https://data.delijn.be/stops/202735"], ["https://data.delijn.be/stops/505792", "https://data.delijn.be/stops/508096"], ["https://data.delijn.be/stops/408136", "https://data.delijn.be/stops/408137"], ["https://data.delijn.be/stops/201690", "https://data.delijn.be/stops/203999"], ["https://data.delijn.be/stops/103770", "https://data.delijn.be/stops/105260"], ["https://data.delijn.be/stops/500128", "https://data.delijn.be/stops/502439"], ["https://data.delijn.be/stops/206641", "https://data.delijn.be/stops/207443"], ["https://data.delijn.be/stops/501177", "https://data.delijn.be/stops/506175"], ["https://data.delijn.be/stops/400378", "https://data.delijn.be/stops/400435"], ["https://data.delijn.be/stops/400015", "https://data.delijn.be/stops/400431"], ["https://data.delijn.be/stops/400495", "https://data.delijn.be/stops/407211"], ["https://data.delijn.be/stops/200450", "https://data.delijn.be/stops/208291"], ["https://data.delijn.be/stops/500948", "https://data.delijn.be/stops/504207"], ["https://data.delijn.be/stops/301155", "https://data.delijn.be/stops/301156"], ["https://data.delijn.be/stops/107945", "https://data.delijn.be/stops/107946"], ["https://data.delijn.be/stops/407813", "https://data.delijn.be/stops/408043"], ["https://data.delijn.be/stops/404426", "https://data.delijn.be/stops/404427"], ["https://data.delijn.be/stops/407609", "https://data.delijn.be/stops/407744"], ["https://data.delijn.be/stops/103737", "https://data.delijn.be/stops/108644"], ["https://data.delijn.be/stops/402400", "https://data.delijn.be/stops/402487"], ["https://data.delijn.be/stops/107860", "https://data.delijn.be/stops/107865"], ["https://data.delijn.be/stops/103218", "https://data.delijn.be/stops/107362"], ["https://data.delijn.be/stops/305459", "https://data.delijn.be/stops/308548"], ["https://data.delijn.be/stops/405204", "https://data.delijn.be/stops/405219"], ["https://data.delijn.be/stops/208668", "https://data.delijn.be/stops/209127"], ["https://data.delijn.be/stops/304877", "https://data.delijn.be/stops/308956"], ["https://data.delijn.be/stops/200228", "https://data.delijn.be/stops/201368"], ["https://data.delijn.be/stops/105714", "https://data.delijn.be/stops/105717"], ["https://data.delijn.be/stops/308094", "https://data.delijn.be/stops/308095"], ["https://data.delijn.be/stops/409398", "https://data.delijn.be/stops/409441"], ["https://data.delijn.be/stops/303336", "https://data.delijn.be/stops/305059"], ["https://data.delijn.be/stops/303311", "https://data.delijn.be/stops/303313"], ["https://data.delijn.be/stops/401347", "https://data.delijn.be/stops/401355"], ["https://data.delijn.be/stops/407731", "https://data.delijn.be/stops/409780"], ["https://data.delijn.be/stops/106672", "https://data.delijn.be/stops/106673"], ["https://data.delijn.be/stops/304017", "https://data.delijn.be/stops/304078"], ["https://data.delijn.be/stops/305642", "https://data.delijn.be/stops/305660"], ["https://data.delijn.be/stops/300308", "https://data.delijn.be/stops/303264"], ["https://data.delijn.be/stops/204702", "https://data.delijn.be/stops/205701"], ["https://data.delijn.be/stops/105888", "https://data.delijn.be/stops/105908"], ["https://data.delijn.be/stops/401710", "https://data.delijn.be/stops/406808"], ["https://data.delijn.be/stops/101655", "https://data.delijn.be/stops/104867"], ["https://data.delijn.be/stops/102847", "https://data.delijn.be/stops/104981"], ["https://data.delijn.be/stops/304738", "https://data.delijn.be/stops/308711"], ["https://data.delijn.be/stops/202740", "https://data.delijn.be/stops/206537"], ["https://data.delijn.be/stops/406100", "https://data.delijn.be/stops/406120"], ["https://data.delijn.be/stops/104593", "https://data.delijn.be/stops/108352"], ["https://data.delijn.be/stops/105693", "https://data.delijn.be/stops/105711"], ["https://data.delijn.be/stops/405545", "https://data.delijn.be/stops/406885"], ["https://data.delijn.be/stops/304584", "https://data.delijn.be/stops/307767"], ["https://data.delijn.be/stops/300269", "https://data.delijn.be/stops/302150"], ["https://data.delijn.be/stops/505908", "https://data.delijn.be/stops/508811"], ["https://data.delijn.be/stops/209202", "https://data.delijn.be/stops/209784"], ["https://data.delijn.be/stops/406218", "https://data.delijn.be/stops/406220"], ["https://data.delijn.be/stops/210010", "https://data.delijn.be/stops/502274"], ["https://data.delijn.be/stops/305271", "https://data.delijn.be/stops/305315"], ["https://data.delijn.be/stops/303694", "https://data.delijn.be/stops/303695"], ["https://data.delijn.be/stops/404348", "https://data.delijn.be/stops/404349"], ["https://data.delijn.be/stops/200468", "https://data.delijn.be/stops/201133"], ["https://data.delijn.be/stops/202533", "https://data.delijn.be/stops/203533"], ["https://data.delijn.be/stops/105618", "https://data.delijn.be/stops/105619"], ["https://data.delijn.be/stops/306285", "https://data.delijn.be/stops/306286"], ["https://data.delijn.be/stops/300375", "https://data.delijn.be/stops/300377"], ["https://data.delijn.be/stops/206149", "https://data.delijn.be/stops/206150"], ["https://data.delijn.be/stops/105426", "https://data.delijn.be/stops/105427"], ["https://data.delijn.be/stops/504296", "https://data.delijn.be/stops/504455"], ["https://data.delijn.be/stops/101145", "https://data.delijn.be/stops/101150"], ["https://data.delijn.be/stops/106399", "https://data.delijn.be/stops/106401"], ["https://data.delijn.be/stops/301660", "https://data.delijn.be/stops/307075"], ["https://data.delijn.be/stops/102121", "https://data.delijn.be/stops/109370"], ["https://data.delijn.be/stops/202870", "https://data.delijn.be/stops/203870"], ["https://data.delijn.be/stops/204429", "https://data.delijn.be/stops/205428"], ["https://data.delijn.be/stops/306938", "https://data.delijn.be/stops/308133"], ["https://data.delijn.be/stops/301405", "https://data.delijn.be/stops/304738"], ["https://data.delijn.be/stops/302108", "https://data.delijn.be/stops/302112"], ["https://data.delijn.be/stops/501182", "https://data.delijn.be/stops/506182"], ["https://data.delijn.be/stops/302389", "https://data.delijn.be/stops/302761"], ["https://data.delijn.be/stops/109063", "https://data.delijn.be/stops/307375"], ["https://data.delijn.be/stops/302114", "https://data.delijn.be/stops/302115"], ["https://data.delijn.be/stops/407634", "https://data.delijn.be/stops/410274"], ["https://data.delijn.be/stops/101536", "https://data.delijn.be/stops/101537"], ["https://data.delijn.be/stops/301366", "https://data.delijn.be/stops/308768"], ["https://data.delijn.be/stops/508525", "https://data.delijn.be/stops/508529"], ["https://data.delijn.be/stops/103110", "https://data.delijn.be/stops/103800"], ["https://data.delijn.be/stops/202909", "https://data.delijn.be/stops/203850"], ["https://data.delijn.be/stops/207678", "https://data.delijn.be/stops/208076"], ["https://data.delijn.be/stops/404365", "https://data.delijn.be/stops/404369"], ["https://data.delijn.be/stops/206905", "https://data.delijn.be/stops/207905"], ["https://data.delijn.be/stops/302658", "https://data.delijn.be/stops/303259"], ["https://data.delijn.be/stops/504992", "https://data.delijn.be/stops/508790"], ["https://data.delijn.be/stops/300575", "https://data.delijn.be/stops/300581"], ["https://data.delijn.be/stops/101547", "https://data.delijn.be/stops/101898"], ["https://data.delijn.be/stops/103525", "https://data.delijn.be/stops/105370"], ["https://data.delijn.be/stops/203315", "https://data.delijn.be/stops/203316"], ["https://data.delijn.be/stops/308215", "https://data.delijn.be/stops/308216"], ["https://data.delijn.be/stops/400446", "https://data.delijn.be/stops/400654"], ["https://data.delijn.be/stops/504549", "https://data.delijn.be/stops/509549"], ["https://data.delijn.be/stops/300161", "https://data.delijn.be/stops/301226"], ["https://data.delijn.be/stops/302938", "https://data.delijn.be/stops/303443"], ["https://data.delijn.be/stops/102750", "https://data.delijn.be/stops/102814"], ["https://data.delijn.be/stops/405894", "https://data.delijn.be/stops/408244"], ["https://data.delijn.be/stops/106851", "https://data.delijn.be/stops/106982"], ["https://data.delijn.be/stops/106751", "https://data.delijn.be/stops/307235"], ["https://data.delijn.be/stops/403175", "https://data.delijn.be/stops/403428"], ["https://data.delijn.be/stops/402858", "https://data.delijn.be/stops/409881"], ["https://data.delijn.be/stops/101785", "https://data.delijn.be/stops/103025"], ["https://data.delijn.be/stops/405939", "https://data.delijn.be/stops/405944"], ["https://data.delijn.be/stops/402378", "https://data.delijn.be/stops/402389"], ["https://data.delijn.be/stops/302958", "https://data.delijn.be/stops/302975"], ["https://data.delijn.be/stops/305416", "https://data.delijn.be/stops/305463"], ["https://data.delijn.be/stops/208366", "https://data.delijn.be/stops/208367"], ["https://data.delijn.be/stops/206931", "https://data.delijn.be/stops/207931"], ["https://data.delijn.be/stops/300451", "https://data.delijn.be/stops/308057"], ["https://data.delijn.be/stops/400057", "https://data.delijn.be/stops/400100"], ["https://data.delijn.be/stops/506120", "https://data.delijn.be/stops/506230"], ["https://data.delijn.be/stops/202574", "https://data.delijn.be/stops/203575"], ["https://data.delijn.be/stops/101525", "https://data.delijn.be/stops/102839"], ["https://data.delijn.be/stops/204984", "https://data.delijn.be/stops/211073"], ["https://data.delijn.be/stops/101753", "https://data.delijn.be/stops/109824"], ["https://data.delijn.be/stops/104552", "https://data.delijn.be/stops/105928"], ["https://data.delijn.be/stops/507715", "https://data.delijn.be/stops/508331"], ["https://data.delijn.be/stops/106433", "https://data.delijn.be/stops/106499"], ["https://data.delijn.be/stops/507373", "https://data.delijn.be/stops/507520"], ["https://data.delijn.be/stops/506095", "https://data.delijn.be/stops/509811"], ["https://data.delijn.be/stops/101856", "https://data.delijn.be/stops/104999"], ["https://data.delijn.be/stops/206513", "https://data.delijn.be/stops/206716"], ["https://data.delijn.be/stops/503699", "https://data.delijn.be/stops/503916"], ["https://data.delijn.be/stops/504167", "https://data.delijn.be/stops/509167"], ["https://data.delijn.be/stops/304202", "https://data.delijn.be/stops/304209"], ["https://data.delijn.be/stops/105284", "https://data.delijn.be/stops/109925"], ["https://data.delijn.be/stops/503552", "https://data.delijn.be/stops/503557"], ["https://data.delijn.be/stops/408253", "https://data.delijn.be/stops/408352"], ["https://data.delijn.be/stops/302589", "https://data.delijn.be/stops/302590"], ["https://data.delijn.be/stops/101642", "https://data.delijn.be/stops/107443"], ["https://data.delijn.be/stops/101000", "https://data.delijn.be/stops/104540"], ["https://data.delijn.be/stops/503682", "https://data.delijn.be/stops/508689"], ["https://data.delijn.be/stops/108026", "https://data.delijn.be/stops/108058"], ["https://data.delijn.be/stops/405551", "https://data.delijn.be/stops/405578"], ["https://data.delijn.be/stops/105478", "https://data.delijn.be/stops/105683"], ["https://data.delijn.be/stops/402936", "https://data.delijn.be/stops/405905"], ["https://data.delijn.be/stops/505898", "https://data.delijn.be/stops/509438"], ["https://data.delijn.be/stops/106419", "https://data.delijn.be/stops/106523"], ["https://data.delijn.be/stops/402662", "https://data.delijn.be/stops/402720"], ["https://data.delijn.be/stops/200306", "https://data.delijn.be/stops/201600"], ["https://data.delijn.be/stops/401764", "https://data.delijn.be/stops/401768"], ["https://data.delijn.be/stops/103203", "https://data.delijn.be/stops/107189"], ["https://data.delijn.be/stops/400628", "https://data.delijn.be/stops/404290"], ["https://data.delijn.be/stops/503163", "https://data.delijn.be/stops/503237"], ["https://data.delijn.be/stops/208267", "https://data.delijn.be/stops/208268"], ["https://data.delijn.be/stops/402723", "https://data.delijn.be/stops/402733"], ["https://data.delijn.be/stops/409066", "https://data.delijn.be/stops/409156"], ["https://data.delijn.be/stops/303638", "https://data.delijn.be/stops/304808"], ["https://data.delijn.be/stops/304534", "https://data.delijn.be/stops/304539"], ["https://data.delijn.be/stops/306964", "https://data.delijn.be/stops/306966"], ["https://data.delijn.be/stops/303365", "https://data.delijn.be/stops/303387"], ["https://data.delijn.be/stops/103586", "https://data.delijn.be/stops/103587"], ["https://data.delijn.be/stops/306915", "https://data.delijn.be/stops/306916"], ["https://data.delijn.be/stops/403956", "https://data.delijn.be/stops/407067"], ["https://data.delijn.be/stops/102081", "https://data.delijn.be/stops/109850"], ["https://data.delijn.be/stops/508542", "https://data.delijn.be/stops/508543"], ["https://data.delijn.be/stops/204136", "https://data.delijn.be/stops/204147"], ["https://data.delijn.be/stops/306700", "https://data.delijn.be/stops/307933"], ["https://data.delijn.be/stops/304996", "https://data.delijn.be/stops/305003"], ["https://data.delijn.be/stops/404660", "https://data.delijn.be/stops/404668"], ["https://data.delijn.be/stops/300478", "https://data.delijn.be/stops/300479"], ["https://data.delijn.be/stops/408911", "https://data.delijn.be/stops/408913"], ["https://data.delijn.be/stops/105076", "https://data.delijn.be/stops/108883"], ["https://data.delijn.be/stops/404528", "https://data.delijn.be/stops/404530"], ["https://data.delijn.be/stops/102081", "https://data.delijn.be/stops/105833"], ["https://data.delijn.be/stops/208062", "https://data.delijn.be/stops/208063"], ["https://data.delijn.be/stops/303225", "https://data.delijn.be/stops/304621"], ["https://data.delijn.be/stops/409435", "https://data.delijn.be/stops/409723"], ["https://data.delijn.be/stops/505608", "https://data.delijn.be/stops/507297"], ["https://data.delijn.be/stops/101794", "https://data.delijn.be/stops/102589"], ["https://data.delijn.be/stops/502204", "https://data.delijn.be/stops/508731"], ["https://data.delijn.be/stops/204712", "https://data.delijn.be/stops/205712"], ["https://data.delijn.be/stops/509264", "https://data.delijn.be/stops/509395"], ["https://data.delijn.be/stops/301774", "https://data.delijn.be/stops/306795"], ["https://data.delijn.be/stops/302540", "https://data.delijn.be/stops/302541"], ["https://data.delijn.be/stops/105119", "https://data.delijn.be/stops/109696"], ["https://data.delijn.be/stops/303340", "https://data.delijn.be/stops/303342"], ["https://data.delijn.be/stops/202030", "https://data.delijn.be/stops/203030"], ["https://data.delijn.be/stops/504147", "https://data.delijn.be/stops/509148"], ["https://data.delijn.be/stops/409876", "https://data.delijn.be/stops/409877"], ["https://data.delijn.be/stops/105571", "https://data.delijn.be/stops/105572"], ["https://data.delijn.be/stops/404868", "https://data.delijn.be/stops/404869"], ["https://data.delijn.be/stops/101754", "https://data.delijn.be/stops/105751"], ["https://data.delijn.be/stops/401215", "https://data.delijn.be/stops/401253"], ["https://data.delijn.be/stops/505600", "https://data.delijn.be/stops/505614"], ["https://data.delijn.be/stops/402307", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/103650", "https://data.delijn.be/stops/103651"], ["https://data.delijn.be/stops/208129", "https://data.delijn.be/stops/209128"], ["https://data.delijn.be/stops/405154", "https://data.delijn.be/stops/405213"], ["https://data.delijn.be/stops/502010", "https://data.delijn.be/stops/507039"], ["https://data.delijn.be/stops/505565", "https://data.delijn.be/stops/508752"], ["https://data.delijn.be/stops/305615", "https://data.delijn.be/stops/308944"], ["https://data.delijn.be/stops/402326", "https://data.delijn.be/stops/402327"], ["https://data.delijn.be/stops/202154", "https://data.delijn.be/stops/203627"], ["https://data.delijn.be/stops/302716", "https://data.delijn.be/stops/308596"], ["https://data.delijn.be/stops/501323", "https://data.delijn.be/stops/506323"], ["https://data.delijn.be/stops/202772", "https://data.delijn.be/stops/202773"], ["https://data.delijn.be/stops/504376", "https://data.delijn.be/stops/505652"], ["https://data.delijn.be/stops/302226", "https://data.delijn.be/stops/302245"], ["https://data.delijn.be/stops/202162", "https://data.delijn.be/stops/203163"], ["https://data.delijn.be/stops/506781", "https://data.delijn.be/stops/506782"], ["https://data.delijn.be/stops/303247", "https://data.delijn.be/stops/307687"], ["https://data.delijn.be/stops/302340", "https://data.delijn.be/stops/302341"], ["https://data.delijn.be/stops/302521", "https://data.delijn.be/stops/302529"], ["https://data.delijn.be/stops/300014", "https://data.delijn.be/stops/300399"], ["https://data.delijn.be/stops/504209", "https://data.delijn.be/stops/504210"], ["https://data.delijn.be/stops/400888", "https://data.delijn.be/stops/400889"], ["https://data.delijn.be/stops/300995", "https://data.delijn.be/stops/300996"], ["https://data.delijn.be/stops/409357", "https://data.delijn.be/stops/409386"], ["https://data.delijn.be/stops/101078", "https://data.delijn.be/stops/101087"], ["https://data.delijn.be/stops/103964", "https://data.delijn.be/stops/107548"], ["https://data.delijn.be/stops/402021", "https://data.delijn.be/stops/402973"], ["https://data.delijn.be/stops/408230", "https://data.delijn.be/stops/408426"], ["https://data.delijn.be/stops/505438", "https://data.delijn.be/stops/507299"], ["https://data.delijn.be/stops/200723", "https://data.delijn.be/stops/203585"], ["https://data.delijn.be/stops/303725", "https://data.delijn.be/stops/303748"], ["https://data.delijn.be/stops/201416", "https://data.delijn.be/stops/208889"], ["https://data.delijn.be/stops/406925", "https://data.delijn.be/stops/406933"], ["https://data.delijn.be/stops/408316", "https://data.delijn.be/stops/408333"], ["https://data.delijn.be/stops/504593", "https://data.delijn.be/stops/508996"], ["https://data.delijn.be/stops/400501", "https://data.delijn.be/stops/401961"], ["https://data.delijn.be/stops/101221", "https://data.delijn.be/stops/107829"], ["https://data.delijn.be/stops/300138", "https://data.delijn.be/stops/306805"], ["https://data.delijn.be/stops/400038", "https://data.delijn.be/stops/400040"], ["https://data.delijn.be/stops/101459", "https://data.delijn.be/stops/109276"], ["https://data.delijn.be/stops/400564", "https://data.delijn.be/stops/405122"], ["https://data.delijn.be/stops/305781", "https://data.delijn.be/stops/305782"], ["https://data.delijn.be/stops/400256", "https://data.delijn.be/stops/400257"], ["https://data.delijn.be/stops/209329", "https://data.delijn.be/stops/210004"], ["https://data.delijn.be/stops/200852", "https://data.delijn.be/stops/203302"], ["https://data.delijn.be/stops/104861", "https://data.delijn.be/stops/107817"], ["https://data.delijn.be/stops/400863", "https://data.delijn.be/stops/400879"], ["https://data.delijn.be/stops/406770", "https://data.delijn.be/stops/410261"], ["https://data.delijn.be/stops/105114", "https://data.delijn.be/stops/105117"], ["https://data.delijn.be/stops/401778", "https://data.delijn.be/stops/401786"], ["https://data.delijn.be/stops/207782", "https://data.delijn.be/stops/208191"], ["https://data.delijn.be/stops/400421", "https://data.delijn.be/stops/407100"], ["https://data.delijn.be/stops/202741", "https://data.delijn.be/stops/202878"], ["https://data.delijn.be/stops/208065", "https://data.delijn.be/stops/209521"], ["https://data.delijn.be/stops/402089", "https://data.delijn.be/stops/402104"], ["https://data.delijn.be/stops/405770", "https://data.delijn.be/stops/405841"], ["https://data.delijn.be/stops/503805", "https://data.delijn.be/stops/507202"], ["https://data.delijn.be/stops/503978", "https://data.delijn.be/stops/504276"], ["https://data.delijn.be/stops/106265", "https://data.delijn.be/stops/106268"], ["https://data.delijn.be/stops/200405", "https://data.delijn.be/stops/201405"], ["https://data.delijn.be/stops/401066", "https://data.delijn.be/stops/406658"], ["https://data.delijn.be/stops/404391", "https://data.delijn.be/stops/408689"], ["https://data.delijn.be/stops/204595", "https://data.delijn.be/stops/205796"], ["https://data.delijn.be/stops/108156", "https://data.delijn.be/stops/108681"], ["https://data.delijn.be/stops/507221", "https://data.delijn.be/stops/507223"], ["https://data.delijn.be/stops/505723", "https://data.delijn.be/stops/507292"], ["https://data.delijn.be/stops/405205", "https://data.delijn.be/stops/405213"], ["https://data.delijn.be/stops/105329", "https://data.delijn.be/stops/204021"], ["https://data.delijn.be/stops/102544", "https://data.delijn.be/stops/405102"], ["https://data.delijn.be/stops/305179", "https://data.delijn.be/stops/306933"], ["https://data.delijn.be/stops/404011", "https://data.delijn.be/stops/404014"], ["https://data.delijn.be/stops/200712", "https://data.delijn.be/stops/203603"], ["https://data.delijn.be/stops/205795", "https://data.delijn.be/stops/205796"], ["https://data.delijn.be/stops/304097", "https://data.delijn.be/stops/307509"], ["https://data.delijn.be/stops/106915", "https://data.delijn.be/stops/106953"], ["https://data.delijn.be/stops/105321", "https://data.delijn.be/stops/105322"], ["https://data.delijn.be/stops/108316", "https://data.delijn.be/stops/108754"], ["https://data.delijn.be/stops/502184", "https://data.delijn.be/stops/502185"], ["https://data.delijn.be/stops/504228", "https://data.delijn.be/stops/509625"], ["https://data.delijn.be/stops/101475", "https://data.delijn.be/stops/108762"], ["https://data.delijn.be/stops/108822", "https://data.delijn.be/stops/108823"], ["https://data.delijn.be/stops/108402", "https://data.delijn.be/stops/108404"], ["https://data.delijn.be/stops/106654", "https://data.delijn.be/stops/106655"], ["https://data.delijn.be/stops/201907", "https://data.delijn.be/stops/203498"], ["https://data.delijn.be/stops/307644", "https://data.delijn.be/stops/307645"], ["https://data.delijn.be/stops/204006", "https://data.delijn.be/stops/205322"], ["https://data.delijn.be/stops/408098", "https://data.delijn.be/stops/408118"], ["https://data.delijn.be/stops/204581", "https://data.delijn.be/stops/205592"], ["https://data.delijn.be/stops/108642", "https://data.delijn.be/stops/108978"], ["https://data.delijn.be/stops/404793", "https://data.delijn.be/stops/404814"], ["https://data.delijn.be/stops/504171", "https://data.delijn.be/stops/509347"], ["https://data.delijn.be/stops/302180", "https://data.delijn.be/stops/308096"], ["https://data.delijn.be/stops/202116", "https://data.delijn.be/stops/204773"], ["https://data.delijn.be/stops/403784", "https://data.delijn.be/stops/408991"], ["https://data.delijn.be/stops/502740", "https://data.delijn.be/stops/502920"], ["https://data.delijn.be/stops/507279", "https://data.delijn.be/stops/507280"], ["https://data.delijn.be/stops/402968", "https://data.delijn.be/stops/402979"], ["https://data.delijn.be/stops/206732", "https://data.delijn.be/stops/301664"], ["https://data.delijn.be/stops/105784", "https://data.delijn.be/stops/105936"], ["https://data.delijn.be/stops/201896", "https://data.delijn.be/stops/202940"], ["https://data.delijn.be/stops/206085", "https://data.delijn.be/stops/207989"], ["https://data.delijn.be/stops/505202", "https://data.delijn.be/stops/508153"], ["https://data.delijn.be/stops/403306", "https://data.delijn.be/stops/403535"], ["https://data.delijn.be/stops/203835", "https://data.delijn.be/stops/203836"], ["https://data.delijn.be/stops/405194", "https://data.delijn.be/stops/405195"], ["https://data.delijn.be/stops/304515", "https://data.delijn.be/stops/304516"], ["https://data.delijn.be/stops/403710", "https://data.delijn.be/stops/403786"], ["https://data.delijn.be/stops/109319", "https://data.delijn.be/stops/109354"], ["https://data.delijn.be/stops/107551", "https://data.delijn.be/stops/107553"], ["https://data.delijn.be/stops/204180", "https://data.delijn.be/stops/204182"], ["https://data.delijn.be/stops/305803", "https://data.delijn.be/stops/305806"], ["https://data.delijn.be/stops/406952", "https://data.delijn.be/stops/409467"], ["https://data.delijn.be/stops/501396", "https://data.delijn.be/stops/590331"], ["https://data.delijn.be/stops/204160", "https://data.delijn.be/stops/205162"], ["https://data.delijn.be/stops/209214", "https://data.delijn.be/stops/209215"], ["https://data.delijn.be/stops/200106", "https://data.delijn.be/stops/200107"], ["https://data.delijn.be/stops/302664", "https://data.delijn.be/stops/302678"], ["https://data.delijn.be/stops/505126", "https://data.delijn.be/stops/505128"], ["https://data.delijn.be/stops/206590", "https://data.delijn.be/stops/207590"], ["https://data.delijn.be/stops/401203", "https://data.delijn.be/stops/401207"], ["https://data.delijn.be/stops/408292", "https://data.delijn.be/stops/408390"], ["https://data.delijn.be/stops/500927", "https://data.delijn.be/stops/505307"], ["https://data.delijn.be/stops/206750", "https://data.delijn.be/stops/209477"], ["https://data.delijn.be/stops/504948", "https://data.delijn.be/stops/508729"], ["https://data.delijn.be/stops/302999", "https://data.delijn.be/stops/304709"], ["https://data.delijn.be/stops/302549", "https://data.delijn.be/stops/302554"], ["https://data.delijn.be/stops/408302", "https://data.delijn.be/stops/408938"], ["https://data.delijn.be/stops/409602", "https://data.delijn.be/stops/409609"], ["https://data.delijn.be/stops/105158", "https://data.delijn.be/stops/108761"], ["https://data.delijn.be/stops/304223", "https://data.delijn.be/stops/304237"], ["https://data.delijn.be/stops/206869", "https://data.delijn.be/stops/207550"], ["https://data.delijn.be/stops/407739", "https://data.delijn.be/stops/407766"], ["https://data.delijn.be/stops/203887", "https://data.delijn.be/stops/207421"], ["https://data.delijn.be/stops/400602", "https://data.delijn.be/stops/404294"], ["https://data.delijn.be/stops/403618", "https://data.delijn.be/stops/403653"], ["https://data.delijn.be/stops/105531", "https://data.delijn.be/stops/106834"], ["https://data.delijn.be/stops/403154", "https://data.delijn.be/stops/403318"], ["https://data.delijn.be/stops/308429", "https://data.delijn.be/stops/308431"], ["https://data.delijn.be/stops/505507", "https://data.delijn.be/stops/505614"], ["https://data.delijn.be/stops/300513", "https://data.delijn.be/stops/300514"], ["https://data.delijn.be/stops/503082", "https://data.delijn.be/stops/508083"], ["https://data.delijn.be/stops/101193", "https://data.delijn.be/stops/101197"], ["https://data.delijn.be/stops/402719", "https://data.delijn.be/stops/405994"], ["https://data.delijn.be/stops/204048", "https://data.delijn.be/stops/205520"], ["https://data.delijn.be/stops/201279", "https://data.delijn.be/stops/201516"], ["https://data.delijn.be/stops/404441", "https://data.delijn.be/stops/409428"], ["https://data.delijn.be/stops/402863", "https://data.delijn.be/stops/408173"], ["https://data.delijn.be/stops/101513", "https://data.delijn.be/stops/109029"], ["https://data.delijn.be/stops/404700", "https://data.delijn.be/stops/404702"], ["https://data.delijn.be/stops/200139", "https://data.delijn.be/stops/201985"], ["https://data.delijn.be/stops/404708", "https://data.delijn.be/stops/404774"], ["https://data.delijn.be/stops/404617", "https://data.delijn.be/stops/406831"], ["https://data.delijn.be/stops/204114", "https://data.delijn.be/stops/205110"], ["https://data.delijn.be/stops/301090", "https://data.delijn.be/stops/304299"], ["https://data.delijn.be/stops/104287", "https://data.delijn.be/stops/104289"], ["https://data.delijn.be/stops/407120", "https://data.delijn.be/stops/409512"], ["https://data.delijn.be/stops/204989", "https://data.delijn.be/stops/209548"], ["https://data.delijn.be/stops/301315", "https://data.delijn.be/stops/301316"], ["https://data.delijn.be/stops/409392", "https://data.delijn.be/stops/409393"], ["https://data.delijn.be/stops/402382", "https://data.delijn.be/stops/402453"], ["https://data.delijn.be/stops/105758", "https://data.delijn.be/stops/105759"], ["https://data.delijn.be/stops/400276", "https://data.delijn.be/stops/400416"], ["https://data.delijn.be/stops/106098", "https://data.delijn.be/stops/106147"], ["https://data.delijn.be/stops/102503", "https://data.delijn.be/stops/400022"], ["https://data.delijn.be/stops/400771", "https://data.delijn.be/stops/410088"], ["https://data.delijn.be/stops/400134", "https://data.delijn.be/stops/409155"], ["https://data.delijn.be/stops/301332", "https://data.delijn.be/stops/301333"], ["https://data.delijn.be/stops/402241", "https://data.delijn.be/stops/402334"], ["https://data.delijn.be/stops/204905", "https://data.delijn.be/stops/205218"], ["https://data.delijn.be/stops/308246", "https://data.delijn.be/stops/308250"], ["https://data.delijn.be/stops/306350", "https://data.delijn.be/stops/308813"], ["https://data.delijn.be/stops/102456", "https://data.delijn.be/stops/102466"], ["https://data.delijn.be/stops/303401", "https://data.delijn.be/stops/304827"], ["https://data.delijn.be/stops/204404", "https://data.delijn.be/stops/205197"], ["https://data.delijn.be/stops/403280", "https://data.delijn.be/stops/404146"], ["https://data.delijn.be/stops/106303", "https://data.delijn.be/stops/106307"], ["https://data.delijn.be/stops/506107", "https://data.delijn.be/stops/506112"], ["https://data.delijn.be/stops/302640", "https://data.delijn.be/stops/304098"], ["https://data.delijn.be/stops/203318", "https://data.delijn.be/stops/203319"], ["https://data.delijn.be/stops/200954", "https://data.delijn.be/stops/201628"], ["https://data.delijn.be/stops/504797", "https://data.delijn.be/stops/508451"], ["https://data.delijn.be/stops/502264", "https://data.delijn.be/stops/505704"], ["https://data.delijn.be/stops/303393", "https://data.delijn.be/stops/303394"], ["https://data.delijn.be/stops/504778", "https://data.delijn.be/stops/508498"], ["https://data.delijn.be/stops/400991", "https://data.delijn.be/stops/409140"], ["https://data.delijn.be/stops/505332", "https://data.delijn.be/stops/507734"], ["https://data.delijn.be/stops/401288", "https://data.delijn.be/stops/401290"], ["https://data.delijn.be/stops/303570", "https://data.delijn.be/stops/303571"], ["https://data.delijn.be/stops/508141", "https://data.delijn.be/stops/509884"], ["https://data.delijn.be/stops/204095", "https://data.delijn.be/stops/205208"], ["https://data.delijn.be/stops/105637", "https://data.delijn.be/stops/105638"], ["https://data.delijn.be/stops/410128", "https://data.delijn.be/stops/410129"], ["https://data.delijn.be/stops/102007", "https://data.delijn.be/stops/205493"], ["https://data.delijn.be/stops/105721", "https://data.delijn.be/stops/106563"], ["https://data.delijn.be/stops/300005", "https://data.delijn.be/stops/304505"], ["https://data.delijn.be/stops/501608", "https://data.delijn.be/stops/506608"], ["https://data.delijn.be/stops/101923", "https://data.delijn.be/stops/107021"], ["https://data.delijn.be/stops/200720", "https://data.delijn.be/stops/202641"], ["https://data.delijn.be/stops/101719", "https://data.delijn.be/stops/101721"], ["https://data.delijn.be/stops/405088", "https://data.delijn.be/stops/405751"], ["https://data.delijn.be/stops/204308", "https://data.delijn.be/stops/205448"], ["https://data.delijn.be/stops/106605", "https://data.delijn.be/stops/107123"], ["https://data.delijn.be/stops/206505", "https://data.delijn.be/stops/207504"], ["https://data.delijn.be/stops/200347", "https://data.delijn.be/stops/208404"], ["https://data.delijn.be/stops/501115", "https://data.delijn.be/stops/506732"], ["https://data.delijn.be/stops/201305", "https://data.delijn.be/stops/201600"], ["https://data.delijn.be/stops/203922", "https://data.delijn.be/stops/208695"], ["https://data.delijn.be/stops/208510", "https://data.delijn.be/stops/209510"], ["https://data.delijn.be/stops/304612", "https://data.delijn.be/stops/304630"], ["https://data.delijn.be/stops/302576", "https://data.delijn.be/stops/302580"], ["https://data.delijn.be/stops/101789", "https://data.delijn.be/stops/105613"], ["https://data.delijn.be/stops/408498", "https://data.delijn.be/stops/408504"], ["https://data.delijn.be/stops/506298", "https://data.delijn.be/stops/506299"], ["https://data.delijn.be/stops/500940", "https://data.delijn.be/stops/508894"], ["https://data.delijn.be/stops/406653", "https://data.delijn.be/stops/406657"], ["https://data.delijn.be/stops/503959", "https://data.delijn.be/stops/508959"], ["https://data.delijn.be/stops/508386", "https://data.delijn.be/stops/509771"], ["https://data.delijn.be/stops/300949", "https://data.delijn.be/stops/305397"], ["https://data.delijn.be/stops/305539", "https://data.delijn.be/stops/305583"], ["https://data.delijn.be/stops/107444", "https://data.delijn.be/stops/107447"], ["https://data.delijn.be/stops/302694", "https://data.delijn.be/stops/303612"], ["https://data.delijn.be/stops/304802", "https://data.delijn.be/stops/304810"], ["https://data.delijn.be/stops/404872", "https://data.delijn.be/stops/409149"], ["https://data.delijn.be/stops/303056", "https://data.delijn.be/stops/306108"], ["https://data.delijn.be/stops/303260", "https://data.delijn.be/stops/303261"], ["https://data.delijn.be/stops/502083", "https://data.delijn.be/stops/502640"], ["https://data.delijn.be/stops/200547", "https://data.delijn.be/stops/208680"], ["https://data.delijn.be/stops/400706", "https://data.delijn.be/stops/404374"], ["https://data.delijn.be/stops/201358", "https://data.delijn.be/stops/201485"], ["https://data.delijn.be/stops/202880", "https://data.delijn.be/stops/203877"], ["https://data.delijn.be/stops/106180", "https://data.delijn.be/stops/107438"], ["https://data.delijn.be/stops/301234", "https://data.delijn.be/stops/307908"], ["https://data.delijn.be/stops/200536", "https://data.delijn.be/stops/210132"], ["https://data.delijn.be/stops/300235", "https://data.delijn.be/stops/303893"], ["https://data.delijn.be/stops/408090", "https://data.delijn.be/stops/410161"], ["https://data.delijn.be/stops/407715", "https://data.delijn.be/stops/407725"], ["https://data.delijn.be/stops/403332", "https://data.delijn.be/stops/403348"], ["https://data.delijn.be/stops/200590", "https://data.delijn.be/stops/201584"], ["https://data.delijn.be/stops/304728", "https://data.delijn.be/stops/304730"], ["https://data.delijn.be/stops/504847", "https://data.delijn.be/stops/590010"], ["https://data.delijn.be/stops/406675", "https://data.delijn.be/stops/406691"], ["https://data.delijn.be/stops/501369", "https://data.delijn.be/stops/506369"], ["https://data.delijn.be/stops/402109", "https://data.delijn.be/stops/402334"], ["https://data.delijn.be/stops/206842", "https://data.delijn.be/stops/207919"], ["https://data.delijn.be/stops/101906", "https://data.delijn.be/stops/107113"], ["https://data.delijn.be/stops/303304", "https://data.delijn.be/stops/303309"], ["https://data.delijn.be/stops/404771", "https://data.delijn.be/stops/404786"], ["https://data.delijn.be/stops/300015", "https://data.delijn.be/stops/301974"], ["https://data.delijn.be/stops/403126", "https://data.delijn.be/stops/403352"], ["https://data.delijn.be/stops/203058", "https://data.delijn.be/stops/203280"], ["https://data.delijn.be/stops/105336", "https://data.delijn.be/stops/105337"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/201749"], ["https://data.delijn.be/stops/304303", "https://data.delijn.be/stops/306628"], ["https://data.delijn.be/stops/300788", "https://data.delijn.be/stops/306117"], ["https://data.delijn.be/stops/202297", "https://data.delijn.be/stops/211298"], ["https://data.delijn.be/stops/101273", "https://data.delijn.be/stops/103415"], ["https://data.delijn.be/stops/400537", "https://data.delijn.be/stops/400572"], ["https://data.delijn.be/stops/109091", "https://data.delijn.be/stops/109093"], ["https://data.delijn.be/stops/104262", "https://data.delijn.be/stops/105929"], ["https://data.delijn.be/stops/101067", "https://data.delijn.be/stops/101069"], ["https://data.delijn.be/stops/107202", "https://data.delijn.be/stops/406796"], ["https://data.delijn.be/stops/503225", "https://data.delijn.be/stops/503229"], ["https://data.delijn.be/stops/305101", "https://data.delijn.be/stops/305138"], ["https://data.delijn.be/stops/203979", "https://data.delijn.be/stops/205995"], ["https://data.delijn.be/stops/208571", "https://data.delijn.be/stops/209571"], ["https://data.delijn.be/stops/301602", "https://data.delijn.be/stops/306260"], ["https://data.delijn.be/stops/200962", "https://data.delijn.be/stops/201572"], ["https://data.delijn.be/stops/306724", "https://data.delijn.be/stops/306725"], ["https://data.delijn.be/stops/304364", "https://data.delijn.be/stops/304365"], ["https://data.delijn.be/stops/202236", "https://data.delijn.be/stops/202239"], ["https://data.delijn.be/stops/400492", "https://data.delijn.be/stops/400495"], ["https://data.delijn.be/stops/502031", "https://data.delijn.be/stops/507118"], ["https://data.delijn.be/stops/302314", "https://data.delijn.be/stops/307521"], ["https://data.delijn.be/stops/101387", "https://data.delijn.be/stops/101828"], ["https://data.delijn.be/stops/301153", "https://data.delijn.be/stops/301156"], ["https://data.delijn.be/stops/404368", "https://data.delijn.be/stops/409690"], ["https://data.delijn.be/stops/206986", "https://data.delijn.be/stops/207986"], ["https://data.delijn.be/stops/300012", "https://data.delijn.be/stops/300805"], ["https://data.delijn.be/stops/302717", "https://data.delijn.be/stops/302736"], ["https://data.delijn.be/stops/300283", "https://data.delijn.be/stops/300294"], ["https://data.delijn.be/stops/103973", "https://data.delijn.be/stops/104627"], ["https://data.delijn.be/stops/405293", "https://data.delijn.be/stops/405296"], ["https://data.delijn.be/stops/502541", "https://data.delijn.be/stops/507541"], ["https://data.delijn.be/stops/301520", "https://data.delijn.be/stops/301527"], ["https://data.delijn.be/stops/402878", "https://data.delijn.be/stops/306306"], ["https://data.delijn.be/stops/503233", "https://data.delijn.be/stops/503260"], ["https://data.delijn.be/stops/106919", "https://data.delijn.be/stops/107284"], ["https://data.delijn.be/stops/501521", "https://data.delijn.be/stops/506318"], ["https://data.delijn.be/stops/304965", "https://data.delijn.be/stops/304977"], ["https://data.delijn.be/stops/301536", "https://data.delijn.be/stops/304702"], ["https://data.delijn.be/stops/301924", "https://data.delijn.be/stops/307813"], ["https://data.delijn.be/stops/404628", "https://data.delijn.be/stops/410125"], ["https://data.delijn.be/stops/106764", "https://data.delijn.be/stops/106863"], ["https://data.delijn.be/stops/201151", "https://data.delijn.be/stops/202358"], ["https://data.delijn.be/stops/102287", "https://data.delijn.be/stops/102288"], ["https://data.delijn.be/stops/403046", "https://data.delijn.be/stops/403501"], ["https://data.delijn.be/stops/200804", "https://data.delijn.be/stops/201885"], ["https://data.delijn.be/stops/108379", "https://data.delijn.be/stops/108381"], ["https://data.delijn.be/stops/205103", "https://data.delijn.be/stops/205209"], ["https://data.delijn.be/stops/500953", "https://data.delijn.be/stops/508627"], ["https://data.delijn.be/stops/303663", "https://data.delijn.be/stops/304941"], ["https://data.delijn.be/stops/405700", "https://data.delijn.be/stops/405745"], ["https://data.delijn.be/stops/201216", "https://data.delijn.be/stops/201259"], ["https://data.delijn.be/stops/205703", "https://data.delijn.be/stops/205726"], ["https://data.delijn.be/stops/403116", "https://data.delijn.be/stops/403117"], ["https://data.delijn.be/stops/307987", "https://data.delijn.be/stops/307989"], ["https://data.delijn.be/stops/505791", "https://data.delijn.be/stops/509436"], ["https://data.delijn.be/stops/500053", "https://data.delijn.be/stops/502816"], ["https://data.delijn.be/stops/402321", "https://data.delijn.be/stops/402322"], ["https://data.delijn.be/stops/300794", "https://data.delijn.be/stops/300795"], ["https://data.delijn.be/stops/200384", "https://data.delijn.be/stops/211048"], ["https://data.delijn.be/stops/204717", "https://data.delijn.be/stops/205717"], ["https://data.delijn.be/stops/303288", "https://data.delijn.be/stops/303289"], ["https://data.delijn.be/stops/405282", "https://data.delijn.be/stops/409775"], ["https://data.delijn.be/stops/109728", "https://data.delijn.be/stops/401956"], ["https://data.delijn.be/stops/404724", "https://data.delijn.be/stops/404740"], ["https://data.delijn.be/stops/102671", "https://data.delijn.be/stops/105643"], ["https://data.delijn.be/stops/301730", "https://data.delijn.be/stops/301775"], ["https://data.delijn.be/stops/304013", "https://data.delijn.be/stops/307510"], ["https://data.delijn.be/stops/200822", "https://data.delijn.be/stops/201723"], ["https://data.delijn.be/stops/109886", "https://data.delijn.be/stops/109888"], ["https://data.delijn.be/stops/201933", "https://data.delijn.be/stops/203949"], ["https://data.delijn.be/stops/400686", "https://data.delijn.be/stops/404608"], ["https://data.delijn.be/stops/201714", "https://data.delijn.be/stops/203378"], ["https://data.delijn.be/stops/307796", "https://data.delijn.be/stops/307797"], ["https://data.delijn.be/stops/406619", "https://data.delijn.be/stops/406637"], ["https://data.delijn.be/stops/206279", "https://data.delijn.be/stops/206398"], ["https://data.delijn.be/stops/303300", "https://data.delijn.be/stops/303343"], ["https://data.delijn.be/stops/402123", "https://data.delijn.be/stops/409286"], ["https://data.delijn.be/stops/102093", "https://data.delijn.be/stops/109807"], ["https://data.delijn.be/stops/501290", "https://data.delijn.be/stops/501372"], ["https://data.delijn.be/stops/307011", "https://data.delijn.be/stops/307017"], ["https://data.delijn.be/stops/400514", "https://data.delijn.be/stops/410109"], ["https://data.delijn.be/stops/300379", "https://data.delijn.be/stops/300468"], ["https://data.delijn.be/stops/102620", "https://data.delijn.be/stops/103757"], ["https://data.delijn.be/stops/204634", "https://data.delijn.be/stops/204635"], ["https://data.delijn.be/stops/200434", "https://data.delijn.be/stops/201434"], ["https://data.delijn.be/stops/502165", "https://data.delijn.be/stops/507150"], ["https://data.delijn.be/stops/401846", "https://data.delijn.be/stops/401847"], ["https://data.delijn.be/stops/408272", "https://data.delijn.be/stops/408273"], ["https://data.delijn.be/stops/407934", "https://data.delijn.be/stops/407935"], ["https://data.delijn.be/stops/101315", "https://data.delijn.be/stops/105445"], ["https://data.delijn.be/stops/101524", "https://data.delijn.be/stops/108797"], ["https://data.delijn.be/stops/409382", "https://data.delijn.be/stops/409389"], ["https://data.delijn.be/stops/104768", "https://data.delijn.be/stops/108904"], ["https://data.delijn.be/stops/206175", "https://data.delijn.be/stops/207450"], ["https://data.delijn.be/stops/402737", "https://data.delijn.be/stops/405952"], ["https://data.delijn.be/stops/406198", "https://data.delijn.be/stops/406431"], ["https://data.delijn.be/stops/503643", "https://data.delijn.be/stops/505161"], ["https://data.delijn.be/stops/400102", "https://data.delijn.be/stops/409075"], ["https://data.delijn.be/stops/200113", "https://data.delijn.be/stops/211047"], ["https://data.delijn.be/stops/304887", "https://data.delijn.be/stops/306165"], ["https://data.delijn.be/stops/503475", "https://data.delijn.be/stops/504806"], ["https://data.delijn.be/stops/106615", "https://data.delijn.be/stops/106702"], ["https://data.delijn.be/stops/200766", "https://data.delijn.be/stops/208318"], ["https://data.delijn.be/stops/502483", "https://data.delijn.be/stops/507483"], ["https://data.delijn.be/stops/405394", "https://data.delijn.be/stops/408948"], ["https://data.delijn.be/stops/104027", "https://data.delijn.be/stops/106900"], ["https://data.delijn.be/stops/404670", "https://data.delijn.be/stops/408908"], ["https://data.delijn.be/stops/503782", "https://data.delijn.be/stops/508785"], ["https://data.delijn.be/stops/501401", "https://data.delijn.be/stops/501527"], ["https://data.delijn.be/stops/403837", "https://data.delijn.be/stops/403849"], ["https://data.delijn.be/stops/200199", "https://data.delijn.be/stops/202479"], ["https://data.delijn.be/stops/400691", "https://data.delijn.be/stops/409573"], ["https://data.delijn.be/stops/508036", "https://data.delijn.be/stops/508037"], ["https://data.delijn.be/stops/401026", "https://data.delijn.be/stops/402214"], ["https://data.delijn.be/stops/304583", "https://data.delijn.be/stops/304611"], ["https://data.delijn.be/stops/208613", "https://data.delijn.be/stops/208614"], ["https://data.delijn.be/stops/104706", "https://data.delijn.be/stops/107084"], ["https://data.delijn.be/stops/405684", "https://data.delijn.be/stops/406472"], ["https://data.delijn.be/stops/500558", "https://data.delijn.be/stops/506044"], ["https://data.delijn.be/stops/304773", "https://data.delijn.be/stops/308694"], ["https://data.delijn.be/stops/407016", "https://data.delijn.be/stops/407079"], ["https://data.delijn.be/stops/306679", "https://data.delijn.be/stops/306681"], ["https://data.delijn.be/stops/502694", "https://data.delijn.be/stops/507415"], ["https://data.delijn.be/stops/402897", "https://data.delijn.be/stops/402898"], ["https://data.delijn.be/stops/503240", "https://data.delijn.be/stops/503518"], ["https://data.delijn.be/stops/402261", "https://data.delijn.be/stops/402472"], ["https://data.delijn.be/stops/101376", "https://data.delijn.be/stops/106531"], ["https://data.delijn.be/stops/206358", "https://data.delijn.be/stops/207690"], ["https://data.delijn.be/stops/208631", "https://data.delijn.be/stops/208632"], ["https://data.delijn.be/stops/400639", "https://data.delijn.be/stops/400912"], ["https://data.delijn.be/stops/202661", "https://data.delijn.be/stops/210007"], ["https://data.delijn.be/stops/305193", "https://data.delijn.be/stops/307091"], ["https://data.delijn.be/stops/403104", "https://data.delijn.be/stops/403115"], ["https://data.delijn.be/stops/301783", "https://data.delijn.be/stops/301784"], ["https://data.delijn.be/stops/505729", "https://data.delijn.be/stops/505746"], ["https://data.delijn.be/stops/307964", "https://data.delijn.be/stops/307973"], ["https://data.delijn.be/stops/505141", "https://data.delijn.be/stops/505233"], ["https://data.delijn.be/stops/501373", "https://data.delijn.be/stops/501498"], ["https://data.delijn.be/stops/508685", "https://data.delijn.be/stops/508688"], ["https://data.delijn.be/stops/300926", "https://data.delijn.be/stops/300988"], ["https://data.delijn.be/stops/406155", "https://data.delijn.be/stops/406156"], ["https://data.delijn.be/stops/304019", "https://data.delijn.be/stops/304039"], ["https://data.delijn.be/stops/204148", "https://data.delijn.be/stops/204784"], ["https://data.delijn.be/stops/103698", "https://data.delijn.be/stops/103699"], ["https://data.delijn.be/stops/402221", "https://data.delijn.be/stops/402372"], ["https://data.delijn.be/stops/301772", "https://data.delijn.be/stops/301779"], ["https://data.delijn.be/stops/202694", "https://data.delijn.be/stops/203694"], ["https://data.delijn.be/stops/207752", "https://data.delijn.be/stops/207766"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/302874"], ["https://data.delijn.be/stops/405849", "https://data.delijn.be/stops/409412"], ["https://data.delijn.be/stops/206835", "https://data.delijn.be/stops/207835"], ["https://data.delijn.be/stops/508386", "https://data.delijn.be/stops/508403"], ["https://data.delijn.be/stops/410281", "https://data.delijn.be/stops/410282"], ["https://data.delijn.be/stops/101583", "https://data.delijn.be/stops/105449"], ["https://data.delijn.be/stops/301037", "https://data.delijn.be/stops/301076"], ["https://data.delijn.be/stops/105672", "https://data.delijn.be/stops/105803"], ["https://data.delijn.be/stops/307277", "https://data.delijn.be/stops/307873"], ["https://data.delijn.be/stops/505761", "https://data.delijn.be/stops/507763"], ["https://data.delijn.be/stops/104988", "https://data.delijn.be/stops/109695"], ["https://data.delijn.be/stops/108838", "https://data.delijn.be/stops/108840"], ["https://data.delijn.be/stops/206222", "https://data.delijn.be/stops/207854"], ["https://data.delijn.be/stops/102867", "https://data.delijn.be/stops/106443"], ["https://data.delijn.be/stops/501635", "https://data.delijn.be/stops/506255"], ["https://data.delijn.be/stops/101226", "https://data.delijn.be/stops/107804"], ["https://data.delijn.be/stops/508108", "https://data.delijn.be/stops/508525"], ["https://data.delijn.be/stops/207222", "https://data.delijn.be/stops/207863"], ["https://data.delijn.be/stops/202423", "https://data.delijn.be/stops/202424"], ["https://data.delijn.be/stops/506389", "https://data.delijn.be/stops/506390"], ["https://data.delijn.be/stops/406289", "https://data.delijn.be/stops/406442"], ["https://data.delijn.be/stops/405798", "https://data.delijn.be/stops/405817"], ["https://data.delijn.be/stops/302686", "https://data.delijn.be/stops/302691"], ["https://data.delijn.be/stops/205500", "https://data.delijn.be/stops/205544"], ["https://data.delijn.be/stops/307527", "https://data.delijn.be/stops/307528"], ["https://data.delijn.be/stops/106527", "https://data.delijn.be/stops/106528"], ["https://data.delijn.be/stops/101553", "https://data.delijn.be/stops/107301"], ["https://data.delijn.be/stops/108757", "https://data.delijn.be/stops/109549"], ["https://data.delijn.be/stops/405623", "https://data.delijn.be/stops/409258"], ["https://data.delijn.be/stops/103132", "https://data.delijn.be/stops/106666"], ["https://data.delijn.be/stops/400110", "https://data.delijn.be/stops/400146"], ["https://data.delijn.be/stops/408130", "https://data.delijn.be/stops/408131"], ["https://data.delijn.be/stops/406062", "https://data.delijn.be/stops/406089"], ["https://data.delijn.be/stops/102957", "https://data.delijn.be/stops/103763"], ["https://data.delijn.be/stops/102912", "https://data.delijn.be/stops/105060"], ["https://data.delijn.be/stops/205613", "https://data.delijn.be/stops/205648"], ["https://data.delijn.be/stops/106947", "https://data.delijn.be/stops/106948"], ["https://data.delijn.be/stops/504092", "https://data.delijn.be/stops/504846"], ["https://data.delijn.be/stops/107043", "https://data.delijn.be/stops/108247"], ["https://data.delijn.be/stops/301930", "https://data.delijn.be/stops/305606"], ["https://data.delijn.be/stops/401786", "https://data.delijn.be/stops/406048"], ["https://data.delijn.be/stops/302912", "https://data.delijn.be/stops/302914"], ["https://data.delijn.be/stops/302440", "https://data.delijn.be/stops/302449"], ["https://data.delijn.be/stops/208220", "https://data.delijn.be/stops/209773"], ["https://data.delijn.be/stops/304726", "https://data.delijn.be/stops/304851"], ["https://data.delijn.be/stops/101296", "https://data.delijn.be/stops/101298"], ["https://data.delijn.be/stops/102689", "https://data.delijn.be/stops/104398"], ["https://data.delijn.be/stops/300347", "https://data.delijn.be/stops/300353"], ["https://data.delijn.be/stops/304792", "https://data.delijn.be/stops/304800"], ["https://data.delijn.be/stops/200132", "https://data.delijn.be/stops/200491"], ["https://data.delijn.be/stops/504766", "https://data.delijn.be/stops/508524"], ["https://data.delijn.be/stops/302497", "https://data.delijn.be/stops/302785"], ["https://data.delijn.be/stops/208546", "https://data.delijn.be/stops/209546"], ["https://data.delijn.be/stops/200448", "https://data.delijn.be/stops/201071"], ["https://data.delijn.be/stops/401592", "https://data.delijn.be/stops/401596"], ["https://data.delijn.be/stops/201810", "https://data.delijn.be/stops/201834"], ["https://data.delijn.be/stops/504254", "https://data.delijn.be/stops/509253"], ["https://data.delijn.be/stops/305253", "https://data.delijn.be/stops/305287"], ["https://data.delijn.be/stops/300653", "https://data.delijn.be/stops/302462"], ["https://data.delijn.be/stops/202454", "https://data.delijn.be/stops/203454"], ["https://data.delijn.be/stops/101821", "https://data.delijn.be/stops/107068"], ["https://data.delijn.be/stops/103525", "https://data.delijn.be/stops/105595"], ["https://data.delijn.be/stops/201861", "https://data.delijn.be/stops/202892"], ["https://data.delijn.be/stops/405509", "https://data.delijn.be/stops/407786"], ["https://data.delijn.be/stops/504243", "https://data.delijn.be/stops/509444"], ["https://data.delijn.be/stops/300574", "https://data.delijn.be/stops/300584"], ["https://data.delijn.be/stops/501549", "https://data.delijn.be/stops/501559"], ["https://data.delijn.be/stops/401361", "https://data.delijn.be/stops/401363"], ["https://data.delijn.be/stops/106700", "https://data.delijn.be/stops/106702"], ["https://data.delijn.be/stops/400274", "https://data.delijn.be/stops/400359"], ["https://data.delijn.be/stops/300655", "https://data.delijn.be/stops/306885"], ["https://data.delijn.be/stops/101285", "https://data.delijn.be/stops/101291"], ["https://data.delijn.be/stops/105050", "https://data.delijn.be/stops/106710"], ["https://data.delijn.be/stops/200095", "https://data.delijn.be/stops/200482"], ["https://data.delijn.be/stops/106847", "https://data.delijn.be/stops/106851"], ["https://data.delijn.be/stops/402222", "https://data.delijn.be/stops/409642"], ["https://data.delijn.be/stops/502697", "https://data.delijn.be/stops/505356"], ["https://data.delijn.be/stops/401157", "https://data.delijn.be/stops/404285"], ["https://data.delijn.be/stops/107598", "https://data.delijn.be/stops/107659"], ["https://data.delijn.be/stops/204984", "https://data.delijn.be/stops/205984"], ["https://data.delijn.be/stops/304041", "https://data.delijn.be/stops/306810"], ["https://data.delijn.be/stops/401767", "https://data.delijn.be/stops/401824"], ["https://data.delijn.be/stops/502134", "https://data.delijn.be/stops/502242"], ["https://data.delijn.be/stops/403435", "https://data.delijn.be/stops/403498"], ["https://data.delijn.be/stops/300850", "https://data.delijn.be/stops/300890"], ["https://data.delijn.be/stops/305968", "https://data.delijn.be/stops/307621"], ["https://data.delijn.be/stops/204001", "https://data.delijn.be/stops/207399"], ["https://data.delijn.be/stops/408531", "https://data.delijn.be/stops/408775"], ["https://data.delijn.be/stops/408538", "https://data.delijn.be/stops/408684"], ["https://data.delijn.be/stops/300287", "https://data.delijn.be/stops/307476"], ["https://data.delijn.be/stops/303438", "https://data.delijn.be/stops/303458"], ["https://data.delijn.be/stops/502512", "https://data.delijn.be/stops/505627"], ["https://data.delijn.be/stops/402579", "https://data.delijn.be/stops/410212"], ["https://data.delijn.be/stops/404916", "https://data.delijn.be/stops/404918"], ["https://data.delijn.be/stops/307561", "https://data.delijn.be/stops/307582"], ["https://data.delijn.be/stops/300626", "https://data.delijn.be/stops/300629"], ["https://data.delijn.be/stops/107369", "https://data.delijn.be/stops/107372"], ["https://data.delijn.be/stops/302984", "https://data.delijn.be/stops/306708"], ["https://data.delijn.be/stops/105074", "https://data.delijn.be/stops/105076"], ["https://data.delijn.be/stops/200848", "https://data.delijn.be/stops/208654"], ["https://data.delijn.be/stops/104793", "https://data.delijn.be/stops/105101"], ["https://data.delijn.be/stops/102790", "https://data.delijn.be/stops/105760"], ["https://data.delijn.be/stops/405698", "https://data.delijn.be/stops/405999"], ["https://data.delijn.be/stops/404729", "https://data.delijn.be/stops/404835"], ["https://data.delijn.be/stops/504068", "https://data.delijn.be/stops/509112"], ["https://data.delijn.be/stops/204758", "https://data.delijn.be/stops/205732"], ["https://data.delijn.be/stops/204581", "https://data.delijn.be/stops/205168"], ["https://data.delijn.be/stops/202532", "https://data.delijn.be/stops/203965"], ["https://data.delijn.be/stops/200129", "https://data.delijn.be/stops/201204"], ["https://data.delijn.be/stops/104107", "https://data.delijn.be/stops/108760"], ["https://data.delijn.be/stops/103036", "https://data.delijn.be/stops/106405"], ["https://data.delijn.be/stops/301122", "https://data.delijn.be/stops/301134"], ["https://data.delijn.be/stops/302449", "https://data.delijn.be/stops/302451"], ["https://data.delijn.be/stops/302275", "https://data.delijn.be/stops/304343"], ["https://data.delijn.be/stops/400952", "https://data.delijn.be/stops/406680"], ["https://data.delijn.be/stops/302624", "https://data.delijn.be/stops/308117"], ["https://data.delijn.be/stops/303191", "https://data.delijn.be/stops/303196"], ["https://data.delijn.be/stops/405937", "https://data.delijn.be/stops/405943"], ["https://data.delijn.be/stops/107121", "https://data.delijn.be/stops/108908"], ["https://data.delijn.be/stops/107647", "https://data.delijn.be/stops/108957"], ["https://data.delijn.be/stops/108394", "https://data.delijn.be/stops/108396"], ["https://data.delijn.be/stops/308510", "https://data.delijn.be/stops/308514"], ["https://data.delijn.be/stops/200753", "https://data.delijn.be/stops/209251"], ["https://data.delijn.be/stops/300524", "https://data.delijn.be/stops/307828"], ["https://data.delijn.be/stops/300010", "https://data.delijn.be/stops/304249"], ["https://data.delijn.be/stops/209603", "https://data.delijn.be/stops/307742"], ["https://data.delijn.be/stops/308288", "https://data.delijn.be/stops/308293"], ["https://data.delijn.be/stops/400724", "https://data.delijn.be/stops/400782"], ["https://data.delijn.be/stops/200755", "https://data.delijn.be/stops/505973"], ["https://data.delijn.be/stops/101133", "https://data.delijn.be/stops/107805"], ["https://data.delijn.be/stops/205463", "https://data.delijn.be/stops/205465"], ["https://data.delijn.be/stops/502666", "https://data.delijn.be/stops/505018"], ["https://data.delijn.be/stops/300055", "https://data.delijn.be/stops/306790"], ["https://data.delijn.be/stops/103679", "https://data.delijn.be/stops/106196"], ["https://data.delijn.be/stops/502680", "https://data.delijn.be/stops/505675"], ["https://data.delijn.be/stops/503858", "https://data.delijn.be/stops/508858"], ["https://data.delijn.be/stops/301333", "https://data.delijn.be/stops/301335"], ["https://data.delijn.be/stops/200850", "https://data.delijn.be/stops/209653"], ["https://data.delijn.be/stops/506397", "https://data.delijn.be/stops/506401"], ["https://data.delijn.be/stops/503416", "https://data.delijn.be/stops/509920"], ["https://data.delijn.be/stops/302454", "https://data.delijn.be/stops/304732"], ["https://data.delijn.be/stops/301610", "https://data.delijn.be/stops/304257"], ["https://data.delijn.be/stops/108949", "https://data.delijn.be/stops/108951"], ["https://data.delijn.be/stops/209705", "https://data.delijn.be/stops/218017"], ["https://data.delijn.be/stops/205385", "https://data.delijn.be/stops/205386"], ["https://data.delijn.be/stops/200105", "https://data.delijn.be/stops/200429"], ["https://data.delijn.be/stops/502326", "https://data.delijn.be/stops/507336"], ["https://data.delijn.be/stops/402181", "https://data.delijn.be/stops/402194"], ["https://data.delijn.be/stops/504035", "https://data.delijn.be/stops/504106"], ["https://data.delijn.be/stops/300148", "https://data.delijn.be/stops/307849"], ["https://data.delijn.be/stops/502411", "https://data.delijn.be/stops/507581"], ["https://data.delijn.be/stops/506097", "https://data.delijn.be/stops/507209"], ["https://data.delijn.be/stops/504501", "https://data.delijn.be/stops/504503"], ["https://data.delijn.be/stops/403424", "https://data.delijn.be/stops/410223"], ["https://data.delijn.be/stops/503491", "https://data.delijn.be/stops/505716"], ["https://data.delijn.be/stops/302605", "https://data.delijn.be/stops/306404"], ["https://data.delijn.be/stops/506086", "https://data.delijn.be/stops/506088"], ["https://data.delijn.be/stops/106799", "https://data.delijn.be/stops/106800"], ["https://data.delijn.be/stops/402793", "https://data.delijn.be/stops/402796"], ["https://data.delijn.be/stops/204717", "https://data.delijn.be/stops/205364"], ["https://data.delijn.be/stops/206494", "https://data.delijn.be/stops/207495"], ["https://data.delijn.be/stops/104448", "https://data.delijn.be/stops/104449"], ["https://data.delijn.be/stops/401776", "https://data.delijn.be/stops/401791"], ["https://data.delijn.be/stops/205058", "https://data.delijn.be/stops/205059"], ["https://data.delijn.be/stops/106011", "https://data.delijn.be/stops/106012"], ["https://data.delijn.be/stops/306867", "https://data.delijn.be/stops/306868"], ["https://data.delijn.be/stops/200466", "https://data.delijn.be/stops/208957"], ["https://data.delijn.be/stops/101752", "https://data.delijn.be/stops/103068"], ["https://data.delijn.be/stops/206811", "https://data.delijn.be/stops/207256"], ["https://data.delijn.be/stops/406278", "https://data.delijn.be/stops/406279"], ["https://data.delijn.be/stops/200838", "https://data.delijn.be/stops/203299"], ["https://data.delijn.be/stops/508690", "https://data.delijn.be/stops/509512"], ["https://data.delijn.be/stops/101469", "https://data.delijn.be/stops/101470"], ["https://data.delijn.be/stops/200369", "https://data.delijn.be/stops/201369"], ["https://data.delijn.be/stops/101820", "https://data.delijn.be/stops/105310"], ["https://data.delijn.be/stops/206256", "https://data.delijn.be/stops/206811"], ["https://data.delijn.be/stops/208485", "https://data.delijn.be/stops/209484"], ["https://data.delijn.be/stops/406350", "https://data.delijn.be/stops/410319"], ["https://data.delijn.be/stops/308079", "https://data.delijn.be/stops/308740"], ["https://data.delijn.be/stops/502031", "https://data.delijn.be/stops/502736"], ["https://data.delijn.be/stops/505070", "https://data.delijn.be/stops/505072"], ["https://data.delijn.be/stops/102424", "https://data.delijn.be/stops/104258"], ["https://data.delijn.be/stops/103624", "https://data.delijn.be/stops/107733"], ["https://data.delijn.be/stops/200850", "https://data.delijn.be/stops/200851"], ["https://data.delijn.be/stops/301470", "https://data.delijn.be/stops/301471"], ["https://data.delijn.be/stops/501236", "https://data.delijn.be/stops/506245"], ["https://data.delijn.be/stops/504374", "https://data.delijn.be/stops/504580"], ["https://data.delijn.be/stops/201110", "https://data.delijn.be/stops/202646"], ["https://data.delijn.be/stops/105250", "https://data.delijn.be/stops/105420"], ["https://data.delijn.be/stops/202167", "https://data.delijn.be/stops/203166"], ["https://data.delijn.be/stops/406902", "https://data.delijn.be/stops/406905"], ["https://data.delijn.be/stops/407660", "https://data.delijn.be/stops/407661"], ["https://data.delijn.be/stops/401092", "https://data.delijn.be/stops/401093"], ["https://data.delijn.be/stops/207348", "https://data.delijn.be/stops/207349"], ["https://data.delijn.be/stops/400793", "https://data.delijn.be/stops/409545"], ["https://data.delijn.be/stops/302374", "https://data.delijn.be/stops/302385"], ["https://data.delijn.be/stops/208773", "https://data.delijn.be/stops/208774"], ["https://data.delijn.be/stops/200923", "https://data.delijn.be/stops/202673"], ["https://data.delijn.be/stops/206523", "https://data.delijn.be/stops/207062"], ["https://data.delijn.be/stops/408639", "https://data.delijn.be/stops/408746"], ["https://data.delijn.be/stops/305144", "https://data.delijn.be/stops/305236"], ["https://data.delijn.be/stops/405270", "https://data.delijn.be/stops/405273"], ["https://data.delijn.be/stops/506729", "https://data.delijn.be/stops/507573"], ["https://data.delijn.be/stops/305354", "https://data.delijn.be/stops/308046"], ["https://data.delijn.be/stops/400908", "https://data.delijn.be/stops/400909"], ["https://data.delijn.be/stops/105738", "https://data.delijn.be/stops/109941"], ["https://data.delijn.be/stops/102468", "https://data.delijn.be/stops/102471"], ["https://data.delijn.be/stops/508952", "https://data.delijn.be/stops/509277"], ["https://data.delijn.be/stops/403177", "https://data.delijn.be/stops/410211"], ["https://data.delijn.be/stops/406395", "https://data.delijn.be/stops/302826"], ["https://data.delijn.be/stops/406157", "https://data.delijn.be/stops/406277"], ["https://data.delijn.be/stops/204631", "https://data.delijn.be/stops/205446"], ["https://data.delijn.be/stops/101905", "https://data.delijn.be/stops/102695"], ["https://data.delijn.be/stops/206002", "https://data.delijn.be/stops/207004"], ["https://data.delijn.be/stops/207190", "https://data.delijn.be/stops/308570"], ["https://data.delijn.be/stops/204313", "https://data.delijn.be/stops/205354"], ["https://data.delijn.be/stops/200803", "https://data.delijn.be/stops/201955"], ["https://data.delijn.be/stops/304037", "https://data.delijn.be/stops/307814"], ["https://data.delijn.be/stops/105139", "https://data.delijn.be/stops/305828"], ["https://data.delijn.be/stops/208091", "https://data.delijn.be/stops/208092"], ["https://data.delijn.be/stops/308616", "https://data.delijn.be/stops/308617"], ["https://data.delijn.be/stops/506112", "https://data.delijn.be/stops/506503"], ["https://data.delijn.be/stops/202848", "https://data.delijn.be/stops/203927"], ["https://data.delijn.be/stops/203018", "https://data.delijn.be/stops/211856"], ["https://data.delijn.be/stops/106308", "https://data.delijn.be/stops/106310"], ["https://data.delijn.be/stops/502132", "https://data.delijn.be/stops/507164"], ["https://data.delijn.be/stops/407098", "https://data.delijn.be/stops/407099"], ["https://data.delijn.be/stops/209143", "https://data.delijn.be/stops/209144"], ["https://data.delijn.be/stops/501348", "https://data.delijn.be/stops/506324"], ["https://data.delijn.be/stops/107042", "https://data.delijn.be/stops/107043"], ["https://data.delijn.be/stops/504134", "https://data.delijn.be/stops/509115"], ["https://data.delijn.be/stops/202932", "https://data.delijn.be/stops/203932"], ["https://data.delijn.be/stops/408037", "https://data.delijn.be/stops/408230"], ["https://data.delijn.be/stops/306384", "https://data.delijn.be/stops/307208"], ["https://data.delijn.be/stops/202976", "https://data.delijn.be/stops/203368"], ["https://data.delijn.be/stops/502645", "https://data.delijn.be/stops/507419"], ["https://data.delijn.be/stops/206925", "https://data.delijn.be/stops/207924"], ["https://data.delijn.be/stops/500560", "https://data.delijn.be/stops/506031"], ["https://data.delijn.be/stops/501545", "https://data.delijn.be/stops/506510"], ["https://data.delijn.be/stops/501361", "https://data.delijn.be/stops/501673"], ["https://data.delijn.be/stops/200686", "https://data.delijn.be/stops/201709"], ["https://data.delijn.be/stops/508541", "https://data.delijn.be/stops/508548"], ["https://data.delijn.be/stops/203140", "https://data.delijn.be/stops/203175"], ["https://data.delijn.be/stops/305983", "https://data.delijn.be/stops/305985"], ["https://data.delijn.be/stops/102679", "https://data.delijn.be/stops/108057"], ["https://data.delijn.be/stops/200894", "https://data.delijn.be/stops/202338"], ["https://data.delijn.be/stops/101461", "https://data.delijn.be/stops/101464"], ["https://data.delijn.be/stops/103069", "https://data.delijn.be/stops/105759"], ["https://data.delijn.be/stops/408283", "https://data.delijn.be/stops/408293"], ["https://data.delijn.be/stops/204685", "https://data.delijn.be/stops/205684"], ["https://data.delijn.be/stops/201723", "https://data.delijn.be/stops/202446"], ["https://data.delijn.be/stops/106853", "https://data.delijn.be/stops/109529"], ["https://data.delijn.be/stops/303436", "https://data.delijn.be/stops/303473"], ["https://data.delijn.be/stops/206328", "https://data.delijn.be/stops/308846"], ["https://data.delijn.be/stops/502179", "https://data.delijn.be/stops/507180"], ["https://data.delijn.be/stops/507499", "https://data.delijn.be/stops/507514"], ["https://data.delijn.be/stops/201258", "https://data.delijn.be/stops/203397"], ["https://data.delijn.be/stops/400434", "https://data.delijn.be/stops/406785"], ["https://data.delijn.be/stops/404992", "https://data.delijn.be/stops/406959"], ["https://data.delijn.be/stops/505713", "https://data.delijn.be/stops/508481"], ["https://data.delijn.be/stops/101850", "https://data.delijn.be/stops/106010"], ["https://data.delijn.be/stops/103323", "https://data.delijn.be/stops/104363"], ["https://data.delijn.be/stops/402525", "https://data.delijn.be/stops/402603"], ["https://data.delijn.be/stops/101298", "https://data.delijn.be/stops/105493"], ["https://data.delijn.be/stops/104078", "https://data.delijn.be/stops/105702"], ["https://data.delijn.be/stops/208731", "https://data.delijn.be/stops/209730"], ["https://data.delijn.be/stops/409094", "https://data.delijn.be/stops/409095"], ["https://data.delijn.be/stops/206636", "https://data.delijn.be/stops/207636"], ["https://data.delijn.be/stops/202029", "https://data.delijn.be/stops/203029"], ["https://data.delijn.be/stops/301518", "https://data.delijn.be/stops/301522"], ["https://data.delijn.be/stops/200698", "https://data.delijn.be/stops/203809"], ["https://data.delijn.be/stops/405154", "https://data.delijn.be/stops/405168"], ["https://data.delijn.be/stops/204192", "https://data.delijn.be/stops/205193"], ["https://data.delijn.be/stops/200397", "https://data.delijn.be/stops/201397"], ["https://data.delijn.be/stops/300436", "https://data.delijn.be/stops/300439"], ["https://data.delijn.be/stops/305254", "https://data.delijn.be/stops/305278"], ["https://data.delijn.be/stops/409114", "https://data.delijn.be/stops/409120"], ["https://data.delijn.be/stops/107179", "https://data.delijn.be/stops/107181"], ["https://data.delijn.be/stops/508371", "https://data.delijn.be/stops/509939"], ["https://data.delijn.be/stops/208526", "https://data.delijn.be/stops/219016"], ["https://data.delijn.be/stops/401072", "https://data.delijn.be/stops/401076"], ["https://data.delijn.be/stops/400733", "https://data.delijn.be/stops/404262"], ["https://data.delijn.be/stops/307826", "https://data.delijn.be/stops/308912"], ["https://data.delijn.be/stops/404164", "https://data.delijn.be/stops/404165"], ["https://data.delijn.be/stops/208146", "https://data.delijn.be/stops/209677"], ["https://data.delijn.be/stops/201384", "https://data.delijn.be/stops/211026"], ["https://data.delijn.be/stops/206168", "https://data.delijn.be/stops/207168"], ["https://data.delijn.be/stops/308148", "https://data.delijn.be/stops/308151"], ["https://data.delijn.be/stops/505118", "https://data.delijn.be/stops/509747"], ["https://data.delijn.be/stops/102431", "https://data.delijn.be/stops/102583"], ["https://data.delijn.be/stops/403917", "https://data.delijn.be/stops/403944"], ["https://data.delijn.be/stops/406280", "https://data.delijn.be/stops/406818"], ["https://data.delijn.be/stops/504516", "https://data.delijn.be/stops/505112"], ["https://data.delijn.be/stops/509066", "https://data.delijn.be/stops/509112"], ["https://data.delijn.be/stops/403295", "https://data.delijn.be/stops/403442"], ["https://data.delijn.be/stops/106243", "https://data.delijn.be/stops/106731"], ["https://data.delijn.be/stops/404071", "https://data.delijn.be/stops/404095"], ["https://data.delijn.be/stops/304929", "https://data.delijn.be/stops/304962"], ["https://data.delijn.be/stops/204222", "https://data.delijn.be/stops/205248"], ["https://data.delijn.be/stops/105417", "https://data.delijn.be/stops/105418"], ["https://data.delijn.be/stops/106769", "https://data.delijn.be/stops/106869"], ["https://data.delijn.be/stops/200072", "https://data.delijn.be/stops/203353"], ["https://data.delijn.be/stops/301225", "https://data.delijn.be/stops/301226"], ["https://data.delijn.be/stops/504396", "https://data.delijn.be/stops/504397"], ["https://data.delijn.be/stops/403284", "https://data.delijn.be/stops/403285"], ["https://data.delijn.be/stops/308444", "https://data.delijn.be/stops/308535"], ["https://data.delijn.be/stops/508344", "https://data.delijn.be/stops/508345"], ["https://data.delijn.be/stops/302554", "https://data.delijn.be/stops/302558"], ["https://data.delijn.be/stops/106962", "https://data.delijn.be/stops/107271"], ["https://data.delijn.be/stops/301294", "https://data.delijn.be/stops/301297"], ["https://data.delijn.be/stops/102255", "https://data.delijn.be/stops/102835"], ["https://data.delijn.be/stops/400159", "https://data.delijn.be/stops/409067"], ["https://data.delijn.be/stops/101801", "https://data.delijn.be/stops/101940"], ["https://data.delijn.be/stops/204489", "https://data.delijn.be/stops/205485"], ["https://data.delijn.be/stops/404559", "https://data.delijn.be/stops/409251"], ["https://data.delijn.be/stops/405285", "https://data.delijn.be/stops/405299"], ["https://data.delijn.be/stops/206678", "https://data.delijn.be/stops/208808"], ["https://data.delijn.be/stops/104606", "https://data.delijn.be/stops/104869"], ["https://data.delijn.be/stops/400037", "https://data.delijn.be/stops/400039"], ["https://data.delijn.be/stops/406142", "https://data.delijn.be/stops/406143"], ["https://data.delijn.be/stops/305628", "https://data.delijn.be/stops/305772"], ["https://data.delijn.be/stops/500950", "https://data.delijn.be/stops/504153"], ["https://data.delijn.be/stops/305249", "https://data.delijn.be/stops/305601"], ["https://data.delijn.be/stops/507491", "https://data.delijn.be/stops/507536"], ["https://data.delijn.be/stops/206876", "https://data.delijn.be/stops/207876"], ["https://data.delijn.be/stops/504698", "https://data.delijn.be/stops/505304"], ["https://data.delijn.be/stops/209705", "https://data.delijn.be/stops/209710"], ["https://data.delijn.be/stops/402081", "https://data.delijn.be/stops/402447"], ["https://data.delijn.be/stops/301872", "https://data.delijn.be/stops/301876"], ["https://data.delijn.be/stops/407448", "https://data.delijn.be/stops/407522"], ["https://data.delijn.be/stops/303519", "https://data.delijn.be/stops/307077"], ["https://data.delijn.be/stops/206654", "https://data.delijn.be/stops/206868"], ["https://data.delijn.be/stops/301352", "https://data.delijn.be/stops/304525"], ["https://data.delijn.be/stops/305584", "https://data.delijn.be/stops/307514"], ["https://data.delijn.be/stops/204314", "https://data.delijn.be/stops/205316"], ["https://data.delijn.be/stops/302999", "https://data.delijn.be/stops/306297"], ["https://data.delijn.be/stops/203252", "https://data.delijn.be/stops/203253"], ["https://data.delijn.be/stops/505834", "https://data.delijn.be/stops/506458"], ["https://data.delijn.be/stops/208335", "https://data.delijn.be/stops/208336"], ["https://data.delijn.be/stops/400907", "https://data.delijn.be/stops/400974"], ["https://data.delijn.be/stops/408753", "https://data.delijn.be/stops/408760"], ["https://data.delijn.be/stops/502524", "https://data.delijn.be/stops/507524"], ["https://data.delijn.be/stops/202676", "https://data.delijn.be/stops/202726"], ["https://data.delijn.be/stops/508850", "https://data.delijn.be/stops/510029"], ["https://data.delijn.be/stops/301395", "https://data.delijn.be/stops/306150"], ["https://data.delijn.be/stops/502627", "https://data.delijn.be/stops/502751"], ["https://data.delijn.be/stops/503207", "https://data.delijn.be/stops/508271"], ["https://data.delijn.be/stops/302269", "https://data.delijn.be/stops/302979"], ["https://data.delijn.be/stops/400851", "https://data.delijn.be/stops/409623"], ["https://data.delijn.be/stops/404439", "https://data.delijn.be/stops/404499"], ["https://data.delijn.be/stops/204185", "https://data.delijn.be/stops/204383"], ["https://data.delijn.be/stops/405920", "https://data.delijn.be/stops/405986"], ["https://data.delijn.be/stops/204546", "https://data.delijn.be/stops/205500"], ["https://data.delijn.be/stops/404601", "https://data.delijn.be/stops/406975"], ["https://data.delijn.be/stops/402520", "https://data.delijn.be/stops/407804"], ["https://data.delijn.be/stops/304772", "https://data.delijn.be/stops/304773"], ["https://data.delijn.be/stops/502662", "https://data.delijn.be/stops/507662"], ["https://data.delijn.be/stops/103337", "https://data.delijn.be/stops/107048"], ["https://data.delijn.be/stops/106394", "https://data.delijn.be/stops/106571"], ["https://data.delijn.be/stops/401524", "https://data.delijn.be/stops/402512"], ["https://data.delijn.be/stops/101450", "https://data.delijn.be/stops/102818"], ["https://data.delijn.be/stops/200879", "https://data.delijn.be/stops/200884"], ["https://data.delijn.be/stops/101174", "https://data.delijn.be/stops/103510"], ["https://data.delijn.be/stops/106093", "https://data.delijn.be/stops/109085"], ["https://data.delijn.be/stops/301992", "https://data.delijn.be/stops/308938"], ["https://data.delijn.be/stops/102470", "https://data.delijn.be/stops/105860"], ["https://data.delijn.be/stops/307307", "https://data.delijn.be/stops/307313"], ["https://data.delijn.be/stops/402096", "https://data.delijn.be/stops/402224"], ["https://data.delijn.be/stops/305442", "https://data.delijn.be/stops/305444"], ["https://data.delijn.be/stops/101167", "https://data.delijn.be/stops/102705"], ["https://data.delijn.be/stops/303842", "https://data.delijn.be/stops/303863"], ["https://data.delijn.be/stops/200716", "https://data.delijn.be/stops/202123"], ["https://data.delijn.be/stops/204564", "https://data.delijn.be/stops/204565"], ["https://data.delijn.be/stops/204371", "https://data.delijn.be/stops/204762"], ["https://data.delijn.be/stops/504128", "https://data.delijn.be/stops/504130"], ["https://data.delijn.be/stops/200139", "https://data.delijn.be/stops/201140"], ["https://data.delijn.be/stops/200620", "https://data.delijn.be/stops/210086"], ["https://data.delijn.be/stops/206303", "https://data.delijn.be/stops/206632"], ["https://data.delijn.be/stops/407704", "https://data.delijn.be/stops/407705"], ["https://data.delijn.be/stops/206568", "https://data.delijn.be/stops/207424"], ["https://data.delijn.be/stops/301638", "https://data.delijn.be/stops/306155"], ["https://data.delijn.be/stops/201010", "https://data.delijn.be/stops/210020"], ["https://data.delijn.be/stops/200814", "https://data.delijn.be/stops/208964"], ["https://data.delijn.be/stops/501191", "https://data.delijn.be/stops/506196"], ["https://data.delijn.be/stops/302022", "https://data.delijn.be/stops/302025"], ["https://data.delijn.be/stops/301398", "https://data.delijn.be/stops/301399"], ["https://data.delijn.be/stops/500196", "https://data.delijn.be/stops/501050"], ["https://data.delijn.be/stops/300515", "https://data.delijn.be/stops/307829"], ["https://data.delijn.be/stops/300849", "https://data.delijn.be/stops/300890"], ["https://data.delijn.be/stops/408310", "https://data.delijn.be/stops/408311"], ["https://data.delijn.be/stops/504019", "https://data.delijn.be/stops/508474"], ["https://data.delijn.be/stops/108351", "https://data.delijn.be/stops/108354"], ["https://data.delijn.be/stops/108230", "https://data.delijn.be/stops/108240"], ["https://data.delijn.be/stops/102109", "https://data.delijn.be/stops/103467"], ["https://data.delijn.be/stops/503376", "https://data.delijn.be/stops/503445"], ["https://data.delijn.be/stops/108926", "https://data.delijn.be/stops/108927"], ["https://data.delijn.be/stops/406524", "https://data.delijn.be/stops/406603"], ["https://data.delijn.be/stops/503486", "https://data.delijn.be/stops/508491"], ["https://data.delijn.be/stops/503894", "https://data.delijn.be/stops/503895"], ["https://data.delijn.be/stops/502010", "https://data.delijn.be/stops/507010"], ["https://data.delijn.be/stops/206876", "https://data.delijn.be/stops/207008"], ["https://data.delijn.be/stops/509765", "https://data.delijn.be/stops/509793"], ["https://data.delijn.be/stops/504166", "https://data.delijn.be/stops/504990"], ["https://data.delijn.be/stops/202577", "https://data.delijn.be/stops/211851"], ["https://data.delijn.be/stops/205649", "https://data.delijn.be/stops/205650"], ["https://data.delijn.be/stops/502396", "https://data.delijn.be/stops/507396"], ["https://data.delijn.be/stops/505994", "https://data.delijn.be/stops/508829"], ["https://data.delijn.be/stops/507673", "https://data.delijn.be/stops/509892"], ["https://data.delijn.be/stops/200157", "https://data.delijn.be/stops/205243"], ["https://data.delijn.be/stops/402313", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/501301", "https://data.delijn.be/stops/506318"], ["https://data.delijn.be/stops/105729", "https://data.delijn.be/stops/105731"], ["https://data.delijn.be/stops/401356", "https://data.delijn.be/stops/401370"], ["https://data.delijn.be/stops/505928", "https://data.delijn.be/stops/509245"], ["https://data.delijn.be/stops/107658", "https://data.delijn.be/stops/109861"], ["https://data.delijn.be/stops/501693", "https://data.delijn.be/stops/506436"], ["https://data.delijn.be/stops/403767", "https://data.delijn.be/stops/403874"], ["https://data.delijn.be/stops/401214", "https://data.delijn.be/stops/401273"], ["https://data.delijn.be/stops/403732", "https://data.delijn.be/stops/403735"], ["https://data.delijn.be/stops/301537", "https://data.delijn.be/stops/301545"], ["https://data.delijn.be/stops/503566", "https://data.delijn.be/stops/508542"], ["https://data.delijn.be/stops/400362", "https://data.delijn.be/stops/400399"], ["https://data.delijn.be/stops/104778", "https://data.delijn.be/stops/108118"], ["https://data.delijn.be/stops/403295", "https://data.delijn.be/stops/403304"], ["https://data.delijn.be/stops/101827", "https://data.delijn.be/stops/102391"], ["https://data.delijn.be/stops/103208", "https://data.delijn.be/stops/104081"], ["https://data.delijn.be/stops/400990", "https://data.delijn.be/stops/409141"], ["https://data.delijn.be/stops/306595", "https://data.delijn.be/stops/306599"], ["https://data.delijn.be/stops/205049", "https://data.delijn.be/stops/205704"], ["https://data.delijn.be/stops/503481", "https://data.delijn.be/stops/505718"], ["https://data.delijn.be/stops/404652", "https://data.delijn.be/stops/404653"], ["https://data.delijn.be/stops/405658", "https://data.delijn.be/stops/408600"], ["https://data.delijn.be/stops/208331", "https://data.delijn.be/stops/209331"], ["https://data.delijn.be/stops/505025", "https://data.delijn.be/stops/505754"], ["https://data.delijn.be/stops/106113", "https://data.delijn.be/stops/109085"], ["https://data.delijn.be/stops/302268", "https://data.delijn.be/stops/304314"], ["https://data.delijn.be/stops/301868", "https://data.delijn.be/stops/301869"], ["https://data.delijn.be/stops/107263", "https://data.delijn.be/stops/107264"], ["https://data.delijn.be/stops/301816", "https://data.delijn.be/stops/305313"], ["https://data.delijn.be/stops/206657", "https://data.delijn.be/stops/207658"], ["https://data.delijn.be/stops/503543", "https://data.delijn.be/stops/508548"], ["https://data.delijn.be/stops/304578", "https://data.delijn.be/stops/304586"], ["https://data.delijn.be/stops/302093", "https://data.delijn.be/stops/302094"], ["https://data.delijn.be/stops/107662", "https://data.delijn.be/stops/107663"], ["https://data.delijn.be/stops/208957", "https://data.delijn.be/stops/209957"], ["https://data.delijn.be/stops/407067", "https://data.delijn.be/stops/407778"], ["https://data.delijn.be/stops/102385", "https://data.delijn.be/stops/104315"], ["https://data.delijn.be/stops/504027", "https://data.delijn.be/stops/504748"], ["https://data.delijn.be/stops/301959", "https://data.delijn.be/stops/301982"], ["https://data.delijn.be/stops/501094", "https://data.delijn.be/stops/506090"], ["https://data.delijn.be/stops/103076", "https://data.delijn.be/stops/107707"], ["https://data.delijn.be/stops/206168", "https://data.delijn.be/stops/303401"], ["https://data.delijn.be/stops/104454", "https://data.delijn.be/stops/104478"], ["https://data.delijn.be/stops/205066", "https://data.delijn.be/stops/205091"], ["https://data.delijn.be/stops/400504", "https://data.delijn.be/stops/403898"], ["https://data.delijn.be/stops/509266", "https://data.delijn.be/stops/509268"], ["https://data.delijn.be/stops/403364", "https://data.delijn.be/stops/403521"], ["https://data.delijn.be/stops/101845", "https://data.delijn.be/stops/102835"], ["https://data.delijn.be/stops/204072", "https://data.delijn.be/stops/205186"], ["https://data.delijn.be/stops/302564", "https://data.delijn.be/stops/302652"], ["https://data.delijn.be/stops/306703", "https://data.delijn.be/stops/306706"], ["https://data.delijn.be/stops/303563", "https://data.delijn.be/stops/303564"], ["https://data.delijn.be/stops/108507", "https://data.delijn.be/stops/108508"], ["https://data.delijn.be/stops/200005", "https://data.delijn.be/stops/200994"], ["https://data.delijn.be/stops/308741", "https://data.delijn.be/stops/308743"], ["https://data.delijn.be/stops/303729", "https://data.delijn.be/stops/303738"], ["https://data.delijn.be/stops/107518", "https://data.delijn.be/stops/107519"], ["https://data.delijn.be/stops/300697", "https://data.delijn.be/stops/300735"], ["https://data.delijn.be/stops/302118", "https://data.delijn.be/stops/302119"], ["https://data.delijn.be/stops/307410", "https://data.delijn.be/stops/307411"], ["https://data.delijn.be/stops/108505", "https://data.delijn.be/stops/108506"], ["https://data.delijn.be/stops/300486", "https://data.delijn.be/stops/302867"], ["https://data.delijn.be/stops/102825", "https://data.delijn.be/stops/104075"], ["https://data.delijn.be/stops/101649", "https://data.delijn.be/stops/104255"], ["https://data.delijn.be/stops/503041", "https://data.delijn.be/stops/504815"], ["https://data.delijn.be/stops/207709", "https://data.delijn.be/stops/207748"], ["https://data.delijn.be/stops/209125", "https://data.delijn.be/stops/209126"], ["https://data.delijn.be/stops/201281", "https://data.delijn.be/stops/209707"], ["https://data.delijn.be/stops/502491", "https://data.delijn.be/stops/507492"], ["https://data.delijn.be/stops/209539", "https://data.delijn.be/stops/209541"], ["https://data.delijn.be/stops/300394", "https://data.delijn.be/stops/303118"], ["https://data.delijn.be/stops/106171", "https://data.delijn.be/stops/106450"], ["https://data.delijn.be/stops/202535", "https://data.delijn.be/stops/205173"], ["https://data.delijn.be/stops/107694", "https://data.delijn.be/stops/109996"], ["https://data.delijn.be/stops/408245", "https://data.delijn.be/stops/307452"], ["https://data.delijn.be/stops/200675", "https://data.delijn.be/stops/201466"], ["https://data.delijn.be/stops/306338", "https://data.delijn.be/stops/306771"], ["https://data.delijn.be/stops/101485", "https://data.delijn.be/stops/102816"], ["https://data.delijn.be/stops/210607", "https://data.delijn.be/stops/211850"], ["https://data.delijn.be/stops/204240", "https://data.delijn.be/stops/204479"], ["https://data.delijn.be/stops/403456", "https://data.delijn.be/stops/410287"], ["https://data.delijn.be/stops/404848", "https://data.delijn.be/stops/407738"], ["https://data.delijn.be/stops/102164", "https://data.delijn.be/stops/104394"], ["https://data.delijn.be/stops/206836", "https://data.delijn.be/stops/207577"], ["https://data.delijn.be/stops/103481", "https://data.delijn.be/stops/103483"], ["https://data.delijn.be/stops/305591", "https://data.delijn.be/stops/307514"], ["https://data.delijn.be/stops/203570", "https://data.delijn.be/stops/211033"], ["https://data.delijn.be/stops/509599", "https://data.delijn.be/stops/509607"], ["https://data.delijn.be/stops/107020", "https://data.delijn.be/stops/108620"], ["https://data.delijn.be/stops/207080", "https://data.delijn.be/stops/207082"], ["https://data.delijn.be/stops/505814", "https://data.delijn.be/stops/508311"], ["https://data.delijn.be/stops/106140", "https://data.delijn.be/stops/106142"], ["https://data.delijn.be/stops/305139", "https://data.delijn.be/stops/308090"], ["https://data.delijn.be/stops/210098", "https://data.delijn.be/stops/211098"], ["https://data.delijn.be/stops/502445", "https://data.delijn.be/stops/502634"], ["https://data.delijn.be/stops/106894", "https://data.delijn.be/stops/107216"], ["https://data.delijn.be/stops/102272", "https://data.delijn.be/stops/205608"], ["https://data.delijn.be/stops/405034", "https://data.delijn.be/stops/307454"], ["https://data.delijn.be/stops/201956", "https://data.delijn.be/stops/202478"], ["https://data.delijn.be/stops/404642", "https://data.delijn.be/stops/406929"], ["https://data.delijn.be/stops/408422", "https://data.delijn.be/stops/408423"], ["https://data.delijn.be/stops/103114", "https://data.delijn.be/stops/106818"], ["https://data.delijn.be/stops/109402", "https://data.delijn.be/stops/109422"], ["https://data.delijn.be/stops/102153", "https://data.delijn.be/stops/108835"], ["https://data.delijn.be/stops/109058", "https://data.delijn.be/stops/109059"], ["https://data.delijn.be/stops/105037", "https://data.delijn.be/stops/105038"], ["https://data.delijn.be/stops/407630", "https://data.delijn.be/stops/407633"], ["https://data.delijn.be/stops/204224", "https://data.delijn.be/stops/205224"], ["https://data.delijn.be/stops/407608", "https://data.delijn.be/stops/407767"], ["https://data.delijn.be/stops/507758", "https://data.delijn.be/stops/507763"], ["https://data.delijn.be/stops/405214", "https://data.delijn.be/stops/405254"], ["https://data.delijn.be/stops/200753", "https://data.delijn.be/stops/201774"], ["https://data.delijn.be/stops/503478", "https://data.delijn.be/stops/508478"], ["https://data.delijn.be/stops/209361", "https://data.delijn.be/stops/209399"], ["https://data.delijn.be/stops/208541", "https://data.delijn.be/stops/209543"], ["https://data.delijn.be/stops/203498", "https://data.delijn.be/stops/205792"], ["https://data.delijn.be/stops/108341", "https://data.delijn.be/stops/108342"], ["https://data.delijn.be/stops/503456", "https://data.delijn.be/stops/508214"], ["https://data.delijn.be/stops/101204", "https://data.delijn.be/stops/104926"], ["https://data.delijn.be/stops/509235", "https://data.delijn.be/stops/509240"], ["https://data.delijn.be/stops/505404", "https://data.delijn.be/stops/506198"], ["https://data.delijn.be/stops/300498", "https://data.delijn.be/stops/302098"], ["https://data.delijn.be/stops/101019", "https://data.delijn.be/stops/105910"], ["https://data.delijn.be/stops/305004", "https://data.delijn.be/stops/305030"], ["https://data.delijn.be/stops/409588", "https://data.delijn.be/stops/409598"], ["https://data.delijn.be/stops/301154", "https://data.delijn.be/stops/307717"], ["https://data.delijn.be/stops/505956", "https://data.delijn.be/stops/508281"], ["https://data.delijn.be/stops/502925", "https://data.delijn.be/stops/507516"], ["https://data.delijn.be/stops/104469", "https://data.delijn.be/stops/104471"], ["https://data.delijn.be/stops/201582", "https://data.delijn.be/stops/211200"], ["https://data.delijn.be/stops/301692", "https://data.delijn.be/stops/303746"], ["https://data.delijn.be/stops/208752", "https://data.delijn.be/stops/209696"], ["https://data.delijn.be/stops/200923", "https://data.delijn.be/stops/210033"], ["https://data.delijn.be/stops/300953", "https://data.delijn.be/stops/301943"], ["https://data.delijn.be/stops/102322", "https://data.delijn.be/stops/106461"], ["https://data.delijn.be/stops/400072", "https://data.delijn.be/stops/401976"], ["https://data.delijn.be/stops/401085", "https://data.delijn.be/stops/410023"], ["https://data.delijn.be/stops/409601", "https://data.delijn.be/stops/409630"], ["https://data.delijn.be/stops/408374", "https://data.delijn.be/stops/408375"], ["https://data.delijn.be/stops/304234", "https://data.delijn.be/stops/304515"], ["https://data.delijn.be/stops/502505", "https://data.delijn.be/stops/502511"], ["https://data.delijn.be/stops/307150", "https://data.delijn.be/stops/307151"], ["https://data.delijn.be/stops/403000", "https://data.delijn.be/stops/403001"], ["https://data.delijn.be/stops/301935", "https://data.delijn.be/stops/302911"], ["https://data.delijn.be/stops/202538", "https://data.delijn.be/stops/203538"], ["https://data.delijn.be/stops/408032", "https://data.delijn.be/stops/408053"], ["https://data.delijn.be/stops/202514", "https://data.delijn.be/stops/202515"], ["https://data.delijn.be/stops/502364", "https://data.delijn.be/stops/505010"], ["https://data.delijn.be/stops/304816", "https://data.delijn.be/stops/304839"], ["https://data.delijn.be/stops/206392", "https://data.delijn.be/stops/206393"], ["https://data.delijn.be/stops/108231", "https://data.delijn.be/stops/108726"], ["https://data.delijn.be/stops/305738", "https://data.delijn.be/stops/307118"], ["https://data.delijn.be/stops/202890", "https://data.delijn.be/stops/203890"], ["https://data.delijn.be/stops/408941", "https://data.delijn.be/stops/408943"], ["https://data.delijn.be/stops/400944", "https://data.delijn.be/stops/400945"], ["https://data.delijn.be/stops/200302", "https://data.delijn.be/stops/201302"], ["https://data.delijn.be/stops/503306", "https://data.delijn.be/stops/505999"], ["https://data.delijn.be/stops/304453", "https://data.delijn.be/stops/307089"], ["https://data.delijn.be/stops/208339", "https://data.delijn.be/stops/208340"], ["https://data.delijn.be/stops/105034", "https://data.delijn.be/stops/105219"], ["https://data.delijn.be/stops/405177", "https://data.delijn.be/stops/405252"], ["https://data.delijn.be/stops/105671", "https://data.delijn.be/stops/105705"], ["https://data.delijn.be/stops/410360", "https://data.delijn.be/stops/410399"], ["https://data.delijn.be/stops/104909", "https://data.delijn.be/stops/109652"], ["https://data.delijn.be/stops/305765", "https://data.delijn.be/stops/305768"], ["https://data.delijn.be/stops/202899", "https://data.delijn.be/stops/202902"], ["https://data.delijn.be/stops/300046", "https://data.delijn.be/stops/300063"], ["https://data.delijn.be/stops/408321", "https://data.delijn.be/stops/408348"], ["https://data.delijn.be/stops/203591", "https://data.delijn.be/stops/203592"], ["https://data.delijn.be/stops/308605", "https://data.delijn.be/stops/308606"], ["https://data.delijn.be/stops/503160", "https://data.delijn.be/stops/503172"], ["https://data.delijn.be/stops/206153", "https://data.delijn.be/stops/206154"], ["https://data.delijn.be/stops/106766", "https://data.delijn.be/stops/106866"], ["https://data.delijn.be/stops/504726", "https://data.delijn.be/stops/504730"], ["https://data.delijn.be/stops/209368", "https://data.delijn.be/stops/209374"], ["https://data.delijn.be/stops/503368", "https://data.delijn.be/stops/505856"], ["https://data.delijn.be/stops/209339", "https://data.delijn.be/stops/209376"], ["https://data.delijn.be/stops/303362", "https://data.delijn.be/stops/303363"], ["https://data.delijn.be/stops/200864", "https://data.delijn.be/stops/202332"], ["https://data.delijn.be/stops/406456", "https://data.delijn.be/stops/406478"], ["https://data.delijn.be/stops/407237", "https://data.delijn.be/stops/407512"], ["https://data.delijn.be/stops/202111", "https://data.delijn.be/stops/203111"], ["https://data.delijn.be/stops/206930", "https://data.delijn.be/stops/207574"], ["https://data.delijn.be/stops/102957", "https://data.delijn.be/stops/106882"], ["https://data.delijn.be/stops/206169", "https://data.delijn.be/stops/207170"], ["https://data.delijn.be/stops/402764", "https://data.delijn.be/stops/406545"], ["https://data.delijn.be/stops/200103", "https://data.delijn.be/stops/201363"], ["https://data.delijn.be/stops/104747", "https://data.delijn.be/stops/107333"], ["https://data.delijn.be/stops/201448", "https://data.delijn.be/stops/203352"], ["https://data.delijn.be/stops/506056", "https://data.delijn.be/stops/506284"], ["https://data.delijn.be/stops/202669", "https://data.delijn.be/stops/203273"], ["https://data.delijn.be/stops/105432", "https://data.delijn.be/stops/109839"], ["https://data.delijn.be/stops/502589", "https://data.delijn.be/stops/507588"], ["https://data.delijn.be/stops/306897", "https://data.delijn.be/stops/308723"], ["https://data.delijn.be/stops/201147", "https://data.delijn.be/stops/201169"], ["https://data.delijn.be/stops/101151", "https://data.delijn.be/stops/109621"], ["https://data.delijn.be/stops/201494", "https://data.delijn.be/stops/201495"], ["https://data.delijn.be/stops/509124", "https://data.delijn.be/stops/509132"], ["https://data.delijn.be/stops/202635", "https://data.delijn.be/stops/203635"], ["https://data.delijn.be/stops/502619", "https://data.delijn.be/stops/507032"], ["https://data.delijn.be/stops/407845", "https://data.delijn.be/stops/407890"], ["https://data.delijn.be/stops/306043", "https://data.delijn.be/stops/306044"], ["https://data.delijn.be/stops/304431", "https://data.delijn.be/stops/304451"], ["https://data.delijn.be/stops/206961", "https://data.delijn.be/stops/306070"], ["https://data.delijn.be/stops/101210", "https://data.delijn.be/stops/105495"], ["https://data.delijn.be/stops/302313", "https://data.delijn.be/stops/304796"], ["https://data.delijn.be/stops/503474", "https://data.delijn.be/stops/503644"], ["https://data.delijn.be/stops/301487", "https://data.delijn.be/stops/308072"], ["https://data.delijn.be/stops/108543", "https://data.delijn.be/stops/306590"], ["https://data.delijn.be/stops/105048", "https://data.delijn.be/stops/106704"], ["https://data.delijn.be/stops/206922", "https://data.delijn.be/stops/207031"], ["https://data.delijn.be/stops/406451", "https://data.delijn.be/stops/406494"], ["https://data.delijn.be/stops/403942", "https://data.delijn.be/stops/403950"], ["https://data.delijn.be/stops/401472", "https://data.delijn.be/stops/404838"], ["https://data.delijn.be/stops/303531", "https://data.delijn.be/stops/303569"], ["https://data.delijn.be/stops/408321", "https://data.delijn.be/stops/410160"], ["https://data.delijn.be/stops/306908", "https://data.delijn.be/stops/308724"], ["https://data.delijn.be/stops/590330", "https://data.delijn.be/stops/590331"], ["https://data.delijn.be/stops/109622", "https://data.delijn.be/stops/307235"], ["https://data.delijn.be/stops/304533", "https://data.delijn.be/stops/306207"], ["https://data.delijn.be/stops/403900", "https://data.delijn.be/stops/403986"], ["https://data.delijn.be/stops/109808", "https://data.delijn.be/stops/109809"], ["https://data.delijn.be/stops/305981", "https://data.delijn.be/stops/305984"], ["https://data.delijn.be/stops/206458", "https://data.delijn.be/stops/206464"], ["https://data.delijn.be/stops/103107", "https://data.delijn.be/stops/107730"], ["https://data.delijn.be/stops/103095", "https://data.delijn.be/stops/103353"], ["https://data.delijn.be/stops/503416", "https://data.delijn.be/stops/508437"], ["https://data.delijn.be/stops/105859", "https://data.delijn.be/stops/105861"], ["https://data.delijn.be/stops/507042", "https://data.delijn.be/stops/507391"], ["https://data.delijn.be/stops/201250", "https://data.delijn.be/stops/201474"], ["https://data.delijn.be/stops/208505", "https://data.delijn.be/stops/209503"], ["https://data.delijn.be/stops/203602", "https://data.delijn.be/stops/203603"], ["https://data.delijn.be/stops/204592", "https://data.delijn.be/stops/204594"], ["https://data.delijn.be/stops/109074", "https://data.delijn.be/stops/109076"], ["https://data.delijn.be/stops/106230", "https://data.delijn.be/stops/106324"], ["https://data.delijn.be/stops/504033", "https://data.delijn.be/stops/509035"], ["https://data.delijn.be/stops/504610", "https://data.delijn.be/stops/509609"], ["https://data.delijn.be/stops/501149", "https://data.delijn.be/stops/505521"], ["https://data.delijn.be/stops/106220", "https://data.delijn.be/stops/106321"], ["https://data.delijn.be/stops/202651", "https://data.delijn.be/stops/203651"], ["https://data.delijn.be/stops/506388", "https://data.delijn.be/stops/506500"], ["https://data.delijn.be/stops/505841", "https://data.delijn.be/stops/509396"], ["https://data.delijn.be/stops/206823", "https://data.delijn.be/stops/207824"], ["https://data.delijn.be/stops/409412", "https://data.delijn.be/stops/409770"], ["https://data.delijn.be/stops/203150", "https://data.delijn.be/stops/211043"], ["https://data.delijn.be/stops/403230", "https://data.delijn.be/stops/410280"], ["https://data.delijn.be/stops/208262", "https://data.delijn.be/stops/209262"], ["https://data.delijn.be/stops/206421", "https://data.delijn.be/stops/207422"], ["https://data.delijn.be/stops/506305", "https://data.delijn.be/stops/506337"], ["https://data.delijn.be/stops/409304", "https://data.delijn.be/stops/409307"], ["https://data.delijn.be/stops/208514", "https://data.delijn.be/stops/209684"], ["https://data.delijn.be/stops/306809", "https://data.delijn.be/stops/308945"], ["https://data.delijn.be/stops/301085", "https://data.delijn.be/stops/301106"], ["https://data.delijn.be/stops/400545", "https://data.delijn.be/stops/403194"], ["https://data.delijn.be/stops/405922", "https://data.delijn.be/stops/405925"], ["https://data.delijn.be/stops/300237", "https://data.delijn.be/stops/300239"], ["https://data.delijn.be/stops/402719", "https://data.delijn.be/stops/402728"], ["https://data.delijn.be/stops/102186", "https://data.delijn.be/stops/105266"], ["https://data.delijn.be/stops/406185", "https://data.delijn.be/stops/410401"], ["https://data.delijn.be/stops/402816", "https://data.delijn.be/stops/409446"], ["https://data.delijn.be/stops/202194", "https://data.delijn.be/stops/203194"], ["https://data.delijn.be/stops/404346", "https://data.delijn.be/stops/404355"], ["https://data.delijn.be/stops/207406", "https://data.delijn.be/stops/207407"], ["https://data.delijn.be/stops/300012", "https://data.delijn.be/stops/300780"], ["https://data.delijn.be/stops/507046", "https://data.delijn.be/stops/507047"], ["https://data.delijn.be/stops/208119", "https://data.delijn.be/stops/209120"], ["https://data.delijn.be/stops/108874", "https://data.delijn.be/stops/108876"], ["https://data.delijn.be/stops/403638", "https://data.delijn.be/stops/403720"], ["https://data.delijn.be/stops/505706", "https://data.delijn.be/stops/509228"], ["https://data.delijn.be/stops/203585", "https://data.delijn.be/stops/203586"], ["https://data.delijn.be/stops/301698", "https://data.delijn.be/stops/301720"], ["https://data.delijn.be/stops/101918", "https://data.delijn.be/stops/101919"], ["https://data.delijn.be/stops/405222", "https://data.delijn.be/stops/406276"], ["https://data.delijn.be/stops/302081", "https://data.delijn.be/stops/302092"], ["https://data.delijn.be/stops/108455", "https://data.delijn.be/stops/304920"], ["https://data.delijn.be/stops/301093", "https://data.delijn.be/stops/301228"], ["https://data.delijn.be/stops/403484", "https://data.delijn.be/stops/407463"], ["https://data.delijn.be/stops/102867", "https://data.delijn.be/stops/106508"], ["https://data.delijn.be/stops/109542", "https://data.delijn.be/stops/109700"], ["https://data.delijn.be/stops/303451", "https://data.delijn.be/stops/303452"], ["https://data.delijn.be/stops/102081", "https://data.delijn.be/stops/105407"], ["https://data.delijn.be/stops/208424", "https://data.delijn.be/stops/209162"], ["https://data.delijn.be/stops/205044", "https://data.delijn.be/stops/205483"], ["https://data.delijn.be/stops/504294", "https://data.delijn.be/stops/505827"], ["https://data.delijn.be/stops/206845", "https://data.delijn.be/stops/306677"], ["https://data.delijn.be/stops/103929", "https://data.delijn.be/stops/107244"], ["https://data.delijn.be/stops/502528", "https://data.delijn.be/stops/502556"], ["https://data.delijn.be/stops/403513", "https://data.delijn.be/stops/403559"], ["https://data.delijn.be/stops/405911", "https://data.delijn.be/stops/409681"], ["https://data.delijn.be/stops/200585", "https://data.delijn.be/stops/200588"], ["https://data.delijn.be/stops/204762", "https://data.delijn.be/stops/205183"], ["https://data.delijn.be/stops/301236", "https://data.delijn.be/stops/308290"], ["https://data.delijn.be/stops/401558", "https://data.delijn.be/stops/401559"], ["https://data.delijn.be/stops/200450", "https://data.delijn.be/stops/203538"], ["https://data.delijn.be/stops/103123", "https://data.delijn.be/stops/109171"], ["https://data.delijn.be/stops/104597", "https://data.delijn.be/stops/107428"], ["https://data.delijn.be/stops/106740", "https://data.delijn.be/stops/106741"], ["https://data.delijn.be/stops/202932", "https://data.delijn.be/stops/202933"], ["https://data.delijn.be/stops/202417", "https://data.delijn.be/stops/210409"], ["https://data.delijn.be/stops/106843", "https://data.delijn.be/stops/106845"], ["https://data.delijn.be/stops/307394", "https://data.delijn.be/stops/307399"], ["https://data.delijn.be/stops/101487", "https://data.delijn.be/stops/109708"], ["https://data.delijn.be/stops/400091", "https://data.delijn.be/stops/400153"], ["https://data.delijn.be/stops/206823", "https://data.delijn.be/stops/207533"], ["https://data.delijn.be/stops/101546", "https://data.delijn.be/stops/101547"], ["https://data.delijn.be/stops/406050", "https://data.delijn.be/stops/406388"], ["https://data.delijn.be/stops/208283", "https://data.delijn.be/stops/209282"], ["https://data.delijn.be/stops/301632", "https://data.delijn.be/stops/301636"], ["https://data.delijn.be/stops/403229", "https://data.delijn.be/stops/403230"], ["https://data.delijn.be/stops/203839", "https://data.delijn.be/stops/209427"], ["https://data.delijn.be/stops/507813", "https://data.delijn.be/stops/508003"], ["https://data.delijn.be/stops/101469", "https://data.delijn.be/stops/101959"], ["https://data.delijn.be/stops/307505", "https://data.delijn.be/stops/307506"], ["https://data.delijn.be/stops/302016", "https://data.delijn.be/stops/302017"], ["https://data.delijn.be/stops/503696", "https://data.delijn.be/stops/509975"], ["https://data.delijn.be/stops/400422", "https://data.delijn.be/stops/400432"], ["https://data.delijn.be/stops/504136", "https://data.delijn.be/stops/509143"], ["https://data.delijn.be/stops/107412", "https://data.delijn.be/stops/107413"], ["https://data.delijn.be/stops/407152", "https://data.delijn.be/stops/409877"], ["https://data.delijn.be/stops/105154", "https://data.delijn.be/stops/108761"], ["https://data.delijn.be/stops/202250", "https://data.delijn.be/stops/203249"], ["https://data.delijn.be/stops/406042", "https://data.delijn.be/stops/406043"], ["https://data.delijn.be/stops/408076", "https://data.delijn.be/stops/408082"], ["https://data.delijn.be/stops/401523", "https://data.delijn.be/stops/401561"], ["https://data.delijn.be/stops/501075", "https://data.delijn.be/stops/506075"], ["https://data.delijn.be/stops/300431", "https://data.delijn.be/stops/302661"], ["https://data.delijn.be/stops/106666", "https://data.delijn.be/stops/106668"], ["https://data.delijn.be/stops/404356", "https://data.delijn.be/stops/408796"], ["https://data.delijn.be/stops/104053", "https://data.delijn.be/stops/108414"], ["https://data.delijn.be/stops/305769", "https://data.delijn.be/stops/305786"], ["https://data.delijn.be/stops/404486", "https://data.delijn.be/stops/406758"], ["https://data.delijn.be/stops/403983", "https://data.delijn.be/stops/408356"], ["https://data.delijn.be/stops/402084", "https://data.delijn.be/stops/402135"], ["https://data.delijn.be/stops/503223", "https://data.delijn.be/stops/505264"], ["https://data.delijn.be/stops/208575", "https://data.delijn.be/stops/307526"], ["https://data.delijn.be/stops/304390", "https://data.delijn.be/stops/307410"], ["https://data.delijn.be/stops/407206", "https://data.delijn.be/stops/407207"], ["https://data.delijn.be/stops/303095", "https://data.delijn.be/stops/303105"], ["https://data.delijn.be/stops/204501", "https://data.delijn.be/stops/205545"], ["https://data.delijn.be/stops/305691", "https://data.delijn.be/stops/307840"], ["https://data.delijn.be/stops/301188", "https://data.delijn.be/stops/303617"], ["https://data.delijn.be/stops/504665", "https://data.delijn.be/stops/509363"], ["https://data.delijn.be/stops/101591", "https://data.delijn.be/stops/103037"], ["https://data.delijn.be/stops/408086", "https://data.delijn.be/stops/408138"], ["https://data.delijn.be/stops/204520", "https://data.delijn.be/stops/205521"], ["https://data.delijn.be/stops/405061", "https://data.delijn.be/stops/405062"], ["https://data.delijn.be/stops/108710", "https://data.delijn.be/stops/108711"], ["https://data.delijn.be/stops/402720", "https://data.delijn.be/stops/308175"], ["https://data.delijn.be/stops/403174", "https://data.delijn.be/stops/403397"], ["https://data.delijn.be/stops/105904", "https://data.delijn.be/stops/105907"], ["https://data.delijn.be/stops/101582", "https://data.delijn.be/stops/105452"], ["https://data.delijn.be/stops/206074", "https://data.delijn.be/stops/206964"], ["https://data.delijn.be/stops/507375", "https://data.delijn.be/stops/507376"], ["https://data.delijn.be/stops/502083", "https://data.delijn.be/stops/502390"], ["https://data.delijn.be/stops/305912", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/307372", "https://data.delijn.be/stops/307386"], ["https://data.delijn.be/stops/201379", "https://data.delijn.be/stops/211049"], ["https://data.delijn.be/stops/303551", "https://data.delijn.be/stops/305554"], ["https://data.delijn.be/stops/104639", "https://data.delijn.be/stops/107967"], ["https://data.delijn.be/stops/207550", "https://data.delijn.be/stops/209748"], ["https://data.delijn.be/stops/503319", "https://data.delijn.be/stops/503323"], ["https://data.delijn.be/stops/302635", "https://data.delijn.be/stops/302637"], ["https://data.delijn.be/stops/102748", "https://data.delijn.be/stops/107803"], ["https://data.delijn.be/stops/501682", "https://data.delijn.be/stops/506683"], ["https://data.delijn.be/stops/101992", "https://data.delijn.be/stops/102635"], ["https://data.delijn.be/stops/203968", "https://data.delijn.be/stops/203969"], ["https://data.delijn.be/stops/201002", "https://data.delijn.be/stops/203297"], ["https://data.delijn.be/stops/101250", "https://data.delijn.be/stops/102816"], ["https://data.delijn.be/stops/503276", "https://data.delijn.be/stops/504713"], ["https://data.delijn.be/stops/206706", "https://data.delijn.be/stops/207612"], ["https://data.delijn.be/stops/409759", "https://data.delijn.be/stops/409760"], ["https://data.delijn.be/stops/304663", "https://data.delijn.be/stops/304664"], ["https://data.delijn.be/stops/102833", "https://data.delijn.be/stops/102834"], ["https://data.delijn.be/stops/506028", "https://data.delijn.be/stops/506058"], ["https://data.delijn.be/stops/407743", "https://data.delijn.be/stops/409774"], ["https://data.delijn.be/stops/301915", "https://data.delijn.be/stops/305813"], ["https://data.delijn.be/stops/101757", "https://data.delijn.be/stops/104406"], ["https://data.delijn.be/stops/105064", "https://data.delijn.be/stops/305831"], ["https://data.delijn.be/stops/208768", "https://data.delijn.be/stops/209768"], ["https://data.delijn.be/stops/207243", "https://data.delijn.be/stops/207244"], ["https://data.delijn.be/stops/408360", "https://data.delijn.be/stops/408396"], ["https://data.delijn.be/stops/305122", "https://data.delijn.be/stops/305123"], ["https://data.delijn.be/stops/202675", "https://data.delijn.be/stops/202676"], ["https://data.delijn.be/stops/508359", "https://data.delijn.be/stops/508813"], ["https://data.delijn.be/stops/407369", "https://data.delijn.be/stops/407448"], ["https://data.delijn.be/stops/206538", "https://data.delijn.be/stops/207538"], ["https://data.delijn.be/stops/105883", "https://data.delijn.be/stops/105887"], ["https://data.delijn.be/stops/209493", "https://data.delijn.be/stops/209494"], ["https://data.delijn.be/stops/103389", "https://data.delijn.be/stops/104390"], ["https://data.delijn.be/stops/409745", "https://data.delijn.be/stops/409795"], ["https://data.delijn.be/stops/107316", "https://data.delijn.be/stops/108814"], ["https://data.delijn.be/stops/507820", "https://data.delijn.be/stops/508081"], ["https://data.delijn.be/stops/109884", "https://data.delijn.be/stops/109885"], ["https://data.delijn.be/stops/406270", "https://data.delijn.be/stops/406274"], ["https://data.delijn.be/stops/308610", "https://data.delijn.be/stops/308611"], ["https://data.delijn.be/stops/501019", "https://data.delijn.be/stops/506019"], ["https://data.delijn.be/stops/107368", "https://data.delijn.be/stops/107369"], ["https://data.delijn.be/stops/404012", "https://data.delijn.be/stops/404017"], ["https://data.delijn.be/stops/404833", "https://data.delijn.be/stops/406133"], ["https://data.delijn.be/stops/507100", "https://data.delijn.be/stops/507153"], ["https://data.delijn.be/stops/302945", "https://data.delijn.be/stops/303089"], ["https://data.delijn.be/stops/507550", "https://data.delijn.be/stops/507674"], ["https://data.delijn.be/stops/109197", "https://data.delijn.be/stops/109198"], ["https://data.delijn.be/stops/502040", "https://data.delijn.be/stops/502627"], ["https://data.delijn.be/stops/505625", "https://data.delijn.be/stops/507004"], ["https://data.delijn.be/stops/208635", "https://data.delijn.be/stops/209635"], ["https://data.delijn.be/stops/501510", "https://data.delijn.be/stops/506510"], ["https://data.delijn.be/stops/208663", "https://data.delijn.be/stops/209732"], ["https://data.delijn.be/stops/206659", "https://data.delijn.be/stops/207659"], ["https://data.delijn.be/stops/104547", "https://data.delijn.be/stops/107903"], ["https://data.delijn.be/stops/101826", "https://data.delijn.be/stops/102958"], ["https://data.delijn.be/stops/202935", "https://data.delijn.be/stops/203935"], ["https://data.delijn.be/stops/409367", "https://data.delijn.be/stops/409383"], ["https://data.delijn.be/stops/503692", "https://data.delijn.be/stops/508692"], ["https://data.delijn.be/stops/402359", "https://data.delijn.be/stops/402457"], ["https://data.delijn.be/stops/408587", "https://data.delijn.be/stops/408597"], ["https://data.delijn.be/stops/103144", "https://data.delijn.be/stops/103145"], ["https://data.delijn.be/stops/303796", "https://data.delijn.be/stops/303797"], ["https://data.delijn.be/stops/303405", "https://data.delijn.be/stops/304554"], ["https://data.delijn.be/stops/403413", "https://data.delijn.be/stops/410398"], ["https://data.delijn.be/stops/301353", "https://data.delijn.be/stops/301363"], ["https://data.delijn.be/stops/401826", "https://data.delijn.be/stops/406019"], ["https://data.delijn.be/stops/205582", "https://data.delijn.be/stops/211067"], ["https://data.delijn.be/stops/206841", "https://data.delijn.be/stops/206919"], ["https://data.delijn.be/stops/400033", "https://data.delijn.be/stops/400317"], ["https://data.delijn.be/stops/504696", "https://data.delijn.be/stops/505998"], ["https://data.delijn.be/stops/207012", "https://data.delijn.be/stops/217010"], ["https://data.delijn.be/stops/302715", "https://data.delijn.be/stops/302785"], ["https://data.delijn.be/stops/406461", "https://data.delijn.be/stops/408908"], ["https://data.delijn.be/stops/203630", "https://data.delijn.be/stops/205068"], ["https://data.delijn.be/stops/406635", "https://data.delijn.be/stops/407225"], ["https://data.delijn.be/stops/503807", "https://data.delijn.be/stops/503809"], ["https://data.delijn.be/stops/208432", "https://data.delijn.be/stops/208682"], ["https://data.delijn.be/stops/505588", "https://data.delijn.be/stops/507507"], ["https://data.delijn.be/stops/201090", "https://data.delijn.be/stops/202889"], ["https://data.delijn.be/stops/204780", "https://data.delijn.be/stops/205779"], ["https://data.delijn.be/stops/407771", "https://data.delijn.be/stops/304367"], ["https://data.delijn.be/stops/503930", "https://data.delijn.be/stops/508998"], ["https://data.delijn.be/stops/305947", "https://data.delijn.be/stops/308417"], ["https://data.delijn.be/stops/405496", "https://data.delijn.be/stops/303284"], ["https://data.delijn.be/stops/300559", "https://data.delijn.be/stops/300607"], ["https://data.delijn.be/stops/105802", "https://data.delijn.be/stops/305793"], ["https://data.delijn.be/stops/304434", "https://data.delijn.be/stops/306409"], ["https://data.delijn.be/stops/201253", "https://data.delijn.be/stops/202558"], ["https://data.delijn.be/stops/502807", "https://data.delijn.be/stops/509723"], ["https://data.delijn.be/stops/308150", "https://data.delijn.be/stops/308175"], ["https://data.delijn.be/stops/300671", "https://data.delijn.be/stops/308977"], ["https://data.delijn.be/stops/204045", "https://data.delijn.be/stops/204518"], ["https://data.delijn.be/stops/201066", "https://data.delijn.be/stops/204810"], ["https://data.delijn.be/stops/404654", "https://data.delijn.be/stops/410132"], ["https://data.delijn.be/stops/300666", "https://data.delijn.be/stops/300673"], ["https://data.delijn.be/stops/101678", "https://data.delijn.be/stops/101683"], ["https://data.delijn.be/stops/106852", "https://data.delijn.be/stops/107232"], ["https://data.delijn.be/stops/208537", "https://data.delijn.be/stops/208538"], ["https://data.delijn.be/stops/505323", "https://data.delijn.be/stops/505670"], ["https://data.delijn.be/stops/403745", "https://data.delijn.be/stops/403775"], ["https://data.delijn.be/stops/302709", "https://data.delijn.be/stops/302740"], ["https://data.delijn.be/stops/403500", "https://data.delijn.be/stops/410390"], ["https://data.delijn.be/stops/502722", "https://data.delijn.be/stops/507722"], ["https://data.delijn.be/stops/205989", "https://data.delijn.be/stops/208568"], ["https://data.delijn.be/stops/405351", "https://data.delijn.be/stops/405352"], ["https://data.delijn.be/stops/304940", "https://data.delijn.be/stops/304941"], ["https://data.delijn.be/stops/202460", "https://data.delijn.be/stops/203461"], ["https://data.delijn.be/stops/106080", "https://data.delijn.be/stops/106081"], ["https://data.delijn.be/stops/107961", "https://data.delijn.be/stops/107962"], ["https://data.delijn.be/stops/400675", "https://data.delijn.be/stops/302853"], ["https://data.delijn.be/stops/106625", "https://data.delijn.be/stops/106626"], ["https://data.delijn.be/stops/200828", "https://data.delijn.be/stops/502064"], ["https://data.delijn.be/stops/405304", "https://data.delijn.be/stops/305710"], ["https://data.delijn.be/stops/107001", "https://data.delijn.be/stops/107002"], ["https://data.delijn.be/stops/205078", "https://data.delijn.be/stops/205586"], ["https://data.delijn.be/stops/206936", "https://data.delijn.be/stops/207248"], ["https://data.delijn.be/stops/102393", "https://data.delijn.be/stops/107013"], ["https://data.delijn.be/stops/400430", "https://data.delijn.be/stops/406832"], ["https://data.delijn.be/stops/204551", "https://data.delijn.be/stops/205596"], ["https://data.delijn.be/stops/108284", "https://data.delijn.be/stops/108291"], ["https://data.delijn.be/stops/207377", "https://data.delijn.be/stops/207881"], ["https://data.delijn.be/stops/209040", "https://data.delijn.be/stops/209051"], ["https://data.delijn.be/stops/404208", "https://data.delijn.be/stops/404214"], ["https://data.delijn.be/stops/505311", "https://data.delijn.be/stops/509636"], ["https://data.delijn.be/stops/301193", "https://data.delijn.be/stops/308557"], ["https://data.delijn.be/stops/305144", "https://data.delijn.be/stops/305145"], ["https://data.delijn.be/stops/303046", "https://data.delijn.be/stops/303047"], ["https://data.delijn.be/stops/208834", "https://data.delijn.be/stops/209795"], ["https://data.delijn.be/stops/406040", "https://data.delijn.be/stops/406050"], ["https://data.delijn.be/stops/403632", "https://data.delijn.be/stops/407245"], ["https://data.delijn.be/stops/108370", "https://data.delijn.be/stops/108375"], ["https://data.delijn.be/stops/302976", "https://data.delijn.be/stops/303003"], ["https://data.delijn.be/stops/503188", "https://data.delijn.be/stops/508188"], ["https://data.delijn.be/stops/404412", "https://data.delijn.be/stops/404414"], ["https://data.delijn.be/stops/103545", "https://data.delijn.be/stops/105680"], ["https://data.delijn.be/stops/107886", "https://data.delijn.be/stops/107888"], ["https://data.delijn.be/stops/302403", "https://data.delijn.be/stops/302405"], ["https://data.delijn.be/stops/304229", "https://data.delijn.be/stops/305449"], ["https://data.delijn.be/stops/305683", "https://data.delijn.be/stops/305713"], ["https://data.delijn.be/stops/206088", "https://data.delijn.be/stops/206094"], ["https://data.delijn.be/stops/501614", "https://data.delijn.be/stops/501622"], ["https://data.delijn.be/stops/501193", "https://data.delijn.be/stops/506197"], ["https://data.delijn.be/stops/208389", "https://data.delijn.be/stops/208420"], ["https://data.delijn.be/stops/200509", "https://data.delijn.be/stops/201508"], ["https://data.delijn.be/stops/404475", "https://data.delijn.be/stops/405620"], ["https://data.delijn.be/stops/504570", "https://data.delijn.be/stops/505395"], ["https://data.delijn.be/stops/404865", "https://data.delijn.be/stops/404869"], ["https://data.delijn.be/stops/409372", "https://data.delijn.be/stops/409373"], ["https://data.delijn.be/stops/505357", "https://data.delijn.be/stops/505358"], ["https://data.delijn.be/stops/400709", "https://data.delijn.be/stops/400712"], ["https://data.delijn.be/stops/208410", "https://data.delijn.be/stops/209409"], ["https://data.delijn.be/stops/502297", "https://data.delijn.be/stops/505730"], ["https://data.delijn.be/stops/101268", "https://data.delijn.be/stops/103012"], ["https://data.delijn.be/stops/200107", "https://data.delijn.be/stops/200196"], ["https://data.delijn.be/stops/104422", "https://data.delijn.be/stops/104424"], ["https://data.delijn.be/stops/206786", "https://data.delijn.be/stops/209846"], ["https://data.delijn.be/stops/200152", "https://data.delijn.be/stops/201152"], ["https://data.delijn.be/stops/400832", "https://data.delijn.be/stops/403572"], ["https://data.delijn.be/stops/101506", "https://data.delijn.be/stops/109028"], ["https://data.delijn.be/stops/203001", "https://data.delijn.be/stops/203492"], ["https://data.delijn.be/stops/406350", "https://data.delijn.be/stops/406406"], ["https://data.delijn.be/stops/300421", "https://data.delijn.be/stops/300432"], ["https://data.delijn.be/stops/105663", "https://data.delijn.be/stops/105664"], ["https://data.delijn.be/stops/300103", "https://data.delijn.be/stops/306850"], ["https://data.delijn.be/stops/406857", "https://data.delijn.be/stops/406870"], ["https://data.delijn.be/stops/304628", "https://data.delijn.be/stops/304634"], ["https://data.delijn.be/stops/503443", "https://data.delijn.be/stops/508434"], ["https://data.delijn.be/stops/401497", "https://data.delijn.be/stops/403887"], ["https://data.delijn.be/stops/304187", "https://data.delijn.be/stops/305336"], ["https://data.delijn.be/stops/301444", "https://data.delijn.be/stops/306417"], ["https://data.delijn.be/stops/103348", "https://data.delijn.be/stops/103349"], ["https://data.delijn.be/stops/109837", "https://data.delijn.be/stops/109858"], ["https://data.delijn.be/stops/503226", "https://data.delijn.be/stops/508226"], ["https://data.delijn.be/stops/107194", "https://data.delijn.be/stops/109383"], ["https://data.delijn.be/stops/200573", "https://data.delijn.be/stops/201572"], ["https://data.delijn.be/stops/202843", "https://data.delijn.be/stops/218001"], ["https://data.delijn.be/stops/108196", "https://data.delijn.be/stops/108204"], ["https://data.delijn.be/stops/204775", "https://data.delijn.be/stops/205594"], ["https://data.delijn.be/stops/301005", "https://data.delijn.be/stops/301007"], ["https://data.delijn.be/stops/503191", "https://data.delijn.be/stops/503192"], ["https://data.delijn.be/stops/107085", "https://data.delijn.be/stops/108735"], ["https://data.delijn.be/stops/305241", "https://data.delijn.be/stops/308695"], ["https://data.delijn.be/stops/404928", "https://data.delijn.be/stops/409636"], ["https://data.delijn.be/stops/201615", "https://data.delijn.be/stops/202142"], ["https://data.delijn.be/stops/408941", "https://data.delijn.be/stops/409236"], ["https://data.delijn.be/stops/405160", "https://data.delijn.be/stops/405257"], ["https://data.delijn.be/stops/102894", "https://data.delijn.be/stops/106055"], ["https://data.delijn.be/stops/207708", "https://data.delijn.be/stops/308799"], ["https://data.delijn.be/stops/205016", "https://data.delijn.be/stops/205209"], ["https://data.delijn.be/stops/208689", "https://data.delijn.be/stops/208692"], ["https://data.delijn.be/stops/404004", "https://data.delijn.be/stops/404005"], ["https://data.delijn.be/stops/303567", "https://data.delijn.be/stops/304191"], ["https://data.delijn.be/stops/103270", "https://data.delijn.be/stops/107040"], ["https://data.delijn.be/stops/209148", "https://data.delijn.be/stops/209403"], ["https://data.delijn.be/stops/400743", "https://data.delijn.be/stops/400903"], ["https://data.delijn.be/stops/102373", "https://data.delijn.be/stops/105705"], ["https://data.delijn.be/stops/408528", "https://data.delijn.be/stops/408561"], ["https://data.delijn.be/stops/105718", "https://data.delijn.be/stops/106140"], ["https://data.delijn.be/stops/501219", "https://data.delijn.be/stops/506219"], ["https://data.delijn.be/stops/300691", "https://data.delijn.be/stops/303485"], ["https://data.delijn.be/stops/509236", "https://data.delijn.be/stops/509241"], ["https://data.delijn.be/stops/103284", "https://data.delijn.be/stops/103286"], ["https://data.delijn.be/stops/202090", "https://data.delijn.be/stops/202091"], ["https://data.delijn.be/stops/400595", "https://data.delijn.be/stops/400601"], ["https://data.delijn.be/stops/402286", "https://data.delijn.be/stops/402471"], ["https://data.delijn.be/stops/502240", "https://data.delijn.be/stops/502735"], ["https://data.delijn.be/stops/503228", "https://data.delijn.be/stops/505272"], ["https://data.delijn.be/stops/408515", "https://data.delijn.be/stops/408574"], ["https://data.delijn.be/stops/209638", "https://data.delijn.be/stops/209735"], ["https://data.delijn.be/stops/208085", "https://data.delijn.be/stops/209697"], ["https://data.delijn.be/stops/101176", "https://data.delijn.be/stops/106790"], ["https://data.delijn.be/stops/405525", "https://data.delijn.be/stops/408130"], ["https://data.delijn.be/stops/103914", "https://data.delijn.be/stops/107880"], ["https://data.delijn.be/stops/304235", "https://data.delijn.be/stops/304236"], ["https://data.delijn.be/stops/401618", "https://data.delijn.be/stops/308216"], ["https://data.delijn.be/stops/102201", "https://data.delijn.be/stops/102202"], ["https://data.delijn.be/stops/302372", "https://data.delijn.be/stops/302376"], ["https://data.delijn.be/stops/200081", "https://data.delijn.be/stops/201081"], ["https://data.delijn.be/stops/400928", "https://data.delijn.be/stops/400940"], ["https://data.delijn.be/stops/206080", "https://data.delijn.be/stops/206410"], ["https://data.delijn.be/stops/102699", "https://data.delijn.be/stops/105152"], ["https://data.delijn.be/stops/102335", "https://data.delijn.be/stops/108835"], ["https://data.delijn.be/stops/402692", "https://data.delijn.be/stops/402873"], ["https://data.delijn.be/stops/403658", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/406132", "https://data.delijn.be/stops/408926"], ["https://data.delijn.be/stops/206489", "https://data.delijn.be/stops/207462"], ["https://data.delijn.be/stops/101183", "https://data.delijn.be/stops/107875"], ["https://data.delijn.be/stops/508351", "https://data.delijn.be/stops/508650"], ["https://data.delijn.be/stops/200842", "https://data.delijn.be/stops/200858"], ["https://data.delijn.be/stops/206535", "https://data.delijn.be/stops/206547"], ["https://data.delijn.be/stops/502713", "https://data.delijn.be/stops/507713"], ["https://data.delijn.be/stops/301278", "https://data.delijn.be/stops/307789"], ["https://data.delijn.be/stops/202201", "https://data.delijn.be/stops/203505"], ["https://data.delijn.be/stops/207100", "https://data.delijn.be/stops/207104"], ["https://data.delijn.be/stops/106909", "https://data.delijn.be/stops/106910"], ["https://data.delijn.be/stops/400076", "https://data.delijn.be/stops/407022"], ["https://data.delijn.be/stops/407943", "https://data.delijn.be/stops/407944"], ["https://data.delijn.be/stops/502400", "https://data.delijn.be/stops/502590"], ["https://data.delijn.be/stops/404530", "https://data.delijn.be/stops/406529"], ["https://data.delijn.be/stops/102969", "https://data.delijn.be/stops/106570"], ["https://data.delijn.be/stops/201941", "https://data.delijn.be/stops/211055"], ["https://data.delijn.be/stops/300337", "https://data.delijn.be/stops/300338"], ["https://data.delijn.be/stops/101215", "https://data.delijn.be/stops/105495"], ["https://data.delijn.be/stops/300995", "https://data.delijn.be/stops/301088"], ["https://data.delijn.be/stops/501361", "https://data.delijn.be/stops/506057"], ["https://data.delijn.be/stops/303947", "https://data.delijn.be/stops/303948"], ["https://data.delijn.be/stops/102587", "https://data.delijn.be/stops/102588"], ["https://data.delijn.be/stops/208442", "https://data.delijn.be/stops/209442"], ["https://data.delijn.be/stops/502424", "https://data.delijn.be/stops/507424"], ["https://data.delijn.be/stops/201783", "https://data.delijn.be/stops/202450"], ["https://data.delijn.be/stops/302303", "https://data.delijn.be/stops/302304"], ["https://data.delijn.be/stops/109203", "https://data.delijn.be/stops/109204"], ["https://data.delijn.be/stops/208367", "https://data.delijn.be/stops/208368"], ["https://data.delijn.be/stops/307822", "https://data.delijn.be/stops/307823"], ["https://data.delijn.be/stops/208177", "https://data.delijn.be/stops/209176"], ["https://data.delijn.be/stops/106167", "https://data.delijn.be/stops/106451"], ["https://data.delijn.be/stops/305403", "https://data.delijn.be/stops/305416"], ["https://data.delijn.be/stops/300719", "https://data.delijn.be/stops/300737"], ["https://data.delijn.be/stops/304968", "https://data.delijn.be/stops/304976"], ["https://data.delijn.be/stops/400545", "https://data.delijn.be/stops/400557"], ["https://data.delijn.be/stops/108076", "https://data.delijn.be/stops/108376"], ["https://data.delijn.be/stops/402702", "https://data.delijn.be/stops/402703"], ["https://data.delijn.be/stops/508197", "https://data.delijn.be/stops/508450"], ["https://data.delijn.be/stops/408124", "https://data.delijn.be/stops/408133"], ["https://data.delijn.be/stops/504800", "https://data.delijn.be/stops/504805"], ["https://data.delijn.be/stops/206257", "https://data.delijn.be/stops/206260"], ["https://data.delijn.be/stops/505634", "https://data.delijn.be/stops/509806"], ["https://data.delijn.be/stops/301420", "https://data.delijn.be/stops/307529"], ["https://data.delijn.be/stops/405322", "https://data.delijn.be/stops/303326"], ["https://data.delijn.be/stops/407338", "https://data.delijn.be/stops/407339"], ["https://data.delijn.be/stops/304221", "https://data.delijn.be/stops/306826"], ["https://data.delijn.be/stops/204507", "https://data.delijn.be/stops/205489"], ["https://data.delijn.be/stops/503300", "https://data.delijn.be/stops/508968"], ["https://data.delijn.be/stops/101179", "https://data.delijn.be/stops/106741"], ["https://data.delijn.be/stops/505501", "https://data.delijn.be/stops/505604"], ["https://data.delijn.be/stops/208444", "https://data.delijn.be/stops/208453"], ["https://data.delijn.be/stops/502638", "https://data.delijn.be/stops/507638"], ["https://data.delijn.be/stops/200067", "https://data.delijn.be/stops/200142"], ["https://data.delijn.be/stops/408259", "https://data.delijn.be/stops/307379"], ["https://data.delijn.be/stops/306098", "https://data.delijn.be/stops/308718"], ["https://data.delijn.be/stops/206870", "https://data.delijn.be/stops/206928"], ["https://data.delijn.be/stops/503023", "https://data.delijn.be/stops/503677"], ["https://data.delijn.be/stops/207029", "https://data.delijn.be/stops/207901"], ["https://data.delijn.be/stops/103771", "https://data.delijn.be/stops/106504"], ["https://data.delijn.be/stops/305048", "https://data.delijn.be/stops/305088"], ["https://data.delijn.be/stops/204132", "https://data.delijn.be/stops/205146"], ["https://data.delijn.be/stops/307568", "https://data.delijn.be/stops/307569"], ["https://data.delijn.be/stops/405013", "https://data.delijn.be/stops/405014"], ["https://data.delijn.be/stops/407838", "https://data.delijn.be/stops/408012"], ["https://data.delijn.be/stops/504276", "https://data.delijn.be/stops/509276"], ["https://data.delijn.be/stops/306819", "https://data.delijn.be/stops/306824"], ["https://data.delijn.be/stops/403947", "https://data.delijn.be/stops/404028"], ["https://data.delijn.be/stops/408512", "https://data.delijn.be/stops/408564"], ["https://data.delijn.be/stops/202048", "https://data.delijn.be/stops/203049"], ["https://data.delijn.be/stops/405352", "https://data.delijn.be/stops/302838"], ["https://data.delijn.be/stops/105175", "https://data.delijn.be/stops/105200"], ["https://data.delijn.be/stops/300709", "https://data.delijn.be/stops/300716"], ["https://data.delijn.be/stops/202259", "https://data.delijn.be/stops/203101"], ["https://data.delijn.be/stops/301787", "https://data.delijn.be/stops/301788"], ["https://data.delijn.be/stops/304841", "https://data.delijn.be/stops/307064"], ["https://data.delijn.be/stops/502418", "https://data.delijn.be/stops/502750"], ["https://data.delijn.be/stops/107639", "https://data.delijn.be/stops/108834"], ["https://data.delijn.be/stops/301042", "https://data.delijn.be/stops/301043"], ["https://data.delijn.be/stops/103122", "https://data.delijn.be/stops/205605"], ["https://data.delijn.be/stops/501194", "https://data.delijn.be/stops/506479"], ["https://data.delijn.be/stops/201873", "https://data.delijn.be/stops/202025"], ["https://data.delijn.be/stops/206024", "https://data.delijn.be/stops/207015"], ["https://data.delijn.be/stops/102913", "https://data.delijn.be/stops/109635"], ["https://data.delijn.be/stops/108703", "https://data.delijn.be/stops/108706"], ["https://data.delijn.be/stops/507023", "https://data.delijn.be/stops/507927"], ["https://data.delijn.be/stops/101760", "https://data.delijn.be/stops/103216"], ["https://data.delijn.be/stops/503458", "https://data.delijn.be/stops/503477"], ["https://data.delijn.be/stops/102260", "https://data.delijn.be/stops/107520"], ["https://data.delijn.be/stops/503304", "https://data.delijn.be/stops/508299"], ["https://data.delijn.be/stops/501119", "https://data.delijn.be/stops/506119"], ["https://data.delijn.be/stops/409258", "https://data.delijn.be/stops/409259"], ["https://data.delijn.be/stops/503836", "https://data.delijn.be/stops/503837"], ["https://data.delijn.be/stops/103756", "https://data.delijn.be/stops/105435"], ["https://data.delijn.be/stops/301055", "https://data.delijn.be/stops/301057"], ["https://data.delijn.be/stops/301821", "https://data.delijn.be/stops/301822"], ["https://data.delijn.be/stops/403622", "https://data.delijn.be/stops/403623"], ["https://data.delijn.be/stops/200835", "https://data.delijn.be/stops/200836"], ["https://data.delijn.be/stops/502503", "https://data.delijn.be/stops/507503"], ["https://data.delijn.be/stops/403382", "https://data.delijn.be/stops/403529"], ["https://data.delijn.be/stops/304511", "https://data.delijn.be/stops/305266"], ["https://data.delijn.be/stops/206612", "https://data.delijn.be/stops/206717"], ["https://data.delijn.be/stops/104504", "https://data.delijn.be/stops/104506"], ["https://data.delijn.be/stops/305185", "https://data.delijn.be/stops/305186"], ["https://data.delijn.be/stops/202044", "https://data.delijn.be/stops/203044"], ["https://data.delijn.be/stops/505597", "https://data.delijn.be/stops/509727"], ["https://data.delijn.be/stops/406927", "https://data.delijn.be/stops/406969"], ["https://data.delijn.be/stops/406368", "https://data.delijn.be/stops/406393"], ["https://data.delijn.be/stops/407337", "https://data.delijn.be/stops/409777"], ["https://data.delijn.be/stops/305169", "https://data.delijn.be/stops/308050"], ["https://data.delijn.be/stops/104698", "https://data.delijn.be/stops/107357"], ["https://data.delijn.be/stops/400300", "https://data.delijn.be/stops/400301"], ["https://data.delijn.be/stops/105466", "https://data.delijn.be/stops/105669"], ["https://data.delijn.be/stops/106699", "https://data.delijn.be/stops/106703"], ["https://data.delijn.be/stops/307322", "https://data.delijn.be/stops/307323"], ["https://data.delijn.be/stops/400972", "https://data.delijn.be/stops/400974"], ["https://data.delijn.be/stops/406053", "https://data.delijn.be/stops/409279"], ["https://data.delijn.be/stops/302315", "https://data.delijn.be/stops/302327"], ["https://data.delijn.be/stops/504996", "https://data.delijn.be/stops/505380"], ["https://data.delijn.be/stops/304605", "https://data.delijn.be/stops/304662"], ["https://data.delijn.be/stops/404398", "https://data.delijn.be/stops/404401"], ["https://data.delijn.be/stops/304076", "https://data.delijn.be/stops/304097"], ["https://data.delijn.be/stops/407591", "https://data.delijn.be/stops/407663"], ["https://data.delijn.be/stops/504037", "https://data.delijn.be/stops/506002"], ["https://data.delijn.be/stops/304801", "https://data.delijn.be/stops/308771"], ["https://data.delijn.be/stops/201435", "https://data.delijn.be/stops/201783"], ["https://data.delijn.be/stops/405500", "https://data.delijn.be/stops/405501"], ["https://data.delijn.be/stops/209607", "https://data.delijn.be/stops/209608"], ["https://data.delijn.be/stops/505532", "https://data.delijn.be/stops/505548"], ["https://data.delijn.be/stops/503679", "https://data.delijn.be/stops/508023"], ["https://data.delijn.be/stops/503924", "https://data.delijn.be/stops/508930"], ["https://data.delijn.be/stops/103995", "https://data.delijn.be/stops/105380"], ["https://data.delijn.be/stops/402936", "https://data.delijn.be/stops/403969"], ["https://data.delijn.be/stops/101645", "https://data.delijn.be/stops/105755"], ["https://data.delijn.be/stops/105246", "https://data.delijn.be/stops/105248"], ["https://data.delijn.be/stops/308099", "https://data.delijn.be/stops/308101"], ["https://data.delijn.be/stops/108541", "https://data.delijn.be/stops/108543"], ["https://data.delijn.be/stops/103761", "https://data.delijn.be/stops/105350"], ["https://data.delijn.be/stops/200462", "https://data.delijn.be/stops/200675"], ["https://data.delijn.be/stops/401468", "https://data.delijn.be/stops/401469"], ["https://data.delijn.be/stops/109135", "https://data.delijn.be/stops/109140"], ["https://data.delijn.be/stops/403037", "https://data.delijn.be/stops/403866"], ["https://data.delijn.be/stops/504159", "https://data.delijn.be/stops/509159"], ["https://data.delijn.be/stops/104962", "https://data.delijn.be/stops/109242"], ["https://data.delijn.be/stops/306845", "https://data.delijn.be/stops/306846"], ["https://data.delijn.be/stops/207679", "https://data.delijn.be/stops/208071"], ["https://data.delijn.be/stops/304731", "https://data.delijn.be/stops/304735"], ["https://data.delijn.be/stops/301494", "https://data.delijn.be/stops/307956"], ["https://data.delijn.be/stops/209520", "https://data.delijn.be/stops/219017"], ["https://data.delijn.be/stops/103068", "https://data.delijn.be/stops/103259"], ["https://data.delijn.be/stops/109333", "https://data.delijn.be/stops/109334"], ["https://data.delijn.be/stops/204535", "https://data.delijn.be/stops/205535"], ["https://data.delijn.be/stops/207234", "https://data.delijn.be/stops/207935"], ["https://data.delijn.be/stops/407204", "https://data.delijn.be/stops/408804"], ["https://data.delijn.be/stops/504306", "https://data.delijn.be/stops/509020"], ["https://data.delijn.be/stops/504344", "https://data.delijn.be/stops/508018"], ["https://data.delijn.be/stops/407665", "https://data.delijn.be/stops/407677"], ["https://data.delijn.be/stops/402886", "https://data.delijn.be/stops/402887"], ["https://data.delijn.be/stops/201660", "https://data.delijn.be/stops/211124"], ["https://data.delijn.be/stops/208015", "https://data.delijn.be/stops/209404"], ["https://data.delijn.be/stops/307556", "https://data.delijn.be/stops/307579"], ["https://data.delijn.be/stops/200971", "https://data.delijn.be/stops/207616"], ["https://data.delijn.be/stops/300771", "https://data.delijn.be/stops/302405"], ["https://data.delijn.be/stops/503769", "https://data.delijn.be/stops/508768"], ["https://data.delijn.be/stops/308213", "https://data.delijn.be/stops/308214"], ["https://data.delijn.be/stops/202393", "https://data.delijn.be/stops/210122"], ["https://data.delijn.be/stops/202607", "https://data.delijn.be/stops/205933"], ["https://data.delijn.be/stops/106172", "https://data.delijn.be/stops/109183"], ["https://data.delijn.be/stops/404456", "https://data.delijn.be/stops/404561"], ["https://data.delijn.be/stops/503831", "https://data.delijn.be/stops/508834"], ["https://data.delijn.be/stops/300405", "https://data.delijn.be/stops/300406"], ["https://data.delijn.be/stops/306093", "https://data.delijn.be/stops/308686"], ["https://data.delijn.be/stops/300745", "https://data.delijn.be/stops/300775"], ["https://data.delijn.be/stops/301661", "https://data.delijn.be/stops/307823"], ["https://data.delijn.be/stops/108092", "https://data.delijn.be/stops/108093"], ["https://data.delijn.be/stops/503915", "https://data.delijn.be/stops/503921"], ["https://data.delijn.be/stops/502090", "https://data.delijn.be/stops/507090"], ["https://data.delijn.be/stops/205159", "https://data.delijn.be/stops/205161"], ["https://data.delijn.be/stops/402179", "https://data.delijn.be/stops/402265"], ["https://data.delijn.be/stops/400659", "https://data.delijn.be/stops/408964"], ["https://data.delijn.be/stops/301733", "https://data.delijn.be/stops/301758"], ["https://data.delijn.be/stops/505051", "https://data.delijn.be/stops/507552"], ["https://data.delijn.be/stops/301365", "https://data.delijn.be/stops/301366"], ["https://data.delijn.be/stops/405321", "https://data.delijn.be/stops/405339"], ["https://data.delijn.be/stops/407021", "https://data.delijn.be/stops/308743"], ["https://data.delijn.be/stops/404391", "https://data.delijn.be/stops/405442"], ["https://data.delijn.be/stops/409505", "https://data.delijn.be/stops/410401"], ["https://data.delijn.be/stops/502746", "https://data.delijn.be/stops/505068"], ["https://data.delijn.be/stops/401503", "https://data.delijn.be/stops/402023"], ["https://data.delijn.be/stops/103724", "https://data.delijn.be/stops/108095"], ["https://data.delijn.be/stops/103284", "https://data.delijn.be/stops/106126"], ["https://data.delijn.be/stops/504589", "https://data.delijn.be/stops/505536"], ["https://data.delijn.be/stops/209838", "https://data.delijn.be/stops/218014"], ["https://data.delijn.be/stops/105749", "https://data.delijn.be/stops/109965"], ["https://data.delijn.be/stops/503243", "https://data.delijn.be/stops/509763"], ["https://data.delijn.be/stops/409001", "https://data.delijn.be/stops/409004"], ["https://data.delijn.be/stops/209010", "https://data.delijn.be/stops/209012"], ["https://data.delijn.be/stops/201390", "https://data.delijn.be/stops/203651"], ["https://data.delijn.be/stops/301116", "https://data.delijn.be/stops/301118"], ["https://data.delijn.be/stops/410006", "https://data.delijn.be/stops/410034"], ["https://data.delijn.be/stops/108806", "https://data.delijn.be/stops/109664"], ["https://data.delijn.be/stops/302590", "https://data.delijn.be/stops/302593"], ["https://data.delijn.be/stops/208609", "https://data.delijn.be/stops/209608"], ["https://data.delijn.be/stops/207667", "https://data.delijn.be/stops/208065"], ["https://data.delijn.be/stops/409356", "https://data.delijn.be/stops/409357"], ["https://data.delijn.be/stops/103896", "https://data.delijn.be/stops/105316"], ["https://data.delijn.be/stops/303636", "https://data.delijn.be/stops/303638"], ["https://data.delijn.be/stops/107054", "https://data.delijn.be/stops/107055"], ["https://data.delijn.be/stops/404303", "https://data.delijn.be/stops/404305"], ["https://data.delijn.be/stops/308160", "https://data.delijn.be/stops/308161"], ["https://data.delijn.be/stops/503571", "https://data.delijn.be/stops/508553"], ["https://data.delijn.be/stops/401807", "https://data.delijn.be/stops/401808"], ["https://data.delijn.be/stops/403457", "https://data.delijn.be/stops/410328"], ["https://data.delijn.be/stops/409059", "https://data.delijn.be/stops/409104"], ["https://data.delijn.be/stops/405812", "https://data.delijn.be/stops/405890"], ["https://data.delijn.be/stops/308490", "https://data.delijn.be/stops/308491"], ["https://data.delijn.be/stops/302611", "https://data.delijn.be/stops/302612"], ["https://data.delijn.be/stops/406353", "https://data.delijn.be/stops/410189"], ["https://data.delijn.be/stops/208790", "https://data.delijn.be/stops/209336"], ["https://data.delijn.be/stops/400842", "https://data.delijn.be/stops/409568"], ["https://data.delijn.be/stops/508155", "https://data.delijn.be/stops/508253"], ["https://data.delijn.be/stops/203487", "https://data.delijn.be/stops/203488"], ["https://data.delijn.be/stops/407602", "https://data.delijn.be/stops/407747"], ["https://data.delijn.be/stops/108117", "https://data.delijn.be/stops/108118"], ["https://data.delijn.be/stops/300237", "https://data.delijn.be/stops/301373"], ["https://data.delijn.be/stops/202882", "https://data.delijn.be/stops/203815"], ["https://data.delijn.be/stops/107427", "https://data.delijn.be/stops/107529"], ["https://data.delijn.be/stops/106971", "https://data.delijn.be/stops/109506"], ["https://data.delijn.be/stops/207265", "https://data.delijn.be/stops/216001"], ["https://data.delijn.be/stops/101421", "https://data.delijn.be/stops/109723"], ["https://data.delijn.be/stops/400675", "https://data.delijn.be/stops/405300"], ["https://data.delijn.be/stops/302515", "https://data.delijn.be/stops/305874"], ["https://data.delijn.be/stops/503135", "https://data.delijn.be/stops/508131"], ["https://data.delijn.be/stops/202383", "https://data.delijn.be/stops/202384"], ["https://data.delijn.be/stops/302977", "https://data.delijn.be/stops/303002"], ["https://data.delijn.be/stops/101957", "https://data.delijn.be/stops/108324"], ["https://data.delijn.be/stops/404558", "https://data.delijn.be/stops/406986"], ["https://data.delijn.be/stops/504965", "https://data.delijn.be/stops/509965"], ["https://data.delijn.be/stops/304016", "https://data.delijn.be/stops/304055"], ["https://data.delijn.be/stops/107447", "https://data.delijn.be/stops/107448"], ["https://data.delijn.be/stops/405129", "https://data.delijn.be/stops/405386"], ["https://data.delijn.be/stops/403327", "https://data.delijn.be/stops/407587"], ["https://data.delijn.be/stops/302944", "https://data.delijn.be/stops/302956"], ["https://data.delijn.be/stops/107447", "https://data.delijn.be/stops/109645"], ["https://data.delijn.be/stops/407925", "https://data.delijn.be/stops/408001"], ["https://data.delijn.be/stops/503365", "https://data.delijn.be/stops/508238"], ["https://data.delijn.be/stops/207488", "https://data.delijn.be/stops/207645"], ["https://data.delijn.be/stops/502521", "https://data.delijn.be/stops/507520"], ["https://data.delijn.be/stops/202937", "https://data.delijn.be/stops/203936"], ["https://data.delijn.be/stops/501095", "https://data.delijn.be/stops/506421"], ["https://data.delijn.be/stops/101471", "https://data.delijn.be/stops/101473"], ["https://data.delijn.be/stops/405473", "https://data.delijn.be/stops/406698"], ["https://data.delijn.be/stops/102753", "https://data.delijn.be/stops/103699"], ["https://data.delijn.be/stops/404292", "https://data.delijn.be/stops/405974"], ["https://data.delijn.be/stops/200689", "https://data.delijn.be/stops/201720"], ["https://data.delijn.be/stops/401572", "https://data.delijn.be/stops/401573"], ["https://data.delijn.be/stops/307352", "https://data.delijn.be/stops/307353"], ["https://data.delijn.be/stops/301560", "https://data.delijn.be/stops/301561"], ["https://data.delijn.be/stops/106421", "https://data.delijn.be/stops/106512"], ["https://data.delijn.be/stops/402524", "https://data.delijn.be/stops/402592"], ["https://data.delijn.be/stops/105974", "https://data.delijn.be/stops/105976"], ["https://data.delijn.be/stops/105688", "https://data.delijn.be/stops/105711"], ["https://data.delijn.be/stops/306826", "https://data.delijn.be/stops/306827"], ["https://data.delijn.be/stops/201076", "https://data.delijn.be/stops/201242"], ["https://data.delijn.be/stops/104270", "https://data.delijn.be/stops/109746"], ["https://data.delijn.be/stops/401160", "https://data.delijn.be/stops/407906"], ["https://data.delijn.be/stops/207598", "https://data.delijn.be/stops/209666"], ["https://data.delijn.be/stops/402961", "https://data.delijn.be/stops/410059"], ["https://data.delijn.be/stops/105253", "https://data.delijn.be/stops/105272"], ["https://data.delijn.be/stops/502264", "https://data.delijn.be/stops/507264"], ["https://data.delijn.be/stops/103100", "https://data.delijn.be/stops/105020"], ["https://data.delijn.be/stops/205182", "https://data.delijn.be/stops/205368"], ["https://data.delijn.be/stops/200692", "https://data.delijn.be/stops/209648"], ["https://data.delijn.be/stops/106367", "https://data.delijn.be/stops/106368"], ["https://data.delijn.be/stops/403198", "https://data.delijn.be/stops/403229"], ["https://data.delijn.be/stops/303437", "https://data.delijn.be/stops/307280"], ["https://data.delijn.be/stops/405920", "https://data.delijn.be/stops/406134"], ["https://data.delijn.be/stops/302568", "https://data.delijn.be/stops/302589"], ["https://data.delijn.be/stops/401971", "https://data.delijn.be/stops/409143"], ["https://data.delijn.be/stops/303238", "https://data.delijn.be/stops/306708"], ["https://data.delijn.be/stops/503777", "https://data.delijn.be/stops/508780"], ["https://data.delijn.be/stops/102531", "https://data.delijn.be/stops/408339"], ["https://data.delijn.be/stops/204535", "https://data.delijn.be/stops/205730"], ["https://data.delijn.be/stops/104403", "https://data.delijn.be/stops/104409"], ["https://data.delijn.be/stops/108361", "https://data.delijn.be/stops/108502"], ["https://data.delijn.be/stops/300463", "https://data.delijn.be/stops/307088"], ["https://data.delijn.be/stops/206250", "https://data.delijn.be/stops/208951"], ["https://data.delijn.be/stops/301327", "https://data.delijn.be/stops/306650"], ["https://data.delijn.be/stops/405455", "https://data.delijn.be/stops/405458"], ["https://data.delijn.be/stops/109351", "https://data.delijn.be/stops/109353"], ["https://data.delijn.be/stops/301627", "https://data.delijn.be/stops/301629"], ["https://data.delijn.be/stops/202899", "https://data.delijn.be/stops/203899"], ["https://data.delijn.be/stops/406956", "https://data.delijn.be/stops/406961"], ["https://data.delijn.be/stops/300021", "https://data.delijn.be/stops/300411"], ["https://data.delijn.be/stops/300018", "https://data.delijn.be/stops/301114"], ["https://data.delijn.be/stops/406918", "https://data.delijn.be/stops/406972"], ["https://data.delijn.be/stops/102952", "https://data.delijn.be/stops/102954"], ["https://data.delijn.be/stops/201871", "https://data.delijn.be/stops/201881"], ["https://data.delijn.be/stops/106099", "https://data.delijn.be/stops/106146"], ["https://data.delijn.be/stops/305506", "https://data.delijn.be/stops/305519"], ["https://data.delijn.be/stops/306940", "https://data.delijn.be/stops/307946"], ["https://data.delijn.be/stops/201126", "https://data.delijn.be/stops/201244"], ["https://data.delijn.be/stops/401730", "https://data.delijn.be/stops/409406"], ["https://data.delijn.be/stops/206935", "https://data.delijn.be/stops/207802"], ["https://data.delijn.be/stops/104639", "https://data.delijn.be/stops/104643"], ["https://data.delijn.be/stops/501522", "https://data.delijn.be/stops/501525"], ["https://data.delijn.be/stops/106098", "https://data.delijn.be/stops/106116"], ["https://data.delijn.be/stops/203478", "https://data.delijn.be/stops/203480"], ["https://data.delijn.be/stops/204905", "https://data.delijn.be/stops/205244"], ["https://data.delijn.be/stops/202830", "https://data.delijn.be/stops/202831"], ["https://data.delijn.be/stops/202359", "https://data.delijn.be/stops/203358"], ["https://data.delijn.be/stops/106126", "https://data.delijn.be/stops/106128"], ["https://data.delijn.be/stops/200689", "https://data.delijn.be/stops/202759"], ["https://data.delijn.be/stops/302645", "https://data.delijn.be/stops/302656"], ["https://data.delijn.be/stops/207663", "https://data.delijn.be/stops/209793"], ["https://data.delijn.be/stops/202810", "https://data.delijn.be/stops/208712"], ["https://data.delijn.be/stops/502149", "https://data.delijn.be/stops/507092"], ["https://data.delijn.be/stops/303296", "https://data.delijn.be/stops/303303"], ["https://data.delijn.be/stops/201448", "https://data.delijn.be/stops/210113"], ["https://data.delijn.be/stops/408180", "https://data.delijn.be/stops/408182"], ["https://data.delijn.be/stops/403045", "https://data.delijn.be/stops/403048"], ["https://data.delijn.be/stops/307200", "https://data.delijn.be/stops/307202"], ["https://data.delijn.be/stops/208012", "https://data.delijn.be/stops/209012"], ["https://data.delijn.be/stops/205427", "https://data.delijn.be/stops/205763"], ["https://data.delijn.be/stops/503925", "https://data.delijn.be/stops/508925"], ["https://data.delijn.be/stops/400829", "https://data.delijn.be/stops/403576"], ["https://data.delijn.be/stops/101166", "https://data.delijn.be/stops/101167"], ["https://data.delijn.be/stops/206802", "https://data.delijn.be/stops/209033"], ["https://data.delijn.be/stops/508503", "https://data.delijn.be/stops/508867"], ["https://data.delijn.be/stops/304312", "https://data.delijn.be/stops/304313"], ["https://data.delijn.be/stops/502418", "https://data.delijn.be/stops/502441"], ["https://data.delijn.be/stops/307311", "https://data.delijn.be/stops/307335"], ["https://data.delijn.be/stops/506032", "https://data.delijn.be/stops/506349"], ["https://data.delijn.be/stops/400079", "https://data.delijn.be/stops/409157"], ["https://data.delijn.be/stops/504467", "https://data.delijn.be/stops/509464"], ["https://data.delijn.be/stops/204191", "https://data.delijn.be/stops/205191"], ["https://data.delijn.be/stops/404432", "https://data.delijn.be/stops/404433"], ["https://data.delijn.be/stops/405660", "https://data.delijn.be/stops/303200"], ["https://data.delijn.be/stops/103992", "https://data.delijn.be/stops/105396"], ["https://data.delijn.be/stops/302135", "https://data.delijn.be/stops/305261"], ["https://data.delijn.be/stops/108259", "https://data.delijn.be/stops/108353"], ["https://data.delijn.be/stops/407839", "https://data.delijn.be/stops/408013"], ["https://data.delijn.be/stops/105578", "https://data.delijn.be/stops/105579"], ["https://data.delijn.be/stops/404875", "https://data.delijn.be/stops/404878"], ["https://data.delijn.be/stops/506226", "https://data.delijn.be/stops/506228"], ["https://data.delijn.be/stops/304747", "https://data.delijn.be/stops/305880"], ["https://data.delijn.be/stops/408601", "https://data.delijn.be/stops/408691"], ["https://data.delijn.be/stops/102836", "https://data.delijn.be/stops/102838"], ["https://data.delijn.be/stops/407687", "https://data.delijn.be/stops/407698"], ["https://data.delijn.be/stops/504694", "https://data.delijn.be/stops/509329"], ["https://data.delijn.be/stops/403302", "https://data.delijn.be/stops/403545"], ["https://data.delijn.be/stops/402584", "https://data.delijn.be/stops/402655"], ["https://data.delijn.be/stops/300099", "https://data.delijn.be/stops/300100"], ["https://data.delijn.be/stops/201748", "https://data.delijn.be/stops/203165"], ["https://data.delijn.be/stops/404947", "https://data.delijn.be/stops/405545"], ["https://data.delijn.be/stops/501393", "https://data.delijn.be/stops/506393"], ["https://data.delijn.be/stops/204227", "https://data.delijn.be/stops/204228"], ["https://data.delijn.be/stops/504200", "https://data.delijn.be/stops/509123"], ["https://data.delijn.be/stops/106002", "https://data.delijn.be/stops/106004"], ["https://data.delijn.be/stops/208742", "https://data.delijn.be/stops/508013"], ["https://data.delijn.be/stops/406364", "https://data.delijn.be/stops/406365"], ["https://data.delijn.be/stops/209955", "https://data.delijn.be/stops/209956"], ["https://data.delijn.be/stops/300100", "https://data.delijn.be/stops/307098"], ["https://data.delijn.be/stops/101785", "https://data.delijn.be/stops/103870"], ["https://data.delijn.be/stops/105881", "https://data.delijn.be/stops/105884"], ["https://data.delijn.be/stops/502239", "https://data.delijn.be/stops/502735"], ["https://data.delijn.be/stops/101869", "https://data.delijn.be/stops/105254"], ["https://data.delijn.be/stops/106357", "https://data.delijn.be/stops/109638"], ["https://data.delijn.be/stops/302147", "https://data.delijn.be/stops/307464"], ["https://data.delijn.be/stops/103643", "https://data.delijn.be/stops/105627"], ["https://data.delijn.be/stops/402542", "https://data.delijn.be/stops/402543"], ["https://data.delijn.be/stops/504225", "https://data.delijn.be/stops/504622"], ["https://data.delijn.be/stops/504648", "https://data.delijn.be/stops/509648"], ["https://data.delijn.be/stops/104548", "https://data.delijn.be/stops/104554"], ["https://data.delijn.be/stops/408020", "https://data.delijn.be/stops/408062"], ["https://data.delijn.be/stops/302862", "https://data.delijn.be/stops/303103"], ["https://data.delijn.be/stops/109719", "https://data.delijn.be/stops/400431"], ["https://data.delijn.be/stops/208542", "https://data.delijn.be/stops/209539"], ["https://data.delijn.be/stops/408270", "https://data.delijn.be/stops/408271"], ["https://data.delijn.be/stops/204128", "https://data.delijn.be/stops/205128"], ["https://data.delijn.be/stops/503238", "https://data.delijn.be/stops/509763"], ["https://data.delijn.be/stops/209216", "https://data.delijn.be/stops/209221"], ["https://data.delijn.be/stops/307351", "https://data.delijn.be/stops/307432"], ["https://data.delijn.be/stops/303764", "https://data.delijn.be/stops/303769"], ["https://data.delijn.be/stops/204053", "https://data.delijn.be/stops/205704"], ["https://data.delijn.be/stops/401670", "https://data.delijn.be/stops/308275"], ["https://data.delijn.be/stops/109262", "https://data.delijn.be/stops/109263"], ["https://data.delijn.be/stops/404435", "https://data.delijn.be/stops/404510"], ["https://data.delijn.be/stops/407321", "https://data.delijn.be/stops/409418"], ["https://data.delijn.be/stops/104105", "https://data.delijn.be/stops/105630"], ["https://data.delijn.be/stops/405877", "https://data.delijn.be/stops/409413"], ["https://data.delijn.be/stops/405718", "https://data.delijn.be/stops/410139"], ["https://data.delijn.be/stops/105978", "https://data.delijn.be/stops/105983"], ["https://data.delijn.be/stops/106941", "https://data.delijn.be/stops/106943"], ["https://data.delijn.be/stops/505379", "https://data.delijn.be/stops/508094"], ["https://data.delijn.be/stops/204060", "https://data.delijn.be/stops/205060"], ["https://data.delijn.be/stops/305155", "https://data.delijn.be/stops/305179"], ["https://data.delijn.be/stops/405131", "https://data.delijn.be/stops/405190"], ["https://data.delijn.be/stops/206381", "https://data.delijn.be/stops/206383"], ["https://data.delijn.be/stops/209610", "https://data.delijn.be/stops/305237"], ["https://data.delijn.be/stops/209083", "https://data.delijn.be/stops/209701"], ["https://data.delijn.be/stops/400677", "https://data.delijn.be/stops/402534"], ["https://data.delijn.be/stops/300982", "https://data.delijn.be/stops/301003"], ["https://data.delijn.be/stops/200950", "https://data.delijn.be/stops/202228"], ["https://data.delijn.be/stops/306810", "https://data.delijn.be/stops/308945"], ["https://data.delijn.be/stops/502148", "https://data.delijn.be/stops/507141"], ["https://data.delijn.be/stops/301106", "https://data.delijn.be/stops/304535"], ["https://data.delijn.be/stops/300907", "https://data.delijn.be/stops/301108"], ["https://data.delijn.be/stops/402017", "https://data.delijn.be/stops/405583"], ["https://data.delijn.be/stops/406736", "https://data.delijn.be/stops/407297"], ["https://data.delijn.be/stops/407716", "https://data.delijn.be/stops/407717"], ["https://data.delijn.be/stops/107666", "https://data.delijn.be/stops/109105"], ["https://data.delijn.be/stops/300327", "https://data.delijn.be/stops/307035"], ["https://data.delijn.be/stops/502348", "https://data.delijn.be/stops/507348"], ["https://data.delijn.be/stops/109696", "https://data.delijn.be/stops/305823"], ["https://data.delijn.be/stops/503561", "https://data.delijn.be/stops/503577"], ["https://data.delijn.be/stops/300945", "https://data.delijn.be/stops/303670"], ["https://data.delijn.be/stops/400676", "https://data.delijn.be/stops/402621"], ["https://data.delijn.be/stops/501005", "https://data.delijn.be/stops/501497"], ["https://data.delijn.be/stops/407894", "https://data.delijn.be/stops/407895"], ["https://data.delijn.be/stops/304631", "https://data.delijn.be/stops/304632"], ["https://data.delijn.be/stops/503826", "https://data.delijn.be/stops/508826"], ["https://data.delijn.be/stops/306697", "https://data.delijn.be/stops/306700"], ["https://data.delijn.be/stops/109146", "https://data.delijn.be/stops/109147"], ["https://data.delijn.be/stops/408801", "https://data.delijn.be/stops/408829"], ["https://data.delijn.be/stops/206697", "https://data.delijn.be/stops/207334"], ["https://data.delijn.be/stops/201671", "https://data.delijn.be/stops/202323"], ["https://data.delijn.be/stops/506773", "https://data.delijn.be/stops/506774"], ["https://data.delijn.be/stops/501214", "https://data.delijn.be/stops/506214"], ["https://data.delijn.be/stops/102298", "https://data.delijn.be/stops/106586"], ["https://data.delijn.be/stops/307533", "https://data.delijn.be/stops/307534"], ["https://data.delijn.be/stops/106012", "https://data.delijn.be/stops/106013"], ["https://data.delijn.be/stops/107094", "https://data.delijn.be/stops/107096"], ["https://data.delijn.be/stops/106927", "https://data.delijn.be/stops/109532"], ["https://data.delijn.be/stops/401012", "https://data.delijn.be/stops/401015"], ["https://data.delijn.be/stops/306820", "https://data.delijn.be/stops/306823"], ["https://data.delijn.be/stops/400482", "https://data.delijn.be/stops/407210"], ["https://data.delijn.be/stops/402297", "https://data.delijn.be/stops/403003"], ["https://data.delijn.be/stops/101192", "https://data.delijn.be/stops/204542"], ["https://data.delijn.be/stops/105310", "https://data.delijn.be/stops/105980"], ["https://data.delijn.be/stops/108392", "https://data.delijn.be/stops/108393"], ["https://data.delijn.be/stops/507203", "https://data.delijn.be/stops/508705"], ["https://data.delijn.be/stops/408856", "https://data.delijn.be/stops/408857"], ["https://data.delijn.be/stops/405186", "https://data.delijn.be/stops/405195"], ["https://data.delijn.be/stops/200086", "https://data.delijn.be/stops/202955"], ["https://data.delijn.be/stops/302587", "https://data.delijn.be/stops/308298"], ["https://data.delijn.be/stops/502312", "https://data.delijn.be/stops/507305"], ["https://data.delijn.be/stops/109712", "https://data.delijn.be/stops/109713"], ["https://data.delijn.be/stops/200943", "https://data.delijn.be/stops/203697"], ["https://data.delijn.be/stops/104334", "https://data.delijn.be/stops/105857"], ["https://data.delijn.be/stops/302511", "https://data.delijn.be/stops/305804"], ["https://data.delijn.be/stops/505274", "https://data.delijn.be/stops/508225"], ["https://data.delijn.be/stops/301014", "https://data.delijn.be/stops/301017"], ["https://data.delijn.be/stops/300690", "https://data.delijn.be/stops/302530"], ["https://data.delijn.be/stops/106661", "https://data.delijn.be/stops/106662"], ["https://data.delijn.be/stops/101557", "https://data.delijn.be/stops/102405"], ["https://data.delijn.be/stops/101191", "https://data.delijn.be/stops/101192"], ["https://data.delijn.be/stops/400456", "https://data.delijn.be/stops/400457"], ["https://data.delijn.be/stops/301287", "https://data.delijn.be/stops/306122"], ["https://data.delijn.be/stops/108947", "https://data.delijn.be/stops/109222"], ["https://data.delijn.be/stops/201463", "https://data.delijn.be/stops/205997"], ["https://data.delijn.be/stops/503885", "https://data.delijn.be/stops/508787"], ["https://data.delijn.be/stops/206629", "https://data.delijn.be/stops/206792"], ["https://data.delijn.be/stops/304525", "https://data.delijn.be/stops/304532"], ["https://data.delijn.be/stops/206383", "https://data.delijn.be/stops/206807"], ["https://data.delijn.be/stops/303359", "https://data.delijn.be/stops/303395"], ["https://data.delijn.be/stops/300827", "https://data.delijn.be/stops/304127"], ["https://data.delijn.be/stops/501697", "https://data.delijn.be/stops/507170"], ["https://data.delijn.be/stops/501201", "https://data.delijn.be/stops/506202"], ["https://data.delijn.be/stops/301032", "https://data.delijn.be/stops/307142"], ["https://data.delijn.be/stops/206375", "https://data.delijn.be/stops/206376"], ["https://data.delijn.be/stops/104244", "https://data.delijn.be/stops/104247"], ["https://data.delijn.be/stops/406920", "https://data.delijn.be/stops/409454"], ["https://data.delijn.be/stops/208202", "https://data.delijn.be/stops/208768"], ["https://data.delijn.be/stops/203185", "https://data.delijn.be/stops/204234"], ["https://data.delijn.be/stops/407668", "https://data.delijn.be/stops/410193"], ["https://data.delijn.be/stops/505839", "https://data.delijn.be/stops/507730"], ["https://data.delijn.be/stops/202597", "https://data.delijn.be/stops/203597"], ["https://data.delijn.be/stops/200116", "https://data.delijn.be/stops/201116"], ["https://data.delijn.be/stops/501113", "https://data.delijn.be/stops/506463"], ["https://data.delijn.be/stops/503471", "https://data.delijn.be/stops/508471"], ["https://data.delijn.be/stops/306556", "https://data.delijn.be/stops/306558"], ["https://data.delijn.be/stops/106631", "https://data.delijn.be/stops/106634"], ["https://data.delijn.be/stops/103617", "https://data.delijn.be/stops/106194"], ["https://data.delijn.be/stops/407352", "https://data.delijn.be/stops/410254"], ["https://data.delijn.be/stops/202362", "https://data.delijn.be/stops/203990"], ["https://data.delijn.be/stops/408234", "https://data.delijn.be/stops/408235"], ["https://data.delijn.be/stops/304056", "https://data.delijn.be/stops/304058"], ["https://data.delijn.be/stops/102551", "https://data.delijn.be/stops/109662"], ["https://data.delijn.be/stops/505010", "https://data.delijn.be/stops/507337"], ["https://data.delijn.be/stops/101878", "https://data.delijn.be/stops/105699"], ["https://data.delijn.be/stops/300897", "https://data.delijn.be/stops/306283"], ["https://data.delijn.be/stops/202670", "https://data.delijn.be/stops/211034"], ["https://data.delijn.be/stops/400320", "https://data.delijn.be/stops/400324"], ["https://data.delijn.be/stops/300667", "https://data.delijn.be/stops/300668"], ["https://data.delijn.be/stops/200711", "https://data.delijn.be/stops/202603"], ["https://data.delijn.be/stops/502811", "https://data.delijn.be/stops/507510"], ["https://data.delijn.be/stops/308407", "https://data.delijn.be/stops/308409"], ["https://data.delijn.be/stops/102238", "https://data.delijn.be/stops/109744"], ["https://data.delijn.be/stops/504578", "https://data.delijn.be/stops/505300"], ["https://data.delijn.be/stops/104711", "https://data.delijn.be/stops/107347"], ["https://data.delijn.be/stops/303307", "https://data.delijn.be/stops/303333"], ["https://data.delijn.be/stops/204236", "https://data.delijn.be/stops/205793"], ["https://data.delijn.be/stops/405035", "https://data.delijn.be/stops/408259"], ["https://data.delijn.be/stops/204682", "https://data.delijn.be/stops/205682"], ["https://data.delijn.be/stops/201897", "https://data.delijn.be/stops/203148"], ["https://data.delijn.be/stops/404236", "https://data.delijn.be/stops/404243"], ["https://data.delijn.be/stops/300875", "https://data.delijn.be/stops/308853"], ["https://data.delijn.be/stops/202938", "https://data.delijn.be/stops/203938"], ["https://data.delijn.be/stops/204775", "https://data.delijn.be/stops/204776"], ["https://data.delijn.be/stops/303242", "https://data.delijn.be/stops/307983"], ["https://data.delijn.be/stops/503190", "https://data.delijn.be/stops/508983"], ["https://data.delijn.be/stops/303543", "https://data.delijn.be/stops/303562"], ["https://data.delijn.be/stops/400077", "https://data.delijn.be/stops/407031"], ["https://data.delijn.be/stops/504695", "https://data.delijn.be/stops/505214"], ["https://data.delijn.be/stops/503920", "https://data.delijn.be/stops/509041"], ["https://data.delijn.be/stops/201052", "https://data.delijn.be/stops/211119"], ["https://data.delijn.be/stops/401212", "https://data.delijn.be/stops/406680"], ["https://data.delijn.be/stops/206866", "https://data.delijn.be/stops/208749"], ["https://data.delijn.be/stops/102728", "https://data.delijn.be/stops/106587"], ["https://data.delijn.be/stops/209195", "https://data.delijn.be/stops/209410"], ["https://data.delijn.be/stops/300114", "https://data.delijn.be/stops/307354"], ["https://data.delijn.be/stops/406072", "https://data.delijn.be/stops/406075"], ["https://data.delijn.be/stops/402098", "https://data.delijn.be/stops/402472"], ["https://data.delijn.be/stops/405716", "https://data.delijn.be/stops/410139"], ["https://data.delijn.be/stops/103019", "https://data.delijn.be/stops/109889"], ["https://data.delijn.be/stops/403023", "https://data.delijn.be/stops/403484"], ["https://data.delijn.be/stops/200645", "https://data.delijn.be/stops/201605"], ["https://data.delijn.be/stops/105332", "https://data.delijn.be/stops/105334"], ["https://data.delijn.be/stops/405903", "https://data.delijn.be/stops/405967"], ["https://data.delijn.be/stops/203462", "https://data.delijn.be/stops/203463"], ["https://data.delijn.be/stops/102580", "https://data.delijn.be/stops/109112"], ["https://data.delijn.be/stops/303983", "https://data.delijn.be/stops/304295"], ["https://data.delijn.be/stops/306369", "https://data.delijn.be/stops/307065"], ["https://data.delijn.be/stops/202144", "https://data.delijn.be/stops/203615"], ["https://data.delijn.be/stops/104611", "https://data.delijn.be/stops/104817"], ["https://data.delijn.be/stops/501603", "https://data.delijn.be/stops/506401"], ["https://data.delijn.be/stops/109000", "https://data.delijn.be/stops/405030"], ["https://data.delijn.be/stops/504158", "https://data.delijn.be/stops/504195"], ["https://data.delijn.be/stops/401188", "https://data.delijn.be/stops/401189"], ["https://data.delijn.be/stops/106918", "https://data.delijn.be/stops/106948"], ["https://data.delijn.be/stops/406055", "https://data.delijn.be/stops/406057"], ["https://data.delijn.be/stops/502415", "https://data.delijn.be/stops/502749"], ["https://data.delijn.be/stops/108452", "https://data.delijn.be/stops/108454"], ["https://data.delijn.be/stops/206089", "https://data.delijn.be/stops/206091"], ["https://data.delijn.be/stops/501163", "https://data.delijn.be/stops/509837"], ["https://data.delijn.be/stops/202726", "https://data.delijn.be/stops/203673"], ["https://data.delijn.be/stops/400474", "https://data.delijn.be/stops/404663"], ["https://data.delijn.be/stops/203481", "https://data.delijn.be/stops/211003"], ["https://data.delijn.be/stops/205028", "https://data.delijn.be/stops/205035"], ["https://data.delijn.be/stops/404895", "https://data.delijn.be/stops/404944"], ["https://data.delijn.be/stops/105388", "https://data.delijn.be/stops/105391"], ["https://data.delijn.be/stops/408513", "https://data.delijn.be/stops/408706"], ["https://data.delijn.be/stops/504975", "https://data.delijn.be/stops/509957"], ["https://data.delijn.be/stops/405184", "https://data.delijn.be/stops/405250"], ["https://data.delijn.be/stops/101705", "https://data.delijn.be/stops/104033"], ["https://data.delijn.be/stops/209053", "https://data.delijn.be/stops/209657"], ["https://data.delijn.be/stops/206459", "https://data.delijn.be/stops/207462"], ["https://data.delijn.be/stops/408921", "https://data.delijn.be/stops/408924"], ["https://data.delijn.be/stops/302278", "https://data.delijn.be/stops/307133"], ["https://data.delijn.be/stops/301581", "https://data.delijn.be/stops/301586"], ["https://data.delijn.be/stops/304609", "https://data.delijn.be/stops/304682"], ["https://data.delijn.be/stops/208117", "https://data.delijn.be/stops/208118"], ["https://data.delijn.be/stops/105367", "https://data.delijn.be/stops/105388"], ["https://data.delijn.be/stops/406738", "https://data.delijn.be/stops/407481"], ["https://data.delijn.be/stops/504214", "https://data.delijn.be/stops/509064"], ["https://data.delijn.be/stops/302624", "https://data.delijn.be/stops/308074"], ["https://data.delijn.be/stops/401416", "https://data.delijn.be/stops/307498"], ["https://data.delijn.be/stops/106820", "https://data.delijn.be/stops/106839"], ["https://data.delijn.be/stops/504619", "https://data.delijn.be/stops/509618"], ["https://data.delijn.be/stops/408533", "https://data.delijn.be/stops/408766"], ["https://data.delijn.be/stops/303126", "https://data.delijn.be/stops/303129"], ["https://data.delijn.be/stops/103712", "https://data.delijn.be/stops/103945"], ["https://data.delijn.be/stops/506227", "https://data.delijn.be/stops/506403"], ["https://data.delijn.be/stops/214011", "https://data.delijn.be/stops/215011"], ["https://data.delijn.be/stops/300163", "https://data.delijn.be/stops/300164"], ["https://data.delijn.be/stops/402807", "https://data.delijn.be/stops/406880"], ["https://data.delijn.be/stops/402256", "https://data.delijn.be/stops/402382"], ["https://data.delijn.be/stops/303165", "https://data.delijn.be/stops/303167"], ["https://data.delijn.be/stops/301855", "https://data.delijn.be/stops/301886"], ["https://data.delijn.be/stops/406361", "https://data.delijn.be/stops/406362"], ["https://data.delijn.be/stops/409147", "https://data.delijn.be/stops/409149"], ["https://data.delijn.be/stops/405301", "https://data.delijn.be/stops/405496"], ["https://data.delijn.be/stops/206190", "https://data.delijn.be/stops/207692"], ["https://data.delijn.be/stops/503962", "https://data.delijn.be/stops/508040"], ["https://data.delijn.be/stops/103229", "https://data.delijn.be/stops/109402"], ["https://data.delijn.be/stops/402807", "https://data.delijn.be/stops/409038"], ["https://data.delijn.be/stops/101130", "https://data.delijn.be/stops/104161"], ["https://data.delijn.be/stops/405786", "https://data.delijn.be/stops/409748"], ["https://data.delijn.be/stops/502796", "https://data.delijn.be/stops/503338"], ["https://data.delijn.be/stops/301574", "https://data.delijn.be/stops/301576"], ["https://data.delijn.be/stops/209640", "https://data.delijn.be/stops/210044"], ["https://data.delijn.be/stops/502557", "https://data.delijn.be/stops/505050"], ["https://data.delijn.be/stops/206520", "https://data.delijn.be/stops/206876"], ["https://data.delijn.be/stops/304450", "https://data.delijn.be/stops/307714"], ["https://data.delijn.be/stops/402718", "https://data.delijn.be/stops/402722"], ["https://data.delijn.be/stops/408960", "https://data.delijn.be/stops/408978"], ["https://data.delijn.be/stops/202184", "https://data.delijn.be/stops/204598"], ["https://data.delijn.be/stops/101299", "https://data.delijn.be/stops/101302"], ["https://data.delijn.be/stops/208493", "https://data.delijn.be/stops/208494"], ["https://data.delijn.be/stops/405004", "https://data.delijn.be/stops/405087"], ["https://data.delijn.be/stops/207501", "https://data.delijn.be/stops/207503"], ["https://data.delijn.be/stops/500029", "https://data.delijn.be/stops/508881"], ["https://data.delijn.be/stops/101331", "https://data.delijn.be/stops/106635"], ["https://data.delijn.be/stops/200922", "https://data.delijn.be/stops/203716"], ["https://data.delijn.be/stops/101746", "https://data.delijn.be/stops/106392"], ["https://data.delijn.be/stops/502001", "https://data.delijn.be/stops/505771"], ["https://data.delijn.be/stops/101830", "https://data.delijn.be/stops/103975"], ["https://data.delijn.be/stops/202082", "https://data.delijn.be/stops/203082"], ["https://data.delijn.be/stops/206565", "https://data.delijn.be/stops/206997"], ["https://data.delijn.be/stops/304363", "https://data.delijn.be/stops/307384"], ["https://data.delijn.be/stops/202415", "https://data.delijn.be/stops/204942"], ["https://data.delijn.be/stops/502275", "https://data.delijn.be/stops/507276"], ["https://data.delijn.be/stops/204514", "https://data.delijn.be/stops/205513"], ["https://data.delijn.be/stops/405322", "https://data.delijn.be/stops/302846"], ["https://data.delijn.be/stops/102578", "https://data.delijn.be/stops/104093"], ["https://data.delijn.be/stops/105829", "https://data.delijn.be/stops/106830"], ["https://data.delijn.be/stops/400877", "https://data.delijn.be/stops/407532"], ["https://data.delijn.be/stops/204572", "https://data.delijn.be/stops/303395"], ["https://data.delijn.be/stops/104578", "https://data.delijn.be/stops/107898"], ["https://data.delijn.be/stops/502573", "https://data.delijn.be/stops/502582"], ["https://data.delijn.be/stops/301168", "https://data.delijn.be/stops/307683"], ["https://data.delijn.be/stops/407223", "https://data.delijn.be/stops/407406"], ["https://data.delijn.be/stops/400312", "https://data.delijn.be/stops/400419"], ["https://data.delijn.be/stops/405873", "https://data.delijn.be/stops/409762"], ["https://data.delijn.be/stops/408515", "https://data.delijn.be/stops/408813"], ["https://data.delijn.be/stops/302207", "https://data.delijn.be/stops/308102"], ["https://data.delijn.be/stops/101188", "https://data.delijn.be/stops/107858"], ["https://data.delijn.be/stops/209048", "https://data.delijn.be/stops/209049"], ["https://data.delijn.be/stops/503219", "https://data.delijn.be/stops/508926"], ["https://data.delijn.be/stops/406005", "https://data.delijn.be/stops/406815"], ["https://data.delijn.be/stops/200718", "https://data.delijn.be/stops/200738"], ["https://data.delijn.be/stops/101176", "https://data.delijn.be/stops/104431"], ["https://data.delijn.be/stops/505958", "https://data.delijn.be/stops/508283"], ["https://data.delijn.be/stops/503615", "https://data.delijn.be/stops/508614"], ["https://data.delijn.be/stops/400916", "https://data.delijn.be/stops/400971"], ["https://data.delijn.be/stops/208970", "https://data.delijn.be/stops/209970"], ["https://data.delijn.be/stops/103322", "https://data.delijn.be/stops/105720"], ["https://data.delijn.be/stops/404157", "https://data.delijn.be/stops/404181"], ["https://data.delijn.be/stops/301318", "https://data.delijn.be/stops/301322"], ["https://data.delijn.be/stops/405386", "https://data.delijn.be/stops/405392"], ["https://data.delijn.be/stops/402161", "https://data.delijn.be/stops/402378"], ["https://data.delijn.be/stops/502366", "https://data.delijn.be/stops/505054"], ["https://data.delijn.be/stops/207545", "https://data.delijn.be/stops/207546"], ["https://data.delijn.be/stops/505260", "https://data.delijn.be/stops/505968"], ["https://data.delijn.be/stops/504408", "https://data.delijn.be/stops/504825"], ["https://data.delijn.be/stops/106094", "https://data.delijn.be/stops/109184"], ["https://data.delijn.be/stops/101952", "https://data.delijn.be/stops/108794"], ["https://data.delijn.be/stops/206371", "https://data.delijn.be/stops/207728"], ["https://data.delijn.be/stops/504052", "https://data.delijn.be/stops/505994"], ["https://data.delijn.be/stops/501291", "https://data.delijn.be/stops/506291"], ["https://data.delijn.be/stops/407227", "https://data.delijn.be/stops/407229"], ["https://data.delijn.be/stops/302319", "https://data.delijn.be/stops/302320"], ["https://data.delijn.be/stops/108157", "https://data.delijn.be/stops/108162"], ["https://data.delijn.be/stops/503316", "https://data.delijn.be/stops/503962"], ["https://data.delijn.be/stops/105075", "https://data.delijn.be/stops/105089"], ["https://data.delijn.be/stops/303863", "https://data.delijn.be/stops/303867"], ["https://data.delijn.be/stops/204737", "https://data.delijn.be/stops/205738"], ["https://data.delijn.be/stops/300612", "https://data.delijn.be/stops/300618"], ["https://data.delijn.be/stops/501064", "https://data.delijn.be/stops/506405"], ["https://data.delijn.be/stops/301272", "https://data.delijn.be/stops/307614"], ["https://data.delijn.be/stops/300211", "https://data.delijn.be/stops/300213"], ["https://data.delijn.be/stops/101482", "https://data.delijn.be/stops/109296"], ["https://data.delijn.be/stops/402128", "https://data.delijn.be/stops/403426"], ["https://data.delijn.be/stops/302511", "https://data.delijn.be/stops/302515"], ["https://data.delijn.be/stops/202697", "https://data.delijn.be/stops/203697"], ["https://data.delijn.be/stops/108027", "https://data.delijn.be/stops/108031"], ["https://data.delijn.be/stops/308780", "https://data.delijn.be/stops/308781"], ["https://data.delijn.be/stops/400720", "https://data.delijn.be/stops/409504"], ["https://data.delijn.be/stops/405868", "https://data.delijn.be/stops/405869"], ["https://data.delijn.be/stops/200683", "https://data.delijn.be/stops/200695"], ["https://data.delijn.be/stops/306921", "https://data.delijn.be/stops/306922"], ["https://data.delijn.be/stops/401931", "https://data.delijn.be/stops/401932"], ["https://data.delijn.be/stops/104994", "https://data.delijn.be/stops/109697"], ["https://data.delijn.be/stops/504460", "https://data.delijn.be/stops/509353"], ["https://data.delijn.be/stops/503174", "https://data.delijn.be/stops/508262"], ["https://data.delijn.be/stops/505296", "https://data.delijn.be/stops/505579"], ["https://data.delijn.be/stops/208685", "https://data.delijn.be/stops/208689"], ["https://data.delijn.be/stops/307153", "https://data.delijn.be/stops/307154"], ["https://data.delijn.be/stops/303797", "https://data.delijn.be/stops/303801"], ["https://data.delijn.be/stops/102462", "https://data.delijn.be/stops/102464"], ["https://data.delijn.be/stops/204300", "https://data.delijn.be/stops/205300"], ["https://data.delijn.be/stops/203875", "https://data.delijn.be/stops/207427"], ["https://data.delijn.be/stops/509161", "https://data.delijn.be/stops/509193"], ["https://data.delijn.be/stops/102383", "https://data.delijn.be/stops/106569"], ["https://data.delijn.be/stops/106100", "https://data.delijn.be/stops/108060"], ["https://data.delijn.be/stops/506179", "https://data.delijn.be/stops/509932"], ["https://data.delijn.be/stops/503335", "https://data.delijn.be/stops/508339"], ["https://data.delijn.be/stops/304630", "https://data.delijn.be/stops/304656"], ["https://data.delijn.be/stops/406275", "https://data.delijn.be/stops/406278"], ["https://data.delijn.be/stops/203114", "https://data.delijn.be/stops/204832"], ["https://data.delijn.be/stops/402235", "https://data.delijn.be/stops/407532"], ["https://data.delijn.be/stops/202491", "https://data.delijn.be/stops/202930"], ["https://data.delijn.be/stops/102492", "https://data.delijn.be/stops/400348"], ["https://data.delijn.be/stops/406595", "https://data.delijn.be/stops/406637"], ["https://data.delijn.be/stops/402458", "https://data.delijn.be/stops/402461"], ["https://data.delijn.be/stops/101703", "https://data.delijn.be/stops/103304"], ["https://data.delijn.be/stops/405531", "https://data.delijn.be/stops/407871"], ["https://data.delijn.be/stops/300300", "https://data.delijn.be/stops/300301"], ["https://data.delijn.be/stops/402793", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/206196", "https://data.delijn.be/stops/207196"], ["https://data.delijn.be/stops/106224", "https://data.delijn.be/stops/106225"], ["https://data.delijn.be/stops/208433", "https://data.delijn.be/stops/209433"], ["https://data.delijn.be/stops/106204", "https://data.delijn.be/stops/109908"], ["https://data.delijn.be/stops/509475", "https://data.delijn.be/stops/509477"], ["https://data.delijn.be/stops/507513", "https://data.delijn.be/stops/509725"], ["https://data.delijn.be/stops/502207", "https://data.delijn.be/stops/507216"], ["https://data.delijn.be/stops/401043", "https://data.delijn.be/stops/401150"], ["https://data.delijn.be/stops/102646", "https://data.delijn.be/stops/102656"], ["https://data.delijn.be/stops/101790", "https://data.delijn.be/stops/102230"], ["https://data.delijn.be/stops/406707", "https://data.delijn.be/stops/407913"], ["https://data.delijn.be/stops/210084", "https://data.delijn.be/stops/210105"], ["https://data.delijn.be/stops/208101", "https://data.delijn.be/stops/218005"], ["https://data.delijn.be/stops/109071", "https://data.delijn.be/stops/300150"], ["https://data.delijn.be/stops/500128", "https://data.delijn.be/stops/505180"], ["https://data.delijn.be/stops/202781", "https://data.delijn.be/stops/203780"], ["https://data.delijn.be/stops/206107", "https://data.delijn.be/stops/207018"], ["https://data.delijn.be/stops/405343", "https://data.delijn.be/stops/405347"], ["https://data.delijn.be/stops/306186", "https://data.delijn.be/stops/306187"], ["https://data.delijn.be/stops/207419", "https://data.delijn.be/stops/306732"], ["https://data.delijn.be/stops/403270", "https://data.delijn.be/stops/408959"], ["https://data.delijn.be/stops/301888", "https://data.delijn.be/stops/305974"], ["https://data.delijn.be/stops/106652", "https://data.delijn.be/stops/106654"], ["https://data.delijn.be/stops/300485", "https://data.delijn.be/stops/300496"], ["https://data.delijn.be/stops/207541", "https://data.delijn.be/stops/207570"], ["https://data.delijn.be/stops/102398", "https://data.delijn.be/stops/106217"], ["https://data.delijn.be/stops/101250", "https://data.delijn.be/stops/109709"], ["https://data.delijn.be/stops/201764", "https://data.delijn.be/stops/201766"], ["https://data.delijn.be/stops/407624", "https://data.delijn.be/stops/409810"], ["https://data.delijn.be/stops/107649", "https://data.delijn.be/stops/107700"], ["https://data.delijn.be/stops/200735", "https://data.delijn.be/stops/210023"], ["https://data.delijn.be/stops/502657", "https://data.delijn.be/stops/505009"], ["https://data.delijn.be/stops/504852", "https://data.delijn.be/stops/508067"], ["https://data.delijn.be/stops/102183", "https://data.delijn.be/stops/103233"], ["https://data.delijn.be/stops/501395", "https://data.delijn.be/stops/506512"], ["https://data.delijn.be/stops/204681", "https://data.delijn.be/stops/204682"], ["https://data.delijn.be/stops/301860", "https://data.delijn.be/stops/301861"], ["https://data.delijn.be/stops/507116", "https://data.delijn.be/stops/507143"], ["https://data.delijn.be/stops/304187", "https://data.delijn.be/stops/305276"], ["https://data.delijn.be/stops/402881", "https://data.delijn.be/stops/306021"], ["https://data.delijn.be/stops/403260", "https://data.delijn.be/stops/403411"], ["https://data.delijn.be/stops/410152", "https://data.delijn.be/stops/300920"], ["https://data.delijn.be/stops/200582", "https://data.delijn.be/stops/201733"], ["https://data.delijn.be/stops/408892", "https://data.delijn.be/stops/408893"], ["https://data.delijn.be/stops/104016", "https://data.delijn.be/stops/106905"], ["https://data.delijn.be/stops/503994", "https://data.delijn.be/stops/508077"], ["https://data.delijn.be/stops/206185", "https://data.delijn.be/stops/207185"], ["https://data.delijn.be/stops/301216", "https://data.delijn.be/stops/304924"], ["https://data.delijn.be/stops/107844", "https://data.delijn.be/stops/107846"], ["https://data.delijn.be/stops/208030", "https://data.delijn.be/stops/217001"], ["https://data.delijn.be/stops/200727", "https://data.delijn.be/stops/202413"], ["https://data.delijn.be/stops/304230", "https://data.delijn.be/stops/304233"], ["https://data.delijn.be/stops/508494", "https://data.delijn.be/stops/509003"], ["https://data.delijn.be/stops/506196", "https://data.delijn.be/stops/506394"], ["https://data.delijn.be/stops/102687", "https://data.delijn.be/stops/105655"], ["https://data.delijn.be/stops/300392", "https://data.delijn.be/stops/306387"], ["https://data.delijn.be/stops/102951", "https://data.delijn.be/stops/104002"], ["https://data.delijn.be/stops/507931", "https://data.delijn.be/stops/508739"], ["https://data.delijn.be/stops/504202", "https://data.delijn.be/stops/504261"], ["https://data.delijn.be/stops/102741", "https://data.delijn.be/stops/102743"], ["https://data.delijn.be/stops/502603", "https://data.delijn.be/stops/507310"], ["https://data.delijn.be/stops/105217", "https://data.delijn.be/stops/106233"], ["https://data.delijn.be/stops/407792", "https://data.delijn.be/stops/307378"], ["https://data.delijn.be/stops/102089", "https://data.delijn.be/stops/102091"], ["https://data.delijn.be/stops/102169", "https://data.delijn.be/stops/108911"], ["https://data.delijn.be/stops/300739", "https://data.delijn.be/stops/300756"], ["https://data.delijn.be/stops/501383", "https://data.delijn.be/stops/506383"], ["https://data.delijn.be/stops/406006", "https://data.delijn.be/stops/406116"], ["https://data.delijn.be/stops/202730", "https://data.delijn.be/stops/203730"], ["https://data.delijn.be/stops/308567", "https://data.delijn.be/stops/308573"], ["https://data.delijn.be/stops/105171", "https://data.delijn.be/stops/107707"], ["https://data.delijn.be/stops/402358", "https://data.delijn.be/stops/402469"], ["https://data.delijn.be/stops/303708", "https://data.delijn.be/stops/303729"], ["https://data.delijn.be/stops/401502", "https://data.delijn.be/stops/401723"], ["https://data.delijn.be/stops/503415", "https://data.delijn.be/stops/508415"], ["https://data.delijn.be/stops/300445", "https://data.delijn.be/stops/301264"], ["https://data.delijn.be/stops/105063", "https://data.delijn.be/stops/107424"], ["https://data.delijn.be/stops/306932", "https://data.delijn.be/stops/308724"], ["https://data.delijn.be/stops/105563", "https://data.delijn.be/stops/105573"], ["https://data.delijn.be/stops/501508", "https://data.delijn.be/stops/501737"], ["https://data.delijn.be/stops/104651", "https://data.delijn.be/stops/108044"], ["https://data.delijn.be/stops/101926", "https://data.delijn.be/stops/107072"], ["https://data.delijn.be/stops/205641", "https://data.delijn.be/stops/205642"], ["https://data.delijn.be/stops/404669", "https://data.delijn.be/stops/404674"], ["https://data.delijn.be/stops/410274", "https://data.delijn.be/stops/410277"], ["https://data.delijn.be/stops/301536", "https://data.delijn.be/stops/301537"], ["https://data.delijn.be/stops/106346", "https://data.delijn.be/stops/106347"], ["https://data.delijn.be/stops/200674", "https://data.delijn.be/stops/201466"], ["https://data.delijn.be/stops/302349", "https://data.delijn.be/stops/302367"], ["https://data.delijn.be/stops/407375", "https://data.delijn.be/stops/407392"], ["https://data.delijn.be/stops/201088", "https://data.delijn.be/stops/201920"], ["https://data.delijn.be/stops/102136", "https://data.delijn.be/stops/103478"], ["https://data.delijn.be/stops/403190", "https://data.delijn.be/stops/403194"], ["https://data.delijn.be/stops/200256", "https://data.delijn.be/stops/202564"], ["https://data.delijn.be/stops/402751", "https://data.delijn.be/stops/402772"], ["https://data.delijn.be/stops/101267", "https://data.delijn.be/stops/105305"], ["https://data.delijn.be/stops/304699", "https://data.delijn.be/stops/304715"], ["https://data.delijn.be/stops/509601", "https://data.delijn.be/stops/509605"], ["https://data.delijn.be/stops/501332", "https://data.delijn.be/stops/501477"], ["https://data.delijn.be/stops/105811", "https://data.delijn.be/stops/105815"], ["https://data.delijn.be/stops/306949", "https://data.delijn.be/stops/306950"], ["https://data.delijn.be/stops/206572", "https://data.delijn.be/stops/207571"], ["https://data.delijn.be/stops/502468", "https://data.delijn.be/stops/509927"], ["https://data.delijn.be/stops/204647", "https://data.delijn.be/stops/204772"], ["https://data.delijn.be/stops/200479", "https://data.delijn.be/stops/211086"], ["https://data.delijn.be/stops/104401", "https://data.delijn.be/stops/107128"], ["https://data.delijn.be/stops/107488", "https://data.delijn.be/stops/305801"], ["https://data.delijn.be/stops/401548", "https://data.delijn.be/stops/401549"], ["https://data.delijn.be/stops/106430", "https://data.delijn.be/stops/106431"], ["https://data.delijn.be/stops/307398", "https://data.delijn.be/stops/307399"], ["https://data.delijn.be/stops/101141", "https://data.delijn.be/stops/101142"], ["https://data.delijn.be/stops/403334", "https://data.delijn.be/stops/403337"], ["https://data.delijn.be/stops/201343", "https://data.delijn.be/stops/211044"], ["https://data.delijn.be/stops/211013", "https://data.delijn.be/stops/507277"], ["https://data.delijn.be/stops/405156", "https://data.delijn.be/stops/407333"], ["https://data.delijn.be/stops/204176", "https://data.delijn.be/stops/205176"], ["https://data.delijn.be/stops/204024", "https://data.delijn.be/stops/204025"], ["https://data.delijn.be/stops/405848", "https://data.delijn.be/stops/405862"], ["https://data.delijn.be/stops/505166", "https://data.delijn.be/stops/505785"], ["https://data.delijn.be/stops/208767", "https://data.delijn.be/stops/508228"], ["https://data.delijn.be/stops/501399", "https://data.delijn.be/stops/501402"], ["https://data.delijn.be/stops/107716", "https://data.delijn.be/stops/107718"], ["https://data.delijn.be/stops/103398", "https://data.delijn.be/stops/107704"], ["https://data.delijn.be/stops/300564", "https://data.delijn.be/stops/300571"], ["https://data.delijn.be/stops/408858", "https://data.delijn.be/stops/408862"], ["https://data.delijn.be/stops/405732", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/208148", "https://data.delijn.be/stops/208193"], ["https://data.delijn.be/stops/105256", "https://data.delijn.be/stops/105293"], ["https://data.delijn.be/stops/501417", "https://data.delijn.be/stops/501681"], ["https://data.delijn.be/stops/200883", "https://data.delijn.be/stops/202054"], ["https://data.delijn.be/stops/504023", "https://data.delijn.be/stops/504123"], ["https://data.delijn.be/stops/304725", "https://data.delijn.be/stops/304728"], ["https://data.delijn.be/stops/207079", "https://data.delijn.be/stops/207521"], ["https://data.delijn.be/stops/105323", "https://data.delijn.be/stops/105326"], ["https://data.delijn.be/stops/504775", "https://data.delijn.be/stops/505791"], ["https://data.delijn.be/stops/500994", "https://data.delijn.be/stops/504050"], ["https://data.delijn.be/stops/307938", "https://data.delijn.be/stops/308779"], ["https://data.delijn.be/stops/302862", "https://data.delijn.be/stops/303678"], ["https://data.delijn.be/stops/407486", "https://data.delijn.be/stops/407488"], ["https://data.delijn.be/stops/206340", "https://data.delijn.be/stops/207340"], ["https://data.delijn.be/stops/408621", "https://data.delijn.be/stops/410150"], ["https://data.delijn.be/stops/304689", "https://data.delijn.be/stops/304791"], ["https://data.delijn.be/stops/504508", "https://data.delijn.be/stops/509507"], ["https://data.delijn.be/stops/107069", "https://data.delijn.be/stops/107072"], ["https://data.delijn.be/stops/500042", "https://data.delijn.be/stops/500044"], ["https://data.delijn.be/stops/300810", "https://data.delijn.be/stops/300811"], ["https://data.delijn.be/stops/108397", "https://data.delijn.be/stops/108398"], ["https://data.delijn.be/stops/302569", "https://data.delijn.be/stops/302572"], ["https://data.delijn.be/stops/506108", "https://data.delijn.be/stops/506112"], ["https://data.delijn.be/stops/103298", "https://data.delijn.be/stops/105096"], ["https://data.delijn.be/stops/405610", "https://data.delijn.be/stops/407179"], ["https://data.delijn.be/stops/306727", "https://data.delijn.be/stops/306728"], ["https://data.delijn.be/stops/105871", "https://data.delijn.be/stops/105872"], ["https://data.delijn.be/stops/201397", "https://data.delijn.be/stops/208333"], ["https://data.delijn.be/stops/502221", "https://data.delijn.be/stops/509796"], ["https://data.delijn.be/stops/208538", "https://data.delijn.be/stops/208752"], ["https://data.delijn.be/stops/504497", "https://data.delijn.be/stops/504504"], ["https://data.delijn.be/stops/502464", "https://data.delijn.be/stops/502660"], ["https://data.delijn.be/stops/407717", "https://data.delijn.be/stops/407728"], ["https://data.delijn.be/stops/206146", "https://data.delijn.be/stops/207146"], ["https://data.delijn.be/stops/204149", "https://data.delijn.be/stops/205149"], ["https://data.delijn.be/stops/203549", "https://data.delijn.be/stops/203550"], ["https://data.delijn.be/stops/202180", "https://data.delijn.be/stops/203181"], ["https://data.delijn.be/stops/200350", "https://data.delijn.be/stops/209950"], ["https://data.delijn.be/stops/209785", "https://data.delijn.be/stops/209786"], ["https://data.delijn.be/stops/306134", "https://data.delijn.be/stops/306135"], ["https://data.delijn.be/stops/101948", "https://data.delijn.be/stops/108751"], ["https://data.delijn.be/stops/402984", "https://data.delijn.be/stops/408936"], ["https://data.delijn.be/stops/101293", "https://data.delijn.be/stops/105367"], ["https://data.delijn.be/stops/508523", "https://data.delijn.be/stops/508743"], ["https://data.delijn.be/stops/200968", "https://data.delijn.be/stops/209242"], ["https://data.delijn.be/stops/103292", "https://data.delijn.be/stops/108799"], ["https://data.delijn.be/stops/206534", "https://data.delijn.be/stops/207487"], ["https://data.delijn.be/stops/509513", "https://data.delijn.be/stops/509750"], ["https://data.delijn.be/stops/108566", "https://data.delijn.be/stops/108568"], ["https://data.delijn.be/stops/304104", "https://data.delijn.be/stops/304791"], ["https://data.delijn.be/stops/404586", "https://data.delijn.be/stops/407294"], ["https://data.delijn.be/stops/400475", "https://data.delijn.be/stops/408694"], ["https://data.delijn.be/stops/404464", "https://data.delijn.be/stops/404528"], ["https://data.delijn.be/stops/509843", "https://data.delijn.be/stops/509844"], ["https://data.delijn.be/stops/202442", "https://data.delijn.be/stops/203442"], ["https://data.delijn.be/stops/205218", "https://data.delijn.be/stops/205905"], ["https://data.delijn.be/stops/200376", "https://data.delijn.be/stops/201375"], ["https://data.delijn.be/stops/102345", "https://data.delijn.be/stops/102980"], ["https://data.delijn.be/stops/501607", "https://data.delijn.be/stops/506608"], ["https://data.delijn.be/stops/102741", "https://data.delijn.be/stops/107402"], ["https://data.delijn.be/stops/104768", "https://data.delijn.be/stops/108143"], ["https://data.delijn.be/stops/101983", "https://data.delijn.be/stops/109644"], ["https://data.delijn.be/stops/103557", "https://data.delijn.be/stops/109402"], ["https://data.delijn.be/stops/504067", "https://data.delijn.be/stops/509065"], ["https://data.delijn.be/stops/303129", "https://data.delijn.be/stops/303132"], ["https://data.delijn.be/stops/105564", "https://data.delijn.be/stops/105566"], ["https://data.delijn.be/stops/104583", "https://data.delijn.be/stops/104584"], ["https://data.delijn.be/stops/107855", "https://data.delijn.be/stops/108775"], ["https://data.delijn.be/stops/204474", "https://data.delijn.be/stops/205474"], ["https://data.delijn.be/stops/303644", "https://data.delijn.be/stops/308829"], ["https://data.delijn.be/stops/207350", "https://data.delijn.be/stops/207375"], ["https://data.delijn.be/stops/304036", "https://data.delijn.be/stops/304852"], ["https://data.delijn.be/stops/200236", "https://data.delijn.be/stops/201236"], ["https://data.delijn.be/stops/102943", "https://data.delijn.be/stops/105658"], ["https://data.delijn.be/stops/404484", "https://data.delijn.be/stops/404546"], ["https://data.delijn.be/stops/200166", "https://data.delijn.be/stops/201749"], ["https://data.delijn.be/stops/502567", "https://data.delijn.be/stops/502637"], ["https://data.delijn.be/stops/106287", "https://data.delijn.be/stops/106352"], ["https://data.delijn.be/stops/305816", "https://data.delijn.be/stops/305817"], ["https://data.delijn.be/stops/105866", "https://data.delijn.be/stops/105867"], ["https://data.delijn.be/stops/104379", "https://data.delijn.be/stops/105415"], ["https://data.delijn.be/stops/101577", "https://data.delijn.be/stops/101578"], ["https://data.delijn.be/stops/208672", "https://data.delijn.be/stops/209439"], ["https://data.delijn.be/stops/203197", "https://data.delijn.be/stops/203198"], ["https://data.delijn.be/stops/401294", "https://data.delijn.be/stops/401368"], ["https://data.delijn.be/stops/308090", "https://data.delijn.be/stops/308093"], ["https://data.delijn.be/stops/400115", "https://data.delijn.be/stops/400922"], ["https://data.delijn.be/stops/406521", "https://data.delijn.be/stops/407363"], ["https://data.delijn.be/stops/405931", "https://data.delijn.be/stops/405978"], ["https://data.delijn.be/stops/301644", "https://data.delijn.be/stops/301666"], ["https://data.delijn.be/stops/507257", "https://data.delijn.be/stops/507570"], ["https://data.delijn.be/stops/104815", "https://data.delijn.be/stops/105560"], ["https://data.delijn.be/stops/504149", "https://data.delijn.be/stops/509156"], ["https://data.delijn.be/stops/504663", "https://data.delijn.be/stops/508655"], ["https://data.delijn.be/stops/403792", "https://data.delijn.be/stops/403793"], ["https://data.delijn.be/stops/203273", "https://data.delijn.be/stops/203668"], ["https://data.delijn.be/stops/206290", "https://data.delijn.be/stops/207290"], ["https://data.delijn.be/stops/406744", "https://data.delijn.be/stops/406746"], ["https://data.delijn.be/stops/209389", "https://data.delijn.be/stops/209390"], ["https://data.delijn.be/stops/505405", "https://data.delijn.be/stops/505905"], ["https://data.delijn.be/stops/106910", "https://data.delijn.be/stops/107253"], ["https://data.delijn.be/stops/406738", "https://data.delijn.be/stops/406739"], ["https://data.delijn.be/stops/208472", "https://data.delijn.be/stops/208473"], ["https://data.delijn.be/stops/108208", "https://data.delijn.be/stops/108209"], ["https://data.delijn.be/stops/109451", "https://data.delijn.be/stops/109454"], ["https://data.delijn.be/stops/204407", "https://data.delijn.be/stops/205406"], ["https://data.delijn.be/stops/400424", "https://data.delijn.be/stops/400958"], ["https://data.delijn.be/stops/405908", "https://data.delijn.be/stops/405930"], ["https://data.delijn.be/stops/502180", "https://data.delijn.be/stops/507180"], ["https://data.delijn.be/stops/404482", "https://data.delijn.be/stops/406743"], ["https://data.delijn.be/stops/306139", "https://data.delijn.be/stops/306140"], ["https://data.delijn.be/stops/200490", "https://data.delijn.be/stops/202453"], ["https://data.delijn.be/stops/206622", "https://data.delijn.be/stops/207621"], ["https://data.delijn.be/stops/300856", "https://data.delijn.be/stops/306050"], ["https://data.delijn.be/stops/302078", "https://data.delijn.be/stops/302085"], ["https://data.delijn.be/stops/106440", "https://data.delijn.be/stops/106442"], ["https://data.delijn.be/stops/500025", "https://data.delijn.be/stops/505074"], ["https://data.delijn.be/stops/205214", "https://data.delijn.be/stops/205365"], ["https://data.delijn.be/stops/200916", "https://data.delijn.be/stops/200925"], ["https://data.delijn.be/stops/400910", "https://data.delijn.be/stops/406876"], ["https://data.delijn.be/stops/503358", "https://data.delijn.be/stops/505133"], ["https://data.delijn.be/stops/501528", "https://data.delijn.be/stops/501530"], ["https://data.delijn.be/stops/503527", "https://data.delijn.be/stops/504767"], ["https://data.delijn.be/stops/202831", "https://data.delijn.be/stops/208656"], ["https://data.delijn.be/stops/200734", "https://data.delijn.be/stops/203123"], ["https://data.delijn.be/stops/201423", "https://data.delijn.be/stops/209720"], ["https://data.delijn.be/stops/107636", "https://data.delijn.be/stops/108841"], ["https://data.delijn.be/stops/204015", "https://data.delijn.be/stops/204363"], ["https://data.delijn.be/stops/401805", "https://data.delijn.be/stops/401864"], ["https://data.delijn.be/stops/203899", "https://data.delijn.be/stops/210125"], ["https://data.delijn.be/stops/307636", "https://data.delijn.be/stops/307639"], ["https://data.delijn.be/stops/302466", "https://data.delijn.be/stops/307037"], ["https://data.delijn.be/stops/307053", "https://data.delijn.be/stops/307054"], ["https://data.delijn.be/stops/407600", "https://data.delijn.be/stops/407605"], ["https://data.delijn.be/stops/205691", "https://data.delijn.be/stops/205701"], ["https://data.delijn.be/stops/207700", "https://data.delijn.be/stops/207955"], ["https://data.delijn.be/stops/200827", "https://data.delijn.be/stops/200832"], ["https://data.delijn.be/stops/509616", "https://data.delijn.be/stops/509620"], ["https://data.delijn.be/stops/304049", "https://data.delijn.be/stops/304103"], ["https://data.delijn.be/stops/408181", "https://data.delijn.be/stops/408182"], ["https://data.delijn.be/stops/304872", "https://data.delijn.be/stops/304873"], ["https://data.delijn.be/stops/208215", "https://data.delijn.be/stops/209785"], ["https://data.delijn.be/stops/402441", "https://data.delijn.be/stops/402443"], ["https://data.delijn.be/stops/301352", "https://data.delijn.be/stops/306132"], ["https://data.delijn.be/stops/109212", "https://data.delijn.be/stops/109213"], ["https://data.delijn.be/stops/107893", "https://data.delijn.be/stops/107907"], ["https://data.delijn.be/stops/204582", "https://data.delijn.be/stops/205770"], ["https://data.delijn.be/stops/502539", "https://data.delijn.be/stops/507539"], ["https://data.delijn.be/stops/409626", "https://data.delijn.be/stops/409628"], ["https://data.delijn.be/stops/407872", "https://data.delijn.be/stops/407873"], ["https://data.delijn.be/stops/208669", "https://data.delijn.be/stops/219021"], ["https://data.delijn.be/stops/300291", "https://data.delijn.be/stops/300303"], ["https://data.delijn.be/stops/507491", "https://data.delijn.be/stops/507503"], ["https://data.delijn.be/stops/505538", "https://data.delijn.be/stops/508803"], ["https://data.delijn.be/stops/405172", "https://data.delijn.be/stops/405217"], ["https://data.delijn.be/stops/405056", "https://data.delijn.be/stops/405059"], ["https://data.delijn.be/stops/102228", "https://data.delijn.be/stops/102736"], ["https://data.delijn.be/stops/102053", "https://data.delijn.be/stops/107460"], ["https://data.delijn.be/stops/306608", "https://data.delijn.be/stops/306621"], ["https://data.delijn.be/stops/408668", "https://data.delijn.be/stops/408671"], ["https://data.delijn.be/stops/401490", "https://data.delijn.be/stops/406888"], ["https://data.delijn.be/stops/202037", "https://data.delijn.be/stops/203038"], ["https://data.delijn.be/stops/503531", "https://data.delijn.be/stops/508869"], ["https://data.delijn.be/stops/302652", "https://data.delijn.be/stops/302656"], ["https://data.delijn.be/stops/304645", "https://data.delijn.be/stops/304647"], ["https://data.delijn.be/stops/409411", "https://data.delijn.be/stops/409759"], ["https://data.delijn.be/stops/208427", "https://data.delijn.be/stops/219002"], ["https://data.delijn.be/stops/301802", "https://data.delijn.be/stops/301818"], ["https://data.delijn.be/stops/504398", "https://data.delijn.be/stops/504442"], ["https://data.delijn.be/stops/307296", "https://data.delijn.be/stops/307327"], ["https://data.delijn.be/stops/401468", "https://data.delijn.be/stops/401887"], ["https://data.delijn.be/stops/402160", "https://data.delijn.be/stops/402161"], ["https://data.delijn.be/stops/208816", "https://data.delijn.be/stops/208817"], ["https://data.delijn.be/stops/208363", "https://data.delijn.be/stops/209362"], ["https://data.delijn.be/stops/509254", "https://data.delijn.be/stops/509715"], ["https://data.delijn.be/stops/507372", "https://data.delijn.be/stops/507376"], ["https://data.delijn.be/stops/103860", "https://data.delijn.be/stops/205610"], ["https://data.delijn.be/stops/503551", "https://data.delijn.be/stops/503577"], ["https://data.delijn.be/stops/105228", "https://data.delijn.be/stops/105231"], ["https://data.delijn.be/stops/403302", "https://data.delijn.be/stops/403303"], ["https://data.delijn.be/stops/204312", "https://data.delijn.be/stops/205354"], ["https://data.delijn.be/stops/300128", "https://data.delijn.be/stops/300144"], ["https://data.delijn.be/stops/200777", "https://data.delijn.be/stops/208326"], ["https://data.delijn.be/stops/502756", "https://data.delijn.be/stops/505650"], ["https://data.delijn.be/stops/404191", "https://data.delijn.be/stops/405984"], ["https://data.delijn.be/stops/301553", "https://data.delijn.be/stops/301558"], ["https://data.delijn.be/stops/301636", "https://data.delijn.be/stops/301639"], ["https://data.delijn.be/stops/404676", "https://data.delijn.be/stops/404677"], ["https://data.delijn.be/stops/303269", "https://data.delijn.be/stops/303277"], ["https://data.delijn.be/stops/107686", "https://data.delijn.be/stops/107687"], ["https://data.delijn.be/stops/307277", "https://data.delijn.be/stops/307278"], ["https://data.delijn.be/stops/109167", "https://data.delijn.be/stops/109168"], ["https://data.delijn.be/stops/105677", "https://data.delijn.be/stops/105711"], ["https://data.delijn.be/stops/308016", "https://data.delijn.be/stops/308020"], ["https://data.delijn.be/stops/505959", "https://data.delijn.be/stops/508664"], ["https://data.delijn.be/stops/504944", "https://data.delijn.be/stops/507202"], ["https://data.delijn.be/stops/409099", "https://data.delijn.be/stops/409107"], ["https://data.delijn.be/stops/103772", "https://data.delijn.be/stops/103773"], ["https://data.delijn.be/stops/206226", "https://data.delijn.be/stops/206228"], ["https://data.delijn.be/stops/200361", "https://data.delijn.be/stops/200362"], ["https://data.delijn.be/stops/503176", "https://data.delijn.be/stops/508176"], ["https://data.delijn.be/stops/304402", "https://data.delijn.be/stops/308056"], ["https://data.delijn.be/stops/301288", "https://data.delijn.be/stops/306122"], ["https://data.delijn.be/stops/104010", "https://data.delijn.be/stops/106892"], ["https://data.delijn.be/stops/405244", "https://data.delijn.be/stops/406325"], ["https://data.delijn.be/stops/504155", "https://data.delijn.be/stops/509155"], ["https://data.delijn.be/stops/502499", "https://data.delijn.be/stops/507499"], ["https://data.delijn.be/stops/503328", "https://data.delijn.be/stops/505286"], ["https://data.delijn.be/stops/200806", "https://data.delijn.be/stops/202214"], ["https://data.delijn.be/stops/108349", "https://data.delijn.be/stops/108352"], ["https://data.delijn.be/stops/103716", "https://data.delijn.be/stops/108693"], ["https://data.delijn.be/stops/102719", "https://data.delijn.be/stops/102722"], ["https://data.delijn.be/stops/203490", "https://data.delijn.be/stops/203507"], ["https://data.delijn.be/stops/200404", "https://data.delijn.be/stops/201725"], ["https://data.delijn.be/stops/501079", "https://data.delijn.be/stops/509368"], ["https://data.delijn.be/stops/206577", "https://data.delijn.be/stops/206836"], ["https://data.delijn.be/stops/105897", "https://data.delijn.be/stops/105901"], ["https://data.delijn.be/stops/102525", "https://data.delijn.be/stops/102528"], ["https://data.delijn.be/stops/409371", "https://data.delijn.be/stops/409379"], ["https://data.delijn.be/stops/301590", "https://data.delijn.be/stops/301592"], ["https://data.delijn.be/stops/206183", "https://data.delijn.be/stops/206957"], ["https://data.delijn.be/stops/300474", "https://data.delijn.be/stops/301572"], ["https://data.delijn.be/stops/202924", "https://data.delijn.be/stops/203923"], ["https://data.delijn.be/stops/103746", "https://data.delijn.be/stops/105795"], ["https://data.delijn.be/stops/400030", "https://data.delijn.be/stops/400034"], ["https://data.delijn.be/stops/204689", "https://data.delijn.be/stops/205690"], ["https://data.delijn.be/stops/405339", "https://data.delijn.be/stops/405342"], ["https://data.delijn.be/stops/208187", "https://data.delijn.be/stops/209188"], ["https://data.delijn.be/stops/408358", "https://data.delijn.be/stops/409825"], ["https://data.delijn.be/stops/405568", "https://data.delijn.be/stops/408486"], ["https://data.delijn.be/stops/300397", "https://data.delijn.be/stops/304568"], ["https://data.delijn.be/stops/502116", "https://data.delijn.be/stops/507725"], ["https://data.delijn.be/stops/304722", "https://data.delijn.be/stops/305269"], ["https://data.delijn.be/stops/206806", "https://data.delijn.be/stops/207806"], ["https://data.delijn.be/stops/103932", "https://data.delijn.be/stops/104904"], ["https://data.delijn.be/stops/406577", "https://data.delijn.be/stops/407184"], ["https://data.delijn.be/stops/501049", "https://data.delijn.be/stops/506049"], ["https://data.delijn.be/stops/506059", "https://data.delijn.be/stops/506061"], ["https://data.delijn.be/stops/300791", "https://data.delijn.be/stops/300792"], ["https://data.delijn.be/stops/302882", "https://data.delijn.be/stops/306275"], ["https://data.delijn.be/stops/410155", "https://data.delijn.be/stops/410156"], ["https://data.delijn.be/stops/106092", "https://data.delijn.be/stops/106094"], ["https://data.delijn.be/stops/501023", "https://data.delijn.be/stops/501632"], ["https://data.delijn.be/stops/303306", "https://data.delijn.be/stops/303312"], ["https://data.delijn.be/stops/409064", "https://data.delijn.be/stops/409100"], ["https://data.delijn.be/stops/507489", "https://data.delijn.be/stops/507509"], ["https://data.delijn.be/stops/504494", "https://data.delijn.be/stops/504502"], ["https://data.delijn.be/stops/207420", "https://data.delijn.be/stops/216014"], ["https://data.delijn.be/stops/107079", "https://data.delijn.be/stops/108173"], ["https://data.delijn.be/stops/408392", "https://data.delijn.be/stops/408393"], ["https://data.delijn.be/stops/301549", "https://data.delijn.be/stops/301563"], ["https://data.delijn.be/stops/303954", "https://data.delijn.be/stops/303958"], ["https://data.delijn.be/stops/408321", "https://data.delijn.be/stops/408324"], ["https://data.delijn.be/stops/204987", "https://data.delijn.be/stops/209259"], ["https://data.delijn.be/stops/204054", "https://data.delijn.be/stops/205055"], ["https://data.delijn.be/stops/404360", "https://data.delijn.be/stops/404361"], ["https://data.delijn.be/stops/401396", "https://data.delijn.be/stops/408418"], ["https://data.delijn.be/stops/303370", "https://data.delijn.be/stops/308892"], ["https://data.delijn.be/stops/403600", "https://data.delijn.be/stops/403617"], ["https://data.delijn.be/stops/300205", "https://data.delijn.be/stops/302114"], ["https://data.delijn.be/stops/400746", "https://data.delijn.be/stops/409598"], ["https://data.delijn.be/stops/209427", "https://data.delijn.be/stops/219002"], ["https://data.delijn.be/stops/300280", "https://data.delijn.be/stops/303819"], ["https://data.delijn.be/stops/504467", "https://data.delijn.be/stops/504571"], ["https://data.delijn.be/stops/105304", "https://data.delijn.be/stops/105308"], ["https://data.delijn.be/stops/206265", "https://data.delijn.be/stops/207602"], ["https://data.delijn.be/stops/202639", "https://data.delijn.be/stops/203185"], ["https://data.delijn.be/stops/104847", "https://data.delijn.be/stops/106864"], ["https://data.delijn.be/stops/206765", "https://data.delijn.be/stops/208617"], ["https://data.delijn.be/stops/107871", "https://data.delijn.be/stops/107879"], ["https://data.delijn.be/stops/503263", "https://data.delijn.be/stops/508263"], ["https://data.delijn.be/stops/304254", "https://data.delijn.be/stops/304299"], ["https://data.delijn.be/stops/101048", "https://data.delijn.be/stops/204606"], ["https://data.delijn.be/stops/102957", "https://data.delijn.be/stops/106775"], ["https://data.delijn.be/stops/300557", "https://data.delijn.be/stops/300566"], ["https://data.delijn.be/stops/404724", "https://data.delijn.be/stops/404834"], ["https://data.delijn.be/stops/503553", "https://data.delijn.be/stops/504277"], ["https://data.delijn.be/stops/406075", "https://data.delijn.be/stops/407168"], ["https://data.delijn.be/stops/502307", "https://data.delijn.be/stops/507309"], ["https://data.delijn.be/stops/300675", "https://data.delijn.be/stops/306745"], ["https://data.delijn.be/stops/503237", "https://data.delijn.be/stops/503397"], ["https://data.delijn.be/stops/502132", "https://data.delijn.be/stops/502579"], ["https://data.delijn.be/stops/200388", "https://data.delijn.be/stops/208240"], ["https://data.delijn.be/stops/506056", "https://data.delijn.be/stops/506491"], ["https://data.delijn.be/stops/302751", "https://data.delijn.be/stops/303220"], ["https://data.delijn.be/stops/101078", "https://data.delijn.be/stops/105973"], ["https://data.delijn.be/stops/201092", "https://data.delijn.be/stops/201093"], ["https://data.delijn.be/stops/505823", "https://data.delijn.be/stops/508320"], ["https://data.delijn.be/stops/204976", "https://data.delijn.be/stops/204977"], ["https://data.delijn.be/stops/205989", "https://data.delijn.be/stops/209548"], ["https://data.delijn.be/stops/108286", "https://data.delijn.be/stops/109364"], ["https://data.delijn.be/stops/208267", "https://data.delijn.be/stops/209268"], ["https://data.delijn.be/stops/202108", "https://data.delijn.be/stops/203185"], ["https://data.delijn.be/stops/208510", "https://data.delijn.be/stops/209158"], ["https://data.delijn.be/stops/302257", "https://data.delijn.be/stops/302264"], ["https://data.delijn.be/stops/400234", "https://data.delijn.be/stops/400235"], ["https://data.delijn.be/stops/105173", "https://data.delijn.be/stops/105176"], ["https://data.delijn.be/stops/304567", "https://data.delijn.be/stops/304610"], ["https://data.delijn.be/stops/406246", "https://data.delijn.be/stops/406247"], ["https://data.delijn.be/stops/407603", "https://data.delijn.be/stops/409796"], ["https://data.delijn.be/stops/500126", "https://data.delijn.be/stops/505081"], ["https://data.delijn.be/stops/102844", "https://data.delijn.be/stops/108035"], ["https://data.delijn.be/stops/105784", "https://data.delijn.be/stops/105787"], ["https://data.delijn.be/stops/204014", "https://data.delijn.be/stops/205363"], ["https://data.delijn.be/stops/101080", "https://data.delijn.be/stops/102680"], ["https://data.delijn.be/stops/301951", "https://data.delijn.be/stops/307894"], ["https://data.delijn.be/stops/300119", "https://data.delijn.be/stops/300121"], ["https://data.delijn.be/stops/306615", "https://data.delijn.be/stops/306617"], ["https://data.delijn.be/stops/101182", "https://data.delijn.be/stops/101220"], ["https://data.delijn.be/stops/503626", "https://data.delijn.be/stops/508623"], ["https://data.delijn.be/stops/101664", "https://data.delijn.be/stops/106485"], ["https://data.delijn.be/stops/102864", "https://data.delijn.be/stops/105936"], ["https://data.delijn.be/stops/206482", "https://data.delijn.be/stops/207453"], ["https://data.delijn.be/stops/206652", "https://data.delijn.be/stops/207652"], ["https://data.delijn.be/stops/301215", "https://data.delijn.be/stops/301216"], ["https://data.delijn.be/stops/503053", "https://data.delijn.be/stops/503054"], ["https://data.delijn.be/stops/305114", "https://data.delijn.be/stops/305115"], ["https://data.delijn.be/stops/405562", "https://data.delijn.be/stops/410059"], ["https://data.delijn.be/stops/109052", "https://data.delijn.be/stops/109068"], ["https://data.delijn.be/stops/208814", "https://data.delijn.be/stops/208837"], ["https://data.delijn.be/stops/402067", "https://data.delijn.be/stops/402068"], ["https://data.delijn.be/stops/101969", "https://data.delijn.be/stops/109298"], ["https://data.delijn.be/stops/102724", "https://data.delijn.be/stops/107005"], ["https://data.delijn.be/stops/501411", "https://data.delijn.be/stops/506414"], ["https://data.delijn.be/stops/504372", "https://data.delijn.be/stops/505787"], ["https://data.delijn.be/stops/104428", "https://data.delijn.be/stops/107369"], ["https://data.delijn.be/stops/206474", "https://data.delijn.be/stops/207473"], ["https://data.delijn.be/stops/408956", "https://data.delijn.be/stops/408963"], ["https://data.delijn.be/stops/400758", "https://data.delijn.be/stops/410047"], ["https://data.delijn.be/stops/102428", "https://data.delijn.be/stops/106227"], ["https://data.delijn.be/stops/208384", "https://data.delijn.be/stops/209620"], ["https://data.delijn.be/stops/302283", "https://data.delijn.be/stops/302287"], ["https://data.delijn.be/stops/502638", "https://data.delijn.be/stops/505694"], ["https://data.delijn.be/stops/407491", "https://data.delijn.be/stops/408507"], ["https://data.delijn.be/stops/407946", "https://data.delijn.be/stops/408057"], ["https://data.delijn.be/stops/304150", "https://data.delijn.be/stops/304157"], ["https://data.delijn.be/stops/407150", "https://data.delijn.be/stops/409500"], ["https://data.delijn.be/stops/104464", "https://data.delijn.be/stops/107955"], ["https://data.delijn.be/stops/208244", "https://data.delijn.be/stops/208794"], ["https://data.delijn.be/stops/300643", "https://data.delijn.be/stops/302476"], ["https://data.delijn.be/stops/208135", "https://data.delijn.be/stops/209134"], ["https://data.delijn.be/stops/406165", "https://data.delijn.be/stops/406264"], ["https://data.delijn.be/stops/206217", "https://data.delijn.be/stops/207806"], ["https://data.delijn.be/stops/208629", "https://data.delijn.be/stops/208630"], ["https://data.delijn.be/stops/504817", "https://data.delijn.be/stops/508557"], ["https://data.delijn.be/stops/203637", "https://data.delijn.be/stops/205071"], ["https://data.delijn.be/stops/204134", "https://data.delijn.be/stops/204147"], ["https://data.delijn.be/stops/404525", "https://data.delijn.be/stops/404554"], ["https://data.delijn.be/stops/109250", "https://data.delijn.be/stops/109266"], ["https://data.delijn.be/stops/303984", "https://data.delijn.be/stops/306827"], ["https://data.delijn.be/stops/102023", "https://data.delijn.be/stops/103982"], ["https://data.delijn.be/stops/206792", "https://data.delijn.be/stops/207631"], ["https://data.delijn.be/stops/502054", "https://data.delijn.be/stops/502057"], ["https://data.delijn.be/stops/504011", "https://data.delijn.be/stops/505298"], ["https://data.delijn.be/stops/107451", "https://data.delijn.be/stops/107453"], ["https://data.delijn.be/stops/305734", "https://data.delijn.be/stops/305754"], ["https://data.delijn.be/stops/501216", "https://data.delijn.be/stops/506212"], ["https://data.delijn.be/stops/404424", "https://data.delijn.be/stops/410102"], ["https://data.delijn.be/stops/508013", "https://data.delijn.be/stops/509815"], ["https://data.delijn.be/stops/307830", "https://data.delijn.be/stops/308543"], ["https://data.delijn.be/stops/108067", "https://data.delijn.be/stops/108069"], ["https://data.delijn.be/stops/206861", "https://data.delijn.be/stops/207488"], ["https://data.delijn.be/stops/301560", "https://data.delijn.be/stops/308083"], ["https://data.delijn.be/stops/403711", "https://data.delijn.be/stops/404062"], ["https://data.delijn.be/stops/400465", "https://data.delijn.be/stops/407643"], ["https://data.delijn.be/stops/206729", "https://data.delijn.be/stops/207657"], ["https://data.delijn.be/stops/203731", "https://data.delijn.be/stops/203916"], ["https://data.delijn.be/stops/407918", "https://data.delijn.be/stops/407919"], ["https://data.delijn.be/stops/202437", "https://data.delijn.be/stops/203430"], ["https://data.delijn.be/stops/505136", "https://data.delijn.be/stops/508664"], ["https://data.delijn.be/stops/209277", "https://data.delijn.be/stops/209494"], ["https://data.delijn.be/stops/107537", "https://data.delijn.be/stops/107887"], ["https://data.delijn.be/stops/206994", "https://data.delijn.be/stops/207980"], ["https://data.delijn.be/stops/206278", "https://data.delijn.be/stops/207278"], ["https://data.delijn.be/stops/502243", "https://data.delijn.be/stops/507153"], ["https://data.delijn.be/stops/502416", "https://data.delijn.be/stops/502435"], ["https://data.delijn.be/stops/405646", "https://data.delijn.be/stops/408649"], ["https://data.delijn.be/stops/308238", "https://data.delijn.be/stops/308244"], ["https://data.delijn.be/stops/104131", "https://data.delijn.be/stops/108429"], ["https://data.delijn.be/stops/506190", "https://data.delijn.be/stops/506464"], ["https://data.delijn.be/stops/501057", "https://data.delijn.be/stops/501361"], ["https://data.delijn.be/stops/302980", "https://data.delijn.be/stops/303022"], ["https://data.delijn.be/stops/300791", "https://data.delijn.be/stops/301012"], ["https://data.delijn.be/stops/503884", "https://data.delijn.be/stops/508881"], ["https://data.delijn.be/stops/503455", "https://data.delijn.be/stops/503970"], ["https://data.delijn.be/stops/403991", "https://data.delijn.be/stops/404022"], ["https://data.delijn.be/stops/207280", "https://data.delijn.be/stops/207398"], ["https://data.delijn.be/stops/200002", "https://data.delijn.be/stops/200003"], ["https://data.delijn.be/stops/206338", "https://data.delijn.be/stops/206366"], ["https://data.delijn.be/stops/305383", "https://data.delijn.be/stops/305384"], ["https://data.delijn.be/stops/406844", "https://data.delijn.be/stops/408626"], ["https://data.delijn.be/stops/206015", "https://data.delijn.be/stops/207026"], ["https://data.delijn.be/stops/307543", "https://data.delijn.be/stops/307579"], ["https://data.delijn.be/stops/504883", "https://data.delijn.be/stops/508590"], ["https://data.delijn.be/stops/404446", "https://data.delijn.be/stops/404536"], ["https://data.delijn.be/stops/306097", "https://data.delijn.be/stops/306098"], ["https://data.delijn.be/stops/101877", "https://data.delijn.be/stops/109492"], ["https://data.delijn.be/stops/407133", "https://data.delijn.be/stops/407343"], ["https://data.delijn.be/stops/208301", "https://data.delijn.be/stops/209301"], ["https://data.delijn.be/stops/102217", "https://data.delijn.be/stops/102219"], ["https://data.delijn.be/stops/308527", "https://data.delijn.be/stops/308529"], ["https://data.delijn.be/stops/202232", "https://data.delijn.be/stops/202233"], ["https://data.delijn.be/stops/106047", "https://data.delijn.be/stops/106048"], ["https://data.delijn.be/stops/101022", "https://data.delijn.be/stops/106045"], ["https://data.delijn.be/stops/505542", "https://data.delijn.be/stops/508802"], ["https://data.delijn.be/stops/106022", "https://data.delijn.be/stops/106026"], ["https://data.delijn.be/stops/109858", "https://data.delijn.be/stops/109892"], ["https://data.delijn.be/stops/303935", "https://data.delijn.be/stops/306143"], ["https://data.delijn.be/stops/304561", "https://data.delijn.be/stops/304562"], ["https://data.delijn.be/stops/308544", "https://data.delijn.be/stops/308956"], ["https://data.delijn.be/stops/502672", "https://data.delijn.be/stops/507672"], ["https://data.delijn.be/stops/208246", "https://data.delijn.be/stops/209245"], ["https://data.delijn.be/stops/506054", "https://data.delijn.be/stops/506061"], ["https://data.delijn.be/stops/302769", "https://data.delijn.be/stops/302778"], ["https://data.delijn.be/stops/408826", "https://data.delijn.be/stops/408833"], ["https://data.delijn.be/stops/207944", "https://data.delijn.be/stops/209552"], ["https://data.delijn.be/stops/102980", "https://data.delijn.be/stops/102985"], ["https://data.delijn.be/stops/404462", "https://data.delijn.be/stops/404496"], ["https://data.delijn.be/stops/403073", "https://data.delijn.be/stops/409317"], ["https://data.delijn.be/stops/206408", "https://data.delijn.be/stops/207408"], ["https://data.delijn.be/stops/102388", "https://data.delijn.be/stops/102599"], ["https://data.delijn.be/stops/400848", "https://data.delijn.be/stops/400854"], ["https://data.delijn.be/stops/505791", "https://data.delijn.be/stops/509409"], ["https://data.delijn.be/stops/202810", "https://data.delijn.be/stops/203886"], ["https://data.delijn.be/stops/101721", "https://data.delijn.be/stops/102904"], ["https://data.delijn.be/stops/300512", "https://data.delijn.be/stops/300538"], ["https://data.delijn.be/stops/208209", "https://data.delijn.be/stops/208210"], ["https://data.delijn.be/stops/303059", "https://data.delijn.be/stops/303150"], ["https://data.delijn.be/stops/306704", "https://data.delijn.be/stops/307935"], ["https://data.delijn.be/stops/103976", "https://data.delijn.be/stops/108360"], ["https://data.delijn.be/stops/204725", "https://data.delijn.be/stops/204727"], ["https://data.delijn.be/stops/103004", "https://data.delijn.be/stops/109303"], ["https://data.delijn.be/stops/400836", "https://data.delijn.be/stops/404378"], ["https://data.delijn.be/stops/505291", "https://data.delijn.be/stops/508620"], ["https://data.delijn.be/stops/202882", "https://data.delijn.be/stops/204975"], ["https://data.delijn.be/stops/103537", "https://data.delijn.be/stops/108220"], ["https://data.delijn.be/stops/503871", "https://data.delijn.be/stops/504755"], ["https://data.delijn.be/stops/503387", "https://data.delijn.be/stops/508252"], ["https://data.delijn.be/stops/305435", "https://data.delijn.be/stops/305520"], ["https://data.delijn.be/stops/303392", "https://data.delijn.be/stops/308796"], ["https://data.delijn.be/stops/106513", "https://data.delijn.be/stops/106518"], ["https://data.delijn.be/stops/308522", "https://data.delijn.be/stops/308523"], ["https://data.delijn.be/stops/401846", "https://data.delijn.be/stops/401852"], ["https://data.delijn.be/stops/102291", "https://data.delijn.be/stops/106379"], ["https://data.delijn.be/stops/505942", "https://data.delijn.be/stops/508052"], ["https://data.delijn.be/stops/404027", "https://data.delijn.be/stops/308752"], ["https://data.delijn.be/stops/109350", "https://data.delijn.be/stops/109351"], ["https://data.delijn.be/stops/300507", "https://data.delijn.be/stops/300509"], ["https://data.delijn.be/stops/104377", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/402702", "https://data.delijn.be/stops/402865"], ["https://data.delijn.be/stops/408260", "https://data.delijn.be/stops/408343"], ["https://data.delijn.be/stops/406651", "https://data.delijn.be/stops/407169"], ["https://data.delijn.be/stops/304005", "https://data.delijn.be/stops/304006"], ["https://data.delijn.be/stops/102867", "https://data.delijn.be/stops/106152"], ["https://data.delijn.be/stops/102054", "https://data.delijn.be/stops/103306"], ["https://data.delijn.be/stops/201753", "https://data.delijn.be/stops/209280"], ["https://data.delijn.be/stops/400861", "https://data.delijn.be/stops/400862"], ["https://data.delijn.be/stops/504179", "https://data.delijn.be/stops/504180"], ["https://data.delijn.be/stops/400682", "https://data.delijn.be/stops/406767"], ["https://data.delijn.be/stops/505503", "https://data.delijn.be/stops/505614"], ["https://data.delijn.be/stops/101869", "https://data.delijn.be/stops/105293"], ["https://data.delijn.be/stops/503200", "https://data.delijn.be/stops/508204"], ["https://data.delijn.be/stops/307279", "https://data.delijn.be/stops/308761"], ["https://data.delijn.be/stops/101632", "https://data.delijn.be/stops/102188"], ["https://data.delijn.be/stops/503239", "https://data.delijn.be/stops/508239"], ["https://data.delijn.be/stops/108919", "https://data.delijn.be/stops/108922"], ["https://data.delijn.be/stops/403379", "https://data.delijn.be/stops/403466"], ["https://data.delijn.be/stops/505194", "https://data.delijn.be/stops/505195"], ["https://data.delijn.be/stops/301929", "https://data.delijn.be/stops/301930"], ["https://data.delijn.be/stops/102991", "https://data.delijn.be/stops/105594"], ["https://data.delijn.be/stops/400257", "https://data.delijn.be/stops/405588"], ["https://data.delijn.be/stops/407676", "https://data.delijn.be/stops/407677"], ["https://data.delijn.be/stops/102700", "https://data.delijn.be/stops/103930"], ["https://data.delijn.be/stops/206547", "https://data.delijn.be/stops/206548"], ["https://data.delijn.be/stops/304333", "https://data.delijn.be/stops/304335"], ["https://data.delijn.be/stops/108649", "https://data.delijn.be/stops/108651"], ["https://data.delijn.be/stops/200166", "https://data.delijn.be/stops/203151"], ["https://data.delijn.be/stops/101385", "https://data.delijn.be/stops/103115"], ["https://data.delijn.be/stops/305189", "https://data.delijn.be/stops/308681"], ["https://data.delijn.be/stops/501124", "https://data.delijn.be/stops/506126"], ["https://data.delijn.be/stops/503600", "https://data.delijn.be/stops/505910"], ["https://data.delijn.be/stops/308727", "https://data.delijn.be/stops/308729"], ["https://data.delijn.be/stops/401525", "https://data.delijn.be/stops/403812"], ["https://data.delijn.be/stops/209102", "https://data.delijn.be/stops/209103"], ["https://data.delijn.be/stops/409395", "https://data.delijn.be/stops/409397"], ["https://data.delijn.be/stops/203430", "https://data.delijn.be/stops/203438"], ["https://data.delijn.be/stops/300277", "https://data.delijn.be/stops/306190"], ["https://data.delijn.be/stops/505636", "https://data.delijn.be/stops/505637"], ["https://data.delijn.be/stops/501614", "https://data.delijn.be/stops/506620"], ["https://data.delijn.be/stops/202258", "https://data.delijn.be/stops/203258"], ["https://data.delijn.be/stops/206976", "https://data.delijn.be/stops/207975"], ["https://data.delijn.be/stops/204162", "https://data.delijn.be/stops/206279"], ["https://data.delijn.be/stops/201380", "https://data.delijn.be/stops/201540"], ["https://data.delijn.be/stops/402240", "https://data.delijn.be/stops/404566"], ["https://data.delijn.be/stops/108933", "https://data.delijn.be/stops/108934"], ["https://data.delijn.be/stops/101928", "https://data.delijn.be/stops/108191"], ["https://data.delijn.be/stops/105724", "https://data.delijn.be/stops/107090"], ["https://data.delijn.be/stops/405344", "https://data.delijn.be/stops/308823"], ["https://data.delijn.be/stops/401848", "https://data.delijn.be/stops/406348"], ["https://data.delijn.be/stops/202185", "https://data.delijn.be/stops/204773"], ["https://data.delijn.be/stops/305229", "https://data.delijn.be/stops/305233"], ["https://data.delijn.be/stops/302328", "https://data.delijn.be/stops/304009"], ["https://data.delijn.be/stops/409087", "https://data.delijn.be/stops/409211"], ["https://data.delijn.be/stops/300086", "https://data.delijn.be/stops/307357"], ["https://data.delijn.be/stops/201775", "https://data.delijn.be/stops/209288"], ["https://data.delijn.be/stops/104448", "https://data.delijn.be/stops/109918"], ["https://data.delijn.be/stops/103501", "https://data.delijn.be/stops/109141"], ["https://data.delijn.be/stops/106534", "https://data.delijn.be/stops/106535"], ["https://data.delijn.be/stops/206722", "https://data.delijn.be/stops/207129"], ["https://data.delijn.be/stops/501005", "https://data.delijn.be/stops/501641"], ["https://data.delijn.be/stops/206531", "https://data.delijn.be/stops/206532"], ["https://data.delijn.be/stops/506036", "https://data.delijn.be/stops/506284"], ["https://data.delijn.be/stops/304304", "https://data.delijn.be/stops/304342"], ["https://data.delijn.be/stops/405375", "https://data.delijn.be/stops/410067"], ["https://data.delijn.be/stops/103162", "https://data.delijn.be/stops/109740"], ["https://data.delijn.be/stops/300729", "https://data.delijn.be/stops/300835"], ["https://data.delijn.be/stops/402042", "https://data.delijn.be/stops/402177"], ["https://data.delijn.be/stops/102479", "https://data.delijn.be/stops/400176"], ["https://data.delijn.be/stops/401012", "https://data.delijn.be/stops/401149"], ["https://data.delijn.be/stops/203532", "https://data.delijn.be/stops/205174"], ["https://data.delijn.be/stops/307110", "https://data.delijn.be/stops/307111"], ["https://data.delijn.be/stops/107832", "https://data.delijn.be/stops/107833"], ["https://data.delijn.be/stops/502190", "https://data.delijn.be/stops/507190"], ["https://data.delijn.be/stops/201828", "https://data.delijn.be/stops/209282"], ["https://data.delijn.be/stops/303659", "https://data.delijn.be/stops/303660"], ["https://data.delijn.be/stops/202159", "https://data.delijn.be/stops/203158"], ["https://data.delijn.be/stops/304691", "https://data.delijn.be/stops/307254"], ["https://data.delijn.be/stops/501242", "https://data.delijn.be/stops/501243"], ["https://data.delijn.be/stops/300657", "https://data.delijn.be/stops/302476"], ["https://data.delijn.be/stops/405090", "https://data.delijn.be/stops/405092"], ["https://data.delijn.be/stops/202370", "https://data.delijn.be/stops/203587"], ["https://data.delijn.be/stops/402301", "https://data.delijn.be/stops/402303"], ["https://data.delijn.be/stops/400398", "https://data.delijn.be/stops/400404"], ["https://data.delijn.be/stops/101146", "https://data.delijn.be/stops/101148"], ["https://data.delijn.be/stops/503198", "https://data.delijn.be/stops/503213"], ["https://data.delijn.be/stops/104987", "https://data.delijn.be/stops/109695"], ["https://data.delijn.be/stops/301949", "https://data.delijn.be/stops/305452"], ["https://data.delijn.be/stops/207463", "https://data.delijn.be/stops/216010"], ["https://data.delijn.be/stops/107030", "https://data.delijn.be/stops/107032"], ["https://data.delijn.be/stops/204193", "https://data.delijn.be/stops/204194"], ["https://data.delijn.be/stops/200558", "https://data.delijn.be/stops/201662"], ["https://data.delijn.be/stops/501132", "https://data.delijn.be/stops/506137"], ["https://data.delijn.be/stops/109539", "https://data.delijn.be/stops/109594"], ["https://data.delijn.be/stops/502149", "https://data.delijn.be/stops/507149"], ["https://data.delijn.be/stops/402573", "https://data.delijn.be/stops/402578"], ["https://data.delijn.be/stops/504602", "https://data.delijn.be/stops/504604"], ["https://data.delijn.be/stops/301429", "https://data.delijn.be/stops/301430"], ["https://data.delijn.be/stops/300407", "https://data.delijn.be/stops/300408"], ["https://data.delijn.be/stops/401513", "https://data.delijn.be/stops/401549"], ["https://data.delijn.be/stops/300945", "https://data.delijn.be/stops/301013"], ["https://data.delijn.be/stops/208721", "https://data.delijn.be/stops/209721"], ["https://data.delijn.be/stops/204584", "https://data.delijn.be/stops/206391"], ["https://data.delijn.be/stops/206241", "https://data.delijn.be/stops/207242"], ["https://data.delijn.be/stops/207737", "https://data.delijn.be/stops/207738"], ["https://data.delijn.be/stops/401934", "https://data.delijn.be/stops/401935"], ["https://data.delijn.be/stops/400219", "https://data.delijn.be/stops/410001"], ["https://data.delijn.be/stops/405825", "https://data.delijn.be/stops/409732"], ["https://data.delijn.be/stops/407962", "https://data.delijn.be/stops/408427"], ["https://data.delijn.be/stops/508191", "https://data.delijn.be/stops/508463"], ["https://data.delijn.be/stops/302897", "https://data.delijn.be/stops/303106"], ["https://data.delijn.be/stops/300128", "https://data.delijn.be/stops/307849"], ["https://data.delijn.be/stops/101704", "https://data.delijn.be/stops/102915"], ["https://data.delijn.be/stops/302121", "https://data.delijn.be/stops/304141"], ["https://data.delijn.be/stops/503906", "https://data.delijn.be/stops/508906"], ["https://data.delijn.be/stops/303554", "https://data.delijn.be/stops/303555"], ["https://data.delijn.be/stops/502389", "https://data.delijn.be/stops/507389"], ["https://data.delijn.be/stops/502481", "https://data.delijn.be/stops/505318"], ["https://data.delijn.be/stops/200717", "https://data.delijn.be/stops/203578"], ["https://data.delijn.be/stops/303676", "https://data.delijn.be/stops/306313"], ["https://data.delijn.be/stops/200979", "https://data.delijn.be/stops/210132"], ["https://data.delijn.be/stops/503170", "https://data.delijn.be/stops/508170"], ["https://data.delijn.be/stops/400145", "https://data.delijn.be/stops/400413"], ["https://data.delijn.be/stops/504326", "https://data.delijn.be/stops/509335"], ["https://data.delijn.be/stops/302948", "https://data.delijn.be/stops/302993"], ["https://data.delijn.be/stops/404437", "https://data.delijn.be/stops/404473"], ["https://data.delijn.be/stops/402236", "https://data.delijn.be/stops/402294"], ["https://data.delijn.be/stops/303459", "https://data.delijn.be/stops/303480"], ["https://data.delijn.be/stops/105668", "https://data.delijn.be/stops/106046"], ["https://data.delijn.be/stops/108753", "https://data.delijn.be/stops/108756"], ["https://data.delijn.be/stops/504780", "https://data.delijn.be/stops/507684"], ["https://data.delijn.be/stops/303501", "https://data.delijn.be/stops/303503"], ["https://data.delijn.be/stops/106106", "https://data.delijn.be/stops/106122"], ["https://data.delijn.be/stops/300170", "https://data.delijn.be/stops/301218"], ["https://data.delijn.be/stops/107968", "https://data.delijn.be/stops/108436"], ["https://data.delijn.be/stops/208050", "https://data.delijn.be/stops/209485"], ["https://data.delijn.be/stops/500929", "https://data.delijn.be/stops/500938"], ["https://data.delijn.be/stops/301355", "https://data.delijn.be/stops/301368"], ["https://data.delijn.be/stops/402845", "https://data.delijn.be/stops/409006"], ["https://data.delijn.be/stops/408073", "https://data.delijn.be/stops/410127"], ["https://data.delijn.be/stops/305152", "https://data.delijn.be/stops/305156"], ["https://data.delijn.be/stops/102272", "https://data.delijn.be/stops/204607"], ["https://data.delijn.be/stops/300326", "https://data.delijn.be/stops/304458"], ["https://data.delijn.be/stops/101811", "https://data.delijn.be/stops/104677"], ["https://data.delijn.be/stops/403144", "https://data.delijn.be/stops/410275"], ["https://data.delijn.be/stops/305164", "https://data.delijn.be/stops/307086"], ["https://data.delijn.be/stops/502011", "https://data.delijn.be/stops/507002"], ["https://data.delijn.be/stops/104821", "https://data.delijn.be/stops/108507"], ["https://data.delijn.be/stops/204391", "https://data.delijn.be/stops/205390"], ["https://data.delijn.be/stops/203049", "https://data.delijn.be/stops/203227"], ["https://data.delijn.be/stops/109038", "https://data.delijn.be/stops/109081"], ["https://data.delijn.be/stops/503086", "https://data.delijn.be/stops/505388"], ["https://data.delijn.be/stops/101199", "https://data.delijn.be/stops/101207"], ["https://data.delijn.be/stops/304015", "https://data.delijn.be/stops/304051"], ["https://data.delijn.be/stops/107148", "https://data.delijn.be/stops/109380"], ["https://data.delijn.be/stops/400747", "https://data.delijn.be/stops/409578"], ["https://data.delijn.be/stops/504063", "https://data.delijn.be/stops/504065"], ["https://data.delijn.be/stops/406037", "https://data.delijn.be/stops/406069"], ["https://data.delijn.be/stops/401506", "https://data.delijn.be/stops/401893"], ["https://data.delijn.be/stops/104127", "https://data.delijn.be/stops/105165"], ["https://data.delijn.be/stops/302707", "https://data.delijn.be/stops/302708"], ["https://data.delijn.be/stops/503969", "https://data.delijn.be/stops/508963"], ["https://data.delijn.be/stops/502102", "https://data.delijn.be/stops/502120"], ["https://data.delijn.be/stops/504062", "https://data.delijn.be/stops/509062"], ["https://data.delijn.be/stops/405323", "https://data.delijn.be/stops/405327"], ["https://data.delijn.be/stops/104606", "https://data.delijn.be/stops/107376"], ["https://data.delijn.be/stops/403296", "https://data.delijn.be/stops/410323"], ["https://data.delijn.be/stops/108019", "https://data.delijn.be/stops/108021"], ["https://data.delijn.be/stops/410144", "https://data.delijn.be/stops/410145"], ["https://data.delijn.be/stops/204982", "https://data.delijn.be/stops/206679"], ["https://data.delijn.be/stops/201313", "https://data.delijn.be/stops/201527"], ["https://data.delijn.be/stops/200246", "https://data.delijn.be/stops/201426"], ["https://data.delijn.be/stops/403705", "https://data.delijn.be/stops/403779"], ["https://data.delijn.be/stops/200802", "https://data.delijn.be/stops/200877"], ["https://data.delijn.be/stops/304064", "https://data.delijn.be/stops/304080"], ["https://data.delijn.be/stops/204097", "https://data.delijn.be/stops/204245"], ["https://data.delijn.be/stops/402132", "https://data.delijn.be/stops/402133"], ["https://data.delijn.be/stops/408560", "https://data.delijn.be/stops/408561"], ["https://data.delijn.be/stops/504021", "https://data.delijn.be/stops/505210"], ["https://data.delijn.be/stops/505260", "https://data.delijn.be/stops/508221"], ["https://data.delijn.be/stops/205119", "https://data.delijn.be/stops/205120"], ["https://data.delijn.be/stops/204436", "https://data.delijn.be/stops/205436"], ["https://data.delijn.be/stops/102468", "https://data.delijn.be/stops/406849"], ["https://data.delijn.be/stops/200116", "https://data.delijn.be/stops/200117"], ["https://data.delijn.be/stops/405067", "https://data.delijn.be/stops/405893"], ["https://data.delijn.be/stops/202121", "https://data.delijn.be/stops/202638"], ["https://data.delijn.be/stops/304395", "https://data.delijn.be/stops/307413"], ["https://data.delijn.be/stops/508921", "https://data.delijn.be/stops/508933"], ["https://data.delijn.be/stops/305147", "https://data.delijn.be/stops/305186"], ["https://data.delijn.be/stops/106667", "https://data.delijn.be/stops/106669"], ["https://data.delijn.be/stops/402790", "https://data.delijn.be/stops/402792"], ["https://data.delijn.be/stops/505783", "https://data.delijn.be/stops/507068"], ["https://data.delijn.be/stops/504830", "https://data.delijn.be/stops/508179"], ["https://data.delijn.be/stops/403254", "https://data.delijn.be/stops/403472"], ["https://data.delijn.be/stops/504027", "https://data.delijn.be/stops/509484"], ["https://data.delijn.be/stops/102407", "https://data.delijn.be/stops/405031"], ["https://data.delijn.be/stops/101988", "https://data.delijn.be/stops/103322"], ["https://data.delijn.be/stops/107857", "https://data.delijn.be/stops/208900"], ["https://data.delijn.be/stops/501518", "https://data.delijn.be/stops/506080"], ["https://data.delijn.be/stops/201197", "https://data.delijn.be/stops/201735"], ["https://data.delijn.be/stops/502753", "https://data.delijn.be/stops/509699"], ["https://data.delijn.be/stops/208314", "https://data.delijn.be/stops/208770"], ["https://data.delijn.be/stops/303115", "https://data.delijn.be/stops/306704"], ["https://data.delijn.be/stops/102121", "https://data.delijn.be/stops/103489"], ["https://data.delijn.be/stops/400880", "https://data.delijn.be/stops/409539"], ["https://data.delijn.be/stops/106933", "https://data.delijn.be/stops/108806"], ["https://data.delijn.be/stops/504801", "https://data.delijn.be/stops/504803"], ["https://data.delijn.be/stops/504059", "https://data.delijn.be/stops/504062"], ["https://data.delijn.be/stops/105716", "https://data.delijn.be/stops/106079"], ["https://data.delijn.be/stops/401300", "https://data.delijn.be/stops/401301"], ["https://data.delijn.be/stops/501577", "https://data.delijn.be/stops/508820"], ["https://data.delijn.be/stops/507684", "https://data.delijn.be/stops/508170"], ["https://data.delijn.be/stops/200331", "https://data.delijn.be/stops/200961"], ["https://data.delijn.be/stops/202634", "https://data.delijn.be/stops/203634"], ["https://data.delijn.be/stops/408006", "https://data.delijn.be/stops/408007"], ["https://data.delijn.be/stops/307357", "https://data.delijn.be/stops/307358"], ["https://data.delijn.be/stops/200544", "https://data.delijn.be/stops/205941"], ["https://data.delijn.be/stops/200343", "https://data.delijn.be/stops/201343"], ["https://data.delijn.be/stops/104894", "https://data.delijn.be/stops/105266"], ["https://data.delijn.be/stops/307381", "https://data.delijn.be/stops/308274"], ["https://data.delijn.be/stops/403956", "https://data.delijn.be/stops/404019"], ["https://data.delijn.be/stops/206720", "https://data.delijn.be/stops/206721"], ["https://data.delijn.be/stops/208549", "https://data.delijn.be/stops/208556"], ["https://data.delijn.be/stops/304043", "https://data.delijn.be/stops/306810"], ["https://data.delijn.be/stops/502541", "https://data.delijn.be/stops/502765"], ["https://data.delijn.be/stops/502549", "https://data.delijn.be/stops/502663"], ["https://data.delijn.be/stops/108451", "https://data.delijn.be/stops/108510"], ["https://data.delijn.be/stops/303023", "https://data.delijn.be/stops/307727"], ["https://data.delijn.be/stops/207626", "https://data.delijn.be/stops/207627"], ["https://data.delijn.be/stops/203260", "https://data.delijn.be/stops/203261"], ["https://data.delijn.be/stops/408422", "https://data.delijn.be/stops/408490"], ["https://data.delijn.be/stops/102223", "https://data.delijn.be/stops/105542"], ["https://data.delijn.be/stops/204310", "https://data.delijn.be/stops/205310"], ["https://data.delijn.be/stops/206931", "https://data.delijn.be/stops/207108"], ["https://data.delijn.be/stops/107127", "https://data.delijn.be/stops/107128"], ["https://data.delijn.be/stops/508292", "https://data.delijn.be/stops/508293"], ["https://data.delijn.be/stops/503768", "https://data.delijn.be/stops/503769"], ["https://data.delijn.be/stops/202176", "https://data.delijn.be/stops/202177"], ["https://data.delijn.be/stops/305169", "https://data.delijn.be/stops/306967"], ["https://data.delijn.be/stops/302681", "https://data.delijn.be/stops/308081"], ["https://data.delijn.be/stops/203888", "https://data.delijn.be/stops/207426"], ["https://data.delijn.be/stops/407995", "https://data.delijn.be/stops/408166"], ["https://data.delijn.be/stops/405910", "https://data.delijn.be/stops/405929"], ["https://data.delijn.be/stops/105033", "https://data.delijn.be/stops/106715"], ["https://data.delijn.be/stops/400562", "https://data.delijn.be/stops/403062"], ["https://data.delijn.be/stops/205020", "https://data.delijn.be/stops/205021"], ["https://data.delijn.be/stops/400732", "https://data.delijn.be/stops/400903"], ["https://data.delijn.be/stops/504227", "https://data.delijn.be/stops/509225"], ["https://data.delijn.be/stops/210069", "https://data.delijn.be/stops/210126"], ["https://data.delijn.be/stops/405414", "https://data.delijn.be/stops/302826"], ["https://data.delijn.be/stops/303274", "https://data.delijn.be/stops/303276"], ["https://data.delijn.be/stops/104133", "https://data.delijn.be/stops/104637"], ["https://data.delijn.be/stops/102009", "https://data.delijn.be/stops/105974"], ["https://data.delijn.be/stops/201135", "https://data.delijn.be/stops/201408"], ["https://data.delijn.be/stops/405776", "https://data.delijn.be/stops/409426"], ["https://data.delijn.be/stops/303188", "https://data.delijn.be/stops/303189"], ["https://data.delijn.be/stops/406999", "https://data.delijn.be/stops/408624"], ["https://data.delijn.be/stops/209093", "https://data.delijn.be/stops/209629"], ["https://data.delijn.be/stops/206161", "https://data.delijn.be/stops/207159"], ["https://data.delijn.be/stops/502257", "https://data.delijn.be/stops/507263"], ["https://data.delijn.be/stops/108752", "https://data.delijn.be/stops/109871"], ["https://data.delijn.be/stops/202420", "https://data.delijn.be/stops/203420"], ["https://data.delijn.be/stops/509139", "https://data.delijn.be/stops/509142"], ["https://data.delijn.be/stops/305670", "https://data.delijn.be/stops/305671"], ["https://data.delijn.be/stops/405191", "https://data.delijn.be/stops/405249"], ["https://data.delijn.be/stops/101047", "https://data.delijn.be/stops/109869"], ["https://data.delijn.be/stops/405751", "https://data.delijn.be/stops/408319"], ["https://data.delijn.be/stops/509141", "https://data.delijn.be/stops/509146"], ["https://data.delijn.be/stops/503158", "https://data.delijn.be/stops/508158"], ["https://data.delijn.be/stops/204308", "https://data.delijn.be/stops/205307"], ["https://data.delijn.be/stops/408262", "https://data.delijn.be/stops/408386"], ["https://data.delijn.be/stops/404559", "https://data.delijn.be/stops/405447"], ["https://data.delijn.be/stops/504832", "https://data.delijn.be/stops/509099"], ["https://data.delijn.be/stops/502754", "https://data.delijn.be/stops/507754"], ["https://data.delijn.be/stops/206981", "https://data.delijn.be/stops/206982"], ["https://data.delijn.be/stops/501197", "https://data.delijn.be/stops/501498"], ["https://data.delijn.be/stops/204181", "https://data.delijn.be/stops/204182"], ["https://data.delijn.be/stops/406291", "https://data.delijn.be/stops/406416"], ["https://data.delijn.be/stops/206499", "https://data.delijn.be/stops/206519"], ["https://data.delijn.be/stops/505025", "https://data.delijn.be/stops/507237"], ["https://data.delijn.be/stops/502511", "https://data.delijn.be/stops/507489"], ["https://data.delijn.be/stops/300615", "https://data.delijn.be/stops/303243"], ["https://data.delijn.be/stops/408268", "https://data.delijn.be/stops/408279"], ["https://data.delijn.be/stops/206314", "https://data.delijn.be/stops/207314"], ["https://data.delijn.be/stops/102657", "https://data.delijn.be/stops/109916"], ["https://data.delijn.be/stops/400752", "https://data.delijn.be/stops/409578"], ["https://data.delijn.be/stops/300428", "https://data.delijn.be/stops/300446"], ["https://data.delijn.be/stops/305596", "https://data.delijn.be/stops/305597"], ["https://data.delijn.be/stops/208445", "https://data.delijn.be/stops/208446"], ["https://data.delijn.be/stops/204174", "https://data.delijn.be/stops/204389"], ["https://data.delijn.be/stops/400099", "https://data.delijn.be/stops/403328"], ["https://data.delijn.be/stops/505090", "https://data.delijn.be/stops/507539"], ["https://data.delijn.be/stops/301747", "https://data.delijn.be/stops/308413"], ["https://data.delijn.be/stops/304986", "https://data.delijn.be/stops/308021"], ["https://data.delijn.be/stops/303859", "https://data.delijn.be/stops/303860"], ["https://data.delijn.be/stops/104429", "https://data.delijn.be/stops/108348"], ["https://data.delijn.be/stops/507620", "https://data.delijn.be/stops/508087"], ["https://data.delijn.be/stops/407649", "https://data.delijn.be/stops/407703"], ["https://data.delijn.be/stops/300097", "https://data.delijn.be/stops/306852"], ["https://data.delijn.be/stops/302481", "https://data.delijn.be/stops/302672"], ["https://data.delijn.be/stops/102656", "https://data.delijn.be/stops/107922"], ["https://data.delijn.be/stops/103299", "https://data.delijn.be/stops/107035"], ["https://data.delijn.be/stops/208056", "https://data.delijn.be/stops/208057"], ["https://data.delijn.be/stops/306692", "https://data.delijn.be/stops/308784"], ["https://data.delijn.be/stops/503505", "https://data.delijn.be/stops/505659"], ["https://data.delijn.be/stops/504578", "https://data.delijn.be/stops/509575"], ["https://data.delijn.be/stops/406355", "https://data.delijn.be/stops/410189"], ["https://data.delijn.be/stops/208086", "https://data.delijn.be/stops/209085"], ["https://data.delijn.be/stops/101209", "https://data.delijn.be/stops/104909"], ["https://data.delijn.be/stops/401049", "https://data.delijn.be/stops/401131"], ["https://data.delijn.be/stops/504753", "https://data.delijn.be/stops/508171"], ["https://data.delijn.be/stops/305262", "https://data.delijn.be/stops/305298"], ["https://data.delijn.be/stops/501155", "https://data.delijn.be/stops/501690"], ["https://data.delijn.be/stops/106735", "https://data.delijn.be/stops/106737"], ["https://data.delijn.be/stops/503833", "https://data.delijn.be/stops/508833"], ["https://data.delijn.be/stops/507374", "https://data.delijn.be/stops/507564"], ["https://data.delijn.be/stops/405917", "https://data.delijn.be/stops/405967"], ["https://data.delijn.be/stops/407337", "https://data.delijn.be/stops/407758"], ["https://data.delijn.be/stops/504122", "https://data.delijn.be/stops/504126"], ["https://data.delijn.be/stops/306002", "https://data.delijn.be/stops/307505"], ["https://data.delijn.be/stops/302995", "https://data.delijn.be/stops/307229"], ["https://data.delijn.be/stops/103298", "https://data.delijn.be/stops/105088"], ["https://data.delijn.be/stops/206177", "https://data.delijn.be/stops/303840"], ["https://data.delijn.be/stops/306709", "https://data.delijn.be/stops/306710"], ["https://data.delijn.be/stops/402365", "https://data.delijn.be/stops/410071"], ["https://data.delijn.be/stops/103157", "https://data.delijn.be/stops/109045"], ["https://data.delijn.be/stops/506265", "https://data.delijn.be/stops/506332"], ["https://data.delijn.be/stops/300350", "https://data.delijn.be/stops/304063"], ["https://data.delijn.be/stops/102592", "https://data.delijn.be/stops/108564"], ["https://data.delijn.be/stops/206736", "https://data.delijn.be/stops/206984"], ["https://data.delijn.be/stops/103616", "https://data.delijn.be/stops/103617"], ["https://data.delijn.be/stops/305195", "https://data.delijn.be/stops/305202"], ["https://data.delijn.be/stops/202744", "https://data.delijn.be/stops/208723"], ["https://data.delijn.be/stops/401136", "https://data.delijn.be/stops/403750"], ["https://data.delijn.be/stops/301042", "https://data.delijn.be/stops/301073"], ["https://data.delijn.be/stops/502929", "https://data.delijn.be/stops/508730"], ["https://data.delijn.be/stops/305599", "https://data.delijn.be/stops/305604"], ["https://data.delijn.be/stops/303843", "https://data.delijn.be/stops/303844"], ["https://data.delijn.be/stops/507765", "https://data.delijn.be/stops/508189"], ["https://data.delijn.be/stops/502301", "https://data.delijn.be/stops/502313"], ["https://data.delijn.be/stops/103263", "https://data.delijn.be/stops/205629"], ["https://data.delijn.be/stops/408824", "https://data.delijn.be/stops/408829"], ["https://data.delijn.be/stops/108831", "https://data.delijn.be/stops/108834"], ["https://data.delijn.be/stops/206416", "https://data.delijn.be/stops/207416"], ["https://data.delijn.be/stops/204413", "https://data.delijn.be/stops/205396"], ["https://data.delijn.be/stops/206969", "https://data.delijn.be/stops/301428"], ["https://data.delijn.be/stops/407712", "https://data.delijn.be/stops/407714"], ["https://data.delijn.be/stops/406609", "https://data.delijn.be/stops/406612"], ["https://data.delijn.be/stops/304891", "https://data.delijn.be/stops/304905"], ["https://data.delijn.be/stops/202915", "https://data.delijn.be/stops/203915"], ["https://data.delijn.be/stops/105357", "https://data.delijn.be/stops/105593"], ["https://data.delijn.be/stops/405300", "https://data.delijn.be/stops/405401"], ["https://data.delijn.be/stops/505414", "https://data.delijn.be/stops/509017"], ["https://data.delijn.be/stops/504434", "https://data.delijn.be/stops/505785"], ["https://data.delijn.be/stops/507684", "https://data.delijn.be/stops/508239"], ["https://data.delijn.be/stops/504265", "https://data.delijn.be/stops/509266"], ["https://data.delijn.be/stops/407746", "https://data.delijn.be/stops/407755"], ["https://data.delijn.be/stops/216014", "https://data.delijn.be/stops/306732"], ["https://data.delijn.be/stops/204297", "https://data.delijn.be/stops/205552"], ["https://data.delijn.be/stops/400264", "https://data.delijn.be/stops/400923"], ["https://data.delijn.be/stops/104741", "https://data.delijn.be/stops/104762"], ["https://data.delijn.be/stops/305876", "https://data.delijn.be/stops/308422"], ["https://data.delijn.be/stops/108932", "https://data.delijn.be/stops/108933"], ["https://data.delijn.be/stops/305738", "https://data.delijn.be/stops/305739"], ["https://data.delijn.be/stops/302268", "https://data.delijn.be/stops/306371"], ["https://data.delijn.be/stops/504491", "https://data.delijn.be/stops/509637"], ["https://data.delijn.be/stops/203367", "https://data.delijn.be/stops/203395"], ["https://data.delijn.be/stops/304479", "https://data.delijn.be/stops/304506"], ["https://data.delijn.be/stops/300261", "https://data.delijn.be/stops/304950"], ["https://data.delijn.be/stops/502503", "https://data.delijn.be/stops/507491"], ["https://data.delijn.be/stops/505786", "https://data.delijn.be/stops/509461"], ["https://data.delijn.be/stops/304203", "https://data.delijn.be/stops/305354"], ["https://data.delijn.be/stops/503493", "https://data.delijn.be/stops/505134"], ["https://data.delijn.be/stops/106782", "https://data.delijn.be/stops/106784"], ["https://data.delijn.be/stops/208237", "https://data.delijn.be/stops/209243"], ["https://data.delijn.be/stops/209789", "https://data.delijn.be/stops/209795"], ["https://data.delijn.be/stops/200832", "https://data.delijn.be/stops/505646"], ["https://data.delijn.be/stops/305036", "https://data.delijn.be/stops/305039"], ["https://data.delijn.be/stops/406210", "https://data.delijn.be/stops/406278"], ["https://data.delijn.be/stops/503057", "https://data.delijn.be/stops/509844"], ["https://data.delijn.be/stops/201301", "https://data.delijn.be/stops/201323"], ["https://data.delijn.be/stops/405962", "https://data.delijn.be/stops/405973"], ["https://data.delijn.be/stops/401019", "https://data.delijn.be/stops/403754"], ["https://data.delijn.be/stops/504370", "https://data.delijn.be/stops/504663"], ["https://data.delijn.be/stops/206429", "https://data.delijn.be/stops/207429"], ["https://data.delijn.be/stops/103929", "https://data.delijn.be/stops/103931"], ["https://data.delijn.be/stops/401157", "https://data.delijn.be/stops/409427"], ["https://data.delijn.be/stops/101969", "https://data.delijn.be/stops/103004"], ["https://data.delijn.be/stops/301856", "https://data.delijn.be/stops/302012"], ["https://data.delijn.be/stops/305722", "https://data.delijn.be/stops/306308"], ["https://data.delijn.be/stops/504324", "https://data.delijn.be/stops/509407"], ["https://data.delijn.be/stops/502914", "https://data.delijn.be/stops/507020"], ["https://data.delijn.be/stops/503647", "https://data.delijn.be/stops/508647"], ["https://data.delijn.be/stops/302521", "https://data.delijn.be/stops/308887"], ["https://data.delijn.be/stops/103042", "https://data.delijn.be/stops/106810"], ["https://data.delijn.be/stops/105768", "https://data.delijn.be/stops/105771"], ["https://data.delijn.be/stops/402304", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/504255", "https://data.delijn.be/stops/505362"], ["https://data.delijn.be/stops/304723", "https://data.delijn.be/stops/304744"], ["https://data.delijn.be/stops/200908", "https://data.delijn.be/stops/200948"], ["https://data.delijn.be/stops/501200", "https://data.delijn.be/stops/506425"], ["https://data.delijn.be/stops/206401", "https://data.delijn.be/stops/206402"], ["https://data.delijn.be/stops/206784", "https://data.delijn.be/stops/208610"], ["https://data.delijn.be/stops/201892", "https://data.delijn.be/stops/209823"], ["https://data.delijn.be/stops/407004", "https://data.delijn.be/stops/407046"], ["https://data.delijn.be/stops/308148", "https://data.delijn.be/stops/308174"], ["https://data.delijn.be/stops/502002", "https://data.delijn.be/stops/507005"], ["https://data.delijn.be/stops/305173", "https://data.delijn.be/stops/305197"], ["https://data.delijn.be/stops/408537", "https://data.delijn.be/stops/408815"], ["https://data.delijn.be/stops/200694", "https://data.delijn.be/stops/200695"], ["https://data.delijn.be/stops/304651", "https://data.delijn.be/stops/304652"], ["https://data.delijn.be/stops/202270", "https://data.delijn.be/stops/203091"], ["https://data.delijn.be/stops/104382", "https://data.delijn.be/stops/104383"], ["https://data.delijn.be/stops/406555", "https://data.delijn.be/stops/406560"], ["https://data.delijn.be/stops/102918", "https://data.delijn.be/stops/103265"], ["https://data.delijn.be/stops/102407", "https://data.delijn.be/stops/109056"], ["https://data.delijn.be/stops/402328", "https://data.delijn.be/stops/406857"], ["https://data.delijn.be/stops/507357", "https://data.delijn.be/stops/507679"], ["https://data.delijn.be/stops/504690", "https://data.delijn.be/stops/509111"], ["https://data.delijn.be/stops/503435", "https://data.delijn.be/stops/503534"], ["https://data.delijn.be/stops/408276", "https://data.delijn.be/stops/408353"], ["https://data.delijn.be/stops/300719", "https://data.delijn.be/stops/300738"], ["https://data.delijn.be/stops/304968", "https://data.delijn.be/stops/304975"], ["https://data.delijn.be/stops/503817", "https://data.delijn.be/stops/508817"], ["https://data.delijn.be/stops/203844", "https://data.delijn.be/stops/211070"], ["https://data.delijn.be/stops/200957", "https://data.delijn.be/stops/201861"], ["https://data.delijn.be/stops/503086", "https://data.delijn.be/stops/503106"], ["https://data.delijn.be/stops/502911", "https://data.delijn.be/stops/507910"], ["https://data.delijn.be/stops/405299", "https://data.delijn.be/stops/407333"], ["https://data.delijn.be/stops/503024", "https://data.delijn.be/stops/505396"], ["https://data.delijn.be/stops/204016", "https://data.delijn.be/stops/204350"], ["https://data.delijn.be/stops/200375", "https://data.delijn.be/stops/201037"], ["https://data.delijn.be/stops/503887", "https://data.delijn.be/stops/508781"], ["https://data.delijn.be/stops/303310", "https://data.delijn.be/stops/303311"], ["https://data.delijn.be/stops/208166", "https://data.delijn.be/stops/208167"], ["https://data.delijn.be/stops/101518", "https://data.delijn.be/stops/101536"], ["https://data.delijn.be/stops/302255", "https://data.delijn.be/stops/302265"], ["https://data.delijn.be/stops/300363", "https://data.delijn.be/stops/300401"], ["https://data.delijn.be/stops/105327", "https://data.delijn.be/stops/105331"], ["https://data.delijn.be/stops/407011", "https://data.delijn.be/stops/408001"], ["https://data.delijn.be/stops/302626", "https://data.delijn.be/stops/302630"], ["https://data.delijn.be/stops/404696", "https://data.delijn.be/stops/404697"], ["https://data.delijn.be/stops/206419", "https://data.delijn.be/stops/216016"], ["https://data.delijn.be/stops/101274", "https://data.delijn.be/stops/103012"], ["https://data.delijn.be/stops/108441", "https://data.delijn.be/stops/109702"], ["https://data.delijn.be/stops/501463", "https://data.delijn.be/stops/506637"], ["https://data.delijn.be/stops/300633", "https://data.delijn.be/stops/305451"], ["https://data.delijn.be/stops/202573", "https://data.delijn.be/stops/203573"], ["https://data.delijn.be/stops/402428", "https://data.delijn.be/stops/410094"], ["https://data.delijn.be/stops/206352", "https://data.delijn.be/stops/207362"], ["https://data.delijn.be/stops/507921", "https://data.delijn.be/stops/509723"], ["https://data.delijn.be/stops/308487", "https://data.delijn.be/stops/308488"], ["https://data.delijn.be/stops/208344", "https://data.delijn.be/stops/209343"], ["https://data.delijn.be/stops/504004", "https://data.delijn.be/stops/509299"], ["https://data.delijn.be/stops/504699", "https://data.delijn.be/stops/509463"], ["https://data.delijn.be/stops/203115", "https://data.delijn.be/stops/205593"], ["https://data.delijn.be/stops/406005", "https://data.delijn.be/stops/406116"], ["https://data.delijn.be/stops/106285", "https://data.delijn.be/stops/106302"], ["https://data.delijn.be/stops/201135", "https://data.delijn.be/stops/202451"], ["https://data.delijn.be/stops/404418", "https://data.delijn.be/stops/404421"], ["https://data.delijn.be/stops/206113", "https://data.delijn.be/stops/206116"], ["https://data.delijn.be/stops/503793", "https://data.delijn.be/stops/508795"], ["https://data.delijn.be/stops/401192", "https://data.delijn.be/stops/410124"], ["https://data.delijn.be/stops/408425", "https://data.delijn.be/stops/408426"], ["https://data.delijn.be/stops/201349", "https://data.delijn.be/stops/209952"], ["https://data.delijn.be/stops/106108", "https://data.delijn.be/stops/106176"], ["https://data.delijn.be/stops/405920", "https://data.delijn.be/stops/405975"], ["https://data.delijn.be/stops/305098", "https://data.delijn.be/stops/305117"], ["https://data.delijn.be/stops/202107", "https://data.delijn.be/stops/203107"], ["https://data.delijn.be/stops/504820", "https://data.delijn.be/stops/508188"], ["https://data.delijn.be/stops/504608", "https://data.delijn.be/stops/505422"], ["https://data.delijn.be/stops/300099", "https://data.delijn.be/stops/307098"], ["https://data.delijn.be/stops/505768", "https://data.delijn.be/stops/507676"], ["https://data.delijn.be/stops/308725", "https://data.delijn.be/stops/308730"], ["https://data.delijn.be/stops/504091", "https://data.delijn.be/stops/509089"], ["https://data.delijn.be/stops/202793", "https://data.delijn.be/stops/203792"], ["https://data.delijn.be/stops/502352", "https://data.delijn.be/stops/502366"], ["https://data.delijn.be/stops/208437", "https://data.delijn.be/stops/208683"], ["https://data.delijn.be/stops/405782", "https://data.delijn.be/stops/405883"], ["https://data.delijn.be/stops/200306", "https://data.delijn.be/stops/202199"], ["https://data.delijn.be/stops/107976", "https://data.delijn.be/stops/306760"], ["https://data.delijn.be/stops/303560", "https://data.delijn.be/stops/308610"], ["https://data.delijn.be/stops/304145", "https://data.delijn.be/stops/304170"], ["https://data.delijn.be/stops/401549", "https://data.delijn.be/stops/406808"], ["https://data.delijn.be/stops/402407", "https://data.delijn.be/stops/402459"], ["https://data.delijn.be/stops/109745", "https://data.delijn.be/stops/109746"], ["https://data.delijn.be/stops/200460", "https://data.delijn.be/stops/200676"], ["https://data.delijn.be/stops/203697", "https://data.delijn.be/stops/203698"], ["https://data.delijn.be/stops/201967", "https://data.delijn.be/stops/206769"], ["https://data.delijn.be/stops/106640", "https://data.delijn.be/stops/106646"], ["https://data.delijn.be/stops/203186", "https://data.delijn.be/stops/203669"], ["https://data.delijn.be/stops/505739", "https://data.delijn.be/stops/507478"], ["https://data.delijn.be/stops/405041", "https://data.delijn.be/stops/405888"], ["https://data.delijn.be/stops/303587", "https://data.delijn.be/stops/308710"], ["https://data.delijn.be/stops/503141", "https://data.delijn.be/stops/508834"], ["https://data.delijn.be/stops/502204", "https://data.delijn.be/stops/505982"], ["https://data.delijn.be/stops/301500", "https://data.delijn.be/stops/301501"], ["https://data.delijn.be/stops/302154", "https://data.delijn.be/stops/302155"], ["https://data.delijn.be/stops/103185", "https://data.delijn.be/stops/103260"], ["https://data.delijn.be/stops/200995", "https://data.delijn.be/stops/201995"], ["https://data.delijn.be/stops/301694", "https://data.delijn.be/stops/303746"], ["https://data.delijn.be/stops/108940", "https://data.delijn.be/stops/108945"], ["https://data.delijn.be/stops/102235", "https://data.delijn.be/stops/102829"], ["https://data.delijn.be/stops/208092", "https://data.delijn.be/stops/209092"], ["https://data.delijn.be/stops/102841", "https://data.delijn.be/stops/103535"], ["https://data.delijn.be/stops/202103", "https://data.delijn.be/stops/203102"], ["https://data.delijn.be/stops/203229", "https://data.delijn.be/stops/203230"], ["https://data.delijn.be/stops/206807", "https://data.delijn.be/stops/207383"], ["https://data.delijn.be/stops/201606", "https://data.delijn.be/stops/201941"], ["https://data.delijn.be/stops/404666", "https://data.delijn.be/stops/404667"], ["https://data.delijn.be/stops/101001", "https://data.delijn.be/stops/106065"], ["https://data.delijn.be/stops/503568", "https://data.delijn.be/stops/508300"], ["https://data.delijn.be/stops/107964", "https://data.delijn.be/stops/108029"], ["https://data.delijn.be/stops/202377", "https://data.delijn.be/stops/203378"], ["https://data.delijn.be/stops/502326", "https://data.delijn.be/stops/507658"], ["https://data.delijn.be/stops/304736", "https://data.delijn.be/stops/308698"], ["https://data.delijn.be/stops/204449", "https://data.delijn.be/stops/205310"], ["https://data.delijn.be/stops/501745", "https://data.delijn.be/stops/507745"], ["https://data.delijn.be/stops/106523", "https://data.delijn.be/stops/106524"], ["https://data.delijn.be/stops/302332", "https://data.delijn.be/stops/302343"], ["https://data.delijn.be/stops/209709", "https://data.delijn.be/stops/209710"], ["https://data.delijn.be/stops/207542", "https://data.delijn.be/stops/207561"], ["https://data.delijn.be/stops/407103", "https://data.delijn.be/stops/407302"], ["https://data.delijn.be/stops/404628", "https://data.delijn.be/stops/406957"], ["https://data.delijn.be/stops/302309", "https://data.delijn.be/stops/302333"], ["https://data.delijn.be/stops/302188", "https://data.delijn.be/stops/302189"], ["https://data.delijn.be/stops/404594", "https://data.delijn.be/stops/406902"], ["https://data.delijn.be/stops/507027", "https://data.delijn.be/stops/507283"], ["https://data.delijn.be/stops/209078", "https://data.delijn.be/stops/219028"], ["https://data.delijn.be/stops/405733", "https://data.delijn.be/stops/405739"], ["https://data.delijn.be/stops/202174", "https://data.delijn.be/stops/203190"], ["https://data.delijn.be/stops/504108", "https://data.delijn.be/stops/508916"], ["https://data.delijn.be/stops/104345", "https://data.delijn.be/stops/105800"], ["https://data.delijn.be/stops/104964", "https://data.delijn.be/stops/108647"], ["https://data.delijn.be/stops/503145", "https://data.delijn.be/stops/504856"], ["https://data.delijn.be/stops/101048", "https://data.delijn.be/stops/205604"], ["https://data.delijn.be/stops/503486", "https://data.delijn.be/stops/503989"], ["https://data.delijn.be/stops/504250", "https://data.delijn.be/stops/504596"], ["https://data.delijn.be/stops/304951", "https://data.delijn.be/stops/308022"], ["https://data.delijn.be/stops/400849", "https://data.delijn.be/stops/405666"], ["https://data.delijn.be/stops/200824", "https://data.delijn.be/stops/203331"], ["https://data.delijn.be/stops/401482", "https://data.delijn.be/stops/401483"], ["https://data.delijn.be/stops/303475", "https://data.delijn.be/stops/303476"], ["https://data.delijn.be/stops/201710", "https://data.delijn.be/stops/201711"], ["https://data.delijn.be/stops/409676", "https://data.delijn.be/stops/409685"], ["https://data.delijn.be/stops/504228", "https://data.delijn.be/stops/509224"], ["https://data.delijn.be/stops/202206", "https://data.delijn.be/stops/203207"], ["https://data.delijn.be/stops/502249", "https://data.delijn.be/stops/507255"], ["https://data.delijn.be/stops/402416", "https://data.delijn.be/stops/402417"], ["https://data.delijn.be/stops/103108", "https://data.delijn.be/stops/104493"], ["https://data.delijn.be/stops/301477", "https://data.delijn.be/stops/308705"], ["https://data.delijn.be/stops/507947", "https://data.delijn.be/stops/507948"], ["https://data.delijn.be/stops/302357", "https://data.delijn.be/stops/302360"], ["https://data.delijn.be/stops/401490", "https://data.delijn.be/stops/401883"], ["https://data.delijn.be/stops/109351", "https://data.delijn.be/stops/307428"], ["https://data.delijn.be/stops/101972", "https://data.delijn.be/stops/109293"], ["https://data.delijn.be/stops/305640", "https://data.delijn.be/stops/305766"], ["https://data.delijn.be/stops/302938", "https://data.delijn.be/stops/303519"], ["https://data.delijn.be/stops/505056", "https://data.delijn.be/stops/505315"], ["https://data.delijn.be/stops/201140", "https://data.delijn.be/stops/201368"], ["https://data.delijn.be/stops/201337", "https://data.delijn.be/stops/205951"], ["https://data.delijn.be/stops/207787", "https://data.delijn.be/stops/207790"], ["https://data.delijn.be/stops/208337", "https://data.delijn.be/stops/208338"], ["https://data.delijn.be/stops/102593", "https://data.delijn.be/stops/102599"], ["https://data.delijn.be/stops/101749", "https://data.delijn.be/stops/106382"], ["https://data.delijn.be/stops/304624", "https://data.delijn.be/stops/307027"], ["https://data.delijn.be/stops/408733", "https://data.delijn.be/stops/410249"], ["https://data.delijn.be/stops/206776", "https://data.delijn.be/stops/209482"], ["https://data.delijn.be/stops/303023", "https://data.delijn.be/stops/307143"], ["https://data.delijn.be/stops/400930", "https://data.delijn.be/stops/400933"], ["https://data.delijn.be/stops/306199", "https://data.delijn.be/stops/307279"], ["https://data.delijn.be/stops/102247", "https://data.delijn.be/stops/103301"], ["https://data.delijn.be/stops/306316", "https://data.delijn.be/stops/306319"], ["https://data.delijn.be/stops/505848", "https://data.delijn.be/stops/505993"], ["https://data.delijn.be/stops/504094", "https://data.delijn.be/stops/505193"], ["https://data.delijn.be/stops/300354", "https://data.delijn.be/stops/300402"], ["https://data.delijn.be/stops/102222", "https://data.delijn.be/stops/102223"], ["https://data.delijn.be/stops/404308", "https://data.delijn.be/stops/404309"], ["https://data.delijn.be/stops/502034", "https://data.delijn.be/stops/502048"], ["https://data.delijn.be/stops/502745", "https://data.delijn.be/stops/502747"], ["https://data.delijn.be/stops/108666", "https://data.delijn.be/stops/306631"], ["https://data.delijn.be/stops/503123", "https://data.delijn.be/stops/505901"], ["https://data.delijn.be/stops/202090", "https://data.delijn.be/stops/202689"], ["https://data.delijn.be/stops/303116", "https://data.delijn.be/stops/304223"], ["https://data.delijn.be/stops/201953", "https://data.delijn.be/stops/202464"], ["https://data.delijn.be/stops/106117", "https://data.delijn.be/stops/108803"], ["https://data.delijn.be/stops/501207", "https://data.delijn.be/stops/505032"], ["https://data.delijn.be/stops/502182", "https://data.delijn.be/stops/507176"], ["https://data.delijn.be/stops/201031", "https://data.delijn.be/stops/201335"], ["https://data.delijn.be/stops/308569", "https://data.delijn.be/stops/308573"], ["https://data.delijn.be/stops/300063", "https://data.delijn.be/stops/308541"], ["https://data.delijn.be/stops/107483", "https://data.delijn.be/stops/107516"], ["https://data.delijn.be/stops/106629", "https://data.delijn.be/stops/106673"], ["https://data.delijn.be/stops/106960", "https://data.delijn.be/stops/106962"], ["https://data.delijn.be/stops/405330", "https://data.delijn.be/stops/409281"], ["https://data.delijn.be/stops/302984", "https://data.delijn.be/stops/303618"], ["https://data.delijn.be/stops/206214", "https://data.delijn.be/stops/207821"], ["https://data.delijn.be/stops/108562", "https://data.delijn.be/stops/109102"], ["https://data.delijn.be/stops/106468", "https://data.delijn.be/stops/106469"], ["https://data.delijn.be/stops/300504", "https://data.delijn.be/stops/302419"], ["https://data.delijn.be/stops/503899", "https://data.delijn.be/stops/504358"], ["https://data.delijn.be/stops/105709", "https://data.delijn.be/stops/105712"], ["https://data.delijn.be/stops/206711", "https://data.delijn.be/stops/206976"], ["https://data.delijn.be/stops/405816", "https://data.delijn.be/stops/405817"], ["https://data.delijn.be/stops/108046", "https://data.delijn.be/stops/108047"], ["https://data.delijn.be/stops/304013", "https://data.delijn.be/stops/307815"], ["https://data.delijn.be/stops/504725", "https://data.delijn.be/stops/505307"], ["https://data.delijn.be/stops/203212", "https://data.delijn.be/stops/211117"], ["https://data.delijn.be/stops/106623", "https://data.delijn.be/stops/106627"], ["https://data.delijn.be/stops/106620", "https://data.delijn.be/stops/106621"], ["https://data.delijn.be/stops/203250", "https://data.delijn.be/stops/203251"], ["https://data.delijn.be/stops/202065", "https://data.delijn.be/stops/203725"], ["https://data.delijn.be/stops/401499", "https://data.delijn.be/stops/401548"], ["https://data.delijn.be/stops/201234", "https://data.delijn.be/stops/201450"], ["https://data.delijn.be/stops/205391", "https://data.delijn.be/stops/205415"], ["https://data.delijn.be/stops/401536", "https://data.delijn.be/stops/401538"], ["https://data.delijn.be/stops/108714", "https://data.delijn.be/stops/108715"], ["https://data.delijn.be/stops/105577", "https://data.delijn.be/stops/106357"], ["https://data.delijn.be/stops/211109", "https://data.delijn.be/stops/219953"], ["https://data.delijn.be/stops/507521", "https://data.delijn.be/stops/507522"], ["https://data.delijn.be/stops/101481", "https://data.delijn.be/stops/109288"], ["https://data.delijn.be/stops/305498", "https://data.delijn.be/stops/307826"], ["https://data.delijn.be/stops/304863", "https://data.delijn.be/stops/308991"], ["https://data.delijn.be/stops/204327", "https://data.delijn.be/stops/205536"], ["https://data.delijn.be/stops/407463", "https://data.delijn.be/stops/409255"], ["https://data.delijn.be/stops/301141", "https://data.delijn.be/stops/302882"], ["https://data.delijn.be/stops/301325", "https://data.delijn.be/stops/301913"], ["https://data.delijn.be/stops/104458", "https://data.delijn.be/stops/105979"], ["https://data.delijn.be/stops/101550", "https://data.delijn.be/stops/105515"], ["https://data.delijn.be/stops/103275", "https://data.delijn.be/stops/107845"], ["https://data.delijn.be/stops/107976", "https://data.delijn.be/stops/107977"], ["https://data.delijn.be/stops/306940", "https://data.delijn.be/stops/306942"], ["https://data.delijn.be/stops/305232", "https://data.delijn.be/stops/305249"], ["https://data.delijn.be/stops/302856", "https://data.delijn.be/stops/302857"], ["https://data.delijn.be/stops/307388", "https://data.delijn.be/stops/307390"], ["https://data.delijn.be/stops/101298", "https://data.delijn.be/stops/105771"], ["https://data.delijn.be/stops/206600", "https://data.delijn.be/stops/306973"], ["https://data.delijn.be/stops/407040", "https://data.delijn.be/stops/407041"], ["https://data.delijn.be/stops/105075", "https://data.delijn.be/stops/108881"], ["https://data.delijn.be/stops/305169", "https://data.delijn.be/stops/305170"], ["https://data.delijn.be/stops/402863", "https://data.delijn.be/stops/408077"], ["https://data.delijn.be/stops/407010", "https://data.delijn.be/stops/407052"], ["https://data.delijn.be/stops/501358", "https://data.delijn.be/stops/506294"], ["https://data.delijn.be/stops/102913", "https://data.delijn.be/stops/106713"], ["https://data.delijn.be/stops/101142", "https://data.delijn.be/stops/108415"], ["https://data.delijn.be/stops/502232", "https://data.delijn.be/stops/507699"], ["https://data.delijn.be/stops/102410", "https://data.delijn.be/stops/105570"], ["https://data.delijn.be/stops/106802", "https://data.delijn.be/stops/106806"], ["https://data.delijn.be/stops/504241", "https://data.delijn.be/stops/504242"], ["https://data.delijn.be/stops/408158", "https://data.delijn.be/stops/408159"], ["https://data.delijn.be/stops/101068", "https://data.delijn.be/stops/101069"], ["https://data.delijn.be/stops/402098", "https://data.delijn.be/stops/402286"], ["https://data.delijn.be/stops/502566", "https://data.delijn.be/stops/507567"], ["https://data.delijn.be/stops/107906", "https://data.delijn.be/stops/107952"], ["https://data.delijn.be/stops/407603", "https://data.delijn.be/stops/407746"], ["https://data.delijn.be/stops/205294", "https://data.delijn.be/stops/205536"], ["https://data.delijn.be/stops/404459", "https://data.delijn.be/stops/404490"], ["https://data.delijn.be/stops/403001", "https://data.delijn.be/stops/403133"], ["https://data.delijn.be/stops/107743", "https://data.delijn.be/stops/107745"], ["https://data.delijn.be/stops/300149", "https://data.delijn.be/stops/306855"], ["https://data.delijn.be/stops/303308", "https://data.delijn.be/stops/303311"], ["https://data.delijn.be/stops/302578", "https://data.delijn.be/stops/302603"], ["https://data.delijn.be/stops/501292", "https://data.delijn.be/stops/506742"], ["https://data.delijn.be/stops/406736", "https://data.delijn.be/stops/407144"], ["https://data.delijn.be/stops/502545", "https://data.delijn.be/stops/507545"], ["https://data.delijn.be/stops/501371", "https://data.delijn.be/stops/504371"], ["https://data.delijn.be/stops/302010", "https://data.delijn.be/stops/303894"], ["https://data.delijn.be/stops/107962", "https://data.delijn.be/stops/108028"], ["https://data.delijn.be/stops/407984", "https://data.delijn.be/stops/407985"], ["https://data.delijn.be/stops/503396", "https://data.delijn.be/stops/508396"], ["https://data.delijn.be/stops/200563", "https://data.delijn.be/stops/200564"], ["https://data.delijn.be/stops/403039", "https://data.delijn.be/stops/404758"], ["https://data.delijn.be/stops/102645", "https://data.delijn.be/stops/102650"], ["https://data.delijn.be/stops/509278", "https://data.delijn.be/stops/509283"], ["https://data.delijn.be/stops/301228", "https://data.delijn.be/stops/304270"], ["https://data.delijn.be/stops/302713", "https://data.delijn.be/stops/302717"], ["https://data.delijn.be/stops/301190", "https://data.delijn.be/stops/301198"], ["https://data.delijn.be/stops/401829", "https://data.delijn.be/stops/401835"], ["https://data.delijn.be/stops/105412", "https://data.delijn.be/stops/105416"], ["https://data.delijn.be/stops/500940", "https://data.delijn.be/stops/509942"], ["https://data.delijn.be/stops/405832", "https://data.delijn.be/stops/409727"], ["https://data.delijn.be/stops/202328", "https://data.delijn.be/stops/203329"], ["https://data.delijn.be/stops/102467", "https://data.delijn.be/stops/400414"], ["https://data.delijn.be/stops/107508", "https://data.delijn.be/stops/107512"], ["https://data.delijn.be/stops/208465", "https://data.delijn.be/stops/208466"], ["https://data.delijn.be/stops/208486", "https://data.delijn.be/stops/209486"], ["https://data.delijn.be/stops/503519", "https://data.delijn.be/stops/508519"], ["https://data.delijn.be/stops/204042", "https://data.delijn.be/stops/204483"], ["https://data.delijn.be/stops/109210", "https://data.delijn.be/stops/109211"], ["https://data.delijn.be/stops/504350", "https://data.delijn.be/stops/504703"], ["https://data.delijn.be/stops/303986", "https://data.delijn.be/stops/307008"], ["https://data.delijn.be/stops/403708", "https://data.delijn.be/stops/403720"], ["https://data.delijn.be/stops/105976", "https://data.delijn.be/stops/205641"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/203626"], ["https://data.delijn.be/stops/302114", "https://data.delijn.be/stops/303127"], ["https://data.delijn.be/stops/200590", "https://data.delijn.be/stops/200591"], ["https://data.delijn.be/stops/208079", "https://data.delijn.be/stops/209096"], ["https://data.delijn.be/stops/107378", "https://data.delijn.be/stops/109660"], ["https://data.delijn.be/stops/200893", "https://data.delijn.be/stops/203793"], ["https://data.delijn.be/stops/109085", "https://data.delijn.be/stops/109877"], ["https://data.delijn.be/stops/200154", "https://data.delijn.be/stops/201453"], ["https://data.delijn.be/stops/204677", "https://data.delijn.be/stops/205316"], ["https://data.delijn.be/stops/206934", "https://data.delijn.be/stops/207040"], ["https://data.delijn.be/stops/106182", "https://data.delijn.be/stops/106183"], ["https://data.delijn.be/stops/202205", "https://data.delijn.be/stops/202206"], ["https://data.delijn.be/stops/211006", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/104100", "https://data.delijn.be/stops/108375"], ["https://data.delijn.be/stops/200482", "https://data.delijn.be/stops/201346"], ["https://data.delijn.be/stops/208393", "https://data.delijn.be/stops/208421"], ["https://data.delijn.be/stops/400468", "https://data.delijn.be/stops/400469"], ["https://data.delijn.be/stops/204540", "https://data.delijn.be/stops/205554"], ["https://data.delijn.be/stops/405198", "https://data.delijn.be/stops/405199"], ["https://data.delijn.be/stops/300059", "https://data.delijn.be/stops/306801"], ["https://data.delijn.be/stops/105630", "https://data.delijn.be/stops/105635"], ["https://data.delijn.be/stops/209056", "https://data.delijn.be/stops/209657"], ["https://data.delijn.be/stops/208254", "https://data.delijn.be/stops/208256"], ["https://data.delijn.be/stops/302015", "https://data.delijn.be/stops/302034"], ["https://data.delijn.be/stops/107738", "https://data.delijn.be/stops/107739"], ["https://data.delijn.be/stops/303455", "https://data.delijn.be/stops/303456"], ["https://data.delijn.be/stops/503591", "https://data.delijn.be/stops/505581"], ["https://data.delijn.be/stops/303170", "https://data.delijn.be/stops/303171"], ["https://data.delijn.be/stops/405351", "https://data.delijn.be/stops/302837"], ["https://data.delijn.be/stops/304841", "https://data.delijn.be/stops/304842"], ["https://data.delijn.be/stops/304249", "https://data.delijn.be/stops/304299"], ["https://data.delijn.be/stops/103760", "https://data.delijn.be/stops/104265"], ["https://data.delijn.be/stops/304041", "https://data.delijn.be/stops/308945"], ["https://data.delijn.be/stops/105553", "https://data.delijn.be/stops/106026"], ["https://data.delijn.be/stops/107649", "https://data.delijn.be/stops/108958"], ["https://data.delijn.be/stops/104962", "https://data.delijn.be/stops/107539"], ["https://data.delijn.be/stops/410120", "https://data.delijn.be/stops/410285"], ["https://data.delijn.be/stops/201871", "https://data.delijn.be/stops/203664"], ["https://data.delijn.be/stops/303418", "https://data.delijn.be/stops/306956"], ["https://data.delijn.be/stops/200987", "https://data.delijn.be/stops/201198"], ["https://data.delijn.be/stops/506172", "https://data.delijn.be/stops/506175"], ["https://data.delijn.be/stops/106078", "https://data.delijn.be/stops/106080"], ["https://data.delijn.be/stops/203894", "https://data.delijn.be/stops/208286"], ["https://data.delijn.be/stops/200264", "https://data.delijn.be/stops/200265"], ["https://data.delijn.be/stops/103688", "https://data.delijn.be/stops/103689"], ["https://data.delijn.be/stops/200074", "https://data.delijn.be/stops/201075"], ["https://data.delijn.be/stops/509371", "https://data.delijn.be/stops/509372"], ["https://data.delijn.be/stops/302869", "https://data.delijn.be/stops/302891"], ["https://data.delijn.be/stops/205501", "https://data.delijn.be/stops/205502"], ["https://data.delijn.be/stops/302141", "https://data.delijn.be/stops/308085"], ["https://data.delijn.be/stops/206752", "https://data.delijn.be/stops/208477"], ["https://data.delijn.be/stops/207538", "https://data.delijn.be/stops/207559"], ["https://data.delijn.be/stops/200274", "https://data.delijn.be/stops/201373"], ["https://data.delijn.be/stops/200825", "https://data.delijn.be/stops/200863"], ["https://data.delijn.be/stops/408880", "https://data.delijn.be/stops/408881"], ["https://data.delijn.be/stops/202529", "https://data.delijn.be/stops/206826"], ["https://data.delijn.be/stops/504816", "https://data.delijn.be/stops/508817"], ["https://data.delijn.be/stops/103095", "https://data.delijn.be/stops/104575"], ["https://data.delijn.be/stops/301647", "https://data.delijn.be/stops/303661"], ["https://data.delijn.be/stops/105769", "https://data.delijn.be/stops/105776"], ["https://data.delijn.be/stops/101725", "https://data.delijn.be/stops/108005"], ["https://data.delijn.be/stops/200702", "https://data.delijn.be/stops/202614"], ["https://data.delijn.be/stops/305524", "https://data.delijn.be/stops/307011"], ["https://data.delijn.be/stops/503648", "https://data.delijn.be/stops/503667"], ["https://data.delijn.be/stops/303743", "https://data.delijn.be/stops/303748"], ["https://data.delijn.be/stops/202288", "https://data.delijn.be/stops/203288"], ["https://data.delijn.be/stops/208473", "https://data.delijn.be/stops/209669"], ["https://data.delijn.be/stops/300259", "https://data.delijn.be/stops/307497"], ["https://data.delijn.be/stops/208082", "https://data.delijn.be/stops/209083"], ["https://data.delijn.be/stops/504352", "https://data.delijn.be/stops/505975"], ["https://data.delijn.be/stops/305148", "https://data.delijn.be/stops/305177"], ["https://data.delijn.be/stops/105690", "https://data.delijn.be/stops/105692"], ["https://data.delijn.be/stops/106609", "https://data.delijn.be/stops/106611"], ["https://data.delijn.be/stops/507020", "https://data.delijn.be/stops/507022"], ["https://data.delijn.be/stops/403279", "https://data.delijn.be/stops/403419"], ["https://data.delijn.be/stops/101848", "https://data.delijn.be/stops/102091"], ["https://data.delijn.be/stops/206467", "https://data.delijn.be/stops/206825"], ["https://data.delijn.be/stops/407833", "https://data.delijn.be/stops/407837"], ["https://data.delijn.be/stops/202831", "https://data.delijn.be/stops/218023"], ["https://data.delijn.be/stops/406229", "https://data.delijn.be/stops/406287"], ["https://data.delijn.be/stops/503316", "https://data.delijn.be/stops/508316"], ["https://data.delijn.be/stops/202024", "https://data.delijn.be/stops/202349"], ["https://data.delijn.be/stops/304154", "https://data.delijn.be/stops/304541"], ["https://data.delijn.be/stops/407314", "https://data.delijn.be/stops/407315"], ["https://data.delijn.be/stops/102174", "https://data.delijn.be/stops/109363"], ["https://data.delijn.be/stops/207064", "https://data.delijn.be/stops/207520"], ["https://data.delijn.be/stops/202834", "https://data.delijn.be/stops/203835"], ["https://data.delijn.be/stops/302173", "https://data.delijn.be/stops/302183"], ["https://data.delijn.be/stops/208131", "https://data.delijn.be/stops/209131"], ["https://data.delijn.be/stops/400095", "https://data.delijn.be/stops/400157"], ["https://data.delijn.be/stops/401451", "https://data.delijn.be/stops/402034"], ["https://data.delijn.be/stops/205210", "https://data.delijn.be/stops/205696"], ["https://data.delijn.be/stops/301359", "https://data.delijn.be/stops/301361"], ["https://data.delijn.be/stops/302879", "https://data.delijn.be/stops/304711"], ["https://data.delijn.be/stops/208750", "https://data.delijn.be/stops/209449"], ["https://data.delijn.be/stops/206523", "https://data.delijn.be/stops/206524"], ["https://data.delijn.be/stops/106343", "https://data.delijn.be/stops/106344"], ["https://data.delijn.be/stops/402119", "https://data.delijn.be/stops/409286"], ["https://data.delijn.be/stops/105864", "https://data.delijn.be/stops/105865"], ["https://data.delijn.be/stops/107492", "https://data.delijn.be/stops/305795"], ["https://data.delijn.be/stops/200895", "https://data.delijn.be/stops/202285"], ["https://data.delijn.be/stops/104397", "https://data.delijn.be/stops/104399"], ["https://data.delijn.be/stops/502495", "https://data.delijn.be/stops/507503"], ["https://data.delijn.be/stops/102181", "https://data.delijn.be/stops/102272"], ["https://data.delijn.be/stops/101574", "https://data.delijn.be/stops/105669"], ["https://data.delijn.be/stops/204027", "https://data.delijn.be/stops/205027"], ["https://data.delijn.be/stops/502181", "https://data.delijn.be/stops/507686"], ["https://data.delijn.be/stops/105288", "https://data.delijn.be/stops/108727"], ["https://data.delijn.be/stops/301897", "https://data.delijn.be/stops/305755"], ["https://data.delijn.be/stops/300668", "https://data.delijn.be/stops/300677"], ["https://data.delijn.be/stops/301268", "https://data.delijn.be/stops/304980"], ["https://data.delijn.be/stops/102654", "https://data.delijn.be/stops/103681"], ["https://data.delijn.be/stops/301740", "https://data.delijn.be/stops/305909"], ["https://data.delijn.be/stops/108737", "https://data.delijn.be/stops/108763"], ["https://data.delijn.be/stops/408773", "https://data.delijn.be/stops/410192"], ["https://data.delijn.be/stops/101297", "https://data.delijn.be/stops/101298"], ["https://data.delijn.be/stops/408167", "https://data.delijn.be/stops/410161"], ["https://data.delijn.be/stops/108934", "https://data.delijn.be/stops/109221"], ["https://data.delijn.be/stops/304037", "https://data.delijn.be/stops/306375"], ["https://data.delijn.be/stops/206737", "https://data.delijn.be/stops/206738"], ["https://data.delijn.be/stops/300193", "https://data.delijn.be/stops/300196"], ["https://data.delijn.be/stops/402567", "https://data.delijn.be/stops/404064"], ["https://data.delijn.be/stops/504101", "https://data.delijn.be/stops/509101"], ["https://data.delijn.be/stops/506205", "https://data.delijn.be/stops/506290"], ["https://data.delijn.be/stops/400288", "https://data.delijn.be/stops/400333"], ["https://data.delijn.be/stops/503553", "https://data.delijn.be/stops/503571"], ["https://data.delijn.be/stops/301330", "https://data.delijn.be/stops/301389"], ["https://data.delijn.be/stops/302294", "https://data.delijn.be/stops/304951"], ["https://data.delijn.be/stops/305598", "https://data.delijn.be/stops/305772"], ["https://data.delijn.be/stops/504100", "https://data.delijn.be/stops/504759"], ["https://data.delijn.be/stops/302016", "https://data.delijn.be/stops/302032"], ["https://data.delijn.be/stops/501247", "https://data.delijn.be/stops/506231"], ["https://data.delijn.be/stops/409256", "https://data.delijn.be/stops/409257"], ["https://data.delijn.be/stops/202560", "https://data.delijn.be/stops/202610"], ["https://data.delijn.be/stops/501015", "https://data.delijn.be/stops/501412"], ["https://data.delijn.be/stops/206097", "https://data.delijn.be/stops/207931"], ["https://data.delijn.be/stops/303404", "https://data.delijn.be/stops/304553"], ["https://data.delijn.be/stops/102457", "https://data.delijn.be/stops/406859"], ["https://data.delijn.be/stops/305386", "https://data.delijn.be/stops/305388"], ["https://data.delijn.be/stops/408204", "https://data.delijn.be/stops/408310"], ["https://data.delijn.be/stops/204311", "https://data.delijn.be/stops/205312"], ["https://data.delijn.be/stops/503444", "https://data.delijn.be/stops/503534"], ["https://data.delijn.be/stops/105787", "https://data.delijn.be/stops/105790"], ["https://data.delijn.be/stops/501552", "https://data.delijn.be/stops/501555"], ["https://data.delijn.be/stops/408666", "https://data.delijn.be/stops/408704"], ["https://data.delijn.be/stops/408251", "https://data.delijn.be/stops/408290"], ["https://data.delijn.be/stops/403430", "https://data.delijn.be/stops/403432"], ["https://data.delijn.be/stops/200086", "https://data.delijn.be/stops/201956"], ["https://data.delijn.be/stops/400252", "https://data.delijn.be/stops/405585"], ["https://data.delijn.be/stops/206503", "https://data.delijn.be/stops/207503"], ["https://data.delijn.be/stops/302054", "https://data.delijn.be/stops/307073"], ["https://data.delijn.be/stops/408392", "https://data.delijn.be/stops/409644"], ["https://data.delijn.be/stops/203874", "https://data.delijn.be/stops/206968"], ["https://data.delijn.be/stops/303428", "https://data.delijn.be/stops/303429"], ["https://data.delijn.be/stops/107226", "https://data.delijn.be/stops/109889"], ["https://data.delijn.be/stops/302369", "https://data.delijn.be/stops/307854"], ["https://data.delijn.be/stops/302782", "https://data.delijn.be/stops/307045"], ["https://data.delijn.be/stops/202767", "https://data.delijn.be/stops/203767"], ["https://data.delijn.be/stops/403211", "https://data.delijn.be/stops/410213"], ["https://data.delijn.be/stops/503147", "https://data.delijn.be/stops/509884"], ["https://data.delijn.be/stops/509736", "https://data.delijn.be/stops/509737"], ["https://data.delijn.be/stops/102581", "https://data.delijn.be/stops/105260"], ["https://data.delijn.be/stops/505935", "https://data.delijn.be/stops/508300"], ["https://data.delijn.be/stops/306797", "https://data.delijn.be/stops/307732"], ["https://data.delijn.be/stops/503821", "https://data.delijn.be/stops/508821"], ["https://data.delijn.be/stops/505240", "https://data.delijn.be/stops/505413"], ["https://data.delijn.be/stops/301138", "https://data.delijn.be/stops/301166"], ["https://data.delijn.be/stops/209731", "https://data.delijn.be/stops/209732"], ["https://data.delijn.be/stops/206231", "https://data.delijn.be/stops/300152"], ["https://data.delijn.be/stops/401160", "https://data.delijn.be/stops/408119"], ["https://data.delijn.be/stops/406520", "https://data.delijn.be/stops/407503"], ["https://data.delijn.be/stops/201811", "https://data.delijn.be/stops/201830"], ["https://data.delijn.be/stops/106818", "https://data.delijn.be/stops/106985"], ["https://data.delijn.be/stops/502147", "https://data.delijn.be/stops/502168"], ["https://data.delijn.be/stops/202132", "https://data.delijn.be/stops/203131"], ["https://data.delijn.be/stops/305261", "https://data.delijn.be/stops/305262"], ["https://data.delijn.be/stops/202665", "https://data.delijn.be/stops/203664"], ["https://data.delijn.be/stops/306186", "https://data.delijn.be/stops/306291"], ["https://data.delijn.be/stops/504113", "https://data.delijn.be/stops/505855"], ["https://data.delijn.be/stops/508400", "https://data.delijn.be/stops/508426"], ["https://data.delijn.be/stops/201873", "https://data.delijn.be/stops/203025"], ["https://data.delijn.be/stops/203876", "https://data.delijn.be/stops/203880"], ["https://data.delijn.be/stops/401420", "https://data.delijn.be/stops/401497"], ["https://data.delijn.be/stops/502605", "https://data.delijn.be/stops/507606"], ["https://data.delijn.be/stops/503897", "https://data.delijn.be/stops/504941"], ["https://data.delijn.be/stops/108630", "https://data.delijn.be/stops/108635"], ["https://data.delijn.be/stops/505540", "https://data.delijn.be/stops/508810"], ["https://data.delijn.be/stops/409251", "https://data.delijn.be/stops/409274"], ["https://data.delijn.be/stops/207276", "https://data.delijn.be/stops/207962"], ["https://data.delijn.be/stops/206794", "https://data.delijn.be/stops/208034"], ["https://data.delijn.be/stops/302938", "https://data.delijn.be/stops/302955"], ["https://data.delijn.be/stops/304534", "https://data.delijn.be/stops/307574"], ["https://data.delijn.be/stops/401224", "https://data.delijn.be/stops/401378"], ["https://data.delijn.be/stops/307213", "https://data.delijn.be/stops/307215"], ["https://data.delijn.be/stops/503859", "https://data.delijn.be/stops/508854"], ["https://data.delijn.be/stops/207348", "https://data.delijn.be/stops/207729"], ["https://data.delijn.be/stops/200264", "https://data.delijn.be/stops/202545"], ["https://data.delijn.be/stops/308503", "https://data.delijn.be/stops/308539"], ["https://data.delijn.be/stops/200505", "https://data.delijn.be/stops/208941"], ["https://data.delijn.be/stops/103749", "https://data.delijn.be/stops/103751"], ["https://data.delijn.be/stops/101079", "https://data.delijn.be/stops/101081"], ["https://data.delijn.be/stops/201865", "https://data.delijn.be/stops/210038"], ["https://data.delijn.be/stops/200409", "https://data.delijn.be/stops/201408"], ["https://data.delijn.be/stops/102914", "https://data.delijn.be/stops/103300"], ["https://data.delijn.be/stops/407399", "https://data.delijn.be/stops/407422"], ["https://data.delijn.be/stops/406241", "https://data.delijn.be/stops/406258"], ["https://data.delijn.be/stops/506154", "https://data.delijn.be/stops/509836"], ["https://data.delijn.be/stops/207884", "https://data.delijn.be/stops/207885"], ["https://data.delijn.be/stops/302423", "https://data.delijn.be/stops/308814"], ["https://data.delijn.be/stops/108738", "https://data.delijn.be/stops/108762"], ["https://data.delijn.be/stops/206490", "https://data.delijn.be/stops/207489"], ["https://data.delijn.be/stops/505988", "https://data.delijn.be/stops/509478"], ["https://data.delijn.be/stops/502666", "https://data.delijn.be/stops/507553"], ["https://data.delijn.be/stops/104723", "https://data.delijn.be/stops/104724"], ["https://data.delijn.be/stops/304485", "https://data.delijn.be/stops/307569"], ["https://data.delijn.be/stops/101780", "https://data.delijn.be/stops/102965"], ["https://data.delijn.be/stops/104093", "https://data.delijn.be/stops/405881"], ["https://data.delijn.be/stops/206082", "https://data.delijn.be/stops/206737"], ["https://data.delijn.be/stops/202658", "https://data.delijn.be/stops/202659"], ["https://data.delijn.be/stops/401539", "https://data.delijn.be/stops/401883"], ["https://data.delijn.be/stops/508092", "https://data.delijn.be/stops/508194"], ["https://data.delijn.be/stops/407176", "https://data.delijn.be/stops/407177"], ["https://data.delijn.be/stops/503705", "https://data.delijn.be/stops/508748"], ["https://data.delijn.be/stops/109282", "https://data.delijn.be/stops/109736"], ["https://data.delijn.be/stops/208280", "https://data.delijn.be/stops/209280"], ["https://data.delijn.be/stops/405366", "https://data.delijn.be/stops/405372"], ["https://data.delijn.be/stops/308514", "https://data.delijn.be/stops/308540"], ["https://data.delijn.be/stops/106834", "https://data.delijn.be/stops/106974"], ["https://data.delijn.be/stops/101834", "https://data.delijn.be/stops/107091"], ["https://data.delijn.be/stops/208633", "https://data.delijn.be/stops/209633"], ["https://data.delijn.be/stops/201055", "https://data.delijn.be/stops/210003"], ["https://data.delijn.be/stops/305954", "https://data.delijn.be/stops/305959"], ["https://data.delijn.be/stops/101822", "https://data.delijn.be/stops/107071"], ["https://data.delijn.be/stops/202519", "https://data.delijn.be/stops/202525"], ["https://data.delijn.be/stops/106624", "https://data.delijn.be/stops/106630"], ["https://data.delijn.be/stops/106107", "https://data.delijn.be/stops/109373"], ["https://data.delijn.be/stops/206421", "https://data.delijn.be/stops/206965"], ["https://data.delijn.be/stops/102566", "https://data.delijn.be/stops/105851"], ["https://data.delijn.be/stops/402492", "https://data.delijn.be/stops/402494"], ["https://data.delijn.be/stops/102225", "https://data.delijn.be/stops/103025"], ["https://data.delijn.be/stops/108608", "https://data.delijn.be/stops/300069"], ["https://data.delijn.be/stops/208025", "https://data.delijn.be/stops/208037"], ["https://data.delijn.be/stops/203322", "https://data.delijn.be/stops/210044"], ["https://data.delijn.be/stops/206738", "https://data.delijn.be/stops/306973"], ["https://data.delijn.be/stops/103610", "https://data.delijn.be/stops/108300"], ["https://data.delijn.be/stops/501344", "https://data.delijn.be/stops/501568"], ["https://data.delijn.be/stops/502722", "https://data.delijn.be/stops/507242"], ["https://data.delijn.be/stops/403738", "https://data.delijn.be/stops/403739"], ["https://data.delijn.be/stops/302567", "https://data.delijn.be/stops/302586"], ["https://data.delijn.be/stops/101955", "https://data.delijn.be/stops/104801"], ["https://data.delijn.be/stops/405195", "https://data.delijn.be/stops/405238"], ["https://data.delijn.be/stops/202657", "https://data.delijn.be/stops/203657"], ["https://data.delijn.be/stops/504863", "https://data.delijn.be/stops/508343"], ["https://data.delijn.be/stops/201316", "https://data.delijn.be/stops/201729"], ["https://data.delijn.be/stops/504359", "https://data.delijn.be/stops/509359"], ["https://data.delijn.be/stops/303722", "https://data.delijn.be/stops/303754"], ["https://data.delijn.be/stops/301741", "https://data.delijn.be/stops/305907"], ["https://data.delijn.be/stops/400797", "https://data.delijn.be/stops/409602"], ["https://data.delijn.be/stops/408258", "https://data.delijn.be/stops/408340"], ["https://data.delijn.be/stops/305380", "https://data.delijn.be/stops/305403"], ["https://data.delijn.be/stops/200906", "https://data.delijn.be/stops/202255"], ["https://data.delijn.be/stops/406298", "https://data.delijn.be/stops/302855"], ["https://data.delijn.be/stops/301522", "https://data.delijn.be/stops/301523"], ["https://data.delijn.be/stops/403994", "https://data.delijn.be/stops/403995"], ["https://data.delijn.be/stops/304980", "https://data.delijn.be/stops/308012"], ["https://data.delijn.be/stops/502070", "https://data.delijn.be/stops/505705"], ["https://data.delijn.be/stops/206091", "https://data.delijn.be/stops/207091"], ["https://data.delijn.be/stops/108102", "https://data.delijn.be/stops/108103"], ["https://data.delijn.be/stops/300595", "https://data.delijn.be/stops/302980"], ["https://data.delijn.be/stops/101228", "https://data.delijn.be/stops/102656"], ["https://data.delijn.be/stops/503468", "https://data.delijn.be/stops/504813"], ["https://data.delijn.be/stops/405090", "https://data.delijn.be/stops/405708"], ["https://data.delijn.be/stops/101378", "https://data.delijn.be/stops/101401"], ["https://data.delijn.be/stops/204763", "https://data.delijn.be/stops/204764"], ["https://data.delijn.be/stops/501525", "https://data.delijn.be/stops/510014"], ["https://data.delijn.be/stops/200680", "https://data.delijn.be/stops/201455"], ["https://data.delijn.be/stops/504194", "https://data.delijn.be/stops/509194"], ["https://data.delijn.be/stops/300715", "https://data.delijn.be/stops/300716"], ["https://data.delijn.be/stops/200389", "https://data.delijn.be/stops/201501"], ["https://data.delijn.be/stops/300143", "https://data.delijn.be/stops/300144"], ["https://data.delijn.be/stops/206129", "https://data.delijn.be/stops/206651"], ["https://data.delijn.be/stops/403981", "https://data.delijn.be/stops/403982"], ["https://data.delijn.be/stops/108522", "https://data.delijn.be/stops/108523"], ["https://data.delijn.be/stops/508036", "https://data.delijn.be/stops/508267"], ["https://data.delijn.be/stops/503452", "https://data.delijn.be/stops/503473"], ["https://data.delijn.be/stops/303492", "https://data.delijn.be/stops/303493"], ["https://data.delijn.be/stops/107809", "https://data.delijn.be/stops/107810"], ["https://data.delijn.be/stops/204973", "https://data.delijn.be/stops/217002"], ["https://data.delijn.be/stops/206460", "https://data.delijn.be/stops/206461"], ["https://data.delijn.be/stops/202733", "https://data.delijn.be/stops/203853"], ["https://data.delijn.be/stops/103972", "https://data.delijn.be/stops/106445"], ["https://data.delijn.be/stops/301260", "https://data.delijn.be/stops/307392"], ["https://data.delijn.be/stops/200688", "https://data.delijn.be/stops/202372"], ["https://data.delijn.be/stops/501403", "https://data.delijn.be/stops/506408"], ["https://data.delijn.be/stops/300027", "https://data.delijn.be/stops/300051"], ["https://data.delijn.be/stops/502398", "https://data.delijn.be/stops/507386"], ["https://data.delijn.be/stops/102018", "https://data.delijn.be/stops/102022"], ["https://data.delijn.be/stops/506629", "https://data.delijn.be/stops/508126"], ["https://data.delijn.be/stops/502017", "https://data.delijn.be/stops/507017"], ["https://data.delijn.be/stops/200157", "https://data.delijn.be/stops/207241"], ["https://data.delijn.be/stops/209392", "https://data.delijn.be/stops/209394"], ["https://data.delijn.be/stops/409657", "https://data.delijn.be/stops/409660"], ["https://data.delijn.be/stops/503885", "https://data.delijn.be/stops/503887"], ["https://data.delijn.be/stops/301753", "https://data.delijn.be/stops/308878"], ["https://data.delijn.be/stops/404495", "https://data.delijn.be/stops/404537"], ["https://data.delijn.be/stops/406944", "https://data.delijn.be/stops/406945"], ["https://data.delijn.be/stops/403551", "https://data.delijn.be/stops/410215"], ["https://data.delijn.be/stops/301490", "https://data.delijn.be/stops/307931"], ["https://data.delijn.be/stops/507590", "https://data.delijn.be/stops/507595"], ["https://data.delijn.be/stops/102277", "https://data.delijn.be/stops/108029"], ["https://data.delijn.be/stops/403134", "https://data.delijn.be/stops/410129"], ["https://data.delijn.be/stops/306023", "https://data.delijn.be/stops/307682"], ["https://data.delijn.be/stops/306613", "https://data.delijn.be/stops/306631"], ["https://data.delijn.be/stops/302068", "https://data.delijn.be/stops/306350"], ["https://data.delijn.be/stops/101182", "https://data.delijn.be/stops/107864"], ["https://data.delijn.be/stops/507721", "https://data.delijn.be/stops/507735"], ["https://data.delijn.be/stops/401441", "https://data.delijn.be/stops/404173"], ["https://data.delijn.be/stops/408926", "https://data.delijn.be/stops/408927"], ["https://data.delijn.be/stops/102062", "https://data.delijn.be/stops/102063"], ["https://data.delijn.be/stops/505945", "https://data.delijn.be/stops/508643"], ["https://data.delijn.be/stops/301405", "https://data.delijn.be/stops/308648"], ["https://data.delijn.be/stops/302858", "https://data.delijn.be/stops/302912"], ["https://data.delijn.be/stops/502676", "https://data.delijn.be/stops/507438"], ["https://data.delijn.be/stops/505768", "https://data.delijn.be/stops/507436"], ["https://data.delijn.be/stops/208060", "https://data.delijn.be/stops/209045"], ["https://data.delijn.be/stops/200781", "https://data.delijn.be/stops/201033"], ["https://data.delijn.be/stops/104776", "https://data.delijn.be/stops/107346"], ["https://data.delijn.be/stops/400120", "https://data.delijn.be/stops/400167"], ["https://data.delijn.be/stops/505264", "https://data.delijn.be/stops/508078"], ["https://data.delijn.be/stops/403336", "https://data.delijn.be/stops/407635"], ["https://data.delijn.be/stops/408063", "https://data.delijn.be/stops/408136"], ["https://data.delijn.be/stops/201304", "https://data.delijn.be/stops/202760"], ["https://data.delijn.be/stops/206855", "https://data.delijn.be/stops/207854"], ["https://data.delijn.be/stops/300941", "https://data.delijn.be/stops/304719"], ["https://data.delijn.be/stops/101418", "https://data.delijn.be/stops/106951"], ["https://data.delijn.be/stops/206656", "https://data.delijn.be/stops/207656"], ["https://data.delijn.be/stops/109190", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/106613", "https://data.delijn.be/stops/106690"], ["https://data.delijn.be/stops/505013", "https://data.delijn.be/stops/505227"], ["https://data.delijn.be/stops/400144", "https://data.delijn.be/stops/409164"], ["https://data.delijn.be/stops/308475", "https://data.delijn.be/stops/308486"], ["https://data.delijn.be/stops/104838", "https://data.delijn.be/stops/108475"], ["https://data.delijn.be/stops/206299", "https://data.delijn.be/stops/207495"], ["https://data.delijn.be/stops/203047", "https://data.delijn.be/stops/203730"], ["https://data.delijn.be/stops/403632", "https://data.delijn.be/stops/403640"], ["https://data.delijn.be/stops/400800", "https://data.delijn.be/stops/400881"], ["https://data.delijn.be/stops/304572", "https://data.delijn.be/stops/308878"], ["https://data.delijn.be/stops/301583", "https://data.delijn.be/stops/301592"], ["https://data.delijn.be/stops/300681", "https://data.delijn.be/stops/305963"], ["https://data.delijn.be/stops/504538", "https://data.delijn.be/stops/508818"], ["https://data.delijn.be/stops/208070", "https://data.delijn.be/stops/209070"], ["https://data.delijn.be/stops/402469", "https://data.delijn.be/stops/410074"], ["https://data.delijn.be/stops/101497", "https://data.delijn.be/stops/108309"], ["https://data.delijn.be/stops/403994", "https://data.delijn.be/stops/410025"], ["https://data.delijn.be/stops/403005", "https://data.delijn.be/stops/403019"], ["https://data.delijn.be/stops/405695", "https://data.delijn.be/stops/405910"], ["https://data.delijn.be/stops/507399", "https://data.delijn.be/stops/507402"], ["https://data.delijn.be/stops/108429", "https://data.delijn.be/stops/109583"], ["https://data.delijn.be/stops/208554", "https://data.delijn.be/stops/208603"], ["https://data.delijn.be/stops/207437", "https://data.delijn.be/stops/207641"], ["https://data.delijn.be/stops/303023", "https://data.delijn.be/stops/303031"], ["https://data.delijn.be/stops/102546", "https://data.delijn.be/stops/408342"], ["https://data.delijn.be/stops/400541", "https://data.delijn.be/stops/400545"], ["https://data.delijn.be/stops/101274", "https://data.delijn.be/stops/104215"], ["https://data.delijn.be/stops/402637", "https://data.delijn.be/stops/405560"], ["https://data.delijn.be/stops/308506", "https://data.delijn.be/stops/308508"], ["https://data.delijn.be/stops/305117", "https://data.delijn.be/stops/305127"], ["https://data.delijn.be/stops/301857", "https://data.delijn.be/stops/301862"], ["https://data.delijn.be/stops/500998", "https://data.delijn.be/stops/504425"], ["https://data.delijn.be/stops/302205", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/504549", "https://data.delijn.be/stops/505216"], ["https://data.delijn.be/stops/400845", "https://data.delijn.be/stops/407592"], ["https://data.delijn.be/stops/405114", "https://data.delijn.be/stops/405859"], ["https://data.delijn.be/stops/400055", "https://data.delijn.be/stops/400097"], ["https://data.delijn.be/stops/304766", "https://data.delijn.be/stops/304778"], ["https://data.delijn.be/stops/205095", "https://data.delijn.be/stops/205096"], ["https://data.delijn.be/stops/302895", "https://data.delijn.be/stops/302903"], ["https://data.delijn.be/stops/503974", "https://data.delijn.be/stops/508104"], ["https://data.delijn.be/stops/400948", "https://data.delijn.be/stops/400949"], ["https://data.delijn.be/stops/504265", "https://data.delijn.be/stops/504266"], ["https://data.delijn.be/stops/401072", "https://data.delijn.be/stops/401166"], ["https://data.delijn.be/stops/504940", "https://data.delijn.be/stops/507016"], ["https://data.delijn.be/stops/404722", "https://data.delijn.be/stops/404753"], ["https://data.delijn.be/stops/501106", "https://data.delijn.be/stops/501107"], ["https://data.delijn.be/stops/503763", "https://data.delijn.be/stops/508763"], ["https://data.delijn.be/stops/304432", "https://data.delijn.be/stops/304454"], ["https://data.delijn.be/stops/105992", "https://data.delijn.be/stops/105994"], ["https://data.delijn.be/stops/308594", "https://data.delijn.be/stops/308860"], ["https://data.delijn.be/stops/104476", "https://data.delijn.be/stops/107903"], ["https://data.delijn.be/stops/407922", "https://data.delijn.be/stops/307797"], ["https://data.delijn.be/stops/408559", "https://data.delijn.be/stops/408873"], ["https://data.delijn.be/stops/104482", "https://data.delijn.be/stops/104564"], ["https://data.delijn.be/stops/501344", "https://data.delijn.be/stops/501399"], ["https://data.delijn.be/stops/101503", "https://data.delijn.be/stops/109345"], ["https://data.delijn.be/stops/400730", "https://data.delijn.be/stops/406609"], ["https://data.delijn.be/stops/304884", "https://data.delijn.be/stops/305505"], ["https://data.delijn.be/stops/106325", "https://data.delijn.be/stops/106327"], ["https://data.delijn.be/stops/403065", "https://data.delijn.be/stops/408516"], ["https://data.delijn.be/stops/406640", "https://data.delijn.be/stops/406682"], ["https://data.delijn.be/stops/401432", "https://data.delijn.be/stops/401497"], ["https://data.delijn.be/stops/405223", "https://data.delijn.be/stops/405233"], ["https://data.delijn.be/stops/502197", "https://data.delijn.be/stops/507687"], ["https://data.delijn.be/stops/404863", "https://data.delijn.be/stops/404869"], ["https://data.delijn.be/stops/408554", "https://data.delijn.be/stops/408555"], ["https://data.delijn.be/stops/108371", "https://data.delijn.be/stops/108457"], ["https://data.delijn.be/stops/501158", "https://data.delijn.be/stops/506637"], ["https://data.delijn.be/stops/106811", "https://data.delijn.be/stops/106812"], ["https://data.delijn.be/stops/201874", "https://data.delijn.be/stops/203396"], ["https://data.delijn.be/stops/302938", "https://data.delijn.be/stops/303455"], ["https://data.delijn.be/stops/107727", "https://data.delijn.be/stops/410162"], ["https://data.delijn.be/stops/503379", "https://data.delijn.be/stops/503446"], ["https://data.delijn.be/stops/104931", "https://data.delijn.be/stops/104934"], ["https://data.delijn.be/stops/104607", "https://data.delijn.be/stops/104608"], ["https://data.delijn.be/stops/206637", "https://data.delijn.be/stops/207888"], ["https://data.delijn.be/stops/302072", "https://data.delijn.be/stops/302073"], ["https://data.delijn.be/stops/401949", "https://data.delijn.be/stops/407339"], ["https://data.delijn.be/stops/205176", "https://data.delijn.be/stops/205177"], ["https://data.delijn.be/stops/403150", "https://data.delijn.be/stops/403151"], ["https://data.delijn.be/stops/405266", "https://data.delijn.be/stops/405272"], ["https://data.delijn.be/stops/101816", "https://data.delijn.be/stops/205142"], ["https://data.delijn.be/stops/403422", "https://data.delijn.be/stops/403423"], ["https://data.delijn.be/stops/206938", "https://data.delijn.be/stops/207421"], ["https://data.delijn.be/stops/102972", "https://data.delijn.be/stops/102973"], ["https://data.delijn.be/stops/507524", "https://data.delijn.be/stops/507526"], ["https://data.delijn.be/stops/205987", "https://data.delijn.be/stops/209223"], ["https://data.delijn.be/stops/105517", "https://data.delijn.be/stops/106972"], ["https://data.delijn.be/stops/408100", "https://data.delijn.be/stops/408103"], ["https://data.delijn.be/stops/201773", "https://data.delijn.be/stops/219027"], ["https://data.delijn.be/stops/206772", "https://data.delijn.be/stops/208032"], ["https://data.delijn.be/stops/303573", "https://data.delijn.be/stops/303586"], ["https://data.delijn.be/stops/401470", "https://data.delijn.be/stops/401546"], ["https://data.delijn.be/stops/501513", "https://data.delijn.be/stops/506441"], ["https://data.delijn.be/stops/208104", "https://data.delijn.be/stops/209105"], ["https://data.delijn.be/stops/304116", "https://data.delijn.be/stops/305352"], ["https://data.delijn.be/stops/102462", "https://data.delijn.be/stops/400412"], ["https://data.delijn.be/stops/407919", "https://data.delijn.be/stops/306060"], ["https://data.delijn.be/stops/504981", "https://data.delijn.be/stops/505917"], ["https://data.delijn.be/stops/104721", "https://data.delijn.be/stops/105180"], ["https://data.delijn.be/stops/205975", "https://data.delijn.be/stops/209745"], ["https://data.delijn.be/stops/204635", "https://data.delijn.be/stops/205635"], ["https://data.delijn.be/stops/504200", "https://data.delijn.be/stops/505113"], ["https://data.delijn.be/stops/103127", "https://data.delijn.be/stops/104126"], ["https://data.delijn.be/stops/404658", "https://data.delijn.be/stops/404670"], ["https://data.delijn.be/stops/105157", "https://data.delijn.be/stops/108761"], ["https://data.delijn.be/stops/205094", "https://data.delijn.be/stops/205594"], ["https://data.delijn.be/stops/203839", "https://data.delijn.be/stops/218001"], ["https://data.delijn.be/stops/108743", "https://data.delijn.be/stops/109501"], ["https://data.delijn.be/stops/507047", "https://data.delijn.be/stops/507642"], ["https://data.delijn.be/stops/405780", "https://data.delijn.be/stops/408481"], ["https://data.delijn.be/stops/201758", "https://data.delijn.be/stops/218011"], ["https://data.delijn.be/stops/408372", "https://data.delijn.be/stops/410157"], ["https://data.delijn.be/stops/208114", "https://data.delijn.be/stops/209795"], ["https://data.delijn.be/stops/502028", "https://data.delijn.be/stops/502658"], ["https://data.delijn.be/stops/208361", "https://data.delijn.be/stops/208399"], ["https://data.delijn.be/stops/304188", "https://data.delijn.be/stops/305906"], ["https://data.delijn.be/stops/404702", "https://data.delijn.be/stops/404819"], ["https://data.delijn.be/stops/102260", "https://data.delijn.be/stops/107490"], ["https://data.delijn.be/stops/301288", "https://data.delijn.be/stops/301397"], ["https://data.delijn.be/stops/406011", "https://data.delijn.be/stops/406129"], ["https://data.delijn.be/stops/206546", "https://data.delijn.be/stops/207546"], ["https://data.delijn.be/stops/201229", "https://data.delijn.be/stops/203354"], ["https://data.delijn.be/stops/401870", "https://data.delijn.be/stops/406118"], ["https://data.delijn.be/stops/206801", "https://data.delijn.be/stops/209621"], ["https://data.delijn.be/stops/106863", "https://data.delijn.be/stops/106865"], ["https://data.delijn.be/stops/503961", "https://data.delijn.be/stops/505434"], ["https://data.delijn.be/stops/503826", "https://data.delijn.be/stops/507709"], ["https://data.delijn.be/stops/103254", "https://data.delijn.be/stops/105115"], ["https://data.delijn.be/stops/204024", "https://data.delijn.be/stops/205024"], ["https://data.delijn.be/stops/109034", "https://data.delijn.be/stops/109037"], ["https://data.delijn.be/stops/101637", "https://data.delijn.be/stops/104280"], ["https://data.delijn.be/stops/207836", "https://data.delijn.be/stops/207939"], ["https://data.delijn.be/stops/502389", "https://data.delijn.be/stops/502392"], ["https://data.delijn.be/stops/302615", "https://data.delijn.be/stops/302628"], ["https://data.delijn.be/stops/404201", "https://data.delijn.be/stops/404239"], ["https://data.delijn.be/stops/401517", "https://data.delijn.be/stops/401741"], ["https://data.delijn.be/stops/402732", "https://data.delijn.be/stops/410056"], ["https://data.delijn.be/stops/208186", "https://data.delijn.be/stops/208358"], ["https://data.delijn.be/stops/401582", "https://data.delijn.be/stops/410359"], ["https://data.delijn.be/stops/305043", "https://data.delijn.be/stops/307951"], ["https://data.delijn.be/stops/407970", "https://data.delijn.be/stops/407971"], ["https://data.delijn.be/stops/401588", "https://data.delijn.be/stops/402082"], ["https://data.delijn.be/stops/106767", "https://data.delijn.be/stops/106867"], ["https://data.delijn.be/stops/302800", "https://data.delijn.be/stops/305546"], ["https://data.delijn.be/stops/508484", "https://data.delijn.be/stops/509712"], ["https://data.delijn.be/stops/105063", "https://data.delijn.be/stops/106299"], ["https://data.delijn.be/stops/102385", "https://data.delijn.be/stops/105120"], ["https://data.delijn.be/stops/505376", "https://data.delijn.be/stops/508061"], ["https://data.delijn.be/stops/201656", "https://data.delijn.be/stops/202614"], ["https://data.delijn.be/stops/102618", "https://data.delijn.be/stops/102621"], ["https://data.delijn.be/stops/200098", "https://data.delijn.be/stops/200228"], ["https://data.delijn.be/stops/302315", "https://data.delijn.be/stops/302352"], ["https://data.delijn.be/stops/202602", "https://data.delijn.be/stops/203601"], ["https://data.delijn.be/stops/106227", "https://data.delijn.be/stops/106324"], ["https://data.delijn.be/stops/210086", "https://data.delijn.be/stops/211002"], ["https://data.delijn.be/stops/505600", "https://data.delijn.be/stops/505602"], ["https://data.delijn.be/stops/207345", "https://data.delijn.be/stops/207717"], ["https://data.delijn.be/stops/405559", "https://data.delijn.be/stops/405561"], ["https://data.delijn.be/stops/108994", "https://data.delijn.be/stops/108997"], ["https://data.delijn.be/stops/503373", "https://data.delijn.be/stops/503436"], ["https://data.delijn.be/stops/503637", "https://data.delijn.be/stops/503638"], ["https://data.delijn.be/stops/108967", "https://data.delijn.be/stops/401932"], ["https://data.delijn.be/stops/206049", "https://data.delijn.be/stops/207162"], ["https://data.delijn.be/stops/503907", "https://data.delijn.be/stops/504834"], ["https://data.delijn.be/stops/216016", "https://data.delijn.be/stops/306077"], ["https://data.delijn.be/stops/302188", "https://data.delijn.be/stops/302197"], ["https://data.delijn.be/stops/409646", "https://data.delijn.be/stops/409647"], ["https://data.delijn.be/stops/206347", "https://data.delijn.be/stops/206356"], ["https://data.delijn.be/stops/105145", "https://data.delijn.be/stops/107825"], ["https://data.delijn.be/stops/409055", "https://data.delijn.be/stops/409071"], ["https://data.delijn.be/stops/404852", "https://data.delijn.be/stops/404871"], ["https://data.delijn.be/stops/407860", "https://data.delijn.be/stops/306053"], ["https://data.delijn.be/stops/503322", "https://data.delijn.be/stops/505935"], ["https://data.delijn.be/stops/202408", "https://data.delijn.be/stops/203408"], ["https://data.delijn.be/stops/301988", "https://data.delijn.be/stops/303615"], ["https://data.delijn.be/stops/204067", "https://data.delijn.be/stops/205231"], ["https://data.delijn.be/stops/108808", "https://data.delijn.be/stops/108811"], ["https://data.delijn.be/stops/408021", "https://data.delijn.be/stops/408135"], ["https://data.delijn.be/stops/503187", "https://data.delijn.be/stops/508187"], ["https://data.delijn.be/stops/201846", "https://data.delijn.be/stops/203066"], ["https://data.delijn.be/stops/404908", "https://data.delijn.be/stops/404966"], ["https://data.delijn.be/stops/208800", "https://data.delijn.be/stops/209206"], ["https://data.delijn.be/stops/107264", "https://data.delijn.be/stops/107266"], ["https://data.delijn.be/stops/501328", "https://data.delijn.be/stops/506328"], ["https://data.delijn.be/stops/406350", "https://data.delijn.be/stops/408871"], ["https://data.delijn.be/stops/302290", "https://data.delijn.be/stops/307812"], ["https://data.delijn.be/stops/203848", "https://data.delijn.be/stops/208724"], ["https://data.delijn.be/stops/301742", "https://data.delijn.be/stops/301823"], ["https://data.delijn.be/stops/402961", "https://data.delijn.be/stops/402965"], ["https://data.delijn.be/stops/108376", "https://data.delijn.be/stops/108444"], ["https://data.delijn.be/stops/204003", "https://data.delijn.be/stops/204694"], ["https://data.delijn.be/stops/300623", "https://data.delijn.be/stops/300628"], ["https://data.delijn.be/stops/202164", "https://data.delijn.be/stops/205070"], ["https://data.delijn.be/stops/202576", "https://data.delijn.be/stops/202607"], ["https://data.delijn.be/stops/105307", "https://data.delijn.be/stops/105396"], ["https://data.delijn.be/stops/206370", "https://data.delijn.be/stops/207370"], ["https://data.delijn.be/stops/400029", "https://data.delijn.be/stops/400439"], ["https://data.delijn.be/stops/302676", "https://data.delijn.be/stops/303612"], ["https://data.delijn.be/stops/201934", "https://data.delijn.be/stops/202951"], ["https://data.delijn.be/stops/503749", "https://data.delijn.be/stops/509736"], ["https://data.delijn.be/stops/206858", "https://data.delijn.be/stops/209623"], ["https://data.delijn.be/stops/207040", "https://data.delijn.be/stops/207963"], ["https://data.delijn.be/stops/502201", "https://data.delijn.be/stops/507299"], ["https://data.delijn.be/stops/401002", "https://data.delijn.be/stops/401009"], ["https://data.delijn.be/stops/504636", "https://data.delijn.be/stops/509635"], ["https://data.delijn.be/stops/107241", "https://data.delijn.be/stops/107242"], ["https://data.delijn.be/stops/200052", "https://data.delijn.be/stops/210063"], ["https://data.delijn.be/stops/208661", "https://data.delijn.be/stops/208696"], ["https://data.delijn.be/stops/303024", "https://data.delijn.be/stops/303090"], ["https://data.delijn.be/stops/300155", "https://data.delijn.be/stops/300176"], ["https://data.delijn.be/stops/503005", "https://data.delijn.be/stops/507475"], ["https://data.delijn.be/stops/403835", "https://data.delijn.be/stops/403849"], ["https://data.delijn.be/stops/400419", "https://data.delijn.be/stops/400422"], ["https://data.delijn.be/stops/509421", "https://data.delijn.be/stops/509436"], ["https://data.delijn.be/stops/405748", "https://data.delijn.be/stops/405882"], ["https://data.delijn.be/stops/102818", "https://data.delijn.be/stops/102819"], ["https://data.delijn.be/stops/405770", "https://data.delijn.be/stops/405833"], ["https://data.delijn.be/stops/206156", "https://data.delijn.be/stops/207639"], ["https://data.delijn.be/stops/503243", "https://data.delijn.be/stops/508243"], ["https://data.delijn.be/stops/302888", "https://data.delijn.be/stops/303231"], ["https://data.delijn.be/stops/200179", "https://data.delijn.be/stops/201732"], ["https://data.delijn.be/stops/106722", "https://data.delijn.be/stops/106724"], ["https://data.delijn.be/stops/307753", "https://data.delijn.be/stops/307755"], ["https://data.delijn.be/stops/200213", "https://data.delijn.be/stops/201213"], ["https://data.delijn.be/stops/101413", "https://data.delijn.be/stops/101432"], ["https://data.delijn.be/stops/106695", "https://data.delijn.be/stops/106698"], ["https://data.delijn.be/stops/502322", "https://data.delijn.be/stops/505338"], ["https://data.delijn.be/stops/106526", "https://data.delijn.be/stops/106527"], ["https://data.delijn.be/stops/502323", "https://data.delijn.be/stops/502658"], ["https://data.delijn.be/stops/301596", "https://data.delijn.be/stops/304507"], ["https://data.delijn.be/stops/405102", "https://data.delijn.be/stops/405103"], ["https://data.delijn.be/stops/301999", "https://data.delijn.be/stops/303615"], ["https://data.delijn.be/stops/400737", "https://data.delijn.be/stops/400740"], ["https://data.delijn.be/stops/202816", "https://data.delijn.be/stops/203460"], ["https://data.delijn.be/stops/504293", "https://data.delijn.be/stops/504298"], ["https://data.delijn.be/stops/207664", "https://data.delijn.be/stops/208504"], ["https://data.delijn.be/stops/209741", "https://data.delijn.be/stops/209742"], ["https://data.delijn.be/stops/502141", "https://data.delijn.be/stops/507421"], ["https://data.delijn.be/stops/304670", "https://data.delijn.be/stops/304676"], ["https://data.delijn.be/stops/207032", "https://data.delijn.be/stops/207901"], ["https://data.delijn.be/stops/103673", "https://data.delijn.be/stops/106256"], ["https://data.delijn.be/stops/102498", "https://data.delijn.be/stops/400306"], ["https://data.delijn.be/stops/106948", "https://data.delijn.be/stops/108701"], ["https://data.delijn.be/stops/109159", "https://data.delijn.be/stops/109161"], ["https://data.delijn.be/stops/306906", "https://data.delijn.be/stops/308128"], ["https://data.delijn.be/stops/108087", "https://data.delijn.be/stops/108387"], ["https://data.delijn.be/stops/200383", "https://data.delijn.be/stops/201368"], ["https://data.delijn.be/stops/307296", "https://data.delijn.be/stops/307297"], ["https://data.delijn.be/stops/106983", "https://data.delijn.be/stops/106984"], ["https://data.delijn.be/stops/408098", "https://data.delijn.be/stops/408108"], ["https://data.delijn.be/stops/401041", "https://data.delijn.be/stops/401154"], ["https://data.delijn.be/stops/307635", "https://data.delijn.be/stops/307637"], ["https://data.delijn.be/stops/201122", "https://data.delijn.be/stops/201124"], ["https://data.delijn.be/stops/200453", "https://data.delijn.be/stops/208847"], ["https://data.delijn.be/stops/302545", "https://data.delijn.be/stops/302546"], ["https://data.delijn.be/stops/109906", "https://data.delijn.be/stops/109907"], ["https://data.delijn.be/stops/401986", "https://data.delijn.be/stops/401990"], ["https://data.delijn.be/stops/108271", "https://data.delijn.be/stops/108272"], ["https://data.delijn.be/stops/202785", "https://data.delijn.be/stops/211103"], ["https://data.delijn.be/stops/503331", "https://data.delijn.be/stops/509735"], ["https://data.delijn.be/stops/205048", "https://data.delijn.be/stops/205049"], ["https://data.delijn.be/stops/400675", "https://data.delijn.be/stops/405335"], ["https://data.delijn.be/stops/102745", "https://data.delijn.be/stops/102770"], ["https://data.delijn.be/stops/300121", "https://data.delijn.be/stops/304998"], ["https://data.delijn.be/stops/505211", "https://data.delijn.be/stops/509401"], ["https://data.delijn.be/stops/401792", "https://data.delijn.be/stops/401801"], ["https://data.delijn.be/stops/200310", "https://data.delijn.be/stops/201160"], ["https://data.delijn.be/stops/304734", "https://data.delijn.be/stops/304778"], ["https://data.delijn.be/stops/201087", "https://data.delijn.be/stops/201699"], ["https://data.delijn.be/stops/201644", "https://data.delijn.be/stops/203943"], ["https://data.delijn.be/stops/305219", "https://data.delijn.be/stops/305220"], ["https://data.delijn.be/stops/103036", "https://data.delijn.be/stops/107407"], ["https://data.delijn.be/stops/105579", "https://data.delijn.be/stops/105594"], ["https://data.delijn.be/stops/407053", "https://data.delijn.be/stops/410016"], ["https://data.delijn.be/stops/407850", "https://data.delijn.be/stops/407909"], ["https://data.delijn.be/stops/202523", "https://data.delijn.be/stops/203522"], ["https://data.delijn.be/stops/407831", "https://data.delijn.be/stops/407834"], ["https://data.delijn.be/stops/304750", "https://data.delijn.be/stops/304851"], ["https://data.delijn.be/stops/105998", "https://data.delijn.be/stops/107958"], ["https://data.delijn.be/stops/109215", "https://data.delijn.be/stops/109216"], ["https://data.delijn.be/stops/502570", "https://data.delijn.be/stops/502571"], ["https://data.delijn.be/stops/210025", "https://data.delijn.be/stops/210033"], ["https://data.delijn.be/stops/108460", "https://data.delijn.be/stops/108950"], ["https://data.delijn.be/stops/503482", "https://data.delijn.be/stops/508482"], ["https://data.delijn.be/stops/400753", "https://data.delijn.be/stops/400757"], ["https://data.delijn.be/stops/109220", "https://data.delijn.be/stops/109223"], ["https://data.delijn.be/stops/305227", "https://data.delijn.be/stops/305891"], ["https://data.delijn.be/stops/206526", "https://data.delijn.be/stops/206555"], ["https://data.delijn.be/stops/408573", "https://data.delijn.be/stops/408575"], ["https://data.delijn.be/stops/209252", "https://data.delijn.be/stops/209253"], ["https://data.delijn.be/stops/402630", "https://data.delijn.be/stops/402631"], ["https://data.delijn.be/stops/302573", "https://data.delijn.be/stops/302574"], ["https://data.delijn.be/stops/306849", "https://data.delijn.be/stops/306850"], ["https://data.delijn.be/stops/302311", "https://data.delijn.be/stops/303996"], ["https://data.delijn.be/stops/106741", "https://data.delijn.be/stops/106742"], ["https://data.delijn.be/stops/206088", "https://data.delijn.be/stops/207087"], ["https://data.delijn.be/stops/200114", "https://data.delijn.be/stops/200887"], ["https://data.delijn.be/stops/207349", "https://data.delijn.be/stops/207689"], ["https://data.delijn.be/stops/507340", "https://data.delijn.be/stops/508592"], ["https://data.delijn.be/stops/200549", "https://data.delijn.be/stops/201549"], ["https://data.delijn.be/stops/200070", "https://data.delijn.be/stops/201071"], ["https://data.delijn.be/stops/408059", "https://data.delijn.be/stops/408283"], ["https://data.delijn.be/stops/106427", "https://data.delijn.be/stops/106428"], ["https://data.delijn.be/stops/403755", "https://data.delijn.be/stops/403764"], ["https://data.delijn.be/stops/200994", "https://data.delijn.be/stops/203014"], ["https://data.delijn.be/stops/407153", "https://data.delijn.be/stops/407163"], ["https://data.delijn.be/stops/106491", "https://data.delijn.be/stops/106493"], ["https://data.delijn.be/stops/505404", "https://data.delijn.be/stops/506078"], ["https://data.delijn.be/stops/303864", "https://data.delijn.be/stops/307492"], ["https://data.delijn.be/stops/105796", "https://data.delijn.be/stops/105798"], ["https://data.delijn.be/stops/209116", "https://data.delijn.be/stops/209797"], ["https://data.delijn.be/stops/207801", "https://data.delijn.be/stops/216018"], ["https://data.delijn.be/stops/505302", "https://data.delijn.be/stops/509596"], ["https://data.delijn.be/stops/503864", "https://data.delijn.be/stops/507952"], ["https://data.delijn.be/stops/302002", "https://data.delijn.be/stops/302018"], ["https://data.delijn.be/stops/504404", "https://data.delijn.be/stops/509404"], ["https://data.delijn.be/stops/501080", "https://data.delijn.be/stops/501518"], ["https://data.delijn.be/stops/105191", "https://data.delijn.be/stops/105192"], ["https://data.delijn.be/stops/300634", "https://data.delijn.be/stops/307344"], ["https://data.delijn.be/stops/304807", "https://data.delijn.be/stops/307884"], ["https://data.delijn.be/stops/202625", "https://data.delijn.be/stops/202642"], ["https://data.delijn.be/stops/504181", "https://data.delijn.be/stops/509164"], ["https://data.delijn.be/stops/404218", "https://data.delijn.be/stops/404219"], ["https://data.delijn.be/stops/405732", "https://data.delijn.be/stops/405735"], ["https://data.delijn.be/stops/300333", "https://data.delijn.be/stops/306660"], ["https://data.delijn.be/stops/208141", "https://data.delijn.be/stops/208817"], ["https://data.delijn.be/stops/307308", "https://data.delijn.be/stops/307311"], ["https://data.delijn.be/stops/305977", "https://data.delijn.be/stops/305978"], ["https://data.delijn.be/stops/306868", "https://data.delijn.be/stops/307425"], ["https://data.delijn.be/stops/200819", "https://data.delijn.be/stops/200820"], ["https://data.delijn.be/stops/105065", "https://data.delijn.be/stops/106086"], ["https://data.delijn.be/stops/101014", "https://data.delijn.be/stops/107805"], ["https://data.delijn.be/stops/202959", "https://data.delijn.be/stops/203957"], ["https://data.delijn.be/stops/503078", "https://data.delijn.be/stops/505264"], ["https://data.delijn.be/stops/108489", "https://data.delijn.be/stops/306599"], ["https://data.delijn.be/stops/204014", "https://data.delijn.be/stops/205013"], ["https://data.delijn.be/stops/503338", "https://data.delijn.be/stops/508345"], ["https://data.delijn.be/stops/405433", "https://data.delijn.be/stops/408762"], ["https://data.delijn.be/stops/409260", "https://data.delijn.be/stops/409289"], ["https://data.delijn.be/stops/201806", "https://data.delijn.be/stops/209326"], ["https://data.delijn.be/stops/300577", "https://data.delijn.be/stops/300578"], ["https://data.delijn.be/stops/400864", "https://data.delijn.be/stops/400867"], ["https://data.delijn.be/stops/503404", "https://data.delijn.be/stops/503435"], ["https://data.delijn.be/stops/104503", "https://data.delijn.be/stops/107931"], ["https://data.delijn.be/stops/504517", "https://data.delijn.be/stops/505803"], ["https://data.delijn.be/stops/303541", "https://data.delijn.be/stops/303564"], ["https://data.delijn.be/stops/205459", "https://data.delijn.be/stops/205479"], ["https://data.delijn.be/stops/304404", "https://data.delijn.be/stops/306874"], ["https://data.delijn.be/stops/406355", "https://data.delijn.be/stops/410043"], ["https://data.delijn.be/stops/105417", "https://data.delijn.be/stops/109844"], ["https://data.delijn.be/stops/206433", "https://data.delijn.be/stops/207433"], ["https://data.delijn.be/stops/105204", "https://data.delijn.be/stops/105206"], ["https://data.delijn.be/stops/300144", "https://data.delijn.be/stops/300146"], ["https://data.delijn.be/stops/305257", "https://data.delijn.be/stops/306342"], ["https://data.delijn.be/stops/208079", "https://data.delijn.be/stops/209633"], ["https://data.delijn.be/stops/502273", "https://data.delijn.be/stops/502518"], ["https://data.delijn.be/stops/504053", "https://data.delijn.be/stops/509053"], ["https://data.delijn.be/stops/507083", "https://data.delijn.be/stops/507455"], ["https://data.delijn.be/stops/403526", "https://data.delijn.be/stops/403531"], ["https://data.delijn.be/stops/107311", "https://data.delijn.be/stops/107312"], ["https://data.delijn.be/stops/302564", "https://data.delijn.be/stops/302595"], ["https://data.delijn.be/stops/201000", "https://data.delijn.be/stops/202000"], ["https://data.delijn.be/stops/400746", "https://data.delijn.be/stops/409578"], ["https://data.delijn.be/stops/402123", "https://data.delijn.be/stops/405489"], ["https://data.delijn.be/stops/403022", "https://data.delijn.be/stops/409307"], ["https://data.delijn.be/stops/306099", "https://data.delijn.be/stops/306100"], ["https://data.delijn.be/stops/504715", "https://data.delijn.be/stops/509253"], ["https://data.delijn.be/stops/303205", "https://data.delijn.be/stops/304319"], ["https://data.delijn.be/stops/105749", "https://data.delijn.be/stops/109820"], ["https://data.delijn.be/stops/406265", "https://data.delijn.be/stops/406423"], ["https://data.delijn.be/stops/104422", "https://data.delijn.be/stops/205445"], ["https://data.delijn.be/stops/208551", "https://data.delijn.be/stops/209549"], ["https://data.delijn.be/stops/401288", "https://data.delijn.be/stops/401328"], ["https://data.delijn.be/stops/405311", "https://data.delijn.be/stops/406298"], ["https://data.delijn.be/stops/402826", "https://data.delijn.be/stops/408483"], ["https://data.delijn.be/stops/505036", "https://data.delijn.be/stops/506210"], ["https://data.delijn.be/stops/300702", "https://data.delijn.be/stops/306944"], ["https://data.delijn.be/stops/503669", "https://data.delijn.be/stops/508669"], ["https://data.delijn.be/stops/306923", "https://data.delijn.be/stops/306926"], ["https://data.delijn.be/stops/303062", "https://data.delijn.be/stops/303063"], ["https://data.delijn.be/stops/301323", "https://data.delijn.be/stops/306189"], ["https://data.delijn.be/stops/101500", "https://data.delijn.be/stops/101501"], ["https://data.delijn.be/stops/305710", "https://data.delijn.be/stops/305711"], ["https://data.delijn.be/stops/306802", "https://data.delijn.be/stops/307736"], ["https://data.delijn.be/stops/301522", "https://data.delijn.be/stops/305736"], ["https://data.delijn.be/stops/405789", "https://data.delijn.be/stops/409704"], ["https://data.delijn.be/stops/301398", "https://data.delijn.be/stops/303224"], ["https://data.delijn.be/stops/302141", "https://data.delijn.be/stops/303627"], ["https://data.delijn.be/stops/206844", "https://data.delijn.be/stops/206845"], ["https://data.delijn.be/stops/401282", "https://data.delijn.be/stops/401283"], ["https://data.delijn.be/stops/400627", "https://data.delijn.be/stops/408251"], ["https://data.delijn.be/stops/201263", "https://data.delijn.be/stops/202545"], ["https://data.delijn.be/stops/206446", "https://data.delijn.be/stops/207446"], ["https://data.delijn.be/stops/508668", "https://data.delijn.be/stops/508669"], ["https://data.delijn.be/stops/202701", "https://data.delijn.be/stops/211066"], ["https://data.delijn.be/stops/505537", "https://data.delijn.be/stops/509587"], ["https://data.delijn.be/stops/502595", "https://data.delijn.be/stops/507590"], ["https://data.delijn.be/stops/301046", "https://data.delijn.be/stops/303831"], ["https://data.delijn.be/stops/405161", "https://data.delijn.be/stops/405261"], ["https://data.delijn.be/stops/401386", "https://data.delijn.be/stops/410176"], ["https://data.delijn.be/stops/405919", "https://data.delijn.be/stops/405993"], ["https://data.delijn.be/stops/105054", "https://data.delijn.be/stops/105129"], ["https://data.delijn.be/stops/403943", "https://data.delijn.be/stops/403952"], ["https://data.delijn.be/stops/306272", "https://data.delijn.be/stops/307525"], ["https://data.delijn.be/stops/102066", "https://data.delijn.be/stops/103073"], ["https://data.delijn.be/stops/300083", "https://data.delijn.be/stops/304344"], ["https://data.delijn.be/stops/408510", "https://data.delijn.be/stops/408689"], ["https://data.delijn.be/stops/405336", "https://data.delijn.be/stops/405347"], ["https://data.delijn.be/stops/505678", "https://data.delijn.be/stops/507303"], ["https://data.delijn.be/stops/307397", "https://data.delijn.be/stops/307423"], ["https://data.delijn.be/stops/403334", "https://data.delijn.be/stops/403957"], ["https://data.delijn.be/stops/200845", "https://data.delijn.be/stops/203301"], ["https://data.delijn.be/stops/105407", "https://data.delijn.be/stops/105834"], ["https://data.delijn.be/stops/508386", "https://data.delijn.be/stops/509760"], ["https://data.delijn.be/stops/300949", "https://data.delijn.be/stops/305387"], ["https://data.delijn.be/stops/400471", "https://data.delijn.be/stops/400496"], ["https://data.delijn.be/stops/401486", "https://data.delijn.be/stops/401538"], ["https://data.delijn.be/stops/103236", "https://data.delijn.be/stops/109431"], ["https://data.delijn.be/stops/400684", "https://data.delijn.be/stops/406647"], ["https://data.delijn.be/stops/109331", "https://data.delijn.be/stops/109332"], ["https://data.delijn.be/stops/400175", "https://data.delijn.be/stops/402797"], ["https://data.delijn.be/stops/402749", "https://data.delijn.be/stops/405238"], ["https://data.delijn.be/stops/504259", "https://data.delijn.be/stops/509259"], ["https://data.delijn.be/stops/308886", "https://data.delijn.be/stops/308887"], ["https://data.delijn.be/stops/504282", "https://data.delijn.be/stops/509278"], ["https://data.delijn.be/stops/200565", "https://data.delijn.be/stops/200667"], ["https://data.delijn.be/stops/508260", "https://data.delijn.be/stops/509867"], ["https://data.delijn.be/stops/203741", "https://data.delijn.be/stops/209713"], ["https://data.delijn.be/stops/504994", "https://data.delijn.be/stops/505897"], ["https://data.delijn.be/stops/501060", "https://data.delijn.be/stops/506054"], ["https://data.delijn.be/stops/401036", "https://data.delijn.be/stops/401039"], ["https://data.delijn.be/stops/202079", "https://data.delijn.be/stops/202169"], ["https://data.delijn.be/stops/106232", "https://data.delijn.be/stops/109123"], ["https://data.delijn.be/stops/508652", "https://data.delijn.be/stops/508950"], ["https://data.delijn.be/stops/407370", "https://data.delijn.be/stops/407375"], ["https://data.delijn.be/stops/300277", "https://data.delijn.be/stops/306285"], ["https://data.delijn.be/stops/406974", "https://data.delijn.be/stops/409468"], ["https://data.delijn.be/stops/304171", "https://data.delijn.be/stops/307547"], ["https://data.delijn.be/stops/508295", "https://data.delijn.be/stops/509842"], ["https://data.delijn.be/stops/300562", "https://data.delijn.be/stops/307859"], ["https://data.delijn.be/stops/302921", "https://data.delijn.be/stops/306199"], ["https://data.delijn.be/stops/206743", "https://data.delijn.be/stops/207710"], ["https://data.delijn.be/stops/303861", "https://data.delijn.be/stops/303862"], ["https://data.delijn.be/stops/305250", "https://data.delijn.be/stops/305285"], ["https://data.delijn.be/stops/402972", "https://data.delijn.be/stops/405586"], ["https://data.delijn.be/stops/307203", "https://data.delijn.be/stops/307204"], ["https://data.delijn.be/stops/300724", "https://data.delijn.be/stops/301426"], ["https://data.delijn.be/stops/502332", "https://data.delijn.be/stops/505052"], ["https://data.delijn.be/stops/209092", "https://data.delijn.be/stops/209093"], ["https://data.delijn.be/stops/101537", "https://data.delijn.be/stops/109075"], ["https://data.delijn.be/stops/206491", "https://data.delijn.be/stops/209679"], ["https://data.delijn.be/stops/403784", "https://data.delijn.be/stops/403785"], ["https://data.delijn.be/stops/102839", "https://data.delijn.be/stops/103049"], ["https://data.delijn.be/stops/102799", "https://data.delijn.be/stops/103896"], ["https://data.delijn.be/stops/103716", "https://data.delijn.be/stops/103718"], ["https://data.delijn.be/stops/206817", "https://data.delijn.be/stops/207816"], ["https://data.delijn.be/stops/304385", "https://data.delijn.be/stops/307416"], ["https://data.delijn.be/stops/402805", "https://data.delijn.be/stops/406128"], ["https://data.delijn.be/stops/207355", "https://data.delijn.be/stops/207721"], ["https://data.delijn.be/stops/503876", "https://data.delijn.be/stops/508607"], ["https://data.delijn.be/stops/201812", "https://data.delijn.be/stops/218026"], ["https://data.delijn.be/stops/200619", "https://data.delijn.be/stops/201618"], ["https://data.delijn.be/stops/206725", "https://data.delijn.be/stops/206742"], ["https://data.delijn.be/stops/208554", "https://data.delijn.be/stops/307594"], ["https://data.delijn.be/stops/405814", "https://data.delijn.be/stops/405818"], ["https://data.delijn.be/stops/106626", "https://data.delijn.be/stops/106627"], ["https://data.delijn.be/stops/206306", "https://data.delijn.be/stops/207306"], ["https://data.delijn.be/stops/202215", "https://data.delijn.be/stops/210005"], ["https://data.delijn.be/stops/304096", "https://data.delijn.be/stops/304097"], ["https://data.delijn.be/stops/505964", "https://data.delijn.be/stops/507274"], ["https://data.delijn.be/stops/506018", "https://data.delijn.be/stops/506608"], ["https://data.delijn.be/stops/301563", "https://data.delijn.be/stops/301579"], ["https://data.delijn.be/stops/207670", "https://data.delijn.be/stops/208481"], ["https://data.delijn.be/stops/102894", "https://data.delijn.be/stops/104090"], ["https://data.delijn.be/stops/204638", "https://data.delijn.be/stops/205638"], ["https://data.delijn.be/stops/400478", "https://data.delijn.be/stops/404674"], ["https://data.delijn.be/stops/406171", "https://data.delijn.be/stops/406180"], ["https://data.delijn.be/stops/403451", "https://data.delijn.be/stops/404530"], ["https://data.delijn.be/stops/208372", "https://data.delijn.be/stops/209371"], ["https://data.delijn.be/stops/206247", "https://data.delijn.be/stops/206248"], ["https://data.delijn.be/stops/304321", "https://data.delijn.be/stops/307005"], ["https://data.delijn.be/stops/508539", "https://data.delijn.be/stops/508554"], ["https://data.delijn.be/stops/108607", "https://data.delijn.be/stops/300066"], ["https://data.delijn.be/stops/200310", "https://data.delijn.be/stops/200311"], ["https://data.delijn.be/stops/302668", "https://data.delijn.be/stops/302697"], ["https://data.delijn.be/stops/200805", "https://data.delijn.be/stops/200810"], ["https://data.delijn.be/stops/505306", "https://data.delijn.be/stops/507698"], ["https://data.delijn.be/stops/503334", "https://data.delijn.be/stops/505630"], ["https://data.delijn.be/stops/504372", "https://data.delijn.be/stops/509614"], ["https://data.delijn.be/stops/407750", "https://data.delijn.be/stops/409794"], ["https://data.delijn.be/stops/101954", "https://data.delijn.be/stops/108308"], ["https://data.delijn.be/stops/307910", "https://data.delijn.be/stops/308157"], ["https://data.delijn.be/stops/300078", "https://data.delijn.be/stops/307344"], ["https://data.delijn.be/stops/306124", "https://data.delijn.be/stops/307144"], ["https://data.delijn.be/stops/404506", "https://data.delijn.be/stops/404545"], ["https://data.delijn.be/stops/104883", "https://data.delijn.be/stops/104887"], ["https://data.delijn.be/stops/304442", "https://data.delijn.be/stops/307718"], ["https://data.delijn.be/stops/505225", "https://data.delijn.be/stops/505575"], ["https://data.delijn.be/stops/204334", "https://data.delijn.be/stops/205040"], ["https://data.delijn.be/stops/108443", "https://data.delijn.be/stops/108444"], ["https://data.delijn.be/stops/303354", "https://data.delijn.be/stops/303369"], ["https://data.delijn.be/stops/504796", "https://data.delijn.be/stops/504801"], ["https://data.delijn.be/stops/300126", "https://data.delijn.be/stops/304382"], ["https://data.delijn.be/stops/300844", "https://data.delijn.be/stops/306718"], ["https://data.delijn.be/stops/101954", "https://data.delijn.be/stops/109871"], ["https://data.delijn.be/stops/403487", "https://data.delijn.be/stops/403560"], ["https://data.delijn.be/stops/107852", "https://data.delijn.be/stops/107853"], ["https://data.delijn.be/stops/303542", "https://data.delijn.be/stops/303543"], ["https://data.delijn.be/stops/200055", "https://data.delijn.be/stops/211120"], ["https://data.delijn.be/stops/209051", "https://data.delijn.be/stops/209052"], ["https://data.delijn.be/stops/405055", "https://data.delijn.be/stops/408372"], ["https://data.delijn.be/stops/406008", "https://data.delijn.be/stops/406144"], ["https://data.delijn.be/stops/200933", "https://data.delijn.be/stops/203265"], ["https://data.delijn.be/stops/207128", "https://data.delijn.be/stops/207129"], ["https://data.delijn.be/stops/306297", "https://data.delijn.be/stops/306300"], ["https://data.delijn.be/stops/202593", "https://data.delijn.be/stops/202594"], ["https://data.delijn.be/stops/206268", "https://data.delijn.be/stops/207052"], ["https://data.delijn.be/stops/402954", "https://data.delijn.be/stops/408583"], ["https://data.delijn.be/stops/303080", "https://data.delijn.be/stops/305159"], ["https://data.delijn.be/stops/504538", "https://data.delijn.be/stops/505277"], ["https://data.delijn.be/stops/206889", "https://data.delijn.be/stops/207386"], ["https://data.delijn.be/stops/404680", "https://data.delijn.be/stops/408727"], ["https://data.delijn.be/stops/402409", "https://data.delijn.be/stops/404641"], ["https://data.delijn.be/stops/405191", "https://data.delijn.be/stops/406325"], ["https://data.delijn.be/stops/304631", "https://data.delijn.be/stops/308755"], ["https://data.delijn.be/stops/207527", "https://data.delijn.be/stops/207555"], ["https://data.delijn.be/stops/206907", "https://data.delijn.be/stops/206908"], ["https://data.delijn.be/stops/108427", "https://data.delijn.be/stops/108428"], ["https://data.delijn.be/stops/305820", "https://data.delijn.be/stops/305859"], ["https://data.delijn.be/stops/305168", "https://data.delijn.be/stops/305208"], ["https://data.delijn.be/stops/409126", "https://data.delijn.be/stops/409523"], ["https://data.delijn.be/stops/301998", "https://data.delijn.be/stops/306317"], ["https://data.delijn.be/stops/508690", "https://data.delijn.be/stops/509951"], ["https://data.delijn.be/stops/306618", "https://data.delijn.be/stops/308479"], ["https://data.delijn.be/stops/201663", "https://data.delijn.be/stops/201849"], ["https://data.delijn.be/stops/501139", "https://data.delijn.be/stops/506132"], ["https://data.delijn.be/stops/409710", "https://data.delijn.be/stops/409712"], ["https://data.delijn.be/stops/403519", "https://data.delijn.be/stops/403520"], ["https://data.delijn.be/stops/102778", "https://data.delijn.be/stops/102779"], ["https://data.delijn.be/stops/207686", "https://data.delijn.be/stops/207748"], ["https://data.delijn.be/stops/402442", "https://data.delijn.be/stops/402443"], ["https://data.delijn.be/stops/507451", "https://data.delijn.be/stops/507455"], ["https://data.delijn.be/stops/405880", "https://data.delijn.be/stops/406386"], ["https://data.delijn.be/stops/102688", "https://data.delijn.be/stops/103905"], ["https://data.delijn.be/stops/109703", "https://data.delijn.be/stops/109704"], ["https://data.delijn.be/stops/505680", "https://data.delijn.be/stops/505681"], ["https://data.delijn.be/stops/401529", "https://data.delijn.be/stops/406888"], ["https://data.delijn.be/stops/502347", "https://data.delijn.be/stops/505770"], ["https://data.delijn.be/stops/503068", "https://data.delijn.be/stops/509762"], ["https://data.delijn.be/stops/206095", "https://data.delijn.be/stops/206724"], ["https://data.delijn.be/stops/206617", "https://data.delijn.be/stops/207617"], ["https://data.delijn.be/stops/405540", "https://data.delijn.be/stops/406786"], ["https://data.delijn.be/stops/206114", "https://data.delijn.be/stops/206154"], ["https://data.delijn.be/stops/206415", "https://data.delijn.be/stops/207415"], ["https://data.delijn.be/stops/502263", "https://data.delijn.be/stops/507263"], ["https://data.delijn.be/stops/208445", "https://data.delijn.be/stops/209445"], ["https://data.delijn.be/stops/503832", "https://data.delijn.be/stops/503833"], ["https://data.delijn.be/stops/409565", "https://data.delijn.be/stops/409573"], ["https://data.delijn.be/stops/404750", "https://data.delijn.be/stops/404753"], ["https://data.delijn.be/stops/501403", "https://data.delijn.be/stops/501512"], ["https://data.delijn.be/stops/501153", "https://data.delijn.be/stops/501163"], ["https://data.delijn.be/stops/206702", "https://data.delijn.be/stops/207979"], ["https://data.delijn.be/stops/204991", "https://data.delijn.be/stops/208779"], ["https://data.delijn.be/stops/101373", "https://data.delijn.be/stops/101402"], ["https://data.delijn.be/stops/208814", "https://data.delijn.be/stops/209200"], ["https://data.delijn.be/stops/409270", "https://data.delijn.be/stops/409333"], ["https://data.delijn.be/stops/106492", "https://data.delijn.be/stops/109255"], ["https://data.delijn.be/stops/103288", "https://data.delijn.be/stops/107686"], ["https://data.delijn.be/stops/201880", "https://data.delijn.be/stops/202028"], ["https://data.delijn.be/stops/206192", "https://data.delijn.be/stops/206956"], ["https://data.delijn.be/stops/209223", "https://data.delijn.be/stops/219018"], ["https://data.delijn.be/stops/305622", "https://data.delijn.be/stops/305641"], ["https://data.delijn.be/stops/503637", "https://data.delijn.be/stops/508792"], ["https://data.delijn.be/stops/505651", "https://data.delijn.be/stops/507755"], ["https://data.delijn.be/stops/105748", "https://data.delijn.be/stops/109826"], ["https://data.delijn.be/stops/301366", "https://data.delijn.be/stops/301372"], ["https://data.delijn.be/stops/102989", "https://data.delijn.be/stops/106516"], ["https://data.delijn.be/stops/303070", "https://data.delijn.be/stops/303124"], ["https://data.delijn.be/stops/502094", "https://data.delijn.be/stops/502142"], ["https://data.delijn.be/stops/501292", "https://data.delijn.be/stops/510014"], ["https://data.delijn.be/stops/109739", "https://data.delijn.be/stops/109740"], ["https://data.delijn.be/stops/205200", "https://data.delijn.be/stops/205201"], ["https://data.delijn.be/stops/104964", "https://data.delijn.be/stops/109459"], ["https://data.delijn.be/stops/400639", "https://data.delijn.be/stops/400920"], ["https://data.delijn.be/stops/208427", "https://data.delijn.be/stops/209427"], ["https://data.delijn.be/stops/509400", "https://data.delijn.be/stops/509423"], ["https://data.delijn.be/stops/104901", "https://data.delijn.be/stops/107653"], ["https://data.delijn.be/stops/208788", "https://data.delijn.be/stops/208789"], ["https://data.delijn.be/stops/108339", "https://data.delijn.be/stops/108342"], ["https://data.delijn.be/stops/200869", "https://data.delijn.be/stops/202078"], ["https://data.delijn.be/stops/202259", "https://data.delijn.be/stops/202260"], ["https://data.delijn.be/stops/402538", "https://data.delijn.be/stops/402539"], ["https://data.delijn.be/stops/106174", "https://data.delijn.be/stops/106178"], ["https://data.delijn.be/stops/109885", "https://data.delijn.be/stops/109887"], ["https://data.delijn.be/stops/308230", "https://data.delijn.be/stops/308232"], ["https://data.delijn.be/stops/400712", "https://data.delijn.be/stops/409500"], ["https://data.delijn.be/stops/501361", "https://data.delijn.be/stops/505359"], ["https://data.delijn.be/stops/302552", "https://data.delijn.be/stops/306588"], ["https://data.delijn.be/stops/501021", "https://data.delijn.be/stops/506598"], ["https://data.delijn.be/stops/300025", "https://data.delijn.be/stops/307000"], ["https://data.delijn.be/stops/404344", "https://data.delijn.be/stops/404949"], ["https://data.delijn.be/stops/104598", "https://data.delijn.be/stops/106839"], ["https://data.delijn.be/stops/205064", "https://data.delijn.be/stops/205692"], ["https://data.delijn.be/stops/102443", "https://data.delijn.be/stops/102446"], ["https://data.delijn.be/stops/401074", "https://data.delijn.be/stops/402899"], ["https://data.delijn.be/stops/404327", "https://data.delijn.be/stops/408669"], ["https://data.delijn.be/stops/302661", "https://data.delijn.be/stops/302690"], ["https://data.delijn.be/stops/209356", "https://data.delijn.be/stops/209499"], ["https://data.delijn.be/stops/403525", "https://data.delijn.be/stops/404224"], ["https://data.delijn.be/stops/210010", "https://data.delijn.be/stops/210011"], ["https://data.delijn.be/stops/103115", "https://data.delijn.be/stops/103127"], ["https://data.delijn.be/stops/208694", "https://data.delijn.be/stops/208695"], ["https://data.delijn.be/stops/300209", "https://data.delijn.be/stops/303127"], ["https://data.delijn.be/stops/304641", "https://data.delijn.be/stops/305388"], ["https://data.delijn.be/stops/200722", "https://data.delijn.be/stops/203407"], ["https://data.delijn.be/stops/502313", "https://data.delijn.be/stops/507313"], ["https://data.delijn.be/stops/405042", "https://data.delijn.be/stops/405050"], ["https://data.delijn.be/stops/506102", "https://data.delijn.be/stops/506134"], ["https://data.delijn.be/stops/201904", "https://data.delijn.be/stops/203495"], ["https://data.delijn.be/stops/307152", "https://data.delijn.be/stops/307157"], ["https://data.delijn.be/stops/109496", "https://data.delijn.be/stops/305624"], ["https://data.delijn.be/stops/301730", "https://data.delijn.be/stops/308416"], ["https://data.delijn.be/stops/402418", "https://data.delijn.be/stops/402459"], ["https://data.delijn.be/stops/202282", "https://data.delijn.be/stops/203633"], ["https://data.delijn.be/stops/305855", "https://data.delijn.be/stops/305857"], ["https://data.delijn.be/stops/108398", "https://data.delijn.be/stops/108411"], ["https://data.delijn.be/stops/406600", "https://data.delijn.be/stops/406623"], ["https://data.delijn.be/stops/304363", "https://data.delijn.be/stops/307374"], ["https://data.delijn.be/stops/305768", "https://data.delijn.be/stops/305770"], ["https://data.delijn.be/stops/207872", "https://data.delijn.be/stops/208365"], ["https://data.delijn.be/stops/401308", "https://data.delijn.be/stops/401319"], ["https://data.delijn.be/stops/502033", "https://data.delijn.be/stops/507642"], ["https://data.delijn.be/stops/304036", "https://data.delijn.be/stops/304037"], ["https://data.delijn.be/stops/106664", "https://data.delijn.be/stops/106666"], ["https://data.delijn.be/stops/108298", "https://data.delijn.be/stops/108299"], ["https://data.delijn.be/stops/504585", "https://data.delijn.be/stops/509585"], ["https://data.delijn.be/stops/504380", "https://data.delijn.be/stops/504383"], ["https://data.delijn.be/stops/402042", "https://data.delijn.be/stops/402456"], ["https://data.delijn.be/stops/200212", "https://data.delijn.be/stops/201128"], ["https://data.delijn.be/stops/206964", "https://data.delijn.be/stops/207964"], ["https://data.delijn.be/stops/202031", "https://data.delijn.be/stops/202033"], ["https://data.delijn.be/stops/302206", "https://data.delijn.be/stops/308100"], ["https://data.delijn.be/stops/301213", "https://data.delijn.be/stops/301217"], ["https://data.delijn.be/stops/406289", "https://data.delijn.be/stops/406424"], ["https://data.delijn.be/stops/301696", "https://data.delijn.be/stops/301724"], ["https://data.delijn.be/stops/503758", "https://data.delijn.be/stops/508697"], ["https://data.delijn.be/stops/302179", "https://data.delijn.be/stops/305161"], ["https://data.delijn.be/stops/300811", "https://data.delijn.be/stops/307232"], ["https://data.delijn.be/stops/103755", "https://data.delijn.be/stops/104162"], ["https://data.delijn.be/stops/503256", "https://data.delijn.be/stops/503446"], ["https://data.delijn.be/stops/401638", "https://data.delijn.be/stops/308205"], ["https://data.delijn.be/stops/207768", "https://data.delijn.be/stops/207779"], ["https://data.delijn.be/stops/207825", "https://data.delijn.be/stops/207862"], ["https://data.delijn.be/stops/108485", "https://data.delijn.be/stops/108490"], ["https://data.delijn.be/stops/304236", "https://data.delijn.be/stops/304239"], ["https://data.delijn.be/stops/403717", "https://data.delijn.be/stops/406889"], ["https://data.delijn.be/stops/505019", "https://data.delijn.be/stops/507664"], ["https://data.delijn.be/stops/405843", "https://data.delijn.be/stops/405853"], ["https://data.delijn.be/stops/109629", "https://data.delijn.be/stops/109632"], ["https://data.delijn.be/stops/203113", "https://data.delijn.be/stops/205797"], ["https://data.delijn.be/stops/101620", "https://data.delijn.be/stops/102909"], ["https://data.delijn.be/stops/505746", "https://data.delijn.be/stops/506186"], ["https://data.delijn.be/stops/101834", "https://data.delijn.be/stops/107037"], ["https://data.delijn.be/stops/202920", "https://data.delijn.be/stops/203924"], ["https://data.delijn.be/stops/502469", "https://data.delijn.be/stops/509699"], ["https://data.delijn.be/stops/201863", "https://data.delijn.be/stops/202424"], ["https://data.delijn.be/stops/501335", "https://data.delijn.be/stops/501357"], ["https://data.delijn.be/stops/201101", "https://data.delijn.be/stops/201111"], ["https://data.delijn.be/stops/401566", "https://data.delijn.be/stops/401723"], ["https://data.delijn.be/stops/101822", "https://data.delijn.be/stops/107025"], ["https://data.delijn.be/stops/302901", "https://data.delijn.be/stops/302911"], ["https://data.delijn.be/stops/508114", "https://data.delijn.be/stops/508121"], ["https://data.delijn.be/stops/507716", "https://data.delijn.be/stops/507717"], ["https://data.delijn.be/stops/502438", "https://data.delijn.be/stops/507749"], ["https://data.delijn.be/stops/502222", "https://data.delijn.be/stops/509796"], ["https://data.delijn.be/stops/202884", "https://data.delijn.be/stops/202885"], ["https://data.delijn.be/stops/200344", "https://data.delijn.be/stops/201378"], ["https://data.delijn.be/stops/203690", "https://data.delijn.be/stops/203691"], ["https://data.delijn.be/stops/302236", "https://data.delijn.be/stops/302237"], ["https://data.delijn.be/stops/101520", "https://data.delijn.be/stops/103338"], ["https://data.delijn.be/stops/406079", "https://data.delijn.be/stops/407154"], ["https://data.delijn.be/stops/206613", "https://data.delijn.be/stops/206707"], ["https://data.delijn.be/stops/101797", "https://data.delijn.be/stops/108529"], ["https://data.delijn.be/stops/308108", "https://data.delijn.be/stops/308110"], ["https://data.delijn.be/stops/401268", "https://data.delijn.be/stops/401390"], ["https://data.delijn.be/stops/208841", "https://data.delijn.be/stops/209700"], ["https://data.delijn.be/stops/200331", "https://data.delijn.be/stops/201959"], ["https://data.delijn.be/stops/107002", "https://data.delijn.be/stops/107004"], ["https://data.delijn.be/stops/303069", "https://data.delijn.be/stops/303210"], ["https://data.delijn.be/stops/504219", "https://data.delijn.be/stops/509215"], ["https://data.delijn.be/stops/304403", "https://data.delijn.be/stops/307955"], ["https://data.delijn.be/stops/503100", "https://data.delijn.be/stops/503393"], ["https://data.delijn.be/stops/105431", "https://data.delijn.be/stops/109843"], ["https://data.delijn.be/stops/107090", "https://data.delijn.be/stops/109845"], ["https://data.delijn.be/stops/306125", "https://data.delijn.be/stops/306126"], ["https://data.delijn.be/stops/102947", "https://data.delijn.be/stops/106125"], ["https://data.delijn.be/stops/405130", "https://data.delijn.be/stops/409157"], ["https://data.delijn.be/stops/202042", "https://data.delijn.be/stops/202685"], ["https://data.delijn.be/stops/400759", "https://data.delijn.be/stops/410047"], ["https://data.delijn.be/stops/303349", "https://data.delijn.be/stops/303365"], ["https://data.delijn.be/stops/206225", "https://data.delijn.be/stops/300187"], ["https://data.delijn.be/stops/406238", "https://data.delijn.be/stops/406239"], ["https://data.delijn.be/stops/400022", "https://data.delijn.be/stops/400023"], ["https://data.delijn.be/stops/303797", "https://data.delijn.be/stops/303845"], ["https://data.delijn.be/stops/406529", "https://data.delijn.be/stops/409288"], ["https://data.delijn.be/stops/105737", "https://data.delijn.be/stops/105741"], ["https://data.delijn.be/stops/303203", "https://data.delijn.be/stops/307953"], ["https://data.delijn.be/stops/204109", "https://data.delijn.be/stops/204417"], ["https://data.delijn.be/stops/104937", "https://data.delijn.be/stops/108357"], ["https://data.delijn.be/stops/101811", "https://data.delijn.be/stops/104676"], ["https://data.delijn.be/stops/109043", "https://data.delijn.be/stops/109046"], ["https://data.delijn.be/stops/200052", "https://data.delijn.be/stops/211119"], ["https://data.delijn.be/stops/205544", "https://data.delijn.be/stops/205545"], ["https://data.delijn.be/stops/503378", "https://data.delijn.be/stops/504687"], ["https://data.delijn.be/stops/304982", "https://data.delijn.be/stops/308015"], ["https://data.delijn.be/stops/306607", "https://data.delijn.be/stops/306609"], ["https://data.delijn.be/stops/404015", "https://data.delijn.be/stops/404017"], ["https://data.delijn.be/stops/201342", "https://data.delijn.be/stops/210335"], ["https://data.delijn.be/stops/406595", "https://data.delijn.be/stops/406619"], ["https://data.delijn.be/stops/102229", "https://data.delijn.be/stops/102608"], ["https://data.delijn.be/stops/501095", "https://data.delijn.be/stops/505355"], ["https://data.delijn.be/stops/506417", "https://data.delijn.be/stops/506475"], ["https://data.delijn.be/stops/504037", "https://data.delijn.be/stops/509284"], ["https://data.delijn.be/stops/109693", "https://data.delijn.be/stops/109697"], ["https://data.delijn.be/stops/202457", "https://data.delijn.be/stops/203457"], ["https://data.delijn.be/stops/405761", "https://data.delijn.be/stops/308932"], ["https://data.delijn.be/stops/208678", "https://data.delijn.be/stops/208806"], ["https://data.delijn.be/stops/503519", "https://data.delijn.be/stops/504791"], ["https://data.delijn.be/stops/102399", "https://data.delijn.be/stops/108735"], ["https://data.delijn.be/stops/106590", "https://data.delijn.be/stops/107249"], ["https://data.delijn.be/stops/503717", "https://data.delijn.be/stops/503726"], ["https://data.delijn.be/stops/200508", "https://data.delijn.be/stops/201416"], ["https://data.delijn.be/stops/101691", "https://data.delijn.be/stops/101692"], ["https://data.delijn.be/stops/202677", "https://data.delijn.be/stops/202678"], ["https://data.delijn.be/stops/502207", "https://data.delijn.be/stops/507207"], ["https://data.delijn.be/stops/204924", "https://data.delijn.be/stops/205924"], ["https://data.delijn.be/stops/503235", "https://data.delijn.be/stops/508238"], ["https://data.delijn.be/stops/200267", "https://data.delijn.be/stops/201226"], ["https://data.delijn.be/stops/103339", "https://data.delijn.be/stops/103950"], ["https://data.delijn.be/stops/403304", "https://data.delijn.be/stops/403441"], ["https://data.delijn.be/stops/408673", "https://data.delijn.be/stops/408674"], ["https://data.delijn.be/stops/207664", "https://data.delijn.be/stops/207665"], ["https://data.delijn.be/stops/201860", "https://data.delijn.be/stops/203672"], ["https://data.delijn.be/stops/104431", "https://data.delijn.be/stops/106785"], ["https://data.delijn.be/stops/305732", "https://data.delijn.be/stops/305733"], ["https://data.delijn.be/stops/208398", "https://data.delijn.be/stops/209398"], ["https://data.delijn.be/stops/101450", "https://data.delijn.be/stops/104545"], ["https://data.delijn.be/stops/507406", "https://data.delijn.be/stops/507407"], ["https://data.delijn.be/stops/406736", "https://data.delijn.be/stops/406939"], ["https://data.delijn.be/stops/105273", "https://data.delijn.be/stops/105274"], ["https://data.delijn.be/stops/403629", "https://data.delijn.be/stops/404581"], ["https://data.delijn.be/stops/207572", "https://data.delijn.be/stops/207573"], ["https://data.delijn.be/stops/506228", "https://data.delijn.be/stops/506475"], ["https://data.delijn.be/stops/501348", "https://data.delijn.be/stops/506546"], ["https://data.delijn.be/stops/404465", "https://data.delijn.be/stops/404571"], ["https://data.delijn.be/stops/202209", "https://data.delijn.be/stops/203502"], ["https://data.delijn.be/stops/504208", "https://data.delijn.be/stops/504215"], ["https://data.delijn.be/stops/200810", "https://data.delijn.be/stops/203053"], ["https://data.delijn.be/stops/202635", "https://data.delijn.be/stops/205066"], ["https://data.delijn.be/stops/206767", "https://data.delijn.be/stops/206768"], ["https://data.delijn.be/stops/200555", "https://data.delijn.be/stops/201670"], ["https://data.delijn.be/stops/106148", "https://data.delijn.be/stops/106149"], ["https://data.delijn.be/stops/405882", "https://data.delijn.be/stops/409667"], ["https://data.delijn.be/stops/207978", "https://data.delijn.be/stops/301093"], ["https://data.delijn.be/stops/106570", "https://data.delijn.be/stops/106573"], ["https://data.delijn.be/stops/403934", "https://data.delijn.be/stops/404003"], ["https://data.delijn.be/stops/206531", "https://data.delijn.be/stops/206859"], ["https://data.delijn.be/stops/201724", "https://data.delijn.be/stops/201742"], ["https://data.delijn.be/stops/504174", "https://data.delijn.be/stops/508099"], ["https://data.delijn.be/stops/209517", "https://data.delijn.be/stops/209535"], ["https://data.delijn.be/stops/206251", "https://data.delijn.be/stops/207584"], ["https://data.delijn.be/stops/404144", "https://data.delijn.be/stops/404145"], ["https://data.delijn.be/stops/106084", "https://data.delijn.be/stops/106088"], ["https://data.delijn.be/stops/504570", "https://data.delijn.be/stops/509082"], ["https://data.delijn.be/stops/102567", "https://data.delijn.be/stops/406484"], ["https://data.delijn.be/stops/206418", "https://data.delijn.be/stops/206659"], ["https://data.delijn.be/stops/206800", "https://data.delijn.be/stops/208572"], ["https://data.delijn.be/stops/106417", "https://data.delijn.be/stops/106418"], ["https://data.delijn.be/stops/503190", "https://data.delijn.be/stops/503218"], ["https://data.delijn.be/stops/304040", "https://data.delijn.be/stops/308945"], ["https://data.delijn.be/stops/401011", "https://data.delijn.be/stops/401060"], ["https://data.delijn.be/stops/207958", "https://data.delijn.be/stops/303844"], ["https://data.delijn.be/stops/400800", "https://data.delijn.be/stops/400824"], ["https://data.delijn.be/stops/407692", "https://data.delijn.be/stops/407695"], ["https://data.delijn.be/stops/404357", "https://data.delijn.be/stops/408796"], ["https://data.delijn.be/stops/204218", "https://data.delijn.be/stops/205180"], ["https://data.delijn.be/stops/106955", "https://data.delijn.be/stops/106957"], ["https://data.delijn.be/stops/206543", "https://data.delijn.be/stops/207542"], ["https://data.delijn.be/stops/200732", "https://data.delijn.be/stops/202627"], ["https://data.delijn.be/stops/407538", "https://data.delijn.be/stops/407549"], ["https://data.delijn.be/stops/504053", "https://data.delijn.be/stops/509828"], ["https://data.delijn.be/stops/108687", "https://data.delijn.be/stops/108897"], ["https://data.delijn.be/stops/404042", "https://data.delijn.be/stops/404052"], ["https://data.delijn.be/stops/103113", "https://data.delijn.be/stops/106815"], ["https://data.delijn.be/stops/403715", "https://data.delijn.be/stops/403724"], ["https://data.delijn.be/stops/302019", "https://data.delijn.be/stops/302044"], ["https://data.delijn.be/stops/502359", "https://data.delijn.be/stops/507358"], ["https://data.delijn.be/stops/503616", "https://data.delijn.be/stops/505565"], ["https://data.delijn.be/stops/101799", "https://data.delijn.be/stops/108511"], ["https://data.delijn.be/stops/107224", "https://data.delijn.be/stops/109884"], ["https://data.delijn.be/stops/302779", "https://data.delijn.be/stops/307781"], ["https://data.delijn.be/stops/200540", "https://data.delijn.be/stops/205931"], ["https://data.delijn.be/stops/206077", "https://data.delijn.be/stops/206315"], ["https://data.delijn.be/stops/501113", "https://data.delijn.be/stops/506113"], ["https://data.delijn.be/stops/204741", "https://data.delijn.be/stops/204746"], ["https://data.delijn.be/stops/102654", "https://data.delijn.be/stops/107788"], ["https://data.delijn.be/stops/204468", "https://data.delijn.be/stops/205468"], ["https://data.delijn.be/stops/501130", "https://data.delijn.be/stops/501134"], ["https://data.delijn.be/stops/106020", "https://data.delijn.be/stops/106022"], ["https://data.delijn.be/stops/406183", "https://data.delijn.be/stops/406203"], ["https://data.delijn.be/stops/200309", "https://data.delijn.be/stops/201283"], ["https://data.delijn.be/stops/403634", "https://data.delijn.be/stops/403653"], ["https://data.delijn.be/stops/307427", "https://data.delijn.be/stops/308591"], ["https://data.delijn.be/stops/400289", "https://data.delijn.be/stops/400299"], ["https://data.delijn.be/stops/303090", "https://data.delijn.be/stops/303103"], ["https://data.delijn.be/stops/402303", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/407044", "https://data.delijn.be/stops/407046"], ["https://data.delijn.be/stops/101442", "https://data.delijn.be/stops/106481"], ["https://data.delijn.be/stops/303636", "https://data.delijn.be/stops/304807"], ["https://data.delijn.be/stops/200074", "https://data.delijn.be/stops/200449"], ["https://data.delijn.be/stops/303718", "https://data.delijn.be/stops/303719"], ["https://data.delijn.be/stops/102621", "https://data.delijn.be/stops/102629"], ["https://data.delijn.be/stops/506441", "https://data.delijn.be/stops/506444"], ["https://data.delijn.be/stops/503002", "https://data.delijn.be/stops/505339"], ["https://data.delijn.be/stops/505378", "https://data.delijn.be/stops/505580"], ["https://data.delijn.be/stops/301818", "https://data.delijn.be/stops/303891"], ["https://data.delijn.be/stops/504356", "https://data.delijn.be/stops/504359"], ["https://data.delijn.be/stops/501115", "https://data.delijn.be/stops/506115"], ["https://data.delijn.be/stops/301581", "https://data.delijn.be/stops/308084"], ["https://data.delijn.be/stops/404303", "https://data.delijn.be/stops/409575"], ["https://data.delijn.be/stops/404664", "https://data.delijn.be/stops/404687"], ["https://data.delijn.be/stops/105069", "https://data.delijn.be/stops/106739"], ["https://data.delijn.be/stops/104948", "https://data.delijn.be/stops/401957"], ["https://data.delijn.be/stops/208651", "https://data.delijn.be/stops/209652"], ["https://data.delijn.be/stops/301313", "https://data.delijn.be/stops/301323"], ["https://data.delijn.be/stops/403484", "https://data.delijn.be/stops/404229"], ["https://data.delijn.be/stops/300101", "https://data.delijn.be/stops/306852"], ["https://data.delijn.be/stops/502513", "https://data.delijn.be/stops/502812"], ["https://data.delijn.be/stops/505306", "https://data.delijn.be/stops/508934"], ["https://data.delijn.be/stops/108091", "https://data.delijn.be/stops/108691"], ["https://data.delijn.be/stops/300518", "https://data.delijn.be/stops/300531"], ["https://data.delijn.be/stops/206663", "https://data.delijn.be/stops/207994"], ["https://data.delijn.be/stops/202856", "https://data.delijn.be/stops/208695"], ["https://data.delijn.be/stops/106827", "https://data.delijn.be/stops/106829"], ["https://data.delijn.be/stops/106042", "https://data.delijn.be/stops/106043"], ["https://data.delijn.be/stops/103369", "https://data.delijn.be/stops/108010"], ["https://data.delijn.be/stops/505722", "https://data.delijn.be/stops/506116"], ["https://data.delijn.be/stops/504413", "https://data.delijn.be/stops/509467"], ["https://data.delijn.be/stops/501600", "https://data.delijn.be/stops/504503"], ["https://data.delijn.be/stops/206203", "https://data.delijn.be/stops/206368"], ["https://data.delijn.be/stops/300465", "https://data.delijn.be/stops/304975"], ["https://data.delijn.be/stops/206962", "https://data.delijn.be/stops/207039"], ["https://data.delijn.be/stops/305561", "https://data.delijn.be/stops/305562"], ["https://data.delijn.be/stops/407896", "https://data.delijn.be/stops/408125"], ["https://data.delijn.be/stops/105013", "https://data.delijn.be/stops/105014"], ["https://data.delijn.be/stops/302402", "https://data.delijn.be/stops/302404"], ["https://data.delijn.be/stops/408454", "https://data.delijn.be/stops/409160"], ["https://data.delijn.be/stops/103313", "https://data.delijn.be/stops/109422"], ["https://data.delijn.be/stops/406046", "https://data.delijn.be/stops/406121"], ["https://data.delijn.be/stops/208837", "https://data.delijn.be/stops/209200"], ["https://data.delijn.be/stops/303953", "https://data.delijn.be/stops/303958"], ["https://data.delijn.be/stops/109990", "https://data.delijn.be/stops/410163"], ["https://data.delijn.be/stops/404625", "https://data.delijn.be/stops/406954"], ["https://data.delijn.be/stops/102195", "https://data.delijn.be/stops/105175"], ["https://data.delijn.be/stops/105113", "https://data.delijn.be/stops/105828"], ["https://data.delijn.be/stops/106132", "https://data.delijn.be/stops/106134"], ["https://data.delijn.be/stops/305130", "https://data.delijn.be/stops/305214"], ["https://data.delijn.be/stops/301184", "https://data.delijn.be/stops/304086"], ["https://data.delijn.be/stops/503219", "https://data.delijn.be/stops/503926"], ["https://data.delijn.be/stops/208805", "https://data.delijn.be/stops/208811"], ["https://data.delijn.be/stops/400450", "https://data.delijn.be/stops/407214"], ["https://data.delijn.be/stops/304061", "https://data.delijn.be/stops/307969"], ["https://data.delijn.be/stops/308793", "https://data.delijn.be/stops/308938"], ["https://data.delijn.be/stops/105436", "https://data.delijn.be/stops/109981"], ["https://data.delijn.be/stops/400825", "https://data.delijn.be/stops/403572"], ["https://data.delijn.be/stops/104345", "https://data.delijn.be/stops/104965"], ["https://data.delijn.be/stops/200965", "https://data.delijn.be/stops/201393"], ["https://data.delijn.be/stops/301587", "https://data.delijn.be/stops/308084"], ["https://data.delijn.be/stops/206122", "https://data.delijn.be/stops/206471"], ["https://data.delijn.be/stops/505664", "https://data.delijn.be/stops/509702"], ["https://data.delijn.be/stops/407859", "https://data.delijn.be/stops/409543"], ["https://data.delijn.be/stops/104563", "https://data.delijn.be/stops/107481"], ["https://data.delijn.be/stops/300496", "https://data.delijn.be/stops/302072"], ["https://data.delijn.be/stops/503248", "https://data.delijn.be/stops/508475"], ["https://data.delijn.be/stops/302181", "https://data.delijn.be/stops/308097"], ["https://data.delijn.be/stops/405456", "https://data.delijn.be/stops/407567"], ["https://data.delijn.be/stops/503332", "https://data.delijn.be/stops/508332"], ["https://data.delijn.be/stops/403080", "https://data.delijn.be/stops/410337"], ["https://data.delijn.be/stops/504199", "https://data.delijn.be/stops/504202"], ["https://data.delijn.be/stops/301102", "https://data.delijn.be/stops/303376"], ["https://data.delijn.be/stops/301255", "https://data.delijn.be/stops/308263"], ["https://data.delijn.be/stops/403228", "https://data.delijn.be/stops/403253"], ["https://data.delijn.be/stops/503252", "https://data.delijn.be/stops/508235"], ["https://data.delijn.be/stops/102697", "https://data.delijn.be/stops/105625"], ["https://data.delijn.be/stops/206917", "https://data.delijn.be/stops/207917"], ["https://data.delijn.be/stops/505528", "https://data.delijn.be/stops/506244"], ["https://data.delijn.be/stops/200620", "https://data.delijn.be/stops/211092"], ["https://data.delijn.be/stops/206405", "https://data.delijn.be/stops/206406"], ["https://data.delijn.be/stops/407304", "https://data.delijn.be/stops/407305"], ["https://data.delijn.be/stops/103218", "https://data.delijn.be/stops/104698"], ["https://data.delijn.be/stops/503044", "https://data.delijn.be/stops/505793"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/209064"], ["https://data.delijn.be/stops/408370", "https://data.delijn.be/stops/408376"], ["https://data.delijn.be/stops/204597", "https://data.delijn.be/stops/205586"], ["https://data.delijn.be/stops/200711", "https://data.delijn.be/stops/205400"], ["https://data.delijn.be/stops/501106", "https://data.delijn.be/stops/506104"], ["https://data.delijn.be/stops/208129", "https://data.delijn.be/stops/208130"], ["https://data.delijn.be/stops/409579", "https://data.delijn.be/stops/409807"], ["https://data.delijn.be/stops/405695", "https://data.delijn.be/stops/405989"], ["https://data.delijn.be/stops/205063", "https://data.delijn.be/stops/205713"], ["https://data.delijn.be/stops/503580", "https://data.delijn.be/stops/508580"], ["https://data.delijn.be/stops/209292", "https://data.delijn.be/stops/209790"], ["https://data.delijn.be/stops/402410", "https://data.delijn.be/stops/402411"], ["https://data.delijn.be/stops/400478", "https://data.delijn.be/stops/400479"], ["https://data.delijn.be/stops/300413", "https://data.delijn.be/stops/303523"], ["https://data.delijn.be/stops/308424", "https://data.delijn.be/stops/308425"], ["https://data.delijn.be/stops/201694", "https://data.delijn.be/stops/202987"], ["https://data.delijn.be/stops/403448", "https://data.delijn.be/stops/407365"], ["https://data.delijn.be/stops/302101", "https://data.delijn.be/stops/302105"], ["https://data.delijn.be/stops/503195", "https://data.delijn.be/stops/508547"], ["https://data.delijn.be/stops/408279", "https://data.delijn.be/stops/408406"], ["https://data.delijn.be/stops/502733", "https://data.delijn.be/stops/507733"], ["https://data.delijn.be/stops/400933", "https://data.delijn.be/stops/406954"], ["https://data.delijn.be/stops/404872", "https://data.delijn.be/stops/405546"], ["https://data.delijn.be/stops/202475", "https://data.delijn.be/stops/203475"], ["https://data.delijn.be/stops/204997", "https://data.delijn.be/stops/508641"], ["https://data.delijn.be/stops/209389", "https://data.delijn.be/stops/209401"], ["https://data.delijn.be/stops/305387", "https://data.delijn.be/stops/305397"], ["https://data.delijn.be/stops/502493", "https://data.delijn.be/stops/505325"], ["https://data.delijn.be/stops/305179", "https://data.delijn.be/stops/308681"], ["https://data.delijn.be/stops/106039", "https://data.delijn.be/stops/106043"], ["https://data.delijn.be/stops/501593", "https://data.delijn.be/stops/504495"], ["https://data.delijn.be/stops/202676", "https://data.delijn.be/stops/203674"], ["https://data.delijn.be/stops/401424", "https://data.delijn.be/stops/401425"], ["https://data.delijn.be/stops/300946", "https://data.delijn.be/stops/305398"], ["https://data.delijn.be/stops/202761", "https://data.delijn.be/stops/203761"], ["https://data.delijn.be/stops/200673", "https://data.delijn.be/stops/201462"], ["https://data.delijn.be/stops/401649", "https://data.delijn.be/stops/401661"], ["https://data.delijn.be/stops/410182", "https://data.delijn.be/stops/410183"], ["https://data.delijn.be/stops/407627", "https://data.delijn.be/stops/409801"], ["https://data.delijn.be/stops/101357", "https://data.delijn.be/stops/102187"], ["https://data.delijn.be/stops/109309", "https://data.delijn.be/stops/109310"], ["https://data.delijn.be/stops/404482", "https://data.delijn.be/stops/404483"], ["https://data.delijn.be/stops/401410", "https://data.delijn.be/stops/300995"], ["https://data.delijn.be/stops/406350", "https://data.delijn.be/stops/408826"], ["https://data.delijn.be/stops/300506", "https://data.delijn.be/stops/308357"], ["https://data.delijn.be/stops/104514", "https://data.delijn.be/stops/107792"], ["https://data.delijn.be/stops/105244", "https://data.delijn.be/stops/105846"], ["https://data.delijn.be/stops/501065", "https://data.delijn.be/stops/506062"], ["https://data.delijn.be/stops/505803", "https://data.delijn.be/stops/509084"], ["https://data.delijn.be/stops/102538", "https://data.delijn.be/stops/406547"], ["https://data.delijn.be/stops/302601", "https://data.delijn.be/stops/302602"], ["https://data.delijn.be/stops/105038", "https://data.delijn.be/stops/105039"], ["https://data.delijn.be/stops/303835", "https://data.delijn.be/stops/305528"], ["https://data.delijn.be/stops/201413", "https://data.delijn.be/stops/203360"], ["https://data.delijn.be/stops/200192", "https://data.delijn.be/stops/210128"], ["https://data.delijn.be/stops/300001", "https://data.delijn.be/stops/302520"], ["https://data.delijn.be/stops/505594", "https://data.delijn.be/stops/509724"], ["https://data.delijn.be/stops/102059", "https://data.delijn.be/stops/102063"], ["https://data.delijn.be/stops/208513", "https://data.delijn.be/stops/209460"], ["https://data.delijn.be/stops/302224", "https://data.delijn.be/stops/302243"], ["https://data.delijn.be/stops/101930", "https://data.delijn.be/stops/101935"], ["https://data.delijn.be/stops/302536", "https://data.delijn.be/stops/302546"], ["https://data.delijn.be/stops/406611", "https://data.delijn.be/stops/406637"], ["https://data.delijn.be/stops/202519", "https://data.delijn.be/stops/203519"], ["https://data.delijn.be/stops/301950", "https://data.delijn.be/stops/305452"], ["https://data.delijn.be/stops/105048", "https://data.delijn.be/stops/106670"], ["https://data.delijn.be/stops/105482", "https://data.delijn.be/stops/105484"], ["https://data.delijn.be/stops/402563", "https://data.delijn.be/stops/407809"], ["https://data.delijn.be/stops/305567", "https://data.delijn.be/stops/307181"], ["https://data.delijn.be/stops/104056", "https://data.delijn.be/stops/108687"], ["https://data.delijn.be/stops/400559", "https://data.delijn.be/stops/403850"], ["https://data.delijn.be/stops/508319", "https://data.delijn.be/stops/508323"], ["https://data.delijn.be/stops/102157", "https://data.delijn.be/stops/109589"], ["https://data.delijn.be/stops/204180", "https://data.delijn.be/stops/205181"], ["https://data.delijn.be/stops/303421", "https://data.delijn.be/stops/304981"], ["https://data.delijn.be/stops/209001", "https://data.delijn.be/stops/209159"], ["https://data.delijn.be/stops/505060", "https://data.delijn.be/stops/505652"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/510014"], ["https://data.delijn.be/stops/405982", "https://data.delijn.be/stops/405983"], ["https://data.delijn.be/stops/206497", "https://data.delijn.be/stops/207503"], ["https://data.delijn.be/stops/203228", "https://data.delijn.be/stops/208857"], ["https://data.delijn.be/stops/403092", "https://data.delijn.be/stops/403123"], ["https://data.delijn.be/stops/105502", "https://data.delijn.be/stops/105509"], ["https://data.delijn.be/stops/204215", "https://data.delijn.be/stops/205214"], ["https://data.delijn.be/stops/201121", "https://data.delijn.be/stops/206933"], ["https://data.delijn.be/stops/205986", "https://data.delijn.be/stops/206255"], ["https://data.delijn.be/stops/304584", "https://data.delijn.be/stops/304607"], ["https://data.delijn.be/stops/204271", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/101614", "https://data.delijn.be/stops/106405"], ["https://data.delijn.be/stops/206002", "https://data.delijn.be/stops/206004"], ["https://data.delijn.be/stops/504432", "https://data.delijn.be/stops/505182"], ["https://data.delijn.be/stops/203113", "https://data.delijn.be/stops/205586"], ["https://data.delijn.be/stops/304477", "https://data.delijn.be/stops/304508"], ["https://data.delijn.be/stops/208128", "https://data.delijn.be/stops/209072"], ["https://data.delijn.be/stops/204091", "https://data.delijn.be/stops/205066"], ["https://data.delijn.be/stops/302915", "https://data.delijn.be/stops/303232"], ["https://data.delijn.be/stops/108613", "https://data.delijn.be/stops/301916"], ["https://data.delijn.be/stops/208226", "https://data.delijn.be/stops/208831"], ["https://data.delijn.be/stops/501161", "https://data.delijn.be/stops/501668"], ["https://data.delijn.be/stops/503759", "https://data.delijn.be/stops/509513"], ["https://data.delijn.be/stops/102935", "https://data.delijn.be/stops/104575"], ["https://data.delijn.be/stops/301550", "https://data.delijn.be/stops/301551"], ["https://data.delijn.be/stops/502170", "https://data.delijn.be/stops/505418"], ["https://data.delijn.be/stops/501060", "https://data.delijn.be/stops/502742"], ["https://data.delijn.be/stops/202215", "https://data.delijn.be/stops/203283"], ["https://data.delijn.be/stops/503668", "https://data.delijn.be/stops/508668"], ["https://data.delijn.be/stops/401179", "https://data.delijn.be/stops/401277"], ["https://data.delijn.be/stops/400932", "https://data.delijn.be/stops/404625"], ["https://data.delijn.be/stops/407668", "https://data.delijn.be/stops/407690"], ["https://data.delijn.be/stops/400806", "https://data.delijn.be/stops/400807"], ["https://data.delijn.be/stops/205689", "https://data.delijn.be/stops/205690"], ["https://data.delijn.be/stops/407669", "https://data.delijn.be/stops/409803"], ["https://data.delijn.be/stops/501267", "https://data.delijn.be/stops/501336"], ["https://data.delijn.be/stops/101166", "https://data.delijn.be/stops/102385"], ["https://data.delijn.be/stops/102197", "https://data.delijn.be/stops/105257"], ["https://data.delijn.be/stops/101005", "https://data.delijn.be/stops/101138"], ["https://data.delijn.be/stops/200478", "https://data.delijn.be/stops/201478"], ["https://data.delijn.be/stops/400924", "https://data.delijn.be/stops/400936"], ["https://data.delijn.be/stops/302257", "https://data.delijn.be/stops/304345"], ["https://data.delijn.be/stops/103259", "https://data.delijn.be/stops/105852"], ["https://data.delijn.be/stops/400732", "https://data.delijn.be/stops/405172"], ["https://data.delijn.be/stops/102552", "https://data.delijn.be/stops/405004"], ["https://data.delijn.be/stops/403688", "https://data.delijn.be/stops/403691"], ["https://data.delijn.be/stops/206216", "https://data.delijn.be/stops/207046"], ["https://data.delijn.be/stops/504525", "https://data.delijn.be/stops/509523"], ["https://data.delijn.be/stops/403383", "https://data.delijn.be/stops/403529"], ["https://data.delijn.be/stops/106031", "https://data.delijn.be/stops/106033"], ["https://data.delijn.be/stops/101750", "https://data.delijn.be/stops/104880"], ["https://data.delijn.be/stops/300662", "https://data.delijn.be/stops/301918"], ["https://data.delijn.be/stops/405572", "https://data.delijn.be/stops/405574"], ["https://data.delijn.be/stops/300094", "https://data.delijn.be/stops/300100"], ["https://data.delijn.be/stops/108833", "https://data.delijn.be/stops/108848"], ["https://data.delijn.be/stops/207753", "https://data.delijn.be/stops/207766"], ["https://data.delijn.be/stops/300023", "https://data.delijn.be/stops/300412"], ["https://data.delijn.be/stops/204155", "https://data.delijn.be/stops/204590"], ["https://data.delijn.be/stops/206346", "https://data.delijn.be/stops/206355"], ["https://data.delijn.be/stops/109972", "https://data.delijn.be/stops/109973"], ["https://data.delijn.be/stops/406164", "https://data.delijn.be/stops/406166"], ["https://data.delijn.be/stops/404169", "https://data.delijn.be/stops/404218"], ["https://data.delijn.be/stops/406562", "https://data.delijn.be/stops/406563"], ["https://data.delijn.be/stops/108791", "https://data.delijn.be/stops/109758"], ["https://data.delijn.be/stops/405537", "https://data.delijn.be/stops/409425"], ["https://data.delijn.be/stops/205714", "https://data.delijn.be/stops/205716"], ["https://data.delijn.be/stops/304340", "https://data.delijn.be/stops/305220"], ["https://data.delijn.be/stops/502644", "https://data.delijn.be/stops/507420"], ["https://data.delijn.be/stops/402470", "https://data.delijn.be/stops/402471"], ["https://data.delijn.be/stops/303124", "https://data.delijn.be/stops/303128"], ["https://data.delijn.be/stops/509231", "https://data.delijn.be/stops/509240"], ["https://data.delijn.be/stops/105598", "https://data.delijn.be/stops/105601"], ["https://data.delijn.be/stops/207252", "https://data.delijn.be/stops/216021"], ["https://data.delijn.be/stops/206770", "https://data.delijn.be/stops/206802"], ["https://data.delijn.be/stops/207873", "https://data.delijn.be/stops/207954"], ["https://data.delijn.be/stops/208713", "https://data.delijn.be/stops/208723"], ["https://data.delijn.be/stops/509478", "https://data.delijn.be/stops/509716"], ["https://data.delijn.be/stops/304894", "https://data.delijn.be/stops/304895"], ["https://data.delijn.be/stops/400056", "https://data.delijn.be/stops/400163"], ["https://data.delijn.be/stops/109233", "https://data.delijn.be/stops/109234"], ["https://data.delijn.be/stops/501302", "https://data.delijn.be/stops/506283"], ["https://data.delijn.be/stops/502382", "https://data.delijn.be/stops/502402"], ["https://data.delijn.be/stops/204437", "https://data.delijn.be/stops/204747"], ["https://data.delijn.be/stops/308149", "https://data.delijn.be/stops/308164"], ["https://data.delijn.be/stops/200746", "https://data.delijn.be/stops/201813"], ["https://data.delijn.be/stops/109834", "https://data.delijn.be/stops/109835"], ["https://data.delijn.be/stops/301068", "https://data.delijn.be/stops/301069"], ["https://data.delijn.be/stops/502010", "https://data.delijn.be/stops/507001"], ["https://data.delijn.be/stops/404974", "https://data.delijn.be/stops/404975"], ["https://data.delijn.be/stops/402460", "https://data.delijn.be/stops/402461"], ["https://data.delijn.be/stops/301792", "https://data.delijn.be/stops/305396"], ["https://data.delijn.be/stops/304937", "https://data.delijn.be/stops/304939"], ["https://data.delijn.be/stops/202089", "https://data.delijn.be/stops/203088"], ["https://data.delijn.be/stops/304840", "https://data.delijn.be/stops/304856"], ["https://data.delijn.be/stops/507027", "https://data.delijn.be/stops/507317"], ["https://data.delijn.be/stops/105103", "https://data.delijn.be/stops/105104"], ["https://data.delijn.be/stops/200899", "https://data.delijn.be/stops/203075"], ["https://data.delijn.be/stops/104118", "https://data.delijn.be/stops/104493"], ["https://data.delijn.be/stops/504263", "https://data.delijn.be/stops/509258"], ["https://data.delijn.be/stops/103098", "https://data.delijn.be/stops/103267"], ["https://data.delijn.be/stops/402310", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/202616", "https://data.delijn.be/stops/203616"], ["https://data.delijn.be/stops/403596", "https://data.delijn.be/stops/407515"], ["https://data.delijn.be/stops/410172", "https://data.delijn.be/stops/410177"], ["https://data.delijn.be/stops/102398", "https://data.delijn.be/stops/102419"], ["https://data.delijn.be/stops/206170", "https://data.delijn.be/stops/303838"], ["https://data.delijn.be/stops/200151", "https://data.delijn.be/stops/202358"], ["https://data.delijn.be/stops/204689", "https://data.delijn.be/stops/205666"], ["https://data.delijn.be/stops/301538", "https://data.delijn.be/stops/305140"], ["https://data.delijn.be/stops/300843", "https://data.delijn.be/stops/300844"], ["https://data.delijn.be/stops/204523", "https://data.delijn.be/stops/204524"], ["https://data.delijn.be/stops/207183", "https://data.delijn.be/stops/207690"], ["https://data.delijn.be/stops/404632", "https://data.delijn.be/stops/406962"], ["https://data.delijn.be/stops/508118", "https://data.delijn.be/stops/508121"], ["https://data.delijn.be/stops/407581", "https://data.delijn.be/stops/408874"], ["https://data.delijn.be/stops/303933", "https://data.delijn.be/stops/304593"], ["https://data.delijn.be/stops/201600", "https://data.delijn.be/stops/201843"], ["https://data.delijn.be/stops/204148", "https://data.delijn.be/stops/205131"], ["https://data.delijn.be/stops/207969", "https://data.delijn.be/stops/301427"], ["https://data.delijn.be/stops/200760", "https://data.delijn.be/stops/201774"], ["https://data.delijn.be/stops/206701", "https://data.delijn.be/stops/301612"], ["https://data.delijn.be/stops/405458", "https://data.delijn.be/stops/308823"], ["https://data.delijn.be/stops/401780", "https://data.delijn.be/stops/401781"], ["https://data.delijn.be/stops/409547", "https://data.delijn.be/stops/410112"], ["https://data.delijn.be/stops/206162", "https://data.delijn.be/stops/207021"], ["https://data.delijn.be/stops/300565", "https://data.delijn.be/stops/306112"], ["https://data.delijn.be/stops/400485", "https://data.delijn.be/stops/407688"], ["https://data.delijn.be/stops/200164", "https://data.delijn.be/stops/208730"], ["https://data.delijn.be/stops/103128", "https://data.delijn.be/stops/106778"], ["https://data.delijn.be/stops/401217", "https://data.delijn.be/stops/401224"], ["https://data.delijn.be/stops/406978", "https://data.delijn.be/stops/409464"], ["https://data.delijn.be/stops/505975", "https://data.delijn.be/stops/509412"], ["https://data.delijn.be/stops/406425", "https://data.delijn.be/stops/409404"], ["https://data.delijn.be/stops/104015", "https://data.delijn.be/stops/104660"], ["https://data.delijn.be/stops/505951", "https://data.delijn.be/stops/508283"], ["https://data.delijn.be/stops/308797", "https://data.delijn.be/stops/308848"], ["https://data.delijn.be/stops/206766", "https://data.delijn.be/stops/208544"], ["https://data.delijn.be/stops/503189", "https://data.delijn.be/stops/507765"], ["https://data.delijn.be/stops/502444", "https://data.delijn.be/stops/507464"], ["https://data.delijn.be/stops/104588", "https://data.delijn.be/stops/106067"], ["https://data.delijn.be/stops/300758", "https://data.delijn.be/stops/300805"], ["https://data.delijn.be/stops/500954", "https://data.delijn.be/stops/509176"], ["https://data.delijn.be/stops/102914", "https://data.delijn.be/stops/105808"], ["https://data.delijn.be/stops/104288", "https://data.delijn.be/stops/104289"], ["https://data.delijn.be/stops/109006", "https://data.delijn.be/stops/402019"], ["https://data.delijn.be/stops/201009", "https://data.delijn.be/stops/201848"], ["https://data.delijn.be/stops/305052", "https://data.delijn.be/stops/305053"], ["https://data.delijn.be/stops/401189", "https://data.delijn.be/stops/410175"], ["https://data.delijn.be/stops/307080", "https://data.delijn.be/stops/307894"], ["https://data.delijn.be/stops/503507", "https://data.delijn.be/stops/508508"], ["https://data.delijn.be/stops/303891", "https://data.delijn.be/stops/305312"], ["https://data.delijn.be/stops/308460", "https://data.delijn.be/stops/308461"], ["https://data.delijn.be/stops/306325", "https://data.delijn.be/stops/308559"], ["https://data.delijn.be/stops/206674", "https://data.delijn.be/stops/209173"], ["https://data.delijn.be/stops/301863", "https://data.delijn.be/stops/301873"], ["https://data.delijn.be/stops/507344", "https://data.delijn.be/stops/507345"], ["https://data.delijn.be/stops/304923", "https://data.delijn.be/stops/304924"], ["https://data.delijn.be/stops/300581", "https://data.delijn.be/stops/300582"], ["https://data.delijn.be/stops/308289", "https://data.delijn.be/stops/308291"], ["https://data.delijn.be/stops/208757", "https://data.delijn.be/stops/208758"], ["https://data.delijn.be/stops/502134", "https://data.delijn.be/stops/507089"], ["https://data.delijn.be/stops/402838", "https://data.delijn.be/stops/406993"], ["https://data.delijn.be/stops/202916", "https://data.delijn.be/stops/203731"], ["https://data.delijn.be/stops/302088", "https://data.delijn.be/stops/302277"], ["https://data.delijn.be/stops/203251", "https://data.delijn.be/stops/203252"], ["https://data.delijn.be/stops/304688", "https://data.delijn.be/stops/307160"], ["https://data.delijn.be/stops/101752", "https://data.delijn.be/stops/109821"], ["https://data.delijn.be/stops/108993", "https://data.delijn.be/stops/108995"], ["https://data.delijn.be/stops/502497", "https://data.delijn.be/stops/505598"], ["https://data.delijn.be/stops/504971", "https://data.delijn.be/stops/508981"], ["https://data.delijn.be/stops/200657", "https://data.delijn.be/stops/200658"], ["https://data.delijn.be/stops/206378", "https://data.delijn.be/stops/207730"], ["https://data.delijn.be/stops/300954", "https://data.delijn.be/stops/301041"], ["https://data.delijn.be/stops/107603", "https://data.delijn.be/stops/107726"], ["https://data.delijn.be/stops/508184", "https://data.delijn.be/stops/508188"], ["https://data.delijn.be/stops/401475", "https://data.delijn.be/stops/403134"], ["https://data.delijn.be/stops/402585", "https://data.delijn.be/stops/402653"], ["https://data.delijn.be/stops/303471", "https://data.delijn.be/stops/303517"], ["https://data.delijn.be/stops/502119", "https://data.delijn.be/stops/502124"], ["https://data.delijn.be/stops/108241", "https://data.delijn.be/stops/108242"], ["https://data.delijn.be/stops/300090", "https://data.delijn.be/stops/300093"], ["https://data.delijn.be/stops/202819", "https://data.delijn.be/stops/203819"], ["https://data.delijn.be/stops/203862", "https://data.delijn.be/stops/208701"], ["https://data.delijn.be/stops/402242", "https://data.delijn.be/stops/410078"], ["https://data.delijn.be/stops/106992", "https://data.delijn.be/stops/107317"], ["https://data.delijn.be/stops/405676", "https://data.delijn.be/stops/405689"], ["https://data.delijn.be/stops/202980", "https://data.delijn.be/stops/203981"], ["https://data.delijn.be/stops/507191", "https://data.delijn.be/stops/509945"], ["https://data.delijn.be/stops/506114", "https://data.delijn.be/stops/506165"], ["https://data.delijn.be/stops/303589", "https://data.delijn.be/stops/303590"], ["https://data.delijn.be/stops/405133", "https://data.delijn.be/stops/407109"], ["https://data.delijn.be/stops/503343", "https://data.delijn.be/stops/508342"], ["https://data.delijn.be/stops/504577", "https://data.delijn.be/stops/505205"], ["https://data.delijn.be/stops/204043", "https://data.delijn.be/stops/205409"], ["https://data.delijn.be/stops/504514", "https://data.delijn.be/stops/504636"], ["https://data.delijn.be/stops/302647", "https://data.delijn.be/stops/302657"], ["https://data.delijn.be/stops/304708", "https://data.delijn.be/stops/304709"], ["https://data.delijn.be/stops/401344", "https://data.delijn.be/stops/406064"], ["https://data.delijn.be/stops/204327", "https://data.delijn.be/stops/205495"], ["https://data.delijn.be/stops/502058", "https://data.delijn.be/stops/507281"], ["https://data.delijn.be/stops/108465", "https://data.delijn.be/stops/108620"], ["https://data.delijn.be/stops/206365", "https://data.delijn.be/stops/207364"], ["https://data.delijn.be/stops/301227", "https://data.delijn.be/stops/306664"], ["https://data.delijn.be/stops/204914", "https://data.delijn.be/stops/204916"], ["https://data.delijn.be/stops/105884", "https://data.delijn.be/stops/105896"], ["https://data.delijn.be/stops/503774", "https://data.delijn.be/stops/508520"], ["https://data.delijn.be/stops/408573", "https://data.delijn.be/stops/408677"], ["https://data.delijn.be/stops/102818", "https://data.delijn.be/stops/104545"], ["https://data.delijn.be/stops/404641", "https://data.delijn.be/stops/404990"], ["https://data.delijn.be/stops/404391", "https://data.delijn.be/stops/404782"], ["https://data.delijn.be/stops/219080", "https://data.delijn.be/stops/303118"], ["https://data.delijn.be/stops/304394", "https://data.delijn.be/stops/304398"], ["https://data.delijn.be/stops/108733", "https://data.delijn.be/stops/108737"], ["https://data.delijn.be/stops/200336", "https://data.delijn.be/stops/201336"], ["https://data.delijn.be/stops/304555", "https://data.delijn.be/stops/307585"], ["https://data.delijn.be/stops/400652", "https://data.delijn.be/stops/410264"], ["https://data.delijn.be/stops/106316", "https://data.delijn.be/stops/106318"], ["https://data.delijn.be/stops/304251", "https://data.delijn.be/stops/305493"], ["https://data.delijn.be/stops/405214", "https://data.delijn.be/stops/405246"], ["https://data.delijn.be/stops/406834", "https://data.delijn.be/stops/407286"], ["https://data.delijn.be/stops/400540", "https://data.delijn.be/stops/403190"], ["https://data.delijn.be/stops/102646", "https://data.delijn.be/stops/109911"], ["https://data.delijn.be/stops/109058", "https://data.delijn.be/stops/405804"], ["https://data.delijn.be/stops/508039", "https://data.delijn.be/stops/508043"], ["https://data.delijn.be/stops/202827", "https://data.delijn.be/stops/202942"], ["https://data.delijn.be/stops/104696", "https://data.delijn.be/stops/107349"], ["https://data.delijn.be/stops/404546", "https://data.delijn.be/stops/404555"], ["https://data.delijn.be/stops/204721", "https://data.delijn.be/stops/205721"], ["https://data.delijn.be/stops/502530", "https://data.delijn.be/stops/507288"], ["https://data.delijn.be/stops/205243", "https://data.delijn.be/stops/206271"], ["https://data.delijn.be/stops/305586", "https://data.delijn.be/stops/307514"], ["https://data.delijn.be/stops/403520", "https://data.delijn.be/stops/403867"], ["https://data.delijn.be/stops/300767", "https://data.delijn.be/stops/300768"], ["https://data.delijn.be/stops/206589", "https://data.delijn.be/stops/207589"], ["https://data.delijn.be/stops/403303", "https://data.delijn.be/stops/403535"], ["https://data.delijn.be/stops/204365", "https://data.delijn.be/stops/205365"], ["https://data.delijn.be/stops/406545", "https://data.delijn.be/stops/408124"], ["https://data.delijn.be/stops/408963", "https://data.delijn.be/stops/408969"], ["https://data.delijn.be/stops/101750", "https://data.delijn.be/stops/108565"], ["https://data.delijn.be/stops/107614", "https://data.delijn.be/stops/109216"], ["https://data.delijn.be/stops/204122", "https://data.delijn.be/stops/205120"], ["https://data.delijn.be/stops/505635", "https://data.delijn.be/stops/505825"], ["https://data.delijn.be/stops/207928", "https://data.delijn.be/stops/207996"], ["https://data.delijn.be/stops/301680", "https://data.delijn.be/stops/301686"], ["https://data.delijn.be/stops/503548", "https://data.delijn.be/stops/503549"], ["https://data.delijn.be/stops/208466", "https://data.delijn.be/stops/208467"], ["https://data.delijn.be/stops/208596", "https://data.delijn.be/stops/218012"], ["https://data.delijn.be/stops/105028", "https://data.delijn.be/stops/109521"], ["https://data.delijn.be/stops/201855", "https://data.delijn.be/stops/201874"], ["https://data.delijn.be/stops/403049", "https://data.delijn.be/stops/403053"], ["https://data.delijn.be/stops/303674", "https://data.delijn.be/stops/307684"], ["https://data.delijn.be/stops/109543", "https://data.delijn.be/stops/109622"], ["https://data.delijn.be/stops/202257", "https://data.delijn.be/stops/203256"], ["https://data.delijn.be/stops/101475", "https://data.delijn.be/stops/103766"], ["https://data.delijn.be/stops/502243", "https://data.delijn.be/stops/507138"], ["https://data.delijn.be/stops/105194", "https://data.delijn.be/stops/108883"], ["https://data.delijn.be/stops/304469", "https://data.delijn.be/stops/304525"], ["https://data.delijn.be/stops/401267", "https://data.delijn.be/stops/401303"], ["https://data.delijn.be/stops/306662", "https://data.delijn.be/stops/306667"], ["https://data.delijn.be/stops/204297", "https://data.delijn.be/stops/205297"], ["https://data.delijn.be/stops/109904", "https://data.delijn.be/stops/109908"], ["https://data.delijn.be/stops/406812", "https://data.delijn.be/stops/409463"], ["https://data.delijn.be/stops/409034", "https://data.delijn.be/stops/409036"], ["https://data.delijn.be/stops/400628", "https://data.delijn.be/stops/400629"], ["https://data.delijn.be/stops/303740", "https://data.delijn.be/stops/303741"], ["https://data.delijn.be/stops/401651", "https://data.delijn.be/stops/301232"], ["https://data.delijn.be/stops/303500", "https://data.delijn.be/stops/303501"], ["https://data.delijn.be/stops/504043", "https://data.delijn.be/stops/509049"], ["https://data.delijn.be/stops/302225", "https://data.delijn.be/stops/304011"], ["https://data.delijn.be/stops/410360", "https://data.delijn.be/stops/410361"], ["https://data.delijn.be/stops/204718", "https://data.delijn.be/stops/214012"], ["https://data.delijn.be/stops/205159", "https://data.delijn.be/stops/205590"], ["https://data.delijn.be/stops/105903", "https://data.delijn.be/stops/105907"], ["https://data.delijn.be/stops/206496", "https://data.delijn.be/stops/207475"], ["https://data.delijn.be/stops/201001", "https://data.delijn.be/stops/201908"], ["https://data.delijn.be/stops/204204", "https://data.delijn.be/stops/205191"], ["https://data.delijn.be/stops/101891", "https://data.delijn.be/stops/104951"], ["https://data.delijn.be/stops/108112", "https://data.delijn.be/stops/108147"], ["https://data.delijn.be/stops/404455", "https://data.delijn.be/stops/404563"], ["https://data.delijn.be/stops/503117", "https://data.delijn.be/stops/508117"], ["https://data.delijn.be/stops/303286", "https://data.delijn.be/stops/308938"], ["https://data.delijn.be/stops/305113", "https://data.delijn.be/stops/305214"], ["https://data.delijn.be/stops/405673", "https://data.delijn.be/stops/407403"], ["https://data.delijn.be/stops/202195", "https://data.delijn.be/stops/202399"], ["https://data.delijn.be/stops/305664", "https://data.delijn.be/stops/305665"], ["https://data.delijn.be/stops/501018", "https://data.delijn.be/stops/506016"], ["https://data.delijn.be/stops/502260", "https://data.delijn.be/stops/507570"], ["https://data.delijn.be/stops/302769", "https://data.delijn.be/stops/307047"], ["https://data.delijn.be/stops/502329", "https://data.delijn.be/stops/505574"], ["https://data.delijn.be/stops/501268", "https://data.delijn.be/stops/501313"], ["https://data.delijn.be/stops/503835", "https://data.delijn.be/stops/508835"], ["https://data.delijn.be/stops/502576", "https://data.delijn.be/stops/507153"], ["https://data.delijn.be/stops/505541", "https://data.delijn.be/stops/508802"], ["https://data.delijn.be/stops/204071", "https://data.delijn.be/stops/204185"], ["https://data.delijn.be/stops/400642", "https://data.delijn.be/stops/408473"], ["https://data.delijn.be/stops/402844", "https://data.delijn.be/stops/405357"], ["https://data.delijn.be/stops/200175", "https://data.delijn.be/stops/201152"], ["https://data.delijn.be/stops/202682", "https://data.delijn.be/stops/203728"], ["https://data.delijn.be/stops/308126", "https://data.delijn.be/stops/308127"], ["https://data.delijn.be/stops/207225", "https://data.delijn.be/stops/308570"], ["https://data.delijn.be/stops/103991", "https://data.delijn.be/stops/105314"], ["https://data.delijn.be/stops/206682", "https://data.delijn.be/stops/207676"], ["https://data.delijn.be/stops/401145", "https://data.delijn.be/stops/401154"], ["https://data.delijn.be/stops/103021", "https://data.delijn.be/stops/109887"], ["https://data.delijn.be/stops/304892", "https://data.delijn.be/stops/304911"], ["https://data.delijn.be/stops/504702", "https://data.delijn.be/stops/509398"], ["https://data.delijn.be/stops/407942", "https://data.delijn.be/stops/407943"], ["https://data.delijn.be/stops/409724", "https://data.delijn.be/stops/409725"], ["https://data.delijn.be/stops/102602", "https://data.delijn.be/stops/107864"], ["https://data.delijn.be/stops/301673", "https://data.delijn.be/stops/307798"], ["https://data.delijn.be/stops/502565", "https://data.delijn.be/stops/507565"], ["https://data.delijn.be/stops/101601", "https://data.delijn.be/stops/106027"], ["https://data.delijn.be/stops/304191", "https://data.delijn.be/stops/307988"], ["https://data.delijn.be/stops/102174", "https://data.delijn.be/stops/108296"], ["https://data.delijn.be/stops/209468", "https://data.delijn.be/stops/209501"], ["https://data.delijn.be/stops/102929", "https://data.delijn.be/stops/106125"], ["https://data.delijn.be/stops/207191", "https://data.delijn.be/stops/207692"], ["https://data.delijn.be/stops/408972", "https://data.delijn.be/stops/408982"], ["https://data.delijn.be/stops/208369", "https://data.delijn.be/stops/209370"], ["https://data.delijn.be/stops/504421", "https://data.delijn.be/stops/505791"], ["https://data.delijn.be/stops/104304", "https://data.delijn.be/stops/104307"], ["https://data.delijn.be/stops/302353", "https://data.delijn.be/stops/302389"], ["https://data.delijn.be/stops/501642", "https://data.delijn.be/stops/501661"], ["https://data.delijn.be/stops/304158", "https://data.delijn.be/stops/307756"], ["https://data.delijn.be/stops/304387", "https://data.delijn.be/stops/307417"], ["https://data.delijn.be/stops/502455", "https://data.delijn.be/stops/507456"], ["https://data.delijn.be/stops/407061", "https://data.delijn.be/stops/407778"], ["https://data.delijn.be/stops/502532", "https://data.delijn.be/stops/507532"], ["https://data.delijn.be/stops/304561", "https://data.delijn.be/stops/304662"], ["https://data.delijn.be/stops/103557", "https://data.delijn.be/stops/103594"], ["https://data.delijn.be/stops/305945", "https://data.delijn.be/stops/308414"], ["https://data.delijn.be/stops/400532", "https://data.delijn.be/stops/405328"], ["https://data.delijn.be/stops/402952", "https://data.delijn.be/stops/405503"], ["https://data.delijn.be/stops/404583", "https://data.delijn.be/stops/408171"], ["https://data.delijn.be/stops/200650", "https://data.delijn.be/stops/203864"], ["https://data.delijn.be/stops/401905", "https://data.delijn.be/stops/408337"], ["https://data.delijn.be/stops/400400", "https://data.delijn.be/stops/400972"], ["https://data.delijn.be/stops/502670", "https://data.delijn.be/stops/507670"], ["https://data.delijn.be/stops/102926", "https://data.delijn.be/stops/103106"], ["https://data.delijn.be/stops/302745", "https://data.delijn.be/stops/302746"], ["https://data.delijn.be/stops/302117", "https://data.delijn.be/stops/303662"], ["https://data.delijn.be/stops/407785", "https://data.delijn.be/stops/408142"], ["https://data.delijn.be/stops/402839", "https://data.delijn.be/stops/406993"], ["https://data.delijn.be/stops/203439", "https://data.delijn.be/stops/203951"], ["https://data.delijn.be/stops/305248", "https://data.delijn.be/stops/305594"], ["https://data.delijn.be/stops/300175", "https://data.delijn.be/stops/300192"], ["https://data.delijn.be/stops/505371", "https://data.delijn.be/stops/508246"], ["https://data.delijn.be/stops/507685", "https://data.delijn.be/stops/508021"], ["https://data.delijn.be/stops/204134", "https://data.delijn.be/stops/204135"], ["https://data.delijn.be/stops/504451", "https://data.delijn.be/stops/509455"], ["https://data.delijn.be/stops/406013", "https://data.delijn.be/stops/407146"], ["https://data.delijn.be/stops/201770", "https://data.delijn.be/stops/208397"], ["https://data.delijn.be/stops/405400", "https://data.delijn.be/stops/405403"], ["https://data.delijn.be/stops/101824", "https://data.delijn.be/stops/101924"], ["https://data.delijn.be/stops/404306", "https://data.delijn.be/stops/404318"], ["https://data.delijn.be/stops/406905", "https://data.delijn.be/stops/406951"], ["https://data.delijn.be/stops/405624", "https://data.delijn.be/stops/409295"], ["https://data.delijn.be/stops/204726", "https://data.delijn.be/stops/205703"], ["https://data.delijn.be/stops/108532", "https://data.delijn.be/stops/108534"], ["https://data.delijn.be/stops/106423", "https://data.delijn.be/stops/106510"], ["https://data.delijn.be/stops/509299", "https://data.delijn.be/stops/509317"], ["https://data.delijn.be/stops/206280", "https://data.delijn.be/stops/206397"], ["https://data.delijn.be/stops/401794", "https://data.delijn.be/stops/401795"], ["https://data.delijn.be/stops/204796", "https://data.delijn.be/stops/205079"], ["https://data.delijn.be/stops/109312", "https://data.delijn.be/stops/109315"], ["https://data.delijn.be/stops/503201", "https://data.delijn.be/stops/503984"], ["https://data.delijn.be/stops/401172", "https://data.delijn.be/stops/406651"], ["https://data.delijn.be/stops/402206", "https://data.delijn.be/stops/402207"], ["https://data.delijn.be/stops/400999", "https://data.delijn.be/stops/406586"], ["https://data.delijn.be/stops/208804", "https://data.delijn.be/stops/209426"], ["https://data.delijn.be/stops/404346", "https://data.delijn.be/stops/404347"], ["https://data.delijn.be/stops/306903", "https://data.delijn.be/stops/306904"], ["https://data.delijn.be/stops/303280", "https://data.delijn.be/stops/303281"], ["https://data.delijn.be/stops/502289", "https://data.delijn.be/stops/507298"], ["https://data.delijn.be/stops/303741", "https://data.delijn.be/stops/304918"], ["https://data.delijn.be/stops/105383", "https://data.delijn.be/stops/105386"], ["https://data.delijn.be/stops/202215", "https://data.delijn.be/stops/210056"], ["https://data.delijn.be/stops/105328", "https://data.delijn.be/stops/204021"], ["https://data.delijn.be/stops/304304", "https://data.delijn.be/stops/304351"], ["https://data.delijn.be/stops/201089", "https://data.delijn.be/stops/206554"], ["https://data.delijn.be/stops/200958", "https://data.delijn.be/stops/201958"], ["https://data.delijn.be/stops/501431", "https://data.delijn.be/stops/506678"], ["https://data.delijn.be/stops/306915", "https://data.delijn.be/stops/307086"], ["https://data.delijn.be/stops/102807", "https://data.delijn.be/stops/103695"], ["https://data.delijn.be/stops/404472", "https://data.delijn.be/stops/406665"], ["https://data.delijn.be/stops/101009", "https://data.delijn.be/stops/108285"], ["https://data.delijn.be/stops/305956", "https://data.delijn.be/stops/305959"], ["https://data.delijn.be/stops/508742", "https://data.delijn.be/stops/509979"], ["https://data.delijn.be/stops/503803", "https://data.delijn.be/stops/504587"], ["https://data.delijn.be/stops/109372", "https://data.delijn.be/stops/109373"], ["https://data.delijn.be/stops/201818", "https://data.delijn.be/stops/201819"], ["https://data.delijn.be/stops/405383", "https://data.delijn.be/stops/302840"], ["https://data.delijn.be/stops/401854", "https://data.delijn.be/stops/401855"], ["https://data.delijn.be/stops/207225", "https://data.delijn.be/stops/207226"], ["https://data.delijn.be/stops/505026", "https://data.delijn.be/stops/505027"], ["https://data.delijn.be/stops/301759", "https://data.delijn.be/stops/305947"], ["https://data.delijn.be/stops/204343", "https://data.delijn.be/stops/205343"], ["https://data.delijn.be/stops/503610", "https://data.delijn.be/stops/503614"], ["https://data.delijn.be/stops/210114", "https://data.delijn.be/stops/211114"], ["https://data.delijn.be/stops/305661", "https://data.delijn.be/stops/306338"], ["https://data.delijn.be/stops/107698", "https://data.delijn.be/stops/107717"], ["https://data.delijn.be/stops/307593", "https://data.delijn.be/stops/307603"], ["https://data.delijn.be/stops/101471", "https://data.delijn.be/stops/103094"], ["https://data.delijn.be/stops/109006", "https://data.delijn.be/stops/109007"], ["https://data.delijn.be/stops/203221", "https://data.delijn.be/stops/203814"], ["https://data.delijn.be/stops/502795", "https://data.delijn.be/stops/507914"], ["https://data.delijn.be/stops/410253", "https://data.delijn.be/stops/410254"], ["https://data.delijn.be/stops/404682", "https://data.delijn.be/stops/404686"], ["https://data.delijn.be/stops/200204", "https://data.delijn.be/stops/200205"], ["https://data.delijn.be/stops/303506", "https://data.delijn.be/stops/303507"], ["https://data.delijn.be/stops/308065", "https://data.delijn.be/stops/308133"], ["https://data.delijn.be/stops/507694", "https://data.delijn.be/stops/507695"], ["https://data.delijn.be/stops/205112", "https://data.delijn.be/stops/205683"], ["https://data.delijn.be/stops/203418", "https://data.delijn.be/stops/203419"], ["https://data.delijn.be/stops/502092", "https://data.delijn.be/stops/507092"], ["https://data.delijn.be/stops/408735", "https://data.delijn.be/stops/408783"], ["https://data.delijn.be/stops/303461", "https://data.delijn.be/stops/303499"], ["https://data.delijn.be/stops/402419", "https://data.delijn.be/stops/402429"], ["https://data.delijn.be/stops/200724", "https://data.delijn.be/stops/210112"], ["https://data.delijn.be/stops/101208", "https://data.delijn.be/stops/104909"], ["https://data.delijn.be/stops/201070", "https://data.delijn.be/stops/208844"], ["https://data.delijn.be/stops/204788", "https://data.delijn.be/stops/205788"], ["https://data.delijn.be/stops/201779", "https://data.delijn.be/stops/209250"], ["https://data.delijn.be/stops/103976", "https://data.delijn.be/stops/103977"], ["https://data.delijn.be/stops/407809", "https://data.delijn.be/stops/407837"], ["https://data.delijn.be/stops/406553", "https://data.delijn.be/stops/406566"], ["https://data.delijn.be/stops/206796", "https://data.delijn.be/stops/208952"], ["https://data.delijn.be/stops/101171", "https://data.delijn.be/stops/101310"], ["https://data.delijn.be/stops/502646", "https://data.delijn.be/stops/506054"], ["https://data.delijn.be/stops/202897", "https://data.delijn.be/stops/203898"], ["https://data.delijn.be/stops/204260", "https://data.delijn.be/stops/204476"], ["https://data.delijn.be/stops/107839", "https://data.delijn.be/stops/107841"], ["https://data.delijn.be/stops/305289", "https://data.delijn.be/stops/305292"], ["https://data.delijn.be/stops/502686", "https://data.delijn.be/stops/507686"], ["https://data.delijn.be/stops/108836", "https://data.delijn.be/stops/108851"], ["https://data.delijn.be/stops/103661", "https://data.delijn.be/stops/106221"], ["https://data.delijn.be/stops/405819", "https://data.delijn.be/stops/405849"], ["https://data.delijn.be/stops/101597", "https://data.delijn.be/stops/107387"], ["https://data.delijn.be/stops/301053", "https://data.delijn.be/stops/303832"], ["https://data.delijn.be/stops/305386", "https://data.delijn.be/stops/333233"], ["https://data.delijn.be/stops/406042", "https://data.delijn.be/stops/406051"], ["https://data.delijn.be/stops/503111", "https://data.delijn.be/stops/509875"], ["https://data.delijn.be/stops/103757", "https://data.delijn.be/stops/105515"], ["https://data.delijn.be/stops/107539", "https://data.delijn.be/stops/107542"], ["https://data.delijn.be/stops/204479", "https://data.delijn.be/stops/205667"], ["https://data.delijn.be/stops/408666", "https://data.delijn.be/stops/408667"], ["https://data.delijn.be/stops/302784", "https://data.delijn.be/stops/307781"], ["https://data.delijn.be/stops/201109", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/300076", "https://data.delijn.be/stops/306788"], ["https://data.delijn.be/stops/501365", "https://data.delijn.be/stops/501368"], ["https://data.delijn.be/stops/302314", "https://data.delijn.be/stops/302671"], ["https://data.delijn.be/stops/404522", "https://data.delijn.be/stops/404584"], ["https://data.delijn.be/stops/300079", "https://data.delijn.be/stops/300081"], ["https://data.delijn.be/stops/303414", "https://data.delijn.be/stops/303434"], ["https://data.delijn.be/stops/204761", "https://data.delijn.be/stops/205760"], ["https://data.delijn.be/stops/503606", "https://data.delijn.be/stops/503978"], ["https://data.delijn.be/stops/102974", "https://data.delijn.be/stops/107138"], ["https://data.delijn.be/stops/404551", "https://data.delijn.be/stops/405623"], ["https://data.delijn.be/stops/206264", "https://data.delijn.be/stops/207264"], ["https://data.delijn.be/stops/406471", "https://data.delijn.be/stops/406493"], ["https://data.delijn.be/stops/406468", "https://data.delijn.be/stops/406469"], ["https://data.delijn.be/stops/305099", "https://data.delijn.be/stops/305100"], ["https://data.delijn.be/stops/206485", "https://data.delijn.be/stops/206553"], ["https://data.delijn.be/stops/105320", "https://data.delijn.be/stops/205608"], ["https://data.delijn.be/stops/304932", "https://data.delijn.be/stops/304962"], ["https://data.delijn.be/stops/509701", "https://data.delijn.be/stops/509928"], ["https://data.delijn.be/stops/201126", "https://data.delijn.be/stops/201945"], ["https://data.delijn.be/stops/104588", "https://data.delijn.be/stops/106416"], ["https://data.delijn.be/stops/200437", "https://data.delijn.be/stops/211108"], ["https://data.delijn.be/stops/201383", "https://data.delijn.be/stops/209265"], ["https://data.delijn.be/stops/509381", "https://data.delijn.be/stops/509385"], ["https://data.delijn.be/stops/407895", "https://data.delijn.be/stops/408414"], ["https://data.delijn.be/stops/206712", "https://data.delijn.be/stops/207655"], ["https://data.delijn.be/stops/206297", "https://data.delijn.be/stops/207297"], ["https://data.delijn.be/stops/104881", "https://data.delijn.be/stops/104883"], ["https://data.delijn.be/stops/204316", "https://data.delijn.be/stops/204362"], ["https://data.delijn.be/stops/502357", "https://data.delijn.be/stops/502359"], ["https://data.delijn.be/stops/502112", "https://data.delijn.be/stops/502628"], ["https://data.delijn.be/stops/501555", "https://data.delijn.be/stops/506738"], ["https://data.delijn.be/stops/408692", "https://data.delijn.be/stops/408694"], ["https://data.delijn.be/stops/204446", "https://data.delijn.be/stops/204626"], ["https://data.delijn.be/stops/304347", "https://data.delijn.be/stops/304353"], ["https://data.delijn.be/stops/303332", "https://data.delijn.be/stops/308932"], ["https://data.delijn.be/stops/403701", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/302711", "https://data.delijn.be/stops/302712"], ["https://data.delijn.be/stops/502199", "https://data.delijn.be/stops/505981"], ["https://data.delijn.be/stops/407242", "https://data.delijn.be/stops/407454"], ["https://data.delijn.be/stops/400073", "https://data.delijn.be/stops/400162"], ["https://data.delijn.be/stops/407582", "https://data.delijn.be/stops/408859"], ["https://data.delijn.be/stops/202027", "https://data.delijn.be/stops/203028"], ["https://data.delijn.be/stops/201949", "https://data.delijn.be/stops/203457"], ["https://data.delijn.be/stops/300828", "https://data.delijn.be/stops/300829"], ["https://data.delijn.be/stops/106642", "https://data.delijn.be/stops/106646"], ["https://data.delijn.be/stops/408783", "https://data.delijn.be/stops/408785"], ["https://data.delijn.be/stops/105883", "https://data.delijn.be/stops/105896"], ["https://data.delijn.be/stops/108814", "https://data.delijn.be/stops/108817"], ["https://data.delijn.be/stops/305013", "https://data.delijn.be/stops/305034"], ["https://data.delijn.be/stops/407023", "https://data.delijn.be/stops/407030"], ["https://data.delijn.be/stops/200935", "https://data.delijn.be/stops/203713"], ["https://data.delijn.be/stops/201358", "https://data.delijn.be/stops/208733"], ["https://data.delijn.be/stops/300274", "https://data.delijn.be/stops/300332"], ["https://data.delijn.be/stops/308519", "https://data.delijn.be/stops/308689"], ["https://data.delijn.be/stops/206740", "https://data.delijn.be/stops/207652"], ["https://data.delijn.be/stops/502074", "https://data.delijn.be/stops/502562"], ["https://data.delijn.be/stops/503873", "https://data.delijn.be/stops/504756"], ["https://data.delijn.be/stops/200132", "https://data.delijn.be/stops/205556"], ["https://data.delijn.be/stops/104352", "https://data.delijn.be/stops/104551"], ["https://data.delijn.be/stops/300980", "https://data.delijn.be/stops/301088"], ["https://data.delijn.be/stops/401298", "https://data.delijn.be/stops/401303"], ["https://data.delijn.be/stops/402000", "https://data.delijn.be/stops/404971"], ["https://data.delijn.be/stops/202446", "https://data.delijn.be/stops/203446"], ["https://data.delijn.be/stops/307431", "https://data.delijn.be/stops/307442"], ["https://data.delijn.be/stops/503330", "https://data.delijn.be/stops/503331"], ["https://data.delijn.be/stops/204315", "https://data.delijn.be/stops/204710"], ["https://data.delijn.be/stops/400137", "https://data.delijn.be/stops/409207"], ["https://data.delijn.be/stops/400979", "https://data.delijn.be/stops/409624"], ["https://data.delijn.be/stops/503256", "https://data.delijn.be/stops/508446"], ["https://data.delijn.be/stops/400709", "https://data.delijn.be/stops/404374"], ["https://data.delijn.be/stops/303581", "https://data.delijn.be/stops/306396"], ["https://data.delijn.be/stops/102564", "https://data.delijn.be/stops/406484"], ["https://data.delijn.be/stops/102283", "https://data.delijn.be/stops/106743"], ["https://data.delijn.be/stops/401444", "https://data.delijn.be/stops/406808"], ["https://data.delijn.be/stops/404612", "https://data.delijn.be/stops/406910"], ["https://data.delijn.be/stops/504176", "https://data.delijn.be/stops/504739"], ["https://data.delijn.be/stops/503410", "https://data.delijn.be/stops/508385"], ["https://data.delijn.be/stops/304160", "https://data.delijn.be/stops/307539"], ["https://data.delijn.be/stops/107784", "https://data.delijn.be/stops/107786"], ["https://data.delijn.be/stops/400878", "https://data.delijn.be/stops/410112"], ["https://data.delijn.be/stops/409276", "https://data.delijn.be/stops/409339"], ["https://data.delijn.be/stops/406635", "https://data.delijn.be/stops/407234"], ["https://data.delijn.be/stops/400501", "https://data.delijn.be/stops/402948"], ["https://data.delijn.be/stops/209114", "https://data.delijn.be/stops/209795"], ["https://data.delijn.be/stops/104404", "https://data.delijn.be/stops/104411"], ["https://data.delijn.be/stops/502751", "https://data.delijn.be/stops/507751"], ["https://data.delijn.be/stops/204611", "https://data.delijn.be/stops/205611"], ["https://data.delijn.be/stops/202658", "https://data.delijn.be/stops/203658"], ["https://data.delijn.be/stops/401401", "https://data.delijn.be/stops/300922"], ["https://data.delijn.be/stops/505600", "https://data.delijn.be/stops/509832"], ["https://data.delijn.be/stops/408005", "https://data.delijn.be/stops/408138"], ["https://data.delijn.be/stops/101816", "https://data.delijn.be/stops/107838"], ["https://data.delijn.be/stops/505255", "https://data.delijn.be/stops/505265"], ["https://data.delijn.be/stops/300390", "https://data.delijn.be/stops/304588"], ["https://data.delijn.be/stops/406194", "https://data.delijn.be/stops/406195"], ["https://data.delijn.be/stops/300721", "https://data.delijn.be/stops/300722"], ["https://data.delijn.be/stops/502546", "https://data.delijn.be/stops/505090"], ["https://data.delijn.be/stops/105241", "https://data.delijn.be/stops/105839"], ["https://data.delijn.be/stops/104747", "https://data.delijn.be/stops/104749"], ["https://data.delijn.be/stops/104018", "https://data.delijn.be/stops/106906"], ["https://data.delijn.be/stops/102925", "https://data.delijn.be/stops/104665"], ["https://data.delijn.be/stops/200862", "https://data.delijn.be/stops/502065"], ["https://data.delijn.be/stops/505504", "https://data.delijn.be/stops/505600"], ["https://data.delijn.be/stops/306946", "https://data.delijn.be/stops/306947"], ["https://data.delijn.be/stops/503977", "https://data.delijn.be/stops/508977"], ["https://data.delijn.be/stops/306872", "https://data.delijn.be/stops/307421"], ["https://data.delijn.be/stops/302492", "https://data.delijn.be/stops/302496"], ["https://data.delijn.be/stops/300115", "https://data.delijn.be/stops/307734"], ["https://data.delijn.be/stops/202493", "https://data.delijn.be/stops/203493"], ["https://data.delijn.be/stops/107042", "https://data.delijn.be/stops/108242"], ["https://data.delijn.be/stops/201208", "https://data.delijn.be/stops/202142"], ["https://data.delijn.be/stops/205990", "https://data.delijn.be/stops/208361"], ["https://data.delijn.be/stops/200929", "https://data.delijn.be/stops/505512"], ["https://data.delijn.be/stops/403193", "https://data.delijn.be/stops/403285"], ["https://data.delijn.be/stops/400040", "https://data.delijn.be/stops/400396"], ["https://data.delijn.be/stops/504787", "https://data.delijn.be/stops/508268"], ["https://data.delijn.be/stops/203224", "https://data.delijn.be/stops/203283"], ["https://data.delijn.be/stops/200569", "https://data.delijn.be/stops/201569"], ["https://data.delijn.be/stops/102218", "https://data.delijn.be/stops/105537"], ["https://data.delijn.be/stops/301729", "https://data.delijn.be/stops/305948"], ["https://data.delijn.be/stops/102236", "https://data.delijn.be/stops/105862"], ["https://data.delijn.be/stops/406123", "https://data.delijn.be/stops/406124"], ["https://data.delijn.be/stops/108231", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/508473", "https://data.delijn.be/stops/508478"], ["https://data.delijn.be/stops/402245", "https://data.delijn.be/stops/407532"], ["https://data.delijn.be/stops/202520", "https://data.delijn.be/stops/203520"], ["https://data.delijn.be/stops/202496", "https://data.delijn.be/stops/202497"], ["https://data.delijn.be/stops/105672", "https://data.delijn.be/stops/107498"], ["https://data.delijn.be/stops/301511", "https://data.delijn.be/stops/301527"], ["https://data.delijn.be/stops/107085", "https://data.delijn.be/stops/107090"], ["https://data.delijn.be/stops/201697", "https://data.delijn.be/stops/202392"], ["https://data.delijn.be/stops/409428", "https://data.delijn.be/stops/409429"], ["https://data.delijn.be/stops/102571", "https://data.delijn.be/stops/102573"], ["https://data.delijn.be/stops/409707", "https://data.delijn.be/stops/409718"], ["https://data.delijn.be/stops/208680", "https://data.delijn.be/stops/209664"], ["https://data.delijn.be/stops/505142", "https://data.delijn.be/stops/507228"], ["https://data.delijn.be/stops/203547", "https://data.delijn.be/stops/203554"], ["https://data.delijn.be/stops/101978", "https://data.delijn.be/stops/102254"], ["https://data.delijn.be/stops/300651", "https://data.delijn.be/stops/300658"], ["https://data.delijn.be/stops/303260", "https://data.delijn.be/stops/305726"], ["https://data.delijn.be/stops/206897", "https://data.delijn.be/stops/207887"], ["https://data.delijn.be/stops/103225", "https://data.delijn.be/stops/103230"], ["https://data.delijn.be/stops/200002", "https://data.delijn.be/stops/203297"], ["https://data.delijn.be/stops/207447", "https://data.delijn.be/stops/207478"], ["https://data.delijn.be/stops/218024", "https://data.delijn.be/stops/219024"], ["https://data.delijn.be/stops/301138", "https://data.delijn.be/stops/302872"], ["https://data.delijn.be/stops/402652", "https://data.delijn.be/stops/405655"], ["https://data.delijn.be/stops/206788", "https://data.delijn.be/stops/208562"], ["https://data.delijn.be/stops/303491", "https://data.delijn.be/stops/308636"], ["https://data.delijn.be/stops/404427", "https://data.delijn.be/stops/404564"], ["https://data.delijn.be/stops/206180", "https://data.delijn.be/stops/207181"], ["https://data.delijn.be/stops/503514", "https://data.delijn.be/stops/503515"], ["https://data.delijn.be/stops/508230", "https://data.delijn.be/stops/508260"], ["https://data.delijn.be/stops/304540", "https://data.delijn.be/stops/304556"], ["https://data.delijn.be/stops/401849", "https://data.delijn.be/stops/406193"], ["https://data.delijn.be/stops/206150", "https://data.delijn.be/stops/207150"], ["https://data.delijn.be/stops/301855", "https://data.delijn.be/stops/305465"], ["https://data.delijn.be/stops/108073", "https://data.delijn.be/stops/108137"], ["https://data.delijn.be/stops/410165", "https://data.delijn.be/stops/410167"], ["https://data.delijn.be/stops/305767", "https://data.delijn.be/stops/305783"], ["https://data.delijn.be/stops/504941", "https://data.delijn.be/stops/505423"], ["https://data.delijn.be/stops/106172", "https://data.delijn.be/stops/106173"], ["https://data.delijn.be/stops/106650", "https://data.delijn.be/stops/106651"], ["https://data.delijn.be/stops/406896", "https://data.delijn.be/stops/409463"], ["https://data.delijn.be/stops/206753", "https://data.delijn.be/stops/207662"], ["https://data.delijn.be/stops/505928", "https://data.delijn.be/stops/509487"], ["https://data.delijn.be/stops/303157", "https://data.delijn.be/stops/304185"], ["https://data.delijn.be/stops/204459", "https://data.delijn.be/stops/205109"], ["https://data.delijn.be/stops/206079", "https://data.delijn.be/stops/206881"], ["https://data.delijn.be/stops/503863", "https://data.delijn.be/stops/505214"], ["https://data.delijn.be/stops/208481", "https://data.delijn.be/stops/208482"], ["https://data.delijn.be/stops/502496", "https://data.delijn.be/stops/502508"], ["https://data.delijn.be/stops/200491", "https://data.delijn.be/stops/201491"], ["https://data.delijn.be/stops/304379", "https://data.delijn.be/stops/304386"], ["https://data.delijn.be/stops/205237", "https://data.delijn.be/stops/207283"], ["https://data.delijn.be/stops/200490", "https://data.delijn.be/stops/201490"], ["https://data.delijn.be/stops/505232", "https://data.delijn.be/stops/507234"], ["https://data.delijn.be/stops/402519", "https://data.delijn.be/stops/402587"], ["https://data.delijn.be/stops/500001", "https://data.delijn.be/stops/505747"], ["https://data.delijn.be/stops/103376", "https://data.delijn.be/stops/406852"], ["https://data.delijn.be/stops/108817", "https://data.delijn.be/stops/108831"], ["https://data.delijn.be/stops/103494", "https://data.delijn.be/stops/106212"], ["https://data.delijn.be/stops/302107", "https://data.delijn.be/stops/308085"], ["https://data.delijn.be/stops/303389", "https://data.delijn.be/stops/307137"], ["https://data.delijn.be/stops/101462", "https://data.delijn.be/stops/101463"], ["https://data.delijn.be/stops/402781", "https://data.delijn.be/stops/402784"], ["https://data.delijn.be/stops/400536", "https://data.delijn.be/stops/403425"], ["https://data.delijn.be/stops/106470", "https://data.delijn.be/stops/107048"], ["https://data.delijn.be/stops/108626", "https://data.delijn.be/stops/301842"], ["https://data.delijn.be/stops/502116", "https://data.delijn.be/stops/507111"], ["https://data.delijn.be/stops/504505", "https://data.delijn.be/stops/504705"], ["https://data.delijn.be/stops/301369", "https://data.delijn.be/stops/306127"], ["https://data.delijn.be/stops/102831", "https://data.delijn.be/stops/104981"], ["https://data.delijn.be/stops/105964", "https://data.delijn.be/stops/105966"], ["https://data.delijn.be/stops/201422", "https://data.delijn.be/stops/201960"], ["https://data.delijn.be/stops/508523", "https://data.delijn.be/stops/508526"], ["https://data.delijn.be/stops/408508", "https://data.delijn.be/stops/408622"], ["https://data.delijn.be/stops/401908", "https://data.delijn.be/stops/403573"], ["https://data.delijn.be/stops/505384", "https://data.delijn.be/stops/508101"], ["https://data.delijn.be/stops/505540", "https://data.delijn.be/stops/508896"], ["https://data.delijn.be/stops/401854", "https://data.delijn.be/stops/406347"], ["https://data.delijn.be/stops/101183", "https://data.delijn.be/stops/104619"], ["https://data.delijn.be/stops/206387", "https://data.delijn.be/stops/207967"], ["https://data.delijn.be/stops/404644", "https://data.delijn.be/stops/406913"], ["https://data.delijn.be/stops/505318", "https://data.delijn.be/stops/505959"], ["https://data.delijn.be/stops/404227", "https://data.delijn.be/stops/404570"], ["https://data.delijn.be/stops/402412", "https://data.delijn.be/stops/402419"], ["https://data.delijn.be/stops/306723", "https://data.delijn.be/stops/306725"], ["https://data.delijn.be/stops/301382", "https://data.delijn.be/stops/306140"], ["https://data.delijn.be/stops/105867", "https://data.delijn.be/stops/105869"], ["https://data.delijn.be/stops/504946", "https://data.delijn.be/stops/508190"], ["https://data.delijn.be/stops/102247", "https://data.delijn.be/stops/105877"], ["https://data.delijn.be/stops/505511", "https://data.delijn.be/stops/505607"], ["https://data.delijn.be/stops/300376", "https://data.delijn.be/stops/300384"], ["https://data.delijn.be/stops/205566", "https://data.delijn.be/stops/308794"], ["https://data.delijn.be/stops/105718", "https://data.delijn.be/stops/105721"], ["https://data.delijn.be/stops/502345", "https://data.delijn.be/stops/507345"], ["https://data.delijn.be/stops/308272", "https://data.delijn.be/stops/308275"], ["https://data.delijn.be/stops/301356", "https://data.delijn.be/stops/307162"], ["https://data.delijn.be/stops/501268", "https://data.delijn.be/stops/506511"], ["https://data.delijn.be/stops/407130", "https://data.delijn.be/stops/407342"], ["https://data.delijn.be/stops/401446", "https://data.delijn.be/stops/401517"], ["https://data.delijn.be/stops/403073", "https://data.delijn.be/stops/403289"], ["https://data.delijn.be/stops/505298", "https://data.delijn.be/stops/509013"], ["https://data.delijn.be/stops/503951", "https://data.delijn.be/stops/508371"], ["https://data.delijn.be/stops/502093", "https://data.delijn.be/stops/502817"], ["https://data.delijn.be/stops/103169", "https://data.delijn.be/stops/109894"], ["https://data.delijn.be/stops/103095", "https://data.delijn.be/stops/105180"], ["https://data.delijn.be/stops/503268", "https://data.delijn.be/stops/503289"], ["https://data.delijn.be/stops/204355", "https://data.delijn.be/stops/205355"], ["https://data.delijn.be/stops/308595", "https://data.delijn.be/stops/308861"], ["https://data.delijn.be/stops/103143", "https://data.delijn.be/stops/109443"], ["https://data.delijn.be/stops/206179", "https://data.delijn.be/stops/207957"], ["https://data.delijn.be/stops/502049", "https://data.delijn.be/stops/507049"], ["https://data.delijn.be/stops/503024", "https://data.delijn.be/stops/508028"], ["https://data.delijn.be/stops/408875", "https://data.delijn.be/stops/408877"], ["https://data.delijn.be/stops/401756", "https://data.delijn.be/stops/406349"], ["https://data.delijn.be/stops/501047", "https://data.delijn.be/stops/502731"], ["https://data.delijn.be/stops/405837", "https://data.delijn.be/stops/406386"], ["https://data.delijn.be/stops/102073", "https://data.delijn.be/stops/108807"], ["https://data.delijn.be/stops/504986", "https://data.delijn.be/stops/505248"], ["https://data.delijn.be/stops/105238", "https://data.delijn.be/stops/105246"], ["https://data.delijn.be/stops/204611", "https://data.delijn.be/stops/205612"], ["https://data.delijn.be/stops/405046", "https://data.delijn.be/stops/405049"], ["https://data.delijn.be/stops/208831", "https://data.delijn.be/stops/209795"], ["https://data.delijn.be/stops/305056", "https://data.delijn.be/stops/305211"], ["https://data.delijn.be/stops/402384", "https://data.delijn.be/stops/402385"], ["https://data.delijn.be/stops/107201", "https://data.delijn.be/stops/109995"], ["https://data.delijn.be/stops/302411", "https://data.delijn.be/stops/302420"], ["https://data.delijn.be/stops/405521", "https://data.delijn.be/stops/407781"], ["https://data.delijn.be/stops/300888", "https://data.delijn.be/stops/303831"], ["https://data.delijn.be/stops/102598", "https://data.delijn.be/stops/104583"], ["https://data.delijn.be/stops/408920", "https://data.delijn.be/stops/408926"], ["https://data.delijn.be/stops/400054", "https://data.delijn.be/stops/400091"], ["https://data.delijn.be/stops/109441", "https://data.delijn.be/stops/109442"], ["https://data.delijn.be/stops/504579", "https://data.delijn.be/stops/505205"], ["https://data.delijn.be/stops/300743", "https://data.delijn.be/stops/300744"], ["https://data.delijn.be/stops/103538", "https://data.delijn.be/stops/108220"], ["https://data.delijn.be/stops/406280", "https://data.delijn.be/stops/406899"], ["https://data.delijn.be/stops/509224", "https://data.delijn.be/stops/509228"], ["https://data.delijn.be/stops/502012", "https://data.delijn.be/stops/507246"], ["https://data.delijn.be/stops/505113", "https://data.delijn.be/stops/509036"], ["https://data.delijn.be/stops/402176", "https://data.delijn.be/stops/402177"], ["https://data.delijn.be/stops/205161", "https://data.delijn.be/stops/206397"], ["https://data.delijn.be/stops/206245", "https://data.delijn.be/stops/206402"], ["https://data.delijn.be/stops/303947", "https://data.delijn.be/stops/303958"], ["https://data.delijn.be/stops/304247", "https://data.delijn.be/stops/304248"], ["https://data.delijn.be/stops/405333", "https://data.delijn.be/stops/405343"], ["https://data.delijn.be/stops/406640", "https://data.delijn.be/stops/406641"], ["https://data.delijn.be/stops/202524", "https://data.delijn.be/stops/202959"], ["https://data.delijn.be/stops/302387", "https://data.delijn.be/stops/307974"], ["https://data.delijn.be/stops/101811", "https://data.delijn.be/stops/103117"], ["https://data.delijn.be/stops/501606", "https://data.delijn.be/stops/506019"], ["https://data.delijn.be/stops/206747", "https://data.delijn.be/stops/207697"], ["https://data.delijn.be/stops/407781", "https://data.delijn.be/stops/407787"], ["https://data.delijn.be/stops/200840", "https://data.delijn.be/stops/509878"], ["https://data.delijn.be/stops/201356", "https://data.delijn.be/stops/208726"], ["https://data.delijn.be/stops/400559", "https://data.delijn.be/stops/401960"], ["https://data.delijn.be/stops/301971", "https://data.delijn.be/stops/301972"], ["https://data.delijn.be/stops/503047", "https://data.delijn.be/stops/508047"], ["https://data.delijn.be/stops/109048", "https://data.delijn.be/stops/300066"], ["https://data.delijn.be/stops/200821", "https://data.delijn.be/stops/209656"], ["https://data.delijn.be/stops/204472", "https://data.delijn.be/stops/204775"], ["https://data.delijn.be/stops/302856", "https://data.delijn.be/stops/308674"], ["https://data.delijn.be/stops/103998", "https://data.delijn.be/stops/107285"], ["https://data.delijn.be/stops/503044", "https://data.delijn.be/stops/508044"], ["https://data.delijn.be/stops/405809", "https://data.delijn.be/stops/405831"], ["https://data.delijn.be/stops/403699", "https://data.delijn.be/stops/407869"], ["https://data.delijn.be/stops/303122", "https://data.delijn.be/stops/307204"], ["https://data.delijn.be/stops/209001", "https://data.delijn.be/stops/209098"], ["https://data.delijn.be/stops/300690", "https://data.delijn.be/stops/300691"], ["https://data.delijn.be/stops/205038", "https://data.delijn.be/stops/205039"], ["https://data.delijn.be/stops/202796", "https://data.delijn.be/stops/505753"], ["https://data.delijn.be/stops/109439", "https://data.delijn.be/stops/109441"], ["https://data.delijn.be/stops/201546", "https://data.delijn.be/stops/203899"], ["https://data.delijn.be/stops/109857", "https://data.delijn.be/stops/109941"], ["https://data.delijn.be/stops/103989", "https://data.delijn.be/stops/104972"], ["https://data.delijn.be/stops/102681", "https://data.delijn.be/stops/105320"], ["https://data.delijn.be/stops/201669", "https://data.delijn.be/stops/201837"], ["https://data.delijn.be/stops/405486", "https://data.delijn.be/stops/409251"], ["https://data.delijn.be/stops/406037", "https://data.delijn.be/stops/406379"], ["https://data.delijn.be/stops/101150", "https://data.delijn.be/stops/105495"], ["https://data.delijn.be/stops/406158", "https://data.delijn.be/stops/406159"], ["https://data.delijn.be/stops/300363", "https://data.delijn.be/stops/300364"], ["https://data.delijn.be/stops/305773", "https://data.delijn.be/stops/305788"], ["https://data.delijn.be/stops/509035", "https://data.delijn.be/stops/509471"], ["https://data.delijn.be/stops/206734", "https://data.delijn.be/stops/206736"], ["https://data.delijn.be/stops/305112", "https://data.delijn.be/stops/308123"], ["https://data.delijn.be/stops/210095", "https://data.delijn.be/stops/211108"], ["https://data.delijn.be/stops/405414", "https://data.delijn.be/stops/306773"], ["https://data.delijn.be/stops/201136", "https://data.delijn.be/stops/203134"], ["https://data.delijn.be/stops/202172", "https://data.delijn.be/stops/202174"], ["https://data.delijn.be/stops/105994", "https://data.delijn.be/stops/105996"], ["https://data.delijn.be/stops/505158", "https://data.delijn.be/stops/508994"], ["https://data.delijn.be/stops/206687", "https://data.delijn.be/stops/207355"], ["https://data.delijn.be/stops/304914", "https://data.delijn.be/stops/304915"], ["https://data.delijn.be/stops/501682", "https://data.delijn.be/stops/506261"], ["https://data.delijn.be/stops/102212", "https://data.delijn.be/stops/102669"], ["https://data.delijn.be/stops/304025", "https://data.delijn.be/stops/304110"], ["https://data.delijn.be/stops/204752", "https://data.delijn.be/stops/205247"], ["https://data.delijn.be/stops/400405", "https://data.delijn.be/stops/405537"], ["https://data.delijn.be/stops/408885", "https://data.delijn.be/stops/408893"], ["https://data.delijn.be/stops/304712", "https://data.delijn.be/stops/304713"], ["https://data.delijn.be/stops/302537", "https://data.delijn.be/stops/302543"], ["https://data.delijn.be/stops/401600", "https://data.delijn.be/stops/406386"], ["https://data.delijn.be/stops/107037", "https://data.delijn.be/stops/109557"], ["https://data.delijn.be/stops/502645", "https://data.delijn.be/stops/502696"], ["https://data.delijn.be/stops/303963", "https://data.delijn.be/stops/303967"], ["https://data.delijn.be/stops/504165", "https://data.delijn.be/stops/504646"], ["https://data.delijn.be/stops/204591", "https://data.delijn.be/stops/214007"], ["https://data.delijn.be/stops/202792", "https://data.delijn.be/stops/203792"], ["https://data.delijn.be/stops/502308", "https://data.delijn.be/stops/502309"], ["https://data.delijn.be/stops/108951", "https://data.delijn.be/stops/108952"], ["https://data.delijn.be/stops/304012", "https://data.delijn.be/stops/304033"], ["https://data.delijn.be/stops/300803", "https://data.delijn.be/stops/302399"], ["https://data.delijn.be/stops/400664", "https://data.delijn.be/stops/408972"], ["https://data.delijn.be/stops/101222", "https://data.delijn.be/stops/107793"], ["https://data.delijn.be/stops/408570", "https://data.delijn.be/stops/408571"], ["https://data.delijn.be/stops/402723", "https://data.delijn.be/stops/402728"], ["https://data.delijn.be/stops/504305", "https://data.delijn.be/stops/504318"], ["https://data.delijn.be/stops/201921", "https://data.delijn.be/stops/203522"], ["https://data.delijn.be/stops/503899", "https://data.delijn.be/stops/508906"], ["https://data.delijn.be/stops/408337", "https://data.delijn.be/stops/410158"], ["https://data.delijn.be/stops/203315", "https://data.delijn.be/stops/505753"], ["https://data.delijn.be/stops/208124", "https://data.delijn.be/stops/209075"], ["https://data.delijn.be/stops/301365", "https://data.delijn.be/stops/308766"], ["https://data.delijn.be/stops/503563", "https://data.delijn.be/stops/508540"], ["https://data.delijn.be/stops/206363", "https://data.delijn.be/stops/207334"], ["https://data.delijn.be/stops/200276", "https://data.delijn.be/stops/200984"], ["https://data.delijn.be/stops/504383", "https://data.delijn.be/stops/509383"], ["https://data.delijn.be/stops/208027", "https://data.delijn.be/stops/209013"], ["https://data.delijn.be/stops/408428", "https://data.delijn.be/stops/408514"], ["https://data.delijn.be/stops/402526", "https://data.delijn.be/stops/402527"], ["https://data.delijn.be/stops/305723", "https://data.delijn.be/stops/305724"], ["https://data.delijn.be/stops/506191", "https://data.delijn.be/stops/506383"], ["https://data.delijn.be/stops/503040", "https://data.delijn.be/stops/509888"], ["https://data.delijn.be/stops/204020", "https://data.delijn.be/stops/205819"], ["https://data.delijn.be/stops/401421", "https://data.delijn.be/stops/401497"], ["https://data.delijn.be/stops/204930", "https://data.delijn.be/stops/208731"], ["https://data.delijn.be/stops/206612", "https://data.delijn.be/stops/206709"], ["https://data.delijn.be/stops/301254", "https://data.delijn.be/stops/301275"], ["https://data.delijn.be/stops/502234", "https://data.delijn.be/stops/505146"], ["https://data.delijn.be/stops/303439", "https://data.delijn.be/stops/303523"], ["https://data.delijn.be/stops/407970", "https://data.delijn.be/stops/408008"], ["https://data.delijn.be/stops/406368", "https://data.delijn.be/stops/406369"], ["https://data.delijn.be/stops/200460", "https://data.delijn.be/stops/201679"], ["https://data.delijn.be/stops/102951", "https://data.delijn.be/stops/102954"], ["https://data.delijn.be/stops/211129", "https://data.delijn.be/stops/218935"], ["https://data.delijn.be/stops/303294", "https://data.delijn.be/stops/303303"], ["https://data.delijn.be/stops/201218", "https://data.delijn.be/stops/201260"], ["https://data.delijn.be/stops/305780", "https://data.delijn.be/stops/305781"], ["https://data.delijn.be/stops/501041", "https://data.delijn.be/stops/506127"], ["https://data.delijn.be/stops/300588", "https://data.delijn.be/stops/307077"], ["https://data.delijn.be/stops/104453", "https://data.delijn.be/stops/107494"], ["https://data.delijn.be/stops/403425", "https://data.delijn.be/stops/410271"], ["https://data.delijn.be/stops/406916", "https://data.delijn.be/stops/409464"], ["https://data.delijn.be/stops/200479", "https://data.delijn.be/stops/201060"], ["https://data.delijn.be/stops/304601", "https://data.delijn.be/stops/304716"], ["https://data.delijn.be/stops/206073", "https://data.delijn.be/stops/207520"], ["https://data.delijn.be/stops/301317", "https://data.delijn.be/stops/307457"], ["https://data.delijn.be/stops/405822", "https://data.delijn.be/stops/409417"], ["https://data.delijn.be/stops/202025", "https://data.delijn.be/stops/202026"], ["https://data.delijn.be/stops/400363", "https://data.delijn.be/stops/400418"], ["https://data.delijn.be/stops/502449", "https://data.delijn.be/stops/507449"], ["https://data.delijn.be/stops/502355", "https://data.delijn.be/stops/505015"], ["https://data.delijn.be/stops/106843", "https://data.delijn.be/stops/106986"], ["https://data.delijn.be/stops/200167", "https://data.delijn.be/stops/203596"], ["https://data.delijn.be/stops/503570", "https://data.delijn.be/stops/508553"], ["https://data.delijn.be/stops/208816", "https://data.delijn.be/stops/209851"], ["https://data.delijn.be/stops/204070", "https://data.delijn.be/stops/204071"], ["https://data.delijn.be/stops/303246", "https://data.delijn.be/stops/303660"], ["https://data.delijn.be/stops/106944", "https://data.delijn.be/stops/108702"], ["https://data.delijn.be/stops/203126", "https://data.delijn.be/stops/203599"], ["https://data.delijn.be/stops/406151", "https://data.delijn.be/stops/406209"], ["https://data.delijn.be/stops/305252", "https://data.delijn.be/stops/305253"], ["https://data.delijn.be/stops/109349", "https://data.delijn.be/stops/109350"], ["https://data.delijn.be/stops/502656", "https://data.delijn.be/stops/502663"], ["https://data.delijn.be/stops/208764", "https://data.delijn.be/stops/209409"], ["https://data.delijn.be/stops/408182", "https://data.delijn.be/stops/408189"], ["https://data.delijn.be/stops/504961", "https://data.delijn.be/stops/508060"], ["https://data.delijn.be/stops/504464", "https://data.delijn.be/stops/504465"], ["https://data.delijn.be/stops/401076", "https://data.delijn.be/stops/401167"], ["https://data.delijn.be/stops/501146", "https://data.delijn.be/stops/509832"], ["https://data.delijn.be/stops/200262", "https://data.delijn.be/stops/201262"], ["https://data.delijn.be/stops/502263", "https://data.delijn.be/stops/507350"], ["https://data.delijn.be/stops/308452", "https://data.delijn.be/stops/308513"], ["https://data.delijn.be/stops/302490", "https://data.delijn.be/stops/308834"], ["https://data.delijn.be/stops/208495", "https://data.delijn.be/stops/209495"], ["https://data.delijn.be/stops/101125", "https://data.delijn.be/stops/105800"], ["https://data.delijn.be/stops/410069", "https://data.delijn.be/stops/410070"], ["https://data.delijn.be/stops/107930", "https://data.delijn.be/stops/107931"], ["https://data.delijn.be/stops/209670", "https://data.delijn.be/stops/209672"], ["https://data.delijn.be/stops/504685", "https://data.delijn.be/stops/509685"], ["https://data.delijn.be/stops/503929", "https://data.delijn.be/stops/508928"], ["https://data.delijn.be/stops/305752", "https://data.delijn.be/stops/306333"], ["https://data.delijn.be/stops/407605", "https://data.delijn.be/stops/407699"], ["https://data.delijn.be/stops/101488", "https://data.delijn.be/stops/101947"], ["https://data.delijn.be/stops/103005", "https://data.delijn.be/stops/104011"], ["https://data.delijn.be/stops/102489", "https://data.delijn.be/stops/102492"], ["https://data.delijn.be/stops/206519", "https://data.delijn.be/stops/207176"], ["https://data.delijn.be/stops/103970", "https://data.delijn.be/stops/106070"], ["https://data.delijn.be/stops/503170", "https://data.delijn.be/stops/503176"], ["https://data.delijn.be/stops/508206", "https://data.delijn.be/stops/508814"], ["https://data.delijn.be/stops/201691", "https://data.delijn.be/stops/203365"], ["https://data.delijn.be/stops/502060", "https://data.delijn.be/stops/507071"], ["https://data.delijn.be/stops/201000", "https://data.delijn.be/stops/202136"], ["https://data.delijn.be/stops/203020", "https://data.delijn.be/stops/211853"], ["https://data.delijn.be/stops/204054", "https://data.delijn.be/stops/204055"], ["https://data.delijn.be/stops/308218", "https://data.delijn.be/stops/308249"], ["https://data.delijn.be/stops/301449", "https://data.delijn.be/stops/306678"], ["https://data.delijn.be/stops/407838", "https://data.delijn.be/stops/407840"], ["https://data.delijn.be/stops/105480", "https://data.delijn.be/stops/105684"], ["https://data.delijn.be/stops/206101", "https://data.delijn.be/stops/207846"], ["https://data.delijn.be/stops/308478", "https://data.delijn.be/stops/308482"], ["https://data.delijn.be/stops/200348", "https://data.delijn.be/stops/208404"], ["https://data.delijn.be/stops/401676", "https://data.delijn.be/stops/308166"], ["https://data.delijn.be/stops/403456", "https://data.delijn.be/stops/407464"], ["https://data.delijn.be/stops/302125", "https://data.delijn.be/stops/308085"], ["https://data.delijn.be/stops/206358", "https://data.delijn.be/stops/206700"], ["https://data.delijn.be/stops/400406", "https://data.delijn.be/stops/400408"], ["https://data.delijn.be/stops/502446", "https://data.delijn.be/stops/507682"], ["https://data.delijn.be/stops/501336", "https://data.delijn.be/stops/501565"], ["https://data.delijn.be/stops/206997", "https://data.delijn.be/stops/207997"], ["https://data.delijn.be/stops/205021", "https://data.delijn.be/stops/205410"], ["https://data.delijn.be/stops/408273", "https://data.delijn.be/stops/408388"], ["https://data.delijn.be/stops/205996", "https://data.delijn.be/stops/207021"], ["https://data.delijn.be/stops/409418", "https://data.delijn.be/stops/409419"], ["https://data.delijn.be/stops/504940", "https://data.delijn.be/stops/509940"], ["https://data.delijn.be/stops/204445", "https://data.delijn.be/stops/204656"], ["https://data.delijn.be/stops/407899", "https://data.delijn.be/stops/407992"], ["https://data.delijn.be/stops/105268", "https://data.delijn.be/stops/105287"], ["https://data.delijn.be/stops/503048", "https://data.delijn.be/stops/509843"], ["https://data.delijn.be/stops/109828", "https://data.delijn.be/stops/109831"], ["https://data.delijn.be/stops/303933", "https://data.delijn.be/stops/303934"], ["https://data.delijn.be/stops/406067", "https://data.delijn.be/stops/406141"], ["https://data.delijn.be/stops/200147", "https://data.delijn.be/stops/201113"], ["https://data.delijn.be/stops/204981", "https://data.delijn.be/stops/206491"], ["https://data.delijn.be/stops/504287", "https://data.delijn.be/stops/509287"], ["https://data.delijn.be/stops/105552", "https://data.delijn.be/stops/105567"], ["https://data.delijn.be/stops/404090", "https://data.delijn.be/stops/408593"], ["https://data.delijn.be/stops/404402", "https://data.delijn.be/stops/404405"], ["https://data.delijn.be/stops/406574", "https://data.delijn.be/stops/406589"], ["https://data.delijn.be/stops/301832", "https://data.delijn.be/stops/305986"], ["https://data.delijn.be/stops/106193", "https://data.delijn.be/stops/106195"], ["https://data.delijn.be/stops/306257", "https://data.delijn.be/stops/306259"], ["https://data.delijn.be/stops/106634", "https://data.delijn.be/stops/107188"], ["https://data.delijn.be/stops/404976", "https://data.delijn.be/stops/404978"], ["https://data.delijn.be/stops/304990", "https://data.delijn.be/stops/304992"], ["https://data.delijn.be/stops/401409", "https://data.delijn.be/stops/300980"], ["https://data.delijn.be/stops/404231", "https://data.delijn.be/stops/404236"], ["https://data.delijn.be/stops/303568", "https://data.delijn.be/stops/303569"], ["https://data.delijn.be/stops/405449", "https://data.delijn.be/stops/302836"], ["https://data.delijn.be/stops/102849", "https://data.delijn.be/stops/106778"], ["https://data.delijn.be/stops/303848", "https://data.delijn.be/stops/303871"], ["https://data.delijn.be/stops/202740", "https://data.delijn.be/stops/207431"], ["https://data.delijn.be/stops/205224", "https://data.delijn.be/stops/205225"], ["https://data.delijn.be/stops/108636", "https://data.delijn.be/stops/109662"], ["https://data.delijn.be/stops/300290", "https://data.delijn.be/stops/301314"], ["https://data.delijn.be/stops/102588", "https://data.delijn.be/stops/102589"], ["https://data.delijn.be/stops/301956", "https://data.delijn.be/stops/308530"], ["https://data.delijn.be/stops/307088", "https://data.delijn.be/stops/308298"], ["https://data.delijn.be/stops/202275", "https://data.delijn.be/stops/203681"], ["https://data.delijn.be/stops/305232", "https://data.delijn.be/stops/305256"], ["https://data.delijn.be/stops/208237", "https://data.delijn.be/stops/208242"], ["https://data.delijn.be/stops/408880", "https://data.delijn.be/stops/408922"], ["https://data.delijn.be/stops/107364", "https://data.delijn.be/stops/107366"], ["https://data.delijn.be/stops/406682", "https://data.delijn.be/stops/407179"], ["https://data.delijn.be/stops/507540", "https://data.delijn.be/stops/507564"], ["https://data.delijn.be/stops/104052", "https://data.delijn.be/stops/108398"], ["https://data.delijn.be/stops/300594", "https://data.delijn.be/stops/303018"], ["https://data.delijn.be/stops/302529", "https://data.delijn.be/stops/302531"], ["https://data.delijn.be/stops/306955", "https://data.delijn.be/stops/306957"], ["https://data.delijn.be/stops/302962", "https://data.delijn.be/stops/306296"], ["https://data.delijn.be/stops/102532", "https://data.delijn.be/stops/405106"], ["https://data.delijn.be/stops/106065", "https://data.delijn.be/stops/106070"], ["https://data.delijn.be/stops/201386", "https://data.delijn.be/stops/203645"], ["https://data.delijn.be/stops/109997", "https://data.delijn.be/stops/410163"], ["https://data.delijn.be/stops/107452", "https://data.delijn.be/stops/107453"], ["https://data.delijn.be/stops/404141", "https://data.delijn.be/stops/404179"], ["https://data.delijn.be/stops/202795", "https://data.delijn.be/stops/203312"], ["https://data.delijn.be/stops/403990", "https://data.delijn.be/stops/410014"], ["https://data.delijn.be/stops/305528", "https://data.delijn.be/stops/305553"], ["https://data.delijn.be/stops/207093", "https://data.delijn.be/stops/207094"], ["https://data.delijn.be/stops/501592", "https://data.delijn.be/stops/504061"], ["https://data.delijn.be/stops/300216", "https://data.delijn.be/stops/300217"], ["https://data.delijn.be/stops/402237", "https://data.delijn.be/stops/402295"], ["https://data.delijn.be/stops/203944", "https://data.delijn.be/stops/203946"], ["https://data.delijn.be/stops/403672", "https://data.delijn.be/stops/405633"], ["https://data.delijn.be/stops/208741", "https://data.delijn.be/stops/209186"], ["https://data.delijn.be/stops/208472", "https://data.delijn.be/stops/209669"], ["https://data.delijn.be/stops/209666", "https://data.delijn.be/stops/209680"], ["https://data.delijn.be/stops/302250", "https://data.delijn.be/stops/306378"], ["https://data.delijn.be/stops/403303", "https://data.delijn.be/stops/403306"], ["https://data.delijn.be/stops/102571", "https://data.delijn.be/stops/109233"], ["https://data.delijn.be/stops/205974", "https://data.delijn.be/stops/208290"], ["https://data.delijn.be/stops/501326", "https://data.delijn.be/stops/501358"], ["https://data.delijn.be/stops/303300", "https://data.delijn.be/stops/305102"], ["https://data.delijn.be/stops/508440", "https://data.delijn.be/stops/509440"], ["https://data.delijn.be/stops/200926", "https://data.delijn.be/stops/202394"], ["https://data.delijn.be/stops/202494", "https://data.delijn.be/stops/211043"], ["https://data.delijn.be/stops/403140", "https://data.delijn.be/stops/403146"], ["https://data.delijn.be/stops/202305", "https://data.delijn.be/stops/203306"], ["https://data.delijn.be/stops/402384", "https://data.delijn.be/stops/404730"], ["https://data.delijn.be/stops/106424", "https://data.delijn.be/stops/106426"], ["https://data.delijn.be/stops/202660", "https://data.delijn.be/stops/210659"], ["https://data.delijn.be/stops/304126", "https://data.delijn.be/stops/307550"], ["https://data.delijn.be/stops/408266", "https://data.delijn.be/stops/408305"], ["https://data.delijn.be/stops/204108", "https://data.delijn.be/stops/205108"], ["https://data.delijn.be/stops/300326", "https://data.delijn.be/stops/307035"], ["https://data.delijn.be/stops/401431", "https://data.delijn.be/stops/402280"], ["https://data.delijn.be/stops/208484", "https://data.delijn.be/stops/209484"], ["https://data.delijn.be/stops/204572", "https://data.delijn.be/stops/308715"], ["https://data.delijn.be/stops/301646", "https://data.delijn.be/stops/301647"], ["https://data.delijn.be/stops/403831", "https://data.delijn.be/stops/403832"], ["https://data.delijn.be/stops/402068", "https://data.delijn.be/stops/402223"], ["https://data.delijn.be/stops/202032", "https://data.delijn.be/stops/203032"], ["https://data.delijn.be/stops/202437", "https://data.delijn.be/stops/202607"], ["https://data.delijn.be/stops/501694", "https://data.delijn.be/stops/505741"], ["https://data.delijn.be/stops/308211", "https://data.delijn.be/stops/308212"], ["https://data.delijn.be/stops/207544", "https://data.delijn.be/stops/209749"], ["https://data.delijn.be/stops/200018", "https://data.delijn.be/stops/209948"], ["https://data.delijn.be/stops/505706", "https://data.delijn.be/stops/505708"], ["https://data.delijn.be/stops/400697", "https://data.delijn.be/stops/409526"], ["https://data.delijn.be/stops/200375", "https://data.delijn.be/stops/201375"], ["https://data.delijn.be/stops/204405", "https://data.delijn.be/stops/204414"], ["https://data.delijn.be/stops/303206", "https://data.delijn.be/stops/304318"], ["https://data.delijn.be/stops/208495", "https://data.delijn.be/stops/209638"], ["https://data.delijn.be/stops/504365", "https://data.delijn.be/stops/509369"], ["https://data.delijn.be/stops/401922", "https://data.delijn.be/stops/403747"], ["https://data.delijn.be/stops/202080", "https://data.delijn.be/stops/204975"], ["https://data.delijn.be/stops/202592", "https://data.delijn.be/stops/210023"], ["https://data.delijn.be/stops/104936", "https://data.delijn.be/stops/108188"], ["https://data.delijn.be/stops/106401", "https://data.delijn.be/stops/106574"], ["https://data.delijn.be/stops/105064", "https://data.delijn.be/stops/109491"], ["https://data.delijn.be/stops/209333", "https://data.delijn.be/stops/209397"], ["https://data.delijn.be/stops/303364", "https://data.delijn.be/stops/307183"], ["https://data.delijn.be/stops/304696", "https://data.delijn.be/stops/306684"], ["https://data.delijn.be/stops/305169", "https://data.delijn.be/stops/307104"], ["https://data.delijn.be/stops/408114", "https://data.delijn.be/stops/408115"], ["https://data.delijn.be/stops/408235", "https://data.delijn.be/stops/408284"], ["https://data.delijn.be/stops/201844", "https://data.delijn.be/stops/208327"], ["https://data.delijn.be/stops/302902", "https://data.delijn.be/stops/303231"], ["https://data.delijn.be/stops/405949", "https://data.delijn.be/stops/405950"], ["https://data.delijn.be/stops/102838", "https://data.delijn.be/stops/102839"], ["https://data.delijn.be/stops/103483", "https://data.delijn.be/stops/109137"], ["https://data.delijn.be/stops/202796", "https://data.delijn.be/stops/203796"], ["https://data.delijn.be/stops/302092", "https://data.delijn.be/stops/302093"], ["https://data.delijn.be/stops/202334", "https://data.delijn.be/stops/202335"], ["https://data.delijn.be/stops/305141", "https://data.delijn.be/stops/305142"], ["https://data.delijn.be/stops/300004", "https://data.delijn.be/stops/300010"], ["https://data.delijn.be/stops/105757", "https://data.delijn.be/stops/109816"], ["https://data.delijn.be/stops/208647", "https://data.delijn.be/stops/210111"], ["https://data.delijn.be/stops/206889", "https://data.delijn.be/stops/207294"], ["https://data.delijn.be/stops/107839", "https://data.delijn.be/stops/109652"], ["https://data.delijn.be/stops/206586", "https://data.delijn.be/stops/206919"], ["https://data.delijn.be/stops/201772", "https://data.delijn.be/stops/209266"], ["https://data.delijn.be/stops/301947", "https://data.delijn.be/stops/306970"], ["https://data.delijn.be/stops/405087", "https://data.delijn.be/stops/408342"], ["https://data.delijn.be/stops/102186", "https://data.delijn.be/stops/102237"], ["https://data.delijn.be/stops/401010", "https://data.delijn.be/stops/408745"], ["https://data.delijn.be/stops/206335", "https://data.delijn.be/stops/206336"], ["https://data.delijn.be/stops/201926", "https://data.delijn.be/stops/207400"], ["https://data.delijn.be/stops/504132", "https://data.delijn.be/stops/504257"], ["https://data.delijn.be/stops/406610", "https://data.delijn.be/stops/406637"], ["https://data.delijn.be/stops/408186", "https://data.delijn.be/stops/408187"], ["https://data.delijn.be/stops/504441", "https://data.delijn.be/stops/504701"], ["https://data.delijn.be/stops/106871", "https://data.delijn.be/stops/106872"], ["https://data.delijn.be/stops/503431", "https://data.delijn.be/stops/508431"], ["https://data.delijn.be/stops/205086", "https://data.delijn.be/stops/205087"], ["https://data.delijn.be/stops/301610", "https://data.delijn.be/stops/301611"], ["https://data.delijn.be/stops/202251", "https://data.delijn.be/stops/203250"], ["https://data.delijn.be/stops/208417", "https://data.delijn.be/stops/209418"], ["https://data.delijn.be/stops/210105", "https://data.delijn.be/stops/211084"], ["https://data.delijn.be/stops/107037", "https://data.delijn.be/stops/108243"], ["https://data.delijn.be/stops/404422", "https://data.delijn.be/stops/404425"], ["https://data.delijn.be/stops/209049", "https://data.delijn.be/stops/209050"], ["https://data.delijn.be/stops/308028", "https://data.delijn.be/stops/308033"], ["https://data.delijn.be/stops/102397", "https://data.delijn.be/stops/106337"], ["https://data.delijn.be/stops/204708", "https://data.delijn.be/stops/204709"], ["https://data.delijn.be/stops/101838", "https://data.delijn.be/stops/105425"], ["https://data.delijn.be/stops/404147", "https://data.delijn.be/stops/404167"], ["https://data.delijn.be/stops/102564", "https://data.delijn.be/stops/400023"], ["https://data.delijn.be/stops/400904", "https://data.delijn.be/stops/400905"], ["https://data.delijn.be/stops/103222", "https://data.delijn.be/stops/104574"], ["https://data.delijn.be/stops/306666", "https://data.delijn.be/stops/307880"], ["https://data.delijn.be/stops/403871", "https://data.delijn.be/stops/410164"], ["https://data.delijn.be/stops/201668", "https://data.delijn.be/stops/201678"], ["https://data.delijn.be/stops/200829", "https://data.delijn.be/stops/502060"], ["https://data.delijn.be/stops/304072", "https://data.delijn.be/stops/308981"], ["https://data.delijn.be/stops/306166", "https://data.delijn.be/stops/308545"], ["https://data.delijn.be/stops/502708", "https://data.delijn.be/stops/505017"], ["https://data.delijn.be/stops/303533", "https://data.delijn.be/stops/303555"], ["https://data.delijn.be/stops/305071", "https://data.delijn.be/stops/306951"], ["https://data.delijn.be/stops/303044", "https://data.delijn.be/stops/303096"], ["https://data.delijn.be/stops/208203", "https://data.delijn.be/stops/209455"], ["https://data.delijn.be/stops/102284", "https://data.delijn.be/stops/106747"], ["https://data.delijn.be/stops/301169", "https://data.delijn.be/stops/305526"], ["https://data.delijn.be/stops/502414", "https://data.delijn.be/stops/502695"], ["https://data.delijn.be/stops/205985", "https://data.delijn.be/stops/207837"], ["https://data.delijn.be/stops/300358", "https://data.delijn.be/stops/304862"], ["https://data.delijn.be/stops/205503", "https://data.delijn.be/stops/205505"], ["https://data.delijn.be/stops/400733", "https://data.delijn.be/stops/400872"], ["https://data.delijn.be/stops/406973", "https://data.delijn.be/stops/408439"], ["https://data.delijn.be/stops/404914", "https://data.delijn.be/stops/404917"], ["https://data.delijn.be/stops/206912", "https://data.delijn.be/stops/207926"], ["https://data.delijn.be/stops/402714", "https://data.delijn.be/stops/308143"], ["https://data.delijn.be/stops/304718", "https://data.delijn.be/stops/308687"], ["https://data.delijn.be/stops/208745", "https://data.delijn.be/stops/209419"], ["https://data.delijn.be/stops/203366", "https://data.delijn.be/stops/203998"], ["https://data.delijn.be/stops/102240", "https://data.delijn.be/stops/105809"], ["https://data.delijn.be/stops/505677", "https://data.delijn.be/stops/507305"], ["https://data.delijn.be/stops/302254", "https://data.delijn.be/stops/302259"], ["https://data.delijn.be/stops/401782", "https://data.delijn.be/stops/406421"], ["https://data.delijn.be/stops/206154", "https://data.delijn.be/stops/207115"], ["https://data.delijn.be/stops/502362", "https://data.delijn.be/stops/507354"], ["https://data.delijn.be/stops/206313", "https://data.delijn.be/stops/206314"], ["https://data.delijn.be/stops/205677", "https://data.delijn.be/stops/205678"], ["https://data.delijn.be/stops/402071", "https://data.delijn.be/stops/405548"], ["https://data.delijn.be/stops/300316", "https://data.delijn.be/stops/300565"], ["https://data.delijn.be/stops/403911", "https://data.delijn.be/stops/403998"], ["https://data.delijn.be/stops/403632", "https://data.delijn.be/stops/407558"], ["https://data.delijn.be/stops/208115", "https://data.delijn.be/stops/208337"], ["https://data.delijn.be/stops/208431", "https://data.delijn.be/stops/209431"], ["https://data.delijn.be/stops/108089", "https://data.delijn.be/stops/108389"], ["https://data.delijn.be/stops/103156", "https://data.delijn.be/stops/109045"], ["https://data.delijn.be/stops/308720", "https://data.delijn.be/stops/308722"], ["https://data.delijn.be/stops/409253", "https://data.delijn.be/stops/409278"], ["https://data.delijn.be/stops/204260", "https://data.delijn.be/stops/205465"], ["https://data.delijn.be/stops/106068", "https://data.delijn.be/stops/106418"], ["https://data.delijn.be/stops/305161", "https://data.delijn.be/stops/305200"], ["https://data.delijn.be/stops/403270", "https://data.delijn.be/stops/409522"], ["https://data.delijn.be/stops/405131", "https://data.delijn.be/stops/405180"], ["https://data.delijn.be/stops/403822", "https://data.delijn.be/stops/405136"], ["https://data.delijn.be/stops/301792", "https://data.delijn.be/stops/301796"], ["https://data.delijn.be/stops/506305", "https://data.delijn.be/stops/506480"], ["https://data.delijn.be/stops/504310", "https://data.delijn.be/stops/504317"], ["https://data.delijn.be/stops/401871", "https://data.delijn.be/stops/406341"], ["https://data.delijn.be/stops/406545", "https://data.delijn.be/stops/408389"], ["https://data.delijn.be/stops/109024", "https://data.delijn.be/stops/109075"], ["https://data.delijn.be/stops/305987", "https://data.delijn.be/stops/305989"], ["https://data.delijn.be/stops/304889", "https://data.delijn.be/stops/306716"], ["https://data.delijn.be/stops/305047", "https://data.delijn.be/stops/305049"], ["https://data.delijn.be/stops/404774", "https://data.delijn.be/stops/404786"], ["https://data.delijn.be/stops/301308", "https://data.delijn.be/stops/304693"], ["https://data.delijn.be/stops/208141", "https://data.delijn.be/stops/209142"], ["https://data.delijn.be/stops/405371", "https://data.delijn.be/stops/302847"], ["https://data.delijn.be/stops/403525", "https://data.delijn.be/stops/404408"], ["https://data.delijn.be/stops/104498", "https://data.delijn.be/stops/107508"], ["https://data.delijn.be/stops/304494", "https://data.delijn.be/stops/304495"], ["https://data.delijn.be/stops/301007", "https://data.delijn.be/stops/301011"], ["https://data.delijn.be/stops/202097", "https://data.delijn.be/stops/202098"], ["https://data.delijn.be/stops/206134", "https://data.delijn.be/stops/207134"], ["https://data.delijn.be/stops/206520", "https://data.delijn.be/stops/207008"], ["https://data.delijn.be/stops/103248", "https://data.delijn.be/stops/103249"], ["https://data.delijn.be/stops/305707", "https://data.delijn.be/stops/305752"], ["https://data.delijn.be/stops/102898", "https://data.delijn.be/stops/106017"], ["https://data.delijn.be/stops/104131", "https://data.delijn.be/stops/108436"], ["https://data.delijn.be/stops/202869", "https://data.delijn.be/stops/203882"], ["https://data.delijn.be/stops/505543", "https://data.delijn.be/stops/508805"], ["https://data.delijn.be/stops/206094", "https://data.delijn.be/stops/206095"], ["https://data.delijn.be/stops/202835", "https://data.delijn.be/stops/202836"], ["https://data.delijn.be/stops/401487", "https://data.delijn.be/stops/401504"], ["https://data.delijn.be/stops/408225", "https://data.delijn.be/stops/408395"], ["https://data.delijn.be/stops/200302", "https://data.delijn.be/stops/201261"], ["https://data.delijn.be/stops/104402", "https://data.delijn.be/stops/204610"], ["https://data.delijn.be/stops/401498", "https://data.delijn.be/stops/401598"], ["https://data.delijn.be/stops/301231", "https://data.delijn.be/stops/308559"], ["https://data.delijn.be/stops/207363", "https://data.delijn.be/stops/207706"], ["https://data.delijn.be/stops/402706", "https://data.delijn.be/stops/402729"], ["https://data.delijn.be/stops/200393", "https://data.delijn.be/stops/201083"], ["https://data.delijn.be/stops/507471", "https://data.delijn.be/stops/507690"], ["https://data.delijn.be/stops/109359", "https://data.delijn.be/stops/109365"], ["https://data.delijn.be/stops/206289", "https://data.delijn.be/stops/207258"], ["https://data.delijn.be/stops/105743", "https://data.delijn.be/stops/105746"], ["https://data.delijn.be/stops/406089", "https://data.delijn.be/stops/406090"], ["https://data.delijn.be/stops/404506", "https://data.delijn.be/stops/404507"], ["https://data.delijn.be/stops/203722", "https://data.delijn.be/stops/203723"], ["https://data.delijn.be/stops/308760", "https://data.delijn.be/stops/308761"], ["https://data.delijn.be/stops/206515", "https://data.delijn.be/stops/206661"], ["https://data.delijn.be/stops/400596", "https://data.delijn.be/stops/400614"], ["https://data.delijn.be/stops/502652", "https://data.delijn.be/stops/507405"], ["https://data.delijn.be/stops/406637", "https://data.delijn.be/stops/406639"], ["https://data.delijn.be/stops/300540", "https://data.delijn.be/stops/300541"], ["https://data.delijn.be/stops/407752", "https://data.delijn.be/stops/407753"], ["https://data.delijn.be/stops/408476", "https://data.delijn.be/stops/408477"], ["https://data.delijn.be/stops/405934", "https://data.delijn.be/stops/405987"], ["https://data.delijn.be/stops/305968", "https://data.delijn.be/stops/308759"], ["https://data.delijn.be/stops/206131", "https://data.delijn.be/stops/206137"], ["https://data.delijn.be/stops/504588", "https://data.delijn.be/stops/505535"], ["https://data.delijn.be/stops/208005", "https://data.delijn.be/stops/208079"], ["https://data.delijn.be/stops/108029", "https://data.delijn.be/stops/108034"], ["https://data.delijn.be/stops/409136", "https://data.delijn.be/stops/409315"], ["https://data.delijn.be/stops/406649", "https://data.delijn.be/stops/406651"], ["https://data.delijn.be/stops/206708", "https://data.delijn.be/stops/207974"], ["https://data.delijn.be/stops/202960", "https://data.delijn.be/stops/203959"], ["https://data.delijn.be/stops/200924", "https://data.delijn.be/stops/505602"], ["https://data.delijn.be/stops/104419", "https://data.delijn.be/stops/204823"], ["https://data.delijn.be/stops/300458", "https://data.delijn.be/stops/300460"], ["https://data.delijn.be/stops/302166", "https://data.delijn.be/stops/304079"], ["https://data.delijn.be/stops/205320", "https://data.delijn.be/stops/205321"], ["https://data.delijn.be/stops/301123", "https://data.delijn.be/stops/301138"], ["https://data.delijn.be/stops/302159", "https://data.delijn.be/stops/308101"], ["https://data.delijn.be/stops/506173", "https://data.delijn.be/stops/506780"], ["https://data.delijn.be/stops/305417", "https://data.delijn.be/stops/305421"], ["https://data.delijn.be/stops/208233", "https://data.delijn.be/stops/209796"], ["https://data.delijn.be/stops/102498", "https://data.delijn.be/stops/400004"], ["https://data.delijn.be/stops/300368", "https://data.delijn.be/stops/307213"], ["https://data.delijn.be/stops/503113", "https://data.delijn.be/stops/508113"], ["https://data.delijn.be/stops/302822", "https://data.delijn.be/stops/308981"], ["https://data.delijn.be/stops/301781", "https://data.delijn.be/stops/308894"], ["https://data.delijn.be/stops/109436", "https://data.delijn.be/stops/109439"], ["https://data.delijn.be/stops/507304", "https://data.delijn.be/stops/507306"], ["https://data.delijn.be/stops/502659", "https://data.delijn.be/stops/507658"], ["https://data.delijn.be/stops/208791", "https://data.delijn.be/stops/208792"], ["https://data.delijn.be/stops/502750", "https://data.delijn.be/stops/507440"], ["https://data.delijn.be/stops/402309", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/106593", "https://data.delijn.be/stops/107248"], ["https://data.delijn.be/stops/200182", "https://data.delijn.be/stops/203757"], ["https://data.delijn.be/stops/101240", "https://data.delijn.be/stops/101600"], ["https://data.delijn.be/stops/503672", "https://data.delijn.be/stops/505257"], ["https://data.delijn.be/stops/103286", "https://data.delijn.be/stops/106130"], ["https://data.delijn.be/stops/405592", "https://data.delijn.be/stops/405595"], ["https://data.delijn.be/stops/503330", "https://data.delijn.be/stops/508331"], ["https://data.delijn.be/stops/502061", "https://data.delijn.be/stops/502070"], ["https://data.delijn.be/stops/200216", "https://data.delijn.be/stops/201260"], ["https://data.delijn.be/stops/502684", "https://data.delijn.be/stops/507700"], ["https://data.delijn.be/stops/301110", "https://data.delijn.be/stops/307639"], ["https://data.delijn.be/stops/201872", "https://data.delijn.be/stops/202426"], ["https://data.delijn.be/stops/304757", "https://data.delijn.be/stops/305589"], ["https://data.delijn.be/stops/107624", "https://data.delijn.be/stops/108541"], ["https://data.delijn.be/stops/108098", "https://data.delijn.be/stops/108099"], ["https://data.delijn.be/stops/501144", "https://data.delijn.be/stops/502363"], ["https://data.delijn.be/stops/302533", "https://data.delijn.be/stops/302536"], ["https://data.delijn.be/stops/302736", "https://data.delijn.be/stops/302791"], ["https://data.delijn.be/stops/208614", "https://data.delijn.be/stops/208615"], ["https://data.delijn.be/stops/504393", "https://data.delijn.be/stops/509264"], ["https://data.delijn.be/stops/303349", "https://data.delijn.be/stops/303388"], ["https://data.delijn.be/stops/503177", "https://data.delijn.be/stops/508264"], ["https://data.delijn.be/stops/404447", "https://data.delijn.be/stops/404448"], ["https://data.delijn.be/stops/204975", "https://data.delijn.be/stops/209746"], ["https://data.delijn.be/stops/201854", "https://data.delijn.be/stops/202022"], ["https://data.delijn.be/stops/206902", "https://data.delijn.be/stops/206917"], ["https://data.delijn.be/stops/103638", "https://data.delijn.be/stops/107166"], ["https://data.delijn.be/stops/200055", "https://data.delijn.be/stops/201472"], ["https://data.delijn.be/stops/400301", "https://data.delijn.be/stops/400440"], ["https://data.delijn.be/stops/505095", "https://data.delijn.be/stops/505944"], ["https://data.delijn.be/stops/302496", "https://data.delijn.be/stops/302720"], ["https://data.delijn.be/stops/102991", "https://data.delijn.be/stops/106360"], ["https://data.delijn.be/stops/107878", "https://data.delijn.be/stops/107886"], ["https://data.delijn.be/stops/403364", "https://data.delijn.be/stops/410276"], ["https://data.delijn.be/stops/300439", "https://data.delijn.be/stops/300440"], ["https://data.delijn.be/stops/502805", "https://data.delijn.be/stops/502806"], ["https://data.delijn.be/stops/502208", "https://data.delijn.be/stops/502211"], ["https://data.delijn.be/stops/206271", "https://data.delijn.be/stops/206272"], ["https://data.delijn.be/stops/300529", "https://data.delijn.be/stops/300530"], ["https://data.delijn.be/stops/504674", "https://data.delijn.be/stops/505813"], ["https://data.delijn.be/stops/208780", "https://data.delijn.be/stops/209351"], ["https://data.delijn.be/stops/302240", "https://data.delijn.be/stops/304912"], ["https://data.delijn.be/stops/101841", "https://data.delijn.be/stops/109397"], ["https://data.delijn.be/stops/105754", "https://data.delijn.be/stops/105757"], ["https://data.delijn.be/stops/204496", "https://data.delijn.be/stops/205510"], ["https://data.delijn.be/stops/206121", "https://data.delijn.be/stops/207141"], ["https://data.delijn.be/stops/204170", "https://data.delijn.be/stops/205593"], ["https://data.delijn.be/stops/103235", "https://data.delijn.be/stops/107395"], ["https://data.delijn.be/stops/403230", "https://data.delijn.be/stops/403386"], ["https://data.delijn.be/stops/107177", "https://data.delijn.be/stops/107178"], ["https://data.delijn.be/stops/202157", "https://data.delijn.be/stops/203156"], ["https://data.delijn.be/stops/208379", "https://data.delijn.be/stops/209290"], ["https://data.delijn.be/stops/504088", "https://data.delijn.be/stops/509085"], ["https://data.delijn.be/stops/500002", "https://data.delijn.be/stops/505978"], ["https://data.delijn.be/stops/101445", "https://data.delijn.be/stops/109010"], ["https://data.delijn.be/stops/208410", "https://data.delijn.be/stops/208765"], ["https://data.delijn.be/stops/406236", "https://data.delijn.be/stops/406237"], ["https://data.delijn.be/stops/102597", "https://data.delijn.be/stops/107861"], ["https://data.delijn.be/stops/503324", "https://data.delijn.be/stops/508322"], ["https://data.delijn.be/stops/210011", "https://data.delijn.be/stops/210012"], ["https://data.delijn.be/stops/200817", "https://data.delijn.be/stops/210103"], ["https://data.delijn.be/stops/401867", "https://data.delijn.be/stops/406285"], ["https://data.delijn.be/stops/402108", "https://data.delijn.be/stops/402109"], ["https://data.delijn.be/stops/204740", "https://data.delijn.be/stops/205742"], ["https://data.delijn.be/stops/404193", "https://data.delijn.be/stops/405981"], ["https://data.delijn.be/stops/408044", "https://data.delijn.be/stops/408045"], ["https://data.delijn.be/stops/302587", "https://data.delijn.be/stops/302604"], ["https://data.delijn.be/stops/409672", "https://data.delijn.be/stops/409685"], ["https://data.delijn.be/stops/407971", "https://data.delijn.be/stops/408010"], ["https://data.delijn.be/stops/301721", "https://data.delijn.be/stops/301722"], ["https://data.delijn.be/stops/400808", "https://data.delijn.be/stops/409621"], ["https://data.delijn.be/stops/404888", "https://data.delijn.be/stops/404889"], ["https://data.delijn.be/stops/406292", "https://data.delijn.be/stops/409259"], ["https://data.delijn.be/stops/405301", "https://data.delijn.be/stops/405412"], ["https://data.delijn.be/stops/400728", "https://data.delijn.be/stops/400729"], ["https://data.delijn.be/stops/504161", "https://data.delijn.be/stops/504195"], ["https://data.delijn.be/stops/202021", "https://data.delijn.be/stops/210853"], ["https://data.delijn.be/stops/503457", "https://data.delijn.be/stops/508471"], ["https://data.delijn.be/stops/103746", "https://data.delijn.be/stops/103747"], ["https://data.delijn.be/stops/206183", "https://data.delijn.be/stops/217006"], ["https://data.delijn.be/stops/405353", "https://data.delijn.be/stops/302838"], ["https://data.delijn.be/stops/205520", "https://data.delijn.be/stops/205521"], ["https://data.delijn.be/stops/206580", "https://data.delijn.be/stops/207920"], ["https://data.delijn.be/stops/400965", "https://data.delijn.be/stops/400968"], ["https://data.delijn.be/stops/408859", "https://data.delijn.be/stops/408885"], ["https://data.delijn.be/stops/305343", "https://data.delijn.be/stops/305347"], ["https://data.delijn.be/stops/407068", "https://data.delijn.be/stops/407071"], ["https://data.delijn.be/stops/108404", "https://data.delijn.be/stops/306637"], ["https://data.delijn.be/stops/303031", "https://data.delijn.be/stops/307727"], ["https://data.delijn.be/stops/202086", "https://data.delijn.be/stops/202722"], ["https://data.delijn.be/stops/104139", "https://data.delijn.be/stops/108107"], ["https://data.delijn.be/stops/103059", "https://data.delijn.be/stops/104446"], ["https://data.delijn.be/stops/303088", "https://data.delijn.be/stops/306110"], ["https://data.delijn.be/stops/307201", "https://data.delijn.be/stops/307202"], ["https://data.delijn.be/stops/501770", "https://data.delijn.be/stops/502373"], ["https://data.delijn.be/stops/502288", "https://data.delijn.be/stops/507288"], ["https://data.delijn.be/stops/402231", "https://data.delijn.be/stops/402292"], ["https://data.delijn.be/stops/502252", "https://data.delijn.be/stops/505223"], ["https://data.delijn.be/stops/300576", "https://data.delijn.be/stops/300589"], ["https://data.delijn.be/stops/400886", "https://data.delijn.be/stops/400976"], ["https://data.delijn.be/stops/400157", "https://data.delijn.be/stops/409067"], ["https://data.delijn.be/stops/508863", "https://data.delijn.be/stops/590007"], ["https://data.delijn.be/stops/507108", "https://data.delijn.be/stops/507141"], ["https://data.delijn.be/stops/303348", "https://data.delijn.be/stops/303350"], ["https://data.delijn.be/stops/206294", "https://data.delijn.be/stops/207817"], ["https://data.delijn.be/stops/103248", "https://data.delijn.be/stops/107600"], ["https://data.delijn.be/stops/200080", "https://data.delijn.be/stops/203479"], ["https://data.delijn.be/stops/305302", "https://data.delijn.be/stops/305328"], ["https://data.delijn.be/stops/305684", "https://data.delijn.be/stops/305710"], ["https://data.delijn.be/stops/407830", "https://data.delijn.be/stops/407977"], ["https://data.delijn.be/stops/107589", "https://data.delijn.be/stops/109430"], ["https://data.delijn.be/stops/302972", "https://data.delijn.be/stops/306295"], ["https://data.delijn.be/stops/101706", "https://data.delijn.be/stops/204493"], ["https://data.delijn.be/stops/501331", "https://data.delijn.be/stops/506309"], ["https://data.delijn.be/stops/103303", "https://data.delijn.be/stops/409036"], ["https://data.delijn.be/stops/104822", "https://data.delijn.be/stops/305830"], ["https://data.delijn.be/stops/302539", "https://data.delijn.be/stops/302543"], ["https://data.delijn.be/stops/205697", "https://data.delijn.be/stops/214009"], ["https://data.delijn.be/stops/304263", "https://data.delijn.be/stops/304266"], ["https://data.delijn.be/stops/200428", "https://data.delijn.be/stops/203008"], ["https://data.delijn.be/stops/301560", "https://data.delijn.be/stops/301576"], ["https://data.delijn.be/stops/502526", "https://data.delijn.be/stops/507528"], ["https://data.delijn.be/stops/302015", "https://data.delijn.be/stops/304914"], ["https://data.delijn.be/stops/503703", "https://data.delijn.be/stops/508741"], ["https://data.delijn.be/stops/307966", "https://data.delijn.be/stops/307968"], ["https://data.delijn.be/stops/206751", "https://data.delijn.be/stops/209668"], ["https://data.delijn.be/stops/208573", "https://data.delijn.be/stops/209573"], ["https://data.delijn.be/stops/402363", "https://data.delijn.be/stops/402365"], ["https://data.delijn.be/stops/200021", "https://data.delijn.be/stops/203355"], ["https://data.delijn.be/stops/403131", "https://data.delijn.be/stops/403844"], ["https://data.delijn.be/stops/204664", "https://data.delijn.be/stops/205664"], ["https://data.delijn.be/stops/107592", "https://data.delijn.be/stops/107596"], ["https://data.delijn.be/stops/201983", "https://data.delijn.be/stops/202340"], ["https://data.delijn.be/stops/304954", "https://data.delijn.be/stops/308034"], ["https://data.delijn.be/stops/405153", "https://data.delijn.be/stops/405205"], ["https://data.delijn.be/stops/509783", "https://data.delijn.be/stops/509785"], ["https://data.delijn.be/stops/402161", "https://data.delijn.be/stops/402388"], ["https://data.delijn.be/stops/505558", "https://data.delijn.be/stops/507941"], ["https://data.delijn.be/stops/202698", "https://data.delijn.be/stops/202699"], ["https://data.delijn.be/stops/206113", "https://data.delijn.be/stops/207156"], ["https://data.delijn.be/stops/403472", "https://data.delijn.be/stops/403473"], ["https://data.delijn.be/stops/404894", "https://data.delijn.be/stops/404906"], ["https://data.delijn.be/stops/303828", "https://data.delijn.be/stops/303835"], ["https://data.delijn.be/stops/407159", "https://data.delijn.be/stops/407176"], ["https://data.delijn.be/stops/207497", "https://data.delijn.be/stops/207504"], ["https://data.delijn.be/stops/301038", "https://data.delijn.be/stops/301066"], ["https://data.delijn.be/stops/200723", "https://data.delijn.be/stops/211076"], ["https://data.delijn.be/stops/102689", "https://data.delijn.be/stops/104366"], ["https://data.delijn.be/stops/204066", "https://data.delijn.be/stops/205227"], ["https://data.delijn.be/stops/504454", "https://data.delijn.be/stops/504828"], ["https://data.delijn.be/stops/405824", "https://data.delijn.be/stops/409747"], ["https://data.delijn.be/stops/203162", "https://data.delijn.be/stops/204092"], ["https://data.delijn.be/stops/300605", "https://data.delijn.be/stops/300614"], ["https://data.delijn.be/stops/304831", "https://data.delijn.be/stops/305505"], ["https://data.delijn.be/stops/106081", "https://data.delijn.be/stops/106138"], ["https://data.delijn.be/stops/202595", "https://data.delijn.be/stops/203594"], ["https://data.delijn.be/stops/204133", "https://data.delijn.be/stops/205133"], ["https://data.delijn.be/stops/209295", "https://data.delijn.be/stops/209380"], ["https://data.delijn.be/stops/108213", "https://data.delijn.be/stops/108214"], ["https://data.delijn.be/stops/405876", "https://data.delijn.be/stops/405878"], ["https://data.delijn.be/stops/207230", "https://data.delijn.be/stops/207233"], ["https://data.delijn.be/stops/106008", "https://data.delijn.be/stops/107909"], ["https://data.delijn.be/stops/200149", "https://data.delijn.be/stops/201514"], ["https://data.delijn.be/stops/406529", "https://data.delijn.be/stops/409253"], ["https://data.delijn.be/stops/409287", "https://data.delijn.be/stops/409311"], ["https://data.delijn.be/stops/206981", "https://data.delijn.be/stops/217020"], ["https://data.delijn.be/stops/300470", "https://data.delijn.be/stops/308081"], ["https://data.delijn.be/stops/101875", "https://data.delijn.be/stops/102305"], ["https://data.delijn.be/stops/402758", "https://data.delijn.be/stops/408124"], ["https://data.delijn.be/stops/200189", "https://data.delijn.be/stops/200401"], ["https://data.delijn.be/stops/505311", "https://data.delijn.be/stops/509638"], ["https://data.delijn.be/stops/400164", "https://data.delijn.be/stops/400165"], ["https://data.delijn.be/stops/304603", "https://data.delijn.be/stops/304604"], ["https://data.delijn.be/stops/200687", "https://data.delijn.be/stops/210111"], ["https://data.delijn.be/stops/101985", "https://data.delijn.be/stops/106055"], ["https://data.delijn.be/stops/408277", "https://data.delijn.be/stops/408343"], ["https://data.delijn.be/stops/200161", "https://data.delijn.be/stops/210132"], ["https://data.delijn.be/stops/206382", "https://data.delijn.be/stops/207921"], ["https://data.delijn.be/stops/503845", "https://data.delijn.be/stops/503849"], ["https://data.delijn.be/stops/200932", "https://data.delijn.be/stops/202255"], ["https://data.delijn.be/stops/205683", "https://data.delijn.be/stops/205684"], ["https://data.delijn.be/stops/202540", "https://data.delijn.be/stops/203521"], ["https://data.delijn.be/stops/400629", "https://data.delijn.be/stops/405992"], ["https://data.delijn.be/stops/406964", "https://data.delijn.be/stops/409449"], ["https://data.delijn.be/stops/504241", "https://data.delijn.be/stops/504654"], ["https://data.delijn.be/stops/203100", "https://data.delijn.be/stops/203258"], ["https://data.delijn.be/stops/102194", "https://data.delijn.be/stops/102196"], ["https://data.delijn.be/stops/303566", "https://data.delijn.be/stops/303568"], ["https://data.delijn.be/stops/200357", "https://data.delijn.be/stops/201386"], ["https://data.delijn.be/stops/501169", "https://data.delijn.be/stops/506169"], ["https://data.delijn.be/stops/305217", "https://data.delijn.be/stops/307091"], ["https://data.delijn.be/stops/109264", "https://data.delijn.be/stops/109269"], ["https://data.delijn.be/stops/405876", "https://data.delijn.be/stops/409752"], ["https://data.delijn.be/stops/404290", "https://data.delijn.be/stops/404292"], ["https://data.delijn.be/stops/202746", "https://data.delijn.be/stops/206421"], ["https://data.delijn.be/stops/409024", "https://data.delijn.be/stops/409030"], ["https://data.delijn.be/stops/305109", "https://data.delijn.be/stops/305117"], ["https://data.delijn.be/stops/209181", "https://data.delijn.be/stops/209182"], ["https://data.delijn.be/stops/207300", "https://data.delijn.be/stops/207301"], ["https://data.delijn.be/stops/105451", "https://data.delijn.be/stops/109937"], ["https://data.delijn.be/stops/102355", "https://data.delijn.be/stops/105457"], ["https://data.delijn.be/stops/201582", "https://data.delijn.be/stops/210607"], ["https://data.delijn.be/stops/507543", "https://data.delijn.be/stops/507611"], ["https://data.delijn.be/stops/304027", "https://data.delijn.be/stops/304912"], ["https://data.delijn.be/stops/201725", "https://data.delijn.be/stops/202980"], ["https://data.delijn.be/stops/200481", "https://data.delijn.be/stops/201469"], ["https://data.delijn.be/stops/505897", "https://data.delijn.be/stops/508846"], ["https://data.delijn.be/stops/307877", "https://data.delijn.be/stops/307878"], ["https://data.delijn.be/stops/404554", "https://data.delijn.be/stops/407354"], ["https://data.delijn.be/stops/308257", "https://data.delijn.be/stops/308759"], ["https://data.delijn.be/stops/403370", "https://data.delijn.be/stops/403513"], ["https://data.delijn.be/stops/206685", "https://data.delijn.be/stops/206900"], ["https://data.delijn.be/stops/207356", "https://data.delijn.be/stops/207731"], ["https://data.delijn.be/stops/400171", "https://data.delijn.be/stops/400941"], ["https://data.delijn.be/stops/106258", "https://data.delijn.be/stops/109909"], ["https://data.delijn.be/stops/405763", "https://data.delijn.be/stops/406053"], ["https://data.delijn.be/stops/409069", "https://data.delijn.be/stops/409071"], ["https://data.delijn.be/stops/101482", "https://data.delijn.be/stops/108211"], ["https://data.delijn.be/stops/209957", "https://data.delijn.be/stops/209958"], ["https://data.delijn.be/stops/206481", "https://data.delijn.be/stops/207482"], ["https://data.delijn.be/stops/404192", "https://data.delijn.be/stops/405914"], ["https://data.delijn.be/stops/302159", "https://data.delijn.be/stops/307804"], ["https://data.delijn.be/stops/402527", "https://data.delijn.be/stops/402536"], ["https://data.delijn.be/stops/405038", "https://data.delijn.be/stops/405065"], ["https://data.delijn.be/stops/303311", "https://data.delijn.be/stops/303328"], ["https://data.delijn.be/stops/207865", "https://data.delijn.be/stops/209419"], ["https://data.delijn.be/stops/300120", "https://data.delijn.be/stops/306808"], ["https://data.delijn.be/stops/201936", "https://data.delijn.be/stops/207592"], ["https://data.delijn.be/stops/410152", "https://data.delijn.be/stops/300933"], ["https://data.delijn.be/stops/101227", "https://data.delijn.be/stops/107807"], ["https://data.delijn.be/stops/300372", "https://data.delijn.be/stops/307721"], ["https://data.delijn.be/stops/301637", "https://data.delijn.be/stops/303935"], ["https://data.delijn.be/stops/109814", "https://data.delijn.be/stops/109817"], ["https://data.delijn.be/stops/206653", "https://data.delijn.be/stops/206714"], ["https://data.delijn.be/stops/206454", "https://data.delijn.be/stops/206455"], ["https://data.delijn.be/stops/106687", "https://data.delijn.be/stops/106690"], ["https://data.delijn.be/stops/107496", "https://data.delijn.be/stops/305793"], ["https://data.delijn.be/stops/408068", "https://data.delijn.be/stops/408082"], ["https://data.delijn.be/stops/502040", "https://data.delijn.be/stops/502591"], ["https://data.delijn.be/stops/405385", "https://data.delijn.be/stops/405390"], ["https://data.delijn.be/stops/504670", "https://data.delijn.be/stops/504719"], ["https://data.delijn.be/stops/208581", "https://data.delijn.be/stops/301424"], ["https://data.delijn.be/stops/300179", "https://data.delijn.be/stops/300183"], ["https://data.delijn.be/stops/201531", "https://data.delijn.be/stops/211091"], ["https://data.delijn.be/stops/402350", "https://data.delijn.be/stops/402464"], ["https://data.delijn.be/stops/300311", "https://data.delijn.be/stops/302163"], ["https://data.delijn.be/stops/405685", "https://data.delijn.be/stops/405687"], ["https://data.delijn.be/stops/202897", "https://data.delijn.be/stops/211126"], ["https://data.delijn.be/stops/502603", "https://data.delijn.be/stops/507302"], ["https://data.delijn.be/stops/400050", "https://data.delijn.be/stops/400169"], ["https://data.delijn.be/stops/408566", "https://data.delijn.be/stops/408567"], ["https://data.delijn.be/stops/305174", "https://data.delijn.be/stops/305356"], ["https://data.delijn.be/stops/108309", "https://data.delijn.be/stops/108312"], ["https://data.delijn.be/stops/302330", "https://data.delijn.be/stops/302331"], ["https://data.delijn.be/stops/408492", "https://data.delijn.be/stops/408992"], ["https://data.delijn.be/stops/109228", "https://data.delijn.be/stops/109229"], ["https://data.delijn.be/stops/108564", "https://data.delijn.be/stops/109091"], ["https://data.delijn.be/stops/204379", "https://data.delijn.be/stops/204380"], ["https://data.delijn.be/stops/505437", "https://data.delijn.be/stops/505726"], ["https://data.delijn.be/stops/304984", "https://data.delijn.be/stops/308015"], ["https://data.delijn.be/stops/501368", "https://data.delijn.be/stops/501369"], ["https://data.delijn.be/stops/107670", "https://data.delijn.be/stops/107675"], ["https://data.delijn.be/stops/303391", "https://data.delijn.be/stops/303392"], ["https://data.delijn.be/stops/502764", "https://data.delijn.be/stops/507025"], ["https://data.delijn.be/stops/504453", "https://data.delijn.be/stops/508681"], ["https://data.delijn.be/stops/401477", "https://data.delijn.be/stops/408469"], ["https://data.delijn.be/stops/407386", "https://data.delijn.be/stops/407598"], ["https://data.delijn.be/stops/402071", "https://data.delijn.be/stops/402074"], ["https://data.delijn.be/stops/402310", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/409252", "https://data.delijn.be/stops/409316"], ["https://data.delijn.be/stops/102016", "https://data.delijn.be/stops/104106"], ["https://data.delijn.be/stops/201580", "https://data.delijn.be/stops/210607"], ["https://data.delijn.be/stops/502491", "https://data.delijn.be/stops/505591"], ["https://data.delijn.be/stops/102060", "https://data.delijn.be/stops/104285"], ["https://data.delijn.be/stops/106624", "https://data.delijn.be/stops/106626"], ["https://data.delijn.be/stops/503217", "https://data.delijn.be/stops/504873"], ["https://data.delijn.be/stops/203971", "https://data.delijn.be/stops/204093"], ["https://data.delijn.be/stops/101273", "https://data.delijn.be/stops/204488"], ["https://data.delijn.be/stops/402348", "https://data.delijn.be/stops/402358"], ["https://data.delijn.be/stops/102624", "https://data.delijn.be/stops/108217"], ["https://data.delijn.be/stops/200449", "https://data.delijn.be/stops/202352"], ["https://data.delijn.be/stops/206932", "https://data.delijn.be/stops/207998"], ["https://data.delijn.be/stops/503013", "https://data.delijn.be/stops/508012"], ["https://data.delijn.be/stops/304241", "https://data.delijn.be/stops/304242"], ["https://data.delijn.be/stops/209820", "https://data.delijn.be/stops/218013"], ["https://data.delijn.be/stops/401793", "https://data.delijn.be/stops/402004"], ["https://data.delijn.be/stops/206986", "https://data.delijn.be/stops/206987"], ["https://data.delijn.be/stops/501395", "https://data.delijn.be/stops/501396"], ["https://data.delijn.be/stops/503002", "https://data.delijn.be/stops/508004"], ["https://data.delijn.be/stops/301155", "https://data.delijn.be/stops/307695"], ["https://data.delijn.be/stops/202600", "https://data.delijn.be/stops/202601"], ["https://data.delijn.be/stops/407705", "https://data.delijn.be/stops/409623"], ["https://data.delijn.be/stops/504748", "https://data.delijn.be/stops/509027"], ["https://data.delijn.be/stops/304384", "https://data.delijn.be/stops/304401"], ["https://data.delijn.be/stops/504716", "https://data.delijn.be/stops/509716"], ["https://data.delijn.be/stops/300963", "https://data.delijn.be/stops/300973"], ["https://data.delijn.be/stops/101747", "https://data.delijn.be/stops/106369"], ["https://data.delijn.be/stops/408816", "https://data.delijn.be/stops/408817"], ["https://data.delijn.be/stops/202459", "https://data.delijn.be/stops/203750"], ["https://data.delijn.be/stops/503628", "https://data.delijn.be/stops/508622"], ["https://data.delijn.be/stops/301566", "https://data.delijn.be/stops/301570"], ["https://data.delijn.be/stops/109204", "https://data.delijn.be/stops/109209"], ["https://data.delijn.be/stops/401177", "https://data.delijn.be/stops/406578"], ["https://data.delijn.be/stops/103767", "https://data.delijn.be/stops/107306"], ["https://data.delijn.be/stops/208496", "https://data.delijn.be/stops/209496"], ["https://data.delijn.be/stops/406608", "https://data.delijn.be/stops/406638"], ["https://data.delijn.be/stops/303540", "https://data.delijn.be/stops/303564"], ["https://data.delijn.be/stops/400354", "https://data.delijn.be/stops/406769"], ["https://data.delijn.be/stops/103721", "https://data.delijn.be/stops/108537"], ["https://data.delijn.be/stops/108502", "https://data.delijn.be/stops/108804"], ["https://data.delijn.be/stops/401401", "https://data.delijn.be/stops/410154"], ["https://data.delijn.be/stops/507099", "https://data.delijn.be/stops/507297"], ["https://data.delijn.be/stops/200189", "https://data.delijn.be/stops/200198"], ["https://data.delijn.be/stops/206942", "https://data.delijn.be/stops/207672"], ["https://data.delijn.be/stops/505173", "https://data.delijn.be/stops/505812"], ["https://data.delijn.be/stops/504023", "https://data.delijn.be/stops/504131"], ["https://data.delijn.be/stops/505053", "https://data.delijn.be/stops/507189"], ["https://data.delijn.be/stops/506132", "https://data.delijn.be/stops/506139"], ["https://data.delijn.be/stops/201593", "https://data.delijn.be/stops/201594"], ["https://data.delijn.be/stops/401830", "https://data.delijn.be/stops/409406"], ["https://data.delijn.be/stops/107933", "https://data.delijn.be/stops/204563"], ["https://data.delijn.be/stops/206605", "https://data.delijn.be/stops/206683"], ["https://data.delijn.be/stops/102525", "https://data.delijn.be/stops/405710"], ["https://data.delijn.be/stops/204145", "https://data.delijn.be/stops/207891"], ["https://data.delijn.be/stops/105111", "https://data.delijn.be/stops/105151"], ["https://data.delijn.be/stops/407310", "https://data.delijn.be/stops/407311"], ["https://data.delijn.be/stops/306394", "https://data.delijn.be/stops/306395"], ["https://data.delijn.be/stops/102940", "https://data.delijn.be/stops/104980"], ["https://data.delijn.be/stops/400774", "https://data.delijn.be/stops/400775"], ["https://data.delijn.be/stops/300851", "https://data.delijn.be/stops/306399"], ["https://data.delijn.be/stops/107560", "https://data.delijn.be/stops/109080"], ["https://data.delijn.be/stops/408958", "https://data.delijn.be/stops/409814"], ["https://data.delijn.be/stops/501403", "https://data.delijn.be/stops/506227"], ["https://data.delijn.be/stops/308267", "https://data.delijn.be/stops/308292"], ["https://data.delijn.be/stops/301009", "https://data.delijn.be/stops/301013"], ["https://data.delijn.be/stops/509024", "https://data.delijn.be/stops/509027"], ["https://data.delijn.be/stops/204499", "https://data.delijn.be/stops/205509"], ["https://data.delijn.be/stops/408142", "https://data.delijn.be/stops/408143"], ["https://data.delijn.be/stops/502320", "https://data.delijn.be/stops/502456"], ["https://data.delijn.be/stops/101607", "https://data.delijn.be/stops/105758"], ["https://data.delijn.be/stops/101048", "https://data.delijn.be/stops/101049"], ["https://data.delijn.be/stops/406230", "https://data.delijn.be/stops/406237"], ["https://data.delijn.be/stops/202294", "https://data.delijn.be/stops/203292"], ["https://data.delijn.be/stops/401798", "https://data.delijn.be/stops/406824"], ["https://data.delijn.be/stops/102007", "https://data.delijn.be/stops/104670"], ["https://data.delijn.be/stops/504600", "https://data.delijn.be/stops/509600"], ["https://data.delijn.be/stops/201109", "https://data.delijn.be/stops/202645"], ["https://data.delijn.be/stops/501223", "https://data.delijn.be/stops/506217"], ["https://data.delijn.be/stops/504656", "https://data.delijn.be/stops/505175"], ["https://data.delijn.be/stops/204518", "https://data.delijn.be/stops/205518"], ["https://data.delijn.be/stops/302005", "https://data.delijn.be/stops/303642"], ["https://data.delijn.be/stops/300481", "https://data.delijn.be/stops/302867"], ["https://data.delijn.be/stops/205992", "https://data.delijn.be/stops/208353"], ["https://data.delijn.be/stops/501282", "https://data.delijn.be/stops/501302"], ["https://data.delijn.be/stops/406182", "https://data.delijn.be/stops/410246"], ["https://data.delijn.be/stops/404870", "https://data.delijn.be/stops/404880"], ["https://data.delijn.be/stops/105987", "https://data.delijn.be/stops/107957"], ["https://data.delijn.be/stops/502511", "https://data.delijn.be/stops/505662"], ["https://data.delijn.be/stops/401090", "https://data.delijn.be/stops/401098"], ["https://data.delijn.be/stops/204293", "https://data.delijn.be/stops/205537"], ["https://data.delijn.be/stops/504233", "https://data.delijn.be/stops/509239"], ["https://data.delijn.be/stops/301443", "https://data.delijn.be/stops/303181"], ["https://data.delijn.be/stops/407740", "https://data.delijn.be/stops/407766"], ["https://data.delijn.be/stops/204169", "https://data.delijn.be/stops/205579"], ["https://data.delijn.be/stops/503653", "https://data.delijn.be/stops/508886"], ["https://data.delijn.be/stops/504526", "https://data.delijn.be/stops/509526"], ["https://data.delijn.be/stops/407272", "https://data.delijn.be/stops/407302"], ["https://data.delijn.be/stops/107943", "https://data.delijn.be/stops/107944"], ["https://data.delijn.be/stops/302896", "https://data.delijn.be/stops/303106"], ["https://data.delijn.be/stops/302335", "https://data.delijn.be/stops/302419"], ["https://data.delijn.be/stops/304185", "https://data.delijn.be/stops/307953"], ["https://data.delijn.be/stops/104553", "https://data.delijn.be/stops/104558"], ["https://data.delijn.be/stops/504877", "https://data.delijn.be/stops/509701"], ["https://data.delijn.be/stops/500558", "https://data.delijn.be/stops/501038"], ["https://data.delijn.be/stops/507728", "https://data.delijn.be/stops/507729"], ["https://data.delijn.be/stops/206012", "https://data.delijn.be/stops/206013"], ["https://data.delijn.be/stops/204663", "https://data.delijn.be/stops/205688"], ["https://data.delijn.be/stops/401517", "https://data.delijn.be/stops/401596"], ["https://data.delijn.be/stops/204021", "https://data.delijn.be/stops/205022"], ["https://data.delijn.be/stops/107049", "https://data.delijn.be/stops/107051"], ["https://data.delijn.be/stops/503010", "https://data.delijn.be/stops/508015"], ["https://data.delijn.be/stops/306097", "https://data.delijn.be/stops/308718"], ["https://data.delijn.be/stops/400150", "https://data.delijn.be/stops/400151"], ["https://data.delijn.be/stops/407591", "https://data.delijn.be/stops/408550"], ["https://data.delijn.be/stops/503600", "https://data.delijn.be/stops/508149"], ["https://data.delijn.be/stops/407751", "https://data.delijn.be/stops/409744"], ["https://data.delijn.be/stops/400360", "https://data.delijn.be/stops/406769"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/504455"], ["https://data.delijn.be/stops/503603", "https://data.delijn.be/stops/503605"], ["https://data.delijn.be/stops/107313", "https://data.delijn.be/stops/107317"], ["https://data.delijn.be/stops/502231", "https://data.delijn.be/stops/507231"], ["https://data.delijn.be/stops/105061", "https://data.delijn.be/stops/105804"], ["https://data.delijn.be/stops/400701", "https://data.delijn.be/stops/400783"], ["https://data.delijn.be/stops/300734", "https://data.delijn.be/stops/302530"], ["https://data.delijn.be/stops/205669", "https://data.delijn.be/stops/214009"], ["https://data.delijn.be/stops/301937", "https://data.delijn.be/stops/307465"], ["https://data.delijn.be/stops/108158", "https://data.delijn.be/stops/108162"], ["https://data.delijn.be/stops/402984", "https://data.delijn.be/stops/405586"], ["https://data.delijn.be/stops/204584", "https://data.delijn.be/stops/204592"], ["https://data.delijn.be/stops/102658", "https://data.delijn.be/stops/105596"], ["https://data.delijn.be/stops/303030", "https://data.delijn.be/stops/307143"], ["https://data.delijn.be/stops/506412", "https://data.delijn.be/stops/506618"], ["https://data.delijn.be/stops/404005", "https://data.delijn.be/stops/410257"], ["https://data.delijn.be/stops/408677", "https://data.delijn.be/stops/408788"], ["https://data.delijn.be/stops/202002", "https://data.delijn.be/stops/203002"], ["https://data.delijn.be/stops/204740", "https://data.delijn.be/stops/204744"], ["https://data.delijn.be/stops/509544", "https://data.delijn.be/stops/509551"], ["https://data.delijn.be/stops/103118", "https://data.delijn.be/stops/104100"], ["https://data.delijn.be/stops/107834", "https://data.delijn.be/stops/107838"], ["https://data.delijn.be/stops/200102", "https://data.delijn.be/stops/202005"], ["https://data.delijn.be/stops/105792", "https://data.delijn.be/stops/105942"], ["https://data.delijn.be/stops/407247", "https://data.delijn.be/stops/407450"], ["https://data.delijn.be/stops/107221", "https://data.delijn.be/stops/107222"], ["https://data.delijn.be/stops/503120", "https://data.delijn.be/stops/508119"], ["https://data.delijn.be/stops/105696", "https://data.delijn.be/stops/106067"], ["https://data.delijn.be/stops/102249", "https://data.delijn.be/stops/105934"], ["https://data.delijn.be/stops/107584", "https://data.delijn.be/stops/107587"], ["https://data.delijn.be/stops/406350", "https://data.delijn.be/stops/408864"], ["https://data.delijn.be/stops/207622", "https://data.delijn.be/stops/207623"], ["https://data.delijn.be/stops/300692", "https://data.delijn.be/stops/306366"], ["https://data.delijn.be/stops/400834", "https://data.delijn.be/stops/400867"], ["https://data.delijn.be/stops/400310", "https://data.delijn.be/stops/400311"], ["https://data.delijn.be/stops/304528", "https://data.delijn.be/stops/304678"], ["https://data.delijn.be/stops/409623", "https://data.delijn.be/stops/409632"], ["https://data.delijn.be/stops/406101", "https://data.delijn.be/stops/406115"], ["https://data.delijn.be/stops/208582", "https://data.delijn.be/stops/209582"], ["https://data.delijn.be/stops/503584", "https://data.delijn.be/stops/509453"], ["https://data.delijn.be/stops/504977", "https://data.delijn.be/stops/505915"], ["https://data.delijn.be/stops/304662", "https://data.delijn.be/stops/304664"], ["https://data.delijn.be/stops/101871", "https://data.delijn.be/stops/105842"], ["https://data.delijn.be/stops/305116", "https://data.delijn.be/stops/305129"], ["https://data.delijn.be/stops/400875", "https://data.delijn.be/stops/404960"], ["https://data.delijn.be/stops/308455", "https://data.delijn.be/stops/308463"], ["https://data.delijn.be/stops/501442", "https://data.delijn.be/stops/590411"], ["https://data.delijn.be/stops/201867", "https://data.delijn.be/stops/210039"], ["https://data.delijn.be/stops/508375", "https://data.delijn.be/stops/508649"], ["https://data.delijn.be/stops/206967", "https://data.delijn.be/stops/207829"], ["https://data.delijn.be/stops/101916", "https://data.delijn.be/stops/101917"], ["https://data.delijn.be/stops/501600", "https://data.delijn.be/stops/509499"], ["https://data.delijn.be/stops/505424", "https://data.delijn.be/stops/509083"], ["https://data.delijn.be/stops/300739", "https://data.delijn.be/stops/303223"], ["https://data.delijn.be/stops/505692", "https://data.delijn.be/stops/505772"], ["https://data.delijn.be/stops/300138", "https://data.delijn.be/stops/306822"], ["https://data.delijn.be/stops/208358", "https://data.delijn.be/stops/209356"], ["https://data.delijn.be/stops/503068", "https://data.delijn.be/stops/508073"], ["https://data.delijn.be/stops/106943", "https://data.delijn.be/stops/108699"], ["https://data.delijn.be/stops/502499", "https://data.delijn.be/stops/505332"], ["https://data.delijn.be/stops/202877", "https://data.delijn.be/stops/209535"], ["https://data.delijn.be/stops/504105", "https://data.delijn.be/stops/505299"], ["https://data.delijn.be/stops/302636", "https://data.delijn.be/stops/302637"], ["https://data.delijn.be/stops/501111", "https://data.delijn.be/stops/506111"], ["https://data.delijn.be/stops/404970", "https://data.delijn.be/stops/404972"], ["https://data.delijn.be/stops/103487", "https://data.delijn.be/stops/109157"], ["https://data.delijn.be/stops/107267", "https://data.delijn.be/stops/109734"], ["https://data.delijn.be/stops/407054", "https://data.delijn.be/stops/407057"], ["https://data.delijn.be/stops/106884", "https://data.delijn.be/stops/107285"], ["https://data.delijn.be/stops/202530", "https://data.delijn.be/stops/203531"], ["https://data.delijn.be/stops/404089", "https://data.delijn.be/stops/410256"], ["https://data.delijn.be/stops/403212", "https://data.delijn.be/stops/403477"], ["https://data.delijn.be/stops/101777", "https://data.delijn.be/stops/107586"], ["https://data.delijn.be/stops/207560", "https://data.delijn.be/stops/208953"], ["https://data.delijn.be/stops/107653", "https://data.delijn.be/stops/406770"], ["https://data.delijn.be/stops/202158", "https://data.delijn.be/stops/203159"], ["https://data.delijn.be/stops/202472", "https://data.delijn.be/stops/203472"], ["https://data.delijn.be/stops/109976", "https://data.delijn.be/stops/109977"], ["https://data.delijn.be/stops/202145", "https://data.delijn.be/stops/202188"], ["https://data.delijn.be/stops/408865", "https://data.delijn.be/stops/408883"], ["https://data.delijn.be/stops/302999", "https://data.delijn.be/stops/306300"], ["https://data.delijn.be/stops/407448", "https://data.delijn.be/stops/407466"], ["https://data.delijn.be/stops/210014", "https://data.delijn.be/stops/211014"], ["https://data.delijn.be/stops/208379", "https://data.delijn.be/stops/208403"], ["https://data.delijn.be/stops/404808", "https://data.delijn.be/stops/404833"], ["https://data.delijn.be/stops/404391", "https://data.delijn.be/stops/408669"], ["https://data.delijn.be/stops/501443", "https://data.delijn.be/stops/506440"], ["https://data.delijn.be/stops/502590", "https://data.delijn.be/stops/507400"], ["https://data.delijn.be/stops/504162", "https://data.delijn.be/stops/509154"], ["https://data.delijn.be/stops/504634", "https://data.delijn.be/stops/509632"], ["https://data.delijn.be/stops/401763", "https://data.delijn.be/stops/401764"], ["https://data.delijn.be/stops/300541", "https://data.delijn.be/stops/308587"], ["https://data.delijn.be/stops/206742", "https://data.delijn.be/stops/206984"], ["https://data.delijn.be/stops/403269", "https://data.delijn.be/stops/403270"], ["https://data.delijn.be/stops/104039", "https://data.delijn.be/stops/108514"], ["https://data.delijn.be/stops/504971", "https://data.delijn.be/stops/508765"], ["https://data.delijn.be/stops/307509", "https://data.delijn.be/stops/307510"], ["https://data.delijn.be/stops/504056", "https://data.delijn.be/stops/509191"], ["https://data.delijn.be/stops/104345", "https://data.delijn.be/stops/105995"], ["https://data.delijn.be/stops/302000", "https://data.delijn.be/stops/304153"], ["https://data.delijn.be/stops/503613", "https://data.delijn.be/stops/508613"], ["https://data.delijn.be/stops/504068", "https://data.delijn.be/stops/505855"], ["https://data.delijn.be/stops/502645", "https://data.delijn.be/stops/502721"], ["https://data.delijn.be/stops/205165", "https://data.delijn.be/stops/205590"], ["https://data.delijn.be/stops/106085", "https://data.delijn.be/stops/106090"], ["https://data.delijn.be/stops/300412", "https://data.delijn.be/stops/307262"], ["https://data.delijn.be/stops/202231", "https://data.delijn.be/stops/203231"], ["https://data.delijn.be/stops/201929", "https://data.delijn.be/stops/202343"], ["https://data.delijn.be/stops/101721", "https://data.delijn.be/stops/108972"], ["https://data.delijn.be/stops/403268", "https://data.delijn.be/stops/404970"], ["https://data.delijn.be/stops/302141", "https://data.delijn.be/stops/304134"], ["https://data.delijn.be/stops/303815", "https://data.delijn.be/stops/303821"], ["https://data.delijn.be/stops/502545", "https://data.delijn.be/stops/505090"], ["https://data.delijn.be/stops/504021", "https://data.delijn.be/stops/508474"], ["https://data.delijn.be/stops/206620", "https://data.delijn.be/stops/206621"], ["https://data.delijn.be/stops/303002", "https://data.delijn.be/stops/306281"], ["https://data.delijn.be/stops/403502", "https://data.delijn.be/stops/410293"], ["https://data.delijn.be/stops/200840", "https://data.delijn.be/stops/202797"], ["https://data.delijn.be/stops/504269", "https://data.delijn.be/stops/505940"], ["https://data.delijn.be/stops/406370", "https://data.delijn.be/stops/410394"], ["https://data.delijn.be/stops/401897", "https://data.delijn.be/stops/401930"], ["https://data.delijn.be/stops/302025", "https://data.delijn.be/stops/302047"], ["https://data.delijn.be/stops/302182", "https://data.delijn.be/stops/302183"], ["https://data.delijn.be/stops/304928", "https://data.delijn.be/stops/306108"], ["https://data.delijn.be/stops/308176", "https://data.delijn.be/stops/308177"], ["https://data.delijn.be/stops/206418", "https://data.delijn.be/stops/207418"], ["https://data.delijn.be/stops/103255", "https://data.delijn.be/stops/103260"], ["https://data.delijn.be/stops/305686", "https://data.delijn.be/stops/305688"], ["https://data.delijn.be/stops/505259", "https://data.delijn.be/stops/508030"], ["https://data.delijn.be/stops/304016", "https://data.delijn.be/stops/304017"], ["https://data.delijn.be/stops/505648", "https://data.delijn.be/stops/507468"], ["https://data.delijn.be/stops/107897", "https://data.delijn.be/stops/107902"], ["https://data.delijn.be/stops/201231", "https://data.delijn.be/stops/201468"], ["https://data.delijn.be/stops/206222", "https://data.delijn.be/stops/207222"], ["https://data.delijn.be/stops/304456", "https://data.delijn.be/stops/304457"], ["https://data.delijn.be/stops/301107", "https://data.delijn.be/stops/301115"], ["https://data.delijn.be/stops/101147", "https://data.delijn.be/stops/106859"], ["https://data.delijn.be/stops/201902", "https://data.delijn.be/stops/202474"], ["https://data.delijn.be/stops/403042", "https://data.delijn.be/stops/403043"], ["https://data.delijn.be/stops/301688", "https://data.delijn.be/stops/301690"], ["https://data.delijn.be/stops/206104", "https://data.delijn.be/stops/306721"], ["https://data.delijn.be/stops/403757", "https://data.delijn.be/stops/403759"], ["https://data.delijn.be/stops/402583", "https://data.delijn.be/stops/402655"], ["https://data.delijn.be/stops/300645", "https://data.delijn.be/stops/300646"], ["https://data.delijn.be/stops/502214", "https://data.delijn.be/stops/507206"], ["https://data.delijn.be/stops/105131", "https://data.delijn.be/stops/105133"], ["https://data.delijn.be/stops/103117", "https://data.delijn.be/stops/107371"], ["https://data.delijn.be/stops/503525", "https://data.delijn.be/stops/503527"], ["https://data.delijn.be/stops/107178", "https://data.delijn.be/stops/107179"], ["https://data.delijn.be/stops/206132", "https://data.delijn.be/stops/207135"], ["https://data.delijn.be/stops/502554", "https://data.delijn.be/stops/505018"], ["https://data.delijn.be/stops/401074", "https://data.delijn.be/stops/401075"], ["https://data.delijn.be/stops/105684", "https://data.delijn.be/stops/105688"], ["https://data.delijn.be/stops/103492", "https://data.delijn.be/stops/104352"], ["https://data.delijn.be/stops/206712", "https://data.delijn.be/stops/206735"], ["https://data.delijn.be/stops/209614", "https://data.delijn.be/stops/209615"], ["https://data.delijn.be/stops/106504", "https://data.delijn.be/stops/107117"], ["https://data.delijn.be/stops/404746", "https://data.delijn.be/stops/404747"], ["https://data.delijn.be/stops/102779", "https://data.delijn.be/stops/102952"], ["https://data.delijn.be/stops/404704", "https://data.delijn.be/stops/404730"], ["https://data.delijn.be/stops/406252", "https://data.delijn.be/stops/406258"], ["https://data.delijn.be/stops/503875", "https://data.delijn.be/stops/509754"], ["https://data.delijn.be/stops/406088", "https://data.delijn.be/stops/406090"], ["https://data.delijn.be/stops/302323", "https://data.delijn.be/stops/302333"], ["https://data.delijn.be/stops/204088", "https://data.delijn.be/stops/205088"], ["https://data.delijn.be/stops/504498", "https://data.delijn.be/stops/504505"], ["https://data.delijn.be/stops/407739", "https://data.delijn.be/stops/407741"], ["https://data.delijn.be/stops/302269", "https://data.delijn.be/stops/304315"], ["https://data.delijn.be/stops/206254", "https://data.delijn.be/stops/207993"], ["https://data.delijn.be/stops/301729", "https://data.delijn.be/stops/301781"], ["https://data.delijn.be/stops/301984", "https://data.delijn.be/stops/303092"], ["https://data.delijn.be/stops/509001", "https://data.delijn.be/stops/509002"], ["https://data.delijn.be/stops/403976", "https://data.delijn.be/stops/403977"], ["https://data.delijn.be/stops/201951", "https://data.delijn.be/stops/202466"], ["https://data.delijn.be/stops/206749", "https://data.delijn.be/stops/206899"], ["https://data.delijn.be/stops/202165", "https://data.delijn.be/stops/205073"], ["https://data.delijn.be/stops/406552", "https://data.delijn.be/stops/406687"], ["https://data.delijn.be/stops/501592", "https://data.delijn.be/stops/504509"], ["https://data.delijn.be/stops/504940", "https://data.delijn.be/stops/508909"], ["https://data.delijn.be/stops/300275", "https://data.delijn.be/stops/306286"], ["https://data.delijn.be/stops/303107", "https://data.delijn.be/stops/303113"], ["https://data.delijn.be/stops/301316", "https://data.delijn.be/stops/305918"], ["https://data.delijn.be/stops/403295", "https://data.delijn.be/stops/403345"], ["https://data.delijn.be/stops/200905", "https://data.delijn.be/stops/203269"], ["https://data.delijn.be/stops/104137", "https://data.delijn.be/stops/108416"], ["https://data.delijn.be/stops/207461", "https://data.delijn.be/stops/207491"], ["https://data.delijn.be/stops/302900", "https://data.delijn.be/stops/302911"], ["https://data.delijn.be/stops/501484", "https://data.delijn.be/stops/501555"], ["https://data.delijn.be/stops/300429", "https://data.delijn.be/stops/301262"], ["https://data.delijn.be/stops/402835", "https://data.delijn.be/stops/404625"], ["https://data.delijn.be/stops/207013", "https://data.delijn.be/stops/207385"], ["https://data.delijn.be/stops/409143", "https://data.delijn.be/stops/409156"], ["https://data.delijn.be/stops/105163", "https://data.delijn.be/stops/107427"], ["https://data.delijn.be/stops/103639", "https://data.delijn.be/stops/107164"], ["https://data.delijn.be/stops/403564", "https://data.delijn.be/stops/410120"], ["https://data.delijn.be/stops/504460", "https://data.delijn.be/stops/509460"], ["https://data.delijn.be/stops/405861", "https://data.delijn.be/stops/409739"], ["https://data.delijn.be/stops/505123", "https://data.delijn.be/stops/508664"], ["https://data.delijn.be/stops/105511", "https://data.delijn.be/stops/105513"], ["https://data.delijn.be/stops/206638", "https://data.delijn.be/stops/207638"], ["https://data.delijn.be/stops/202457", "https://data.delijn.be/stops/211018"], ["https://data.delijn.be/stops/508161", "https://data.delijn.be/stops/508606"], ["https://data.delijn.be/stops/504772", "https://data.delijn.be/stops/509237"], ["https://data.delijn.be/stops/303758", "https://data.delijn.be/stops/303782"], ["https://data.delijn.be/stops/106703", "https://data.delijn.be/stops/106704"], ["https://data.delijn.be/stops/305743", "https://data.delijn.be/stops/305750"], ["https://data.delijn.be/stops/305241", "https://data.delijn.be/stops/305255"], ["https://data.delijn.be/stops/208635", "https://data.delijn.be/stops/209004"], ["https://data.delijn.be/stops/105798", "https://data.delijn.be/stops/105812"], ["https://data.delijn.be/stops/206696", "https://data.delijn.be/stops/207696"], ["https://data.delijn.be/stops/401830", "https://data.delijn.be/stops/406062"], ["https://data.delijn.be/stops/103260", "https://data.delijn.be/stops/107040"], ["https://data.delijn.be/stops/108959", "https://data.delijn.be/stops/108962"], ["https://data.delijn.be/stops/502926", "https://data.delijn.be/stops/505671"], ["https://data.delijn.be/stops/300993", "https://data.delijn.be/stops/300994"], ["https://data.delijn.be/stops/204136", "https://data.delijn.be/stops/209912"], ["https://data.delijn.be/stops/109667", "https://data.delijn.be/stops/401936"], ["https://data.delijn.be/stops/408838", "https://data.delijn.be/stops/408841"], ["https://data.delijn.be/stops/406089", "https://data.delijn.be/stops/407114"], ["https://data.delijn.be/stops/406502", "https://data.delijn.be/stops/406508"], ["https://data.delijn.be/stops/403163", "https://data.delijn.be/stops/403179"], ["https://data.delijn.be/stops/207627", "https://data.delijn.be/stops/209573"], ["https://data.delijn.be/stops/301387", "https://data.delijn.be/stops/304667"], ["https://data.delijn.be/stops/104687", "https://data.delijn.be/stops/107363"], ["https://data.delijn.be/stops/505842", "https://data.delijn.be/stops/509234"], ["https://data.delijn.be/stops/109141", "https://data.delijn.be/stops/109143"], ["https://data.delijn.be/stops/403356", "https://data.delijn.be/stops/403867"], ["https://data.delijn.be/stops/301098", "https://data.delijn.be/stops/307200"], ["https://data.delijn.be/stops/206269", "https://data.delijn.be/stops/207880"], ["https://data.delijn.be/stops/400776", "https://data.delijn.be/stops/406676"], ["https://data.delijn.be/stops/202815", "https://data.delijn.be/stops/209746"], ["https://data.delijn.be/stops/209114", "https://data.delijn.be/stops/219007"], ["https://data.delijn.be/stops/504601", "https://data.delijn.be/stops/509598"], ["https://data.delijn.be/stops/407185", "https://data.delijn.be/stops/407186"], ["https://data.delijn.be/stops/503444", "https://data.delijn.be/stops/508534"], ["https://data.delijn.be/stops/505646", "https://data.delijn.be/stops/507759"], ["https://data.delijn.be/stops/302831", "https://data.delijn.be/stops/308825"], ["https://data.delijn.be/stops/508276", "https://data.delijn.be/stops/508281"], ["https://data.delijn.be/stops/502402", "https://data.delijn.be/stops/507387"], ["https://data.delijn.be/stops/307714", "https://data.delijn.be/stops/307717"], ["https://data.delijn.be/stops/502378", "https://data.delijn.be/stops/502631"], ["https://data.delijn.be/stops/108560", "https://data.delijn.be/stops/108565"], ["https://data.delijn.be/stops/503846", "https://data.delijn.be/stops/508849"], ["https://data.delijn.be/stops/101355", "https://data.delijn.be/stops/104450"], ["https://data.delijn.be/stops/404689", "https://data.delijn.be/stops/405820"], ["https://data.delijn.be/stops/200711", "https://data.delijn.be/stops/200713"], ["https://data.delijn.be/stops/303369", "https://data.delijn.be/stops/303371"], ["https://data.delijn.be/stops/102824", "https://data.delijn.be/stops/106233"], ["https://data.delijn.be/stops/300939", "https://data.delijn.be/stops/300940"], ["https://data.delijn.be/stops/503308", "https://data.delijn.be/stops/508308"], ["https://data.delijn.be/stops/502072", "https://data.delijn.be/stops/507066"], ["https://data.delijn.be/stops/505594", "https://data.delijn.be/stops/507510"], ["https://data.delijn.be/stops/106927", "https://data.delijn.be/stops/108697"], ["https://data.delijn.be/stops/208568", "https://data.delijn.be/stops/209090"], ["https://data.delijn.be/stops/201735", "https://data.delijn.be/stops/202751"], ["https://data.delijn.be/stops/109549", "https://data.delijn.be/stops/109556"], ["https://data.delijn.be/stops/501534", "https://data.delijn.be/stops/506459"], ["https://data.delijn.be/stops/206440", "https://data.delijn.be/stops/206441"], ["https://data.delijn.be/stops/204976", "https://data.delijn.be/stops/205976"], ["https://data.delijn.be/stops/208000", "https://data.delijn.be/stops/208020"], ["https://data.delijn.be/stops/503435", "https://data.delijn.be/stops/509872"], ["https://data.delijn.be/stops/306382", "https://data.delijn.be/stops/306383"], ["https://data.delijn.be/stops/408023", "https://data.delijn.be/stops/408431"], ["https://data.delijn.be/stops/505914", "https://data.delijn.be/stops/508643"], ["https://data.delijn.be/stops/210025", "https://data.delijn.be/stops/211035"], ["https://data.delijn.be/stops/501327", "https://data.delijn.be/stops/506327"], ["https://data.delijn.be/stops/502018", "https://data.delijn.be/stops/505933"], ["https://data.delijn.be/stops/208186", "https://data.delijn.be/stops/209357"], ["https://data.delijn.be/stops/304342", "https://data.delijn.be/stops/304351"], ["https://data.delijn.be/stops/306611", "https://data.delijn.be/stops/306613"], ["https://data.delijn.be/stops/403414", "https://data.delijn.be/stops/403871"], ["https://data.delijn.be/stops/507054", "https://data.delijn.be/stops/507057"], ["https://data.delijn.be/stops/101380", "https://data.delijn.be/stops/104080"], ["https://data.delijn.be/stops/303192", "https://data.delijn.be/stops/303209"], ["https://data.delijn.be/stops/503555", "https://data.delijn.be/stops/503577"], ["https://data.delijn.be/stops/200769", "https://data.delijn.be/stops/209250"], ["https://data.delijn.be/stops/202127", "https://data.delijn.be/stops/203604"], ["https://data.delijn.be/stops/101002", "https://data.delijn.be/stops/101003"], ["https://data.delijn.be/stops/300387", "https://data.delijn.be/stops/307490"], ["https://data.delijn.be/stops/401484", "https://data.delijn.be/stops/401485"], ["https://data.delijn.be/stops/304814", "https://data.delijn.be/stops/307881"], ["https://data.delijn.be/stops/407383", "https://data.delijn.be/stops/407566"], ["https://data.delijn.be/stops/504211", "https://data.delijn.be/stops/509211"], ["https://data.delijn.be/stops/304251", "https://data.delijn.be/stops/304288"], ["https://data.delijn.be/stops/400571", "https://data.delijn.be/stops/404051"], ["https://data.delijn.be/stops/503563", "https://data.delijn.be/stops/503612"], ["https://data.delijn.be/stops/408847", "https://data.delijn.be/stops/408848"], ["https://data.delijn.be/stops/303004", "https://data.delijn.be/stops/303005"], ["https://data.delijn.be/stops/405077", "https://data.delijn.be/stops/405087"], ["https://data.delijn.be/stops/104756", "https://data.delijn.be/stops/108893"], ["https://data.delijn.be/stops/200820", "https://data.delijn.be/stops/200890"], ["https://data.delijn.be/stops/300829", "https://data.delijn.be/stops/300880"], ["https://data.delijn.be/stops/201932", "https://data.delijn.be/stops/209852"], ["https://data.delijn.be/stops/203125", "https://data.delijn.be/stops/210050"], ["https://data.delijn.be/stops/204675", "https://data.delijn.be/stops/205312"], ["https://data.delijn.be/stops/307638", "https://data.delijn.be/stops/307685"], ["https://data.delijn.be/stops/207933", "https://data.delijn.be/stops/211003"], ["https://data.delijn.be/stops/505200", "https://data.delijn.be/stops/505425"], ["https://data.delijn.be/stops/203475", "https://data.delijn.be/stops/203476"], ["https://data.delijn.be/stops/502110", "https://data.delijn.be/stops/507110"], ["https://data.delijn.be/stops/408561", "https://data.delijn.be/stops/408792"], ["https://data.delijn.be/stops/504574", "https://data.delijn.be/stops/509577"], ["https://data.delijn.be/stops/407100", "https://data.delijn.be/stops/407928"], ["https://data.delijn.be/stops/108103", "https://data.delijn.be/stops/108104"], ["https://data.delijn.be/stops/105203", "https://data.delijn.be/stops/108358"], ["https://data.delijn.be/stops/103210", "https://data.delijn.be/stops/106305"], ["https://data.delijn.be/stops/109358", "https://data.delijn.be/stops/109867"], ["https://data.delijn.be/stops/208020", "https://data.delijn.be/stops/208022"], ["https://data.delijn.be/stops/107080", "https://data.delijn.be/stops/107082"], ["https://data.delijn.be/stops/506118", "https://data.delijn.be/stops/506123"], ["https://data.delijn.be/stops/105780", "https://data.delijn.be/stops/105785"], ["https://data.delijn.be/stops/204234", "https://data.delijn.be/stops/204238"], ["https://data.delijn.be/stops/400443", "https://data.delijn.be/stops/404513"], ["https://data.delijn.be/stops/301369", "https://data.delijn.be/stops/301370"], ["https://data.delijn.be/stops/406317", "https://data.delijn.be/stops/406320"], ["https://data.delijn.be/stops/109458", "https://data.delijn.be/stops/109791"], ["https://data.delijn.be/stops/505959", "https://data.delijn.be/stops/507274"], ["https://data.delijn.be/stops/400070", "https://data.delijn.be/stops/400161"], ["https://data.delijn.be/stops/503126", "https://data.delijn.be/stops/508135"], ["https://data.delijn.be/stops/406603", "https://data.delijn.be/stops/406604"], ["https://data.delijn.be/stops/209535", "https://data.delijn.be/stops/209536"], ["https://data.delijn.be/stops/103721", "https://data.delijn.be/stops/108616"], ["https://data.delijn.be/stops/208533", "https://data.delijn.be/stops/209533"], ["https://data.delijn.be/stops/201444", "https://data.delijn.be/stops/202133"], ["https://data.delijn.be/stops/301411", "https://data.delijn.be/stops/301412"], ["https://data.delijn.be/stops/307148", "https://data.delijn.be/stops/307149"], ["https://data.delijn.be/stops/504195", "https://data.delijn.be/stops/509161"], ["https://data.delijn.be/stops/407927", "https://data.delijn.be/stops/407960"], ["https://data.delijn.be/stops/401268", "https://data.delijn.be/stops/402821"], ["https://data.delijn.be/stops/101064", "https://data.delijn.be/stops/106745"], ["https://data.delijn.be/stops/304950", "https://data.delijn.be/stops/308022"], ["https://data.delijn.be/stops/504552", "https://data.delijn.be/stops/505216"], ["https://data.delijn.be/stops/104078", "https://data.delijn.be/stops/106072"], ["https://data.delijn.be/stops/405222", "https://data.delijn.be/stops/405223"], ["https://data.delijn.be/stops/302208", "https://data.delijn.be/stops/308105"], ["https://data.delijn.be/stops/504558", "https://data.delijn.be/stops/509558"], ["https://data.delijn.be/stops/201656", "https://data.delijn.be/stops/202143"], ["https://data.delijn.be/stops/403089", "https://data.delijn.be/stops/403289"], ["https://data.delijn.be/stops/404738", "https://data.delijn.be/stops/404746"], ["https://data.delijn.be/stops/104332", "https://data.delijn.be/stops/108127"], ["https://data.delijn.be/stops/505086", "https://data.delijn.be/stops/506224"], ["https://data.delijn.be/stops/104341", "https://data.delijn.be/stops/104342"], ["https://data.delijn.be/stops/407502", "https://data.delijn.be/stops/407565"], ["https://data.delijn.be/stops/107562", "https://data.delijn.be/stops/107566"], ["https://data.delijn.be/stops/103144", "https://data.delijn.be/stops/109441"], ["https://data.delijn.be/stops/209302", "https://data.delijn.be/stops/209303"], ["https://data.delijn.be/stops/404160", "https://data.delijn.be/stops/404162"], ["https://data.delijn.be/stops/401602", "https://data.delijn.be/stops/406874"], ["https://data.delijn.be/stops/308772", "https://data.delijn.be/stops/308773"], ["https://data.delijn.be/stops/305559", "https://data.delijn.be/stops/307989"], ["https://data.delijn.be/stops/208443", "https://data.delijn.be/stops/209709"], ["https://data.delijn.be/stops/503471", "https://data.delijn.be/stops/508454"], ["https://data.delijn.be/stops/404666", "https://data.delijn.be/stops/410133"], ["https://data.delijn.be/stops/300512", "https://data.delijn.be/stops/300529"], ["https://data.delijn.be/stops/400515", "https://data.delijn.be/stops/410109"], ["https://data.delijn.be/stops/302392", "https://data.delijn.be/stops/308555"], ["https://data.delijn.be/stops/503963", "https://data.delijn.be/stops/503964"], ["https://data.delijn.be/stops/400622", "https://data.delijn.be/stops/400623"], ["https://data.delijn.be/stops/502140", "https://data.delijn.be/stops/507140"], ["https://data.delijn.be/stops/204333", "https://data.delijn.be/stops/204513"], ["https://data.delijn.be/stops/200090", "https://data.delijn.be/stops/200091"], ["https://data.delijn.be/stops/304464", "https://data.delijn.be/stops/307584"], ["https://data.delijn.be/stops/408088", "https://data.delijn.be/stops/408124"], ["https://data.delijn.be/stops/207410", "https://data.delijn.be/stops/207414"], ["https://data.delijn.be/stops/103305", "https://data.delijn.be/stops/105808"], ["https://data.delijn.be/stops/104938", "https://data.delijn.be/stops/107851"], ["https://data.delijn.be/stops/502619", "https://data.delijn.be/stops/507055"], ["https://data.delijn.be/stops/504834", "https://data.delijn.be/stops/508900"], ["https://data.delijn.be/stops/400069", "https://data.delijn.be/stops/410278"], ["https://data.delijn.be/stops/505985", "https://data.delijn.be/stops/509145"], ["https://data.delijn.be/stops/104368", "https://data.delijn.be/stops/204604"], ["https://data.delijn.be/stops/503481", "https://data.delijn.be/stops/508481"], ["https://data.delijn.be/stops/210850", "https://data.delijn.be/stops/211025"], ["https://data.delijn.be/stops/400518", "https://data.delijn.be/stops/410109"], ["https://data.delijn.be/stops/203687", "https://data.delijn.be/stops/203688"], ["https://data.delijn.be/stops/410209", "https://data.delijn.be/stops/410210"], ["https://data.delijn.be/stops/400102", "https://data.delijn.be/stops/409074"], ["https://data.delijn.be/stops/401135", "https://data.delijn.be/stops/406719"], ["https://data.delijn.be/stops/304005", "https://data.delijn.be/stops/304048"], ["https://data.delijn.be/stops/502456", "https://data.delijn.be/stops/507335"], ["https://data.delijn.be/stops/503527", "https://data.delijn.be/stops/508074"], ["https://data.delijn.be/stops/204089", "https://data.delijn.be/stops/204090"], ["https://data.delijn.be/stops/501485", "https://data.delijn.be/stops/506062"], ["https://data.delijn.be/stops/201887", "https://data.delijn.be/stops/211063"], ["https://data.delijn.be/stops/305419", "https://data.delijn.be/stops/305925"], ["https://data.delijn.be/stops/109744", "https://data.delijn.be/stops/109745"], ["https://data.delijn.be/stops/303761", "https://data.delijn.be/stops/303781"], ["https://data.delijn.be/stops/304510", "https://data.delijn.be/stops/305265"], ["https://data.delijn.be/stops/503403", "https://data.delijn.be/stops/508386"], ["https://data.delijn.be/stops/501428", "https://data.delijn.be/stops/501679"], ["https://data.delijn.be/stops/210010", "https://data.delijn.be/stops/502277"], ["https://data.delijn.be/stops/304132", "https://data.delijn.be/stops/304165"], ["https://data.delijn.be/stops/408645", "https://data.delijn.be/stops/408647"], ["https://data.delijn.be/stops/501124", "https://data.delijn.be/stops/506118"], ["https://data.delijn.be/stops/302098", "https://data.delijn.be/stops/302099"], ["https://data.delijn.be/stops/304964", "https://data.delijn.be/stops/304966"], ["https://data.delijn.be/stops/107975", "https://data.delijn.be/stops/109100"], ["https://data.delijn.be/stops/301780", "https://data.delijn.be/stops/306795"], ["https://data.delijn.be/stops/200585", "https://data.delijn.be/stops/201317"], ["https://data.delijn.be/stops/302064", "https://data.delijn.be/stops/302460"], ["https://data.delijn.be/stops/101798", "https://data.delijn.be/stops/108519"], ["https://data.delijn.be/stops/501161", "https://data.delijn.be/stops/501751"], ["https://data.delijn.be/stops/502318", "https://data.delijn.be/stops/507534"], ["https://data.delijn.be/stops/506119", "https://data.delijn.be/stops/506125"], ["https://data.delijn.be/stops/102187", "https://data.delijn.be/stops/104341"], ["https://data.delijn.be/stops/204979", "https://data.delijn.be/stops/208162"], ["https://data.delijn.be/stops/301047", "https://data.delijn.be/stops/306400"], ["https://data.delijn.be/stops/501060", "https://data.delijn.be/stops/505359"], ["https://data.delijn.be/stops/407202", "https://data.delijn.be/stops/407208"], ["https://data.delijn.be/stops/505337", "https://data.delijn.be/stops/507505"], ["https://data.delijn.be/stops/108357", "https://data.delijn.be/stops/109334"], ["https://data.delijn.be/stops/304705", "https://data.delijn.be/stops/307852"], ["https://data.delijn.be/stops/202567", "https://data.delijn.be/stops/202609"], ["https://data.delijn.be/stops/103538", "https://data.delijn.be/stops/106721"], ["https://data.delijn.be/stops/304704", "https://data.delijn.be/stops/305505"], ["https://data.delijn.be/stops/101000", "https://data.delijn.be/stops/101008"], ["https://data.delijn.be/stops/103595", "https://data.delijn.be/stops/109124"], ["https://data.delijn.be/stops/405637", "https://data.delijn.be/stops/405639"], ["https://data.delijn.be/stops/300139", "https://data.delijn.be/stops/300140"], ["https://data.delijn.be/stops/308203", "https://data.delijn.be/stops/308277"], ["https://data.delijn.be/stops/206505", "https://data.delijn.be/stops/206991"], ["https://data.delijn.be/stops/408214", "https://data.delijn.be/stops/408393"], ["https://data.delijn.be/stops/403005", "https://data.delijn.be/stops/410005"], ["https://data.delijn.be/stops/105678", "https://data.delijn.be/stops/106755"], ["https://data.delijn.be/stops/508321", "https://data.delijn.be/stops/508325"], ["https://data.delijn.be/stops/406436", "https://data.delijn.be/stops/409395"], ["https://data.delijn.be/stops/103612", "https://data.delijn.be/stops/106308"], ["https://data.delijn.be/stops/506635", "https://data.delijn.be/stops/506771"], ["https://data.delijn.be/stops/108620", "https://data.delijn.be/stops/108950"], ["https://data.delijn.be/stops/107842", "https://data.delijn.be/stops/107844"], ["https://data.delijn.be/stops/305211", "https://data.delijn.be/stops/307873"], ["https://data.delijn.be/stops/208726", "https://data.delijn.be/stops/209727"], ["https://data.delijn.be/stops/509642", "https://data.delijn.be/stops/509643"], ["https://data.delijn.be/stops/305189", "https://data.delijn.be/stops/305190"], ["https://data.delijn.be/stops/409053", "https://data.delijn.be/stops/409062"], ["https://data.delijn.be/stops/102210", "https://data.delijn.be/stops/104265"], ["https://data.delijn.be/stops/409255", "https://data.delijn.be/stops/409272"], ["https://data.delijn.be/stops/504528", "https://data.delijn.be/stops/509527"], ["https://data.delijn.be/stops/407757", "https://data.delijn.be/stops/409792"], ["https://data.delijn.be/stops/204671", "https://data.delijn.be/stops/205672"], ["https://data.delijn.be/stops/102013", "https://data.delijn.be/stops/102078"], ["https://data.delijn.be/stops/102500", "https://data.delijn.be/stops/104375"], ["https://data.delijn.be/stops/200316", "https://data.delijn.be/stops/200584"], ["https://data.delijn.be/stops/308507", "https://data.delijn.be/stops/308510"], ["https://data.delijn.be/stops/407511", "https://data.delijn.be/stops/409665"], ["https://data.delijn.be/stops/108819", "https://data.delijn.be/stops/108828"], ["https://data.delijn.be/stops/304318", "https://data.delijn.be/stops/304323"], ["https://data.delijn.be/stops/502731", "https://data.delijn.be/stops/505840"], ["https://data.delijn.be/stops/305730", "https://data.delijn.be/stops/306329"], ["https://data.delijn.be/stops/402602", "https://data.delijn.be/stops/402603"], ["https://data.delijn.be/stops/200361", "https://data.delijn.be/stops/202645"], ["https://data.delijn.be/stops/400269", "https://data.delijn.be/stops/400953"], ["https://data.delijn.be/stops/409444", "https://data.delijn.be/stops/409449"], ["https://data.delijn.be/stops/501668", "https://data.delijn.be/stops/506427"], ["https://data.delijn.be/stops/103944", "https://data.delijn.be/stops/104756"], ["https://data.delijn.be/stops/500567", "https://data.delijn.be/stops/500568"], ["https://data.delijn.be/stops/501045", "https://data.delijn.be/stops/501051"], ["https://data.delijn.be/stops/301429", "https://data.delijn.be/stops/301438"], ["https://data.delijn.be/stops/304156", "https://data.delijn.be/stops/307543"], ["https://data.delijn.be/stops/400269", "https://data.delijn.be/stops/400279"], ["https://data.delijn.be/stops/503798", "https://data.delijn.be/stops/508798"], ["https://data.delijn.be/stops/402493", "https://data.delijn.be/stops/402494"], ["https://data.delijn.be/stops/301471", "https://data.delijn.be/stops/307960"], ["https://data.delijn.be/stops/305068", "https://data.delijn.be/stops/305079"], ["https://data.delijn.be/stops/208701", "https://data.delijn.be/stops/208705"], ["https://data.delijn.be/stops/408591", "https://data.delijn.be/stops/408592"], ["https://data.delijn.be/stops/106522", "https://data.delijn.be/stops/106523"], ["https://data.delijn.be/stops/406152", "https://data.delijn.be/stops/406271"], ["https://data.delijn.be/stops/405631", "https://data.delijn.be/stops/405634"], ["https://data.delijn.be/stops/403833", "https://data.delijn.be/stops/403849"], ["https://data.delijn.be/stops/206779", "https://data.delijn.be/stops/209562"], ["https://data.delijn.be/stops/204777", "https://data.delijn.be/stops/205472"], ["https://data.delijn.be/stops/304351", "https://data.delijn.be/stops/304352"], ["https://data.delijn.be/stops/504407", "https://data.delijn.be/stops/504409"], ["https://data.delijn.be/stops/400204", "https://data.delijn.be/stops/408489"], ["https://data.delijn.be/stops/400798", "https://data.delijn.be/stops/409602"], ["https://data.delijn.be/stops/501498", "https://data.delijn.be/stops/506197"], ["https://data.delijn.be/stops/303863", "https://data.delijn.be/stops/303961"], ["https://data.delijn.be/stops/303459", "https://data.delijn.be/stops/303488"], ["https://data.delijn.be/stops/206885", "https://data.delijn.be/stops/206886"], ["https://data.delijn.be/stops/204221", "https://data.delijn.be/stops/205248"], ["https://data.delijn.be/stops/109182", "https://data.delijn.be/stops/109251"], ["https://data.delijn.be/stops/307896", "https://data.delijn.be/stops/307897"], ["https://data.delijn.be/stops/405940", "https://data.delijn.be/stops/405945"], ["https://data.delijn.be/stops/204147", "https://data.delijn.be/stops/205142"], ["https://data.delijn.be/stops/108811", "https://data.delijn.be/stops/108813"], ["https://data.delijn.be/stops/302648", "https://data.delijn.be/stops/302651"], ["https://data.delijn.be/stops/202208", "https://data.delijn.be/stops/202504"], ["https://data.delijn.be/stops/301512", "https://data.delijn.be/stops/301527"], ["https://data.delijn.be/stops/409761", "https://data.delijn.be/stops/409762"], ["https://data.delijn.be/stops/102835", "https://data.delijn.be/stops/102836"], ["https://data.delijn.be/stops/201242", "https://data.delijn.be/stops/205916"], ["https://data.delijn.be/stops/303797", "https://data.delijn.be/stops/303846"], ["https://data.delijn.be/stops/302181", "https://data.delijn.be/stops/305091"], ["https://data.delijn.be/stops/305284", "https://data.delijn.be/stops/305291"], ["https://data.delijn.be/stops/407984", "https://data.delijn.be/stops/408415"], ["https://data.delijn.be/stops/304566", "https://data.delijn.be/stops/304679"], ["https://data.delijn.be/stops/200021", "https://data.delijn.be/stops/201101"], ["https://data.delijn.be/stops/108140", "https://data.delijn.be/stops/109135"], ["https://data.delijn.be/stops/300955", "https://data.delijn.be/stops/304535"], ["https://data.delijn.be/stops/303283", "https://data.delijn.be/stops/303287"], ["https://data.delijn.be/stops/502555", "https://data.delijn.be/stops/505012"], ["https://data.delijn.be/stops/105456", "https://data.delijn.be/stops/105457"], ["https://data.delijn.be/stops/302436", "https://data.delijn.be/stops/302444"], ["https://data.delijn.be/stops/105091", "https://data.delijn.be/stops/108882"], ["https://data.delijn.be/stops/409263", "https://data.delijn.be/stops/409264"], ["https://data.delijn.be/stops/206028", "https://data.delijn.be/stops/206812"], ["https://data.delijn.be/stops/300936", "https://data.delijn.be/stops/304641"], ["https://data.delijn.be/stops/202529", "https://data.delijn.be/stops/203529"], ["https://data.delijn.be/stops/208200", "https://data.delijn.be/stops/209133"], ["https://data.delijn.be/stops/206083", "https://data.delijn.be/stops/217007"], ["https://data.delijn.be/stops/205226", "https://data.delijn.be/stops/205227"], ["https://data.delijn.be/stops/101063", "https://data.delijn.be/stops/106002"], ["https://data.delijn.be/stops/400229", "https://data.delijn.be/stops/407172"], ["https://data.delijn.be/stops/305501", "https://data.delijn.be/stops/307987"], ["https://data.delijn.be/stops/401603", "https://data.delijn.be/stops/406874"], ["https://data.delijn.be/stops/206231", "https://data.delijn.be/stops/300221"], ["https://data.delijn.be/stops/502205", "https://data.delijn.be/stops/509312"], ["https://data.delijn.be/stops/108706", "https://data.delijn.be/stops/108710"], ["https://data.delijn.be/stops/503735", "https://data.delijn.be/stops/509955"], ["https://data.delijn.be/stops/202617", "https://data.delijn.be/stops/203594"], ["https://data.delijn.be/stops/503917", "https://data.delijn.be/stops/508925"], ["https://data.delijn.be/stops/102638", "https://data.delijn.be/stops/107846"], ["https://data.delijn.be/stops/505061", "https://data.delijn.be/stops/505062"], ["https://data.delijn.be/stops/207272", "https://data.delijn.be/stops/207273"], ["https://data.delijn.be/stops/101553", "https://data.delijn.be/stops/101554"], ["https://data.delijn.be/stops/202057", "https://data.delijn.be/stops/203057"], ["https://data.delijn.be/stops/308171", "https://data.delijn.be/stops/308172"], ["https://data.delijn.be/stops/504850", "https://data.delijn.be/stops/504948"], ["https://data.delijn.be/stops/204044", "https://data.delijn.be/stops/205044"], ["https://data.delijn.be/stops/505783", "https://data.delijn.be/stops/507060"], ["https://data.delijn.be/stops/504546", "https://data.delijn.be/stops/505216"], ["https://data.delijn.be/stops/406610", "https://data.delijn.be/stops/407410"], ["https://data.delijn.be/stops/108866", "https://data.delijn.be/stops/109743"], ["https://data.delijn.be/stops/101963", "https://data.delijn.be/stops/109271"], ["https://data.delijn.be/stops/405397", "https://data.delijn.be/stops/405503"], ["https://data.delijn.be/stops/504402", "https://data.delijn.be/stops/509418"], ["https://data.delijn.be/stops/300456", "https://data.delijn.be/stops/300457"], ["https://data.delijn.be/stops/504129", "https://data.delijn.be/stops/509123"], ["https://data.delijn.be/stops/208546", "https://data.delijn.be/stops/208547"], ["https://data.delijn.be/stops/502375", "https://data.delijn.be/stops/505345"], ["https://data.delijn.be/stops/509621", "https://data.delijn.be/stops/509630"], ["https://data.delijn.be/stops/400251", "https://data.delijn.be/stops/400434"], ["https://data.delijn.be/stops/307302", "https://data.delijn.be/stops/307319"], ["https://data.delijn.be/stops/101484", "https://data.delijn.be/stops/109706"], ["https://data.delijn.be/stops/402820", "https://data.delijn.be/stops/406568"], ["https://data.delijn.be/stops/202437", "https://data.delijn.be/stops/202586"], ["https://data.delijn.be/stops/501013", "https://data.delijn.be/stops/506018"], ["https://data.delijn.be/stops/205259", "https://data.delijn.be/stops/205671"], ["https://data.delijn.be/stops/107283", "https://data.delijn.be/stops/107399"], ["https://data.delijn.be/stops/407686", "https://data.delijn.be/stops/407687"], ["https://data.delijn.be/stops/106774", "https://data.delijn.be/stops/106780"], ["https://data.delijn.be/stops/503369", "https://data.delijn.be/stops/510020"], ["https://data.delijn.be/stops/206962", "https://data.delijn.be/stops/207934"], ["https://data.delijn.be/stops/306665", "https://data.delijn.be/stops/307880"], ["https://data.delijn.be/stops/504650", "https://data.delijn.be/stops/505810"], ["https://data.delijn.be/stops/503218", "https://data.delijn.be/stops/508213"], ["https://data.delijn.be/stops/405921", "https://data.delijn.be/stops/405974"], ["https://data.delijn.be/stops/308730", "https://data.delijn.be/stops/308733"], ["https://data.delijn.be/stops/201695", "https://data.delijn.be/stops/202037"], ["https://data.delijn.be/stops/502454", "https://data.delijn.be/stops/502682"], ["https://data.delijn.be/stops/302318", "https://data.delijn.be/stops/304783"], ["https://data.delijn.be/stops/207245", "https://data.delijn.be/stops/207402"], ["https://data.delijn.be/stops/301141", "https://data.delijn.be/stops/302016"], ["https://data.delijn.be/stops/305625", "https://data.delijn.be/stops/305632"], ["https://data.delijn.be/stops/103636", "https://data.delijn.be/stops/104915"], ["https://data.delijn.be/stops/400476", "https://data.delijn.be/stops/407647"], ["https://data.delijn.be/stops/103301", "https://data.delijn.be/stops/103302"], ["https://data.delijn.be/stops/200019", "https://data.delijn.be/stops/200021"], ["https://data.delijn.be/stops/504695", "https://data.delijn.be/stops/508859"], ["https://data.delijn.be/stops/304373", "https://data.delijn.be/stops/304412"], ["https://data.delijn.be/stops/200017", "https://data.delijn.be/stops/200018"], ["https://data.delijn.be/stops/303188", "https://data.delijn.be/stops/303197"], ["https://data.delijn.be/stops/207695", "https://data.delijn.be/stops/207954"], ["https://data.delijn.be/stops/206145", "https://data.delijn.be/stops/207144"], ["https://data.delijn.be/stops/405609", "https://data.delijn.be/stops/410052"], ["https://data.delijn.be/stops/202479", "https://data.delijn.be/stops/202954"], ["https://data.delijn.be/stops/201808", "https://data.delijn.be/stops/209261"], ["https://data.delijn.be/stops/406753", "https://data.delijn.be/stops/408165"], ["https://data.delijn.be/stops/402954", "https://data.delijn.be/stops/404350"], ["https://data.delijn.be/stops/104660", "https://data.delijn.be/stops/105680"], ["https://data.delijn.be/stops/207212", "https://data.delijn.be/stops/207924"], ["https://data.delijn.be/stops/503185", "https://data.delijn.be/stops/508190"], ["https://data.delijn.be/stops/404122", "https://data.delijn.be/stops/404128"], ["https://data.delijn.be/stops/408070", "https://data.delijn.be/stops/408071"], ["https://data.delijn.be/stops/406305", "https://data.delijn.be/stops/406392"], ["https://data.delijn.be/stops/403051", "https://data.delijn.be/stops/410210"], ["https://data.delijn.be/stops/208450", "https://data.delijn.be/stops/208519"], ["https://data.delijn.be/stops/104262", "https://data.delijn.be/stops/104270"], ["https://data.delijn.be/stops/505659", "https://data.delijn.be/stops/509824"], ["https://data.delijn.be/stops/204434", "https://data.delijn.be/stops/205431"], ["https://data.delijn.be/stops/401761", "https://data.delijn.be/stops/401765"], ["https://data.delijn.be/stops/401851", "https://data.delijn.be/stops/406347"], ["https://data.delijn.be/stops/401411", "https://data.delijn.be/stops/307498"], ["https://data.delijn.be/stops/408268", "https://data.delijn.be/stops/408271"], ["https://data.delijn.be/stops/201055", "https://data.delijn.be/stops/201921"], ["https://data.delijn.be/stops/207342", "https://data.delijn.be/stops/207705"], ["https://data.delijn.be/stops/405436", "https://data.delijn.be/stops/408530"], ["https://data.delijn.be/stops/300547", "https://data.delijn.be/stops/307861"], ["https://data.delijn.be/stops/302316", "https://data.delijn.be/stops/302329"], ["https://data.delijn.be/stops/102672", "https://data.delijn.be/stops/109193"], ["https://data.delijn.be/stops/403143", "https://data.delijn.be/stops/403380"], ["https://data.delijn.be/stops/307814", "https://data.delijn.be/stops/307817"], ["https://data.delijn.be/stops/502623", "https://data.delijn.be/stops/505703"], ["https://data.delijn.be/stops/103931", "https://data.delijn.be/stops/106603"], ["https://data.delijn.be/stops/401828", "https://data.delijn.be/stops/401832"], ["https://data.delijn.be/stops/202680", "https://data.delijn.be/stops/203679"], ["https://data.delijn.be/stops/504956", "https://data.delijn.be/stops/509947"], ["https://data.delijn.be/stops/403642", "https://data.delijn.be/stops/403652"], ["https://data.delijn.be/stops/201255", "https://data.delijn.be/stops/201656"], ["https://data.delijn.be/stops/508701", "https://data.delijn.be/stops/508723"], ["https://data.delijn.be/stops/104860", "https://data.delijn.be/stops/105195"], ["https://data.delijn.be/stops/400911", "https://data.delijn.be/stops/400957"], ["https://data.delijn.be/stops/101529", "https://data.delijn.be/stops/109002"], ["https://data.delijn.be/stops/303640", "https://data.delijn.be/stops/303643"], ["https://data.delijn.be/stops/406158", "https://data.delijn.be/stops/406287"], ["https://data.delijn.be/stops/200061", "https://data.delijn.be/stops/200481"], ["https://data.delijn.be/stops/204496", "https://data.delijn.be/stops/204497"], ["https://data.delijn.be/stops/107710", "https://data.delijn.be/stops/108058"], ["https://data.delijn.be/stops/504116", "https://data.delijn.be/stops/509116"], ["https://data.delijn.be/stops/401755", "https://data.delijn.be/stops/401762"], ["https://data.delijn.be/stops/303358", "https://data.delijn.be/stops/303364"], ["https://data.delijn.be/stops/401503", "https://data.delijn.be/stops/401520"], ["https://data.delijn.be/stops/300944", "https://data.delijn.be/stops/308902"], ["https://data.delijn.be/stops/407239", "https://data.delijn.be/stops/407505"], ["https://data.delijn.be/stops/301547", "https://data.delijn.be/stops/305172"], ["https://data.delijn.be/stops/101290", "https://data.delijn.be/stops/103119"], ["https://data.delijn.be/stops/104950", "https://data.delijn.be/stops/108575"], ["https://data.delijn.be/stops/102702", "https://data.delijn.be/stops/105548"], ["https://data.delijn.be/stops/105247", "https://data.delijn.be/stops/105842"], ["https://data.delijn.be/stops/305894", "https://data.delijn.be/stops/305967"], ["https://data.delijn.be/stops/508499", "https://data.delijn.be/stops/508501"], ["https://data.delijn.be/stops/304829", "https://data.delijn.be/stops/306173"], ["https://data.delijn.be/stops/401053", "https://data.delijn.be/stops/409822"], ["https://data.delijn.be/stops/206748", "https://data.delijn.be/stops/207698"], ["https://data.delijn.be/stops/301589", "https://data.delijn.be/stops/301591"], ["https://data.delijn.be/stops/504583", "https://data.delijn.be/stops/509587"], ["https://data.delijn.be/stops/208031", "https://data.delijn.be/stops/209031"], ["https://data.delijn.be/stops/106479", "https://data.delijn.be/stops/107053"], ["https://data.delijn.be/stops/409102", "https://data.delijn.be/stops/409104"], ["https://data.delijn.be/stops/207344", "https://data.delijn.be/stops/207345"], ["https://data.delijn.be/stops/501442", "https://data.delijn.be/stops/506442"], ["https://data.delijn.be/stops/507004", "https://data.delijn.be/stops/507493"], ["https://data.delijn.be/stops/400076", "https://data.delijn.be/stops/407965"], ["https://data.delijn.be/stops/406215", "https://data.delijn.be/stops/406233"], ["https://data.delijn.be/stops/206528", "https://data.delijn.be/stops/206529"], ["https://data.delijn.be/stops/107690", "https://data.delijn.be/stops/108170"], ["https://data.delijn.be/stops/505265", "https://data.delijn.be/stops/505269"], ["https://data.delijn.be/stops/405294", "https://data.delijn.be/stops/405296"], ["https://data.delijn.be/stops/208618", "https://data.delijn.be/stops/209617"], ["https://data.delijn.be/stops/201333", "https://data.delijn.be/stops/211084"], ["https://data.delijn.be/stops/403798", "https://data.delijn.be/stops/406302"], ["https://data.delijn.be/stops/208197", "https://data.delijn.be/stops/209131"], ["https://data.delijn.be/stops/404574", "https://data.delijn.be/stops/404575"], ["https://data.delijn.be/stops/508647", "https://data.delijn.be/stops/508739"], ["https://data.delijn.be/stops/302760", "https://data.delijn.be/stops/308911"], ["https://data.delijn.be/stops/507503", "https://data.delijn.be/stops/507516"], ["https://data.delijn.be/stops/403062", "https://data.delijn.be/stops/410006"], ["https://data.delijn.be/stops/105052", "https://data.delijn.be/stops/109766"], ["https://data.delijn.be/stops/201420", "https://data.delijn.be/stops/202012"], ["https://data.delijn.be/stops/406223", "https://data.delijn.be/stops/406233"], ["https://data.delijn.be/stops/301288", "https://data.delijn.be/stops/301330"], ["https://data.delijn.be/stops/204225", "https://data.delijn.be/stops/204226"], ["https://data.delijn.be/stops/107445", "https://data.delijn.be/stops/107465"], ["https://data.delijn.be/stops/205006", "https://data.delijn.be/stops/205322"], ["https://data.delijn.be/stops/206438", "https://data.delijn.be/stops/206440"], ["https://data.delijn.be/stops/202261", "https://data.delijn.be/stops/203261"], ["https://data.delijn.be/stops/306696", "https://data.delijn.be/stops/306698"], ["https://data.delijn.be/stops/402231", "https://data.delijn.be/stops/402237"], ["https://data.delijn.be/stops/107995", "https://data.delijn.be/stops/108120"], ["https://data.delijn.be/stops/502519", "https://data.delijn.be/stops/502522"], ["https://data.delijn.be/stops/405534", "https://data.delijn.be/stops/407295"], ["https://data.delijn.be/stops/503374", "https://data.delijn.be/stops/503414"], ["https://data.delijn.be/stops/207872", "https://data.delijn.be/stops/209365"], ["https://data.delijn.be/stops/202564", "https://data.delijn.be/stops/210256"], ["https://data.delijn.be/stops/402180", "https://data.delijn.be/stops/402181"], ["https://data.delijn.be/stops/403612", "https://data.delijn.be/stops/403613"], ["https://data.delijn.be/stops/507617", "https://data.delijn.be/stops/507618"], ["https://data.delijn.be/stops/102457", "https://data.delijn.be/stops/102469"], ["https://data.delijn.be/stops/508830", "https://data.delijn.be/stops/508833"], ["https://data.delijn.be/stops/200944", "https://data.delijn.be/stops/202696"], ["https://data.delijn.be/stops/504563", "https://data.delijn.be/stops/509563"], ["https://data.delijn.be/stops/304128", "https://data.delijn.be/stops/304133"], ["https://data.delijn.be/stops/408108", "https://data.delijn.be/stops/408117"], ["https://data.delijn.be/stops/504225", "https://data.delijn.be/stops/504227"], ["https://data.delijn.be/stops/403985", "https://data.delijn.be/stops/404005"], ["https://data.delijn.be/stops/108101", "https://data.delijn.be/stops/108103"], ["https://data.delijn.be/stops/300691", "https://data.delijn.be/stops/303460"], ["https://data.delijn.be/stops/305555", "https://data.delijn.be/stops/305582"], ["https://data.delijn.be/stops/303987", "https://data.delijn.be/stops/306289"], ["https://data.delijn.be/stops/108728", "https://data.delijn.be/stops/108729"], ["https://data.delijn.be/stops/405347", "https://data.delijn.be/stops/405430"], ["https://data.delijn.be/stops/101643", "https://data.delijn.be/stops/105839"], ["https://data.delijn.be/stops/300325", "https://data.delijn.be/stops/300338"], ["https://data.delijn.be/stops/404897", "https://data.delijn.be/stops/404907"], ["https://data.delijn.be/stops/200753", "https://data.delijn.be/stops/200771"], ["https://data.delijn.be/stops/405962", "https://data.delijn.be/stops/405964"], ["https://data.delijn.be/stops/404230", "https://data.delijn.be/stops/404239"], ["https://data.delijn.be/stops/200419", "https://data.delijn.be/stops/201163"], ["https://data.delijn.be/stops/301936", "https://data.delijn.be/stops/304710"], ["https://data.delijn.be/stops/300897", "https://data.delijn.be/stops/304316"], ["https://data.delijn.be/stops/204661", "https://data.delijn.be/stops/204662"], ["https://data.delijn.be/stops/201478", "https://data.delijn.be/stops/211002"], ["https://data.delijn.be/stops/202672", "https://data.delijn.be/stops/203672"], ["https://data.delijn.be/stops/206927", "https://data.delijn.be/stops/207556"], ["https://data.delijn.be/stops/503292", "https://data.delijn.be/stops/508292"], ["https://data.delijn.be/stops/204081", "https://data.delijn.be/stops/205081"], ["https://data.delijn.be/stops/508024", "https://data.delijn.be/stops/508028"], ["https://data.delijn.be/stops/304601", "https://data.delijn.be/stops/304623"], ["https://data.delijn.be/stops/400350", "https://data.delijn.be/stops/400351"], ["https://data.delijn.be/stops/305859", "https://data.delijn.be/stops/305860"], ["https://data.delijn.be/stops/104877", "https://data.delijn.be/stops/105305"], ["https://data.delijn.be/stops/202341", "https://data.delijn.be/stops/203484"], ["https://data.delijn.be/stops/401072", "https://data.delijn.be/stops/401085"], ["https://data.delijn.be/stops/501764", "https://data.delijn.be/stops/502342"], ["https://data.delijn.be/stops/204159", "https://data.delijn.be/stops/204160"], ["https://data.delijn.be/stops/201725", "https://data.delijn.be/stops/201726"], ["https://data.delijn.be/stops/305102", "https://data.delijn.be/stops/305103"], ["https://data.delijn.be/stops/102489", "https://data.delijn.be/stops/400427"], ["https://data.delijn.be/stops/410262", "https://data.delijn.be/stops/410263"], ["https://data.delijn.be/stops/102832", "https://data.delijn.be/stops/106773"], ["https://data.delijn.be/stops/308148", "https://data.delijn.be/stops/308150"], ["https://data.delijn.be/stops/302278", "https://data.delijn.be/stops/302296"], ["https://data.delijn.be/stops/200080", "https://data.delijn.be/stops/201121"], ["https://data.delijn.be/stops/202908", "https://data.delijn.be/stops/203844"], ["https://data.delijn.be/stops/504568", "https://data.delijn.be/stops/505412"], ["https://data.delijn.be/stops/206768", "https://data.delijn.be/stops/209242"], ["https://data.delijn.be/stops/101833", "https://data.delijn.be/stops/107096"], ["https://data.delijn.be/stops/405174", "https://data.delijn.be/stops/405279"], ["https://data.delijn.be/stops/307537", "https://data.delijn.be/stops/307538"], ["https://data.delijn.be/stops/105244", "https://data.delijn.be/stops/105414"], ["https://data.delijn.be/stops/106300", "https://data.delijn.be/stops/106301"], ["https://data.delijn.be/stops/303018", "https://data.delijn.be/stops/303022"], ["https://data.delijn.be/stops/300340", "https://data.delijn.be/stops/304442"], ["https://data.delijn.be/stops/208479", "https://data.delijn.be/stops/209479"], ["https://data.delijn.be/stops/504196", "https://data.delijn.be/stops/509162"], ["https://data.delijn.be/stops/404146", "https://data.delijn.be/stops/404147"], ["https://data.delijn.be/stops/306902", "https://data.delijn.be/stops/308128"], ["https://data.delijn.be/stops/301251", "https://data.delijn.be/stops/308557"], ["https://data.delijn.be/stops/407334", "https://data.delijn.be/stops/407335"], ["https://data.delijn.be/stops/202592", "https://data.delijn.be/stops/203593"], ["https://data.delijn.be/stops/401309", "https://data.delijn.be/stops/401319"], ["https://data.delijn.be/stops/407619", "https://data.delijn.be/stops/407680"], ["https://data.delijn.be/stops/403372", "https://data.delijn.be/stops/406854"], ["https://data.delijn.be/stops/400213", "https://data.delijn.be/stops/405613"], ["https://data.delijn.be/stops/504761", "https://data.delijn.be/stops/504767"], ["https://data.delijn.be/stops/305019", "https://data.delijn.be/stops/305040"], ["https://data.delijn.be/stops/206897", "https://data.delijn.be/stops/207702"], ["https://data.delijn.be/stops/407889", "https://data.delijn.be/stops/408188"], ["https://data.delijn.be/stops/104907", "https://data.delijn.be/stops/104908"], ["https://data.delijn.be/stops/406309", "https://data.delijn.be/stops/406313"], ["https://data.delijn.be/stops/200591", "https://data.delijn.be/stops/201590"], ["https://data.delijn.be/stops/200190", "https://data.delijn.be/stops/201190"], ["https://data.delijn.be/stops/504942", "https://data.delijn.be/stops/508897"], ["https://data.delijn.be/stops/202516", "https://data.delijn.be/stops/203516"], ["https://data.delijn.be/stops/200053", "https://data.delijn.be/stops/201477"], ["https://data.delijn.be/stops/206124", "https://data.delijn.be/stops/207133"], ["https://data.delijn.be/stops/206522", "https://data.delijn.be/stops/207079"], ["https://data.delijn.be/stops/205364", "https://data.delijn.be/stops/205716"], ["https://data.delijn.be/stops/109990", "https://data.delijn.be/stops/410346"], ["https://data.delijn.be/stops/109184", "https://data.delijn.be/stops/109185"], ["https://data.delijn.be/stops/407931", "https://data.delijn.be/stops/407932"], ["https://data.delijn.be/stops/301213", "https://data.delijn.be/stops/303618"], ["https://data.delijn.be/stops/203113", "https://data.delijn.be/stops/205597"], ["https://data.delijn.be/stops/404255", "https://data.delijn.be/stops/405280"], ["https://data.delijn.be/stops/504604", "https://data.delijn.be/stops/509223"], ["https://data.delijn.be/stops/405176", "https://data.delijn.be/stops/405184"], ["https://data.delijn.be/stops/104736", "https://data.delijn.be/stops/107334"], ["https://data.delijn.be/stops/501150", "https://data.delijn.be/stops/501433"], ["https://data.delijn.be/stops/208482", "https://data.delijn.be/stops/209481"], ["https://data.delijn.be/stops/300665", "https://data.delijn.be/stops/300666"], ["https://data.delijn.be/stops/304258", "https://data.delijn.be/stops/305492"], ["https://data.delijn.be/stops/104335", "https://data.delijn.be/stops/105445"], ["https://data.delijn.be/stops/103610", "https://data.delijn.be/stops/105380"], ["https://data.delijn.be/stops/204064", "https://data.delijn.be/stops/205173"], ["https://data.delijn.be/stops/502199", "https://data.delijn.be/stops/507205"], ["https://data.delijn.be/stops/400408", "https://data.delijn.be/stops/400423"], ["https://data.delijn.be/stops/101203", "https://data.delijn.be/stops/104931"], ["https://data.delijn.be/stops/103221", "https://data.delijn.be/stops/107910"], ["https://data.delijn.be/stops/300527", "https://data.delijn.be/stops/300536"], ["https://data.delijn.be/stops/402936", "https://data.delijn.be/stops/405976"], ["https://data.delijn.be/stops/210115", "https://data.delijn.be/stops/211117"], ["https://data.delijn.be/stops/101081", "https://data.delijn.be/stops/102718"], ["https://data.delijn.be/stops/406245", "https://data.delijn.be/stops/408417"], ["https://data.delijn.be/stops/106092", "https://data.delijn.be/stops/109185"], ["https://data.delijn.be/stops/401423", "https://data.delijn.be/stops/401627"], ["https://data.delijn.be/stops/504846", "https://data.delijn.be/stops/505119"], ["https://data.delijn.be/stops/405503", "https://data.delijn.be/stops/302827"], ["https://data.delijn.be/stops/406095", "https://data.delijn.be/stops/406129"], ["https://data.delijn.be/stops/305198", "https://data.delijn.be/stops/308048"], ["https://data.delijn.be/stops/208111", "https://data.delijn.be/stops/208114"], ["https://data.delijn.be/stops/103640", "https://data.delijn.be/stops/104340"], ["https://data.delijn.be/stops/503172", "https://data.delijn.be/stops/508172"], ["https://data.delijn.be/stops/403808", "https://data.delijn.be/stops/408597"], ["https://data.delijn.be/stops/305393", "https://data.delijn.be/stops/305461"], ["https://data.delijn.be/stops/401409", "https://data.delijn.be/stops/401417"], ["https://data.delijn.be/stops/501686", "https://data.delijn.be/stops/504128"], ["https://data.delijn.be/stops/304261", "https://data.delijn.be/stops/304262"], ["https://data.delijn.be/stops/205007", "https://data.delijn.be/stops/205698"], ["https://data.delijn.be/stops/207044", "https://data.delijn.be/stops/207880"], ["https://data.delijn.be/stops/202430", "https://data.delijn.be/stops/203430"], ["https://data.delijn.be/stops/402659", "https://data.delijn.be/stops/402721"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/202625"], ["https://data.delijn.be/stops/303147", "https://data.delijn.be/stops/304245"], ["https://data.delijn.be/stops/407307", "https://data.delijn.be/stops/408482"], ["https://data.delijn.be/stops/504273", "https://data.delijn.be/stops/505912"], ["https://data.delijn.be/stops/202054", "https://data.delijn.be/stops/203054"], ["https://data.delijn.be/stops/302159", "https://data.delijn.be/stops/302165"], ["https://data.delijn.be/stops/401312", "https://data.delijn.be/stops/401326"], ["https://data.delijn.be/stops/401421", "https://data.delijn.be/stops/401531"], ["https://data.delijn.be/stops/404293", "https://data.delijn.be/stops/405699"], ["https://data.delijn.be/stops/101379", "https://data.delijn.be/stops/108810"], ["https://data.delijn.be/stops/208503", "https://data.delijn.be/stops/209503"], ["https://data.delijn.be/stops/502236", "https://data.delijn.be/stops/507236"], ["https://data.delijn.be/stops/501111", "https://data.delijn.be/stops/506493"], ["https://data.delijn.be/stops/109189", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/208086", "https://data.delijn.be/stops/209697"], ["https://data.delijn.be/stops/400820", "https://data.delijn.be/stops/400821"], ["https://data.delijn.be/stops/102598", "https://data.delijn.be/stops/107819"], ["https://data.delijn.be/stops/403005", "https://data.delijn.be/stops/406988"], ["https://data.delijn.be/stops/407372", "https://data.delijn.be/stops/407379"], ["https://data.delijn.be/stops/306604", "https://data.delijn.be/stops/306611"], ["https://data.delijn.be/stops/307084", "https://data.delijn.be/stops/307085"], ["https://data.delijn.be/stops/306312", "https://data.delijn.be/stops/307638"], ["https://data.delijn.be/stops/101706", "https://data.delijn.be/stops/205493"], ["https://data.delijn.be/stops/108858", "https://data.delijn.be/stops/108862"], ["https://data.delijn.be/stops/102448", "https://data.delijn.be/stops/104210"], ["https://data.delijn.be/stops/501035", "https://data.delijn.be/stops/501038"], ["https://data.delijn.be/stops/200901", "https://data.delijn.be/stops/202266"], ["https://data.delijn.be/stops/109042", "https://data.delijn.be/stops/307947"], ["https://data.delijn.be/stops/308142", "https://data.delijn.be/stops/308144"], ["https://data.delijn.be/stops/102381", "https://data.delijn.be/stops/106366"], ["https://data.delijn.be/stops/204449", "https://data.delijn.be/stops/205302"], ["https://data.delijn.be/stops/106816", "https://data.delijn.be/stops/106988"], ["https://data.delijn.be/stops/407032", "https://data.delijn.be/stops/407033"], ["https://data.delijn.be/stops/405521", "https://data.delijn.be/stops/407869"], ["https://data.delijn.be/stops/304028", "https://data.delijn.be/stops/304101"], ["https://data.delijn.be/stops/105393", "https://data.delijn.be/stops/109882"], ["https://data.delijn.be/stops/406558", "https://data.delijn.be/stops/406567"], ["https://data.delijn.be/stops/304596", "https://data.delijn.be/stops/304651"], ["https://data.delijn.be/stops/301064", "https://data.delijn.be/stops/306116"], ["https://data.delijn.be/stops/206344", "https://data.delijn.be/stops/207345"], ["https://data.delijn.be/stops/209645", "https://data.delijn.be/stops/209646"], ["https://data.delijn.be/stops/503217", "https://data.delijn.be/stops/503447"], ["https://data.delijn.be/stops/502542", "https://data.delijn.be/stops/507542"], ["https://data.delijn.be/stops/208090", "https://data.delijn.be/stops/208490"], ["https://data.delijn.be/stops/200962", "https://data.delijn.be/stops/201352"], ["https://data.delijn.be/stops/200676", "https://data.delijn.be/stops/200678"], ["https://data.delijn.be/stops/200128", "https://data.delijn.be/stops/200300"], ["https://data.delijn.be/stops/208795", "https://data.delijn.be/stops/218007"], ["https://data.delijn.be/stops/101520", "https://data.delijn.be/stops/102846"], ["https://data.delijn.be/stops/304454", "https://data.delijn.be/stops/307698"], ["https://data.delijn.be/stops/301742", "https://data.delijn.be/stops/301743"], ["https://data.delijn.be/stops/301967", "https://data.delijn.be/stops/307223"], ["https://data.delijn.be/stops/509026", "https://data.delijn.be/stops/509704"], ["https://data.delijn.be/stops/505771", "https://data.delijn.be/stops/507001"], ["https://data.delijn.be/stops/407701", "https://data.delijn.be/stops/407708"], ["https://data.delijn.be/stops/302238", "https://data.delijn.be/stops/302247"], ["https://data.delijn.be/stops/504295", "https://data.delijn.be/stops/509713"], ["https://data.delijn.be/stops/403484", "https://data.delijn.be/stops/404553"], ["https://data.delijn.be/stops/403056", "https://data.delijn.be/stops/403314"], ["https://data.delijn.be/stops/200971", "https://data.delijn.be/stops/201971"], ["https://data.delijn.be/stops/201971", "https://data.delijn.be/stops/207614"], ["https://data.delijn.be/stops/505964", "https://data.delijn.be/stops/507339"], ["https://data.delijn.be/stops/303017", "https://data.delijn.be/stops/303089"], ["https://data.delijn.be/stops/204782", "https://data.delijn.be/stops/204785"], ["https://data.delijn.be/stops/404302", "https://data.delijn.be/stops/404304"], ["https://data.delijn.be/stops/505056", "https://data.delijn.be/stops/505326"], ["https://data.delijn.be/stops/401411", "https://data.delijn.be/stops/303650"], ["https://data.delijn.be/stops/301240", "https://data.delijn.be/stops/308759"], ["https://data.delijn.be/stops/200302", "https://data.delijn.be/stops/201128"], ["https://data.delijn.be/stops/200836", "https://data.delijn.be/stops/200886"], ["https://data.delijn.be/stops/509831", "https://data.delijn.be/stops/509832"], ["https://data.delijn.be/stops/402445", "https://data.delijn.be/stops/402446"], ["https://data.delijn.be/stops/400930", "https://data.delijn.be/stops/400942"], ["https://data.delijn.be/stops/406824", "https://data.delijn.be/stops/409406"], ["https://data.delijn.be/stops/202715", "https://data.delijn.be/stops/203717"], ["https://data.delijn.be/stops/502286", "https://data.delijn.be/stops/505723"], ["https://data.delijn.be/stops/301959", "https://data.delijn.be/stops/301962"], ["https://data.delijn.be/stops/404302", "https://data.delijn.be/stops/408686"], ["https://data.delijn.be/stops/409264", "https://data.delijn.be/stops/409265"], ["https://data.delijn.be/stops/305307", "https://data.delijn.be/stops/306342"], ["https://data.delijn.be/stops/102240", "https://data.delijn.be/stops/104585"], ["https://data.delijn.be/stops/303702", "https://data.delijn.be/stops/304918"], ["https://data.delijn.be/stops/202739", "https://data.delijn.be/stops/209742"], ["https://data.delijn.be/stops/204530", "https://data.delijn.be/stops/205295"], ["https://data.delijn.be/stops/104022", "https://data.delijn.be/stops/107264"], ["https://data.delijn.be/stops/403164", "https://data.delijn.be/stops/410126"], ["https://data.delijn.be/stops/301408", "https://data.delijn.be/stops/307025"], ["https://data.delijn.be/stops/507461", "https://data.delijn.be/stops/507464"], ["https://data.delijn.be/stops/403124", "https://data.delijn.be/stops/403672"], ["https://data.delijn.be/stops/400510", "https://data.delijn.be/stops/403898"], ["https://data.delijn.be/stops/101186", "https://data.delijn.be/stops/106775"], ["https://data.delijn.be/stops/402681", "https://data.delijn.be/stops/402727"], ["https://data.delijn.be/stops/205346", "https://data.delijn.be/stops/205707"], ["https://data.delijn.be/stops/402578", "https://data.delijn.be/stops/402585"], ["https://data.delijn.be/stops/106350", "https://data.delijn.be/stops/106351"], ["https://data.delijn.be/stops/109161", "https://data.delijn.be/stops/109233"], ["https://data.delijn.be/stops/300195", "https://data.delijn.be/stops/300196"], ["https://data.delijn.be/stops/306070", "https://data.delijn.be/stops/306728"], ["https://data.delijn.be/stops/400253", "https://data.delijn.be/stops/400335"], ["https://data.delijn.be/stops/106298", "https://data.delijn.be/stops/107444"], ["https://data.delijn.be/stops/409356", "https://data.delijn.be/stops/409391"], ["https://data.delijn.be/stops/504323", "https://data.delijn.be/stops/509317"], ["https://data.delijn.be/stops/101552", "https://data.delijn.be/stops/107917"], ["https://data.delijn.be/stops/202549", "https://data.delijn.be/stops/202550"], ["https://data.delijn.be/stops/106305", "https://data.delijn.be/stops/106307"], ["https://data.delijn.be/stops/400377", "https://data.delijn.be/stops/401589"], ["https://data.delijn.be/stops/503186", "https://data.delijn.be/stops/503205"], ["https://data.delijn.be/stops/103287", "https://data.delijn.be/stops/106296"], ["https://data.delijn.be/stops/208233", "https://data.delijn.be/stops/208797"], ["https://data.delijn.be/stops/106273", "https://data.delijn.be/stops/109628"], ["https://data.delijn.be/stops/104711", "https://data.delijn.be/stops/107076"], ["https://data.delijn.be/stops/409715", "https://data.delijn.be/stops/409725"], ["https://data.delijn.be/stops/106493", "https://data.delijn.be/stops/106494"], ["https://data.delijn.be/stops/301259", "https://data.delijn.be/stops/301260"], ["https://data.delijn.be/stops/109061", "https://data.delijn.be/stops/109063"], ["https://data.delijn.be/stops/101700", "https://data.delijn.be/stops/101895"], ["https://data.delijn.be/stops/208018", "https://data.delijn.be/stops/209018"], ["https://data.delijn.be/stops/504802", "https://data.delijn.be/stops/504803"], ["https://data.delijn.be/stops/403723", "https://data.delijn.be/stops/406709"], ["https://data.delijn.be/stops/201222", "https://data.delijn.be/stops/202450"], ["https://data.delijn.be/stops/103031", "https://data.delijn.be/stops/103244"], ["https://data.delijn.be/stops/207714", "https://data.delijn.be/stops/207715"], ["https://data.delijn.be/stops/502430", "https://data.delijn.be/stops/507434"], ["https://data.delijn.be/stops/107794", "https://data.delijn.be/stops/107798"], ["https://data.delijn.be/stops/109797", "https://data.delijn.be/stops/305784"], ["https://data.delijn.be/stops/403218", "https://data.delijn.be/stops/403225"], ["https://data.delijn.be/stops/502410", "https://data.delijn.be/stops/502820"], ["https://data.delijn.be/stops/505675", "https://data.delijn.be/stops/505677"], ["https://data.delijn.be/stops/301269", "https://data.delijn.be/stops/307789"], ["https://data.delijn.be/stops/102050", "https://data.delijn.be/stops/103040"], ["https://data.delijn.be/stops/302647", "https://data.delijn.be/stops/302648"], ["https://data.delijn.be/stops/503063", "https://data.delijn.be/stops/508059"], ["https://data.delijn.be/stops/103865", "https://data.delijn.be/stops/105670"], ["https://data.delijn.be/stops/307033", "https://data.delijn.be/stops/307612"], ["https://data.delijn.be/stops/201804", "https://data.delijn.be/stops/208251"], ["https://data.delijn.be/stops/404862", "https://data.delijn.be/stops/404863"], ["https://data.delijn.be/stops/207448", "https://data.delijn.be/stops/207478"], ["https://data.delijn.be/stops/108475", "https://data.delijn.be/stops/109089"], ["https://data.delijn.be/stops/505173", "https://data.delijn.be/stops/507347"], ["https://data.delijn.be/stops/101489", "https://data.delijn.be/stops/109502"], ["https://data.delijn.be/stops/208747", "https://data.delijn.be/stops/209417"], ["https://data.delijn.be/stops/106505", "https://data.delijn.be/stops/106506"], ["https://data.delijn.be/stops/200275", "https://data.delijn.be/stops/201028"], ["https://data.delijn.be/stops/504159", "https://data.delijn.be/stops/504191"], ["https://data.delijn.be/stops/404391", "https://data.delijn.be/stops/404756"], ["https://data.delijn.be/stops/203107", "https://data.delijn.be/stops/208852"], ["https://data.delijn.be/stops/208688", "https://data.delijn.be/stops/208689"], ["https://data.delijn.be/stops/402098", "https://data.delijn.be/stops/408054"], ["https://data.delijn.be/stops/201943", "https://data.delijn.be/stops/203144"], ["https://data.delijn.be/stops/202530", "https://data.delijn.be/stops/203965"], ["https://data.delijn.be/stops/402859", "https://data.delijn.be/stops/406571"], ["https://data.delijn.be/stops/307427", "https://data.delijn.be/stops/307428"], ["https://data.delijn.be/stops/510010", "https://data.delijn.be/stops/510011"], ["https://data.delijn.be/stops/303249", "https://data.delijn.be/stops/303660"], ["https://data.delijn.be/stops/307388", "https://data.delijn.be/stops/307399"], ["https://data.delijn.be/stops/404131", "https://data.delijn.be/stops/404241"], ["https://data.delijn.be/stops/404200", "https://data.delijn.be/stops/404239"], ["https://data.delijn.be/stops/300807", "https://data.delijn.be/stops/304534"], ["https://data.delijn.be/stops/208239", "https://data.delijn.be/stops/209236"], ["https://data.delijn.be/stops/501663", "https://data.delijn.be/stops/501665"], ["https://data.delijn.be/stops/303813", "https://data.delijn.be/stops/303868"], ["https://data.delijn.be/stops/208720", "https://data.delijn.be/stops/209721"], ["https://data.delijn.be/stops/300847", "https://data.delijn.be/stops/301579"], ["https://data.delijn.be/stops/504530", "https://data.delijn.be/stops/509526"], ["https://data.delijn.be/stops/504853", "https://data.delijn.be/stops/507240"], ["https://data.delijn.be/stops/502330", "https://data.delijn.be/stops/507320"], ["https://data.delijn.be/stops/303837", "https://data.delijn.be/stops/303859"], ["https://data.delijn.be/stops/101350", "https://data.delijn.be/stops/101355"], ["https://data.delijn.be/stops/303446", "https://data.delijn.be/stops/303447"], ["https://data.delijn.be/stops/405776", "https://data.delijn.be/stops/409762"], ["https://data.delijn.be/stops/106020", "https://data.delijn.be/stops/106190"], ["https://data.delijn.be/stops/208459", "https://data.delijn.be/stops/209459"], ["https://data.delijn.be/stops/202410", "https://data.delijn.be/stops/203409"], ["https://data.delijn.be/stops/501438", "https://data.delijn.be/stops/501444"], ["https://data.delijn.be/stops/101268", "https://data.delijn.be/stops/104101"], ["https://data.delijn.be/stops/305055", "https://data.delijn.be/stops/305180"], ["https://data.delijn.be/stops/206310", "https://data.delijn.be/stops/207310"], ["https://data.delijn.be/stops/208743", "https://data.delijn.be/stops/208745"], ["https://data.delijn.be/stops/303049", "https://data.delijn.be/stops/306109"], ["https://data.delijn.be/stops/408599", "https://data.delijn.be/stops/408606"], ["https://data.delijn.be/stops/503726", "https://data.delijn.be/stops/508717"], ["https://data.delijn.be/stops/203751", "https://data.delijn.be/stops/203762"], ["https://data.delijn.be/stops/405190", "https://data.delijn.be/stops/406323"], ["https://data.delijn.be/stops/501686", "https://data.delijn.be/stops/505401"], ["https://data.delijn.be/stops/303996", "https://data.delijn.be/stops/308047"], ["https://data.delijn.be/stops/203091", "https://data.delijn.be/stops/211291"], ["https://data.delijn.be/stops/302293", "https://data.delijn.be/stops/303507"], ["https://data.delijn.be/stops/404711", "https://data.delijn.be/stops/404755"], ["https://data.delijn.be/stops/210019", "https://data.delijn.be/stops/211019"], ["https://data.delijn.be/stops/102472", "https://data.delijn.be/stops/406852"], ["https://data.delijn.be/stops/401586", "https://data.delijn.be/stops/401589"], ["https://data.delijn.be/stops/302466", "https://data.delijn.be/stops/306744"], ["https://data.delijn.be/stops/206207", "https://data.delijn.be/stops/207207"], ["https://data.delijn.be/stops/301907", "https://data.delijn.be/stops/306146"], ["https://data.delijn.be/stops/109176", "https://data.delijn.be/stops/109177"], ["https://data.delijn.be/stops/505208", "https://data.delijn.be/stops/505972"], ["https://data.delijn.be/stops/504008", "https://data.delijn.be/stops/505967"], ["https://data.delijn.be/stops/503534", "https://data.delijn.be/stops/508534"], ["https://data.delijn.be/stops/400710", "https://data.delijn.be/stops/409506"], ["https://data.delijn.be/stops/102466", "https://data.delijn.be/stops/400414"], ["https://data.delijn.be/stops/306879", "https://data.delijn.be/stops/308696"], ["https://data.delijn.be/stops/201047", "https://data.delijn.be/stops/203457"], ["https://data.delijn.be/stops/301987", "https://data.delijn.be/stops/303615"], ["https://data.delijn.be/stops/206060", "https://data.delijn.be/stops/207060"], ["https://data.delijn.be/stops/301980", "https://data.delijn.be/stops/301981"], ["https://data.delijn.be/stops/403811", "https://data.delijn.be/stops/403813"], ["https://data.delijn.be/stops/406159", "https://data.delijn.be/stops/406297"], ["https://data.delijn.be/stops/407938", "https://data.delijn.be/stops/408123"], ["https://data.delijn.be/stops/208424", "https://data.delijn.be/stops/209168"], ["https://data.delijn.be/stops/405264", "https://data.delijn.be/stops/406725"], ["https://data.delijn.be/stops/200523", "https://data.delijn.be/stops/201524"], ["https://data.delijn.be/stops/304408", "https://data.delijn.be/stops/308058"], ["https://data.delijn.be/stops/408172", "https://data.delijn.be/stops/408174"], ["https://data.delijn.be/stops/401216", "https://data.delijn.be/stops/401388"], ["https://data.delijn.be/stops/302891", "https://data.delijn.be/stops/302895"], ["https://data.delijn.be/stops/206801", "https://data.delijn.be/stops/207941"], ["https://data.delijn.be/stops/302229", "https://data.delijn.be/stops/302232"], ["https://data.delijn.be/stops/207301", "https://data.delijn.be/stops/207859"], ["https://data.delijn.be/stops/108112", "https://data.delijn.be/stops/108113"], ["https://data.delijn.be/stops/101905", "https://data.delijn.be/stops/103695"], ["https://data.delijn.be/stops/307298", "https://data.delijn.be/stops/307323"], ["https://data.delijn.be/stops/502653", "https://data.delijn.be/stops/505180"], ["https://data.delijn.be/stops/206819", "https://data.delijn.be/stops/207819"], ["https://data.delijn.be/stops/410398", "https://data.delijn.be/stops/410399"], ["https://data.delijn.be/stops/104388", "https://data.delijn.be/stops/104391"], ["https://data.delijn.be/stops/302414", "https://data.delijn.be/stops/307111"], ["https://data.delijn.be/stops/200933", "https://data.delijn.be/stops/210076"], ["https://data.delijn.be/stops/104521", "https://data.delijn.be/stops/104721"], ["https://data.delijn.be/stops/301052", "https://data.delijn.be/stops/301055"], ["https://data.delijn.be/stops/402443", "https://data.delijn.be/stops/402445"], ["https://data.delijn.be/stops/306668", "https://data.delijn.be/stops/306670"], ["https://data.delijn.be/stops/106912", "https://data.delijn.be/stops/107256"], ["https://data.delijn.be/stops/206577", "https://data.delijn.be/stops/207563"], ["https://data.delijn.be/stops/205933", "https://data.delijn.be/stops/209979"], ["https://data.delijn.be/stops/400884", "https://data.delijn.be/stops/409660"], ["https://data.delijn.be/stops/304531", "https://data.delijn.be/stops/304532"], ["https://data.delijn.be/stops/103466", "https://data.delijn.be/stops/103467"], ["https://data.delijn.be/stops/109654", "https://data.delijn.be/stops/109655"], ["https://data.delijn.be/stops/206013", "https://data.delijn.be/stops/207014"], ["https://data.delijn.be/stops/206572", "https://data.delijn.be/stops/208953"], ["https://data.delijn.be/stops/109179", "https://data.delijn.be/stops/109182"], ["https://data.delijn.be/stops/304829", "https://data.delijn.be/stops/304831"], ["https://data.delijn.be/stops/101579", "https://data.delijn.be/stops/101581"], ["https://data.delijn.be/stops/304850", "https://data.delijn.be/stops/308649"], ["https://data.delijn.be/stops/304272", "https://data.delijn.be/stops/304276"], ["https://data.delijn.be/stops/501229", "https://data.delijn.be/stops/506475"], ["https://data.delijn.be/stops/503109", "https://data.delijn.be/stops/503414"], ["https://data.delijn.be/stops/504326", "https://data.delijn.be/stops/505925"], ["https://data.delijn.be/stops/304892", "https://data.delijn.be/stops/304903"], ["https://data.delijn.be/stops/105150", "https://data.delijn.be/stops/105615"], ["https://data.delijn.be/stops/203653", "https://data.delijn.be/stops/203654"], ["https://data.delijn.be/stops/101094", "https://data.delijn.be/stops/104462"], ["https://data.delijn.be/stops/503811", "https://data.delijn.be/stops/508811"], ["https://data.delijn.be/stops/302263", "https://data.delijn.be/stops/303200"], ["https://data.delijn.be/stops/405336", "https://data.delijn.be/stops/405341"], ["https://data.delijn.be/stops/101192", "https://data.delijn.be/stops/205668"], ["https://data.delijn.be/stops/501681", "https://data.delijn.be/stops/506413"], ["https://data.delijn.be/stops/109657", "https://data.delijn.be/stops/406508"], ["https://data.delijn.be/stops/208332", "https://data.delijn.be/stops/208377"], ["https://data.delijn.be/stops/208378", "https://data.delijn.be/stops/208403"], ["https://data.delijn.be/stops/302054", "https://data.delijn.be/stops/307284"], ["https://data.delijn.be/stops/101512", "https://data.delijn.be/stops/109076"], ["https://data.delijn.be/stops/209332", "https://data.delijn.be/stops/218008"], ["https://data.delijn.be/stops/200263", "https://data.delijn.be/stops/202549"], ["https://data.delijn.be/stops/106810", "https://data.delijn.be/stops/106811"], ["https://data.delijn.be/stops/401242", "https://data.delijn.be/stops/401330"], ["https://data.delijn.be/stops/202973", "https://data.delijn.be/stops/205074"], ["https://data.delijn.be/stops/403647", "https://data.delijn.be/stops/408085"], ["https://data.delijn.be/stops/304050", "https://data.delijn.be/stops/304051"], ["https://data.delijn.be/stops/402177", "https://data.delijn.be/stops/410072"], ["https://data.delijn.be/stops/405768", "https://data.delijn.be/stops/409330"], ["https://data.delijn.be/stops/202923", "https://data.delijn.be/stops/202926"], ["https://data.delijn.be/stops/405473", "https://data.delijn.be/stops/406600"], ["https://data.delijn.be/stops/509401", "https://data.delijn.be/stops/509428"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/504556"], ["https://data.delijn.be/stops/404939", "https://data.delijn.be/stops/408583"], ["https://data.delijn.be/stops/210093", "https://data.delijn.be/stops/211093"], ["https://data.delijn.be/stops/108573", "https://data.delijn.be/stops/109681"], ["https://data.delijn.be/stops/305461", "https://data.delijn.be/stops/305463"], ["https://data.delijn.be/stops/500230", "https://data.delijn.be/stops/590333"], ["https://data.delijn.be/stops/400237", "https://data.delijn.be/stops/406283"], ["https://data.delijn.be/stops/204131", "https://data.delijn.be/stops/205131"], ["https://data.delijn.be/stops/508126", "https://data.delijn.be/stops/509885"], ["https://data.delijn.be/stops/107370", "https://data.delijn.be/stops/107375"], ["https://data.delijn.be/stops/501760", "https://data.delijn.be/stops/506760"], ["https://data.delijn.be/stops/101166", "https://data.delijn.be/stops/104315"], ["https://data.delijn.be/stops/506045", "https://data.delijn.be/stops/506051"], ["https://data.delijn.be/stops/102159", "https://data.delijn.be/stops/108959"], ["https://data.delijn.be/stops/108127", "https://data.delijn.be/stops/108319"], ["https://data.delijn.be/stops/206665", "https://data.delijn.be/stops/206719"], ["https://data.delijn.be/stops/502932", "https://data.delijn.be/stops/504961"], ["https://data.delijn.be/stops/302472", "https://data.delijn.be/stops/302474"], ["https://data.delijn.be/stops/107974", "https://data.delijn.be/stops/107976"], ["https://data.delijn.be/stops/102179", "https://data.delijn.be/stops/102960"], ["https://data.delijn.be/stops/102708", "https://data.delijn.be/stops/102842"], ["https://data.delijn.be/stops/302075", "https://data.delijn.be/stops/302088"], ["https://data.delijn.be/stops/404926", "https://data.delijn.be/stops/404927"], ["https://data.delijn.be/stops/405519", "https://data.delijn.be/stops/407295"], ["https://data.delijn.be/stops/301316", "https://data.delijn.be/stops/306286"], ["https://data.delijn.be/stops/102969", "https://data.delijn.be/stops/106039"], ["https://data.delijn.be/stops/206614", "https://data.delijn.be/stops/206764"], ["https://data.delijn.be/stops/508069", "https://data.delijn.be/stops/508522"], ["https://data.delijn.be/stops/401208", "https://data.delijn.be/stops/401209"], ["https://data.delijn.be/stops/307406", "https://data.delijn.be/stops/308054"], ["https://data.delijn.be/stops/200626", "https://data.delijn.be/stops/210092"], ["https://data.delijn.be/stops/300435", "https://data.delijn.be/stops/301273"], ["https://data.delijn.be/stops/502765", "https://data.delijn.be/stops/507712"], ["https://data.delijn.be/stops/408230", "https://data.delijn.be/stops/408231"], ["https://data.delijn.be/stops/503671", "https://data.delijn.be/stops/508671"], ["https://data.delijn.be/stops/502072", "https://data.delijn.be/stops/505705"], ["https://data.delijn.be/stops/302575", "https://data.delijn.be/stops/305125"], ["https://data.delijn.be/stops/500941", "https://data.delijn.be/stops/508181"], ["https://data.delijn.be/stops/409687", "https://data.delijn.be/stops/409704"], ["https://data.delijn.be/stops/206117", "https://data.delijn.be/stops/207116"], ["https://data.delijn.be/stops/304960", "https://data.delijn.be/stops/304961"], ["https://data.delijn.be/stops/404217", "https://data.delijn.be/stops/404219"], ["https://data.delijn.be/stops/504048", "https://data.delijn.be/stops/504988"], ["https://data.delijn.be/stops/108995", "https://data.delijn.be/stops/108997"], ["https://data.delijn.be/stops/402718", "https://data.delijn.be/stops/405994"], ["https://data.delijn.be/stops/402603", "https://data.delijn.be/stops/402643"], ["https://data.delijn.be/stops/507378", "https://data.delijn.be/stops/507400"], ["https://data.delijn.be/stops/102541", "https://data.delijn.be/stops/406547"], ["https://data.delijn.be/stops/207539", "https://data.delijn.be/stops/207540"], ["https://data.delijn.be/stops/501227", "https://data.delijn.be/stops/506227"], ["https://data.delijn.be/stops/206683", "https://data.delijn.be/stops/207976"], ["https://data.delijn.be/stops/300887", "https://data.delijn.be/stops/333233"], ["https://data.delijn.be/stops/406010", "https://data.delijn.be/stops/406133"], ["https://data.delijn.be/stops/209075", "https://data.delijn.be/stops/209127"], ["https://data.delijn.be/stops/401629", "https://data.delijn.be/stops/308246"], ["https://data.delijn.be/stops/301844", "https://data.delijn.be/stops/305979"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/204091"], ["https://data.delijn.be/stops/505521", "https://data.delijn.be/stops/505522"], ["https://data.delijn.be/stops/302627", "https://data.delijn.be/stops/302628"], ["https://data.delijn.be/stops/109730", "https://data.delijn.be/stops/205634"], ["https://data.delijn.be/stops/204929", "https://data.delijn.be/stops/209724"], ["https://data.delijn.be/stops/505996", "https://data.delijn.be/stops/508291"], ["https://data.delijn.be/stops/106171", "https://data.delijn.be/stops/107444"], ["https://data.delijn.be/stops/505988", "https://data.delijn.be/stops/509716"], ["https://data.delijn.be/stops/502519", "https://data.delijn.be/stops/507521"], ["https://data.delijn.be/stops/205941", "https://data.delijn.be/stops/211082"], ["https://data.delijn.be/stops/201803", "https://data.delijn.be/stops/201845"], ["https://data.delijn.be/stops/202782", "https://data.delijn.be/stops/203782"], ["https://data.delijn.be/stops/202479", "https://data.delijn.be/stops/203481"], ["https://data.delijn.be/stops/402290", "https://data.delijn.be/stops/402293"], ["https://data.delijn.be/stops/106011", "https://data.delijn.be/stops/107910"], ["https://data.delijn.be/stops/200942", "https://data.delijn.be/stops/200952"], ["https://data.delijn.be/stops/303620", "https://data.delijn.be/stops/303621"], ["https://data.delijn.be/stops/200105", "https://data.delijn.be/stops/200107"], ["https://data.delijn.be/stops/305348", "https://data.delijn.be/stops/307971"], ["https://data.delijn.be/stops/505899", "https://data.delijn.be/stops/508051"], ["https://data.delijn.be/stops/205481", "https://data.delijn.be/stops/205525"], ["https://data.delijn.be/stops/300658", "https://data.delijn.be/stops/302476"], ["https://data.delijn.be/stops/401924", "https://data.delijn.be/stops/405748"], ["https://data.delijn.be/stops/503978", "https://data.delijn.be/stops/508952"], ["https://data.delijn.be/stops/304032", "https://data.delijn.be/stops/306277"], ["https://data.delijn.be/stops/405500", "https://data.delijn.be/stops/406243"], ["https://data.delijn.be/stops/201222", "https://data.delijn.be/stops/209987"], ["https://data.delijn.be/stops/400091", "https://data.delijn.be/stops/400150"], ["https://data.delijn.be/stops/200754", "https://data.delijn.be/stops/200771"], ["https://data.delijn.be/stops/402240", "https://data.delijn.be/stops/402495"], ["https://data.delijn.be/stops/407994", "https://data.delijn.be/stops/407995"], ["https://data.delijn.be/stops/200944", "https://data.delijn.be/stops/203727"], ["https://data.delijn.be/stops/407856", "https://data.delijn.be/stops/407858"], ["https://data.delijn.be/stops/304438", "https://data.delijn.be/stops/304455"], ["https://data.delijn.be/stops/405157", "https://data.delijn.be/stops/405176"], ["https://data.delijn.be/stops/303376", "https://data.delijn.be/stops/308867"], ["https://data.delijn.be/stops/200509", "https://data.delijn.be/stops/211510"], ["https://data.delijn.be/stops/107074", "https://data.delijn.be/stops/107077"], ["https://data.delijn.be/stops/304329", "https://data.delijn.be/stops/304330"], ["https://data.delijn.be/stops/204993", "https://data.delijn.be/stops/205993"], ["https://data.delijn.be/stops/206679", "https://data.delijn.be/stops/209104"], ["https://data.delijn.be/stops/505407", "https://data.delijn.be/stops/505994"], ["https://data.delijn.be/stops/505768", "https://data.delijn.be/stops/507030"], ["https://data.delijn.be/stops/106692", "https://data.delijn.be/stops/106694"], ["https://data.delijn.be/stops/206278", "https://data.delijn.be/stops/207962"], ["https://data.delijn.be/stops/202221", "https://data.delijn.be/stops/205832"], ["https://data.delijn.be/stops/203693", "https://data.delijn.be/stops/211023"], ["https://data.delijn.be/stops/109635", "https://data.delijn.be/stops/109636"], ["https://data.delijn.be/stops/102126", "https://data.delijn.be/stops/107424"], ["https://data.delijn.be/stops/200385", "https://data.delijn.be/stops/200387"], ["https://data.delijn.be/stops/409077", "https://data.delijn.be/stops/409078"], ["https://data.delijn.be/stops/505625", "https://data.delijn.be/stops/505626"], ["https://data.delijn.be/stops/200477", "https://data.delijn.be/stops/208963"], ["https://data.delijn.be/stops/503444", "https://data.delijn.be/stops/504872"], ["https://data.delijn.be/stops/508691", "https://data.delijn.be/stops/509955"], ["https://data.delijn.be/stops/107458", "https://data.delijn.be/stops/107461"], ["https://data.delijn.be/stops/204991", "https://data.delijn.be/stops/208781"], ["https://data.delijn.be/stops/405064", "https://data.delijn.be/stops/405065"], ["https://data.delijn.be/stops/202747", "https://data.delijn.be/stops/206422"], ["https://data.delijn.be/stops/200979", "https://data.delijn.be/stops/201384"], ["https://data.delijn.be/stops/207561", "https://data.delijn.be/stops/207570"], ["https://data.delijn.be/stops/105737", "https://data.delijn.be/stops/109931"], ["https://data.delijn.be/stops/300334", "https://data.delijn.be/stops/300335"], ["https://data.delijn.be/stops/404167", "https://data.delijn.be/stops/404197"], ["https://data.delijn.be/stops/102725", "https://data.delijn.be/stops/109522"], ["https://data.delijn.be/stops/405504", "https://data.delijn.be/stops/408447"], ["https://data.delijn.be/stops/401777", "https://data.delijn.be/stops/401779"], ["https://data.delijn.be/stops/503854", "https://data.delijn.be/stops/503859"], ["https://data.delijn.be/stops/201701", "https://data.delijn.be/stops/202556"], ["https://data.delijn.be/stops/105274", "https://data.delijn.be/stops/105276"], ["https://data.delijn.be/stops/502411", "https://data.delijn.be/stops/502581"], ["https://data.delijn.be/stops/202347", "https://data.delijn.be/stops/208528"], ["https://data.delijn.be/stops/405772", "https://data.delijn.be/stops/405773"], ["https://data.delijn.be/stops/503056", "https://data.delijn.be/stops/508054"], ["https://data.delijn.be/stops/102292", "https://data.delijn.be/stops/109735"], ["https://data.delijn.be/stops/108573", "https://data.delijn.be/stops/108991"], ["https://data.delijn.be/stops/503084", "https://data.delijn.be/stops/503631"], ["https://data.delijn.be/stops/405779", "https://data.delijn.be/stops/405826"], ["https://data.delijn.be/stops/503978", "https://data.delijn.be/stops/509978"], ["https://data.delijn.be/stops/504853", "https://data.delijn.be/stops/508833"], ["https://data.delijn.be/stops/403493", "https://data.delijn.be/stops/403494"], ["https://data.delijn.be/stops/105799", "https://data.delijn.be/stops/105801"], ["https://data.delijn.be/stops/303293", "https://data.delijn.be/stops/306971"], ["https://data.delijn.be/stops/401066", "https://data.delijn.be/stops/401177"], ["https://data.delijn.be/stops/106114", "https://data.delijn.be/stops/106115"], ["https://data.delijn.be/stops/501071", "https://data.delijn.be/stops/501075"], ["https://data.delijn.be/stops/407558", "https://data.delijn.be/stops/407559"], ["https://data.delijn.be/stops/507352", "https://data.delijn.be/stops/508718"], ["https://data.delijn.be/stops/401848", "https://data.delijn.be/stops/406237"], ["https://data.delijn.be/stops/103502", "https://data.delijn.be/stops/109896"], ["https://data.delijn.be/stops/206279", "https://data.delijn.be/stops/207280"], ["https://data.delijn.be/stops/303471", "https://data.delijn.be/stops/304176"], ["https://data.delijn.be/stops/402855", "https://data.delijn.be/stops/402856"], ["https://data.delijn.be/stops/407138", "https://data.delijn.be/stops/407286"], ["https://data.delijn.be/stops/410052", "https://data.delijn.be/stops/410053"], ["https://data.delijn.be/stops/502407", "https://data.delijn.be/stops/507407"], ["https://data.delijn.be/stops/207839", "https://data.delijn.be/stops/208953"], ["https://data.delijn.be/stops/104590", "https://data.delijn.be/stops/105065"], ["https://data.delijn.be/stops/505368", "https://data.delijn.be/stops/509057"], ["https://data.delijn.be/stops/506246", "https://data.delijn.be/stops/506768"], ["https://data.delijn.be/stops/204195", "https://data.delijn.be/stops/205195"], ["https://data.delijn.be/stops/405552", "https://data.delijn.be/stops/405604"], ["https://data.delijn.be/stops/400077", "https://data.delijn.be/stops/406362"], ["https://data.delijn.be/stops/202088", "https://data.delijn.be/stops/203721"], ["https://data.delijn.be/stops/404361", "https://data.delijn.be/stops/404366"], ["https://data.delijn.be/stops/303713", "https://data.delijn.be/stops/303720"], ["https://data.delijn.be/stops/506370", "https://data.delijn.be/stops/506768"], ["https://data.delijn.be/stops/101206", "https://data.delijn.be/stops/205542"], ["https://data.delijn.be/stops/401790", "https://data.delijn.be/stops/406125"], ["https://data.delijn.be/stops/304957", "https://data.delijn.be/stops/304970"], ["https://data.delijn.be/stops/103486", "https://data.delijn.be/stops/103493"], ["https://data.delijn.be/stops/104450", "https://data.delijn.be/stops/104600"], ["https://data.delijn.be/stops/405830", "https://data.delijn.be/stops/409698"], ["https://data.delijn.be/stops/501147", "https://data.delijn.be/stops/509834"], ["https://data.delijn.be/stops/102323", "https://data.delijn.be/stops/105266"], ["https://data.delijn.be/stops/405249", "https://data.delijn.be/stops/407313"], ["https://data.delijn.be/stops/106878", "https://data.delijn.be/stops/106881"], ["https://data.delijn.be/stops/105798", "https://data.delijn.be/stops/105801"], ["https://data.delijn.be/stops/207884", "https://data.delijn.be/stops/207893"], ["https://data.delijn.be/stops/108279", "https://data.delijn.be/stops/108281"], ["https://data.delijn.be/stops/107225", "https://data.delijn.be/stops/109888"], ["https://data.delijn.be/stops/407511", "https://data.delijn.be/stops/409746"], ["https://data.delijn.be/stops/206244", "https://data.delijn.be/stops/207403"], ["https://data.delijn.be/stops/502495", "https://data.delijn.be/stops/507734"], ["https://data.delijn.be/stops/200007", "https://data.delijn.be/stops/201008"], ["https://data.delijn.be/stops/108962", "https://data.delijn.be/stops/108963"], ["https://data.delijn.be/stops/200019", "https://data.delijn.be/stops/202648"], ["https://data.delijn.be/stops/503431", "https://data.delijn.be/stops/503441"], ["https://data.delijn.be/stops/201387", "https://data.delijn.be/stops/203647"], ["https://data.delijn.be/stops/501422", "https://data.delijn.be/stops/506218"], ["https://data.delijn.be/stops/508568", "https://data.delijn.be/stops/508807"], ["https://data.delijn.be/stops/400327", "https://data.delijn.be/stops/400360"], ["https://data.delijn.be/stops/407678", "https://data.delijn.be/stops/407679"], ["https://data.delijn.be/stops/506317", "https://data.delijn.be/stops/506328"], ["https://data.delijn.be/stops/403572", "https://data.delijn.be/stops/409526"], ["https://data.delijn.be/stops/204053", "https://data.delijn.be/stops/204704"], ["https://data.delijn.be/stops/401628", "https://data.delijn.be/stops/308217"], ["https://data.delijn.be/stops/201972", "https://data.delijn.be/stops/208692"], ["https://data.delijn.be/stops/102198", "https://data.delijn.be/stops/105256"], ["https://data.delijn.be/stops/204759", "https://data.delijn.be/stops/205376"], ["https://data.delijn.be/stops/306699", "https://data.delijn.be/stops/306702"], ["https://data.delijn.be/stops/402975", "https://data.delijn.be/stops/403318"], ["https://data.delijn.be/stops/405737", "https://data.delijn.be/stops/410142"], ["https://data.delijn.be/stops/304712", "https://data.delijn.be/stops/306335"], ["https://data.delijn.be/stops/202713", "https://data.delijn.be/stops/203729"], ["https://data.delijn.be/stops/500026", "https://data.delijn.be/stops/500027"], ["https://data.delijn.be/stops/208609", "https://data.delijn.be/stops/208610"], ["https://data.delijn.be/stops/105288", "https://data.delijn.be/stops/106495"], ["https://data.delijn.be/stops/504211", "https://data.delijn.be/stops/504217"], ["https://data.delijn.be/stops/504352", "https://data.delijn.be/stops/509353"], ["https://data.delijn.be/stops/101687", "https://data.delijn.be/stops/103693"], ["https://data.delijn.be/stops/101440", "https://data.delijn.be/stops/104122"], ["https://data.delijn.be/stops/206707", "https://data.delijn.be/stops/207613"], ["https://data.delijn.be/stops/501405", "https://data.delijn.be/stops/501407"], ["https://data.delijn.be/stops/206181", "https://data.delijn.be/stops/308566"], ["https://data.delijn.be/stops/103142", "https://data.delijn.be/stops/103143"], ["https://data.delijn.be/stops/209574", "https://data.delijn.be/stops/307312"], ["https://data.delijn.be/stops/104286", "https://data.delijn.be/stops/109748"], ["https://data.delijn.be/stops/102648", "https://data.delijn.be/stops/107813"], ["https://data.delijn.be/stops/501776", "https://data.delijn.be/stops/501778"], ["https://data.delijn.be/stops/302134", "https://data.delijn.be/stops/305597"], ["https://data.delijn.be/stops/404060", "https://data.delijn.be/stops/404061"], ["https://data.delijn.be/stops/303418", "https://data.delijn.be/stops/303419"], ["https://data.delijn.be/stops/403525", "https://data.delijn.be/stops/403619"], ["https://data.delijn.be/stops/200101", "https://data.delijn.be/stops/201101"], ["https://data.delijn.be/stops/206545", "https://data.delijn.be/stops/207545"], ["https://data.delijn.be/stops/204133", "https://data.delijn.be/stops/205238"], ["https://data.delijn.be/stops/109021", "https://data.delijn.be/stops/109022"], ["https://data.delijn.be/stops/505018", "https://data.delijn.be/stops/507550"], ["https://data.delijn.be/stops/303299", "https://data.delijn.be/stops/303301"], ["https://data.delijn.be/stops/400823", "https://data.delijn.be/stops/403570"], ["https://data.delijn.be/stops/304431", "https://data.delijn.be/stops/307697"], ["https://data.delijn.be/stops/504026", "https://data.delijn.be/stops/509036"], ["https://data.delijn.be/stops/203029", "https://data.delijn.be/stops/203034"], ["https://data.delijn.be/stops/206551", "https://data.delijn.be/stops/207550"], ["https://data.delijn.be/stops/400366", "https://data.delijn.be/stops/400367"], ["https://data.delijn.be/stops/300114", "https://data.delijn.be/stops/306845"], ["https://data.delijn.be/stops/206385", "https://data.delijn.be/stops/207385"], ["https://data.delijn.be/stops/404243", "https://data.delijn.be/stops/409813"], ["https://data.delijn.be/stops/300157", "https://data.delijn.be/stops/300176"], ["https://data.delijn.be/stops/104899", "https://data.delijn.be/stops/107545"], ["https://data.delijn.be/stops/200338", "https://data.delijn.be/stops/201295"], ["https://data.delijn.be/stops/305280", "https://data.delijn.be/stops/305325"], ["https://data.delijn.be/stops/408868", "https://data.delijn.be/stops/408869"], ["https://data.delijn.be/stops/409072", "https://data.delijn.be/stops/409154"], ["https://data.delijn.be/stops/108810", "https://data.delijn.be/stops/108811"], ["https://data.delijn.be/stops/501536", "https://data.delijn.be/stops/505398"], ["https://data.delijn.be/stops/303401", "https://data.delijn.be/stops/303793"], ["https://data.delijn.be/stops/502403", "https://data.delijn.be/stops/507398"], ["https://data.delijn.be/stops/302888", "https://data.delijn.be/stops/302898"], ["https://data.delijn.be/stops/407700", "https://data.delijn.be/stops/408448"], ["https://data.delijn.be/stops/203810", "https://data.delijn.be/stops/208736"], ["https://data.delijn.be/stops/206544", "https://data.delijn.be/stops/209750"], ["https://data.delijn.be/stops/409616", "https://data.delijn.be/stops/409664"], ["https://data.delijn.be/stops/203840", "https://data.delijn.be/stops/208736"], ["https://data.delijn.be/stops/201812", "https://data.delijn.be/stops/201813"], ["https://data.delijn.be/stops/201934", "https://data.delijn.be/stops/203440"], ["https://data.delijn.be/stops/300499", "https://data.delijn.be/stops/300529"], ["https://data.delijn.be/stops/403272", "https://data.delijn.be/stops/408453"], ["https://data.delijn.be/stops/300335", "https://data.delijn.be/stops/307649"], ["https://data.delijn.be/stops/101372", "https://data.delijn.be/stops/101400"], ["https://data.delijn.be/stops/408095", "https://data.delijn.be/stops/409108"], ["https://data.delijn.be/stops/204378", "https://data.delijn.be/stops/205378"], ["https://data.delijn.be/stops/207370", "https://data.delijn.be/stops/207728"], ["https://data.delijn.be/stops/503778", "https://data.delijn.be/stops/503779"], ["https://data.delijn.be/stops/206424", "https://data.delijn.be/stops/206568"], ["https://data.delijn.be/stops/204584", "https://data.delijn.be/stops/205154"], ["https://data.delijn.be/stops/200640", "https://data.delijn.be/stops/203905"], ["https://data.delijn.be/stops/409857", "https://data.delijn.be/stops/410094"], ["https://data.delijn.be/stops/508185", "https://data.delijn.be/stops/508187"], ["https://data.delijn.be/stops/107548", "https://data.delijn.be/stops/108125"], ["https://data.delijn.be/stops/205237", "https://data.delijn.be/stops/207313"], ["https://data.delijn.be/stops/300449", "https://data.delijn.be/stops/306288"], ["https://data.delijn.be/stops/406350", "https://data.delijn.be/stops/406374"], ["https://data.delijn.be/stops/207475", "https://data.delijn.be/stops/207508"], ["https://data.delijn.be/stops/504192", "https://data.delijn.be/stops/509192"], ["https://data.delijn.be/stops/103130", "https://data.delijn.be/stops/104910"], ["https://data.delijn.be/stops/504766", "https://data.delijn.be/stops/504767"], ["https://data.delijn.be/stops/404729", "https://data.delijn.be/stops/406751"], ["https://data.delijn.be/stops/300998", "https://data.delijn.be/stops/301004"], ["https://data.delijn.be/stops/300346", "https://data.delijn.be/stops/304714"], ["https://data.delijn.be/stops/408034", "https://data.delijn.be/stops/408055"], ["https://data.delijn.be/stops/209289", "https://data.delijn.be/stops/218004"], ["https://data.delijn.be/stops/308495", "https://data.delijn.be/stops/308497"], ["https://data.delijn.be/stops/302737", "https://data.delijn.be/stops/307705"], ["https://data.delijn.be/stops/501186", "https://data.delijn.be/stops/507286"], ["https://data.delijn.be/stops/401441", "https://data.delijn.be/stops/404181"], ["https://data.delijn.be/stops/109276", "https://data.delijn.be/stops/109278"], ["https://data.delijn.be/stops/306644", "https://data.delijn.be/stops/308766"], ["https://data.delijn.be/stops/402537", "https://data.delijn.be/stops/402545"], ["https://data.delijn.be/stops/408206", "https://data.delijn.be/stops/408395"], ["https://data.delijn.be/stops/304368", "https://data.delijn.be/stops/307097"], ["https://data.delijn.be/stops/308060", "https://data.delijn.be/stops/308061"], ["https://data.delijn.be/stops/106953", "https://data.delijn.be/stops/106954"], ["https://data.delijn.be/stops/400455", "https://data.delijn.be/stops/400466"], ["https://data.delijn.be/stops/300705", "https://data.delijn.be/stops/308064"], ["https://data.delijn.be/stops/105888", "https://data.delijn.be/stops/105891"], ["https://data.delijn.be/stops/202946", "https://data.delijn.be/stops/203945"], ["https://data.delijn.be/stops/400879", "https://data.delijn.be/stops/409530"], ["https://data.delijn.be/stops/307330", "https://data.delijn.be/stops/307911"], ["https://data.delijn.be/stops/506000", "https://data.delijn.be/stops/508161"], ["https://data.delijn.be/stops/405760", "https://data.delijn.be/stops/303324"], ["https://data.delijn.be/stops/400458", "https://data.delijn.be/stops/407751"], ["https://data.delijn.be/stops/106129", "https://data.delijn.be/stops/106130"], ["https://data.delijn.be/stops/202314", "https://data.delijn.be/stops/202315"], ["https://data.delijn.be/stops/508167", "https://data.delijn.be/stops/508265"], ["https://data.delijn.be/stops/409295", "https://data.delijn.be/stops/409300"], ["https://data.delijn.be/stops/106310", "https://data.delijn.be/stops/106313"], ["https://data.delijn.be/stops/104601", "https://data.delijn.be/stops/106838"], ["https://data.delijn.be/stops/403001", "https://data.delijn.be/stops/409317"], ["https://data.delijn.be/stops/401295", "https://data.delijn.be/stops/405467"], ["https://data.delijn.be/stops/202511", "https://data.delijn.be/stops/202512"], ["https://data.delijn.be/stops/106097", "https://data.delijn.be/stops/106146"], ["https://data.delijn.be/stops/504548", "https://data.delijn.be/stops/504551"], ["https://data.delijn.be/stops/200346", "https://data.delijn.be/stops/201346"], ["https://data.delijn.be/stops/202302", "https://data.delijn.be/stops/203302"], ["https://data.delijn.be/stops/302530", "https://data.delijn.be/stops/308936"], ["https://data.delijn.be/stops/301740", "https://data.delijn.be/stops/308423"], ["https://data.delijn.be/stops/200210", "https://data.delijn.be/stops/201128"], ["https://data.delijn.be/stops/406908", "https://data.delijn.be/stops/406974"], ["https://data.delijn.be/stops/201639", "https://data.delijn.be/stops/202943"], ["https://data.delijn.be/stops/300487", "https://data.delijn.be/stops/307219"], ["https://data.delijn.be/stops/502439", "https://data.delijn.be/stops/505577"], ["https://data.delijn.be/stops/202676", "https://data.delijn.be/stops/203726"], ["https://data.delijn.be/stops/503731", "https://data.delijn.be/stops/508703"], ["https://data.delijn.be/stops/206762", "https://data.delijn.be/stops/206858"], ["https://data.delijn.be/stops/501248", "https://data.delijn.be/stops/506773"], ["https://data.delijn.be/stops/101849", "https://data.delijn.be/stops/107229"], ["https://data.delijn.be/stops/302619", "https://data.delijn.be/stops/303256"], ["https://data.delijn.be/stops/305385", "https://data.delijn.be/stops/305398"], ["https://data.delijn.be/stops/507494", "https://data.delijn.be/stops/507512"], ["https://data.delijn.be/stops/108628", "https://data.delijn.be/stops/108993"], ["https://data.delijn.be/stops/503221", "https://data.delijn.be/stops/508221"], ["https://data.delijn.be/stops/301390", "https://data.delijn.be/stops/304685"], ["https://data.delijn.be/stops/407069", "https://data.delijn.be/stops/407071"], ["https://data.delijn.be/stops/307160", "https://data.delijn.be/stops/307777"], ["https://data.delijn.be/stops/307330", "https://data.delijn.be/stops/308156"], ["https://data.delijn.be/stops/404933", "https://data.delijn.be/stops/404939"], ["https://data.delijn.be/stops/303564", "https://data.delijn.be/stops/303565"], ["https://data.delijn.be/stops/102192", "https://data.delijn.be/stops/102193"], ["https://data.delijn.be/stops/207902", "https://data.delijn.be/stops/207917"], ["https://data.delijn.be/stops/107854", "https://data.delijn.be/stops/107858"], ["https://data.delijn.be/stops/207597", "https://data.delijn.be/stops/209665"], ["https://data.delijn.be/stops/108607", "https://data.delijn.be/stops/307349"], ["https://data.delijn.be/stops/202386", "https://data.delijn.be/stops/203387"], ["https://data.delijn.be/stops/107689", "https://data.delijn.be/stops/108705"], ["https://data.delijn.be/stops/201949", "https://data.delijn.be/stops/202943"], ["https://data.delijn.be/stops/304322", "https://data.delijn.be/stops/306882"], ["https://data.delijn.be/stops/104884", "https://data.delijn.be/stops/205630"], ["https://data.delijn.be/stops/500128", "https://data.delijn.be/stops/505741"], ["https://data.delijn.be/stops/401418", "https://data.delijn.be/stops/301076"], ["https://data.delijn.be/stops/403008", "https://data.delijn.be/stops/403309"], ["https://data.delijn.be/stops/406154", "https://data.delijn.be/stops/406156"], ["https://data.delijn.be/stops/208015", "https://data.delijn.be/stops/209096"], ["https://data.delijn.be/stops/300719", "https://data.delijn.be/stops/300720"], ["https://data.delijn.be/stops/508793", "https://data.delijn.be/stops/508864"], ["https://data.delijn.be/stops/403093", "https://data.delijn.be/stops/403125"], ["https://data.delijn.be/stops/200950", "https://data.delijn.be/stops/203228"], ["https://data.delijn.be/stops/507668", "https://data.delijn.be/stops/507669"], ["https://data.delijn.be/stops/200351", "https://data.delijn.be/stops/200353"], ["https://data.delijn.be/stops/206503", "https://data.delijn.be/stops/207152"], ["https://data.delijn.be/stops/503809", "https://data.delijn.be/stops/508802"], ["https://data.delijn.be/stops/407725", "https://data.delijn.be/stops/410087"], ["https://data.delijn.be/stops/402510", "https://data.delijn.be/stops/402519"], ["https://data.delijn.be/stops/303965", "https://data.delijn.be/stops/303967"], ["https://data.delijn.be/stops/204979", "https://data.delijn.be/stops/209162"], ["https://data.delijn.be/stops/401063", "https://data.delijn.be/stops/407099"], ["https://data.delijn.be/stops/104607", "https://data.delijn.be/stops/108462"], ["https://data.delijn.be/stops/108877", "https://data.delijn.be/stops/108879"], ["https://data.delijn.be/stops/304890", "https://data.delijn.be/stops/306710"], ["https://data.delijn.be/stops/405620", "https://data.delijn.be/stops/406786"], ["https://data.delijn.be/stops/204507", "https://data.delijn.be/stops/205508"], ["https://data.delijn.be/stops/204210", "https://data.delijn.be/stops/206312"], ["https://data.delijn.be/stops/502667", "https://data.delijn.be/stops/507667"], ["https://data.delijn.be/stops/408686", "https://data.delijn.be/stops/410083"], ["https://data.delijn.be/stops/201922", "https://data.delijn.be/stops/202240"], ["https://data.delijn.be/stops/103225", "https://data.delijn.be/stops/107395"], ["https://data.delijn.be/stops/408563", "https://data.delijn.be/stops/408691"], ["https://data.delijn.be/stops/109989", "https://data.delijn.be/stops/109991"], ["https://data.delijn.be/stops/300028", "https://data.delijn.be/stops/307435"], ["https://data.delijn.be/stops/200594", "https://data.delijn.be/stops/210129"], ["https://data.delijn.be/stops/405530", "https://data.delijn.be/stops/407284"], ["https://data.delijn.be/stops/105166", "https://data.delijn.be/stops/105369"], ["https://data.delijn.be/stops/204046", "https://data.delijn.be/stops/205517"], ["https://data.delijn.be/stops/108679", "https://data.delijn.be/stops/306628"], ["https://data.delijn.be/stops/402300", "https://data.delijn.be/stops/402366"], ["https://data.delijn.be/stops/402408", "https://data.delijn.be/stops/402433"], ["https://data.delijn.be/stops/502179", "https://data.delijn.be/stops/502180"], ["https://data.delijn.be/stops/105727", "https://data.delijn.be/stops/107090"], ["https://data.delijn.be/stops/205286", "https://data.delijn.be/stops/205695"], ["https://data.delijn.be/stops/106823", "https://data.delijn.be/stops/106825"], ["https://data.delijn.be/stops/208254", "https://data.delijn.be/stops/219027"], ["https://data.delijn.be/stops/200568", "https://data.delijn.be/stops/211094"], ["https://data.delijn.be/stops/501070", "https://data.delijn.be/stops/506379"], ["https://data.delijn.be/stops/501182", "https://data.delijn.be/stops/506677"], ["https://data.delijn.be/stops/506379", "https://data.delijn.be/stops/506384"], ["https://data.delijn.be/stops/204694", "https://data.delijn.be/stops/205209"], ["https://data.delijn.be/stops/208715", "https://data.delijn.be/stops/211004"], ["https://data.delijn.be/stops/208429", "https://data.delijn.be/stops/209429"], ["https://data.delijn.be/stops/305445", "https://data.delijn.be/stops/306701"], ["https://data.delijn.be/stops/308535", "https://data.delijn.be/stops/308692"], ["https://data.delijn.be/stops/203672", "https://data.delijn.be/stops/211036"], ["https://data.delijn.be/stops/106431", "https://data.delijn.be/stops/107116"], ["https://data.delijn.be/stops/206481", "https://data.delijn.be/stops/207453"], ["https://data.delijn.be/stops/200926", "https://data.delijn.be/stops/200938"], ["https://data.delijn.be/stops/203670", "https://data.delijn.be/stops/210034"], ["https://data.delijn.be/stops/204681", "https://data.delijn.be/stops/205615"], ["https://data.delijn.be/stops/505548", "https://data.delijn.be/stops/507688"], ["https://data.delijn.be/stops/504338", "https://data.delijn.be/stops/505169"], ["https://data.delijn.be/stops/201936", "https://data.delijn.be/stops/207409"], ["https://data.delijn.be/stops/300463", "https://data.delijn.be/stops/307905"], ["https://data.delijn.be/stops/403094", "https://data.delijn.be/stops/410336"], ["https://data.delijn.be/stops/208346", "https://data.delijn.be/stops/208347"], ["https://data.delijn.be/stops/103334", "https://data.delijn.be/stops/107044"], ["https://data.delijn.be/stops/105123", "https://data.delijn.be/stops/105124"], ["https://data.delijn.be/stops/102525", "https://data.delijn.be/stops/408203"], ["https://data.delijn.be/stops/400264", "https://data.delijn.be/stops/400945"], ["https://data.delijn.be/stops/204630", "https://data.delijn.be/stops/205631"], ["https://data.delijn.be/stops/301996", "https://data.delijn.be/stops/301997"], ["https://data.delijn.be/stops/304096", "https://data.delijn.be/stops/305999"], ["https://data.delijn.be/stops/204107", "https://data.delijn.be/stops/204667"], ["https://data.delijn.be/stops/304226", "https://data.delijn.be/stops/307067"], ["https://data.delijn.be/stops/106637", "https://data.delijn.be/stops/106640"], ["https://data.delijn.be/stops/502924", "https://data.delijn.be/stops/505318"], ["https://data.delijn.be/stops/102131", "https://data.delijn.be/stops/105719"], ["https://data.delijn.be/stops/301872", "https://data.delijn.be/stops/303167"], ["https://data.delijn.be/stops/200275", "https://data.delijn.be/stops/201275"], ["https://data.delijn.be/stops/308441", "https://data.delijn.be/stops/308442"], ["https://data.delijn.be/stops/504771", "https://data.delijn.be/stops/509876"], ["https://data.delijn.be/stops/200341", "https://data.delijn.be/stops/201310"], ["https://data.delijn.be/stops/503807", "https://data.delijn.be/stops/508809"], ["https://data.delijn.be/stops/103075", "https://data.delijn.be/stops/104225"], ["https://data.delijn.be/stops/404734", "https://data.delijn.be/stops/404735"], ["https://data.delijn.be/stops/504000", "https://data.delijn.be/stops/508228"], ["https://data.delijn.be/stops/106785", "https://data.delijn.be/stops/106786"], ["https://data.delijn.be/stops/307833", "https://data.delijn.be/stops/307834"], ["https://data.delijn.be/stops/206634", "https://data.delijn.be/stops/206635"], ["https://data.delijn.be/stops/102440", "https://data.delijn.be/stops/105430"], ["https://data.delijn.be/stops/404431", "https://data.delijn.be/stops/404551"], ["https://data.delijn.be/stops/500005", "https://data.delijn.be/stops/501472"], ["https://data.delijn.be/stops/301116", "https://data.delijn.be/stops/302804"], ["https://data.delijn.be/stops/303555", "https://data.delijn.be/stops/308791"], ["https://data.delijn.be/stops/200803", "https://data.delijn.be/stops/203074"], ["https://data.delijn.be/stops/408599", "https://data.delijn.be/stops/306776"], ["https://data.delijn.be/stops/109811", "https://data.delijn.be/stops/109815"], ["https://data.delijn.be/stops/405559", "https://data.delijn.be/stops/405569"], ["https://data.delijn.be/stops/300805", "https://data.delijn.be/stops/300806"], ["https://data.delijn.be/stops/106396", "https://data.delijn.be/stops/106570"], ["https://data.delijn.be/stops/102292", "https://data.delijn.be/stops/108289"], ["https://data.delijn.be/stops/107737", "https://data.delijn.be/stops/107738"], ["https://data.delijn.be/stops/101812", "https://data.delijn.be/stops/108041"], ["https://data.delijn.be/stops/206375", "https://data.delijn.be/stops/207351"], ["https://data.delijn.be/stops/405908", "https://data.delijn.be/stops/405909"], ["https://data.delijn.be/stops/208258", "https://data.delijn.be/stops/209257"], ["https://data.delijn.be/stops/107610", "https://data.delijn.be/stops/107695"], ["https://data.delijn.be/stops/408548", "https://data.delijn.be/stops/408763"], ["https://data.delijn.be/stops/305697", "https://data.delijn.be/stops/305716"], ["https://data.delijn.be/stops/301568", "https://data.delijn.be/stops/302681"], ["https://data.delijn.be/stops/405642", "https://data.delijn.be/stops/405643"], ["https://data.delijn.be/stops/204796", "https://data.delijn.be/stops/205584"], ["https://data.delijn.be/stops/107960", "https://data.delijn.be/stops/108125"], ["https://data.delijn.be/stops/403198", "https://data.delijn.be/stops/403199"], ["https://data.delijn.be/stops/204396", "https://data.delijn.be/stops/204769"], ["https://data.delijn.be/stops/508243", "https://data.delijn.be/stops/509766"], ["https://data.delijn.be/stops/401172", "https://data.delijn.be/stops/407171"], ["https://data.delijn.be/stops/200699", "https://data.delijn.be/stops/210027"], ["https://data.delijn.be/stops/405238", "https://data.delijn.be/stops/405281"], ["https://data.delijn.be/stops/300742", "https://data.delijn.be/stops/300806"], ["https://data.delijn.be/stops/300202", "https://data.delijn.be/stops/302202"], ["https://data.delijn.be/stops/503164", "https://data.delijn.be/stops/503999"], ["https://data.delijn.be/stops/205990", "https://data.delijn.be/stops/209361"], ["https://data.delijn.be/stops/306619", "https://data.delijn.be/stops/306621"], ["https://data.delijn.be/stops/303327", "https://data.delijn.be/stops/306337"], ["https://data.delijn.be/stops/301216", "https://data.delijn.be/stops/301218"], ["https://data.delijn.be/stops/202190", "https://data.delijn.be/stops/203190"], ["https://data.delijn.be/stops/403602", "https://data.delijn.be/stops/403603"], ["https://data.delijn.be/stops/504744", "https://data.delijn.be/stops/509744"], ["https://data.delijn.be/stops/104456", "https://data.delijn.be/stops/104478"], ["https://data.delijn.be/stops/202925", "https://data.delijn.be/stops/202926"], ["https://data.delijn.be/stops/204212", "https://data.delijn.be/stops/207394"], ["https://data.delijn.be/stops/506511", "https://data.delijn.be/stops/506783"], ["https://data.delijn.be/stops/200055", "https://data.delijn.be/stops/201891"], ["https://data.delijn.be/stops/109625", "https://data.delijn.be/stops/109627"], ["https://data.delijn.be/stops/305781", "https://data.delijn.be/stops/305800"], ["https://data.delijn.be/stops/507384", "https://data.delijn.be/stops/507387"], ["https://data.delijn.be/stops/102419", "https://data.delijn.be/stops/106216"], ["https://data.delijn.be/stops/305483", "https://data.delijn.be/stops/305520"], ["https://data.delijn.be/stops/208225", "https://data.delijn.be/stops/208226"], ["https://data.delijn.be/stops/304415", "https://data.delijn.be/stops/304416"], ["https://data.delijn.be/stops/301368", "https://data.delijn.be/stops/304529"], ["https://data.delijn.be/stops/102577", "https://data.delijn.be/stops/109740"], ["https://data.delijn.be/stops/408267", "https://data.delijn.be/stops/408405"], ["https://data.delijn.be/stops/208067", "https://data.delijn.be/stops/209194"], ["https://data.delijn.be/stops/103970", "https://data.delijn.be/stops/103975"], ["https://data.delijn.be/stops/205614", "https://data.delijn.be/stops/205633"], ["https://data.delijn.be/stops/501210", "https://data.delijn.be/stops/505047"], ["https://data.delijn.be/stops/504625", "https://data.delijn.be/stops/509625"], ["https://data.delijn.be/stops/300417", "https://data.delijn.be/stops/300426"], ["https://data.delijn.be/stops/400586", "https://data.delijn.be/stops/400607"], ["https://data.delijn.be/stops/206519", "https://data.delijn.be/stops/207479"], ["https://data.delijn.be/stops/501033", "https://data.delijn.be/stops/506043"], ["https://data.delijn.be/stops/302588", "https://data.delijn.be/stops/302678"], ["https://data.delijn.be/stops/508549", "https://data.delijn.be/stops/508601"], ["https://data.delijn.be/stops/502366", "https://data.delijn.be/stops/507366"], ["https://data.delijn.be/stops/304938", "https://data.delijn.be/stops/308019"], ["https://data.delijn.be/stops/104844", "https://data.delijn.be/stops/109962"], ["https://data.delijn.be/stops/407945", "https://data.delijn.be/stops/407991"], ["https://data.delijn.be/stops/408495", "https://data.delijn.be/stops/408700"], ["https://data.delijn.be/stops/503655", "https://data.delijn.be/stops/508655"], ["https://data.delijn.be/stops/505012", "https://data.delijn.be/stops/507558"], ["https://data.delijn.be/stops/206100", "https://data.delijn.be/stops/207098"], ["https://data.delijn.be/stops/108467", "https://data.delijn.be/stops/108471"], ["https://data.delijn.be/stops/200145", "https://data.delijn.be/stops/208849"], ["https://data.delijn.be/stops/205351", "https://data.delijn.be/stops/205706"], ["https://data.delijn.be/stops/300182", "https://data.delijn.be/stops/300228"], ["https://data.delijn.be/stops/301514", "https://data.delijn.be/stops/301515"], ["https://data.delijn.be/stops/404006", "https://data.delijn.be/stops/404007"], ["https://data.delijn.be/stops/202037", "https://data.delijn.be/stops/202983"], ["https://data.delijn.be/stops/401192", "https://data.delijn.be/stops/410259"], ["https://data.delijn.be/stops/509739", "https://data.delijn.be/stops/509740"], ["https://data.delijn.be/stops/501715", "https://data.delijn.be/stops/501716"], ["https://data.delijn.be/stops/503146", "https://data.delijn.be/stops/508143"], ["https://data.delijn.be/stops/105214", "https://data.delijn.be/stops/105543"], ["https://data.delijn.be/stops/401125", "https://data.delijn.be/stops/401137"], ["https://data.delijn.be/stops/409078", "https://data.delijn.be/stops/410049"], ["https://data.delijn.be/stops/305594", "https://data.delijn.be/stops/305604"], ["https://data.delijn.be/stops/301679", "https://data.delijn.be/stops/301680"], ["https://data.delijn.be/stops/101293", "https://data.delijn.be/stops/105394"], ["https://data.delijn.be/stops/109114", "https://data.delijn.be/stops/109116"], ["https://data.delijn.be/stops/501406", "https://data.delijn.be/stops/501563"], ["https://data.delijn.be/stops/207763", "https://data.delijn.be/stops/207790"], ["https://data.delijn.be/stops/102874", "https://data.delijn.be/stops/105000"], ["https://data.delijn.be/stops/209597", "https://data.delijn.be/stops/301418"], ["https://data.delijn.be/stops/207674", "https://data.delijn.be/stops/207675"], ["https://data.delijn.be/stops/104854", "https://data.delijn.be/stops/107893"], ["https://data.delijn.be/stops/204188", "https://data.delijn.be/stops/205187"], ["https://data.delijn.be/stops/108285", "https://data.delijn.be/stops/109005"], ["https://data.delijn.be/stops/304933", "https://data.delijn.be/stops/306091"], ["https://data.delijn.be/stops/404227", "https://data.delijn.be/stops/404247"], ["https://data.delijn.be/stops/408864", "https://data.delijn.be/stops/408867"], ["https://data.delijn.be/stops/202364", "https://data.delijn.be/stops/203364"], ["https://data.delijn.be/stops/304126", "https://data.delijn.be/stops/304157"], ["https://data.delijn.be/stops/102849", "https://data.delijn.be/stops/106777"], ["https://data.delijn.be/stops/302896", "https://data.delijn.be/stops/303236"], ["https://data.delijn.be/stops/107105", "https://data.delijn.be/stops/107110"], ["https://data.delijn.be/stops/402592", "https://data.delijn.be/stops/402655"], ["https://data.delijn.be/stops/303125", "https://data.delijn.be/stops/304576"], ["https://data.delijn.be/stops/202370", "https://data.delijn.be/stops/202371"], ["https://data.delijn.be/stops/408736", "https://data.delijn.be/stops/408773"], ["https://data.delijn.be/stops/300826", "https://data.delijn.be/stops/300854"], ["https://data.delijn.be/stops/407910", "https://data.delijn.be/stops/408018"], ["https://data.delijn.be/stops/503482", "https://data.delijn.be/stops/508490"], ["https://data.delijn.be/stops/404522", "https://data.delijn.be/stops/406786"], ["https://data.delijn.be/stops/502804", "https://data.delijn.be/stops/502806"], ["https://data.delijn.be/stops/202937", "https://data.delijn.be/stops/203937"], ["https://data.delijn.be/stops/210066", "https://data.delijn.be/stops/211048"], ["https://data.delijn.be/stops/503933", "https://data.delijn.be/stops/505798"], ["https://data.delijn.be/stops/206757", "https://data.delijn.be/stops/207620"], ["https://data.delijn.be/stops/504014", "https://data.delijn.be/stops/504515"], ["https://data.delijn.be/stops/406628", "https://data.delijn.be/stops/406632"], ["https://data.delijn.be/stops/304136", "https://data.delijn.be/stops/304497"], ["https://data.delijn.be/stops/405694", "https://data.delijn.be/stops/405991"], ["https://data.delijn.be/stops/102856", "https://data.delijn.be/stops/204612"], ["https://data.delijn.be/stops/103785", "https://data.delijn.be/stops/103790"], ["https://data.delijn.be/stops/200716", "https://data.delijn.be/stops/214018"], ["https://data.delijn.be/stops/102016", "https://data.delijn.be/stops/108760"], ["https://data.delijn.be/stops/503604", "https://data.delijn.be/stops/508604"], ["https://data.delijn.be/stops/103219", "https://data.delijn.be/stops/107362"], ["https://data.delijn.be/stops/300103", "https://data.delijn.be/stops/300114"], ["https://data.delijn.be/stops/501301", "https://data.delijn.be/stops/506301"], ["https://data.delijn.be/stops/105107", "https://data.delijn.be/stops/109504"], ["https://data.delijn.be/stops/204951", "https://data.delijn.be/stops/205951"], ["https://data.delijn.be/stops/105247", "https://data.delijn.be/stops/105249"], ["https://data.delijn.be/stops/301484", "https://data.delijn.be/stops/301495"], ["https://data.delijn.be/stops/201109", "https://data.delijn.be/stops/201386"], ["https://data.delijn.be/stops/501286", "https://data.delijn.be/stops/501568"], ["https://data.delijn.be/stops/503623", "https://data.delijn.be/stops/508620"], ["https://data.delijn.be/stops/403618", "https://data.delijn.be/stops/403630"], ["https://data.delijn.be/stops/303793", "https://data.delijn.be/stops/303797"], ["https://data.delijn.be/stops/104904", "https://data.delijn.be/stops/106600"], ["https://data.delijn.be/stops/504963", "https://data.delijn.be/stops/509448"], ["https://data.delijn.be/stops/403050", "https://data.delijn.be/stops/403051"], ["https://data.delijn.be/stops/200183", "https://data.delijn.be/stops/201928"], ["https://data.delijn.be/stops/208585", "https://data.delijn.be/stops/209697"], ["https://data.delijn.be/stops/200412", "https://data.delijn.be/stops/203360"], ["https://data.delijn.be/stops/303849", "https://data.delijn.be/stops/303850"], ["https://data.delijn.be/stops/202631", "https://data.delijn.be/stops/203631"], ["https://data.delijn.be/stops/209443", "https://data.delijn.be/stops/209444"], ["https://data.delijn.be/stops/206256", "https://data.delijn.be/stops/207255"], ["https://data.delijn.be/stops/304895", "https://data.delijn.be/stops/307829"], ["https://data.delijn.be/stops/301911", "https://data.delijn.be/stops/306253"], ["https://data.delijn.be/stops/501100", "https://data.delijn.be/stops/505152"], ["https://data.delijn.be/stops/102090", "https://data.delijn.be/stops/105280"], ["https://data.delijn.be/stops/407191", "https://data.delijn.be/stops/407192"], ["https://data.delijn.be/stops/305282", "https://data.delijn.be/stops/305283"], ["https://data.delijn.be/stops/404071", "https://data.delijn.be/stops/405478"], ["https://data.delijn.be/stops/502279", "https://data.delijn.be/stops/502280"], ["https://data.delijn.be/stops/205123", "https://data.delijn.be/stops/205124"], ["https://data.delijn.be/stops/401528", "https://data.delijn.be/stops/406888"], ["https://data.delijn.be/stops/404997", "https://data.delijn.be/stops/409450"], ["https://data.delijn.be/stops/107365", "https://data.delijn.be/stops/108585"], ["https://data.delijn.be/stops/200975", "https://data.delijn.be/stops/207623"], ["https://data.delijn.be/stops/304618", "https://data.delijn.be/stops/304625"], ["https://data.delijn.be/stops/301646", "https://data.delijn.be/stops/301668"], ["https://data.delijn.be/stops/403908", "https://data.delijn.be/stops/403959"], ["https://data.delijn.be/stops/404350", "https://data.delijn.be/stops/404893"], ["https://data.delijn.be/stops/105261", "https://data.delijn.be/stops/109966"], ["https://data.delijn.be/stops/400111", "https://data.delijn.be/stops/409833"], ["https://data.delijn.be/stops/301872", "https://data.delijn.be/stops/307285"], ["https://data.delijn.be/stops/200406", "https://data.delijn.be/stops/200509"], ["https://data.delijn.be/stops/303948", "https://data.delijn.be/stops/303958"], ["https://data.delijn.be/stops/401904", "https://data.delijn.be/stops/406417"], ["https://data.delijn.be/stops/303364", "https://data.delijn.be/stops/307136"], ["https://data.delijn.be/stops/200166", "https://data.delijn.be/stops/201166"], ["https://data.delijn.be/stops/106954", "https://data.delijn.be/stops/108716"], ["https://data.delijn.be/stops/400587", "https://data.delijn.be/stops/400589"], ["https://data.delijn.be/stops/502046", "https://data.delijn.be/stops/507058"], ["https://data.delijn.be/stops/201239", "https://data.delijn.be/stops/203956"], ["https://data.delijn.be/stops/308520", "https://data.delijn.be/stops/308539"], ["https://data.delijn.be/stops/403927", "https://data.delijn.be/stops/404084"], ["https://data.delijn.be/stops/404361", "https://data.delijn.be/stops/408668"], ["https://data.delijn.be/stops/101854", "https://data.delijn.be/stops/109457"], ["https://data.delijn.be/stops/401256", "https://data.delijn.be/stops/406943"], ["https://data.delijn.be/stops/207480", "https://data.delijn.be/stops/207528"], ["https://data.delijn.be/stops/103250", "https://data.delijn.be/stops/107400"], ["https://data.delijn.be/stops/505929", "https://data.delijn.be/stops/509842"], ["https://data.delijn.be/stops/302564", "https://data.delijn.be/stops/302585"], ["https://data.delijn.be/stops/400092", "https://data.delijn.be/stops/400164"], ["https://data.delijn.be/stops/103305", "https://data.delijn.be/stops/108655"], ["https://data.delijn.be/stops/504544", "https://data.delijn.be/stops/509544"], ["https://data.delijn.be/stops/408292", "https://data.delijn.be/stops/308209"], ["https://data.delijn.be/stops/207675", "https://data.delijn.be/stops/207936"], ["https://data.delijn.be/stops/107483", "https://data.delijn.be/stops/107484"], ["https://data.delijn.be/stops/502663", "https://data.delijn.be/stops/502664"], ["https://data.delijn.be/stops/407771", "https://data.delijn.be/stops/307454"], ["https://data.delijn.be/stops/509059", "https://data.delijn.be/stops/509064"], ["https://data.delijn.be/stops/503196", "https://data.delijn.be/stops/503983"], ["https://data.delijn.be/stops/502442", "https://data.delijn.be/stops/507659"], ["https://data.delijn.be/stops/202583", "https://data.delijn.be/stops/215003"], ["https://data.delijn.be/stops/403153", "https://data.delijn.be/stops/403323"], ["https://data.delijn.be/stops/305779", "https://data.delijn.be/stops/305797"], ["https://data.delijn.be/stops/502322", "https://data.delijn.be/stops/507326"], ["https://data.delijn.be/stops/307181", "https://data.delijn.be/stops/307187"], ["https://data.delijn.be/stops/401288", "https://data.delijn.be/stops/401315"], ["https://data.delijn.be/stops/406948", "https://data.delijn.be/stops/407422"], ["https://data.delijn.be/stops/503689", "https://data.delijn.be/stops/508874"], ["https://data.delijn.be/stops/101195", "https://data.delijn.be/stops/104075"], ["https://data.delijn.be/stops/504244", "https://data.delijn.be/stops/504591"], ["https://data.delijn.be/stops/400061", "https://data.delijn.be/stops/400078"], ["https://data.delijn.be/stops/405756", "https://data.delijn.be/stops/307453"], ["https://data.delijn.be/stops/507013", "https://data.delijn.be/stops/507168"], ["https://data.delijn.be/stops/206115", "https://data.delijn.be/stops/206116"], ["https://data.delijn.be/stops/405973", "https://data.delijn.be/stops/405983"], ["https://data.delijn.be/stops/303165", "https://data.delijn.be/stops/307284"], ["https://data.delijn.be/stops/307921", "https://data.delijn.be/stops/308856"], ["https://data.delijn.be/stops/107760", "https://data.delijn.be/stops/108961"], ["https://data.delijn.be/stops/208417", "https://data.delijn.be/stops/209417"], ["https://data.delijn.be/stops/202621", "https://data.delijn.be/stops/203620"], ["https://data.delijn.be/stops/101008", "https://data.delijn.be/stops/108420"], ["https://data.delijn.be/stops/205025", "https://data.delijn.be/stops/205026"], ["https://data.delijn.be/stops/207536", "https://data.delijn.be/stops/209741"], ["https://data.delijn.be/stops/403200", "https://data.delijn.be/stops/403212"], ["https://data.delijn.be/stops/504260", "https://data.delijn.be/stops/505567"], ["https://data.delijn.be/stops/204242", "https://data.delijn.be/stops/205241"], ["https://data.delijn.be/stops/109198", "https://data.delijn.be/stops/109203"], ["https://data.delijn.be/stops/205640", "https://data.delijn.be/stops/205641"], ["https://data.delijn.be/stops/508813", "https://data.delijn.be/stops/508814"], ["https://data.delijn.be/stops/503039", "https://data.delijn.be/stops/504205"], ["https://data.delijn.be/stops/105098", "https://data.delijn.be/stops/105099"], ["https://data.delijn.be/stops/102745", "https://data.delijn.be/stops/102816"], ["https://data.delijn.be/stops/208595", "https://data.delijn.be/stops/209595"], ["https://data.delijn.be/stops/505183", "https://data.delijn.be/stops/505829"], ["https://data.delijn.be/stops/105985", "https://data.delijn.be/stops/105987"], ["https://data.delijn.be/stops/502719", "https://data.delijn.be/stops/507731"], ["https://data.delijn.be/stops/104578", "https://data.delijn.be/stops/104579"], ["https://data.delijn.be/stops/209295", "https://data.delijn.be/stops/209639"], ["https://data.delijn.be/stops/209609", "https://data.delijn.be/stops/209610"], ["https://data.delijn.be/stops/103991", "https://data.delijn.be/stops/103993"], ["https://data.delijn.be/stops/505678", "https://data.delijn.be/stops/507311"], ["https://data.delijn.be/stops/402338", "https://data.delijn.be/stops/402339"], ["https://data.delijn.be/stops/408642", "https://data.delijn.be/stops/408643"], ["https://data.delijn.be/stops/204017", "https://data.delijn.be/stops/205316"], ["https://data.delijn.be/stops/300555", "https://data.delijn.be/stops/300567"], ["https://data.delijn.be/stops/403097", "https://data.delijn.be/stops/403421"], ["https://data.delijn.be/stops/301555", "https://data.delijn.be/stops/308087"], ["https://data.delijn.be/stops/301845", "https://data.delijn.be/stops/302767"], ["https://data.delijn.be/stops/204101", "https://data.delijn.be/stops/204179"], ["https://data.delijn.be/stops/302424", "https://data.delijn.be/stops/302425"], ["https://data.delijn.be/stops/501061", "https://data.delijn.be/stops/502238"], ["https://data.delijn.be/stops/104276", "https://data.delijn.be/stops/104304"], ["https://data.delijn.be/stops/201464", "https://data.delijn.be/stops/201562"], ["https://data.delijn.be/stops/303005", "https://data.delijn.be/stops/303006"], ["https://data.delijn.be/stops/105282", "https://data.delijn.be/stops/105297"], ["https://data.delijn.be/stops/406958", "https://data.delijn.be/stops/406959"], ["https://data.delijn.be/stops/405739", "https://data.delijn.be/stops/410138"], ["https://data.delijn.be/stops/208528", "https://data.delijn.be/stops/209705"], ["https://data.delijn.be/stops/505058", "https://data.delijn.be/stops/505756"], ["https://data.delijn.be/stops/305430", "https://data.delijn.be/stops/308870"], ["https://data.delijn.be/stops/300955", "https://data.delijn.be/stops/300956"], ["https://data.delijn.be/stops/501346", "https://data.delijn.be/stops/506194"], ["https://data.delijn.be/stops/400769", "https://data.delijn.be/stops/405267"], ["https://data.delijn.be/stops/103301", "https://data.delijn.be/stops/105776"], ["https://data.delijn.be/stops/101518", "https://data.delijn.be/stops/109053"], ["https://data.delijn.be/stops/102072", "https://data.delijn.be/stops/106931"], ["https://data.delijn.be/stops/406424", "https://data.delijn.be/stops/409404"], ["https://data.delijn.be/stops/200843", "https://data.delijn.be/stops/202330"], ["https://data.delijn.be/stops/400962", "https://data.delijn.be/stops/400973"], ["https://data.delijn.be/stops/204485", "https://data.delijn.be/stops/205508"], ["https://data.delijn.be/stops/201856", "https://data.delijn.be/stops/211037"], ["https://data.delijn.be/stops/300817", "https://data.delijn.be/stops/300825"], ["https://data.delijn.be/stops/305155", "https://data.delijn.be/stops/305162"], ["https://data.delijn.be/stops/200744", "https://data.delijn.be/stops/203780"], ["https://data.delijn.be/stops/219080", "https://data.delijn.be/stops/300032"], ["https://data.delijn.be/stops/300461", "https://data.delijn.be/stops/306288"], ["https://data.delijn.be/stops/407860", "https://data.delijn.be/stops/305713"], ["https://data.delijn.be/stops/104794", "https://data.delijn.be/stops/106827"], ["https://data.delijn.be/stops/405175", "https://data.delijn.be/stops/405262"], ["https://data.delijn.be/stops/101170", "https://data.delijn.be/stops/103880"], ["https://data.delijn.be/stops/206395", "https://data.delijn.be/stops/207395"], ["https://data.delijn.be/stops/102633", "https://data.delijn.be/stops/107851"], ["https://data.delijn.be/stops/206092", "https://data.delijn.be/stops/206147"], ["https://data.delijn.be/stops/207281", "https://data.delijn.be/stops/207397"], ["https://data.delijn.be/stops/406525", "https://data.delijn.be/stops/406628"], ["https://data.delijn.be/stops/402243", "https://data.delijn.be/stops/410079"], ["https://data.delijn.be/stops/101752", "https://data.delijn.be/stops/101755"], ["https://data.delijn.be/stops/103696", "https://data.delijn.be/stops/103698"], ["https://data.delijn.be/stops/404013", "https://data.delijn.be/stops/404014"], ["https://data.delijn.be/stops/206773", "https://data.delijn.be/stops/217001"], ["https://data.delijn.be/stops/400210", "https://data.delijn.be/stops/400217"], ["https://data.delijn.be/stops/404346", "https://data.delijn.be/stops/404366"], ["https://data.delijn.be/stops/107558", "https://data.delijn.be/stops/107559"], ["https://data.delijn.be/stops/303300", "https://data.delijn.be/stops/303301"], ["https://data.delijn.be/stops/408728", "https://data.delijn.be/stops/408780"], ["https://data.delijn.be/stops/403015", "https://data.delijn.be/stops/403259"], ["https://data.delijn.be/stops/508346", "https://data.delijn.be/stops/508384"], ["https://data.delijn.be/stops/404162", "https://data.delijn.be/stops/404281"], ["https://data.delijn.be/stops/102665", "https://data.delijn.be/stops/103756"], ["https://data.delijn.be/stops/205449", "https://data.delijn.be/stops/205596"], ["https://data.delijn.be/stops/202494", "https://data.delijn.be/stops/203607"], ["https://data.delijn.be/stops/403285", "https://data.delijn.be/stops/410164"], ["https://data.delijn.be/stops/505247", "https://data.delijn.be/stops/505326"], ["https://data.delijn.be/stops/301307", "https://data.delijn.be/stops/306254"], ["https://data.delijn.be/stops/200870", "https://data.delijn.be/stops/202289"], ["https://data.delijn.be/stops/400391", "https://data.delijn.be/stops/406468"], ["https://data.delijn.be/stops/204211", "https://data.delijn.be/stops/207310"], ["https://data.delijn.be/stops/503961", "https://data.delijn.be/stops/504676"], ["https://data.delijn.be/stops/207870", "https://data.delijn.be/stops/208346"], ["https://data.delijn.be/stops/401290", "https://data.delijn.be/stops/406087"], ["https://data.delijn.be/stops/302668", "https://data.delijn.be/stops/302689"], ["https://data.delijn.be/stops/403794", "https://data.delijn.be/stops/403811"], ["https://data.delijn.be/stops/204625", "https://data.delijn.be/stops/205336"], ["https://data.delijn.be/stops/406010", "https://data.delijn.be/stops/406110"], ["https://data.delijn.be/stops/300812", "https://data.delijn.be/stops/300813"], ["https://data.delijn.be/stops/106922", "https://data.delijn.be/stops/106923"], ["https://data.delijn.be/stops/104683", "https://data.delijn.be/stops/104781"], ["https://data.delijn.be/stops/104554", "https://data.delijn.be/stops/308619"], ["https://data.delijn.be/stops/208302", "https://data.delijn.be/stops/209303"], ["https://data.delijn.be/stops/505628", "https://data.delijn.be/stops/507494"], ["https://data.delijn.be/stops/102289", "https://data.delijn.be/stops/106345"], ["https://data.delijn.be/stops/201682", "https://data.delijn.be/stops/208262"], ["https://data.delijn.be/stops/505536", "https://data.delijn.be/stops/509582"], ["https://data.delijn.be/stops/405548", "https://data.delijn.be/stops/410052"], ["https://data.delijn.be/stops/302125", "https://data.delijn.be/stops/304034"], ["https://data.delijn.be/stops/301244", "https://data.delijn.be/stops/305951"], ["https://data.delijn.be/stops/308018", "https://data.delijn.be/stops/308019"], ["https://data.delijn.be/stops/200687", "https://data.delijn.be/stops/208647"], ["https://data.delijn.be/stops/507083", "https://data.delijn.be/stops/507410"], ["https://data.delijn.be/stops/106397", "https://data.delijn.be/stops/107406"], ["https://data.delijn.be/stops/200706", "https://data.delijn.be/stops/203429"], ["https://data.delijn.be/stops/402734", "https://data.delijn.be/stops/410057"], ["https://data.delijn.be/stops/201288", "https://data.delijn.be/stops/210079"], ["https://data.delijn.be/stops/400558", "https://data.delijn.be/stops/403186"], ["https://data.delijn.be/stops/102057", "https://data.delijn.be/stops/102284"], ["https://data.delijn.be/stops/400512", "https://data.delijn.be/stops/401436"], ["https://data.delijn.be/stops/407502", "https://data.delijn.be/stops/407503"], ["https://data.delijn.be/stops/206751", "https://data.delijn.be/stops/209468"], ["https://data.delijn.be/stops/407610", "https://data.delijn.be/stops/407628"], ["https://data.delijn.be/stops/408867", "https://data.delijn.be/stops/408882"], ["https://data.delijn.be/stops/500118", "https://data.delijn.be/stops/505023"], ["https://data.delijn.be/stops/305572", "https://data.delijn.be/stops/307044"], ["https://data.delijn.be/stops/207436", "https://data.delijn.be/stops/207438"], ["https://data.delijn.be/stops/207713", "https://data.delijn.be/stops/207716"], ["https://data.delijn.be/stops/304162", "https://data.delijn.be/stops/307761"], ["https://data.delijn.be/stops/208420", "https://data.delijn.be/stops/209420"], ["https://data.delijn.be/stops/508065", "https://data.delijn.be/stops/508707"], ["https://data.delijn.be/stops/200464", "https://data.delijn.be/stops/201464"], ["https://data.delijn.be/stops/508651", "https://data.delijn.be/stops/508652"], ["https://data.delijn.be/stops/505365", "https://data.delijn.be/stops/508880"], ["https://data.delijn.be/stops/102525", "https://data.delijn.be/stops/402314"], ["https://data.delijn.be/stops/206378", "https://data.delijn.be/stops/207378"], ["https://data.delijn.be/stops/210076", "https://data.delijn.be/stops/505623"], ["https://data.delijn.be/stops/106670", "https://data.delijn.be/stops/106672"], ["https://data.delijn.be/stops/304993", "https://data.delijn.be/stops/305006"], ["https://data.delijn.be/stops/204018", "https://data.delijn.be/stops/204088"], ["https://data.delijn.be/stops/503620", "https://data.delijn.be/stops/508620"], ["https://data.delijn.be/stops/300801", "https://data.delijn.be/stops/303121"], ["https://data.delijn.be/stops/300120", "https://data.delijn.be/stops/300122"], ["https://data.delijn.be/stops/504145", "https://data.delijn.be/stops/509145"], ["https://data.delijn.be/stops/108179", "https://data.delijn.be/stops/108349"], ["https://data.delijn.be/stops/108273", "https://data.delijn.be/stops/108281"], ["https://data.delijn.be/stops/504349", "https://data.delijn.be/stops/509025"], ["https://data.delijn.be/stops/106271", "https://data.delijn.be/stops/106273"], ["https://data.delijn.be/stops/208392", "https://data.delijn.be/stops/208422"], ["https://data.delijn.be/stops/503824", "https://data.delijn.be/stops/505074"], ["https://data.delijn.be/stops/504564", "https://data.delijn.be/stops/505189"], ["https://data.delijn.be/stops/205755", "https://data.delijn.be/stops/205756"], ["https://data.delijn.be/stops/101961", "https://data.delijn.be/stops/108777"], ["https://data.delijn.be/stops/102396", "https://data.delijn.be/stops/108197"], ["https://data.delijn.be/stops/407022", "https://data.delijn.be/stops/407025"], ["https://data.delijn.be/stops/407986", "https://data.delijn.be/stops/407987"], ["https://data.delijn.be/stops/105719", "https://data.delijn.be/stops/105722"], ["https://data.delijn.be/stops/204258", "https://data.delijn.be/stops/204273"], ["https://data.delijn.be/stops/403267", "https://data.delijn.be/stops/403424"], ["https://data.delijn.be/stops/204369", "https://data.delijn.be/stops/205370"], ["https://data.delijn.be/stops/204742", "https://data.delijn.be/stops/205742"], ["https://data.delijn.be/stops/406009", "https://data.delijn.be/stops/406044"], ["https://data.delijn.be/stops/505021", "https://data.delijn.be/stops/507523"], ["https://data.delijn.be/stops/105467", "https://data.delijn.be/stops/105669"], ["https://data.delijn.be/stops/303268", "https://data.delijn.be/stops/303276"], ["https://data.delijn.be/stops/407772", "https://data.delijn.be/stops/408921"], ["https://data.delijn.be/stops/109605", "https://data.delijn.be/stops/109974"], ["https://data.delijn.be/stops/206916", "https://data.delijn.be/stops/207362"], ["https://data.delijn.be/stops/305783", "https://data.delijn.be/stops/305785"], ["https://data.delijn.be/stops/500556", "https://data.delijn.be/stops/508858"], ["https://data.delijn.be/stops/108872", "https://data.delijn.be/stops/108874"], ["https://data.delijn.be/stops/502489", "https://data.delijn.be/stops/502714"], ["https://data.delijn.be/stops/102936", "https://data.delijn.be/stops/104895"], ["https://data.delijn.be/stops/105886", "https://data.delijn.be/stops/105889"], ["https://data.delijn.be/stops/305103", "https://data.delijn.be/stops/305118"], ["https://data.delijn.be/stops/202395", "https://data.delijn.be/stops/203390"], ["https://data.delijn.be/stops/206103", "https://data.delijn.be/stops/300843"], ["https://data.delijn.be/stops/202262", "https://data.delijn.be/stops/203262"], ["https://data.delijn.be/stops/101518", "https://data.delijn.be/stops/109072"], ["https://data.delijn.be/stops/200534", "https://data.delijn.be/stops/201532"], ["https://data.delijn.be/stops/504448", "https://data.delijn.be/stops/509964"], ["https://data.delijn.be/stops/508252", "https://data.delijn.be/stops/508387"], ["https://data.delijn.be/stops/204309", "https://data.delijn.be/stops/205309"], ["https://data.delijn.be/stops/500942", "https://data.delijn.be/stops/505638"], ["https://data.delijn.be/stops/403910", "https://data.delijn.be/stops/403938"], ["https://data.delijn.be/stops/305528", "https://data.delijn.be/stops/305878"], ["https://data.delijn.be/stops/404007", "https://data.delijn.be/stops/404016"], ["https://data.delijn.be/stops/501474", "https://data.delijn.be/stops/501772"], ["https://data.delijn.be/stops/300727", "https://data.delijn.be/stops/303622"], ["https://data.delijn.be/stops/407643", "https://data.delijn.be/stops/407762"], ["https://data.delijn.be/stops/200463", "https://data.delijn.be/stops/200673"], ["https://data.delijn.be/stops/403970", "https://data.delijn.be/stops/403981"], ["https://data.delijn.be/stops/106089", "https://data.delijn.be/stops/106143"], ["https://data.delijn.be/stops/302933", "https://data.delijn.be/stops/302934"], ["https://data.delijn.be/stops/306053", "https://data.delijn.be/stops/306059"], ["https://data.delijn.be/stops/502802", "https://data.delijn.be/stops/507573"], ["https://data.delijn.be/stops/207751", "https://data.delijn.be/stops/207795"], ["https://data.delijn.be/stops/401816", "https://data.delijn.be/stops/406824"], ["https://data.delijn.be/stops/204694", "https://data.delijn.be/stops/204702"], ["https://data.delijn.be/stops/308276", "https://data.delijn.be/stops/308287"], ["https://data.delijn.be/stops/108568", "https://data.delijn.be/stops/108995"], ["https://data.delijn.be/stops/501663", "https://data.delijn.be/stops/506663"], ["https://data.delijn.be/stops/409284", "https://data.delijn.be/stops/409285"], ["https://data.delijn.be/stops/300874", "https://data.delijn.be/stops/300875"], ["https://data.delijn.be/stops/503657", "https://data.delijn.be/stops/504588"], ["https://data.delijn.be/stops/101971", "https://data.delijn.be/stops/107120"], ["https://data.delijn.be/stops/300503", "https://data.delijn.be/stops/302419"], ["https://data.delijn.be/stops/302444", "https://data.delijn.be/stops/308104"], ["https://data.delijn.be/stops/504150", "https://data.delijn.be/stops/504159"], ["https://data.delijn.be/stops/502820", "https://data.delijn.be/stops/507083"], ["https://data.delijn.be/stops/408214", "https://data.delijn.be/stops/408361"], ["https://data.delijn.be/stops/200573", "https://data.delijn.be/stops/201352"], ["https://data.delijn.be/stops/101519", "https://data.delijn.be/stops/102288"], ["https://data.delijn.be/stops/105116", "https://data.delijn.be/stops/105826"], ["https://data.delijn.be/stops/505098", "https://data.delijn.be/stops/505944"], ["https://data.delijn.be/stops/203346", "https://data.delijn.be/stops/209746"], ["https://data.delijn.be/stops/301092", "https://data.delijn.be/stops/301227"], ["https://data.delijn.be/stops/501534", "https://data.delijn.be/stops/505834"], ["https://data.delijn.be/stops/206483", "https://data.delijn.be/stops/207458"], ["https://data.delijn.be/stops/502464", "https://data.delijn.be/stops/507461"], ["https://data.delijn.be/stops/104974", "https://data.delijn.be/stops/106295"], ["https://data.delijn.be/stops/300270", "https://data.delijn.be/stops/303634"], ["https://data.delijn.be/stops/206684", "https://data.delijn.be/stops/207639"], ["https://data.delijn.be/stops/505547", "https://data.delijn.be/stops/507181"], ["https://data.delijn.be/stops/202286", "https://data.delijn.be/stops/202287"], ["https://data.delijn.be/stops/304314", "https://data.delijn.be/stops/304315"], ["https://data.delijn.be/stops/502920", "https://data.delijn.be/stops/507919"], ["https://data.delijn.be/stops/405264", "https://data.delijn.be/stops/405265"], ["https://data.delijn.be/stops/203440", "https://data.delijn.be/stops/203441"], ["https://data.delijn.be/stops/206317", "https://data.delijn.be/stops/207268"], ["https://data.delijn.be/stops/306624", "https://data.delijn.be/stops/306627"], ["https://data.delijn.be/stops/308644", "https://data.delijn.be/stops/308645"], ["https://data.delijn.be/stops/106565", "https://data.delijn.be/stops/106566"], ["https://data.delijn.be/stops/305067", "https://data.delijn.be/stops/306954"], ["https://data.delijn.be/stops/105463", "https://data.delijn.be/stops/105663"], ["https://data.delijn.be/stops/503851", "https://data.delijn.be/stops/503985"], ["https://data.delijn.be/stops/405302", "https://data.delijn.be/stops/405474"], ["https://data.delijn.be/stops/301771", "https://data.delijn.be/stops/301787"], ["https://data.delijn.be/stops/505996", "https://data.delijn.be/stops/507736"], ["https://data.delijn.be/stops/307155", "https://data.delijn.be/stops/307157"], ["https://data.delijn.be/stops/204998", "https://data.delijn.be/stops/209377"], ["https://data.delijn.be/stops/109194", "https://data.delijn.be/stops/109208"], ["https://data.delijn.be/stops/206766", "https://data.delijn.be/stops/209542"], ["https://data.delijn.be/stops/407221", "https://data.delijn.be/stops/408477"], ["https://data.delijn.be/stops/403553", "https://data.delijn.be/stops/410282"], ["https://data.delijn.be/stops/301511", "https://data.delijn.be/stops/308740"], ["https://data.delijn.be/stops/501615", "https://data.delijn.be/stops/506615"], ["https://data.delijn.be/stops/205998", "https://data.delijn.be/stops/208120"], ["https://data.delijn.be/stops/206352", "https://data.delijn.be/stops/207916"], ["https://data.delijn.be/stops/400708", "https://data.delijn.be/stops/404395"], ["https://data.delijn.be/stops/104006", "https://data.delijn.be/stops/105510"], ["https://data.delijn.be/stops/303839", "https://data.delijn.be/stops/303840"], ["https://data.delijn.be/stops/206262", "https://data.delijn.be/stops/207262"], ["https://data.delijn.be/stops/503485", "https://data.delijn.be/stops/508488"], ["https://data.delijn.be/stops/103900", "https://data.delijn.be/stops/105316"], ["https://data.delijn.be/stops/302299", "https://data.delijn.be/stops/307133"], ["https://data.delijn.be/stops/201082", "https://data.delijn.be/stops/205804"], ["https://data.delijn.be/stops/401483", "https://data.delijn.be/stops/402030"], ["https://data.delijn.be/stops/505552", "https://data.delijn.be/stops/505553"], ["https://data.delijn.be/stops/300078", "https://data.delijn.be/stops/300082"], ["https://data.delijn.be/stops/403672", "https://data.delijn.be/stops/410211"], ["https://data.delijn.be/stops/503727", "https://data.delijn.be/stops/503734"], ["https://data.delijn.be/stops/304839", "https://data.delijn.be/stops/304881"], ["https://data.delijn.be/stops/200662", "https://data.delijn.be/stops/200675"], ["https://data.delijn.be/stops/402161", "https://data.delijn.be/stops/402439"], ["https://data.delijn.be/stops/504086", "https://data.delijn.be/stops/509086"], ["https://data.delijn.be/stops/504577", "https://data.delijn.be/stops/509576"], ["https://data.delijn.be/stops/507174", "https://data.delijn.be/stops/507177"], ["https://data.delijn.be/stops/408861", "https://data.delijn.be/stops/408866"], ["https://data.delijn.be/stops/300352", "https://data.delijn.be/stops/301310"], ["https://data.delijn.be/stops/407108", "https://data.delijn.be/stops/407689"], ["https://data.delijn.be/stops/203421", "https://data.delijn.be/stops/203422"], ["https://data.delijn.be/stops/400923", "https://data.delijn.be/stops/400946"], ["https://data.delijn.be/stops/207365", "https://data.delijn.be/stops/207734"], ["https://data.delijn.be/stops/106478", "https://data.delijn.be/stops/109646"], ["https://data.delijn.be/stops/301629", "https://data.delijn.be/stops/302119"], ["https://data.delijn.be/stops/200206", "https://data.delijn.be/stops/202142"], ["https://data.delijn.be/stops/104386", "https://data.delijn.be/stops/105115"], ["https://data.delijn.be/stops/101797", "https://data.delijn.be/stops/108519"], ["https://data.delijn.be/stops/408326", "https://data.delijn.be/stops/408333"], ["https://data.delijn.be/stops/504140", "https://data.delijn.be/stops/509140"], ["https://data.delijn.be/stops/308224", "https://data.delijn.be/stops/308228"], ["https://data.delijn.be/stops/405759", "https://data.delijn.be/stops/405761"], ["https://data.delijn.be/stops/508301", "https://data.delijn.be/stops/508309"], ["https://data.delijn.be/stops/403929", "https://data.delijn.be/stops/403996"], ["https://data.delijn.be/stops/403875", "https://data.delijn.be/stops/404264"], ["https://data.delijn.be/stops/200158", "https://data.delijn.be/stops/201941"], ["https://data.delijn.be/stops/202045", "https://data.delijn.be/stops/203045"], ["https://data.delijn.be/stops/103249", "https://data.delijn.be/stops/107330"], ["https://data.delijn.be/stops/502025", "https://data.delijn.be/stops/502648"], ["https://data.delijn.be/stops/305111", "https://data.delijn.be/stops/305117"], ["https://data.delijn.be/stops/102750", "https://data.delijn.be/stops/102770"], ["https://data.delijn.be/stops/101531", "https://data.delijn.be/stops/102588"], ["https://data.delijn.be/stops/401814", "https://data.delijn.be/stops/402004"], ["https://data.delijn.be/stops/400912", "https://data.delijn.be/stops/400919"], ["https://data.delijn.be/stops/503527", "https://data.delijn.be/stops/508527"], ["https://data.delijn.be/stops/105356", "https://data.delijn.be/stops/106233"], ["https://data.delijn.be/stops/202115", "https://data.delijn.be/stops/203118"], ["https://data.delijn.be/stops/109496", "https://data.delijn.be/stops/109498"], ["https://data.delijn.be/stops/203827", "https://data.delijn.be/stops/219023"], ["https://data.delijn.be/stops/208089", "https://data.delijn.be/stops/209305"], ["https://data.delijn.be/stops/303435", "https://data.delijn.be/stops/304953"], ["https://data.delijn.be/stops/505269", "https://data.delijn.be/stops/507715"], ["https://data.delijn.be/stops/503501", "https://data.delijn.be/stops/508500"], ["https://data.delijn.be/stops/408203", "https://data.delijn.be/stops/408355"], ["https://data.delijn.be/stops/303305", "https://data.delijn.be/stops/303315"], ["https://data.delijn.be/stops/104406", "https://data.delijn.be/stops/104408"], ["https://data.delijn.be/stops/206659", "https://data.delijn.be/stops/206756"], ["https://data.delijn.be/stops/306137", "https://data.delijn.be/stops/308769"], ["https://data.delijn.be/stops/104773", "https://data.delijn.be/stops/104778"], ["https://data.delijn.be/stops/404526", "https://data.delijn.be/stops/404583"], ["https://data.delijn.be/stops/305278", "https://data.delijn.be/stops/305307"], ["https://data.delijn.be/stops/404185", "https://data.delijn.be/stops/407362"], ["https://data.delijn.be/stops/304488", "https://data.delijn.be/stops/304522"], ["https://data.delijn.be/stops/104041", "https://data.delijn.be/stops/109761"], ["https://data.delijn.be/stops/304633", "https://data.delijn.be/stops/304634"], ["https://data.delijn.be/stops/503554", "https://data.delijn.be/stops/503584"], ["https://data.delijn.be/stops/305249", "https://data.delijn.be/stops/305260"], ["https://data.delijn.be/stops/304460", "https://data.delijn.be/stops/307650"], ["https://data.delijn.be/stops/203864", "https://data.delijn.be/stops/208692"], ["https://data.delijn.be/stops/103118", "https://data.delijn.be/stops/108375"], ["https://data.delijn.be/stops/200968", "https://data.delijn.be/stops/206941"], ["https://data.delijn.be/stops/300450", "https://data.delijn.be/stops/305032"], ["https://data.delijn.be/stops/208443", "https://data.delijn.be/stops/208444"], ["https://data.delijn.be/stops/504205", "https://data.delijn.be/stops/509204"], ["https://data.delijn.be/stops/408531", "https://data.delijn.be/stops/408755"], ["https://data.delijn.be/stops/301908", "https://data.delijn.be/stops/301909"], ["https://data.delijn.be/stops/101074", "https://data.delijn.be/stops/102718"], ["https://data.delijn.be/stops/201769", "https://data.delijn.be/stops/208271"], ["https://data.delijn.be/stops/304305", "https://data.delijn.be/stops/304325"], ["https://data.delijn.be/stops/504568", "https://data.delijn.be/stops/504569"], ["https://data.delijn.be/stops/209082", "https://data.delijn.be/stops/209526"], ["https://data.delijn.be/stops/200898", "https://data.delijn.be/stops/201884"], ["https://data.delijn.be/stops/200503", "https://data.delijn.be/stops/201176"], ["https://data.delijn.be/stops/302933", "https://data.delijn.be/stops/307055"], ["https://data.delijn.be/stops/206208", "https://data.delijn.be/stops/206322"], ["https://data.delijn.be/stops/103964", "https://data.delijn.be/stops/107613"], ["https://data.delijn.be/stops/103722", "https://data.delijn.be/stops/108541"], ["https://data.delijn.be/stops/405363", "https://data.delijn.be/stops/405414"], ["https://data.delijn.be/stops/204144", "https://data.delijn.be/stops/204151"], ["https://data.delijn.be/stops/300229", "https://data.delijn.be/stops/307130"], ["https://data.delijn.be/stops/406172", "https://data.delijn.be/stops/406193"], ["https://data.delijn.be/stops/200453", "https://data.delijn.be/stops/209847"], ["https://data.delijn.be/stops/504997", "https://data.delijn.be/stops/508949"], ["https://data.delijn.be/stops/107450", "https://data.delijn.be/stops/107465"], ["https://data.delijn.be/stops/304472", "https://data.delijn.be/stops/307584"], ["https://data.delijn.be/stops/102470", "https://data.delijn.be/stops/103090"], ["https://data.delijn.be/stops/208480", "https://data.delijn.be/stops/208501"], ["https://data.delijn.be/stops/209363", "https://data.delijn.be/stops/209364"], ["https://data.delijn.be/stops/103569", "https://data.delijn.be/stops/103571"], ["https://data.delijn.be/stops/405438", "https://data.delijn.be/stops/405442"], ["https://data.delijn.be/stops/102692", "https://data.delijn.be/stops/108625"], ["https://data.delijn.be/stops/501176", "https://data.delijn.be/stops/506182"], ["https://data.delijn.be/stops/209098", "https://data.delijn.be/stops/209510"], ["https://data.delijn.be/stops/201615", "https://data.delijn.be/stops/203142"], ["https://data.delijn.be/stops/408721", "https://data.delijn.be/stops/408728"], ["https://data.delijn.be/stops/302575", "https://data.delijn.be/stops/302576"], ["https://data.delijn.be/stops/501517", "https://data.delijn.be/stops/506517"], ["https://data.delijn.be/stops/304585", "https://data.delijn.be/stops/304587"], ["https://data.delijn.be/stops/206130", "https://data.delijn.be/stops/207130"], ["https://data.delijn.be/stops/507378", "https://data.delijn.be/stops/507590"], ["https://data.delijn.be/stops/208425", "https://data.delijn.be/stops/208426"], ["https://data.delijn.be/stops/200813", "https://data.delijn.be/stops/203281"], ["https://data.delijn.be/stops/208635", "https://data.delijn.be/stops/209510"], ["https://data.delijn.be/stops/402885", "https://data.delijn.be/stops/402942"], ["https://data.delijn.be/stops/301648", "https://data.delijn.be/stops/301657"], ["https://data.delijn.be/stops/208742", "https://data.delijn.be/stops/508677"], ["https://data.delijn.be/stops/107908", "https://data.delijn.be/stops/107909"], ["https://data.delijn.be/stops/206536", "https://data.delijn.be/stops/209689"], ["https://data.delijn.be/stops/109930", "https://data.delijn.be/stops/109953"], ["https://data.delijn.be/stops/301196", "https://data.delijn.be/stops/308814"], ["https://data.delijn.be/stops/400848", "https://data.delijn.be/stops/405666"], ["https://data.delijn.be/stops/501556", "https://data.delijn.be/stops/501557"], ["https://data.delijn.be/stops/400094", "https://data.delijn.be/stops/400156"], ["https://data.delijn.be/stops/300122", "https://data.delijn.be/stops/300133"], ["https://data.delijn.be/stops/403768", "https://data.delijn.be/stops/408185"], ["https://data.delijn.be/stops/202285", "https://data.delijn.be/stops/202286"], ["https://data.delijn.be/stops/304401", "https://data.delijn.be/stops/308056"], ["https://data.delijn.be/stops/501360", "https://data.delijn.be/stops/506296"], ["https://data.delijn.be/stops/502734", "https://data.delijn.be/stops/507501"], ["https://data.delijn.be/stops/403251", "https://data.delijn.be/stops/405328"], ["https://data.delijn.be/stops/502472", "https://data.delijn.be/stops/509929"], ["https://data.delijn.be/stops/300316", "https://data.delijn.be/stops/301196"], ["https://data.delijn.be/stops/200761", "https://data.delijn.be/stops/507962"], ["https://data.delijn.be/stops/300315", "https://data.delijn.be/stops/301689"], ["https://data.delijn.be/stops/504989", "https://data.delijn.be/stops/509046"], ["https://data.delijn.be/stops/301376", "https://data.delijn.be/stops/302412"], ["https://data.delijn.be/stops/300201", "https://data.delijn.be/stops/308788"], ["https://data.delijn.be/stops/509014", "https://data.delijn.be/stops/509480"], ["https://data.delijn.be/stops/204038", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/502054", "https://data.delijn.be/stops/507057"], ["https://data.delijn.be/stops/102245", "https://data.delijn.be/stops/102917"], ["https://data.delijn.be/stops/103214", "https://data.delijn.be/stops/106743"], ["https://data.delijn.be/stops/200763", "https://data.delijn.be/stops/200764"], ["https://data.delijn.be/stops/504092", "https://data.delijn.be/stops/505119"], ["https://data.delijn.be/stops/209346", "https://data.delijn.be/stops/209347"], ["https://data.delijn.be/stops/400612", "https://data.delijn.be/stops/400614"], ["https://data.delijn.be/stops/301116", "https://data.delijn.be/stops/302215"], ["https://data.delijn.be/stops/306250", "https://data.delijn.be/stops/306251"], ["https://data.delijn.be/stops/105588", "https://data.delijn.be/stops/105589"], ["https://data.delijn.be/stops/502497", "https://data.delijn.be/stops/507497"], ["https://data.delijn.be/stops/303389", "https://data.delijn.be/stops/308716"], ["https://data.delijn.be/stops/300382", "https://data.delijn.be/stops/300401"], ["https://data.delijn.be/stops/108457", "https://data.delijn.be/stops/108458"], ["https://data.delijn.be/stops/303141", "https://data.delijn.be/stops/306280"], ["https://data.delijn.be/stops/502714", "https://data.delijn.be/stops/507714"], ["https://data.delijn.be/stops/109791", "https://data.delijn.be/stops/109793"], ["https://data.delijn.be/stops/202532", "https://data.delijn.be/stops/203531"], ["https://data.delijn.be/stops/503087", "https://data.delijn.be/stops/507620"], ["https://data.delijn.be/stops/406410", "https://data.delijn.be/stops/406411"], ["https://data.delijn.be/stops/401420", "https://data.delijn.be/stops/401710"], ["https://data.delijn.be/stops/407960", "https://data.delijn.be/stops/407961"], ["https://data.delijn.be/stops/403178", "https://data.delijn.be/stops/403490"], ["https://data.delijn.be/stops/405082", "https://data.delijn.be/stops/405083"], ["https://data.delijn.be/stops/404303", "https://data.delijn.be/stops/409565"], ["https://data.delijn.be/stops/105069", "https://data.delijn.be/stops/106780"], ["https://data.delijn.be/stops/503714", "https://data.delijn.be/stops/508723"], ["https://data.delijn.be/stops/406214", "https://data.delijn.be/stops/406230"], ["https://data.delijn.be/stops/306380", "https://data.delijn.be/stops/306381"], ["https://data.delijn.be/stops/301843", "https://data.delijn.be/stops/305860"], ["https://data.delijn.be/stops/102867", "https://data.delijn.be/stops/102868"], ["https://data.delijn.be/stops/103147", "https://data.delijn.be/stops/109480"], ["https://data.delijn.be/stops/204371", "https://data.delijn.be/stops/205371"], ["https://data.delijn.be/stops/209692", "https://data.delijn.be/stops/209696"], ["https://data.delijn.be/stops/204036", "https://data.delijn.be/stops/205247"], ["https://data.delijn.be/stops/402834", "https://data.delijn.be/stops/402835"], ["https://data.delijn.be/stops/404463", "https://data.delijn.be/stops/404528"], ["https://data.delijn.be/stops/505358", "https://data.delijn.be/stops/505747"], ["https://data.delijn.be/stops/301124", "https://data.delijn.be/stops/303617"], ["https://data.delijn.be/stops/301293", "https://data.delijn.be/stops/308657"], ["https://data.delijn.be/stops/502064", "https://data.delijn.be/stops/507069"], ["https://data.delijn.be/stops/101393", "https://data.delijn.be/stops/101829"], ["https://data.delijn.be/stops/401092", "https://data.delijn.be/stops/401114"], ["https://data.delijn.be/stops/407639", "https://data.delijn.be/stops/407763"], ["https://data.delijn.be/stops/409271", "https://data.delijn.be/stops/409333"], ["https://data.delijn.be/stops/401217", "https://data.delijn.be/stops/401557"], ["https://data.delijn.be/stops/102229", "https://data.delijn.be/stops/105522"], ["https://data.delijn.be/stops/305582", "https://data.delijn.be/stops/307824"], ["https://data.delijn.be/stops/200765", "https://data.delijn.be/stops/208300"], ["https://data.delijn.be/stops/103241", "https://data.delijn.be/stops/105022"], ["https://data.delijn.be/stops/201851", "https://data.delijn.be/stops/203655"], ["https://data.delijn.be/stops/302189", "https://data.delijn.be/stops/302191"], ["https://data.delijn.be/stops/505835", "https://data.delijn.be/stops/506013"], ["https://data.delijn.be/stops/107574", "https://data.delijn.be/stops/107745"], ["https://data.delijn.be/stops/404891", "https://data.delijn.be/stops/405648"], ["https://data.delijn.be/stops/405803", "https://data.delijn.be/stops/409735"], ["https://data.delijn.be/stops/305600", "https://data.delijn.be/stops/305601"], ["https://data.delijn.be/stops/204226", "https://data.delijn.be/stops/205231"], ["https://data.delijn.be/stops/205308", "https://data.delijn.be/stops/205448"], ["https://data.delijn.be/stops/502262", "https://data.delijn.be/stops/502921"], ["https://data.delijn.be/stops/305353", "https://data.delijn.be/stops/305354"], ["https://data.delijn.be/stops/109251", "https://data.delijn.be/stops/109252"], ["https://data.delijn.be/stops/401378", "https://data.delijn.be/stops/410172"], ["https://data.delijn.be/stops/304116", "https://data.delijn.be/stops/305337"], ["https://data.delijn.be/stops/300810", "https://data.delijn.be/stops/300831"], ["https://data.delijn.be/stops/204146", "https://data.delijn.be/stops/205138"], ["https://data.delijn.be/stops/104041", "https://data.delijn.be/stops/108522"], ["https://data.delijn.be/stops/504779", "https://data.delijn.be/stops/509085"], ["https://data.delijn.be/stops/408505", "https://data.delijn.be/stops/408539"], ["https://data.delijn.be/stops/503742", "https://data.delijn.be/stops/504850"], ["https://data.delijn.be/stops/503119", "https://data.delijn.be/stops/508121"], ["https://data.delijn.be/stops/308427", "https://data.delijn.be/stops/308429"], ["https://data.delijn.be/stops/307315", "https://data.delijn.be/stops/307317"], ["https://data.delijn.be/stops/102521", "https://data.delijn.be/stops/108995"], ["https://data.delijn.be/stops/502051", "https://data.delijn.be/stops/507051"], ["https://data.delijn.be/stops/408711", "https://data.delijn.be/stops/408715"], ["https://data.delijn.be/stops/402520", "https://data.delijn.be/stops/407950"], ["https://data.delijn.be/stops/106621", "https://data.delijn.be/stops/106622"], ["https://data.delijn.be/stops/500137", "https://data.delijn.be/stops/590335"], ["https://data.delijn.be/stops/302499", "https://data.delijn.be/stops/302500"], ["https://data.delijn.be/stops/303876", "https://data.delijn.be/stops/307871"], ["https://data.delijn.be/stops/408511", "https://data.delijn.be/stops/408548"], ["https://data.delijn.be/stops/105196", "https://data.delijn.be/stops/105197"], ["https://data.delijn.be/stops/106394", "https://data.delijn.be/stops/106395"], ["https://data.delijn.be/stops/202600", "https://data.delijn.be/stops/203600"], ["https://data.delijn.be/stops/201208", "https://data.delijn.be/stops/203144"], ["https://data.delijn.be/stops/206309", "https://data.delijn.be/stops/207309"], ["https://data.delijn.be/stops/502427", "https://data.delijn.be/stops/502435"], ["https://data.delijn.be/stops/103332", "https://data.delijn.be/stops/106441"], ["https://data.delijn.be/stops/406616", "https://data.delijn.be/stops/406624"], ["https://data.delijn.be/stops/301881", "https://data.delijn.be/stops/305911"], ["https://data.delijn.be/stops/200915", "https://data.delijn.be/stops/202686"], ["https://data.delijn.be/stops/406903", "https://data.delijn.be/stops/406904"], ["https://data.delijn.be/stops/107445", "https://data.delijn.be/stops/107460"], ["https://data.delijn.be/stops/304172", "https://data.delijn.be/stops/307577"], ["https://data.delijn.be/stops/302889", "https://data.delijn.be/stops/307049"], ["https://data.delijn.be/stops/206568", "https://data.delijn.be/stops/207568"], ["https://data.delijn.be/stops/101072", "https://data.delijn.be/stops/109095"], ["https://data.delijn.be/stops/304077", "https://data.delijn.be/stops/307814"], ["https://data.delijn.be/stops/109181", "https://data.delijn.be/stops/109226"], ["https://data.delijn.be/stops/401409", "https://data.delijn.be/stops/300926"], ["https://data.delijn.be/stops/403023", "https://data.delijn.be/stops/404260"], ["https://data.delijn.be/stops/202723", "https://data.delijn.be/stops/203085"], ["https://data.delijn.be/stops/102929", "https://data.delijn.be/stops/102967"], ["https://data.delijn.be/stops/200090", "https://data.delijn.be/stops/203896"], ["https://data.delijn.be/stops/506291", "https://data.delijn.be/stops/506546"], ["https://data.delijn.be/stops/305050", "https://data.delijn.be/stops/305083"], ["https://data.delijn.be/stops/301899", "https://data.delijn.be/stops/306955"], ["https://data.delijn.be/stops/301076", "https://data.delijn.be/stops/304190"], ["https://data.delijn.be/stops/501010", "https://data.delijn.be/stops/502077"], ["https://data.delijn.be/stops/102323", "https://data.delijn.be/stops/104261"], ["https://data.delijn.be/stops/305675", "https://data.delijn.be/stops/306308"], ["https://data.delijn.be/stops/207215", "https://data.delijn.be/stops/207269"], ["https://data.delijn.be/stops/201400", "https://data.delijn.be/stops/203363"], ["https://data.delijn.be/stops/300266", "https://data.delijn.be/stops/307494"], ["https://data.delijn.be/stops/104943", "https://data.delijn.be/stops/108229"], ["https://data.delijn.be/stops/507513", "https://data.delijn.be/stops/507740"], ["https://data.delijn.be/stops/504892", "https://data.delijn.be/stops/508588"], ["https://data.delijn.be/stops/206121", "https://data.delijn.be/stops/206144"], ["https://data.delijn.be/stops/106657", "https://data.delijn.be/stops/106658"], ["https://data.delijn.be/stops/308175", "https://data.delijn.be/stops/308177"], ["https://data.delijn.be/stops/301417", "https://data.delijn.be/stops/301418"], ["https://data.delijn.be/stops/201869", "https://data.delijn.be/stops/202659"], ["https://data.delijn.be/stops/201605", "https://data.delijn.be/stops/203777"], ["https://data.delijn.be/stops/208670", "https://data.delijn.be/stops/209432"], ["https://data.delijn.be/stops/204123", "https://data.delijn.be/stops/205126"], ["https://data.delijn.be/stops/404622", "https://data.delijn.be/stops/404632"], ["https://data.delijn.be/stops/303056", "https://data.delijn.be/stops/304241"], ["https://data.delijn.be/stops/404726", "https://data.delijn.be/stops/404727"], ["https://data.delijn.be/stops/207674", "https://data.delijn.be/stops/209139"], ["https://data.delijn.be/stops/204683", "https://data.delijn.be/stops/205677"], ["https://data.delijn.be/stops/104638", "https://data.delijn.be/stops/107963"], ["https://data.delijn.be/stops/406179", "https://data.delijn.be/stops/406180"], ["https://data.delijn.be/stops/206146", "https://data.delijn.be/stops/206147"], ["https://data.delijn.be/stops/200911", "https://data.delijn.be/stops/202097"], ["https://data.delijn.be/stops/507449", "https://data.delijn.be/stops/507595"], ["https://data.delijn.be/stops/308157", "https://data.delijn.be/stops/308159"], ["https://data.delijn.be/stops/206595", "https://data.delijn.be/stops/209679"], ["https://data.delijn.be/stops/303478", "https://data.delijn.be/stops/303492"], ["https://data.delijn.be/stops/301301", "https://data.delijn.be/stops/301305"], ["https://data.delijn.be/stops/504024", "https://data.delijn.be/stops/509024"], ["https://data.delijn.be/stops/504003", "https://data.delijn.be/stops/509860"], ["https://data.delijn.be/stops/503123", "https://data.delijn.be/stops/505406"], ["https://data.delijn.be/stops/507193", "https://data.delijn.be/stops/509945"], ["https://data.delijn.be/stops/202558", "https://data.delijn.be/stops/203549"], ["https://data.delijn.be/stops/509081", "https://data.delijn.be/stops/509084"], ["https://data.delijn.be/stops/405443", "https://data.delijn.be/stops/408785"], ["https://data.delijn.be/stops/303450", "https://data.delijn.be/stops/306371"], ["https://data.delijn.be/stops/403192", "https://data.delijn.be/stops/409273"], ["https://data.delijn.be/stops/102290", "https://data.delijn.be/stops/107460"], ["https://data.delijn.be/stops/305511", "https://data.delijn.be/stops/305532"], ["https://data.delijn.be/stops/401259", "https://data.delijn.be/stops/406680"], ["https://data.delijn.be/stops/207755", "https://data.delijn.be/stops/208760"], ["https://data.delijn.be/stops/202822", "https://data.delijn.be/stops/202915"], ["https://data.delijn.be/stops/108445", "https://data.delijn.be/stops/108449"], ["https://data.delijn.be/stops/200034", "https://data.delijn.be/stops/208333"], ["https://data.delijn.be/stops/200140", "https://data.delijn.be/stops/201607"], ["https://data.delijn.be/stops/304436", "https://data.delijn.be/stops/307718"], ["https://data.delijn.be/stops/301413", "https://data.delijn.be/stops/301415"], ["https://data.delijn.be/stops/302892", "https://data.delijn.be/stops/303231"], ["https://data.delijn.be/stops/408607", "https://data.delijn.be/stops/408707"], ["https://data.delijn.be/stops/109039", "https://data.delijn.be/stops/109042"], ["https://data.delijn.be/stops/401949", "https://data.delijn.be/stops/407104"], ["https://data.delijn.be/stops/504772", "https://data.delijn.be/stops/509383"], ["https://data.delijn.be/stops/202764", "https://data.delijn.be/stops/203764"], ["https://data.delijn.be/stops/305064", "https://data.delijn.be/stops/306920"], ["https://data.delijn.be/stops/200318", "https://data.delijn.be/stops/201317"], ["https://data.delijn.be/stops/101467", "https://data.delijn.be/stops/101469"], ["https://data.delijn.be/stops/303024", "https://data.delijn.be/stops/303026"], ["https://data.delijn.be/stops/407224", "https://data.delijn.be/stops/407486"], ["https://data.delijn.be/stops/502236", "https://data.delijn.be/stops/505754"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/510006"], ["https://data.delijn.be/stops/304745", "https://data.delijn.be/stops/304746"], ["https://data.delijn.be/stops/501228", "https://data.delijn.be/stops/509840"], ["https://data.delijn.be/stops/109910", "https://data.delijn.be/stops/109914"], ["https://data.delijn.be/stops/107462", "https://data.delijn.be/stops/109197"], ["https://data.delijn.be/stops/206544", "https://data.delijn.be/stops/207545"], ["https://data.delijn.be/stops/405923", "https://data.delijn.be/stops/405925"], ["https://data.delijn.be/stops/107256", "https://data.delijn.be/stops/107257"], ["https://data.delijn.be/stops/503188", "https://data.delijn.be/stops/508208"], ["https://data.delijn.be/stops/201762", "https://data.delijn.be/stops/209847"], ["https://data.delijn.be/stops/108050", "https://data.delijn.be/stops/108053"], ["https://data.delijn.be/stops/104971", "https://data.delijn.be/stops/105297"], ["https://data.delijn.be/stops/403778", "https://data.delijn.be/stops/403779"], ["https://data.delijn.be/stops/206624", "https://data.delijn.be/stops/207624"], ["https://data.delijn.be/stops/202042", "https://data.delijn.be/stops/203245"], ["https://data.delijn.be/stops/408245", "https://data.delijn.be/stops/408340"], ["https://data.delijn.be/stops/204314", "https://data.delijn.be/stops/205338"], ["https://data.delijn.be/stops/302475", "https://data.delijn.be/stops/307037"], ["https://data.delijn.be/stops/402257", "https://data.delijn.be/stops/402392"], ["https://data.delijn.be/stops/503488", "https://data.delijn.be/stops/508488"], ["https://data.delijn.be/stops/503863", "https://data.delijn.be/stops/504993"], ["https://data.delijn.be/stops/102159", "https://data.delijn.be/stops/108322"], ["https://data.delijn.be/stops/201923", "https://data.delijn.be/stops/207405"], ["https://data.delijn.be/stops/103721", "https://data.delijn.be/stops/308441"], ["https://data.delijn.be/stops/303166", "https://data.delijn.be/stops/307285"], ["https://data.delijn.be/stops/200811", "https://data.delijn.be/stops/203051"], ["https://data.delijn.be/stops/406910", "https://data.delijn.be/stops/406911"], ["https://data.delijn.be/stops/103259", "https://data.delijn.be/stops/105861"], ["https://data.delijn.be/stops/104038", "https://data.delijn.be/stops/104048"], ["https://data.delijn.be/stops/102637", "https://data.delijn.be/stops/208900"], ["https://data.delijn.be/stops/505659", "https://data.delijn.be/stops/508505"], ["https://data.delijn.be/stops/107805", "https://data.delijn.be/stops/109050"], ["https://data.delijn.be/stops/302105", "https://data.delijn.be/stops/302276"], ["https://data.delijn.be/stops/300323", "https://data.delijn.be/stops/307649"], ["https://data.delijn.be/stops/104619", "https://data.delijn.be/stops/107868"], ["https://data.delijn.be/stops/101938", "https://data.delijn.be/stops/109343"], ["https://data.delijn.be/stops/206600", "https://data.delijn.be/stops/207414"], ["https://data.delijn.be/stops/102589", "https://data.delijn.be/stops/102897"], ["https://data.delijn.be/stops/300524", "https://data.delijn.be/stops/304897"], ["https://data.delijn.be/stops/204344", "https://data.delijn.be/stops/205343"], ["https://data.delijn.be/stops/503661", "https://data.delijn.be/stops/508666"], ["https://data.delijn.be/stops/302584", "https://data.delijn.be/stops/302612"], ["https://data.delijn.be/stops/304765", "https://data.delijn.be/stops/304770"], ["https://data.delijn.be/stops/104464", "https://data.delijn.be/stops/104466"], ["https://data.delijn.be/stops/507110", "https://data.delijn.be/stops/507135"], ["https://data.delijn.be/stops/109133", "https://data.delijn.be/stops/109134"], ["https://data.delijn.be/stops/104402", "https://data.delijn.be/stops/205280"], ["https://data.delijn.be/stops/101414", "https://data.delijn.be/stops/102066"], ["https://data.delijn.be/stops/107864", "https://data.delijn.be/stops/107867"], ["https://data.delijn.be/stops/104579", "https://data.delijn.be/stops/107889"], ["https://data.delijn.be/stops/200421", "https://data.delijn.be/stops/200422"], ["https://data.delijn.be/stops/104162", "https://data.delijn.be/stops/104355"], ["https://data.delijn.be/stops/106661", "https://data.delijn.be/stops/107188"], ["https://data.delijn.be/stops/106767", "https://data.delijn.be/stops/106769"], ["https://data.delijn.be/stops/108083", "https://data.delijn.be/stops/108449"], ["https://data.delijn.be/stops/407351", "https://data.delijn.be/stops/409436"], ["https://data.delijn.be/stops/502489", "https://data.delijn.be/stops/502515"], ["https://data.delijn.be/stops/400176", "https://data.delijn.be/stops/400399"], ["https://data.delijn.be/stops/302070", "https://data.delijn.be/stops/302071"], ["https://data.delijn.be/stops/408603", "https://data.delijn.be/stops/408610"], ["https://data.delijn.be/stops/502471", "https://data.delijn.be/stops/507471"], ["https://data.delijn.be/stops/401752", "https://data.delijn.be/stops/406336"], ["https://data.delijn.be/stops/202851", "https://data.delijn.be/stops/202948"], ["https://data.delijn.be/stops/107311", "https://data.delijn.be/stops/108809"], ["https://data.delijn.be/stops/200978", "https://data.delijn.be/stops/208090"], ["https://data.delijn.be/stops/207698", "https://data.delijn.be/stops/207699"], ["https://data.delijn.be/stops/507332", "https://data.delijn.be/stops/507374"], ["https://data.delijn.be/stops/406180", "https://data.delijn.be/stops/406202"], ["https://data.delijn.be/stops/206669", "https://data.delijn.be/stops/208121"], ["https://data.delijn.be/stops/506408", "https://data.delijn.be/stops/506418"], ["https://data.delijn.be/stops/200531", "https://data.delijn.be/stops/211132"], ["https://data.delijn.be/stops/109002", "https://data.delijn.be/stops/109003"], ["https://data.delijn.be/stops/401104", "https://data.delijn.be/stops/409221"], ["https://data.delijn.be/stops/200673", "https://data.delijn.be/stops/201737"], ["https://data.delijn.be/stops/204725", "https://data.delijn.be/stops/205725"], ["https://data.delijn.be/stops/502013", "https://data.delijn.be/stops/502014"], ["https://data.delijn.be/stops/104388", "https://data.delijn.be/stops/105115"], ["https://data.delijn.be/stops/109795", "https://data.delijn.be/stops/109798"], ["https://data.delijn.be/stops/209586", "https://data.delijn.be/stops/209676"], ["https://data.delijn.be/stops/203240", "https://data.delijn.be/stops/206870"], ["https://data.delijn.be/stops/503101", "https://data.delijn.be/stops/508101"], ["https://data.delijn.be/stops/401990", "https://data.delijn.be/stops/403880"], ["https://data.delijn.be/stops/408349", "https://data.delijn.be/stops/410159"], ["https://data.delijn.be/stops/202851", "https://data.delijn.be/stops/203851"], ["https://data.delijn.be/stops/400564", "https://data.delijn.be/stops/410034"], ["https://data.delijn.be/stops/101018", "https://data.delijn.be/stops/102940"], ["https://data.delijn.be/stops/101931", "https://data.delijn.be/stops/106215"], ["https://data.delijn.be/stops/400749", "https://data.delijn.be/stops/407659"], ["https://data.delijn.be/stops/107126", "https://data.delijn.be/stops/107127"], ["https://data.delijn.be/stops/308239", "https://data.delijn.be/stops/308240"], ["https://data.delijn.be/stops/300637", "https://data.delijn.be/stops/300638"], ["https://data.delijn.be/stops/102289", "https://data.delijn.be/stops/109634"], ["https://data.delijn.be/stops/300839", "https://data.delijn.be/stops/300886"], ["https://data.delijn.be/stops/208493", "https://data.delijn.be/stops/209492"], ["https://data.delijn.be/stops/405664", "https://data.delijn.be/stops/405710"], ["https://data.delijn.be/stops/506343", "https://data.delijn.be/stops/506734"], ["https://data.delijn.be/stops/502636", "https://data.delijn.be/stops/507511"], ["https://data.delijn.be/stops/106118", "https://data.delijn.be/stops/106120"], ["https://data.delijn.be/stops/206970", "https://data.delijn.be/stops/207969"], ["https://data.delijn.be/stops/105332", "https://data.delijn.be/stops/204028"], ["https://data.delijn.be/stops/301189", "https://data.delijn.be/stops/301266"], ["https://data.delijn.be/stops/104366", "https://data.delijn.be/stops/205602"], ["https://data.delijn.be/stops/509410", "https://data.delijn.be/stops/509436"], ["https://data.delijn.be/stops/206671", "https://data.delijn.be/stops/208055"], ["https://data.delijn.be/stops/304000", "https://data.delijn.be/stops/308644"], ["https://data.delijn.be/stops/102319", "https://data.delijn.be/stops/106223"], ["https://data.delijn.be/stops/202721", "https://data.delijn.be/stops/203721"], ["https://data.delijn.be/stops/202422", "https://data.delijn.be/stops/203422"], ["https://data.delijn.be/stops/401671", "https://data.delijn.be/stops/307629"], ["https://data.delijn.be/stops/402100", "https://data.delijn.be/stops/402330"], ["https://data.delijn.be/stops/304880", "https://data.delijn.be/stops/304884"], ["https://data.delijn.be/stops/200512", "https://data.delijn.be/stops/201551"], ["https://data.delijn.be/stops/402991", "https://data.delijn.be/stops/405602"], ["https://data.delijn.be/stops/402819", "https://data.delijn.be/stops/406960"], ["https://data.delijn.be/stops/203957", "https://data.delijn.be/stops/203959"], ["https://data.delijn.be/stops/504007", "https://data.delijn.be/stops/504571"], ["https://data.delijn.be/stops/405259", "https://data.delijn.be/stops/405266"], ["https://data.delijn.be/stops/206441", "https://data.delijn.be/stops/209466"], ["https://data.delijn.be/stops/300999", "https://data.delijn.be/stops/308356"], ["https://data.delijn.be/stops/407911", "https://data.delijn.be/stops/408018"], ["https://data.delijn.be/stops/504165", "https://data.delijn.be/stops/509192"], ["https://data.delijn.be/stops/208013", "https://data.delijn.be/stops/209013"], ["https://data.delijn.be/stops/202590", "https://data.delijn.be/stops/203570"], ["https://data.delijn.be/stops/508330", "https://data.delijn.be/stops/508332"], ["https://data.delijn.be/stops/409084", "https://data.delijn.be/stops/409139"], ["https://data.delijn.be/stops/104942", "https://data.delijn.be/stops/107216"], ["https://data.delijn.be/stops/400594", "https://data.delijn.be/stops/400601"], ["https://data.delijn.be/stops/202659", "https://data.delijn.be/stops/205994"], ["https://data.delijn.be/stops/304303", "https://data.delijn.be/stops/304352"], ["https://data.delijn.be/stops/501114", "https://data.delijn.be/stops/506165"], ["https://data.delijn.be/stops/304975", "https://data.delijn.be/stops/304976"], ["https://data.delijn.be/stops/402801", "https://data.delijn.be/stops/409048"], ["https://data.delijn.be/stops/503178", "https://data.delijn.be/stops/508178"], ["https://data.delijn.be/stops/102597", "https://data.delijn.be/stops/104918"], ["https://data.delijn.be/stops/303562", "https://data.delijn.be/stops/305878"], ["https://data.delijn.be/stops/200259", "https://data.delijn.be/stops/203452"], ["https://data.delijn.be/stops/306774", "https://data.delijn.be/stops/306776"], ["https://data.delijn.be/stops/200712", "https://data.delijn.be/stops/204019"], ["https://data.delijn.be/stops/200811", "https://data.delijn.be/stops/202051"], ["https://data.delijn.be/stops/504381", "https://data.delijn.be/stops/509381"], ["https://data.delijn.be/stops/502387", "https://data.delijn.be/stops/507387"], ["https://data.delijn.be/stops/200768", "https://data.delijn.be/stops/209298"], ["https://data.delijn.be/stops/501458", "https://data.delijn.be/stops/505834"], ["https://data.delijn.be/stops/504812", "https://data.delijn.be/stops/508478"], ["https://data.delijn.be/stops/200593", "https://data.delijn.be/stops/210129"], ["https://data.delijn.be/stops/101345", "https://data.delijn.be/stops/102963"], ["https://data.delijn.be/stops/504515", "https://data.delijn.be/stops/505176"], ["https://data.delijn.be/stops/502184", "https://data.delijn.be/stops/507713"], ["https://data.delijn.be/stops/302907", "https://data.delijn.be/stops/304711"], ["https://data.delijn.be/stops/208628", "https://data.delijn.be/stops/209058"], ["https://data.delijn.be/stops/506103", "https://data.delijn.be/stops/506493"], ["https://data.delijn.be/stops/504388", "https://data.delijn.be/stops/505986"], ["https://data.delijn.be/stops/507135", "https://data.delijn.be/stops/507138"], ["https://data.delijn.be/stops/503370", "https://data.delijn.be/stops/508444"], ["https://data.delijn.be/stops/205207", "https://data.delijn.be/stops/205473"], ["https://data.delijn.be/stops/505997", "https://data.delijn.be/stops/509408"], ["https://data.delijn.be/stops/302877", "https://data.delijn.be/stops/302890"], ["https://data.delijn.be/stops/501229", "https://data.delijn.be/stops/506226"], ["https://data.delijn.be/stops/401163", "https://data.delijn.be/stops/408119"], ["https://data.delijn.be/stops/107318", "https://data.delijn.be/stops/107319"], ["https://data.delijn.be/stops/203878", "https://data.delijn.be/stops/203882"], ["https://data.delijn.be/stops/504369", "https://data.delijn.be/stops/508133"], ["https://data.delijn.be/stops/404958", "https://data.delijn.be/stops/404961"], ["https://data.delijn.be/stops/304631", "https://data.delijn.be/stops/306341"], ["https://data.delijn.be/stops/503463", "https://data.delijn.be/stops/508197"], ["https://data.delijn.be/stops/402235", "https://data.delijn.be/stops/402293"], ["https://data.delijn.be/stops/107041", "https://data.delijn.be/stops/108246"], ["https://data.delijn.be/stops/400326", "https://data.delijn.be/stops/400354"], ["https://data.delijn.be/stops/407824", "https://data.delijn.be/stops/407825"], ["https://data.delijn.be/stops/502041", "https://data.delijn.be/stops/502618"], ["https://data.delijn.be/stops/406569", "https://data.delijn.be/stops/406680"], ["https://data.delijn.be/stops/206849", "https://data.delijn.be/stops/207658"], ["https://data.delijn.be/stops/206080", "https://data.delijn.be/stops/306973"], ["https://data.delijn.be/stops/105887", "https://data.delijn.be/stops/105892"], ["https://data.delijn.be/stops/202315", "https://data.delijn.be/stops/203315"], ["https://data.delijn.be/stops/108921", "https://data.delijn.be/stops/109412"], ["https://data.delijn.be/stops/105802", "https://data.delijn.be/stops/105803"], ["https://data.delijn.be/stops/202016", "https://data.delijn.be/stops/202017"], ["https://data.delijn.be/stops/301440", "https://data.delijn.be/stops/302131"], ["https://data.delijn.be/stops/500023", "https://data.delijn.be/stops/501568"], ["https://data.delijn.be/stops/502214", "https://data.delijn.be/stops/507218"], ["https://data.delijn.be/stops/301640", "https://data.delijn.be/stops/307754"], ["https://data.delijn.be/stops/400403", "https://data.delijn.be/stops/405865"], ["https://data.delijn.be/stops/507282", "https://data.delijn.be/stops/507334"], ["https://data.delijn.be/stops/401546", "https://data.delijn.be/stops/401930"], ["https://data.delijn.be/stops/501070", "https://data.delijn.be/stops/501380"], ["https://data.delijn.be/stops/103061", "https://data.delijn.be/stops/308632"], ["https://data.delijn.be/stops/303183", "https://data.delijn.be/stops/303191"], ["https://data.delijn.be/stops/400992", "https://data.delijn.be/stops/406585"], ["https://data.delijn.be/stops/201543", "https://data.delijn.be/stops/210048"], ["https://data.delijn.be/stops/106307", "https://data.delijn.be/stops/106308"], ["https://data.delijn.be/stops/304956", "https://data.delijn.be/stops/304966"], ["https://data.delijn.be/stops/302513", "https://data.delijn.be/stops/305802"], ["https://data.delijn.be/stops/504112", "https://data.delijn.be/stops/504469"], ["https://data.delijn.be/stops/401840", "https://data.delijn.be/stops/401841"], ["https://data.delijn.be/stops/301614", "https://data.delijn.be/stops/304257"], ["https://data.delijn.be/stops/401425", "https://data.delijn.be/stops/401576"], ["https://data.delijn.be/stops/101060", "https://data.delijn.be/stops/106750"], ["https://data.delijn.be/stops/308053", "https://data.delijn.be/stops/308054"], ["https://data.delijn.be/stops/102040", "https://data.delijn.be/stops/105590"], ["https://data.delijn.be/stops/400122", "https://data.delijn.be/stops/400130"], ["https://data.delijn.be/stops/503090", "https://data.delijn.be/stops/508091"], ["https://data.delijn.be/stops/504676", "https://data.delijn.be/stops/504677"], ["https://data.delijn.be/stops/404340", "https://data.delijn.be/stops/404341"], ["https://data.delijn.be/stops/204995", "https://data.delijn.be/stops/303837"], ["https://data.delijn.be/stops/407524", "https://data.delijn.be/stops/407525"], ["https://data.delijn.be/stops/208157", "https://data.delijn.be/stops/208158"], ["https://data.delijn.be/stops/202272", "https://data.delijn.be/stops/203130"], ["https://data.delijn.be/stops/401454", "https://data.delijn.be/stops/401574"], ["https://data.delijn.be/stops/403290", "https://data.delijn.be/stops/410326"], ["https://data.delijn.be/stops/507256", "https://data.delijn.be/stops/507510"], ["https://data.delijn.be/stops/102277", "https://data.delijn.be/stops/104593"], ["https://data.delijn.be/stops/206768", "https://data.delijn.be/stops/206780"], ["https://data.delijn.be/stops/300808", "https://data.delijn.be/stops/307573"], ["https://data.delijn.be/stops/307705", "https://data.delijn.be/stops/308592"], ["https://data.delijn.be/stops/400635", "https://data.delijn.be/stops/403036"], ["https://data.delijn.be/stops/108353", "https://data.delijn.be/stops/109338"], ["https://data.delijn.be/stops/206377", "https://data.delijn.be/stops/207377"], ["https://data.delijn.be/stops/303273", "https://data.delijn.be/stops/305729"], ["https://data.delijn.be/stops/204250", "https://data.delijn.be/stops/214010"], ["https://data.delijn.be/stops/108568", "https://data.delijn.be/stops/108571"], ["https://data.delijn.be/stops/200929", "https://data.delijn.be/stops/201120"], ["https://data.delijn.be/stops/300946", "https://data.delijn.be/stops/303664"], ["https://data.delijn.be/stops/206327", "https://data.delijn.be/stops/206328"], ["https://data.delijn.be/stops/408082", "https://data.delijn.be/stops/305696"], ["https://data.delijn.be/stops/501470", "https://data.delijn.be/stops/506470"], ["https://data.delijn.be/stops/403228", "https://data.delijn.be/stops/407650"], ["https://data.delijn.be/stops/101808", "https://data.delijn.be/stops/108439"], ["https://data.delijn.be/stops/400053", "https://data.delijn.be/stops/400096"], ["https://data.delijn.be/stops/201088", "https://data.delijn.be/stops/202241"], ["https://data.delijn.be/stops/204029", "https://data.delijn.be/stops/205029"], ["https://data.delijn.be/stops/503870", "https://data.delijn.be/stops/509755"], ["https://data.delijn.be/stops/505165", "https://data.delijn.be/stops/509744"], ["https://data.delijn.be/stops/304760", "https://data.delijn.be/stops/304770"], ["https://data.delijn.be/stops/400838", "https://data.delijn.be/stops/409570"], ["https://data.delijn.be/stops/201855", "https://data.delijn.be/stops/201865"], ["https://data.delijn.be/stops/107032", "https://data.delijn.be/stops/107036"], ["https://data.delijn.be/stops/401411", "https://data.delijn.be/stops/305165"], ["https://data.delijn.be/stops/407742", "https://data.delijn.be/stops/409662"], ["https://data.delijn.be/stops/407519", "https://data.delijn.be/stops/408396"], ["https://data.delijn.be/stops/503072", "https://data.delijn.be/stops/508073"], ["https://data.delijn.be/stops/507689", "https://data.delijn.be/stops/509735"], ["https://data.delijn.be/stops/504118", "https://data.delijn.be/stops/505841"], ["https://data.delijn.be/stops/402352", "https://data.delijn.be/stops/405557"], ["https://data.delijn.be/stops/102058", "https://data.delijn.be/stops/106860"], ["https://data.delijn.be/stops/206249", "https://data.delijn.be/stops/216019"], ["https://data.delijn.be/stops/302132", "https://data.delijn.be/stops/302133"], ["https://data.delijn.be/stops/101898", "https://data.delijn.be/stops/107917"], ["https://data.delijn.be/stops/106789", "https://data.delijn.be/stops/106790"], ["https://data.delijn.be/stops/402411", "https://data.delijn.be/stops/402414"], ["https://data.delijn.be/stops/204364", "https://data.delijn.be/stops/205718"], ["https://data.delijn.be/stops/505580", "https://data.delijn.be/stops/508111"], ["https://data.delijn.be/stops/208354", "https://data.delijn.be/stops/209184"], ["https://data.delijn.be/stops/203080", "https://data.delijn.be/stops/204975"], ["https://data.delijn.be/stops/301456", "https://data.delijn.be/stops/301517"], ["https://data.delijn.be/stops/306691", "https://data.delijn.be/stops/306692"], ["https://data.delijn.be/stops/102472", "https://data.delijn.be/stops/400359"], ["https://data.delijn.be/stops/102378", "https://data.delijn.be/stops/106661"], ["https://data.delijn.be/stops/406212", "https://data.delijn.be/stops/406213"], ["https://data.delijn.be/stops/204631", "https://data.delijn.be/stops/204632"], ["https://data.delijn.be/stops/109801", "https://data.delijn.be/stops/109802"], ["https://data.delijn.be/stops/502101", "https://data.delijn.be/stops/502102"], ["https://data.delijn.be/stops/505568", "https://data.delijn.be/stops/508639"], ["https://data.delijn.be/stops/403183", "https://data.delijn.be/stops/403445"], ["https://data.delijn.be/stops/102239", "https://data.delijn.be/stops/109748"], ["https://data.delijn.be/stops/202181", "https://data.delijn.be/stops/203181"], ["https://data.delijn.be/stops/200903", "https://data.delijn.be/stops/202261"], ["https://data.delijn.be/stops/303077", "https://data.delijn.be/stops/307048"], ["https://data.delijn.be/stops/207111", "https://data.delijn.be/stops/306732"], ["https://data.delijn.be/stops/103998", "https://data.delijn.be/stops/106890"], ["https://data.delijn.be/stops/302329", "https://data.delijn.be/stops/303468"], ["https://data.delijn.be/stops/503194", "https://data.delijn.be/stops/508194"], ["https://data.delijn.be/stops/400582", "https://data.delijn.be/stops/400622"], ["https://data.delijn.be/stops/201578", "https://data.delijn.be/stops/201732"], ["https://data.delijn.be/stops/404829", "https://data.delijn.be/stops/410045"], ["https://data.delijn.be/stops/402698", "https://data.delijn.be/stops/402870"], ["https://data.delijn.be/stops/206041", "https://data.delijn.be/stops/206055"], ["https://data.delijn.be/stops/106801", "https://data.delijn.be/stops/106803"], ["https://data.delijn.be/stops/101202", "https://data.delijn.be/stops/101203"], ["https://data.delijn.be/stops/408252", "https://data.delijn.be/stops/408253"], ["https://data.delijn.be/stops/106832", "https://data.delijn.be/stops/106833"], ["https://data.delijn.be/stops/109440", "https://data.delijn.be/stops/109441"], ["https://data.delijn.be/stops/301605", "https://data.delijn.be/stops/307339"], ["https://data.delijn.be/stops/207182", "https://data.delijn.be/stops/207957"], ["https://data.delijn.be/stops/308748", "https://data.delijn.be/stops/308750"], ["https://data.delijn.be/stops/406735", "https://data.delijn.be/stops/407625"], ["https://data.delijn.be/stops/107552", "https://data.delijn.be/stops/109381"], ["https://data.delijn.be/stops/504943", "https://data.delijn.be/stops/505529"], ["https://data.delijn.be/stops/403954", "https://data.delijn.be/stops/404025"], ["https://data.delijn.be/stops/206369", "https://data.delijn.be/stops/207371"], ["https://data.delijn.be/stops/104586", "https://data.delijn.be/stops/104861"], ["https://data.delijn.be/stops/203910", "https://data.delijn.be/stops/211070"], ["https://data.delijn.be/stops/300058", "https://data.delijn.be/stops/300060"], ["https://data.delijn.be/stops/204239", "https://data.delijn.be/stops/205096"], ["https://data.delijn.be/stops/302016", "https://data.delijn.be/stops/308654"], ["https://data.delijn.be/stops/405890", "https://data.delijn.be/stops/406880"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/506001"], ["https://data.delijn.be/stops/407587", "https://data.delijn.be/stops/407593"], ["https://data.delijn.be/stops/303463", "https://data.delijn.be/stops/308934"], ["https://data.delijn.be/stops/401024", "https://data.delijn.be/stops/401141"], ["https://data.delijn.be/stops/406139", "https://data.delijn.be/stops/406140"], ["https://data.delijn.be/stops/108298", "https://data.delijn.be/stops/109304"], ["https://data.delijn.be/stops/106121", "https://data.delijn.be/stops/106122"], ["https://data.delijn.be/stops/303790", "https://data.delijn.be/stops/303809"], ["https://data.delijn.be/stops/503317", "https://data.delijn.be/stops/508676"], ["https://data.delijn.be/stops/504739", "https://data.delijn.be/stops/509163"], ["https://data.delijn.be/stops/106722", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/200363", "https://data.delijn.be/stops/200549"], ["https://data.delijn.be/stops/302293", "https://data.delijn.be/stops/302298"], ["https://data.delijn.be/stops/304610", "https://data.delijn.be/stops/306202"], ["https://data.delijn.be/stops/208611", "https://data.delijn.be/stops/209566"], ["https://data.delijn.be/stops/407241", "https://data.delijn.be/stops/407457"], ["https://data.delijn.be/stops/304561", "https://data.delijn.be/stops/304654"], ["https://data.delijn.be/stops/306072", "https://data.delijn.be/stops/306730"], ["https://data.delijn.be/stops/402853", "https://data.delijn.be/stops/402893"], ["https://data.delijn.be/stops/302945", "https://data.delijn.be/stops/308656"], ["https://data.delijn.be/stops/406060", "https://data.delijn.be/stops/406064"], ["https://data.delijn.be/stops/301259", "https://data.delijn.be/stops/308261"], ["https://data.delijn.be/stops/108334", "https://data.delijn.be/stops/108337"], ["https://data.delijn.be/stops/200625", "https://data.delijn.be/stops/204984"], ["https://data.delijn.be/stops/107345", "https://data.delijn.be/stops/108410"], ["https://data.delijn.be/stops/405473", "https://data.delijn.be/stops/406554"], ["https://data.delijn.be/stops/402581", "https://data.delijn.be/stops/402583"], ["https://data.delijn.be/stops/202209", "https://data.delijn.be/stops/202773"], ["https://data.delijn.be/stops/401798", "https://data.delijn.be/stops/401820"], ["https://data.delijn.be/stops/502586", "https://data.delijn.be/stops/507366"], ["https://data.delijn.be/stops/204983", "https://data.delijn.be/stops/207208"], ["https://data.delijn.be/stops/202787", "https://data.delijn.be/stops/208642"], ["https://data.delijn.be/stops/501265", "https://data.delijn.be/stops/506265"], ["https://data.delijn.be/stops/504560", "https://data.delijn.be/stops/505186"], ["https://data.delijn.be/stops/502754", "https://data.delijn.be/stops/502761"], ["https://data.delijn.be/stops/300669", "https://data.delijn.be/stops/305961"], ["https://data.delijn.be/stops/101700", "https://data.delijn.be/stops/108005"], ["https://data.delijn.be/stops/408244", "https://data.delijn.be/stops/308198"], ["https://data.delijn.be/stops/206601", "https://data.delijn.be/stops/306973"], ["https://data.delijn.be/stops/503291", "https://data.delijn.be/stops/507709"], ["https://data.delijn.be/stops/302760", "https://data.delijn.be/stops/302769"], ["https://data.delijn.be/stops/109557", "https://data.delijn.be/stops/109558"], ["https://data.delijn.be/stops/105504", "https://data.delijn.be/stops/105506"], ["https://data.delijn.be/stops/407685", "https://data.delijn.be/stops/407687"], ["https://data.delijn.be/stops/301795", "https://data.delijn.be/stops/301823"], ["https://data.delijn.be/stops/106064", "https://data.delijn.be/stops/106066"], ["https://data.delijn.be/stops/107334", "https://data.delijn.be/stops/107336"], ["https://data.delijn.be/stops/405881", "https://data.delijn.be/stops/406859"], ["https://data.delijn.be/stops/405043", "https://data.delijn.be/stops/405804"], ["https://data.delijn.be/stops/103235", "https://data.delijn.be/stops/103255"], ["https://data.delijn.be/stops/208150", "https://data.delijn.be/stops/209521"], ["https://data.delijn.be/stops/302709", "https://data.delijn.be/stops/307846"], ["https://data.delijn.be/stops/105581", "https://data.delijn.be/stops/107498"], ["https://data.delijn.be/stops/202056", "https://data.delijn.be/stops/202281"], ["https://data.delijn.be/stops/208668", "https://data.delijn.be/stops/209441"], ["https://data.delijn.be/stops/503363", "https://data.delijn.be/stops/508372"], ["https://data.delijn.be/stops/503741", "https://data.delijn.be/stops/508445"], ["https://data.delijn.be/stops/504546", "https://data.delijn.be/stops/505991"], ["https://data.delijn.be/stops/106822", "https://data.delijn.be/stops/106839"], ["https://data.delijn.be/stops/301760", "https://data.delijn.be/stops/304571"], ["https://data.delijn.be/stops/405142", "https://data.delijn.be/stops/405296"], ["https://data.delijn.be/stops/303172", "https://data.delijn.be/stops/303175"], ["https://data.delijn.be/stops/105406", "https://data.delijn.be/stops/107320"], ["https://data.delijn.be/stops/302555", "https://data.delijn.be/stops/305980"], ["https://data.delijn.be/stops/406612", "https://data.delijn.be/stops/406613"], ["https://data.delijn.be/stops/108000", "https://data.delijn.be/stops/109055"], ["https://data.delijn.be/stops/302661", "https://data.delijn.be/stops/302676"], ["https://data.delijn.be/stops/405849", "https://data.delijn.be/stops/407259"], ["https://data.delijn.be/stops/305149", "https://data.delijn.be/stops/308050"], ["https://data.delijn.be/stops/206112", "https://data.delijn.be/stops/206229"], ["https://data.delijn.be/stops/300749", "https://data.delijn.be/stops/301010"], ["https://data.delijn.be/stops/105765", "https://data.delijn.be/stops/105766"], ["https://data.delijn.be/stops/503686", "https://data.delijn.be/stops/508686"], ["https://data.delijn.be/stops/402329", "https://data.delijn.be/stops/402367"], ["https://data.delijn.be/stops/301769", "https://data.delijn.be/stops/301784"], ["https://data.delijn.be/stops/502212", "https://data.delijn.be/stops/502583"], ["https://data.delijn.be/stops/205572", "https://data.delijn.be/stops/308715"], ["https://data.delijn.be/stops/403403", "https://data.delijn.be/stops/403497"], ["https://data.delijn.be/stops/301973", "https://data.delijn.be/stops/301978"], ["https://data.delijn.be/stops/505547", "https://data.delijn.be/stops/507175"], ["https://data.delijn.be/stops/209146", "https://data.delijn.be/stops/209403"], ["https://data.delijn.be/stops/102308", "https://data.delijn.be/stops/105659"], ["https://data.delijn.be/stops/504332", "https://data.delijn.be/stops/509332"], ["https://data.delijn.be/stops/405041", "https://data.delijn.be/stops/405072"], ["https://data.delijn.be/stops/301626", "https://data.delijn.be/stops/301628"], ["https://data.delijn.be/stops/400484", "https://data.delijn.be/stops/407210"], ["https://data.delijn.be/stops/102152", "https://data.delijn.be/stops/102153"], ["https://data.delijn.be/stops/107355", "https://data.delijn.be/stops/109845"], ["https://data.delijn.be/stops/302476", "https://data.delijn.be/stops/308832"], ["https://data.delijn.be/stops/200316", "https://data.delijn.be/stops/200649"], ["https://data.delijn.be/stops/202550", "https://data.delijn.be/stops/203550"], ["https://data.delijn.be/stops/204644", "https://data.delijn.be/stops/205646"], ["https://data.delijn.be/stops/104947", "https://data.delijn.be/stops/104954"], ["https://data.delijn.be/stops/502517", "https://data.delijn.be/stops/505670"], ["https://data.delijn.be/stops/107921", "https://data.delijn.be/stops/107922"], ["https://data.delijn.be/stops/403494", "https://data.delijn.be/stops/403550"], ["https://data.delijn.be/stops/202611", "https://data.delijn.be/stops/203611"], ["https://data.delijn.be/stops/405055", "https://data.delijn.be/stops/408329"], ["https://data.delijn.be/stops/504654", "https://data.delijn.be/stops/509133"], ["https://data.delijn.be/stops/500958", "https://data.delijn.be/stops/503268"], ["https://data.delijn.be/stops/207791", "https://data.delijn.be/stops/209408"], ["https://data.delijn.be/stops/200455", "https://data.delijn.be/stops/201456"], ["https://data.delijn.be/stops/200900", "https://data.delijn.be/stops/200927"], ["https://data.delijn.be/stops/208132", "https://data.delijn.be/stops/209132"], ["https://data.delijn.be/stops/202493", "https://data.delijn.be/stops/211043"], ["https://data.delijn.be/stops/504649", "https://data.delijn.be/stops/504846"], ["https://data.delijn.be/stops/202956", "https://data.delijn.be/stops/203958"], ["https://data.delijn.be/stops/403384", "https://data.delijn.be/stops/403406"], ["https://data.delijn.be/stops/102313", "https://data.delijn.be/stops/103290"], ["https://data.delijn.be/stops/304797", "https://data.delijn.be/stops/306141"], ["https://data.delijn.be/stops/503646", "https://data.delijn.be/stops/503732"], ["https://data.delijn.be/stops/302719", "https://data.delijn.be/stops/308594"], ["https://data.delijn.be/stops/505176", "https://data.delijn.be/stops/509199"], ["https://data.delijn.be/stops/208586", "https://data.delijn.be/stops/209457"], ["https://data.delijn.be/stops/211097", "https://data.delijn.be/stops/218503"], ["https://data.delijn.be/stops/504567", "https://data.delijn.be/stops/505412"], ["https://data.delijn.be/stops/402115", "https://data.delijn.be/stops/406787"], ["https://data.delijn.be/stops/407595", "https://data.delijn.be/stops/407599"], ["https://data.delijn.be/stops/108400", "https://data.delijn.be/stops/108409"], ["https://data.delijn.be/stops/206625", "https://data.delijn.be/stops/206627"], ["https://data.delijn.be/stops/400040", "https://data.delijn.be/stops/400175"], ["https://data.delijn.be/stops/405633", "https://data.delijn.be/stops/410211"], ["https://data.delijn.be/stops/103027", "https://data.delijn.be/stops/307524"], ["https://data.delijn.be/stops/206533", "https://data.delijn.be/stops/207455"], ["https://data.delijn.be/stops/505222", "https://data.delijn.be/stops/505735"], ["https://data.delijn.be/stops/107687", "https://data.delijn.be/stops/107691"], ["https://data.delijn.be/stops/101982", "https://data.delijn.be/stops/109048"], ["https://data.delijn.be/stops/402943", "https://data.delijn.be/stops/402944"], ["https://data.delijn.be/stops/106315", "https://data.delijn.be/stops/109136"], ["https://data.delijn.be/stops/301672", "https://data.delijn.be/stops/303662"], ["https://data.delijn.be/stops/300263", "https://data.delijn.be/stops/303813"], ["https://data.delijn.be/stops/305769", "https://data.delijn.be/stops/305770"], ["https://data.delijn.be/stops/502223", "https://data.delijn.be/stops/507222"], ["https://data.delijn.be/stops/501447", "https://data.delijn.be/stops/501454"], ["https://data.delijn.be/stops/303955", "https://data.delijn.be/stops/304177"], ["https://data.delijn.be/stops/206859", "https://data.delijn.be/stops/207529"], ["https://data.delijn.be/stops/402204", "https://data.delijn.be/stops/402332"], ["https://data.delijn.be/stops/404220", "https://data.delijn.be/stops/404223"], ["https://data.delijn.be/stops/505612", "https://data.delijn.be/stops/509780"], ["https://data.delijn.be/stops/204665", "https://data.delijn.be/stops/205126"], ["https://data.delijn.be/stops/106941", "https://data.delijn.be/stops/108699"], ["https://data.delijn.be/stops/208050", "https://data.delijn.be/stops/209049"], ["https://data.delijn.be/stops/204678", "https://data.delijn.be/stops/204696"], ["https://data.delijn.be/stops/103926", "https://data.delijn.be/stops/103929"], ["https://data.delijn.be/stops/101471", "https://data.delijn.be/stops/104804"], ["https://data.delijn.be/stops/501505", "https://data.delijn.be/stops/506504"], ["https://data.delijn.be/stops/406973", "https://data.delijn.be/stops/408181"], ["https://data.delijn.be/stops/208747", "https://data.delijn.be/stops/208748"], ["https://data.delijn.be/stops/103613", "https://data.delijn.be/stops/106309"], ["https://data.delijn.be/stops/202486", "https://data.delijn.be/stops/203487"], ["https://data.delijn.be/stops/504017", "https://data.delijn.be/stops/504018"], ["https://data.delijn.be/stops/202730", "https://data.delijn.be/stops/204620"], ["https://data.delijn.be/stops/503554", "https://data.delijn.be/stops/503570"], ["https://data.delijn.be/stops/302142", "https://data.delijn.be/stops/306269"], ["https://data.delijn.be/stops/503655", "https://data.delijn.be/stops/505794"], ["https://data.delijn.be/stops/508001", "https://data.delijn.be/stops/508007"], ["https://data.delijn.be/stops/205126", "https://data.delijn.be/stops/205665"], ["https://data.delijn.be/stops/501744", "https://data.delijn.be/stops/504123"], ["https://data.delijn.be/stops/402255", "https://data.delijn.be/stops/402290"], ["https://data.delijn.be/stops/101063", "https://data.delijn.be/stops/106009"], ["https://data.delijn.be/stops/404860", "https://data.delijn.be/stops/404867"], ["https://data.delijn.be/stops/202334", "https://data.delijn.be/stops/203334"], ["https://data.delijn.be/stops/504668", "https://data.delijn.be/stops/508317"], ["https://data.delijn.be/stops/104934", "https://data.delijn.be/stops/107842"], ["https://data.delijn.be/stops/206956", "https://data.delijn.be/stops/207188"], ["https://data.delijn.be/stops/401882", "https://data.delijn.be/stops/407348"], ["https://data.delijn.be/stops/206608", "https://data.delijn.be/stops/207207"], ["https://data.delijn.be/stops/501555", "https://data.delijn.be/stops/506682"], ["https://data.delijn.be/stops/502329", "https://data.delijn.be/stops/507329"], ["https://data.delijn.be/stops/106217", "https://data.delijn.be/stops/106218"], ["https://data.delijn.be/stops/307135", "https://data.delijn.be/stops/307136"], ["https://data.delijn.be/stops/402132", "https://data.delijn.be/stops/402154"], ["https://data.delijn.be/stops/102940", "https://data.delijn.be/stops/102945"], ["https://data.delijn.be/stops/206165", "https://data.delijn.be/stops/303401"], ["https://data.delijn.be/stops/202318", "https://data.delijn.be/stops/203318"], ["https://data.delijn.be/stops/102804", "https://data.delijn.be/stops/109444"], ["https://data.delijn.be/stops/209641", "https://data.delijn.be/stops/209642"], ["https://data.delijn.be/stops/308881", "https://data.delijn.be/stops/308978"], ["https://data.delijn.be/stops/307412", "https://data.delijn.be/stops/308054"], ["https://data.delijn.be/stops/103905", "https://data.delijn.be/stops/103946"], ["https://data.delijn.be/stops/502251", "https://data.delijn.be/stops/507253"], ["https://data.delijn.be/stops/503592", "https://data.delijn.be/stops/505964"], ["https://data.delijn.be/stops/503425", "https://data.delijn.be/stops/508376"], ["https://data.delijn.be/stops/402935", "https://data.delijn.be/stops/403966"], ["https://data.delijn.be/stops/407227", "https://data.delijn.be/stops/407509"], ["https://data.delijn.be/stops/300639", "https://data.delijn.be/stops/300642"], ["https://data.delijn.be/stops/300204", "https://data.delijn.be/stops/300210"], ["https://data.delijn.be/stops/201950", "https://data.delijn.be/stops/202940"], ["https://data.delijn.be/stops/108262", "https://data.delijn.be/stops/108266"], ["https://data.delijn.be/stops/408559", "https://data.delijn.be/stops/408618"], ["https://data.delijn.be/stops/206538", "https://data.delijn.be/stops/207559"], ["https://data.delijn.be/stops/508802", "https://data.delijn.be/stops/508812"], ["https://data.delijn.be/stops/504040", "https://data.delijn.be/stops/504286"], ["https://data.delijn.be/stops/103494", "https://data.delijn.be/stops/103499"], ["https://data.delijn.be/stops/409417", "https://data.delijn.be/stops/409418"], ["https://data.delijn.be/stops/102549", "https://data.delijn.be/stops/102550"], ["https://data.delijn.be/stops/504366", "https://data.delijn.be/stops/509366"], ["https://data.delijn.be/stops/302548", "https://data.delijn.be/stops/306638"], ["https://data.delijn.be/stops/301475", "https://data.delijn.be/stops/308073"], ["https://data.delijn.be/stops/301000", "https://data.delijn.be/stops/308355"], ["https://data.delijn.be/stops/103337", "https://data.delijn.be/stops/106471"], ["https://data.delijn.be/stops/503776", "https://data.delijn.be/stops/503777"], ["https://data.delijn.be/stops/400436", "https://data.delijn.be/stops/400437"], ["https://data.delijn.be/stops/405783", "https://data.delijn.be/stops/409770"], ["https://data.delijn.be/stops/104046", "https://data.delijn.be/stops/308442"], ["https://data.delijn.be/stops/109191", "https://data.delijn.be/stops/109192"], ["https://data.delijn.be/stops/200330", "https://data.delijn.be/stops/202203"], ["https://data.delijn.be/stops/302418", "https://data.delijn.be/stops/307111"], ["https://data.delijn.be/stops/404874", "https://data.delijn.be/stops/404878"], ["https://data.delijn.be/stops/304904", "https://data.delijn.be/stops/304905"], ["https://data.delijn.be/stops/300958", "https://data.delijn.be/stops/300969"], ["https://data.delijn.be/stops/503284", "https://data.delijn.be/stops/503285"], ["https://data.delijn.be/stops/502428", "https://data.delijn.be/stops/507697"], ["https://data.delijn.be/stops/504791", "https://data.delijn.be/stops/508517"], ["https://data.delijn.be/stops/504741", "https://data.delijn.be/stops/509173"], ["https://data.delijn.be/stops/109826", "https://data.delijn.be/stops/109827"], ["https://data.delijn.be/stops/207048", "https://data.delijn.be/stops/207632"], ["https://data.delijn.be/stops/504503", "https://data.delijn.be/stops/505167"], ["https://data.delijn.be/stops/206264", "https://data.delijn.be/stops/206268"], ["https://data.delijn.be/stops/302885", "https://data.delijn.be/stops/303105"], ["https://data.delijn.be/stops/104497", "https://data.delijn.be/stops/107508"], ["https://data.delijn.be/stops/107696", "https://data.delijn.be/stops/107698"], ["https://data.delijn.be/stops/103572", "https://data.delijn.be/stops/103574"], ["https://data.delijn.be/stops/505217", "https://data.delijn.be/stops/505425"], ["https://data.delijn.be/stops/502328", "https://data.delijn.be/stops/505508"], ["https://data.delijn.be/stops/108551", "https://data.delijn.be/stops/109535"], ["https://data.delijn.be/stops/408319", "https://data.delijn.be/stops/408337"], ["https://data.delijn.be/stops/400175", "https://data.delijn.be/stops/405497"], ["https://data.delijn.be/stops/206046", "https://data.delijn.be/stops/206875"], ["https://data.delijn.be/stops/300183", "https://data.delijn.be/stops/300209"], ["https://data.delijn.be/stops/407089", "https://data.delijn.be/stops/407293"], ["https://data.delijn.be/stops/502381", "https://data.delijn.be/stops/502392"], ["https://data.delijn.be/stops/106200", "https://data.delijn.be/stops/106307"], ["https://data.delijn.be/stops/508763", "https://data.delijn.be/stops/508958"], ["https://data.delijn.be/stops/400108", "https://data.delijn.be/stops/409164"], ["https://data.delijn.be/stops/202911", "https://data.delijn.be/stops/203916"], ["https://data.delijn.be/stops/305255", "https://data.delijn.be/stops/305288"], ["https://data.delijn.be/stops/303434", "https://data.delijn.be/stops/304961"], ["https://data.delijn.be/stops/102447", "https://data.delijn.be/stops/104122"], ["https://data.delijn.be/stops/101530", "https://data.delijn.be/stops/104493"], ["https://data.delijn.be/stops/407623", "https://data.delijn.be/stops/407707"], ["https://data.delijn.be/stops/200699", "https://data.delijn.be/stops/201664"], ["https://data.delijn.be/stops/501018", "https://data.delijn.be/stops/501612"], ["https://data.delijn.be/stops/101816", "https://data.delijn.be/stops/107830"], ["https://data.delijn.be/stops/209471", "https://data.delijn.be/stops/209472"], ["https://data.delijn.be/stops/405386", "https://data.delijn.be/stops/405496"], ["https://data.delijn.be/stops/109115", "https://data.delijn.be/stops/109150"], ["https://data.delijn.be/stops/400364", "https://data.delijn.be/stops/406769"], ["https://data.delijn.be/stops/507693", "https://data.delijn.be/stops/503018"], ["https://data.delijn.be/stops/108049", "https://data.delijn.be/stops/108051"], ["https://data.delijn.be/stops/206092", "https://data.delijn.be/stops/207090"], ["https://data.delijn.be/stops/102424", "https://data.delijn.be/stops/105660"], ["https://data.delijn.be/stops/304283", "https://data.delijn.be/stops/306139"], ["https://data.delijn.be/stops/502341", "https://data.delijn.be/stops/502733"], ["https://data.delijn.be/stops/402703", "https://data.delijn.be/stops/405995"], ["https://data.delijn.be/stops/210079", "https://data.delijn.be/stops/210089"], ["https://data.delijn.be/stops/502320", "https://data.delijn.be/stops/507335"], ["https://data.delijn.be/stops/506308", "https://data.delijn.be/stops/506783"], ["https://data.delijn.be/stops/203118", "https://data.delijn.be/stops/204079"], ["https://data.delijn.be/stops/107037", "https://data.delijn.be/stops/108248"], ["https://data.delijn.be/stops/503711", "https://data.delijn.be/stops/503727"], ["https://data.delijn.be/stops/406500", "https://data.delijn.be/stops/406514"], ["https://data.delijn.be/stops/201941", "https://data.delijn.be/stops/210054"], ["https://data.delijn.be/stops/202609", "https://data.delijn.be/stops/203613"], ["https://data.delijn.be/stops/304593", "https://data.delijn.be/stops/304628"], ["https://data.delijn.be/stops/409692", "https://data.delijn.be/stops/409696"], ["https://data.delijn.be/stops/301294", "https://data.delijn.be/stops/307254"], ["https://data.delijn.be/stops/202058", "https://data.delijn.be/stops/203280"], ["https://data.delijn.be/stops/308021", "https://data.delijn.be/stops/308022"], ["https://data.delijn.be/stops/503627", "https://data.delijn.be/stops/508627"], ["https://data.delijn.be/stops/106884", "https://data.delijn.be/stops/106886"], ["https://data.delijn.be/stops/307972", "https://data.delijn.be/stops/307976"], ["https://data.delijn.be/stops/409428", "https://data.delijn.be/stops/409438"], ["https://data.delijn.be/stops/207191", "https://data.delijn.be/stops/207223"], ["https://data.delijn.be/stops/408268", "https://data.delijn.be/stops/408305"], ["https://data.delijn.be/stops/502445", "https://data.delijn.be/stops/507444"], ["https://data.delijn.be/stops/103227", "https://data.delijn.be/stops/109405"], ["https://data.delijn.be/stops/102977", "https://data.delijn.be/stops/103995"], ["https://data.delijn.be/stops/507264", "https://data.delijn.be/stops/507912"], ["https://data.delijn.be/stops/106042", "https://data.delijn.be/stops/106058"], ["https://data.delijn.be/stops/307628", "https://data.delijn.be/stops/307629"], ["https://data.delijn.be/stops/502540", "https://data.delijn.be/stops/507540"], ["https://data.delijn.be/stops/504739", "https://data.delijn.be/stops/505916"], ["https://data.delijn.be/stops/208540", "https://data.delijn.be/stops/208846"], ["https://data.delijn.be/stops/305188", "https://data.delijn.be/stops/306967"], ["https://data.delijn.be/stops/105737", "https://data.delijn.be/stops/105738"], ["https://data.delijn.be/stops/205988", "https://data.delijn.be/stops/218028"], ["https://data.delijn.be/stops/302788", "https://data.delijn.be/stops/302790"], ["https://data.delijn.be/stops/102090", "https://data.delijn.be/stops/102820"], ["https://data.delijn.be/stops/405758", "https://data.delijn.be/stops/405759"], ["https://data.delijn.be/stops/303717", "https://data.delijn.be/stops/303876"], ["https://data.delijn.be/stops/105907", "https://data.delijn.be/stops/105908"], ["https://data.delijn.be/stops/209045", "https://data.delijn.be/stops/209059"], ["https://data.delijn.be/stops/200509", "https://data.delijn.be/stops/200510"], ["https://data.delijn.be/stops/104043", "https://data.delijn.be/stops/305986"], ["https://data.delijn.be/stops/304890", "https://data.delijn.be/stops/307984"], ["https://data.delijn.be/stops/300039", "https://data.delijn.be/stops/300051"], ["https://data.delijn.be/stops/208192", "https://data.delijn.be/stops/208760"], ["https://data.delijn.be/stops/101675", "https://data.delijn.be/stops/102972"], ["https://data.delijn.be/stops/305702", "https://data.delijn.be/stops/305703"], ["https://data.delijn.be/stops/307367", "https://data.delijn.be/stops/307453"], ["https://data.delijn.be/stops/204983", "https://data.delijn.be/stops/206608"], ["https://data.delijn.be/stops/306608", "https://data.delijn.be/stops/306758"], ["https://data.delijn.be/stops/104637", "https://data.delijn.be/stops/104649"], ["https://data.delijn.be/stops/504032", "https://data.delijn.be/stops/509028"], ["https://data.delijn.be/stops/204513", "https://data.delijn.be/stops/205554"], ["https://data.delijn.be/stops/408302", "https://data.delijn.be/stops/408303"], ["https://data.delijn.be/stops/103259", "https://data.delijn.be/stops/109824"], ["https://data.delijn.be/stops/305695", "https://data.delijn.be/stops/305699"], ["https://data.delijn.be/stops/304160", "https://data.delijn.be/stops/304172"], ["https://data.delijn.be/stops/108573", "https://data.delijn.be/stops/108628"], ["https://data.delijn.be/stops/305083", "https://data.delijn.be/stops/306960"], ["https://data.delijn.be/stops/208353", "https://data.delijn.be/stops/209352"], ["https://data.delijn.be/stops/106944", "https://data.delijn.be/stops/106946"], ["https://data.delijn.be/stops/108328", "https://data.delijn.be/stops/108356"], ["https://data.delijn.be/stops/200314", "https://data.delijn.be/stops/201314"], ["https://data.delijn.be/stops/405909", "https://data.delijn.be/stops/405999"], ["https://data.delijn.be/stops/504663", "https://data.delijn.be/stops/509363"], ["https://data.delijn.be/stops/403420", "https://data.delijn.be/stops/403421"], ["https://data.delijn.be/stops/501053", "https://data.delijn.be/stops/506053"], ["https://data.delijn.be/stops/303734", "https://data.delijn.be/stops/303748"], ["https://data.delijn.be/stops/307789", "https://data.delijn.be/stops/308138"], ["https://data.delijn.be/stops/502073", "https://data.delijn.be/stops/507560"], ["https://data.delijn.be/stops/200004", "https://data.delijn.be/stops/201006"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/107142"], ["https://data.delijn.be/stops/505058", "https://data.delijn.be/stops/505059"], ["https://data.delijn.be/stops/501298", "https://data.delijn.be/stops/501331"], ["https://data.delijn.be/stops/105074", "https://data.delijn.be/stops/105189"], ["https://data.delijn.be/stops/402463", "https://data.delijn.be/stops/402465"], ["https://data.delijn.be/stops/303062", "https://data.delijn.be/stops/305443"], ["https://data.delijn.be/stops/207712", "https://data.delijn.be/stops/207714"], ["https://data.delijn.be/stops/505540", "https://data.delijn.be/stops/505908"], ["https://data.delijn.be/stops/201935", "https://data.delijn.be/stops/202955"], ["https://data.delijn.be/stops/102248", "https://data.delijn.be/stops/105937"], ["https://data.delijn.be/stops/301281", "https://data.delijn.be/stops/301282"], ["https://data.delijn.be/stops/303778", "https://data.delijn.be/stops/303801"], ["https://data.delijn.be/stops/201352", "https://data.delijn.be/stops/201962"], ["https://data.delijn.be/stops/206520", "https://data.delijn.be/stops/206521"], ["https://data.delijn.be/stops/202599", "https://data.delijn.be/stops/203599"], ["https://data.delijn.be/stops/107539", "https://data.delijn.be/stops/109603"], ["https://data.delijn.be/stops/107701", "https://data.delijn.be/stops/107714"], ["https://data.delijn.be/stops/201493", "https://data.delijn.be/stops/202294"], ["https://data.delijn.be/stops/503135", "https://data.delijn.be/stops/504829"], ["https://data.delijn.be/stops/201868", "https://data.delijn.be/stops/201869"], ["https://data.delijn.be/stops/201747", "https://data.delijn.be/stops/203160"], ["https://data.delijn.be/stops/101218", "https://data.delijn.be/stops/102441"], ["https://data.delijn.be/stops/404788", "https://data.delijn.be/stops/404789"], ["https://data.delijn.be/stops/401158", "https://data.delijn.be/stops/406719"], ["https://data.delijn.be/stops/207718", "https://data.delijn.be/stops/207873"], ["https://data.delijn.be/stops/504018", "https://data.delijn.be/stops/509016"], ["https://data.delijn.be/stops/504158", "https://data.delijn.be/stops/504161"], ["https://data.delijn.be/stops/400742", "https://data.delijn.be/stops/400743"], ["https://data.delijn.be/stops/206762", "https://data.delijn.be/stops/208623"], ["https://data.delijn.be/stops/305955", "https://data.delijn.be/stops/307514"], ["https://data.delijn.be/stops/102933", "https://data.delijn.be/stops/102969"], ["https://data.delijn.be/stops/204471", "https://data.delijn.be/stops/204778"], ["https://data.delijn.be/stops/300778", "https://data.delijn.be/stops/302408"], ["https://data.delijn.be/stops/105393", "https://data.delijn.be/stops/205820"], ["https://data.delijn.be/stops/504771", "https://data.delijn.be/stops/505084"], ["https://data.delijn.be/stops/205972", "https://data.delijn.be/stops/206055"], ["https://data.delijn.be/stops/305090", "https://data.delijn.be/stops/305092"], ["https://data.delijn.be/stops/504264", "https://data.delijn.be/stops/509264"], ["https://data.delijn.be/stops/106087", "https://data.delijn.be/stops/106135"], ["https://data.delijn.be/stops/201074", "https://data.delijn.be/stops/203352"], ["https://data.delijn.be/stops/204090", "https://data.delijn.be/stops/205090"], ["https://data.delijn.be/stops/303079", "https://data.delijn.be/stops/303080"], ["https://data.delijn.be/stops/300807", "https://data.delijn.be/stops/307026"], ["https://data.delijn.be/stops/503421", "https://data.delijn.be/stops/505190"], ["https://data.delijn.be/stops/206318", "https://data.delijn.be/stops/207289"], ["https://data.delijn.be/stops/305254", "https://data.delijn.be/stops/305307"], ["https://data.delijn.be/stops/504850", "https://data.delijn.be/stops/508742"], ["https://data.delijn.be/stops/208441", "https://data.delijn.be/stops/208516"], ["https://data.delijn.be/stops/105322", "https://data.delijn.be/stops/105323"], ["https://data.delijn.be/stops/502118", "https://data.delijn.be/stops/507118"], ["https://data.delijn.be/stops/400031", "https://data.delijn.be/stops/400033"], ["https://data.delijn.be/stops/103625", "https://data.delijn.be/stops/103630"], ["https://data.delijn.be/stops/209112", "https://data.delijn.be/stops/209798"], ["https://data.delijn.be/stops/105498", "https://data.delijn.be/stops/105501"], ["https://data.delijn.be/stops/407783", "https://data.delijn.be/stops/307447"], ["https://data.delijn.be/stops/106052", "https://data.delijn.be/stops/109946"], ["https://data.delijn.be/stops/301546", "https://data.delijn.be/stops/301550"], ["https://data.delijn.be/stops/302513", "https://data.delijn.be/stops/302514"], ["https://data.delijn.be/stops/203975", "https://data.delijn.be/stops/206281"], ["https://data.delijn.be/stops/105497", "https://data.delijn.be/stops/105498"], ["https://data.delijn.be/stops/402700", "https://data.delijn.be/stops/306021"], ["https://data.delijn.be/stops/404245", "https://data.delijn.be/stops/409305"], ["https://data.delijn.be/stops/302070", "https://data.delijn.be/stops/305635"], ["https://data.delijn.be/stops/505797", "https://data.delijn.be/stops/507949"], ["https://data.delijn.be/stops/208007", "https://data.delijn.be/stops/209006"], ["https://data.delijn.be/stops/301308", "https://data.delijn.be/stops/301902"], ["https://data.delijn.be/stops/407774", "https://data.delijn.be/stops/410248"], ["https://data.delijn.be/stops/501186", "https://data.delijn.be/stops/505747"], ["https://data.delijn.be/stops/203522", "https://data.delijn.be/stops/203523"], ["https://data.delijn.be/stops/504388", "https://data.delijn.be/stops/504712"], ["https://data.delijn.be/stops/201961", "https://data.delijn.be/stops/209491"], ["https://data.delijn.be/stops/209336", "https://data.delijn.be/stops/209337"], ["https://data.delijn.be/stops/302468", "https://data.delijn.be/stops/308832"], ["https://data.delijn.be/stops/201709", "https://data.delijn.be/stops/201710"], ["https://data.delijn.be/stops/407987", "https://data.delijn.be/stops/408089"], ["https://data.delijn.be/stops/406535", "https://data.delijn.be/stops/409642"], ["https://data.delijn.be/stops/103637", "https://data.delijn.be/stops/107168"], ["https://data.delijn.be/stops/102746", "https://data.delijn.be/stops/106415"], ["https://data.delijn.be/stops/302253", "https://data.delijn.be/stops/303205"], ["https://data.delijn.be/stops/105451", "https://data.delijn.be/stops/105452"], ["https://data.delijn.be/stops/207675", "https://data.delijn.be/stops/208491"], ["https://data.delijn.be/stops/201023", "https://data.delijn.be/stops/201100"], ["https://data.delijn.be/stops/400862", "https://data.delijn.be/stops/400866"], ["https://data.delijn.be/stops/105417", "https://data.delijn.be/stops/105424"], ["https://data.delijn.be/stops/502385", "https://data.delijn.be/stops/502588"], ["https://data.delijn.be/stops/102543", "https://data.delijn.be/stops/405102"], ["https://data.delijn.be/stops/507696", "https://data.delijn.be/stops/507697"], ["https://data.delijn.be/stops/109265", "https://data.delijn.be/stops/407111"], ["https://data.delijn.be/stops/104948", "https://data.delijn.be/stops/109786"], ["https://data.delijn.be/stops/304322", "https://data.delijn.be/stops/304324"], ["https://data.delijn.be/stops/101945", "https://data.delijn.be/stops/109707"], ["https://data.delijn.be/stops/307818", "https://data.delijn.be/stops/307819"], ["https://data.delijn.be/stops/502242", "https://data.delijn.be/stops/507242"], ["https://data.delijn.be/stops/101974", "https://data.delijn.be/stops/109062"], ["https://data.delijn.be/stops/508167", "https://data.delijn.be/stops/508877"], ["https://data.delijn.be/stops/201672", "https://data.delijn.be/stops/203403"], ["https://data.delijn.be/stops/102382", "https://data.delijn.be/stops/109641"], ["https://data.delijn.be/stops/402215", "https://data.delijn.be/stops/402216"], ["https://data.delijn.be/stops/507659", "https://data.delijn.be/stops/507660"], ["https://data.delijn.be/stops/105427", "https://data.delijn.be/stops/105433"], ["https://data.delijn.be/stops/109857", "https://data.delijn.be/stops/109931"], ["https://data.delijn.be/stops/504413", "https://data.delijn.be/stops/504467"], ["https://data.delijn.be/stops/201638", "https://data.delijn.be/stops/202941"], ["https://data.delijn.be/stops/202240", "https://data.delijn.be/stops/207593"], ["https://data.delijn.be/stops/203578", "https://data.delijn.be/stops/203641"], ["https://data.delijn.be/stops/303006", "https://data.delijn.be/stops/308660"], ["https://data.delijn.be/stops/408333", "https://data.delijn.be/stops/408335"], ["https://data.delijn.be/stops/308154", "https://data.delijn.be/stops/308173"], ["https://data.delijn.be/stops/300698", "https://data.delijn.be/stops/300720"], ["https://data.delijn.be/stops/102295", "https://data.delijn.be/stops/107460"], ["https://data.delijn.be/stops/206934", "https://data.delijn.be/stops/207934"], ["https://data.delijn.be/stops/307568", "https://data.delijn.be/stops/307585"], ["https://data.delijn.be/stops/204060", "https://data.delijn.be/stops/205723"], ["https://data.delijn.be/stops/305547", "https://data.delijn.be/stops/305579"], ["https://data.delijn.be/stops/106805", "https://data.delijn.be/stops/106806"], ["https://data.delijn.be/stops/405776", "https://data.delijn.be/stops/408481"], ["https://data.delijn.be/stops/400858", "https://data.delijn.be/stops/400859"], ["https://data.delijn.be/stops/101046", "https://data.delijn.be/stops/105983"], ["https://data.delijn.be/stops/407628", "https://data.delijn.be/stops/407632"], ["https://data.delijn.be/stops/404439", "https://data.delijn.be/stops/404469"], ["https://data.delijn.be/stops/207165", "https://data.delijn.be/stops/303796"], ["https://data.delijn.be/stops/301871", "https://data.delijn.be/stops/301876"], ["https://data.delijn.be/stops/503549", "https://data.delijn.be/stops/508548"], ["https://data.delijn.be/stops/402160", "https://data.delijn.be/stops/402264"], ["https://data.delijn.be/stops/303627", "https://data.delijn.be/stops/307205"], ["https://data.delijn.be/stops/503201", "https://data.delijn.be/stops/508194"], ["https://data.delijn.be/stops/407614", "https://data.delijn.be/stops/407619"], ["https://data.delijn.be/stops/504535", "https://data.delijn.be/stops/508724"], ["https://data.delijn.be/stops/109171", "https://data.delijn.be/stops/109172"], ["https://data.delijn.be/stops/202751", "https://data.delijn.be/stops/203751"], ["https://data.delijn.be/stops/207762", "https://data.delijn.be/stops/208372"], ["https://data.delijn.be/stops/407594", "https://data.delijn.be/stops/407664"], ["https://data.delijn.be/stops/501045", "https://data.delijn.be/stops/506045"], ["https://data.delijn.be/stops/503838", "https://data.delijn.be/stops/508839"], ["https://data.delijn.be/stops/507689", "https://data.delijn.be/stops/509295"], ["https://data.delijn.be/stops/203232", "https://data.delijn.be/stops/211121"], ["https://data.delijn.be/stops/406043", "https://data.delijn.be/stops/407862"], ["https://data.delijn.be/stops/207631", "https://data.delijn.be/stops/208569"], ["https://data.delijn.be/stops/303364", "https://data.delijn.be/stops/303387"], ["https://data.delijn.be/stops/504170", "https://data.delijn.be/stops/509170"], ["https://data.delijn.be/stops/105109", "https://data.delijn.be/stops/107813"], ["https://data.delijn.be/stops/104941", "https://data.delijn.be/stops/107692"], ["https://data.delijn.be/stops/304402", "https://data.delijn.be/stops/307416"], ["https://data.delijn.be/stops/200570", "https://data.delijn.be/stops/200575"], ["https://data.delijn.be/stops/402976", "https://data.delijn.be/stops/405985"], ["https://data.delijn.be/stops/402891", "https://data.delijn.be/stops/402893"], ["https://data.delijn.be/stops/202511", "https://data.delijn.be/stops/203511"], ["https://data.delijn.be/stops/105009", "https://data.delijn.be/stops/105079"], ["https://data.delijn.be/stops/204370", "https://data.delijn.be/stops/204762"], ["https://data.delijn.be/stops/307565", "https://data.delijn.be/stops/307566"], ["https://data.delijn.be/stops/207177", "https://data.delijn.be/stops/305923"], ["https://data.delijn.be/stops/106837", "https://data.delijn.be/stops/107422"], ["https://data.delijn.be/stops/301019", "https://data.delijn.be/stops/301020"], ["https://data.delijn.be/stops/200198", "https://data.delijn.be/stops/201068"], ["https://data.delijn.be/stops/306776", "https://data.delijn.be/stops/306778"], ["https://data.delijn.be/stops/200083", "https://data.delijn.be/stops/200393"], ["https://data.delijn.be/stops/406916", "https://data.delijn.be/stops/409483"], ["https://data.delijn.be/stops/304076", "https://data.delijn.be/stops/304077"], ["https://data.delijn.be/stops/503230", "https://data.delijn.be/stops/509765"], ["https://data.delijn.be/stops/205663", "https://data.delijn.be/stops/205688"], ["https://data.delijn.be/stops/105926", "https://data.delijn.be/stops/107267"], ["https://data.delijn.be/stops/307318", "https://data.delijn.be/stops/307319"], ["https://data.delijn.be/stops/300543", "https://data.delijn.be/stops/303968"], ["https://data.delijn.be/stops/200533", "https://data.delijn.be/stops/201533"], ["https://data.delijn.be/stops/503604", "https://data.delijn.be/stops/508617"], ["https://data.delijn.be/stops/107597", "https://data.delijn.be/stops/107598"], ["https://data.delijn.be/stops/108120", "https://data.delijn.be/stops/108405"], ["https://data.delijn.be/stops/407861", "https://data.delijn.be/stops/408027"], ["https://data.delijn.be/stops/503543", "https://data.delijn.be/stops/503579"], ["https://data.delijn.be/stops/202362", "https://data.delijn.be/stops/203362"], ["https://data.delijn.be/stops/402883", "https://data.delijn.be/stops/402885"], ["https://data.delijn.be/stops/208786", "https://data.delijn.be/stops/209176"], ["https://data.delijn.be/stops/401089", "https://data.delijn.be/stops/409815"], ["https://data.delijn.be/stops/301285", "https://data.delijn.be/stops/304691"], ["https://data.delijn.be/stops/208247", "https://data.delijn.be/stops/209855"], ["https://data.delijn.be/stops/408514", "https://data.delijn.be/stops/408515"], ["https://data.delijn.be/stops/301927", "https://data.delijn.be/stops/301928"], ["https://data.delijn.be/stops/200823", "https://data.delijn.be/stops/202448"], ["https://data.delijn.be/stops/102075", "https://data.delijn.be/stops/102889"], ["https://data.delijn.be/stops/206371", "https://data.delijn.be/stops/207371"], ["https://data.delijn.be/stops/501240", "https://data.delijn.be/stops/501243"], ["https://data.delijn.be/stops/108649", "https://data.delijn.be/stops/305220"], ["https://data.delijn.be/stops/404199", "https://data.delijn.be/stops/404219"], ["https://data.delijn.be/stops/202578", "https://data.delijn.be/stops/211851"], ["https://data.delijn.be/stops/502931", "https://data.delijn.be/stops/504961"], ["https://data.delijn.be/stops/302018", "https://data.delijn.be/stops/302046"], ["https://data.delijn.be/stops/205272", "https://data.delijn.be/stops/205447"], ["https://data.delijn.be/stops/403785", "https://data.delijn.be/stops/408991"], ["https://data.delijn.be/stops/400593", "https://data.delijn.be/stops/400594"], ["https://data.delijn.be/stops/106909", "https://data.delijn.be/stops/107259"], ["https://data.delijn.be/stops/202372", "https://data.delijn.be/stops/203373"], ["https://data.delijn.be/stops/302316", "https://data.delijn.be/stops/304062"], ["https://data.delijn.be/stops/505026", "https://data.delijn.be/stops/505742"], ["https://data.delijn.be/stops/402943", "https://data.delijn.be/stops/303646"], ["https://data.delijn.be/stops/206346", "https://data.delijn.be/stops/207717"], ["https://data.delijn.be/stops/202309", "https://data.delijn.be/stops/203308"], ["https://data.delijn.be/stops/406965", "https://data.delijn.be/stops/406966"], ["https://data.delijn.be/stops/504533", "https://data.delijn.be/stops/504534"], ["https://data.delijn.be/stops/106344", "https://data.delijn.be/stops/106346"], ["https://data.delijn.be/stops/300418", "https://data.delijn.be/stops/300427"], ["https://data.delijn.be/stops/204234", "https://data.delijn.be/stops/205234"], ["https://data.delijn.be/stops/102248", "https://data.delijn.be/stops/102863"], ["https://data.delijn.be/stops/102485", "https://data.delijn.be/stops/103186"], ["https://data.delijn.be/stops/103745", "https://data.delijn.be/stops/103750"], ["https://data.delijn.be/stops/404649", "https://data.delijn.be/stops/409550"], ["https://data.delijn.be/stops/503240", "https://data.delijn.be/stops/508240"], ["https://data.delijn.be/stops/105528", "https://data.delijn.be/stops/105529"], ["https://data.delijn.be/stops/306147", "https://data.delijn.be/stops/306148"], ["https://data.delijn.be/stops/206177", "https://data.delijn.be/stops/207177"], ["https://data.delijn.be/stops/407704", "https://data.delijn.be/stops/409623"], ["https://data.delijn.be/stops/202477", "https://data.delijn.be/stops/203477"], ["https://data.delijn.be/stops/504363", "https://data.delijn.be/stops/504663"], ["https://data.delijn.be/stops/302060", "https://data.delijn.be/stops/302077"], ["https://data.delijn.be/stops/308528", "https://data.delijn.be/stops/308529"], ["https://data.delijn.be/stops/503556", "https://data.delijn.be/stops/503582"], ["https://data.delijn.be/stops/300090", "https://data.delijn.be/stops/307947"], ["https://data.delijn.be/stops/407306", "https://data.delijn.be/stops/407307"], ["https://data.delijn.be/stops/300155", "https://data.delijn.be/stops/300158"], ["https://data.delijn.be/stops/408452", "https://data.delijn.be/stops/410217"], ["https://data.delijn.be/stops/106263", "https://data.delijn.be/stops/106274"], ["https://data.delijn.be/stops/103290", "https://data.delijn.be/stops/108145"], ["https://data.delijn.be/stops/407843", "https://data.delijn.be/stops/407844"], ["https://data.delijn.be/stops/408518", "https://data.delijn.be/stops/408736"], ["https://data.delijn.be/stops/400143", "https://data.delijn.be/stops/409147"], ["https://data.delijn.be/stops/501270", "https://data.delijn.be/stops/501511"], ["https://data.delijn.be/stops/302102", "https://data.delijn.be/stops/306989"], ["https://data.delijn.be/stops/504350", "https://data.delijn.be/stops/504595"], ["https://data.delijn.be/stops/408340", "https://data.delijn.be/stops/408401"], ["https://data.delijn.be/stops/305415", "https://data.delijn.be/stops/305461"], ["https://data.delijn.be/stops/103082", "https://data.delijn.be/stops/104676"], ["https://data.delijn.be/stops/303865", "https://data.delijn.be/stops/303866"], ["https://data.delijn.be/stops/306907", "https://data.delijn.be/stops/308127"], ["https://data.delijn.be/stops/206327", "https://data.delijn.be/stops/308847"], ["https://data.delijn.be/stops/401399", "https://data.delijn.be/stops/410152"], ["https://data.delijn.be/stops/502103", "https://data.delijn.be/stops/507148"], ["https://data.delijn.be/stops/208078", "https://data.delijn.be/stops/209078"], ["https://data.delijn.be/stops/504243", "https://data.delijn.be/stops/504443"], ["https://data.delijn.be/stops/405683", "https://data.delijn.be/stops/405846"], ["https://data.delijn.be/stops/103963", "https://data.delijn.be/stops/408154"], ["https://data.delijn.be/stops/206459", "https://data.delijn.be/stops/206462"], ["https://data.delijn.be/stops/202374", "https://data.delijn.be/stops/202375"], ["https://data.delijn.be/stops/101924", "https://data.delijn.be/stops/107012"], ["https://data.delijn.be/stops/302653", "https://data.delijn.be/stops/303259"], ["https://data.delijn.be/stops/204680", "https://data.delijn.be/stops/205679"], ["https://data.delijn.be/stops/101048", "https://data.delijn.be/stops/104108"], ["https://data.delijn.be/stops/104905", "https://data.delijn.be/stops/104946"], ["https://data.delijn.be/stops/101688", "https://data.delijn.be/stops/103133"], ["https://data.delijn.be/stops/504561", "https://data.delijn.be/stops/509561"], ["https://data.delijn.be/stops/206804", "https://data.delijn.be/stops/209348"], ["https://data.delijn.be/stops/406320", "https://data.delijn.be/stops/406330"], ["https://data.delijn.be/stops/305313", "https://data.delijn.be/stops/305336"], ["https://data.delijn.be/stops/204796", "https://data.delijn.be/stops/205796"], ["https://data.delijn.be/stops/402222", "https://data.delijn.be/stops/402260"], ["https://data.delijn.be/stops/303369", "https://data.delijn.be/stops/303388"], ["https://data.delijn.be/stops/202198", "https://data.delijn.be/stops/203198"], ["https://data.delijn.be/stops/403471", "https://data.delijn.be/stops/403472"], ["https://data.delijn.be/stops/300944", "https://data.delijn.be/stops/300947"], ["https://data.delijn.be/stops/201060", "https://data.delijn.be/stops/201091"], ["https://data.delijn.be/stops/502272", "https://data.delijn.be/stops/507271"], ["https://data.delijn.be/stops/204731", "https://data.delijn.be/stops/204772"], ["https://data.delijn.be/stops/503267", "https://data.delijn.be/stops/508267"], ["https://data.delijn.be/stops/509414", "https://data.delijn.be/stops/509591"], ["https://data.delijn.be/stops/202576", "https://data.delijn.be/stops/202583"], ["https://data.delijn.be/stops/305333", "https://data.delijn.be/stops/307296"], ["https://data.delijn.be/stops/306069", "https://data.delijn.be/stops/306721"], ["https://data.delijn.be/stops/300287", "https://data.delijn.be/stops/300288"], ["https://data.delijn.be/stops/300706", "https://data.delijn.be/stops/308064"], ["https://data.delijn.be/stops/406574", "https://data.delijn.be/stops/406575"], ["https://data.delijn.be/stops/505030", "https://data.delijn.be/stops/505839"], ["https://data.delijn.be/stops/304888", "https://data.delijn.be/stops/304893"], ["https://data.delijn.be/stops/300773", "https://data.delijn.be/stops/302398"], ["https://data.delijn.be/stops/303589", "https://data.delijn.be/stops/305221"], ["https://data.delijn.be/stops/204972", "https://data.delijn.be/stops/207265"], ["https://data.delijn.be/stops/204143", "https://data.delijn.be/stops/205131"], ["https://data.delijn.be/stops/407831", "https://data.delijn.be/stops/408064"], ["https://data.delijn.be/stops/505983", "https://data.delijn.be/stops/509609"], ["https://data.delijn.be/stops/503511", "https://data.delijn.be/stops/505659"], ["https://data.delijn.be/stops/105508", "https://data.delijn.be/stops/105786"], ["https://data.delijn.be/stops/303305", "https://data.delijn.be/stops/303309"], ["https://data.delijn.be/stops/304506", "https://data.delijn.be/stops/304507"], ["https://data.delijn.be/stops/407041", "https://data.delijn.be/stops/407075"], ["https://data.delijn.be/stops/104672", "https://data.delijn.be/stops/104673"], ["https://data.delijn.be/stops/404436", "https://data.delijn.be/stops/404471"], ["https://data.delijn.be/stops/202275", "https://data.delijn.be/stops/203691"], ["https://data.delijn.be/stops/301115", "https://data.delijn.be/stops/301132"], ["https://data.delijn.be/stops/201281", "https://data.delijn.be/stops/201282"], ["https://data.delijn.be/stops/305999", "https://data.delijn.be/stops/307507"], ["https://data.delijn.be/stops/306863", "https://data.delijn.be/stops/306866"], ["https://data.delijn.be/stops/301956", "https://data.delijn.be/stops/307832"], ["https://data.delijn.be/stops/206429", "https://data.delijn.be/stops/209692"], ["https://data.delijn.be/stops/405214", "https://data.delijn.be/stops/405215"], ["https://data.delijn.be/stops/400876", "https://data.delijn.be/stops/407533"], ["https://data.delijn.be/stops/405935", "https://data.delijn.be/stops/405966"], ["https://data.delijn.be/stops/206088", "https://data.delijn.be/stops/206722"], ["https://data.delijn.be/stops/300454", "https://data.delijn.be/stops/308063"], ["https://data.delijn.be/stops/305258", "https://data.delijn.be/stops/305306"], ["https://data.delijn.be/stops/202483", "https://data.delijn.be/stops/203338"], ["https://data.delijn.be/stops/406402", "https://data.delijn.be/stops/407638"], ["https://data.delijn.be/stops/500041", "https://data.delijn.be/stops/500051"], ["https://data.delijn.be/stops/404102", "https://data.delijn.be/stops/404109"], ["https://data.delijn.be/stops/408391", "https://data.delijn.be/stops/308218"], ["https://data.delijn.be/stops/502112", "https://data.delijn.be/stops/502148"], ["https://data.delijn.be/stops/403800", "https://data.delijn.be/stops/403803"], ["https://data.delijn.be/stops/502119", "https://data.delijn.be/stops/507680"], ["https://data.delijn.be/stops/107370", "https://data.delijn.be/stops/107585"], ["https://data.delijn.be/stops/200833", "https://data.delijn.be/stops/200835"], ["https://data.delijn.be/stops/302155", "https://data.delijn.be/stops/308096"], ["https://data.delijn.be/stops/403270", "https://data.delijn.be/stops/409126"], ["https://data.delijn.be/stops/305549", "https://data.delijn.be/stops/308550"], ["https://data.delijn.be/stops/300514", "https://data.delijn.be/stops/300525"], ["https://data.delijn.be/stops/504001", "https://data.delijn.be/stops/508498"], ["https://data.delijn.be/stops/104693", "https://data.delijn.be/stops/107354"], ["https://data.delijn.be/stops/502545", "https://data.delijn.be/stops/507542"], ["https://data.delijn.be/stops/406488", "https://data.delijn.be/stops/406489"], ["https://data.delijn.be/stops/207565", "https://data.delijn.be/stops/207837"], ["https://data.delijn.be/stops/202981", "https://data.delijn.be/stops/203983"], ["https://data.delijn.be/stops/108615", "https://data.delijn.be/stops/108620"], ["https://data.delijn.be/stops/203789", "https://data.delijn.be/stops/203790"], ["https://data.delijn.be/stops/103352", "https://data.delijn.be/stops/107450"], ["https://data.delijn.be/stops/503726", "https://data.delijn.be/stops/508726"], ["https://data.delijn.be/stops/101765", "https://data.delijn.be/stops/103282"], ["https://data.delijn.be/stops/106189", "https://data.delijn.be/stops/107439"], ["https://data.delijn.be/stops/101808", "https://data.delijn.be/stops/108377"], ["https://data.delijn.be/stops/302778", "https://data.delijn.be/stops/302780"], ["https://data.delijn.be/stops/503904", "https://data.delijn.be/stops/505443"], ["https://data.delijn.be/stops/502549", "https://data.delijn.be/stops/507656"], ["https://data.delijn.be/stops/409100", "https://data.delijn.be/stops/409140"], ["https://data.delijn.be/stops/407522", "https://data.delijn.be/stops/407542"], ["https://data.delijn.be/stops/101939", "https://data.delijn.be/stops/105085"], ["https://data.delijn.be/stops/507423", "https://data.delijn.be/stops/507751"], ["https://data.delijn.be/stops/202671", "https://data.delijn.be/stops/210035"], ["https://data.delijn.be/stops/401296", "https://data.delijn.be/stops/401350"], ["https://data.delijn.be/stops/300680", "https://data.delijn.be/stops/300683"], ["https://data.delijn.be/stops/203223", "https://data.delijn.be/stops/204773"], ["https://data.delijn.be/stops/102178", "https://data.delijn.be/stops/102625"], ["https://data.delijn.be/stops/403766", "https://data.delijn.be/stops/406973"], ["https://data.delijn.be/stops/302791", "https://data.delijn.be/stops/307455"], ["https://data.delijn.be/stops/308211", "https://data.delijn.be/stops/308221"], ["https://data.delijn.be/stops/209343", "https://data.delijn.be/stops/218028"], ["https://data.delijn.be/stops/406445", "https://data.delijn.be/stops/409404"], ["https://data.delijn.be/stops/206015", "https://data.delijn.be/stops/207297"], ["https://data.delijn.be/stops/405897", "https://data.delijn.be/stops/409666"], ["https://data.delijn.be/stops/503926", "https://data.delijn.be/stops/508926"], ["https://data.delijn.be/stops/403632", "https://data.delijn.be/stops/404408"], ["https://data.delijn.be/stops/501769", "https://data.delijn.be/stops/505356"], ["https://data.delijn.be/stops/302298", "https://data.delijn.be/stops/307133"], ["https://data.delijn.be/stops/502615", "https://data.delijn.be/stops/502641"], ["https://data.delijn.be/stops/101676", "https://data.delijn.be/stops/101678"], ["https://data.delijn.be/stops/101536", "https://data.delijn.be/stops/404047"], ["https://data.delijn.be/stops/105108", "https://data.delijn.be/stops/106831"], ["https://data.delijn.be/stops/201847", "https://data.delijn.be/stops/210021"], ["https://data.delijn.be/stops/103643", "https://data.delijn.be/stops/106634"], ["https://data.delijn.be/stops/200094", "https://data.delijn.be/stops/201469"], ["https://data.delijn.be/stops/102581", "https://data.delijn.be/stops/104600"], ["https://data.delijn.be/stops/205941", "https://data.delijn.be/stops/210046"], ["https://data.delijn.be/stops/101385", "https://data.delijn.be/stops/101865"], ["https://data.delijn.be/stops/302834", "https://data.delijn.be/stops/302835"], ["https://data.delijn.be/stops/107076", "https://data.delijn.be/stops/107077"], ["https://data.delijn.be/stops/503070", "https://data.delijn.be/stops/508070"], ["https://data.delijn.be/stops/410291", "https://data.delijn.be/stops/410351"], ["https://data.delijn.be/stops/104109", "https://data.delijn.be/stops/205604"], ["https://data.delijn.be/stops/306877", "https://data.delijn.be/stops/306879"], ["https://data.delijn.be/stops/203102", "https://data.delijn.be/stops/203104"], ["https://data.delijn.be/stops/206760", "https://data.delijn.be/stops/209456"], ["https://data.delijn.be/stops/502283", "https://data.delijn.be/stops/507283"], ["https://data.delijn.be/stops/401633", "https://data.delijn.be/stops/401649"], ["https://data.delijn.be/stops/400642", "https://data.delijn.be/stops/400908"], ["https://data.delijn.be/stops/306851", "https://data.delijn.be/stops/306854"], ["https://data.delijn.be/stops/300548", "https://data.delijn.be/stops/300556"], ["https://data.delijn.be/stops/505202", "https://data.delijn.be/stops/505426"], ["https://data.delijn.be/stops/200117", "https://data.delijn.be/stops/200118"], ["https://data.delijn.be/stops/402810", "https://data.delijn.be/stops/409443"], ["https://data.delijn.be/stops/507175", "https://data.delijn.be/stops/507686"], ["https://data.delijn.be/stops/109916", "https://data.delijn.be/stops/301151"], ["https://data.delijn.be/stops/500046", "https://data.delijn.be/stops/500053"], ["https://data.delijn.be/stops/107566", "https://data.delijn.be/stops/107568"], ["https://data.delijn.be/stops/403344", "https://data.delijn.be/stops/403481"], ["https://data.delijn.be/stops/408094", "https://data.delijn.be/stops/408095"], ["https://data.delijn.be/stops/304632", "https://data.delijn.be/stops/308756"], ["https://data.delijn.be/stops/208295", "https://data.delijn.be/stops/209120"], ["https://data.delijn.be/stops/508172", "https://data.delijn.be/stops/508176"], ["https://data.delijn.be/stops/406193", "https://data.delijn.be/stops/406447"], ["https://data.delijn.be/stops/401199", "https://data.delijn.be/stops/401203"], ["https://data.delijn.be/stops/503052", "https://data.delijn.be/stops/508052"], ["https://data.delijn.be/stops/402387", "https://data.delijn.be/stops/402488"], ["https://data.delijn.be/stops/102875", "https://data.delijn.be/stops/102880"], ["https://data.delijn.be/stops/504001", "https://data.delijn.be/stops/504002"], ["https://data.delijn.be/stops/206685", "https://data.delijn.be/stops/207874"], ["https://data.delijn.be/stops/400572", "https://data.delijn.be/stops/400573"], ["https://data.delijn.be/stops/503330", "https://data.delijn.be/stops/509735"], ["https://data.delijn.be/stops/303133", "https://data.delijn.be/stops/304649"], ["https://data.delijn.be/stops/102392", "https://data.delijn.be/stops/107113"], ["https://data.delijn.be/stops/107614", "https://data.delijn.be/stops/107647"], ["https://data.delijn.be/stops/204830", "https://data.delijn.be/stops/205670"], ["https://data.delijn.be/stops/405550", "https://data.delijn.be/stops/405578"], ["https://data.delijn.be/stops/502571", "https://data.delijn.be/stops/502574"], ["https://data.delijn.be/stops/404697", "https://data.delijn.be/stops/405514"], ["https://data.delijn.be/stops/403299", "https://data.delijn.be/stops/403544"], ["https://data.delijn.be/stops/502815", "https://data.delijn.be/stops/505689"], ["https://data.delijn.be/stops/502294", "https://data.delijn.be/stops/507099"], ["https://data.delijn.be/stops/501661", "https://data.delijn.be/stops/506662"], ["https://data.delijn.be/stops/503594", "https://data.delijn.be/stops/508594"], ["https://data.delijn.be/stops/102422", "https://data.delijn.be/stops/106997"], ["https://data.delijn.be/stops/305979", "https://data.delijn.be/stops/305982"], ["https://data.delijn.be/stops/302772", "https://data.delijn.be/stops/308597"], ["https://data.delijn.be/stops/104646", "https://data.delijn.be/stops/108054"], ["https://data.delijn.be/stops/404082", "https://data.delijn.be/stops/301514"], ["https://data.delijn.be/stops/503645", "https://data.delijn.be/stops/509976"], ["https://data.delijn.be/stops/200550", "https://data.delijn.be/stops/201550"], ["https://data.delijn.be/stops/308488", "https://data.delijn.be/stops/308490"], ["https://data.delijn.be/stops/406369", "https://data.delijn.be/stops/410394"], ["https://data.delijn.be/stops/401804", "https://data.delijn.be/stops/401817"], ["https://data.delijn.be/stops/304573", "https://data.delijn.be/stops/304659"], ["https://data.delijn.be/stops/403196", "https://data.delijn.be/stops/403198"], ["https://data.delijn.be/stops/301962", "https://data.delijn.be/stops/301980"], ["https://data.delijn.be/stops/403153", "https://data.delijn.be/stops/410274"], ["https://data.delijn.be/stops/504762", "https://data.delijn.be/stops/508530"], ["https://data.delijn.be/stops/407017", "https://data.delijn.be/stops/407063"], ["https://data.delijn.be/stops/507253", "https://data.delijn.be/stops/507254"], ["https://data.delijn.be/stops/102547", "https://data.delijn.be/stops/405100"], ["https://data.delijn.be/stops/202706", "https://data.delijn.be/stops/203706"], ["https://data.delijn.be/stops/400922", "https://data.delijn.be/stops/407375"], ["https://data.delijn.be/stops/304697", "https://data.delijn.be/stops/307195"], ["https://data.delijn.be/stops/302219", "https://data.delijn.be/stops/302231"], ["https://data.delijn.be/stops/502768", "https://data.delijn.be/stops/502769"], ["https://data.delijn.be/stops/109890", "https://data.delijn.be/stops/109947"], ["https://data.delijn.be/stops/502628", "https://data.delijn.be/stops/507121"], ["https://data.delijn.be/stops/502336", "https://data.delijn.be/stops/502658"], ["https://data.delijn.be/stops/201885", "https://data.delijn.be/stops/203284"], ["https://data.delijn.be/stops/404808", "https://data.delijn.be/stops/406094"], ["https://data.delijn.be/stops/102723", "https://data.delijn.be/stops/107010"], ["https://data.delijn.be/stops/304393", "https://data.delijn.be/stops/307402"], ["https://data.delijn.be/stops/102743", "https://data.delijn.be/stops/107403"], ["https://data.delijn.be/stops/404430", "https://data.delijn.be/stops/404431"], ["https://data.delijn.be/stops/300982", "https://data.delijn.be/stops/300983"], ["https://data.delijn.be/stops/408978", "https://data.delijn.be/stops/408991"], ["https://data.delijn.be/stops/500955", "https://data.delijn.be/stops/508288"], ["https://data.delijn.be/stops/408234", "https://data.delijn.be/stops/308194"], ["https://data.delijn.be/stops/404763", "https://data.delijn.be/stops/404766"], ["https://data.delijn.be/stops/206585", "https://data.delijn.be/stops/206586"], ["https://data.delijn.be/stops/102976", "https://data.delijn.be/stops/106767"], ["https://data.delijn.be/stops/308737", "https://data.delijn.be/stops/308738"], ["https://data.delijn.be/stops/405769", "https://data.delijn.be/stops/405804"], ["https://data.delijn.be/stops/507419", "https://data.delijn.be/stops/507695"], ["https://data.delijn.be/stops/404774", "https://data.delijn.be/stops/404775"], ["https://data.delijn.be/stops/407800", "https://data.delijn.be/stops/407802"], ["https://data.delijn.be/stops/303958", "https://data.delijn.be/stops/303972"], ["https://data.delijn.be/stops/300180", "https://data.delijn.be/stops/300185"], ["https://data.delijn.be/stops/206033", "https://data.delijn.be/stops/207901"], ["https://data.delijn.be/stops/509270", "https://data.delijn.be/stops/509274"], ["https://data.delijn.be/stops/302998", "https://data.delijn.be/stops/303003"], ["https://data.delijn.be/stops/200774", "https://data.delijn.be/stops/503980"], ["https://data.delijn.be/stops/101748", "https://data.delijn.be/stops/104341"], ["https://data.delijn.be/stops/302192", "https://data.delijn.be/stops/302423"], ["https://data.delijn.be/stops/109494", "https://data.delijn.be/stops/305836"], ["https://data.delijn.be/stops/200877", "https://data.delijn.be/stops/202063"], ["https://data.delijn.be/stops/408068", "https://data.delijn.be/stops/305705"], ["https://data.delijn.be/stops/501310", "https://data.delijn.be/stops/506211"], ["https://data.delijn.be/stops/103950", "https://data.delijn.be/stops/105710"], ["https://data.delijn.be/stops/403403", "https://data.delijn.be/stops/403404"], ["https://data.delijn.be/stops/302507", "https://data.delijn.be/stops/302508"], ["https://data.delijn.be/stops/101299", "https://data.delijn.be/stops/106478"], ["https://data.delijn.be/stops/200539", "https://data.delijn.be/stops/201539"], ["https://data.delijn.be/stops/200902", "https://data.delijn.be/stops/203107"], ["https://data.delijn.be/stops/105312", "https://data.delijn.be/stops/105313"], ["https://data.delijn.be/stops/308228", "https://data.delijn.be/stops/308230"], ["https://data.delijn.be/stops/504046", "https://data.delijn.be/stops/506002"], ["https://data.delijn.be/stops/205098", "https://data.delijn.be/stops/205138"], ["https://data.delijn.be/stops/302011", "https://data.delijn.be/stops/302036"], ["https://data.delijn.be/stops/202041", "https://data.delijn.be/stops/202042"], ["https://data.delijn.be/stops/201242", "https://data.delijn.be/stops/205358"], ["https://data.delijn.be/stops/501028", "https://data.delijn.be/stops/506632"], ["https://data.delijn.be/stops/402494", "https://data.delijn.be/stops/402498"], ["https://data.delijn.be/stops/106434", "https://data.delijn.be/stops/106562"], ["https://data.delijn.be/stops/109967", "https://data.delijn.be/stops/109974"], ["https://data.delijn.be/stops/104022", "https://data.delijn.be/stops/106982"], ["https://data.delijn.be/stops/303131", "https://data.delijn.be/stops/306086"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/203190"], ["https://data.delijn.be/stops/501073", "https://data.delijn.be/stops/501380"], ["https://data.delijn.be/stops/500567", "https://data.delijn.be/stops/501042"], ["https://data.delijn.be/stops/108720", "https://data.delijn.be/stops/108729"], ["https://data.delijn.be/stops/503009", "https://data.delijn.be/stops/508014"], ["https://data.delijn.be/stops/404418", "https://data.delijn.be/stops/407245"], ["https://data.delijn.be/stops/404596", "https://data.delijn.be/stops/406900"], ["https://data.delijn.be/stops/404399", "https://data.delijn.be/stops/408485"], ["https://data.delijn.be/stops/203682", "https://data.delijn.be/stops/203706"], ["https://data.delijn.be/stops/505276", "https://data.delijn.be/stops/508330"], ["https://data.delijn.be/stops/208547", "https://data.delijn.be/stops/209546"], ["https://data.delijn.be/stops/401277", "https://data.delijn.be/stops/401320"], ["https://data.delijn.be/stops/400754", "https://data.delijn.be/stops/400755"], ["https://data.delijn.be/stops/103100", "https://data.delijn.be/stops/103125"], ["https://data.delijn.be/stops/201915", "https://data.delijn.be/stops/203952"], ["https://data.delijn.be/stops/302873", "https://data.delijn.be/stops/306402"], ["https://data.delijn.be/stops/211019", "https://data.delijn.be/stops/508578"], ["https://data.delijn.be/stops/409421", "https://data.delijn.be/stops/409422"], ["https://data.delijn.be/stops/101195", "https://data.delijn.be/stops/104355"], ["https://data.delijn.be/stops/201089", "https://data.delijn.be/stops/202745"], ["https://data.delijn.be/stops/504049", "https://data.delijn.be/stops/509049"], ["https://data.delijn.be/stops/300084", "https://data.delijn.be/stops/300097"], ["https://data.delijn.be/stops/303227", "https://data.delijn.be/stops/304183"], ["https://data.delijn.be/stops/106732", "https://data.delijn.be/stops/106733"], ["https://data.delijn.be/stops/202759", "https://data.delijn.be/stops/203004"], ["https://data.delijn.be/stops/101024", "https://data.delijn.be/stops/101026"], ["https://data.delijn.be/stops/107223", "https://data.delijn.be/stops/107226"], ["https://data.delijn.be/stops/205983", "https://data.delijn.be/stops/208805"], ["https://data.delijn.be/stops/502800", "https://data.delijn.be/stops/504178"], ["https://data.delijn.be/stops/300449", "https://data.delijn.be/stops/308758"], ["https://data.delijn.be/stops/409041", "https://data.delijn.be/stops/409471"], ["https://data.delijn.be/stops/504521", "https://data.delijn.be/stops/509518"], ["https://data.delijn.be/stops/208216", "https://data.delijn.be/stops/209238"], ["https://data.delijn.be/stops/301921", "https://data.delijn.be/stops/301922"], ["https://data.delijn.be/stops/503380", "https://data.delijn.be/stops/503412"], ["https://data.delijn.be/stops/400133", "https://data.delijn.be/stops/409169"], ["https://data.delijn.be/stops/403790", "https://data.delijn.be/stops/403877"], ["https://data.delijn.be/stops/208121", "https://data.delijn.be/stops/209780"], ["https://data.delijn.be/stops/302186", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/203376", "https://data.delijn.be/stops/203377"], ["https://data.delijn.be/stops/200818", "https://data.delijn.be/stops/202301"], ["https://data.delijn.be/stops/407926", "https://data.delijn.be/stops/408018"], ["https://data.delijn.be/stops/502063", "https://data.delijn.be/stops/507068"], ["https://data.delijn.be/stops/400931", "https://data.delijn.be/stops/400940"], ["https://data.delijn.be/stops/404854", "https://data.delijn.be/stops/404944"], ["https://data.delijn.be/stops/102473", "https://data.delijn.be/stops/400296"], ["https://data.delijn.be/stops/400748", "https://data.delijn.be/stops/409580"], ["https://data.delijn.be/stops/102922", "https://data.delijn.be/stops/104865"], ["https://data.delijn.be/stops/509259", "https://data.delijn.be/stops/509261"], ["https://data.delijn.be/stops/305346", "https://data.delijn.be/stops/305349"], ["https://data.delijn.be/stops/207178", "https://data.delijn.be/stops/303844"], ["https://data.delijn.be/stops/103575", "https://data.delijn.be/stops/104975"], ["https://data.delijn.be/stops/501485", "https://data.delijn.be/stops/506135"], ["https://data.delijn.be/stops/204020", "https://data.delijn.be/stops/204820"], ["https://data.delijn.be/stops/207792", "https://data.delijn.be/stops/208872"], ["https://data.delijn.be/stops/300644", "https://data.delijn.be/stops/300658"], ["https://data.delijn.be/stops/102170", "https://data.delijn.be/stops/102447"], ["https://data.delijn.be/stops/403986", "https://data.delijn.be/stops/410025"], ["https://data.delijn.be/stops/302753", "https://data.delijn.be/stops/302760"], ["https://data.delijn.be/stops/301020", "https://data.delijn.be/stops/301022"], ["https://data.delijn.be/stops/406993", "https://data.delijn.be/stops/409232"], ["https://data.delijn.be/stops/501113", "https://data.delijn.be/stops/501463"], ["https://data.delijn.be/stops/302455", "https://data.delijn.be/stops/302456"], ["https://data.delijn.be/stops/107957", "https://data.delijn.be/stops/107958"], ["https://data.delijn.be/stops/305460", "https://data.delijn.be/stops/306554"], ["https://data.delijn.be/stops/305001", "https://data.delijn.be/stops/305034"], ["https://data.delijn.be/stops/104608", "https://data.delijn.be/stops/108841"], ["https://data.delijn.be/stops/208103", "https://data.delijn.be/stops/209103"], ["https://data.delijn.be/stops/300556", "https://data.delijn.be/stops/307864"], ["https://data.delijn.be/stops/503775", "https://data.delijn.be/stops/504000"], ["https://data.delijn.be/stops/504108", "https://data.delijn.be/stops/505798"], ["https://data.delijn.be/stops/401160", "https://data.delijn.be/stops/408102"], ["https://data.delijn.be/stops/106083", "https://data.delijn.be/stops/106084"], ["https://data.delijn.be/stops/503142", "https://data.delijn.be/stops/508144"], ["https://data.delijn.be/stops/101186", "https://data.delijn.be/stops/102848"], ["https://data.delijn.be/stops/302587", "https://data.delijn.be/stops/302594"], ["https://data.delijn.be/stops/501123", "https://data.delijn.be/stops/506121"], ["https://data.delijn.be/stops/305944", "https://data.delijn.be/stops/308413"], ["https://data.delijn.be/stops/303254", "https://data.delijn.be/stops/303255"], ["https://data.delijn.be/stops/209462", "https://data.delijn.be/stops/209674"], ["https://data.delijn.be/stops/406117", "https://data.delijn.be/stops/410262"], ["https://data.delijn.be/stops/501311", "https://data.delijn.be/stops/501523"], ["https://data.delijn.be/stops/108032", "https://data.delijn.be/stops/108034"], ["https://data.delijn.be/stops/507429", "https://data.delijn.be/stops/507436"], ["https://data.delijn.be/stops/404524", "https://data.delijn.be/stops/404554"], ["https://data.delijn.be/stops/102675", "https://data.delijn.be/stops/103930"], ["https://data.delijn.be/stops/302671", "https://data.delijn.be/stops/302672"], ["https://data.delijn.be/stops/104598", "https://data.delijn.be/stops/106810"], ["https://data.delijn.be/stops/201458", "https://data.delijn.be/stops/201737"], ["https://data.delijn.be/stops/303692", "https://data.delijn.be/stops/303761"], ["https://data.delijn.be/stops/505387", "https://data.delijn.be/stops/508086"], ["https://data.delijn.be/stops/107316", "https://data.delijn.be/stops/108816"], ["https://data.delijn.be/stops/101640", "https://data.delijn.be/stops/105780"], ["https://data.delijn.be/stops/304166", "https://data.delijn.be/stops/307540"], ["https://data.delijn.be/stops/501215", "https://data.delijn.be/stops/506212"], ["https://data.delijn.be/stops/105418", "https://data.delijn.be/stops/109846"], ["https://data.delijn.be/stops/503110", "https://data.delijn.be/stops/503113"], ["https://data.delijn.be/stops/206159", "https://data.delijn.be/stops/206495"], ["https://data.delijn.be/stops/305876", "https://data.delijn.be/stops/305944"], ["https://data.delijn.be/stops/402256", "https://data.delijn.be/stops/409631"], ["https://data.delijn.be/stops/304360", "https://data.delijn.be/stops/307368"], ["https://data.delijn.be/stops/505016", "https://data.delijn.be/stops/507925"], ["https://data.delijn.be/stops/502540", "https://data.delijn.be/stops/505090"], ["https://data.delijn.be/stops/300980", "https://data.delijn.be/stops/301002"], ["https://data.delijn.be/stops/301702", "https://data.delijn.be/stops/303713"], ["https://data.delijn.be/stops/105672", "https://data.delijn.be/stops/105802"], ["https://data.delijn.be/stops/105324", "https://data.delijn.be/stops/105331"], ["https://data.delijn.be/stops/200114", "https://data.delijn.be/stops/211075"], ["https://data.delijn.be/stops/305529", "https://data.delijn.be/stops/308980"], ["https://data.delijn.be/stops/204521", "https://data.delijn.be/stops/204756"], ["https://data.delijn.be/stops/403744", "https://data.delijn.be/stops/403791"], ["https://data.delijn.be/stops/200570", "https://data.delijn.be/stops/201574"], ["https://data.delijn.be/stops/307760", "https://data.delijn.be/stops/307761"], ["https://data.delijn.be/stops/109357", "https://data.delijn.be/stops/109867"], ["https://data.delijn.be/stops/403374", "https://data.delijn.be/stops/403560"], ["https://data.delijn.be/stops/106807", "https://data.delijn.be/stops/106810"], ["https://data.delijn.be/stops/503259", "https://data.delijn.be/stops/503264"], ["https://data.delijn.be/stops/505022", "https://data.delijn.be/stops/507708"], ["https://data.delijn.be/stops/301696", "https://data.delijn.be/stops/301777"], ["https://data.delijn.be/stops/303995", "https://data.delijn.be/stops/306292"], ["https://data.delijn.be/stops/400069", "https://data.delijn.be/stops/400167"], ["https://data.delijn.be/stops/304037", "https://data.delijn.be/stops/304090"], ["https://data.delijn.be/stops/208368", "https://data.delijn.be/stops/209367"], ["https://data.delijn.be/stops/307741", "https://data.delijn.be/stops/307743"], ["https://data.delijn.be/stops/302862", "https://data.delijn.be/stops/304926"], ["https://data.delijn.be/stops/404249", "https://data.delijn.be/stops/404323"], ["https://data.delijn.be/stops/402984", "https://data.delijn.be/stops/404267"], ["https://data.delijn.be/stops/206437", "https://data.delijn.be/stops/209685"], ["https://data.delijn.be/stops/501523", "https://data.delijn.be/stops/506309"], ["https://data.delijn.be/stops/507416", "https://data.delijn.be/stops/507427"], ["https://data.delijn.be/stops/402810", "https://data.delijn.be/stops/409045"], ["https://data.delijn.be/stops/402597", "https://data.delijn.be/stops/404098"], ["https://data.delijn.be/stops/508876", "https://data.delijn.be/stops/509752"], ["https://data.delijn.be/stops/104077", "https://data.delijn.be/stops/106072"], ["https://data.delijn.be/stops/504264", "https://data.delijn.be/stops/505829"], ["https://data.delijn.be/stops/501528", "https://data.delijn.be/stops/506198"], ["https://data.delijn.be/stops/102193", "https://data.delijn.be/stops/104261"], ["https://data.delijn.be/stops/405769", "https://data.delijn.be/stops/307453"], ["https://data.delijn.be/stops/109535", "https://data.delijn.be/stops/109590"], ["https://data.delijn.be/stops/302218", "https://data.delijn.be/stops/302219"], ["https://data.delijn.be/stops/200952", "https://data.delijn.be/stops/203248"], ["https://data.delijn.be/stops/502522", "https://data.delijn.be/stops/507519"], ["https://data.delijn.be/stops/501595", "https://data.delijn.be/stops/506221"], ["https://data.delijn.be/stops/404247", "https://data.delijn.be/stops/409630"], ["https://data.delijn.be/stops/503420", "https://data.delijn.be/stops/508420"], ["https://data.delijn.be/stops/105036", "https://data.delijn.be/stops/105064"], ["https://data.delijn.be/stops/206439", "https://data.delijn.be/stops/207442"], ["https://data.delijn.be/stops/206631", "https://data.delijn.be/stops/209570"], ["https://data.delijn.be/stops/301027", "https://data.delijn.be/stops/302986"], ["https://data.delijn.be/stops/201147", "https://data.delijn.be/stops/201229"], ["https://data.delijn.be/stops/305296", "https://data.delijn.be/stops/305908"], ["https://data.delijn.be/stops/201435", "https://data.delijn.be/stops/210090"], ["https://data.delijn.be/stops/408371", "https://data.delijn.be/stops/409415"], ["https://data.delijn.be/stops/503765", "https://data.delijn.be/stops/509971"], ["https://data.delijn.be/stops/200705", "https://data.delijn.be/stops/202573"], ["https://data.delijn.be/stops/200906", "https://data.delijn.be/stops/202237"], ["https://data.delijn.be/stops/503012", "https://data.delijn.be/stops/504538"], ["https://data.delijn.be/stops/104220", "https://data.delijn.be/stops/106015"], ["https://data.delijn.be/stops/504777", "https://data.delijn.be/stops/504778"], ["https://data.delijn.be/stops/502608", "https://data.delijn.be/stops/505705"], ["https://data.delijn.be/stops/102320", "https://data.delijn.be/stops/106359"], ["https://data.delijn.be/stops/108283", "https://data.delijn.be/stops/109362"], ["https://data.delijn.be/stops/508479", "https://data.delijn.be/stops/508483"], ["https://data.delijn.be/stops/302090", "https://data.delijn.be/stops/306989"], ["https://data.delijn.be/stops/406150", "https://data.delijn.be/stops/406155"], ["https://data.delijn.be/stops/404182", "https://data.delijn.be/stops/404186"], ["https://data.delijn.be/stops/302939", "https://data.delijn.be/stops/308590"], ["https://data.delijn.be/stops/204756", "https://data.delijn.be/stops/205482"], ["https://data.delijn.be/stops/503311", "https://data.delijn.be/stops/503312"], ["https://data.delijn.be/stops/206720", "https://data.delijn.be/stops/207656"], ["https://data.delijn.be/stops/206469", "https://data.delijn.be/stops/207136"], ["https://data.delijn.be/stops/301881", "https://data.delijn.be/stops/301885"], ["https://data.delijn.be/stops/104021", "https://data.delijn.be/stops/104942"], ["https://data.delijn.be/stops/307974", "https://data.delijn.be/stops/307975"], ["https://data.delijn.be/stops/301367", "https://data.delijn.be/stops/303279"], ["https://data.delijn.be/stops/106901", "https://data.delijn.be/stops/106902"], ["https://data.delijn.be/stops/108469", "https://data.delijn.be/stops/108471"], ["https://data.delijn.be/stops/401602", "https://data.delijn.be/stops/401603"], ["https://data.delijn.be/stops/504192", "https://data.delijn.be/stops/505101"], ["https://data.delijn.be/stops/300438", "https://data.delijn.be/stops/300439"], ["https://data.delijn.be/stops/302015", "https://data.delijn.be/stops/308754"], ["https://data.delijn.be/stops/204101", "https://data.delijn.be/stops/206394"], ["https://data.delijn.be/stops/209273", "https://data.delijn.be/stops/209276"], ["https://data.delijn.be/stops/304512", "https://data.delijn.be/stops/306206"], ["https://data.delijn.be/stops/203115", "https://data.delijn.be/stops/203116"], ["https://data.delijn.be/stops/104878", "https://data.delijn.be/stops/105296"], ["https://data.delijn.be/stops/307423", "https://data.delijn.be/stops/307424"], ["https://data.delijn.be/stops/101071", "https://data.delijn.be/stops/101072"], ["https://data.delijn.be/stops/504807", "https://data.delijn.be/stops/504808"], ["https://data.delijn.be/stops/204054", "https://data.delijn.be/stops/205703"], ["https://data.delijn.be/stops/102378", "https://data.delijn.be/stops/107194"], ["https://data.delijn.be/stops/102109", "https://data.delijn.be/stops/106229"], ["https://data.delijn.be/stops/502281", "https://data.delijn.be/stops/502815"], ["https://data.delijn.be/stops/208244", "https://data.delijn.be/stops/209244"], ["https://data.delijn.be/stops/505630", "https://data.delijn.be/stops/508334"], ["https://data.delijn.be/stops/106199", "https://data.delijn.be/stops/106201"], ["https://data.delijn.be/stops/104029", "https://data.delijn.be/stops/108808"], ["https://data.delijn.be/stops/101579", "https://data.delijn.be/stops/109891"], ["https://data.delijn.be/stops/403464", "https://data.delijn.be/stops/403493"], ["https://data.delijn.be/stops/505187", "https://data.delijn.be/stops/509568"], ["https://data.delijn.be/stops/104975", "https://data.delijn.be/stops/105105"], ["https://data.delijn.be/stops/106494", "https://data.delijn.be/stops/107062"], ["https://data.delijn.be/stops/105732", "https://data.delijn.be/stops/105733"], ["https://data.delijn.be/stops/408836", "https://data.delijn.be/stops/408844"], ["https://data.delijn.be/stops/201278", "https://data.delijn.be/stops/209952"], ["https://data.delijn.be/stops/508895", "https://data.delijn.be/stops/508987"], ["https://data.delijn.be/stops/202581", "https://data.delijn.be/stops/202582"], ["https://data.delijn.be/stops/401781", "https://data.delijn.be/stops/406125"], ["https://data.delijn.be/stops/204138", "https://data.delijn.be/stops/204147"], ["https://data.delijn.be/stops/303505", "https://data.delijn.be/stops/303510"], ["https://data.delijn.be/stops/206690", "https://data.delijn.be/stops/308565"], ["https://data.delijn.be/stops/205158", "https://data.delijn.be/stops/205582"], ["https://data.delijn.be/stops/504055", "https://data.delijn.be/stops/504056"], ["https://data.delijn.be/stops/501249", "https://data.delijn.be/stops/506767"], ["https://data.delijn.be/stops/200341", "https://data.delijn.be/stops/210335"], ["https://data.delijn.be/stops/201769", "https://data.delijn.be/stops/208272"], ["https://data.delijn.be/stops/400557", "https://data.delijn.be/stops/404278"], ["https://data.delijn.be/stops/204769", "https://data.delijn.be/stops/205416"], ["https://data.delijn.be/stops/304619", "https://data.delijn.be/stops/304661"], ["https://data.delijn.be/stops/404945", "https://data.delijn.be/stops/410051"], ["https://data.delijn.be/stops/206373", "https://data.delijn.be/stops/207221"], ["https://data.delijn.be/stops/301854", "https://data.delijn.be/stops/301855"], ["https://data.delijn.be/stops/108764", "https://data.delijn.be/stops/108766"], ["https://data.delijn.be/stops/507564", "https://data.delijn.be/stops/507565"], ["https://data.delijn.be/stops/209231", "https://data.delijn.be/stops/209795"], ["https://data.delijn.be/stops/200555", "https://data.delijn.be/stops/201554"], ["https://data.delijn.be/stops/207412", "https://data.delijn.be/stops/207684"], ["https://data.delijn.be/stops/300754", "https://data.delijn.be/stops/301958"], ["https://data.delijn.be/stops/108814", "https://data.delijn.be/stops/108850"], ["https://data.delijn.be/stops/407964", "https://data.delijn.be/stops/408000"], ["https://data.delijn.be/stops/302914", "https://data.delijn.be/stops/302930"], ["https://data.delijn.be/stops/407498", "https://data.delijn.be/stops/407499"], ["https://data.delijn.be/stops/304579", "https://data.delijn.be/stops/305577"], ["https://data.delijn.be/stops/301317", "https://data.delijn.be/stops/301768"], ["https://data.delijn.be/stops/208142", "https://data.delijn.be/stops/208194"], ["https://data.delijn.be/stops/202575", "https://data.delijn.be/stops/202607"], ["https://data.delijn.be/stops/208178", "https://data.delijn.be/stops/208785"], ["https://data.delijn.be/stops/105103", "https://data.delijn.be/stops/106971"], ["https://data.delijn.be/stops/302201", "https://data.delijn.be/stops/307109"], ["https://data.delijn.be/stops/208423", "https://data.delijn.be/stops/209423"], ["https://data.delijn.be/stops/106084", "https://data.delijn.be/stops/106087"], ["https://data.delijn.be/stops/105470", "https://data.delijn.be/stops/105670"], ["https://data.delijn.be/stops/208111", "https://data.delijn.be/stops/219007"], ["https://data.delijn.be/stops/204017", "https://data.delijn.be/stops/204314"], ["https://data.delijn.be/stops/304611", "https://data.delijn.be/stops/304628"], ["https://data.delijn.be/stops/102741", "https://data.delijn.be/stops/107286"], ["https://data.delijn.be/stops/204996", "https://data.delijn.be/stops/205996"], ["https://data.delijn.be/stops/302458", "https://data.delijn.be/stops/302497"], ["https://data.delijn.be/stops/206230", "https://data.delijn.be/stops/207230"], ["https://data.delijn.be/stops/404718", "https://data.delijn.be/stops/404786"], ["https://data.delijn.be/stops/300037", "https://data.delijn.be/stops/308541"], ["https://data.delijn.be/stops/504218", "https://data.delijn.be/stops/509215"], ["https://data.delijn.be/stops/202512", "https://data.delijn.be/stops/203512"], ["https://data.delijn.be/stops/409296", "https://data.delijn.be/stops/410115"], ["https://data.delijn.be/stops/406476", "https://data.delijn.be/stops/406477"], ["https://data.delijn.be/stops/202287", "https://data.delijn.be/stops/203287"], ["https://data.delijn.be/stops/208770", "https://data.delijn.be/stops/209313"], ["https://data.delijn.be/stops/406395", "https://data.delijn.be/stops/410151"], ["https://data.delijn.be/stops/303180", "https://data.delijn.be/stops/307608"], ["https://data.delijn.be/stops/104007", "https://data.delijn.be/stops/107290"], ["https://data.delijn.be/stops/503608", "https://data.delijn.be/stops/503790"], ["https://data.delijn.be/stops/503666", "https://data.delijn.be/stops/508660"], ["https://data.delijn.be/stops/404300", "https://data.delijn.be/stops/404328"], ["https://data.delijn.be/stops/204152", "https://data.delijn.be/stops/205152"], ["https://data.delijn.be/stops/308046", "https://data.delijn.be/stops/308447"], ["https://data.delijn.be/stops/505231", "https://data.delijn.be/stops/505775"], ["https://data.delijn.be/stops/304984", "https://data.delijn.be/stops/308027"], ["https://data.delijn.be/stops/303030", "https://data.delijn.be/stops/303031"], ["https://data.delijn.be/stops/403212", "https://data.delijn.be/stops/405359"], ["https://data.delijn.be/stops/108564", "https://data.delijn.be/stops/109101"], ["https://data.delijn.be/stops/407897", "https://data.delijn.be/stops/407936"], ["https://data.delijn.be/stops/400631", "https://data.delijn.be/stops/410009"], ["https://data.delijn.be/stops/101782", "https://data.delijn.be/stops/102659"], ["https://data.delijn.be/stops/501491", "https://data.delijn.be/stops/506035"], ["https://data.delijn.be/stops/200564", "https://data.delijn.be/stops/200667"], ["https://data.delijn.be/stops/406221", "https://data.delijn.be/stops/410189"], ["https://data.delijn.be/stops/204575", "https://data.delijn.be/stops/207638"], ["https://data.delijn.be/stops/101517", "https://data.delijn.be/stops/109023"], ["https://data.delijn.be/stops/105561", "https://data.delijn.be/stops/106291"], ["https://data.delijn.be/stops/508762", "https://data.delijn.be/stops/508765"], ["https://data.delijn.be/stops/302841", "https://data.delijn.be/stops/303314"], ["https://data.delijn.be/stops/304239", "https://data.delijn.be/stops/304805"], ["https://data.delijn.be/stops/503322", "https://data.delijn.be/stops/508322"], ["https://data.delijn.be/stops/300037", "https://data.delijn.be/stops/300046"], ["https://data.delijn.be/stops/101224", "https://data.delijn.be/stops/101798"], ["https://data.delijn.be/stops/103728", "https://data.delijn.be/stops/109445"], ["https://data.delijn.be/stops/304432", "https://data.delijn.be/stops/304437"], ["https://data.delijn.be/stops/509171", "https://data.delijn.be/stops/509350"], ["https://data.delijn.be/stops/200851", "https://data.delijn.be/stops/200873"], ["https://data.delijn.be/stops/206367", "https://data.delijn.be/stops/206955"], ["https://data.delijn.be/stops/302453", "https://data.delijn.be/stops/302466"], ["https://data.delijn.be/stops/204184", "https://data.delijn.be/stops/205183"], ["https://data.delijn.be/stops/302529", "https://data.delijn.be/stops/308887"], ["https://data.delijn.be/stops/406996", "https://data.delijn.be/stops/407141"], ["https://data.delijn.be/stops/205445", "https://data.delijn.be/stops/214002"], ["https://data.delijn.be/stops/208021", "https://data.delijn.be/stops/209029"], ["https://data.delijn.be/stops/404156", "https://data.delijn.be/stops/404282"], ["https://data.delijn.be/stops/507544", "https://data.delijn.be/stops/507638"], ["https://data.delijn.be/stops/305409", "https://data.delijn.be/stops/305417"], ["https://data.delijn.be/stops/208104", "https://data.delijn.be/stops/208136"], ["https://data.delijn.be/stops/208632", "https://data.delijn.be/stops/209632"], ["https://data.delijn.be/stops/208674", "https://data.delijn.be/stops/208675"], ["https://data.delijn.be/stops/202744", "https://data.delijn.be/stops/203744"], ["https://data.delijn.be/stops/104043", "https://data.delijn.be/stops/108403"], ["https://data.delijn.be/stops/303361", "https://data.delijn.be/stops/303774"], ["https://data.delijn.be/stops/109794", "https://data.delijn.be/stops/109858"], ["https://data.delijn.be/stops/206656", "https://data.delijn.be/stops/206666"], ["https://data.delijn.be/stops/405703", "https://data.delijn.be/stops/410355"], ["https://data.delijn.be/stops/506163", "https://data.delijn.be/stops/509838"], ["https://data.delijn.be/stops/202523", "https://data.delijn.be/stops/202524"], ["https://data.delijn.be/stops/107564", "https://data.delijn.be/stops/107567"], ["https://data.delijn.be/stops/300161", "https://data.delijn.be/stops/301225"], ["https://data.delijn.be/stops/202126", "https://data.delijn.be/stops/203126"], ["https://data.delijn.be/stops/204719", "https://data.delijn.be/stops/214013"], ["https://data.delijn.be/stops/302541", "https://data.delijn.be/stops/302544"], ["https://data.delijn.be/stops/503587", "https://data.delijn.be/stops/508587"], ["https://data.delijn.be/stops/205358", "https://data.delijn.be/stops/205923"], ["https://data.delijn.be/stops/406272", "https://data.delijn.be/stops/406276"], ["https://data.delijn.be/stops/406541", "https://data.delijn.be/stops/407406"], ["https://data.delijn.be/stops/301353", "https://data.delijn.be/stops/304527"], ["https://data.delijn.be/stops/102611", "https://data.delijn.be/stops/102669"], ["https://data.delijn.be/stops/500953", "https://data.delijn.be/stops/503633"], ["https://data.delijn.be/stops/504730", "https://data.delijn.be/stops/505342"], ["https://data.delijn.be/stops/209527", "https://data.delijn.be/stops/209533"], ["https://data.delijn.be/stops/204579", "https://data.delijn.be/stops/204590"], ["https://data.delijn.be/stops/103575", "https://data.delijn.be/stops/105325"], ["https://data.delijn.be/stops/102014", "https://data.delijn.be/stops/105983"], ["https://data.delijn.be/stops/302154", "https://data.delijn.be/stops/302183"], ["https://data.delijn.be/stops/107336", "https://data.delijn.be/stops/107337"], ["https://data.delijn.be/stops/105779", "https://data.delijn.be/stops/105784"], ["https://data.delijn.be/stops/206300", "https://data.delijn.be/stops/207471"], ["https://data.delijn.be/stops/503150", "https://data.delijn.be/stops/505369"], ["https://data.delijn.be/stops/406732", "https://data.delijn.be/stops/410125"], ["https://data.delijn.be/stops/500115", "https://data.delijn.be/stops/500120"], ["https://data.delijn.be/stops/301734", "https://data.delijn.be/stops/308420"], ["https://data.delijn.be/stops/303711", "https://data.delijn.be/stops/307258"], ["https://data.delijn.be/stops/502465", "https://data.delijn.be/stops/502466"], ["https://data.delijn.be/stops/303298", "https://data.delijn.be/stops/303301"], ["https://data.delijn.be/stops/401462", "https://data.delijn.be/stops/401495"], ["https://data.delijn.be/stops/102382", "https://data.delijn.be/stops/105606"], ["https://data.delijn.be/stops/102381", "https://data.delijn.be/stops/105607"], ["https://data.delijn.be/stops/408143", "https://data.delijn.be/stops/408245"], ["https://data.delijn.be/stops/205378", "https://data.delijn.be/stops/205418"], ["https://data.delijn.be/stops/206799", "https://data.delijn.be/stops/208532"], ["https://data.delijn.be/stops/206928", "https://data.delijn.be/stops/206948"], ["https://data.delijn.be/stops/501430", "https://data.delijn.be/stops/506430"], ["https://data.delijn.be/stops/301219", "https://data.delijn.be/stops/301222"], ["https://data.delijn.be/stops/103771", "https://data.delijn.be/stops/106437"], ["https://data.delijn.be/stops/303644", "https://data.delijn.be/stops/306561"], ["https://data.delijn.be/stops/403116", "https://data.delijn.be/stops/403234"], ["https://data.delijn.be/stops/503993", "https://data.delijn.be/stops/504277"], ["https://data.delijn.be/stops/502040", "https://data.delijn.be/stops/507616"], ["https://data.delijn.be/stops/306407", "https://data.delijn.be/stops/306408"], ["https://data.delijn.be/stops/105722", "https://data.delijn.be/stops/105723"], ["https://data.delijn.be/stops/105479", "https://data.delijn.be/stops/105481"], ["https://data.delijn.be/stops/101841", "https://data.delijn.be/stops/103227"], ["https://data.delijn.be/stops/306122", "https://data.delijn.be/stops/306145"], ["https://data.delijn.be/stops/401042", "https://data.delijn.be/stops/401043"], ["https://data.delijn.be/stops/303788", "https://data.delijn.be/stops/303789"], ["https://data.delijn.be/stops/109376", "https://data.delijn.be/stops/109381"], ["https://data.delijn.be/stops/304440", "https://data.delijn.be/stops/304453"], ["https://data.delijn.be/stops/107765", "https://data.delijn.be/stops/108060"], ["https://data.delijn.be/stops/308120", "https://data.delijn.be/stops/308121"], ["https://data.delijn.be/stops/208275", "https://data.delijn.be/stops/209333"], ["https://data.delijn.be/stops/202883", "https://data.delijn.be/stops/203815"], ["https://data.delijn.be/stops/502662", "https://data.delijn.be/stops/507447"], ["https://data.delijn.be/stops/102754", "https://data.delijn.be/stops/104636"], ["https://data.delijn.be/stops/406196", "https://data.delijn.be/stops/406197"], ["https://data.delijn.be/stops/501059", "https://data.delijn.be/stops/501084"], ["https://data.delijn.be/stops/403134", "https://data.delijn.be/stops/410289"], ["https://data.delijn.be/stops/303554", "https://data.delijn.be/stops/306283"], ["https://data.delijn.be/stops/406758", "https://data.delijn.be/stops/406763"], ["https://data.delijn.be/stops/102211", "https://data.delijn.be/stops/106123"], ["https://data.delijn.be/stops/503354", "https://data.delijn.be/stops/508354"], ["https://data.delijn.be/stops/200706", "https://data.delijn.be/stops/202573"], ["https://data.delijn.be/stops/207230", "https://data.delijn.be/stops/300161"], ["https://data.delijn.be/stops/503603", "https://data.delijn.be/stops/508864"], ["https://data.delijn.be/stops/303365", "https://data.delijn.be/stops/303390"], ["https://data.delijn.be/stops/102260", "https://data.delijn.be/stops/107465"], ["https://data.delijn.be/stops/307863", "https://data.delijn.be/stops/307865"], ["https://data.delijn.be/stops/109731", "https://data.delijn.be/stops/205635"], ["https://data.delijn.be/stops/402095", "https://data.delijn.be/stops/402335"], ["https://data.delijn.be/stops/108830", "https://data.delijn.be/stops/108835"], ["https://data.delijn.be/stops/202485", "https://data.delijn.be/stops/203750"], ["https://data.delijn.be/stops/500159", "https://data.delijn.be/stops/503557"], ["https://data.delijn.be/stops/404327", "https://data.delijn.be/stops/404386"], ["https://data.delijn.be/stops/104131", "https://data.delijn.be/stops/107968"], ["https://data.delijn.be/stops/304996", "https://data.delijn.be/stops/305004"], ["https://data.delijn.be/stops/300478", "https://data.delijn.be/stops/300484"], ["https://data.delijn.be/stops/103062", "https://data.delijn.be/stops/109459"], ["https://data.delijn.be/stops/202874", "https://data.delijn.be/stops/203874"], ["https://data.delijn.be/stops/102435", "https://data.delijn.be/stops/107670"], ["https://data.delijn.be/stops/201778", "https://data.delijn.be/stops/201779"], ["https://data.delijn.be/stops/204624", "https://data.delijn.be/stops/204625"], ["https://data.delijn.be/stops/503564", "https://data.delijn.be/stops/503569"], ["https://data.delijn.be/stops/503661", "https://data.delijn.be/stops/505127"], ["https://data.delijn.be/stops/302605", "https://data.delijn.be/stops/302606"], ["https://data.delijn.be/stops/505107", "https://data.delijn.be/stops/505572"], ["https://data.delijn.be/stops/104471", "https://data.delijn.be/stops/104547"], ["https://data.delijn.be/stops/202176", "https://data.delijn.be/stops/203176"], ["https://data.delijn.be/stops/304570", "https://data.delijn.be/stops/304660"], ["https://data.delijn.be/stops/109313", "https://data.delijn.be/stops/109356"], ["https://data.delijn.be/stops/203317", "https://data.delijn.be/stops/208887"], ["https://data.delijn.be/stops/408889", "https://data.delijn.be/stops/408892"], ["https://data.delijn.be/stops/508842", "https://data.delijn.be/stops/590007"], ["https://data.delijn.be/stops/200843", "https://data.delijn.be/stops/200844"], ["https://data.delijn.be/stops/208421", "https://data.delijn.be/stops/208422"], ["https://data.delijn.be/stops/206034", "https://data.delijn.be/stops/207034"], ["https://data.delijn.be/stops/504986", "https://data.delijn.be/stops/505429"], ["https://data.delijn.be/stops/304478", "https://data.delijn.be/stops/304490"], ["https://data.delijn.be/stops/408223", "https://data.delijn.be/stops/408403"], ["https://data.delijn.be/stops/402543", "https://data.delijn.be/stops/402558"], ["https://data.delijn.be/stops/101656", "https://data.delijn.be/stops/107852"], ["https://data.delijn.be/stops/203115", "https://data.delijn.be/stops/204596"], ["https://data.delijn.be/stops/304135", "https://data.delijn.be/stops/304158"], ["https://data.delijn.be/stops/301976", "https://data.delijn.be/stops/306199"], ["https://data.delijn.be/stops/400200", "https://data.delijn.be/stops/400228"], ["https://data.delijn.be/stops/504438", "https://data.delijn.be/stops/505998"], ["https://data.delijn.be/stops/210072", "https://data.delijn.be/stops/211072"], ["https://data.delijn.be/stops/405340", "https://data.delijn.be/stops/405348"], ["https://data.delijn.be/stops/101927", "https://data.delijn.be/stops/102958"], ["https://data.delijn.be/stops/207910", "https://data.delijn.be/stops/207911"], ["https://data.delijn.be/stops/202739", "https://data.delijn.be/stops/202740"], ["https://data.delijn.be/stops/200709", "https://data.delijn.be/stops/200713"], ["https://data.delijn.be/stops/404254", "https://data.delijn.be/stops/404308"], ["https://data.delijn.be/stops/403141", "https://data.delijn.be/stops/403146"], ["https://data.delijn.be/stops/104667", "https://data.delijn.be/stops/205612"], ["https://data.delijn.be/stops/200208", "https://data.delijn.be/stops/201208"], ["https://data.delijn.be/stops/402195", "https://data.delijn.be/stops/402363"], ["https://data.delijn.be/stops/102541", "https://data.delijn.be/stops/102544"], ["https://data.delijn.be/stops/108483", "https://data.delijn.be/stops/108484"], ["https://data.delijn.be/stops/304234", "https://data.delijn.be/stops/304235"], ["https://data.delijn.be/stops/407026", "https://data.delijn.be/stops/407038"], ["https://data.delijn.be/stops/504419", "https://data.delijn.be/stops/505211"], ["https://data.delijn.be/stops/505356", "https://data.delijn.be/stops/505357"], ["https://data.delijn.be/stops/505650", "https://data.delijn.be/stops/505651"], ["https://data.delijn.be/stops/202120", "https://data.delijn.be/stops/202638"], ["https://data.delijn.be/stops/509390", "https://data.delijn.be/stops/509392"], ["https://data.delijn.be/stops/301742", "https://data.delijn.be/stops/301797"], ["https://data.delijn.be/stops/104773", "https://data.delijn.be/stops/108153"], ["https://data.delijn.be/stops/505977", "https://data.delijn.be/stops/509388"], ["https://data.delijn.be/stops/104990", "https://data.delijn.be/stops/104995"], ["https://data.delijn.be/stops/203040", "https://data.delijn.be/stops/203041"], ["https://data.delijn.be/stops/208509", "https://data.delijn.be/stops/209508"], ["https://data.delijn.be/stops/102428", "https://data.delijn.be/stops/109128"], ["https://data.delijn.be/stops/109354", "https://data.delijn.be/stops/307437"], ["https://data.delijn.be/stops/501079", "https://data.delijn.be/stops/501376"], ["https://data.delijn.be/stops/503664", "https://data.delijn.be/stops/507274"], ["https://data.delijn.be/stops/106264", "https://data.delijn.be/stops/106265"], ["https://data.delijn.be/stops/202715", "https://data.delijn.be/stops/202716"], ["https://data.delijn.be/stops/502084", "https://data.delijn.be/stops/502580"], ["https://data.delijn.be/stops/201759", "https://data.delijn.be/stops/201760"], ["https://data.delijn.be/stops/105583", "https://data.delijn.be/stops/105584"], ["https://data.delijn.be/stops/205093", "https://data.delijn.be/stops/205796"], ["https://data.delijn.be/stops/204212", "https://data.delijn.be/stops/207395"], ["https://data.delijn.be/stops/204472", "https://data.delijn.be/stops/205094"], ["https://data.delijn.be/stops/104579", "https://data.delijn.be/stops/107538"], ["https://data.delijn.be/stops/403228", "https://data.delijn.be/stops/408959"], ["https://data.delijn.be/stops/102171", "https://data.delijn.be/stops/102444"], ["https://data.delijn.be/stops/105263", "https://data.delijn.be/stops/105264"], ["https://data.delijn.be/stops/106848", "https://data.delijn.be/stops/106850"], ["https://data.delijn.be/stops/300389", "https://data.delijn.be/stops/304614"], ["https://data.delijn.be/stops/402297", "https://data.delijn.be/stops/405608"], ["https://data.delijn.be/stops/404185", "https://data.delijn.be/stops/410185"], ["https://data.delijn.be/stops/300245", "https://data.delijn.be/stops/305404"], ["https://data.delijn.be/stops/409052", "https://data.delijn.be/stops/409066"], ["https://data.delijn.be/stops/200770", "https://data.delijn.be/stops/208309"], ["https://data.delijn.be/stops/504475", "https://data.delijn.be/stops/509167"], ["https://data.delijn.be/stops/501147", "https://data.delijn.be/stops/506690"], ["https://data.delijn.be/stops/300684", "https://data.delijn.be/stops/305068"], ["https://data.delijn.be/stops/403177", "https://data.delijn.be/stops/407650"], ["https://data.delijn.be/stops/101831", "https://data.delijn.be/stops/107007"], ["https://data.delijn.be/stops/200060", "https://data.delijn.be/stops/200479"], ["https://data.delijn.be/stops/102570", "https://data.delijn.be/stops/103127"], ["https://data.delijn.be/stops/304065", "https://data.delijn.be/stops/304088"], ["https://data.delijn.be/stops/106763", "https://data.delijn.be/stops/106864"], ["https://data.delijn.be/stops/303116", "https://data.delijn.be/stops/304220"], ["https://data.delijn.be/stops/508137", "https://data.delijn.be/stops/508311"], ["https://data.delijn.be/stops/201804", "https://data.delijn.be/stops/201815"], ["https://data.delijn.be/stops/206563", "https://data.delijn.be/stops/206576"], ["https://data.delijn.be/stops/407917", "https://data.delijn.be/stops/407972"], ["https://data.delijn.be/stops/206688", "https://data.delijn.be/stops/207717"], ["https://data.delijn.be/stops/101776", "https://data.delijn.be/stops/107697"], ["https://data.delijn.be/stops/407838", "https://data.delijn.be/stops/407907"], ["https://data.delijn.be/stops/401603", "https://data.delijn.be/stops/405852"], ["https://data.delijn.be/stops/404917", "https://data.delijn.be/stops/404922"], ["https://data.delijn.be/stops/400809", "https://data.delijn.be/stops/405217"], ["https://data.delijn.be/stops/503313", "https://data.delijn.be/stops/508794"], ["https://data.delijn.be/stops/503614", "https://data.delijn.be/stops/503615"], ["https://data.delijn.be/stops/204346", "https://data.delijn.be/stops/205102"], ["https://data.delijn.be/stops/106260", "https://data.delijn.be/stops/106276"], ["https://data.delijn.be/stops/408350", "https://data.delijn.be/stops/408351"], ["https://data.delijn.be/stops/207436", "https://data.delijn.be/stops/209691"], ["https://data.delijn.be/stops/508504", "https://data.delijn.be/stops/508616"], ["https://data.delijn.be/stops/301775", "https://data.delijn.be/stops/301782"], ["https://data.delijn.be/stops/208137", "https://data.delijn.be/stops/209137"], ["https://data.delijn.be/stops/301373", "https://data.delijn.be/stops/302412"], ["https://data.delijn.be/stops/502706", "https://data.delijn.be/stops/507708"], ["https://data.delijn.be/stops/200186", "https://data.delijn.be/stops/200198"], ["https://data.delijn.be/stops/109603", "https://data.delijn.be/stops/109613"], ["https://data.delijn.be/stops/200452", "https://data.delijn.be/stops/201766"], ["https://data.delijn.be/stops/502607", "https://data.delijn.be/stops/505705"], ["https://data.delijn.be/stops/216003", "https://data.delijn.be/stops/217003"], ["https://data.delijn.be/stops/504617", "https://data.delijn.be/stops/504620"], ["https://data.delijn.be/stops/102085", "https://data.delijn.be/stops/103985"], ["https://data.delijn.be/stops/201267", "https://data.delijn.be/stops/204810"], ["https://data.delijn.be/stops/506014", "https://data.delijn.be/stops/506598"], ["https://data.delijn.be/stops/403050", "https://data.delijn.be/stops/403292"], ["https://data.delijn.be/stops/504041", "https://data.delijn.be/stops/505798"], ["https://data.delijn.be/stops/302739", "https://data.delijn.be/stops/302744"], ["https://data.delijn.be/stops/505823", "https://data.delijn.be/stops/508133"], ["https://data.delijn.be/stops/509497", "https://data.delijn.be/stops/509505"], ["https://data.delijn.be/stops/103148", "https://data.delijn.be/stops/109992"], ["https://data.delijn.be/stops/204610", "https://data.delijn.be/stops/205611"], ["https://data.delijn.be/stops/501306", "https://data.delijn.be/stops/501315"], ["https://data.delijn.be/stops/105029", "https://data.delijn.be/stops/105031"], ["https://data.delijn.be/stops/207666", "https://data.delijn.be/stops/208506"], ["https://data.delijn.be/stops/204652", "https://data.delijn.be/stops/205830"], ["https://data.delijn.be/stops/407599", "https://data.delijn.be/stops/407634"], ["https://data.delijn.be/stops/101332", "https://data.delijn.be/stops/106676"], ["https://data.delijn.be/stops/403728", "https://data.delijn.be/stops/403729"], ["https://data.delijn.be/stops/508814", "https://data.delijn.be/stops/508815"], ["https://data.delijn.be/stops/206732", "https://data.delijn.be/stops/301663"], ["https://data.delijn.be/stops/200191", "https://data.delijn.be/stops/201689"], ["https://data.delijn.be/stops/109317", "https://data.delijn.be/stops/109319"], ["https://data.delijn.be/stops/106980", "https://data.delijn.be/stops/107266"], ["https://data.delijn.be/stops/501768", "https://data.delijn.be/stops/507692"], ["https://data.delijn.be/stops/301556", "https://data.delijn.be/stops/308089"], ["https://data.delijn.be/stops/301333", "https://data.delijn.be/stops/306120"], ["https://data.delijn.be/stops/208098", "https://data.delijn.be/stops/209098"], ["https://data.delijn.be/stops/102764", "https://data.delijn.be/stops/107405"], ["https://data.delijn.be/stops/202832", "https://data.delijn.be/stops/202833"], ["https://data.delijn.be/stops/302204", "https://data.delijn.be/stops/308102"], ["https://data.delijn.be/stops/203160", "https://data.delijn.be/stops/203500"], ["https://data.delijn.be/stops/501441", "https://data.delijn.be/stops/506136"], ["https://data.delijn.be/stops/503049", "https://data.delijn.be/stops/508048"], ["https://data.delijn.be/stops/404105", "https://data.delijn.be/stops/404117"], ["https://data.delijn.be/stops/501424", "https://data.delijn.be/stops/506424"], ["https://data.delijn.be/stops/505250", "https://data.delijn.be/stops/508917"], ["https://data.delijn.be/stops/202875", "https://data.delijn.be/stops/203876"], ["https://data.delijn.be/stops/401463", "https://data.delijn.be/stops/401474"], ["https://data.delijn.be/stops/206535", "https://data.delijn.be/stops/209688"], ["https://data.delijn.be/stops/206337", "https://data.delijn.be/stops/207746"], ["https://data.delijn.be/stops/207843", "https://data.delijn.be/stops/303240"], ["https://data.delijn.be/stops/201423", "https://data.delijn.be/stops/203826"], ["https://data.delijn.be/stops/205258", "https://data.delijn.be/stops/205269"], ["https://data.delijn.be/stops/204608", "https://data.delijn.be/stops/205608"], ["https://data.delijn.be/stops/302976", "https://data.delijn.be/stops/303000"], ["https://data.delijn.be/stops/501206", "https://data.delijn.be/stops/501636"], ["https://data.delijn.be/stops/200713", "https://data.delijn.be/stops/200739"], ["https://data.delijn.be/stops/103748", "https://data.delijn.be/stops/106742"], ["https://data.delijn.be/stops/505982", "https://data.delijn.be/stops/507198"], ["https://data.delijn.be/stops/306710", "https://data.delijn.be/stops/307984"], ["https://data.delijn.be/stops/204241", "https://data.delijn.be/stops/205241"], ["https://data.delijn.be/stops/502315", "https://data.delijn.be/stops/507315"], ["https://data.delijn.be/stops/407995", "https://data.delijn.be/stops/410161"], ["https://data.delijn.be/stops/405524", "https://data.delijn.be/stops/407310"], ["https://data.delijn.be/stops/208796", "https://data.delijn.be/stops/208797"], ["https://data.delijn.be/stops/502694", "https://data.delijn.be/stops/507694"], ["https://data.delijn.be/stops/503496", "https://data.delijn.be/stops/508495"], ["https://data.delijn.be/stops/504012", "https://data.delijn.be/stops/509012"], ["https://data.delijn.be/stops/107953", "https://data.delijn.be/stops/108967"], ["https://data.delijn.be/stops/304512", "https://data.delijn.be/stops/304513"], ["https://data.delijn.be/stops/200278", "https://data.delijn.be/stops/201349"], ["https://data.delijn.be/stops/204626", "https://data.delijn.be/stops/205336"], ["https://data.delijn.be/stops/200017", "https://data.delijn.be/stops/201017"], ["https://data.delijn.be/stops/402772", "https://data.delijn.be/stops/408405"], ["https://data.delijn.be/stops/200507", "https://data.delijn.be/stops/201552"], ["https://data.delijn.be/stops/101652", "https://data.delijn.be/stops/103292"], ["https://data.delijn.be/stops/405815", "https://data.delijn.be/stops/405872"], ["https://data.delijn.be/stops/501155", "https://data.delijn.be/stops/506147"], ["https://data.delijn.be/stops/401650", "https://data.delijn.be/stops/405364"], ["https://data.delijn.be/stops/205912", "https://data.delijn.be/stops/205922"], ["https://data.delijn.be/stops/301660", "https://data.delijn.be/stops/303142"], ["https://data.delijn.be/stops/500924", "https://data.delijn.be/stops/500925"], ["https://data.delijn.be/stops/502408", "https://data.delijn.be/stops/507408"], ["https://data.delijn.be/stops/504001", "https://data.delijn.be/stops/504778"], ["https://data.delijn.be/stops/401208", "https://data.delijn.be/stops/401275"], ["https://data.delijn.be/stops/505364", "https://data.delijn.be/stops/507916"], ["https://data.delijn.be/stops/402284", "https://data.delijn.be/stops/402330"], ["https://data.delijn.be/stops/405732", "https://data.delijn.be/stops/405734"], ["https://data.delijn.be/stops/502342", "https://data.delijn.be/stops/507340"], ["https://data.delijn.be/stops/303011", "https://data.delijn.be/stops/303096"], ["https://data.delijn.be/stops/404421", "https://data.delijn.be/stops/404537"], ["https://data.delijn.be/stops/303450", "https://data.delijn.be/stops/307067"], ["https://data.delijn.be/stops/401285", "https://data.delijn.be/stops/401557"], ["https://data.delijn.be/stops/300781", "https://data.delijn.be/stops/300782"], ["https://data.delijn.be/stops/208145", "https://data.delijn.be/stops/209146"], ["https://data.delijn.be/stops/308128", "https://data.delijn.be/stops/308875"], ["https://data.delijn.be/stops/404708", "https://data.delijn.be/stops/404743"], ["https://data.delijn.be/stops/304541", "https://data.delijn.be/stops/307765"], ["https://data.delijn.be/stops/107624", "https://data.delijn.be/stops/109761"], ["https://data.delijn.be/stops/202140", "https://data.delijn.be/stops/202155"], ["https://data.delijn.be/stops/208158", "https://data.delijn.be/stops/209509"], ["https://data.delijn.be/stops/501490", "https://data.delijn.be/stops/506035"], ["https://data.delijn.be/stops/204257", "https://data.delijn.be/stops/205485"], ["https://data.delijn.be/stops/207228", "https://data.delijn.be/stops/302114"], ["https://data.delijn.be/stops/206684", "https://data.delijn.be/stops/207416"], ["https://data.delijn.be/stops/303306", "https://data.delijn.be/stops/303328"], ["https://data.delijn.be/stops/503901", "https://data.delijn.be/stops/504980"], ["https://data.delijn.be/stops/508743", "https://data.delijn.be/stops/508747"], ["https://data.delijn.be/stops/200109", "https://data.delijn.be/stops/203646"], ["https://data.delijn.be/stops/406312", "https://data.delijn.be/stops/406350"], ["https://data.delijn.be/stops/509780", "https://data.delijn.be/stops/509894"], ["https://data.delijn.be/stops/503651", "https://data.delijn.be/stops/508652"], ["https://data.delijn.be/stops/107088", "https://data.delijn.be/stops/107091"], ["https://data.delijn.be/stops/101974", "https://data.delijn.be/stops/307370"], ["https://data.delijn.be/stops/403426", "https://data.delijn.be/stops/403427"], ["https://data.delijn.be/stops/206170", "https://data.delijn.be/stops/207170"], ["https://data.delijn.be/stops/200770", "https://data.delijn.be/stops/507693"], ["https://data.delijn.be/stops/401651", "https://data.delijn.be/stops/401653"], ["https://data.delijn.be/stops/408255", "https://data.delijn.be/stops/408313"], ["https://data.delijn.be/stops/202515", "https://data.delijn.be/stops/203515"], ["https://data.delijn.be/stops/102456", "https://data.delijn.be/stops/102459"], ["https://data.delijn.be/stops/103206", "https://data.delijn.be/stops/106441"], ["https://data.delijn.be/stops/105832", "https://data.delijn.be/stops/108890"], ["https://data.delijn.be/stops/102826", "https://data.delijn.be/stops/102827"], ["https://data.delijn.be/stops/106923", "https://data.delijn.be/stops/106943"], ["https://data.delijn.be/stops/301237", "https://data.delijn.be/stops/307612"], ["https://data.delijn.be/stops/304427", "https://data.delijn.be/stops/307387"], ["https://data.delijn.be/stops/109377", "https://data.delijn.be/stops/109381"], ["https://data.delijn.be/stops/407968", "https://data.delijn.be/stops/408000"], ["https://data.delijn.be/stops/401401", "https://data.delijn.be/stops/301076"], ["https://data.delijn.be/stops/105076", "https://data.delijn.be/stops/105192"], ["https://data.delijn.be/stops/107075", "https://data.delijn.be/stops/107078"], ["https://data.delijn.be/stops/403052", "https://data.delijn.be/stops/409574"], ["https://data.delijn.be/stops/406201", "https://data.delijn.be/stops/406431"], ["https://data.delijn.be/stops/301017", "https://data.delijn.be/stops/301021"], ["https://data.delijn.be/stops/402100", "https://data.delijn.be/stops/402499"], ["https://data.delijn.be/stops/300077", "https://data.delijn.be/stops/300080"], ["https://data.delijn.be/stops/503384", "https://data.delijn.be/stops/508360"], ["https://data.delijn.be/stops/204196", "https://data.delijn.be/stops/205197"], ["https://data.delijn.be/stops/200811", "https://data.delijn.be/stops/202052"], ["https://data.delijn.be/stops/307024", "https://data.delijn.be/stops/307025"], ["https://data.delijn.be/stops/502402", "https://data.delijn.be/stops/507398"], ["https://data.delijn.be/stops/505440", "https://data.delijn.be/stops/508337"], ["https://data.delijn.be/stops/400826", "https://data.delijn.be/stops/400827"], ["https://data.delijn.be/stops/504143", "https://data.delijn.be/stops/504144"], ["https://data.delijn.be/stops/407682", "https://data.delijn.be/stops/407685"], ["https://data.delijn.be/stops/105616", "https://data.delijn.be/stops/105617"], ["https://data.delijn.be/stops/404498", "https://data.delijn.be/stops/404499"], ["https://data.delijn.be/stops/306283", "https://data.delijn.be/stops/306284"], ["https://data.delijn.be/stops/501609", "https://data.delijn.be/stops/506609"], ["https://data.delijn.be/stops/401524", "https://data.delijn.be/stops/402630"], ["https://data.delijn.be/stops/307621", "https://data.delijn.be/stops/308559"], ["https://data.delijn.be/stops/101660", "https://data.delijn.be/stops/107810"], ["https://data.delijn.be/stops/203859", "https://data.delijn.be/stops/203860"], ["https://data.delijn.be/stops/501549", "https://data.delijn.be/stops/506247"], ["https://data.delijn.be/stops/305200", "https://data.delijn.be/stops/305202"], ["https://data.delijn.be/stops/108286", "https://data.delijn.be/stops/109308"], ["https://data.delijn.be/stops/106218", "https://data.delijn.be/stops/106219"], ["https://data.delijn.be/stops/402096", "https://data.delijn.be/stops/402294"], ["https://data.delijn.be/stops/502042", "https://data.delijn.be/stops/507042"], ["https://data.delijn.be/stops/404469", "https://data.delijn.be/stops/406678"], ["https://data.delijn.be/stops/206480", "https://data.delijn.be/stops/207499"], ["https://data.delijn.be/stops/300462", "https://data.delijn.be/stops/300472"], ["https://data.delijn.be/stops/206813", "https://data.delijn.be/stops/207935"], ["https://data.delijn.be/stops/502400", "https://data.delijn.be/stops/507401"], ["https://data.delijn.be/stops/307429", "https://data.delijn.be/stops/307430"], ["https://data.delijn.be/stops/107498", "https://data.delijn.be/stops/107499"], ["https://data.delijn.be/stops/203154", "https://data.delijn.be/stops/203627"], ["https://data.delijn.be/stops/504793", "https://data.delijn.be/stops/508562"], ["https://data.delijn.be/stops/208006", "https://data.delijn.be/stops/209006"], ["https://data.delijn.be/stops/408498", "https://data.delijn.be/stops/408511"], ["https://data.delijn.be/stops/501501", "https://data.delijn.be/stops/506500"], ["https://data.delijn.be/stops/303980", "https://data.delijn.be/stops/306633"], ["https://data.delijn.be/stops/503079", "https://data.delijn.be/stops/508611"], ["https://data.delijn.be/stops/204639", "https://data.delijn.be/stops/204731"], ["https://data.delijn.be/stops/200264", "https://data.delijn.be/stops/201263"], ["https://data.delijn.be/stops/202229", "https://data.delijn.be/stops/203228"], ["https://data.delijn.be/stops/304802", "https://data.delijn.be/stops/304803"], ["https://data.delijn.be/stops/405889", "https://data.delijn.be/stops/405897"], ["https://data.delijn.be/stops/408280", "https://data.delijn.be/stops/408402"], ["https://data.delijn.be/stops/502668", "https://data.delijn.be/stops/507669"], ["https://data.delijn.be/stops/201905", "https://data.delijn.be/stops/203516"], ["https://data.delijn.be/stops/101658", "https://data.delijn.be/stops/102441"], ["https://data.delijn.be/stops/402986", "https://data.delijn.be/stops/405602"], ["https://data.delijn.be/stops/502415", "https://data.delijn.be/stops/507613"], ["https://data.delijn.be/stops/300169", "https://data.delijn.be/stops/301226"], ["https://data.delijn.be/stops/502286", "https://data.delijn.be/stops/505352"], ["https://data.delijn.be/stops/201901", "https://data.delijn.be/stops/202516"], ["https://data.delijn.be/stops/102208", "https://data.delijn.be/stops/102929"], ["https://data.delijn.be/stops/408232", "https://data.delijn.be/stops/408308"], ["https://data.delijn.be/stops/500024", "https://data.delijn.be/stops/508895"], ["https://data.delijn.be/stops/503831", "https://data.delijn.be/stops/505408"], ["https://data.delijn.be/stops/206890", "https://data.delijn.be/stops/207890"], ["https://data.delijn.be/stops/503573", "https://data.delijn.be/stops/504540"], ["https://data.delijn.be/stops/400295", "https://data.delijn.be/stops/400416"], ["https://data.delijn.be/stops/406977", "https://data.delijn.be/stops/407423"], ["https://data.delijn.be/stops/407370", "https://data.delijn.be/stops/407392"], ["https://data.delijn.be/stops/407004", "https://data.delijn.be/stops/308079"], ["https://data.delijn.be/stops/302217", "https://data.delijn.be/stops/302233"], ["https://data.delijn.be/stops/301836", "https://data.delijn.be/stops/301840"], ["https://data.delijn.be/stops/302270", "https://data.delijn.be/stops/306370"], ["https://data.delijn.be/stops/203786", "https://data.delijn.be/stops/208643"], ["https://data.delijn.be/stops/103773", "https://data.delijn.be/stops/107117"], ["https://data.delijn.be/stops/505355", "https://data.delijn.be/stops/506219"], ["https://data.delijn.be/stops/208571", "https://data.delijn.be/stops/209570"], ["https://data.delijn.be/stops/503409", "https://data.delijn.be/stops/508108"], ["https://data.delijn.be/stops/305841", "https://data.delijn.be/stops/305842"], ["https://data.delijn.be/stops/307538", "https://data.delijn.be/stops/307552"], ["https://data.delijn.be/stops/200917", "https://data.delijn.be/stops/202248"], ["https://data.delijn.be/stops/400405", "https://data.delijn.be/stops/400412"], ["https://data.delijn.be/stops/400053", "https://data.delijn.be/stops/400097"], ["https://data.delijn.be/stops/401806", "https://data.delijn.be/stops/401871"], ["https://data.delijn.be/stops/408116", "https://data.delijn.be/stops/408454"], ["https://data.delijn.be/stops/202556", "https://data.delijn.be/stops/203559"], ["https://data.delijn.be/stops/102538", "https://data.delijn.be/stops/408342"], ["https://data.delijn.be/stops/400983", "https://data.delijn.be/stops/406578"], ["https://data.delijn.be/stops/304820", "https://data.delijn.be/stops/306406"], ["https://data.delijn.be/stops/502541", "https://data.delijn.be/stops/507537"], ["https://data.delijn.be/stops/503598", "https://data.delijn.be/stops/508598"], ["https://data.delijn.be/stops/502384", "https://data.delijn.be/stops/502387"], ["https://data.delijn.be/stops/201234", "https://data.delijn.be/stops/202353"], ["https://data.delijn.be/stops/108226", "https://data.delijn.be/stops/108227"], ["https://data.delijn.be/stops/504862", "https://data.delijn.be/stops/508268"], ["https://data.delijn.be/stops/302727", "https://data.delijn.be/stops/308835"], ["https://data.delijn.be/stops/307404", "https://data.delijn.be/stops/307412"], ["https://data.delijn.be/stops/500603", "https://data.delijn.be/stops/501541"], ["https://data.delijn.be/stops/200457", "https://data.delijn.be/stops/201662"], ["https://data.delijn.be/stops/300662", "https://data.delijn.be/stops/306746"], ["https://data.delijn.be/stops/406541", "https://data.delijn.be/stops/407479"], ["https://data.delijn.be/stops/107984", "https://data.delijn.be/stops/308485"], ["https://data.delijn.be/stops/104135", "https://data.delijn.be/stops/104140"], ["https://data.delijn.be/stops/403320", "https://data.delijn.be/stops/403327"], ["https://data.delijn.be/stops/307910", "https://data.delijn.be/stops/308144"], ["https://data.delijn.be/stops/200315", "https://data.delijn.be/stops/205920"], ["https://data.delijn.be/stops/502016", "https://data.delijn.be/stops/504303"], ["https://data.delijn.be/stops/509162", "https://data.delijn.be/stops/509529"], ["https://data.delijn.be/stops/502364", "https://data.delijn.be/stops/507364"], ["https://data.delijn.be/stops/208339", "https://data.delijn.be/stops/208387"], ["https://data.delijn.be/stops/201618", "https://data.delijn.be/stops/209738"], ["https://data.delijn.be/stops/202763", "https://data.delijn.be/stops/203763"], ["https://data.delijn.be/stops/500556", "https://data.delijn.be/stops/507955"], ["https://data.delijn.be/stops/505244", "https://data.delijn.be/stops/507212"], ["https://data.delijn.be/stops/200064", "https://data.delijn.be/stops/203928"], ["https://data.delijn.be/stops/505536", "https://data.delijn.be/stops/509589"], ["https://data.delijn.be/stops/200577", "https://data.delijn.be/stops/201577"], ["https://data.delijn.be/stops/102880", "https://data.delijn.be/stops/108025"], ["https://data.delijn.be/stops/302466", "https://data.delijn.be/stops/302469"], ["https://data.delijn.be/stops/208237", "https://data.delijn.be/stops/209120"], ["https://data.delijn.be/stops/200301", "https://data.delijn.be/stops/201128"], ["https://data.delijn.be/stops/301430", "https://data.delijn.be/stops/303181"], ["https://data.delijn.be/stops/505710", "https://data.delijn.be/stops/509148"], ["https://data.delijn.be/stops/504816", "https://data.delijn.be/stops/509816"], ["https://data.delijn.be/stops/201904", "https://data.delijn.be/stops/209867"], ["https://data.delijn.be/stops/206878", "https://data.delijn.be/stops/207878"], ["https://data.delijn.be/stops/101370", "https://data.delijn.be/stops/101955"], ["https://data.delijn.be/stops/208406", "https://data.delijn.be/stops/208739"], ["https://data.delijn.be/stops/101724", "https://data.delijn.be/stops/106801"], ["https://data.delijn.be/stops/410174", "https://data.delijn.be/stops/410175"], ["https://data.delijn.be/stops/401503", "https://data.delijn.be/stops/401723"], ["https://data.delijn.be/stops/408517", "https://data.delijn.be/stops/408678"], ["https://data.delijn.be/stops/504242", "https://data.delijn.be/stops/509242"], ["https://data.delijn.be/stops/206221", "https://data.delijn.be/stops/206373"], ["https://data.delijn.be/stops/404896", "https://data.delijn.be/stops/404906"], ["https://data.delijn.be/stops/206982", "https://data.delijn.be/stops/207982"], ["https://data.delijn.be/stops/303304", "https://data.delijn.be/stops/303321"], ["https://data.delijn.be/stops/304902", "https://data.delijn.be/stops/304903"], ["https://data.delijn.be/stops/401350", "https://data.delijn.be/stops/401360"], ["https://data.delijn.be/stops/400557", "https://data.delijn.be/stops/403226"], ["https://data.delijn.be/stops/202118", "https://data.delijn.be/stops/202218"], ["https://data.delijn.be/stops/305172", "https://data.delijn.be/stops/307101"], ["https://data.delijn.be/stops/504756", "https://data.delijn.be/stops/508871"], ["https://data.delijn.be/stops/206148", "https://data.delijn.be/stops/207094"], ["https://data.delijn.be/stops/202634", "https://data.delijn.be/stops/203162"], ["https://data.delijn.be/stops/505408", "https://data.delijn.be/stops/508143"], ["https://data.delijn.be/stops/201933", "https://data.delijn.be/stops/203950"], ["https://data.delijn.be/stops/403169", "https://data.delijn.be/stops/403187"], ["https://data.delijn.be/stops/303382", "https://data.delijn.be/stops/303672"], ["https://data.delijn.be/stops/301591", "https://data.delijn.be/stops/308089"], ["https://data.delijn.be/stops/202065", "https://data.delijn.be/stops/202712"], ["https://data.delijn.be/stops/407020", "https://data.delijn.be/stops/407077"], ["https://data.delijn.be/stops/403027", "https://data.delijn.be/stops/403036"], ["https://data.delijn.be/stops/300141", "https://data.delijn.be/stops/306811"], ["https://data.delijn.be/stops/501092", "https://data.delijn.be/stops/506092"], ["https://data.delijn.be/stops/502165", "https://data.delijn.be/stops/507138"], ["https://data.delijn.be/stops/504343", "https://data.delijn.be/stops/509343"], ["https://data.delijn.be/stops/407739", "https://data.delijn.be/stops/409628"], ["https://data.delijn.be/stops/206219", "https://data.delijn.be/stops/308565"], ["https://data.delijn.be/stops/204515", "https://data.delijn.be/stops/205334"], ["https://data.delijn.be/stops/109893", "https://data.delijn.be/stops/109946"], ["https://data.delijn.be/stops/307930", "https://data.delijn.be/stops/307931"], ["https://data.delijn.be/stops/503357", "https://data.delijn.be/stops/503422"], ["https://data.delijn.be/stops/300715", "https://data.delijn.be/stops/307058"], ["https://data.delijn.be/stops/107837", "https://data.delijn.be/stops/107839"], ["https://data.delijn.be/stops/302790", "https://data.delijn.be/stops/307705"], ["https://data.delijn.be/stops/101606", "https://data.delijn.be/stops/109808"], ["https://data.delijn.be/stops/108237", "https://data.delijn.be/stops/108238"], ["https://data.delijn.be/stops/302705", "https://data.delijn.be/stops/302706"], ["https://data.delijn.be/stops/106029", "https://data.delijn.be/stops/106033"], ["https://data.delijn.be/stops/102819", "https://data.delijn.be/stops/102821"], ["https://data.delijn.be/stops/304161", "https://data.delijn.be/stops/304166"], ["https://data.delijn.be/stops/400490", "https://data.delijn.be/stops/400492"], ["https://data.delijn.be/stops/504617", "https://data.delijn.be/stops/509629"], ["https://data.delijn.be/stops/403207", "https://data.delijn.be/stops/403218"], ["https://data.delijn.be/stops/204069", "https://data.delijn.be/stops/204384"], ["https://data.delijn.be/stops/304467", "https://data.delijn.be/stops/304470"], ["https://data.delijn.be/stops/303313", "https://data.delijn.be/stops/303319"], ["https://data.delijn.be/stops/101002", "https://data.delijn.be/stops/102430"], ["https://data.delijn.be/stops/103531", "https://data.delijn.be/stops/103532"], ["https://data.delijn.be/stops/406363", "https://data.delijn.be/stops/407098"], ["https://data.delijn.be/stops/208171", "https://data.delijn.be/stops/208172"], ["https://data.delijn.be/stops/204317", "https://data.delijn.be/stops/205317"], ["https://data.delijn.be/stops/103740", "https://data.delijn.be/stops/105590"], ["https://data.delijn.be/stops/200232", "https://data.delijn.be/stops/200233"], ["https://data.delijn.be/stops/302935", "https://data.delijn.be/stops/306373"], ["https://data.delijn.be/stops/504468", "https://data.delijn.be/stops/505304"], ["https://data.delijn.be/stops/306765", "https://data.delijn.be/stops/306809"], ["https://data.delijn.be/stops/506306", "https://data.delijn.be/stops/506348"], ["https://data.delijn.be/stops/400850", "https://data.delijn.be/stops/407705"], ["https://data.delijn.be/stops/408606", "https://data.delijn.be/stops/302834"], ["https://data.delijn.be/stops/405515", "https://data.delijn.be/stops/407280"], ["https://data.delijn.be/stops/106245", "https://data.delijn.be/stops/106248"], ["https://data.delijn.be/stops/204468", "https://data.delijn.be/stops/204779"], ["https://data.delijn.be/stops/501161", "https://data.delijn.be/stops/501776"], ["https://data.delijn.be/stops/202968", "https://data.delijn.be/stops/203967"], ["https://data.delijn.be/stops/208553", "https://data.delijn.be/stops/209553"], ["https://data.delijn.be/stops/204249", "https://data.delijn.be/stops/205476"], ["https://data.delijn.be/stops/101250", "https://data.delijn.be/stops/102745"], ["https://data.delijn.be/stops/101895", "https://data.delijn.be/stops/103397"], ["https://data.delijn.be/stops/200018", "https://data.delijn.be/stops/200148"], ["https://data.delijn.be/stops/203968", "https://data.delijn.be/stops/205092"], ["https://data.delijn.be/stops/305261", "https://data.delijn.be/stops/305333"], ["https://data.delijn.be/stops/101175", "https://data.delijn.be/stops/102415"], ["https://data.delijn.be/stops/105139", "https://data.delijn.be/stops/108501"], ["https://data.delijn.be/stops/108307", "https://data.delijn.be/stops/108311"], ["https://data.delijn.be/stops/503650", "https://data.delijn.be/stops/508650"], ["https://data.delijn.be/stops/503452", "https://data.delijn.be/stops/508305"], ["https://data.delijn.be/stops/109159", "https://data.delijn.be/stops/109233"], ["https://data.delijn.be/stops/101060", "https://data.delijn.be/stops/107463"], ["https://data.delijn.be/stops/200039", "https://data.delijn.be/stops/204063"], ["https://data.delijn.be/stops/108205", "https://data.delijn.be/stops/108210"], ["https://data.delijn.be/stops/304410", "https://data.delijn.be/stops/304413"], ["https://data.delijn.be/stops/208557", "https://data.delijn.be/stops/208558"], ["https://data.delijn.be/stops/503205", "https://data.delijn.be/stops/503408"], ["https://data.delijn.be/stops/204070", "https://data.delijn.be/stops/204183"], ["https://data.delijn.be/stops/202744", "https://data.delijn.be/stops/203856"], ["https://data.delijn.be/stops/206703", "https://data.delijn.be/stops/207604"], ["https://data.delijn.be/stops/304188", "https://data.delijn.be/stops/308878"], ["https://data.delijn.be/stops/304761", "https://data.delijn.be/stops/304769"], ["https://data.delijn.be/stops/502212", "https://data.delijn.be/stops/507212"], ["https://data.delijn.be/stops/200630", "https://data.delijn.be/stops/201629"], ["https://data.delijn.be/stops/201751", "https://data.delijn.be/stops/208495"], ["https://data.delijn.be/stops/501003", "https://data.delijn.be/stops/501004"], ["https://data.delijn.be/stops/200629", "https://data.delijn.be/stops/201628"], ["https://data.delijn.be/stops/202237", "https://data.delijn.be/stops/202238"], ["https://data.delijn.be/stops/107699", "https://data.delijn.be/stops/107702"], ["https://data.delijn.be/stops/402822", "https://data.delijn.be/stops/409232"], ["https://data.delijn.be/stops/300761", "https://data.delijn.be/stops/300762"], ["https://data.delijn.be/stops/301554", "https://data.delijn.be/stops/301577"], ["https://data.delijn.be/stops/301727", "https://data.delijn.be/stops/301756"], ["https://data.delijn.be/stops/201768", "https://data.delijn.be/stops/208269"], ["https://data.delijn.be/stops/204154", "https://data.delijn.be/stops/205581"], ["https://data.delijn.be/stops/203455", "https://data.delijn.be/stops/203460"], ["https://data.delijn.be/stops/408640", "https://data.delijn.be/stops/408681"], ["https://data.delijn.be/stops/504199", "https://data.delijn.be/stops/509199"], ["https://data.delijn.be/stops/401152", "https://data.delijn.be/stops/409822"], ["https://data.delijn.be/stops/408249", "https://data.delijn.be/stops/308289"], ["https://data.delijn.be/stops/208318", "https://data.delijn.be/stops/209317"], ["https://data.delijn.be/stops/107982", "https://data.delijn.be/stops/308483"], ["https://data.delijn.be/stops/200401", "https://data.delijn.be/stops/201402"], ["https://data.delijn.be/stops/404943", "https://data.delijn.be/stops/404946"], ["https://data.delijn.be/stops/409255", "https://data.delijn.be/stops/409262"], ["https://data.delijn.be/stops/501153", "https://data.delijn.be/stops/501669"], ["https://data.delijn.be/stops/404706", "https://data.delijn.be/stops/404816"], ["https://data.delijn.be/stops/505108", "https://data.delijn.be/stops/509156"], ["https://data.delijn.be/stops/105468", "https://data.delijn.be/stops/109934"], ["https://data.delijn.be/stops/400514", "https://data.delijn.be/stops/400518"], ["https://data.delijn.be/stops/302553", "https://data.delijn.be/stops/302558"], ["https://data.delijn.be/stops/400684", "https://data.delijn.be/stops/407234"], ["https://data.delijn.be/stops/505937", "https://data.delijn.be/stops/508433"], ["https://data.delijn.be/stops/108065", "https://data.delijn.be/stops/108070"], ["https://data.delijn.be/stops/405818", "https://data.delijn.be/stops/405819"], ["https://data.delijn.be/stops/504685", "https://data.delijn.be/stops/509139"], ["https://data.delijn.be/stops/200108", "https://data.delijn.be/stops/201108"], ["https://data.delijn.be/stops/101132", "https://data.delijn.be/stops/102014"], ["https://data.delijn.be/stops/300459", "https://data.delijn.be/stops/300477"], ["https://data.delijn.be/stops/300761", "https://data.delijn.be/stops/304653"], ["https://data.delijn.be/stops/303341", "https://data.delijn.be/stops/304713"], ["https://data.delijn.be/stops/501429", "https://data.delijn.be/stops/501671"], ["https://data.delijn.be/stops/407161", "https://data.delijn.be/stops/407186"], ["https://data.delijn.be/stops/333453", "https://data.delijn.be/stops/333454"], ["https://data.delijn.be/stops/109112", "https://data.delijn.be/stops/109113"], ["https://data.delijn.be/stops/300947", "https://data.delijn.be/stops/303664"], ["https://data.delijn.be/stops/208777", "https://data.delijn.be/stops/208798"], ["https://data.delijn.be/stops/404694", "https://data.delijn.be/stops/404696"], ["https://data.delijn.be/stops/202490", "https://data.delijn.be/stops/202491"], ["https://data.delijn.be/stops/205014", "https://data.delijn.be/stops/205103"], ["https://data.delijn.be/stops/211082", "https://data.delijn.be/stops/211107"], ["https://data.delijn.be/stops/306597", "https://data.delijn.be/stops/306611"], ["https://data.delijn.be/stops/501180", "https://data.delijn.be/stops/509509"], ["https://data.delijn.be/stops/303839", "https://data.delijn.be/stops/303847"], ["https://data.delijn.be/stops/301902", "https://data.delijn.be/stops/304693"], ["https://data.delijn.be/stops/102068", "https://data.delijn.be/stops/106933"], ["https://data.delijn.be/stops/206100", "https://data.delijn.be/stops/206931"], ["https://data.delijn.be/stops/301529", "https://data.delijn.be/stops/308084"], ["https://data.delijn.be/stops/502558", "https://data.delijn.be/stops/507558"], ["https://data.delijn.be/stops/208362", "https://data.delijn.be/stops/209361"], ["https://data.delijn.be/stops/206242", "https://data.delijn.be/stops/206404"], ["https://data.delijn.be/stops/502797", "https://data.delijn.be/stops/507356"], ["https://data.delijn.be/stops/105294", "https://data.delijn.be/stops/105298"], ["https://data.delijn.be/stops/402344", "https://data.delijn.be/stops/402415"], ["https://data.delijn.be/stops/102123", "https://data.delijn.be/stops/103959"], ["https://data.delijn.be/stops/307350", "https://data.delijn.be/stops/307433"], ["https://data.delijn.be/stops/102961", "https://data.delijn.be/stops/106589"], ["https://data.delijn.be/stops/202146", "https://data.delijn.be/stops/203187"], ["https://data.delijn.be/stops/505364", "https://data.delijn.be/stops/505931"], ["https://data.delijn.be/stops/106237", "https://data.delijn.be/stops/106238"], ["https://data.delijn.be/stops/102529", "https://data.delijn.be/stops/405713"], ["https://data.delijn.be/stops/208706", "https://data.delijn.be/stops/208955"], ["https://data.delijn.be/stops/501071", "https://data.delijn.be/stops/506075"], ["https://data.delijn.be/stops/303779", "https://data.delijn.be/stops/303783"], ["https://data.delijn.be/stops/300493", "https://data.delijn.be/stops/300498"], ["https://data.delijn.be/stops/301660", "https://data.delijn.be/stops/302325"], ["https://data.delijn.be/stops/400279", "https://data.delijn.be/stops/405357"], ["https://data.delijn.be/stops/106018", "https://data.delijn.be/stops/107436"], ["https://data.delijn.be/stops/205384", "https://data.delijn.be/stops/205762"], ["https://data.delijn.be/stops/104804", "https://data.delijn.be/stops/109110"], ["https://data.delijn.be/stops/503289", "https://data.delijn.be/stops/505952"], ["https://data.delijn.be/stops/400874", "https://data.delijn.be/stops/410393"], ["https://data.delijn.be/stops/204177", "https://data.delijn.be/stops/204242"], ["https://data.delijn.be/stops/505323", "https://data.delijn.be/stops/505598"], ["https://data.delijn.be/stops/504445", "https://data.delijn.be/stops/509439"], ["https://data.delijn.be/stops/406542", "https://data.delijn.be/stops/407434"], ["https://data.delijn.be/stops/103532", "https://data.delijn.be/stops/109628"], ["https://data.delijn.be/stops/300981", "https://data.delijn.be/stops/301002"], ["https://data.delijn.be/stops/202505", "https://data.delijn.be/stops/202765"], ["https://data.delijn.be/stops/205465", "https://data.delijn.be/stops/215017"], ["https://data.delijn.be/stops/102640", "https://data.delijn.be/stops/104127"], ["https://data.delijn.be/stops/107687", "https://data.delijn.be/stops/107722"], ["https://data.delijn.be/stops/508068", "https://data.delijn.be/stops/508244"], ["https://data.delijn.be/stops/403491", "https://data.delijn.be/stops/405632"], ["https://data.delijn.be/stops/107252", "https://data.delijn.be/stops/107254"], ["https://data.delijn.be/stops/402415", "https://data.delijn.be/stops/402416"], ["https://data.delijn.be/stops/101023", "https://data.delijn.be/stops/101024"], ["https://data.delijn.be/stops/402815", "https://data.delijn.be/stops/409038"], ["https://data.delijn.be/stops/502316", "https://data.delijn.be/stops/502680"], ["https://data.delijn.be/stops/102436", "https://data.delijn.be/stops/107888"], ["https://data.delijn.be/stops/108473", "https://data.delijn.be/stops/109085"], ["https://data.delijn.be/stops/304173", "https://data.delijn.be/stops/304527"], ["https://data.delijn.be/stops/105327", "https://data.delijn.be/stops/204021"], ["https://data.delijn.be/stops/503142", "https://data.delijn.be/stops/503144"], ["https://data.delijn.be/stops/206791", "https://data.delijn.be/stops/209611"], ["https://data.delijn.be/stops/108070", "https://data.delijn.be/stops/108205"], ["https://data.delijn.be/stops/501022", "https://data.delijn.be/stops/501467"], ["https://data.delijn.be/stops/401511", "https://data.delijn.be/stops/409015"], ["https://data.delijn.be/stops/102386", "https://data.delijn.be/stops/106316"], ["https://data.delijn.be/stops/206898", "https://data.delijn.be/stops/207898"], ["https://data.delijn.be/stops/102214", "https://data.delijn.be/stops/102285"], ["https://data.delijn.be/stops/202163", "https://data.delijn.be/stops/203635"], ["https://data.delijn.be/stops/300949", "https://data.delijn.be/stops/308903"], ["https://data.delijn.be/stops/101723", "https://data.delijn.be/stops/105259"], ["https://data.delijn.be/stops/400274", "https://data.delijn.be/stops/400385"], ["https://data.delijn.be/stops/201645", "https://data.delijn.be/stops/202742"], ["https://data.delijn.be/stops/202486", "https://data.delijn.be/stops/203750"], ["https://data.delijn.be/stops/102018", "https://data.delijn.be/stops/109817"], ["https://data.delijn.be/stops/304746", "https://data.delijn.be/stops/304778"], ["https://data.delijn.be/stops/204068", "https://data.delijn.be/stops/205191"], ["https://data.delijn.be/stops/108452", "https://data.delijn.be/stops/108508"], ["https://data.delijn.be/stops/303694", "https://data.delijn.be/stops/305390"], ["https://data.delijn.be/stops/202021", "https://data.delijn.be/stops/203020"], ["https://data.delijn.be/stops/201966", "https://data.delijn.be/stops/208047"], ["https://data.delijn.be/stops/501482", "https://data.delijn.be/stops/506441"], ["https://data.delijn.be/stops/503288", "https://data.delijn.be/stops/508279"], ["https://data.delijn.be/stops/202298", "https://data.delijn.be/stops/203892"], ["https://data.delijn.be/stops/210038", "https://data.delijn.be/stops/211038"], ["https://data.delijn.be/stops/401397", "https://data.delijn.be/stops/304600"], ["https://data.delijn.be/stops/500017", "https://data.delijn.be/stops/502241"], ["https://data.delijn.be/stops/302861", "https://data.delijn.be/stops/302916"], ["https://data.delijn.be/stops/301636", "https://data.delijn.be/stops/303935"], ["https://data.delijn.be/stops/208565", "https://data.delijn.be/stops/209565"], ["https://data.delijn.be/stops/503654", "https://data.delijn.be/stops/508654"], ["https://data.delijn.be/stops/504319", "https://data.delijn.be/stops/509455"], ["https://data.delijn.be/stops/503917", "https://data.delijn.be/stops/508917"], ["https://data.delijn.be/stops/400794", "https://data.delijn.be/stops/406688"], ["https://data.delijn.be/stops/203975", "https://data.delijn.be/stops/207399"], ["https://data.delijn.be/stops/105273", "https://data.delijn.be/stops/105291"], ["https://data.delijn.be/stops/302493", "https://data.delijn.be/stops/302499"], ["https://data.delijn.be/stops/302633", "https://data.delijn.be/stops/302643"], ["https://data.delijn.be/stops/102440", "https://data.delijn.be/stops/107620"], ["https://data.delijn.be/stops/406707", "https://data.delijn.be/stops/408199"], ["https://data.delijn.be/stops/504686", "https://data.delijn.be/stops/504687"], ["https://data.delijn.be/stops/503141", "https://data.delijn.be/stops/503831"], ["https://data.delijn.be/stops/101421", "https://data.delijn.be/stops/105926"], ["https://data.delijn.be/stops/200023", "https://data.delijn.be/stops/200552"], ["https://data.delijn.be/stops/107065", "https://data.delijn.be/stops/107185"], ["https://data.delijn.be/stops/107230", "https://data.delijn.be/stops/107235"], ["https://data.delijn.be/stops/202548", "https://data.delijn.be/stops/202549"], ["https://data.delijn.be/stops/300622", "https://data.delijn.be/stops/306800"], ["https://data.delijn.be/stops/502548", "https://data.delijn.be/stops/507548"], ["https://data.delijn.be/stops/503339", "https://data.delijn.be/stops/508339"], ["https://data.delijn.be/stops/403752", "https://data.delijn.be/stops/403759"], ["https://data.delijn.be/stops/200641", "https://data.delijn.be/stops/201307"], ["https://data.delijn.be/stops/206506", "https://data.delijn.be/stops/206507"], ["https://data.delijn.be/stops/401960", "https://data.delijn.be/stops/403850"], ["https://data.delijn.be/stops/202123", "https://data.delijn.be/stops/215018"], ["https://data.delijn.be/stops/204738", "https://data.delijn.be/stops/204739"], ["https://data.delijn.be/stops/400257", "https://data.delijn.be/stops/400287"], ["https://data.delijn.be/stops/206974", "https://data.delijn.be/stops/207611"], ["https://data.delijn.be/stops/202465", "https://data.delijn.be/stops/202816"], ["https://data.delijn.be/stops/504127", "https://data.delijn.be/stops/504132"], ["https://data.delijn.be/stops/504482", "https://data.delijn.be/stops/504725"], ["https://data.delijn.be/stops/107647", "https://data.delijn.be/stops/108954"], ["https://data.delijn.be/stops/503623", "https://data.delijn.be/stops/505526"], ["https://data.delijn.be/stops/503879", "https://data.delijn.be/stops/503881"], ["https://data.delijn.be/stops/302757", "https://data.delijn.be/stops/302760"], ["https://data.delijn.be/stops/400218", "https://data.delijn.be/stops/400230"], ["https://data.delijn.be/stops/503600", "https://data.delijn.be/stops/505184"], ["https://data.delijn.be/stops/501245", "https://data.delijn.be/stops/501257"], ["https://data.delijn.be/stops/102323", "https://data.delijn.be/stops/105332"], ["https://data.delijn.be/stops/408581", "https://data.delijn.be/stops/307056"], ["https://data.delijn.be/stops/407352", "https://data.delijn.be/stops/407500"], ["https://data.delijn.be/stops/106610", "https://data.delijn.be/stops/109650"], ["https://data.delijn.be/stops/208107", "https://data.delijn.be/stops/219030"], ["https://data.delijn.be/stops/302330", "https://data.delijn.be/stops/304118"], ["https://data.delijn.be/stops/203824", "https://data.delijn.be/stops/209717"], ["https://data.delijn.be/stops/206110", "https://data.delijn.be/stops/207110"], ["https://data.delijn.be/stops/208186", "https://data.delijn.be/stops/208741"], ["https://data.delijn.be/stops/301488", "https://data.delijn.be/stops/302623"], ["https://data.delijn.be/stops/405525", "https://data.delijn.be/stops/407311"], ["https://data.delijn.be/stops/506397", "https://data.delijn.be/stops/506400"], ["https://data.delijn.be/stops/108551", "https://data.delijn.be/stops/109593"], ["https://data.delijn.be/stops/201139", "https://data.delijn.be/stops/201783"], ["https://data.delijn.be/stops/201630", "https://data.delijn.be/stops/203937"], ["https://data.delijn.be/stops/101849", "https://data.delijn.be/stops/101851"], ["https://data.delijn.be/stops/405614", "https://data.delijn.be/stops/407192"], ["https://data.delijn.be/stops/202218", "https://data.delijn.be/stops/205795"], ["https://data.delijn.be/stops/401996", "https://data.delijn.be/stops/404543"], ["https://data.delijn.be/stops/407635", "https://data.delijn.be/stops/410298"], ["https://data.delijn.be/stops/507440", "https://data.delijn.be/stops/507750"], ["https://data.delijn.be/stops/504847", "https://data.delijn.be/stops/507201"], ["https://data.delijn.be/stops/505227", "https://data.delijn.be/stops/507268"], ["https://data.delijn.be/stops/505838", "https://data.delijn.be/stops/508067"], ["https://data.delijn.be/stops/301787", "https://data.delijn.be/stops/302528"], ["https://data.delijn.be/stops/200384", "https://data.delijn.be/stops/209294"], ["https://data.delijn.be/stops/208589", "https://data.delijn.be/stops/209590"], ["https://data.delijn.be/stops/502523", "https://data.delijn.be/stops/507523"], ["https://data.delijn.be/stops/300130", "https://data.delijn.be/stops/300136"], ["https://data.delijn.be/stops/200954", "https://data.delijn.be/stops/203935"], ["https://data.delijn.be/stops/504657", "https://data.delijn.be/stops/509657"], ["https://data.delijn.be/stops/303258", "https://data.delijn.be/stops/303302"], ["https://data.delijn.be/stops/501545", "https://data.delijn.be/stops/506198"], ["https://data.delijn.be/stops/203636", "https://data.delijn.be/stops/203637"], ["https://data.delijn.be/stops/300164", "https://data.delijn.be/stops/306828"], ["https://data.delijn.be/stops/208210", "https://data.delijn.be/stops/209209"], ["https://data.delijn.be/stops/105723", "https://data.delijn.be/stops/106561"], ["https://data.delijn.be/stops/301743", "https://data.delijn.be/stops/301797"], ["https://data.delijn.be/stops/300355", "https://data.delijn.be/stops/300356"], ["https://data.delijn.be/stops/101054", "https://data.delijn.be/stops/101375"], ["https://data.delijn.be/stops/307430", "https://data.delijn.be/stops/307432"], ["https://data.delijn.be/stops/106457", "https://data.delijn.be/stops/106459"], ["https://data.delijn.be/stops/301609", "https://data.delijn.be/stops/301611"], ["https://data.delijn.be/stops/504666", "https://data.delijn.be/stops/505354"], ["https://data.delijn.be/stops/200521", "https://data.delijn.be/stops/210051"], ["https://data.delijn.be/stops/103537", "https://data.delijn.be/stops/103542"], ["https://data.delijn.be/stops/203765", "https://data.delijn.be/stops/203778"], ["https://data.delijn.be/stops/204387", "https://data.delijn.be/stops/204388"], ["https://data.delijn.be/stops/405436", "https://data.delijn.be/stops/408521"], ["https://data.delijn.be/stops/109553", "https://data.delijn.be/stops/109555"], ["https://data.delijn.be/stops/502212", "https://data.delijn.be/stops/502213"], ["https://data.delijn.be/stops/405589", "https://data.delijn.be/stops/405602"], ["https://data.delijn.be/stops/102456", "https://data.delijn.be/stops/406859"], ["https://data.delijn.be/stops/202061", "https://data.delijn.be/stops/211016"], ["https://data.delijn.be/stops/503952", "https://data.delijn.be/stops/504277"], ["https://data.delijn.be/stops/106795", "https://data.delijn.be/stops/106796"], ["https://data.delijn.be/stops/300070", "https://data.delijn.be/stops/300071"], ["https://data.delijn.be/stops/108907", "https://data.delijn.be/stops/109398"], ["https://data.delijn.be/stops/302374", "https://data.delijn.be/stops/302380"], ["https://data.delijn.be/stops/404322", "https://data.delijn.be/stops/404323"], ["https://data.delijn.be/stops/509369", "https://data.delijn.be/stops/509372"], ["https://data.delijn.be/stops/304326", "https://data.delijn.be/stops/304331"], ["https://data.delijn.be/stops/203054", "https://data.delijn.be/stops/203055"], ["https://data.delijn.be/stops/206096", "https://data.delijn.be/stops/207096"], ["https://data.delijn.be/stops/407271", "https://data.delijn.be/stops/407524"], ["https://data.delijn.be/stops/105323", "https://data.delijn.be/stops/105328"], ["https://data.delijn.be/stops/303663", "https://data.delijn.be/stops/306805"], ["https://data.delijn.be/stops/502239", "https://data.delijn.be/stops/507654"], ["https://data.delijn.be/stops/301788", "https://data.delijn.be/stops/301790"], ["https://data.delijn.be/stops/200624", "https://data.delijn.be/stops/200625"], ["https://data.delijn.be/stops/303818", "https://data.delijn.be/stops/303825"], ["https://data.delijn.be/stops/406108", "https://data.delijn.be/stops/406112"], ["https://data.delijn.be/stops/101654", "https://data.delijn.be/stops/308797"], ["https://data.delijn.be/stops/401794", "https://data.delijn.be/stops/406351"], ["https://data.delijn.be/stops/405164", "https://data.delijn.be/stops/405167"], ["https://data.delijn.be/stops/501410", "https://data.delijn.be/stops/506411"], ["https://data.delijn.be/stops/200368", "https://data.delijn.be/stops/201383"], ["https://data.delijn.be/stops/403311", "https://data.delijn.be/stops/403462"], ["https://data.delijn.be/stops/106820", "https://data.delijn.be/stops/106821"], ["https://data.delijn.be/stops/407743", "https://data.delijn.be/stops/409662"], ["https://data.delijn.be/stops/206769", "https://data.delijn.be/stops/206796"], ["https://data.delijn.be/stops/304020", "https://data.delijn.be/stops/304021"], ["https://data.delijn.be/stops/206541", "https://data.delijn.be/stops/206552"], ["https://data.delijn.be/stops/404458", "https://data.delijn.be/stops/404465"], ["https://data.delijn.be/stops/204737", "https://data.delijn.be/stops/205757"], ["https://data.delijn.be/stops/201274", "https://data.delijn.be/stops/201373"], ["https://data.delijn.be/stops/205054", "https://data.delijn.be/stops/205316"], ["https://data.delijn.be/stops/404089", "https://data.delijn.be/stops/405968"], ["https://data.delijn.be/stops/204003", "https://data.delijn.be/stops/205209"], ["https://data.delijn.be/stops/307061", "https://data.delijn.be/stops/307280"], ["https://data.delijn.be/stops/404870", "https://data.delijn.be/stops/404958"], ["https://data.delijn.be/stops/306798", "https://data.delijn.be/stops/306802"], ["https://data.delijn.be/stops/300502", "https://data.delijn.be/stops/300506"], ["https://data.delijn.be/stops/400766", "https://data.delijn.be/stops/405276"], ["https://data.delijn.be/stops/507226", "https://data.delijn.be/stops/507236"], ["https://data.delijn.be/stops/202852", "https://data.delijn.be/stops/211098"], ["https://data.delijn.be/stops/503199", "https://data.delijn.be/stops/503211"], ["https://data.delijn.be/stops/208182", "https://data.delijn.be/stops/209181"], ["https://data.delijn.be/stops/303073", "https://data.delijn.be/stops/303090"], ["https://data.delijn.be/stops/505379", "https://data.delijn.be/stops/505380"], ["https://data.delijn.be/stops/107470", "https://data.delijn.be/stops/107475"], ["https://data.delijn.be/stops/403306", "https://data.delijn.be/stops/403308"], ["https://data.delijn.be/stops/101617", "https://data.delijn.be/stops/106041"], ["https://data.delijn.be/stops/405160", "https://data.delijn.be/stops/405168"], ["https://data.delijn.be/stops/202063", "https://data.delijn.be/stops/203074"], ["https://data.delijn.be/stops/401585", "https://data.delijn.be/stops/401593"], ["https://data.delijn.be/stops/206714", "https://data.delijn.be/stops/207653"], ["https://data.delijn.be/stops/305077", "https://data.delijn.be/stops/305078"], ["https://data.delijn.be/stops/102647", "https://data.delijn.be/stops/107826"], ["https://data.delijn.be/stops/502798", "https://data.delijn.be/stops/507357"], ["https://data.delijn.be/stops/406180", "https://data.delijn.be/stops/410270"], ["https://data.delijn.be/stops/201018", "https://data.delijn.be/stops/209948"], ["https://data.delijn.be/stops/400434", "https://data.delijn.be/stops/406776"], ["https://data.delijn.be/stops/301073", "https://data.delijn.be/stops/307808"], ["https://data.delijn.be/stops/206475", "https://data.delijn.be/stops/207475"], ["https://data.delijn.be/stops/502347", "https://data.delijn.be/stops/505089"], ["https://data.delijn.be/stops/201676", "https://data.delijn.be/stops/202400"], ["https://data.delijn.be/stops/500558", "https://data.delijn.be/stops/500560"], ["https://data.delijn.be/stops/503536", "https://data.delijn.be/stops/503836"], ["https://data.delijn.be/stops/409766", "https://data.delijn.be/stops/409768"], ["https://data.delijn.be/stops/209214", "https://data.delijn.be/stops/209428"], ["https://data.delijn.be/stops/104941", "https://data.delijn.be/stops/109719"], ["https://data.delijn.be/stops/408939", "https://data.delijn.be/stops/409818"], ["https://data.delijn.be/stops/503717", "https://data.delijn.be/stops/504968"], ["https://data.delijn.be/stops/108564", "https://data.delijn.be/stops/108571"], ["https://data.delijn.be/stops/301309", "https://data.delijn.be/stops/301903"], ["https://data.delijn.be/stops/208344", "https://data.delijn.be/stops/208346"], ["https://data.delijn.be/stops/400778", "https://data.delijn.be/stops/409614"], ["https://data.delijn.be/stops/204192", "https://data.delijn.be/stops/205192"], ["https://data.delijn.be/stops/304048", "https://data.delijn.be/stops/304076"], ["https://data.delijn.be/stops/106298", "https://data.delijn.be/stops/109645"], ["https://data.delijn.be/stops/400640", "https://data.delijn.be/stops/400920"], ["https://data.delijn.be/stops/401483", "https://data.delijn.be/stops/401539"], ["https://data.delijn.be/stops/407478", "https://data.delijn.be/stops/407498"], ["https://data.delijn.be/stops/501306", "https://data.delijn.be/stops/506348"], ["https://data.delijn.be/stops/203127", "https://data.delijn.be/stops/203597"], ["https://data.delijn.be/stops/502493", "https://data.delijn.be/stops/505337"], ["https://data.delijn.be/stops/401738", "https://data.delijn.be/stops/407348"], ["https://data.delijn.be/stops/101207", "https://data.delijn.be/stops/104926"], ["https://data.delijn.be/stops/305857", "https://data.delijn.be/stops/308616"], ["https://data.delijn.be/stops/102609", "https://data.delijn.be/stops/102611"], ["https://data.delijn.be/stops/501121", "https://data.delijn.be/stops/501125"], ["https://data.delijn.be/stops/102931", "https://data.delijn.be/stops/104895"], ["https://data.delijn.be/stops/102854", "https://data.delijn.be/stops/204625"], ["https://data.delijn.be/stops/406665", "https://data.delijn.be/stops/406678"], ["https://data.delijn.be/stops/204382", "https://data.delijn.be/stops/205183"], ["https://data.delijn.be/stops/304465", "https://data.delijn.be/stops/307584"], ["https://data.delijn.be/stops/406045", "https://data.delijn.be/stops/406144"], ["https://data.delijn.be/stops/501216", "https://data.delijn.be/stops/506216"], ["https://data.delijn.be/stops/205261", "https://data.delijn.be/stops/205286"], ["https://data.delijn.be/stops/101931", "https://data.delijn.be/stops/103668"], ["https://data.delijn.be/stops/204744", "https://data.delijn.be/stops/204745"], ["https://data.delijn.be/stops/300047", "https://data.delijn.be/stops/300048"], ["https://data.delijn.be/stops/206661", "https://data.delijn.be/stops/207661"], ["https://data.delijn.be/stops/103032", "https://data.delijn.be/stops/106747"], ["https://data.delijn.be/stops/103233", "https://data.delijn.be/stops/109412"], ["https://data.delijn.be/stops/502492", "https://data.delijn.be/stops/503339"], ["https://data.delijn.be/stops/408615", "https://data.delijn.be/stops/408633"], ["https://data.delijn.be/stops/208568", "https://data.delijn.be/stops/209549"], ["https://data.delijn.be/stops/302224", "https://data.delijn.be/stops/302225"], ["https://data.delijn.be/stops/107656", "https://data.delijn.be/stops/107657"], ["https://data.delijn.be/stops/300257", "https://data.delijn.be/stops/303827"], ["https://data.delijn.be/stops/106289", "https://data.delijn.be/stops/106291"], ["https://data.delijn.be/stops/504560", "https://data.delijn.be/stops/509560"], ["https://data.delijn.be/stops/204479", "https://data.delijn.be/stops/205240"], ["https://data.delijn.be/stops/503836", "https://data.delijn.be/stops/505160"], ["https://data.delijn.be/stops/508793", "https://data.delijn.be/stops/508795"], ["https://data.delijn.be/stops/104948", "https://data.delijn.be/stops/109729"], ["https://data.delijn.be/stops/101665", "https://data.delijn.be/stops/104845"], ["https://data.delijn.be/stops/200974", "https://data.delijn.be/stops/207858"], ["https://data.delijn.be/stops/402208", "https://data.delijn.be/stops/408054"], ["https://data.delijn.be/stops/208496", "https://data.delijn.be/stops/209718"], ["https://data.delijn.be/stops/203021", "https://data.delijn.be/stops/210853"], ["https://data.delijn.be/stops/400574", "https://data.delijn.be/stops/410002"], ["https://data.delijn.be/stops/506202", "https://data.delijn.be/stops/506425"], ["https://data.delijn.be/stops/204180", "https://data.delijn.be/stops/205180"], ["https://data.delijn.be/stops/207040", "https://data.delijn.be/stops/216011"], ["https://data.delijn.be/stops/106500", "https://data.delijn.be/stops/107116"], ["https://data.delijn.be/stops/300357", "https://data.delijn.be/stops/300358"], ["https://data.delijn.be/stops/308617", "https://data.delijn.be/stops/308619"], ["https://data.delijn.be/stops/300631", "https://data.delijn.be/stops/304163"], ["https://data.delijn.be/stops/101801", "https://data.delijn.be/stops/101950"], ["https://data.delijn.be/stops/501086", "https://data.delijn.be/stops/501438"], ["https://data.delijn.be/stops/403699", "https://data.delijn.be/stops/405521"], ["https://data.delijn.be/stops/206776", "https://data.delijn.be/stops/206801"], ["https://data.delijn.be/stops/206368", "https://data.delijn.be/stops/207954"], ["https://data.delijn.be/stops/409061", "https://data.delijn.be/stops/409210"], ["https://data.delijn.be/stops/202370", "https://data.delijn.be/stops/203369"], ["https://data.delijn.be/stops/207945", "https://data.delijn.be/stops/209552"], ["https://data.delijn.be/stops/205986", "https://data.delijn.be/stops/206256"], ["https://data.delijn.be/stops/501390", "https://data.delijn.be/stops/506388"], ["https://data.delijn.be/stops/200337", "https://data.delijn.be/stops/201356"], ["https://data.delijn.be/stops/503416", "https://data.delijn.be/stops/508033"], ["https://data.delijn.be/stops/106096", "https://data.delijn.be/stops/109878"], ["https://data.delijn.be/stops/109502", "https://data.delijn.be/stops/109561"], ["https://data.delijn.be/stops/304953", "https://data.delijn.be/stops/308033"], ["https://data.delijn.be/stops/202504", "https://data.delijn.be/stops/203503"], ["https://data.delijn.be/stops/405479", "https://data.delijn.be/stops/409267"], ["https://data.delijn.be/stops/200068", "https://data.delijn.be/stops/204951"], ["https://data.delijn.be/stops/505391", "https://data.delijn.be/stops/505806"], ["https://data.delijn.be/stops/509164", "https://data.delijn.be/stops/509176"], ["https://data.delijn.be/stops/402064", "https://data.delijn.be/stops/402065"], ["https://data.delijn.be/stops/401551", "https://data.delijn.be/stops/404926"], ["https://data.delijn.be/stops/307685", "https://data.delijn.be/stops/307686"], ["https://data.delijn.be/stops/206687", "https://data.delijn.be/stops/207381"], ["https://data.delijn.be/stops/407029", "https://data.delijn.be/stops/407032"], ["https://data.delijn.be/stops/208468", "https://data.delijn.be/stops/209675"], ["https://data.delijn.be/stops/200802", "https://data.delijn.be/stops/201739"], ["https://data.delijn.be/stops/306906", "https://data.delijn.be/stops/306907"], ["https://data.delijn.be/stops/502075", "https://data.delijn.be/stops/590333"], ["https://data.delijn.be/stops/202126", "https://data.delijn.be/stops/210050"], ["https://data.delijn.be/stops/405243", "https://data.delijn.be/stops/406324"], ["https://data.delijn.be/stops/502933", "https://data.delijn.be/stops/507933"], ["https://data.delijn.be/stops/501363", "https://data.delijn.be/stops/506443"], ["https://data.delijn.be/stops/504256", "https://data.delijn.be/stops/509101"], ["https://data.delijn.be/stops/504466", "https://data.delijn.be/stops/505112"], ["https://data.delijn.be/stops/301434", "https://data.delijn.be/stops/306224"], ["https://data.delijn.be/stops/300556", "https://data.delijn.be/stops/300565"], ["https://data.delijn.be/stops/502206", "https://data.delijn.be/stops/502635"], ["https://data.delijn.be/stops/304148", "https://data.delijn.be/stops/307765"], ["https://data.delijn.be/stops/509053", "https://data.delijn.be/stops/509828"], ["https://data.delijn.be/stops/408511", "https://data.delijn.be/stops/408688"], ["https://data.delijn.be/stops/304377", "https://data.delijn.be/stops/307404"], ["https://data.delijn.be/stops/502684", "https://data.delijn.be/stops/502700"], ["https://data.delijn.be/stops/505694", "https://data.delijn.be/stops/507544"], ["https://data.delijn.be/stops/200186", "https://data.delijn.be/stops/201181"], ["https://data.delijn.be/stops/106460", "https://data.delijn.be/stops/106464"], ["https://data.delijn.be/stops/102701", "https://data.delijn.be/stops/102943"], ["https://data.delijn.be/stops/204981", "https://data.delijn.be/stops/206579"], ["https://data.delijn.be/stops/402712", "https://data.delijn.be/stops/405957"], ["https://data.delijn.be/stops/408617", "https://data.delijn.be/stops/408770"], ["https://data.delijn.be/stops/402390", "https://data.delijn.be/stops/404704"], ["https://data.delijn.be/stops/203548", "https://data.delijn.be/stops/203549"], ["https://data.delijn.be/stops/206159", "https://data.delijn.be/stops/206161"], ["https://data.delijn.be/stops/107613", "https://data.delijn.be/stops/107960"], ["https://data.delijn.be/stops/300129", "https://data.delijn.be/stops/300131"], ["https://data.delijn.be/stops/501737", "https://data.delijn.be/stops/501746"], ["https://data.delijn.be/stops/402659", "https://data.delijn.be/stops/402729"], ["https://data.delijn.be/stops/405778", "https://data.delijn.be/stops/405779"], ["https://data.delijn.be/stops/108442", "https://data.delijn.be/stops/108444"], ["https://data.delijn.be/stops/102373", "https://data.delijn.be/stops/102889"], ["https://data.delijn.be/stops/300132", "https://data.delijn.be/stops/300143"], ["https://data.delijn.be/stops/104553", "https://data.delijn.be/stops/104852"], ["https://data.delijn.be/stops/407602", "https://data.delijn.be/stops/409796"], ["https://data.delijn.be/stops/206689", "https://data.delijn.be/stops/207718"], ["https://data.delijn.be/stops/300978", "https://data.delijn.be/stops/300994"], ["https://data.delijn.be/stops/510011", "https://data.delijn.be/stops/510013"], ["https://data.delijn.be/stops/103319", "https://data.delijn.be/stops/105250"], ["https://data.delijn.be/stops/208235", "https://data.delijn.be/stops/209236"], ["https://data.delijn.be/stops/107323", "https://data.delijn.be/stops/107324"], ["https://data.delijn.be/stops/307620", "https://data.delijn.be/stops/307621"], ["https://data.delijn.be/stops/302899", "https://data.delijn.be/stops/306098"], ["https://data.delijn.be/stops/400798", "https://data.delijn.be/stops/400889"], ["https://data.delijn.be/stops/408901", "https://data.delijn.be/stops/408906"], ["https://data.delijn.be/stops/109028", "https://data.delijn.be/stops/109031"], ["https://data.delijn.be/stops/504425", "https://data.delijn.be/stops/509413"], ["https://data.delijn.be/stops/104453", "https://data.delijn.be/stops/107524"], ["https://data.delijn.be/stops/108881", "https://data.delijn.be/stops/108882"], ["https://data.delijn.be/stops/405063", "https://data.delijn.be/stops/405064"], ["https://data.delijn.be/stops/104036", "https://data.delijn.be/stops/108684"], ["https://data.delijn.be/stops/304106", "https://data.delijn.be/stops/304107"], ["https://data.delijn.be/stops/202472", "https://data.delijn.be/stops/202473"], ["https://data.delijn.be/stops/200271", "https://data.delijn.be/stops/201271"], ["https://data.delijn.be/stops/203900", "https://data.delijn.be/stops/203901"], ["https://data.delijn.be/stops/303015", "https://data.delijn.be/stops/303066"], ["https://data.delijn.be/stops/505395", "https://data.delijn.be/stops/509054"], ["https://data.delijn.be/stops/207177", "https://data.delijn.be/stops/303843"], ["https://data.delijn.be/stops/305538", "https://data.delijn.be/stops/305548"], ["https://data.delijn.be/stops/202079", "https://data.delijn.be/stops/202115"], ["https://data.delijn.be/stops/405250", "https://data.delijn.be/stops/408369"], ["https://data.delijn.be/stops/206049", "https://data.delijn.be/stops/207050"], ["https://data.delijn.be/stops/105265", "https://data.delijn.be/stops/109709"], ["https://data.delijn.be/stops/202259", "https://data.delijn.be/stops/203260"], ["https://data.delijn.be/stops/402219", "https://data.delijn.be/stops/405608"], ["https://data.delijn.be/stops/204252", "https://data.delijn.be/stops/204732"], ["https://data.delijn.be/stops/401988", "https://data.delijn.be/stops/401989"], ["https://data.delijn.be/stops/401294", "https://data.delijn.be/stops/405467"], ["https://data.delijn.be/stops/203997", "https://data.delijn.be/stops/203998"], ["https://data.delijn.be/stops/401399", "https://data.delijn.be/stops/300920"], ["https://data.delijn.be/stops/107181", "https://data.delijn.be/stops/107736"], ["https://data.delijn.be/stops/105278", "https://data.delijn.be/stops/109972"], ["https://data.delijn.be/stops/406558", "https://data.delijn.be/stops/406559"], ["https://data.delijn.be/stops/108362", "https://data.delijn.be/stops/108363"], ["https://data.delijn.be/stops/201925", "https://data.delijn.be/stops/207589"], ["https://data.delijn.be/stops/400362", "https://data.delijn.be/stops/400398"], ["https://data.delijn.be/stops/210115", "https://data.delijn.be/stops/210116"], ["https://data.delijn.be/stops/203494", "https://data.delijn.be/stops/203607"], ["https://data.delijn.be/stops/101272", "https://data.delijn.be/stops/204257"], ["https://data.delijn.be/stops/209656", "https://data.delijn.be/stops/211068"], ["https://data.delijn.be/stops/203301", "https://data.delijn.be/stops/211005"], ["https://data.delijn.be/stops/304942", "https://data.delijn.be/stops/308020"], ["https://data.delijn.be/stops/101824", "https://data.delijn.be/stops/107011"], ["https://data.delijn.be/stops/101220", "https://data.delijn.be/stops/107812"], ["https://data.delijn.be/stops/501592", "https://data.delijn.be/stops/501593"], ["https://data.delijn.be/stops/407979", "https://data.delijn.be/stops/308219"], ["https://data.delijn.be/stops/201197", "https://data.delijn.be/stops/201689"], ["https://data.delijn.be/stops/306137", "https://data.delijn.be/stops/306138"], ["https://data.delijn.be/stops/108911", "https://data.delijn.be/stops/108912"], ["https://data.delijn.be/stops/300339", "https://data.delijn.be/stops/300349"], ["https://data.delijn.be/stops/300687", "https://data.delijn.be/stops/308132"], ["https://data.delijn.be/stops/105337", "https://data.delijn.be/stops/105349"], ["https://data.delijn.be/stops/406551", "https://data.delijn.be/stops/406552"], ["https://data.delijn.be/stops/300265", "https://data.delijn.be/stops/300266"], ["https://data.delijn.be/stops/408020", "https://data.delijn.be/stops/408136"], ["https://data.delijn.be/stops/204479", "https://data.delijn.be/stops/205108"], ["https://data.delijn.be/stops/401254", "https://data.delijn.be/stops/401339"], ["https://data.delijn.be/stops/407400", "https://data.delijn.be/stops/407483"], ["https://data.delijn.be/stops/401098", "https://data.delijn.be/stops/409980"], ["https://data.delijn.be/stops/301705", "https://data.delijn.be/stops/301781"], ["https://data.delijn.be/stops/405208", "https://data.delijn.be/stops/405289"], ["https://data.delijn.be/stops/103354", "https://data.delijn.be/stops/103357"], ["https://data.delijn.be/stops/107140", "https://data.delijn.be/stops/107153"], ["https://data.delijn.be/stops/202538", "https://data.delijn.be/stops/219023"], ["https://data.delijn.be/stops/206592", "https://data.delijn.be/stops/206949"], ["https://data.delijn.be/stops/401427", "https://data.delijn.be/stops/401444"], ["https://data.delijn.be/stops/208250", "https://data.delijn.be/stops/209251"], ["https://data.delijn.be/stops/202267", "https://data.delijn.be/stops/203238"], ["https://data.delijn.be/stops/501448", "https://data.delijn.be/stops/506027"], ["https://data.delijn.be/stops/204334", "https://data.delijn.be/stops/205818"], ["https://data.delijn.be/stops/503092", "https://data.delijn.be/stops/508882"], ["https://data.delijn.be/stops/302849", "https://data.delijn.be/stops/302850"], ["https://data.delijn.be/stops/503964", "https://data.delijn.be/stops/508676"], ["https://data.delijn.be/stops/203639", "https://data.delijn.be/stops/214016"], ["https://data.delijn.be/stops/403589", "https://data.delijn.be/stops/410013"], ["https://data.delijn.be/stops/104124", "https://data.delijn.be/stops/105165"], ["https://data.delijn.be/stops/305347", "https://data.delijn.be/stops/305348"], ["https://data.delijn.be/stops/108666", "https://data.delijn.be/stops/306613"], ["https://data.delijn.be/stops/101204", "https://data.delijn.be/stops/101207"], ["https://data.delijn.be/stops/304471", "https://data.delijn.be/stops/304624"], ["https://data.delijn.be/stops/102322", "https://data.delijn.be/stops/109557"], ["https://data.delijn.be/stops/202354", "https://data.delijn.be/stops/203354"], ["https://data.delijn.be/stops/102647", "https://data.delijn.be/stops/104909"], ["https://data.delijn.be/stops/103328", "https://data.delijn.be/stops/105097"], ["https://data.delijn.be/stops/107490", "https://data.delijn.be/stops/107520"], ["https://data.delijn.be/stops/105735", "https://data.delijn.be/stops/105745"], ["https://data.delijn.be/stops/206019", "https://data.delijn.be/stops/207021"], ["https://data.delijn.be/stops/401550", "https://data.delijn.be/stops/404946"], ["https://data.delijn.be/stops/402141", "https://data.delijn.be/stops/402397"], ["https://data.delijn.be/stops/301987", "https://data.delijn.be/stops/302001"], ["https://data.delijn.be/stops/104508", "https://data.delijn.be/stops/107923"], ["https://data.delijn.be/stops/400494", "https://data.delijn.be/stops/407211"], ["https://data.delijn.be/stops/503517", "https://data.delijn.be/stops/503519"], ["https://data.delijn.be/stops/506345", "https://data.delijn.be/stops/506348"], ["https://data.delijn.be/stops/103944", "https://data.delijn.be/stops/108894"], ["https://data.delijn.be/stops/202624", "https://data.delijn.be/stops/203623"], ["https://data.delijn.be/stops/301359", "https://data.delijn.be/stops/306137"], ["https://data.delijn.be/stops/200254", "https://data.delijn.be/stops/203558"], ["https://data.delijn.be/stops/308152", "https://data.delijn.be/stops/308153"], ["https://data.delijn.be/stops/304592", "https://data.delijn.be/stops/304612"], ["https://data.delijn.be/stops/502401", "https://data.delijn.be/stops/507401"], ["https://data.delijn.be/stops/503040", "https://data.delijn.be/stops/508041"], ["https://data.delijn.be/stops/501432", "https://data.delijn.be/stops/506432"], ["https://data.delijn.be/stops/204993", "https://data.delijn.be/stops/208130"], ["https://data.delijn.be/stops/408519", "https://data.delijn.be/stops/408774"], ["https://data.delijn.be/stops/400675", "https://data.delijn.be/stops/405428"], ["https://data.delijn.be/stops/202129", "https://data.delijn.be/stops/202719"], ["https://data.delijn.be/stops/501017", "https://data.delijn.be/stops/501607"], ["https://data.delijn.be/stops/101374", "https://data.delijn.be/stops/101401"], ["https://data.delijn.be/stops/101009", "https://data.delijn.be/stops/109005"], ["https://data.delijn.be/stops/209956", "https://data.delijn.be/stops/209970"], ["https://data.delijn.be/stops/501191", "https://data.delijn.be/stops/506379"], ["https://data.delijn.be/stops/108162", "https://data.delijn.be/stops/108163"], ["https://data.delijn.be/stops/407463", "https://data.delijn.be/stops/409273"], ["https://data.delijn.be/stops/206271", "https://data.delijn.be/stops/207271"], ["https://data.delijn.be/stops/305164", "https://data.delijn.be/stops/308050"], ["https://data.delijn.be/stops/210051", "https://data.delijn.be/stops/211051"], ["https://data.delijn.be/stops/404333", "https://data.delijn.be/stops/404340"], ["https://data.delijn.be/stops/206754", "https://data.delijn.be/stops/209476"], ["https://data.delijn.be/stops/208955", "https://data.delijn.be/stops/209955"], ["https://data.delijn.be/stops/307836", "https://data.delijn.be/stops/307838"], ["https://data.delijn.be/stops/200922", "https://data.delijn.be/stops/200935"], ["https://data.delijn.be/stops/408686", "https://data.delijn.be/stops/408687"], ["https://data.delijn.be/stops/208122", "https://data.delijn.be/stops/208123"], ["https://data.delijn.be/stops/402612", "https://data.delijn.be/stops/404399"], ["https://data.delijn.be/stops/408159", "https://data.delijn.be/stops/408160"], ["https://data.delijn.be/stops/104581", "https://data.delijn.be/stops/308632"], ["https://data.delijn.be/stops/204145", "https://data.delijn.be/stops/206637"], ["https://data.delijn.be/stops/201894", "https://data.delijn.be/stops/211126"], ["https://data.delijn.be/stops/205739", "https://data.delijn.be/stops/205741"], ["https://data.delijn.be/stops/106800", "https://data.delijn.be/stops/106802"], ["https://data.delijn.be/stops/503019", "https://data.delijn.be/stops/503022"], ["https://data.delijn.be/stops/200797", "https://data.delijn.be/stops/210072"], ["https://data.delijn.be/stops/507076", "https://data.delijn.be/stops/507080"], ["https://data.delijn.be/stops/405187", "https://data.delijn.be/stops/405191"], ["https://data.delijn.be/stops/505110", "https://data.delijn.be/stops/509155"], ["https://data.delijn.be/stops/501661", "https://data.delijn.be/stops/501674"], ["https://data.delijn.be/stops/408950", "https://data.delijn.be/stops/408972"], ["https://data.delijn.be/stops/208082", "https://data.delijn.be/stops/209699"], ["https://data.delijn.be/stops/304833", "https://data.delijn.be/stops/307053"], ["https://data.delijn.be/stops/302203", "https://data.delijn.be/stops/304115"], ["https://data.delijn.be/stops/509132", "https://data.delijn.be/stops/509257"], ["https://data.delijn.be/stops/401567", "https://data.delijn.be/stops/401738"], ["https://data.delijn.be/stops/300558", "https://data.delijn.be/stops/300559"], ["https://data.delijn.be/stops/205528", "https://data.delijn.be/stops/205630"], ["https://data.delijn.be/stops/200066", "https://data.delijn.be/stops/200369"], ["https://data.delijn.be/stops/208459", "https://data.delijn.be/stops/209467"], ["https://data.delijn.be/stops/405397", "https://data.delijn.be/stops/302826"], ["https://data.delijn.be/stops/206765", "https://data.delijn.be/stops/209090"], ["https://data.delijn.be/stops/503271", "https://data.delijn.be/stops/503274"], ["https://data.delijn.be/stops/105170", "https://data.delijn.be/stops/107125"], ["https://data.delijn.be/stops/207213", "https://data.delijn.be/stops/207922"], ["https://data.delijn.be/stops/501655", "https://data.delijn.be/stops/506149"], ["https://data.delijn.be/stops/502226", "https://data.delijn.be/stops/505775"], ["https://data.delijn.be/stops/305527", "https://data.delijn.be/stops/305577"], ["https://data.delijn.be/stops/200403", "https://data.delijn.be/stops/201403"], ["https://data.delijn.be/stops/501551", "https://data.delijn.be/stops/505757"], ["https://data.delijn.be/stops/208716", "https://data.delijn.be/stops/209716"], ["https://data.delijn.be/stops/202885", "https://data.delijn.be/stops/202886"], ["https://data.delijn.be/stops/304807", "https://data.delijn.be/stops/307886"], ["https://data.delijn.be/stops/101432", "https://data.delijn.be/stops/101433"], ["https://data.delijn.be/stops/207340", "https://data.delijn.be/stops/207341"], ["https://data.delijn.be/stops/107401", "https://data.delijn.be/stops/107404"], ["https://data.delijn.be/stops/504330", "https://data.delijn.be/stops/505925"], ["https://data.delijn.be/stops/401650", "https://data.delijn.be/stops/405403"], ["https://data.delijn.be/stops/101355", "https://data.delijn.be/stops/105760"], ["https://data.delijn.be/stops/505092", "https://data.delijn.be/stops/509883"], ["https://data.delijn.be/stops/300742", "https://data.delijn.be/stops/300745"], ["https://data.delijn.be/stops/208329", "https://data.delijn.be/stops/208331"], ["https://data.delijn.be/stops/200075", "https://data.delijn.be/stops/201450"], ["https://data.delijn.be/stops/102164", "https://data.delijn.be/stops/105809"], ["https://data.delijn.be/stops/203751", "https://data.delijn.be/stops/203752"], ["https://data.delijn.be/stops/106896", "https://data.delijn.be/stops/109884"], ["https://data.delijn.be/stops/300203", "https://data.delijn.be/stops/300210"], ["https://data.delijn.be/stops/302778", "https://data.delijn.be/stops/302781"], ["https://data.delijn.be/stops/507112", "https://data.delijn.be/stops/507121"], ["https://data.delijn.be/stops/101973", "https://data.delijn.be/stops/109290"], ["https://data.delijn.be/stops/405885", "https://data.delijn.be/stops/409889"], ["https://data.delijn.be/stops/408519", "https://data.delijn.be/stops/410249"], ["https://data.delijn.be/stops/404816", "https://data.delijn.be/stops/404817"], ["https://data.delijn.be/stops/105176", "https://data.delijn.be/stops/109522"], ["https://data.delijn.be/stops/209168", "https://data.delijn.be/stops/209169"], ["https://data.delijn.be/stops/200749", "https://data.delijn.be/stops/202150"], ["https://data.delijn.be/stops/207230", "https://data.delijn.be/stops/207802"], ["https://data.delijn.be/stops/402046", "https://data.delijn.be/stops/410074"], ["https://data.delijn.be/stops/200039", "https://data.delijn.be/stops/201912"], ["https://data.delijn.be/stops/206084", "https://data.delijn.be/stops/207083"], ["https://data.delijn.be/stops/501286", "https://data.delijn.be/stops/506286"], ["https://data.delijn.be/stops/203937", "https://data.delijn.be/stops/203938"], ["https://data.delijn.be/stops/204736", "https://data.delijn.be/stops/205736"], ["https://data.delijn.be/stops/303162", "https://data.delijn.be/stops/307290"], ["https://data.delijn.be/stops/208341", "https://data.delijn.be/stops/219010"], ["https://data.delijn.be/stops/201047", "https://data.delijn.be/stops/203449"], ["https://data.delijn.be/stops/105023", "https://data.delijn.be/stops/105827"], ["https://data.delijn.be/stops/503603", "https://data.delijn.be/stops/508601"], ["https://data.delijn.be/stops/109583", "https://data.delijn.be/stops/109586"], ["https://data.delijn.be/stops/408102", "https://data.delijn.be/stops/408103"], ["https://data.delijn.be/stops/400588", "https://data.delijn.be/stops/400616"], ["https://data.delijn.be/stops/502041", "https://data.delijn.be/stops/507059"], ["https://data.delijn.be/stops/500941", "https://data.delijn.be/stops/503181"], ["https://data.delijn.be/stops/406254", "https://data.delijn.be/stops/410131"], ["https://data.delijn.be/stops/202219", "https://data.delijn.be/stops/203219"], ["https://data.delijn.be/stops/206014", "https://data.delijn.be/stops/207014"], ["https://data.delijn.be/stops/204578", "https://data.delijn.be/stops/207243"], ["https://data.delijn.be/stops/407605", "https://data.delijn.be/stops/407610"], ["https://data.delijn.be/stops/301882", "https://data.delijn.be/stops/305871"], ["https://data.delijn.be/stops/300046", "https://data.delijn.be/stops/300064"], ["https://data.delijn.be/stops/102289", "https://data.delijn.be/stops/102291"], ["https://data.delijn.be/stops/206403", "https://data.delijn.be/stops/207245"], ["https://data.delijn.be/stops/403894", "https://data.delijn.be/stops/403895"], ["https://data.delijn.be/stops/307298", "https://data.delijn.be/stops/307299"], ["https://data.delijn.be/stops/300416", "https://data.delijn.be/stops/300419"], ["https://data.delijn.be/stops/106766", "https://data.delijn.be/stops/106867"], ["https://data.delijn.be/stops/103245", "https://data.delijn.be/stops/103250"], ["https://data.delijn.be/stops/308153", "https://data.delijn.be/stops/308166"], ["https://data.delijn.be/stops/505510", "https://data.delijn.be/stops/509928"], ["https://data.delijn.be/stops/403418", "https://data.delijn.be/stops/403419"], ["https://data.delijn.be/stops/501764", "https://data.delijn.be/stops/503824"], ["https://data.delijn.be/stops/306905", "https://data.delijn.be/stops/306932"], ["https://data.delijn.be/stops/308570", "https://data.delijn.be/stops/308573"], ["https://data.delijn.be/stops/505030", "https://data.delijn.be/stops/505032"], ["https://data.delijn.be/stops/206265", "https://data.delijn.be/stops/206995"], ["https://data.delijn.be/stops/303212", "https://data.delijn.be/stops/307952"], ["https://data.delijn.be/stops/206331", "https://data.delijn.be/stops/207329"], ["https://data.delijn.be/stops/407965", "https://data.delijn.be/stops/408000"], ["https://data.delijn.be/stops/201521", "https://data.delijn.be/stops/201522"], ["https://data.delijn.be/stops/404473", "https://data.delijn.be/stops/404533"], ["https://data.delijn.be/stops/304955", "https://data.delijn.be/stops/304960"], ["https://data.delijn.be/stops/303760", "https://data.delijn.be/stops/303763"], ["https://data.delijn.be/stops/504454", "https://data.delijn.be/stops/509453"], ["https://data.delijn.be/stops/407804", "https://data.delijn.be/stops/407807"], ["https://data.delijn.be/stops/108466", "https://data.delijn.be/stops/108468"], ["https://data.delijn.be/stops/401581", "https://data.delijn.be/stops/401743"], ["https://data.delijn.be/stops/104446", "https://data.delijn.be/stops/303878"], ["https://data.delijn.be/stops/500013", "https://data.delijn.be/stops/507224"], ["https://data.delijn.be/stops/303066", "https://data.delijn.be/stops/303895"], ["https://data.delijn.be/stops/507364", "https://data.delijn.be/stops/507675"], ["https://data.delijn.be/stops/405914", "https://data.delijn.be/stops/405933"], ["https://data.delijn.be/stops/405717", "https://data.delijn.be/stops/410144"], ["https://data.delijn.be/stops/304892", "https://data.delijn.be/stops/304893"], ["https://data.delijn.be/stops/208588", "https://data.delijn.be/stops/306270"], ["https://data.delijn.be/stops/200617", "https://data.delijn.be/stops/203921"], ["https://data.delijn.be/stops/502300", "https://data.delijn.be/stops/505673"], ["https://data.delijn.be/stops/307385", "https://data.delijn.be/stops/307386"], ["https://data.delijn.be/stops/305058", "https://data.delijn.be/stops/306336"], ["https://data.delijn.be/stops/106418", "https://data.delijn.be/stops/106419"], ["https://data.delijn.be/stops/505998", "https://data.delijn.be/stops/509696"], ["https://data.delijn.be/stops/304371", "https://data.delijn.be/stops/306870"], ["https://data.delijn.be/stops/403890", "https://data.delijn.be/stops/403894"], ["https://data.delijn.be/stops/304117", "https://data.delijn.be/stops/304118"], ["https://data.delijn.be/stops/402175", "https://data.delijn.be/stops/402313"], ["https://data.delijn.be/stops/401338", "https://data.delijn.be/stops/406943"], ["https://data.delijn.be/stops/307602", "https://data.delijn.be/stops/307603"], ["https://data.delijn.be/stops/302255", "https://data.delijn.be/stops/304842"], ["https://data.delijn.be/stops/201062", "https://data.delijn.be/stops/202132"], ["https://data.delijn.be/stops/302460", "https://data.delijn.be/stops/302461"], ["https://data.delijn.be/stops/305215", "https://data.delijn.be/stops/308904"], ["https://data.delijn.be/stops/200911", "https://data.delijn.be/stops/203539"], ["https://data.delijn.be/stops/204121", "https://data.delijn.be/stops/205249"], ["https://data.delijn.be/stops/109348", "https://data.delijn.be/stops/109355"], ["https://data.delijn.be/stops/209192", "https://data.delijn.be/stops/209193"], ["https://data.delijn.be/stops/101417", "https://data.delijn.be/stops/104591"], ["https://data.delijn.be/stops/406451", "https://data.delijn.be/stops/406495"], ["https://data.delijn.be/stops/108044", "https://data.delijn.be/stops/108046"], ["https://data.delijn.be/stops/303715", "https://data.delijn.be/stops/303876"], ["https://data.delijn.be/stops/503103", "https://data.delijn.be/stops/508088"], ["https://data.delijn.be/stops/202219", "https://data.delijn.be/stops/204796"], ["https://data.delijn.be/stops/502507", "https://data.delijn.be/stops/507507"], ["https://data.delijn.be/stops/509893", "https://data.delijn.be/stops/509894"], ["https://data.delijn.be/stops/504278", "https://data.delijn.be/stops/504283"], ["https://data.delijn.be/stops/400166", "https://data.delijn.be/stops/410339"], ["https://data.delijn.be/stops/501508", "https://data.delijn.be/stops/506508"], ["https://data.delijn.be/stops/505125", "https://data.delijn.be/stops/505128"], ["https://data.delijn.be/stops/301013", "https://data.delijn.be/stops/301016"], ["https://data.delijn.be/stops/204684", "https://data.delijn.be/stops/204685"], ["https://data.delijn.be/stops/211115", "https://data.delijn.be/stops/211116"], ["https://data.delijn.be/stops/300748", "https://data.delijn.be/stops/300771"], ["https://data.delijn.be/stops/406158", "https://data.delijn.be/stops/406442"], ["https://data.delijn.be/stops/406266", "https://data.delijn.be/stops/407339"], ["https://data.delijn.be/stops/206590", "https://data.delijn.be/stops/206591"], ["https://data.delijn.be/stops/301902", "https://data.delijn.be/stops/306249"], ["https://data.delijn.be/stops/302165", "https://data.delijn.be/stops/307804"], ["https://data.delijn.be/stops/207369", "https://data.delijn.be/stops/207691"], ["https://data.delijn.be/stops/405730", "https://data.delijn.be/stops/405734"], ["https://data.delijn.be/stops/209102", "https://data.delijn.be/stops/209164"], ["https://data.delijn.be/stops/302378", "https://data.delijn.be/stops/302379"], ["https://data.delijn.be/stops/501069", "https://data.delijn.be/stops/501771"], ["https://data.delijn.be/stops/109080", "https://data.delijn.be/stops/109090"], ["https://data.delijn.be/stops/504733", "https://data.delijn.be/stops/509507"], ["https://data.delijn.be/stops/107642", "https://data.delijn.be/stops/305633"], ["https://data.delijn.be/stops/104369", "https://data.delijn.be/stops/205605"], ["https://data.delijn.be/stops/206665", "https://data.delijn.be/stops/206711"], ["https://data.delijn.be/stops/407685", "https://data.delijn.be/stops/407698"], ["https://data.delijn.be/stops/504649", "https://data.delijn.be/stops/504656"], ["https://data.delijn.be/stops/503542", "https://data.delijn.be/stops/503996"], ["https://data.delijn.be/stops/402375", "https://data.delijn.be/stops/409391"], ["https://data.delijn.be/stops/502755", "https://data.delijn.be/stops/505650"], ["https://data.delijn.be/stops/102180", "https://data.delijn.be/stops/107134"], ["https://data.delijn.be/stops/302135", "https://data.delijn.be/stops/307296"], ["https://data.delijn.be/stops/102547", "https://data.delijn.be/stops/102548"], ["https://data.delijn.be/stops/406552", "https://data.delijn.be/stops/406554"], ["https://data.delijn.be/stops/108764", "https://data.delijn.be/stops/108777"], ["https://data.delijn.be/stops/204079", "https://data.delijn.be/stops/205587"], ["https://data.delijn.be/stops/206722", "https://data.delijn.be/stops/207085"], ["https://data.delijn.be/stops/503197", "https://data.delijn.be/stops/508205"], ["https://data.delijn.be/stops/403680", "https://data.delijn.be/stops/403683"], ["https://data.delijn.be/stops/307392", "https://data.delijn.be/stops/307631"], ["https://data.delijn.be/stops/505808", "https://data.delijn.be/stops/509699"], ["https://data.delijn.be/stops/409687", "https://data.delijn.be/stops/409688"], ["https://data.delijn.be/stops/407918", "https://data.delijn.be/stops/306060"], ["https://data.delijn.be/stops/103273", "https://data.delijn.be/stops/109986"], ["https://data.delijn.be/stops/205210", "https://data.delijn.be/stops/205713"], ["https://data.delijn.be/stops/406660", "https://data.delijn.be/stops/406670"], ["https://data.delijn.be/stops/204431", "https://data.delijn.be/stops/205431"], ["https://data.delijn.be/stops/505234", "https://data.delijn.be/stops/505236"], ["https://data.delijn.be/stops/408007", "https://data.delijn.be/stops/408149"], ["https://data.delijn.be/stops/505012", "https://data.delijn.be/stops/505345"], ["https://data.delijn.be/stops/209106", "https://data.delijn.be/stops/209779"], ["https://data.delijn.be/stops/202790", "https://data.delijn.be/stops/203789"], ["https://data.delijn.be/stops/109057", "https://data.delijn.be/stops/109064"], ["https://data.delijn.be/stops/201858", "https://data.delijn.be/stops/210033"], ["https://data.delijn.be/stops/107698", "https://data.delijn.be/stops/107699"], ["https://data.delijn.be/stops/105764", "https://data.delijn.be/stops/106754"], ["https://data.delijn.be/stops/101857", "https://data.delijn.be/stops/105558"], ["https://data.delijn.be/stops/205572", "https://data.delijn.be/stops/303395"], ["https://data.delijn.be/stops/102042", "https://data.delijn.be/stops/204142"], ["https://data.delijn.be/stops/407830", "https://data.delijn.be/stops/407834"], ["https://data.delijn.be/stops/503706", "https://data.delijn.be/stops/508764"], ["https://data.delijn.be/stops/109457", "https://data.delijn.be/stops/109793"], ["https://data.delijn.be/stops/505214", "https://data.delijn.be/stops/508842"], ["https://data.delijn.be/stops/101378", "https://data.delijn.be/stops/107303"], ["https://data.delijn.be/stops/402202", "https://data.delijn.be/stops/402203"], ["https://data.delijn.be/stops/208120", "https://data.delijn.be/stops/208237"], ["https://data.delijn.be/stops/506175", "https://data.delijn.be/stops/506183"], ["https://data.delijn.be/stops/207346", "https://data.delijn.be/stops/207372"], ["https://data.delijn.be/stops/302957", "https://data.delijn.be/stops/303442"], ["https://data.delijn.be/stops/503084", "https://data.delijn.be/stops/505198"], ["https://data.delijn.be/stops/202698", "https://data.delijn.be/stops/203699"], ["https://data.delijn.be/stops/406729", "https://data.delijn.be/stops/410037"], ["https://data.delijn.be/stops/400754", "https://data.delijn.be/stops/400855"], ["https://data.delijn.be/stops/502462", "https://data.delijn.be/stops/507388"], ["https://data.delijn.be/stops/104814", "https://data.delijn.be/stops/105369"], ["https://data.delijn.be/stops/206574", "https://data.delijn.be/stops/207574"], ["https://data.delijn.be/stops/204575", "https://data.delijn.be/stops/205575"], ["https://data.delijn.be/stops/200768", "https://data.delijn.be/stops/208298"], ["https://data.delijn.be/stops/306156", "https://data.delijn.be/stops/308637"], ["https://data.delijn.be/stops/400306", "https://data.delijn.be/stops/400307"], ["https://data.delijn.be/stops/101796", "https://data.delijn.be/stops/105928"], ["https://data.delijn.be/stops/403704", "https://data.delijn.be/stops/403728"], ["https://data.delijn.be/stops/405926", "https://data.delijn.be/stops/405965"], ["https://data.delijn.be/stops/208489", "https://data.delijn.be/stops/209488"], ["https://data.delijn.be/stops/300754", "https://data.delijn.be/stops/300773"], ["https://data.delijn.be/stops/501075", "https://data.delijn.be/stops/506066"], ["https://data.delijn.be/stops/300961", "https://data.delijn.be/stops/300962"], ["https://data.delijn.be/stops/400791", "https://data.delijn.be/stops/400792"], ["https://data.delijn.be/stops/200216", "https://data.delijn.be/stops/201214"], ["https://data.delijn.be/stops/400516", "https://data.delijn.be/stops/400519"], ["https://data.delijn.be/stops/301564", "https://data.delijn.be/stops/301567"], ["https://data.delijn.be/stops/102241", "https://data.delijn.be/stops/102243"], ["https://data.delijn.be/stops/303755", "https://data.delijn.be/stops/303762"], ["https://data.delijn.be/stops/503411", "https://data.delijn.be/stops/508411"], ["https://data.delijn.be/stops/504178", "https://data.delijn.be/stops/504179"], ["https://data.delijn.be/stops/304031", "https://data.delijn.be/stops/304913"], ["https://data.delijn.be/stops/206188", "https://data.delijn.be/stops/207955"], ["https://data.delijn.be/stops/302503", "https://data.delijn.be/stops/302718"], ["https://data.delijn.be/stops/400847", "https://data.delijn.be/stops/410393"], ["https://data.delijn.be/stops/501355", "https://data.delijn.be/stops/501521"], ["https://data.delijn.be/stops/204466", "https://data.delijn.be/stops/205474"], ["https://data.delijn.be/stops/202681", "https://data.delijn.be/stops/203680"], ["https://data.delijn.be/stops/302344", "https://data.delijn.be/stops/302353"], ["https://data.delijn.be/stops/202044", "https://data.delijn.be/stops/202394"], ["https://data.delijn.be/stops/106795", "https://data.delijn.be/stops/106866"], ["https://data.delijn.be/stops/300479", "https://data.delijn.be/stops/302092"], ["https://data.delijn.be/stops/301595", "https://data.delijn.be/stops/302604"], ["https://data.delijn.be/stops/502034", "https://data.delijn.be/stops/507048"], ["https://data.delijn.be/stops/106914", "https://data.delijn.be/stops/107251"], ["https://data.delijn.be/stops/106959", "https://data.delijn.be/stops/107271"], ["https://data.delijn.be/stops/104557", "https://data.delijn.be/stops/104560"], ["https://data.delijn.be/stops/302414", "https://data.delijn.be/stops/302418"], ["https://data.delijn.be/stops/400499", "https://data.delijn.be/stops/400907"], ["https://data.delijn.be/stops/503565", "https://data.delijn.be/stops/503572"], ["https://data.delijn.be/stops/104639", "https://data.delijn.be/stops/107970"], ["https://data.delijn.be/stops/302034", "https://data.delijn.be/stops/302035"], ["https://data.delijn.be/stops/102962", "https://data.delijn.be/stops/109254"], ["https://data.delijn.be/stops/204193", "https://data.delijn.be/stops/205193"], ["https://data.delijn.be/stops/302725", "https://data.delijn.be/stops/308597"], ["https://data.delijn.be/stops/304345", "https://data.delijn.be/stops/304358"], ["https://data.delijn.be/stops/300332", "https://data.delijn.be/stops/300333"], ["https://data.delijn.be/stops/102748", "https://data.delijn.be/stops/107797"], ["https://data.delijn.be/stops/304705", "https://data.delijn.be/stops/308957"], ["https://data.delijn.be/stops/206020", "https://data.delijn.be/stops/207016"], ["https://data.delijn.be/stops/101815", "https://data.delijn.be/stops/103075"], ["https://data.delijn.be/stops/105152", "https://data.delijn.be/stops/105177"], ["https://data.delijn.be/stops/301855", "https://data.delijn.be/stops/302097"], ["https://data.delijn.be/stops/305951", "https://data.delijn.be/stops/308140"], ["https://data.delijn.be/stops/300378", "https://data.delijn.be/stops/300384"], ["https://data.delijn.be/stops/204022", "https://data.delijn.be/stops/206285"], ["https://data.delijn.be/stops/201134", "https://data.delijn.be/stops/201231"], ["https://data.delijn.be/stops/208967", "https://data.delijn.be/stops/209218"], ["https://data.delijn.be/stops/205145", "https://data.delijn.be/stops/205595"], ["https://data.delijn.be/stops/407770", "https://data.delijn.be/stops/307453"], ["https://data.delijn.be/stops/509194", "https://data.delijn.be/stops/509716"], ["https://data.delijn.be/stops/208469", "https://data.delijn.be/stops/209754"], ["https://data.delijn.be/stops/403969", "https://data.delijn.be/stops/403974"], ["https://data.delijn.be/stops/200232", "https://data.delijn.be/stops/210051"], ["https://data.delijn.be/stops/406464", "https://data.delijn.be/stops/406489"], ["https://data.delijn.be/stops/305013", "https://data.delijn.be/stops/305021"], ["https://data.delijn.be/stops/303934", "https://data.delijn.be/stops/304574"], ["https://data.delijn.be/stops/101756", "https://data.delijn.be/stops/102181"], ["https://data.delijn.be/stops/209538", "https://data.delijn.be/stops/209693"], ["https://data.delijn.be/stops/408214", "https://data.delijn.be/stops/408275"], ["https://data.delijn.be/stops/505368", "https://data.delijn.be/stops/509049"], ["https://data.delijn.be/stops/403103", "https://data.delijn.be/stops/403116"], ["https://data.delijn.be/stops/204426", "https://data.delijn.be/stops/205441"], ["https://data.delijn.be/stops/504289", "https://data.delijn.be/stops/509282"], ["https://data.delijn.be/stops/104075", "https://data.delijn.be/stops/104370"], ["https://data.delijn.be/stops/202902", "https://data.delijn.be/stops/203903"], ["https://data.delijn.be/stops/204340", "https://data.delijn.be/stops/214008"], ["https://data.delijn.be/stops/505167", "https://data.delijn.be/stops/509500"], ["https://data.delijn.be/stops/206198", "https://data.delijn.be/stops/207206"], ["https://data.delijn.be/stops/203275", "https://data.delijn.be/stops/203422"], ["https://data.delijn.be/stops/504238", "https://data.delijn.be/stops/505384"], ["https://data.delijn.be/stops/403251", "https://data.delijn.be/stops/404146"], ["https://data.delijn.be/stops/105646", "https://data.delijn.be/stops/105648"], ["https://data.delijn.be/stops/504463", "https://data.delijn.be/stops/509465"], ["https://data.delijn.be/stops/201152", "https://data.delijn.be/stops/201175"], ["https://data.delijn.be/stops/401029", "https://data.delijn.be/stops/401030"], ["https://data.delijn.be/stops/400740", "https://data.delijn.be/stops/400741"], ["https://data.delijn.be/stops/507418", "https://data.delijn.be/stops/507419"], ["https://data.delijn.be/stops/505806", "https://data.delijn.be/stops/508595"], ["https://data.delijn.be/stops/206565", "https://data.delijn.be/stops/207566"], ["https://data.delijn.be/stops/305120", "https://data.delijn.be/stops/305121"], ["https://data.delijn.be/stops/101261", "https://data.delijn.be/stops/102887"], ["https://data.delijn.be/stops/202008", "https://data.delijn.be/stops/202009"], ["https://data.delijn.be/stops/503503", "https://data.delijn.be/stops/508872"], ["https://data.delijn.be/stops/108311", "https://data.delijn.be/stops/108752"], ["https://data.delijn.be/stops/302715", "https://data.delijn.be/stops/302784"], ["https://data.delijn.be/stops/202673", "https://data.delijn.be/stops/203673"], ["https://data.delijn.be/stops/101787", "https://data.delijn.be/stops/109192"], ["https://data.delijn.be/stops/401093", "https://data.delijn.be/stops/409814"], ["https://data.delijn.be/stops/304646", "https://data.delijn.be/stops/304648"], ["https://data.delijn.be/stops/503336", "https://data.delijn.be/stops/505629"], ["https://data.delijn.be/stops/304744", "https://data.delijn.be/stops/305880"], ["https://data.delijn.be/stops/102957", "https://data.delijn.be/stops/104001"], ["https://data.delijn.be/stops/308794", "https://data.delijn.be/stops/308795"], ["https://data.delijn.be/stops/504061", "https://data.delijn.be/stops/504490"], ["https://data.delijn.be/stops/401483", "https://data.delijn.be/stops/401883"], ["https://data.delijn.be/stops/305433", "https://data.delijn.be/stops/305434"], ["https://data.delijn.be/stops/102159", "https://data.delijn.be/stops/107613"], ["https://data.delijn.be/stops/506101", "https://data.delijn.be/stops/590330"], ["https://data.delijn.be/stops/504475", "https://data.delijn.be/stops/504716"], ["https://data.delijn.be/stops/502067", "https://data.delijn.be/stops/507067"], ["https://data.delijn.be/stops/404123", "https://data.delijn.be/stops/404131"], ["https://data.delijn.be/stops/206604", "https://data.delijn.be/stops/206741"], ["https://data.delijn.be/stops/108785", "https://data.delijn.be/stops/108786"], ["https://data.delijn.be/stops/102219", "https://data.delijn.be/stops/102222"], ["https://data.delijn.be/stops/101397", "https://data.delijn.be/stops/101554"], ["https://data.delijn.be/stops/502607", "https://data.delijn.be/stops/507608"], ["https://data.delijn.be/stops/304432", "https://data.delijn.be/stops/307698"], ["https://data.delijn.be/stops/408233", "https://data.delijn.be/stops/408249"], ["https://data.delijn.be/stops/502616", "https://data.delijn.be/stops/507040"], ["https://data.delijn.be/stops/106208", "https://data.delijn.be/stops/109904"], ["https://data.delijn.be/stops/103935", "https://data.delijn.be/stops/103940"], ["https://data.delijn.be/stops/503612", "https://data.delijn.be/stops/508607"], ["https://data.delijn.be/stops/502174", "https://data.delijn.be/stops/502180"], ["https://data.delijn.be/stops/302216", "https://data.delijn.be/stops/302233"], ["https://data.delijn.be/stops/301369", "https://data.delijn.be/stops/304695"], ["https://data.delijn.be/stops/402419", "https://data.delijn.be/stops/404469"], ["https://data.delijn.be/stops/307142", "https://data.delijn.be/stops/307248"], ["https://data.delijn.be/stops/305380", "https://data.delijn.be/stops/305385"], ["https://data.delijn.be/stops/201561", "https://data.delijn.be/stops/204997"], ["https://data.delijn.be/stops/503025", "https://data.delijn.be/stops/503677"], ["https://data.delijn.be/stops/208057", "https://data.delijn.be/stops/217004"], ["https://data.delijn.be/stops/307547", "https://data.delijn.be/stops/307578"], ["https://data.delijn.be/stops/403024", "https://data.delijn.be/stops/409334"], ["https://data.delijn.be/stops/208474", "https://data.delijn.be/stops/209474"], ["https://data.delijn.be/stops/206415", "https://data.delijn.be/stops/206963"], ["https://data.delijn.be/stops/401217", "https://data.delijn.be/stops/401388"], ["https://data.delijn.be/stops/503732", "https://data.delijn.be/stops/503733"], ["https://data.delijn.be/stops/410136", "https://data.delijn.be/stops/410138"], ["https://data.delijn.be/stops/407631", "https://data.delijn.be/stops/407633"], ["https://data.delijn.be/stops/104559", "https://data.delijn.be/stops/107486"], ["https://data.delijn.be/stops/400477", "https://data.delijn.be/stops/404674"], ["https://data.delijn.be/stops/202205", "https://data.delijn.be/stops/203768"], ["https://data.delijn.be/stops/305070", "https://data.delijn.be/stops/306952"], ["https://data.delijn.be/stops/206029", "https://data.delijn.be/stops/206031"], ["https://data.delijn.be/stops/500126", "https://data.delijn.be/stops/507813"], ["https://data.delijn.be/stops/101854", "https://data.delijn.be/stops/104839"], ["https://data.delijn.be/stops/300715", "https://data.delijn.be/stops/300734"], ["https://data.delijn.be/stops/300461", "https://data.delijn.be/stops/308298"], ["https://data.delijn.be/stops/202181", "https://data.delijn.be/stops/204598"], ["https://data.delijn.be/stops/206701", "https://data.delijn.be/stops/206978"], ["https://data.delijn.be/stops/101581", "https://data.delijn.be/stops/105728"], ["https://data.delijn.be/stops/208222", "https://data.delijn.be/stops/209218"], ["https://data.delijn.be/stops/502548", "https://data.delijn.be/stops/505022"], ["https://data.delijn.be/stops/406157", "https://data.delijn.be/stops/406224"], ["https://data.delijn.be/stops/208697", "https://data.delijn.be/stops/208698"], ["https://data.delijn.be/stops/204077", "https://data.delijn.be/stops/205066"], ["https://data.delijn.be/stops/405258", "https://data.delijn.be/stops/405259"], ["https://data.delijn.be/stops/306188", "https://data.delijn.be/stops/306293"], ["https://data.delijn.be/stops/202686", "https://data.delijn.be/stops/203041"], ["https://data.delijn.be/stops/301282", "https://data.delijn.be/stops/301907"], ["https://data.delijn.be/stops/105419", "https://data.delijn.be/stops/105421"], ["https://data.delijn.be/stops/503041", "https://data.delijn.be/stops/508013"], ["https://data.delijn.be/stops/206541", "https://data.delijn.be/stops/207540"], ["https://data.delijn.be/stops/204031", "https://data.delijn.be/stops/205437"], ["https://data.delijn.be/stops/201799", "https://data.delijn.be/stops/202124"], ["https://data.delijn.be/stops/400832", "https://data.delijn.be/stops/403571"], ["https://data.delijn.be/stops/405311", "https://data.delijn.be/stops/405407"], ["https://data.delijn.be/stops/504621", "https://data.delijn.be/stops/509621"], ["https://data.delijn.be/stops/404071", "https://data.delijn.be/stops/409282"], ["https://data.delijn.be/stops/107557", "https://data.delijn.be/stops/109440"], ["https://data.delijn.be/stops/405586", "https://data.delijn.be/stops/408936"], ["https://data.delijn.be/stops/102157", "https://data.delijn.be/stops/102713"], ["https://data.delijn.be/stops/302017", "https://data.delijn.be/stops/302032"], ["https://data.delijn.be/stops/101605", "https://data.delijn.be/stops/103515"], ["https://data.delijn.be/stops/305991", "https://data.delijn.be/stops/307234"], ["https://data.delijn.be/stops/504336", "https://data.delijn.be/stops/509339"], ["https://data.delijn.be/stops/300050", "https://data.delijn.be/stops/300051"], ["https://data.delijn.be/stops/301415", "https://data.delijn.be/stops/301420"], ["https://data.delijn.be/stops/301165", "https://data.delijn.be/stops/302875"], ["https://data.delijn.be/stops/105333", "https://data.delijn.be/stops/105336"], ["https://data.delijn.be/stops/205064", "https://data.delijn.be/stops/205342"], ["https://data.delijn.be/stops/408705", "https://data.delijn.be/stops/408768"], ["https://data.delijn.be/stops/206333", "https://data.delijn.be/stops/207707"], ["https://data.delijn.be/stops/107062", "https://data.delijn.be/stops/108228"], ["https://data.delijn.be/stops/101918", "https://data.delijn.be/stops/106997"], ["https://data.delijn.be/stops/502514", "https://data.delijn.be/stops/507516"], ["https://data.delijn.be/stops/400303", "https://data.delijn.be/stops/400441"], ["https://data.delijn.be/stops/106327", "https://data.delijn.be/stops/109390"], ["https://data.delijn.be/stops/108043", "https://data.delijn.be/stops/108045"], ["https://data.delijn.be/stops/106647", "https://data.delijn.be/stops/106649"], ["https://data.delijn.be/stops/504841", "https://data.delijn.be/stops/508256"], ["https://data.delijn.be/stops/101277", "https://data.delijn.be/stops/205489"], ["https://data.delijn.be/stops/501435", "https://data.delijn.be/stops/505712"], ["https://data.delijn.be/stops/200579", "https://data.delijn.be/stops/201579"], ["https://data.delijn.be/stops/308475", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/400724", "https://data.delijn.be/stops/400725"], ["https://data.delijn.be/stops/201815", "https://data.delijn.be/stops/209253"], ["https://data.delijn.be/stops/108872", "https://data.delijn.be/stops/109511"], ["https://data.delijn.be/stops/102691", "https://data.delijn.be/stops/105020"], ["https://data.delijn.be/stops/503779", "https://data.delijn.be/stops/505158"], ["https://data.delijn.be/stops/101854", "https://data.delijn.be/stops/108985"], ["https://data.delijn.be/stops/504612", "https://data.delijn.be/stops/509460"], ["https://data.delijn.be/stops/502093", "https://data.delijn.be/stops/502818"], ["https://data.delijn.be/stops/108069", "https://data.delijn.be/stops/108461"], ["https://data.delijn.be/stops/404113", "https://data.delijn.be/stops/404197"], ["https://data.delijn.be/stops/303400", "https://data.delijn.be/stops/304553"], ["https://data.delijn.be/stops/106040", "https://data.delijn.be/stops/106045"], ["https://data.delijn.be/stops/106050", "https://data.delijn.be/stops/108060"], ["https://data.delijn.be/stops/405440", "https://data.delijn.be/stops/302855"], ["https://data.delijn.be/stops/107286", "https://data.delijn.be/stops/107402"], ["https://data.delijn.be/stops/404563", "https://data.delijn.be/stops/406743"], ["https://data.delijn.be/stops/508902", "https://data.delijn.be/stops/508906"], ["https://data.delijn.be/stops/101002", "https://data.delijn.be/stops/107675"], ["https://data.delijn.be/stops/504637", "https://data.delijn.be/stops/505342"], ["https://data.delijn.be/stops/206311", "https://data.delijn.be/stops/207310"], ["https://data.delijn.be/stops/300435", "https://data.delijn.be/stops/307093"], ["https://data.delijn.be/stops/408184", "https://data.delijn.be/stops/408185"], ["https://data.delijn.be/stops/206774", "https://data.delijn.be/stops/209094"], ["https://data.delijn.be/stops/303157", "https://data.delijn.be/stops/303210"], ["https://data.delijn.be/stops/208268", "https://data.delijn.be/stops/209269"], ["https://data.delijn.be/stops/105119", "https://data.delijn.be/stops/105832"], ["https://data.delijn.be/stops/105926", "https://data.delijn.be/stops/106961"], ["https://data.delijn.be/stops/105669", "https://data.delijn.be/stops/105674"], ["https://data.delijn.be/stops/207068", "https://data.delijn.be/stops/207074"], ["https://data.delijn.be/stops/209345", "https://data.delijn.be/stops/218028"], ["https://data.delijn.be/stops/504090", "https://data.delijn.be/stops/504563"], ["https://data.delijn.be/stops/300760", "https://data.delijn.be/stops/300776"], ["https://data.delijn.be/stops/408752", "https://data.delijn.be/stops/408753"], ["https://data.delijn.be/stops/408176", "https://data.delijn.be/stops/408177"], ["https://data.delijn.be/stops/301638", "https://data.delijn.be/stops/301639"], ["https://data.delijn.be/stops/201862", "https://data.delijn.be/stops/202667"], ["https://data.delijn.be/stops/403701", "https://data.delijn.be/stops/403764"], ["https://data.delijn.be/stops/109203", "https://data.delijn.be/stops/109209"], ["https://data.delijn.be/stops/301354", "https://data.delijn.be/stops/304531"], ["https://data.delijn.be/stops/505174", "https://data.delijn.be/stops/509162"], ["https://data.delijn.be/stops/301241", "https://data.delijn.be/stops/308559"], ["https://data.delijn.be/stops/504325", "https://data.delijn.be/stops/509331"], ["https://data.delijn.be/stops/400922", "https://data.delijn.be/stops/400946"], ["https://data.delijn.be/stops/305651", "https://data.delijn.be/stops/308820"], ["https://data.delijn.be/stops/504464", "https://data.delijn.be/stops/504574"], ["https://data.delijn.be/stops/104510", "https://data.delijn.be/stops/105125"], ["https://data.delijn.be/stops/504060", "https://data.delijn.be/stops/509062"], ["https://data.delijn.be/stops/502665", "https://data.delijn.be/stops/507272"], ["https://data.delijn.be/stops/101591", "https://data.delijn.be/stops/106049"], ["https://data.delijn.be/stops/101725", "https://data.delijn.be/stops/103377"], ["https://data.delijn.be/stops/108301", "https://data.delijn.be/stops/109304"], ["https://data.delijn.be/stops/405394", "https://data.delijn.be/stops/409246"], ["https://data.delijn.be/stops/402378", "https://data.delijn.be/stops/402379"], ["https://data.delijn.be/stops/402510", "https://data.delijn.be/stops/402511"], ["https://data.delijn.be/stops/500602", "https://data.delijn.be/stops/505398"], ["https://data.delijn.be/stops/503311", "https://data.delijn.be/stops/504859"], ["https://data.delijn.be/stops/303541", "https://data.delijn.be/stops/305845"], ["https://data.delijn.be/stops/205696", "https://data.delijn.be/stops/205716"], ["https://data.delijn.be/stops/408604", "https://data.delijn.be/stops/408771"], ["https://data.delijn.be/stops/200420", "https://data.delijn.be/stops/201420"], ["https://data.delijn.be/stops/106139", "https://data.delijn.be/stops/106140"], ["https://data.delijn.be/stops/308113", "https://data.delijn.be/stops/308114"], ["https://data.delijn.be/stops/502417", "https://data.delijn.be/stops/507417"], ["https://data.delijn.be/stops/301531", "https://data.delijn.be/stops/304960"], ["https://data.delijn.be/stops/206451", "https://data.delijn.be/stops/206824"], ["https://data.delijn.be/stops/501250", "https://data.delijn.be/stops/506258"], ["https://data.delijn.be/stops/405580", "https://data.delijn.be/stops/405581"], ["https://data.delijn.be/stops/202821", "https://data.delijn.be/stops/203821"], ["https://data.delijn.be/stops/203840", "https://data.delijn.be/stops/208277"], ["https://data.delijn.be/stops/104601", "https://data.delijn.be/stops/105397"], ["https://data.delijn.be/stops/301662", "https://data.delijn.be/stops/302106"], ["https://data.delijn.be/stops/408134", "https://data.delijn.be/stops/408135"], ["https://data.delijn.be/stops/201516", "https://data.delijn.be/stops/201618"], ["https://data.delijn.be/stops/209193", "https://data.delijn.be/stops/209368"], ["https://data.delijn.be/stops/104128", "https://data.delijn.be/stops/107525"], ["https://data.delijn.be/stops/200774", "https://data.delijn.be/stops/208385"], ["https://data.delijn.be/stops/200815", "https://data.delijn.be/stops/201120"], ["https://data.delijn.be/stops/202343", "https://data.delijn.be/stops/202440"], ["https://data.delijn.be/stops/302603", "https://data.delijn.be/stops/302605"], ["https://data.delijn.be/stops/302229", "https://data.delijn.be/stops/302823"], ["https://data.delijn.be/stops/108111", "https://data.delijn.be/stops/108113"], ["https://data.delijn.be/stops/301009", "https://data.delijn.be/stops/301012"], ["https://data.delijn.be/stops/505633", "https://data.delijn.be/stops/508340"], ["https://data.delijn.be/stops/206336", "https://data.delijn.be/stops/206361"], ["https://data.delijn.be/stops/403441", "https://data.delijn.be/stops/410279"], ["https://data.delijn.be/stops/402972", "https://data.delijn.be/stops/404849"], ["https://data.delijn.be/stops/206662", "https://data.delijn.be/stops/209671"], ["https://data.delijn.be/stops/103160", "https://data.delijn.be/stops/406774"], ["https://data.delijn.be/stops/106606", "https://data.delijn.be/stops/107122"], ["https://data.delijn.be/stops/106301", "https://data.delijn.be/stops/109908"], ["https://data.delijn.be/stops/504557", "https://data.delijn.be/stops/505412"], ["https://data.delijn.be/stops/508027", "https://data.delijn.be/stops/508671"], ["https://data.delijn.be/stops/503180", "https://data.delijn.be/stops/504830"], ["https://data.delijn.be/stops/202431", "https://data.delijn.be/stops/203432"], ["https://data.delijn.be/stops/300709", "https://data.delijn.be/stops/300715"], ["https://data.delijn.be/stops/207770", "https://data.delijn.be/stops/207771"], ["https://data.delijn.be/stops/504398", "https://data.delijn.be/stops/504403"], ["https://data.delijn.be/stops/404286", "https://data.delijn.be/stops/409426"], ["https://data.delijn.be/stops/305594", "https://data.delijn.be/stops/305599"], ["https://data.delijn.be/stops/403468", "https://data.delijn.be/stops/410061"], ["https://data.delijn.be/stops/104465", "https://data.delijn.be/stops/104470"], ["https://data.delijn.be/stops/202661", "https://data.delijn.be/stops/203661"], ["https://data.delijn.be/stops/401041", "https://data.delijn.be/stops/401121"], ["https://data.delijn.be/stops/406112", "https://data.delijn.be/stops/406117"], ["https://data.delijn.be/stops/300961", "https://data.delijn.be/stops/302244"], ["https://data.delijn.be/stops/504979", "https://data.delijn.be/stops/505290"], ["https://data.delijn.be/stops/409424", "https://data.delijn.be/stops/409425"], ["https://data.delijn.be/stops/305377", "https://data.delijn.be/stops/305378"], ["https://data.delijn.be/stops/209517", "https://data.delijn.be/stops/209701"], ["https://data.delijn.be/stops/104781", "https://data.delijn.be/stops/104783"], ["https://data.delijn.be/stops/101472", "https://data.delijn.be/stops/109602"], ["https://data.delijn.be/stops/103528", "https://data.delijn.be/stops/103532"], ["https://data.delijn.be/stops/405442", "https://data.delijn.be/stops/408670"], ["https://data.delijn.be/stops/208453", "https://data.delijn.be/stops/209709"], ["https://data.delijn.be/stops/400264", "https://data.delijn.be/stops/400955"], ["https://data.delijn.be/stops/502422", "https://data.delijn.be/stops/507422"], ["https://data.delijn.be/stops/404081", "https://data.delijn.be/stops/404089"], ["https://data.delijn.be/stops/203856", "https://data.delijn.be/stops/208723"], ["https://data.delijn.be/stops/501042", "https://data.delijn.be/stops/506041"], ["https://data.delijn.be/stops/206038", "https://data.delijn.be/stops/207038"], ["https://data.delijn.be/stops/403622", "https://data.delijn.be/stops/403631"], ["https://data.delijn.be/stops/208151", "https://data.delijn.be/stops/209147"], ["https://data.delijn.be/stops/504099", "https://data.delijn.be/stops/509099"], ["https://data.delijn.be/stops/403922", "https://data.delijn.be/stops/405945"], ["https://data.delijn.be/stops/301648", "https://data.delijn.be/stops/301892"], ["https://data.delijn.be/stops/208168", "https://data.delijn.be/stops/209168"], ["https://data.delijn.be/stops/210060", "https://data.delijn.be/stops/211061"], ["https://data.delijn.be/stops/102415", "https://data.delijn.be/stops/105565"], ["https://data.delijn.be/stops/301450", "https://data.delijn.be/stops/301456"], ["https://data.delijn.be/stops/304070", "https://data.delijn.be/stops/304114"], ["https://data.delijn.be/stops/405936", "https://data.delijn.be/stops/405937"], ["https://data.delijn.be/stops/401009", "https://data.delijn.be/stops/403796"], ["https://data.delijn.be/stops/408441", "https://data.delijn.be/stops/408442"], ["https://data.delijn.be/stops/406218", "https://data.delijn.be/stops/409407"], ["https://data.delijn.be/stops/303659", "https://data.delijn.be/stops/307688"], ["https://data.delijn.be/stops/505134", "https://data.delijn.be/stops/505296"], ["https://data.delijn.be/stops/108300", "https://data.delijn.be/stops/108315"], ["https://data.delijn.be/stops/105466", "https://data.delijn.be/stops/105666"], ["https://data.delijn.be/stops/505568", "https://data.delijn.be/stops/508792"], ["https://data.delijn.be/stops/106794", "https://data.delijn.be/stops/106796"], ["https://data.delijn.be/stops/306863", "https://data.delijn.be/stops/307354"], ["https://data.delijn.be/stops/406053", "https://data.delijn.be/stops/409278"], ["https://data.delijn.be/stops/300015", "https://data.delijn.be/stops/300017"], ["https://data.delijn.be/stops/400765", "https://data.delijn.be/stops/400772"], ["https://data.delijn.be/stops/401045", "https://data.delijn.be/stops/401053"], ["https://data.delijn.be/stops/105160", "https://data.delijn.be/stops/105340"], ["https://data.delijn.be/stops/503007", "https://data.delijn.be/stops/508007"], ["https://data.delijn.be/stops/300156", "https://data.delijn.be/stops/300158"], ["https://data.delijn.be/stops/208078", "https://data.delijn.be/stops/208520"], ["https://data.delijn.be/stops/300208", "https://data.delijn.be/stops/300230"], ["https://data.delijn.be/stops/202289", "https://data.delijn.be/stops/203294"], ["https://data.delijn.be/stops/205971", "https://data.delijn.be/stops/205972"], ["https://data.delijn.be/stops/201910", "https://data.delijn.be/stops/202528"], ["https://data.delijn.be/stops/102187", "https://data.delijn.be/stops/102323"], ["https://data.delijn.be/stops/104928", "https://data.delijn.be/stops/104934"], ["https://data.delijn.be/stops/206305", "https://data.delijn.be/stops/207305"], ["https://data.delijn.be/stops/500957", "https://data.delijn.be/stops/500958"], ["https://data.delijn.be/stops/104561", "https://data.delijn.be/stops/104562"], ["https://data.delijn.be/stops/501222", "https://data.delijn.be/stops/506211"], ["https://data.delijn.be/stops/401964", "https://data.delijn.be/stops/401979"], ["https://data.delijn.be/stops/402936", "https://data.delijn.be/stops/403962"], ["https://data.delijn.be/stops/103317", "https://data.delijn.be/stops/103747"], ["https://data.delijn.be/stops/305697", "https://data.delijn.be/stops/305706"], ["https://data.delijn.be/stops/108488", "https://data.delijn.be/stops/306599"], ["https://data.delijn.be/stops/207438", "https://data.delijn.be/stops/209685"], ["https://data.delijn.be/stops/502440", "https://data.delijn.be/stops/507440"], ["https://data.delijn.be/stops/505088", "https://data.delijn.be/stops/507240"], ["https://data.delijn.be/stops/408077", "https://data.delijn.be/stops/408080"], ["https://data.delijn.be/stops/102401", "https://data.delijn.be/stops/103101"], ["https://data.delijn.be/stops/404871", "https://data.delijn.be/stops/405545"], ["https://data.delijn.be/stops/503828", "https://data.delijn.be/stops/505969"], ["https://data.delijn.be/stops/405901", "https://data.delijn.be/stops/405989"], ["https://data.delijn.be/stops/303475", "https://data.delijn.be/stops/303499"], ["https://data.delijn.be/stops/101320", "https://data.delijn.be/stops/102030"], ["https://data.delijn.be/stops/203471", "https://data.delijn.be/stops/203472"], ["https://data.delijn.be/stops/206307", "https://data.delijn.be/stops/207391"], ["https://data.delijn.be/stops/202056", "https://data.delijn.be/stops/203056"], ["https://data.delijn.be/stops/200514", "https://data.delijn.be/stops/201151"], ["https://data.delijn.be/stops/203018", "https://data.delijn.be/stops/203655"], ["https://data.delijn.be/stops/206880", "https://data.delijn.be/stops/207731"], ["https://data.delijn.be/stops/108566", "https://data.delijn.be/stops/108989"], ["https://data.delijn.be/stops/202499", "https://data.delijn.be/stops/204100"], ["https://data.delijn.be/stops/408316", "https://data.delijn.be/stops/408323"], ["https://data.delijn.be/stops/302846", "https://data.delijn.be/stops/303325"], ["https://data.delijn.be/stops/408577", "https://data.delijn.be/stops/408639"], ["https://data.delijn.be/stops/301606", "https://data.delijn.be/stops/304518"], ["https://data.delijn.be/stops/302763", "https://data.delijn.be/stops/302784"], ["https://data.delijn.be/stops/205412", "https://data.delijn.be/stops/205427"], ["https://data.delijn.be/stops/409278", "https://data.delijn.be/stops/409303"], ["https://data.delijn.be/stops/202612", "https://data.delijn.be/stops/203610"], ["https://data.delijn.be/stops/503110", "https://data.delijn.be/stops/508110"], ["https://data.delijn.be/stops/403459", "https://data.delijn.be/stops/407464"], ["https://data.delijn.be/stops/304578", "https://data.delijn.be/stops/304654"], ["https://data.delijn.be/stops/101305", "https://data.delijn.be/stops/102926"], ["https://data.delijn.be/stops/502008", "https://data.delijn.be/stops/507008"], ["https://data.delijn.be/stops/503292", "https://data.delijn.be/stops/505283"], ["https://data.delijn.be/stops/106518", "https://data.delijn.be/stops/107099"], ["https://data.delijn.be/stops/402499", "https://data.delijn.be/stops/402501"], ["https://data.delijn.be/stops/104813", "https://data.delijn.be/stops/105163"], ["https://data.delijn.be/stops/503799", "https://data.delijn.be/stops/503800"], ["https://data.delijn.be/stops/507384", "https://data.delijn.be/stops/507398"], ["https://data.delijn.be/stops/105440", "https://data.delijn.be/stops/105715"], ["https://data.delijn.be/stops/409264", "https://data.delijn.be/stops/409285"], ["https://data.delijn.be/stops/108847", "https://data.delijn.be/stops/108862"], ["https://data.delijn.be/stops/109849", "https://data.delijn.be/stops/109850"], ["https://data.delijn.be/stops/400217", "https://data.delijn.be/stops/400241"], ["https://data.delijn.be/stops/400829", "https://data.delijn.be/stops/400883"], ["https://data.delijn.be/stops/206878", "https://data.delijn.be/stops/206879"], ["https://data.delijn.be/stops/208574", "https://data.delijn.be/stops/307311"], ["https://data.delijn.be/stops/201566", "https://data.delijn.be/stops/201680"], ["https://data.delijn.be/stops/503887", "https://data.delijn.be/stops/505158"], ["https://data.delijn.be/stops/400790", "https://data.delijn.be/stops/409613"], ["https://data.delijn.be/stops/103700", "https://data.delijn.be/stops/103701"], ["https://data.delijn.be/stops/300417", "https://data.delijn.be/stops/300418"], ["https://data.delijn.be/stops/103613", "https://data.delijn.be/stops/103614"], ["https://data.delijn.be/stops/105058", "https://data.delijn.be/stops/105059"], ["https://data.delijn.be/stops/105429", "https://data.delijn.be/stops/105433"], ["https://data.delijn.be/stops/502256", "https://data.delijn.be/stops/502703"], ["https://data.delijn.be/stops/207313", "https://data.delijn.be/stops/207314"], ["https://data.delijn.be/stops/203683", "https://data.delijn.be/stops/203728"], ["https://data.delijn.be/stops/306695", "https://data.delijn.be/stops/308783"], ["https://data.delijn.be/stops/501461", "https://data.delijn.be/stops/501533"], ["https://data.delijn.be/stops/201454", "https://data.delijn.be/stops/201553"], ["https://data.delijn.be/stops/404171", "https://data.delijn.be/stops/404189"], ["https://data.delijn.be/stops/206700", "https://data.delijn.be/stops/207955"], ["https://data.delijn.be/stops/304057", "https://data.delijn.be/stops/304079"], ["https://data.delijn.be/stops/200355", "https://data.delijn.be/stops/201388"], ["https://data.delijn.be/stops/405169", "https://data.delijn.be/stops/405170"], ["https://data.delijn.be/stops/106241", "https://data.delijn.be/stops/107234"], ["https://data.delijn.be/stops/404636", "https://data.delijn.be/stops/406959"], ["https://data.delijn.be/stops/400079", "https://data.delijn.be/stops/405130"], ["https://data.delijn.be/stops/200636", "https://data.delijn.be/stops/201940"], ["https://data.delijn.be/stops/202636", "https://data.delijn.be/stops/203635"], ["https://data.delijn.be/stops/204061", "https://data.delijn.be/stops/205323"], ["https://data.delijn.be/stops/503785", "https://data.delijn.be/stops/508785"], ["https://data.delijn.be/stops/504355", "https://data.delijn.be/stops/509355"], ["https://data.delijn.be/stops/109082", "https://data.delijn.be/stops/109311"], ["https://data.delijn.be/stops/108401", "https://data.delijn.be/stops/302548"], ["https://data.delijn.be/stops/407638", "https://data.delijn.be/stops/409249"], ["https://data.delijn.be/stops/400770", "https://data.delijn.be/stops/400771"], ["https://data.delijn.be/stops/200051", "https://data.delijn.be/stops/201892"], ["https://data.delijn.be/stops/302533", "https://data.delijn.be/stops/308617"], ["https://data.delijn.be/stops/208790", "https://data.delijn.be/stops/209362"], ["https://data.delijn.be/stops/300328", "https://data.delijn.be/stops/300334"], ["https://data.delijn.be/stops/104465", "https://data.delijn.be/stops/104655"], ["https://data.delijn.be/stops/509282", "https://data.delijn.be/stops/509285"], ["https://data.delijn.be/stops/302490", "https://data.delijn.be/stops/302501"], ["https://data.delijn.be/stops/400484", "https://data.delijn.be/stops/400485"], ["https://data.delijn.be/stops/302061", "https://data.delijn.be/stops/302276"], ["https://data.delijn.be/stops/300025", "https://data.delijn.be/stops/308638"], ["https://data.delijn.be/stops/206697", "https://data.delijn.be/stops/207697"], ["https://data.delijn.be/stops/103023", "https://data.delijn.be/stops/108636"], ["https://data.delijn.be/stops/204048", "https://data.delijn.be/stops/204049"], ["https://data.delijn.be/stops/403209", "https://data.delijn.be/stops/403408"], ["https://data.delijn.be/stops/304410", "https://data.delijn.be/stops/307397"], ["https://data.delijn.be/stops/300057", "https://data.delijn.be/stops/307734"], ["https://data.delijn.be/stops/407567", "https://data.delijn.be/stops/407901"], ["https://data.delijn.be/stops/202427", "https://data.delijn.be/stops/203462"], ["https://data.delijn.be/stops/301377", "https://data.delijn.be/stops/301378"], ["https://data.delijn.be/stops/501393", "https://data.delijn.be/stops/507249"], ["https://data.delijn.be/stops/305458", "https://data.delijn.be/stops/308109"], ["https://data.delijn.be/stops/302524", "https://data.delijn.be/stops/308886"], ["https://data.delijn.be/stops/508109", "https://data.delijn.be/stops/508562"], ["https://data.delijn.be/stops/209603", "https://data.delijn.be/stops/307596"], ["https://data.delijn.be/stops/106134", "https://data.delijn.be/stops/106180"], ["https://data.delijn.be/stops/302800", "https://data.delijn.be/stops/302801"], ["https://data.delijn.be/stops/405025", "https://data.delijn.be/stops/405106"], ["https://data.delijn.be/stops/404502", "https://data.delijn.be/stops/404547"], ["https://data.delijn.be/stops/300307", "https://data.delijn.be/stops/306270"], ["https://data.delijn.be/stops/501118", "https://data.delijn.be/stops/506209"], ["https://data.delijn.be/stops/101227", "https://data.delijn.be/stops/101228"], ["https://data.delijn.be/stops/505658", "https://data.delijn.be/stops/505761"], ["https://data.delijn.be/stops/501640", "https://data.delijn.be/stops/506671"], ["https://data.delijn.be/stops/501327", "https://data.delijn.be/stops/501565"], ["https://data.delijn.be/stops/504945", "https://data.delijn.be/stops/507191"], ["https://data.delijn.be/stops/101077", "https://data.delijn.be/stops/107153"], ["https://data.delijn.be/stops/103651", "https://data.delijn.be/stops/104405"], ["https://data.delijn.be/stops/301219", "https://data.delijn.be/stops/306715"], ["https://data.delijn.be/stops/201930", "https://data.delijn.be/stops/203471"], ["https://data.delijn.be/stops/405473", "https://data.delijn.be/stops/406687"], ["https://data.delijn.be/stops/103604", "https://data.delijn.be/stops/108922"], ["https://data.delijn.be/stops/406628", "https://data.delijn.be/stops/406642"], ["https://data.delijn.be/stops/409580", "https://data.delijn.be/stops/409587"], ["https://data.delijn.be/stops/206218", "https://data.delijn.be/stops/206489"], ["https://data.delijn.be/stops/102286", "https://data.delijn.be/stops/103314"], ["https://data.delijn.be/stops/503195", "https://data.delijn.be/stops/508198"], ["https://data.delijn.be/stops/106202", "https://data.delijn.be/stops/106203"], ["https://data.delijn.be/stops/303653", "https://data.delijn.be/stops/304877"], ["https://data.delijn.be/stops/308414", "https://data.delijn.be/stops/308426"], ["https://data.delijn.be/stops/408220", "https://data.delijn.be/stops/408222"], ["https://data.delijn.be/stops/208072", "https://data.delijn.be/stops/208073"], ["https://data.delijn.be/stops/508226", "https://data.delijn.be/stops/508595"], ["https://data.delijn.be/stops/200903", "https://data.delijn.be/stops/203105"], ["https://data.delijn.be/stops/403051", "https://data.delijn.be/stops/403292"], ["https://data.delijn.be/stops/105014", "https://data.delijn.be/stops/106830"], ["https://data.delijn.be/stops/106520", "https://data.delijn.be/stops/106521"], ["https://data.delijn.be/stops/502679", "https://data.delijn.be/stops/507679"], ["https://data.delijn.be/stops/509059", "https://data.delijn.be/stops/509520"], ["https://data.delijn.be/stops/104659", "https://data.delijn.be/stops/107971"], ["https://data.delijn.be/stops/402754", "https://data.delijn.be/stops/402755"], ["https://data.delijn.be/stops/208459", "https://data.delijn.be/stops/209513"], ["https://data.delijn.be/stops/302002", "https://data.delijn.be/stops/302046"], ["https://data.delijn.be/stops/304396", "https://data.delijn.be/stops/308057"], ["https://data.delijn.be/stops/402386", "https://data.delijn.be/stops/402392"], ["https://data.delijn.be/stops/404726", "https://data.delijn.be/stops/408842"], ["https://data.delijn.be/stops/104469", "https://data.delijn.be/stops/104574"], ["https://data.delijn.be/stops/108954", "https://data.delijn.be/stops/108956"], ["https://data.delijn.be/stops/302183", "https://data.delijn.be/stops/307114"], ["https://data.delijn.be/stops/400824", "https://data.delijn.be/stops/403572"], ["https://data.delijn.be/stops/103474", "https://data.delijn.be/stops/103477"], ["https://data.delijn.be/stops/305384", "https://data.delijn.be/stops/305386"], ["https://data.delijn.be/stops/408713", "https://data.delijn.be/stops/408728"], ["https://data.delijn.be/stops/208453", "https://data.delijn.be/stops/209453"], ["https://data.delijn.be/stops/105538", "https://data.delijn.be/stops/105542"], ["https://data.delijn.be/stops/201176", "https://data.delijn.be/stops/211112"], ["https://data.delijn.be/stops/204476", "https://data.delijn.be/stops/205476"], ["https://data.delijn.be/stops/102531", "https://data.delijn.be/stops/408338"], ["https://data.delijn.be/stops/205161", "https://data.delijn.be/stops/207280"], ["https://data.delijn.be/stops/501157", "https://data.delijn.be/stops/501161"], ["https://data.delijn.be/stops/504065", "https://data.delijn.be/stops/505110"], ["https://data.delijn.be/stops/301648", "https://data.delijn.be/stops/306301"], ["https://data.delijn.be/stops/305054", "https://data.delijn.be/stops/305180"], ["https://data.delijn.be/stops/207794", "https://data.delijn.be/stops/208761"], ["https://data.delijn.be/stops/405900", "https://data.delijn.be/stops/405907"], ["https://data.delijn.be/stops/201374", "https://data.delijn.be/stops/201984"], ["https://data.delijn.be/stops/201913", "https://data.delijn.be/stops/203509"], ["https://data.delijn.be/stops/206968", "https://data.delijn.be/stops/208710"], ["https://data.delijn.be/stops/504044", "https://data.delijn.be/stops/509047"], ["https://data.delijn.be/stops/307243", "https://data.delijn.be/stops/307250"], ["https://data.delijn.be/stops/401547", "https://data.delijn.be/stops/401964"], ["https://data.delijn.be/stops/304230", "https://data.delijn.be/stops/304686"], ["https://data.delijn.be/stops/207630", "https://data.delijn.be/stops/207631"], ["https://data.delijn.be/stops/407590", "https://data.delijn.be/stops/407659"], ["https://data.delijn.be/stops/504036", "https://data.delijn.be/stops/505113"], ["https://data.delijn.be/stops/302297", "https://data.delijn.be/stops/303296"], ["https://data.delijn.be/stops/202130", "https://data.delijn.be/stops/203276"], ["https://data.delijn.be/stops/200971", "https://data.delijn.be/stops/206764"], ["https://data.delijn.be/stops/402004", "https://data.delijn.be/stops/406895"], ["https://data.delijn.be/stops/200592", "https://data.delijn.be/stops/201314"], ["https://data.delijn.be/stops/504787", "https://data.delijn.be/stops/504790"], ["https://data.delijn.be/stops/403736", "https://data.delijn.be/stops/403740"], ["https://data.delijn.be/stops/503559", "https://data.delijn.be/stops/503993"], ["https://data.delijn.be/stops/406694", "https://data.delijn.be/stops/409759"], ["https://data.delijn.be/stops/102493", "https://data.delijn.be/stops/400028"], ["https://data.delijn.be/stops/303016", "https://data.delijn.be/stops/303094"], ["https://data.delijn.be/stops/502293", "https://data.delijn.be/stops/507293"], ["https://data.delijn.be/stops/102653", "https://data.delijn.be/stops/206697"], ["https://data.delijn.be/stops/307147", "https://data.delijn.be/stops/307893"], ["https://data.delijn.be/stops/208287", "https://data.delijn.be/stops/208288"], ["https://data.delijn.be/stops/208561", "https://data.delijn.be/stops/209561"], ["https://data.delijn.be/stops/106747", "https://data.delijn.be/stops/109775"], ["https://data.delijn.be/stops/200239", "https://data.delijn.be/stops/200374"], ["https://data.delijn.be/stops/503689", "https://data.delijn.be/stops/508866"], ["https://data.delijn.be/stops/108632", "https://data.delijn.be/stops/109671"], ["https://data.delijn.be/stops/400061", "https://data.delijn.be/stops/400090"], ["https://data.delijn.be/stops/101579", "https://data.delijn.be/stops/105733"], ["https://data.delijn.be/stops/506032", "https://data.delijn.be/stops/506334"], ["https://data.delijn.be/stops/301061", "https://data.delijn.be/stops/301062"], ["https://data.delijn.be/stops/306773", "https://data.delijn.be/stops/306774"], ["https://data.delijn.be/stops/301405", "https://data.delijn.be/stops/305530"], ["https://data.delijn.be/stops/204993", "https://data.delijn.be/stops/208809"], ["https://data.delijn.be/stops/207112", "https://data.delijn.be/stops/207906"], ["https://data.delijn.be/stops/407602", "https://data.delijn.be/stops/407603"], ["https://data.delijn.be/stops/209316", "https://data.delijn.be/stops/209773"], ["https://data.delijn.be/stops/308481", "https://data.delijn.be/stops/308483"], ["https://data.delijn.be/stops/303351", "https://data.delijn.be/stops/307032"], ["https://data.delijn.be/stops/104950", "https://data.delijn.be/stops/105765"], ["https://data.delijn.be/stops/407839", "https://data.delijn.be/stops/408012"], ["https://data.delijn.be/stops/406813", "https://data.delijn.be/stops/409463"], ["https://data.delijn.be/stops/206302", "https://data.delijn.be/stops/207302"], ["https://data.delijn.be/stops/505385", "https://data.delijn.be/stops/508974"], ["https://data.delijn.be/stops/206296", "https://data.delijn.be/stops/207158"], ["https://data.delijn.be/stops/206274", "https://data.delijn.be/stops/207274"], ["https://data.delijn.be/stops/106122", "https://data.delijn.be/stops/106124"], ["https://data.delijn.be/stops/108917", "https://data.delijn.be/stops/109411"], ["https://data.delijn.be/stops/101669", "https://data.delijn.be/stops/406842"], ["https://data.delijn.be/stops/503399", "https://data.delijn.be/stops/509764"], ["https://data.delijn.be/stops/203181", "https://data.delijn.be/stops/203182"], ["https://data.delijn.be/stops/502384", "https://data.delijn.be/stops/507518"], ["https://data.delijn.be/stops/107636", "https://data.delijn.be/stops/108078"], ["https://data.delijn.be/stops/501480", "https://data.delijn.be/stops/506330"], ["https://data.delijn.be/stops/301425", "https://data.delijn.be/stops/308935"], ["https://data.delijn.be/stops/305744", "https://data.delijn.be/stops/305748"], ["https://data.delijn.be/stops/301900", "https://data.delijn.be/stops/304691"], ["https://data.delijn.be/stops/408278", "https://data.delijn.be/stops/408375"], ["https://data.delijn.be/stops/105093", "https://data.delijn.be/stops/105094"], ["https://data.delijn.be/stops/305640", "https://data.delijn.be/stops/305641"], ["https://data.delijn.be/stops/108673", "https://data.delijn.be/stops/109859"], ["https://data.delijn.be/stops/308174", "https://data.delijn.be/stops/308175"], ["https://data.delijn.be/stops/202546", "https://data.delijn.be/stops/203546"], ["https://data.delijn.be/stops/407506", "https://data.delijn.be/stops/407507"], ["https://data.delijn.be/stops/403905", "https://data.delijn.be/stops/404073"], ["https://data.delijn.be/stops/300136", "https://data.delijn.be/stops/300145"], ["https://data.delijn.be/stops/301430", "https://data.delijn.be/stops/307799"], ["https://data.delijn.be/stops/201165", "https://data.delijn.be/stops/203152"], ["https://data.delijn.be/stops/300027", "https://data.delijn.be/stops/307729"], ["https://data.delijn.be/stops/106183", "https://data.delijn.be/stops/107437"], ["https://data.delijn.be/stops/302147", "https://data.delijn.be/stops/307465"], ["https://data.delijn.be/stops/407826", "https://data.delijn.be/stops/407981"], ["https://data.delijn.be/stops/301585", "https://data.delijn.be/stops/301587"], ["https://data.delijn.be/stops/408096", "https://data.delijn.be/stops/408107"], ["https://data.delijn.be/stops/405502", "https://data.delijn.be/stops/410165"], ["https://data.delijn.be/stops/400559", "https://data.delijn.be/stops/407042"], ["https://data.delijn.be/stops/303773", "https://data.delijn.be/stops/303807"], ["https://data.delijn.be/stops/206121", "https://data.delijn.be/stops/206477"], ["https://data.delijn.be/stops/105156", "https://data.delijn.be/stops/105158"], ["https://data.delijn.be/stops/102747", "https://data.delijn.be/stops/103934"], ["https://data.delijn.be/stops/404292", "https://data.delijn.be/stops/406134"], ["https://data.delijn.be/stops/102632", "https://data.delijn.be/stops/107049"], ["https://data.delijn.be/stops/206751", "https://data.delijn.be/stops/208479"], ["https://data.delijn.be/stops/405149", "https://data.delijn.be/stops/405286"], ["https://data.delijn.be/stops/101209", "https://data.delijn.be/stops/107842"], ["https://data.delijn.be/stops/401033", "https://data.delijn.be/stops/406587"], ["https://data.delijn.be/stops/408906", "https://data.delijn.be/stops/408907"], ["https://data.delijn.be/stops/300501", "https://data.delijn.be/stops/302867"], ["https://data.delijn.be/stops/107618", "https://data.delijn.be/stops/108095"], ["https://data.delijn.be/stops/409095", "https://data.delijn.be/stops/409224"], ["https://data.delijn.be/stops/201389", "https://data.delijn.be/stops/201570"], ["https://data.delijn.be/stops/200648", "https://data.delijn.be/stops/201648"], ["https://data.delijn.be/stops/108054", "https://data.delijn.be/stops/307903"], ["https://data.delijn.be/stops/508604", "https://data.delijn.be/stops/508613"], ["https://data.delijn.be/stops/507698", "https://data.delijn.be/stops/509822"], ["https://data.delijn.be/stops/204832", "https://data.delijn.be/stops/205077"], ["https://data.delijn.be/stops/501361", "https://data.delijn.be/stops/505722"], ["https://data.delijn.be/stops/304889", "https://data.delijn.be/stops/306709"], ["https://data.delijn.be/stops/208314", "https://data.delijn.be/stops/209788"], ["https://data.delijn.be/stops/302808", "https://data.delijn.be/stops/305511"], ["https://data.delijn.be/stops/200749", "https://data.delijn.be/stops/201749"], ["https://data.delijn.be/stops/504051", "https://data.delijn.be/stops/507229"], ["https://data.delijn.be/stops/206813", "https://data.delijn.be/stops/207197"], ["https://data.delijn.be/stops/204552", "https://data.delijn.be/stops/205552"], ["https://data.delijn.be/stops/201118", "https://data.delijn.be/stops/201119"], ["https://data.delijn.be/stops/304926", "https://data.delijn.be/stops/304927"], ["https://data.delijn.be/stops/204102", "https://data.delijn.be/stops/204585"], ["https://data.delijn.be/stops/505087", "https://data.delijn.be/stops/505561"], ["https://data.delijn.be/stops/301563", "https://data.delijn.be/stops/301595"], ["https://data.delijn.be/stops/500994", "https://data.delijn.be/stops/509053"], ["https://data.delijn.be/stops/405326", "https://data.delijn.be/stops/405371"], ["https://data.delijn.be/stops/103684", "https://data.delijn.be/stops/106318"], ["https://data.delijn.be/stops/503749", "https://data.delijn.be/stops/508749"], ["https://data.delijn.be/stops/505247", "https://data.delijn.be/stops/505315"], ["https://data.delijn.be/stops/502365", "https://data.delijn.be/stops/502797"], ["https://data.delijn.be/stops/304415", "https://data.delijn.be/stops/307359"], ["https://data.delijn.be/stops/509474", "https://data.delijn.be/stops/509479"], ["https://data.delijn.be/stops/103550", "https://data.delijn.be/stops/105280"], ["https://data.delijn.be/stops/406041", "https://data.delijn.be/stops/406049"], ["https://data.delijn.be/stops/505339", "https://data.delijn.be/stops/508001"], ["https://data.delijn.be/stops/304965", "https://data.delijn.be/stops/304969"], ["https://data.delijn.be/stops/306387", "https://data.delijn.be/stops/307197"], ["https://data.delijn.be/stops/407198", "https://data.delijn.be/stops/407598"], ["https://data.delijn.be/stops/300001", "https://data.delijn.be/stops/306878"], ["https://data.delijn.be/stops/202256", "https://data.delijn.be/stops/203255"], ["https://data.delijn.be/stops/401787", "https://data.delijn.be/stops/406048"], ["https://data.delijn.be/stops/204419", "https://data.delijn.be/stops/205466"], ["https://data.delijn.be/stops/204684", "https://data.delijn.be/stops/205678"], ["https://data.delijn.be/stops/503453", "https://data.delijn.be/stops/508453"], ["https://data.delijn.be/stops/505562", "https://data.delijn.be/stops/508638"], ["https://data.delijn.be/stops/405288", "https://data.delijn.be/stops/406157"], ["https://data.delijn.be/stops/408052", "https://data.delijn.be/stops/408053"], ["https://data.delijn.be/stops/400596", "https://data.delijn.be/stops/400597"], ["https://data.delijn.be/stops/102907", "https://data.delijn.be/stops/104286"], ["https://data.delijn.be/stops/101530", "https://data.delijn.be/stops/102085"], ["https://data.delijn.be/stops/504285", "https://data.delijn.be/stops/509285"], ["https://data.delijn.be/stops/204054", "https://data.delijn.be/stops/204703"], ["https://data.delijn.be/stops/202459", "https://data.delijn.be/stops/202460"], ["https://data.delijn.be/stops/102980", "https://data.delijn.be/stops/103105"], ["https://data.delijn.be/stops/400222", "https://data.delijn.be/stops/401865"], ["https://data.delijn.be/stops/409075", "https://data.delijn.be/stops/409220"], ["https://data.delijn.be/stops/200067", "https://data.delijn.be/stops/201067"], ["https://data.delijn.be/stops/303663", "https://data.delijn.be/stops/304949"], ["https://data.delijn.be/stops/305622", "https://data.delijn.be/stops/305766"], ["https://data.delijn.be/stops/206291", "https://data.delijn.be/stops/207239"], ["https://data.delijn.be/stops/105316", "https://data.delijn.be/stops/106000"], ["https://data.delijn.be/stops/206706", "https://data.delijn.be/stops/207974"], ["https://data.delijn.be/stops/106631", "https://data.delijn.be/stops/106633"], ["https://data.delijn.be/stops/407052", "https://data.delijn.be/stops/407057"], ["https://data.delijn.be/stops/101790", "https://data.delijn.be/stops/103875"], ["https://data.delijn.be/stops/401188", "https://data.delijn.be/stops/410175"], ["https://data.delijn.be/stops/403338", "https://data.delijn.be/stops/403522"], ["https://data.delijn.be/stops/101704", "https://data.delijn.be/stops/102756"], ["https://data.delijn.be/stops/307619", "https://data.delijn.be/stops/307621"], ["https://data.delijn.be/stops/107452", "https://data.delijn.be/stops/109645"], ["https://data.delijn.be/stops/104669", "https://data.delijn.be/stops/104677"], ["https://data.delijn.be/stops/504741", "https://data.delijn.be/stops/504855"], ["https://data.delijn.be/stops/410115", "https://data.delijn.be/stops/410327"], ["https://data.delijn.be/stops/305286", "https://data.delijn.be/stops/305289"], ["https://data.delijn.be/stops/404444", "https://data.delijn.be/stops/404447"], ["https://data.delijn.be/stops/200944", "https://data.delijn.be/stops/203683"], ["https://data.delijn.be/stops/101516", "https://data.delijn.be/stops/102901"], ["https://data.delijn.be/stops/404476", "https://data.delijn.be/stops/410155"], ["https://data.delijn.be/stops/107086", "https://data.delijn.be/stops/107087"], ["https://data.delijn.be/stops/502151", "https://data.delijn.be/stops/507151"], ["https://data.delijn.be/stops/402779", "https://data.delijn.be/stops/402782"], ["https://data.delijn.be/stops/208862", "https://data.delijn.be/stops/211120"], ["https://data.delijn.be/stops/404504", "https://data.delijn.be/stops/404505"], ["https://data.delijn.be/stops/206673", "https://data.delijn.be/stops/208171"], ["https://data.delijn.be/stops/400850", "https://data.delijn.be/stops/409623"], ["https://data.delijn.be/stops/106608", "https://data.delijn.be/stops/106610"], ["https://data.delijn.be/stops/409256", "https://data.delijn.be/stops/409302"], ["https://data.delijn.be/stops/507609", "https://data.delijn.be/stops/507610"], ["https://data.delijn.be/stops/103574", "https://data.delijn.be/stops/106612"], ["https://data.delijn.be/stops/206527", "https://data.delijn.be/stops/207555"], ["https://data.delijn.be/stops/208103", "https://data.delijn.be/stops/208136"], ["https://data.delijn.be/stops/303035", "https://data.delijn.be/stops/303036"], ["https://data.delijn.be/stops/109499", "https://data.delijn.be/stops/306810"], ["https://data.delijn.be/stops/401867", "https://data.delijn.be/stops/410354"], ["https://data.delijn.be/stops/206871", "https://data.delijn.be/stops/209363"], ["https://data.delijn.be/stops/104822", "https://data.delijn.be/stops/108509"], ["https://data.delijn.be/stops/406072", "https://data.delijn.be/stops/406074"], ["https://data.delijn.be/stops/405538", "https://data.delijn.be/stops/405540"], ["https://data.delijn.be/stops/300218", "https://data.delijn.be/stops/300219"], ["https://data.delijn.be/stops/301859", "https://data.delijn.be/stops/301862"], ["https://data.delijn.be/stops/405795", "https://data.delijn.be/stops/409436"], ["https://data.delijn.be/stops/301045", "https://data.delijn.be/stops/304810"], ["https://data.delijn.be/stops/404735", "https://data.delijn.be/stops/404750"], ["https://data.delijn.be/stops/306594", "https://data.delijn.be/stops/306596"], ["https://data.delijn.be/stops/109245", "https://data.delijn.be/stops/109267"], ["https://data.delijn.be/stops/206695", "https://data.delijn.be/stops/207954"], ["https://data.delijn.be/stops/101829", "https://data.delijn.be/stops/106998"], ["https://data.delijn.be/stops/405061", "https://data.delijn.be/stops/405115"], ["https://data.delijn.be/stops/400490", "https://data.delijn.be/stops/400493"], ["https://data.delijn.be/stops/400756", "https://data.delijn.be/stops/400845"], ["https://data.delijn.be/stops/407188", "https://data.delijn.be/stops/407195"], ["https://data.delijn.be/stops/308164", "https://data.delijn.be/stops/308230"], ["https://data.delijn.be/stops/401883", "https://data.delijn.be/stops/407348"], ["https://data.delijn.be/stops/303968", "https://data.delijn.be/stops/303972"], ["https://data.delijn.be/stops/405068", "https://data.delijn.be/stops/405072"], ["https://data.delijn.be/stops/206131", "https://data.delijn.be/stops/207136"], ["https://data.delijn.be/stops/505935", "https://data.delijn.be/stops/508322"], ["https://data.delijn.be/stops/501127", "https://data.delijn.be/stops/501132"], ["https://data.delijn.be/stops/300251", "https://data.delijn.be/stops/304568"], ["https://data.delijn.be/stops/502356", "https://data.delijn.be/stops/505014"], ["https://data.delijn.be/stops/208573", "https://data.delijn.be/stops/208598"], ["https://data.delijn.be/stops/206890", "https://data.delijn.be/stops/207912"], ["https://data.delijn.be/stops/407604", "https://data.delijn.be/stops/407610"], ["https://data.delijn.be/stops/408921", "https://data.delijn.be/stops/408925"], ["https://data.delijn.be/stops/102152", "https://data.delijn.be/stops/108330"], ["https://data.delijn.be/stops/307591", "https://data.delijn.be/stops/307601"], ["https://data.delijn.be/stops/104391", "https://data.delijn.be/stops/104870"], ["https://data.delijn.be/stops/504214", "https://data.delijn.be/stops/509059"], ["https://data.delijn.be/stops/206358", "https://data.delijn.be/stops/207714"], ["https://data.delijn.be/stops/402860", "https://data.delijn.be/stops/406702"], ["https://data.delijn.be/stops/205407", "https://data.delijn.be/stops/205413"], ["https://data.delijn.be/stops/306299", "https://data.delijn.be/stops/306373"], ["https://data.delijn.be/stops/403040", "https://data.delijn.be/stops/403085"], ["https://data.delijn.be/stops/400967", "https://data.delijn.be/stops/401251"], ["https://data.delijn.be/stops/306052", "https://data.delijn.be/stops/308676"], ["https://data.delijn.be/stops/304001", "https://data.delijn.be/stops/308644"], ["https://data.delijn.be/stops/504079", "https://data.delijn.be/stops/504531"], ["https://data.delijn.be/stops/402354", "https://data.delijn.be/stops/402464"], ["https://data.delijn.be/stops/402807", "https://data.delijn.be/stops/409039"], ["https://data.delijn.be/stops/303642", "https://data.delijn.be/stops/305603"], ["https://data.delijn.be/stops/201917", "https://data.delijn.be/stops/201919"], ["https://data.delijn.be/stops/202344", "https://data.delijn.be/stops/203344"], ["https://data.delijn.be/stops/107235", "https://data.delijn.be/stops/108290"], ["https://data.delijn.be/stops/204779", "https://data.delijn.be/stops/204780"], ["https://data.delijn.be/stops/202947", "https://data.delijn.be/stops/206554"], ["https://data.delijn.be/stops/101486", "https://data.delijn.be/stops/108744"], ["https://data.delijn.be/stops/201932", "https://data.delijn.be/stops/203512"], ["https://data.delijn.be/stops/305277", "https://data.delijn.be/stops/305278"], ["https://data.delijn.be/stops/104646", "https://data.delijn.be/stops/104647"], ["https://data.delijn.be/stops/301698", "https://data.delijn.be/stops/303891"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/302882"], ["https://data.delijn.be/stops/300599", "https://data.delijn.be/stops/300608"], ["https://data.delijn.be/stops/206420", "https://data.delijn.be/stops/216012"], ["https://data.delijn.be/stops/204640", "https://data.delijn.be/stops/205639"], ["https://data.delijn.be/stops/408229", "https://data.delijn.be/stops/408290"], ["https://data.delijn.be/stops/500951", "https://data.delijn.be/stops/504173"], ["https://data.delijn.be/stops/302063", "https://data.delijn.be/stops/308812"], ["https://data.delijn.be/stops/104306", "https://data.delijn.be/stops/109747"], ["https://data.delijn.be/stops/502124", "https://data.delijn.be/stops/507752"], ["https://data.delijn.be/stops/108484", "https://data.delijn.be/stops/306596"], ["https://data.delijn.be/stops/107174", "https://data.delijn.be/stops/107178"], ["https://data.delijn.be/stops/200539", "https://data.delijn.be/stops/201379"], ["https://data.delijn.be/stops/104364", "https://data.delijn.be/stops/104960"], ["https://data.delijn.be/stops/109720", "https://data.delijn.be/stops/109768"], ["https://data.delijn.be/stops/305378", "https://data.delijn.be/stops/305407"], ["https://data.delijn.be/stops/305084", "https://data.delijn.be/stops/305085"], ["https://data.delijn.be/stops/504640", "https://data.delijn.be/stops/504976"], ["https://data.delijn.be/stops/509464", "https://data.delijn.be/stops/509467"], ["https://data.delijn.be/stops/408122", "https://data.delijn.be/stops/410345"], ["https://data.delijn.be/stops/303620", "https://data.delijn.be/stops/306706"], ["https://data.delijn.be/stops/208992", "https://data.delijn.be/stops/210048"], ["https://data.delijn.be/stops/501022", "https://data.delijn.be/stops/505036"], ["https://data.delijn.be/stops/408025", "https://data.delijn.be/stops/301841"], ["https://data.delijn.be/stops/502324", "https://data.delijn.be/stops/502711"], ["https://data.delijn.be/stops/303484", "https://data.delijn.be/stops/303487"], ["https://data.delijn.be/stops/106225", "https://data.delijn.be/stops/106226"], ["https://data.delijn.be/stops/307146", "https://data.delijn.be/stops/307147"], ["https://data.delijn.be/stops/502611", "https://data.delijn.be/stops/505691"], ["https://data.delijn.be/stops/402706", "https://data.delijn.be/stops/306391"], ["https://data.delijn.be/stops/504371", "https://data.delijn.be/stops/509371"], ["https://data.delijn.be/stops/206005", "https://data.delijn.be/stops/206263"], ["https://data.delijn.be/stops/103724", "https://data.delijn.be/stops/107618"], ["https://data.delijn.be/stops/304263", "https://data.delijn.be/stops/304265"], ["https://data.delijn.be/stops/501692", "https://data.delijn.be/stops/502768"], ["https://data.delijn.be/stops/404505", "https://data.delijn.be/stops/404571"], ["https://data.delijn.be/stops/501412", "https://data.delijn.be/stops/509840"], ["https://data.delijn.be/stops/408612", "https://data.delijn.be/stops/408666"], ["https://data.delijn.be/stops/107152", "https://data.delijn.be/stops/107153"], ["https://data.delijn.be/stops/106916", "https://data.delijn.be/stops/106918"], ["https://data.delijn.be/stops/302934", "https://data.delijn.be/stops/303141"], ["https://data.delijn.be/stops/106199", "https://data.delijn.be/stops/109274"], ["https://data.delijn.be/stops/400265", "https://data.delijn.be/stops/406932"], ["https://data.delijn.be/stops/404812", "https://data.delijn.be/stops/404813"], ["https://data.delijn.be/stops/300786", "https://data.delijn.be/stops/300787"], ["https://data.delijn.be/stops/304162", "https://data.delijn.be/stops/305450"], ["https://data.delijn.be/stops/401397", "https://data.delijn.be/stops/401418"], ["https://data.delijn.be/stops/101836", "https://data.delijn.be/stops/108237"], ["https://data.delijn.be/stops/206208", "https://data.delijn.be/stops/206608"], ["https://data.delijn.be/stops/200164", "https://data.delijn.be/stops/201356"], ["https://data.delijn.be/stops/104938", "https://data.delijn.be/stops/104939"], ["https://data.delijn.be/stops/301406", "https://data.delijn.be/stops/307154"], ["https://data.delijn.be/stops/501104", "https://data.delijn.be/stops/506503"], ["https://data.delijn.be/stops/201005", "https://data.delijn.be/stops/203518"], ["https://data.delijn.be/stops/103760", "https://data.delijn.be/stops/103765"], ["https://data.delijn.be/stops/105075", "https://data.delijn.be/stops/105078"], ["https://data.delijn.be/stops/507697", "https://data.delijn.be/stops/507704"], ["https://data.delijn.be/stops/106275", "https://data.delijn.be/stops/109629"], ["https://data.delijn.be/stops/304391", "https://data.delijn.be/stops/308059"], ["https://data.delijn.be/stops/304687", "https://data.delijn.be/stops/307264"], ["https://data.delijn.be/stops/306845", "https://data.delijn.be/stops/307354"], ["https://data.delijn.be/stops/101451", "https://data.delijn.be/stops/107057"], ["https://data.delijn.be/stops/505768", "https://data.delijn.be/stops/507038"], ["https://data.delijn.be/stops/101946", "https://data.delijn.be/stops/109708"], ["https://data.delijn.be/stops/306693", "https://data.delijn.be/stops/308784"], ["https://data.delijn.be/stops/302020", "https://data.delijn.be/stops/308959"], ["https://data.delijn.be/stops/402546", "https://data.delijn.be/stops/402550"], ["https://data.delijn.be/stops/504392", "https://data.delijn.be/stops/508484"], ["https://data.delijn.be/stops/103081", "https://data.delijn.be/stops/107377"], ["https://data.delijn.be/stops/503314", "https://data.delijn.be/stops/508310"], ["https://data.delijn.be/stops/301564", "https://data.delijn.be/stops/301578"], ["https://data.delijn.be/stops/107279", "https://data.delijn.be/stops/107397"], ["https://data.delijn.be/stops/505594", "https://data.delijn.be/stops/507261"], ["https://data.delijn.be/stops/204058", "https://data.delijn.be/stops/205057"], ["https://data.delijn.be/stops/400501", "https://data.delijn.be/stops/402427"], ["https://data.delijn.be/stops/101531", "https://data.delijn.be/stops/102580"], ["https://data.delijn.be/stops/407548", "https://data.delijn.be/stops/407557"], ["https://data.delijn.be/stops/200096", "https://data.delijn.be/stops/202132"], ["https://data.delijn.be/stops/204211", "https://data.delijn.be/stops/207807"], ["https://data.delijn.be/stops/401251", "https://data.delijn.be/stops/401281"], ["https://data.delijn.be/stops/207655", "https://data.delijn.be/stops/207656"], ["https://data.delijn.be/stops/405809", "https://data.delijn.be/stops/405883"], ["https://data.delijn.be/stops/503335", "https://data.delijn.be/stops/508342"], ["https://data.delijn.be/stops/403414", "https://data.delijn.be/stops/403415"], ["https://data.delijn.be/stops/201033", "https://data.delijn.be/stops/201067"], ["https://data.delijn.be/stops/206157", "https://data.delijn.be/stops/207498"], ["https://data.delijn.be/stops/302424", "https://data.delijn.be/stops/302437"], ["https://data.delijn.be/stops/303495", "https://data.delijn.be/stops/303502"], ["https://data.delijn.be/stops/503150", "https://data.delijn.be/stops/508150"], ["https://data.delijn.be/stops/300669", "https://data.delijn.be/stops/300675"], ["https://data.delijn.be/stops/300986", "https://data.delijn.be/stops/307232"], ["https://data.delijn.be/stops/505057", "https://data.delijn.be/stops/505773"], ["https://data.delijn.be/stops/103988", "https://data.delijn.be/stops/107953"], ["https://data.delijn.be/stops/408613", "https://data.delijn.be/stops/408775"], ["https://data.delijn.be/stops/301185", "https://data.delijn.be/stops/301266"], ["https://data.delijn.be/stops/401019", "https://data.delijn.be/stops/401137"], ["https://data.delijn.be/stops/405490", "https://data.delijn.be/stops/409333"], ["https://data.delijn.be/stops/304393", "https://data.delijn.be/stops/304394"], ["https://data.delijn.be/stops/501113", "https://data.delijn.be/stops/501638"], ["https://data.delijn.be/stops/301700", "https://data.delijn.be/stops/305876"], ["https://data.delijn.be/stops/104639", "https://data.delijn.be/stops/108037"], ["https://data.delijn.be/stops/403990", "https://data.delijn.be/stops/407055"], ["https://data.delijn.be/stops/302457", "https://data.delijn.be/stops/305954"], ["https://data.delijn.be/stops/300398", "https://data.delijn.be/stops/300409"], ["https://data.delijn.be/stops/301116", "https://data.delijn.be/stops/304030"], ["https://data.delijn.be/stops/202601", "https://data.delijn.be/stops/203601"], ["https://data.delijn.be/stops/301222", "https://data.delijn.be/stops/301223"], ["https://data.delijn.be/stops/404362", "https://data.delijn.be/stops/404363"], ["https://data.delijn.be/stops/301445", "https://data.delijn.be/stops/304867"], ["https://data.delijn.be/stops/501218", "https://data.delijn.be/stops/506219"], ["https://data.delijn.be/stops/201901", "https://data.delijn.be/stops/203515"], ["https://data.delijn.be/stops/508308", "https://data.delijn.be/stops/509926"], ["https://data.delijn.be/stops/504045", "https://data.delijn.be/stops/504659"], ["https://data.delijn.be/stops/409024", "https://data.delijn.be/stops/409028"], ["https://data.delijn.be/stops/505380", "https://data.delijn.be/stops/508103"], ["https://data.delijn.be/stops/102517", "https://data.delijn.be/stops/406499"], ["https://data.delijn.be/stops/202639", "https://data.delijn.be/stops/205793"], ["https://data.delijn.be/stops/302350", "https://data.delijn.be/stops/302354"], ["https://data.delijn.be/stops/504554", "https://data.delijn.be/stops/509235"], ["https://data.delijn.be/stops/403493", "https://data.delijn.be/stops/405630"], ["https://data.delijn.be/stops/410224", "https://data.delijn.be/stops/410402"], ["https://data.delijn.be/stops/304369", "https://data.delijn.be/stops/307370"], ["https://data.delijn.be/stops/108405", "https://data.delijn.be/stops/108410"], ["https://data.delijn.be/stops/307582", "https://data.delijn.be/stops/307583"], ["https://data.delijn.be/stops/106602", "https://data.delijn.be/stops/106603"], ["https://data.delijn.be/stops/404196", "https://data.delijn.be/stops/404197"], ["https://data.delijn.be/stops/208855", "https://data.delijn.be/stops/209854"], ["https://data.delijn.be/stops/305950", "https://data.delijn.be/stops/308671"], ["https://data.delijn.be/stops/200251", "https://data.delijn.be/stops/200570"], ["https://data.delijn.be/stops/404170", "https://data.delijn.be/stops/404182"], ["https://data.delijn.be/stops/108529", "https://data.delijn.be/stops/108536"], ["https://data.delijn.be/stops/401419", "https://data.delijn.be/stops/304600"], ["https://data.delijn.be/stops/104824", "https://data.delijn.be/stops/109092"], ["https://data.delijn.be/stops/206645", "https://data.delijn.be/stops/206646"], ["https://data.delijn.be/stops/503794", "https://data.delijn.be/stops/503795"], ["https://data.delijn.be/stops/400078", "https://data.delijn.be/stops/410030"], ["https://data.delijn.be/stops/308094", "https://data.delijn.be/stops/308129"], ["https://data.delijn.be/stops/502413", "https://data.delijn.be/stops/507398"], ["https://data.delijn.be/stops/501353", "https://data.delijn.be/stops/506360"], ["https://data.delijn.be/stops/401347", "https://data.delijn.be/stops/401376"], ["https://data.delijn.be/stops/218026", "https://data.delijn.be/stops/218027"], ["https://data.delijn.be/stops/306317", "https://data.delijn.be/stops/306318"], ["https://data.delijn.be/stops/502020", "https://data.delijn.be/stops/502056"], ["https://data.delijn.be/stops/301515", "https://data.delijn.be/stops/308076"], ["https://data.delijn.be/stops/400544", "https://data.delijn.be/stops/403194"], ["https://data.delijn.be/stops/407131", "https://data.delijn.be/stops/407342"], ["https://data.delijn.be/stops/206308", "https://data.delijn.be/stops/207391"], ["https://data.delijn.be/stops/302879", "https://data.delijn.be/stops/303085"], ["https://data.delijn.be/stops/502705", "https://data.delijn.be/stops/507530"], ["https://data.delijn.be/stops/307027", "https://data.delijn.be/stops/307570"], ["https://data.delijn.be/stops/504492", "https://data.delijn.be/stops/504504"], ["https://data.delijn.be/stops/507684", "https://data.delijn.be/stops/508794"], ["https://data.delijn.be/stops/201703", "https://data.delijn.be/stops/203564"], ["https://data.delijn.be/stops/503699", "https://data.delijn.be/stops/509041"], ["https://data.delijn.be/stops/405465", "https://data.delijn.be/stops/408537"], ["https://data.delijn.be/stops/305480", "https://data.delijn.be/stops/307800"], ["https://data.delijn.be/stops/108051", "https://data.delijn.be/stops/108278"], ["https://data.delijn.be/stops/306690", "https://data.delijn.be/stops/306692"], ["https://data.delijn.be/stops/502798", "https://data.delijn.be/stops/507531"], ["https://data.delijn.be/stops/304764", "https://data.delijn.be/stops/305250"], ["https://data.delijn.be/stops/107008", "https://data.delijn.be/stops/107009"], ["https://data.delijn.be/stops/301263", "https://data.delijn.be/stops/301265"], ["https://data.delijn.be/stops/201334", "https://data.delijn.be/stops/201729"], ["https://data.delijn.be/stops/303101", "https://data.delijn.be/stops/303147"], ["https://data.delijn.be/stops/302944", "https://data.delijn.be/stops/303135"], ["https://data.delijn.be/stops/403700", "https://data.delijn.be/stops/403761"], ["https://data.delijn.be/stops/101718", "https://data.delijn.be/stops/107808"], ["https://data.delijn.be/stops/409099", "https://data.delijn.be/stops/409100"], ["https://data.delijn.be/stops/208341", "https://data.delijn.be/stops/209341"], ["https://data.delijn.be/stops/504126", "https://data.delijn.be/stops/504638"], ["https://data.delijn.be/stops/206909", "https://data.delijn.be/stops/207931"], ["https://data.delijn.be/stops/204334", "https://data.delijn.be/stops/204515"], ["https://data.delijn.be/stops/303135", "https://data.delijn.be/stops/306086"], ["https://data.delijn.be/stops/508794", "https://data.delijn.be/stops/508798"], ["https://data.delijn.be/stops/502603", "https://data.delijn.be/stops/507311"], ["https://data.delijn.be/stops/407444", "https://data.delijn.be/stops/407445"], ["https://data.delijn.be/stops/300707", "https://data.delijn.be/stops/300708"], ["https://data.delijn.be/stops/503227", "https://data.delijn.be/stops/508225"], ["https://data.delijn.be/stops/206518", "https://data.delijn.be/stops/207518"], ["https://data.delijn.be/stops/403559", "https://data.delijn.be/stops/403560"], ["https://data.delijn.be/stops/301329", "https://data.delijn.be/stops/306650"], ["https://data.delijn.be/stops/403378", "https://data.delijn.be/stops/403379"], ["https://data.delijn.be/stops/106283", "https://data.delijn.be/stops/106344"], ["https://data.delijn.be/stops/301325", "https://data.delijn.be/stops/306654"], ["https://data.delijn.be/stops/200747", "https://data.delijn.be/stops/203500"], ["https://data.delijn.be/stops/505102", "https://data.delijn.be/stops/509086"], ["https://data.delijn.be/stops/404237", "https://data.delijn.be/stops/409813"], ["https://data.delijn.be/stops/303708", "https://data.delijn.be/stops/303732"], ["https://data.delijn.be/stops/105529", "https://data.delijn.be/stops/106973"], ["https://data.delijn.be/stops/201685", "https://data.delijn.be/stops/201836"], ["https://data.delijn.be/stops/304427", "https://data.delijn.be/stops/304430"], ["https://data.delijn.be/stops/108358", "https://data.delijn.be/stops/108804"], ["https://data.delijn.be/stops/403910", "https://data.delijn.be/stops/403911"], ["https://data.delijn.be/stops/405902", "https://data.delijn.be/stops/405970"], ["https://data.delijn.be/stops/201101", "https://data.delijn.be/stops/202647"], ["https://data.delijn.be/stops/408670", "https://data.delijn.be/stops/408671"], ["https://data.delijn.be/stops/303964", "https://data.delijn.be/stops/303970"], ["https://data.delijn.be/stops/405310", "https://data.delijn.be/stops/405311"], ["https://data.delijn.be/stops/105269", "https://data.delijn.be/stops/105290"], ["https://data.delijn.be/stops/503297", "https://data.delijn.be/stops/508297"], ["https://data.delijn.be/stops/501283", "https://data.delijn.be/stops/501313"], ["https://data.delijn.be/stops/403141", "https://data.delijn.be/stops/403353"], ["https://data.delijn.be/stops/200908", "https://data.delijn.be/stops/203045"], ["https://data.delijn.be/stops/400300", "https://data.delijn.be/stops/407109"], ["https://data.delijn.be/stops/305341", "https://data.delijn.be/stops/307968"], ["https://data.delijn.be/stops/108023", "https://data.delijn.be/stops/108026"], ["https://data.delijn.be/stops/409780", "https://data.delijn.be/stops/409785"], ["https://data.delijn.be/stops/304936", "https://data.delijn.be/stops/304942"], ["https://data.delijn.be/stops/302339", "https://data.delijn.be/stops/302341"], ["https://data.delijn.be/stops/501159", "https://data.delijn.be/stops/501749"], ["https://data.delijn.be/stops/102701", "https://data.delijn.be/stops/105651"], ["https://data.delijn.be/stops/303855", "https://data.delijn.be/stops/307011"], ["https://data.delijn.be/stops/101555", "https://data.delijn.be/stops/106000"], ["https://data.delijn.be/stops/302260", "https://data.delijn.be/stops/304348"], ["https://data.delijn.be/stops/501637", "https://data.delijn.be/stops/506496"], ["https://data.delijn.be/stops/108189", "https://data.delijn.be/stops/108351"], ["https://data.delijn.be/stops/108066", "https://data.delijn.be/stops/108869"], ["https://data.delijn.be/stops/208144", "https://data.delijn.be/stops/209144"], ["https://data.delijn.be/stops/402084", "https://data.delijn.be/stops/402086"], ["https://data.delijn.be/stops/101747", "https://data.delijn.be/stops/106387"], ["https://data.delijn.be/stops/202268", "https://data.delijn.be/stops/203269"], ["https://data.delijn.be/stops/504747", "https://data.delijn.be/stops/509168"], ["https://data.delijn.be/stops/408881", "https://data.delijn.be/stops/408913"], ["https://data.delijn.be/stops/201881", "https://data.delijn.be/stops/202420"], ["https://data.delijn.be/stops/504344", "https://data.delijn.be/stops/504538"], ["https://data.delijn.be/stops/403686", "https://data.delijn.be/stops/403687"], ["https://data.delijn.be/stops/301529", "https://data.delijn.be/stops/301531"], ["https://data.delijn.be/stops/305895", "https://data.delijn.be/stops/306392"], ["https://data.delijn.be/stops/300075", "https://data.delijn.be/stops/304668"], ["https://data.delijn.be/stops/206087", "https://data.delijn.be/stops/207087"], ["https://data.delijn.be/stops/204164", "https://data.delijn.be/stops/207270"], ["https://data.delijn.be/stops/101703", "https://data.delijn.be/stops/102756"], ["https://data.delijn.be/stops/400499", "https://data.delijn.be/stops/400645"], ["https://data.delijn.be/stops/307109", "https://data.delijn.be/stops/308097"], ["https://data.delijn.be/stops/400068", "https://data.delijn.be/stops/400103"], ["https://data.delijn.be/stops/101413", "https://data.delijn.be/stops/103073"], ["https://data.delijn.be/stops/208157", "https://data.delijn.be/stops/209157"], ["https://data.delijn.be/stops/504372", "https://data.delijn.be/stops/504609"], ["https://data.delijn.be/stops/204698", "https://data.delijn.be/stops/205319"], ["https://data.delijn.be/stops/102728", "https://data.delijn.be/stops/107276"], ["https://data.delijn.be/stops/102195", "https://data.delijn.be/stops/105200"], ["https://data.delijn.be/stops/306187", "https://data.delijn.be/stops/306188"], ["https://data.delijn.be/stops/106157", "https://data.delijn.be/stops/106158"], ["https://data.delijn.be/stops/504770", "https://data.delijn.be/stops/505197"], ["https://data.delijn.be/stops/101935", "https://data.delijn.be/stops/101989"], ["https://data.delijn.be/stops/204146", "https://data.delijn.be/stops/205146"], ["https://data.delijn.be/stops/502227", "https://data.delijn.be/stops/507699"], ["https://data.delijn.be/stops/406306", "https://data.delijn.be/stops/406307"], ["https://data.delijn.be/stops/300108", "https://data.delijn.be/stops/306811"], ["https://data.delijn.be/stops/302097", "https://data.delijn.be/stops/302100"], ["https://data.delijn.be/stops/508626", "https://data.delijn.be/stops/590008"], ["https://data.delijn.be/stops/306183", "https://data.delijn.be/stops/306184"], ["https://data.delijn.be/stops/400016", "https://data.delijn.be/stops/400022"], ["https://data.delijn.be/stops/200026", "https://data.delijn.be/stops/203070"], ["https://data.delijn.be/stops/106739", "https://data.delijn.be/stops/106741"], ["https://data.delijn.be/stops/203860", "https://data.delijn.be/stops/208714"], ["https://data.delijn.be/stops/505646", "https://data.delijn.be/stops/507472"], ["https://data.delijn.be/stops/103587", "https://data.delijn.be/stops/105586"], ["https://data.delijn.be/stops/303561", "https://data.delijn.be/stops/308610"], ["https://data.delijn.be/stops/308171", "https://data.delijn.be/stops/308240"], ["https://data.delijn.be/stops/403599", "https://data.delijn.be/stops/407339"], ["https://data.delijn.be/stops/407894", "https://data.delijn.be/stops/408414"], ["https://data.delijn.be/stops/301739", "https://data.delijn.be/stops/305909"], ["https://data.delijn.be/stops/102887", "https://data.delijn.be/stops/102893"], ["https://data.delijn.be/stops/208233", "https://data.delijn.be/stops/209233"], ["https://data.delijn.be/stops/301779", "https://data.delijn.be/stops/306878"], ["https://data.delijn.be/stops/202525", "https://data.delijn.be/stops/203525"], ["https://data.delijn.be/stops/504994", "https://data.delijn.be/stops/505208"], ["https://data.delijn.be/stops/104037", "https://data.delijn.be/stops/108391"], ["https://data.delijn.be/stops/404699", "https://data.delijn.be/stops/405586"], ["https://data.delijn.be/stops/407523", "https://data.delijn.be/stops/407544"], ["https://data.delijn.be/stops/208016", "https://data.delijn.be/stops/209016"], ["https://data.delijn.be/stops/204018", "https://data.delijn.be/stops/204828"], ["https://data.delijn.be/stops/502177", "https://data.delijn.be/stops/507174"], ["https://data.delijn.be/stops/509225", "https://data.delijn.be/stops/509622"], ["https://data.delijn.be/stops/101810", "https://data.delijn.be/stops/103640"], ["https://data.delijn.be/stops/506449", "https://data.delijn.be/stops/506453"], ["https://data.delijn.be/stops/206377", "https://data.delijn.be/stops/206378"], ["https://data.delijn.be/stops/305244", "https://data.delijn.be/stops/305271"], ["https://data.delijn.be/stops/405565", "https://data.delijn.be/stops/405579"], ["https://data.delijn.be/stops/304316", "https://data.delijn.be/stops/305889"], ["https://data.delijn.be/stops/302533", "https://data.delijn.be/stops/305840"], ["https://data.delijn.be/stops/509358", "https://data.delijn.be/stops/509359"], ["https://data.delijn.be/stops/501290", "https://data.delijn.be/stops/506372"], ["https://data.delijn.be/stops/206508", "https://data.delijn.be/stops/207476"], ["https://data.delijn.be/stops/504233", "https://data.delijn.be/stops/509238"], ["https://data.delijn.be/stops/304017", "https://data.delijn.be/stops/304055"], ["https://data.delijn.be/stops/202184", "https://data.delijn.be/stops/204235"], ["https://data.delijn.be/stops/408396", "https://data.delijn.be/stops/308242"], ["https://data.delijn.be/stops/400932", "https://data.delijn.be/stops/400933"], ["https://data.delijn.be/stops/403306", "https://data.delijn.be/stops/403309"], ["https://data.delijn.be/stops/408428", "https://data.delijn.be/stops/408574"], ["https://data.delijn.be/stops/301823", "https://data.delijn.be/stops/307889"], ["https://data.delijn.be/stops/503958", "https://data.delijn.be/stops/504674"], ["https://data.delijn.be/stops/105564", "https://data.delijn.be/stops/105573"], ["https://data.delijn.be/stops/102921", "https://data.delijn.be/stops/104580"], ["https://data.delijn.be/stops/101637", "https://data.delijn.be/stops/104375"], ["https://data.delijn.be/stops/404136", "https://data.delijn.be/stops/404137"], ["https://data.delijn.be/stops/304917", "https://data.delijn.be/stops/308121"], ["https://data.delijn.be/stops/218004", "https://data.delijn.be/stops/219004"], ["https://data.delijn.be/stops/206301", "https://data.delijn.be/stops/206915"], ["https://data.delijn.be/stops/403236", "https://data.delijn.be/stops/403237"], ["https://data.delijn.be/stops/205110", "https://data.delijn.be/stops/205111"], ["https://data.delijn.be/stops/509064", "https://data.delijn.be/stops/509069"], ["https://data.delijn.be/stops/205063", "https://data.delijn.be/stops/205696"], ["https://data.delijn.be/stops/500951", "https://data.delijn.be/stops/509747"], ["https://data.delijn.be/stops/102323", "https://data.delijn.be/stops/104246"], ["https://data.delijn.be/stops/106817", "https://data.delijn.be/stops/106987"], ["https://data.delijn.be/stops/208213", "https://data.delijn.be/stops/209213"], ["https://data.delijn.be/stops/504409", "https://data.delijn.be/stops/508440"], ["https://data.delijn.be/stops/307075", "https://data.delijn.be/stops/308438"], ["https://data.delijn.be/stops/305878", "https://data.delijn.be/stops/308688"], ["https://data.delijn.be/stops/208115", "https://data.delijn.be/stops/208795"], ["https://data.delijn.be/stops/302007", "https://data.delijn.be/stops/303175"], ["https://data.delijn.be/stops/303656", "https://data.delijn.be/stops/305480"], ["https://data.delijn.be/stops/103138", "https://data.delijn.be/stops/107117"], ["https://data.delijn.be/stops/206082", "https://data.delijn.be/stops/207602"], ["https://data.delijn.be/stops/300474", "https://data.delijn.be/stops/308083"], ["https://data.delijn.be/stops/300032", "https://data.delijn.be/stops/301945"], ["https://data.delijn.be/stops/501389", "https://data.delijn.be/stops/506392"], ["https://data.delijn.be/stops/200576", "https://data.delijn.be/stops/200577"], ["https://data.delijn.be/stops/101573", "https://data.delijn.be/stops/101592"], ["https://data.delijn.be/stops/404868", "https://data.delijn.be/stops/404908"], ["https://data.delijn.be/stops/503616", "https://data.delijn.be/stops/508604"], ["https://data.delijn.be/stops/103727", "https://data.delijn.be/stops/109443"], ["https://data.delijn.be/stops/409276", "https://data.delijn.be/stops/409277"], ["https://data.delijn.be/stops/501464", "https://data.delijn.be/stops/505087"], ["https://data.delijn.be/stops/505276", "https://data.delijn.be/stops/507715"], ["https://data.delijn.be/stops/502435", "https://data.delijn.be/stops/507722"], ["https://data.delijn.be/stops/402888", "https://data.delijn.be/stops/402898"], ["https://data.delijn.be/stops/107500", "https://data.delijn.be/stops/107520"], ["https://data.delijn.be/stops/301870", "https://data.delijn.be/stops/304337"], ["https://data.delijn.be/stops/207645", "https://data.delijn.be/stops/207647"], ["https://data.delijn.be/stops/206328", "https://data.delijn.be/stops/207732"], ["https://data.delijn.be/stops/109678", "https://data.delijn.be/stops/109680"], ["https://data.delijn.be/stops/208725", "https://data.delijn.be/stops/209664"], ["https://data.delijn.be/stops/300946", "https://data.delijn.be/stops/305380"], ["https://data.delijn.be/stops/408117", "https://data.delijn.be/stops/408162"], ["https://data.delijn.be/stops/400500", "https://data.delijn.be/stops/402948"], ["https://data.delijn.be/stops/302078", "https://data.delijn.be/stops/302090"], ["https://data.delijn.be/stops/408449", "https://data.delijn.be/stops/408450"], ["https://data.delijn.be/stops/301331", "https://data.delijn.be/stops/301334"], ["https://data.delijn.be/stops/200720", "https://data.delijn.be/stops/202577"], ["https://data.delijn.be/stops/300617", "https://data.delijn.be/stops/300618"], ["https://data.delijn.be/stops/302934", "https://data.delijn.be/stops/307056"], ["https://data.delijn.be/stops/403774", "https://data.delijn.be/stops/403775"], ["https://data.delijn.be/stops/504365", "https://data.delijn.be/stops/504366"], ["https://data.delijn.be/stops/205332", "https://data.delijn.be/stops/205505"], ["https://data.delijn.be/stops/504806", "https://data.delijn.be/stops/508038"], ["https://data.delijn.be/stops/201263", "https://data.delijn.be/stops/201264"], ["https://data.delijn.be/stops/404819", "https://data.delijn.be/stops/406815"], ["https://data.delijn.be/stops/504486", "https://data.delijn.be/stops/509486"], ["https://data.delijn.be/stops/507446", "https://data.delijn.be/stops/507682"], ["https://data.delijn.be/stops/203539", "https://data.delijn.be/stops/203689"], ["https://data.delijn.be/stops/202189", "https://data.delijn.be/stops/203147"], ["https://data.delijn.be/stops/400195", "https://data.delijn.be/stops/401167"], ["https://data.delijn.be/stops/501294", "https://data.delijn.be/stops/501398"], ["https://data.delijn.be/stops/302187", "https://data.delijn.be/stops/305081"], ["https://data.delijn.be/stops/502385", "https://data.delijn.be/stops/502670"], ["https://data.delijn.be/stops/201907", "https://data.delijn.be/stops/201908"], ["https://data.delijn.be/stops/105517", "https://data.delijn.be/stops/105522"], ["https://data.delijn.be/stops/301461", "https://data.delijn.be/stops/301491"], ["https://data.delijn.be/stops/405950", "https://data.delijn.be/stops/405998"], ["https://data.delijn.be/stops/403009", "https://data.delijn.be/stops/410325"], ["https://data.delijn.be/stops/206616", "https://data.delijn.be/stops/207624"], ["https://data.delijn.be/stops/300631", "https://data.delijn.be/stops/302202"], ["https://data.delijn.be/stops/201278", "https://data.delijn.be/stops/201349"], ["https://data.delijn.be/stops/402967", "https://data.delijn.be/stops/403708"], ["https://data.delijn.be/stops/300801", "https://data.delijn.be/stops/302409"], ["https://data.delijn.be/stops/305423", "https://data.delijn.be/stops/305508"], ["https://data.delijn.be/stops/306907", "https://data.delijn.be/stops/306908"], ["https://data.delijn.be/stops/504245", "https://data.delijn.be/stops/505928"], ["https://data.delijn.be/stops/303002", "https://data.delijn.be/stops/308661"], ["https://data.delijn.be/stops/305786", "https://data.delijn.be/stops/305787"], ["https://data.delijn.be/stops/101179", "https://data.delijn.be/stops/106792"], ["https://data.delijn.be/stops/503102", "https://data.delijn.be/stops/508102"], ["https://data.delijn.be/stops/405661", "https://data.delijn.be/stops/308759"], ["https://data.delijn.be/stops/408865", "https://data.delijn.be/stops/408869"], ["https://data.delijn.be/stops/300847", "https://data.delijn.be/stops/301568"], ["https://data.delijn.be/stops/101724", "https://data.delijn.be/stops/101726"], ["https://data.delijn.be/stops/105166", "https://data.delijn.be/stops/105373"], ["https://data.delijn.be/stops/504733", "https://data.delijn.be/stops/506241"], ["https://data.delijn.be/stops/303232", "https://data.delijn.be/stops/303236"], ["https://data.delijn.be/stops/206502", "https://data.delijn.be/stops/207153"], ["https://data.delijn.be/stops/302985", "https://data.delijn.be/stops/307075"], ["https://data.delijn.be/stops/405056", "https://data.delijn.be/stops/405058"], ["https://data.delijn.be/stops/204013", "https://data.delijn.be/stops/205013"], ["https://data.delijn.be/stops/404853", "https://data.delijn.be/stops/404947"], ["https://data.delijn.be/stops/401979", "https://data.delijn.be/stops/405545"], ["https://data.delijn.be/stops/200523", "https://data.delijn.be/stops/211130"], ["https://data.delijn.be/stops/101660", "https://data.delijn.be/stops/102637"], ["https://data.delijn.be/stops/303211", "https://data.delijn.be/stops/304186"], ["https://data.delijn.be/stops/400719", "https://data.delijn.be/stops/401910"], ["https://data.delijn.be/stops/303083", "https://data.delijn.be/stops/303085"], ["https://data.delijn.be/stops/501249", "https://data.delijn.be/stops/506236"], ["https://data.delijn.be/stops/201572", "https://data.delijn.be/stops/203194"], ["https://data.delijn.be/stops/201771", "https://data.delijn.be/stops/201828"], ["https://data.delijn.be/stops/504554", "https://data.delijn.be/stops/509563"], ["https://data.delijn.be/stops/101138", "https://data.delijn.be/stops/108415"], ["https://data.delijn.be/stops/504846", "https://data.delijn.be/stops/505000"], ["https://data.delijn.be/stops/505351", "https://data.delijn.be/stops/505723"], ["https://data.delijn.be/stops/202432", "https://data.delijn.be/stops/210087"], ["https://data.delijn.be/stops/202668", "https://data.delijn.be/stops/203668"], ["https://data.delijn.be/stops/301433", "https://data.delijn.be/stops/301436"], ["https://data.delijn.be/stops/504428", "https://data.delijn.be/stops/508297"], ["https://data.delijn.be/stops/301777", "https://data.delijn.be/stops/308430"], ["https://data.delijn.be/stops/401438", "https://data.delijn.be/stops/401446"], ["https://data.delijn.be/stops/202969", "https://data.delijn.be/stops/203164"], ["https://data.delijn.be/stops/504793", "https://data.delijn.be/stops/508524"], ["https://data.delijn.be/stops/407221", "https://data.delijn.be/stops/407364"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/208508"], ["https://data.delijn.be/stops/105969", "https://data.delijn.be/stops/107140"], ["https://data.delijn.be/stops/204194", "https://data.delijn.be/stops/204230"], ["https://data.delijn.be/stops/401312", "https://data.delijn.be/stops/401368"], ["https://data.delijn.be/stops/304287", "https://data.delijn.be/stops/304295"], ["https://data.delijn.be/stops/108475", "https://data.delijn.be/stops/108984"], ["https://data.delijn.be/stops/108417", "https://data.delijn.be/stops/109575"], ["https://data.delijn.be/stops/106111", "https://data.delijn.be/stops/106113"], ["https://data.delijn.be/stops/507038", "https://data.delijn.be/stops/507049"], ["https://data.delijn.be/stops/206683", "https://data.delijn.be/stops/206708"], ["https://data.delijn.be/stops/501118", "https://data.delijn.be/stops/506118"], ["https://data.delijn.be/stops/502928", "https://data.delijn.be/stops/509825"], ["https://data.delijn.be/stops/302002", "https://data.delijn.be/stops/306379"], ["https://data.delijn.be/stops/205099", "https://data.delijn.be/stops/205324"], ["https://data.delijn.be/stops/307693", "https://data.delijn.be/stops/307696"], ["https://data.delijn.be/stops/105131", "https://data.delijn.be/stops/105198"], ["https://data.delijn.be/stops/405620", "https://data.delijn.be/stops/405623"], ["https://data.delijn.be/stops/206108", "https://data.delijn.be/stops/207108"], ["https://data.delijn.be/stops/101984", "https://data.delijn.be/stops/109255"], ["https://data.delijn.be/stops/405566", "https://data.delijn.be/stops/405567"], ["https://data.delijn.be/stops/205386", "https://data.delijn.be/stops/205387"], ["https://data.delijn.be/stops/200188", "https://data.delijn.be/stops/200502"], ["https://data.delijn.be/stops/106454", "https://data.delijn.be/stops/106458"], ["https://data.delijn.be/stops/400407", "https://data.delijn.be/stops/400412"], ["https://data.delijn.be/stops/503499", "https://data.delijn.be/stops/508875"], ["https://data.delijn.be/stops/104014", "https://data.delijn.be/stops/104026"], ["https://data.delijn.be/stops/102757", "https://data.delijn.be/stops/107061"], ["https://data.delijn.be/stops/305156", "https://data.delijn.be/stops/305161"], ["https://data.delijn.be/stops/200605", "https://data.delijn.be/stops/201605"], ["https://data.delijn.be/stops/300330", "https://data.delijn.be/stops/300340"], ["https://data.delijn.be/stops/202522", "https://data.delijn.be/stops/203522"], ["https://data.delijn.be/stops/507332", "https://data.delijn.be/stops/507365"], ["https://data.delijn.be/stops/103994", "https://data.delijn.be/stops/108389"], ["https://data.delijn.be/stops/301351", "https://data.delijn.be/stops/303641"], ["https://data.delijn.be/stops/504649", "https://data.delijn.be/stops/509640"], ["https://data.delijn.be/stops/504687", "https://data.delijn.be/stops/504767"], ["https://data.delijn.be/stops/105110", "https://data.delijn.be/stops/105510"], ["https://data.delijn.be/stops/401356", "https://data.delijn.be/stops/401359"], ["https://data.delijn.be/stops/405497", "https://data.delijn.be/stops/405585"], ["https://data.delijn.be/stops/202464", "https://data.delijn.be/stops/203467"], ["https://data.delijn.be/stops/402936", "https://data.delijn.be/stops/403909"], ["https://data.delijn.be/stops/202303", "https://data.delijn.be/stops/202304"], ["https://data.delijn.be/stops/301001", "https://data.delijn.be/stops/303650"], ["https://data.delijn.be/stops/301129", "https://data.delijn.be/stops/307636"], ["https://data.delijn.be/stops/405558", "https://data.delijn.be/stops/405559"], ["https://data.delijn.be/stops/503048", "https://data.delijn.be/stops/508048"], ["https://data.delijn.be/stops/504525", "https://data.delijn.be/stops/504599"], ["https://data.delijn.be/stops/503828", "https://data.delijn.be/stops/508828"], ["https://data.delijn.be/stops/505586", "https://data.delijn.be/stops/507003"], ["https://data.delijn.be/stops/300720", "https://data.delijn.be/stops/306366"], ["https://data.delijn.be/stops/502320", "https://data.delijn.be/stops/505508"], ["https://data.delijn.be/stops/200687", "https://data.delijn.be/stops/200693"], ["https://data.delijn.be/stops/104403", "https://data.delijn.be/stops/204622"], ["https://data.delijn.be/stops/205992", "https://data.delijn.be/stops/208799"], ["https://data.delijn.be/stops/209268", "https://data.delijn.be/stops/209270"], ["https://data.delijn.be/stops/503741", "https://data.delijn.be/stops/508741"], ["https://data.delijn.be/stops/505026", "https://data.delijn.be/stops/505833"], ["https://data.delijn.be/stops/503803", "https://data.delijn.be/stops/509587"], ["https://data.delijn.be/stops/408821", "https://data.delijn.be/stops/408831"], ["https://data.delijn.be/stops/200262", "https://data.delijn.be/stops/200263"], ["https://data.delijn.be/stops/505143", "https://data.delijn.be/stops/509053"], ["https://data.delijn.be/stops/208140", "https://data.delijn.be/stops/209140"], ["https://data.delijn.be/stops/403053", "https://data.delijn.be/stops/403315"], ["https://data.delijn.be/stops/407674", "https://data.delijn.be/stops/407675"], ["https://data.delijn.be/stops/204225", "https://data.delijn.be/stops/205224"], ["https://data.delijn.be/stops/303695", "https://data.delijn.be/stops/303748"], ["https://data.delijn.be/stops/102171", "https://data.delijn.be/stops/102840"], ["https://data.delijn.be/stops/509647", "https://data.delijn.be/stops/509648"], ["https://data.delijn.be/stops/405208", "https://data.delijn.be/stops/405254"], ["https://data.delijn.be/stops/105984", "https://data.delijn.be/stops/105985"], ["https://data.delijn.be/stops/409318", "https://data.delijn.be/stops/409319"], ["https://data.delijn.be/stops/505067", "https://data.delijn.be/stops/505697"], ["https://data.delijn.be/stops/408585", "https://data.delijn.be/stops/408587"], ["https://data.delijn.be/stops/304387", "https://data.delijn.be/stops/306874"], ["https://data.delijn.be/stops/204194", "https://data.delijn.be/stops/205234"], ["https://data.delijn.be/stops/206215", "https://data.delijn.be/stops/206821"], ["https://data.delijn.be/stops/402133", "https://data.delijn.be/stops/406188"], ["https://data.delijn.be/stops/101969", "https://data.delijn.be/stops/108212"], ["https://data.delijn.be/stops/405259", "https://data.delijn.be/stops/405274"], ["https://data.delijn.be/stops/101653", "https://data.delijn.be/stops/101654"], ["https://data.delijn.be/stops/303174", "https://data.delijn.be/stops/303175"], ["https://data.delijn.be/stops/103473", "https://data.delijn.be/stops/108269"], ["https://data.delijn.be/stops/502047", "https://data.delijn.be/stops/502620"], ["https://data.delijn.be/stops/204397", "https://data.delijn.be/stops/205772"], ["https://data.delijn.be/stops/106193", "https://data.delijn.be/stops/107442"], ["https://data.delijn.be/stops/200093", "https://data.delijn.be/stops/204357"], ["https://data.delijn.be/stops/302077", "https://data.delijn.be/stops/303516"], ["https://data.delijn.be/stops/201833", "https://data.delijn.be/stops/204987"], ["https://data.delijn.be/stops/503755", "https://data.delijn.be/stops/504964"], ["https://data.delijn.be/stops/409350", "https://data.delijn.be/stops/409368"], ["https://data.delijn.be/stops/400776", "https://data.delijn.be/stops/406675"], ["https://data.delijn.be/stops/407835", "https://data.delijn.be/stops/407949"], ["https://data.delijn.be/stops/501388", "https://data.delijn.be/stops/506104"], ["https://data.delijn.be/stops/304112", "https://data.delijn.be/stops/304113"], ["https://data.delijn.be/stops/404238", "https://data.delijn.be/stops/405653"], ["https://data.delijn.be/stops/301462", "https://data.delijn.be/stops/301463"], ["https://data.delijn.be/stops/405548", "https://data.delijn.be/stops/405549"], ["https://data.delijn.be/stops/409573", "https://data.delijn.be/stops/409575"], ["https://data.delijn.be/stops/502634", "https://data.delijn.be/stops/507445"], ["https://data.delijn.be/stops/202823", "https://data.delijn.be/stops/203920"], ["https://data.delijn.be/stops/203387", "https://data.delijn.be/stops/203388"], ["https://data.delijn.be/stops/301152", "https://data.delijn.be/stops/308811"], ["https://data.delijn.be/stops/506064", "https://data.delijn.be/stops/506133"], ["https://data.delijn.be/stops/300084", "https://data.delijn.be/stops/300137"], ["https://data.delijn.be/stops/204320", "https://data.delijn.be/stops/205318"], ["https://data.delijn.be/stops/304797", "https://data.delijn.be/stops/306646"], ["https://data.delijn.be/stops/506386", "https://data.delijn.be/stops/506502"], ["https://data.delijn.be/stops/503182", "https://data.delijn.be/stops/505778"], ["https://data.delijn.be/stops/407979", "https://data.delijn.be/stops/408308"], ["https://data.delijn.be/stops/504101", "https://data.delijn.be/stops/504202"], ["https://data.delijn.be/stops/400694", "https://data.delijn.be/stops/400859"], ["https://data.delijn.be/stops/200111", "https://data.delijn.be/stops/201111"], ["https://data.delijn.be/stops/106243", "https://data.delijn.be/stops/106246"], ["https://data.delijn.be/stops/203482", "https://data.delijn.be/stops/206933"], ["https://data.delijn.be/stops/301468", "https://data.delijn.be/stops/306307"], ["https://data.delijn.be/stops/103262", "https://data.delijn.be/stops/204446"], ["https://data.delijn.be/stops/101355", "https://data.delijn.be/stops/101670"], ["https://data.delijn.be/stops/503427", "https://data.delijn.be/stops/509939"], ["https://data.delijn.be/stops/403482", "https://data.delijn.be/stops/403590"], ["https://data.delijn.be/stops/206672", "https://data.delijn.be/stops/208633"], ["https://data.delijn.be/stops/206212", "https://data.delijn.be/stops/206814"], ["https://data.delijn.be/stops/302913", "https://data.delijn.be/stops/302914"], ["https://data.delijn.be/stops/401783", "https://data.delijn.be/stops/401799"], ["https://data.delijn.be/stops/303641", "https://data.delijn.be/stops/304521"], ["https://data.delijn.be/stops/406290", "https://data.delijn.be/stops/406416"], ["https://data.delijn.be/stops/204330", "https://data.delijn.be/stops/205539"], ["https://data.delijn.be/stops/507236", "https://data.delijn.be/stops/507240"], ["https://data.delijn.be/stops/206683", "https://data.delijn.be/stops/207606"], ["https://data.delijn.be/stops/407952", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/201115", "https://data.delijn.be/stops/210103"], ["https://data.delijn.be/stops/201885", "https://data.delijn.be/stops/210005"], ["https://data.delijn.be/stops/302387", "https://data.delijn.be/stops/302393"], ["https://data.delijn.be/stops/206652", "https://data.delijn.be/stops/207651"], ["https://data.delijn.be/stops/400739", "https://data.delijn.be/stops/404261"], ["https://data.delijn.be/stops/200406", "https://data.delijn.be/stops/201508"], ["https://data.delijn.be/stops/503260", "https://data.delijn.be/stops/503476"], ["https://data.delijn.be/stops/103961", "https://data.delijn.be/stops/108168"], ["https://data.delijn.be/stops/203369", "https://data.delijn.be/stops/203372"], ["https://data.delijn.be/stops/405760", "https://data.delijn.be/stops/405761"], ["https://data.delijn.be/stops/103472", "https://data.delijn.be/stops/103619"], ["https://data.delijn.be/stops/406002", "https://data.delijn.be/stops/407914"], ["https://data.delijn.be/stops/200731", "https://data.delijn.be/stops/203590"], ["https://data.delijn.be/stops/101366", "https://data.delijn.be/stops/103241"], ["https://data.delijn.be/stops/105759", "https://data.delijn.be/stops/109810"], ["https://data.delijn.be/stops/102547", "https://data.delijn.be/stops/405019"], ["https://data.delijn.be/stops/303124", "https://data.delijn.be/stops/307075"], ["https://data.delijn.be/stops/103045", "https://data.delijn.be/stops/107120"], ["https://data.delijn.be/stops/301897", "https://data.delijn.be/stops/305727"], ["https://data.delijn.be/stops/402701", "https://data.delijn.be/stops/405994"], ["https://data.delijn.be/stops/106873", "https://data.delijn.be/stops/106875"], ["https://data.delijn.be/stops/507257", "https://data.delijn.be/stops/507263"], ["https://data.delijn.be/stops/200107", "https://data.delijn.be/stops/201106"], ["https://data.delijn.be/stops/102251", "https://data.delijn.be/stops/102409"], ["https://data.delijn.be/stops/505275", "https://data.delijn.be/stops/508013"], ["https://data.delijn.be/stops/305000", "https://data.delijn.be/stops/305023"], ["https://data.delijn.be/stops/404546", "https://data.delijn.be/stops/404574"], ["https://data.delijn.be/stops/101178", "https://data.delijn.be/stops/106741"], ["https://data.delijn.be/stops/400695", "https://data.delijn.be/stops/400785"], ["https://data.delijn.be/stops/505248", "https://data.delijn.be/stops/505906"], ["https://data.delijn.be/stops/501768", "https://data.delijn.be/stops/502467"], ["https://data.delijn.be/stops/307687", "https://data.delijn.be/stops/307688"], ["https://data.delijn.be/stops/305112", "https://data.delijn.be/stops/305113"], ["https://data.delijn.be/stops/104398", "https://data.delijn.be/stops/104399"], ["https://data.delijn.be/stops/206633", "https://data.delijn.be/stops/206636"], ["https://data.delijn.be/stops/308147", "https://data.delijn.be/stops/308149"], ["https://data.delijn.be/stops/202330", "https://data.delijn.be/stops/203330"], ["https://data.delijn.be/stops/407867", "https://data.delijn.be/stops/408178"], ["https://data.delijn.be/stops/504160", "https://data.delijn.be/stops/504194"], ["https://data.delijn.be/stops/502363", "https://data.delijn.be/stops/502512"], ["https://data.delijn.be/stops/304096", "https://data.delijn.be/stops/304103"], ["https://data.delijn.be/stops/300722", "https://data.delijn.be/stops/300724"], ["https://data.delijn.be/stops/107611", "https://data.delijn.be/stops/107728"], ["https://data.delijn.be/stops/207630", "https://data.delijn.be/stops/208571"], ["https://data.delijn.be/stops/210850", "https://data.delijn.be/stops/211849"], ["https://data.delijn.be/stops/501079", "https://data.delijn.be/stops/501771"], ["https://data.delijn.be/stops/200593", "https://data.delijn.be/stops/201593"], ["https://data.delijn.be/stops/105338", "https://data.delijn.be/stops/109618"], ["https://data.delijn.be/stops/202023", "https://data.delijn.be/stops/203023"], ["https://data.delijn.be/stops/507176", "https://data.delijn.be/stops/507182"], ["https://data.delijn.be/stops/105427", "https://data.delijn.be/stops/109980"], ["https://data.delijn.be/stops/201196", "https://data.delijn.be/stops/202756"], ["https://data.delijn.be/stops/101979", "https://data.delijn.be/stops/108288"], ["https://data.delijn.be/stops/103217", "https://data.delijn.be/stops/103591"], ["https://data.delijn.be/stops/403300", "https://data.delijn.be/stops/403360"], ["https://data.delijn.be/stops/300018", "https://data.delijn.be/stops/301134"], ["https://data.delijn.be/stops/208037", "https://data.delijn.be/stops/209019"], ["https://data.delijn.be/stops/103294", "https://data.delijn.be/stops/105029"], ["https://data.delijn.be/stops/400146", "https://data.delijn.be/stops/409199"], ["https://data.delijn.be/stops/208556", "https://data.delijn.be/stops/208558"], ["https://data.delijn.be/stops/406768", "https://data.delijn.be/stops/407109"], ["https://data.delijn.be/stops/306396", "https://data.delijn.be/stops/306398"], ["https://data.delijn.be/stops/208838", "https://data.delijn.be/stops/209209"], ["https://data.delijn.be/stops/209150", "https://data.delijn.be/stops/209521"], ["https://data.delijn.be/stops/206355", "https://data.delijn.be/stops/207347"], ["https://data.delijn.be/stops/406955", "https://data.delijn.be/stops/406958"], ["https://data.delijn.be/stops/307792", "https://data.delijn.be/stops/333234"], ["https://data.delijn.be/stops/503408", "https://data.delijn.be/stops/503445"], ["https://data.delijn.be/stops/508634", "https://data.delijn.be/stops/508640"], ["https://data.delijn.be/stops/203185", "https://data.delijn.be/stops/205104"], ["https://data.delijn.be/stops/206027", "https://data.delijn.be/stops/207720"], ["https://data.delijn.be/stops/505560", "https://data.delijn.be/stops/507330"], ["https://data.delijn.be/stops/405856", "https://data.delijn.be/stops/409715"], ["https://data.delijn.be/stops/403370", "https://data.delijn.be/stops/410281"], ["https://data.delijn.be/stops/107004", "https://data.delijn.be/stops/107007"], ["https://data.delijn.be/stops/507305", "https://data.delijn.be/stops/507312"], ["https://data.delijn.be/stops/501400", "https://data.delijn.be/stops/506397"], ["https://data.delijn.be/stops/203795", "https://data.delijn.be/stops/203796"], ["https://data.delijn.be/stops/304018", "https://data.delijn.be/stops/304019"], ["https://data.delijn.be/stops/506015", "https://data.delijn.be/stops/506618"], ["https://data.delijn.be/stops/403054", "https://data.delijn.be/stops/410324"], ["https://data.delijn.be/stops/505633", "https://data.delijn.be/stops/505634"], ["https://data.delijn.be/stops/204925", "https://data.delijn.be/stops/218935"], ["https://data.delijn.be/stops/300414", "https://data.delijn.be/stops/300603"], ["https://data.delijn.be/stops/105898", "https://data.delijn.be/stops/105899"], ["https://data.delijn.be/stops/401179", "https://data.delijn.be/stops/401188"], ["https://data.delijn.be/stops/105372", "https://data.delijn.be/stops/107503"], ["https://data.delijn.be/stops/306876", "https://data.delijn.be/stops/307501"], ["https://data.delijn.be/stops/303253", "https://data.delijn.be/stops/305661"], ["https://data.delijn.be/stops/101442", "https://data.delijn.be/stops/101664"], ["https://data.delijn.be/stops/404324", "https://data.delijn.be/stops/404329"], ["https://data.delijn.be/stops/202673", "https://data.delijn.be/stops/211035"], ["https://data.delijn.be/stops/206351", "https://data.delijn.be/stops/207376"], ["https://data.delijn.be/stops/307936", "https://data.delijn.be/stops/308779"], ["https://data.delijn.be/stops/108026", "https://data.delijn.be/stops/109635"], ["https://data.delijn.be/stops/301330", "https://data.delijn.be/stops/301359"], ["https://data.delijn.be/stops/505920", "https://data.delijn.be/stops/508919"], ["https://data.delijn.be/stops/301496", "https://data.delijn.be/stops/308704"], ["https://data.delijn.be/stops/508402", "https://data.delijn.be/stops/509770"], ["https://data.delijn.be/stops/507364", "https://data.delijn.be/stops/507713"], ["https://data.delijn.be/stops/201334", "https://data.delijn.be/stops/204920"], ["https://data.delijn.be/stops/200448", "https://data.delijn.be/stops/201448"], ["https://data.delijn.be/stops/201132", "https://data.delijn.be/stops/205556"], ["https://data.delijn.be/stops/303636", "https://data.delijn.be/stops/307883"], ["https://data.delijn.be/stops/404793", "https://data.delijn.be/stops/404801"], ["https://data.delijn.be/stops/108367", "https://data.delijn.be/stops/108368"], ["https://data.delijn.be/stops/200435", "https://data.delijn.be/stops/201783"], ["https://data.delijn.be/stops/507060", "https://data.delijn.be/stops/507707"], ["https://data.delijn.be/stops/300002", "https://data.delijn.be/stops/301779"], ["https://data.delijn.be/stops/206068", "https://data.delijn.be/stops/207415"], ["https://data.delijn.be/stops/303035", "https://data.delijn.be/stops/303113"], ["https://data.delijn.be/stops/408204", "https://data.delijn.be/stops/408380"], ["https://data.delijn.be/stops/107917", "https://data.delijn.be/stops/207742"], ["https://data.delijn.be/stops/503526", "https://data.delijn.be/stops/508526"], ["https://data.delijn.be/stops/301980", "https://data.delijn.be/stops/304582"], ["https://data.delijn.be/stops/106980", "https://data.delijn.be/stops/106982"], ["https://data.delijn.be/stops/401365", "https://data.delijn.be/stops/401375"], ["https://data.delijn.be/stops/202844", "https://data.delijn.be/stops/203910"], ["https://data.delijn.be/stops/301601", "https://data.delijn.be/stops/306260"], ["https://data.delijn.be/stops/204972", "https://data.delijn.be/stops/207067"], ["https://data.delijn.be/stops/400861", "https://data.delijn.be/stops/400867"], ["https://data.delijn.be/stops/101653", "https://data.delijn.be/stops/107918"], ["https://data.delijn.be/stops/202620", "https://data.delijn.be/stops/203619"], ["https://data.delijn.be/stops/105415", "https://data.delijn.be/stops/105420"], ["https://data.delijn.be/stops/406451", "https://data.delijn.be/stops/406456"], ["https://data.delijn.be/stops/201719", "https://data.delijn.be/stops/211025"], ["https://data.delijn.be/stops/304849", "https://data.delijn.be/stops/308525"], ["https://data.delijn.be/stops/200747", "https://data.delijn.be/stops/202244"], ["https://data.delijn.be/stops/102416", "https://data.delijn.be/stops/108464"], ["https://data.delijn.be/stops/209658", "https://data.delijn.be/stops/209659"], ["https://data.delijn.be/stops/402176", "https://data.delijn.be/stops/402471"], ["https://data.delijn.be/stops/505082", "https://data.delijn.be/stops/507685"], ["https://data.delijn.be/stops/206603", "https://data.delijn.be/stops/307771"], ["https://data.delijn.be/stops/300697", "https://data.delijn.be/stops/306939"], ["https://data.delijn.be/stops/303892", "https://data.delijn.be/stops/305576"], ["https://data.delijn.be/stops/102457", "https://data.delijn.be/stops/103376"], ["https://data.delijn.be/stops/502596", "https://data.delijn.be/stops/507596"], ["https://data.delijn.be/stops/402170", "https://data.delijn.be/stops/402206"], ["https://data.delijn.be/stops/504650", "https://data.delijn.be/stops/504651"], ["https://data.delijn.be/stops/208190", "https://data.delijn.be/stops/209190"], ["https://data.delijn.be/stops/209270", "https://data.delijn.be/stops/219006"], ["https://data.delijn.be/stops/205972", "https://data.delijn.be/stops/207067"], ["https://data.delijn.be/stops/300175", "https://data.delijn.be/stops/300176"], ["https://data.delijn.be/stops/502143", "https://data.delijn.be/stops/507143"], ["https://data.delijn.be/stops/304142", "https://data.delijn.be/stops/304171"], ["https://data.delijn.be/stops/403087", "https://data.delijn.be/stops/410328"], ["https://data.delijn.be/stops/306654", "https://data.delijn.be/stops/306655"], ["https://data.delijn.be/stops/108267", "https://data.delijn.be/stops/108268"], ["https://data.delijn.be/stops/106089", "https://data.delijn.be/stops/106092"], ["https://data.delijn.be/stops/206976", "https://data.delijn.be/stops/207976"], ["https://data.delijn.be/stops/307137", "https://data.delijn.be/stops/308717"], ["https://data.delijn.be/stops/206768", "https://data.delijn.be/stops/206940"], ["https://data.delijn.be/stops/401134", "https://data.delijn.be/stops/401135"], ["https://data.delijn.be/stops/301237", "https://data.delijn.be/stops/301238"], ["https://data.delijn.be/stops/205427", "https://data.delijn.be/stops/205428"], ["https://data.delijn.be/stops/206374", "https://data.delijn.be/stops/207374"], ["https://data.delijn.be/stops/207933", "https://data.delijn.be/stops/210003"], ["https://data.delijn.be/stops/501599", "https://data.delijn.be/stops/506690"], ["https://data.delijn.be/stops/405458", "https://data.delijn.be/stops/302849"], ["https://data.delijn.be/stops/202710", "https://data.delijn.be/stops/203728"], ["https://data.delijn.be/stops/504368", "https://data.delijn.be/stops/508035"], ["https://data.delijn.be/stops/208102", "https://data.delijn.be/stops/218005"], ["https://data.delijn.be/stops/304413", "https://data.delijn.be/stops/307355"], ["https://data.delijn.be/stops/406155", "https://data.delijn.be/stops/406274"], ["https://data.delijn.be/stops/405092", "https://data.delijn.be/stops/405708"], ["https://data.delijn.be/stops/404410", "https://data.delijn.be/stops/404411"], ["https://data.delijn.be/stops/406807", "https://data.delijn.be/stops/407914"], ["https://data.delijn.be/stops/303360", "https://data.delijn.be/stops/307809"], ["https://data.delijn.be/stops/501051", "https://data.delijn.be/stops/507134"], ["https://data.delijn.be/stops/103162", "https://data.delijn.be/stops/109739"], ["https://data.delijn.be/stops/200100", "https://data.delijn.be/stops/200102"], ["https://data.delijn.be/stops/305007", "https://data.delijn.be/stops/305019"], ["https://data.delijn.be/stops/206152", "https://data.delijn.be/stops/206153"], ["https://data.delijn.be/stops/407858", "https://data.delijn.be/stops/407978"], ["https://data.delijn.be/stops/504368", "https://data.delijn.be/stops/508949"], ["https://data.delijn.be/stops/400943", "https://data.delijn.be/stops/406977"], ["https://data.delijn.be/stops/304125", "https://data.delijn.be/stops/305896"], ["https://data.delijn.be/stops/503626", "https://data.delijn.be/stops/590008"], ["https://data.delijn.be/stops/307954", "https://data.delijn.be/stops/307955"], ["https://data.delijn.be/stops/108644", "https://data.delijn.be/stops/109682"], ["https://data.delijn.be/stops/503688", "https://data.delijn.be/stops/508688"], ["https://data.delijn.be/stops/207758", "https://data.delijn.be/stops/208185"], ["https://data.delijn.be/stops/405806", "https://data.delijn.be/stops/405807"], ["https://data.delijn.be/stops/508009", "https://data.delijn.be/stops/508086"], ["https://data.delijn.be/stops/305623", "https://data.delijn.be/stops/308410"], ["https://data.delijn.be/stops/401821", "https://data.delijn.be/stops/410251"], ["https://data.delijn.be/stops/201780", "https://data.delijn.be/stops/201821"], ["https://data.delijn.be/stops/209452", "https://data.delijn.be/stops/209582"], ["https://data.delijn.be/stops/206972", "https://data.delijn.be/stops/207971"], ["https://data.delijn.be/stops/209355", "https://data.delijn.be/stops/209499"], ["https://data.delijn.be/stops/408843", "https://data.delijn.be/stops/408926"], ["https://data.delijn.be/stops/106740", "https://data.delijn.be/stops/107197"], ["https://data.delijn.be/stops/503722", "https://data.delijn.be/stops/504872"], ["https://data.delijn.be/stops/404883", "https://data.delijn.be/stops/404961"], ["https://data.delijn.be/stops/505022", "https://data.delijn.be/stops/507526"], ["https://data.delijn.be/stops/508832", "https://data.delijn.be/stops/508834"], ["https://data.delijn.be/stops/502707", "https://data.delijn.be/stops/505066"], ["https://data.delijn.be/stops/401516", "https://data.delijn.be/stops/401517"], ["https://data.delijn.be/stops/200144", "https://data.delijn.be/stops/201335"], ["https://data.delijn.be/stops/301079", "https://data.delijn.be/stops/304580"], ["https://data.delijn.be/stops/303400", "https://data.delijn.be/stops/304828"], ["https://data.delijn.be/stops/101849", "https://data.delijn.be/stops/102091"], ["https://data.delijn.be/stops/200807", "https://data.delijn.be/stops/203388"], ["https://data.delijn.be/stops/102198", "https://data.delijn.be/stops/105844"], ["https://data.delijn.be/stops/402573", "https://data.delijn.be/stops/402616"], ["https://data.delijn.be/stops/301300", "https://data.delijn.be/stops/307941"], ["https://data.delijn.be/stops/508900", "https://data.delijn.be/stops/508907"], ["https://data.delijn.be/stops/301236", "https://data.delijn.be/stops/307623"], ["https://data.delijn.be/stops/304826", "https://data.delijn.be/stops/306178"], ["https://data.delijn.be/stops/200582", "https://data.delijn.be/stops/210607"], ["https://data.delijn.be/stops/405825", "https://data.delijn.be/stops/409742"], ["https://data.delijn.be/stops/300073", "https://data.delijn.be/stops/304671"], ["https://data.delijn.be/stops/308740", "https://data.delijn.be/stops/308747"], ["https://data.delijn.be/stops/503428", "https://data.delijn.be/stops/505185"], ["https://data.delijn.be/stops/304544", "https://data.delijn.be/stops/304663"], ["https://data.delijn.be/stops/401786", "https://data.delijn.be/stops/406001"], ["https://data.delijn.be/stops/509755", "https://data.delijn.be/stops/509756"], ["https://data.delijn.be/stops/208631", "https://data.delijn.be/stops/209632"], ["https://data.delijn.be/stops/103349", "https://data.delijn.be/stops/104865"], ["https://data.delijn.be/stops/405980", "https://data.delijn.be/stops/405984"], ["https://data.delijn.be/stops/108808", "https://data.delijn.be/stops/109733"], ["https://data.delijn.be/stops/108612", "https://data.delijn.be/stops/300026"], ["https://data.delijn.be/stops/503083", "https://data.delijn.be/stops/508083"], ["https://data.delijn.be/stops/408861", "https://data.delijn.be/stops/408883"], ["https://data.delijn.be/stops/510001", "https://data.delijn.be/stops/510002"], ["https://data.delijn.be/stops/300621", "https://data.delijn.be/stops/303523"], ["https://data.delijn.be/stops/308235", "https://data.delijn.be/stops/308238"], ["https://data.delijn.be/stops/406178", "https://data.delijn.be/stops/406893"], ["https://data.delijn.be/stops/202084", "https://data.delijn.be/stops/203085"], ["https://data.delijn.be/stops/206062", "https://data.delijn.be/stops/207062"], ["https://data.delijn.be/stops/402067", "https://data.delijn.be/stops/410335"], ["https://data.delijn.be/stops/307400", "https://data.delijn.be/stops/307404"], ["https://data.delijn.be/stops/502543", "https://data.delijn.be/stops/505748"], ["https://data.delijn.be/stops/300429", "https://data.delijn.be/stops/300430"], ["https://data.delijn.be/stops/206493", "https://data.delijn.be/stops/206494"], ["https://data.delijn.be/stops/504226", "https://data.delijn.be/stops/509226"], ["https://data.delijn.be/stops/204110", "https://data.delijn.be/stops/204111"], ["https://data.delijn.be/stops/101592", "https://data.delijn.be/stops/103036"], ["https://data.delijn.be/stops/406882", "https://data.delijn.be/stops/409411"], ["https://data.delijn.be/stops/300624", "https://data.delijn.be/stops/300628"], ["https://data.delijn.be/stops/302276", "https://data.delijn.be/stops/302277"], ["https://data.delijn.be/stops/504037", "https://data.delijn.be/stops/504659"], ["https://data.delijn.be/stops/301935", "https://data.delijn.be/stops/301936"], ["https://data.delijn.be/stops/408637", "https://data.delijn.be/stops/408654"], ["https://data.delijn.be/stops/203180", "https://data.delijn.be/stops/205080"], ["https://data.delijn.be/stops/204756", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/400660", "https://data.delijn.be/stops/400665"], ["https://data.delijn.be/stops/109038", "https://data.delijn.be/stops/109082"], ["https://data.delijn.be/stops/103074", "https://data.delijn.be/stops/109522"], ["https://data.delijn.be/stops/503021", "https://data.delijn.be/stops/508544"], ["https://data.delijn.be/stops/405449", "https://data.delijn.be/stops/405462"], ["https://data.delijn.be/stops/209221", "https://data.delijn.be/stops/209592"], ["https://data.delijn.be/stops/202885", "https://data.delijn.be/stops/203885"], ["https://data.delijn.be/stops/202726", "https://data.delijn.be/stops/203726"], ["https://data.delijn.be/stops/207940", "https://data.delijn.be/stops/209564"], ["https://data.delijn.be/stops/209599", "https://data.delijn.be/stops/306368"], ["https://data.delijn.be/stops/108381", "https://data.delijn.be/stops/108447"], ["https://data.delijn.be/stops/204714", "https://data.delijn.be/stops/205896"], ["https://data.delijn.be/stops/102217", "https://data.delijn.be/stops/105531"], ["https://data.delijn.be/stops/102519", "https://data.delijn.be/stops/102551"], ["https://data.delijn.be/stops/108299", "https://data.delijn.be/stops/108301"], ["https://data.delijn.be/stops/402621", "https://data.delijn.be/stops/402628"], ["https://data.delijn.be/stops/206672", "https://data.delijn.be/stops/208094"], ["https://data.delijn.be/stops/102125", "https://data.delijn.be/stops/102790"], ["https://data.delijn.be/stops/200853", "https://data.delijn.be/stops/200854"], ["https://data.delijn.be/stops/403705", "https://data.delijn.be/stops/403767"], ["https://data.delijn.be/stops/106226", "https://data.delijn.be/stops/106228"], ["https://data.delijn.be/stops/208201", "https://data.delijn.be/stops/209200"], ["https://data.delijn.be/stops/404771", "https://data.delijn.be/stops/404832"], ["https://data.delijn.be/stops/404141", "https://data.delijn.be/stops/405918"], ["https://data.delijn.be/stops/509121", "https://data.delijn.be/stops/509132"], ["https://data.delijn.be/stops/503298", "https://data.delijn.be/stops/503304"], ["https://data.delijn.be/stops/409360", "https://data.delijn.be/stops/409386"], ["https://data.delijn.be/stops/303719", "https://data.delijn.be/stops/303751"], ["https://data.delijn.be/stops/305910", "https://data.delijn.be/stops/306396"], ["https://data.delijn.be/stops/208091", "https://data.delijn.be/stops/209657"], ["https://data.delijn.be/stops/204243", "https://data.delijn.be/stops/205244"], ["https://data.delijn.be/stops/200908", "https://data.delijn.be/stops/202251"], ["https://data.delijn.be/stops/403209", "https://data.delijn.be/stops/410215"], ["https://data.delijn.be/stops/404481", "https://data.delijn.be/stops/410156"], ["https://data.delijn.be/stops/101073", "https://data.delijn.be/stops/107153"], ["https://data.delijn.be/stops/205633", "https://data.delijn.be/stops/205634"], ["https://data.delijn.be/stops/407958", "https://data.delijn.be/stops/407960"], ["https://data.delijn.be/stops/501282", "https://data.delijn.be/stops/506783"], ["https://data.delijn.be/stops/204018", "https://data.delijn.be/stops/205017"], ["https://data.delijn.be/stops/503262", "https://data.delijn.be/stops/508231"], ["https://data.delijn.be/stops/106050", "https://data.delijn.be/stops/106100"], ["https://data.delijn.be/stops/503462", "https://data.delijn.be/stops/507716"], ["https://data.delijn.be/stops/509040", "https://data.delijn.be/stops/509044"], ["https://data.delijn.be/stops/202106", "https://data.delijn.be/stops/203106"], ["https://data.delijn.be/stops/204679", "https://data.delijn.be/stops/205658"], ["https://data.delijn.be/stops/208349", "https://data.delijn.be/stops/208784"], ["https://data.delijn.be/stops/404357", "https://data.delijn.be/stops/404358"], ["https://data.delijn.be/stops/501002", "https://data.delijn.be/stops/501215"], ["https://data.delijn.be/stops/206881", "https://data.delijn.be/stops/206883"], ["https://data.delijn.be/stops/106751", "https://data.delijn.be/stops/109622"], ["https://data.delijn.be/stops/101673", "https://data.delijn.be/stops/103159"], ["https://data.delijn.be/stops/204985", "https://data.delijn.be/stops/218019"], ["https://data.delijn.be/stops/302610", "https://data.delijn.be/stops/302616"], ["https://data.delijn.be/stops/109176", "https://data.delijn.be/stops/109249"], ["https://data.delijn.be/stops/502490", "https://data.delijn.be/stops/502740"], ["https://data.delijn.be/stops/406964", "https://data.delijn.be/stops/406965"], ["https://data.delijn.be/stops/301715", "https://data.delijn.be/stops/301760"], ["https://data.delijn.be/stops/502591", "https://data.delijn.be/stops/502627"], ["https://data.delijn.be/stops/301912", "https://data.delijn.be/stops/301913"], ["https://data.delijn.be/stops/101578", "https://data.delijn.be/stops/101579"], ["https://data.delijn.be/stops/408540", "https://data.delijn.be/stops/408795"], ["https://data.delijn.be/stops/405112", "https://data.delijn.be/stops/405113"], ["https://data.delijn.be/stops/300732", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/202082", "https://data.delijn.be/stops/203031"], ["https://data.delijn.be/stops/300293", "https://data.delijn.be/stops/306654"], ["https://data.delijn.be/stops/500928", "https://data.delijn.be/stops/501001"], ["https://data.delijn.be/stops/501174", "https://data.delijn.be/stops/506782"], ["https://data.delijn.be/stops/402656", "https://data.delijn.be/stops/402739"], ["https://data.delijn.be/stops/207696", "https://data.delijn.be/stops/207712"], ["https://data.delijn.be/stops/407532", "https://data.delijn.be/stops/407533"], ["https://data.delijn.be/stops/505553", "https://data.delijn.be/stops/507256"], ["https://data.delijn.be/stops/306386", "https://data.delijn.be/stops/306387"], ["https://data.delijn.be/stops/203660", "https://data.delijn.be/stops/210659"], ["https://data.delijn.be/stops/402322", "https://data.delijn.be/stops/402328"], ["https://data.delijn.be/stops/501562", "https://data.delijn.be/stops/506364"], ["https://data.delijn.be/stops/204157", "https://data.delijn.be/stops/204591"], ["https://data.delijn.be/stops/404510", "https://data.delijn.be/stops/406753"], ["https://data.delijn.be/stops/506104", "https://data.delijn.be/stops/506107"], ["https://data.delijn.be/stops/200092", "https://data.delijn.be/stops/201091"], ["https://data.delijn.be/stops/201104", "https://data.delijn.be/stops/201363"], ["https://data.delijn.be/stops/508320", "https://data.delijn.be/stops/508323"], ["https://data.delijn.be/stops/304306", "https://data.delijn.be/stops/307005"], ["https://data.delijn.be/stops/400390", "https://data.delijn.be/stops/406484"], ["https://data.delijn.be/stops/409345", "https://data.delijn.be/stops/409347"], ["https://data.delijn.be/stops/503930", "https://data.delijn.be/stops/508930"], ["https://data.delijn.be/stops/406999", "https://data.delijn.be/stops/408628"], ["https://data.delijn.be/stops/206286", "https://data.delijn.be/stops/207285"], ["https://data.delijn.be/stops/109935", "https://data.delijn.be/stops/109948"], ["https://data.delijn.be/stops/204229", "https://data.delijn.be/stops/205229"], ["https://data.delijn.be/stops/202361", "https://data.delijn.be/stops/208888"], ["https://data.delijn.be/stops/102384", "https://data.delijn.be/stops/109133"], ["https://data.delijn.be/stops/208440", "https://data.delijn.be/stops/209440"], ["https://data.delijn.be/stops/200673", "https://data.delijn.be/stops/201661"], ["https://data.delijn.be/stops/200022", "https://data.delijn.be/stops/208842"], ["https://data.delijn.be/stops/201954", "https://data.delijn.be/stops/210054"], ["https://data.delijn.be/stops/502385", "https://data.delijn.be/stops/507385"], ["https://data.delijn.be/stops/301536", "https://data.delijn.be/stops/301548"], ["https://data.delijn.be/stops/308150", "https://data.delijn.be/stops/308151"], ["https://data.delijn.be/stops/300906", "https://data.delijn.be/stops/301115"], ["https://data.delijn.be/stops/203534", "https://data.delijn.be/stops/205243"], ["https://data.delijn.be/stops/408097", "https://data.delijn.be/stops/408100"], ["https://data.delijn.be/stops/206261", "https://data.delijn.be/stops/207260"], ["https://data.delijn.be/stops/305960", "https://data.delijn.be/stops/305961"], ["https://data.delijn.be/stops/400717", "https://data.delijn.be/stops/402235"], ["https://data.delijn.be/stops/205525", "https://data.delijn.be/stops/205729"], ["https://data.delijn.be/stops/404156", "https://data.delijn.be/stops/404180"], ["https://data.delijn.be/stops/105465", "https://data.delijn.be/stops/105665"], ["https://data.delijn.be/stops/206906", "https://data.delijn.be/stops/207908"], ["https://data.delijn.be/stops/407770", "https://data.delijn.be/stops/304360"], ["https://data.delijn.be/stops/102062", "https://data.delijn.be/stops/106926"], ["https://data.delijn.be/stops/201763", "https://data.delijn.be/stops/209333"], ["https://data.delijn.be/stops/502661", "https://data.delijn.be/stops/507028"], ["https://data.delijn.be/stops/102587", "https://data.delijn.be/stops/109108"], ["https://data.delijn.be/stops/301571", "https://data.delijn.be/stops/301578"], ["https://data.delijn.be/stops/407298", "https://data.delijn.be/stops/303646"], ["https://data.delijn.be/stops/406714", "https://data.delijn.be/stops/408798"], ["https://data.delijn.be/stops/101481", "https://data.delijn.be/stops/108214"], ["https://data.delijn.be/stops/502064", "https://data.delijn.be/stops/502071"], ["https://data.delijn.be/stops/404972", "https://data.delijn.be/stops/410295"], ["https://data.delijn.be/stops/503641", "https://data.delijn.be/stops/508642"], ["https://data.delijn.be/stops/505271", "https://data.delijn.be/stops/505272"], ["https://data.delijn.be/stops/409280", "https://data.delijn.be/stops/409281"], ["https://data.delijn.be/stops/501671", "https://data.delijn.be/stops/506430"], ["https://data.delijn.be/stops/503457", "https://data.delijn.be/stops/503947"], ["https://data.delijn.be/stops/101749", "https://data.delijn.be/stops/102752"], ["https://data.delijn.be/stops/108332", "https://data.delijn.be/stops/109331"], ["https://data.delijn.be/stops/200400", "https://data.delijn.be/stops/201651"], ["https://data.delijn.be/stops/503307", "https://data.delijn.be/stops/508307"], ["https://data.delijn.be/stops/401547", "https://data.delijn.be/stops/406885"], ["https://data.delijn.be/stops/305698", "https://data.delijn.be/stops/305751"], ["https://data.delijn.be/stops/301543", "https://data.delijn.be/stops/301544"], ["https://data.delijn.be/stops/408351", "https://data.delijn.be/stops/408382"], ["https://data.delijn.be/stops/400964", "https://data.delijn.be/stops/407401"], ["https://data.delijn.be/stops/107496", "https://data.delijn.be/stops/107523"], ["https://data.delijn.be/stops/504570", "https://data.delijn.be/stops/505424"], ["https://data.delijn.be/stops/502238", "https://data.delijn.be/stops/507646"], ["https://data.delijn.be/stops/407614", "https://data.delijn.be/stops/410090"], ["https://data.delijn.be/stops/202860", "https://data.delijn.be/stops/203860"], ["https://data.delijn.be/stops/206177", "https://data.delijn.be/stops/303847"], ["https://data.delijn.be/stops/206265", "https://data.delijn.be/stops/207995"], ["https://data.delijn.be/stops/404590", "https://data.delijn.be/stops/406902"], ["https://data.delijn.be/stops/301145", "https://data.delijn.be/stops/301154"], ["https://data.delijn.be/stops/102901", "https://data.delijn.be/stops/109375"], ["https://data.delijn.be/stops/401000", "https://data.delijn.be/stops/403806"], ["https://data.delijn.be/stops/403272", "https://data.delijn.be/stops/403527"], ["https://data.delijn.be/stops/308611", "https://data.delijn.be/stops/308618"], ["https://data.delijn.be/stops/101683", "https://data.delijn.be/stops/101684"], ["https://data.delijn.be/stops/204778", "https://data.delijn.be/stops/214011"], ["https://data.delijn.be/stops/406230", "https://data.delijn.be/stops/406348"], ["https://data.delijn.be/stops/503901", "https://data.delijn.be/stops/508905"], ["https://data.delijn.be/stops/502184", "https://data.delijn.be/stops/505772"], ["https://data.delijn.be/stops/409730", "https://data.delijn.be/stops/409731"], ["https://data.delijn.be/stops/103700", "https://data.delijn.be/stops/109604"], ["https://data.delijn.be/stops/408055", "https://data.delijn.be/stops/408166"], ["https://data.delijn.be/stops/300456", "https://data.delijn.be/stops/304978"], ["https://data.delijn.be/stops/208364", "https://data.delijn.be/stops/208365"], ["https://data.delijn.be/stops/204745", "https://data.delijn.be/stops/205745"], ["https://data.delijn.be/stops/405059", "https://data.delijn.be/stops/405112"], ["https://data.delijn.be/stops/201857", "https://data.delijn.be/stops/201879"], ["https://data.delijn.be/stops/301814", "https://data.delijn.be/stops/307181"], ["https://data.delijn.be/stops/107612", "https://data.delijn.be/stops/107727"], ["https://data.delijn.be/stops/304413", "https://data.delijn.be/stops/304414"], ["https://data.delijn.be/stops/305038", "https://data.delijn.be/stops/305039"], ["https://data.delijn.be/stops/400914", "https://data.delijn.be/stops/400969"], ["https://data.delijn.be/stops/406177", "https://data.delijn.be/stops/410225"], ["https://data.delijn.be/stops/409355", "https://data.delijn.be/stops/409402"], ["https://data.delijn.be/stops/306345", "https://data.delijn.be/stops/306347"], ["https://data.delijn.be/stops/408537", "https://data.delijn.be/stops/408650"], ["https://data.delijn.be/stops/105681", "https://data.delijn.be/stops/105683"], ["https://data.delijn.be/stops/208442", "https://data.delijn.be/stops/208443"], ["https://data.delijn.be/stops/101904", "https://data.delijn.be/stops/105665"], ["https://data.delijn.be/stops/104035", "https://data.delijn.be/stops/105740"], ["https://data.delijn.be/stops/303388", "https://data.delijn.be/stops/307183"], ["https://data.delijn.be/stops/106756", "https://data.delijn.be/stops/106760"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/509516"], ["https://data.delijn.be/stops/202055", "https://data.delijn.be/stops/202056"], ["https://data.delijn.be/stops/400528", "https://data.delijn.be/stops/410005"], ["https://data.delijn.be/stops/102665", "https://data.delijn.be/stops/102670"], ["https://data.delijn.be/stops/405300", "https://data.delijn.be/stops/405400"], ["https://data.delijn.be/stops/304758", "https://data.delijn.be/stops/308699"], ["https://data.delijn.be/stops/502191", "https://data.delijn.be/stops/507201"], ["https://data.delijn.be/stops/201729", "https://data.delijn.be/stops/203719"], ["https://data.delijn.be/stops/305427", "https://data.delijn.be/stops/305428"], ["https://data.delijn.be/stops/506258", "https://data.delijn.be/stops/506259"], ["https://data.delijn.be/stops/505268", "https://data.delijn.be/stops/508049"], ["https://data.delijn.be/stops/300105", "https://data.delijn.be/stops/300106"], ["https://data.delijn.be/stops/302500", "https://data.delijn.be/stops/302502"], ["https://data.delijn.be/stops/502742", "https://data.delijn.be/stops/505357"], ["https://data.delijn.be/stops/403451", "https://data.delijn.be/stops/403484"], ["https://data.delijn.be/stops/208662", "https://data.delijn.be/stops/209662"], ["https://data.delijn.be/stops/102183", "https://data.delijn.be/stops/107131"], ["https://data.delijn.be/stops/304353", "https://data.delijn.be/stops/304354"], ["https://data.delijn.be/stops/302798", "https://data.delijn.be/stops/306159"], ["https://data.delijn.be/stops/201903", "https://data.delijn.be/stops/203513"], ["https://data.delijn.be/stops/408578", "https://data.delijn.be/stops/408582"], ["https://data.delijn.be/stops/105733", "https://data.delijn.be/stops/105736"], ["https://data.delijn.be/stops/204164", "https://data.delijn.be/stops/205771"], ["https://data.delijn.be/stops/406460", "https://data.delijn.be/stops/410224"], ["https://data.delijn.be/stops/300314", "https://data.delijn.be/stops/300315"], ["https://data.delijn.be/stops/406210", "https://data.delijn.be/stops/406271"], ["https://data.delijn.be/stops/206408", "https://data.delijn.be/stops/210009"], ["https://data.delijn.be/stops/304021", "https://data.delijn.be/stops/304913"], ["https://data.delijn.be/stops/101787", "https://data.delijn.be/stops/109230"], ["https://data.delijn.be/stops/304229", "https://data.delijn.be/stops/304243"], ["https://data.delijn.be/stops/504203", "https://data.delijn.be/stops/504204"], ["https://data.delijn.be/stops/303960", "https://data.delijn.be/stops/303973"], ["https://data.delijn.be/stops/405144", "https://data.delijn.be/stops/405216"], ["https://data.delijn.be/stops/503069", "https://data.delijn.be/stops/508075"], ["https://data.delijn.be/stops/200412", "https://data.delijn.be/stops/208941"], ["https://data.delijn.be/stops/403322", "https://data.delijn.be/stops/407596"], ["https://data.delijn.be/stops/107984", "https://data.delijn.be/stops/107986"], ["https://data.delijn.be/stops/302491", "https://data.delijn.be/stops/302493"], ["https://data.delijn.be/stops/206352", "https://data.delijn.be/stops/206362"], ["https://data.delijn.be/stops/301870", "https://data.delijn.be/stops/304326"], ["https://data.delijn.be/stops/300378", "https://data.delijn.be/stops/307895"], ["https://data.delijn.be/stops/202244", "https://data.delijn.be/stops/203500"], ["https://data.delijn.be/stops/504426", "https://data.delijn.be/stops/509437"], ["https://data.delijn.be/stops/507536", "https://data.delijn.be/stops/507741"], ["https://data.delijn.be/stops/407667", "https://data.delijn.be/stops/410211"], ["https://data.delijn.be/stops/501588", "https://data.delijn.be/stops/506356"], ["https://data.delijn.be/stops/504108", "https://data.delijn.be/stops/509108"], ["https://data.delijn.be/stops/404245", "https://data.delijn.be/stops/409296"], ["https://data.delijn.be/stops/504507", "https://data.delijn.be/stops/509017"], ["https://data.delijn.be/stops/302278", "https://data.delijn.be/stops/302279"], ["https://data.delijn.be/stops/402887", "https://data.delijn.be/stops/402897"], ["https://data.delijn.be/stops/201830", "https://data.delijn.be/stops/209325"], ["https://data.delijn.be/stops/308438", "https://data.delijn.be/stops/308439"], ["https://data.delijn.be/stops/502002", "https://data.delijn.be/stops/507002"], ["https://data.delijn.be/stops/509060", "https://data.delijn.be/stops/509062"], ["https://data.delijn.be/stops/401816", "https://data.delijn.be/stops/406084"], ["https://data.delijn.be/stops/204744", "https://data.delijn.be/stops/204766"], ["https://data.delijn.be/stops/402385", "https://data.delijn.be/stops/410042"], ["https://data.delijn.be/stops/103304", "https://data.delijn.be/stops/103306"], ["https://data.delijn.be/stops/101045", "https://data.delijn.be/stops/104510"], ["https://data.delijn.be/stops/305511", "https://data.delijn.be/stops/305573"], ["https://data.delijn.be/stops/406989", "https://data.delijn.be/stops/408392"], ["https://data.delijn.be/stops/402829", "https://data.delijn.be/stops/402889"], ["https://data.delijn.be/stops/502456", "https://data.delijn.be/stops/505227"], ["https://data.delijn.be/stops/305340", "https://data.delijn.be/stops/308447"], ["https://data.delijn.be/stops/503865", "https://data.delijn.be/stops/508865"], ["https://data.delijn.be/stops/206747", "https://data.delijn.be/stops/207747"], ["https://data.delijn.be/stops/200631", "https://data.delijn.be/stops/201629"], ["https://data.delijn.be/stops/201087", "https://data.delijn.be/stops/202781"], ["https://data.delijn.be/stops/501351", "https://data.delijn.be/stops/506351"], ["https://data.delijn.be/stops/109067", "https://data.delijn.be/stops/307363"], ["https://data.delijn.be/stops/400102", "https://data.delijn.be/stops/409137"], ["https://data.delijn.be/stops/406651", "https://data.delijn.be/stops/406654"], ["https://data.delijn.be/stops/503769", "https://data.delijn.be/stops/505073"], ["https://data.delijn.be/stops/405330", "https://data.delijn.be/stops/405447"], ["https://data.delijn.be/stops/201811", "https://data.delijn.be/stops/208327"], ["https://data.delijn.be/stops/302376", "https://data.delijn.be/stops/307841"], ["https://data.delijn.be/stops/303117", "https://data.delijn.be/stops/306316"], ["https://data.delijn.be/stops/300564", "https://data.delijn.be/stops/300591"], ["https://data.delijn.be/stops/101524", "https://data.delijn.be/stops/101526"], ["https://data.delijn.be/stops/206991", "https://data.delijn.be/stops/207157"], ["https://data.delijn.be/stops/305100", "https://data.delijn.be/stops/305101"], ["https://data.delijn.be/stops/102972", "https://data.delijn.be/stops/105350"], ["https://data.delijn.be/stops/204049", "https://data.delijn.be/stops/205520"], ["https://data.delijn.be/stops/104943", "https://data.delijn.be/stops/107062"], ["https://data.delijn.be/stops/109247", "https://data.delijn.be/stops/109250"], ["https://data.delijn.be/stops/404902", "https://data.delijn.be/stops/404911"], ["https://data.delijn.be/stops/505724", "https://data.delijn.be/stops/507297"], ["https://data.delijn.be/stops/200886", "https://data.delijn.be/stops/203303"], ["https://data.delijn.be/stops/304994", "https://data.delijn.be/stops/305024"], ["https://data.delijn.be/stops/207297", "https://data.delijn.be/stops/216011"], ["https://data.delijn.be/stops/400858", "https://data.delijn.be/stops/400867"], ["https://data.delijn.be/stops/403155", "https://data.delijn.be/stops/403319"], ["https://data.delijn.be/stops/202174", "https://data.delijn.be/stops/203174"], ["https://data.delijn.be/stops/403046", "https://data.delijn.be/stops/410292"], ["https://data.delijn.be/stops/304908", "https://data.delijn.be/stops/308587"], ["https://data.delijn.be/stops/103158", "https://data.delijn.be/stops/103160"], ["https://data.delijn.be/stops/408668", "https://data.delijn.be/stops/408755"], ["https://data.delijn.be/stops/200391", "https://data.delijn.be/stops/209703"], ["https://data.delijn.be/stops/303988", "https://data.delijn.be/stops/306292"], ["https://data.delijn.be/stops/102425", "https://data.delijn.be/stops/105155"], ["https://data.delijn.be/stops/301092", "https://data.delijn.be/stops/306664"], ["https://data.delijn.be/stops/304152", "https://data.delijn.be/stops/304168"], ["https://data.delijn.be/stops/101388", "https://data.delijn.be/stops/103134"], ["https://data.delijn.be/stops/204243", "https://data.delijn.be/stops/204244"], ["https://data.delijn.be/stops/104816", "https://data.delijn.be/stops/105162"], ["https://data.delijn.be/stops/404852", "https://data.delijn.be/stops/406890"], ["https://data.delijn.be/stops/208319", "https://data.delijn.be/stops/209318"], ["https://data.delijn.be/stops/504751", "https://data.delijn.be/stops/508610"], ["https://data.delijn.be/stops/504946", "https://data.delijn.be/stops/509746"], ["https://data.delijn.be/stops/207701", "https://data.delijn.be/stops/207705"], ["https://data.delijn.be/stops/300653", "https://data.delijn.be/stops/300654"], ["https://data.delijn.be/stops/109449", "https://data.delijn.be/stops/109452"], ["https://data.delijn.be/stops/400444", "https://data.delijn.be/stops/401266"], ["https://data.delijn.be/stops/206602", "https://data.delijn.be/stops/206976"], ["https://data.delijn.be/stops/101800", "https://data.delijn.be/stops/101802"], ["https://data.delijn.be/stops/509724", "https://data.delijn.be/stops/509727"], ["https://data.delijn.be/stops/300079", "https://data.delijn.be/stops/307343"], ["https://data.delijn.be/stops/407594", "https://data.delijn.be/stops/407673"], ["https://data.delijn.be/stops/405476", "https://data.delijn.be/stops/406601"], ["https://data.delijn.be/stops/503765", "https://data.delijn.be/stops/508765"], ["https://data.delijn.be/stops/400932", "https://data.delijn.be/stops/400945"], ["https://data.delijn.be/stops/302864", "https://data.delijn.be/stops/306401"], ["https://data.delijn.be/stops/207204", "https://data.delijn.be/stops/207220"], ["https://data.delijn.be/stops/101957", "https://data.delijn.be/stops/108327"], ["https://data.delijn.be/stops/407537", "https://data.delijn.be/stops/409058"], ["https://data.delijn.be/stops/301622", "https://data.delijn.be/stops/307339"], ["https://data.delijn.be/stops/400560", "https://data.delijn.be/stops/407042"], ["https://data.delijn.be/stops/504099", "https://data.delijn.be/stops/509097"], ["https://data.delijn.be/stops/505739", "https://data.delijn.be/stops/507473"], ["https://data.delijn.be/stops/402820", "https://data.delijn.be/stops/402821"], ["https://data.delijn.be/stops/208402", "https://data.delijn.be/stops/209387"], ["https://data.delijn.be/stops/504225", "https://data.delijn.be/stops/509625"], ["https://data.delijn.be/stops/404110", "https://data.delijn.be/stops/404258"], ["https://data.delijn.be/stops/501175", "https://data.delijn.be/stops/506173"], ["https://data.delijn.be/stops/200559", "https://data.delijn.be/stops/201662"], ["https://data.delijn.be/stops/109353", "https://data.delijn.be/stops/307353"], ["https://data.delijn.be/stops/201768", "https://data.delijn.be/stops/201804"], ["https://data.delijn.be/stops/401311", "https://data.delijn.be/stops/401316"], ["https://data.delijn.be/stops/204049", "https://data.delijn.be/stops/205051"], ["https://data.delijn.be/stops/101365", "https://data.delijn.be/stops/104875"], ["https://data.delijn.be/stops/401034", "https://data.delijn.be/stops/404984"], ["https://data.delijn.be/stops/400630", "https://data.delijn.be/stops/403062"], ["https://data.delijn.be/stops/507177", "https://data.delijn.be/stops/507686"], ["https://data.delijn.be/stops/209387", "https://data.delijn.be/stops/209454"], ["https://data.delijn.be/stops/201395", "https://data.delijn.be/stops/208703"], ["https://data.delijn.be/stops/201628", "https://data.delijn.be/stops/202904"], ["https://data.delijn.be/stops/500020", "https://data.delijn.be/stops/502579"], ["https://data.delijn.be/stops/302332", "https://data.delijn.be/stops/302342"], ["https://data.delijn.be/stops/204389", "https://data.delijn.be/stops/204390"], ["https://data.delijn.be/stops/505345", "https://data.delijn.be/stops/505771"], ["https://data.delijn.be/stops/307309", "https://data.delijn.be/stops/307311"], ["https://data.delijn.be/stops/201827", "https://data.delijn.be/stops/201828"], ["https://data.delijn.be/stops/105638", "https://data.delijn.be/stops/105639"], ["https://data.delijn.be/stops/200524", "https://data.delijn.be/stops/201524"], ["https://data.delijn.be/stops/209236", "https://data.delijn.be/stops/219008"], ["https://data.delijn.be/stops/208461", "https://data.delijn.be/stops/209460"], ["https://data.delijn.be/stops/501588", "https://data.delijn.be/stops/506588"], ["https://data.delijn.be/stops/501198", "https://data.delijn.be/stops/501401"], ["https://data.delijn.be/stops/202091", "https://data.delijn.be/stops/211291"], ["https://data.delijn.be/stops/305823", "https://data.delijn.be/stops/308817"], ["https://data.delijn.be/stops/108975", "https://data.delijn.be/stops/108980"], ["https://data.delijn.be/stops/301953", "https://data.delijn.be/stops/302868"], ["https://data.delijn.be/stops/206667", "https://data.delijn.be/stops/206702"], ["https://data.delijn.be/stops/200976", "https://data.delijn.be/stops/206758"], ["https://data.delijn.be/stops/208210", "https://data.delijn.be/stops/208211"], ["https://data.delijn.be/stops/102509", "https://data.delijn.be/stops/102511"], ["https://data.delijn.be/stops/301042", "https://data.delijn.be/stops/303632"], ["https://data.delijn.be/stops/402770", "https://data.delijn.be/stops/408133"], ["https://data.delijn.be/stops/400952", "https://data.delijn.be/stops/406700"], ["https://data.delijn.be/stops/200867", "https://data.delijn.be/stops/203337"], ["https://data.delijn.be/stops/209286", "https://data.delijn.be/stops/209288"], ["https://data.delijn.be/stops/401819", "https://data.delijn.be/stops/401820"], ["https://data.delijn.be/stops/300746", "https://data.delijn.be/stops/304774"], ["https://data.delijn.be/stops/102458", "https://data.delijn.be/stops/400411"], ["https://data.delijn.be/stops/103023", "https://data.delijn.be/stops/109675"], ["https://data.delijn.be/stops/203935", "https://data.delijn.be/stops/203936"], ["https://data.delijn.be/stops/207064", "https://data.delijn.be/stops/207119"], ["https://data.delijn.be/stops/300418", "https://data.delijn.be/stops/300419"], ["https://data.delijn.be/stops/505308", "https://data.delijn.be/stops/507733"], ["https://data.delijn.be/stops/501146", "https://data.delijn.be/stops/501599"], ["https://data.delijn.be/stops/407922", "https://data.delijn.be/stops/408438"], ["https://data.delijn.be/stops/301974", "https://data.delijn.be/stops/301984"], ["https://data.delijn.be/stops/500138", "https://data.delijn.be/stops/590335"], ["https://data.delijn.be/stops/501351", "https://data.delijn.be/stops/506449"], ["https://data.delijn.be/stops/305242", "https://data.delijn.be/stops/305601"], ["https://data.delijn.be/stops/300016", "https://data.delijn.be/stops/302872"], ["https://data.delijn.be/stops/404649", "https://data.delijn.be/stops/409565"], ["https://data.delijn.be/stops/206365", "https://data.delijn.be/stops/207710"], ["https://data.delijn.be/stops/405956", "https://data.delijn.be/stops/308150"], ["https://data.delijn.be/stops/503085", "https://data.delijn.be/stops/508084"], ["https://data.delijn.be/stops/400432", "https://data.delijn.be/stops/400434"], ["https://data.delijn.be/stops/106420", "https://data.delijn.be/stops/106523"], ["https://data.delijn.be/stops/301959", "https://data.delijn.be/stops/301961"], ["https://data.delijn.be/stops/505929", "https://data.delijn.be/stops/508291"], ["https://data.delijn.be/stops/505520", "https://data.delijn.be/stops/505522"], ["https://data.delijn.be/stops/402708", "https://data.delijn.be/stops/402867"], ["https://data.delijn.be/stops/206649", "https://data.delijn.be/stops/207626"], ["https://data.delijn.be/stops/301923", "https://data.delijn.be/stops/301925"], ["https://data.delijn.be/stops/204113", "https://data.delijn.be/stops/205113"], ["https://data.delijn.be/stops/207803", "https://data.delijn.be/stops/300216"], ["https://data.delijn.be/stops/300964", "https://data.delijn.be/stops/304535"], ["https://data.delijn.be/stops/400586", "https://data.delijn.be/stops/400617"], ["https://data.delijn.be/stops/504142", "https://data.delijn.be/stops/505708"], ["https://data.delijn.be/stops/401494", "https://data.delijn.be/stops/401495"], ["https://data.delijn.be/stops/402589", "https://data.delijn.be/stops/404098"], ["https://data.delijn.be/stops/403029", "https://data.delijn.be/stops/403066"], ["https://data.delijn.be/stops/200882", "https://data.delijn.be/stops/203060"], ["https://data.delijn.be/stops/300178", "https://data.delijn.be/stops/300188"], ["https://data.delijn.be/stops/207519", "https://data.delijn.be/stops/207524"], ["https://data.delijn.be/stops/101915", "https://data.delijn.be/stops/107925"], ["https://data.delijn.be/stops/206737", "https://data.delijn.be/stops/207080"], ["https://data.delijn.be/stops/107680", "https://data.delijn.be/stops/108615"], ["https://data.delijn.be/stops/400809", "https://data.delijn.be/stops/405172"], ["https://data.delijn.be/stops/509265", "https://data.delijn.be/stops/509661"], ["https://data.delijn.be/stops/101786", "https://data.delijn.be/stops/109154"], ["https://data.delijn.be/stops/209039", "https://data.delijn.be/stops/209539"], ["https://data.delijn.be/stops/502448", "https://data.delijn.be/stops/502457"], ["https://data.delijn.be/stops/109882", "https://data.delijn.be/stops/204021"], ["https://data.delijn.be/stops/205979", "https://data.delijn.be/stops/206246"], ["https://data.delijn.be/stops/305306", "https://data.delijn.be/stops/305320"], ["https://data.delijn.be/stops/400622", "https://data.delijn.be/stops/404292"], ["https://data.delijn.be/stops/206753", "https://data.delijn.be/stops/206851"], ["https://data.delijn.be/stops/504061", "https://data.delijn.be/stops/509497"], ["https://data.delijn.be/stops/406208", "https://data.delijn.be/stops/406432"], ["https://data.delijn.be/stops/406718", "https://data.delijn.be/stops/408402"], ["https://data.delijn.be/stops/103068", "https://data.delijn.be/stops/105759"], ["https://data.delijn.be/stops/304458", "https://data.delijn.be/stops/307035"], ["https://data.delijn.be/stops/102035", "https://data.delijn.be/stops/105576"], ["https://data.delijn.be/stops/206906", "https://data.delijn.be/stops/206909"], ["https://data.delijn.be/stops/300444", "https://data.delijn.be/stops/301263"], ["https://data.delijn.be/stops/405254", "https://data.delijn.be/stops/407313"], ["https://data.delijn.be/stops/207701", "https://data.delijn.be/stops/207889"], ["https://data.delijn.be/stops/302925", "https://data.delijn.be/stops/303080"], ["https://data.delijn.be/stops/303477", "https://data.delijn.be/stops/303499"], ["https://data.delijn.be/stops/201855", "https://data.delijn.be/stops/203023"], ["https://data.delijn.be/stops/101374", "https://data.delijn.be/stops/101377"], ["https://data.delijn.be/stops/508672", "https://data.delijn.be/stops/508674"], ["https://data.delijn.be/stops/107554", "https://data.delijn.be/stops/107558"], ["https://data.delijn.be/stops/208121", "https://data.delijn.be/stops/208768"], ["https://data.delijn.be/stops/304888", "https://data.delijn.be/stops/304903"], ["https://data.delijn.be/stops/201808", "https://data.delijn.be/stops/201833"], ["https://data.delijn.be/stops/504140", "https://data.delijn.be/stops/505980"], ["https://data.delijn.be/stops/301801", "https://data.delijn.be/stops/301802"], ["https://data.delijn.be/stops/300320", "https://data.delijn.be/stops/308109"], ["https://data.delijn.be/stops/505963", "https://data.delijn.be/stops/507942"], ["https://data.delijn.be/stops/502728", "https://data.delijn.be/stops/507728"], ["https://data.delijn.be/stops/209401", "https://data.delijn.be/stops/503329"], ["https://data.delijn.be/stops/302735", "https://data.delijn.be/stops/307705"], ["https://data.delijn.be/stops/404765", "https://data.delijn.be/stops/410045"], ["https://data.delijn.be/stops/503547", "https://data.delijn.be/stops/504277"], ["https://data.delijn.be/stops/102673", "https://data.delijn.be/stops/103488"], ["https://data.delijn.be/stops/506760", "https://data.delijn.be/stops/506777"], ["https://data.delijn.be/stops/405853", "https://data.delijn.be/stops/409428"], ["https://data.delijn.be/stops/300478", "https://data.delijn.be/stops/302092"], ["https://data.delijn.be/stops/501431", "https://data.delijn.be/stops/501678"], ["https://data.delijn.be/stops/402427", "https://data.delijn.be/stops/405563"], ["https://data.delijn.be/stops/108940", "https://data.delijn.be/stops/109095"], ["https://data.delijn.be/stops/204370", "https://data.delijn.be/stops/205371"], ["https://data.delijn.be/stops/401935", "https://data.delijn.be/stops/401936"], ["https://data.delijn.be/stops/405777", "https://data.delijn.be/stops/409426"], ["https://data.delijn.be/stops/207373", "https://data.delijn.be/stops/207374"], ["https://data.delijn.be/stops/308140", "https://data.delijn.be/stops/308141"], ["https://data.delijn.be/stops/405935", "https://data.delijn.be/stops/405975"], ["https://data.delijn.be/stops/400339", "https://data.delijn.be/stops/400489"], ["https://data.delijn.be/stops/300847", "https://data.delijn.be/stops/301594"], ["https://data.delijn.be/stops/308496", "https://data.delijn.be/stops/308499"], ["https://data.delijn.be/stops/304491", "https://data.delijn.be/stops/304501"], ["https://data.delijn.be/stops/306874", "https://data.delijn.be/stops/307955"], ["https://data.delijn.be/stops/206982", "https://data.delijn.be/stops/207602"], ["https://data.delijn.be/stops/300074", "https://data.delijn.be/stops/304668"], ["https://data.delijn.be/stops/104970", "https://data.delijn.be/stops/104980"], ["https://data.delijn.be/stops/205243", "https://data.delijn.be/stops/206243"], ["https://data.delijn.be/stops/408599", "https://data.delijn.be/stops/302833"], ["https://data.delijn.be/stops/101572", "https://data.delijn.be/stops/101574"], ["https://data.delijn.be/stops/204525", "https://data.delijn.be/stops/205524"], ["https://data.delijn.be/stops/102016", "https://data.delijn.be/stops/105145"], ["https://data.delijn.be/stops/200130", "https://data.delijn.be/stops/201250"], ["https://data.delijn.be/stops/403314", "https://data.delijn.be/stops/410399"], ["https://data.delijn.be/stops/502331", "https://data.delijn.be/stops/505508"], ["https://data.delijn.be/stops/504957", "https://data.delijn.be/stops/505556"], ["https://data.delijn.be/stops/306628", "https://data.delijn.be/stops/306630"], ["https://data.delijn.be/stops/300236", "https://data.delijn.be/stops/300237"], ["https://data.delijn.be/stops/500127", "https://data.delijn.be/stops/502476"], ["https://data.delijn.be/stops/403711", "https://data.delijn.be/stops/403786"], ["https://data.delijn.be/stops/107634", "https://data.delijn.be/stops/107704"], ["https://data.delijn.be/stops/206412", "https://data.delijn.be/stops/206454"], ["https://data.delijn.be/stops/208219", "https://data.delijn.be/stops/208771"], ["https://data.delijn.be/stops/502489", "https://data.delijn.be/stops/505598"], ["https://data.delijn.be/stops/405791", "https://data.delijn.be/stops/405877"], ["https://data.delijn.be/stops/407522", "https://data.delijn.be/stops/407523"], ["https://data.delijn.be/stops/101729", "https://data.delijn.be/stops/106049"], ["https://data.delijn.be/stops/300092", "https://data.delijn.be/stops/300105"], ["https://data.delijn.be/stops/204647", "https://data.delijn.be/stops/205730"], ["https://data.delijn.be/stops/305646", "https://data.delijn.be/stops/308130"], ["https://data.delijn.be/stops/204206", "https://data.delijn.be/stops/204473"], ["https://data.delijn.be/stops/304158", "https://data.delijn.be/stops/304496"], ["https://data.delijn.be/stops/406445", "https://data.delijn.be/stops/406746"], ["https://data.delijn.be/stops/403300", "https://data.delijn.be/stops/403448"], ["https://data.delijn.be/stops/400588", "https://data.delijn.be/stops/400627"], ["https://data.delijn.be/stops/503110", "https://data.delijn.be/stops/505667"], ["https://data.delijn.be/stops/305002", "https://data.delijn.be/stops/305003"], ["https://data.delijn.be/stops/206437", "https://data.delijn.be/stops/206641"], ["https://data.delijn.be/stops/105162", "https://data.delijn.be/stops/107428"], ["https://data.delijn.be/stops/200045", "https://data.delijn.be/stops/211108"], ["https://data.delijn.be/stops/401573", "https://data.delijn.be/stops/402373"], ["https://data.delijn.be/stops/108199", "https://data.delijn.be/stops/108232"], ["https://data.delijn.be/stops/200728", "https://data.delijn.be/stops/210023"], ["https://data.delijn.be/stops/402116", "https://data.delijn.be/stops/402124"], ["https://data.delijn.be/stops/504836", "https://data.delijn.be/stops/505645"], ["https://data.delijn.be/stops/208667", "https://data.delijn.be/stops/209446"], ["https://data.delijn.be/stops/203124", "https://data.delijn.be/stops/203600"], ["https://data.delijn.be/stops/201927", "https://data.delijn.be/stops/207400"], ["https://data.delijn.be/stops/205642", "https://data.delijn.be/stops/205643"], ["https://data.delijn.be/stops/307276", "https://data.delijn.be/stops/308701"], ["https://data.delijn.be/stops/504737", "https://data.delijn.be/stops/509498"], ["https://data.delijn.be/stops/301509", "https://data.delijn.be/stops/301524"], ["https://data.delijn.be/stops/406473", "https://data.delijn.be/stops/406476"], ["https://data.delijn.be/stops/505275", "https://data.delijn.be/stops/508228"], ["https://data.delijn.be/stops/401892", "https://data.delijn.be/stops/402033"], ["https://data.delijn.be/stops/408552", "https://data.delijn.be/stops/408653"], ["https://data.delijn.be/stops/301332", "https://data.delijn.be/stops/301907"], ["https://data.delijn.be/stops/502055", "https://data.delijn.be/stops/502619"], ["https://data.delijn.be/stops/305550", "https://data.delijn.be/stops/305558"], ["https://data.delijn.be/stops/200978", "https://data.delijn.be/stops/208490"], ["https://data.delijn.be/stops/300076", "https://data.delijn.be/stops/300077"], ["https://data.delijn.be/stops/501369", "https://data.delijn.be/stops/506103"], ["https://data.delijn.be/stops/101376", "https://data.delijn.be/stops/101399"], ["https://data.delijn.be/stops/505958", "https://data.delijn.be/stops/508606"], ["https://data.delijn.be/stops/204467", "https://data.delijn.be/stops/205474"], ["https://data.delijn.be/stops/204649", "https://data.delijn.be/stops/205648"], ["https://data.delijn.be/stops/306876", "https://data.delijn.be/stops/307423"], ["https://data.delijn.be/stops/410223", "https://data.delijn.be/stops/410292"], ["https://data.delijn.be/stops/405306", "https://data.delijn.be/stops/406262"], ["https://data.delijn.be/stops/302015", "https://data.delijn.be/stops/302052"], ["https://data.delijn.be/stops/204213", "https://data.delijn.be/stops/205452"], ["https://data.delijn.be/stops/407004", "https://data.delijn.be/stops/407077"], ["https://data.delijn.be/stops/403754", "https://data.delijn.be/stops/403763"], ["https://data.delijn.be/stops/306802", "https://data.delijn.be/stops/307811"], ["https://data.delijn.be/stops/104794", "https://data.delijn.be/stops/107634"], ["https://data.delijn.be/stops/405202", "https://data.delijn.be/stops/405285"], ["https://data.delijn.be/stops/108087", "https://data.delijn.be/stops/108686"], ["https://data.delijn.be/stops/201168", "https://data.delijn.be/stops/202641"], ["https://data.delijn.be/stops/501194", "https://data.delijn.be/stops/506190"], ["https://data.delijn.be/stops/201226", "https://data.delijn.be/stops/201227"], ["https://data.delijn.be/stops/104200", "https://data.delijn.be/stops/104205"], ["https://data.delijn.be/stops/400600", "https://data.delijn.be/stops/400620"], ["https://data.delijn.be/stops/204177", "https://data.delijn.be/stops/205177"], ["https://data.delijn.be/stops/109852", "https://data.delijn.be/stops/109892"], ["https://data.delijn.be/stops/300199", "https://data.delijn.be/stops/302153"], ["https://data.delijn.be/stops/408034", "https://data.delijn.be/stops/408166"], ["https://data.delijn.be/stops/304615", "https://data.delijn.be/stops/304652"], ["https://data.delijn.be/stops/208450", "https://data.delijn.be/stops/208878"], ["https://data.delijn.be/stops/301492", "https://data.delijn.be/stops/301498"], ["https://data.delijn.be/stops/501008", "https://data.delijn.be/stops/506215"], ["https://data.delijn.be/stops/200376", "https://data.delijn.be/stops/201342"], ["https://data.delijn.be/stops/304898", "https://data.delijn.be/stops/306405"], ["https://data.delijn.be/stops/407687", "https://data.delijn.be/stops/407688"], ["https://data.delijn.be/stops/400504", "https://data.delijn.be/stops/400505"], ["https://data.delijn.be/stops/301457", "https://data.delijn.be/stops/301498"], ["https://data.delijn.be/stops/202248", "https://data.delijn.be/stops/202249"], ["https://data.delijn.be/stops/306880", "https://data.delijn.be/stops/306881"], ["https://data.delijn.be/stops/300001", "https://data.delijn.be/stops/300002"], ["https://data.delijn.be/stops/102178", "https://data.delijn.be/stops/104955"], ["https://data.delijn.be/stops/202352", "https://data.delijn.be/stops/211046"], ["https://data.delijn.be/stops/202634", "https://data.delijn.be/stops/205066"], ["https://data.delijn.be/stops/106697", "https://data.delijn.be/stops/106700"], ["https://data.delijn.be/stops/204174", "https://data.delijn.be/stops/205390"], ["https://data.delijn.be/stops/208033", "https://data.delijn.be/stops/208034"], ["https://data.delijn.be/stops/408453", "https://data.delijn.be/stops/410217"], ["https://data.delijn.be/stops/408854", "https://data.delijn.be/stops/408861"], ["https://data.delijn.be/stops/400684", "https://data.delijn.be/stops/406624"], ["https://data.delijn.be/stops/402967", "https://data.delijn.be/stops/402968"], ["https://data.delijn.be/stops/501640", "https://data.delijn.be/stops/501665"], ["https://data.delijn.be/stops/202125", "https://data.delijn.be/stops/203125"], ["https://data.delijn.be/stops/300358", "https://data.delijn.be/stops/307646"], ["https://data.delijn.be/stops/508201", "https://data.delijn.be/stops/508882"], ["https://data.delijn.be/stops/403647", "https://data.delijn.be/stops/408067"], ["https://data.delijn.be/stops/102199", "https://data.delijn.be/stops/105795"], ["https://data.delijn.be/stops/405200", "https://data.delijn.be/stops/405290"], ["https://data.delijn.be/stops/206273", "https://data.delijn.be/stops/207243"], ["https://data.delijn.be/stops/302558", "https://data.delijn.be/stops/305456"], ["https://data.delijn.be/stops/407491", "https://data.delijn.be/stops/408566"], ["https://data.delijn.be/stops/304467", "https://data.delijn.be/stops/304557"], ["https://data.delijn.be/stops/107173", "https://data.delijn.be/stops/107731"], ["https://data.delijn.be/stops/301103", "https://data.delijn.be/stops/306335"], ["https://data.delijn.be/stops/206396", "https://data.delijn.be/stops/207396"], ["https://data.delijn.be/stops/108869", "https://data.delijn.be/stops/108871"], ["https://data.delijn.be/stops/301240", "https://data.delijn.be/stops/306326"], ["https://data.delijn.be/stops/305425", "https://data.delijn.be/stops/305427"], ["https://data.delijn.be/stops/403214", "https://data.delijn.be/stops/403368"], ["https://data.delijn.be/stops/209463", "https://data.delijn.be/stops/209684"], ["https://data.delijn.be/stops/105130", "https://data.delijn.be/stops/105135"], ["https://data.delijn.be/stops/403920", "https://data.delijn.be/stops/403921"], ["https://data.delijn.be/stops/206192", "https://data.delijn.be/stops/207192"], ["https://data.delijn.be/stops/505375", "https://data.delijn.be/stops/505991"], ["https://data.delijn.be/stops/401248", "https://data.delijn.be/stops/401339"], ["https://data.delijn.be/stops/101365", "https://data.delijn.be/stops/102825"], ["https://data.delijn.be/stops/500230", "https://data.delijn.be/stops/590330"], ["https://data.delijn.be/stops/305161", "https://data.delijn.be/stops/305217"], ["https://data.delijn.be/stops/201475", "https://data.delijn.be/stops/209862"], ["https://data.delijn.be/stops/105704", "https://data.delijn.be/stops/106074"], ["https://data.delijn.be/stops/401872", "https://data.delijn.be/stops/406336"], ["https://data.delijn.be/stops/500955", "https://data.delijn.be/stops/508280"], ["https://data.delijn.be/stops/402249", "https://data.delijn.be/stops/402483"], ["https://data.delijn.be/stops/305148", "https://data.delijn.be/stops/305170"], ["https://data.delijn.be/stops/104338", "https://data.delijn.be/stops/105904"], ["https://data.delijn.be/stops/101919", "https://data.delijn.be/stops/107324"], ["https://data.delijn.be/stops/503060", "https://data.delijn.be/stops/509948"], ["https://data.delijn.be/stops/107579", "https://data.delijn.be/stops/107581"], ["https://data.delijn.be/stops/306053", "https://data.delijn.be/stops/306304"], ["https://data.delijn.be/stops/407801", "https://data.delijn.be/stops/407806"], ["https://data.delijn.be/stops/108656", "https://data.delijn.be/stops/304303"], ["https://data.delijn.be/stops/103583", "https://data.delijn.be/stops/109412"], ["https://data.delijn.be/stops/204059", "https://data.delijn.be/stops/205725"], ["https://data.delijn.be/stops/403923", "https://data.delijn.be/stops/404015"], ["https://data.delijn.be/stops/501014", "https://data.delijn.be/stops/506019"], ["https://data.delijn.be/stops/507230", "https://data.delijn.be/stops/507917"], ["https://data.delijn.be/stops/108823", "https://data.delijn.be/stops/108825"], ["https://data.delijn.be/stops/206486", "https://data.delijn.be/stops/207486"], ["https://data.delijn.be/stops/102174", "https://data.delijn.be/stops/109362"], ["https://data.delijn.be/stops/503463", "https://data.delijn.be/stops/508978"], ["https://data.delijn.be/stops/108435", "https://data.delijn.be/stops/108590"], ["https://data.delijn.be/stops/300729", "https://data.delijn.be/stops/304937"], ["https://data.delijn.be/stops/208584", "https://data.delijn.be/stops/209677"], ["https://data.delijn.be/stops/106432", "https://data.delijn.be/stops/106500"], ["https://data.delijn.be/stops/103763", "https://data.delijn.be/stops/103764"], ["https://data.delijn.be/stops/503577", "https://data.delijn.be/stops/503600"], ["https://data.delijn.be/stops/501393", "https://data.delijn.be/stops/509797"], ["https://data.delijn.be/stops/202082", "https://data.delijn.be/stops/202084"], ["https://data.delijn.be/stops/200539", "https://data.delijn.be/stops/201527"], ["https://data.delijn.be/stops/108312", "https://data.delijn.be/stops/108314"], ["https://data.delijn.be/stops/403228", "https://data.delijn.be/stops/410325"], ["https://data.delijn.be/stops/404511", "https://data.delijn.be/stops/406979"], ["https://data.delijn.be/stops/400351", "https://data.delijn.be/stops/406866"], ["https://data.delijn.be/stops/407927", "https://data.delijn.be/stops/408042"], ["https://data.delijn.be/stops/404592", "https://data.delijn.be/stops/404993"], ["https://data.delijn.be/stops/502675", "https://data.delijn.be/stops/502798"], ["https://data.delijn.be/stops/502195", "https://data.delijn.be/stops/505922"], ["https://data.delijn.be/stops/102499", "https://data.delijn.be/stops/407513"], ["https://data.delijn.be/stops/406068", "https://data.delijn.be/stops/406367"], ["https://data.delijn.be/stops/507393", "https://data.delijn.be/stops/507405"], ["https://data.delijn.be/stops/203163", "https://data.delijn.be/stops/205070"], ["https://data.delijn.be/stops/400140", "https://data.delijn.be/stops/406362"], ["https://data.delijn.be/stops/102253", "https://data.delijn.be/stops/108289"], ["https://data.delijn.be/stops/303844", "https://data.delijn.be/stops/303962"], ["https://data.delijn.be/stops/101538", "https://data.delijn.be/stops/108267"], ["https://data.delijn.be/stops/506677", "https://data.delijn.be/stops/506782"], ["https://data.delijn.be/stops/104094", "https://data.delijn.be/stops/104099"], ["https://data.delijn.be/stops/108649", "https://data.delijn.be/stops/304339"], ["https://data.delijn.be/stops/200900", "https://data.delijn.be/stops/505512"], ["https://data.delijn.be/stops/504765", "https://data.delijn.be/stops/508530"], ["https://data.delijn.be/stops/200548", "https://data.delijn.be/stops/201548"], ["https://data.delijn.be/stops/106759", "https://data.delijn.be/stops/106760"], ["https://data.delijn.be/stops/505085", "https://data.delijn.be/stops/506225"], ["https://data.delijn.be/stops/306764", "https://data.delijn.be/stops/307273"], ["https://data.delijn.be/stops/108756", "https://data.delijn.be/stops/109757"], ["https://data.delijn.be/stops/101195", "https://data.delijn.be/stops/104370"], ["https://data.delijn.be/stops/507330", "https://data.delijn.be/stops/507331"], ["https://data.delijn.be/stops/401673", "https://data.delijn.be/stops/308276"], ["https://data.delijn.be/stops/404461", "https://data.delijn.be/stops/404497"], ["https://data.delijn.be/stops/401107", "https://data.delijn.be/stops/401113"], ["https://data.delijn.be/stops/300842", "https://data.delijn.be/stops/304623"], ["https://data.delijn.be/stops/402572", "https://data.delijn.be/stops/402573"], ["https://data.delijn.be/stops/101296", "https://data.delijn.be/stops/105483"], ["https://data.delijn.be/stops/504999", "https://data.delijn.be/stops/505382"], ["https://data.delijn.be/stops/107074", "https://data.delijn.be/stops/107076"], ["https://data.delijn.be/stops/206661", "https://data.delijn.be/stops/207417"], ["https://data.delijn.be/stops/304798", "https://data.delijn.be/stops/308767"], ["https://data.delijn.be/stops/200461", "https://data.delijn.be/stops/200680"], ["https://data.delijn.be/stops/402725", "https://data.delijn.be/stops/405941"], ["https://data.delijn.be/stops/206940", "https://data.delijn.be/stops/209564"], ["https://data.delijn.be/stops/504344", "https://data.delijn.be/stops/508557"], ["https://data.delijn.be/stops/201782", "https://data.delijn.be/stops/201804"], ["https://data.delijn.be/stops/303543", "https://data.delijn.be/stops/303553"], ["https://data.delijn.be/stops/206568", "https://data.delijn.be/stops/206965"], ["https://data.delijn.be/stops/204480", "https://data.delijn.be/stops/205377"], ["https://data.delijn.be/stops/303996", "https://data.delijn.be/stops/307132"], ["https://data.delijn.be/stops/203996", "https://data.delijn.be/stops/209562"], ["https://data.delijn.be/stops/409077", "https://data.delijn.be/stops/409093"], ["https://data.delijn.be/stops/204430", "https://data.delijn.be/stops/205766"], ["https://data.delijn.be/stops/107059", "https://data.delijn.be/stops/108218"], ["https://data.delijn.be/stops/200645", "https://data.delijn.be/stops/201646"], ["https://data.delijn.be/stops/303421", "https://data.delijn.be/stops/303425"], ["https://data.delijn.be/stops/303095", "https://data.delijn.be/stops/303107"], ["https://data.delijn.be/stops/504853", "https://data.delijn.be/stops/505242"], ["https://data.delijn.be/stops/200736", "https://data.delijn.be/stops/202593"], ["https://data.delijn.be/stops/202484", "https://data.delijn.be/stops/203340"], ["https://data.delijn.be/stops/101494", "https://data.delijn.be/stops/102251"], ["https://data.delijn.be/stops/501213", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/200956", "https://data.delijn.be/stops/202392"], ["https://data.delijn.be/stops/102230", "https://data.delijn.be/stops/102972"], ["https://data.delijn.be/stops/406357", "https://data.delijn.be/stops/406367"], ["https://data.delijn.be/stops/505052", "https://data.delijn.be/stops/507278"], ["https://data.delijn.be/stops/102246", "https://data.delijn.be/stops/105933"], ["https://data.delijn.be/stops/503306", "https://data.delijn.be/stops/508308"], ["https://data.delijn.be/stops/202249", "https://data.delijn.be/stops/203249"], ["https://data.delijn.be/stops/101557", "https://data.delijn.be/stops/104258"], ["https://data.delijn.be/stops/301872", "https://data.delijn.be/stops/304326"], ["https://data.delijn.be/stops/504399", "https://data.delijn.be/stops/509440"], ["https://data.delijn.be/stops/501138", "https://data.delijn.be/stops/506127"], ["https://data.delijn.be/stops/504561", "https://data.delijn.be/stops/504565"], ["https://data.delijn.be/stops/302361", "https://data.delijn.be/stops/302367"], ["https://data.delijn.be/stops/306279", "https://data.delijn.be/stops/306319"], ["https://data.delijn.be/stops/409346", "https://data.delijn.be/stops/409347"], ["https://data.delijn.be/stops/300614", "https://data.delijn.be/stops/306800"], ["https://data.delijn.be/stops/102634", "https://data.delijn.be/stops/102637"], ["https://data.delijn.be/stops/101725", "https://data.delijn.be/stops/104470"], ["https://data.delijn.be/stops/505015", "https://data.delijn.be/stops/505672"], ["https://data.delijn.be/stops/202722", "https://data.delijn.be/stops/203087"], ["https://data.delijn.be/stops/200603", "https://data.delijn.be/stops/201940"], ["https://data.delijn.be/stops/407721", "https://data.delijn.be/stops/407764"], ["https://data.delijn.be/stops/204316", "https://data.delijn.be/stops/205055"], ["https://data.delijn.be/stops/206756", "https://data.delijn.be/stops/207621"], ["https://data.delijn.be/stops/307752", "https://data.delijn.be/stops/307754"], ["https://data.delijn.be/stops/206231", "https://data.delijn.be/stops/300160"], ["https://data.delijn.be/stops/204760", "https://data.delijn.be/stops/205758"], ["https://data.delijn.be/stops/204766", "https://data.delijn.be/stops/205424"], ["https://data.delijn.be/stops/406914", "https://data.delijn.be/stops/406915"], ["https://data.delijn.be/stops/108078", "https://data.delijn.be/stops/108079"], ["https://data.delijn.be/stops/301493", "https://data.delijn.be/stops/308071"], ["https://data.delijn.be/stops/106838", "https://data.delijn.be/stops/106840"], ["https://data.delijn.be/stops/305666", "https://data.delijn.be/stops/305667"], ["https://data.delijn.be/stops/210067", "https://data.delijn.be/stops/505668"], ["https://data.delijn.be/stops/401018", "https://data.delijn.be/stops/403735"], ["https://data.delijn.be/stops/101809", "https://data.delijn.be/stops/108119"], ["https://data.delijn.be/stops/107713", "https://data.delijn.be/stops/107714"], ["https://data.delijn.be/stops/402134", "https://data.delijn.be/stops/402136"], ["https://data.delijn.be/stops/109820", "https://data.delijn.be/stops/109824"], ["https://data.delijn.be/stops/406939", "https://data.delijn.be/stops/407331"], ["https://data.delijn.be/stops/208463", "https://data.delijn.be/stops/209463"], ["https://data.delijn.be/stops/102882", "https://data.delijn.be/stops/104773"], ["https://data.delijn.be/stops/203021", "https://data.delijn.be/stops/203023"], ["https://data.delijn.be/stops/102909", "https://data.delijn.be/stops/103895"], ["https://data.delijn.be/stops/405702", "https://data.delijn.be/stops/405741"], ["https://data.delijn.be/stops/303638", "https://data.delijn.be/stops/303639"], ["https://data.delijn.be/stops/201333", "https://data.delijn.be/stops/211105"], ["https://data.delijn.be/stops/201860", "https://data.delijn.be/stops/210035"], ["https://data.delijn.be/stops/205041", "https://data.delijn.be/stops/205042"], ["https://data.delijn.be/stops/206231", "https://data.delijn.be/stops/207803"], ["https://data.delijn.be/stops/502676", "https://data.delijn.be/stops/507613"], ["https://data.delijn.be/stops/402703", "https://data.delijn.be/stops/403922"], ["https://data.delijn.be/stops/305770", "https://data.delijn.be/stops/305771"], ["https://data.delijn.be/stops/406042", "https://data.delijn.be/stops/407862"], ["https://data.delijn.be/stops/202244", "https://data.delijn.be/stops/203159"], ["https://data.delijn.be/stops/200719", "https://data.delijn.be/stops/202620"], ["https://data.delijn.be/stops/501563", "https://data.delijn.be/stops/506176"], ["https://data.delijn.be/stops/302869", "https://data.delijn.be/stops/304177"], ["https://data.delijn.be/stops/404792", "https://data.delijn.be/stops/404793"], ["https://data.delijn.be/stops/101832", "https://data.delijn.be/stops/108189"], ["https://data.delijn.be/stops/302377", "https://data.delijn.be/stops/307842"], ["https://data.delijn.be/stops/202832", "https://data.delijn.be/stops/203832"], ["https://data.delijn.be/stops/202241", "https://data.delijn.be/stops/203241"], ["https://data.delijn.be/stops/505804", "https://data.delijn.be/stops/508847"], ["https://data.delijn.be/stops/300861", "https://data.delijn.be/stops/307232"], ["https://data.delijn.be/stops/404706", "https://data.delijn.be/stops/404721"], ["https://data.delijn.be/stops/208350", "https://data.delijn.be/stops/209349"], ["https://data.delijn.be/stops/504867", "https://data.delijn.be/stops/508586"], ["https://data.delijn.be/stops/208812", "https://data.delijn.be/stops/208814"], ["https://data.delijn.be/stops/109720", "https://data.delijn.be/stops/109724"], ["https://data.delijn.be/stops/109195", "https://data.delijn.be/stops/109197"], ["https://data.delijn.be/stops/505929", "https://data.delijn.be/stops/507709"], ["https://data.delijn.be/stops/301848", "https://data.delijn.be/stops/302465"], ["https://data.delijn.be/stops/502569", "https://data.delijn.be/stops/502572"], ["https://data.delijn.be/stops/103064", "https://data.delijn.be/stops/104034"], ["https://data.delijn.be/stops/306067", "https://data.delijn.be/stops/307553"], ["https://data.delijn.be/stops/204106", "https://data.delijn.be/stops/206396"], ["https://data.delijn.be/stops/204164", "https://data.delijn.be/stops/206274"], ["https://data.delijn.be/stops/205988", "https://data.delijn.be/stops/208789"], ["https://data.delijn.be/stops/409468", "https://data.delijn.be/stops/409470"], ["https://data.delijn.be/stops/303521", "https://data.delijn.be/stops/304175"], ["https://data.delijn.be/stops/208488", "https://data.delijn.be/stops/208489"], ["https://data.delijn.be/stops/202370", "https://data.delijn.be/stops/203999"], ["https://data.delijn.be/stops/300934", "https://data.delijn.be/stops/300935"], ["https://data.delijn.be/stops/207238", "https://data.delijn.be/stops/207813"], ["https://data.delijn.be/stops/108152", "https://data.delijn.be/stops/108153"], ["https://data.delijn.be/stops/400327", "https://data.delijn.be/stops/400361"], ["https://data.delijn.be/stops/105121", "https://data.delijn.be/stops/108889"], ["https://data.delijn.be/stops/107156", "https://data.delijn.be/stops/107158"], ["https://data.delijn.be/stops/105041", "https://data.delijn.be/stops/105124"], ["https://data.delijn.be/stops/504243", "https://data.delijn.be/stops/504483"], ["https://data.delijn.be/stops/301293", "https://data.delijn.be/stops/301901"], ["https://data.delijn.be/stops/304597", "https://data.delijn.be/stops/304717"], ["https://data.delijn.be/stops/204481", "https://data.delijn.be/stops/205757"], ["https://data.delijn.be/stops/502331", "https://data.delijn.be/stops/507320"], ["https://data.delijn.be/stops/107004", "https://data.delijn.be/stops/107328"], ["https://data.delijn.be/stops/401772", "https://data.delijn.be/stops/406329"], ["https://data.delijn.be/stops/504319", "https://data.delijn.be/stops/505828"], ["https://data.delijn.be/stops/201879", "https://data.delijn.be/stops/202667"], ["https://data.delijn.be/stops/107575", "https://data.delijn.be/stops/109432"], ["https://data.delijn.be/stops/402810", "https://data.delijn.be/stops/409028"], ["https://data.delijn.be/stops/408167", "https://data.delijn.be/stops/410344"], ["https://data.delijn.be/stops/503606", "https://data.delijn.be/stops/509978"], ["https://data.delijn.be/stops/102410", "https://data.delijn.be/stops/102973"], ["https://data.delijn.be/stops/203115", "https://data.delijn.be/stops/204797"], ["https://data.delijn.be/stops/200802", "https://data.delijn.be/stops/203063"], ["https://data.delijn.be/stops/306663", "https://data.delijn.be/stops/306664"], ["https://data.delijn.be/stops/504292", "https://data.delijn.be/stops/504296"], ["https://data.delijn.be/stops/106889", "https://data.delijn.be/stops/106891"], ["https://data.delijn.be/stops/308135", "https://data.delijn.be/stops/308137"], ["https://data.delijn.be/stops/401767", "https://data.delijn.be/stops/406333"], ["https://data.delijn.be/stops/200677", "https://data.delijn.be/stops/201833"], ["https://data.delijn.be/stops/202713", "https://data.delijn.be/stops/203713"], ["https://data.delijn.be/stops/502683", "https://data.delijn.be/stops/507187"], ["https://data.delijn.be/stops/101834", "https://data.delijn.be/stops/107086"], ["https://data.delijn.be/stops/202977", "https://data.delijn.be/stops/203977"], ["https://data.delijn.be/stops/107029", "https://data.delijn.be/stops/107031"], ["https://data.delijn.be/stops/401183", "https://data.delijn.be/stops/401188"], ["https://data.delijn.be/stops/500947", "https://data.delijn.be/stops/504150"], ["https://data.delijn.be/stops/301608", "https://data.delijn.be/stops/306260"], ["https://data.delijn.be/stops/106461", "https://data.delijn.be/stops/106463"], ["https://data.delijn.be/stops/402838", "https://data.delijn.be/stops/402839"], ["https://data.delijn.be/stops/101426", "https://data.delijn.be/stops/108715"], ["https://data.delijn.be/stops/408851", "https://data.delijn.be/stops/408913"], ["https://data.delijn.be/stops/109628", "https://data.delijn.be/stops/109630"], ["https://data.delijn.be/stops/302792", "https://data.delijn.be/stops/305429"], ["https://data.delijn.be/stops/407933", "https://data.delijn.be/stops/410344"], ["https://data.delijn.be/stops/208025", "https://data.delijn.be/stops/208029"], ["https://data.delijn.be/stops/206707", "https://data.delijn.be/stops/207614"], ["https://data.delijn.be/stops/202406", "https://data.delijn.be/stops/203013"], ["https://data.delijn.be/stops/402558", "https://data.delijn.be/stops/402567"], ["https://data.delijn.be/stops/504148", "https://data.delijn.be/stops/505710"], ["https://data.delijn.be/stops/106857", "https://data.delijn.be/stops/109542"], ["https://data.delijn.be/stops/101228", "https://data.delijn.be/stops/109912"], ["https://data.delijn.be/stops/104879", "https://data.delijn.be/stops/105296"], ["https://data.delijn.be/stops/101482", "https://data.delijn.be/stops/109288"], ["https://data.delijn.be/stops/200049", "https://data.delijn.be/stops/200191"], ["https://data.delijn.be/stops/405718", "https://data.delijn.be/stops/405719"], ["https://data.delijn.be/stops/303722", "https://data.delijn.be/stops/303769"], ["https://data.delijn.be/stops/103158", "https://data.delijn.be/stops/406777"], ["https://data.delijn.be/stops/104239", "https://data.delijn.be/stops/106787"], ["https://data.delijn.be/stops/101523", "https://data.delijn.be/stops/109642"], ["https://data.delijn.be/stops/208214", "https://data.delijn.be/stops/209211"], ["https://data.delijn.be/stops/205134", "https://data.delijn.be/stops/205147"], ["https://data.delijn.be/stops/300269", "https://data.delijn.be/stops/307113"], ["https://data.delijn.be/stops/107279", "https://data.delijn.be/stops/107283"], ["https://data.delijn.be/stops/204479", "https://data.delijn.be/stops/205459"], ["https://data.delijn.be/stops/303535", "https://data.delijn.be/stops/303548"], ["https://data.delijn.be/stops/405842", "https://data.delijn.be/stops/409755"], ["https://data.delijn.be/stops/400734", "https://data.delijn.be/stops/400810"], ["https://data.delijn.be/stops/406748", "https://data.delijn.be/stops/408475"], ["https://data.delijn.be/stops/504837", "https://data.delijn.be/stops/508480"], ["https://data.delijn.be/stops/304566", "https://data.delijn.be/stops/304603"], ["https://data.delijn.be/stops/302560", "https://data.delijn.be/stops/306589"], ["https://data.delijn.be/stops/108472", "https://data.delijn.be/stops/108473"], ["https://data.delijn.be/stops/204398", "https://data.delijn.be/stops/204399"], ["https://data.delijn.be/stops/208773", "https://data.delijn.be/stops/208834"], ["https://data.delijn.be/stops/108469", "https://data.delijn.be/stops/108488"], ["https://data.delijn.be/stops/204978", "https://data.delijn.be/stops/209244"], ["https://data.delijn.be/stops/404208", "https://data.delijn.be/stops/404244"], ["https://data.delijn.be/stops/101344", "https://data.delijn.be/stops/108067"], ["https://data.delijn.be/stops/105901", "https://data.delijn.be/stops/105904"], ["https://data.delijn.be/stops/200222", "https://data.delijn.be/stops/201222"], ["https://data.delijn.be/stops/304815", "https://data.delijn.be/stops/304853"], ["https://data.delijn.be/stops/104472", "https://data.delijn.be/stops/307524"], ["https://data.delijn.be/stops/507327", "https://data.delijn.be/stops/507329"], ["https://data.delijn.be/stops/206364", "https://data.delijn.be/stops/207364"], ["https://data.delijn.be/stops/508507", "https://data.delijn.be/stops/508512"], ["https://data.delijn.be/stops/102217", "https://data.delijn.be/stops/105648"], ["https://data.delijn.be/stops/506351", "https://data.delijn.be/stops/506501"], ["https://data.delijn.be/stops/507555", "https://data.delijn.be/stops/507558"], ["https://data.delijn.be/stops/202346", "https://data.delijn.be/stops/204975"], ["https://data.delijn.be/stops/208389", "https://data.delijn.be/stops/208390"], ["https://data.delijn.be/stops/206248", "https://data.delijn.be/stops/216019"], ["https://data.delijn.be/stops/401344", "https://data.delijn.be/stops/401345"], ["https://data.delijn.be/stops/108694", "https://data.delijn.be/stops/108698"], ["https://data.delijn.be/stops/404095", "https://data.delijn.be/stops/409282"], ["https://data.delijn.be/stops/502570", "https://data.delijn.be/stops/507257"], ["https://data.delijn.be/stops/501632", "https://data.delijn.be/stops/506632"], ["https://data.delijn.be/stops/407469", "https://data.delijn.be/stops/409859"], ["https://data.delijn.be/stops/404325", "https://data.delijn.be/stops/404370"], ["https://data.delijn.be/stops/206730", "https://data.delijn.be/stops/207978"], ["https://data.delijn.be/stops/504940", "https://data.delijn.be/stops/505558"], ["https://data.delijn.be/stops/502398", "https://data.delijn.be/stops/507398"], ["https://data.delijn.be/stops/104037", "https://data.delijn.be/stops/108094"], ["https://data.delijn.be/stops/505672", "https://data.delijn.be/stops/505766"], ["https://data.delijn.be/stops/300540", "https://data.delijn.be/stops/304888"], ["https://data.delijn.be/stops/401443", "https://data.delijn.be/stops/401633"], ["https://data.delijn.be/stops/103218", "https://data.delijn.be/stops/107361"], ["https://data.delijn.be/stops/200183", "https://data.delijn.be/stops/201183"], ["https://data.delijn.be/stops/106171", "https://data.delijn.be/stops/106298"], ["https://data.delijn.be/stops/501618", "https://data.delijn.be/stops/506015"], ["https://data.delijn.be/stops/503786", "https://data.delijn.be/stops/508595"], ["https://data.delijn.be/stops/504828", "https://data.delijn.be/stops/509456"], ["https://data.delijn.be/stops/507914", "https://data.delijn.be/stops/509758"], ["https://data.delijn.be/stops/501261", "https://data.delijn.be/stops/501683"], ["https://data.delijn.be/stops/108210", "https://data.delijn.be/stops/109115"], ["https://data.delijn.be/stops/302751", "https://data.delijn.be/stops/302752"], ["https://data.delijn.be/stops/209414", "https://data.delijn.be/stops/209415"], ["https://data.delijn.be/stops/200112", "https://data.delijn.be/stops/201112"], ["https://data.delijn.be/stops/206075", "https://data.delijn.be/stops/207075"], ["https://data.delijn.be/stops/200961", "https://data.delijn.be/stops/201959"], ["https://data.delijn.be/stops/104738", "https://data.delijn.be/stops/107334"], ["https://data.delijn.be/stops/102737", "https://data.delijn.be/stops/102739"], ["https://data.delijn.be/stops/308275", "https://data.delijn.be/stops/308276"], ["https://data.delijn.be/stops/102421", "https://data.delijn.be/stops/106257"], ["https://data.delijn.be/stops/409398", "https://data.delijn.be/stops/409442"], ["https://data.delijn.be/stops/303311", "https://data.delijn.be/stops/303312"], ["https://data.delijn.be/stops/502066", "https://data.delijn.be/stops/507072"], ["https://data.delijn.be/stops/504137", "https://data.delijn.be/stops/504146"], ["https://data.delijn.be/stops/302315", "https://data.delijn.be/stops/306180"], ["https://data.delijn.be/stops/204702", "https://data.delijn.be/stops/205702"], ["https://data.delijn.be/stops/106790", "https://data.delijn.be/stops/106797"], ["https://data.delijn.be/stops/409767", "https://data.delijn.be/stops/409768"], ["https://data.delijn.be/stops/402833", "https://data.delijn.be/stops/409009"], ["https://data.delijn.be/stops/304585", "https://data.delijn.be/stops/304613"], ["https://data.delijn.be/stops/502534", "https://data.delijn.be/stops/502798"], ["https://data.delijn.be/stops/409786", "https://data.delijn.be/stops/409787"], ["https://data.delijn.be/stops/403151", "https://data.delijn.be/stops/407586"], ["https://data.delijn.be/stops/108093", "https://data.delijn.be/stops/108391"], ["https://data.delijn.be/stops/107711", "https://data.delijn.be/stops/107713"], ["https://data.delijn.be/stops/303168", "https://data.delijn.be/stops/303169"], ["https://data.delijn.be/stops/101643", "https://data.delijn.be/stops/101644"], ["https://data.delijn.be/stops/503991", "https://data.delijn.be/stops/508991"], ["https://data.delijn.be/stops/208260", "https://data.delijn.be/stops/209261"], ["https://data.delijn.be/stops/504335", "https://data.delijn.be/stops/509331"], ["https://data.delijn.be/stops/108416", "https://data.delijn.be/stops/108421"], ["https://data.delijn.be/stops/505224", "https://data.delijn.be/stops/505787"], ["https://data.delijn.be/stops/400726", "https://data.delijn.be/stops/400728"], ["https://data.delijn.be/stops/209032", "https://data.delijn.be/stops/209033"], ["https://data.delijn.be/stops/205231", "https://data.delijn.be/stops/205250"], ["https://data.delijn.be/stops/208535", "https://data.delijn.be/stops/209619"], ["https://data.delijn.be/stops/303162", "https://data.delijn.be/stops/303163"], ["https://data.delijn.be/stops/301268", "https://data.delijn.be/stops/308030"], ["https://data.delijn.be/stops/504051", "https://data.delijn.be/stops/504053"], ["https://data.delijn.be/stops/502230", "https://data.delijn.be/stops/505147"], ["https://data.delijn.be/stops/107659", "https://data.delijn.be/stops/109861"], ["https://data.delijn.be/stops/504683", "https://data.delijn.be/stops/509127"], ["https://data.delijn.be/stops/202533", "https://data.delijn.be/stops/203532"], ["https://data.delijn.be/stops/400227", "https://data.delijn.be/stops/400235"], ["https://data.delijn.be/stops/402421", "https://data.delijn.be/stops/402434"], ["https://data.delijn.be/stops/105618", "https://data.delijn.be/stops/105622"], ["https://data.delijn.be/stops/305460", "https://data.delijn.be/stops/305581"], ["https://data.delijn.be/stops/302372", "https://data.delijn.be/stops/302382"], ["https://data.delijn.be/stops/401138", "https://data.delijn.be/stops/401139"], ["https://data.delijn.be/stops/300375", "https://data.delijn.be/stops/300376"], ["https://data.delijn.be/stops/303708", "https://data.delijn.be/stops/303740"], ["https://data.delijn.be/stops/403931", "https://data.delijn.be/stops/404086"], ["https://data.delijn.be/stops/304131", "https://data.delijn.be/stops/305847"], ["https://data.delijn.be/stops/302805", "https://data.delijn.be/stops/302810"], ["https://data.delijn.be/stops/203613", "https://data.delijn.be/stops/203614"], ["https://data.delijn.be/stops/109917", "https://data.delijn.be/stops/301151"], ["https://data.delijn.be/stops/307371", "https://data.delijn.be/stops/307372"], ["https://data.delijn.be/stops/102577", "https://data.delijn.be/stops/104093"], ["https://data.delijn.be/stops/204345", "https://data.delijn.be/stops/205345"], ["https://data.delijn.be/stops/300150", "https://data.delijn.be/stops/306855"], ["https://data.delijn.be/stops/103201", "https://data.delijn.be/stops/103376"], ["https://data.delijn.be/stops/502343", "https://data.delijn.be/stops/505172"], ["https://data.delijn.be/stops/508092", "https://data.delijn.be/stops/508198"], ["https://data.delijn.be/stops/305966", "https://data.delijn.be/stops/308144"], ["https://data.delijn.be/stops/301436", "https://data.delijn.be/stops/301441"], ["https://data.delijn.be/stops/103110", "https://data.delijn.be/stops/103795"], ["https://data.delijn.be/stops/305061", "https://data.delijn.be/stops/305065"], ["https://data.delijn.be/stops/406283", "https://data.delijn.be/stops/406285"], ["https://data.delijn.be/stops/300575", "https://data.delijn.be/stops/300584"], ["https://data.delijn.be/stops/306760", "https://data.delijn.be/stops/306761"], ["https://data.delijn.be/stops/300751", "https://data.delijn.be/stops/300752"], ["https://data.delijn.be/stops/108163", "https://data.delijn.be/stops/108164"], ["https://data.delijn.be/stops/300102", "https://data.delijn.be/stops/307733"], ["https://data.delijn.be/stops/408247", "https://data.delijn.be/stops/408249"], ["https://data.delijn.be/stops/405894", "https://data.delijn.be/stops/408245"], ["https://data.delijn.be/stops/402709", "https://data.delijn.be/stops/405997"], ["https://data.delijn.be/stops/205916", "https://data.delijn.be/stops/205923"], ["https://data.delijn.be/stops/303125", "https://data.delijn.be/stops/303934"], ["https://data.delijn.be/stops/406541", "https://data.delijn.be/stops/407434"], ["https://data.delijn.be/stops/401949", "https://data.delijn.be/stops/407338"], ["https://data.delijn.be/stops/403805", "https://data.delijn.be/stops/408597"], ["https://data.delijn.be/stops/403444", "https://data.delijn.be/stops/403445"], ["https://data.delijn.be/stops/208524", "https://data.delijn.be/stops/208525"], ["https://data.delijn.be/stops/408564", "https://data.delijn.be/stops/408565"], ["https://data.delijn.be/stops/207783", "https://data.delijn.be/stops/207784"], ["https://data.delijn.be/stops/503806", "https://data.delijn.be/stops/505542"], ["https://data.delijn.be/stops/207471", "https://data.delijn.be/stops/207472"], ["https://data.delijn.be/stops/305632", "https://data.delijn.be/stops/305633"], ["https://data.delijn.be/stops/300075", "https://data.delijn.be/stops/304566"], ["https://data.delijn.be/stops/106492", "https://data.delijn.be/stops/109712"], ["https://data.delijn.be/stops/208093", "https://data.delijn.be/stops/209093"], ["https://data.delijn.be/stops/307271", "https://data.delijn.be/stops/307273"], ["https://data.delijn.be/stops/301531", "https://data.delijn.be/stops/304957"], ["https://data.delijn.be/stops/300680", "https://data.delijn.be/stops/305829"], ["https://data.delijn.be/stops/204215", "https://data.delijn.be/stops/205176"], ["https://data.delijn.be/stops/106894", "https://data.delijn.be/stops/106895"], ["https://data.delijn.be/stops/203112", "https://data.delijn.be/stops/203113"], ["https://data.delijn.be/stops/301025", "https://data.delijn.be/stops/307461"], ["https://data.delijn.be/stops/504584", "https://data.delijn.be/stops/509584"], ["https://data.delijn.be/stops/400410", "https://data.delijn.be/stops/401600"], ["https://data.delijn.be/stops/402984", "https://data.delijn.be/stops/402986"], ["https://data.delijn.be/stops/406358", "https://data.delijn.be/stops/406400"], ["https://data.delijn.be/stops/102073", "https://data.delijn.be/stops/109717"], ["https://data.delijn.be/stops/405738", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/505549", "https://data.delijn.be/stops/508659"], ["https://data.delijn.be/stops/301223", "https://data.delijn.be/stops/301224"], ["https://data.delijn.be/stops/108111", "https://data.delijn.be/stops/108147"], ["https://data.delijn.be/stops/501596", "https://data.delijn.be/stops/505176"], ["https://data.delijn.be/stops/403717", "https://data.delijn.be/stops/403822"], ["https://data.delijn.be/stops/403440", "https://data.delijn.be/stops/403866"], ["https://data.delijn.be/stops/103229", "https://data.delijn.be/stops/103231"], ["https://data.delijn.be/stops/508876", "https://data.delijn.be/stops/508878"], ["https://data.delijn.be/stops/409386", "https://data.delijn.be/stops/409387"], ["https://data.delijn.be/stops/400115", "https://data.delijn.be/stops/406730"], ["https://data.delijn.be/stops/304998", "https://data.delijn.be/stops/304999"], ["https://data.delijn.be/stops/305873", "https://data.delijn.be/stops/305874"], ["https://data.delijn.be/stops/105315", "https://data.delijn.be/stops/105316"], ["https://data.delijn.be/stops/408253", "https://data.delijn.be/stops/408351"], ["https://data.delijn.be/stops/406678", "https://data.delijn.be/stops/409856"], ["https://data.delijn.be/stops/407972", "https://data.delijn.be/stops/306061"], ["https://data.delijn.be/stops/405684", "https://data.delijn.be/stops/408393"], ["https://data.delijn.be/stops/302185", "https://data.delijn.be/stops/302206"], ["https://data.delijn.be/stops/104487", "https://data.delijn.be/stops/303561"], ["https://data.delijn.be/stops/101000", "https://data.delijn.be/stops/104545"], ["https://data.delijn.be/stops/105478", "https://data.delijn.be/stops/105684"], ["https://data.delijn.be/stops/201782", "https://data.delijn.be/stops/219006"], ["https://data.delijn.be/stops/207790", "https://data.delijn.be/stops/209408"], ["https://data.delijn.be/stops/403490", "https://data.delijn.be/stops/403492"], ["https://data.delijn.be/stops/401025", "https://data.delijn.be/stops/407796"], ["https://data.delijn.be/stops/200860", "https://data.delijn.be/stops/203332"], ["https://data.delijn.be/stops/102232", "https://data.delijn.be/stops/105661"], ["https://data.delijn.be/stops/502187", "https://data.delijn.be/stops/507187"], ["https://data.delijn.be/stops/103027", "https://data.delijn.be/stops/107477"], ["https://data.delijn.be/stops/401764", "https://data.delijn.be/stops/401769"], ["https://data.delijn.be/stops/103203", "https://data.delijn.be/stops/107193"], ["https://data.delijn.be/stops/401587", "https://data.delijn.be/stops/401590"], ["https://data.delijn.be/stops/408508", "https://data.delijn.be/stops/408509"], ["https://data.delijn.be/stops/103640", "https://data.delijn.be/stops/104123"], ["https://data.delijn.be/stops/206943", "https://data.delijn.be/stops/207943"], ["https://data.delijn.be/stops/306964", "https://data.delijn.be/stops/306965"], ["https://data.delijn.be/stops/307447", "https://data.delijn.be/stops/308274"], ["https://data.delijn.be/stops/405804", "https://data.delijn.be/stops/405810"], ["https://data.delijn.be/stops/500159", "https://data.delijn.be/stops/503549"], ["https://data.delijn.be/stops/306700", "https://data.delijn.be/stops/307934"], ["https://data.delijn.be/stops/302212", "https://data.delijn.be/stops/302215"], ["https://data.delijn.be/stops/406239", "https://data.delijn.be/stops/410044"], ["https://data.delijn.be/stops/307891", "https://data.delijn.be/stops/307892"], ["https://data.delijn.be/stops/504270", "https://data.delijn.be/stops/504273"], ["https://data.delijn.be/stops/204974", "https://data.delijn.be/stops/208244"], ["https://data.delijn.be/stops/203130", "https://data.delijn.be/stops/203276"], ["https://data.delijn.be/stops/302615", "https://data.delijn.be/stops/302617"], ["https://data.delijn.be/stops/404528", "https://data.delijn.be/stops/404529"], ["https://data.delijn.be/stops/401795", "https://data.delijn.be/stops/406352"], ["https://data.delijn.be/stops/207551", "https://data.delijn.be/stops/209744"], ["https://data.delijn.be/stops/302749", "https://data.delijn.be/stops/302757"], ["https://data.delijn.be/stops/408841", "https://data.delijn.be/stops/408847"], ["https://data.delijn.be/stops/409435", "https://data.delijn.be/stops/409722"], ["https://data.delijn.be/stops/504303", "https://data.delijn.be/stops/508064"], ["https://data.delijn.be/stops/304595", "https://data.delijn.be/stops/304634"], ["https://data.delijn.be/stops/204303", "https://data.delijn.be/stops/205706"], ["https://data.delijn.be/stops/206594", "https://data.delijn.be/stops/207569"], ["https://data.delijn.be/stops/301774", "https://data.delijn.be/stops/306796"], ["https://data.delijn.be/stops/105857", "https://data.delijn.be/stops/105859"], ["https://data.delijn.be/stops/201818", "https://data.delijn.be/stops/218026"], ["https://data.delijn.be/stops/104026", "https://data.delijn.be/stops/106902"], ["https://data.delijn.be/stops/302540", "https://data.delijn.be/stops/302542"], ["https://data.delijn.be/stops/408889", "https://data.delijn.be/stops/408902"], ["https://data.delijn.be/stops/308497", "https://data.delijn.be/stops/308498"], ["https://data.delijn.be/stops/504147", "https://data.delijn.be/stops/509147"], ["https://data.delijn.be/stops/503701", "https://data.delijn.be/stops/508728"], ["https://data.delijn.be/stops/101754", "https://data.delijn.be/stops/105752"], ["https://data.delijn.be/stops/401832", "https://data.delijn.be/stops/406019"], ["https://data.delijn.be/stops/105084", "https://data.delijn.be/stops/205609"], ["https://data.delijn.be/stops/107300", "https://data.delijn.be/stops/109030"], ["https://data.delijn.be/stops/204007", "https://data.delijn.be/stops/205699"], ["https://data.delijn.be/stops/502228", "https://data.delijn.be/stops/509931"], ["https://data.delijn.be/stops/206336", "https://data.delijn.be/stops/207336"], ["https://data.delijn.be/stops/206647", "https://data.delijn.be/stops/207487"], ["https://data.delijn.be/stops/304673", "https://data.delijn.be/stops/304678"], ["https://data.delijn.be/stops/302226", "https://data.delijn.be/stops/302244"], ["https://data.delijn.be/stops/303219", "https://data.delijn.be/stops/306167"], ["https://data.delijn.be/stops/302966", "https://data.delijn.be/stops/308660"], ["https://data.delijn.be/stops/304346", "https://data.delijn.be/stops/307344"], ["https://data.delijn.be/stops/104605", "https://data.delijn.be/stops/109600"], ["https://data.delijn.be/stops/405238", "https://data.delijn.be/stops/405295"], ["https://data.delijn.be/stops/104035", "https://data.delijn.be/stops/104140"], ["https://data.delijn.be/stops/102829", "https://data.delijn.be/stops/104785"], ["https://data.delijn.be/stops/407026", "https://data.delijn.be/stops/407030"], ["https://data.delijn.be/stops/504068", "https://data.delijn.be/stops/504469"], ["https://data.delijn.be/stops/302918", "https://data.delijn.be/stops/306401"], ["https://data.delijn.be/stops/503778", "https://data.delijn.be/stops/508776"], ["https://data.delijn.be/stops/408230", "https://data.delijn.be/stops/408425"], ["https://data.delijn.be/stops/402021", "https://data.delijn.be/stops/402977"], ["https://data.delijn.be/stops/300127", "https://data.delijn.be/stops/306823"], ["https://data.delijn.be/stops/201971", "https://data.delijn.be/stops/206764"], ["https://data.delijn.be/stops/301040", "https://data.delijn.be/stops/301057"], ["https://data.delijn.be/stops/200319", "https://data.delijn.be/stops/200996"], ["https://data.delijn.be/stops/102236", "https://data.delijn.be/stops/104289"], ["https://data.delijn.be/stops/207064", "https://data.delijn.be/stops/207065"], ["https://data.delijn.be/stops/108972", "https://data.delijn.be/stops/108982"], ["https://data.delijn.be/stops/201374", "https://data.delijn.be/stops/201382"], ["https://data.delijn.be/stops/201759", "https://data.delijn.be/stops/201769"], ["https://data.delijn.be/stops/400501", "https://data.delijn.be/stops/401960"], ["https://data.delijn.be/stops/502041", "https://data.delijn.be/stops/507618"], ["https://data.delijn.be/stops/102578", "https://data.delijn.be/stops/107711"], ["https://data.delijn.be/stops/407214", "https://data.delijn.be/stops/407216"], ["https://data.delijn.be/stops/207588", "https://data.delijn.be/stops/207589"], ["https://data.delijn.be/stops/108274", "https://data.delijn.be/stops/108276"], ["https://data.delijn.be/stops/308835", "https://data.delijn.be/stops/308836"], ["https://data.delijn.be/stops/408585", "https://data.delijn.be/stops/408592"], ["https://data.delijn.be/stops/208661", "https://data.delijn.be/stops/208695"], ["https://data.delijn.be/stops/104861", "https://data.delijn.be/stops/107815"], ["https://data.delijn.be/stops/302567", "https://data.delijn.be/stops/304917"], ["https://data.delijn.be/stops/104486", "https://data.delijn.be/stops/104488"], ["https://data.delijn.be/stops/405003", "https://data.delijn.be/stops/405044"], ["https://data.delijn.be/stops/200166", "https://data.delijn.be/stops/200749"], ["https://data.delijn.be/stops/207782", "https://data.delijn.be/stops/208190"], ["https://data.delijn.be/stops/404308", "https://data.delijn.be/stops/404370"], ["https://data.delijn.be/stops/405588", "https://data.delijn.be/stops/405602"], ["https://data.delijn.be/stops/204296", "https://data.delijn.be/stops/205496"], ["https://data.delijn.be/stops/502505", "https://data.delijn.be/stops/507509"], ["https://data.delijn.be/stops/503742", "https://data.delijn.be/stops/508710"], ["https://data.delijn.be/stops/302456", "https://data.delijn.be/stops/302458"], ["https://data.delijn.be/stops/200071", "https://data.delijn.be/stops/201071"], ["https://data.delijn.be/stops/202052", "https://data.delijn.be/stops/203052"], ["https://data.delijn.be/stops/206218", "https://data.delijn.be/stops/206461"], ["https://data.delijn.be/stops/401066", "https://data.delijn.be/stops/406659"], ["https://data.delijn.be/stops/202133", "https://data.delijn.be/stops/203133"], ["https://data.delijn.be/stops/202456", "https://data.delijn.be/stops/203456"], ["https://data.delijn.be/stops/200237", "https://data.delijn.be/stops/204925"], ["https://data.delijn.be/stops/302733", "https://data.delijn.be/stops/302745"], ["https://data.delijn.be/stops/507221", "https://data.delijn.be/stops/507224"], ["https://data.delijn.be/stops/506087", "https://data.delijn.be/stops/506092"], ["https://data.delijn.be/stops/406329", "https://data.delijn.be/stops/406333"], ["https://data.delijn.be/stops/102544", "https://data.delijn.be/stops/405103"], ["https://data.delijn.be/stops/206793", "https://data.delijn.be/stops/208031"], ["https://data.delijn.be/stops/301611", "https://data.delijn.be/stops/301614"], ["https://data.delijn.be/stops/102350", "https://data.delijn.be/stops/103281"], ["https://data.delijn.be/stops/200729", "https://data.delijn.be/stops/202591"], ["https://data.delijn.be/stops/206394", "https://data.delijn.be/stops/207395"], ["https://data.delijn.be/stops/108402", "https://data.delijn.be/stops/108403"], ["https://data.delijn.be/stops/106654", "https://data.delijn.be/stops/106656"], ["https://data.delijn.be/stops/401041", "https://data.delijn.be/stops/401149"], ["https://data.delijn.be/stops/508643", "https://data.delijn.be/stops/508836"], ["https://data.delijn.be/stops/101934", "https://data.delijn.be/stops/107740"], ["https://data.delijn.be/stops/408424", "https://data.delijn.be/stops/408427"], ["https://data.delijn.be/stops/208161", "https://data.delijn.be/stops/209161"], ["https://data.delijn.be/stops/208122", "https://data.delijn.be/stops/219004"], ["https://data.delijn.be/stops/205026", "https://data.delijn.be/stops/205819"], ["https://data.delijn.be/stops/208109", "https://data.delijn.be/stops/209204"], ["https://data.delijn.be/stops/105073", "https://data.delijn.be/stops/105074"], ["https://data.delijn.be/stops/206085", "https://data.delijn.be/stops/207988"], ["https://data.delijn.be/stops/300485", "https://data.delijn.be/stops/306162"], ["https://data.delijn.be/stops/201896", "https://data.delijn.be/stops/202941"], ["https://data.delijn.be/stops/103357", "https://data.delijn.be/stops/104875"], ["https://data.delijn.be/stops/101880", "https://data.delijn.be/stops/102113"], ["https://data.delijn.be/stops/204194", "https://data.delijn.be/stops/204196"], ["https://data.delijn.be/stops/300692", "https://data.delijn.be/stops/300698"], ["https://data.delijn.be/stops/204180", "https://data.delijn.be/stops/204181"], ["https://data.delijn.be/stops/507961", "https://data.delijn.be/stops/507962"], ["https://data.delijn.be/stops/200915", "https://data.delijn.be/stops/203686"], ["https://data.delijn.be/stops/204160", "https://data.delijn.be/stops/205164"], ["https://data.delijn.be/stops/206157", "https://data.delijn.be/stops/207158"], ["https://data.delijn.be/stops/305532", "https://data.delijn.be/stops/305573"], ["https://data.delijn.be/stops/304387", "https://data.delijn.be/stops/304388"], ["https://data.delijn.be/stops/402038", "https://data.delijn.be/stops/402040"], ["https://data.delijn.be/stops/505126", "https://data.delijn.be/stops/505127"], ["https://data.delijn.be/stops/305919", "https://data.delijn.be/stops/306654"], ["https://data.delijn.be/stops/408292", "https://data.delijn.be/stops/408391"], ["https://data.delijn.be/stops/206712", "https://data.delijn.be/stops/206719"], ["https://data.delijn.be/stops/103699", "https://data.delijn.be/stops/103701"], ["https://data.delijn.be/stops/406032", "https://data.delijn.be/stops/407168"], ["https://data.delijn.be/stops/305059", "https://data.delijn.be/stops/306336"], ["https://data.delijn.be/stops/201704", "https://data.delijn.be/stops/203601"], ["https://data.delijn.be/stops/207689", "https://data.delijn.be/stops/207728"], ["https://data.delijn.be/stops/405192", "https://data.delijn.be/stops/405193"], ["https://data.delijn.be/stops/300476", "https://data.delijn.be/stops/300477"], ["https://data.delijn.be/stops/505279", "https://data.delijn.be/stops/505974"], ["https://data.delijn.be/stops/402835", "https://data.delijn.be/stops/409026"], ["https://data.delijn.be/stops/206869", "https://data.delijn.be/stops/207551"], ["https://data.delijn.be/stops/109310", "https://data.delijn.be/stops/109346"], ["https://data.delijn.be/stops/200173", "https://data.delijn.be/stops/201515"], ["https://data.delijn.be/stops/201139", "https://data.delijn.be/stops/209931"], ["https://data.delijn.be/stops/104896", "https://data.delijn.be/stops/104897"], ["https://data.delijn.be/stops/108183", "https://data.delijn.be/stops/108194"], ["https://data.delijn.be/stops/500013", "https://data.delijn.be/stops/502561"], ["https://data.delijn.be/stops/301706", "https://data.delijn.be/stops/301713"], ["https://data.delijn.be/stops/302908", "https://data.delijn.be/stops/304312"], ["https://data.delijn.be/stops/402086", "https://data.delijn.be/stops/402087"], ["https://data.delijn.be/stops/304976", "https://data.delijn.be/stops/305036"], ["https://data.delijn.be/stops/503592", "https://data.delijn.be/stops/508592"], ["https://data.delijn.be/stops/403154", "https://data.delijn.be/stops/403319"], ["https://data.delijn.be/stops/103870", "https://data.delijn.be/stops/105670"], ["https://data.delijn.be/stops/400084", "https://data.delijn.be/stops/400161"], ["https://data.delijn.be/stops/101809", "https://data.delijn.be/stops/109659"], ["https://data.delijn.be/stops/209271", "https://data.delijn.be/stops/219006"], ["https://data.delijn.be/stops/203368", "https://data.delijn.be/stops/203998"], ["https://data.delijn.be/stops/105038", "https://data.delijn.be/stops/105121"], ["https://data.delijn.be/stops/503153", "https://data.delijn.be/stops/504020"], ["https://data.delijn.be/stops/403766", "https://data.delijn.be/stops/403874"], ["https://data.delijn.be/stops/303257", "https://data.delijn.be/stops/303344"], ["https://data.delijn.be/stops/203045", "https://data.delijn.be/stops/210122"], ["https://data.delijn.be/stops/202043", "https://data.delijn.be/stops/203047"], ["https://data.delijn.be/stops/201026", "https://data.delijn.be/stops/203070"], ["https://data.delijn.be/stops/500562", "https://data.delijn.be/stops/500564"], ["https://data.delijn.be/stops/200140", "https://data.delijn.be/stops/201985"], ["https://data.delijn.be/stops/302348", "https://data.delijn.be/stops/302360"], ["https://data.delijn.be/stops/506047", "https://data.delijn.be/stops/507730"], ["https://data.delijn.be/stops/306938", "https://data.delijn.be/stops/307945"], ["https://data.delijn.be/stops/101513", "https://data.delijn.be/stops/109028"], ["https://data.delijn.be/stops/400564", "https://data.delijn.be/stops/403082"], ["https://data.delijn.be/stops/303422", "https://data.delijn.be/stops/303426"], ["https://data.delijn.be/stops/405433", "https://data.delijn.be/stops/408749"], ["https://data.delijn.be/stops/205750", "https://data.delijn.be/stops/205752"], ["https://data.delijn.be/stops/201982", "https://data.delijn.be/stops/210097"], ["https://data.delijn.be/stops/206784", "https://data.delijn.be/stops/207797"], ["https://data.delijn.be/stops/302970", "https://data.delijn.be/stops/306715"], ["https://data.delijn.be/stops/302012", "https://data.delijn.be/stops/302050"], ["https://data.delijn.be/stops/300625", "https://data.delijn.be/stops/300629"], ["https://data.delijn.be/stops/407120", "https://data.delijn.be/stops/409511"], ["https://data.delijn.be/stops/306253", "https://data.delijn.be/stops/306255"], ["https://data.delijn.be/stops/203701", "https://data.delijn.be/stops/203703"], ["https://data.delijn.be/stops/207600", "https://data.delijn.be/stops/207651"], ["https://data.delijn.be/stops/503105", "https://data.delijn.be/stops/503973"], ["https://data.delijn.be/stops/208811", "https://data.delijn.be/stops/208813"], ["https://data.delijn.be/stops/207264", "https://data.delijn.be/stops/216001"], ["https://data.delijn.be/stops/105758", "https://data.delijn.be/stops/105762"], ["https://data.delijn.be/stops/300490", "https://data.delijn.be/stops/300492"], ["https://data.delijn.be/stops/505677", "https://data.delijn.be/stops/505679"], ["https://data.delijn.be/stops/308246", "https://data.delijn.be/stops/308249"], ["https://data.delijn.be/stops/400134", "https://data.delijn.be/stops/409156"], ["https://data.delijn.be/stops/503707", "https://data.delijn.be/stops/508704"], ["https://data.delijn.be/stops/102581", "https://data.delijn.be/stops/104450"], ["https://data.delijn.be/stops/301888", "https://data.delijn.be/stops/301889"], ["https://data.delijn.be/stops/106451", "https://data.delijn.be/stops/106453"], ["https://data.delijn.be/stops/300165", "https://data.delijn.be/stops/300176"], ["https://data.delijn.be/stops/101852", "https://data.delijn.be/stops/106872"], ["https://data.delijn.be/stops/406739", "https://data.delijn.be/stops/407565"], ["https://data.delijn.be/stops/204404", "https://data.delijn.be/stops/205198"], ["https://data.delijn.be/stops/106913", "https://data.delijn.be/stops/107261"], ["https://data.delijn.be/stops/205987", "https://data.delijn.be/stops/219018"], ["https://data.delijn.be/stops/402681", "https://data.delijn.be/stops/402737"], ["https://data.delijn.be/stops/400801", "https://data.delijn.be/stops/409539"], ["https://data.delijn.be/stops/308538", "https://data.delijn.be/stops/308539"], ["https://data.delijn.be/stops/407215", "https://data.delijn.be/stops/407217"], ["https://data.delijn.be/stops/305779", "https://data.delijn.be/stops/305780"], ["https://data.delijn.be/stops/400254", "https://data.delijn.be/stops/400255"], ["https://data.delijn.be/stops/204540", "https://data.delijn.be/stops/205619"], ["https://data.delijn.be/stops/301462", "https://data.delijn.be/stops/301495"], ["https://data.delijn.be/stops/303393", "https://data.delijn.be/stops/303395"], ["https://data.delijn.be/stops/204467", "https://data.delijn.be/stops/205467"], ["https://data.delijn.be/stops/200196", "https://data.delijn.be/stops/200429"], ["https://data.delijn.be/stops/102514", "https://data.delijn.be/stops/406465"], ["https://data.delijn.be/stops/304804", "https://data.delijn.be/stops/304810"], ["https://data.delijn.be/stops/201759", "https://data.delijn.be/stops/219011"], ["https://data.delijn.be/stops/105637", "https://data.delijn.be/stops/105639"], ["https://data.delijn.be/stops/401125", "https://data.delijn.be/stops/401132"], ["https://data.delijn.be/stops/300005", "https://data.delijn.be/stops/304504"], ["https://data.delijn.be/stops/501608", "https://data.delijn.be/stops/506607"], ["https://data.delijn.be/stops/206024", "https://data.delijn.be/stops/207267"], ["https://data.delijn.be/stops/400649", "https://data.delijn.be/stops/400653"], ["https://data.delijn.be/stops/407979", "https://data.delijn.be/stops/408260"], ["https://data.delijn.be/stops/102391", "https://data.delijn.be/stops/103134"], ["https://data.delijn.be/stops/103130", "https://data.delijn.be/stops/106053"], ["https://data.delijn.be/stops/405088", "https://data.delijn.be/stops/405750"], ["https://data.delijn.be/stops/304791", "https://data.delijn.be/stops/304792"], ["https://data.delijn.be/stops/406519", "https://data.delijn.be/stops/408720"], ["https://data.delijn.be/stops/202819", "https://data.delijn.be/stops/203911"], ["https://data.delijn.be/stops/500944", "https://data.delijn.be/stops/505985"], ["https://data.delijn.be/stops/106605", "https://data.delijn.be/stops/107122"], ["https://data.delijn.be/stops/503014", "https://data.delijn.be/stops/508014"], ["https://data.delijn.be/stops/107653", "https://data.delijn.be/stops/107726"], ["https://data.delijn.be/stops/407226", "https://data.delijn.be/stops/407488"], ["https://data.delijn.be/stops/404676", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/404469", "https://data.delijn.be/stops/406665"], ["https://data.delijn.be/stops/202623", "https://data.delijn.be/stops/203623"], ["https://data.delijn.be/stops/304190", "https://data.delijn.be/stops/304720"], ["https://data.delijn.be/stops/301850", "https://data.delijn.be/stops/302465"], ["https://data.delijn.be/stops/404347", "https://data.delijn.be/stops/409690"], ["https://data.delijn.be/stops/304612", "https://data.delijn.be/stops/304628"], ["https://data.delijn.be/stops/202140", "https://data.delijn.be/stops/203175"], ["https://data.delijn.be/stops/501736", "https://data.delijn.be/stops/501737"], ["https://data.delijn.be/stops/209158", "https://data.delijn.be/stops/209159"], ["https://data.delijn.be/stops/402176", "https://data.delijn.be/stops/406868"], ["https://data.delijn.be/stops/408498", "https://data.delijn.be/stops/408503"], ["https://data.delijn.be/stops/306615", "https://data.delijn.be/stops/306627"], ["https://data.delijn.be/stops/405984", "https://data.delijn.be/stops/410320"], ["https://data.delijn.be/stops/109151", "https://data.delijn.be/stops/109152"], ["https://data.delijn.be/stops/107302", "https://data.delijn.be/stops/107303"], ["https://data.delijn.be/stops/505786", "https://data.delijn.be/stops/509342"], ["https://data.delijn.be/stops/306744", "https://data.delijn.be/stops/306745"], ["https://data.delijn.be/stops/105881", "https://data.delijn.be/stops/105882"], ["https://data.delijn.be/stops/102765", "https://data.delijn.be/stops/105870"], ["https://data.delijn.be/stops/206895", "https://data.delijn.be/stops/207886"], ["https://data.delijn.be/stops/306611", "https://data.delijn.be/stops/306631"], ["https://data.delijn.be/stops/204334", "https://data.delijn.be/stops/205334"], ["https://data.delijn.be/stops/402562", "https://data.delijn.be/stops/407804"], ["https://data.delijn.be/stops/503844", "https://data.delijn.be/stops/504991"], ["https://data.delijn.be/stops/209044", "https://data.delijn.be/stops/209081"], ["https://data.delijn.be/stops/509845", "https://data.delijn.be/stops/509847"], ["https://data.delijn.be/stops/402422", "https://data.delijn.be/stops/402423"], ["https://data.delijn.be/stops/200131", "https://data.delijn.be/stops/204556"], ["https://data.delijn.be/stops/300920", "https://data.delijn.be/stops/305887"], ["https://data.delijn.be/stops/102913", "https://data.delijn.be/stops/103531"], ["https://data.delijn.be/stops/202508", "https://data.delijn.be/stops/203508"], ["https://data.delijn.be/stops/403332", "https://data.delijn.be/stops/403347"], ["https://data.delijn.be/stops/304956", "https://data.delijn.be/stops/304958"], ["https://data.delijn.be/stops/109132", "https://data.delijn.be/stops/109419"], ["https://data.delijn.be/stops/101906", "https://data.delijn.be/stops/107112"], ["https://data.delijn.be/stops/204485", "https://data.delijn.be/stops/205489"], ["https://data.delijn.be/stops/201543", "https://data.delijn.be/stops/205929"], ["https://data.delijn.be/stops/104452", "https://data.delijn.be/stops/107524"], ["https://data.delijn.be/stops/103042", "https://data.delijn.be/stops/104598"], ["https://data.delijn.be/stops/200940", "https://data.delijn.be/stops/203704"], ["https://data.delijn.be/stops/501071", "https://data.delijn.be/stops/501736"], ["https://data.delijn.be/stops/204421", "https://data.delijn.be/stops/204422"], ["https://data.delijn.be/stops/109453", "https://data.delijn.be/stops/109456"], ["https://data.delijn.be/stops/107202", "https://data.delijn.be/stops/406795"], ["https://data.delijn.be/stops/109091", "https://data.delijn.be/stops/109092"], ["https://data.delijn.be/stops/406670", "https://data.delijn.be/stops/406677"], ["https://data.delijn.be/stops/502379", "https://data.delijn.be/stops/507381"], ["https://data.delijn.be/stops/105419", "https://data.delijn.be/stops/109824"], ["https://data.delijn.be/stops/103066", "https://data.delijn.be/stops/107390"], ["https://data.delijn.be/stops/204059", "https://data.delijn.be/stops/205723"], ["https://data.delijn.be/stops/505150", "https://data.delijn.be/stops/505825"], ["https://data.delijn.be/stops/302181", "https://data.delijn.be/stops/305161"], ["https://data.delijn.be/stops/109030", "https://data.delijn.be/stops/109040"], ["https://data.delijn.be/stops/101982", "https://data.delijn.be/stops/300069"], ["https://data.delijn.be/stops/207864", "https://data.delijn.be/stops/208586"], ["https://data.delijn.be/stops/508539", "https://data.delijn.be/stops/508559"], ["https://data.delijn.be/stops/501577", "https://data.delijn.be/stops/503820"], ["https://data.delijn.be/stops/201532", "https://data.delijn.be/stops/211091"], ["https://data.delijn.be/stops/205793", "https://data.delijn.be/stops/214016"], ["https://data.delijn.be/stops/502464", "https://data.delijn.be/stops/507660"], ["https://data.delijn.be/stops/403974", "https://data.delijn.be/stops/403976"], ["https://data.delijn.be/stops/200966", "https://data.delijn.be/stops/206796"], ["https://data.delijn.be/stops/304457", "https://data.delijn.be/stops/304462"], ["https://data.delijn.be/stops/505341", "https://data.delijn.be/stops/505761"], ["https://data.delijn.be/stops/502910", "https://data.delijn.be/stops/505704"], ["https://data.delijn.be/stops/402440", "https://data.delijn.be/stops/409599"], ["https://data.delijn.be/stops/406162", "https://data.delijn.be/stops/407305"], ["https://data.delijn.be/stops/106764", "https://data.delijn.be/stops/106864"], ["https://data.delijn.be/stops/301138", "https://data.delijn.be/stops/304705"], ["https://data.delijn.be/stops/300078", "https://data.delijn.be/stops/307343"], ["https://data.delijn.be/stops/401360", "https://data.delijn.be/stops/401366"], ["https://data.delijn.be/stops/500556", "https://data.delijn.be/stops/507946"], ["https://data.delijn.be/stops/505550", "https://data.delijn.be/stops/505553"], ["https://data.delijn.be/stops/101160", "https://data.delijn.be/stops/103115"], ["https://data.delijn.be/stops/207717", "https://data.delijn.be/stops/207718"], ["https://data.delijn.be/stops/508903", "https://data.delijn.be/stops/509190"], ["https://data.delijn.be/stops/303581", "https://data.delijn.be/stops/303584"], ["https://data.delijn.be/stops/306901", "https://data.delijn.be/stops/308721"], ["https://data.delijn.be/stops/108379", "https://data.delijn.be/stops/108382"], ["https://data.delijn.be/stops/208097", "https://data.delijn.be/stops/209008"], ["https://data.delijn.be/stops/204755", "https://data.delijn.be/stops/205756"], ["https://data.delijn.be/stops/303844", "https://data.delijn.be/stops/303856"], ["https://data.delijn.be/stops/502582", "https://data.delijn.be/stops/507573"], ["https://data.delijn.be/stops/206704", "https://data.delijn.be/stops/307028"], ["https://data.delijn.be/stops/200067", "https://data.delijn.be/stops/201098"], ["https://data.delijn.be/stops/307987", "https://data.delijn.be/stops/307988"], ["https://data.delijn.be/stops/207732", "https://data.delijn.be/stops/303871"], ["https://data.delijn.be/stops/404896", "https://data.delijn.be/stops/404897"], ["https://data.delijn.be/stops/102440", "https://data.delijn.be/stops/102445"], ["https://data.delijn.be/stops/105938", "https://data.delijn.be/stops/105939"], ["https://data.delijn.be/stops/400512", "https://data.delijn.be/stops/402641"], ["https://data.delijn.be/stops/300794", "https://data.delijn.be/stops/300796"], ["https://data.delijn.be/stops/501453", "https://data.delijn.be/stops/506448"], ["https://data.delijn.be/stops/401455", "https://data.delijn.be/stops/401458"], ["https://data.delijn.be/stops/204717", "https://data.delijn.be/stops/205716"], ["https://data.delijn.be/stops/102919", "https://data.delijn.be/stops/103275"], ["https://data.delijn.be/stops/304544", "https://data.delijn.be/stops/304548"], ["https://data.delijn.be/stops/306688", "https://data.delijn.be/stops/309671"], ["https://data.delijn.be/stops/405153", "https://data.delijn.be/stops/405154"], ["https://data.delijn.be/stops/104404", "https://data.delijn.be/stops/204336"], ["https://data.delijn.be/stops/102145", "https://data.delijn.be/stops/102150"], ["https://data.delijn.be/stops/507748", "https://data.delijn.be/stops/508023"], ["https://data.delijn.be/stops/201562", "https://data.delijn.be/stops/204997"], ["https://data.delijn.be/stops/208220", "https://data.delijn.be/stops/209043"], ["https://data.delijn.be/stops/206142", "https://data.delijn.be/stops/207092"], ["https://data.delijn.be/stops/107818", "https://data.delijn.be/stops/107887"], ["https://data.delijn.be/stops/203409", "https://data.delijn.be/stops/203417"], ["https://data.delijn.be/stops/303504", "https://data.delijn.be/stops/303505"], ["https://data.delijn.be/stops/508690", "https://data.delijn.be/stops/509962"], ["https://data.delijn.be/stops/102069", "https://data.delijn.be/stops/106927"], ["https://data.delijn.be/stops/503295", "https://data.delijn.be/stops/505257"], ["https://data.delijn.be/stops/206279", "https://data.delijn.be/stops/206399"], ["https://data.delijn.be/stops/300102", "https://data.delijn.be/stops/300118"], ["https://data.delijn.be/stops/406664", "https://data.delijn.be/stops/406683"], ["https://data.delijn.be/stops/504420", "https://data.delijn.be/stops/504432"], ["https://data.delijn.be/stops/307011", "https://data.delijn.be/stops/307016"], ["https://data.delijn.be/stops/504635", "https://data.delijn.be/stops/504636"], ["https://data.delijn.be/stops/304635", "https://data.delijn.be/stops/307491"], ["https://data.delijn.be/stops/200434", "https://data.delijn.be/stops/201433"], ["https://data.delijn.be/stops/503590", "https://data.delijn.be/stops/505582"], ["https://data.delijn.be/stops/206296", "https://data.delijn.be/stops/207060"], ["https://data.delijn.be/stops/203821", "https://data.delijn.be/stops/205941"], ["https://data.delijn.be/stops/305755", "https://data.delijn.be/stops/306308"], ["https://data.delijn.be/stops/204381", "https://data.delijn.be/stops/205372"], ["https://data.delijn.be/stops/503105", "https://data.delijn.be/stops/508105"], ["https://data.delijn.be/stops/104768", "https://data.delijn.be/stops/108903"], ["https://data.delijn.be/stops/403544", "https://data.delijn.be/stops/403545"], ["https://data.delijn.be/stops/401180", "https://data.delijn.be/stops/410175"], ["https://data.delijn.be/stops/402737", "https://data.delijn.be/stops/405953"], ["https://data.delijn.be/stops/403299", "https://data.delijn.be/stops/405644"], ["https://data.delijn.be/stops/502563", "https://data.delijn.be/stops/505836"], ["https://data.delijn.be/stops/505648", "https://data.delijn.be/stops/507761"], ["https://data.delijn.be/stops/301722", "https://data.delijn.be/stops/303891"], ["https://data.delijn.be/stops/308017", "https://data.delijn.be/stops/308019"], ["https://data.delijn.be/stops/304887", "https://data.delijn.be/stops/306164"], ["https://data.delijn.be/stops/108762", "https://data.delijn.be/stops/108774"], ["https://data.delijn.be/stops/503818", "https://data.delijn.be/stops/508818"], ["https://data.delijn.be/stops/302322", "https://data.delijn.be/stops/302342"], ["https://data.delijn.be/stops/401129", "https://data.delijn.be/stops/401158"], ["https://data.delijn.be/stops/505078", "https://data.delijn.be/stops/505664"], ["https://data.delijn.be/stops/105416", "https://data.delijn.be/stops/109849"], ["https://data.delijn.be/stops/200926", "https://data.delijn.be/stops/203394"], ["https://data.delijn.be/stops/400815", "https://data.delijn.be/stops/403573"], ["https://data.delijn.be/stops/201887", "https://data.delijn.be/stops/211086"], ["https://data.delijn.be/stops/506113", "https://data.delijn.be/stops/509836"], ["https://data.delijn.be/stops/201129", "https://data.delijn.be/stops/201323"], ["https://data.delijn.be/stops/504144", "https://data.delijn.be/stops/509143"], ["https://data.delijn.be/stops/208240", "https://data.delijn.be/stops/208263"], ["https://data.delijn.be/stops/204186", "https://data.delijn.be/stops/204187"], ["https://data.delijn.be/stops/502284", "https://data.delijn.be/stops/502815"], ["https://data.delijn.be/stops/206587", "https://data.delijn.be/stops/207587"], ["https://data.delijn.be/stops/200532", "https://data.delijn.be/stops/211091"], ["https://data.delijn.be/stops/201357", "https://data.delijn.be/stops/201687"], ["https://data.delijn.be/stops/405055", "https://data.delijn.be/stops/410157"], ["https://data.delijn.be/stops/302923", "https://data.delijn.be/stops/302996"], ["https://data.delijn.be/stops/209541", "https://data.delijn.be/stops/209543"], ["https://data.delijn.be/stops/503605", "https://data.delijn.be/stops/508603"], ["https://data.delijn.be/stops/206364", "https://data.delijn.be/stops/207708"], ["https://data.delijn.be/stops/406209", "https://data.delijn.be/stops/406210"], ["https://data.delijn.be/stops/202076", "https://data.delijn.be/stops/203393"], ["https://data.delijn.be/stops/402794", "https://data.delijn.be/stops/406717"], ["https://data.delijn.be/stops/408202", "https://data.delijn.be/stops/408215"], ["https://data.delijn.be/stops/500047", "https://data.delijn.be/stops/500053"], ["https://data.delijn.be/stops/300770", "https://data.delijn.be/stops/307252"], ["https://data.delijn.be/stops/208004", "https://data.delijn.be/stops/209005"], ["https://data.delijn.be/stops/306679", "https://data.delijn.be/stops/306680"], ["https://data.delijn.be/stops/102963", "https://data.delijn.be/stops/103591"], ["https://data.delijn.be/stops/206210", "https://data.delijn.be/stops/207818"], ["https://data.delijn.be/stops/504080", "https://data.delijn.be/stops/509080"], ["https://data.delijn.be/stops/304142", "https://data.delijn.be/stops/304145"], ["https://data.delijn.be/stops/400200", "https://data.delijn.be/stops/400201"], ["https://data.delijn.be/stops/505247", "https://data.delijn.be/stops/505697"], ["https://data.delijn.be/stops/200495", "https://data.delijn.be/stops/201632"], ["https://data.delijn.be/stops/301343", "https://data.delijn.be/stops/306121"], ["https://data.delijn.be/stops/300222", "https://data.delijn.be/stops/301937"], ["https://data.delijn.be/stops/202078", "https://data.delijn.be/stops/202341"], ["https://data.delijn.be/stops/101781", "https://data.delijn.be/stops/103500"], ["https://data.delijn.be/stops/400639", "https://data.delijn.be/stops/400913"], ["https://data.delijn.be/stops/509400", "https://data.delijn.be/stops/509417"], ["https://data.delijn.be/stops/502388", "https://data.delijn.be/stops/502581"], ["https://data.delijn.be/stops/501438", "https://data.delijn.be/stops/505152"], ["https://data.delijn.be/stops/206401", "https://data.delijn.be/stops/207401"], ["https://data.delijn.be/stops/403104", "https://data.delijn.be/stops/403110"], ["https://data.delijn.be/stops/406080", "https://data.delijn.be/stops/406081"], ["https://data.delijn.be/stops/405043", "https://data.delijn.be/stops/405848"], ["https://data.delijn.be/stops/204393", "https://data.delijn.be/stops/204401"], ["https://data.delijn.be/stops/505238", "https://data.delijn.be/stops/507756"], ["https://data.delijn.be/stops/307389", "https://data.delijn.be/stops/307631"], ["https://data.delijn.be/stops/301007", "https://data.delijn.be/stops/303670"], ["https://data.delijn.be/stops/301687", "https://data.delijn.be/stops/301688"], ["https://data.delijn.be/stops/302661", "https://data.delijn.be/stops/302701"], ["https://data.delijn.be/stops/204148", "https://data.delijn.be/stops/204785"], ["https://data.delijn.be/stops/404644", "https://data.delijn.be/stops/404993"], ["https://data.delijn.be/stops/301772", "https://data.delijn.be/stops/301776"], ["https://data.delijn.be/stops/200919", "https://data.delijn.be/stops/200948"], ["https://data.delijn.be/stops/300526", "https://data.delijn.be/stops/302789"], ["https://data.delijn.be/stops/208650", "https://data.delijn.be/stops/209650"], ["https://data.delijn.be/stops/207752", "https://data.delijn.be/stops/207767"], ["https://data.delijn.be/stops/301552", "https://data.delijn.be/stops/308087"], ["https://data.delijn.be/stops/204107", "https://data.delijn.be/stops/204348"], ["https://data.delijn.be/stops/304356", "https://data.delijn.be/stops/304358"], ["https://data.delijn.be/stops/503050", "https://data.delijn.be/stops/505899"], ["https://data.delijn.be/stops/101877", "https://data.delijn.be/stops/102730"], ["https://data.delijn.be/stops/301704", "https://data.delijn.be/stops/301756"], ["https://data.delijn.be/stops/502022", "https://data.delijn.be/stops/507247"], ["https://data.delijn.be/stops/406203", "https://data.delijn.be/stops/410246"], ["https://data.delijn.be/stops/503251", "https://data.delijn.be/stops/508234"], ["https://data.delijn.be/stops/400059", "https://data.delijn.be/stops/400926"], ["https://data.delijn.be/stops/305207", "https://data.delijn.be/stops/305208"], ["https://data.delijn.be/stops/102858", "https://data.delijn.be/stops/104667"], ["https://data.delijn.be/stops/305744", "https://data.delijn.be/stops/306330"], ["https://data.delijn.be/stops/304721", "https://data.delijn.be/stops/304722"], ["https://data.delijn.be/stops/503993", "https://data.delijn.be/stops/508559"], ["https://data.delijn.be/stops/504163", "https://data.delijn.be/stops/509529"], ["https://data.delijn.be/stops/108838", "https://data.delijn.be/stops/108841"], ["https://data.delijn.be/stops/304486", "https://data.delijn.be/stops/304489"], ["https://data.delijn.be/stops/505547", "https://data.delijn.be/stops/507198"], ["https://data.delijn.be/stops/106152", "https://data.delijn.be/stops/106443"], ["https://data.delijn.be/stops/407018", "https://data.delijn.be/stops/407019"], ["https://data.delijn.be/stops/502278", "https://data.delijn.be/stops/507334"], ["https://data.delijn.be/stops/200896", "https://data.delijn.be/stops/200909"], ["https://data.delijn.be/stops/200473", "https://data.delijn.be/stops/201473"], ["https://data.delijn.be/stops/304521", "https://data.delijn.be/stops/304522"], ["https://data.delijn.be/stops/400258", "https://data.delijn.be/stops/400259"], ["https://data.delijn.be/stops/401988", "https://data.delijn.be/stops/403381"], ["https://data.delijn.be/stops/200472", "https://data.delijn.be/stops/201472"], ["https://data.delijn.be/stops/101069", "https://data.delijn.be/stops/105963"], ["https://data.delijn.be/stops/503882", "https://data.delijn.be/stops/508882"], ["https://data.delijn.be/stops/403155", "https://data.delijn.be/stops/410321"], ["https://data.delijn.be/stops/201924", "https://data.delijn.be/stops/201925"], ["https://data.delijn.be/stops/306758", "https://data.delijn.be/stops/306760"], ["https://data.delijn.be/stops/200117", "https://data.delijn.be/stops/200815"], ["https://data.delijn.be/stops/504040", "https://data.delijn.be/stops/509044"], ["https://data.delijn.be/stops/404445", "https://data.delijn.be/stops/404561"], ["https://data.delijn.be/stops/109539", "https://data.delijn.be/stops/109583"], ["https://data.delijn.be/stops/204243", "https://data.delijn.be/stops/215017"], ["https://data.delijn.be/stops/103693", "https://data.delijn.be/stops/103697"], ["https://data.delijn.be/stops/304236", "https://data.delijn.be/stops/304240"], ["https://data.delijn.be/stops/403508", "https://data.delijn.be/stops/410220"], ["https://data.delijn.be/stops/101433", "https://data.delijn.be/stops/101434"], ["https://data.delijn.be/stops/103132", "https://data.delijn.be/stops/106669"], ["https://data.delijn.be/stops/106744", "https://data.delijn.be/stops/109777"], ["https://data.delijn.be/stops/205613", "https://data.delijn.be/stops/205647"], ["https://data.delijn.be/stops/303170", "https://data.delijn.be/stops/305525"], ["https://data.delijn.be/stops/504649", "https://data.delijn.be/stops/504976"], ["https://data.delijn.be/stops/304155", "https://data.delijn.be/stops/304161"], ["https://data.delijn.be/stops/402739", "https://data.delijn.be/stops/407299"], ["https://data.delijn.be/stops/202025", "https://data.delijn.be/stops/203025"], ["https://data.delijn.be/stops/302912", "https://data.delijn.be/stops/302913"], ["https://data.delijn.be/stops/503538", "https://data.delijn.be/stops/505580"], ["https://data.delijn.be/stops/301344", "https://data.delijn.be/stops/304677"], ["https://data.delijn.be/stops/106038", "https://data.delijn.be/stops/106571"], ["https://data.delijn.be/stops/403328", "https://data.delijn.be/stops/403356"], ["https://data.delijn.be/stops/505014", "https://data.delijn.be/stops/505180"], ["https://data.delijn.be/stops/206018", "https://data.delijn.be/stops/207078"], ["https://data.delijn.be/stops/502016", "https://data.delijn.be/stops/507941"], ["https://data.delijn.be/stops/505950", "https://data.delijn.be/stops/508283"], ["https://data.delijn.be/stops/306112", "https://data.delijn.be/stops/307863"], ["https://data.delijn.be/stops/406079", "https://data.delijn.be/stops/407166"], ["https://data.delijn.be/stops/501149", "https://data.delijn.be/stops/509834"], ["https://data.delijn.be/stops/102012", "https://data.delijn.be/stops/102013"], ["https://data.delijn.be/stops/302216", "https://data.delijn.be/stops/302217"], ["https://data.delijn.be/stops/204778", "https://data.delijn.be/stops/205591"], ["https://data.delijn.be/stops/101977", "https://data.delijn.be/stops/308492"], ["https://data.delijn.be/stops/405940", "https://data.delijn.be/stops/405995"], ["https://data.delijn.be/stops/400791", "https://data.delijn.be/stops/400857"], ["https://data.delijn.be/stops/504140", "https://data.delijn.be/stops/509141"], ["https://data.delijn.be/stops/407983", "https://data.delijn.be/stops/407993"], ["https://data.delijn.be/stops/304435", "https://data.delijn.be/stops/307718"], ["https://data.delijn.be/stops/201861", "https://data.delijn.be/stops/202891"], ["https://data.delijn.be/stops/207564", "https://data.delijn.be/stops/207830"], ["https://data.delijn.be/stops/504243", "https://data.delijn.be/stops/509443"], ["https://data.delijn.be/stops/107608", "https://data.delijn.be/stops/107611"], ["https://data.delijn.be/stops/300574", "https://data.delijn.be/stops/300581"], ["https://data.delijn.be/stops/400736", "https://data.delijn.be/stops/405667"], ["https://data.delijn.be/stops/502422", "https://data.delijn.be/stops/502423"], ["https://data.delijn.be/stops/101210", "https://data.delijn.be/stops/101215"], ["https://data.delijn.be/stops/504670", "https://data.delijn.be/stops/504793"], ["https://data.delijn.be/stops/104724", "https://data.delijn.be/stops/105700"], ["https://data.delijn.be/stops/101747", "https://data.delijn.be/stops/103909"], ["https://data.delijn.be/stops/106700", "https://data.delijn.be/stops/106701"], ["https://data.delijn.be/stops/300670", "https://data.delijn.be/stops/300679"], ["https://data.delijn.be/stops/305958", "https://data.delijn.be/stops/305959"], ["https://data.delijn.be/stops/106234", "https://data.delijn.be/stops/106681"], ["https://data.delijn.be/stops/505695", "https://data.delijn.be/stops/508767"], ["https://data.delijn.be/stops/104993", "https://data.delijn.be/stops/109991"], ["https://data.delijn.be/stops/502474", "https://data.delijn.be/stops/502477"], ["https://data.delijn.be/stops/201874", "https://data.delijn.be/stops/210038"], ["https://data.delijn.be/stops/206935", "https://data.delijn.be/stops/207230"], ["https://data.delijn.be/stops/104958", "https://data.delijn.be/stops/108967"], ["https://data.delijn.be/stops/408250", "https://data.delijn.be/stops/408291"], ["https://data.delijn.be/stops/101285", "https://data.delijn.be/stops/101290"], ["https://data.delijn.be/stops/204224", "https://data.delijn.be/stops/205096"], ["https://data.delijn.be/stops/304461", "https://data.delijn.be/stops/306409"], ["https://data.delijn.be/stops/206705", "https://data.delijn.be/stops/301673"], ["https://data.delijn.be/stops/307184", "https://data.delijn.be/stops/307185"], ["https://data.delijn.be/stops/204245", "https://data.delijn.be/stops/205245"], ["https://data.delijn.be/stops/206291", "https://data.delijn.be/stops/206294"], ["https://data.delijn.be/stops/101136", "https://data.delijn.be/stops/105195"], ["https://data.delijn.be/stops/302569", "https://data.delijn.be/stops/302579"], ["https://data.delijn.be/stops/105771", "https://data.delijn.be/stops/105773"], ["https://data.delijn.be/stops/300850", "https://data.delijn.be/stops/300891"], ["https://data.delijn.be/stops/502928", "https://data.delijn.be/stops/505410"], ["https://data.delijn.be/stops/502615", "https://data.delijn.be/stops/507485"], ["https://data.delijn.be/stops/504699", "https://data.delijn.be/stops/509114"], ["https://data.delijn.be/stops/102604", "https://data.delijn.be/stops/106834"], ["https://data.delijn.be/stops/103165", "https://data.delijn.be/stops/107665"], ["https://data.delijn.be/stops/202579", "https://data.delijn.be/stops/203579"], ["https://data.delijn.be/stops/300287", "https://data.delijn.be/stops/307477"], ["https://data.delijn.be/stops/109444", "https://data.delijn.be/stops/109520"], ["https://data.delijn.be/stops/402174", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/201554", "https://data.delijn.be/stops/201670"], ["https://data.delijn.be/stops/404916", "https://data.delijn.be/stops/404919"], ["https://data.delijn.be/stops/405540", "https://data.delijn.be/stops/409299"], ["https://data.delijn.be/stops/208798", "https://data.delijn.be/stops/209354"], ["https://data.delijn.be/stops/302946", "https://data.delijn.be/stops/302948"], ["https://data.delijn.be/stops/302633", "https://data.delijn.be/stops/302634"], ["https://data.delijn.be/stops/403816", "https://data.delijn.be/stops/403817"], ["https://data.delijn.be/stops/200481", "https://data.delijn.be/stops/201481"], ["https://data.delijn.be/stops/300109", "https://data.delijn.be/stops/306855"], ["https://data.delijn.be/stops/103660", "https://data.delijn.be/stops/103661"], ["https://data.delijn.be/stops/302984", "https://data.delijn.be/stops/306713"], ["https://data.delijn.be/stops/405397", "https://data.delijn.be/stops/405408"], ["https://data.delijn.be/stops/202277", "https://data.delijn.be/stops/203277"], ["https://data.delijn.be/stops/504294", "https://data.delijn.be/stops/504299"], ["https://data.delijn.be/stops/103510", "https://data.delijn.be/stops/104030"], ["https://data.delijn.be/stops/102593", "https://data.delijn.be/stops/107813"], ["https://data.delijn.be/stops/407380", "https://data.delijn.be/stops/407857"], ["https://data.delijn.be/stops/106492", "https://data.delijn.be/stops/106493"], ["https://data.delijn.be/stops/402518", "https://data.delijn.be/stops/402520"], ["https://data.delijn.be/stops/107457", "https://data.delijn.be/stops/107458"], ["https://data.delijn.be/stops/107459", "https://data.delijn.be/stops/109197"], ["https://data.delijn.be/stops/405937", "https://data.delijn.be/stops/405942"], ["https://data.delijn.be/stops/408298", "https://data.delijn.be/stops/408299"], ["https://data.delijn.be/stops/503792", "https://data.delijn.be/stops/508313"], ["https://data.delijn.be/stops/408348", "https://data.delijn.be/stops/410160"], ["https://data.delijn.be/stops/308510", "https://data.delijn.be/stops/308513"], ["https://data.delijn.be/stops/307302", "https://data.delijn.be/stops/307303"], ["https://data.delijn.be/stops/107613", "https://data.delijn.be/stops/107614"], ["https://data.delijn.be/stops/300010", "https://data.delijn.be/stops/304250"], ["https://data.delijn.be/stops/401014", "https://data.delijn.be/stops/401015"], ["https://data.delijn.be/stops/503619", "https://data.delijn.be/stops/508623"], ["https://data.delijn.be/stops/106233", "https://data.delijn.be/stops/109804"], ["https://data.delijn.be/stops/204727", "https://data.delijn.be/stops/204761"], ["https://data.delijn.be/stops/501245", "https://data.delijn.be/stops/501247"], ["https://data.delijn.be/stops/400302", "https://data.delijn.be/stops/400303"], ["https://data.delijn.be/stops/503273", "https://data.delijn.be/stops/503275"], ["https://data.delijn.be/stops/106228", "https://data.delijn.be/stops/106325"], ["https://data.delijn.be/stops/503406", "https://data.delijn.be/stops/508385"], ["https://data.delijn.be/stops/503845", "https://data.delijn.be/stops/504993"], ["https://data.delijn.be/stops/401076", "https://data.delijn.be/stops/407537"], ["https://data.delijn.be/stops/407197", "https://data.delijn.be/stops/407411"], ["https://data.delijn.be/stops/300396", "https://data.delijn.be/stops/301972"], ["https://data.delijn.be/stops/201943", "https://data.delijn.be/stops/202488"], ["https://data.delijn.be/stops/201587", "https://data.delijn.be/stops/210607"], ["https://data.delijn.be/stops/108687", "https://data.delijn.be/stops/108896"], ["https://data.delijn.be/stops/404765", "https://data.delijn.be/stops/404829"], ["https://data.delijn.be/stops/502139", "https://data.delijn.be/stops/502146"], ["https://data.delijn.be/stops/402529", "https://data.delijn.be/stops/404062"], ["https://data.delijn.be/stops/200248", "https://data.delijn.be/stops/200574"], ["https://data.delijn.be/stops/102535", "https://data.delijn.be/stops/104996"], ["https://data.delijn.be/stops/101600", "https://data.delijn.be/stops/103974"], ["https://data.delijn.be/stops/502421", "https://data.delijn.be/stops/507424"], ["https://data.delijn.be/stops/200881", "https://data.delijn.be/stops/202285"], ["https://data.delijn.be/stops/304310", "https://data.delijn.be/stops/304311"], ["https://data.delijn.be/stops/402181", "https://data.delijn.be/stops/402195"], ["https://data.delijn.be/stops/208180", "https://data.delijn.be/stops/208759"], ["https://data.delijn.be/stops/101049", "https://data.delijn.be/stops/104366"], ["https://data.delijn.be/stops/403424", "https://data.delijn.be/stops/410222"], ["https://data.delijn.be/stops/109230", "https://data.delijn.be/stops/109231"], ["https://data.delijn.be/stops/103317", "https://data.delijn.be/stops/105518"], ["https://data.delijn.be/stops/404206", "https://data.delijn.be/stops/404219"], ["https://data.delijn.be/stops/207846", "https://data.delijn.be/stops/207932"], ["https://data.delijn.be/stops/206428", "https://data.delijn.be/stops/208537"], ["https://data.delijn.be/stops/102121", "https://data.delijn.be/stops/109367"], ["https://data.delijn.be/stops/300559", "https://data.delijn.be/stops/300617"], ["https://data.delijn.be/stops/207491", "https://data.delijn.be/stops/207518"], ["https://data.delijn.be/stops/200941", "https://data.delijn.be/stops/200946"], ["https://data.delijn.be/stops/404489", "https://data.delijn.be/stops/408163"], ["https://data.delijn.be/stops/108761", "https://data.delijn.be/stops/305785"], ["https://data.delijn.be/stops/505809", "https://data.delijn.be/stops/508670"], ["https://data.delijn.be/stops/208299", "https://data.delijn.be/stops/209317"], ["https://data.delijn.be/stops/109079", "https://data.delijn.be/stops/109082"], ["https://data.delijn.be/stops/204493", "https://data.delijn.be/stops/205493"], ["https://data.delijn.be/stops/200838", "https://data.delijn.be/stops/203300"], ["https://data.delijn.be/stops/505798", "https://data.delijn.be/stops/509108"], ["https://data.delijn.be/stops/305061", "https://data.delijn.be/stops/307277"], ["https://data.delijn.be/stops/201154", "https://data.delijn.be/stops/201176"], ["https://data.delijn.be/stops/205017", "https://data.delijn.be/stops/205090"], ["https://data.delijn.be/stops/209459", "https://data.delijn.be/stops/209467"], ["https://data.delijn.be/stops/406305", "https://data.delijn.be/stops/406358"], ["https://data.delijn.be/stops/305700", "https://data.delijn.be/stops/307839"], ["https://data.delijn.be/stops/308079", "https://data.delijn.be/stops/308741"], ["https://data.delijn.be/stops/208119", "https://data.delijn.be/stops/219008"], ["https://data.delijn.be/stops/201082", "https://data.delijn.be/stops/209291"], ["https://data.delijn.be/stops/206333", "https://data.delijn.be/stops/206363"], ["https://data.delijn.be/stops/401215", "https://data.delijn.be/stops/408418"], ["https://data.delijn.be/stops/204168", "https://data.delijn.be/stops/204587"], ["https://data.delijn.be/stops/500135", "https://data.delijn.be/stops/590333"], ["https://data.delijn.be/stops/109257", "https://data.delijn.be/stops/109258"], ["https://data.delijn.be/stops/207339", "https://data.delijn.be/stops/207709"], ["https://data.delijn.be/stops/503714", "https://data.delijn.be/stops/508712"], ["https://data.delijn.be/stops/208148", "https://data.delijn.be/stops/208149"], ["https://data.delijn.be/stops/308156", "https://data.delijn.be/stops/308179"], ["https://data.delijn.be/stops/400580", "https://data.delijn.be/stops/404139"], ["https://data.delijn.be/stops/307507", "https://data.delijn.be/stops/307509"], ["https://data.delijn.be/stops/308454", "https://data.delijn.be/stops/308456"], ["https://data.delijn.be/stops/503991", "https://data.delijn.be/stops/508266"], ["https://data.delijn.be/stops/206663", "https://data.delijn.be/stops/207987"], ["https://data.delijn.be/stops/405465", "https://data.delijn.be/stops/408816"], ["https://data.delijn.be/stops/305554", "https://data.delijn.be/stops/308687"], ["https://data.delijn.be/stops/407660", "https://data.delijn.be/stops/407662"], ["https://data.delijn.be/stops/400059", "https://data.delijn.be/stops/400115"], ["https://data.delijn.be/stops/402512", "https://data.delijn.be/stops/405662"], ["https://data.delijn.be/stops/303660", "https://data.delijn.be/stops/304714"], ["https://data.delijn.be/stops/103287", "https://data.delijn.be/stops/107687"], ["https://data.delijn.be/stops/303311", "https://data.delijn.be/stops/308921"], ["https://data.delijn.be/stops/201385", "https://data.delijn.be/stops/203007"], ["https://data.delijn.be/stops/300957", "https://data.delijn.be/stops/300961"], ["https://data.delijn.be/stops/200923", "https://data.delijn.be/stops/202674"], ["https://data.delijn.be/stops/400511", "https://data.delijn.be/stops/402637"], ["https://data.delijn.be/stops/106761", "https://data.delijn.be/stops/106764"], ["https://data.delijn.be/stops/502614", "https://data.delijn.be/stops/502803"], ["https://data.delijn.be/stops/501417", "https://data.delijn.be/stops/506411"], ["https://data.delijn.be/stops/405748", "https://data.delijn.be/stops/405820"], ["https://data.delijn.be/stops/108136", "https://data.delijn.be/stops/108864"], ["https://data.delijn.be/stops/207782", "https://data.delijn.be/stops/208406"], ["https://data.delijn.be/stops/300934", "https://data.delijn.be/stops/300987"], ["https://data.delijn.be/stops/404172", "https://data.delijn.be/stops/404176"], ["https://data.delijn.be/stops/207663", "https://data.delijn.be/stops/209678"], ["https://data.delijn.be/stops/402079", "https://data.delijn.be/stops/402340"], ["https://data.delijn.be/stops/102936", "https://data.delijn.be/stops/107735"], ["https://data.delijn.be/stops/408910", "https://data.delijn.be/stops/408916"], ["https://data.delijn.be/stops/502234", "https://data.delijn.be/stops/507234"], ["https://data.delijn.be/stops/105254", "https://data.delijn.be/stops/105272"], ["https://data.delijn.be/stops/105139", "https://data.delijn.be/stops/305827"], ["https://data.delijn.be/stops/204661", "https://data.delijn.be/stops/205661"], ["https://data.delijn.be/stops/401127", "https://data.delijn.be/stops/401131"], ["https://data.delijn.be/stops/302565", "https://data.delijn.be/stops/302771"], ["https://data.delijn.be/stops/300658", "https://data.delijn.be/stops/300663"], ["https://data.delijn.be/stops/301364", "https://data.delijn.be/stops/306126"], ["https://data.delijn.be/stops/101851", "https://data.delijn.be/stops/106852"], ["https://data.delijn.be/stops/303728", "https://data.delijn.be/stops/303729"], ["https://data.delijn.be/stops/204118", "https://data.delijn.be/stops/205119"], ["https://data.delijn.be/stops/102379", "https://data.delijn.be/stops/109391"], ["https://data.delijn.be/stops/106308", "https://data.delijn.be/stops/106311"], ["https://data.delijn.be/stops/200816", "https://data.delijn.be/stops/211016"], ["https://data.delijn.be/stops/206748", "https://data.delijn.be/stops/207748"], ["https://data.delijn.be/stops/206925", "https://data.delijn.be/stops/207923"], ["https://data.delijn.be/stops/200311", "https://data.delijn.be/stops/201161"], ["https://data.delijn.be/stops/207712", "https://data.delijn.be/stops/207743"], ["https://data.delijn.be/stops/502561", "https://data.delijn.be/stops/507562"], ["https://data.delijn.be/stops/102501", "https://data.delijn.be/stops/102508"], ["https://data.delijn.be/stops/105753", "https://data.delijn.be/stops/109816"], ["https://data.delijn.be/stops/103332", "https://data.delijn.be/stops/106442"], ["https://data.delijn.be/stops/105024", "https://data.delijn.be/stops/107707"], ["https://data.delijn.be/stops/202786", "https://data.delijn.be/stops/209643"], ["https://data.delijn.be/stops/502321", "https://data.delijn.be/stops/507337"], ["https://data.delijn.be/stops/403722", "https://data.delijn.be/stops/405136"], ["https://data.delijn.be/stops/102822", "https://data.delijn.be/stops/105260"], ["https://data.delijn.be/stops/203735", "https://data.delijn.be/stops/203851"], ["https://data.delijn.be/stops/406244", "https://data.delijn.be/stops/409346"], ["https://data.delijn.be/stops/403628", "https://data.delijn.be/stops/403629"], ["https://data.delijn.be/stops/204685", "https://data.delijn.be/stops/205685"], ["https://data.delijn.be/stops/201723", "https://data.delijn.be/stops/202447"], ["https://data.delijn.be/stops/204659", "https://data.delijn.be/stops/205660"], ["https://data.delijn.be/stops/203763", "https://data.delijn.be/stops/203764"], ["https://data.delijn.be/stops/503991", "https://data.delijn.be/stops/507204"], ["https://data.delijn.be/stops/504015", "https://data.delijn.be/stops/504674"], ["https://data.delijn.be/stops/502179", "https://data.delijn.be/stops/507179"], ["https://data.delijn.be/stops/302823", "https://data.delijn.be/stops/302928"], ["https://data.delijn.be/stops/102647", "https://data.delijn.be/stops/107834"], ["https://data.delijn.be/stops/407985", "https://data.delijn.be/stops/408053"], ["https://data.delijn.be/stops/409490", "https://data.delijn.be/stops/409492"], ["https://data.delijn.be/stops/404179", "https://data.delijn.be/stops/405912"], ["https://data.delijn.be/stops/301472", "https://data.delijn.be/stops/305650"], ["https://data.delijn.be/stops/200669", "https://data.delijn.be/stops/508850"], ["https://data.delijn.be/stops/402312", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/103323", "https://data.delijn.be/stops/104362"], ["https://data.delijn.be/stops/304908", "https://data.delijn.be/stops/306161"], ["https://data.delijn.be/stops/202176", "https://data.delijn.be/stops/203140"], ["https://data.delijn.be/stops/504475", "https://data.delijn.be/stops/509477"], ["https://data.delijn.be/stops/402755", "https://data.delijn.be/stops/402773"], ["https://data.delijn.be/stops/203902", "https://data.delijn.be/stops/203903"], ["https://data.delijn.be/stops/504724", "https://data.delijn.be/stops/508959"], ["https://data.delijn.be/stops/402366", "https://data.delijn.be/stops/409600"], ["https://data.delijn.be/stops/107620", "https://data.delijn.be/stops/108935"], ["https://data.delijn.be/stops/206507", "https://data.delijn.be/stops/206508"], ["https://data.delijn.be/stops/101654", "https://data.delijn.be/stops/308846"], ["https://data.delijn.be/stops/409114", "https://data.delijn.be/stops/409121"], ["https://data.delijn.be/stops/202331", "https://data.delijn.be/stops/202338"], ["https://data.delijn.be/stops/400678", "https://data.delijn.be/stops/405410"], ["https://data.delijn.be/stops/305136", "https://data.delijn.be/stops/305142"], ["https://data.delijn.be/stops/401483", "https://data.delijn.be/stops/401509"], ["https://data.delijn.be/stops/200742", "https://data.delijn.be/stops/201697"], ["https://data.delijn.be/stops/502165", "https://data.delijn.be/stops/502166"], ["https://data.delijn.be/stops/409262", "https://data.delijn.be/stops/409265"], ["https://data.delijn.be/stops/302675", "https://data.delijn.be/stops/302676"], ["https://data.delijn.be/stops/300776", "https://data.delijn.be/stops/300792"], ["https://data.delijn.be/stops/404464", "https://data.delijn.be/stops/409261"], ["https://data.delijn.be/stops/503779", "https://data.delijn.be/stops/508779"], ["https://data.delijn.be/stops/507173", "https://data.delijn.be/stops/508133"], ["https://data.delijn.be/stops/400814", "https://data.delijn.be/stops/401908"], ["https://data.delijn.be/stops/101085", "https://data.delijn.be/stops/105320"], ["https://data.delijn.be/stops/404871", "https://data.delijn.be/stops/404968"], ["https://data.delijn.be/stops/303286", "https://data.delijn.be/stops/303287"], ["https://data.delijn.be/stops/403141", "https://data.delijn.be/stops/403215"], ["https://data.delijn.be/stops/404562", "https://data.delijn.be/stops/406742"], ["https://data.delijn.be/stops/207765", "https://data.delijn.be/stops/208762"], ["https://data.delijn.be/stops/209656", "https://data.delijn.be/stops/210068"], ["https://data.delijn.be/stops/203863", "https://data.delijn.be/stops/203864"], ["https://data.delijn.be/stops/106320", "https://data.delijn.be/stops/106321"], ["https://data.delijn.be/stops/304369", "https://data.delijn.be/stops/307365"], ["https://data.delijn.be/stops/106243", "https://data.delijn.be/stops/106730"], ["https://data.delijn.be/stops/502432", "https://data.delijn.be/stops/507425"], ["https://data.delijn.be/stops/304809", "https://data.delijn.be/stops/308782"], ["https://data.delijn.be/stops/401730", "https://data.delijn.be/stops/406319"], ["https://data.delijn.be/stops/206921", "https://data.delijn.be/stops/207921"], ["https://data.delijn.be/stops/305511", "https://data.delijn.be/stops/305531"], ["https://data.delijn.be/stops/101959", "https://data.delijn.be/stops/101961"], ["https://data.delijn.be/stops/103660", "https://data.delijn.be/stops/106338"], ["https://data.delijn.be/stops/204564", "https://data.delijn.be/stops/205565"], ["https://data.delijn.be/stops/105990", "https://data.delijn.be/stops/105993"], ["https://data.delijn.be/stops/402406", "https://data.delijn.be/stops/402407"], ["https://data.delijn.be/stops/402850", "https://data.delijn.be/stops/409006"], ["https://data.delijn.be/stops/207707", "https://data.delijn.be/stops/207708"], ["https://data.delijn.be/stops/104114", "https://data.delijn.be/stops/107875"], ["https://data.delijn.be/stops/404058", "https://data.delijn.be/stops/404059"], ["https://data.delijn.be/stops/505174", "https://data.delijn.be/stops/509154"], ["https://data.delijn.be/stops/200011", "https://data.delijn.be/stops/201012"], ["https://data.delijn.be/stops/505822", "https://data.delijn.be/stops/508777"], ["https://data.delijn.be/stops/308981", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/405586", "https://data.delijn.be/stops/405587"], ["https://data.delijn.be/stops/504716", "https://data.delijn.be/stops/509478"], ["https://data.delijn.be/stops/202400", "https://data.delijn.be/stops/203400"], ["https://data.delijn.be/stops/304581", "https://data.delijn.be/stops/307572"], ["https://data.delijn.be/stops/102255", "https://data.delijn.be/stops/102838"], ["https://data.delijn.be/stops/307197", "https://data.delijn.be/stops/307198"], ["https://data.delijn.be/stops/305665", "https://data.delijn.be/stops/307102"], ["https://data.delijn.be/stops/101151", "https://data.delijn.be/stops/106860"], ["https://data.delijn.be/stops/108090", "https://data.delijn.be/stops/108140"], ["https://data.delijn.be/stops/410292", "https://data.delijn.be/stops/410293"], ["https://data.delijn.be/stops/300685", "https://data.delijn.be/stops/306951"], ["https://data.delijn.be/stops/501231", "https://data.delijn.be/stops/506634"], ["https://data.delijn.be/stops/407198", "https://data.delijn.be/stops/407411"], ["https://data.delijn.be/stops/104486", "https://data.delijn.be/stops/104558"], ["https://data.delijn.be/stops/301656", "https://data.delijn.be/stops/301892"], ["https://data.delijn.be/stops/300650", "https://data.delijn.be/stops/300660"], ["https://data.delijn.be/stops/205140", "https://data.delijn.be/stops/205575"], ["https://data.delijn.be/stops/202586", "https://data.delijn.be/stops/203585"], ["https://data.delijn.be/stops/403221", "https://data.delijn.be/stops/403353"], ["https://data.delijn.be/stops/502539", "https://data.delijn.be/stops/505090"], ["https://data.delijn.be/stops/503452", "https://data.delijn.be/stops/504813"], ["https://data.delijn.be/stops/102691", "https://data.delijn.be/stops/102692"], ["https://data.delijn.be/stops/303371", "https://data.delijn.be/stops/303372"], ["https://data.delijn.be/stops/401066", "https://data.delijn.be/stops/407167"], ["https://data.delijn.be/stops/302250", "https://data.delijn.be/stops/302251"], ["https://data.delijn.be/stops/308163", "https://data.delijn.be/stops/308164"], ["https://data.delijn.be/stops/504239", "https://data.delijn.be/stops/509237"], ["https://data.delijn.be/stops/405689", "https://data.delijn.be/stops/405692"], ["https://data.delijn.be/stops/202112", "https://data.delijn.be/stops/205079"], ["https://data.delijn.be/stops/400562", "https://data.delijn.be/stops/403853"], ["https://data.delijn.be/stops/406297", "https://data.delijn.be/stops/409409"], ["https://data.delijn.be/stops/208634", "https://data.delijn.be/stops/208635"], ["https://data.delijn.be/stops/503945", "https://data.delijn.be/stops/508168"], ["https://data.delijn.be/stops/407029", "https://data.delijn.be/stops/407041"], ["https://data.delijn.be/stops/508439", "https://data.delijn.be/stops/509907"], ["https://data.delijn.be/stops/400518", "https://data.delijn.be/stops/400520"], ["https://data.delijn.be/stops/102238", "https://data.delijn.be/stops/105872"], ["https://data.delijn.be/stops/408753", "https://data.delijn.be/stops/408761"], ["https://data.delijn.be/stops/509367", "https://data.delijn.be/stops/509370"], ["https://data.delijn.be/stops/201926", "https://data.delijn.be/stops/206936"], ["https://data.delijn.be/stops/408888", "https://data.delijn.be/stops/408889"], ["https://data.delijn.be/stops/207492", "https://data.delijn.be/stops/207493"], ["https://data.delijn.be/stops/200389", "https://data.delijn.be/stops/208708"], ["https://data.delijn.be/stops/502627", "https://data.delijn.be/stops/502752"], ["https://data.delijn.be/stops/403914", "https://data.delijn.be/stops/404037"], ["https://data.delijn.be/stops/404439", "https://data.delijn.be/stops/404498"], ["https://data.delijn.be/stops/402519", "https://data.delijn.be/stops/402863"], ["https://data.delijn.be/stops/104291", "https://data.delijn.be/stops/109748"], ["https://data.delijn.be/stops/405210", "https://data.delijn.be/stops/405211"], ["https://data.delijn.be/stops/300556", "https://data.delijn.be/stops/300557"], ["https://data.delijn.be/stops/103337", "https://data.delijn.be/stops/107047"], ["https://data.delijn.be/stops/304040", "https://data.delijn.be/stops/305611"], ["https://data.delijn.be/stops/307307", "https://data.delijn.be/stops/307312"], ["https://data.delijn.be/stops/300460", "https://data.delijn.be/stops/304979"], ["https://data.delijn.be/stops/504751", "https://data.delijn.be/stops/508561"], ["https://data.delijn.be/stops/505665", "https://data.delijn.be/stops/507487"], ["https://data.delijn.be/stops/104115", "https://data.delijn.be/stops/104915"], ["https://data.delijn.be/stops/402096", "https://data.delijn.be/stops/402225"], ["https://data.delijn.be/stops/408030", "https://data.delijn.be/stops/408031"], ["https://data.delijn.be/stops/305442", "https://data.delijn.be/stops/305443"], ["https://data.delijn.be/stops/502352", "https://data.delijn.be/stops/502356"], ["https://data.delijn.be/stops/200916", "https://data.delijn.be/stops/203730"], ["https://data.delijn.be/stops/207754", "https://data.delijn.be/stops/209405"], ["https://data.delijn.be/stops/200002", "https://data.delijn.be/stops/202017"], ["https://data.delijn.be/stops/200882", "https://data.delijn.be/stops/208919"], ["https://data.delijn.be/stops/400913", "https://data.delijn.be/stops/400921"], ["https://data.delijn.be/stops/304787", "https://data.delijn.be/stops/306690"], ["https://data.delijn.be/stops/101206", "https://data.delijn.be/stops/104926"], ["https://data.delijn.be/stops/304389", "https://data.delijn.be/stops/307413"], ["https://data.delijn.be/stops/504746", "https://data.delijn.be/stops/509124"], ["https://data.delijn.be/stops/202484", "https://data.delijn.be/stops/203483"], ["https://data.delijn.be/stops/106377", "https://data.delijn.be/stops/106379"], ["https://data.delijn.be/stops/506202", "https://data.delijn.be/stops/506203"], ["https://data.delijn.be/stops/203972", "https://data.delijn.be/stops/204093"], ["https://data.delijn.be/stops/206588", "https://data.delijn.be/stops/207589"], ["https://data.delijn.be/stops/209514", "https://data.delijn.be/stops/209672"], ["https://data.delijn.be/stops/102109", "https://data.delijn.be/stops/103466"], ["https://data.delijn.be/stops/407011", "https://data.delijn.be/stops/407059"], ["https://data.delijn.be/stops/102921", "https://data.delijn.be/stops/102922"], ["https://data.delijn.be/stops/206570", "https://data.delijn.be/stops/206575"], ["https://data.delijn.be/stops/504651", "https://data.delijn.be/stops/505424"], ["https://data.delijn.be/stops/408058", "https://data.delijn.be/stops/303263"], ["https://data.delijn.be/stops/206807", "https://data.delijn.be/stops/207356"], ["https://data.delijn.be/stops/201976", "https://data.delijn.be/stops/207822"], ["https://data.delijn.be/stops/206876", "https://data.delijn.be/stops/207007"], ["https://data.delijn.be/stops/500565", "https://data.delijn.be/stops/501042"], ["https://data.delijn.be/stops/506115", "https://data.delijn.be/stops/506732"], ["https://data.delijn.be/stops/305795", "https://data.delijn.be/stops/305798"], ["https://data.delijn.be/stops/501669", "https://data.delijn.be/stops/506678"], ["https://data.delijn.be/stops/300330", "https://data.delijn.be/stops/300331"], ["https://data.delijn.be/stops/201843", "https://data.delijn.be/stops/203197"], ["https://data.delijn.be/stops/305538", "https://data.delijn.be/stops/305539"], ["https://data.delijn.be/stops/502757", "https://data.delijn.be/stops/507757"], ["https://data.delijn.be/stops/206315", "https://data.delijn.be/stops/207877"], ["https://data.delijn.be/stops/304414", "https://data.delijn.be/stops/307366"], ["https://data.delijn.be/stops/105729", "https://data.delijn.be/stops/105732"], ["https://data.delijn.be/stops/105109", "https://data.delijn.be/stops/308810"], ["https://data.delijn.be/stops/504238", "https://data.delijn.be/stops/508547"], ["https://data.delijn.be/stops/507551", "https://data.delijn.be/stops/507556"], ["https://data.delijn.be/stops/403732", "https://data.delijn.be/stops/403738"], ["https://data.delijn.be/stops/400363", "https://data.delijn.be/stops/400399"], ["https://data.delijn.be/stops/200330", "https://data.delijn.be/stops/203200"], ["https://data.delijn.be/stops/402823", "https://data.delijn.be/stops/409015"], ["https://data.delijn.be/stops/503566", "https://data.delijn.be/stops/508543"], ["https://data.delijn.be/stops/400794", "https://data.delijn.be/stops/406670"], ["https://data.delijn.be/stops/301537", "https://data.delijn.be/stops/301544"], ["https://data.delijn.be/stops/102092", "https://data.delijn.be/stops/106881"], ["https://data.delijn.be/stops/102861", "https://data.delijn.be/stops/104882"], ["https://data.delijn.be/stops/203102", "https://data.delijn.be/stops/210006"], ["https://data.delijn.be/stops/104778", "https://data.delijn.be/stops/108117"], ["https://data.delijn.be/stops/104926", "https://data.delijn.be/stops/104928"], ["https://data.delijn.be/stops/503636", "https://data.delijn.be/stops/508640"], ["https://data.delijn.be/stops/502393", "https://data.delijn.be/stops/507400"], ["https://data.delijn.be/stops/302290", "https://data.delijn.be/stops/307736"], ["https://data.delijn.be/stops/207679", "https://data.delijn.be/stops/208150"], ["https://data.delijn.be/stops/208683", "https://data.delijn.be/stops/208751"], ["https://data.delijn.be/stops/403972", "https://data.delijn.be/stops/406007"], ["https://data.delijn.be/stops/105773", "https://data.delijn.be/stops/105774"], ["https://data.delijn.be/stops/306595", "https://data.delijn.be/stops/306598"], ["https://data.delijn.be/stops/102139", "https://data.delijn.be/stops/103040"], ["https://data.delijn.be/stops/300339", "https://data.delijn.be/stops/300340"], ["https://data.delijn.be/stops/210089", "https://data.delijn.be/stops/211089"], ["https://data.delijn.be/stops/504240", "https://data.delijn.be/stops/509235"], ["https://data.delijn.be/stops/404429", "https://data.delijn.be/stops/404472"], ["https://data.delijn.be/stops/400108", "https://data.delijn.be/stops/400138"], ["https://data.delijn.be/stops/508718", "https://data.delijn.be/stops/509979"], ["https://data.delijn.be/stops/204426", "https://data.delijn.be/stops/205395"], ["https://data.delijn.be/stops/101871", "https://data.delijn.be/stops/105254"], ["https://data.delijn.be/stops/406423", "https://data.delijn.be/stops/406425"], ["https://data.delijn.be/stops/107263", "https://data.delijn.be/stops/107265"], ["https://data.delijn.be/stops/106842", "https://data.delijn.be/stops/106988"], ["https://data.delijn.be/stops/402678", "https://data.delijn.be/stops/410056"], ["https://data.delijn.be/stops/200491", "https://data.delijn.be/stops/205556"], ["https://data.delijn.be/stops/407406", "https://data.delijn.be/stops/407434"], ["https://data.delijn.be/stops/303615", "https://data.delijn.be/stops/304582"], ["https://data.delijn.be/stops/400104", "https://data.delijn.be/stops/400105"], ["https://data.delijn.be/stops/304102", "https://data.delijn.be/stops/308047"], ["https://data.delijn.be/stops/208957", "https://data.delijn.be/stops/209956"], ["https://data.delijn.be/stops/502421", "https://data.delijn.be/stops/502434"], ["https://data.delijn.be/stops/400077", "https://data.delijn.be/stops/409162"], ["https://data.delijn.be/stops/201797", "https://data.delijn.be/stops/211057"], ["https://data.delijn.be/stops/401427", "https://data.delijn.be/stops/401493"], ["https://data.delijn.be/stops/408334", "https://data.delijn.be/stops/408340"], ["https://data.delijn.be/stops/302157", "https://data.delijn.be/stops/307186"], ["https://data.delijn.be/stops/105741", "https://data.delijn.be/stops/109933"], ["https://data.delijn.be/stops/300096", "https://data.delijn.be/stops/306822"], ["https://data.delijn.be/stops/506320", "https://data.delijn.be/stops/506347"], ["https://data.delijn.be/stops/302260", "https://data.delijn.be/stops/302270"], ["https://data.delijn.be/stops/109369", "https://data.delijn.be/stops/109370"], ["https://data.delijn.be/stops/108828", "https://data.delijn.be/stops/108831"], ["https://data.delijn.be/stops/103318", "https://data.delijn.be/stops/104408"], ["https://data.delijn.be/stops/201150", "https://data.delijn.be/stops/201514"], ["https://data.delijn.be/stops/406068", "https://data.delijn.be/stops/406069"], ["https://data.delijn.be/stops/302564", "https://data.delijn.be/stops/302651"], ["https://data.delijn.be/stops/300388", "https://data.delijn.be/stops/303118"], ["https://data.delijn.be/stops/201066", "https://data.delijn.be/stops/201393"], ["https://data.delijn.be/stops/308741", "https://data.delijn.be/stops/308742"], ["https://data.delijn.be/stops/500028", "https://data.delijn.be/stops/508119"], ["https://data.delijn.be/stops/504227", "https://data.delijn.be/stops/509884"], ["https://data.delijn.be/stops/101529", "https://data.delijn.be/stops/102588"], ["https://data.delijn.be/stops/201463", "https://data.delijn.be/stops/201838"], ["https://data.delijn.be/stops/202432", "https://data.delijn.be/stops/203431"], ["https://data.delijn.be/stops/402628", "https://data.delijn.be/stops/402630"], ["https://data.delijn.be/stops/304688", "https://data.delijn.be/stops/307151"], ["https://data.delijn.be/stops/201281", "https://data.delijn.be/stops/209708"], ["https://data.delijn.be/stops/502491", "https://data.delijn.be/stops/507491"], ["https://data.delijn.be/stops/501428", "https://data.delijn.be/stops/506733"], ["https://data.delijn.be/stops/102533", "https://data.delijn.be/stops/102537"], ["https://data.delijn.be/stops/209539", "https://data.delijn.be/stops/209542"], ["https://data.delijn.be/stops/210010", "https://data.delijn.be/stops/509893"], ["https://data.delijn.be/stops/109411", "https://data.delijn.be/stops/109412"], ["https://data.delijn.be/stops/104561", "https://data.delijn.be/stops/107481"], ["https://data.delijn.be/stops/402514", "https://data.delijn.be/stops/402520"], ["https://data.delijn.be/stops/501497", "https://data.delijn.be/stops/506496"], ["https://data.delijn.be/stops/508312", "https://data.delijn.be/stops/508659"], ["https://data.delijn.be/stops/402642", "https://data.delijn.be/stops/403647"], ["https://data.delijn.be/stops/204523", "https://data.delijn.be/stops/205524"], ["https://data.delijn.be/stops/202791", "https://data.delijn.be/stops/203790"], ["https://data.delijn.be/stops/403968", "https://data.delijn.be/stops/403977"], ["https://data.delijn.be/stops/210014", "https://data.delijn.be/stops/502298"], ["https://data.delijn.be/stops/308485", "https://data.delijn.be/stops/308536"], ["https://data.delijn.be/stops/406183", "https://data.delijn.be/stops/410270"], ["https://data.delijn.be/stops/408519", "https://data.delijn.be/stops/408766"], ["https://data.delijn.be/stops/200858", "https://data.delijn.be/stops/202306"], ["https://data.delijn.be/stops/206836", "https://data.delijn.be/stops/207576"], ["https://data.delijn.be/stops/208764", "https://data.delijn.be/stops/209838"], ["https://data.delijn.be/stops/408097", "https://data.delijn.be/stops/408101"], ["https://data.delijn.be/stops/403187", "https://data.delijn.be/stops/403440"], ["https://data.delijn.be/stops/202923", "https://data.delijn.be/stops/203923"], ["https://data.delijn.be/stops/202326", "https://data.delijn.be/stops/202327"], ["https://data.delijn.be/stops/109905", "https://data.delijn.be/stops/109908"], ["https://data.delijn.be/stops/300207", "https://data.delijn.be/stops/302147"], ["https://data.delijn.be/stops/307395", "https://data.delijn.be/stops/308640"], ["https://data.delijn.be/stops/108673", "https://data.delijn.be/stops/109932"], ["https://data.delijn.be/stops/202598", "https://data.delijn.be/stops/203598"], ["https://data.delijn.be/stops/407982", "https://data.delijn.be/stops/408031"], ["https://data.delijn.be/stops/405034", "https://data.delijn.be/stops/307453"], ["https://data.delijn.be/stops/102214", "https://data.delijn.be/stops/102736"], ["https://data.delijn.be/stops/208095", "https://data.delijn.be/stops/208096"], ["https://data.delijn.be/stops/404642", "https://data.delijn.be/stops/406928"], ["https://data.delijn.be/stops/408280", "https://data.delijn.be/stops/408299"], ["https://data.delijn.be/stops/104592", "https://data.delijn.be/stops/108352"], ["https://data.delijn.be/stops/305585", "https://data.delijn.be/stops/305587"], ["https://data.delijn.be/stops/403135", "https://data.delijn.be/stops/403666"], ["https://data.delijn.be/stops/501041", "https://data.delijn.be/stops/506041"], ["https://data.delijn.be/stops/105037", "https://data.delijn.be/stops/105039"], ["https://data.delijn.be/stops/504387", "https://data.delijn.be/stops/509580"], ["https://data.delijn.be/stops/203840", "https://data.delijn.be/stops/209492"], ["https://data.delijn.be/stops/509480", "https://data.delijn.be/stops/509481"], ["https://data.delijn.be/stops/207506", "https://data.delijn.be/stops/207507"], ["https://data.delijn.be/stops/205941", "https://data.delijn.be/stops/211107"], ["https://data.delijn.be/stops/301896", "https://data.delijn.be/stops/304254"], ["https://data.delijn.be/stops/403214", "https://data.delijn.be/stops/403389"], ["https://data.delijn.be/stops/300369", "https://data.delijn.be/stops/304054"], ["https://data.delijn.be/stops/407626", "https://data.delijn.be/stops/410194"], ["https://data.delijn.be/stops/104478", "https://data.delijn.be/stops/104479"], ["https://data.delijn.be/stops/305162", "https://data.delijn.be/stops/305163"], ["https://data.delijn.be/stops/407153", "https://data.delijn.be/stops/407184"], ["https://data.delijn.be/stops/201570", "https://data.delijn.be/stops/208292"], ["https://data.delijn.be/stops/106144", "https://data.delijn.be/stops/106436"], ["https://data.delijn.be/stops/507953", "https://data.delijn.be/stops/508847"], ["https://data.delijn.be/stops/207665", "https://data.delijn.be/stops/208503"], ["https://data.delijn.be/stops/104452", "https://data.delijn.be/stops/107518"], ["https://data.delijn.be/stops/201080", "https://data.delijn.be/stops/203479"], ["https://data.delijn.be/stops/305004", "https://data.delijn.be/stops/305031"], ["https://data.delijn.be/stops/303650", "https://data.delijn.be/stops/306813"], ["https://data.delijn.be/stops/206304", "https://data.delijn.be/stops/207048"], ["https://data.delijn.be/stops/503408", "https://data.delijn.be/stops/508408"], ["https://data.delijn.be/stops/308654", "https://data.delijn.be/stops/308674"], ["https://data.delijn.be/stops/101005", "https://data.delijn.be/stops/103745"], ["https://data.delijn.be/stops/407652", "https://data.delijn.be/stops/409879"], ["https://data.delijn.be/stops/405248", "https://data.delijn.be/stops/407313"], ["https://data.delijn.be/stops/400072", "https://data.delijn.be/stops/401971"], ["https://data.delijn.be/stops/300048", "https://data.delijn.be/stops/300076"], ["https://data.delijn.be/stops/304586", "https://data.delijn.be/stops/304613"], ["https://data.delijn.be/stops/300527", "https://data.delijn.be/stops/303264"], ["https://data.delijn.be/stops/304716", "https://data.delijn.be/stops/304717"], ["https://data.delijn.be/stops/104853", "https://data.delijn.be/stops/104854"], ["https://data.delijn.be/stops/206614", "https://data.delijn.be/stops/207614"], ["https://data.delijn.be/stops/218012", "https://data.delijn.be/stops/219012"], ["https://data.delijn.be/stops/204029", "https://data.delijn.be/stops/205028"], ["https://data.delijn.be/stops/403420", "https://data.delijn.be/stops/409147"], ["https://data.delijn.be/stops/405058", "https://data.delijn.be/stops/405060"], ["https://data.delijn.be/stops/208185", "https://data.delijn.be/stops/208186"], ["https://data.delijn.be/stops/408801", "https://data.delijn.be/stops/408806"], ["https://data.delijn.be/stops/303450", "https://data.delijn.be/stops/306972"], ["https://data.delijn.be/stops/502065", "https://data.delijn.be/stops/507065"], ["https://data.delijn.be/stops/501688", "https://data.delijn.be/stops/506623"], ["https://data.delijn.be/stops/304494", "https://data.delijn.be/stops/304499"], ["https://data.delijn.be/stops/301301", "https://data.delijn.be/stops/307324"], ["https://data.delijn.be/stops/300481", "https://data.delijn.be/stops/308930"], ["https://data.delijn.be/stops/105307", "https://data.delijn.be/stops/105364"], ["https://data.delijn.be/stops/404617", "https://data.delijn.be/stops/406910"], ["https://data.delijn.be/stops/405062", "https://data.delijn.be/stops/405115"], ["https://data.delijn.be/stops/408941", "https://data.delijn.be/stops/408948"], ["https://data.delijn.be/stops/204297", "https://data.delijn.be/stops/205304"], ["https://data.delijn.be/stops/200486", "https://data.delijn.be/stops/200488"], ["https://data.delijn.be/stops/205458", "https://data.delijn.be/stops/205459"], ["https://data.delijn.be/stops/503184", "https://data.delijn.be/stops/508184"], ["https://data.delijn.be/stops/501447", "https://data.delijn.be/stops/506386"], ["https://data.delijn.be/stops/302334", "https://data.delijn.be/stops/302580"], ["https://data.delijn.be/stops/401922", "https://data.delijn.be/stops/403805"], ["https://data.delijn.be/stops/502707", "https://data.delijn.be/stops/507605"], ["https://data.delijn.be/stops/300688", "https://data.delijn.be/stops/300699"], ["https://data.delijn.be/stops/501592", "https://data.delijn.be/stops/509509"], ["https://data.delijn.be/stops/303500", "https://data.delijn.be/stops/303506"], ["https://data.delijn.be/stops/504419", "https://data.delijn.be/stops/505998"], ["https://data.delijn.be/stops/404057", "https://data.delijn.be/stops/406856"], ["https://data.delijn.be/stops/304008", "https://data.delijn.be/stops/304111"], ["https://data.delijn.be/stops/505315", "https://data.delijn.be/stops/508769"], ["https://data.delijn.be/stops/102892", "https://data.delijn.be/stops/102893"], ["https://data.delijn.be/stops/107299", "https://data.delijn.be/stops/107301"], ["https://data.delijn.be/stops/307424", "https://data.delijn.be/stops/307501"], ["https://data.delijn.be/stops/502225", "https://data.delijn.be/stops/507232"], ["https://data.delijn.be/stops/503682", "https://data.delijn.be/stops/503688"], ["https://data.delijn.be/stops/105343", "https://data.delijn.be/stops/105444"], ["https://data.delijn.be/stops/206847", "https://data.delijn.be/stops/207847"], ["https://data.delijn.be/stops/405256", "https://data.delijn.be/stops/405275"], ["https://data.delijn.be/stops/208779", "https://data.delijn.be/stops/208798"], ["https://data.delijn.be/stops/503123", "https://data.delijn.be/stops/508123"], ["https://data.delijn.be/stops/507361", "https://data.delijn.be/stops/507564"], ["https://data.delijn.be/stops/201882", "https://data.delijn.be/stops/211032"], ["https://data.delijn.be/stops/300095", "https://data.delijn.be/stops/307733"], ["https://data.delijn.be/stops/504726", "https://data.delijn.be/stops/504729"], ["https://data.delijn.be/stops/304086", "https://data.delijn.be/stops/307504"], ["https://data.delijn.be/stops/207583", "https://data.delijn.be/stops/207584"], ["https://data.delijn.be/stops/402391", "https://data.delijn.be/stops/410041"], ["https://data.delijn.be/stops/501113", "https://data.delijn.be/stops/506637"], ["https://data.delijn.be/stops/200864", "https://data.delijn.be/stops/202333"], ["https://data.delijn.be/stops/106447", "https://data.delijn.be/stops/106449"], ["https://data.delijn.be/stops/202111", "https://data.delijn.be/stops/203112"], ["https://data.delijn.be/stops/200362", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/501268", "https://data.delijn.be/stops/501303"], ["https://data.delijn.be/stops/308477", "https://data.delijn.be/stops/308482"], ["https://data.delijn.be/stops/508114", "https://data.delijn.be/stops/508787"], ["https://data.delijn.be/stops/104506", "https://data.delijn.be/stops/107930"], ["https://data.delijn.be/stops/107818", "https://data.delijn.be/stops/107819"], ["https://data.delijn.be/stops/503431", "https://data.delijn.be/stops/508408"], ["https://data.delijn.be/stops/509250", "https://data.delijn.be/stops/509593"], ["https://data.delijn.be/stops/404536", "https://data.delijn.be/stops/404537"], ["https://data.delijn.be/stops/503897", "https://data.delijn.be/stops/509141"], ["https://data.delijn.be/stops/300060", "https://data.delijn.be/stops/307734"], ["https://data.delijn.be/stops/101427", "https://data.delijn.be/stops/101428"], ["https://data.delijn.be/stops/405043", "https://data.delijn.be/stops/405118"], ["https://data.delijn.be/stops/300224", "https://data.delijn.be/stops/300260"], ["https://data.delijn.be/stops/206216", "https://data.delijn.be/stops/206269"], ["https://data.delijn.be/stops/501077", "https://data.delijn.be/stops/505404"], ["https://data.delijn.be/stops/504495", "https://data.delijn.be/stops/505403"], ["https://data.delijn.be/stops/102596", "https://data.delijn.be/stops/102601"], ["https://data.delijn.be/stops/501393", "https://data.delijn.be/stops/502249"], ["https://data.delijn.be/stops/404528", "https://data.delijn.be/stops/406527"], ["https://data.delijn.be/stops/304191", "https://data.delijn.be/stops/307987"], ["https://data.delijn.be/stops/201918", "https://data.delijn.be/stops/207835"], ["https://data.delijn.be/stops/204211", "https://data.delijn.be/stops/206806"], ["https://data.delijn.be/stops/303276", "https://data.delijn.be/stops/303308"], ["https://data.delijn.be/stops/509281", "https://data.delijn.be/stops/509283"], ["https://data.delijn.be/stops/408972", "https://data.delijn.be/stops/408973"], ["https://data.delijn.be/stops/407616", "https://data.delijn.be/stops/407674"], ["https://data.delijn.be/stops/104775", "https://data.delijn.be/stops/104780"], ["https://data.delijn.be/stops/400759", "https://data.delijn.be/stops/409588"], ["https://data.delijn.be/stops/108543", "https://data.delijn.be/stops/306591"], ["https://data.delijn.be/stops/207048", "https://data.delijn.be/stops/207304"], ["https://data.delijn.be/stops/400102", "https://data.delijn.be/stops/409063"], ["https://data.delijn.be/stops/402977", "https://data.delijn.be/stops/402982"], ["https://data.delijn.be/stops/509784", "https://data.delijn.be/stops/509785"], ["https://data.delijn.be/stops/403177", "https://data.delijn.be/stops/403672"], ["https://data.delijn.be/stops/502644", "https://data.delijn.be/stops/507722"], ["https://data.delijn.be/stops/407063", "https://data.delijn.be/stops/410016"], ["https://data.delijn.be/stops/406450", "https://data.delijn.be/stops/406488"], ["https://data.delijn.be/stops/201933", "https://data.delijn.be/stops/202949"], ["https://data.delijn.be/stops/403512", "https://data.delijn.be/stops/410216"], ["https://data.delijn.be/stops/302004", "https://data.delijn.be/stops/302034"], ["https://data.delijn.be/stops/401174", "https://data.delijn.be/stops/406658"], ["https://data.delijn.be/stops/303531", "https://data.delijn.be/stops/303568"], ["https://data.delijn.be/stops/501055", "https://data.delijn.be/stops/506055"], ["https://data.delijn.be/stops/300197", "https://data.delijn.be/stops/300225"], ["https://data.delijn.be/stops/303845", "https://data.delijn.be/stops/303846"], ["https://data.delijn.be/stops/102517", "https://data.delijn.be/stops/102518"], ["https://data.delijn.be/stops/106293", "https://data.delijn.be/stops/106744"], ["https://data.delijn.be/stops/104447", "https://data.delijn.be/stops/303877"], ["https://data.delijn.be/stops/505988", "https://data.delijn.be/stops/509194"], ["https://data.delijn.be/stops/206458", "https://data.delijn.be/stops/206463"], ["https://data.delijn.be/stops/307643", "https://data.delijn.be/stops/307687"], ["https://data.delijn.be/stops/504479", "https://data.delijn.be/stops/509474"], ["https://data.delijn.be/stops/305389", "https://data.delijn.be/stops/305409"], ["https://data.delijn.be/stops/202061", "https://data.delijn.be/stops/202062"], ["https://data.delijn.be/stops/204623", "https://data.delijn.be/stops/204625"], ["https://data.delijn.be/stops/403755", "https://data.delijn.be/stops/403756"], ["https://data.delijn.be/stops/106828", "https://data.delijn.be/stops/106829"], ["https://data.delijn.be/stops/502115", "https://data.delijn.be/stops/502140"], ["https://data.delijn.be/stops/502003", "https://data.delijn.be/stops/507010"], ["https://data.delijn.be/stops/408156", "https://data.delijn.be/stops/408157"], ["https://data.delijn.be/stops/206730", "https://data.delijn.be/stops/206731"], ["https://data.delijn.be/stops/507206", "https://data.delijn.be/stops/507214"], ["https://data.delijn.be/stops/305747", "https://data.delijn.be/stops/306332"], ["https://data.delijn.be/stops/403428", "https://data.delijn.be/stops/403429"], ["https://data.delijn.be/stops/407841", "https://data.delijn.be/stops/407847"], ["https://data.delijn.be/stops/304551", "https://data.delijn.be/stops/304552"], ["https://data.delijn.be/stops/202731", "https://data.delijn.be/stops/203733"], ["https://data.delijn.be/stops/209610", "https://data.delijn.be/stops/305145"], ["https://data.delijn.be/stops/102285", "https://data.delijn.be/stops/103314"], ["https://data.delijn.be/stops/304309", "https://data.delijn.be/stops/307006"], ["https://data.delijn.be/stops/402256", "https://data.delijn.be/stops/402313"], ["https://data.delijn.be/stops/206345", "https://data.delijn.be/stops/206346"], ["https://data.delijn.be/stops/505185", "https://data.delijn.be/stops/509559"], ["https://data.delijn.be/stops/103629", "https://data.delijn.be/stops/103631"], ["https://data.delijn.be/stops/305133", "https://data.delijn.be/stops/305137"], ["https://data.delijn.be/stops/401172", "https://data.delijn.be/stops/406658"], ["https://data.delijn.be/stops/300237", "https://data.delijn.be/stops/300238"], ["https://data.delijn.be/stops/505830", "https://data.delijn.be/stops/509019"], ["https://data.delijn.be/stops/401773", "https://data.delijn.be/stops/406333"], ["https://data.delijn.be/stops/407687", "https://data.delijn.be/stops/409796"], ["https://data.delijn.be/stops/406613", "https://data.delijn.be/stops/406638"], ["https://data.delijn.be/stops/401480", "https://data.delijn.be/stops/401781"], ["https://data.delijn.be/stops/402825", "https://data.delijn.be/stops/407487"], ["https://data.delijn.be/stops/306696", "https://data.delijn.be/stops/308783"], ["https://data.delijn.be/stops/307816", "https://data.delijn.be/stops/307817"], ["https://data.delijn.be/stops/505824", "https://data.delijn.be/stops/506070"], ["https://data.delijn.be/stops/107175", "https://data.delijn.be/stops/107176"], ["https://data.delijn.be/stops/200014", "https://data.delijn.be/stops/211510"], ["https://data.delijn.be/stops/108874", "https://data.delijn.be/stops/108877"], ["https://data.delijn.be/stops/109178", "https://data.delijn.be/stops/109249"], ["https://data.delijn.be/stops/107652", "https://data.delijn.be/stops/107726"], ["https://data.delijn.be/stops/302721", "https://data.delijn.be/stops/308598"], ["https://data.delijn.be/stops/101808", "https://data.delijn.be/stops/109702"], ["https://data.delijn.be/stops/202674", "https://data.delijn.be/stops/203674"], ["https://data.delijn.be/stops/105743", "https://data.delijn.be/stops/109830"], ["https://data.delijn.be/stops/501353", "https://data.delijn.be/stops/501477"], ["https://data.delijn.be/stops/503319", "https://data.delijn.be/stops/508319"], ["https://data.delijn.be/stops/206199", "https://data.delijn.be/stops/206238"], ["https://data.delijn.be/stops/503964", "https://data.delijn.be/stops/508316"], ["https://data.delijn.be/stops/409017", "https://data.delijn.be/stops/409228"], ["https://data.delijn.be/stops/300651", "https://data.delijn.be/stops/301916"], ["https://data.delijn.be/stops/207193", "https://data.delijn.be/stops/207194"], ["https://data.delijn.be/stops/303747", "https://data.delijn.be/stops/303751"], ["https://data.delijn.be/stops/103333", "https://data.delijn.be/stops/106441"], ["https://data.delijn.be/stops/509290", "https://data.delijn.be/stops/509291"], ["https://data.delijn.be/stops/302681", "https://data.delijn.be/stops/308298"], ["https://data.delijn.be/stops/206579", "https://data.delijn.be/stops/209666"], ["https://data.delijn.be/stops/404207", "https://data.delijn.be/stops/404209"], ["https://data.delijn.be/stops/306814", "https://data.delijn.be/stops/308874"], ["https://data.delijn.be/stops/509422", "https://data.delijn.be/stops/509428"], ["https://data.delijn.be/stops/104161", "https://data.delijn.be/stops/104162"], ["https://data.delijn.be/stops/405911", "https://data.delijn.be/stops/409680"], ["https://data.delijn.be/stops/206178", "https://data.delijn.be/stops/303844"], ["https://data.delijn.be/stops/504278", "https://data.delijn.be/stops/509286"], ["https://data.delijn.be/stops/103123", "https://data.delijn.be/stops/109174"], ["https://data.delijn.be/stops/505673", "https://data.delijn.be/stops/507309"], ["https://data.delijn.be/stops/304788", "https://data.delijn.be/stops/306687"], ["https://data.delijn.be/stops/505013", "https://data.delijn.be/stops/507268"], ["https://data.delijn.be/stops/208046", "https://data.delijn.be/stops/208489"], ["https://data.delijn.be/stops/408318", "https://data.delijn.be/stops/408319"], ["https://data.delijn.be/stops/102252", "https://data.delijn.be/stops/109031"], ["https://data.delijn.be/stops/104320", "https://data.delijn.be/stops/105125"], ["https://data.delijn.be/stops/302106", "https://data.delijn.be/stops/302123"], ["https://data.delijn.be/stops/106321", "https://data.delijn.be/stops/106322"], ["https://data.delijn.be/stops/400098", "https://data.delijn.be/stops/409194"], ["https://data.delijn.be/stops/410214", "https://data.delijn.be/stops/410281"], ["https://data.delijn.be/stops/308555", "https://data.delijn.be/stops/308556"], ["https://data.delijn.be/stops/107977", "https://data.delijn.be/stops/107978"], ["https://data.delijn.be/stops/105793", "https://data.delijn.be/stops/105942"], ["https://data.delijn.be/stops/306929", "https://data.delijn.be/stops/306930"], ["https://data.delijn.be/stops/307564", "https://data.delijn.be/stops/307565"], ["https://data.delijn.be/stops/506945", "https://data.delijn.be/stops/508131"], ["https://data.delijn.be/stops/200070", "https://data.delijn.be/stops/208844"], ["https://data.delijn.be/stops/103147", "https://data.delijn.be/stops/103148"], ["https://data.delijn.be/stops/304695", "https://data.delijn.be/stops/304696"], ["https://data.delijn.be/stops/208795", "https://data.delijn.be/stops/209115"], ["https://data.delijn.be/stops/102401", "https://data.delijn.be/stops/104334"], ["https://data.delijn.be/stops/104394", "https://data.delijn.be/stops/104398"], ["https://data.delijn.be/stops/202250", "https://data.delijn.be/stops/203250"], ["https://data.delijn.be/stops/400979", "https://data.delijn.be/stops/407709"], ["https://data.delijn.be/stops/207659", "https://data.delijn.be/stops/207660"], ["https://data.delijn.be/stops/408076", "https://data.delijn.be/stops/408083"], ["https://data.delijn.be/stops/200397", "https://data.delijn.be/stops/209331"], ["https://data.delijn.be/stops/200583", "https://data.delijn.be/stops/200585"], ["https://data.delijn.be/stops/206252", "https://data.delijn.be/stops/207993"], ["https://data.delijn.be/stops/106666", "https://data.delijn.be/stops/106669"], ["https://data.delijn.be/stops/403387", "https://data.delijn.be/stops/403465"], ["https://data.delijn.be/stops/109226", "https://data.delijn.be/stops/109227"], ["https://data.delijn.be/stops/301085", "https://data.delijn.be/stops/304600"], ["https://data.delijn.be/stops/206579", "https://data.delijn.be/stops/207466"], ["https://data.delijn.be/stops/407920", "https://data.delijn.be/stops/407921"], ["https://data.delijn.be/stops/300101", "https://data.delijn.be/stops/306822"], ["https://data.delijn.be/stops/208436", "https://data.delijn.be/stops/218021"], ["https://data.delijn.be/stops/108272", "https://data.delijn.be/stops/108273"], ["https://data.delijn.be/stops/208726", "https://data.delijn.be/stops/208727"], ["https://data.delijn.be/stops/302344", "https://data.delijn.be/stops/302345"], ["https://data.delijn.be/stops/501230", "https://data.delijn.be/stops/505044"], ["https://data.delijn.be/stops/305263", "https://data.delijn.be/stops/305311"], ["https://data.delijn.be/stops/401330", "https://data.delijn.be/stops/410175"], ["https://data.delijn.be/stops/303196", "https://data.delijn.be/stops/304915"], ["https://data.delijn.be/stops/101591", "https://data.delijn.be/stops/103036"], ["https://data.delijn.be/stops/403250", "https://data.delijn.be/stops/409317"], ["https://data.delijn.be/stops/305099", "https://data.delijn.be/stops/305127"], ["https://data.delijn.be/stops/504599", "https://data.delijn.be/stops/509604"], ["https://data.delijn.be/stops/102181", "https://data.delijn.be/stops/105995"], ["https://data.delijn.be/stops/304746", "https://data.delijn.be/stops/304766"], ["https://data.delijn.be/stops/404625", "https://data.delijn.be/stops/404626"], ["https://data.delijn.be/stops/305015", "https://data.delijn.be/stops/305018"], ["https://data.delijn.be/stops/106329", "https://data.delijn.be/stops/106334"], ["https://data.delijn.be/stops/504564", "https://data.delijn.be/stops/509557"], ["https://data.delijn.be/stops/409562", "https://data.delijn.be/stops/409567"], ["https://data.delijn.be/stops/402798", "https://data.delijn.be/stops/405585"], ["https://data.delijn.be/stops/301452", "https://data.delijn.be/stops/308714"], ["https://data.delijn.be/stops/303840", "https://data.delijn.be/stops/303847"], ["https://data.delijn.be/stops/502304", "https://data.delijn.be/stops/507304"], ["https://data.delijn.be/stops/403348", "https://data.delijn.be/stops/403521"], ["https://data.delijn.be/stops/400611", "https://data.delijn.be/stops/308173"], ["https://data.delijn.be/stops/502056", "https://data.delijn.be/stops/507014"], ["https://data.delijn.be/stops/504035", "https://data.delijn.be/stops/504471"], ["https://data.delijn.be/stops/109210", "https://data.delijn.be/stops/109712"], ["https://data.delijn.be/stops/503319", "https://data.delijn.be/stops/503322"], ["https://data.delijn.be/stops/300752", "https://data.delijn.be/stops/304570"], ["https://data.delijn.be/stops/104643", "https://data.delijn.be/stops/108038"], ["https://data.delijn.be/stops/501682", "https://data.delijn.be/stops/506682"], ["https://data.delijn.be/stops/102024", "https://data.delijn.be/stops/103981"], ["https://data.delijn.be/stops/105425", "https://data.delijn.be/stops/105430"], ["https://data.delijn.be/stops/504255", "https://data.delijn.be/stops/504327"], ["https://data.delijn.be/stops/304381", "https://data.delijn.be/stops/304392"], ["https://data.delijn.be/stops/504358", "https://data.delijn.be/stops/504845"], ["https://data.delijn.be/stops/300152", "https://data.delijn.be/stops/301208"], ["https://data.delijn.be/stops/503637", "https://data.delijn.be/stops/508637"], ["https://data.delijn.be/stops/408360", "https://data.delijn.be/stops/408397"], ["https://data.delijn.be/stops/207566", "https://data.delijn.be/stops/207837"], ["https://data.delijn.be/stops/408580", "https://data.delijn.be/stops/408582"], ["https://data.delijn.be/stops/308504", "https://data.delijn.be/stops/308539"], ["https://data.delijn.be/stops/101651", "https://data.delijn.be/stops/105504"], ["https://data.delijn.be/stops/201489", "https://data.delijn.be/stops/203453"], ["https://data.delijn.be/stops/108405", "https://data.delijn.be/stops/108465"], ["https://data.delijn.be/stops/406464", "https://data.delijn.be/stops/406499"], ["https://data.delijn.be/stops/105883", "https://data.delijn.be/stops/105886"], ["https://data.delijn.be/stops/303396", "https://data.delijn.be/stops/303397"], ["https://data.delijn.be/stops/206487", "https://data.delijn.be/stops/207485"], ["https://data.delijn.be/stops/302256", "https://data.delijn.be/stops/302257"], ["https://data.delijn.be/stops/403103", "https://data.delijn.be/stops/403104"], ["https://data.delijn.be/stops/406270", "https://data.delijn.be/stops/406275"], ["https://data.delijn.be/stops/504499", "https://data.delijn.be/stops/509498"], ["https://data.delijn.be/stops/206740", "https://data.delijn.be/stops/207651"], ["https://data.delijn.be/stops/400081", "https://data.delijn.be/stops/405642"], ["https://data.delijn.be/stops/504405", "https://data.delijn.be/stops/504416"], ["https://data.delijn.be/stops/306864", "https://data.delijn.be/stops/307439"], ["https://data.delijn.be/stops/208890", "https://data.delijn.be/stops/219505"], ["https://data.delijn.be/stops/505167", "https://data.delijn.be/stops/509509"], ["https://data.delijn.be/stops/200007", "https://data.delijn.be/stops/208889"], ["https://data.delijn.be/stops/105967", "https://data.delijn.be/stops/107151"], ["https://data.delijn.be/stops/305260", "https://data.delijn.be/stops/305277"], ["https://data.delijn.be/stops/409267", "https://data.delijn.be/stops/409291"], ["https://data.delijn.be/stops/202313", "https://data.delijn.be/stops/203313"], ["https://data.delijn.be/stops/108125", "https://data.delijn.be/stops/108322"], ["https://data.delijn.be/stops/208663", "https://data.delijn.be/stops/209731"], ["https://data.delijn.be/stops/301349", "https://data.delijn.be/stops/306130"], ["https://data.delijn.be/stops/104497", "https://data.delijn.be/stops/107488"], ["https://data.delijn.be/stops/202389", "https://data.delijn.be/stops/203388"], ["https://data.delijn.be/stops/502364", "https://data.delijn.be/stops/507713"], ["https://data.delijn.be/stops/407599", "https://data.delijn.be/stops/410349"], ["https://data.delijn.be/stops/303581", "https://data.delijn.be/stops/306393"], ["https://data.delijn.be/stops/204350", "https://data.delijn.be/stops/205014"], ["https://data.delijn.be/stops/504126", "https://data.delijn.be/stops/504746"], ["https://data.delijn.be/stops/408587", "https://data.delijn.be/stops/408596"], ["https://data.delijn.be/stops/408222", "https://data.delijn.be/stops/408938"], ["https://data.delijn.be/stops/207487", "https://data.delijn.be/stops/207648"], ["https://data.delijn.be/stops/400720", "https://data.delijn.be/stops/404382"], ["https://data.delijn.be/stops/507597", "https://data.delijn.be/stops/507598"], ["https://data.delijn.be/stops/400033", "https://data.delijn.be/stops/400316"], ["https://data.delijn.be/stops/207012", "https://data.delijn.be/stops/217011"], ["https://data.delijn.be/stops/209069", "https://data.delijn.be/stops/209241"], ["https://data.delijn.be/stops/106990", "https://data.delijn.be/stops/107317"], ["https://data.delijn.be/stops/101466", "https://data.delijn.be/stops/101475"], ["https://data.delijn.be/stops/400286", "https://data.delijn.be/stops/404827"], ["https://data.delijn.be/stops/200234", "https://data.delijn.be/stops/201234"], ["https://data.delijn.be/stops/408340", "https://data.delijn.be/stops/410160"], ["https://data.delijn.be/stops/401019", "https://data.delijn.be/stops/403762"], ["https://data.delijn.be/stops/505281", "https://data.delijn.be/stops/505972"], ["https://data.delijn.be/stops/505437", "https://data.delijn.be/stops/505608"], ["https://data.delijn.be/stops/508887", "https://data.delijn.be/stops/508994"], ["https://data.delijn.be/stops/407183", "https://data.delijn.be/stops/409515"], ["https://data.delijn.be/stops/406635", "https://data.delijn.be/stops/407226"], ["https://data.delijn.be/stops/505443", "https://data.delijn.be/stops/508904"], ["https://data.delijn.be/stops/109824", "https://data.delijn.be/stops/109826"], ["https://data.delijn.be/stops/503050", "https://data.delijn.be/stops/503052"], ["https://data.delijn.be/stops/300756", "https://data.delijn.be/stops/300758"], ["https://data.delijn.be/stops/502113", "https://data.delijn.be/stops/507108"], ["https://data.delijn.be/stops/302257", "https://data.delijn.be/stops/307280"], ["https://data.delijn.be/stops/501009", "https://data.delijn.be/stops/501481"], ["https://data.delijn.be/stops/302622", "https://data.delijn.be/stops/302636"], ["https://data.delijn.be/stops/202788", "https://data.delijn.be/stops/203788"], ["https://data.delijn.be/stops/505338", "https://data.delijn.be/stops/507330"], ["https://data.delijn.be/stops/300559", "https://data.delijn.be/stops/300608"], ["https://data.delijn.be/stops/308729", "https://data.delijn.be/stops/308731"], ["https://data.delijn.be/stops/400788", "https://data.delijn.be/stops/409651"], ["https://data.delijn.be/stops/306680", "https://data.delijn.be/stops/307880"], ["https://data.delijn.be/stops/502251", "https://data.delijn.be/stops/505838"], ["https://data.delijn.be/stops/300671", "https://data.delijn.be/stops/308976"], ["https://data.delijn.be/stops/402988", "https://data.delijn.be/stops/405602"], ["https://data.delijn.be/stops/504072", "https://data.delijn.be/stops/509072"], ["https://data.delijn.be/stops/404654", "https://data.delijn.be/stops/410133"], ["https://data.delijn.be/stops/307068", "https://data.delijn.be/stops/307069"], ["https://data.delijn.be/stops/505278", "https://data.delijn.be/stops/508020"], ["https://data.delijn.be/stops/103122", "https://data.delijn.be/stops/104381"], ["https://data.delijn.be/stops/207162", "https://data.delijn.be/stops/207297"], ["https://data.delijn.be/stops/403193", "https://data.delijn.be/stops/403284"], ["https://data.delijn.be/stops/400363", "https://data.delijn.be/stops/406866"], ["https://data.delijn.be/stops/203268", "https://data.delijn.be/stops/203269"], ["https://data.delijn.be/stops/501149", "https://data.delijn.be/stops/509780"], ["https://data.delijn.be/stops/301170", "https://data.delijn.be/stops/303202"], ["https://data.delijn.be/stops/503722", "https://data.delijn.be/stops/509873"], ["https://data.delijn.be/stops/208480", "https://data.delijn.be/stops/209480"], ["https://data.delijn.be/stops/101821", "https://data.delijn.be/stops/107022"], ["https://data.delijn.be/stops/101475", "https://data.delijn.be/stops/101959"], ["https://data.delijn.be/stops/106221", "https://data.delijn.be/stops/106319"], ["https://data.delijn.be/stops/101474", "https://data.delijn.be/stops/107703"], ["https://data.delijn.be/stops/106080", "https://data.delijn.be/stops/106082"], ["https://data.delijn.be/stops/306945", "https://data.delijn.be/stops/306947"], ["https://data.delijn.be/stops/204479", "https://data.delijn.be/stops/205479"], ["https://data.delijn.be/stops/107961", "https://data.delijn.be/stops/107963"], ["https://data.delijn.be/stops/204108", "https://data.delijn.be/stops/205667"], ["https://data.delijn.be/stops/400675", "https://data.delijn.be/stops/302852"], ["https://data.delijn.be/stops/202769", "https://data.delijn.be/stops/202779"], ["https://data.delijn.be/stops/207376", "https://data.delijn.be/stops/207377"], ["https://data.delijn.be/stops/302021", "https://data.delijn.be/stops/302035"], ["https://data.delijn.be/stops/108282", "https://data.delijn.be/stops/109342"], ["https://data.delijn.be/stops/405304", "https://data.delijn.be/stops/305711"], ["https://data.delijn.be/stops/304468", "https://data.delijn.be/stops/307584"], ["https://data.delijn.be/stops/300157", "https://data.delijn.be/stops/300192"], ["https://data.delijn.be/stops/107001", "https://data.delijn.be/stops/107003"], ["https://data.delijn.be/stops/300517", "https://data.delijn.be/stops/300518"], ["https://data.delijn.be/stops/106029", "https://data.delijn.be/stops/106313"], ["https://data.delijn.be/stops/404103", "https://data.delijn.be/stops/404109"], ["https://data.delijn.be/stops/106158", "https://data.delijn.be/stops/106162"], ["https://data.delijn.be/stops/502468", "https://data.delijn.be/stops/502482"], ["https://data.delijn.be/stops/106458", "https://data.delijn.be/stops/106459"], ["https://data.delijn.be/stops/304221", "https://data.delijn.be/stops/305869"], ["https://data.delijn.be/stops/505311", "https://data.delijn.be/stops/509637"], ["https://data.delijn.be/stops/104042", "https://data.delijn.be/stops/108373"], ["https://data.delijn.be/stops/103313", "https://data.delijn.be/stops/109423"], ["https://data.delijn.be/stops/102492", "https://data.delijn.be/stops/400427"], ["https://data.delijn.be/stops/408626", "https://data.delijn.be/stops/410250"], ["https://data.delijn.be/stops/304756", "https://data.delijn.be/stops/304772"], ["https://data.delijn.be/stops/107289", "https://data.delijn.be/stops/107291"], ["https://data.delijn.be/stops/406040", "https://data.delijn.be/stops/406049"], ["https://data.delijn.be/stops/103718", "https://data.delijn.be/stops/107309"], ["https://data.delijn.be/stops/402544", "https://data.delijn.be/stops/404093"], ["https://data.delijn.be/stops/106961", "https://data.delijn.be/stops/106977"], ["https://data.delijn.be/stops/404412", "https://data.delijn.be/stops/404413"], ["https://data.delijn.be/stops/504393", "https://data.delijn.be/stops/504661"], ["https://data.delijn.be/stops/108459", "https://data.delijn.be/stops/108461"], ["https://data.delijn.be/stops/305683", "https://data.delijn.be/stops/305712"], ["https://data.delijn.be/stops/206088", "https://data.delijn.be/stops/206095"], ["https://data.delijn.be/stops/507021", "https://data.delijn.be/stops/507927"], ["https://data.delijn.be/stops/103209", "https://data.delijn.be/stops/108435"], ["https://data.delijn.be/stops/406453", "https://data.delijn.be/stops/410226"], ["https://data.delijn.be/stops/202917", "https://data.delijn.be/stops/203733"], ["https://data.delijn.be/stops/505578", "https://data.delijn.be/stops/507688"], ["https://data.delijn.be/stops/505636", "https://data.delijn.be/stops/505987"], ["https://data.delijn.be/stops/305056", "https://data.delijn.be/stops/306929"], ["https://data.delijn.be/stops/410177", "https://data.delijn.be/stops/410178"], ["https://data.delijn.be/stops/200152", "https://data.delijn.be/stops/201153"], ["https://data.delijn.be/stops/206127", "https://data.delijn.be/stops/207414"], ["https://data.delijn.be/stops/402528", "https://data.delijn.be/stops/402538"], ["https://data.delijn.be/stops/101506", "https://data.delijn.be/stops/109029"], ["https://data.delijn.be/stops/101465", "https://data.delijn.be/stops/101959"], ["https://data.delijn.be/stops/105663", "https://data.delijn.be/stops/105667"], ["https://data.delijn.be/stops/205333", "https://data.delijn.be/stops/205817"], ["https://data.delijn.be/stops/102605", "https://data.delijn.be/stops/107765"], ["https://data.delijn.be/stops/108987", "https://data.delijn.be/stops/108989"], ["https://data.delijn.be/stops/304619", "https://data.delijn.be/stops/304620"], ["https://data.delijn.be/stops/201925", "https://data.delijn.be/stops/206247"], ["https://data.delijn.be/stops/105524", "https://data.delijn.be/stops/105526"], ["https://data.delijn.be/stops/308476", "https://data.delijn.be/stops/308482"], ["https://data.delijn.be/stops/204652", "https://data.delijn.be/stops/205652"], ["https://data.delijn.be/stops/304024", "https://data.delijn.be/stops/304815"], ["https://data.delijn.be/stops/305650", "https://data.delijn.be/stops/305651"], ["https://data.delijn.be/stops/104121", "https://data.delijn.be/stops/107835"], ["https://data.delijn.be/stops/304330", "https://data.delijn.be/stops/304331"], ["https://data.delijn.be/stops/306107", "https://data.delijn.be/stops/306108"], ["https://data.delijn.be/stops/504513", "https://data.delijn.be/stops/509637"], ["https://data.delijn.be/stops/510015", "https://data.delijn.be/stops/510016"], ["https://data.delijn.be/stops/206788", "https://data.delijn.be/stops/206947"], ["https://data.delijn.be/stops/106034", "https://data.delijn.be/stops/106036"], ["https://data.delijn.be/stops/402369", "https://data.delijn.be/stops/402377"], ["https://data.delijn.be/stops/400120", "https://data.delijn.be/stops/400121"], ["https://data.delijn.be/stops/502412", "https://data.delijn.be/stops/507671"], ["https://data.delijn.be/stops/404112", "https://data.delijn.be/stops/404204"], ["https://data.delijn.be/stops/404928", "https://data.delijn.be/stops/409634"], ["https://data.delijn.be/stops/303833", "https://data.delijn.be/stops/304127"], ["https://data.delijn.be/stops/206777", "https://data.delijn.be/stops/208480"], ["https://data.delijn.be/stops/504810", "https://data.delijn.be/stops/508183"], ["https://data.delijn.be/stops/206462", "https://data.delijn.be/stops/206489"], ["https://data.delijn.be/stops/202735", "https://data.delijn.be/stops/202907"], ["https://data.delijn.be/stops/300811", "https://data.delijn.be/stops/300813"], ["https://data.delijn.be/stops/300376", "https://data.delijn.be/stops/300377"], ["https://data.delijn.be/stops/203180", "https://data.delijn.be/stops/203181"], ["https://data.delijn.be/stops/207676", "https://data.delijn.be/stops/208104"], ["https://data.delijn.be/stops/504218", "https://data.delijn.be/stops/509112"], ["https://data.delijn.be/stops/202451", "https://data.delijn.be/stops/203451"], ["https://data.delijn.be/stops/205297", "https://data.delijn.be/stops/205552"], ["https://data.delijn.be/stops/208281", "https://data.delijn.be/stops/208282"], ["https://data.delijn.be/stops/504942", "https://data.delijn.be/stops/509942"], ["https://data.delijn.be/stops/508108", "https://data.delijn.be/stops/508562"], ["https://data.delijn.be/stops/401582", "https://data.delijn.be/stops/410167"], ["https://data.delijn.be/stops/106280", "https://data.delijn.be/stops/109909"], ["https://data.delijn.be/stops/305588", "https://data.delijn.be/stops/305589"], ["https://data.delijn.be/stops/300699", "https://data.delijn.be/stops/300735"], ["https://data.delijn.be/stops/301972", "https://data.delijn.be/stops/301997"], ["https://data.delijn.be/stops/402286", "https://data.delijn.be/stops/402472"], ["https://data.delijn.be/stops/401010", "https://data.delijn.be/stops/401011"], ["https://data.delijn.be/stops/503288", "https://data.delijn.be/stops/505951"], ["https://data.delijn.be/stops/104856", "https://data.delijn.be/stops/106016"], ["https://data.delijn.be/stops/205972", "https://data.delijn.be/stops/206074"], ["https://data.delijn.be/stops/107156", "https://data.delijn.be/stops/107556"], ["https://data.delijn.be/stops/408515", "https://data.delijn.be/stops/408575"], ["https://data.delijn.be/stops/307640", "https://data.delijn.be/stops/307648"], ["https://data.delijn.be/stops/505093", "https://data.delijn.be/stops/508560"], ["https://data.delijn.be/stops/108106", "https://data.delijn.be/stops/108114"], ["https://data.delijn.be/stops/408045", "https://data.delijn.be/stops/303263"], ["https://data.delijn.be/stops/300477", "https://data.delijn.be/stops/300545"], ["https://data.delijn.be/stops/202773", "https://data.delijn.be/stops/203773"], ["https://data.delijn.be/stops/400928", "https://data.delijn.be/stops/400930"], ["https://data.delijn.be/stops/405046", "https://data.delijn.be/stops/405048"], ["https://data.delijn.be/stops/300019", "https://data.delijn.be/stops/300299"], ["https://data.delijn.be/stops/505980", "https://data.delijn.be/stops/508894"], ["https://data.delijn.be/stops/105674", "https://data.delijn.be/stops/109948"], ["https://data.delijn.be/stops/201831", "https://data.delijn.be/stops/208259"], ["https://data.delijn.be/stops/202933", "https://data.delijn.be/stops/203933"], ["https://data.delijn.be/stops/101183", "https://data.delijn.be/stops/107876"], ["https://data.delijn.be/stops/401724", "https://data.delijn.be/stops/408894"], ["https://data.delijn.be/stops/502560", "https://data.delijn.be/stops/507562"], ["https://data.delijn.be/stops/505405", "https://data.delijn.be/stops/508676"], ["https://data.delijn.be/stops/302619", "https://data.delijn.be/stops/303273"], ["https://data.delijn.be/stops/406013", "https://data.delijn.be/stops/410199"], ["https://data.delijn.be/stops/104017", "https://data.delijn.be/stops/104027"], ["https://data.delijn.be/stops/307585", "https://data.delijn.be/stops/307587"], ["https://data.delijn.be/stops/200665", "https://data.delijn.be/stops/201562"], ["https://data.delijn.be/stops/404770", "https://data.delijn.be/stops/404776"], ["https://data.delijn.be/stops/409234", "https://data.delijn.be/stops/409236"], ["https://data.delijn.be/stops/404654", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/506085", "https://data.delijn.be/stops/506091"], ["https://data.delijn.be/stops/102966", "https://data.delijn.be/stops/108978"], ["https://data.delijn.be/stops/508238", "https://data.delijn.be/stops/508261"], ["https://data.delijn.be/stops/201935", "https://data.delijn.be/stops/201956"], ["https://data.delijn.be/stops/303947", "https://data.delijn.be/stops/303953"], ["https://data.delijn.be/stops/208654", "https://data.delijn.be/stops/209653"], ["https://data.delijn.be/stops/404145", "https://data.delijn.be/stops/404219"], ["https://data.delijn.be/stops/208419", "https://data.delijn.be/stops/208420"], ["https://data.delijn.be/stops/503402", "https://data.delijn.be/stops/509772"], ["https://data.delijn.be/stops/301619", "https://data.delijn.be/stops/301621"], ["https://data.delijn.be/stops/508871", "https://data.delijn.be/stops/508873"], ["https://data.delijn.be/stops/407888", "https://data.delijn.be/stops/408182"], ["https://data.delijn.be/stops/203239", "https://data.delijn.be/stops/505518"], ["https://data.delijn.be/stops/206274", "https://data.delijn.be/stops/206275"], ["https://data.delijn.be/stops/304233", "https://data.delijn.be/stops/304234"], ["https://data.delijn.be/stops/106167", "https://data.delijn.be/stops/106450"], ["https://data.delijn.be/stops/302461", "https://data.delijn.be/stops/302465"], ["https://data.delijn.be/stops/405370", "https://data.delijn.be/stops/405371"], ["https://data.delijn.be/stops/102178", "https://data.delijn.be/stops/104410"], ["https://data.delijn.be/stops/300719", "https://data.delijn.be/stops/300736"], ["https://data.delijn.be/stops/304968", "https://data.delijn.be/stops/304977"], ["https://data.delijn.be/stops/500942", "https://data.delijn.be/stops/503179"], ["https://data.delijn.be/stops/208048", "https://data.delijn.be/stops/208952"], ["https://data.delijn.be/stops/208474", "https://data.delijn.be/stops/209667"], ["https://data.delijn.be/stops/303354", "https://data.delijn.be/stops/307183"], ["https://data.delijn.be/stops/206130", "https://data.delijn.be/stops/206728"], ["https://data.delijn.be/stops/404943", "https://data.delijn.be/stops/405649"], ["https://data.delijn.be/stops/206257", "https://data.delijn.be/stops/206258"], ["https://data.delijn.be/stops/202854", "https://data.delijn.be/stops/203853"], ["https://data.delijn.be/stops/505634", "https://data.delijn.be/stops/509807"], ["https://data.delijn.be/stops/307359", "https://data.delijn.be/stops/307360"], ["https://data.delijn.be/stops/401042", "https://data.delijn.be/stops/409058"], ["https://data.delijn.be/stops/206497", "https://data.delijn.be/stops/207151"], ["https://data.delijn.be/stops/504409", "https://data.delijn.be/stops/509472"], ["https://data.delijn.be/stops/402833", "https://data.delijn.be/stops/402845"], ["https://data.delijn.be/stops/300451", "https://data.delijn.be/stops/307904"], ["https://data.delijn.be/stops/402840", "https://data.delijn.be/stops/402896"], ["https://data.delijn.be/stops/106921", "https://data.delijn.be/stops/106922"], ["https://data.delijn.be/stops/303121", "https://data.delijn.be/stops/303223"], ["https://data.delijn.be/stops/405348", "https://data.delijn.be/stops/405349"], ["https://data.delijn.be/stops/101179", "https://data.delijn.be/stops/106742"], ["https://data.delijn.be/stops/304421", "https://data.delijn.be/stops/307388"], ["https://data.delijn.be/stops/205378", "https://data.delijn.be/stops/205379"], ["https://data.delijn.be/stops/405574", "https://data.delijn.be/stops/405575"], ["https://data.delijn.be/stops/400700", "https://data.delijn.be/stops/400837"], ["https://data.delijn.be/stops/507058", "https://data.delijn.be/stops/507441"], ["https://data.delijn.be/stops/300649", "https://data.delijn.be/stops/301838"], ["https://data.delijn.be/stops/305048", "https://data.delijn.be/stops/305089"], ["https://data.delijn.be/stops/101088", "https://data.delijn.be/stops/105978"], ["https://data.delijn.be/stops/205133", "https://data.delijn.be/stops/205141"], ["https://data.delijn.be/stops/206889", "https://data.delijn.be/stops/206913"], ["https://data.delijn.be/stops/306819", "https://data.delijn.be/stops/306821"], ["https://data.delijn.be/stops/305587", "https://data.delijn.be/stops/307514"], ["https://data.delijn.be/stops/401521", "https://data.delijn.be/stops/401559"], ["https://data.delijn.be/stops/303472", "https://data.delijn.be/stops/303483"], ["https://data.delijn.be/stops/402408", "https://data.delijn.be/stops/402413"], ["https://data.delijn.be/stops/306161", "https://data.delijn.be/stops/308587"], ["https://data.delijn.be/stops/102431", "https://data.delijn.be/stops/103989"], ["https://data.delijn.be/stops/303140", "https://data.delijn.be/stops/307056"], ["https://data.delijn.be/stops/102301", "https://data.delijn.be/stops/106966"], ["https://data.delijn.be/stops/302078", "https://data.delijn.be/stops/302251"], ["https://data.delijn.be/stops/200256", "https://data.delijn.be/stops/200722"], ["https://data.delijn.be/stops/304841", "https://data.delijn.be/stops/307065"], ["https://data.delijn.be/stops/103314", "https://data.delijn.be/stops/105798"], ["https://data.delijn.be/stops/107639", "https://data.delijn.be/stops/108837"], ["https://data.delijn.be/stops/503207", "https://data.delijn.be/stops/508211"], ["https://data.delijn.be/stops/200829", "https://data.delijn.be/stops/507060"], ["https://data.delijn.be/stops/308648", "https://data.delijn.be/stops/308649"], ["https://data.delijn.be/stops/400222", "https://data.delijn.be/stops/407154"], ["https://data.delijn.be/stops/201873", "https://data.delijn.be/stops/202026"], ["https://data.delijn.be/stops/400206", "https://data.delijn.be/stops/410000"], ["https://data.delijn.be/stops/206240", "https://data.delijn.be/stops/206241"], ["https://data.delijn.be/stops/405856", "https://data.delijn.be/stops/405857"], ["https://data.delijn.be/stops/206043", "https://data.delijn.be/stops/206533"], ["https://data.delijn.be/stops/206534", "https://data.delijn.be/stops/207548"], ["https://data.delijn.be/stops/502225", "https://data.delijn.be/stops/502684"], ["https://data.delijn.be/stops/208449", "https://data.delijn.be/stops/208878"], ["https://data.delijn.be/stops/502704", "https://data.delijn.be/stops/507704"], ["https://data.delijn.be/stops/204483", "https://data.delijn.be/stops/205042"], ["https://data.delijn.be/stops/200458", "https://data.delijn.be/stops/201458"], ["https://data.delijn.be/stops/305377", "https://data.delijn.be/stops/305386"], ["https://data.delijn.be/stops/107261", "https://data.delijn.be/stops/107263"], ["https://data.delijn.be/stops/307595", "https://data.delijn.be/stops/307605"], ["https://data.delijn.be/stops/301866", "https://data.delijn.be/stops/301868"], ["https://data.delijn.be/stops/108418", "https://data.delijn.be/stops/109575"], ["https://data.delijn.be/stops/401533", "https://data.delijn.be/stops/406017"], ["https://data.delijn.be/stops/206828", "https://data.delijn.be/stops/207829"], ["https://data.delijn.be/stops/301451", "https://data.delijn.be/stops/301485"], ["https://data.delijn.be/stops/500159", "https://data.delijn.be/stops/503580"], ["https://data.delijn.be/stops/204615", "https://data.delijn.be/stops/205656"], ["https://data.delijn.be/stops/408348", "https://data.delijn.be/stops/408349"], ["https://data.delijn.be/stops/103614", "https://data.delijn.be/stops/106309"], ["https://data.delijn.be/stops/301055", "https://data.delijn.be/stops/301056"], ["https://data.delijn.be/stops/503463", "https://data.delijn.be/stops/503473"], ["https://data.delijn.be/stops/301845", "https://data.delijn.be/stops/305983"], ["https://data.delijn.be/stops/207636", "https://data.delijn.be/stops/207890"], ["https://data.delijn.be/stops/505959", "https://data.delijn.be/stops/508560"], ["https://data.delijn.be/stops/206021", "https://data.delijn.be/stops/206166"], ["https://data.delijn.be/stops/400118", "https://data.delijn.be/stops/400152"], ["https://data.delijn.be/stops/303681", "https://data.delijn.be/stops/307372"], ["https://data.delijn.be/stops/303439", "https://data.delijn.be/stops/303520"], ["https://data.delijn.be/stops/101782", "https://data.delijn.be/stops/109382"], ["https://data.delijn.be/stops/407442", "https://data.delijn.be/stops/408477"], ["https://data.delijn.be/stops/104666", "https://data.delijn.be/stops/305986"], ["https://data.delijn.be/stops/304595", "https://data.delijn.be/stops/304596"], ["https://data.delijn.be/stops/200765", "https://data.delijn.be/stops/209381"], ["https://data.delijn.be/stops/503902", "https://data.delijn.be/stops/508904"], ["https://data.delijn.be/stops/104698", "https://data.delijn.be/stops/107358"], ["https://data.delijn.be/stops/507042", "https://data.delijn.be/stops/507051"], ["https://data.delijn.be/stops/101826", "https://data.delijn.be/stops/107116"], ["https://data.delijn.be/stops/105832", "https://data.delijn.be/stops/109696"], ["https://data.delijn.be/stops/504996", "https://data.delijn.be/stops/505381"], ["https://data.delijn.be/stops/106427", "https://data.delijn.be/stops/106516"], ["https://data.delijn.be/stops/401829", "https://data.delijn.be/stops/406020"], ["https://data.delijn.be/stops/206283", "https://data.delijn.be/stops/207283"], ["https://data.delijn.be/stops/407720", "https://data.delijn.be/stops/407729"], ["https://data.delijn.be/stops/507542", "https://data.delijn.be/stops/507545"], ["https://data.delijn.be/stops/304981", "https://data.delijn.be/stops/308014"], ["https://data.delijn.be/stops/407103", "https://data.delijn.be/stops/407343"], ["https://data.delijn.be/stops/405489", "https://data.delijn.be/stops/409319"], ["https://data.delijn.be/stops/304801", "https://data.delijn.be/stops/308770"], ["https://data.delijn.be/stops/206020", "https://data.delijn.be/stops/207913"], ["https://data.delijn.be/stops/407644", "https://data.delijn.be/stops/409774"], ["https://data.delijn.be/stops/208441", "https://data.delijn.be/stops/208675"], ["https://data.delijn.be/stops/104475", "https://data.delijn.be/stops/104995"], ["https://data.delijn.be/stops/402367", "https://data.delijn.be/stops/409600"], ["https://data.delijn.be/stops/400796", "https://data.delijn.be/stops/409609"], ["https://data.delijn.be/stops/209607", "https://data.delijn.be/stops/209609"], ["https://data.delijn.be/stops/503136", "https://data.delijn.be/stops/508120"], ["https://data.delijn.be/stops/106300", "https://data.delijn.be/stops/109909"], ["https://data.delijn.be/stops/404881", "https://data.delijn.be/stops/404882"], ["https://data.delijn.be/stops/404482", "https://data.delijn.be/stops/406878"], ["https://data.delijn.be/stops/105246", "https://data.delijn.be/stops/105247"], ["https://data.delijn.be/stops/108263", "https://data.delijn.be/stops/108266"], ["https://data.delijn.be/stops/305500", "https://data.delijn.be/stops/307987"], ["https://data.delijn.be/stops/209059", "https://data.delijn.be/stops/209060"], ["https://data.delijn.be/stops/505088", "https://data.delijn.be/stops/507231"], ["https://data.delijn.be/stops/503694", "https://data.delijn.be/stops/508396"], ["https://data.delijn.be/stops/201474", "https://data.delijn.be/stops/211061"], ["https://data.delijn.be/stops/401816", "https://data.delijn.be/stops/406072"], ["https://data.delijn.be/stops/504268", "https://data.delijn.be/stops/509267"], ["https://data.delijn.be/stops/303025", "https://data.delijn.be/stops/303072"], ["https://data.delijn.be/stops/507468", "https://data.delijn.be/stops/507472"], ["https://data.delijn.be/stops/201754", "https://data.delijn.be/stops/209593"], ["https://data.delijn.be/stops/407038", "https://data.delijn.be/stops/408429"], ["https://data.delijn.be/stops/104891", "https://data.delijn.be/stops/109348"], ["https://data.delijn.be/stops/505129", "https://data.delijn.be/stops/509749"], ["https://data.delijn.be/stops/300418", "https://data.delijn.be/stops/300446"], ["https://data.delijn.be/stops/502795", "https://data.delijn.be/stops/502914"], ["https://data.delijn.be/stops/207022", "https://data.delijn.be/stops/207166"], ["https://data.delijn.be/stops/303326", "https://data.delijn.be/stops/306337"], ["https://data.delijn.be/stops/504283", "https://data.delijn.be/stops/509037"], ["https://data.delijn.be/stops/503334", "https://data.delijn.be/stops/508334"], ["https://data.delijn.be/stops/206343", "https://data.delijn.be/stops/207343"], ["https://data.delijn.be/stops/401118", "https://data.delijn.be/stops/401150"], ["https://data.delijn.be/stops/410126", "https://data.delijn.be/stops/410399"], ["https://data.delijn.be/stops/204665", "https://data.delijn.be/stops/205666"], ["https://data.delijn.be/stops/300097", "https://data.delijn.be/stops/306822"], ["https://data.delijn.be/stops/403729", "https://data.delijn.be/stops/406973"], ["https://data.delijn.be/stops/400952", "https://data.delijn.be/stops/400981"], ["https://data.delijn.be/stops/504110", "https://data.delijn.be/stops/509110"], ["https://data.delijn.be/stops/307383", "https://data.delijn.be/stops/307389"], ["https://data.delijn.be/stops/101886", "https://data.delijn.be/stops/103087"], ["https://data.delijn.be/stops/105591", "https://data.delijn.be/stops/105594"], ["https://data.delijn.be/stops/104898", "https://data.delijn.be/stops/108961"], ["https://data.delijn.be/stops/200190", "https://data.delijn.be/stops/200987"], ["https://data.delijn.be/stops/306093", "https://data.delijn.be/stops/308685"], ["https://data.delijn.be/stops/305675", "https://data.delijn.be/stops/305686"], ["https://data.delijn.be/stops/407037", "https://data.delijn.be/stops/408001"], ["https://data.delijn.be/stops/501266", "https://data.delijn.be/stops/506266"], ["https://data.delijn.be/stops/205159", "https://data.delijn.be/stops/205160"], ["https://data.delijn.be/stops/300291", "https://data.delijn.be/stops/300302"], ["https://data.delijn.be/stops/407882", "https://data.delijn.be/stops/408181"], ["https://data.delijn.be/stops/505205", "https://data.delijn.be/stops/505215"], ["https://data.delijn.be/stops/400990", "https://data.delijn.be/stops/401150"], ["https://data.delijn.be/stops/102222", "https://data.delijn.be/stops/105649"], ["https://data.delijn.be/stops/502746", "https://data.delijn.be/stops/505069"], ["https://data.delijn.be/stops/200071", "https://data.delijn.be/stops/201113"], ["https://data.delijn.be/stops/301459", "https://data.delijn.be/stops/305654"], ["https://data.delijn.be/stops/505158", "https://data.delijn.be/stops/508778"], ["https://data.delijn.be/stops/103472", "https://data.delijn.be/stops/109170"], ["https://data.delijn.be/stops/506641", "https://data.delijn.be/stops/506642"], ["https://data.delijn.be/stops/503799", "https://data.delijn.be/stops/508799"], ["https://data.delijn.be/stops/409001", "https://data.delijn.be/stops/409006"], ["https://data.delijn.be/stops/501673", "https://data.delijn.be/stops/506117"], ["https://data.delijn.be/stops/505744", "https://data.delijn.be/stops/507493"], ["https://data.delijn.be/stops/404604", "https://data.delijn.be/stops/404608"], ["https://data.delijn.be/stops/206996", "https://data.delijn.be/stops/207928"], ["https://data.delijn.be/stops/104572", "https://data.delijn.be/stops/104857"], ["https://data.delijn.be/stops/401550", "https://data.delijn.be/stops/404914"], ["https://data.delijn.be/stops/205027", "https://data.delijn.be/stops/205818"], ["https://data.delijn.be/stops/104557", "https://data.delijn.be/stops/107486"], ["https://data.delijn.be/stops/304977", "https://data.delijn.be/stops/308034"], ["https://data.delijn.be/stops/207667", "https://data.delijn.be/stops/208064"], ["https://data.delijn.be/stops/401967", "https://data.delijn.be/stops/409158"], ["https://data.delijn.be/stops/508302", "https://data.delijn.be/stops/508307"], ["https://data.delijn.be/stops/400554", "https://data.delijn.be/stops/403425"], ["https://data.delijn.be/stops/208687", "https://data.delijn.be/stops/208691"], ["https://data.delijn.be/stops/202118", "https://data.delijn.be/stops/203116"], ["https://data.delijn.be/stops/104802", "https://data.delijn.be/stops/109555"], ["https://data.delijn.be/stops/301008", "https://data.delijn.be/stops/301015"], ["https://data.delijn.be/stops/303636", "https://data.delijn.be/stops/303637"], ["https://data.delijn.be/stops/108424", "https://data.delijn.be/stops/109568"], ["https://data.delijn.be/stops/404303", "https://data.delijn.be/stops/404304"], ["https://data.delijn.be/stops/200663", "https://data.delijn.be/stops/200666"], ["https://data.delijn.be/stops/103004", "https://data.delijn.be/stops/108332"], ["https://data.delijn.be/stops/409059", "https://data.delijn.be/stops/409102"], ["https://data.delijn.be/stops/105873", "https://data.delijn.be/stops/105883"], ["https://data.delijn.be/stops/208641", "https://data.delijn.be/stops/208643"], ["https://data.delijn.be/stops/208790", "https://data.delijn.be/stops/209337"], ["https://data.delijn.be/stops/204796", "https://data.delijn.be/stops/205795"], ["https://data.delijn.be/stops/402865", "https://data.delijn.be/stops/306036"], ["https://data.delijn.be/stops/302926", "https://data.delijn.be/stops/302953"], ["https://data.delijn.be/stops/407656", "https://data.delijn.be/stops/407732"], ["https://data.delijn.be/stops/305104", "https://data.delijn.be/stops/305105"], ["https://data.delijn.be/stops/505050", "https://data.delijn.be/stops/507554"], ["https://data.delijn.be/stops/504776", "https://data.delijn.be/stops/505985"], ["https://data.delijn.be/stops/502364", "https://data.delijn.be/stops/502675"], ["https://data.delijn.be/stops/403193", "https://data.delijn.be/stops/403205"], ["https://data.delijn.be/stops/201718", "https://data.delijn.be/stops/201726"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/200716"], ["https://data.delijn.be/stops/501519", "https://data.delijn.be/stops/510014"], ["https://data.delijn.be/stops/101957", "https://data.delijn.be/stops/108323"], ["https://data.delijn.be/stops/504554", "https://data.delijn.be/stops/504563"], ["https://data.delijn.be/stops/503006", "https://data.delijn.be/stops/508111"], ["https://data.delijn.be/stops/404558", "https://data.delijn.be/stops/406987"], ["https://data.delijn.be/stops/405361", "https://data.delijn.be/stops/406398"], ["https://data.delijn.be/stops/504117", "https://data.delijn.be/stops/504759"], ["https://data.delijn.be/stops/103287", "https://data.delijn.be/stops/109478"], ["https://data.delijn.be/stops/107447", "https://data.delijn.be/stops/107449"], ["https://data.delijn.be/stops/506016", "https://data.delijn.be/stops/506612"], ["https://data.delijn.be/stops/400598", "https://data.delijn.be/stops/404052"], ["https://data.delijn.be/stops/301423", "https://data.delijn.be/stops/306267"], ["https://data.delijn.be/stops/204565", "https://data.delijn.be/stops/303536"], ["https://data.delijn.be/stops/200362", "https://data.delijn.be/stops/202645"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/105034", "https://data.delijn.be/stops/105121"], ["https://data.delijn.be/stops/407910", "https://data.delijn.be/stops/407999"], ["https://data.delijn.be/stops/103364", "https://data.delijn.be/stops/108005"], ["https://data.delijn.be/stops/508313", "https://data.delijn.be/stops/508791"], ["https://data.delijn.be/stops/207488", "https://data.delijn.be/stops/207646"], ["https://data.delijn.be/stops/305232", "https://data.delijn.be/stops/305251"], ["https://data.delijn.be/stops/101471", "https://data.delijn.be/stops/101472"], ["https://data.delijn.be/stops/300455", "https://data.delijn.be/stops/304976"], ["https://data.delijn.be/stops/504999", "https://data.delijn.be/stops/508101"], ["https://data.delijn.be/stops/302623", "https://data.delijn.be/stops/302624"], ["https://data.delijn.be/stops/108297", "https://data.delijn.be/stops/108298"], ["https://data.delijn.be/stops/501138", "https://data.delijn.be/stops/501139"], ["https://data.delijn.be/stops/201200", "https://data.delijn.be/stops/201689"], ["https://data.delijn.be/stops/206934", "https://data.delijn.be/stops/206963"], ["https://data.delijn.be/stops/202917", "https://data.delijn.be/stops/202921"], ["https://data.delijn.be/stops/406001", "https://data.delijn.be/stops/406014"], ["https://data.delijn.be/stops/501471", "https://data.delijn.be/stops/505397"], ["https://data.delijn.be/stops/304466", "https://data.delijn.be/stops/304470"], ["https://data.delijn.be/stops/502344", "https://data.delijn.be/stops/507344"], ["https://data.delijn.be/stops/203217", "https://data.delijn.be/stops/204795"], ["https://data.delijn.be/stops/402219", "https://data.delijn.be/stops/405571"], ["https://data.delijn.be/stops/105253", "https://data.delijn.be/stops/105268"], ["https://data.delijn.be/stops/104736", "https://data.delijn.be/stops/108167"], ["https://data.delijn.be/stops/409388", "https://data.delijn.be/stops/409389"], ["https://data.delijn.be/stops/302631", "https://data.delijn.be/stops/302632"], ["https://data.delijn.be/stops/504347", "https://data.delijn.be/stops/504351"], ["https://data.delijn.be/stops/103212", "https://data.delijn.be/stops/106288"], ["https://data.delijn.be/stops/103759", "https://data.delijn.be/stops/105351"], ["https://data.delijn.be/stops/400703", "https://data.delijn.be/stops/410112"], ["https://data.delijn.be/stops/201830", "https://data.delijn.be/stops/208325"], ["https://data.delijn.be/stops/200325", "https://data.delijn.be/stops/200544"], ["https://data.delijn.be/stops/206784", "https://data.delijn.be/stops/209610"], ["https://data.delijn.be/stops/201729", "https://data.delijn.be/stops/208333"], ["https://data.delijn.be/stops/403702", "https://data.delijn.be/stops/403773"], ["https://data.delijn.be/stops/208641", "https://data.delijn.be/stops/209643"], ["https://data.delijn.be/stops/106142", "https://data.delijn.be/stops/106434"], ["https://data.delijn.be/stops/403442", "https://data.delijn.be/stops/410280"], ["https://data.delijn.be/stops/402579", "https://data.delijn.be/stops/403472"], ["https://data.delijn.be/stops/102161", "https://data.delijn.be/stops/108985"], ["https://data.delijn.be/stops/505026", "https://data.delijn.be/stops/507011"], ["https://data.delijn.be/stops/105533", "https://data.delijn.be/stops/106730"], ["https://data.delijn.be/stops/407483", "https://data.delijn.be/stops/407498"], ["https://data.delijn.be/stops/401586", "https://data.delijn.be/stops/401587"], ["https://data.delijn.be/stops/201924", "https://data.delijn.be/stops/207592"], ["https://data.delijn.be/stops/301572", "https://data.delijn.be/stops/301574"], ["https://data.delijn.be/stops/307364", "https://data.delijn.be/stops/307365"], ["https://data.delijn.be/stops/503806", "https://data.delijn.be/stops/508568"], ["https://data.delijn.be/stops/405455", "https://data.delijn.be/stops/405459"], ["https://data.delijn.be/stops/304912", "https://data.delijn.be/stops/304913"], ["https://data.delijn.be/stops/507591", "https://data.delijn.be/stops/507751"], ["https://data.delijn.be/stops/102383", "https://data.delijn.be/stops/106038"], ["https://data.delijn.be/stops/503522", "https://data.delijn.be/stops/503530"], ["https://data.delijn.be/stops/301596", "https://data.delijn.be/stops/301600"], ["https://data.delijn.be/stops/406918", "https://data.delijn.be/stops/406970"], ["https://data.delijn.be/stops/102952", "https://data.delijn.be/stops/102953"], ["https://data.delijn.be/stops/304281", "https://data.delijn.be/stops/304282"], ["https://data.delijn.be/stops/101754", "https://data.delijn.be/stops/109821"], ["https://data.delijn.be/stops/505429", "https://data.delijn.be/stops/509022"], ["https://data.delijn.be/stops/202476", "https://data.delijn.be/stops/210003"], ["https://data.delijn.be/stops/503087", "https://data.delijn.be/stops/503825"], ["https://data.delijn.be/stops/106561", "https://data.delijn.be/stops/106563"], ["https://data.delijn.be/stops/200248", "https://data.delijn.be/stops/201575"], ["https://data.delijn.be/stops/102493", "https://data.delijn.be/stops/400004"], ["https://data.delijn.be/stops/502666", "https://data.delijn.be/stops/507666"], ["https://data.delijn.be/stops/107907", "https://data.delijn.be/stops/107908"], ["https://data.delijn.be/stops/106380", "https://data.delijn.be/stops/106381"], ["https://data.delijn.be/stops/202359", "https://data.delijn.be/stops/203359"], ["https://data.delijn.be/stops/302712", "https://data.delijn.be/stops/302723"], ["https://data.delijn.be/stops/201844", "https://data.delijn.be/stops/208326"], ["https://data.delijn.be/stops/108318", "https://data.delijn.be/stops/109018"], ["https://data.delijn.be/stops/503525", "https://data.delijn.be/stops/508525"], ["https://data.delijn.be/stops/408552", "https://data.delijn.be/stops/408645"], ["https://data.delijn.be/stops/409350", "https://data.delijn.be/stops/409441"], ["https://data.delijn.be/stops/304885", "https://data.delijn.be/stops/306161"], ["https://data.delijn.be/stops/302848", "https://data.delijn.be/stops/302849"], ["https://data.delijn.be/stops/406448", "https://data.delijn.be/stops/406449"], ["https://data.delijn.be/stops/107871", "https://data.delijn.be/stops/107872"], ["https://data.delijn.be/stops/204097", "https://data.delijn.be/stops/204466"], ["https://data.delijn.be/stops/307981", "https://data.delijn.be/stops/307984"], ["https://data.delijn.be/stops/102320", "https://data.delijn.be/stops/108800"], ["https://data.delijn.be/stops/301272", "https://data.delijn.be/stops/301274"], ["https://data.delijn.be/stops/202670", "https://data.delijn.be/stops/210034"], ["https://data.delijn.be/stops/201759", "https://data.delijn.be/stops/218010"], ["https://data.delijn.be/stops/304620", "https://data.delijn.be/stops/304622"], ["https://data.delijn.be/stops/206676", "https://data.delijn.be/stops/209164"], ["https://data.delijn.be/stops/108942", "https://data.delijn.be/stops/108944"], ["https://data.delijn.be/stops/504367", "https://data.delijn.be/stops/509367"], ["https://data.delijn.be/stops/200575", "https://data.delijn.be/stops/201575"], ["https://data.delijn.be/stops/109300", "https://data.delijn.be/stops/109301"], ["https://data.delijn.be/stops/104835", "https://data.delijn.be/stops/104840"], ["https://data.delijn.be/stops/106464", "https://data.delijn.be/stops/106465"], ["https://data.delijn.be/stops/108259", "https://data.delijn.be/stops/108354"], ["https://data.delijn.be/stops/406278", "https://data.delijn.be/stops/408922"], ["https://data.delijn.be/stops/403018", "https://data.delijn.be/stops/405182"], ["https://data.delijn.be/stops/105578", "https://data.delijn.be/stops/105582"], ["https://data.delijn.be/stops/501366", "https://data.delijn.be/stops/506362"], ["https://data.delijn.be/stops/102836", "https://data.delijn.be/stops/102837"], ["https://data.delijn.be/stops/400504", "https://data.delijn.be/stops/400512"], ["https://data.delijn.be/stops/501661", "https://data.delijn.be/stops/506661"], ["https://data.delijn.be/stops/206855", "https://data.delijn.be/stops/207236"], ["https://data.delijn.be/stops/401487", "https://data.delijn.be/stops/401887"], ["https://data.delijn.be/stops/200897", "https://data.delijn.be/stops/203356"], ["https://data.delijn.be/stops/504680", "https://data.delijn.be/stops/509396"], ["https://data.delijn.be/stops/501393", "https://data.delijn.be/stops/506394"], ["https://data.delijn.be/stops/109041", "https://data.delijn.be/stops/109044"], ["https://data.delijn.be/stops/505236", "https://data.delijn.be/stops/505762"], ["https://data.delijn.be/stops/305041", "https://data.delijn.be/stops/306832"], ["https://data.delijn.be/stops/105908", "https://data.delijn.be/stops/105909"], ["https://data.delijn.be/stops/306790", "https://data.delijn.be/stops/306791"], ["https://data.delijn.be/stops/102025", "https://data.delijn.be/stops/108760"], ["https://data.delijn.be/stops/101850", "https://data.delijn.be/stops/102708"], ["https://data.delijn.be/stops/402574", "https://data.delijn.be/stops/402575"], ["https://data.delijn.be/stops/306807", "https://data.delijn.be/stops/306808"], ["https://data.delijn.be/stops/101869", "https://data.delijn.be/stops/105256"], ["https://data.delijn.be/stops/301616", "https://data.delijn.be/stops/301617"], ["https://data.delijn.be/stops/403161", "https://data.delijn.be/stops/403408"], ["https://data.delijn.be/stops/105619", "https://data.delijn.be/stops/106363"], ["https://data.delijn.be/stops/200226", "https://data.delijn.be/stops/201226"], ["https://data.delijn.be/stops/103643", "https://data.delijn.be/stops/105628"], ["https://data.delijn.be/stops/202196", "https://data.delijn.be/stops/203196"], ["https://data.delijn.be/stops/407188", "https://data.delijn.be/stops/407381"], ["https://data.delijn.be/stops/204422", "https://data.delijn.be/stops/204423"], ["https://data.delijn.be/stops/504168", "https://data.delijn.be/stops/509716"], ["https://data.delijn.be/stops/105233", "https://data.delijn.be/stops/105248"], ["https://data.delijn.be/stops/301716", "https://data.delijn.be/stops/301718"], ["https://data.delijn.be/stops/204128", "https://data.delijn.be/stops/205124"], ["https://data.delijn.be/stops/502005", "https://data.delijn.be/stops/502209"], ["https://data.delijn.be/stops/307351", "https://data.delijn.be/stops/307431"], ["https://data.delijn.be/stops/206750", "https://data.delijn.be/stops/209668"], ["https://data.delijn.be/stops/202763", "https://data.delijn.be/stops/202764"], ["https://data.delijn.be/stops/403262", "https://data.delijn.be/stops/403263"], ["https://data.delijn.be/stops/407245", "https://data.delijn.be/stops/407452"], ["https://data.delijn.be/stops/505662", "https://data.delijn.be/stops/507499"], ["https://data.delijn.be/stops/102056", "https://data.delijn.be/stops/103338"], ["https://data.delijn.be/stops/505379", "https://data.delijn.be/stops/508093"], ["https://data.delijn.be/stops/203768", "https://data.delijn.be/stops/203769"], ["https://data.delijn.be/stops/204060", "https://data.delijn.be/stops/205061"], ["https://data.delijn.be/stops/206101", "https://data.delijn.be/stops/207100"], ["https://data.delijn.be/stops/504189", "https://data.delijn.be/stops/504191"], ["https://data.delijn.be/stops/206381", "https://data.delijn.be/stops/206382"], ["https://data.delijn.be/stops/500026", "https://data.delijn.be/stops/502768"], ["https://data.delijn.be/stops/209083", "https://data.delijn.be/stops/209700"], ["https://data.delijn.be/stops/109149", "https://data.delijn.be/stops/109192"], ["https://data.delijn.be/stops/505799", "https://data.delijn.be/stops/509616"], ["https://data.delijn.be/stops/301229", "https://data.delijn.be/stops/303624"], ["https://data.delijn.be/stops/407716", "https://data.delijn.be/stops/407718"], ["https://data.delijn.be/stops/300004", "https://data.delijn.be/stops/304300"], ["https://data.delijn.be/stops/402107", "https://data.delijn.be/stops/402299"], ["https://data.delijn.be/stops/406525", "https://data.delijn.be/stops/406604"], ["https://data.delijn.be/stops/506295", "https://data.delijn.be/stops/506360"], ["https://data.delijn.be/stops/108418", "https://data.delijn.be/stops/108421"], ["https://data.delijn.be/stops/503826", "https://data.delijn.be/stops/508828"], ["https://data.delijn.be/stops/504346", "https://data.delijn.be/stops/504590"], ["https://data.delijn.be/stops/105134", "https://data.delijn.be/stops/305612"], ["https://data.delijn.be/stops/206697", "https://data.delijn.be/stops/207335"], ["https://data.delijn.be/stops/302737", "https://data.delijn.be/stops/308593"], ["https://data.delijn.be/stops/503476", "https://data.delijn.be/stops/508986"], ["https://data.delijn.be/stops/104280", "https://data.delijn.be/stops/104375"], ["https://data.delijn.be/stops/205314", "https://data.delijn.be/stops/205354"], ["https://data.delijn.be/stops/400889", "https://data.delijn.be/stops/409613"], ["https://data.delijn.be/stops/304383", "https://data.delijn.be/stops/304390"], ["https://data.delijn.be/stops/107702", "https://data.delijn.be/stops/109045"], ["https://data.delijn.be/stops/106012", "https://data.delijn.be/stops/106014"], ["https://data.delijn.be/stops/203963", "https://data.delijn.be/stops/205770"], ["https://data.delijn.be/stops/208498", "https://data.delijn.be/stops/209472"], ["https://data.delijn.be/stops/405186", "https://data.delijn.be/stops/405194"], ["https://data.delijn.be/stops/108688", "https://data.delijn.be/stops/108689"], ["https://data.delijn.be/stops/504590", "https://data.delijn.be/stops/509350"], ["https://data.delijn.be/stops/504541", "https://data.delijn.be/stops/504560"], ["https://data.delijn.be/stops/207600", "https://data.delijn.be/stops/207601"], ["https://data.delijn.be/stops/104334", "https://data.delijn.be/stops/105856"], ["https://data.delijn.be/stops/208151", "https://data.delijn.be/stops/208193"], ["https://data.delijn.be/stops/503720", "https://data.delijn.be/stops/503758"], ["https://data.delijn.be/stops/300980", "https://data.delijn.be/stops/303650"], ["https://data.delijn.be/stops/106922", "https://data.delijn.be/stops/106945"], ["https://data.delijn.be/stops/502235", "https://data.delijn.be/stops/505721"], ["https://data.delijn.be/stops/503053", "https://data.delijn.be/stops/509757"], ["https://data.delijn.be/stops/402477", "https://data.delijn.be/stops/407500"], ["https://data.delijn.be/stops/102834", "https://data.delijn.be/stops/103759"], ["https://data.delijn.be/stops/206060", "https://data.delijn.be/stops/206500"], ["https://data.delijn.be/stops/400456", "https://data.delijn.be/stops/400458"], ["https://data.delijn.be/stops/210055", "https://data.delijn.be/stops/211055"], ["https://data.delijn.be/stops/209595", "https://data.delijn.be/stops/209808"], ["https://data.delijn.be/stops/301396", "https://data.delijn.be/stops/306122"], ["https://data.delijn.be/stops/407395", "https://data.delijn.be/stops/407446"], ["https://data.delijn.be/stops/401801", "https://data.delijn.be/stops/401864"], ["https://data.delijn.be/stops/105506", "https://data.delijn.be/stops/105508"], ["https://data.delijn.be/stops/200558", "https://data.delijn.be/stops/201557"], ["https://data.delijn.be/stops/101657", "https://data.delijn.be/stops/104939"], ["https://data.delijn.be/stops/403945", "https://data.delijn.be/stops/404086"], ["https://data.delijn.be/stops/406804", "https://data.delijn.be/stops/406805"], ["https://data.delijn.be/stops/108846", "https://data.delijn.be/stops/108847"], ["https://data.delijn.be/stops/407658", "https://data.delijn.be/stops/409806"], ["https://data.delijn.be/stops/302453", "https://data.delijn.be/stops/307037"], ["https://data.delijn.be/stops/504250", "https://data.delijn.be/stops/509250"], ["https://data.delijn.be/stops/403413", "https://data.delijn.be/stops/403684"], ["https://data.delijn.be/stops/400470", "https://data.delijn.be/stops/408824"], ["https://data.delijn.be/stops/200775", "https://data.delijn.be/stops/209237"], ["https://data.delijn.be/stops/207115", "https://data.delijn.be/stops/207117"], ["https://data.delijn.be/stops/200140", "https://data.delijn.be/stops/211001"], ["https://data.delijn.be/stops/106656", "https://data.delijn.be/stops/106657"], ["https://data.delijn.be/stops/307646", "https://data.delijn.be/stops/307647"], ["https://data.delijn.be/stops/200116", "https://data.delijn.be/stops/201115"], ["https://data.delijn.be/stops/501388", "https://data.delijn.be/stops/506389"], ["https://data.delijn.be/stops/107298", "https://data.delijn.be/stops/107299"], ["https://data.delijn.be/stops/107502", "https://data.delijn.be/stops/107529"], ["https://data.delijn.be/stops/308515", "https://data.delijn.be/stops/308516"], ["https://data.delijn.be/stops/103617", "https://data.delijn.be/stops/106195"], ["https://data.delijn.be/stops/505966", "https://data.delijn.be/stops/508284"], ["https://data.delijn.be/stops/104046", "https://data.delijn.be/stops/108399"], ["https://data.delijn.be/stops/108627", "https://data.delijn.be/stops/305859"], ["https://data.delijn.be/stops/302670", "https://data.delijn.be/stops/307088"], ["https://data.delijn.be/stops/208807", "https://data.delijn.be/stops/208808"], ["https://data.delijn.be/stops/400320", "https://data.delijn.be/stops/400321"], ["https://data.delijn.be/stops/502811", "https://data.delijn.be/stops/507507"], ["https://data.delijn.be/stops/502205", "https://data.delijn.be/stops/507205"], ["https://data.delijn.be/stops/400482", "https://data.delijn.be/stops/400483"], ["https://data.delijn.be/stops/404376", "https://data.delijn.be/stops/404378"], ["https://data.delijn.be/stops/303307", "https://data.delijn.be/stops/303332"], ["https://data.delijn.be/stops/206224", "https://data.delijn.be/stops/206225"], ["https://data.delijn.be/stops/107825", "https://data.delijn.be/stops/108295"], ["https://data.delijn.be/stops/509224", "https://data.delijn.be/stops/509685"], ["https://data.delijn.be/stops/106801", "https://data.delijn.be/stops/106870"], ["https://data.delijn.be/stops/209121", "https://data.delijn.be/stops/209207"], ["https://data.delijn.be/stops/102808", "https://data.delijn.be/stops/102911"], ["https://data.delijn.be/stops/204682", "https://data.delijn.be/stops/205681"], ["https://data.delijn.be/stops/201897", "https://data.delijn.be/stops/203147"], ["https://data.delijn.be/stops/305053", "https://data.delijn.be/stops/305211"], ["https://data.delijn.be/stops/502032", "https://data.delijn.be/stops/502047"], ["https://data.delijn.be/stops/202938", "https://data.delijn.be/stops/203937"], ["https://data.delijn.be/stops/208216", "https://data.delijn.be/stops/209215"], ["https://data.delijn.be/stops/205729", "https://data.delijn.be/stops/205731"], ["https://data.delijn.be/stops/504568", "https://data.delijn.be/stops/509568"], ["https://data.delijn.be/stops/205114", "https://data.delijn.be/stops/205690"], ["https://data.delijn.be/stops/302253", "https://data.delijn.be/stops/302266"], ["https://data.delijn.be/stops/206866", "https://data.delijn.be/stops/208748"], ["https://data.delijn.be/stops/200957", "https://data.delijn.be/stops/202727"], ["https://data.delijn.be/stops/206094", "https://data.delijn.be/stops/207094"], ["https://data.delijn.be/stops/102728", "https://data.delijn.be/stops/106586"], ["https://data.delijn.be/stops/408251", "https://data.delijn.be/stops/408412"], ["https://data.delijn.be/stops/303415", "https://data.delijn.be/stops/303431"], ["https://data.delijn.be/stops/206879", "https://data.delijn.be/stops/207900"], ["https://data.delijn.be/stops/400022", "https://data.delijn.be/stops/400199"], ["https://data.delijn.be/stops/105332", "https://data.delijn.be/stops/105336"], ["https://data.delijn.be/stops/201753", "https://data.delijn.be/stops/209215"], ["https://data.delijn.be/stops/102580", "https://data.delijn.be/stops/109113"], ["https://data.delijn.be/stops/504286", "https://data.delijn.be/stops/509039"], ["https://data.delijn.be/stops/503903", "https://data.delijn.be/stops/504981"], ["https://data.delijn.be/stops/102656", "https://data.delijn.be/stops/107921"], ["https://data.delijn.be/stops/107720", "https://data.delijn.be/stops/107725"], ["https://data.delijn.be/stops/501603", "https://data.delijn.be/stops/506402"], ["https://data.delijn.be/stops/402622", "https://data.delijn.be/stops/402623"], ["https://data.delijn.be/stops/109153", "https://data.delijn.be/stops/109230"], ["https://data.delijn.be/stops/402770", "https://data.delijn.be/stops/406545"], ["https://data.delijn.be/stops/106918", "https://data.delijn.be/stops/106947"], ["https://data.delijn.be/stops/402853", "https://data.delijn.be/stops/402942"], ["https://data.delijn.be/stops/402767", "https://data.delijn.be/stops/406473"], ["https://data.delijn.be/stops/209085", "https://data.delijn.be/stops/209086"], ["https://data.delijn.be/stops/503016", "https://data.delijn.be/stops/508010"], ["https://data.delijn.be/stops/501738", "https://data.delijn.be/stops/506253"], ["https://data.delijn.be/stops/206368", "https://data.delijn.be/stops/207809"], ["https://data.delijn.be/stops/501163", "https://data.delijn.be/stops/509838"], ["https://data.delijn.be/stops/108381", "https://data.delijn.be/stops/108382"], ["https://data.delijn.be/stops/209005", "https://data.delijn.be/stops/209006"], ["https://data.delijn.be/stops/104491", "https://data.delijn.be/stops/104580"], ["https://data.delijn.be/stops/105388", "https://data.delijn.be/stops/105392"], ["https://data.delijn.be/stops/402048", "https://data.delijn.be/stops/402266"], ["https://data.delijn.be/stops/502419", "https://data.delijn.be/stops/502694"], ["https://data.delijn.be/stops/502003", "https://data.delijn.be/stops/507039"], ["https://data.delijn.be/stops/200443", "https://data.delijn.be/stops/201224"], ["https://data.delijn.be/stops/106267", "https://data.delijn.be/stops/106270"], ["https://data.delijn.be/stops/206942", "https://data.delijn.be/stops/209161"], ["https://data.delijn.be/stops/304609", "https://data.delijn.be/stops/304683"], ["https://data.delijn.be/stops/206529", "https://data.delijn.be/stops/207480"], ["https://data.delijn.be/stops/107215", "https://data.delijn.be/stops/107243"], ["https://data.delijn.be/stops/105367", "https://data.delijn.be/stops/105389"], ["https://data.delijn.be/stops/504214", "https://data.delijn.be/stops/509067"], ["https://data.delijn.be/stops/503691", "https://data.delijn.be/stops/503694"], ["https://data.delijn.be/stops/503820", "https://data.delijn.be/stops/503835"], ["https://data.delijn.be/stops/105789", "https://data.delijn.be/stops/105938"], ["https://data.delijn.be/stops/200911", "https://data.delijn.be/stops/200949"], ["https://data.delijn.be/stops/207662", "https://data.delijn.be/stops/208500"], ["https://data.delijn.be/stops/501308", "https://data.delijn.be/stops/506334"], ["https://data.delijn.be/stops/407834", "https://data.delijn.be/stops/407983"], ["https://data.delijn.be/stops/303165", "https://data.delijn.be/stops/303166"], ["https://data.delijn.be/stops/104004", "https://data.delijn.be/stops/106565"], ["https://data.delijn.be/stops/405705", "https://data.delijn.be/stops/408804"], ["https://data.delijn.be/stops/503962", "https://data.delijn.be/stops/508039"], ["https://data.delijn.be/stops/204333", "https://data.delijn.be/stops/205334"], ["https://data.delijn.be/stops/206350", "https://data.delijn.be/stops/207729"], ["https://data.delijn.be/stops/406741", "https://data.delijn.be/stops/406743"], ["https://data.delijn.be/stops/304188", "https://data.delijn.be/stops/305336"], ["https://data.delijn.be/stops/106753", "https://data.delijn.be/stops/106754"], ["https://data.delijn.be/stops/107037", "https://data.delijn.be/stops/107041"], ["https://data.delijn.be/stops/206960", "https://data.delijn.be/stops/216018"], ["https://data.delijn.be/stops/503423", "https://data.delijn.be/stops/508411"], ["https://data.delijn.be/stops/503304", "https://data.delijn.be/stops/505949"], ["https://data.delijn.be/stops/503429", "https://data.delijn.be/stops/508369"], ["https://data.delijn.be/stops/505323", "https://data.delijn.be/stops/507504"], ["https://data.delijn.be/stops/405517", "https://data.delijn.be/stops/407281"], ["https://data.delijn.be/stops/501682", "https://data.delijn.be/stops/501683"], ["https://data.delijn.be/stops/505680", "https://data.delijn.be/stops/507065"], ["https://data.delijn.be/stops/502557", "https://data.delijn.be/stops/505051"], ["https://data.delijn.be/stops/501474", "https://data.delijn.be/stops/506474"], ["https://data.delijn.be/stops/202944", "https://data.delijn.be/stops/203944"], ["https://data.delijn.be/stops/300689", "https://data.delijn.be/stops/306941"], ["https://data.delijn.be/stops/203898", "https://data.delijn.be/stops/211125"], ["https://data.delijn.be/stops/400765", "https://data.delijn.be/stops/409636"], ["https://data.delijn.be/stops/301704", "https://data.delijn.be/stops/301713"], ["https://data.delijn.be/stops/307380", "https://data.delijn.be/stops/307448"], ["https://data.delijn.be/stops/300304", "https://data.delijn.be/stops/301317"], ["https://data.delijn.be/stops/207501", "https://data.delijn.be/stops/207502"], ["https://data.delijn.be/stops/207129", "https://data.delijn.be/stops/207130"], ["https://data.delijn.be/stops/504217", "https://data.delijn.be/stops/504221"], ["https://data.delijn.be/stops/200384", "https://data.delijn.be/stops/201286"], ["https://data.delijn.be/stops/200922", "https://data.delijn.be/stops/203715"], ["https://data.delijn.be/stops/406126", "https://data.delijn.be/stops/410262"], ["https://data.delijn.be/stops/403082", "https://data.delijn.be/stops/405122"], ["https://data.delijn.be/stops/206030", "https://data.delijn.be/stops/206685"], ["https://data.delijn.be/stops/204172", "https://data.delijn.be/stops/205170"], ["https://data.delijn.be/stops/202082", "https://data.delijn.be/stops/203083"], ["https://data.delijn.be/stops/300048", "https://data.delijn.be/stops/306794"], ["https://data.delijn.be/stops/405667", "https://data.delijn.be/stops/409343"], ["https://data.delijn.be/stops/101313", "https://data.delijn.be/stops/102934"], ["https://data.delijn.be/stops/502337", "https://data.delijn.be/stops/505010"], ["https://data.delijn.be/stops/501147", "https://data.delijn.be/stops/506147"], ["https://data.delijn.be/stops/409373", "https://data.delijn.be/stops/409389"], ["https://data.delijn.be/stops/306332", "https://data.delijn.be/stops/306333"], ["https://data.delijn.be/stops/107969", "https://data.delijn.be/stops/108433"], ["https://data.delijn.be/stops/406206", "https://data.delijn.be/stops/406207"], ["https://data.delijn.be/stops/108082", "https://data.delijn.be/stops/108449"], ["https://data.delijn.be/stops/501683", "https://data.delijn.be/stops/506259"], ["https://data.delijn.be/stops/104693", "https://data.delijn.be/stops/104696"], ["https://data.delijn.be/stops/504242", "https://data.delijn.be/stops/509133"], ["https://data.delijn.be/stops/407623", "https://data.delijn.be/stops/407625"], ["https://data.delijn.be/stops/501128", "https://data.delijn.be/stops/506128"], ["https://data.delijn.be/stops/503219", "https://data.delijn.be/stops/508927"], ["https://data.delijn.be/stops/508188", "https://data.delijn.be/stops/508206"], ["https://data.delijn.be/stops/400916", "https://data.delijn.be/stops/400970"], ["https://data.delijn.be/stops/500874", "https://data.delijn.be/stops/505306"], ["https://data.delijn.be/stops/108875", "https://data.delijn.be/stops/109145"], ["https://data.delijn.be/stops/508526", "https://data.delijn.be/stops/509775"], ["https://data.delijn.be/stops/401397", "https://data.delijn.be/stops/401409"], ["https://data.delijn.be/stops/501540", "https://data.delijn.be/stops/505781"], ["https://data.delijn.be/stops/103013", "https://data.delijn.be/stops/103014"], ["https://data.delijn.be/stops/410115", "https://data.delijn.be/stops/410116"], ["https://data.delijn.be/stops/101952", "https://data.delijn.be/stops/108796"], ["https://data.delijn.be/stops/404894", "https://data.delijn.be/stops/404902"], ["https://data.delijn.be/stops/103965", "https://data.delijn.be/stops/104700"], ["https://data.delijn.be/stops/202066", "https://data.delijn.be/stops/202324"], ["https://data.delijn.be/stops/202077", "https://data.delijn.be/stops/203077"], ["https://data.delijn.be/stops/503962", "https://data.delijn.be/stops/508318"], ["https://data.delijn.be/stops/204737", "https://data.delijn.be/stops/205737"], ["https://data.delijn.be/stops/209280", "https://data.delijn.be/stops/209281"], ["https://data.delijn.be/stops/503457", "https://data.delijn.be/stops/508947"], ["https://data.delijn.be/stops/303459", "https://data.delijn.be/stops/303504"], ["https://data.delijn.be/stops/204130", "https://data.delijn.be/stops/205130"], ["https://data.delijn.be/stops/502926", "https://data.delijn.be/stops/505013"], ["https://data.delijn.be/stops/101796", "https://data.delijn.be/stops/103600"], ["https://data.delijn.be/stops/301650", "https://data.delijn.be/stops/301892"], ["https://data.delijn.be/stops/105804", "https://data.delijn.be/stops/106299"], ["https://data.delijn.be/stops/101482", "https://data.delijn.be/stops/109295"], ["https://data.delijn.be/stops/300211", "https://data.delijn.be/stops/300212"], ["https://data.delijn.be/stops/405563", "https://data.delijn.be/stops/410098"], ["https://data.delijn.be/stops/404954", "https://data.delijn.be/stops/404955"], ["https://data.delijn.be/stops/305253", "https://data.delijn.be/stops/305254"], ["https://data.delijn.be/stops/303595", "https://data.delijn.be/stops/306280"], ["https://data.delijn.be/stops/209470", "https://data.delijn.be/stops/209513"], ["https://data.delijn.be/stops/305198", "https://data.delijn.be/stops/305201"], ["https://data.delijn.be/stops/101072", "https://data.delijn.be/stops/107980"], ["https://data.delijn.be/stops/206039", "https://data.delijn.be/stops/206049"], ["https://data.delijn.be/stops/108076", "https://data.delijn.be/stops/108444"], ["https://data.delijn.be/stops/202430", "https://data.delijn.be/stops/204939"], ["https://data.delijn.be/stops/208685", "https://data.delijn.be/stops/208688"], ["https://data.delijn.be/stops/204300", "https://data.delijn.be/stops/205301"], ["https://data.delijn.be/stops/200409", "https://data.delijn.be/stops/201135"], ["https://data.delijn.be/stops/206637", "https://data.delijn.be/stops/207637"], ["https://data.delijn.be/stops/202678", "https://data.delijn.be/stops/203679"], ["https://data.delijn.be/stops/404919", "https://data.delijn.be/stops/404943"], ["https://data.delijn.be/stops/206203", "https://data.delijn.be/stops/206204"], ["https://data.delijn.be/stops/403143", "https://data.delijn.be/stops/403157"], ["https://data.delijn.be/stops/303391", "https://data.delijn.be/stops/308850"], ["https://data.delijn.be/stops/208339", "https://data.delijn.be/stops/219007"], ["https://data.delijn.be/stops/409092", "https://data.delijn.be/stops/409095"], ["https://data.delijn.be/stops/102492", "https://data.delijn.be/stops/400349"], ["https://data.delijn.be/stops/505349", "https://data.delijn.be/stops/507599"], ["https://data.delijn.be/stops/201695", "https://data.delijn.be/stops/203038"], ["https://data.delijn.be/stops/304815", "https://data.delijn.be/stops/304852"], ["https://data.delijn.be/stops/405768", "https://data.delijn.be/stops/409306"], ["https://data.delijn.be/stops/408080", "https://data.delijn.be/stops/305716"], ["https://data.delijn.be/stops/505553", "https://data.delijn.be/stops/507506"], ["https://data.delijn.be/stops/502102", "https://data.delijn.be/stops/502132"], ["https://data.delijn.be/stops/304471", "https://data.delijn.be/stops/307027"], ["https://data.delijn.be/stops/302935", "https://data.delijn.be/stops/306299"], ["https://data.delijn.be/stops/109071", "https://data.delijn.be/stops/306860"], ["https://data.delijn.be/stops/403403", "https://data.delijn.be/stops/410028"], ["https://data.delijn.be/stops/505839", "https://data.delijn.be/stops/506046"], ["https://data.delijn.be/stops/208433", "https://data.delijn.be/stops/209432"], ["https://data.delijn.be/stops/307367", "https://data.delijn.be/stops/307376"], ["https://data.delijn.be/stops/301044", "https://data.delijn.be/stops/304787"], ["https://data.delijn.be/stops/200565", "https://data.delijn.be/stops/201841"], ["https://data.delijn.be/stops/408732", "https://data.delijn.be/stops/410342"], ["https://data.delijn.be/stops/104496", "https://data.delijn.be/stops/104498"], ["https://data.delijn.be/stops/406036", "https://data.delijn.be/stops/406056"], ["https://data.delijn.be/stops/300710", "https://data.delijn.be/stops/300716"], ["https://data.delijn.be/stops/101062", "https://data.delijn.be/stops/106750"], ["https://data.delijn.be/stops/109071", "https://data.delijn.be/stops/300149"], ["https://data.delijn.be/stops/401479", "https://data.delijn.be/stops/401743"], ["https://data.delijn.be/stops/301179", "https://data.delijn.be/stops/305657"], ["https://data.delijn.be/stops/209181", "https://data.delijn.be/stops/209191"], ["https://data.delijn.be/stops/202781", "https://data.delijn.be/stops/203781"], ["https://data.delijn.be/stops/405343", "https://data.delijn.be/stops/405346"], ["https://data.delijn.be/stops/303966", "https://data.delijn.be/stops/304081"], ["https://data.delijn.be/stops/104880", "https://data.delijn.be/stops/104882"], ["https://data.delijn.be/stops/501041", "https://data.delijn.be/stops/501138"], ["https://data.delijn.be/stops/204083", "https://data.delijn.be/stops/204087"], ["https://data.delijn.be/stops/106652", "https://data.delijn.be/stops/106655"], ["https://data.delijn.be/stops/207258", "https://data.delijn.be/stops/207290"], ["https://data.delijn.be/stops/504547", "https://data.delijn.be/stops/505375"], ["https://data.delijn.be/stops/305799", "https://data.delijn.be/stops/305800"], ["https://data.delijn.be/stops/201406", "https://data.delijn.be/stops/210133"], ["https://data.delijn.be/stops/202273", "https://data.delijn.be/stops/203668"], ["https://data.delijn.be/stops/202662", "https://data.delijn.be/stops/203662"], ["https://data.delijn.be/stops/505436", "https://data.delijn.be/stops/509268"], ["https://data.delijn.be/stops/501211", "https://data.delijn.be/stops/506223"], ["https://data.delijn.be/stops/102620", "https://data.delijn.be/stops/105515"], ["https://data.delijn.be/stops/405763", "https://data.delijn.be/stops/406058"], ["https://data.delijn.be/stops/301028", "https://data.delijn.be/stops/301033"], ["https://data.delijn.be/stops/204102", "https://data.delijn.be/stops/204179"], ["https://data.delijn.be/stops/206701", "https://data.delijn.be/stops/304276"], ["https://data.delijn.be/stops/204354", "https://data.delijn.be/stops/205676"], ["https://data.delijn.be/stops/208265", "https://data.delijn.be/stops/209733"], ["https://data.delijn.be/stops/208570", "https://data.delijn.be/stops/209569"], ["https://data.delijn.be/stops/103623", "https://data.delijn.be/stops/103627"], ["https://data.delijn.be/stops/303778", "https://data.delijn.be/stops/303783"], ["https://data.delijn.be/stops/506283", "https://data.delijn.be/stops/506317"], ["https://data.delijn.be/stops/407166", "https://data.delijn.be/stops/407167"], ["https://data.delijn.be/stops/101432", "https://data.delijn.be/stops/107292"], ["https://data.delijn.be/stops/503994", "https://data.delijn.be/stops/508078"], ["https://data.delijn.be/stops/408063", "https://data.delijn.be/stops/408166"], ["https://data.delijn.be/stops/109612", "https://data.delijn.be/stops/109613"], ["https://data.delijn.be/stops/400156", "https://data.delijn.be/stops/400157"], ["https://data.delijn.be/stops/408242", "https://data.delijn.be/stops/308289"], ["https://data.delijn.be/stops/304611", "https://data.delijn.be/stops/304612"], ["https://data.delijn.be/stops/305080", "https://data.delijn.be/stops/305081"], ["https://data.delijn.be/stops/201582", "https://data.delijn.be/stops/201587"], ["https://data.delijn.be/stops/107844", "https://data.delijn.be/stops/107847"], ["https://data.delijn.be/stops/404513", "https://data.delijn.be/stops/408966"], ["https://data.delijn.be/stops/200727", "https://data.delijn.be/stops/202414"], ["https://data.delijn.be/stops/104081", "https://data.delijn.be/stops/104090"], ["https://data.delijn.be/stops/408652", "https://data.delijn.be/stops/408660"], ["https://data.delijn.be/stops/304128", "https://data.delijn.be/stops/307547"], ["https://data.delijn.be/stops/505955", "https://data.delijn.be/stops/505957"], ["https://data.delijn.be/stops/206083", "https://data.delijn.be/stops/207083"], ["https://data.delijn.be/stops/108448", "https://data.delijn.be/stops/108449"], ["https://data.delijn.be/stops/204714", "https://data.delijn.be/stops/205100"], ["https://data.delijn.be/stops/206382", "https://data.delijn.be/stops/206921"], ["https://data.delijn.be/stops/403631", "https://data.delijn.be/stops/403644"], ["https://data.delijn.be/stops/208690", "https://data.delijn.be/stops/208705"], ["https://data.delijn.be/stops/105217", "https://data.delijn.be/stops/106232"], ["https://data.delijn.be/stops/102741", "https://data.delijn.be/stops/102744"], ["https://data.delijn.be/stops/301284", "https://data.delijn.be/stops/301286"], ["https://data.delijn.be/stops/407792", "https://data.delijn.be/stops/307377"], ["https://data.delijn.be/stops/401098", "https://data.delijn.be/stops/401099"], ["https://data.delijn.be/stops/508449", "https://data.delijn.be/stops/508675"], ["https://data.delijn.be/stops/204759", "https://data.delijn.be/stops/205758"], ["https://data.delijn.be/stops/305992", "https://data.delijn.be/stops/305993"], ["https://data.delijn.be/stops/101061", "https://data.delijn.be/stops/106012"], ["https://data.delijn.be/stops/409647", "https://data.delijn.be/stops/410393"], ["https://data.delijn.be/stops/204607", "https://data.delijn.be/stops/205608"], ["https://data.delijn.be/stops/300168", "https://data.delijn.be/stops/301223"], ["https://data.delijn.be/stops/208239", "https://data.delijn.be/stops/209119"], ["https://data.delijn.be/stops/103542", "https://data.delijn.be/stops/106727"], ["https://data.delijn.be/stops/303391", "https://data.delijn.be/stops/303397"], ["https://data.delijn.be/stops/108068", "https://data.delijn.be/stops/108866"], ["https://data.delijn.be/stops/306874", "https://data.delijn.be/stops/307417"], ["https://data.delijn.be/stops/303529", "https://data.delijn.be/stops/303566"], ["https://data.delijn.be/stops/402047", "https://data.delijn.be/stops/402103"], ["https://data.delijn.be/stops/200384", "https://data.delijn.be/stops/209726"], ["https://data.delijn.be/stops/306334", "https://data.delijn.be/stops/306336"], ["https://data.delijn.be/stops/302747", "https://data.delijn.be/stops/303220"], ["https://data.delijn.be/stops/504438", "https://data.delijn.be/stops/505898"], ["https://data.delijn.be/stops/201047", "https://data.delijn.be/stops/202449"], ["https://data.delijn.be/stops/101465", "https://data.delijn.be/stops/101469"], ["https://data.delijn.be/stops/505280", "https://data.delijn.be/stops/505974"], ["https://data.delijn.be/stops/301756", "https://data.delijn.be/stops/308894"], ["https://data.delijn.be/stops/301308", "https://data.delijn.be/stops/301309"], ["https://data.delijn.be/stops/208405", "https://data.delijn.be/stops/208414"], ["https://data.delijn.be/stops/204519", "https://data.delijn.be/stops/205044"], ["https://data.delijn.be/stops/509058", "https://data.delijn.be/stops/509638"], ["https://data.delijn.be/stops/301137", "https://data.delijn.be/stops/301138"], ["https://data.delijn.be/stops/200829", "https://data.delijn.be/stops/200876"], ["https://data.delijn.be/stops/501426", "https://data.delijn.be/stops/505036"], ["https://data.delijn.be/stops/407856", "https://data.delijn.be/stops/410344"], ["https://data.delijn.be/stops/409228", "https://data.delijn.be/stops/409234"], ["https://data.delijn.be/stops/402374", "https://data.delijn.be/stops/409359"], ["https://data.delijn.be/stops/408195", "https://data.delijn.be/stops/408415"], ["https://data.delijn.be/stops/204141", "https://data.delijn.be/stops/204142"], ["https://data.delijn.be/stops/208119", "https://data.delijn.be/stops/218009"], ["https://data.delijn.be/stops/301392", "https://data.delijn.be/stops/306150"], ["https://data.delijn.be/stops/306949", "https://data.delijn.be/stops/306951"], ["https://data.delijn.be/stops/108842", "https://data.delijn.be/stops/108843"], ["https://data.delijn.be/stops/402811", "https://data.delijn.be/stops/409048"], ["https://data.delijn.be/stops/206545", "https://data.delijn.be/stops/207550"], ["https://data.delijn.be/stops/104401", "https://data.delijn.be/stops/107129"], ["https://data.delijn.be/stops/400264", "https://data.delijn.be/stops/402827"], ["https://data.delijn.be/stops/103141", "https://data.delijn.be/stops/106515"], ["https://data.delijn.be/stops/101747", "https://data.delijn.be/stops/106362"], ["https://data.delijn.be/stops/501034", "https://data.delijn.be/stops/501329"], ["https://data.delijn.be/stops/503287", "https://data.delijn.be/stops/508281"], ["https://data.delijn.be/stops/509377", "https://data.delijn.be/stops/509381"], ["https://data.delijn.be/stops/307691", "https://data.delijn.be/stops/307692"], ["https://data.delijn.be/stops/400840", "https://data.delijn.be/stops/409568"], ["https://data.delijn.be/stops/405848", "https://data.delijn.be/stops/405859"], ["https://data.delijn.be/stops/503815", "https://data.delijn.be/stops/507738"], ["https://data.delijn.be/stops/205176", "https://data.delijn.be/stops/205213"], ["https://data.delijn.be/stops/504772", "https://data.delijn.be/stops/509532"], ["https://data.delijn.be/stops/304500", "https://data.delijn.be/stops/304501"], ["https://data.delijn.be/stops/105652", "https://data.delijn.be/stops/105654"], ["https://data.delijn.be/stops/208465", "https://data.delijn.be/stops/209465"], ["https://data.delijn.be/stops/409064", "https://data.delijn.be/stops/409114"], ["https://data.delijn.be/stops/105257", "https://data.delijn.be/stops/105293"], ["https://data.delijn.be/stops/302562", "https://data.delijn.be/stops/302578"], ["https://data.delijn.be/stops/401529", "https://data.delijn.be/stops/401541"], ["https://data.delijn.be/stops/206695", "https://data.delijn.be/stops/207700"], ["https://data.delijn.be/stops/509009", "https://data.delijn.be/stops/509416"], ["https://data.delijn.be/stops/302037", "https://data.delijn.be/stops/304914"], ["https://data.delijn.be/stops/200696", "https://data.delijn.be/stops/209646"], ["https://data.delijn.be/stops/407213", "https://data.delijn.be/stops/407216"], ["https://data.delijn.be/stops/304725", "https://data.delijn.be/stops/304726"], ["https://data.delijn.be/stops/504381", "https://data.delijn.be/stops/504385"], ["https://data.delijn.be/stops/405626", "https://data.delijn.be/stops/405628"], ["https://data.delijn.be/stops/301548", "https://data.delijn.be/stops/301549"], ["https://data.delijn.be/stops/509448", "https://data.delijn.be/stops/509967"], ["https://data.delijn.be/stops/501116", "https://data.delijn.be/stops/506116"], ["https://data.delijn.be/stops/401085", "https://data.delijn.be/stops/401166"], ["https://data.delijn.be/stops/102382", "https://data.delijn.be/stops/105604"], ["https://data.delijn.be/stops/103982", "https://data.delijn.be/stops/109934"], ["https://data.delijn.be/stops/405916", "https://data.delijn.be/stops/405970"], ["https://data.delijn.be/stops/305773", "https://data.delijn.be/stops/305793"], ["https://data.delijn.be/stops/106132", "https://data.delijn.be/stops/106181"], ["https://data.delijn.be/stops/502667", "https://data.delijn.be/stops/507184"], ["https://data.delijn.be/stops/501513", "https://data.delijn.be/stops/506482"], ["https://data.delijn.be/stops/500042", "https://data.delijn.be/stops/500043"], ["https://data.delijn.be/stops/300505", "https://data.delijn.be/stops/302419"], ["https://data.delijn.be/stops/210131", "https://data.delijn.be/stops/211131"], ["https://data.delijn.be/stops/503382", "https://data.delijn.be/stops/503443"], ["https://data.delijn.be/stops/103503", "https://data.delijn.be/stops/109138"], ["https://data.delijn.be/stops/102604", "https://data.delijn.be/stops/106731"], ["https://data.delijn.be/stops/204741", "https://data.delijn.be/stops/205746"], ["https://data.delijn.be/stops/503528", "https://data.delijn.be/stops/503869"], ["https://data.delijn.be/stops/201164", "https://data.delijn.be/stops/209730"], ["https://data.delijn.be/stops/401564", "https://data.delijn.be/stops/401565"], ["https://data.delijn.be/stops/206146", "https://data.delijn.be/stops/207145"], ["https://data.delijn.be/stops/203549", "https://data.delijn.be/stops/203556"], ["https://data.delijn.be/stops/500028", "https://data.delijn.be/stops/504848"], ["https://data.delijn.be/stops/404775", "https://data.delijn.be/stops/404786"], ["https://data.delijn.be/stops/208275", "https://data.delijn.be/stops/209276"], ["https://data.delijn.be/stops/102007", "https://data.delijn.be/stops/104665"], ["https://data.delijn.be/stops/502044", "https://data.delijn.be/stops/507616"], ["https://data.delijn.be/stops/101948", "https://data.delijn.be/stops/108749"], ["https://data.delijn.be/stops/109597", "https://data.delijn.be/stops/109601"], ["https://data.delijn.be/stops/107511", "https://data.delijn.be/stops/107512"], ["https://data.delijn.be/stops/402364", "https://data.delijn.be/stops/410071"], ["https://data.delijn.be/stops/506077", "https://data.delijn.be/stops/506082"], ["https://data.delijn.be/stops/207170", "https://data.delijn.be/stops/303847"], ["https://data.delijn.be/stops/504199", "https://data.delijn.be/stops/504481"], ["https://data.delijn.be/stops/406685", "https://data.delijn.be/stops/406987"], ["https://data.delijn.be/stops/200681", "https://data.delijn.be/stops/201681"], ["https://data.delijn.be/stops/207674", "https://data.delijn.be/stops/208138"], ["https://data.delijn.be/stops/408664", "https://data.delijn.be/stops/410192"], ["https://data.delijn.be/stops/200376", "https://data.delijn.be/stops/201376"], ["https://data.delijn.be/stops/200860", "https://data.delijn.be/stops/210291"], ["https://data.delijn.be/stops/202365", "https://data.delijn.be/stops/203365"], ["https://data.delijn.be/stops/504566", "https://data.delijn.be/stops/505960"], ["https://data.delijn.be/stops/401514", "https://data.delijn.be/stops/410156"], ["https://data.delijn.be/stops/101797", "https://data.delijn.be/stops/305813"], ["https://data.delijn.be/stops/108652", "https://data.delijn.be/stops/302908"], ["https://data.delijn.be/stops/101983", "https://data.delijn.be/stops/109643"], ["https://data.delijn.be/stops/303436", "https://data.delijn.be/stops/303437"], ["https://data.delijn.be/stops/101987", "https://data.delijn.be/stops/101988"], ["https://data.delijn.be/stops/408765", "https://data.delijn.be/stops/408766"], ["https://data.delijn.be/stops/404884", "https://data.delijn.be/stops/404885"], ["https://data.delijn.be/stops/102058", "https://data.delijn.be/stops/102284"], ["https://data.delijn.be/stops/200155", "https://data.delijn.be/stops/201157"], ["https://data.delijn.be/stops/200420", "https://data.delijn.be/stops/201163"], ["https://data.delijn.be/stops/206754", "https://data.delijn.be/stops/206851"], ["https://data.delijn.be/stops/400942", "https://data.delijn.be/stops/406954"], ["https://data.delijn.be/stops/504749", "https://data.delijn.be/stops/505130"], ["https://data.delijn.be/stops/504465", "https://data.delijn.be/stops/509465"], ["https://data.delijn.be/stops/200706", "https://data.delijn.be/stops/205939"], ["https://data.delijn.be/stops/305816", "https://data.delijn.be/stops/305818"], ["https://data.delijn.be/stops/402587", "https://data.delijn.be/stops/407953"], ["https://data.delijn.be/stops/410152", "https://data.delijn.be/stops/410153"], ["https://data.delijn.be/stops/208672", "https://data.delijn.be/stops/209440"], ["https://data.delijn.be/stops/403955", "https://data.delijn.be/stops/404028"], ["https://data.delijn.be/stops/205507", "https://data.delijn.be/stops/205904"], ["https://data.delijn.be/stops/500120", "https://data.delijn.be/stops/502466"], ["https://data.delijn.be/stops/505644", "https://data.delijn.be/stops/508147"], ["https://data.delijn.be/stops/406521", "https://data.delijn.be/stops/407364"], ["https://data.delijn.be/stops/202875", "https://data.delijn.be/stops/207427"], ["https://data.delijn.be/stops/105571", "https://data.delijn.be/stops/105582"], ["https://data.delijn.be/stops/404304", "https://data.delijn.be/stops/409576"], ["https://data.delijn.be/stops/102087", "https://data.delijn.be/stops/109513"], ["https://data.delijn.be/stops/502267", "https://data.delijn.be/stops/507619"], ["https://data.delijn.be/stops/503033", "https://data.delijn.be/stops/503373"], ["https://data.delijn.be/stops/304733", "https://data.delijn.be/stops/306556"], ["https://data.delijn.be/stops/406082", "https://data.delijn.be/stops/406824"], ["https://data.delijn.be/stops/204592", "https://data.delijn.be/stops/205154"], ["https://data.delijn.be/stops/209378", "https://data.delijn.be/stops/218022"], ["https://data.delijn.be/stops/302545", "https://data.delijn.be/stops/308615"], ["https://data.delijn.be/stops/504797", "https://data.delijn.be/stops/507717"], ["https://data.delijn.be/stops/300368", "https://data.delijn.be/stops/304442"], ["https://data.delijn.be/stops/106910", "https://data.delijn.be/stops/107257"], ["https://data.delijn.be/stops/405909", "https://data.delijn.be/stops/405930"], ["https://data.delijn.be/stops/104803", "https://data.delijn.be/stops/108974"], ["https://data.delijn.be/stops/200134", "https://data.delijn.be/stops/203451"], ["https://data.delijn.be/stops/400424", "https://data.delijn.be/stops/400959"], ["https://data.delijn.be/stops/404900", "https://data.delijn.be/stops/404925"], ["https://data.delijn.be/stops/106919", "https://data.delijn.be/stops/106945"], ["https://data.delijn.be/stops/300081", "https://data.delijn.be/stops/307341"], ["https://data.delijn.be/stops/509137", "https://data.delijn.be/stops/509145"], ["https://data.delijn.be/stops/401411", "https://data.delijn.be/stops/401412"], ["https://data.delijn.be/stops/103896", "https://data.delijn.be/stops/103901"], ["https://data.delijn.be/stops/206690", "https://data.delijn.be/stops/206700"], ["https://data.delijn.be/stops/306254", "https://data.delijn.be/stops/306648"], ["https://data.delijn.be/stops/205214", "https://data.delijn.be/stops/205366"], ["https://data.delijn.be/stops/105863", "https://data.delijn.be/stops/105865"], ["https://data.delijn.be/stops/408299", "https://data.delijn.be/stops/408938"], ["https://data.delijn.be/stops/400910", "https://data.delijn.be/stops/406875"], ["https://data.delijn.be/stops/300472", "https://data.delijn.be/stops/308060"], ["https://data.delijn.be/stops/304929", "https://data.delijn.be/stops/304930"], ["https://data.delijn.be/stops/503636", "https://data.delijn.be/stops/503640"], ["https://data.delijn.be/stops/401099", "https://data.delijn.be/stops/409980"], ["https://data.delijn.be/stops/200585", "https://data.delijn.be/stops/210078"], ["https://data.delijn.be/stops/407286", "https://data.delijn.be/stops/407304"], ["https://data.delijn.be/stops/200049", "https://data.delijn.be/stops/201198"], ["https://data.delijn.be/stops/503855", "https://data.delijn.be/stops/508855"], ["https://data.delijn.be/stops/202242", "https://data.delijn.be/stops/203617"], ["https://data.delijn.be/stops/401805", "https://data.delijn.be/stops/401865"], ["https://data.delijn.be/stops/102639", "https://data.delijn.be/stops/104917"], ["https://data.delijn.be/stops/307636", "https://data.delijn.be/stops/307640"], ["https://data.delijn.be/stops/503528", "https://data.delijn.be/stops/508877"], ["https://data.delijn.be/stops/407600", "https://data.delijn.be/stops/407606"], ["https://data.delijn.be/stops/108442", "https://data.delijn.be/stops/109702"], ["https://data.delijn.be/stops/305019", "https://data.delijn.be/stops/305025"], ["https://data.delijn.be/stops/305241", "https://data.delijn.be/stops/305273"], ["https://data.delijn.be/stops/402967", "https://data.delijn.be/stops/403720"], ["https://data.delijn.be/stops/503887", "https://data.delijn.be/stops/508887"], ["https://data.delijn.be/stops/206012", "https://data.delijn.be/stops/207013"], ["https://data.delijn.be/stops/102319", "https://data.delijn.be/stops/102384"], ["https://data.delijn.be/stops/307320", "https://data.delijn.be/stops/307322"], ["https://data.delijn.be/stops/206266", "https://data.delijn.be/stops/206527"], ["https://data.delijn.be/stops/200827", "https://data.delijn.be/stops/200831"], ["https://data.delijn.be/stops/505014", "https://data.delijn.be/stops/507354"], ["https://data.delijn.be/stops/105319", "https://data.delijn.be/stops/204021"], ["https://data.delijn.be/stops/409050", "https://data.delijn.be/stops/409051"], ["https://data.delijn.be/stops/305894", "https://data.delijn.be/stops/308178"], ["https://data.delijn.be/stops/402441", "https://data.delijn.be/stops/402442"], ["https://data.delijn.be/stops/106968", "https://data.delijn.be/stops/106969"], ["https://data.delijn.be/stops/104606", "https://data.delijn.be/stops/104673"], ["https://data.delijn.be/stops/105575", "https://data.delijn.be/stops/106040"], ["https://data.delijn.be/stops/307618", "https://data.delijn.be/stops/308759"], ["https://data.delijn.be/stops/400023", "https://data.delijn.be/stops/406469"], ["https://data.delijn.be/stops/211057", "https://data.delijn.be/stops/211063"], ["https://data.delijn.be/stops/206519", "https://data.delijn.be/stops/207519"], ["https://data.delijn.be/stops/211015", "https://data.delijn.be/stops/502292"], ["https://data.delijn.be/stops/302930", "https://data.delijn.be/stops/307072"], ["https://data.delijn.be/stops/403041", "https://data.delijn.be/stops/403403"], ["https://data.delijn.be/stops/208246", "https://data.delijn.be/stops/208855"], ["https://data.delijn.be/stops/204404", "https://data.delijn.be/stops/205403"], ["https://data.delijn.be/stops/301702", "https://data.delijn.be/stops/301724"], ["https://data.delijn.be/stops/106019", "https://data.delijn.be/stops/106184"], ["https://data.delijn.be/stops/503484", "https://data.delijn.be/stops/508485"], ["https://data.delijn.be/stops/503633", "https://data.delijn.be/stops/505906"], ["https://data.delijn.be/stops/204313", "https://data.delijn.be/stops/205709"], ["https://data.delijn.be/stops/502185", "https://data.delijn.be/stops/507185"], ["https://data.delijn.be/stops/306805", "https://data.delijn.be/stops/306807"], ["https://data.delijn.be/stops/503473", "https://data.delijn.be/stops/504813"], ["https://data.delijn.be/stops/205428", "https://data.delijn.be/stops/205763"], ["https://data.delijn.be/stops/206928", "https://data.delijn.be/stops/207576"], ["https://data.delijn.be/stops/107027", "https://data.delijn.be/stops/107029"], ["https://data.delijn.be/stops/101956", "https://data.delijn.be/stops/102256"], ["https://data.delijn.be/stops/201941", "https://data.delijn.be/stops/203942"], ["https://data.delijn.be/stops/208399", "https://data.delijn.be/stops/209399"], ["https://data.delijn.be/stops/108893", "https://data.delijn.be/stops/108894"], ["https://data.delijn.be/stops/303959", "https://data.delijn.be/stops/303960"], ["https://data.delijn.be/stops/401247", "https://data.delijn.be/stops/401253"], ["https://data.delijn.be/stops/106260", "https://data.delijn.be/stops/106261"], ["https://data.delijn.be/stops/500045", "https://data.delijn.be/stops/500046"], ["https://data.delijn.be/stops/201403", "https://data.delijn.be/stops/203038"], ["https://data.delijn.be/stops/108909", "https://data.delijn.be/stops/108911"], ["https://data.delijn.be/stops/507951", "https://data.delijn.be/stops/508855"], ["https://data.delijn.be/stops/401476", "https://data.delijn.be/stops/410305"], ["https://data.delijn.be/stops/300199", "https://data.delijn.be/stops/300209"], ["https://data.delijn.be/stops/500158", "https://data.delijn.be/stops/590006"], ["https://data.delijn.be/stops/108845", "https://data.delijn.be/stops/108847"], ["https://data.delijn.be/stops/405368", "https://data.delijn.be/stops/405390"], ["https://data.delijn.be/stops/208363", "https://data.delijn.be/stops/209363"], ["https://data.delijn.be/stops/503710", "https://data.delijn.be/stops/504956"], ["https://data.delijn.be/stops/101934", "https://data.delijn.be/stops/107721"], ["https://data.delijn.be/stops/306862", "https://data.delijn.be/stops/307731"], ["https://data.delijn.be/stops/505627", "https://data.delijn.be/stops/505628"], ["https://data.delijn.be/stops/405871", "https://data.delijn.be/stops/409431"], ["https://data.delijn.be/stops/301760", "https://data.delijn.be/stops/303466"], ["https://data.delijn.be/stops/301998", "https://data.delijn.be/stops/301999"], ["https://data.delijn.be/stops/406689", "https://data.delijn.be/stops/406691"], ["https://data.delijn.be/stops/105228", "https://data.delijn.be/stops/105229"], ["https://data.delijn.be/stops/204188", "https://data.delijn.be/stops/205229"], ["https://data.delijn.be/stops/104093", "https://data.delijn.be/stops/107716"], ["https://data.delijn.be/stops/505198", "https://data.delijn.be/stops/505906"], ["https://data.delijn.be/stops/101431", "https://data.delijn.be/stops/103073"], ["https://data.delijn.be/stops/104494", "https://data.delijn.be/stops/104650"], ["https://data.delijn.be/stops/218001", "https://data.delijn.be/stops/218002"], ["https://data.delijn.be/stops/101832", "https://data.delijn.be/stops/108352"], ["https://data.delijn.be/stops/305596", "https://data.delijn.be/stops/306267"], ["https://data.delijn.be/stops/400178", "https://data.delijn.be/stops/400296"], ["https://data.delijn.be/stops/503361", "https://data.delijn.be/stops/508407"], ["https://data.delijn.be/stops/206611", "https://data.delijn.be/stops/206612"], ["https://data.delijn.be/stops/105023", "https://data.delijn.be/stops/106830"], ["https://data.delijn.be/stops/200911", "https://data.delijn.be/stops/203253"], ["https://data.delijn.be/stops/204194", "https://data.delijn.be/stops/204238"], ["https://data.delijn.be/stops/109167", "https://data.delijn.be/stops/109169"], ["https://data.delijn.be/stops/302713", "https://data.delijn.be/stops/307522"], ["https://data.delijn.be/stops/301586", "https://data.delijn.be/stops/301588"], ["https://data.delijn.be/stops/502928", "https://data.delijn.be/stops/509813"], ["https://data.delijn.be/stops/409364", "https://data.delijn.be/stops/409383"], ["https://data.delijn.be/stops/108203", "https://data.delijn.be/stops/108204"], ["https://data.delijn.be/stops/502309", "https://data.delijn.be/stops/502425"], ["https://data.delijn.be/stops/102521", "https://data.delijn.be/stops/408155"], ["https://data.delijn.be/stops/405234", "https://data.delijn.be/stops/405286"], ["https://data.delijn.be/stops/406359", "https://data.delijn.be/stops/407763"], ["https://data.delijn.be/stops/400258", "https://data.delijn.be/stops/402352"], ["https://data.delijn.be/stops/407630", "https://data.delijn.be/stops/407714"], ["https://data.delijn.be/stops/109219", "https://data.delijn.be/stops/109221"], ["https://data.delijn.be/stops/503046", "https://data.delijn.be/stops/508046"], ["https://data.delijn.be/stops/208444", "https://data.delijn.be/stops/209709"], ["https://data.delijn.be/stops/200978", "https://data.delijn.be/stops/208040"], ["https://data.delijn.be/stops/403072", "https://data.delijn.be/stops/403087"], ["https://data.delijn.be/stops/503361", "https://data.delijn.be/stops/503370"], ["https://data.delijn.be/stops/503303", "https://data.delijn.be/stops/508323"], ["https://data.delijn.be/stops/201217", "https://data.delijn.be/stops/201259"], ["https://data.delijn.be/stops/504696", "https://data.delijn.be/stops/509428"], ["https://data.delijn.be/stops/406966", "https://data.delijn.be/stops/409450"], ["https://data.delijn.be/stops/400201", "https://data.delijn.be/stops/400239"], ["https://data.delijn.be/stops/101929", "https://data.delijn.be/stops/108382"], ["https://data.delijn.be/stops/102713", "https://data.delijn.be/stops/109535"], ["https://data.delijn.be/stops/201652", "https://data.delijn.be/stops/201684"], ["https://data.delijn.be/stops/504496", "https://data.delijn.be/stops/509508"], ["https://data.delijn.be/stops/405192", "https://data.delijn.be/stops/405219"], ["https://data.delijn.be/stops/305928", "https://data.delijn.be/stops/306969"], ["https://data.delijn.be/stops/304495", "https://data.delijn.be/stops/304520"], ["https://data.delijn.be/stops/200330", "https://data.delijn.be/stops/203199"], ["https://data.delijn.be/stops/206147", "https://data.delijn.be/stops/207094"], ["https://data.delijn.be/stops/407688", "https://data.delijn.be/stops/409797"], ["https://data.delijn.be/stops/101130", "https://data.delijn.be/stops/101230"], ["https://data.delijn.be/stops/301590", "https://data.delijn.be/stops/301593"], ["https://data.delijn.be/stops/303482", "https://data.delijn.be/stops/303509"], ["https://data.delijn.be/stops/502220", "https://data.delijn.be/stops/507220"], ["https://data.delijn.be/stops/302535", "https://data.delijn.be/stops/302543"], ["https://data.delijn.be/stops/400802", "https://data.delijn.be/stops/400803"], ["https://data.delijn.be/stops/300474", "https://data.delijn.be/stops/301574"], ["https://data.delijn.be/stops/306698", "https://data.delijn.be/stops/306700"], ["https://data.delijn.be/stops/101528", "https://data.delijn.be/stops/102287"], ["https://data.delijn.be/stops/202924", "https://data.delijn.be/stops/203924"], ["https://data.delijn.be/stops/503810", "https://data.delijn.be/stops/505538"], ["https://data.delijn.be/stops/203541", "https://data.delijn.be/stops/210335"], ["https://data.delijn.be/stops/300276", "https://data.delijn.be/stops/306045"], ["https://data.delijn.be/stops/308204", "https://data.delijn.be/stops/308205"], ["https://data.delijn.be/stops/208187", "https://data.delijn.be/stops/209187"], ["https://data.delijn.be/stops/303011", "https://data.delijn.be/stops/303117"], ["https://data.delijn.be/stops/502559", "https://data.delijn.be/stops/507553"], ["https://data.delijn.be/stops/202429", "https://data.delijn.be/stops/202430"], ["https://data.delijn.be/stops/108364", "https://data.delijn.be/stops/108366"], ["https://data.delijn.be/stops/400071", "https://data.delijn.be/stops/400081"], ["https://data.delijn.be/stops/405717", "https://data.delijn.be/stops/405744"], ["https://data.delijn.be/stops/304230", "https://data.delijn.be/stops/308771"], ["https://data.delijn.be/stops/200737", "https://data.delijn.be/stops/202594"], ["https://data.delijn.be/stops/401490", "https://data.delijn.be/stops/401885"], ["https://data.delijn.be/stops/107702", "https://data.delijn.be/stops/109105"], ["https://data.delijn.be/stops/503961", "https://data.delijn.be/stops/506765"], ["https://data.delijn.be/stops/501385", "https://data.delijn.be/stops/501391"], ["https://data.delijn.be/stops/406119", "https://data.delijn.be/stops/406126"], ["https://data.delijn.be/stops/303017", "https://data.delijn.be/stops/303022"], ["https://data.delijn.be/stops/506076", "https://data.delijn.be/stops/506781"], ["https://data.delijn.be/stops/203739", "https://data.delijn.be/stops/206430"], ["https://data.delijn.be/stops/400177", "https://data.delijn.be/stops/400276"], ["https://data.delijn.be/stops/502163", "https://data.delijn.be/stops/507163"], ["https://data.delijn.be/stops/101003", "https://data.delijn.be/stops/102430"], ["https://data.delijn.be/stops/203224", "https://data.delijn.be/stops/208964"], ["https://data.delijn.be/stops/106092", "https://data.delijn.be/stops/106096"], ["https://data.delijn.be/stops/407396", "https://data.delijn.be/stops/407405"], ["https://data.delijn.be/stops/505123", "https://data.delijn.be/stops/505127"], ["https://data.delijn.be/stops/506241", "https://data.delijn.be/stops/506370"], ["https://data.delijn.be/stops/407224", "https://data.delijn.be/stops/407225"], ["https://data.delijn.be/stops/408162", "https://data.delijn.be/stops/408454"], ["https://data.delijn.be/stops/407481", "https://data.delijn.be/stops/407496"], ["https://data.delijn.be/stops/201345", "https://data.delijn.be/stops/202002"], ["https://data.delijn.be/stops/209677", "https://data.delijn.be/stops/209678"], ["https://data.delijn.be/stops/106183", "https://data.delijn.be/stops/106184"], ["https://data.delijn.be/stops/207897", "https://data.delijn.be/stops/207898"], ["https://data.delijn.be/stops/301549", "https://data.delijn.be/stops/301562"], ["https://data.delijn.be/stops/208012", "https://data.delijn.be/stops/208018"], ["https://data.delijn.be/stops/101187", "https://data.delijn.be/stops/104981"], ["https://data.delijn.be/stops/402869", "https://data.delijn.be/stops/306035"], ["https://data.delijn.be/stops/302685", "https://data.delijn.be/stops/302692"], ["https://data.delijn.be/stops/505277", "https://data.delijn.be/stops/507736"], ["https://data.delijn.be/stops/505078", "https://data.delijn.be/stops/505340"], ["https://data.delijn.be/stops/403990", "https://data.delijn.be/stops/407066"], ["https://data.delijn.be/stops/403600", "https://data.delijn.be/stops/403616"], ["https://data.delijn.be/stops/105229", "https://data.delijn.be/stops/105237"], ["https://data.delijn.be/stops/507388", "https://data.delijn.be/stops/507462"], ["https://data.delijn.be/stops/302137", "https://data.delijn.be/stops/307529"], ["https://data.delijn.be/stops/202172", "https://data.delijn.be/stops/202495"], ["https://data.delijn.be/stops/109391", "https://data.delijn.be/stops/406880"], ["https://data.delijn.be/stops/201779", "https://data.delijn.be/stops/208246"], ["https://data.delijn.be/stops/105304", "https://data.delijn.be/stops/105307"], ["https://data.delijn.be/stops/306340", "https://data.delijn.be/stops/306341"], ["https://data.delijn.be/stops/504165", "https://data.delijn.be/stops/509165"], ["https://data.delijn.be/stops/107186", "https://data.delijn.be/stops/107191"], ["https://data.delijn.be/stops/201875", "https://data.delijn.be/stops/203018"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/106621"], ["https://data.delijn.be/stops/104847", "https://data.delijn.be/stops/106865"], ["https://data.delijn.be/stops/300379", "https://data.delijn.be/stops/306089"], ["https://data.delijn.be/stops/206765", "https://data.delijn.be/stops/208616"], ["https://data.delijn.be/stops/303369", "https://data.delijn.be/stops/307183"], ["https://data.delijn.be/stops/204196", "https://data.delijn.be/stops/205196"], ["https://data.delijn.be/stops/403147", "https://data.delijn.be/stops/405636"], ["https://data.delijn.be/stops/108608", "https://data.delijn.be/stops/307347"], ["https://data.delijn.be/stops/408179", "https://data.delijn.be/stops/408180"], ["https://data.delijn.be/stops/301681", "https://data.delijn.be/stops/302761"], ["https://data.delijn.be/stops/300675", "https://data.delijn.be/stops/306744"], ["https://data.delijn.be/stops/101088", "https://data.delijn.be/stops/101089"], ["https://data.delijn.be/stops/103353", "https://data.delijn.be/stops/109687"], ["https://data.delijn.be/stops/200039", "https://data.delijn.be/stops/203498"], ["https://data.delijn.be/stops/102746", "https://data.delijn.be/stops/103241"], ["https://data.delijn.be/stops/501133", "https://data.delijn.be/stops/501140"], ["https://data.delijn.be/stops/207312", "https://data.delijn.be/stops/207313"], ["https://data.delijn.be/stops/307154", "https://data.delijn.be/stops/307220"], ["https://data.delijn.be/stops/208251", "https://data.delijn.be/stops/209252"], ["https://data.delijn.be/stops/404967", "https://data.delijn.be/stops/406890"], ["https://data.delijn.be/stops/208862", "https://data.delijn.be/stops/210063"], ["https://data.delijn.be/stops/304791", "https://data.delijn.be/stops/304799"], ["https://data.delijn.be/stops/508048", "https://data.delijn.be/stops/508333"], ["https://data.delijn.be/stops/108989", "https://data.delijn.be/stops/109089"], ["https://data.delijn.be/stops/308406", "https://data.delijn.be/stops/308409"], ["https://data.delijn.be/stops/108286", "https://data.delijn.be/stops/109363"], ["https://data.delijn.be/stops/208267", "https://data.delijn.be/stops/209267"], ["https://data.delijn.be/stops/401139", "https://data.delijn.be/stops/409078"], ["https://data.delijn.be/stops/308534", "https://data.delijn.be/stops/308544"], ["https://data.delijn.be/stops/206095", "https://data.delijn.be/stops/207095"], ["https://data.delijn.be/stops/304567", "https://data.delijn.be/stops/304609"], ["https://data.delijn.be/stops/203313", "https://data.delijn.be/stops/203315"], ["https://data.delijn.be/stops/104962", "https://data.delijn.be/stops/109613"], ["https://data.delijn.be/stops/407423", "https://data.delijn.be/stops/407427"], ["https://data.delijn.be/stops/105784", "https://data.delijn.be/stops/105786"], ["https://data.delijn.be/stops/302241", "https://data.delijn.be/stops/304031"], ["https://data.delijn.be/stops/304868", "https://data.delijn.be/stops/305596"], ["https://data.delijn.be/stops/307110", "https://data.delijn.be/stops/308823"], ["https://data.delijn.be/stops/403595", "https://data.delijn.be/stops/404306"], ["https://data.delijn.be/stops/404441", "https://data.delijn.be/stops/408371"], ["https://data.delijn.be/stops/102174", "https://data.delijn.be/stops/108342"], ["https://data.delijn.be/stops/105282", "https://data.delijn.be/stops/109971"], ["https://data.delijn.be/stops/402021", "https://data.delijn.be/stops/402071"], ["https://data.delijn.be/stops/202547", "https://data.delijn.be/stops/203548"], ["https://data.delijn.be/stops/307207", "https://data.delijn.be/stops/307282"], ["https://data.delijn.be/stops/301269", "https://data.delijn.be/stops/307844"], ["https://data.delijn.be/stops/105464", "https://data.delijn.be/stops/105666"], ["https://data.delijn.be/stops/300119", "https://data.delijn.be/stops/300122"], ["https://data.delijn.be/stops/200725", "https://data.delijn.be/stops/201703"], ["https://data.delijn.be/stops/504364", "https://data.delijn.be/stops/505385"], ["https://data.delijn.be/stops/401549", "https://data.delijn.be/stops/408635"], ["https://data.delijn.be/stops/400552", "https://data.delijn.be/stops/403190"], ["https://data.delijn.be/stops/408150", "https://data.delijn.be/stops/408151"], ["https://data.delijn.be/stops/106925", "https://data.delijn.be/stops/106926"], ["https://data.delijn.be/stops/102764", "https://data.delijn.be/stops/107401"], ["https://data.delijn.be/stops/206482", "https://data.delijn.be/stops/207454"], ["https://data.delijn.be/stops/300348", "https://data.delijn.be/stops/300362"], ["https://data.delijn.be/stops/503567", "https://data.delijn.be/stops/505137"], ["https://data.delijn.be/stops/502443", "https://data.delijn.be/stops/502451"], ["https://data.delijn.be/stops/109052", "https://data.delijn.be/stops/109069"], ["https://data.delijn.be/stops/103676", "https://data.delijn.be/stops/106219"], ["https://data.delijn.be/stops/105763", "https://data.delijn.be/stops/109529"], ["https://data.delijn.be/stops/101969", "https://data.delijn.be/stops/109297"], ["https://data.delijn.be/stops/206361", "https://data.delijn.be/stops/206746"], ["https://data.delijn.be/stops/408660", "https://data.delijn.be/stops/408661"], ["https://data.delijn.be/stops/409364", "https://data.delijn.be/stops/410252"], ["https://data.delijn.be/stops/402191", "https://data.delijn.be/stops/402498"], ["https://data.delijn.be/stops/102077", "https://data.delijn.be/stops/102079"], ["https://data.delijn.be/stops/305585", "https://data.delijn.be/stops/305619"], ["https://data.delijn.be/stops/400758", "https://data.delijn.be/stops/410048"], ["https://data.delijn.be/stops/102504", "https://data.delijn.be/stops/400025"], ["https://data.delijn.be/stops/508160", "https://data.delijn.be/stops/508169"], ["https://data.delijn.be/stops/501411", "https://data.delijn.be/stops/506413"], ["https://data.delijn.be/stops/101974", "https://data.delijn.be/stops/307363"], ["https://data.delijn.be/stops/401440", "https://data.delijn.be/stops/408345"], ["https://data.delijn.be/stops/108089", "https://data.delijn.be/stops/108091"], ["https://data.delijn.be/stops/300704", "https://data.delijn.be/stops/306942"], ["https://data.delijn.be/stops/407744", "https://data.delijn.be/stops/407745"], ["https://data.delijn.be/stops/503710", "https://data.delijn.be/stops/509947"], ["https://data.delijn.be/stops/504176", "https://data.delijn.be/stops/505174"], ["https://data.delijn.be/stops/104464", "https://data.delijn.be/stops/107956"], ["https://data.delijn.be/stops/305656", "https://data.delijn.be/stops/305657"], ["https://data.delijn.be/stops/504214", "https://data.delijn.be/stops/504218"], ["https://data.delijn.be/stops/406165", "https://data.delijn.be/stops/406265"], ["https://data.delijn.be/stops/202743", "https://data.delijn.be/stops/202867"], ["https://data.delijn.be/stops/504797", "https://data.delijn.be/stops/504798"], ["https://data.delijn.be/stops/502695", "https://data.delijn.be/stops/507419"], ["https://data.delijn.be/stops/405489", "https://data.delijn.be/stops/409286"], ["https://data.delijn.be/stops/203637", "https://data.delijn.be/stops/205070"], ["https://data.delijn.be/stops/504045", "https://data.delijn.be/stops/509045"], ["https://data.delijn.be/stops/405478", "https://data.delijn.be/stops/409266"], ["https://data.delijn.be/stops/405077", "https://data.delijn.be/stops/405106"], ["https://data.delijn.be/stops/201929", "https://data.delijn.be/stops/203472"], ["https://data.delijn.be/stops/507326", "https://data.delijn.be/stops/507338"], ["https://data.delijn.be/stops/108078", "https://data.delijn.be/stops/109614"], ["https://data.delijn.be/stops/102637", "https://data.delijn.be/stops/104919"], ["https://data.delijn.be/stops/204025", "https://data.delijn.be/stops/204027"], ["https://data.delijn.be/stops/203975", "https://data.delijn.be/stops/204022"], ["https://data.delijn.be/stops/302161", "https://data.delijn.be/stops/302162"], ["https://data.delijn.be/stops/102824", "https://data.delijn.be/stops/106682"], ["https://data.delijn.be/stops/104869", "https://data.delijn.be/stops/107372"], ["https://data.delijn.be/stops/107556", "https://data.delijn.be/stops/108938"], ["https://data.delijn.be/stops/200984", "https://data.delijn.be/stops/203541"], ["https://data.delijn.be/stops/302426", "https://data.delijn.be/stops/302437"], ["https://data.delijn.be/stops/206278", "https://data.delijn.be/stops/207276"], ["https://data.delijn.be/stops/502465", "https://data.delijn.be/stops/507454"], ["https://data.delijn.be/stops/503551", "https://data.delijn.be/stops/505191"], ["https://data.delijn.be/stops/405646", "https://data.delijn.be/stops/408648"], ["https://data.delijn.be/stops/505328", "https://data.delijn.be/stops/505742"], ["https://data.delijn.be/stops/303147", "https://data.delijn.be/stops/305442"], ["https://data.delijn.be/stops/308238", "https://data.delijn.be/stops/308243"], ["https://data.delijn.be/stops/211132", "https://data.delijn.be/stops/219953"], ["https://data.delijn.be/stops/503621", "https://data.delijn.be/stops/505526"], ["https://data.delijn.be/stops/404381", "https://data.delijn.be/stops/404648"], ["https://data.delijn.be/stops/302980", "https://data.delijn.be/stops/303021"], ["https://data.delijn.be/stops/503884", "https://data.delijn.be/stops/508880"], ["https://data.delijn.be/stops/109330", "https://data.delijn.be/stops/300049"], ["https://data.delijn.be/stops/101951", "https://data.delijn.be/stops/101952"], ["https://data.delijn.be/stops/208495", "https://data.delijn.be/stops/209278"], ["https://data.delijn.be/stops/302111", "https://data.delijn.be/stops/304023"], ["https://data.delijn.be/stops/109177", "https://data.delijn.be/stops/109231"], ["https://data.delijn.be/stops/406844", "https://data.delijn.be/stops/408628"], ["https://data.delijn.be/stops/103611", "https://data.delijn.be/stops/106192"], ["https://data.delijn.be/stops/103217", "https://data.delijn.be/stops/103600"], ["https://data.delijn.be/stops/504252", "https://data.delijn.be/stops/505794"], ["https://data.delijn.be/stops/202614", "https://data.delijn.be/stops/203615"], ["https://data.delijn.be/stops/306097", "https://data.delijn.be/stops/306099"], ["https://data.delijn.be/stops/105484", "https://data.delijn.be/stops/105486"], ["https://data.delijn.be/stops/400084", "https://data.delijn.be/stops/409173"], ["https://data.delijn.be/stops/105575", "https://data.delijn.be/stops/105595"], ["https://data.delijn.be/stops/502653", "https://data.delijn.be/stops/507664"], ["https://data.delijn.be/stops/305532", "https://data.delijn.be/stops/307181"], ["https://data.delijn.be/stops/504195", "https://data.delijn.be/stops/509170"], ["https://data.delijn.be/stops/203938", "https://data.delijn.be/stops/210052"], ["https://data.delijn.be/stops/102217", "https://data.delijn.be/stops/102221"], ["https://data.delijn.be/stops/303935", "https://data.delijn.be/stops/306144"], ["https://data.delijn.be/stops/509115", "https://data.delijn.be/stops/509134"], ["https://data.delijn.be/stops/200718", "https://data.delijn.be/stops/203598"], ["https://data.delijn.be/stops/103275", "https://data.delijn.be/stops/103295"], ["https://data.delijn.be/stops/208246", "https://data.delijn.be/stops/209246"], ["https://data.delijn.be/stops/507196", "https://data.delijn.be/stops/507939"], ["https://data.delijn.be/stops/205386", "https://data.delijn.be/stops/205762"], ["https://data.delijn.be/stops/202456", "https://data.delijn.be/stops/203750"], ["https://data.delijn.be/stops/403703", "https://data.delijn.be/stops/403779"], ["https://data.delijn.be/stops/303700", "https://data.delijn.be/stops/303741"], ["https://data.delijn.be/stops/508517", "https://data.delijn.be/stops/508519"], ["https://data.delijn.be/stops/503546", "https://data.delijn.be/stops/508540"], ["https://data.delijn.be/stops/102881", "https://data.delijn.be/stops/108152"], ["https://data.delijn.be/stops/104696", "https://data.delijn.be/stops/108131"], ["https://data.delijn.be/stops/502562", "https://data.delijn.be/stops/507073"], ["https://data.delijn.be/stops/503263", "https://data.delijn.be/stops/508417"], ["https://data.delijn.be/stops/108339", "https://data.delijn.be/stops/109298"], ["https://data.delijn.be/stops/400536", "https://data.delijn.be/stops/400537"], ["https://data.delijn.be/stops/503927", "https://data.delijn.be/stops/503931"], ["https://data.delijn.be/stops/503026", "https://data.delijn.be/stops/503029"], ["https://data.delijn.be/stops/103004", "https://data.delijn.be/stops/109302"], ["https://data.delijn.be/stops/303772", "https://data.delijn.be/stops/303802"], ["https://data.delijn.be/stops/303504", "https://data.delijn.be/stops/303510"], ["https://data.delijn.be/stops/505393", "https://data.delijn.be/stops/505955"], ["https://data.delijn.be/stops/502052", "https://data.delijn.be/stops/507661"], ["https://data.delijn.be/stops/102544", "https://data.delijn.be/stops/406547"], ["https://data.delijn.be/stops/404827", "https://data.delijn.be/stops/408936"], ["https://data.delijn.be/stops/207595", "https://data.delijn.be/stops/209671"], ["https://data.delijn.be/stops/208573", "https://data.delijn.be/stops/307600"], ["https://data.delijn.be/stops/301681", "https://data.delijn.be/stops/301684"], ["https://data.delijn.be/stops/306721", "https://data.delijn.be/stops/306728"], ["https://data.delijn.be/stops/302728", "https://data.delijn.be/stops/308836"], ["https://data.delijn.be/stops/205100", "https://data.delijn.be/stops/205450"], ["https://data.delijn.be/stops/401846", "https://data.delijn.be/stops/401853"], ["https://data.delijn.be/stops/400315", "https://data.delijn.be/stops/400319"], ["https://data.delijn.be/stops/109021", "https://data.delijn.be/stops/109375"], ["https://data.delijn.be/stops/502529", "https://data.delijn.be/stops/502705"], ["https://data.delijn.be/stops/205156", "https://data.delijn.be/stops/205157"], ["https://data.delijn.be/stops/303276", "https://data.delijn.be/stops/303277"], ["https://data.delijn.be/stops/204062", "https://data.delijn.be/stops/204711"], ["https://data.delijn.be/stops/305951", "https://data.delijn.be/stops/307789"], ["https://data.delijn.be/stops/207936", "https://data.delijn.be/stops/208491"], ["https://data.delijn.be/stops/400105", "https://data.delijn.be/stops/409109"], ["https://data.delijn.be/stops/303855", "https://data.delijn.be/stops/303977"], ["https://data.delijn.be/stops/208664", "https://data.delijn.be/stops/208670"], ["https://data.delijn.be/stops/402702", "https://data.delijn.be/stops/402870"], ["https://data.delijn.be/stops/201213", "https://data.delijn.be/stops/203547"], ["https://data.delijn.be/stops/201753", "https://data.delijn.be/stops/209281"], ["https://data.delijn.be/stops/206617", "https://data.delijn.be/stops/206618"], ["https://data.delijn.be/stops/306200", "https://data.delijn.be/stops/306201"], ["https://data.delijn.be/stops/200679", "https://data.delijn.be/stops/200680"], ["https://data.delijn.be/stops/401345", "https://data.delijn.be/stops/401365"], ["https://data.delijn.be/stops/204505", "https://data.delijn.be/stops/205506"], ["https://data.delijn.be/stops/206484", "https://data.delijn.be/stops/207484"], ["https://data.delijn.be/stops/102991", "https://data.delijn.be/stops/105597"], ["https://data.delijn.be/stops/204069", "https://data.delijn.be/stops/204387"], ["https://data.delijn.be/stops/303197", "https://data.delijn.be/stops/307952"], ["https://data.delijn.be/stops/402842", "https://data.delijn.be/stops/409234"], ["https://data.delijn.be/stops/402870", "https://data.delijn.be/stops/402871"], ["https://data.delijn.be/stops/104778", "https://data.delijn.be/stops/104781"], ["https://data.delijn.be/stops/200683", "https://data.delijn.be/stops/208649"], ["https://data.delijn.be/stops/206496", "https://data.delijn.be/stops/206508"], ["https://data.delijn.be/stops/205095", "https://data.delijn.be/stops/205468"], ["https://data.delijn.be/stops/410142", "https://data.delijn.be/stops/410144"], ["https://data.delijn.be/stops/301320", "https://data.delijn.be/stops/301321"], ["https://data.delijn.be/stops/403055", "https://data.delijn.be/stops/410325"], ["https://data.delijn.be/stops/308727", "https://data.delijn.be/stops/308728"], ["https://data.delijn.be/stops/207104", "https://data.delijn.be/stops/306724"], ["https://data.delijn.be/stops/502562", "https://data.delijn.be/stops/505836"], ["https://data.delijn.be/stops/201142", "https://data.delijn.be/stops/210001"], ["https://data.delijn.be/stops/107395", "https://data.delijn.be/stops/107400"], ["https://data.delijn.be/stops/409395", "https://data.delijn.be/stops/409396"], ["https://data.delijn.be/stops/504804", "https://data.delijn.be/stops/504809"], ["https://data.delijn.be/stops/207357", "https://data.delijn.be/stops/207720"], ["https://data.delijn.be/stops/507539", "https://data.delijn.be/stops/507546"], ["https://data.delijn.be/stops/300277", "https://data.delijn.be/stops/306189"], ["https://data.delijn.be/stops/201425", "https://data.delijn.be/stops/202536"], ["https://data.delijn.be/stops/407944", "https://data.delijn.be/stops/408064"], ["https://data.delijn.be/stops/301766", "https://data.delijn.be/stops/306795"], ["https://data.delijn.be/stops/502471", "https://data.delijn.be/stops/502945"], ["https://data.delijn.be/stops/104355", "https://data.delijn.be/stops/104370"], ["https://data.delijn.be/stops/400602", "https://data.delijn.be/stops/405999"], ["https://data.delijn.be/stops/202380", "https://data.delijn.be/stops/203442"], ["https://data.delijn.be/stops/104703", "https://data.delijn.be/stops/107089"], ["https://data.delijn.be/stops/406680", "https://data.delijn.be/stops/406700"], ["https://data.delijn.be/stops/101341", "https://data.delijn.be/stops/104053"], ["https://data.delijn.be/stops/206814", "https://data.delijn.be/stops/207814"], ["https://data.delijn.be/stops/201380", "https://data.delijn.be/stops/201539"], ["https://data.delijn.be/stops/201582", "https://data.delijn.be/stops/210078"], ["https://data.delijn.be/stops/504234", "https://data.delijn.be/stops/509233"], ["https://data.delijn.be/stops/307856", "https://data.delijn.be/stops/307857"], ["https://data.delijn.be/stops/404347", "https://data.delijn.be/stops/404349"], ["https://data.delijn.be/stops/101928", "https://data.delijn.be/stops/108189"], ["https://data.delijn.be/stops/504181", "https://data.delijn.be/stops/509154"], ["https://data.delijn.be/stops/305229", "https://data.delijn.be/stops/305234"], ["https://data.delijn.be/stops/105989", "https://data.delijn.be/stops/109869"], ["https://data.delijn.be/stops/300139", "https://data.delijn.be/stops/300145"], ["https://data.delijn.be/stops/300531", "https://data.delijn.be/stops/303201"], ["https://data.delijn.be/stops/106082", "https://data.delijn.be/stops/108728"], ["https://data.delijn.be/stops/206309", "https://data.delijn.be/stops/207392"], ["https://data.delijn.be/stops/201470", "https://data.delijn.be/stops/202776"], ["https://data.delijn.be/stops/400985", "https://data.delijn.be/stops/406577"], ["https://data.delijn.be/stops/505691", "https://data.delijn.be/stops/507543"], ["https://data.delijn.be/stops/200958", "https://data.delijn.be/stops/201932"], ["https://data.delijn.be/stops/206846", "https://data.delijn.be/stops/306677"], ["https://data.delijn.be/stops/408748", "https://data.delijn.be/stops/410150"], ["https://data.delijn.be/stops/405701", "https://data.delijn.be/stops/407200"], ["https://data.delijn.be/stops/303868", "https://data.delijn.be/stops/307492"], ["https://data.delijn.be/stops/503582", "https://data.delijn.be/stops/503944"], ["https://data.delijn.be/stops/404544", "https://data.delijn.be/stops/404572"], ["https://data.delijn.be/stops/104034", "https://data.delijn.be/stops/105084"], ["https://data.delijn.be/stops/206758", "https://data.delijn.be/stops/207622"], ["https://data.delijn.be/stops/401104", "https://data.delijn.be/stops/401111"], ["https://data.delijn.be/stops/107832", "https://data.delijn.be/stops/107834"], ["https://data.delijn.be/stops/206199", "https://data.delijn.be/stops/206206"], ["https://data.delijn.be/stops/503819", "https://data.delijn.be/stops/508817"], ["https://data.delijn.be/stops/202466", "https://data.delijn.be/stops/203427"], ["https://data.delijn.be/stops/104019", "https://data.delijn.be/stops/104023"], ["https://data.delijn.be/stops/208682", "https://data.delijn.be/stops/209664"], ["https://data.delijn.be/stops/401046", "https://data.delijn.be/stops/401132"], ["https://data.delijn.be/stops/203255", "https://data.delijn.be/stops/203256"], ["https://data.delijn.be/stops/400796", "https://data.delijn.be/stops/400889"], ["https://data.delijn.be/stops/106895", "https://data.delijn.be/stops/106896"], ["https://data.delijn.be/stops/108819", "https://data.delijn.be/stops/108823"], ["https://data.delijn.be/stops/501242", "https://data.delijn.be/stops/501246"], ["https://data.delijn.be/stops/106969", "https://data.delijn.be/stops/106980"], ["https://data.delijn.be/stops/300459", "https://data.delijn.be/stops/300460"], ["https://data.delijn.be/stops/405090", "https://data.delijn.be/stops/405091"], ["https://data.delijn.be/stops/504879", "https://data.delijn.be/stops/505016"], ["https://data.delijn.be/stops/405302", "https://data.delijn.be/stops/405305"], ["https://data.delijn.be/stops/202714", "https://data.delijn.be/stops/203729"], ["https://data.delijn.be/stops/501668", "https://data.delijn.be/stops/501669"], ["https://data.delijn.be/stops/504721", "https://data.delijn.be/stops/509025"], ["https://data.delijn.be/stops/101146", "https://data.delijn.be/stops/101147"], ["https://data.delijn.be/stops/101909", "https://data.delijn.be/stops/107885"], ["https://data.delijn.be/stops/306814", "https://data.delijn.be/stops/308819"], ["https://data.delijn.be/stops/205103", "https://data.delijn.be/stops/205691"], ["https://data.delijn.be/stops/107030", "https://data.delijn.be/stops/107031"], ["https://data.delijn.be/stops/202490", "https://data.delijn.be/stops/202508"], ["https://data.delijn.be/stops/501072", "https://data.delijn.be/stops/501507"], ["https://data.delijn.be/stops/409604", "https://data.delijn.be/stops/409606"], ["https://data.delijn.be/stops/406632", "https://data.delijn.be/stops/406644"], ["https://data.delijn.be/stops/106347", "https://data.delijn.be/stops/106348"], ["https://data.delijn.be/stops/300123", "https://data.delijn.be/stops/306867"], ["https://data.delijn.be/stops/200783", "https://data.delijn.be/stops/211106"], ["https://data.delijn.be/stops/208069", "https://data.delijn.be/stops/208088"], ["https://data.delijn.be/stops/304324", "https://data.delijn.be/stops/304325"], ["https://data.delijn.be/stops/109629", "https://data.delijn.be/stops/109630"], ["https://data.delijn.be/stops/407962", "https://data.delijn.be/stops/408426"], ["https://data.delijn.be/stops/205144", "https://data.delijn.be/stops/206633"], ["https://data.delijn.be/stops/502497", "https://data.delijn.be/stops/502714"], ["https://data.delijn.be/stops/501388", "https://data.delijn.be/stops/506501"], ["https://data.delijn.be/stops/301160", "https://data.delijn.be/stops/301168"], ["https://data.delijn.be/stops/201751", "https://data.delijn.be/stops/201752"], ["https://data.delijn.be/stops/503906", "https://data.delijn.be/stops/508899"], ["https://data.delijn.be/stops/402344", "https://data.delijn.be/stops/402410"], ["https://data.delijn.be/stops/102313", "https://data.delijn.be/stops/103364"], ["https://data.delijn.be/stops/201954", "https://data.delijn.be/stops/211055"], ["https://data.delijn.be/stops/507043", "https://data.delijn.be/stops/507050"], ["https://data.delijn.be/stops/400856", "https://data.delijn.be/stops/400857"], ["https://data.delijn.be/stops/304524", "https://data.delijn.be/stops/304530"], ["https://data.delijn.be/stops/200851", "https://data.delijn.be/stops/200890"], ["https://data.delijn.be/stops/209187", "https://data.delijn.be/stops/209192"], ["https://data.delijn.be/stops/305153", "https://data.delijn.be/stops/305185"], ["https://data.delijn.be/stops/400712", "https://data.delijn.be/stops/409516"], ["https://data.delijn.be/stops/303889", "https://data.delijn.be/stops/306061"], ["https://data.delijn.be/stops/105668", "https://data.delijn.be/stops/106047"], ["https://data.delijn.be/stops/303501", "https://data.delijn.be/stops/303502"], ["https://data.delijn.be/stops/403902", "https://data.delijn.be/stops/403904"], ["https://data.delijn.be/stops/206596", "https://data.delijn.be/stops/206662"], ["https://data.delijn.be/stops/302585", "https://data.delijn.be/stops/302586"], ["https://data.delijn.be/stops/206858", "https://data.delijn.be/stops/208623"], ["https://data.delijn.be/stops/201748", "https://data.delijn.be/stops/202165"], ["https://data.delijn.be/stops/501158", "https://data.delijn.be/stops/506146"], ["https://data.delijn.be/stops/502719", "https://data.delijn.be/stops/505840"], ["https://data.delijn.be/stops/501019", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/401818", "https://data.delijn.be/stops/401819"], ["https://data.delijn.be/stops/208034", "https://data.delijn.be/stops/208035"], ["https://data.delijn.be/stops/303164", "https://data.delijn.be/stops/303165"], ["https://data.delijn.be/stops/408073", "https://data.delijn.be/stops/410126"], ["https://data.delijn.be/stops/509620", "https://data.delijn.be/stops/509629"], ["https://data.delijn.be/stops/106414", "https://data.delijn.be/stops/106416"], ["https://data.delijn.be/stops/406751", "https://data.delijn.be/stops/406991"], ["https://data.delijn.be/stops/302462", "https://data.delijn.be/stops/308831"], ["https://data.delijn.be/stops/300734", "https://data.delijn.be/stops/307057"], ["https://data.delijn.be/stops/302062", "https://data.delijn.be/stops/302729"], ["https://data.delijn.be/stops/504813", "https://data.delijn.be/stops/508473"], ["https://data.delijn.be/stops/200325", "https://data.delijn.be/stops/211107"], ["https://data.delijn.be/stops/207410", "https://data.delijn.be/stops/306973"], ["https://data.delijn.be/stops/505695", "https://data.delijn.be/stops/508823"], ["https://data.delijn.be/stops/106761", "https://data.delijn.be/stops/106863"], ["https://data.delijn.be/stops/107058", "https://data.delijn.be/stops/107061"], ["https://data.delijn.be/stops/103056", "https://data.delijn.be/stops/107182"], ["https://data.delijn.be/stops/200445", "https://data.delijn.be/stops/201445"], ["https://data.delijn.be/stops/206771", "https://data.delijn.be/stops/208610"], ["https://data.delijn.be/stops/208772", "https://data.delijn.be/stops/209770"], ["https://data.delijn.be/stops/101590", "https://data.delijn.be/stops/104110"], ["https://data.delijn.be/stops/504590", "https://data.delijn.be/stops/505367"], ["https://data.delijn.be/stops/508036", "https://data.delijn.be/stops/508187"], ["https://data.delijn.be/stops/304552", "https://data.delijn.be/stops/304614"], ["https://data.delijn.be/stops/502498", "https://data.delijn.be/stops/509727"], ["https://data.delijn.be/stops/208708", "https://data.delijn.be/stops/209708"], ["https://data.delijn.be/stops/503670", "https://data.delijn.be/stops/505968"], ["https://data.delijn.be/stops/105251", "https://data.delijn.be/stops/105841"], ["https://data.delijn.be/stops/503969", "https://data.delijn.be/stops/508964"], ["https://data.delijn.be/stops/508560", "https://data.delijn.be/stops/508664"], ["https://data.delijn.be/stops/502546", "https://data.delijn.be/stops/507712"], ["https://data.delijn.be/stops/101086", "https://data.delijn.be/stops/105977"], ["https://data.delijn.be/stops/101849", "https://data.delijn.be/stops/106846"], ["https://data.delijn.be/stops/202482", "https://data.delijn.be/stops/206933"], ["https://data.delijn.be/stops/303100", "https://data.delijn.be/stops/304243"], ["https://data.delijn.be/stops/409814", "https://data.delijn.be/stops/409815"], ["https://data.delijn.be/stops/403705", "https://data.delijn.be/stops/403778"], ["https://data.delijn.be/stops/404850", "https://data.delijn.be/stops/404895"], ["https://data.delijn.be/stops/508259", "https://data.delijn.be/stops/508746"], ["https://data.delijn.be/stops/301681", "https://data.delijn.be/stops/306185"], ["https://data.delijn.be/stops/203836", "https://data.delijn.be/stops/208679"], ["https://data.delijn.be/stops/106849", "https://data.delijn.be/stops/106850"], ["https://data.delijn.be/stops/405952", "https://data.delijn.be/stops/405957"], ["https://data.delijn.be/stops/204097", "https://data.delijn.be/stops/204244"], ["https://data.delijn.be/stops/202617", "https://data.delijn.be/stops/203595"], ["https://data.delijn.be/stops/204976", "https://data.delijn.be/stops/218022"], ["https://data.delijn.be/stops/204436", "https://data.delijn.be/stops/205434"], ["https://data.delijn.be/stops/206127", "https://data.delijn.be/stops/207410"], ["https://data.delijn.be/stops/301279", "https://data.delijn.be/stops/301280"], ["https://data.delijn.be/stops/408524", "https://data.delijn.be/stops/408764"], ["https://data.delijn.be/stops/204648", "https://data.delijn.be/stops/205447"], ["https://data.delijn.be/stops/501560", "https://data.delijn.be/stops/506094"], ["https://data.delijn.be/stops/503207", "https://data.delijn.be/stops/508547"], ["https://data.delijn.be/stops/302946", "https://data.delijn.be/stops/302993"], ["https://data.delijn.be/stops/405705", "https://data.delijn.be/stops/408836"], ["https://data.delijn.be/stops/402790", "https://data.delijn.be/stops/402791"], ["https://data.delijn.be/stops/408520", "https://data.delijn.be/stops/408559"], ["https://data.delijn.be/stops/102407", "https://data.delijn.be/stops/405032"], ["https://data.delijn.be/stops/307964", "https://data.delijn.be/stops/307966"], ["https://data.delijn.be/stops/101963", "https://data.delijn.be/stops/109270"], ["https://data.delijn.be/stops/105682", "https://data.delijn.be/stops/105683"], ["https://data.delijn.be/stops/404184", "https://data.delijn.be/stops/404185"], ["https://data.delijn.be/stops/501518", "https://data.delijn.be/stops/506083"], ["https://data.delijn.be/stops/502753", "https://data.delijn.be/stops/509698"], ["https://data.delijn.be/stops/300261", "https://data.delijn.be/stops/300262"], ["https://data.delijn.be/stops/504534", "https://data.delijn.be/stops/509381"], ["https://data.delijn.be/stops/102693", "https://data.delijn.be/stops/105630"], ["https://data.delijn.be/stops/405658", "https://data.delijn.be/stops/410191"], ["https://data.delijn.be/stops/501103", "https://data.delijn.be/stops/506438"], ["https://data.delijn.be/stops/200168", "https://data.delijn.be/stops/202642"], ["https://data.delijn.be/stops/204388", "https://data.delijn.be/stops/205387"], ["https://data.delijn.be/stops/202634", "https://data.delijn.be/stops/203635"], ["https://data.delijn.be/stops/209186", "https://data.delijn.be/stops/209358"], ["https://data.delijn.be/stops/408006", "https://data.delijn.be/stops/408012"], ["https://data.delijn.be/stops/307357", "https://data.delijn.be/stops/307361"], ["https://data.delijn.be/stops/407979", "https://data.delijn.be/stops/408002"], ["https://data.delijn.be/stops/307381", "https://data.delijn.be/stops/308273"], ["https://data.delijn.be/stops/505940", "https://data.delijn.be/stops/509072"], ["https://data.delijn.be/stops/503802", "https://data.delijn.be/stops/508812"], ["https://data.delijn.be/stops/502364", "https://data.delijn.be/stops/507675"], ["https://data.delijn.be/stops/104666", "https://data.delijn.be/stops/108416"], ["https://data.delijn.be/stops/101344", "https://data.delijn.be/stops/108363"], ["https://data.delijn.be/stops/200844", "https://data.delijn.be/stops/200845"], ["https://data.delijn.be/stops/204350", "https://data.delijn.be/stops/205114"], ["https://data.delijn.be/stops/102223", "https://data.delijn.be/stops/105541"], ["https://data.delijn.be/stops/501179", "https://data.delijn.be/stops/506179"], ["https://data.delijn.be/stops/505726", "https://data.delijn.be/stops/507599"], ["https://data.delijn.be/stops/206937", "https://data.delijn.be/stops/207937"], ["https://data.delijn.be/stops/200339", "https://data.delijn.be/stops/211085"], ["https://data.delijn.be/stops/202040", "https://data.delijn.be/stops/203040"], ["https://data.delijn.be/stops/303332", "https://data.delijn.be/stops/303344"], ["https://data.delijn.be/stops/102441", "https://data.delijn.be/stops/102602"], ["https://data.delijn.be/stops/209184", "https://data.delijn.be/stops/218019"], ["https://data.delijn.be/stops/403750", "https://data.delijn.be/stops/403762"], ["https://data.delijn.be/stops/105033", "https://data.delijn.be/stops/106714"], ["https://data.delijn.be/stops/503375", "https://data.delijn.be/stops/508419"], ["https://data.delijn.be/stops/202478", "https://data.delijn.be/stops/203477"], ["https://data.delijn.be/stops/303274", "https://data.delijn.be/stops/303277"], ["https://data.delijn.be/stops/201047", "https://data.delijn.be/stops/201952"], ["https://data.delijn.be/stops/102009", "https://data.delijn.be/stops/105976"], ["https://data.delijn.be/stops/505926", "https://data.delijn.be/stops/509240"], ["https://data.delijn.be/stops/201135", "https://data.delijn.be/stops/201409"], ["https://data.delijn.be/stops/101935", "https://data.delijn.be/stops/105835"], ["https://data.delijn.be/stops/406093", "https://data.delijn.be/stops/406126"], ["https://data.delijn.be/stops/305750", "https://data.delijn.be/stops/305751"], ["https://data.delijn.be/stops/108901", "https://data.delijn.be/stops/108902"], ["https://data.delijn.be/stops/101884", "https://data.delijn.be/stops/104560"], ["https://data.delijn.be/stops/405631", "https://data.delijn.be/stops/407774"], ["https://data.delijn.be/stops/108386", "https://data.delijn.be/stops/108387"], ["https://data.delijn.be/stops/409387", "https://data.delijn.be/stops/409403"], ["https://data.delijn.be/stops/405211", "https://data.delijn.be/stops/409403"], ["https://data.delijn.be/stops/204308", "https://data.delijn.be/stops/205308"], ["https://data.delijn.be/stops/104096", "https://data.delijn.be/stops/107865"], ["https://data.delijn.be/stops/202832", "https://data.delijn.be/stops/208656"], ["https://data.delijn.be/stops/305269", "https://data.delijn.be/stops/305270"], ["https://data.delijn.be/stops/105681", "https://data.delijn.be/stops/106755"], ["https://data.delijn.be/stops/406092", "https://data.delijn.be/stops/406119"], ["https://data.delijn.be/stops/402106", "https://data.delijn.be/stops/402362"], ["https://data.delijn.be/stops/301483", "https://data.delijn.be/stops/301488"], ["https://data.delijn.be/stops/504058", "https://data.delijn.be/stops/505305"], ["https://data.delijn.be/stops/503726", "https://data.delijn.be/stops/504968"], ["https://data.delijn.be/stops/209948", "https://data.delijn.be/stops/211106"], ["https://data.delijn.be/stops/200885", "https://data.delijn.be/stops/203063"], ["https://data.delijn.be/stops/400236", "https://data.delijn.be/stops/400237"], ["https://data.delijn.be/stops/504565", "https://data.delijn.be/stops/508128"], ["https://data.delijn.be/stops/408268", "https://data.delijn.be/stops/408278"], ["https://data.delijn.be/stops/401189", "https://data.delijn.be/stops/401320"], ["https://data.delijn.be/stops/218008", "https://data.delijn.be/stops/219008"], ["https://data.delijn.be/stops/305145", "https://data.delijn.be/stops/307534"], ["https://data.delijn.be/stops/308454", "https://data.delijn.be/stops/308463"], ["https://data.delijn.be/stops/500208", "https://data.delijn.be/stops/504153"], ["https://data.delijn.be/stops/200315", "https://data.delijn.be/stops/211026"], ["https://data.delijn.be/stops/504585", "https://data.delijn.be/stops/505537"], ["https://data.delijn.be/stops/504513", "https://data.delijn.be/stops/504637"], ["https://data.delijn.be/stops/301108", "https://data.delijn.be/stops/301117"], ["https://data.delijn.be/stops/300300", "https://data.delijn.be/stops/304255"], ["https://data.delijn.be/stops/200766", "https://data.delijn.be/stops/209317"], ["https://data.delijn.be/stops/402126", "https://data.delijn.be/stops/402129"], ["https://data.delijn.be/stops/208359", "https://data.delijn.be/stops/209955"], ["https://data.delijn.be/stops/206103", "https://data.delijn.be/stops/206843"], ["https://data.delijn.be/stops/208086", "https://data.delijn.be/stops/209086"], ["https://data.delijn.be/stops/407271", "https://data.delijn.be/stops/407559"], ["https://data.delijn.be/stops/403642", "https://data.delijn.be/stops/403644"], ["https://data.delijn.be/stops/200350", "https://data.delijn.be/stops/201351"], ["https://data.delijn.be/stops/301973", "https://data.delijn.be/stops/302920"], ["https://data.delijn.be/stops/504168", "https://data.delijn.be/stops/509168"], ["https://data.delijn.be/stops/302928", "https://data.delijn.be/stops/303998"], ["https://data.delijn.be/stops/300427", "https://data.delijn.be/stops/300429"], ["https://data.delijn.be/stops/504011", "https://data.delijn.be/stops/505813"], ["https://data.delijn.be/stops/108946", "https://data.delijn.be/stops/109224"], ["https://data.delijn.be/stops/407001", "https://data.delijn.be/stops/408025"], ["https://data.delijn.be/stops/302302", "https://data.delijn.be/stops/303468"], ["https://data.delijn.be/stops/403095", "https://data.delijn.be/stops/403507"], ["https://data.delijn.be/stops/106645", "https://data.delijn.be/stops/109672"], ["https://data.delijn.be/stops/101472", "https://data.delijn.be/stops/101473"], ["https://data.delijn.be/stops/105228", "https://data.delijn.be/stops/107995"], ["https://data.delijn.be/stops/105247", "https://data.delijn.be/stops/105843"], ["https://data.delijn.be/stops/407905", "https://data.delijn.be/stops/408148"], ["https://data.delijn.be/stops/303195", "https://data.delijn.be/stops/303213"], ["https://data.delijn.be/stops/402134", "https://data.delijn.be/stops/402437"], ["https://data.delijn.be/stops/109832", "https://data.delijn.be/stops/109952"], ["https://data.delijn.be/stops/401136", "https://data.delijn.be/stops/403749"], ["https://data.delijn.be/stops/102265", "https://data.delijn.be/stops/107475"], ["https://data.delijn.be/stops/102984", "https://data.delijn.be/stops/105224"], ["https://data.delijn.be/stops/306947", "https://data.delijn.be/stops/306949"], ["https://data.delijn.be/stops/507716", "https://data.delijn.be/stops/508975"], ["https://data.delijn.be/stops/208068", "https://data.delijn.be/stops/208069"], ["https://data.delijn.be/stops/102820", "https://data.delijn.be/stops/104815"], ["https://data.delijn.be/stops/305618", "https://data.delijn.be/stops/305827"], ["https://data.delijn.be/stops/206969", "https://data.delijn.be/stops/301427"], ["https://data.delijn.be/stops/401441", "https://data.delijn.be/stops/404279"], ["https://data.delijn.be/stops/208069", "https://data.delijn.be/stops/208241"], ["https://data.delijn.be/stops/104599", "https://data.delijn.be/stops/109749"], ["https://data.delijn.be/stops/503260", "https://data.delijn.be/stops/508260"], ["https://data.delijn.be/stops/505314", "https://data.delijn.be/stops/505987"], ["https://data.delijn.be/stops/503866", "https://data.delijn.be/stops/508607"], ["https://data.delijn.be/stops/304891", "https://data.delijn.be/stops/304904"], ["https://data.delijn.be/stops/102534", "https://data.delijn.be/stops/405087"], ["https://data.delijn.be/stops/501222", "https://data.delijn.be/stops/505355"], ["https://data.delijn.be/stops/102949", "https://data.delijn.be/stops/106589"], ["https://data.delijn.be/stops/504096", "https://data.delijn.be/stops/505196"], ["https://data.delijn.be/stops/208217", "https://data.delijn.be/stops/209771"], ["https://data.delijn.be/stops/505414", "https://data.delijn.be/stops/509018"], ["https://data.delijn.be/stops/407460", "https://data.delijn.be/stops/407523"], ["https://data.delijn.be/stops/204298", "https://data.delijn.be/stops/205352"], ["https://data.delijn.be/stops/305023", "https://data.delijn.be/stops/305041"], ["https://data.delijn.be/stops/106613", "https://data.delijn.be/stops/106614"], ["https://data.delijn.be/stops/504373", "https://data.delijn.be/stops/505985"], ["https://data.delijn.be/stops/403321", "https://data.delijn.be/stops/410349"], ["https://data.delijn.be/stops/109835", "https://data.delijn.be/stops/109952"], ["https://data.delijn.be/stops/200106", "https://data.delijn.be/stops/201428"], ["https://data.delijn.be/stops/305738", "https://data.delijn.be/stops/305740"], ["https://data.delijn.be/stops/108932", "https://data.delijn.be/stops/108934"], ["https://data.delijn.be/stops/400496", "https://data.delijn.be/stops/408802"], ["https://data.delijn.be/stops/106452", "https://data.delijn.be/stops/106460"], ["https://data.delijn.be/stops/304203", "https://data.delijn.be/stops/305353"], ["https://data.delijn.be/stops/202729", "https://data.delijn.be/stops/203065"], ["https://data.delijn.be/stops/204397", "https://data.delijn.be/stops/205443"], ["https://data.delijn.be/stops/503805", "https://data.delijn.be/stops/509588"], ["https://data.delijn.be/stops/304875", "https://data.delijn.be/stops/308832"], ["https://data.delijn.be/stops/103701", "https://data.delijn.be/stops/104636"], ["https://data.delijn.be/stops/301034", "https://data.delijn.be/stops/301035"], ["https://data.delijn.be/stops/104680", "https://data.delijn.be/stops/108055"], ["https://data.delijn.be/stops/202957", "https://data.delijn.be/stops/203958"], ["https://data.delijn.be/stops/305736", "https://data.delijn.be/stops/306328"], ["https://data.delijn.be/stops/206515", "https://data.delijn.be/stops/206753"], ["https://data.delijn.be/stops/403960", "https://data.delijn.be/stops/403971"], ["https://data.delijn.be/stops/207101", "https://data.delijn.be/stops/207104"], ["https://data.delijn.be/stops/504217", "https://data.delijn.be/stops/509217"], ["https://data.delijn.be/stops/401019", "https://data.delijn.be/stops/403742"], ["https://data.delijn.be/stops/503049", "https://data.delijn.be/stops/509845"], ["https://data.delijn.be/stops/200974", "https://data.delijn.be/stops/209581"], ["https://data.delijn.be/stops/501475", "https://data.delijn.be/stops/506419"], ["https://data.delijn.be/stops/200404", "https://data.delijn.be/stops/200405"], ["https://data.delijn.be/stops/401157", "https://data.delijn.be/stops/409426"], ["https://data.delijn.be/stops/201304", "https://data.delijn.be/stops/203760"], ["https://data.delijn.be/stops/105373", "https://data.delijn.be/stops/108761"], ["https://data.delijn.be/stops/301856", "https://data.delijn.be/stops/302013"], ["https://data.delijn.be/stops/509014", "https://data.delijn.be/stops/509515"], ["https://data.delijn.be/stops/501063", "https://data.delijn.be/stops/501405"], ["https://data.delijn.be/stops/201902", "https://data.delijn.be/stops/203473"], ["https://data.delijn.be/stops/503572", "https://data.delijn.be/stops/503574"], ["https://data.delijn.be/stops/502914", "https://data.delijn.be/stops/507017"], ["https://data.delijn.be/stops/302491", "https://data.delijn.be/stops/302501"], ["https://data.delijn.be/stops/405797", "https://data.delijn.be/stops/405836"], ["https://data.delijn.be/stops/303228", "https://data.delijn.be/stops/307055"], ["https://data.delijn.be/stops/105122", "https://data.delijn.be/stops/108889"], ["https://data.delijn.be/stops/302017", "https://data.delijn.be/stops/306379"], ["https://data.delijn.be/stops/504426", "https://data.delijn.be/stops/509426"], ["https://data.delijn.be/stops/109063", "https://data.delijn.be/stops/405804"], ["https://data.delijn.be/stops/304423", "https://data.delijn.be/stops/307420"], ["https://data.delijn.be/stops/402385", "https://data.delijn.be/stops/402451"], ["https://data.delijn.be/stops/204197", "https://data.delijn.be/stops/205197"], ["https://data.delijn.be/stops/502022", "https://data.delijn.be/stops/502247"], ["https://data.delijn.be/stops/301607", "https://data.delijn.be/stops/304518"], ["https://data.delijn.be/stops/101895", "https://data.delijn.be/stops/102659"], ["https://data.delijn.be/stops/102927", "https://data.delijn.be/stops/103592"], ["https://data.delijn.be/stops/206013", "https://data.delijn.be/stops/206385"], ["https://data.delijn.be/stops/408537", "https://data.delijn.be/stops/408814"], ["https://data.delijn.be/stops/405947", "https://data.delijn.be/stops/405953"], ["https://data.delijn.be/stops/204248", "https://data.delijn.be/stops/205248"], ["https://data.delijn.be/stops/405438", "https://data.delijn.be/stops/408775"], ["https://data.delijn.be/stops/302238", "https://data.delijn.be/stops/303997"], ["https://data.delijn.be/stops/501386", "https://data.delijn.be/stops/501388"], ["https://data.delijn.be/stops/108281", "https://data.delijn.be/stops/108283"], ["https://data.delijn.be/stops/505425", "https://data.delijn.be/stops/505426"], ["https://data.delijn.be/stops/104733", "https://data.delijn.be/stops/204273"], ["https://data.delijn.be/stops/101080", "https://data.delijn.be/stops/103575"], ["https://data.delijn.be/stops/301991", "https://data.delijn.be/stops/304564"], ["https://data.delijn.be/stops/403415", "https://data.delijn.be/stops/403467"], ["https://data.delijn.be/stops/305058", "https://data.delijn.be/stops/305062"], ["https://data.delijn.be/stops/502385", "https://data.delijn.be/stops/502652"], ["https://data.delijn.be/stops/201457", "https://data.delijn.be/stops/201737"], ["https://data.delijn.be/stops/200087", "https://data.delijn.be/stops/202208"], ["https://data.delijn.be/stops/503435", "https://data.delijn.be/stops/503535"], ["https://data.delijn.be/stops/101808", "https://data.delijn.be/stops/103723"], ["https://data.delijn.be/stops/202519", "https://data.delijn.be/stops/203525"], ["https://data.delijn.be/stops/105207", "https://data.delijn.be/stops/108063"], ["https://data.delijn.be/stops/400102", "https://data.delijn.be/stops/409149"], ["https://data.delijn.be/stops/200802", "https://data.delijn.be/stops/505724"], ["https://data.delijn.be/stops/500955", "https://data.delijn.be/stops/500956"], ["https://data.delijn.be/stops/301004", "https://data.delijn.be/stops/307043"], ["https://data.delijn.be/stops/400264", "https://data.delijn.be/stops/400639"], ["https://data.delijn.be/stops/107315", "https://data.delijn.be/stops/109090"], ["https://data.delijn.be/stops/105557", "https://data.delijn.be/stops/105558"], ["https://data.delijn.be/stops/302809", "https://data.delijn.be/stops/305531"], ["https://data.delijn.be/stops/107664", "https://data.delijn.be/stops/107699"], ["https://data.delijn.be/stops/102393", "https://data.delijn.be/stops/107113"], ["https://data.delijn.be/stops/306269", "https://data.delijn.be/stops/306271"], ["https://data.delijn.be/stops/502768", "https://data.delijn.be/stops/507768"], ["https://data.delijn.be/stops/206032", "https://data.delijn.be/stops/206033"], ["https://data.delijn.be/stops/209057", "https://data.delijn.be/stops/209058"], ["https://data.delijn.be/stops/301460", "https://data.delijn.be/stops/307930"], ["https://data.delijn.be/stops/101518", "https://data.delijn.be/stops/101537"], ["https://data.delijn.be/stops/302255", "https://data.delijn.be/stops/302264"], ["https://data.delijn.be/stops/206598", "https://data.delijn.be/stops/207517"], ["https://data.delijn.be/stops/304983", "https://data.delijn.be/stops/308030"], ["https://data.delijn.be/stops/503831", "https://data.delijn.be/stops/508831"], ["https://data.delijn.be/stops/503218", "https://data.delijn.be/stops/508983"], ["https://data.delijn.be/stops/406836", "https://data.delijn.be/stops/409646"], ["https://data.delijn.be/stops/501363", "https://data.delijn.be/stops/501443"], ["https://data.delijn.be/stops/105317", "https://data.delijn.be/stops/105318"], ["https://data.delijn.be/stops/305875", "https://data.delijn.be/stops/305876"], ["https://data.delijn.be/stops/504085", "https://data.delijn.be/stops/504846"], ["https://data.delijn.be/stops/106726", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/204001", "https://data.delijn.be/stops/204022"], ["https://data.delijn.be/stops/206497", "https://data.delijn.be/stops/206504"], ["https://data.delijn.be/stops/206822", "https://data.delijn.be/stops/207481"], ["https://data.delijn.be/stops/201920", "https://data.delijn.be/stops/202749"], ["https://data.delijn.be/stops/104971", "https://data.delijn.be/stops/105364"], ["https://data.delijn.be/stops/101370", "https://data.delijn.be/stops/102320"], ["https://data.delijn.be/stops/104493", "https://data.delijn.be/stops/105160"], ["https://data.delijn.be/stops/103167", "https://data.delijn.be/stops/108673"], ["https://data.delijn.be/stops/104803", "https://data.delijn.be/stops/109690"], ["https://data.delijn.be/stops/408700", "https://data.delijn.be/stops/408701"], ["https://data.delijn.be/stops/300822", "https://data.delijn.be/stops/305406"], ["https://data.delijn.be/stops/107811", "https://data.delijn.be/stops/107812"], ["https://data.delijn.be/stops/200664", "https://data.delijn.be/stops/201841"], ["https://data.delijn.be/stops/504010", "https://data.delijn.be/stops/509009"], ["https://data.delijn.be/stops/208076", "https://data.delijn.be/stops/208078"], ["https://data.delijn.be/stops/204019", "https://data.delijn.be/stops/204828"], ["https://data.delijn.be/stops/301654", "https://data.delijn.be/stops/307753"], ["https://data.delijn.be/stops/403065", "https://data.delijn.be/stops/403121"], ["https://data.delijn.be/stops/109907", "https://data.delijn.be/stops/109908"], ["https://data.delijn.be/stops/502199", "https://data.delijn.be/stops/507196"], ["https://data.delijn.be/stops/104964", "https://data.delijn.be/stops/109793"], ["https://data.delijn.be/stops/403930", "https://data.delijn.be/stops/403931"], ["https://data.delijn.be/stops/305609", "https://data.delijn.be/stops/308695"], ["https://data.delijn.be/stops/301580", "https://data.delijn.be/stops/301581"], ["https://data.delijn.be/stops/301191", "https://data.delijn.be/stops/301266"], ["https://data.delijn.be/stops/505950", "https://data.delijn.be/stops/505966"], ["https://data.delijn.be/stops/200184", "https://data.delijn.be/stops/203757"], ["https://data.delijn.be/stops/504480", "https://data.delijn.be/stops/509480"], ["https://data.delijn.be/stops/103231", "https://data.delijn.be/stops/109402"], ["https://data.delijn.be/stops/201430", "https://data.delijn.be/stops/201431"], ["https://data.delijn.be/stops/304520", "https://data.delijn.be/stops/306206"], ["https://data.delijn.be/stops/301384", "https://data.delijn.be/stops/306645"], ["https://data.delijn.be/stops/202886", "https://data.delijn.be/stops/203885"], ["https://data.delijn.be/stops/300297", "https://data.delijn.be/stops/306007"], ["https://data.delijn.be/stops/308494", "https://data.delijn.be/stops/308495"], ["https://data.delijn.be/stops/101200", "https://data.delijn.be/stops/105735"], ["https://data.delijn.be/stops/400782", "https://data.delijn.be/stops/400818"], ["https://data.delijn.be/stops/202793", "https://data.delijn.be/stops/203793"], ["https://data.delijn.be/stops/102865", "https://data.delijn.be/stops/104250"], ["https://data.delijn.be/stops/405782", "https://data.delijn.be/stops/405876"], ["https://data.delijn.be/stops/200306", "https://data.delijn.be/stops/202198"], ["https://data.delijn.be/stops/209227", "https://data.delijn.be/stops/209233"], ["https://data.delijn.be/stops/403808", "https://data.delijn.be/stops/408596"], ["https://data.delijn.be/stops/503588", "https://data.delijn.be/stops/508587"], ["https://data.delijn.be/stops/501481", "https://data.delijn.be/stops/505035"], ["https://data.delijn.be/stops/201917", "https://data.delijn.be/stops/207835"], ["https://data.delijn.be/stops/103058", "https://data.delijn.be/stops/103470"], ["https://data.delijn.be/stops/301378", "https://data.delijn.be/stops/301382"], ["https://data.delijn.be/stops/207936", "https://data.delijn.be/stops/209142"], ["https://data.delijn.be/stops/106640", "https://data.delijn.be/stops/106647"], ["https://data.delijn.be/stops/505739", "https://data.delijn.be/stops/507482"], ["https://data.delijn.be/stops/403559", "https://data.delijn.be/stops/410215"], ["https://data.delijn.be/stops/304011", "https://data.delijn.be/stops/304100"], ["https://data.delijn.be/stops/208602", "https://data.delijn.be/stops/307593"], ["https://data.delijn.be/stops/501061", "https://data.delijn.be/stops/506061"], ["https://data.delijn.be/stops/300661", "https://data.delijn.be/stops/301918"], ["https://data.delijn.be/stops/403246", "https://data.delijn.be/stops/403527"], ["https://data.delijn.be/stops/104142", "https://data.delijn.be/stops/305788"], ["https://data.delijn.be/stops/202040", "https://data.delijn.be/stops/202041"], ["https://data.delijn.be/stops/201470", "https://data.delijn.be/stops/203460"], ["https://data.delijn.be/stops/206219", "https://data.delijn.be/stops/217006"], ["https://data.delijn.be/stops/105833", "https://data.delijn.be/stops/105834"], ["https://data.delijn.be/stops/202103", "https://data.delijn.be/stops/203103"], ["https://data.delijn.be/stops/406993", "https://data.delijn.be/stops/409026"], ["https://data.delijn.be/stops/201658", "https://data.delijn.be/stops/208329"], ["https://data.delijn.be/stops/406635", "https://data.delijn.be/stops/407506"], ["https://data.delijn.be/stops/301833", "https://data.delijn.be/stops/308603"], ["https://data.delijn.be/stops/408804", "https://data.delijn.be/stops/408806"], ["https://data.delijn.be/stops/101189", "https://data.delijn.be/stops/101655"], ["https://data.delijn.be/stops/103969", "https://data.delijn.be/stops/104857"], ["https://data.delijn.be/stops/301945", "https://data.delijn.be/stops/301946"], ["https://data.delijn.be/stops/105458", "https://data.delijn.be/stops/105459"], ["https://data.delijn.be/stops/304028", "https://data.delijn.be/stops/304109"], ["https://data.delijn.be/stops/109089", "https://data.delijn.be/stops/109092"], ["https://data.delijn.be/stops/400650", "https://data.delijn.be/stops/400653"], ["https://data.delijn.be/stops/204214", "https://data.delijn.be/stops/205214"], ["https://data.delijn.be/stops/507034", "https://data.delijn.be/stops/507037"], ["https://data.delijn.be/stops/102833", "https://data.delijn.be/stops/103744"], ["https://data.delijn.be/stops/305243", "https://data.delijn.be/stops/305303"], ["https://data.delijn.be/stops/105891", "https://data.delijn.be/stops/105893"], ["https://data.delijn.be/stops/208352", "https://data.delijn.be/stops/209352"], ["https://data.delijn.be/stops/107692", "https://data.delijn.be/stops/109719"], ["https://data.delijn.be/stops/405959", "https://data.delijn.be/stops/308153"], ["https://data.delijn.be/stops/217007", "https://data.delijn.be/stops/217010"], ["https://data.delijn.be/stops/409676", "https://data.delijn.be/stops/409683"], ["https://data.delijn.be/stops/202206", "https://data.delijn.be/stops/203206"], ["https://data.delijn.be/stops/200072", "https://data.delijn.be/stops/211046"], ["https://data.delijn.be/stops/502390", "https://data.delijn.be/stops/502766"], ["https://data.delijn.be/stops/504780", "https://data.delijn.be/stops/508231"], ["https://data.delijn.be/stops/501484", "https://data.delijn.be/stops/501682"], ["https://data.delijn.be/stops/201467", "https://data.delijn.be/stops/201672"], ["https://data.delijn.be/stops/201387", "https://data.delijn.be/stops/201392"], ["https://data.delijn.be/stops/103582", "https://data.delijn.be/stops/109412"], ["https://data.delijn.be/stops/204420", "https://data.delijn.be/stops/204421"], ["https://data.delijn.be/stops/502414", "https://data.delijn.be/stops/507432"], ["https://data.delijn.be/stops/208370", "https://data.delijn.be/stops/209370"], ["https://data.delijn.be/stops/407701", "https://data.delijn.be/stops/407705"], ["https://data.delijn.be/stops/503386", "https://data.delijn.be/stops/509760"], ["https://data.delijn.be/stops/205314", "https://data.delijn.be/stops/205676"], ["https://data.delijn.be/stops/109351", "https://data.delijn.be/stops/307429"], ["https://data.delijn.be/stops/308448", "https://data.delijn.be/stops/308508"], ["https://data.delijn.be/stops/101972", "https://data.delijn.be/stops/109294"], ["https://data.delijn.be/stops/301974", "https://data.delijn.be/stops/301975"], ["https://data.delijn.be/stops/405385", "https://data.delijn.be/stops/302844"], ["https://data.delijn.be/stops/202385", "https://data.delijn.be/stops/203385"], ["https://data.delijn.be/stops/108655", "https://data.delijn.be/stops/108955"], ["https://data.delijn.be/stops/402383", "https://data.delijn.be/stops/402454"], ["https://data.delijn.be/stops/108072", "https://data.delijn.be/stops/108459"], ["https://data.delijn.be/stops/304225", "https://data.delijn.be/stops/304841"], ["https://data.delijn.be/stops/303955", "https://data.delijn.be/stops/303960"], ["https://data.delijn.be/stops/303983", "https://data.delijn.be/stops/304287"], ["https://data.delijn.be/stops/102247", "https://data.delijn.be/stops/103302"], ["https://data.delijn.be/stops/507015", "https://data.delijn.be/stops/507915"], ["https://data.delijn.be/stops/504094", "https://data.delijn.be/stops/505194"], ["https://data.delijn.be/stops/300848", "https://data.delijn.be/stops/301565"], ["https://data.delijn.be/stops/304667", "https://data.delijn.be/stops/304669"], ["https://data.delijn.be/stops/400168", "https://data.delijn.be/stops/410339"], ["https://data.delijn.be/stops/305079", "https://data.delijn.be/stops/305081"], ["https://data.delijn.be/stops/201855", "https://data.delijn.be/stops/210039"], ["https://data.delijn.be/stops/200224", "https://data.delijn.be/stops/201445"], ["https://data.delijn.be/stops/401066", "https://data.delijn.be/stops/407171"], ["https://data.delijn.be/stops/303891", "https://data.delijn.be/stops/305275"], ["https://data.delijn.be/stops/407644", "https://data.delijn.be/stops/407645"], ["https://data.delijn.be/stops/509247", "https://data.delijn.be/stops/509593"], ["https://data.delijn.be/stops/501109", "https://data.delijn.be/stops/506109"], ["https://data.delijn.be/stops/200731", "https://data.delijn.be/stops/202589"], ["https://data.delijn.be/stops/106597", "https://data.delijn.be/stops/106600"], ["https://data.delijn.be/stops/107483", "https://data.delijn.be/stops/107517"], ["https://data.delijn.be/stops/408495", "https://data.delijn.be/stops/408497"], ["https://data.delijn.be/stops/101673", "https://data.delijn.be/stops/405132"], ["https://data.delijn.be/stops/101501", "https://data.delijn.be/stops/101502"], ["https://data.delijn.be/stops/200624", "https://data.delijn.be/stops/201051"], ["https://data.delijn.be/stops/506353", "https://data.delijn.be/stops/506360"], ["https://data.delijn.be/stops/200690", "https://data.delijn.be/stops/208644"], ["https://data.delijn.be/stops/105161", "https://data.delijn.be/stops/105166"], ["https://data.delijn.be/stops/101657", "https://data.delijn.be/stops/101660"], ["https://data.delijn.be/stops/504083", "https://data.delijn.be/stops/504610"], ["https://data.delijn.be/stops/201060", "https://data.delijn.be/stops/211058"], ["https://data.delijn.be/stops/502226", "https://data.delijn.be/stops/507236"], ["https://data.delijn.be/stops/301283", "https://data.delijn.be/stops/301292"], ["https://data.delijn.be/stops/206774", "https://data.delijn.be/stops/208026"], ["https://data.delijn.be/stops/502200", "https://data.delijn.be/stops/509944"], ["https://data.delijn.be/stops/102658", "https://data.delijn.be/stops/106360"], ["https://data.delijn.be/stops/102392", "https://data.delijn.be/stops/102393"], ["https://data.delijn.be/stops/502505", "https://data.delijn.be/stops/505337"], ["https://data.delijn.be/stops/109664", "https://data.delijn.be/stops/109715"], ["https://data.delijn.be/stops/208429", "https://data.delijn.be/stops/209214"], ["https://data.delijn.be/stops/109445", "https://data.delijn.be/stops/109448"], ["https://data.delijn.be/stops/201353", "https://data.delijn.be/stops/201842"], ["https://data.delijn.be/stops/200367", "https://data.delijn.be/stops/201141"], ["https://data.delijn.be/stops/407377", "https://data.delijn.be/stops/407386"], ["https://data.delijn.be/stops/404827", "https://data.delijn.be/stops/409431"], ["https://data.delijn.be/stops/105702", "https://data.delijn.be/stops/105704"], ["https://data.delijn.be/stops/300084", "https://data.delijn.be/stops/306866"], ["https://data.delijn.be/stops/210014", "https://data.delijn.be/stops/502289"], ["https://data.delijn.be/stops/208673", "https://data.delijn.be/stops/209516"], ["https://data.delijn.be/stops/504198", "https://data.delijn.be/stops/504262"], ["https://data.delijn.be/stops/206224", "https://data.delijn.be/stops/300196"], ["https://data.delijn.be/stops/401536", "https://data.delijn.be/stops/401537"], ["https://data.delijn.be/stops/105577", "https://data.delijn.be/stops/106358"], ["https://data.delijn.be/stops/507693", "https://data.delijn.be/stops/508012"], ["https://data.delijn.be/stops/106753", "https://data.delijn.be/stops/109528"], ["https://data.delijn.be/stops/402105", "https://data.delijn.be/stops/402268"], ["https://data.delijn.be/stops/502551", "https://data.delijn.be/stops/507553"], ["https://data.delijn.be/stops/106362", "https://data.delijn.be/stops/106363"], ["https://data.delijn.be/stops/404862", "https://data.delijn.be/stops/404868"], ["https://data.delijn.be/stops/404016", "https://data.delijn.be/stops/404017"], ["https://data.delijn.be/stops/301141", "https://data.delijn.be/stops/302881"], ["https://data.delijn.be/stops/102673", "https://data.delijn.be/stops/103497"], ["https://data.delijn.be/stops/401988", "https://data.delijn.be/stops/403080"], ["https://data.delijn.be/stops/509209", "https://data.delijn.be/stops/509220"], ["https://data.delijn.be/stops/501600", "https://data.delijn.be/stops/505167"], ["https://data.delijn.be/stops/200256", "https://data.delijn.be/stops/210256"], ["https://data.delijn.be/stops/201102", "https://data.delijn.be/stops/211001"], ["https://data.delijn.be/stops/401788", "https://data.delijn.be/stops/401789"], ["https://data.delijn.be/stops/306940", "https://data.delijn.be/stops/306941"], ["https://data.delijn.be/stops/503586", "https://data.delijn.be/stops/508589"], ["https://data.delijn.be/stops/101014", "https://data.delijn.be/stops/102937"], ["https://data.delijn.be/stops/405830", "https://data.delijn.be/stops/405831"], ["https://data.delijn.be/stops/403256", "https://data.delijn.be/stops/403257"], ["https://data.delijn.be/stops/503503", "https://data.delijn.be/stops/508497"], ["https://data.delijn.be/stops/204152", "https://data.delijn.be/stops/205595"], ["https://data.delijn.be/stops/500940", "https://data.delijn.be/stops/504942"], ["https://data.delijn.be/stops/401391", "https://data.delijn.be/stops/402820"], ["https://data.delijn.be/stops/101671", "https://data.delijn.be/stops/101672"], ["https://data.delijn.be/stops/402863", "https://data.delijn.be/stops/408076"], ["https://data.delijn.be/stops/301896", "https://data.delijn.be/stops/304268"], ["https://data.delijn.be/stops/303046", "https://data.delijn.be/stops/305438"], ["https://data.delijn.be/stops/204084", "https://data.delijn.be/stops/205083"], ["https://data.delijn.be/stops/408232", "https://data.delijn.be/stops/408235"], ["https://data.delijn.be/stops/101176", "https://data.delijn.be/stops/101179"], ["https://data.delijn.be/stops/204464", "https://data.delijn.be/stops/204476"], ["https://data.delijn.be/stops/503241", "https://data.delijn.be/stops/503248"], ["https://data.delijn.be/stops/503654", "https://data.delijn.be/stops/509895"], ["https://data.delijn.be/stops/407010", "https://data.delijn.be/stops/407053"], ["https://data.delijn.be/stops/503214", "https://data.delijn.be/stops/508183"], ["https://data.delijn.be/stops/102913", "https://data.delijn.be/stops/106716"], ["https://data.delijn.be/stops/105574", "https://data.delijn.be/stops/105579"], ["https://data.delijn.be/stops/304726", "https://data.delijn.be/stops/308698"], ["https://data.delijn.be/stops/401525", "https://data.delijn.be/stops/403735"], ["https://data.delijn.be/stops/202916", "https://data.delijn.be/stops/203916"], ["https://data.delijn.be/stops/304744", "https://data.delijn.be/stops/304745"], ["https://data.delijn.be/stops/502566", "https://data.delijn.be/stops/507566"], ["https://data.delijn.be/stops/101268", "https://data.delijn.be/stops/104104"], ["https://data.delijn.be/stops/105060", "https://data.delijn.be/stops/106707"], ["https://data.delijn.be/stops/504223", "https://data.delijn.be/stops/504523"], ["https://data.delijn.be/stops/405420", "https://data.delijn.be/stops/410018"], ["https://data.delijn.be/stops/107743", "https://data.delijn.be/stops/107744"], ["https://data.delijn.be/stops/401492", "https://data.delijn.be/stops/401587"], ["https://data.delijn.be/stops/407204", "https://data.delijn.be/stops/407209"], ["https://data.delijn.be/stops/203661", "https://data.delijn.be/stops/210007"], ["https://data.delijn.be/stops/206414", "https://data.delijn.be/stops/206650"], ["https://data.delijn.be/stops/501282", "https://data.delijn.be/stops/506317"], ["https://data.delijn.be/stops/300236", "https://data.delijn.be/stops/300247"], ["https://data.delijn.be/stops/305384", "https://data.delijn.be/stops/305418"], ["https://data.delijn.be/stops/405804", "https://data.delijn.be/stops/307375"], ["https://data.delijn.be/stops/502501", "https://data.delijn.be/stops/507507"], ["https://data.delijn.be/stops/107962", "https://data.delijn.be/stops/108027"], ["https://data.delijn.be/stops/503396", "https://data.delijn.be/stops/508398"], ["https://data.delijn.be/stops/306697", "https://data.delijn.be/stops/306828"], ["https://data.delijn.be/stops/305449", "https://data.delijn.be/stops/307929"], ["https://data.delijn.be/stops/200171", "https://data.delijn.be/stops/201229"], ["https://data.delijn.be/stops/407858", "https://data.delijn.be/stops/408166"], ["https://data.delijn.be/stops/104517", "https://data.delijn.be/stops/107931"], ["https://data.delijn.be/stops/202496", "https://data.delijn.be/stops/203176"], ["https://data.delijn.be/stops/105280", "https://data.delijn.be/stops/105680"], ["https://data.delijn.be/stops/306938", "https://data.delijn.be/stops/308065"], ["https://data.delijn.be/stops/504325", "https://data.delijn.be/stops/504326"], ["https://data.delijn.be/stops/304816", "https://data.delijn.be/stops/304826"], ["https://data.delijn.be/stops/404608", "https://data.delijn.be/stops/404614"], ["https://data.delijn.be/stops/508682", "https://data.delijn.be/stops/508685"], ["https://data.delijn.be/stops/504248", "https://data.delijn.be/stops/504489"], ["https://data.delijn.be/stops/406066", "https://data.delijn.be/stops/406378"], ["https://data.delijn.be/stops/206117", "https://data.delijn.be/stops/206810"], ["https://data.delijn.be/stops/501294", "https://data.delijn.be/stops/506306"], ["https://data.delijn.be/stops/210016", "https://data.delijn.be/stops/211016"], ["https://data.delijn.be/stops/103354", "https://data.delijn.be/stops/104129"], ["https://data.delijn.be/stops/504426", "https://data.delijn.be/stops/504697"], ["https://data.delijn.be/stops/208341", "https://data.delijn.be/stops/218028"], ["https://data.delijn.be/stops/200384", "https://data.delijn.be/stops/201619"], ["https://data.delijn.be/stops/106814", "https://data.delijn.be/stops/106818"], ["https://data.delijn.be/stops/201047", "https://data.delijn.be/stops/203469"], ["https://data.delijn.be/stops/403485", "https://data.delijn.be/stops/410114"], ["https://data.delijn.be/stops/108701", "https://data.delijn.be/stops/108712"], ["https://data.delijn.be/stops/202328", "https://data.delijn.be/stops/203328"], ["https://data.delijn.be/stops/102467", "https://data.delijn.be/stops/400413"], ["https://data.delijn.be/stops/300161", "https://data.delijn.be/stops/300169"], ["https://data.delijn.be/stops/208486", "https://data.delijn.be/stops/209487"], ["https://data.delijn.be/stops/300364", "https://data.delijn.be/stops/307720"], ["https://data.delijn.be/stops/203007", "https://data.delijn.be/stops/209908"], ["https://data.delijn.be/stops/504120", "https://data.delijn.be/stops/509481"], ["https://data.delijn.be/stops/205063", "https://data.delijn.be/stops/205064"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/203627"], ["https://data.delijn.be/stops/400451", "https://data.delijn.be/stops/407648"], ["https://data.delijn.be/stops/408101", "https://data.delijn.be/stops/408231"], ["https://data.delijn.be/stops/400042", "https://data.delijn.be/stops/400427"], ["https://data.delijn.be/stops/502444", "https://data.delijn.be/stops/502634"], ["https://data.delijn.be/stops/102565", "https://data.delijn.be/stops/103127"], ["https://data.delijn.be/stops/203874", "https://data.delijn.be/stops/209723"], ["https://data.delijn.be/stops/308524", "https://data.delijn.be/stops/308526"], ["https://data.delijn.be/stops/204170", "https://data.delijn.be/stops/204172"], ["https://data.delijn.be/stops/502687", "https://data.delijn.be/stops/507193"], ["https://data.delijn.be/stops/200482", "https://data.delijn.be/stops/201345"], ["https://data.delijn.be/stops/101417", "https://data.delijn.be/stops/108698"], ["https://data.delijn.be/stops/207665", "https://data.delijn.be/stops/209502"], ["https://data.delijn.be/stops/505183", "https://data.delijn.be/stops/505298"], ["https://data.delijn.be/stops/301241", "https://data.delijn.be/stops/301244"], ["https://data.delijn.be/stops/503531", "https://data.delijn.be/stops/508531"], ["https://data.delijn.be/stops/503629", "https://data.delijn.be/stops/508632"], ["https://data.delijn.be/stops/510009", "https://data.delijn.be/stops/510011"], ["https://data.delijn.be/stops/102732", "https://data.delijn.be/stops/107059"], ["https://data.delijn.be/stops/400079", "https://data.delijn.be/stops/409107"], ["https://data.delijn.be/stops/405351", "https://data.delijn.be/stops/302838"], ["https://data.delijn.be/stops/304841", "https://data.delijn.be/stops/304846"], ["https://data.delijn.be/stops/402514", "https://data.delijn.be/stops/402516"], ["https://data.delijn.be/stops/503326", "https://data.delijn.be/stops/507762"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/504613"], ["https://data.delijn.be/stops/401375", "https://data.delijn.be/stops/404772"], ["https://data.delijn.be/stops/303816", "https://data.delijn.be/stops/303817"], ["https://data.delijn.be/stops/300224", "https://data.delijn.be/stops/300231"], ["https://data.delijn.be/stops/208285", "https://data.delijn.be/stops/219018"], ["https://data.delijn.be/stops/500955", "https://data.delijn.be/stops/504713"], ["https://data.delijn.be/stops/402194", "https://data.delijn.be/stops/402363"], ["https://data.delijn.be/stops/502306", "https://data.delijn.be/stops/507312"], ["https://data.delijn.be/stops/203894", "https://data.delijn.be/stops/208287"], ["https://data.delijn.be/stops/501550", "https://data.delijn.be/stops/506772"], ["https://data.delijn.be/stops/108844", "https://data.delijn.be/stops/108856"], ["https://data.delijn.be/stops/200074", "https://data.delijn.be/stops/201074"], ["https://data.delijn.be/stops/204997", "https://data.delijn.be/stops/503643"], ["https://data.delijn.be/stops/200238", "https://data.delijn.be/stops/204925"], ["https://data.delijn.be/stops/109494", "https://data.delijn.be/stops/109497"], ["https://data.delijn.be/stops/109657", "https://data.delijn.be/stops/406509"], ["https://data.delijn.be/stops/303876", "https://data.delijn.be/stops/308713"], ["https://data.delijn.be/stops/206752", "https://data.delijn.be/stops/208476"], ["https://data.delijn.be/stops/203506", "https://data.delijn.be/stops/203930"], ["https://data.delijn.be/stops/401205", "https://data.delijn.be/stops/401376"], ["https://data.delijn.be/stops/204343", "https://data.delijn.be/stops/204344"], ["https://data.delijn.be/stops/503141", "https://data.delijn.be/stops/509225"], ["https://data.delijn.be/stops/406451", "https://data.delijn.be/stops/406470"], ["https://data.delijn.be/stops/208403", "https://data.delijn.be/stops/209378"], ["https://data.delijn.be/stops/303621", "https://data.delijn.be/stops/305445"], ["https://data.delijn.be/stops/406450", "https://data.delijn.be/stops/406471"], ["https://data.delijn.be/stops/405964", "https://data.delijn.be/stops/405965"], ["https://data.delijn.be/stops/403161", "https://data.delijn.be/stops/403443"], ["https://data.delijn.be/stops/102295", "https://data.delijn.be/stops/102321"], ["https://data.delijn.be/stops/502424", "https://data.delijn.be/stops/502434"], ["https://data.delijn.be/stops/104619", "https://data.delijn.be/stops/205646"], ["https://data.delijn.be/stops/504693", "https://data.delijn.be/stops/505573"], ["https://data.delijn.be/stops/404328", "https://data.delijn.be/stops/404329"], ["https://data.delijn.be/stops/201687", "https://data.delijn.be/stops/203503"], ["https://data.delijn.be/stops/104060", "https://data.delijn.be/stops/104875"], ["https://data.delijn.be/stops/504583", "https://data.delijn.be/stops/505423"], ["https://data.delijn.be/stops/406286", "https://data.delijn.be/stops/406288"], ["https://data.delijn.be/stops/402713", "https://data.delijn.be/stops/308175"], ["https://data.delijn.be/stops/501530", "https://data.delijn.be/stops/506510"], ["https://data.delijn.be/stops/502273", "https://data.delijn.be/stops/507269"], ["https://data.delijn.be/stops/307013", "https://data.delijn.be/stops/308358"], ["https://data.delijn.be/stops/305456", "https://data.delijn.be/stops/305980"], ["https://data.delijn.be/stops/103221", "https://data.delijn.be/stops/103222"], ["https://data.delijn.be/stops/305524", "https://data.delijn.be/stops/307012"], ["https://data.delijn.be/stops/202211", "https://data.delijn.be/stops/203211"], ["https://data.delijn.be/stops/406621", "https://data.delijn.be/stops/406632"], ["https://data.delijn.be/stops/102314", "https://data.delijn.be/stops/103712"], ["https://data.delijn.be/stops/502114", "https://data.delijn.be/stops/507114"], ["https://data.delijn.be/stops/303743", "https://data.delijn.be/stops/303745"], ["https://data.delijn.be/stops/200606", "https://data.delijn.be/stops/200633"], ["https://data.delijn.be/stops/304879", "https://data.delijn.be/stops/304881"], ["https://data.delijn.be/stops/300259", "https://data.delijn.be/stops/307496"], ["https://data.delijn.be/stops/400575", "https://data.delijn.be/stops/403027"], ["https://data.delijn.be/stops/207994", "https://data.delijn.be/stops/307768"], ["https://data.delijn.be/stops/200780", "https://data.delijn.be/stops/211094"], ["https://data.delijn.be/stops/302704", "https://data.delijn.be/stops/302732"], ["https://data.delijn.be/stops/408560", "https://data.delijn.be/stops/408792"], ["https://data.delijn.be/stops/209708", "https://data.delijn.be/stops/209952"], ["https://data.delijn.be/stops/107024", "https://data.delijn.be/stops/107025"], ["https://data.delijn.be/stops/104338", "https://data.delijn.be/stops/105912"], ["https://data.delijn.be/stops/405815", "https://data.delijn.be/stops/405818"], ["https://data.delijn.be/stops/106609", "https://data.delijn.be/stops/106610"], ["https://data.delijn.be/stops/402256", "https://data.delijn.be/stops/402257"], ["https://data.delijn.be/stops/402620", "https://data.delijn.be/stops/402621"], ["https://data.delijn.be/stops/306843", "https://data.delijn.be/stops/306844"], ["https://data.delijn.be/stops/101000", "https://data.delijn.be/stops/103770"], ["https://data.delijn.be/stops/107722", "https://data.delijn.be/stops/109431"], ["https://data.delijn.be/stops/405175", "https://data.delijn.be/stops/405279"], ["https://data.delijn.be/stops/502925", "https://data.delijn.be/stops/507495"], ["https://data.delijn.be/stops/107201", "https://data.delijn.be/stops/107727"], ["https://data.delijn.be/stops/202900", "https://data.delijn.be/stops/203904"], ["https://data.delijn.be/stops/407833", "https://data.delijn.be/stops/407836"], ["https://data.delijn.be/stops/202153", "https://data.delijn.be/stops/203190"], ["https://data.delijn.be/stops/202310", "https://data.delijn.be/stops/203793"], ["https://data.delijn.be/stops/203018", "https://data.delijn.be/stops/203297"], ["https://data.delijn.be/stops/504660", "https://data.delijn.be/stops/504991"], ["https://data.delijn.be/stops/204669", "https://data.delijn.be/stops/214009"], ["https://data.delijn.be/stops/202834", "https://data.delijn.be/stops/203834"], ["https://data.delijn.be/stops/307114", "https://data.delijn.be/stops/307186"], ["https://data.delijn.be/stops/202738", "https://data.delijn.be/stops/209743"], ["https://data.delijn.be/stops/502428", "https://data.delijn.be/stops/507432"], ["https://data.delijn.be/stops/401314", "https://data.delijn.be/stops/401319"], ["https://data.delijn.be/stops/507203", "https://data.delijn.be/stops/508748"], ["https://data.delijn.be/stops/402603", "https://data.delijn.be/stops/402642"], ["https://data.delijn.be/stops/201706", "https://data.delijn.be/stops/203445"], ["https://data.delijn.be/stops/508095", "https://data.delijn.be/stops/508097"], ["https://data.delijn.be/stops/300460", "https://data.delijn.be/stops/300470"], ["https://data.delijn.be/stops/202869", "https://data.delijn.be/stops/208713"], ["https://data.delijn.be/stops/504007", "https://data.delijn.be/stops/508555"], ["https://data.delijn.be/stops/200895", "https://data.delijn.be/stops/202286"], ["https://data.delijn.be/stops/204974", "https://data.delijn.be/stops/205974"], ["https://data.delijn.be/stops/200710", "https://data.delijn.be/stops/200711"], ["https://data.delijn.be/stops/302319", "https://data.delijn.be/stops/303511"], ["https://data.delijn.be/stops/104397", "https://data.delijn.be/stops/104398"], ["https://data.delijn.be/stops/302160", "https://data.delijn.be/stops/308103"], ["https://data.delijn.be/stops/200547", "https://data.delijn.be/stops/209664"], ["https://data.delijn.be/stops/300668", "https://data.delijn.be/stops/300674"], ["https://data.delijn.be/stops/102896", "https://data.delijn.be/stops/105725"], ["https://data.delijn.be/stops/505381", "https://data.delijn.be/stops/505792"], ["https://data.delijn.be/stops/301268", "https://data.delijn.be/stops/304981"], ["https://data.delijn.be/stops/202459", "https://data.delijn.be/stops/202485"], ["https://data.delijn.be/stops/408826", "https://data.delijn.be/stops/408827"], ["https://data.delijn.be/stops/109539", "https://data.delijn.be/stops/109660"], ["https://data.delijn.be/stops/202312", "https://data.delijn.be/stops/203313"], ["https://data.delijn.be/stops/502024", "https://data.delijn.be/stops/509758"], ["https://data.delijn.be/stops/406701", "https://data.delijn.be/stops/406702"], ["https://data.delijn.be/stops/102531", "https://data.delijn.be/stops/405723"], ["https://data.delijn.be/stops/302954", "https://data.delijn.be/stops/306275"], ["https://data.delijn.be/stops/207576", "https://data.delijn.be/stops/209126"], ["https://data.delijn.be/stops/102460", "https://data.delijn.be/stops/103393"], ["https://data.delijn.be/stops/508754", "https://data.delijn.be/stops/509750"], ["https://data.delijn.be/stops/506205", "https://data.delijn.be/stops/506289"], ["https://data.delijn.be/stops/403044", "https://data.delijn.be/stops/403045"], ["https://data.delijn.be/stops/300871", "https://data.delijn.be/stops/302217"], ["https://data.delijn.be/stops/105703", "https://data.delijn.be/stops/105704"], ["https://data.delijn.be/stops/205138", "https://data.delijn.be/stops/205141"], ["https://data.delijn.be/stops/104901", "https://data.delijn.be/stops/109719"], ["https://data.delijn.be/stops/503477", "https://data.delijn.be/stops/508471"], ["https://data.delijn.be/stops/203070", "https://data.delijn.be/stops/208845"], ["https://data.delijn.be/stops/303251", "https://data.delijn.be/stops/303294"], ["https://data.delijn.be/stops/506238", "https://data.delijn.be/stops/506768"], ["https://data.delijn.be/stops/205295", "https://data.delijn.be/stops/205296"], ["https://data.delijn.be/stops/106325", "https://data.delijn.be/stops/106687"], ["https://data.delijn.be/stops/203139", "https://data.delijn.be/stops/203993"], ["https://data.delijn.be/stops/107826", "https://data.delijn.be/stops/107828"], ["https://data.delijn.be/stops/304111", "https://data.delijn.be/stops/304819"], ["https://data.delijn.be/stops/501175", "https://data.delijn.be/stops/501182"], ["https://data.delijn.be/stops/304204", "https://data.delijn.be/stops/304205"], ["https://data.delijn.be/stops/502201", "https://data.delijn.be/stops/502299"], ["https://data.delijn.be/stops/406753", "https://data.delijn.be/stops/406758"], ["https://data.delijn.be/stops/405379", "https://data.delijn.be/stops/303320"], ["https://data.delijn.be/stops/508018", "https://data.delijn.be/stops/508557"], ["https://data.delijn.be/stops/204103", "https://data.delijn.be/stops/207306"], ["https://data.delijn.be/stops/204311", "https://data.delijn.be/stops/205311"], ["https://data.delijn.be/stops/504374", "https://data.delijn.be/stops/504387"], ["https://data.delijn.be/stops/403430", "https://data.delijn.be/stops/403431"], ["https://data.delijn.be/stops/305989", "https://data.delijn.be/stops/305991"], ["https://data.delijn.be/stops/304782", "https://data.delijn.be/stops/304798"], ["https://data.delijn.be/stops/101906", "https://data.delijn.be/stops/106506"], ["https://data.delijn.be/stops/208047", "https://data.delijn.be/stops/208952"], ["https://data.delijn.be/stops/301467", "https://data.delijn.be/stops/308070"], ["https://data.delijn.be/stops/200254", "https://data.delijn.be/stops/201253"], ["https://data.delijn.be/stops/406887", "https://data.delijn.be/stops/410294"], ["https://data.delijn.be/stops/204504", "https://data.delijn.be/stops/205504"], ["https://data.delijn.be/stops/107226", "https://data.delijn.be/stops/109888"], ["https://data.delijn.be/stops/200361", "https://data.delijn.be/stops/201361"], ["https://data.delijn.be/stops/506470", "https://data.delijn.be/stops/506476"], ["https://data.delijn.be/stops/105134", "https://data.delijn.be/stops/105136"], ["https://data.delijn.be/stops/403834", "https://data.delijn.be/stops/403837"], ["https://data.delijn.be/stops/405956", "https://data.delijn.be/stops/405961"], ["https://data.delijn.be/stops/401572", "https://data.delijn.be/stops/402178"], ["https://data.delijn.be/stops/201530", "https://data.delijn.be/stops/211079"], ["https://data.delijn.be/stops/406266", "https://data.delijn.be/stops/407123"], ["https://data.delijn.be/stops/404508", "https://data.delijn.be/stops/404573"], ["https://data.delijn.be/stops/501744", "https://data.delijn.be/stops/504121"], ["https://data.delijn.be/stops/401989", "https://data.delijn.be/stops/402000"], ["https://data.delijn.be/stops/204748", "https://data.delijn.be/stops/205747"], ["https://data.delijn.be/stops/401642", "https://data.delijn.be/stops/408656"], ["https://data.delijn.be/stops/408005", "https://data.delijn.be/stops/410161"], ["https://data.delijn.be/stops/300445", "https://data.delijn.be/stops/300446"], ["https://data.delijn.be/stops/406520", "https://data.delijn.be/stops/407502"], ["https://data.delijn.be/stops/403903", "https://data.delijn.be/stops/403909"], ["https://data.delijn.be/stops/103161", "https://data.delijn.be/stops/103168"], ["https://data.delijn.be/stops/505956", "https://data.delijn.be/stops/508606"], ["https://data.delijn.be/stops/202132", "https://data.delijn.be/stops/203132"], ["https://data.delijn.be/stops/403958", "https://data.delijn.be/stops/403972"], ["https://data.delijn.be/stops/106754", "https://data.delijn.be/stops/106758"], ["https://data.delijn.be/stops/103924", "https://data.delijn.be/stops/103927"], ["https://data.delijn.be/stops/206582", "https://data.delijn.be/stops/207482"], ["https://data.delijn.be/stops/208100", "https://data.delijn.be/stops/209099"], ["https://data.delijn.be/stops/503725", "https://data.delijn.be/stops/508725"], ["https://data.delijn.be/stops/206864", "https://data.delijn.be/stops/207863"], ["https://data.delijn.be/stops/300036", "https://data.delijn.be/stops/307443"], ["https://data.delijn.be/stops/102481", "https://data.delijn.be/stops/400417"], ["https://data.delijn.be/stops/509460", "https://data.delijn.be/stops/509612"], ["https://data.delijn.be/stops/207813", "https://data.delijn.be/stops/207935"], ["https://data.delijn.be/stops/107318", "https://data.delijn.be/stops/108818"], ["https://data.delijn.be/stops/401420", "https://data.delijn.be/stops/401500"], ["https://data.delijn.be/stops/301197", "https://data.delijn.be/stops/308814"], ["https://data.delijn.be/stops/502605", "https://data.delijn.be/stops/507605"], ["https://data.delijn.be/stops/206955", "https://data.delijn.be/stops/207188"], ["https://data.delijn.be/stops/301911", "https://data.delijn.be/stops/305920"], ["https://data.delijn.be/stops/505540", "https://data.delijn.be/stops/508811"], ["https://data.delijn.be/stops/208176", "https://data.delijn.be/stops/209176"], ["https://data.delijn.be/stops/103870", "https://data.delijn.be/stops/103885"], ["https://data.delijn.be/stops/401810", "https://data.delijn.be/stops/410357"], ["https://data.delijn.be/stops/106644", "https://data.delijn.be/stops/106645"], ["https://data.delijn.be/stops/103087", "https://data.delijn.be/stops/107531"], ["https://data.delijn.be/stops/502247", "https://data.delijn.be/stops/507022"], ["https://data.delijn.be/stops/307213", "https://data.delijn.be/stops/307214"], ["https://data.delijn.be/stops/506663", "https://data.delijn.be/stops/506732"], ["https://data.delijn.be/stops/403247", "https://data.delijn.be/stops/406887"], ["https://data.delijn.be/stops/301756", "https://data.delijn.be/stops/301757"], ["https://data.delijn.be/stops/103326", "https://data.delijn.be/stops/105019"], ["https://data.delijn.be/stops/208812", "https://data.delijn.be/stops/208837"], ["https://data.delijn.be/stops/304442", "https://data.delijn.be/stops/304457"], ["https://data.delijn.be/stops/200670", "https://data.delijn.be/stops/508643"], ["https://data.delijn.be/stops/301297", "https://data.delijn.be/stops/301298"], ["https://data.delijn.be/stops/204218", "https://data.delijn.be/stops/205217"], ["https://data.delijn.be/stops/300727", "https://data.delijn.be/stops/301598"], ["https://data.delijn.be/stops/301246", "https://data.delijn.be/stops/306325"], ["https://data.delijn.be/stops/102936", "https://data.delijn.be/stops/103135"], ["https://data.delijn.be/stops/403719", "https://data.delijn.be/stops/406889"], ["https://data.delijn.be/stops/202831", "https://data.delijn.be/stops/202832"], ["https://data.delijn.be/stops/408110", "https://data.delijn.be/stops/408160"], ["https://data.delijn.be/stops/206313", "https://data.delijn.be/stops/207816"], ["https://data.delijn.be/stops/505290", "https://data.delijn.be/stops/508905"], ["https://data.delijn.be/stops/304485", "https://data.delijn.be/stops/307568"], ["https://data.delijn.be/stops/104781", "https://data.delijn.be/stops/108118"], ["https://data.delijn.be/stops/506109", "https://data.delijn.be/stops/506493"], ["https://data.delijn.be/stops/408172", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/204317", "https://data.delijn.be/stops/205059"], ["https://data.delijn.be/stops/500998", "https://data.delijn.be/stops/504571"], ["https://data.delijn.be/stops/103148", "https://data.delijn.be/stops/103287"], ["https://data.delijn.be/stops/106180", "https://data.delijn.be/stops/109560"], ["https://data.delijn.be/stops/208421", "https://data.delijn.be/stops/208742"], ["https://data.delijn.be/stops/300123", "https://data.delijn.be/stops/306829"], ["https://data.delijn.be/stops/504374", "https://data.delijn.be/stops/505977"], ["https://data.delijn.be/stops/406242", "https://data.delijn.be/stops/406256"], ["https://data.delijn.be/stops/106590", "https://data.delijn.be/stops/106591"], ["https://data.delijn.be/stops/504292", "https://data.delijn.be/stops/504310"], ["https://data.delijn.be/stops/105353", "https://data.delijn.be/stops/109969"], ["https://data.delijn.be/stops/306302", "https://data.delijn.be/stops/307927"], ["https://data.delijn.be/stops/402344", "https://data.delijn.be/stops/402345"], ["https://data.delijn.be/stops/106649", "https://data.delijn.be/stops/106651"], ["https://data.delijn.be/stops/408546", "https://data.delijn.be/stops/408616"], ["https://data.delijn.be/stops/404383", "https://data.delijn.be/stops/404648"], ["https://data.delijn.be/stops/206575", "https://data.delijn.be/stops/209125"], ["https://data.delijn.be/stops/408004", "https://data.delijn.be/stops/408263"], ["https://data.delijn.be/stops/403210", "https://data.delijn.be/stops/403552"], ["https://data.delijn.be/stops/503962", "https://data.delijn.be/stops/508124"], ["https://data.delijn.be/stops/401132", "https://data.delijn.be/stops/401151"], ["https://data.delijn.be/stops/204413", "https://data.delijn.be/stops/204443"], ["https://data.delijn.be/stops/108155", "https://data.delijn.be/stops/109847"], ["https://data.delijn.be/stops/302035", "https://data.delijn.be/stops/308958"], ["https://data.delijn.be/stops/403219", "https://data.delijn.be/stops/403389"], ["https://data.delijn.be/stops/105674", "https://data.delijn.be/stops/105676"], ["https://data.delijn.be/stops/401349", "https://data.delijn.be/stops/401360"], ["https://data.delijn.be/stops/208573", "https://data.delijn.be/stops/307312"], ["https://data.delijn.be/stops/501205", "https://data.delijn.be/stops/501546"], ["https://data.delijn.be/stops/108372", "https://data.delijn.be/stops/108519"], ["https://data.delijn.be/stops/200111", "https://data.delijn.be/stops/203647"], ["https://data.delijn.be/stops/302055", "https://data.delijn.be/stops/307074"], ["https://data.delijn.be/stops/504359", "https://data.delijn.be/stops/509358"], ["https://data.delijn.be/stops/507211", "https://data.delijn.be/stops/507583"], ["https://data.delijn.be/stops/202898", "https://data.delijn.be/stops/210125"], ["https://data.delijn.be/stops/406298", "https://data.delijn.be/stops/302854"], ["https://data.delijn.be/stops/204133", "https://data.delijn.be/stops/205141"], ["https://data.delijn.be/stops/106528", "https://data.delijn.be/stops/106991"], ["https://data.delijn.be/stops/200906", "https://data.delijn.be/stops/202254"], ["https://data.delijn.be/stops/504572", "https://data.delijn.be/stops/509572"], ["https://data.delijn.be/stops/207678", "https://data.delijn.be/stops/209143"], ["https://data.delijn.be/stops/206385", "https://data.delijn.be/stops/207386"], ["https://data.delijn.be/stops/305234", "https://data.delijn.be/stops/305297"], ["https://data.delijn.be/stops/409354", "https://data.delijn.be/stops/409399"], ["https://data.delijn.be/stops/303449", "https://data.delijn.be/stops/303450"], ["https://data.delijn.be/stops/406269", "https://data.delijn.be/stops/406421"], ["https://data.delijn.be/stops/205355", "https://data.delijn.be/stops/205370"], ["https://data.delijn.be/stops/305167", "https://data.delijn.be/stops/305206"], ["https://data.delijn.be/stops/400742", "https://data.delijn.be/stops/404261"], ["https://data.delijn.be/stops/305347", "https://data.delijn.be/stops/307972"], ["https://data.delijn.be/stops/204106", "https://data.delijn.be/stops/204587"], ["https://data.delijn.be/stops/502305", "https://data.delijn.be/stops/507302"], ["https://data.delijn.be/stops/107974", "https://data.delijn.be/stops/306760"], ["https://data.delijn.be/stops/108522", "https://data.delijn.be/stops/108524"], ["https://data.delijn.be/stops/106588", "https://data.delijn.be/stops/107274"], ["https://data.delijn.be/stops/200748", "https://data.delijn.be/stops/205070"], ["https://data.delijn.be/stops/302795", "https://data.delijn.be/stops/302801"], ["https://data.delijn.be/stops/304306", "https://data.delijn.be/stops/304308"], ["https://data.delijn.be/stops/405490", "https://data.delijn.be/stops/409298"], ["https://data.delijn.be/stops/206353", "https://data.delijn.be/stops/207353"], ["https://data.delijn.be/stops/401551", "https://data.delijn.be/stops/406885"], ["https://data.delijn.be/stops/502635", "https://data.delijn.be/stops/507209"], ["https://data.delijn.be/stops/102757", "https://data.delijn.be/stops/106496"], ["https://data.delijn.be/stops/305501", "https://data.delijn.be/stops/307878"], ["https://data.delijn.be/stops/205262", "https://data.delijn.be/stops/205311"], ["https://data.delijn.be/stops/402938", "https://data.delijn.be/stops/405973"], ["https://data.delijn.be/stops/200688", "https://data.delijn.be/stops/202373"], ["https://data.delijn.be/stops/105567", "https://data.delijn.be/stops/105571"], ["https://data.delijn.be/stops/204433", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/101514", "https://data.delijn.be/stops/102252"], ["https://data.delijn.be/stops/404325", "https://data.delijn.be/stops/404362"], ["https://data.delijn.be/stops/503474", "https://data.delijn.be/stops/509951"], ["https://data.delijn.be/stops/202101", "https://data.delijn.be/stops/210006"], ["https://data.delijn.be/stops/300607", "https://data.delijn.be/stops/300613"], ["https://data.delijn.be/stops/106192", "https://data.delijn.be/stops/106193"], ["https://data.delijn.be/stops/304336", "https://data.delijn.be/stops/304340"], ["https://data.delijn.be/stops/503405", "https://data.delijn.be/stops/508407"], ["https://data.delijn.be/stops/209392", "https://data.delijn.be/stops/209393"], ["https://data.delijn.be/stops/303426", "https://data.delijn.be/stops/303427"], ["https://data.delijn.be/stops/404495", "https://data.delijn.be/stops/404536"], ["https://data.delijn.be/stops/503470", "https://data.delijn.be/stops/508451"], ["https://data.delijn.be/stops/204087", "https://data.delijn.be/stops/204088"], ["https://data.delijn.be/stops/501068", "https://data.delijn.be/stops/501069"], ["https://data.delijn.be/stops/502690", "https://data.delijn.be/stops/507690"], ["https://data.delijn.be/stops/405102", "https://data.delijn.be/stops/408336"], ["https://data.delijn.be/stops/406283", "https://data.delijn.be/stops/409356"], ["https://data.delijn.be/stops/306613", "https://data.delijn.be/stops/306630"], ["https://data.delijn.be/stops/305650", "https://data.delijn.be/stops/305660"], ["https://data.delijn.be/stops/101182", "https://data.delijn.be/stops/107867"], ["https://data.delijn.be/stops/206672", "https://data.delijn.be/stops/209633"], ["https://data.delijn.be/stops/401441", "https://data.delijn.be/stops/404172"], ["https://data.delijn.be/stops/206971", "https://data.delijn.be/stops/207972"], ["https://data.delijn.be/stops/209616", "https://data.delijn.be/stops/209655"], ["https://data.delijn.be/stops/200411", "https://data.delijn.be/stops/208941"], ["https://data.delijn.be/stops/104315", "https://data.delijn.be/stops/104321"], ["https://data.delijn.be/stops/105621", "https://data.delijn.be/stops/105622"], ["https://data.delijn.be/stops/304047", "https://data.delijn.be/stops/306278"], ["https://data.delijn.be/stops/108792", "https://data.delijn.be/stops/109556"], ["https://data.delijn.be/stops/103066", "https://data.delijn.be/stops/105224"], ["https://data.delijn.be/stops/102088", "https://data.delijn.be/stops/106806"], ["https://data.delijn.be/stops/401472", "https://data.delijn.be/stops/410165"], ["https://data.delijn.be/stops/105357", "https://data.delijn.be/stops/105661"], ["https://data.delijn.be/stops/204919", "https://data.delijn.be/stops/205916"], ["https://data.delijn.be/stops/301906", "https://data.delijn.be/stops/301907"], ["https://data.delijn.be/stops/410272", "https://data.delijn.be/stops/410273"], ["https://data.delijn.be/stops/304946", "https://data.delijn.be/stops/304949"], ["https://data.delijn.be/stops/101418", "https://data.delijn.be/stops/106950"], ["https://data.delijn.be/stops/400449", "https://data.delijn.be/stops/400654"], ["https://data.delijn.be/stops/205398", "https://data.delijn.be/stops/205772"], ["https://data.delijn.be/stops/410288", "https://data.delijn.be/stops/410289"], ["https://data.delijn.be/stops/101833", "https://data.delijn.be/stops/101834"], ["https://data.delijn.be/stops/303306", "https://data.delijn.be/stops/303307"], ["https://data.delijn.be/stops/409039", "https://data.delijn.be/stops/409041"], ["https://data.delijn.be/stops/207399", "https://data.delijn.be/stops/207400"], ["https://data.delijn.be/stops/202526", "https://data.delijn.be/stops/206409"], ["https://data.delijn.be/stops/402885", "https://data.delijn.be/stops/402886"], ["https://data.delijn.be/stops/206299", "https://data.delijn.be/stops/207494"], ["https://data.delijn.be/stops/502375", "https://data.delijn.be/stops/507375"], ["https://data.delijn.be/stops/400800", "https://data.delijn.be/stops/400880"], ["https://data.delijn.be/stops/203344", "https://data.delijn.be/stops/205975"], ["https://data.delijn.be/stops/302531", "https://data.delijn.be/stops/303715"], ["https://data.delijn.be/stops/300681", "https://data.delijn.be/stops/305962"], ["https://data.delijn.be/stops/300245", "https://data.delijn.be/stops/305926"], ["https://data.delijn.be/stops/307330", "https://data.delijn.be/stops/307910"], ["https://data.delijn.be/stops/208070", "https://data.delijn.be/stops/209071"], ["https://data.delijn.be/stops/101497", "https://data.delijn.be/stops/108308"], ["https://data.delijn.be/stops/403994", "https://data.delijn.be/stops/410026"], ["https://data.delijn.be/stops/403925", "https://data.delijn.be/stops/403971"], ["https://data.delijn.be/stops/503348", "https://data.delijn.be/stops/503416"], ["https://data.delijn.be/stops/200184", "https://data.delijn.be/stops/200192"], ["https://data.delijn.be/stops/305294", "https://data.delijn.be/stops/305295"], ["https://data.delijn.be/stops/103185", "https://data.delijn.be/stops/103348"], ["https://data.delijn.be/stops/501360", "https://data.delijn.be/stops/506353"], ["https://data.delijn.be/stops/206458", "https://data.delijn.be/stops/207458"], ["https://data.delijn.be/stops/504819", "https://data.delijn.be/stops/509819"], ["https://data.delijn.be/stops/208278", "https://data.delijn.be/stops/209277"], ["https://data.delijn.be/stops/308506", "https://data.delijn.be/stops/308507"], ["https://data.delijn.be/stops/301972", "https://data.delijn.be/stops/301987"], ["https://data.delijn.be/stops/301799", "https://data.delijn.be/stops/303705"], ["https://data.delijn.be/stops/305117", "https://data.delijn.be/stops/305126"], ["https://data.delijn.be/stops/406470", "https://data.delijn.be/stops/406471"], ["https://data.delijn.be/stops/303739", "https://data.delijn.be/stops/303749"], ["https://data.delijn.be/stops/404460", "https://data.delijn.be/stops/404490"], ["https://data.delijn.be/stops/503648", "https://data.delijn.be/stops/505365"], ["https://data.delijn.be/stops/202302", "https://data.delijn.be/stops/203303"], ["https://data.delijn.be/stops/502087", "https://data.delijn.be/stops/502732"], ["https://data.delijn.be/stops/101895", "https://data.delijn.be/stops/104722"], ["https://data.delijn.be/stops/508615", "https://data.delijn.be/stops/509751"], ["https://data.delijn.be/stops/305733", "https://data.delijn.be/stops/306328"], ["https://data.delijn.be/stops/102534", "https://data.delijn.be/stops/102536"], ["https://data.delijn.be/stops/508329", "https://data.delijn.be/stops/508980"], ["https://data.delijn.be/stops/205036", "https://data.delijn.be/stops/205037"], ["https://data.delijn.be/stops/401648", "https://data.delijn.be/stops/408710"], ["https://data.delijn.be/stops/507353", "https://data.delijn.be/stops/507355"], ["https://data.delijn.be/stops/401072", "https://data.delijn.be/stops/401165"], ["https://data.delijn.be/stops/301044", "https://data.delijn.be/stops/306692"], ["https://data.delijn.be/stops/101364", "https://data.delijn.be/stops/101366"], ["https://data.delijn.be/stops/300086", "https://data.delijn.be/stops/300150"], ["https://data.delijn.be/stops/301083", "https://data.delijn.be/stops/301085"], ["https://data.delijn.be/stops/106520", "https://data.delijn.be/stops/107099"], ["https://data.delijn.be/stops/401219", "https://data.delijn.be/stops/409190"], ["https://data.delijn.be/stops/202765", "https://data.delijn.be/stops/203766"], ["https://data.delijn.be/stops/501344", "https://data.delijn.be/stops/501398"], ["https://data.delijn.be/stops/400219", "https://data.delijn.be/stops/400231"], ["https://data.delijn.be/stops/200453", "https://data.delijn.be/stops/208733"], ["https://data.delijn.be/stops/501205", "https://data.delijn.be/stops/501374"], ["https://data.delijn.be/stops/102886", "https://data.delijn.be/stops/103670"], ["https://data.delijn.be/stops/508780", "https://data.delijn.be/stops/508788"], ["https://data.delijn.be/stops/106325", "https://data.delijn.be/stops/106326"], ["https://data.delijn.be/stops/301975", "https://data.delijn.be/stops/302921"], ["https://data.delijn.be/stops/406640", "https://data.delijn.be/stops/406683"], ["https://data.delijn.be/stops/405779", "https://data.delijn.be/stops/409420"], ["https://data.delijn.be/stops/307157", "https://data.delijn.be/stops/307159"], ["https://data.delijn.be/stops/108371", "https://data.delijn.be/stops/108458"], ["https://data.delijn.be/stops/207773", "https://data.delijn.be/stops/209188"], ["https://data.delijn.be/stops/102345", "https://data.delijn.be/stops/103680"], ["https://data.delijn.be/stops/302979", "https://data.delijn.be/stops/307066"], ["https://data.delijn.be/stops/403150", "https://data.delijn.be/stops/403152"], ["https://data.delijn.be/stops/503809", "https://data.delijn.be/stops/508809"], ["https://data.delijn.be/stops/304284", "https://data.delijn.be/stops/308769"], ["https://data.delijn.be/stops/305009", "https://data.delijn.be/stops/305026"], ["https://data.delijn.be/stops/505441", "https://data.delijn.be/stops/509146"], ["https://data.delijn.be/stops/502420", "https://data.delijn.be/stops/502644"], ["https://data.delijn.be/stops/405266", "https://data.delijn.be/stops/405273"], ["https://data.delijn.be/stops/507229", "https://data.delijn.be/stops/509051"], ["https://data.delijn.be/stops/405659", "https://data.delijn.be/stops/408428"], ["https://data.delijn.be/stops/109367", "https://data.delijn.be/stops/109370"], ["https://data.delijn.be/stops/202299", "https://data.delijn.be/stops/203299"], ["https://data.delijn.be/stops/304540", "https://data.delijn.be/stops/307586"], ["https://data.delijn.be/stops/106351", "https://data.delijn.be/stops/106352"], ["https://data.delijn.be/stops/202628", "https://data.delijn.be/stops/202629"], ["https://data.delijn.be/stops/302516", "https://data.delijn.be/stops/302538"], ["https://data.delijn.be/stops/400071", "https://data.delijn.be/stops/403549"], ["https://data.delijn.be/stops/203266", "https://data.delijn.be/stops/203267"], ["https://data.delijn.be/stops/504527", "https://data.delijn.be/stops/509527"], ["https://data.delijn.be/stops/102239", "https://data.delijn.be/stops/105868"], ["https://data.delijn.be/stops/504455", "https://data.delijn.be/stops/508128"], ["https://data.delijn.be/stops/103236", "https://data.delijn.be/stops/103689"], ["https://data.delijn.be/stops/200141", "https://data.delijn.be/stops/211001"], ["https://data.delijn.be/stops/407250", "https://data.delijn.be/stops/407373"], ["https://data.delijn.be/stops/407802", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/201076", "https://data.delijn.be/stops/201525"], ["https://data.delijn.be/stops/508699", "https://data.delijn.be/stops/508729"], ["https://data.delijn.be/stops/207799", "https://data.delijn.be/stops/208180"], ["https://data.delijn.be/stops/205133", "https://data.delijn.be/stops/205238"], ["https://data.delijn.be/stops/103633", "https://data.delijn.be/stops/107167"], ["https://data.delijn.be/stops/202872", "https://data.delijn.be/stops/203737"], ["https://data.delijn.be/stops/204635", "https://data.delijn.be/stops/205636"], ["https://data.delijn.be/stops/200142", "https://data.delijn.be/stops/201142"], ["https://data.delijn.be/stops/103530", "https://data.delijn.be/stops/105595"], ["https://data.delijn.be/stops/501623", "https://data.delijn.be/stops/506412"], ["https://data.delijn.be/stops/208094", "https://data.delijn.be/stops/209630"], ["https://data.delijn.be/stops/404658", "https://data.delijn.be/stops/404671"], ["https://data.delijn.be/stops/102548", "https://data.delijn.be/stops/102552"], ["https://data.delijn.be/stops/106680", "https://data.delijn.be/stops/106684"], ["https://data.delijn.be/stops/208602", "https://data.delijn.be/stops/209603"], ["https://data.delijn.be/stops/208447", "https://data.delijn.be/stops/209447"], ["https://data.delijn.be/stops/301448", "https://data.delijn.be/stops/308408"], ["https://data.delijn.be/stops/108743", "https://data.delijn.be/stops/109502"], ["https://data.delijn.be/stops/405089", "https://data.delijn.be/stops/408191"], ["https://data.delijn.be/stops/201758", "https://data.delijn.be/stops/218010"], ["https://data.delijn.be/stops/502028", "https://data.delijn.be/stops/502661"], ["https://data.delijn.be/stops/105706", "https://data.delijn.be/stops/106072"], ["https://data.delijn.be/stops/401053", "https://data.delijn.be/stops/408939"], ["https://data.delijn.be/stops/300125", "https://data.delijn.be/stops/307070"], ["https://data.delijn.be/stops/101426", "https://data.delijn.be/stops/109514"], ["https://data.delijn.be/stops/304380", "https://data.delijn.be/stops/304386"], ["https://data.delijn.be/stops/206443", "https://data.delijn.be/stops/206641"], ["https://data.delijn.be/stops/107582", "https://data.delijn.be/stops/107584"], ["https://data.delijn.be/stops/404425", "https://data.delijn.be/stops/404496"], ["https://data.delijn.be/stops/104711", "https://data.delijn.be/stops/104713"], ["https://data.delijn.be/stops/200089", "https://data.delijn.be/stops/200370"], ["https://data.delijn.be/stops/206245", "https://data.delijn.be/stops/207243"], ["https://data.delijn.be/stops/302978", "https://data.delijn.be/stops/303032"], ["https://data.delijn.be/stops/303972", "https://data.delijn.be/stops/303974"], ["https://data.delijn.be/stops/200770", "https://data.delijn.be/stops/503864"], ["https://data.delijn.be/stops/509027", "https://data.delijn.be/stops/509704"], ["https://data.delijn.be/stops/202344", "https://data.delijn.be/stops/209740"], ["https://data.delijn.be/stops/503850", "https://data.delijn.be/stops/505984"], ["https://data.delijn.be/stops/401870", "https://data.delijn.be/stops/406119"], ["https://data.delijn.be/stops/200343", "https://data.delijn.be/stops/201377"], ["https://data.delijn.be/stops/406143", "https://data.delijn.be/stops/406144"], ["https://data.delijn.be/stops/500159", "https://data.delijn.be/stops/503573"], ["https://data.delijn.be/stops/503751", "https://data.delijn.be/stops/508752"], ["https://data.delijn.be/stops/405899", "https://data.delijn.be/stops/407497"], ["https://data.delijn.be/stops/305610", "https://data.delijn.be/stops/305614"], ["https://data.delijn.be/stops/108284", "https://data.delijn.be/stops/109655"], ["https://data.delijn.be/stops/402004", "https://data.delijn.be/stops/406196"], ["https://data.delijn.be/stops/304860", "https://data.delijn.be/stops/307645"], ["https://data.delijn.be/stops/209182", "https://data.delijn.be/stops/209191"], ["https://data.delijn.be/stops/502316", "https://data.delijn.be/stops/507305"], ["https://data.delijn.be/stops/407303", "https://data.delijn.be/stops/407331"], ["https://data.delijn.be/stops/305043", "https://data.delijn.be/stops/307950"], ["https://data.delijn.be/stops/403716", "https://data.delijn.be/stops/403822"], ["https://data.delijn.be/stops/590008", "https://data.delijn.be/stops/590009"], ["https://data.delijn.be/stops/500994", "https://data.delijn.be/stops/505410"], ["https://data.delijn.be/stops/208237", "https://data.delijn.be/stops/208376"], ["https://data.delijn.be/stops/400884", "https://data.delijn.be/stops/400885"], ["https://data.delijn.be/stops/108236", "https://data.delijn.be/stops/108237"], ["https://data.delijn.be/stops/507307", "https://data.delijn.be/stops/507768"], ["https://data.delijn.be/stops/307546", "https://data.delijn.be/stops/307547"], ["https://data.delijn.be/stops/205065", "https://data.delijn.be/stops/205520"], ["https://data.delijn.be/stops/406053", "https://data.delijn.be/stops/409293"], ["https://data.delijn.be/stops/301625", "https://data.delijn.be/stops/301630"], ["https://data.delijn.be/stops/505600", "https://data.delijn.be/stops/505603"], ["https://data.delijn.be/stops/304478", "https://data.delijn.be/stops/304506"], ["https://data.delijn.be/stops/304637", "https://data.delijn.be/stops/304638"], ["https://data.delijn.be/stops/400127", "https://data.delijn.be/stops/400128"], ["https://data.delijn.be/stops/302129", "https://data.delijn.be/stops/302131"], ["https://data.delijn.be/stops/503309", "https://data.delijn.be/stops/508302"], ["https://data.delijn.be/stops/503637", "https://data.delijn.be/stops/503639"], ["https://data.delijn.be/stops/300891", "https://data.delijn.be/stops/301811"], ["https://data.delijn.be/stops/407103", "https://data.delijn.be/stops/407305"], ["https://data.delijn.be/stops/302309", "https://data.delijn.be/stops/302330"], ["https://data.delijn.be/stops/104928", "https://data.delijn.be/stops/104932"], ["https://data.delijn.be/stops/506123", "https://data.delijn.be/stops/506124"], ["https://data.delijn.be/stops/305387", "https://data.delijn.be/stops/305388"], ["https://data.delijn.be/stops/402975", "https://data.delijn.be/stops/402976"], ["https://data.delijn.be/stops/505532", "https://data.delijn.be/stops/505578"], ["https://data.delijn.be/stops/208438", "https://data.delijn.be/stops/208751"], ["https://data.delijn.be/stops/502341", "https://data.delijn.be/stops/505090"], ["https://data.delijn.be/stops/202510", "https://data.delijn.be/stops/203509"], ["https://data.delijn.be/stops/504326", "https://data.delijn.be/stops/504385"], ["https://data.delijn.be/stops/508709", "https://data.delijn.be/stops/509041"], ["https://data.delijn.be/stops/400881", "https://data.delijn.be/stops/409613"], ["https://data.delijn.be/stops/202221", "https://data.delijn.be/stops/203221"], ["https://data.delijn.be/stops/402961", "https://data.delijn.be/stops/402963"], ["https://data.delijn.be/stops/201904", "https://data.delijn.be/stops/202513"], ["https://data.delijn.be/stops/209300", "https://data.delijn.be/stops/209381"], ["https://data.delijn.be/stops/504344", "https://data.delijn.be/stops/508012"], ["https://data.delijn.be/stops/503640", "https://data.delijn.be/stops/508634"], ["https://data.delijn.be/stops/504071", "https://data.delijn.be/stops/509271"], ["https://data.delijn.be/stops/206095", "https://data.delijn.be/stops/206148"], ["https://data.delijn.be/stops/206599", "https://data.delijn.be/stops/206847"], ["https://data.delijn.be/stops/109678", "https://data.delijn.be/stops/408449"], ["https://data.delijn.be/stops/302536", "https://data.delijn.be/stops/302537"], ["https://data.delijn.be/stops/202462", "https://data.delijn.be/stops/203461"], ["https://data.delijn.be/stops/503749", "https://data.delijn.be/stops/509735"], ["https://data.delijn.be/stops/201934", "https://data.delijn.be/stops/202950"], ["https://data.delijn.be/stops/104456", "https://data.delijn.be/stops/104481"], ["https://data.delijn.be/stops/304363", "https://data.delijn.be/stops/304365"], ["https://data.delijn.be/stops/503916", "https://data.delijn.be/stops/508916"], ["https://data.delijn.be/stops/501161", "https://data.delijn.be/stops/506154"], ["https://data.delijn.be/stops/505847", "https://data.delijn.be/stops/508009"], ["https://data.delijn.be/stops/406268", "https://data.delijn.be/stops/406445"], ["https://data.delijn.be/stops/208684", "https://data.delijn.be/stops/208685"], ["https://data.delijn.be/stops/504594", "https://data.delijn.be/stops/505302"], ["https://data.delijn.be/stops/105115", "https://data.delijn.be/stops/105250"], ["https://data.delijn.be/stops/501630", "https://data.delijn.be/stops/501663"], ["https://data.delijn.be/stops/103273", "https://data.delijn.be/stops/103287"], ["https://data.delijn.be/stops/503901", "https://data.delijn.be/stops/505443"], ["https://data.delijn.be/stops/402230", "https://data.delijn.be/stops/402231"], ["https://data.delijn.be/stops/504350", "https://data.delijn.be/stops/504354"], ["https://data.delijn.be/stops/300676", "https://data.delijn.be/stops/306886"], ["https://data.delijn.be/stops/106722", "https://data.delijn.be/stops/106723"], ["https://data.delijn.be/stops/307753", "https://data.delijn.be/stops/307754"], ["https://data.delijn.be/stops/304038", "https://data.delijn.be/stops/304073"], ["https://data.delijn.be/stops/200213", "https://data.delijn.be/stops/201214"], ["https://data.delijn.be/stops/101413", "https://data.delijn.be/stops/101431"], ["https://data.delijn.be/stops/405714", "https://data.delijn.be/stops/408972"], ["https://data.delijn.be/stops/400562", "https://data.delijn.be/stops/403829"], ["https://data.delijn.be/stops/302107", "https://data.delijn.be/stops/302144"], ["https://data.delijn.be/stops/106781", "https://data.delijn.be/stops/106783"], ["https://data.delijn.be/stops/503030", "https://data.delijn.be/stops/508029"], ["https://data.delijn.be/stops/202476", "https://data.delijn.be/stops/203475"], ["https://data.delijn.be/stops/302018", "https://data.delijn.be/stops/307285"], ["https://data.delijn.be/stops/106526", "https://data.delijn.be/stops/106528"], ["https://data.delijn.be/stops/200774", "https://data.delijn.be/stops/209237"], ["https://data.delijn.be/stops/503196", "https://data.delijn.be/stops/503199"], ["https://data.delijn.be/stops/501088", "https://data.delijn.be/stops/506088"], ["https://data.delijn.be/stops/108697", "https://data.delijn.be/stops/108700"], ["https://data.delijn.be/stops/102604", "https://data.delijn.be/stops/106117"], ["https://data.delijn.be/stops/204565", "https://data.delijn.be/stops/204566"], ["https://data.delijn.be/stops/400727", "https://data.delijn.be/stops/405172"], ["https://data.delijn.be/stops/207664", "https://data.delijn.be/stops/208505"], ["https://data.delijn.be/stops/501484", "https://data.delijn.be/stops/506683"], ["https://data.delijn.be/stops/207866", "https://data.delijn.be/stops/208750"], ["https://data.delijn.be/stops/202921", "https://data.delijn.be/stops/202922"], ["https://data.delijn.be/stops/505558", "https://data.delijn.be/stops/507260"], ["https://data.delijn.be/stops/504723", "https://data.delijn.be/stops/509484"], ["https://data.delijn.be/stops/107603", "https://data.delijn.be/stops/107654"], ["https://data.delijn.be/stops/300456", "https://data.delijn.be/stops/305002"], ["https://data.delijn.be/stops/103963", "https://data.delijn.be/stops/405018"], ["https://data.delijn.be/stops/301231", "https://data.delijn.be/stops/301236"], ["https://data.delijn.be/stops/406132", "https://data.delijn.be/stops/406133"], ["https://data.delijn.be/stops/200383", "https://data.delijn.be/stops/201367"], ["https://data.delijn.be/stops/505714", "https://data.delijn.be/stops/509037"], ["https://data.delijn.be/stops/106284", "https://data.delijn.be/stops/106303"], ["https://data.delijn.be/stops/206561", "https://data.delijn.be/stops/207542"], ["https://data.delijn.be/stops/201122", "https://data.delijn.be/stops/201123"], ["https://data.delijn.be/stops/308458", "https://data.delijn.be/stops/308467"], ["https://data.delijn.be/stops/209597", "https://data.delijn.be/stops/301413"], ["https://data.delijn.be/stops/206724", "https://data.delijn.be/stops/207998"], ["https://data.delijn.be/stops/102745", "https://data.delijn.be/stops/102775"], ["https://data.delijn.be/stops/303582", "https://data.delijn.be/stops/306398"], ["https://data.delijn.be/stops/300121", "https://data.delijn.be/stops/304999"], ["https://data.delijn.be/stops/407281", "https://data.delijn.be/stops/407781"], ["https://data.delijn.be/stops/200755", "https://data.delijn.be/stops/208307"], ["https://data.delijn.be/stops/304361", "https://data.delijn.be/stops/307368"], ["https://data.delijn.be/stops/205113", "https://data.delijn.be/stops/205690"], ["https://data.delijn.be/stops/105483", "https://data.delijn.be/stops/108802"], ["https://data.delijn.be/stops/300051", "https://data.delijn.be/stops/307729"], ["https://data.delijn.be/stops/406748", "https://data.delijn.be/stops/409463"], ["https://data.delijn.be/stops/102014", "https://data.delijn.be/stops/104459"], ["https://data.delijn.be/stops/304280", "https://data.delijn.be/stops/304281"], ["https://data.delijn.be/stops/304102", "https://data.delijn.be/stops/306000"], ["https://data.delijn.be/stops/200805", "https://data.delijn.be/stops/202054"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/501181"], ["https://data.delijn.be/stops/409099", "https://data.delijn.be/stops/409157"], ["https://data.delijn.be/stops/202022", "https://data.delijn.be/stops/202349"], ["https://data.delijn.be/stops/300826", "https://data.delijn.be/stops/300855"], ["https://data.delijn.be/stops/305028", "https://data.delijn.be/stops/308034"], ["https://data.delijn.be/stops/408573", "https://data.delijn.be/stops/408574"], ["https://data.delijn.be/stops/304208", "https://data.delijn.be/stops/308981"], ["https://data.delijn.be/stops/305532", "https://data.delijn.be/stops/305583"], ["https://data.delijn.be/stops/202049", "https://data.delijn.be/stops/203436"], ["https://data.delijn.be/stops/206088", "https://data.delijn.be/stops/207088"], ["https://data.delijn.be/stops/400419", "https://data.delijn.be/stops/405133"], ["https://data.delijn.be/stops/307616", "https://data.delijn.be/stops/307620"], ["https://data.delijn.be/stops/106427", "https://data.delijn.be/stops/106431"], ["https://data.delijn.be/stops/206770", "https://data.delijn.be/stops/209541"], ["https://data.delijn.be/stops/208660", "https://data.delijn.be/stops/209152"], ["https://data.delijn.be/stops/506447", "https://data.delijn.be/stops/506451"], ["https://data.delijn.be/stops/501266", "https://data.delijn.be/stops/501334"], ["https://data.delijn.be/stops/201538", "https://data.delijn.be/stops/211049"], ["https://data.delijn.be/stops/201217", "https://data.delijn.be/stops/201302"], ["https://data.delijn.be/stops/101341", "https://data.delijn.be/stops/108104"], ["https://data.delijn.be/stops/103219", "https://data.delijn.be/stops/107367"], ["https://data.delijn.be/stops/208243", "https://data.delijn.be/stops/209243"], ["https://data.delijn.be/stops/402283", "https://data.delijn.be/stops/405013"], ["https://data.delijn.be/stops/105796", "https://data.delijn.be/stops/105797"], ["https://data.delijn.be/stops/403148", "https://data.delijn.be/stops/403152"], ["https://data.delijn.be/stops/302002", "https://data.delijn.be/stops/302019"], ["https://data.delijn.be/stops/208631", "https://data.delijn.be/stops/209045"], ["https://data.delijn.be/stops/301484", "https://data.delijn.be/stops/301494"], ["https://data.delijn.be/stops/304902", "https://data.delijn.be/stops/306178"], ["https://data.delijn.be/stops/107047", "https://data.delijn.be/stops/107048"], ["https://data.delijn.be/stops/203385", "https://data.delijn.be/stops/203386"], ["https://data.delijn.be/stops/205423", "https://data.delijn.be/stops/205424"], ["https://data.delijn.be/stops/401650", "https://data.delijn.be/stops/405390"], ["https://data.delijn.be/stops/305829", "https://data.delijn.be/stops/305962"], ["https://data.delijn.be/stops/401482", "https://data.delijn.be/stops/401539"], ["https://data.delijn.be/stops/103597", "https://data.delijn.be/stops/109399"], ["https://data.delijn.be/stops/401784", "https://data.delijn.be/stops/401870"], ["https://data.delijn.be/stops/204208", "https://data.delijn.be/stops/215011"], ["https://data.delijn.be/stops/206062", "https://data.delijn.be/stops/206500"], ["https://data.delijn.be/stops/202826", "https://data.delijn.be/stops/203827"], ["https://data.delijn.be/stops/208173", "https://data.delijn.be/stops/209173"], ["https://data.delijn.be/stops/501087", "https://data.delijn.be/stops/501100"], ["https://data.delijn.be/stops/306868", "https://data.delijn.be/stops/307426"], ["https://data.delijn.be/stops/206643", "https://data.delijn.be/stops/209686"], ["https://data.delijn.be/stops/408821", "https://data.delijn.be/stops/408871"], ["https://data.delijn.be/stops/407203", "https://data.delijn.be/stops/407206"], ["https://data.delijn.be/stops/502523", "https://data.delijn.be/stops/502525"], ["https://data.delijn.be/stops/109168", "https://data.delijn.be/stops/109170"], ["https://data.delijn.be/stops/208122", "https://data.delijn.be/stops/208289"], ["https://data.delijn.be/stops/202959", "https://data.delijn.be/stops/203958"], ["https://data.delijn.be/stops/302869", "https://data.delijn.be/stops/303950"], ["https://data.delijn.be/stops/501090", "https://data.delijn.be/stops/505244"], ["https://data.delijn.be/stops/204014", "https://data.delijn.be/stops/205014"], ["https://data.delijn.be/stops/301046", "https://data.delijn.be/stops/301054"], ["https://data.delijn.be/stops/308229", "https://data.delijn.be/stops/308235"], ["https://data.delijn.be/stops/303190", "https://data.delijn.be/stops/303204"], ["https://data.delijn.be/stops/200064", "https://data.delijn.be/stops/200267"], ["https://data.delijn.be/stops/203831", "https://data.delijn.be/stops/211065"], ["https://data.delijn.be/stops/203079", "https://data.delijn.be/stops/203607"], ["https://data.delijn.be/stops/303826", "https://data.delijn.be/stops/303827"], ["https://data.delijn.be/stops/302012", "https://data.delijn.be/stops/302013"], ["https://data.delijn.be/stops/108122", "https://data.delijn.be/stops/108123"], ["https://data.delijn.be/stops/405716", "https://data.delijn.be/stops/405718"], ["https://data.delijn.be/stops/200581", "https://data.delijn.be/stops/201733"], ["https://data.delijn.be/stops/504406", "https://data.delijn.be/stops/509406"], ["https://data.delijn.be/stops/101898", "https://data.delijn.be/stops/107802"], ["https://data.delijn.be/stops/105206", "https://data.delijn.be/stops/108874"], ["https://data.delijn.be/stops/402735", "https://data.delijn.be/stops/308175"], ["https://data.delijn.be/stops/408576", "https://data.delijn.be/stops/408636"], ["https://data.delijn.be/stops/504977", "https://data.delijn.be/stops/505107"], ["https://data.delijn.be/stops/206433", "https://data.delijn.be/stops/207432"], ["https://data.delijn.be/stops/502806", "https://data.delijn.be/stops/507511"], ["https://data.delijn.be/stops/503539", "https://data.delijn.be/stops/508559"], ["https://data.delijn.be/stops/104454", "https://data.delijn.be/stops/104471"], ["https://data.delijn.be/stops/203834", "https://data.delijn.be/stops/203835"], ["https://data.delijn.be/stops/409574", "https://data.delijn.be/stops/410337"], ["https://data.delijn.be/stops/106397", "https://data.delijn.be/stops/107275"], ["https://data.delijn.be/stops/106590", "https://data.delijn.be/stops/107277"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/509932"], ["https://data.delijn.be/stops/209633", "https://data.delijn.be/stops/209634"], ["https://data.delijn.be/stops/201372", "https://data.delijn.be/stops/201373"], ["https://data.delijn.be/stops/108100", "https://data.delijn.be/stops/108103"], ["https://data.delijn.be/stops/103572", "https://data.delijn.be/stops/107131"], ["https://data.delijn.be/stops/403022", "https://data.delijn.be/stops/409306"], ["https://data.delijn.be/stops/107796", "https://data.delijn.be/stops/107824"], ["https://data.delijn.be/stops/105749", "https://data.delijn.be/stops/109821"], ["https://data.delijn.be/stops/504299", "https://data.delijn.be/stops/509299"], ["https://data.delijn.be/stops/104411", "https://data.delijn.be/stops/204489"], ["https://data.delijn.be/stops/503608", "https://data.delijn.be/stops/508850"], ["https://data.delijn.be/stops/202171", "https://data.delijn.be/stops/203172"], ["https://data.delijn.be/stops/208551", "https://data.delijn.be/stops/209551"], ["https://data.delijn.be/stops/408035", "https://data.delijn.be/stops/408057"], ["https://data.delijn.be/stops/505213", "https://data.delijn.be/stops/505916"], ["https://data.delijn.be/stops/205933", "https://data.delijn.be/stops/211076"], ["https://data.delijn.be/stops/105531", "https://data.delijn.be/stops/105537"], ["https://data.delijn.be/stops/208588", "https://data.delijn.be/stops/300306"], ["https://data.delijn.be/stops/202535", "https://data.delijn.be/stops/205243"], ["https://data.delijn.be/stops/509109", "https://data.delijn.be/stops/509446"], ["https://data.delijn.be/stops/206627", "https://data.delijn.be/stops/207626"], ["https://data.delijn.be/stops/301522", "https://data.delijn.be/stops/305737"], ["https://data.delijn.be/stops/106278", "https://data.delijn.be/stops/106279"], ["https://data.delijn.be/stops/200891", "https://data.delijn.be/stops/507275"], ["https://data.delijn.be/stops/202834", "https://data.delijn.be/stops/208656"], ["https://data.delijn.be/stops/307222", "https://data.delijn.be/stops/307223"], ["https://data.delijn.be/stops/205002", "https://data.delijn.be/stops/205213"], ["https://data.delijn.be/stops/209316", "https://data.delijn.be/stops/209795"], ["https://data.delijn.be/stops/402504", "https://data.delijn.be/stops/402571"], ["https://data.delijn.be/stops/303748", "https://data.delijn.be/stops/303749"], ["https://data.delijn.be/stops/501215", "https://data.delijn.be/stops/506216"], ["https://data.delijn.be/stops/104020", "https://data.delijn.be/stops/104640"], ["https://data.delijn.be/stops/405919", "https://data.delijn.be/stops/405992"], ["https://data.delijn.be/stops/408204", "https://data.delijn.be/stops/408225"], ["https://data.delijn.be/stops/401853", "https://data.delijn.be/stops/406349"], ["https://data.delijn.be/stops/306633", "https://data.delijn.be/stops/307234"], ["https://data.delijn.be/stops/303820", "https://data.delijn.be/stops/303845"], ["https://data.delijn.be/stops/205463", "https://data.delijn.be/stops/214017"], ["https://data.delijn.be/stops/208493", "https://data.delijn.be/stops/219025"], ["https://data.delijn.be/stops/405336", "https://data.delijn.be/stops/405346"], ["https://data.delijn.be/stops/201879", "https://data.delijn.be/stops/210035"], ["https://data.delijn.be/stops/504545", "https://data.delijn.be/stops/504553"], ["https://data.delijn.be/stops/504786", "https://data.delijn.be/stops/504790"], ["https://data.delijn.be/stops/107851", "https://data.delijn.be/stops/107853"], ["https://data.delijn.be/stops/502210", "https://data.delijn.be/stops/507210"], ["https://data.delijn.be/stops/109007", "https://data.delijn.be/stops/109008"], ["https://data.delijn.be/stops/507682", "https://data.delijn.be/stops/509829"], ["https://data.delijn.be/stops/200975", "https://data.delijn.be/stops/206759"], ["https://data.delijn.be/stops/307300", "https://data.delijn.be/stops/307302"], ["https://data.delijn.be/stops/208084", "https://data.delijn.be/stops/209084"], ["https://data.delijn.be/stops/401486", "https://data.delijn.be/stops/401537"], ["https://data.delijn.be/stops/409774", "https://data.delijn.be/stops/410035"], ["https://data.delijn.be/stops/500559", "https://data.delijn.be/stops/501037"], ["https://data.delijn.be/stops/206895", "https://data.delijn.be/stops/207894"], ["https://data.delijn.be/stops/201165", "https://data.delijn.be/stops/203170"], ["https://data.delijn.be/stops/305399", "https://data.delijn.be/stops/305402"], ["https://data.delijn.be/stops/208019", "https://data.delijn.be/stops/209029"], ["https://data.delijn.be/stops/502644", "https://data.delijn.be/stops/507242"], ["https://data.delijn.be/stops/404436", "https://data.delijn.be/stops/404437"], ["https://data.delijn.be/stops/405878", "https://data.delijn.be/stops/409748"], ["https://data.delijn.be/stops/201744", "https://data.delijn.be/stops/203781"], ["https://data.delijn.be/stops/409504", "https://data.delijn.be/stops/409506"], ["https://data.delijn.be/stops/403339", "https://data.delijn.be/stops/403340"], ["https://data.delijn.be/stops/501594", "https://data.delijn.be/stops/504682"], ["https://data.delijn.be/stops/200943", "https://data.delijn.be/stops/202696"], ["https://data.delijn.be/stops/109719", "https://data.delijn.be/stops/400441"], ["https://data.delijn.be/stops/207944", "https://data.delijn.be/stops/208554"], ["https://data.delijn.be/stops/503530", "https://data.delijn.be/stops/504762"], ["https://data.delijn.be/stops/205023", "https://data.delijn.be/stops/205024"], ["https://data.delijn.be/stops/300185", "https://data.delijn.be/stops/300223"], ["https://data.delijn.be/stops/107143", "https://data.delijn.be/stops/108923"], ["https://data.delijn.be/stops/400561", "https://data.delijn.be/stops/407790"], ["https://data.delijn.be/stops/401036", "https://data.delijn.be/stops/401038"], ["https://data.delijn.be/stops/208432", "https://data.delijn.be/stops/209432"], ["https://data.delijn.be/stops/505655", "https://data.delijn.be/stops/505658"], ["https://data.delijn.be/stops/305008", "https://data.delijn.be/stops/305009"], ["https://data.delijn.be/stops/108149", "https://data.delijn.be/stops/108151"], ["https://data.delijn.be/stops/300015", "https://data.delijn.be/stops/301984"], ["https://data.delijn.be/stops/405308", "https://data.delijn.be/stops/406711"], ["https://data.delijn.be/stops/303211", "https://data.delijn.be/stops/306282"], ["https://data.delijn.be/stops/403742", "https://data.delijn.be/stops/403754"], ["https://data.delijn.be/stops/407584", "https://data.delijn.be/stops/407586"], ["https://data.delijn.be/stops/506174", "https://data.delijn.be/stops/506782"], ["https://data.delijn.be/stops/504200", "https://data.delijn.be/stops/504257"], ["https://data.delijn.be/stops/108367", "https://data.delijn.be/stops/304920"], ["https://data.delijn.be/stops/506029", "https://data.delijn.be/stops/506041"], ["https://data.delijn.be/stops/405693", "https://data.delijn.be/stops/405910"], ["https://data.delijn.be/stops/204111", "https://data.delijn.be/stops/204113"], ["https://data.delijn.be/stops/503402", "https://data.delijn.be/stops/507818"], ["https://data.delijn.be/stops/101537", "https://data.delijn.be/stops/109074"], ["https://data.delijn.be/stops/504167", "https://data.delijn.be/stops/505988"], ["https://data.delijn.be/stops/103234", "https://data.delijn.be/stops/109437"], ["https://data.delijn.be/stops/403784", "https://data.delijn.be/stops/403786"], ["https://data.delijn.be/stops/400761", "https://data.delijn.be/stops/400861"], ["https://data.delijn.be/stops/206817", "https://data.delijn.be/stops/207817"], ["https://data.delijn.be/stops/504281", "https://data.delijn.be/stops/509289"], ["https://data.delijn.be/stops/405922", "https://data.delijn.be/stops/405978"], ["https://data.delijn.be/stops/200174", "https://data.delijn.be/stops/201174"], ["https://data.delijn.be/stops/502572", "https://data.delijn.be/stops/505700"], ["https://data.delijn.be/stops/101596", "https://data.delijn.be/stops/106591"], ["https://data.delijn.be/stops/504263", "https://data.delijn.be/stops/504707"], ["https://data.delijn.be/stops/206075", "https://data.delijn.be/stops/207871"], ["https://data.delijn.be/stops/206670", "https://data.delijn.be/stops/209343"], ["https://data.delijn.be/stops/200619", "https://data.delijn.be/stops/201619"], ["https://data.delijn.be/stops/207169", "https://data.delijn.be/stops/303842"], ["https://data.delijn.be/stops/106626", "https://data.delijn.be/stops/106628"], ["https://data.delijn.be/stops/107923", "https://data.delijn.be/stops/308798"], ["https://data.delijn.be/stops/206777", "https://data.delijn.be/stops/209480"], ["https://data.delijn.be/stops/401422", "https://data.delijn.be/stops/401627"], ["https://data.delijn.be/stops/503526", "https://data.delijn.be/stops/504767"], ["https://data.delijn.be/stops/202242", "https://data.delijn.be/stops/203242"], ["https://data.delijn.be/stops/406171", "https://data.delijn.be/stops/406181"], ["https://data.delijn.be/stops/503233", "https://data.delijn.be/stops/503248"], ["https://data.delijn.be/stops/308745", "https://data.delijn.be/stops/308746"], ["https://data.delijn.be/stops/407750", "https://data.delijn.be/stops/409795"], ["https://data.delijn.be/stops/302081", "https://data.delijn.be/stops/302088"], ["https://data.delijn.be/stops/404446", "https://data.delijn.be/stops/404495"], ["https://data.delijn.be/stops/300391", "https://data.delijn.be/stops/307279"], ["https://data.delijn.be/stops/209677", "https://data.delijn.be/stops/209793"], ["https://data.delijn.be/stops/209180", "https://data.delijn.be/stops/209191"], ["https://data.delijn.be/stops/303354", "https://data.delijn.be/stops/303370"], ["https://data.delijn.be/stops/204334", "https://data.delijn.be/stops/205041"], ["https://data.delijn.be/stops/501200", "https://data.delijn.be/stops/501254"], ["https://data.delijn.be/stops/300126", "https://data.delijn.be/stops/304381"], ["https://data.delijn.be/stops/300844", "https://data.delijn.be/stops/306719"], ["https://data.delijn.be/stops/108334", "https://data.delijn.be/stops/109303"], ["https://data.delijn.be/stops/201495", "https://data.delijn.be/stops/211124"], ["https://data.delijn.be/stops/107852", "https://data.delijn.be/stops/107854"], ["https://data.delijn.be/stops/207958", "https://data.delijn.be/stops/308567"], ["https://data.delijn.be/stops/404314", "https://data.delijn.be/stops/404369"], ["https://data.delijn.be/stops/102411", "https://data.delijn.be/stops/104391"], ["https://data.delijn.be/stops/204530", "https://data.delijn.be/stops/205761"], ["https://data.delijn.be/stops/200933", "https://data.delijn.be/stops/203264"], ["https://data.delijn.be/stops/108698", "https://data.delijn.be/stops/108850"], ["https://data.delijn.be/stops/502719", "https://data.delijn.be/stops/502731"], ["https://data.delijn.be/stops/208590", "https://data.delijn.be/stops/209591"], ["https://data.delijn.be/stops/206150", "https://data.delijn.be/stops/206151"], ["https://data.delijn.be/stops/401980", "https://data.delijn.be/stops/403884"], ["https://data.delijn.be/stops/207128", "https://data.delijn.be/stops/207130"], ["https://data.delijn.be/stops/202456", "https://data.delijn.be/stops/203487"], ["https://data.delijn.be/stops/202451", "https://data.delijn.be/stops/210095"], ["https://data.delijn.be/stops/204309", "https://data.delijn.be/stops/204338"], ["https://data.delijn.be/stops/300807", "https://data.delijn.be/stops/307571"], ["https://data.delijn.be/stops/504274", "https://data.delijn.be/stops/509270"], ["https://data.delijn.be/stops/402409", "https://data.delijn.be/stops/404642"], ["https://data.delijn.be/stops/404665", "https://data.delijn.be/stops/404687"], ["https://data.delijn.be/stops/503497", "https://data.delijn.be/stops/508872"], ["https://data.delijn.be/stops/304208", "https://data.delijn.be/stops/305349"], ["https://data.delijn.be/stops/302109", "https://data.delijn.be/stops/302124"], ["https://data.delijn.be/stops/304631", "https://data.delijn.be/stops/308756"], ["https://data.delijn.be/stops/407450", "https://data.delijn.be/stops/407454"], ["https://data.delijn.be/stops/218030", "https://data.delijn.be/stops/219028"], ["https://data.delijn.be/stops/202450", "https://data.delijn.be/stops/209987"], ["https://data.delijn.be/stops/202402", "https://data.delijn.be/stops/203401"], ["https://data.delijn.be/stops/302956", "https://data.delijn.be/stops/302985"], ["https://data.delijn.be/stops/305820", "https://data.delijn.be/stops/305860"], ["https://data.delijn.be/stops/205251", "https://data.delijn.be/stops/205732"], ["https://data.delijn.be/stops/402393", "https://data.delijn.be/stops/402394"], ["https://data.delijn.be/stops/508782", "https://data.delijn.be/stops/508784"], ["https://data.delijn.be/stops/200618", "https://data.delijn.be/stops/201618"], ["https://data.delijn.be/stops/204373", "https://data.delijn.be/stops/205383"], ["https://data.delijn.be/stops/409126", "https://data.delijn.be/stops/409522"], ["https://data.delijn.be/stops/502501", "https://data.delijn.be/stops/502811"], ["https://data.delijn.be/stops/401489", "https://data.delijn.be/stops/410291"], ["https://data.delijn.be/stops/104002", "https://data.delijn.be/stops/104006"], ["https://data.delijn.be/stops/200552", "https://data.delijn.be/stops/208849"], ["https://data.delijn.be/stops/405147", "https://data.delijn.be/stops/405204"], ["https://data.delijn.be/stops/301825", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/506776", "https://data.delijn.be/stops/506777"], ["https://data.delijn.be/stops/301330", "https://data.delijn.be/stops/301331"], ["https://data.delijn.be/stops/208586", "https://data.delijn.be/stops/209585"], ["https://data.delijn.be/stops/307558", "https://data.delijn.be/stops/307761"], ["https://data.delijn.be/stops/304249", "https://data.delijn.be/stops/304250"], ["https://data.delijn.be/stops/200966", "https://data.delijn.be/stops/208952"], ["https://data.delijn.be/stops/105117", "https://data.delijn.be/stops/105153"], ["https://data.delijn.be/stops/303049", "https://data.delijn.be/stops/304928"], ["https://data.delijn.be/stops/508963", "https://data.delijn.be/stops/508969"], ["https://data.delijn.be/stops/409710", "https://data.delijn.be/stops/409718"], ["https://data.delijn.be/stops/503869", "https://data.delijn.be/stops/508869"], ["https://data.delijn.be/stops/503870", "https://data.delijn.be/stops/508872"], ["https://data.delijn.be/stops/402442", "https://data.delijn.be/stops/402444"], ["https://data.delijn.be/stops/207686", "https://data.delijn.be/stops/207749"], ["https://data.delijn.be/stops/403275", "https://data.delijn.be/stops/403384"], ["https://data.delijn.be/stops/304247", "https://data.delijn.be/stops/306671"], ["https://data.delijn.be/stops/300624", "https://data.delijn.be/stops/300730"], ["https://data.delijn.be/stops/206095", "https://data.delijn.be/stops/206723"], ["https://data.delijn.be/stops/504667", "https://data.delijn.be/stops/504668"], ["https://data.delijn.be/stops/407022", "https://data.delijn.be/stops/407024"], ["https://data.delijn.be/stops/202526", "https://data.delijn.be/stops/203526"], ["https://data.delijn.be/stops/308500", "https://data.delijn.be/stops/308539"], ["https://data.delijn.be/stops/204782", "https://data.delijn.be/stops/205474"], ["https://data.delijn.be/stops/505428", "https://data.delijn.be/stops/505429"], ["https://data.delijn.be/stops/103752", "https://data.delijn.be/stops/103753"], ["https://data.delijn.be/stops/204136", "https://data.delijn.be/stops/205135"], ["https://data.delijn.be/stops/103989", "https://data.delijn.be/stops/109096"], ["https://data.delijn.be/stops/305529", "https://data.delijn.be/stops/308684"], ["https://data.delijn.be/stops/305302", "https://data.delijn.be/stops/308642"], ["https://data.delijn.be/stops/206277", "https://data.delijn.be/stops/207455"], ["https://data.delijn.be/stops/501153", "https://data.delijn.be/stops/501166"], ["https://data.delijn.be/stops/300817", "https://data.delijn.be/stops/303832"], ["https://data.delijn.be/stops/102074", "https://data.delijn.be/stops/107641"], ["https://data.delijn.be/stops/206587", "https://data.delijn.be/stops/206842"], ["https://data.delijn.be/stops/106492", "https://data.delijn.be/stops/109256"], ["https://data.delijn.be/stops/206249", "https://data.delijn.be/stops/207248"], ["https://data.delijn.be/stops/301920", "https://data.delijn.be/stops/301922"], ["https://data.delijn.be/stops/503818", "https://data.delijn.be/stops/508436"], ["https://data.delijn.be/stops/400768", "https://data.delijn.be/stops/410087"], ["https://data.delijn.be/stops/504146", "https://data.delijn.be/stops/509141"], ["https://data.delijn.be/stops/202395", "https://data.delijn.be/stops/203391"], ["https://data.delijn.be/stops/400222", "https://data.delijn.be/stops/400223"], ["https://data.delijn.be/stops/305748", "https://data.delijn.be/stops/305749"], ["https://data.delijn.be/stops/108084", "https://data.delijn.be/stops/108447"], ["https://data.delijn.be/stops/200428", "https://data.delijn.be/stops/201428"], ["https://data.delijn.be/stops/507931", "https://data.delijn.be/stops/507932"], ["https://data.delijn.be/stops/404714", "https://data.delijn.be/stops/404766"], ["https://data.delijn.be/stops/200968", "https://data.delijn.be/stops/206789"], ["https://data.delijn.be/stops/301366", "https://data.delijn.be/stops/301371"], ["https://data.delijn.be/stops/400906", "https://data.delijn.be/stops/400949"], ["https://data.delijn.be/stops/204740", "https://data.delijn.be/stops/205740"], ["https://data.delijn.be/stops/406162", "https://data.delijn.be/stops/408472"], ["https://data.delijn.be/stops/206964", "https://data.delijn.be/stops/217003"], ["https://data.delijn.be/stops/206913", "https://data.delijn.be/stops/207016"], ["https://data.delijn.be/stops/400639", "https://data.delijn.be/stops/400921"], ["https://data.delijn.be/stops/410061", "https://data.delijn.be/stops/410062"], ["https://data.delijn.be/stops/502374", "https://data.delijn.be/stops/505689"], ["https://data.delijn.be/stops/208845", "https://data.delijn.be/stops/208849"], ["https://data.delijn.be/stops/504143", "https://data.delijn.be/stops/505442"], ["https://data.delijn.be/stops/105203", "https://data.delijn.be/stops/105204"], ["https://data.delijn.be/stops/405118", "https://data.delijn.be/stops/405862"], ["https://data.delijn.be/stops/109885", "https://data.delijn.be/stops/109886"], ["https://data.delijn.be/stops/102191", "https://data.delijn.be/stops/104261"], ["https://data.delijn.be/stops/508837", "https://data.delijn.be/stops/508838"], ["https://data.delijn.be/stops/501361", "https://data.delijn.be/stops/505358"], ["https://data.delijn.be/stops/407299", "https://data.delijn.be/stops/303646"], ["https://data.delijn.be/stops/503524", "https://data.delijn.be/stops/508524"], ["https://data.delijn.be/stops/501427", "https://data.delijn.be/stops/506678"], ["https://data.delijn.be/stops/104507", "https://data.delijn.be/stops/107926"], ["https://data.delijn.be/stops/103125", "https://data.delijn.be/stops/105020"], ["https://data.delijn.be/stops/107284", "https://data.delijn.be/stops/107286"], ["https://data.delijn.be/stops/408903", "https://data.delijn.be/stops/408907"], ["https://data.delijn.be/stops/408016", "https://data.delijn.be/stops/408017"], ["https://data.delijn.be/stops/401766", "https://data.delijn.be/stops/406346"], ["https://data.delijn.be/stops/400090", "https://data.delijn.be/stops/400153"], ["https://data.delijn.be/stops/103619", "https://data.delijn.be/stops/109214"], ["https://data.delijn.be/stops/405042", "https://data.delijn.be/stops/405804"], ["https://data.delijn.be/stops/104288", "https://data.delijn.be/stops/109748"], ["https://data.delijn.be/stops/202096", "https://data.delijn.be/stops/203097"], ["https://data.delijn.be/stops/208536", "https://data.delijn.be/stops/209537"], ["https://data.delijn.be/stops/501517", "https://data.delijn.be/stops/506318"], ["https://data.delijn.be/stops/503251", "https://data.delijn.be/stops/508246"], ["https://data.delijn.be/stops/408640", "https://data.delijn.be/stops/408664"], ["https://data.delijn.be/stops/105234", "https://data.delijn.be/stops/105268"], ["https://data.delijn.be/stops/108063", "https://data.delijn.be/stops/108066"], ["https://data.delijn.be/stops/507598", "https://data.delijn.be/stops/507601"], ["https://data.delijn.be/stops/101315", "https://data.delijn.be/stops/103118"], ["https://data.delijn.be/stops/400619", "https://data.delijn.be/stops/400624"], ["https://data.delijn.be/stops/402418", "https://data.delijn.be/stops/402458"], ["https://data.delijn.be/stops/204092", "https://data.delijn.be/stops/204100"], ["https://data.delijn.be/stops/101925", "https://data.delijn.be/stops/104005"], ["https://data.delijn.be/stops/302511", "https://data.delijn.be/stops/305873"], ["https://data.delijn.be/stops/208556", "https://data.delijn.be/stops/208612"], ["https://data.delijn.be/stops/305768", "https://data.delijn.be/stops/305769"], ["https://data.delijn.be/stops/207872", "https://data.delijn.be/stops/208366"], ["https://data.delijn.be/stops/406795", "https://data.delijn.be/stops/406796"], ["https://data.delijn.be/stops/104993", "https://data.delijn.be/stops/400391"], ["https://data.delijn.be/stops/106207", "https://data.delijn.be/stops/106213"], ["https://data.delijn.be/stops/207015", "https://data.delijn.be/stops/207024"], ["https://data.delijn.be/stops/305839", "https://data.delijn.be/stops/305841"], ["https://data.delijn.be/stops/404408", "https://data.delijn.be/stops/404409"], ["https://data.delijn.be/stops/209599", "https://data.delijn.be/stops/307600"], ["https://data.delijn.be/stops/201162", "https://data.delijn.be/stops/201527"], ["https://data.delijn.be/stops/105597", "https://data.delijn.be/stops/106360"], ["https://data.delijn.be/stops/105699", "https://data.delijn.be/stops/106074"], ["https://data.delijn.be/stops/200117", "https://data.delijn.be/stops/200871"], ["https://data.delijn.be/stops/301696", "https://data.delijn.be/stops/301725"], ["https://data.delijn.be/stops/406289", "https://data.delijn.be/stops/406423"], ["https://data.delijn.be/stops/202776", "https://data.delijn.be/stops/202816"], ["https://data.delijn.be/stops/304109", "https://data.delijn.be/stops/307996"], ["https://data.delijn.be/stops/300811", "https://data.delijn.be/stops/307233"], ["https://data.delijn.be/stops/407223", "https://data.delijn.be/stops/407442"], ["https://data.delijn.be/stops/207768", "https://data.delijn.be/stops/207780"], ["https://data.delijn.be/stops/104691", "https://data.delijn.be/stops/107356"], ["https://data.delijn.be/stops/407969", "https://data.delijn.be/stops/408424"], ["https://data.delijn.be/stops/402739", "https://data.delijn.be/stops/402945"], ["https://data.delijn.be/stops/404538", "https://data.delijn.be/stops/404730"], ["https://data.delijn.be/stops/505019", "https://data.delijn.be/stops/507665"], ["https://data.delijn.be/stops/504971", "https://data.delijn.be/stops/505578"], ["https://data.delijn.be/stops/504817", "https://data.delijn.be/stops/508017"], ["https://data.delijn.be/stops/302968", "https://data.delijn.be/stops/304186"], ["https://data.delijn.be/stops/503906", "https://data.delijn.be/stops/505103"], ["https://data.delijn.be/stops/305068", "https://data.delijn.be/stops/305069"], ["https://data.delijn.be/stops/103230", "https://data.delijn.be/stops/108575"], ["https://data.delijn.be/stops/108875", "https://data.delijn.be/stops/109140"], ["https://data.delijn.be/stops/101620", "https://data.delijn.be/stops/102908"], ["https://data.delijn.be/stops/406998", "https://data.delijn.be/stops/407280"], ["https://data.delijn.be/stops/504529", "https://data.delijn.be/stops/509528"], ["https://data.delijn.be/stops/204977", "https://data.delijn.be/stops/208246"], ["https://data.delijn.be/stops/208415", "https://data.delijn.be/stops/208416"], ["https://data.delijn.be/stops/106149", "https://data.delijn.be/stops/106440"], ["https://data.delijn.be/stops/406188", "https://data.delijn.be/stops/410101"], ["https://data.delijn.be/stops/106512", "https://data.delijn.be/stops/106514"], ["https://data.delijn.be/stops/302440", "https://data.delijn.be/stops/302441"], ["https://data.delijn.be/stops/108942", "https://data.delijn.be/stops/109224"], ["https://data.delijn.be/stops/105727", "https://data.delijn.be/stops/105728"], ["https://data.delijn.be/stops/402390", "https://data.delijn.be/stops/410041"], ["https://data.delijn.be/stops/202952", "https://data.delijn.be/stops/203482"], ["https://data.delijn.be/stops/503372", "https://data.delijn.be/stops/508382"], ["https://data.delijn.be/stops/403947", "https://data.delijn.be/stops/308746"], ["https://data.delijn.be/stops/109139", "https://data.delijn.be/stops/109157"], ["https://data.delijn.be/stops/200019", "https://data.delijn.be/stops/203355"], ["https://data.delijn.be/stops/503109", "https://data.delijn.be/stops/503155"], ["https://data.delijn.be/stops/101492", "https://data.delijn.be/stops/102256"], ["https://data.delijn.be/stops/200344", "https://data.delijn.be/stops/201377"], ["https://data.delijn.be/stops/308108", "https://data.delijn.be/stops/308109"], ["https://data.delijn.be/stops/107002", "https://data.delijn.be/stops/107003"], ["https://data.delijn.be/stops/500007", "https://data.delijn.be/stops/508065"], ["https://data.delijn.be/stops/105431", "https://data.delijn.be/stops/109842"], ["https://data.delijn.be/stops/104239", "https://data.delijn.be/stops/106878"], ["https://data.delijn.be/stops/503775", "https://data.delijn.be/stops/508775"], ["https://data.delijn.be/stops/101367", "https://data.delijn.be/stops/106417"], ["https://data.delijn.be/stops/202042", "https://data.delijn.be/stops/202686"], ["https://data.delijn.be/stops/206721", "https://data.delijn.be/stops/206729"], ["https://data.delijn.be/stops/109566", "https://data.delijn.be/stops/109567"], ["https://data.delijn.be/stops/303269", "https://data.delijn.be/stops/303344"], ["https://data.delijn.be/stops/504396", "https://data.delijn.be/stops/504661"], ["https://data.delijn.be/stops/109167", "https://data.delijn.be/stops/109235"], ["https://data.delijn.be/stops/201377", "https://data.delijn.be/stops/201381"], ["https://data.delijn.be/stops/201648", "https://data.delijn.be/stops/203879"], ["https://data.delijn.be/stops/404638", "https://data.delijn.be/stops/406957"], ["https://data.delijn.be/stops/200696", "https://data.delijn.be/stops/210081"], ["https://data.delijn.be/stops/502111", "https://data.delijn.be/stops/507111"], ["https://data.delijn.be/stops/503535", "https://data.delijn.be/stops/504970"], ["https://data.delijn.be/stops/301771", "https://data.delijn.be/stops/302527"], ["https://data.delijn.be/stops/406910", "https://data.delijn.be/stops/409450"], ["https://data.delijn.be/stops/308420", "https://data.delijn.be/stops/308421"], ["https://data.delijn.be/stops/404956", "https://data.delijn.be/stops/404965"], ["https://data.delijn.be/stops/301777", "https://data.delijn.be/stops/301785"], ["https://data.delijn.be/stops/206266", "https://data.delijn.be/stops/207526"], ["https://data.delijn.be/stops/201326", "https://data.delijn.be/stops/208992"], ["https://data.delijn.be/stops/200432", "https://data.delijn.be/stops/201432"], ["https://data.delijn.be/stops/505257", "https://data.delijn.be/stops/508293"], ["https://data.delijn.be/stops/109746", "https://data.delijn.be/stops/109748"], ["https://data.delijn.be/stops/204735", "https://data.delijn.be/stops/205735"], ["https://data.delijn.be/stops/503278", "https://data.delijn.be/stops/508285"], ["https://data.delijn.be/stops/302210", "https://data.delijn.be/stops/302237"], ["https://data.delijn.be/stops/506300", "https://data.delijn.be/stops/506332"], ["https://data.delijn.be/stops/503519", "https://data.delijn.be/stops/504790"], ["https://data.delijn.be/stops/407452", "https://data.delijn.be/stops/407456"], ["https://data.delijn.be/stops/306059", "https://data.delijn.be/stops/306060"], ["https://data.delijn.be/stops/105461", "https://data.delijn.be/stops/105462"], ["https://data.delijn.be/stops/203964", "https://data.delijn.be/stops/204770"], ["https://data.delijn.be/stops/408840", "https://data.delijn.be/stops/408847"], ["https://data.delijn.be/stops/207667", "https://data.delijn.be/stops/209061"], ["https://data.delijn.be/stops/103530", "https://data.delijn.be/stops/105370"], ["https://data.delijn.be/stops/206428", "https://data.delijn.be/stops/209537"], ["https://data.delijn.be/stops/102310", "https://data.delijn.be/stops/102384"], ["https://data.delijn.be/stops/303438", "https://data.delijn.be/stops/303447"], ["https://data.delijn.be/stops/502704", "https://data.delijn.be/stops/505348"], ["https://data.delijn.be/stops/201692", "https://data.delijn.be/stops/202367"], ["https://data.delijn.be/stops/508499", "https://data.delijn.be/stops/508681"], ["https://data.delijn.be/stops/109512", "https://data.delijn.be/stops/109514"], ["https://data.delijn.be/stops/501154", "https://data.delijn.be/stops/506154"], ["https://data.delijn.be/stops/208415", "https://data.delijn.be/stops/209415"], ["https://data.delijn.be/stops/208277", "https://data.delijn.be/stops/209277"], ["https://data.delijn.be/stops/207343", "https://data.delijn.be/stops/207705"], ["https://data.delijn.be/stops/108992", "https://data.delijn.be/stops/108993"], ["https://data.delijn.be/stops/408198", "https://data.delijn.be/stops/409262"], ["https://data.delijn.be/stops/201886", "https://data.delijn.be/stops/203395"], ["https://data.delijn.be/stops/307554", "https://data.delijn.be/stops/307555"], ["https://data.delijn.be/stops/405882", "https://data.delijn.be/stops/409672"], ["https://data.delijn.be/stops/106570", "https://data.delijn.be/stops/106571"], ["https://data.delijn.be/stops/201283", "https://data.delijn.be/stops/201341"], ["https://data.delijn.be/stops/202926", "https://data.delijn.be/stops/202927"], ["https://data.delijn.be/stops/104410", "https://data.delijn.be/stops/104955"], ["https://data.delijn.be/stops/504174", "https://data.delijn.be/stops/508098"], ["https://data.delijn.be/stops/209517", "https://data.delijn.be/stops/209534"], ["https://data.delijn.be/stops/502069", "https://data.delijn.be/stops/507065"], ["https://data.delijn.be/stops/206251", "https://data.delijn.be/stops/207585"], ["https://data.delijn.be/stops/201232", "https://data.delijn.be/stops/202354"], ["https://data.delijn.be/stops/106084", "https://data.delijn.be/stops/106089"], ["https://data.delijn.be/stops/503183", "https://data.delijn.be/stops/503199"], ["https://data.delijn.be/stops/403192", "https://data.delijn.be/stops/404530"], ["https://data.delijn.be/stops/503356", "https://data.delijn.be/stops/503368"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/509556"], ["https://data.delijn.be/stops/200809", "https://data.delijn.be/stops/200810"], ["https://data.delijn.be/stops/102468", "https://data.delijn.be/stops/400359"], ["https://data.delijn.be/stops/408109", "https://data.delijn.be/stops/408159"], ["https://data.delijn.be/stops/103048", "https://data.delijn.be/stops/108645"], ["https://data.delijn.be/stops/402174", "https://data.delijn.be/stops/402313"], ["https://data.delijn.be/stops/400724", "https://data.delijn.be/stops/400802"], ["https://data.delijn.be/stops/400769", "https://data.delijn.be/stops/410088"], ["https://data.delijn.be/stops/302690", "https://data.delijn.be/stops/302701"], ["https://data.delijn.be/stops/200334", "https://data.delijn.be/stops/209491"], ["https://data.delijn.be/stops/402180", "https://data.delijn.be/stops/402431"], ["https://data.delijn.be/stops/409017", "https://data.delijn.be/stops/409881"], ["https://data.delijn.be/stops/303581", "https://data.delijn.be/stops/305910"], ["https://data.delijn.be/stops/206543", "https://data.delijn.be/stops/207543"], ["https://data.delijn.be/stops/200732", "https://data.delijn.be/stops/202626"], ["https://data.delijn.be/stops/201644", "https://data.delijn.be/stops/201941"], ["https://data.delijn.be/stops/303473", "https://data.delijn.be/stops/303521"], ["https://data.delijn.be/stops/202713", "https://data.delijn.be/stops/202729"], ["https://data.delijn.be/stops/400069", "https://data.delijn.be/stops/400103"], ["https://data.delijn.be/stops/102734", "https://data.delijn.be/stops/109516"], ["https://data.delijn.be/stops/103113", "https://data.delijn.be/stops/106814"], ["https://data.delijn.be/stops/300272", "https://data.delijn.be/stops/307495"], ["https://data.delijn.be/stops/504030", "https://data.delijn.be/stops/509704"], ["https://data.delijn.be/stops/400609", "https://data.delijn.be/stops/408229"], ["https://data.delijn.be/stops/206376", "https://data.delijn.be/stops/207376"], ["https://data.delijn.be/stops/402076", "https://data.delijn.be/stops/405555"], ["https://data.delijn.be/stops/206648", "https://data.delijn.be/stops/207486"], ["https://data.delijn.be/stops/504891", "https://data.delijn.be/stops/505581"], ["https://data.delijn.be/stops/200093", "https://data.delijn.be/stops/202895"], ["https://data.delijn.be/stops/504242", "https://data.delijn.be/stops/504654"], ["https://data.delijn.be/stops/406020", "https://data.delijn.be/stops/406031"], ["https://data.delijn.be/stops/501083", "https://data.delijn.be/stops/501518"], ["https://data.delijn.be/stops/102654", "https://data.delijn.be/stops/107791"], ["https://data.delijn.be/stops/508975", "https://data.delijn.be/stops/508977"], ["https://data.delijn.be/stops/503322", "https://data.delijn.be/stops/508296"], ["https://data.delijn.be/stops/502207", "https://data.delijn.be/stops/505150"], ["https://data.delijn.be/stops/106020", "https://data.delijn.be/stops/106023"], ["https://data.delijn.be/stops/403634", "https://data.delijn.be/stops/403652"], ["https://data.delijn.be/stops/502389", "https://data.delijn.be/stops/507518"], ["https://data.delijn.be/stops/504779", "https://data.delijn.be/stops/504978"], ["https://data.delijn.be/stops/407044", "https://data.delijn.be/stops/407045"], ["https://data.delijn.be/stops/508054", "https://data.delijn.be/stops/509847"], ["https://data.delijn.be/stops/108571", "https://data.delijn.be/stops/108994"], ["https://data.delijn.be/stops/503589", "https://data.delijn.be/stops/505098"], ["https://data.delijn.be/stops/101756", "https://data.delijn.be/stops/103646"], ["https://data.delijn.be/stops/500874", "https://data.delijn.be/stops/509108"], ["https://data.delijn.be/stops/300231", "https://data.delijn.be/stops/300256"], ["https://data.delijn.be/stops/504043", "https://data.delijn.be/stops/504659"], ["https://data.delijn.be/stops/203739", "https://data.delijn.be/stops/209740"], ["https://data.delijn.be/stops/201837", "https://data.delijn.be/stops/203400"], ["https://data.delijn.be/stops/301042", "https://data.delijn.be/stops/306400"], ["https://data.delijn.be/stops/500955", "https://data.delijn.be/stops/503287"], ["https://data.delijn.be/stops/208651", "https://data.delijn.be/stops/209651"], ["https://data.delijn.be/stops/301527", "https://data.delijn.be/stops/308079"], ["https://data.delijn.be/stops/301313", "https://data.delijn.be/stops/301322"], ["https://data.delijn.be/stops/204417", "https://data.delijn.be/stops/205117"], ["https://data.delijn.be/stops/206663", "https://data.delijn.be/stops/207995"], ["https://data.delijn.be/stops/106827", "https://data.delijn.be/stops/106828"], ["https://data.delijn.be/stops/201692", "https://data.delijn.be/stops/203994"], ["https://data.delijn.be/stops/102534", "https://data.delijn.be/stops/405723"], ["https://data.delijn.be/stops/104509", "https://data.delijn.be/stops/207742"], ["https://data.delijn.be/stops/203030", "https://data.delijn.be/stops/203349"], ["https://data.delijn.be/stops/101944", "https://data.delijn.be/stops/108784"], ["https://data.delijn.be/stops/200808", "https://data.delijn.be/stops/202655"], ["https://data.delijn.be/stops/408881", "https://data.delijn.be/stops/408918"], ["https://data.delijn.be/stops/208181", "https://data.delijn.be/stops/209181"], ["https://data.delijn.be/stops/206203", "https://data.delijn.be/stops/206369"], ["https://data.delijn.be/stops/501013", "https://data.delijn.be/stops/501018"], ["https://data.delijn.be/stops/300465", "https://data.delijn.be/stops/304974"], ["https://data.delijn.be/stops/502681", "https://data.delijn.be/stops/507681"], ["https://data.delijn.be/stops/409074", "https://data.delijn.be/stops/409075"], ["https://data.delijn.be/stops/302402", "https://data.delijn.be/stops/302403"], ["https://data.delijn.be/stops/304237", "https://data.delijn.be/stops/306826"], ["https://data.delijn.be/stops/106376", "https://data.delijn.be/stops/106379"], ["https://data.delijn.be/stops/208837", "https://data.delijn.be/stops/209201"], ["https://data.delijn.be/stops/201105", "https://data.delijn.be/stops/201938"], ["https://data.delijn.be/stops/208793", "https://data.delijn.be/stops/209313"], ["https://data.delijn.be/stops/300630", "https://data.delijn.be/stops/306113"], ["https://data.delijn.be/stops/400068", "https://data.delijn.be/stops/400121"], ["https://data.delijn.be/stops/500561", "https://data.delijn.be/stops/506037"], ["https://data.delijn.be/stops/208157", "https://data.delijn.be/stops/209156"], ["https://data.delijn.be/stops/206763", "https://data.delijn.be/stops/208625"], ["https://data.delijn.be/stops/403128", "https://data.delijn.be/stops/409314"], ["https://data.delijn.be/stops/208365", "https://data.delijn.be/stops/208366"], ["https://data.delijn.be/stops/104602", "https://data.delijn.be/stops/108046"], ["https://data.delijn.be/stops/106132", "https://data.delijn.be/stops/106133"], ["https://data.delijn.be/stops/103232", "https://data.delijn.be/stops/103558"], ["https://data.delijn.be/stops/209309", "https://data.delijn.be/stops/209325"], ["https://data.delijn.be/stops/300457", "https://data.delijn.be/stops/300458"], ["https://data.delijn.be/stops/406404", "https://data.delijn.be/stops/406405"], ["https://data.delijn.be/stops/108449", "https://data.delijn.be/stops/108450"], ["https://data.delijn.be/stops/107641", "https://data.delijn.be/stops/108839"], ["https://data.delijn.be/stops/105756", "https://data.delijn.be/stops/105757"], ["https://data.delijn.be/stops/407972", "https://data.delijn.be/stops/407973"], ["https://data.delijn.be/stops/103496", "https://data.delijn.be/stops/106216"], ["https://data.delijn.be/stops/401444", "https://data.delijn.be/stops/401512"], ["https://data.delijn.be/stops/301466", "https://data.delijn.be/stops/301467"], ["https://data.delijn.be/stops/304061", "https://data.delijn.be/stops/307966"], ["https://data.delijn.be/stops/204596", "https://data.delijn.be/stops/204797"], ["https://data.delijn.be/stops/300695", "https://data.delijn.be/stops/306935"], ["https://data.delijn.be/stops/204778", "https://data.delijn.be/stops/215011"], ["https://data.delijn.be/stops/206621", "https://data.delijn.be/stops/207621"], ["https://data.delijn.be/stops/104599", "https://data.delijn.be/stops/106840"], ["https://data.delijn.be/stops/304175", "https://data.delijn.be/stops/304176"], ["https://data.delijn.be/stops/102854", "https://data.delijn.be/stops/102856"], ["https://data.delijn.be/stops/502295", "https://data.delijn.be/stops/505723"], ["https://data.delijn.be/stops/203839", "https://data.delijn.be/stops/208678"], ["https://data.delijn.be/stops/200176", "https://data.delijn.be/stops/205951"], ["https://data.delijn.be/stops/200045", "https://data.delijn.be/stops/201219"], ["https://data.delijn.be/stops/501160", "https://data.delijn.be/stops/501161"], ["https://data.delijn.be/stops/103928", "https://data.delijn.be/stops/103931"], ["https://data.delijn.be/stops/403080", "https://data.delijn.be/stops/410336"], ["https://data.delijn.be/stops/505397", "https://data.delijn.be/stops/506510"], ["https://data.delijn.be/stops/405658", "https://data.delijn.be/stops/407491"], ["https://data.delijn.be/stops/205148", "https://data.delijn.be/stops/214005"], ["https://data.delijn.be/stops/502351", "https://data.delijn.be/stops/502574"], ["https://data.delijn.be/stops/500012", "https://data.delijn.be/stops/502375"], ["https://data.delijn.be/stops/206595", "https://data.delijn.be/stops/207595"], ["https://data.delijn.be/stops/404112", "https://data.delijn.be/stops/404126"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/209063"], ["https://data.delijn.be/stops/210026", "https://data.delijn.be/stops/211026"], ["https://data.delijn.be/stops/106181", "https://data.delijn.be/stops/107442"], ["https://data.delijn.be/stops/505312", "https://data.delijn.be/stops/505720"], ["https://data.delijn.be/stops/501106", "https://data.delijn.be/stops/506105"], ["https://data.delijn.be/stops/404493", "https://data.delijn.be/stops/406929"], ["https://data.delijn.be/stops/101022", "https://data.delijn.be/stops/102930"], ["https://data.delijn.be/stops/502172", "https://data.delijn.be/stops/502341"], ["https://data.delijn.be/stops/204047", "https://data.delijn.be/stops/205046"], ["https://data.delijn.be/stops/503678", "https://data.delijn.be/stops/508678"], ["https://data.delijn.be/stops/502612", "https://data.delijn.be/stops/507544"], ["https://data.delijn.be/stops/402396", "https://data.delijn.be/stops/404730"], ["https://data.delijn.be/stops/400208", "https://data.delijn.be/stops/400209"], ["https://data.delijn.be/stops/401588", "https://data.delijn.be/stops/401589"], ["https://data.delijn.be/stops/300715", "https://data.delijn.be/stops/302608"], ["https://data.delijn.be/stops/404859", "https://data.delijn.be/stops/404866"], ["https://data.delijn.be/stops/508189", "https://data.delijn.be/stops/509819"], ["https://data.delijn.be/stops/103977", "https://data.delijn.be/stops/108355"], ["https://data.delijn.be/stops/303091", "https://data.delijn.be/stops/303107"], ["https://data.delijn.be/stops/400833", "https://data.delijn.be/stops/403572"], ["https://data.delijn.be/stops/202712", "https://data.delijn.be/stops/203713"], ["https://data.delijn.be/stops/106268", "https://data.delijn.be/stops/106272"], ["https://data.delijn.be/stops/307212", "https://data.delijn.be/stops/307216"], ["https://data.delijn.be/stops/105055", "https://data.delijn.be/stops/108035"], ["https://data.delijn.be/stops/202029", "https://data.delijn.be/stops/203034"], ["https://data.delijn.be/stops/300413", "https://data.delijn.be/stops/303522"], ["https://data.delijn.be/stops/202927", "https://data.delijn.be/stops/211022"], ["https://data.delijn.be/stops/204123", "https://data.delijn.be/stops/205122"], ["https://data.delijn.be/stops/401618", "https://data.delijn.be/stops/308231"], ["https://data.delijn.be/stops/304048", "https://data.delijn.be/stops/304096"], ["https://data.delijn.be/stops/205055", "https://data.delijn.be/stops/205317"], ["https://data.delijn.be/stops/504529", "https://data.delijn.be/stops/505916"], ["https://data.delijn.be/stops/401817", "https://data.delijn.be/stops/406078"], ["https://data.delijn.be/stops/505578", "https://data.delijn.be/stops/508762"], ["https://data.delijn.be/stops/204683", "https://data.delijn.be/stops/205682"], ["https://data.delijn.be/stops/407478", "https://data.delijn.be/stops/407479"], ["https://data.delijn.be/stops/202475", "https://data.delijn.be/stops/203474"], ["https://data.delijn.be/stops/403064", "https://data.delijn.be/stops/408516"], ["https://data.delijn.be/stops/404254", "https://data.delijn.be/stops/404352"], ["https://data.delijn.be/stops/202761", "https://data.delijn.be/stops/203760"], ["https://data.delijn.be/stops/102997", "https://data.delijn.be/stops/107906"], ["https://data.delijn.be/stops/503355", "https://data.delijn.be/stops/505978"], ["https://data.delijn.be/stops/200927", "https://data.delijn.be/stops/204994"], ["https://data.delijn.be/stops/105424", "https://data.delijn.be/stops/105426"], ["https://data.delijn.be/stops/300511", "https://data.delijn.be/stops/300539"], ["https://data.delijn.be/stops/108785", "https://data.delijn.be/stops/109118"], ["https://data.delijn.be/stops/209482", "https://data.delijn.be/stops/209486"], ["https://data.delijn.be/stops/307686", "https://data.delijn.be/stops/307688"], ["https://data.delijn.be/stops/207383", "https://data.delijn.be/stops/207921"], ["https://data.delijn.be/stops/406350", "https://data.delijn.be/stops/408827"], ["https://data.delijn.be/stops/403774", "https://data.delijn.be/stops/403793"], ["https://data.delijn.be/stops/402026", "https://data.delijn.be/stops/402028"], ["https://data.delijn.be/stops/508523", "https://data.delijn.be/stops/509775"], ["https://data.delijn.be/stops/400651", "https://data.delijn.be/stops/400682"], ["https://data.delijn.be/stops/404486", "https://data.delijn.be/stops/404572"], ["https://data.delijn.be/stops/102059", "https://data.delijn.be/stops/102064"], ["https://data.delijn.be/stops/102320", "https://data.delijn.be/stops/102889"], ["https://data.delijn.be/stops/404118", "https://data.delijn.be/stops/408555"], ["https://data.delijn.be/stops/302224", "https://data.delijn.be/stops/302242"], ["https://data.delijn.be/stops/208099", "https://data.delijn.be/stops/209099"], ["https://data.delijn.be/stops/503455", "https://data.delijn.be/stops/508463"], ["https://data.delijn.be/stops/505259", "https://data.delijn.be/stops/508436"], ["https://data.delijn.be/stops/503832", "https://data.delijn.be/stops/508833"], ["https://data.delijn.be/stops/207441", "https://data.delijn.be/stops/209692"], ["https://data.delijn.be/stops/208059", "https://data.delijn.be/stops/208507"], ["https://data.delijn.be/stops/401118", "https://data.delijn.be/stops/401134"], ["https://data.delijn.be/stops/401219", "https://data.delijn.be/stops/401283"], ["https://data.delijn.be/stops/207110", "https://data.delijn.be/stops/207906"], ["https://data.delijn.be/stops/508636", "https://data.delijn.be/stops/508640"], ["https://data.delijn.be/stops/102157", "https://data.delijn.be/stops/109588"], ["https://data.delijn.be/stops/104056", "https://data.delijn.be/stops/108688"], ["https://data.delijn.be/stops/107487", "https://data.delijn.be/stops/107509"], ["https://data.delijn.be/stops/505640", "https://data.delijn.be/stops/508865"], ["https://data.delijn.be/stops/209185", "https://data.delijn.be/stops/209357"], ["https://data.delijn.be/stops/200631", "https://data.delijn.be/stops/200640"], ["https://data.delijn.be/stops/501108", "https://data.delijn.be/stops/501111"], ["https://data.delijn.be/stops/301683", "https://data.delijn.be/stops/302761"], ["https://data.delijn.be/stops/204643", "https://data.delijn.be/stops/205643"], ["https://data.delijn.be/stops/403092", "https://data.delijn.be/stops/403124"], ["https://data.delijn.be/stops/101261", "https://data.delijn.be/stops/103670"], ["https://data.delijn.be/stops/204139", "https://data.delijn.be/stops/204140"], ["https://data.delijn.be/stops/402089", "https://data.delijn.be/stops/402215"], ["https://data.delijn.be/stops/508078", "https://data.delijn.be/stops/508598"], ["https://data.delijn.be/stops/304584", "https://data.delijn.be/stops/304608"], ["https://data.delijn.be/stops/300756", "https://data.delijn.be/stops/303223"], ["https://data.delijn.be/stops/503539", "https://data.delijn.be/stops/508993"], ["https://data.delijn.be/stops/101614", "https://data.delijn.be/stops/106402"], ["https://data.delijn.be/stops/205102", "https://data.delijn.be/stops/205347"], ["https://data.delijn.be/stops/103593", "https://data.delijn.be/stops/103594"], ["https://data.delijn.be/stops/304866", "https://data.delijn.be/stops/304869"], ["https://data.delijn.be/stops/206847", "https://data.delijn.be/stops/207512"], ["https://data.delijn.be/stops/208707", "https://data.delijn.be/stops/209707"], ["https://data.delijn.be/stops/106635", "https://data.delijn.be/stops/106638"], ["https://data.delijn.be/stops/505582", "https://data.delijn.be/stops/508589"], ["https://data.delijn.be/stops/300594", "https://data.delijn.be/stops/304241"], ["https://data.delijn.be/stops/208128", "https://data.delijn.be/stops/209073"], ["https://data.delijn.be/stops/101891", "https://data.delijn.be/stops/102157"], ["https://data.delijn.be/stops/302915", "https://data.delijn.be/stops/303235"], ["https://data.delijn.be/stops/405813", "https://data.delijn.be/stops/405891"], ["https://data.delijn.be/stops/208226", "https://data.delijn.be/stops/208834"], ["https://data.delijn.be/stops/509291", "https://data.delijn.be/stops/509600"], ["https://data.delijn.be/stops/501403", "https://data.delijn.be/stops/506403"], ["https://data.delijn.be/stops/502170", "https://data.delijn.be/stops/505419"], ["https://data.delijn.be/stops/207470", "https://data.delijn.be/stops/207471"], ["https://data.delijn.be/stops/300306", "https://data.delijn.be/stops/305238"], ["https://data.delijn.be/stops/206178", "https://data.delijn.be/stops/308574"], ["https://data.delijn.be/stops/504304", "https://data.delijn.be/stops/509237"], ["https://data.delijn.be/stops/404407", "https://data.delijn.be/stops/404416"], ["https://data.delijn.be/stops/101063", "https://data.delijn.be/stops/107955"], ["https://data.delijn.be/stops/504139", "https://data.delijn.be/stops/509139"], ["https://data.delijn.be/stops/507452", "https://data.delijn.be/stops/507455"], ["https://data.delijn.be/stops/501367", "https://data.delijn.be/stops/506443"], ["https://data.delijn.be/stops/102205", "https://data.delijn.be/stops/103601"], ["https://data.delijn.be/stops/503489", "https://data.delijn.be/stops/505719"], ["https://data.delijn.be/stops/202977", "https://data.delijn.be/stops/203372"], ["https://data.delijn.be/stops/103259", "https://data.delijn.be/stops/105851"], ["https://data.delijn.be/stops/109761", "https://data.delijn.be/stops/109764"], ["https://data.delijn.be/stops/105709", "https://data.delijn.be/stops/106077"], ["https://data.delijn.be/stops/405792", "https://data.delijn.be/stops/407511"], ["https://data.delijn.be/stops/206978", "https://data.delijn.be/stops/304260"], ["https://data.delijn.be/stops/200860", "https://data.delijn.be/stops/203287"], ["https://data.delijn.be/stops/505659", "https://data.delijn.be/stops/508510"], ["https://data.delijn.be/stops/204580", "https://data.delijn.be/stops/205592"], ["https://data.delijn.be/stops/401412", "https://data.delijn.be/stops/401413"], ["https://data.delijn.be/stops/400219", "https://data.delijn.be/stops/400221"], ["https://data.delijn.be/stops/101934", "https://data.delijn.be/stops/107746"], ["https://data.delijn.be/stops/300094", "https://data.delijn.be/stops/300099"], ["https://data.delijn.be/stops/101080", "https://data.delijn.be/stops/102605"], ["https://data.delijn.be/stops/206303", "https://data.delijn.be/stops/207303"], ["https://data.delijn.be/stops/106135", "https://data.delijn.be/stops/106137"], ["https://data.delijn.be/stops/209275", "https://data.delijn.be/stops/209333"], ["https://data.delijn.be/stops/503715", "https://data.delijn.be/stops/509871"], ["https://data.delijn.be/stops/401419", "https://data.delijn.be/stops/301085"], ["https://data.delijn.be/stops/406164", "https://data.delijn.be/stops/406165"], ["https://data.delijn.be/stops/500029", "https://data.delijn.be/stops/508114"], ["https://data.delijn.be/stops/504037", "https://data.delijn.be/stops/504284"], ["https://data.delijn.be/stops/207764", "https://data.delijn.be/stops/207794"], ["https://data.delijn.be/stops/207532", "https://data.delijn.be/stops/207538"], ["https://data.delijn.be/stops/405537", "https://data.delijn.be/stops/409424"], ["https://data.delijn.be/stops/503454", "https://data.delijn.be/stops/508469"], ["https://data.delijn.be/stops/205714", "https://data.delijn.be/stops/205717"], ["https://data.delijn.be/stops/304340", "https://data.delijn.be/stops/305219"], ["https://data.delijn.be/stops/400597", "https://data.delijn.be/stops/400606"], ["https://data.delijn.be/stops/304647", "https://data.delijn.be/stops/304683"], ["https://data.delijn.be/stops/306875", "https://data.delijn.be/stops/306876"], ["https://data.delijn.be/stops/304894", "https://data.delijn.be/stops/304896"], ["https://data.delijn.be/stops/302875", "https://data.delijn.be/stops/302876"], ["https://data.delijn.be/stops/400476", "https://data.delijn.be/stops/404674"], ["https://data.delijn.be/stops/405758", "https://data.delijn.be/stops/303333"], ["https://data.delijn.be/stops/400558", "https://data.delijn.be/stops/403829"], ["https://data.delijn.be/stops/405052", "https://data.delijn.be/stops/405064"], ["https://data.delijn.be/stops/200026", "https://data.delijn.be/stops/200027"], ["https://data.delijn.be/stops/103306", "https://data.delijn.be/stops/103307"], ["https://data.delijn.be/stops/406977", "https://data.delijn.be/stops/406979"], ["https://data.delijn.be/stops/408695", "https://data.delijn.be/stops/408699"], ["https://data.delijn.be/stops/304840", "https://data.delijn.be/stops/304853"], ["https://data.delijn.be/stops/102179", "https://data.delijn.be/stops/104999"], ["https://data.delijn.be/stops/105103", "https://data.delijn.be/stops/105107"], ["https://data.delijn.be/stops/503226", "https://data.delijn.be/stops/503229"], ["https://data.delijn.be/stops/302450", "https://data.delijn.be/stops/307140"], ["https://data.delijn.be/stops/109280", "https://data.delijn.be/stops/109281"], ["https://data.delijn.be/stops/302380", "https://data.delijn.be/stops/302381"], ["https://data.delijn.be/stops/406711", "https://data.delijn.be/stops/306782"], ["https://data.delijn.be/stops/408646", "https://data.delijn.be/stops/408647"], ["https://data.delijn.be/stops/201337", "https://data.delijn.be/stops/201733"], ["https://data.delijn.be/stops/302586", "https://data.delijn.be/stops/302680"], ["https://data.delijn.be/stops/103098", "https://data.delijn.be/stops/103268"], ["https://data.delijn.be/stops/406012", "https://data.delijn.be/stops/406013"], ["https://data.delijn.be/stops/202616", "https://data.delijn.be/stops/203615"], ["https://data.delijn.be/stops/208730", "https://data.delijn.be/stops/209730"], ["https://data.delijn.be/stops/403050", "https://data.delijn.be/stops/403174"], ["https://data.delijn.be/stops/203504", "https://data.delijn.be/stops/209662"], ["https://data.delijn.be/stops/202263", "https://data.delijn.be/stops/210006"], ["https://data.delijn.be/stops/202066", "https://data.delijn.be/stops/203066"], ["https://data.delijn.be/stops/308212", "https://data.delijn.be/stops/308221"], ["https://data.delijn.be/stops/507075", "https://data.delijn.be/stops/507739"], ["https://data.delijn.be/stops/201222", "https://data.delijn.be/stops/203450"], ["https://data.delijn.be/stops/404060", "https://data.delijn.be/stops/406856"], ["https://data.delijn.be/stops/503107", "https://data.delijn.be/stops/508107"], ["https://data.delijn.be/stops/105418", "https://data.delijn.be/stops/105846"], ["https://data.delijn.be/stops/304081", "https://data.delijn.be/stops/304242"], ["https://data.delijn.be/stops/301538", "https://data.delijn.be/stops/305141"], ["https://data.delijn.be/stops/502031", "https://data.delijn.be/stops/502118"], ["https://data.delijn.be/stops/301699", "https://data.delijn.be/stops/301700"], ["https://data.delijn.be/stops/101848", "https://data.delijn.be/stops/107229"], ["https://data.delijn.be/stops/407581", "https://data.delijn.be/stops/408875"], ["https://data.delijn.be/stops/102922", "https://data.delijn.be/stops/103348"], ["https://data.delijn.be/stops/200395", "https://data.delijn.be/stops/201395"], ["https://data.delijn.be/stops/302238", "https://data.delijn.be/stops/302239"], ["https://data.delijn.be/stops/204235", "https://data.delijn.be/stops/205587"], ["https://data.delijn.be/stops/207769", "https://data.delijn.be/stops/207773"], ["https://data.delijn.be/stops/504991", "https://data.delijn.be/stops/507954"], ["https://data.delijn.be/stops/403109", "https://data.delijn.be/stops/403110"], ["https://data.delijn.be/stops/201501", "https://data.delijn.be/stops/208404"], ["https://data.delijn.be/stops/501293", "https://data.delijn.be/stops/501325"], ["https://data.delijn.be/stops/300067", "https://data.delijn.be/stops/300069"], ["https://data.delijn.be/stops/503584", "https://data.delijn.be/stops/508128"], ["https://data.delijn.be/stops/504831", "https://data.delijn.be/stops/508969"], ["https://data.delijn.be/stops/103014", "https://data.delijn.be/stops/109374"], ["https://data.delijn.be/stops/208540", "https://data.delijn.be/stops/208620"], ["https://data.delijn.be/stops/503213", "https://data.delijn.be/stops/508211"], ["https://data.delijn.be/stops/401217", "https://data.delijn.be/stops/401225"], ["https://data.delijn.be/stops/202343", "https://data.delijn.be/stops/203439"], ["https://data.delijn.be/stops/107205", "https://data.delijn.be/stops/109891"], ["https://data.delijn.be/stops/404471", "https://data.delijn.be/stops/404539"], ["https://data.delijn.be/stops/306691", "https://data.delijn.be/stops/308784"], ["https://data.delijn.be/stops/502354", "https://data.delijn.be/stops/507353"], ["https://data.delijn.be/stops/504679", "https://data.delijn.be/stops/509460"], ["https://data.delijn.be/stops/105950", "https://data.delijn.be/stops/106060"], ["https://data.delijn.be/stops/204210", "https://data.delijn.be/stops/206395"], ["https://data.delijn.be/stops/409747", "https://data.delijn.be/stops/409750"], ["https://data.delijn.be/stops/500952", "https://data.delijn.be/stops/508627"], ["https://data.delijn.be/stops/104288", "https://data.delijn.be/stops/104291"], ["https://data.delijn.be/stops/307080", "https://data.delijn.be/stops/307895"], ["https://data.delijn.be/stops/503507", "https://data.delijn.be/stops/508507"], ["https://data.delijn.be/stops/402507", "https://data.delijn.be/stops/402628"], ["https://data.delijn.be/stops/503641", "https://data.delijn.be/stops/505161"], ["https://data.delijn.be/stops/106737", "https://data.delijn.be/stops/106780"], ["https://data.delijn.be/stops/503844", "https://data.delijn.be/stops/508847"], ["https://data.delijn.be/stops/301114", "https://data.delijn.be/stops/301131"], ["https://data.delijn.be/stops/103515", "https://data.delijn.be/stops/105235"], ["https://data.delijn.be/stops/401812", "https://data.delijn.be/stops/401813"], ["https://data.delijn.be/stops/403029", "https://data.delijn.be/stops/403030"], ["https://data.delijn.be/stops/308460", "https://data.delijn.be/stops/308464"], ["https://data.delijn.be/stops/508181", "https://data.delijn.be/stops/508182"], ["https://data.delijn.be/stops/204722", "https://data.delijn.be/stops/204723"], ["https://data.delijn.be/stops/407397", "https://data.delijn.be/stops/407500"], ["https://data.delijn.be/stops/107490", "https://data.delijn.be/stops/107500"], ["https://data.delijn.be/stops/308289", "https://data.delijn.be/stops/308290"], ["https://data.delijn.be/stops/208699", "https://data.delijn.be/stops/208705"], ["https://data.delijn.be/stops/204179", "https://data.delijn.be/stops/206391"], ["https://data.delijn.be/stops/304688", "https://data.delijn.be/stops/307159"], ["https://data.delijn.be/stops/206726", "https://data.delijn.be/stops/206993"], ["https://data.delijn.be/stops/208787", "https://data.delijn.be/stops/219031"], ["https://data.delijn.be/stops/102205", "https://data.delijn.be/stops/103005"], ["https://data.delijn.be/stops/303465", "https://data.delijn.be/stops/308934"], ["https://data.delijn.be/stops/101810", "https://data.delijn.be/stops/104123"], ["https://data.delijn.be/stops/200383", "https://data.delijn.be/stops/201142"], ["https://data.delijn.be/stops/108705", "https://data.delijn.be/stops/109987"], ["https://data.delijn.be/stops/402585", "https://data.delijn.be/stops/402652"], ["https://data.delijn.be/stops/400331", "https://data.delijn.be/stops/400364"], ["https://data.delijn.be/stops/200912", "https://data.delijn.be/stops/203644"], ["https://data.delijn.be/stops/104824", "https://data.delijn.be/stops/108495"], ["https://data.delijn.be/stops/200435", "https://data.delijn.be/stops/201985"], ["https://data.delijn.be/stops/402096", "https://data.delijn.be/stops/402326"], ["https://data.delijn.be/stops/201775", "https://data.delijn.be/stops/219018"], ["https://data.delijn.be/stops/408412", "https://data.delijn.be/stops/408413"], ["https://data.delijn.be/stops/106594", "https://data.delijn.be/stops/106596"], ["https://data.delijn.be/stops/403165", "https://data.delijn.be/stops/405122"], ["https://data.delijn.be/stops/405253", "https://data.delijn.be/stops/406855"], ["https://data.delijn.be/stops/400626", "https://data.delijn.be/stops/408251"], ["https://data.delijn.be/stops/406478", "https://data.delijn.be/stops/406479"], ["https://data.delijn.be/stops/405037", "https://data.delijn.be/stops/406548"], ["https://data.delijn.be/stops/400124", "https://data.delijn.be/stops/409169"], ["https://data.delijn.be/stops/301835", "https://data.delijn.be/stops/305860"], ["https://data.delijn.be/stops/503242", "https://data.delijn.be/stops/503244"], ["https://data.delijn.be/stops/201096", "https://data.delijn.be/stops/201272"], ["https://data.delijn.be/stops/408652", "https://data.delijn.be/stops/408743"], ["https://data.delijn.be/stops/206277", "https://data.delijn.be/stops/207533"], ["https://data.delijn.be/stops/202315", "https://data.delijn.be/stops/203314"], ["https://data.delijn.be/stops/300586", "https://data.delijn.be/stops/300588"], ["https://data.delijn.be/stops/501327", "https://data.delijn.be/stops/506265"], ["https://data.delijn.be/stops/501357", "https://data.delijn.be/stops/506271"], ["https://data.delijn.be/stops/405711", "https://data.delijn.be/stops/407216"], ["https://data.delijn.be/stops/406064", "https://data.delijn.be/stops/406815"], ["https://data.delijn.be/stops/404641", "https://data.delijn.be/stops/404992"], ["https://data.delijn.be/stops/403207", "https://data.delijn.be/stops/403402"], ["https://data.delijn.be/stops/200844", "https://data.delijn.be/stops/202300"], ["https://data.delijn.be/stops/105299", "https://data.delijn.be/stops/109971"], ["https://data.delijn.be/stops/206105", "https://data.delijn.be/stops/207104"], ["https://data.delijn.be/stops/304555", "https://data.delijn.be/stops/307584"], ["https://data.delijn.be/stops/201139", "https://data.delijn.be/stops/201227"], ["https://data.delijn.be/stops/406708", "https://data.delijn.be/stops/407065"], ["https://data.delijn.be/stops/404596", "https://data.delijn.be/stops/404598"], ["https://data.delijn.be/stops/102253", "https://data.delijn.be/stops/109079"], ["https://data.delijn.be/stops/406624", "https://data.delijn.be/stops/406641"], ["https://data.delijn.be/stops/104961", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/300858", "https://data.delijn.be/stops/303046"], ["https://data.delijn.be/stops/106821", "https://data.delijn.be/stops/106983"], ["https://data.delijn.be/stops/304956", "https://data.delijn.be/stops/304973"], ["https://data.delijn.be/stops/202508", "https://data.delijn.be/stops/203490"], ["https://data.delijn.be/stops/503229", "https://data.delijn.be/stops/508227"], ["https://data.delijn.be/stops/102025", "https://data.delijn.be/stops/105140"], ["https://data.delijn.be/stops/208678", "https://data.delijn.be/stops/209425"], ["https://data.delijn.be/stops/200419", "https://data.delijn.be/stops/201420"], ["https://data.delijn.be/stops/102646", "https://data.delijn.be/stops/109910"], ["https://data.delijn.be/stops/201241", "https://data.delijn.be/stops/201650"], ["https://data.delijn.be/stops/204119", "https://data.delijn.be/stops/204120"], ["https://data.delijn.be/stops/202260", "https://data.delijn.be/stops/202261"], ["https://data.delijn.be/stops/503029", "https://data.delijn.be/stops/505396"], ["https://data.delijn.be/stops/208046", "https://data.delijn.be/stops/209046"], ["https://data.delijn.be/stops/102125", "https://data.delijn.be/stops/102987"], ["https://data.delijn.be/stops/305412", "https://data.delijn.be/stops/305462"], ["https://data.delijn.be/stops/404546", "https://data.delijn.be/stops/404554"], ["https://data.delijn.be/stops/507953", "https://data.delijn.be/stops/508858"], ["https://data.delijn.be/stops/400122", "https://data.delijn.be/stops/400127"], ["https://data.delijn.be/stops/507765", "https://data.delijn.be/stops/509819"], ["https://data.delijn.be/stops/402078", "https://data.delijn.be/stops/402375"], ["https://data.delijn.be/stops/205243", "https://data.delijn.be/stops/206272"], ["https://data.delijn.be/stops/300450", "https://data.delijn.be/stops/308058"], ["https://data.delijn.be/stops/205296", "https://data.delijn.be/stops/205304"], ["https://data.delijn.be/stops/403038", "https://data.delijn.be/stops/403455"], ["https://data.delijn.be/stops/408117", "https://data.delijn.be/stops/408491"], ["https://data.delijn.be/stops/206589", "https://data.delijn.be/stops/207590"], ["https://data.delijn.be/stops/207061", "https://data.delijn.be/stops/207519"], ["https://data.delijn.be/stops/201817", "https://data.delijn.be/stops/208254"], ["https://data.delijn.be/stops/204502", "https://data.delijn.be/stops/205502"], ["https://data.delijn.be/stops/202036", "https://data.delijn.be/stops/202985"], ["https://data.delijn.be/stops/501105", "https://data.delijn.be/stops/506105"], ["https://data.delijn.be/stops/400547", "https://data.delijn.be/stops/400900"], ["https://data.delijn.be/stops/202330", "https://data.delijn.be/stops/203335"], ["https://data.delijn.be/stops/401488", "https://data.delijn.be/stops/401489"], ["https://data.delijn.be/stops/402481", "https://data.delijn.be/stops/402499"], ["https://data.delijn.be/stops/108364", "https://data.delijn.be/stops/108505"], ["https://data.delijn.be/stops/408028", "https://data.delijn.be/stops/301519"], ["https://data.delijn.be/stops/201971", "https://data.delijn.be/stops/206707"], ["https://data.delijn.be/stops/105053", "https://data.delijn.be/stops/105054"], ["https://data.delijn.be/stops/403049", "https://data.delijn.be/stops/403052"], ["https://data.delijn.be/stops/405900", "https://data.delijn.be/stops/405965"], ["https://data.delijn.be/stops/200866", "https://data.delijn.be/stops/203331"], ["https://data.delijn.be/stops/306865", "https://data.delijn.be/stops/307731"], ["https://data.delijn.be/stops/301465", "https://data.delijn.be/stops/308071"], ["https://data.delijn.be/stops/307272", "https://data.delijn.be/stops/307273"], ["https://data.delijn.be/stops/400704", "https://data.delijn.be/stops/400836"], ["https://data.delijn.be/stops/403120", "https://data.delijn.be/stops/403121"], ["https://data.delijn.be/stops/206226", "https://data.delijn.be/stops/300181"], ["https://data.delijn.be/stops/200513", "https://data.delijn.be/stops/201151"], ["https://data.delijn.be/stops/204297", "https://data.delijn.be/stops/205296"], ["https://data.delijn.be/stops/109904", "https://data.delijn.be/stops/109909"], ["https://data.delijn.be/stops/208026", "https://data.delijn.be/stops/209021"], ["https://data.delijn.be/stops/501356", "https://data.delijn.be/stops/501501"], ["https://data.delijn.be/stops/302273", "https://data.delijn.be/stops/306784"], ["https://data.delijn.be/stops/104237", "https://data.delijn.be/stops/105073"], ["https://data.delijn.be/stops/301808", "https://data.delijn.be/stops/307889"], ["https://data.delijn.be/stops/402735", "https://data.delijn.be/stops/410089"], ["https://data.delijn.be/stops/507030", "https://data.delijn.be/stops/507441"], ["https://data.delijn.be/stops/206671", "https://data.delijn.be/stops/207669"], ["https://data.delijn.be/stops/203867", "https://data.delijn.be/stops/203868"], ["https://data.delijn.be/stops/401075", "https://data.delijn.be/stops/401162"], ["https://data.delijn.be/stops/101022", "https://data.delijn.be/stops/106035"], ["https://data.delijn.be/stops/107429", "https://data.delijn.be/stops/109170"], ["https://data.delijn.be/stops/403426", "https://data.delijn.be/stops/403688"], ["https://data.delijn.be/stops/200061", "https://data.delijn.be/stops/201061"], ["https://data.delijn.be/stops/204204", "https://data.delijn.be/stops/205190"], ["https://data.delijn.be/stops/404696", "https://data.delijn.be/stops/406996"], ["https://data.delijn.be/stops/301948", "https://data.delijn.be/stops/303323"], ["https://data.delijn.be/stops/203752", "https://data.delijn.be/stops/203760"], ["https://data.delijn.be/stops/503999", "https://data.delijn.be/stops/508999"], ["https://data.delijn.be/stops/206540", "https://data.delijn.be/stops/206541"], ["https://data.delijn.be/stops/305113", "https://data.delijn.be/stops/305213"], ["https://data.delijn.be/stops/404462", "https://data.delijn.be/stops/404526"], ["https://data.delijn.be/stops/108084", "https://data.delijn.be/stops/108087"], ["https://data.delijn.be/stops/200583", "https://data.delijn.be/stops/210078"], ["https://data.delijn.be/stops/201375", "https://data.delijn.be/stops/211089"], ["https://data.delijn.be/stops/200854", "https://data.delijn.be/stops/200890"], ["https://data.delijn.be/stops/106150", "https://data.delijn.be/stops/106152"], ["https://data.delijn.be/stops/502308", "https://data.delijn.be/stops/507308"], ["https://data.delijn.be/stops/501268", "https://data.delijn.be/stops/501312"], ["https://data.delijn.be/stops/208743", "https://data.delijn.be/stops/208763"], ["https://data.delijn.be/stops/502473", "https://data.delijn.be/stops/507467"], ["https://data.delijn.be/stops/104553", "https://data.delijn.be/stops/305806"], ["https://data.delijn.be/stops/507748", "https://data.delijn.be/stops/507766"], ["https://data.delijn.be/stops/402883", "https://data.delijn.be/stops/405536"], ["https://data.delijn.be/stops/503458", "https://data.delijn.be/stops/508475"], ["https://data.delijn.be/stops/102232", "https://data.delijn.be/stops/102309"], ["https://data.delijn.be/stops/505071", "https://data.delijn.be/stops/507918"], ["https://data.delijn.be/stops/204071", "https://data.delijn.be/stops/204184"], ["https://data.delijn.be/stops/402698", "https://data.delijn.be/stops/402879"], ["https://data.delijn.be/stops/400649", "https://data.delijn.be/stops/400650"], ["https://data.delijn.be/stops/107060", "https://data.delijn.be/stops/107061"], ["https://data.delijn.be/stops/103991", "https://data.delijn.be/stops/105311"], ["https://data.delijn.be/stops/205524", "https://data.delijn.be/stops/205727"], ["https://data.delijn.be/stops/401145", "https://data.delijn.be/stops/401149"], ["https://data.delijn.be/stops/308166", "https://data.delijn.be/stops/308167"], ["https://data.delijn.be/stops/400450", "https://data.delijn.be/stops/400451"], ["https://data.delijn.be/stops/407942", "https://data.delijn.be/stops/407944"], ["https://data.delijn.be/stops/107115", "https://data.delijn.be/stops/107230"], ["https://data.delijn.be/stops/201783", "https://data.delijn.be/stops/201987"], ["https://data.delijn.be/stops/404489", "https://data.delijn.be/stops/404519"], ["https://data.delijn.be/stops/202330", "https://data.delijn.be/stops/211298"], ["https://data.delijn.be/stops/207864", "https://data.delijn.be/stops/209697"], ["https://data.delijn.be/stops/102929", "https://data.delijn.be/stops/106126"], ["https://data.delijn.be/stops/501550", "https://data.delijn.be/stops/501559"], ["https://data.delijn.be/stops/103263", "https://data.delijn.be/stops/214002"], ["https://data.delijn.be/stops/108834", "https://data.delijn.be/stops/108836"], ["https://data.delijn.be/stops/206758", "https://data.delijn.be/stops/207851"], ["https://data.delijn.be/stops/105164", "https://data.delijn.be/stops/105369"], ["https://data.delijn.be/stops/101565", "https://data.delijn.be/stops/103500"], ["https://data.delijn.be/stops/504461", "https://data.delijn.be/stops/504542"], ["https://data.delijn.be/stops/104304", "https://data.delijn.be/stops/104306"], ["https://data.delijn.be/stops/501642", "https://data.delijn.be/stops/501659"], ["https://data.delijn.be/stops/304158", "https://data.delijn.be/stops/307757"], ["https://data.delijn.be/stops/301932", "https://data.delijn.be/stops/305842"], ["https://data.delijn.be/stops/406978", "https://data.delijn.be/stops/410255"], ["https://data.delijn.be/stops/305335", "https://data.delijn.be/stops/305888"], ["https://data.delijn.be/stops/401174", "https://data.delijn.be/stops/406650"], ["https://data.delijn.be/stops/303283", "https://data.delijn.be/stops/304638"], ["https://data.delijn.be/stops/101529", "https://data.delijn.be/stops/109556"], ["https://data.delijn.be/stops/101494", "https://data.delijn.be/stops/108292"], ["https://data.delijn.be/stops/305945", "https://data.delijn.be/stops/308413"], ["https://data.delijn.be/stops/208792", "https://data.delijn.be/stops/209211"], ["https://data.delijn.be/stops/303255", "https://data.delijn.be/stops/303257"], ["https://data.delijn.be/stops/201716", "https://data.delijn.be/stops/201799"], ["https://data.delijn.be/stops/505757", "https://data.delijn.be/stops/506123"], ["https://data.delijn.be/stops/404104", "https://data.delijn.be/stops/404149"], ["https://data.delijn.be/stops/504847", "https://data.delijn.be/stops/508806"], ["https://data.delijn.be/stops/200009", "https://data.delijn.be/stops/201848"], ["https://data.delijn.be/stops/401248", "https://data.delijn.be/stops/401249"], ["https://data.delijn.be/stops/507566", "https://data.delijn.be/stops/507567"], ["https://data.delijn.be/stops/101556", "https://data.delijn.be/stops/102405"], ["https://data.delijn.be/stops/503338", "https://data.delijn.be/stops/503345"], ["https://data.delijn.be/stops/404306", "https://data.delijn.be/stops/404319"], ["https://data.delijn.be/stops/304269", "https://data.delijn.be/stops/304270"], ["https://data.delijn.be/stops/104951", "https://data.delijn.be/stops/104952"], ["https://data.delijn.be/stops/405693", "https://data.delijn.be/stops/405989"], ["https://data.delijn.be/stops/108532", "https://data.delijn.be/stops/108533"], ["https://data.delijn.be/stops/503922", "https://data.delijn.be/stops/505255"], ["https://data.delijn.be/stops/106423", "https://data.delijn.be/stops/106509"], ["https://data.delijn.be/stops/402982", "https://data.delijn.be/stops/407797"], ["https://data.delijn.be/stops/204796", "https://data.delijn.be/stops/205078"], ["https://data.delijn.be/stops/301113", "https://data.delijn.be/stops/301114"], ["https://data.delijn.be/stops/408896", "https://data.delijn.be/stops/408900"], ["https://data.delijn.be/stops/203119", "https://data.delijn.be/stops/205073"], ["https://data.delijn.be/stops/305954", "https://data.delijn.be/stops/307514"], ["https://data.delijn.be/stops/401172", "https://data.delijn.be/stops/406650"], ["https://data.delijn.be/stops/204744", "https://data.delijn.be/stops/205745"], ["https://data.delijn.be/stops/200174", "https://data.delijn.be/stops/201277"], ["https://data.delijn.be/stops/206679", "https://data.delijn.be/stops/208105"], ["https://data.delijn.be/stops/202710", "https://data.delijn.be/stops/203710"], ["https://data.delijn.be/stops/504175", "https://data.delijn.be/stops/509157"], ["https://data.delijn.be/stops/200831", "https://data.delijn.be/stops/505064"], ["https://data.delijn.be/stops/101162", "https://data.delijn.be/stops/105971"], ["https://data.delijn.be/stops/206733", "https://data.delijn.be/stops/304270"], ["https://data.delijn.be/stops/402872", "https://data.delijn.be/stops/404353"], ["https://data.delijn.be/stops/306903", "https://data.delijn.be/stops/306905"], ["https://data.delijn.be/stops/304747", "https://data.delijn.be/stops/307333"], ["https://data.delijn.be/stops/105383", "https://data.delijn.be/stops/105387"], ["https://data.delijn.be/stops/204985", "https://data.delijn.be/stops/208350"], ["https://data.delijn.be/stops/303641", "https://data.delijn.be/stops/307886"], ["https://data.delijn.be/stops/300373", "https://data.delijn.be/stops/308638"], ["https://data.delijn.be/stops/206979", "https://data.delijn.be/stops/301093"], ["https://data.delijn.be/stops/406287", "https://data.delijn.be/stops/409408"], ["https://data.delijn.be/stops/203996", "https://data.delijn.be/stops/208561"], ["https://data.delijn.be/stops/101492", "https://data.delijn.be/stops/108747"], ["https://data.delijn.be/stops/306592", "https://data.delijn.be/stops/306595"], ["https://data.delijn.be/stops/105741", "https://data.delijn.be/stops/105744"], ["https://data.delijn.be/stops/200276", "https://data.delijn.be/stops/201030"], ["https://data.delijn.be/stops/207978", "https://data.delijn.be/stops/304260"], ["https://data.delijn.be/stops/508795", "https://data.delijn.be/stops/508797"], ["https://data.delijn.be/stops/305414", "https://data.delijn.be/stops/305462"], ["https://data.delijn.be/stops/503456", "https://data.delijn.be/stops/503478"], ["https://data.delijn.be/stops/303674", "https://data.delijn.be/stops/303676"], ["https://data.delijn.be/stops/302384", "https://data.delijn.be/stops/304098"], ["https://data.delijn.be/stops/201815", "https://data.delijn.be/stops/208253"], ["https://data.delijn.be/stops/505520", "https://data.delijn.be/stops/509894"], ["https://data.delijn.be/stops/109006", "https://data.delijn.be/stops/109008"], ["https://data.delijn.be/stops/200457", "https://data.delijn.be/stops/200558"], ["https://data.delijn.be/stops/503883", "https://data.delijn.be/stops/508883"], ["https://data.delijn.be/stops/303506", "https://data.delijn.be/stops/303508"], ["https://data.delijn.be/stops/203418", "https://data.delijn.be/stops/203420"], ["https://data.delijn.be/stops/403584", "https://data.delijn.be/stops/408458"], ["https://data.delijn.be/stops/205112", "https://data.delijn.be/stops/205684"], ["https://data.delijn.be/stops/200261", "https://data.delijn.be/stops/200302"], ["https://data.delijn.be/stops/504278", "https://data.delijn.be/stops/509278"], ["https://data.delijn.be/stops/402870", "https://data.delijn.be/stops/404006"], ["https://data.delijn.be/stops/101515", "https://data.delijn.be/stops/102060"], ["https://data.delijn.be/stops/109274", "https://data.delijn.be/stops/109275"], ["https://data.delijn.be/stops/401433", "https://data.delijn.be/stops/410147"], ["https://data.delijn.be/stops/503333", "https://data.delijn.be/stops/508253"], ["https://data.delijn.be/stops/400791", "https://data.delijn.be/stops/409545"], ["https://data.delijn.be/stops/300466", "https://data.delijn.be/stops/300467"], ["https://data.delijn.be/stops/305032", "https://data.delijn.be/stops/305033"], ["https://data.delijn.be/stops/502107", "https://data.delijn.be/stops/506051"], ["https://data.delijn.be/stops/504264", "https://data.delijn.be/stops/505183"], ["https://data.delijn.be/stops/204260", "https://data.delijn.be/stops/204475"], ["https://data.delijn.be/stops/102482", "https://data.delijn.be/stops/400399"], ["https://data.delijn.be/stops/403934", "https://data.delijn.be/stops/410256"], ["https://data.delijn.be/stops/101620", "https://data.delijn.be/stops/102625"], ["https://data.delijn.be/stops/103661", "https://data.delijn.be/stops/106218"], ["https://data.delijn.be/stops/201355", "https://data.delijn.be/stops/201570"], ["https://data.delijn.be/stops/101230", "https://data.delijn.be/stops/102500"], ["https://data.delijn.be/stops/107820", "https://data.delijn.be/stops/108290"], ["https://data.delijn.be/stops/204613", "https://data.delijn.be/stops/204772"], ["https://data.delijn.be/stops/406056", "https://data.delijn.be/stops/406138"], ["https://data.delijn.be/stops/300305", "https://data.delijn.be/stops/301285"], ["https://data.delijn.be/stops/501295", "https://data.delijn.be/stops/506315"], ["https://data.delijn.be/stops/101748", "https://data.delijn.be/stops/106392"], ["https://data.delijn.be/stops/302356", "https://data.delijn.be/stops/302750"], ["https://data.delijn.be/stops/301053", "https://data.delijn.be/stops/303831"], ["https://data.delijn.be/stops/206885", "https://data.delijn.be/stops/206916"], ["https://data.delijn.be/stops/504571", "https://data.delijn.be/stops/505898"], ["https://data.delijn.be/stops/300359", "https://data.delijn.be/stops/301402"], ["https://data.delijn.be/stops/106510", "https://data.delijn.be/stops/106512"], ["https://data.delijn.be/stops/405810", "https://data.delijn.be/stops/405893"], ["https://data.delijn.be/stops/408508", "https://data.delijn.be/stops/410250"], ["https://data.delijn.be/stops/505427", "https://data.delijn.be/stops/508487"], ["https://data.delijn.be/stops/502560", "https://data.delijn.be/stops/502562"], ["https://data.delijn.be/stops/402612", "https://data.delijn.be/stops/408485"], ["https://data.delijn.be/stops/503634", "https://data.delijn.be/stops/506765"], ["https://data.delijn.be/stops/403787", "https://data.delijn.be/stops/404062"], ["https://data.delijn.be/stops/503174", "https://data.delijn.be/stops/508174"], ["https://data.delijn.be/stops/202459", "https://data.delijn.be/stops/203485"], ["https://data.delijn.be/stops/201776", "https://data.delijn.be/stops/204974"], ["https://data.delijn.be/stops/404220", "https://data.delijn.be/stops/404222"], ["https://data.delijn.be/stops/404522", "https://data.delijn.be/stops/404585"], ["https://data.delijn.be/stops/504005", "https://data.delijn.be/stops/505375"], ["https://data.delijn.be/stops/200022", "https://data.delijn.be/stops/200145"], ["https://data.delijn.be/stops/505422", "https://data.delijn.be/stops/509614"], ["https://data.delijn.be/stops/204761", "https://data.delijn.be/stops/205759"], ["https://data.delijn.be/stops/404607", "https://data.delijn.be/stops/404608"], ["https://data.delijn.be/stops/504455", "https://data.delijn.be/stops/509453"], ["https://data.delijn.be/stops/303987", "https://data.delijn.be/stops/303988"], ["https://data.delijn.be/stops/400876", "https://data.delijn.be/stops/400877"], ["https://data.delijn.be/stops/408968", "https://data.delijn.be/stops/408969"], ["https://data.delijn.be/stops/304982", "https://data.delijn.be/stops/308030"], ["https://data.delijn.be/stops/103057", "https://data.delijn.be/stops/105001"], ["https://data.delijn.be/stops/201905", "https://data.delijn.be/stops/202514"], ["https://data.delijn.be/stops/501227", "https://data.delijn.be/stops/509840"], ["https://data.delijn.be/stops/504430", "https://data.delijn.be/stops/509424"], ["https://data.delijn.be/stops/504093", "https://data.delijn.be/stops/505288"], ["https://data.delijn.be/stops/209005", "https://data.delijn.be/stops/209097"], ["https://data.delijn.be/stops/302842", "https://data.delijn.be/stops/303316"], ["https://data.delijn.be/stops/204153", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/406037", "https://data.delijn.be/stops/406051"], ["https://data.delijn.be/stops/508899", "https://data.delijn.be/stops/509358"], ["https://data.delijn.be/stops/403066", "https://data.delijn.be/stops/403067"], ["https://data.delijn.be/stops/307217", "https://data.delijn.be/stops/307218"], ["https://data.delijn.be/stops/500049", "https://data.delijn.be/stops/500051"], ["https://data.delijn.be/stops/104881", "https://data.delijn.be/stops/104884"], ["https://data.delijn.be/stops/504360", "https://data.delijn.be/stops/509355"], ["https://data.delijn.be/stops/206956", "https://data.delijn.be/stops/207187"], ["https://data.delijn.be/stops/408692", "https://data.delijn.be/stops/408695"], ["https://data.delijn.be/stops/204446", "https://data.delijn.be/stops/204627"], ["https://data.delijn.be/stops/500566", "https://data.delijn.be/stops/501042"], ["https://data.delijn.be/stops/409360", "https://data.delijn.be/stops/409441"], ["https://data.delijn.be/stops/200870", "https://data.delijn.be/stops/203335"], ["https://data.delijn.be/stops/201493", "https://data.delijn.be/stops/203334"], ["https://data.delijn.be/stops/405998", "https://data.delijn.be/stops/405999"], ["https://data.delijn.be/stops/504446", "https://data.delijn.be/stops/509107"], ["https://data.delijn.be/stops/402200", "https://data.delijn.be/stops/402328"], ["https://data.delijn.be/stops/302703", "https://data.delijn.be/stops/302714"], ["https://data.delijn.be/stops/407242", "https://data.delijn.be/stops/407455"], ["https://data.delijn.be/stops/504583", "https://data.delijn.be/stops/509389"], ["https://data.delijn.be/stops/109832", "https://data.delijn.be/stops/109835"], ["https://data.delijn.be/stops/301916", "https://data.delijn.be/stops/305814"], ["https://data.delijn.be/stops/106933", "https://data.delijn.be/stops/109664"], ["https://data.delijn.be/stops/406264", "https://data.delijn.be/stops/406265"], ["https://data.delijn.be/stops/206625", "https://data.delijn.be/stops/207624"], ["https://data.delijn.be/stops/200229", "https://data.delijn.be/stops/201230"], ["https://data.delijn.be/stops/303411", "https://data.delijn.be/stops/303424"], ["https://data.delijn.be/stops/300393", "https://data.delijn.be/stops/304656"], ["https://data.delijn.be/stops/402298", "https://data.delijn.be/stops/402470"], ["https://data.delijn.be/stops/406464", "https://data.delijn.be/stops/406465"], ["https://data.delijn.be/stops/408228", "https://data.delijn.be/stops/408229"], ["https://data.delijn.be/stops/105512", "https://data.delijn.be/stops/105514"], ["https://data.delijn.be/stops/206725", "https://data.delijn.be/stops/206980"], ["https://data.delijn.be/stops/305776", "https://data.delijn.be/stops/305778"], ["https://data.delijn.be/stops/206442", "https://data.delijn.be/stops/209560"], ["https://data.delijn.be/stops/301400", "https://data.delijn.be/stops/303226"], ["https://data.delijn.be/stops/301444", "https://data.delijn.be/stops/306224"], ["https://data.delijn.be/stops/504978", "https://data.delijn.be/stops/504980"], ["https://data.delijn.be/stops/105387", "https://data.delijn.be/stops/105624"], ["https://data.delijn.be/stops/201358", "https://data.delijn.be/stops/208732"], ["https://data.delijn.be/stops/300274", "https://data.delijn.be/stops/300333"], ["https://data.delijn.be/stops/401300", "https://data.delijn.be/stops/401311"], ["https://data.delijn.be/stops/200894", "https://data.delijn.be/stops/202484"], ["https://data.delijn.be/stops/102394", "https://data.delijn.be/stops/108199"], ["https://data.delijn.be/stops/200163", "https://data.delijn.be/stops/203654"], ["https://data.delijn.be/stops/404892", "https://data.delijn.be/stops/404896"], ["https://data.delijn.be/stops/505248", "https://data.delijn.be/stops/505425"], ["https://data.delijn.be/stops/403956", "https://data.delijn.be/stops/407775"], ["https://data.delijn.be/stops/104785", "https://data.delijn.be/stops/104801"], ["https://data.delijn.be/stops/505625", "https://data.delijn.be/stops/507493"], ["https://data.delijn.be/stops/401376", "https://data.delijn.be/stops/401377"], ["https://data.delijn.be/stops/302757", "https://data.delijn.be/stops/302783"], ["https://data.delijn.be/stops/409267", "https://data.delijn.be/stops/409283"], ["https://data.delijn.be/stops/107283", "https://data.delijn.be/stops/107284"], ["https://data.delijn.be/stops/210017", "https://data.delijn.be/stops/211017"], ["https://data.delijn.be/stops/308503", "https://data.delijn.be/stops/308504"], ["https://data.delijn.be/stops/401298", "https://data.delijn.be/stops/401304"], ["https://data.delijn.be/stops/406928", "https://data.delijn.be/stops/406929"], ["https://data.delijn.be/stops/106457", "https://data.delijn.be/stops/107033"], ["https://data.delijn.be/stops/202446", "https://data.delijn.be/stops/203445"], ["https://data.delijn.be/stops/305131", "https://data.delijn.be/stops/305136"], ["https://data.delijn.be/stops/409403", "https://data.delijn.be/stops/410167"], ["https://data.delijn.be/stops/206015", "https://data.delijn.be/stops/207015"], ["https://data.delijn.be/stops/402359", "https://data.delijn.be/stops/402462"], ["https://data.delijn.be/stops/308136", "https://data.delijn.be/stops/308140"], ["https://data.delijn.be/stops/202192", "https://data.delijn.be/stops/203192"], ["https://data.delijn.be/stops/200979", "https://data.delijn.be/stops/201314"], ["https://data.delijn.be/stops/402133", "https://data.delijn.be/stops/405134"], ["https://data.delijn.be/stops/104597", "https://data.delijn.be/stops/109749"], ["https://data.delijn.be/stops/307301", "https://data.delijn.be/stops/307319"], ["https://data.delijn.be/stops/206451", "https://data.delijn.be/stops/206458"], ["https://data.delijn.be/stops/302186", "https://data.delijn.be/stops/302206"], ["https://data.delijn.be/stops/307740", "https://data.delijn.be/stops/307741"], ["https://data.delijn.be/stops/101466", "https://data.delijn.be/stops/101467"], ["https://data.delijn.be/stops/503651", "https://data.delijn.be/stops/508950"], ["https://data.delijn.be/stops/307147", "https://data.delijn.be/stops/307148"], ["https://data.delijn.be/stops/300542", "https://data.delijn.be/stops/300543"], ["https://data.delijn.be/stops/101705", "https://data.delijn.be/stops/101706"], ["https://data.delijn.be/stops/109243", "https://data.delijn.be/stops/109244"], ["https://data.delijn.be/stops/502217", "https://data.delijn.be/stops/507215"], ["https://data.delijn.be/stops/503705", "https://data.delijn.be/stops/508705"], ["https://data.delijn.be/stops/305658", "https://data.delijn.be/stops/305669"], ["https://data.delijn.be/stops/104747", "https://data.delijn.be/stops/104757"], ["https://data.delijn.be/stops/300559", "https://data.delijn.be/stops/300599"], ["https://data.delijn.be/stops/205094", "https://data.delijn.be/stops/205104"], ["https://data.delijn.be/stops/303412", "https://data.delijn.be/stops/303414"], ["https://data.delijn.be/stops/104018", "https://data.delijn.be/stops/106905"], ["https://data.delijn.be/stops/209610", "https://data.delijn.be/stops/307605"], ["https://data.delijn.be/stops/202244", "https://data.delijn.be/stops/205792"], ["https://data.delijn.be/stops/102925", "https://data.delijn.be/stops/104670"], ["https://data.delijn.be/stops/505504", "https://data.delijn.be/stops/505601"], ["https://data.delijn.be/stops/105214", "https://data.delijn.be/stops/105215"], ["https://data.delijn.be/stops/101932", "https://data.delijn.be/stops/106208"], ["https://data.delijn.be/stops/302775", "https://data.delijn.be/stops/304732"], ["https://data.delijn.be/stops/502356", "https://data.delijn.be/stops/507356"], ["https://data.delijn.be/stops/103338", "https://data.delijn.be/stops/103339"], ["https://data.delijn.be/stops/403110", "https://data.delijn.be/stops/403111"], ["https://data.delijn.be/stops/107131", "https://data.delijn.be/stops/109650"], ["https://data.delijn.be/stops/306872", "https://data.delijn.be/stops/307422"], ["https://data.delijn.be/stops/502501", "https://data.delijn.be/stops/505588"], ["https://data.delijn.be/stops/304209", "https://data.delijn.be/stops/306003"], ["https://data.delijn.be/stops/503977", "https://data.delijn.be/stops/508975"], ["https://data.delijn.be/stops/208143", "https://data.delijn.be/stops/209698"], ["https://data.delijn.be/stops/202493", "https://data.delijn.be/stops/203492"], ["https://data.delijn.be/stops/206603", "https://data.delijn.be/stops/217020"], ["https://data.delijn.be/stops/107546", "https://data.delijn.be/stops/107548"], ["https://data.delijn.be/stops/302136", "https://data.delijn.be/stops/302137"], ["https://data.delijn.be/stops/402356", "https://data.delijn.be/stops/402357"], ["https://data.delijn.be/stops/304550", "https://data.delijn.be/stops/304660"], ["https://data.delijn.be/stops/504787", "https://data.delijn.be/stops/508269"], ["https://data.delijn.be/stops/305269", "https://data.delijn.be/stops/305318"], ["https://data.delijn.be/stops/104919", "https://data.delijn.be/stops/208900"], ["https://data.delijn.be/stops/101778", "https://data.delijn.be/stops/102191"], ["https://data.delijn.be/stops/403336", "https://data.delijn.be/stops/410026"], ["https://data.delijn.be/stops/102218", "https://data.delijn.be/stops/105536"], ["https://data.delijn.be/stops/200569", "https://data.delijn.be/stops/201573"], ["https://data.delijn.be/stops/400841", "https://data.delijn.be/stops/409575"], ["https://data.delijn.be/stops/107014", "https://data.delijn.be/stops/107018"], ["https://data.delijn.be/stops/203170", "https://data.delijn.be/stops/211043"], ["https://data.delijn.be/stops/400179", "https://data.delijn.be/stops/400276"], ["https://data.delijn.be/stops/200073", "https://data.delijn.be/stops/203353"], ["https://data.delijn.be/stops/204366", "https://data.delijn.be/stops/214012"], ["https://data.delijn.be/stops/202520", "https://data.delijn.be/stops/203521"], ["https://data.delijn.be/stops/202361", "https://data.delijn.be/stops/205950"], ["https://data.delijn.be/stops/201697", "https://data.delijn.be/stops/202391"], ["https://data.delijn.be/stops/503190", "https://data.delijn.be/stops/508190"], ["https://data.delijn.be/stops/306936", "https://data.delijn.be/stops/306937"], ["https://data.delijn.be/stops/407225", "https://data.delijn.be/stops/407226"], ["https://data.delijn.be/stops/209055", "https://data.delijn.be/stops/209056"], ["https://data.delijn.be/stops/501768", "https://data.delijn.be/stops/505964"], ["https://data.delijn.be/stops/503868", "https://data.delijn.be/stops/508265"], ["https://data.delijn.be/stops/406185", "https://data.delijn.be/stops/406430"], ["https://data.delijn.be/stops/105072", "https://data.delijn.be/stops/106496"], ["https://data.delijn.be/stops/102727", "https://data.delijn.be/stops/205605"], ["https://data.delijn.be/stops/207447", "https://data.delijn.be/stops/207479"], ["https://data.delijn.be/stops/108239", "https://data.delijn.be/stops/108242"], ["https://data.delijn.be/stops/106449", "https://data.delijn.be/stops/106451"], ["https://data.delijn.be/stops/302364", "https://data.delijn.be/stops/302365"], ["https://data.delijn.be/stops/503188", "https://data.delijn.be/stops/503385"], ["https://data.delijn.be/stops/402853", "https://data.delijn.be/stops/306043"], ["https://data.delijn.be/stops/408250", "https://data.delijn.be/stops/408412"], ["https://data.delijn.be/stops/202369", "https://data.delijn.be/stops/202370"], ["https://data.delijn.be/stops/102170", "https://data.delijn.be/stops/102171"], ["https://data.delijn.be/stops/402331", "https://data.delijn.be/stops/402501"], ["https://data.delijn.be/stops/206788", "https://data.delijn.be/stops/208561"], ["https://data.delijn.be/stops/200658", "https://data.delijn.be/stops/201334"], ["https://data.delijn.be/stops/206150", "https://data.delijn.be/stops/207149"], ["https://data.delijn.be/stops/401849", "https://data.delijn.be/stops/406192"], ["https://data.delijn.be/stops/403128", "https://data.delijn.be/stops/409253"], ["https://data.delijn.be/stops/401970", "https://data.delijn.be/stops/408095"], ["https://data.delijn.be/stops/105247", "https://data.delijn.be/stops/109976"], ["https://data.delijn.be/stops/201325", "https://data.delijn.be/stops/211105"], ["https://data.delijn.be/stops/201161", "https://data.delijn.be/stops/201527"], ["https://data.delijn.be/stops/503445", "https://data.delijn.be/stops/508370"], ["https://data.delijn.be/stops/504840", "https://data.delijn.be/stops/508152"], ["https://data.delijn.be/stops/305767", "https://data.delijn.be/stops/305784"], ["https://data.delijn.be/stops/509447", "https://data.delijn.be/stops/509449"], ["https://data.delijn.be/stops/404999", "https://data.delijn.be/stops/405531"], ["https://data.delijn.be/stops/302341", "https://data.delijn.be/stops/302344"], ["https://data.delijn.be/stops/505928", "https://data.delijn.be/stops/509488"], ["https://data.delijn.be/stops/301889", "https://data.delijn.be/stops/305973"], ["https://data.delijn.be/stops/204459", "https://data.delijn.be/stops/205108"], ["https://data.delijn.be/stops/202508", "https://data.delijn.be/stops/202509"], ["https://data.delijn.be/stops/401479", "https://data.delijn.be/stops/402082"], ["https://data.delijn.be/stops/200927", "https://data.delijn.be/stops/203228"], ["https://data.delijn.be/stops/304379", "https://data.delijn.be/stops/304381"], ["https://data.delijn.be/stops/205237", "https://data.delijn.be/stops/207284"], ["https://data.delijn.be/stops/502814", "https://data.delijn.be/stops/505364"], ["https://data.delijn.be/stops/101506", "https://data.delijn.be/stops/109037"], ["https://data.delijn.be/stops/200490", "https://data.delijn.be/stops/201491"], ["https://data.delijn.be/stops/204075", "https://data.delijn.be/stops/205793"], ["https://data.delijn.be/stops/303734", "https://data.delijn.be/stops/303737"], ["https://data.delijn.be/stops/207329", "https://data.delijn.be/stops/308846"], ["https://data.delijn.be/stops/300708", "https://data.delijn.be/stops/303410"], ["https://data.delijn.be/stops/402519", "https://data.delijn.be/stops/402586"], ["https://data.delijn.be/stops/102401", "https://data.delijn.be/stops/102566"], ["https://data.delijn.be/stops/103376", "https://data.delijn.be/stops/406853"], ["https://data.delijn.be/stops/400936", "https://data.delijn.be/stops/400937"], ["https://data.delijn.be/stops/103494", "https://data.delijn.be/stops/106213"], ["https://data.delijn.be/stops/200595", "https://data.delijn.be/stops/201598"], ["https://data.delijn.be/stops/408037", "https://data.delijn.be/stops/408199"], ["https://data.delijn.be/stops/503016", "https://data.delijn.be/stops/503821"], ["https://data.delijn.be/stops/208288", "https://data.delijn.be/stops/209286"], ["https://data.delijn.be/stops/402781", "https://data.delijn.be/stops/402785"], ["https://data.delijn.be/stops/205981", "https://data.delijn.be/stops/208691"], ["https://data.delijn.be/stops/300024", "https://data.delijn.be/stops/300412"], ["https://data.delijn.be/stops/307064", "https://data.delijn.be/stops/307067"], ["https://data.delijn.be/stops/102831", "https://data.delijn.be/stops/104982"], ["https://data.delijn.be/stops/208331", "https://data.delijn.be/stops/208715"], ["https://data.delijn.be/stops/102701", "https://data.delijn.be/stops/102702"], ["https://data.delijn.be/stops/300600", "https://data.delijn.be/stops/300618"], ["https://data.delijn.be/stops/306942", "https://data.delijn.be/stops/306949"], ["https://data.delijn.be/stops/508909", "https://data.delijn.be/stops/509946"], ["https://data.delijn.be/stops/202578", "https://data.delijn.be/stops/203578"], ["https://data.delijn.be/stops/203680", "https://data.delijn.be/stops/203693"], ["https://data.delijn.be/stops/206524", "https://data.delijn.be/stops/207003"], ["https://data.delijn.be/stops/504260", "https://data.delijn.be/stops/508751"], ["https://data.delijn.be/stops/102623", "https://data.delijn.be/stops/108214"], ["https://data.delijn.be/stops/204211", "https://data.delijn.be/stops/207356"], ["https://data.delijn.be/stops/503674", "https://data.delijn.be/stops/505258"], ["https://data.delijn.be/stops/306723", "https://data.delijn.be/stops/306724"], ["https://data.delijn.be/stops/109239", "https://data.delijn.be/stops/109245"], ["https://data.delijn.be/stops/503357", "https://data.delijn.be/stops/508357"], ["https://data.delijn.be/stops/507250", "https://data.delijn.be/stops/507252"], ["https://data.delijn.be/stops/102209", "https://data.delijn.be/stops/106731"], ["https://data.delijn.be/stops/102921", "https://data.delijn.be/stops/104491"], ["https://data.delijn.be/stops/303271", "https://data.delijn.be/stops/305725"], ["https://data.delijn.be/stops/203294", "https://data.delijn.be/stops/203334"], ["https://data.delijn.be/stops/502345", "https://data.delijn.be/stops/507344"], ["https://data.delijn.be/stops/407130", "https://data.delijn.be/stops/407343"], ["https://data.delijn.be/stops/401637", "https://data.delijn.be/stops/401639"], ["https://data.delijn.be/stops/202379", "https://data.delijn.be/stops/202442"], ["https://data.delijn.be/stops/200148", "https://data.delijn.be/stops/201148"], ["https://data.delijn.be/stops/301268", "https://data.delijn.be/stops/308029"], ["https://data.delijn.be/stops/504007", "https://data.delijn.be/stops/505205"], ["https://data.delijn.be/stops/108617", "https://data.delijn.be/stops/300652"], ["https://data.delijn.be/stops/105351", "https://data.delijn.be/stops/105565"], ["https://data.delijn.be/stops/402136", "https://data.delijn.be/stops/402154"], ["https://data.delijn.be/stops/304753", "https://data.delijn.be/stops/308701"], ["https://data.delijn.be/stops/406167", "https://data.delijn.be/stops/410225"], ["https://data.delijn.be/stops/502646", "https://data.delijn.be/stops/502742"], ["https://data.delijn.be/stops/103542", "https://data.delijn.be/stops/106729"], ["https://data.delijn.be/stops/507750", "https://data.delijn.be/stops/507751"], ["https://data.delijn.be/stops/406874", "https://data.delijn.be/stops/409755"], ["https://data.delijn.be/stops/405694", "https://data.delijn.be/stops/405696"], ["https://data.delijn.be/stops/102073", "https://data.delijn.be/stops/108806"], ["https://data.delijn.be/stops/105238", "https://data.delijn.be/stops/105241"], ["https://data.delijn.be/stops/404726", "https://data.delijn.be/stops/404834"], ["https://data.delijn.be/stops/509028", "https://data.delijn.be/stops/509032"], ["https://data.delijn.be/stops/303709", "https://data.delijn.be/stops/303740"], ["https://data.delijn.be/stops/403055", "https://data.delijn.be/stops/403228"], ["https://data.delijn.be/stops/302675", "https://data.delijn.be/stops/302690"], ["https://data.delijn.be/stops/300888", "https://data.delijn.be/stops/303832"], ["https://data.delijn.be/stops/406514", "https://data.delijn.be/stops/406515"], ["https://data.delijn.be/stops/206821", "https://data.delijn.be/stops/207821"], ["https://data.delijn.be/stops/208146", "https://data.delijn.be/stops/209582"], ["https://data.delijn.be/stops/408920", "https://data.delijn.be/stops/408925"], ["https://data.delijn.be/stops/503979", "https://data.delijn.be/stops/507356"], ["https://data.delijn.be/stops/404603", "https://data.delijn.be/stops/404608"], ["https://data.delijn.be/stops/108396", "https://data.delijn.be/stops/108398"], ["https://data.delijn.be/stops/402984", "https://data.delijn.be/stops/408556"], ["https://data.delijn.be/stops/203279", "https://data.delijn.be/stops/203892"], ["https://data.delijn.be/stops/400062", "https://data.delijn.be/stops/400063"], ["https://data.delijn.be/stops/506085", "https://data.delijn.be/stops/506099"], ["https://data.delijn.be/stops/406869", "https://data.delijn.be/stops/406870"], ["https://data.delijn.be/stops/402678", "https://data.delijn.be/stops/402727"], ["https://data.delijn.be/stops/208054", "https://data.delijn.be/stops/209054"], ["https://data.delijn.be/stops/205161", "https://data.delijn.be/stops/206396"], ["https://data.delijn.be/stops/200628", "https://data.delijn.be/stops/218003"], ["https://data.delijn.be/stops/204248", "https://data.delijn.be/stops/205222"], ["https://data.delijn.be/stops/206245", "https://data.delijn.be/stops/206403"], ["https://data.delijn.be/stops/501406", "https://data.delijn.be/stops/506176"], ["https://data.delijn.be/stops/405333", "https://data.delijn.be/stops/405342"], ["https://data.delijn.be/stops/103637", "https://data.delijn.be/stops/107165"], ["https://data.delijn.be/stops/106597", "https://data.delijn.be/stops/107241"], ["https://data.delijn.be/stops/202524", "https://data.delijn.be/stops/202960"], ["https://data.delijn.be/stops/105694", "https://data.delijn.be/stops/105696"], ["https://data.delijn.be/stops/108178", "https://data.delijn.be/stops/108349"], ["https://data.delijn.be/stops/401040", "https://data.delijn.be/stops/401120"], ["https://data.delijn.be/stops/200632", "https://data.delijn.be/stops/201660"], ["https://data.delijn.be/stops/206747", "https://data.delijn.be/stops/207698"], ["https://data.delijn.be/stops/106430", "https://data.delijn.be/stops/106500"], ["https://data.delijn.be/stops/502324", "https://data.delijn.be/stops/507324"], ["https://data.delijn.be/stops/305403", "https://data.delijn.be/stops/305404"], ["https://data.delijn.be/stops/109048", "https://data.delijn.be/stops/300067"], ["https://data.delijn.be/stops/208231", "https://data.delijn.be/stops/208796"], ["https://data.delijn.be/stops/400544", "https://data.delijn.be/stops/400545"], ["https://data.delijn.be/stops/503164", "https://data.delijn.be/stops/508864"], ["https://data.delijn.be/stops/301102", "https://data.delijn.be/stops/308871"], ["https://data.delijn.be/stops/400559", "https://data.delijn.be/stops/403829"], ["https://data.delijn.be/stops/506623", "https://data.delijn.be/stops/506624"], ["https://data.delijn.be/stops/206478", "https://data.delijn.be/stops/207175"], ["https://data.delijn.be/stops/103605", "https://data.delijn.be/stops/109401"], ["https://data.delijn.be/stops/301372", "https://data.delijn.be/stops/306684"], ["https://data.delijn.be/stops/204322", "https://data.delijn.be/stops/205060"], ["https://data.delijn.be/stops/104405", "https://data.delijn.be/stops/104627"], ["https://data.delijn.be/stops/304866", "https://data.delijn.be/stops/306416"], ["https://data.delijn.be/stops/209176", "https://data.delijn.be/stops/209177"], ["https://data.delijn.be/stops/400749", "https://data.delijn.be/stops/409580"], ["https://data.delijn.be/stops/201546", "https://data.delijn.be/stops/203896"], ["https://data.delijn.be/stops/406066", "https://data.delijn.be/stops/410148"], ["https://data.delijn.be/stops/501418", "https://data.delijn.be/stops/506418"], ["https://data.delijn.be/stops/204042", "https://data.delijn.be/stops/205483"], ["https://data.delijn.be/stops/301507", "https://data.delijn.be/stops/301517"], ["https://data.delijn.be/stops/105705", "https://data.delijn.be/stops/105710"], ["https://data.delijn.be/stops/203815", "https://data.delijn.be/stops/209746"], ["https://data.delijn.be/stops/406322", "https://data.delijn.be/stops/406323"], ["https://data.delijn.be/stops/204002", "https://data.delijn.be/stops/204718"], ["https://data.delijn.be/stops/109293", "https://data.delijn.be/stops/109704"], ["https://data.delijn.be/stops/300789", "https://data.delijn.be/stops/302407"], ["https://data.delijn.be/stops/408114", "https://data.delijn.be/stops/408454"], ["https://data.delijn.be/stops/105270", "https://data.delijn.be/stops/105275"], ["https://data.delijn.be/stops/106494", "https://data.delijn.be/stops/109255"], ["https://data.delijn.be/stops/108677", "https://data.delijn.be/stops/109739"], ["https://data.delijn.be/stops/301849", "https://data.delijn.be/stops/305871"], ["https://data.delijn.be/stops/204119", "https://data.delijn.be/stops/205119"], ["https://data.delijn.be/stops/303890", "https://data.delijn.be/stops/307796"], ["https://data.delijn.be/stops/405737", "https://data.delijn.be/stops/405739"], ["https://data.delijn.be/stops/304025", "https://data.delijn.be/stops/304111"], ["https://data.delijn.be/stops/202410", "https://data.delijn.be/stops/204943"], ["https://data.delijn.be/stops/306869", "https://data.delijn.be/stops/307422"], ["https://data.delijn.be/stops/301156", "https://data.delijn.be/stops/301166"], ["https://data.delijn.be/stops/206953", "https://data.delijn.be/stops/207923"], ["https://data.delijn.be/stops/401538", "https://data.delijn.be/stops/401892"], ["https://data.delijn.be/stops/504980", "https://data.delijn.be/stops/504982"], ["https://data.delijn.be/stops/203839", "https://data.delijn.be/stops/219002"], ["https://data.delijn.be/stops/502193", "https://data.delijn.be/stops/502202"], ["https://data.delijn.be/stops/503328", "https://data.delijn.be/stops/505816"], ["https://data.delijn.be/stops/202902", "https://data.delijn.be/stops/211127"], ["https://data.delijn.be/stops/107037", "https://data.delijn.be/stops/109558"], ["https://data.delijn.be/stops/108898", "https://data.delijn.be/stops/108901"], ["https://data.delijn.be/stops/206367", "https://data.delijn.be/stops/207194"], ["https://data.delijn.be/stops/505427", "https://data.delijn.be/stops/509479"], ["https://data.delijn.be/stops/405389", "https://data.delijn.be/stops/409256"], ["https://data.delijn.be/stops/302253", "https://data.delijn.be/stops/304314"], ["https://data.delijn.be/stops/403223", "https://data.delijn.be/stops/403385"], ["https://data.delijn.be/stops/307650", "https://data.delijn.be/stops/307691"], ["https://data.delijn.be/stops/504595", "https://data.delijn.be/stops/504597"], ["https://data.delijn.be/stops/401000", "https://data.delijn.be/stops/401009"], ["https://data.delijn.be/stops/201921", "https://data.delijn.be/stops/203523"], ["https://data.delijn.be/stops/305647", "https://data.delijn.be/stops/307102"], ["https://data.delijn.be/stops/401951", "https://data.delijn.be/stops/407559"], ["https://data.delijn.be/stops/306745", "https://data.delijn.be/stops/306885"], ["https://data.delijn.be/stops/208124", "https://data.delijn.be/stops/209076"], ["https://data.delijn.be/stops/301365", "https://data.delijn.be/stops/308767"], ["https://data.delijn.be/stops/405476", "https://data.delijn.be/stops/406623"], ["https://data.delijn.be/stops/200948", "https://data.delijn.be/stops/202048"], ["https://data.delijn.be/stops/203198", "https://data.delijn.be/stops/203199"], ["https://data.delijn.be/stops/208154", "https://data.delijn.be/stops/208155"], ["https://data.delijn.be/stops/505949", "https://data.delijn.be/stops/508310"], ["https://data.delijn.be/stops/405442", "https://data.delijn.be/stops/408689"], ["https://data.delijn.be/stops/102422", "https://data.delijn.be/stops/107321"], ["https://data.delijn.be/stops/402248", "https://data.delijn.be/stops/402249"], ["https://data.delijn.be/stops/104573", "https://data.delijn.be/stops/107531"], ["https://data.delijn.be/stops/208027", "https://data.delijn.be/stops/209014"], ["https://data.delijn.be/stops/104418", "https://data.delijn.be/stops/104419"], ["https://data.delijn.be/stops/503674", "https://data.delijn.be/stops/508672"], ["https://data.delijn.be/stops/506191", "https://data.delijn.be/stops/506379"], ["https://data.delijn.be/stops/501448", "https://data.delijn.be/stops/506362"], ["https://data.delijn.be/stops/204120", "https://data.delijn.be/stops/205120"], ["https://data.delijn.be/stops/403473", "https://data.delijn.be/stops/410061"], ["https://data.delijn.be/stops/304511", "https://data.delijn.be/stops/305277"], ["https://data.delijn.be/stops/501212", "https://data.delijn.be/stops/501216"], ["https://data.delijn.be/stops/504493", "https://data.delijn.be/stops/504730"], ["https://data.delijn.be/stops/402612", "https://data.delijn.be/stops/402626"], ["https://data.delijn.be/stops/403092", "https://data.delijn.be/stops/403234"], ["https://data.delijn.be/stops/405875", "https://data.delijn.be/stops/408371"], ["https://data.delijn.be/stops/304320", "https://data.delijn.be/stops/307005"], ["https://data.delijn.be/stops/204636", "https://data.delijn.be/stops/204637"], ["https://data.delijn.be/stops/106262", "https://data.delijn.be/stops/106276"], ["https://data.delijn.be/stops/501041", "https://data.delijn.be/stops/506128"], ["https://data.delijn.be/stops/507386", "https://data.delijn.be/stops/509794"], ["https://data.delijn.be/stops/203964", "https://data.delijn.be/stops/205770"], ["https://data.delijn.be/stops/104453", "https://data.delijn.be/stops/107493"], ["https://data.delijn.be/stops/206082", "https://data.delijn.be/stops/207082"], ["https://data.delijn.be/stops/509523", "https://data.delijn.be/stops/509604"], ["https://data.delijn.be/stops/103909", "https://data.delijn.be/stops/106361"], ["https://data.delijn.be/stops/405859", "https://data.delijn.be/stops/405862"], ["https://data.delijn.be/stops/103998", "https://data.delijn.be/stops/104007"], ["https://data.delijn.be/stops/305033", "https://data.delijn.be/stops/305035"], ["https://data.delijn.be/stops/302868", "https://data.delijn.be/stops/304184"], ["https://data.delijn.be/stops/503061", "https://data.delijn.be/stops/504999"], ["https://data.delijn.be/stops/208786", "https://data.delijn.be/stops/209177"], ["https://data.delijn.be/stops/105459", "https://data.delijn.be/stops/109893"], ["https://data.delijn.be/stops/503771", "https://data.delijn.be/stops/508775"], ["https://data.delijn.be/stops/402519", "https://data.delijn.be/stops/404098"], ["https://data.delijn.be/stops/103132", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/201497", "https://data.delijn.be/stops/201941"], ["https://data.delijn.be/stops/501240", "https://data.delijn.be/stops/501242"], ["https://data.delijn.be/stops/105030", "https://data.delijn.be/stops/105775"], ["https://data.delijn.be/stops/102469", "https://data.delijn.be/stops/400413"], ["https://data.delijn.be/stops/501599", "https://data.delijn.be/stops/506599"], ["https://data.delijn.be/stops/301063", "https://data.delijn.be/stops/305918"], ["https://data.delijn.be/stops/503570", "https://data.delijn.be/stops/508554"], ["https://data.delijn.be/stops/508495", "https://data.delijn.be/stops/509456"], ["https://data.delijn.be/stops/406151", "https://data.delijn.be/stops/406208"], ["https://data.delijn.be/stops/304129", "https://data.delijn.be/stops/305879"], ["https://data.delijn.be/stops/507608", "https://data.delijn.be/stops/507609"], ["https://data.delijn.be/stops/101146", "https://data.delijn.be/stops/109542"], ["https://data.delijn.be/stops/501615", "https://data.delijn.be/stops/501617"], ["https://data.delijn.be/stops/204992", "https://data.delijn.be/stops/208332"], ["https://data.delijn.be/stops/502263", "https://data.delijn.be/stops/507351"], ["https://data.delijn.be/stops/106394", "https://data.delijn.be/stops/108540"], ["https://data.delijn.be/stops/208148", "https://data.delijn.be/stops/209403"], ["https://data.delijn.be/stops/400736", "https://data.delijn.be/stops/409442"], ["https://data.delijn.be/stops/503556", "https://data.delijn.be/stops/503575"], ["https://data.delijn.be/stops/509017", "https://data.delijn.be/stops/509507"], ["https://data.delijn.be/stops/300759", "https://data.delijn.be/stops/301038"], ["https://data.delijn.be/stops/208495", "https://data.delijn.be/stops/209494"], ["https://data.delijn.be/stops/206910", "https://data.delijn.be/stops/206911"], ["https://data.delijn.be/stops/501493", "https://data.delijn.be/stops/506104"], ["https://data.delijn.be/stops/501630", "https://data.delijn.be/stops/501634"], ["https://data.delijn.be/stops/101777", "https://data.delijn.be/stops/107697"], ["https://data.delijn.be/stops/105487", "https://data.delijn.be/stops/105493"], ["https://data.delijn.be/stops/405556", "https://data.delijn.be/stops/405576"], ["https://data.delijn.be/stops/204929", "https://data.delijn.be/stops/211048"], ["https://data.delijn.be/stops/504363", "https://data.delijn.be/stops/509496"], ["https://data.delijn.be/stops/208215", "https://data.delijn.be/stops/209215"], ["https://data.delijn.be/stops/103970", "https://data.delijn.be/stops/106065"], ["https://data.delijn.be/stops/407882", "https://data.delijn.be/stops/408189"], ["https://data.delijn.be/stops/405165", "https://data.delijn.be/stops/405216"], ["https://data.delijn.be/stops/201691", "https://data.delijn.be/stops/203364"], ["https://data.delijn.be/stops/300640", "https://data.delijn.be/stops/300646"], ["https://data.delijn.be/stops/307070", "https://data.delijn.be/stops/307071"], ["https://data.delijn.be/stops/405619", "https://data.delijn.be/stops/407185"], ["https://data.delijn.be/stops/206241", "https://data.delijn.be/stops/206405"], ["https://data.delijn.be/stops/300177", "https://data.delijn.be/stops/300182"], ["https://data.delijn.be/stops/102086", "https://data.delijn.be/stops/102087"], ["https://data.delijn.be/stops/504071", "https://data.delijn.be/stops/504851"], ["https://data.delijn.be/stops/403589", "https://data.delijn.be/stops/403867"], ["https://data.delijn.be/stops/503593", "https://data.delijn.be/stops/508222"], ["https://data.delijn.be/stops/208527", "https://data.delijn.be/stops/209082"], ["https://data.delijn.be/stops/103318", "https://data.delijn.be/stops/107065"], ["https://data.delijn.be/stops/101671", "https://data.delijn.be/stops/107661"], ["https://data.delijn.be/stops/107568", "https://data.delijn.be/stops/107739"], ["https://data.delijn.be/stops/104921", "https://data.delijn.be/stops/107859"], ["https://data.delijn.be/stops/502494", "https://data.delijn.be/stops/502812"], ["https://data.delijn.be/stops/206759", "https://data.delijn.be/stops/218020"], ["https://data.delijn.be/stops/102464", "https://data.delijn.be/stops/102466"], ["https://data.delijn.be/stops/108355", "https://data.delijn.be/stops/108360"], ["https://data.delijn.be/stops/304546", "https://data.delijn.be/stops/304698"], ["https://data.delijn.be/stops/203192", "https://data.delijn.be/stops/210855"], ["https://data.delijn.be/stops/304416", "https://data.delijn.be/stops/307501"], ["https://data.delijn.be/stops/404920", "https://data.delijn.be/stops/404954"], ["https://data.delijn.be/stops/208677", "https://data.delijn.be/stops/209431"], ["https://data.delijn.be/stops/104378", "https://data.delijn.be/stops/104381"], ["https://data.delijn.be/stops/202470", "https://data.delijn.be/stops/209852"], ["https://data.delijn.be/stops/502056", "https://data.delijn.be/stops/502933"], ["https://data.delijn.be/stops/200147", "https://data.delijn.be/stops/201112"], ["https://data.delijn.be/stops/408912", "https://data.delijn.be/stops/408913"], ["https://data.delijn.be/stops/509517", "https://data.delijn.be/stops/509518"], ["https://data.delijn.be/stops/503314", "https://data.delijn.be/stops/505949"], ["https://data.delijn.be/stops/306069", "https://data.delijn.be/stops/306728"], ["https://data.delijn.be/stops/105552", "https://data.delijn.be/stops/105566"], ["https://data.delijn.be/stops/208570", "https://data.delijn.be/stops/208571"], ["https://data.delijn.be/stops/301881", "https://data.delijn.be/stops/305973"], ["https://data.delijn.be/stops/200861", "https://data.delijn.be/stops/211017"], ["https://data.delijn.be/stops/208367", "https://data.delijn.be/stops/208777"], ["https://data.delijn.be/stops/404139", "https://data.delijn.be/stops/405918"], ["https://data.delijn.be/stops/203909", "https://data.delijn.be/stops/203948"], ["https://data.delijn.be/stops/401408", "https://data.delijn.be/stops/301106"], ["https://data.delijn.be/stops/207864", "https://data.delijn.be/stops/209466"], ["https://data.delijn.be/stops/505692", "https://data.delijn.be/stops/507545"], ["https://data.delijn.be/stops/106193", "https://data.delijn.be/stops/106194"], ["https://data.delijn.be/stops/304734", "https://data.delijn.be/stops/304735"], ["https://data.delijn.be/stops/306257", "https://data.delijn.be/stops/306258"], ["https://data.delijn.be/stops/304990", "https://data.delijn.be/stops/304993"], ["https://data.delijn.be/stops/407342", "https://data.delijn.be/stops/407343"], ["https://data.delijn.be/stops/404442", "https://data.delijn.be/stops/404552"], ["https://data.delijn.be/stops/401165", "https://data.delijn.be/stops/410023"], ["https://data.delijn.be/stops/304781", "https://data.delijn.be/stops/304798"], ["https://data.delijn.be/stops/505164", "https://data.delijn.be/stops/509009"], ["https://data.delijn.be/stops/308251", "https://data.delijn.be/stops/308671"], ["https://data.delijn.be/stops/404740", "https://data.delijn.be/stops/404749"], ["https://data.delijn.be/stops/304348", "https://data.delijn.be/stops/307007"], ["https://data.delijn.be/stops/503901", "https://data.delijn.be/stops/503905"], ["https://data.delijn.be/stops/105763", "https://data.delijn.be/stops/109528"], ["https://data.delijn.be/stops/200759", "https://data.delijn.be/stops/200774"], ["https://data.delijn.be/stops/108636", "https://data.delijn.be/stops/109663"], ["https://data.delijn.be/stops/200592", "https://data.delijn.be/stops/201591"], ["https://data.delijn.be/stops/501716", "https://data.delijn.be/stops/506606"], ["https://data.delijn.be/stops/303520", "https://data.delijn.be/stops/303522"], ["https://data.delijn.be/stops/507540", "https://data.delijn.be/stops/507565"], ["https://data.delijn.be/stops/404918", "https://data.delijn.be/stops/404939"], ["https://data.delijn.be/stops/305169", "https://data.delijn.be/stops/305176"], ["https://data.delijn.be/stops/505172", "https://data.delijn.be/stops/505309"], ["https://data.delijn.be/stops/404304", "https://data.delijn.be/stops/410082"], ["https://data.delijn.be/stops/409274", "https://data.delijn.be/stops/409275"], ["https://data.delijn.be/stops/102251", "https://data.delijn.be/stops/102253"], ["https://data.delijn.be/stops/300595", "https://data.delijn.be/stops/300596"], ["https://data.delijn.be/stops/504364", "https://data.delijn.be/stops/508009"], ["https://data.delijn.be/stops/302176", "https://data.delijn.be/stops/302177"], ["https://data.delijn.be/stops/503084", "https://data.delijn.be/stops/508084"], ["https://data.delijn.be/stops/303810", "https://data.delijn.be/stops/303824"], ["https://data.delijn.be/stops/403990", "https://data.delijn.be/stops/410015"], ["https://data.delijn.be/stops/305528", "https://data.delijn.be/stops/305554"], ["https://data.delijn.be/stops/208970", "https://data.delijn.be/stops/209707"], ["https://data.delijn.be/stops/302390", "https://data.delijn.be/stops/302393"], ["https://data.delijn.be/stops/408244", "https://data.delijn.be/stops/308279"], ["https://data.delijn.be/stops/105170", "https://data.delijn.be/stops/107210"], ["https://data.delijn.be/stops/407625", "https://data.delijn.be/stops/410193"], ["https://data.delijn.be/stops/200172", "https://data.delijn.be/stops/201149"], ["https://data.delijn.be/stops/102499", "https://data.delijn.be/stops/400025"], ["https://data.delijn.be/stops/202820", "https://data.delijn.be/stops/203820"], ["https://data.delijn.be/stops/501326", "https://data.delijn.be/stops/501359"], ["https://data.delijn.be/stops/406012", "https://data.delijn.be/stops/406148"], ["https://data.delijn.be/stops/102571", "https://data.delijn.be/stops/109236"], ["https://data.delijn.be/stops/303049", "https://data.delijn.be/stops/306107"], ["https://data.delijn.be/stops/304504", "https://data.delijn.be/stops/304505"], ["https://data.delijn.be/stops/206373", "https://data.delijn.be/stops/207728"], ["https://data.delijn.be/stops/302451", "https://data.delijn.be/stops/307140"], ["https://data.delijn.be/stops/200926", "https://data.delijn.be/stops/202393"], ["https://data.delijn.be/stops/107877", "https://data.delijn.be/stops/107878"], ["https://data.delijn.be/stops/403510", "https://data.delijn.be/stops/403551"], ["https://data.delijn.be/stops/503828", "https://data.delijn.be/stops/508675"], ["https://data.delijn.be/stops/501014", "https://data.delijn.be/stops/506615"], ["https://data.delijn.be/stops/503970", "https://data.delijn.be/stops/508970"], ["https://data.delijn.be/stops/207208", "https://data.delijn.be/stops/207722"], ["https://data.delijn.be/stops/202305", "https://data.delijn.be/stops/203305"], ["https://data.delijn.be/stops/505824", "https://data.delijn.be/stops/506507"], ["https://data.delijn.be/stops/409143", "https://data.delijn.be/stops/409144"], ["https://data.delijn.be/stops/505283", "https://data.delijn.be/stops/505996"], ["https://data.delijn.be/stops/401393", "https://data.delijn.be/stops/401478"], ["https://data.delijn.be/stops/102874", "https://data.delijn.be/stops/103363"], ["https://data.delijn.be/stops/106276", "https://data.delijn.be/stops/106278"], ["https://data.delijn.be/stops/301356", "https://data.delijn.be/stops/304687"], ["https://data.delijn.be/stops/104559", "https://data.delijn.be/stops/104561"], ["https://data.delijn.be/stops/106291", "https://data.delijn.be/stops/106313"], ["https://data.delijn.be/stops/101023", "https://data.delijn.be/stops/106040"], ["https://data.delijn.be/stops/109039", "https://data.delijn.be/stops/109081"], ["https://data.delijn.be/stops/502361", "https://data.delijn.be/stops/507374"], ["https://data.delijn.be/stops/107089", "https://data.delijn.be/stops/107091"], ["https://data.delijn.be/stops/401653", "https://data.delijn.be/stops/401654"], ["https://data.delijn.be/stops/504810", "https://data.delijn.be/stops/504811"], ["https://data.delijn.be/stops/505706", "https://data.delijn.be/stops/505709"], ["https://data.delijn.be/stops/201361", "https://data.delijn.be/stops/201363"], ["https://data.delijn.be/stops/104424", "https://data.delijn.be/stops/204286"], ["https://data.delijn.be/stops/303206", "https://data.delijn.be/stops/304319"], ["https://data.delijn.be/stops/503663", "https://data.delijn.be/stops/508660"], ["https://data.delijn.be/stops/201393", "https://data.delijn.be/stops/204810"], ["https://data.delijn.be/stops/300118", "https://data.delijn.be/stops/307733"], ["https://data.delijn.be/stops/308606", "https://data.delijn.be/stops/308609"], ["https://data.delijn.be/stops/205084", "https://data.delijn.be/stops/205410"], ["https://data.delijn.be/stops/108657", "https://data.delijn.be/stops/306628"], ["https://data.delijn.be/stops/102821", "https://data.delijn.be/stops/103850"], ["https://data.delijn.be/stops/105091", "https://data.delijn.be/stops/109505"], ["https://data.delijn.be/stops/105554", "https://data.delijn.be/stops/105559"], ["https://data.delijn.be/stops/208390", "https://data.delijn.be/stops/209391"], ["https://data.delijn.be/stops/501313", "https://data.delijn.be/stops/506328"], ["https://data.delijn.be/stops/508760", "https://data.delijn.be/stops/508763"], ["https://data.delijn.be/stops/200738", "https://data.delijn.be/stops/203580"], ["https://data.delijn.be/stops/208117", "https://data.delijn.be/stops/208236"], ["https://data.delijn.be/stops/405949", "https://data.delijn.be/stops/405953"], ["https://data.delijn.be/stops/101172", "https://data.delijn.be/stops/104810"], ["https://data.delijn.be/stops/403162", "https://data.delijn.be/stops/410398"], ["https://data.delijn.be/stops/409045", "https://data.delijn.be/stops/409046"], ["https://data.delijn.be/stops/300416", "https://data.delijn.be/stops/300443"], ["https://data.delijn.be/stops/508079", "https://data.delijn.be/stops/508081"], ["https://data.delijn.be/stops/302092", "https://data.delijn.be/stops/302094"], ["https://data.delijn.be/stops/405981", "https://data.delijn.be/stops/405983"], ["https://data.delijn.be/stops/101089", "https://data.delijn.be/stops/101161"], ["https://data.delijn.be/stops/102904", "https://data.delijn.be/stops/108972"], ["https://data.delijn.be/stops/505233", "https://data.delijn.be/stops/507226"], ["https://data.delijn.be/stops/504035", "https://data.delijn.be/stops/509471"], ["https://data.delijn.be/stops/200346", "https://data.delijn.be/stops/200534"], ["https://data.delijn.be/stops/206509", "https://data.delijn.be/stops/207825"], ["https://data.delijn.be/stops/208334", "https://data.delijn.be/stops/208377"], ["https://data.delijn.be/stops/201772", "https://data.delijn.be/stops/209267"], ["https://data.delijn.be/stops/201628", "https://data.delijn.be/stops/205984"], ["https://data.delijn.be/stops/106896", "https://data.delijn.be/stops/107216"], ["https://data.delijn.be/stops/504021", "https://data.delijn.be/stops/504087"], ["https://data.delijn.be/stops/202702", "https://data.delijn.be/stops/203701"], ["https://data.delijn.be/stops/408186", "https://data.delijn.be/stops/408188"], ["https://data.delijn.be/stops/304704", "https://data.delijn.be/stops/306552"], ["https://data.delijn.be/stops/300140", "https://data.delijn.be/stops/306824"], ["https://data.delijn.be/stops/401199", "https://data.delijn.be/stops/401201"], ["https://data.delijn.be/stops/402387", "https://data.delijn.be/stops/402487"], ["https://data.delijn.be/stops/209449", "https://data.delijn.be/stops/209661"], ["https://data.delijn.be/stops/400779", "https://data.delijn.be/stops/400885"], ["https://data.delijn.be/stops/102629", "https://data.delijn.be/stops/108211"], ["https://data.delijn.be/stops/300478", "https://data.delijn.be/stops/306175"], ["https://data.delijn.be/stops/404422", "https://data.delijn.be/stops/404424"], ["https://data.delijn.be/stops/109279", "https://data.delijn.be/stops/109281"], ["https://data.delijn.be/stops/501380", "https://data.delijn.be/stops/506381"], ["https://data.delijn.be/stops/103497", "https://data.delijn.be/stops/106214"], ["https://data.delijn.be/stops/106445", "https://data.delijn.be/stops/106447"], ["https://data.delijn.be/stops/107565", "https://data.delijn.be/stops/109080"], ["https://data.delijn.be/stops/304527", "https://data.delijn.be/stops/304684"], ["https://data.delijn.be/stops/408007", "https://data.delijn.be/stops/408010"], ["https://data.delijn.be/stops/401475", "https://data.delijn.be/stops/410127"], ["https://data.delijn.be/stops/101666", "https://data.delijn.be/stops/107066"], ["https://data.delijn.be/stops/301770", "https://data.delijn.be/stops/306796"], ["https://data.delijn.be/stops/506070", "https://data.delijn.be/stops/506072"], ["https://data.delijn.be/stops/505024", "https://data.delijn.be/stops/507006"], ["https://data.delijn.be/stops/503485", "https://data.delijn.be/stops/503491"], ["https://data.delijn.be/stops/207514", "https://data.delijn.be/stops/207659"], ["https://data.delijn.be/stops/108076", "https://data.delijn.be/stops/108841"], ["https://data.delijn.be/stops/207559", "https://data.delijn.be/stops/207840"], ["https://data.delijn.be/stops/301169", "https://data.delijn.be/stops/305525"], ["https://data.delijn.be/stops/205503", "https://data.delijn.be/stops/205504"], ["https://data.delijn.be/stops/502617", "https://data.delijn.be/stops/502618"], ["https://data.delijn.be/stops/400684", "https://data.delijn.be/stops/406604"], ["https://data.delijn.be/stops/304718", "https://data.delijn.be/stops/308688"], ["https://data.delijn.be/stops/406973", "https://data.delijn.be/stops/408440"], ["https://data.delijn.be/stops/306962", "https://data.delijn.be/stops/306965"], ["https://data.delijn.be/stops/503354", "https://data.delijn.be/stops/503425"], ["https://data.delijn.be/stops/302254", "https://data.delijn.be/stops/302260"], ["https://data.delijn.be/stops/206154", "https://data.delijn.be/stops/207114"], ["https://data.delijn.be/stops/401782", "https://data.delijn.be/stops/406420"], ["https://data.delijn.be/stops/409634", "https://data.delijn.be/stops/409636"], ["https://data.delijn.be/stops/402308", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/503780", "https://data.delijn.be/stops/505160"], ["https://data.delijn.be/stops/406606", "https://data.delijn.be/stops/406624"], ["https://data.delijn.be/stops/201876", "https://data.delijn.be/stops/202658"], ["https://data.delijn.be/stops/107513", "https://data.delijn.be/stops/107518"], ["https://data.delijn.be/stops/404475", "https://data.delijn.be/stops/404494"], ["https://data.delijn.be/stops/206028", "https://data.delijn.be/stops/207077"], ["https://data.delijn.be/stops/108447", "https://data.delijn.be/stops/108448"], ["https://data.delijn.be/stops/105549", "https://data.delijn.be/stops/105553"], ["https://data.delijn.be/stops/102286", "https://data.delijn.be/stops/102737"], ["https://data.delijn.be/stops/108089", "https://data.delijn.be/stops/108390"], ["https://data.delijn.be/stops/308720", "https://data.delijn.be/stops/308723"], ["https://data.delijn.be/stops/401320", "https://data.delijn.be/stops/401340"], ["https://data.delijn.be/stops/501262", "https://data.delijn.be/stops/501321"], ["https://data.delijn.be/stops/105499", "https://data.delijn.be/stops/105501"], ["https://data.delijn.be/stops/405149", "https://data.delijn.be/stops/405234"], ["https://data.delijn.be/stops/201693", "https://data.delijn.be/stops/202034"], ["https://data.delijn.be/stops/504582", "https://data.delijn.be/stops/509582"], ["https://data.delijn.be/stops/103674", "https://data.delijn.be/stops/106218"], ["https://data.delijn.be/stops/305649", "https://data.delijn.be/stops/307790"], ["https://data.delijn.be/stops/502103", "https://data.delijn.be/stops/502141"], ["https://data.delijn.be/stops/108715", "https://data.delijn.be/stops/108858"], ["https://data.delijn.be/stops/104449", "https://data.delijn.be/stops/109915"], ["https://data.delijn.be/stops/305450", "https://data.delijn.be/stops/307558"], ["https://data.delijn.be/stops/503136", "https://data.delijn.be/stops/509887"], ["https://data.delijn.be/stops/404404", "https://data.delijn.be/stops/404413"], ["https://data.delijn.be/stops/106464", "https://data.delijn.be/stops/108247"], ["https://data.delijn.be/stops/402240", "https://data.delijn.be/stops/404499"], ["https://data.delijn.be/stops/504310", "https://data.delijn.be/stops/504318"], ["https://data.delijn.be/stops/208585", "https://data.delijn.be/stops/209584"], ["https://data.delijn.be/stops/405705", "https://data.delijn.be/stops/408972"], ["https://data.delijn.be/stops/206125", "https://data.delijn.be/stops/206684"], ["https://data.delijn.be/stops/305946", "https://data.delijn.be/stops/305947"], ["https://data.delijn.be/stops/301365", "https://data.delijn.be/stops/304794"], ["https://data.delijn.be/stops/208469", "https://data.delijn.be/stops/209470"], ["https://data.delijn.be/stops/306612", "https://data.delijn.be/stops/306630"], ["https://data.delijn.be/stops/202810", "https://data.delijn.be/stops/202866"], ["https://data.delijn.be/stops/208141", "https://data.delijn.be/stops/209141"], ["https://data.delijn.be/stops/409757", "https://data.delijn.be/stops/409759"], ["https://data.delijn.be/stops/300009", "https://data.delijn.be/stops/304609"], ["https://data.delijn.be/stops/304288", "https://data.delijn.be/stops/304300"], ["https://data.delijn.be/stops/503851", "https://data.delijn.be/stops/508985"], ["https://data.delijn.be/stops/400985", "https://data.delijn.be/stops/406682"], ["https://data.delijn.be/stops/104498", "https://data.delijn.be/stops/107509"], ["https://data.delijn.be/stops/203588", "https://data.delijn.be/stops/203964"], ["https://data.delijn.be/stops/301658", "https://data.delijn.be/stops/303936"], ["https://data.delijn.be/stops/303082", "https://data.delijn.be/stops/304909"], ["https://data.delijn.be/stops/206134", "https://data.delijn.be/stops/207133"], ["https://data.delijn.be/stops/501320", "https://data.delijn.be/stops/506320"], ["https://data.delijn.be/stops/502226", "https://data.delijn.be/stops/505233"], ["https://data.delijn.be/stops/101926", "https://data.delijn.be/stops/104711"], ["https://data.delijn.be/stops/506599", "https://data.delijn.be/stops/506690"], ["https://data.delijn.be/stops/306065", "https://data.delijn.be/stops/307199"], ["https://data.delijn.be/stops/106003", "https://data.delijn.be/stops/106004"], ["https://data.delijn.be/stops/401524", "https://data.delijn.be/stops/407804"], ["https://data.delijn.be/stops/200666", "https://data.delijn.be/stops/505797"], ["https://data.delijn.be/stops/201807", "https://data.delijn.be/stops/209328"], ["https://data.delijn.be/stops/501392", "https://data.delijn.be/stops/501464"], ["https://data.delijn.be/stops/306859", "https://data.delijn.be/stops/306860"], ["https://data.delijn.be/stops/101591", "https://data.delijn.be/stops/106412"], ["https://data.delijn.be/stops/209628", "https://data.delijn.be/stops/209629"], ["https://data.delijn.be/stops/302211", "https://data.delijn.be/stops/302216"], ["https://data.delijn.be/stops/206012", "https://data.delijn.be/stops/207385"], ["https://data.delijn.be/stops/503114", "https://data.delijn.be/stops/508118"], ["https://data.delijn.be/stops/300207", "https://data.delijn.be/stops/301377"], ["https://data.delijn.be/stops/204460", "https://data.delijn.be/stops/205464"], ["https://data.delijn.be/stops/502584", "https://data.delijn.be/stops/507117"], ["https://data.delijn.be/stops/107745", "https://data.delijn.be/stops/107746"], ["https://data.delijn.be/stops/302522", "https://data.delijn.be/stops/303876"], ["https://data.delijn.be/stops/300782", "https://data.delijn.be/stops/300787"], ["https://data.delijn.be/stops/102169", "https://data.delijn.be/stops/107128"], ["https://data.delijn.be/stops/103139", "https://data.delijn.be/stops/106516"], ["https://data.delijn.be/stops/103266", "https://data.delijn.be/stops/103269"], ["https://data.delijn.be/stops/503162", "https://data.delijn.be/stops/508162"], ["https://data.delijn.be/stops/302786", "https://data.delijn.be/stops/308813"], ["https://data.delijn.be/stops/403761", "https://data.delijn.be/stops/407233"], ["https://data.delijn.be/stops/503171", "https://data.delijn.be/stops/504752"], ["https://data.delijn.be/stops/102586", "https://data.delijn.be/stops/109108"], ["https://data.delijn.be/stops/304767", "https://data.delijn.be/stops/304769"], ["https://data.delijn.be/stops/504588", "https://data.delijn.be/stops/505534"], ["https://data.delijn.be/stops/502037", "https://data.delijn.be/stops/507037"], ["https://data.delijn.be/stops/504275", "https://data.delijn.be/stops/509275"], ["https://data.delijn.be/stops/304492", "https://data.delijn.be/stops/304493"], ["https://data.delijn.be/stops/301497", "https://data.delijn.be/stops/308070"], ["https://data.delijn.be/stops/407712", "https://data.delijn.be/stops/409520"], ["https://data.delijn.be/stops/206708", "https://data.delijn.be/stops/207973"], ["https://data.delijn.be/stops/107830", "https://data.delijn.be/stops/107831"], ["https://data.delijn.be/stops/207688", "https://data.delijn.be/stops/207740"], ["https://data.delijn.be/stops/101302", "https://data.delijn.be/stops/107454"], ["https://data.delijn.be/stops/400360", "https://data.delijn.be/stops/400361"], ["https://data.delijn.be/stops/301123", "https://data.delijn.be/stops/301137"], ["https://data.delijn.be/stops/300055", "https://data.delijn.be/stops/300056"], ["https://data.delijn.be/stops/506173", "https://data.delijn.be/stops/506779"], ["https://data.delijn.be/stops/305381", "https://data.delijn.be/stops/305382"], ["https://data.delijn.be/stops/502659", "https://data.delijn.be/stops/507657"], ["https://data.delijn.be/stops/209740", "https://data.delijn.be/stops/209744"], ["https://data.delijn.be/stops/407369", "https://data.delijn.be/stops/407547"], ["https://data.delijn.be/stops/206125", "https://data.delijn.be/stops/207412"], ["https://data.delijn.be/stops/103314", "https://data.delijn.be/stops/105814"], ["https://data.delijn.be/stops/302997", "https://data.delijn.be/stops/308656"], ["https://data.delijn.be/stops/201008", "https://data.delijn.be/stops/208843"], ["https://data.delijn.be/stops/201419", "https://data.delijn.be/stops/202012"], ["https://data.delijn.be/stops/503407", "https://data.delijn.be/stops/508206"], ["https://data.delijn.be/stops/405592", "https://data.delijn.be/stops/405594"], ["https://data.delijn.be/stops/101587", "https://data.delijn.be/stops/105726"], ["https://data.delijn.be/stops/502430", "https://data.delijn.be/stops/507751"], ["https://data.delijn.be/stops/403015", "https://data.delijn.be/stops/403024"], ["https://data.delijn.be/stops/208015", "https://data.delijn.be/stops/208016"], ["https://data.delijn.be/stops/400077", "https://data.delijn.be/stops/407023"], ["https://data.delijn.be/stops/304757", "https://data.delijn.be/stops/305588"], ["https://data.delijn.be/stops/302260", "https://data.delijn.be/stops/306883"], ["https://data.delijn.be/stops/410118", "https://data.delijn.be/stops/410327"], ["https://data.delijn.be/stops/303349", "https://data.delijn.be/stops/303387"], ["https://data.delijn.be/stops/302359", "https://data.delijn.be/stops/303987"], ["https://data.delijn.be/stops/102050", "https://data.delijn.be/stops/104680"], ["https://data.delijn.be/stops/200055", "https://data.delijn.be/stops/201471"], ["https://data.delijn.be/stops/105252", "https://data.delijn.be/stops/105841"], ["https://data.delijn.be/stops/506248", "https://data.delijn.be/stops/506774"], ["https://data.delijn.be/stops/408622", "https://data.delijn.be/stops/410250"], ["https://data.delijn.be/stops/300439", "https://data.delijn.be/stops/300443"], ["https://data.delijn.be/stops/502730", "https://data.delijn.be/stops/507729"], ["https://data.delijn.be/stops/103128", "https://data.delijn.be/stops/104239"], ["https://data.delijn.be/stops/405064", "https://data.delijn.be/stops/405113"], ["https://data.delijn.be/stops/202619", "https://data.delijn.be/stops/203619"], ["https://data.delijn.be/stops/206916", "https://data.delijn.be/stops/207351"], ["https://data.delijn.be/stops/403324", "https://data.delijn.be/stops/405984"], ["https://data.delijn.be/stops/101643", "https://data.delijn.be/stops/105238"], ["https://data.delijn.be/stops/401445", "https://data.delijn.be/stops/401489"], ["https://data.delijn.be/stops/200410", "https://data.delijn.be/stops/201454"], ["https://data.delijn.be/stops/409115", "https://data.delijn.be/stops/409123"], ["https://data.delijn.be/stops/204295", "https://data.delijn.be/stops/205495"], ["https://data.delijn.be/stops/302210", "https://data.delijn.be/stops/302216"], ["https://data.delijn.be/stops/306588", "https://data.delijn.be/stops/308442"], ["https://data.delijn.be/stops/405473", "https://data.delijn.be/stops/406601"], ["https://data.delijn.be/stops/401124", "https://data.delijn.be/stops/401125"], ["https://data.delijn.be/stops/206121", "https://data.delijn.be/stops/207144"], ["https://data.delijn.be/stops/101510", "https://data.delijn.be/stops/102179"], ["https://data.delijn.be/stops/208573", "https://data.delijn.be/stops/208574"], ["https://data.delijn.be/stops/200026", "https://data.delijn.be/stops/201026"], ["https://data.delijn.be/stops/105220", "https://data.delijn.be/stops/105435"], ["https://data.delijn.be/stops/101450", "https://data.delijn.be/stops/109010"], ["https://data.delijn.be/stops/407609", "https://data.delijn.be/stops/409787"], ["https://data.delijn.be/stops/404474", "https://data.delijn.be/stops/404575"], ["https://data.delijn.be/stops/301464", "https://data.delijn.be/stops/301504"], ["https://data.delijn.be/stops/401867", "https://data.delijn.be/stops/406284"], ["https://data.delijn.be/stops/508796", "https://data.delijn.be/stops/508864"], ["https://data.delijn.be/stops/502544", "https://data.delijn.be/stops/507638"], ["https://data.delijn.be/stops/409501", "https://data.delijn.be/stops/410252"], ["https://data.delijn.be/stops/201926", "https://data.delijn.be/stops/206248"], ["https://data.delijn.be/stops/101045", "https://data.delijn.be/stops/104315"], ["https://data.delijn.be/stops/504417", "https://data.delijn.be/stops/504432"], ["https://data.delijn.be/stops/204306", "https://data.delijn.be/stops/204309"], ["https://data.delijn.be/stops/407624", "https://data.delijn.be/stops/407652"], ["https://data.delijn.be/stops/406035", "https://data.delijn.be/stops/406983"], ["https://data.delijn.be/stops/400529", "https://data.delijn.be/stops/410004"], ["https://data.delijn.be/stops/406292", "https://data.delijn.be/stops/409260"], ["https://data.delijn.be/stops/405301", "https://data.delijn.be/stops/405407"], ["https://data.delijn.be/stops/107971", "https://data.delijn.be/stops/108436"], ["https://data.delijn.be/stops/303723", "https://data.delijn.be/stops/303737"], ["https://data.delijn.be/stops/104047", "https://data.delijn.be/stops/108399"], ["https://data.delijn.be/stops/307582", "https://data.delijn.be/stops/307762"], ["https://data.delijn.be/stops/300459", "https://data.delijn.be/stops/305032"], ["https://data.delijn.be/stops/400090", "https://data.delijn.be/stops/400118"], ["https://data.delijn.be/stops/102242", "https://data.delijn.be/stops/105878"], ["https://data.delijn.be/stops/106292", "https://data.delijn.be/stops/106313"], ["https://data.delijn.be/stops/103314", "https://data.delijn.be/stops/103317"], ["https://data.delijn.be/stops/202493", "https://data.delijn.be/stops/203079"], ["https://data.delijn.be/stops/505226", "https://data.delijn.be/stops/508840"], ["https://data.delijn.be/stops/405776", "https://data.delijn.be/stops/406694"], ["https://data.delijn.be/stops/405260", "https://data.delijn.be/stops/405270"], ["https://data.delijn.be/stops/401586", "https://data.delijn.be/stops/402125"], ["https://data.delijn.be/stops/401172", "https://data.delijn.be/stops/401174"], ["https://data.delijn.be/stops/300740", "https://data.delijn.be/stops/300803"], ["https://data.delijn.be/stops/201687", "https://data.delijn.be/stops/208262"], ["https://data.delijn.be/stops/108444", "https://data.delijn.be/stops/108446"], ["https://data.delijn.be/stops/502708", "https://data.delijn.be/stops/505627"], ["https://data.delijn.be/stops/302945", "https://data.delijn.be/stops/303022"], ["https://data.delijn.be/stops/208525", "https://data.delijn.be/stops/209525"], ["https://data.delijn.be/stops/302809", "https://data.delijn.be/stops/307838"], ["https://data.delijn.be/stops/300113", "https://data.delijn.be/stops/307947"], ["https://data.delijn.be/stops/404335", "https://data.delijn.be/stops/404358"], ["https://data.delijn.be/stops/101830", "https://data.delijn.be/stops/103970"], ["https://data.delijn.be/stops/300576", "https://data.delijn.be/stops/300590"], ["https://data.delijn.be/stops/301952", "https://data.delijn.be/stops/307080"], ["https://data.delijn.be/stops/402706", "https://data.delijn.be/stops/402881"], ["https://data.delijn.be/stops/508863", "https://data.delijn.be/stops/590006"], ["https://data.delijn.be/stops/303670", "https://data.delijn.be/stops/308902"], ["https://data.delijn.be/stops/400481", "https://data.delijn.be/stops/407647"], ["https://data.delijn.be/stops/202275", "https://data.delijn.be/stops/202679"], ["https://data.delijn.be/stops/403884", "https://data.delijn.be/stops/403885"], ["https://data.delijn.be/stops/305684", "https://data.delijn.be/stops/305711"], ["https://data.delijn.be/stops/107589", "https://data.delijn.be/stops/109431"], ["https://data.delijn.be/stops/509406", "https://data.delijn.be/stops/509434"], ["https://data.delijn.be/stops/407815", "https://data.delijn.be/stops/407960"], ["https://data.delijn.be/stops/501318", "https://data.delijn.be/stops/501319"], ["https://data.delijn.be/stops/106269", "https://data.delijn.be/stops/109626"], ["https://data.delijn.be/stops/205661", "https://data.delijn.be/stops/205681"], ["https://data.delijn.be/stops/301168", "https://data.delijn.be/stops/307684"], ["https://data.delijn.be/stops/206958", "https://data.delijn.be/stops/308567"], ["https://data.delijn.be/stops/202509", "https://data.delijn.be/stops/203001"], ["https://data.delijn.be/stops/105086", "https://data.delijn.be/stops/105096"], ["https://data.delijn.be/stops/202774", "https://data.delijn.be/stops/203774"], ["https://data.delijn.be/stops/101188", "https://data.delijn.be/stops/107861"], ["https://data.delijn.be/stops/408952", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/307966", "https://data.delijn.be/stops/307969"], ["https://data.delijn.be/stops/402963", "https://data.delijn.be/stops/407043"], ["https://data.delijn.be/stops/202042", "https://data.delijn.be/stops/204620"], ["https://data.delijn.be/stops/204766", "https://data.delijn.be/stops/204798"], ["https://data.delijn.be/stops/305513", "https://data.delijn.be/stops/307897"], ["https://data.delijn.be/stops/108378", "https://data.delijn.be/stops/108439"], ["https://data.delijn.be/stops/105168", "https://data.delijn.be/stops/109521"], ["https://data.delijn.be/stops/208138", "https://data.delijn.be/stops/208139"], ["https://data.delijn.be/stops/204664", "https://data.delijn.be/stops/205665"], ["https://data.delijn.be/stops/402972", "https://data.delijn.be/stops/403708"], ["https://data.delijn.be/stops/203832", "https://data.delijn.be/stops/218024"], ["https://data.delijn.be/stops/509783", "https://data.delijn.be/stops/509786"], ["https://data.delijn.be/stops/402161", "https://data.delijn.be/stops/402391"], ["https://data.delijn.be/stops/108936", "https://data.delijn.be/stops/108937"], ["https://data.delijn.be/stops/201870", "https://data.delijn.be/stops/210007"], ["https://data.delijn.be/stops/208277", "https://data.delijn.be/stops/208282"], ["https://data.delijn.be/stops/204319", "https://data.delijn.be/stops/205319"], ["https://data.delijn.be/stops/404894", "https://data.delijn.be/stops/404911"], ["https://data.delijn.be/stops/300857", "https://data.delijn.be/stops/307825"], ["https://data.delijn.be/stops/201349", "https://data.delijn.be/stops/208708"], ["https://data.delijn.be/stops/204066", "https://data.delijn.be/stops/205228"], ["https://data.delijn.be/stops/506172", "https://data.delijn.be/stops/509499"], ["https://data.delijn.be/stops/201353", "https://data.delijn.be/stops/201687"], ["https://data.delijn.be/stops/405824", "https://data.delijn.be/stops/409746"], ["https://data.delijn.be/stops/300046", "https://data.delijn.be/stops/308541"], ["https://data.delijn.be/stops/208069", "https://data.delijn.be/stops/209068"], ["https://data.delijn.be/stops/408625", "https://data.delijn.be/stops/408700"], ["https://data.delijn.be/stops/206692", "https://data.delijn.be/stops/206694"], ["https://data.delijn.be/stops/405800", "https://data.delijn.be/stops/409735"], ["https://data.delijn.be/stops/208423", "https://data.delijn.be/stops/209754"], ["https://data.delijn.be/stops/202595", "https://data.delijn.be/stops/203595"], ["https://data.delijn.be/stops/209295", "https://data.delijn.be/stops/209381"], ["https://data.delijn.be/stops/405876", "https://data.delijn.be/stops/405879"], ["https://data.delijn.be/stops/300317", "https://data.delijn.be/stops/301900"], ["https://data.delijn.be/stops/202263", "https://data.delijn.be/stops/203263"], ["https://data.delijn.be/stops/109254", "https://data.delijn.be/stops/109713"], ["https://data.delijn.be/stops/106008", "https://data.delijn.be/stops/107910"], ["https://data.delijn.be/stops/200149", "https://data.delijn.be/stops/201513"], ["https://data.delijn.be/stops/406420", "https://data.delijn.be/stops/410359"], ["https://data.delijn.be/stops/300251", "https://data.delijn.be/stops/308963"], ["https://data.delijn.be/stops/407639", "https://data.delijn.be/stops/407641"], ["https://data.delijn.be/stops/506090", "https://data.delijn.be/stops/506095"], ["https://data.delijn.be/stops/301459", "https://data.delijn.be/stops/301500"], ["https://data.delijn.be/stops/405781", "https://data.delijn.be/stops/406694"], ["https://data.delijn.be/stops/206965", "https://data.delijn.be/stops/207422"], ["https://data.delijn.be/stops/208309", "https://data.delijn.be/stops/209309"], ["https://data.delijn.be/stops/508354", "https://data.delijn.be/stops/508390"], ["https://data.delijn.be/stops/200068", "https://data.delijn.be/stops/201068"], ["https://data.delijn.be/stops/403059", "https://data.delijn.be/stops/403174"], ["https://data.delijn.be/stops/201951", "https://data.delijn.be/stops/203466"], ["https://data.delijn.be/stops/301464", "https://data.delijn.be/stops/308071"], ["https://data.delijn.be/stops/504125", "https://data.delijn.be/stops/504131"], ["https://data.delijn.be/stops/502193", "https://data.delijn.be/stops/507202"], ["https://data.delijn.be/stops/503841", "https://data.delijn.be/stops/508860"], ["https://data.delijn.be/stops/200932", "https://data.delijn.be/stops/202256"], ["https://data.delijn.be/stops/301700", "https://data.delijn.be/stops/305905"], ["https://data.delijn.be/stops/101684", "https://data.delijn.be/stops/101686"], ["https://data.delijn.be/stops/303205", "https://data.delijn.be/stops/303207"], ["https://data.delijn.be/stops/307367", "https://data.delijn.be/stops/307368"], ["https://data.delijn.be/stops/501190", "https://data.delijn.be/stops/501196"], ["https://data.delijn.be/stops/105274", "https://data.delijn.be/stops/105296"], ["https://data.delijn.be/stops/406964", "https://data.delijn.be/stops/409450"], ["https://data.delijn.be/stops/207169", "https://data.delijn.be/stops/207170"], ["https://data.delijn.be/stops/401856", "https://data.delijn.be/stops/406236"], ["https://data.delijn.be/stops/403236", "https://data.delijn.be/stops/410209"], ["https://data.delijn.be/stops/408836", "https://data.delijn.be/stops/408841"], ["https://data.delijn.be/stops/300254", "https://data.delijn.be/stops/303826"], ["https://data.delijn.be/stops/503694", "https://data.delijn.be/stops/508694"], ["https://data.delijn.be/stops/109264", "https://data.delijn.be/stops/109268"], ["https://data.delijn.be/stops/501177", "https://data.delijn.be/stops/506177"], ["https://data.delijn.be/stops/302494", "https://data.delijn.be/stops/302722"], ["https://data.delijn.be/stops/206165", "https://data.delijn.be/stops/304554"], ["https://data.delijn.be/stops/305109", "https://data.delijn.be/stops/305116"], ["https://data.delijn.be/stops/108314", "https://data.delijn.be/stops/108316"], ["https://data.delijn.be/stops/400570", "https://data.delijn.be/stops/403826"], ["https://data.delijn.be/stops/501308", "https://data.delijn.be/stops/506500"], ["https://data.delijn.be/stops/504172", "https://data.delijn.be/stops/509196"], ["https://data.delijn.be/stops/201725", "https://data.delijn.be/stops/202981"], ["https://data.delijn.be/stops/405540", "https://data.delijn.be/stops/409271"], ["https://data.delijn.be/stops/305734", "https://data.delijn.be/stops/306308"], ["https://data.delijn.be/stops/304305", "https://data.delijn.be/stops/304351"], ["https://data.delijn.be/stops/402372", "https://data.delijn.be/stops/402373"], ["https://data.delijn.be/stops/206762", "https://data.delijn.be/stops/207857"], ["https://data.delijn.be/stops/503873", "https://data.delijn.be/stops/508870"], ["https://data.delijn.be/stops/304228", "https://data.delijn.be/stops/304229"], ["https://data.delijn.be/stops/102350", "https://data.delijn.be/stops/102355"], ["https://data.delijn.be/stops/107394", "https://data.delijn.be/stops/107396"], ["https://data.delijn.be/stops/403254", "https://data.delijn.be/stops/403561"], ["https://data.delijn.be/stops/400487", "https://data.delijn.be/stops/407215"], ["https://data.delijn.be/stops/204445", "https://data.delijn.be/stops/205615"], ["https://data.delijn.be/stops/101267", "https://data.delijn.be/stops/102886"], ["https://data.delijn.be/stops/503397", "https://data.delijn.be/stops/504298"], ["https://data.delijn.be/stops/205075", "https://data.delijn.be/stops/205076"], ["https://data.delijn.be/stops/303115", "https://data.delijn.be/stops/306703"], ["https://data.delijn.be/stops/206481", "https://data.delijn.be/stops/207481"], ["https://data.delijn.be/stops/503036", "https://data.delijn.be/stops/503185"], ["https://data.delijn.be/stops/300120", "https://data.delijn.be/stops/306807"], ["https://data.delijn.be/stops/101167", "https://data.delijn.be/stops/102395"], ["https://data.delijn.be/stops/205681", "https://data.delijn.be/stops/205682"], ["https://data.delijn.be/stops/504059", "https://data.delijn.be/stops/504128"], ["https://data.delijn.be/stops/202279", "https://data.delijn.be/stops/203891"], ["https://data.delijn.be/stops/101464", "https://data.delijn.be/stops/109252"], ["https://data.delijn.be/stops/301908", "https://data.delijn.be/stops/306255"], ["https://data.delijn.be/stops/306662", "https://data.delijn.be/stops/306663"], ["https://data.delijn.be/stops/502319", "https://data.delijn.be/stops/505737"], ["https://data.delijn.be/stops/205985", "https://data.delijn.be/stops/206836"], ["https://data.delijn.be/stops/403986", "https://data.delijn.be/stops/403998"], ["https://data.delijn.be/stops/408109", "https://data.delijn.be/stops/408114"], ["https://data.delijn.be/stops/200932", "https://data.delijn.be/stops/210006"], ["https://data.delijn.be/stops/107496", "https://data.delijn.be/stops/305794"], ["https://data.delijn.be/stops/300206", "https://data.delijn.be/stops/306743"], ["https://data.delijn.be/stops/102858", "https://data.delijn.be/stops/204625"], ["https://data.delijn.be/stops/408567", "https://data.delijn.be/stops/408614"], ["https://data.delijn.be/stops/106509", "https://data.delijn.be/stops/106510"], ["https://data.delijn.be/stops/209164", "https://data.delijn.be/stops/209170"], ["https://data.delijn.be/stops/200840", "https://data.delijn.be/stops/507759"], ["https://data.delijn.be/stops/301648", "https://data.delijn.be/stops/301649"], ["https://data.delijn.be/stops/300938", "https://data.delijn.be/stops/301944"], ["https://data.delijn.be/stops/505794", "https://data.delijn.be/stops/509895"], ["https://data.delijn.be/stops/200010", "https://data.delijn.be/stops/201416"], ["https://data.delijn.be/stops/506291", "https://data.delijn.be/stops/506324"], ["https://data.delijn.be/stops/503285", "https://data.delijn.be/stops/505966"], ["https://data.delijn.be/stops/305858", "https://data.delijn.be/stops/308616"], ["https://data.delijn.be/stops/107453", "https://data.delijn.be/stops/107455"], ["https://data.delijn.be/stops/108083", "https://data.delijn.be/stops/108834"], ["https://data.delijn.be/stops/304507", "https://data.delijn.be/stops/307675"], ["https://data.delijn.be/stops/106225", "https://data.delijn.be/stops/106329"], ["https://data.delijn.be/stops/300077", "https://data.delijn.be/stops/307341"], ["https://data.delijn.be/stops/106567", "https://data.delijn.be/stops/106569"], ["https://data.delijn.be/stops/200134", "https://data.delijn.be/stops/202451"], ["https://data.delijn.be/stops/404149", "https://data.delijn.be/stops/404279"], ["https://data.delijn.be/stops/206403", "https://data.delijn.be/stops/207403"], ["https://data.delijn.be/stops/408492", "https://data.delijn.be/stops/408991"], ["https://data.delijn.be/stops/102289", "https://data.delijn.be/stops/103532"], ["https://data.delijn.be/stops/503849", "https://data.delijn.be/stops/505972"], ["https://data.delijn.be/stops/405706", "https://data.delijn.be/stops/410355"], ["https://data.delijn.be/stops/200853", "https://data.delijn.be/stops/202066"], ["https://data.delijn.be/stops/405524", "https://data.delijn.be/stops/406998"], ["https://data.delijn.be/stops/504031", "https://data.delijn.be/stops/504036"], ["https://data.delijn.be/stops/402388", "https://data.delijn.be/stops/404704"], ["https://data.delijn.be/stops/204088", "https://data.delijn.be/stops/204089"], ["https://data.delijn.be/stops/407945", "https://data.delijn.be/stops/408169"], ["https://data.delijn.be/stops/401885", "https://data.delijn.be/stops/409504"], ["https://data.delijn.be/stops/105563", "https://data.delijn.be/stops/105566"], ["https://data.delijn.be/stops/401966", "https://data.delijn.be/stops/403077"], ["https://data.delijn.be/stops/304929", "https://data.delijn.be/stops/306383"], ["https://data.delijn.be/stops/508351", "https://data.delijn.be/stops/508410"], ["https://data.delijn.be/stops/102631", "https://data.delijn.be/stops/108214"], ["https://data.delijn.be/stops/103283", "https://data.delijn.be/stops/104961"], ["https://data.delijn.be/stops/301091", "https://data.delijn.be/stops/302755"], ["https://data.delijn.be/stops/301851", "https://data.delijn.be/stops/305817"], ["https://data.delijn.be/stops/103695", "https://data.delijn.be/stops/105765"], ["https://data.delijn.be/stops/302729", "https://data.delijn.be/stops/302730"], ["https://data.delijn.be/stops/402356", "https://data.delijn.be/stops/402375"], ["https://data.delijn.be/stops/404588", "https://data.delijn.be/stops/404993"], ["https://data.delijn.be/stops/107567", "https://data.delijn.be/stops/109434"], ["https://data.delijn.be/stops/503344", "https://data.delijn.be/stops/508345"], ["https://data.delijn.be/stops/200598", "https://data.delijn.be/stops/210130"], ["https://data.delijn.be/stops/200434", "https://data.delijn.be/stops/201364"], ["https://data.delijn.be/stops/503784", "https://data.delijn.be/stops/505269"], ["https://data.delijn.be/stops/204739", "https://data.delijn.be/stops/205484"], ["https://data.delijn.be/stops/507151", "https://data.delijn.be/stops/507643"], ["https://data.delijn.be/stops/405834", "https://data.delijn.be/stops/405871"], ["https://data.delijn.be/stops/304253", "https://data.delijn.be/stops/304299"], ["https://data.delijn.be/stops/301882", "https://data.delijn.be/stops/302461"], ["https://data.delijn.be/stops/502592", "https://data.delijn.be/stops/507063"], ["https://data.delijn.be/stops/107835", "https://data.delijn.be/stops/108535"], ["https://data.delijn.be/stops/202578", "https://data.delijn.be/stops/203128"], ["https://data.delijn.be/stops/103107", "https://data.delijn.be/stops/106569"], ["https://data.delijn.be/stops/501037", "https://data.delijn.be/stops/506037"], ["https://data.delijn.be/stops/502288", "https://data.delijn.be/stops/505608"], ["https://data.delijn.be/stops/200562", "https://data.delijn.be/stops/200665"], ["https://data.delijn.be/stops/201258", "https://data.delijn.be/stops/202562"], ["https://data.delijn.be/stops/300963", "https://data.delijn.be/stops/300972"], ["https://data.delijn.be/stops/101747", "https://data.delijn.be/stops/106370"], ["https://data.delijn.be/stops/301566", "https://data.delijn.be/stops/301571"], ["https://data.delijn.be/stops/201096", "https://data.delijn.be/stops/203131"], ["https://data.delijn.be/stops/301362", "https://data.delijn.be/stops/308712"], ["https://data.delijn.be/stops/106989", "https://data.delijn.be/stops/109717"], ["https://data.delijn.be/stops/406608", "https://data.delijn.be/stops/406637"], ["https://data.delijn.be/stops/303540", "https://data.delijn.be/stops/303565"], ["https://data.delijn.be/stops/308472", "https://data.delijn.be/stops/308519"], ["https://data.delijn.be/stops/507099", "https://data.delijn.be/stops/507296"], ["https://data.delijn.be/stops/406097", "https://data.delijn.be/stops/407915"], ["https://data.delijn.be/stops/505173", "https://data.delijn.be/stops/505811"], ["https://data.delijn.be/stops/508281", "https://data.delijn.be/stops/508287"], ["https://data.delijn.be/stops/300479", "https://data.delijn.be/stops/300493"], ["https://data.delijn.be/stops/109047", "https://data.delijn.be/stops/109321"], ["https://data.delijn.be/stops/103484", "https://data.delijn.be/stops/103487"], ["https://data.delijn.be/stops/410135", "https://data.delijn.be/stops/410136"], ["https://data.delijn.be/stops/407008", "https://data.delijn.be/stops/407009"], ["https://data.delijn.be/stops/105474", "https://data.delijn.be/stops/105475"], ["https://data.delijn.be/stops/300187", "https://data.delijn.be/stops/300188"], ["https://data.delijn.be/stops/501302", "https://data.delijn.be/stops/501772"], ["https://data.delijn.be/stops/400466", "https://data.delijn.be/stops/400467"], ["https://data.delijn.be/stops/104741", "https://data.delijn.be/stops/108902"], ["https://data.delijn.be/stops/303015", "https://data.delijn.be/stops/303595"], ["https://data.delijn.be/stops/504295", "https://data.delijn.be/stops/504323"], ["https://data.delijn.be/stops/408302", "https://data.delijn.be/stops/408354"], ["https://data.delijn.be/stops/202968", "https://data.delijn.be/stops/204100"], ["https://data.delijn.be/stops/109869", "https://data.delijn.be/stops/109870"], ["https://data.delijn.be/stops/506646", "https://data.delijn.be/stops/506671"], ["https://data.delijn.be/stops/301192", "https://data.delijn.be/stops/308557"], ["https://data.delijn.be/stops/207445", "https://data.delijn.be/stops/209679"], ["https://data.delijn.be/stops/502518", "https://data.delijn.be/stops/502522"], ["https://data.delijn.be/stops/503234", "https://data.delijn.be/stops/508251"], ["https://data.delijn.be/stops/208666", "https://data.delijn.be/stops/208667"], ["https://data.delijn.be/stops/202294", "https://data.delijn.be/stops/203294"], ["https://data.delijn.be/stops/303238", "https://data.delijn.be/stops/304238"], ["https://data.delijn.be/stops/304434", "https://data.delijn.be/stops/307089"], ["https://data.delijn.be/stops/204306", "https://data.delijn.be/stops/205309"], ["https://data.delijn.be/stops/408017", "https://data.delijn.be/stops/408043"], ["https://data.delijn.be/stops/102924", "https://data.delijn.be/stops/103678"], ["https://data.delijn.be/stops/200546", "https://data.delijn.be/stops/201472"], ["https://data.delijn.be/stops/304758", "https://data.delijn.be/stops/304759"], ["https://data.delijn.be/stops/206789", "https://data.delijn.be/stops/206790"], ["https://data.delijn.be/stops/103003", "https://data.delijn.be/stops/105059"], ["https://data.delijn.be/stops/504003", "https://data.delijn.be/stops/509003"], ["https://data.delijn.be/stops/406182", "https://data.delijn.be/stops/410224"], ["https://data.delijn.be/stops/202333", "https://data.delijn.be/stops/203333"], ["https://data.delijn.be/stops/405880", "https://data.delijn.be/stops/406859"], ["https://data.delijn.be/stops/505920", "https://data.delijn.be/stops/509108"], ["https://data.delijn.be/stops/208316", "https://data.delijn.be/stops/209789"], ["https://data.delijn.be/stops/208219", "https://data.delijn.be/stops/208220"], ["https://data.delijn.be/stops/300830", "https://data.delijn.be/stops/300874"], ["https://data.delijn.be/stops/407230", "https://data.delijn.be/stops/407232"], ["https://data.delijn.be/stops/208572", "https://data.delijn.be/stops/307590"], ["https://data.delijn.be/stops/106296", "https://data.delijn.be/stops/109439"], ["https://data.delijn.be/stops/400483", "https://data.delijn.be/stops/407688"], ["https://data.delijn.be/stops/301443", "https://data.delijn.be/stops/303180"], ["https://data.delijn.be/stops/209293", "https://data.delijn.be/stops/209790"], ["https://data.delijn.be/stops/201723", "https://data.delijn.be/stops/203445"], ["https://data.delijn.be/stops/104609", "https://data.delijn.be/stops/305835"], ["https://data.delijn.be/stops/307201", "https://data.delijn.be/stops/307607"], ["https://data.delijn.be/stops/200620", "https://data.delijn.be/stops/211050"], ["https://data.delijn.be/stops/305530", "https://data.delijn.be/stops/308684"], ["https://data.delijn.be/stops/404873", "https://data.delijn.be/stops/406887"], ["https://data.delijn.be/stops/207870", "https://data.delijn.be/stops/208786"], ["https://data.delijn.be/stops/402796", "https://data.delijn.be/stops/406921"], ["https://data.delijn.be/stops/304996", "https://data.delijn.be/stops/304997"], ["https://data.delijn.be/stops/502528", "https://data.delijn.be/stops/507551"], ["https://data.delijn.be/stops/206223", "https://data.delijn.be/stops/207803"], ["https://data.delijn.be/stops/204474", "https://data.delijn.be/stops/205466"], ["https://data.delijn.be/stops/302885", "https://data.delijn.be/stops/302897"], ["https://data.delijn.be/stops/104742", "https://data.delijn.be/stops/107341"], ["https://data.delijn.be/stops/206012", "https://data.delijn.be/stops/206016"], ["https://data.delijn.be/stops/401266", "https://data.delijn.be/stops/401303"], ["https://data.delijn.be/stops/203382", "https://data.delijn.be/stops/203383"], ["https://data.delijn.be/stops/102720", "https://data.delijn.be/stops/105700"], ["https://data.delijn.be/stops/505383", "https://data.delijn.be/stops/505792"], ["https://data.delijn.be/stops/203307", "https://data.delijn.be/stops/203308"], ["https://data.delijn.be/stops/200341", "https://data.delijn.be/stops/201341"], ["https://data.delijn.be/stops/403560", "https://data.delijn.be/stops/409296"], ["https://data.delijn.be/stops/207500", "https://data.delijn.be/stops/207673"], ["https://data.delijn.be/stops/201079", "https://data.delijn.be/stops/201092"], ["https://data.delijn.be/stops/206220", "https://data.delijn.be/stops/206808"], ["https://data.delijn.be/stops/501373", "https://data.delijn.be/stops/506290"], ["https://data.delijn.be/stops/303302", "https://data.delijn.be/stops/303345"], ["https://data.delijn.be/stops/503276", "https://data.delijn.be/stops/508277"], ["https://data.delijn.be/stops/308670", "https://data.delijn.be/stops/308671"], ["https://data.delijn.be/stops/302602", "https://data.delijn.be/stops/303611"], ["https://data.delijn.be/stops/205124", "https://data.delijn.be/stops/205128"], ["https://data.delijn.be/stops/504477", "https://data.delijn.be/stops/509479"], ["https://data.delijn.be/stops/301937", "https://data.delijn.be/stops/307464"], ["https://data.delijn.be/stops/208280", "https://data.delijn.be/stops/208281"], ["https://data.delijn.be/stops/400142", "https://data.delijn.be/stops/409153"], ["https://data.delijn.be/stops/504296", "https://data.delijn.be/stops/504310"], ["https://data.delijn.be/stops/500948", "https://data.delijn.be/stops/503067"], ["https://data.delijn.be/stops/504340", "https://data.delijn.be/stops/509334"], ["https://data.delijn.be/stops/303030", "https://data.delijn.be/stops/307144"], ["https://data.delijn.be/stops/108158", "https://data.delijn.be/stops/108161"], ["https://data.delijn.be/stops/200518", "https://data.delijn.be/stops/201550"], ["https://data.delijn.be/stops/206542", "https://data.delijn.be/stops/207563"], ["https://data.delijn.be/stops/205654", "https://data.delijn.be/stops/205655"], ["https://data.delijn.be/stops/301433", "https://data.delijn.be/stops/306417"], ["https://data.delijn.be/stops/300950", "https://data.delijn.be/stops/305914"], ["https://data.delijn.be/stops/501658", "https://data.delijn.be/stops/506645"], ["https://data.delijn.be/stops/108366", "https://data.delijn.be/stops/108458"], ["https://data.delijn.be/stops/201103", "https://data.delijn.be/stops/201363"], ["https://data.delijn.be/stops/301545", "https://data.delijn.be/stops/305141"], ["https://data.delijn.be/stops/305243", "https://data.delijn.be/stops/305244"], ["https://data.delijn.be/stops/206141", "https://data.delijn.be/stops/207140"], ["https://data.delijn.be/stops/105792", "https://data.delijn.be/stops/105941"], ["https://data.delijn.be/stops/407247", "https://data.delijn.be/stops/407452"], ["https://data.delijn.be/stops/504752", "https://data.delijn.be/stops/508999"], ["https://data.delijn.be/stops/405648", "https://data.delijn.be/stops/408583"], ["https://data.delijn.be/stops/301047", "https://data.delijn.be/stops/303831"], ["https://data.delijn.be/stops/304809", "https://data.delijn.be/stops/308770"], ["https://data.delijn.be/stops/200902", "https://data.delijn.be/stops/208852"], ["https://data.delijn.be/stops/208645", "https://data.delijn.be/stops/209646"], ["https://data.delijn.be/stops/408511", "https://data.delijn.be/stops/408763"], ["https://data.delijn.be/stops/503570", "https://data.delijn.be/stops/508584"], ["https://data.delijn.be/stops/301410", "https://data.delijn.be/stops/305629"], ["https://data.delijn.be/stops/101778", "https://data.delijn.be/stops/102323"], ["https://data.delijn.be/stops/507012", "https://data.delijn.be/stops/507916"], ["https://data.delijn.be/stops/502504", "https://data.delijn.be/stops/505749"], ["https://data.delijn.be/stops/408619", "https://data.delijn.be/stops/408691"], ["https://data.delijn.be/stops/109023", "https://data.delijn.be/stops/109024"], ["https://data.delijn.be/stops/300832", "https://data.delijn.be/stops/306641"], ["https://data.delijn.be/stops/204557", "https://data.delijn.be/stops/204558"], ["https://data.delijn.be/stops/207720", "https://data.delijn.be/stops/207733"], ["https://data.delijn.be/stops/206967", "https://data.delijn.be/stops/207828"], ["https://data.delijn.be/stops/403197", "https://data.delijn.be/stops/403550"], ["https://data.delijn.be/stops/505424", "https://data.delijn.be/stops/509084"], ["https://data.delijn.be/stops/402312", "https://data.delijn.be/stops/402313"], ["https://data.delijn.be/stops/300138", "https://data.delijn.be/stops/306821"], ["https://data.delijn.be/stops/308444", "https://data.delijn.be/stops/308460"], ["https://data.delijn.be/stops/307556", "https://data.delijn.be/stops/307557"], ["https://data.delijn.be/stops/404522", "https://data.delijn.be/stops/405134"], ["https://data.delijn.be/stops/408092", "https://data.delijn.be/stops/408156"], ["https://data.delijn.be/stops/408614", "https://data.delijn.be/stops/408615"], ["https://data.delijn.be/stops/301605", "https://data.delijn.be/stops/301617"], ["https://data.delijn.be/stops/507396", "https://data.delijn.be/stops/507413"], ["https://data.delijn.be/stops/102171", "https://data.delijn.be/stops/102447"], ["https://data.delijn.be/stops/103120", "https://data.delijn.be/stops/105020"], ["https://data.delijn.be/stops/401253", "https://data.delijn.be/stops/401452"], ["https://data.delijn.be/stops/200820", "https://data.delijn.be/stops/211068"], ["https://data.delijn.be/stops/400229", "https://data.delijn.be/stops/402357"], ["https://data.delijn.be/stops/407999", "https://data.delijn.be/stops/408089"], ["https://data.delijn.be/stops/107814", "https://data.delijn.be/stops/308810"], ["https://data.delijn.be/stops/106481", "https://data.delijn.be/stops/109201"], ["https://data.delijn.be/stops/503359", "https://data.delijn.be/stops/508351"], ["https://data.delijn.be/stops/504522", "https://data.delijn.be/stops/505109"], ["https://data.delijn.be/stops/101777", "https://data.delijn.be/stops/107587"], ["https://data.delijn.be/stops/403803", "https://data.delijn.be/stops/403804"], ["https://data.delijn.be/stops/307937", "https://data.delijn.be/stops/307938"], ["https://data.delijn.be/stops/202741", "https://data.delijn.be/stops/202872"], ["https://data.delijn.be/stops/102086", "https://data.delijn.be/stops/108866"], ["https://data.delijn.be/stops/404658", "https://data.delijn.be/stops/408908"], ["https://data.delijn.be/stops/306194", "https://data.delijn.be/stops/306195"], ["https://data.delijn.be/stops/101418", "https://data.delijn.be/stops/108717"], ["https://data.delijn.be/stops/400618", "https://data.delijn.be/stops/400619"], ["https://data.delijn.be/stops/301320", "https://data.delijn.be/stops/301912"], ["https://data.delijn.be/stops/202145", "https://data.delijn.be/stops/202187"], ["https://data.delijn.be/stops/205598", "https://data.delijn.be/stops/205756"], ["https://data.delijn.be/stops/407448", "https://data.delijn.be/stops/407467"], ["https://data.delijn.be/stops/200731", "https://data.delijn.be/stops/202684"], ["https://data.delijn.be/stops/502103", "https://data.delijn.be/stops/507644"], ["https://data.delijn.be/stops/401152", "https://data.delijn.be/stops/401153"], ["https://data.delijn.be/stops/407819", "https://data.delijn.be/stops/408005"], ["https://data.delijn.be/stops/106610", "https://data.delijn.be/stops/106611"], ["https://data.delijn.be/stops/502590", "https://data.delijn.be/stops/507401"], ["https://data.delijn.be/stops/302963", "https://data.delijn.be/stops/302969"], ["https://data.delijn.be/stops/300541", "https://data.delijn.be/stops/308586"], ["https://data.delijn.be/stops/200933", "https://data.delijn.be/stops/208852"], ["https://data.delijn.be/stops/300091", "https://data.delijn.be/stops/306843"], ["https://data.delijn.be/stops/508704", "https://data.delijn.be/stops/508728"], ["https://data.delijn.be/stops/403684", "https://data.delijn.be/stops/403686"], ["https://data.delijn.be/stops/301611", "https://data.delijn.be/stops/301633"], ["https://data.delijn.be/stops/208137", "https://data.delijn.be/stops/209136"], ["https://data.delijn.be/stops/206837", "https://data.delijn.be/stops/207939"], ["https://data.delijn.be/stops/407968", "https://data.delijn.be/stops/408425"], ["https://data.delijn.be/stops/302230", "https://data.delijn.be/stops/302248"], ["https://data.delijn.be/stops/504617", "https://data.delijn.be/stops/504629"], ["https://data.delijn.be/stops/405368", "https://data.delijn.be/stops/405373"], ["https://data.delijn.be/stops/101293", "https://data.delijn.be/stops/105396"], ["https://data.delijn.be/stops/204340", "https://data.delijn.be/stops/204535"], ["https://data.delijn.be/stops/405698", "https://data.delijn.be/stops/405930"], ["https://data.delijn.be/stops/206272", "https://data.delijn.be/stops/207271"], ["https://data.delijn.be/stops/300236", "https://data.delijn.be/stops/301373"], ["https://data.delijn.be/stops/403223", "https://data.delijn.be/stops/403224"], ["https://data.delijn.be/stops/205193", "https://data.delijn.be/stops/205195"], ["https://data.delijn.be/stops/101018", "https://data.delijn.be/stops/101134"], ["https://data.delijn.be/stops/101877", "https://data.delijn.be/stops/105824"], ["https://data.delijn.be/stops/102012", "https://data.delijn.be/stops/205644"], ["https://data.delijn.be/stops/102745", "https://data.delijn.be/stops/102760"], ["https://data.delijn.be/stops/206531", "https://data.delijn.be/stops/207532"], ["https://data.delijn.be/stops/406370", "https://data.delijn.be/stops/410395"], ["https://data.delijn.be/stops/103750", "https://data.delijn.be/stops/103770"], ["https://data.delijn.be/stops/200139", "https://data.delijn.be/stops/200227"], ["https://data.delijn.be/stops/505150", "https://data.delijn.be/stops/509890"], ["https://data.delijn.be/stops/503144", "https://data.delijn.be/stops/508144"], ["https://data.delijn.be/stops/203899", "https://data.delijn.be/stops/211125"], ["https://data.delijn.be/stops/207834", "https://data.delijn.be/stops/207835"], ["https://data.delijn.be/stops/208436", "https://data.delijn.be/stops/208438"], ["https://data.delijn.be/stops/106177", "https://data.delijn.be/stops/109373"], ["https://data.delijn.be/stops/101680", "https://data.delijn.be/stops/105495"], ["https://data.delijn.be/stops/401463", "https://data.delijn.be/stops/404970"], ["https://data.delijn.be/stops/502270", "https://data.delijn.be/stops/507672"], ["https://data.delijn.be/stops/301556", "https://data.delijn.be/stops/308082"], ["https://data.delijn.be/stops/404039", "https://data.delijn.be/stops/404073"], ["https://data.delijn.be/stops/305157", "https://data.delijn.be/stops/305217"], ["https://data.delijn.be/stops/300742", "https://data.delijn.be/stops/304774"], ["https://data.delijn.be/stops/207872", "https://data.delijn.be/stops/209290"], ["https://data.delijn.be/stops/202228", "https://data.delijn.be/stops/208857"], ["https://data.delijn.be/stops/503399", "https://data.delijn.be/stops/508256"], ["https://data.delijn.be/stops/101672", "https://data.delijn.be/stops/101674"], ["https://data.delijn.be/stops/101147", "https://data.delijn.be/stops/106860"], ["https://data.delijn.be/stops/201902", "https://data.delijn.be/stops/202473"], ["https://data.delijn.be/stops/307000", "https://data.delijn.be/stops/307262"], ["https://data.delijn.be/stops/206104", "https://data.delijn.be/stops/306720"], ["https://data.delijn.be/stops/403757", "https://data.delijn.be/stops/403761"], ["https://data.delijn.be/stops/402583", "https://data.delijn.be/stops/402654"], ["https://data.delijn.be/stops/501203", "https://data.delijn.be/stops/501240"], ["https://data.delijn.be/stops/205190", "https://data.delijn.be/stops/205191"], ["https://data.delijn.be/stops/104739", "https://data.delijn.be/stops/104752"], ["https://data.delijn.be/stops/300835", "https://data.delijn.be/stops/302282"], ["https://data.delijn.be/stops/405841", "https://data.delijn.be/stops/409416"], ["https://data.delijn.be/stops/106002", "https://data.delijn.be/stops/107955"], ["https://data.delijn.be/stops/401013", "https://data.delijn.be/stops/401137"], ["https://data.delijn.be/stops/405406", "https://data.delijn.be/stops/410018"], ["https://data.delijn.be/stops/103492", "https://data.delijn.be/stops/104353"], ["https://data.delijn.be/stops/307625", "https://data.delijn.be/stops/308671"], ["https://data.delijn.be/stops/108402", "https://data.delijn.be/stops/306637"], ["https://data.delijn.be/stops/404405", "https://data.delijn.be/stops/404413"], ["https://data.delijn.be/stops/301913", "https://data.delijn.be/stops/306253"], ["https://data.delijn.be/stops/302082", "https://data.delijn.be/stops/302863"], ["https://data.delijn.be/stops/404746", "https://data.delijn.be/stops/404748"], ["https://data.delijn.be/stops/102779", "https://data.delijn.be/stops/102953"], ["https://data.delijn.be/stops/210059", "https://data.delijn.be/stops/211058"], ["https://data.delijn.be/stops/503875", "https://data.delijn.be/stops/509755"], ["https://data.delijn.be/stops/103484", "https://data.delijn.be/stops/109157"], ["https://data.delijn.be/stops/406088", "https://data.delijn.be/stops/406089"], ["https://data.delijn.be/stops/105301", "https://data.delijn.be/stops/105353"], ["https://data.delijn.be/stops/200909", "https://data.delijn.be/stops/203051"], ["https://data.delijn.be/stops/300951", "https://data.delijn.be/stops/307807"], ["https://data.delijn.be/stops/408673", "https://data.delijn.be/stops/408812"], ["https://data.delijn.be/stops/404488", "https://data.delijn.be/stops/404542"], ["https://data.delijn.be/stops/407739", "https://data.delijn.be/stops/407740"], ["https://data.delijn.be/stops/408514", "https://data.delijn.be/stops/408574"], ["https://data.delijn.be/stops/403040", "https://data.delijn.be/stops/403498"], ["https://data.delijn.be/stops/304470", "https://data.delijn.be/stops/304471"], ["https://data.delijn.be/stops/307453", "https://data.delijn.be/stops/307454"], ["https://data.delijn.be/stops/501164", "https://data.delijn.be/stops/501640"], ["https://data.delijn.be/stops/202165", "https://data.delijn.be/stops/205072"], ["https://data.delijn.be/stops/101375", "https://data.delijn.be/stops/106055"], ["https://data.delijn.be/stops/102186", "https://data.delijn.be/stops/104276"], ["https://data.delijn.be/stops/300932", "https://data.delijn.be/stops/300935"], ["https://data.delijn.be/stops/300275", "https://data.delijn.be/stops/306285"], ["https://data.delijn.be/stops/504845", "https://data.delijn.be/stops/505995"], ["https://data.delijn.be/stops/201262", "https://data.delijn.be/stops/202547"], ["https://data.delijn.be/stops/204365", "https://data.delijn.be/stops/205214"], ["https://data.delijn.be/stops/104137", "https://data.delijn.be/stops/108417"], ["https://data.delijn.be/stops/102637", "https://data.delijn.be/stops/107854"], ["https://data.delijn.be/stops/204502", "https://data.delijn.be/stops/205539"], ["https://data.delijn.be/stops/102035", "https://data.delijn.be/stops/103763"], ["https://data.delijn.be/stops/502355", "https://data.delijn.be/stops/507355"], ["https://data.delijn.be/stops/503817", "https://data.delijn.be/stops/508028"], ["https://data.delijn.be/stops/103012", "https://data.delijn.be/stops/104210"], ["https://data.delijn.be/stops/402835", "https://data.delijn.be/stops/404619"], ["https://data.delijn.be/stops/102976", "https://data.delijn.be/stops/107519"], ["https://data.delijn.be/stops/303201", "https://data.delijn.be/stops/307845"], ["https://data.delijn.be/stops/405351", "https://data.delijn.be/stops/407901"], ["https://data.delijn.be/stops/405861", "https://data.delijn.be/stops/409740"], ["https://data.delijn.be/stops/208470", "https://data.delijn.be/stops/208471"], ["https://data.delijn.be/stops/407750", "https://data.delijn.be/stops/407751"], ["https://data.delijn.be/stops/405946", "https://data.delijn.be/stops/405947"], ["https://data.delijn.be/stops/303122", "https://data.delijn.be/stops/306066"], ["https://data.delijn.be/stops/202043", "https://data.delijn.be/stops/203394"], ["https://data.delijn.be/stops/103310", "https://data.delijn.be/stops/105808"], ["https://data.delijn.be/stops/403964", "https://data.delijn.be/stops/408709"], ["https://data.delijn.be/stops/105937", "https://data.delijn.be/stops/105939"], ["https://data.delijn.be/stops/303758", "https://data.delijn.be/stops/303760"], ["https://data.delijn.be/stops/106703", "https://data.delijn.be/stops/106705"], ["https://data.delijn.be/stops/501374", "https://data.delijn.be/stops/506372"], ["https://data.delijn.be/stops/503033", "https://data.delijn.be/stops/508424"], ["https://data.delijn.be/stops/108959", "https://data.delijn.be/stops/108961"], ["https://data.delijn.be/stops/104853", "https://data.delijn.be/stops/107889"], ["https://data.delijn.be/stops/200913", "https://data.delijn.be/stops/202091"], ["https://data.delijn.be/stops/103043", "https://data.delijn.be/stops/104026"], ["https://data.delijn.be/stops/208889", "https://data.delijn.be/stops/210854"], ["https://data.delijn.be/stops/200983", "https://data.delijn.be/stops/201066"], ["https://data.delijn.be/stops/106151", "https://data.delijn.be/stops/106155"], ["https://data.delijn.be/stops/503767", "https://data.delijn.be/stops/503822"], ["https://data.delijn.be/stops/302130", "https://data.delijn.be/stops/304869"], ["https://data.delijn.be/stops/304248", "https://data.delijn.be/stops/304299"], ["https://data.delijn.be/stops/109667", "https://data.delijn.be/stops/401935"], ["https://data.delijn.be/stops/406502", "https://data.delijn.be/stops/406505"], ["https://data.delijn.be/stops/200521", "https://data.delijn.be/stops/201236"], ["https://data.delijn.be/stops/303124", "https://data.delijn.be/stops/308439"], ["https://data.delijn.be/stops/101002", "https://data.delijn.be/stops/104175"], ["https://data.delijn.be/stops/101770", "https://data.delijn.be/stops/105565"], ["https://data.delijn.be/stops/402329", "https://data.delijn.be/stops/409600"], ["https://data.delijn.be/stops/109141", "https://data.delijn.be/stops/109144"], ["https://data.delijn.be/stops/505279", "https://data.delijn.be/stops/505285"], ["https://data.delijn.be/stops/202964", "https://data.delijn.be/stops/203588"], ["https://data.delijn.be/stops/301871", "https://data.delijn.be/stops/307285"], ["https://data.delijn.be/stops/105304", "https://data.delijn.be/stops/105353"], ["https://data.delijn.be/stops/407610", "https://data.delijn.be/stops/407747"], ["https://data.delijn.be/stops/402135", "https://data.delijn.be/stops/402139"], ["https://data.delijn.be/stops/504601", "https://data.delijn.be/stops/509599"], ["https://data.delijn.be/stops/107057", "https://data.delijn.be/stops/108605"], ["https://data.delijn.be/stops/508341", "https://data.delijn.be/stops/590010"], ["https://data.delijn.be/stops/101556", "https://data.delijn.be/stops/103710"], ["https://data.delijn.be/stops/206814", "https://data.delijn.be/stops/206815"], ["https://data.delijn.be/stops/202498", "https://data.delijn.be/stops/203179"], ["https://data.delijn.be/stops/306268", "https://data.delijn.be/stops/307327"], ["https://data.delijn.be/stops/205930", "https://data.delijn.be/stops/208829"], ["https://data.delijn.be/stops/404620", "https://data.delijn.be/stops/406961"], ["https://data.delijn.be/stops/101142", "https://data.delijn.be/stops/102832"], ["https://data.delijn.be/stops/208405", "https://data.delijn.be/stops/208763"], ["https://data.delijn.be/stops/204070", "https://data.delijn.be/stops/205905"], ["https://data.delijn.be/stops/407682", "https://data.delijn.be/stops/407692"], ["https://data.delijn.be/stops/306694", "https://data.delijn.be/stops/308782"], ["https://data.delijn.be/stops/204993", "https://data.delijn.be/stops/209130"], ["https://data.delijn.be/stops/404689", "https://data.delijn.be/stops/405822"], ["https://data.delijn.be/stops/101072", "https://data.delijn.be/stops/109773"], ["https://data.delijn.be/stops/204737", "https://data.delijn.be/stops/204738"], ["https://data.delijn.be/stops/205170", "https://data.delijn.be/stops/205579"], ["https://data.delijn.be/stops/503696", "https://data.delijn.be/stops/504948"], ["https://data.delijn.be/stops/206480", "https://data.delijn.be/stops/207528"], ["https://data.delijn.be/stops/403511", "https://data.delijn.be/stops/410216"], ["https://data.delijn.be/stops/402175", "https://data.delijn.be/stops/402372"], ["https://data.delijn.be/stops/403595", "https://data.delijn.be/stops/404314"], ["https://data.delijn.be/stops/501145", "https://data.delijn.be/stops/501432"], ["https://data.delijn.be/stops/105752", "https://data.delijn.be/stops/109963"], ["https://data.delijn.be/stops/109457", "https://data.delijn.be/stops/109458"], ["https://data.delijn.be/stops/106462", "https://data.delijn.be/stops/106463"], ["https://data.delijn.be/stops/106928", "https://data.delijn.be/stops/108694"], ["https://data.delijn.be/stops/302314", "https://data.delijn.be/stops/302394"], ["https://data.delijn.be/stops/404502", "https://data.delijn.be/stops/404503"], ["https://data.delijn.be/stops/304573", "https://data.delijn.be/stops/304595"], ["https://data.delijn.be/stops/508208", "https://data.delijn.be/stops/509820"], ["https://data.delijn.be/stops/302199", "https://data.delijn.be/stops/307057"], ["https://data.delijn.be/stops/301616", "https://data.delijn.be/stops/301667"], ["https://data.delijn.be/stops/405562", "https://data.delijn.be/stops/410098"], ["https://data.delijn.be/stops/304342", "https://data.delijn.be/stops/304352"], ["https://data.delijn.be/stops/403414", "https://data.delijn.be/stops/403872"], ["https://data.delijn.be/stops/107317", "https://data.delijn.be/stops/108816"], ["https://data.delijn.be/stops/508160", "https://data.delijn.be/stops/508178"], ["https://data.delijn.be/stops/205980", "https://data.delijn.be/stops/206580"], ["https://data.delijn.be/stops/401757", "https://data.delijn.be/stops/406137"], ["https://data.delijn.be/stops/200236", "https://data.delijn.be/stops/200521"], ["https://data.delijn.be/stops/508549", "https://data.delijn.be/stops/508797"], ["https://data.delijn.be/stops/506432", "https://data.delijn.be/stops/506433"], ["https://data.delijn.be/stops/200834", "https://data.delijn.be/stops/200856"], ["https://data.delijn.be/stops/301400", "https://data.delijn.be/stops/301401"], ["https://data.delijn.be/stops/300169", "https://data.delijn.be/stops/301225"], ["https://data.delijn.be/stops/202208", "https://data.delijn.be/stops/203770"], ["https://data.delijn.be/stops/206760", "https://data.delijn.be/stops/208530"], ["https://data.delijn.be/stops/503493", "https://data.delijn.be/stops/503567"], ["https://data.delijn.be/stops/400184", "https://data.delijn.be/stops/409801"], ["https://data.delijn.be/stops/503499", "https://data.delijn.be/stops/508685"], ["https://data.delijn.be/stops/101385", "https://data.delijn.be/stops/103785"], ["https://data.delijn.be/stops/305540", "https://data.delijn.be/stops/308688"], ["https://data.delijn.be/stops/300561", "https://data.delijn.be/stops/300563"], ["https://data.delijn.be/stops/204054", "https://data.delijn.be/stops/205316"], ["https://data.delijn.be/stops/102194", "https://data.delijn.be/stops/104277"], ["https://data.delijn.be/stops/405745", "https://data.delijn.be/stops/410139"], ["https://data.delijn.be/stops/505233", "https://data.delijn.be/stops/505720"], ["https://data.delijn.be/stops/408950", "https://data.delijn.be/stops/408951"], ["https://data.delijn.be/stops/505532", "https://data.delijn.be/stops/508958"], ["https://data.delijn.be/stops/503115", "https://data.delijn.be/stops/508119"], ["https://data.delijn.be/stops/400571", "https://data.delijn.be/stops/404052"], ["https://data.delijn.be/stops/107680", "https://data.delijn.be/stops/107685"], ["https://data.delijn.be/stops/102753", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/200257", "https://data.delijn.be/stops/201451"], ["https://data.delijn.be/stops/106014", "https://data.delijn.be/stops/106854"], ["https://data.delijn.be/stops/306299", "https://data.delijn.be/stops/306300"], ["https://data.delijn.be/stops/204126", "https://data.delijn.be/stops/205127"], ["https://data.delijn.be/stops/301039", "https://data.delijn.be/stops/301066"], ["https://data.delijn.be/stops/206792", "https://data.delijn.be/stops/207630"], ["https://data.delijn.be/stops/407000", "https://data.delijn.be/stops/408024"], ["https://data.delijn.be/stops/405310", "https://data.delijn.be/stops/302838"], ["https://data.delijn.be/stops/504429", "https://data.delijn.be/stops/505163"], ["https://data.delijn.be/stops/200091", "https://data.delijn.be/stops/203896"], ["https://data.delijn.be/stops/300764", "https://data.delijn.be/stops/300774"], ["https://data.delijn.be/stops/405224", "https://data.delijn.be/stops/405227"], ["https://data.delijn.be/stops/401225", "https://data.delijn.be/stops/401382"], ["https://data.delijn.be/stops/407100", "https://data.delijn.be/stops/407929"], ["https://data.delijn.be/stops/108103", "https://data.delijn.be/stops/108106"], ["https://data.delijn.be/stops/409514", "https://data.delijn.be/stops/409515"], ["https://data.delijn.be/stops/505303", "https://data.delijn.be/stops/509350"], ["https://data.delijn.be/stops/302426", "https://data.delijn.be/stops/302445"], ["https://data.delijn.be/stops/201153", "https://data.delijn.be/stops/201175"], ["https://data.delijn.be/stops/301414", "https://data.delijn.be/stops/301422"], ["https://data.delijn.be/stops/300301", "https://data.delijn.be/stops/306660"], ["https://data.delijn.be/stops/107080", "https://data.delijn.be/stops/107081"], ["https://data.delijn.be/stops/509317", "https://data.delijn.be/stops/509739"], ["https://data.delijn.be/stops/406317", "https://data.delijn.be/stops/406321"], ["https://data.delijn.be/stops/404188", "https://data.delijn.be/stops/404189"], ["https://data.delijn.be/stops/201389", "https://data.delijn.be/stops/208707"], ["https://data.delijn.be/stops/408959", "https://data.delijn.be/stops/409523"], ["https://data.delijn.be/stops/503720", "https://data.delijn.be/stops/503738"], ["https://data.delijn.be/stops/105043", "https://data.delijn.be/stops/105129"], ["https://data.delijn.be/stops/104683", "https://data.delijn.be/stops/104784"], ["https://data.delijn.be/stops/404262", "https://data.delijn.be/stops/405667"], ["https://data.delijn.be/stops/205160", "https://data.delijn.be/stops/207276"], ["https://data.delijn.be/stops/505542", "https://data.delijn.be/stops/508807"], ["https://data.delijn.be/stops/200773", "https://data.delijn.be/stops/209308"], ["https://data.delijn.be/stops/407927", "https://data.delijn.be/stops/407961"], ["https://data.delijn.be/stops/204098", "https://data.delijn.be/stops/204223"], ["https://data.delijn.be/stops/101064", "https://data.delijn.be/stops/106746"], ["https://data.delijn.be/stops/202824", "https://data.delijn.be/stops/203925"], ["https://data.delijn.be/stops/300300", "https://data.delijn.be/stops/300945"], ["https://data.delijn.be/stops/403749", "https://data.delijn.be/stops/409822"], ["https://data.delijn.be/stops/200901", "https://data.delijn.be/stops/200905"], ["https://data.delijn.be/stops/104078", "https://data.delijn.be/stops/106073"], ["https://data.delijn.be/stops/504531", "https://data.delijn.be/stops/505803"], ["https://data.delijn.be/stops/502273", "https://data.delijn.be/stops/502392"], ["https://data.delijn.be/stops/404738", "https://data.delijn.be/stops/404747"], ["https://data.delijn.be/stops/301700", "https://data.delijn.be/stops/305294"], ["https://data.delijn.be/stops/300730", "https://data.delijn.be/stops/307058"], ["https://data.delijn.be/stops/503259", "https://data.delijn.be/stops/505371"], ["https://data.delijn.be/stops/106001", "https://data.delijn.be/stops/107909"], ["https://data.delijn.be/stops/504374", "https://data.delijn.be/stops/509583"], ["https://data.delijn.be/stops/409104", "https://data.delijn.be/stops/409109"], ["https://data.delijn.be/stops/404160", "https://data.delijn.be/stops/404163"], ["https://data.delijn.be/stops/304018", "https://data.delijn.be/stops/304037"], ["https://data.delijn.be/stops/500020", "https://data.delijn.be/stops/502128"], ["https://data.delijn.be/stops/101653", "https://data.delijn.be/stops/308845"], ["https://data.delijn.be/stops/204410", "https://data.delijn.be/stops/205409"], ["https://data.delijn.be/stops/103142", "https://data.delijn.be/stops/109446"], ["https://data.delijn.be/stops/503614", "https://data.delijn.be/stops/508614"], ["https://data.delijn.be/stops/301516", "https://data.delijn.be/stops/301524"], ["https://data.delijn.be/stops/305905", "https://data.delijn.be/stops/305906"], ["https://data.delijn.be/stops/207642", "https://data.delijn.be/stops/209687"], ["https://data.delijn.be/stops/302956", "https://data.delijn.be/stops/302966"], ["https://data.delijn.be/stops/301552", "https://data.delijn.be/stops/304701"], ["https://data.delijn.be/stops/206821", "https://data.delijn.be/stops/207967"], ["https://data.delijn.be/stops/401161", "https://data.delijn.be/stops/401163"], ["https://data.delijn.be/stops/302149", "https://data.delijn.be/stops/302151"], ["https://data.delijn.be/stops/204373", "https://data.delijn.be/stops/205374"], ["https://data.delijn.be/stops/301730", "https://data.delijn.be/stops/301781"], ["https://data.delijn.be/stops/301244", "https://data.delijn.be/stops/308140"], ["https://data.delijn.be/stops/109070", "https://data.delijn.be/stops/109559"], ["https://data.delijn.be/stops/200552", "https://data.delijn.be/stops/208845"], ["https://data.delijn.be/stops/407642", "https://data.delijn.be/stops/407762"], ["https://data.delijn.be/stops/105105", "https://data.delijn.be/stops/106086"], ["https://data.delijn.be/stops/300672", "https://data.delijn.be/stops/300679"], ["https://data.delijn.be/stops/501295", "https://data.delijn.be/stops/506296"], ["https://data.delijn.be/stops/304119", "https://data.delijn.be/stops/307578"], ["https://data.delijn.be/stops/503508", "https://data.delijn.be/stops/503511"], ["https://data.delijn.be/stops/503579", "https://data.delijn.be/stops/504774"], ["https://data.delijn.be/stops/208573", "https://data.delijn.be/stops/307590"], ["https://data.delijn.be/stops/407942", "https://data.delijn.be/stops/407982"], ["https://data.delijn.be/stops/404395", "https://data.delijn.be/stops/404396"], ["https://data.delijn.be/stops/504834", "https://data.delijn.be/stops/508901"], ["https://data.delijn.be/stops/200755", "https://data.delijn.be/stops/209307"], ["https://data.delijn.be/stops/405678", "https://data.delijn.be/stops/408393"], ["https://data.delijn.be/stops/200826", "https://data.delijn.be/stops/200861"], ["https://data.delijn.be/stops/203427", "https://data.delijn.be/stops/203465"], ["https://data.delijn.be/stops/207084", "https://data.delijn.be/stops/207085"], ["https://data.delijn.be/stops/400585", "https://data.delijn.be/stops/408676"], ["https://data.delijn.be/stops/302944", "https://data.delijn.be/stops/304909"], ["https://data.delijn.be/stops/504005", "https://data.delijn.be/stops/505164"], ["https://data.delijn.be/stops/302790", "https://data.delijn.be/stops/307703"], ["https://data.delijn.be/stops/207535", "https://data.delijn.be/stops/209744"], ["https://data.delijn.be/stops/206031", "https://data.delijn.be/stops/207031"], ["https://data.delijn.be/stops/301053", "https://data.delijn.be/stops/301056"], ["https://data.delijn.be/stops/502230", "https://data.delijn.be/stops/502684"], ["https://data.delijn.be/stops/202031", "https://data.delijn.be/stops/203029"], ["https://data.delijn.be/stops/305419", "https://data.delijn.be/stops/305926"], ["https://data.delijn.be/stops/206543", "https://data.delijn.be/stops/206997"], ["https://data.delijn.be/stops/400541", "https://data.delijn.be/stops/404162"], ["https://data.delijn.be/stops/303063", "https://data.delijn.be/stops/303091"], ["https://data.delijn.be/stops/107884", "https://data.delijn.be/stops/107886"], ["https://data.delijn.be/stops/504552", "https://data.delijn.be/stops/505989"], ["https://data.delijn.be/stops/207711", "https://data.delijn.be/stops/207745"], ["https://data.delijn.be/stops/103330", "https://data.delijn.be/stops/104570"], ["https://data.delijn.be/stops/200200", "https://data.delijn.be/stops/201275"], ["https://data.delijn.be/stops/200933", "https://data.delijn.be/stops/505623"], ["https://data.delijn.be/stops/503768", "https://data.delijn.be/stops/505073"], ["https://data.delijn.be/stops/202604", "https://data.delijn.be/stops/203579"], ["https://data.delijn.be/stops/405473", "https://data.delijn.be/stops/406674"], ["https://data.delijn.be/stops/408645", "https://data.delijn.be/stops/408646"], ["https://data.delijn.be/stops/502546", "https://data.delijn.be/stops/507539"], ["https://data.delijn.be/stops/401798", "https://data.delijn.be/stops/401811"], ["https://data.delijn.be/stops/504957", "https://data.delijn.be/stops/504975"], ["https://data.delijn.be/stops/304964", "https://data.delijn.be/stops/304967"], ["https://data.delijn.be/stops/301780", "https://data.delijn.be/stops/306796"], ["https://data.delijn.be/stops/304168", "https://data.delijn.be/stops/304169"], ["https://data.delijn.be/stops/202968", "https://data.delijn.be/stops/203968"], ["https://data.delijn.be/stops/207476", "https://data.delijn.be/stops/207477"], ["https://data.delijn.be/stops/201418", "https://data.delijn.be/stops/210070"], ["https://data.delijn.be/stops/102187", "https://data.delijn.be/stops/104344"], ["https://data.delijn.be/stops/103022", "https://data.delijn.be/stops/108636"], ["https://data.delijn.be/stops/200730", "https://data.delijn.be/stops/202615"], ["https://data.delijn.be/stops/209123", "https://data.delijn.be/stops/209233"], ["https://data.delijn.be/stops/305261", "https://data.delijn.be/stops/305299"], ["https://data.delijn.be/stops/305318", "https://data.delijn.be/stops/305887"], ["https://data.delijn.be/stops/400220", "https://data.delijn.be/stops/400230"], ["https://data.delijn.be/stops/305746", "https://data.delijn.be/stops/305754"], ["https://data.delijn.be/stops/301047", "https://data.delijn.be/stops/306399"], ["https://data.delijn.be/stops/102085", "https://data.delijn.be/stops/102090"], ["https://data.delijn.be/stops/101914", "https://data.delijn.be/stops/107925"], ["https://data.delijn.be/stops/305133", "https://data.delijn.be/stops/305214"], ["https://data.delijn.be/stops/109615", "https://data.delijn.be/stops/407111"], ["https://data.delijn.be/stops/505403", "https://data.delijn.be/stops/506174"], ["https://data.delijn.be/stops/504355", "https://data.delijn.be/stops/504360"], ["https://data.delijn.be/stops/202000", "https://data.delijn.be/stops/202136"], ["https://data.delijn.be/stops/305075", "https://data.delijn.be/stops/306954"], ["https://data.delijn.be/stops/305166", "https://data.delijn.be/stops/306962"], ["https://data.delijn.be/stops/209384", "https://data.delijn.be/stops/209620"], ["https://data.delijn.be/stops/503994", "https://data.delijn.be/stops/505806"], ["https://data.delijn.be/stops/300394", "https://data.delijn.be/stops/307491"], ["https://data.delijn.be/stops/301362", "https://data.delijn.be/stops/304738"], ["https://data.delijn.be/stops/505323", "https://data.delijn.be/stops/507494"], ["https://data.delijn.be/stops/403005", "https://data.delijn.be/stops/410002"], ["https://data.delijn.be/stops/104972", "https://data.delijn.be/stops/108553"], ["https://data.delijn.be/stops/104625", "https://data.delijn.be/stops/105587"], ["https://data.delijn.be/stops/106732", "https://data.delijn.be/stops/107199"], ["https://data.delijn.be/stops/103612", "https://data.delijn.be/stops/106311"], ["https://data.delijn.be/stops/406319", "https://data.delijn.be/stops/409406"], ["https://data.delijn.be/stops/407049", "https://data.delijn.be/stops/407084"], ["https://data.delijn.be/stops/400943", "https://data.delijn.be/stops/406959"], ["https://data.delijn.be/stops/308512", "https://data.delijn.be/stops/308514"], ["https://data.delijn.be/stops/105751", "https://data.delijn.be/stops/109963"], ["https://data.delijn.be/stops/103731", "https://data.delijn.be/stops/106321"], ["https://data.delijn.be/stops/305211", "https://data.delijn.be/stops/307872"], ["https://data.delijn.be/stops/301431", "https://data.delijn.be/stops/301442"], ["https://data.delijn.be/stops/502479", "https://data.delijn.be/stops/507479"], ["https://data.delijn.be/stops/102210", "https://data.delijn.be/stops/104260"], ["https://data.delijn.be/stops/404706", "https://data.delijn.be/stops/404817"], ["https://data.delijn.be/stops/504528", "https://data.delijn.be/stops/509528"], ["https://data.delijn.be/stops/204292", "https://data.delijn.be/stops/205292"], ["https://data.delijn.be/stops/302178", "https://data.delijn.be/stops/302181"], ["https://data.delijn.be/stops/206317", "https://data.delijn.be/stops/207287"], ["https://data.delijn.be/stops/400796", "https://data.delijn.be/stops/400881"], ["https://data.delijn.be/stops/504399", "https://data.delijn.be/stops/508440"], ["https://data.delijn.be/stops/304872", "https://data.delijn.be/stops/305425"], ["https://data.delijn.be/stops/300726", "https://data.delijn.be/stops/300732"], ["https://data.delijn.be/stops/101898", "https://data.delijn.be/stops/104509"], ["https://data.delijn.be/stops/102606", "https://data.delijn.be/stops/106731"], ["https://data.delijn.be/stops/108653", "https://data.delijn.be/stops/302908"], ["https://data.delijn.be/stops/208649", "https://data.delijn.be/stops/210108"], ["https://data.delijn.be/stops/503758", "https://data.delijn.be/stops/508758"], ["https://data.delijn.be/stops/508360", "https://data.delijn.be/stops/509771"], ["https://data.delijn.be/stops/102672", "https://data.delijn.be/stops/103488"], ["https://data.delijn.be/stops/307358", "https://data.delijn.be/stops/307365"], ["https://data.delijn.be/stops/303262", "https://data.delijn.be/stops/303263"], ["https://data.delijn.be/stops/501163", "https://data.delijn.be/stops/506163"], ["https://data.delijn.be/stops/108720", "https://data.delijn.be/stops/108803"], ["https://data.delijn.be/stops/407371", "https://data.delijn.be/stops/407377"], ["https://data.delijn.be/stops/101049", "https://data.delijn.be/stops/102689"], ["https://data.delijn.be/stops/105003", "https://data.delijn.be/stops/108889"], ["https://data.delijn.be/stops/104677", "https://data.delijn.be/stops/107382"], ["https://data.delijn.be/stops/308459", "https://data.delijn.be/stops/308463"], ["https://data.delijn.be/stops/208356", "https://data.delijn.be/stops/209356"], ["https://data.delijn.be/stops/503864", "https://data.delijn.be/stops/505963"], ["https://data.delijn.be/stops/502391", "https://data.delijn.be/stops/502658"], ["https://data.delijn.be/stops/504172", "https://data.delijn.be/stops/504524"], ["https://data.delijn.be/stops/304112", "https://data.delijn.be/stops/306277"], ["https://data.delijn.be/stops/407211", "https://data.delijn.be/stops/407215"], ["https://data.delijn.be/stops/503428", "https://data.delijn.be/stops/505201"], ["https://data.delijn.be/stops/101704", "https://data.delijn.be/stops/102908"], ["https://data.delijn.be/stops/400265", "https://data.delijn.be/stops/406950"], ["https://data.delijn.be/stops/106522", "https://data.delijn.be/stops/106524"], ["https://data.delijn.be/stops/305740", "https://data.delijn.be/stops/305748"], ["https://data.delijn.be/stops/206749", "https://data.delijn.be/stops/207899"], ["https://data.delijn.be/stops/303554", "https://data.delijn.be/stops/303567"], ["https://data.delijn.be/stops/206779", "https://data.delijn.be/stops/209561"], ["https://data.delijn.be/stops/101836", "https://data.delijn.be/stops/108207"], ["https://data.delijn.be/stops/404148", "https://data.delijn.be/stops/404280"], ["https://data.delijn.be/stops/207257", "https://data.delijn.be/stops/207258"], ["https://data.delijn.be/stops/504101", "https://data.delijn.be/stops/509024"], ["https://data.delijn.be/stops/107610", "https://data.delijn.be/stops/108485"], ["https://data.delijn.be/stops/208284", "https://data.delijn.be/stops/209283"], ["https://data.delijn.be/stops/302497", "https://data.delijn.be/stops/304732"], ["https://data.delijn.be/stops/200050", "https://data.delijn.be/stops/201202"], ["https://data.delijn.be/stops/504388", "https://data.delijn.be/stops/505717"], ["https://data.delijn.be/stops/101228", "https://data.delijn.be/stops/107922"], ["https://data.delijn.be/stops/505981", "https://data.delijn.be/stops/507631"], ["https://data.delijn.be/stops/204144", "https://data.delijn.be/stops/205145"], ["https://data.delijn.be/stops/202499", "https://data.delijn.be/stops/205792"], ["https://data.delijn.be/stops/404181", "https://data.delijn.be/stops/404278"], ["https://data.delijn.be/stops/107980", "https://data.delijn.be/stops/109095"], ["https://data.delijn.be/stops/106304", "https://data.delijn.be/stops/106305"], ["https://data.delijn.be/stops/300951", "https://data.delijn.be/stops/301039"], ["https://data.delijn.be/stops/308976", "https://data.delijn.be/stops/308977"], ["https://data.delijn.be/stops/300431", "https://data.delijn.be/stops/302701"], ["https://data.delijn.be/stops/303996", "https://data.delijn.be/stops/304061"], ["https://data.delijn.be/stops/201671", "https://data.delijn.be/stops/202774"], ["https://data.delijn.be/stops/406631", "https://data.delijn.be/stops/406698"], ["https://data.delijn.be/stops/504439", "https://data.delijn.be/stops/504449"], ["https://data.delijn.be/stops/402815", "https://data.delijn.be/stops/409039"], ["https://data.delijn.be/stops/300337", "https://data.delijn.be/stops/304439"], ["https://data.delijn.be/stops/106765", "https://data.delijn.be/stops/107519"], ["https://data.delijn.be/stops/108811", "https://data.delijn.be/stops/108812"], ["https://data.delijn.be/stops/507526", "https://data.delijn.be/stops/507528"], ["https://data.delijn.be/stops/505149", "https://data.delijn.be/stops/505244"], ["https://data.delijn.be/stops/208698", "https://data.delijn.be/stops/208700"], ["https://data.delijn.be/stops/102835", "https://data.delijn.be/stops/102837"], ["https://data.delijn.be/stops/107082", "https://data.delijn.be/stops/108173"], ["https://data.delijn.be/stops/208207", "https://data.delijn.be/stops/208208"], ["https://data.delijn.be/stops/400328", "https://data.delijn.be/stops/400331"], ["https://data.delijn.be/stops/205999", "https://data.delijn.be/stops/207723"], ["https://data.delijn.be/stops/507428", "https://data.delijn.be/stops/507696"], ["https://data.delijn.be/stops/109491", "https://data.delijn.be/stops/305834"], ["https://data.delijn.be/stops/104821", "https://data.delijn.be/stops/108508"], ["https://data.delijn.be/stops/200025", "https://data.delijn.be/stops/208845"], ["https://data.delijn.be/stops/102184", "https://data.delijn.be/stops/102277"], ["https://data.delijn.be/stops/208488", "https://data.delijn.be/stops/209596"], ["https://data.delijn.be/stops/200995", "https://data.delijn.be/stops/201295"], ["https://data.delijn.be/stops/504235", "https://data.delijn.be/stops/509235"], ["https://data.delijn.be/stops/201477", "https://data.delijn.be/stops/210063"], ["https://data.delijn.be/stops/401825", "https://data.delijn.be/stops/401826"], ["https://data.delijn.be/stops/302436", "https://data.delijn.be/stops/302445"], ["https://data.delijn.be/stops/108553", "https://data.delijn.be/stops/109597"], ["https://data.delijn.be/stops/504012", "https://data.delijn.be/stops/505911"], ["https://data.delijn.be/stops/106812", "https://data.delijn.be/stops/106814"], ["https://data.delijn.be/stops/502434", "https://data.delijn.be/stops/507424"], ["https://data.delijn.be/stops/308054", "https://data.delijn.be/stops/308055"], ["https://data.delijn.be/stops/505186", "https://data.delijn.be/stops/509560"], ["https://data.delijn.be/stops/206231", "https://data.delijn.be/stops/300218"], ["https://data.delijn.be/stops/301978", "https://data.delijn.be/stops/301984"], ["https://data.delijn.be/stops/501007", "https://data.delijn.be/stops/508747"], ["https://data.delijn.be/stops/508474", "https://data.delijn.be/stops/509005"], ["https://data.delijn.be/stops/401260", "https://data.delijn.be/stops/401320"], ["https://data.delijn.be/stops/108706", "https://data.delijn.be/stops/108711"], ["https://data.delijn.be/stops/209552", "https://data.delijn.be/stops/209569"], ["https://data.delijn.be/stops/403717", "https://data.delijn.be/stops/403724"], ["https://data.delijn.be/stops/302774", "https://data.delijn.be/stops/306553"], ["https://data.delijn.be/stops/306621", "https://data.delijn.be/stops/306760"], ["https://data.delijn.be/stops/301493", "https://data.delijn.be/stops/307957"], ["https://data.delijn.be/stops/407813", "https://data.delijn.be/stops/407971"], ["https://data.delijn.be/stops/102040", "https://data.delijn.be/stops/103740"], ["https://data.delijn.be/stops/407763", "https://data.delijn.be/stops/407764"], ["https://data.delijn.be/stops/207004", "https://data.delijn.be/stops/207005"], ["https://data.delijn.be/stops/105824", "https://data.delijn.be/stops/105825"], ["https://data.delijn.be/stops/208798", "https://data.delijn.be/stops/209355"], ["https://data.delijn.be/stops/408360", "https://data.delijn.be/stops/408366"], ["https://data.delijn.be/stops/102590", "https://data.delijn.be/stops/102760"], ["https://data.delijn.be/stops/206450", "https://data.delijn.be/stops/207494"], ["https://data.delijn.be/stops/106642", "https://data.delijn.be/stops/106678"], ["https://data.delijn.be/stops/102237", "https://data.delijn.be/stops/104288"], ["https://data.delijn.be/stops/203166", "https://data.delijn.be/stops/205075"], ["https://data.delijn.be/stops/304403", "https://data.delijn.be/stops/304404"], ["https://data.delijn.be/stops/300456", "https://data.delijn.be/stops/300458"], ["https://data.delijn.be/stops/200369", "https://data.delijn.be/stops/201226"], ["https://data.delijn.be/stops/504161", "https://data.delijn.be/stops/504193"], ["https://data.delijn.be/stops/208263", "https://data.delijn.be/stops/208717"], ["https://data.delijn.be/stops/104793", "https://data.delijn.be/stops/107634"], ["https://data.delijn.be/stops/200171", "https://data.delijn.be/stops/200229"], ["https://data.delijn.be/stops/109903", "https://data.delijn.be/stops/109904"], ["https://data.delijn.be/stops/401480", "https://data.delijn.be/stops/406144"], ["https://data.delijn.be/stops/202437", "https://data.delijn.be/stops/202585"], ["https://data.delijn.be/stops/406191", "https://data.delijn.be/stops/406200"], ["https://data.delijn.be/stops/300728", "https://data.delijn.be/stops/300730"], ["https://data.delijn.be/stops/206820", "https://data.delijn.be/stops/206821"], ["https://data.delijn.be/stops/303754", "https://data.delijn.be/stops/303758"], ["https://data.delijn.be/stops/503652", "https://data.delijn.be/stops/508652"], ["https://data.delijn.be/stops/101925", "https://data.delijn.be/stops/105460"], ["https://data.delijn.be/stops/501036", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/107144", "https://data.delijn.be/stops/107146"], ["https://data.delijn.be/stops/106696", "https://data.delijn.be/stops/106698"], ["https://data.delijn.be/stops/207268", "https://data.delijn.be/stops/207871"], ["https://data.delijn.be/stops/300475", "https://data.delijn.be/stops/308080"], ["https://data.delijn.be/stops/503107", "https://data.delijn.be/stops/505380"], ["https://data.delijn.be/stops/407449", "https://data.delijn.be/stops/407490"], ["https://data.delijn.be/stops/106361", "https://data.delijn.be/stops/106362"], ["https://data.delijn.be/stops/306630", "https://data.delijn.be/stops/306631"], ["https://data.delijn.be/stops/503376", "https://data.delijn.be/stops/508441"], ["https://data.delijn.be/stops/301514", "https://data.delijn.be/stops/308076"], ["https://data.delijn.be/stops/301011", "https://data.delijn.be/stops/301012"], ["https://data.delijn.be/stops/202670", "https://data.delijn.be/stops/203670"], ["https://data.delijn.be/stops/102882", "https://data.delijn.be/stops/108156"], ["https://data.delijn.be/stops/102703", "https://data.delijn.be/stops/104749"], ["https://data.delijn.be/stops/301074", "https://data.delijn.be/stops/306813"], ["https://data.delijn.be/stops/503716", "https://data.delijn.be/stops/505937"], ["https://data.delijn.be/stops/107202", "https://data.delijn.be/stops/107604"], ["https://data.delijn.be/stops/400063", "https://data.delijn.be/stops/400108"], ["https://data.delijn.be/stops/106915", "https://data.delijn.be/stops/107263"], ["https://data.delijn.be/stops/101649", "https://data.delijn.be/stops/103587"], ["https://data.delijn.be/stops/409116", "https://data.delijn.be/stops/409221"], ["https://data.delijn.be/stops/102595", "https://data.delijn.be/stops/105510"], ["https://data.delijn.be/stops/301654", "https://data.delijn.be/stops/306301"], ["https://data.delijn.be/stops/301981", "https://data.delijn.be/stops/301988"], ["https://data.delijn.be/stops/202449", "https://data.delijn.be/stops/203441"], ["https://data.delijn.be/stops/405699", "https://data.delijn.be/stops/406134"], ["https://data.delijn.be/stops/200308", "https://data.delijn.be/stops/201307"], ["https://data.delijn.be/stops/209121", "https://data.delijn.be/stops/209768"], ["https://data.delijn.be/stops/109079", "https://data.delijn.be/stops/109081"], ["https://data.delijn.be/stops/300130", "https://data.delijn.be/stops/300143"], ["https://data.delijn.be/stops/204116", "https://data.delijn.be/stops/204417"], ["https://data.delijn.be/stops/401320", "https://data.delijn.be/stops/406653"], ["https://data.delijn.be/stops/306830", "https://data.delijn.be/stops/306832"], ["https://data.delijn.be/stops/402577", "https://data.delijn.be/stops/404143"], ["https://data.delijn.be/stops/104030", "https://data.delijn.be/stops/104250"], ["https://data.delijn.be/stops/206232", "https://data.delijn.be/stops/207231"], ["https://data.delijn.be/stops/505687", "https://data.delijn.be/stops/507066"], ["https://data.delijn.be/stops/405344", "https://data.delijn.be/stops/308732"], ["https://data.delijn.be/stops/204191", "https://data.delijn.be/stops/204192"], ["https://data.delijn.be/stops/104262", "https://data.delijn.be/stops/104271"], ["https://data.delijn.be/stops/504054", "https://data.delijn.be/stops/509057"], ["https://data.delijn.be/stops/107578", "https://data.delijn.be/stops/107581"], ["https://data.delijn.be/stops/201222", "https://data.delijn.be/stops/201987"], ["https://data.delijn.be/stops/203480", "https://data.delijn.be/stops/203749"], ["https://data.delijn.be/stops/105287", "https://data.delijn.be/stops/105290"], ["https://data.delijn.be/stops/503163", "https://data.delijn.be/stops/504298"], ["https://data.delijn.be/stops/406557", "https://data.delijn.be/stops/407375"], ["https://data.delijn.be/stops/206989", "https://data.delijn.be/stops/207085"], ["https://data.delijn.be/stops/503405", "https://data.delijn.be/stops/503445"], ["https://data.delijn.be/stops/400905", "https://data.delijn.be/stops/407401"], ["https://data.delijn.be/stops/202035", "https://data.delijn.be/stops/203034"], ["https://data.delijn.be/stops/408268", "https://data.delijn.be/stops/408270"], ["https://data.delijn.be/stops/203238", "https://data.delijn.be/stops/203268"], ["https://data.delijn.be/stops/504997", "https://data.delijn.be/stops/505376"], ["https://data.delijn.be/stops/408858", "https://data.delijn.be/stops/408884"], ["https://data.delijn.be/stops/102847", "https://data.delijn.be/stops/103625"], ["https://data.delijn.be/stops/503220", "https://data.delijn.be/stops/505264"], ["https://data.delijn.be/stops/507185", "https://data.delijn.be/stops/507667"], ["https://data.delijn.be/stops/101035", "https://data.delijn.be/stops/103127"], ["https://data.delijn.be/stops/401828", "https://data.delijn.be/stops/401833"], ["https://data.delijn.be/stops/403642", "https://data.delijn.be/stops/403655"], ["https://data.delijn.be/stops/406040", "https://data.delijn.be/stops/406042"], ["https://data.delijn.be/stops/300944", "https://data.delijn.be/stops/308903"], ["https://data.delijn.be/stops/301584", "https://data.delijn.be/stops/301587"], ["https://data.delijn.be/stops/200258", "https://data.delijn.be/stops/202562"], ["https://data.delijn.be/stops/304498", "https://data.delijn.be/stops/304499"], ["https://data.delijn.be/stops/203857", "https://data.delijn.be/stops/203858"], ["https://data.delijn.be/stops/200017", "https://data.delijn.be/stops/200354"], ["https://data.delijn.be/stops/102702", "https://data.delijn.be/stops/105549"], ["https://data.delijn.be/stops/504357", "https://data.delijn.be/stops/509589"], ["https://data.delijn.be/stops/200025", "https://data.delijn.be/stops/200552"], ["https://data.delijn.be/stops/503594", "https://data.delijn.be/stops/503597"], ["https://data.delijn.be/stops/208061", "https://data.delijn.be/stops/209511"], ["https://data.delijn.be/stops/106842", "https://data.delijn.be/stops/106843"], ["https://data.delijn.be/stops/204023", "https://data.delijn.be/stops/205024"], ["https://data.delijn.be/stops/501242", "https://data.delijn.be/stops/506242"], ["https://data.delijn.be/stops/203817", "https://data.delijn.be/stops/203907"], ["https://data.delijn.be/stops/208031", "https://data.delijn.be/stops/209030"], ["https://data.delijn.be/stops/201926", "https://data.delijn.be/stops/207248"], ["https://data.delijn.be/stops/201274", "https://data.delijn.be/stops/201382"], ["https://data.delijn.be/stops/503693", "https://data.delijn.be/stops/508715"], ["https://data.delijn.be/stops/306384", "https://data.delijn.be/stops/307210"], ["https://data.delijn.be/stops/202539", "https://data.delijn.be/stops/203689"], ["https://data.delijn.be/stops/503161", "https://data.delijn.be/stops/508656"], ["https://data.delijn.be/stops/500560", "https://data.delijn.be/stops/506033"], ["https://data.delijn.be/stops/405294", "https://data.delijn.be/stops/405295"], ["https://data.delijn.be/stops/300086", "https://data.delijn.be/stops/306860"], ["https://data.delijn.be/stops/208197", "https://data.delijn.be/stops/209132"], ["https://data.delijn.be/stops/207379", "https://data.delijn.be/stops/207730"], ["https://data.delijn.be/stops/302427", "https://data.delijn.be/stops/302439"], ["https://data.delijn.be/stops/300142", "https://data.delijn.be/stops/306806"], ["https://data.delijn.be/stops/200458", "https://data.delijn.be/stops/201662"], ["https://data.delijn.be/stops/201420", "https://data.delijn.be/stops/202013"], ["https://data.delijn.be/stops/502489", "https://data.delijn.be/stops/507489"], ["https://data.delijn.be/stops/302123", "https://data.delijn.be/stops/302124"], ["https://data.delijn.be/stops/109178", "https://data.delijn.be/stops/109179"], ["https://data.delijn.be/stops/209492", "https://data.delijn.be/stops/209493"], ["https://data.delijn.be/stops/507684", "https://data.delijn.be/stops/508231"], ["https://data.delijn.be/stops/301288", "https://data.delijn.be/stops/301331"], ["https://data.delijn.be/stops/403628", "https://data.delijn.be/stops/403649"], ["https://data.delijn.be/stops/303136", "https://data.delijn.be/stops/303148"], ["https://data.delijn.be/stops/207525", "https://data.delijn.be/stops/216007"], ["https://data.delijn.be/stops/106579", "https://data.delijn.be/stops/106580"], ["https://data.delijn.be/stops/304764", "https://data.delijn.be/stops/304770"], ["https://data.delijn.be/stops/400264", "https://data.delijn.be/stops/400932"], ["https://data.delijn.be/stops/408431", "https://data.delijn.be/stops/408432"], ["https://data.delijn.be/stops/506664", "https://data.delijn.be/stops/506665"], ["https://data.delijn.be/stops/102120", "https://data.delijn.be/stops/102210"], ["https://data.delijn.be/stops/201451", "https://data.delijn.be/stops/211405"], ["https://data.delijn.be/stops/305738", "https://data.delijn.be/stops/305748"], ["https://data.delijn.be/stops/405534", "https://data.delijn.be/stops/407294"], ["https://data.delijn.be/stops/502747", "https://data.delijn.be/stops/505069"], ["https://data.delijn.be/stops/401489", "https://data.delijn.be/stops/401500"], ["https://data.delijn.be/stops/304128", "https://data.delijn.be/stops/307676"], ["https://data.delijn.be/stops/207872", "https://data.delijn.be/stops/209366"], ["https://data.delijn.be/stops/107183", "https://data.delijn.be/stops/107736"], ["https://data.delijn.be/stops/200076", "https://data.delijn.be/stops/204911"], ["https://data.delijn.be/stops/101179", "https://data.delijn.be/stops/103214"], ["https://data.delijn.be/stops/304128", "https://data.delijn.be/stops/304134"], ["https://data.delijn.be/stops/200703", "https://data.delijn.be/stops/202426"], ["https://data.delijn.be/stops/408108", "https://data.delijn.be/stops/408116"], ["https://data.delijn.be/stops/308566", "https://data.delijn.be/stops/308574"], ["https://data.delijn.be/stops/504225", "https://data.delijn.be/stops/504226"], ["https://data.delijn.be/stops/303987", "https://data.delijn.be/stops/306290"], ["https://data.delijn.be/stops/404897", "https://data.delijn.be/stops/404906"], ["https://data.delijn.be/stops/103690", "https://data.delijn.be/stops/109005"], ["https://data.delijn.be/stops/302749", "https://data.delijn.be/stops/307046"], ["https://data.delijn.be/stops/505119", "https://data.delijn.be/stops/509641"], ["https://data.delijn.be/stops/404572", "https://data.delijn.be/stops/404573"], ["https://data.delijn.be/stops/403920", "https://data.delijn.be/stops/404014"], ["https://data.delijn.be/stops/104738", "https://data.delijn.be/stops/104742"], ["https://data.delijn.be/stops/204081", "https://data.delijn.be/stops/205080"], ["https://data.delijn.be/stops/403892", "https://data.delijn.be/stops/406887"], ["https://data.delijn.be/stops/510027", "https://data.delijn.be/stops/510030"], ["https://data.delijn.be/stops/103042", "https://data.delijn.be/stops/106771"], ["https://data.delijn.be/stops/102233", "https://data.delijn.be/stops/105661"], ["https://data.delijn.be/stops/208146", "https://data.delijn.be/stops/209147"], ["https://data.delijn.be/stops/104006", "https://data.delijn.be/stops/107285"], ["https://data.delijn.be/stops/202341", "https://data.delijn.be/stops/203483"], ["https://data.delijn.be/stops/205153", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/101450", "https://data.delijn.be/stops/108360"], ["https://data.delijn.be/stops/509368", "https://data.delijn.be/stops/509372"], ["https://data.delijn.be/stops/105269", "https://data.delijn.be/stops/105293"], ["https://data.delijn.be/stops/106143", "https://data.delijn.be/stops/106144"], ["https://data.delijn.be/stops/308148", "https://data.delijn.be/stops/308149"], ["https://data.delijn.be/stops/404091", "https://data.delijn.be/stops/408585"], ["https://data.delijn.be/stops/203956", "https://data.delijn.be/stops/203958"], ["https://data.delijn.be/stops/300815", "https://data.delijn.be/stops/300880"], ["https://data.delijn.be/stops/407935", "https://data.delijn.be/stops/407938"], ["https://data.delijn.be/stops/201736", "https://data.delijn.be/stops/202787"], ["https://data.delijn.be/stops/300723", "https://data.delijn.be/stops/300724"], ["https://data.delijn.be/stops/300435", "https://data.delijn.be/stops/300441"], ["https://data.delijn.be/stops/501169", "https://data.delijn.be/stops/501172"], ["https://data.delijn.be/stops/208064", "https://data.delijn.be/stops/208067"], ["https://data.delijn.be/stops/304542", "https://data.delijn.be/stops/306207"], ["https://data.delijn.be/stops/303018", "https://data.delijn.be/stops/303021"], ["https://data.delijn.be/stops/503788", "https://data.delijn.be/stops/508788"], ["https://data.delijn.be/stops/403758", "https://data.delijn.be/stops/403763"], ["https://data.delijn.be/stops/401590", "https://data.delijn.be/stops/402082"], ["https://data.delijn.be/stops/301169", "https://data.delijn.be/stops/303208"], ["https://data.delijn.be/stops/206349", "https://data.delijn.be/stops/207729"], ["https://data.delijn.be/stops/402429", "https://data.delijn.be/stops/406678"], ["https://data.delijn.be/stops/202592", "https://data.delijn.be/stops/203592"], ["https://data.delijn.be/stops/201871", "https://data.delijn.be/stops/202422"], ["https://data.delijn.be/stops/306700", "https://data.delijn.be/stops/306828"], ["https://data.delijn.be/stops/502503", "https://data.delijn.be/stops/505588"], ["https://data.delijn.be/stops/301597", "https://data.delijn.be/stops/306260"], ["https://data.delijn.be/stops/104861", "https://data.delijn.be/stops/107879"], ["https://data.delijn.be/stops/407889", "https://data.delijn.be/stops/408189"], ["https://data.delijn.be/stops/307959", "https://data.delijn.be/stops/308070"], ["https://data.delijn.be/stops/207879", "https://data.delijn.be/stops/207900"], ["https://data.delijn.be/stops/400721", "https://data.delijn.be/stops/401504"], ["https://data.delijn.be/stops/304177", "https://data.delijn.be/stops/304178"], ["https://data.delijn.be/stops/102857", "https://data.delijn.be/stops/102858"], ["https://data.delijn.be/stops/204397", "https://data.delijn.be/stops/204416"], ["https://data.delijn.be/stops/304382", "https://data.delijn.be/stops/306831"], ["https://data.delijn.be/stops/205986", "https://data.delijn.be/stops/206266"], ["https://data.delijn.be/stops/200525", "https://data.delijn.be/stops/204911"], ["https://data.delijn.be/stops/301849", "https://data.delijn.be/stops/305819"], ["https://data.delijn.be/stops/408079", "https://data.delijn.be/stops/408084"], ["https://data.delijn.be/stops/206241", "https://data.delijn.be/stops/206242"], ["https://data.delijn.be/stops/204288", "https://data.delijn.be/stops/205498"], ["https://data.delijn.be/stops/106179", "https://data.delijn.be/stops/109372"], ["https://data.delijn.be/stops/400927", "https://data.delijn.be/stops/407393"], ["https://data.delijn.be/stops/401024", "https://data.delijn.be/stops/409817"], ["https://data.delijn.be/stops/104490", "https://data.delijn.be/stops/104890"], ["https://data.delijn.be/stops/200017", "https://data.delijn.be/stops/200148"], ["https://data.delijn.be/stops/305290", "https://data.delijn.be/stops/305293"], ["https://data.delijn.be/stops/208482", "https://data.delijn.be/stops/209482"], ["https://data.delijn.be/stops/304258", "https://data.delijn.be/stops/305493"], ["https://data.delijn.be/stops/105789", "https://data.delijn.be/stops/105792"], ["https://data.delijn.be/stops/503643", "https://data.delijn.be/stops/508643"], ["https://data.delijn.be/stops/401603", "https://data.delijn.be/stops/409438"], ["https://data.delijn.be/stops/501382", "https://data.delijn.be/stops/507255"], ["https://data.delijn.be/stops/104024", "https://data.delijn.be/stops/106900"], ["https://data.delijn.be/stops/101166", "https://data.delijn.be/stops/102395"], ["https://data.delijn.be/stops/108464", "https://data.delijn.be/stops/108469"], ["https://data.delijn.be/stops/404213", "https://data.delijn.be/stops/409630"], ["https://data.delijn.be/stops/402936", "https://data.delijn.be/stops/405977"], ["https://data.delijn.be/stops/301580", "https://data.delijn.be/stops/301589"], ["https://data.delijn.be/stops/200383", "https://data.delijn.be/stops/201245"], ["https://data.delijn.be/stops/506014", "https://data.delijn.be/stops/506620"], ["https://data.delijn.be/stops/300870", "https://data.delijn.be/stops/302221"], ["https://data.delijn.be/stops/308161", "https://data.delijn.be/stops/308163"], ["https://data.delijn.be/stops/103940", "https://data.delijn.be/stops/109709"], ["https://data.delijn.be/stops/109208", "https://data.delijn.be/stops/109227"], ["https://data.delijn.be/stops/301462", "https://data.delijn.be/stops/307957"], ["https://data.delijn.be/stops/408030", "https://data.delijn.be/stops/408062"], ["https://data.delijn.be/stops/505787", "https://data.delijn.be/stops/509343"], ["https://data.delijn.be/stops/102657", "https://data.delijn.be/stops/301151"], ["https://data.delijn.be/stops/402716", "https://data.delijn.be/stops/303647"], ["https://data.delijn.be/stops/302452", "https://data.delijn.be/stops/302493"], ["https://data.delijn.be/stops/400065", "https://data.delijn.be/stops/409203"], ["https://data.delijn.be/stops/505367", "https://data.delijn.be/stops/505791"], ["https://data.delijn.be/stops/207791", "https://data.delijn.be/stops/207792"], ["https://data.delijn.be/stops/406164", "https://data.delijn.be/stops/406198"], ["https://data.delijn.be/stops/206835", "https://data.delijn.be/stops/206939"], ["https://data.delijn.be/stops/202326", "https://data.delijn.be/stops/202715"], ["https://data.delijn.be/stops/101017", "https://data.delijn.be/stops/101133"], ["https://data.delijn.be/stops/102899", "https://data.delijn.be/stops/107068"], ["https://data.delijn.be/stops/200374", "https://data.delijn.be/stops/201037"], ["https://data.delijn.be/stops/200770", "https://data.delijn.be/stops/507952"], ["https://data.delijn.be/stops/400119", "https://data.delijn.be/stops/400160"], ["https://data.delijn.be/stops/503242", "https://data.delijn.be/stops/505371"], ["https://data.delijn.be/stops/305529", "https://data.delijn.be/stops/305577"], ["https://data.delijn.be/stops/202707", "https://data.delijn.be/stops/203683"], ["https://data.delijn.be/stops/208682", "https://data.delijn.be/stops/209436"], ["https://data.delijn.be/stops/101359", "https://data.delijn.be/stops/102188"], ["https://data.delijn.be/stops/306312", "https://data.delijn.be/stops/307639"], ["https://data.delijn.be/stops/404734", "https://data.delijn.be/stops/404814"], ["https://data.delijn.be/stops/201402", "https://data.delijn.be/stops/202365"], ["https://data.delijn.be/stops/102323", "https://data.delijn.be/stops/204029"], ["https://data.delijn.be/stops/108949", "https://data.delijn.be/stops/109220"], ["https://data.delijn.be/stops/504246", "https://data.delijn.be/stops/504702"], ["https://data.delijn.be/stops/200901", "https://data.delijn.be/stops/202267"], ["https://data.delijn.be/stops/102633", "https://data.delijn.be/stops/104908"], ["https://data.delijn.be/stops/200768", "https://data.delijn.be/stops/204976"], ["https://data.delijn.be/stops/305617", "https://data.delijn.be/stops/305955"], ["https://data.delijn.be/stops/308142", "https://data.delijn.be/stops/308143"], ["https://data.delijn.be/stops/301247", "https://data.delijn.be/stops/307197"], ["https://data.delijn.be/stops/404398", "https://data.delijn.be/stops/404426"], ["https://data.delijn.be/stops/109232", "https://data.delijn.be/stops/109234"], ["https://data.delijn.be/stops/200543", "https://data.delijn.be/stops/210107"], ["https://data.delijn.be/stops/503775", "https://data.delijn.be/stops/504318"], ["https://data.delijn.be/stops/308552", "https://data.delijn.be/stops/308553"], ["https://data.delijn.be/stops/204449", "https://data.delijn.be/stops/205301"], ["https://data.delijn.be/stops/103300", "https://data.delijn.be/stops/107845"], ["https://data.delijn.be/stops/106286", "https://data.delijn.be/stops/106302"], ["https://data.delijn.be/stops/106131", "https://data.delijn.be/stops/106133"], ["https://data.delijn.be/stops/101812", "https://data.delijn.be/stops/107978"], ["https://data.delijn.be/stops/508129", "https://data.delijn.be/stops/508993"], ["https://data.delijn.be/stops/104013", "https://data.delijn.be/stops/104014"], ["https://data.delijn.be/stops/206626", "https://data.delijn.be/stops/206681"], ["https://data.delijn.be/stops/505668", "https://data.delijn.be/stops/505753"], ["https://data.delijn.be/stops/204664", "https://data.delijn.be/stops/205126"], ["https://data.delijn.be/stops/202929", "https://data.delijn.be/stops/203912"], ["https://data.delijn.be/stops/503281", "https://data.delijn.be/stops/503287"], ["https://data.delijn.be/stops/204230", "https://data.delijn.be/stops/205230"], ["https://data.delijn.be/stops/504453", "https://data.delijn.be/stops/504454"], ["https://data.delijn.be/stops/207486", "https://data.delijn.be/stops/209756"], ["https://data.delijn.be/stops/304028", "https://data.delijn.be/stops/304100"], ["https://data.delijn.be/stops/401214", "https://data.delijn.be/stops/401253"], ["https://data.delijn.be/stops/304596", "https://data.delijn.be/stops/304652"], ["https://data.delijn.be/stops/202690", "https://data.delijn.be/stops/203720"], ["https://data.delijn.be/stops/208040", "https://data.delijn.be/stops/209047"], ["https://data.delijn.be/stops/503217", "https://data.delijn.be/stops/503449"], ["https://data.delijn.be/stops/503205", "https://data.delijn.be/stops/508186"], ["https://data.delijn.be/stops/202375", "https://data.delijn.be/stops/203374"], ["https://data.delijn.be/stops/101589", "https://data.delijn.be/stops/105766"], ["https://data.delijn.be/stops/400084", "https://data.delijn.be/stops/400085"], ["https://data.delijn.be/stops/507220", "https://data.delijn.be/stops/507221"], ["https://data.delijn.be/stops/205992", "https://data.delijn.be/stops/208780"], ["https://data.delijn.be/stops/103274", "https://data.delijn.be/stops/107609"], ["https://data.delijn.be/stops/200676", "https://data.delijn.be/stops/200677"], ["https://data.delijn.be/stops/201197", "https://data.delijn.be/stops/201690"], ["https://data.delijn.be/stops/407298", "https://data.delijn.be/stops/407299"], ["https://data.delijn.be/stops/208956", "https://data.delijn.be/stops/208957"], ["https://data.delijn.be/stops/301967", "https://data.delijn.be/stops/307222"], ["https://data.delijn.be/stops/204006", "https://data.delijn.be/stops/204322"], ["https://data.delijn.be/stops/501530", "https://data.delijn.be/stops/501531"], ["https://data.delijn.be/stops/508347", "https://data.delijn.be/stops/510025"], ["https://data.delijn.be/stops/303622", "https://data.delijn.be/stops/307339"], ["https://data.delijn.be/stops/401847", "https://data.delijn.be/stops/406233"], ["https://data.delijn.be/stops/101547", "https://data.delijn.be/stops/101551"], ["https://data.delijn.be/stops/403056", "https://data.delijn.be/stops/403315"], ["https://data.delijn.be/stops/405306", "https://data.delijn.be/stops/409499"], ["https://data.delijn.be/stops/107110", "https://data.delijn.be/stops/107600"], ["https://data.delijn.be/stops/302498", "https://data.delijn.be/stops/302499"], ["https://data.delijn.be/stops/402750", "https://data.delijn.be/stops/402751"], ["https://data.delijn.be/stops/504097", "https://data.delijn.be/stops/509097"], ["https://data.delijn.be/stops/304987", "https://data.delijn.be/stops/308021"], ["https://data.delijn.be/stops/209095", "https://data.delijn.be/stops/209096"], ["https://data.delijn.be/stops/308146", "https://data.delijn.be/stops/308164"], ["https://data.delijn.be/stops/304337", "https://data.delijn.be/stops/304338"], ["https://data.delijn.be/stops/402228", "https://data.delijn.be/stops/402229"], ["https://data.delijn.be/stops/407290", "https://data.delijn.be/stops/407291"], ["https://data.delijn.be/stops/101292", "https://data.delijn.be/stops/101293"], ["https://data.delijn.be/stops/302899", "https://data.delijn.be/stops/302900"], ["https://data.delijn.be/stops/402297", "https://data.delijn.be/stops/405578"], ["https://data.delijn.be/stops/401077", "https://data.delijn.be/stops/407537"], ["https://data.delijn.be/stops/507154", "https://data.delijn.be/stops/507247"], ["https://data.delijn.be/stops/201672", "https://data.delijn.be/stops/203501"], ["https://data.delijn.be/stops/506066", "https://data.delijn.be/stops/506071"], ["https://data.delijn.be/stops/407274", "https://data.delijn.be/stops/407311"], ["https://data.delijn.be/stops/204069", "https://data.delijn.be/stops/205186"], ["https://data.delijn.be/stops/206168", "https://data.delijn.be/stops/303405"], ["https://data.delijn.be/stops/108511", "https://data.delijn.be/stops/108513"], ["https://data.delijn.be/stops/204020", "https://data.delijn.be/stops/204021"], ["https://data.delijn.be/stops/304185", "https://data.delijn.be/stops/304186"], ["https://data.delijn.be/stops/403164", "https://data.delijn.be/stops/410127"], ["https://data.delijn.be/stops/406240", "https://data.delijn.be/stops/406258"], ["https://data.delijn.be/stops/206128", "https://data.delijn.be/stops/207651"], ["https://data.delijn.be/stops/501668", "https://data.delijn.be/stops/506143"], ["https://data.delijn.be/stops/305177", "https://data.delijn.be/stops/305198"], ["https://data.delijn.be/stops/404419", "https://data.delijn.be/stops/404421"], ["https://data.delijn.be/stops/302397", "https://data.delijn.be/stops/308556"], ["https://data.delijn.be/stops/201556", "https://data.delijn.be/stops/201558"], ["https://data.delijn.be/stops/402578", "https://data.delijn.be/stops/402584"], ["https://data.delijn.be/stops/200309", "https://data.delijn.be/stops/205923"], ["https://data.delijn.be/stops/301683", "https://data.delijn.be/stops/302395"], ["https://data.delijn.be/stops/305732", "https://data.delijn.be/stops/306331"], ["https://data.delijn.be/stops/202054", "https://data.delijn.be/stops/210056"], ["https://data.delijn.be/stops/501367", "https://data.delijn.be/stops/590334"], ["https://data.delijn.be/stops/206559", "https://data.delijn.be/stops/207539"], ["https://data.delijn.be/stops/409294", "https://data.delijn.be/stops/409295"], ["https://data.delijn.be/stops/301283", "https://data.delijn.be/stops/301284"], ["https://data.delijn.be/stops/504151", "https://data.delijn.be/stops/504160"], ["https://data.delijn.be/stops/403344", "https://data.delijn.be/stops/403462"], ["https://data.delijn.be/stops/101552", "https://data.delijn.be/stops/107916"], ["https://data.delijn.be/stops/409088", "https://data.delijn.be/stops/409137"], ["https://data.delijn.be/stops/502333", "https://data.delijn.be/stops/507320"], ["https://data.delijn.be/stops/407613", "https://data.delijn.be/stops/409879"], ["https://data.delijn.be/stops/400377", "https://data.delijn.be/stops/401588"], ["https://data.delijn.be/stops/103218", "https://data.delijn.be/stops/108179"], ["https://data.delijn.be/stops/206416", "https://data.delijn.be/stops/206684"], ["https://data.delijn.be/stops/504599", "https://data.delijn.be/stops/504607"], ["https://data.delijn.be/stops/204116", "https://data.delijn.be/stops/205118"], ["https://data.delijn.be/stops/101382", "https://data.delijn.be/stops/106996"], ["https://data.delijn.be/stops/505297", "https://data.delijn.be/stops/508507"], ["https://data.delijn.be/stops/407804", "https://data.delijn.be/stops/407950"], ["https://data.delijn.be/stops/208134", "https://data.delijn.be/stops/209133"], ["https://data.delijn.be/stops/201111", "https://data.delijn.be/stops/202647"], ["https://data.delijn.be/stops/301711", "https://data.delijn.be/stops/305890"], ["https://data.delijn.be/stops/202980", "https://data.delijn.be/stops/203979"], ["https://data.delijn.be/stops/300429", "https://data.delijn.be/stops/302702"], ["https://data.delijn.be/stops/300729", "https://data.delijn.be/stops/302282"], ["https://data.delijn.be/stops/103287", "https://data.delijn.be/stops/109989"], ["https://data.delijn.be/stops/107959", "https://data.delijn.be/stops/108126"], ["https://data.delijn.be/stops/407978", "https://data.delijn.be/stops/408167"], ["https://data.delijn.be/stops/102693", "https://data.delijn.be/stops/102795"], ["https://data.delijn.be/stops/304990", "https://data.delijn.be/stops/305026"], ["https://data.delijn.be/stops/109022", "https://data.delijn.be/stops/109024"], ["https://data.delijn.be/stops/106793", "https://data.delijn.be/stops/106798"], ["https://data.delijn.be/stops/302314", "https://data.delijn.be/stops/302396"], ["https://data.delijn.be/stops/207677", "https://data.delijn.be/stops/208134"], ["https://data.delijn.be/stops/302910", "https://data.delijn.be/stops/303084"], ["https://data.delijn.be/stops/505173", "https://data.delijn.be/stops/507346"], ["https://data.delijn.be/stops/201231", "https://data.delijn.be/stops/202134"], ["https://data.delijn.be/stops/400528", "https://data.delijn.be/stops/400529"], ["https://data.delijn.be/stops/106505", "https://data.delijn.be/stops/106507"], ["https://data.delijn.be/stops/200275", "https://data.delijn.be/stops/201030"], ["https://data.delijn.be/stops/307427", "https://data.delijn.be/stops/307429"], ["https://data.delijn.be/stops/510010", "https://data.delijn.be/stops/510012"], ["https://data.delijn.be/stops/302187", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/402859", "https://data.delijn.be/stops/406570"], ["https://data.delijn.be/stops/201428", "https://data.delijn.be/stops/201430"], ["https://data.delijn.be/stops/301969", "https://data.delijn.be/stops/301983"], ["https://data.delijn.be/stops/102963", "https://data.delijn.be/stops/105365"], ["https://data.delijn.be/stops/302730", "https://data.delijn.be/stops/302737"], ["https://data.delijn.be/stops/302790", "https://data.delijn.be/stops/302791"], ["https://data.delijn.be/stops/402863", "https://data.delijn.be/stops/408067"], ["https://data.delijn.be/stops/208239", "https://data.delijn.be/stops/209235"], ["https://data.delijn.be/stops/204655", "https://data.delijn.be/stops/204656"], ["https://data.delijn.be/stops/501663", "https://data.delijn.be/stops/501664"], ["https://data.delijn.be/stops/404194", "https://data.delijn.be/stops/405933"], ["https://data.delijn.be/stops/200173", "https://data.delijn.be/stops/200533"], ["https://data.delijn.be/stops/300872", "https://data.delijn.be/stops/302192"], ["https://data.delijn.be/stops/308768", "https://data.delijn.be/stops/308769"], ["https://data.delijn.be/stops/200163", "https://data.delijn.be/stops/202654"], ["https://data.delijn.be/stops/300847", "https://data.delijn.be/stops/301578"], ["https://data.delijn.be/stops/107345", "https://data.delijn.be/stops/108120"], ["https://data.delijn.be/stops/206746", "https://data.delijn.be/stops/207746"], ["https://data.delijn.be/stops/206583", "https://data.delijn.be/stops/207582"], ["https://data.delijn.be/stops/400409", "https://data.delijn.be/stops/401600"], ["https://data.delijn.be/stops/300571", "https://data.delijn.be/stops/300572"], ["https://data.delijn.be/stops/501429", "https://data.delijn.be/stops/506430"], ["https://data.delijn.be/stops/207671", "https://data.delijn.be/stops/208659"], ["https://data.delijn.be/stops/107300", "https://data.delijn.be/stops/108230"], ["https://data.delijn.be/stops/204497", "https://data.delijn.be/stops/205552"], ["https://data.delijn.be/stops/208743", "https://data.delijn.be/stops/208744"], ["https://data.delijn.be/stops/401492", "https://data.delijn.be/stops/401513"], ["https://data.delijn.be/stops/200442", "https://data.delijn.be/stops/203133"], ["https://data.delijn.be/stops/303049", "https://data.delijn.be/stops/306110"], ["https://data.delijn.be/stops/401818", "https://data.delijn.be/stops/406891"], ["https://data.delijn.be/stops/409102", "https://data.delijn.be/stops/409110"], ["https://data.delijn.be/stops/503823", "https://data.delijn.be/stops/508767"], ["https://data.delijn.be/stops/103474", "https://data.delijn.be/stops/103619"], ["https://data.delijn.be/stops/401728", "https://data.delijn.be/stops/401851"], ["https://data.delijn.be/stops/300373", "https://data.delijn.be/stops/306156"], ["https://data.delijn.be/stops/203751", "https://data.delijn.be/stops/203761"], ["https://data.delijn.be/stops/300203", "https://data.delijn.be/stops/300205"], ["https://data.delijn.be/stops/106711", "https://data.delijn.be/stops/106712"], ["https://data.delijn.be/stops/403871", "https://data.delijn.be/stops/403872"], ["https://data.delijn.be/stops/405410", "https://data.delijn.be/stops/410151"], ["https://data.delijn.be/stops/307433", "https://data.delijn.be/stops/308448"], ["https://data.delijn.be/stops/407858", "https://data.delijn.be/stops/408194"], ["https://data.delijn.be/stops/501686", "https://data.delijn.be/stops/505403"], ["https://data.delijn.be/stops/206330", "https://data.delijn.be/stops/206331"], ["https://data.delijn.be/stops/305047", "https://data.delijn.be/stops/306958"], ["https://data.delijn.be/stops/204716", "https://data.delijn.be/stops/205364"], ["https://data.delijn.be/stops/201378", "https://data.delijn.be/stops/201380"], ["https://data.delijn.be/stops/205380", "https://data.delijn.be/stops/205763"], ["https://data.delijn.be/stops/106821", "https://data.delijn.be/stops/106824"], ["https://data.delijn.be/stops/500951", "https://data.delijn.be/stops/504988"], ["https://data.delijn.be/stops/202349", "https://data.delijn.be/stops/203027"], ["https://data.delijn.be/stops/102661", "https://data.delijn.be/stops/108741"], ["https://data.delijn.be/stops/302959", "https://data.delijn.be/stops/303442"], ["https://data.delijn.be/stops/109176", "https://data.delijn.be/stops/109178"], ["https://data.delijn.be/stops/406430", "https://data.delijn.be/stops/409407"], ["https://data.delijn.be/stops/107020", "https://data.delijn.be/stops/108950"], ["https://data.delijn.be/stops/401518", "https://data.delijn.be/stops/401553"], ["https://data.delijn.be/stops/407091", "https://data.delijn.be/stops/407261"], ["https://data.delijn.be/stops/407786", "https://data.delijn.be/stops/407787"], ["https://data.delijn.be/stops/304308", "https://data.delijn.be/stops/307006"], ["https://data.delijn.be/stops/107251", "https://data.delijn.be/stops/107252"], ["https://data.delijn.be/stops/301858", "https://data.delijn.be/stops/301859"], ["https://data.delijn.be/stops/405289", "https://data.delijn.be/stops/406726"], ["https://data.delijn.be/stops/109771", "https://data.delijn.be/stops/109772"], ["https://data.delijn.be/stops/404067", "https://data.delijn.be/stops/405655"], ["https://data.delijn.be/stops/400036", "https://data.delijn.be/stops/400037"], ["https://data.delijn.be/stops/400314", "https://data.delijn.be/stops/400318"], ["https://data.delijn.be/stops/200702", "https://data.delijn.be/stops/203590"], ["https://data.delijn.be/stops/304408", "https://data.delijn.be/stops/308059"], ["https://data.delijn.be/stops/503192", "https://data.delijn.be/stops/508216"], ["https://data.delijn.be/stops/503108", "https://data.delijn.be/stops/504626"], ["https://data.delijn.be/stops/400064", "https://data.delijn.be/stops/400109"], ["https://data.delijn.be/stops/302695", "https://data.delijn.be/stops/302696"], ["https://data.delijn.be/stops/308788", "https://data.delijn.be/stops/308789"], ["https://data.delijn.be/stops/108288", "https://data.delijn.be/stops/108291"], ["https://data.delijn.be/stops/409464", "https://data.delijn.be/stops/409485"], ["https://data.delijn.be/stops/103139", "https://data.delijn.be/stops/106431"], ["https://data.delijn.be/stops/302051", "https://data.delijn.be/stops/302078"], ["https://data.delijn.be/stops/204210", "https://data.delijn.be/stops/204212"], ["https://data.delijn.be/stops/505599", "https://data.delijn.be/stops/507509"], ["https://data.delijn.be/stops/102265", "https://data.delijn.be/stops/102295"], ["https://data.delijn.be/stops/204540", "https://data.delijn.be/stops/205514"], ["https://data.delijn.be/stops/201413", "https://data.delijn.be/stops/202361"], ["https://data.delijn.be/stops/203329", "https://data.delijn.be/stops/210088"], ["https://data.delijn.be/stops/402443", "https://data.delijn.be/stops/402444"], ["https://data.delijn.be/stops/106912", "https://data.delijn.be/stops/107254"], ["https://data.delijn.be/stops/504212", "https://data.delijn.be/stops/504306"], ["https://data.delijn.be/stops/105563", "https://data.delijn.be/stops/106291"], ["https://data.delijn.be/stops/306668", "https://data.delijn.be/stops/306669"], ["https://data.delijn.be/stops/107601", "https://data.delijn.be/stops/107603"], ["https://data.delijn.be/stops/401765", "https://data.delijn.be/stops/401874"], ["https://data.delijn.be/stops/505407", "https://data.delijn.be/stops/505410"], ["https://data.delijn.be/stops/306046", "https://data.delijn.be/stops/306149"], ["https://data.delijn.be/stops/200217", "https://data.delijn.be/stops/201128"], ["https://data.delijn.be/stops/106398", "https://data.delijn.be/stops/106573"], ["https://data.delijn.be/stops/101390", "https://data.delijn.be/stops/101391"], ["https://data.delijn.be/stops/503753", "https://data.delijn.be/stops/503759"], ["https://data.delijn.be/stops/109179", "https://data.delijn.be/stops/109181"], ["https://data.delijn.be/stops/304829", "https://data.delijn.be/stops/304830"], ["https://data.delijn.be/stops/405242", "https://data.delijn.be/stops/405249"], ["https://data.delijn.be/stops/402880", "https://data.delijn.be/stops/306020"], ["https://data.delijn.be/stops/304850", "https://data.delijn.be/stops/308648"], ["https://data.delijn.be/stops/300391", "https://data.delijn.be/stops/301247"], ["https://data.delijn.be/stops/305191", "https://data.delijn.be/stops/305202"], ["https://data.delijn.be/stops/304892", "https://data.delijn.be/stops/304898"], ["https://data.delijn.be/stops/202017", "https://data.delijn.be/stops/211857"], ["https://data.delijn.be/stops/105770", "https://data.delijn.be/stops/105785"], ["https://data.delijn.be/stops/506474", "https://data.delijn.be/stops/509897"], ["https://data.delijn.be/stops/300106", "https://data.delijn.be/stops/300116"], ["https://data.delijn.be/stops/105173", "https://data.delijn.be/stops/109521"], ["https://data.delijn.be/stops/101471", "https://data.delijn.be/stops/108556"], ["https://data.delijn.be/stops/201918", "https://data.delijn.be/stops/207834"], ["https://data.delijn.be/stops/509549", "https://data.delijn.be/stops/509550"], ["https://data.delijn.be/stops/305064", "https://data.delijn.be/stops/305126"], ["https://data.delijn.be/stops/304456", "https://data.delijn.be/stops/307651"], ["https://data.delijn.be/stops/106227", "https://data.delijn.be/stops/109127"], ["https://data.delijn.be/stops/306938", "https://data.delijn.be/stops/306939"], ["https://data.delijn.be/stops/501144", "https://data.delijn.be/stops/502490"], ["https://data.delijn.be/stops/405336", "https://data.delijn.be/stops/405340"], ["https://data.delijn.be/stops/204183", "https://data.delijn.be/stops/204762"], ["https://data.delijn.be/stops/503511", "https://data.delijn.be/stops/508508"], ["https://data.delijn.be/stops/201141", "https://data.delijn.be/stops/201900"], ["https://data.delijn.be/stops/300411", "https://data.delijn.be/stops/307261"], ["https://data.delijn.be/stops/509644", "https://data.delijn.be/stops/509648"], ["https://data.delijn.be/stops/209608", "https://data.delijn.be/stops/209609"], ["https://data.delijn.be/stops/308249", "https://data.delijn.be/stops/308250"], ["https://data.delijn.be/stops/305457", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/200352", "https://data.delijn.be/stops/200355"], ["https://data.delijn.be/stops/504385", "https://data.delijn.be/stops/504634"], ["https://data.delijn.be/stops/101227", "https://data.delijn.be/stops/101551"], ["https://data.delijn.be/stops/503751", "https://data.delijn.be/stops/503752"], ["https://data.delijn.be/stops/106810", "https://data.delijn.be/stops/106812"], ["https://data.delijn.be/stops/101664", "https://data.delijn.be/stops/102732"], ["https://data.delijn.be/stops/508010", "https://data.delijn.be/stops/508544"], ["https://data.delijn.be/stops/501029", "https://data.delijn.be/stops/506128"], ["https://data.delijn.be/stops/408056", "https://data.delijn.be/stops/408087"], ["https://data.delijn.be/stops/403647", "https://data.delijn.be/stops/408084"], ["https://data.delijn.be/stops/206382", "https://data.delijn.be/stops/206383"], ["https://data.delijn.be/stops/300197", "https://data.delijn.be/stops/300208"], ["https://data.delijn.be/stops/206368", "https://data.delijn.be/stops/207367"], ["https://data.delijn.be/stops/200030", "https://data.delijn.be/stops/210113"], ["https://data.delijn.be/stops/402170", "https://data.delijn.be/stops/402237"], ["https://data.delijn.be/stops/101139", "https://data.delijn.be/stops/104860"], ["https://data.delijn.be/stops/109231", "https://data.delijn.be/stops/109232"], ["https://data.delijn.be/stops/400501", "https://data.delijn.be/stops/405559"], ["https://data.delijn.be/stops/401636", "https://data.delijn.be/stops/401637"], ["https://data.delijn.be/stops/302666", "https://data.delijn.be/stops/302700"], ["https://data.delijn.be/stops/204496", "https://data.delijn.be/stops/205509"], ["https://data.delijn.be/stops/305680", "https://data.delijn.be/stops/305701"], ["https://data.delijn.be/stops/206221", "https://data.delijn.be/stops/207221"], ["https://data.delijn.be/stops/304446", "https://data.delijn.be/stops/304450"], ["https://data.delijn.be/stops/307420", "https://data.delijn.be/stops/307423"], ["https://data.delijn.be/stops/300318", "https://data.delijn.be/stops/308108"], ["https://data.delijn.be/stops/104028", "https://data.delijn.be/stops/107309"], ["https://data.delijn.be/stops/402948", "https://data.delijn.be/stops/405558"], ["https://data.delijn.be/stops/304323", "https://data.delijn.be/stops/304324"], ["https://data.delijn.be/stops/108127", "https://data.delijn.be/stops/108322"], ["https://data.delijn.be/stops/301279", "https://data.delijn.be/stops/301339"], ["https://data.delijn.be/stops/302472", "https://data.delijn.be/stops/302473"], ["https://data.delijn.be/stops/102969", "https://data.delijn.be/stops/106038"], ["https://data.delijn.be/stops/107246", "https://data.delijn.be/stops/107248"], ["https://data.delijn.be/stops/102924", "https://data.delijn.be/stops/103988"], ["https://data.delijn.be/stops/209745", "https://data.delijn.be/stops/209746"], ["https://data.delijn.be/stops/400390", "https://data.delijn.be/stops/400391"], ["https://data.delijn.be/stops/207355", "https://data.delijn.be/stops/207722"], ["https://data.delijn.be/stops/308138", "https://data.delijn.be/stops/308140"], ["https://data.delijn.be/stops/200626", "https://data.delijn.be/stops/210093"], ["https://data.delijn.be/stops/402836", "https://data.delijn.be/stops/408970"], ["https://data.delijn.be/stops/301227", "https://data.delijn.be/stops/301228"], ["https://data.delijn.be/stops/206159", "https://data.delijn.be/stops/207159"], ["https://data.delijn.be/stops/507943", "https://data.delijn.be/stops/507951"], ["https://data.delijn.be/stops/502352", "https://data.delijn.be/stops/505014"], ["https://data.delijn.be/stops/500924", "https://data.delijn.be/stops/505634"], ["https://data.delijn.be/stops/108086", "https://data.delijn.be/stops/108448"], ["https://data.delijn.be/stops/507378", "https://data.delijn.be/stops/507408"], ["https://data.delijn.be/stops/504647", "https://data.delijn.be/stops/505916"], ["https://data.delijn.be/stops/401501", "https://data.delijn.be/stops/410291"], ["https://data.delijn.be/stops/107290", "https://data.delijn.be/stops/108900"], ["https://data.delijn.be/stops/501227", "https://data.delijn.be/stops/506226"], ["https://data.delijn.be/stops/503577", "https://data.delijn.be/stops/503583"], ["https://data.delijn.be/stops/106314", "https://data.delijn.be/stops/109136"], ["https://data.delijn.be/stops/104662", "https://data.delijn.be/stops/108471"], ["https://data.delijn.be/stops/407921", "https://data.delijn.be/stops/408174"], ["https://data.delijn.be/stops/108150", "https://data.delijn.be/stops/108152"], ["https://data.delijn.be/stops/505239", "https://data.delijn.be/stops/508968"], ["https://data.delijn.be/stops/408080", "https://data.delijn.be/stops/408081"], ["https://data.delijn.be/stops/109730", "https://data.delijn.be/stops/205635"], ["https://data.delijn.be/stops/501087", "https://data.delijn.be/stops/506100"], ["https://data.delijn.be/stops/202782", "https://data.delijn.be/stops/203781"], ["https://data.delijn.be/stops/402794", "https://data.delijn.be/stops/402796"], ["https://data.delijn.be/stops/202479", "https://data.delijn.be/stops/203480"], ["https://data.delijn.be/stops/300744", "https://data.delijn.be/stops/300798"], ["https://data.delijn.be/stops/400673", "https://data.delijn.be/stops/400676"], ["https://data.delijn.be/stops/204367", "https://data.delijn.be/stops/205181"], ["https://data.delijn.be/stops/108059", "https://data.delijn.be/stops/108358"], ["https://data.delijn.be/stops/103476", "https://data.delijn.be/stops/103479"], ["https://data.delijn.be/stops/305348", "https://data.delijn.be/stops/307972"], ["https://data.delijn.be/stops/505899", "https://data.delijn.be/stops/508050"], ["https://data.delijn.be/stops/107236", "https://data.delijn.be/stops/107239"], ["https://data.delijn.be/stops/302106", "https://data.delijn.be/stops/302107"], ["https://data.delijn.be/stops/107502", "https://data.delijn.be/stops/107503"], ["https://data.delijn.be/stops/102460", "https://data.delijn.be/stops/103364"], ["https://data.delijn.be/stops/403836", "https://data.delijn.be/stops/410113"], ["https://data.delijn.be/stops/504550", "https://data.delijn.be/stops/509435"], ["https://data.delijn.be/stops/400091", "https://data.delijn.be/stops/400151"], ["https://data.delijn.be/stops/105121", "https://data.delijn.be/stops/105124"], ["https://data.delijn.be/stops/200944", "https://data.delijn.be/stops/203726"], ["https://data.delijn.be/stops/504956", "https://data.delijn.be/stops/509962"], ["https://data.delijn.be/stops/300294", "https://data.delijn.be/stops/300298"], ["https://data.delijn.be/stops/101452", "https://data.delijn.be/stops/102613"], ["https://data.delijn.be/stops/206679", "https://data.delijn.be/stops/209105"], ["https://data.delijn.be/stops/503387", "https://data.delijn.be/stops/508365"], ["https://data.delijn.be/stops/409396", "https://data.delijn.be/stops/409397"], ["https://data.delijn.be/stops/509415", "https://data.delijn.be/stops/509440"], ["https://data.delijn.be/stops/208683", "https://data.delijn.be/stops/208725"], ["https://data.delijn.be/stops/202794", "https://data.delijn.be/stops/203795"], ["https://data.delijn.be/stops/206538", "https://data.delijn.be/stops/206539"], ["https://data.delijn.be/stops/204672", "https://data.delijn.be/stops/205258"], ["https://data.delijn.be/stops/204980", "https://data.delijn.be/stops/207388"], ["https://data.delijn.be/stops/303350", "https://data.delijn.be/stops/307032"], ["https://data.delijn.be/stops/502631", "https://data.delijn.be/stops/507449"], ["https://data.delijn.be/stops/204420", "https://data.delijn.be/stops/205418"], ["https://data.delijn.be/stops/106641", "https://data.delijn.be/stops/106644"], ["https://data.delijn.be/stops/303755", "https://data.delijn.be/stops/303769"], ["https://data.delijn.be/stops/303122", "https://data.delijn.be/stops/303123"], ["https://data.delijn.be/stops/504252", "https://data.delijn.be/stops/509370"], ["https://data.delijn.be/stops/302214", "https://data.delijn.be/stops/302215"], ["https://data.delijn.be/stops/109622", "https://data.delijn.be/stops/109700"], ["https://data.delijn.be/stops/200385", "https://data.delijn.be/stops/200386"], ["https://data.delijn.be/stops/403929", "https://data.delijn.be/stops/404081"], ["https://data.delijn.be/stops/302595", "https://data.delijn.be/stops/303611"], ["https://data.delijn.be/stops/403699", "https://data.delijn.be/stops/407295"], ["https://data.delijn.be/stops/403609", "https://data.delijn.be/stops/410037"], ["https://data.delijn.be/stops/305815", "https://data.delijn.be/stops/305816"], ["https://data.delijn.be/stops/406243", "https://data.delijn.be/stops/408417"], ["https://data.delijn.be/stops/305691", "https://data.delijn.be/stops/305693"], ["https://data.delijn.be/stops/408094", "https://data.delijn.be/stops/408156"], ["https://data.delijn.be/stops/109323", "https://data.delijn.be/stops/306861"], ["https://data.delijn.be/stops/104557", "https://data.delijn.be/stops/104559"], ["https://data.delijn.be/stops/206943", "https://data.delijn.be/stops/209615"], ["https://data.delijn.be/stops/500116", "https://data.delijn.be/stops/507271"], ["https://data.delijn.be/stops/504743", "https://data.delijn.be/stops/509743"], ["https://data.delijn.be/stops/305388", "https://data.delijn.be/stops/333233"], ["https://data.delijn.be/stops/401834", "https://data.delijn.be/stops/401835"], ["https://data.delijn.be/stops/407140", "https://data.delijn.be/stops/408472"], ["https://data.delijn.be/stops/101888", "https://data.delijn.be/stops/109998"], ["https://data.delijn.be/stops/404167", "https://data.delijn.be/stops/404196"], ["https://data.delijn.be/stops/101837", "https://data.delijn.be/stops/108232"], ["https://data.delijn.be/stops/402151", "https://data.delijn.be/stops/402154"], ["https://data.delijn.be/stops/302833", "https://data.delijn.be/stops/306777"], ["https://data.delijn.be/stops/107929", "https://data.delijn.be/stops/107931"], ["https://data.delijn.be/stops/407315", "https://data.delijn.be/stops/409499"], ["https://data.delijn.be/stops/403194", "https://data.delijn.be/stops/410271"], ["https://data.delijn.be/stops/408285", "https://data.delijn.be/stops/410345"], ["https://data.delijn.be/stops/103530", "https://data.delijn.be/stops/105150"], ["https://data.delijn.be/stops/303105", "https://data.delijn.be/stops/303106"], ["https://data.delijn.be/stops/503028", "https://data.delijn.be/stops/507959"], ["https://data.delijn.be/stops/107342", "https://data.delijn.be/stops/107343"], ["https://data.delijn.be/stops/408644", "https://data.delijn.be/stops/408661"], ["https://data.delijn.be/stops/502195", "https://data.delijn.be/stops/507196"], ["https://data.delijn.be/stops/305944", "https://data.delijn.be/stops/308422"], ["https://data.delijn.be/stops/301969", "https://data.delijn.be/stops/304537"], ["https://data.delijn.be/stops/101848", "https://data.delijn.be/stops/101849"], ["https://data.delijn.be/stops/307561", "https://data.delijn.be/stops/307652"], ["https://data.delijn.be/stops/408877", "https://data.delijn.be/stops/408878"], ["https://data.delijn.be/stops/202815", "https://data.delijn.be/stops/203815"], ["https://data.delijn.be/stops/208450", "https://data.delijn.be/stops/218015"], ["https://data.delijn.be/stops/405702", "https://data.delijn.be/stops/405717"], ["https://data.delijn.be/stops/506044", "https://data.delijn.be/stops/506488"], ["https://data.delijn.be/stops/502407", "https://data.delijn.be/stops/507406"], ["https://data.delijn.be/stops/406131", "https://data.delijn.be/stops/406132"], ["https://data.delijn.be/stops/101387", "https://data.delijn.be/stops/101392"], ["https://data.delijn.be/stops/303118", "https://data.delijn.be/stops/304576"], ["https://data.delijn.be/stops/305465", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/505368", "https://data.delijn.be/stops/509056"], ["https://data.delijn.be/stops/403103", "https://data.delijn.be/stops/403121"], ["https://data.delijn.be/stops/102967", "https://data.delijn.be/stops/106238"], ["https://data.delijn.be/stops/504868", "https://data.delijn.be/stops/509209"], ["https://data.delijn.be/stops/301794", "https://data.delijn.be/stops/301802"], ["https://data.delijn.be/stops/200251", "https://data.delijn.be/stops/201576"], ["https://data.delijn.be/stops/503450", "https://data.delijn.be/stops/507717"], ["https://data.delijn.be/stops/204992", "https://data.delijn.be/stops/209117"], ["https://data.delijn.be/stops/503306", "https://data.delijn.be/stops/508968"], ["https://data.delijn.be/stops/201219", "https://data.delijn.be/stops/201307"], ["https://data.delijn.be/stops/302234", "https://data.delijn.be/stops/302235"], ["https://data.delijn.be/stops/508495", "https://data.delijn.be/stops/508496"], ["https://data.delijn.be/stops/407933", "https://data.delijn.be/stops/407935"], ["https://data.delijn.be/stops/304957", "https://data.delijn.be/stops/304971"], ["https://data.delijn.be/stops/503047", "https://data.delijn.be/stops/505297"], ["https://data.delijn.be/stops/504229", "https://data.delijn.be/stops/505285"], ["https://data.delijn.be/stops/405667", "https://data.delijn.be/stops/409394"], ["https://data.delijn.be/stops/403365", "https://data.delijn.be/stops/403520"], ["https://data.delijn.be/stops/303348", "https://data.delijn.be/stops/303389"], ["https://data.delijn.be/stops/504562", "https://data.delijn.be/stops/505362"], ["https://data.delijn.be/stops/202672", "https://data.delijn.be/stops/202673"], ["https://data.delijn.be/stops/103341", "https://data.delijn.be/stops/103343"], ["https://data.delijn.be/stops/200083", "https://data.delijn.be/stops/201393"], ["https://data.delijn.be/stops/101414", "https://data.delijn.be/stops/103073"], ["https://data.delijn.be/stops/204586", "https://data.delijn.be/stops/204587"], ["https://data.delijn.be/stops/200905", "https://data.delijn.be/stops/200906"], ["https://data.delijn.be/stops/405126", "https://data.delijn.be/stops/405127"], ["https://data.delijn.be/stops/407938", "https://data.delijn.be/stops/410344"], ["https://data.delijn.be/stops/300137", "https://data.delijn.be/stops/306822"], ["https://data.delijn.be/stops/509406", "https://data.delijn.be/stops/509433"], ["https://data.delijn.be/stops/503208", "https://data.delijn.be/stops/508208"], ["https://data.delijn.be/stops/203616", "https://data.delijn.be/stops/203617"], ["https://data.delijn.be/stops/307226", "https://data.delijn.be/stops/307227"], ["https://data.delijn.be/stops/207012", "https://data.delijn.be/stops/217008"], ["https://data.delijn.be/stops/400917", "https://data.delijn.be/stops/400970"], ["https://data.delijn.be/stops/403349", "https://data.delijn.be/stops/410276"], ["https://data.delijn.be/stops/203343", "https://data.delijn.be/stops/203440"], ["https://data.delijn.be/stops/103221", "https://data.delijn.be/stops/104573"], ["https://data.delijn.be/stops/208006", "https://data.delijn.be/stops/208079"], ["https://data.delijn.be/stops/301829", "https://data.delijn.be/stops/301852"], ["https://data.delijn.be/stops/104691", "https://data.delijn.be/stops/107362"], ["https://data.delijn.be/stops/508144", "https://data.delijn.be/stops/509622"], ["https://data.delijn.be/stops/104638", "https://data.delijn.be/stops/104672"], ["https://data.delijn.be/stops/104652", "https://data.delijn.be/stops/308479"], ["https://data.delijn.be/stops/102198", "https://data.delijn.be/stops/105257"], ["https://data.delijn.be/stops/409509", "https://data.delijn.be/stops/409516"], ["https://data.delijn.be/stops/304156", "https://data.delijn.be/stops/304157"], ["https://data.delijn.be/stops/503167", "https://data.delijn.be/stops/503168"], ["https://data.delijn.be/stops/505551", "https://data.delijn.be/stops/505922"], ["https://data.delijn.be/stops/402975", "https://data.delijn.be/stops/403317"], ["https://data.delijn.be/stops/400265", "https://data.delijn.be/stops/406813"], ["https://data.delijn.be/stops/503520", "https://data.delijn.be/stops/508520"], ["https://data.delijn.be/stops/106845", "https://data.delijn.be/stops/106846"], ["https://data.delijn.be/stops/302737", "https://data.delijn.be/stops/302786"], ["https://data.delijn.be/stops/306831", "https://data.delijn.be/stops/306832"], ["https://data.delijn.be/stops/303745", "https://data.delijn.be/stops/303788"], ["https://data.delijn.be/stops/106490", "https://data.delijn.be/stops/106491"], ["https://data.delijn.be/stops/202830", "https://data.delijn.be/stops/218023"], ["https://data.delijn.be/stops/102312", "https://data.delijn.be/stops/106255"], ["https://data.delijn.be/stops/200249", "https://data.delijn.be/stops/211051"], ["https://data.delijn.be/stops/105795", "https://data.delijn.be/stops/105796"], ["https://data.delijn.be/stops/301678", "https://data.delijn.be/stops/301685"], ["https://data.delijn.be/stops/101677", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/404939", "https://data.delijn.be/stops/404952"], ["https://data.delijn.be/stops/507393", "https://data.delijn.be/stops/507401"], ["https://data.delijn.be/stops/305690", "https://data.delijn.be/stops/305702"], ["https://data.delijn.be/stops/306185", "https://data.delijn.be/stops/306187"], ["https://data.delijn.be/stops/107591", "https://data.delijn.be/stops/107593"], ["https://data.delijn.be/stops/108336", "https://data.delijn.be/stops/108338"], ["https://data.delijn.be/stops/208842", "https://data.delijn.be/stops/208844"], ["https://data.delijn.be/stops/301926", "https://data.delijn.be/stops/307827"], ["https://data.delijn.be/stops/202310", "https://data.delijn.be/stops/203310"], ["https://data.delijn.be/stops/300500", "https://data.delijn.be/stops/308593"], ["https://data.delijn.be/stops/209445", "https://data.delijn.be/stops/209453"], ["https://data.delijn.be/stops/107488", "https://data.delijn.be/stops/107491"], ["https://data.delijn.be/stops/501012", "https://data.delijn.be/stops/501716"], ["https://data.delijn.be/stops/103303", "https://data.delijn.be/stops/104636"], ["https://data.delijn.be/stops/202520", "https://data.delijn.be/stops/203526"], ["https://data.delijn.be/stops/502361", "https://data.delijn.be/stops/505700"], ["https://data.delijn.be/stops/205426", "https://data.delijn.be/stops/205427"], ["https://data.delijn.be/stops/300114", "https://data.delijn.be/stops/306844"], ["https://data.delijn.be/stops/400854", "https://data.delijn.be/stops/409657"], ["https://data.delijn.be/stops/206551", "https://data.delijn.be/stops/207551"], ["https://data.delijn.be/stops/504716", "https://data.delijn.be/stops/509747"], ["https://data.delijn.be/stops/201624", "https://data.delijn.be/stops/203934"], ["https://data.delijn.be/stops/105023", "https://data.delijn.be/stops/107408"], ["https://data.delijn.be/stops/200554", "https://data.delijn.be/stops/201666"], ["https://data.delijn.be/stops/408564", "https://data.delijn.be/stops/408617"], ["https://data.delijn.be/stops/305280", "https://data.delijn.be/stops/305324"], ["https://data.delijn.be/stops/303057", "https://data.delijn.be/stops/304928"], ["https://data.delijn.be/stops/407772", "https://data.delijn.be/stops/408846"], ["https://data.delijn.be/stops/204520", "https://data.delijn.be/stops/205703"], ["https://data.delijn.be/stops/108710", "https://data.delijn.be/stops/108856"], ["https://data.delijn.be/stops/208623", "https://data.delijn.be/stops/209623"], ["https://data.delijn.be/stops/108188", "https://data.delijn.be/stops/108354"], ["https://data.delijn.be/stops/106491", "https://data.delijn.be/stops/108727"], ["https://data.delijn.be/stops/200068", "https://data.delijn.be/stops/201186"], ["https://data.delijn.be/stops/503670", "https://data.delijn.be/stops/508670"], ["https://data.delijn.be/stops/402339", "https://data.delijn.be/stops/410076"], ["https://data.delijn.be/stops/506231", "https://data.delijn.be/stops/506248"], ["https://data.delijn.be/stops/500137", "https://data.delijn.be/stops/500230"], ["https://data.delijn.be/stops/208222", "https://data.delijn.be/stops/209219"], ["https://data.delijn.be/stops/104866", "https://data.delijn.be/stops/107856"], ["https://data.delijn.be/stops/207440", "https://data.delijn.be/stops/208465"], ["https://data.delijn.be/stops/109205", "https://data.delijn.be/stops/109206"], ["https://data.delijn.be/stops/303677", "https://data.delijn.be/stops/303853"], ["https://data.delijn.be/stops/102734", "https://data.delijn.be/stops/109796"], ["https://data.delijn.be/stops/404999", "https://data.delijn.be/stops/407871"], ["https://data.delijn.be/stops/502635", "https://data.delijn.be/stops/507217"], ["https://data.delijn.be/stops/109633", "https://data.delijn.be/stops/109634"], ["https://data.delijn.be/stops/590006", "https://data.delijn.be/stops/590007"], ["https://data.delijn.be/stops/300499", "https://data.delijn.be/stops/300530"], ["https://data.delijn.be/stops/506212", "https://data.delijn.be/stops/506215"], ["https://data.delijn.be/stops/101905", "https://data.delijn.be/stops/102895"], ["https://data.delijn.be/stops/208760", "https://data.delijn.be/stops/208761"], ["https://data.delijn.be/stops/407239", "https://data.delijn.be/stops/407508"], ["https://data.delijn.be/stops/305248", "https://data.delijn.be/stops/305259"], ["https://data.delijn.be/stops/204677", "https://data.delijn.be/stops/204678"], ["https://data.delijn.be/stops/302341", "https://data.delijn.be/stops/302349"], ["https://data.delijn.be/stops/201799", "https://data.delijn.be/stops/202125"], ["https://data.delijn.be/stops/101805", "https://data.delijn.be/stops/101806"], ["https://data.delijn.be/stops/303282", "https://data.delijn.be/stops/303283"], ["https://data.delijn.be/stops/301246", "https://data.delijn.be/stops/308671"], ["https://data.delijn.be/stops/401661", "https://data.delijn.be/stops/406808"], ["https://data.delijn.be/stops/103737", "https://data.delijn.be/stops/108642"], ["https://data.delijn.be/stops/201394", "https://data.delijn.be/stops/205804"], ["https://data.delijn.be/stops/206443", "https://data.delijn.be/stops/207443"], ["https://data.delijn.be/stops/104599", "https://data.delijn.be/stops/106825"], ["https://data.delijn.be/stops/207857", "https://data.delijn.be/stops/209617"], ["https://data.delijn.be/stops/402519", "https://data.delijn.be/stops/402589"], ["https://data.delijn.be/stops/203809", "https://data.delijn.be/stops/208649"], ["https://data.delijn.be/stops/304100", "https://data.delijn.be/stops/304912"], ["https://data.delijn.be/stops/505125", "https://data.delijn.be/stops/505944"], ["https://data.delijn.be/stops/308495", "https://data.delijn.be/stops/308498"], ["https://data.delijn.be/stops/400304", "https://data.delijn.be/stops/400954"], ["https://data.delijn.be/stops/206731", "https://data.delijn.be/stops/207978"], ["https://data.delijn.be/stops/301349", "https://data.delijn.be/stops/301368"], ["https://data.delijn.be/stops/104368", "https://data.delijn.be/stops/104369"], ["https://data.delijn.be/stops/406379", "https://data.delijn.be/stops/407779"], ["https://data.delijn.be/stops/109276", "https://data.delijn.be/stops/109277"], ["https://data.delijn.be/stops/503260", "https://data.delijn.be/stops/508230"], ["https://data.delijn.be/stops/302320", "https://data.delijn.be/stops/303517"], ["https://data.delijn.be/stops/306644", "https://data.delijn.be/stops/308767"], ["https://data.delijn.be/stops/200231", "https://data.delijn.be/stops/211058"], ["https://data.delijn.be/stops/402778", "https://data.delijn.be/stops/406717"], ["https://data.delijn.be/stops/202972", "https://data.delijn.be/stops/203165"], ["https://data.delijn.be/stops/504748", "https://data.delijn.be/stops/509704"], ["https://data.delijn.be/stops/302871", "https://data.delijn.be/stops/307636"], ["https://data.delijn.be/stops/401956", "https://data.delijn.be/stops/401957"], ["https://data.delijn.be/stops/305283", "https://data.delijn.be/stops/305331"], ["https://data.delijn.be/stops/507263", "https://data.delijn.be/stops/507266"], ["https://data.delijn.be/stops/307612", "https://data.delijn.be/stops/307613"], ["https://data.delijn.be/stops/404932", "https://data.delijn.be/stops/404933"], ["https://data.delijn.be/stops/502422", "https://data.delijn.be/stops/507439"], ["https://data.delijn.be/stops/202946", "https://data.delijn.be/stops/203946"], ["https://data.delijn.be/stops/401295", "https://data.delijn.be/stops/401324"], ["https://data.delijn.be/stops/204327", "https://data.delijn.be/stops/205294"], ["https://data.delijn.be/stops/200096", "https://data.delijn.be/stops/201096"], ["https://data.delijn.be/stops/102445", "https://data.delijn.be/stops/108830"], ["https://data.delijn.be/stops/104512", "https://data.delijn.be/stops/207706"], ["https://data.delijn.be/stops/201948", "https://data.delijn.be/stops/202468"], ["https://data.delijn.be/stops/410322", "https://data.delijn.be/stops/410323"], ["https://data.delijn.be/stops/204663", "https://data.delijn.be/stops/205687"], ["https://data.delijn.be/stops/202555", "https://data.delijn.be/stops/203557"], ["https://data.delijn.be/stops/304668", "https://data.delijn.be/stops/304670"], ["https://data.delijn.be/stops/500027", "https://data.delijn.be/stops/507369"], ["https://data.delijn.be/stops/407703", "https://data.delijn.be/stops/409772"], ["https://data.delijn.be/stops/503790", "https://data.delijn.be/stops/504992"], ["https://data.delijn.be/stops/401827", "https://data.delijn.be/stops/406015"], ["https://data.delijn.be/stops/405760", "https://data.delijn.be/stops/303325"], ["https://data.delijn.be/stops/106129", "https://data.delijn.be/stops/106131"], ["https://data.delijn.be/stops/500949", "https://data.delijn.be/stops/505174"], ["https://data.delijn.be/stops/303015", "https://data.delijn.be/stops/306280"], ["https://data.delijn.be/stops/300824", "https://data.delijn.be/stops/300986"], ["https://data.delijn.be/stops/206028", "https://data.delijn.be/stops/207877"], ["https://data.delijn.be/stops/200346", "https://data.delijn.be/stops/201345"], ["https://data.delijn.be/stops/402349", "https://data.delijn.be/stops/402469"], ["https://data.delijn.be/stops/200624", "https://data.delijn.be/stops/201624"], ["https://data.delijn.be/stops/206034", "https://data.delijn.be/stops/207215"], ["https://data.delijn.be/stops/302530", "https://data.delijn.be/stops/308935"], ["https://data.delijn.be/stops/200775", "https://data.delijn.be/stops/208753"], ["https://data.delijn.be/stops/502253", "https://data.delijn.be/stops/507253"], ["https://data.delijn.be/stops/207428", "https://data.delijn.be/stops/209538"], ["https://data.delijn.be/stops/205174", "https://data.delijn.be/stops/207320"], ["https://data.delijn.be/stops/409060", "https://data.delijn.be/stops/409210"], ["https://data.delijn.be/stops/300280", "https://data.delijn.be/stops/307496"], ["https://data.delijn.be/stops/508141", "https://data.delijn.be/stops/508834"], ["https://data.delijn.be/stops/205296", "https://data.delijn.be/stops/205761"], ["https://data.delijn.be/stops/404722", "https://data.delijn.be/stops/404743"], ["https://data.delijn.be/stops/102411", "https://data.delijn.be/stops/103257"], ["https://data.delijn.be/stops/408677", "https://data.delijn.be/stops/408681"], ["https://data.delijn.be/stops/200564", "https://data.delijn.be/stops/201564"], ["https://data.delijn.be/stops/200729", "https://data.delijn.be/stops/203590"], ["https://data.delijn.be/stops/307160", "https://data.delijn.be/stops/307776"], ["https://data.delijn.be/stops/503269", "https://data.delijn.be/stops/508275"], ["https://data.delijn.be/stops/107200", "https://data.delijn.be/stops/107605"], ["https://data.delijn.be/stops/301718", "https://data.delijn.be/stops/303467"], ["https://data.delijn.be/stops/303546", "https://data.delijn.be/stops/303554"], ["https://data.delijn.be/stops/307433", "https://data.delijn.be/stops/308508"], ["https://data.delijn.be/stops/503866", "https://data.delijn.be/stops/508866"], ["https://data.delijn.be/stops/408655", "https://data.delijn.be/stops/408691"], ["https://data.delijn.be/stops/302468", "https://data.delijn.be/stops/307037"], ["https://data.delijn.be/stops/204542", "https://data.delijn.be/stops/205542"], ["https://data.delijn.be/stops/508609", "https://data.delijn.be/stops/508610"], ["https://data.delijn.be/stops/409712", "https://data.delijn.be/stops/409713"], ["https://data.delijn.be/stops/307214", "https://data.delijn.be/stops/307215"], ["https://data.delijn.be/stops/404843", "https://data.delijn.be/stops/409744"], ["https://data.delijn.be/stops/107732", "https://data.delijn.be/stops/107733"], ["https://data.delijn.be/stops/206892", "https://data.delijn.be/stops/206893"], ["https://data.delijn.be/stops/501064", "https://data.delijn.be/stops/501133"], ["https://data.delijn.be/stops/206503", "https://data.delijn.be/stops/207151"], ["https://data.delijn.be/stops/303965", "https://data.delijn.be/stops/303966"], ["https://data.delijn.be/stops/304838", "https://data.delijn.be/stops/307830"], ["https://data.delijn.be/stops/409413", "https://data.delijn.be/stops/409414"], ["https://data.delijn.be/stops/108877", "https://data.delijn.be/stops/108878"], ["https://data.delijn.be/stops/508417", "https://data.delijn.be/stops/508986"], ["https://data.delijn.be/stops/304479", "https://data.delijn.be/stops/307466"], ["https://data.delijn.be/stops/503602", "https://data.delijn.be/stops/508546"], ["https://data.delijn.be/stops/503924", "https://data.delijn.be/stops/503930"], ["https://data.delijn.be/stops/106041", "https://data.delijn.be/stops/106043"], ["https://data.delijn.be/stops/503340", "https://data.delijn.be/stops/504864"], ["https://data.delijn.be/stops/204507", "https://data.delijn.be/stops/205507"], ["https://data.delijn.be/stops/405486", "https://data.delijn.be/stops/409275"], ["https://data.delijn.be/stops/502188", "https://data.delijn.be/stops/505575"], ["https://data.delijn.be/stops/205987", "https://data.delijn.be/stops/209222"], ["https://data.delijn.be/stops/408563", "https://data.delijn.be/stops/408690"], ["https://data.delijn.be/stops/301337", "https://data.delijn.be/stops/304858"], ["https://data.delijn.be/stops/305551", "https://data.delijn.be/stops/305552"], ["https://data.delijn.be/stops/109989", "https://data.delijn.be/stops/109990"], ["https://data.delijn.be/stops/401755", "https://data.delijn.be/stops/401768"], ["https://data.delijn.be/stops/404240", "https://data.delijn.be/stops/404241"], ["https://data.delijn.be/stops/206379", "https://data.delijn.be/stops/207356"], ["https://data.delijn.be/stops/204046", "https://data.delijn.be/stops/205516"], ["https://data.delijn.be/stops/108679", "https://data.delijn.be/stops/306629"], ["https://data.delijn.be/stops/501430", "https://data.delijn.be/stops/506487"], ["https://data.delijn.be/stops/409309", "https://data.delijn.be/stops/410067"], ["https://data.delijn.be/stops/504065", "https://data.delijn.be/stops/509065"], ["https://data.delijn.be/stops/503451", "https://data.delijn.be/stops/503470"], ["https://data.delijn.be/stops/504642", "https://data.delijn.be/stops/509657"], ["https://data.delijn.be/stops/201664", "https://data.delijn.be/stops/202790"], ["https://data.delijn.be/stops/504200", "https://data.delijn.be/stops/505121"], ["https://data.delijn.be/stops/108009", "https://data.delijn.be/stops/300026"], ["https://data.delijn.be/stops/504783", "https://data.delijn.be/stops/508514"], ["https://data.delijn.be/stops/206622", "https://data.delijn.be/stops/207869"], ["https://data.delijn.be/stops/106823", "https://data.delijn.be/stops/106824"], ["https://data.delijn.be/stops/501309", "https://data.delijn.be/stops/501331"], ["https://data.delijn.be/stops/501182", "https://data.delijn.be/stops/506676"], ["https://data.delijn.be/stops/403490", "https://data.delijn.be/stops/403517"], ["https://data.delijn.be/stops/301842", "https://data.delijn.be/stops/301843"], ["https://data.delijn.be/stops/505918", "https://data.delijn.be/stops/509235"], ["https://data.delijn.be/stops/208429", "https://data.delijn.be/stops/209428"], ["https://data.delijn.be/stops/205722", "https://data.delijn.be/stops/205723"], ["https://data.delijn.be/stops/104893", "https://data.delijn.be/stops/105312"], ["https://data.delijn.be/stops/409754", "https://data.delijn.be/stops/409999"], ["https://data.delijn.be/stops/206481", "https://data.delijn.be/stops/207452"], ["https://data.delijn.be/stops/404100", "https://data.delijn.be/stops/404108"], ["https://data.delijn.be/stops/205432", "https://data.delijn.be/stops/205433"], ["https://data.delijn.be/stops/204323", "https://data.delijn.be/stops/205323"], ["https://data.delijn.be/stops/106895", "https://data.delijn.be/stops/107216"], ["https://data.delijn.be/stops/203025", "https://data.delijn.be/stops/210039"], ["https://data.delijn.be/stops/401533", "https://data.delijn.be/stops/406001"], ["https://data.delijn.be/stops/206499", "https://data.delijn.be/stops/207499"], ["https://data.delijn.be/stops/200735", "https://data.delijn.be/stops/203570"], ["https://data.delijn.be/stops/301242", "https://data.delijn.be/stops/305951"], ["https://data.delijn.be/stops/207770", "https://data.delijn.be/stops/209405"], ["https://data.delijn.be/stops/208109", "https://data.delijn.be/stops/209342"], ["https://data.delijn.be/stops/208367", "https://data.delijn.be/stops/209366"], ["https://data.delijn.be/stops/409559", "https://data.delijn.be/stops/409560"], ["https://data.delijn.be/stops/400357", "https://data.delijn.be/stops/400396"], ["https://data.delijn.be/stops/405894", "https://data.delijn.be/stops/308203"], ["https://data.delijn.be/stops/401870", "https://data.delijn.be/stops/406127"], ["https://data.delijn.be/stops/407691", "https://data.delijn.be/stops/409879"], ["https://data.delijn.be/stops/204630", "https://data.delijn.be/stops/205630"], ["https://data.delijn.be/stops/200668", "https://data.delijn.be/stops/201564"], ["https://data.delijn.be/stops/401449", "https://data.delijn.be/stops/401470"], ["https://data.delijn.be/stops/508195", "https://data.delijn.be/stops/508547"], ["https://data.delijn.be/stops/109211", "https://data.delijn.be/stops/109212"], ["https://data.delijn.be/stops/405184", "https://data.delijn.be/stops/410165"], ["https://data.delijn.be/stops/303422", "https://data.delijn.be/stops/306946"], ["https://data.delijn.be/stops/405936", "https://data.delijn.be/stops/405942"], ["https://data.delijn.be/stops/300280", "https://data.delijn.be/stops/300299"], ["https://data.delijn.be/stops/103270", "https://data.delijn.be/stops/107035"], ["https://data.delijn.be/stops/201165", "https://data.delijn.be/stops/202170"], ["https://data.delijn.be/stops/402461", "https://data.delijn.be/stops/402462"], ["https://data.delijn.be/stops/501337", "https://data.delijn.be/stops/501517"], ["https://data.delijn.be/stops/101574", "https://data.delijn.be/stops/105467"], ["https://data.delijn.be/stops/207179", "https://data.delijn.be/stops/308574"], ["https://data.delijn.be/stops/200108", "https://data.delijn.be/stops/202645"], ["https://data.delijn.be/stops/105737", "https://data.delijn.be/stops/109857"], ["https://data.delijn.be/stops/400115", "https://data.delijn.be/stops/400947"], ["https://data.delijn.be/stops/404431", "https://data.delijn.be/stops/404550"], ["https://data.delijn.be/stops/200430", "https://data.delijn.be/stops/201430"], ["https://data.delijn.be/stops/303555", "https://data.delijn.be/stops/308792"], ["https://data.delijn.be/stops/200720", "https://data.delijn.be/stops/203621"], ["https://data.delijn.be/stops/105514", "https://data.delijn.be/stops/108728"], ["https://data.delijn.be/stops/202148", "https://data.delijn.be/stops/202242"], ["https://data.delijn.be/stops/405559", "https://data.delijn.be/stops/405568"], ["https://data.delijn.be/stops/108635", "https://data.delijn.be/stops/109774"], ["https://data.delijn.be/stops/200426", "https://data.delijn.be/stops/200428"], ["https://data.delijn.be/stops/404864", "https://data.delijn.be/stops/408796"], ["https://data.delijn.be/stops/105001", "https://data.delijn.be/stops/105169"], ["https://data.delijn.be/stops/303828", "https://data.delijn.be/stops/308709"], ["https://data.delijn.be/stops/204341", "https://data.delijn.be/stops/205596"], ["https://data.delijn.be/stops/206375", "https://data.delijn.be/stops/207350"], ["https://data.delijn.be/stops/206073", "https://data.delijn.be/stops/207010"], ["https://data.delijn.be/stops/201450", "https://data.delijn.be/stops/201525"], ["https://data.delijn.be/stops/216012", "https://data.delijn.be/stops/217012"], ["https://data.delijn.be/stops/400223", "https://data.delijn.be/stops/409514"], ["https://data.delijn.be/stops/301716", "https://data.delijn.be/stops/308427"], ["https://data.delijn.be/stops/300740", "https://data.delijn.be/stops/303223"], ["https://data.delijn.be/stops/400932", "https://data.delijn.be/stops/406954"], ["https://data.delijn.be/stops/103616", "https://data.delijn.be/stops/106194"], ["https://data.delijn.be/stops/300246", "https://data.delijn.be/stops/303893"], ["https://data.delijn.be/stops/400834", "https://data.delijn.be/stops/400835"], ["https://data.delijn.be/stops/504180", "https://data.delijn.be/stops/504182"], ["https://data.delijn.be/stops/102497", "https://data.delijn.be/stops/400028"], ["https://data.delijn.be/stops/201936", "https://data.delijn.be/stops/206407"], ["https://data.delijn.be/stops/200306", "https://data.delijn.be/stops/201305"], ["https://data.delijn.be/stops/300057", "https://data.delijn.be/stops/306811"], ["https://data.delijn.be/stops/502551", "https://data.delijn.be/stops/505019"], ["https://data.delijn.be/stops/509785", "https://data.delijn.be/stops/509786"], ["https://data.delijn.be/stops/305058", "https://data.delijn.be/stops/305059"], ["https://data.delijn.be/stops/403602", "https://data.delijn.be/stops/403612"], ["https://data.delijn.be/stops/305265", "https://data.delijn.be/stops/305328"], ["https://data.delijn.be/stops/207022", "https://data.delijn.be/stops/207024"], ["https://data.delijn.be/stops/505754", "https://data.delijn.be/stops/507236"], ["https://data.delijn.be/stops/503334", "https://data.delijn.be/stops/508339"], ["https://data.delijn.be/stops/102296", "https://data.delijn.be/stops/102297"], ["https://data.delijn.be/stops/202766", "https://data.delijn.be/stops/202767"], ["https://data.delijn.be/stops/400485", "https://data.delijn.be/stops/407210"], ["https://data.delijn.be/stops/303552", "https://data.delijn.be/stops/303553"], ["https://data.delijn.be/stops/104597", "https://data.delijn.be/stops/105161"], ["https://data.delijn.be/stops/503099", "https://data.delijn.be/stops/508675"], ["https://data.delijn.be/stops/401345", "https://data.delijn.be/stops/404773"], ["https://data.delijn.be/stops/203740", "https://data.delijn.be/stops/206432"], ["https://data.delijn.be/stops/503292", "https://data.delijn.be/stops/505284"], ["https://data.delijn.be/stops/109625", "https://data.delijn.be/stops/109626"], ["https://data.delijn.be/stops/400256", "https://data.delijn.be/stops/400287"], ["https://data.delijn.be/stops/508091", "https://data.delijn.be/stops/508973"], ["https://data.delijn.be/stops/502758", "https://data.delijn.be/stops/502763"], ["https://data.delijn.be/stops/200745", "https://data.delijn.be/stops/201745"], ["https://data.delijn.be/stops/102419", "https://data.delijn.be/stops/106215"], ["https://data.delijn.be/stops/302174", "https://data.delijn.be/stops/308099"], ["https://data.delijn.be/stops/300854", "https://data.delijn.be/stops/305448"], ["https://data.delijn.be/stops/105440", "https://data.delijn.be/stops/105730"], ["https://data.delijn.be/stops/300759", "https://data.delijn.be/stops/301012"], ["https://data.delijn.be/stops/504719", "https://data.delijn.be/stops/504793"], ["https://data.delijn.be/stops/102577", "https://data.delijn.be/stops/109739"], ["https://data.delijn.be/stops/408267", "https://data.delijn.be/stops/408406"], ["https://data.delijn.be/stops/204266", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/103970", "https://data.delijn.be/stops/103980"], ["https://data.delijn.be/stops/203164", "https://data.delijn.be/stops/205070"], ["https://data.delijn.be/stops/408504", "https://data.delijn.be/stops/408525"], ["https://data.delijn.be/stops/407650", "https://data.delijn.be/stops/410247"], ["https://data.delijn.be/stops/301118", "https://data.delijn.be/stops/302225"], ["https://data.delijn.be/stops/109075", "https://data.delijn.be/stops/109078"], ["https://data.delijn.be/stops/105404", "https://data.delijn.be/stops/107320"], ["https://data.delijn.be/stops/208544", "https://data.delijn.be/stops/208545"], ["https://data.delijn.be/stops/507944", "https://data.delijn.be/stops/507955"], ["https://data.delijn.be/stops/304729", "https://data.delijn.be/stops/304747"], ["https://data.delijn.be/stops/104493", "https://data.delijn.be/stops/104494"], ["https://data.delijn.be/stops/305177", "https://data.delijn.be/stops/305178"], ["https://data.delijn.be/stops/304445", "https://data.delijn.be/stops/304457"], ["https://data.delijn.be/stops/103988", "https://data.delijn.be/stops/104839"], ["https://data.delijn.be/stops/300177", "https://data.delijn.be/stops/300189"], ["https://data.delijn.be/stops/406556", "https://data.delijn.be/stops/406562"], ["https://data.delijn.be/stops/206715", "https://data.delijn.be/stops/207131"], ["https://data.delijn.be/stops/402179", "https://data.delijn.be/stops/402483"], ["https://data.delijn.be/stops/202078", "https://data.delijn.be/stops/203341"], ["https://data.delijn.be/stops/208526", "https://data.delijn.be/stops/209526"], ["https://data.delijn.be/stops/301253", "https://data.delijn.be/stops/308558"], ["https://data.delijn.be/stops/304988", "https://data.delijn.be/stops/304989"], ["https://data.delijn.be/stops/503146", "https://data.delijn.be/stops/508144"], ["https://data.delijn.be/stops/404988", "https://data.delijn.be/stops/406812"], ["https://data.delijn.be/stops/101645", "https://data.delijn.be/stops/103757"], ["https://data.delijn.be/stops/105214", "https://data.delijn.be/stops/105544"], ["https://data.delijn.be/stops/208304", "https://data.delijn.be/stops/208305"], ["https://data.delijn.be/stops/301679", "https://data.delijn.be/stops/301683"], ["https://data.delijn.be/stops/208774", "https://data.delijn.be/stops/208834"], ["https://data.delijn.be/stops/406296", "https://data.delijn.be/stops/406297"], ["https://data.delijn.be/stops/206436", "https://data.delijn.be/stops/207435"], ["https://data.delijn.be/stops/201601", "https://data.delijn.be/stops/202757"], ["https://data.delijn.be/stops/101223", "https://data.delijn.be/stops/102042"], ["https://data.delijn.be/stops/203431", "https://data.delijn.be/stops/203438"], ["https://data.delijn.be/stops/301418", "https://data.delijn.be/stops/301422"], ["https://data.delijn.be/stops/401531", "https://data.delijn.be/stops/402028"], ["https://data.delijn.be/stops/305025", "https://data.delijn.be/stops/307849"], ["https://data.delijn.be/stops/308458", "https://data.delijn.be/stops/308459"], ["https://data.delijn.be/stops/505087", "https://data.delijn.be/stops/506464"], ["https://data.delijn.be/stops/403209", "https://data.delijn.be/stops/403401"], ["https://data.delijn.be/stops/104854", "https://data.delijn.be/stops/107891"], ["https://data.delijn.be/stops/502688", "https://data.delijn.be/stops/502921"], ["https://data.delijn.be/stops/408710", "https://data.delijn.be/stops/408732"], ["https://data.delijn.be/stops/201936", "https://data.delijn.be/stops/204099"], ["https://data.delijn.be/stops/101783", "https://data.delijn.be/stops/107879"], ["https://data.delijn.be/stops/305276", "https://data.delijn.be/stops/305336"], ["https://data.delijn.be/stops/206419", "https://data.delijn.be/stops/207419"], ["https://data.delijn.be/stops/304361", "https://data.delijn.be/stops/307376"], ["https://data.delijn.be/stops/502108", "https://data.delijn.be/stops/507108"], ["https://data.delijn.be/stops/501231", "https://data.delijn.be/stops/501633"], ["https://data.delijn.be/stops/302850", "https://data.delijn.be/stops/302851"], ["https://data.delijn.be/stops/303081", "https://data.delijn.be/stops/303105"], ["https://data.delijn.be/stops/502805", "https://data.delijn.be/stops/507511"], ["https://data.delijn.be/stops/107365", "https://data.delijn.be/stops/107840"], ["https://data.delijn.be/stops/102849", "https://data.delijn.be/stops/106776"], ["https://data.delijn.be/stops/505530", "https://data.delijn.be/stops/506424"], ["https://data.delijn.be/stops/109343", "https://data.delijn.be/stops/109344"], ["https://data.delijn.be/stops/103151", "https://data.delijn.be/stops/406814"], ["https://data.delijn.be/stops/408357", "https://data.delijn.be/stops/408382"], ["https://data.delijn.be/stops/203283", "https://data.delijn.be/stops/210005"], ["https://data.delijn.be/stops/101535", "https://data.delijn.be/stops/109031"], ["https://data.delijn.be/stops/104479", "https://data.delijn.be/stops/104481"], ["https://data.delijn.be/stops/403207", "https://data.delijn.be/stops/403551"], ["https://data.delijn.be/stops/101507", "https://data.delijn.be/stops/109078"], ["https://data.delijn.be/stops/400061", "https://data.delijn.be/stops/410030"], ["https://data.delijn.be/stops/202212", "https://data.delijn.be/stops/203212"], ["https://data.delijn.be/stops/301064", "https://data.delijn.be/stops/301301"], ["https://data.delijn.be/stops/108747", "https://data.delijn.be/stops/108749"], ["https://data.delijn.be/stops/504102", "https://data.delijn.be/stops/509101"], ["https://data.delijn.be/stops/206934", "https://data.delijn.be/stops/206962"], ["https://data.delijn.be/stops/303653", "https://data.delijn.be/stops/304882"], ["https://data.delijn.be/stops/403848", "https://data.delijn.be/stops/410115"], ["https://data.delijn.be/stops/407670", "https://data.delijn.be/stops/408448"], ["https://data.delijn.be/stops/503604", "https://data.delijn.be/stops/508603"], ["https://data.delijn.be/stops/202156", "https://data.delijn.be/stops/203155"], ["https://data.delijn.be/stops/501764", "https://data.delijn.be/stops/507342"], ["https://data.delijn.be/stops/405613", "https://data.delijn.be/stops/407192"], ["https://data.delijn.be/stops/401160", "https://data.delijn.be/stops/407890"], ["https://data.delijn.be/stops/509265", "https://data.delijn.be/stops/509266"], ["https://data.delijn.be/stops/408704", "https://data.delijn.be/stops/408705"], ["https://data.delijn.be/stops/301373", "https://data.delijn.be/stops/301374"], ["https://data.delijn.be/stops/501588", "https://data.delijn.be/stops/506034"], ["https://data.delijn.be/stops/408839", "https://data.delijn.be/stops/408843"], ["https://data.delijn.be/stops/301232", "https://data.delijn.be/stops/306327"], ["https://data.delijn.be/stops/504088", "https://data.delijn.be/stops/505000"], ["https://data.delijn.be/stops/501226", "https://data.delijn.be/stops/501227"], ["https://data.delijn.be/stops/505314", "https://data.delijn.be/stops/509931"], ["https://data.delijn.be/stops/107905", "https://data.delijn.be/stops/108585"], ["https://data.delijn.be/stops/300093", "https://data.delijn.be/stops/306843"], ["https://data.delijn.be/stops/202631", "https://data.delijn.be/stops/203630"], ["https://data.delijn.be/stops/503829", "https://data.delijn.be/stops/504052"], ["https://data.delijn.be/stops/206098", "https://data.delijn.be/stops/206100"], ["https://data.delijn.be/stops/206256", "https://data.delijn.be/stops/207256"], ["https://data.delijn.be/stops/505397", "https://data.delijn.be/stops/505835"], ["https://data.delijn.be/stops/102161", "https://data.delijn.be/stops/108966"], ["https://data.delijn.be/stops/401816", "https://data.delijn.be/stops/401817"], ["https://data.delijn.be/stops/303184", "https://data.delijn.be/stops/303185"], ["https://data.delijn.be/stops/402566", "https://data.delijn.be/stops/402567"], ["https://data.delijn.be/stops/302619", "https://data.delijn.be/stops/302620"], ["https://data.delijn.be/stops/204820", "https://data.delijn.be/stops/205819"], ["https://data.delijn.be/stops/504104", "https://data.delijn.be/stops/509105"], ["https://data.delijn.be/stops/504259", "https://data.delijn.be/stops/504683"], ["https://data.delijn.be/stops/300840", "https://data.delijn.be/stops/304601"], ["https://data.delijn.be/stops/303295", "https://data.delijn.be/stops/308118"], ["https://data.delijn.be/stops/208614", "https://data.delijn.be/stops/209614"], ["https://data.delijn.be/stops/302246", "https://data.delijn.be/stops/302247"], ["https://data.delijn.be/stops/508744", "https://data.delijn.be/stops/508746"], ["https://data.delijn.be/stops/501090", "https://data.delijn.be/stops/506090"], ["https://data.delijn.be/stops/105576", "https://data.delijn.be/stops/106045"], ["https://data.delijn.be/stops/101540", "https://data.delijn.be/stops/101806"], ["https://data.delijn.be/stops/302770", "https://data.delijn.be/stops/307047"], ["https://data.delijn.be/stops/106266", "https://data.delijn.be/stops/106268"], ["https://data.delijn.be/stops/200406", "https://data.delijn.be/stops/200508"], ["https://data.delijn.be/stops/401427", "https://data.delijn.be/stops/401586"], ["https://data.delijn.be/stops/504279", "https://data.delijn.be/stops/509287"], ["https://data.delijn.be/stops/408162", "https://data.delijn.be/stops/408491"], ["https://data.delijn.be/stops/300452", "https://data.delijn.be/stops/308057"], ["https://data.delijn.be/stops/400103", "https://data.delijn.be/stops/400121"], ["https://data.delijn.be/stops/302111", "https://data.delijn.be/stops/302116"], ["https://data.delijn.be/stops/109304", "https://data.delijn.be/stops/109305"], ["https://data.delijn.be/stops/503908", "https://data.delijn.be/stops/505783"], ["https://data.delijn.be/stops/207002", "https://data.delijn.be/stops/207003"], ["https://data.delijn.be/stops/206356", "https://data.delijn.be/stops/207348"], ["https://data.delijn.be/stops/403927", "https://data.delijn.be/stops/404082"], ["https://data.delijn.be/stops/101854", "https://data.delijn.be/stops/109454"], ["https://data.delijn.be/stops/504544", "https://data.delijn.be/stops/509545"], ["https://data.delijn.be/stops/508607", "https://data.delijn.be/stops/508613"], ["https://data.delijn.be/stops/303239", "https://data.delijn.be/stops/303242"], ["https://data.delijn.be/stops/400834", "https://data.delijn.be/stops/409530"], ["https://data.delijn.be/stops/200356", "https://data.delijn.be/stops/201387"], ["https://data.delijn.be/stops/407690", "https://data.delijn.be/stops/407691"], ["https://data.delijn.be/stops/401018", "https://data.delijn.be/stops/401019"], ["https://data.delijn.be/stops/208657", "https://data.delijn.be/stops/208658"], ["https://data.delijn.be/stops/504871", "https://data.delijn.be/stops/508693"], ["https://data.delijn.be/stops/108116", "https://data.delijn.be/stops/108149"], ["https://data.delijn.be/stops/402769", "https://data.delijn.be/stops/409545"], ["https://data.delijn.be/stops/204007", "https://data.delijn.be/stops/205006"], ["https://data.delijn.be/stops/305779", "https://data.delijn.be/stops/305798"], ["https://data.delijn.be/stops/106244", "https://data.delijn.be/stops/106246"], ["https://data.delijn.be/stops/307181", "https://data.delijn.be/stops/307184"], ["https://data.delijn.be/stops/301017", "https://data.delijn.be/stops/301048"], ["https://data.delijn.be/stops/204162", "https://data.delijn.be/stops/207279"], ["https://data.delijn.be/stops/407607", "https://data.delijn.be/stops/407609"], ["https://data.delijn.be/stops/304480", "https://data.delijn.be/stops/304506"], ["https://data.delijn.be/stops/307896", "https://data.delijn.be/stops/308548"], ["https://data.delijn.be/stops/204299", "https://data.delijn.be/stops/204305"], ["https://data.delijn.be/stops/306149", "https://data.delijn.be/stops/306649"], ["https://data.delijn.be/stops/101456", "https://data.delijn.be/stops/102631"], ["https://data.delijn.be/stops/102075", "https://data.delijn.be/stops/102373"], ["https://data.delijn.be/stops/404431", "https://data.delijn.be/stops/409258"], ["https://data.delijn.be/stops/101602", "https://data.delijn.be/stops/106024"], ["https://data.delijn.be/stops/307921", "https://data.delijn.be/stops/308855"], ["https://data.delijn.be/stops/103688", "https://data.delijn.be/stops/107577"], ["https://data.delijn.be/stops/208417", "https://data.delijn.be/stops/209416"], ["https://data.delijn.be/stops/300115", "https://data.delijn.be/stops/306811"], ["https://data.delijn.be/stops/301380", "https://data.delijn.be/stops/306650"], ["https://data.delijn.be/stops/404147", "https://data.delijn.be/stops/404198"], ["https://data.delijn.be/stops/407195", "https://data.delijn.be/stops/407471"], ["https://data.delijn.be/stops/204242", "https://data.delijn.be/stops/205242"], ["https://data.delijn.be/stops/109198", "https://data.delijn.be/stops/109202"], ["https://data.delijn.be/stops/405210", "https://data.delijn.be/stops/409375"], ["https://data.delijn.be/stops/206274", "https://data.delijn.be/stops/207273"], ["https://data.delijn.be/stops/407980", "https://data.delijn.be/stops/408030"], ["https://data.delijn.be/stops/501319", "https://data.delijn.be/stops/501517"], ["https://data.delijn.be/stops/107498", "https://data.delijn.be/stops/107528"], ["https://data.delijn.be/stops/509572", "https://data.delijn.be/stops/509576"], ["https://data.delijn.be/stops/402338", "https://data.delijn.be/stops/402340"], ["https://data.delijn.be/stops/200876", "https://data.delijn.be/stops/505066"], ["https://data.delijn.be/stops/108226", "https://data.delijn.be/stops/109276"], ["https://data.delijn.be/stops/200818", "https://data.delijn.be/stops/202324"], ["https://data.delijn.be/stops/508109", "https://data.delijn.be/stops/508409"], ["https://data.delijn.be/stops/503915", "https://data.delijn.be/stops/508920"], ["https://data.delijn.be/stops/300555", "https://data.delijn.be/stops/300568"], ["https://data.delijn.be/stops/107654", "https://data.delijn.be/stops/107657"], ["https://data.delijn.be/stops/503582", "https://data.delijn.be/stops/508567"], ["https://data.delijn.be/stops/403097", "https://data.delijn.be/stops/403420"], ["https://data.delijn.be/stops/202092", "https://data.delijn.be/stops/203270"], ["https://data.delijn.be/stops/206482", "https://data.delijn.be/stops/207413"], ["https://data.delijn.be/stops/501697", "https://data.delijn.be/stops/505419"], ["https://data.delijn.be/stops/400175", "https://data.delijn.be/stops/402790"], ["https://data.delijn.be/stops/305399", "https://data.delijn.be/stops/305413"], ["https://data.delijn.be/stops/505770", "https://data.delijn.be/stops/507347"], ["https://data.delijn.be/stops/101942", "https://data.delijn.be/stops/109642"], ["https://data.delijn.be/stops/409351", "https://data.delijn.be/stops/409356"], ["https://data.delijn.be/stops/200858", "https://data.delijn.be/stops/203306"], ["https://data.delijn.be/stops/302424", "https://data.delijn.be/stops/302426"], ["https://data.delijn.be/stops/206154", "https://data.delijn.be/stops/207154"], ["https://data.delijn.be/stops/402018", "https://data.delijn.be/stops/402019"], ["https://data.delijn.be/stops/401249", "https://data.delijn.be/stops/401251"], ["https://data.delijn.be/stops/106206", "https://data.delijn.be/stops/106213"], ["https://data.delijn.be/stops/206164", "https://data.delijn.be/stops/308900"], ["https://data.delijn.be/stops/305704", "https://data.delijn.be/stops/305705"], ["https://data.delijn.be/stops/305464", "https://data.delijn.be/stops/308616"], ["https://data.delijn.be/stops/300169", "https://data.delijn.be/stops/301188"], ["https://data.delijn.be/stops/502734", "https://data.delijn.be/stops/505588"], ["https://data.delijn.be/stops/508360", "https://data.delijn.be/stops/508363"], ["https://data.delijn.be/stops/107039", "https://data.delijn.be/stops/107041"], ["https://data.delijn.be/stops/107573", "https://data.delijn.be/stops/107575"], ["https://data.delijn.be/stops/106966", "https://data.delijn.be/stops/106967"], ["https://data.delijn.be/stops/108495", "https://data.delijn.be/stops/109588"], ["https://data.delijn.be/stops/300152", "https://data.delijn.be/stops/300162"], ["https://data.delijn.be/stops/202414", "https://data.delijn.be/stops/203275"], ["https://data.delijn.be/stops/406621", "https://data.delijn.be/stops/406644"], ["https://data.delijn.be/stops/306255", "https://data.delijn.be/stops/306256"], ["https://data.delijn.be/stops/102152", "https://data.delijn.be/stops/108835"], ["https://data.delijn.be/stops/201856", "https://data.delijn.be/stops/211038"], ["https://data.delijn.be/stops/201815", "https://data.delijn.be/stops/201817"], ["https://data.delijn.be/stops/503211", "https://data.delijn.be/stops/508983"], ["https://data.delijn.be/stops/503903", "https://data.delijn.be/stops/508903"], ["https://data.delijn.be/stops/200744", "https://data.delijn.be/stops/203781"], ["https://data.delijn.be/stops/200698", "https://data.delijn.be/stops/202784"], ["https://data.delijn.be/stops/302826", "https://data.delijn.be/stops/302827"], ["https://data.delijn.be/stops/102219", "https://data.delijn.be/stops/105649"], ["https://data.delijn.be/stops/406736", "https://data.delijn.be/stops/407285"], ["https://data.delijn.be/stops/204396", "https://data.delijn.be/stops/204416"], ["https://data.delijn.be/stops/207106", "https://data.delijn.be/stops/207910"], ["https://data.delijn.be/stops/406525", "https://data.delijn.be/stops/406629"], ["https://data.delijn.be/stops/302522", "https://data.delijn.be/stops/302531"], ["https://data.delijn.be/stops/103696", "https://data.delijn.be/stops/103697"], ["https://data.delijn.be/stops/400157", "https://data.delijn.be/stops/400159"], ["https://data.delijn.be/stops/404346", "https://data.delijn.be/stops/404367"], ["https://data.delijn.be/stops/307378", "https://data.delijn.be/stops/307380"], ["https://data.delijn.be/stops/103934", "https://data.delijn.be/stops/107403"], ["https://data.delijn.be/stops/108986", "https://data.delijn.be/stops/109089"], ["https://data.delijn.be/stops/207169", "https://data.delijn.be/stops/303850"], ["https://data.delijn.be/stops/403015", "https://data.delijn.be/stops/403260"], ["https://data.delijn.be/stops/301561", "https://data.delijn.be/stops/308082"], ["https://data.delijn.be/stops/505691", "https://data.delijn.be/stops/507611"], ["https://data.delijn.be/stops/305555", "https://data.delijn.be/stops/308652"], ["https://data.delijn.be/stops/407400", "https://data.delijn.be/stops/407405"], ["https://data.delijn.be/stops/504862", "https://data.delijn.be/stops/508279"], ["https://data.delijn.be/stops/400199", "https://data.delijn.be/stops/406833"], ["https://data.delijn.be/stops/404364", "https://data.delijn.be/stops/404782"], ["https://data.delijn.be/stops/200150", "https://data.delijn.be/stops/200513"], ["https://data.delijn.be/stops/200840", "https://data.delijn.be/stops/507472"], ["https://data.delijn.be/stops/402208", "https://data.delijn.be/stops/402766"], ["https://data.delijn.be/stops/205749", "https://data.delijn.be/stops/205757"], ["https://data.delijn.be/stops/101477", "https://data.delijn.be/stops/109289"], ["https://data.delijn.be/stops/400568", "https://data.delijn.be/stops/404153"], ["https://data.delijn.be/stops/104554", "https://data.delijn.be/stops/308620"], ["https://data.delijn.be/stops/109644", "https://data.delijn.be/stops/109651"], ["https://data.delijn.be/stops/301682", "https://data.delijn.be/stops/306187"], ["https://data.delijn.be/stops/305699", "https://data.delijn.be/stops/305706"], ["https://data.delijn.be/stops/505536", "https://data.delijn.be/stops/509581"], ["https://data.delijn.be/stops/101221", "https://data.delijn.be/stops/101222"], ["https://data.delijn.be/stops/108534", "https://data.delijn.be/stops/108538"], ["https://data.delijn.be/stops/302875", "https://data.delijn.be/stops/307693"], ["https://data.delijn.be/stops/504082", "https://data.delijn.be/stops/509079"], ["https://data.delijn.be/stops/204437", "https://data.delijn.be/stops/205437"], ["https://data.delijn.be/stops/208115", "https://data.delijn.be/stops/209336"], ["https://data.delijn.be/stops/200706", "https://data.delijn.be/stops/203430"], ["https://data.delijn.be/stops/407990", "https://data.delijn.be/stops/408018"], ["https://data.delijn.be/stops/104363", "https://data.delijn.be/stops/104575"], ["https://data.delijn.be/stops/502328", "https://data.delijn.be/stops/502331"], ["https://data.delijn.be/stops/406708", "https://data.delijn.be/stops/408001"], ["https://data.delijn.be/stops/401892", "https://data.delijn.be/stops/401895"], ["https://data.delijn.be/stops/203797", "https://data.delijn.be/stops/502759"], ["https://data.delijn.be/stops/400512", "https://data.delijn.be/stops/401437"], ["https://data.delijn.be/stops/404366", "https://data.delijn.be/stops/404391"], ["https://data.delijn.be/stops/206751", "https://data.delijn.be/stops/209469"], ["https://data.delijn.be/stops/407610", "https://data.delijn.be/stops/407629"], ["https://data.delijn.be/stops/306765", "https://data.delijn.be/stops/308409"], ["https://data.delijn.be/stops/408867", "https://data.delijn.be/stops/408883"], ["https://data.delijn.be/stops/102302", "https://data.delijn.be/stops/106966"], ["https://data.delijn.be/stops/207436", "https://data.delijn.be/stops/207437"], ["https://data.delijn.be/stops/102187", "https://data.delijn.be/stops/102193"], ["https://data.delijn.be/stops/200464", "https://data.delijn.be/stops/201463"], ["https://data.delijn.be/stops/508651", "https://data.delijn.be/stops/508653"], ["https://data.delijn.be/stops/106368", "https://data.delijn.be/stops/106370"], ["https://data.delijn.be/stops/106680", "https://data.delijn.be/stops/107122"], ["https://data.delijn.be/stops/204943", "https://data.delijn.be/stops/205943"], ["https://data.delijn.be/stops/301837", "https://data.delijn.be/stops/301842"], ["https://data.delijn.be/stops/206261", "https://data.delijn.be/stops/206262"], ["https://data.delijn.be/stops/203899", "https://data.delijn.be/stops/203900"], ["https://data.delijn.be/stops/106670", "https://data.delijn.be/stops/106673"], ["https://data.delijn.be/stops/501497", "https://data.delijn.be/stops/501641"], ["https://data.delijn.be/stops/303307", "https://data.delijn.be/stops/303319"], ["https://data.delijn.be/stops/305145", "https://data.delijn.be/stops/504255"], ["https://data.delijn.be/stops/109842", "https://data.delijn.be/stops/109845"], ["https://data.delijn.be/stops/300120", "https://data.delijn.be/stops/300121"], ["https://data.delijn.be/stops/503838", "https://data.delijn.be/stops/503839"], ["https://data.delijn.be/stops/108273", "https://data.delijn.be/stops/108276"], ["https://data.delijn.be/stops/108989", "https://data.delijn.be/stops/108991"], ["https://data.delijn.be/stops/304799", "https://data.delijn.be/stops/304800"], ["https://data.delijn.be/stops/405914", "https://data.delijn.be/stops/405915"], ["https://data.delijn.be/stops/504410", "https://data.delijn.be/stops/509696"], ["https://data.delijn.be/stops/106271", "https://data.delijn.be/stops/106272"], ["https://data.delijn.be/stops/300485", "https://data.delijn.be/stops/302867"], ["https://data.delijn.be/stops/400060", "https://data.delijn.be/stops/400158"], ["https://data.delijn.be/stops/401082", "https://data.delijn.be/stops/401083"], ["https://data.delijn.be/stops/508554", "https://data.delijn.be/stops/508993"], ["https://data.delijn.be/stops/206387", "https://data.delijn.be/stops/207387"], ["https://data.delijn.be/stops/206184", "https://data.delijn.be/stops/207184"], ["https://data.delijn.be/stops/502340", "https://data.delijn.be/stops/507340"], ["https://data.delijn.be/stops/107073", "https://data.delijn.be/stops/107079"], ["https://data.delijn.be/stops/402067", "https://data.delijn.be/stops/402763"], ["https://data.delijn.be/stops/503717", "https://data.delijn.be/stops/508732"], ["https://data.delijn.be/stops/204742", "https://data.delijn.be/stops/205743"], ["https://data.delijn.be/stops/206366", "https://data.delijn.be/stops/207746"], ["https://data.delijn.be/stops/301859", "https://data.delijn.be/stops/301865"], ["https://data.delijn.be/stops/302959", "https://data.delijn.be/stops/302972"], ["https://data.delijn.be/stops/503232", "https://data.delijn.be/stops/503263"], ["https://data.delijn.be/stops/104459", "https://data.delijn.be/stops/104461"], ["https://data.delijn.be/stops/307641", "https://data.delijn.be/stops/307686"], ["https://data.delijn.be/stops/206015", "https://data.delijn.be/stops/206297"], ["https://data.delijn.be/stops/502234", "https://data.delijn.be/stops/505232"], ["https://data.delijn.be/stops/303268", "https://data.delijn.be/stops/303277"], ["https://data.delijn.be/stops/504460", "https://data.delijn.be/stops/504679"], ["https://data.delijn.be/stops/202876", "https://data.delijn.be/stops/203877"], ["https://data.delijn.be/stops/503846", "https://data.delijn.be/stops/505218"], ["https://data.delijn.be/stops/209014", "https://data.delijn.be/stops/209096"], ["https://data.delijn.be/stops/503412", "https://data.delijn.be/stops/508412"], ["https://data.delijn.be/stops/506001", "https://data.delijn.be/stops/509561"], ["https://data.delijn.be/stops/105456", "https://data.delijn.be/stops/105470"], ["https://data.delijn.be/stops/502021", "https://data.delijn.be/stops/507019"], ["https://data.delijn.be/stops/103909", "https://data.delijn.be/stops/105649"], ["https://data.delijn.be/stops/402888", "https://data.delijn.be/stops/405536"], ["https://data.delijn.be/stops/402048", "https://data.delijn.be/stops/402203"], ["https://data.delijn.be/stops/106999", "https://data.delijn.be/stops/107324"], ["https://data.delijn.be/stops/200522", "https://data.delijn.be/stops/201521"], ["https://data.delijn.be/stops/202262", "https://data.delijn.be/stops/203263"], ["https://data.delijn.be/stops/507042", "https://data.delijn.be/stops/507317"], ["https://data.delijn.be/stops/305622", "https://data.delijn.be/stops/305624"], ["https://data.delijn.be/stops/101518", "https://data.delijn.be/stops/109073"], ["https://data.delijn.be/stops/102896", "https://data.delijn.be/stops/103765"], ["https://data.delijn.be/stops/205753", "https://data.delijn.be/stops/205754"], ["https://data.delijn.be/stops/504011", "https://data.delijn.be/stops/509011"], ["https://data.delijn.be/stops/500041", "https://data.delijn.be/stops/500043"], ["https://data.delijn.be/stops/101178", "https://data.delijn.be/stops/101179"], ["https://data.delijn.be/stops/302836", "https://data.delijn.be/stops/302837"], ["https://data.delijn.be/stops/500942", "https://data.delijn.be/stops/505639"], ["https://data.delijn.be/stops/504338", "https://data.delijn.be/stops/509338"], ["https://data.delijn.be/stops/305528", "https://data.delijn.be/stops/305879"], ["https://data.delijn.be/stops/405029", "https://data.delijn.be/stops/410022"], ["https://data.delijn.be/stops/301910", "https://data.delijn.be/stops/306255"], ["https://data.delijn.be/stops/300316", "https://data.delijn.be/stops/307976"], ["https://data.delijn.be/stops/400906", "https://data.delijn.be/stops/400975"], ["https://data.delijn.be/stops/408679", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/204990", "https://data.delijn.be/stops/205990"], ["https://data.delijn.be/stops/408352", "https://data.delijn.be/stops/408398"], ["https://data.delijn.be/stops/200856", "https://data.delijn.be/stops/203307"], ["https://data.delijn.be/stops/206331", "https://data.delijn.be/stops/207708"], ["https://data.delijn.be/stops/108813", "https://data.delijn.be/stops/108816"], ["https://data.delijn.be/stops/505070", "https://data.delijn.be/stops/505756"], ["https://data.delijn.be/stops/501371", "https://data.delijn.be/stops/504665"], ["https://data.delijn.be/stops/401301", "https://data.delijn.be/stops/401316"], ["https://data.delijn.be/stops/308276", "https://data.delijn.be/stops/308279"], ["https://data.delijn.be/stops/108568", "https://data.delijn.be/stops/108992"], ["https://data.delijn.be/stops/108232", "https://data.delijn.be/stops/108234"], ["https://data.delijn.be/stops/209428", "https://data.delijn.be/stops/209595"], ["https://data.delijn.be/stops/305222", "https://data.delijn.be/stops/305253"], ["https://data.delijn.be/stops/508398", "https://data.delijn.be/stops/508404"], ["https://data.delijn.be/stops/400090", "https://data.delijn.be/stops/400163"], ["https://data.delijn.be/stops/505844", "https://data.delijn.be/stops/509890"], ["https://data.delijn.be/stops/503226", "https://data.delijn.be/stops/508595"], ["https://data.delijn.be/stops/508011", "https://data.delijn.be/stops/508848"], ["https://data.delijn.be/stops/505638", "https://data.delijn.be/stops/505643"], ["https://data.delijn.be/stops/504593", "https://data.delijn.be/stops/509593"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/302889"], ["https://data.delijn.be/stops/105116", "https://data.delijn.be/stops/105827"], ["https://data.delijn.be/stops/203346", "https://data.delijn.be/stops/209745"], ["https://data.delijn.be/stops/107786", "https://data.delijn.be/stops/206697"], ["https://data.delijn.be/stops/102131", "https://data.delijn.be/stops/106561"], ["https://data.delijn.be/stops/504190", "https://data.delijn.be/stops/509190"], ["https://data.delijn.be/stops/504372", "https://data.delijn.be/stops/509458"], ["https://data.delijn.be/stops/200640", "https://data.delijn.be/stops/202904"], ["https://data.delijn.be/stops/208017", "https://data.delijn.be/stops/209016"], ["https://data.delijn.be/stops/404526", "https://data.delijn.be/stops/409193"], ["https://data.delijn.be/stops/505390", "https://data.delijn.be/stops/508137"], ["https://data.delijn.be/stops/501046", "https://data.delijn.be/stops/501538"], ["https://data.delijn.be/stops/502085", "https://data.delijn.be/stops/507117"], ["https://data.delijn.be/stops/402784", "https://data.delijn.be/stops/402785"], ["https://data.delijn.be/stops/306956", "https://data.delijn.be/stops/306957"], ["https://data.delijn.be/stops/300006", "https://data.delijn.be/stops/301280"], ["https://data.delijn.be/stops/303342", "https://data.delijn.be/stops/308932"], ["https://data.delijn.be/stops/202342", "https://data.delijn.be/stops/203447"], ["https://data.delijn.be/stops/201489", "https://data.delijn.be/stops/201890"], ["https://data.delijn.be/stops/209599", "https://data.delijn.be/stops/307590"], ["https://data.delijn.be/stops/303531", "https://data.delijn.be/stops/304131"], ["https://data.delijn.be/stops/504423", "https://data.delijn.be/stops/509402"], ["https://data.delijn.be/stops/503514", "https://data.delijn.be/stops/504791"], ["https://data.delijn.be/stops/405798", "https://data.delijn.be/stops/405799"], ["https://data.delijn.be/stops/201869", "https://data.delijn.be/stops/203658"], ["https://data.delijn.be/stops/204237", "https://data.delijn.be/stops/205235"], ["https://data.delijn.be/stops/407221", "https://data.delijn.be/stops/408476"], ["https://data.delijn.be/stops/301241", "https://data.delijn.be/stops/307616"], ["https://data.delijn.be/stops/204190", "https://data.delijn.be/stops/205230"], ["https://data.delijn.be/stops/301394", "https://data.delijn.be/stops/306150"], ["https://data.delijn.be/stops/505505", "https://data.delijn.be/stops/505603"], ["https://data.delijn.be/stops/304440", "https://data.delijn.be/stops/307089"], ["https://data.delijn.be/stops/403018", "https://data.delijn.be/stops/409277"], ["https://data.delijn.be/stops/502718", "https://data.delijn.be/stops/507619"], ["https://data.delijn.be/stops/206213", "https://data.delijn.be/stops/207214"], ["https://data.delijn.be/stops/504597", "https://data.delijn.be/stops/505302"], ["https://data.delijn.be/stops/205505", "https://data.delijn.be/stops/205506"], ["https://data.delijn.be/stops/502619", "https://data.delijn.be/stops/502620"], ["https://data.delijn.be/stops/205237", "https://data.delijn.be/stops/206395"], ["https://data.delijn.be/stops/304839", "https://data.delijn.be/stops/304878"], ["https://data.delijn.be/stops/207981", "https://data.delijn.be/stops/216020"], ["https://data.delijn.be/stops/200030", "https://data.delijn.be/stops/201448"], ["https://data.delijn.be/stops/102237", "https://data.delijn.be/stops/105859"], ["https://data.delijn.be/stops/404461", "https://data.delijn.be/stops/404526"], ["https://data.delijn.be/stops/405262", "https://data.delijn.be/stops/405263"], ["https://data.delijn.be/stops/102285", "https://data.delijn.be/stops/102286"], ["https://data.delijn.be/stops/308449", "https://data.delijn.be/stops/308450"], ["https://data.delijn.be/stops/300352", "https://data.delijn.be/stops/301311"], ["https://data.delijn.be/stops/303350", "https://data.delijn.be/stops/303367"], ["https://data.delijn.be/stops/302073", "https://data.delijn.be/stops/308813"], ["https://data.delijn.be/stops/410016", "https://data.delijn.be/stops/410017"], ["https://data.delijn.be/stops/408366", "https://data.delijn.be/stops/408938"], ["https://data.delijn.be/stops/305147", "https://data.delijn.be/stops/306963"], ["https://data.delijn.be/stops/509355", "https://data.delijn.be/stops/509356"], ["https://data.delijn.be/stops/303286", "https://data.delijn.be/stops/305978"], ["https://data.delijn.be/stops/102430", "https://data.delijn.be/stops/102435"], ["https://data.delijn.be/stops/200206", "https://data.delijn.be/stops/202143"], ["https://data.delijn.be/stops/502661", "https://data.delijn.be/stops/507660"], ["https://data.delijn.be/stops/406669", "https://data.delijn.be/stops/406685"], ["https://data.delijn.be/stops/206296", "https://data.delijn.be/stops/207446"], ["https://data.delijn.be/stops/201358", "https://data.delijn.be/stops/209663"], ["https://data.delijn.be/stops/502173", "https://data.delijn.be/stops/505390"], ["https://data.delijn.be/stops/307312", "https://data.delijn.be/stops/307314"], ["https://data.delijn.be/stops/206800", "https://data.delijn.be/stops/209571"], ["https://data.delijn.be/stops/107438", "https://data.delijn.be/stops/107440"], ["https://data.delijn.be/stops/107485", "https://data.delijn.be/stops/107525"], ["https://data.delijn.be/stops/103659", "https://data.delijn.be/stops/106219"], ["https://data.delijn.be/stops/101870", "https://data.delijn.be/stops/102300"], ["https://data.delijn.be/stops/109553", "https://data.delijn.be/stops/109787"], ["https://data.delijn.be/stops/408800", "https://data.delijn.be/stops/408804"], ["https://data.delijn.be/stops/306837", "https://data.delijn.be/stops/307730"], ["https://data.delijn.be/stops/206709", "https://data.delijn.be/stops/206785"], ["https://data.delijn.be/stops/403177", "https://data.delijn.be/stops/403253"], ["https://data.delijn.be/stops/109496", "https://data.delijn.be/stops/109497"], ["https://data.delijn.be/stops/401463", "https://data.delijn.be/stops/403268"], ["https://data.delijn.be/stops/404810", "https://data.delijn.be/stops/404811"], ["https://data.delijn.be/stops/509595", "https://data.delijn.be/stops/509597"], ["https://data.delijn.be/stops/304566", "https://data.delijn.be/stops/304645"], ["https://data.delijn.be/stops/109314", "https://data.delijn.be/stops/109358"], ["https://data.delijn.be/stops/404638", "https://data.delijn.be/stops/406966"], ["https://data.delijn.be/stops/204749", "https://data.delijn.be/stops/204750"], ["https://data.delijn.be/stops/502521", "https://data.delijn.be/stops/507673"], ["https://data.delijn.be/stops/106127", "https://data.delijn.be/stops/106129"], ["https://data.delijn.be/stops/404956", "https://data.delijn.be/stops/404957"], ["https://data.delijn.be/stops/304848", "https://data.delijn.be/stops/308527"], ["https://data.delijn.be/stops/202015", "https://data.delijn.be/stops/203014"], ["https://data.delijn.be/stops/308462", "https://data.delijn.be/stops/308469"], ["https://data.delijn.be/stops/404326", "https://data.delijn.be/stops/404361"], ["https://data.delijn.be/stops/206196", "https://data.delijn.be/stops/207220"], ["https://data.delijn.be/stops/501094", "https://data.delijn.be/stops/505152"], ["https://data.delijn.be/stops/109693", "https://data.delijn.be/stops/109721"], ["https://data.delijn.be/stops/305845", "https://data.delijn.be/stops/305846"], ["https://data.delijn.be/stops/105302", "https://data.delijn.be/stops/105303"], ["https://data.delijn.be/stops/108982", "https://data.delijn.be/stops/109567"], ["https://data.delijn.be/stops/304460", "https://data.delijn.be/stops/307651"], ["https://data.delijn.be/stops/202540", "https://data.delijn.be/stops/203527"], ["https://data.delijn.be/stops/300450", "https://data.delijn.be/stops/305033"], ["https://data.delijn.be/stops/207787", "https://data.delijn.be/stops/209371"], ["https://data.delijn.be/stops/506142", "https://data.delijn.be/stops/506165"], ["https://data.delijn.be/stops/302196", "https://data.delijn.be/stops/302197"], ["https://data.delijn.be/stops/403308", "https://data.delijn.be/stops/403309"], ["https://data.delijn.be/stops/102493", "https://data.delijn.be/stops/102497"], ["https://data.delijn.be/stops/205200", "https://data.delijn.be/stops/205408"], ["https://data.delijn.be/stops/405816", "https://data.delijn.be/stops/406826"], ["https://data.delijn.be/stops/105491", "https://data.delijn.be/stops/105503"], ["https://data.delijn.be/stops/408606", "https://data.delijn.be/stops/306776"], ["https://data.delijn.be/stops/101597", "https://data.delijn.be/stops/106589"], ["https://data.delijn.be/stops/200045", "https://data.delijn.be/stops/200641"], ["https://data.delijn.be/stops/403370", "https://data.delijn.be/stops/403551"], ["https://data.delijn.be/stops/206640", "https://data.delijn.be/stops/207214"], ["https://data.delijn.be/stops/503876", "https://data.delijn.be/stops/508876"], ["https://data.delijn.be/stops/204144", "https://data.delijn.be/stops/204148"], ["https://data.delijn.be/stops/406172", "https://data.delijn.be/stops/406186"], ["https://data.delijn.be/stops/106162", "https://data.delijn.be/stops/106446"], ["https://data.delijn.be/stops/107450", "https://data.delijn.be/stops/107470"], ["https://data.delijn.be/stops/505512", "https://data.delijn.be/stops/505615"], ["https://data.delijn.be/stops/409281", "https://data.delijn.be/stops/409294"], ["https://data.delijn.be/stops/105280", "https://data.delijn.be/stops/105285"], ["https://data.delijn.be/stops/406079", "https://data.delijn.be/stops/407489"], ["https://data.delijn.be/stops/407803", "https://data.delijn.be/stops/407837"], ["https://data.delijn.be/stops/400691", "https://data.delijn.be/stops/400839"], ["https://data.delijn.be/stops/103569", "https://data.delijn.be/stops/103572"], ["https://data.delijn.be/stops/207021", "https://data.delijn.be/stops/207077"], ["https://data.delijn.be/stops/207319", "https://data.delijn.be/stops/207871"], ["https://data.delijn.be/stops/102623", "https://data.delijn.be/stops/107056"], ["https://data.delijn.be/stops/200889", "https://data.delijn.be/stops/211298"], ["https://data.delijn.be/stops/508712", "https://data.delijn.be/stops/508739"], ["https://data.delijn.be/stops/304585", "https://data.delijn.be/stops/304586"], ["https://data.delijn.be/stops/300508", "https://data.delijn.be/stops/303977"], ["https://data.delijn.be/stops/200813", "https://data.delijn.be/stops/203280"], ["https://data.delijn.be/stops/402885", "https://data.delijn.be/stops/402943"], ["https://data.delijn.be/stops/200167", "https://data.delijn.be/stops/202149"], ["https://data.delijn.be/stops/402206", "https://data.delijn.be/stops/402499"], ["https://data.delijn.be/stops/208742", "https://data.delijn.be/stops/508678"], ["https://data.delijn.be/stops/200884", "https://data.delijn.be/stops/202655"], ["https://data.delijn.be/stops/200570", "https://data.delijn.be/stops/201422"], ["https://data.delijn.be/stops/206536", "https://data.delijn.be/stops/209688"], ["https://data.delijn.be/stops/202645", "https://data.delijn.be/stops/203645"], ["https://data.delijn.be/stops/101014", "https://data.delijn.be/stops/101017"], ["https://data.delijn.be/stops/205063", "https://data.delijn.be/stops/205210"], ["https://data.delijn.be/stops/204364", "https://data.delijn.be/stops/204716"], ["https://data.delijn.be/stops/401440", "https://data.delijn.be/stops/406718"], ["https://data.delijn.be/stops/401811", "https://data.delijn.be/stops/410356"], ["https://data.delijn.be/stops/103988", "https://data.delijn.be/stops/109460"], ["https://data.delijn.be/stops/401893", "https://data.delijn.be/stops/401895"], ["https://data.delijn.be/stops/301367", "https://data.delijn.be/stops/304811"], ["https://data.delijn.be/stops/101139", "https://data.delijn.be/stops/102659"], ["https://data.delijn.be/stops/305063", "https://data.delijn.be/stops/305116"], ["https://data.delijn.be/stops/501360", "https://data.delijn.be/stops/506298"], ["https://data.delijn.be/stops/505141", "https://data.delijn.be/stops/507236"], ["https://data.delijn.be/stops/200761", "https://data.delijn.be/stops/507961"], ["https://data.delijn.be/stops/201927", "https://data.delijn.be/stops/206929"], ["https://data.delijn.be/stops/404113", "https://data.delijn.be/stops/404126"], ["https://data.delijn.be/stops/102169", "https://data.delijn.be/stops/108908"], ["https://data.delijn.be/stops/502248", "https://data.delijn.be/stops/502566"], ["https://data.delijn.be/stops/502643", "https://data.delijn.be/stops/507165"], ["https://data.delijn.be/stops/104105", "https://data.delijn.be/stops/106086"], ["https://data.delijn.be/stops/304448", "https://data.delijn.be/stops/304449"], ["https://data.delijn.be/stops/104687", "https://data.delijn.be/stops/108131"], ["https://data.delijn.be/stops/201976", "https://data.delijn.be/stops/207482"], ["https://data.delijn.be/stops/300201", "https://data.delijn.be/stops/308787"], ["https://data.delijn.be/stops/507040", "https://data.delijn.be/stops/507627"], ["https://data.delijn.be/stops/400258", "https://data.delijn.be/stops/405864"], ["https://data.delijn.be/stops/508807", "https://data.delijn.be/stops/508809"], ["https://data.delijn.be/stops/502482", "https://data.delijn.be/stops/507479"], ["https://data.delijn.be/stops/107984", "https://data.delijn.be/stops/108054"], ["https://data.delijn.be/stops/101549", "https://data.delijn.be/stops/101718"], ["https://data.delijn.be/stops/102245", "https://data.delijn.be/stops/102914"], ["https://data.delijn.be/stops/301895", "https://data.delijn.be/stops/305722"], ["https://data.delijn.be/stops/400612", "https://data.delijn.be/stops/400613"], ["https://data.delijn.be/stops/405070", "https://data.delijn.be/stops/408372"], ["https://data.delijn.be/stops/306944", "https://data.delijn.be/stops/306946"], ["https://data.delijn.be/stops/103845", "https://data.delijn.be/stops/104600"], ["https://data.delijn.be/stops/109711", "https://data.delijn.be/stops/406485"], ["https://data.delijn.be/stops/400418", "https://data.delijn.be/stops/407100"], ["https://data.delijn.be/stops/301712", "https://data.delijn.be/stops/305907"], ["https://data.delijn.be/stops/307642", "https://data.delijn.be/stops/307644"], ["https://data.delijn.be/stops/103245", "https://data.delijn.be/stops/107720"], ["https://data.delijn.be/stops/503252", "https://data.delijn.be/stops/503430"], ["https://data.delijn.be/stops/107584", "https://data.delijn.be/stops/109430"], ["https://data.delijn.be/stops/503034", "https://data.delijn.be/stops/508037"], ["https://data.delijn.be/stops/503797", "https://data.delijn.be/stops/508601"], ["https://data.delijn.be/stops/303389", "https://data.delijn.be/stops/308717"], ["https://data.delijn.be/stops/103097", "https://data.delijn.be/stops/107185"], ["https://data.delijn.be/stops/304039", "https://data.delijn.be/stops/308644"], ["https://data.delijn.be/stops/109791", "https://data.delijn.be/stops/109792"], ["https://data.delijn.be/stops/502582", "https://data.delijn.be/stops/502802"], ["https://data.delijn.be/stops/302724", "https://data.delijn.be/stops/308598"], ["https://data.delijn.be/stops/406171", "https://data.delijn.be/stops/410270"], ["https://data.delijn.be/stops/103108", "https://data.delijn.be/stops/104815"], ["https://data.delijn.be/stops/405363", "https://data.delijn.be/stops/406395"], ["https://data.delijn.be/stops/303017", "https://data.delijn.be/stops/304241"], ["https://data.delijn.be/stops/105069", "https://data.delijn.be/stops/106779"], ["https://data.delijn.be/stops/406214", "https://data.delijn.be/stops/406231"], ["https://data.delijn.be/stops/204290", "https://data.delijn.be/stops/205290"], ["https://data.delijn.be/stops/301313", "https://data.delijn.be/stops/301314"], ["https://data.delijn.be/stops/403008", "https://data.delijn.be/stops/403297"], ["https://data.delijn.be/stops/409547", "https://data.delijn.be/stops/409550"], ["https://data.delijn.be/stops/101677", "https://data.delijn.be/stops/101679"], ["https://data.delijn.be/stops/408624", "https://data.delijn.be/stops/408626"], ["https://data.delijn.be/stops/201166", "https://data.delijn.be/stops/203152"], ["https://data.delijn.be/stops/503914", "https://data.delijn.be/stops/508914"], ["https://data.delijn.be/stops/501048", "https://data.delijn.be/stops/505029"], ["https://data.delijn.be/stops/103760", "https://data.delijn.be/stops/108755"], ["https://data.delijn.be/stops/103767", "https://data.delijn.be/stops/107309"], ["https://data.delijn.be/stops/401092", "https://data.delijn.be/stops/401115"], ["https://data.delijn.be/stops/109996", "https://data.delijn.be/stops/400441"], ["https://data.delijn.be/stops/101036", "https://data.delijn.be/stops/205566"], ["https://data.delijn.be/stops/200765", "https://data.delijn.be/stops/208299"], ["https://data.delijn.be/stops/306395", "https://data.delijn.be/stops/306397"], ["https://data.delijn.be/stops/201851", "https://data.delijn.be/stops/203656"], ["https://data.delijn.be/stops/302189", "https://data.delijn.be/stops/302192"], ["https://data.delijn.be/stops/206807", "https://data.delijn.be/stops/207807"], ["https://data.delijn.be/stops/402112", "https://data.delijn.be/stops/402210"], ["https://data.delijn.be/stops/504988", "https://data.delijn.be/stops/509048"], ["https://data.delijn.be/stops/109056", "https://data.delijn.be/stops/109068"], ["https://data.delijn.be/stops/407008", "https://data.delijn.be/stops/407052"], ["https://data.delijn.be/stops/405916", "https://data.delijn.be/stops/405983"], ["https://data.delijn.be/stops/104332", "https://data.delijn.be/stops/107546"], ["https://data.delijn.be/stops/206179", "https://data.delijn.be/stops/207180"], ["https://data.delijn.be/stops/109251", "https://data.delijn.be/stops/109253"], ["https://data.delijn.be/stops/401378", "https://data.delijn.be/stops/410171"], ["https://data.delijn.be/stops/304116", "https://data.delijn.be/stops/305338"], ["https://data.delijn.be/stops/103671", "https://data.delijn.be/stops/106255"], ["https://data.delijn.be/stops/104041", "https://data.delijn.be/stops/108526"], ["https://data.delijn.be/stops/202278", "https://data.delijn.be/stops/203278"], ["https://data.delijn.be/stops/504295", "https://data.delijn.be/stops/504322"], ["https://data.delijn.be/stops/307303", "https://data.delijn.be/stops/307304"], ["https://data.delijn.be/stops/204249", "https://data.delijn.be/stops/205249"], ["https://data.delijn.be/stops/200745", "https://data.delijn.be/stops/203779"], ["https://data.delijn.be/stops/503699", "https://data.delijn.be/stops/504041"], ["https://data.delijn.be/stops/408341", "https://data.delijn.be/stops/408352"], ["https://data.delijn.be/stops/501500", "https://data.delijn.be/stops/506388"], ["https://data.delijn.be/stops/203087", "https://data.delijn.be/stops/203088"], ["https://data.delijn.be/stops/203280", "https://data.delijn.be/stops/203281"], ["https://data.delijn.be/stops/302272", "https://data.delijn.be/stops/306786"], ["https://data.delijn.be/stops/300629", "https://data.delijn.be/stops/307860"], ["https://data.delijn.be/stops/509725", "https://data.delijn.be/stops/509727"], ["https://data.delijn.be/stops/505131", "https://data.delijn.be/stops/505979"], ["https://data.delijn.be/stops/206066", "https://data.delijn.be/stops/207119"], ["https://data.delijn.be/stops/104003", "https://data.delijn.be/stops/107365"], ["https://data.delijn.be/stops/408711", "https://data.delijn.be/stops/408714"], ["https://data.delijn.be/stops/501046", "https://data.delijn.be/stops/505840"], ["https://data.delijn.be/stops/302499", "https://data.delijn.be/stops/302503"], ["https://data.delijn.be/stops/500137", "https://data.delijn.be/stops/590334"], ["https://data.delijn.be/stops/105196", "https://data.delijn.be/stops/105198"], ["https://data.delijn.be/stops/106394", "https://data.delijn.be/stops/106396"], ["https://data.delijn.be/stops/202600", "https://data.delijn.be/stops/203599"], ["https://data.delijn.be/stops/303562", "https://data.delijn.be/stops/304129"], ["https://data.delijn.be/stops/204982", "https://data.delijn.be/stops/208787"], ["https://data.delijn.be/stops/201208", "https://data.delijn.be/stops/203143"], ["https://data.delijn.be/stops/305717", "https://data.delijn.be/stops/306059"], ["https://data.delijn.be/stops/401255", "https://data.delijn.be/stops/401338"], ["https://data.delijn.be/stops/503252", "https://data.delijn.be/stops/508261"], ["https://data.delijn.be/stops/501069", "https://data.delijn.be/stops/506381"], ["https://data.delijn.be/stops/301658", "https://data.delijn.be/stops/301659"], ["https://data.delijn.be/stops/208163", "https://data.delijn.be/stops/209424"], ["https://data.delijn.be/stops/104771", "https://data.delijn.be/stops/108682"], ["https://data.delijn.be/stops/109181", "https://data.delijn.be/stops/109227"], ["https://data.delijn.be/stops/202861", "https://data.delijn.be/stops/203861"], ["https://data.delijn.be/stops/202333", "https://data.delijn.be/stops/211017"], ["https://data.delijn.be/stops/401409", "https://data.delijn.be/stops/300925"], ["https://data.delijn.be/stops/403375", "https://data.delijn.be/stops/403513"], ["https://data.delijn.be/stops/501208", "https://data.delijn.be/stops/505036"], ["https://data.delijn.be/stops/202723", "https://data.delijn.be/stops/203086"], ["https://data.delijn.be/stops/303410", "https://data.delijn.be/stops/308066"], ["https://data.delijn.be/stops/106253", "https://data.delijn.be/stops/106256"], ["https://data.delijn.be/stops/202735", "https://data.delijn.be/stops/203735"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/203629"], ["https://data.delijn.be/stops/403085", "https://data.delijn.be/stops/403430"], ["https://data.delijn.be/stops/400080", "https://data.delijn.be/stops/405642"], ["https://data.delijn.be/stops/301399", "https://data.delijn.be/stops/301401"], ["https://data.delijn.be/stops/102885", "https://data.delijn.be/stops/102890"], ["https://data.delijn.be/stops/102170", "https://data.delijn.be/stops/103640"], ["https://data.delijn.be/stops/501010", "https://data.delijn.be/stops/502078"], ["https://data.delijn.be/stops/103756", "https://data.delijn.be/stops/104185"], ["https://data.delijn.be/stops/403716", "https://data.delijn.be/stops/403728"], ["https://data.delijn.be/stops/201485", "https://data.delijn.be/stops/209733"], ["https://data.delijn.be/stops/201195", "https://data.delijn.be/stops/201732"], ["https://data.delijn.be/stops/404859", "https://data.delijn.be/stops/404874"], ["https://data.delijn.be/stops/505349", "https://data.delijn.be/stops/505726"], ["https://data.delijn.be/stops/304348", "https://data.delijn.be/stops/304356"], ["https://data.delijn.be/stops/508779", "https://data.delijn.be/stops/508837"], ["https://data.delijn.be/stops/401102", "https://data.delijn.be/stops/401132"], ["https://data.delijn.be/stops/104838", "https://data.delijn.be/stops/104959"], ["https://data.delijn.be/stops/201001", "https://data.delijn.be/stops/202521"], ["https://data.delijn.be/stops/408744", "https://data.delijn.be/stops/408745"], ["https://data.delijn.be/stops/307075", "https://data.delijn.be/stops/308439"], ["https://data.delijn.be/stops/302540", "https://data.delijn.be/stops/302544"], ["https://data.delijn.be/stops/106657", "https://data.delijn.be/stops/106661"], ["https://data.delijn.be/stops/301417", "https://data.delijn.be/stops/301421"], ["https://data.delijn.be/stops/407060", "https://data.delijn.be/stops/407778"], ["https://data.delijn.be/stops/203976", "https://data.delijn.be/stops/203977"], ["https://data.delijn.be/stops/406708", "https://data.delijn.be/stops/407083"], ["https://data.delijn.be/stops/503024", "https://data.delijn.be/stops/508032"], ["https://data.delijn.be/stops/208670", "https://data.delijn.be/stops/209433"], ["https://data.delijn.be/stops/404460", "https://data.delijn.be/stops/404535"], ["https://data.delijn.be/stops/206355", "https://data.delijn.be/stops/206356"], ["https://data.delijn.be/stops/306806", "https://data.delijn.be/stops/307735"], ["https://data.delijn.be/stops/104630", "https://data.delijn.be/stops/105655"], ["https://data.delijn.be/stops/404622", "https://data.delijn.be/stops/404626"], ["https://data.delijn.be/stops/400830", "https://data.delijn.be/stops/403576"], ["https://data.delijn.be/stops/302795", "https://data.delijn.be/stops/307835"], ["https://data.delijn.be/stops/207114", "https://data.delijn.be/stops/207907"], ["https://data.delijn.be/stops/504210", "https://data.delijn.be/stops/504692"], ["https://data.delijn.be/stops/303056", "https://data.delijn.be/stops/304242"], ["https://data.delijn.be/stops/206563", "https://data.delijn.be/stops/207563"], ["https://data.delijn.be/stops/204822", "https://data.delijn.be/stops/205822"], ["https://data.delijn.be/stops/300242", "https://data.delijn.be/stops/304604"], ["https://data.delijn.be/stops/203834", "https://data.delijn.be/stops/208495"], ["https://data.delijn.be/stops/501695", "https://data.delijn.be/stops/502070"], ["https://data.delijn.be/stops/402883", "https://data.delijn.be/stops/402944"], ["https://data.delijn.be/stops/301519", "https://data.delijn.be/stops/305730"], ["https://data.delijn.be/stops/200911", "https://data.delijn.be/stops/202098"], ["https://data.delijn.be/stops/405800", "https://data.delijn.be/stops/405805"], ["https://data.delijn.be/stops/303478", "https://data.delijn.be/stops/303491"], ["https://data.delijn.be/stops/404852", "https://data.delijn.be/stops/404967"], ["https://data.delijn.be/stops/407840", "https://data.delijn.be/stops/407991"], ["https://data.delijn.be/stops/507665", "https://data.delijn.be/stops/507808"], ["https://data.delijn.be/stops/500129", "https://data.delijn.be/stops/502706"], ["https://data.delijn.be/stops/101668", "https://data.delijn.be/stops/107658"], ["https://data.delijn.be/stops/508290", "https://data.delijn.be/stops/509749"], ["https://data.delijn.be/stops/201353", "https://data.delijn.be/stops/201357"], ["https://data.delijn.be/stops/504547", "https://data.delijn.be/stops/504553"], ["https://data.delijn.be/stops/303984", "https://data.delijn.be/stops/304293"], ["https://data.delijn.be/stops/304608", "https://data.delijn.be/stops/304646"], ["https://data.delijn.be/stops/103470", "https://data.delijn.be/stops/103573"], ["https://data.delijn.be/stops/101847", "https://data.delijn.be/stops/101852"], ["https://data.delijn.be/stops/405174", "https://data.delijn.be/stops/405175"], ["https://data.delijn.be/stops/102930", "https://data.delijn.be/stops/105130"], ["https://data.delijn.be/stops/200088", "https://data.delijn.be/stops/201919"], ["https://data.delijn.be/stops/202822", "https://data.delijn.be/stops/202913"], ["https://data.delijn.be/stops/303203", "https://data.delijn.be/stops/303210"], ["https://data.delijn.be/stops/300461", "https://data.delijn.be/stops/302681"], ["https://data.delijn.be/stops/502475", "https://data.delijn.be/stops/507481"], ["https://data.delijn.be/stops/101545", "https://data.delijn.be/stops/104119"], ["https://data.delijn.be/stops/304436", "https://data.delijn.be/stops/307719"], ["https://data.delijn.be/stops/301413", "https://data.delijn.be/stops/301414"], ["https://data.delijn.be/stops/102470", "https://data.delijn.be/stops/104405"], ["https://data.delijn.be/stops/306109", "https://data.delijn.be/stops/306111"], ["https://data.delijn.be/stops/104416", "https://data.delijn.be/stops/205284"], ["https://data.delijn.be/stops/404700", "https://data.delijn.be/stops/404819"], ["https://data.delijn.be/stops/409695", "https://data.delijn.be/stops/409698"], ["https://data.delijn.be/stops/109315", "https://data.delijn.be/stops/109358"], ["https://data.delijn.be/stops/506190", "https://data.delijn.be/stops/506196"], ["https://data.delijn.be/stops/200887", "https://data.delijn.be/stops/201734"], ["https://data.delijn.be/stops/400491", "https://data.delijn.be/stops/400495"], ["https://data.delijn.be/stops/301619", "https://data.delijn.be/stops/304499"], ["https://data.delijn.be/stops/307092", "https://data.delijn.be/stops/308670"], ["https://data.delijn.be/stops/502242", "https://data.delijn.be/stops/507134"], ["https://data.delijn.be/stops/401039", "https://data.delijn.be/stops/401100"], ["https://data.delijn.be/stops/103329", "https://data.delijn.be/stops/109299"], ["https://data.delijn.be/stops/101467", "https://data.delijn.be/stops/101468"], ["https://data.delijn.be/stops/303024", "https://data.delijn.be/stops/303025"], ["https://data.delijn.be/stops/406205", "https://data.delijn.be/stops/410359"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/510007"], ["https://data.delijn.be/stops/407352", "https://data.delijn.be/stops/407353"], ["https://data.delijn.be/stops/306590", "https://data.delijn.be/stops/306591"], ["https://data.delijn.be/stops/302727", "https://data.delijn.be/stops/302728"], ["https://data.delijn.be/stops/107462", "https://data.delijn.be/stops/109200"], ["https://data.delijn.be/stops/301477", "https://data.delijn.be/stops/301485"], ["https://data.delijn.be/stops/206544", "https://data.delijn.be/stops/207544"], ["https://data.delijn.be/stops/405923", "https://data.delijn.be/stops/405924"], ["https://data.delijn.be/stops/301789", "https://data.delijn.be/stops/302529"], ["https://data.delijn.be/stops/204002", "https://data.delijn.be/stops/205064"], ["https://data.delijn.be/stops/302950", "https://data.delijn.be/stops/302976"], ["https://data.delijn.be/stops/503742", "https://data.delijn.be/stops/508742"], ["https://data.delijn.be/stops/300028", "https://data.delijn.be/stops/307441"], ["https://data.delijn.be/stops/402507", "https://data.delijn.be/stops/402512"], ["https://data.delijn.be/stops/502517", "https://data.delijn.be/stops/508800"], ["https://data.delijn.be/stops/104412", "https://data.delijn.be/stops/204335"], ["https://data.delijn.be/stops/205014", "https://data.delijn.be/stops/205669"], ["https://data.delijn.be/stops/210087", "https://data.delijn.be/stops/210088"], ["https://data.delijn.be/stops/206462", "https://data.delijn.be/stops/216010"], ["https://data.delijn.be/stops/103626", "https://data.delijn.be/stops/107169"], ["https://data.delijn.be/stops/202383", "https://data.delijn.be/stops/203383"], ["https://data.delijn.be/stops/105858", "https://data.delijn.be/stops/105859"], ["https://data.delijn.be/stops/504147", "https://data.delijn.be/stops/505710"], ["https://data.delijn.be/stops/400016", "https://data.delijn.be/stops/400199"], ["https://data.delijn.be/stops/206510", "https://data.delijn.be/stops/206511"], ["https://data.delijn.be/stops/105851", "https://data.delijn.be/stops/105852"], ["https://data.delijn.be/stops/501078", "https://data.delijn.be/stops/501081"], ["https://data.delijn.be/stops/201002", "https://data.delijn.be/stops/203655"], ["https://data.delijn.be/stops/503230", "https://data.delijn.be/stops/504841"], ["https://data.delijn.be/stops/504598", "https://data.delijn.be/stops/504600"], ["https://data.delijn.be/stops/405915", "https://data.delijn.be/stops/405916"], ["https://data.delijn.be/stops/101290", "https://data.delijn.be/stops/101291"], ["https://data.delijn.be/stops/208407", "https://data.delijn.be/stops/218013"], ["https://data.delijn.be/stops/201923", "https://data.delijn.be/stops/207406"], ["https://data.delijn.be/stops/203265", "https://data.delijn.be/stops/203266"], ["https://data.delijn.be/stops/200334", "https://data.delijn.be/stops/200347"], ["https://data.delijn.be/stops/302294", "https://data.delijn.be/stops/303506"], ["https://data.delijn.be/stops/403640", "https://data.delijn.be/stops/403644"], ["https://data.delijn.be/stops/405920", "https://data.delijn.be/stops/405934"], ["https://data.delijn.be/stops/503726", "https://data.delijn.be/stops/509965"], ["https://data.delijn.be/stops/101973", "https://data.delijn.be/stops/109706"], ["https://data.delijn.be/stops/102113", "https://data.delijn.be/stops/103119"], ["https://data.delijn.be/stops/307631", "https://data.delijn.be/stops/308272"], ["https://data.delijn.be/stops/208790", "https://data.delijn.be/stops/209399"], ["https://data.delijn.be/stops/206281", "https://data.delijn.be/stops/207281"], ["https://data.delijn.be/stops/406185", "https://data.delijn.be/stops/409505"], ["https://data.delijn.be/stops/502164", "https://data.delijn.be/stops/507164"], ["https://data.delijn.be/stops/208342", "https://data.delijn.be/stops/218028"], ["https://data.delijn.be/stops/104551", "https://data.delijn.be/stops/109731"], ["https://data.delijn.be/stops/209087", "https://data.delijn.be/stops/209154"], ["https://data.delijn.be/stops/407468", "https://data.delijn.be/stops/407469"], ["https://data.delijn.be/stops/301903", "https://data.delijn.be/stops/301904"], ["https://data.delijn.be/stops/301490", "https://data.delijn.be/stops/301507"], ["https://data.delijn.be/stops/502143", "https://data.delijn.be/stops/502151"], ["https://data.delijn.be/stops/203894", "https://data.delijn.be/stops/209287"], ["https://data.delijn.be/stops/300938", "https://data.delijn.be/stops/307792"], ["https://data.delijn.be/stops/302452", "https://data.delijn.be/stops/302453"], ["https://data.delijn.be/stops/205106", "https://data.delijn.be/stops/205757"], ["https://data.delijn.be/stops/104464", "https://data.delijn.be/stops/104467"], ["https://data.delijn.be/stops/101565", "https://data.delijn.be/stops/102375"], ["https://data.delijn.be/stops/305498", "https://data.delijn.be/stops/307989"], ["https://data.delijn.be/stops/501031", "https://data.delijn.be/stops/506031"], ["https://data.delijn.be/stops/507110", "https://data.delijn.be/stops/507136"], ["https://data.delijn.be/stops/201967", "https://data.delijn.be/stops/206796"], ["https://data.delijn.be/stops/400178", "https://data.delijn.be/stops/400295"], ["https://data.delijn.be/stops/402471", "https://data.delijn.be/stops/406868"], ["https://data.delijn.be/stops/502384", "https://data.delijn.be/stops/509794"], ["https://data.delijn.be/stops/301925", "https://data.delijn.be/stops/307827"], ["https://data.delijn.be/stops/505154", "https://data.delijn.be/stops/505328"], ["https://data.delijn.be/stops/106187", "https://data.delijn.be/stops/109860"], ["https://data.delijn.be/stops/208049", "https://data.delijn.be/stops/209048"], ["https://data.delijn.be/stops/206475", "https://data.delijn.be/stops/207508"], ["https://data.delijn.be/stops/509231", "https://data.delijn.be/stops/509233"], ["https://data.delijn.be/stops/407910", "https://data.delijn.be/stops/407912"], ["https://data.delijn.be/stops/105625", "https://data.delijn.be/stops/105910"], ["https://data.delijn.be/stops/307693", "https://data.delijn.be/stops/307695"], ["https://data.delijn.be/stops/208681", "https://data.delijn.be/stops/209664"], ["https://data.delijn.be/stops/303448", "https://data.delijn.be/stops/307281"], ["https://data.delijn.be/stops/400043", "https://data.delijn.be/stops/400307"], ["https://data.delijn.be/stops/106767", "https://data.delijn.be/stops/106768"], ["https://data.delijn.be/stops/108083", "https://data.delijn.be/stops/108450"], ["https://data.delijn.be/stops/105249", "https://data.delijn.be/stops/105841"], ["https://data.delijn.be/stops/502603", "https://data.delijn.be/stops/507601"], ["https://data.delijn.be/stops/200507", "https://data.delijn.be/stops/210133"], ["https://data.delijn.be/stops/407866", "https://data.delijn.be/stops/407867"], ["https://data.delijn.be/stops/301303", "https://data.delijn.be/stops/301306"], ["https://data.delijn.be/stops/202036", "https://data.delijn.be/stops/203985"], ["https://data.delijn.be/stops/406926", "https://data.delijn.be/stops/406969"], ["https://data.delijn.be/stops/401752", "https://data.delijn.be/stops/406333"], ["https://data.delijn.be/stops/407422", "https://data.delijn.be/stops/407423"], ["https://data.delijn.be/stops/106961", "https://data.delijn.be/stops/109722"], ["https://data.delijn.be/stops/200605", "https://data.delijn.be/stops/201604"], ["https://data.delijn.be/stops/505345", "https://data.delijn.be/stops/505833"], ["https://data.delijn.be/stops/502251", "https://data.delijn.be/stops/502253"], ["https://data.delijn.be/stops/105486", "https://data.delijn.be/stops/105496"], ["https://data.delijn.be/stops/410188", "https://data.delijn.be/stops/410246"], ["https://data.delijn.be/stops/502334", "https://data.delijn.be/stops/505338"], ["https://data.delijn.be/stops/305394", "https://data.delijn.be/stops/305402"], ["https://data.delijn.be/stops/109002", "https://data.delijn.be/stops/109004"], ["https://data.delijn.be/stops/401104", "https://data.delijn.be/stops/409220"], ["https://data.delijn.be/stops/208072", "https://data.delijn.be/stops/209073"], ["https://data.delijn.be/stops/300380", "https://data.delijn.be/stops/306156"], ["https://data.delijn.be/stops/202165", "https://data.delijn.be/stops/205071"], ["https://data.delijn.be/stops/502326", "https://data.delijn.be/stops/502338"], ["https://data.delijn.be/stops/308929", "https://data.delijn.be/stops/308930"], ["https://data.delijn.be/stops/207544", "https://data.delijn.be/stops/207545"], ["https://data.delijn.be/stops/103746", "https://data.delijn.be/stops/105793"], ["https://data.delijn.be/stops/504154", "https://data.delijn.be/stops/509154"], ["https://data.delijn.be/stops/410199", "https://data.delijn.be/stops/410262"], ["https://data.delijn.be/stops/300189", "https://data.delijn.be/stops/300190"], ["https://data.delijn.be/stops/502118", "https://data.delijn.be/stops/502619"], ["https://data.delijn.be/stops/510022", "https://data.delijn.be/stops/510025"], ["https://data.delijn.be/stops/307308", "https://data.delijn.be/stops/307334"], ["https://data.delijn.be/stops/506464", "https://data.delijn.be/stops/506479"], ["https://data.delijn.be/stops/201467", "https://data.delijn.be/stops/202211"], ["https://data.delijn.be/stops/205149", "https://data.delijn.be/stops/205154"], ["https://data.delijn.be/stops/107110", "https://data.delijn.be/stops/108815"], ["https://data.delijn.be/stops/503386", "https://data.delijn.be/stops/509790"], ["https://data.delijn.be/stops/204235", "https://data.delijn.be/stops/205597"], ["https://data.delijn.be/stops/102874", "https://data.delijn.be/stops/103749"], ["https://data.delijn.be/stops/302421", "https://data.delijn.be/stops/308814"], ["https://data.delijn.be/stops/203125", "https://data.delijn.be/stops/203600"], ["https://data.delijn.be/stops/300572", "https://data.delijn.be/stops/307864"], ["https://data.delijn.be/stops/302082", "https://data.delijn.be/stops/302083"], ["https://data.delijn.be/stops/200446", "https://data.delijn.be/stops/201027"], ["https://data.delijn.be/stops/307005", "https://data.delijn.be/stops/307006"], ["https://data.delijn.be/stops/106118", "https://data.delijn.be/stops/106119"], ["https://data.delijn.be/stops/301568", "https://data.delijn.be/stops/308080"], ["https://data.delijn.be/stops/302111", "https://data.delijn.be/stops/304140"], ["https://data.delijn.be/stops/503385", "https://data.delijn.be/stops/508410"], ["https://data.delijn.be/stops/305480", "https://data.delijn.be/stops/305481"], ["https://data.delijn.be/stops/305660", "https://data.delijn.be/stops/305670"], ["https://data.delijn.be/stops/402065", "https://data.delijn.be/stops/405555"], ["https://data.delijn.be/stops/503305", "https://data.delijn.be/stops/504859"], ["https://data.delijn.be/stops/105332", "https://data.delijn.be/stops/204029"], ["https://data.delijn.be/stops/404428", "https://data.delijn.be/stops/404485"], ["https://data.delijn.be/stops/303852", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/300263", "https://data.delijn.be/stops/307495"], ["https://data.delijn.be/stops/302104", "https://data.delijn.be/stops/305637"], ["https://data.delijn.be/stops/108326", "https://data.delijn.be/stops/109305"], ["https://data.delijn.be/stops/406425", "https://data.delijn.be/stops/409395"], ["https://data.delijn.be/stops/401220", "https://data.delijn.be/stops/401267"], ["https://data.delijn.be/stops/402100", "https://data.delijn.be/stops/402331"], ["https://data.delijn.be/stops/304880", "https://data.delijn.be/stops/304885"], ["https://data.delijn.be/stops/206564", "https://data.delijn.be/stops/206577"], ["https://data.delijn.be/stops/200781", "https://data.delijn.be/stops/211094"], ["https://data.delijn.be/stops/203957", "https://data.delijn.be/stops/203958"], ["https://data.delijn.be/stops/202678", "https://data.delijn.be/stops/202690"], ["https://data.delijn.be/stops/101943", "https://data.delijn.be/stops/108756"], ["https://data.delijn.be/stops/505163", "https://data.delijn.be/stops/509413"], ["https://data.delijn.be/stops/109256", "https://data.delijn.be/stops/109277"], ["https://data.delijn.be/stops/206441", "https://data.delijn.be/stops/209465"], ["https://data.delijn.be/stops/503767", "https://data.delijn.be/stops/503769"], ["https://data.delijn.be/stops/501445", "https://data.delijn.be/stops/501741"], ["https://data.delijn.be/stops/206591", "https://data.delijn.be/stops/207591"], ["https://data.delijn.be/stops/401987", "https://data.delijn.be/stops/403885"], ["https://data.delijn.be/stops/504697", "https://data.delijn.be/stops/505970"], ["https://data.delijn.be/stops/407911", "https://data.delijn.be/stops/408019"], ["https://data.delijn.be/stops/503482", "https://data.delijn.be/stops/503489"], ["https://data.delijn.be/stops/502171", "https://data.delijn.be/stops/502802"], ["https://data.delijn.be/stops/108211", "https://data.delijn.be/stops/108213"], ["https://data.delijn.be/stops/200473", "https://data.delijn.be/stops/211061"], ["https://data.delijn.be/stops/403598", "https://data.delijn.be/stops/406332"], ["https://data.delijn.be/stops/508330", "https://data.delijn.be/stops/508331"], ["https://data.delijn.be/stops/403280", "https://data.delijn.be/stops/403283"], ["https://data.delijn.be/stops/401035", "https://data.delijn.be/stops/401036"], ["https://data.delijn.be/stops/202311", "https://data.delijn.be/stops/203793"], ["https://data.delijn.be/stops/504342", "https://data.delijn.be/stops/504343"], ["https://data.delijn.be/stops/105006", "https://data.delijn.be/stops/105078"], ["https://data.delijn.be/stops/502562", "https://data.delijn.be/stops/507563"], ["https://data.delijn.be/stops/505148", "https://data.delijn.be/stops/505149"], ["https://data.delijn.be/stops/102597", "https://data.delijn.be/stops/104917"], ["https://data.delijn.be/stops/303562", "https://data.delijn.be/stops/305879"], ["https://data.delijn.be/stops/204646", "https://data.delijn.be/stops/204772"], ["https://data.delijn.be/stops/200811", "https://data.delijn.be/stops/202050"], ["https://data.delijn.be/stops/502446", "https://data.delijn.be/stops/507588"], ["https://data.delijn.be/stops/304370", "https://data.delijn.be/stops/307386"], ["https://data.delijn.be/stops/507261", "https://data.delijn.be/stops/507510"], ["https://data.delijn.be/stops/105471", "https://data.delijn.be/stops/109934"], ["https://data.delijn.be/stops/406975", "https://data.delijn.be/stops/409465"], ["https://data.delijn.be/stops/204783", "https://data.delijn.be/stops/205791"], ["https://data.delijn.be/stops/409654", "https://data.delijn.be/stops/409660"], ["https://data.delijn.be/stops/208628", "https://data.delijn.be/stops/209057"], ["https://data.delijn.be/stops/503185", "https://data.delijn.be/stops/503187"], ["https://data.delijn.be/stops/106243", "https://data.delijn.be/stops/106245"], ["https://data.delijn.be/stops/407859", "https://data.delijn.be/stops/407909"], ["https://data.delijn.be/stops/501229", "https://data.delijn.be/stops/506229"], ["https://data.delijn.be/stops/204707", "https://data.delijn.be/stops/205667"], ["https://data.delijn.be/stops/200681", "https://data.delijn.be/stops/201711"], ["https://data.delijn.be/stops/303306", "https://data.delijn.be/stops/308920"], ["https://data.delijn.be/stops/203878", "https://data.delijn.be/stops/203881"], ["https://data.delijn.be/stops/404457", "https://data.delijn.be/stops/404583"], ["https://data.delijn.be/stops/401783", "https://data.delijn.be/stops/401810"], ["https://data.delijn.be/stops/203448", "https://data.delijn.be/stops/203484"], ["https://data.delijn.be/stops/400242", "https://data.delijn.be/stops/400934"], ["https://data.delijn.be/stops/407497", "https://data.delijn.be/stops/409490"], ["https://data.delijn.be/stops/103631", "https://data.delijn.be/stops/107568"], ["https://data.delijn.be/stops/405392", "https://data.delijn.be/stops/405393"], ["https://data.delijn.be/stops/406478", "https://data.delijn.be/stops/406495"], ["https://data.delijn.be/stops/303980", "https://data.delijn.be/stops/306595"], ["https://data.delijn.be/stops/208000", "https://data.delijn.be/stops/208014"], ["https://data.delijn.be/stops/408844", "https://data.delijn.be/stops/408848"], ["https://data.delijn.be/stops/105911", "https://data.delijn.be/stops/105912"], ["https://data.delijn.be/stops/208371", "https://data.delijn.be/stops/208372"], ["https://data.delijn.be/stops/105887", "https://data.delijn.be/stops/105891"], ["https://data.delijn.be/stops/304011", "https://data.delijn.be/stops/304912"], ["https://data.delijn.be/stops/101404", "https://data.delijn.be/stops/101406"], ["https://data.delijn.be/stops/101025", "https://data.delijn.be/stops/105490"], ["https://data.delijn.be/stops/101188", "https://data.delijn.be/stops/103238"], ["https://data.delijn.be/stops/404522", "https://data.delijn.be/stops/406797"], ["https://data.delijn.be/stops/400313", "https://data.delijn.be/stops/400432"], ["https://data.delijn.be/stops/108919", "https://data.delijn.be/stops/109411"], ["https://data.delijn.be/stops/200087", "https://data.delijn.be/stops/203209"], ["https://data.delijn.be/stops/104366", "https://data.delijn.be/stops/104399"], ["https://data.delijn.be/stops/304931", "https://data.delijn.be/stops/304932"], ["https://data.delijn.be/stops/101507", "https://data.delijn.be/stops/109029"], ["https://data.delijn.be/stops/406002", "https://data.delijn.be/stops/407915"], ["https://data.delijn.be/stops/204238", "https://data.delijn.be/stops/205234"], ["https://data.delijn.be/stops/501070", "https://data.delijn.be/stops/501379"], ["https://data.delijn.be/stops/300077", "https://data.delijn.be/stops/306786"], ["https://data.delijn.be/stops/101703", "https://data.delijn.be/stops/103349"], ["https://data.delijn.be/stops/303183", "https://data.delijn.be/stops/303190"], ["https://data.delijn.be/stops/501197", "https://data.delijn.be/stops/506193"], ["https://data.delijn.be/stops/502429", "https://data.delijn.be/stops/502436"], ["https://data.delijn.be/stops/106110", "https://data.delijn.be/stops/106173"], ["https://data.delijn.be/stops/401753", "https://data.delijn.be/stops/406333"], ["https://data.delijn.be/stops/403613", "https://data.delijn.be/stops/403654"], ["https://data.delijn.be/stops/304956", "https://data.delijn.be/stops/304965"], ["https://data.delijn.be/stops/300347", "https://data.delijn.be/stops/304545"], ["https://data.delijn.be/stops/104993", "https://data.delijn.be/stops/406468"], ["https://data.delijn.be/stops/301873", "https://data.delijn.be/stops/301874"], ["https://data.delijn.be/stops/107956", "https://data.delijn.be/stops/109777"], ["https://data.delijn.be/stops/204721", "https://data.delijn.be/stops/205712"], ["https://data.delijn.be/stops/302035", "https://data.delijn.be/stops/303657"], ["https://data.delijn.be/stops/103222", "https://data.delijn.be/stops/107910"], ["https://data.delijn.be/stops/403427", "https://data.delijn.be/stops/403688"], ["https://data.delijn.be/stops/109124", "https://data.delijn.be/stops/109126"], ["https://data.delijn.be/stops/508042", "https://data.delijn.be/stops/509206"], ["https://data.delijn.be/stops/200162", "https://data.delijn.be/stops/201384"], ["https://data.delijn.be/stops/307705", "https://data.delijn.be/stops/308593"], ["https://data.delijn.be/stops/108353", "https://data.delijn.be/stops/109337"], ["https://data.delijn.be/stops/405922", "https://data.delijn.be/stops/405931"], ["https://data.delijn.be/stops/405083", "https://data.delijn.be/stops/405090"], ["https://data.delijn.be/stops/308147", "https://data.delijn.be/stops/308174"], ["https://data.delijn.be/stops/206627", "https://data.delijn.be/stops/206764"], ["https://data.delijn.be/stops/403276", "https://data.delijn.be/stops/403561"], ["https://data.delijn.be/stops/401961", "https://data.delijn.be/stops/410109"], ["https://data.delijn.be/stops/300503", "https://data.delijn.be/stops/300534"], ["https://data.delijn.be/stops/209258", "https://data.delijn.be/stops/209259"], ["https://data.delijn.be/stops/206994", "https://data.delijn.be/stops/207994"], ["https://data.delijn.be/stops/400122", "https://data.delijn.be/stops/409199"], ["https://data.delijn.be/stops/504388", "https://data.delijn.be/stops/509387"], ["https://data.delijn.be/stops/304760", "https://data.delijn.be/stops/304771"], ["https://data.delijn.be/stops/202023", "https://data.delijn.be/stops/203003"], ["https://data.delijn.be/stops/302438", "https://data.delijn.be/stops/302444"], ["https://data.delijn.be/stops/403257", "https://data.delijn.be/stops/403379"], ["https://data.delijn.be/stops/507689", "https://data.delijn.be/stops/509736"], ["https://data.delijn.be/stops/106771", "https://data.delijn.be/stops/106809"], ["https://data.delijn.be/stops/202012", "https://data.delijn.be/stops/210070"], ["https://data.delijn.be/stops/401219", "https://data.delijn.be/stops/401228"], ["https://data.delijn.be/stops/405128", "https://data.delijn.be/stops/405496"], ["https://data.delijn.be/stops/403730", "https://data.delijn.be/stops/403731"], ["https://data.delijn.be/stops/109507", "https://data.delijn.be/stops/109508"], ["https://data.delijn.be/stops/305142", "https://data.delijn.be/stops/305143"], ["https://data.delijn.be/stops/505084", "https://data.delijn.be/stops/508021"], ["https://data.delijn.be/stops/106789", "https://data.delijn.be/stops/106793"], ["https://data.delijn.be/stops/404165", "https://data.delijn.be/stops/404172"], ["https://data.delijn.be/stops/207801", "https://data.delijn.be/stops/306069"], ["https://data.delijn.be/stops/402477", "https://data.delijn.be/stops/407395"], ["https://data.delijn.be/stops/301724", "https://data.delijn.be/stops/303466"], ["https://data.delijn.be/stops/505580", "https://data.delijn.be/stops/508110"], ["https://data.delijn.be/stops/403621", "https://data.delijn.be/stops/403631"], ["https://data.delijn.be/stops/302716", "https://data.delijn.be/stops/302725"], ["https://data.delijn.be/stops/201690", "https://data.delijn.be/stops/210104"], ["https://data.delijn.be/stops/102646", "https://data.delijn.be/stops/107928"], ["https://data.delijn.be/stops/200259", "https://data.delijn.be/stops/201260"], ["https://data.delijn.be/stops/504285", "https://data.delijn.be/stops/509289"], ["https://data.delijn.be/stops/506410", "https://data.delijn.be/stops/506411"], ["https://data.delijn.be/stops/406212", "https://data.delijn.be/stops/406214"], ["https://data.delijn.be/stops/103135", "https://data.delijn.be/stops/104905"], ["https://data.delijn.be/stops/109801", "https://data.delijn.be/stops/109803"], ["https://data.delijn.be/stops/206655", "https://data.delijn.be/stops/206868"], ["https://data.delijn.be/stops/300920", "https://data.delijn.be/stops/307795"], ["https://data.delijn.be/stops/402243", "https://data.delijn.be/stops/402328"], ["https://data.delijn.be/stops/204481", "https://data.delijn.be/stops/205482"], ["https://data.delijn.be/stops/502660", "https://data.delijn.be/stops/507661"], ["https://data.delijn.be/stops/306118", "https://data.delijn.be/stops/306119"], ["https://data.delijn.be/stops/202583", "https://data.delijn.be/stops/211851"], ["https://data.delijn.be/stops/403858", "https://data.delijn.be/stops/410109"], ["https://data.delijn.be/stops/401179", "https://data.delijn.be/stops/401220"], ["https://data.delijn.be/stops/300725", "https://data.delijn.be/stops/300736"], ["https://data.delijn.be/stops/305344", "https://data.delijn.be/stops/307970"], ["https://data.delijn.be/stops/207665", "https://data.delijn.be/stops/209468"], ["https://data.delijn.be/stops/501212", "https://data.delijn.be/stops/506222"], ["https://data.delijn.be/stops/504882", "https://data.delijn.be/stops/505599"], ["https://data.delijn.be/stops/302382", "https://data.delijn.be/stops/307966"], ["https://data.delijn.be/stops/303735", "https://data.delijn.be/stops/303795"], ["https://data.delijn.be/stops/300275", "https://data.delijn.be/stops/300277"], ["https://data.delijn.be/stops/103082", "https://data.delijn.be/stops/107378"], ["https://data.delijn.be/stops/201886", "https://data.delijn.be/stops/205995"], ["https://data.delijn.be/stops/402698", "https://data.delijn.be/stops/402871"], ["https://data.delijn.be/stops/301713", "https://data.delijn.be/stops/305328"], ["https://data.delijn.be/stops/400800", "https://data.delijn.be/stops/409613"], ["https://data.delijn.be/stops/202098", "https://data.delijn.be/stops/203099"], ["https://data.delijn.be/stops/106801", "https://data.delijn.be/stops/106802"], ["https://data.delijn.be/stops/502711", "https://data.delijn.be/stops/507335"], ["https://data.delijn.be/stops/202745", "https://data.delijn.be/stops/203744"], ["https://data.delijn.be/stops/503602", "https://data.delijn.be/stops/505196"], ["https://data.delijn.be/stops/109440", "https://data.delijn.be/stops/109442"], ["https://data.delijn.be/stops/306392", "https://data.delijn.be/stops/306394"], ["https://data.delijn.be/stops/502350", "https://data.delijn.be/stops/505233"], ["https://data.delijn.be/stops/206773", "https://data.delijn.be/stops/209092"], ["https://data.delijn.be/stops/303616", "https://data.delijn.be/stops/306317"], ["https://data.delijn.be/stops/209601", "https://data.delijn.be/stops/305334"], ["https://data.delijn.be/stops/509116", "https://data.delijn.be/stops/509134"], ["https://data.delijn.be/stops/406735", "https://data.delijn.be/stops/407626"], ["https://data.delijn.be/stops/206946", "https://data.delijn.be/stops/207946"], ["https://data.delijn.be/stops/200598", "https://data.delijn.be/stops/211129"], ["https://data.delijn.be/stops/504943", "https://data.delijn.be/stops/505534"], ["https://data.delijn.be/stops/105103", "https://data.delijn.be/stops/107634"], ["https://data.delijn.be/stops/300124", "https://data.delijn.be/stops/300148"], ["https://data.delijn.be/stops/101601", "https://data.delijn.be/stops/106028"], ["https://data.delijn.be/stops/304030", "https://data.delijn.be/stops/307991"], ["https://data.delijn.be/stops/206369", "https://data.delijn.be/stops/207370"], ["https://data.delijn.be/stops/108475", "https://data.delijn.be/stops/109567"], ["https://data.delijn.be/stops/207555", "https://data.delijn.be/stops/207582"], ["https://data.delijn.be/stops/208771", "https://data.delijn.be/stops/208772"], ["https://data.delijn.be/stops/108851", "https://data.delijn.be/stops/108853"], ["https://data.delijn.be/stops/507484", "https://data.delijn.be/stops/508592"], ["https://data.delijn.be/stops/405304", "https://data.delijn.be/stops/408078"], ["https://data.delijn.be/stops/200957", "https://data.delijn.be/stops/202670"], ["https://data.delijn.be/stops/204239", "https://data.delijn.be/stops/205095"], ["https://data.delijn.be/stops/103281", "https://data.delijn.be/stops/103282"], ["https://data.delijn.be/stops/202297", "https://data.delijn.be/stops/203296"], ["https://data.delijn.be/stops/501694", "https://data.delijn.be/stops/507531"], ["https://data.delijn.be/stops/403302", "https://data.delijn.be/stops/405643"], ["https://data.delijn.be/stops/502405", "https://data.delijn.be/stops/507909"], ["https://data.delijn.be/stops/109090", "https://data.delijn.be/stops/109853"], ["https://data.delijn.be/stops/301393", "https://data.delijn.be/stops/301397"], ["https://data.delijn.be/stops/102864", "https://data.delijn.be/stops/105778"], ["https://data.delijn.be/stops/504665", "https://data.delijn.be/stops/509508"], ["https://data.delijn.be/stops/504531", "https://data.delijn.be/stops/509522"], ["https://data.delijn.be/stops/502034", "https://data.delijn.be/stops/507034"], ["https://data.delijn.be/stops/101706", "https://data.delijn.be/stops/102162"], ["https://data.delijn.be/stops/503989", "https://data.delijn.be/stops/508989"], ["https://data.delijn.be/stops/306914", "https://data.delijn.be/stops/306915"], ["https://data.delijn.be/stops/405335", "https://data.delijn.be/stops/405370"], ["https://data.delijn.be/stops/301305", "https://data.delijn.be/stops/306007"], ["https://data.delijn.be/stops/302705", "https://data.delijn.be/stops/302731"], ["https://data.delijn.be/stops/102991", "https://data.delijn.be/stops/105579"], ["https://data.delijn.be/stops/503419", "https://data.delijn.be/stops/503437"], ["https://data.delijn.be/stops/304561", "https://data.delijn.be/stops/304653"], ["https://data.delijn.be/stops/102448", "https://data.delijn.be/stops/103758"], ["https://data.delijn.be/stops/306182", "https://data.delijn.be/stops/306291"], ["https://data.delijn.be/stops/406834", "https://data.delijn.be/stops/407141"], ["https://data.delijn.be/stops/405879", "https://data.delijn.be/stops/409748"], ["https://data.delijn.be/stops/202604", "https://data.delijn.be/stops/203604"], ["https://data.delijn.be/stops/505828", "https://data.delijn.be/stops/509451"], ["https://data.delijn.be/stops/407744", "https://data.delijn.be/stops/409780"], ["https://data.delijn.be/stops/503999", "https://data.delijn.be/stops/509752"], ["https://data.delijn.be/stops/202755", "https://data.delijn.be/stops/203754"], ["https://data.delijn.be/stops/401248", "https://data.delijn.be/stops/401257"], ["https://data.delijn.be/stops/509122", "https://data.delijn.be/stops/509259"], ["https://data.delijn.be/stops/300669", "https://data.delijn.be/stops/305960"], ["https://data.delijn.be/stops/207241", "https://data.delijn.be/stops/207242"], ["https://data.delijn.be/stops/408244", "https://data.delijn.be/stops/308199"], ["https://data.delijn.be/stops/402017", "https://data.delijn.be/stops/402977"], ["https://data.delijn.be/stops/304019", "https://data.delijn.be/stops/308529"], ["https://data.delijn.be/stops/201288", "https://data.delijn.be/stops/201377"], ["https://data.delijn.be/stops/401477", "https://data.delijn.be/stops/410305"], ["https://data.delijn.be/stops/106089", "https://data.delijn.be/stops/106091"], ["https://data.delijn.be/stops/105504", "https://data.delijn.be/stops/105507"], ["https://data.delijn.be/stops/203858", "https://data.delijn.be/stops/208714"], ["https://data.delijn.be/stops/106064", "https://data.delijn.be/stops/106067"], ["https://data.delijn.be/stops/107334", "https://data.delijn.be/stops/107337"], ["https://data.delijn.be/stops/208211", "https://data.delijn.be/stops/208792"], ["https://data.delijn.be/stops/408896", "https://data.delijn.be/stops/408910"], ["https://data.delijn.be/stops/105297", "https://data.delijn.be/stops/109970"], ["https://data.delijn.be/stops/410053", "https://data.delijn.be/stops/410054"], ["https://data.delijn.be/stops/406767", "https://data.delijn.be/stops/410264"], ["https://data.delijn.be/stops/303148", "https://data.delijn.be/stops/304909"], ["https://data.delijn.be/stops/502121", "https://data.delijn.be/stops/507121"], ["https://data.delijn.be/stops/200967", "https://data.delijn.be/stops/204930"], ["https://data.delijn.be/stops/102473", "https://data.delijn.be/stops/405253"], ["https://data.delijn.be/stops/102192", "https://data.delijn.be/stops/105354"], ["https://data.delijn.be/stops/201895", "https://data.delijn.be/stops/202849"], ["https://data.delijn.be/stops/402653", "https://data.delijn.be/stops/405655"], ["https://data.delijn.be/stops/303066", "https://data.delijn.be/stops/303067"], ["https://data.delijn.be/stops/101760", "https://data.delijn.be/stops/103491"], ["https://data.delijn.be/stops/106761", "https://data.delijn.be/stops/107514"], ["https://data.delijn.be/stops/203558", "https://data.delijn.be/stops/203608"], ["https://data.delijn.be/stops/503315", "https://data.delijn.be/stops/505826"], ["https://data.delijn.be/stops/406310", "https://data.delijn.be/stops/406311"], ["https://data.delijn.be/stops/103201", "https://data.delijn.be/stops/108673"], ["https://data.delijn.be/stops/205615", "https://data.delijn.be/stops/205680"], ["https://data.delijn.be/stops/508426", "https://data.delijn.be/stops/508446"], ["https://data.delijn.be/stops/303087", "https://data.delijn.be/stops/308655"], ["https://data.delijn.be/stops/200906", "https://data.delijn.be/stops/200932"], ["https://data.delijn.be/stops/405155", "https://data.delijn.be/stops/405252"], ["https://data.delijn.be/stops/301698", "https://data.delijn.be/stops/301742"], ["https://data.delijn.be/stops/305146", "https://data.delijn.be/stops/305187"], ["https://data.delijn.be/stops/501413", "https://data.delijn.be/stops/506410"], ["https://data.delijn.be/stops/204198", "https://data.delijn.be/stops/205198"], ["https://data.delijn.be/stops/300763", "https://data.delijn.be/stops/300764"], ["https://data.delijn.be/stops/505269", "https://data.delijn.be/stops/508595"], ["https://data.delijn.be/stops/102182", "https://data.delijn.be/stops/103041"], ["https://data.delijn.be/stops/102308", "https://data.delijn.be/stops/105658"], ["https://data.delijn.be/stops/301626", "https://data.delijn.be/stops/301629"], ["https://data.delijn.be/stops/400645", "https://data.delijn.be/stops/400904"], ["https://data.delijn.be/stops/505794", "https://data.delijn.be/stops/509369"], ["https://data.delijn.be/stops/306918", "https://data.delijn.be/stops/306919"], ["https://data.delijn.be/stops/502500", "https://data.delijn.be/stops/507636"], ["https://data.delijn.be/stops/400576", "https://data.delijn.be/stops/400577"], ["https://data.delijn.be/stops/503673", "https://data.delijn.be/stops/508673"], ["https://data.delijn.be/stops/202550", "https://data.delijn.be/stops/203552"], ["https://data.delijn.be/stops/403595", "https://data.delijn.be/stops/409659"], ["https://data.delijn.be/stops/204644", "https://data.delijn.be/stops/205645"], ["https://data.delijn.be/stops/503595", "https://data.delijn.be/stops/505269"], ["https://data.delijn.be/stops/304401", "https://data.delijn.be/stops/307417"], ["https://data.delijn.be/stops/206597", "https://data.delijn.be/stops/209665"], ["https://data.delijn.be/stops/305588", "https://data.delijn.be/stops/307514"], ["https://data.delijn.be/stops/506760", "https://data.delijn.be/stops/509932"], ["https://data.delijn.be/stops/503453", "https://data.delijn.be/stops/504809"], ["https://data.delijn.be/stops/503840", "https://data.delijn.be/stops/503860"], ["https://data.delijn.be/stops/401801", "https://data.delijn.be/stops/401817"], ["https://data.delijn.be/stops/407629", "https://data.delijn.be/stops/409786"], ["https://data.delijn.be/stops/101388", "https://data.delijn.be/stops/107106"], ["https://data.delijn.be/stops/102612", "https://data.delijn.be/stops/102632"], ["https://data.delijn.be/stops/501415", "https://data.delijn.be/stops/506475"], ["https://data.delijn.be/stops/403058", "https://data.delijn.be/stops/403582"], ["https://data.delijn.be/stops/308151", "https://data.delijn.be/stops/308164"], ["https://data.delijn.be/stops/503479", "https://data.delijn.be/stops/504391"], ["https://data.delijn.be/stops/508867", "https://data.delijn.be/stops/508871"], ["https://data.delijn.be/stops/503313", "https://data.delijn.be/stops/508313"], ["https://data.delijn.be/stops/204540", "https://data.delijn.be/stops/205299"], ["https://data.delijn.be/stops/204260", "https://data.delijn.be/stops/204465"], ["https://data.delijn.be/stops/205180", "https://data.delijn.be/stops/205217"], ["https://data.delijn.be/stops/501224", "https://data.delijn.be/stops/505234"], ["https://data.delijn.be/stops/306606", "https://data.delijn.be/stops/306608"], ["https://data.delijn.be/stops/102912", "https://data.delijn.be/stops/106707"], ["https://data.delijn.be/stops/101593", "https://data.delijn.be/stops/103279"], ["https://data.delijn.be/stops/504097", "https://data.delijn.be/stops/505190"], ["https://data.delijn.be/stops/202120", "https://data.delijn.be/stops/205072"], ["https://data.delijn.be/stops/505144", "https://data.delijn.be/stops/509931"], ["https://data.delijn.be/stops/505971", "https://data.delijn.be/stops/509604"], ["https://data.delijn.be/stops/209143", "https://data.delijn.be/stops/218030"], ["https://data.delijn.be/stops/206686", "https://data.delijn.be/stops/207355"], ["https://data.delijn.be/stops/206491", "https://data.delijn.be/stops/207491"], ["https://data.delijn.be/stops/200738", "https://data.delijn.be/stops/202598"], ["https://data.delijn.be/stops/402817", "https://data.delijn.be/stops/402819"], ["https://data.delijn.be/stops/504466", "https://data.delijn.be/stops/505855"], ["https://data.delijn.be/stops/202310", "https://data.delijn.be/stops/203754"], ["https://data.delijn.be/stops/305253", "https://data.delijn.be/stops/305320"], ["https://data.delijn.be/stops/505410", "https://data.delijn.be/stops/509813"], ["https://data.delijn.be/stops/108953", "https://data.delijn.be/stops/108956"], ["https://data.delijn.be/stops/300886", "https://data.delijn.be/stops/300887"], ["https://data.delijn.be/stops/508480", "https://data.delijn.be/stops/509046"], ["https://data.delijn.be/stops/408766", "https://data.delijn.be/stops/408767"], ["https://data.delijn.be/stops/501090", "https://data.delijn.be/stops/501098"], ["https://data.delijn.be/stops/503463", "https://data.delijn.be/stops/508455"], ["https://data.delijn.be/stops/507092", "https://data.delijn.be/stops/507126"], ["https://data.delijn.be/stops/104839", "https://data.delijn.be/stops/109457"], ["https://data.delijn.be/stops/409249", "https://data.delijn.be/stops/409778"], ["https://data.delijn.be/stops/205312", "https://data.delijn.be/stops/205354"], ["https://data.delijn.be/stops/104992", "https://data.delijn.be/stops/104993"], ["https://data.delijn.be/stops/205672", "https://data.delijn.be/stops/205673"], ["https://data.delijn.be/stops/500929", "https://data.delijn.be/stops/500930"], ["https://data.delijn.be/stops/402204", "https://data.delijn.be/stops/402333"], ["https://data.delijn.be/stops/500118", "https://data.delijn.be/stops/505671"], ["https://data.delijn.be/stops/208050", "https://data.delijn.be/stops/209050"], ["https://data.delijn.be/stops/103574", "https://data.delijn.be/stops/109650"], ["https://data.delijn.be/stops/103076", "https://data.delijn.be/stops/109523"], ["https://data.delijn.be/stops/106989", "https://data.delijn.be/stops/109664"], ["https://data.delijn.be/stops/206478", "https://data.delijn.be/stops/207448"], ["https://data.delijn.be/stops/205024", "https://data.delijn.be/stops/205025"], ["https://data.delijn.be/stops/300452", "https://data.delijn.be/stops/306288"], ["https://data.delijn.be/stops/207408", "https://data.delijn.be/stops/210009"], ["https://data.delijn.be/stops/302682", "https://data.delijn.be/stops/306183"], ["https://data.delijn.be/stops/208047", "https://data.delijn.be/stops/209489"], ["https://data.delijn.be/stops/405034", "https://data.delijn.be/stops/405035"], ["https://data.delijn.be/stops/504399", "https://data.delijn.be/stops/509415"], ["https://data.delijn.be/stops/107058", "https://data.delijn.be/stops/107060"], ["https://data.delijn.be/stops/504244", "https://data.delijn.be/stops/509398"], ["https://data.delijn.be/stops/304676", "https://data.delijn.be/stops/304677"], ["https://data.delijn.be/stops/303773", "https://data.delijn.be/stops/303774"], ["https://data.delijn.be/stops/214004", "https://data.delijn.be/stops/214005"], ["https://data.delijn.be/stops/502814", "https://data.delijn.be/stops/505955"], ["https://data.delijn.be/stops/501744", "https://data.delijn.be/stops/504124"], ["https://data.delijn.be/stops/301612", "https://data.delijn.be/stops/301617"], ["https://data.delijn.be/stops/101063", "https://data.delijn.be/stops/106008"], ["https://data.delijn.be/stops/104105", "https://data.delijn.be/stops/104590"], ["https://data.delijn.be/stops/503733", "https://data.delijn.be/stops/508732"], ["https://data.delijn.be/stops/402780", "https://data.delijn.be/stops/404042"], ["https://data.delijn.be/stops/104934", "https://data.delijn.be/stops/107843"], ["https://data.delijn.be/stops/205144", "https://data.delijn.be/stops/207632"], ["https://data.delijn.be/stops/504850", "https://data.delijn.be/stops/509948"], ["https://data.delijn.be/stops/501466", "https://data.delijn.be/stops/501471"], ["https://data.delijn.be/stops/306848", "https://data.delijn.be/stops/306858"], ["https://data.delijn.be/stops/101012", "https://data.delijn.be/stops/109771"], ["https://data.delijn.be/stops/102136", "https://data.delijn.be/stops/109162"], ["https://data.delijn.be/stops/502447", "https://data.delijn.be/stops/502464"], ["https://data.delijn.be/stops/505684", "https://data.delijn.be/stops/507306"], ["https://data.delijn.be/stops/210854", "https://data.delijn.be/stops/211854"], ["https://data.delijn.be/stops/206165", "https://data.delijn.be/stops/303400"], ["https://data.delijn.be/stops/503121", "https://data.delijn.be/stops/508115"], ["https://data.delijn.be/stops/300163", "https://data.delijn.be/stops/300221"], ["https://data.delijn.be/stops/502518", "https://data.delijn.be/stops/507522"], ["https://data.delijn.be/stops/108955", "https://data.delijn.be/stops/109880"], ["https://data.delijn.be/stops/300421", "https://data.delijn.be/stops/300440"], ["https://data.delijn.be/stops/404152", "https://data.delijn.be/stops/404160"], ["https://data.delijn.be/stops/502251", "https://data.delijn.be/stops/507252"], ["https://data.delijn.be/stops/406939", "https://data.delijn.be/stops/407403"], ["https://data.delijn.be/stops/505245", "https://data.delijn.be/stops/505734"], ["https://data.delijn.be/stops/208718", "https://data.delijn.be/stops/209718"], ["https://data.delijn.be/stops/402935", "https://data.delijn.be/stops/403965"], ["https://data.delijn.be/stops/107044", "https://data.delijn.be/stops/108237"], ["https://data.delijn.be/stops/304804", "https://data.delijn.be/stops/307883"], ["https://data.delijn.be/stops/303411", "https://data.delijn.be/stops/303416"], ["https://data.delijn.be/stops/101586", "https://data.delijn.be/stops/107305"], ["https://data.delijn.be/stops/500563", "https://data.delijn.be/stops/501029"], ["https://data.delijn.be/stops/301813", "https://data.delijn.be/stops/305544"], ["https://data.delijn.be/stops/409417", "https://data.delijn.be/stops/409419"], ["https://data.delijn.be/stops/102549", "https://data.delijn.be/stops/102551"], ["https://data.delijn.be/stops/401837", "https://data.delijn.be/stops/401841"], ["https://data.delijn.be/stops/304817", "https://data.delijn.be/stops/304818"], ["https://data.delijn.be/stops/501577", "https://data.delijn.be/stops/508835"], ["https://data.delijn.be/stops/508072", "https://data.delijn.be/stops/508525"], ["https://data.delijn.be/stops/400689", "https://data.delijn.be/stops/400802"], ["https://data.delijn.be/stops/502428", "https://data.delijn.be/stops/507696"], ["https://data.delijn.be/stops/200330", "https://data.delijn.be/stops/202204"], ["https://data.delijn.be/stops/202243", "https://data.delijn.be/stops/202485"], ["https://data.delijn.be/stops/300958", "https://data.delijn.be/stops/300962"], ["https://data.delijn.be/stops/206968", "https://data.delijn.be/stops/209723"], ["https://data.delijn.be/stops/101900", "https://data.delijn.be/stops/103209"], ["https://data.delijn.be/stops/206720", "https://data.delijn.be/stops/206735"], ["https://data.delijn.be/stops/206681", "https://data.delijn.be/stops/207625"], ["https://data.delijn.be/stops/307130", "https://data.delijn.be/stops/307131"], ["https://data.delijn.be/stops/106213", "https://data.delijn.be/stops/106214"], ["https://data.delijn.be/stops/107696", "https://data.delijn.be/stops/107697"], ["https://data.delijn.be/stops/504995", "https://data.delijn.be/stops/505962"], ["https://data.delijn.be/stops/503043", "https://data.delijn.be/stops/508041"], ["https://data.delijn.be/stops/301593", "https://data.delijn.be/stops/306958"], ["https://data.delijn.be/stops/400689", "https://data.delijn.be/stops/406816"], ["https://data.delijn.be/stops/300179", "https://data.delijn.be/stops/306743"], ["https://data.delijn.be/stops/102613", "https://data.delijn.be/stops/102614"], ["https://data.delijn.be/stops/400069", "https://data.delijn.be/stops/400081"], ["https://data.delijn.be/stops/407815", "https://data.delijn.be/stops/408042"], ["https://data.delijn.be/stops/101509", "https://data.delijn.be/stops/109076"], ["https://data.delijn.be/stops/509042", "https://data.delijn.be/stops/509046"], ["https://data.delijn.be/stops/303434", "https://data.delijn.be/stops/304960"], ["https://data.delijn.be/stops/408328", "https://data.delijn.be/stops/408337"], ["https://data.delijn.be/stops/101255", "https://data.delijn.be/stops/102816"], ["https://data.delijn.be/stops/204250", "https://data.delijn.be/stops/205095"], ["https://data.delijn.be/stops/203225", "https://data.delijn.be/stops/203245"], ["https://data.delijn.be/stops/200164", "https://data.delijn.be/stops/200337"], ["https://data.delijn.be/stops/505827", "https://data.delijn.be/stops/505828"], ["https://data.delijn.be/stops/107361", "https://data.delijn.be/stops/107362"], ["https://data.delijn.be/stops/101816", "https://data.delijn.be/stops/107833"], ["https://data.delijn.be/stops/503261", "https://data.delijn.be/stops/509766"], ["https://data.delijn.be/stops/300371", "https://data.delijn.be/stops/300372"], ["https://data.delijn.be/stops/406156", "https://data.delijn.be/stops/406274"], ["https://data.delijn.be/stops/201699", "https://data.delijn.be/stops/202771"], ["https://data.delijn.be/stops/402087", "https://data.delijn.be/stops/402216"], ["https://data.delijn.be/stops/303412", "https://data.delijn.be/stops/303422"], ["https://data.delijn.be/stops/208052", "https://data.delijn.be/stops/209051"], ["https://data.delijn.be/stops/206092", "https://data.delijn.be/stops/207091"], ["https://data.delijn.be/stops/405131", "https://data.delijn.be/stops/406725"], ["https://data.delijn.be/stops/301510", "https://data.delijn.be/stops/308740"], ["https://data.delijn.be/stops/206576", "https://data.delijn.be/stops/207563"], ["https://data.delijn.be/stops/201698", "https://data.delijn.be/stops/202446"], ["https://data.delijn.be/stops/105329", "https://data.delijn.be/stops/105332"], ["https://data.delijn.be/stops/408233", "https://data.delijn.be/stops/408241"], ["https://data.delijn.be/stops/408520", "https://data.delijn.be/stops/408873"], ["https://data.delijn.be/stops/400368", "https://data.delijn.be/stops/400387"], ["https://data.delijn.be/stops/407708", "https://data.delijn.be/stops/407769"], ["https://data.delijn.be/stops/303889", "https://data.delijn.be/stops/306055"], ["https://data.delijn.be/stops/101812", "https://data.delijn.be/stops/104132"], ["https://data.delijn.be/stops/101047", "https://data.delijn.be/stops/102011"], ["https://data.delijn.be/stops/503470", "https://data.delijn.be/stops/504797"], ["https://data.delijn.be/stops/103122", "https://data.delijn.be/stops/104399"], ["https://data.delijn.be/stops/305642", "https://data.delijn.be/stops/308131"], ["https://data.delijn.be/stops/106708", "https://data.delijn.be/stops/106710"], ["https://data.delijn.be/stops/208625", "https://data.delijn.be/stops/209616"], ["https://data.delijn.be/stops/402750", "https://data.delijn.be/stops/406473"], ["https://data.delijn.be/stops/202059", "https://data.delijn.be/stops/210075"], ["https://data.delijn.be/stops/504527", "https://data.delijn.be/stops/504528"], ["https://data.delijn.be/stops/302394", "https://data.delijn.be/stops/302397"], ["https://data.delijn.be/stops/200885", "https://data.delijn.be/stops/203074"], ["https://data.delijn.be/stops/509776", "https://data.delijn.be/stops/509777"], ["https://data.delijn.be/stops/106884", "https://data.delijn.be/stops/106885"], ["https://data.delijn.be/stops/207044", "https://data.delijn.be/stops/207215"], ["https://data.delijn.be/stops/507211", "https://data.delijn.be/stops/507216"], ["https://data.delijn.be/stops/502445", "https://data.delijn.be/stops/507445"], ["https://data.delijn.be/stops/404984", "https://data.delijn.be/stops/404987"], ["https://data.delijn.be/stops/504853", "https://data.delijn.be/stops/505143"], ["https://data.delijn.be/stops/409068", "https://data.delijn.be/stops/409081"], ["https://data.delijn.be/stops/502373", "https://data.delijn.be/stops/502520"], ["https://data.delijn.be/stops/102240", "https://data.delijn.be/stops/102919"], ["https://data.delijn.be/stops/207331", "https://data.delijn.be/stops/207732"], ["https://data.delijn.be/stops/502232", "https://data.delijn.be/stops/502699"], ["https://data.delijn.be/stops/300651", "https://data.delijn.be/stops/300657"], ["https://data.delijn.be/stops/501503", "https://data.delijn.be/stops/506108"], ["https://data.delijn.be/stops/305447", "https://data.delijn.be/stops/307322"], ["https://data.delijn.be/stops/302788", "https://data.delijn.be/stops/302789"], ["https://data.delijn.be/stops/307369", "https://data.delijn.be/stops/307370"], ["https://data.delijn.be/stops/501165", "https://data.delijn.be/stops/506157"], ["https://data.delijn.be/stops/504976", "https://data.delijn.be/stops/509640"], ["https://data.delijn.be/stops/300858", "https://data.delijn.be/stops/305512"], ["https://data.delijn.be/stops/108790", "https://data.delijn.be/stops/108791"], ["https://data.delijn.be/stops/104940", "https://data.delijn.be/stops/104945"], ["https://data.delijn.be/stops/208192", "https://data.delijn.be/stops/208761"], ["https://data.delijn.be/stops/400204", "https://data.delijn.be/stops/400238"], ["https://data.delijn.be/stops/400775", "https://data.delijn.be/stops/400873"], ["https://data.delijn.be/stops/403978", "https://data.delijn.be/stops/406007"], ["https://data.delijn.be/stops/403297", "https://data.delijn.be/stops/403441"], ["https://data.delijn.be/stops/501438", "https://data.delijn.be/stops/506100"], ["https://data.delijn.be/stops/402350", "https://data.delijn.be/stops/402364"], ["https://data.delijn.be/stops/408505", "https://data.delijn.be/stops/408564"], ["https://data.delijn.be/stops/200636", "https://data.delijn.be/stops/201636"], ["https://data.delijn.be/stops/305083", "https://data.delijn.be/stops/306959"], ["https://data.delijn.be/stops/302963", "https://data.delijn.be/stops/303200"], ["https://data.delijn.be/stops/103393", "https://data.delijn.be/stops/108005"], ["https://data.delijn.be/stops/106944", "https://data.delijn.be/stops/106945"], ["https://data.delijn.be/stops/206883", "https://data.delijn.be/stops/207738"], ["https://data.delijn.be/stops/208460", "https://data.delijn.be/stops/209460"], ["https://data.delijn.be/stops/203182", "https://data.delijn.be/stops/204201"], ["https://data.delijn.be/stops/206532", "https://data.delijn.be/stops/207530"], ["https://data.delijn.be/stops/200707", "https://data.delijn.be/stops/202436"], ["https://data.delijn.be/stops/403714", "https://data.delijn.be/stops/403715"], ["https://data.delijn.be/stops/307839", "https://data.delijn.be/stops/307840"], ["https://data.delijn.be/stops/201400", "https://data.delijn.be/stops/202363"], ["https://data.delijn.be/stops/307509", "https://data.delijn.be/stops/307816"], ["https://data.delijn.be/stops/404213", "https://data.delijn.be/stops/409813"], ["https://data.delijn.be/stops/206026", "https://data.delijn.be/stops/207902"], ["https://data.delijn.be/stops/101796", "https://data.delijn.be/stops/104551"], ["https://data.delijn.be/stops/101823", "https://data.delijn.be/stops/103137"], ["https://data.delijn.be/stops/505232", "https://data.delijn.be/stops/507227"], ["https://data.delijn.be/stops/405059", "https://data.delijn.be/stops/405063"], ["https://data.delijn.be/stops/502233", "https://data.delijn.be/stops/505233"], ["https://data.delijn.be/stops/102007", "https://data.delijn.be/stops/205265"], ["https://data.delijn.be/stops/402463", "https://data.delijn.be/stops/402464"], ["https://data.delijn.be/stops/106419", "https://data.delijn.be/stops/106420"], ["https://data.delijn.be/stops/101419", "https://data.delijn.be/stops/101425"], ["https://data.delijn.be/stops/503922", "https://data.delijn.be/stops/508929"], ["https://data.delijn.be/stops/205981", "https://data.delijn.be/stops/208683"], ["https://data.delijn.be/stops/206414", "https://data.delijn.be/stops/207411"], ["https://data.delijn.be/stops/208676", "https://data.delijn.be/stops/209442"], ["https://data.delijn.be/stops/503158", "https://data.delijn.be/stops/507684"], ["https://data.delijn.be/stops/301690", "https://data.delijn.be/stops/302387"], ["https://data.delijn.be/stops/201935", "https://data.delijn.be/stops/202956"], ["https://data.delijn.be/stops/401650", "https://data.delijn.be/stops/405129"], ["https://data.delijn.be/stops/208133", "https://data.delijn.be/stops/209133"], ["https://data.delijn.be/stops/108469", "https://data.delijn.be/stops/305989"], ["https://data.delijn.be/stops/405546", "https://data.delijn.be/stops/406886"], ["https://data.delijn.be/stops/508256", "https://data.delijn.be/stops/509764"], ["https://data.delijn.be/stops/106258", "https://data.delijn.be/stops/106260"], ["https://data.delijn.be/stops/304946", "https://data.delijn.be/stops/304991"], ["https://data.delijn.be/stops/201939", "https://data.delijn.be/stops/207966"], ["https://data.delijn.be/stops/109147", "https://data.delijn.be/stops/109151"], ["https://data.delijn.be/stops/502540", "https://data.delijn.be/stops/507171"], ["https://data.delijn.be/stops/202599", "https://data.delijn.be/stops/203600"], ["https://data.delijn.be/stops/505775", "https://data.delijn.be/stops/505777"], ["https://data.delijn.be/stops/102611", "https://data.delijn.be/stops/105528"], ["https://data.delijn.be/stops/201493", "https://data.delijn.be/stops/202295"], ["https://data.delijn.be/stops/407606", "https://data.delijn.be/stops/407607"], ["https://data.delijn.be/stops/404016", "https://data.delijn.be/stops/404432"], ["https://data.delijn.be/stops/305167", "https://data.delijn.be/stops/306964"], ["https://data.delijn.be/stops/202220", "https://data.delijn.be/stops/205076"], ["https://data.delijn.be/stops/501546", "https://data.delijn.be/stops/506546"], ["https://data.delijn.be/stops/509361", "https://data.delijn.be/stops/509365"], ["https://data.delijn.be/stops/504976", "https://data.delijn.be/stops/509134"], ["https://data.delijn.be/stops/300728", "https://data.delijn.be/stops/307058"], ["https://data.delijn.be/stops/302711", "https://data.delijn.be/stops/308861"], ["https://data.delijn.be/stops/209393", "https://data.delijn.be/stops/209394"], ["https://data.delijn.be/stops/101380", "https://data.delijn.be/stops/102894"], ["https://data.delijn.be/stops/502222", "https://data.delijn.be/stops/502223"], ["https://data.delijn.be/stops/204471", "https://data.delijn.be/stops/204777"], ["https://data.delijn.be/stops/507513", "https://data.delijn.be/stops/507619"], ["https://data.delijn.be/stops/305090", "https://data.delijn.be/stops/305093"], ["https://data.delijn.be/stops/406461", "https://data.delijn.be/stops/408798"], ["https://data.delijn.be/stops/304766", "https://data.delijn.be/stops/304768"], ["https://data.delijn.be/stops/501742", "https://data.delijn.be/stops/504505"], ["https://data.delijn.be/stops/102474", "https://data.delijn.be/stops/400296"], ["https://data.delijn.be/stops/208356", "https://data.delijn.be/stops/208357"], ["https://data.delijn.be/stops/108744", "https://data.delijn.be/stops/108746"], ["https://data.delijn.be/stops/105628", "https://data.delijn.be/stops/107169"], ["https://data.delijn.be/stops/409265", "https://data.delijn.be/stops/409284"], ["https://data.delijn.be/stops/402384", "https://data.delijn.be/stops/402390"], ["https://data.delijn.be/stops/308456", "https://data.delijn.be/stops/308457"], ["https://data.delijn.be/stops/204249", "https://data.delijn.be/stops/204786"], ["https://data.delijn.be/stops/306224", "https://data.delijn.be/stops/306416"], ["https://data.delijn.be/stops/400031", "https://data.delijn.be/stops/400032"], ["https://data.delijn.be/stops/508656", "https://data.delijn.be/stops/508659"], ["https://data.delijn.be/stops/304423", "https://data.delijn.be/stops/307398"], ["https://data.delijn.be/stops/407594", "https://data.delijn.be/stops/409803"], ["https://data.delijn.be/stops/405958", "https://data.delijn.be/stops/308154"], ["https://data.delijn.be/stops/203611", "https://data.delijn.be/stops/203613"], ["https://data.delijn.be/stops/108147", "https://data.delijn.be/stops/108149"], ["https://data.delijn.be/stops/104794", "https://data.delijn.be/stops/106969"], ["https://data.delijn.be/stops/207116", "https://data.delijn.be/stops/207810"], ["https://data.delijn.be/stops/103124", "https://data.delijn.be/stops/107703"], ["https://data.delijn.be/stops/502461", "https://data.delijn.be/stops/507452"], ["https://data.delijn.be/stops/105657", "https://data.delijn.be/stops/105659"], ["https://data.delijn.be/stops/203347", "https://data.delijn.be/stops/209710"], ["https://data.delijn.be/stops/107398", "https://data.delijn.be/stops/107401"], ["https://data.delijn.be/stops/106111", "https://data.delijn.be/stops/109085"], ["https://data.delijn.be/stops/107014", "https://data.delijn.be/stops/107112"], ["https://data.delijn.be/stops/204980", "https://data.delijn.be/stops/207723"], ["https://data.delijn.be/stops/102746", "https://data.delijn.be/stops/106414"], ["https://data.delijn.be/stops/204739", "https://data.delijn.be/stops/205740"], ["https://data.delijn.be/stops/104824", "https://data.delijn.be/stops/109535"], ["https://data.delijn.be/stops/402829", "https://data.delijn.be/stops/402888"], ["https://data.delijn.be/stops/201266", "https://data.delijn.be/stops/203543"], ["https://data.delijn.be/stops/505073", "https://data.delijn.be/stops/508769"], ["https://data.delijn.be/stops/101010", "https://data.delijn.be/stops/105870"], ["https://data.delijn.be/stops/400862", "https://data.delijn.be/stops/400865"], ["https://data.delijn.be/stops/502077", "https://data.delijn.be/stops/507076"], ["https://data.delijn.be/stops/502324", "https://data.delijn.be/stops/507333"], ["https://data.delijn.be/stops/102543", "https://data.delijn.be/stops/405101"], ["https://data.delijn.be/stops/200465", "https://data.delijn.be/stops/210082"], ["https://data.delijn.be/stops/104948", "https://data.delijn.be/stops/109787"], ["https://data.delijn.be/stops/507237", "https://data.delijn.be/stops/507254"], ["https://data.delijn.be/stops/302823", "https://data.delijn.be/stops/304072"], ["https://data.delijn.be/stops/405570", "https://data.delijn.be/stops/405578"], ["https://data.delijn.be/stops/509069", "https://data.delijn.be/stops/509520"], ["https://data.delijn.be/stops/305714", "https://data.delijn.be/stops/306305"], ["https://data.delijn.be/stops/107885", "https://data.delijn.be/stops/107920"], ["https://data.delijn.be/stops/204412", "https://data.delijn.be/stops/205441"], ["https://data.delijn.be/stops/200704", "https://data.delijn.be/stops/202576"], ["https://data.delijn.be/stops/400043", "https://data.delijn.be/stops/400045"], ["https://data.delijn.be/stops/105427", "https://data.delijn.be/stops/105432"], ["https://data.delijn.be/stops/403886", "https://data.delijn.be/stops/404060"], ["https://data.delijn.be/stops/205420", "https://data.delijn.be/stops/205480"], ["https://data.delijn.be/stops/203053", "https://data.delijn.be/stops/203356"], ["https://data.delijn.be/stops/300026", "https://data.delijn.be/stops/300039"], ["https://data.delijn.be/stops/204781", "https://data.delijn.be/stops/204782"], ["https://data.delijn.be/stops/405014", "https://data.delijn.be/stops/405015"], ["https://data.delijn.be/stops/109200", "https://data.delijn.be/stops/109202"], ["https://data.delijn.be/stops/303347", "https://data.delijn.be/stops/306336"], ["https://data.delijn.be/stops/504399", "https://data.delijn.be/stops/504403"], ["https://data.delijn.be/stops/300383", "https://data.delijn.be/stops/301946"], ["https://data.delijn.be/stops/408356", "https://data.delijn.be/stops/410257"], ["https://data.delijn.be/stops/109559", "https://data.delijn.be/stops/306860"], ["https://data.delijn.be/stops/300735", "https://data.delijn.be/stops/300736"], ["https://data.delijn.be/stops/408700", "https://data.delijn.be/stops/408727"], ["https://data.delijn.be/stops/206176", "https://data.delijn.be/stops/207446"], ["https://data.delijn.be/stops/403678", "https://data.delijn.be/stops/405319"], ["https://data.delijn.be/stops/104362", "https://data.delijn.be/stops/104363"], ["https://data.delijn.be/stops/302929", "https://data.delijn.be/stops/304047"], ["https://data.delijn.be/stops/103971", "https://data.delijn.be/stops/103972"], ["https://data.delijn.be/stops/305172", "https://data.delijn.be/stops/305205"], ["https://data.delijn.be/stops/402265", "https://data.delijn.be/stops/402423"], ["https://data.delijn.be/stops/407628", "https://data.delijn.be/stops/407633"], ["https://data.delijn.be/stops/508540", "https://data.delijn.be/stops/508546"], ["https://data.delijn.be/stops/403962", "https://data.delijn.be/stops/406007"], ["https://data.delijn.be/stops/504248", "https://data.delijn.be/stops/509248"], ["https://data.delijn.be/stops/402444", "https://data.delijn.be/stops/409599"], ["https://data.delijn.be/stops/409199", "https://data.delijn.be/stops/409833"], ["https://data.delijn.be/stops/209449", "https://data.delijn.be/stops/209454"], ["https://data.delijn.be/stops/305098", "https://data.delijn.be/stops/305099"], ["https://data.delijn.be/stops/305158", "https://data.delijn.be/stops/305159"], ["https://data.delijn.be/stops/301434", "https://data.delijn.be/stops/306172"], ["https://data.delijn.be/stops/305178", "https://data.delijn.be/stops/307104"], ["https://data.delijn.be/stops/200962", "https://data.delijn.be/stops/202195"], ["https://data.delijn.be/stops/200832", "https://data.delijn.be/stops/505062"], ["https://data.delijn.be/stops/402160", "https://data.delijn.be/stops/402265"], ["https://data.delijn.be/stops/503580", "https://data.delijn.be/stops/503996"], ["https://data.delijn.be/stops/208737", "https://data.delijn.be/stops/209737"], ["https://data.delijn.be/stops/109171", "https://data.delijn.be/stops/109173"], ["https://data.delijn.be/stops/501290", "https://data.delijn.be/stops/506290"], ["https://data.delijn.be/stops/504597", "https://data.delijn.be/stops/509597"], ["https://data.delijn.be/stops/101846", "https://data.delijn.be/stops/106872"], ["https://data.delijn.be/stops/303436", "https://data.delijn.be/stops/307280"], ["https://data.delijn.be/stops/501181", "https://data.delijn.be/stops/509933"], ["https://data.delijn.be/stops/503838", "https://data.delijn.be/stops/508838"], ["https://data.delijn.be/stops/503194", "https://data.delijn.be/stops/503201"], ["https://data.delijn.be/stops/503563", "https://data.delijn.be/stops/508548"], ["https://data.delijn.be/stops/201241", "https://data.delijn.be/stops/211112"], ["https://data.delijn.be/stops/405628", "https://data.delijn.be/stops/407188"], ["https://data.delijn.be/stops/103058", "https://data.delijn.be/stops/103574"], ["https://data.delijn.be/stops/503966", "https://data.delijn.be/stops/508966"], ["https://data.delijn.be/stops/304746", "https://data.delijn.be/stops/307276"], ["https://data.delijn.be/stops/206038", "https://data.delijn.be/stops/207050"], ["https://data.delijn.be/stops/203972", "https://data.delijn.be/stops/205074"], ["https://data.delijn.be/stops/502416", "https://data.delijn.be/stops/507434"], ["https://data.delijn.be/stops/307873", "https://data.delijn.be/stops/308123"], ["https://data.delijn.be/stops/202187", "https://data.delijn.be/stops/203145"], ["https://data.delijn.be/stops/202707", "https://data.delijn.be/stops/203728"], ["https://data.delijn.be/stops/406294", "https://data.delijn.be/stops/406295"], ["https://data.delijn.be/stops/402891", "https://data.delijn.be/stops/402894"], ["https://data.delijn.be/stops/302292", "https://data.delijn.be/stops/302294"], ["https://data.delijn.be/stops/208235", "https://data.delijn.be/stops/209234"], ["https://data.delijn.be/stops/202511", "https://data.delijn.be/stops/203510"], ["https://data.delijn.be/stops/305730", "https://data.delijn.be/stops/305737"], ["https://data.delijn.be/stops/403246", "https://data.delijn.be/stops/403512"], ["https://data.delijn.be/stops/105009", "https://data.delijn.be/stops/105078"], ["https://data.delijn.be/stops/400099", "https://data.delijn.be/stops/409194"], ["https://data.delijn.be/stops/204205", "https://data.delijn.be/stops/205199"], ["https://data.delijn.be/stops/503982", "https://data.delijn.be/stops/504790"], ["https://data.delijn.be/stops/102655", "https://data.delijn.be/stops/107905"], ["https://data.delijn.be/stops/406313", "https://data.delijn.be/stops/410394"], ["https://data.delijn.be/stops/408732", "https://data.delijn.be/stops/408733"], ["https://data.delijn.be/stops/503230", "https://data.delijn.be/stops/509764"], ["https://data.delijn.be/stops/102381", "https://data.delijn.be/stops/106376"], ["https://data.delijn.be/stops/206246", "https://data.delijn.be/stops/207404"], ["https://data.delijn.be/stops/206191", "https://data.delijn.be/stops/207192"], ["https://data.delijn.be/stops/207185", "https://data.delijn.be/stops/308565"], ["https://data.delijn.be/stops/505230", "https://data.delijn.be/stops/509824"], ["https://data.delijn.be/stops/303015", "https://data.delijn.be/stops/303016"], ["https://data.delijn.be/stops/502498", "https://data.delijn.be/stops/507515"], ["https://data.delijn.be/stops/402883", "https://data.delijn.be/stops/402886"], ["https://data.delijn.be/stops/501267", "https://data.delijn.be/stops/501603"], ["https://data.delijn.be/stops/407544", "https://data.delijn.be/stops/408482"], ["https://data.delijn.be/stops/102804", "https://data.delijn.be/stops/109555"], ["https://data.delijn.be/stops/209372", "https://data.delijn.be/stops/209373"], ["https://data.delijn.be/stops/305341", "https://data.delijn.be/stops/305345"], ["https://data.delijn.be/stops/302018", "https://data.delijn.be/stops/302047"], ["https://data.delijn.be/stops/402195", "https://data.delijn.be/stops/402263"], ["https://data.delijn.be/stops/106199", "https://data.delijn.be/stops/109755"], ["https://data.delijn.be/stops/403492", "https://data.delijn.be/stops/403550"], ["https://data.delijn.be/stops/104962", "https://data.delijn.be/stops/109259"], ["https://data.delijn.be/stops/305825", "https://data.delijn.be/stops/305827"], ["https://data.delijn.be/stops/406370", "https://data.delijn.be/stops/406407"], ["https://data.delijn.be/stops/409357", "https://data.delijn.be/stops/409361"], ["https://data.delijn.be/stops/400167", "https://data.delijn.be/stops/400168"], ["https://data.delijn.be/stops/406400", "https://data.delijn.be/stops/406401"], ["https://data.delijn.be/stops/202372", "https://data.delijn.be/stops/203372"], ["https://data.delijn.be/stops/302316", "https://data.delijn.be/stops/304061"], ["https://data.delijn.be/stops/302304", "https://data.delijn.be/stops/302317"], ["https://data.delijn.be/stops/304154", "https://data.delijn.be/stops/304161"], ["https://data.delijn.be/stops/207755", "https://data.delijn.be/stops/208740"], ["https://data.delijn.be/stops/202608", "https://data.delijn.be/stops/203560"], ["https://data.delijn.be/stops/303535", "https://data.delijn.be/stops/304317"], ["https://data.delijn.be/stops/206346", "https://data.delijn.be/stops/207718"], ["https://data.delijn.be/stops/109349", "https://data.delijn.be/stops/109355"], ["https://data.delijn.be/stops/403429", "https://data.delijn.be/stops/410210"], ["https://data.delijn.be/stops/106344", "https://data.delijn.be/stops/106345"], ["https://data.delijn.be/stops/300418", "https://data.delijn.be/stops/300428"], ["https://data.delijn.be/stops/402670", "https://data.delijn.be/stops/402733"], ["https://data.delijn.be/stops/204566", "https://data.delijn.be/stops/303379"], ["https://data.delijn.be/stops/302609", "https://data.delijn.be/stops/302625"], ["https://data.delijn.be/stops/401820", "https://data.delijn.be/stops/410251"], ["https://data.delijn.be/stops/504462", "https://data.delijn.be/stops/509462"], ["https://data.delijn.be/stops/304578", "https://data.delijn.be/stops/304610"], ["https://data.delijn.be/stops/303178", "https://data.delijn.be/stops/307073"], ["https://data.delijn.be/stops/104879", "https://data.delijn.be/stops/109605"], ["https://data.delijn.be/stops/204376", "https://data.delijn.be/stops/205376"], ["https://data.delijn.be/stops/302060", "https://data.delijn.be/stops/302076"], ["https://data.delijn.be/stops/402300", "https://data.delijn.be/stops/409358"], ["https://data.delijn.be/stops/105514", "https://data.delijn.be/stops/105517"], ["https://data.delijn.be/stops/200393", "https://data.delijn.be/stops/201393"], ["https://data.delijn.be/stops/106719", "https://data.delijn.be/stops/109635"], ["https://data.delijn.be/stops/305894", "https://data.delijn.be/stops/308140"], ["https://data.delijn.be/stops/408452", "https://data.delijn.be/stops/410216"], ["https://data.delijn.be/stops/205141", "https://data.delijn.be/stops/205146"], ["https://data.delijn.be/stops/307373", "https://data.delijn.be/stops/307378"], ["https://data.delijn.be/stops/404471", "https://data.delijn.be/stops/404567"], ["https://data.delijn.be/stops/104052", "https://data.delijn.be/stops/108102"], ["https://data.delijn.be/stops/209389", "https://data.delijn.be/stops/508329"], ["https://data.delijn.be/stops/209360", "https://data.delijn.be/stops/209399"], ["https://data.delijn.be/stops/200865", "https://data.delijn.be/stops/202448"], ["https://data.delijn.be/stops/408340", "https://data.delijn.be/stops/408399"], ["https://data.delijn.be/stops/103082", "https://data.delijn.be/stops/104672"], ["https://data.delijn.be/stops/305415", "https://data.delijn.be/stops/305462"], ["https://data.delijn.be/stops/401180", "https://data.delijn.be/stops/401183"], ["https://data.delijn.be/stops/301523", "https://data.delijn.be/stops/305733"], ["https://data.delijn.be/stops/206327", "https://data.delijn.be/stops/308848"], ["https://data.delijn.be/stops/401399", "https://data.delijn.be/stops/410153"], ["https://data.delijn.be/stops/306907", "https://data.delijn.be/stops/308128"], ["https://data.delijn.be/stops/101984", "https://data.delijn.be/stops/108228"], ["https://data.delijn.be/stops/209389", "https://data.delijn.be/stops/508835"], ["https://data.delijn.be/stops/400783", "https://data.delijn.be/stops/409641"], ["https://data.delijn.be/stops/209037", "https://data.delijn.be/stops/209038"], ["https://data.delijn.be/stops/405683", "https://data.delijn.be/stops/405847"], ["https://data.delijn.be/stops/501659", "https://data.delijn.be/stops/501661"], ["https://data.delijn.be/stops/202699", "https://data.delijn.be/stops/203699"], ["https://data.delijn.be/stops/308014", "https://data.delijn.be/stops/308015"], ["https://data.delijn.be/stops/403830", "https://data.delijn.be/stops/410118"], ["https://data.delijn.be/stops/504422", "https://data.delijn.be/stops/505182"], ["https://data.delijn.be/stops/503758", "https://data.delijn.be/stops/508624"], ["https://data.delijn.be/stops/407001", "https://data.delijn.be/stops/407003"], ["https://data.delijn.be/stops/204784", "https://data.delijn.be/stops/205591"], ["https://data.delijn.be/stops/206435", "https://data.delijn.be/stops/209691"], ["https://data.delijn.be/stops/206459", "https://data.delijn.be/stops/206463"], ["https://data.delijn.be/stops/407732", "https://data.delijn.be/stops/409787"], ["https://data.delijn.be/stops/101924", "https://data.delijn.be/stops/107011"], ["https://data.delijn.be/stops/304622", "https://data.delijn.be/stops/304661"], ["https://data.delijn.be/stops/502376", "https://data.delijn.be/stops/505345"], ["https://data.delijn.be/stops/103600", "https://data.delijn.be/stops/104011"], ["https://data.delijn.be/stops/101683", "https://data.delijn.be/stops/103699"], ["https://data.delijn.be/stops/205993", "https://data.delijn.be/stops/208810"], ["https://data.delijn.be/stops/306605", "https://data.delijn.be/stops/306607"], ["https://data.delijn.be/stops/206804", "https://data.delijn.be/stops/209347"], ["https://data.delijn.be/stops/403057", "https://data.delijn.be/stops/403067"], ["https://data.delijn.be/stops/105543", "https://data.delijn.be/stops/105544"], ["https://data.delijn.be/stops/407234", "https://data.delijn.be/stops/407237"], ["https://data.delijn.be/stops/301398", "https://data.delijn.be/stops/303120"], ["https://data.delijn.be/stops/103263", "https://data.delijn.be/stops/204630"], ["https://data.delijn.be/stops/407979", "https://data.delijn.be/stops/408237"], ["https://data.delijn.be/stops/204080", "https://data.delijn.be/stops/205203"], ["https://data.delijn.be/stops/302198", "https://data.delijn.be/stops/302199"], ["https://data.delijn.be/stops/404668", "https://data.delijn.be/stops/404675"], ["https://data.delijn.be/stops/501557", "https://data.delijn.be/stops/501741"], ["https://data.delijn.be/stops/202198", "https://data.delijn.be/stops/203199"], ["https://data.delijn.be/stops/102815", "https://data.delijn.be/stops/103850"], ["https://data.delijn.be/stops/301423", "https://data.delijn.be/stops/301424"], ["https://data.delijn.be/stops/403471", "https://data.delijn.be/stops/403473"], ["https://data.delijn.be/stops/307160", "https://data.delijn.be/stops/307162"], ["https://data.delijn.be/stops/504678", "https://data.delijn.be/stops/505819"], ["https://data.delijn.be/stops/502272", "https://data.delijn.be/stops/507272"], ["https://data.delijn.be/stops/301711", "https://data.delijn.be/stops/305907"], ["https://data.delijn.be/stops/105054", "https://data.delijn.be/stops/105132"], ["https://data.delijn.be/stops/102164", "https://data.delijn.be/stops/103340"], ["https://data.delijn.be/stops/301960", "https://data.delijn.be/stops/301970"], ["https://data.delijn.be/stops/207864", "https://data.delijn.be/stops/209458"], ["https://data.delijn.be/stops/107554", "https://data.delijn.be/stops/107557"], ["https://data.delijn.be/stops/404953", "https://data.delijn.be/stops/404954"], ["https://data.delijn.be/stops/301757", "https://data.delijn.be/stops/305948"], ["https://data.delijn.be/stops/109902", "https://data.delijn.be/stops/109903"], ["https://data.delijn.be/stops/500126", "https://data.delijn.be/stops/503007"], ["https://data.delijn.be/stops/400446", "https://data.delijn.be/stops/401264"], ["https://data.delijn.be/stops/102518", "https://data.delijn.be/stops/406515"], ["https://data.delijn.be/stops/104996", "https://data.delijn.be/stops/105220"], ["https://data.delijn.be/stops/208507", "https://data.delijn.be/stops/209060"], ["https://data.delijn.be/stops/304405", "https://data.delijn.be/stops/307414"], ["https://data.delijn.be/stops/405534", "https://data.delijn.be/stops/406931"], ["https://data.delijn.be/stops/400474", "https://data.delijn.be/stops/408701"], ["https://data.delijn.be/stops/401082", "https://data.delijn.be/stops/402899"], ["https://data.delijn.be/stops/408246", "https://data.delijn.be/stops/308194"], ["https://data.delijn.be/stops/204143", "https://data.delijn.be/stops/205130"], ["https://data.delijn.be/stops/104771", "https://data.delijn.be/stops/108152"], ["https://data.delijn.be/stops/400715", "https://data.delijn.be/stops/400718"], ["https://data.delijn.be/stops/204343", "https://data.delijn.be/stops/204452"], ["https://data.delijn.be/stops/405890", "https://data.delijn.be/stops/409771"], ["https://data.delijn.be/stops/107705", "https://data.delijn.be/stops/107990"], ["https://data.delijn.be/stops/305629", "https://data.delijn.be/stops/305640"], ["https://data.delijn.be/stops/502379", "https://data.delijn.be/stops/502392"], ["https://data.delijn.be/stops/408822", "https://data.delijn.be/stops/408823"], ["https://data.delijn.be/stops/502450", "https://data.delijn.be/stops/507450"], ["https://data.delijn.be/stops/404436", "https://data.delijn.be/stops/404470"], ["https://data.delijn.be/stops/307209", "https://data.delijn.be/stops/307282"], ["https://data.delijn.be/stops/408454", "https://data.delijn.be/stops/408491"], ["https://data.delijn.be/stops/207843", "https://data.delijn.be/stops/303133"], ["https://data.delijn.be/stops/102537", "https://data.delijn.be/stops/405088"], ["https://data.delijn.be/stops/403609", "https://data.delijn.be/stops/406729"], ["https://data.delijn.be/stops/104392", "https://data.delijn.be/stops/104491"], ["https://data.delijn.be/stops/501412", "https://data.delijn.be/stops/506681"], ["https://data.delijn.be/stops/408292", "https://data.delijn.be/stops/408370"], ["https://data.delijn.be/stops/402431", "https://data.delijn.be/stops/402434"], ["https://data.delijn.be/stops/402863", "https://data.delijn.be/stops/408066"], ["https://data.delijn.be/stops/404292", "https://data.delijn.be/stops/405992"], ["https://data.delijn.be/stops/408232", "https://data.delijn.be/stops/408247"], ["https://data.delijn.be/stops/405737", "https://data.delijn.be/stops/407214"], ["https://data.delijn.be/stops/402167", "https://data.delijn.be/stops/402322"], ["https://data.delijn.be/stops/204747", "https://data.delijn.be/stops/205747"], ["https://data.delijn.be/stops/102913", "https://data.delijn.be/stops/106699"], ["https://data.delijn.be/stops/300579", "https://data.delijn.be/stops/308356"], ["https://data.delijn.be/stops/401766", "https://data.delijn.be/stops/401767"], ["https://data.delijn.be/stops/503945", "https://data.delijn.be/stops/508945"], ["https://data.delijn.be/stops/402524", "https://data.delijn.be/stops/402525"], ["https://data.delijn.be/stops/307441", "https://data.delijn.be/stops/307442"], ["https://data.delijn.be/stops/203843", "https://data.delijn.be/stops/203932"], ["https://data.delijn.be/stops/505764", "https://data.delijn.be/stops/507005"], ["https://data.delijn.be/stops/400275", "https://data.delijn.be/stops/400384"], ["https://data.delijn.be/stops/301970", "https://data.delijn.be/stops/304536"], ["https://data.delijn.be/stops/200833", "https://data.delijn.be/stops/200834"], ["https://data.delijn.be/stops/103642", "https://data.delijn.be/stops/103643"], ["https://data.delijn.be/stops/106972", "https://data.delijn.be/stops/106974"], ["https://data.delijn.be/stops/301992", "https://data.delijn.be/stops/303280"], ["https://data.delijn.be/stops/402504", "https://data.delijn.be/stops/408177"], ["https://data.delijn.be/stops/400352", "https://data.delijn.be/stops/400368"], ["https://data.delijn.be/stops/201820", "https://data.delijn.be/stops/201829"], ["https://data.delijn.be/stops/304504", "https://data.delijn.be/stops/307467"], ["https://data.delijn.be/stops/302683", "https://data.delijn.be/stops/302698"], ["https://data.delijn.be/stops/502718", "https://data.delijn.be/stops/502740"], ["https://data.delijn.be/stops/104711", "https://data.delijn.be/stops/108168"], ["https://data.delijn.be/stops/202394", "https://data.delijn.be/stops/203044"], ["https://data.delijn.be/stops/409102", "https://data.delijn.be/stops/409127"], ["https://data.delijn.be/stops/303476", "https://data.delijn.be/stops/303499"], ["https://data.delijn.be/stops/206697", "https://data.delijn.be/stops/206698"], ["https://data.delijn.be/stops/305510", "https://data.delijn.be/stops/308870"], ["https://data.delijn.be/stops/201770", "https://data.delijn.be/stops/201829"], ["https://data.delijn.be/stops/304013", "https://data.delijn.be/stops/304033"], ["https://data.delijn.be/stops/505291", "https://data.delijn.be/stops/509356"], ["https://data.delijn.be/stops/505945", "https://data.delijn.be/stops/508110"], ["https://data.delijn.be/stops/104037", "https://data.delijn.be/stops/104051"], ["https://data.delijn.be/stops/502176", "https://data.delijn.be/stops/507176"], ["https://data.delijn.be/stops/503755", "https://data.delijn.be/stops/508966"], ["https://data.delijn.be/stops/405803", "https://data.delijn.be/stops/405861"], ["https://data.delijn.be/stops/507423", "https://data.delijn.be/stops/507750"], ["https://data.delijn.be/stops/209524", "https://data.delijn.be/stops/219017"], ["https://data.delijn.be/stops/201645", "https://data.delijn.be/stops/203743"], ["https://data.delijn.be/stops/202158", "https://data.delijn.be/stops/205792"], ["https://data.delijn.be/stops/204761", "https://data.delijn.be/stops/205729"], ["https://data.delijn.be/stops/401063", "https://data.delijn.be/stops/403598"], ["https://data.delijn.be/stops/207977", "https://data.delijn.be/stops/217011"], ["https://data.delijn.be/stops/107356", "https://data.delijn.be/stops/107358"], ["https://data.delijn.be/stops/305950", "https://data.delijn.be/stops/307092"], ["https://data.delijn.be/stops/301533", "https://data.delijn.be/stops/301544"], ["https://data.delijn.be/stops/103479", "https://data.delijn.be/stops/109215"], ["https://data.delijn.be/stops/503926", "https://data.delijn.be/stops/508927"], ["https://data.delijn.be/stops/501769", "https://data.delijn.be/stops/505357"], ["https://data.delijn.be/stops/109196", "https://data.delijn.be/stops/109204"], ["https://data.delijn.be/stops/103248", "https://data.delijn.be/stops/107375"], ["https://data.delijn.be/stops/101676", "https://data.delijn.be/stops/101677"], ["https://data.delijn.be/stops/304583", "https://data.delijn.be/stops/307767"], ["https://data.delijn.be/stops/300124", "https://data.delijn.be/stops/306770"], ["https://data.delijn.be/stops/106098", "https://data.delijn.be/stops/106099"], ["https://data.delijn.be/stops/502472", "https://data.delijn.be/stops/502482"], ["https://data.delijn.be/stops/109210", "https://data.delijn.be/stops/109225"], ["https://data.delijn.be/stops/503113", "https://data.delijn.be/stops/505083"], ["https://data.delijn.be/stops/305324", "https://data.delijn.be/stops/305325"], ["https://data.delijn.be/stops/403163", "https://data.delijn.be/stops/403169"], ["https://data.delijn.be/stops/501629", "https://data.delijn.be/stops/505405"], ["https://data.delijn.be/stops/306877", "https://data.delijn.be/stops/306878"], ["https://data.delijn.be/stops/501138", "https://data.delijn.be/stops/501486"], ["https://data.delijn.be/stops/206644", "https://data.delijn.be/stops/206645"], ["https://data.delijn.be/stops/104493", "https://data.delijn.be/stops/104770"], ["https://data.delijn.be/stops/104109", "https://data.delijn.be/stops/205605"], ["https://data.delijn.be/stops/302761", "https://data.delijn.be/stops/302762"], ["https://data.delijn.be/stops/505261", "https://data.delijn.be/stops/508221"], ["https://data.delijn.be/stops/107018", "https://data.delijn.be/stops/107019"], ["https://data.delijn.be/stops/105999", "https://data.delijn.be/stops/106003"], ["https://data.delijn.be/stops/206696", "https://data.delijn.be/stops/304080"], ["https://data.delijn.be/stops/106596", "https://data.delijn.be/stops/107241"], ["https://data.delijn.be/stops/206155", "https://data.delijn.be/stops/207861"], ["https://data.delijn.be/stops/501627", "https://data.delijn.be/stops/502202"], ["https://data.delijn.be/stops/105683", "https://data.delijn.be/stops/105684"], ["https://data.delijn.be/stops/400554", "https://data.delijn.be/stops/403226"], ["https://data.delijn.be/stops/300549", "https://data.delijn.be/stops/300554"], ["https://data.delijn.be/stops/502228", "https://data.delijn.be/stops/505314"], ["https://data.delijn.be/stops/102075", "https://data.delijn.be/stops/102235"], ["https://data.delijn.be/stops/505981", "https://data.delijn.be/stops/507195"], ["https://data.delijn.be/stops/503011", "https://data.delijn.be/stops/507736"], ["https://data.delijn.be/stops/402070", "https://data.delijn.be/stops/402080"], ["https://data.delijn.be/stops/503052", "https://data.delijn.be/stops/508051"], ["https://data.delijn.be/stops/402387", "https://data.delijn.be/stops/402473"], ["https://data.delijn.be/stops/106862", "https://data.delijn.be/stops/106863"], ["https://data.delijn.be/stops/304730", "https://data.delijn.be/stops/307333"], ["https://data.delijn.be/stops/200863", "https://data.delijn.be/stops/203295"], ["https://data.delijn.be/stops/101182", "https://data.delijn.be/stops/107944"], ["https://data.delijn.be/stops/300264", "https://data.delijn.be/stops/303812"], ["https://data.delijn.be/stops/400600", "https://data.delijn.be/stops/400623"], ["https://data.delijn.be/stops/301379", "https://data.delijn.be/stops/301380"], ["https://data.delijn.be/stops/203212", "https://data.delijn.be/stops/210117"], ["https://data.delijn.be/stops/404147", "https://data.delijn.be/stops/404156"], ["https://data.delijn.be/stops/402235", "https://data.delijn.be/stops/402255"], ["https://data.delijn.be/stops/102422", "https://data.delijn.be/stops/106998"], ["https://data.delijn.be/stops/302175", "https://data.delijn.be/stops/307186"], ["https://data.delijn.be/stops/300011", "https://data.delijn.be/stops/300796"], ["https://data.delijn.be/stops/201315", "https://data.delijn.be/stops/201384"], ["https://data.delijn.be/stops/104646", "https://data.delijn.be/stops/108053"], ["https://data.delijn.be/stops/208742", "https://data.delijn.be/stops/508032"], ["https://data.delijn.be/stops/403953", "https://data.delijn.be/stops/404025"], ["https://data.delijn.be/stops/308488", "https://data.delijn.be/stops/308489"], ["https://data.delijn.be/stops/304573", "https://data.delijn.be/stops/304658"], ["https://data.delijn.be/stops/206250", "https://data.delijn.be/stops/207586"], ["https://data.delijn.be/stops/501398", "https://data.delijn.be/stops/506399"], ["https://data.delijn.be/stops/208488", "https://data.delijn.be/stops/209621"], ["https://data.delijn.be/stops/109361", "https://data.delijn.be/stops/109362"], ["https://data.delijn.be/stops/403647", "https://data.delijn.be/stops/408079"], ["https://data.delijn.be/stops/303567", "https://data.delijn.be/stops/307988"], ["https://data.delijn.be/stops/401340", "https://data.delijn.be/stops/406568"], ["https://data.delijn.be/stops/503986", "https://data.delijn.be/stops/508986"], ["https://data.delijn.be/stops/408259", "https://data.delijn.be/stops/408373"], ["https://data.delijn.be/stops/501401", "https://data.delijn.be/stops/505404"], ["https://data.delijn.be/stops/505565", "https://data.delijn.be/stops/505660"], ["https://data.delijn.be/stops/300096", "https://data.delijn.be/stops/300097"], ["https://data.delijn.be/stops/300748", "https://data.delijn.be/stops/300804"], ["https://data.delijn.be/stops/401320", "https://data.delijn.be/stops/401321"], ["https://data.delijn.be/stops/301363", "https://data.delijn.be/stops/301364"], ["https://data.delijn.be/stops/106480", "https://data.delijn.be/stops/109201"], ["https://data.delijn.be/stops/207141", "https://data.delijn.be/stops/207142"], ["https://data.delijn.be/stops/504501", "https://data.delijn.be/stops/505167"], ["https://data.delijn.be/stops/305680", "https://data.delijn.be/stops/305694"], ["https://data.delijn.be/stops/503385", "https://data.delijn.be/stops/503407"], ["https://data.delijn.be/stops/300585", "https://data.delijn.be/stops/300586"], ["https://data.delijn.be/stops/405878", "https://data.delijn.be/stops/405879"], ["https://data.delijn.be/stops/400695", "https://data.delijn.be/stops/400696"], ["https://data.delijn.be/stops/202444", "https://data.delijn.be/stops/203444"], ["https://data.delijn.be/stops/504031", "https://data.delijn.be/stops/504470"], ["https://data.delijn.be/stops/503830", "https://data.delijn.be/stops/503834"], ["https://data.delijn.be/stops/208602", "https://data.delijn.be/stops/208603"], ["https://data.delijn.be/stops/501760", "https://data.delijn.be/stops/506776"], ["https://data.delijn.be/stops/304220", "https://data.delijn.be/stops/307939"], ["https://data.delijn.be/stops/200604", "https://data.delijn.be/stops/200605"], ["https://data.delijn.be/stops/401848", "https://data.delijn.be/stops/401856"], ["https://data.delijn.be/stops/303437", "https://data.delijn.be/stops/303520"], ["https://data.delijn.be/stops/410189", "https://data.delijn.be/stops/410251"], ["https://data.delijn.be/stops/401794", "https://data.delijn.be/stops/401812"], ["https://data.delijn.be/stops/208043", "https://data.delijn.be/stops/209223"], ["https://data.delijn.be/stops/302135", "https://data.delijn.be/stops/307327"], ["https://data.delijn.be/stops/202900", "https://data.delijn.be/stops/203899"], ["https://data.delijn.be/stops/507419", "https://data.delijn.be/stops/507694"], ["https://data.delijn.be/stops/306943", "https://data.delijn.be/stops/306945"], ["https://data.delijn.be/stops/104103", "https://data.delijn.be/stops/108760"], ["https://data.delijn.be/stops/301885", "https://data.delijn.be/stops/301890"], ["https://data.delijn.be/stops/109101", "https://data.delijn.be/stops/109102"], ["https://data.delijn.be/stops/401785", "https://data.delijn.be/stops/406006"], ["https://data.delijn.be/stops/208581", "https://data.delijn.be/stops/305447"], ["https://data.delijn.be/stops/202686", "https://data.delijn.be/stops/203686"], ["https://data.delijn.be/stops/303835", "https://data.delijn.be/stops/304125"], ["https://data.delijn.be/stops/401509", "https://data.delijn.be/stops/402023"], ["https://data.delijn.be/stops/401467", "https://data.delijn.be/stops/401885"], ["https://data.delijn.be/stops/305377", "https://data.delijn.be/stops/305970"], ["https://data.delijn.be/stops/408598", "https://data.delijn.be/stops/408691"], ["https://data.delijn.be/stops/204240", "https://data.delijn.be/stops/205707"], ["https://data.delijn.be/stops/401036", "https://data.delijn.be/stops/404908"], ["https://data.delijn.be/stops/404649", "https://data.delijn.be/stops/410112"], ["https://data.delijn.be/stops/506118", "https://data.delijn.be/stops/506209"], ["https://data.delijn.be/stops/103710", "https://data.delijn.be/stops/104724"], ["https://data.delijn.be/stops/201289", "https://data.delijn.be/stops/211084"], ["https://data.delijn.be/stops/104352", "https://data.delijn.be/stops/104882"], ["https://data.delijn.be/stops/504279", "https://data.delijn.be/stops/505799"], ["https://data.delijn.be/stops/200808", "https://data.delijn.be/stops/203436"], ["https://data.delijn.be/stops/206784", "https://data.delijn.be/stops/208030"], ["https://data.delijn.be/stops/101235", "https://data.delijn.be/stops/103041"], ["https://data.delijn.be/stops/307544", "https://data.delijn.be/stops/307757"], ["https://data.delijn.be/stops/301334", "https://data.delijn.be/stops/301388"], ["https://data.delijn.be/stops/101071", "https://data.delijn.be/stops/107197"], ["https://data.delijn.be/stops/200625", "https://data.delijn.be/stops/211073"], ["https://data.delijn.be/stops/104237", "https://data.delijn.be/stops/105188"], ["https://data.delijn.be/stops/200902", "https://data.delijn.be/stops/203106"], ["https://data.delijn.be/stops/208207", "https://data.delijn.be/stops/209768"], ["https://data.delijn.be/stops/210528", "https://data.delijn.be/stops/211528"], ["https://data.delijn.be/stops/504124", "https://data.delijn.be/stops/509121"], ["https://data.delijn.be/stops/200876", "https://data.delijn.be/stops/502743"], ["https://data.delijn.be/stops/104598", "https://data.delijn.be/stops/107428"], ["https://data.delijn.be/stops/403293", "https://data.delijn.be/stops/403357"], ["https://data.delijn.be/stops/200747", "https://data.delijn.be/stops/203160"], ["https://data.delijn.be/stops/208384", "https://data.delijn.be/stops/208385"], ["https://data.delijn.be/stops/301836", "https://data.delijn.be/stops/308601"], ["https://data.delijn.be/stops/504413", "https://data.delijn.be/stops/504571"], ["https://data.delijn.be/stops/400873", "https://data.delijn.be/stops/403580"], ["https://data.delijn.be/stops/405934", "https://data.delijn.be/stops/405963"], ["https://data.delijn.be/stops/106859", "https://data.delijn.be/stops/109542"], ["https://data.delijn.be/stops/500567", "https://data.delijn.be/stops/501041"], ["https://data.delijn.be/stops/102648", "https://data.delijn.be/stops/308811"], ["https://data.delijn.be/stops/403205", "https://data.delijn.be/stops/403285"], ["https://data.delijn.be/stops/407210", "https://data.delijn.be/stops/407215"], ["https://data.delijn.be/stops/203989", "https://data.delijn.be/stops/211849"], ["https://data.delijn.be/stops/503009", "https://data.delijn.be/stops/508015"], ["https://data.delijn.be/stops/204511", "https://data.delijn.be/stops/204554"], ["https://data.delijn.be/stops/101477", "https://data.delijn.be/stops/101945"], ["https://data.delijn.be/stops/301237", "https://data.delijn.be/stops/307850"], ["https://data.delijn.be/stops/105522", "https://data.delijn.be/stops/106972"], ["https://data.delijn.be/stops/404399", "https://data.delijn.be/stops/408486"], ["https://data.delijn.be/stops/203682", "https://data.delijn.be/stops/203707"], ["https://data.delijn.be/stops/106824", "https://data.delijn.be/stops/106838"], ["https://data.delijn.be/stops/404935", "https://data.delijn.be/stops/405649"], ["https://data.delijn.be/stops/208362", "https://data.delijn.be/stops/209399"], ["https://data.delijn.be/stops/504482", "https://data.delijn.be/stops/505817"], ["https://data.delijn.be/stops/202623", "https://data.delijn.be/stops/210043"], ["https://data.delijn.be/stops/505010", "https://data.delijn.be/stops/507321"], ["https://data.delijn.be/stops/102498", "https://data.delijn.be/stops/400029"], ["https://data.delijn.be/stops/300648", "https://data.delijn.be/stops/300652"], ["https://data.delijn.be/stops/507304", "https://data.delijn.be/stops/507313"], ["https://data.delijn.be/stops/200844", "https://data.delijn.be/stops/211005"], ["https://data.delijn.be/stops/409638", "https://data.delijn.be/stops/410035"], ["https://data.delijn.be/stops/204448", "https://data.delijn.be/stops/205262"], ["https://data.delijn.be/stops/107425", "https://data.delijn.be/stops/109240"], ["https://data.delijn.be/stops/103955", "https://data.delijn.be/stops/105710"], ["https://data.delijn.be/stops/503207", "https://data.delijn.be/stops/509822"], ["https://data.delijn.be/stops/302386", "https://data.delijn.be/stops/302387"], ["https://data.delijn.be/stops/403353", "https://data.delijn.be/stops/403482"], ["https://data.delijn.be/stops/208338", "https://data.delijn.be/stops/209339"], ["https://data.delijn.be/stops/200182", "https://data.delijn.be/stops/203752"], ["https://data.delijn.be/stops/203028", "https://data.delijn.be/stops/211025"], ["https://data.delijn.be/stops/501458", "https://data.delijn.be/stops/501534"], ["https://data.delijn.be/stops/205983", "https://data.delijn.be/stops/208804"], ["https://data.delijn.be/stops/102397", "https://data.delijn.be/stops/106218"], ["https://data.delijn.be/stops/409041", "https://data.delijn.be/stops/409470"], ["https://data.delijn.be/stops/403805", "https://data.delijn.be/stops/403809"], ["https://data.delijn.be/stops/509285", "https://data.delijn.be/stops/509289"], ["https://data.delijn.be/stops/502595", "https://data.delijn.be/stops/507378"], ["https://data.delijn.be/stops/501035", "https://data.delijn.be/stops/506035"], ["https://data.delijn.be/stops/504521", "https://data.delijn.be/stops/509521"], ["https://data.delijn.be/stops/503314", "https://data.delijn.be/stops/508140"], ["https://data.delijn.be/stops/204724", "https://data.delijn.be/stops/205724"], ["https://data.delijn.be/stops/302739", "https://data.delijn.be/stops/307846"], ["https://data.delijn.be/stops/501144", "https://data.delijn.be/stops/502351"], ["https://data.delijn.be/stops/200646", "https://data.delijn.be/stops/201646"], ["https://data.delijn.be/stops/502309", "https://data.delijn.be/stops/507309"], ["https://data.delijn.be/stops/200645", "https://data.delijn.be/stops/201645"], ["https://data.delijn.be/stops/503767", "https://data.delijn.be/stops/508767"], ["https://data.delijn.be/stops/208017", "https://data.delijn.be/stops/208024"], ["https://data.delijn.be/stops/502063", "https://data.delijn.be/stops/507063"], ["https://data.delijn.be/stops/202429", "https://data.delijn.be/stops/203327"], ["https://data.delijn.be/stops/201854", "https://data.delijn.be/stops/202027"], ["https://data.delijn.be/stops/109154", "https://data.delijn.be/stops/109157"], ["https://data.delijn.be/stops/300268", "https://data.delijn.be/stops/300269"], ["https://data.delijn.be/stops/106384", "https://data.delijn.be/stops/106392"], ["https://data.delijn.be/stops/306610", "https://data.delijn.be/stops/306611"], ["https://data.delijn.be/stops/300830", "https://data.delijn.be/stops/306641"], ["https://data.delijn.be/stops/108312", "https://data.delijn.be/stops/109374"], ["https://data.delijn.be/stops/504693", "https://data.delijn.be/stops/509072"], ["https://data.delijn.be/stops/301074", "https://data.delijn.be/stops/303650"], ["https://data.delijn.be/stops/300904", "https://data.delijn.be/stops/300905"], ["https://data.delijn.be/stops/406294", "https://data.delijn.be/stops/406444"], ["https://data.delijn.be/stops/502644", "https://data.delijn.be/stops/507089"], ["https://data.delijn.be/stops/403710", "https://data.delijn.be/stops/406709"], ["https://data.delijn.be/stops/304834", "https://data.delijn.be/stops/307830"], ["https://data.delijn.be/stops/107061", "https://data.delijn.be/stops/109665"], ["https://data.delijn.be/stops/502492", "https://data.delijn.be/stops/507492"], ["https://data.delijn.be/stops/502093", "https://data.delijn.be/stops/502147"], ["https://data.delijn.be/stops/304959", "https://data.delijn.be/stops/304966"], ["https://data.delijn.be/stops/102213", "https://data.delijn.be/stops/102285"], ["https://data.delijn.be/stops/208115", "https://data.delijn.be/stops/208231"], ["https://data.delijn.be/stops/401161", "https://data.delijn.be/stops/408187"], ["https://data.delijn.be/stops/503351", "https://data.delijn.be/stops/503375"], ["https://data.delijn.be/stops/300763", "https://data.delijn.be/stops/306116"], ["https://data.delijn.be/stops/505021", "https://data.delijn.be/stops/505336"], ["https://data.delijn.be/stops/102779", "https://data.delijn.be/stops/106035"], ["https://data.delijn.be/stops/501116", "https://data.delijn.be/stops/505746"], ["https://data.delijn.be/stops/408517", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/102087", "https://data.delijn.be/stops/108867"], ["https://data.delijn.be/stops/404940", "https://data.delijn.be/stops/404943"], ["https://data.delijn.be/stops/302455", "https://data.delijn.be/stops/302457"], ["https://data.delijn.be/stops/102491", "https://data.delijn.be/stops/400427"], ["https://data.delijn.be/stops/301937", "https://data.delijn.be/stops/306825"], ["https://data.delijn.be/stops/306143", "https://data.delijn.be/stops/306144"], ["https://data.delijn.be/stops/107680", "https://data.delijn.be/stops/107990"], ["https://data.delijn.be/stops/209776", "https://data.delijn.be/stops/209777"], ["https://data.delijn.be/stops/200143", "https://data.delijn.be/stops/200551"], ["https://data.delijn.be/stops/401156", "https://data.delijn.be/stops/406719"], ["https://data.delijn.be/stops/301917", "https://data.delijn.be/stops/301918"], ["https://data.delijn.be/stops/204199", "https://data.delijn.be/stops/205199"], ["https://data.delijn.be/stops/103022", "https://data.delijn.be/stops/108647"], ["https://data.delijn.be/stops/504754", "https://data.delijn.be/stops/504755"], ["https://data.delijn.be/stops/501123", "https://data.delijn.be/stops/506122"], ["https://data.delijn.be/stops/103470", "https://data.delijn.be/stops/106615"], ["https://data.delijn.be/stops/201884", "https://data.delijn.be/stops/203060"], ["https://data.delijn.be/stops/302145", "https://data.delijn.be/stops/308085"], ["https://data.delijn.be/stops/503262", "https://data.delijn.be/stops/508262"], ["https://data.delijn.be/stops/407856", "https://data.delijn.be/stops/408167"], ["https://data.delijn.be/stops/108032", "https://data.delijn.be/stops/108033"], ["https://data.delijn.be/stops/208428", "https://data.delijn.be/stops/209428"], ["https://data.delijn.be/stops/502453", "https://data.delijn.be/stops/507464"], ["https://data.delijn.be/stops/503498", "https://data.delijn.be/stops/508494"], ["https://data.delijn.be/stops/200859", "https://data.delijn.be/stops/202333"], ["https://data.delijn.be/stops/106605", "https://data.delijn.be/stops/106688"], ["https://data.delijn.be/stops/505387", "https://data.delijn.be/stops/508087"], ["https://data.delijn.be/stops/208806", "https://data.delijn.be/stops/208954"], ["https://data.delijn.be/stops/303970", "https://data.delijn.be/stops/303974"], ["https://data.delijn.be/stops/206580", "https://data.delijn.be/stops/207921"], ["https://data.delijn.be/stops/206620", "https://data.delijn.be/stops/206757"], ["https://data.delijn.be/stops/302688", "https://data.delijn.be/stops/302694"], ["https://data.delijn.be/stops/202116", "https://data.delijn.be/stops/202640"], ["https://data.delijn.be/stops/306648", "https://data.delijn.be/stops/306651"], ["https://data.delijn.be/stops/304170", "https://data.delijn.be/stops/304171"], ["https://data.delijn.be/stops/405260", "https://data.delijn.be/stops/405278"], ["https://data.delijn.be/stops/505155", "https://data.delijn.be/stops/506088"], ["https://data.delijn.be/stops/408960", "https://data.delijn.be/stops/408962"], ["https://data.delijn.be/stops/301794", "https://data.delijn.be/stops/301816"], ["https://data.delijn.be/stops/408065", "https://data.delijn.be/stops/408120"], ["https://data.delijn.be/stops/203962", "https://data.delijn.be/stops/216009"], ["https://data.delijn.be/stops/500942", "https://data.delijn.be/stops/504847"], ["https://data.delijn.be/stops/300980", "https://data.delijn.be/stops/301001"], ["https://data.delijn.be/stops/200570", "https://data.delijn.be/stops/203194"], ["https://data.delijn.be/stops/400721", "https://data.delijn.be/stops/404333"], ["https://data.delijn.be/stops/503313", "https://data.delijn.be/stops/503791"], ["https://data.delijn.be/stops/504747", "https://data.delijn.be/stops/509747"], ["https://data.delijn.be/stops/206989", "https://data.delijn.be/stops/217007"], ["https://data.delijn.be/stops/201959", "https://data.delijn.be/stops/209491"], ["https://data.delijn.be/stops/300849", "https://data.delijn.be/stops/301793"], ["https://data.delijn.be/stops/305349", "https://data.delijn.be/stops/308981"], ["https://data.delijn.be/stops/301361", "https://data.delijn.be/stops/306125"], ["https://data.delijn.be/stops/200570", "https://data.delijn.be/stops/201575"], ["https://data.delijn.be/stops/307760", "https://data.delijn.be/stops/307762"], ["https://data.delijn.be/stops/400556", "https://data.delijn.be/stops/404181"], ["https://data.delijn.be/stops/107434", "https://data.delijn.be/stops/107464"], ["https://data.delijn.be/stops/508624", "https://data.delijn.be/stops/508697"], ["https://data.delijn.be/stops/305221", "https://data.delijn.be/stops/305321"], ["https://data.delijn.be/stops/201540", "https://data.delijn.be/stops/205931"], ["https://data.delijn.be/stops/102170", "https://data.delijn.be/stops/104123"], ["https://data.delijn.be/stops/400138", "https://data.delijn.be/stops/400139"], ["https://data.delijn.be/stops/408064", "https://data.delijn.be/stops/408065"], ["https://data.delijn.be/stops/305684", "https://data.delijn.be/stops/305685"], ["https://data.delijn.be/stops/106807", "https://data.delijn.be/stops/106809"], ["https://data.delijn.be/stops/407449", "https://data.delijn.be/stops/407570"], ["https://data.delijn.be/stops/307270", "https://data.delijn.be/stops/307273"], ["https://data.delijn.be/stops/107932", "https://data.delijn.be/stops/107933"], ["https://data.delijn.be/stops/204002", "https://data.delijn.be/stops/204364"], ["https://data.delijn.be/stops/103489", "https://data.delijn.be/stops/109371"], ["https://data.delijn.be/stops/502356", "https://data.delijn.be/stops/503979"], ["https://data.delijn.be/stops/307741", "https://data.delijn.be/stops/307742"], ["https://data.delijn.be/stops/106714", "https://data.delijn.be/stops/106715"], ["https://data.delijn.be/stops/302862", "https://data.delijn.be/stops/304925"], ["https://data.delijn.be/stops/404249", "https://data.delijn.be/stops/404322"], ["https://data.delijn.be/stops/208290", "https://data.delijn.be/stops/208295"], ["https://data.delijn.be/stops/503085", "https://data.delijn.be/stops/503611"], ["https://data.delijn.be/stops/407036", "https://data.delijn.be/stops/407037"], ["https://data.delijn.be/stops/305513", "https://data.delijn.be/stops/305519"], ["https://data.delijn.be/stops/407650", "https://data.delijn.be/stops/407667"], ["https://data.delijn.be/stops/501523", "https://data.delijn.be/stops/506311"], ["https://data.delijn.be/stops/407005", "https://data.delijn.be/stops/407046"], ["https://data.delijn.be/stops/302368", "https://data.delijn.be/stops/307854"], ["https://data.delijn.be/stops/204641", "https://data.delijn.be/stops/204772"], ["https://data.delijn.be/stops/301660", "https://data.delijn.be/stops/307229"], ["https://data.delijn.be/stops/201255", "https://data.delijn.be/stops/203613"], ["https://data.delijn.be/stops/406208", "https://data.delijn.be/stops/406225"], ["https://data.delijn.be/stops/404191", "https://data.delijn.be/stops/410213"], ["https://data.delijn.be/stops/200717", "https://data.delijn.be/stops/203641"], ["https://data.delijn.be/stops/305682", "https://data.delijn.be/stops/306328"], ["https://data.delijn.be/stops/402823", "https://data.delijn.be/stops/409228"], ["https://data.delijn.be/stops/207294", "https://data.delijn.be/stops/207806"], ["https://data.delijn.be/stops/300777", "https://data.delijn.be/stops/300801"], ["https://data.delijn.be/stops/403914", "https://data.delijn.be/stops/403915"], ["https://data.delijn.be/stops/302178", "https://data.delijn.be/stops/308129"], ["https://data.delijn.be/stops/400145", "https://data.delijn.be/stops/400311"], ["https://data.delijn.be/stops/109123", "https://data.delijn.be/stops/109395"], ["https://data.delijn.be/stops/302342", "https://data.delijn.be/stops/304895"], ["https://data.delijn.be/stops/402119", "https://data.delijn.be/stops/402129"], ["https://data.delijn.be/stops/207702", "https://data.delijn.be/stops/207703"], ["https://data.delijn.be/stops/408371", "https://data.delijn.be/stops/409416"], ["https://data.delijn.be/stops/300464", "https://data.delijn.be/stops/300474"], ["https://data.delijn.be/stops/200795", "https://data.delijn.be/stops/201670"], ["https://data.delijn.be/stops/200055", "https://data.delijn.be/stops/200472"], ["https://data.delijn.be/stops/305145", "https://data.delijn.be/stops/305223"], ["https://data.delijn.be/stops/408632", "https://data.delijn.be/stops/408633"], ["https://data.delijn.be/stops/406219", "https://data.delijn.be/stops/409529"], ["https://data.delijn.be/stops/501425", "https://data.delijn.be/stops/506200"], ["https://data.delijn.be/stops/404801", "https://data.delijn.be/stops/404814"], ["https://data.delijn.be/stops/400464", "https://data.delijn.be/stops/407642"], ["https://data.delijn.be/stops/107554", "https://data.delijn.be/stops/108938"], ["https://data.delijn.be/stops/104768", "https://data.delijn.be/stops/108682"], ["https://data.delijn.be/stops/507443", "https://data.delijn.be/stops/507451"], ["https://data.delijn.be/stops/204206", "https://data.delijn.be/stops/205234"], ["https://data.delijn.be/stops/406688", "https://data.delijn.be/stops/406689"], ["https://data.delijn.be/stops/101228", "https://data.delijn.be/stops/102646"], ["https://data.delijn.be/stops/109142", "https://data.delijn.be/stops/109144"], ["https://data.delijn.be/stops/302177", "https://data.delijn.be/stops/308103"], ["https://data.delijn.be/stops/105834", "https://data.delijn.be/stops/109055"], ["https://data.delijn.be/stops/203949", "https://data.delijn.be/stops/216009"], ["https://data.delijn.be/stops/200374", "https://data.delijn.be/stops/200548"], ["https://data.delijn.be/stops/204142", "https://data.delijn.be/stops/204147"], ["https://data.delijn.be/stops/305958", "https://data.delijn.be/stops/306744"], ["https://data.delijn.be/stops/402384", "https://data.delijn.be/stops/410042"], ["https://data.delijn.be/stops/400205", "https://data.delijn.be/stops/400211"], ["https://data.delijn.be/stops/200334", "https://data.delijn.be/stops/208404"], ["https://data.delijn.be/stops/301346", "https://data.delijn.be/stops/301365"], ["https://data.delijn.be/stops/206720", "https://data.delijn.be/stops/207655"], ["https://data.delijn.be/stops/200475", "https://data.delijn.be/stops/211850"], ["https://data.delijn.be/stops/109314", "https://data.delijn.be/stops/109315"], ["https://data.delijn.be/stops/200540", "https://data.delijn.be/stops/201657"], ["https://data.delijn.be/stops/401759", "https://data.delijn.be/stops/401761"], ["https://data.delijn.be/stops/301881", "https://data.delijn.be/stops/301882"], ["https://data.delijn.be/stops/304004", "https://data.delijn.be/stops/304036"], ["https://data.delijn.be/stops/301424", "https://data.delijn.be/stops/307322"], ["https://data.delijn.be/stops/501244", "https://data.delijn.be/stops/501371"], ["https://data.delijn.be/stops/504272", "https://data.delijn.be/stops/509272"], ["https://data.delijn.be/stops/405428", "https://data.delijn.be/stops/302850"], ["https://data.delijn.be/stops/307974", "https://data.delijn.be/stops/307976"], ["https://data.delijn.be/stops/108628", "https://data.delijn.be/stops/408449"], ["https://data.delijn.be/stops/104619", "https://data.delijn.be/stops/205272"], ["https://data.delijn.be/stops/504316", "https://data.delijn.be/stops/509316"], ["https://data.delijn.be/stops/101838", "https://data.delijn.be/stops/107625"], ["https://data.delijn.be/stops/206047", "https://data.delijn.be/stops/206298"], ["https://data.delijn.be/stops/300057", "https://data.delijn.be/stops/300142"], ["https://data.delijn.be/stops/204098", "https://data.delijn.be/stops/205097"], ["https://data.delijn.be/stops/503067", "https://data.delijn.be/stops/505409"], ["https://data.delijn.be/stops/202665", "https://data.delijn.be/stops/210080"], ["https://data.delijn.be/stops/300920", "https://data.delijn.be/stops/305295"], ["https://data.delijn.be/stops/104878", "https://data.delijn.be/stops/105294"], ["https://data.delijn.be/stops/101071", "https://data.delijn.be/stops/101073"], ["https://data.delijn.be/stops/403155", "https://data.delijn.be/stops/407583"], ["https://data.delijn.be/stops/106199", "https://data.delijn.be/stops/106200"], ["https://data.delijn.be/stops/505187", "https://data.delijn.be/stops/509569"], ["https://data.delijn.be/stops/401871", "https://data.delijn.be/stops/401874"], ["https://data.delijn.be/stops/300203", "https://data.delijn.be/stops/306743"], ["https://data.delijn.be/stops/204249", "https://data.delijn.be/stops/205148"], ["https://data.delijn.be/stops/400495", "https://data.delijn.be/stops/407217"], ["https://data.delijn.be/stops/102938", "https://data.delijn.be/stops/104675"], ["https://data.delijn.be/stops/407001", "https://data.delijn.be/stops/308079"], ["https://data.delijn.be/stops/304576", "https://data.delijn.be/stops/304659"], ["https://data.delijn.be/stops/103674", "https://data.delijn.be/stops/103676"], ["https://data.delijn.be/stops/502136", "https://data.delijn.be/stops/502165"], ["https://data.delijn.be/stops/508879", "https://data.delijn.be/stops/508994"], ["https://data.delijn.be/stops/108683", "https://data.delijn.be/stops/108894"], ["https://data.delijn.be/stops/306148", "https://data.delijn.be/stops/306151"], ["https://data.delijn.be/stops/503164", "https://data.delijn.be/stops/503603"], ["https://data.delijn.be/stops/301471", "https://data.delijn.be/stops/301481"], ["https://data.delijn.be/stops/204022", "https://data.delijn.be/stops/207996"], ["https://data.delijn.be/stops/402266", "https://data.delijn.be/stops/402422"], ["https://data.delijn.be/stops/504555", "https://data.delijn.be/stops/504565"], ["https://data.delijn.be/stops/101592", "https://data.delijn.be/stops/101614"], ["https://data.delijn.be/stops/503355", "https://data.delijn.be/stops/505133"], ["https://data.delijn.be/stops/405351", "https://data.delijn.be/stops/407151"], ["https://data.delijn.be/stops/303808", "https://data.delijn.be/stops/303809"], ["https://data.delijn.be/stops/208545", "https://data.delijn.be/stops/208546"], ["https://data.delijn.be/stops/501601", "https://data.delijn.be/stops/504506"], ["https://data.delijn.be/stops/207021", "https://data.delijn.be/stops/207028"], ["https://data.delijn.be/stops/400689", "https://data.delijn.be/stops/400805"], ["https://data.delijn.be/stops/305642", "https://data.delijn.be/stops/305670"], ["https://data.delijn.be/stops/206349", "https://data.delijn.be/stops/207349"], ["https://data.delijn.be/stops/101161", "https://data.delijn.be/stops/105972"], ["https://data.delijn.be/stops/590412", "https://data.delijn.be/stops/590413"], ["https://data.delijn.be/stops/206258", "https://data.delijn.be/stops/207257"], ["https://data.delijn.be/stops/301698", "https://data.delijn.be/stops/301701"], ["https://data.delijn.be/stops/105036", "https://data.delijn.be/stops/108057"], ["https://data.delijn.be/stops/107741", "https://data.delijn.be/stops/107744"], ["https://data.delijn.be/stops/505352", "https://data.delijn.be/stops/507295"], ["https://data.delijn.be/stops/401147", "https://data.delijn.be/stops/401525"], ["https://data.delijn.be/stops/200552", "https://data.delijn.be/stops/200568"], ["https://data.delijn.be/stops/408248", "https://data.delijn.be/stops/308289"], ["https://data.delijn.be/stops/202512", "https://data.delijn.be/stops/203513"], ["https://data.delijn.be/stops/303474", "https://data.delijn.be/stops/303483"], ["https://data.delijn.be/stops/201257", "https://data.delijn.be/stops/203136"], ["https://data.delijn.be/stops/206970", "https://data.delijn.be/stops/206971"], ["https://data.delijn.be/stops/409296", "https://data.delijn.be/stops/410114"], ["https://data.delijn.be/stops/200433", "https://data.delijn.be/stops/200434"], ["https://data.delijn.be/stops/206931", "https://data.delijn.be/stops/207098"], ["https://data.delijn.be/stops/501360", "https://data.delijn.be/stops/506348"], ["https://data.delijn.be/stops/503608", "https://data.delijn.be/stops/503789"], ["https://data.delijn.be/stops/206770", "https://data.delijn.be/stops/209034"], ["https://data.delijn.be/stops/200392", "https://data.delijn.be/stops/201012"], ["https://data.delijn.be/stops/201742", "https://data.delijn.be/stops/203382"], ["https://data.delijn.be/stops/304984", "https://data.delijn.be/stops/308028"], ["https://data.delijn.be/stops/407675", "https://data.delijn.be/stops/407678"], ["https://data.delijn.be/stops/509258", "https://data.delijn.be/stops/509683"], ["https://data.delijn.be/stops/407897", "https://data.delijn.be/stops/407937"], ["https://data.delijn.be/stops/405913", "https://data.delijn.be/stops/405933"], ["https://data.delijn.be/stops/402224", "https://data.delijn.be/stops/402236"], ["https://data.delijn.be/stops/303708", "https://data.delijn.be/stops/303741"], ["https://data.delijn.be/stops/406221", "https://data.delijn.be/stops/410188"], ["https://data.delijn.be/stops/305136", "https://data.delijn.be/stops/305214"], ["https://data.delijn.be/stops/200453", "https://data.delijn.be/stops/201842"], ["https://data.delijn.be/stops/402819", "https://data.delijn.be/stops/409446"], ["https://data.delijn.be/stops/303282", "https://data.delijn.be/stops/304638"], ["https://data.delijn.be/stops/401515", "https://data.delijn.be/stops/401581"], ["https://data.delijn.be/stops/206948", "https://data.delijn.be/stops/207593"], ["https://data.delijn.be/stops/204252", "https://data.delijn.be/stops/205252"], ["https://data.delijn.be/stops/105450", "https://data.delijn.be/stops/109937"], ["https://data.delijn.be/stops/302108", "https://data.delijn.be/stops/302123"], ["https://data.delijn.be/stops/404674", "https://data.delijn.be/stops/404677"], ["https://data.delijn.be/stops/107406", "https://data.delijn.be/stops/107407"], ["https://data.delijn.be/stops/302564", "https://data.delijn.be/stops/308121"], ["https://data.delijn.be/stops/103728", "https://data.delijn.be/stops/109446"], ["https://data.delijn.be/stops/104133", "https://data.delijn.be/stops/108262"], ["https://data.delijn.be/stops/206450", "https://data.delijn.be/stops/206451"], ["https://data.delijn.be/stops/109240", "https://data.delijn.be/stops/109241"], ["https://data.delijn.be/stops/305592", "https://data.delijn.be/stops/307514"], ["https://data.delijn.be/stops/306330", "https://data.delijn.be/stops/306332"], ["https://data.delijn.be/stops/204687", "https://data.delijn.be/stops/205664"], ["https://data.delijn.be/stops/504624", "https://data.delijn.be/stops/509630"], ["https://data.delijn.be/stops/204710", "https://data.delijn.be/stops/205314"], ["https://data.delijn.be/stops/501332", "https://data.delijn.be/stops/506327"], ["https://data.delijn.be/stops/305074", "https://data.delijn.be/stops/305152"], ["https://data.delijn.be/stops/502424", "https://data.delijn.be/stops/507421"], ["https://data.delijn.be/stops/208416", "https://data.delijn.be/stops/208743"], ["https://data.delijn.be/stops/209253", "https://data.delijn.be/stops/209328"], ["https://data.delijn.be/stops/202662", "https://data.delijn.be/stops/202663"], ["https://data.delijn.be/stops/108408", "https://data.delijn.be/stops/108413"], ["https://data.delijn.be/stops/502095", "https://data.delijn.be/stops/507095"], ["https://data.delijn.be/stops/404756", "https://data.delijn.be/stops/404782"], ["https://data.delijn.be/stops/202126", "https://data.delijn.be/stops/203125"], ["https://data.delijn.be/stops/204719", "https://data.delijn.be/stops/214012"], ["https://data.delijn.be/stops/105019", "https://data.delijn.be/stops/105082"], ["https://data.delijn.be/stops/406272", "https://data.delijn.be/stops/406277"], ["https://data.delijn.be/stops/301353", "https://data.delijn.be/stops/304526"], ["https://data.delijn.be/stops/203237", "https://data.delijn.be/stops/203268"], ["https://data.delijn.be/stops/201055", "https://data.delijn.be/stops/202476"], ["https://data.delijn.be/stops/300390", "https://data.delijn.be/stops/300398"], ["https://data.delijn.be/stops/305064", "https://data.delijn.be/stops/306917"], ["https://data.delijn.be/stops/102014", "https://data.delijn.be/stops/105982"], ["https://data.delijn.be/stops/301529", "https://data.delijn.be/stops/301556"], ["https://data.delijn.be/stops/206300", "https://data.delijn.be/stops/207472"], ["https://data.delijn.be/stops/301734", "https://data.delijn.be/stops/308421"], ["https://data.delijn.be/stops/504409", "https://data.delijn.be/stops/509414"], ["https://data.delijn.be/stops/303711", "https://data.delijn.be/stops/307259"], ["https://data.delijn.be/stops/404427", "https://data.delijn.be/stops/404444"], ["https://data.delijn.be/stops/502282", "https://data.delijn.be/stops/505560"], ["https://data.delijn.be/stops/400623", "https://data.delijn.be/stops/404290"], ["https://data.delijn.be/stops/200269", "https://data.delijn.be/stops/203928"], ["https://data.delijn.be/stops/305993", "https://data.delijn.be/stops/307071"], ["https://data.delijn.be/stops/306311", "https://data.delijn.be/stops/306313"], ["https://data.delijn.be/stops/503566", "https://data.delijn.be/stops/503944"], ["https://data.delijn.be/stops/402756", "https://data.delijn.be/stops/408214"], ["https://data.delijn.be/stops/109265", "https://data.delijn.be/stops/109269"], ["https://data.delijn.be/stops/303281", "https://data.delijn.be/stops/308965"], ["https://data.delijn.be/stops/107277", "https://data.delijn.be/stops/107394"], ["https://data.delijn.be/stops/502247", "https://data.delijn.be/stops/502248"], ["https://data.delijn.be/stops/402597", "https://data.delijn.be/stops/402601"], ["https://data.delijn.be/stops/301219", "https://data.delijn.be/stops/301221"], ["https://data.delijn.be/stops/206023", "https://data.delijn.be/stops/207069"], ["https://data.delijn.be/stops/403316", "https://data.delijn.be/stops/407593"], ["https://data.delijn.be/stops/303644", "https://data.delijn.be/stops/306560"], ["https://data.delijn.be/stops/103475", "https://data.delijn.be/stops/104996"], ["https://data.delijn.be/stops/102958", "https://data.delijn.be/stops/107009"], ["https://data.delijn.be/stops/204178", "https://data.delijn.be/stops/205242"], ["https://data.delijn.be/stops/105479", "https://data.delijn.be/stops/105480"], ["https://data.delijn.be/stops/107181", "https://data.delijn.be/stops/107182"], ["https://data.delijn.be/stops/308357", "https://data.delijn.be/stops/308358"], ["https://data.delijn.be/stops/502692", "https://data.delijn.be/stops/507692"], ["https://data.delijn.be/stops/104605", "https://data.delijn.be/stops/107379"], ["https://data.delijn.be/stops/202121", "https://data.delijn.be/stops/203121"], ["https://data.delijn.be/stops/305148", "https://data.delijn.be/stops/308050"], ["https://data.delijn.be/stops/101006", "https://data.delijn.be/stops/108635"], ["https://data.delijn.be/stops/108964", "https://data.delijn.be/stops/108968"], ["https://data.delijn.be/stops/207900", "https://data.delijn.be/stops/306078"], ["https://data.delijn.be/stops/301235", "https://data.delijn.be/stops/307622"], ["https://data.delijn.be/stops/105724", "https://data.delijn.be/stops/107860"], ["https://data.delijn.be/stops/401960", "https://data.delijn.be/stops/407043"], ["https://data.delijn.be/stops/503570", "https://data.delijn.be/stops/504774"], ["https://data.delijn.be/stops/206900", "https://data.delijn.be/stops/207900"], ["https://data.delijn.be/stops/104637", "https://data.delijn.be/stops/108036"], ["https://data.delijn.be/stops/305216", "https://data.delijn.be/stops/306964"], ["https://data.delijn.be/stops/502218", "https://data.delijn.be/stops/507218"], ["https://data.delijn.be/stops/502278", "https://data.delijn.be/stops/502281"], ["https://data.delijn.be/stops/205122", "https://data.delijn.be/stops/205126"], ["https://data.delijn.be/stops/307863", "https://data.delijn.be/stops/307864"], ["https://data.delijn.be/stops/402095", "https://data.delijn.be/stops/402334"], ["https://data.delijn.be/stops/109341", "https://data.delijn.be/stops/109342"], ["https://data.delijn.be/stops/403812", "https://data.delijn.be/stops/403813"], ["https://data.delijn.be/stops/400356", "https://data.delijn.be/stops/400357"], ["https://data.delijn.be/stops/503260", "https://data.delijn.be/stops/509765"], ["https://data.delijn.be/stops/503958", "https://data.delijn.be/stops/504663"], ["https://data.delijn.be/stops/202874", "https://data.delijn.be/stops/203873"], ["https://data.delijn.be/stops/206015", "https://data.delijn.be/stops/206055"], ["https://data.delijn.be/stops/108069", "https://data.delijn.be/stops/108071"], ["https://data.delijn.be/stops/503661", "https://data.delijn.be/stops/505128"], ["https://data.delijn.be/stops/303631", "https://data.delijn.be/stops/303632"], ["https://data.delijn.be/stops/202511", "https://data.delijn.be/stops/203607"], ["https://data.delijn.be/stops/105101", "https://data.delijn.be/stops/109504"], ["https://data.delijn.be/stops/408889", "https://data.delijn.be/stops/408890"], ["https://data.delijn.be/stops/502420", "https://data.delijn.be/stops/507421"], ["https://data.delijn.be/stops/107409", "https://data.delijn.be/stops/107599"], ["https://data.delijn.be/stops/109882", "https://data.delijn.be/stops/205820"], ["https://data.delijn.be/stops/107670", "https://data.delijn.be/stops/107980"], ["https://data.delijn.be/stops/401493", "https://data.delijn.be/stops/401586"], ["https://data.delijn.be/stops/304478", "https://data.delijn.be/stops/304491"], ["https://data.delijn.be/stops/407273", "https://data.delijn.be/stops/407303"], ["https://data.delijn.be/stops/204378", "https://data.delijn.be/stops/204420"], ["https://data.delijn.be/stops/503647", "https://data.delijn.be/stops/503730"], ["https://data.delijn.be/stops/400200", "https://data.delijn.be/stops/400229"], ["https://data.delijn.be/stops/410353", "https://data.delijn.be/stops/410354"], ["https://data.delijn.be/stops/108181", "https://data.delijn.be/stops/108182"], ["https://data.delijn.be/stops/405340", "https://data.delijn.be/stops/405349"], ["https://data.delijn.be/stops/405276", "https://data.delijn.be/stops/405277"], ["https://data.delijn.be/stops/305560", "https://data.delijn.be/stops/308688"], ["https://data.delijn.be/stops/507665", "https://data.delijn.be/stops/507925"], ["https://data.delijn.be/stops/305179", "https://data.delijn.be/stops/305210"], ["https://data.delijn.be/stops/502105", "https://data.delijn.be/stops/507105"], ["https://data.delijn.be/stops/201044", "https://data.delijn.be/stops/203142"], ["https://data.delijn.be/stops/402195", "https://data.delijn.be/stops/402362"], ["https://data.delijn.be/stops/408021", "https://data.delijn.be/stops/408125"], ["https://data.delijn.be/stops/303864", "https://data.delijn.be/stops/303867"], ["https://data.delijn.be/stops/109775", "https://data.delijn.be/stops/109777"], ["https://data.delijn.be/stops/102829", "https://data.delijn.be/stops/104775"], ["https://data.delijn.be/stops/302521", "https://data.delijn.be/stops/302531"], ["https://data.delijn.be/stops/503536", "https://data.delijn.be/stops/508536"], ["https://data.delijn.be/stops/303025", "https://data.delijn.be/stops/303026"], ["https://data.delijn.be/stops/503355", "https://data.delijn.be/stops/503880"], ["https://data.delijn.be/stops/104773", "https://data.delijn.be/stops/108154"], ["https://data.delijn.be/stops/108376", "https://data.delijn.be/stops/108462"], ["https://data.delijn.be/stops/206112", "https://data.delijn.be/stops/207112"], ["https://data.delijn.be/stops/502223", "https://data.delijn.be/stops/509796"], ["https://data.delijn.be/stops/505977", "https://data.delijn.be/stops/509387"], ["https://data.delijn.be/stops/101690", "https://data.delijn.be/stops/107400"], ["https://data.delijn.be/stops/301040", "https://data.delijn.be/stops/301050"], ["https://data.delijn.be/stops/104467", "https://data.delijn.be/stops/106293"], ["https://data.delijn.be/stops/102428", "https://data.delijn.be/stops/109127"], ["https://data.delijn.be/stops/502237", "https://data.delijn.be/stops/507237"], ["https://data.delijn.be/stops/403602", "https://data.delijn.be/stops/403645"], ["https://data.delijn.be/stops/405232", "https://data.delijn.be/stops/410165"], ["https://data.delijn.be/stops/406611", "https://data.delijn.be/stops/406645"], ["https://data.delijn.be/stops/504233", "https://data.delijn.be/stops/505842"], ["https://data.delijn.be/stops/204232", "https://data.delijn.be/stops/204261"], ["https://data.delijn.be/stops/204651", "https://data.delijn.be/stops/205651"], ["https://data.delijn.be/stops/103128", "https://data.delijn.be/stops/106878"], ["https://data.delijn.be/stops/503315", "https://data.delijn.be/stops/503320"], ["https://data.delijn.be/stops/407802", "https://data.delijn.be/stops/407808"], ["https://data.delijn.be/stops/101459", "https://data.delijn.be/stops/109286"], ["https://data.delijn.be/stops/102459", "https://data.delijn.be/stops/406861"], ["https://data.delijn.be/stops/402517", "https://data.delijn.be/stops/402523"], ["https://data.delijn.be/stops/300389", "https://data.delijn.be/stops/304613"], ["https://data.delijn.be/stops/404185", "https://data.delijn.be/stops/410184"], ["https://data.delijn.be/stops/504685", "https://data.delijn.be/stops/509619"], ["https://data.delijn.be/stops/105554", "https://data.delijn.be/stops/106036"], ["https://data.delijn.be/stops/202433", "https://data.delijn.be/stops/203433"], ["https://data.delijn.be/stops/401514", "https://data.delijn.be/stops/404480"], ["https://data.delijn.be/stops/102720", "https://data.delijn.be/stops/104724"], ["https://data.delijn.be/stops/206915", "https://data.delijn.be/stops/207301"], ["https://data.delijn.be/stops/501363", "https://data.delijn.be/stops/501367"], ["https://data.delijn.be/stops/202207", "https://data.delijn.be/stops/202770"], ["https://data.delijn.be/stops/101831", "https://data.delijn.be/stops/107008"], ["https://data.delijn.be/stops/204785", "https://data.delijn.be/stops/205789"], ["https://data.delijn.be/stops/102126", "https://data.delijn.be/stops/105064"], ["https://data.delijn.be/stops/306050", "https://data.delijn.be/stops/306052"], ["https://data.delijn.be/stops/400439", "https://data.delijn.be/stops/400681"], ["https://data.delijn.be/stops/207034", "https://data.delijn.be/stops/207215"], ["https://data.delijn.be/stops/503568", "https://data.delijn.be/stops/505935"], ["https://data.delijn.be/stops/206887", "https://data.delijn.be/stops/206892"], ["https://data.delijn.be/stops/301604", "https://data.delijn.be/stops/301605"], ["https://data.delijn.be/stops/403904", "https://data.delijn.be/stops/403905"], ["https://data.delijn.be/stops/302107", "https://data.delijn.be/stops/302125"], ["https://data.delijn.be/stops/407525", "https://data.delijn.be/stops/407549"], ["https://data.delijn.be/stops/206688", "https://data.delijn.be/stops/207716"], ["https://data.delijn.be/stops/406874", "https://data.delijn.be/stops/408481"], ["https://data.delijn.be/stops/402314", "https://data.delijn.be/stops/405082"], ["https://data.delijn.be/stops/204759", "https://data.delijn.be/stops/205484"], ["https://data.delijn.be/stops/302386", "https://data.delijn.be/stops/304818"], ["https://data.delijn.be/stops/409631", "https://data.delijn.be/stops/409642"], ["https://data.delijn.be/stops/406329", "https://data.delijn.be/stops/406346"], ["https://data.delijn.be/stops/509462", "https://data.delijn.be/stops/509465"], ["https://data.delijn.be/stops/208791", "https://data.delijn.be/stops/209782"], ["https://data.delijn.be/stops/201566", "https://data.delijn.be/stops/210121"], ["https://data.delijn.be/stops/304097", "https://data.delijn.be/stops/307507"], ["https://data.delijn.be/stops/303247", "https://data.delijn.be/stops/303659"], ["https://data.delijn.be/stops/108822", "https://data.delijn.be/stops/108829"], ["https://data.delijn.be/stops/210010", "https://data.delijn.be/stops/509781"], ["https://data.delijn.be/stops/200762", "https://data.delijn.be/stops/505279"], ["https://data.delijn.be/stops/200217", "https://data.delijn.be/stops/201213"], ["https://data.delijn.be/stops/502750", "https://data.delijn.be/stops/507050"], ["https://data.delijn.be/stops/302739", "https://data.delijn.be/stops/302743"], ["https://data.delijn.be/stops/505823", "https://data.delijn.be/stops/508134"], ["https://data.delijn.be/stops/504567", "https://data.delijn.be/stops/504569"], ["https://data.delijn.be/stops/302062", "https://data.delijn.be/stops/302063"], ["https://data.delijn.be/stops/303009", "https://data.delijn.be/stops/306101"], ["https://data.delijn.be/stops/101934", "https://data.delijn.be/stops/107739"], ["https://data.delijn.be/stops/501445", "https://data.delijn.be/stops/506556"], ["https://data.delijn.be/stops/400569", "https://data.delijn.be/stops/404152"], ["https://data.delijn.be/stops/406685", "https://data.delijn.be/stops/406688"], ["https://data.delijn.be/stops/206098", "https://data.delijn.be/stops/207098"], ["https://data.delijn.be/stops/208161", "https://data.delijn.be/stops/209160"], ["https://data.delijn.be/stops/102795", "https://data.delijn.be/stops/102800"], ["https://data.delijn.be/stops/101332", "https://data.delijn.be/stops/106675"], ["https://data.delijn.be/stops/504269", "https://data.delijn.be/stops/505912"], ["https://data.delijn.be/stops/209218", "https://data.delijn.be/stops/209219"], ["https://data.delijn.be/stops/210034", "https://data.delijn.be/stops/211034"], ["https://data.delijn.be/stops/408610", "https://data.delijn.be/stops/408611"], ["https://data.delijn.be/stops/405965", "https://data.delijn.be/stops/405987"], ["https://data.delijn.be/stops/400449", "https://data.delijn.be/stops/400948"], ["https://data.delijn.be/stops/408663", "https://data.delijn.be/stops/408817"], ["https://data.delijn.be/stops/109913", "https://data.delijn.be/stops/109917"], ["https://data.delijn.be/stops/508034", "https://data.delijn.be/stops/508274"], ["https://data.delijn.be/stops/305295", "https://data.delijn.be/stops/305887"], ["https://data.delijn.be/stops/204121", "https://data.delijn.be/stops/204786"], ["https://data.delijn.be/stops/407804", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/209217", "https://data.delijn.be/stops/209592"], ["https://data.delijn.be/stops/102860", "https://data.delijn.be/stops/105180"], ["https://data.delijn.be/stops/401472", "https://data.delijn.be/stops/405221"], ["https://data.delijn.be/stops/300944", "https://data.delijn.be/stops/303668"], ["https://data.delijn.be/stops/105718", "https://data.delijn.be/stops/106434"], ["https://data.delijn.be/stops/401463", "https://data.delijn.be/stops/401475"], ["https://data.delijn.be/stops/206337", "https://data.delijn.be/stops/207741"], ["https://data.delijn.be/stops/304139", "https://data.delijn.be/stops/307765"], ["https://data.delijn.be/stops/102182", "https://data.delijn.be/stops/107070"], ["https://data.delijn.be/stops/402125", "https://data.delijn.be/stops/402127"], ["https://data.delijn.be/stops/307546", "https://data.delijn.be/stops/307754"], ["https://data.delijn.be/stops/104784", "https://data.delijn.be/stops/107959"], ["https://data.delijn.be/stops/405660", "https://data.delijn.be/stops/303188"], ["https://data.delijn.be/stops/204608", "https://data.delijn.be/stops/205609"], ["https://data.delijn.be/stops/200966", "https://data.delijn.be/stops/201966"], ["https://data.delijn.be/stops/201350", "https://data.delijn.be/stops/201387"], ["https://data.delijn.be/stops/501206", "https://data.delijn.be/stops/501637"], ["https://data.delijn.be/stops/107964", "https://data.delijn.be/stops/107966"], ["https://data.delijn.be/stops/508129", "https://data.delijn.be/stops/508554"], ["https://data.delijn.be/stops/401824", "https://data.delijn.be/stops/401825"], ["https://data.delijn.be/stops/403552", "https://data.delijn.be/stops/410213"], ["https://data.delijn.be/stops/504696", "https://data.delijn.be/stops/509410"], ["https://data.delijn.be/stops/404267", "https://data.delijn.be/stops/410054"], ["https://data.delijn.be/stops/101384", "https://data.delijn.be/stops/101829"], ["https://data.delijn.be/stops/301691", "https://data.delijn.be/stops/301777"], ["https://data.delijn.be/stops/302323", "https://data.delijn.be/stops/302342"], ["https://data.delijn.be/stops/407370", "https://data.delijn.be/stops/407598"], ["https://data.delijn.be/stops/405883", "https://data.delijn.be/stops/409437"], ["https://data.delijn.be/stops/304033", "https://data.delijn.be/stops/304092"], ["https://data.delijn.be/stops/501511", "https://data.delijn.be/stops/506270"], ["https://data.delijn.be/stops/402772", "https://data.delijn.be/stops/408404"], ["https://data.delijn.be/stops/304811", "https://data.delijn.be/stops/304812"], ["https://data.delijn.be/stops/101652", "https://data.delijn.be/stops/103291"], ["https://data.delijn.be/stops/305066", "https://data.delijn.be/stops/305095"], ["https://data.delijn.be/stops/300424", "https://data.delijn.be/stops/300454"], ["https://data.delijn.be/stops/502458", "https://data.delijn.be/stops/502657"], ["https://data.delijn.be/stops/204669", "https://data.delijn.be/stops/205013"], ["https://data.delijn.be/stops/101823", "https://data.delijn.be/stops/102392"], ["https://data.delijn.be/stops/400296", "https://data.delijn.be/stops/400364"], ["https://data.delijn.be/stops/208054", "https://data.delijn.be/stops/208657"], ["https://data.delijn.be/stops/308088", "https://data.delijn.be/stops/308089"], ["https://data.delijn.be/stops/101748", "https://data.delijn.be/stops/105799"], ["https://data.delijn.be/stops/103721", "https://data.delijn.be/stops/305815"], ["https://data.delijn.be/stops/504209", "https://data.delijn.be/stops/504633"], ["https://data.delijn.be/stops/308534", "https://data.delijn.be/stops/308955"], ["https://data.delijn.be/stops/405732", "https://data.delijn.be/stops/405733"], ["https://data.delijn.be/stops/504347", "https://data.delijn.be/stops/509347"], ["https://data.delijn.be/stops/208173", "https://data.delijn.be/stops/209172"], ["https://data.delijn.be/stops/300397", "https://data.delijn.be/stops/304587"], ["https://data.delijn.be/stops/503475", "https://data.delijn.be/stops/508269"], ["https://data.delijn.be/stops/508826", "https://data.delijn.be/stops/508985"], ["https://data.delijn.be/stops/305548", "https://data.delijn.be/stops/305579"], ["https://data.delijn.be/stops/401245", "https://data.delijn.be/stops/401478"], ["https://data.delijn.be/stops/502245", "https://data.delijn.be/stops/502248"], ["https://data.delijn.be/stops/101460", "https://data.delijn.be/stops/107065"], ["https://data.delijn.be/stops/208145", "https://data.delijn.be/stops/209145"], ["https://data.delijn.be/stops/402302", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/304541", "https://data.delijn.be/stops/307764"], ["https://data.delijn.be/stops/202140", "https://data.delijn.be/stops/202154"], ["https://data.delijn.be/stops/208158", "https://data.delijn.be/stops/209510"], ["https://data.delijn.be/stops/207228", "https://data.delijn.be/stops/302115"], ["https://data.delijn.be/stops/401463", "https://data.delijn.be/stops/403895"], ["https://data.delijn.be/stops/208359", "https://data.delijn.be/stops/209706"], ["https://data.delijn.be/stops/304876", "https://data.delijn.be/stops/304877"], ["https://data.delijn.be/stops/202241", "https://data.delijn.be/stops/203957"], ["https://data.delijn.be/stops/303306", "https://data.delijn.be/stops/303329"], ["https://data.delijn.be/stops/204327", "https://data.delijn.be/stops/204499"], ["https://data.delijn.be/stops/200817", "https://data.delijn.be/stops/202056"], ["https://data.delijn.be/stops/503100", "https://data.delijn.be/stops/508437"], ["https://data.delijn.be/stops/205040", "https://data.delijn.be/stops/205041"], ["https://data.delijn.be/stops/506459", "https://data.delijn.be/stops/506461"], ["https://data.delijn.be/stops/208127", "https://data.delijn.be/stops/209075"], ["https://data.delijn.be/stops/204068", "https://data.delijn.be/stops/204404"], ["https://data.delijn.be/stops/402154", "https://data.delijn.be/stops/402155"], ["https://data.delijn.be/stops/200566", "https://data.delijn.be/stops/201669"], ["https://data.delijn.be/stops/307777", "https://data.delijn.be/stops/307778"], ["https://data.delijn.be/stops/306616", "https://data.delijn.be/stops/306619"], ["https://data.delijn.be/stops/302951", "https://data.delijn.be/stops/302952"], ["https://data.delijn.be/stops/405505", "https://data.delijn.be/stops/410087"], ["https://data.delijn.be/stops/403215", "https://data.delijn.be/stops/403389"], ["https://data.delijn.be/stops/305052", "https://data.delijn.be/stops/306925"], ["https://data.delijn.be/stops/201807", "https://data.delijn.be/stops/201814"], ["https://data.delijn.be/stops/509780", "https://data.delijn.be/stops/509893"], ["https://data.delijn.be/stops/501412", "https://data.delijn.be/stops/505781"], ["https://data.delijn.be/stops/101385", "https://data.delijn.be/stops/102570"], ["https://data.delijn.be/stops/503403", "https://data.delijn.be/stops/509760"], ["https://data.delijn.be/stops/504808", "https://data.delijn.be/stops/504809"], ["https://data.delijn.be/stops/401651", "https://data.delijn.be/stops/401652"], ["https://data.delijn.be/stops/503320", "https://data.delijn.be/stops/508320"], ["https://data.delijn.be/stops/102456", "https://data.delijn.be/stops/102464"], ["https://data.delijn.be/stops/103206", "https://data.delijn.be/stops/106440"], ["https://data.delijn.be/stops/407305", "https://data.delijn.be/stops/407343"], ["https://data.delijn.be/stops/505145", "https://data.delijn.be/stops/505720"], ["https://data.delijn.be/stops/400529", "https://data.delijn.be/stops/403027"], ["https://data.delijn.be/stops/106923", "https://data.delijn.be/stops/106944"], ["https://data.delijn.be/stops/402270", "https://data.delijn.be/stops/402357"], ["https://data.delijn.be/stops/107966", "https://data.delijn.be/stops/108034"], ["https://data.delijn.be/stops/302570", "https://data.delijn.be/stops/302576"], ["https://data.delijn.be/stops/505836", "https://data.delijn.be/stops/509796"], ["https://data.delijn.be/stops/501135", "https://data.delijn.be/stops/506139"], ["https://data.delijn.be/stops/200443", "https://data.delijn.be/stops/202133"], ["https://data.delijn.be/stops/407818", "https://data.delijn.be/stops/408263"], ["https://data.delijn.be/stops/303424", "https://data.delijn.be/stops/303427"], ["https://data.delijn.be/stops/200479", "https://data.delijn.be/stops/201887"], ["https://data.delijn.be/stops/308515", "https://data.delijn.be/stops/308690"], ["https://data.delijn.be/stops/206525", "https://data.delijn.be/stops/216007"], ["https://data.delijn.be/stops/200954", "https://data.delijn.be/stops/201625"], ["https://data.delijn.be/stops/303169", "https://data.delijn.be/stops/307290"], ["https://data.delijn.be/stops/301230", "https://data.delijn.be/stops/301247"], ["https://data.delijn.be/stops/301044", "https://data.delijn.be/stops/308925"], ["https://data.delijn.be/stops/200557", "https://data.delijn.be/stops/201557"], ["https://data.delijn.be/stops/208061", "https://data.delijn.be/stops/209061"], ["https://data.delijn.be/stops/103496", "https://data.delijn.be/stops/103732"], ["https://data.delijn.be/stops/405777", "https://data.delijn.be/stops/405873"], ["https://data.delijn.be/stops/301298", "https://data.delijn.be/stops/307324"], ["https://data.delijn.be/stops/202199", "https://data.delijn.be/stops/203764"], ["https://data.delijn.be/stops/408088", "https://data.delijn.be/stops/408279"], ["https://data.delijn.be/stops/204177", "https://data.delijn.be/stops/205241"], ["https://data.delijn.be/stops/403485", "https://data.delijn.be/stops/403837"], ["https://data.delijn.be/stops/208343", "https://data.delijn.be/stops/218031"], ["https://data.delijn.be/stops/401080", "https://data.delijn.be/stops/401081"], ["https://data.delijn.be/stops/504366", "https://data.delijn.be/stops/504367"], ["https://data.delijn.be/stops/109148", "https://data.delijn.be/stops/109192"], ["https://data.delijn.be/stops/101419", "https://data.delijn.be/stops/106954"], ["https://data.delijn.be/stops/102659", "https://data.delijn.be/stops/104825"], ["https://data.delijn.be/stops/301658", "https://data.delijn.be/stops/301894"], ["https://data.delijn.be/stops/502489", "https://data.delijn.be/stops/507714"], ["https://data.delijn.be/stops/105663", "https://data.delijn.be/stops/109895"], ["https://data.delijn.be/stops/205046", "https://data.delijn.be/stops/205518"], ["https://data.delijn.be/stops/404368", "https://data.delijn.be/stops/405669"], ["https://data.delijn.be/stops/402175", "https://data.delijn.be/stops/402382"], ["https://data.delijn.be/stops/208006", "https://data.delijn.be/stops/209005"], ["https://data.delijn.be/stops/211017", "https://data.delijn.be/stops/502315"], ["https://data.delijn.be/stops/301242", "https://data.delijn.be/stops/307850"], ["https://data.delijn.be/stops/404810", "https://data.delijn.be/stops/406815"], ["https://data.delijn.be/stops/303980", "https://data.delijn.be/stops/306632"], ["https://data.delijn.be/stops/401275", "https://data.delijn.be/stops/408418"], ["https://data.delijn.be/stops/407291", "https://data.delijn.be/stops/407311"], ["https://data.delijn.be/stops/107971", "https://data.delijn.be/stops/306759"], ["https://data.delijn.be/stops/301721", "https://data.delijn.be/stops/308878"], ["https://data.delijn.be/stops/308480", "https://data.delijn.be/stops/308483"], ["https://data.delijn.be/stops/405184", "https://data.delijn.be/stops/409645"], ["https://data.delijn.be/stops/407982", "https://data.delijn.be/stops/408014"], ["https://data.delijn.be/stops/206475", "https://data.delijn.be/stops/206508"], ["https://data.delijn.be/stops/400215", "https://data.delijn.be/stops/400217"], ["https://data.delijn.be/stops/201406", "https://data.delijn.be/stops/202358"], ["https://data.delijn.be/stops/202229", "https://data.delijn.be/stops/203229"], ["https://data.delijn.be/stops/302754", "https://data.delijn.be/stops/302760"], ["https://data.delijn.be/stops/206136", "https://data.delijn.be/stops/206469"], ["https://data.delijn.be/stops/409092", "https://data.delijn.be/stops/409224"], ["https://data.delijn.be/stops/102509", "https://data.delijn.be/stops/406457"], ["https://data.delijn.be/stops/208088", "https://data.delijn.be/stops/209069"], ["https://data.delijn.be/stops/409270", "https://data.delijn.be/stops/409298"], ["https://data.delijn.be/stops/209182", "https://data.delijn.be/stops/218019"], ["https://data.delijn.be/stops/503656", "https://data.delijn.be/stops/508658"], ["https://data.delijn.be/stops/407812", "https://data.delijn.be/stops/407970"], ["https://data.delijn.be/stops/400600", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/407715", "https://data.delijn.be/stops/407717"], ["https://data.delijn.be/stops/505701", "https://data.delijn.be/stops/507638"], ["https://data.delijn.be/stops/501084", "https://data.delijn.be/stops/506084"], ["https://data.delijn.be/stops/503220", "https://data.delijn.be/stops/508224"], ["https://data.delijn.be/stops/406321", "https://data.delijn.be/stops/406393"], ["https://data.delijn.be/stops/304285", "https://data.delijn.be/stops/304286"], ["https://data.delijn.be/stops/207756", "https://data.delijn.be/stops/208757"], ["https://data.delijn.be/stops/201475", "https://data.delijn.be/stops/210057"], ["https://data.delijn.be/stops/404771", "https://data.delijn.be/stops/404784"], ["https://data.delijn.be/stops/400503", "https://data.delijn.be/stops/404049"], ["https://data.delijn.be/stops/401390", "https://data.delijn.be/stops/402821"], ["https://data.delijn.be/stops/105642", "https://data.delijn.be/stops/105799"], ["https://data.delijn.be/stops/306835", "https://data.delijn.be/stops/308541"], ["https://data.delijn.be/stops/209367", "https://data.delijn.be/stops/209374"], ["https://data.delijn.be/stops/502148", "https://data.delijn.be/stops/507095"], ["https://data.delijn.be/stops/406112", "https://data.delijn.be/stops/410199"], ["https://data.delijn.be/stops/109453", "https://data.delijn.be/stops/109455"], ["https://data.delijn.be/stops/505355", "https://data.delijn.be/stops/506218"], ["https://data.delijn.be/stops/109638", "https://data.delijn.be/stops/109641"], ["https://data.delijn.be/stops/204682", "https://data.delijn.be/stops/204683"], ["https://data.delijn.be/stops/403190", "https://data.delijn.be/stops/403820"], ["https://data.delijn.be/stops/206924", "https://data.delijn.be/stops/207924"], ["https://data.delijn.be/stops/301179", "https://data.delijn.be/stops/301459"], ["https://data.delijn.be/stops/200842", "https://data.delijn.be/stops/203307"], ["https://data.delijn.be/stops/504230", "https://data.delijn.be/stops/509236"], ["https://data.delijn.be/stops/202556", "https://data.delijn.be/stops/203560"], ["https://data.delijn.be/stops/101571", "https://data.delijn.be/stops/103982"], ["https://data.delijn.be/stops/304073", "https://data.delijn.be/stops/308644"], ["https://data.delijn.be/stops/504376", "https://data.delijn.be/stops/505060"], ["https://data.delijn.be/stops/202343", "https://data.delijn.be/stops/210047"], ["https://data.delijn.be/stops/105865", "https://data.delijn.be/stops/105866"], ["https://data.delijn.be/stops/206869", "https://data.delijn.be/stops/209747"], ["https://data.delijn.be/stops/404728", "https://data.delijn.be/stops/404835"], ["https://data.delijn.be/stops/509203", "https://data.delijn.be/stops/509206"], ["https://data.delijn.be/stops/109495", "https://data.delijn.be/stops/304042"], ["https://data.delijn.be/stops/102973", "https://data.delijn.be/stops/105570"], ["https://data.delijn.be/stops/206990", "https://data.delijn.be/stops/301429"], ["https://data.delijn.be/stops/403442", "https://data.delijn.be/stops/403479"], ["https://data.delijn.be/stops/205610", "https://data.delijn.be/stops/205611"], ["https://data.delijn.be/stops/104879", "https://data.delijn.be/stops/109973"], ["https://data.delijn.be/stops/206223", "https://data.delijn.be/stops/207222"], ["https://data.delijn.be/stops/400106", "https://data.delijn.be/stops/400164"], ["https://data.delijn.be/stops/405942", "https://data.delijn.be/stops/405999"], ["https://data.delijn.be/stops/202763", "https://data.delijn.be/stops/203762"], ["https://data.delijn.be/stops/201401", "https://data.delijn.be/stops/203364"], ["https://data.delijn.be/stops/505244", "https://data.delijn.be/stops/507211"], ["https://data.delijn.be/stops/504107", "https://data.delijn.be/stops/504446"], ["https://data.delijn.be/stops/200577", "https://data.delijn.be/stops/201576"], ["https://data.delijn.be/stops/408722", "https://data.delijn.be/stops/408732"], ["https://data.delijn.be/stops/505710", "https://data.delijn.be/stops/509145"], ["https://data.delijn.be/stops/505644", "https://data.delijn.be/stops/505706"], ["https://data.delijn.be/stops/105221", "https://data.delijn.be/stops/105224"], ["https://data.delijn.be/stops/101724", "https://data.delijn.be/stops/106802"], ["https://data.delijn.be/stops/301114", "https://data.delijn.be/stops/301115"], ["https://data.delijn.be/stops/404455", "https://data.delijn.be/stops/404456"], ["https://data.delijn.be/stops/105012", "https://data.delijn.be/stops/105014"], ["https://data.delijn.be/stops/408517", "https://data.delijn.be/stops/408679"], ["https://data.delijn.be/stops/107811", "https://data.delijn.be/stops/107944"], ["https://data.delijn.be/stops/200153", "https://data.delijn.be/stops/202359"], ["https://data.delijn.be/stops/504474", "https://data.delijn.be/stops/509474"], ["https://data.delijn.be/stops/200751", "https://data.delijn.be/stops/208319"], ["https://data.delijn.be/stops/206221", "https://data.delijn.be/stops/206372"], ["https://data.delijn.be/stops/208096", "https://data.delijn.be/stops/209096"], ["https://data.delijn.be/stops/303252", "https://data.delijn.be/stops/303261"], ["https://data.delijn.be/stops/503614", "https://data.delijn.be/stops/508605"], ["https://data.delijn.be/stops/504638", "https://data.delijn.be/stops/509638"], ["https://data.delijn.be/stops/102583", "https://data.delijn.be/stops/109110"], ["https://data.delijn.be/stops/205131", "https://data.delijn.be/stops/207635"], ["https://data.delijn.be/stops/202128", "https://data.delijn.be/stops/202578"], ["https://data.delijn.be/stops/302743", "https://data.delijn.be/stops/305552"], ["https://data.delijn.be/stops/402450", "https://data.delijn.be/stops/407495"], ["https://data.delijn.be/stops/405147", "https://data.delijn.be/stops/405203"], ["https://data.delijn.be/stops/206194", "https://data.delijn.be/stops/206367"], ["https://data.delijn.be/stops/501488", "https://data.delijn.be/stops/506488"], ["https://data.delijn.be/stops/202065", "https://data.delijn.be/stops/202711"], ["https://data.delijn.be/stops/403507", "https://data.delijn.be/stops/410336"], ["https://data.delijn.be/stops/505709", "https://data.delijn.be/stops/509148"], ["https://data.delijn.be/stops/102093", "https://data.delijn.be/stops/109817"], ["https://data.delijn.be/stops/404851", "https://data.delijn.be/stops/404855"], ["https://data.delijn.be/stops/401835", "https://data.delijn.be/stops/406047"], ["https://data.delijn.be/stops/305548", "https://data.delijn.be/stops/307185"], ["https://data.delijn.be/stops/407020", "https://data.delijn.be/stops/407076"], ["https://data.delijn.be/stops/400589", "https://data.delijn.be/stops/400616"], ["https://data.delijn.be/stops/300141", "https://data.delijn.be/stops/306812"], ["https://data.delijn.be/stops/200531", "https://data.delijn.be/stops/201289"], ["https://data.delijn.be/stops/305003", "https://data.delijn.be/stops/305020"], ["https://data.delijn.be/stops/405876", "https://data.delijn.be/stops/406879"], ["https://data.delijn.be/stops/206551", "https://data.delijn.be/stops/206869"], ["https://data.delijn.be/stops/200255", "https://data.delijn.be/stops/201258"], ["https://data.delijn.be/stops/102030", "https://data.delijn.be/stops/104124"], ["https://data.delijn.be/stops/504273", "https://data.delijn.be/stops/509270"], ["https://data.delijn.be/stops/507222", "https://data.delijn.be/stops/507375"], ["https://data.delijn.be/stops/302046", "https://data.delijn.be/stops/302047"], ["https://data.delijn.be/stops/403790", "https://data.delijn.be/stops/403791"], ["https://data.delijn.be/stops/507817", "https://data.delijn.be/stops/507818"], ["https://data.delijn.be/stops/301904", "https://data.delijn.be/stops/306118"], ["https://data.delijn.be/stops/403582", "https://data.delijn.be/stops/403583"], ["https://data.delijn.be/stops/102546", "https://data.delijn.be/stops/102548"], ["https://data.delijn.be/stops/206466", "https://data.delijn.be/stops/207469"], ["https://data.delijn.be/stops/107837", "https://data.delijn.be/stops/107838"], ["https://data.delijn.be/stops/204728", "https://data.delijn.be/stops/205727"], ["https://data.delijn.be/stops/407263", "https://data.delijn.be/stops/409498"], ["https://data.delijn.be/stops/206298", "https://data.delijn.be/stops/207298"], ["https://data.delijn.be/stops/204632", "https://data.delijn.be/stops/205632"], ["https://data.delijn.be/stops/106029", "https://data.delijn.be/stops/106032"], ["https://data.delijn.be/stops/304036", "https://data.delijn.be/stops/304864"], ["https://data.delijn.be/stops/408959", "https://data.delijn.be/stops/409126"], ["https://data.delijn.be/stops/400490", "https://data.delijn.be/stops/400491"], ["https://data.delijn.be/stops/504617", "https://data.delijn.be/stops/509630"], ["https://data.delijn.be/stops/401459", "https://data.delijn.be/stops/401540"], ["https://data.delijn.be/stops/406420", "https://data.delijn.be/stops/406421"], ["https://data.delijn.be/stops/503089", "https://data.delijn.be/stops/508094"], ["https://data.delijn.be/stops/108441", "https://data.delijn.be/stops/108442"], ["https://data.delijn.be/stops/301476", "https://data.delijn.be/stops/301477"], ["https://data.delijn.be/stops/206629", "https://data.delijn.be/stops/209571"], ["https://data.delijn.be/stops/406363", "https://data.delijn.be/stops/407099"], ["https://data.delijn.be/stops/408090", "https://data.delijn.be/stops/410345"], ["https://data.delijn.be/stops/301066", "https://data.delijn.be/stops/301067"], ["https://data.delijn.be/stops/308112", "https://data.delijn.be/stops/308820"], ["https://data.delijn.be/stops/106400", "https://data.delijn.be/stops/106401"], ["https://data.delijn.be/stops/206284", "https://data.delijn.be/stops/206873"], ["https://data.delijn.be/stops/505840", "https://data.delijn.be/stops/506046"], ["https://data.delijn.be/stops/408606", "https://data.delijn.be/stops/302833"], ["https://data.delijn.be/stops/206942", "https://data.delijn.be/stops/209100"], ["https://data.delijn.be/stops/403399", "https://data.delijn.be/stops/408453"], ["https://data.delijn.be/stops/501481", "https://data.delijn.be/stops/506471"], ["https://data.delijn.be/stops/204468", "https://data.delijn.be/stops/204780"], ["https://data.delijn.be/stops/300397", "https://data.delijn.be/stops/308963"], ["https://data.delijn.be/stops/204752", "https://data.delijn.be/stops/205753"], ["https://data.delijn.be/stops/200712", "https://data.delijn.be/stops/205400"], ["https://data.delijn.be/stops/502341", "https://data.delijn.be/stops/505308"], ["https://data.delijn.be/stops/302877", "https://data.delijn.be/stops/308674"], ["https://data.delijn.be/stops/402856", "https://data.delijn.be/stops/402858"], ["https://data.delijn.be/stops/503562", "https://data.delijn.be/stops/503573"], ["https://data.delijn.be/stops/102875", "https://data.delijn.be/stops/105365"], ["https://data.delijn.be/stops/408966", "https://data.delijn.be/stops/408967"], ["https://data.delijn.be/stops/206603", "https://data.delijn.be/stops/207976"], ["https://data.delijn.be/stops/301351", "https://data.delijn.be/stops/301367"], ["https://data.delijn.be/stops/300570", "https://data.delijn.be/stops/300727"], ["https://data.delijn.be/stops/204588", "https://data.delijn.be/stops/204771"], ["https://data.delijn.be/stops/504409", "https://data.delijn.be/stops/504472"], ["https://data.delijn.be/stops/102695", "https://data.delijn.be/stops/109673"], ["https://data.delijn.be/stops/300475", "https://data.delijn.be/stops/301570"], ["https://data.delijn.be/stops/108037", "https://data.delijn.be/stops/108043"], ["https://data.delijn.be/stops/101476", "https://data.delijn.be/stops/101964"], ["https://data.delijn.be/stops/409078", "https://data.delijn.be/stops/409079"], ["https://data.delijn.be/stops/302701", "https://data.delijn.be/stops/302702"], ["https://data.delijn.be/stops/401728", "https://data.delijn.be/stops/401771"], ["https://data.delijn.be/stops/108384", "https://data.delijn.be/stops/108385"], ["https://data.delijn.be/stops/208306", "https://data.delijn.be/stops/209306"], ["https://data.delijn.be/stops/218007", "https://data.delijn.be/stops/219007"], ["https://data.delijn.be/stops/101361", "https://data.delijn.be/stops/102187"], ["https://data.delijn.be/stops/102443", "https://data.delijn.be/stops/102444"], ["https://data.delijn.be/stops/405414", "https://data.delijn.be/stops/410018"], ["https://data.delijn.be/stops/101887", "https://data.delijn.be/stops/103152"], ["https://data.delijn.be/stops/201334", "https://data.delijn.be/stops/205920"], ["https://data.delijn.be/stops/206528", "https://data.delijn.be/stops/207480"], ["https://data.delijn.be/stops/405552", "https://data.delijn.be/stops/405582"], ["https://data.delijn.be/stops/200629", "https://data.delijn.be/stops/201629"], ["https://data.delijn.be/stops/300554", "https://data.delijn.be/stops/300568"], ["https://data.delijn.be/stops/301133", "https://data.delijn.be/stops/301134"], ["https://data.delijn.be/stops/300117", "https://data.delijn.be/stops/307733"], ["https://data.delijn.be/stops/401673", "https://data.delijn.be/stops/307626"], ["https://data.delijn.be/stops/402822", "https://data.delijn.be/stops/409231"], ["https://data.delijn.be/stops/403451", "https://data.delijn.be/stops/404435"], ["https://data.delijn.be/stops/201768", "https://data.delijn.be/stops/208270"], ["https://data.delijn.be/stops/402329", "https://data.delijn.be/stops/402405"], ["https://data.delijn.be/stops/301791", "https://data.delijn.be/stops/301792"], ["https://data.delijn.be/stops/208121", "https://data.delijn.be/stops/208201"], ["https://data.delijn.be/stops/306050", "https://data.delijn.be/stops/308676"], ["https://data.delijn.be/stops/509642", "https://data.delijn.be/stops/509657"], ["https://data.delijn.be/stops/502479", "https://data.delijn.be/stops/507471"], ["https://data.delijn.be/stops/204789", "https://data.delijn.be/stops/205788"], ["https://data.delijn.be/stops/208318", "https://data.delijn.be/stops/209318"], ["https://data.delijn.be/stops/202709", "https://data.delijn.be/stops/211709"], ["https://data.delijn.be/stops/104513", "https://data.delijn.be/stops/107797"], ["https://data.delijn.be/stops/202963", "https://data.delijn.be/stops/203963"], ["https://data.delijn.be/stops/206206", "https://data.delijn.be/stops/207199"], ["https://data.delijn.be/stops/501153", "https://data.delijn.be/stops/501668"], ["https://data.delijn.be/stops/102485", "https://data.delijn.be/stops/104955"], ["https://data.delijn.be/stops/302511", "https://data.delijn.be/stops/305841"], ["https://data.delijn.be/stops/206843", "https://data.delijn.be/stops/300843"], ["https://data.delijn.be/stops/400035", "https://data.delijn.be/stops/400319"], ["https://data.delijn.be/stops/403326", "https://data.delijn.be/stops/404039"], ["https://data.delijn.be/stops/305049", "https://data.delijn.be/stops/305088"], ["https://data.delijn.be/stops/300459", "https://data.delijn.be/stops/300476"], ["https://data.delijn.be/stops/401285", "https://data.delijn.be/stops/410207"], ["https://data.delijn.be/stops/303341", "https://data.delijn.be/stops/304712"], ["https://data.delijn.be/stops/501452", "https://data.delijn.be/stops/506452"], ["https://data.delijn.be/stops/103489", "https://data.delijn.be/stops/109360"], ["https://data.delijn.be/stops/102672", "https://data.delijn.be/stops/103497"], ["https://data.delijn.be/stops/302539", "https://data.delijn.be/stops/302544"], ["https://data.delijn.be/stops/208411", "https://data.delijn.be/stops/208766"], ["https://data.delijn.be/stops/109539", "https://data.delijn.be/stops/109584"], ["https://data.delijn.be/stops/404694", "https://data.delijn.be/stops/404697"], ["https://data.delijn.be/stops/505703", "https://data.delijn.be/stops/507542"], ["https://data.delijn.be/stops/303891", "https://data.delijn.be/stops/307889"], ["https://data.delijn.be/stops/408483", "https://data.delijn.be/stops/409011"], ["https://data.delijn.be/stops/303739", "https://data.delijn.be/stops/305970"], ["https://data.delijn.be/stops/406339", "https://data.delijn.be/stops/406405"], ["https://data.delijn.be/stops/200882", "https://data.delijn.be/stops/200898"], ["https://data.delijn.be/stops/502398", "https://data.delijn.be/stops/509794"], ["https://data.delijn.be/stops/102068", "https://data.delijn.be/stops/106931"], ["https://data.delijn.be/stops/202822", "https://data.delijn.be/stops/218503"], ["https://data.delijn.be/stops/307960", "https://data.delijn.be/stops/308073"], ["https://data.delijn.be/stops/404490", "https://data.delijn.be/stops/404523"], ["https://data.delijn.be/stops/208299", "https://data.delijn.be/stops/209299"], ["https://data.delijn.be/stops/102137", "https://data.delijn.be/stops/109217"], ["https://data.delijn.be/stops/102312", "https://data.delijn.be/stops/106258"], ["https://data.delijn.be/stops/101320", "https://data.delijn.be/stops/104124"], ["https://data.delijn.be/stops/200102", "https://data.delijn.be/stops/201102"], ["https://data.delijn.be/stops/406596", "https://data.delijn.be/stops/406597"], ["https://data.delijn.be/stops/408338", "https://data.delijn.be/stops/408339"], ["https://data.delijn.be/stops/407673", "https://data.delijn.be/stops/409803"], ["https://data.delijn.be/stops/303779", "https://data.delijn.be/stops/303782"], ["https://data.delijn.be/stops/205212", "https://data.delijn.be/stops/205452"], ["https://data.delijn.be/stops/404437", "https://data.delijn.be/stops/404484"], ["https://data.delijn.be/stops/208261", "https://data.delijn.be/stops/209261"], ["https://data.delijn.be/stops/107742", "https://data.delijn.be/stops/107744"], ["https://data.delijn.be/stops/206829", "https://data.delijn.be/stops/216021"], ["https://data.delijn.be/stops/503483", "https://data.delijn.be/stops/508479"], ["https://data.delijn.be/stops/501346", "https://data.delijn.be/stops/501603"], ["https://data.delijn.be/stops/105390", "https://data.delijn.be/stops/105395"], ["https://data.delijn.be/stops/208437", "https://data.delijn.be/stops/209437"], ["https://data.delijn.be/stops/208878", "https://data.delijn.be/stops/209878"], ["https://data.delijn.be/stops/103208", "https://data.delijn.be/stops/103209"], ["https://data.delijn.be/stops/304410", "https://data.delijn.be/stops/306876"], ["https://data.delijn.be/stops/501235", "https://data.delijn.be/stops/501236"], ["https://data.delijn.be/stops/505442", "https://data.delijn.be/stops/509143"], ["https://data.delijn.be/stops/502059", "https://data.delijn.be/stops/507042"], ["https://data.delijn.be/stops/101440", "https://data.delijn.be/stops/105455"], ["https://data.delijn.be/stops/502552", "https://data.delijn.be/stops/505735"], ["https://data.delijn.be/stops/502481", "https://data.delijn.be/stops/507474"], ["https://data.delijn.be/stops/202818", "https://data.delijn.be/stops/211070"], ["https://data.delijn.be/stops/102436", "https://data.delijn.be/stops/107887"], ["https://data.delijn.be/stops/504622", "https://data.delijn.be/stops/509625"], ["https://data.delijn.be/stops/106960", "https://data.delijn.be/stops/109510"], ["https://data.delijn.be/stops/401511", "https://data.delijn.be/stops/409011"], ["https://data.delijn.be/stops/305329", "https://data.delijn.be/stops/306343"], ["https://data.delijn.be/stops/305182", "https://data.delijn.be/stops/305207"], ["https://data.delijn.be/stops/302530", "https://data.delijn.be/stops/302608"], ["https://data.delijn.be/stops/301141", "https://data.delijn.be/stops/303077"], ["https://data.delijn.be/stops/404727", "https://data.delijn.be/stops/404748"], ["https://data.delijn.be/stops/104095", "https://data.delijn.be/stops/104111"], ["https://data.delijn.be/stops/210053", "https://data.delijn.be/stops/211053"], ["https://data.delijn.be/stops/302003", "https://data.delijn.be/stops/306379"], ["https://data.delijn.be/stops/102214", "https://data.delijn.be/stops/102286"], ["https://data.delijn.be/stops/202382", "https://data.delijn.be/stops/203383"], ["https://data.delijn.be/stops/208270", "https://data.delijn.be/stops/219006"], ["https://data.delijn.be/stops/306286", "https://data.delijn.be/stops/306661"], ["https://data.delijn.be/stops/304548", "https://data.delijn.be/stops/304552"], ["https://data.delijn.be/stops/504280", "https://data.delijn.be/stops/509284"], ["https://data.delijn.be/stops/300670", "https://data.delijn.be/stops/300672"], ["https://data.delijn.be/stops/101723", "https://data.delijn.be/stops/105258"], ["https://data.delijn.be/stops/505216", "https://data.delijn.be/stops/505991"], ["https://data.delijn.be/stops/202021", "https://data.delijn.be/stops/203021"], ["https://data.delijn.be/stops/501482", "https://data.delijn.be/stops/506440"], ["https://data.delijn.be/stops/302436", "https://data.delijn.be/stops/302437"], ["https://data.delijn.be/stops/202110", "https://data.delijn.be/stops/205104"], ["https://data.delijn.be/stops/305753", "https://data.delijn.be/stops/306332"], ["https://data.delijn.be/stops/404636", "https://data.delijn.be/stops/404989"], ["https://data.delijn.be/stops/106249", "https://data.delijn.be/stops/106250"], ["https://data.delijn.be/stops/504942", "https://data.delijn.be/stops/505980"], ["https://data.delijn.be/stops/500017", "https://data.delijn.be/stops/502238"], ["https://data.delijn.be/stops/503787", "https://data.delijn.be/stops/508787"], ["https://data.delijn.be/stops/302861", "https://data.delijn.be/stops/302917"], ["https://data.delijn.be/stops/304460", "https://data.delijn.be/stops/307692"], ["https://data.delijn.be/stops/102962", "https://data.delijn.be/stops/109277"], ["https://data.delijn.be/stops/108135", "https://data.delijn.be/stops/109135"], ["https://data.delijn.be/stops/501137", "https://data.delijn.be/stops/506128"], ["https://data.delijn.be/stops/202963", "https://data.delijn.be/stops/202964"], ["https://data.delijn.be/stops/200017", "https://data.delijn.be/stops/201149"], ["https://data.delijn.be/stops/200231", "https://data.delijn.be/stops/201468"], ["https://data.delijn.be/stops/505744", "https://data.delijn.be/stops/507004"], ["https://data.delijn.be/stops/206514", "https://data.delijn.be/stops/206661"], ["https://data.delijn.be/stops/203174", "https://data.delijn.be/stops/203175"], ["https://data.delijn.be/stops/403574", "https://data.delijn.be/stops/403576"], ["https://data.delijn.be/stops/106959", "https://data.delijn.be/stops/106960"], ["https://data.delijn.be/stops/307730", "https://data.delijn.be/stops/307731"], ["https://data.delijn.be/stops/101645", "https://data.delijn.be/stops/105145"], ["https://data.delijn.be/stops/208440", "https://data.delijn.be/stops/208441"], ["https://data.delijn.be/stops/105031", "https://data.delijn.be/stops/105171"], ["https://data.delijn.be/stops/503309", "https://data.delijn.be/stops/509908"], ["https://data.delijn.be/stops/102040", "https://data.delijn.be/stops/103750"], ["https://data.delijn.be/stops/503608", "https://data.delijn.be/stops/505984"], ["https://data.delijn.be/stops/301051", "https://data.delijn.be/stops/301061"], ["https://data.delijn.be/stops/101827", "https://data.delijn.be/stops/107006"], ["https://data.delijn.be/stops/105273", "https://data.delijn.be/stops/105292"], ["https://data.delijn.be/stops/302493", "https://data.delijn.be/stops/302498"], ["https://data.delijn.be/stops/302633", "https://data.delijn.be/stops/302644"], ["https://data.delijn.be/stops/400483", "https://data.delijn.be/stops/400486"], ["https://data.delijn.be/stops/407098", "https://data.delijn.be/stops/407272"], ["https://data.delijn.be/stops/304546", "https://data.delijn.be/stops/304549"], ["https://data.delijn.be/stops/503409", "https://data.delijn.be/stops/508365"], ["https://data.delijn.be/stops/502005", "https://data.delijn.be/stops/507005"], ["https://data.delijn.be/stops/507429", "https://data.delijn.be/stops/507622"], ["https://data.delijn.be/stops/408726", "https://data.delijn.be/stops/408908"], ["https://data.delijn.be/stops/403752", "https://data.delijn.be/stops/403761"], ["https://data.delijn.be/stops/202011", "https://data.delijn.be/stops/203009"], ["https://data.delijn.be/stops/206302", "https://data.delijn.be/stops/207890"], ["https://data.delijn.be/stops/206918", "https://data.delijn.be/stops/207290"], ["https://data.delijn.be/stops/301287", "https://data.delijn.be/stops/301288"], ["https://data.delijn.be/stops/208100", "https://data.delijn.be/stops/208160"], ["https://data.delijn.be/stops/403913", "https://data.delijn.be/stops/403938"], ["https://data.delijn.be/stops/205788", "https://data.delijn.be/stops/205790"], ["https://data.delijn.be/stops/308510", "https://data.delijn.be/stops/308512"], ["https://data.delijn.be/stops/101484", "https://data.delijn.be/stops/109705"], ["https://data.delijn.be/stops/505023", "https://data.delijn.be/stops/507672"], ["https://data.delijn.be/stops/201094", "https://data.delijn.be/stops/204357"], ["https://data.delijn.be/stops/400218", "https://data.delijn.be/stops/400231"], ["https://data.delijn.be/stops/502057", "https://data.delijn.be/stops/507057"], ["https://data.delijn.be/stops/408208", "https://data.delijn.be/stops/408313"], ["https://data.delijn.be/stops/303754", "https://data.delijn.be/stops/303789"], ["https://data.delijn.be/stops/406089", "https://data.delijn.be/stops/409406"], ["https://data.delijn.be/stops/304950", "https://data.delijn.be/stops/304951"], ["https://data.delijn.be/stops/505240", "https://data.delijn.be/stops/507916"], ["https://data.delijn.be/stops/106723", "https://data.delijn.be/stops/106724"], ["https://data.delijn.be/stops/301253", "https://data.delijn.be/stops/301274"], ["https://data.delijn.be/stops/103248", "https://data.delijn.be/stops/108235"], ["https://data.delijn.be/stops/308451", "https://data.delijn.be/stops/308452"], ["https://data.delijn.be/stops/102741", "https://data.delijn.be/stops/102746"], ["https://data.delijn.be/stops/405025", "https://data.delijn.be/stops/405708"], ["https://data.delijn.be/stops/209084", "https://data.delijn.be/stops/209700"], ["https://data.delijn.be/stops/206648", "https://data.delijn.be/stops/207485"], ["https://data.delijn.be/stops/101675", "https://data.delijn.be/stops/102230"], ["https://data.delijn.be/stops/406404", "https://data.delijn.be/stops/407724"], ["https://data.delijn.be/stops/400534", "https://data.delijn.be/stops/400535"], ["https://data.delijn.be/stops/306552", "https://data.delijn.be/stops/306558"], ["https://data.delijn.be/stops/302218", "https://data.delijn.be/stops/302230"], ["https://data.delijn.be/stops/202449", "https://data.delijn.be/stops/203449"], ["https://data.delijn.be/stops/308270", "https://data.delijn.be/stops/308276"], ["https://data.delijn.be/stops/307314", "https://data.delijn.be/stops/307315"], ["https://data.delijn.be/stops/402850", "https://data.delijn.be/stops/402854"], ["https://data.delijn.be/stops/301787", "https://data.delijn.be/stops/302527"], ["https://data.delijn.be/stops/102521", "https://data.delijn.be/stops/108633"], ["https://data.delijn.be/stops/503528", "https://data.delijn.be/stops/504778"], ["https://data.delijn.be/stops/208589", "https://data.delijn.be/stops/209589"], ["https://data.delijn.be/stops/503817", "https://data.delijn.be/stops/504816"], ["https://data.delijn.be/stops/405036", "https://data.delijn.be/stops/405068"], ["https://data.delijn.be/stops/404794", "https://data.delijn.be/stops/404812"], ["https://data.delijn.be/stops/405093", "https://data.delijn.be/stops/405710"], ["https://data.delijn.be/stops/503268", "https://data.delijn.be/stops/508289"], ["https://data.delijn.be/stops/503185", "https://data.delijn.be/stops/508201"], ["https://data.delijn.be/stops/503666", "https://data.delijn.be/stops/505136"], ["https://data.delijn.be/stops/508040", "https://data.delijn.be/stops/509888"], ["https://data.delijn.be/stops/206016", "https://data.delijn.be/stops/207016"], ["https://data.delijn.be/stops/108123", "https://data.delijn.be/stops/109620"], ["https://data.delijn.be/stops/400040", "https://data.delijn.be/stops/400357"], ["https://data.delijn.be/stops/304593", "https://data.delijn.be/stops/304594"], ["https://data.delijn.be/stops/208210", "https://data.delijn.be/stops/209210"], ["https://data.delijn.be/stops/207413", "https://data.delijn.be/stops/207454"], ["https://data.delijn.be/stops/406485", "https://data.delijn.be/stops/406488"], ["https://data.delijn.be/stops/503896", "https://data.delijn.be/stops/505639"], ["https://data.delijn.be/stops/406304", "https://data.delijn.be/stops/406993"], ["https://data.delijn.be/stops/200948", "https://data.delijn.be/stops/203048"], ["https://data.delijn.be/stops/205236", "https://data.delijn.be/stops/205797"], ["https://data.delijn.be/stops/402511", "https://data.delijn.be/stops/402512"], ["https://data.delijn.be/stops/307430", "https://data.delijn.be/stops/307431"], ["https://data.delijn.be/stops/503714", "https://data.delijn.be/stops/508721"], ["https://data.delijn.be/stops/403212", "https://data.delijn.be/stops/410215"], ["https://data.delijn.be/stops/206175", "https://data.delijn.be/stops/207175"], ["https://data.delijn.be/stops/502608", "https://data.delijn.be/stops/505691"], ["https://data.delijn.be/stops/501013", "https://data.delijn.be/stops/506608"], ["https://data.delijn.be/stops/402816", "https://data.delijn.be/stops/402818"], ["https://data.delijn.be/stops/303328", "https://data.delijn.be/stops/308920"], ["https://data.delijn.be/stops/202495", "https://data.delijn.be/stops/203173"], ["https://data.delijn.be/stops/409331", "https://data.delijn.be/stops/410286"], ["https://data.delijn.be/stops/204121", "https://data.delijn.be/stops/205475"], ["https://data.delijn.be/stops/104987", "https://data.delijn.be/stops/104994"], ["https://data.delijn.be/stops/405589", "https://data.delijn.be/stops/405603"], ["https://data.delijn.be/stops/505189", "https://data.delijn.be/stops/505289"], ["https://data.delijn.be/stops/206187", "https://data.delijn.be/stops/206956"], ["https://data.delijn.be/stops/305447", "https://data.delijn.be/stops/307297"], ["https://data.delijn.be/stops/301403", "https://data.delijn.be/stops/304698"], ["https://data.delijn.be/stops/108907", "https://data.delijn.be/stops/109397"], ["https://data.delijn.be/stops/103299", "https://data.delijn.be/stops/107020"], ["https://data.delijn.be/stops/300804", "https://data.delijn.be/stops/303223"], ["https://data.delijn.be/stops/107855", "https://data.delijn.be/stops/107860"], ["https://data.delijn.be/stops/503632", "https://data.delijn.be/stops/508632"], ["https://data.delijn.be/stops/104080", "https://data.delijn.be/stops/105895"], ["https://data.delijn.be/stops/206096", "https://data.delijn.be/stops/207097"], ["https://data.delijn.be/stops/105469", "https://data.delijn.be/stops/105472"], ["https://data.delijn.be/stops/202660", "https://data.delijn.be/stops/202661"], ["https://data.delijn.be/stops/401828", "https://data.delijn.be/stops/401841"], ["https://data.delijn.be/stops/206587", "https://data.delijn.be/stops/207842"], ["https://data.delijn.be/stops/207802", "https://data.delijn.be/stops/300169"], ["https://data.delijn.be/stops/503310", "https://data.delijn.be/stops/508137"], ["https://data.delijn.be/stops/406827", "https://data.delijn.be/stops/409889"], ["https://data.delijn.be/stops/502024", "https://data.delijn.be/stops/507914"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/107027"], ["https://data.delijn.be/stops/406157", "https://data.delijn.be/stops/406275"], ["https://data.delijn.be/stops/306368", "https://data.delijn.be/stops/307590"], ["https://data.delijn.be/stops/301634", "https://data.delijn.be/stops/301635"], ["https://data.delijn.be/stops/303818", "https://data.delijn.be/stops/303824"], ["https://data.delijn.be/stops/406108", "https://data.delijn.be/stops/406113"], ["https://data.delijn.be/stops/201344", "https://data.delijn.be/stops/201359"], ["https://data.delijn.be/stops/107499", "https://data.delijn.be/stops/305793"], ["https://data.delijn.be/stops/403980", "https://data.delijn.be/stops/403982"], ["https://data.delijn.be/stops/108088", "https://data.delijn.be/stops/108389"], ["https://data.delijn.be/stops/201770", "https://data.delijn.be/stops/209333"], ["https://data.delijn.be/stops/305584", "https://data.delijn.be/stops/305585"], ["https://data.delijn.be/stops/400540", "https://data.delijn.be/stops/400541"], ["https://data.delijn.be/stops/501612", "https://data.delijn.be/stops/506016"], ["https://data.delijn.be/stops/102954", "https://data.delijn.be/stops/102956"], ["https://data.delijn.be/stops/102997", "https://data.delijn.be/stops/109451"], ["https://data.delijn.be/stops/401042", "https://data.delijn.be/stops/401147"], ["https://data.delijn.be/stops/206769", "https://data.delijn.be/stops/206795"], ["https://data.delijn.be/stops/206748", "https://data.delijn.be/stops/207747"], ["https://data.delijn.be/stops/206784", "https://data.delijn.be/stops/209019"], ["https://data.delijn.be/stops/204473", "https://data.delijn.be/stops/205206"], ["https://data.delijn.be/stops/106393", "https://data.delijn.be/stops/109419"], ["https://data.delijn.be/stops/200112", "https://data.delijn.be/stops/201169"], ["https://data.delijn.be/stops/408511", "https://data.delijn.be/stops/408532"], ["https://data.delijn.be/stops/404702", "https://data.delijn.be/stops/404721"], ["https://data.delijn.be/stops/101924", "https://data.delijn.be/stops/102899"], ["https://data.delijn.be/stops/300502", "https://data.delijn.be/stops/300505"], ["https://data.delijn.be/stops/306798", "https://data.delijn.be/stops/306801"], ["https://data.delijn.be/stops/501116", "https://data.delijn.be/stops/501117"], ["https://data.delijn.be/stops/108016", "https://data.delijn.be/stops/108017"], ["https://data.delijn.be/stops/303464", "https://data.delijn.be/stops/303469"], ["https://data.delijn.be/stops/204228", "https://data.delijn.be/stops/205231"], ["https://data.delijn.be/stops/204554", "https://data.delijn.be/stops/205619"], ["https://data.delijn.be/stops/107552", "https://data.delijn.be/stops/107556"], ["https://data.delijn.be/stops/108739", "https://data.delijn.be/stops/108762"], ["https://data.delijn.be/stops/107833", "https://data.delijn.be/stops/107836"], ["https://data.delijn.be/stops/503199", "https://data.delijn.be/stops/503210"], ["https://data.delijn.be/stops/208182", "https://data.delijn.be/stops/209182"], ["https://data.delijn.be/stops/505248", "https://data.delijn.be/stops/505291"], ["https://data.delijn.be/stops/202105", "https://data.delijn.be/stops/202106"], ["https://data.delijn.be/stops/204290", "https://data.delijn.be/stops/204291"], ["https://data.delijn.be/stops/107498", "https://data.delijn.be/stops/107748"], ["https://data.delijn.be/stops/503675", "https://data.delijn.be/stops/505256"], ["https://data.delijn.be/stops/403306", "https://data.delijn.be/stops/403307"], ["https://data.delijn.be/stops/208391", "https://data.delijn.be/stops/209392"], ["https://data.delijn.be/stops/403450", "https://data.delijn.be/stops/409272"], ["https://data.delijn.be/stops/503003", "https://data.delijn.be/stops/507813"], ["https://data.delijn.be/stops/301809", "https://data.delijn.be/stops/304566"], ["https://data.delijn.be/stops/204996", "https://data.delijn.be/stops/206049"], ["https://data.delijn.be/stops/406803", "https://data.delijn.be/stops/306781"], ["https://data.delijn.be/stops/503484", "https://data.delijn.be/stops/504391"], ["https://data.delijn.be/stops/200001", "https://data.delijn.be/stops/201875"], ["https://data.delijn.be/stops/206714", "https://data.delijn.be/stops/207652"], ["https://data.delijn.be/stops/305077", "https://data.delijn.be/stops/305081"], ["https://data.delijn.be/stops/102647", "https://data.delijn.be/stops/107827"], ["https://data.delijn.be/stops/504420", "https://data.delijn.be/stops/509421"], ["https://data.delijn.be/stops/400434", "https://data.delijn.be/stops/406777"], ["https://data.delijn.be/stops/102582", "https://data.delijn.be/stops/105830"], ["https://data.delijn.be/stops/306127", "https://data.delijn.be/stops/306128"], ["https://data.delijn.be/stops/102207", "https://data.delijn.be/stops/102209"], ["https://data.delijn.be/stops/400558", "https://data.delijn.be/stops/400559"], ["https://data.delijn.be/stops/502443", "https://data.delijn.be/stops/502682"], ["https://data.delijn.be/stops/405967", "https://data.delijn.be/stops/405973"], ["https://data.delijn.be/stops/504458", "https://data.delijn.be/stops/509461"], ["https://data.delijn.be/stops/504034", "https://data.delijn.be/stops/509704"], ["https://data.delijn.be/stops/405158", "https://data.delijn.be/stops/405178"], ["https://data.delijn.be/stops/302152", "https://data.delijn.be/stops/306825"], ["https://data.delijn.be/stops/306922", "https://data.delijn.be/stops/308732"], ["https://data.delijn.be/stops/300325", "https://data.delijn.be/stops/300327"], ["https://data.delijn.be/stops/403149", "https://data.delijn.be/stops/403151"], ["https://data.delijn.be/stops/306609", "https://data.delijn.be/stops/306611"], ["https://data.delijn.be/stops/501373", "https://data.delijn.be/stops/506372"], ["https://data.delijn.be/stops/301309", "https://data.delijn.be/stops/301904"], ["https://data.delijn.be/stops/206636", "https://data.delijn.be/stops/207634"], ["https://data.delijn.be/stops/208344", "https://data.delijn.be/stops/208345"], ["https://data.delijn.be/stops/107078", "https://data.delijn.be/stops/107348"], ["https://data.delijn.be/stops/303960", "https://data.delijn.be/stops/303963"], ["https://data.delijn.be/stops/505668", "https://data.delijn.be/stops/507685"], ["https://data.delijn.be/stops/503468", "https://data.delijn.be/stops/508305"], ["https://data.delijn.be/stops/407344", "https://data.delijn.be/stops/409965"], ["https://data.delijn.be/stops/206563", "https://data.delijn.be/stops/207542"], ["https://data.delijn.be/stops/405040", "https://data.delijn.be/stops/405041"], ["https://data.delijn.be/stops/407478", "https://data.delijn.be/stops/407499"], ["https://data.delijn.be/stops/300351", "https://data.delijn.be/stops/301289"], ["https://data.delijn.be/stops/101207", "https://data.delijn.be/stops/104932"], ["https://data.delijn.be/stops/501121", "https://data.delijn.be/stops/501126"], ["https://data.delijn.be/stops/406665", "https://data.delijn.be/stops/406679"], ["https://data.delijn.be/stops/203641", "https://data.delijn.be/stops/210050"], ["https://data.delijn.be/stops/204382", "https://data.delijn.be/stops/205184"], ["https://data.delijn.be/stops/404852", "https://data.delijn.be/stops/404947"], ["https://data.delijn.be/stops/108362", "https://data.delijn.be/stops/108501"], ["https://data.delijn.be/stops/102675", "https://data.delijn.be/stops/105435"], ["https://data.delijn.be/stops/405404", "https://data.delijn.be/stops/405405"], ["https://data.delijn.be/stops/405182", "https://data.delijn.be/stops/405768"], ["https://data.delijn.be/stops/502432", "https://data.delijn.be/stops/507432"], ["https://data.delijn.be/stops/201950", "https://data.delijn.be/stops/202428"], ["https://data.delijn.be/stops/103032", "https://data.delijn.be/stops/106748"], ["https://data.delijn.be/stops/107150", "https://data.delijn.be/stops/109853"], ["https://data.delijn.be/stops/300961", "https://data.delijn.be/stops/301156"], ["https://data.delijn.be/stops/106289", "https://data.delijn.be/stops/106290"], ["https://data.delijn.be/stops/304454", "https://data.delijn.be/stops/304463"], ["https://data.delijn.be/stops/501425", "https://data.delijn.be/stops/506425"], ["https://data.delijn.be/stops/300139", "https://data.delijn.be/stops/306819"], ["https://data.delijn.be/stops/200174", "https://data.delijn.be/stops/200515"], ["https://data.delijn.be/stops/503836", "https://data.delijn.be/stops/505159"], ["https://data.delijn.be/stops/506381", "https://data.delijn.be/stops/506383"], ["https://data.delijn.be/stops/208015", "https://data.delijn.be/stops/209014"], ["https://data.delijn.be/stops/408423", "https://data.delijn.be/stops/409162"], ["https://data.delijn.be/stops/407907", "https://data.delijn.be/stops/408010"], ["https://data.delijn.be/stops/104277", "https://data.delijn.be/stops/104304"], ["https://data.delijn.be/stops/302554", "https://data.delijn.be/stops/302556"], ["https://data.delijn.be/stops/305076", "https://data.delijn.be/stops/308294"], ["https://data.delijn.be/stops/505983", "https://data.delijn.be/stops/509083"], ["https://data.delijn.be/stops/206791", "https://data.delijn.be/stops/208618"], ["https://data.delijn.be/stops/106500", "https://data.delijn.be/stops/107117"], ["https://data.delijn.be/stops/503781", "https://data.delijn.be/stops/508781"], ["https://data.delijn.be/stops/107134", "https://data.delijn.be/stops/107137"], ["https://data.delijn.be/stops/501086", "https://data.delijn.be/stops/501439"], ["https://data.delijn.be/stops/504996", "https://data.delijn.be/stops/508118"], ["https://data.delijn.be/stops/208141", "https://data.delijn.be/stops/208142"], ["https://data.delijn.be/stops/206497", "https://data.delijn.be/stops/207501"], ["https://data.delijn.be/stops/403699", "https://data.delijn.be/stops/405519"], ["https://data.delijn.be/stops/103916", "https://data.delijn.be/stops/107242"], ["https://data.delijn.be/stops/408504", "https://data.delijn.be/stops/408509"], ["https://data.delijn.be/stops/508214", "https://data.delijn.be/stops/508305"], ["https://data.delijn.be/stops/301465", "https://data.delijn.be/stops/301490"], ["https://data.delijn.be/stops/402516", "https://data.delijn.be/stops/402520"], ["https://data.delijn.be/stops/305628", "https://data.delijn.be/stops/305770"], ["https://data.delijn.be/stops/205986", "https://data.delijn.be/stops/206257"], ["https://data.delijn.be/stops/402383", "https://data.delijn.be/stops/410041"], ["https://data.delijn.be/stops/208516", "https://data.delijn.be/stops/208684"], ["https://data.delijn.be/stops/302382", "https://data.delijn.be/stops/302383"], ["https://data.delijn.be/stops/402028", "https://data.delijn.be/stops/403885"], ["https://data.delijn.be/stops/105644", "https://data.delijn.be/stops/105646"], ["https://data.delijn.be/stops/203335", "https://data.delijn.be/stops/211298"], ["https://data.delijn.be/stops/208189", "https://data.delijn.be/stops/208190"], ["https://data.delijn.be/stops/301662", "https://data.delijn.be/stops/302144"], ["https://data.delijn.be/stops/104895", "https://data.delijn.be/stops/108640"], ["https://data.delijn.be/stops/304452", "https://data.delijn.be/stops/304460"], ["https://data.delijn.be/stops/300278", "https://data.delijn.be/stops/300289"], ["https://data.delijn.be/stops/303289", "https://data.delijn.be/stops/303300"], ["https://data.delijn.be/stops/207164", "https://data.delijn.be/stops/308900"], ["https://data.delijn.be/stops/501693", "https://data.delijn.be/stops/506117"], ["https://data.delijn.be/stops/108628", "https://data.delijn.be/stops/109681"], ["https://data.delijn.be/stops/405232", "https://data.delijn.be/stops/405502"], ["https://data.delijn.be/stops/203177", "https://data.delijn.be/stops/203497"], ["https://data.delijn.be/stops/503523", "https://data.delijn.be/stops/504001"], ["https://data.delijn.be/stops/400464", "https://data.delijn.be/stops/400465"], ["https://data.delijn.be/stops/302281", "https://data.delijn.be/stops/302287"], ["https://data.delijn.be/stops/108731", "https://data.delijn.be/stops/108732"], ["https://data.delijn.be/stops/103040", "https://data.delijn.be/stops/108055"], ["https://data.delijn.be/stops/501363", "https://data.delijn.be/stops/506442"], ["https://data.delijn.be/stops/103228", "https://data.delijn.be/stops/103597"], ["https://data.delijn.be/stops/504998", "https://data.delijn.be/stops/508881"], ["https://data.delijn.be/stops/410290", "https://data.delijn.be/stops/410291"], ["https://data.delijn.be/stops/300527", "https://data.delijn.be/stops/300528"], ["https://data.delijn.be/stops/405301", "https://data.delijn.be/stops/406298"], ["https://data.delijn.be/stops/301435", "https://data.delijn.be/stops/303181"], ["https://data.delijn.be/stops/407389", "https://data.delijn.be/stops/407479"], ["https://data.delijn.be/stops/406353", "https://data.delijn.be/stops/410251"], ["https://data.delijn.be/stops/208476", "https://data.delijn.be/stops/209476"], ["https://data.delijn.be/stops/408511", "https://data.delijn.be/stops/408689"], ["https://data.delijn.be/stops/505104", "https://data.delijn.be/stops/508883"], ["https://data.delijn.be/stops/403764", "https://data.delijn.be/stops/403765"], ["https://data.delijn.be/stops/106877", "https://data.delijn.be/stops/106881"], ["https://data.delijn.be/stops/208174", "https://data.delijn.be/stops/208175"], ["https://data.delijn.be/stops/502438", "https://data.delijn.be/stops/507163"], ["https://data.delijn.be/stops/208242", "https://data.delijn.be/stops/208330"], ["https://data.delijn.be/stops/406323", "https://data.delijn.be/stops/406330"], ["https://data.delijn.be/stops/106460", "https://data.delijn.be/stops/106465"], ["https://data.delijn.be/stops/402712", "https://data.delijn.be/stops/405956"], ["https://data.delijn.be/stops/108999", "https://data.delijn.be/stops/109001"], ["https://data.delijn.be/stops/502913", "https://data.delijn.be/stops/507020"], ["https://data.delijn.be/stops/400535", "https://data.delijn.be/stops/400549"], ["https://data.delijn.be/stops/102760", "https://data.delijn.be/stops/102775"], ["https://data.delijn.be/stops/107161", "https://data.delijn.be/stops/107561"], ["https://data.delijn.be/stops/204371", "https://data.delijn.be/stops/204760"], ["https://data.delijn.be/stops/400673", "https://data.delijn.be/stops/410022"], ["https://data.delijn.be/stops/200006", "https://data.delijn.be/stops/211069"], ["https://data.delijn.be/stops/106691", "https://data.delijn.be/stops/106692"], ["https://data.delijn.be/stops/201244", "https://data.delijn.be/stops/201298"], ["https://data.delijn.be/stops/105028", "https://data.delijn.be/stops/105029"], ["https://data.delijn.be/stops/202326", "https://data.delijn.be/stops/202725"], ["https://data.delijn.be/stops/302022", "https://data.delijn.be/stops/302023"], ["https://data.delijn.be/stops/200488", "https://data.delijn.be/stops/201470"], ["https://data.delijn.be/stops/302845", "https://data.delijn.be/stops/303324"], ["https://data.delijn.be/stops/201351", "https://data.delijn.be/stops/202650"], ["https://data.delijn.be/stops/201857", "https://data.delijn.be/stops/210036"], ["https://data.delijn.be/stops/300592", "https://data.delijn.be/stops/307170"], ["https://data.delijn.be/stops/300978", "https://data.delijn.be/stops/300993"], ["https://data.delijn.be/stops/103159", "https://data.delijn.be/stops/109045"], ["https://data.delijn.be/stops/205714", "https://data.delijn.be/stops/205896"], ["https://data.delijn.be/stops/510011", "https://data.delijn.be/stops/510012"], ["https://data.delijn.be/stops/506084", "https://data.delijn.be/stops/506646"], ["https://data.delijn.be/stops/208235", "https://data.delijn.be/stops/209235"], ["https://data.delijn.be/stops/302899", "https://data.delijn.be/stops/306095"], ["https://data.delijn.be/stops/400798", "https://data.delijn.be/stops/400888"], ["https://data.delijn.be/stops/408901", "https://data.delijn.be/stops/408907"], ["https://data.delijn.be/stops/209475", "https://data.delijn.be/stops/209667"], ["https://data.delijn.be/stops/405063", "https://data.delijn.be/stops/405065"], ["https://data.delijn.be/stops/202912", "https://data.delijn.be/stops/203917"], ["https://data.delijn.be/stops/400400", "https://data.delijn.be/stops/400424"], ["https://data.delijn.be/stops/106917", "https://data.delijn.be/stops/106949"], ["https://data.delijn.be/stops/200912", "https://data.delijn.be/stops/203094"], ["https://data.delijn.be/stops/202224", "https://data.delijn.be/stops/208964"], ["https://data.delijn.be/stops/503142", "https://data.delijn.be/stops/509888"], ["https://data.delijn.be/stops/504080", "https://data.delijn.be/stops/504536"], ["https://data.delijn.be/stops/507519", "https://data.delijn.be/stops/509795"], ["https://data.delijn.be/stops/503812", "https://data.delijn.be/stops/508809"], ["https://data.delijn.be/stops/502367", "https://data.delijn.be/stops/507367"], ["https://data.delijn.be/stops/202259", "https://data.delijn.be/stops/203259"], ["https://data.delijn.be/stops/405954", "https://data.delijn.be/stops/405961"], ["https://data.delijn.be/stops/206882", "https://data.delijn.be/stops/207730"], ["https://data.delijn.be/stops/503591", "https://data.delijn.be/stops/508591"], ["https://data.delijn.be/stops/400472", "https://data.delijn.be/stops/407647"], ["https://data.delijn.be/stops/201925", "https://data.delijn.be/stops/207590"], ["https://data.delijn.be/stops/505717", "https://data.delijn.be/stops/505986"], ["https://data.delijn.be/stops/105407", "https://data.delijn.be/stops/109055"], ["https://data.delijn.be/stops/401426", "https://data.delijn.be/stops/410291"], ["https://data.delijn.be/stops/402195", "https://data.delijn.be/stops/402217"], ["https://data.delijn.be/stops/503101", "https://data.delijn.be/stops/508095"], ["https://data.delijn.be/stops/206667", "https://data.delijn.be/stops/206726"], ["https://data.delijn.be/stops/101220", "https://data.delijn.be/stops/107811"], ["https://data.delijn.be/stops/509836", "https://data.delijn.be/stops/509838"], ["https://data.delijn.be/stops/503076", "https://data.delijn.be/stops/508073"], ["https://data.delijn.be/stops/401808", "https://data.delijn.be/stops/406351"], ["https://data.delijn.be/stops/403623", "https://data.delijn.be/stops/403631"], ["https://data.delijn.be/stops/108911", "https://data.delijn.be/stops/108913"], ["https://data.delijn.be/stops/203139", "https://data.delijn.be/stops/203364"], ["https://data.delijn.be/stops/200744", "https://data.delijn.be/stops/211103"], ["https://data.delijn.be/stops/300962", "https://data.delijn.be/stops/304705"], ["https://data.delijn.be/stops/302952", "https://data.delijn.be/stops/303000"], ["https://data.delijn.be/stops/505398", "https://data.delijn.be/stops/506080"], ["https://data.delijn.be/stops/505771", "https://data.delijn.be/stops/507008"], ["https://data.delijn.be/stops/105081", "https://data.delijn.be/stops/105082"], ["https://data.delijn.be/stops/105713", "https://data.delijn.be/stops/105714"], ["https://data.delijn.be/stops/407890", "https://data.delijn.be/stops/407891"], ["https://data.delijn.be/stops/502073", "https://data.delijn.be/stops/502562"], ["https://data.delijn.be/stops/410154", "https://data.delijn.be/stops/304720"], ["https://data.delijn.be/stops/108843", "https://data.delijn.be/stops/108854"], ["https://data.delijn.be/stops/506365", "https://data.delijn.be/stops/590411"], ["https://data.delijn.be/stops/206632", "https://data.delijn.be/stops/207633"], ["https://data.delijn.be/stops/107838", "https://data.delijn.be/stops/205098"], ["https://data.delijn.be/stops/200914", "https://data.delijn.be/stops/202720"], ["https://data.delijn.be/stops/401427", "https://data.delijn.be/stops/401445"], ["https://data.delijn.be/stops/301676", "https://data.delijn.be/stops/304178"], ["https://data.delijn.be/stops/107705", "https://data.delijn.be/stops/109035"], ["https://data.delijn.be/stops/108109", "https://data.delijn.be/stops/108113"], ["https://data.delijn.be/stops/306305", "https://data.delijn.be/stops/307926"], ["https://data.delijn.be/stops/105797", "https://data.delijn.be/stops/105801"], ["https://data.delijn.be/stops/205037", "https://data.delijn.be/stops/205038"], ["https://data.delijn.be/stops/403589", "https://data.delijn.be/stops/410010"], ["https://data.delijn.be/stops/108828", "https://data.delijn.be/stops/108832"], ["https://data.delijn.be/stops/405290", "https://data.delijn.be/stops/406308"], ["https://data.delijn.be/stops/109809", "https://data.delijn.be/stops/109813"], ["https://data.delijn.be/stops/504650", "https://data.delijn.be/stops/509040"], ["https://data.delijn.be/stops/200400", "https://data.delijn.be/stops/200401"], ["https://data.delijn.be/stops/104917", "https://data.delijn.be/stops/104918"], ["https://data.delijn.be/stops/102812", "https://data.delijn.be/stops/105740"], ["https://data.delijn.be/stops/501289", "https://data.delijn.be/stops/506204"], ["https://data.delijn.be/stops/206726", "https://data.delijn.be/stops/301617"], ["https://data.delijn.be/stops/102322", "https://data.delijn.be/stops/109558"], ["https://data.delijn.be/stops/303015", "https://data.delijn.be/stops/303895"], ["https://data.delijn.be/stops/103328", "https://data.delijn.be/stops/105098"], ["https://data.delijn.be/stops/304107", "https://data.delijn.be/stops/307050"], ["https://data.delijn.be/stops/403277", "https://data.delijn.be/stops/403289"], ["https://data.delijn.be/stops/503735", "https://data.delijn.be/stops/508735"], ["https://data.delijn.be/stops/301284", "https://data.delijn.be/stops/306249"], ["https://data.delijn.be/stops/209768", "https://data.delijn.be/stops/209784"], ["https://data.delijn.be/stops/400015", "https://data.delijn.be/stops/400020"], ["https://data.delijn.be/stops/401550", "https://data.delijn.be/stops/404947"], ["https://data.delijn.be/stops/406113", "https://data.delijn.be/stops/407145"], ["https://data.delijn.be/stops/107929", "https://data.delijn.be/stops/301152"], ["https://data.delijn.be/stops/201928", "https://data.delijn.be/stops/202524"], ["https://data.delijn.be/stops/503875", "https://data.delijn.be/stops/503878"], ["https://data.delijn.be/stops/306619", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/104583", "https://data.delijn.be/stops/303882"], ["https://data.delijn.be/stops/205993", "https://data.delijn.be/stops/209130"], ["https://data.delijn.be/stops/302494", "https://data.delijn.be/stops/302502"], ["https://data.delijn.be/stops/106171", "https://data.delijn.be/stops/106460"], ["https://data.delijn.be/stops/504838", "https://data.delijn.be/stops/509091"], ["https://data.delijn.be/stops/304476", "https://data.delijn.be/stops/304479"], ["https://data.delijn.be/stops/300090", "https://data.delijn.be/stops/300091"], ["https://data.delijn.be/stops/505620", "https://data.delijn.be/stops/509780"], ["https://data.delijn.be/stops/200254", "https://data.delijn.be/stops/203559"], ["https://data.delijn.be/stops/208242", "https://data.delijn.be/stops/208290"], ["https://data.delijn.be/stops/303337", "https://data.delijn.be/stops/305121"], ["https://data.delijn.be/stops/504410", "https://data.delijn.be/stops/509410"], ["https://data.delijn.be/stops/307132", "https://data.delijn.be/stops/308047"], ["https://data.delijn.be/stops/300751", "https://data.delijn.be/stops/302408"], ["https://data.delijn.be/stops/402006", "https://data.delijn.be/stops/405171"], ["https://data.delijn.be/stops/503040", "https://data.delijn.be/stops/508040"], ["https://data.delijn.be/stops/404985", "https://data.delijn.be/stops/408552"], ["https://data.delijn.be/stops/304830", "https://data.delijn.be/stops/306173"], ["https://data.delijn.be/stops/400076", "https://data.delijn.be/stops/409162"], ["https://data.delijn.be/stops/205391", "https://data.delijn.be/stops/205393"], ["https://data.delijn.be/stops/208167", "https://data.delijn.be/stops/209166"], ["https://data.delijn.be/stops/101374", "https://data.delijn.be/stops/101402"], ["https://data.delijn.be/stops/103105", "https://data.delijn.be/stops/103795"], ["https://data.delijn.be/stops/305170", "https://data.delijn.be/stops/305177"], ["https://data.delijn.be/stops/501033", "https://data.delijn.be/stops/501037"], ["https://data.delijn.be/stops/108673", "https://data.delijn.be/stops/109923"], ["https://data.delijn.be/stops/501056", "https://data.delijn.be/stops/501505"], ["https://data.delijn.be/stops/101995", "https://data.delijn.be/stops/104465"], ["https://data.delijn.be/stops/106531", "https://data.delijn.be/stops/106535"], ["https://data.delijn.be/stops/407823", "https://data.delijn.be/stops/407825"], ["https://data.delijn.be/stops/304565", "https://data.delijn.be/stops/304566"], ["https://data.delijn.be/stops/504677", "https://data.delijn.be/stops/509267"], ["https://data.delijn.be/stops/200238", "https://data.delijn.be/stops/205925"], ["https://data.delijn.be/stops/102243", "https://data.delijn.be/stops/105933"], ["https://data.delijn.be/stops/104672", "https://data.delijn.be/stops/104869"], ["https://data.delijn.be/stops/306871", "https://data.delijn.be/stops/307420"], ["https://data.delijn.be/stops/302856", "https://data.delijn.be/stops/302877"], ["https://data.delijn.be/stops/201818", "https://data.delijn.be/stops/218027"], ["https://data.delijn.be/stops/506432", "https://data.delijn.be/stops/506456"], ["https://data.delijn.be/stops/300515", "https://data.delijn.be/stops/300531"], ["https://data.delijn.be/stops/409567", "https://data.delijn.be/stops/409570"], ["https://data.delijn.be/stops/303157", "https://data.delijn.be/stops/307953"], ["https://data.delijn.be/stops/106280", "https://data.delijn.be/stops/106282"], ["https://data.delijn.be/stops/305342", "https://data.delijn.be/stops/307968"], ["https://data.delijn.be/stops/405813", "https://data.delijn.be/stops/410255"], ["https://data.delijn.be/stops/209004", "https://data.delijn.be/stops/209098"], ["https://data.delijn.be/stops/501601", "https://data.delijn.be/stops/509493"], ["https://data.delijn.be/stops/304379", "https://data.delijn.be/stops/307416"], ["https://data.delijn.be/stops/201570", "https://data.delijn.be/stops/208291"], ["https://data.delijn.be/stops/401047", "https://data.delijn.be/stops/401131"], ["https://data.delijn.be/stops/105053", "https://data.delijn.be/stops/304043"], ["https://data.delijn.be/stops/304833", "https://data.delijn.be/stops/307051"], ["https://data.delijn.be/stops/401567", "https://data.delijn.be/stops/401736"], ["https://data.delijn.be/stops/205528", "https://data.delijn.be/stops/205631"], ["https://data.delijn.be/stops/507322", "https://data.delijn.be/stops/507327"], ["https://data.delijn.be/stops/400773", "https://data.delijn.be/stops/400809"], ["https://data.delijn.be/stops/502330", "https://data.delijn.be/stops/507330"], ["https://data.delijn.be/stops/405930", "https://data.delijn.be/stops/405931"], ["https://data.delijn.be/stops/503121", "https://data.delijn.be/stops/504848"], ["https://data.delijn.be/stops/305785", "https://data.delijn.be/stops/305786"], ["https://data.delijn.be/stops/302514", "https://data.delijn.be/stops/302519"], ["https://data.delijn.be/stops/105253", "https://data.delijn.be/stops/105254"], ["https://data.delijn.be/stops/109810", "https://data.delijn.be/stops/109814"], ["https://data.delijn.be/stops/200069", "https://data.delijn.be/stops/201069"], ["https://data.delijn.be/stops/305645", "https://data.delijn.be/stops/305652"], ["https://data.delijn.be/stops/200403", "https://data.delijn.be/stops/201404"], ["https://data.delijn.be/stops/302643", "https://data.delijn.be/stops/302644"], ["https://data.delijn.be/stops/504250", "https://data.delijn.be/stops/504702"], ["https://data.delijn.be/stops/304807", "https://data.delijn.be/stops/307885"], ["https://data.delijn.be/stops/505000", "https://data.delijn.be/stops/505102"], ["https://data.delijn.be/stops/207619", "https://data.delijn.be/stops/207849"], ["https://data.delijn.be/stops/402377", "https://data.delijn.be/stops/408486"], ["https://data.delijn.be/stops/401650", "https://data.delijn.be/stops/405404"], ["https://data.delijn.be/stops/409383", "https://data.delijn.be/stops/409389"], ["https://data.delijn.be/stops/103327", "https://data.delijn.be/stops/103328"], ["https://data.delijn.be/stops/203181", "https://data.delijn.be/stops/204201"], ["https://data.delijn.be/stops/405282", "https://data.delijn.be/stops/407649"], ["https://data.delijn.be/stops/206350", "https://data.delijn.be/stops/207350"], ["https://data.delijn.be/stops/201961", "https://data.delijn.be/stops/211087"], ["https://data.delijn.be/stops/400570", "https://data.delijn.be/stops/404057"], ["https://data.delijn.be/stops/503269", "https://data.delijn.be/stops/508038"], ["https://data.delijn.be/stops/501300", "https://data.delijn.be/stops/501301"], ["https://data.delijn.be/stops/203898", "https://data.delijn.be/stops/203899"], ["https://data.delijn.be/stops/504754", "https://data.delijn.be/stops/509755"], ["https://data.delijn.be/stops/208588", "https://data.delijn.be/stops/307526"], ["https://data.delijn.be/stops/101973", "https://data.delijn.be/stops/109289"], ["https://data.delijn.be/stops/204757", "https://data.delijn.be/stops/205620"], ["https://data.delijn.be/stops/304316", "https://data.delijn.be/stops/305229"], ["https://data.delijn.be/stops/502710", "https://data.delijn.be/stops/502798"], ["https://data.delijn.be/stops/204679", "https://data.delijn.be/stops/204680"], ["https://data.delijn.be/stops/208134", "https://data.delijn.be/stops/208135"], ["https://data.delijn.be/stops/300708", "https://data.delijn.be/stops/306944"], ["https://data.delijn.be/stops/502385", "https://data.delijn.be/stops/502411"], ["https://data.delijn.be/stops/301672", "https://data.delijn.be/stops/307338"], ["https://data.delijn.be/stops/408382", "https://data.delijn.be/stops/408383"], ["https://data.delijn.be/stops/105654", "https://data.delijn.be/stops/105656"], ["https://data.delijn.be/stops/201235", "https://data.delijn.be/stops/201522"], ["https://data.delijn.be/stops/207018", "https://data.delijn.be/stops/207926"], ["https://data.delijn.be/stops/106701", "https://data.delijn.be/stops/106702"], ["https://data.delijn.be/stops/307726", "https://data.delijn.be/stops/307727"], ["https://data.delijn.be/stops/504283", "https://data.delijn.be/stops/509283"], ["https://data.delijn.be/stops/302226", "https://data.delijn.be/stops/304441"], ["https://data.delijn.be/stops/200039", "https://data.delijn.be/stops/201909"], ["https://data.delijn.be/stops/206084", "https://data.delijn.be/stops/207084"], ["https://data.delijn.be/stops/103622", "https://data.delijn.be/stops/103682"], ["https://data.delijn.be/stops/304404", "https://data.delijn.be/stops/304406"], ["https://data.delijn.be/stops/201315", "https://data.delijn.be/stops/201334"], ["https://data.delijn.be/stops/106210", "https://data.delijn.be/stops/106252"], ["https://data.delijn.be/stops/209446", "https://data.delijn.be/stops/218029"], ["https://data.delijn.be/stops/204405", "https://data.delijn.be/stops/204406"], ["https://data.delijn.be/stops/109583", "https://data.delijn.be/stops/109584"], ["https://data.delijn.be/stops/302958", "https://data.delijn.be/stops/303004"], ["https://data.delijn.be/stops/404446", "https://data.delijn.be/stops/404560"], ["https://data.delijn.be/stops/304533", "https://data.delijn.be/stops/304536"], ["https://data.delijn.be/stops/404637", "https://data.delijn.be/stops/404989"], ["https://data.delijn.be/stops/406002", "https://data.delijn.be/stops/406003"], ["https://data.delijn.be/stops/300688", "https://data.delijn.be/stops/300689"], ["https://data.delijn.be/stops/202204", "https://data.delijn.be/stops/203205"], ["https://data.delijn.be/stops/403621", "https://data.delijn.be/stops/403642"], ["https://data.delijn.be/stops/502178", "https://data.delijn.be/stops/507256"], ["https://data.delijn.be/stops/202899", "https://data.delijn.be/stops/202900"], ["https://data.delijn.be/stops/205986", "https://data.delijn.be/stops/206524"], ["https://data.delijn.be/stops/502706", "https://data.delijn.be/stops/505022"], ["https://data.delijn.be/stops/409464", "https://data.delijn.be/stops/409465"], ["https://data.delijn.be/stops/200816", "https://data.delijn.be/stops/202077"], ["https://data.delijn.be/stops/404491", "https://data.delijn.be/stops/404534"], ["https://data.delijn.be/stops/106328", "https://data.delijn.be/stops/106330"], ["https://data.delijn.be/stops/307298", "https://data.delijn.be/stops/307300"], ["https://data.delijn.be/stops/107156", "https://data.delijn.be/stops/109380"], ["https://data.delijn.be/stops/300936", "https://data.delijn.be/stops/301007"], ["https://data.delijn.be/stops/505747", "https://data.delijn.be/stops/506186"], ["https://data.delijn.be/stops/400130", "https://data.delijn.be/stops/409169"], ["https://data.delijn.be/stops/108633", "https://data.delijn.be/stops/109671"], ["https://data.delijn.be/stops/206403", "https://data.delijn.be/stops/207244"], ["https://data.delijn.be/stops/502687", "https://data.delijn.be/stops/507631"], ["https://data.delijn.be/stops/102018", "https://data.delijn.be/stops/105752"], ["https://data.delijn.be/stops/103245", "https://data.delijn.be/stops/103251"], ["https://data.delijn.be/stops/307583", "https://data.delijn.be/stops/307760"], ["https://data.delijn.be/stops/405954", "https://data.delijn.be/stops/308155"], ["https://data.delijn.be/stops/505510", "https://data.delijn.be/stops/509929"], ["https://data.delijn.be/stops/408339", "https://data.delijn.be/stops/408357"], ["https://data.delijn.be/stops/104024", "https://data.delijn.be/stops/104025"], ["https://data.delijn.be/stops/105267", "https://data.delijn.be/stops/105284"], ["https://data.delijn.be/stops/304930", "https://data.delijn.be/stops/304931"], ["https://data.delijn.be/stops/308526", "https://data.delijn.be/stops/308528"], ["https://data.delijn.be/stops/403378", "https://data.delijn.be/stops/410338"], ["https://data.delijn.be/stops/206310", "https://data.delijn.be/stops/206311"], ["https://data.delijn.be/stops/108846", "https://data.delijn.be/stops/109743"], ["https://data.delijn.be/stops/501268", "https://data.delijn.be/stops/501293"], ["https://data.delijn.be/stops/404743", "https://data.delijn.be/stops/404753"], ["https://data.delijn.be/stops/400520", "https://data.delijn.be/stops/400570"], ["https://data.delijn.be/stops/304955", "https://data.delijn.be/stops/304961"], ["https://data.delijn.be/stops/505096", "https://data.delijn.be/stops/505666"], ["https://data.delijn.be/stops/300999", "https://data.delijn.be/stops/301079"], ["https://data.delijn.be/stops/101074", "https://data.delijn.be/stops/101077"], ["https://data.delijn.be/stops/504454", "https://data.delijn.be/stops/509454"], ["https://data.delijn.be/stops/102652", "https://data.delijn.be/stops/103061"], ["https://data.delijn.be/stops/109129", "https://data.delijn.be/stops/109421"], ["https://data.delijn.be/stops/400600", "https://data.delijn.be/stops/400628"], ["https://data.delijn.be/stops/108466", "https://data.delijn.be/stops/108467"], ["https://data.delijn.be/stops/501321", "https://data.delijn.be/stops/506205"], ["https://data.delijn.be/stops/301350", "https://data.delijn.be/stops/303640"], ["https://data.delijn.be/stops/404969", "https://data.delijn.be/stops/410223"], ["https://data.delijn.be/stops/201897", "https://data.delijn.be/stops/202148"], ["https://data.delijn.be/stops/503452", "https://data.delijn.be/stops/508970"], ["https://data.delijn.be/stops/201123", "https://data.delijn.be/stops/505612"], ["https://data.delijn.be/stops/402249", "https://data.delijn.be/stops/402373"], ["https://data.delijn.be/stops/208175", "https://data.delijn.be/stops/209175"], ["https://data.delijn.be/stops/503210", "https://data.delijn.be/stops/508199"], ["https://data.delijn.be/stops/303035", "https://data.delijn.be/stops/303095"], ["https://data.delijn.be/stops/102291", "https://data.delijn.be/stops/106349"], ["https://data.delijn.be/stops/302973", "https://data.delijn.be/stops/306299"], ["https://data.delijn.be/stops/403890", "https://data.delijn.be/stops/403892"], ["https://data.delijn.be/stops/410127", "https://data.delijn.be/stops/410129"], ["https://data.delijn.be/stops/501607", "https://data.delijn.be/stops/506013"], ["https://data.delijn.be/stops/107699", "https://data.delijn.be/stops/109105"], ["https://data.delijn.be/stops/302313", "https://data.delijn.be/stops/304784"], ["https://data.delijn.be/stops/208130", "https://data.delijn.be/stops/208197"], ["https://data.delijn.be/stops/406714", "https://data.delijn.be/stops/408714"], ["https://data.delijn.be/stops/200145", "https://data.delijn.be/stops/201145"], ["https://data.delijn.be/stops/508009", "https://data.delijn.be/stops/508923"], ["https://data.delijn.be/stops/502015", "https://data.delijn.be/stops/502019"], ["https://data.delijn.be/stops/406832", "https://data.delijn.be/stops/406833"], ["https://data.delijn.be/stops/108044", "https://data.delijn.be/stops/108045"], ["https://data.delijn.be/stops/505153", "https://data.delijn.be/stops/506089"], ["https://data.delijn.be/stops/308488", "https://data.delijn.be/stops/308522"], ["https://data.delijn.be/stops/200978", "https://data.delijn.be/stops/201975"], ["https://data.delijn.be/stops/102206", "https://data.delijn.be/stops/105816"], ["https://data.delijn.be/stops/406450", "https://data.delijn.be/stops/406497"], ["https://data.delijn.be/stops/400214", "https://data.delijn.be/stops/400241"], ["https://data.delijn.be/stops/209600", "https://data.delijn.be/stops/305333"], ["https://data.delijn.be/stops/503913", "https://data.delijn.be/stops/505306"], ["https://data.delijn.be/stops/304050", "https://data.delijn.be/stops/304060"], ["https://data.delijn.be/stops/300455", "https://data.delijn.be/stops/305036"], ["https://data.delijn.be/stops/502507", "https://data.delijn.be/stops/507506"], ["https://data.delijn.be/stops/406181", "https://data.delijn.be/stops/406281"], ["https://data.delijn.be/stops/303262", "https://data.delijn.be/stops/307797"], ["https://data.delijn.be/stops/103604", "https://data.delijn.be/stops/109427"], ["https://data.delijn.be/stops/507553", "https://data.delijn.be/stops/507556"], ["https://data.delijn.be/stops/504387", "https://data.delijn.be/stops/509387"], ["https://data.delijn.be/stops/105340", "https://data.delijn.be/stops/105345"], ["https://data.delijn.be/stops/202770", "https://data.delijn.be/stops/203208"], ["https://data.delijn.be/stops/501074", "https://data.delijn.be/stops/506071"], ["https://data.delijn.be/stops/300748", "https://data.delijn.be/stops/300772"], ["https://data.delijn.be/stops/503207", "https://data.delijn.be/stops/503213"], ["https://data.delijn.be/stops/302666", "https://data.delijn.be/stops/302692"], ["https://data.delijn.be/stops/108876", "https://data.delijn.be/stops/108877"], ["https://data.delijn.be/stops/509401", "https://data.delijn.be/stops/509402"], ["https://data.delijn.be/stops/302394", "https://data.delijn.be/stops/302762"], ["https://data.delijn.be/stops/102233", "https://data.delijn.be/stops/102418"], ["https://data.delijn.be/stops/208389", "https://data.delijn.be/stops/209389"], ["https://data.delijn.be/stops/502025", "https://data.delijn.be/stops/507025"], ["https://data.delijn.be/stops/304499", "https://data.delijn.be/stops/304518"], ["https://data.delijn.be/stops/502419", "https://data.delijn.be/stops/507418"], ["https://data.delijn.be/stops/401525", "https://data.delijn.be/stops/403875"], ["https://data.delijn.be/stops/203424", "https://data.delijn.be/stops/203425"], ["https://data.delijn.be/stops/503381", "https://data.delijn.be/stops/509773"], ["https://data.delijn.be/stops/501265", "https://data.delijn.be/stops/506322"], ["https://data.delijn.be/stops/107642", "https://data.delijn.be/stops/305632"], ["https://data.delijn.be/stops/408404", "https://data.delijn.be/stops/408405"], ["https://data.delijn.be/stops/406036", "https://data.delijn.be/stops/406388"], ["https://data.delijn.be/stops/503509", "https://data.delijn.be/stops/505565"], ["https://data.delijn.be/stops/409412", "https://data.delijn.be/stops/409763"], ["https://data.delijn.be/stops/404404", "https://data.delijn.be/stops/404406"], ["https://data.delijn.be/stops/101012", "https://data.delijn.be/stops/101699"], ["https://data.delijn.be/stops/305382", "https://data.delijn.be/stops/333233"], ["https://data.delijn.be/stops/206665", "https://data.delijn.be/stops/206712"], ["https://data.delijn.be/stops/404358", "https://data.delijn.be/stops/404393"], ["https://data.delijn.be/stops/509574", "https://data.delijn.be/stops/509575"], ["https://data.delijn.be/stops/102737", "https://data.delijn.be/stops/105522"], ["https://data.delijn.be/stops/400729", "https://data.delijn.be/stops/400903"], ["https://data.delijn.be/stops/300831", "https://data.delijn.be/stops/300979"], ["https://data.delijn.be/stops/503620", "https://data.delijn.be/stops/505534"], ["https://data.delijn.be/stops/106393", "https://data.delijn.be/stops/109137"], ["https://data.delijn.be/stops/108393", "https://data.delijn.be/stops/108394"], ["https://data.delijn.be/stops/505844", "https://data.delijn.be/stops/505987"], ["https://data.delijn.be/stops/402836", "https://data.delijn.be/stops/408981"], ["https://data.delijn.be/stops/303090", "https://data.delijn.be/stops/306110"], ["https://data.delijn.be/stops/401452", "https://data.delijn.be/stops/401460"], ["https://data.delijn.be/stops/301689", "https://data.delijn.be/stops/302387"], ["https://data.delijn.be/stops/108399", "https://data.delijn.be/stops/108400"], ["https://data.delijn.be/stops/509928", "https://data.delijn.be/stops/509929"], ["https://data.delijn.be/stops/301452", "https://data.delijn.be/stops/302538"], ["https://data.delijn.be/stops/302758", "https://data.delijn.be/stops/302760"], ["https://data.delijn.be/stops/101066", "https://data.delijn.be/stops/101067"], ["https://data.delijn.be/stops/202780", "https://data.delijn.be/stops/202781"], ["https://data.delijn.be/stops/500951", "https://data.delijn.be/stops/504741"], ["https://data.delijn.be/stops/501492", "https://data.delijn.be/stops/501741"], ["https://data.delijn.be/stops/302708", "https://data.delijn.be/stops/308594"], ["https://data.delijn.be/stops/409583", "https://data.delijn.be/stops/409585"], ["https://data.delijn.be/stops/405984", "https://data.delijn.be/stops/405985"], ["https://data.delijn.be/stops/501552", "https://data.delijn.be/stops/509658"], ["https://data.delijn.be/stops/503213", "https://data.delijn.be/stops/508547"], ["https://data.delijn.be/stops/204431", "https://data.delijn.be/stops/205430"], ["https://data.delijn.be/stops/408007", "https://data.delijn.be/stops/408150"], ["https://data.delijn.be/stops/201751", "https://data.delijn.be/stops/203835"], ["https://data.delijn.be/stops/107367", "https://data.delijn.be/stops/108348"], ["https://data.delijn.be/stops/107577", "https://data.delijn.be/stops/107746"], ["https://data.delijn.be/stops/205629", "https://data.delijn.be/stops/205630"], ["https://data.delijn.be/stops/502557", "https://data.delijn.be/stops/507557"], ["https://data.delijn.be/stops/406484", "https://data.delijn.be/stops/406488"], ["https://data.delijn.be/stops/503124", "https://data.delijn.be/stops/509886"], ["https://data.delijn.be/stops/101616", "https://data.delijn.be/stops/106574"], ["https://data.delijn.be/stops/302583", "https://data.delijn.be/stops/302693"], ["https://data.delijn.be/stops/200921", "https://data.delijn.be/stops/211023"], ["https://data.delijn.be/stops/407645", "https://data.delijn.be/stops/407653"], ["https://data.delijn.be/stops/206228", "https://data.delijn.be/stops/308570"], ["https://data.delijn.be/stops/101857", "https://data.delijn.be/stops/105557"], ["https://data.delijn.be/stops/102780", "https://data.delijn.be/stops/103055"], ["https://data.delijn.be/stops/201803", "https://data.delijn.be/stops/201835"], ["https://data.delijn.be/stops/409098", "https://data.delijn.be/stops/409157"], ["https://data.delijn.be/stops/208200", "https://data.delijn.be/stops/208201"], ["https://data.delijn.be/stops/504602", "https://data.delijn.be/stops/504634"], ["https://data.delijn.be/stops/507444", "https://data.delijn.be/stops/507464"], ["https://data.delijn.be/stops/202586", "https://data.delijn.be/stops/210112"], ["https://data.delijn.be/stops/303700", "https://data.delijn.be/stops/303702"], ["https://data.delijn.be/stops/108686", "https://data.delijn.be/stops/108687"], ["https://data.delijn.be/stops/404886", "https://data.delijn.be/stops/404985"], ["https://data.delijn.be/stops/501330", "https://data.delijn.be/stops/506480"], ["https://data.delijn.be/stops/204626", "https://data.delijn.be/stops/204627"], ["https://data.delijn.be/stops/108368", "https://data.delijn.be/stops/108456"], ["https://data.delijn.be/stops/203991", "https://data.delijn.be/stops/211025"], ["https://data.delijn.be/stops/204319", "https://data.delijn.be/stops/205362"], ["https://data.delijn.be/stops/209786", "https://data.delijn.be/stops/209787"], ["https://data.delijn.be/stops/206261", "https://data.delijn.be/stops/207903"], ["https://data.delijn.be/stops/105534", "https://data.delijn.be/stops/105537"], ["https://data.delijn.be/stops/200831", "https://data.delijn.be/stops/200832"], ["https://data.delijn.be/stops/103036", "https://data.delijn.be/stops/103037"], ["https://data.delijn.be/stops/200175", "https://data.delijn.be/stops/201650"], ["https://data.delijn.be/stops/301734", "https://data.delijn.be/stops/301758"], ["https://data.delijn.be/stops/503696", "https://data.delijn.be/stops/509957"], ["https://data.delijn.be/stops/305537", "https://data.delijn.be/stops/305571"], ["https://data.delijn.be/stops/300663", "https://data.delijn.be/stops/300664"], ["https://data.delijn.be/stops/502479", "https://data.delijn.be/stops/502945"], ["https://data.delijn.be/stops/206946", "https://data.delijn.be/stops/208074"], ["https://data.delijn.be/stops/302599", "https://data.delijn.be/stops/302688"], ["https://data.delijn.be/stops/502684", "https://data.delijn.be/stops/507232"], ["https://data.delijn.be/stops/505772", "https://data.delijn.be/stops/507713"], ["https://data.delijn.be/stops/302913", "https://data.delijn.be/stops/303235"], ["https://data.delijn.be/stops/300961", "https://data.delijn.be/stops/300969"], ["https://data.delijn.be/stops/508429", "https://data.delijn.be/stops/508434"], ["https://data.delijn.be/stops/508548", "https://data.delijn.be/stops/508552"], ["https://data.delijn.be/stops/102241", "https://data.delijn.be/stops/102244"], ["https://data.delijn.be/stops/208604", "https://data.delijn.be/stops/209604"], ["https://data.delijn.be/stops/504252", "https://data.delijn.be/stops/509361"], ["https://data.delijn.be/stops/208673", "https://data.delijn.be/stops/209441"], ["https://data.delijn.be/stops/105627", "https://data.delijn.be/stops/105628"], ["https://data.delijn.be/stops/305030", "https://data.delijn.be/stops/305031"], ["https://data.delijn.be/stops/300798", "https://data.delijn.be/stops/304775"], ["https://data.delijn.be/stops/200965", "https://data.delijn.be/stops/204810"], ["https://data.delijn.be/stops/303095", "https://data.delijn.be/stops/303096"], ["https://data.delijn.be/stops/503426", "https://data.delijn.be/stops/508426"], ["https://data.delijn.be/stops/403468", "https://data.delijn.be/stops/403474"], ["https://data.delijn.be/stops/505422", "https://data.delijn.be/stops/509611"], ["https://data.delijn.be/stops/202681", "https://data.delijn.be/stops/203681"], ["https://data.delijn.be/stops/302344", "https://data.delijn.be/stops/302352"], ["https://data.delijn.be/stops/504701", "https://data.delijn.be/stops/509439"], ["https://data.delijn.be/stops/201652", "https://data.delijn.be/stops/210067"], ["https://data.delijn.be/stops/208748", "https://data.delijn.be/stops/209387"], ["https://data.delijn.be/stops/302396", "https://data.delijn.be/stops/302671"], ["https://data.delijn.be/stops/105096", "https://data.delijn.be/stops/105097"], ["https://data.delijn.be/stops/301595", "https://data.delijn.be/stops/302603"], ["https://data.delijn.be/stops/109052", "https://data.delijn.be/stops/109053"], ["https://data.delijn.be/stops/108788", "https://data.delijn.be/stops/108789"], ["https://data.delijn.be/stops/109491", "https://data.delijn.be/stops/305832"], ["https://data.delijn.be/stops/208519", "https://data.delijn.be/stops/218016"], ["https://data.delijn.be/stops/208747", "https://data.delijn.be/stops/209620"], ["https://data.delijn.be/stops/302545", "https://data.delijn.be/stops/303381"], ["https://data.delijn.be/stops/400499", "https://data.delijn.be/stops/400906"], ["https://data.delijn.be/stops/503860", "https://data.delijn.be/stops/508860"], ["https://data.delijn.be/stops/205978", "https://data.delijn.be/stops/208244"], ["https://data.delijn.be/stops/502489", "https://data.delijn.be/stops/502636"], ["https://data.delijn.be/stops/504639", "https://data.delijn.be/stops/505918"], ["https://data.delijn.be/stops/103123", "https://data.delijn.be/stops/107703"], ["https://data.delijn.be/stops/402451", "https://data.delijn.be/stops/402493"], ["https://data.delijn.be/stops/505935", "https://data.delijn.be/stops/508313"], ["https://data.delijn.be/stops/305113", "https://data.delijn.be/stops/306881"], ["https://data.delijn.be/stops/101921", "https://data.delijn.be/stops/106042"], ["https://data.delijn.be/stops/103371", "https://data.delijn.be/stops/104995"], ["https://data.delijn.be/stops/204193", "https://data.delijn.be/stops/205194"], ["https://data.delijn.be/stops/302725", "https://data.delijn.be/stops/308596"], ["https://data.delijn.be/stops/408134", "https://data.delijn.be/stops/408432"], ["https://data.delijn.be/stops/502546", "https://data.delijn.be/stops/502712"], ["https://data.delijn.be/stops/202917", "https://data.delijn.be/stops/203917"], ["https://data.delijn.be/stops/102389", "https://data.delijn.be/stops/107086"], ["https://data.delijn.be/stops/306847", "https://data.delijn.be/stops/307358"], ["https://data.delijn.be/stops/301631", "https://data.delijn.be/stops/302119"], ["https://data.delijn.be/stops/504255", "https://data.delijn.be/stops/504318"], ["https://data.delijn.be/stops/304381", "https://data.delijn.be/stops/304391"], ["https://data.delijn.be/stops/106752", "https://data.delijn.be/stops/106753"], ["https://data.delijn.be/stops/108305", "https://data.delijn.be/stops/108930"], ["https://data.delijn.be/stops/206668", "https://data.delijn.be/stops/206776"], ["https://data.delijn.be/stops/102833", "https://data.delijn.be/stops/102840"], ["https://data.delijn.be/stops/202183", "https://data.delijn.be/stops/203183"], ["https://data.delijn.be/stops/101757", "https://data.delijn.be/stops/104408"], ["https://data.delijn.be/stops/406736", "https://data.delijn.be/stops/406998"], ["https://data.delijn.be/stops/402134", "https://data.delijn.be/stops/402202"], ["https://data.delijn.be/stops/503102", "https://data.delijn.be/stops/503107"], ["https://data.delijn.be/stops/303697", "https://data.delijn.be/stops/305409"], ["https://data.delijn.be/stops/407923", "https://data.delijn.be/stops/408438"], ["https://data.delijn.be/stops/300213", "https://data.delijn.be/stops/301383"], ["https://data.delijn.be/stops/101651", "https://data.delijn.be/stops/105497"], ["https://data.delijn.be/stops/402935", "https://data.delijn.be/stops/403976"], ["https://data.delijn.be/stops/203794", "https://data.delijn.be/stops/203795"], ["https://data.delijn.be/stops/404205", "https://data.delijn.be/stops/404209"], ["https://data.delijn.be/stops/302938", "https://data.delijn.be/stops/307077"], ["https://data.delijn.be/stops/502426", "https://data.delijn.be/stops/507426"], ["https://data.delijn.be/stops/201724", "https://data.delijn.be/stops/203382"], ["https://data.delijn.be/stops/208316", "https://data.delijn.be/stops/209772"], ["https://data.delijn.be/stops/503846", "https://data.delijn.be/stops/505897"], ["https://data.delijn.be/stops/304409", "https://data.delijn.be/stops/304413"], ["https://data.delijn.be/stops/504416", "https://data.delijn.be/stops/504835"], ["https://data.delijn.be/stops/503535", "https://data.delijn.be/stops/508535"], ["https://data.delijn.be/stops/204240", "https://data.delijn.be/stops/205345"], ["https://data.delijn.be/stops/102665", "https://data.delijn.be/stops/104220"], ["https://data.delijn.be/stops/202902", "https://data.delijn.be/stops/203902"], ["https://data.delijn.be/stops/505167", "https://data.delijn.be/stops/509499"], ["https://data.delijn.be/stops/200885", "https://data.delijn.be/stops/202063"], ["https://data.delijn.be/stops/407225", "https://data.delijn.be/stops/407486"], ["https://data.delijn.be/stops/502022", "https://data.delijn.be/stops/507022"], ["https://data.delijn.be/stops/105101", "https://data.delijn.be/stops/105103"], ["https://data.delijn.be/stops/504680", "https://data.delijn.be/stops/509347"], ["https://data.delijn.be/stops/503781", "https://data.delijn.be/stops/505822"], ["https://data.delijn.be/stops/206575", "https://data.delijn.be/stops/206930"], ["https://data.delijn.be/stops/102582", "https://data.delijn.be/stops/105370"], ["https://data.delijn.be/stops/503688", "https://data.delijn.be/stops/508878"], ["https://data.delijn.be/stops/208380", "https://data.delijn.be/stops/209290"], ["https://data.delijn.be/stops/502675", "https://data.delijn.be/stops/507675"], ["https://data.delijn.be/stops/208483", "https://data.delijn.be/stops/209618"], ["https://data.delijn.be/stops/102416", "https://data.delijn.be/stops/104668"], ["https://data.delijn.be/stops/403023", "https://data.delijn.be/stops/405182"], ["https://data.delijn.be/stops/206547", "https://data.delijn.be/stops/209756"], ["https://data.delijn.be/stops/105646", "https://data.delijn.be/stops/105647"], ["https://data.delijn.be/stops/201152", "https://data.delijn.be/stops/201174"], ["https://data.delijn.be/stops/503600", "https://data.delijn.be/stops/503606"], ["https://data.delijn.be/stops/408422", "https://data.delijn.be/stops/408426"], ["https://data.delijn.be/stops/101261", "https://data.delijn.be/stops/102888"], ["https://data.delijn.be/stops/503670", "https://data.delijn.be/stops/503674"], ["https://data.delijn.be/stops/201881", "https://data.delijn.be/stops/203421"], ["https://data.delijn.be/stops/507208", "https://data.delijn.be/stops/507211"], ["https://data.delijn.be/stops/302186", "https://data.delijn.be/stops/302187"], ["https://data.delijn.be/stops/107797", "https://data.delijn.be/stops/107798"], ["https://data.delijn.be/stops/300824", "https://data.delijn.be/stops/300859"], ["https://data.delijn.be/stops/206873", "https://data.delijn.be/stops/207284"], ["https://data.delijn.be/stops/504317", "https://data.delijn.be/stops/504322"], ["https://data.delijn.be/stops/304646", "https://data.delijn.be/stops/304647"], ["https://data.delijn.be/stops/102025", "https://data.delijn.be/stops/105755"], ["https://data.delijn.be/stops/300731", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/400787", "https://data.delijn.be/stops/409590"], ["https://data.delijn.be/stops/305433", "https://data.delijn.be/stops/305435"], ["https://data.delijn.be/stops/103643", "https://data.delijn.be/stops/107184"], ["https://data.delijn.be/stops/101799", "https://data.delijn.be/stops/300674"], ["https://data.delijn.be/stops/108784", "https://data.delijn.be/stops/109121"], ["https://data.delijn.be/stops/503398", "https://data.delijn.be/stops/508430"], ["https://data.delijn.be/stops/302359", "https://data.delijn.be/stops/302362"], ["https://data.delijn.be/stops/402975", "https://data.delijn.be/stops/403325"], ["https://data.delijn.be/stops/105650", "https://data.delijn.be/stops/105655"], ["https://data.delijn.be/stops/303988", "https://data.delijn.be/stops/307015"], ["https://data.delijn.be/stops/104549", "https://data.delijn.be/stops/305841"], ["https://data.delijn.be/stops/108767", "https://data.delijn.be/stops/108784"], ["https://data.delijn.be/stops/102219", "https://data.delijn.be/stops/102223"], ["https://data.delijn.be/stops/405678", "https://data.delijn.be/stops/406989"], ["https://data.delijn.be/stops/105641", "https://data.delijn.be/stops/105643"], ["https://data.delijn.be/stops/107072", "https://data.delijn.be/stops/107074"], ["https://data.delijn.be/stops/304432", "https://data.delijn.be/stops/307697"], ["https://data.delijn.be/stops/504377", "https://data.delijn.be/stops/509385"], ["https://data.delijn.be/stops/300666", "https://data.delijn.be/stops/300667"], ["https://data.delijn.be/stops/403154", "https://data.delijn.be/stops/403155"], ["https://data.delijn.be/stops/204459", "https://data.delijn.be/stops/215017"], ["https://data.delijn.be/stops/202780", "https://data.delijn.be/stops/203780"], ["https://data.delijn.be/stops/307310", "https://data.delijn.be/stops/307311"], ["https://data.delijn.be/stops/301628", "https://data.delijn.be/stops/301641"], ["https://data.delijn.be/stops/206240", "https://data.delijn.be/stops/207407"], ["https://data.delijn.be/stops/404559", "https://data.delijn.be/stops/405486"], ["https://data.delijn.be/stops/302692", "https://data.delijn.be/stops/302700"], ["https://data.delijn.be/stops/409191", "https://data.delijn.be/stops/410180"], ["https://data.delijn.be/stops/101821", "https://data.delijn.be/stops/107019"], ["https://data.delijn.be/stops/307142", "https://data.delijn.be/stops/307246"], ["https://data.delijn.be/stops/200022", "https://data.delijn.be/stops/201022"], ["https://data.delijn.be/stops/202055", "https://data.delijn.be/stops/203055"], ["https://data.delijn.be/stops/505700", "https://data.delijn.be/stops/507575"], ["https://data.delijn.be/stops/206763", "https://data.delijn.be/stops/207869"], ["https://data.delijn.be/stops/505234", "https://data.delijn.be/stops/505762"], ["https://data.delijn.be/stops/207501", "https://data.delijn.be/stops/207673"], ["https://data.delijn.be/stops/102226", "https://data.delijn.be/stops/105529"], ["https://data.delijn.be/stops/406269", "https://data.delijn.be/stops/406448"], ["https://data.delijn.be/stops/505095", "https://data.delijn.be/stops/505666"], ["https://data.delijn.be/stops/103476", "https://data.delijn.be/stops/109215"], ["https://data.delijn.be/stops/504414", "https://data.delijn.be/stops/504591"], ["https://data.delijn.be/stops/404208", "https://data.delijn.be/stops/404216"], ["https://data.delijn.be/stops/504023", "https://data.delijn.be/stops/504106"], ["https://data.delijn.be/stops/206845", "https://data.delijn.be/stops/303240"], ["https://data.delijn.be/stops/103718", "https://data.delijn.be/stops/107307"], ["https://data.delijn.be/stops/401724", "https://data.delijn.be/stops/405455"], ["https://data.delijn.be/stops/208253", "https://data.delijn.be/stops/208254"], ["https://data.delijn.be/stops/201680", "https://data.delijn.be/stops/211116"], ["https://data.delijn.be/stops/407906", "https://data.delijn.be/stops/408102"], ["https://data.delijn.be/stops/105484", "https://data.delijn.be/stops/108802"], ["https://data.delijn.be/stops/403225", "https://data.delijn.be/stops/403385"], ["https://data.delijn.be/stops/206605", "https://data.delijn.be/stops/207605"], ["https://data.delijn.be/stops/200141", "https://data.delijn.be/stops/210001"], ["https://data.delijn.be/stops/209390", "https://data.delijn.be/stops/508835"], ["https://data.delijn.be/stops/302794", "https://data.delijn.be/stops/302812"], ["https://data.delijn.be/stops/305339", "https://data.delijn.be/stops/305340"], ["https://data.delijn.be/stops/201625", "https://data.delijn.be/stops/205984"], ["https://data.delijn.be/stops/201567", "https://data.delijn.be/stops/211047"], ["https://data.delijn.be/stops/200657", "https://data.delijn.be/stops/201657"], ["https://data.delijn.be/stops/206541", "https://data.delijn.be/stops/207541"], ["https://data.delijn.be/stops/303282", "https://data.delijn.be/stops/303291"], ["https://data.delijn.be/stops/208125", "https://data.delijn.be/stops/218015"], ["https://data.delijn.be/stops/102744", "https://data.delijn.be/stops/103039"], ["https://data.delijn.be/stops/200927", "https://data.delijn.be/stops/203229"], ["https://data.delijn.be/stops/500601", "https://data.delijn.be/stops/501540"], ["https://data.delijn.be/stops/405311", "https://data.delijn.be/stops/405406"], ["https://data.delijn.be/stops/102040", "https://data.delijn.be/stops/103625"], ["https://data.delijn.be/stops/401756", "https://data.delijn.be/stops/401757"], ["https://data.delijn.be/stops/500136", "https://data.delijn.be/stops/590331"], ["https://data.delijn.be/stops/200333", "https://data.delijn.be/stops/201333"], ["https://data.delijn.be/stops/200544", "https://data.delijn.be/stops/201339"], ["https://data.delijn.be/stops/207902", "https://data.delijn.be/stops/216002"], ["https://data.delijn.be/stops/301415", "https://data.delijn.be/stops/301419"], ["https://data.delijn.be/stops/208288", "https://data.delijn.be/stops/209287"], ["https://data.delijn.be/stops/301165", "https://data.delijn.be/stops/302876"], ["https://data.delijn.be/stops/500873", "https://data.delijn.be/stops/503851"], ["https://data.delijn.be/stops/304024", "https://data.delijn.be/stops/304822"], ["https://data.delijn.be/stops/202832", "https://data.delijn.be/stops/218025"], ["https://data.delijn.be/stops/402893", "https://data.delijn.be/stops/402894"], ["https://data.delijn.be/stops/200241", "https://data.delijn.be/stops/202136"], ["https://data.delijn.be/stops/206016", "https://data.delijn.be/stops/207926"], ["https://data.delijn.be/stops/206333", "https://data.delijn.be/stops/207706"], ["https://data.delijn.be/stops/400486", "https://data.delijn.be/stops/407688"], ["https://data.delijn.be/stops/301961", "https://data.delijn.be/stops/301988"], ["https://data.delijn.be/stops/400303", "https://data.delijn.be/stops/400440"], ["https://data.delijn.be/stops/101988", "https://data.delijn.be/stops/105010"], ["https://data.delijn.be/stops/108196", "https://data.delijn.be/stops/108197"], ["https://data.delijn.be/stops/303889", "https://data.delijn.be/stops/303890"], ["https://data.delijn.be/stops/204372", "https://data.delijn.be/stops/205372"], ["https://data.delijn.be/stops/400257", "https://data.delijn.be/stops/400402"], ["https://data.delijn.be/stops/106647", "https://data.delijn.be/stops/106648"], ["https://data.delijn.be/stops/407567", "https://data.delijn.be/stops/407568"], ["https://data.delijn.be/stops/302363", "https://data.delijn.be/stops/308358"], ["https://data.delijn.be/stops/202824", "https://data.delijn.be/stops/202825"], ["https://data.delijn.be/stops/505917", "https://data.delijn.be/stops/508907"], ["https://data.delijn.be/stops/105202", "https://data.delijn.be/stops/108358"], ["https://data.delijn.be/stops/402095", "https://data.delijn.be/stops/402372"], ["https://data.delijn.be/stops/209186", "https://data.delijn.be/stops/209187"], ["https://data.delijn.be/stops/204298", "https://data.delijn.be/stops/205299"], ["https://data.delijn.be/stops/408941", "https://data.delijn.be/stops/409242"], ["https://data.delijn.be/stops/200433", "https://data.delijn.be/stops/201429"], ["https://data.delijn.be/stops/405819", "https://data.delijn.be/stops/409763"], ["https://data.delijn.be/stops/504226", "https://data.delijn.be/stops/505707"], ["https://data.delijn.be/stops/209533", "https://data.delijn.be/stops/219016"], ["https://data.delijn.be/stops/506080", "https://data.delijn.be/stops/506084"], ["https://data.delijn.be/stops/502264", "https://data.delijn.be/stops/502910"], ["https://data.delijn.be/stops/305482", "https://data.delijn.be/stops/308549"], ["https://data.delijn.be/stops/400403", "https://data.delijn.be/stops/404827"], ["https://data.delijn.be/stops/506674", "https://data.delijn.be/stops/506676"], ["https://data.delijn.be/stops/204663", "https://data.delijn.be/stops/205662"], ["https://data.delijn.be/stops/106491", "https://data.delijn.be/stops/109712"], ["https://data.delijn.be/stops/405257", "https://data.delijn.be/stops/405275"], ["https://data.delijn.be/stops/201881", "https://data.delijn.be/stops/203278"], ["https://data.delijn.be/stops/503718", "https://data.delijn.be/stops/503732"], ["https://data.delijn.be/stops/405750", "https://data.delijn.be/stops/405751"], ["https://data.delijn.be/stops/106196", "https://data.delijn.be/stops/109275"], ["https://data.delijn.be/stops/300642", "https://data.delijn.be/stops/305813"], ["https://data.delijn.be/stops/300066", "https://data.delijn.be/stops/300067"], ["https://data.delijn.be/stops/305107", "https://data.delijn.be/stops/308123"], ["https://data.delijn.be/stops/403001", "https://data.delijn.be/stops/409334"], ["https://data.delijn.be/stops/204127", "https://data.delijn.be/stops/205128"], ["https://data.delijn.be/stops/401304", "https://data.delijn.be/stops/401306"], ["https://data.delijn.be/stops/307640", "https://data.delijn.be/stops/307641"], ["https://data.delijn.be/stops/102998", "https://data.delijn.be/stops/107416"], ["https://data.delijn.be/stops/106087", "https://data.delijn.be/stops/106137"], ["https://data.delijn.be/stops/400967", "https://data.delijn.be/stops/406687"], ["https://data.delijn.be/stops/105618", "https://data.delijn.be/stops/105654"], ["https://data.delijn.be/stops/508050", "https://data.delijn.be/stops/508056"], ["https://data.delijn.be/stops/404563", "https://data.delijn.be/stops/406742"], ["https://data.delijn.be/stops/500053", "https://data.delijn.be/stops/502085"], ["https://data.delijn.be/stops/401648", "https://data.delijn.be/stops/408732"], ["https://data.delijn.be/stops/203823", "https://data.delijn.be/stops/209717"], ["https://data.delijn.be/stops/101075", "https://data.delijn.be/stops/102885"], ["https://data.delijn.be/stops/405148", "https://data.delijn.be/stops/405290"], ["https://data.delijn.be/stops/103905", "https://data.delijn.be/stops/105671"], ["https://data.delijn.be/stops/106965", "https://data.delijn.be/stops/106966"], ["https://data.delijn.be/stops/308072", "https://data.delijn.be/stops/308073"], ["https://data.delijn.be/stops/306853", "https://data.delijn.be/stops/306856"], ["https://data.delijn.be/stops/505973", "https://data.delijn.be/stops/508019"], ["https://data.delijn.be/stops/300461", "https://data.delijn.be/stops/307088"], ["https://data.delijn.be/stops/502560", "https://data.delijn.be/stops/507561"], ["https://data.delijn.be/stops/105669", "https://data.delijn.be/stops/105673"], ["https://data.delijn.be/stops/101217", "https://data.delijn.be/stops/107946"], ["https://data.delijn.be/stops/107269", "https://data.delijn.be/stops/107270"], ["https://data.delijn.be/stops/305220", "https://data.delijn.be/stops/305987"], ["https://data.delijn.be/stops/300523", "https://data.delijn.be/stops/300524"], ["https://data.delijn.be/stops/407287", "https://data.delijn.be/stops/407324"], ["https://data.delijn.be/stops/207798", "https://data.delijn.be/stops/208758"], ["https://data.delijn.be/stops/202207", "https://data.delijn.be/stops/203207"], ["https://data.delijn.be/stops/302075", "https://data.delijn.be/stops/302277"], ["https://data.delijn.be/stops/202088", "https://data.delijn.be/stops/202721"], ["https://data.delijn.be/stops/304678", "https://data.delijn.be/stops/304679"], ["https://data.delijn.be/stops/407770", "https://data.delijn.be/stops/407771"], ["https://data.delijn.be/stops/102444", "https://data.delijn.be/stops/104117"], ["https://data.delijn.be/stops/405169", "https://data.delijn.be/stops/408369"], ["https://data.delijn.be/stops/104759", "https://data.delijn.be/stops/104762"], ["https://data.delijn.be/stops/501065", "https://data.delijn.be/stops/506137"], ["https://data.delijn.be/stops/502390", "https://data.delijn.be/stops/502668"], ["https://data.delijn.be/stops/300760", "https://data.delijn.be/stops/300775"], ["https://data.delijn.be/stops/204103", "https://data.delijn.be/stops/205595"], ["https://data.delijn.be/stops/400253", "https://data.delijn.be/stops/405585"], ["https://data.delijn.be/stops/501527", "https://data.delijn.be/stops/509896"], ["https://data.delijn.be/stops/305662", "https://data.delijn.be/stops/305670"], ["https://data.delijn.be/stops/201862", "https://data.delijn.be/stops/202668"], ["https://data.delijn.be/stops/301354", "https://data.delijn.be/stops/304532"], ["https://data.delijn.be/stops/505174", "https://data.delijn.be/stops/509163"], ["https://data.delijn.be/stops/303250", "https://data.delijn.be/stops/303303"], ["https://data.delijn.be/stops/109452", "https://data.delijn.be/stops/109555"], ["https://data.delijn.be/stops/304066", "https://data.delijn.be/stops/304089"], ["https://data.delijn.be/stops/207304", "https://data.delijn.be/stops/207632"], ["https://data.delijn.be/stops/508280", "https://data.delijn.be/stops/508288"], ["https://data.delijn.be/stops/507817", "https://data.delijn.be/stops/508384"], ["https://data.delijn.be/stops/400903", "https://data.delijn.be/stops/400938"], ["https://data.delijn.be/stops/102900", "https://data.delijn.be/stops/105380"], ["https://data.delijn.be/stops/103694", "https://data.delijn.be/stops/103698"], ["https://data.delijn.be/stops/200776", "https://data.delijn.be/stops/209089"], ["https://data.delijn.be/stops/207543", "https://data.delijn.be/stops/209749"], ["https://data.delijn.be/stops/301089", "https://data.delijn.be/stops/302806"], ["https://data.delijn.be/stops/405394", "https://data.delijn.be/stops/409245"], ["https://data.delijn.be/stops/403652", "https://data.delijn.be/stops/403653"], ["https://data.delijn.be/stops/406694", "https://data.delijn.be/stops/409411"], ["https://data.delijn.be/stops/305419", "https://data.delijn.be/stops/305420"], ["https://data.delijn.be/stops/300113", "https://data.delijn.be/stops/300114"], ["https://data.delijn.be/stops/206980", "https://data.delijn.be/stops/206994"], ["https://data.delijn.be/stops/306123", "https://data.delijn.be/stops/307726"], ["https://data.delijn.be/stops/206716", "https://data.delijn.be/stops/206718"], ["https://data.delijn.be/stops/406088", "https://data.delijn.be/stops/410148"], ["https://data.delijn.be/stops/301531", "https://data.delijn.be/stops/304966"], ["https://data.delijn.be/stops/206364", "https://data.delijn.be/stops/207332"], ["https://data.delijn.be/stops/401086", "https://data.delijn.be/stops/401100"], ["https://data.delijn.be/stops/301188", "https://data.delijn.be/stops/301208"], ["https://data.delijn.be/stops/107717", "https://data.delijn.be/stops/107718"], ["https://data.delijn.be/stops/303432", "https://data.delijn.be/stops/303433"], ["https://data.delijn.be/stops/301455", "https://data.delijn.be/stops/301487"], ["https://data.delijn.be/stops/405030", "https://data.delijn.be/stops/408147"], ["https://data.delijn.be/stops/208212", "https://data.delijn.be/stops/209212"], ["https://data.delijn.be/stops/101537", "https://data.delijn.be/stops/103013"], ["https://data.delijn.be/stops/305349", "https://data.delijn.be/stops/305350"], ["https://data.delijn.be/stops/209193", "https://data.delijn.be/stops/209369"], ["https://data.delijn.be/stops/109126", "https://data.delijn.be/stops/109127"], ["https://data.delijn.be/stops/406108", "https://data.delijn.be/stops/406815"], ["https://data.delijn.be/stops/504070", "https://data.delijn.be/stops/505205"], ["https://data.delijn.be/stops/200815", "https://data.delijn.be/stops/201119"], ["https://data.delijn.be/stops/200774", "https://data.delijn.be/stops/208384"], ["https://data.delijn.be/stops/503106", "https://data.delijn.be/stops/505388"], ["https://data.delijn.be/stops/202343", "https://data.delijn.be/stops/202439"], ["https://data.delijn.be/stops/402797", "https://data.delijn.be/stops/405497"], ["https://data.delijn.be/stops/302603", "https://data.delijn.be/stops/302606"], ["https://data.delijn.be/stops/208256", "https://data.delijn.be/stops/209256"], ["https://data.delijn.be/stops/305547", "https://data.delijn.be/stops/305548"], ["https://data.delijn.be/stops/505684", "https://data.delijn.be/stops/507597"], ["https://data.delijn.be/stops/204540", "https://data.delijn.be/stops/204552"], ["https://data.delijn.be/stops/204499", "https://data.delijn.be/stops/205544"], ["https://data.delijn.be/stops/206662", "https://data.delijn.be/stops/209670"], ["https://data.delijn.be/stops/301240", "https://data.delijn.be/stops/301251"], ["https://data.delijn.be/stops/307386", "https://data.delijn.be/stops/307395"], ["https://data.delijn.be/stops/202431", "https://data.delijn.be/stops/203431"], ["https://data.delijn.be/stops/300709", "https://data.delijn.be/stops/300710"], ["https://data.delijn.be/stops/406091", "https://data.delijn.be/stops/410148"], ["https://data.delijn.be/stops/508126", "https://data.delijn.be/stops/508145"], ["https://data.delijn.be/stops/103122", "https://data.delijn.be/stops/205602"], ["https://data.delijn.be/stops/302974", "https://data.delijn.be/stops/303024"], ["https://data.delijn.be/stops/305594", "https://data.delijn.be/stops/305598"], ["https://data.delijn.be/stops/505034", "https://data.delijn.be/stops/506466"], ["https://data.delijn.be/stops/402392", "https://data.delijn.be/stops/402393"], ["https://data.delijn.be/stops/505104", "https://data.delijn.be/stops/508994"], ["https://data.delijn.be/stops/403200", "https://data.delijn.be/stops/404759"], ["https://data.delijn.be/stops/204414", "https://data.delijn.be/stops/204415"], ["https://data.delijn.be/stops/502245", "https://data.delijn.be/stops/507910"], ["https://data.delijn.be/stops/105767", "https://data.delijn.be/stops/105768"], ["https://data.delijn.be/stops/102540", "https://data.delijn.be/stops/103500"], ["https://data.delijn.be/stops/401041", "https://data.delijn.be/stops/401120"], ["https://data.delijn.be/stops/204151", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/200089", "https://data.delijn.be/stops/200393"], ["https://data.delijn.be/stops/501173", "https://data.delijn.be/stops/506183"], ["https://data.delijn.be/stops/101846", "https://data.delijn.be/stops/106881"], ["https://data.delijn.be/stops/305377", "https://data.delijn.be/stops/305381"], ["https://data.delijn.be/stops/401951", "https://data.delijn.be/stops/407524"], ["https://data.delijn.be/stops/206499", "https://data.delijn.be/stops/207527"], ["https://data.delijn.be/stops/101472", "https://data.delijn.be/stops/109603"], ["https://data.delijn.be/stops/502478", "https://data.delijn.be/stops/505074"], ["https://data.delijn.be/stops/506114", "https://data.delijn.be/stops/506640"], ["https://data.delijn.be/stops/501119", "https://data.delijn.be/stops/506121"], ["https://data.delijn.be/stops/102974", "https://data.delijn.be/stops/103233"], ["https://data.delijn.be/stops/405442", "https://data.delijn.be/stops/408669"], ["https://data.delijn.be/stops/503870", "https://data.delijn.be/stops/503872"], ["https://data.delijn.be/stops/502422", "https://data.delijn.be/stops/507417"], ["https://data.delijn.be/stops/207748", "https://data.delijn.be/stops/207749"], ["https://data.delijn.be/stops/401788", "https://data.delijn.be/stops/406121"], ["https://data.delijn.be/stops/403710", "https://data.delijn.be/stops/403723"], ["https://data.delijn.be/stops/206038", "https://data.delijn.be/stops/207039"], ["https://data.delijn.be/stops/403922", "https://data.delijn.be/stops/405938"], ["https://data.delijn.be/stops/101802", "https://data.delijn.be/stops/104626"], ["https://data.delijn.be/stops/205998", "https://data.delijn.be/stops/208794"], ["https://data.delijn.be/stops/101459", "https://data.delijn.be/stops/108226"], ["https://data.delijn.be/stops/200848", "https://data.delijn.be/stops/200850"], ["https://data.delijn.be/stops/301450", "https://data.delijn.be/stops/301457"], ["https://data.delijn.be/stops/201223", "https://data.delijn.be/stops/209931"], ["https://data.delijn.be/stops/200626", "https://data.delijn.be/stops/203902"], ["https://data.delijn.be/stops/103269", "https://data.delijn.be/stops/103271"], ["https://data.delijn.be/stops/400541", "https://data.delijn.be/stops/403190"], ["https://data.delijn.be/stops/210060", "https://data.delijn.be/stops/211060"], ["https://data.delijn.be/stops/301467", "https://data.delijn.be/stops/305659"], ["https://data.delijn.be/stops/508235", "https://data.delijn.be/stops/508261"], ["https://data.delijn.be/stops/200975", "https://data.delijn.be/stops/209581"], ["https://data.delijn.be/stops/105387", "https://data.delijn.be/stops/109880"], ["https://data.delijn.be/stops/400118", "https://data.delijn.be/stops/400163"], ["https://data.delijn.be/stops/406083", "https://data.delijn.be/stops/406824"], ["https://data.delijn.be/stops/200894", "https://data.delijn.be/stops/203484"], ["https://data.delijn.be/stops/207782", "https://data.delijn.be/stops/209190"], ["https://data.delijn.be/stops/203160", "https://data.delijn.be/stops/203161"], ["https://data.delijn.be/stops/101631", "https://data.delijn.be/stops/105918"], ["https://data.delijn.be/stops/200135", "https://data.delijn.be/stops/201136"], ["https://data.delijn.be/stops/403487", "https://data.delijn.be/stops/403517"], ["https://data.delijn.be/stops/301271", "https://data.delijn.be/stops/301274"], ["https://data.delijn.be/stops/403003", "https://data.delijn.be/stops/405589"], ["https://data.delijn.be/stops/207007", "https://data.delijn.be/stops/207008"], ["https://data.delijn.be/stops/405357", "https://data.delijn.be/stops/407487"], ["https://data.delijn.be/stops/105711", "https://data.delijn.be/stops/106064"], ["https://data.delijn.be/stops/404398", "https://data.delijn.be/stops/404403"], ["https://data.delijn.be/stops/302172", "https://data.delijn.be/stops/305090"], ["https://data.delijn.be/stops/104608", "https://data.delijn.be/stops/108073"], ["https://data.delijn.be/stops/201910", "https://data.delijn.be/stops/202527"], ["https://data.delijn.be/stops/206078", "https://data.delijn.be/stops/207019"], ["https://data.delijn.be/stops/408245", "https://data.delijn.be/stops/308202"], ["https://data.delijn.be/stops/300192", "https://data.delijn.be/stops/308788"], ["https://data.delijn.be/stops/405489", "https://data.delijn.be/stops/409332"], ["https://data.delijn.be/stops/407657", "https://data.delijn.be/stops/409774"], ["https://data.delijn.be/stops/206626", "https://data.delijn.be/stops/206627"], ["https://data.delijn.be/stops/208572", "https://data.delijn.be/stops/209571"], ["https://data.delijn.be/stops/406559", "https://data.delijn.be/stops/407374"], ["https://data.delijn.be/stops/201739", "https://data.delijn.be/stops/505417"], ["https://data.delijn.be/stops/102809", "https://data.delijn.be/stops/106480"], ["https://data.delijn.be/stops/503479", "https://data.delijn.be/stops/503483"], ["https://data.delijn.be/stops/105734", "https://data.delijn.be/stops/109856"], ["https://data.delijn.be/stops/405148", "https://data.delijn.be/stops/405149"], ["https://data.delijn.be/stops/109728", "https://data.delijn.be/stops/109729"], ["https://data.delijn.be/stops/108305", "https://data.delijn.be/stops/108310"], ["https://data.delijn.be/stops/206254", "https://data.delijn.be/stops/207254"], ["https://data.delijn.be/stops/202577", "https://data.delijn.be/stops/203576"], ["https://data.delijn.be/stops/304596", "https://data.delijn.be/stops/304601"], ["https://data.delijn.be/stops/102379", "https://data.delijn.be/stops/107194"], ["https://data.delijn.be/stops/101797", "https://data.delijn.be/stops/103729"], ["https://data.delijn.be/stops/208813", "https://data.delijn.be/stops/208814"], ["https://data.delijn.be/stops/504532", "https://data.delijn.be/stops/509532"], ["https://data.delijn.be/stops/202765", "https://data.delijn.be/stops/203505"], ["https://data.delijn.be/stops/102470", "https://data.delijn.be/stops/104845"], ["https://data.delijn.be/stops/409520", "https://data.delijn.be/stops/409777"], ["https://data.delijn.be/stops/107371", "https://data.delijn.be/stops/107372"], ["https://data.delijn.be/stops/507292", "https://data.delijn.be/stops/507298"], ["https://data.delijn.be/stops/102497", "https://data.delijn.be/stops/400004"], ["https://data.delijn.be/stops/102996", "https://data.delijn.be/stops/106824"], ["https://data.delijn.be/stops/503961", "https://data.delijn.be/stops/509343"], ["https://data.delijn.be/stops/200723", "https://data.delijn.be/stops/203586"], ["https://data.delijn.be/stops/104891", "https://data.delijn.be/stops/109355"], ["https://data.delijn.be/stops/105778", "https://data.delijn.be/stops/105779"], ["https://data.delijn.be/stops/305057", "https://data.delijn.be/stops/305212"], ["https://data.delijn.be/stops/104310", "https://data.delijn.be/stops/105125"], ["https://data.delijn.be/stops/101093", "https://data.delijn.be/stops/101094"], ["https://data.delijn.be/stops/205412", "https://data.delijn.be/stops/205428"], ["https://data.delijn.be/stops/409278", "https://data.delijn.be/stops/409302"], ["https://data.delijn.be/stops/503683", "https://data.delijn.be/stops/504453"], ["https://data.delijn.be/stops/300801", "https://data.delijn.be/stops/300802"], ["https://data.delijn.be/stops/104056", "https://data.delijn.be/stops/108901"], ["https://data.delijn.be/stops/303711", "https://data.delijn.be/stops/303713"], ["https://data.delijn.be/stops/307599", "https://data.delijn.be/stops/307607"], ["https://data.delijn.be/stops/104813", "https://data.delijn.be/stops/105162"], ["https://data.delijn.be/stops/407593", "https://data.delijn.be/stops/407596"], ["https://data.delijn.be/stops/501026", "https://data.delijn.be/stops/506453"], ["https://data.delijn.be/stops/502608", "https://data.delijn.be/stops/502609"], ["https://data.delijn.be/stops/106288", "https://data.delijn.be/stops/106304"], ["https://data.delijn.be/stops/503996", "https://data.delijn.be/stops/508580"], ["https://data.delijn.be/stops/104943", "https://data.delijn.be/stops/105072"], ["https://data.delijn.be/stops/109960", "https://data.delijn.be/stops/109962"], ["https://data.delijn.be/stops/406509", "https://data.delijn.be/stops/406511"], ["https://data.delijn.be/stops/500050", "https://data.delijn.be/stops/500052"], ["https://data.delijn.be/stops/304604", "https://data.delijn.be/stops/304645"], ["https://data.delijn.be/stops/301188", "https://data.delijn.be/stops/304924"], ["https://data.delijn.be/stops/307206", "https://data.delijn.be/stops/307219"], ["https://data.delijn.be/stops/306124", "https://data.delijn.be/stops/307473"], ["https://data.delijn.be/stops/400217", "https://data.delijn.be/stops/400240"], ["https://data.delijn.be/stops/500949", "https://data.delijn.be/stops/504176"], ["https://data.delijn.be/stops/403221", "https://data.delijn.be/stops/403483"], ["https://data.delijn.be/stops/506618", "https://data.delijn.be/stops/506624"], ["https://data.delijn.be/stops/400790", "https://data.delijn.be/stops/409614"], ["https://data.delijn.be/stops/501033", "https://data.delijn.be/stops/506033"], ["https://data.delijn.be/stops/503419", "https://data.delijn.be/stops/508100"], ["https://data.delijn.be/stops/201818", "https://data.delijn.be/stops/209256"], ["https://data.delijn.be/stops/101013", "https://data.delijn.be/stops/102694"], ["https://data.delijn.be/stops/508051", "https://data.delijn.be/stops/508056"], ["https://data.delijn.be/stops/201706", "https://data.delijn.be/stops/201713"], ["https://data.delijn.be/stops/206847", "https://data.delijn.be/stops/207599"], ["https://data.delijn.be/stops/408552", "https://data.delijn.be/stops/408553"], ["https://data.delijn.be/stops/304471", "https://data.delijn.be/stops/304679"], ["https://data.delijn.be/stops/209337", "https://data.delijn.be/stops/209399"], ["https://data.delijn.be/stops/303363", "https://data.delijn.be/stops/303378"], ["https://data.delijn.be/stops/200296", "https://data.delijn.be/stops/201326"], ["https://data.delijn.be/stops/106241", "https://data.delijn.be/stops/107233"], ["https://data.delijn.be/stops/202501", "https://data.delijn.be/stops/203403"], ["https://data.delijn.be/stops/307539", "https://data.delijn.be/stops/307540"], ["https://data.delijn.be/stops/505518", "https://data.delijn.be/stops/505618"], ["https://data.delijn.be/stops/109640", "https://data.delijn.be/stops/109657"], ["https://data.delijn.be/stops/506087", "https://data.delijn.be/stops/506100"], ["https://data.delijn.be/stops/407896", "https://data.delijn.be/stops/408045"], ["https://data.delijn.be/stops/104039", "https://data.delijn.be/stops/108455"], ["https://data.delijn.be/stops/105813", "https://data.delijn.be/stops/105814"], ["https://data.delijn.be/stops/201149", "https://data.delijn.be/stops/201514"], ["https://data.delijn.be/stops/501733", "https://data.delijn.be/stops/506733"], ["https://data.delijn.be/stops/405205", "https://data.delijn.be/stops/405212"], ["https://data.delijn.be/stops/402506", "https://data.delijn.be/stops/402507"], ["https://data.delijn.be/stops/400756", "https://data.delijn.be/stops/409570"], ["https://data.delijn.be/stops/505596", "https://data.delijn.be/stops/509724"], ["https://data.delijn.be/stops/507387", "https://data.delijn.be/stops/507399"], ["https://data.delijn.be/stops/202594", "https://data.delijn.be/stops/203594"], ["https://data.delijn.be/stops/408273", "https://data.delijn.be/stops/408413"], ["https://data.delijn.be/stops/401449", "https://data.delijn.be/stops/404927"], ["https://data.delijn.be/stops/301646", "https://data.delijn.be/stops/303661"], ["https://data.delijn.be/stops/101062", "https://data.delijn.be/stops/109776"], ["https://data.delijn.be/stops/504602", "https://data.delijn.be/stops/509600"], ["https://data.delijn.be/stops/201271", "https://data.delijn.be/stops/201370"], ["https://data.delijn.be/stops/501300", "https://data.delijn.be/stops/501517"], ["https://data.delijn.be/stops/202111", "https://data.delijn.be/stops/205093"], ["https://data.delijn.be/stops/300547", "https://data.delijn.be/stops/300691"], ["https://data.delijn.be/stops/300411", "https://data.delijn.be/stops/300412"], ["https://data.delijn.be/stops/209769", "https://data.delijn.be/stops/209770"], ["https://data.delijn.be/stops/101008", "https://data.delijn.be/stops/108280"], ["https://data.delijn.be/stops/300025", "https://data.delijn.be/stops/308637"], ["https://data.delijn.be/stops/103133", "https://data.delijn.be/stops/109391"], ["https://data.delijn.be/stops/301919", "https://data.delijn.be/stops/303172"], ["https://data.delijn.be/stops/102760", "https://data.delijn.be/stops/105735"], ["https://data.delijn.be/stops/403929", "https://data.delijn.be/stops/405968"], ["https://data.delijn.be/stops/204771", "https://data.delijn.be/stops/205165"], ["https://data.delijn.be/stops/206419", "https://data.delijn.be/stops/206977"], ["https://data.delijn.be/stops/302146", "https://data.delijn.be/stops/302147"], ["https://data.delijn.be/stops/504524", "https://data.delijn.be/stops/504836"], ["https://data.delijn.be/stops/304295", "https://data.delijn.be/stops/304296"], ["https://data.delijn.be/stops/209165", "https://data.delijn.be/stops/209166"], ["https://data.delijn.be/stops/300278", "https://data.delijn.be/stops/306656"], ["https://data.delijn.be/stops/107110", "https://data.delijn.be/stops/109150"], ["https://data.delijn.be/stops/202427", "https://data.delijn.be/stops/203465"], ["https://data.delijn.be/stops/101783", "https://data.delijn.be/stops/107871"], ["https://data.delijn.be/stops/104102", "https://data.delijn.be/stops/107235"], ["https://data.delijn.be/stops/503504", "https://data.delijn.be/stops/509824"], ["https://data.delijn.be/stops/304630", "https://data.delijn.be/stops/306170"], ["https://data.delijn.be/stops/400957", "https://data.delijn.be/stops/406875"], ["https://data.delijn.be/stops/503673", "https://data.delijn.be/stops/508025"], ["https://data.delijn.be/stops/200587", "https://data.delijn.be/stops/200588"], ["https://data.delijn.be/stops/103248", "https://data.delijn.be/stops/108325"], ["https://data.delijn.be/stops/200643", "https://data.delijn.be/stops/201605"], ["https://data.delijn.be/stops/201757", "https://data.delijn.be/stops/201777"], ["https://data.delijn.be/stops/207308", "https://data.delijn.be/stops/207309"], ["https://data.delijn.be/stops/509735", "https://data.delijn.be/stops/509736"], ["https://data.delijn.be/stops/409117", "https://data.delijn.be/stops/410049"], ["https://data.delijn.be/stops/201930", "https://data.delijn.be/stops/203470"], ["https://data.delijn.be/stops/403089", "https://data.delijn.be/stops/403095"], ["https://data.delijn.be/stops/507318", "https://data.delijn.be/stops/507335"], ["https://data.delijn.be/stops/405473", "https://data.delijn.be/stops/406684"], ["https://data.delijn.be/stops/504599", "https://data.delijn.be/stops/505971"], ["https://data.delijn.be/stops/104052", "https://data.delijn.be/stops/108412"], ["https://data.delijn.be/stops/503503", "https://data.delijn.be/stops/508503"], ["https://data.delijn.be/stops/402491", "https://data.delijn.be/stops/402493"], ["https://data.delijn.be/stops/102753", "https://data.delijn.be/stops/103701"], ["https://data.delijn.be/stops/303587", "https://data.delijn.be/stops/303588"], ["https://data.delijn.be/stops/206246", "https://data.delijn.be/stops/207247"], ["https://data.delijn.be/stops/500565", "https://data.delijn.be/stops/500567"], ["https://data.delijn.be/stops/106202", "https://data.delijn.be/stops/106204"], ["https://data.delijn.be/stops/504948", "https://data.delijn.be/stops/508696"], ["https://data.delijn.be/stops/501266", "https://data.delijn.be/stops/501357"], ["https://data.delijn.be/stops/503404", "https://data.delijn.be/stops/508534"], ["https://data.delijn.be/stops/507232", "https://data.delijn.be/stops/507699"], ["https://data.delijn.be/stops/202479", "https://data.delijn.be/stops/202481"], ["https://data.delijn.be/stops/402754", "https://data.delijn.be/stops/402756"], ["https://data.delijn.be/stops/503744", "https://data.delijn.be/stops/503746"], ["https://data.delijn.be/stops/208631", "https://data.delijn.be/stops/209061"], ["https://data.delijn.be/stops/503648", "https://data.delijn.be/stops/508652"], ["https://data.delijn.be/stops/503152", "https://data.delijn.be/stops/505919"], ["https://data.delijn.be/stops/402386", "https://data.delijn.be/stops/402393"], ["https://data.delijn.be/stops/302683", "https://data.delijn.be/stops/302697"], ["https://data.delijn.be/stops/404532", "https://data.delijn.be/stops/404533"], ["https://data.delijn.be/stops/504268", "https://data.delijn.be/stops/505829"], ["https://data.delijn.be/stops/200820", "https://data.delijn.be/stops/200866"], ["https://data.delijn.be/stops/104703", "https://data.delijn.be/stops/107354"], ["https://data.delijn.be/stops/301032", "https://data.delijn.be/stops/301114"], ["https://data.delijn.be/stops/102418", "https://data.delijn.be/stops/105661"], ["https://data.delijn.be/stops/108183", "https://data.delijn.be/stops/108184"], ["https://data.delijn.be/stops/307218", "https://data.delijn.be/stops/307282"], ["https://data.delijn.be/stops/303871", "https://data.delijn.be/stops/303872"], ["https://data.delijn.be/stops/101024", "https://data.delijn.be/stops/101989"], ["https://data.delijn.be/stops/206115", "https://data.delijn.be/stops/207117"], ["https://data.delijn.be/stops/401106", "https://data.delijn.be/stops/401156"], ["https://data.delijn.be/stops/208112", "https://data.delijn.be/stops/209112"], ["https://data.delijn.be/stops/200841", "https://data.delijn.be/stops/202793"], ["https://data.delijn.be/stops/305223", "https://data.delijn.be/stops/305224"], ["https://data.delijn.be/stops/101272", "https://data.delijn.be/stops/204488"], ["https://data.delijn.be/stops/103227", "https://data.delijn.be/stops/103597"], ["https://data.delijn.be/stops/301335", "https://data.delijn.be/stops/306121"], ["https://data.delijn.be/stops/406273", "https://data.delijn.be/stops/406277"], ["https://data.delijn.be/stops/206899", "https://data.delijn.be/stops/207739"], ["https://data.delijn.be/stops/101678", "https://data.delijn.be/stops/103133"], ["https://data.delijn.be/stops/407858", "https://data.delijn.be/stops/408140"], ["https://data.delijn.be/stops/105447", "https://data.delijn.be/stops/107310"], ["https://data.delijn.be/stops/307759", "https://data.delijn.be/stops/307761"], ["https://data.delijn.be/stops/109543", "https://data.delijn.be/stops/109700"], ["https://data.delijn.be/stops/302892", "https://data.delijn.be/stops/302930"], ["https://data.delijn.be/stops/103927", "https://data.delijn.be/stops/103929"], ["https://data.delijn.be/stops/504997", "https://data.delijn.be/stops/505789"], ["https://data.delijn.be/stops/502035", "https://data.delijn.be/stops/507040"], ["https://data.delijn.be/stops/201913", "https://data.delijn.be/stops/203510"], ["https://data.delijn.be/stops/206812", "https://data.delijn.be/stops/207268"], ["https://data.delijn.be/stops/107874", "https://data.delijn.be/stops/107875"], ["https://data.delijn.be/stops/410010", "https://data.delijn.be/stops/410011"], ["https://data.delijn.be/stops/502370", "https://data.delijn.be/stops/507368"], ["https://data.delijn.be/stops/504044", "https://data.delijn.be/stops/509044"], ["https://data.delijn.be/stops/307243", "https://data.delijn.be/stops/307249"], ["https://data.delijn.be/stops/103238", "https://data.delijn.be/stops/107858"], ["https://data.delijn.be/stops/504747", "https://data.delijn.be/stops/509716"], ["https://data.delijn.be/stops/208498", "https://data.delijn.be/stops/209668"], ["https://data.delijn.be/stops/302292", "https://data.delijn.be/stops/304951"], ["https://data.delijn.be/stops/208378", "https://data.delijn.be/stops/209335"], ["https://data.delijn.be/stops/302742", "https://data.delijn.be/stops/307045"], ["https://data.delijn.be/stops/407590", "https://data.delijn.be/stops/407658"], ["https://data.delijn.be/stops/402895", "https://data.delijn.be/stops/308117"], ["https://data.delijn.be/stops/404560", "https://data.delijn.be/stops/404561"], ["https://data.delijn.be/stops/504279", "https://data.delijn.be/stops/509279"], ["https://data.delijn.be/stops/308516", "https://data.delijn.be/stops/308689"], ["https://data.delijn.be/stops/301583", "https://data.delijn.be/stops/303419"], ["https://data.delijn.be/stops/308606", "https://data.delijn.be/stops/308608"], ["https://data.delijn.be/stops/502431", "https://data.delijn.be/stops/507613"], ["https://data.delijn.be/stops/504787", "https://data.delijn.be/stops/504791"], ["https://data.delijn.be/stops/200134", "https://data.delijn.be/stops/201134"], ["https://data.delijn.be/stops/105267", "https://data.delijn.be/stops/109957"], ["https://data.delijn.be/stops/208013", "https://data.delijn.be/stops/208018"], ["https://data.delijn.be/stops/404861", "https://data.delijn.be/stops/404867"], ["https://data.delijn.be/stops/200337", "https://data.delijn.be/stops/200967"], ["https://data.delijn.be/stops/503585", "https://data.delijn.be/stops/505413"], ["https://data.delijn.be/stops/501683", "https://data.delijn.be/stops/506683"], ["https://data.delijn.be/stops/206186", "https://data.delijn.be/stops/207955"], ["https://data.delijn.be/stops/404341", "https://data.delijn.be/stops/404648"], ["https://data.delijn.be/stops/200316", "https://data.delijn.be/stops/201316"], ["https://data.delijn.be/stops/503273", "https://data.delijn.be/stops/508038"], ["https://data.delijn.be/stops/403512", "https://data.delijn.be/stops/403531"], ["https://data.delijn.be/stops/205144", "https://data.delijn.be/stops/207048"], ["https://data.delijn.be/stops/307147", "https://data.delijn.be/stops/307894"], ["https://data.delijn.be/stops/304236", "https://data.delijn.be/stops/304515"], ["https://data.delijn.be/stops/504252", "https://data.delijn.be/stops/504365"], ["https://data.delijn.be/stops/403045", "https://data.delijn.be/stops/403090"], ["https://data.delijn.be/stops/102862", "https://data.delijn.be/stops/105485"], ["https://data.delijn.be/stops/206687", "https://data.delijn.be/stops/206920"], ["https://data.delijn.be/stops/102075", "https://data.delijn.be/stops/104785"], ["https://data.delijn.be/stops/108542", "https://data.delijn.be/stops/108543"], ["https://data.delijn.be/stops/504550", "https://data.delijn.be/stops/509550"], ["https://data.delijn.be/stops/403344", "https://data.delijn.be/stops/403483"], ["https://data.delijn.be/stops/300374", "https://data.delijn.be/stops/306156"], ["https://data.delijn.be/stops/201506", "https://data.delijn.be/stops/203359"], ["https://data.delijn.be/stops/405151", "https://data.delijn.be/stops/407790"], ["https://data.delijn.be/stops/406170", "https://data.delijn.be/stops/410226"], ["https://data.delijn.be/stops/504651", "https://data.delijn.be/stops/505787"], ["https://data.delijn.be/stops/101506", "https://data.delijn.be/stops/300103"], ["https://data.delijn.be/stops/202382", "https://data.delijn.be/stops/202383"], ["https://data.delijn.be/stops/504375", "https://data.delijn.be/stops/504751"], ["https://data.delijn.be/stops/201214", "https://data.delijn.be/stops/203547"], ["https://data.delijn.be/stops/401576", "https://data.delijn.be/stops/401578"], ["https://data.delijn.be/stops/504764", "https://data.delijn.be/stops/504765"], ["https://data.delijn.be/stops/408499", "https://data.delijn.be/stops/408504"], ["https://data.delijn.be/stops/407095", "https://data.delijn.be/stops/407301"], ["https://data.delijn.be/stops/400361", "https://data.delijn.be/stops/400397"], ["https://data.delijn.be/stops/401163", "https://data.delijn.be/stops/408187"], ["https://data.delijn.be/stops/300448", "https://data.delijn.be/stops/308052"], ["https://data.delijn.be/stops/206961", "https://data.delijn.be/stops/306727"], ["https://data.delijn.be/stops/206296", "https://data.delijn.be/stops/207159"], ["https://data.delijn.be/stops/403302", "https://data.delijn.be/stops/403535"], ["https://data.delijn.be/stops/106122", "https://data.delijn.be/stops/106123"], ["https://data.delijn.be/stops/300566", "https://data.delijn.be/stops/307865"], ["https://data.delijn.be/stops/101669", "https://data.delijn.be/stops/406843"], ["https://data.delijn.be/stops/300781", "https://data.delijn.be/stops/301018"], ["https://data.delijn.be/stops/308263", "https://data.delijn.be/stops/308268"], ["https://data.delijn.be/stops/405701", "https://data.delijn.be/stops/405711"], ["https://data.delijn.be/stops/300246", "https://data.delijn.be/stops/300247"], ["https://data.delijn.be/stops/405336", "https://data.delijn.be/stops/405370"], ["https://data.delijn.be/stops/102730", "https://data.delijn.be/stops/109516"], ["https://data.delijn.be/stops/305744", "https://data.delijn.be/stops/305749"], ["https://data.delijn.be/stops/201708", "https://data.delijn.be/stops/202379"], ["https://data.delijn.be/stops/200185", "https://data.delijn.be/stops/200187"], ["https://data.delijn.be/stops/205985", "https://data.delijn.be/stops/207830"], ["https://data.delijn.be/stops/202825", "https://data.delijn.be/stops/203825"], ["https://data.delijn.be/stops/404798", "https://data.delijn.be/stops/404834"], ["https://data.delijn.be/stops/402574", "https://data.delijn.be/stops/402616"], ["https://data.delijn.be/stops/405379", "https://data.delijn.be/stops/405383"], ["https://data.delijn.be/stops/206012", "https://data.delijn.be/stops/206388"], ["https://data.delijn.be/stops/501313", "https://data.delijn.be/stops/501328"], ["https://data.delijn.be/stops/200318", "https://data.delijn.be/stops/201996"], ["https://data.delijn.be/stops/109848", "https://data.delijn.be/stops/109851"], ["https://data.delijn.be/stops/407826", "https://data.delijn.be/stops/407982"], ["https://data.delijn.be/stops/102509", "https://data.delijn.be/stops/406456"], ["https://data.delijn.be/stops/103057", "https://data.delijn.be/stops/105066"], ["https://data.delijn.be/stops/401257", "https://data.delijn.be/stops/406943"], ["https://data.delijn.be/stops/401249", "https://data.delijn.be/stops/401259"], ["https://data.delijn.be/stops/405502", "https://data.delijn.be/stops/410167"], ["https://data.delijn.be/stops/404126", "https://data.delijn.be/stops/404173"], ["https://data.delijn.be/stops/502254", "https://data.delijn.be/stops/507237"], ["https://data.delijn.be/stops/206121", "https://data.delijn.be/stops/206476"], ["https://data.delijn.be/stops/105156", "https://data.delijn.be/stops/105157"], ["https://data.delijn.be/stops/502477", "https://data.delijn.be/stops/505808"], ["https://data.delijn.be/stops/405824", "https://data.delijn.be/stops/405825"], ["https://data.delijn.be/stops/106147", "https://data.delijn.be/stops/106148"], ["https://data.delijn.be/stops/102449", "https://data.delijn.be/stops/308483"], ["https://data.delijn.be/stops/308205", "https://data.delijn.be/stops/308226"], ["https://data.delijn.be/stops/300861", "https://data.delijn.be/stops/300862"], ["https://data.delijn.be/stops/204313", "https://data.delijn.be/stops/204709"], ["https://data.delijn.be/stops/105100", "https://data.delijn.be/stops/105660"], ["https://data.delijn.be/stops/401033", "https://data.delijn.be/stops/406589"], ["https://data.delijn.be/stops/107618", "https://data.delijn.be/stops/108096"], ["https://data.delijn.be/stops/408852", "https://data.delijn.be/stops/408856"], ["https://data.delijn.be/stops/400968", "https://data.delijn.be/stops/400969"], ["https://data.delijn.be/stops/204408", "https://data.delijn.be/stops/205407"], ["https://data.delijn.be/stops/204410", "https://data.delijn.be/stops/205021"], ["https://data.delijn.be/stops/302826", "https://data.delijn.be/stops/302835"], ["https://data.delijn.be/stops/501540", "https://data.delijn.be/stops/506457"], ["https://data.delijn.be/stops/209083", "https://data.delijn.be/stops/209699"], ["https://data.delijn.be/stops/402334", "https://data.delijn.be/stops/402335"], ["https://data.delijn.be/stops/301696", "https://data.delijn.be/stops/308430"], ["https://data.delijn.be/stops/101005", "https://data.delijn.be/stops/103625"], ["https://data.delijn.be/stops/102705", "https://data.delijn.be/stops/104485"], ["https://data.delijn.be/stops/306139", "https://data.delijn.be/stops/308766"], ["https://data.delijn.be/stops/404286", "https://data.delijn.be/stops/407273"], ["https://data.delijn.be/stops/304302", "https://data.delijn.be/stops/304303"], ["https://data.delijn.be/stops/106885", "https://data.delijn.be/stops/106886"], ["https://data.delijn.be/stops/306612", "https://data.delijn.be/stops/306613"], ["https://data.delijn.be/stops/506103", "https://data.delijn.be/stops/506109"], ["https://data.delijn.be/stops/407800", "https://data.delijn.be/stops/407808"], ["https://data.delijn.be/stops/204332", "https://data.delijn.be/stops/205819"], ["https://data.delijn.be/stops/302808", "https://data.delijn.be/stops/305510"], ["https://data.delijn.be/stops/306697", "https://data.delijn.be/stops/306698"], ["https://data.delijn.be/stops/208817", "https://data.delijn.be/stops/209087"], ["https://data.delijn.be/stops/201064", "https://data.delijn.be/stops/201271"], ["https://data.delijn.be/stops/403511", "https://data.delijn.be/stops/408452"], ["https://data.delijn.be/stops/206813", "https://data.delijn.be/stops/207198"], ["https://data.delijn.be/stops/301563", "https://data.delijn.be/stops/301594"], ["https://data.delijn.be/stops/104498", "https://data.delijn.be/stops/107487"], ["https://data.delijn.be/stops/301069", "https://data.delijn.be/stops/301071"], ["https://data.delijn.be/stops/102564", "https://data.delijn.be/stops/400390"], ["https://data.delijn.be/stops/407400", "https://data.delijn.be/stops/407427"], ["https://data.delijn.be/stops/405326", "https://data.delijn.be/stops/405370"], ["https://data.delijn.be/stops/509458", "https://data.delijn.be/stops/509461"], ["https://data.delijn.be/stops/503078", "https://data.delijn.be/stops/508077"], ["https://data.delijn.be/stops/305692", "https://data.delijn.be/stops/305698"], ["https://data.delijn.be/stops/406565", "https://data.delijn.be/stops/407209"], ["https://data.delijn.be/stops/305050", "https://data.delijn.be/stops/306959"], ["https://data.delijn.be/stops/307910", "https://data.delijn.be/stops/308176"], ["https://data.delijn.be/stops/406041", "https://data.delijn.be/stops/406050"], ["https://data.delijn.be/stops/505339", "https://data.delijn.be/stops/508004"], ["https://data.delijn.be/stops/304965", "https://data.delijn.be/stops/304968"], ["https://data.delijn.be/stops/400645", "https://data.delijn.be/stops/400948"], ["https://data.delijn.be/stops/202256", "https://data.delijn.be/stops/203256"], ["https://data.delijn.be/stops/504640", "https://data.delijn.be/stops/505107"], ["https://data.delijn.be/stops/305582", "https://data.delijn.be/stops/305583"], ["https://data.delijn.be/stops/201832", "https://data.delijn.be/stops/209261"], ["https://data.delijn.be/stops/505562", "https://data.delijn.be/stops/508639"], ["https://data.delijn.be/stops/307991", "https://data.delijn.be/stops/307996"], ["https://data.delijn.be/stops/301838", "https://data.delijn.be/stops/301839"], ["https://data.delijn.be/stops/200232", "https://data.delijn.be/stops/201518"], ["https://data.delijn.be/stops/202100", "https://data.delijn.be/stops/202101"], ["https://data.delijn.be/stops/402243", "https://data.delijn.be/stops/402405"], ["https://data.delijn.be/stops/503327", "https://data.delijn.be/stops/505081"], ["https://data.delijn.be/stops/204481", "https://data.delijn.be/stops/205734"], ["https://data.delijn.be/stops/101705", "https://data.delijn.be/stops/102163"], ["https://data.delijn.be/stops/102880", "https://data.delijn.be/stops/103855"], ["https://data.delijn.be/stops/305451", "https://data.delijn.be/stops/308965"], ["https://data.delijn.be/stops/407712", "https://data.delijn.be/stops/409521"], ["https://data.delijn.be/stops/306905", "https://data.delijn.be/stops/306908"], ["https://data.delijn.be/stops/104667", "https://data.delijn.be/stops/104884"], ["https://data.delijn.be/stops/307555", "https://data.delijn.be/stops/307676"], ["https://data.delijn.be/stops/105199", "https://data.delijn.be/stops/108804"], ["https://data.delijn.be/stops/106631", "https://data.delijn.be/stops/106632"], ["https://data.delijn.be/stops/307619", "https://data.delijn.be/stops/307620"], ["https://data.delijn.be/stops/303347", "https://data.delijn.be/stops/305059"], ["https://data.delijn.be/stops/200802", "https://data.delijn.be/stops/202064"], ["https://data.delijn.be/stops/404399", "https://data.delijn.be/stops/405568"], ["https://data.delijn.be/stops/402734", "https://data.delijn.be/stops/402735"], ["https://data.delijn.be/stops/204111", "https://data.delijn.be/stops/205684"], ["https://data.delijn.be/stops/307387", "https://data.delijn.be/stops/307388"], ["https://data.delijn.be/stops/106420", "https://data.delijn.be/stops/106421"], ["https://data.delijn.be/stops/305020", "https://data.delijn.be/stops/305023"], ["https://data.delijn.be/stops/203295", "https://data.delijn.be/stops/211298"], ["https://data.delijn.be/stops/308787", "https://data.delijn.be/stops/308788"], ["https://data.delijn.be/stops/404724", "https://data.delijn.be/stops/404727"], ["https://data.delijn.be/stops/504277", "https://data.delijn.be/stops/508128"], ["https://data.delijn.be/stops/401107", "https://data.delijn.be/stops/401158"], ["https://data.delijn.be/stops/410115", "https://data.delijn.be/stops/410326"], ["https://data.delijn.be/stops/300667", "https://data.delijn.be/stops/300674"], ["https://data.delijn.be/stops/305168", "https://data.delijn.be/stops/305189"], ["https://data.delijn.be/stops/107309", "https://data.delijn.be/stops/109733"], ["https://data.delijn.be/stops/305967", "https://data.delijn.be/stops/308138"], ["https://data.delijn.be/stops/505799", "https://data.delijn.be/stops/509279"], ["https://data.delijn.be/stops/404476", "https://data.delijn.be/stops/410156"], ["https://data.delijn.be/stops/402703", "https://data.delijn.be/stops/405997"], ["https://data.delijn.be/stops/208557", "https://data.delijn.be/stops/209558"], ["https://data.delijn.be/stops/108414", "https://data.delijn.be/stops/108416"], ["https://data.delijn.be/stops/308467", "https://data.delijn.be/stops/308469"], ["https://data.delijn.be/stops/206673", "https://data.delijn.be/stops/208168"], ["https://data.delijn.be/stops/407434", "https://data.delijn.be/stops/407565"], ["https://data.delijn.be/stops/407152", "https://data.delijn.be/stops/409515"], ["https://data.delijn.be/stops/300694", "https://data.delijn.be/stops/306937"], ["https://data.delijn.be/stops/201897", "https://data.delijn.be/stops/203146"], ["https://data.delijn.be/stops/300422", "https://data.delijn.be/stops/300436"], ["https://data.delijn.be/stops/206137", "https://data.delijn.be/stops/206138"], ["https://data.delijn.be/stops/501675", "https://data.delijn.be/stops/505741"], ["https://data.delijn.be/stops/506226", "https://data.delijn.be/stops/506418"], ["https://data.delijn.be/stops/103751", "https://data.delijn.be/stops/105100"], ["https://data.delijn.be/stops/506637", "https://data.delijn.be/stops/509836"], ["https://data.delijn.be/stops/303242", "https://data.delijn.be/stops/307981"], ["https://data.delijn.be/stops/304334", "https://data.delijn.be/stops/304337"], ["https://data.delijn.be/stops/407025", "https://data.delijn.be/stops/408429"], ["https://data.delijn.be/stops/206828", "https://data.delijn.be/stops/207993"], ["https://data.delijn.be/stops/507943", "https://data.delijn.be/stops/508855"], ["https://data.delijn.be/stops/402024", "https://data.delijn.be/stops/402026"], ["https://data.delijn.be/stops/303058", "https://data.delijn.be/stops/303059"], ["https://data.delijn.be/stops/401672", "https://data.delijn.be/stops/308270"], ["https://data.delijn.be/stops/302533", "https://data.delijn.be/stops/302534"], ["https://data.delijn.be/stops/507380", "https://data.delijn.be/stops/507404"], ["https://data.delijn.be/stops/206871", "https://data.delijn.be/stops/209364"], ["https://data.delijn.be/stops/209195", "https://data.delijn.be/stops/209408"], ["https://data.delijn.be/stops/405607", "https://data.delijn.be/stops/406492"], ["https://data.delijn.be/stops/406072", "https://data.delijn.be/stops/406073"], ["https://data.delijn.be/stops/505804", "https://data.delijn.be/stops/510029"], ["https://data.delijn.be/stops/401900", "https://data.delijn.be/stops/402011"], ["https://data.delijn.be/stops/406150", "https://data.delijn.be/stops/406270"], ["https://data.delijn.be/stops/301859", "https://data.delijn.be/stops/301873"], ["https://data.delijn.be/stops/101494", "https://data.delijn.be/stops/102253"], ["https://data.delijn.be/stops/405763", "https://data.delijn.be/stops/409292"], ["https://data.delijn.be/stops/301045", "https://data.delijn.be/stops/304809"], ["https://data.delijn.be/stops/403335", "https://data.delijn.be/stops/407040"], ["https://data.delijn.be/stops/502768", "https://data.delijn.be/stops/507314"], ["https://data.delijn.be/stops/206270", "https://data.delijn.be/stops/207271"], ["https://data.delijn.be/stops/502006", "https://data.delijn.be/stops/502010"], ["https://data.delijn.be/stops/410334", "https://data.delijn.be/stops/410335"], ["https://data.delijn.be/stops/201455", "https://data.delijn.be/stops/201456"], ["https://data.delijn.be/stops/405870", "https://data.delijn.be/stops/407361"], ["https://data.delijn.be/stops/304077", "https://data.delijn.be/stops/304097"], ["https://data.delijn.be/stops/206695", "https://data.delijn.be/stops/207955"], ["https://data.delijn.be/stops/303268", "https://data.delijn.be/stops/303269"], ["https://data.delijn.be/stops/503412", "https://data.delijn.be/stops/508427"], ["https://data.delijn.be/stops/304561", "https://data.delijn.be/stops/304586"], ["https://data.delijn.be/stops/308164", "https://data.delijn.be/stops/308229"], ["https://data.delijn.be/stops/304545", "https://data.delijn.be/stops/304698"], ["https://data.delijn.be/stops/206086", "https://data.delijn.be/stops/206087"], ["https://data.delijn.be/stops/101481", "https://data.delijn.be/stops/101482"], ["https://data.delijn.be/stops/307628", "https://data.delijn.be/stops/308272"], ["https://data.delijn.be/stops/408255", "https://data.delijn.be/stops/409825"], ["https://data.delijn.be/stops/408939", "https://data.delijn.be/stops/408958"], ["https://data.delijn.be/stops/302699", "https://data.delijn.be/stops/308062"], ["https://data.delijn.be/stops/206131", "https://data.delijn.be/stops/207137"], ["https://data.delijn.be/stops/403395", "https://data.delijn.be/stops/410118"], ["https://data.delijn.be/stops/302969", "https://data.delijn.be/stops/302971"], ["https://data.delijn.be/stops/405473", "https://data.delijn.be/stops/406623"], ["https://data.delijn.be/stops/201530", "https://data.delijn.be/stops/211528"], ["https://data.delijn.be/stops/203961", "https://data.delijn.be/stops/207409"], ["https://data.delijn.be/stops/107481", "https://data.delijn.be/stops/107486"], ["https://data.delijn.be/stops/201962", "https://data.delijn.be/stops/202195"], ["https://data.delijn.be/stops/401484", "https://data.delijn.be/stops/403887"], ["https://data.delijn.be/stops/106267", "https://data.delijn.be/stops/106269"], ["https://data.delijn.be/stops/201739", "https://data.delijn.be/stops/202543"], ["https://data.delijn.be/stops/101417", "https://data.delijn.be/stops/107307"], ["https://data.delijn.be/stops/303042", "https://data.delijn.be/stops/303104"], ["https://data.delijn.be/stops/202749", "https://data.delijn.be/stops/202889"], ["https://data.delijn.be/stops/108187", "https://data.delijn.be/stops/108328"], ["https://data.delijn.be/stops/109066", "https://data.delijn.be/stops/306859"], ["https://data.delijn.be/stops/206358", "https://data.delijn.be/stops/207715"], ["https://data.delijn.be/stops/505636", "https://data.delijn.be/stops/505778"], ["https://data.delijn.be/stops/302328", "https://data.delijn.be/stops/302329"], ["https://data.delijn.be/stops/403038", "https://data.delijn.be/stops/403863"], ["https://data.delijn.be/stops/101290", "https://data.delijn.be/stops/101880"], ["https://data.delijn.be/stops/105461", "https://data.delijn.be/stops/109895"], ["https://data.delijn.be/stops/101357", "https://data.delijn.be/stops/101359"], ["https://data.delijn.be/stops/409304", "https://data.delijn.be/stops/409330"], ["https://data.delijn.be/stops/505093", "https://data.delijn.be/stops/505138"], ["https://data.delijn.be/stops/400967", "https://data.delijn.be/stops/401250"], ["https://data.delijn.be/stops/407615", "https://data.delijn.be/stops/407619"], ["https://data.delijn.be/stops/304001", "https://data.delijn.be/stops/308645"], ["https://data.delijn.be/stops/103944", "https://data.delijn.be/stops/107329"], ["https://data.delijn.be/stops/402807", "https://data.delijn.be/stops/409041"], ["https://data.delijn.be/stops/303642", "https://data.delijn.be/stops/305602"], ["https://data.delijn.be/stops/201917", "https://data.delijn.be/stops/201920"], ["https://data.delijn.be/stops/209305", "https://data.delijn.be/stops/209306"], ["https://data.delijn.be/stops/106756", "https://data.delijn.be/stops/107469"], ["https://data.delijn.be/stops/105584", "https://data.delijn.be/stops/105589"], ["https://data.delijn.be/stops/504209", "https://data.delijn.be/stops/504868"], ["https://data.delijn.be/stops/502130", "https://data.delijn.be/stops/502132"], ["https://data.delijn.be/stops/202272", "https://data.delijn.be/stops/203277"], ["https://data.delijn.be/stops/202896", "https://data.delijn.be/stops/203896"], ["https://data.delijn.be/stops/104742", "https://data.delijn.be/stops/104747"], ["https://data.delijn.be/stops/406155", "https://data.delijn.be/stops/406225"], ["https://data.delijn.be/stops/408568", "https://data.delijn.be/stops/408572"], ["https://data.delijn.be/stops/101938", "https://data.delijn.be/stops/108274"], ["https://data.delijn.be/stops/207762", "https://data.delijn.be/stops/209192"], ["https://data.delijn.be/stops/104646", "https://data.delijn.be/stops/104651"], ["https://data.delijn.be/stops/501209", "https://data.delijn.be/stops/501210"], ["https://data.delijn.be/stops/403488", "https://data.delijn.be/stops/405632"], ["https://data.delijn.be/stops/406090", "https://data.delijn.be/stops/410148"], ["https://data.delijn.be/stops/201289", "https://data.delijn.be/stops/208829"], ["https://data.delijn.be/stops/408529", "https://data.delijn.be/stops/408561"], ["https://data.delijn.be/stops/400611", "https://data.delijn.be/stops/407519"], ["https://data.delijn.be/stops/108373", "https://data.delijn.be/stops/108374"], ["https://data.delijn.be/stops/408229", "https://data.delijn.be/stops/408291"], ["https://data.delijn.be/stops/406600", "https://data.delijn.be/stops/406601"], ["https://data.delijn.be/stops/300048", "https://data.delijn.be/stops/306790"], ["https://data.delijn.be/stops/109316", "https://data.delijn.be/stops/109354"], ["https://data.delijn.be/stops/401365", "https://data.delijn.be/stops/404773"], ["https://data.delijn.be/stops/503590", "https://data.delijn.be/stops/504884"], ["https://data.delijn.be/stops/303695", "https://data.delijn.be/stops/305390"], ["https://data.delijn.be/stops/204489", "https://data.delijn.be/stops/204823"], ["https://data.delijn.be/stops/102170", "https://data.delijn.be/stops/104225"], ["https://data.delijn.be/stops/201771", "https://data.delijn.be/stops/209283"], ["https://data.delijn.be/stops/303456", "https://data.delijn.be/stops/304226"], ["https://data.delijn.be/stops/300288", "https://data.delijn.be/stops/307477"], ["https://data.delijn.be/stops/407822", "https://data.delijn.be/stops/407917"], ["https://data.delijn.be/stops/104161", "https://data.delijn.be/stops/104365"], ["https://data.delijn.be/stops/306910", "https://data.delijn.be/stops/306912"], ["https://data.delijn.be/stops/208023", "https://data.delijn.be/stops/209013"], ["https://data.delijn.be/stops/301104", "https://data.delijn.be/stops/302954"], ["https://data.delijn.be/stops/401026", "https://data.delijn.be/stops/401036"], ["https://data.delijn.be/stops/304263", "https://data.delijn.be/stops/304264"], ["https://data.delijn.be/stops/405705", "https://data.delijn.be/stops/305145"], ["https://data.delijn.be/stops/503333", "https://data.delijn.be/stops/508333"], ["https://data.delijn.be/stops/503610", "https://data.delijn.be/stops/508615"], ["https://data.delijn.be/stops/502182", "https://data.delijn.be/stops/505555"], ["https://data.delijn.be/stops/404505", "https://data.delijn.be/stops/404570"], ["https://data.delijn.be/stops/304832", "https://data.delijn.be/stops/304887"], ["https://data.delijn.be/stops/509165", "https://data.delijn.be/stops/509175"], ["https://data.delijn.be/stops/206263", "https://data.delijn.be/stops/206264"], ["https://data.delijn.be/stops/300032", "https://data.delijn.be/stops/300033"], ["https://data.delijn.be/stops/304135", "https://data.delijn.be/stops/304496"], ["https://data.delijn.be/stops/101600", "https://data.delijn.be/stops/107065"], ["https://data.delijn.be/stops/303629", "https://data.delijn.be/stops/304017"], ["https://data.delijn.be/stops/300316", "https://data.delijn.be/stops/306112"], ["https://data.delijn.be/stops/204421", "https://data.delijn.be/stops/205766"], ["https://data.delijn.be/stops/105166", "https://data.delijn.be/stops/108761"], ["https://data.delijn.be/stops/102816", "https://data.delijn.be/stops/103905"], ["https://data.delijn.be/stops/507425", "https://data.delijn.be/stops/507704"], ["https://data.delijn.be/stops/404691", "https://data.delijn.be/stops/406948"], ["https://data.delijn.be/stops/200959", "https://data.delijn.be/stops/202518"], ["https://data.delijn.be/stops/201005", "https://data.delijn.be/stops/203517"], ["https://data.delijn.be/stops/503316", "https://data.delijn.be/stops/503964"], ["https://data.delijn.be/stops/210020", "https://data.delijn.be/stops/211020"], ["https://data.delijn.be/stops/305512", "https://data.delijn.be/stops/305513"], ["https://data.delijn.be/stops/404437", "https://data.delijn.be/stops/404534"], ["https://data.delijn.be/stops/407708", "https://data.delijn.be/stops/407709"], ["https://data.delijn.be/stops/301473", "https://data.delijn.be/stops/305654"], ["https://data.delijn.be/stops/108630", "https://data.delijn.be/stops/109774"], ["https://data.delijn.be/stops/300211", "https://data.delijn.be/stops/300223"], ["https://data.delijn.be/stops/505384", "https://data.delijn.be/stops/509822"], ["https://data.delijn.be/stops/502009", "https://data.delijn.be/stops/505586"], ["https://data.delijn.be/stops/200060", "https://data.delijn.be/stops/211058"], ["https://data.delijn.be/stops/402546", "https://data.delijn.be/stops/402549"], ["https://data.delijn.be/stops/302808", "https://data.delijn.be/stops/307836"], ["https://data.delijn.be/stops/303034", "https://data.delijn.be/stops/306279"], ["https://data.delijn.be/stops/101007", "https://data.delijn.be/stops/108625"], ["https://data.delijn.be/stops/201719", "https://data.delijn.be/stops/205995"], ["https://data.delijn.be/stops/504554", "https://data.delijn.be/stops/505202"], ["https://data.delijn.be/stops/408748", "https://data.delijn.be/stops/408749"], ["https://data.delijn.be/stops/306720", "https://data.delijn.be/stops/306722"], ["https://data.delijn.be/stops/300170", "https://data.delijn.be/stops/301188"], ["https://data.delijn.be/stops/200631", "https://data.delijn.be/stops/201983"], ["https://data.delijn.be/stops/202982", "https://data.delijn.be/stops/203982"], ["https://data.delijn.be/stops/206251", "https://data.delijn.be/stops/206252"], ["https://data.delijn.be/stops/207134", "https://data.delijn.be/stops/207511"], ["https://data.delijn.be/stops/504196", "https://data.delijn.be/stops/509529"], ["https://data.delijn.be/stops/305892", "https://data.delijn.be/stops/306382"], ["https://data.delijn.be/stops/204058", "https://data.delijn.be/stops/205058"], ["https://data.delijn.be/stops/208685", "https://data.delijn.be/stops/208687"], ["https://data.delijn.be/stops/101429", "https://data.delijn.be/stops/107297"], ["https://data.delijn.be/stops/103014", "https://data.delijn.be/stops/108312"], ["https://data.delijn.be/stops/401507", "https://data.delijn.be/stops/404333"], ["https://data.delijn.be/stops/106981", "https://data.delijn.be/stops/109723"], ["https://data.delijn.be/stops/206723", "https://data.delijn.be/stops/206986"], ["https://data.delijn.be/stops/303852", "https://data.delijn.be/stops/303854"], ["https://data.delijn.be/stops/505225", "https://data.delijn.be/stops/507337"], ["https://data.delijn.be/stops/201607", "https://data.delijn.be/stops/201900"], ["https://data.delijn.be/stops/206943", "https://data.delijn.be/stops/209612"], ["https://data.delijn.be/stops/504116", "https://data.delijn.be/stops/504643"], ["https://data.delijn.be/stops/102610", "https://data.delijn.be/stops/105105"], ["https://data.delijn.be/stops/402458", "https://data.delijn.be/stops/402459"], ["https://data.delijn.be/stops/408086", "https://data.delijn.be/stops/408087"], ["https://data.delijn.be/stops/503841", "https://data.delijn.be/stops/508841"], ["https://data.delijn.be/stops/207832", "https://data.delijn.be/stops/207965"], ["https://data.delijn.be/stops/405490", "https://data.delijn.be/stops/409332"], ["https://data.delijn.be/stops/502272", "https://data.delijn.be/stops/502665"], ["https://data.delijn.be/stops/201927", "https://data.delijn.be/stops/207929"], ["https://data.delijn.be/stops/502764", "https://data.delijn.be/stops/507308"], ["https://data.delijn.be/stops/400844", "https://data.delijn.be/stops/404302"], ["https://data.delijn.be/stops/109085", "https://data.delijn.be/stops/109184"], ["https://data.delijn.be/stops/107343", "https://data.delijn.be/stops/108168"], ["https://data.delijn.be/stops/103618", "https://data.delijn.be/stops/106198"], ["https://data.delijn.be/stops/501541", "https://data.delijn.be/stops/506459"], ["https://data.delijn.be/stops/201380", "https://data.delijn.be/stops/205931"], ["https://data.delijn.be/stops/501507", "https://data.delijn.be/stops/505824"], ["https://data.delijn.be/stops/504825", "https://data.delijn.be/stops/505997"], ["https://data.delijn.be/stops/207667", "https://data.delijn.be/stops/209045"], ["https://data.delijn.be/stops/301222", "https://data.delijn.be/stops/301224"], ["https://data.delijn.be/stops/403785", "https://data.delijn.be/stops/403788"], ["https://data.delijn.be/stops/106694", "https://data.delijn.be/stops/106696"], ["https://data.delijn.be/stops/504400", "https://data.delijn.be/stops/509401"], ["https://data.delijn.be/stops/201901", "https://data.delijn.be/stops/203516"], ["https://data.delijn.be/stops/402434", "https://data.delijn.be/stops/404498"], ["https://data.delijn.be/stops/302196", "https://data.delijn.be/stops/302205"], ["https://data.delijn.be/stops/508605", "https://data.delijn.be/stops/508614"], ["https://data.delijn.be/stops/300040", "https://data.delijn.be/stops/306791"], ["https://data.delijn.be/stops/409024", "https://data.delijn.be/stops/409026"], ["https://data.delijn.be/stops/102592", "https://data.delijn.be/stops/108571"], ["https://data.delijn.be/stops/102869", "https://data.delijn.be/stops/102950"], ["https://data.delijn.be/stops/202294", "https://data.delijn.be/stops/203334"], ["https://data.delijn.be/stops/404278", "https://data.delijn.be/stops/404281"], ["https://data.delijn.be/stops/305452", "https://data.delijn.be/stops/307264"], ["https://data.delijn.be/stops/403691", "https://data.delijn.be/stops/409274"], ["https://data.delijn.be/stops/504030", "https://data.delijn.be/stops/504748"], ["https://data.delijn.be/stops/400171", "https://data.delijn.be/stops/400926"], ["https://data.delijn.be/stops/206936", "https://data.delijn.be/stops/209951"], ["https://data.delijn.be/stops/204102", "https://data.delijn.be/stops/204106"], ["https://data.delijn.be/stops/404170", "https://data.delijn.be/stops/404183"], ["https://data.delijn.be/stops/503151", "https://data.delijn.be/stops/508151"], ["https://data.delijn.be/stops/101827", "https://data.delijn.be/stops/103139"], ["https://data.delijn.be/stops/108529", "https://data.delijn.be/stops/108533"], ["https://data.delijn.be/stops/501483", "https://data.delijn.be/stops/506094"], ["https://data.delijn.be/stops/406127", "https://data.delijn.be/stops/406230"], ["https://data.delijn.be/stops/400303", "https://data.delijn.be/stops/400344"], ["https://data.delijn.be/stops/400457", "https://data.delijn.be/stops/407751"], ["https://data.delijn.be/stops/201358", "https://data.delijn.be/stops/208662"], ["https://data.delijn.be/stops/106478", "https://data.delijn.be/stops/109201"], ["https://data.delijn.be/stops/407702", "https://data.delijn.be/stops/409772"], ["https://data.delijn.be/stops/403797", "https://data.delijn.be/stops/403800"], ["https://data.delijn.be/stops/206308", "https://data.delijn.be/stops/207392"], ["https://data.delijn.be/stops/409232", "https://data.delijn.be/stops/409246"], ["https://data.delijn.be/stops/502705", "https://data.delijn.be/stops/507529"], ["https://data.delijn.be/stops/502051", "https://data.delijn.be/stops/502391"], ["https://data.delijn.be/stops/307027", "https://data.delijn.be/stops/307571"], ["https://data.delijn.be/stops/504492", "https://data.delijn.be/stops/504503"], ["https://data.delijn.be/stops/208496", "https://data.delijn.be/stops/209263"], ["https://data.delijn.be/stops/206653", "https://data.delijn.be/stops/206728"], ["https://data.delijn.be/stops/202219", "https://data.delijn.be/stops/205795"], ["https://data.delijn.be/stops/108051", "https://data.delijn.be/stops/108274"], ["https://data.delijn.be/stops/507003", "https://data.delijn.be/stops/507007"], ["https://data.delijn.be/stops/202745", "https://data.delijn.be/stops/202746"], ["https://data.delijn.be/stops/504105", "https://data.delijn.be/stops/504701"], ["https://data.delijn.be/stops/102491", "https://data.delijn.be/stops/102494"], ["https://data.delijn.be/stops/402536", "https://data.delijn.be/stops/402537"], ["https://data.delijn.be/stops/301263", "https://data.delijn.be/stops/301264"], ["https://data.delijn.be/stops/101718", "https://data.delijn.be/stops/107807"], ["https://data.delijn.be/stops/409099", "https://data.delijn.be/stops/409102"], ["https://data.delijn.be/stops/206434", "https://data.delijn.be/stops/206435"], ["https://data.delijn.be/stops/205099", "https://data.delijn.be/stops/205692"], ["https://data.delijn.be/stops/503482", "https://data.delijn.be/stops/505719"], ["https://data.delijn.be/stops/408604", "https://data.delijn.be/stops/408700"], ["https://data.delijn.be/stops/107902", "https://data.delijn.be/stops/109445"], ["https://data.delijn.be/stops/103206", "https://data.delijn.be/stops/103333"], ["https://data.delijn.be/stops/101131", "https://data.delijn.be/stops/105999"], ["https://data.delijn.be/stops/204541", "https://data.delijn.be/stops/205654"], ["https://data.delijn.be/stops/502603", "https://data.delijn.be/stops/507312"], ["https://data.delijn.be/stops/403135", "https://data.delijn.be/stops/403147"], ["https://data.delijn.be/stops/102550", "https://data.delijn.be/stops/405015"], ["https://data.delijn.be/stops/404194", "https://data.delijn.be/stops/404195"], ["https://data.delijn.be/stops/406288", "https://data.delijn.be/stops/406290"], ["https://data.delijn.be/stops/101929", "https://data.delijn.be/stops/109764"], ["https://data.delijn.be/stops/501383", "https://data.delijn.be/stops/506380"], ["https://data.delijn.be/stops/102592", "https://data.delijn.be/stops/102897"], ["https://data.delijn.be/stops/202155", "https://data.delijn.be/stops/203643"], ["https://data.delijn.be/stops/502814", "https://data.delijn.be/stops/508163"], ["https://data.delijn.be/stops/208433", "https://data.delijn.be/stops/219021"], ["https://data.delijn.be/stops/407079", "https://data.delijn.be/stops/407084"], ["https://data.delijn.be/stops/105432", "https://data.delijn.be/stops/105436"], ["https://data.delijn.be/stops/303708", "https://data.delijn.be/stops/303733"], ["https://data.delijn.be/stops/503022", "https://data.delijn.be/stops/508818"], ["https://data.delijn.be/stops/504551", "https://data.delijn.be/stops/505991"], ["https://data.delijn.be/stops/404206", "https://data.delijn.be/stops/404209"], ["https://data.delijn.be/stops/407362", "https://data.delijn.be/stops/410184"], ["https://data.delijn.be/stops/305078", "https://data.delijn.be/stops/305079"], ["https://data.delijn.be/stops/302706", "https://data.delijn.be/stops/305636"], ["https://data.delijn.be/stops/208064", "https://data.delijn.be/stops/209065"], ["https://data.delijn.be/stops/104651", "https://data.delijn.be/stops/108046"], ["https://data.delijn.be/stops/503655", "https://data.delijn.be/stops/503953"], ["https://data.delijn.be/stops/501283", "https://data.delijn.be/stops/501312"], ["https://data.delijn.be/stops/503166", "https://data.delijn.be/stops/503169"], ["https://data.delijn.be/stops/203615", "https://data.delijn.be/stops/203616"], ["https://data.delijn.be/stops/504776", "https://data.delijn.be/stops/509287"], ["https://data.delijn.be/stops/504689", "https://data.delijn.be/stops/509270"], ["https://data.delijn.be/stops/510003", "https://data.delijn.be/stops/510007"], ["https://data.delijn.be/stops/505704", "https://data.delijn.be/stops/507247"], ["https://data.delijn.be/stops/105397", "https://data.delijn.be/stops/106838"], ["https://data.delijn.be/stops/204323", "https://data.delijn.be/stops/205099"], ["https://data.delijn.be/stops/503811", "https://data.delijn.be/stops/505538"], ["https://data.delijn.be/stops/401528", "https://data.delijn.be/stops/409504"], ["https://data.delijn.be/stops/305215", "https://data.delijn.be/stops/306967"], ["https://data.delijn.be/stops/404977", "https://data.delijn.be/stops/404978"], ["https://data.delijn.be/stops/200728", "https://data.delijn.be/stops/200736"], ["https://data.delijn.be/stops/501386", "https://data.delijn.be/stops/501502"], ["https://data.delijn.be/stops/302260", "https://data.delijn.be/stops/304349"], ["https://data.delijn.be/stops/300703", "https://data.delijn.be/stops/300704"], ["https://data.delijn.be/stops/108066", "https://data.delijn.be/stops/108868"], ["https://data.delijn.be/stops/506125", "https://data.delijn.be/stops/506230"], ["https://data.delijn.be/stops/102397", "https://data.delijn.be/stops/103660"], ["https://data.delijn.be/stops/208144", "https://data.delijn.be/stops/209145"], ["https://data.delijn.be/stops/505130", "https://data.delijn.be/stops/509749"], ["https://data.delijn.be/stops/303481", "https://data.delijn.be/stops/303504"], ["https://data.delijn.be/stops/107274", "https://data.delijn.be/stops/107278"], ["https://data.delijn.be/stops/200159", "https://data.delijn.be/stops/201595"], ["https://data.delijn.be/stops/107716", "https://data.delijn.be/stops/107734"], ["https://data.delijn.be/stops/503164", "https://data.delijn.be/stops/508796"], ["https://data.delijn.be/stops/200766", "https://data.delijn.be/stops/209375"], ["https://data.delijn.be/stops/206180", "https://data.delijn.be/stops/308566"], ["https://data.delijn.be/stops/405146", "https://data.delijn.be/stops/405224"], ["https://data.delijn.be/stops/200668", "https://data.delijn.be/stops/503844"], ["https://data.delijn.be/stops/202583", "https://data.delijn.be/stops/202607"], ["https://data.delijn.be/stops/106770", "https://data.delijn.be/stops/106806"], ["https://data.delijn.be/stops/206958", "https://data.delijn.be/stops/207956"], ["https://data.delijn.be/stops/206087", "https://data.delijn.be/stops/207086"], ["https://data.delijn.be/stops/401844", "https://data.delijn.be/stops/401845"], ["https://data.delijn.be/stops/204164", "https://data.delijn.be/stops/207271"], ["https://data.delijn.be/stops/404198", "https://data.delijn.be/stops/404199"], ["https://data.delijn.be/stops/303528", "https://data.delijn.be/stops/303529"], ["https://data.delijn.be/stops/302259", "https://data.delijn.be/stops/306370"], ["https://data.delijn.be/stops/106999", "https://data.delijn.be/stops/107002"], ["https://data.delijn.be/stops/210012", "https://data.delijn.be/stops/210013"], ["https://data.delijn.be/stops/106023", "https://data.delijn.be/stops/109560"], ["https://data.delijn.be/stops/404999", "https://data.delijn.be/stops/408075"], ["https://data.delijn.be/stops/103643", "https://data.delijn.be/stops/103644"], ["https://data.delijn.be/stops/202867", "https://data.delijn.be/stops/203867"], ["https://data.delijn.be/stops/401398", "https://data.delijn.be/stops/301076"], ["https://data.delijn.be/stops/506183", "https://data.delijn.be/stops/509499"], ["https://data.delijn.be/stops/210086", "https://data.delijn.be/stops/211118"], ["https://data.delijn.be/stops/301834", "https://data.delijn.be/stops/305911"], ["https://data.delijn.be/stops/406306", "https://data.delijn.be/stops/406310"], ["https://data.delijn.be/stops/402121", "https://data.delijn.be/stops/402387"], ["https://data.delijn.be/stops/400016", "https://data.delijn.be/stops/400020"], ["https://data.delijn.be/stops/306183", "https://data.delijn.be/stops/306185"], ["https://data.delijn.be/stops/301930", "https://data.delijn.be/stops/304530"], ["https://data.delijn.be/stops/302654", "https://data.delijn.be/stops/302660"], ["https://data.delijn.be/stops/503327", "https://data.delijn.be/stops/508327"], ["https://data.delijn.be/stops/409194", "https://data.delijn.be/stops/409833"], ["https://data.delijn.be/stops/503691", "https://data.delijn.be/stops/503995"], ["https://data.delijn.be/stops/502447", "https://data.delijn.be/stops/502660"], ["https://data.delijn.be/stops/301217", "https://data.delijn.be/stops/306715"], ["https://data.delijn.be/stops/103587", "https://data.delijn.be/stops/105587"], ["https://data.delijn.be/stops/303561", "https://data.delijn.be/stops/308609"], ["https://data.delijn.be/stops/207513", "https://data.delijn.be/stops/207598"], ["https://data.delijn.be/stops/102887", "https://data.delijn.be/stops/102892"], ["https://data.delijn.be/stops/406301", "https://data.delijn.be/stops/406316"], ["https://data.delijn.be/stops/102652", "https://data.delijn.be/stops/104578"], ["https://data.delijn.be/stops/400097", "https://data.delijn.be/stops/409158"], ["https://data.delijn.be/stops/305522", "https://data.delijn.be/stops/308553"], ["https://data.delijn.be/stops/506449", "https://data.delijn.be/stops/506452"], ["https://data.delijn.be/stops/502296", "https://data.delijn.be/stops/505730"], ["https://data.delijn.be/stops/104802", "https://data.delijn.be/stops/109453"], ["https://data.delijn.be/stops/405658", "https://data.delijn.be/stops/405659"], ["https://data.delijn.be/stops/206633", "https://data.delijn.be/stops/207635"], ["https://data.delijn.be/stops/207170", "https://data.delijn.be/stops/303838"], ["https://data.delijn.be/stops/302533", "https://data.delijn.be/stops/305839"], ["https://data.delijn.be/stops/403062", "https://data.delijn.be/stops/410034"], ["https://data.delijn.be/stops/404365", "https://data.delijn.be/stops/404756"], ["https://data.delijn.be/stops/207444", "https://data.delijn.be/stops/209686"], ["https://data.delijn.be/stops/504044", "https://data.delijn.be/stops/505810"], ["https://data.delijn.be/stops/200957", "https://data.delijn.be/stops/203670"], ["https://data.delijn.be/stops/201850", "https://data.delijn.be/stops/205994"], ["https://data.delijn.be/stops/105716", "https://data.delijn.be/stops/105719"], ["https://data.delijn.be/stops/406960", "https://data.delijn.be/stops/406966"], ["https://data.delijn.be/stops/207794", "https://data.delijn.be/stops/208407"], ["https://data.delijn.be/stops/304455", "https://data.delijn.be/stops/304463"], ["https://data.delijn.be/stops/102955", "https://data.delijn.be/stops/102960"], ["https://data.delijn.be/stops/501607", "https://data.delijn.be/stops/506606"], ["https://data.delijn.be/stops/104768", "https://data.delijn.be/stops/108147"], ["https://data.delijn.be/stops/106632", "https://data.delijn.be/stops/107157"], ["https://data.delijn.be/stops/200908", "https://data.delijn.be/stops/208857"], ["https://data.delijn.be/stops/105682", "https://data.delijn.be/stops/109948"], ["https://data.delijn.be/stops/407844", "https://data.delijn.be/stops/407906"], ["https://data.delijn.be/stops/406647", "https://data.delijn.be/stops/408477"], ["https://data.delijn.be/stops/204996", "https://data.delijn.be/stops/206162"], ["https://data.delijn.be/stops/202779", "https://data.delijn.be/stops/203779"], ["https://data.delijn.be/stops/105564", "https://data.delijn.be/stops/105572"], ["https://data.delijn.be/stops/505848", "https://data.delijn.be/stops/508825"], ["https://data.delijn.be/stops/407022", "https://data.delijn.be/stops/410033"], ["https://data.delijn.be/stops/404136", "https://data.delijn.be/stops/404140"], ["https://data.delijn.be/stops/400279", "https://data.delijn.be/stops/400304"], ["https://data.delijn.be/stops/103062", "https://data.delijn.be/stops/109461"], ["https://data.delijn.be/stops/206616", "https://data.delijn.be/stops/206619"], ["https://data.delijn.be/stops/206301", "https://data.delijn.be/stops/206914"], ["https://data.delijn.be/stops/208087", "https://data.delijn.be/stops/208088"], ["https://data.delijn.be/stops/402554", "https://data.delijn.be/stops/408079"], ["https://data.delijn.be/stops/105446", "https://data.delijn.be/stops/105447"], ["https://data.delijn.be/stops/403250", "https://data.delijn.be/stops/410285"], ["https://data.delijn.be/stops/102323", "https://data.delijn.be/stops/104244"], ["https://data.delijn.be/stops/103185", "https://data.delijn.be/stops/103230"], ["https://data.delijn.be/stops/204409", "https://data.delijn.be/stops/205083"], ["https://data.delijn.be/stops/207221", "https://data.delijn.be/stops/207373"], ["https://data.delijn.be/stops/405158", "https://data.delijn.be/stops/405216"], ["https://data.delijn.be/stops/300215", "https://data.delijn.be/stops/301378"], ["https://data.delijn.be/stops/302007", "https://data.delijn.be/stops/303174"], ["https://data.delijn.be/stops/103138", "https://data.delijn.be/stops/107116"], ["https://data.delijn.be/stops/401045", "https://data.delijn.be/stops/401141"], ["https://data.delijn.be/stops/201147", "https://data.delijn.be/stops/211047"], ["https://data.delijn.be/stops/103727", "https://data.delijn.be/stops/109442"], ["https://data.delijn.be/stops/106599", "https://data.delijn.be/stops/107208"], ["https://data.delijn.be/stops/501687", "https://data.delijn.be/stops/506016"], ["https://data.delijn.be/stops/402888", "https://data.delijn.be/stops/402897"], ["https://data.delijn.be/stops/106467", "https://data.delijn.be/stops/107046"], ["https://data.delijn.be/stops/202320", "https://data.delijn.be/stops/202321"], ["https://data.delijn.be/stops/204060", "https://data.delijn.be/stops/204061"], ["https://data.delijn.be/stops/303114", "https://data.delijn.be/stops/305442"], ["https://data.delijn.be/stops/301870", "https://data.delijn.be/stops/304338"], ["https://data.delijn.be/stops/107006", "https://data.delijn.be/stops/107007"], ["https://data.delijn.be/stops/501306", "https://data.delijn.be/stops/506296"], ["https://data.delijn.be/stops/405276", "https://data.delijn.be/stops/405282"], ["https://data.delijn.be/stops/503973", "https://data.delijn.be/stops/508973"], ["https://data.delijn.be/stops/504466", "https://data.delijn.be/stops/504698"], ["https://data.delijn.be/stops/102832", "https://data.delijn.be/stops/106732"], ["https://data.delijn.be/stops/102937", "https://data.delijn.be/stops/107805"], ["https://data.delijn.be/stops/403983", "https://data.delijn.be/stops/404003"], ["https://data.delijn.be/stops/200720", "https://data.delijn.be/stops/202576"], ["https://data.delijn.be/stops/304365", "https://data.delijn.be/stops/304367"], ["https://data.delijn.be/stops/302934", "https://data.delijn.be/stops/307055"], ["https://data.delijn.be/stops/503295", "https://data.delijn.be/stops/508295"], ["https://data.delijn.be/stops/203341", "https://data.delijn.be/stops/203483"], ["https://data.delijn.be/stops/401239", "https://data.delijn.be/stops/410124"], ["https://data.delijn.be/stops/304803", "https://data.delijn.be/stops/307882"], ["https://data.delijn.be/stops/306113", "https://data.delijn.be/stops/307862"], ["https://data.delijn.be/stops/301967", "https://data.delijn.be/stops/307169"], ["https://data.delijn.be/stops/302338", "https://data.delijn.be/stops/307829"], ["https://data.delijn.be/stops/305328", "https://data.delijn.be/stops/308697"], ["https://data.delijn.be/stops/203539", "https://data.delijn.be/stops/203688"], ["https://data.delijn.be/stops/504059", "https://data.delijn.be/stops/505403"], ["https://data.delijn.be/stops/202213", "https://data.delijn.be/stops/202216"], ["https://data.delijn.be/stops/301077", "https://data.delijn.be/stops/308818"], ["https://data.delijn.be/stops/200891", "https://data.delijn.be/stops/210013"], ["https://data.delijn.be/stops/405278", "https://data.delijn.be/stops/405279"], ["https://data.delijn.be/stops/204086", "https://data.delijn.be/stops/204087"], ["https://data.delijn.be/stops/406154", "https://data.delijn.be/stops/406274"], ["https://data.delijn.be/stops/105482", "https://data.delijn.be/stops/105501"], ["https://data.delijn.be/stops/501568", "https://data.delijn.be/stops/506290"], ["https://data.delijn.be/stops/401949", "https://data.delijn.be/stops/407117"], ["https://data.delijn.be/stops/403528", "https://data.delijn.be/stops/408452"], ["https://data.delijn.be/stops/102229", "https://data.delijn.be/stops/105526"], ["https://data.delijn.be/stops/305423", "https://data.delijn.be/stops/305509"], ["https://data.delijn.be/stops/103748", "https://data.delijn.be/stops/107197"], ["https://data.delijn.be/stops/509346", "https://data.delijn.be/stops/509348"], ["https://data.delijn.be/stops/503013", "https://data.delijn.be/stops/505277"], ["https://data.delijn.be/stops/304983", "https://data.delijn.be/stops/308011"], ["https://data.delijn.be/stops/306907", "https://data.delijn.be/stops/306909"], ["https://data.delijn.be/stops/109187", "https://data.delijn.be/stops/109189"], ["https://data.delijn.be/stops/502615", "https://data.delijn.be/stops/502803"], ["https://data.delijn.be/stops/204261", "https://data.delijn.be/stops/205250"], ["https://data.delijn.be/stops/303002", "https://data.delijn.be/stops/308660"], ["https://data.delijn.be/stops/108121", "https://data.delijn.be/stops/109620"], ["https://data.delijn.be/stops/202204", "https://data.delijn.be/stops/203505"], ["https://data.delijn.be/stops/406406", "https://data.delijn.be/stops/406407"], ["https://data.delijn.be/stops/505507", "https://data.delijn.be/stops/505514"], ["https://data.delijn.be/stops/209204", "https://data.delijn.be/stops/209798"], ["https://data.delijn.be/stops/404415", "https://data.delijn.be/stops/404425"], ["https://data.delijn.be/stops/508253", "https://data.delijn.be/stops/508259"], ["https://data.delijn.be/stops/303171", "https://data.delijn.be/stops/303173"], ["https://data.delijn.be/stops/208543", "https://data.delijn.be/stops/209559"], ["https://data.delijn.be/stops/107124", "https://data.delijn.be/stops/107127"], ["https://data.delijn.be/stops/503077", "https://data.delijn.be/stops/508077"], ["https://data.delijn.be/stops/502115", "https://data.delijn.be/stops/502793"], ["https://data.delijn.be/stops/501253", "https://data.delijn.be/stops/501261"], ["https://data.delijn.be/stops/206502", "https://data.delijn.be/stops/207154"], ["https://data.delijn.be/stops/404255", "https://data.delijn.be/stops/405238"], ["https://data.delijn.be/stops/405056", "https://data.delijn.be/stops/405057"], ["https://data.delijn.be/stops/507599", "https://data.delijn.be/stops/507769"], ["https://data.delijn.be/stops/107840", "https://data.delijn.be/stops/108585"], ["https://data.delijn.be/stops/400719", "https://data.delijn.be/stops/401919"], ["https://data.delijn.be/stops/300291", "https://data.delijn.be/stops/307476"], ["https://data.delijn.be/stops/303083", "https://data.delijn.be/stops/303086"], ["https://data.delijn.be/stops/501500", "https://data.delijn.be/stops/506511"], ["https://data.delijn.be/stops/201919", "https://data.delijn.be/stops/201920"], ["https://data.delijn.be/stops/500931", "https://data.delijn.be/stops/500937"], ["https://data.delijn.be/stops/201836", "https://data.delijn.be/stops/202318"], ["https://data.delijn.be/stops/105421", "https://data.delijn.be/stops/105424"], ["https://data.delijn.be/stops/101975", "https://data.delijn.be/stops/102395"], ["https://data.delijn.be/stops/101005", "https://data.delijn.be/stops/101137"], ["https://data.delijn.be/stops/103032", "https://data.delijn.be/stops/103033"], ["https://data.delijn.be/stops/507523", "https://data.delijn.be/stops/507925"], ["https://data.delijn.be/stops/200334", "https://data.delijn.be/stops/200338"], ["https://data.delijn.be/stops/303558", "https://data.delijn.be/stops/303559"], ["https://data.delijn.be/stops/201159", "https://data.delijn.be/stops/201160"], ["https://data.delijn.be/stops/501620", "https://data.delijn.be/stops/506620"], ["https://data.delijn.be/stops/307365", "https://data.delijn.be/stops/307366"], ["https://data.delijn.be/stops/202867", "https://data.delijn.be/stops/202868"], ["https://data.delijn.be/stops/503366", "https://data.delijn.be/stops/508411"], ["https://data.delijn.be/stops/206464", "https://data.delijn.be/stops/207465"], ["https://data.delijn.be/stops/402433", "https://data.delijn.be/stops/404439"], ["https://data.delijn.be/stops/205054", "https://data.delijn.be/stops/205703"], ["https://data.delijn.be/stops/509282", "https://data.delijn.be/stops/509289"], ["https://data.delijn.be/stops/406989", "https://data.delijn.be/stops/409644"], ["https://data.delijn.be/stops/106298", "https://data.delijn.be/stops/106466"], ["https://data.delijn.be/stops/202432", "https://data.delijn.be/stops/210088"], ["https://data.delijn.be/stops/202668", "https://data.delijn.be/stops/203667"], ["https://data.delijn.be/stops/304104", "https://data.delijn.be/stops/304689"], ["https://data.delijn.be/stops/504106", "https://data.delijn.be/stops/505121"], ["https://data.delijn.be/stops/503074", "https://data.delijn.be/stops/508074"], ["https://data.delijn.be/stops/105150", "https://data.delijn.be/stops/105370"], ["https://data.delijn.be/stops/200081", "https://data.delijn.be/stops/208958"], ["https://data.delijn.be/stops/101223", "https://data.delijn.be/stops/102649"], ["https://data.delijn.be/stops/401438", "https://data.delijn.be/stops/401447"], ["https://data.delijn.be/stops/107633", "https://data.delijn.be/stops/107634"], ["https://data.delijn.be/stops/408519", "https://data.delijn.be/stops/408711"], ["https://data.delijn.be/stops/202969", "https://data.delijn.be/stops/203163"], ["https://data.delijn.be/stops/300550", "https://data.delijn.be/stops/307860"], ["https://data.delijn.be/stops/500051", "https://data.delijn.be/stops/500052"], ["https://data.delijn.be/stops/407221", "https://data.delijn.be/stops/407363"], ["https://data.delijn.be/stops/101832", "https://data.delijn.be/stops/108351"], ["https://data.delijn.be/stops/405194", "https://data.delijn.be/stops/405198"], ["https://data.delijn.be/stops/505259", "https://data.delijn.be/stops/508028"], ["https://data.delijn.be/stops/405167", "https://data.delijn.be/stops/405217"], ["https://data.delijn.be/stops/103249", "https://data.delijn.be/stops/108115"], ["https://data.delijn.be/stops/504433", "https://data.delijn.be/stops/509406"], ["https://data.delijn.be/stops/204194", "https://data.delijn.be/stops/204233"], ["https://data.delijn.be/stops/306049", "https://data.delijn.be/stops/308676"], ["https://data.delijn.be/stops/404965", "https://data.delijn.be/stops/409220"], ["https://data.delijn.be/stops/501424", "https://data.delijn.be/stops/506422"], ["https://data.delijn.be/stops/108081", "https://data.delijn.be/stops/109614"], ["https://data.delijn.be/stops/200226", "https://data.delijn.be/stops/201139"], ["https://data.delijn.be/stops/208667", "https://data.delijn.be/stops/209540"], ["https://data.delijn.be/stops/208749", "https://data.delijn.be/stops/208750"], ["https://data.delijn.be/stops/210121", "https://data.delijn.be/stops/211116"], ["https://data.delijn.be/stops/501594", "https://data.delijn.be/stops/504496"], ["https://data.delijn.be/stops/502420", "https://data.delijn.be/stops/507434"], ["https://data.delijn.be/stops/202978", "https://data.delijn.be/stops/203977"], ["https://data.delijn.be/stops/106454", "https://data.delijn.be/stops/106459"], ["https://data.delijn.be/stops/201490", "https://data.delijn.be/stops/201491"], ["https://data.delijn.be/stops/408804", "https://data.delijn.be/stops/408898"], ["https://data.delijn.be/stops/507029", "https://data.delijn.be/stops/507046"], ["https://data.delijn.be/stops/300330", "https://data.delijn.be/stops/300339"], ["https://data.delijn.be/stops/103078", "https://data.delijn.be/stops/106833"], ["https://data.delijn.be/stops/201704", "https://data.delijn.be/stops/203603"], ["https://data.delijn.be/stops/503875", "https://data.delijn.be/stops/509752"], ["https://data.delijn.be/stops/206448", "https://data.delijn.be/stops/207059"], ["https://data.delijn.be/stops/104587", "https://data.delijn.be/stops/104861"], ["https://data.delijn.be/stops/102888", "https://data.delijn.be/stops/102892"], ["https://data.delijn.be/stops/202464", "https://data.delijn.be/stops/203464"], ["https://data.delijn.be/stops/403303", "https://data.delijn.be/stops/405637"], ["https://data.delijn.be/stops/407436", "https://data.delijn.be/stops/407508"], ["https://data.delijn.be/stops/305318", "https://data.delijn.be/stops/305336"], ["https://data.delijn.be/stops/301729", "https://data.delijn.be/stops/301759"], ["https://data.delijn.be/stops/300110", "https://data.delijn.be/stops/306854"], ["https://data.delijn.be/stops/207438", "https://data.delijn.be/stops/209691"], ["https://data.delijn.be/stops/303482", "https://data.delijn.be/stops/303500"], ["https://data.delijn.be/stops/202448", "https://data.delijn.be/stops/203448"], ["https://data.delijn.be/stops/502408", "https://data.delijn.be/stops/507378"], ["https://data.delijn.be/stops/200687", "https://data.delijn.be/stops/200692"], ["https://data.delijn.be/stops/202924", "https://data.delijn.be/stops/203925"], ["https://data.delijn.be/stops/106020", "https://data.delijn.be/stops/109560"], ["https://data.delijn.be/stops/209268", "https://data.delijn.be/stops/209269"], ["https://data.delijn.be/stops/504968", "https://data.delijn.be/stops/507352"], ["https://data.delijn.be/stops/207425", "https://data.delijn.be/stops/207426"], ["https://data.delijn.be/stops/204400", "https://data.delijn.be/stops/205400"], ["https://data.delijn.be/stops/200422", "https://data.delijn.be/stops/203011"], ["https://data.delijn.be/stops/408821", "https://data.delijn.be/stops/408830"], ["https://data.delijn.be/stops/101416", "https://data.delijn.be/stops/101428"], ["https://data.delijn.be/stops/503152", "https://data.delijn.be/stops/504770"], ["https://data.delijn.be/stops/400823", "https://data.delijn.be/stops/403058"], ["https://data.delijn.be/stops/500951", "https://data.delijn.be/stops/505118"], ["https://data.delijn.be/stops/209477", "https://data.delijn.be/stops/209478"], ["https://data.delijn.be/stops/501149", "https://data.delijn.be/stops/505622"], ["https://data.delijn.be/stops/400580", "https://data.delijn.be/stops/405919"], ["https://data.delijn.be/stops/107979", "https://data.delijn.be/stops/107983"], ["https://data.delijn.be/stops/102503", "https://data.delijn.be/stops/407513"], ["https://data.delijn.be/stops/203157", "https://data.delijn.be/stops/205068"], ["https://data.delijn.be/stops/206187", "https://data.delijn.be/stops/206188"], ["https://data.delijn.be/stops/101616", "https://data.delijn.be/stops/101617"], ["https://data.delijn.be/stops/206332", "https://data.delijn.be/stops/207708"], ["https://data.delijn.be/stops/204194", "https://data.delijn.be/stops/205233"], ["https://data.delijn.be/stops/207419", "https://data.delijn.be/stops/207805"], ["https://data.delijn.be/stops/505975", "https://data.delijn.be/stops/509433"], ["https://data.delijn.be/stops/304387", "https://data.delijn.be/stops/306869"], ["https://data.delijn.be/stops/400135", "https://data.delijn.be/stops/410221"], ["https://data.delijn.be/stops/303256", "https://data.delijn.be/stops/303344"], ["https://data.delijn.be/stops/503278", "https://data.delijn.be/stops/503284"], ["https://data.delijn.be/stops/400269", "https://data.delijn.be/stops/405357"], ["https://data.delijn.be/stops/206295", "https://data.delijn.be/stops/207809"], ["https://data.delijn.be/stops/200692", "https://data.delijn.be/stops/202750"], ["https://data.delijn.be/stops/102765", "https://data.delijn.be/stops/104675"], ["https://data.delijn.be/stops/200051", "https://data.delijn.be/stops/209823"], ["https://data.delijn.be/stops/503901", "https://data.delijn.be/stops/504982"], ["https://data.delijn.be/stops/204789", "https://data.delijn.be/stops/205127"], ["https://data.delijn.be/stops/107708", "https://data.delijn.be/stops/107709"], ["https://data.delijn.be/stops/302842", "https://data.delijn.be/stops/302843"], ["https://data.delijn.be/stops/504435", "https://data.delijn.be/stops/505207"], ["https://data.delijn.be/stops/400547", "https://data.delijn.be/stops/408473"], ["https://data.delijn.be/stops/304008", "https://data.delijn.be/stops/304025"], ["https://data.delijn.be/stops/503707", "https://data.delijn.be/stops/508701"], ["https://data.delijn.be/stops/402869", "https://data.delijn.be/stops/306036"], ["https://data.delijn.be/stops/501644", "https://data.delijn.be/stops/506644"], ["https://data.delijn.be/stops/503268", "https://data.delijn.be/stops/505129"], ["https://data.delijn.be/stops/102657", "https://data.delijn.be/stops/308811"], ["https://data.delijn.be/stops/400780", "https://data.delijn.be/stops/409343"], ["https://data.delijn.be/stops/200342", "https://data.delijn.be/stops/210335"], ["https://data.delijn.be/stops/504884", "https://data.delijn.be/stops/508589"], ["https://data.delijn.be/stops/103571", "https://data.delijn.be/stops/103572"], ["https://data.delijn.be/stops/105229", "https://data.delijn.be/stops/105234"], ["https://data.delijn.be/stops/300577", "https://data.delijn.be/stops/308897"], ["https://data.delijn.be/stops/302137", "https://data.delijn.be/stops/307530"], ["https://data.delijn.be/stops/102612", "https://data.delijn.be/stops/102613"], ["https://data.delijn.be/stops/300038", "https://data.delijn.be/stops/306838"], ["https://data.delijn.be/stops/302077", "https://data.delijn.be/stops/303515"], ["https://data.delijn.be/stops/105304", "https://data.delijn.be/stops/105306"], ["https://data.delijn.be/stops/105350", "https://data.delijn.be/stops/105565"], ["https://data.delijn.be/stops/402643", "https://data.delijn.be/stops/404098"], ["https://data.delijn.be/stops/400776", "https://data.delijn.be/stops/406674"], ["https://data.delijn.be/stops/108551", "https://data.delijn.be/stops/109091"], ["https://data.delijn.be/stops/106653", "https://data.delijn.be/stops/106655"], ["https://data.delijn.be/stops/200107", "https://data.delijn.be/stops/200429"], ["https://data.delijn.be/stops/308486", "https://data.delijn.be/stops/308491"], ["https://data.delijn.be/stops/105119", "https://data.delijn.be/stops/105121"], ["https://data.delijn.be/stops/106882", "https://data.delijn.be/stops/109750"], ["https://data.delijn.be/stops/202864", "https://data.delijn.be/stops/203864"], ["https://data.delijn.be/stops/207800", "https://data.delijn.be/stops/209546"], ["https://data.delijn.be/stops/206749", "https://data.delijn.be/stops/207749"], ["https://data.delijn.be/stops/303083", "https://data.delijn.be/stops/304245"], ["https://data.delijn.be/stops/109768", "https://data.delijn.be/stops/109769"], ["https://data.delijn.be/stops/402108", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/204320", "https://data.delijn.be/stops/205319"], ["https://data.delijn.be/stops/201281", "https://data.delijn.be/stops/208956"], ["https://data.delijn.be/stops/305408", "https://data.delijn.be/stops/305409"], ["https://data.delijn.be/stops/507323", "https://data.delijn.be/stops/507391"], ["https://data.delijn.be/stops/107253", "https://data.delijn.be/stops/107254"], ["https://data.delijn.be/stops/102844", "https://data.delijn.be/stops/106565"], ["https://data.delijn.be/stops/206240", "https://data.delijn.be/stops/206407"], ["https://data.delijn.be/stops/400694", "https://data.delijn.be/stops/400858"], ["https://data.delijn.be/stops/303828", "https://data.delijn.be/stops/305896"], ["https://data.delijn.be/stops/200001", "https://data.delijn.be/stops/211856"], ["https://data.delijn.be/stops/504253", "https://data.delijn.be/stops/504391"], ["https://data.delijn.be/stops/401139", "https://data.delijn.be/stops/409079"], ["https://data.delijn.be/stops/401163", "https://data.delijn.be/stops/408110"], ["https://data.delijn.be/stops/407226", "https://data.delijn.be/stops/407507"], ["https://data.delijn.be/stops/201617", "https://data.delijn.be/stops/202923"], ["https://data.delijn.be/stops/102185", "https://data.delijn.be/stops/103665"], ["https://data.delijn.be/stops/206672", "https://data.delijn.be/stops/208632"], ["https://data.delijn.be/stops/504630", "https://data.delijn.be/stops/509625"], ["https://data.delijn.be/stops/106478", "https://data.delijn.be/stops/107452"], ["https://data.delijn.be/stops/404457", "https://data.delijn.be/stops/404570"], ["https://data.delijn.be/stops/302913", "https://data.delijn.be/stops/302915"], ["https://data.delijn.be/stops/209663", "https://data.delijn.be/stops/209732"], ["https://data.delijn.be/stops/203505", "https://data.delijn.be/stops/203768"], ["https://data.delijn.be/stops/105093", "https://data.delijn.be/stops/109504"], ["https://data.delijn.be/stops/303139", "https://data.delijn.be/stops/304026"], ["https://data.delijn.be/stops/502084", "https://data.delijn.be/stops/502096"], ["https://data.delijn.be/stops/503251", "https://data.delijn.be/stops/505371"], ["https://data.delijn.be/stops/406299", "https://data.delijn.be/stops/409114"], ["https://data.delijn.be/stops/101551", "https://data.delijn.be/stops/101653"], ["https://data.delijn.be/stops/303072", "https://data.delijn.be/stops/303090"], ["https://data.delijn.be/stops/400248", "https://data.delijn.be/stops/401923"], ["https://data.delijn.be/stops/108022", "https://data.delijn.be/stops/109635"], ["https://data.delijn.be/stops/305163", "https://data.delijn.be/stops/305179"], ["https://data.delijn.be/stops/204300", "https://data.delijn.be/stops/205515"], ["https://data.delijn.be/stops/106715", "https://data.delijn.be/stops/106716"], ["https://data.delijn.be/stops/403161", "https://data.delijn.be/stops/403478"], ["https://data.delijn.be/stops/408398", "https://data.delijn.be/stops/408399"], ["https://data.delijn.be/stops/504164", "https://data.delijn.be/stops/504170"], ["https://data.delijn.be/stops/300782", "https://data.delijn.be/stops/301018"], ["https://data.delijn.be/stops/503231", "https://data.delijn.be/stops/503240"], ["https://data.delijn.be/stops/105759", "https://data.delijn.be/stops/109811"], ["https://data.delijn.be/stops/208093", "https://data.delijn.be/stops/209630"], ["https://data.delijn.be/stops/300324", "https://data.delijn.be/stops/306816"], ["https://data.delijn.be/stops/106179", "https://data.delijn.be/stops/106181"], ["https://data.delijn.be/stops/206867", "https://data.delijn.be/stops/208807"], ["https://data.delijn.be/stops/106873", "https://data.delijn.be/stops/106876"], ["https://data.delijn.be/stops/305162", "https://data.delijn.be/stops/305207"], ["https://data.delijn.be/stops/200107", "https://data.delijn.be/stops/201107"], ["https://data.delijn.be/stops/304221", "https://data.delijn.be/stops/304289"], ["https://data.delijn.be/stops/203125", "https://data.delijn.be/stops/203126"], ["https://data.delijn.be/stops/201182", "https://data.delijn.be/stops/201665"], ["https://data.delijn.be/stops/404723", "https://data.delijn.be/stops/404801"], ["https://data.delijn.be/stops/102950", "https://data.delijn.be/stops/102955"], ["https://data.delijn.be/stops/305000", "https://data.delijn.be/stops/305024"], ["https://data.delijn.be/stops/205055", "https://data.delijn.be/stops/205058"], ["https://data.delijn.be/stops/202921", "https://data.delijn.be/stops/203733"], ["https://data.delijn.be/stops/501546", "https://data.delijn.be/stops/506321"], ["https://data.delijn.be/stops/202386", "https://data.delijn.be/stops/202387"], ["https://data.delijn.be/stops/106205", "https://data.delijn.be/stops/106206"], ["https://data.delijn.be/stops/504978", "https://data.delijn.be/stops/509088"], ["https://data.delijn.be/stops/404288", "https://data.delijn.be/stops/409749"], ["https://data.delijn.be/stops/402396", "https://data.delijn.be/stops/402397"], ["https://data.delijn.be/stops/402490", "https://data.delijn.be/stops/402491"], ["https://data.delijn.be/stops/202001", "https://data.delijn.be/stops/202492"], ["https://data.delijn.be/stops/407818", "https://data.delijn.be/stops/407819"], ["https://data.delijn.be/stops/101700", "https://data.delijn.be/stops/104470"], ["https://data.delijn.be/stops/503923", "https://data.delijn.be/stops/505920"], ["https://data.delijn.be/stops/101729", "https://data.delijn.be/stops/101730"], ["https://data.delijn.be/stops/300503", "https://data.delijn.be/stops/300505"], ["https://data.delijn.be/stops/109169", "https://data.delijn.be/stops/109235"], ["https://data.delijn.be/stops/505627", "https://data.delijn.be/stops/507363"], ["https://data.delijn.be/stops/304364", "https://data.delijn.be/stops/304429"], ["https://data.delijn.be/stops/204656", "https://data.delijn.be/stops/204670"], ["https://data.delijn.be/stops/504407", "https://data.delijn.be/stops/508440"], ["https://data.delijn.be/stops/501130", "https://data.delijn.be/stops/506137"], ["https://data.delijn.be/stops/306339", "https://data.delijn.be/stops/306772"], ["https://data.delijn.be/stops/404107", "https://data.delijn.be/stops/404128"], ["https://data.delijn.be/stops/200609", "https://data.delijn.be/stops/201609"], ["https://data.delijn.be/stops/104343", "https://data.delijn.be/stops/104347"], ["https://data.delijn.be/stops/304096", "https://data.delijn.be/stops/304102"], ["https://data.delijn.be/stops/301383", "https://data.delijn.be/stops/306142"], ["https://data.delijn.be/stops/107611", "https://data.delijn.be/stops/107729"], ["https://data.delijn.be/stops/101957", "https://data.delijn.be/stops/109706"], ["https://data.delijn.be/stops/103129", "https://data.delijn.be/stops/106778"], ["https://data.delijn.be/stops/502465", "https://data.delijn.be/stops/507445"], ["https://data.delijn.be/stops/103528", "https://data.delijn.be/stops/109636"], ["https://data.delijn.be/stops/407883", "https://data.delijn.be/stops/407889"], ["https://data.delijn.be/stops/301359", "https://data.delijn.be/stops/301393"], ["https://data.delijn.be/stops/404638", "https://data.delijn.be/stops/404990"], ["https://data.delijn.be/stops/103014", "https://data.delijn.be/stops/109018"], ["https://data.delijn.be/stops/402368", "https://data.delijn.be/stops/402398"], ["https://data.delijn.be/stops/101979", "https://data.delijn.be/stops/108287"], ["https://data.delijn.be/stops/101460", "https://data.delijn.be/stops/103318"], ["https://data.delijn.be/stops/208664", "https://data.delijn.be/stops/208809"], ["https://data.delijn.be/stops/202614", "https://data.delijn.be/stops/203614"], ["https://data.delijn.be/stops/202102", "https://data.delijn.be/stops/203102"], ["https://data.delijn.be/stops/401029", "https://data.delijn.be/stops/401039"], ["https://data.delijn.be/stops/502527", "https://data.delijn.be/stops/507524"], ["https://data.delijn.be/stops/208838", "https://data.delijn.be/stops/209208"], ["https://data.delijn.be/stops/102612", "https://data.delijn.be/stops/107051"], ["https://data.delijn.be/stops/106290", "https://data.delijn.be/stops/106308"], ["https://data.delijn.be/stops/105119", "https://data.delijn.be/stops/108890"], ["https://data.delijn.be/stops/200658", "https://data.delijn.be/stops/201729"], ["https://data.delijn.be/stops/406564", "https://data.delijn.be/stops/407206"], ["https://data.delijn.be/stops/108082", "https://data.delijn.be/stops/108083"], ["https://data.delijn.be/stops/403112", "https://data.delijn.be/stops/403113"], ["https://data.delijn.be/stops/206355", "https://data.delijn.be/stops/207346"], ["https://data.delijn.be/stops/208056", "https://data.delijn.be/stops/209628"], ["https://data.delijn.be/stops/302769", "https://data.delijn.be/stops/302772"], ["https://data.delijn.be/stops/506658", "https://data.delijn.be/stops/506659"], ["https://data.delijn.be/stops/503311", "https://data.delijn.be/stops/508137"], ["https://data.delijn.be/stops/206027", "https://data.delijn.be/stops/207721"], ["https://data.delijn.be/stops/503368", "https://data.delijn.be/stops/509920"], ["https://data.delijn.be/stops/208290", "https://data.delijn.be/stops/208330"], ["https://data.delijn.be/stops/407656", "https://data.delijn.be/stops/409786"], ["https://data.delijn.be/stops/502267", "https://data.delijn.be/stops/509723"], ["https://data.delijn.be/stops/400849", "https://data.delijn.be/stops/400853"], ["https://data.delijn.be/stops/509129", "https://data.delijn.be/stops/509257"], ["https://data.delijn.be/stops/504070", "https://data.delijn.be/stops/504689"], ["https://data.delijn.be/stops/300489", "https://data.delijn.be/stops/307085"], ["https://data.delijn.be/stops/103253", "https://data.delijn.be/stops/103254"], ["https://data.delijn.be/stops/204159", "https://data.delijn.be/stops/205158"], ["https://data.delijn.be/stops/202026", "https://data.delijn.be/stops/202082"], ["https://data.delijn.be/stops/207891", "https://data.delijn.be/stops/207912"], ["https://data.delijn.be/stops/305561", "https://data.delijn.be/stops/308552"], ["https://data.delijn.be/stops/106125", "https://data.delijn.be/stops/106128"], ["https://data.delijn.be/stops/403685", "https://data.delijn.be/stops/409250"], ["https://data.delijn.be/stops/306951", "https://data.delijn.be/stops/306953"], ["https://data.delijn.be/stops/401179", "https://data.delijn.be/stops/401183"], ["https://data.delijn.be/stops/404354", "https://data.delijn.be/stops/404358"], ["https://data.delijn.be/stops/102355", "https://data.delijn.be/stops/104815"], ["https://data.delijn.be/stops/300983", "https://data.delijn.be/stops/301082"], ["https://data.delijn.be/stops/501318", "https://data.delijn.be/stops/506318"], ["https://data.delijn.be/stops/400321", "https://data.delijn.be/stops/407101"], ["https://data.delijn.be/stops/200390", "https://data.delijn.be/stops/209721"], ["https://data.delijn.be/stops/401094", "https://data.delijn.be/stops/401100"], ["https://data.delijn.be/stops/303094", "https://data.delijn.be/stops/304244"], ["https://data.delijn.be/stops/205929", "https://data.delijn.be/stops/211105"], ["https://data.delijn.be/stops/103760", "https://data.delijn.be/stops/104215"], ["https://data.delijn.be/stops/304444", "https://data.delijn.be/stops/304445"], ["https://data.delijn.be/stops/208677", "https://data.delijn.be/stops/208808"], ["https://data.delijn.be/stops/104938", "https://data.delijn.be/stops/107853"], ["https://data.delijn.be/stops/104953", "https://data.delijn.be/stops/406504"], ["https://data.delijn.be/stops/200003", "https://data.delijn.be/stops/202016"], ["https://data.delijn.be/stops/407914", "https://data.delijn.be/stops/407915"], ["https://data.delijn.be/stops/206552", "https://data.delijn.be/stops/207484"], ["https://data.delijn.be/stops/503792", "https://data.delijn.be/stops/505568"], ["https://data.delijn.be/stops/208785", "https://data.delijn.be/stops/209179"], ["https://data.delijn.be/stops/303705", "https://data.delijn.be/stops/304919"], ["https://data.delijn.be/stops/101416", "https://data.delijn.be/stops/102069"], ["https://data.delijn.be/stops/405592", "https://data.delijn.be/stops/407797"], ["https://data.delijn.be/stops/305064", "https://data.delijn.be/stops/305065"], ["https://data.delijn.be/stops/203249", "https://data.delijn.be/stops/203250"], ["https://data.delijn.be/stops/401053", "https://data.delijn.be/stops/401137"], ["https://data.delijn.be/stops/106980", "https://data.delijn.be/stops/106983"], ["https://data.delijn.be/stops/105536", "https://data.delijn.be/stops/105539"], ["https://data.delijn.be/stops/108677", "https://data.delijn.be/stops/406788"], ["https://data.delijn.be/stops/105049", "https://data.delijn.be/stops/109766"], ["https://data.delijn.be/stops/503717", "https://data.delijn.be/stops/508717"], ["https://data.delijn.be/stops/504677", "https://data.delijn.be/stops/505819"], ["https://data.delijn.be/stops/502313", "https://data.delijn.be/stops/505684"], ["https://data.delijn.be/stops/409433", "https://data.delijn.be/stops/409713"], ["https://data.delijn.be/stops/200333", "https://data.delijn.be/stops/205941"], ["https://data.delijn.be/stops/202177", "https://data.delijn.be/stops/203177"], ["https://data.delijn.be/stops/101653", "https://data.delijn.be/stops/107919"], ["https://data.delijn.be/stops/201472", "https://data.delijn.be/stops/208862"], ["https://data.delijn.be/stops/406650", "https://data.delijn.be/stops/406654"], ["https://data.delijn.be/stops/301053", "https://data.delijn.be/stops/301055"], ["https://data.delijn.be/stops/501469", "https://data.delijn.be/stops/506470"], ["https://data.delijn.be/stops/401788", "https://data.delijn.be/stops/401838"], ["https://data.delijn.be/stops/200645", "https://data.delijn.be/stops/200646"], ["https://data.delijn.be/stops/300455", "https://data.delijn.be/stops/305003"], ["https://data.delijn.be/stops/505064", "https://data.delijn.be/stops/505070"], ["https://data.delijn.be/stops/502739", "https://data.delijn.be/stops/590334"], ["https://data.delijn.be/stops/106999", "https://data.delijn.be/stops/107327"], ["https://data.delijn.be/stops/109438", "https://data.delijn.be/stops/109439"], ["https://data.delijn.be/stops/400400", "https://data.delijn.be/stops/400955"], ["https://data.delijn.be/stops/208326", "https://data.delijn.be/stops/209325"], ["https://data.delijn.be/stops/107443", "https://data.delijn.be/stops/107444"], ["https://data.delijn.be/stops/402119", "https://data.delijn.be/stops/403690"], ["https://data.delijn.be/stops/101510", "https://data.delijn.be/stops/101860"], ["https://data.delijn.be/stops/501124", "https://data.delijn.be/stops/506124"], ["https://data.delijn.be/stops/503388", "https://data.delijn.be/stops/508405"], ["https://data.delijn.be/stops/405891", "https://data.delijn.be/stops/410255"], ["https://data.delijn.be/stops/300936", "https://data.delijn.be/stops/301944"], ["https://data.delijn.be/stops/508077", "https://data.delijn.be/stops/508680"], ["https://data.delijn.be/stops/202195", "https://data.delijn.be/stops/203195"], ["https://data.delijn.be/stops/101209", "https://data.delijn.be/stops/107844"], ["https://data.delijn.be/stops/404238", "https://data.delijn.be/stops/404239"], ["https://data.delijn.be/stops/101669", "https://data.delijn.be/stops/107661"], ["https://data.delijn.be/stops/407335", "https://data.delijn.be/stops/407497"], ["https://data.delijn.be/stops/208245", "https://data.delijn.be/stops/208855"], ["https://data.delijn.be/stops/106115", "https://data.delijn.be/stops/106116"], ["https://data.delijn.be/stops/305005", "https://data.delijn.be/stops/305039"], ["https://data.delijn.be/stops/402349", "https://data.delijn.be/stops/402358"], ["https://data.delijn.be/stops/409112", "https://data.delijn.be/stops/409113"], ["https://data.delijn.be/stops/302002", "https://data.delijn.be/stops/302003"], ["https://data.delijn.be/stops/302587", "https://data.delijn.be/stops/302681"], ["https://data.delijn.be/stops/504853", "https://data.delijn.be/stops/509052"], ["https://data.delijn.be/stops/307137", "https://data.delijn.be/stops/308716"], ["https://data.delijn.be/stops/304589", "https://data.delijn.be/stops/304590"], ["https://data.delijn.be/stops/201103", "https://data.delijn.be/stops/203005"], ["https://data.delijn.be/stops/504157", "https://data.delijn.be/stops/509157"], ["https://data.delijn.be/stops/401134", "https://data.delijn.be/stops/401138"], ["https://data.delijn.be/stops/305644", "https://data.delijn.be/stops/305646"], ["https://data.delijn.be/stops/405612", "https://data.delijn.be/stops/407191"], ["https://data.delijn.be/stops/102999", "https://data.delijn.be/stops/107414"], ["https://data.delijn.be/stops/307362", "https://data.delijn.be/stops/307363"], ["https://data.delijn.be/stops/302264", "https://data.delijn.be/stops/304846"], ["https://data.delijn.be/stops/106386", "https://data.delijn.be/stops/106387"], ["https://data.delijn.be/stops/109815", "https://data.delijn.be/stops/109817"], ["https://data.delijn.be/stops/200173", "https://data.delijn.be/stops/204925"], ["https://data.delijn.be/stops/108792", "https://data.delijn.be/stops/108796"], ["https://data.delijn.be/stops/301544", "https://data.delijn.be/stops/304702"], ["https://data.delijn.be/stops/304141", "https://data.delijn.be/stops/304147"], ["https://data.delijn.be/stops/407050", "https://data.delijn.be/stops/407051"], ["https://data.delijn.be/stops/400434", "https://data.delijn.be/stops/400435"], ["https://data.delijn.be/stops/308508", "https://data.delijn.be/stops/308591"], ["https://data.delijn.be/stops/303231", "https://data.delijn.be/stops/303232"], ["https://data.delijn.be/stops/200100", "https://data.delijn.be/stops/200101"], ["https://data.delijn.be/stops/503869", "https://data.delijn.be/stops/508071"], ["https://data.delijn.be/stops/400943", "https://data.delijn.be/stops/406954"], ["https://data.delijn.be/stops/209130", "https://data.delijn.be/stops/209197"], ["https://data.delijn.be/stops/507550", "https://data.delijn.be/stops/507656"], ["https://data.delijn.be/stops/405492", "https://data.delijn.be/stops/409332"], ["https://data.delijn.be/stops/400051", "https://data.delijn.be/stops/400169"], ["https://data.delijn.be/stops/507281", "https://data.delijn.be/stops/507283"], ["https://data.delijn.be/stops/403222", "https://data.delijn.be/stops/403224"], ["https://data.delijn.be/stops/503210", "https://data.delijn.be/stops/503211"], ["https://data.delijn.be/stops/400634", "https://data.delijn.be/stops/410009"], ["https://data.delijn.be/stops/405818", "https://data.delijn.be/stops/405849"], ["https://data.delijn.be/stops/501477", "https://data.delijn.be/stops/506332"], ["https://data.delijn.be/stops/101951", "https://data.delijn.be/stops/108792"], ["https://data.delijn.be/stops/206972", "https://data.delijn.be/stops/207972"], ["https://data.delijn.be/stops/408843", "https://data.delijn.be/stops/408927"], ["https://data.delijn.be/stops/504706", "https://data.delijn.be/stops/509101"], ["https://data.delijn.be/stops/507066", "https://data.delijn.be/stops/507072"], ["https://data.delijn.be/stops/505955", "https://data.delijn.be/stops/508163"], ["https://data.delijn.be/stops/409592", "https://data.delijn.be/stops/409598"], ["https://data.delijn.be/stops/208492", "https://data.delijn.be/stops/219024"], ["https://data.delijn.be/stops/202230", "https://data.delijn.be/stops/219505"], ["https://data.delijn.be/stops/505239", "https://data.delijn.be/stops/505947"], ["https://data.delijn.be/stops/201360", "https://data.delijn.be/stops/201363"], ["https://data.delijn.be/stops/105622", "https://data.delijn.be/stops/106361"], ["https://data.delijn.be/stops/101370", "https://data.delijn.be/stops/101806"], ["https://data.delijn.be/stops/504698", "https://data.delijn.be/stops/504699"], ["https://data.delijn.be/stops/303400", "https://data.delijn.be/stops/304827"], ["https://data.delijn.be/stops/203853", "https://data.delijn.be/stops/203854"], ["https://data.delijn.be/stops/300226", "https://data.delijn.be/stops/302115"], ["https://data.delijn.be/stops/500958", "https://data.delijn.be/stops/503282"], ["https://data.delijn.be/stops/301300", "https://data.delijn.be/stops/307942"], ["https://data.delijn.be/stops/204564", "https://data.delijn.be/stops/303537"], ["https://data.delijn.be/stops/402181", "https://data.delijn.be/stops/402417"], ["https://data.delijn.be/stops/306597", "https://data.delijn.be/stops/306631"], ["https://data.delijn.be/stops/400629", "https://data.delijn.be/stops/404292"], ["https://data.delijn.be/stops/303100", "https://data.delijn.be/stops/303108"], ["https://data.delijn.be/stops/200482", "https://data.delijn.be/stops/201095"], ["https://data.delijn.be/stops/400032", "https://data.delijn.be/stops/400041"], ["https://data.delijn.be/stops/102482", "https://data.delijn.be/stops/400417"], ["https://data.delijn.be/stops/302121", "https://data.delijn.be/stops/304147"], ["https://data.delijn.be/stops/408017", "https://data.delijn.be/stops/408199"], ["https://data.delijn.be/stops/503083", "https://data.delijn.be/stops/508082"], ["https://data.delijn.be/stops/202903", "https://data.delijn.be/stops/203903"], ["https://data.delijn.be/stops/202535", "https://data.delijn.be/stops/203588"], ["https://data.delijn.be/stops/211092", "https://data.delijn.be/stops/211118"], ["https://data.delijn.be/stops/403798", "https://data.delijn.be/stops/403804"], ["https://data.delijn.be/stops/301406", "https://data.delijn.be/stops/307220"], ["https://data.delijn.be/stops/509835", "https://data.delijn.be/stops/509836"], ["https://data.delijn.be/stops/403229", "https://data.delijn.be/stops/403386"], ["https://data.delijn.be/stops/200975", "https://data.delijn.be/stops/200976"], ["https://data.delijn.be/stops/508402", "https://data.delijn.be/stops/510015"], ["https://data.delijn.be/stops/105668", "https://data.delijn.be/stops/106048"], ["https://data.delijn.be/stops/101215", "https://data.delijn.be/stops/105785"], ["https://data.delijn.be/stops/106791", "https://data.delijn.be/stops/106794"], ["https://data.delijn.be/stops/200049", "https://data.delijn.be/stops/200247"], ["https://data.delijn.be/stops/101977", "https://data.delijn.be/stops/308494"], ["https://data.delijn.be/stops/504226", "https://data.delijn.be/stops/509227"], ["https://data.delijn.be/stops/108648", "https://data.delijn.be/stops/304330"], ["https://data.delijn.be/stops/503051", "https://data.delijn.be/stops/508051"], ["https://data.delijn.be/stops/401530", "https://data.delijn.be/stops/401531"], ["https://data.delijn.be/stops/303360", "https://data.delijn.be/stops/303361"], ["https://data.delijn.be/stops/209137", "https://data.delijn.be/stops/209138"], ["https://data.delijn.be/stops/302384", "https://data.delijn.be/stops/302391"], ["https://data.delijn.be/stops/505292", "https://data.delijn.be/stops/508290"], ["https://data.delijn.be/stops/306064", "https://data.delijn.be/stops/307713"], ["https://data.delijn.be/stops/107105", "https://data.delijn.be/stops/107585"], ["https://data.delijn.be/stops/300147", "https://data.delijn.be/stops/300148"], ["https://data.delijn.be/stops/201061", "https://data.delijn.be/stops/210059"], ["https://data.delijn.be/stops/102340", "https://data.delijn.be/stops/106332"], ["https://data.delijn.be/stops/407482", "https://data.delijn.be/stops/407492"], ["https://data.delijn.be/stops/508492", "https://data.delijn.be/stops/508495"], ["https://data.delijn.be/stops/302765", "https://data.delijn.be/stops/302766"], ["https://data.delijn.be/stops/101072", "https://data.delijn.be/stops/101073"], ["https://data.delijn.be/stops/505078", "https://data.delijn.be/stops/505808"], ["https://data.delijn.be/stops/403144", "https://data.delijn.be/stops/410273"], ["https://data.delijn.be/stops/505316", "https://data.delijn.be/stops/505580"], ["https://data.delijn.be/stops/109038", "https://data.delijn.be/stops/109083"], ["https://data.delijn.be/stops/103074", "https://data.delijn.be/stops/109521"], ["https://data.delijn.be/stops/102053", "https://data.delijn.be/stops/104128"], ["https://data.delijn.be/stops/408250", "https://data.delijn.be/stops/408251"], ["https://data.delijn.be/stops/407620", "https://data.delijn.be/stops/408448"], ["https://data.delijn.be/stops/407651", "https://data.delijn.be/stops/407653"], ["https://data.delijn.be/stops/507944", "https://data.delijn.be/stops/508855"], ["https://data.delijn.be/stops/201358", "https://data.delijn.be/stops/201842"], ["https://data.delijn.be/stops/306093", "https://data.delijn.be/stops/308829"], ["https://data.delijn.be/stops/207940", "https://data.delijn.be/stops/209565"], ["https://data.delijn.be/stops/104491", "https://data.delijn.be/stops/104492"], ["https://data.delijn.be/stops/400747", "https://data.delijn.be/stops/409592"], ["https://data.delijn.be/stops/303551", "https://data.delijn.be/stops/305527"], ["https://data.delijn.be/stops/401485", "https://data.delijn.be/stops/401494"], ["https://data.delijn.be/stops/201093", "https://data.delijn.be/stops/203895"], ["https://data.delijn.be/stops/202521", "https://data.delijn.be/stops/202540"], ["https://data.delijn.be/stops/200259", "https://data.delijn.be/stops/201947"], ["https://data.delijn.be/stops/104609", "https://data.delijn.be/stops/104611"], ["https://data.delijn.be/stops/108299", "https://data.delijn.be/stops/108302"], ["https://data.delijn.be/stops/201203", "https://data.delijn.be/stops/202555"], ["https://data.delijn.be/stops/307542", "https://data.delijn.be/stops/307545"], ["https://data.delijn.be/stops/200267", "https://data.delijn.be/stops/201267"], ["https://data.delijn.be/stops/105710", "https://data.delijn.be/stops/105980"], ["https://data.delijn.be/stops/208201", "https://data.delijn.be/stops/209201"], ["https://data.delijn.be/stops/402720", "https://data.delijn.be/stops/402721"], ["https://data.delijn.be/stops/406576", "https://data.delijn.be/stops/406586"], ["https://data.delijn.be/stops/402588", "https://data.delijn.be/stops/402589"], ["https://data.delijn.be/stops/107402", "https://data.delijn.be/stops/107403"], ["https://data.delijn.be/stops/403630", "https://data.delijn.be/stops/403640"], ["https://data.delijn.be/stops/201685", "https://data.delijn.be/stops/202790"], ["https://data.delijn.be/stops/302579", "https://data.delijn.be/stops/302580"], ["https://data.delijn.be/stops/504795", "https://data.delijn.be/stops/504797"], ["https://data.delijn.be/stops/200860", "https://data.delijn.be/stops/202290"], ["https://data.delijn.be/stops/200908", "https://data.delijn.be/stops/202250"], ["https://data.delijn.be/stops/501560", "https://data.delijn.be/stops/506085"], ["https://data.delijn.be/stops/407958", "https://data.delijn.be/stops/407959"], ["https://data.delijn.be/stops/102330", "https://data.delijn.be/stops/104575"], ["https://data.delijn.be/stops/501071", "https://data.delijn.be/stops/501179"], ["https://data.delijn.be/stops/105372", "https://data.delijn.be/stops/105374"], ["https://data.delijn.be/stops/400059", "https://data.delijn.be/stops/406730"], ["https://data.delijn.be/stops/404619", "https://data.delijn.be/stops/404625"], ["https://data.delijn.be/stops/205539", "https://data.delijn.be/stops/205546"], ["https://data.delijn.be/stops/200814", "https://data.delijn.be/stops/200879"], ["https://data.delijn.be/stops/208208", "https://data.delijn.be/stops/209782"], ["https://data.delijn.be/stops/503248", "https://data.delijn.be/stops/508241"], ["https://data.delijn.be/stops/503988", "https://data.delijn.be/stops/505408"], ["https://data.delijn.be/stops/306342", "https://data.delijn.be/stops/306343"], ["https://data.delijn.be/stops/406493", "https://data.delijn.be/stops/406497"], ["https://data.delijn.be/stops/404542", "https://data.delijn.be/stops/410396"], ["https://data.delijn.be/stops/105326", "https://data.delijn.be/stops/105341"], ["https://data.delijn.be/stops/503430", "https://data.delijn.be/stops/508430"], ["https://data.delijn.be/stops/410062", "https://data.delijn.be/stops/410217"], ["https://data.delijn.be/stops/402301", "https://data.delijn.be/stops/410335"], ["https://data.delijn.be/stops/504610", "https://data.delijn.be/stops/504613"], ["https://data.delijn.be/stops/305982", "https://data.delijn.be/stops/305984"], ["https://data.delijn.be/stops/206881", "https://data.delijn.be/stops/206882"], ["https://data.delijn.be/stops/501129", "https://data.delijn.be/stops/501130"], ["https://data.delijn.be/stops/304158", "https://data.delijn.be/stops/304159"], ["https://data.delijn.be/stops/108417", "https://data.delijn.be/stops/108418"], ["https://data.delijn.be/stops/200130", "https://data.delijn.be/stops/204556"], ["https://data.delijn.be/stops/503961", "https://data.delijn.be/stops/505116"], ["https://data.delijn.be/stops/201711", "https://data.delijn.be/stops/208651"], ["https://data.delijn.be/stops/408208", "https://data.delijn.be/stops/408214"], ["https://data.delijn.be/stops/301667", "https://data.delijn.be/stops/301668"], ["https://data.delijn.be/stops/302885", "https://data.delijn.be/stops/303106"], ["https://data.delijn.be/stops/104609", "https://data.delijn.be/stops/109800"], ["https://data.delijn.be/stops/405193", "https://data.delijn.be/stops/405284"], ["https://data.delijn.be/stops/104666", "https://data.delijn.be/stops/108421"], ["https://data.delijn.be/stops/502500", "https://data.delijn.be/stops/507502"], ["https://data.delijn.be/stops/304367", "https://data.delijn.be/stops/304368"], ["https://data.delijn.be/stops/200062", "https://data.delijn.be/stops/200096"], ["https://data.delijn.be/stops/502208", "https://data.delijn.be/stops/507211"], ["https://data.delijn.be/stops/204350", "https://data.delijn.be/stops/205107"], ["https://data.delijn.be/stops/303033", "https://data.delijn.be/stops/306319"], ["https://data.delijn.be/stops/201548", "https://data.delijn.be/stops/202002"], ["https://data.delijn.be/stops/304426", "https://data.delijn.be/stops/307420"], ["https://data.delijn.be/stops/204143", "https://data.delijn.be/stops/207638"], ["https://data.delijn.be/stops/205986", "https://data.delijn.be/stops/207004"], ["https://data.delijn.be/stops/407197", "https://data.delijn.be/stops/407373"], ["https://data.delijn.be/stops/104304", "https://data.delijn.be/stops/109748"], ["https://data.delijn.be/stops/305446", "https://data.delijn.be/stops/305447"], ["https://data.delijn.be/stops/301515", "https://data.delijn.be/stops/301517"], ["https://data.delijn.be/stops/208769", "https://data.delijn.be/stops/219009"], ["https://data.delijn.be/stops/300824", "https://data.delijn.be/stops/300825"], ["https://data.delijn.be/stops/206540", "https://data.delijn.be/stops/206860"], ["https://data.delijn.be/stops/300542", "https://data.delijn.be/stops/300560"], ["https://data.delijn.be/stops/200240", "https://data.delijn.be/stops/200277"], ["https://data.delijn.be/stops/403938", "https://data.delijn.be/stops/406007"], ["https://data.delijn.be/stops/504227", "https://data.delijn.be/stops/509227"], ["https://data.delijn.be/stops/209386", "https://data.delijn.be/stops/209420"], ["https://data.delijn.be/stops/204990", "https://data.delijn.be/stops/208779"], ["https://data.delijn.be/stops/208289", "https://data.delijn.be/stops/208295"], ["https://data.delijn.be/stops/103398", "https://data.delijn.be/stops/106829"], ["https://data.delijn.be/stops/401220", "https://data.delijn.be/stops/410124"], ["https://data.delijn.be/stops/406999", "https://data.delijn.be/stops/408626"], ["https://data.delijn.be/stops/303698", "https://data.delijn.be/stops/303699"], ["https://data.delijn.be/stops/202099", "https://data.delijn.be/stops/203099"], ["https://data.delijn.be/stops/102384", "https://data.delijn.be/stops/109136"], ["https://data.delijn.be/stops/302646", "https://data.delijn.be/stops/306771"], ["https://data.delijn.be/stops/105905", "https://data.delijn.be/stops/107625"], ["https://data.delijn.be/stops/201954", "https://data.delijn.be/stops/210053"], ["https://data.delijn.be/stops/206793", "https://data.delijn.be/stops/209051"], ["https://data.delijn.be/stops/204493", "https://data.delijn.be/stops/205485"], ["https://data.delijn.be/stops/305946", "https://data.delijn.be/stops/308708"], ["https://data.delijn.be/stops/400487", "https://data.delijn.be/stops/407686"], ["https://data.delijn.be/stops/501127", "https://data.delijn.be/stops/506127"], ["https://data.delijn.be/stops/408317", "https://data.delijn.be/stops/408352"], ["https://data.delijn.be/stops/504608", "https://data.delijn.be/stops/504615"], ["https://data.delijn.be/stops/405801", "https://data.delijn.be/stops/409429"], ["https://data.delijn.be/stops/504219", "https://data.delijn.be/stops/504691"], ["https://data.delijn.be/stops/203573", "https://data.delijn.be/stops/203574"], ["https://data.delijn.be/stops/504206", "https://data.delijn.be/stops/509206"], ["https://data.delijn.be/stops/405926", "https://data.delijn.be/stops/406030"], ["https://data.delijn.be/stops/404156", "https://data.delijn.be/stops/404181"], ["https://data.delijn.be/stops/201749", "https://data.delijn.be/stops/202621"], ["https://data.delijn.be/stops/102236", "https://data.delijn.be/stops/105869"], ["https://data.delijn.be/stops/208625", "https://data.delijn.be/stops/209625"], ["https://data.delijn.be/stops/503839", "https://data.delijn.be/stops/508536"], ["https://data.delijn.be/stops/406092", "https://data.delijn.be/stops/406126"], ["https://data.delijn.be/stops/103993", "https://data.delijn.be/stops/105321"], ["https://data.delijn.be/stops/202683", "https://data.delijn.be/stops/202727"], ["https://data.delijn.be/stops/504408", "https://data.delijn.be/stops/509425"], ["https://data.delijn.be/stops/503308", "https://data.delijn.be/stops/505946"], ["https://data.delijn.be/stops/202116", "https://data.delijn.be/stops/202169"], ["https://data.delijn.be/stops/206198", "https://data.delijn.be/stops/206206"], ["https://data.delijn.be/stops/504670", "https://data.delijn.be/stops/508529"], ["https://data.delijn.be/stops/301571", "https://data.delijn.be/stops/301577"], ["https://data.delijn.be/stops/505358", "https://data.delijn.be/stops/505722"], ["https://data.delijn.be/stops/104858", "https://data.delijn.be/stops/107814"], ["https://data.delijn.be/stops/204174", "https://data.delijn.be/stops/204391"], ["https://data.delijn.be/stops/401030", "https://data.delijn.be/stops/401089"], ["https://data.delijn.be/stops/101481", "https://data.delijn.be/stops/108216"], ["https://data.delijn.be/stops/408073", "https://data.delijn.be/stops/410399"], ["https://data.delijn.be/stops/504199", "https://data.delijn.be/stops/509720"], ["https://data.delijn.be/stops/200748", "https://data.delijn.be/stops/201748"], ["https://data.delijn.be/stops/507620", "https://data.delijn.be/stops/508093"], ["https://data.delijn.be/stops/404972", "https://data.delijn.be/stops/410294"], ["https://data.delijn.be/stops/300660", "https://data.delijn.be/stops/302471"], ["https://data.delijn.be/stops/105206", "https://data.delijn.be/stops/108061"], ["https://data.delijn.be/stops/405215", "https://data.delijn.be/stops/405280"], ["https://data.delijn.be/stops/403263", "https://data.delijn.be/stops/403861"], ["https://data.delijn.be/stops/401049", "https://data.delijn.be/stops/401118"], ["https://data.delijn.be/stops/405264", "https://data.delijn.be/stops/407725"], ["https://data.delijn.be/stops/405897", "https://data.delijn.be/stops/406827"], ["https://data.delijn.be/stops/109561", "https://data.delijn.be/stops/109708"], ["https://data.delijn.be/stops/302651", "https://data.delijn.be/stops/308120"], ["https://data.delijn.be/stops/202248", "https://data.delijn.be/stops/203247"], ["https://data.delijn.be/stops/101285", "https://data.delijn.be/stops/101515"], ["https://data.delijn.be/stops/300039", "https://data.delijn.be/stops/300040"], ["https://data.delijn.be/stops/202384", "https://data.delijn.be/stops/203384"], ["https://data.delijn.be/stops/303304", "https://data.delijn.be/stops/305724"], ["https://data.delijn.be/stops/209225", "https://data.delijn.be/stops/219018"], ["https://data.delijn.be/stops/300651", "https://data.delijn.be/stops/305814"], ["https://data.delijn.be/stops/502569", "https://data.delijn.be/stops/507569"], ["https://data.delijn.be/stops/305767", "https://data.delijn.be/stops/305768"], ["https://data.delijn.be/stops/407614", "https://data.delijn.be/stops/410091"], ["https://data.delijn.be/stops/503235", "https://data.delijn.be/stops/508365"], ["https://data.delijn.be/stops/503261", "https://data.delijn.be/stops/508255"], ["https://data.delijn.be/stops/105349", "https://data.delijn.be/stops/105352"], ["https://data.delijn.be/stops/305176", "https://data.delijn.be/stops/308050"], ["https://data.delijn.be/stops/502094", "https://data.delijn.be/stops/502129"], ["https://data.delijn.be/stops/202118", "https://data.delijn.be/stops/204582"], ["https://data.delijn.be/stops/503080", "https://data.delijn.be/stops/503217"], ["https://data.delijn.be/stops/503487", "https://data.delijn.be/stops/503490"], ["https://data.delijn.be/stops/505304", "https://data.delijn.be/stops/509465"], ["https://data.delijn.be/stops/101008", "https://data.delijn.be/stops/104540"], ["https://data.delijn.be/stops/503509", "https://data.delijn.be/stops/509824"], ["https://data.delijn.be/stops/306923", "https://data.delijn.be/stops/307277"], ["https://data.delijn.be/stops/300708", "https://data.delijn.be/stops/303426"], ["https://data.delijn.be/stops/300456", "https://data.delijn.be/stops/304979"], ["https://data.delijn.be/stops/304268", "https://data.delijn.be/stops/304282"], ["https://data.delijn.be/stops/104495", "https://data.delijn.be/stops/104497"], ["https://data.delijn.be/stops/300316", "https://data.delijn.be/stops/303948"], ["https://data.delijn.be/stops/406177", "https://data.delijn.be/stops/410224"], ["https://data.delijn.be/stops/409355", "https://data.delijn.be/stops/409403"], ["https://data.delijn.be/stops/101182", "https://data.delijn.be/stops/107813"], ["https://data.delijn.be/stops/504029", "https://data.delijn.be/stops/509102"], ["https://data.delijn.be/stops/403054", "https://data.delijn.be/stops/403464"], ["https://data.delijn.be/stops/200726", "https://data.delijn.be/stops/202616"], ["https://data.delijn.be/stops/304130", "https://data.delijn.be/stops/306395"], ["https://data.delijn.be/stops/108420", "https://data.delijn.be/stops/108920"], ["https://data.delijn.be/stops/208122", "https://data.delijn.be/stops/218004"], ["https://data.delijn.be/stops/200397", "https://data.delijn.be/stops/208702"], ["https://data.delijn.be/stops/204775", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/205306", "https://data.delijn.be/stops/214008"], ["https://data.delijn.be/stops/305427", "https://data.delijn.be/stops/305429"], ["https://data.delijn.be/stops/505268", "https://data.delijn.be/stops/508052"], ["https://data.delijn.be/stops/102383", "https://data.delijn.be/stops/102933"], ["https://data.delijn.be/stops/103963", "https://data.delijn.be/stops/108995"], ["https://data.delijn.be/stops/303429", "https://data.delijn.be/stops/307951"], ["https://data.delijn.be/stops/502946", "https://data.delijn.be/stops/505666"], ["https://data.delijn.be/stops/301568", "https://data.delijn.be/stops/308926"], ["https://data.delijn.be/stops/308501", "https://data.delijn.be/stops/308502"], ["https://data.delijn.be/stops/401574", "https://data.delijn.be/stops/402104"], ["https://data.delijn.be/stops/403321", "https://data.delijn.be/stops/410350"], ["https://data.delijn.be/stops/306897", "https://data.delijn.be/stops/306901"], ["https://data.delijn.be/stops/208662", "https://data.delijn.be/stops/209663"], ["https://data.delijn.be/stops/102247", "https://data.delijn.be/stops/105861"], ["https://data.delijn.be/stops/101880", "https://data.delijn.be/stops/103119"], ["https://data.delijn.be/stops/200272", "https://data.delijn.be/stops/201345"], ["https://data.delijn.be/stops/101938", "https://data.delijn.be/stops/101977"], ["https://data.delijn.be/stops/204375", "https://data.delijn.be/stops/204376"], ["https://data.delijn.be/stops/301970", "https://data.delijn.be/stops/301982"], ["https://data.delijn.be/stops/503856", "https://data.delijn.be/stops/505218"], ["https://data.delijn.be/stops/303117", "https://data.delijn.be/stops/303119"], ["https://data.delijn.be/stops/403374", "https://data.delijn.be/stops/404122"], ["https://data.delijn.be/stops/404062", "https://data.delijn.be/stops/408964"], ["https://data.delijn.be/stops/205028", "https://data.delijn.be/stops/205818"], ["https://data.delijn.be/stops/307835", "https://data.delijn.be/stops/307837"], ["https://data.delijn.be/stops/203292", "https://data.delijn.be/stops/203294"], ["https://data.delijn.be/stops/504385", "https://data.delijn.be/stops/509381"], ["https://data.delijn.be/stops/104680", "https://data.delijn.be/stops/108030"], ["https://data.delijn.be/stops/201204", "https://data.delijn.be/stops/202555"], ["https://data.delijn.be/stops/408446", "https://data.delijn.be/stops/408447"], ["https://data.delijn.be/stops/503467", "https://data.delijn.be/stops/508197"], ["https://data.delijn.be/stops/405205", "https://data.delijn.be/stops/408369"], ["https://data.delijn.be/stops/101787", "https://data.delijn.be/stops/109229"], ["https://data.delijn.be/stops/107227", "https://data.delijn.be/stops/107229"], ["https://data.delijn.be/stops/201246", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/204485", "https://data.delijn.be/stops/205822"], ["https://data.delijn.be/stops/302947", "https://data.delijn.be/stops/308656"], ["https://data.delijn.be/stops/204249", "https://data.delijn.be/stops/204260"], ["https://data.delijn.be/stops/304339", "https://data.delijn.be/stops/305220"], ["https://data.delijn.be/stops/403322", "https://data.delijn.be/stops/407595"], ["https://data.delijn.be/stops/409114", "https://data.delijn.be/stops/409123"], ["https://data.delijn.be/stops/302491", "https://data.delijn.be/stops/302492"], ["https://data.delijn.be/stops/300843", "https://data.delijn.be/stops/306719"], ["https://data.delijn.be/stops/202812", "https://data.delijn.be/stops/203744"], ["https://data.delijn.be/stops/305846", "https://data.delijn.be/stops/306394"], ["https://data.delijn.be/stops/304723", "https://data.delijn.be/stops/304729"], ["https://data.delijn.be/stops/209112", "https://data.delijn.be/stops/209788"], ["https://data.delijn.be/stops/104362", "https://data.delijn.be/stops/105210"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/202622"], ["https://data.delijn.be/stops/403438", "https://data.delijn.be/stops/404849"], ["https://data.delijn.be/stops/402320", "https://data.delijn.be/stops/402376"], ["https://data.delijn.be/stops/503081", "https://data.delijn.be/stops/505297"], ["https://data.delijn.be/stops/102232", "https://data.delijn.be/stops/102233"], ["https://data.delijn.be/stops/308148", "https://data.delijn.be/stops/308164"], ["https://data.delijn.be/stops/402961", "https://data.delijn.be/stops/407043"], ["https://data.delijn.be/stops/210405", "https://data.delijn.be/stops/211405"], ["https://data.delijn.be/stops/301679", "https://data.delijn.be/stops/302397"], ["https://data.delijn.be/stops/508633", "https://data.delijn.be/stops/590009"], ["https://data.delijn.be/stops/106514", "https://data.delijn.be/stops/106519"], ["https://data.delijn.be/stops/504100", "https://data.delijn.be/stops/504256"], ["https://data.delijn.be/stops/103498", "https://data.delijn.be/stops/103503"], ["https://data.delijn.be/stops/501527", "https://data.delijn.be/stops/506199"], ["https://data.delijn.be/stops/504362", "https://data.delijn.be/stops/508560"], ["https://data.delijn.be/stops/400885", "https://data.delijn.be/stops/409657"], ["https://data.delijn.be/stops/202909", "https://data.delijn.be/stops/203909"], ["https://data.delijn.be/stops/503253", "https://data.delijn.be/stops/503264"], ["https://data.delijn.be/stops/501050", "https://data.delijn.be/stops/506047"], ["https://data.delijn.be/stops/406659", "https://data.delijn.be/stops/406693"], ["https://data.delijn.be/stops/109915", "https://data.delijn.be/stops/109918"], ["https://data.delijn.be/stops/402829", "https://data.delijn.be/stops/402896"], ["https://data.delijn.be/stops/208521", "https://data.delijn.be/stops/209153"], ["https://data.delijn.be/stops/410273", "https://data.delijn.be/stops/410277"], ["https://data.delijn.be/stops/103165", "https://data.delijn.be/stops/103170"], ["https://data.delijn.be/stops/202474", "https://data.delijn.be/stops/203474"], ["https://data.delijn.be/stops/208346", "https://data.delijn.be/stops/209346"], ["https://data.delijn.be/stops/304803", "https://data.delijn.be/stops/304806"], ["https://data.delijn.be/stops/502753", "https://data.delijn.be/stops/507753"], ["https://data.delijn.be/stops/103985", "https://data.delijn.be/stops/105680"], ["https://data.delijn.be/stops/101471", "https://data.delijn.be/stops/109114"], ["https://data.delijn.be/stops/402945", "https://data.delijn.be/stops/306391"], ["https://data.delijn.be/stops/305668", "https://data.delijn.be/stops/305732"], ["https://data.delijn.be/stops/107115", "https://data.delijn.be/stops/108290"], ["https://data.delijn.be/stops/200631", "https://data.delijn.be/stops/201630"], ["https://data.delijn.be/stops/200174", "https://data.delijn.be/stops/200277"], ["https://data.delijn.be/stops/503817", "https://data.delijn.be/stops/508819"], ["https://data.delijn.be/stops/304968", "https://data.delijn.be/stops/304969"], ["https://data.delijn.be/stops/407827", "https://data.delijn.be/stops/408014"], ["https://data.delijn.be/stops/404979", "https://data.delijn.be/stops/410217"], ["https://data.delijn.be/stops/407600", "https://data.delijn.be/stops/407609"], ["https://data.delijn.be/stops/401010", "https://data.delijn.be/stops/406712"], ["https://data.delijn.be/stops/307809", "https://data.delijn.be/stops/307810"], ["https://data.delijn.be/stops/206348", "https://data.delijn.be/stops/206374"], ["https://data.delijn.be/stops/303791", "https://data.delijn.be/stops/303808"], ["https://data.delijn.be/stops/207197", "https://data.delijn.be/stops/207198"], ["https://data.delijn.be/stops/407198", "https://data.delijn.be/stops/407381"], ["https://data.delijn.be/stops/203865", "https://data.delijn.be/stops/203886"], ["https://data.delijn.be/stops/500025", "https://data.delijn.be/stops/507478"], ["https://data.delijn.be/stops/104943", "https://data.delijn.be/stops/107063"], ["https://data.delijn.be/stops/400656", "https://data.delijn.be/stops/400970"], ["https://data.delijn.be/stops/406121", "https://data.delijn.be/stops/406122"], ["https://data.delijn.be/stops/400892", "https://data.delijn.be/stops/409539"], ["https://data.delijn.be/stops/300489", "https://data.delijn.be/stops/302867"], ["https://data.delijn.be/stops/404401", "https://data.delijn.be/stops/404426"], ["https://data.delijn.be/stops/503800", "https://data.delijn.be/stops/505394"], ["https://data.delijn.be/stops/300026", "https://data.delijn.be/stops/300049"], ["https://data.delijn.be/stops/202518", "https://data.delijn.be/stops/203518"], ["https://data.delijn.be/stops/403142", "https://data.delijn.be/stops/403143"], ["https://data.delijn.be/stops/504213", "https://data.delijn.be/stops/504220"], ["https://data.delijn.be/stops/300021", "https://data.delijn.be/stops/307001"], ["https://data.delijn.be/stops/201665", "https://data.delijn.be/stops/202216"], ["https://data.delijn.be/stops/208591", "https://data.delijn.be/stops/307024"], ["https://data.delijn.be/stops/201705", "https://data.delijn.be/stops/201706"], ["https://data.delijn.be/stops/200882", "https://data.delijn.be/stops/202060"], ["https://data.delijn.be/stops/300822", "https://data.delijn.be/stops/305396"], ["https://data.delijn.be/stops/301984", "https://data.delijn.be/stops/308760"], ["https://data.delijn.be/stops/505348", "https://data.delijn.be/stops/507426"], ["https://data.delijn.be/stops/400843", "https://data.delijn.be/stops/409562"], ["https://data.delijn.be/stops/303738", "https://data.delijn.be/stops/303739"], ["https://data.delijn.be/stops/503366", "https://data.delijn.be/stops/510019"], ["https://data.delijn.be/stops/103158", "https://data.delijn.be/stops/103159"], ["https://data.delijn.be/stops/102212", "https://data.delijn.be/stops/102228"], ["https://data.delijn.be/stops/503793", "https://data.delijn.be/stops/508793"], ["https://data.delijn.be/stops/400806", "https://data.delijn.be/stops/400854"], ["https://data.delijn.be/stops/205251", "https://data.delijn.be/stops/205252"], ["https://data.delijn.be/stops/504971", "https://data.delijn.be/stops/509971"], ["https://data.delijn.be/stops/503206", "https://data.delijn.be/stops/508814"], ["https://data.delijn.be/stops/102197", "https://data.delijn.be/stops/105262"], ["https://data.delijn.be/stops/301092", "https://data.delijn.be/stops/306663"], ["https://data.delijn.be/stops/106108", "https://data.delijn.be/stops/106170"], ["https://data.delijn.be/stops/208220", "https://data.delijn.be/stops/209219"], ["https://data.delijn.be/stops/404601", "https://data.delijn.be/stops/406944"], ["https://data.delijn.be/stops/408718", "https://data.delijn.be/stops/408908"], ["https://data.delijn.be/stops/109129", "https://data.delijn.be/stops/109132"], ["https://data.delijn.be/stops/402626", "https://data.delijn.be/stops/402637"], ["https://data.delijn.be/stops/207874", "https://data.delijn.be/stops/207904"], ["https://data.delijn.be/stops/306872", "https://data.delijn.be/stops/306873"], ["https://data.delijn.be/stops/306698", "https://data.delijn.be/stops/307936"], ["https://data.delijn.be/stops/302189", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/505076", "https://data.delijn.be/stops/505739"], ["https://data.delijn.be/stops/101756", "https://data.delijn.be/stops/102272"], ["https://data.delijn.be/stops/106660", "https://data.delijn.be/stops/106661"], ["https://data.delijn.be/stops/107131", "https://data.delijn.be/stops/107134"], ["https://data.delijn.be/stops/307650", "https://data.delijn.be/stops/307651"], ["https://data.delijn.be/stops/101018", "https://data.delijn.be/stops/101019"], ["https://data.delijn.be/stops/300653", "https://data.delijn.be/stops/300657"], ["https://data.delijn.be/stops/305860", "https://data.delijn.be/stops/305872"], ["https://data.delijn.be/stops/406318", "https://data.delijn.be/stops/406374"], ["https://data.delijn.be/stops/101800", "https://data.delijn.be/stops/101801"], ["https://data.delijn.be/stops/403258", "https://data.delijn.be/stops/403261"], ["https://data.delijn.be/stops/102831", "https://data.delijn.be/stops/102832"], ["https://data.delijn.be/stops/407594", "https://data.delijn.be/stops/407676"], ["https://data.delijn.be/stops/106312", "https://data.delijn.be/stops/106313"], ["https://data.delijn.be/stops/400910", "https://data.delijn.be/stops/400962"], ["https://data.delijn.be/stops/208479", "https://data.delijn.be/stops/208480"], ["https://data.delijn.be/stops/200150", "https://data.delijn.be/stops/201150"], ["https://data.delijn.be/stops/101664", "https://data.delijn.be/stops/101666"], ["https://data.delijn.be/stops/201334", "https://data.delijn.be/stops/201527"], ["https://data.delijn.be/stops/502710", "https://data.delijn.be/stops/507318"], ["https://data.delijn.be/stops/502152", "https://data.delijn.be/stops/502818"], ["https://data.delijn.be/stops/201875", "https://data.delijn.be/stops/211854"], ["https://data.delijn.be/stops/402044", "https://data.delijn.be/stops/410078"], ["https://data.delijn.be/stops/206124", "https://data.delijn.be/stops/206133"], ["https://data.delijn.be/stops/201768", "https://data.delijn.be/stops/201805"], ["https://data.delijn.be/stops/401311", "https://data.delijn.be/stops/401319"], ["https://data.delijn.be/stops/504013", "https://data.delijn.be/stops/509013"], ["https://data.delijn.be/stops/304570", "https://data.delijn.be/stops/304590"], ["https://data.delijn.be/stops/203027", "https://data.delijn.be/stops/203028"], ["https://data.delijn.be/stops/503198", "https://data.delijn.be/stops/503984"], ["https://data.delijn.be/stops/404666", "https://data.delijn.be/stops/404675"], ["https://data.delijn.be/stops/102668", "https://data.delijn.be/stops/300112"], ["https://data.delijn.be/stops/406431", "https://data.delijn.be/stops/409407"], ["https://data.delijn.be/stops/204105", "https://data.delijn.be/stops/204350"], ["https://data.delijn.be/stops/403072", "https://data.delijn.be/stops/403162"], ["https://data.delijn.be/stops/407689", "https://data.delijn.be/stops/409780"], ["https://data.delijn.be/stops/400583", "https://data.delijn.be/stops/400590"], ["https://data.delijn.be/stops/200524", "https://data.delijn.be/stops/201525"], ["https://data.delijn.be/stops/306650", "https://data.delijn.be/stops/306652"], ["https://data.delijn.be/stops/301898", "https://data.delijn.be/stops/306955"], ["https://data.delijn.be/stops/207703", "https://data.delijn.be/stops/207899"], ["https://data.delijn.be/stops/307341", "https://data.delijn.be/stops/308453"], ["https://data.delijn.be/stops/502598", "https://data.delijn.be/stops/507597"], ["https://data.delijn.be/stops/202118", "https://data.delijn.be/stops/205172"], ["https://data.delijn.be/stops/108815", "https://data.delijn.be/stops/108965"], ["https://data.delijn.be/stops/200924", "https://data.delijn.be/stops/203704"], ["https://data.delijn.be/stops/201415", "https://data.delijn.be/stops/208889"], ["https://data.delijn.be/stops/101835", "https://data.delijn.be/stops/101990"], ["https://data.delijn.be/stops/103203", "https://data.delijn.be/stops/106661"], ["https://data.delijn.be/stops/105891", "https://data.delijn.be/stops/105903"], ["https://data.delijn.be/stops/202448", "https://data.delijn.be/stops/203342"], ["https://data.delijn.be/stops/300578", "https://data.delijn.be/stops/300582"], ["https://data.delijn.be/stops/200413", "https://data.delijn.be/stops/201410"], ["https://data.delijn.be/stops/107056", "https://data.delijn.be/stops/108219"], ["https://data.delijn.be/stops/405238", "https://data.delijn.be/stops/405239"], ["https://data.delijn.be/stops/507140", "https://data.delijn.be/stops/507643"], ["https://data.delijn.be/stops/206018", "https://data.delijn.be/stops/206912"], ["https://data.delijn.be/stops/307982", "https://data.delijn.be/stops/307984"], ["https://data.delijn.be/stops/301272", "https://data.delijn.be/stops/307033"], ["https://data.delijn.be/stops/102509", "https://data.delijn.be/stops/102512"], ["https://data.delijn.be/stops/501695", "https://data.delijn.be/stops/505688"], ["https://data.delijn.be/stops/406770", "https://data.delijn.be/stops/406842"], ["https://data.delijn.be/stops/300750", "https://data.delijn.be/stops/300790"], ["https://data.delijn.be/stops/202628", "https://data.delijn.be/stops/203643"], ["https://data.delijn.be/stops/209286", "https://data.delijn.be/stops/209287"], ["https://data.delijn.be/stops/508312", "https://data.delijn.be/stops/509312"], ["https://data.delijn.be/stops/103023", "https://data.delijn.be/stops/109677"], ["https://data.delijn.be/stops/300418", "https://data.delijn.be/stops/300420"], ["https://data.delijn.be/stops/304409", "https://data.delijn.be/stops/306858"], ["https://data.delijn.be/stops/204225", "https://data.delijn.be/stops/205225"], ["https://data.delijn.be/stops/300016", "https://data.delijn.be/stops/302871"], ["https://data.delijn.be/stops/107110", "https://data.delijn.be/stops/107585"], ["https://data.delijn.be/stops/404649", "https://data.delijn.be/stops/409562"], ["https://data.delijn.be/stops/108189", "https://data.delijn.be/stops/108191"], ["https://data.delijn.be/stops/503099", "https://data.delijn.be/stops/508099"], ["https://data.delijn.be/stops/203929", "https://data.delijn.be/stops/210097"], ["https://data.delijn.be/stops/404364", "https://data.delijn.be/stops/404365"], ["https://data.delijn.be/stops/104260", "https://data.delijn.be/stops/108085"], ["https://data.delijn.be/stops/402816", "https://data.delijn.be/stops/404620"], ["https://data.delijn.be/stops/407704", "https://data.delijn.be/stops/409632"], ["https://data.delijn.be/stops/504027", "https://data.delijn.be/stops/504706"], ["https://data.delijn.be/stops/301959", "https://data.delijn.be/stops/301960"], ["https://data.delijn.be/stops/102730", "https://data.delijn.be/stops/305766"], ["https://data.delijn.be/stops/409722", "https://data.delijn.be/stops/409725"], ["https://data.delijn.be/stops/502527", "https://data.delijn.be/stops/507808"], ["https://data.delijn.be/stops/308810", "https://data.delijn.be/stops/308811"], ["https://data.delijn.be/stops/301923", "https://data.delijn.be/stops/301924"], ["https://data.delijn.be/stops/303379", "https://data.delijn.be/stops/303396"], ["https://data.delijn.be/stops/502543", "https://data.delijn.be/stops/502667"], ["https://data.delijn.be/stops/503212", "https://data.delijn.be/stops/503354"], ["https://data.delijn.be/stops/400586", "https://data.delijn.be/stops/400616"], ["https://data.delijn.be/stops/302404", "https://data.delijn.be/stops/302407"], ["https://data.delijn.be/stops/504142", "https://data.delijn.be/stops/505709"], ["https://data.delijn.be/stops/505811", "https://data.delijn.be/stops/505812"], ["https://data.delijn.be/stops/303512", "https://data.delijn.be/stops/307891"], ["https://data.delijn.be/stops/105084", "https://data.delijn.be/stops/204608"], ["https://data.delijn.be/stops/301402", "https://data.delijn.be/stops/304698"], ["https://data.delijn.be/stops/401882", "https://data.delijn.be/stops/410305"], ["https://data.delijn.be/stops/501019", "https://data.delijn.be/stops/501606"], ["https://data.delijn.be/stops/106629", "https://data.delijn.be/stops/106675"], ["https://data.delijn.be/stops/307828", "https://data.delijn.be/stops/307829"], ["https://data.delijn.be/stops/202273", "https://data.delijn.be/stops/202274"], ["https://data.delijn.be/stops/308468", "https://data.delijn.be/stops/308689"], ["https://data.delijn.be/stops/307965", "https://data.delijn.be/stops/307975"], ["https://data.delijn.be/stops/402700", "https://data.delijn.be/stops/402946"], ["https://data.delijn.be/stops/400887", "https://data.delijn.be/stops/409614"], ["https://data.delijn.be/stops/506213", "https://data.delijn.be/stops/506214"], ["https://data.delijn.be/stops/201699", "https://data.delijn.be/stops/203771"], ["https://data.delijn.be/stops/109882", "https://data.delijn.be/stops/204020"], ["https://data.delijn.be/stops/103541", "https://data.delijn.be/stops/106723"], ["https://data.delijn.be/stops/102042", "https://data.delijn.be/stops/107829"], ["https://data.delijn.be/stops/302662", "https://data.delijn.be/stops/302694"], ["https://data.delijn.be/stops/303850", "https://data.delijn.be/stops/303863"], ["https://data.delijn.be/stops/409356", "https://data.delijn.be/stops/409370"], ["https://data.delijn.be/stops/204595", "https://data.delijn.be/stops/205094"], ["https://data.delijn.be/stops/505523", "https://data.delijn.be/stops/505623"], ["https://data.delijn.be/stops/206739", "https://data.delijn.be/stops/307768"], ["https://data.delijn.be/stops/103068", "https://data.delijn.be/stops/105762"], ["https://data.delijn.be/stops/302168", "https://data.delijn.be/stops/304163"], ["https://data.delijn.be/stops/307414", "https://data.delijn.be/stops/308827"], ["https://data.delijn.be/stops/109445", "https://data.delijn.be/stops/109447"], ["https://data.delijn.be/stops/407602", "https://data.delijn.be/stops/407699"], ["https://data.delijn.be/stops/201929", "https://data.delijn.be/stops/202439"], ["https://data.delijn.be/stops/403412", "https://data.delijn.be/stops/408073"], ["https://data.delijn.be/stops/105268", "https://data.delijn.be/stops/105272"], ["https://data.delijn.be/stops/207686", "https://data.delijn.be/stops/207899"], ["https://data.delijn.be/stops/106623", "https://data.delijn.be/stops/106625"], ["https://data.delijn.be/stops/502314", "https://data.delijn.be/stops/505673"], ["https://data.delijn.be/stops/302864", "https://data.delijn.be/stops/302926"], ["https://data.delijn.be/stops/207287", "https://data.delijn.be/stops/207877"], ["https://data.delijn.be/stops/503346", "https://data.delijn.be/stops/507818"], ["https://data.delijn.be/stops/300854", "https://data.delijn.be/stops/300855"], ["https://data.delijn.be/stops/501366", "https://data.delijn.be/stops/506129"], ["https://data.delijn.be/stops/300825", "https://data.delijn.be/stops/304127"], ["https://data.delijn.be/stops/502815", "https://data.delijn.be/stops/507281"], ["https://data.delijn.be/stops/403218", "https://data.delijn.be/stops/403377"], ["https://data.delijn.be/stops/407852", "https://data.delijn.be/stops/407853"], ["https://data.delijn.be/stops/102241", "https://data.delijn.be/stops/105879"], ["https://data.delijn.be/stops/303207", "https://data.delijn.be/stops/303214"], ["https://data.delijn.be/stops/509599", "https://data.delijn.be/stops/509601"], ["https://data.delijn.be/stops/101481", "https://data.delijn.be/stops/109286"], ["https://data.delijn.be/stops/109914", "https://data.delijn.be/stops/301151"], ["https://data.delijn.be/stops/501056", "https://data.delijn.be/stops/506010"], ["https://data.delijn.be/stops/208381", "https://data.delijn.be/stops/209380"], ["https://data.delijn.be/stops/300320", "https://data.delijn.be/stops/308108"], ["https://data.delijn.be/stops/304367", "https://data.delijn.be/stops/307097"], ["https://data.delijn.be/stops/108673", "https://data.delijn.be/stops/109894"], ["https://data.delijn.be/stops/403434", "https://data.delijn.be/stops/403498"], ["https://data.delijn.be/stops/302314", "https://data.delijn.be/stops/302315"], ["https://data.delijn.be/stops/106925", "https://data.delijn.be/stops/106943"], ["https://data.delijn.be/stops/403921", "https://data.delijn.be/stops/403997"], ["https://data.delijn.be/stops/505172", "https://data.delijn.be/stops/507733"], ["https://data.delijn.be/stops/302603", "https://data.delijn.be/stops/306404"], ["https://data.delijn.be/stops/201182", "https://data.delijn.be/stops/203213"], ["https://data.delijn.be/stops/201966", "https://data.delijn.be/stops/209047"], ["https://data.delijn.be/stops/206277", "https://data.delijn.be/stops/206533"], ["https://data.delijn.be/stops/402427", "https://data.delijn.be/stops/405562"], ["https://data.delijn.be/stops/302730", "https://data.delijn.be/stops/302738"], ["https://data.delijn.be/stops/200336", "https://data.delijn.be/stops/201282"], ["https://data.delijn.be/stops/302553", "https://data.delijn.be/stops/305980"], ["https://data.delijn.be/stops/107910", "https://data.delijn.be/stops/109751"], ["https://data.delijn.be/stops/408636", "https://data.delijn.be/stops/408752"], ["https://data.delijn.be/stops/405723", "https://data.delijn.be/stops/408348"], ["https://data.delijn.be/stops/107695", "https://data.delijn.be/stops/108485"], ["https://data.delijn.be/stops/306554", "https://data.delijn.be/stops/306559"], ["https://data.delijn.be/stops/207802", "https://data.delijn.be/stops/207925"], ["https://data.delijn.be/stops/102756", "https://data.delijn.be/stops/103308"], ["https://data.delijn.be/stops/503921", "https://data.delijn.be/stops/508921"], ["https://data.delijn.be/stops/301538", "https://data.delijn.be/stops/301549"], ["https://data.delijn.be/stops/304793", "https://data.delijn.be/stops/304800"], ["https://data.delijn.be/stops/303587", "https://data.delijn.be/stops/305330"], ["https://data.delijn.be/stops/402395", "https://data.delijn.be/stops/402453"], ["https://data.delijn.be/stops/301691", "https://data.delijn.be/stops/301693"], ["https://data.delijn.be/stops/207459", "https://data.delijn.be/stops/207462"], ["https://data.delijn.be/stops/206507", "https://data.delijn.be/stops/207507"], ["https://data.delijn.be/stops/301766", "https://data.delijn.be/stops/306878"], ["https://data.delijn.be/stops/508996", "https://data.delijn.be/stops/509025"], ["https://data.delijn.be/stops/401416", "https://data.delijn.be/stops/307852"], ["https://data.delijn.be/stops/302710", "https://data.delijn.be/stops/308598"], ["https://data.delijn.be/stops/304399", "https://data.delijn.be/stops/307420"], ["https://data.delijn.be/stops/202239", "https://data.delijn.be/stops/505514"], ["https://data.delijn.be/stops/501429", "https://data.delijn.be/stops/506433"], ["https://data.delijn.be/stops/202078", "https://data.delijn.be/stops/202655"], ["https://data.delijn.be/stops/408602", "https://data.delijn.be/stops/408603"], ["https://data.delijn.be/stops/403788", "https://data.delijn.be/stops/408960"], ["https://data.delijn.be/stops/504515", "https://data.delijn.be/stops/509720"], ["https://data.delijn.be/stops/401799", "https://data.delijn.be/stops/401811"], ["https://data.delijn.be/stops/207800", "https://data.delijn.be/stops/208565"], ["https://data.delijn.be/stops/201247", "https://data.delijn.be/stops/202757"], ["https://data.delijn.be/stops/504581", "https://data.delijn.be/stops/505535"], ["https://data.delijn.be/stops/202527", "https://data.delijn.be/stops/202528"], ["https://data.delijn.be/stops/403702", "https://data.delijn.be/stops/403784"], ["https://data.delijn.be/stops/403565", "https://data.delijn.be/stops/410285"], ["https://data.delijn.be/stops/209082", "https://data.delijn.be/stops/209083"], ["https://data.delijn.be/stops/404129", "https://data.delijn.be/stops/404131"], ["https://data.delijn.be/stops/502510", "https://data.delijn.be/stops/507510"], ["https://data.delijn.be/stops/107494", "https://data.delijn.be/stops/305794"], ["https://data.delijn.be/stops/206141", "https://data.delijn.be/stops/206722"], ["https://data.delijn.be/stops/101273", "https://data.delijn.be/stops/106025"], ["https://data.delijn.be/stops/403711", "https://data.delijn.be/stops/403787"], ["https://data.delijn.be/stops/403638", "https://data.delijn.be/stops/407790"], ["https://data.delijn.be/stops/305568", "https://data.delijn.be/stops/307184"], ["https://data.delijn.be/stops/403209", "https://data.delijn.be/stops/405126"], ["https://data.delijn.be/stops/302398", "https://data.delijn.be/stops/302401"], ["https://data.delijn.be/stops/101729", "https://data.delijn.be/stops/106048"], ["https://data.delijn.be/stops/403525", "https://data.delijn.be/stops/404580"], ["https://data.delijn.be/stops/305819", "https://data.delijn.be/stops/306588"], ["https://data.delijn.be/stops/400634", "https://data.delijn.be/stops/403036"], ["https://data.delijn.be/stops/501038", "https://data.delijn.be/stops/506023"], ["https://data.delijn.be/stops/502375", "https://data.delijn.be/stops/502376"], ["https://data.delijn.be/stops/508682", "https://data.delijn.be/stops/508688"], ["https://data.delijn.be/stops/102721", "https://data.delijn.be/stops/104700"], ["https://data.delijn.be/stops/200707", "https://data.delijn.be/stops/203435"], ["https://data.delijn.be/stops/501294", "https://data.delijn.be/stops/506294"], ["https://data.delijn.be/stops/502007", "https://data.delijn.be/stops/505749"], ["https://data.delijn.be/stops/400465", "https://data.delijn.be/stops/408824"], ["https://data.delijn.be/stops/504232", "https://data.delijn.be/stops/509235"], ["https://data.delijn.be/stops/405716", "https://data.delijn.be/stops/405745"], ["https://data.delijn.be/stops/400588", "https://data.delijn.be/stops/400626"], ["https://data.delijn.be/stops/209288", "https://data.delijn.be/stops/209289"], ["https://data.delijn.be/stops/402208", "https://data.delijn.be/stops/402501"], ["https://data.delijn.be/stops/107925", "https://data.delijn.be/stops/109725"], ["https://data.delijn.be/stops/302037", "https://data.delijn.be/stops/303183"], ["https://data.delijn.be/stops/405942", "https://data.delijn.be/stops/405943"], ["https://data.delijn.be/stops/401459", "https://data.delijn.be/stops/402281"], ["https://data.delijn.be/stops/401573", "https://data.delijn.be/stops/402372"], ["https://data.delijn.be/stops/103925", "https://data.delijn.be/stops/104655"], ["https://data.delijn.be/stops/108199", "https://data.delijn.be/stops/108233"], ["https://data.delijn.be/stops/202942", "https://data.delijn.be/stops/218023"], ["https://data.delijn.be/stops/409379", "https://data.delijn.be/stops/409391"], ["https://data.delijn.be/stops/201847", "https://data.delijn.be/stops/210022"], ["https://data.delijn.be/stops/501033", "https://data.delijn.be/stops/506488"], ["https://data.delijn.be/stops/305585", "https://data.delijn.be/stops/306765"], ["https://data.delijn.be/stops/203124", "https://data.delijn.be/stops/203601"], ["https://data.delijn.be/stops/502657", "https://data.delijn.be/stops/507658"], ["https://data.delijn.be/stops/205129", "https://data.delijn.be/stops/205575"], ["https://data.delijn.be/stops/406473", "https://data.delijn.be/stops/406477"], ["https://data.delijn.be/stops/200893", "https://data.delijn.be/stops/203791"], ["https://data.delijn.be/stops/404491", "https://data.delijn.be/stops/404539"], ["https://data.delijn.be/stops/505275", "https://data.delijn.be/stops/508229"], ["https://data.delijn.be/stops/407060", "https://data.delijn.be/stops/407061"], ["https://data.delijn.be/stops/300416", "https://data.delijn.be/stops/300425"], ["https://data.delijn.be/stops/200199", "https://data.delijn.be/stops/203479"], ["https://data.delijn.be/stops/204164", "https://data.delijn.be/stops/205590"], ["https://data.delijn.be/stops/502687", "https://data.delijn.be/stops/507687"], ["https://data.delijn.be/stops/400752", "https://data.delijn.be/stops/400753"], ["https://data.delijn.be/stops/300297", "https://data.delijn.be/stops/300317"], ["https://data.delijn.be/stops/305125", "https://data.delijn.be/stops/308093"], ["https://data.delijn.be/stops/503665", "https://data.delijn.be/stops/508662"], ["https://data.delijn.be/stops/302920", "https://data.delijn.be/stops/302921"], ["https://data.delijn.be/stops/101376", "https://data.delijn.be/stops/101400"], ["https://data.delijn.be/stops/203329", "https://data.delijn.be/stops/210112"], ["https://data.delijn.be/stops/204649", "https://data.delijn.be/stops/205649"], ["https://data.delijn.be/stops/303423", "https://data.delijn.be/stops/303433"], ["https://data.delijn.be/stops/502931", "https://data.delijn.be/stops/503728"], ["https://data.delijn.be/stops/502473", "https://data.delijn.be/stops/507473"], ["https://data.delijn.be/stops/306876", "https://data.delijn.be/stops/307424"], ["https://data.delijn.be/stops/305027", "https://data.delijn.be/stops/305031"], ["https://data.delijn.be/stops/201864", "https://data.delijn.be/stops/203033"], ["https://data.delijn.be/stops/503629", "https://data.delijn.be/stops/508625"], ["https://data.delijn.be/stops/403754", "https://data.delijn.be/stops/403762"], ["https://data.delijn.be/stops/400884", "https://data.delijn.be/stops/409657"], ["https://data.delijn.be/stops/108087", "https://data.delijn.be/stops/108687"], ["https://data.delijn.be/stops/406610", "https://data.delijn.be/stops/406611"], ["https://data.delijn.be/stops/301998", "https://data.delijn.be/stops/306198"], ["https://data.delijn.be/stops/106120", "https://data.delijn.be/stops/106122"], ["https://data.delijn.be/stops/408769", "https://data.delijn.be/stops/408772"], ["https://data.delijn.be/stops/404961", "https://data.delijn.be/stops/404963"], ["https://data.delijn.be/stops/401006", "https://data.delijn.be/stops/401007"], ["https://data.delijn.be/stops/503015", "https://data.delijn.be/stops/503016"], ["https://data.delijn.be/stops/108327", "https://data.delijn.be/stops/109304"], ["https://data.delijn.be/stops/502028", "https://data.delijn.be/stops/507051"], ["https://data.delijn.be/stops/305663", "https://data.delijn.be/stops/305670"], ["https://data.delijn.be/stops/201897", "https://data.delijn.be/stops/202147"], ["https://data.delijn.be/stops/104020", "https://data.delijn.be/stops/104805"], ["https://data.delijn.be/stops/206560", "https://data.delijn.be/stops/207540"], ["https://data.delijn.be/stops/205100", "https://data.delijn.be/stops/205713"], ["https://data.delijn.be/stops/106965", "https://data.delijn.be/stops/106976"], ["https://data.delijn.be/stops/405814", "https://data.delijn.be/stops/407292"], ["https://data.delijn.be/stops/305053", "https://data.delijn.be/stops/307873"], ["https://data.delijn.be/stops/200376", "https://data.delijn.be/stops/201343"], ["https://data.delijn.be/stops/106024", "https://data.delijn.be/stops/106026"], ["https://data.delijn.be/stops/406669", "https://data.delijn.be/stops/406670"], ["https://data.delijn.be/stops/403497", "https://data.delijn.be/stops/410028"], ["https://data.delijn.be/stops/302568", "https://data.delijn.be/stops/302771"], ["https://data.delijn.be/stops/201819", "https://data.delijn.be/stops/204987"], ["https://data.delijn.be/stops/504019", "https://data.delijn.be/stops/509019"], ["https://data.delijn.be/stops/503587", "https://data.delijn.be/stops/505292"], ["https://data.delijn.be/stops/102929", "https://data.delijn.be/stops/106237"], ["https://data.delijn.be/stops/102209", "https://data.delijn.be/stops/106243"], ["https://data.delijn.be/stops/202634", "https://data.delijn.be/stops/205067"], ["https://data.delijn.be/stops/300189", "https://data.delijn.be/stops/300632"], ["https://data.delijn.be/stops/200887", "https://data.delijn.be/stops/201115"], ["https://data.delijn.be/stops/200817", "https://data.delijn.be/stops/200872"], ["https://data.delijn.be/stops/304935", "https://data.delijn.be/stops/304943"], ["https://data.delijn.be/stops/204678", "https://data.delijn.be/stops/205678"], ["https://data.delijn.be/stops/403333", "https://data.delijn.be/stops/403347"], ["https://data.delijn.be/stops/402967", "https://data.delijn.be/stops/402970"], ["https://data.delijn.be/stops/106528", "https://data.delijn.be/stops/106530"], ["https://data.delijn.be/stops/202216", "https://data.delijn.be/stops/211116"], ["https://data.delijn.be/stops/204729", "https://data.delijn.be/stops/205729"], ["https://data.delijn.be/stops/102199", "https://data.delijn.be/stops/105798"], ["https://data.delijn.be/stops/107173", "https://data.delijn.be/stops/107732"], ["https://data.delijn.be/stops/501097", "https://data.delijn.be/stops/502214"], ["https://data.delijn.be/stops/105233", "https://data.delijn.be/stops/105237"], ["https://data.delijn.be/stops/501284", "https://data.delijn.be/stops/501320"], ["https://data.delijn.be/stops/304155", "https://data.delijn.be/stops/306208"], ["https://data.delijn.be/stops/206196", "https://data.delijn.be/stops/206854"], ["https://data.delijn.be/stops/105424", "https://data.delijn.be/stops/109843"], ["https://data.delijn.be/stops/206192", "https://data.delijn.be/stops/207193"], ["https://data.delijn.be/stops/502114", "https://data.delijn.be/stops/507109"], ["https://data.delijn.be/stops/304724", "https://data.delijn.be/stops/304733"], ["https://data.delijn.be/stops/502928", "https://data.delijn.be/stops/505144"], ["https://data.delijn.be/stops/300498", "https://data.delijn.be/stops/302076"], ["https://data.delijn.be/stops/501212", "https://data.delijn.be/stops/506212"], ["https://data.delijn.be/stops/401872", "https://data.delijn.be/stops/406337"], ["https://data.delijn.be/stops/403329", "https://data.delijn.be/stops/403347"], ["https://data.delijn.be/stops/305331", "https://data.delijn.be/stops/308710"], ["https://data.delijn.be/stops/402344", "https://data.delijn.be/stops/402465"], ["https://data.delijn.be/stops/203386", "https://data.delijn.be/stops/209947"], ["https://data.delijn.be/stops/107212", "https://data.delijn.be/stops/107214"], ["https://data.delijn.be/stops/208286", "https://data.delijn.be/stops/209286"], ["https://data.delijn.be/stops/503877", "https://data.delijn.be/stops/508265"], ["https://data.delijn.be/stops/201930", "https://data.delijn.be/stops/202441"], ["https://data.delijn.be/stops/501126", "https://data.delijn.be/stops/506126"], ["https://data.delijn.be/stops/407801", "https://data.delijn.be/stops/407809"], ["https://data.delijn.be/stops/301975", "https://data.delijn.be/stops/301978"], ["https://data.delijn.be/stops/408580", "https://data.delijn.be/stops/408596"], ["https://data.delijn.be/stops/107362", "https://data.delijn.be/stops/107364"], ["https://data.delijn.be/stops/302744", "https://data.delijn.be/stops/302747"], ["https://data.delijn.be/stops/103583", "https://data.delijn.be/stops/109411"], ["https://data.delijn.be/stops/102321", "https://data.delijn.be/stops/103762"], ["https://data.delijn.be/stops/204059", "https://data.delijn.be/stops/205724"], ["https://data.delijn.be/stops/202120", "https://data.delijn.be/stops/203120"], ["https://data.delijn.be/stops/203940", "https://data.delijn.be/stops/211052"], ["https://data.delijn.be/stops/105804", "https://data.delijn.be/stops/107414"], ["https://data.delijn.be/stops/502374", "https://data.delijn.be/stops/505052"], ["https://data.delijn.be/stops/402626", "https://data.delijn.be/stops/405580"], ["https://data.delijn.be/stops/209354", "https://data.delijn.be/stops/209355"], ["https://data.delijn.be/stops/108823", "https://data.delijn.be/stops/108824"], ["https://data.delijn.be/stops/105422", "https://data.delijn.be/stops/109978"], ["https://data.delijn.be/stops/106037", "https://data.delijn.be/stops/106057"], ["https://data.delijn.be/stops/102174", "https://data.delijn.be/stops/109361"], ["https://data.delijn.be/stops/103108", "https://data.delijn.be/stops/103112"], ["https://data.delijn.be/stops/103218", "https://data.delijn.be/stops/103219"], ["https://data.delijn.be/stops/408068", "https://data.delijn.be/stops/305696"], ["https://data.delijn.be/stops/109850", "https://data.delijn.be/stops/109853"], ["https://data.delijn.be/stops/502552", "https://data.delijn.be/stops/507552"], ["https://data.delijn.be/stops/407519", "https://data.delijn.be/stops/408274"], ["https://data.delijn.be/stops/504707", "https://data.delijn.be/stops/509258"], ["https://data.delijn.be/stops/302185", "https://data.delijn.be/stops/305081"], ["https://data.delijn.be/stops/304553", "https://data.delijn.be/stops/304828"], ["https://data.delijn.be/stops/302211", "https://data.delijn.be/stops/302233"], ["https://data.delijn.be/stops/503056", "https://data.delijn.be/stops/505254"], ["https://data.delijn.be/stops/104095", "https://data.delijn.be/stops/105165"], ["https://data.delijn.be/stops/501464", "https://data.delijn.be/stops/505561"], ["https://data.delijn.be/stops/200629", "https://data.delijn.be/stops/200640"], ["https://data.delijn.be/stops/101071", "https://data.delijn.be/stops/107187"], ["https://data.delijn.be/stops/402114", "https://data.delijn.be/stops/402116"], ["https://data.delijn.be/stops/108312", "https://data.delijn.be/stops/108313"], ["https://data.delijn.be/stops/203499", "https://data.delijn.be/stops/204100"], ["https://data.delijn.be/stops/200452", "https://data.delijn.be/stops/209738"], ["https://data.delijn.be/stops/302200", "https://data.delijn.be/stops/307109"], ["https://data.delijn.be/stops/201405", "https://data.delijn.be/stops/201697"], ["https://data.delijn.be/stops/401554", "https://data.delijn.be/stops/402034"], ["https://data.delijn.be/stops/106636", "https://data.delijn.be/stops/106657"], ["https://data.delijn.be/stops/407713", "https://data.delijn.be/stops/409775"], ["https://data.delijn.be/stops/208543", "https://data.delijn.be/stops/208546"], ["https://data.delijn.be/stops/305077", "https://data.delijn.be/stops/308928"], ["https://data.delijn.be/stops/502260", "https://data.delijn.be/stops/502266"], ["https://data.delijn.be/stops/304788", "https://data.delijn.be/stops/306689"], ["https://data.delijn.be/stops/104094", "https://data.delijn.be/stops/104102"], ["https://data.delijn.be/stops/406648", "https://data.delijn.be/stops/406655"], ["https://data.delijn.be/stops/202157", "https://data.delijn.be/stops/202160"], ["https://data.delijn.be/stops/108934", "https://data.delijn.be/stops/109219"], ["https://data.delijn.be/stops/209562", "https://data.delijn.be/stops/209596"], ["https://data.delijn.be/stops/202746", "https://data.delijn.be/stops/206938"], ["https://data.delijn.be/stops/206954", "https://data.delijn.be/stops/207923"], ["https://data.delijn.be/stops/501356", "https://data.delijn.be/stops/506356"], ["https://data.delijn.be/stops/301474", "https://data.delijn.be/stops/301488"], ["https://data.delijn.be/stops/502228", "https://data.delijn.be/stops/505142"], ["https://data.delijn.be/stops/300193", "https://data.delijn.be/stops/300194"], ["https://data.delijn.be/stops/300842", "https://data.delijn.be/stops/304624"], ["https://data.delijn.be/stops/202759", "https://data.delijn.be/stops/203763"], ["https://data.delijn.be/stops/202878", "https://data.delijn.be/stops/204975"], ["https://data.delijn.be/stops/400983", "https://data.delijn.be/stops/401177"], ["https://data.delijn.be/stops/306968", "https://data.delijn.be/stops/306969"], ["https://data.delijn.be/stops/501714", "https://data.delijn.be/stops/501716"], ["https://data.delijn.be/stops/300768", "https://data.delijn.be/stops/303224"], ["https://data.delijn.be/stops/400083", "https://data.delijn.be/stops/400085"], ["https://data.delijn.be/stops/107223", "https://data.delijn.be/stops/107227"], ["https://data.delijn.be/stops/107074", "https://data.delijn.be/stops/107075"], ["https://data.delijn.be/stops/302832", "https://data.delijn.be/stops/302833"], ["https://data.delijn.be/stops/106170", "https://data.delijn.be/stops/106173"], ["https://data.delijn.be/stops/102085", "https://data.delijn.be/stops/104494"], ["https://data.delijn.be/stops/304472", "https://data.delijn.be/stops/304485"], ["https://data.delijn.be/stops/308241", "https://data.delijn.be/stops/308248"], ["https://data.delijn.be/stops/409522", "https://data.delijn.be/stops/409523"], ["https://data.delijn.be/stops/505411", "https://data.delijn.be/stops/509500"], ["https://data.delijn.be/stops/505045", "https://data.delijn.be/stops/509840"], ["https://data.delijn.be/stops/207107", "https://data.delijn.be/stops/207143"], ["https://data.delijn.be/stops/206134", "https://data.delijn.be/stops/206135"], ["https://data.delijn.be/stops/300201", "https://data.delijn.be/stops/300202"], ["https://data.delijn.be/stops/104483", "https://data.delijn.be/stops/303561"], ["https://data.delijn.be/stops/106830", "https://data.delijn.be/stops/107408"], ["https://data.delijn.be/stops/208391", "https://data.delijn.be/stops/208744"], ["https://data.delijn.be/stops/305288", "https://data.delijn.be/stops/305289"], ["https://data.delijn.be/stops/307280", "https://data.delijn.be/stops/307281"], ["https://data.delijn.be/stops/102209", "https://data.delijn.be/stops/106119"], ["https://data.delijn.be/stops/508034", "https://data.delijn.be/stops/508037"], ["https://data.delijn.be/stops/502241", "https://data.delijn.be/stops/502654"], ["https://data.delijn.be/stops/204500", "https://data.delijn.be/stops/205545"], ["https://data.delijn.be/stops/205016", "https://data.delijn.be/stops/205103"], ["https://data.delijn.be/stops/106054", "https://data.delijn.be/stops/106057"], ["https://data.delijn.be/stops/505847", "https://data.delijn.be/stops/508086"], ["https://data.delijn.be/stops/505052", "https://data.delijn.be/stops/507279"], ["https://data.delijn.be/stops/208080", "https://data.delijn.be/stops/208081"], ["https://data.delijn.be/stops/202292", "https://data.delijn.be/stops/210291"], ["https://data.delijn.be/stops/205650", "https://data.delijn.be/stops/205651"], ["https://data.delijn.be/stops/402536", "https://data.delijn.be/stops/404092"], ["https://data.delijn.be/stops/203282", "https://data.delijn.be/stops/203634"], ["https://data.delijn.be/stops/404087", "https://data.delijn.be/stops/404089"], ["https://data.delijn.be/stops/300158", "https://data.delijn.be/stops/306695"], ["https://data.delijn.be/stops/407323", "https://data.delijn.be/stops/410175"], ["https://data.delijn.be/stops/301872", "https://data.delijn.be/stops/304327"], ["https://data.delijn.be/stops/405818", "https://data.delijn.be/stops/407292"], ["https://data.delijn.be/stops/106355", "https://data.delijn.be/stops/106356"], ["https://data.delijn.be/stops/102661", "https://data.delijn.be/stops/102662"], ["https://data.delijn.be/stops/504753", "https://data.delijn.be/stops/508265"], ["https://data.delijn.be/stops/208377", "https://data.delijn.be/stops/209332"], ["https://data.delijn.be/stops/201982", "https://data.delijn.be/stops/203912"], ["https://data.delijn.be/stops/401849", "https://data.delijn.be/stops/406746"], ["https://data.delijn.be/stops/300614", "https://data.delijn.be/stops/306799"], ["https://data.delijn.be/stops/405676", "https://data.delijn.be/stops/408215"], ["https://data.delijn.be/stops/300071", "https://data.delijn.be/stops/307348"], ["https://data.delijn.be/stops/200587", "https://data.delijn.be/stops/200996"], ["https://data.delijn.be/stops/407721", "https://data.delijn.be/stops/407763"], ["https://data.delijn.be/stops/501338", "https://data.delijn.be/stops/506742"], ["https://data.delijn.be/stops/502090", "https://data.delijn.be/stops/507644"], ["https://data.delijn.be/stops/503914", "https://data.delijn.be/stops/503930"], ["https://data.delijn.be/stops/407074", "https://data.delijn.be/stops/407075"], ["https://data.delijn.be/stops/206756", "https://data.delijn.be/stops/207620"], ["https://data.delijn.be/stops/206629", "https://data.delijn.be/stops/207628"], ["https://data.delijn.be/stops/106224", "https://data.delijn.be/stops/106334"], ["https://data.delijn.be/stops/401777", "https://data.delijn.be/stops/401789"], ["https://data.delijn.be/stops/408773", "https://data.delijn.be/stops/408774"], ["https://data.delijn.be/stops/407383", "https://data.delijn.be/stops/407799"], ["https://data.delijn.be/stops/104960", "https://data.delijn.be/stops/204273"], ["https://data.delijn.be/stops/501764", "https://data.delijn.be/stops/505090"], ["https://data.delijn.be/stops/508681", "https://data.delijn.be/stops/509454"], ["https://data.delijn.be/stops/504873", "https://data.delijn.be/stops/509937"], ["https://data.delijn.be/stops/401874", "https://data.delijn.be/stops/406337"], ["https://data.delijn.be/stops/405779", "https://data.delijn.be/stops/405806"], ["https://data.delijn.be/stops/108078", "https://data.delijn.be/stops/108081"], ["https://data.delijn.be/stops/206779", "https://data.delijn.be/stops/208561"], ["https://data.delijn.be/stops/204407", "https://data.delijn.be/stops/204408"], ["https://data.delijn.be/stops/300320", "https://data.delijn.be/stops/301197"], ["https://data.delijn.be/stops/203090", "https://data.delijn.be/stops/203091"], ["https://data.delijn.be/stops/305697", "https://data.delijn.be/stops/307926"], ["https://data.delijn.be/stops/501334", "https://data.delijn.be/stops/506308"], ["https://data.delijn.be/stops/102609", "https://data.delijn.be/stops/102669"], ["https://data.delijn.be/stops/208458", "https://data.delijn.be/stops/209675"], ["https://data.delijn.be/stops/204044", "https://data.delijn.be/stops/204517"], ["https://data.delijn.be/stops/208463", "https://data.delijn.be/stops/209462"], ["https://data.delijn.be/stops/304210", "https://data.delijn.be/stops/305349"], ["https://data.delijn.be/stops/102830", "https://data.delijn.be/stops/103860"], ["https://data.delijn.be/stops/102882", "https://data.delijn.be/stops/104771"], ["https://data.delijn.be/stops/208716", "https://data.delijn.be/stops/209240"], ["https://data.delijn.be/stops/504218", "https://data.delijn.be/stops/504221"], ["https://data.delijn.be/stops/102465", "https://data.delijn.be/stops/108005"], ["https://data.delijn.be/stops/107614", "https://data.delijn.be/stops/108954"], ["https://data.delijn.be/stops/203021", "https://data.delijn.be/stops/203022"], ["https://data.delijn.be/stops/300686", "https://data.delijn.be/stops/303504"], ["https://data.delijn.be/stops/301099", "https://data.delijn.be/stops/306159"], ["https://data.delijn.be/stops/403054", "https://data.delijn.be/stops/403387"], ["https://data.delijn.be/stops/201860", "https://data.delijn.be/stops/210036"], ["https://data.delijn.be/stops/508378", "https://data.delijn.be/stops/508523"], ["https://data.delijn.be/stops/204587", "https://data.delijn.be/stops/204594"], ["https://data.delijn.be/stops/302450", "https://data.delijn.be/stops/302451"], ["https://data.delijn.be/stops/502194", "https://data.delijn.be/stops/502196"], ["https://data.delijn.be/stops/200719", "https://data.delijn.be/stops/202621"], ["https://data.delijn.be/stops/505226", "https://data.delijn.be/stops/508860"], ["https://data.delijn.be/stops/300774", "https://data.delijn.be/stops/302400"], ["https://data.delijn.be/stops/400821", "https://data.delijn.be/stops/403058"], ["https://data.delijn.be/stops/404252", "https://data.delijn.be/stops/404253"], ["https://data.delijn.be/stops/204107", "https://data.delijn.be/stops/204109"], ["https://data.delijn.be/stops/103870", "https://data.delijn.be/stops/103880"], ["https://data.delijn.be/stops/503974", "https://data.delijn.be/stops/505384"], ["https://data.delijn.be/stops/103683", "https://data.delijn.be/stops/109139"], ["https://data.delijn.be/stops/501534", "https://data.delijn.be/stops/505781"], ["https://data.delijn.be/stops/506307", "https://data.delijn.be/stops/506734"], ["https://data.delijn.be/stops/101331", "https://data.delijn.be/stops/106676"], ["https://data.delijn.be/stops/403251", "https://data.delijn.be/stops/404180"], ["https://data.delijn.be/stops/203231", "https://data.delijn.be/stops/219505"], ["https://data.delijn.be/stops/109195", "https://data.delijn.be/stops/109198"], ["https://data.delijn.be/stops/307624", "https://data.delijn.be/stops/307625"], ["https://data.delijn.be/stops/102944", "https://data.delijn.be/stops/105549"], ["https://data.delijn.be/stops/200914", "https://data.delijn.be/stops/201694"], ["https://data.delijn.be/stops/103064", "https://data.delijn.be/stops/104033"], ["https://data.delijn.be/stops/204106", "https://data.delijn.be/stops/206395"], ["https://data.delijn.be/stops/107079", "https://data.delijn.be/stops/107081"], ["https://data.delijn.be/stops/201735", "https://data.delijn.be/stops/203751"], ["https://data.delijn.be/stops/206409", "https://data.delijn.be/stops/210009"], ["https://data.delijn.be/stops/402814", "https://data.delijn.be/stops/409038"], ["https://data.delijn.be/stops/300564", "https://data.delijn.be/stops/307856"], ["https://data.delijn.be/stops/208736", "https://data.delijn.be/stops/209736"], ["https://data.delijn.be/stops/504865", "https://data.delijn.be/stops/505373"], ["https://data.delijn.be/stops/500555", "https://data.delijn.be/stops/507235"], ["https://data.delijn.be/stops/405910", "https://data.delijn.be/stops/405991"], ["https://data.delijn.be/stops/107156", "https://data.delijn.be/stops/107159"], ["https://data.delijn.be/stops/201239", "https://data.delijn.be/stops/202956"], ["https://data.delijn.be/stops/301293", "https://data.delijn.be/stops/301900"], ["https://data.delijn.be/stops/304597", "https://data.delijn.be/stops/304716"], ["https://data.delijn.be/stops/204316", "https://data.delijn.be/stops/205316"], ["https://data.delijn.be/stops/208593", "https://data.delijn.be/stops/209593"], ["https://data.delijn.be/stops/105041", "https://data.delijn.be/stops/105123"], ["https://data.delijn.be/stops/408167", "https://data.delijn.be/stops/410345"], ["https://data.delijn.be/stops/408612", "https://data.delijn.be/stops/408704"], ["https://data.delijn.be/stops/506284", "https://data.delijn.be/stops/506323"], ["https://data.delijn.be/stops/200742", "https://data.delijn.be/stops/201405"], ["https://data.delijn.be/stops/200802", "https://data.delijn.be/stops/203064"], ["https://data.delijn.be/stops/409060", "https://data.delijn.be/stops/409061"], ["https://data.delijn.be/stops/400704", "https://data.delijn.be/stops/404378"], ["https://data.delijn.be/stops/306663", "https://data.delijn.be/stops/306665"], ["https://data.delijn.be/stops/405366", "https://data.delijn.be/stops/405370"], ["https://data.delijn.be/stops/406208", "https://data.delijn.be/stops/406215"], ["https://data.delijn.be/stops/202713", "https://data.delijn.be/stops/203714"], ["https://data.delijn.be/stops/201169", "https://data.delijn.be/stops/201567"], ["https://data.delijn.be/stops/504407", "https://data.delijn.be/stops/504472"], ["https://data.delijn.be/stops/502028", "https://data.delijn.be/stops/502051"], ["https://data.delijn.be/stops/204745", "https://data.delijn.be/stops/204766"], ["https://data.delijn.be/stops/101822", "https://data.delijn.be/stops/107073"], ["https://data.delijn.be/stops/508365", "https://data.delijn.be/stops/508525"], ["https://data.delijn.be/stops/106461", "https://data.delijn.be/stops/106462"], ["https://data.delijn.be/stops/503016", "https://data.delijn.be/stops/503022"], ["https://data.delijn.be/stops/408851", "https://data.delijn.be/stops/408912"], ["https://data.delijn.be/stops/407738", "https://data.delijn.be/stops/407739"], ["https://data.delijn.be/stops/402391", "https://data.delijn.be/stops/404704"], ["https://data.delijn.be/stops/408582", "https://data.delijn.be/stops/408586"], ["https://data.delijn.be/stops/206707", "https://data.delijn.be/stops/207616"], ["https://data.delijn.be/stops/304289", "https://data.delijn.be/stops/304290"], ["https://data.delijn.be/stops/204305", "https://data.delijn.be/stops/204352"], ["https://data.delijn.be/stops/108642", "https://data.delijn.be/stops/109692"], ["https://data.delijn.be/stops/306618", "https://data.delijn.be/stops/306620"], ["https://data.delijn.be/stops/208263", "https://data.delijn.be/stops/209717"], ["https://data.delijn.be/stops/102579", "https://data.delijn.be/stops/109110"], ["https://data.delijn.be/stops/303996", "https://data.delijn.be/stops/304103"], ["https://data.delijn.be/stops/407726", "https://data.delijn.be/stops/409779"], ["https://data.delijn.be/stops/301252", "https://data.delijn.be/stops/308264"], ["https://data.delijn.be/stops/202289", "https://data.delijn.be/stops/202290"], ["https://data.delijn.be/stops/102922", "https://data.delijn.be/stops/103185"], ["https://data.delijn.be/stops/104239", "https://data.delijn.be/stops/106786"], ["https://data.delijn.be/stops/501382", "https://data.delijn.be/stops/504207"], ["https://data.delijn.be/stops/503415", "https://data.delijn.be/stops/503995"], ["https://data.delijn.be/stops/400082", "https://data.delijn.be/stops/400160"], ["https://data.delijn.be/stops/300269", "https://data.delijn.be/stops/307112"], ["https://data.delijn.be/stops/108922", "https://data.delijn.be/stops/109427"], ["https://data.delijn.be/stops/402151", "https://data.delijn.be/stops/410100"], ["https://data.delijn.be/stops/303535", "https://data.delijn.be/stops/303546"], ["https://data.delijn.be/stops/503296", "https://data.delijn.be/stops/508296"], ["https://data.delijn.be/stops/405842", "https://data.delijn.be/stops/409757"], ["https://data.delijn.be/stops/503506", "https://data.delijn.be/stops/503512"], ["https://data.delijn.be/stops/208204", "https://data.delijn.be/stops/209455"], ["https://data.delijn.be/stops/401836", "https://data.delijn.be/stops/401840"], ["https://data.delijn.be/stops/404878", "https://data.delijn.be/stops/406890"], ["https://data.delijn.be/stops/106487", "https://data.delijn.be/stops/106489"], ["https://data.delijn.be/stops/103038", "https://data.delijn.be/stops/106412"], ["https://data.delijn.be/stops/101022", "https://data.delijn.be/stops/101024"], ["https://data.delijn.be/stops/108289", "https://data.delijn.be/stops/108293"], ["https://data.delijn.be/stops/405889", "https://data.delijn.be/stops/406827"], ["https://data.delijn.be/stops/201592", "https://data.delijn.be/stops/201593"], ["https://data.delijn.be/stops/300641", "https://data.delijn.be/stops/300642"], ["https://data.delijn.be/stops/402244", "https://data.delijn.be/stops/402252"], ["https://data.delijn.be/stops/208707", "https://data.delijn.be/stops/208970"], ["https://data.delijn.be/stops/203810", "https://data.delijn.be/stops/208738"], ["https://data.delijn.be/stops/200945", "https://data.delijn.be/stops/202695"], ["https://data.delijn.be/stops/201128", "https://data.delijn.be/stops/201302"], ["https://data.delijn.be/stops/102492", "https://data.delijn.be/stops/407929"], ["https://data.delijn.be/stops/204041", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/407469", "https://data.delijn.be/stops/409858"], ["https://data.delijn.be/stops/304400", "https://data.delijn.be/stops/307411"], ["https://data.delijn.be/stops/104037", "https://data.delijn.be/stops/108095"], ["https://data.delijn.be/stops/402108", "https://data.delijn.be/stops/402334"], ["https://data.delijn.be/stops/200197", "https://data.delijn.be/stops/202954"], ["https://data.delijn.be/stops/107392", "https://data.delijn.be/stops/107396"], ["https://data.delijn.be/stops/503112", "https://data.delijn.be/stops/505157"], ["https://data.delijn.be/stops/200337", "https://data.delijn.be/stops/211087"], ["https://data.delijn.be/stops/206106", "https://data.delijn.be/stops/207106"], ["https://data.delijn.be/stops/505160", "https://data.delijn.be/stops/505843"], ["https://data.delijn.be/stops/200187", "https://data.delijn.be/stops/201193"], ["https://data.delijn.be/stops/302751", "https://data.delijn.be/stops/302753"], ["https://data.delijn.be/stops/107690", "https://data.delijn.be/stops/108165"], ["https://data.delijn.be/stops/306613", "https://data.delijn.be/stops/306619"], ["https://data.delijn.be/stops/301854", "https://data.delijn.be/stops/301860"], ["https://data.delijn.be/stops/105308", "https://data.delijn.be/stops/105311"], ["https://data.delijn.be/stops/300567", "https://data.delijn.be/stops/300568"], ["https://data.delijn.be/stops/308094", "https://data.delijn.be/stops/308097"], ["https://data.delijn.be/stops/204672", "https://data.delijn.be/stops/204673"], ["https://data.delijn.be/stops/503523", "https://data.delijn.be/stops/508743"], ["https://data.delijn.be/stops/104776", "https://data.delijn.be/stops/107348"], ["https://data.delijn.be/stops/103234", "https://data.delijn.be/stops/103287"], ["https://data.delijn.be/stops/208011", "https://data.delijn.be/stops/208173"], ["https://data.delijn.be/stops/305754", "https://data.delijn.be/stops/306308"], ["https://data.delijn.be/stops/105919", "https://data.delijn.be/stops/105921"], ["https://data.delijn.be/stops/404892", "https://data.delijn.be/stops/404893"], ["https://data.delijn.be/stops/305889", "https://data.delijn.be/stops/305890"], ["https://data.delijn.be/stops/404792", "https://data.delijn.be/stops/404814"], ["https://data.delijn.be/stops/404183", "https://data.delijn.be/stops/404186"], ["https://data.delijn.be/stops/101802", "https://data.delijn.be/stops/101940"], ["https://data.delijn.be/stops/106613", "https://data.delijn.be/stops/106692"], ["https://data.delijn.be/stops/300010", "https://data.delijn.be/stops/304258"], ["https://data.delijn.be/stops/505352", "https://data.delijn.be/stops/507287"], ["https://data.delijn.be/stops/303812", "https://data.delijn.be/stops/303867"], ["https://data.delijn.be/stops/308475", "https://data.delijn.be/stops/308484"], ["https://data.delijn.be/stops/403151", "https://data.delijn.be/stops/407585"], ["https://data.delijn.be/stops/304435", "https://data.delijn.be/stops/304437"], ["https://data.delijn.be/stops/107711", "https://data.delijn.be/stops/107712"], ["https://data.delijn.be/stops/404046", "https://data.delijn.be/stops/404047"], ["https://data.delijn.be/stops/402749", "https://data.delijn.be/stops/405299"], ["https://data.delijn.be/stops/502375", "https://data.delijn.be/stops/507376"], ["https://data.delijn.be/stops/408874", "https://data.delijn.be/stops/408875"], ["https://data.delijn.be/stops/103626", "https://data.delijn.be/stops/103628"], ["https://data.delijn.be/stops/208260", "https://data.delijn.be/stops/209260"], ["https://data.delijn.be/stops/201591", "https://data.delijn.be/stops/204920"], ["https://data.delijn.be/stops/304485", "https://data.delijn.be/stops/304493"], ["https://data.delijn.be/stops/303480", "https://data.delijn.be/stops/303488"], ["https://data.delijn.be/stops/400726", "https://data.delijn.be/stops/400727"], ["https://data.delijn.be/stops/206103", "https://data.delijn.be/stops/207102"], ["https://data.delijn.be/stops/103354", "https://data.delijn.be/stops/104811"], ["https://data.delijn.be/stops/209292", "https://data.delijn.be/stops/210065"], ["https://data.delijn.be/stops/201264", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/106157", "https://data.delijn.be/stops/106444"], ["https://data.delijn.be/stops/400682", "https://data.delijn.be/stops/400683"], ["https://data.delijn.be/stops/200506", "https://data.delijn.be/stops/210133"], ["https://data.delijn.be/stops/301857", "https://data.delijn.be/stops/301868"], ["https://data.delijn.be/stops/502056", "https://data.delijn.be/stops/507933"], ["https://data.delijn.be/stops/407873", "https://data.delijn.be/stops/408139"], ["https://data.delijn.be/stops/202209", "https://data.delijn.be/stops/202211"], ["https://data.delijn.be/stops/200543", "https://data.delijn.be/stops/210048"], ["https://data.delijn.be/stops/105468", "https://data.delijn.be/stops/105469"], ["https://data.delijn.be/stops/407721", "https://data.delijn.be/stops/410319"], ["https://data.delijn.be/stops/400227", "https://data.delijn.be/stops/400234"], ["https://data.delijn.be/stops/303831", "https://data.delijn.be/stops/303832"], ["https://data.delijn.be/stops/206734", "https://data.delijn.be/stops/207998"], ["https://data.delijn.be/stops/105618", "https://data.delijn.be/stops/105621"], ["https://data.delijn.be/stops/403931", "https://data.delijn.be/stops/404084"], ["https://data.delijn.be/stops/404726", "https://data.delijn.be/stops/404945"], ["https://data.delijn.be/stops/300375", "https://data.delijn.be/stops/300379"], ["https://data.delijn.be/stops/505510", "https://data.delijn.be/stops/509698"], ["https://data.delijn.be/stops/407160", "https://data.delijn.be/stops/407185"], ["https://data.delijn.be/stops/105322", "https://data.delijn.be/stops/105328"], ["https://data.delijn.be/stops/206476", "https://data.delijn.be/stops/206508"], ["https://data.delijn.be/stops/403479", "https://data.delijn.be/stops/403480"], ["https://data.delijn.be/stops/502014", "https://data.delijn.be/stops/502020"], ["https://data.delijn.be/stops/202870", "https://data.delijn.be/stops/203881"], ["https://data.delijn.be/stops/108328", "https://data.delijn.be/stops/109331"], ["https://data.delijn.be/stops/101990", "https://data.delijn.be/stops/104722"], ["https://data.delijn.be/stops/508919", "https://data.delijn.be/stops/508931"], ["https://data.delijn.be/stops/102906", "https://data.delijn.be/stops/105868"], ["https://data.delijn.be/stops/405243", "https://data.delijn.be/stops/405245"], ["https://data.delijn.be/stops/506255", "https://data.delijn.be/stops/506774"], ["https://data.delijn.be/stops/406013", "https://data.delijn.be/stops/410263"], ["https://data.delijn.be/stops/409343", "https://data.delijn.be/stops/409613"], ["https://data.delijn.be/stops/306314", "https://data.delijn.be/stops/308760"], ["https://data.delijn.be/stops/301390", "https://data.delijn.be/stops/304667"], ["https://data.delijn.be/stops/301436", "https://data.delijn.be/stops/301438"], ["https://data.delijn.be/stops/105519", "https://data.delijn.be/stops/105522"], ["https://data.delijn.be/stops/207678", "https://data.delijn.be/stops/208074"], ["https://data.delijn.be/stops/401636", "https://data.delijn.be/stops/308207"], ["https://data.delijn.be/stops/408726", "https://data.delijn.be/stops/408727"], ["https://data.delijn.be/stops/206789", "https://data.delijn.be/stops/208562"], ["https://data.delijn.be/stops/202151", "https://data.delijn.be/stops/202152"], ["https://data.delijn.be/stops/401432", "https://data.delijn.be/stops/401474"], ["https://data.delijn.be/stops/302658", "https://data.delijn.be/stops/303295"], ["https://data.delijn.be/stops/301099", "https://data.delijn.be/stops/302806"], ["https://data.delijn.be/stops/204093", "https://data.delijn.be/stops/205074"], ["https://data.delijn.be/stops/206656", "https://data.delijn.be/stops/206657"], ["https://data.delijn.be/stops/406492", "https://data.delijn.be/stops/406493"], ["https://data.delijn.be/stops/502241", "https://data.delijn.be/stops/507654"], ["https://data.delijn.be/stops/205236", "https://data.delijn.be/stops/214016"], ["https://data.delijn.be/stops/407827", "https://data.delijn.be/stops/408070"], ["https://data.delijn.be/stops/304231", "https://data.delijn.be/stops/304232"], ["https://data.delijn.be/stops/300160", "https://data.delijn.be/stops/301124"], ["https://data.delijn.be/stops/200106", "https://data.delijn.be/stops/203007"], ["https://data.delijn.be/stops/305067", "https://data.delijn.be/stops/308294"], ["https://data.delijn.be/stops/103225", "https://data.delijn.be/stops/103255"], ["https://data.delijn.be/stops/202837", "https://data.delijn.be/stops/218002"], ["https://data.delijn.be/stops/401252", "https://data.delijn.be/stops/401253"], ["https://data.delijn.be/stops/303583", "https://data.delijn.be/stops/303584"], ["https://data.delijn.be/stops/101706", "https://data.delijn.be/stops/104402"], ["https://data.delijn.be/stops/401506", "https://data.delijn.be/stops/401507"], ["https://data.delijn.be/stops/505376", "https://data.delijn.be/stops/508201"], ["https://data.delijn.be/stops/504629", "https://data.delijn.be/stops/509620"], ["https://data.delijn.be/stops/406358", "https://data.delijn.be/stops/406401"], ["https://data.delijn.be/stops/206438", "https://data.delijn.be/stops/209685"], ["https://data.delijn.be/stops/200846", "https://data.delijn.be/stops/203330"], ["https://data.delijn.be/stops/504556", "https://data.delijn.be/stops/509556"], ["https://data.delijn.be/stops/407819", "https://data.delijn.be/stops/407852"], ["https://data.delijn.be/stops/509632", "https://data.delijn.be/stops/509633"], ["https://data.delijn.be/stops/409718", "https://data.delijn.be/stops/409721"], ["https://data.delijn.be/stops/108111", "https://data.delijn.be/stops/108141"], ["https://data.delijn.be/stops/103229", "https://data.delijn.be/stops/103232"], ["https://data.delijn.be/stops/201933", "https://data.delijn.be/stops/207594"], ["https://data.delijn.be/stops/400603", "https://data.delijn.be/stops/400610"], ["https://data.delijn.be/stops/408341", "https://data.delijn.be/stops/408401"], ["https://data.delijn.be/stops/404266", "https://data.delijn.be/stops/410054"], ["https://data.delijn.be/stops/302841", "https://data.delijn.be/stops/303285"], ["https://data.delijn.be/stops/102387", "https://data.delijn.be/stops/102648"], ["https://data.delijn.be/stops/204377", "https://data.delijn.be/stops/204480"], ["https://data.delijn.be/stops/104487", "https://data.delijn.be/stops/303560"], ["https://data.delijn.be/stops/503682", "https://data.delijn.be/stops/508687"], ["https://data.delijn.be/stops/503672", "https://data.delijn.be/stops/508672"], ["https://data.delijn.be/stops/306695", "https://data.delijn.be/stops/306696"], ["https://data.delijn.be/stops/505394", "https://data.delijn.be/stops/508449"], ["https://data.delijn.be/stops/403490", "https://data.delijn.be/stops/403491"], ["https://data.delijn.be/stops/405951", "https://data.delijn.be/stops/405955"], ["https://data.delijn.be/stops/507047", "https://data.delijn.be/stops/507054"], ["https://data.delijn.be/stops/205288", "https://data.delijn.be/stops/205498"], ["https://data.delijn.be/stops/505676", "https://data.delijn.be/stops/505688"], ["https://data.delijn.be/stops/501672", "https://data.delijn.be/stops/506487"], ["https://data.delijn.be/stops/406722", "https://data.delijn.be/stops/408796"], ["https://data.delijn.be/stops/208251", "https://data.delijn.be/stops/208252"], ["https://data.delijn.be/stops/406400", "https://data.delijn.be/stops/407638"], ["https://data.delijn.be/stops/404729", "https://data.delijn.be/stops/404743"], ["https://data.delijn.be/stops/107870", "https://data.delijn.be/stops/107871"], ["https://data.delijn.be/stops/103203", "https://data.delijn.be/stops/107192"], ["https://data.delijn.be/stops/208765", "https://data.delijn.be/stops/209409"], ["https://data.delijn.be/stops/404870", "https://data.delijn.be/stops/404874"], ["https://data.delijn.be/stops/206508", "https://data.delijn.be/stops/207508"], ["https://data.delijn.be/stops/303638", "https://data.delijn.be/stops/304806"], ["https://data.delijn.be/stops/301502", "https://data.delijn.be/stops/301503"], ["https://data.delijn.be/stops/503166", "https://data.delijn.be/stops/508169"], ["https://data.delijn.be/stops/209609", "https://data.delijn.be/stops/307606"], ["https://data.delijn.be/stops/301234", "https://data.delijn.be/stops/301237"], ["https://data.delijn.be/stops/400857", "https://data.delijn.be/stops/409526"], ["https://data.delijn.be/stops/501686", "https://data.delijn.be/stops/504059"], ["https://data.delijn.be/stops/200829", "https://data.delijn.be/stops/502707"], ["https://data.delijn.be/stops/503839", "https://data.delijn.be/stops/508839"], ["https://data.delijn.be/stops/505234", "https://data.delijn.be/stops/506224"], ["https://data.delijn.be/stops/102082", "https://data.delijn.be/stops/105244"], ["https://data.delijn.be/stops/302212", "https://data.delijn.be/stops/302226"], ["https://data.delijn.be/stops/201644", "https://data.delijn.be/stops/203812"], ["https://data.delijn.be/stops/501042", "https://data.delijn.be/stops/506029"], ["https://data.delijn.be/stops/302565", "https://data.delijn.be/stops/302568"], ["https://data.delijn.be/stops/404660", "https://data.delijn.be/stops/404670"], ["https://data.delijn.be/stops/204974", "https://data.delijn.be/stops/208243"], ["https://data.delijn.be/stops/301747", "https://data.delijn.be/stops/308876"], ["https://data.delijn.be/stops/300117", "https://data.delijn.be/stops/300118"], ["https://data.delijn.be/stops/402004", "https://data.delijn.be/stops/406204"], ["https://data.delijn.be/stops/201833", "https://data.delijn.be/stops/209259"], ["https://data.delijn.be/stops/504218", "https://data.delijn.be/stops/509063"], ["https://data.delijn.be/stops/302615", "https://data.delijn.be/stops/302618"], ["https://data.delijn.be/stops/201145", "https://data.delijn.be/stops/208849"], ["https://data.delijn.be/stops/204823", "https://data.delijn.be/stops/205823"], ["https://data.delijn.be/stops/504168", "https://data.delijn.be/stops/504194"], ["https://data.delijn.be/stops/301685", "https://data.delijn.be/stops/301688"], ["https://data.delijn.be/stops/203577", "https://data.delijn.be/stops/211851"], ["https://data.delijn.be/stops/304595", "https://data.delijn.be/stops/304633"], ["https://data.delijn.be/stops/204303", "https://data.delijn.be/stops/205705"], ["https://data.delijn.be/stops/502149", "https://data.delijn.be/stops/502633"], ["https://data.delijn.be/stops/404814", "https://data.delijn.be/stops/404834"], ["https://data.delijn.be/stops/105857", "https://data.delijn.be/stops/105858"], ["https://data.delijn.be/stops/300699", "https://data.delijn.be/stops/300700"], ["https://data.delijn.be/stops/208508", "https://data.delijn.be/stops/208633"], ["https://data.delijn.be/stops/104026", "https://data.delijn.be/stops/106901"], ["https://data.delijn.be/stops/501258", "https://data.delijn.be/stops/506684"], ["https://data.delijn.be/stops/406527", "https://data.delijn.be/stops/409289"], ["https://data.delijn.be/stops/101841", "https://data.delijn.be/stops/108912"], ["https://data.delijn.be/stops/308497", "https://data.delijn.be/stops/308499"], ["https://data.delijn.be/stops/108234", "https://data.delijn.be/stops/108236"], ["https://data.delijn.be/stops/503798", "https://data.delijn.be/stops/505570"], ["https://data.delijn.be/stops/109969", "https://data.delijn.be/stops/109972"], ["https://data.delijn.be/stops/203840", "https://data.delijn.be/stops/209277"], ["https://data.delijn.be/stops/106890", "https://data.delijn.be/stops/106892"], ["https://data.delijn.be/stops/401493", "https://data.delijn.be/stops/401512"], ["https://data.delijn.be/stops/503309", "https://data.delijn.be/stops/508309"], ["https://data.delijn.be/stops/301486", "https://data.delijn.be/stops/301487"], ["https://data.delijn.be/stops/218023", "https://data.delijn.be/stops/219022"], ["https://data.delijn.be/stops/103491", "https://data.delijn.be/stops/103492"], ["https://data.delijn.be/stops/206473", "https://data.delijn.be/stops/207473"], ["https://data.delijn.be/stops/204007", "https://data.delijn.be/stops/205700"], ["https://data.delijn.be/stops/301936", "https://data.delijn.be/stops/302907"], ["https://data.delijn.be/stops/505966", "https://data.delijn.be/stops/508516"], ["https://data.delijn.be/stops/106068", "https://data.delijn.be/stops/106071"], ["https://data.delijn.be/stops/200052", "https://data.delijn.be/stops/201477"], ["https://data.delijn.be/stops/304673", "https://data.delijn.be/stops/304679"], ["https://data.delijn.be/stops/304885", "https://data.delijn.be/stops/304908"], ["https://data.delijn.be/stops/300986", "https://data.delijn.be/stops/300994"], ["https://data.delijn.be/stops/200008", "https://data.delijn.be/stops/201417"], ["https://data.delijn.be/stops/408175", "https://data.delijn.be/stops/408178"], ["https://data.delijn.be/stops/206641", "https://data.delijn.be/stops/209685"], ["https://data.delijn.be/stops/108560", "https://data.delijn.be/stops/109731"], ["https://data.delijn.be/stops/202366", "https://data.delijn.be/stops/203994"], ["https://data.delijn.be/stops/207975", "https://data.delijn.be/stops/207976"], ["https://data.delijn.be/stops/204645", "https://data.delijn.be/stops/205645"], ["https://data.delijn.be/stops/101596", "https://data.delijn.be/stops/102729"], ["https://data.delijn.be/stops/203005", "https://data.delijn.be/stops/211006"], ["https://data.delijn.be/stops/408371", "https://data.delijn.be/stops/409663"], ["https://data.delijn.be/stops/208589", "https://data.delijn.be/stops/305238"], ["https://data.delijn.be/stops/401751", "https://data.delijn.be/stops/401876"], ["https://data.delijn.be/stops/507012", "https://data.delijn.be/stops/507797"], ["https://data.delijn.be/stops/200061", "https://data.delijn.be/stops/211059"], ["https://data.delijn.be/stops/300681", "https://data.delijn.be/stops/300683"], ["https://data.delijn.be/stops/300127", "https://data.delijn.be/stops/306824"], ["https://data.delijn.be/stops/108996", "https://data.delijn.be/stops/108997"], ["https://data.delijn.be/stops/305668", "https://data.delijn.be/stops/305669"], ["https://data.delijn.be/stops/203610", "https://data.delijn.be/stops/203611"], ["https://data.delijn.be/stops/106208", "https://data.delijn.be/stops/106212"], ["https://data.delijn.be/stops/306065", "https://data.delijn.be/stops/307607"], ["https://data.delijn.be/stops/400317", "https://data.delijn.be/stops/400318"], ["https://data.delijn.be/stops/202105", "https://data.delijn.be/stops/203106"], ["https://data.delijn.be/stops/206944", "https://data.delijn.be/stops/209558"], ["https://data.delijn.be/stops/202971", "https://data.delijn.be/stops/203972"], ["https://data.delijn.be/stops/209288", "https://data.delijn.be/stops/219018"], ["https://data.delijn.be/stops/303410", "https://data.delijn.be/stops/303416"], ["https://data.delijn.be/stops/101459", "https://data.delijn.be/stops/109278"], ["https://data.delijn.be/stops/401746", "https://data.delijn.be/stops/401882"], ["https://data.delijn.be/stops/407214", "https://data.delijn.be/stops/407215"], ["https://data.delijn.be/stops/201813", "https://data.delijn.be/stops/208328"], ["https://data.delijn.be/stops/108274", "https://data.delijn.be/stops/108277"], ["https://data.delijn.be/stops/408585", "https://data.delijn.be/stops/408591"], ["https://data.delijn.be/stops/102965", "https://data.delijn.be/stops/103282"], ["https://data.delijn.be/stops/203591", "https://data.delijn.be/stops/210023"], ["https://data.delijn.be/stops/400904", "https://data.delijn.be/stops/407401"], ["https://data.delijn.be/stops/401343", "https://data.delijn.be/stops/410208"], ["https://data.delijn.be/stops/109086", "https://data.delijn.be/stops/109866"], ["https://data.delijn.be/stops/108847", "https://data.delijn.be/stops/108864"], ["https://data.delijn.be/stops/409052", "https://data.delijn.be/stops/409067"], ["https://data.delijn.be/stops/302898", "https://data.delijn.be/stops/302903"], ["https://data.delijn.be/stops/200154", "https://data.delijn.be/stops/200155"], ["https://data.delijn.be/stops/201669", "https://data.delijn.be/stops/201678"], ["https://data.delijn.be/stops/200203", "https://data.delijn.be/stops/201203"], ["https://data.delijn.be/stops/504047", "https://data.delijn.be/stops/505368"], ["https://data.delijn.be/stops/400136", "https://data.delijn.be/stops/409207"], ["https://data.delijn.be/stops/302456", "https://data.delijn.be/stops/302457"], ["https://data.delijn.be/stops/200071", "https://data.delijn.be/stops/201072"], ["https://data.delijn.be/stops/202052", "https://data.delijn.be/stops/203053"], ["https://data.delijn.be/stops/108867", "https://data.delijn.be/stops/109513"], ["https://data.delijn.be/stops/409721", "https://data.delijn.be/stops/409722"], ["https://data.delijn.be/stops/302177", "https://data.delijn.be/stops/302446"], ["https://data.delijn.be/stops/506108", "https://data.delijn.be/stops/506225"], ["https://data.delijn.be/stops/203961", "https://data.delijn.be/stops/206409"], ["https://data.delijn.be/stops/204289", "https://data.delijn.be/stops/205290"], ["https://data.delijn.be/stops/200691", "https://data.delijn.be/stops/209645"], ["https://data.delijn.be/stops/206911", "https://data.delijn.be/stops/207105"], ["https://data.delijn.be/stops/104461", "https://data.delijn.be/stops/107154"], ["https://data.delijn.be/stops/108697", "https://data.delijn.be/stops/108699"], ["https://data.delijn.be/stops/103969", "https://data.delijn.be/stops/105763"], ["https://data.delijn.be/stops/408562", "https://data.delijn.be/stops/408563"], ["https://data.delijn.be/stops/201730", "https://data.delijn.be/stops/203192"], ["https://data.delijn.be/stops/508704", "https://data.delijn.be/stops/508707"], ["https://data.delijn.be/stops/300694", "https://data.delijn.be/stops/308132"], ["https://data.delijn.be/stops/501363", "https://data.delijn.be/stops/506367"], ["https://data.delijn.be/stops/101821", "https://data.delijn.be/stops/101822"], ["https://data.delijn.be/stops/102350", "https://data.delijn.be/stops/103282"], ["https://data.delijn.be/stops/307283", "https://data.delijn.be/stops/307534"], ["https://data.delijn.be/stops/106352", "https://data.delijn.be/stops/106354"], ["https://data.delijn.be/stops/200972", "https://data.delijn.be/stops/201972"], ["https://data.delijn.be/stops/200023", "https://data.delijn.be/stops/200100"], ["https://data.delijn.be/stops/504228", "https://data.delijn.be/stops/509627"], ["https://data.delijn.be/stops/304989", "https://data.delijn.be/stops/308022"], ["https://data.delijn.be/stops/109973", "https://data.delijn.be/stops/109974"], ["https://data.delijn.be/stops/304238", "https://data.delijn.be/stops/306708"], ["https://data.delijn.be/stops/501321", "https://data.delijn.be/stops/506286"], ["https://data.delijn.be/stops/108034", "https://data.delijn.be/stops/108036"], ["https://data.delijn.be/stops/304343", "https://data.delijn.be/stops/306784"], ["https://data.delijn.be/stops/407162", "https://data.delijn.be/stops/409877"], ["https://data.delijn.be/stops/104487", "https://data.delijn.be/stops/308619"], ["https://data.delijn.be/stops/104582", "https://data.delijn.be/stops/308608"], ["https://data.delijn.be/stops/508060", "https://data.delijn.be/stops/508704"], ["https://data.delijn.be/stops/101360", "https://data.delijn.be/stops/101805"], ["https://data.delijn.be/stops/406164", "https://data.delijn.be/stops/406264"], ["https://data.delijn.be/stops/406290", "https://data.delijn.be/stops/406291"], ["https://data.delijn.be/stops/204368", "https://data.delijn.be/stops/205367"], ["https://data.delijn.be/stops/204056", "https://data.delijn.be/stops/204726"], ["https://data.delijn.be/stops/302896", "https://data.delijn.be/stops/303228"], ["https://data.delijn.be/stops/409086", "https://data.delijn.be/stops/409087"], ["https://data.delijn.be/stops/308134", "https://data.delijn.be/stops/308135"], ["https://data.delijn.be/stops/502172", "https://data.delijn.be/stops/502540"], ["https://data.delijn.be/stops/104054", "https://data.delijn.be/stops/104768"], ["https://data.delijn.be/stops/406219", "https://data.delijn.be/stops/406220"], ["https://data.delijn.be/stops/105762", "https://data.delijn.be/stops/105767"], ["https://data.delijn.be/stops/509002", "https://data.delijn.be/stops/509004"], ["https://data.delijn.be/stops/300359", "https://data.delijn.be/stops/307003"], ["https://data.delijn.be/stops/201757", "https://data.delijn.be/stops/201816"], ["https://data.delijn.be/stops/105122", "https://data.delijn.be/stops/105193"], ["https://data.delijn.be/stops/200915", "https://data.delijn.be/stops/203687"], ["https://data.delijn.be/stops/503492", "https://data.delijn.be/stops/504362"], ["https://data.delijn.be/stops/201360", "https://data.delijn.be/stops/202006"], ["https://data.delijn.be/stops/203220", "https://data.delijn.be/stops/205076"], ["https://data.delijn.be/stops/400339", "https://data.delijn.be/stops/400958"], ["https://data.delijn.be/stops/301485", "https://data.delijn.be/stops/308704"], ["https://data.delijn.be/stops/203116", "https://data.delijn.be/stops/205796"], ["https://data.delijn.be/stops/301838", "https://data.delijn.be/stops/302465"], ["https://data.delijn.be/stops/405089", "https://data.delijn.be/stops/405751"], ["https://data.delijn.be/stops/104946", "https://data.delijn.be/stops/107305"], ["https://data.delijn.be/stops/101964", "https://data.delijn.be/stops/109286"], ["https://data.delijn.be/stops/507467", "https://data.delijn.be/stops/507473"], ["https://data.delijn.be/stops/105502", "https://data.delijn.be/stops/108801"], ["https://data.delijn.be/stops/501102", "https://data.delijn.be/stops/506101"], ["https://data.delijn.be/stops/406153", "https://data.delijn.be/stops/406209"], ["https://data.delijn.be/stops/206887", "https://data.delijn.be/stops/207882"], ["https://data.delijn.be/stops/406001", "https://data.delijn.be/stops/406016"], ["https://data.delijn.be/stops/201704", "https://data.delijn.be/stops/203602"], ["https://data.delijn.be/stops/302549", "https://data.delijn.be/stops/302556"], ["https://data.delijn.be/stops/104906", "https://data.delijn.be/stops/107244"], ["https://data.delijn.be/stops/206953", "https://data.delijn.be/stops/206954"], ["https://data.delijn.be/stops/409602", "https://data.delijn.be/stops/409604"], ["https://data.delijn.be/stops/102573", "https://data.delijn.be/stops/109166"], ["https://data.delijn.be/stops/105030", "https://data.delijn.be/stops/108640"], ["https://data.delijn.be/stops/102660", "https://data.delijn.be/stops/102699"], ["https://data.delijn.be/stops/404294", "https://data.delijn.be/stops/408676"], ["https://data.delijn.be/stops/505637", "https://data.delijn.be/stops/505778"], ["https://data.delijn.be/stops/109310", "https://data.delijn.be/stops/109345"], ["https://data.delijn.be/stops/305151", "https://data.delijn.be/stops/305168"], ["https://data.delijn.be/stops/407638", "https://data.delijn.be/stops/409778"], ["https://data.delijn.be/stops/501248", "https://data.delijn.be/stops/506248"], ["https://data.delijn.be/stops/401967", "https://data.delijn.be/stops/408157"], ["https://data.delijn.be/stops/103352", "https://data.delijn.be/stops/109687"], ["https://data.delijn.be/stops/204075", "https://data.delijn.be/stops/205236"], ["https://data.delijn.be/stops/105516", "https://data.delijn.be/stops/105518"], ["https://data.delijn.be/stops/304976", "https://data.delijn.be/stops/305037"], ["https://data.delijn.be/stops/400084", "https://data.delijn.be/stops/400160"], ["https://data.delijn.be/stops/200253", "https://data.delijn.be/stops/201253"], ["https://data.delijn.be/stops/101240", "https://data.delijn.be/stops/102370"], ["https://data.delijn.be/stops/203974", "https://data.delijn.be/stops/204238"], ["https://data.delijn.be/stops/103595", "https://data.delijn.be/stops/109394"], ["https://data.delijn.be/stops/106339", "https://data.delijn.be/stops/106340"], ["https://data.delijn.be/stops/307308", "https://data.delijn.be/stops/307309"], ["https://data.delijn.be/stops/506050", "https://data.delijn.be/stops/507386"], ["https://data.delijn.be/stops/201971", "https://data.delijn.be/stops/206614"], ["https://data.delijn.be/stops/304350", "https://data.delijn.be/stops/304354"], ["https://data.delijn.be/stops/101513", "https://data.delijn.be/stops/109027"], ["https://data.delijn.be/stops/202881", "https://data.delijn.be/stops/203881"], ["https://data.delijn.be/stops/504666", "https://data.delijn.be/stops/509372"], ["https://data.delijn.be/stops/308221", "https://data.delijn.be/stops/308224"], ["https://data.delijn.be/stops/205750", "https://data.delijn.be/stops/205751"], ["https://data.delijn.be/stops/304867", "https://data.delijn.be/stops/306416"], ["https://data.delijn.be/stops/400864", "https://data.delijn.be/stops/400865"], ["https://data.delijn.be/stops/206619", "https://data.delijn.be/stops/206757"], ["https://data.delijn.be/stops/504831", "https://data.delijn.be/stops/508895"], ["https://data.delijn.be/stops/508635", "https://data.delijn.be/stops/508981"], ["https://data.delijn.be/stops/208762", "https://data.delijn.be/stops/218014"], ["https://data.delijn.be/stops/106189", "https://data.delijn.be/stops/106190"], ["https://data.delijn.be/stops/302970", "https://data.delijn.be/stops/306714"], ["https://data.delijn.be/stops/302012", "https://data.delijn.be/stops/302051"], ["https://data.delijn.be/stops/308290", "https://data.delijn.be/stops/308291"], ["https://data.delijn.be/stops/108483", "https://data.delijn.be/stops/306603"], ["https://data.delijn.be/stops/200580", "https://data.delijn.be/stops/201580"], ["https://data.delijn.be/stops/405048", "https://data.delijn.be/stops/405070"], ["https://data.delijn.be/stops/504000", "https://data.delijn.be/stops/508775"], ["https://data.delijn.be/stops/503568", "https://data.delijn.be/stops/503716"], ["https://data.delijn.be/stops/303184", "https://data.delijn.be/stops/308959"], ["https://data.delijn.be/stops/200486", "https://data.delijn.be/stops/201488"], ["https://data.delijn.be/stops/400587", "https://data.delijn.be/stops/400603"], ["https://data.delijn.be/stops/404886", "https://data.delijn.be/stops/408642"], ["https://data.delijn.be/stops/102503", "https://data.delijn.be/stops/400025"], ["https://data.delijn.be/stops/300586", "https://data.delijn.be/stops/303518"], ["https://data.delijn.be/stops/300490", "https://data.delijn.be/stops/300493"], ["https://data.delijn.be/stops/105145", "https://data.delijn.be/stops/105665"], ["https://data.delijn.be/stops/106451", "https://data.delijn.be/stops/106452"], ["https://data.delijn.be/stops/101852", "https://data.delijn.be/stops/106871"], ["https://data.delijn.be/stops/304819", "https://data.delijn.be/stops/304821"], ["https://data.delijn.be/stops/201937", "https://data.delijn.be/stops/203441"], ["https://data.delijn.be/stops/106590", "https://data.delijn.be/stops/107276"], ["https://data.delijn.be/stops/204559", "https://data.delijn.be/stops/205559"], ["https://data.delijn.be/stops/303363", "https://data.delijn.be/stops/303391"], ["https://data.delijn.be/stops/108100", "https://data.delijn.be/stops/108102"], ["https://data.delijn.be/stops/407610", "https://data.delijn.be/stops/407767"], ["https://data.delijn.be/stops/303205", "https://data.delijn.be/stops/304313"], ["https://data.delijn.be/stops/407625", "https://data.delijn.be/stops/407691"], ["https://data.delijn.be/stops/200774", "https://data.delijn.be/stops/209386"], ["https://data.delijn.be/stops/400801", "https://data.delijn.be/stops/409541"], ["https://data.delijn.be/stops/206930", "https://data.delijn.be/stops/206949"], ["https://data.delijn.be/stops/200114", "https://data.delijn.be/stops/200115"], ["https://data.delijn.be/stops/103689", "https://data.delijn.be/stops/109433"], ["https://data.delijn.be/stops/305779", "https://data.delijn.be/stops/305781"], ["https://data.delijn.be/stops/503697", "https://data.delijn.be/stops/508697"], ["https://data.delijn.be/stops/204484", "https://data.delijn.be/stops/204737"], ["https://data.delijn.be/stops/300504", "https://data.delijn.be/stops/302335"], ["https://data.delijn.be/stops/301462", "https://data.delijn.be/stops/301496"], ["https://data.delijn.be/stops/501675", "https://data.delijn.be/stops/501694"], ["https://data.delijn.be/stops/204118", "https://data.delijn.be/stops/204119"], ["https://data.delijn.be/stops/504056", "https://data.delijn.be/stops/509056"], ["https://data.delijn.be/stops/101527", "https://data.delijn.be/stops/108794"], ["https://data.delijn.be/stops/105215", "https://data.delijn.be/stops/105543"], ["https://data.delijn.be/stops/105637", "https://data.delijn.be/stops/105641"], ["https://data.delijn.be/stops/308168", "https://data.delijn.be/stops/308171"], ["https://data.delijn.be/stops/505742", "https://data.delijn.be/stops/505833"], ["https://data.delijn.be/stops/302886", "https://data.delijn.be/stops/302897"], ["https://data.delijn.be/stops/102391", "https://data.delijn.be/stops/103139"], ["https://data.delijn.be/stops/408667", "https://data.delijn.be/stops/408704"], ["https://data.delijn.be/stops/109134", "https://data.delijn.be/stops/109419"], ["https://data.delijn.be/stops/200475", "https://data.delijn.be/stops/203191"], ["https://data.delijn.be/stops/202390", "https://data.delijn.be/stops/202391"], ["https://data.delijn.be/stops/202623", "https://data.delijn.be/stops/203622"], ["https://data.delijn.be/stops/304567", "https://data.delijn.be/stops/304568"], ["https://data.delijn.be/stops/300877", "https://data.delijn.be/stops/308856"], ["https://data.delijn.be/stops/505353", "https://data.delijn.be/stops/505730"], ["https://data.delijn.be/stops/408069", "https://data.delijn.be/stops/408084"], ["https://data.delijn.be/stops/508190", "https://data.delijn.be/stops/509746"], ["https://data.delijn.be/stops/500924", "https://data.delijn.be/stops/508341"], ["https://data.delijn.be/stops/407616", "https://data.delijn.be/stops/407617"], ["https://data.delijn.be/stops/400453", "https://data.delijn.be/stops/407668"], ["https://data.delijn.be/stops/508055", "https://data.delijn.be/stops/509789"], ["https://data.delijn.be/stops/201687", "https://data.delijn.be/stops/209662"], ["https://data.delijn.be/stops/106435", "https://data.delijn.be/stops/106437"], ["https://data.delijn.be/stops/108713", "https://data.delijn.be/stops/108859"], ["https://data.delijn.be/stops/501457", "https://data.delijn.be/stops/501547"], ["https://data.delijn.be/stops/503092", "https://data.delijn.be/stops/508092"], ["https://data.delijn.be/stops/104366", "https://data.delijn.be/stops/104368"], ["https://data.delijn.be/stops/402562", "https://data.delijn.be/stops/407805"], ["https://data.delijn.be/stops/208033", "https://data.delijn.be/stops/209033"], ["https://data.delijn.be/stops/509845", "https://data.delijn.be/stops/509846"], ["https://data.delijn.be/stops/501428", "https://data.delijn.be/stops/501487"], ["https://data.delijn.be/stops/509071", "https://data.delijn.be/stops/509271"], ["https://data.delijn.be/stops/505990", "https://data.delijn.be/stops/508298"], ["https://data.delijn.be/stops/404475", "https://data.delijn.be/stops/404584"], ["https://data.delijn.be/stops/504215", "https://data.delijn.be/stops/509111"], ["https://data.delijn.be/stops/304956", "https://data.delijn.be/stops/304957"], ["https://data.delijn.be/stops/403332", "https://data.delijn.be/stops/403346"], ["https://data.delijn.be/stops/208365", "https://data.delijn.be/stops/208776"], ["https://data.delijn.be/stops/406321", "https://data.delijn.be/stops/406369"], ["https://data.delijn.be/stops/504446", "https://data.delijn.be/stops/505299"], ["https://data.delijn.be/stops/302296", "https://data.delijn.be/stops/306786"], ["https://data.delijn.be/stops/407470", "https://data.delijn.be/stops/407492"], ["https://data.delijn.be/stops/304258", "https://data.delijn.be/stops/304288"], ["https://data.delijn.be/stops/502658", "https://data.delijn.be/stops/507658"], ["https://data.delijn.be/stops/505928", "https://data.delijn.be/stops/508996"], ["https://data.delijn.be/stops/503061", "https://data.delijn.be/stops/503063"], ["https://data.delijn.be/stops/505175", "https://data.delijn.be/stops/509648"], ["https://data.delijn.be/stops/302336", "https://data.delijn.be/stops/307829"], ["https://data.delijn.be/stops/403040", "https://data.delijn.be/stops/403041"], ["https://data.delijn.be/stops/508693", "https://data.delijn.be/stops/509979"], ["https://data.delijn.be/stops/302280", "https://data.delijn.be/stops/302286"], ["https://data.delijn.be/stops/505131", "https://data.delijn.be/stops/508666"], ["https://data.delijn.be/stops/503372", "https://data.delijn.be/stops/508033"], ["https://data.delijn.be/stops/406670", "https://data.delijn.be/stops/406676"], ["https://data.delijn.be/stops/109334", "https://data.delijn.be/stops/109370"], ["https://data.delijn.be/stops/106467", "https://data.delijn.be/stops/106469"], ["https://data.delijn.be/stops/504281", "https://data.delijn.be/stops/509281"], ["https://data.delijn.be/stops/202406", "https://data.delijn.be/stops/202407"], ["https://data.delijn.be/stops/403431", "https://data.delijn.be/stops/403432"], ["https://data.delijn.be/stops/503895", "https://data.delijn.be/stops/508987"], ["https://data.delijn.be/stops/200112", "https://data.delijn.be/stops/200567"], ["https://data.delijn.be/stops/502186", "https://data.delijn.be/stops/507186"], ["https://data.delijn.be/stops/403679", "https://data.delijn.be/stops/410328"], ["https://data.delijn.be/stops/401627", "https://data.delijn.be/stops/401661"], ["https://data.delijn.be/stops/305012", "https://data.delijn.be/stops/305013"], ["https://data.delijn.be/stops/204070", "https://data.delijn.be/stops/204355"], ["https://data.delijn.be/stops/200265", "https://data.delijn.be/stops/202545"], ["https://data.delijn.be/stops/408008", "https://data.delijn.be/stops/408150"], ["https://data.delijn.be/stops/405058", "https://data.delijn.be/stops/405115"], ["https://data.delijn.be/stops/504780", "https://data.delijn.be/stops/505946"], ["https://data.delijn.be/stops/409677", "https://data.delijn.be/stops/409705"], ["https://data.delijn.be/stops/405293", "https://data.delijn.be/stops/405294"], ["https://data.delijn.be/stops/105865", "https://data.delijn.be/stops/105874"], ["https://data.delijn.be/stops/301520", "https://data.delijn.be/stops/301521"], ["https://data.delijn.be/stops/101982", "https://data.delijn.be/stops/300070"], ["https://data.delijn.be/stops/200719", "https://data.delijn.be/stops/200720"], ["https://data.delijn.be/stops/207864", "https://data.delijn.be/stops/208585"], ["https://data.delijn.be/stops/400391", "https://data.delijn.be/stops/406484"], ["https://data.delijn.be/stops/402480", "https://data.delijn.be/stops/402499"], ["https://data.delijn.be/stops/501196", "https://data.delijn.be/stops/501497"], ["https://data.delijn.be/stops/403974", "https://data.delijn.be/stops/403975"], ["https://data.delijn.be/stops/207784", "https://data.delijn.be/stops/207785"], ["https://data.delijn.be/stops/403320", "https://data.delijn.be/stops/403322"], ["https://data.delijn.be/stops/503385", "https://data.delijn.be/stops/508188"], ["https://data.delijn.be/stops/405534", "https://data.delijn.be/stops/408075"], ["https://data.delijn.be/stops/304457", "https://data.delijn.be/stops/304461"], ["https://data.delijn.be/stops/501521", "https://data.delijn.be/stops/506301"], ["https://data.delijn.be/stops/200971", "https://data.delijn.be/stops/206624"], ["https://data.delijn.be/stops/501391", "https://data.delijn.be/stops/506479"], ["https://data.delijn.be/stops/208068", "https://data.delijn.be/stops/209067"], ["https://data.delijn.be/stops/500556", "https://data.delijn.be/stops/507947"], ["https://data.delijn.be/stops/102074", "https://data.delijn.be/stops/108837"], ["https://data.delijn.be/stops/402956", "https://data.delijn.be/stops/408178"], ["https://data.delijn.be/stops/108334", "https://data.delijn.be/stops/109302"], ["https://data.delijn.be/stops/407444", "https://data.delijn.be/stops/407478"], ["https://data.delijn.be/stops/305415", "https://data.delijn.be/stops/305416"], ["https://data.delijn.be/stops/205941", "https://data.delijn.be/stops/211004"], ["https://data.delijn.be/stops/501407", "https://data.delijn.be/stops/501485"], ["https://data.delijn.be/stops/301268", "https://data.delijn.be/stops/305042"], ["https://data.delijn.be/stops/305589", "https://data.delijn.be/stops/305593"], ["https://data.delijn.be/stops/208097", "https://data.delijn.be/stops/209007"], ["https://data.delijn.be/stops/108161", "https://data.delijn.be/stops/108164"], ["https://data.delijn.be/stops/204755", "https://data.delijn.be/stops/205755"], ["https://data.delijn.be/stops/209191", "https://data.delijn.be/stops/209349"], ["https://data.delijn.be/stops/506317", "https://data.delijn.be/stops/506783"], ["https://data.delijn.be/stops/303663", "https://data.delijn.be/stops/304939"], ["https://data.delijn.be/stops/200978", "https://data.delijn.be/stops/208540"], ["https://data.delijn.be/stops/504070", "https://data.delijn.be/stops/504579"], ["https://data.delijn.be/stops/303252", "https://data.delijn.be/stops/303253"], ["https://data.delijn.be/stops/104002", "https://data.delijn.be/stops/105510"], ["https://data.delijn.be/stops/503497", "https://data.delijn.be/stops/508875"], ["https://data.delijn.be/stops/400935", "https://data.delijn.be/stops/406730"], ["https://data.delijn.be/stops/403131", "https://data.delijn.be/stops/403411"], ["https://data.delijn.be/stops/501453", "https://data.delijn.be/stops/506449"], ["https://data.delijn.be/stops/202810", "https://data.delijn.be/stops/203865"], ["https://data.delijn.be/stops/204301", "https://data.delijn.be/stops/205302"], ["https://data.delijn.be/stops/106606", "https://data.delijn.be/stops/106684"], ["https://data.delijn.be/stops/206164", "https://data.delijn.be/stops/206165"], ["https://data.delijn.be/stops/206358", "https://data.delijn.be/stops/206957"], ["https://data.delijn.be/stops/102671", "https://data.delijn.be/stops/105646"], ["https://data.delijn.be/stops/304013", "https://data.delijn.be/stops/307508"], ["https://data.delijn.be/stops/202543", "https://data.delijn.be/stops/210015"], ["https://data.delijn.be/stops/409742", "https://data.delijn.be/stops/409752"], ["https://data.delijn.be/stops/208666", "https://data.delijn.be/stops/209540"], ["https://data.delijn.be/stops/201879", "https://data.delijn.be/stops/203666"], ["https://data.delijn.be/stops/503502", "https://data.delijn.be/stops/508502"], ["https://data.delijn.be/stops/406619", "https://data.delijn.be/stops/406643"], ["https://data.delijn.be/stops/102069", "https://data.delijn.be/stops/106928"], ["https://data.delijn.be/stops/502028", "https://data.delijn.be/stops/507028"], ["https://data.delijn.be/stops/505709", "https://data.delijn.be/stops/509140"], ["https://data.delijn.be/stops/406664", "https://data.delijn.be/stops/406682"], ["https://data.delijn.be/stops/208198", "https://data.delijn.be/stops/209197"], ["https://data.delijn.be/stops/307590", "https://data.delijn.be/stops/307600"], ["https://data.delijn.be/stops/201691", "https://data.delijn.be/stops/202365"], ["https://data.delijn.be/stops/307011", "https://data.delijn.be/stops/307015"], ["https://data.delijn.be/stops/208102", "https://data.delijn.be/stops/209102"], ["https://data.delijn.be/stops/502165", "https://data.delijn.be/stops/507153"], ["https://data.delijn.be/stops/202547", "https://data.delijn.be/stops/202548"], ["https://data.delijn.be/stops/104719", "https://data.delijn.be/stops/105155"], ["https://data.delijn.be/stops/304092", "https://data.delijn.be/stops/305437"], ["https://data.delijn.be/stops/109035", "https://data.delijn.be/stops/109040"], ["https://data.delijn.be/stops/402022", "https://data.delijn.be/stops/408875"], ["https://data.delijn.be/stops/508159", "https://data.delijn.be/stops/508166"], ["https://data.delijn.be/stops/105552", "https://data.delijn.be/stops/106028"], ["https://data.delijn.be/stops/206064", "https://data.delijn.be/stops/207064"], ["https://data.delijn.be/stops/407926", "https://data.delijn.be/stops/407960"], ["https://data.delijn.be/stops/402953", "https://data.delijn.be/stops/405397"], ["https://data.delijn.be/stops/402659", "https://data.delijn.be/stops/303647"], ["https://data.delijn.be/stops/108861", "https://data.delijn.be/stops/109743"], ["https://data.delijn.be/stops/304887", "https://data.delijn.be/stops/306163"], ["https://data.delijn.be/stops/308017", "https://data.delijn.be/stops/308018"], ["https://data.delijn.be/stops/204632", "https://data.delijn.be/stops/205614"], ["https://data.delijn.be/stops/308251", "https://data.delijn.be/stops/308292"], ["https://data.delijn.be/stops/208045", "https://data.delijn.be/stops/209561"], ["https://data.delijn.be/stops/403679", "https://data.delijn.be/stops/403681"], ["https://data.delijn.be/stops/101373", "https://data.delijn.be/stops/101400"], ["https://data.delijn.be/stops/207535", "https://data.delijn.be/stops/209688"], ["https://data.delijn.be/stops/503782", "https://data.delijn.be/stops/508783"], ["https://data.delijn.be/stops/405335", "https://data.delijn.be/stops/405336"], ["https://data.delijn.be/stops/205393", "https://data.delijn.be/stops/205763"], ["https://data.delijn.be/stops/408641", "https://data.delijn.be/stops/408737"], ["https://data.delijn.be/stops/504144", "https://data.delijn.be/stops/509144"], ["https://data.delijn.be/stops/407648", "https://data.delijn.be/stops/407672"], ["https://data.delijn.be/stops/407589", "https://data.delijn.be/stops/407617"], ["https://data.delijn.be/stops/504121", "https://data.delijn.be/stops/509129"], ["https://data.delijn.be/stops/505811", "https://data.delijn.be/stops/507347"], ["https://data.delijn.be/stops/505284", "https://data.delijn.be/stops/508292"], ["https://data.delijn.be/stops/503605", "https://data.delijn.be/stops/508609"], ["https://data.delijn.be/stops/506071", "https://data.delijn.be/stops/506775"], ["https://data.delijn.be/stops/300204", "https://data.delijn.be/stops/306742"], ["https://data.delijn.be/stops/104706", "https://data.delijn.be/stops/107082"], ["https://data.delijn.be/stops/300770", "https://data.delijn.be/stops/307251"], ["https://data.delijn.be/stops/101724", "https://data.delijn.be/stops/101846"], ["https://data.delijn.be/stops/201239", "https://data.delijn.be/stops/201920"], ["https://data.delijn.be/stops/400850", "https://data.delijn.be/stops/407700"], ["https://data.delijn.be/stops/208106", "https://data.delijn.be/stops/209776"], ["https://data.delijn.be/stops/200240", "https://data.delijn.be/stops/201650"], ["https://data.delijn.be/stops/503284", "https://data.delijn.be/stops/508284"], ["https://data.delijn.be/stops/501471", "https://data.delijn.be/stops/506466"], ["https://data.delijn.be/stops/503973", "https://data.delijn.be/stops/508105"], ["https://data.delijn.be/stops/502552", "https://data.delijn.be/stops/505012"], ["https://data.delijn.be/stops/104901", "https://data.delijn.be/stops/107608"], ["https://data.delijn.be/stops/301394", "https://data.delijn.be/stops/301396"], ["https://data.delijn.be/stops/105478", "https://data.delijn.be/stops/105480"], ["https://data.delijn.be/stops/301269", "https://data.delijn.be/stops/301278"], ["https://data.delijn.be/stops/504632", "https://data.delijn.be/stops/509632"], ["https://data.delijn.be/stops/400121", "https://data.delijn.be/stops/400163"], ["https://data.delijn.be/stops/307964", "https://data.delijn.be/stops/307971"], ["https://data.delijn.be/stops/503059", "https://data.delijn.be/stops/508059"], ["https://data.delijn.be/stops/502300", "https://data.delijn.be/stops/507303"], ["https://data.delijn.be/stops/305643", "https://data.delijn.be/stops/305671"], ["https://data.delijn.be/stops/504068", "https://data.delijn.be/stops/504113"], ["https://data.delijn.be/stops/305101", "https://data.delijn.be/stops/305119"], ["https://data.delijn.be/stops/301552", "https://data.delijn.be/stops/308088"], ["https://data.delijn.be/stops/104900", "https://data.delijn.be/stops/108550"], ["https://data.delijn.be/stops/500117", "https://data.delijn.be/stops/507271"], ["https://data.delijn.be/stops/300120", "https://data.delijn.be/stops/304941"], ["https://data.delijn.be/stops/305189", "https://data.delijn.be/stops/305209"], ["https://data.delijn.be/stops/505124", "https://data.delijn.be/stops/505126"], ["https://data.delijn.be/stops/203970", "https://data.delijn.be/stops/204093"], ["https://data.delijn.be/stops/502213", "https://data.delijn.be/stops/505149"], ["https://data.delijn.be/stops/104424", "https://data.delijn.be/stops/204450"], ["https://data.delijn.be/stops/400214", "https://data.delijn.be/stops/400215"], ["https://data.delijn.be/stops/106152", "https://data.delijn.be/stops/106442"], ["https://data.delijn.be/stops/101226", "https://data.delijn.be/stops/107806"], ["https://data.delijn.be/stops/502795", "https://data.delijn.be/stops/507024"], ["https://data.delijn.be/stops/301906", "https://data.delijn.be/stops/306259"], ["https://data.delijn.be/stops/200473", "https://data.delijn.be/stops/201474"], ["https://data.delijn.be/stops/101069", "https://data.delijn.be/stops/105964"], ["https://data.delijn.be/stops/200472", "https://data.delijn.be/stops/201471"], ["https://data.delijn.be/stops/200510", "https://data.delijn.be/stops/201511"], ["https://data.delijn.be/stops/501037", "https://data.delijn.be/stops/501043"], ["https://data.delijn.be/stops/403155", "https://data.delijn.be/stops/410320"], ["https://data.delijn.be/stops/307716", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/104878", "https://data.delijn.be/stops/104879"], ["https://data.delijn.be/stops/105219", "https://data.delijn.be/stops/305823"], ["https://data.delijn.be/stops/503193", "https://data.delijn.be/stops/508191"], ["https://data.delijn.be/stops/401516", "https://data.delijn.be/stops/401561"], ["https://data.delijn.be/stops/205976", "https://data.delijn.be/stops/205977"], ["https://data.delijn.be/stops/404445", "https://data.delijn.be/stops/404560"], ["https://data.delijn.be/stops/200626", "https://data.delijn.be/stops/201626"], ["https://data.delijn.be/stops/207768", "https://data.delijn.be/stops/207781"], ["https://data.delijn.be/stops/200235", "https://data.delijn.be/stops/200521"], ["https://data.delijn.be/stops/501078", "https://data.delijn.be/stops/506078"], ["https://data.delijn.be/stops/306597", "https://data.delijn.be/stops/306602"], ["https://data.delijn.be/stops/103132", "https://data.delijn.be/stops/106668"], ["https://data.delijn.be/stops/501180", "https://data.delijn.be/stops/509499"], ["https://data.delijn.be/stops/504135", "https://data.delijn.be/stops/509133"], ["https://data.delijn.be/stops/207645", "https://data.delijn.be/stops/209687"], ["https://data.delijn.be/stops/402214", "https://data.delijn.be/stops/404857"], ["https://data.delijn.be/stops/400110", "https://data.delijn.be/stops/400144"], ["https://data.delijn.be/stops/406057", "https://data.delijn.be/stops/406142"], ["https://data.delijn.be/stops/105532", "https://data.delijn.be/stops/106973"], ["https://data.delijn.be/stops/202638", "https://data.delijn.be/stops/203120"], ["https://data.delijn.be/stops/208675", "https://data.delijn.be/stops/208683"], ["https://data.delijn.be/stops/405153", "https://data.delijn.be/stops/405168"], ["https://data.delijn.be/stops/300351", "https://data.delijn.be/stops/301308"], ["https://data.delijn.be/stops/103078", "https://data.delijn.be/stops/104237"], ["https://data.delijn.be/stops/308208", "https://data.delijn.be/stops/308211"], ["https://data.delijn.be/stops/105694", "https://data.delijn.be/stops/108732"], ["https://data.delijn.be/stops/304155", "https://data.delijn.be/stops/304160"], ["https://data.delijn.be/stops/404214", "https://data.delijn.be/stops/404215"], ["https://data.delijn.be/stops/503541", "https://data.delijn.be/stops/503542"], ["https://data.delijn.be/stops/504025", "https://data.delijn.be/stops/509029"], ["https://data.delijn.be/stops/406700", "https://data.delijn.be/stops/406706"], ["https://data.delijn.be/stops/209589", "https://data.delijn.be/stops/307528"], ["https://data.delijn.be/stops/500945", "https://data.delijn.be/stops/509411"], ["https://data.delijn.be/stops/202823", "https://data.delijn.be/stops/211097"], ["https://data.delijn.be/stops/500012", "https://data.delijn.be/stops/505345"], ["https://data.delijn.be/stops/305075", "https://data.delijn.be/stops/305153"], ["https://data.delijn.be/stops/401793", "https://data.delijn.be/stops/401800"], ["https://data.delijn.be/stops/206240", "https://data.delijn.be/stops/207320"], ["https://data.delijn.be/stops/109767", "https://data.delijn.be/stops/109784"], ["https://data.delijn.be/stops/302063", "https://data.delijn.be/stops/302737"], ["https://data.delijn.be/stops/306112", "https://data.delijn.be/stops/307862"], ["https://data.delijn.be/stops/101797", "https://data.delijn.be/stops/108533"], ["https://data.delijn.be/stops/503810", "https://data.delijn.be/stops/508810"], ["https://data.delijn.be/stops/207886", "https://data.delijn.be/stops/207889"], ["https://data.delijn.be/stops/207183", "https://data.delijn.be/stops/217006"], ["https://data.delijn.be/stops/105286", "https://data.delijn.be/stops/105290"], ["https://data.delijn.be/stops/502059", "https://data.delijn.be/stops/507051"], ["https://data.delijn.be/stops/504219", "https://data.delijn.be/stops/509219"], ["https://data.delijn.be/stops/103576", "https://data.delijn.be/stops/106615"], ["https://data.delijn.be/stops/400780", "https://data.delijn.be/stops/400781"], ["https://data.delijn.be/stops/102420", "https://data.delijn.be/stops/105315"], ["https://data.delijn.be/stops/106103", "https://data.delijn.be/stops/106104"], ["https://data.delijn.be/stops/303576", "https://data.delijn.be/stops/305226"], ["https://data.delijn.be/stops/105068", "https://data.delijn.be/stops/106779"], ["https://data.delijn.be/stops/208037", "https://data.delijn.be/stops/217001"], ["https://data.delijn.be/stops/502446", "https://data.delijn.be/stops/502589"], ["https://data.delijn.be/stops/503148", "https://data.delijn.be/stops/508152"], ["https://data.delijn.be/stops/503513", "https://data.delijn.be/stops/504787"], ["https://data.delijn.be/stops/400328", "https://data.delijn.be/stops/400356"], ["https://data.delijn.be/stops/507401", "https://data.delijn.be/stops/507589"], ["https://data.delijn.be/stops/109043", "https://data.delijn.be/stops/109044"], ["https://data.delijn.be/stops/401842", "https://data.delijn.be/stops/401843"], ["https://data.delijn.be/stops/303153", "https://data.delijn.be/stops/303154"], ["https://data.delijn.be/stops/107167", "https://data.delijn.be/stops/107168"], ["https://data.delijn.be/stops/406595", "https://data.delijn.be/stops/406606"], ["https://data.delijn.be/stops/200913", "https://data.delijn.be/stops/202689"], ["https://data.delijn.be/stops/105305", "https://data.delijn.be/stops/105980"], ["https://data.delijn.be/stops/105050", "https://data.delijn.be/stops/106708"], ["https://data.delijn.be/stops/106847", "https://data.delijn.be/stops/106849"], ["https://data.delijn.be/stops/409555", "https://data.delijn.be/stops/409606"], ["https://data.delijn.be/stops/503288", "https://data.delijn.be/stops/508288"], ["https://data.delijn.be/stops/106246", "https://data.delijn.be/stops/106248"], ["https://data.delijn.be/stops/105132", "https://data.delijn.be/stops/305610"], ["https://data.delijn.be/stops/204204", "https://data.delijn.be/stops/204230"], ["https://data.delijn.be/stops/500002", "https://data.delijn.be/stops/508662"], ["https://data.delijn.be/stops/302534", "https://data.delijn.be/stops/308617"], ["https://data.delijn.be/stops/205030", "https://data.delijn.be/stops/205033"], ["https://data.delijn.be/stops/404795", "https://data.delijn.be/stops/406991"], ["https://data.delijn.be/stops/407604", "https://data.delijn.be/stops/407767"], ["https://data.delijn.be/stops/202927", "https://data.delijn.be/stops/208693"], ["https://data.delijn.be/stops/208565", "https://data.delijn.be/stops/209566"], ["https://data.delijn.be/stops/200824", "https://data.delijn.be/stops/200846"], ["https://data.delijn.be/stops/407397", "https://data.delijn.be/stops/407400"], ["https://data.delijn.be/stops/405484", "https://data.delijn.be/stops/405655"], ["https://data.delijn.be/stops/105771", "https://data.delijn.be/stops/105774"], ["https://data.delijn.be/stops/503985", "https://data.delijn.be/stops/508985"], ["https://data.delijn.be/stops/305968", "https://data.delijn.be/stops/307619"], ["https://data.delijn.be/stops/303646", "https://data.delijn.be/stops/303647"], ["https://data.delijn.be/stops/102253", "https://data.delijn.be/stops/102254"], ["https://data.delijn.be/stops/105189", "https://data.delijn.be/stops/108889"], ["https://data.delijn.be/stops/101217", "https://data.delijn.be/stops/104449"], ["https://data.delijn.be/stops/102465", "https://data.delijn.be/stops/103397"], ["https://data.delijn.be/stops/202057", "https://data.delijn.be/stops/203056"], ["https://data.delijn.be/stops/301922", "https://data.delijn.be/stops/302794"], ["https://data.delijn.be/stops/502023", "https://data.delijn.be/stops/507796"], ["https://data.delijn.be/stops/101883", "https://data.delijn.be/stops/104562"], ["https://data.delijn.be/stops/403816", "https://data.delijn.be/stops/403818"], ["https://data.delijn.be/stops/400953", "https://data.delijn.be/stops/405357"], ["https://data.delijn.be/stops/505394", "https://data.delijn.be/stops/508675"], ["https://data.delijn.be/stops/304369", "https://data.delijn.be/stops/307385"], ["https://data.delijn.be/stops/300109", "https://data.delijn.be/stops/306856"], ["https://data.delijn.be/stops/403438", "https://data.delijn.be/stops/406854"], ["https://data.delijn.be/stops/104793", "https://data.delijn.be/stops/105103"], ["https://data.delijn.be/stops/408314", "https://data.delijn.be/stops/408355"], ["https://data.delijn.be/stops/108831", "https://data.delijn.be/stops/108848"], ["https://data.delijn.be/stops/400916", "https://data.delijn.be/stops/406876"], ["https://data.delijn.be/stops/305291", "https://data.delijn.be/stops/305293"], ["https://data.delijn.be/stops/200555", "https://data.delijn.be/stops/201668"], ["https://data.delijn.be/stops/505151", "https://data.delijn.be/stops/506098"], ["https://data.delijn.be/stops/501551", "https://data.delijn.be/stops/502520"], ["https://data.delijn.be/stops/107450", "https://data.delijn.be/stops/109687"], ["https://data.delijn.be/stops/503197", "https://data.delijn.be/stops/508197"], ["https://data.delijn.be/stops/304296", "https://data.delijn.be/stops/304474"], ["https://data.delijn.be/stops/303368", "https://data.delijn.be/stops/308717"], ["https://data.delijn.be/stops/205483", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/104635", "https://data.delijn.be/stops/104650"], ["https://data.delijn.be/stops/509363", "https://data.delijn.be/stops/509371"], ["https://data.delijn.be/stops/400494", "https://data.delijn.be/stops/400495"], ["https://data.delijn.be/stops/504097", "https://data.delijn.be/stops/505910"], ["https://data.delijn.be/stops/402518", "https://data.delijn.be/stops/402523"], ["https://data.delijn.be/stops/506490", "https://data.delijn.be/stops/506491"], ["https://data.delijn.be/stops/404529", "https://data.delijn.be/stops/404530"], ["https://data.delijn.be/stops/101277", "https://data.delijn.be/stops/101279"], ["https://data.delijn.be/stops/201433", "https://data.delijn.be/stops/201434"], ["https://data.delijn.be/stops/408298", "https://data.delijn.be/stops/408302"], ["https://data.delijn.be/stops/302446", "https://data.delijn.be/stops/307140"], ["https://data.delijn.be/stops/408348", "https://data.delijn.be/stops/410159"], ["https://data.delijn.be/stops/103087", "https://data.delijn.be/stops/107476"], ["https://data.delijn.be/stops/207759", "https://data.delijn.be/stops/207777"], ["https://data.delijn.be/stops/402172", "https://data.delijn.be/stops/402265"], ["https://data.delijn.be/stops/302205", "https://data.delijn.be/stops/302207"], ["https://data.delijn.be/stops/502732", "https://data.delijn.be/stops/506049"], ["https://data.delijn.be/stops/503014", "https://data.delijn.be/stops/503016"], ["https://data.delijn.be/stops/301715", "https://data.delijn.be/stops/301718"], ["https://data.delijn.be/stops/404928", "https://data.delijn.be/stops/407645"], ["https://data.delijn.be/stops/109812", "https://data.delijn.be/stops/109815"], ["https://data.delijn.be/stops/503605", "https://data.delijn.be/stops/503609"], ["https://data.delijn.be/stops/200838", "https://data.delijn.be/stops/202299"], ["https://data.delijn.be/stops/300055", "https://data.delijn.be/stops/306793"], ["https://data.delijn.be/stops/400123", "https://data.delijn.be/stops/409199"], ["https://data.delijn.be/stops/204042", "https://data.delijn.be/stops/205042"], ["https://data.delijn.be/stops/208488", "https://data.delijn.be/stops/209046"], ["https://data.delijn.be/stops/106721", "https://data.delijn.be/stops/109672"], ["https://data.delijn.be/stops/401279", "https://data.delijn.be/stops/401283"], ["https://data.delijn.be/stops/505953", "https://data.delijn.be/stops/508163"], ["https://data.delijn.be/stops/206549", "https://data.delijn.be/stops/207549"], ["https://data.delijn.be/stops/407836", "https://data.delijn.be/stops/407837"], ["https://data.delijn.be/stops/202580", "https://data.delijn.be/stops/210077"], ["https://data.delijn.be/stops/200248", "https://data.delijn.be/stops/200575"], ["https://data.delijn.be/stops/206623", "https://data.delijn.be/stops/207623"], ["https://data.delijn.be/stops/101600", "https://data.delijn.be/stops/103973"], ["https://data.delijn.be/stops/301764", "https://data.delijn.be/stops/301773"], ["https://data.delijn.be/stops/502326", "https://data.delijn.be/stops/507338"], ["https://data.delijn.be/stops/503764", "https://data.delijn.be/stops/508725"], ["https://data.delijn.be/stops/503297", "https://data.delijn.be/stops/509926"], ["https://data.delijn.be/stops/300847", "https://data.delijn.be/stops/302604"], ["https://data.delijn.be/stops/505207", "https://data.delijn.be/stops/505989"], ["https://data.delijn.be/stops/104507", "https://data.delijn.be/stops/104508"], ["https://data.delijn.be/stops/207763", "https://data.delijn.be/stops/209408"], ["https://data.delijn.be/stops/305187", "https://data.delijn.be/stops/305188"], ["https://data.delijn.be/stops/403652", "https://data.delijn.be/stops/409965"], ["https://data.delijn.be/stops/303566", "https://data.delijn.be/stops/307990"], ["https://data.delijn.be/stops/109117", "https://data.delijn.be/stops/109118"], ["https://data.delijn.be/stops/504528", "https://data.delijn.be/stops/504529"], ["https://data.delijn.be/stops/505980", "https://data.delijn.be/stops/509140"], ["https://data.delijn.be/stops/407392", "https://data.delijn.be/stops/407393"], ["https://data.delijn.be/stops/206494", "https://data.delijn.be/stops/207493"], ["https://data.delijn.be/stops/204149", "https://data.delijn.be/stops/204154"], ["https://data.delijn.be/stops/208786", "https://data.delijn.be/stops/208787"], ["https://data.delijn.be/stops/102121", "https://data.delijn.be/stops/109365"], ["https://data.delijn.be/stops/501130", "https://data.delijn.be/stops/501137"], ["https://data.delijn.be/stops/109711", "https://data.delijn.be/stops/406464"], ["https://data.delijn.be/stops/402161", "https://data.delijn.be/stops/402266"], ["https://data.delijn.be/stops/108909", "https://data.delijn.be/stops/109398"], ["https://data.delijn.be/stops/402963", "https://data.delijn.be/stops/402965"], ["https://data.delijn.be/stops/506074", "https://data.delijn.be/stops/506776"], ["https://data.delijn.be/stops/305381", "https://data.delijn.be/stops/333454"], ["https://data.delijn.be/stops/202285", "https://data.delijn.be/stops/203285"], ["https://data.delijn.be/stops/501466", "https://data.delijn.be/stops/506466"], ["https://data.delijn.be/stops/302269", "https://data.delijn.be/stops/306972"], ["https://data.delijn.be/stops/109453", "https://data.delijn.be/stops/109555"], ["https://data.delijn.be/stops/306205", "https://data.delijn.be/stops/306206"], ["https://data.delijn.be/stops/108640", "https://data.delijn.be/stops/108645"], ["https://data.delijn.be/stops/407108", "https://data.delijn.be/stops/407731"], ["https://data.delijn.be/stops/206686", "https://data.delijn.be/stops/207721"], ["https://data.delijn.be/stops/209459", "https://data.delijn.be/stops/209466"], ["https://data.delijn.be/stops/405736", "https://data.delijn.be/stops/410142"], ["https://data.delijn.be/stops/300841", "https://data.delijn.be/stops/305406"], ["https://data.delijn.be/stops/102521", "https://data.delijn.be/stops/109662"], ["https://data.delijn.be/stops/402795", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/103570", "https://data.delijn.be/stops/107136"], ["https://data.delijn.be/stops/208217", "https://data.delijn.be/stops/209313"], ["https://data.delijn.be/stops/508725", "https://data.delijn.be/stops/508774"], ["https://data.delijn.be/stops/402712", "https://data.delijn.be/stops/308150"], ["https://data.delijn.be/stops/202160", "https://data.delijn.be/stops/202161"], ["https://data.delijn.be/stops/307507", "https://data.delijn.be/stops/307510"], ["https://data.delijn.be/stops/503087", "https://data.delijn.be/stops/508825"], ["https://data.delijn.be/stops/408981", "https://data.delijn.be/stops/409006"], ["https://data.delijn.be/stops/308454", "https://data.delijn.be/stops/308455"], ["https://data.delijn.be/stops/406902", "https://data.delijn.be/stops/406903"], ["https://data.delijn.be/stops/303421", "https://data.delijn.be/stops/303462"], ["https://data.delijn.be/stops/405465", "https://data.delijn.be/stops/408817"], ["https://data.delijn.be/stops/402512", "https://data.delijn.be/stops/405663"], ["https://data.delijn.be/stops/103473", "https://data.delijn.be/stops/103489"], ["https://data.delijn.be/stops/103287", "https://data.delijn.be/stops/107686"], ["https://data.delijn.be/stops/203965", "https://data.delijn.be/stops/203966"], ["https://data.delijn.be/stops/408858", "https://data.delijn.be/stops/408903"], ["https://data.delijn.be/stops/303311", "https://data.delijn.be/stops/308920"], ["https://data.delijn.be/stops/106986", "https://data.delijn.be/stops/106988"], ["https://data.delijn.be/stops/300957", "https://data.delijn.be/stops/300958"], ["https://data.delijn.be/stops/102972", "https://data.delijn.be/stops/105785"], ["https://data.delijn.be/stops/501226", "https://data.delijn.be/stops/506226"], ["https://data.delijn.be/stops/408528", "https://data.delijn.be/stops/408792"], ["https://data.delijn.be/stops/501035", "https://data.delijn.be/stops/501490"], ["https://data.delijn.be/stops/300784", "https://data.delijn.be/stops/304589"], ["https://data.delijn.be/stops/400851", "https://data.delijn.be/stops/407700"], ["https://data.delijn.be/stops/502024", "https://data.delijn.be/stops/507927"], ["https://data.delijn.be/stops/300934", "https://data.delijn.be/stops/300992"], ["https://data.delijn.be/stops/404242", "https://data.delijn.be/stops/409813"], ["https://data.delijn.be/stops/102416", "https://data.delijn.be/stops/109568"], ["https://data.delijn.be/stops/102468", "https://data.delijn.be/stops/102469"], ["https://data.delijn.be/stops/406395", "https://data.delijn.be/stops/302824"], ["https://data.delijn.be/stops/306368", "https://data.delijn.be/stops/307600"], ["https://data.delijn.be/stops/504591", "https://data.delijn.be/stops/509591"], ["https://data.delijn.be/stops/303301", "https://data.delijn.be/stops/305102"], ["https://data.delijn.be/stops/105139", "https://data.delijn.be/stops/305826"], ["https://data.delijn.be/stops/406212", "https://data.delijn.be/stops/408922"], ["https://data.delijn.be/stops/307303", "https://data.delijn.be/stops/307319"], ["https://data.delijn.be/stops/109589", "https://data.delijn.be/stops/109590"], ["https://data.delijn.be/stops/504873", "https://data.delijn.be/stops/509873"], ["https://data.delijn.be/stops/503778", "https://data.delijn.be/stops/503837"], ["https://data.delijn.be/stops/501403", "https://data.delijn.be/stops/506512"], ["https://data.delijn.be/stops/303123", "https://data.delijn.be/stops/307202"], ["https://data.delijn.be/stops/102401", "https://data.delijn.be/stops/105853"], ["https://data.delijn.be/stops/304209", "https://data.delijn.be/stops/304210"], ["https://data.delijn.be/stops/203990", "https://data.delijn.be/stops/203991"], ["https://data.delijn.be/stops/202367", "https://data.delijn.be/stops/202368"], ["https://data.delijn.be/stops/204118", "https://data.delijn.be/stops/205118"], ["https://data.delijn.be/stops/301328", "https://data.delijn.be/stops/306654"], ["https://data.delijn.be/stops/105601", "https://data.delijn.be/stops/105602"], ["https://data.delijn.be/stops/502645", "https://data.delijn.be/stops/507417"], ["https://data.delijn.be/stops/203050", "https://data.delijn.be/stops/203051"], ["https://data.delijn.be/stops/301912", "https://data.delijn.be/stops/306252"], ["https://data.delijn.be/stops/405578", "https://data.delijn.be/stops/405579"], ["https://data.delijn.be/stops/200502", "https://data.delijn.be/stops/200503"], ["https://data.delijn.be/stops/105753", "https://data.delijn.be/stops/109817"], ["https://data.delijn.be/stops/200064", "https://data.delijn.be/stops/201267"], ["https://data.delijn.be/stops/102501", "https://data.delijn.be/stops/102506"], ["https://data.delijn.be/stops/206580", "https://data.delijn.be/stops/207722"], ["https://data.delijn.be/stops/400824", "https://data.delijn.be/stops/400825"], ["https://data.delijn.be/stops/304218", "https://data.delijn.be/stops/308774"], ["https://data.delijn.be/stops/204776", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/402316", "https://data.delijn.be/stops/402317"], ["https://data.delijn.be/stops/403086", "https://data.delijn.be/stops/403087"], ["https://data.delijn.be/stops/208595", "https://data.delijn.be/stops/209808"], ["https://data.delijn.be/stops/101461", "https://data.delijn.be/stops/101462"], ["https://data.delijn.be/stops/107445", "https://data.delijn.be/stops/107450"], ["https://data.delijn.be/stops/300969", "https://data.delijn.be/stops/302804"], ["https://data.delijn.be/stops/306793", "https://data.delijn.be/stops/306794"], ["https://data.delijn.be/stops/502478", "https://data.delijn.be/stops/507478"], ["https://data.delijn.be/stops/107281", "https://data.delijn.be/stops/107394"], ["https://data.delijn.be/stops/204659", "https://data.delijn.be/stops/205659"], ["https://data.delijn.be/stops/203214", "https://data.delijn.be/stops/203281"], ["https://data.delijn.be/stops/202063", "https://data.delijn.be/stops/203063"], ["https://data.delijn.be/stops/102520", "https://data.delijn.be/stops/105490"], ["https://data.delijn.be/stops/502179", "https://data.delijn.be/stops/507178"], ["https://data.delijn.be/stops/300072", "https://data.delijn.be/stops/304667"], ["https://data.delijn.be/stops/203694", "https://data.delijn.be/stops/203695"], ["https://data.delijn.be/stops/204489", "https://data.delijn.be/stops/204493"], ["https://data.delijn.be/stops/301472", "https://data.delijn.be/stops/305651"], ["https://data.delijn.be/stops/503160", "https://data.delijn.be/stops/508169"], ["https://data.delijn.be/stops/501468", "https://data.delijn.be/stops/501469"], ["https://data.delijn.be/stops/308733", "https://data.delijn.be/stops/308734"], ["https://data.delijn.be/stops/300045", "https://data.delijn.be/stops/300857"], ["https://data.delijn.be/stops/305050", "https://data.delijn.be/stops/305089"], ["https://data.delijn.be/stops/504475", "https://data.delijn.be/stops/509475"], ["https://data.delijn.be/stops/503221", "https://data.delijn.be/stops/505260"], ["https://data.delijn.be/stops/106486", "https://data.delijn.be/stops/106487"], ["https://data.delijn.be/stops/200778", "https://data.delijn.be/stops/200947"], ["https://data.delijn.be/stops/206655", "https://data.delijn.be/stops/206656"], ["https://data.delijn.be/stops/208731", "https://data.delijn.be/stops/209732"], ["https://data.delijn.be/stops/402065", "https://data.delijn.be/stops/402112"], ["https://data.delijn.be/stops/303171", "https://data.delijn.be/stops/304320"], ["https://data.delijn.be/stops/400399", "https://data.delijn.be/stops/400417"], ["https://data.delijn.be/stops/302101", "https://data.delijn.be/stops/302103"], ["https://data.delijn.be/stops/406467", "https://data.delijn.be/stops/406476"], ["https://data.delijn.be/stops/503055", "https://data.delijn.be/stops/508154"], ["https://data.delijn.be/stops/101654", "https://data.delijn.be/stops/308845"], ["https://data.delijn.be/stops/406141", "https://data.delijn.be/stops/406357"], ["https://data.delijn.be/stops/306698", "https://data.delijn.be/stops/308781"], ["https://data.delijn.be/stops/305136", "https://data.delijn.be/stops/305143"], ["https://data.delijn.be/stops/206818", "https://data.delijn.be/stops/206820"], ["https://data.delijn.be/stops/504002", "https://data.delijn.be/stops/504004"], ["https://data.delijn.be/stops/400678", "https://data.delijn.be/stops/405412"], ["https://data.delijn.be/stops/400630", "https://data.delijn.be/stops/410005"], ["https://data.delijn.be/stops/503819", "https://data.delijn.be/stops/505287"], ["https://data.delijn.be/stops/301300", "https://data.delijn.be/stops/301334"], ["https://data.delijn.be/stops/409262", "https://data.delijn.be/stops/409264"], ["https://data.delijn.be/stops/208010", "https://data.delijn.be/stops/208011"], ["https://data.delijn.be/stops/405908", "https://data.delijn.be/stops/405978"], ["https://data.delijn.be/stops/102997", "https://data.delijn.be/stops/107902"], ["https://data.delijn.be/stops/101085", "https://data.delijn.be/stops/105325"], ["https://data.delijn.be/stops/404871", "https://data.delijn.be/stops/404967"], ["https://data.delijn.be/stops/107005", "https://data.delijn.be/stops/108955"], ["https://data.delijn.be/stops/307605", "https://data.delijn.be/stops/307606"], ["https://data.delijn.be/stops/501114", "https://data.delijn.be/stops/501115"], ["https://data.delijn.be/stops/200920", "https://data.delijn.be/stops/201957"], ["https://data.delijn.be/stops/305734", "https://data.delijn.be/stops/305735"], ["https://data.delijn.be/stops/504678", "https://data.delijn.be/stops/509268"], ["https://data.delijn.be/stops/303219", "https://data.delijn.be/stops/303220"], ["https://data.delijn.be/stops/202558", "https://data.delijn.be/stops/203552"], ["https://data.delijn.be/stops/103660", "https://data.delijn.be/stops/106337"], ["https://data.delijn.be/stops/206112", "https://data.delijn.be/stops/207156"], ["https://data.delijn.be/stops/300001", "https://data.delijn.be/stops/302514"], ["https://data.delijn.be/stops/402850", "https://data.delijn.be/stops/409009"], ["https://data.delijn.be/stops/506675", "https://data.delijn.be/stops/506677"], ["https://data.delijn.be/stops/405003", "https://data.delijn.be/stops/408154"], ["https://data.delijn.be/stops/305677", "https://data.delijn.be/stops/305688"], ["https://data.delijn.be/stops/304454", "https://data.delijn.be/stops/304455"], ["https://data.delijn.be/stops/505822", "https://data.delijn.be/stops/508776"], ["https://data.delijn.be/stops/107721", "https://data.delijn.be/stops/107740"], ["https://data.delijn.be/stops/504070", "https://data.delijn.be/stops/505573"], ["https://data.delijn.be/stops/203090", "https://data.delijn.be/stops/203270"], ["https://data.delijn.be/stops/502430", "https://data.delijn.be/stops/502752"], ["https://data.delijn.be/stops/305046", "https://data.delijn.be/stops/305049"], ["https://data.delijn.be/stops/202700", "https://data.delijn.be/stops/203705"], ["https://data.delijn.be/stops/206410", "https://data.delijn.be/stops/207080"], ["https://data.delijn.be/stops/206571", "https://data.delijn.be/stops/206573"], ["https://data.delijn.be/stops/108454", "https://data.delijn.be/stops/304920"], ["https://data.delijn.be/stops/502761", "https://data.delijn.be/stops/505057"], ["https://data.delijn.be/stops/409050", "https://data.delijn.be/stops/409084"], ["https://data.delijn.be/stops/301656", "https://data.delijn.be/stops/301893"], ["https://data.delijn.be/stops/206678", "https://data.delijn.be/stops/208810"], ["https://data.delijn.be/stops/401514", "https://data.delijn.be/stops/404463"], ["https://data.delijn.be/stops/204760", "https://data.delijn.be/stops/205371"], ["https://data.delijn.be/stops/200727", "https://data.delijn.be/stops/205943"], ["https://data.delijn.be/stops/202633", "https://data.delijn.be/stops/205068"], ["https://data.delijn.be/stops/103005", "https://data.delijn.be/stops/104175"], ["https://data.delijn.be/stops/200681", "https://data.delijn.be/stops/210041"], ["https://data.delijn.be/stops/208516", "https://data.delijn.be/stops/208676"], ["https://data.delijn.be/stops/406228", "https://data.delijn.be/stops/406432"], ["https://data.delijn.be/stops/109025", "https://data.delijn.be/stops/109040"], ["https://data.delijn.be/stops/207440", "https://data.delijn.be/stops/209685"], ["https://data.delijn.be/stops/504490", "https://data.delijn.be/stops/509497"], ["https://data.delijn.be/stops/402081", "https://data.delijn.be/stops/402445"], ["https://data.delijn.be/stops/201376", "https://data.delijn.be/stops/211044"], ["https://data.delijn.be/stops/400562", "https://data.delijn.be/stops/403850"], ["https://data.delijn.be/stops/302049", "https://data.delijn.be/stops/302746"], ["https://data.delijn.be/stops/202418", "https://data.delijn.be/stops/203276"], ["https://data.delijn.be/stops/401245", "https://data.delijn.be/stops/410183"], ["https://data.delijn.be/stops/505287", "https://data.delijn.be/stops/508980"], ["https://data.delijn.be/stops/304587", "https://data.delijn.be/stops/304588"], ["https://data.delijn.be/stops/203667", "https://data.delijn.be/stops/203668"], ["https://data.delijn.be/stops/408099", "https://data.delijn.be/stops/408111"], ["https://data.delijn.be/stops/504402", "https://data.delijn.be/stops/505304"], ["https://data.delijn.be/stops/403201", "https://data.delijn.be/stops/403212"], ["https://data.delijn.be/stops/200505", "https://data.delijn.be/stops/200545"], ["https://data.delijn.be/stops/300369", "https://data.delijn.be/stops/300370"], ["https://data.delijn.be/stops/304040", "https://data.delijn.be/stops/305610"], ["https://data.delijn.be/stops/200369", "https://data.delijn.be/stops/200983"], ["https://data.delijn.be/stops/505046", "https://data.delijn.be/stops/505221"], ["https://data.delijn.be/stops/407009", "https://data.delijn.be/stops/410014"], ["https://data.delijn.be/stops/409659", "https://data.delijn.be/stops/409690"], ["https://data.delijn.be/stops/302223", "https://data.delijn.be/stops/303998"], ["https://data.delijn.be/stops/407464", "https://data.delijn.be/stops/410068"], ["https://data.delijn.be/stops/405572", "https://data.delijn.be/stops/405576"], ["https://data.delijn.be/stops/200204", "https://data.delijn.be/stops/210024"], ["https://data.delijn.be/stops/200186", "https://data.delijn.be/stops/201186"], ["https://data.delijn.be/stops/101311", "https://data.delijn.be/stops/106044"], ["https://data.delijn.be/stops/206556", "https://data.delijn.be/stops/207582"], ["https://data.delijn.be/stops/404312", "https://data.delijn.be/stops/404313"], ["https://data.delijn.be/stops/208124", "https://data.delijn.be/stops/209127"], ["https://data.delijn.be/stops/204051", "https://data.delijn.be/stops/205051"], ["https://data.delijn.be/stops/200450", "https://data.delijn.be/stops/201082"], ["https://data.delijn.be/stops/407612", "https://data.delijn.be/stops/409780"], ["https://data.delijn.be/stops/401514", "https://data.delijn.be/stops/410396"], ["https://data.delijn.be/stops/209366", "https://data.delijn.be/stops/209639"], ["https://data.delijn.be/stops/502946", "https://data.delijn.be/stops/505292"], ["https://data.delijn.be/stops/200458", "https://data.delijn.be/stops/200459"], ["https://data.delijn.be/stops/202230", "https://data.delijn.be/stops/203230"], ["https://data.delijn.be/stops/404406", "https://data.delijn.be/stops/404417"], ["https://data.delijn.be/stops/102555", "https://data.delijn.be/stops/103800"], ["https://data.delijn.be/stops/303124", "https://data.delijn.be/stops/303126"], ["https://data.delijn.be/stops/502796", "https://data.delijn.be/stops/590010"], ["https://data.delijn.be/stops/106377", "https://data.delijn.be/stops/106380"], ["https://data.delijn.be/stops/202538", "https://data.delijn.be/stops/208721"], ["https://data.delijn.be/stops/302857", "https://data.delijn.be/stops/307048"], ["https://data.delijn.be/stops/206588", "https://data.delijn.be/stops/207588"], ["https://data.delijn.be/stops/105122", "https://data.delijn.be/stops/105124"], ["https://data.delijn.be/stops/102477", "https://data.delijn.be/stops/102478"], ["https://data.delijn.be/stops/502295", "https://data.delijn.be/stops/505352"], ["https://data.delijn.be/stops/208508", "https://data.delijn.be/stops/208511"], ["https://data.delijn.be/stops/407812", "https://data.delijn.be/stops/407905"], ["https://data.delijn.be/stops/408058", "https://data.delijn.be/stops/303262"], ["https://data.delijn.be/stops/202756", "https://data.delijn.be/stops/203756"], ["https://data.delijn.be/stops/108666", "https://data.delijn.be/stops/108667"], ["https://data.delijn.be/stops/405024", "https://data.delijn.be/stops/406501"], ["https://data.delijn.be/stops/202541", "https://data.delijn.be/stops/203450"], ["https://data.delijn.be/stops/303239", "https://data.delijn.be/stops/304247"], ["https://data.delijn.be/stops/502396", "https://data.delijn.be/stops/507402"], ["https://data.delijn.be/stops/105061", "https://data.delijn.be/stops/106299"], ["https://data.delijn.be/stops/408026", "https://data.delijn.be/stops/408027"], ["https://data.delijn.be/stops/500016", "https://data.delijn.be/stops/507450"], ["https://data.delijn.be/stops/101369", "https://data.delijn.be/stops/101402"], ["https://data.delijn.be/stops/208569", "https://data.delijn.be/stops/209569"], ["https://data.delijn.be/stops/101110", "https://data.delijn.be/stops/101620"], ["https://data.delijn.be/stops/503509", "https://data.delijn.be/stops/508509"], ["https://data.delijn.be/stops/210853", "https://data.delijn.be/stops/211853"], ["https://data.delijn.be/stops/104986", "https://data.delijn.be/stops/109480"], ["https://data.delijn.be/stops/403732", "https://data.delijn.be/stops/403737"], ["https://data.delijn.be/stops/404763", "https://data.delijn.be/stops/404825"], ["https://data.delijn.be/stops/402823", "https://data.delijn.be/stops/409017"], ["https://data.delijn.be/stops/201951", "https://data.delijn.be/stops/202427"], ["https://data.delijn.be/stops/200330", "https://data.delijn.be/stops/203201"], ["https://data.delijn.be/stops/402573", "https://data.delijn.be/stops/408446"], ["https://data.delijn.be/stops/201663", "https://data.delijn.be/stops/202322"], ["https://data.delijn.be/stops/104778", "https://data.delijn.be/stops/108116"], ["https://data.delijn.be/stops/502514", "https://data.delijn.be/stops/502516"], ["https://data.delijn.be/stops/407566", "https://data.delijn.be/stops/407799"], ["https://data.delijn.be/stops/300220", "https://data.delijn.be/stops/300221"], ["https://data.delijn.be/stops/103633", "https://data.delijn.be/stops/103637"], ["https://data.delijn.be/stops/508093", "https://data.delijn.be/stops/508107"], ["https://data.delijn.be/stops/507719", "https://data.delijn.be/stops/508845"], ["https://data.delijn.be/stops/506427", "https://data.delijn.be/stops/506456"], ["https://data.delijn.be/stops/401010", "https://data.delijn.be/stops/403796"], ["https://data.delijn.be/stops/501433", "https://data.delijn.be/stops/501671"], ["https://data.delijn.be/stops/202899", "https://data.delijn.be/stops/211127"], ["https://data.delijn.be/stops/207769", "https://data.delijn.be/stops/207781"], ["https://data.delijn.be/stops/204426", "https://data.delijn.be/stops/205396"], ["https://data.delijn.be/stops/306626", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/204911", "https://data.delijn.be/stops/204912"], ["https://data.delijn.be/stops/301868", "https://data.delijn.be/stops/301871"], ["https://data.delijn.be/stops/107263", "https://data.delijn.be/stops/107266"], ["https://data.delijn.be/stops/302563", "https://data.delijn.be/stops/304916"], ["https://data.delijn.be/stops/200308", "https://data.delijn.be/stops/211090"], ["https://data.delijn.be/stops/301298", "https://data.delijn.be/stops/301310"], ["https://data.delijn.be/stops/507288", "https://data.delijn.be/stops/507529"], ["https://data.delijn.be/stops/406911", "https://data.delijn.be/stops/409450"], ["https://data.delijn.be/stops/303615", "https://data.delijn.be/stops/304581"], ["https://data.delijn.be/stops/502016", "https://data.delijn.be/stops/502932"], ["https://data.delijn.be/stops/505808", "https://data.delijn.be/stops/507469"], ["https://data.delijn.be/stops/508133", "https://data.delijn.be/stops/508134"], ["https://data.delijn.be/stops/303348", "https://data.delijn.be/stops/307031"], ["https://data.delijn.be/stops/400077", "https://data.delijn.be/stops/409163"], ["https://data.delijn.be/stops/503880", "https://data.delijn.be/stops/508994"], ["https://data.delijn.be/stops/101483", "https://data.delijn.be/stops/108339"], ["https://data.delijn.be/stops/307815", "https://data.delijn.be/stops/307817"], ["https://data.delijn.be/stops/104348", "https://data.delijn.be/stops/105921"], ["https://data.delijn.be/stops/104742", "https://data.delijn.be/stops/108157"], ["https://data.delijn.be/stops/104454", "https://data.delijn.be/stops/104476"], ["https://data.delijn.be/stops/501082", "https://data.delijn.be/stops/501518"], ["https://data.delijn.be/stops/506145", "https://data.delijn.be/stops/506163"], ["https://data.delijn.be/stops/208802", "https://data.delijn.be/stops/209808"], ["https://data.delijn.be/stops/106763", "https://data.delijn.be/stops/106765"], ["https://data.delijn.be/stops/403364", "https://data.delijn.be/stops/403519"], ["https://data.delijn.be/stops/202956", "https://data.delijn.be/stops/202958"], ["https://data.delijn.be/stops/502266", "https://data.delijn.be/stops/507257"], ["https://data.delijn.be/stops/202731", "https://data.delijn.be/stops/202908"], ["https://data.delijn.be/stops/201150", "https://data.delijn.be/stops/201513"], ["https://data.delijn.be/stops/101845", "https://data.delijn.be/stops/102833"], ["https://data.delijn.be/stops/405068", "https://data.delijn.be/stops/406548"], ["https://data.delijn.be/stops/302311", "https://data.delijn.be/stops/302316"], ["https://data.delijn.be/stops/401550", "https://data.delijn.be/stops/406885"], ["https://data.delijn.be/stops/101529", "https://data.delijn.be/stops/102589"], ["https://data.delijn.be/stops/300674", "https://data.delijn.be/stops/308976"], ["https://data.delijn.be/stops/103219", "https://data.delijn.be/stops/108349"], ["https://data.delijn.be/stops/202432", "https://data.delijn.be/stops/203432"], ["https://data.delijn.be/stops/409093", "https://data.delijn.be/stops/409211"], ["https://data.delijn.be/stops/504236", "https://data.delijn.be/stops/509239"], ["https://data.delijn.be/stops/205201", "https://data.delijn.be/stops/205202"], ["https://data.delijn.be/stops/104986", "https://data.delijn.be/stops/400391"], ["https://data.delijn.be/stops/501305", "https://data.delijn.be/stops/506337"], ["https://data.delijn.be/stops/305082", "https://data.delijn.be/stops/306960"], ["https://data.delijn.be/stops/205120", "https://data.delijn.be/stops/205476"], ["https://data.delijn.be/stops/102533", "https://data.delijn.be/stops/102536"], ["https://data.delijn.be/stops/304807", "https://data.delijn.be/stops/306688"], ["https://data.delijn.be/stops/400331", "https://data.delijn.be/stops/400365"], ["https://data.delijn.be/stops/201919", "https://data.delijn.be/stops/206870"], ["https://data.delijn.be/stops/202986", "https://data.delijn.be/stops/203035"], ["https://data.delijn.be/stops/504455", "https://data.delijn.be/stops/504565"], ["https://data.delijn.be/stops/505823", "https://data.delijn.be/stops/508323"], ["https://data.delijn.be/stops/302289", "https://data.delijn.be/stops/302291"], ["https://data.delijn.be/stops/505997", "https://data.delijn.be/stops/509423"], ["https://data.delijn.be/stops/502039", "https://data.delijn.be/stops/507003"], ["https://data.delijn.be/stops/302877", "https://data.delijn.be/stops/302878"], ["https://data.delijn.be/stops/101934", "https://data.delijn.be/stops/107578"], ["https://data.delijn.be/stops/101485", "https://data.delijn.be/stops/102814"], ["https://data.delijn.be/stops/202791", "https://data.delijn.be/stops/203791"], ["https://data.delijn.be/stops/107552", "https://data.delijn.be/stops/108936"], ["https://data.delijn.be/stops/203500", "https://data.delijn.be/stops/204092"], ["https://data.delijn.be/stops/400313", "https://data.delijn.be/stops/405132"], ["https://data.delijn.be/stops/506146", "https://data.delijn.be/stops/509832"], ["https://data.delijn.be/stops/101183", "https://data.delijn.be/stops/204645"], ["https://data.delijn.be/stops/302918", "https://data.delijn.be/stops/302919"], ["https://data.delijn.be/stops/208285", "https://data.delijn.be/stops/208286"], ["https://data.delijn.be/stops/204460", "https://data.delijn.be/stops/214017"], ["https://data.delijn.be/stops/401093", "https://data.delijn.be/stops/401113"], ["https://data.delijn.be/stops/503018", "https://data.delijn.be/stops/508012"], ["https://data.delijn.be/stops/101262", "https://data.delijn.be/stops/106359"], ["https://data.delijn.be/stops/200364", "https://data.delijn.be/stops/201549"], ["https://data.delijn.be/stops/504051", "https://data.delijn.be/stops/509053"], ["https://data.delijn.be/stops/508060", "https://data.delijn.be/stops/508065"], ["https://data.delijn.be/stops/400754", "https://data.delijn.be/stops/410048"], ["https://data.delijn.be/stops/500008", "https://data.delijn.be/stops/502092"], ["https://data.delijn.be/stops/304500", "https://data.delijn.be/stops/307466"], ["https://data.delijn.be/stops/301875", "https://data.delijn.be/stops/301876"], ["https://data.delijn.be/stops/404862", "https://data.delijn.be/stops/404878"], ["https://data.delijn.be/stops/400657", "https://data.delijn.be/stops/400918"], ["https://data.delijn.be/stops/302347", "https://data.delijn.be/stops/306289"], ["https://data.delijn.be/stops/307209", "https://data.delijn.be/stops/307218"], ["https://data.delijn.be/stops/109058", "https://data.delijn.be/stops/109061"], ["https://data.delijn.be/stops/206086", "https://data.delijn.be/stops/206987"], ["https://data.delijn.be/stops/203840", "https://data.delijn.be/stops/209493"], ["https://data.delijn.be/stops/101984", "https://data.delijn.be/stops/109276"], ["https://data.delijn.be/stops/209225", "https://data.delijn.be/stops/209226"], ["https://data.delijn.be/stops/306925", "https://data.delijn.be/stops/306926"], ["https://data.delijn.be/stops/102896", "https://data.delijn.be/stops/104265"], ["https://data.delijn.be/stops/208678", "https://data.delijn.be/stops/209430"], ["https://data.delijn.be/stops/201875", "https://data.delijn.be/stops/202020"], ["https://data.delijn.be/stops/301430", "https://data.delijn.be/stops/301447"], ["https://data.delijn.be/stops/207665", "https://data.delijn.be/stops/208502"], ["https://data.delijn.be/stops/300571", "https://data.delijn.be/stops/300590"], ["https://data.delijn.be/stops/303650", "https://data.delijn.be/stops/306814"], ["https://data.delijn.be/stops/204596", "https://data.delijn.be/stops/205592"], ["https://data.delijn.be/stops/407524", "https://data.delijn.be/stops/407559"], ["https://data.delijn.be/stops/504631", "https://data.delijn.be/stops/509631"], ["https://data.delijn.be/stops/405248", "https://data.delijn.be/stops/405249"], ["https://data.delijn.be/stops/502925", "https://data.delijn.be/stops/507514"], ["https://data.delijn.be/stops/102418", "https://data.delijn.be/stops/105583"], ["https://data.delijn.be/stops/200604", "https://data.delijn.be/stops/202858"], ["https://data.delijn.be/stops/102322", "https://data.delijn.be/stops/106459"], ["https://data.delijn.be/stops/205090", "https://data.delijn.be/stops/215018"], ["https://data.delijn.be/stops/107348", "https://data.delijn.be/stops/107349"], ["https://data.delijn.be/stops/206646", "https://data.delijn.be/stops/207646"], ["https://data.delijn.be/stops/108336", "https://data.delijn.be/stops/109370"], ["https://data.delijn.be/stops/304586", "https://data.delijn.be/stops/304614"], ["https://data.delijn.be/stops/502372", "https://data.delijn.be/stops/507376"], ["https://data.delijn.be/stops/501121", "https://data.delijn.be/stops/505221"], ["https://data.delijn.be/stops/504536", "https://data.delijn.be/stops/505422"], ["https://data.delijn.be/stops/200386", "https://data.delijn.be/stops/201316"], ["https://data.delijn.be/stops/405058", "https://data.delijn.be/stops/405059"], ["https://data.delijn.be/stops/107041", "https://data.delijn.be/stops/108248"], ["https://data.delijn.be/stops/501688", "https://data.delijn.be/stops/506616"], ["https://data.delijn.be/stops/300705", "https://data.delijn.be/stops/303476"], ["https://data.delijn.be/stops/203403", "https://data.delijn.be/stops/211116"], ["https://data.delijn.be/stops/209209", "https://data.delijn.be/stops/209210"], ["https://data.delijn.be/stops/204480", "https://data.delijn.be/stops/204798"], ["https://data.delijn.be/stops/300481", "https://data.delijn.be/stops/308929"], ["https://data.delijn.be/stops/202913", "https://data.delijn.be/stops/202915"], ["https://data.delijn.be/stops/102231", "https://data.delijn.be/stops/105524"], ["https://data.delijn.be/stops/207770", "https://data.delijn.be/stops/208739"], ["https://data.delijn.be/stops/101982", "https://data.delijn.be/stops/300067"], ["https://data.delijn.be/stops/200513", "https://data.delijn.be/stops/201150"], ["https://data.delijn.be/stops/301190", "https://data.delijn.be/stops/301191"], ["https://data.delijn.be/stops/503149", "https://data.delijn.be/stops/503600"], ["https://data.delijn.be/stops/108701", "https://data.delijn.be/stops/108704"], ["https://data.delijn.be/stops/107226", "https://data.delijn.be/stops/107228"], ["https://data.delijn.be/stops/505208", "https://data.delijn.be/stops/508846"], ["https://data.delijn.be/stops/302334", "https://data.delijn.be/stops/302579"], ["https://data.delijn.be/stops/401922", "https://data.delijn.be/stops/403806"], ["https://data.delijn.be/stops/202422", "https://data.delijn.be/stops/203275"], ["https://data.delijn.be/stops/200192", "https://data.delijn.be/stops/201192"], ["https://data.delijn.be/stops/304801", "https://data.delijn.be/stops/304814"], ["https://data.delijn.be/stops/204310", "https://data.delijn.be/stops/204448"], ["https://data.delijn.be/stops/300127", "https://data.delijn.be/stops/300146"], ["https://data.delijn.be/stops/406312", "https://data.delijn.be/stops/406406"], ["https://data.delijn.be/stops/300550", "https://data.delijn.be/stops/300551"], ["https://data.delijn.be/stops/106281", "https://data.delijn.be/stops/106283"], ["https://data.delijn.be/stops/200006", "https://data.delijn.be/stops/203297"], ["https://data.delijn.be/stops/205159", "https://data.delijn.be/stops/205578"], ["https://data.delijn.be/stops/400255", "https://data.delijn.be/stops/402352"], ["https://data.delijn.be/stops/308605", "https://data.delijn.be/stops/308608"], ["https://data.delijn.be/stops/405715", "https://data.delijn.be/stops/405717"], ["https://data.delijn.be/stops/200951", "https://data.delijn.be/stops/200956"], ["https://data.delijn.be/stops/300954", "https://data.delijn.be/stops/305913"], ["https://data.delijn.be/stops/202307", "https://data.delijn.be/stops/203307"], ["https://data.delijn.be/stops/208494", "https://data.delijn.be/stops/209735"], ["https://data.delijn.be/stops/203395", "https://data.delijn.be/stops/203976"], ["https://data.delijn.be/stops/303783", "https://data.delijn.be/stops/303785"], ["https://data.delijn.be/stops/108084", "https://data.delijn.be/stops/108086"], ["https://data.delijn.be/stops/401359", "https://data.delijn.be/stops/401374"], ["https://data.delijn.be/stops/403703", "https://data.delijn.be/stops/403773"], ["https://data.delijn.be/stops/404514", "https://data.delijn.be/stops/406741"], ["https://data.delijn.be/stops/501032", "https://data.delijn.be/stops/506039"], ["https://data.delijn.be/stops/504062", "https://data.delijn.be/stops/505403"], ["https://data.delijn.be/stops/505809", "https://data.delijn.be/stops/505929"], ["https://data.delijn.be/stops/202635", "https://data.delijn.be/stops/202636"], ["https://data.delijn.be/stops/106447", "https://data.delijn.be/stops/106448"], ["https://data.delijn.be/stops/302897", "https://data.delijn.be/stops/303232"], ["https://data.delijn.be/stops/504778", "https://data.delijn.be/stops/508378"], ["https://data.delijn.be/stops/302428", "https://data.delijn.be/stops/302440"], ["https://data.delijn.be/stops/101975", "https://data.delijn.be/stops/105905"], ["https://data.delijn.be/stops/304724", "https://data.delijn.be/stops/305558"], ["https://data.delijn.be/stops/300041", "https://data.delijn.be/stops/300055"], ["https://data.delijn.be/stops/208382", "https://data.delijn.be/stops/208383"], ["https://data.delijn.be/stops/107793", "https://data.delijn.be/stops/107794"], ["https://data.delijn.be/stops/404247", "https://data.delijn.be/stops/409813"], ["https://data.delijn.be/stops/206345", "https://data.delijn.be/stops/207345"], ["https://data.delijn.be/stops/300222", "https://data.delijn.be/stops/300223"], ["https://data.delijn.be/stops/306897", "https://data.delijn.be/stops/308721"], ["https://data.delijn.be/stops/205524", "https://data.delijn.be/stops/205728"], ["https://data.delijn.be/stops/501229", "https://data.delijn.be/stops/506418"], ["https://data.delijn.be/stops/407684", "https://data.delijn.be/stops/409878"], ["https://data.delijn.be/stops/305237", "https://data.delijn.be/stops/305262"], ["https://data.delijn.be/stops/302792", "https://data.delijn.be/stops/303652"], ["https://data.delijn.be/stops/501396", "https://data.delijn.be/stops/502562"], ["https://data.delijn.be/stops/400060", "https://data.delijn.be/stops/400078"], ["https://data.delijn.be/stops/407980", "https://data.delijn.be/stops/407982"], ["https://data.delijn.be/stops/202151", "https://data.delijn.be/stops/203170"], ["https://data.delijn.be/stops/202746", "https://data.delijn.be/stops/202747"], ["https://data.delijn.be/stops/302182", "https://data.delijn.be/stops/302441"], ["https://data.delijn.be/stops/407616", "https://data.delijn.be/stops/407675"], ["https://data.delijn.be/stops/207048", "https://data.delijn.be/stops/207305"], ["https://data.delijn.be/stops/105048", "https://data.delijn.be/stops/106706"], ["https://data.delijn.be/stops/400102", "https://data.delijn.be/stops/409062"], ["https://data.delijn.be/stops/402977", "https://data.delijn.be/stops/402979"], ["https://data.delijn.be/stops/304935", "https://data.delijn.be/stops/304942"], ["https://data.delijn.be/stops/302406", "https://data.delijn.be/stops/302408"], ["https://data.delijn.be/stops/105677", "https://data.delijn.be/stops/106049"], ["https://data.delijn.be/stops/503903", "https://data.delijn.be/stops/504834"], ["https://data.delijn.be/stops/305731", "https://data.delijn.be/stops/306329"], ["https://data.delijn.be/stops/407063", "https://data.delijn.be/stops/410017"], ["https://data.delijn.be/stops/502250", "https://data.delijn.be/stops/507255"], ["https://data.delijn.be/stops/405028", "https://data.delijn.be/stops/410022"], ["https://data.delijn.be/stops/200011", "https://data.delijn.be/stops/200508"], ["https://data.delijn.be/stops/403512", "https://data.delijn.be/stops/410217"], ["https://data.delijn.be/stops/405281", "https://data.delijn.be/stops/405293"], ["https://data.delijn.be/stops/402225", "https://data.delijn.be/stops/402317"], ["https://data.delijn.be/stops/106293", "https://data.delijn.be/stops/106743"], ["https://data.delijn.be/stops/508435", "https://data.delijn.be/stops/508436"], ["https://data.delijn.be/stops/505277", "https://data.delijn.be/stops/505996"], ["https://data.delijn.be/stops/305981", "https://data.delijn.be/stops/305982"], ["https://data.delijn.be/stops/502628", "https://data.delijn.be/stops/507112"], ["https://data.delijn.be/stops/406032", "https://data.delijn.be/stops/406084"], ["https://data.delijn.be/stops/206186", "https://data.delijn.be/stops/207186"], ["https://data.delijn.be/stops/101831", "https://data.delijn.be/stops/104736"], ["https://data.delijn.be/stops/204623", "https://data.delijn.be/stops/204624"], ["https://data.delijn.be/stops/404033", "https://data.delijn.be/stops/410298"], ["https://data.delijn.be/stops/504033", "https://data.delijn.be/stops/509033"], ["https://data.delijn.be/stops/302968", "https://data.delijn.be/stops/303157"], ["https://data.delijn.be/stops/206022", "https://data.delijn.be/stops/206024"], ["https://data.delijn.be/stops/407841", "https://data.delijn.be/stops/407846"], ["https://data.delijn.be/stops/304879", "https://data.delijn.be/stops/304908"], ["https://data.delijn.be/stops/503973", "https://data.delijn.be/stops/505847"], ["https://data.delijn.be/stops/210011", "https://data.delijn.be/stops/210013"], ["https://data.delijn.be/stops/109420", "https://data.delijn.be/stops/109421"], ["https://data.delijn.be/stops/209610", "https://data.delijn.be/stops/305144"], ["https://data.delijn.be/stops/304309", "https://data.delijn.be/stops/307005"], ["https://data.delijn.be/stops/104652", "https://data.delijn.be/stops/306618"], ["https://data.delijn.be/stops/204495", "https://data.delijn.be/stops/205295"], ["https://data.delijn.be/stops/505280", "https://data.delijn.be/stops/507961"], ["https://data.delijn.be/stops/305133", "https://data.delijn.be/stops/305136"], ["https://data.delijn.be/stops/208514", "https://data.delijn.be/stops/209682"], ["https://data.delijn.be/stops/109312", "https://data.delijn.be/stops/109313"], ["https://data.delijn.be/stops/501068", "https://data.delijn.be/stops/501381"], ["https://data.delijn.be/stops/302854", "https://data.delijn.be/stops/302855"], ["https://data.delijn.be/stops/402294", "https://data.delijn.be/stops/402295"], ["https://data.delijn.be/stops/507302", "https://data.delijn.be/stops/507312"], ["https://data.delijn.be/stops/205701", "https://data.delijn.be/stops/205702"], ["https://data.delijn.be/stops/401773", "https://data.delijn.be/stops/406336"], ["https://data.delijn.be/stops/300315", "https://data.delijn.be/stops/303948"], ["https://data.delijn.be/stops/502645", "https://data.delijn.be/stops/507645"], ["https://data.delijn.be/stops/500947", "https://data.delijn.be/stops/509168"], ["https://data.delijn.be/stops/407030", "https://data.delijn.be/stops/407040"], ["https://data.delijn.be/stops/401245", "https://data.delijn.be/stops/401386"], ["https://data.delijn.be/stops/404957", "https://data.delijn.be/stops/409075"], ["https://data.delijn.be/stops/200468", "https://data.delijn.be/stops/211058"], ["https://data.delijn.be/stops/206144", "https://data.delijn.be/stops/206146"], ["https://data.delijn.be/stops/400701", "https://data.delijn.be/stops/409641"], ["https://data.delijn.be/stops/407975", "https://data.delijn.be/stops/308289"], ["https://data.delijn.be/stops/202674", "https://data.delijn.be/stops/203673"], ["https://data.delijn.be/stops/101408", "https://data.delijn.be/stops/107287"], ["https://data.delijn.be/stops/105743", "https://data.delijn.be/stops/109831"], ["https://data.delijn.be/stops/303589", "https://data.delijn.be/stops/306393"], ["https://data.delijn.be/stops/201512", "https://data.delijn.be/stops/201513"], ["https://data.delijn.be/stops/307063", "https://data.delijn.be/stops/307281"], ["https://data.delijn.be/stops/304838", "https://data.delijn.be/stops/304882"], ["https://data.delijn.be/stops/303594", "https://data.delijn.be/stops/303595"], ["https://data.delijn.be/stops/502298", "https://data.delijn.be/stops/507298"], ["https://data.delijn.be/stops/305629", "https://data.delijn.be/stops/307269"], ["https://data.delijn.be/stops/301297", "https://data.delijn.be/stops/301310"], ["https://data.delijn.be/stops/208160", "https://data.delijn.be/stops/209160"], ["https://data.delijn.be/stops/502622", "https://data.delijn.be/stops/505768"], ["https://data.delijn.be/stops/406116", "https://data.delijn.be/stops/406126"], ["https://data.delijn.be/stops/402173", "https://data.delijn.be/stops/402249"], ["https://data.delijn.be/stops/306199", "https://data.delijn.be/stops/306318"], ["https://data.delijn.be/stops/300650", "https://data.delijn.be/stops/301851"], ["https://data.delijn.be/stops/305287", "https://data.delijn.be/stops/305330"], ["https://data.delijn.be/stops/301552", "https://data.delijn.be/stops/301553"], ["https://data.delijn.be/stops/202730", "https://data.delijn.be/stops/203245"], ["https://data.delijn.be/stops/103123", "https://data.delijn.be/stops/109173"], ["https://data.delijn.be/stops/505261", "https://data.delijn.be/stops/505968"], ["https://data.delijn.be/stops/507196", "https://data.delijn.be/stops/507199"], ["https://data.delijn.be/stops/200468", "https://data.delijn.be/stops/201468"], ["https://data.delijn.be/stops/202370", "https://data.delijn.be/stops/210104"], ["https://data.delijn.be/stops/502609", "https://data.delijn.be/stops/507610"], ["https://data.delijn.be/stops/503124", "https://data.delijn.be/stops/503962"], ["https://data.delijn.be/stops/400754", "https://data.delijn.be/stops/400848"], ["https://data.delijn.be/stops/305140", "https://data.delijn.be/stops/305141"], ["https://data.delijn.be/stops/306929", "https://data.delijn.be/stops/306931"], ["https://data.delijn.be/stops/206488", "https://data.delijn.be/stops/207647"], ["https://data.delijn.be/stops/204057", "https://data.delijn.be/stops/205057"], ["https://data.delijn.be/stops/207754", "https://data.delijn.be/stops/207766"], ["https://data.delijn.be/stops/101546", "https://data.delijn.be/stops/101549"], ["https://data.delijn.be/stops/200944", "https://data.delijn.be/stops/203707"], ["https://data.delijn.be/stops/302706", "https://data.delijn.be/stops/308600"], ["https://data.delijn.be/stops/203839", "https://data.delijn.be/stops/209425"], ["https://data.delijn.be/stops/300808", "https://data.delijn.be/stops/307026"], ["https://data.delijn.be/stops/101018", "https://data.delijn.be/stops/104590"], ["https://data.delijn.be/stops/208795", "https://data.delijn.be/stops/209114"], ["https://data.delijn.be/stops/307505", "https://data.delijn.be/stops/307508"], ["https://data.delijn.be/stops/405877", "https://data.delijn.be/stops/405897"], ["https://data.delijn.be/stops/104394", "https://data.delijn.be/stops/104397"], ["https://data.delijn.be/stops/307221", "https://data.delijn.be/stops/307264"], ["https://data.delijn.be/stops/201938", "https://data.delijn.be/stops/201939"], ["https://data.delijn.be/stops/104132", "https://data.delijn.be/stops/108042"], ["https://data.delijn.be/stops/305716", "https://data.delijn.be/stops/307926"], ["https://data.delijn.be/stops/400979", "https://data.delijn.be/stops/407704"], ["https://data.delijn.be/stops/503267", "https://data.delijn.be/stops/508034"], ["https://data.delijn.be/stops/103820", "https://data.delijn.be/stops/104215"], ["https://data.delijn.be/stops/502233", "https://data.delijn.be/stops/502234"], ["https://data.delijn.be/stops/302345", "https://data.delijn.be/stops/302371"], ["https://data.delijn.be/stops/201952", "https://data.delijn.be/stops/203468"], ["https://data.delijn.be/stops/303556", "https://data.delijn.be/stops/305847"], ["https://data.delijn.be/stops/400516", "https://data.delijn.be/stops/400520"], ["https://data.delijn.be/stops/504474", "https://data.delijn.be/stops/504479"], ["https://data.delijn.be/stops/206579", "https://data.delijn.be/stops/207465"], ["https://data.delijn.be/stops/400143", "https://data.delijn.be/stops/403423"], ["https://data.delijn.be/stops/203278", "https://data.delijn.be/stops/203663"], ["https://data.delijn.be/stops/407926", "https://data.delijn.be/stops/408071"], ["https://data.delijn.be/stops/200362", "https://data.delijn.be/stops/203005"], ["https://data.delijn.be/stops/505396", "https://data.delijn.be/stops/508029"], ["https://data.delijn.be/stops/306146", "https://data.delijn.be/stops/306148"], ["https://data.delijn.be/stops/406268", "https://data.delijn.be/stops/406269"], ["https://data.delijn.be/stops/103605", "https://data.delijn.be/stops/109137"], ["https://data.delijn.be/stops/501230", "https://data.delijn.be/stops/505045"], ["https://data.delijn.be/stops/102442", "https://data.delijn.be/stops/104918"], ["https://data.delijn.be/stops/204551", "https://data.delijn.be/stops/205292"], ["https://data.delijn.be/stops/403414", "https://data.delijn.be/stops/403466"], ["https://data.delijn.be/stops/304638", "https://data.delijn.be/stops/304658"], ["https://data.delijn.be/stops/300301", "https://data.delijn.be/stops/301317"], ["https://data.delijn.be/stops/402720", "https://data.delijn.be/stops/308177"], ["https://data.delijn.be/stops/403174", "https://data.delijn.be/stops/403404"], ["https://data.delijn.be/stops/202640", "https://data.delijn.be/stops/203814"], ["https://data.delijn.be/stops/302110", "https://data.delijn.be/stops/303662"], ["https://data.delijn.be/stops/506002", "https://data.delijn.be/stops/509037"], ["https://data.delijn.be/stops/300355", "https://data.delijn.be/stops/304698"], ["https://data.delijn.be/stops/503766", "https://data.delijn.be/stops/508758"], ["https://data.delijn.be/stops/204073", "https://data.delijn.be/stops/204074"], ["https://data.delijn.be/stops/302262", "https://data.delijn.be/stops/302263"], ["https://data.delijn.be/stops/106329", "https://data.delijn.be/stops/106333"], ["https://data.delijn.be/stops/102370", "https://data.delijn.be/stops/103973"], ["https://data.delijn.be/stops/504142", "https://data.delijn.be/stops/505985"], ["https://data.delijn.be/stops/407997", "https://data.delijn.be/stops/408032"], ["https://data.delijn.be/stops/105087", "https://data.delijn.be/stops/105088"], ["https://data.delijn.be/stops/201315", "https://data.delijn.be/stops/205920"], ["https://data.delijn.be/stops/101790", "https://data.delijn.be/stops/103025"], ["https://data.delijn.be/stops/207799", "https://data.delijn.be/stops/209179"], ["https://data.delijn.be/stops/300746", "https://data.delijn.be/stops/301069"], ["https://data.delijn.be/stops/102595", "https://data.delijn.be/stops/105110"], ["https://data.delijn.be/stops/102024", "https://data.delijn.be/stops/103982"], ["https://data.delijn.be/stops/402132", "https://data.delijn.be/stops/402136"], ["https://data.delijn.be/stops/101178", "https://data.delijn.be/stops/105069"], ["https://data.delijn.be/stops/201214", "https://data.delijn.be/stops/201216"], ["https://data.delijn.be/stops/502515", "https://data.delijn.be/stops/502636"], ["https://data.delijn.be/stops/402264", "https://data.delijn.be/stops/402267"], ["https://data.delijn.be/stops/303697", "https://data.delijn.be/stops/305419"], ["https://data.delijn.be/stops/505704", "https://data.delijn.be/stops/507574"], ["https://data.delijn.be/stops/208361", "https://data.delijn.be/stops/209399"], ["https://data.delijn.be/stops/300639", "https://data.delijn.be/stops/300640"], ["https://data.delijn.be/stops/401537", "https://data.delijn.be/stops/401885"], ["https://data.delijn.be/stops/507352", "https://data.delijn.be/stops/508693"], ["https://data.delijn.be/stops/302801", "https://data.delijn.be/stops/305546"], ["https://data.delijn.be/stops/401448", "https://data.delijn.be/stops/404926"], ["https://data.delijn.be/stops/210125", "https://data.delijn.be/stops/211125"], ["https://data.delijn.be/stops/108607", "https://data.delijn.be/stops/108608"], ["https://data.delijn.be/stops/108469", "https://data.delijn.be/stops/306598"], ["https://data.delijn.be/stops/203037", "https://data.delijn.be/stops/203985"], ["https://data.delijn.be/stops/504095", "https://data.delijn.be/stops/504832"], ["https://data.delijn.be/stops/400081", "https://data.delijn.be/stops/405643"], ["https://data.delijn.be/stops/306864", "https://data.delijn.be/stops/307440"], ["https://data.delijn.be/stops/101536", "https://data.delijn.be/stops/109019"], ["https://data.delijn.be/stops/109197", "https://data.delijn.be/stops/109200"], ["https://data.delijn.be/stops/301752", "https://data.delijn.be/stops/305915"], ["https://data.delijn.be/stops/405831", "https://data.delijn.be/stops/405883"], ["https://data.delijn.be/stops/407307", "https://data.delijn.be/stops/409499"], ["https://data.delijn.be/stops/401449", "https://data.delijn.be/stops/401895"], ["https://data.delijn.be/stops/208207", "https://data.delijn.be/stops/209784"], ["https://data.delijn.be/stops/103128", "https://data.delijn.be/stops/104431"], ["https://data.delijn.be/stops/302595", "https://data.delijn.be/stops/302596"], ["https://data.delijn.be/stops/101870", "https://data.delijn.be/stops/105130"], ["https://data.delijn.be/stops/303581", "https://data.delijn.be/stops/306394"], ["https://data.delijn.be/stops/503524", "https://data.delijn.be/stops/504766"], ["https://data.delijn.be/stops/408629", "https://data.delijn.be/stops/408770"], ["https://data.delijn.be/stops/303796", "https://data.delijn.be/stops/303801"], ["https://data.delijn.be/stops/207487", "https://data.delijn.be/stops/207647"], ["https://data.delijn.be/stops/505774", "https://data.delijn.be/stops/505987"], ["https://data.delijn.be/stops/302830", "https://data.delijn.be/stops/302831"], ["https://data.delijn.be/stops/408639", "https://data.delijn.be/stops/408655"], ["https://data.delijn.be/stops/108311", "https://data.delijn.be/stops/108753"], ["https://data.delijn.be/stops/302213", "https://data.delijn.be/stops/302242"], ["https://data.delijn.be/stops/504053", "https://data.delijn.be/stops/509931"], ["https://data.delijn.be/stops/503497", "https://data.delijn.be/stops/508497"], ["https://data.delijn.be/stops/300515", "https://data.delijn.be/stops/302338"], ["https://data.delijn.be/stops/306304", "https://data.delijn.be/stops/306305"], ["https://data.delijn.be/stops/409683", "https://data.delijn.be/stops/409685"], ["https://data.delijn.be/stops/200234", "https://data.delijn.be/stops/201233"], ["https://data.delijn.be/stops/408340", "https://data.delijn.be/stops/410159"], ["https://data.delijn.be/stops/500938", "https://data.delijn.be/stops/505406"], ["https://data.delijn.be/stops/305297", "https://data.delijn.be/stops/305891"], ["https://data.delijn.be/stops/204289", "https://data.delijn.be/stops/204551"], ["https://data.delijn.be/stops/407183", "https://data.delijn.be/stops/409514"], ["https://data.delijn.be/stops/503544", "https://data.delijn.be/stops/503561"], ["https://data.delijn.be/stops/505443", "https://data.delijn.be/stops/508901"], ["https://data.delijn.be/stops/109824", "https://data.delijn.be/stops/109827"], ["https://data.delijn.be/stops/407245", "https://data.delijn.be/stops/407468"], ["https://data.delijn.be/stops/406062", "https://data.delijn.be/stops/406063"], ["https://data.delijn.be/stops/108848", "https://data.delijn.be/stops/108849"], ["https://data.delijn.be/stops/300756", "https://data.delijn.be/stops/300757"], ["https://data.delijn.be/stops/108533", "https://data.delijn.be/stops/108536"], ["https://data.delijn.be/stops/103308", "https://data.delijn.be/stops/103341"], ["https://data.delijn.be/stops/504071", "https://data.delijn.be/stops/504072"], ["https://data.delijn.be/stops/206753", "https://data.delijn.be/stops/207515"], ["https://data.delijn.be/stops/301887", "https://data.delijn.be/stops/301888"], ["https://data.delijn.be/stops/204377", "https://data.delijn.be/stops/205377"], ["https://data.delijn.be/stops/308729", "https://data.delijn.be/stops/308730"], ["https://data.delijn.be/stops/400788", "https://data.delijn.be/stops/409654"], ["https://data.delijn.be/stops/501134", "https://data.delijn.be/stops/506366"], ["https://data.delijn.be/stops/500129", "https://data.delijn.be/stops/502504"], ["https://data.delijn.be/stops/208387", "https://data.delijn.be/stops/209340"], ["https://data.delijn.be/stops/402988", "https://data.delijn.be/stops/405603"], ["https://data.delijn.be/stops/504017", "https://data.delijn.be/stops/509018"], ["https://data.delijn.be/stops/204022", "https://data.delijn.be/stops/206929"], ["https://data.delijn.be/stops/408021", "https://data.delijn.be/stops/408432"], ["https://data.delijn.be/stops/505278", "https://data.delijn.be/stops/508019"], ["https://data.delijn.be/stops/208276", "https://data.delijn.be/stops/208277"], ["https://data.delijn.be/stops/301355", "https://data.delijn.be/stops/306130"], ["https://data.delijn.be/stops/407981", "https://data.delijn.be/stops/407982"], ["https://data.delijn.be/stops/401167", "https://data.delijn.be/stops/402899"], ["https://data.delijn.be/stops/403950", "https://data.delijn.be/stops/403986"], ["https://data.delijn.be/stops/403745", "https://data.delijn.be/stops/403773"], ["https://data.delijn.be/stops/302327", "https://data.delijn.be/stops/302337"], ["https://data.delijn.be/stops/305966", "https://data.delijn.be/stops/305967"], ["https://data.delijn.be/stops/106778", "https://data.delijn.be/stops/106779"], ["https://data.delijn.be/stops/106221", "https://data.delijn.be/stops/106318"], ["https://data.delijn.be/stops/206836", "https://data.delijn.be/stops/206939"], ["https://data.delijn.be/stops/109722", "https://data.delijn.be/stops/109723"], ["https://data.delijn.be/stops/505030", "https://data.delijn.be/stops/506470"], ["https://data.delijn.be/stops/202460", "https://data.delijn.be/stops/203459"], ["https://data.delijn.be/stops/406214", "https://data.delijn.be/stops/406236"], ["https://data.delijn.be/stops/106528", "https://data.delijn.be/stops/107098"], ["https://data.delijn.be/stops/205000", "https://data.delijn.be/stops/206687"], ["https://data.delijn.be/stops/200935", "https://data.delijn.be/stops/202712"], ["https://data.delijn.be/stops/400112", "https://data.delijn.be/stops/409154"], ["https://data.delijn.be/stops/300296", "https://data.delijn.be/stops/300332"], ["https://data.delijn.be/stops/300595", "https://data.delijn.be/stops/302955"], ["https://data.delijn.be/stops/308223", "https://data.delijn.be/stops/308293"], ["https://data.delijn.be/stops/407962", "https://data.delijn.be/stops/407964"], ["https://data.delijn.be/stops/200286", "https://data.delijn.be/stops/211044"], ["https://data.delijn.be/stops/505547", "https://data.delijn.be/stops/505922"], ["https://data.delijn.be/stops/300259", "https://data.delijn.be/stops/300298"], ["https://data.delijn.be/stops/307057", "https://data.delijn.be/stops/307058"], ["https://data.delijn.be/stops/502096", "https://data.delijn.be/stops/502132"], ["https://data.delijn.be/stops/106458", "https://data.delijn.be/stops/106460"], ["https://data.delijn.be/stops/102606", "https://data.delijn.be/stops/105534"], ["https://data.delijn.be/stops/507610", "https://data.delijn.be/stops/509880"], ["https://data.delijn.be/stops/103590", "https://data.delijn.be/stops/108914"], ["https://data.delijn.be/stops/206500", "https://data.delijn.be/stops/207060"], ["https://data.delijn.be/stops/108239", "https://data.delijn.be/stops/108241"], ["https://data.delijn.be/stops/304221", "https://data.delijn.be/stops/305870"], ["https://data.delijn.be/stops/104042", "https://data.delijn.be/stops/108374"], ["https://data.delijn.be/stops/102296", "https://data.delijn.be/stops/107393"], ["https://data.delijn.be/stops/304756", "https://data.delijn.be/stops/304773"], ["https://data.delijn.be/stops/406040", "https://data.delijn.be/stops/406048"], ["https://data.delijn.be/stops/503188", "https://data.delijn.be/stops/508186"], ["https://data.delijn.be/stops/105254", "https://data.delijn.be/stops/105842"], ["https://data.delijn.be/stops/107886", "https://data.delijn.be/stops/107891"], ["https://data.delijn.be/stops/108459", "https://data.delijn.be/stops/108462"], ["https://data.delijn.be/stops/203884", "https://data.delijn.be/stops/209746"], ["https://data.delijn.be/stops/208622", "https://data.delijn.be/stops/209622"], ["https://data.delijn.be/stops/402197", "https://data.delijn.be/stops/402228"], ["https://data.delijn.be/stops/102830", "https://data.delijn.be/stops/107765"], ["https://data.delijn.be/stops/201701", "https://data.delijn.be/stops/202397"], ["https://data.delijn.be/stops/400055", "https://data.delijn.be/stops/401970"], ["https://data.delijn.be/stops/502915", "https://data.delijn.be/stops/507015"], ["https://data.delijn.be/stops/301184", "https://data.delijn.be/stops/304014"], ["https://data.delijn.be/stops/210070", "https://data.delijn.be/stops/211069"], ["https://data.delijn.be/stops/105710", "https://data.delijn.be/stops/106070"], ["https://data.delijn.be/stops/503764", "https://data.delijn.be/stops/507688"], ["https://data.delijn.be/stops/208410", "https://data.delijn.be/stops/209411"], ["https://data.delijn.be/stops/505928", "https://data.delijn.be/stops/509489"], ["https://data.delijn.be/stops/304160", "https://data.delijn.be/stops/304161"], ["https://data.delijn.be/stops/302221", "https://data.delijn.be/stops/302248"], ["https://data.delijn.be/stops/102679", "https://data.delijn.be/stops/105219"], ["https://data.delijn.be/stops/300173", "https://data.delijn.be/stops/300174"], ["https://data.delijn.be/stops/103482", "https://data.delijn.be/stops/109162"], ["https://data.delijn.be/stops/103094", "https://data.delijn.be/stops/103096"], ["https://data.delijn.be/stops/402954", "https://data.delijn.be/stops/404897"], ["https://data.delijn.be/stops/503732", "https://data.delijn.be/stops/508732"], ["https://data.delijn.be/stops/201184", "https://data.delijn.be/stops/202749"], ["https://data.delijn.be/stops/108987", "https://data.delijn.be/stops/108991"], ["https://data.delijn.be/stops/201925", "https://data.delijn.be/stops/206248"], ["https://data.delijn.be/stops/304234", "https://data.delijn.be/stops/304686"], ["https://data.delijn.be/stops/109933", "https://data.delijn.be/stops/109950"], ["https://data.delijn.be/stops/103282", "https://data.delijn.be/stops/105470"], ["https://data.delijn.be/stops/400515", "https://data.delijn.be/stops/403886"], ["https://data.delijn.be/stops/307064", "https://data.delijn.be/stops/307066"], ["https://data.delijn.be/stops/403909", "https://data.delijn.be/stops/403911"], ["https://data.delijn.be/stops/205161", "https://data.delijn.be/stops/207396"], ["https://data.delijn.be/stops/103629", "https://data.delijn.be/stops/107732"], ["https://data.delijn.be/stops/103332", "https://data.delijn.be/stops/106508"], ["https://data.delijn.be/stops/106111", "https://data.delijn.be/stops/109878"], ["https://data.delijn.be/stops/300600", "https://data.delijn.be/stops/300608"], ["https://data.delijn.be/stops/306901", "https://data.delijn.be/stops/306904"], ["https://data.delijn.be/stops/300508", "https://data.delijn.be/stops/305524"], ["https://data.delijn.be/stops/108022", "https://data.delijn.be/stops/108026"], ["https://data.delijn.be/stops/300033", "https://data.delijn.be/stops/301945"], ["https://data.delijn.be/stops/302945", "https://data.delijn.be/stops/302946"], ["https://data.delijn.be/stops/107599", "https://data.delijn.be/stops/107603"], ["https://data.delijn.be/stops/503148", "https://data.delijn.be/stops/505200"], ["https://data.delijn.be/stops/209447", "https://data.delijn.be/stops/218029"], ["https://data.delijn.be/stops/204615", "https://data.delijn.be/stops/204655"], ["https://data.delijn.be/stops/208380", "https://data.delijn.be/stops/209380"], ["https://data.delijn.be/stops/202735", "https://data.delijn.be/stops/202908"], ["https://data.delijn.be/stops/107416", "https://data.delijn.be/stops/107417"], ["https://data.delijn.be/stops/103002", "https://data.delijn.be/stops/107413"], ["https://data.delijn.be/stops/504502", "https://data.delijn.be/stops/504744"], ["https://data.delijn.be/stops/302288", "https://data.delijn.be/stops/307736"], ["https://data.delijn.be/stops/300376", "https://data.delijn.be/stops/300378"], ["https://data.delijn.be/stops/207676", "https://data.delijn.be/stops/208105"], ["https://data.delijn.be/stops/300652", "https://data.delijn.be/stops/301916"], ["https://data.delijn.be/stops/201747", "https://data.delijn.be/stops/203158"], ["https://data.delijn.be/stops/106247", "https://data.delijn.be/stops/106730"], ["https://data.delijn.be/stops/208689", "https://data.delijn.be/stops/208690"], ["https://data.delijn.be/stops/208193", "https://data.delijn.be/stops/209151"], ["https://data.delijn.be/stops/403616", "https://data.delijn.be/stops/407525"], ["https://data.delijn.be/stops/503151", "https://data.delijn.be/stops/504097"], ["https://data.delijn.be/stops/105718", "https://data.delijn.be/stops/106142"], ["https://data.delijn.be/stops/305588", "https://data.delijn.be/stops/305592"], ["https://data.delijn.be/stops/301215", "https://data.delijn.be/stops/303618"], ["https://data.delijn.be/stops/509236", "https://data.delijn.be/stops/509239"], ["https://data.delijn.be/stops/206046", "https://data.delijn.be/stops/207018"], ["https://data.delijn.be/stops/208444", "https://data.delijn.be/stops/209443"], ["https://data.delijn.be/stops/201532", "https://data.delijn.be/stops/201534"], ["https://data.delijn.be/stops/400160", "https://data.delijn.be/stops/400161"], ["https://data.delijn.be/stops/204780", "https://data.delijn.be/stops/204781"], ["https://data.delijn.be/stops/503288", "https://data.delijn.be/stops/505952"], ["https://data.delijn.be/stops/101577", "https://data.delijn.be/stops/105733"], ["https://data.delijn.be/stops/501300", "https://data.delijn.be/stops/506332"], ["https://data.delijn.be/stops/102228", "https://data.delijn.be/stops/105524"], ["https://data.delijn.be/stops/107143", "https://data.delijn.be/stops/107144"], ["https://data.delijn.be/stops/504010", "https://data.delijn.be/stops/509416"], ["https://data.delijn.be/stops/503456", "https://data.delijn.be/stops/508478"], ["https://data.delijn.be/stops/202773", "https://data.delijn.be/stops/203772"], ["https://data.delijn.be/stops/400928", "https://data.delijn.be/stops/400929"], ["https://data.delijn.be/stops/206049", "https://data.delijn.be/stops/207297"], ["https://data.delijn.be/stops/405046", "https://data.delijn.be/stops/405047"], ["https://data.delijn.be/stops/405032", "https://data.delijn.be/stops/405118"], ["https://data.delijn.be/stops/209367", "https://data.delijn.be/stops/209661"], ["https://data.delijn.be/stops/502270", "https://data.delijn.be/stops/505227"], ["https://data.delijn.be/stops/302675", "https://data.delijn.be/stops/302689"], ["https://data.delijn.be/stops/201933", "https://data.delijn.be/stops/206554"], ["https://data.delijn.be/stops/201831", "https://data.delijn.be/stops/208258"], ["https://data.delijn.be/stops/300523", "https://data.delijn.be/stops/300533"], ["https://data.delijn.be/stops/307585", "https://data.delijn.be/stops/307586"], ["https://data.delijn.be/stops/404770", "https://data.delijn.be/stops/404777"], ["https://data.delijn.be/stops/405036", "https://data.delijn.be/stops/405037"], ["https://data.delijn.be/stops/102966", "https://data.delijn.be/stops/108977"], ["https://data.delijn.be/stops/503316", "https://data.delijn.be/stops/503318"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/306276"], ["https://data.delijn.be/stops/400206", "https://data.delijn.be/stops/408551"], ["https://data.delijn.be/stops/505309", "https://data.delijn.be/stops/505310"], ["https://data.delijn.be/stops/202341", "https://data.delijn.be/stops/202484"], ["https://data.delijn.be/stops/208654", "https://data.delijn.be/stops/209654"], ["https://data.delijn.be/stops/208173", "https://data.delijn.be/stops/209011"], ["https://data.delijn.be/stops/401946", "https://data.delijn.be/stops/409732"], ["https://data.delijn.be/stops/208143", "https://data.delijn.be/stops/209144"], ["https://data.delijn.be/stops/505521", "https://data.delijn.be/stops/505746"], ["https://data.delijn.be/stops/401432", "https://data.delijn.be/stops/401433"], ["https://data.delijn.be/stops/504247", "https://data.delijn.be/stops/509247"], ["https://data.delijn.be/stops/501044", "https://data.delijn.be/stops/506044"], ["https://data.delijn.be/stops/400242", "https://data.delijn.be/stops/400248"], ["https://data.delijn.be/stops/502334", "https://data.delijn.be/stops/507334"], ["https://data.delijn.be/stops/405062", "https://data.delijn.be/stops/405863"], ["https://data.delijn.be/stops/201111", "https://data.delijn.be/stops/201387"], ["https://data.delijn.be/stops/505638", "https://data.delijn.be/stops/508179"], ["https://data.delijn.be/stops/504545", "https://data.delijn.be/stops/505212"], ["https://data.delijn.be/stops/506214", "https://data.delijn.be/stops/506220"], ["https://data.delijn.be/stops/402554", "https://data.delijn.be/stops/402608"], ["https://data.delijn.be/stops/210856", "https://data.delijn.be/stops/211856"], ["https://data.delijn.be/stops/300719", "https://data.delijn.be/stops/300735"], ["https://data.delijn.be/stops/201834", "https://data.delijn.be/stops/201845"], ["https://data.delijn.be/stops/202786", "https://data.delijn.be/stops/203786"], ["https://data.delijn.be/stops/101945", "https://data.delijn.be/stops/109705"], ["https://data.delijn.be/stops/402702", "https://data.delijn.be/stops/402705"], ["https://data.delijn.be/stops/402563", "https://data.delijn.be/stops/407845"], ["https://data.delijn.be/stops/101261", "https://data.delijn.be/stops/105275"], ["https://data.delijn.be/stops/405509", "https://data.delijn.be/stops/405514"], ["https://data.delijn.be/stops/208107", "https://data.delijn.be/stops/209107"], ["https://data.delijn.be/stops/202854", "https://data.delijn.be/stops/203854"], ["https://data.delijn.be/stops/401679", "https://data.delijn.be/stops/308229"], ["https://data.delijn.be/stops/203538", "https://data.delijn.be/stops/203947"], ["https://data.delijn.be/stops/401042", "https://data.delijn.be/stops/409059"], ["https://data.delijn.be/stops/206497", "https://data.delijn.be/stops/207150"], ["https://data.delijn.be/stops/400036", "https://data.delijn.be/stops/400314"], ["https://data.delijn.be/stops/402833", "https://data.delijn.be/stops/402837"], ["https://data.delijn.be/stops/409532", "https://data.delijn.be/stops/409545"], ["https://data.delijn.be/stops/500567", "https://data.delijn.be/stops/506041"], ["https://data.delijn.be/stops/508614", "https://data.delijn.be/stops/508615"], ["https://data.delijn.be/stops/301124", "https://data.delijn.be/stops/308790"], ["https://data.delijn.be/stops/504360", "https://data.delijn.be/stops/505534"], ["https://data.delijn.be/stops/104971", "https://data.delijn.be/stops/105387"], ["https://data.delijn.be/stops/307344", "https://data.delijn.be/stops/308693"], ["https://data.delijn.be/stops/104946", "https://data.delijn.be/stops/108865"], ["https://data.delijn.be/stops/304421", "https://data.delijn.be/stops/307387"], ["https://data.delijn.be/stops/401118", "https://data.delijn.be/stops/409079"], ["https://data.delijn.be/stops/400700", "https://data.delijn.be/stops/400836"], ["https://data.delijn.be/stops/400364", "https://data.delijn.be/stops/400365"], ["https://data.delijn.be/stops/201076", "https://data.delijn.be/stops/201450"], ["https://data.delijn.be/stops/501622", "https://data.delijn.be/stops/506021"], ["https://data.delijn.be/stops/404190", "https://data.delijn.be/stops/404192"], ["https://data.delijn.be/stops/205133", "https://data.delijn.be/stops/205142"], ["https://data.delijn.be/stops/206889", "https://data.delijn.be/stops/206912"], ["https://data.delijn.be/stops/401444", "https://data.delijn.be/stops/401493"], ["https://data.delijn.be/stops/201075", "https://data.delijn.be/stops/201449"], ["https://data.delijn.be/stops/405176", "https://data.delijn.be/stops/405213"], ["https://data.delijn.be/stops/104995", "https://data.delijn.be/stops/105010"], ["https://data.delijn.be/stops/308178", "https://data.delijn.be/stops/308291"], ["https://data.delijn.be/stops/208125", "https://data.delijn.be/stops/218029"], ["https://data.delijn.be/stops/402408", "https://data.delijn.be/stops/402416"], ["https://data.delijn.be/stops/208427", "https://data.delijn.be/stops/208595"], ["https://data.delijn.be/stops/304169", "https://data.delijn.be/stops/307553"], ["https://data.delijn.be/stops/405352", "https://data.delijn.be/stops/302832"], ["https://data.delijn.be/stops/102752", "https://data.delijn.be/stops/106382"], ["https://data.delijn.be/stops/301720", "https://data.delijn.be/stops/301742"], ["https://data.delijn.be/stops/202259", "https://data.delijn.be/stops/203099"], ["https://data.delijn.be/stops/406614", "https://data.delijn.be/stops/406615"], ["https://data.delijn.be/stops/107639", "https://data.delijn.be/stops/108836"], ["https://data.delijn.be/stops/308525", "https://data.delijn.be/stops/308526"], ["https://data.delijn.be/stops/501348", "https://data.delijn.be/stops/506291"], ["https://data.delijn.be/stops/504441", "https://data.delijn.be/stops/504449"], ["https://data.delijn.be/stops/306596", "https://data.delijn.be/stops/306598"], ["https://data.delijn.be/stops/400206", "https://data.delijn.be/stops/410001"], ["https://data.delijn.be/stops/204783", "https://data.delijn.be/stops/205475"], ["https://data.delijn.be/stops/401567", "https://data.delijn.be/stops/407348"], ["https://data.delijn.be/stops/106148", "https://data.delijn.be/stops/106440"], ["https://data.delijn.be/stops/306048", "https://data.delijn.be/stops/306049"], ["https://data.delijn.be/stops/407937", "https://data.delijn.be/stops/407938"], ["https://data.delijn.be/stops/301160", "https://data.delijn.be/stops/303224"], ["https://data.delijn.be/stops/404338", "https://data.delijn.be/stops/404349"], ["https://data.delijn.be/stops/301299", "https://data.delijn.be/stops/301300"], ["https://data.delijn.be/stops/502704", "https://data.delijn.be/stops/507705"], ["https://data.delijn.be/stops/201921", "https://data.delijn.be/stops/203516"], ["https://data.delijn.be/stops/301866", "https://data.delijn.be/stops/301869"], ["https://data.delijn.be/stops/505620", "https://data.delijn.be/stops/505622"], ["https://data.delijn.be/stops/207234", "https://data.delijn.be/stops/207235"], ["https://data.delijn.be/stops/401533", "https://data.delijn.be/stops/406018"], ["https://data.delijn.be/stops/108418", "https://data.delijn.be/stops/109572"], ["https://data.delijn.be/stops/101472", "https://data.delijn.be/stops/109616"], ["https://data.delijn.be/stops/107261", "https://data.delijn.be/stops/107264"], ["https://data.delijn.be/stops/403443", "https://data.delijn.be/stops/403453"], ["https://data.delijn.be/stops/206828", "https://data.delijn.be/stops/207828"], ["https://data.delijn.be/stops/301451", "https://data.delijn.be/stops/301484"], ["https://data.delijn.be/stops/406176", "https://data.delijn.be/stops/410401"], ["https://data.delijn.be/stops/400147", "https://data.delijn.be/stops/409207"], ["https://data.delijn.be/stops/203514", "https://data.delijn.be/stops/203515"], ["https://data.delijn.be/stops/101010", "https://data.delijn.be/stops/103090"], ["https://data.delijn.be/stops/202858", "https://data.delijn.be/stops/210098"], ["https://data.delijn.be/stops/103614", "https://data.delijn.be/stops/106308"], ["https://data.delijn.be/stops/404598", "https://data.delijn.be/stops/404601"], ["https://data.delijn.be/stops/203778", "https://data.delijn.be/stops/203779"], ["https://data.delijn.be/stops/403382", "https://data.delijn.be/stops/403527"], ["https://data.delijn.be/stops/307830", "https://data.delijn.be/stops/307831"], ["https://data.delijn.be/stops/403700", "https://data.delijn.be/stops/403701"], ["https://data.delijn.be/stops/403528", "https://data.delijn.be/stops/410390"], ["https://data.delijn.be/stops/103254", "https://data.delijn.be/stops/103958"], ["https://data.delijn.be/stops/300280", "https://data.delijn.be/stops/300282"], ["https://data.delijn.be/stops/301467", "https://data.delijn.be/stops/305667"], ["https://data.delijn.be/stops/402044", "https://data.delijn.be/stops/410079"], ["https://data.delijn.be/stops/209094", "https://data.delijn.be/stops/209404"], ["https://data.delijn.be/stops/301498", "https://data.delijn.be/stops/307957"], ["https://data.delijn.be/stops/200765", "https://data.delijn.be/stops/209380"], ["https://data.delijn.be/stops/102714", "https://data.delijn.be/stops/109588"], ["https://data.delijn.be/stops/202369", "https://data.delijn.be/stops/202976"], ["https://data.delijn.be/stops/400831", "https://data.delijn.be/stops/402011"], ["https://data.delijn.be/stops/305656", "https://data.delijn.be/stops/307790"], ["https://data.delijn.be/stops/308154", "https://data.delijn.be/stops/308155"], ["https://data.delijn.be/stops/101915", "https://data.delijn.be/stops/104510"], ["https://data.delijn.be/stops/207038", "https://data.delijn.be/stops/207879"], ["https://data.delijn.be/stops/204696", "https://data.delijn.be/stops/205685"], ["https://data.delijn.be/stops/300156", "https://data.delijn.be/stops/300166"], ["https://data.delijn.be/stops/201579", "https://data.delijn.be/stops/201580"], ["https://data.delijn.be/stops/206283", "https://data.delijn.be/stops/207284"], ["https://data.delijn.be/stops/200921", "https://data.delijn.be/stops/200941"], ["https://data.delijn.be/stops/304981", "https://data.delijn.be/stops/308013"], ["https://data.delijn.be/stops/405226", "https://data.delijn.be/stops/409348"], ["https://data.delijn.be/stops/208441", "https://data.delijn.be/stops/208674"], ["https://data.delijn.be/stops/200666", "https://data.delijn.be/stops/201841"], ["https://data.delijn.be/stops/201180", "https://data.delijn.be/stops/204951"], ["https://data.delijn.be/stops/109728", "https://data.delijn.be/stops/109785"], ["https://data.delijn.be/stops/506436", "https://data.delijn.be/stops/506690"], ["https://data.delijn.be/stops/101466", "https://data.delijn.be/stops/109250"], ["https://data.delijn.be/stops/402936", "https://data.delijn.be/stops/403963"], ["https://data.delijn.be/stops/304444", "https://data.delijn.be/stops/307042"], ["https://data.delijn.be/stops/502114", "https://data.delijn.be/stops/502128"], ["https://data.delijn.be/stops/501608", "https://data.delijn.be/stops/506018"], ["https://data.delijn.be/stops/105706", "https://data.delijn.be/stops/105712"], ["https://data.delijn.be/stops/104962", "https://data.delijn.be/stops/109244"], ["https://data.delijn.be/stops/106044", "https://data.delijn.be/stops/106058"], ["https://data.delijn.be/stops/103924", "https://data.delijn.be/stops/107250"], ["https://data.delijn.be/stops/303737", "https://data.delijn.be/stops/303742"], ["https://data.delijn.be/stops/308443", "https://data.delijn.be/stops/308692"], ["https://data.delijn.be/stops/507060", "https://data.delijn.be/stops/507071"], ["https://data.delijn.be/stops/302356", "https://data.delijn.be/stops/306289"], ["https://data.delijn.be/stops/102604", "https://data.delijn.be/stops/108709"], ["https://data.delijn.be/stops/400244", "https://data.delijn.be/stops/400264"], ["https://data.delijn.be/stops/206493", "https://data.delijn.be/stops/207493"], ["https://data.delijn.be/stops/200131", "https://data.delijn.be/stops/201131"], ["https://data.delijn.be/stops/104891", "https://data.delijn.be/stops/109347"], ["https://data.delijn.be/stops/300265", "https://data.delijn.be/stops/300271"], ["https://data.delijn.be/stops/207680", "https://data.delijn.be/stops/208154"], ["https://data.delijn.be/stops/101670", "https://data.delijn.be/stops/103090"], ["https://data.delijn.be/stops/206166", "https://data.delijn.be/stops/207166"], ["https://data.delijn.be/stops/105243", "https://data.delijn.be/stops/105839"], ["https://data.delijn.be/stops/204665", "https://data.delijn.be/stops/205665"], ["https://data.delijn.be/stops/403259", "https://data.delijn.be/stops/403394"], ["https://data.delijn.be/stops/300771", "https://data.delijn.be/stops/302403"], ["https://data.delijn.be/stops/503713", "https://data.delijn.be/stops/503715"], ["https://data.delijn.be/stops/202220", "https://data.delijn.be/stops/203219"], ["https://data.delijn.be/stops/105827", "https://data.delijn.be/stops/106829"], ["https://data.delijn.be/stops/400952", "https://data.delijn.be/stops/400983"], ["https://data.delijn.be/stops/105514", "https://data.delijn.be/stops/105516"], ["https://data.delijn.be/stops/504110", "https://data.delijn.be/stops/509114"], ["https://data.delijn.be/stops/307383", "https://data.delijn.be/stops/307390"], ["https://data.delijn.be/stops/501418", "https://data.delijn.be/stops/506229"], ["https://data.delijn.be/stops/200767", "https://data.delijn.be/stops/200771"], ["https://data.delijn.be/stops/305675", "https://data.delijn.be/stops/305687"], ["https://data.delijn.be/stops/408771", "https://data.delijn.be/stops/408772"], ["https://data.delijn.be/stops/301118", "https://data.delijn.be/stops/302242"], ["https://data.delijn.be/stops/106080", "https://data.delijn.be/stops/108732"], ["https://data.delijn.be/stops/407021", "https://data.delijn.be/stops/308745"], ["https://data.delijn.be/stops/501126", "https://data.delijn.be/stops/505221"], ["https://data.delijn.be/stops/301365", "https://data.delijn.be/stops/301368"], ["https://data.delijn.be/stops/301702", "https://data.delijn.be/stops/301761"], ["https://data.delijn.be/stops/509629", "https://data.delijn.be/stops/509630"], ["https://data.delijn.be/stops/503096", "https://data.delijn.be/stops/505792"], ["https://data.delijn.be/stops/201486", "https://data.delijn.be/stops/201890"], ["https://data.delijn.be/stops/103724", "https://data.delijn.be/stops/108093"], ["https://data.delijn.be/stops/108359", "https://data.delijn.be/stops/108362"], ["https://data.delijn.be/stops/109260", "https://data.delijn.be/stops/109267"], ["https://data.delijn.be/stops/301449", "https://data.delijn.be/stops/306680"], ["https://data.delijn.be/stops/105480", "https://data.delijn.be/stops/105687"], ["https://data.delijn.be/stops/305722", "https://data.delijn.be/stops/305728"], ["https://data.delijn.be/stops/308478", "https://data.delijn.be/stops/308480"], ["https://data.delijn.be/stops/104461", "https://data.delijn.be/stops/107187"], ["https://data.delijn.be/stops/404604", "https://data.delijn.be/stops/404607"], ["https://data.delijn.be/stops/207408", "https://data.delijn.be/stops/207409"], ["https://data.delijn.be/stops/101522", "https://data.delijn.be/stops/101523"], ["https://data.delijn.be/stops/404300", "https://data.delijn.be/stops/409572"], ["https://data.delijn.be/stops/200477", "https://data.delijn.be/stops/201477"], ["https://data.delijn.be/stops/400423", "https://data.delijn.be/stops/405537"], ["https://data.delijn.be/stops/208687", "https://data.delijn.be/stops/208690"], ["https://data.delijn.be/stops/507589", "https://data.delijn.be/stops/507595"], ["https://data.delijn.be/stops/109877", "https://data.delijn.be/stops/109878"], ["https://data.delijn.be/stops/501076", "https://data.delijn.be/stops/506076"], ["https://data.delijn.be/stops/106915", "https://data.delijn.be/stops/106916"], ["https://data.delijn.be/stops/410014", "https://data.delijn.be/stops/410015"], ["https://data.delijn.be/stops/203219", "https://data.delijn.be/stops/203220"], ["https://data.delijn.be/stops/103004", "https://data.delijn.be/stops/108331"], ["https://data.delijn.be/stops/504718", "https://data.delijn.be/stops/509349"], ["https://data.delijn.be/stops/301416", "https://data.delijn.be/stops/301418"], ["https://data.delijn.be/stops/106229", "https://data.delijn.be/stops/109801"], ["https://data.delijn.be/stops/401006", "https://data.delijn.be/stops/401060"], ["https://data.delijn.be/stops/402875", "https://data.delijn.be/stops/402877"], ["https://data.delijn.be/stops/104389", "https://data.delijn.be/stops/104391"], ["https://data.delijn.be/stops/505620", "https://data.delijn.be/stops/509894"], ["https://data.delijn.be/stops/505359", "https://data.delijn.be/stops/506054"], ["https://data.delijn.be/stops/506238", "https://data.delijn.be/stops/506370"], ["https://data.delijn.be/stops/101833", "https://data.delijn.be/stops/108233"], ["https://data.delijn.be/stops/109759", "https://data.delijn.be/stops/109766"], ["https://data.delijn.be/stops/201718", "https://data.delijn.be/stops/201725"], ["https://data.delijn.be/stops/503449", "https://data.delijn.be/stops/503460"], ["https://data.delijn.be/stops/200855", "https://data.delijn.be/stops/507759"], ["https://data.delijn.be/stops/305276", "https://data.delijn.be/stops/305313"], ["https://data.delijn.be/stops/402772", "https://data.delijn.be/stops/408038"], ["https://data.delijn.be/stops/209319", "https://data.delijn.be/stops/209375"], ["https://data.delijn.be/stops/401409", "https://data.delijn.be/stops/300988"], ["https://data.delijn.be/stops/303072", "https://data.delijn.be/stops/303073"], ["https://data.delijn.be/stops/108932", "https://data.delijn.be/stops/109219"], ["https://data.delijn.be/stops/108097", "https://data.delijn.be/stops/108099"], ["https://data.delijn.be/stops/509927", "https://data.delijn.be/stops/509929"], ["https://data.delijn.be/stops/204040", "https://data.delijn.be/stops/205040"], ["https://data.delijn.be/stops/205085", "https://data.delijn.be/stops/205798"], ["https://data.delijn.be/stops/207299", "https://data.delijn.be/stops/207301"], ["https://data.delijn.be/stops/507553", "https://data.delijn.be/stops/507666"], ["https://data.delijn.be/stops/104405", "https://data.delijn.be/stops/104406"], ["https://data.delijn.be/stops/305118", "https://data.delijn.be/stops/305119"], ["https://data.delijn.be/stops/303466", "https://data.delijn.be/stops/303467"], ["https://data.delijn.be/stops/509699", "https://data.delijn.be/stops/509703"], ["https://data.delijn.be/stops/502450", "https://data.delijn.be/stops/509830"], ["https://data.delijn.be/stops/106227", "https://data.delijn.be/stops/106230"], ["https://data.delijn.be/stops/501416", "https://data.delijn.be/stops/506419"], ["https://data.delijn.be/stops/406307", "https://data.delijn.be/stops/406325"], ["https://data.delijn.be/stops/102856", "https://data.delijn.be/stops/204611"], ["https://data.delijn.be/stops/201934", "https://data.delijn.be/stops/203951"], ["https://data.delijn.be/stops/106421", "https://data.delijn.be/stops/106510"], ["https://data.delijn.be/stops/502447", "https://data.delijn.be/stops/507447"], ["https://data.delijn.be/stops/401113", "https://data.delijn.be/stops/401158"], ["https://data.delijn.be/stops/404082", "https://data.delijn.be/stops/308077"], ["https://data.delijn.be/stops/300373", "https://data.delijn.be/stops/300374"], ["https://data.delijn.be/stops/201856", "https://data.delijn.be/stops/210037"], ["https://data.delijn.be/stops/203825", "https://data.delijn.be/stops/209263"], ["https://data.delijn.be/stops/202496", "https://data.delijn.be/stops/203496"], ["https://data.delijn.be/stops/103670", "https://data.delijn.be/stops/103675"], ["https://data.delijn.be/stops/305962", "https://data.delijn.be/stops/305963"], ["https://data.delijn.be/stops/108757", "https://data.delijn.be/stops/108758"], ["https://data.delijn.be/stops/404966", "https://data.delijn.be/stops/405648"], ["https://data.delijn.be/stops/508925", "https://data.delijn.be/stops/508928"], ["https://data.delijn.be/stops/404459", "https://data.delijn.be/stops/404535"], ["https://data.delijn.be/stops/408602", "https://data.delijn.be/stops/408610"], ["https://data.delijn.be/stops/504347", "https://data.delijn.be/stops/504350"], ["https://data.delijn.be/stops/504268", "https://data.delijn.be/stops/505819"], ["https://data.delijn.be/stops/302328", "https://data.delijn.be/stops/303468"], ["https://data.delijn.be/stops/302649", "https://data.delijn.be/stops/302657"], ["https://data.delijn.be/stops/504343", "https://data.delijn.be/stops/505787"], ["https://data.delijn.be/stops/502106", "https://data.delijn.be/stops/507124"], ["https://data.delijn.be/stops/109649", "https://data.delijn.be/stops/109650"], ["https://data.delijn.be/stops/402579", "https://data.delijn.be/stops/403473"], ["https://data.delijn.be/stops/505147", "https://data.delijn.be/stops/505312"], ["https://data.delijn.be/stops/409437", "https://data.delijn.be/stops/409680"], ["https://data.delijn.be/stops/303272", "https://data.delijn.be/stops/303304"], ["https://data.delijn.be/stops/202496", "https://data.delijn.be/stops/203140"], ["https://data.delijn.be/stops/103973", "https://data.delijn.be/stops/103974"], ["https://data.delijn.be/stops/304126", "https://data.delijn.be/stops/307556"], ["https://data.delijn.be/stops/503528", "https://data.delijn.be/stops/508531"], ["https://data.delijn.be/stops/502363", "https://data.delijn.be/stops/505171"], ["https://data.delijn.be/stops/503826", "https://data.delijn.be/stops/505993"], ["https://data.delijn.be/stops/306313", "https://data.delijn.be/stops/307003"], ["https://data.delijn.be/stops/505706", "https://data.delijn.be/stops/509140"], ["https://data.delijn.be/stops/207759", "https://data.delijn.be/stops/208186"], ["https://data.delijn.be/stops/102721", "https://data.delijn.be/stops/104723"], ["https://data.delijn.be/stops/104838", "https://data.delijn.be/stops/109567"], ["https://data.delijn.be/stops/506400", "https://data.delijn.be/stops/506401"], ["https://data.delijn.be/stops/501156", "https://data.delijn.be/stops/505519"], ["https://data.delijn.be/stops/507591", "https://data.delijn.be/stops/507750"], ["https://data.delijn.be/stops/505024", "https://data.delijn.be/stops/505743"], ["https://data.delijn.be/stops/503894", "https://data.delijn.be/stops/505642"], ["https://data.delijn.be/stops/202855", "https://data.delijn.be/stops/208714"], ["https://data.delijn.be/stops/400035", "https://data.delijn.be/stops/400681"], ["https://data.delijn.be/stops/305688", "https://data.delijn.be/stops/305689"], ["https://data.delijn.be/stops/404165", "https://data.delijn.be/stops/404282"], ["https://data.delijn.be/stops/402080", "https://data.delijn.be/stops/402374"], ["https://data.delijn.be/stops/402230", "https://data.delijn.be/stops/402292"], ["https://data.delijn.be/stops/508382", "https://data.delijn.be/stops/509760"], ["https://data.delijn.be/stops/304084", "https://data.delijn.be/stops/307504"], ["https://data.delijn.be/stops/201958", "https://data.delijn.be/stops/203470"], ["https://data.delijn.be/stops/106098", "https://data.delijn.be/stops/106114"], ["https://data.delijn.be/stops/302712", "https://data.delijn.be/stops/302728"], ["https://data.delijn.be/stops/502146", "https://data.delijn.be/stops/507681"], ["https://data.delijn.be/stops/404019", "https://data.delijn.be/stops/407067"], ["https://data.delijn.be/stops/202145", "https://data.delijn.be/stops/203145"], ["https://data.delijn.be/stops/301509", "https://data.delijn.be/stops/301522"], ["https://data.delijn.be/stops/403600", "https://data.delijn.be/stops/403601"], ["https://data.delijn.be/stops/403162", "https://data.delijn.be/stops/410361"], ["https://data.delijn.be/stops/502527", "https://data.delijn.be/stops/505017"], ["https://data.delijn.be/stops/300131", "https://data.delijn.be/stops/300143"], ["https://data.delijn.be/stops/302964", "https://data.delijn.be/stops/302971"], ["https://data.delijn.be/stops/303296", "https://data.delijn.be/stops/303301"], ["https://data.delijn.be/stops/102904", "https://data.delijn.be/stops/108982"], ["https://data.delijn.be/stops/409370", "https://data.delijn.be/stops/409371"], ["https://data.delijn.be/stops/107796", "https://data.delijn.be/stops/107798"], ["https://data.delijn.be/stops/201404", "https://data.delijn.be/stops/202040"], ["https://data.delijn.be/stops/301660", "https://data.delijn.be/stops/308438"], ["https://data.delijn.be/stops/400549", "https://data.delijn.be/stops/404060"], ["https://data.delijn.be/stops/401779", "https://data.delijn.be/stops/406016"], ["https://data.delijn.be/stops/505233", "https://data.delijn.be/stops/507233"], ["https://data.delijn.be/stops/302848", "https://data.delijn.be/stops/302850"], ["https://data.delijn.be/stops/301678", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/300059", "https://data.delijn.be/stops/306798"], ["https://data.delijn.be/stops/208616", "https://data.delijn.be/stops/209090"], ["https://data.delijn.be/stops/204097", "https://data.delijn.be/stops/204465"], ["https://data.delijn.be/stops/503808", "https://data.delijn.be/stops/504583"], ["https://data.delijn.be/stops/109936", "https://data.delijn.be/stops/109946"], ["https://data.delijn.be/stops/300549", "https://data.delijn.be/stops/300567"], ["https://data.delijn.be/stops/203890", "https://data.delijn.be/stops/211084"], ["https://data.delijn.be/stops/304148", "https://data.delijn.be/stops/304161"], ["https://data.delijn.be/stops/304620", "https://data.delijn.be/stops/304621"], ["https://data.delijn.be/stops/200765", "https://data.delijn.be/stops/200766"], ["https://data.delijn.be/stops/504367", "https://data.delijn.be/stops/509361"], ["https://data.delijn.be/stops/504467", "https://data.delijn.be/stops/509467"], ["https://data.delijn.be/stops/200575", "https://data.delijn.be/stops/201574"], ["https://data.delijn.be/stops/105281", "https://data.delijn.be/stops/105297"], ["https://data.delijn.be/stops/505826", "https://data.delijn.be/stops/508302"], ["https://data.delijn.be/stops/402942", "https://data.delijn.be/stops/301274"], ["https://data.delijn.be/stops/408237", "https://data.delijn.be/stops/308222"], ["https://data.delijn.be/stops/304607", "https://data.delijn.be/stops/304617"], ["https://data.delijn.be/stops/403482", "https://data.delijn.be/stops/403483"], ["https://data.delijn.be/stops/400505", "https://data.delijn.be/stops/400512"], ["https://data.delijn.be/stops/202526", "https://data.delijn.be/stops/202961"], ["https://data.delijn.be/stops/402584", "https://data.delijn.be/stops/402644"], ["https://data.delijn.be/stops/203867", "https://data.delijn.be/stops/208835"], ["https://data.delijn.be/stops/300085", "https://data.delijn.be/stops/306866"], ["https://data.delijn.be/stops/503830", "https://data.delijn.be/stops/508141"], ["https://data.delijn.be/stops/504985", "https://data.delijn.be/stops/505967"], ["https://data.delijn.be/stops/200704", "https://data.delijn.be/stops/200736"], ["https://data.delijn.be/stops/501096", "https://data.delijn.be/stops/501098"], ["https://data.delijn.be/stops/206130", "https://data.delijn.be/stops/206138"], ["https://data.delijn.be/stops/101785", "https://data.delijn.be/stops/103880"], ["https://data.delijn.be/stops/206898", "https://data.delijn.be/stops/207739"], ["https://data.delijn.be/stops/502443", "https://data.delijn.be/stops/502446"], ["https://data.delijn.be/stops/107444", "https://data.delijn.be/stops/107446"], ["https://data.delijn.be/stops/201840", "https://data.delijn.be/stops/202321"], ["https://data.delijn.be/stops/404898", "https://data.delijn.be/stops/404953"], ["https://data.delijn.be/stops/207268", "https://data.delijn.be/stops/207289"], ["https://data.delijn.be/stops/200226", "https://data.delijn.be/stops/201227"], ["https://data.delijn.be/stops/304177", "https://data.delijn.be/stops/306099"], ["https://data.delijn.be/stops/508324", "https://data.delijn.be/stops/508325"], ["https://data.delijn.be/stops/403685", "https://data.delijn.be/stops/403687"], ["https://data.delijn.be/stops/502291", "https://data.delijn.be/stops/502296"], ["https://data.delijn.be/stops/405705", "https://data.delijn.be/stops/405720"], ["https://data.delijn.be/stops/208009", "https://data.delijn.be/stops/208012"], ["https://data.delijn.be/stops/102632", "https://data.delijn.be/stops/107044"], ["https://data.delijn.be/stops/300185", "https://data.delijn.be/stops/300199"], ["https://data.delijn.be/stops/200943", "https://data.delijn.be/stops/200944"], ["https://data.delijn.be/stops/301375", "https://data.delijn.be/stops/301376"], ["https://data.delijn.be/stops/109262", "https://data.delijn.be/stops/109265"], ["https://data.delijn.be/stops/404435", "https://data.delijn.be/stops/404530"], ["https://data.delijn.be/stops/208085", "https://data.delijn.be/stops/208619"], ["https://data.delijn.be/stops/205979", "https://data.delijn.be/stops/207405"], ["https://data.delijn.be/stops/503347", "https://data.delijn.be/stops/503429"], ["https://data.delijn.be/stops/505662", "https://data.delijn.be/stops/507500"], ["https://data.delijn.be/stops/301236", "https://data.delijn.be/stops/305949"], ["https://data.delijn.be/stops/401033", "https://data.delijn.be/stops/406575"], ["https://data.delijn.be/stops/109639", "https://data.delijn.be/stops/109641"], ["https://data.delijn.be/stops/107934", "https://data.delijn.be/stops/303537"], ["https://data.delijn.be/stops/205039", "https://data.delijn.be/stops/205818"], ["https://data.delijn.be/stops/303628", "https://data.delijn.be/stops/304016"], ["https://data.delijn.be/stops/206101", "https://data.delijn.be/stops/207101"], ["https://data.delijn.be/stops/504941", "https://data.delijn.be/stops/505540"], ["https://data.delijn.be/stops/501241", "https://data.delijn.be/stops/501370"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/109380"], ["https://data.delijn.be/stops/407988", "https://data.delijn.be/stops/408071"], ["https://data.delijn.be/stops/105314", "https://data.delijn.be/stops/105444"], ["https://data.delijn.be/stops/109334", "https://data.delijn.be/stops/109336"], ["https://data.delijn.be/stops/102300", "https://data.delijn.be/stops/105130"], ["https://data.delijn.be/stops/406545", "https://data.delijn.be/stops/408387"], ["https://data.delijn.be/stops/108455", "https://data.delijn.be/stops/108456"], ["https://data.delijn.be/stops/300548", "https://data.delijn.be/stops/307859"], ["https://data.delijn.be/stops/304889", "https://data.delijn.be/stops/306718"], ["https://data.delijn.be/stops/101045", "https://data.delijn.be/stops/105425"], ["https://data.delijn.be/stops/405823", "https://data.delijn.be/stops/409727"], ["https://data.delijn.be/stops/505274", "https://data.delijn.be/stops/505275"], ["https://data.delijn.be/stops/405298", "https://data.delijn.be/stops/405299"], ["https://data.delijn.be/stops/201049", "https://data.delijn.be/stops/201185"], ["https://data.delijn.be/stops/404567", "https://data.delijn.be/stops/404569"], ["https://data.delijn.be/stops/206801", "https://data.delijn.be/stops/208487"], ["https://data.delijn.be/stops/102298", "https://data.delijn.be/stops/106588"], ["https://data.delijn.be/stops/302659", "https://data.delijn.be/stops/306339"], ["https://data.delijn.be/stops/504740", "https://data.delijn.be/stops/505401"], ["https://data.delijn.be/stops/200023", "https://data.delijn.be/stops/201100"], ["https://data.delijn.be/stops/502215", "https://data.delijn.be/stops/502535"], ["https://data.delijn.be/stops/503479", "https://data.delijn.be/stops/508479"], ["https://data.delijn.be/stops/502515", "https://data.delijn.be/stops/507515"], ["https://data.delijn.be/stops/305655", "https://data.delijn.be/stops/305671"], ["https://data.delijn.be/stops/305748", "https://data.delijn.be/stops/308130"], ["https://data.delijn.be/stops/104334", "https://data.delijn.be/stops/105854"], ["https://data.delijn.be/stops/202609", "https://data.delijn.be/stops/202611"], ["https://data.delijn.be/stops/501447", "https://data.delijn.be/stops/506454"], ["https://data.delijn.be/stops/404446", "https://data.delijn.be/stops/404447"], ["https://data.delijn.be/stops/500158", "https://data.delijn.be/stops/505120"], ["https://data.delijn.be/stops/504057", "https://data.delijn.be/stops/509055"], ["https://data.delijn.be/stops/208552", "https://data.delijn.be/stops/209552"], ["https://data.delijn.be/stops/505300", "https://data.delijn.be/stops/509572"], ["https://data.delijn.be/stops/400456", "https://data.delijn.be/stops/400459"], ["https://data.delijn.be/stops/505188", "https://data.delijn.be/stops/509557"], ["https://data.delijn.be/stops/302574", "https://data.delijn.be/stops/302576"], ["https://data.delijn.be/stops/303479", "https://data.delijn.be/stops/308739"], ["https://data.delijn.be/stops/400596", "https://data.delijn.be/stops/400608"], ["https://data.delijn.be/stops/505089", "https://data.delijn.be/stops/505308"], ["https://data.delijn.be/stops/108947", "https://data.delijn.be/stops/109224"], ["https://data.delijn.be/stops/407752", "https://data.delijn.be/stops/407760"], ["https://data.delijn.be/stops/503931", "https://data.delijn.be/stops/508916"], ["https://data.delijn.be/stops/105506", "https://data.delijn.be/stops/105507"], ["https://data.delijn.be/stops/502494", "https://data.delijn.be/stops/507494"], ["https://data.delijn.be/stops/303359", "https://data.delijn.be/stops/303393"], ["https://data.delijn.be/stops/107350", "https://data.delijn.be/stops/107355"], ["https://data.delijn.be/stops/200558", "https://data.delijn.be/stops/201558"], ["https://data.delijn.be/stops/505565", "https://data.delijn.be/stops/508505"], ["https://data.delijn.be/stops/305113", "https://data.delijn.be/stops/305131"], ["https://data.delijn.be/stops/404418", "https://data.delijn.be/stops/407249"], ["https://data.delijn.be/stops/101399", "https://data.delijn.be/stops/106534"], ["https://data.delijn.be/stops/501388", "https://data.delijn.be/stops/506388"], ["https://data.delijn.be/stops/204197", "https://data.delijn.be/stops/204198"], ["https://data.delijn.be/stops/107562", "https://data.delijn.be/stops/109435"], ["https://data.delijn.be/stops/301463", "https://data.delijn.be/stops/301497"], ["https://data.delijn.be/stops/200404", "https://data.delijn.be/stops/202981"], ["https://data.delijn.be/stops/104783", "https://data.delijn.be/stops/108123"], ["https://data.delijn.be/stops/108627", "https://data.delijn.be/stops/305860"], ["https://data.delijn.be/stops/302620", "https://data.delijn.be/stops/303265"], ["https://data.delijn.be/stops/300458", "https://data.delijn.be/stops/300466"], ["https://data.delijn.be/stops/201261", "https://data.delijn.be/stops/201946"], ["https://data.delijn.be/stops/303243", "https://data.delijn.be/stops/303245"], ["https://data.delijn.be/stops/505799", "https://data.delijn.be/stops/509287"], ["https://data.delijn.be/stops/106705", "https://data.delijn.be/stops/106707"], ["https://data.delijn.be/stops/307341", "https://data.delijn.be/stops/308692"], ["https://data.delijn.be/stops/503012", "https://data.delijn.be/stops/503013"], ["https://data.delijn.be/stops/300729", "https://data.delijn.be/stops/302298"], ["https://data.delijn.be/stops/208216", "https://data.delijn.be/stops/209216"], ["https://data.delijn.be/stops/101073", "https://data.delijn.be/stops/101077"], ["https://data.delijn.be/stops/200022", "https://data.delijn.be/stops/201113"], ["https://data.delijn.be/stops/108844", "https://data.delijn.be/stops/108845"], ["https://data.delijn.be/stops/104280", "https://data.delijn.be/stops/104945"], ["https://data.delijn.be/stops/508159", "https://data.delijn.be/stops/508171"], ["https://data.delijn.be/stops/102728", "https://data.delijn.be/stops/106585"], ["https://data.delijn.be/stops/202454", "https://data.delijn.be/stops/202455"], ["https://data.delijn.be/stops/407621", "https://data.delijn.be/stops/408448"], ["https://data.delijn.be/stops/303415", "https://data.delijn.be/stops/303432"], ["https://data.delijn.be/stops/405607", "https://data.delijn.be/stops/406500"], ["https://data.delijn.be/stops/200086", "https://data.delijn.be/stops/201935"], ["https://data.delijn.be/stops/200836", "https://data.delijn.be/stops/202302"], ["https://data.delijn.be/stops/201829", "https://data.delijn.be/stops/218011"], ["https://data.delijn.be/stops/300887", "https://data.delijn.be/stops/307792"], ["https://data.delijn.be/stops/201753", "https://data.delijn.be/stops/209216"], ["https://data.delijn.be/stops/203462", "https://data.delijn.be/stops/203465"], ["https://data.delijn.be/stops/303023", "https://data.delijn.be/stops/306123"], ["https://data.delijn.be/stops/504286", "https://data.delijn.be/stops/509038"], ["https://data.delijn.be/stops/208007", "https://data.delijn.be/stops/208008"], ["https://data.delijn.be/stops/308251", "https://data.delijn.be/stops/308252"], ["https://data.delijn.be/stops/301768", "https://data.delijn.be/stops/304255"], ["https://data.delijn.be/stops/402630", "https://data.delijn.be/stops/405663"], ["https://data.delijn.be/stops/303017", "https://data.delijn.be/stops/306110"], ["https://data.delijn.be/stops/503065", "https://data.delijn.be/stops/508060"], ["https://data.delijn.be/stops/105279", "https://data.delijn.be/stops/105298"], ["https://data.delijn.be/stops/404110", "https://data.delijn.be/stops/405124"], ["https://data.delijn.be/stops/305878", "https://data.delijn.be/stops/305879"], ["https://data.delijn.be/stops/209553", "https://data.delijn.be/stops/209571"], ["https://data.delijn.be/stops/102928", "https://data.delijn.be/stops/106127"], ["https://data.delijn.be/stops/402242", "https://data.delijn.be/stops/402404"], ["https://data.delijn.be/stops/109153", "https://data.delijn.be/stops/109231"], ["https://data.delijn.be/stops/400756", "https://data.delijn.be/stops/400838"], ["https://data.delijn.be/stops/406055", "https://data.delijn.be/stops/406060"], ["https://data.delijn.be/stops/402502", "https://data.delijn.be/stops/402543"], ["https://data.delijn.be/stops/408031", "https://data.delijn.be/stops/408121"], ["https://data.delijn.be/stops/108381", "https://data.delijn.be/stops/108383"], ["https://data.delijn.be/stops/403119", "https://data.delijn.be/stops/403121"], ["https://data.delijn.be/stops/408481", "https://data.delijn.be/stops/409438"], ["https://data.delijn.be/stops/102739", "https://data.delijn.be/stops/105523"], ["https://data.delijn.be/stops/403825", "https://data.delijn.be/stops/403877"], ["https://data.delijn.be/stops/101841", "https://data.delijn.be/stops/109405"], ["https://data.delijn.be/stops/403834", "https://data.delijn.be/stops/403835"], ["https://data.delijn.be/stops/106270", "https://data.delijn.be/stops/109626"], ["https://data.delijn.be/stops/208365", "https://data.delijn.be/stops/209365"], ["https://data.delijn.be/stops/503010", "https://data.delijn.be/stops/503021"], ["https://data.delijn.be/stops/405312", "https://data.delijn.be/stops/405503"], ["https://data.delijn.be/stops/104571", "https://data.delijn.be/stops/107531"], ["https://data.delijn.be/stops/200843", "https://data.delijn.be/stops/202300"], ["https://data.delijn.be/stops/206942", "https://data.delijn.be/stops/209160"], ["https://data.delijn.be/stops/206896", "https://data.delijn.be/stops/206897"], ["https://data.delijn.be/stops/204986", "https://data.delijn.be/stops/209394"], ["https://data.delijn.be/stops/200702", "https://data.delijn.be/stops/200729"], ["https://data.delijn.be/stops/200815", "https://data.delijn.be/stops/200891"], ["https://data.delijn.be/stops/203527", "https://data.delijn.be/stops/203540"], ["https://data.delijn.be/stops/500566", "https://data.delijn.be/stops/500568"], ["https://data.delijn.be/stops/502094", "https://data.delijn.be/stops/502168"], ["https://data.delijn.be/stops/208374", "https://data.delijn.be/stops/208739"], ["https://data.delijn.be/stops/208125", "https://data.delijn.be/stops/208520"], ["https://data.delijn.be/stops/303126", "https://data.delijn.be/stops/303131"], ["https://data.delijn.be/stops/502669", "https://data.delijn.be/stops/507670"], ["https://data.delijn.be/stops/400113", "https://data.delijn.be/stops/400134"], ["https://data.delijn.be/stops/106939", "https://data.delijn.be/stops/108808"], ["https://data.delijn.be/stops/303292", "https://data.delijn.be/stops/303322"], ["https://data.delijn.be/stops/301303", "https://data.delijn.be/stops/306046"], ["https://data.delijn.be/stops/104638", "https://data.delijn.be/stops/109539"], ["https://data.delijn.be/stops/406292", "https://data.delijn.be/stops/409261"], ["https://data.delijn.be/stops/107868", "https://data.delijn.be/stops/107870"], ["https://data.delijn.be/stops/303562", "https://data.delijn.be/stops/303564"], ["https://data.delijn.be/stops/503962", "https://data.delijn.be/stops/508042"], ["https://data.delijn.be/stops/402159", "https://data.delijn.be/stops/406871"], ["https://data.delijn.be/stops/204333", "https://data.delijn.be/stops/205333"], ["https://data.delijn.be/stops/507367", "https://data.delijn.be/stops/507426"], ["https://data.delijn.be/stops/207452", "https://data.delijn.be/stops/207453"], ["https://data.delijn.be/stops/103923", "https://data.delijn.be/stops/103927"], ["https://data.delijn.be/stops/402345", "https://data.delijn.be/stops/402354"], ["https://data.delijn.be/stops/303378", "https://data.delijn.be/stops/308715"], ["https://data.delijn.be/stops/402796", "https://data.delijn.be/stops/402797"], ["https://data.delijn.be/stops/405353", "https://data.delijn.be/stops/302832"], ["https://data.delijn.be/stops/200582", "https://data.delijn.be/stops/201581"], ["https://data.delijn.be/stops/201975", "https://data.delijn.be/stops/201979"], ["https://data.delijn.be/stops/202866", "https://data.delijn.be/stops/202867"], ["https://data.delijn.be/stops/208439", "https://data.delijn.be/stops/208671"], ["https://data.delijn.be/stops/108383", "https://data.delijn.be/stops/108447"], ["https://data.delijn.be/stops/202944", "https://data.delijn.be/stops/203945"], ["https://data.delijn.be/stops/101206", "https://data.delijn.be/stops/102633"], ["https://data.delijn.be/stops/204014", "https://data.delijn.be/stops/204686"], ["https://data.delijn.be/stops/504432", "https://data.delijn.be/stops/509437"], ["https://data.delijn.be/stops/503050", "https://data.delijn.be/stops/505942"], ["https://data.delijn.be/stops/300599", "https://data.delijn.be/stops/300618"], ["https://data.delijn.be/stops/501208", "https://data.delijn.be/stops/501426"], ["https://data.delijn.be/stops/307380", "https://data.delijn.be/stops/307454"], ["https://data.delijn.be/stops/503390", "https://data.delijn.be/stops/508212"], ["https://data.delijn.be/stops/200158", "https://data.delijn.be/stops/202943"], ["https://data.delijn.be/stops/502014", "https://data.delijn.be/stops/507154"], ["https://data.delijn.be/stops/504114", "https://data.delijn.be/stops/504699"], ["https://data.delijn.be/stops/506156", "https://data.delijn.be/stops/506436"], ["https://data.delijn.be/stops/101746", "https://data.delijn.be/stops/106386"], ["https://data.delijn.be/stops/202082", "https://data.delijn.be/stops/203084"], ["https://data.delijn.be/stops/202873", "https://data.delijn.be/stops/203873"], ["https://data.delijn.be/stops/102089", "https://data.delijn.be/stops/106805"], ["https://data.delijn.be/stops/501596", "https://data.delijn.be/stops/509635"], ["https://data.delijn.be/stops/206958", "https://data.delijn.be/stops/207184"], ["https://data.delijn.be/stops/304449", "https://data.delijn.be/stops/307697"], ["https://data.delijn.be/stops/403413", "https://data.delijn.be/stops/410289"], ["https://data.delijn.be/stops/502406", "https://data.delijn.be/stops/507383"], ["https://data.delijn.be/stops/501683", "https://data.delijn.be/stops/506261"], ["https://data.delijn.be/stops/107453", "https://data.delijn.be/stops/109755"], ["https://data.delijn.be/stops/400312", "https://data.delijn.be/stops/400422"], ["https://data.delijn.be/stops/503821", "https://data.delijn.be/stops/508016"], ["https://data.delijn.be/stops/503290", "https://data.delijn.be/stops/505129"], ["https://data.delijn.be/stops/502509", "https://data.delijn.be/stops/507509"], ["https://data.delijn.be/stops/300633", "https://data.delijn.be/stops/307264"], ["https://data.delijn.be/stops/107569", "https://data.delijn.be/stops/107743"], ["https://data.delijn.be/stops/305680", "https://data.delijn.be/stops/307839"], ["https://data.delijn.be/stops/501086", "https://data.delijn.be/stops/506088"], ["https://data.delijn.be/stops/101396", "https://data.delijn.be/stops/106515"], ["https://data.delijn.be/stops/308600", "https://data.delijn.be/stops/308669"], ["https://data.delijn.be/stops/400031", "https://data.delijn.be/stops/400321"], ["https://data.delijn.be/stops/404812", "https://data.delijn.be/stops/404833"], ["https://data.delijn.be/stops/105877", "https://data.delijn.be/stops/105879"], ["https://data.delijn.be/stops/301531", "https://data.delijn.be/stops/308083"], ["https://data.delijn.be/stops/400665", "https://data.delijn.be/stops/408957"], ["https://data.delijn.be/stops/505729", "https://data.delijn.be/stops/507289"], ["https://data.delijn.be/stops/501629", "https://data.delijn.be/stops/505905"], ["https://data.delijn.be/stops/204544", "https://data.delijn.be/stops/204554"], ["https://data.delijn.be/stops/501376", "https://data.delijn.be/stops/501382"], ["https://data.delijn.be/stops/508866", "https://data.delijn.be/stops/508874"], ["https://data.delijn.be/stops/208208", "https://data.delijn.be/stops/208209"], ["https://data.delijn.be/stops/102506", "https://data.delijn.be/stops/102508"], ["https://data.delijn.be/stops/101311", "https://data.delijn.be/stops/102932"], ["https://data.delijn.be/stops/503088", "https://data.delijn.be/stops/508973"], ["https://data.delijn.be/stops/300605", "https://data.delijn.be/stops/300606"], ["https://data.delijn.be/stops/405364", "https://data.delijn.be/stops/405370"], ["https://data.delijn.be/stops/208081", "https://data.delijn.be/stops/209081"], ["https://data.delijn.be/stops/407166", "https://data.delijn.be/stops/407489"], ["https://data.delijn.be/stops/505307", "https://data.delijn.be/stops/505813"], ["https://data.delijn.be/stops/504471", "https://data.delijn.be/stops/509103"], ["https://data.delijn.be/stops/302085", "https://data.delijn.be/stops/302089"], ["https://data.delijn.be/stops/508415", "https://data.delijn.be/stops/509907"], ["https://data.delijn.be/stops/501307", "https://data.delijn.be/stops/506734"], ["https://data.delijn.be/stops/306858", "https://data.delijn.be/stops/307359"], ["https://data.delijn.be/stops/502035", "https://data.delijn.be/stops/502616"], ["https://data.delijn.be/stops/207983", "https://data.delijn.be/stops/304269"], ["https://data.delijn.be/stops/104994", "https://data.delijn.be/stops/109695"], ["https://data.delijn.be/stops/409354", "https://data.delijn.be/stops/409375"], ["https://data.delijn.be/stops/202882", "https://data.delijn.be/stops/202883"], ["https://data.delijn.be/stops/200149", "https://data.delijn.be/stops/201512"], ["https://data.delijn.be/stops/206637", "https://data.delijn.be/stops/207638"], ["https://data.delijn.be/stops/202678", "https://data.delijn.be/stops/203678"], ["https://data.delijn.be/stops/204412", "https://data.delijn.be/stops/204443"], ["https://data.delijn.be/stops/105224", "https://data.delijn.be/stops/106837"], ["https://data.delijn.be/stops/300661", "https://data.delijn.be/stops/302469"], ["https://data.delijn.be/stops/409259", "https://data.delijn.be/stops/409261"], ["https://data.delijn.be/stops/101578", "https://data.delijn.be/stops/105461"], ["https://data.delijn.be/stops/504590", "https://data.delijn.be/stops/505975"], ["https://data.delijn.be/stops/502193", "https://data.delijn.be/stops/507193"], ["https://data.delijn.be/stops/409063", "https://data.delijn.be/stops/409073"], ["https://data.delijn.be/stops/101172", "https://data.delijn.be/stops/102380"], ["https://data.delijn.be/stops/406446", "https://data.delijn.be/stops/406746"], ["https://data.delijn.be/stops/206856", "https://data.delijn.be/stops/207220"], ["https://data.delijn.be/stops/301700", "https://data.delijn.be/stops/305906"], ["https://data.delijn.be/stops/307367", "https://data.delijn.be/stops/307375"], ["https://data.delijn.be/stops/205262", "https://data.delijn.be/stops/205269"], ["https://data.delijn.be/stops/208432", "https://data.delijn.be/stops/208808"], ["https://data.delijn.be/stops/406964", "https://data.delijn.be/stops/409444"], ["https://data.delijn.be/stops/109833", "https://data.delijn.be/stops/109953"], ["https://data.delijn.be/stops/401043", "https://data.delijn.be/stops/401147"], ["https://data.delijn.be/stops/501169", "https://data.delijn.be/stops/506172"], ["https://data.delijn.be/stops/207434", "https://data.delijn.be/stops/209691"], ["https://data.delijn.be/stops/205734", "https://data.delijn.be/stops/205758"], ["https://data.delijn.be/stops/202205", "https://data.delijn.be/stops/202769"], ["https://data.delijn.be/stops/500138", "https://data.delijn.be/stops/502739"], ["https://data.delijn.be/stops/400762", "https://data.delijn.be/stops/400767"], ["https://data.delijn.be/stops/301113", "https://data.delijn.be/stops/303674"], ["https://data.delijn.be/stops/206165", "https://data.delijn.be/stops/304553"], ["https://data.delijn.be/stops/101781", "https://data.delijn.be/stops/104162"], ["https://data.delijn.be/stops/204203", "https://data.delijn.be/stops/205203"], ["https://data.delijn.be/stops/209462", "https://data.delijn.be/stops/209513"], ["https://data.delijn.be/stops/404071", "https://data.delijn.be/stops/409302"], ["https://data.delijn.be/stops/104880", "https://data.delijn.be/stops/104881"], ["https://data.delijn.be/stops/401443", "https://data.delijn.be/stops/401649"], ["https://data.delijn.be/stops/302350", "https://data.delijn.be/stops/302361"], ["https://data.delijn.be/stops/204083", "https://data.delijn.be/stops/204086"], ["https://data.delijn.be/stops/206439", "https://data.delijn.be/stops/206441"], ["https://data.delijn.be/stops/301490", "https://data.delijn.be/stops/308071"], ["https://data.delijn.be/stops/307282", "https://data.delijn.be/stops/307534"], ["https://data.delijn.be/stops/402140", "https://data.delijn.be/stops/402438"], ["https://data.delijn.be/stops/304988", "https://data.delijn.be/stops/308022"], ["https://data.delijn.be/stops/208855", "https://data.delijn.be/stops/209855"], ["https://data.delijn.be/stops/301028", "https://data.delijn.be/stops/301032"], ["https://data.delijn.be/stops/206670", "https://data.delijn.be/stops/209109"], ["https://data.delijn.be/stops/204181", "https://data.delijn.be/stops/205181"], ["https://data.delijn.be/stops/406172", "https://data.delijn.be/stops/406281"], ["https://data.delijn.be/stops/208570", "https://data.delijn.be/stops/209570"], ["https://data.delijn.be/stops/401210", "https://data.delijn.be/stops/401225"], ["https://data.delijn.be/stops/200064", "https://data.delijn.be/stops/201064"], ["https://data.delijn.be/stops/209515", "https://data.delijn.be/stops/209672"], ["https://data.delijn.be/stops/206573", "https://data.delijn.be/stops/206591"], ["https://data.delijn.be/stops/503476", "https://data.delijn.be/stops/508454"], ["https://data.delijn.be/stops/501245", "https://data.delijn.be/stops/506247"], ["https://data.delijn.be/stops/302414", "https://data.delijn.be/stops/308814"], ["https://data.delijn.be/stops/208109", "https://data.delijn.be/stops/209109"], ["https://data.delijn.be/stops/406203", "https://data.delijn.be/stops/410270"], ["https://data.delijn.be/stops/107694", "https://data.delijn.be/stops/410261"], ["https://data.delijn.be/stops/107844", "https://data.delijn.be/stops/107848"], ["https://data.delijn.be/stops/206778", "https://data.delijn.be/stops/206802"], ["https://data.delijn.be/stops/107089", "https://data.delijn.be/stops/108182"], ["https://data.delijn.be/stops/103974", "https://data.delijn.be/stops/107180"], ["https://data.delijn.be/stops/200727", "https://data.delijn.be/stops/202415"], ["https://data.delijn.be/stops/102256", "https://data.delijn.be/stops/108308"], ["https://data.delijn.be/stops/305414", "https://data.delijn.be/stops/305415"], ["https://data.delijn.be/stops/200896", "https://data.delijn.be/stops/203055"], ["https://data.delijn.be/stops/504682", "https://data.delijn.be/stops/505414"], ["https://data.delijn.be/stops/108021", "https://data.delijn.be/stops/108022"], ["https://data.delijn.be/stops/504272", "https://data.delijn.be/stops/509575"], ["https://data.delijn.be/stops/104131", "https://data.delijn.be/stops/109579"], ["https://data.delijn.be/stops/504790", "https://data.delijn.be/stops/504791"], ["https://data.delijn.be/stops/207632", "https://data.delijn.be/stops/207633"], ["https://data.delijn.be/stops/403508", "https://data.delijn.be/stops/403511"], ["https://data.delijn.be/stops/409524", "https://data.delijn.be/stops/409526"], ["https://data.delijn.be/stops/307970", "https://data.delijn.be/stops/307971"], ["https://data.delijn.be/stops/106897", "https://data.delijn.be/stops/106898"], ["https://data.delijn.be/stops/403135", "https://data.delijn.be/stops/403138"], ["https://data.delijn.be/stops/308127", "https://data.delijn.be/stops/308128"], ["https://data.delijn.be/stops/504331", "https://data.delijn.be/stops/509331"], ["https://data.delijn.be/stops/210063", "https://data.delijn.be/stops/211120"], ["https://data.delijn.be/stops/300168", "https://data.delijn.be/stops/301224"], ["https://data.delijn.be/stops/507417", "https://data.delijn.be/stops/507439"], ["https://data.delijn.be/stops/300683", "https://data.delijn.be/stops/305962"], ["https://data.delijn.be/stops/400798", "https://data.delijn.be/stops/400799"], ["https://data.delijn.be/stops/202796", "https://data.delijn.be/stops/203312"], ["https://data.delijn.be/stops/203078", "https://data.delijn.be/stops/203342"], ["https://data.delijn.be/stops/303249", "https://data.delijn.be/stops/306312"], ["https://data.delijn.be/stops/501003", "https://data.delijn.be/stops/506010"], ["https://data.delijn.be/stops/200384", "https://data.delijn.be/stops/209727"], ["https://data.delijn.be/stops/306334", "https://data.delijn.be/stops/306335"], ["https://data.delijn.be/stops/504055", "https://data.delijn.be/stops/505110"], ["https://data.delijn.be/stops/300538", "https://data.delijn.be/stops/302366"], ["https://data.delijn.be/stops/107798", "https://data.delijn.be/stops/107823"], ["https://data.delijn.be/stops/101062", "https://data.delijn.be/stops/101063"], ["https://data.delijn.be/stops/108766", "https://data.delijn.be/stops/109270"], ["https://data.delijn.be/stops/205252", "https://data.delijn.be/stops/205734"], ["https://data.delijn.be/stops/401966", "https://data.delijn.be/stops/403075"], ["https://data.delijn.be/stops/400168", "https://data.delijn.be/stops/400169"], ["https://data.delijn.be/stops/206597", "https://data.delijn.be/stops/207596"], ["https://data.delijn.be/stops/300297", "https://data.delijn.be/stops/301316"], ["https://data.delijn.be/stops/400289", "https://data.delijn.be/stops/400359"], ["https://data.delijn.be/stops/201608", "https://data.delijn.be/stops/203770"], ["https://data.delijn.be/stops/101872", "https://data.delijn.be/stops/104239"], ["https://data.delijn.be/stops/208405", "https://data.delijn.be/stops/208415"], ["https://data.delijn.be/stops/101364", "https://data.delijn.be/stops/101401"], ["https://data.delijn.be/stops/200091", "https://data.delijn.be/stops/201091"], ["https://data.delijn.be/stops/207113", "https://data.delijn.be/stops/207907"], ["https://data.delijn.be/stops/104488", "https://data.delijn.be/stops/104489"], ["https://data.delijn.be/stops/306764", "https://data.delijn.be/stops/308815"], ["https://data.delijn.be/stops/108123", "https://data.delijn.be/stops/109584"], ["https://data.delijn.be/stops/204710", "https://data.delijn.be/stops/205338"], ["https://data.delijn.be/stops/403376", "https://data.delijn.be/stops/403509"], ["https://data.delijn.be/stops/208119", "https://data.delijn.be/stops/218008"], ["https://data.delijn.be/stops/206097", "https://data.delijn.be/stops/207098"], ["https://data.delijn.be/stops/300546", "https://data.delijn.be/stops/300547"], ["https://data.delijn.be/stops/104659", "https://data.delijn.be/stops/104662"], ["https://data.delijn.be/stops/103660", "https://data.delijn.be/stops/106218"], ["https://data.delijn.be/stops/303404", "https://data.delijn.be/stops/304828"], ["https://data.delijn.be/stops/203882", "https://data.delijn.be/stops/206938"], ["https://data.delijn.be/stops/101666", "https://data.delijn.be/stops/109188"], ["https://data.delijn.be/stops/503234", "https://data.delijn.be/stops/503251"], ["https://data.delijn.be/stops/104401", "https://data.delijn.be/stops/107126"], ["https://data.delijn.be/stops/304608", "https://data.delijn.be/stops/306171"], ["https://data.delijn.be/stops/201906", "https://data.delijn.be/stops/201907"], ["https://data.delijn.be/stops/400552", "https://data.delijn.be/stops/403584"], ["https://data.delijn.be/stops/306913", "https://data.delijn.be/stops/308875"], ["https://data.delijn.be/stops/205736", "https://data.delijn.be/stops/205737"], ["https://data.delijn.be/stops/300336", "https://data.delijn.be/stops/304459"], ["https://data.delijn.be/stops/504772", "https://data.delijn.be/stops/509533"], ["https://data.delijn.be/stops/408687", "https://data.delijn.be/stops/410083"], ["https://data.delijn.be/stops/203237", "https://data.delijn.be/stops/203269"], ["https://data.delijn.be/stops/403510", "https://data.delijn.be/stops/410215"], ["https://data.delijn.be/stops/105652", "https://data.delijn.be/stops/105653"], ["https://data.delijn.be/stops/302562", "https://data.delijn.be/stops/302577"], ["https://data.delijn.be/stops/401401", "https://data.delijn.be/stops/410152"], ["https://data.delijn.be/stops/401529", "https://data.delijn.be/stops/401540"], ["https://data.delijn.be/stops/209043", "https://data.delijn.be/stops/209223"], ["https://data.delijn.be/stops/304735", "https://data.delijn.be/stops/304754"], ["https://data.delijn.be/stops/406097", "https://data.delijn.be/stops/407914"], ["https://data.delijn.be/stops/300507", "https://data.delijn.be/stops/302919"], ["https://data.delijn.be/stops/504023", "https://data.delijn.be/stops/504125"], ["https://data.delijn.be/stops/304725", "https://data.delijn.be/stops/304730"], ["https://data.delijn.be/stops/301321", "https://data.delijn.be/stops/301322"], ["https://data.delijn.be/stops/307938", "https://data.delijn.be/stops/308777"], ["https://data.delijn.be/stops/106524", "https://data.delijn.be/stops/106526"], ["https://data.delijn.be/stops/505406", "https://data.delijn.be/stops/508142"], ["https://data.delijn.be/stops/103795", "https://data.delijn.be/stops/106055"], ["https://data.delijn.be/stops/408290", "https://data.delijn.be/stops/408291"], ["https://data.delijn.be/stops/106595", "https://data.delijn.be/stops/106597"], ["https://data.delijn.be/stops/204296", "https://data.delijn.be/stops/205296"], ["https://data.delijn.be/stops/305773", "https://data.delijn.be/stops/305794"], ["https://data.delijn.be/stops/505673", "https://data.delijn.be/stops/505689"], ["https://data.delijn.be/stops/105277", "https://data.delijn.be/stops/106755"], ["https://data.delijn.be/stops/208104", "https://data.delijn.be/stops/209135"], ["https://data.delijn.be/stops/108397", "https://data.delijn.be/stops/108400"], ["https://data.delijn.be/stops/106109", "https://data.delijn.be/stops/106174"], ["https://data.delijn.be/stops/302117", "https://data.delijn.be/stops/304023"], ["https://data.delijn.be/stops/308471", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/103298", "https://data.delijn.be/stops/105098"], ["https://data.delijn.be/stops/305228", "https://data.delijn.be/stops/305233"], ["https://data.delijn.be/stops/202787", "https://data.delijn.be/stops/209643"], ["https://data.delijn.be/stops/200816", "https://data.delijn.be/stops/208919"], ["https://data.delijn.be/stops/300723", "https://data.delijn.be/stops/306935"], ["https://data.delijn.be/stops/204717", "https://data.delijn.be/stops/204721"], ["https://data.delijn.be/stops/302589", "https://data.delijn.be/stops/302605"], ["https://data.delijn.be/stops/201164", "https://data.delijn.be/stops/209727"], ["https://data.delijn.be/stops/401042", "https://data.delijn.be/stops/401081"], ["https://data.delijn.be/stops/503562", "https://data.delijn.be/stops/505191"], ["https://data.delijn.be/stops/102517", "https://data.delijn.be/stops/406515"], ["https://data.delijn.be/stops/303984", "https://data.delijn.be/stops/305870"], ["https://data.delijn.be/stops/404887", "https://data.delijn.be/stops/408642"], ["https://data.delijn.be/stops/208275", "https://data.delijn.be/stops/209275"], ["https://data.delijn.be/stops/405339", "https://data.delijn.be/stops/305063"], ["https://data.delijn.be/stops/502044", "https://data.delijn.be/stops/507617"], ["https://data.delijn.be/stops/106171", "https://data.delijn.be/stops/106173"], ["https://data.delijn.be/stops/204396", "https://data.delijn.be/stops/205416"], ["https://data.delijn.be/stops/301270", "https://data.delijn.be/stops/301278"], ["https://data.delijn.be/stops/107511", "https://data.delijn.be/stops/107513"], ["https://data.delijn.be/stops/509280", "https://data.delijn.be/stops/509284"], ["https://data.delijn.be/stops/108966", "https://data.delijn.be/stops/108968"], ["https://data.delijn.be/stops/302793", "https://data.delijn.be/stops/302810"], ["https://data.delijn.be/stops/202333", "https://data.delijn.be/stops/203332"], ["https://data.delijn.be/stops/102820", "https://data.delijn.be/stops/104480"], ["https://data.delijn.be/stops/109852", "https://data.delijn.be/stops/109858"], ["https://data.delijn.be/stops/101976", "https://data.delijn.be/stops/109058"], ["https://data.delijn.be/stops/103292", "https://data.delijn.be/stops/108801"], ["https://data.delijn.be/stops/404425", "https://data.delijn.be/stops/404457"], ["https://data.delijn.be/stops/402641", "https://data.delijn.be/stops/405560"], ["https://data.delijn.be/stops/503074", "https://data.delijn.be/stops/508522"], ["https://data.delijn.be/stops/407659", "https://data.delijn.be/stops/407661"], ["https://data.delijn.be/stops/503819", "https://data.delijn.be/stops/508544"], ["https://data.delijn.be/stops/216014", "https://data.delijn.be/stops/217014"], ["https://data.delijn.be/stops/207674", "https://data.delijn.be/stops/208139"], ["https://data.delijn.be/stops/403731", "https://data.delijn.be/stops/403778"], ["https://data.delijn.be/stops/206573", "https://data.delijn.be/stops/207573"], ["https://data.delijn.be/stops/505154", "https://data.delijn.be/stops/505833"], ["https://data.delijn.be/stops/202083", "https://data.delijn.be/stops/203084"], ["https://data.delijn.be/stops/409311", "https://data.delijn.be/stops/409318"], ["https://data.delijn.be/stops/207563", "https://data.delijn.be/stops/207577"], ["https://data.delijn.be/stops/509033", "https://data.delijn.be/stops/509471"], ["https://data.delijn.be/stops/406258", "https://data.delijn.be/stops/406259"], ["https://data.delijn.be/stops/106637", "https://data.delijn.be/stops/106677"], ["https://data.delijn.be/stops/308557", "https://data.delijn.be/stops/308558"], ["https://data.delijn.be/stops/202336", "https://data.delijn.be/stops/202337"], ["https://data.delijn.be/stops/300698", "https://data.delijn.be/stops/306939"], ["https://data.delijn.be/stops/102058", "https://data.delijn.be/stops/102283"], ["https://data.delijn.be/stops/200155", "https://data.delijn.be/stops/201155"], ["https://data.delijn.be/stops/102943", "https://data.delijn.be/stops/105656"], ["https://data.delijn.be/stops/504678", "https://data.delijn.be/stops/505436"], ["https://data.delijn.be/stops/109606", "https://data.delijn.be/stops/109737"], ["https://data.delijn.be/stops/504465", "https://data.delijn.be/stops/509464"], ["https://data.delijn.be/stops/402587", "https://data.delijn.be/stops/407952"], ["https://data.delijn.be/stops/207221", "https://data.delijn.be/stops/207346"], ["https://data.delijn.be/stops/105009", "https://data.delijn.be/stops/105011"], ["https://data.delijn.be/stops/508558", "https://data.delijn.be/stops/508874"], ["https://data.delijn.be/stops/206584", "https://data.delijn.be/stops/207840"], ["https://data.delijn.be/stops/503801", "https://data.delijn.be/stops/508801"], ["https://data.delijn.be/stops/403378", "https://data.delijn.be/stops/403467"], ["https://data.delijn.be/stops/301923", "https://data.delijn.be/stops/306159"], ["https://data.delijn.be/stops/400614", "https://data.delijn.be/stops/400624"], ["https://data.delijn.be/stops/102087", "https://data.delijn.be/stops/109514"], ["https://data.delijn.be/stops/403673", "https://data.delijn.be/stops/405635"], ["https://data.delijn.be/stops/408279", "https://data.delijn.be/stops/408375"], ["https://data.delijn.be/stops/504166", "https://data.delijn.be/stops/505108"], ["https://data.delijn.be/stops/304733", "https://data.delijn.be/stops/306557"], ["https://data.delijn.be/stops/101154", "https://data.delijn.be/stops/102756"], ["https://data.delijn.be/stops/204592", "https://data.delijn.be/stops/205156"], ["https://data.delijn.be/stops/400354", "https://data.delijn.be/stops/400356"], ["https://data.delijn.be/stops/106594", "https://data.delijn.be/stops/107795"], ["https://data.delijn.be/stops/402047", "https://data.delijn.be/stops/402349"], ["https://data.delijn.be/stops/200666", "https://data.delijn.be/stops/201810"], ["https://data.delijn.be/stops/207188", "https://data.delijn.be/stops/207189"], ["https://data.delijn.be/stops/206913", "https://data.delijn.be/stops/207913"], ["https://data.delijn.be/stops/106910", "https://data.delijn.be/stops/107256"], ["https://data.delijn.be/stops/106919", "https://data.delijn.be/stops/106946"], ["https://data.delijn.be/stops/400054", "https://data.delijn.be/stops/400139"], ["https://data.delijn.be/stops/300081", "https://data.delijn.be/stops/307343"], ["https://data.delijn.be/stops/401411", "https://data.delijn.be/stops/401416"], ["https://data.delijn.be/stops/302933", "https://data.delijn.be/stops/303044"], ["https://data.delijn.be/stops/208642", "https://data.delijn.be/stops/209641"], ["https://data.delijn.be/stops/201103", "https://data.delijn.be/stops/201362"], ["https://data.delijn.be/stops/400708", "https://data.delijn.be/stops/400712"], ["https://data.delijn.be/stops/403822", "https://data.delijn.be/stops/406973"], ["https://data.delijn.be/stops/300705", "https://data.delijn.be/stops/300706"], ["https://data.delijn.be/stops/403210", "https://data.delijn.be/stops/403211"], ["https://data.delijn.be/stops/307355", "https://data.delijn.be/stops/307356"], ["https://data.delijn.be/stops/300472", "https://data.delijn.be/stops/308061"], ["https://data.delijn.be/stops/109391", "https://data.delijn.be/stops/109604"], ["https://data.delijn.be/stops/407853", "https://data.delijn.be/stops/408005"], ["https://data.delijn.be/stops/303450", "https://data.delijn.be/stops/306299"], ["https://data.delijn.be/stops/505393", "https://data.delijn.be/stops/508161"], ["https://data.delijn.be/stops/200827", "https://data.delijn.be/stops/507069"], ["https://data.delijn.be/stops/200574", "https://data.delijn.be/stops/200575"], ["https://data.delijn.be/stops/207307", "https://data.delijn.be/stops/207391"], ["https://data.delijn.be/stops/102463", "https://data.delijn.be/stops/102464"], ["https://data.delijn.be/stops/402670", "https://data.delijn.be/stops/402728"], ["https://data.delijn.be/stops/500024", "https://data.delijn.be/stops/503987"], ["https://data.delijn.be/stops/208517", "https://data.delijn.be/stops/208535"], ["https://data.delijn.be/stops/201423", "https://data.delijn.be/stops/209718"], ["https://data.delijn.be/stops/206939", "https://data.delijn.be/stops/207939"], ["https://data.delijn.be/stops/102639", "https://data.delijn.be/stops/104918"], ["https://data.delijn.be/stops/405866", "https://data.delijn.be/stops/409727"], ["https://data.delijn.be/stops/105306", "https://data.delijn.be/stops/105353"], ["https://data.delijn.be/stops/503093", "https://data.delijn.be/stops/508089"], ["https://data.delijn.be/stops/300269", "https://data.delijn.be/stops/300270"], ["https://data.delijn.be/stops/200830", "https://data.delijn.be/stops/505064"], ["https://data.delijn.be/stops/302376", "https://data.delijn.be/stops/307842"], ["https://data.delijn.be/stops/504020", "https://data.delijn.be/stops/508153"], ["https://data.delijn.be/stops/407600", "https://data.delijn.be/stops/407607"], ["https://data.delijn.be/stops/105603", "https://data.delijn.be/stops/105604"], ["https://data.delijn.be/stops/104185", "https://data.delijn.be/stops/104220"], ["https://data.delijn.be/stops/407334", "https://data.delijn.be/stops/409496"], ["https://data.delijn.be/stops/204187", "https://data.delijn.be/stops/204188"], ["https://data.delijn.be/stops/202187", "https://data.delijn.be/stops/202188"], ["https://data.delijn.be/stops/307320", "https://data.delijn.be/stops/307323"], ["https://data.delijn.be/stops/404878", "https://data.delijn.be/stops/404943"], ["https://data.delijn.be/stops/200510", "https://data.delijn.be/stops/202358"], ["https://data.delijn.be/stops/106591", "https://data.delijn.be/stops/107249"], ["https://data.delijn.be/stops/206266", "https://data.delijn.be/stops/206526"], ["https://data.delijn.be/stops/103487", "https://data.delijn.be/stops/109159"], ["https://data.delijn.be/stops/209457", "https://data.delijn.be/stops/209586"], ["https://data.delijn.be/stops/201843", "https://data.delijn.be/stops/202194"], ["https://data.delijn.be/stops/403212", "https://data.delijn.be/stops/403479"], ["https://data.delijn.be/stops/107685", "https://data.delijn.be/stops/108620"], ["https://data.delijn.be/stops/301776", "https://data.delijn.be/stops/301786"], ["https://data.delijn.be/stops/104606", "https://data.delijn.be/stops/104672"], ["https://data.delijn.be/stops/504122", "https://data.delijn.be/stops/509259"], ["https://data.delijn.be/stops/208591", "https://data.delijn.be/stops/209591"], ["https://data.delijn.be/stops/104573", "https://data.delijn.be/stops/104574"], ["https://data.delijn.be/stops/203446", "https://data.delijn.be/stops/203447"], ["https://data.delijn.be/stops/403379", "https://data.delijn.be/stops/410391"], ["https://data.delijn.be/stops/404123", "https://data.delijn.be/stops/410213"], ["https://data.delijn.be/stops/204614", "https://data.delijn.be/stops/204615"], ["https://data.delijn.be/stops/503485", "https://data.delijn.be/stops/508989"], ["https://data.delijn.be/stops/404882", "https://data.delijn.be/stops/404965"], ["https://data.delijn.be/stops/408294", "https://data.delijn.be/stops/308182"], ["https://data.delijn.be/stops/109856", "https://data.delijn.be/stops/109941"], ["https://data.delijn.be/stops/402832", "https://data.delijn.be/stops/402833"], ["https://data.delijn.be/stops/401800", "https://data.delijn.be/stops/401801"], ["https://data.delijn.be/stops/307494", "https://data.delijn.be/stops/307495"], ["https://data.delijn.be/stops/301630", "https://data.delijn.be/stops/301633"], ["https://data.delijn.be/stops/201941", "https://data.delijn.be/stops/203943"], ["https://data.delijn.be/stops/403080", "https://data.delijn.be/stops/403081"], ["https://data.delijn.be/stops/204196", "https://data.delijn.be/stops/204238"], ["https://data.delijn.be/stops/505744", "https://data.delijn.be/stops/507536"], ["https://data.delijn.be/stops/300181", "https://data.delijn.be/stops/300228"], ["https://data.delijn.be/stops/404478", "https://data.delijn.be/stops/406758"], ["https://data.delijn.be/stops/208114", "https://data.delijn.be/stops/209114"], ["https://data.delijn.be/stops/201403", "https://data.delijn.be/stops/203040"], ["https://data.delijn.be/stops/304202", "https://data.delijn.be/stops/305999"], ["https://data.delijn.be/stops/102067", "https://data.delijn.be/stops/106927"], ["https://data.delijn.be/stops/207372", "https://data.delijn.be/stops/207718"], ["https://data.delijn.be/stops/401476", "https://data.delijn.be/stops/410306"], ["https://data.delijn.be/stops/405812", "https://data.delijn.be/stops/405813"], ["https://data.delijn.be/stops/500158", "https://data.delijn.be/stops/510030"], ["https://data.delijn.be/stops/204075", "https://data.delijn.be/stops/204236"], ["https://data.delijn.be/stops/405368", "https://data.delijn.be/stops/405391"], ["https://data.delijn.be/stops/407899", "https://data.delijn.be/stops/408070"], ["https://data.delijn.be/stops/405612", "https://data.delijn.be/stops/405613"], ["https://data.delijn.be/stops/400733", "https://data.delijn.be/stops/409664"], ["https://data.delijn.be/stops/300141", "https://data.delijn.be/stops/300142"], ["https://data.delijn.be/stops/108678", "https://data.delijn.be/stops/306629"], ["https://data.delijn.be/stops/401330", "https://data.delijn.be/stops/401390"], ["https://data.delijn.be/stops/300470", "https://data.delijn.be/stops/300471"], ["https://data.delijn.be/stops/204581", "https://data.delijn.be/stops/205579"], ["https://data.delijn.be/stops/506765", "https://data.delijn.be/stops/509285"], ["https://data.delijn.be/stops/404306", "https://data.delijn.be/stops/409659"], ["https://data.delijn.be/stops/102693", "https://data.delijn.be/stops/104840"], ["https://data.delijn.be/stops/106251", "https://data.delijn.be/stops/109122"], ["https://data.delijn.be/stops/406685", "https://data.delijn.be/stops/406699"], ["https://data.delijn.be/stops/509860", "https://data.delijn.be/stops/509861"], ["https://data.delijn.be/stops/107053", "https://data.delijn.be/stops/107054"], ["https://data.delijn.be/stops/307933", "https://data.delijn.be/stops/307934"], ["https://data.delijn.be/stops/300621", "https://data.delijn.be/stops/306800"], ["https://data.delijn.be/stops/401830", "https://data.delijn.be/stops/401831"], ["https://data.delijn.be/stops/401438", "https://data.delijn.be/stops/401439"], ["https://data.delijn.be/stops/200897", "https://data.delijn.be/stops/203053"], ["https://data.delijn.be/stops/204188", "https://data.delijn.be/stops/205228"], ["https://data.delijn.be/stops/206285", "https://data.delijn.be/stops/206286"], ["https://data.delijn.be/stops/103258", "https://data.delijn.be/stops/103304"], ["https://data.delijn.be/stops/400630", "https://data.delijn.be/stops/400631"], ["https://data.delijn.be/stops/102207", "https://data.delijn.be/stops/106239"], ["https://data.delijn.be/stops/103160", "https://data.delijn.be/stops/107711"], ["https://data.delijn.be/stops/406176", "https://data.delijn.be/stops/410224"], ["https://data.delijn.be/stops/502253", "https://data.delijn.be/stops/505223"], ["https://data.delijn.be/stops/400286", "https://data.delijn.be/stops/400287"], ["https://data.delijn.be/stops/200911", "https://data.delijn.be/stops/203254"], ["https://data.delijn.be/stops/109167", "https://data.delijn.be/stops/109170"], ["https://data.delijn.be/stops/401728", "https://data.delijn.be/stops/406047"], ["https://data.delijn.be/stops/308016", "https://data.delijn.be/stops/308018"], ["https://data.delijn.be/stops/305583", "https://data.delijn.be/stops/307044"], ["https://data.delijn.be/stops/301586", "https://data.delijn.be/stops/301589"], ["https://data.delijn.be/stops/504647", "https://data.delijn.be/stops/509647"], ["https://data.delijn.be/stops/300408", "https://data.delijn.be/stops/301996"], ["https://data.delijn.be/stops/306838", "https://data.delijn.be/stops/308541"], ["https://data.delijn.be/stops/406952", "https://data.delijn.be/stops/409471"], ["https://data.delijn.be/stops/404333", "https://data.delijn.be/stops/404382"], ["https://data.delijn.be/stops/203183", "https://data.delijn.be/stops/204237"], ["https://data.delijn.be/stops/303986", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/502309", "https://data.delijn.be/stops/502426"], ["https://data.delijn.be/stops/103488", "https://data.delijn.be/stops/103493"], ["https://data.delijn.be/stops/206490", "https://data.delijn.be/stops/206491"], ["https://data.delijn.be/stops/208749", "https://data.delijn.be/stops/209639"], ["https://data.delijn.be/stops/200689", "https://data.delijn.be/stops/200693"], ["https://data.delijn.be/stops/502431", "https://data.delijn.be/stops/502694"], ["https://data.delijn.be/stops/204520", "https://data.delijn.be/stops/205065"], ["https://data.delijn.be/stops/501179", "https://data.delijn.be/stops/506775"], ["https://data.delijn.be/stops/401183", "https://data.delijn.be/stops/410124"], ["https://data.delijn.be/stops/509593", "https://data.delijn.be/stops/509594"], ["https://data.delijn.be/stops/300890", "https://data.delijn.be/stops/305319"], ["https://data.delijn.be/stops/104010", "https://data.delijn.be/stops/106890"], ["https://data.delijn.be/stops/407608", "https://data.delijn.be/stops/407629"], ["https://data.delijn.be/stops/502489", "https://data.delijn.be/stops/502498"], ["https://data.delijn.be/stops/401074", "https://data.delijn.be/stops/401083"], ["https://data.delijn.be/stops/408603", "https://data.delijn.be/stops/408607"], ["https://data.delijn.be/stops/202425", "https://data.delijn.be/stops/203425"], ["https://data.delijn.be/stops/403072", "https://data.delijn.be/stops/403086"], ["https://data.delijn.be/stops/200418", "https://data.delijn.be/stops/201418"], ["https://data.delijn.be/stops/507029", "https://data.delijn.be/stops/507037"], ["https://data.delijn.be/stops/302370", "https://data.delijn.be/stops/302371"], ["https://data.delijn.be/stops/401651", "https://data.delijn.be/stops/306327"], ["https://data.delijn.be/stops/400201", "https://data.delijn.be/stops/400238"], ["https://data.delijn.be/stops/103246", "https://data.delijn.be/stops/108915"], ["https://data.delijn.be/stops/407294", "https://data.delijn.be/stops/407295"], ["https://data.delijn.be/stops/302203", "https://data.delijn.be/stops/304001"], ["https://data.delijn.be/stops/107953", "https://data.delijn.be/stops/108985"], ["https://data.delijn.be/stops/202554", "https://data.delijn.be/stops/202555"], ["https://data.delijn.be/stops/503730", "https://data.delijn.be/stops/508730"], ["https://data.delijn.be/stops/304495", "https://data.delijn.be/stops/304519"], ["https://data.delijn.be/stops/300701", "https://data.delijn.be/stops/306945"], ["https://data.delijn.be/stops/403234", "https://data.delijn.be/stops/403235"], ["https://data.delijn.be/stops/300388", "https://data.delijn.be/stops/308637"], ["https://data.delijn.be/stops/108377", "https://data.delijn.be/stops/108381"], ["https://data.delijn.be/stops/202243", "https://data.delijn.be/stops/203486"], ["https://data.delijn.be/stops/407859", "https://data.delijn.be/stops/408169"], ["https://data.delijn.be/stops/200682", "https://data.delijn.be/stops/200850"], ["https://data.delijn.be/stops/200478", "https://data.delijn.be/stops/201054"], ["https://data.delijn.be/stops/101823", "https://data.delijn.be/stops/102393"], ["https://data.delijn.be/stops/206903", "https://data.delijn.be/stops/207260"], ["https://data.delijn.be/stops/104778", "https://data.delijn.be/stops/108159"], ["https://data.delijn.be/stops/303742", "https://data.delijn.be/stops/303788"], ["https://data.delijn.be/stops/301428", "https://data.delijn.be/stops/307320"], ["https://data.delijn.be/stops/102931", "https://data.delijn.be/stops/103135"], ["https://data.delijn.be/stops/308443", "https://data.delijn.be/stops/308535"], ["https://data.delijn.be/stops/409290", "https://data.delijn.be/stops/409291"], ["https://data.delijn.be/stops/505948", "https://data.delijn.be/stops/508301"], ["https://data.delijn.be/stops/206537", "https://data.delijn.be/stops/209742"], ["https://data.delijn.be/stops/503386", "https://data.delijn.be/stops/509772"], ["https://data.delijn.be/stops/208140", "https://data.delijn.be/stops/209141"], ["https://data.delijn.be/stops/208011", "https://data.delijn.be/stops/209008"], ["https://data.delijn.be/stops/505353", "https://data.delijn.be/stops/507297"], ["https://data.delijn.be/stops/506047", "https://data.delijn.be/stops/507728"], ["https://data.delijn.be/stops/501385", "https://data.delijn.be/stops/501392"], ["https://data.delijn.be/stops/204037", "https://data.delijn.be/stops/205247"], ["https://data.delijn.be/stops/203739", "https://data.delijn.be/stops/206431"], ["https://data.delijn.be/stops/101586", "https://data.delijn.be/stops/104099"], ["https://data.delijn.be/stops/504498", "https://data.delijn.be/stops/509501"], ["https://data.delijn.be/stops/301517", "https://data.delijn.be/stops/308076"], ["https://data.delijn.be/stops/206830", "https://data.delijn.be/stops/206997"], ["https://data.delijn.be/stops/109004", "https://data.delijn.be/stops/109006"], ["https://data.delijn.be/stops/406978", "https://data.delijn.be/stops/409478"], ["https://data.delijn.be/stops/107174", "https://data.delijn.be/stops/107736"], ["https://data.delijn.be/stops/103319", "https://data.delijn.be/stops/103620"], ["https://data.delijn.be/stops/302425", "https://data.delijn.be/stops/302428"], ["https://data.delijn.be/stops/301345", "https://data.delijn.be/stops/304683"], ["https://data.delijn.be/stops/104958", "https://data.delijn.be/stops/108380"], ["https://data.delijn.be/stops/405177", "https://data.delijn.be/stops/405204"], ["https://data.delijn.be/stops/504703", "https://data.delijn.be/stops/505302"], ["https://data.delijn.be/stops/206383", "https://data.delijn.be/stops/207383"], ["https://data.delijn.be/stops/101187", "https://data.delijn.be/stops/104982"], ["https://data.delijn.be/stops/102691", "https://data.delijn.be/stops/104175"], ["https://data.delijn.be/stops/408838", "https://data.delijn.be/stops/408843"], ["https://data.delijn.be/stops/300165", "https://data.delijn.be/stops/300166"], ["https://data.delijn.be/stops/101857", "https://data.delijn.be/stops/106034"], ["https://data.delijn.be/stops/204987", "https://data.delijn.be/stops/209257"], ["https://data.delijn.be/stops/502477", "https://data.delijn.be/stops/507477"], ["https://data.delijn.be/stops/403990", "https://data.delijn.be/stops/407067"], ["https://data.delijn.be/stops/206005", "https://data.delijn.be/stops/206006"], ["https://data.delijn.be/stops/207789", "https://data.delijn.be/stops/209373"], ["https://data.delijn.be/stops/201779", "https://data.delijn.be/stops/208249"], ["https://data.delijn.be/stops/301671", "https://data.delijn.be/stops/301672"], ["https://data.delijn.be/stops/105113", "https://data.delijn.be/stops/105151"], ["https://data.delijn.be/stops/107186", "https://data.delijn.be/stops/107189"], ["https://data.delijn.be/stops/108088", "https://data.delijn.be/stops/108689"], ["https://data.delijn.be/stops/403427", "https://data.delijn.be/stops/410289"], ["https://data.delijn.be/stops/200133", "https://data.delijn.be/stops/201133"], ["https://data.delijn.be/stops/402201", "https://data.delijn.be/stops/402317"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/106620"], ["https://data.delijn.be/stops/302325", "https://data.delijn.be/stops/302958"], ["https://data.delijn.be/stops/305412", "https://data.delijn.be/stops/305925"], ["https://data.delijn.be/stops/101488", "https://data.delijn.be/stops/108748"], ["https://data.delijn.be/stops/300767", "https://data.delijn.be/stops/301071"], ["https://data.delijn.be/stops/204377", "https://data.delijn.be/stops/204798"], ["https://data.delijn.be/stops/104479", "https://data.delijn.be/stops/308607"], ["https://data.delijn.be/stops/503669", "https://data.delijn.be/stops/508664"], ["https://data.delijn.be/stops/406050", "https://data.delijn.be/stops/406051"], ["https://data.delijn.be/stops/502307", "https://data.delijn.be/stops/507307"], ["https://data.delijn.be/stops/303509", "https://data.delijn.be/stops/303510"], ["https://data.delijn.be/stops/503873", "https://data.delijn.be/stops/509756"], ["https://data.delijn.be/stops/202905", "https://data.delijn.be/stops/202907"], ["https://data.delijn.be/stops/200912", "https://data.delijn.be/stops/203690"], ["https://data.delijn.be/stops/200932", "https://data.delijn.be/stops/203255"], ["https://data.delijn.be/stops/407682", "https://data.delijn.be/stops/407683"], ["https://data.delijn.be/stops/208251", "https://data.delijn.be/stops/209251"], ["https://data.delijn.be/stops/507393", "https://data.delijn.be/stops/507909"], ["https://data.delijn.be/stops/504199", "https://data.delijn.be/stops/504720"], ["https://data.delijn.be/stops/305200", "https://data.delijn.be/stops/305217"], ["https://data.delijn.be/stops/200819", "https://data.delijn.be/stops/202301"], ["https://data.delijn.be/stops/403463", "https://data.delijn.be/stops/410012"], ["https://data.delijn.be/stops/102751", "https://data.delijn.be/stops/103290"], ["https://data.delijn.be/stops/408096", "https://data.delijn.be/stops/408098"], ["https://data.delijn.be/stops/204052", "https://data.delijn.be/stops/205054"], ["https://data.delijn.be/stops/306645", "https://data.delijn.be/stops/306646"], ["https://data.delijn.be/stops/106006", "https://data.delijn.be/stops/107909"], ["https://data.delijn.be/stops/501486", "https://data.delijn.be/stops/506139"], ["https://data.delijn.be/stops/105464", "https://data.delijn.be/stops/105667"], ["https://data.delijn.be/stops/304677", "https://data.delijn.be/stops/304683"], ["https://data.delijn.be/stops/307397", "https://data.delijn.be/stops/307420"], ["https://data.delijn.be/stops/407291", "https://data.delijn.be/stops/407295"], ["https://data.delijn.be/stops/501697", "https://data.delijn.be/stops/502012"], ["https://data.delijn.be/stops/306369", "https://data.delijn.be/stops/306370"], ["https://data.delijn.be/stops/300234", "https://data.delijn.be/stops/300236"], ["https://data.delijn.be/stops/403375", "https://data.delijn.be/stops/403560"], ["https://data.delijn.be/stops/305681", "https://data.delijn.be/stops/305701"], ["https://data.delijn.be/stops/102764", "https://data.delijn.be/stops/107398"], ["https://data.delijn.be/stops/507210", "https://data.delijn.be/stops/507235"], ["https://data.delijn.be/stops/301469", "https://data.delijn.be/stops/301485"], ["https://data.delijn.be/stops/205439", "https://data.delijn.be/stops/505602"], ["https://data.delijn.be/stops/103676", "https://data.delijn.be/stops/106218"], ["https://data.delijn.be/stops/109838", "https://data.delijn.be/stops/109930"], ["https://data.delijn.be/stops/101969", "https://data.delijn.be/stops/109300"], ["https://data.delijn.be/stops/101974", "https://data.delijn.be/stops/307364"], ["https://data.delijn.be/stops/408956", "https://data.delijn.be/stops/408957"], ["https://data.delijn.be/stops/302928", "https://data.delijn.be/stops/302929"], ["https://data.delijn.be/stops/302681", "https://data.delijn.be/stops/308926"], ["https://data.delijn.be/stops/302362", "https://data.delijn.be/stops/302363"], ["https://data.delijn.be/stops/307395", "https://data.delijn.be/stops/307397"], ["https://data.delijn.be/stops/206915", "https://data.delijn.be/stops/207738"], ["https://data.delijn.be/stops/400517", "https://data.delijn.be/stops/404051"], ["https://data.delijn.be/stops/304150", "https://data.delijn.be/stops/304151"], ["https://data.delijn.be/stops/305231", "https://data.delijn.be/stops/305255"], ["https://data.delijn.be/stops/407150", "https://data.delijn.be/stops/409502"], ["https://data.delijn.be/stops/401484", "https://data.delijn.be/stops/401495"], ["https://data.delijn.be/stops/108331", "https://data.delijn.be/stops/109331"], ["https://data.delijn.be/stops/504167", "https://data.delijn.be/stops/504475"], ["https://data.delijn.be/stops/406285", "https://data.delijn.be/stops/410354"], ["https://data.delijn.be/stops/206422", "https://data.delijn.be/stops/206965"], ["https://data.delijn.be/stops/202743", "https://data.delijn.be/stops/202866"], ["https://data.delijn.be/stops/502260", "https://data.delijn.be/stops/507264"], ["https://data.delijn.be/stops/200524", "https://data.delijn.be/stops/201595"], ["https://data.delijn.be/stops/508128", "https://data.delijn.be/stops/508129"], ["https://data.delijn.be/stops/306950", "https://data.delijn.be/stops/306951"], ["https://data.delijn.be/stops/502470", "https://data.delijn.be/stops/502475"], ["https://data.delijn.be/stops/200880", "https://data.delijn.be/stops/203061"], ["https://data.delijn.be/stops/305250", "https://data.delijn.be/stops/305255"], ["https://data.delijn.be/stops/201929", "https://data.delijn.be/stops/203473"], ["https://data.delijn.be/stops/101645", "https://data.delijn.be/stops/105515"], ["https://data.delijn.be/stops/303247", "https://data.delijn.be/stops/304860"], ["https://data.delijn.be/stops/102637", "https://data.delijn.be/stops/104921"], ["https://data.delijn.be/stops/508631", "https://data.delijn.be/stops/508633"], ["https://data.delijn.be/stops/204025", "https://data.delijn.be/stops/204026"], ["https://data.delijn.be/stops/209645", "https://data.delijn.be/stops/211041"], ["https://data.delijn.be/stops/108524", "https://data.delijn.be/stops/108526"], ["https://data.delijn.be/stops/106943", "https://data.delijn.be/stops/106944"], ["https://data.delijn.be/stops/305967", "https://data.delijn.be/stops/307330"], ["https://data.delijn.be/stops/304302", "https://data.delijn.be/stops/304351"], ["https://data.delijn.be/stops/305726", "https://data.delijn.be/stops/308131"], ["https://data.delijn.be/stops/509357", "https://data.delijn.be/stops/509586"], ["https://data.delijn.be/stops/407918", "https://data.delijn.be/stops/407921"], ["https://data.delijn.be/stops/106382", "https://data.delijn.be/stops/108058"], ["https://data.delijn.be/stops/307718", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/508725", "https://data.delijn.be/stops/509364"], ["https://data.delijn.be/stops/507224", "https://data.delijn.be/stops/507561"], ["https://data.delijn.be/stops/104020", "https://data.delijn.be/stops/105680"], ["https://data.delijn.be/stops/401394", "https://data.delijn.be/stops/401396"], ["https://data.delijn.be/stops/303490", "https://data.delijn.be/stops/303491"], ["https://data.delijn.be/stops/404162", "https://data.delijn.be/stops/404163"], ["https://data.delijn.be/stops/506204", "https://data.delijn.be/stops/506286"], ["https://data.delijn.be/stops/104004", "https://data.delijn.be/stops/107835"], ["https://data.delijn.be/stops/103648", "https://data.delijn.be/stops/107733"], ["https://data.delijn.be/stops/104131", "https://data.delijn.be/stops/108432"], ["https://data.delijn.be/stops/206968", "https://data.delijn.be/stops/208835"], ["https://data.delijn.be/stops/300791", "https://data.delijn.be/stops/301010"], ["https://data.delijn.be/stops/107404", "https://data.delijn.be/stops/107407"], ["https://data.delijn.be/stops/102642", "https://data.delijn.be/stops/205447"], ["https://data.delijn.be/stops/109177", "https://data.delijn.be/stops/109230"], ["https://data.delijn.be/stops/504545", "https://data.delijn.be/stops/509545"], ["https://data.delijn.be/stops/306097", "https://data.delijn.be/stops/306100"], ["https://data.delijn.be/stops/102900", "https://data.delijn.be/stops/103995"], ["https://data.delijn.be/stops/204187", "https://data.delijn.be/stops/205187"], ["https://data.delijn.be/stops/504257", "https://data.delijn.be/stops/504707"], ["https://data.delijn.be/stops/400575", "https://data.delijn.be/stops/400581"], ["https://data.delijn.be/stops/304823", "https://data.delijn.be/stops/304895"], ["https://data.delijn.be/stops/106022", "https://data.delijn.be/stops/106024"], ["https://data.delijn.be/stops/204160", "https://data.delijn.be/stops/204593"], ["https://data.delijn.be/stops/102123", "https://data.delijn.be/stops/109576"], ["https://data.delijn.be/stops/508309", "https://data.delijn.be/stops/509908"], ["https://data.delijn.be/stops/408855", "https://data.delijn.be/stops/408861"], ["https://data.delijn.be/stops/401187", "https://data.delijn.be/stops/401355"], ["https://data.delijn.be/stops/400705", "https://data.delijn.be/stops/404376"], ["https://data.delijn.be/stops/502436", "https://data.delijn.be/stops/507425"], ["https://data.delijn.be/stops/105874", "https://data.delijn.be/stops/105877"], ["https://data.delijn.be/stops/505607", "https://data.delijn.be/stops/505611"], ["https://data.delijn.be/stops/105133", "https://data.delijn.be/stops/108804"], ["https://data.delijn.be/stops/307151", "https://data.delijn.be/stops/307159"], ["https://data.delijn.be/stops/104600", "https://data.delijn.be/stops/105070"], ["https://data.delijn.be/stops/107016", "https://data.delijn.be/stops/107111"], ["https://data.delijn.be/stops/303016", "https://data.delijn.be/stops/306280"], ["https://data.delijn.be/stops/400780", "https://data.delijn.be/stops/409664"], ["https://data.delijn.be/stops/106681", "https://data.delijn.be/stops/106682"], ["https://data.delijn.be/stops/305968", "https://data.delijn.be/stops/306325"], ["https://data.delijn.be/stops/204061", "https://data.delijn.be/stops/205711"], ["https://data.delijn.be/stops/307646", "https://data.delijn.be/stops/307690"], ["https://data.delijn.be/stops/206693", "https://data.delijn.be/stops/207693"], ["https://data.delijn.be/stops/508759", "https://data.delijn.be/stops/508762"], ["https://data.delijn.be/stops/102881", "https://data.delijn.be/stops/108153"], ["https://data.delijn.be/stops/209474", "https://data.delijn.be/stops/209669"], ["https://data.delijn.be/stops/104847", "https://data.delijn.be/stops/106792"], ["https://data.delijn.be/stops/301532", "https://data.delijn.be/stops/308088"], ["https://data.delijn.be/stops/303288", "https://data.delijn.be/stops/303303"], ["https://data.delijn.be/stops/106420", "https://data.delijn.be/stops/106512"], ["https://data.delijn.be/stops/402409", "https://data.delijn.be/stops/406929"], ["https://data.delijn.be/stops/306704", "https://data.delijn.be/stops/307937"], ["https://data.delijn.be/stops/505841", "https://data.delijn.be/stops/509349"], ["https://data.delijn.be/stops/203996", "https://data.delijn.be/stops/206788"], ["https://data.delijn.be/stops/507013", "https://data.delijn.be/stops/507024"], ["https://data.delijn.be/stops/200532", "https://data.delijn.be/stops/201532"], ["https://data.delijn.be/stops/505393", "https://data.delijn.be/stops/505956"], ["https://data.delijn.be/stops/400472", "https://data.delijn.be/stops/404669"], ["https://data.delijn.be/stops/303418", "https://data.delijn.be/stops/306948"], ["https://data.delijn.be/stops/200453", "https://data.delijn.be/stops/209266"], ["https://data.delijn.be/stops/205363", "https://data.delijn.be/stops/205685"], ["https://data.delijn.be/stops/203179", "https://data.delijn.be/stops/209867"], ["https://data.delijn.be/stops/306721", "https://data.delijn.be/stops/306723"], ["https://data.delijn.be/stops/304669", "https://data.delijn.be/stops/304671"], ["https://data.delijn.be/stops/505942", "https://data.delijn.be/stops/508050"], ["https://data.delijn.be/stops/208346", "https://data.delijn.be/stops/208786"], ["https://data.delijn.be/stops/400985", "https://data.delijn.be/stops/405612"], ["https://data.delijn.be/stops/406168", "https://data.delijn.be/stops/406281"], ["https://data.delijn.be/stops/400207", "https://data.delijn.be/stops/400238"], ["https://data.delijn.be/stops/409382", "https://data.delijn.be/stops/409392"], ["https://data.delijn.be/stops/401771", "https://data.delijn.be/stops/401834"], ["https://data.delijn.be/stops/200826", "https://data.delijn.be/stops/200862"], ["https://data.delijn.be/stops/404212", "https://data.delijn.be/stops/405547"], ["https://data.delijn.be/stops/407926", "https://data.delijn.be/stops/407927"], ["https://data.delijn.be/stops/206158", "https://data.delijn.be/stops/206159"], ["https://data.delijn.be/stops/301978", "https://data.delijn.be/stops/307279"], ["https://data.delijn.be/stops/503138", "https://data.delijn.be/stops/508138"], ["https://data.delijn.be/stops/204069", "https://data.delijn.be/stops/204386"], ["https://data.delijn.be/stops/208611", "https://data.delijn.be/stops/209548"], ["https://data.delijn.be/stops/200109", "https://data.delijn.be/stops/201109"], ["https://data.delijn.be/stops/207168", "https://data.delijn.be/stops/303793"], ["https://data.delijn.be/stops/505640", "https://data.delijn.be/stops/505778"], ["https://data.delijn.be/stops/202770", "https://data.delijn.be/stops/203770"], ["https://data.delijn.be/stops/507524", "https://data.delijn.be/stops/507708"], ["https://data.delijn.be/stops/102019", "https://data.delijn.be/stops/104092"], ["https://data.delijn.be/stops/304583", "https://data.delijn.be/stops/304591"], ["https://data.delijn.be/stops/410142", "https://data.delijn.be/stops/410143"], ["https://data.delijn.be/stops/201950", "https://data.delijn.be/stops/203466"], ["https://data.delijn.be/stops/502546", "https://data.delijn.be/stops/507546"], ["https://data.delijn.be/stops/300095", "https://data.delijn.be/stops/305992"], ["https://data.delijn.be/stops/403055", "https://data.delijn.be/stops/410324"], ["https://data.delijn.be/stops/103046", "https://data.delijn.be/stops/103047"], ["https://data.delijn.be/stops/303020", "https://data.delijn.be/stops/303108"], ["https://data.delijn.be/stops/104049", "https://data.delijn.be/stops/107485"], ["https://data.delijn.be/stops/308727", "https://data.delijn.be/stops/308731"], ["https://data.delijn.be/stops/102949", "https://data.delijn.be/stops/107387"], ["https://data.delijn.be/stops/200240", "https://data.delijn.be/stops/201592"], ["https://data.delijn.be/stops/402534", "https://data.delijn.be/stops/410022"], ["https://data.delijn.be/stops/109241", "https://data.delijn.be/stops/109242"], ["https://data.delijn.be/stops/203586", "https://data.delijn.be/stops/210112"], ["https://data.delijn.be/stops/105501", "https://data.delijn.be/stops/105689"], ["https://data.delijn.be/stops/300471", "https://data.delijn.be/stops/308081"], ["https://data.delijn.be/stops/408148", "https://data.delijn.be/stops/408149"], ["https://data.delijn.be/stops/208132", "https://data.delijn.be/stops/208133"], ["https://data.delijn.be/stops/108969", "https://data.delijn.be/stops/401936"], ["https://data.delijn.be/stops/502599", "https://data.delijn.be/stops/505726"], ["https://data.delijn.be/stops/502022", "https://data.delijn.be/stops/502913"], ["https://data.delijn.be/stops/403038", "https://data.delijn.be/stops/403256"], ["https://data.delijn.be/stops/302381", "https://data.delijn.be/stops/302382"], ["https://data.delijn.be/stops/400602", "https://data.delijn.be/stops/405998"], ["https://data.delijn.be/stops/208502", "https://data.delijn.be/stops/208503"], ["https://data.delijn.be/stops/104703", "https://data.delijn.be/stops/107088"], ["https://data.delijn.be/stops/107594", "https://data.delijn.be/stops/107722"], ["https://data.delijn.be/stops/407095", "https://data.delijn.be/stops/409427"], ["https://data.delijn.be/stops/404347", "https://data.delijn.be/stops/404348"], ["https://data.delijn.be/stops/504234", "https://data.delijn.be/stops/509234"], ["https://data.delijn.be/stops/202528", "https://data.delijn.be/stops/203528"], ["https://data.delijn.be/stops/302175", "https://data.delijn.be/stops/302183"], ["https://data.delijn.be/stops/204348", "https://data.delijn.be/stops/205348"], ["https://data.delijn.be/stops/205990", "https://data.delijn.be/stops/208782"], ["https://data.delijn.be/stops/302801", "https://data.delijn.be/stops/307837"], ["https://data.delijn.be/stops/305594", "https://data.delijn.be/stops/306344"], ["https://data.delijn.be/stops/102742", "https://data.delijn.be/stops/107403"], ["https://data.delijn.be/stops/103501", "https://data.delijn.be/stops/109143"], ["https://data.delijn.be/stops/300139", "https://data.delijn.be/stops/300146"], ["https://data.delijn.be/stops/401500", "https://data.delijn.be/stops/401710"], ["https://data.delijn.be/stops/404336", "https://data.delijn.be/stops/404337"], ["https://data.delijn.be/stops/509230", "https://data.delijn.be/stops/509231"], ["https://data.delijn.be/stops/300401", "https://data.delijn.be/stops/300406"], ["https://data.delijn.be/stops/300190", "https://data.delijn.be/stops/302127"], ["https://data.delijn.be/stops/206342", "https://data.delijn.be/stops/206343"], ["https://data.delijn.be/stops/207752", "https://data.delijn.be/stops/207753"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/302927"], ["https://data.delijn.be/stops/406658", "https://data.delijn.be/stops/406692"], ["https://data.delijn.be/stops/108294", "https://data.delijn.be/stops/108302"], ["https://data.delijn.be/stops/301727", "https://data.delijn.be/stops/301734"], ["https://data.delijn.be/stops/400773", "https://data.delijn.be/stops/405269"], ["https://data.delijn.be/stops/207758", "https://data.delijn.be/stops/207759"], ["https://data.delijn.be/stops/200809", "https://data.delijn.be/stops/200884"], ["https://data.delijn.be/stops/104034", "https://data.delijn.be/stops/105083"], ["https://data.delijn.be/stops/305706", "https://data.delijn.be/stops/307926"], ["https://data.delijn.be/stops/408323", "https://data.delijn.be/stops/408333"], ["https://data.delijn.be/stops/303584", "https://data.delijn.be/stops/306383"], ["https://data.delijn.be/stops/402101", "https://data.delijn.be/stops/402335"], ["https://data.delijn.be/stops/401104", "https://data.delijn.be/stops/401110"], ["https://data.delijn.be/stops/202880", "https://data.delijn.be/stops/209534"], ["https://data.delijn.be/stops/505222", "https://data.delijn.be/stops/505345"], ["https://data.delijn.be/stops/205578", "https://data.delijn.be/stops/207276"], ["https://data.delijn.be/stops/503554", "https://data.delijn.be/stops/508584"], ["https://data.delijn.be/stops/502262", "https://data.delijn.be/stops/507351"], ["https://data.delijn.be/stops/402167", "https://data.delijn.be/stops/406870"], ["https://data.delijn.be/stops/108819", "https://data.delijn.be/stops/108822"], ["https://data.delijn.be/stops/303162", "https://data.delijn.be/stops/303168"], ["https://data.delijn.be/stops/504879", "https://data.delijn.be/stops/505017"], ["https://data.delijn.be/stops/405302", "https://data.delijn.be/stops/405304"], ["https://data.delijn.be/stops/400776", "https://data.delijn.be/stops/404558"], ["https://data.delijn.be/stops/200301", "https://data.delijn.be/stops/201261"], ["https://data.delijn.be/stops/203583", "https://data.delijn.be/stops/215003"], ["https://data.delijn.be/stops/304569", "https://data.delijn.be/stops/304570"], ["https://data.delijn.be/stops/101590", "https://data.delijn.be/stops/102600"], ["https://data.delijn.be/stops/504362", "https://data.delijn.be/stops/505139"], ["https://data.delijn.be/stops/404445", "https://data.delijn.be/stops/404456"], ["https://data.delijn.be/stops/505953", "https://data.delijn.be/stops/506000"], ["https://data.delijn.be/stops/501397", "https://data.delijn.be/stops/501403"], ["https://data.delijn.be/stops/400604", "https://data.delijn.be/stops/400620"], ["https://data.delijn.be/stops/206840", "https://data.delijn.be/stops/207587"], ["https://data.delijn.be/stops/406632", "https://data.delijn.be/stops/406645"], ["https://data.delijn.be/stops/103013", "https://data.delijn.be/stops/109021"], ["https://data.delijn.be/stops/400110", "https://data.delijn.be/stops/400172"], ["https://data.delijn.be/stops/407141", "https://data.delijn.be/stops/407325"], ["https://data.delijn.be/stops/304112", "https://data.delijn.be/stops/306278"], ["https://data.delijn.be/stops/404157", "https://data.delijn.be/stops/404282"], ["https://data.delijn.be/stops/504713", "https://data.delijn.be/stops/508282"], ["https://data.delijn.be/stops/207754", "https://data.delijn.be/stops/207796"], ["https://data.delijn.be/stops/404568", "https://data.delijn.be/stops/404569"], ["https://data.delijn.be/stops/303957", "https://data.delijn.be/stops/303958"], ["https://data.delijn.be/stops/109280", "https://data.delijn.be/stops/109736"], ["https://data.delijn.be/stops/204519", "https://data.delijn.be/stops/204521"], ["https://data.delijn.be/stops/107889", "https://data.delijn.be/stops/107893"], ["https://data.delijn.be/stops/503088", "https://data.delijn.be/stops/508088"], ["https://data.delijn.be/stops/303676", "https://data.delijn.be/stops/306311"], ["https://data.delijn.be/stops/102067", "https://data.delijn.be/stops/102069"], ["https://data.delijn.be/stops/303779", "https://data.delijn.be/stops/303781"], ["https://data.delijn.be/stops/201583", "https://data.delijn.be/stops/201585"], ["https://data.delijn.be/stops/504719", "https://data.delijn.be/stops/508108"], ["https://data.delijn.be/stops/304550", "https://data.delijn.be/stops/304605"], ["https://data.delijn.be/stops/403902", "https://data.delijn.be/stops/403905"], ["https://data.delijn.be/stops/108503", "https://data.delijn.be/stops/108504"], ["https://data.delijn.be/stops/503760", "https://data.delijn.be/stops/503763"], ["https://data.delijn.be/stops/106052", "https://data.delijn.be/stops/106053"], ["https://data.delijn.be/stops/503079", "https://data.delijn.be/stops/503611"], ["https://data.delijn.be/stops/301983", "https://data.delijn.be/stops/304155"], ["https://data.delijn.be/stops/206144", "https://data.delijn.be/stops/207145"], ["https://data.delijn.be/stops/503184", "https://data.delijn.be/stops/503815"], ["https://data.delijn.be/stops/108648", "https://data.delijn.be/stops/304339"], ["https://data.delijn.be/stops/504260", "https://data.delijn.be/stops/508549"], ["https://data.delijn.be/stops/306626", "https://data.delijn.be/stops/308462"], ["https://data.delijn.be/stops/501447", "https://data.delijn.be/stops/501451"], ["https://data.delijn.be/stops/502383", "https://data.delijn.be/stops/502621"], ["https://data.delijn.be/stops/200690", "https://data.delijn.be/stops/200696"], ["https://data.delijn.be/stops/401818", "https://data.delijn.be/stops/401820"], ["https://data.delijn.be/stops/400762", "https://data.delijn.be/stops/409662"], ["https://data.delijn.be/stops/101995", "https://data.delijn.be/stops/105155"], ["https://data.delijn.be/stops/106414", "https://data.delijn.be/stops/106417"], ["https://data.delijn.be/stops/400328", "https://data.delijn.be/stops/400330"], ["https://data.delijn.be/stops/301310", "https://data.delijn.be/stops/306200"], ["https://data.delijn.be/stops/300734", "https://data.delijn.be/stops/307058"], ["https://data.delijn.be/stops/204139", "https://data.delijn.be/stops/205238"], ["https://data.delijn.be/stops/103056", "https://data.delijn.be/stops/107181"], ["https://data.delijn.be/stops/200795", "https://data.delijn.be/stops/203323"], ["https://data.delijn.be/stops/201661", "https://data.delijn.be/stops/205997"], ["https://data.delijn.be/stops/406521", "https://data.delijn.be/stops/406541"], ["https://data.delijn.be/stops/301722", "https://data.delijn.be/stops/301744"], ["https://data.delijn.be/stops/203843", "https://data.delijn.be/stops/208425"], ["https://data.delijn.be/stops/502796", "https://data.delijn.be/stops/508340"], ["https://data.delijn.be/stops/104036", "https://data.delijn.be/stops/108084"], ["https://data.delijn.be/stops/303413", "https://data.delijn.be/stops/303414"], ["https://data.delijn.be/stops/504497", "https://data.delijn.be/stops/509497"], ["https://data.delijn.be/stops/500002", "https://data.delijn.be/stops/508669"], ["https://data.delijn.be/stops/104606", "https://data.delijn.be/stops/107372"], ["https://data.delijn.be/stops/300087", "https://data.delijn.be/stops/300098"], ["https://data.delijn.be/stops/108019", "https://data.delijn.be/stops/108023"], ["https://data.delijn.be/stops/504640", "https://data.delijn.be/stops/509639"], ["https://data.delijn.be/stops/208619", "https://data.delijn.be/stops/209697"], ["https://data.delijn.be/stops/502434", "https://data.delijn.be/stops/507434"], ["https://data.delijn.be/stops/206319", "https://data.delijn.be/stops/207918"], ["https://data.delijn.be/stops/109209", "https://data.delijn.be/stops/109225"], ["https://data.delijn.be/stops/204061", "https://data.delijn.be/stops/204322"], ["https://data.delijn.be/stops/207369", "https://data.delijn.be/stops/207954"], ["https://data.delijn.be/stops/200802", "https://data.delijn.be/stops/505417"], ["https://data.delijn.be/stops/106849", "https://data.delijn.be/stops/106851"], ["https://data.delijn.be/stops/206662", "https://data.delijn.be/stops/207662"], ["https://data.delijn.be/stops/205334", "https://data.delijn.be/stops/205514"], ["https://data.delijn.be/stops/204097", "https://data.delijn.be/stops/204243"], ["https://data.delijn.be/stops/401162", "https://data.delijn.be/stops/401164"], ["https://data.delijn.be/stops/202617", "https://data.delijn.be/stops/203596"], ["https://data.delijn.be/stops/102064", "https://data.delijn.be/stops/106942"], ["https://data.delijn.be/stops/505260", "https://data.delijn.be/stops/508219"], ["https://data.delijn.be/stops/503686", "https://data.delijn.be/stops/504453"], ["https://data.delijn.be/stops/506781", "https://data.delijn.be/stops/509933"], ["https://data.delijn.be/stops/302206", "https://data.delijn.be/stops/305092"], ["https://data.delijn.be/stops/200286", "https://data.delijn.be/stops/200343"], ["https://data.delijn.be/stops/107176", "https://data.delijn.be/stops/107178"], ["https://data.delijn.be/stops/206261", "https://data.delijn.be/stops/206917"], ["https://data.delijn.be/stops/206844", "https://data.delijn.be/stops/207844"], ["https://data.delijn.be/stops/105734", "https://data.delijn.be/stops/105736"], ["https://data.delijn.be/stops/401212", "https://data.delijn.be/stops/401259"], ["https://data.delijn.be/stops/504027", "https://data.delijn.be/stops/509487"], ["https://data.delijn.be/stops/402359", "https://data.delijn.be/stops/402364"], ["https://data.delijn.be/stops/307964", "https://data.delijn.be/stops/307967"], ["https://data.delijn.be/stops/103263", "https://data.delijn.be/stops/205446"], ["https://data.delijn.be/stops/408284", "https://data.delijn.be/stops/408343"], ["https://data.delijn.be/stops/406207", "https://data.delijn.be/stops/406446"], ["https://data.delijn.be/stops/407649", "https://data.delijn.be/stops/409772"], ["https://data.delijn.be/stops/201088", "https://data.delijn.be/stops/203957"], ["https://data.delijn.be/stops/504262", "https://data.delijn.be/stops/505363"], ["https://data.delijn.be/stops/303115", "https://data.delijn.be/stops/306706"], ["https://data.delijn.be/stops/402595", "https://data.delijn.be/stops/403861"], ["https://data.delijn.be/stops/303841", "https://data.delijn.be/stops/303867"], ["https://data.delijn.be/stops/302254", "https://data.delijn.be/stops/306369"], ["https://data.delijn.be/stops/404833", "https://data.delijn.be/stops/406094"], ["https://data.delijn.be/stops/307357", "https://data.delijn.be/stops/307360"], ["https://data.delijn.be/stops/403720", "https://data.delijn.be/stops/405151"], ["https://data.delijn.be/stops/108472", "https://data.delijn.be/stops/109899"], ["https://data.delijn.be/stops/203042", "https://data.delijn.be/stops/203245"], ["https://data.delijn.be/stops/208549", "https://data.delijn.be/stops/208558"], ["https://data.delijn.be/stops/400886", "https://data.delijn.be/stops/400887"], ["https://data.delijn.be/stops/406148", "https://data.delijn.be/stops/406807"], ["https://data.delijn.be/stops/206523", "https://data.delijn.be/stops/207002"], ["https://data.delijn.be/stops/105272", "https://data.delijn.be/stops/105293"], ["https://data.delijn.be/stops/402778", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/407874", "https://data.delijn.be/stops/408139"], ["https://data.delijn.be/stops/104379", "https://data.delijn.be/stops/204258"], ["https://data.delijn.be/stops/204350", "https://data.delijn.be/stops/205115"], ["https://data.delijn.be/stops/303042", "https://data.delijn.be/stops/308719"], ["https://data.delijn.be/stops/504197", "https://data.delijn.be/stops/509969"], ["https://data.delijn.be/stops/200607", "https://data.delijn.be/stops/201457"], ["https://data.delijn.be/stops/403059", "https://data.delijn.be/stops/403397"], ["https://data.delijn.be/stops/308195", "https://data.delijn.be/stops/308204"], ["https://data.delijn.be/stops/303332", "https://data.delijn.be/stops/303345"], ["https://data.delijn.be/stops/201630", "https://data.delijn.be/stops/203935"], ["https://data.delijn.be/stops/403598", "https://data.delijn.be/stops/403617"], ["https://data.delijn.be/stops/204314", "https://data.delijn.be/stops/204677"], ["https://data.delijn.be/stops/102907", "https://data.delijn.be/stops/105868"], ["https://data.delijn.be/stops/202478", "https://data.delijn.be/stops/203478"], ["https://data.delijn.be/stops/405794", "https://data.delijn.be/stops/405883"], ["https://data.delijn.be/stops/104481", "https://data.delijn.be/stops/307899"], ["https://data.delijn.be/stops/400390", "https://data.delijn.be/stops/406469"], ["https://data.delijn.be/stops/502054", "https://data.delijn.be/stops/507441"], ["https://data.delijn.be/stops/503415", "https://data.delijn.be/stops/508409"], ["https://data.delijn.be/stops/200394", "https://data.delijn.be/stops/205804"], ["https://data.delijn.be/stops/303629", "https://data.delijn.be/stops/304205"], ["https://data.delijn.be/stops/303022", "https://data.delijn.be/stops/303089"], ["https://data.delijn.be/stops/204095", "https://data.delijn.be/stops/205095"], ["https://data.delijn.be/stops/503520", "https://data.delijn.be/stops/508572"], ["https://data.delijn.be/stops/200309", "https://data.delijn.be/stops/201310"], ["https://data.delijn.be/stops/200618", "https://data.delijn.be/stops/201286"], ["https://data.delijn.be/stops/208589", "https://data.delijn.be/stops/209588"], ["https://data.delijn.be/stops/307282", "https://data.delijn.be/stops/307283"], ["https://data.delijn.be/stops/108901", "https://data.delijn.be/stops/108903"], ["https://data.delijn.be/stops/305082", "https://data.delijn.be/stops/305186"], ["https://data.delijn.be/stops/404244", "https://data.delijn.be/stops/405653"], ["https://data.delijn.be/stops/101884", "https://data.delijn.be/stops/104561"], ["https://data.delijn.be/stops/401550", "https://data.delijn.be/stops/401551"], ["https://data.delijn.be/stops/304465", "https://data.delijn.be/stops/304468"], ["https://data.delijn.be/stops/506357", "https://data.delijn.be/stops/506742"], ["https://data.delijn.be/stops/204308", "https://data.delijn.be/stops/205309"], ["https://data.delijn.be/stops/503596", "https://data.delijn.be/stops/505806"], ["https://data.delijn.be/stops/105721", "https://data.delijn.be/stops/105722"], ["https://data.delijn.be/stops/503052", "https://data.delijn.be/stops/505899"], ["https://data.delijn.be/stops/303485", "https://data.delijn.be/stops/303517"], ["https://data.delijn.be/stops/207696", "https://data.delijn.be/stops/303857"], ["https://data.delijn.be/stops/302143", "https://data.delijn.be/stops/307525"], ["https://data.delijn.be/stops/300754", "https://data.delijn.be/stops/300833"], ["https://data.delijn.be/stops/301483", "https://data.delijn.be/stops/301489"], ["https://data.delijn.be/stops/400236", "https://data.delijn.be/stops/400238"], ["https://data.delijn.be/stops/403901", "https://data.delijn.be/stops/403943"], ["https://data.delijn.be/stops/203284", "https://data.delijn.be/stops/208964"], ["https://data.delijn.be/stops/305145", "https://data.delijn.be/stops/307533"], ["https://data.delijn.be/stops/207016", "https://data.delijn.be/stops/207913"], ["https://data.delijn.be/stops/204387", "https://data.delijn.be/stops/204402"], ["https://data.delijn.be/stops/502126", "https://data.delijn.be/stops/507135"], ["https://data.delijn.be/stops/507184", "https://data.delijn.be/stops/507185"], ["https://data.delijn.be/stops/104509", "https://data.delijn.be/stops/207706"], ["https://data.delijn.be/stops/400662", "https://data.delijn.be/stops/402533"], ["https://data.delijn.be/stops/102672", "https://data.delijn.be/stops/109191"], ["https://data.delijn.be/stops/202646", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/406272", "https://data.delijn.be/stops/406350"], ["https://data.delijn.be/stops/206653", "https://data.delijn.be/stops/207654"], ["https://data.delijn.be/stops/202901", "https://data.delijn.be/stops/203904"], ["https://data.delijn.be/stops/200766", "https://data.delijn.be/stops/209318"], ["https://data.delijn.be/stops/404168", "https://data.delijn.be/stops/404184"], ["https://data.delijn.be/stops/502396", "https://data.delijn.be/stops/502413"], ["https://data.delijn.be/stops/407022", "https://data.delijn.be/stops/408429"], ["https://data.delijn.be/stops/401653", "https://data.delijn.be/stops/306327"], ["https://data.delijn.be/stops/301715", "https://data.delijn.be/stops/303466"], ["https://data.delijn.be/stops/202867", "https://data.delijn.be/stops/208713"], ["https://data.delijn.be/stops/203056", "https://data.delijn.be/stops/211104"], ["https://data.delijn.be/stops/202173", "https://data.delijn.be/stops/202495"], ["https://data.delijn.be/stops/508494", "https://data.delijn.be/stops/508498"], ["https://data.delijn.be/stops/300858", "https://data.delijn.be/stops/305439"], ["https://data.delijn.be/stops/403642", "https://data.delijn.be/stops/403643"], ["https://data.delijn.be/stops/507475", "https://data.delijn.be/stops/508005"], ["https://data.delijn.be/stops/200090", "https://data.delijn.be/stops/210126"], ["https://data.delijn.be/stops/501366", "https://data.delijn.be/stops/501448"], ["https://data.delijn.be/stops/200350", "https://data.delijn.be/stops/201350"], ["https://data.delijn.be/stops/404641", "https://data.delijn.be/stops/406966"], ["https://data.delijn.be/stops/300680", "https://data.delijn.be/stops/305965"], ["https://data.delijn.be/stops/300262", "https://data.delijn.be/stops/304945"], ["https://data.delijn.be/stops/302928", "https://data.delijn.be/stops/303997"], ["https://data.delijn.be/stops/300427", "https://data.delijn.be/stops/300428"], ["https://data.delijn.be/stops/306984", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/401216", "https://data.delijn.be/stops/401217"], ["https://data.delijn.be/stops/302667", "https://data.delijn.be/stops/302680"], ["https://data.delijn.be/stops/504011", "https://data.delijn.be/stops/505817"], ["https://data.delijn.be/stops/305067", "https://data.delijn.be/stops/305075"], ["https://data.delijn.be/stops/506300", "https://data.delijn.be/stops/506477"], ["https://data.delijn.be/stops/102686", "https://data.delijn.be/stops/105210"], ["https://data.delijn.be/stops/201376", "https://data.delijn.be/stops/210089"], ["https://data.delijn.be/stops/509222", "https://data.delijn.be/stops/509633"], ["https://data.delijn.be/stops/401503", "https://data.delijn.be/stops/401509"], ["https://data.delijn.be/stops/503683", "https://data.delijn.be/stops/508683"], ["https://data.delijn.be/stops/306002", "https://data.delijn.be/stops/307507"], ["https://data.delijn.be/stops/504157", "https://data.delijn.be/stops/504479"], ["https://data.delijn.be/stops/102936", "https://data.delijn.be/stops/108555"], ["https://data.delijn.be/stops/200737", "https://data.delijn.be/stops/203595"], ["https://data.delijn.be/stops/405164", "https://data.delijn.be/stops/405216"], ["https://data.delijn.be/stops/302310", "https://data.delijn.be/stops/304007"], ["https://data.delijn.be/stops/508605", "https://data.delijn.be/stops/508617"], ["https://data.delijn.be/stops/304169", "https://data.delijn.be/stops/307538"], ["https://data.delijn.be/stops/308461", "https://data.delijn.be/stops/308464"], ["https://data.delijn.be/stops/205286", "https://data.delijn.be/stops/205651"], ["https://data.delijn.be/stops/206582", "https://data.delijn.be/stops/207413"], ["https://data.delijn.be/stops/305195", "https://data.delijn.be/stops/305200"], ["https://data.delijn.be/stops/401136", "https://data.delijn.be/stops/403748"], ["https://data.delijn.be/stops/102852", "https://data.delijn.be/stops/104418"], ["https://data.delijn.be/stops/300316", "https://data.delijn.be/stops/303958"], ["https://data.delijn.be/stops/401749", "https://data.delijn.be/stops/408469"], ["https://data.delijn.be/stops/308594", "https://data.delijn.be/stops/308597"], ["https://data.delijn.be/stops/507716", "https://data.delijn.be/stops/508977"], ["https://data.delijn.be/stops/505265", "https://data.delijn.be/stops/505266"], ["https://data.delijn.be/stops/304891", "https://data.delijn.be/stops/304893"], ["https://data.delijn.be/stops/407574", "https://data.delijn.be/stops/408966"], ["https://data.delijn.be/stops/202915", "https://data.delijn.be/stops/203912"], ["https://data.delijn.be/stops/409572", "https://data.delijn.be/stops/409576"], ["https://data.delijn.be/stops/109000", "https://data.delijn.be/stops/109003"], ["https://data.delijn.be/stops/102898", "https://data.delijn.be/stops/106753"], ["https://data.delijn.be/stops/300105", "https://data.delijn.be/stops/300115"], ["https://data.delijn.be/stops/302857", "https://data.delijn.be/stops/303076"], ["https://data.delijn.be/stops/201166", "https://data.delijn.be/stops/202190"], ["https://data.delijn.be/stops/107085", "https://data.delijn.be/stops/108780"], ["https://data.delijn.be/stops/401753", "https://data.delijn.be/stops/409406"], ["https://data.delijn.be/stops/305023", "https://data.delijn.be/stops/305040"], ["https://data.delijn.be/stops/407014", "https://data.delijn.be/stops/407018"], ["https://data.delijn.be/stops/504566", "https://data.delijn.be/stops/505187"], ["https://data.delijn.be/stops/200235", "https://data.delijn.be/stops/210051"], ["https://data.delijn.be/stops/205393", "https://data.delijn.be/stops/205394"], ["https://data.delijn.be/stops/300589", "https://data.delijn.be/stops/308896"], ["https://data.delijn.be/stops/400503", "https://data.delijn.be/stops/400509"], ["https://data.delijn.be/stops/504168", "https://data.delijn.be/stops/504747"], ["https://data.delijn.be/stops/201667", "https://data.delijn.be/stops/201668"], ["https://data.delijn.be/stops/103001", "https://data.delijn.be/stops/103002"], ["https://data.delijn.be/stops/402302", "https://data.delijn.be/stops/402303"], ["https://data.delijn.be/stops/500563", "https://data.delijn.be/stops/506129"], ["https://data.delijn.be/stops/406166", "https://data.delijn.be/stops/406198"], ["https://data.delijn.be/stops/109492", "https://data.delijn.be/stops/109497"], ["https://data.delijn.be/stops/202022", "https://data.delijn.be/stops/202027"], ["https://data.delijn.be/stops/503364", "https://data.delijn.be/stops/503706"], ["https://data.delijn.be/stops/103090", "https://data.delijn.be/stops/104845"], ["https://data.delijn.be/stops/403186", "https://data.delijn.be/stops/403820"], ["https://data.delijn.be/stops/103299", "https://data.delijn.be/stops/108620"], ["https://data.delijn.be/stops/301663", "https://data.delijn.be/stops/301673"], ["https://data.delijn.be/stops/301346", "https://data.delijn.be/stops/306684"], ["https://data.delijn.be/stops/502673", "https://data.delijn.be/stops/505018"], ["https://data.delijn.be/stops/402891", "https://data.delijn.be/stops/402942"], ["https://data.delijn.be/stops/104668", "https://data.delijn.be/stops/108464"], ["https://data.delijn.be/stops/201537", "https://data.delijn.be/stops/210049"], ["https://data.delijn.be/stops/109380", "https://data.delijn.be/stops/109381"], ["https://data.delijn.be/stops/305036", "https://data.delijn.be/stops/305037"], ["https://data.delijn.be/stops/401019", "https://data.delijn.be/stops/403743"], ["https://data.delijn.be/stops/300453", "https://data.delijn.be/stops/308053"], ["https://data.delijn.be/stops/306765", "https://data.delijn.be/stops/308945"], ["https://data.delijn.be/stops/501449", "https://data.delijn.be/stops/501502"], ["https://data.delijn.be/stops/406187", "https://data.delijn.be/stops/406436"], ["https://data.delijn.be/stops/401852", "https://data.delijn.be/stops/401853"], ["https://data.delijn.be/stops/204081", "https://data.delijn.be/stops/205091"], ["https://data.delijn.be/stops/503572", "https://data.delijn.be/stops/503575"], ["https://data.delijn.be/stops/207223", "https://data.delijn.be/stops/207224"], ["https://data.delijn.be/stops/406908", "https://data.delijn.be/stops/406909"], ["https://data.delijn.be/stops/403322", "https://data.delijn.be/stops/407587"], ["https://data.delijn.be/stops/101576", "https://data.delijn.be/stops/101577"], ["https://data.delijn.be/stops/400640", "https://data.delijn.be/stops/400910"], ["https://data.delijn.be/stops/406425", "https://data.delijn.be/stops/406426"], ["https://data.delijn.be/stops/206268", "https://data.delijn.be/stops/207007"], ["https://data.delijn.be/stops/301620", "https://data.delijn.be/stops/301621"], ["https://data.delijn.be/stops/501323", "https://data.delijn.be/stops/506292"], ["https://data.delijn.be/stops/407001", "https://data.delijn.be/stops/408414"], ["https://data.delijn.be/stops/104640", "https://data.delijn.be/stops/104645"], ["https://data.delijn.be/stops/305056", "https://data.delijn.be/stops/305212"], ["https://data.delijn.be/stops/204786", "https://data.delijn.be/stops/205121"], ["https://data.delijn.be/stops/504357", "https://data.delijn.be/stops/504589"], ["https://data.delijn.be/stops/204197", "https://data.delijn.be/stops/205198"], ["https://data.delijn.be/stops/404164", "https://data.delijn.be/stops/404176"], ["https://data.delijn.be/stops/404848", "https://data.delijn.be/stops/409634"], ["https://data.delijn.be/stops/405958", "https://data.delijn.be/stops/308170"], ["https://data.delijn.be/stops/202330", "https://data.delijn.be/stops/202336"], ["https://data.delijn.be/stops/203967", "https://data.delijn.be/stops/203968"], ["https://data.delijn.be/stops/504579", "https://data.delijn.be/stops/505215"], ["https://data.delijn.be/stops/409343", "https://data.delijn.be/stops/409616"], ["https://data.delijn.be/stops/505798", "https://data.delijn.be/stops/509041"], ["https://data.delijn.be/stops/207618", "https://data.delijn.be/stops/207849"], ["https://data.delijn.be/stops/502284", "https://data.delijn.be/stops/507284"], ["https://data.delijn.be/stops/306701", "https://data.delijn.be/stops/306702"], ["https://data.delijn.be/stops/201672", "https://data.delijn.be/stops/202501"], ["https://data.delijn.be/stops/400651", "https://data.delijn.be/stops/400660"], ["https://data.delijn.be/stops/510021", "https://data.delijn.be/stops/510022"], ["https://data.delijn.be/stops/407273", "https://data.delijn.be/stops/409494"], ["https://data.delijn.be/stops/108276", "https://data.delijn.be/stops/108277"], ["https://data.delijn.be/stops/403415", "https://data.delijn.be/stops/403466"], ["https://data.delijn.be/stops/101497", "https://data.delijn.be/stops/102719"], ["https://data.delijn.be/stops/305668", "https://data.delijn.be/stops/305740"], ["https://data.delijn.be/stops/208099", "https://data.delijn.be/stops/209097"], ["https://data.delijn.be/stops/201868", "https://data.delijn.be/stops/203658"], ["https://data.delijn.be/stops/208204", "https://data.delijn.be/stops/209204"], ["https://data.delijn.be/stops/404956", "https://data.delijn.be/stops/409220"], ["https://data.delijn.be/stops/502418", "https://data.delijn.be/stops/507418"], ["https://data.delijn.be/stops/204300", "https://data.delijn.be/stops/205046"], ["https://data.delijn.be/stops/504837", "https://data.delijn.be/stops/505713"], ["https://data.delijn.be/stops/507612", "https://data.delijn.be/stops/507623"], ["https://data.delijn.be/stops/303060", "https://data.delijn.be/stops/304468"], ["https://data.delijn.be/stops/505775", "https://data.delijn.be/stops/507236"], ["https://data.delijn.be/stops/406182", "https://data.delijn.be/stops/406183"], ["https://data.delijn.be/stops/302306", "https://data.delijn.be/stops/302322"], ["https://data.delijn.be/stops/401479", "https://data.delijn.be/stops/408469"], ["https://data.delijn.be/stops/306269", "https://data.delijn.be/stops/306270"], ["https://data.delijn.be/stops/106905", "https://data.delijn.be/stops/107250"], ["https://data.delijn.be/stops/401559", "https://data.delijn.be/stops/402023"], ["https://data.delijn.be/stops/401635", "https://data.delijn.be/stops/308245"], ["https://data.delijn.be/stops/218025", "https://data.delijn.be/stops/219025"], ["https://data.delijn.be/stops/305185", "https://data.delijn.be/stops/306954"], ["https://data.delijn.be/stops/406561", "https://data.delijn.be/stops/407382"], ["https://data.delijn.be/stops/207858", "https://data.delijn.be/stops/209625"], ["https://data.delijn.be/stops/501777", "https://data.delijn.be/stops/506427"], ["https://data.delijn.be/stops/404902", "https://data.delijn.be/stops/404903"], ["https://data.delijn.be/stops/206822", "https://data.delijn.be/stops/207480"], ["https://data.delijn.be/stops/206497", "https://data.delijn.be/stops/206503"], ["https://data.delijn.be/stops/400204", "https://data.delijn.be/stops/400205"], ["https://data.delijn.be/stops/501097", "https://data.delijn.be/stops/506097"], ["https://data.delijn.be/stops/503681", "https://data.delijn.be/stops/503683"], ["https://data.delijn.be/stops/104971", "https://data.delijn.be/stops/105363"], ["https://data.delijn.be/stops/200067", "https://data.delijn.be/stops/200098"], ["https://data.delijn.be/stops/502103", "https://data.delijn.be/stops/507103"], ["https://data.delijn.be/stops/108501", "https://data.delijn.be/stops/108804"], ["https://data.delijn.be/stops/303498", "https://data.delijn.be/stops/308132"], ["https://data.delijn.be/stops/405408", "https://data.delijn.be/stops/306782"], ["https://data.delijn.be/stops/202109", "https://data.delijn.be/stops/202119"], ["https://data.delijn.be/stops/202941", "https://data.delijn.be/stops/203941"], ["https://data.delijn.be/stops/206934", "https://data.delijn.be/stops/207950"], ["https://data.delijn.be/stops/404769", "https://data.delijn.be/stops/404786"], ["https://data.delijn.be/stops/400654", "https://data.delijn.be/stops/400904"], ["https://data.delijn.be/stops/204635", "https://data.delijn.be/stops/205694"], ["https://data.delijn.be/stops/206077", "https://data.delijn.be/stops/207877"], ["https://data.delijn.be/stops/104736", "https://data.delijn.be/stops/107332"], ["https://data.delijn.be/stops/209238", "https://data.delijn.be/stops/209786"], ["https://data.delijn.be/stops/210091", "https://data.delijn.be/stops/211528"], ["https://data.delijn.be/stops/401196", "https://data.delijn.be/stops/401228"], ["https://data.delijn.be/stops/201771", "https://data.delijn.be/stops/201821"], ["https://data.delijn.be/stops/200821", "https://data.delijn.be/stops/200823"], ["https://data.delijn.be/stops/104964", "https://data.delijn.be/stops/109792"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/108016"], ["https://data.delijn.be/stops/405788", "https://data.delijn.be/stops/405808"], ["https://data.delijn.be/stops/208208", "https://data.delijn.be/stops/208792"], ["https://data.delijn.be/stops/507260", "https://data.delijn.be/stops/509946"], ["https://data.delijn.be/stops/101551", "https://data.delijn.be/stops/107922"], ["https://data.delijn.be/stops/102227", "https://data.delijn.be/stops/102228"], ["https://data.delijn.be/stops/503804", "https://data.delijn.be/stops/503811"], ["https://data.delijn.be/stops/201948", "https://data.delijn.be/stops/203467"], ["https://data.delijn.be/stops/504480", "https://data.delijn.be/stops/509481"], ["https://data.delijn.be/stops/201259", "https://data.delijn.be/stops/201947"], ["https://data.delijn.be/stops/202536", "https://data.delijn.be/stops/203011"], ["https://data.delijn.be/stops/102300", "https://data.delijn.be/stops/102305"], ["https://data.delijn.be/stops/208471", "https://data.delijn.be/stops/209669"], ["https://data.delijn.be/stops/308725", "https://data.delijn.be/stops/308728"], ["https://data.delijn.be/stops/506220", "https://data.delijn.be/stops/506496"], ["https://data.delijn.be/stops/103399", "https://data.delijn.be/stops/106830"], ["https://data.delijn.be/stops/503079", "https://data.delijn.be/stops/503085"], ["https://data.delijn.be/stops/405958", "https://data.delijn.be/stops/405959"], ["https://data.delijn.be/stops/304946", "https://data.delijn.be/stops/305018"], ["https://data.delijn.be/stops/202430", "https://data.delijn.be/stops/203438"], ["https://data.delijn.be/stops/201317", "https://data.delijn.be/stops/201649"], ["https://data.delijn.be/stops/105639", "https://data.delijn.be/stops/105641"], ["https://data.delijn.be/stops/204736", "https://data.delijn.be/stops/204737"], ["https://data.delijn.be/stops/104947", "https://data.delijn.be/stops/109790"], ["https://data.delijn.be/stops/204121", "https://data.delijn.be/stops/204126"], ["https://data.delijn.be/stops/404169", "https://data.delijn.be/stops/404219"], ["https://data.delijn.be/stops/301378", "https://data.delijn.be/stops/301381"], ["https://data.delijn.be/stops/503830", "https://data.delijn.be/stops/505994"], ["https://data.delijn.be/stops/108650", "https://data.delijn.be/stops/108955"], ["https://data.delijn.be/stops/505640", "https://data.delijn.be/stops/509812"], ["https://data.delijn.be/stops/406043", "https://data.delijn.be/stops/407865"], ["https://data.delijn.be/stops/401346", "https://data.delijn.be/stops/401355"], ["https://data.delijn.be/stops/203186", "https://data.delijn.be/stops/203667"], ["https://data.delijn.be/stops/205397", "https://data.delijn.be/stops/205768"], ["https://data.delijn.be/stops/300295", "https://data.delijn.be/stops/307478"], ["https://data.delijn.be/stops/105548", "https://data.delijn.be/stops/109624"], ["https://data.delijn.be/stops/208339", "https://data.delijn.be/stops/208788"], ["https://data.delijn.be/stops/504424", "https://data.delijn.be/stops/504472"], ["https://data.delijn.be/stops/204200", "https://data.delijn.be/stops/205201"], ["https://data.delijn.be/stops/301440", "https://data.delijn.be/stops/301662"], ["https://data.delijn.be/stops/108069", "https://data.delijn.be/stops/108134"], ["https://data.delijn.be/stops/502703", "https://data.delijn.be/stops/509723"], ["https://data.delijn.be/stops/405312", "https://data.delijn.be/stops/302824"], ["https://data.delijn.be/stops/400820", "https://data.delijn.be/stops/400827"], ["https://data.delijn.be/stops/302487", "https://data.delijn.be/stops/308831"], ["https://data.delijn.be/stops/403003", "https://data.delijn.be/stops/405609"], ["https://data.delijn.be/stops/506037", "https://data.delijn.be/stops/506448"], ["https://data.delijn.be/stops/200901", "https://data.delijn.be/stops/202264"], ["https://data.delijn.be/stops/502359", "https://data.delijn.be/stops/507679"], ["https://data.delijn.be/stops/202377", "https://data.delijn.be/stops/203376"], ["https://data.delijn.be/stops/207677", "https://data.delijn.be/stops/208200"], ["https://data.delijn.be/stops/504980", "https://data.delijn.be/stops/505917"], ["https://data.delijn.be/stops/406635", "https://data.delijn.be/stops/407507"], ["https://data.delijn.be/stops/301833", "https://data.delijn.be/stops/308602"], ["https://data.delijn.be/stops/408804", "https://data.delijn.be/stops/408805"], ["https://data.delijn.be/stops/101189", "https://data.delijn.be/stops/101656"], ["https://data.delijn.be/stops/302332", "https://data.delijn.be/stops/302333"], ["https://data.delijn.be/stops/403084", "https://data.delijn.be/stops/403133"], ["https://data.delijn.be/stops/105276", "https://data.delijn.be/stops/109974"], ["https://data.delijn.be/stops/104986", "https://data.delijn.be/stops/109992"], ["https://data.delijn.be/stops/408962", "https://data.delijn.be/stops/408969"], ["https://data.delijn.be/stops/204163", "https://data.delijn.be/stops/206402"], ["https://data.delijn.be/stops/505363", "https://data.delijn.be/stops/509635"], ["https://data.delijn.be/stops/208257", "https://data.delijn.be/stops/209256"], ["https://data.delijn.be/stops/104964", "https://data.delijn.be/stops/108644"], ["https://data.delijn.be/stops/503893", "https://data.delijn.be/stops/508987"], ["https://data.delijn.be/stops/302018", "https://data.delijn.be/stops/302019"], ["https://data.delijn.be/stops/303590", "https://data.delijn.be/stops/305221"], ["https://data.delijn.be/stops/405959", "https://data.delijn.be/stops/308152"], ["https://data.delijn.be/stops/303437", "https://data.delijn.be/stops/307061"], ["https://data.delijn.be/stops/208797", "https://data.delijn.be/stops/209797"], ["https://data.delijn.be/stops/405134", "https://data.delijn.be/stops/406188"], ["https://data.delijn.be/stops/501255", "https://data.delijn.be/stops/506738"], ["https://data.delijn.be/stops/208409", "https://data.delijn.be/stops/209195"], ["https://data.delijn.be/stops/502249", "https://data.delijn.be/stops/507249"], ["https://data.delijn.be/stops/208081", "https://data.delijn.be/stops/209524"], ["https://data.delijn.be/stops/503211", "https://data.delijn.be/stops/503983"], ["https://data.delijn.be/stops/403836", "https://data.delijn.be/stops/403837"], ["https://data.delijn.be/stops/305689", "https://data.delijn.be/stops/305705"], ["https://data.delijn.be/stops/407260", "https://data.delijn.be/stops/407261"], ["https://data.delijn.be/stops/302952", "https://data.delijn.be/stops/302977"], ["https://data.delijn.be/stops/305571", "https://data.delijn.be/stops/308553"], ["https://data.delijn.be/stops/101162", "https://data.delijn.be/stops/205637"], ["https://data.delijn.be/stops/105559", "https://data.delijn.be/stops/105561"], ["https://data.delijn.be/stops/303093", "https://data.delijn.be/stops/303094"], ["https://data.delijn.be/stops/301773", "https://data.delijn.be/stops/301783"], ["https://data.delijn.be/stops/407701", "https://data.delijn.be/stops/407706"], ["https://data.delijn.be/stops/203345", "https://data.delijn.be/stops/203346"], ["https://data.delijn.be/stops/109351", "https://data.delijn.be/stops/307430"], ["https://data.delijn.be/stops/206946", "https://data.delijn.be/stops/209071"], ["https://data.delijn.be/stops/305379", "https://data.delijn.be/stops/305385"], ["https://data.delijn.be/stops/202385", "https://data.delijn.be/stops/203386"], ["https://data.delijn.be/stops/103105", "https://data.delijn.be/stops/103110"], ["https://data.delijn.be/stops/402383", "https://data.delijn.be/stops/402453"], ["https://data.delijn.be/stops/306960", "https://data.delijn.be/stops/306961"], ["https://data.delijn.be/stops/503413", "https://data.delijn.be/stops/508380"], ["https://data.delijn.be/stops/206299", "https://data.delijn.be/stops/206451"], ["https://data.delijn.be/stops/409053", "https://data.delijn.be/stops/409121"], ["https://data.delijn.be/stops/405840", "https://data.delijn.be/stops/409416"], ["https://data.delijn.be/stops/105653", "https://data.delijn.be/stops/105656"], ["https://data.delijn.be/stops/502040", "https://data.delijn.be/stops/502044"], ["https://data.delijn.be/stops/101749", "https://data.delijn.be/stops/106384"], ["https://data.delijn.be/stops/108434", "https://data.delijn.be/stops/109579"], ["https://data.delijn.be/stops/403340", "https://data.delijn.be/stops/403341"], ["https://data.delijn.be/stops/105043", "https://data.delijn.be/stops/105046"], ["https://data.delijn.be/stops/106914", "https://data.delijn.be/stops/107254"], ["https://data.delijn.be/stops/301959", "https://data.delijn.be/stops/301970"], ["https://data.delijn.be/stops/504494", "https://data.delijn.be/stops/504730"], ["https://data.delijn.be/stops/405936", "https://data.delijn.be/stops/405999"], ["https://data.delijn.be/stops/201707", "https://data.delijn.be/stops/201708"], ["https://data.delijn.be/stops/500012", "https://data.delijn.be/stops/507222"], ["https://data.delijn.be/stops/202101", "https://data.delijn.be/stops/202257"], ["https://data.delijn.be/stops/405770", "https://data.delijn.be/stops/405771"], ["https://data.delijn.be/stops/201676", "https://data.delijn.be/stops/203501"], ["https://data.delijn.be/stops/503310", "https://data.delijn.be/stops/505990"], ["https://data.delijn.be/stops/201488", "https://data.delijn.be/stops/202454"], ["https://data.delijn.be/stops/202274", "https://data.delijn.be/stops/202668"], ["https://data.delijn.be/stops/508753", "https://data.delijn.be/stops/508759"], ["https://data.delijn.be/stops/401177", "https://data.delijn.be/stops/410202"], ["https://data.delijn.be/stops/201953", "https://data.delijn.be/stops/202462"], ["https://data.delijn.be/stops/206409", "https://data.delijn.be/stops/207409"], ["https://data.delijn.be/stops/202786", "https://data.delijn.be/stops/202787"], ["https://data.delijn.be/stops/501109", "https://data.delijn.be/stops/506108"], ["https://data.delijn.be/stops/304962", "https://data.delijn.be/stops/306091"], ["https://data.delijn.be/stops/301604", "https://data.delijn.be/stops/301667"], ["https://data.delijn.be/stops/101776", "https://data.delijn.be/stops/107586"], ["https://data.delijn.be/stops/107652", "https://data.delijn.be/stops/406770"], ["https://data.delijn.be/stops/207433", "https://data.delijn.be/stops/207434"], ["https://data.delijn.be/stops/402782", "https://data.delijn.be/stops/402798"], ["https://data.delijn.be/stops/202570", "https://data.delijn.be/stops/202589"], ["https://data.delijn.be/stops/405320", "https://data.delijn.be/stops/405324"], ["https://data.delijn.be/stops/301651", "https://data.delijn.be/stops/301892"], ["https://data.delijn.be/stops/403412", "https://data.delijn.be/stops/403413"], ["https://data.delijn.be/stops/301987", "https://data.delijn.be/stops/301988"], ["https://data.delijn.be/stops/102875", "https://data.delijn.be/stops/104535"], ["https://data.delijn.be/stops/201821", "https://data.delijn.be/stops/203894"], ["https://data.delijn.be/stops/305869", "https://data.delijn.be/stops/305870"], ["https://data.delijn.be/stops/208150", "https://data.delijn.be/stops/209149"], ["https://data.delijn.be/stops/206585", "https://data.delijn.be/stops/216021"], ["https://data.delijn.be/stops/300629", "https://data.delijn.be/stops/306112"], ["https://data.delijn.be/stops/103068", "https://data.delijn.be/stops/105754"], ["https://data.delijn.be/stops/109664", "https://data.delijn.be/stops/109716"], ["https://data.delijn.be/stops/505297", "https://data.delijn.be/stops/508512"], ["https://data.delijn.be/stops/401199", "https://data.delijn.be/stops/401375"], ["https://data.delijn.be/stops/304343", "https://data.delijn.be/stops/304346"], ["https://data.delijn.be/stops/407377", "https://data.delijn.be/stops/407385"], ["https://data.delijn.be/stops/305512", "https://data.delijn.be/stops/307897"], ["https://data.delijn.be/stops/204599", "https://data.delijn.be/stops/205224"], ["https://data.delijn.be/stops/300444", "https://data.delijn.be/stops/301264"], ["https://data.delijn.be/stops/105702", "https://data.delijn.be/stops/105703"], ["https://data.delijn.be/stops/211852", "https://data.delijn.be/stops/502596"], ["https://data.delijn.be/stops/201647", "https://data.delijn.be/stops/202863"], ["https://data.delijn.be/stops/503232", "https://data.delijn.be/stops/508256"], ["https://data.delijn.be/stops/302326", "https://data.delijn.be/stops/302671"], ["https://data.delijn.be/stops/303477", "https://data.delijn.be/stops/303492"], ["https://data.delijn.be/stops/106156", "https://data.delijn.be/stops/106445"], ["https://data.delijn.be/stops/102244", "https://data.delijn.be/stops/105879"], ["https://data.delijn.be/stops/505675", "https://data.delijn.be/stops/505688"], ["https://data.delijn.be/stops/507693", "https://data.delijn.be/stops/508011"], ["https://data.delijn.be/stops/401093", "https://data.delijn.be/stops/401112"], ["https://data.delijn.be/stops/206854", "https://data.delijn.be/stops/206855"], ["https://data.delijn.be/stops/203171", "https://data.delijn.be/stops/203172"], ["https://data.delijn.be/stops/106956", "https://data.delijn.be/stops/106957"], ["https://data.delijn.be/stops/502124", "https://data.delijn.be/stops/507124"], ["https://data.delijn.be/stops/406684", "https://data.delijn.be/stops/406685"], ["https://data.delijn.be/stops/404862", "https://data.delijn.be/stops/404869"], ["https://data.delijn.be/stops/303507", "https://data.delijn.be/stops/303508"], ["https://data.delijn.be/stops/401486", "https://data.delijn.be/stops/401487"], ["https://data.delijn.be/stops/404502", "https://data.delijn.be/stops/404575"], ["https://data.delijn.be/stops/503964", "https://data.delijn.be/stops/506765"], ["https://data.delijn.be/stops/106861", "https://data.delijn.be/stops/109621"], ["https://data.delijn.be/stops/301130", "https://data.delijn.be/stops/301138"], ["https://data.delijn.be/stops/304225", "https://data.delijn.be/stops/307064"], ["https://data.delijn.be/stops/505089", "https://data.delijn.be/stops/505770"], ["https://data.delijn.be/stops/305232", "https://data.delijn.be/stops/305284"], ["https://data.delijn.be/stops/405796", "https://data.delijn.be/stops/405883"], ["https://data.delijn.be/stops/402190", "https://data.delijn.be/stops/402262"], ["https://data.delijn.be/stops/404114", "https://data.delijn.be/stops/408739"], ["https://data.delijn.be/stops/502420", "https://data.delijn.be/stops/507644"], ["https://data.delijn.be/stops/202312", "https://data.delijn.be/stops/203793"], ["https://data.delijn.be/stops/402863", "https://data.delijn.be/stops/408083"], ["https://data.delijn.be/stops/206088", "https://data.delijn.be/stops/206723"], ["https://data.delijn.be/stops/405889", "https://data.delijn.be/stops/409667"], ["https://data.delijn.be/stops/108735", "https://data.delijn.be/stops/108740"], ["https://data.delijn.be/stops/505388", "https://data.delijn.be/stops/509174"], ["https://data.delijn.be/stops/102913", "https://data.delijn.be/stops/106715"], ["https://data.delijn.be/stops/401340", "https://data.delijn.be/stops/401390"], ["https://data.delijn.be/stops/300074", "https://data.delijn.be/stops/304677"], ["https://data.delijn.be/stops/304744", "https://data.delijn.be/stops/304746"], ["https://data.delijn.be/stops/105736", "https://data.delijn.be/stops/109836"], ["https://data.delijn.be/stops/202410", "https://data.delijn.be/stops/203418"], ["https://data.delijn.be/stops/101268", "https://data.delijn.be/stops/104103"], ["https://data.delijn.be/stops/105060", "https://data.delijn.be/stops/106708"], ["https://data.delijn.be/stops/408689", "https://data.delijn.be/stops/410082"], ["https://data.delijn.be/stops/403067", "https://data.delijn.be/stops/403073"], ["https://data.delijn.be/stops/401492", "https://data.delijn.be/stops/401586"], ["https://data.delijn.be/stops/400041", "https://data.delijn.be/stops/400349"], ["https://data.delijn.be/stops/407204", "https://data.delijn.be/stops/407208"], ["https://data.delijn.be/stops/504352", "https://data.delijn.be/stops/509412"], ["https://data.delijn.be/stops/206682", "https://data.delijn.be/stops/209777"], ["https://data.delijn.be/stops/204147", "https://data.delijn.be/stops/209912"], ["https://data.delijn.be/stops/504623", "https://data.delijn.be/stops/504628"], ["https://data.delijn.be/stops/101644", "https://data.delijn.be/stops/105839"], ["https://data.delijn.be/stops/204137", "https://data.delijn.be/stops/205137"], ["https://data.delijn.be/stops/202851", "https://data.delijn.be/stops/203948"], ["https://data.delijn.be/stops/303695", "https://data.delijn.be/stops/308658"], ["https://data.delijn.be/stops/503728", "https://data.delijn.be/stops/508721"], ["https://data.delijn.be/stops/501014", "https://data.delijn.be/stops/506598"], ["https://data.delijn.be/stops/300261", "https://data.delijn.be/stops/300729"], ["https://data.delijn.be/stops/405791", "https://data.delijn.be/stops/405885"], ["https://data.delijn.be/stops/406220", "https://data.delijn.be/stops/406223"], ["https://data.delijn.be/stops/104517", "https://data.delijn.be/stops/107932"], ["https://data.delijn.be/stops/107611", "https://data.delijn.be/stops/107612"], ["https://data.delijn.be/stops/303272", "https://data.delijn.be/stops/303273"], ["https://data.delijn.be/stops/408266", "https://data.delijn.be/stops/408268"], ["https://data.delijn.be/stops/203479", "https://data.delijn.be/stops/203481"], ["https://data.delijn.be/stops/302892", "https://data.delijn.be/stops/302903"], ["https://data.delijn.be/stops/207228", "https://data.delijn.be/stops/300226"], ["https://data.delijn.be/stops/206226", "https://data.delijn.be/stops/300187"], ["https://data.delijn.be/stops/305310", "https://data.delijn.be/stops/305324"], ["https://data.delijn.be/stops/501271", "https://data.delijn.be/stops/501282"], ["https://data.delijn.be/stops/402352", "https://data.delijn.be/stops/405576"], ["https://data.delijn.be/stops/401829", "https://data.delijn.be/stops/401833"], ["https://data.delijn.be/stops/505663", "https://data.delijn.be/stops/508589"], ["https://data.delijn.be/stops/208378", "https://data.delijn.be/stops/209377"], ["https://data.delijn.be/stops/102196", "https://data.delijn.be/stops/104276"], ["https://data.delijn.be/stops/102600", "https://data.delijn.be/stops/103695"], ["https://data.delijn.be/stops/201047", "https://data.delijn.be/stops/203468"], ["https://data.delijn.be/stops/410146", "https://data.delijn.be/stops/410147"], ["https://data.delijn.be/stops/404428", "https://data.delijn.be/stops/404524"], ["https://data.delijn.be/stops/503401", "https://data.delijn.be/stops/504293"], ["https://data.delijn.be/stops/407873", "https://data.delijn.be/stops/407946"], ["https://data.delijn.be/stops/200756", "https://data.delijn.be/stops/200773"], ["https://data.delijn.be/stops/300922", "https://data.delijn.be/stops/301037"], ["https://data.delijn.be/stops/107508", "https://data.delijn.be/stops/107509"], ["https://data.delijn.be/stops/307421", "https://data.delijn.be/stops/307422"], ["https://data.delijn.be/stops/108859", "https://data.delijn.be/stops/108862"], ["https://data.delijn.be/stops/402477", "https://data.delijn.be/stops/407397"], ["https://data.delijn.be/stops/206427", "https://data.delijn.be/stops/209537"], ["https://data.delijn.be/stops/504516", "https://data.delijn.be/stops/509516"], ["https://data.delijn.be/stops/300890", "https://data.delijn.be/stops/306968"], ["https://data.delijn.be/stops/106907", "https://data.delijn.be/stops/107262"], ["https://data.delijn.be/stops/102864", "https://data.delijn.be/stops/103301"], ["https://data.delijn.be/stops/503519", "https://data.delijn.be/stops/508517"], ["https://data.delijn.be/stops/503108", "https://data.delijn.be/stops/504631"], ["https://data.delijn.be/stops/104119", "https://data.delijn.be/stops/104124"], ["https://data.delijn.be/stops/402116", "https://data.delijn.be/stops/402117"], ["https://data.delijn.be/stops/406188", "https://data.delijn.be/stops/406797"], ["https://data.delijn.be/stops/304062", "https://data.delijn.be/stops/307966"], ["https://data.delijn.be/stops/302574", "https://data.delijn.be/stops/302580"], ["https://data.delijn.be/stops/305555", "https://data.delijn.be/stops/307824"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/203624"], ["https://data.delijn.be/stops/106354", "https://data.delijn.be/stops/106356"], ["https://data.delijn.be/stops/503465", "https://data.delijn.be/stops/503466"], ["https://data.delijn.be/stops/109397", "https://data.delijn.be/stops/109405"], ["https://data.delijn.be/stops/108846", "https://data.delijn.be/stops/108864"], ["https://data.delijn.be/stops/305238", "https://data.delijn.be/stops/305272"], ["https://data.delijn.be/stops/308524", "https://data.delijn.be/stops/308525"], ["https://data.delijn.be/stops/203093", "https://data.delijn.be/stops/211291"], ["https://data.delijn.be/stops/501329", "https://data.delijn.be/stops/506351"], ["https://data.delijn.be/stops/204390", "https://data.delijn.be/stops/204392"], ["https://data.delijn.be/stops/401779", "https://data.delijn.be/stops/406135"], ["https://data.delijn.be/stops/400468", "https://data.delijn.be/stops/400471"], ["https://data.delijn.be/stops/503275", "https://data.delijn.be/stops/508275"], ["https://data.delijn.be/stops/207665", "https://data.delijn.be/stops/209501"], ["https://data.delijn.be/stops/501023", "https://data.delijn.be/stops/506023"], ["https://data.delijn.be/stops/408489", "https://data.delijn.be/stops/408551"], ["https://data.delijn.be/stops/510009", "https://data.delijn.be/stops/510010"], ["https://data.delijn.be/stops/305154", "https://data.delijn.be/stops/305179"], ["https://data.delijn.be/stops/400242", "https://data.delijn.be/stops/406730"], ["https://data.delijn.be/stops/206354", "https://data.delijn.be/stops/207354"], ["https://data.delijn.be/stops/108914", "https://data.delijn.be/stops/108916"], ["https://data.delijn.be/stops/500604", "https://data.delijn.be/stops/506460"], ["https://data.delijn.be/stops/303292", "https://data.delijn.be/stops/303293"], ["https://data.delijn.be/stops/101756", "https://data.delijn.be/stops/205608"], ["https://data.delijn.be/stops/402514", "https://data.delijn.be/stops/402517"], ["https://data.delijn.be/stops/206024", "https://data.delijn.be/stops/207023"], ["https://data.delijn.be/stops/105223", "https://data.delijn.be/stops/305821"], ["https://data.delijn.be/stops/102658", "https://data.delijn.be/stops/109606"], ["https://data.delijn.be/stops/108376", "https://data.delijn.be/stops/109702"], ["https://data.delijn.be/stops/209086", "https://data.delijn.be/stops/209696"], ["https://data.delijn.be/stops/401375", "https://data.delijn.be/stops/404773"], ["https://data.delijn.be/stops/508595", "https://data.delijn.be/stops/508786"], ["https://data.delijn.be/stops/206773", "https://data.delijn.be/stops/209030"], ["https://data.delijn.be/stops/109450", "https://data.delijn.be/stops/109555"], ["https://data.delijn.be/stops/406604", "https://data.delijn.be/stops/406606"], ["https://data.delijn.be/stops/304078", "https://data.delijn.be/stops/304079"], ["https://data.delijn.be/stops/304000", "https://data.delijn.be/stops/307506"], ["https://data.delijn.be/stops/107218", "https://data.delijn.be/stops/107220"], ["https://data.delijn.be/stops/401123", "https://data.delijn.be/stops/409818"], ["https://data.delijn.be/stops/106947", "https://data.delijn.be/stops/108701"], ["https://data.delijn.be/stops/102190", "https://data.delijn.be/stops/103323"], ["https://data.delijn.be/stops/408414", "https://data.delijn.be/stops/408415"], ["https://data.delijn.be/stops/208178", "https://data.delijn.be/stops/208179"], ["https://data.delijn.be/stops/101680", "https://data.delijn.be/stops/102515"], ["https://data.delijn.be/stops/108844", "https://data.delijn.be/stops/108857"], ["https://data.delijn.be/stops/404610", "https://data.delijn.be/stops/406831"], ["https://data.delijn.be/stops/206855", "https://data.delijn.be/stops/207197"], ["https://data.delijn.be/stops/405809", "https://data.delijn.be/stops/409695"], ["https://data.delijn.be/stops/204232", "https://data.delijn.be/stops/205232"], ["https://data.delijn.be/stops/206863", "https://data.delijn.be/stops/207922"], ["https://data.delijn.be/stops/503958", "https://data.delijn.be/stops/504267"], ["https://data.delijn.be/stops/509356", "https://data.delijn.be/stops/509359"], ["https://data.delijn.be/stops/207582", "https://data.delijn.be/stops/207993"], ["https://data.delijn.be/stops/401205", "https://data.delijn.be/stops/401375"], ["https://data.delijn.be/stops/206699", "https://data.delijn.be/stops/207699"], ["https://data.delijn.be/stops/308243", "https://data.delijn.be/stops/308248"], ["https://data.delijn.be/stops/406451", "https://data.delijn.be/stops/406471"], ["https://data.delijn.be/stops/101360", "https://data.delijn.be/stops/106359"], ["https://data.delijn.be/stops/300938", "https://data.delijn.be/stops/300954"], ["https://data.delijn.be/stops/406287", "https://data.delijn.be/stops/406288"], ["https://data.delijn.be/stops/401156", "https://data.delijn.be/stops/401158"], ["https://data.delijn.be/stops/201687", "https://data.delijn.be/stops/203502"], ["https://data.delijn.be/stops/107969", "https://data.delijn.be/stops/107971"], ["https://data.delijn.be/stops/102079", "https://data.delijn.be/stops/105989"], ["https://data.delijn.be/stops/300316", "https://data.delijn.be/stops/300556"], ["https://data.delijn.be/stops/407611", "https://data.delijn.be/stops/407767"], ["https://data.delijn.be/stops/206756", "https://data.delijn.be/stops/206758"], ["https://data.delijn.be/stops/508411", "https://data.delijn.be/stops/510024"], ["https://data.delijn.be/stops/400819", "https://data.delijn.be/stops/403580"], ["https://data.delijn.be/stops/305456", "https://data.delijn.be/stops/305979"], ["https://data.delijn.be/stops/301824", "https://data.delijn.be/stops/301852"], ["https://data.delijn.be/stops/502270", "https://data.delijn.be/stops/502672"], ["https://data.delijn.be/stops/102068", "https://data.delijn.be/stops/102069"], ["https://data.delijn.be/stops/403172", "https://data.delijn.be/stops/403186"], ["https://data.delijn.be/stops/103969", "https://data.delijn.be/stops/106854"], ["https://data.delijn.be/stops/106282", "https://data.delijn.be/stops/106300"], ["https://data.delijn.be/stops/304879", "https://data.delijn.be/stops/304880"], ["https://data.delijn.be/stops/507812", "https://data.delijn.be/stops/508008"], ["https://data.delijn.be/stops/103968", "https://data.delijn.be/stops/103969"], ["https://data.delijn.be/stops/206586", "https://data.delijn.be/stops/207919"], ["https://data.delijn.be/stops/403140", "https://data.delijn.be/stops/410277"], ["https://data.delijn.be/stops/104047", "https://data.delijn.be/stops/104048"], ["https://data.delijn.be/stops/106609", "https://data.delijn.be/stops/106613"], ["https://data.delijn.be/stops/102511", "https://data.delijn.be/stops/102514"], ["https://data.delijn.be/stops/104952", "https://data.delijn.be/stops/109569"], ["https://data.delijn.be/stops/106709", "https://data.delijn.be/stops/106712"], ["https://data.delijn.be/stops/303815", "https://data.delijn.be/stops/307496"], ["https://data.delijn.be/stops/301085", "https://data.delijn.be/stops/301102"], ["https://data.delijn.be/stops/304582", "https://data.delijn.be/stops/307572"], ["https://data.delijn.be/stops/202518", "https://data.delijn.be/stops/202519"], ["https://data.delijn.be/stops/408633", "https://data.delijn.be/stops/408774"], ["https://data.delijn.be/stops/106442", "https://data.delijn.be/stops/106443"], ["https://data.delijn.be/stops/103503", "https://data.delijn.be/stops/106317"], ["https://data.delijn.be/stops/302124", "https://data.delijn.be/stops/302125"], ["https://data.delijn.be/stops/205431", "https://data.delijn.be/stops/205434"], ["https://data.delijn.be/stops/408598", "https://data.delijn.be/stops/408672"], ["https://data.delijn.be/stops/305531", "https://data.delijn.be/stops/307181"], ["https://data.delijn.be/stops/303696", "https://data.delijn.be/stops/303826"], ["https://data.delijn.be/stops/501430", "https://data.delijn.be/stops/501679"], ["https://data.delijn.be/stops/201692", "https://data.delijn.be/stops/203366"], ["https://data.delijn.be/stops/406343", "https://data.delijn.be/stops/406346"], ["https://data.delijn.be/stops/304264", "https://data.delijn.be/stops/304276"], ["https://data.delijn.be/stops/401290", "https://data.delijn.be/stops/406032"], ["https://data.delijn.be/stops/406195", "https://data.delijn.be/stops/410188"], ["https://data.delijn.be/stops/204227", "https://data.delijn.be/stops/205231"], ["https://data.delijn.be/stops/406748", "https://data.delijn.be/stops/410069"], ["https://data.delijn.be/stops/200782", "https://data.delijn.be/stops/201033"], ["https://data.delijn.be/stops/108861", "https://data.delijn.be/stops/108863"], ["https://data.delijn.be/stops/402114", "https://data.delijn.be/stops/402124"], ["https://data.delijn.be/stops/306941", "https://data.delijn.be/stops/307945"], ["https://data.delijn.be/stops/200895", "https://data.delijn.be/stops/202287"], ["https://data.delijn.be/stops/300279", "https://data.delijn.be/stops/300302"], ["https://data.delijn.be/stops/503269", "https://data.delijn.be/stops/503275"], ["https://data.delijn.be/stops/302319", "https://data.delijn.be/stops/303512"], ["https://data.delijn.be/stops/407785", "https://data.delijn.be/stops/307451"], ["https://data.delijn.be/stops/302776", "https://data.delijn.be/stops/302778"], ["https://data.delijn.be/stops/106636", "https://data.delijn.be/stops/106649"], ["https://data.delijn.be/stops/302468", "https://data.delijn.be/stops/302469"], ["https://data.delijn.be/stops/105556", "https://data.delijn.be/stops/106036"], ["https://data.delijn.be/stops/107321", "https://data.delijn.be/stops/108821"], ["https://data.delijn.be/stops/504851", "https://data.delijn.be/stops/509072"], ["https://data.delijn.be/stops/105549", "https://data.delijn.be/stops/106026"], ["https://data.delijn.be/stops/102499", "https://data.delijn.be/stops/407517"], ["https://data.delijn.be/stops/406978", "https://data.delijn.be/stops/407497"], ["https://data.delijn.be/stops/305287", "https://data.delijn.be/stops/305291"], ["https://data.delijn.be/stops/503742", "https://data.delijn.be/stops/509979"], ["https://data.delijn.be/stops/505570", "https://data.delijn.be/stops/508798"], ["https://data.delijn.be/stops/206005", "https://data.delijn.be/stops/206268"], ["https://data.delijn.be/stops/301429", "https://data.delijn.be/stops/301442"], ["https://data.delijn.be/stops/101477", "https://data.delijn.be/stops/101964"], ["https://data.delijn.be/stops/407814", "https://data.delijn.be/stops/407830"], ["https://data.delijn.be/stops/109218", "https://data.delijn.be/stops/109221"], ["https://data.delijn.be/stops/404245", "https://data.delijn.be/stops/405653"], ["https://data.delijn.be/stops/505112", "https://data.delijn.be/stops/509418"], ["https://data.delijn.be/stops/107236", "https://data.delijn.be/stops/107238"], ["https://data.delijn.be/stops/303580", "https://data.delijn.be/stops/303586"], ["https://data.delijn.be/stops/204979", "https://data.delijn.be/stops/206673"], ["https://data.delijn.be/stops/206254", "https://data.delijn.be/stops/206996"], ["https://data.delijn.be/stops/502174", "https://data.delijn.be/stops/507179"], ["https://data.delijn.be/stops/500029", "https://data.delijn.be/stops/504998"], ["https://data.delijn.be/stops/200812", "https://data.delijn.be/stops/200896"], ["https://data.delijn.be/stops/400360", "https://data.delijn.be/stops/400369"], ["https://data.delijn.be/stops/204030", "https://data.delijn.be/stops/205033"], ["https://data.delijn.be/stops/200917", "https://data.delijn.be/stops/203247"], ["https://data.delijn.be/stops/404148", "https://data.delijn.be/stops/404186"], ["https://data.delijn.be/stops/402143", "https://data.delijn.be/stops/402437"], ["https://data.delijn.be/stops/406786", "https://data.delijn.be/stops/406787"], ["https://data.delijn.be/stops/302502", "https://data.delijn.be/stops/302503"], ["https://data.delijn.be/stops/301793", "https://data.delijn.be/stops/301802"], ["https://data.delijn.be/stops/504999", "https://data.delijn.be/stops/505381"], ["https://data.delijn.be/stops/200418", "https://data.delijn.be/stops/210022"], ["https://data.delijn.be/stops/204323", "https://data.delijn.be/stops/204692"], ["https://data.delijn.be/stops/108372", "https://data.delijn.be/stops/108373"], ["https://data.delijn.be/stops/206435", "https://data.delijn.be/stops/207434"], ["https://data.delijn.be/stops/107826", "https://data.delijn.be/stops/107829"], ["https://data.delijn.be/stops/208142", "https://data.delijn.be/stops/209142"], ["https://data.delijn.be/stops/402082", "https://data.delijn.be/stops/402084"], ["https://data.delijn.be/stops/304204", "https://data.delijn.be/stops/304207"], ["https://data.delijn.be/stops/108304", "https://data.delijn.be/stops/108306"], ["https://data.delijn.be/stops/208285", "https://data.delijn.be/stops/209286"], ["https://data.delijn.be/stops/105202", "https://data.delijn.be/stops/105204"], ["https://data.delijn.be/stops/400533", "https://data.delijn.be/stops/403195"], ["https://data.delijn.be/stops/403430", "https://data.delijn.be/stops/403434"], ["https://data.delijn.be/stops/503965", "https://data.delijn.be/stops/508234"], ["https://data.delijn.be/stops/303095", "https://data.delijn.be/stops/303117"], ["https://data.delijn.be/stops/303414", "https://data.delijn.be/stops/303415"], ["https://data.delijn.be/stops/200254", "https://data.delijn.be/stops/201254"], ["https://data.delijn.be/stops/501174", "https://data.delijn.be/stops/506174"], ["https://data.delijn.be/stops/502095", "https://data.delijn.be/stops/502167"], ["https://data.delijn.be/stops/204693", "https://data.delijn.be/stops/205633"], ["https://data.delijn.be/stops/208139", "https://data.delijn.be/stops/209139"], ["https://data.delijn.be/stops/101801", "https://data.delijn.be/stops/101806"], ["https://data.delijn.be/stops/204504", "https://data.delijn.be/stops/205505"], ["https://data.delijn.be/stops/301770", "https://data.delijn.be/stops/301779"], ["https://data.delijn.be/stops/502368", "https://data.delijn.be/stops/502529"], ["https://data.delijn.be/stops/503514", "https://data.delijn.be/stops/508514"], ["https://data.delijn.be/stops/200361", "https://data.delijn.be/stops/201362"], ["https://data.delijn.be/stops/301454", "https://data.delijn.be/stops/305664"], ["https://data.delijn.be/stops/208601", "https://data.delijn.be/stops/306367"], ["https://data.delijn.be/stops/203218", "https://data.delijn.be/stops/203220"], ["https://data.delijn.be/stops/206567", "https://data.delijn.be/stops/207965"], ["https://data.delijn.be/stops/505245", "https://data.delijn.be/stops/505247"], ["https://data.delijn.be/stops/402089", "https://data.delijn.be/stops/402090"], ["https://data.delijn.be/stops/400762", "https://data.delijn.be/stops/405268"], ["https://data.delijn.be/stops/204084", "https://data.delijn.be/stops/205410"], ["https://data.delijn.be/stops/505502", "https://data.delijn.be/stops/505600"], ["https://data.delijn.be/stops/401402", "https://data.delijn.be/stops/300918"], ["https://data.delijn.be/stops/503619", "https://data.delijn.be/stops/503623"], ["https://data.delijn.be/stops/105452", "https://data.delijn.be/stops/109890"], ["https://data.delijn.be/stops/204748", "https://data.delijn.be/stops/205748"], ["https://data.delijn.be/stops/503875", "https://data.delijn.be/stops/508875"], ["https://data.delijn.be/stops/402178", "https://data.delijn.be/stops/402197"], ["https://data.delijn.be/stops/400968", "https://data.delijn.be/stops/401249"], ["https://data.delijn.be/stops/203832", "https://data.delijn.be/stops/211048"], ["https://data.delijn.be/stops/401018", "https://data.delijn.be/stops/403743"], ["https://data.delijn.be/stops/502379", "https://data.delijn.be/stops/507578"], ["https://data.delijn.be/stops/101278", "https://data.delijn.be/stops/101279"], ["https://data.delijn.be/stops/103137", "https://data.delijn.be/stops/103138"], ["https://data.delijn.be/stops/408299", "https://data.delijn.be/stops/408302"], ["https://data.delijn.be/stops/300828", "https://data.delijn.be/stops/300832"], ["https://data.delijn.be/stops/102481", "https://data.delijn.be/stops/400418"], ["https://data.delijn.be/stops/402504", "https://data.delijn.be/stops/404062"], ["https://data.delijn.be/stops/206307", "https://data.delijn.be/stops/207307"], ["https://data.delijn.be/stops/205992", "https://data.delijn.be/stops/209352"], ["https://data.delijn.be/stops/300036", "https://data.delijn.be/stops/307444"], ["https://data.delijn.be/stops/206279", "https://data.delijn.be/stops/207278"], ["https://data.delijn.be/stops/503569", "https://data.delijn.be/stops/503573"], ["https://data.delijn.be/stops/507379", "https://data.delijn.be/stops/507578"], ["https://data.delijn.be/stops/208263", "https://data.delijn.be/stops/208496"], ["https://data.delijn.be/stops/204150", "https://data.delijn.be/stops/205591"], ["https://data.delijn.be/stops/400352", "https://data.delijn.be/stops/406866"], ["https://data.delijn.be/stops/402595", "https://data.delijn.be/stops/403254"], ["https://data.delijn.be/stops/505226", "https://data.delijn.be/stops/508849"], ["https://data.delijn.be/stops/503654", "https://data.delijn.be/stops/503655"], ["https://data.delijn.be/stops/505664", "https://data.delijn.be/stops/507469"], ["https://data.delijn.be/stops/108454", "https://data.delijn.be/stops/108512"], ["https://data.delijn.be/stops/209492", "https://data.delijn.be/stops/210066"], ["https://data.delijn.be/stops/202231", "https://data.delijn.be/stops/208890"], ["https://data.delijn.be/stops/401810", "https://data.delijn.be/stops/410356"], ["https://data.delijn.be/stops/505335", "https://data.delijn.be/stops/507663"], ["https://data.delijn.be/stops/202505", "https://data.delijn.be/stops/203505"], ["https://data.delijn.be/stops/409018", "https://data.delijn.be/stops/409021"], ["https://data.delijn.be/stops/300980", "https://data.delijn.be/stops/300981"], ["https://data.delijn.be/stops/502946", "https://data.delijn.be/stops/503587"], ["https://data.delijn.be/stops/200561", "https://data.delijn.be/stops/200563"], ["https://data.delijn.be/stops/302523", "https://data.delijn.be/stops/308886"], ["https://data.delijn.be/stops/109293", "https://data.delijn.be/stops/109295"], ["https://data.delijn.be/stops/304957", "https://data.delijn.be/stops/304959"], ["https://data.delijn.be/stops/107577", "https://data.delijn.be/stops/107578"], ["https://data.delijn.be/stops/405830", "https://data.delijn.be/stops/409695"], ["https://data.delijn.be/stops/206362", "https://data.delijn.be/stops/206377"], ["https://data.delijn.be/stops/405963", "https://data.delijn.be/stops/405966"], ["https://data.delijn.be/stops/209294", "https://data.delijn.be/stops/209726"], ["https://data.delijn.be/stops/105044", "https://data.delijn.be/stops/109759"], ["https://data.delijn.be/stops/303473", "https://data.delijn.be/stops/304175"], ["https://data.delijn.be/stops/507386", "https://data.delijn.be/stops/507397"], ["https://data.delijn.be/stops/501235", "https://data.delijn.be/stops/506235"], ["https://data.delijn.be/stops/205188", "https://data.delijn.be/stops/205189"], ["https://data.delijn.be/stops/103042", "https://data.delijn.be/stops/107524"], ["https://data.delijn.be/stops/408110", "https://data.delijn.be/stops/408159"], ["https://data.delijn.be/stops/505290", "https://data.delijn.be/stops/508906"], ["https://data.delijn.be/stops/500052", "https://data.delijn.be/stops/507076"], ["https://data.delijn.be/stops/502397", "https://data.delijn.be/stops/507412"], ["https://data.delijn.be/stops/206143", "https://data.delijn.be/stops/207298"], ["https://data.delijn.be/stops/408058", "https://data.delijn.be/stops/408059"], ["https://data.delijn.be/stops/302786", "https://data.delijn.be/stops/308593"], ["https://data.delijn.be/stops/204317", "https://data.delijn.be/stops/205058"], ["https://data.delijn.be/stops/409089", "https://data.delijn.be/stops/409211"], ["https://data.delijn.be/stops/503829", "https://data.delijn.be/stops/509052"], ["https://data.delijn.be/stops/200885", "https://data.delijn.be/stops/507596"], ["https://data.delijn.be/stops/104721", "https://data.delijn.be/stops/105235"], ["https://data.delijn.be/stops/206284", "https://data.delijn.be/stops/207284"], ["https://data.delijn.be/stops/409590", "https://data.delijn.be/stops/409598"], ["https://data.delijn.be/stops/503756", "https://data.delijn.be/stops/508756"], ["https://data.delijn.be/stops/504954", "https://data.delijn.be/stops/509955"], ["https://data.delijn.be/stops/508553", "https://data.delijn.be/stops/508559"], ["https://data.delijn.be/stops/305433", "https://data.delijn.be/stops/305509"], ["https://data.delijn.be/stops/501349", "https://data.delijn.be/stops/506320"], ["https://data.delijn.be/stops/207776", "https://data.delijn.be/stops/208741"], ["https://data.delijn.be/stops/103209", "https://data.delijn.be/stops/106580"], ["https://data.delijn.be/stops/402975", "https://data.delijn.be/stops/403316"], ["https://data.delijn.be/stops/401767", "https://data.delijn.be/stops/406346"], ["https://data.delijn.be/stops/201689", "https://data.delijn.be/stops/210128"], ["https://data.delijn.be/stops/503312", "https://data.delijn.be/stops/505814"], ["https://data.delijn.be/stops/105079", "https://data.delijn.be/stops/105089"], ["https://data.delijn.be/stops/106649", "https://data.delijn.be/stops/106650"], ["https://data.delijn.be/stops/202826", "https://data.delijn.be/stops/202827"], ["https://data.delijn.be/stops/405699", "https://data.delijn.be/stops/405900"], ["https://data.delijn.be/stops/206742", "https://data.delijn.be/stops/207985"], ["https://data.delijn.be/stops/504173", "https://data.delijn.be/stops/504747"], ["https://data.delijn.be/stops/405554", "https://data.delijn.be/stops/405555"], ["https://data.delijn.be/stops/209290", "https://data.delijn.be/stops/209639"], ["https://data.delijn.be/stops/300551", "https://data.delijn.be/stops/300617"], ["https://data.delijn.be/stops/108608", "https://data.delijn.be/stops/300071"], ["https://data.delijn.be/stops/106898", "https://data.delijn.be/stops/107214"], ["https://data.delijn.be/stops/502722", "https://data.delijn.be/stops/507239"], ["https://data.delijn.be/stops/403294", "https://data.delijn.be/stops/409173"], ["https://data.delijn.be/stops/304593", "https://data.delijn.be/stops/304634"], ["https://data.delijn.be/stops/503650", "https://data.delijn.be/stops/508930"], ["https://data.delijn.be/stops/502542", "https://data.delijn.be/stops/502546"], ["https://data.delijn.be/stops/501346", "https://data.delijn.be/stops/501699"], ["https://data.delijn.be/stops/300602", "https://data.delijn.be/stops/306799"], ["https://data.delijn.be/stops/101565", "https://data.delijn.be/stops/105800"], ["https://data.delijn.be/stops/503966", "https://data.delijn.be/stops/505532"], ["https://data.delijn.be/stops/103993", "https://data.delijn.be/stops/105392"], ["https://data.delijn.be/stops/509568", "https://data.delijn.be/stops/509569"], ["https://data.delijn.be/stops/304070", "https://data.delijn.be/stops/306278"], ["https://data.delijn.be/stops/305647", "https://data.delijn.be/stops/305666"], ["https://data.delijn.be/stops/201946", "https://data.delijn.be/stops/202455"], ["https://data.delijn.be/stops/206843", "https://data.delijn.be/stops/307982"], ["https://data.delijn.be/stops/305304", "https://data.delijn.be/stops/305310"], ["https://data.delijn.be/stops/504572", "https://data.delijn.be/stops/509574"], ["https://data.delijn.be/stops/301460", "https://data.delijn.be/stops/301461"], ["https://data.delijn.be/stops/206091", "https://data.delijn.be/stops/207093"], ["https://data.delijn.be/stops/207678", "https://data.delijn.be/stops/209144"], ["https://data.delijn.be/stops/400248", "https://data.delijn.be/stops/400929"], ["https://data.delijn.be/stops/305234", "https://data.delijn.be/stops/305296"], ["https://data.delijn.be/stops/402570", "https://data.delijn.be/stops/402571"], ["https://data.delijn.be/stops/402305", "https://data.delijn.be/stops/402306"], ["https://data.delijn.be/stops/406269", "https://data.delijn.be/stops/406420"], ["https://data.delijn.be/stops/401415", "https://data.delijn.be/stops/308957"], ["https://data.delijn.be/stops/101460", "https://data.delijn.be/stops/104408"], ["https://data.delijn.be/stops/201850", "https://data.delijn.be/stops/201882"], ["https://data.delijn.be/stops/400863", "https://data.delijn.be/stops/400864"], ["https://data.delijn.be/stops/400742", "https://data.delijn.be/stops/404262"], ["https://data.delijn.be/stops/304603", "https://data.delijn.be/stops/304645"], ["https://data.delijn.be/stops/204106", "https://data.delijn.be/stops/204586"], ["https://data.delijn.be/stops/107974", "https://data.delijn.be/stops/306759"], ["https://data.delijn.be/stops/502279", "https://data.delijn.be/stops/507284"], ["https://data.delijn.be/stops/203297", "https://data.delijn.be/stops/211856"], ["https://data.delijn.be/stops/400661", "https://data.delijn.be/stops/402539"], ["https://data.delijn.be/stops/307316", "https://data.delijn.be/stops/307318"], ["https://data.delijn.be/stops/108522", "https://data.delijn.be/stops/108526"], ["https://data.delijn.be/stops/206197", "https://data.delijn.be/stops/206198"], ["https://data.delijn.be/stops/200748", "https://data.delijn.be/stops/205071"], ["https://data.delijn.be/stops/200050", "https://data.delijn.be/stops/203934"], ["https://data.delijn.be/stops/201812", "https://data.delijn.be/stops/201819"], ["https://data.delijn.be/stops/305501", "https://data.delijn.be/stops/307877"], ["https://data.delijn.be/stops/303563", "https://data.delijn.be/stops/304129"], ["https://data.delijn.be/stops/405760", "https://data.delijn.be/stops/308932"], ["https://data.delijn.be/stops/402938", "https://data.delijn.be/stops/405972"], ["https://data.delijn.be/stops/200688", "https://data.delijn.be/stops/202374"], ["https://data.delijn.be/stops/503867", "https://data.delijn.be/stops/508867"], ["https://data.delijn.be/stops/101529", "https://data.delijn.be/stops/101531"], ["https://data.delijn.be/stops/104703", "https://data.delijn.be/stops/104706"], ["https://data.delijn.be/stops/101488", "https://data.delijn.be/stops/109502"], ["https://data.delijn.be/stops/508416", "https://data.delijn.be/stops/508443"], ["https://data.delijn.be/stops/300340", "https://data.delijn.be/stops/300368"], ["https://data.delijn.be/stops/503405", "https://data.delijn.be/stops/508406"], ["https://data.delijn.be/stops/304568", "https://data.delijn.be/stops/304585"], ["https://data.delijn.be/stops/403714", "https://data.delijn.be/stops/403723"], ["https://data.delijn.be/stops/202848", "https://data.delijn.be/stops/203848"], ["https://data.delijn.be/stops/404985", "https://data.delijn.be/stops/404987"], ["https://data.delijn.be/stops/208170", "https://data.delijn.be/stops/209169"], ["https://data.delijn.be/stops/204976", "https://data.delijn.be/stops/208248"], ["https://data.delijn.be/stops/106993", "https://data.delijn.be/stops/106996"], ["https://data.delijn.be/stops/501016", "https://data.delijn.be/stops/506614"], ["https://data.delijn.be/stops/101605", "https://data.delijn.be/stops/103620"], ["https://data.delijn.be/stops/209345", "https://data.delijn.be/stops/209347"], ["https://data.delijn.be/stops/504858", "https://data.delijn.be/stops/505435"], ["https://data.delijn.be/stops/106627", "https://data.delijn.be/stops/106671"], ["https://data.delijn.be/stops/404601", "https://data.delijn.be/stops/406831"], ["https://data.delijn.be/stops/105152", "https://data.delijn.be/stops/109523"], ["https://data.delijn.be/stops/102277", "https://data.delijn.be/stops/108031"], ["https://data.delijn.be/stops/402323", "https://data.delijn.be/stops/408364"], ["https://data.delijn.be/stops/301471", "https://data.delijn.be/stops/301497"], ["https://data.delijn.be/stops/305650", "https://data.delijn.be/stops/305661"], ["https://data.delijn.be/stops/302410", "https://data.delijn.be/stops/308814"], ["https://data.delijn.be/stops/206692", "https://data.delijn.be/stops/207693"], ["https://data.delijn.be/stops/206672", "https://data.delijn.be/stops/209632"], ["https://data.delijn.be/stops/301281", "https://data.delijn.be/stops/301313"], ["https://data.delijn.be/stops/305717", "https://data.delijn.be/stops/306304"], ["https://data.delijn.be/stops/503297", "https://data.delijn.be/stops/503308"], ["https://data.delijn.be/stops/400435", "https://data.delijn.be/stops/406785"], ["https://data.delijn.be/stops/301906", "https://data.delijn.be/stops/301908"], ["https://data.delijn.be/stops/200092", "https://data.delijn.be/stops/210059"], ["https://data.delijn.be/stops/301645", "https://data.delijn.be/stops/301662"], ["https://data.delijn.be/stops/205137", "https://data.delijn.be/stops/205239"], ["https://data.delijn.be/stops/505016", "https://data.delijn.be/stops/507354"], ["https://data.delijn.be/stops/308501", "https://data.delijn.be/stops/308520"], ["https://data.delijn.be/stops/108125", "https://data.delijn.be/stops/108127"], ["https://data.delijn.be/stops/104668", "https://data.delijn.be/stops/109568"], ["https://data.delijn.be/stops/402885", "https://data.delijn.be/stops/402887"], ["https://data.delijn.be/stops/101066", "https://data.delijn.be/stops/105962"], ["https://data.delijn.be/stops/406100", "https://data.delijn.be/stops/406110"], ["https://data.delijn.be/stops/301911", "https://data.delijn.be/stops/301913"], ["https://data.delijn.be/stops/300681", "https://data.delijn.be/stops/305965"], ["https://data.delijn.be/stops/208070", "https://data.delijn.be/stops/209072"], ["https://data.delijn.be/stops/402469", "https://data.delijn.be/stops/410076"], ["https://data.delijn.be/stops/202555", "https://data.delijn.be/stops/203556"], ["https://data.delijn.be/stops/101497", "https://data.delijn.be/stops/108307"], ["https://data.delijn.be/stops/105888", "https://data.delijn.be/stops/109744"], ["https://data.delijn.be/stops/505641", "https://data.delijn.be/stops/509813"], ["https://data.delijn.be/stops/502208", "https://data.delijn.be/stops/507208"], ["https://data.delijn.be/stops/505908", "https://data.delijn.be/stops/508801"], ["https://data.delijn.be/stops/108429", "https://data.delijn.be/stops/109579"], ["https://data.delijn.be/stops/502707", "https://data.delijn.be/stops/505687"], ["https://data.delijn.be/stops/504819", "https://data.delijn.be/stops/509820"], ["https://data.delijn.be/stops/209569", "https://data.delijn.be/stops/209570"], ["https://data.delijn.be/stops/208278", "https://data.delijn.be/stops/209278"], ["https://data.delijn.be/stops/210092", "https://data.delijn.be/stops/211127"], ["https://data.delijn.be/stops/406218", "https://data.delijn.be/stops/406222"], ["https://data.delijn.be/stops/203721", "https://data.delijn.be/stops/203722"], ["https://data.delijn.be/stops/201326", "https://data.delijn.be/stops/211004"], ["https://data.delijn.be/stops/301799", "https://data.delijn.be/stops/303704"], ["https://data.delijn.be/stops/405777", "https://data.delijn.be/stops/409761"], ["https://data.delijn.be/stops/204105", "https://data.delijn.be/stops/204110"], ["https://data.delijn.be/stops/202302", "https://data.delijn.be/stops/203304"], ["https://data.delijn.be/stops/106397", "https://data.delijn.be/stops/108440"], ["https://data.delijn.be/stops/504986", "https://data.delijn.be/stops/505291"], ["https://data.delijn.be/stops/306926", "https://data.delijn.be/stops/308726"], ["https://data.delijn.be/stops/206352", "https://data.delijn.be/stops/206377"], ["https://data.delijn.be/stops/300019", "https://data.delijn.be/stops/300276"], ["https://data.delijn.be/stops/103214", "https://data.delijn.be/stops/106792"], ["https://data.delijn.be/stops/503825", "https://data.delijn.be/stops/508825"], ["https://data.delijn.be/stops/404496", "https://data.delijn.be/stops/404497"], ["https://data.delijn.be/stops/301083", "https://data.delijn.be/stops/301084"], ["https://data.delijn.be/stops/503763", "https://data.delijn.be/stops/508760"], ["https://data.delijn.be/stops/106371", "https://data.delijn.be/stops/106387"], ["https://data.delijn.be/stops/108628", "https://data.delijn.be/stops/108995"], ["https://data.delijn.be/stops/108528", "https://data.delijn.be/stops/108536"], ["https://data.delijn.be/stops/302812", "https://data.delijn.be/stops/307813"], ["https://data.delijn.be/stops/202152", "https://data.delijn.be/stops/203151"], ["https://data.delijn.be/stops/105232", "https://data.delijn.be/stops/109926"], ["https://data.delijn.be/stops/202765", "https://data.delijn.be/stops/203765"], ["https://data.delijn.be/stops/504069", "https://data.delijn.be/stops/504836"], ["https://data.delijn.be/stops/101503", "https://data.delijn.be/stops/109343"], ["https://data.delijn.be/stops/403462", "https://data.delijn.be/stops/403482"], ["https://data.delijn.be/stops/308711", "https://data.delijn.be/stops/308712"], ["https://data.delijn.be/stops/408387", "https://data.delijn.be/stops/408389"], ["https://data.delijn.be/stops/300750", "https://data.delijn.be/stops/300753"], ["https://data.delijn.be/stops/302303", "https://data.delijn.be/stops/302317"], ["https://data.delijn.be/stops/206285", "https://data.delijn.be/stops/207285"], ["https://data.delijn.be/stops/301541", "https://data.delijn.be/stops/306960"], ["https://data.delijn.be/stops/410057", "https://data.delijn.be/stops/410089"], ["https://data.delijn.be/stops/103594", "https://data.delijn.be/stops/109126"], ["https://data.delijn.be/stops/501244", "https://data.delijn.be/stops/506244"], ["https://data.delijn.be/stops/203681", "https://data.delijn.be/stops/211023"], ["https://data.delijn.be/stops/205034", "https://data.delijn.be/stops/205035"], ["https://data.delijn.be/stops/302979", "https://data.delijn.be/stops/307067"], ["https://data.delijn.be/stops/403150", "https://data.delijn.be/stops/403153"], ["https://data.delijn.be/stops/407583", "https://data.delijn.be/stops/410321"], ["https://data.delijn.be/stops/308213", "https://data.delijn.be/stops/308248"], ["https://data.delijn.be/stops/103895", "https://data.delijn.be/stops/103896"], ["https://data.delijn.be/stops/300783", "https://data.delijn.be/stops/301298"], ["https://data.delijn.be/stops/405291", "https://data.delijn.be/stops/406726"], ["https://data.delijn.be/stops/404659", "https://data.delijn.be/stops/410133"], ["https://data.delijn.be/stops/206598", "https://data.delijn.be/stops/207598"], ["https://data.delijn.be/stops/206317", "https://data.delijn.be/stops/207811"], ["https://data.delijn.be/stops/201675", "https://data.delijn.be/stops/202209"], ["https://data.delijn.be/stops/304540", "https://data.delijn.be/stops/307587"], ["https://data.delijn.be/stops/200761", "https://data.delijn.be/stops/505974"], ["https://data.delijn.be/stops/508269", "https://data.delijn.be/stops/508475"], ["https://data.delijn.be/stops/218031", "https://data.delijn.be/stops/219031"], ["https://data.delijn.be/stops/200156", "https://data.delijn.be/stops/200701"], ["https://data.delijn.be/stops/104936", "https://data.delijn.be/stops/108353"], ["https://data.delijn.be/stops/501627", "https://data.delijn.be/stops/505542"], ["https://data.delijn.be/stops/304842", "https://data.delijn.be/stops/306369"], ["https://data.delijn.be/stops/102221", "https://data.delijn.be/stops/105538"], ["https://data.delijn.be/stops/504422", "https://data.delijn.be/stops/509428"], ["https://data.delijn.be/stops/501154", "https://data.delijn.be/stops/501161"], ["https://data.delijn.be/stops/107043", "https://data.delijn.be/stops/107044"], ["https://data.delijn.be/stops/401666", "https://data.delijn.be/stops/308273"], ["https://data.delijn.be/stops/202482", "https://data.delijn.be/stops/203482"], ["https://data.delijn.be/stops/401444", "https://data.delijn.be/stops/401445"], ["https://data.delijn.be/stops/303447", "https://data.delijn.be/stops/303448"], ["https://data.delijn.be/stops/207785", "https://data.delijn.be/stops/209188"], ["https://data.delijn.be/stops/404108", "https://data.delijn.be/stops/404109"], ["https://data.delijn.be/stops/301454", "https://data.delijn.be/stops/301455"], ["https://data.delijn.be/stops/102145", "https://data.delijn.be/stops/104122"], ["https://data.delijn.be/stops/502001", "https://data.delijn.be/stops/502039"], ["https://data.delijn.be/stops/303036", "https://data.delijn.be/stops/303105"], ["https://data.delijn.be/stops/405472", "https://data.delijn.be/stops/405474"], ["https://data.delijn.be/stops/208094", "https://data.delijn.be/stops/209631"], ["https://data.delijn.be/stops/501305", "https://data.delijn.be/stops/506477"], ["https://data.delijn.be/stops/208447", "https://data.delijn.be/stops/209446"], ["https://data.delijn.be/stops/208602", "https://data.delijn.be/stops/209602"], ["https://data.delijn.be/stops/407971", "https://data.delijn.be/stops/408230"], ["https://data.delijn.be/stops/303238", "https://data.delijn.be/stops/304247"], ["https://data.delijn.be/stops/405678", "https://data.delijn.be/stops/405684"], ["https://data.delijn.be/stops/508791", "https://data.delijn.be/stops/508795"], ["https://data.delijn.be/stops/503590", "https://data.delijn.be/stops/509883"], ["https://data.delijn.be/stops/109806", "https://data.delijn.be/stops/109807"], ["https://data.delijn.be/stops/504718", "https://data.delijn.be/stops/509118"], ["https://data.delijn.be/stops/300125", "https://data.delijn.be/stops/307071"], ["https://data.delijn.be/stops/303253", "https://data.delijn.be/stops/303266"], ["https://data.delijn.be/stops/505676", "https://data.delijn.be/stops/505679"], ["https://data.delijn.be/stops/502018", "https://data.delijn.be/stops/503138"], ["https://data.delijn.be/stops/107582", "https://data.delijn.be/stops/107583"], ["https://data.delijn.be/stops/206075", "https://data.delijn.be/stops/207260"], ["https://data.delijn.be/stops/300526", "https://data.delijn.be/stops/300531"], ["https://data.delijn.be/stops/302689", "https://data.delijn.be/stops/302697"], ["https://data.delijn.be/stops/503166", "https://data.delijn.be/stops/508160"], ["https://data.delijn.be/stops/408610", "https://data.delijn.be/stops/408769"], ["https://data.delijn.be/stops/200037", "https://data.delijn.be/stops/201375"], ["https://data.delijn.be/stops/101132", "https://data.delijn.be/stops/105987"], ["https://data.delijn.be/stops/502946", "https://data.delijn.be/stops/505095"], ["https://data.delijn.be/stops/201282", "https://data.delijn.be/stops/201336"], ["https://data.delijn.be/stops/200821", "https://data.delijn.be/stops/208653"], ["https://data.delijn.be/stops/300206", "https://data.delijn.be/stops/307130"], ["https://data.delijn.be/stops/400279", "https://data.delijn.be/stops/400339"], ["https://data.delijn.be/stops/300962", "https://data.delijn.be/stops/300972"], ["https://data.delijn.be/stops/505308", "https://data.delijn.be/stops/505309"], ["https://data.delijn.be/stops/108284", "https://data.delijn.be/stops/109654"], ["https://data.delijn.be/stops/403022", "https://data.delijn.be/stops/405653"], ["https://data.delijn.be/stops/200896", "https://data.delijn.be/stops/201120"], ["https://data.delijn.be/stops/304860", "https://data.delijn.be/stops/307644"], ["https://data.delijn.be/stops/504057", "https://data.delijn.be/stops/504531"], ["https://data.delijn.be/stops/401266", "https://data.delijn.be/stops/401267"], ["https://data.delijn.be/stops/306165", "https://data.delijn.be/stops/306166"], ["https://data.delijn.be/stops/105777", "https://data.delijn.be/stops/108013"], ["https://data.delijn.be/stops/400572", "https://data.delijn.be/stops/403226"], ["https://data.delijn.be/stops/102982", "https://data.delijn.be/stops/105029"], ["https://data.delijn.be/stops/305395", "https://data.delijn.be/stops/305396"], ["https://data.delijn.be/stops/402824", "https://data.delijn.be/stops/402827"], ["https://data.delijn.be/stops/503329", "https://data.delijn.be/stops/503980"], ["https://data.delijn.be/stops/501187", "https://data.delijn.be/stops/505746"], ["https://data.delijn.be/stops/203468", "https://data.delijn.be/stops/203469"], ["https://data.delijn.be/stops/400050", "https://data.delijn.be/stops/400051"], ["https://data.delijn.be/stops/200224", "https://data.delijn.be/stops/201224"], ["https://data.delijn.be/stops/209549", "https://data.delijn.be/stops/209551"], ["https://data.delijn.be/stops/208430", "https://data.delijn.be/stops/209427"], ["https://data.delijn.be/stops/204735", "https://data.delijn.be/stops/204759"], ["https://data.delijn.be/stops/403658", "https://data.delijn.be/stops/404849"], ["https://data.delijn.be/stops/205350", "https://data.delijn.be/stops/214002"], ["https://data.delijn.be/stops/304512", "https://data.delijn.be/stops/305602"], ["https://data.delijn.be/stops/505428", "https://data.delijn.be/stops/509019"], ["https://data.delijn.be/stops/502023", "https://data.delijn.be/stops/504758"], ["https://data.delijn.be/stops/201395", "https://data.delijn.be/stops/208718"], ["https://data.delijn.be/stops/102199", "https://data.delijn.be/stops/103317"], ["https://data.delijn.be/stops/501084", "https://data.delijn.be/stops/506435"], ["https://data.delijn.be/stops/403966", "https://data.delijn.be/stops/403967"], ["https://data.delijn.be/stops/104928", "https://data.delijn.be/stops/104931"], ["https://data.delijn.be/stops/206495", "https://data.delijn.be/stops/207495"], ["https://data.delijn.be/stops/503808", "https://data.delijn.be/stops/505423"], ["https://data.delijn.be/stops/200752", "https://data.delijn.be/stops/200771"], ["https://data.delijn.be/stops/105039", "https://data.delijn.be/stops/105041"], ["https://data.delijn.be/stops/502341", "https://data.delijn.be/stops/505089"], ["https://data.delijn.be/stops/202510", "https://data.delijn.be/stops/203510"], ["https://data.delijn.be/stops/401964", "https://data.delijn.be/stops/401986"], ["https://data.delijn.be/stops/406970", "https://data.delijn.be/stops/409476"], ["https://data.delijn.be/stops/200464", "https://data.delijn.be/stops/200664"], ["https://data.delijn.be/stops/503267", "https://data.delijn.be/stops/503274"], ["https://data.delijn.be/stops/505716", "https://data.delijn.be/stops/508483"], ["https://data.delijn.be/stops/108808", "https://data.delijn.be/stops/108813"], ["https://data.delijn.be/stops/200112", "https://data.delijn.be/stops/202355"], ["https://data.delijn.be/stops/505092", "https://data.delijn.be/stops/507340"], ["https://data.delijn.be/stops/208090", "https://data.delijn.be/stops/208560"], ["https://data.delijn.be/stops/502548", "https://data.delijn.be/stops/505735"], ["https://data.delijn.be/stops/500956", "https://data.delijn.be/stops/503287"], ["https://data.delijn.be/stops/402773", "https://data.delijn.be/stops/408274"], ["https://data.delijn.be/stops/209697", "https://data.delijn.be/stops/209700"], ["https://data.delijn.be/stops/201904", "https://data.delijn.be/stops/202512"], ["https://data.delijn.be/stops/400050", "https://data.delijn.be/stops/409143"], ["https://data.delijn.be/stops/202423", "https://data.delijn.be/stops/203423"], ["https://data.delijn.be/stops/308455", "https://data.delijn.be/stops/308456"], ["https://data.delijn.be/stops/405834", "https://data.delijn.be/stops/405835"], ["https://data.delijn.be/stops/407701", "https://data.delijn.be/stops/407769"], ["https://data.delijn.be/stops/407019", "https://data.delijn.be/stops/407085"], ["https://data.delijn.be/stops/302536", "https://data.delijn.be/stops/302538"], ["https://data.delijn.be/stops/404146", "https://data.delijn.be/stops/404199"], ["https://data.delijn.be/stops/408737", "https://data.delijn.be/stops/410192"], ["https://data.delijn.be/stops/200945", "https://data.delijn.be/stops/203696"], ["https://data.delijn.be/stops/202462", "https://data.delijn.be/stops/203462"], ["https://data.delijn.be/stops/201934", "https://data.delijn.be/stops/202949"], ["https://data.delijn.be/stops/306065", "https://data.delijn.be/stops/307599"], ["https://data.delijn.be/stops/404416", "https://data.delijn.be/stops/404449"], ["https://data.delijn.be/stops/104691", "https://data.delijn.be/stops/104696"], ["https://data.delijn.be/stops/304363", "https://data.delijn.be/stops/304364"], ["https://data.delijn.be/stops/202775", "https://data.delijn.be/stops/203213"], ["https://data.delijn.be/stops/107267", "https://data.delijn.be/stops/107268"], ["https://data.delijn.be/stops/405655", "https://data.delijn.be/stops/408447"], ["https://data.delijn.be/stops/303699", "https://data.delijn.be/stops/303781"], ["https://data.delijn.be/stops/208684", "https://data.delijn.be/stops/208686"], ["https://data.delijn.be/stops/206322", "https://data.delijn.be/stops/207722"], ["https://data.delijn.be/stops/304362", "https://data.delijn.be/stops/307372"], ["https://data.delijn.be/stops/508471", "https://data.delijn.be/stops/508947"], ["https://data.delijn.be/stops/503929", "https://data.delijn.be/stops/508925"], ["https://data.delijn.be/stops/501210", "https://data.delijn.be/stops/505036"], ["https://data.delijn.be/stops/102086", "https://data.delijn.be/stops/108858"], ["https://data.delijn.be/stops/201703", "https://data.delijn.be/stops/202564"], ["https://data.delijn.be/stops/400586", "https://data.delijn.be/stops/400597"], ["https://data.delijn.be/stops/207333", "https://data.delijn.be/stops/207707"], ["https://data.delijn.be/stops/201717", "https://data.delijn.be/stops/203578"], ["https://data.delijn.be/stops/200213", "https://data.delijn.be/stops/201216"], ["https://data.delijn.be/stops/203683", "https://data.delijn.be/stops/203707"], ["https://data.delijn.be/stops/405928", "https://data.delijn.be/stops/405929"], ["https://data.delijn.be/stops/200199", "https://data.delijn.be/stops/203889"], ["https://data.delijn.be/stops/404255", "https://data.delijn.be/stops/405195"], ["https://data.delijn.be/stops/106781", "https://data.delijn.be/stops/106782"], ["https://data.delijn.be/stops/503030", "https://data.delijn.be/stops/508030"], ["https://data.delijn.be/stops/204676", "https://data.delijn.be/stops/205338"], ["https://data.delijn.be/stops/302524", "https://data.delijn.be/stops/302528"], ["https://data.delijn.be/stops/103293", "https://data.delijn.be/stops/107686"], ["https://data.delijn.be/stops/307584", "https://data.delijn.be/stops/307585"], ["https://data.delijn.be/stops/101020", "https://data.delijn.be/stops/103905"], ["https://data.delijn.be/stops/404917", "https://data.delijn.be/stops/404946"], ["https://data.delijn.be/stops/400782", "https://data.delijn.be/stops/410393"], ["https://data.delijn.be/stops/509837", "https://data.delijn.be/stops/509838"], ["https://data.delijn.be/stops/101839", "https://data.delijn.be/stops/107625"], ["https://data.delijn.be/stops/108913", "https://data.delijn.be/stops/108916"], ["https://data.delijn.be/stops/505744", "https://data.delijn.be/stops/507503"], ["https://data.delijn.be/stops/506450", "https://data.delijn.be/stops/506451"], ["https://data.delijn.be/stops/405781", "https://data.delijn.be/stops/409760"], ["https://data.delijn.be/stops/208362", "https://data.delijn.be/stops/208778"], ["https://data.delijn.be/stops/400727", "https://data.delijn.be/stops/405173"], ["https://data.delijn.be/stops/501484", "https://data.delijn.be/stops/506682"], ["https://data.delijn.be/stops/505010", "https://data.delijn.be/stops/507710"], ["https://data.delijn.be/stops/104921", "https://data.delijn.be/stops/107861"], ["https://data.delijn.be/stops/102291", "https://data.delijn.be/stops/108019"], ["https://data.delijn.be/stops/303119", "https://data.delijn.be/stops/306319"], ["https://data.delijn.be/stops/504723", "https://data.delijn.be/stops/509486"], ["https://data.delijn.be/stops/402577", "https://data.delijn.be/stops/402592"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/504083"], ["https://data.delijn.be/stops/103963", "https://data.delijn.be/stops/405013"], ["https://data.delijn.be/stops/405920", "https://data.delijn.be/stops/405921"], ["https://data.delijn.be/stops/308474", "https://data.delijn.be/stops/308475"], ["https://data.delijn.be/stops/508026", "https://data.delijn.be/stops/508027"], ["https://data.delijn.be/stops/503645", "https://data.delijn.be/stops/503646"], ["https://data.delijn.be/stops/201919", "https://data.delijn.be/stops/206939"], ["https://data.delijn.be/stops/301679", "https://data.delijn.be/stops/301690"], ["https://data.delijn.be/stops/106284", "https://data.delijn.be/stops/106300"], ["https://data.delijn.be/stops/302490", "https://data.delijn.be/stops/302491"], ["https://data.delijn.be/stops/402764", "https://data.delijn.be/stops/402765"], ["https://data.delijn.be/stops/301809", "https://data.delijn.be/stops/301810"], ["https://data.delijn.be/stops/206272", "https://data.delijn.be/stops/207243"], ["https://data.delijn.be/stops/106104", "https://data.delijn.be/stops/106158"], ["https://data.delijn.be/stops/200485", "https://data.delijn.be/stops/209265"], ["https://data.delijn.be/stops/109615", "https://data.delijn.be/stops/109616"], ["https://data.delijn.be/stops/303194", "https://data.delijn.be/stops/303195"], ["https://data.delijn.be/stops/304410", "https://data.delijn.be/stops/307386"], ["https://data.delijn.be/stops/402822", "https://data.delijn.be/stops/409015"], ["https://data.delijn.be/stops/300940", "https://data.delijn.be/stops/300942"], ["https://data.delijn.be/stops/302584", "https://data.delijn.be/stops/302693"], ["https://data.delijn.be/stops/401897", "https://data.delijn.be/stops/402033"], ["https://data.delijn.be/stops/200258", "https://data.delijn.be/stops/203562"], ["https://data.delijn.be/stops/107110", "https://data.delijn.be/stops/109135"], ["https://data.delijn.be/stops/200755", "https://data.delijn.be/stops/208306"], ["https://data.delijn.be/stops/205113", "https://data.delijn.be/stops/205689"], ["https://data.delijn.be/stops/505140", "https://data.delijn.be/stops/509891"], ["https://data.delijn.be/stops/400534", "https://data.delijn.be/stops/410109"], ["https://data.delijn.be/stops/408160", "https://data.delijn.be/stops/408161"], ["https://data.delijn.be/stops/207555", "https://data.delijn.be/stops/209080"], ["https://data.delijn.be/stops/209603", "https://data.delijn.be/stops/307594"], ["https://data.delijn.be/stops/206611", "https://data.delijn.be/stops/206709"], ["https://data.delijn.be/stops/300852", "https://data.delijn.be/stops/300888"], ["https://data.delijn.be/stops/305994", "https://data.delijn.be/stops/305995"], ["https://data.delijn.be/stops/405129", "https://data.delijn.be/stops/405393"], ["https://data.delijn.be/stops/102014", "https://data.delijn.be/stops/104458"], ["https://data.delijn.be/stops/105677", "https://data.delijn.be/stops/105678"], ["https://data.delijn.be/stops/200659", "https://data.delijn.be/stops/201543"], ["https://data.delijn.be/stops/300826", "https://data.delijn.be/stops/300856"], ["https://data.delijn.be/stops/305406", "https://data.delijn.be/stops/305407"], ["https://data.delijn.be/stops/503482", "https://data.delijn.be/stops/508484"], ["https://data.delijn.be/stops/402203", "https://data.delijn.be/stops/402437"], ["https://data.delijn.be/stops/206565", "https://data.delijn.be/stops/207997"], ["https://data.delijn.be/stops/101701", "https://data.delijn.be/stops/108420"], ["https://data.delijn.be/stops/401946", "https://data.delijn.be/stops/405683"], ["https://data.delijn.be/stops/400056", "https://data.delijn.be/stops/400057"], ["https://data.delijn.be/stops/201497", "https://data.delijn.be/stops/210054"], ["https://data.delijn.be/stops/301319", "https://data.delijn.be/stops/306654"], ["https://data.delijn.be/stops/208554", "https://data.delijn.be/stops/209603"], ["https://data.delijn.be/stops/200331", "https://data.delijn.be/stops/203199"], ["https://data.delijn.be/stops/408506", "https://data.delijn.be/stops/408507"], ["https://data.delijn.be/stops/501074", "https://data.delijn.be/stops/501506"], ["https://data.delijn.be/stops/302976", "https://data.delijn.be/stops/302977"], ["https://data.delijn.be/stops/300007", "https://data.delijn.be/stops/301345"], ["https://data.delijn.be/stops/206977", "https://data.delijn.be/stops/207412"], ["https://data.delijn.be/stops/104931", "https://data.delijn.be/stops/107837"], ["https://data.delijn.be/stops/506447", "https://data.delijn.be/stops/506450"], ["https://data.delijn.be/stops/208660", "https://data.delijn.be/stops/209153"], ["https://data.delijn.be/stops/502143", "https://data.delijn.be/stops/507576"], ["https://data.delijn.be/stops/206623", "https://data.delijn.be/stops/206763"], ["https://data.delijn.be/stops/106396", "https://data.delijn.be/stops/106398"], ["https://data.delijn.be/stops/303559", "https://data.delijn.be/stops/305560"], ["https://data.delijn.be/stops/101685", "https://data.delijn.be/stops/108575"], ["https://data.delijn.be/stops/300859", "https://data.delijn.be/stops/300986"], ["https://data.delijn.be/stops/504417", "https://data.delijn.be/stops/509719"], ["https://data.delijn.be/stops/502530", "https://data.delijn.be/stops/507529"], ["https://data.delijn.be/stops/400275", "https://data.delijn.be/stops/400311"], ["https://data.delijn.be/stops/207801", "https://data.delijn.be/stops/216012"], ["https://data.delijn.be/stops/403148", "https://data.delijn.be/stops/403153"], ["https://data.delijn.be/stops/204765", "https://data.delijn.be/stops/205376"], ["https://data.delijn.be/stops/105191", "https://data.delijn.be/stops/105194"], ["https://data.delijn.be/stops/206517", "https://data.delijn.be/stops/207417"], ["https://data.delijn.be/stops/306163", "https://data.delijn.be/stops/306173"], ["https://data.delijn.be/stops/402483", "https://data.delijn.be/stops/402484"], ["https://data.delijn.be/stops/507663", "https://data.delijn.be/stops/507664"], ["https://data.delijn.be/stops/202728", "https://data.delijn.be/stops/203683"], ["https://data.delijn.be/stops/407984", "https://data.delijn.be/stops/408053"], ["https://data.delijn.be/stops/300493", "https://data.delijn.be/stops/302098"], ["https://data.delijn.be/stops/506050", "https://data.delijn.be/stops/507397"], ["https://data.delijn.be/stops/506072", "https://data.delijn.be/stops/506507"], ["https://data.delijn.be/stops/509063", "https://data.delijn.be/stops/509065"], ["https://data.delijn.be/stops/305613", "https://data.delijn.be/stops/308945"], ["https://data.delijn.be/stops/105971", "https://data.delijn.be/stops/108945"], ["https://data.delijn.be/stops/202959", "https://data.delijn.be/stops/203959"], ["https://data.delijn.be/stops/305333", "https://data.delijn.be/stops/307592"], ["https://data.delijn.be/stops/108063", "https://data.delijn.be/stops/108873"], ["https://data.delijn.be/stops/101200", "https://data.delijn.be/stops/102375"], ["https://data.delijn.be/stops/404997", "https://data.delijn.be/stops/409470"], ["https://data.delijn.be/stops/505962", "https://data.delijn.be/stops/508787"], ["https://data.delijn.be/stops/203710", "https://data.delijn.be/stops/203711"], ["https://data.delijn.be/stops/504395", "https://data.delijn.be/stops/505183"], ["https://data.delijn.be/stops/406966", "https://data.delijn.be/stops/406967"], ["https://data.delijn.be/stops/506489", "https://data.delijn.be/stops/506490"], ["https://data.delijn.be/stops/303421", "https://data.delijn.be/stops/305042"], ["https://data.delijn.be/stops/405716", "https://data.delijn.be/stops/405717"], ["https://data.delijn.be/stops/504771", "https://data.delijn.be/stops/508021"], ["https://data.delijn.be/stops/209332", "https://data.delijn.be/stops/209377"], ["https://data.delijn.be/stops/211017", "https://data.delijn.be/stops/505680"], ["https://data.delijn.be/stops/102736", "https://data.delijn.be/stops/102737"], ["https://data.delijn.be/stops/503021", "https://data.delijn.be/stops/505279"], ["https://data.delijn.be/stops/301971", "https://data.delijn.be/stops/306198"], ["https://data.delijn.be/stops/400103", "https://data.delijn.be/stops/400118"], ["https://data.delijn.be/stops/404515", "https://data.delijn.be/stops/406743"], ["https://data.delijn.be/stops/300553", "https://data.delijn.be/stops/300554"], ["https://data.delijn.be/stops/400034", "https://data.delijn.be/stops/402759"], ["https://data.delijn.be/stops/501258", "https://data.delijn.be/stops/501684"], ["https://data.delijn.be/stops/504115", "https://data.delijn.be/stops/504657"], ["https://data.delijn.be/stops/405440", "https://data.delijn.be/stops/405462"], ["https://data.delijn.be/stops/504035", "https://data.delijn.be/stops/505121"], ["https://data.delijn.be/stops/409301", "https://data.delijn.be/stops/409318"], ["https://data.delijn.be/stops/106737", "https://data.delijn.be/stops/106738"], ["https://data.delijn.be/stops/406950", "https://data.delijn.be/stops/406951"], ["https://data.delijn.be/stops/502283", "https://data.delijn.be/stops/507326"], ["https://data.delijn.be/stops/206460", "https://data.delijn.be/stops/207646"], ["https://data.delijn.be/stops/306898", "https://data.delijn.be/stops/308125"], ["https://data.delijn.be/stops/303248", "https://data.delijn.be/stops/307003"], ["https://data.delijn.be/stops/103914", "https://data.delijn.be/stops/107242"], ["https://data.delijn.be/stops/104284", "https://data.delijn.be/stops/105898"], ["https://data.delijn.be/stops/108686", "https://data.delijn.be/stops/108893"], ["https://data.delijn.be/stops/300190", "https://data.delijn.be/stops/304163"], ["https://data.delijn.be/stops/303479", "https://data.delijn.be/stops/303507"], ["https://data.delijn.be/stops/509506", "https://data.delijn.be/stops/509507"], ["https://data.delijn.be/stops/401373", "https://data.delijn.be/stops/401374"], ["https://data.delijn.be/stops/502442", "https://data.delijn.be/stops/507657"], ["https://data.delijn.be/stops/202960", "https://data.delijn.be/stops/203525"], ["https://data.delijn.be/stops/408734", "https://data.delijn.be/stops/408735"], ["https://data.delijn.be/stops/202171", "https://data.delijn.be/stops/203171"], ["https://data.delijn.be/stops/103259", "https://data.delijn.be/stops/103261"], ["https://data.delijn.be/stops/408035", "https://data.delijn.be/stops/408062"], ["https://data.delijn.be/stops/508522", "https://data.delijn.be/stops/508532"], ["https://data.delijn.be/stops/300702", "https://data.delijn.be/stops/306942"], ["https://data.delijn.be/stops/105334", "https://data.delijn.be/stops/105349"], ["https://data.delijn.be/stops/201682", "https://data.delijn.be/stops/202502"], ["https://data.delijn.be/stops/509279", "https://data.delijn.be/stops/509281"], ["https://data.delijn.be/stops/106278", "https://data.delijn.be/stops/106280"], ["https://data.delijn.be/stops/206189", "https://data.delijn.be/stops/206955"], ["https://data.delijn.be/stops/206627", "https://data.delijn.be/stops/207627"], ["https://data.delijn.be/stops/208116", "https://data.delijn.be/stops/208231"], ["https://data.delijn.be/stops/200891", "https://data.delijn.be/stops/507276"], ["https://data.delijn.be/stops/205002", "https://data.delijn.be/stops/205212"], ["https://data.delijn.be/stops/204340", "https://data.delijn.be/stops/205448"], ["https://data.delijn.be/stops/405660", "https://data.delijn.be/stops/303211"], ["https://data.delijn.be/stops/102023", "https://data.delijn.be/stops/104844"], ["https://data.delijn.be/stops/502743", "https://data.delijn.be/stops/505697"], ["https://data.delijn.be/stops/305966", "https://data.delijn.be/stops/307910"], ["https://data.delijn.be/stops/204294", "https://data.delijn.be/stops/205537"], ["https://data.delijn.be/stops/505537", "https://data.delijn.be/stops/509585"], ["https://data.delijn.be/stops/102204", "https://data.delijn.be/stops/105637"], ["https://data.delijn.be/stops/404610", "https://data.delijn.be/stops/404612"], ["https://data.delijn.be/stops/501215", "https://data.delijn.be/stops/506215"], ["https://data.delijn.be/stops/403200", "https://data.delijn.be/stops/403201"], ["https://data.delijn.be/stops/109751", "https://data.delijn.be/stops/308608"], ["https://data.delijn.be/stops/502595", "https://data.delijn.be/stops/507595"], ["https://data.delijn.be/stops/301380", "https://data.delijn.be/stops/306653"], ["https://data.delijn.be/stops/501307", "https://data.delijn.be/stops/506307"], ["https://data.delijn.be/stops/503283", "https://data.delijn.be/stops/508283"], ["https://data.delijn.be/stops/406168", "https://data.delijn.be/stops/406192"], ["https://data.delijn.be/stops/306793", "https://data.delijn.be/stops/307347"], ["https://data.delijn.be/stops/304919", "https://data.delijn.be/stops/305407"], ["https://data.delijn.be/stops/200094", "https://data.delijn.be/stops/204357"], ["https://data.delijn.be/stops/504786", "https://data.delijn.be/stops/504787"], ["https://data.delijn.be/stops/109166", "https://data.delijn.be/stops/109168"], ["https://data.delijn.be/stops/101025", "https://data.delijn.be/stops/102520"], ["https://data.delijn.be/stops/204674", "https://data.delijn.be/stops/205676"], ["https://data.delijn.be/stops/403475", "https://data.delijn.be/stops/410218"], ["https://data.delijn.be/stops/401486", "https://data.delijn.be/stops/401536"], ["https://data.delijn.be/stops/300851", "https://data.delijn.be/stops/301047"], ["https://data.delijn.be/stops/405034", "https://data.delijn.be/stops/307380"], ["https://data.delijn.be/stops/504679", "https://data.delijn.be/stops/505436"], ["https://data.delijn.be/stops/208044", "https://data.delijn.be/stops/209792"], ["https://data.delijn.be/stops/307356", "https://data.delijn.be/stops/307365"], ["https://data.delijn.be/stops/405200", "https://data.delijn.be/stops/405208"], ["https://data.delijn.be/stops/400212", "https://data.delijn.be/stops/407192"], ["https://data.delijn.be/stops/204643", "https://data.delijn.be/stops/204772"], ["https://data.delijn.be/stops/106180", "https://data.delijn.be/stops/107440"], ["https://data.delijn.be/stops/201709", "https://data.delijn.be/stops/203376"], ["https://data.delijn.be/stops/200943", "https://data.delijn.be/stops/202697"], ["https://data.delijn.be/stops/208649", "https://data.delijn.be/stops/208651"], ["https://data.delijn.be/stops/109719", "https://data.delijn.be/stops/400440"], ["https://data.delijn.be/stops/406308", "https://data.delijn.be/stops/406312"], ["https://data.delijn.be/stops/300185", "https://data.delijn.be/stops/300222"], ["https://data.delijn.be/stops/509510", "https://data.delijn.be/stops/509744"], ["https://data.delijn.be/stops/204223", "https://data.delijn.be/stops/204239"], ["https://data.delijn.be/stops/402986", "https://data.delijn.be/stops/408936"], ["https://data.delijn.be/stops/503214", "https://data.delijn.be/stops/508214"], ["https://data.delijn.be/stops/206424", "https://data.delijn.be/stops/207425"], ["https://data.delijn.be/stops/407321", "https://data.delijn.be/stops/409438"], ["https://data.delijn.be/stops/409048", "https://data.delijn.be/stops/409449"], ["https://data.delijn.be/stops/108149", "https://data.delijn.be/stops/108152"], ["https://data.delijn.be/stops/503617", "https://data.delijn.be/stops/508613"], ["https://data.delijn.be/stops/404647", "https://data.delijn.be/stops/405671"], ["https://data.delijn.be/stops/503090", "https://data.delijn.be/stops/508107"], ["https://data.delijn.be/stops/204446", "https://data.delijn.be/stops/204450"], ["https://data.delijn.be/stops/300244", "https://data.delijn.be/stops/300257"], ["https://data.delijn.be/stops/504276", "https://data.delijn.be/stops/509978"], ["https://data.delijn.be/stops/102265", "https://data.delijn.be/stops/103357"], ["https://data.delijn.be/stops/106202", "https://data.delijn.be/stops/109908"], ["https://data.delijn.be/stops/501069", "https://data.delijn.be/stops/505355"], ["https://data.delijn.be/stops/506029", "https://data.delijn.be/stops/506042"], ["https://data.delijn.be/stops/408372", "https://data.delijn.be/stops/408373"], ["https://data.delijn.be/stops/104794", "https://data.delijn.be/stops/106821"], ["https://data.delijn.be/stops/400255", "https://data.delijn.be/stops/405579"], ["https://data.delijn.be/stops/103234", "https://data.delijn.be/stops/109436"], ["https://data.delijn.be/stops/106496", "https://data.delijn.be/stops/106497"], ["https://data.delijn.be/stops/400761", "https://data.delijn.be/stops/400862"], ["https://data.delijn.be/stops/206377", "https://data.delijn.be/stops/207881"], ["https://data.delijn.be/stops/404934", "https://data.delijn.be/stops/404943"], ["https://data.delijn.be/stops/405922", "https://data.delijn.be/stops/405979"], ["https://data.delijn.be/stops/101596", "https://data.delijn.be/stops/106590"], ["https://data.delijn.be/stops/505823", "https://data.delijn.be/stops/507796"], ["https://data.delijn.be/stops/406519", "https://data.delijn.be/stops/408908"], ["https://data.delijn.be/stops/300762", "https://data.delijn.be/stops/306200"], ["https://data.delijn.be/stops/305712", "https://data.delijn.be/stops/306328"], ["https://data.delijn.be/stops/304220", "https://data.delijn.be/stops/308774"], ["https://data.delijn.be/stops/103039", "https://data.delijn.be/stops/106412"], ["https://data.delijn.be/stops/501533", "https://data.delijn.be/stops/506460"], ["https://data.delijn.be/stops/205713", "https://data.delijn.be/stops/205896"], ["https://data.delijn.be/stops/400199", "https://data.delijn.be/stops/406832"], ["https://data.delijn.be/stops/401287", "https://data.delijn.be/stops/410148"], ["https://data.delijn.be/stops/106432", "https://data.delijn.be/stops/106433"], ["https://data.delijn.be/stops/206863", "https://data.delijn.be/stops/206953"], ["https://data.delijn.be/stops/206437", "https://data.delijn.be/stops/207438"], ["https://data.delijn.be/stops/400841", "https://data.delijn.be/stops/404302"], ["https://data.delijn.be/stops/503530", "https://data.delijn.be/stops/508869"], ["https://data.delijn.be/stops/503067", "https://data.delijn.be/stops/508831"], ["https://data.delijn.be/stops/205169", "https://data.delijn.be/stops/205579"], ["https://data.delijn.be/stops/200971", "https://data.delijn.be/stops/206616"], ["https://data.delijn.be/stops/410220", "https://data.delijn.be/stops/410221"], ["https://data.delijn.be/stops/308086", "https://data.delijn.be/stops/308088"], ["https://data.delijn.be/stops/504611", "https://data.delijn.be/stops/509611"], ["https://data.delijn.be/stops/109110", "https://data.delijn.be/stops/109111"], ["https://data.delijn.be/stops/308529", "https://data.delijn.be/stops/308956"], ["https://data.delijn.be/stops/204334", "https://data.delijn.be/stops/205042"], ["https://data.delijn.be/stops/503655", "https://data.delijn.be/stops/509252"], ["https://data.delijn.be/stops/109979", "https://data.delijn.be/stops/109981"], ["https://data.delijn.be/stops/503453", "https://data.delijn.be/stops/508475"], ["https://data.delijn.be/stops/300126", "https://data.delijn.be/stops/304380"], ["https://data.delijn.be/stops/408101", "https://data.delijn.be/stops/408117"], ["https://data.delijn.be/stops/304307", "https://data.delijn.be/stops/304329"], ["https://data.delijn.be/stops/200933", "https://data.delijn.be/stops/203263"], ["https://data.delijn.be/stops/207786", "https://data.delijn.be/stops/208371"], ["https://data.delijn.be/stops/505718", "https://data.delijn.be/stops/508481"], ["https://data.delijn.be/stops/504243", "https://data.delijn.be/stops/504702"], ["https://data.delijn.be/stops/400222", "https://data.delijn.be/stops/401805"], ["https://data.delijn.be/stops/403205", "https://data.delijn.be/stops/403253"], ["https://data.delijn.be/stops/404366", "https://data.delijn.be/stops/404393"], ["https://data.delijn.be/stops/101606", "https://data.delijn.be/stops/101607"], ["https://data.delijn.be/stops/206751", "https://data.delijn.be/stops/209478"], ["https://data.delijn.be/stops/406527", "https://data.delijn.be/stops/406529"], ["https://data.delijn.be/stops/500952", "https://data.delijn.be/stops/590008"], ["https://data.delijn.be/stops/504147", "https://data.delijn.be/stops/505985"], ["https://data.delijn.be/stops/407450", "https://data.delijn.be/stops/407455"], ["https://data.delijn.be/stops/302109", "https://data.delijn.be/stops/302123"], ["https://data.delijn.be/stops/300488", "https://data.delijn.be/stops/300507"], ["https://data.delijn.be/stops/202402", "https://data.delijn.be/stops/203402"], ["https://data.delijn.be/stops/404768", "https://data.delijn.be/stops/404788"], ["https://data.delijn.be/stops/508782", "https://data.delijn.be/stops/508783"], ["https://data.delijn.be/stops/101431", "https://data.delijn.be/stops/107297"], ["https://data.delijn.be/stops/204373", "https://data.delijn.be/stops/205382"], ["https://data.delijn.be/stops/501638", "https://data.delijn.be/stops/506659"], ["https://data.delijn.be/stops/204725", "https://data.delijn.be/stops/204761"], ["https://data.delijn.be/stops/504725", "https://data.delijn.be/stops/505342"], ["https://data.delijn.be/stops/205293", "https://data.delijn.be/stops/205761"], ["https://data.delijn.be/stops/506776", "https://data.delijn.be/stops/506778"], ["https://data.delijn.be/stops/200574", "https://data.delijn.be/stops/201601"], ["https://data.delijn.be/stops/400010", "https://data.delijn.be/stops/400020"], ["https://data.delijn.be/stops/101907", "https://data.delijn.be/stops/107920"], ["https://data.delijn.be/stops/409710", "https://data.delijn.be/stops/409715"], ["https://data.delijn.be/stops/108824", "https://data.delijn.be/stops/108891"], ["https://data.delijn.be/stops/304641", "https://data.delijn.be/stops/308902"], ["https://data.delijn.be/stops/201732", "https://data.delijn.be/stops/201733"], ["https://data.delijn.be/stops/300084", "https://data.delijn.be/stops/306822"], ["https://data.delijn.be/stops/408615", "https://data.delijn.be/stops/408768"], ["https://data.delijn.be/stops/208194", "https://data.delijn.be/stops/209157"], ["https://data.delijn.be/stops/108281", "https://data.delijn.be/stops/109362"], ["https://data.delijn.be/stops/505708", "https://data.delijn.be/stops/505709"], ["https://data.delijn.be/stops/304334", "https://data.delijn.be/stops/304336"], ["https://data.delijn.be/stops/408655", "https://data.delijn.be/stops/408746"], ["https://data.delijn.be/stops/504576", "https://data.delijn.be/stops/504577"], ["https://data.delijn.be/stops/407852", "https://data.delijn.be/stops/408065"], ["https://data.delijn.be/stops/503393", "https://data.delijn.be/stops/508375"], ["https://data.delijn.be/stops/407022", "https://data.delijn.be/stops/407023"], ["https://data.delijn.be/stops/308500", "https://data.delijn.be/stops/308538"], ["https://data.delijn.be/stops/206175", "https://data.delijn.be/stops/207452"], ["https://data.delijn.be/stops/200385", "https://data.delijn.be/stops/200466"], ["https://data.delijn.be/stops/502263", "https://data.delijn.be/stops/507266"], ["https://data.delijn.be/stops/104822", "https://data.delijn.be/stops/108507"], ["https://data.delijn.be/stops/206169", "https://data.delijn.be/stops/303871"], ["https://data.delijn.be/stops/302266", "https://data.delijn.be/stops/302267"], ["https://data.delijn.be/stops/204136", "https://data.delijn.be/stops/205136"], ["https://data.delijn.be/stops/408260", "https://data.delijn.be/stops/408308"], ["https://data.delijn.be/stops/103989", "https://data.delijn.be/stops/109097"], ["https://data.delijn.be/stops/407700", "https://data.delijn.be/stops/407705"], ["https://data.delijn.be/stops/103326", "https://data.delijn.be/stops/103398"], ["https://data.delijn.be/stops/409565", "https://data.delijn.be/stops/409575"], ["https://data.delijn.be/stops/101093", "https://data.delijn.be/stops/104459"], ["https://data.delijn.be/stops/508812", "https://data.delijn.be/stops/508948"], ["https://data.delijn.be/stops/405763", "https://data.delijn.be/stops/409289"], ["https://data.delijn.be/stops/206976", "https://data.delijn.be/stops/307771"], ["https://data.delijn.be/stops/201758", "https://data.delijn.be/stops/201777"], ["https://data.delijn.be/stops/204693", "https://data.delijn.be/stops/205694"], ["https://data.delijn.be/stops/202876", "https://data.delijn.be/stops/203876"], ["https://data.delijn.be/stops/503806", "https://data.delijn.be/stops/508801"], ["https://data.delijn.be/stops/106918", "https://data.delijn.be/stops/106919"], ["https://data.delijn.be/stops/204375", "https://data.delijn.be/stops/205762"], ["https://data.delijn.be/stops/404441", "https://data.delijn.be/stops/407321"], ["https://data.delijn.be/stops/508875", "https://data.delijn.be/stops/508878"], ["https://data.delijn.be/stops/206249", "https://data.delijn.be/stops/207249"], ["https://data.delijn.be/stops/200361", "https://data.delijn.be/stops/201103"], ["https://data.delijn.be/stops/103363", "https://data.delijn.be/stops/104475"], ["https://data.delijn.be/stops/305209", "https://data.delijn.be/stops/306913"], ["https://data.delijn.be/stops/305103", "https://data.delijn.be/stops/305120"], ["https://data.delijn.be/stops/200428", "https://data.delijn.be/stops/201426"], ["https://data.delijn.be/stops/404714", "https://data.delijn.be/stops/404767"], ["https://data.delijn.be/stops/200960", "https://data.delijn.be/stops/201422"], ["https://data.delijn.be/stops/504759", "https://data.delijn.be/stops/509102"], ["https://data.delijn.be/stops/503797", "https://data.delijn.be/stops/508797"], ["https://data.delijn.be/stops/204341", "https://data.delijn.be/stops/205305"], ["https://data.delijn.be/stops/105434", "https://data.delijn.be/stops/109953"], ["https://data.delijn.be/stops/402026", "https://data.delijn.be/stops/403880"], ["https://data.delijn.be/stops/104404", "https://data.delijn.be/stops/204493"], ["https://data.delijn.be/stops/504710", "https://data.delijn.be/stops/509170"], ["https://data.delijn.be/stops/206358", "https://data.delijn.be/stops/207700"], ["https://data.delijn.be/stops/400863", "https://data.delijn.be/stops/409530"], ["https://data.delijn.be/stops/300233", "https://data.delijn.be/stops/300238"], ["https://data.delijn.be/stops/501222", "https://data.delijn.be/stops/506222"], ["https://data.delijn.be/stops/502110", "https://data.delijn.be/stops/502138"], ["https://data.delijn.be/stops/206428", "https://data.delijn.be/stops/207428"], ["https://data.delijn.be/stops/401007", "https://data.delijn.be/stops/401060"], ["https://data.delijn.be/stops/206643", "https://data.delijn.be/stops/206644"], ["https://data.delijn.be/stops/504143", "https://data.delijn.be/stops/505441"], ["https://data.delijn.be/stops/106174", "https://data.delijn.be/stops/106176"], ["https://data.delijn.be/stops/202878", "https://data.delijn.be/stops/203882"], ["https://data.delijn.be/stops/410328", "https://data.delijn.be/stops/410329"], ["https://data.delijn.be/stops/106053", "https://data.delijn.be/stops/107735"], ["https://data.delijn.be/stops/505508", "https://data.delijn.be/stops/507270"], ["https://data.delijn.be/stops/400763", "https://data.delijn.be/stops/400773"], ["https://data.delijn.be/stops/501470", "https://data.delijn.be/stops/506198"], ["https://data.delijn.be/stops/206673", "https://data.delijn.be/stops/209169"], ["https://data.delijn.be/stops/400090", "https://data.delijn.be/stops/400152"], ["https://data.delijn.be/stops/307722", "https://data.delijn.be/stops/307726"], ["https://data.delijn.be/stops/208154", "https://data.delijn.be/stops/209155"], ["https://data.delijn.be/stops/403525", "https://data.delijn.be/stops/404226"], ["https://data.delijn.be/stops/300526", "https://data.delijn.be/stops/302788"], ["https://data.delijn.be/stops/104428", "https://data.delijn.be/stops/104429"], ["https://data.delijn.be/stops/302126", "https://data.delijn.be/stops/304165"], ["https://data.delijn.be/stops/202096", "https://data.delijn.be/stops/203096"], ["https://data.delijn.be/stops/300773", "https://data.delijn.be/stops/300786"], ["https://data.delijn.be/stops/200722", "https://data.delijn.be/stops/203409"], ["https://data.delijn.be/stops/408423", "https://data.delijn.be/stops/408426"], ["https://data.delijn.be/stops/302200", "https://data.delijn.be/stops/308095"], ["https://data.delijn.be/stops/503251", "https://data.delijn.be/stops/508251"], ["https://data.delijn.be/stops/107238", "https://data.delijn.be/stops/107239"], ["https://data.delijn.be/stops/504006", "https://data.delijn.be/stops/504533"], ["https://data.delijn.be/stops/103502", "https://data.delijn.be/stops/106319"], ["https://data.delijn.be/stops/507598", "https://data.delijn.be/stops/507599"], ["https://data.delijn.be/stops/200608", "https://data.delijn.be/stops/202769"], ["https://data.delijn.be/stops/101925", "https://data.delijn.be/stops/104006"], ["https://data.delijn.be/stops/102766", "https://data.delijn.be/stops/107404"], ["https://data.delijn.be/stops/303695", "https://data.delijn.be/stops/305377"], ["https://data.delijn.be/stops/305839", "https://data.delijn.be/stops/305840"], ["https://data.delijn.be/stops/304638", "https://data.delijn.be/stops/305978"], ["https://data.delijn.be/stops/400230", "https://data.delijn.be/stops/406283"], ["https://data.delijn.be/stops/106639", "https://data.delijn.be/stops/106642"], ["https://data.delijn.be/stops/105699", "https://data.delijn.be/stops/106075"], ["https://data.delijn.be/stops/301696", "https://data.delijn.be/stops/301726"], ["https://data.delijn.be/stops/508047", "https://data.delijn.be/stops/508958"], ["https://data.delijn.be/stops/303720", "https://data.delijn.be/stops/303724"], ["https://data.delijn.be/stops/108700", "https://data.delijn.be/stops/108704"], ["https://data.delijn.be/stops/200973", "https://data.delijn.be/stops/206775"], ["https://data.delijn.be/stops/501697", "https://data.delijn.be/stops/507244"], ["https://data.delijn.be/stops/203239", "https://data.delijn.be/stops/210076"], ["https://data.delijn.be/stops/205986", "https://data.delijn.be/stops/207255"], ["https://data.delijn.be/stops/504838", "https://data.delijn.be/stops/504979"], ["https://data.delijn.be/stops/407969", "https://data.delijn.be/stops/408425"], ["https://data.delijn.be/stops/206492", "https://data.delijn.be/stops/207449"], ["https://data.delijn.be/stops/502700", "https://data.delijn.be/stops/507700"], ["https://data.delijn.be/stops/105014", "https://data.delijn.be/stops/105111"], ["https://data.delijn.be/stops/300364", "https://data.delijn.be/stops/300402"], ["https://data.delijn.be/stops/505408", "https://data.delijn.be/stops/508988"], ["https://data.delijn.be/stops/206559", "https://data.delijn.be/stops/206839"], ["https://data.delijn.be/stops/304098", "https://data.delijn.be/stops/304117"], ["https://data.delijn.be/stops/406998", "https://data.delijn.be/stops/407281"], ["https://data.delijn.be/stops/101446", "https://data.delijn.be/stops/109665"], ["https://data.delijn.be/stops/202638", "https://data.delijn.be/stops/203638"], ["https://data.delijn.be/stops/301425", "https://data.delijn.be/stops/301426"], ["https://data.delijn.be/stops/202695", "https://data.delijn.be/stops/202696"], ["https://data.delijn.be/stops/305644", "https://data.delijn.be/stops/307102"], ["https://data.delijn.be/stops/400665", "https://data.delijn.be/stops/408983"], ["https://data.delijn.be/stops/504515", "https://data.delijn.be/stops/509014"], ["https://data.delijn.be/stops/401419", "https://data.delijn.be/stops/307877"], ["https://data.delijn.be/stops/402390", "https://data.delijn.be/stops/410042"], ["https://data.delijn.be/stops/401399", "https://data.delijn.be/stops/401404"], ["https://data.delijn.be/stops/504454", "https://data.delijn.be/stops/508681"], ["https://data.delijn.be/stops/209769", "https://data.delijn.be/stops/219009"], ["https://data.delijn.be/stops/306142", "https://data.delijn.be/stops/306645"], ["https://data.delijn.be/stops/503924", "https://data.delijn.be/stops/508359"], ["https://data.delijn.be/stops/505768", "https://data.delijn.be/stops/507049"], ["https://data.delijn.be/stops/300760", "https://data.delijn.be/stops/300792"], ["https://data.delijn.be/stops/302063", "https://data.delijn.be/stops/302729"], ["https://data.delijn.be/stops/200344", "https://data.delijn.be/stops/201380"], ["https://data.delijn.be/stops/406221", "https://data.delijn.be/stops/406355"], ["https://data.delijn.be/stops/101797", "https://data.delijn.be/stops/108522"], ["https://data.delijn.be/stops/408326", "https://data.delijn.be/stops/408339"], ["https://data.delijn.be/stops/204515", "https://data.delijn.be/stops/205515"], ["https://data.delijn.be/stops/201972", "https://data.delijn.be/stops/202863"], ["https://data.delijn.be/stops/400184", "https://data.delijn.be/stops/407627"], ["https://data.delijn.be/stops/501449", "https://data.delijn.be/stops/506449"], ["https://data.delijn.be/stops/500159", "https://data.delijn.be/stops/508541"], ["https://data.delijn.be/stops/300686", "https://data.delijn.be/stops/308936"], ["https://data.delijn.be/stops/508721", "https://data.delijn.be/stops/508728"], ["https://data.delijn.be/stops/204014", "https://data.delijn.be/stops/204363"], ["https://data.delijn.be/stops/308473", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/208698", "https://data.delijn.be/stops/208709"], ["https://data.delijn.be/stops/206140", "https://data.delijn.be/stops/206722"], ["https://data.delijn.be/stops/102473", "https://data.delijn.be/stops/400359"], ["https://data.delijn.be/stops/400620", "https://data.delijn.be/stops/400621"], ["https://data.delijn.be/stops/105737", "https://data.delijn.be/stops/105739"], ["https://data.delijn.be/stops/206411", "https://data.delijn.be/stops/207600"], ["https://data.delijn.be/stops/206389", "https://data.delijn.be/stops/206541"], ["https://data.delijn.be/stops/200214", "https://data.delijn.be/stops/201214"], ["https://data.delijn.be/stops/200540", "https://data.delijn.be/stops/201539"], ["https://data.delijn.be/stops/401427", "https://data.delijn.be/stops/402128"], ["https://data.delijn.be/stops/304004", "https://data.delijn.be/stops/304024"], ["https://data.delijn.be/stops/503197", "https://data.delijn.be/stops/503390"], ["https://data.delijn.be/stops/406910", "https://data.delijn.be/stops/409453"], ["https://data.delijn.be/stops/401388", "https://data.delijn.be/stops/401389"], ["https://data.delijn.be/stops/507601", "https://data.delijn.be/stops/507769"], ["https://data.delijn.be/stops/507524", "https://data.delijn.be/stops/507808"], ["https://data.delijn.be/stops/200432", "https://data.delijn.be/stops/201431"], ["https://data.delijn.be/stops/501412", "https://data.delijn.be/stops/506413"], ["https://data.delijn.be/stops/302210", "https://data.delijn.be/stops/302236"], ["https://data.delijn.be/stops/505724", "https://data.delijn.be/stops/507597"], ["https://data.delijn.be/stops/407632", "https://data.delijn.be/stops/407633"], ["https://data.delijn.be/stops/109693", "https://data.delijn.be/stops/109711"], ["https://data.delijn.be/stops/208678", "https://data.delijn.be/stops/208804"], ["https://data.delijn.be/stops/201530", "https://data.delijn.be/stops/210528"], ["https://data.delijn.be/stops/503300", "https://data.delijn.be/stops/503716"], ["https://data.delijn.be/stops/302563", "https://data.delijn.be/stops/302567"], ["https://data.delijn.be/stops/302266", "https://data.delijn.be/stops/302936"], ["https://data.delijn.be/stops/403446", "https://data.delijn.be/stops/409272"], ["https://data.delijn.be/stops/308011", "https://data.delijn.be/stops/308013"], ["https://data.delijn.be/stops/109807", "https://data.delijn.be/stops/109813"], ["https://data.delijn.be/stops/200218", "https://data.delijn.be/stops/200219"], ["https://data.delijn.be/stops/207667", "https://data.delijn.be/stops/209064"], ["https://data.delijn.be/stops/105736", "https://data.delijn.be/stops/109941"], ["https://data.delijn.be/stops/104431", "https://data.delijn.be/stops/106783"], ["https://data.delijn.be/stops/303483", "https://data.delijn.be/stops/307069"], ["https://data.delijn.be/stops/304769", "https://data.delijn.be/stops/304771"], ["https://data.delijn.be/stops/105491", "https://data.delijn.be/stops/105494"], ["https://data.delijn.be/stops/303438", "https://data.delijn.be/stops/303446"], ["https://data.delijn.be/stops/301091", "https://data.delijn.be/stops/307046"], ["https://data.delijn.be/stops/202766", "https://data.delijn.be/stops/203766"], ["https://data.delijn.be/stops/109512", "https://data.delijn.be/stops/109513"], ["https://data.delijn.be/stops/301074", "https://data.delijn.be/stops/302479"], ["https://data.delijn.be/stops/200233", "https://data.delijn.be/stops/202354"], ["https://data.delijn.be/stops/208415", "https://data.delijn.be/stops/209414"], ["https://data.delijn.be/stops/401180", "https://data.delijn.be/stops/407323"], ["https://data.delijn.be/stops/105273", "https://data.delijn.be/stops/105276"], ["https://data.delijn.be/stops/508879", "https://data.delijn.be/stops/508883"], ["https://data.delijn.be/stops/208277", "https://data.delijn.be/stops/209276"], ["https://data.delijn.be/stops/305616", "https://data.delijn.be/stops/305618"], ["https://data.delijn.be/stops/405050", "https://data.delijn.be/stops/405051"], ["https://data.delijn.be/stops/301390", "https://data.delijn.be/stops/304174"], ["https://data.delijn.be/stops/505176", "https://data.delijn.be/stops/509635"], ["https://data.delijn.be/stops/407964", "https://data.delijn.be/stops/407969"], ["https://data.delijn.be/stops/303272", "https://data.delijn.be/stops/305729"], ["https://data.delijn.be/stops/400039", "https://data.delijn.be/stops/400349"], ["https://data.delijn.be/stops/307012", "https://data.delijn.be/stops/307014"], ["https://data.delijn.be/stops/403752", "https://data.delijn.be/stops/403781"], ["https://data.delijn.be/stops/303118", "https://data.delijn.be/stops/304659"], ["https://data.delijn.be/stops/401580", "https://data.delijn.be/stops/401744"], ["https://data.delijn.be/stops/405583", "https://data.delijn.be/stops/405604"], ["https://data.delijn.be/stops/305573", "https://data.delijn.be/stops/307044"], ["https://data.delijn.be/stops/408109", "https://data.delijn.be/stops/408160"], ["https://data.delijn.be/stops/202139", "https://data.delijn.be/stops/203993"], ["https://data.delijn.be/stops/108280", "https://data.delijn.be/stops/109005"], ["https://data.delijn.be/stops/303812", "https://data.delijn.be/stops/303820"], ["https://data.delijn.be/stops/402287", "https://data.delijn.be/stops/402471"], ["https://data.delijn.be/stops/207777", "https://data.delijn.be/stops/207778"], ["https://data.delijn.be/stops/202424", "https://data.delijn.be/stops/202425"], ["https://data.delijn.be/stops/407018", "https://data.delijn.be/stops/407913"], ["https://data.delijn.be/stops/205099", "https://data.delijn.be/stops/205713"], ["https://data.delijn.be/stops/402180", "https://data.delijn.be/stops/402430"], ["https://data.delijn.be/stops/209094", "https://data.delijn.be/stops/209630"], ["https://data.delijn.be/stops/108291", "https://data.delijn.be/stops/109363"], ["https://data.delijn.be/stops/200732", "https://data.delijn.be/stops/202625"], ["https://data.delijn.be/stops/204215", "https://data.delijn.be/stops/204366"], ["https://data.delijn.be/stops/204068", "https://data.delijn.be/stops/204189"], ["https://data.delijn.be/stops/303851", "https://data.delijn.be/stops/303985"], ["https://data.delijn.be/stops/105506", "https://data.delijn.be/stops/105786"], ["https://data.delijn.be/stops/103113", "https://data.delijn.be/stops/106813"], ["https://data.delijn.be/stops/201203", "https://data.delijn.be/stops/201204"], ["https://data.delijn.be/stops/408532", "https://data.delijn.be/stops/408533"], ["https://data.delijn.be/stops/402076", "https://data.delijn.be/stops/405554"], ["https://data.delijn.be/stops/101799", "https://data.delijn.be/stops/108509"], ["https://data.delijn.be/stops/300201", "https://data.delijn.be/stops/308786"], ["https://data.delijn.be/stops/502509", "https://data.delijn.be/stops/507489"], ["https://data.delijn.be/stops/402743", "https://data.delijn.be/stops/402869"], ["https://data.delijn.be/stops/303843", "https://data.delijn.be/stops/308978"], ["https://data.delijn.be/stops/103268", "https://data.delijn.be/stops/103269"], ["https://data.delijn.be/stops/107066", "https://data.delijn.be/stops/109188"], ["https://data.delijn.be/stops/109711", "https://data.delijn.be/stops/406498"], ["https://data.delijn.be/stops/204704", "https://data.delijn.be/stops/205705"], ["https://data.delijn.be/stops/509034", "https://data.delijn.be/stops/509704"], ["https://data.delijn.be/stops/301521", "https://data.delijn.be/stops/308079"], ["https://data.delijn.be/stops/208063", "https://data.delijn.be/stops/209064"], ["https://data.delijn.be/stops/503185", "https://data.delijn.be/stops/508185"], ["https://data.delijn.be/stops/102597", "https://data.delijn.be/stops/205650"], ["https://data.delijn.be/stops/106621", "https://data.delijn.be/stops/108017"], ["https://data.delijn.be/stops/301410", "https://data.delijn.be/stops/305599"], ["https://data.delijn.be/stops/501296", "https://data.delijn.be/stops/506315"], ["https://data.delijn.be/stops/301427", "https://data.delijn.be/stops/301428"], ["https://data.delijn.be/stops/109026", "https://data.delijn.be/stops/109027"], ["https://data.delijn.be/stops/301695", "https://data.delijn.be/stops/301702"], ["https://data.delijn.be/stops/105078", "https://data.delijn.be/stops/105079"], ["https://data.delijn.be/stops/305618", "https://data.delijn.be/stops/305619"], ["https://data.delijn.be/stops/505076", "https://data.delijn.be/stops/507467"], ["https://data.delijn.be/stops/104050", "https://data.delijn.be/stops/104060"], ["https://data.delijn.be/stops/106911", "https://data.delijn.be/stops/106912"], ["https://data.delijn.be/stops/105069", "https://data.delijn.be/stops/106737"], ["https://data.delijn.be/stops/503880", "https://data.delijn.be/stops/505134"], ["https://data.delijn.be/stops/204417", "https://data.delijn.be/stops/205116"], ["https://data.delijn.be/stops/301689", "https://data.delijn.be/stops/307976"], ["https://data.delijn.be/stops/101070", "https://data.delijn.be/stops/102795"], ["https://data.delijn.be/stops/404285", "https://data.delijn.be/stops/404286"], ["https://data.delijn.be/stops/203406", "https://data.delijn.be/stops/211405"], ["https://data.delijn.be/stops/208181", "https://data.delijn.be/stops/209180"], ["https://data.delijn.be/stops/303260", "https://data.delijn.be/stops/305642"], ["https://data.delijn.be/stops/308472", "https://data.delijn.be/stops/308489"], ["https://data.delijn.be/stops/200100", "https://data.delijn.be/stops/201101"], ["https://data.delijn.be/stops/407155", "https://data.delijn.be/stops/407167"], ["https://data.delijn.be/stops/403128", "https://data.delijn.be/stops/407580"], ["https://data.delijn.be/stops/405489", "https://data.delijn.be/stops/405490"], ["https://data.delijn.be/stops/301257", "https://data.delijn.be/stops/301262"], ["https://data.delijn.be/stops/502579", "https://data.delijn.be/stops/507145"], ["https://data.delijn.be/stops/106376", "https://data.delijn.be/stops/106377"], ["https://data.delijn.be/stops/406046", "https://data.delijn.be/stops/406123"], ["https://data.delijn.be/stops/206931", "https://data.delijn.be/stops/207910"], ["https://data.delijn.be/stops/102073", "https://data.delijn.be/stops/106933"], ["https://data.delijn.be/stops/303953", "https://data.delijn.be/stops/303960"], ["https://data.delijn.be/stops/207214", "https://data.delijn.be/stops/207820"], ["https://data.delijn.be/stops/104602", "https://data.delijn.be/stops/108045"], ["https://data.delijn.be/stops/501438", "https://data.delijn.be/stops/506087"], ["https://data.delijn.be/stops/204226", "https://data.delijn.be/stops/205225"], ["https://data.delijn.be/stops/104332", "https://data.delijn.be/stops/107548"], ["https://data.delijn.be/stops/206584", "https://data.delijn.be/stops/206841"], ["https://data.delijn.be/stops/302734", "https://data.delijn.be/stops/302752"], ["https://data.delijn.be/stops/103232", "https://data.delijn.be/stops/103557"], ["https://data.delijn.be/stops/108679", "https://data.delijn.be/stops/306624"], ["https://data.delijn.be/stops/207467", "https://data.delijn.be/stops/207510"], ["https://data.delijn.be/stops/302919", "https://data.delijn.be/stops/307008"], ["https://data.delijn.be/stops/207190", "https://data.delijn.be/stops/308567"], ["https://data.delijn.be/stops/105248", "https://data.delijn.be/stops/105251"], ["https://data.delijn.be/stops/401324", "https://data.delijn.be/stops/401368"], ["https://data.delijn.be/stops/503379", "https://data.delijn.be/stops/508357"], ["https://data.delijn.be/stops/208094", "https://data.delijn.be/stops/209094"], ["https://data.delijn.be/stops/107492", "https://data.delijn.be/stops/107493"], ["https://data.delijn.be/stops/401444", "https://data.delijn.be/stops/401513"], ["https://data.delijn.be/stops/301649", "https://data.delijn.be/stops/306143"], ["https://data.delijn.be/stops/503302", "https://data.delijn.be/stops/508302"], ["https://data.delijn.be/stops/204382", "https://data.delijn.be/stops/204762"], ["https://data.delijn.be/stops/206122", "https://data.delijn.be/stops/206473"], ["https://data.delijn.be/stops/107880", "https://data.delijn.be/stops/107885"], ["https://data.delijn.be/stops/404988", "https://data.delijn.be/stops/406900"], ["https://data.delijn.be/stops/402456", "https://data.delijn.be/stops/402457"], ["https://data.delijn.be/stops/208405", "https://data.delijn.be/stops/209413"], ["https://data.delijn.be/stops/400030", "https://data.delijn.be/stops/400439"], ["https://data.delijn.be/stops/206228", "https://data.delijn.be/stops/300226"], ["https://data.delijn.be/stops/200045", "https://data.delijn.be/stops/201218"], ["https://data.delijn.be/stops/204654", "https://data.delijn.be/stops/205830"], ["https://data.delijn.be/stops/400527", "https://data.delijn.be/stops/404531"], ["https://data.delijn.be/stops/303616", "https://data.delijn.be/stops/304615"], ["https://data.delijn.be/stops/408970", "https://data.delijn.be/stops/409242"], ["https://data.delijn.be/stops/503087", "https://data.delijn.be/stops/508087"], ["https://data.delijn.be/stops/503088", "https://data.delijn.be/stops/503091"], ["https://data.delijn.be/stops/101202", "https://data.delijn.be/stops/204661"], ["https://data.delijn.be/stops/206530", "https://data.delijn.be/stops/207822"], ["https://data.delijn.be/stops/301569", "https://data.delijn.be/stops/303010"], ["https://data.delijn.be/stops/407874", "https://data.delijn.be/stops/407995"], ["https://data.delijn.be/stops/504198", "https://data.delijn.be/stops/509199"], ["https://data.delijn.be/stops/104771", "https://data.delijn.be/stops/108681"], ["https://data.delijn.be/stops/302293", "https://data.delijn.be/stops/304951"], ["https://data.delijn.be/stops/203284", "https://data.delijn.be/stops/210005"], ["https://data.delijn.be/stops/503850", "https://data.delijn.be/stops/510028"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/209062"], ["https://data.delijn.be/stops/403328", "https://data.delijn.be/stops/410013"], ["https://data.delijn.be/stops/301614", "https://data.delijn.be/stops/301615"], ["https://data.delijn.be/stops/403887", "https://data.delijn.be/stops/403890"], ["https://data.delijn.be/stops/501106", "https://data.delijn.be/stops/506106"], ["https://data.delijn.be/stops/109499", "https://data.delijn.be/stops/304042"], ["https://data.delijn.be/stops/501064", "https://data.delijn.be/stops/501405"], ["https://data.delijn.be/stops/202741", "https://data.delijn.be/stops/203872"], ["https://data.delijn.be/stops/503160", "https://data.delijn.be/stops/508178"], ["https://data.delijn.be/stops/405695", "https://data.delijn.be/stops/405991"], ["https://data.delijn.be/stops/501028", "https://data.delijn.be/stops/506028"], ["https://data.delijn.be/stops/501424", "https://data.delijn.be/stops/506254"], ["https://data.delijn.be/stops/401588", "https://data.delijn.be/stops/401590"], ["https://data.delijn.be/stops/300715", "https://data.delijn.be/stops/302607"], ["https://data.delijn.be/stops/406403", "https://data.delijn.be/stops/406405"], ["https://data.delijn.be/stops/303289", "https://data.delijn.be/stops/308737"], ["https://data.delijn.be/stops/206215", "https://data.delijn.be/stops/207967"], ["https://data.delijn.be/stops/108082", "https://data.delijn.be/stops/108832"], ["https://data.delijn.be/stops/301344", "https://data.delijn.be/stops/301345"], ["https://data.delijn.be/stops/401294", "https://data.delijn.be/stops/401295"], ["https://data.delijn.be/stops/504668", "https://data.delijn.be/stops/509895"], ["https://data.delijn.be/stops/506607", "https://data.delijn.be/stops/506608"], ["https://data.delijn.be/stops/501172", "https://data.delijn.be/stops/506175"], ["https://data.delijn.be/stops/105763", "https://data.delijn.be/stops/107463"], ["https://data.delijn.be/stops/400833", "https://data.delijn.be/stops/403573"], ["https://data.delijn.be/stops/103744", "https://data.delijn.be/stops/104340"], ["https://data.delijn.be/stops/207069", "https://data.delijn.be/stops/207267"], ["https://data.delijn.be/stops/308424", "https://data.delijn.be/stops/308427"], ["https://data.delijn.be/stops/305565", "https://data.delijn.be/stops/308829"], ["https://data.delijn.be/stops/300214", "https://data.delijn.be/stops/302147"], ["https://data.delijn.be/stops/404355", "https://data.delijn.be/stops/404949"], ["https://data.delijn.be/stops/206719", "https://data.delijn.be/stops/207652"], ["https://data.delijn.be/stops/200173", "https://data.delijn.be/stops/200174"], ["https://data.delijn.be/stops/508511", "https://data.delijn.be/stops/509824"], ["https://data.delijn.be/stops/206954", "https://data.delijn.be/stops/300170"], ["https://data.delijn.be/stops/301325", "https://data.delijn.be/stops/305919"], ["https://data.delijn.be/stops/106153", "https://data.delijn.be/stops/106154"], ["https://data.delijn.be/stops/308743", "https://data.delijn.be/stops/308746"], ["https://data.delijn.be/stops/406141", "https://data.delijn.be/stops/406367"], ["https://data.delijn.be/stops/102752", "https://data.delijn.be/stops/102754"], ["https://data.delijn.be/stops/303431", "https://data.delijn.be/stops/303433"], ["https://data.delijn.be/stops/403792", "https://data.delijn.be/stops/403816"], ["https://data.delijn.be/stops/104013", "https://data.delijn.be/stops/104027"], ["https://data.delijn.be/stops/204683", "https://data.delijn.be/stops/205683"], ["https://data.delijn.be/stops/402150", "https://data.delijn.be/stops/402154"], ["https://data.delijn.be/stops/204997", "https://data.delijn.be/stops/508643"], ["https://data.delijn.be/stops/307775", "https://data.delijn.be/stops/307777"], ["https://data.delijn.be/stops/200576", "https://data.delijn.be/stops/201575"], ["https://data.delijn.be/stops/206510", "https://data.delijn.be/stops/207511"], ["https://data.delijn.be/stops/503621", "https://data.delijn.be/stops/508621"], ["https://data.delijn.be/stops/401666", "https://data.delijn.be/stops/307906"], ["https://data.delijn.be/stops/300727", "https://data.delijn.be/stops/304250"], ["https://data.delijn.be/stops/305282", "https://data.delijn.be/stops/308711"], ["https://data.delijn.be/stops/505980", "https://data.delijn.be/stops/508987"], ["https://data.delijn.be/stops/402348", "https://data.delijn.be/stops/402460"], ["https://data.delijn.be/stops/206705", "https://data.delijn.be/stops/206732"], ["https://data.delijn.be/stops/301482", "https://data.delijn.be/stops/301483"], ["https://data.delijn.be/stops/108803", "https://data.delijn.be/stops/109085"], ["https://data.delijn.be/stops/105054", "https://data.delijn.be/stops/109766"], ["https://data.delijn.be/stops/401355", "https://data.delijn.be/stops/401363"], ["https://data.delijn.be/stops/504024", "https://data.delijn.be/stops/509034"], ["https://data.delijn.be/stops/306931", "https://data.delijn.be/stops/306932"], ["https://data.delijn.be/stops/303864", "https://data.delijn.be/stops/303961"], ["https://data.delijn.be/stops/208319", "https://data.delijn.be/stops/208375"], ["https://data.delijn.be/stops/201471", "https://data.delijn.be/stops/201486"], ["https://data.delijn.be/stops/208329", "https://data.delijn.be/stops/209329"], ["https://data.delijn.be/stops/105244", "https://data.delijn.be/stops/105843"], ["https://data.delijn.be/stops/406770", "https://data.delijn.be/stops/406771"], ["https://data.delijn.be/stops/504137", "https://data.delijn.be/stops/505441"], ["https://data.delijn.be/stops/400651", "https://data.delijn.be/stops/400683"], ["https://data.delijn.be/stops/208632", "https://data.delijn.be/stops/209511"], ["https://data.delijn.be/stops/401519", "https://data.delijn.be/stops/401531"], ["https://data.delijn.be/stops/404118", "https://data.delijn.be/stops/408554"], ["https://data.delijn.be/stops/202538", "https://data.delijn.be/stops/203827"], ["https://data.delijn.be/stops/505392", "https://data.delijn.be/stops/505806"], ["https://data.delijn.be/stops/401421", "https://data.delijn.be/stops/403885"], ["https://data.delijn.be/stops/505259", "https://data.delijn.be/stops/508435"], ["https://data.delijn.be/stops/506214", "https://data.delijn.be/stops/506496"], ["https://data.delijn.be/stops/503832", "https://data.delijn.be/stops/508832"], ["https://data.delijn.be/stops/105048", "https://data.delijn.be/stops/106672"], ["https://data.delijn.be/stops/104649", "https://data.delijn.be/stops/108036"], ["https://data.delijn.be/stops/104056", "https://data.delijn.be/stops/108689"], ["https://data.delijn.be/stops/508319", "https://data.delijn.be/stops/508321"], ["https://data.delijn.be/stops/200021", "https://data.delijn.be/stops/201022"], ["https://data.delijn.be/stops/108284", "https://data.delijn.be/stops/109308"], ["https://data.delijn.be/stops/408265", "https://data.delijn.be/stops/408374"], ["https://data.delijn.be/stops/503750", "https://data.delijn.be/stops/509783"], ["https://data.delijn.be/stops/404959", "https://data.delijn.be/stops/404962"], ["https://data.delijn.be/stops/501108", "https://data.delijn.be/stops/501112"], ["https://data.delijn.be/stops/501011", "https://data.delijn.be/stops/501508"], ["https://data.delijn.be/stops/204643", "https://data.delijn.be/stops/205644"], ["https://data.delijn.be/stops/101978", "https://data.delijn.be/stops/109306"], ["https://data.delijn.be/stops/307248", "https://data.delijn.be/stops/307250"], ["https://data.delijn.be/stops/402701", "https://data.delijn.be/stops/402706"], ["https://data.delijn.be/stops/102073", "https://data.delijn.be/stops/106533"], ["https://data.delijn.be/stops/202101", "https://data.delijn.be/stops/202102"], ["https://data.delijn.be/stops/508112", "https://data.delijn.be/stops/509875"], ["https://data.delijn.be/stops/206762", "https://data.delijn.be/stops/209564"], ["https://data.delijn.be/stops/304584", "https://data.delijn.be/stops/304617"], ["https://data.delijn.be/stops/202396", "https://data.delijn.be/stops/204621"], ["https://data.delijn.be/stops/303084", "https://data.delijn.be/stops/304245"], ["https://data.delijn.be/stops/503255", "https://data.delijn.be/stops/508430"], ["https://data.delijn.be/stops/108050", "https://data.delijn.be/stops/108051"], ["https://data.delijn.be/stops/301265", "https://data.delijn.be/stops/301266"], ["https://data.delijn.be/stops/101302", "https://data.delijn.be/stops/106201"], ["https://data.delijn.be/stops/300308", "https://data.delijn.be/stops/300537"], ["https://data.delijn.be/stops/501745", "https://data.delijn.be/stops/506367"], ["https://data.delijn.be/stops/501450", "https://data.delijn.be/stops/506454"], ["https://data.delijn.be/stops/300594", "https://data.delijn.be/stops/304242"], ["https://data.delijn.be/stops/508023", "https://data.delijn.be/stops/508679"], ["https://data.delijn.be/stops/207799", "https://data.delijn.be/stops/208349"], ["https://data.delijn.be/stops/400843", "https://data.delijn.be/stops/409573"], ["https://data.delijn.be/stops/407112", "https://data.delijn.be/stops/407326"], ["https://data.delijn.be/stops/304162", "https://data.delijn.be/stops/307558"], ["https://data.delijn.be/stops/105816", "https://data.delijn.be/stops/105817"], ["https://data.delijn.be/stops/214012", "https://data.delijn.be/stops/214013"], ["https://data.delijn.be/stops/408099", "https://data.delijn.be/stops/408161"], ["https://data.delijn.be/stops/300876", "https://data.delijn.be/stops/300877"], ["https://data.delijn.be/stops/502320", "https://data.delijn.be/stops/502331"], ["https://data.delijn.be/stops/405060", "https://data.delijn.be/stops/405115"], ["https://data.delijn.be/stops/102205", "https://data.delijn.be/stops/103600"], ["https://data.delijn.be/stops/407756", "https://data.delijn.be/stops/407757"], ["https://data.delijn.be/stops/305354", "https://data.delijn.be/stops/308447"], ["https://data.delijn.be/stops/502721", "https://data.delijn.be/stops/507721"], ["https://data.delijn.be/stops/504645", "https://data.delijn.be/stops/505175"], ["https://data.delijn.be/stops/200860", "https://data.delijn.be/stops/203288"], ["https://data.delijn.be/stops/505659", "https://data.delijn.be/stops/508511"], ["https://data.delijn.be/stops/308483", "https://data.delijn.be/stops/308536"], ["https://data.delijn.be/stops/501039", "https://data.delijn.be/stops/506329"], ["https://data.delijn.be/stops/202882", "https://data.delijn.be/stops/203882"], ["https://data.delijn.be/stops/300738", "https://data.delijn.be/stops/308935"], ["https://data.delijn.be/stops/206303", "https://data.delijn.be/stops/207302"], ["https://data.delijn.be/stops/106135", "https://data.delijn.be/stops/106138"], ["https://data.delijn.be/stops/400782", "https://data.delijn.be/stops/400783"], ["https://data.delijn.be/stops/103672", "https://data.delijn.be/stops/106253"], ["https://data.delijn.be/stops/300094", "https://data.delijn.be/stops/300098"], ["https://data.delijn.be/stops/508920", "https://data.delijn.be/stops/509041"], ["https://data.delijn.be/stops/201937", "https://data.delijn.be/stops/201938"], ["https://data.delijn.be/stops/408448", "https://data.delijn.be/stops/409587"], ["https://data.delijn.be/stops/107551", "https://data.delijn.be/stops/109377"], ["https://data.delijn.be/stops/204183", "https://data.delijn.be/stops/205183"], ["https://data.delijn.be/stops/106665", "https://data.delijn.be/stops/106667"], ["https://data.delijn.be/stops/403410", "https://data.delijn.be/stops/403411"], ["https://data.delijn.be/stops/407746", "https://data.delijn.be/stops/409793"], ["https://data.delijn.be/stops/301899", "https://data.delijn.be/stops/305086"], ["https://data.delijn.be/stops/208250", "https://data.delijn.be/stops/208251"], ["https://data.delijn.be/stops/409581", "https://data.delijn.be/stops/409583"], ["https://data.delijn.be/stops/101010", "https://data.delijn.be/stops/102470"], ["https://data.delijn.be/stops/400597", "https://data.delijn.be/stops/400607"], ["https://data.delijn.be/stops/407045", "https://data.delijn.be/stops/407085"], ["https://data.delijn.be/stops/302120", "https://data.delijn.be/stops/302141"], ["https://data.delijn.be/stops/304978", "https://data.delijn.be/stops/305022"], ["https://data.delijn.be/stops/300311", "https://data.delijn.be/stops/302448"], ["https://data.delijn.be/stops/306908", "https://data.delijn.be/stops/306932"], ["https://data.delijn.be/stops/202511", "https://data.delijn.be/stops/203495"], ["https://data.delijn.be/stops/109233", "https://data.delijn.be/stops/109236"], ["https://data.delijn.be/stops/505200", "https://data.delijn.be/stops/508150"], ["https://data.delijn.be/stops/406524", "https://data.delijn.be/stops/406629"], ["https://data.delijn.be/stops/300768", "https://data.delijn.be/stops/300798"], ["https://data.delijn.be/stops/501557", "https://data.delijn.be/stops/506556"], ["https://data.delijn.be/stops/102454", "https://data.delijn.be/stops/109014"], ["https://data.delijn.be/stops/205429", "https://data.delijn.be/stops/205766"], ["https://data.delijn.be/stops/104014", "https://data.delijn.be/stops/104016"], ["https://data.delijn.be/stops/201764", "https://data.delijn.be/stops/209273"], ["https://data.delijn.be/stops/405144", "https://data.delijn.be/stops/405158"], ["https://data.delijn.be/stops/502396", "https://data.delijn.be/stops/507413"], ["https://data.delijn.be/stops/101390", "https://data.delijn.be/stops/107003"], ["https://data.delijn.be/stops/304784", "https://data.delijn.be/stops/304786"], ["https://data.delijn.be/stops/503543", "https://data.delijn.be/stops/503563"], ["https://data.delijn.be/stops/502699", "https://data.delijn.be/stops/507230"], ["https://data.delijn.be/stops/405192", "https://data.delijn.be/stops/405204"], ["https://data.delijn.be/stops/201949", "https://data.delijn.be/stops/211018"], ["https://data.delijn.be/stops/101892", "https://data.delijn.be/stops/107464"], ["https://data.delijn.be/stops/404594", "https://data.delijn.be/stops/406951"], ["https://data.delijn.be/stops/101223", "https://data.delijn.be/stops/107792"], ["https://data.delijn.be/stops/105103", "https://data.delijn.be/stops/105106"], ["https://data.delijn.be/stops/301649", "https://data.delijn.be/stops/307752"], ["https://data.delijn.be/stops/301773", "https://data.delijn.be/stops/306877"], ["https://data.delijn.be/stops/501062", "https://data.delijn.be/stops/506062"], ["https://data.delijn.be/stops/103098", "https://data.delijn.be/stops/103269"], ["https://data.delijn.be/stops/301336", "https://data.delijn.be/stops/301338"], ["https://data.delijn.be/stops/403050", "https://data.delijn.be/stops/403175"], ["https://data.delijn.be/stops/103259", "https://data.delijn.be/stops/105761"], ["https://data.delijn.be/stops/503027", "https://data.delijn.be/stops/508027"], ["https://data.delijn.be/stops/508440", "https://data.delijn.be/stops/509407"], ["https://data.delijn.be/stops/206018", "https://data.delijn.be/stops/207018"], ["https://data.delijn.be/stops/208018", "https://data.delijn.be/stops/208023"], ["https://data.delijn.be/stops/202148", "https://data.delijn.be/stops/203242"], ["https://data.delijn.be/stops/201532", "https://data.delijn.be/stops/203901"], ["https://data.delijn.be/stops/303336", "https://data.delijn.be/stops/303347"], ["https://data.delijn.be/stops/204424", "https://data.delijn.be/stops/205434"], ["https://data.delijn.be/stops/302562", "https://data.delijn.be/stops/306404"], ["https://data.delijn.be/stops/403409", "https://data.delijn.be/stops/403453"], ["https://data.delijn.be/stops/204605", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/301649", "https://data.delijn.be/stops/301655"], ["https://data.delijn.be/stops/501290", "https://data.delijn.be/stops/506205"], ["https://data.delijn.be/stops/102435", "https://data.delijn.be/stops/103005"], ["https://data.delijn.be/stops/205314", "https://data.delijn.be/stops/205709"], ["https://data.delijn.be/stops/403109", "https://data.delijn.be/stops/403111"], ["https://data.delijn.be/stops/109497", "https://data.delijn.be/stops/109499"], ["https://data.delijn.be/stops/405168", "https://data.delijn.be/stops/408369"], ["https://data.delijn.be/stops/204977", "https://data.delijn.be/stops/205976"], ["https://data.delijn.be/stops/405618", "https://data.delijn.be/stops/409514"], ["https://data.delijn.be/stops/305707", "https://data.delijn.be/stops/306303"], ["https://data.delijn.be/stops/208144", "https://data.delijn.be/stops/209403"], ["https://data.delijn.be/stops/402244", "https://data.delijn.be/stops/409393"], ["https://data.delijn.be/stops/502365", "https://data.delijn.be/stops/502679"], ["https://data.delijn.be/stops/208291", "https://data.delijn.be/stops/209292"], ["https://data.delijn.be/stops/300764", "https://data.delijn.be/stops/306117"], ["https://data.delijn.be/stops/502248", "https://data.delijn.be/stops/507566"], ["https://data.delijn.be/stops/407458", "https://data.delijn.be/stops/407466"], ["https://data.delijn.be/stops/400736", "https://data.delijn.be/stops/409383"], ["https://data.delijn.be/stops/209146", "https://data.delijn.be/stops/209148"], ["https://data.delijn.be/stops/505975", "https://data.delijn.be/stops/509406"], ["https://data.delijn.be/stops/407882", "https://data.delijn.be/stops/407883"], ["https://data.delijn.be/stops/504704", "https://data.delijn.be/stops/509704"], ["https://data.delijn.be/stops/104015", "https://data.delijn.be/stops/104655"], ["https://data.delijn.be/stops/503830", "https://data.delijn.be/stops/508829"], ["https://data.delijn.be/stops/108870", "https://data.delijn.be/stops/109140"], ["https://data.delijn.be/stops/202755", "https://data.delijn.be/stops/202795"], ["https://data.delijn.be/stops/405870", "https://data.delijn.be/stops/405871"], ["https://data.delijn.be/stops/104819", "https://data.delijn.be/stops/105544"], ["https://data.delijn.be/stops/204532", "https://data.delijn.be/stops/205761"], ["https://data.delijn.be/stops/504679", "https://data.delijn.be/stops/509461"], ["https://data.delijn.be/stops/207301", "https://data.delijn.be/stops/207738"], ["https://data.delijn.be/stops/200342", "https://data.delijn.be/stops/211009"], ["https://data.delijn.be/stops/101606", "https://data.delijn.be/stops/105759"], ["https://data.delijn.be/stops/206674", "https://data.delijn.be/stops/209175"], ["https://data.delijn.be/stops/502654", "https://data.delijn.be/stops/502735"], ["https://data.delijn.be/stops/400887", "https://data.delijn.be/stops/409660"], ["https://data.delijn.be/stops/405169", "https://data.delijn.be/stops/405231"], ["https://data.delijn.be/stops/204019", "https://data.delijn.be/stops/205400"], ["https://data.delijn.be/stops/401228", "https://data.delijn.be/stops/401239"], ["https://data.delijn.be/stops/204179", "https://data.delijn.be/stops/206392"], ["https://data.delijn.be/stops/201075", "https://data.delijn.be/stops/201076"], ["https://data.delijn.be/stops/206996", "https://data.delijn.be/stops/207996"], ["https://data.delijn.be/stops/104865", "https://data.delijn.be/stops/104870"], ["https://data.delijn.be/stops/405205", "https://data.delijn.be/stops/405251"], ["https://data.delijn.be/stops/302949", "https://data.delijn.be/stops/302976"], ["https://data.delijn.be/stops/504466", "https://data.delijn.be/stops/505304"], ["https://data.delijn.be/stops/202514", "https://data.delijn.be/stops/203514"], ["https://data.delijn.be/stops/204546", "https://data.delijn.be/stops/205332"], ["https://data.delijn.be/stops/108705", "https://data.delijn.be/stops/109986"], ["https://data.delijn.be/stops/301106", "https://data.delijn.be/stops/304599"], ["https://data.delijn.be/stops/504984", "https://data.delijn.be/stops/505290"], ["https://data.delijn.be/stops/200383", "https://data.delijn.be/stops/201141"], ["https://data.delijn.be/stops/209058", "https://data.delijn.be/stops/209059"], ["https://data.delijn.be/stops/201353", "https://data.delijn.be/stops/201805"], ["https://data.delijn.be/stops/200917", "https://data.delijn.be/stops/203043"], ["https://data.delijn.be/stops/400252", "https://data.delijn.be/stops/400384"], ["https://data.delijn.be/stops/405630", "https://data.delijn.be/stops/405632"], ["https://data.delijn.be/stops/404586", "https://data.delijn.be/stops/406931"], ["https://data.delijn.be/stops/405676", "https://data.delijn.be/stops/405685"], ["https://data.delijn.be/stops/404402", "https://data.delijn.be/stops/404448"], ["https://data.delijn.be/stops/302206", "https://data.delijn.be/stops/302207"], ["https://data.delijn.be/stops/202415", "https://data.delijn.be/stops/202570"], ["https://data.delijn.be/stops/107020", "https://data.delijn.be/stops/108650"], ["https://data.delijn.be/stops/406290", "https://data.delijn.be/stops/406443"], ["https://data.delijn.be/stops/107397", "https://data.delijn.be/stops/107399"], ["https://data.delijn.be/stops/303792", "https://data.delijn.be/stops/303793"], ["https://data.delijn.be/stops/405713", "https://data.delijn.be/stops/408353"], ["https://data.delijn.be/stops/102458", "https://data.delijn.be/stops/102459"], ["https://data.delijn.be/stops/400124", "https://data.delijn.be/stops/409173"], ["https://data.delijn.be/stops/302566", "https://data.delijn.be/stops/302589"], ["https://data.delijn.be/stops/503556", "https://data.delijn.be/stops/504277"], ["https://data.delijn.be/stops/107553", "https://data.delijn.be/stops/109376"], ["https://data.delijn.be/stops/503693", "https://data.delijn.be/stops/503734"], ["https://data.delijn.be/stops/502622", "https://data.delijn.be/stops/507613"], ["https://data.delijn.be/stops/402369", "https://data.delijn.be/stops/408485"], ["https://data.delijn.be/stops/200759", "https://data.delijn.be/stops/200762"], ["https://data.delijn.be/stops/107596", "https://data.delijn.be/stops/107722"], ["https://data.delijn.be/stops/501166", "https://data.delijn.be/stops/501668"], ["https://data.delijn.be/stops/103520", "https://data.delijn.be/stops/105110"], ["https://data.delijn.be/stops/307209", "https://data.delijn.be/stops/307210"], ["https://data.delijn.be/stops/106995", "https://data.delijn.be/stops/107317"], ["https://data.delijn.be/stops/404052", "https://data.delijn.be/stops/404059"], ["https://data.delijn.be/stops/105299", "https://data.delijn.be/stops/109970"], ["https://data.delijn.be/stops/501070", "https://data.delijn.be/stops/501382"], ["https://data.delijn.be/stops/108877", "https://data.delijn.be/stops/109507"], ["https://data.delijn.be/stops/407630", "https://data.delijn.be/stops/407631"], ["https://data.delijn.be/stops/503255", "https://data.delijn.be/stops/509764"], ["https://data.delijn.be/stops/202884", "https://data.delijn.be/stops/203884"], ["https://data.delijn.be/stops/103088", "https://data.delijn.be/stops/107482"], ["https://data.delijn.be/stops/206105", "https://data.delijn.be/stops/207105"], ["https://data.delijn.be/stops/407946", "https://data.delijn.be/stops/408087"], ["https://data.delijn.be/stops/504962", "https://data.delijn.be/stops/504989"], ["https://data.delijn.be/stops/406708", "https://data.delijn.be/stops/407063"], ["https://data.delijn.be/stops/403921", "https://data.delijn.be/stops/405946"], ["https://data.delijn.be/stops/207153", "https://data.delijn.be/stops/207154"], ["https://data.delijn.be/stops/305091", "https://data.delijn.be/stops/305161"], ["https://data.delijn.be/stops/409332", "https://data.delijn.be/stops/409333"], ["https://data.delijn.be/stops/106280", "https://data.delijn.be/stops/106300"], ["https://data.delijn.be/stops/200806", "https://data.delijn.be/stops/202054"], ["https://data.delijn.be/stops/508039", "https://data.delijn.be/stops/508045"], ["https://data.delijn.be/stops/208046", "https://data.delijn.be/stops/209047"], ["https://data.delijn.be/stops/405795", "https://data.delijn.be/stops/405796"], ["https://data.delijn.be/stops/200300", "https://data.delijn.be/stops/200301"], ["https://data.delijn.be/stops/305267", "https://data.delijn.be/stops/305330"], ["https://data.delijn.be/stops/400122", "https://data.delijn.be/stops/400128"], ["https://data.delijn.be/stops/503704", "https://data.delijn.be/stops/503707"], ["https://data.delijn.be/stops/108296", "https://data.delijn.be/stops/108298"], ["https://data.delijn.be/stops/400576", "https://data.delijn.be/stops/410009"], ["https://data.delijn.be/stops/207982", "https://data.delijn.be/stops/217020"], ["https://data.delijn.be/stops/300450", "https://data.delijn.be/stops/308059"], ["https://data.delijn.be/stops/405478", "https://data.delijn.be/stops/409290"], ["https://data.delijn.be/stops/504687", "https://data.delijn.be/stops/508532"], ["https://data.delijn.be/stops/400786", "https://data.delijn.be/stops/409596"], ["https://data.delijn.be/stops/108115", "https://data.delijn.be/stops/109055"], ["https://data.delijn.be/stops/203915", "https://data.delijn.be/stops/210097"], ["https://data.delijn.be/stops/209610", "https://data.delijn.be/stops/305298"], ["https://data.delijn.be/stops/308470", "https://data.delijn.be/stops/308689"], ["https://data.delijn.be/stops/206607", "https://data.delijn.be/stops/206667"], ["https://data.delijn.be/stops/408569", "https://data.delijn.be/stops/408571"], ["https://data.delijn.be/stops/208752", "https://data.delijn.be/stops/209692"], ["https://data.delijn.be/stops/301833", "https://data.delijn.be/stops/301834"], ["https://data.delijn.be/stops/401600", "https://data.delijn.be/stops/405836"], ["https://data.delijn.be/stops/407895", "https://data.delijn.be/stops/303262"], ["https://data.delijn.be/stops/405282", "https://data.delijn.be/stops/407702"], ["https://data.delijn.be/stops/307198", "https://data.delijn.be/stops/307202"], ["https://data.delijn.be/stops/202330", "https://data.delijn.be/stops/203336"], ["https://data.delijn.be/stops/102930", "https://data.delijn.be/stops/105510"], ["https://data.delijn.be/stops/307378", "https://data.delijn.be/stops/307448"], ["https://data.delijn.be/stops/501221", "https://data.delijn.be/stops/506212"], ["https://data.delijn.be/stops/106702", "https://data.delijn.be/stops/106704"], ["https://data.delijn.be/stops/400374", "https://data.delijn.be/stops/400375"], ["https://data.delijn.be/stops/108364", "https://data.delijn.be/stops/108506"], ["https://data.delijn.be/stops/305343", "https://data.delijn.be/stops/307110"], ["https://data.delijn.be/stops/402205", "https://data.delijn.be/stops/402235"], ["https://data.delijn.be/stops/403561", "https://data.delijn.be/stops/403861"], ["https://data.delijn.be/stops/204110", "https://data.delijn.be/stops/205110"], ["https://data.delijn.be/stops/400433", "https://data.delijn.be/stops/400434"], ["https://data.delijn.be/stops/301231", "https://data.delijn.be/stops/307623"], ["https://data.delijn.be/stops/402785", "https://data.delijn.be/stops/402798"], ["https://data.delijn.be/stops/406255", "https://data.delijn.be/stops/410131"], ["https://data.delijn.be/stops/306865", "https://data.delijn.be/stops/307730"], ["https://data.delijn.be/stops/505964", "https://data.delijn.be/stops/507692"], ["https://data.delijn.be/stops/405433", "https://data.delijn.be/stops/408873"], ["https://data.delijn.be/stops/300852", "https://data.delijn.be/stops/301047"], ["https://data.delijn.be/stops/505056", "https://data.delijn.be/stops/505115"], ["https://data.delijn.be/stops/500208", "https://data.delijn.be/stops/504741"], ["https://data.delijn.be/stops/505947", "https://data.delijn.be/stops/508968"], ["https://data.delijn.be/stops/206902", "https://data.delijn.be/stops/207264"], ["https://data.delijn.be/stops/308231", "https://data.delijn.be/stops/308234"], ["https://data.delijn.be/stops/402368", "https://data.delijn.be/stops/402370"], ["https://data.delijn.be/stops/108062", "https://data.delijn.be/stops/108359"], ["https://data.delijn.be/stops/200707", "https://data.delijn.be/stops/210088"], ["https://data.delijn.be/stops/304584", "https://data.delijn.be/stops/307267"], ["https://data.delijn.be/stops/407258", "https://data.delijn.be/stops/407259"], ["https://data.delijn.be/stops/207015", "https://data.delijn.be/stops/207267"], ["https://data.delijn.be/stops/300124", "https://data.delijn.be/stops/306830"], ["https://data.delijn.be/stops/305765", "https://data.delijn.be/stops/305766"], ["https://data.delijn.be/stops/504156", "https://data.delijn.be/stops/505108"], ["https://data.delijn.be/stops/405774", "https://data.delijn.be/stops/405775"], ["https://data.delijn.be/stops/501200", "https://data.delijn.be/stops/501425"], ["https://data.delijn.be/stops/200670", "https://data.delijn.be/stops/211102"], ["https://data.delijn.be/stops/105763", "https://data.delijn.be/stops/106854"], ["https://data.delijn.be/stops/203185", "https://data.delijn.be/stops/205094"], ["https://data.delijn.be/stops/406498", "https://data.delijn.be/stops/406509"], ["https://data.delijn.be/stops/404455", "https://data.delijn.be/stops/404561"], ["https://data.delijn.be/stops/405256", "https://data.delijn.be/stops/405272"], ["https://data.delijn.be/stops/503117", "https://data.delijn.be/stops/508119"], ["https://data.delijn.be/stops/201657", "https://data.delijn.be/stops/205931"], ["https://data.delijn.be/stops/504795", "https://data.delijn.be/stops/508470"], ["https://data.delijn.be/stops/206893", "https://data.delijn.be/stops/207888"], ["https://data.delijn.be/stops/102414", "https://data.delijn.be/stops/102915"], ["https://data.delijn.be/stops/106887", "https://data.delijn.be/stops/106889"], ["https://data.delijn.be/stops/401924", "https://data.delijn.be/stops/405822"], ["https://data.delijn.be/stops/307048", "https://data.delijn.be/stops/307049"], ["https://data.delijn.be/stops/505791", "https://data.delijn.be/stops/509421"], ["https://data.delijn.be/stops/106150", "https://data.delijn.be/stops/106151"], ["https://data.delijn.be/stops/207111", "https://data.delijn.be/stops/306726"], ["https://data.delijn.be/stops/204711", "https://data.delijn.be/stops/205712"], ["https://data.delijn.be/stops/300488", "https://data.delijn.be/stops/300501"], ["https://data.delijn.be/stops/408018", "https://data.delijn.be/stops/408042"], ["https://data.delijn.be/stops/101422", "https://data.delijn.be/stops/106976"], ["https://data.delijn.be/stops/504986", "https://data.delijn.be/stops/505830"], ["https://data.delijn.be/stops/103124", "https://data.delijn.be/stops/109170"], ["https://data.delijn.be/stops/103571", "https://data.delijn.be/stops/107139"], ["https://data.delijn.be/stops/402698", "https://data.delijn.be/stops/402880"], ["https://data.delijn.be/stops/407369", "https://data.delijn.be/stops/407570"], ["https://data.delijn.be/stops/302475", "https://data.delijn.be/stops/302498"], ["https://data.delijn.be/stops/106732", "https://data.delijn.be/stops/106773"], ["https://data.delijn.be/stops/305598", "https://data.delijn.be/stops/305629"], ["https://data.delijn.be/stops/504720", "https://data.delijn.be/stops/509014"], ["https://data.delijn.be/stops/504354", "https://data.delijn.be/stops/509350"], ["https://data.delijn.be/stops/103991", "https://data.delijn.be/stops/105312"], ["https://data.delijn.be/stops/401145", "https://data.delijn.be/stops/401147"], ["https://data.delijn.be/stops/300379", "https://data.delijn.be/stops/300380"], ["https://data.delijn.be/stops/403138", "https://data.delijn.be/stops/408516"], ["https://data.delijn.be/stops/301677", "https://data.delijn.be/stops/301683"], ["https://data.delijn.be/stops/402575", "https://data.delijn.be/stops/402583"], ["https://data.delijn.be/stops/503401", "https://data.delijn.be/stops/505556"], ["https://data.delijn.be/stops/204686", "https://data.delijn.be/stops/205686"], ["https://data.delijn.be/stops/206389", "https://data.delijn.be/stops/216004"], ["https://data.delijn.be/stops/200957", "https://data.delijn.be/stops/202671"], ["https://data.delijn.be/stops/501550", "https://data.delijn.be/stops/501558"], ["https://data.delijn.be/stops/401543", "https://data.delijn.be/stops/402033"], ["https://data.delijn.be/stops/506298", "https://data.delijn.be/stops/506353"], ["https://data.delijn.be/stops/102555", "https://data.delijn.be/stops/102640"], ["https://data.delijn.be/stops/400166", "https://data.delijn.be/stops/405642"], ["https://data.delijn.be/stops/105270", "https://data.delijn.be/stops/108800"], ["https://data.delijn.be/stops/109581", "https://data.delijn.be/stops/109586"], ["https://data.delijn.be/stops/106271", "https://data.delijn.be/stops/109626"], ["https://data.delijn.be/stops/301932", "https://data.delijn.be/stops/305841"], ["https://data.delijn.be/stops/303790", "https://data.delijn.be/stops/303807"], ["https://data.delijn.be/stops/200212", "https://data.delijn.be/stops/200217"], ["https://data.delijn.be/stops/105388", "https://data.delijn.be/stops/106025"], ["https://data.delijn.be/stops/402242", "https://data.delijn.be/stops/402243"], ["https://data.delijn.be/stops/302705", "https://data.delijn.be/stops/302738"], ["https://data.delijn.be/stops/503103", "https://data.delijn.be/stops/508103"], ["https://data.delijn.be/stops/104647", "https://data.delijn.be/stops/107982"], ["https://data.delijn.be/stops/302246", "https://data.delijn.be/stops/304031"], ["https://data.delijn.be/stops/303255", "https://data.delijn.be/stops/303258"], ["https://data.delijn.be/stops/503416", "https://data.delijn.be/stops/508416"], ["https://data.delijn.be/stops/503298", "https://data.delijn.be/stops/505948"], ["https://data.delijn.be/stops/505757", "https://data.delijn.be/stops/506122"], ["https://data.delijn.be/stops/101049", "https://data.delijn.be/stops/204608"], ["https://data.delijn.be/stops/502586", "https://data.delijn.be/stops/507358"], ["https://data.delijn.be/stops/300849", "https://data.delijn.be/stops/305313"], ["https://data.delijn.be/stops/304015", "https://data.delijn.be/stops/306278"], ["https://data.delijn.be/stops/404670", "https://data.delijn.be/stops/404671"], ["https://data.delijn.be/stops/305248", "https://data.delijn.be/stops/305600"], ["https://data.delijn.be/stops/300939", "https://data.delijn.be/stops/304720"], ["https://data.delijn.be/stops/501329", "https://data.delijn.be/stops/506034"], ["https://data.delijn.be/stops/503183", "https://data.delijn.be/stops/508204"], ["https://data.delijn.be/stops/405400", "https://data.delijn.be/stops/405405"], ["https://data.delijn.be/stops/408780", "https://data.delijn.be/stops/410249"], ["https://data.delijn.be/stops/300467", "https://data.delijn.be/stops/300470"], ["https://data.delijn.be/stops/406585", "https://data.delijn.be/stops/406699"], ["https://data.delijn.be/stops/303259", "https://data.delijn.be/stops/303266"], ["https://data.delijn.be/stops/108532", "https://data.delijn.be/stops/108536"], ["https://data.delijn.be/stops/408546", "https://data.delijn.be/stops/408769"], ["https://data.delijn.be/stops/206509", "https://data.delijn.be/stops/207510"], ["https://data.delijn.be/stops/501113", "https://data.delijn.be/stops/509836"], ["https://data.delijn.be/stops/406117", "https://data.delijn.be/stops/410199"], ["https://data.delijn.be/stops/201891", "https://data.delijn.be/stops/211119"], ["https://data.delijn.be/stops/206786", "https://data.delijn.be/stops/209039"], ["https://data.delijn.be/stops/305541", "https://data.delijn.be/stops/305560"], ["https://data.delijn.be/stops/503646", "https://data.delijn.be/stops/508741"], ["https://data.delijn.be/stops/300237", "https://data.delijn.be/stops/300247"], ["https://data.delijn.be/stops/306842", "https://data.delijn.be/stops/306866"], ["https://data.delijn.be/stops/200831", "https://data.delijn.be/stops/505063"], ["https://data.delijn.be/stops/101162", "https://data.delijn.be/stops/105972"], ["https://data.delijn.be/stops/204425", "https://data.delijn.be/stops/205744"], ["https://data.delijn.be/stops/306903", "https://data.delijn.be/stops/306906"], ["https://data.delijn.be/stops/301238", "https://data.delijn.be/stops/301241"], ["https://data.delijn.be/stops/502289", "https://data.delijn.be/stops/507292"], ["https://data.delijn.be/stops/106797", "https://data.delijn.be/stops/106799"], ["https://data.delijn.be/stops/104476", "https://data.delijn.be/stops/104477"], ["https://data.delijn.be/stops/204985", "https://data.delijn.be/stops/208351"], ["https://data.delijn.be/stops/505117", "https://data.delijn.be/stops/508886"], ["https://data.delijn.be/stops/305160", "https://data.delijn.be/stops/305161"], ["https://data.delijn.be/stops/206773", "https://data.delijn.be/stops/208092"], ["https://data.delijn.be/stops/504106", "https://data.delijn.be/stops/504471"], ["https://data.delijn.be/stops/106951", "https://data.delijn.be/stops/106953"], ["https://data.delijn.be/stops/106366", "https://data.delijn.be/stops/106372"], ["https://data.delijn.be/stops/503038", "https://data.delijn.be/stops/508038"], ["https://data.delijn.be/stops/407030", "https://data.delijn.be/stops/407031"], ["https://data.delijn.be/stops/308519", "https://data.delijn.be/stops/308521"], ["https://data.delijn.be/stops/505423", "https://data.delijn.be/stops/509137"], ["https://data.delijn.be/stops/407936", "https://data.delijn.be/stops/407937"], ["https://data.delijn.be/stops/203996", "https://data.delijn.be/stops/208562"], ["https://data.delijn.be/stops/207545", "https://data.delijn.be/stops/209748"], ["https://data.delijn.be/stops/205615", "https://data.delijn.be/stops/205674"], ["https://data.delijn.be/stops/502359", "https://data.delijn.be/stops/502586"], ["https://data.delijn.be/stops/301832", "https://data.delijn.be/stops/306984"], ["https://data.delijn.be/stops/501006", "https://data.delijn.be/stops/506505"], ["https://data.delijn.be/stops/503776", "https://data.delijn.be/stops/508780"], ["https://data.delijn.be/stops/301769", "https://data.delijn.be/stops/301770"], ["https://data.delijn.be/stops/203228", "https://data.delijn.be/stops/203229"], ["https://data.delijn.be/stops/209313", "https://data.delijn.be/stops/209771"], ["https://data.delijn.be/stops/207332", "https://data.delijn.be/stops/207710"], ["https://data.delijn.be/stops/301973", "https://data.delijn.be/stops/301975"], ["https://data.delijn.be/stops/505915", "https://data.delijn.be/stops/509089"], ["https://data.delijn.be/stops/208483", "https://data.delijn.be/stops/209487"], ["https://data.delijn.be/stops/401629", "https://data.delijn.be/stops/308209"], ["https://data.delijn.be/stops/503100", "https://data.delijn.be/stops/508100"], ["https://data.delijn.be/stops/201815", "https://data.delijn.be/stops/208252"], ["https://data.delijn.be/stops/505086", "https://data.delijn.be/stops/505234"], ["https://data.delijn.be/stops/105376", "https://data.delijn.be/stops/105581"], ["https://data.delijn.be/stops/405976", "https://data.delijn.be/stops/405977"], ["https://data.delijn.be/stops/501624", "https://data.delijn.be/stops/506015"], ["https://data.delijn.be/stops/102042", "https://data.delijn.be/stops/207365"], ["https://data.delijn.be/stops/305459", "https://data.delijn.be/stops/307896"], ["https://data.delijn.be/stops/401433", "https://data.delijn.be/stops/410146"], ["https://data.delijn.be/stops/401025", "https://data.delijn.be/stops/401151"], ["https://data.delijn.be/stops/205519", "https://data.delijn.be/stops/205520"], ["https://data.delijn.be/stops/405706", "https://data.delijn.be/stops/408972"], ["https://data.delijn.be/stops/201746", "https://data.delijn.be/stops/208328"], ["https://data.delijn.be/stops/508028", "https://data.delijn.be/stops/508030"], ["https://data.delijn.be/stops/208491", "https://data.delijn.be/stops/209103"], ["https://data.delijn.be/stops/300877", "https://data.delijn.be/stops/307921"], ["https://data.delijn.be/stops/507033", "https://data.delijn.be/stops/507044"], ["https://data.delijn.be/stops/500028", "https://data.delijn.be/stops/503118"], ["https://data.delijn.be/stops/401883", "https://data.delijn.be/stops/401885"], ["https://data.delijn.be/stops/300842", "https://data.delijn.be/stops/304566"], ["https://data.delijn.be/stops/102671", "https://data.delijn.be/stops/105531"], ["https://data.delijn.be/stops/105842", "https://data.delijn.be/stops/105844"], ["https://data.delijn.be/stops/103661", "https://data.delijn.be/stops/106219"], ["https://data.delijn.be/stops/208502", "https://data.delijn.be/stops/209502"], ["https://data.delijn.be/stops/300099", "https://data.delijn.be/stops/304411"], ["https://data.delijn.be/stops/504451", "https://data.delijn.be/stops/505828"], ["https://data.delijn.be/stops/503646", "https://data.delijn.be/stops/503718"], ["https://data.delijn.be/stops/302055", "https://data.delijn.be/stops/303184"], ["https://data.delijn.be/stops/300777", "https://data.delijn.be/stops/300778"], ["https://data.delijn.be/stops/405157", "https://data.delijn.be/stops/405184"], ["https://data.delijn.be/stops/406891", "https://data.delijn.be/stops/406899"], ["https://data.delijn.be/stops/400083", "https://data.delijn.be/stops/400119"], ["https://data.delijn.be/stops/302308", "https://data.delijn.be/stops/302326"], ["https://data.delijn.be/stops/301598", "https://data.delijn.be/stops/301614"], ["https://data.delijn.be/stops/402237", "https://data.delijn.be/stops/402480"], ["https://data.delijn.be/stops/202693", "https://data.delijn.be/stops/202694"], ["https://data.delijn.be/stops/305393", "https://data.delijn.be/stops/305394"], ["https://data.delijn.be/stops/408066", "https://data.delijn.be/stops/408082"], ["https://data.delijn.be/stops/505251", "https://data.delijn.be/stops/507698"], ["https://data.delijn.be/stops/408508", "https://data.delijn.be/stops/410249"], ["https://data.delijn.be/stops/108864", "https://data.delijn.be/stops/109743"], ["https://data.delijn.be/stops/306626", "https://data.delijn.be/stops/308455"], ["https://data.delijn.be/stops/400458", "https://data.delijn.be/stops/400497"], ["https://data.delijn.be/stops/200232", "https://data.delijn.be/stops/204924"], ["https://data.delijn.be/stops/406259", "https://data.delijn.be/stops/408417"], ["https://data.delijn.be/stops/404220", "https://data.delijn.be/stops/404221"], ["https://data.delijn.be/stops/207533", "https://data.delijn.be/stops/207823"], ["https://data.delijn.be/stops/505198", "https://data.delijn.be/stops/505288"], ["https://data.delijn.be/stops/409556", "https://data.delijn.be/stops/409559"], ["https://data.delijn.be/stops/105777", "https://data.delijn.be/stops/105778"], ["https://data.delijn.be/stops/303631", "https://data.delijn.be/stops/306399"], ["https://data.delijn.be/stops/304577", "https://data.delijn.be/stops/304578"], ["https://data.delijn.be/stops/502304", "https://data.delijn.be/stops/502592"], ["https://data.delijn.be/stops/206910", "https://data.delijn.be/stops/207106"], ["https://data.delijn.be/stops/505082", "https://data.delijn.be/stops/508008"], ["https://data.delijn.be/stops/408968", "https://data.delijn.be/stops/408973"], ["https://data.delijn.be/stops/201905", "https://data.delijn.be/stops/202515"], ["https://data.delijn.be/stops/206021", "https://data.delijn.be/stops/207162"], ["https://data.delijn.be/stops/503514", "https://data.delijn.be/stops/508513"], ["https://data.delijn.be/stops/503505", "https://data.delijn.be/stops/508505"], ["https://data.delijn.be/stops/108119", "https://data.delijn.be/stops/108121"], ["https://data.delijn.be/stops/303033", "https://data.delijn.be/stops/303094"], ["https://data.delijn.be/stops/509381", "https://data.delijn.be/stops/509382"], ["https://data.delijn.be/stops/501532", "https://data.delijn.be/stops/505398"], ["https://data.delijn.be/stops/504876", "https://data.delijn.be/stops/508642"], ["https://data.delijn.be/stops/500049", "https://data.delijn.be/stops/500052"], ["https://data.delijn.be/stops/101063", "https://data.delijn.be/stops/106007"], ["https://data.delijn.be/stops/404860", "https://data.delijn.be/stops/404861"], ["https://data.delijn.be/stops/104547", "https://data.delijn.be/stops/104574"], ["https://data.delijn.be/stops/200664", "https://data.delijn.be/stops/201562"], ["https://data.delijn.be/stops/206956", "https://data.delijn.be/stops/207186"], ["https://data.delijn.be/stops/304609", "https://data.delijn.be/stops/304610"], ["https://data.delijn.be/stops/300918", "https://data.delijn.be/stops/300919"], ["https://data.delijn.be/stops/301364", "https://data.delijn.be/stops/306153"], ["https://data.delijn.be/stops/106881", "https://data.delijn.be/stops/109750"], ["https://data.delijn.be/stops/202078", "https://data.delijn.be/stops/202448"], ["https://data.delijn.be/stops/402982", "https://data.delijn.be/stops/404699"], ["https://data.delijn.be/stops/107585", "https://data.delijn.be/stops/107590"], ["https://data.delijn.be/stops/409360", "https://data.delijn.be/stops/409440"], ["https://data.delijn.be/stops/408390", "https://data.delijn.be/stops/308218"], ["https://data.delijn.be/stops/301239", "https://data.delijn.be/stops/307614"], ["https://data.delijn.be/stops/200870", "https://data.delijn.be/stops/203336"], ["https://data.delijn.be/stops/301035", "https://data.delijn.be/stops/303833"], ["https://data.delijn.be/stops/409369", "https://data.delijn.be/stops/409371"], ["https://data.delijn.be/stops/109282", "https://data.delijn.be/stops/109284"], ["https://data.delijn.be/stops/502251", "https://data.delijn.be/stops/507251"], ["https://data.delijn.be/stops/207113", "https://data.delijn.be/stops/207156"], ["https://data.delijn.be/stops/407242", "https://data.delijn.be/stops/407450"], ["https://data.delijn.be/stops/503470", "https://data.delijn.be/stops/508470"], ["https://data.delijn.be/stops/500019", "https://data.delijn.be/stops/507046"], ["https://data.delijn.be/stops/208778", "https://data.delijn.be/stops/208779"], ["https://data.delijn.be/stops/502801", "https://data.delijn.be/stops/504990"], ["https://data.delijn.be/stops/105214", "https://data.delijn.be/stops/106248"], ["https://data.delijn.be/stops/402935", "https://data.delijn.be/stops/403960"], ["https://data.delijn.be/stops/105338", "https://data.delijn.be/stops/105339"], ["https://data.delijn.be/stops/106642", "https://data.delijn.be/stops/106648"], ["https://data.delijn.be/stops/200229", "https://data.delijn.be/stops/201229"], ["https://data.delijn.be/stops/402703", "https://data.delijn.be/stops/404433"], ["https://data.delijn.be/stops/301110", "https://data.delijn.be/stops/303674"], ["https://data.delijn.be/stops/102653", "https://data.delijn.be/stops/107791"], ["https://data.delijn.be/stops/503589", "https://data.delijn.be/stops/505663"], ["https://data.delijn.be/stops/105512", "https://data.delijn.be/stops/105513"], ["https://data.delijn.be/stops/205928", "https://data.delijn.be/stops/205929"], ["https://data.delijn.be/stops/303463", "https://data.delijn.be/stops/303490"], ["https://data.delijn.be/stops/504978", "https://data.delijn.be/stops/504979"], ["https://data.delijn.be/stops/205092", "https://data.delijn.be/stops/205173"], ["https://data.delijn.be/stops/409500", "https://data.delijn.be/stops/409516"], ["https://data.delijn.be/stops/401300", "https://data.delijn.be/stops/401321"], ["https://data.delijn.be/stops/201071", "https://data.delijn.be/stops/203352"], ["https://data.delijn.be/stops/401308", "https://data.delijn.be/stops/406656"], ["https://data.delijn.be/stops/103758", "https://data.delijn.be/stops/108140"], ["https://data.delijn.be/stops/103753", "https://data.delijn.be/stops/104630"], ["https://data.delijn.be/stops/103096", "https://data.delijn.be/stops/109273"], ["https://data.delijn.be/stops/504086", "https://data.delijn.be/stops/505102"], ["https://data.delijn.be/stops/404638", "https://data.delijn.be/stops/404641"], ["https://data.delijn.be/stops/308047", "https://data.delijn.be/stops/308446"], ["https://data.delijn.be/stops/503390", "https://data.delijn.be/stops/508197"], ["https://data.delijn.be/stops/505777", "https://data.delijn.be/stops/507236"], ["https://data.delijn.be/stops/107022", "https://data.delijn.be/stops/107024"], ["https://data.delijn.be/stops/401298", "https://data.delijn.be/stops/401306"], ["https://data.delijn.be/stops/106482", "https://data.delijn.be/stops/109211"], ["https://data.delijn.be/stops/106457", "https://data.delijn.be/stops/107036"], ["https://data.delijn.be/stops/409062", "https://data.delijn.be/stops/409123"], ["https://data.delijn.be/stops/104510", "https://data.delijn.be/stops/108830"], ["https://data.delijn.be/stops/400835", "https://data.delijn.be/stops/409532"], ["https://data.delijn.be/stops/106005", "https://data.delijn.be/stops/108035"], ["https://data.delijn.be/stops/101780", "https://data.delijn.be/stops/108975"], ["https://data.delijn.be/stops/205977", "https://data.delijn.be/stops/208245"], ["https://data.delijn.be/stops/408874", "https://data.delijn.be/stops/408910"], ["https://data.delijn.be/stops/202192", "https://data.delijn.be/stops/203193"], ["https://data.delijn.be/stops/300137", "https://data.delijn.be/stops/306812"], ["https://data.delijn.be/stops/208516", "https://data.delijn.be/stops/209442"], ["https://data.delijn.be/stops/206518", "https://data.delijn.be/stops/207445"], ["https://data.delijn.be/stops/403009", "https://data.delijn.be/stops/403309"], ["https://data.delijn.be/stops/302186", "https://data.delijn.be/stops/302205"], ["https://data.delijn.be/stops/307301", "https://data.delijn.be/stops/307318"], ["https://data.delijn.be/stops/208246", "https://data.delijn.be/stops/208248"], ["https://data.delijn.be/stops/201230", "https://data.delijn.be/stops/201232"], ["https://data.delijn.be/stops/208138", "https://data.delijn.be/stops/209133"], ["https://data.delijn.be/stops/107784", "https://data.delijn.be/stops/107788"], ["https://data.delijn.be/stops/402802", "https://data.delijn.be/stops/409046"], ["https://data.delijn.be/stops/404400", "https://data.delijn.be/stops/404410"], ["https://data.delijn.be/stops/200092", "https://data.delijn.be/stops/201093"], ["https://data.delijn.be/stops/307147", "https://data.delijn.be/stops/307149"], ["https://data.delijn.be/stops/503179", "https://data.delijn.be/stops/508179"], ["https://data.delijn.be/stops/502569", "https://data.delijn.be/stops/505700"], ["https://data.delijn.be/stops/407623", "https://data.delijn.be/stops/407701"], ["https://data.delijn.be/stops/102595", "https://data.delijn.be/stops/108305"], ["https://data.delijn.be/stops/508240", "https://data.delijn.be/stops/508518"], ["https://data.delijn.be/stops/104404", "https://data.delijn.be/stops/104409"], ["https://data.delijn.be/stops/508255", "https://data.delijn.be/stops/509793"], ["https://data.delijn.be/stops/204415", "https://data.delijn.be/stops/205769"], ["https://data.delijn.be/stops/305412", "https://data.delijn.be/stops/305414"], ["https://data.delijn.be/stops/200091", "https://data.delijn.be/stops/200479"], ["https://data.delijn.be/stops/300371", "https://data.delijn.be/stops/300401"], ["https://data.delijn.be/stops/502109", "https://data.delijn.be/stops/502122"], ["https://data.delijn.be/stops/300721", "https://data.delijn.be/stops/300724"], ["https://data.delijn.be/stops/505097", "https://data.delijn.be/stops/505124"], ["https://data.delijn.be/stops/302637", "https://data.delijn.be/stops/308116"], ["https://data.delijn.be/stops/502599", "https://data.delijn.be/stops/507599"], ["https://data.delijn.be/stops/204213", "https://data.delijn.be/stops/205213"], ["https://data.delijn.be/stops/401370", "https://data.delijn.be/stops/401373"], ["https://data.delijn.be/stops/303412", "https://data.delijn.be/stops/303413"], ["https://data.delijn.be/stops/501200", "https://data.delijn.be/stops/506200"], ["https://data.delijn.be/stops/401316", "https://data.delijn.be/stops/401324"], ["https://data.delijn.be/stops/109013", "https://data.delijn.be/stops/109014"], ["https://data.delijn.be/stops/405751", "https://data.delijn.be/stops/408329"], ["https://data.delijn.be/stops/302948", "https://data.delijn.be/stops/303003"], ["https://data.delijn.be/stops/103223", "https://data.delijn.be/stops/108615"], ["https://data.delijn.be/stops/205446", "https://data.delijn.be/stops/214002"], ["https://data.delijn.be/stops/502062", "https://data.delijn.be/stops/504881"], ["https://data.delijn.be/stops/502339", "https://data.delijn.be/stops/502692"], ["https://data.delijn.be/stops/404156", "https://data.delijn.be/stops/404166"], ["https://data.delijn.be/stops/301926", "https://data.delijn.be/stops/307878"], ["https://data.delijn.be/stops/103048", "https://data.delijn.be/stops/103049"], ["https://data.delijn.be/stops/107014", "https://data.delijn.be/stops/107017"], ["https://data.delijn.be/stops/209547", "https://data.delijn.be/stops/209548"], ["https://data.delijn.be/stops/409100", "https://data.delijn.be/stops/409102"], ["https://data.delijn.be/stops/301736", "https://data.delijn.be/stops/308423"], ["https://data.delijn.be/stops/204557", "https://data.delijn.be/stops/205030"], ["https://data.delijn.be/stops/102790", "https://data.delijn.be/stops/103090"], ["https://data.delijn.be/stops/102185", "https://data.delijn.be/stops/106359"], ["https://data.delijn.be/stops/504554", "https://data.delijn.be/stops/505289"], ["https://data.delijn.be/stops/307758", "https://data.delijn.be/stops/307759"], ["https://data.delijn.be/stops/104054", "https://data.delijn.be/stops/104056"], ["https://data.delijn.be/stops/401030", "https://data.delijn.be/stops/401039"], ["https://data.delijn.be/stops/503296", "https://data.delijn.be/stops/505934"], ["https://data.delijn.be/stops/501324", "https://data.delijn.be/stops/506324"], ["https://data.delijn.be/stops/406185", "https://data.delijn.be/stops/406431"], ["https://data.delijn.be/stops/300651", "https://data.delijn.be/stops/300664"], ["https://data.delijn.be/stops/104185", "https://data.delijn.be/stops/104521"], ["https://data.delijn.be/stops/401327", "https://data.delijn.be/stops/401355"], ["https://data.delijn.be/stops/502468", "https://data.delijn.be/stops/502472"], ["https://data.delijn.be/stops/101749", "https://data.delijn.be/stops/102754"], ["https://data.delijn.be/stops/209045", "https://data.delijn.be/stops/209061"], ["https://data.delijn.be/stops/102485", "https://data.delijn.be/stops/107665"], ["https://data.delijn.be/stops/207757", "https://data.delijn.be/stops/207780"], ["https://data.delijn.be/stops/206605", "https://data.delijn.be/stops/206606"], ["https://data.delijn.be/stops/101590", "https://data.delijn.be/stops/104115"], ["https://data.delijn.be/stops/504412", "https://data.delijn.be/stops/509080"], ["https://data.delijn.be/stops/104609", "https://data.delijn.be/stops/104817"], ["https://data.delijn.be/stops/105159", "https://data.delijn.be/stops/105166"], ["https://data.delijn.be/stops/505792", "https://data.delijn.be/stops/508103"], ["https://data.delijn.be/stops/303753", "https://data.delijn.be/stops/303756"], ["https://data.delijn.be/stops/401583", "https://data.delijn.be/stops/401904"], ["https://data.delijn.be/stops/302150", "https://data.delijn.be/stops/302151"], ["https://data.delijn.be/stops/402115", "https://data.delijn.be/stops/409299"], ["https://data.delijn.be/stops/305767", "https://data.delijn.be/stops/305785"], ["https://data.delijn.be/stops/505810", "https://data.delijn.be/stops/509054"], ["https://data.delijn.be/stops/301547", "https://data.delijn.be/stops/305137"], ["https://data.delijn.be/stops/106172", "https://data.delijn.be/stops/106175"], ["https://data.delijn.be/stops/502915", "https://data.delijn.be/stops/507023"], ["https://data.delijn.be/stops/403425", "https://data.delijn.be/stops/403584"], ["https://data.delijn.be/stops/404999", "https://data.delijn.be/stops/405530"], ["https://data.delijn.be/stops/304812", "https://data.delijn.be/stops/307885"], ["https://data.delijn.be/stops/505793", "https://data.delijn.be/stops/508044"], ["https://data.delijn.be/stops/202144", "https://data.delijn.be/stops/203144"], ["https://data.delijn.be/stops/206265", "https://data.delijn.be/stops/207981"], ["https://data.delijn.be/stops/401529", "https://data.delijn.be/stops/409504"], ["https://data.delijn.be/stops/200113", "https://data.delijn.be/stops/201113"], ["https://data.delijn.be/stops/204527", "https://data.delijn.be/stops/205732"], ["https://data.delijn.be/stops/203823", "https://data.delijn.be/stops/208240"], ["https://data.delijn.be/stops/407159", "https://data.delijn.be/stops/408729"], ["https://data.delijn.be/stops/101506", "https://data.delijn.be/stops/109034"], ["https://data.delijn.be/stops/304379", "https://data.delijn.be/stops/304380"], ["https://data.delijn.be/stops/207329", "https://data.delijn.be/stops/308845"], ["https://data.delijn.be/stops/504864", "https://data.delijn.be/stops/508340"], ["https://data.delijn.be/stops/205399", "https://data.delijn.be/stops/205772"], ["https://data.delijn.be/stops/505176", "https://data.delijn.be/stops/509720"], ["https://data.delijn.be/stops/200595", "https://data.delijn.be/stops/201595"], ["https://data.delijn.be/stops/504204", "https://data.delijn.be/stops/509204"], ["https://data.delijn.be/stops/208081", "https://data.delijn.be/stops/218015"], ["https://data.delijn.be/stops/202697", "https://data.delijn.be/stops/202706"], ["https://data.delijn.be/stops/209616", "https://data.delijn.be/stops/209617"], ["https://data.delijn.be/stops/208331", "https://data.delijn.be/stops/208716"], ["https://data.delijn.be/stops/401908", "https://data.delijn.be/stops/403576"], ["https://data.delijn.be/stops/407620", "https://data.delijn.be/stops/407621"], ["https://data.delijn.be/stops/402702", "https://data.delijn.be/stops/405997"], ["https://data.delijn.be/stops/202578", "https://data.delijn.be/stops/203579"], ["https://data.delijn.be/stops/102082", "https://data.delijn.be/stops/105834"], ["https://data.delijn.be/stops/400695", "https://data.delijn.be/stops/409524"], ["https://data.delijn.be/stops/402108", "https://data.delijn.be/stops/410335"], ["https://data.delijn.be/stops/501253", "https://data.delijn.be/stops/506250"], ["https://data.delijn.be/stops/401813", "https://data.delijn.be/stops/406354"], ["https://data.delijn.be/stops/106607", "https://data.delijn.be/stops/106609"], ["https://data.delijn.be/stops/308722", "https://data.delijn.be/stops/308733"], ["https://data.delijn.be/stops/404346", "https://data.delijn.be/stops/405669"], ["https://data.delijn.be/stops/500948", "https://data.delijn.be/stops/508067"], ["https://data.delijn.be/stops/206809", "https://data.delijn.be/stops/207201"], ["https://data.delijn.be/stops/302702", "https://data.delijn.be/stops/308062"], ["https://data.delijn.be/stops/202485", "https://data.delijn.be/stops/203485"], ["https://data.delijn.be/stops/200160", "https://data.delijn.be/stops/200536"], ["https://data.delijn.be/stops/402412", "https://data.delijn.be/stops/402413"], ["https://data.delijn.be/stops/301382", "https://data.delijn.be/stops/306138"], ["https://data.delijn.be/stops/109239", "https://data.delijn.be/stops/109246"], ["https://data.delijn.be/stops/503634", "https://data.delijn.be/stops/503961"], ["https://data.delijn.be/stops/302457", "https://data.delijn.be/stops/302459"], ["https://data.delijn.be/stops/404718", "https://data.delijn.be/stops/404721"], ["https://data.delijn.be/stops/504502", "https://data.delijn.be/stops/504730"], ["https://data.delijn.be/stops/505511", "https://data.delijn.be/stops/505611"], ["https://data.delijn.be/stops/406166", "https://data.delijn.be/stops/406167"], ["https://data.delijn.be/stops/201943", "https://data.delijn.be/stops/203491"], ["https://data.delijn.be/stops/404363", "https://data.delijn.be/stops/404782"], ["https://data.delijn.be/stops/300501", "https://data.delijn.be/stops/300505"], ["https://data.delijn.be/stops/301663", "https://data.delijn.be/stops/301664"], ["https://data.delijn.be/stops/200148", "https://data.delijn.be/stops/201149"], ["https://data.delijn.be/stops/305766", "https://data.delijn.be/stops/305768"], ["https://data.delijn.be/stops/206361", "https://data.delijn.be/stops/206365"], ["https://data.delijn.be/stops/500952", "https://data.delijn.be/stops/503633"], ["https://data.delijn.be/stops/204541", "https://data.delijn.be/stops/205541"], ["https://data.delijn.be/stops/300450", "https://data.delijn.be/stops/300476"], ["https://data.delijn.be/stops/104898", "https://data.delijn.be/stops/107647"], ["https://data.delijn.be/stops/301292", "https://data.delijn.be/stops/304693"], ["https://data.delijn.be/stops/403960", "https://data.delijn.be/stops/403961"], ["https://data.delijn.be/stops/103169", "https://data.delijn.be/stops/109892"], ["https://data.delijn.be/stops/407911", "https://data.delijn.be/stops/408199"], ["https://data.delijn.be/stops/404470", "https://data.delijn.be/stops/404471"], ["https://data.delijn.be/stops/204171", "https://data.delijn.be/stops/204771"], ["https://data.delijn.be/stops/402136", "https://data.delijn.be/stops/402155"], ["https://data.delijn.be/stops/101787", "https://data.delijn.be/stops/109228"], ["https://data.delijn.be/stops/200114", "https://data.delijn.be/stops/203077"], ["https://data.delijn.be/stops/408200", "https://data.delijn.be/stops/307452"], ["https://data.delijn.be/stops/405199", "https://data.delijn.be/stops/405239"], ["https://data.delijn.be/stops/101176", "https://data.delijn.be/stops/106784"], ["https://data.delijn.be/stops/409578", "https://data.delijn.be/stops/409592"], ["https://data.delijn.be/stops/405694", "https://data.delijn.be/stops/405695"], ["https://data.delijn.be/stops/406874", "https://data.delijn.be/stops/409760"], ["https://data.delijn.be/stops/404726", "https://data.delijn.be/stops/404833"], ["https://data.delijn.be/stops/201546", "https://data.delijn.be/stops/202896"], ["https://data.delijn.be/stops/302325", "https://data.delijn.be/stops/307075"], ["https://data.delijn.be/stops/102594", "https://data.delijn.be/stops/109918"], ["https://data.delijn.be/stops/510027", "https://data.delijn.be/stops/510028"], ["https://data.delijn.be/stops/304076", "https://data.delijn.be/stops/307814"], ["https://data.delijn.be/stops/103042", "https://data.delijn.be/stops/106809"], ["https://data.delijn.be/stops/206444", "https://data.delijn.be/stops/209681"], ["https://data.delijn.be/stops/300445", "https://data.delijn.be/stops/301180"], ["https://data.delijn.be/stops/506299", "https://data.delijn.be/stops/506330"], ["https://data.delijn.be/stops/400894", "https://data.delijn.be/stops/400952"], ["https://data.delijn.be/stops/402385", "https://data.delijn.be/stops/402493"], ["https://data.delijn.be/stops/405958", "https://data.delijn.be/stops/308155"], ["https://data.delijn.be/stops/208146", "https://data.delijn.be/stops/209583"], ["https://data.delijn.be/stops/203380", "https://data.delijn.be/stops/203381"], ["https://data.delijn.be/stops/202830", "https://data.delijn.be/stops/219022"], ["https://data.delijn.be/stops/200814", "https://data.delijn.be/stops/202224"], ["https://data.delijn.be/stops/304508", "https://data.delijn.be/stops/304509"], ["https://data.delijn.be/stops/500041", "https://data.delijn.be/stops/507456"], ["https://data.delijn.be/stops/208798", "https://data.delijn.be/stops/209499"], ["https://data.delijn.be/stops/501699", "https://data.delijn.be/stops/506479"], ["https://data.delijn.be/stops/406869", "https://data.delijn.be/stops/406871"], ["https://data.delijn.be/stops/402678", "https://data.delijn.be/stops/402726"], ["https://data.delijn.be/stops/202758", "https://data.delijn.be/stops/203762"], ["https://data.delijn.be/stops/403087", "https://data.delijn.be/stops/403680"], ["https://data.delijn.be/stops/103642", "https://data.delijn.be/stops/107171"], ["https://data.delijn.be/stops/208054", "https://data.delijn.be/stops/209055"], ["https://data.delijn.be/stops/504272", "https://data.delijn.be/stops/504578"], ["https://data.delijn.be/stops/502390", "https://data.delijn.be/stops/502652"], ["https://data.delijn.be/stops/300919", "https://data.delijn.be/stops/304719"], ["https://data.delijn.be/stops/501406", "https://data.delijn.be/stops/506177"], ["https://data.delijn.be/stops/403462", "https://data.delijn.be/stops/403483"], ["https://data.delijn.be/stops/300370", "https://data.delijn.be/stops/307726"], ["https://data.delijn.be/stops/406535", "https://data.delijn.be/stops/409631"], ["https://data.delijn.be/stops/103637", "https://data.delijn.be/stops/107166"], ["https://data.delijn.be/stops/208140", "https://data.delijn.be/stops/209851"], ["https://data.delijn.be/stops/302253", "https://data.delijn.be/stops/303207"], ["https://data.delijn.be/stops/405333", "https://data.delijn.be/stops/405336"], ["https://data.delijn.be/stops/105694", "https://data.delijn.be/stops/105697"], ["https://data.delijn.be/stops/501502", "https://data.delijn.be/stops/506386"], ["https://data.delijn.be/stops/503623", "https://data.delijn.be/stops/503633"], ["https://data.delijn.be/stops/503866", "https://data.delijn.be/stops/508874"], ["https://data.delijn.be/stops/208060", "https://data.delijn.be/stops/208660"], ["https://data.delijn.be/stops/304405", "https://data.delijn.be/stops/304406"], ["https://data.delijn.be/stops/502294", "https://data.delijn.be/stops/507296"], ["https://data.delijn.be/stops/104410", "https://data.delijn.be/stops/107660"], ["https://data.delijn.be/stops/206854", "https://data.delijn.be/stops/207197"], ["https://data.delijn.be/stops/400545", "https://data.delijn.be/stops/400555"], ["https://data.delijn.be/stops/304125", "https://data.delijn.be/stops/304129"], ["https://data.delijn.be/stops/501049", "https://data.delijn.be/stops/506082"], ["https://data.delijn.be/stops/307616", "https://data.delijn.be/stops/308258"], ["https://data.delijn.be/stops/507427", "https://data.delijn.be/stops/507751"], ["https://data.delijn.be/stops/204322", "https://data.delijn.be/stops/205061"], ["https://data.delijn.be/stops/407155", "https://data.delijn.be/stops/407183"], ["https://data.delijn.be/stops/207378", "https://data.delijn.be/stops/207730"], ["https://data.delijn.be/stops/206891", "https://data.delijn.be/stops/207888"], ["https://data.delijn.be/stops/508010", "https://data.delijn.be/stops/508015"], ["https://data.delijn.be/stops/209715", "https://data.delijn.be/stops/219503"], ["https://data.delijn.be/stops/300082", "https://data.delijn.be/stops/306784"], ["https://data.delijn.be/stops/404363", "https://data.delijn.be/stops/404369"], ["https://data.delijn.be/stops/201546", "https://data.delijn.be/stops/203897"], ["https://data.delijn.be/stops/302626", "https://data.delijn.be/stops/302644"], ["https://data.delijn.be/stops/102934", "https://data.delijn.be/stops/106041"], ["https://data.delijn.be/stops/301507", "https://data.delijn.be/stops/301516"], ["https://data.delijn.be/stops/107990", "https://data.delijn.be/stops/108240"], ["https://data.delijn.be/stops/405002", "https://data.delijn.be/stops/405019"], ["https://data.delijn.be/stops/504452", "https://data.delijn.be/stops/509456"], ["https://data.delijn.be/stops/300126", "https://data.delijn.be/stops/307070"], ["https://data.delijn.be/stops/204124", "https://data.delijn.be/stops/204127"], ["https://data.delijn.be/stops/501105", "https://data.delijn.be/stops/501107"], ["https://data.delijn.be/stops/502733", "https://data.delijn.be/stops/505172"], ["https://data.delijn.be/stops/303890", "https://data.delijn.be/stops/307797"], ["https://data.delijn.be/stops/101088", "https://data.delijn.be/stops/105977"], ["https://data.delijn.be/stops/102454", "https://data.delijn.be/stops/109642"], ["https://data.delijn.be/stops/405369", "https://data.delijn.be/stops/405391"], ["https://data.delijn.be/stops/209210", "https://data.delijn.be/stops/209808"], ["https://data.delijn.be/stops/501623", "https://data.delijn.be/stops/506623"], ["https://data.delijn.be/stops/401538", "https://data.delijn.be/stops/401890"], ["https://data.delijn.be/stops/504980", "https://data.delijn.be/stops/504981"], ["https://data.delijn.be/stops/402151", "https://data.delijn.be/stops/406810"], ["https://data.delijn.be/stops/206784", "https://data.delijn.be/stops/209030"], ["https://data.delijn.be/stops/303963", "https://data.delijn.be/stops/303965"], ["https://data.delijn.be/stops/302974", "https://data.delijn.be/stops/303004"], ["https://data.delijn.be/stops/203646", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/509512", "https://data.delijn.be/stops/509951"], ["https://data.delijn.be/stops/304209", "https://data.delijn.be/stops/305353"], ["https://data.delijn.be/stops/301666", "https://data.delijn.be/stops/307823"], ["https://data.delijn.be/stops/502407", "https://data.delijn.be/stops/507621"], ["https://data.delijn.be/stops/304614", "https://data.delijn.be/stops/304639"], ["https://data.delijn.be/stops/402096", "https://data.delijn.be/stops/402230"], ["https://data.delijn.be/stops/408030", "https://data.delijn.be/stops/408089"], ["https://data.delijn.be/stops/306815", "https://data.delijn.be/stops/307427"], ["https://data.delijn.be/stops/306909", "https://data.delijn.be/stops/306912"], ["https://data.delijn.be/stops/109449", "https://data.delijn.be/stops/109450"], ["https://data.delijn.be/stops/204235", "https://data.delijn.be/stops/204597"], ["https://data.delijn.be/stops/306745", "https://data.delijn.be/stops/306886"], ["https://data.delijn.be/stops/403731", "https://data.delijn.be/stops/403875"], ["https://data.delijn.be/stops/301365", "https://data.delijn.be/stops/308768"], ["https://data.delijn.be/stops/101972", "https://data.delijn.be/stops/109704"], ["https://data.delijn.be/stops/101389", "https://data.delijn.be/stops/101390"], ["https://data.delijn.be/stops/504324", "https://data.delijn.be/stops/504472"], ["https://data.delijn.be/stops/301841", "https://data.delijn.be/stops/301846"], ["https://data.delijn.be/stops/102422", "https://data.delijn.be/stops/107322"], ["https://data.delijn.be/stops/504967", "https://data.delijn.be/stops/509968"], ["https://data.delijn.be/stops/200318", "https://data.delijn.be/stops/200475"], ["https://data.delijn.be/stops/300346", "https://data.delijn.be/stops/300355"], ["https://data.delijn.be/stops/204161", "https://data.delijn.be/stops/204581"], ["https://data.delijn.be/stops/503792", "https://data.delijn.be/stops/508795"], ["https://data.delijn.be/stops/505120", "https://data.delijn.be/stops/505984"], ["https://data.delijn.be/stops/506191", "https://data.delijn.be/stops/506380"], ["https://data.delijn.be/stops/503768", "https://data.delijn.be/stops/508768"], ["https://data.delijn.be/stops/503706", "https://data.delijn.be/stops/503754"], ["https://data.delijn.be/stops/502058", "https://data.delijn.be/stops/507030"], ["https://data.delijn.be/stops/404660", "https://data.delijn.be/stops/404661"], ["https://data.delijn.be/stops/102684", "https://data.delijn.be/stops/104736"], ["https://data.delijn.be/stops/104469", "https://data.delijn.be/stops/307524"], ["https://data.delijn.be/stops/206612", "https://data.delijn.be/stops/206707"], ["https://data.delijn.be/stops/401800", "https://data.delijn.be/stops/410354"], ["https://data.delijn.be/stops/206229", "https://data.delijn.be/stops/207229"], ["https://data.delijn.be/stops/206225", "https://data.delijn.be/stops/207226"], ["https://data.delijn.be/stops/403092", "https://data.delijn.be/stops/403235"], ["https://data.delijn.be/stops/407117", "https://data.delijn.be/stops/407339"], ["https://data.delijn.be/stops/406368", "https://data.delijn.be/stops/406374"], ["https://data.delijn.be/stops/400721", "https://data.delijn.be/stops/401885"], ["https://data.delijn.be/stops/105331", "https://data.delijn.be/stops/105333"], ["https://data.delijn.be/stops/103740", "https://data.delijn.be/stops/103750"], ["https://data.delijn.be/stops/303294", "https://data.delijn.be/stops/303296"], ["https://data.delijn.be/stops/404547", "https://data.delijn.be/stops/404574"], ["https://data.delijn.be/stops/305028", "https://data.delijn.be/stops/305455"], ["https://data.delijn.be/stops/500026", "https://data.delijn.be/stops/507768"], ["https://data.delijn.be/stops/202164", "https://data.delijn.be/stops/202969"], ["https://data.delijn.be/stops/104453", "https://data.delijn.be/stops/107492"], ["https://data.delijn.be/stops/202346", "https://data.delijn.be/stops/203346"], ["https://data.delijn.be/stops/105278", "https://data.delijn.be/stops/105294"], ["https://data.delijn.be/stops/101136", "https://data.delijn.be/stops/103352"], ["https://data.delijn.be/stops/103909", "https://data.delijn.be/stops/106362"], ["https://data.delijn.be/stops/101983", "https://data.delijn.be/stops/102288"], ["https://data.delijn.be/stops/404780", "https://data.delijn.be/stops/404785"], ["https://data.delijn.be/stops/405859", "https://data.delijn.be/stops/405863"], ["https://data.delijn.be/stops/501224", "https://data.delijn.be/stops/506224"], ["https://data.delijn.be/stops/501084", "https://data.delijn.be/stops/506053"], ["https://data.delijn.be/stops/109447", "https://data.delijn.be/stops/109449"], ["https://data.delijn.be/stops/302859", "https://data.delijn.be/stops/304184"], ["https://data.delijn.be/stops/403412", "https://data.delijn.be/stops/410399"], ["https://data.delijn.be/stops/407902", "https://data.delijn.be/stops/408043"], ["https://data.delijn.be/stops/300528", "https://data.delijn.be/stops/303264"], ["https://data.delijn.be/stops/208796", "https://data.delijn.be/stops/209116"], ["https://data.delijn.be/stops/206963", "https://data.delijn.be/stops/207415"], ["https://data.delijn.be/stops/301370", "https://data.delijn.be/stops/306132"], ["https://data.delijn.be/stops/503090", "https://data.delijn.be/stops/507620"], ["https://data.delijn.be/stops/206305", "https://data.delijn.be/stops/207048"], ["https://data.delijn.be/stops/206542", "https://data.delijn.be/stops/207542"], ["https://data.delijn.be/stops/102591", "https://data.delijn.be/stops/102897"], ["https://data.delijn.be/stops/102546", "https://data.delijn.be/stops/406547"], ["https://data.delijn.be/stops/106817", "https://data.delijn.be/stops/106818"], ["https://data.delijn.be/stops/503487", "https://data.delijn.be/stops/503903"], ["https://data.delijn.be/stops/405170", "https://data.delijn.be/stops/405174"], ["https://data.delijn.be/stops/408106", "https://data.delijn.be/stops/408141"], ["https://data.delijn.be/stops/501408", "https://data.delijn.be/stops/506418"], ["https://data.delijn.be/stops/200413", "https://data.delijn.be/stops/201413"], ["https://data.delijn.be/stops/101401", "https://data.delijn.be/stops/103242"], ["https://data.delijn.be/stops/403388", "https://data.delijn.be/stops/403532"], ["https://data.delijn.be/stops/504131", "https://data.delijn.be/stops/505401"], ["https://data.delijn.be/stops/305105", "https://data.delijn.be/stops/308122"], ["https://data.delijn.be/stops/400593", "https://data.delijn.be/stops/400604"], ["https://data.delijn.be/stops/303011", "https://data.delijn.be/stops/306319"], ["https://data.delijn.be/stops/107422", "https://data.delijn.be/stops/109696"], ["https://data.delijn.be/stops/502713", "https://data.delijn.be/stops/505010"], ["https://data.delijn.be/stops/408116", "https://data.delijn.be/stops/408162"], ["https://data.delijn.be/stops/400459", "https://data.delijn.be/stops/400496"], ["https://data.delijn.be/stops/301736", "https://data.delijn.be/stops/308708"], ["https://data.delijn.be/stops/504089", "https://data.delijn.be/stops/505927"], ["https://data.delijn.be/stops/503977", "https://data.delijn.be/stops/508450"], ["https://data.delijn.be/stops/200185", "https://data.delijn.be/stops/202756"], ["https://data.delijn.be/stops/200604", "https://data.delijn.be/stops/210098"], ["https://data.delijn.be/stops/403229", "https://data.delijn.be/stops/410280"], ["https://data.delijn.be/stops/504961", "https://data.delijn.be/stops/508062"], ["https://data.delijn.be/stops/402843", "https://data.delijn.be/stops/409239"], ["https://data.delijn.be/stops/400556", "https://data.delijn.be/stops/403232"], ["https://data.delijn.be/stops/501062", "https://data.delijn.be/stops/501065"], ["https://data.delijn.be/stops/502068", "https://data.delijn.be/stops/505675"], ["https://data.delijn.be/stops/301675", "https://data.delijn.be/stops/301676"], ["https://data.delijn.be/stops/504166", "https://data.delijn.be/stops/509166"], ["https://data.delijn.be/stops/103043", "https://data.delijn.be/stops/104014"], ["https://data.delijn.be/stops/104602", "https://data.delijn.be/stops/108278"], ["https://data.delijn.be/stops/405556", "https://data.delijn.be/stops/405577"], ["https://data.delijn.be/stops/404266", "https://data.delijn.be/stops/405552"], ["https://data.delijn.be/stops/402516", "https://data.delijn.be/stops/402517"], ["https://data.delijn.be/stops/208215", "https://data.delijn.be/stops/209214"], ["https://data.delijn.be/stops/103489", "https://data.delijn.be/stops/108268"], ["https://data.delijn.be/stops/200070", "https://data.delijn.be/stops/200071"], ["https://data.delijn.be/stops/409613", "https://data.delijn.be/stops/409614"], ["https://data.delijn.be/stops/303551", "https://data.delijn.be/stops/304718"], ["https://data.delijn.be/stops/206220", "https://data.delijn.be/stops/207196"], ["https://data.delijn.be/stops/502221", "https://data.delijn.be/stops/507221"], ["https://data.delijn.be/stops/301072", "https://data.delijn.be/stops/307808"], ["https://data.delijn.be/stops/407212", "https://data.delijn.be/stops/407213"], ["https://data.delijn.be/stops/106375", "https://data.delijn.be/stops/106381"], ["https://data.delijn.be/stops/400700", "https://data.delijn.be/stops/400701"], ["https://data.delijn.be/stops/102549", "https://data.delijn.be/stops/405015"], ["https://data.delijn.be/stops/301449", "https://data.delijn.be/stops/306667"], ["https://data.delijn.be/stops/108617", "https://data.delijn.be/stops/305815"], ["https://data.delijn.be/stops/103538", "https://data.delijn.be/stops/109635"], ["https://data.delijn.be/stops/107906", "https://data.delijn.be/stops/108961"], ["https://data.delijn.be/stops/305755", "https://data.delijn.be/stops/308130"], ["https://data.delijn.be/stops/506045", "https://data.delijn.be/stops/507135"], ["https://data.delijn.be/stops/300195", "https://data.delijn.be/stops/300217"], ["https://data.delijn.be/stops/401550", "https://data.delijn.be/stops/404926"], ["https://data.delijn.be/stops/300463", "https://data.delijn.be/stops/300473"], ["https://data.delijn.be/stops/201314", "https://data.delijn.be/stops/218936"], ["https://data.delijn.be/stops/304026", "https://data.delijn.be/stops/308604"], ["https://data.delijn.be/stops/200463", "https://data.delijn.be/stops/201462"], ["https://data.delijn.be/stops/103234", "https://data.delijn.be/stops/107687"], ["https://data.delijn.be/stops/503347", "https://data.delijn.be/stops/508694"], ["https://data.delijn.be/stops/409088", "https://data.delijn.be/stops/409215"], ["https://data.delijn.be/stops/103993", "https://data.delijn.be/stops/109882"], ["https://data.delijn.be/stops/102464", "https://data.delijn.be/stops/102467"], ["https://data.delijn.be/stops/403754", "https://data.delijn.be/stops/403755"], ["https://data.delijn.be/stops/307135", "https://data.delijn.be/stops/308715"], ["https://data.delijn.be/stops/206125", "https://data.delijn.be/stops/207156"], ["https://data.delijn.be/stops/402970", "https://data.delijn.be/stops/403708"], ["https://data.delijn.be/stops/303838", "https://data.delijn.be/stops/303839"], ["https://data.delijn.be/stops/300739", "https://data.delijn.be/stops/308530"], ["https://data.delijn.be/stops/200101", "https://data.delijn.be/stops/200102"], ["https://data.delijn.be/stops/404920", "https://data.delijn.be/stops/404949"], ["https://data.delijn.be/stops/204400", "https://data.delijn.be/stops/205020"], ["https://data.delijn.be/stops/103991", "https://data.delijn.be/stops/105396"], ["https://data.delijn.be/stops/305093", "https://data.delijn.be/stops/305094"], ["https://data.delijn.be/stops/208329", "https://data.delijn.be/stops/210004"], ["https://data.delijn.be/stops/104378", "https://data.delijn.be/stops/104379"], ["https://data.delijn.be/stops/405904", "https://data.delijn.be/stops/405906"], ["https://data.delijn.be/stops/201356", "https://data.delijn.be/stops/211087"], ["https://data.delijn.be/stops/406276", "https://data.delijn.be/stops/406312"], ["https://data.delijn.be/stops/210076", "https://data.delijn.be/stops/505523"], ["https://data.delijn.be/stops/101947", "https://data.delijn.be/stops/108748"], ["https://data.delijn.be/stops/202397", "https://data.delijn.be/stops/203562"], ["https://data.delijn.be/stops/504019", "https://data.delijn.be/stops/504985"], ["https://data.delijn.be/stops/302515", "https://data.delijn.be/stops/305839"], ["https://data.delijn.be/stops/403595", "https://data.delijn.be/stops/404368"], ["https://data.delijn.be/stops/507693", "https://data.delijn.be/stops/508018"], ["https://data.delijn.be/stops/101726", "https://data.delijn.be/stops/102091"], ["https://data.delijn.be/stops/402977", "https://data.delijn.be/stops/407797"], ["https://data.delijn.be/stops/102030", "https://data.delijn.be/stops/104095"], ["https://data.delijn.be/stops/201469", "https://data.delijn.be/stops/201481"], ["https://data.delijn.be/stops/501184", "https://data.delijn.be/stops/506779"], ["https://data.delijn.be/stops/104140", "https://data.delijn.be/stops/104145"], ["https://data.delijn.be/stops/404442", "https://data.delijn.be/stops/404553"], ["https://data.delijn.be/stops/303568", "https://data.delijn.be/stops/303571"], ["https://data.delijn.be/stops/402334", "https://data.delijn.be/stops/402486"], ["https://data.delijn.be/stops/401165", "https://data.delijn.be/stops/410024"], ["https://data.delijn.be/stops/101023", "https://data.delijn.be/stops/105150"], ["https://data.delijn.be/stops/408507", "https://data.delijn.be/stops/408690"], ["https://data.delijn.be/stops/502007", "https://data.delijn.be/stops/507007"], ["https://data.delijn.be/stops/400474", "https://data.delijn.be/stops/408694"], ["https://data.delijn.be/stops/307041", "https://data.delijn.be/stops/308991"], ["https://data.delijn.be/stops/504571", "https://data.delijn.be/stops/504574"], ["https://data.delijn.be/stops/104271", "https://data.delijn.be/stops/104307"], ["https://data.delijn.be/stops/206327", "https://data.delijn.be/stops/303405"], ["https://data.delijn.be/stops/108391", "https://data.delijn.be/stops/108393"], ["https://data.delijn.be/stops/307306", "https://data.delijn.be/stops/307312"], ["https://data.delijn.be/stops/400657", "https://data.delijn.be/stops/400967"], ["https://data.delijn.be/stops/204398", "https://data.delijn.be/stops/205398"], ["https://data.delijn.be/stops/206754", "https://data.delijn.be/stops/209500"], ["https://data.delijn.be/stops/404910", "https://data.delijn.be/stops/404987"], ["https://data.delijn.be/stops/200460", "https://data.delijn.be/stops/201840"], ["https://data.delijn.be/stops/200592", "https://data.delijn.be/stops/201592"], ["https://data.delijn.be/stops/505134", "https://data.delijn.be/stops/505138"], ["https://data.delijn.be/stops/303520", "https://data.delijn.be/stops/303523"], ["https://data.delijn.be/stops/202633", "https://data.delijn.be/stops/203282"], ["https://data.delijn.be/stops/200154", "https://data.delijn.be/stops/201155"], ["https://data.delijn.be/stops/300454", "https://data.delijn.be/stops/308053"], ["https://data.delijn.be/stops/304236", "https://data.delijn.be/stops/304805"], ["https://data.delijn.be/stops/409122", "https://data.delijn.be/stops/409123"], ["https://data.delijn.be/stops/302962", "https://data.delijn.be/stops/306298"], ["https://data.delijn.be/stops/102251", "https://data.delijn.be/stops/102252"], ["https://data.delijn.be/stops/205147", "https://data.delijn.be/stops/205238"], ["https://data.delijn.be/stops/304970", "https://data.delijn.be/stops/304971"], ["https://data.delijn.be/stops/203347", "https://data.delijn.be/stops/203348"], ["https://data.delijn.be/stops/408475", "https://data.delijn.be/stops/409463"], ["https://data.delijn.be/stops/503759", "https://data.delijn.be/stops/508753"], ["https://data.delijn.be/stops/206562", "https://data.delijn.be/stops/207455"], ["https://data.delijn.be/stops/300216", "https://data.delijn.be/stops/300219"], ["https://data.delijn.be/stops/406247", "https://data.delijn.be/stops/406257"], ["https://data.delijn.be/stops/504525", "https://data.delijn.be/stops/504527"], ["https://data.delijn.be/stops/505309", "https://data.delijn.be/stops/507343"], ["https://data.delijn.be/stops/200436", "https://data.delijn.be/stops/201436"], ["https://data.delijn.be/stops/202820", "https://data.delijn.be/stops/203819"], ["https://data.delijn.be/stops/205307", "https://data.delijn.be/stops/205309"], ["https://data.delijn.be/stops/102571", "https://data.delijn.be/stops/109235"], ["https://data.delijn.be/stops/501592", "https://data.delijn.be/stops/504737"], ["https://data.delijn.be/stops/410074", "https://data.delijn.be/stops/410075"], ["https://data.delijn.be/stops/303049", "https://data.delijn.be/stops/306108"], ["https://data.delijn.be/stops/201754", "https://data.delijn.be/stops/209282"], ["https://data.delijn.be/stops/406204", "https://data.delijn.be/stops/406444"], ["https://data.delijn.be/stops/306647", "https://data.delijn.be/stops/307241"], ["https://data.delijn.be/stops/106738", "https://data.delijn.be/stops/106740"], ["https://data.delijn.be/stops/107877", "https://data.delijn.be/stops/107881"], ["https://data.delijn.be/stops/200609", "https://data.delijn.be/stops/202311"], ["https://data.delijn.be/stops/406367", "https://data.delijn.be/stops/406378"], ["https://data.delijn.be/stops/406812", "https://data.delijn.be/stops/406900"], ["https://data.delijn.be/stops/505138", "https://data.delijn.be/stops/505140"], ["https://data.delijn.be/stops/207276", "https://data.delijn.be/stops/207278"], ["https://data.delijn.be/stops/501038", "https://data.delijn.be/stops/506044"], ["https://data.delijn.be/stops/300326", "https://data.delijn.be/stops/307041"], ["https://data.delijn.be/stops/404708", "https://data.delijn.be/stops/404811"], ["https://data.delijn.be/stops/104559", "https://data.delijn.be/stops/104560"], ["https://data.delijn.be/stops/109069", "https://data.delijn.be/stops/109070"], ["https://data.delijn.be/stops/106291", "https://data.delijn.be/stops/106312"], ["https://data.delijn.be/stops/501090", "https://data.delijn.be/stops/506098"], ["https://data.delijn.be/stops/206638", "https://data.delijn.be/stops/207888"], ["https://data.delijn.be/stops/300473", "https://data.delijn.be/stops/302674"], ["https://data.delijn.be/stops/201019", "https://data.delijn.be/stops/211045"], ["https://data.delijn.be/stops/102642", "https://data.delijn.be/stops/104619"], ["https://data.delijn.be/stops/505626", "https://data.delijn.be/stops/507504"], ["https://data.delijn.be/stops/502612", "https://data.delijn.be/stops/505694"], ["https://data.delijn.be/stops/503663", "https://data.delijn.be/stops/508665"], ["https://data.delijn.be/stops/305506", "https://data.delijn.be/stops/305512"], ["https://data.delijn.be/stops/208066", "https://data.delijn.be/stops/209066"], ["https://data.delijn.be/stops/300200", "https://data.delijn.be/stops/304630"], ["https://data.delijn.be/stops/501476", "https://data.delijn.be/stops/506198"], ["https://data.delijn.be/stops/200591", "https://data.delijn.be/stops/201241"], ["https://data.delijn.be/stops/505572", "https://data.delijn.be/stops/505915"], ["https://data.delijn.be/stops/400500", "https://data.delijn.be/stops/400512"], ["https://data.delijn.be/stops/402230", "https://data.delijn.be/stops/402320"], ["https://data.delijn.be/stops/106480", "https://data.delijn.be/stops/106481"], ["https://data.delijn.be/stops/105554", "https://data.delijn.be/stops/105562"], ["https://data.delijn.be/stops/303070", "https://data.delijn.be/stops/308439"], ["https://data.delijn.be/stops/307792", "https://data.delijn.be/stops/308856"], ["https://data.delijn.be/stops/403932", "https://data.delijn.be/stops/403998"], ["https://data.delijn.be/stops/102717", "https://data.delijn.be/stops/105173"], ["https://data.delijn.be/stops/200497", "https://data.delijn.be/stops/201954"], ["https://data.delijn.be/stops/501362", "https://data.delijn.be/stops/501369"], ["https://data.delijn.be/stops/208117", "https://data.delijn.be/stops/208235"], ["https://data.delijn.be/stops/103483", "https://data.delijn.be/stops/109139"], ["https://data.delijn.be/stops/106467", "https://data.delijn.be/stops/108247"], ["https://data.delijn.be/stops/405981", "https://data.delijn.be/stops/405984"], ["https://data.delijn.be/stops/302092", "https://data.delijn.be/stops/302095"], ["https://data.delijn.be/stops/303693", "https://data.delijn.be/stops/303694"], ["https://data.delijn.be/stops/505916", "https://data.delijn.be/stops/509527"], ["https://data.delijn.be/stops/105757", "https://data.delijn.be/stops/109814"], ["https://data.delijn.be/stops/210049", "https://data.delijn.be/stops/211049"], ["https://data.delijn.be/stops/402769", "https://data.delijn.be/stops/409609"], ["https://data.delijn.be/stops/406081", "https://data.delijn.be/stops/406140"], ["https://data.delijn.be/stops/403378", "https://data.delijn.be/stops/410391"], ["https://data.delijn.be/stops/507559", "https://data.delijn.be/stops/507656"], ["https://data.delijn.be/stops/201772", "https://data.delijn.be/stops/209268"], ["https://data.delijn.be/stops/206823", "https://data.delijn.be/stops/207455"], ["https://data.delijn.be/stops/403486", "https://data.delijn.be/stops/403488"], ["https://data.delijn.be/stops/204575", "https://data.delijn.be/stops/205140"], ["https://data.delijn.be/stops/405225", "https://data.delijn.be/stops/406253"], ["https://data.delijn.be/stops/104462", "https://data.delijn.be/stops/104464"], ["https://data.delijn.be/stops/503017", "https://data.delijn.be/stops/503019"], ["https://data.delijn.be/stops/202702", "https://data.delijn.be/stops/203702"], ["https://data.delijn.be/stops/409739", "https://data.delijn.be/stops/409740"], ["https://data.delijn.be/stops/307311", "https://data.delijn.be/stops/307313"], ["https://data.delijn.be/stops/504651", "https://data.delijn.be/stops/505810"], ["https://data.delijn.be/stops/106871", "https://data.delijn.be/stops/106874"], ["https://data.delijn.be/stops/304704", "https://data.delijn.be/stops/306553"], ["https://data.delijn.be/stops/400618", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/401199", "https://data.delijn.be/stops/401200"], ["https://data.delijn.be/stops/101955", "https://data.delijn.be/stops/104135"], ["https://data.delijn.be/stops/300415", "https://data.delijn.be/stops/300416"], ["https://data.delijn.be/stops/404422", "https://data.delijn.be/stops/404427"], ["https://data.delijn.be/stops/508092", "https://data.delijn.be/stops/508547"], ["https://data.delijn.be/stops/106445", "https://data.delijn.be/stops/106446"], ["https://data.delijn.be/stops/406555", "https://data.delijn.be/stops/407566"], ["https://data.delijn.be/stops/304607", "https://data.delijn.be/stops/304625"], ["https://data.delijn.be/stops/301363", "https://data.delijn.be/stops/304527"], ["https://data.delijn.be/stops/202234", "https://data.delijn.be/stops/202236"], ["https://data.delijn.be/stops/200504", "https://data.delijn.be/stops/201453"], ["https://data.delijn.be/stops/106049", "https://data.delijn.be/stops/106051"], ["https://data.delijn.be/stops/503638", "https://data.delijn.be/stops/508638"], ["https://data.delijn.be/stops/109852", "https://data.delijn.be/stops/406859"], ["https://data.delijn.be/stops/407353", "https://data.delijn.be/stops/407481"], ["https://data.delijn.be/stops/501144", "https://data.delijn.be/stops/502512"], ["https://data.delijn.be/stops/102384", "https://data.delijn.be/stops/106314"], ["https://data.delijn.be/stops/505024", "https://data.delijn.be/stops/507007"], ["https://data.delijn.be/stops/202821", "https://data.delijn.be/stops/202913"], ["https://data.delijn.be/stops/300189", "https://data.delijn.be/stops/300631"], ["https://data.delijn.be/stops/400746", "https://data.delijn.be/stops/400747"], ["https://data.delijn.be/stops/503232", "https://data.delijn.be/stops/503256"], ["https://data.delijn.be/stops/106197", "https://data.delijn.be/stops/109274"], ["https://data.delijn.be/stops/400684", "https://data.delijn.be/stops/406606"], ["https://data.delijn.be/stops/201875", "https://data.delijn.be/stops/210008"], ["https://data.delijn.be/stops/202119", "https://data.delijn.be/stops/203638"], ["https://data.delijn.be/stops/300205", "https://data.delijn.be/stops/307131"], ["https://data.delijn.be/stops/207010", "https://data.delijn.be/stops/207520"], ["https://data.delijn.be/stops/303531", "https://data.delijn.be/stops/303573"], ["https://data.delijn.be/stops/402542", "https://data.delijn.be/stops/402558"], ["https://data.delijn.be/stops/204478", "https://data.delijn.be/stops/205241"], ["https://data.delijn.be/stops/502362", "https://data.delijn.be/stops/507356"], ["https://data.delijn.be/stops/306913", "https://data.delijn.be/stops/306914"], ["https://data.delijn.be/stops/201876", "https://data.delijn.be/stops/202657"], ["https://data.delijn.be/stops/107513", "https://data.delijn.be/stops/107519"], ["https://data.delijn.be/stops/105651", "https://data.delijn.be/stops/105652"], ["https://data.delijn.be/stops/208118", "https://data.delijn.be/stops/209118"], ["https://data.delijn.be/stops/502196", "https://data.delijn.be/stops/507939"], ["https://data.delijn.be/stops/105473", "https://data.delijn.be/stops/109935"], ["https://data.delijn.be/stops/300409", "https://data.delijn.be/stops/307490"], ["https://data.delijn.be/stops/406831", "https://data.delijn.be/stops/406944"], ["https://data.delijn.be/stops/202335", "https://data.delijn.be/stops/203335"], ["https://data.delijn.be/stops/102286", "https://data.delijn.be/stops/102736"], ["https://data.delijn.be/stops/307351", "https://data.delijn.be/stops/307430"], ["https://data.delijn.be/stops/304786", "https://data.delijn.be/stops/308787"], ["https://data.delijn.be/stops/406681", "https://data.delijn.be/stops/406706"], ["https://data.delijn.be/stops/304857", "https://data.delijn.be/stops/305504"], ["https://data.delijn.be/stops/104335", "https://data.delijn.be/stops/108370"], ["https://data.delijn.be/stops/503974", "https://data.delijn.be/stops/508974"], ["https://data.delijn.be/stops/401651", "https://data.delijn.be/stops/305949"], ["https://data.delijn.be/stops/202278", "https://data.delijn.be/stops/203662"], ["https://data.delijn.be/stops/102381", "https://data.delijn.be/stops/102382"], ["https://data.delijn.be/stops/204260", "https://data.delijn.be/stops/205463"], ["https://data.delijn.be/stops/202233", "https://data.delijn.be/stops/208890"], ["https://data.delijn.be/stops/200495", "https://data.delijn.be/stops/201495"], ["https://data.delijn.be/stops/507960", "https://data.delijn.be/stops/509816"], ["https://data.delijn.be/stops/504582", "https://data.delijn.be/stops/509581"], ["https://data.delijn.be/stops/103674", "https://data.delijn.be/stops/106217"], ["https://data.delijn.be/stops/400509", "https://data.delijn.be/stops/402637"], ["https://data.delijn.be/stops/500955", "https://data.delijn.be/stops/508282"], ["https://data.delijn.be/stops/201926", "https://data.delijn.be/stops/206401"], ["https://data.delijn.be/stops/107594", "https://data.delijn.be/stops/107598"], ["https://data.delijn.be/stops/407716", "https://data.delijn.be/stops/407729"], ["https://data.delijn.be/stops/208585", "https://data.delijn.be/stops/209585"], ["https://data.delijn.be/stops/301556", "https://data.delijn.be/stops/301560"], ["https://data.delijn.be/stops/410211", "https://data.delijn.be/stops/410248"], ["https://data.delijn.be/stops/300379", "https://data.delijn.be/stops/301946"], ["https://data.delijn.be/stops/504671", "https://data.delijn.be/stops/504794"], ["https://data.delijn.be/stops/404774", "https://data.delijn.be/stops/404789"], ["https://data.delijn.be/stops/202810", "https://data.delijn.be/stops/202867"], ["https://data.delijn.be/stops/206728", "https://data.delijn.be/stops/207130"], ["https://data.delijn.be/stops/208817", "https://data.delijn.be/stops/209070"], ["https://data.delijn.be/stops/304288", "https://data.delijn.be/stops/304301"], ["https://data.delijn.be/stops/106066", "https://data.delijn.be/stops/106067"], ["https://data.delijn.be/stops/504290", "https://data.delijn.be/stops/504291"], ["https://data.delijn.be/stops/304383", "https://data.delijn.be/stops/304401"], ["https://data.delijn.be/stops/300976", "https://data.delijn.be/stops/301003"], ["https://data.delijn.be/stops/407035", "https://data.delijn.be/stops/410033"], ["https://data.delijn.be/stops/300771", "https://data.delijn.be/stops/300772"], ["https://data.delijn.be/stops/304796", "https://data.delijn.be/stops/306687"], ["https://data.delijn.be/stops/104104", "https://data.delijn.be/stops/108295"], ["https://data.delijn.be/stops/201807", "https://data.delijn.be/stops/209327"], ["https://data.delijn.be/stops/208372", "https://data.delijn.be/stops/209407"], ["https://data.delijn.be/stops/303164", "https://data.delijn.be/stops/303575"], ["https://data.delijn.be/stops/406510", "https://data.delijn.be/stops/406515"], ["https://data.delijn.be/stops/304435", "https://data.delijn.be/stops/306063"], ["https://data.delijn.be/stops/405196", "https://data.delijn.be/stops/405197"], ["https://data.delijn.be/stops/202390", "https://data.delijn.be/stops/203390"], ["https://data.delijn.be/stops/201423", "https://data.delijn.be/stops/208496"], ["https://data.delijn.be/stops/107984", "https://data.delijn.be/stops/308536"], ["https://data.delijn.be/stops/104699", "https://data.delijn.be/stops/107357"], ["https://data.delijn.be/stops/403643", "https://data.delijn.be/stops/403644"], ["https://data.delijn.be/stops/401826", "https://data.delijn.be/stops/401831"], ["https://data.delijn.be/stops/408540", "https://data.delijn.be/stops/408543"], ["https://data.delijn.be/stops/508420", "https://data.delijn.be/stops/508431"], ["https://data.delijn.be/stops/401654", "https://data.delijn.be/stops/306327"], ["https://data.delijn.be/stops/506271", "https://data.delijn.be/stops/506783"], ["https://data.delijn.be/stops/207174", "https://data.delijn.be/stops/207520"], ["https://data.delijn.be/stops/204578", "https://data.delijn.be/stops/207273"], ["https://data.delijn.be/stops/501309", "https://data.delijn.be/stops/506546"], ["https://data.delijn.be/stops/206361", "https://data.delijn.be/stops/207711"], ["https://data.delijn.be/stops/302090", "https://data.delijn.be/stops/302277"], ["https://data.delijn.be/stops/300330", "https://data.delijn.be/stops/307041"], ["https://data.delijn.be/stops/403164", "https://data.delijn.be/stops/409571"], ["https://data.delijn.be/stops/405847", "https://data.delijn.be/stops/409727"], ["https://data.delijn.be/stops/406554", "https://data.delijn.be/stops/406698"], ["https://data.delijn.be/stops/403761", "https://data.delijn.be/stops/407232"], ["https://data.delijn.be/stops/204416", "https://data.delijn.be/stops/205772"], ["https://data.delijn.be/stops/206798", "https://data.delijn.be/stops/206799"], ["https://data.delijn.be/stops/304767", "https://data.delijn.be/stops/304768"], ["https://data.delijn.be/stops/407629", "https://data.delijn.be/stops/407633"], ["https://data.delijn.be/stops/504418", "https://data.delijn.be/stops/505785"], ["https://data.delijn.be/stops/301497", "https://data.delijn.be/stops/308071"], ["https://data.delijn.be/stops/400110", "https://data.delijn.be/stops/400111"], ["https://data.delijn.be/stops/408657", "https://data.delijn.be/stops/408662"], ["https://data.delijn.be/stops/505419", "https://data.delijn.be/stops/507170"], ["https://data.delijn.be/stops/202960", "https://data.delijn.be/stops/203957"], ["https://data.delijn.be/stops/505081", "https://data.delijn.be/stops/508326"], ["https://data.delijn.be/stops/101302", "https://data.delijn.be/stops/107455"], ["https://data.delijn.be/stops/502812", "https://data.delijn.be/stops/507490"], ["https://data.delijn.be/stops/301020", "https://data.delijn.be/stops/305915"], ["https://data.delijn.be/stops/200836", "https://data.delijn.be/stops/203302"], ["https://data.delijn.be/stops/403028", "https://data.delijn.be/stops/403030"], ["https://data.delijn.be/stops/205652", "https://data.delijn.be/stops/205668"], ["https://data.delijn.be/stops/503229", "https://data.delijn.be/stops/503786"], ["https://data.delijn.be/stops/209561", "https://data.delijn.be/stops/209846"], ["https://data.delijn.be/stops/502205", "https://data.delijn.be/stops/507200"], ["https://data.delijn.be/stops/108049", "https://data.delijn.be/stops/108278"], ["https://data.delijn.be/stops/206148", "https://data.delijn.be/stops/207149"], ["https://data.delijn.be/stops/103532", "https://data.delijn.be/stops/106269"], ["https://data.delijn.be/stops/202809", "https://data.delijn.be/stops/208651"], ["https://data.delijn.be/stops/503701", "https://data.delijn.be/stops/503704"], ["https://data.delijn.be/stops/509365", "https://data.delijn.be/stops/509366"], ["https://data.delijn.be/stops/303672", "https://data.delijn.be/stops/307137"], ["https://data.delijn.be/stops/201776", "https://data.delijn.be/stops/208295"], ["https://data.delijn.be/stops/303179", "https://data.delijn.be/stops/307073"], ["https://data.delijn.be/stops/205983", "https://data.delijn.be/stops/208811"], ["https://data.delijn.be/stops/405153", "https://data.delijn.be/stops/408369"], ["https://data.delijn.be/stops/201626", "https://data.delijn.be/stops/218003"], ["https://data.delijn.be/stops/504691", "https://data.delijn.be/stops/509215"], ["https://data.delijn.be/stops/308241", "https://data.delijn.be/stops/308249"], ["https://data.delijn.be/stops/206698", "https://data.delijn.be/stops/207697"], ["https://data.delijn.be/stops/409191", "https://data.delijn.be/stops/410259"], ["https://data.delijn.be/stops/501035", "https://data.delijn.be/stops/506023"], ["https://data.delijn.be/stops/502061", "https://data.delijn.be/stops/502068"], ["https://data.delijn.be/stops/108821", "https://data.delijn.be/stops/108823"], ["https://data.delijn.be/stops/202381", "https://data.delijn.be/stops/202443"], ["https://data.delijn.be/stops/107624", "https://data.delijn.be/stops/108539"], ["https://data.delijn.be/stops/204286", "https://data.delijn.be/stops/205287"], ["https://data.delijn.be/stops/408251", "https://data.delijn.be/stops/408264"], ["https://data.delijn.be/stops/109157", "https://data.delijn.be/stops/109158"], ["https://data.delijn.be/stops/209195", "https://data.delijn.be/stops/209387"], ["https://data.delijn.be/stops/305190", "https://data.delijn.be/stops/308681"], ["https://data.delijn.be/stops/303349", "https://data.delijn.be/stops/303390"], ["https://data.delijn.be/stops/200818", "https://data.delijn.be/stops/202303"], ["https://data.delijn.be/stops/206389", "https://data.delijn.be/stops/207541"], ["https://data.delijn.be/stops/503522", "https://data.delijn.be/stops/504686"], ["https://data.delijn.be/stops/403864", "https://data.delijn.be/stops/403866"], ["https://data.delijn.be/stops/202970", "https://data.delijn.be/stops/203969"], ["https://data.delijn.be/stops/503916", "https://data.delijn.be/stops/505255"], ["https://data.delijn.be/stops/405361", "https://data.delijn.be/stops/302838"], ["https://data.delijn.be/stops/204120", "https://data.delijn.be/stops/204666"], ["https://data.delijn.be/stops/404925", "https://data.delijn.be/stops/408583"], ["https://data.delijn.be/stops/301057", "https://data.delijn.be/stops/301059"], ["https://data.delijn.be/stops/503053", "https://data.delijn.be/stops/503432"], ["https://data.delijn.be/stops/400378", "https://data.delijn.be/stops/406785"], ["https://data.delijn.be/stops/504831", "https://data.delijn.be/stops/505642"], ["https://data.delijn.be/stops/107497", "https://data.delijn.be/stops/107523"], ["https://data.delijn.be/stops/300135", "https://data.delijn.be/stops/300138"], ["https://data.delijn.be/stops/204139", "https://data.delijn.be/stops/205147"], ["https://data.delijn.be/stops/106995", "https://data.delijn.be/stops/106996"], ["https://data.delijn.be/stops/206916", "https://data.delijn.be/stops/207352"], ["https://data.delijn.be/stops/400691", "https://data.delijn.be/stops/409562"], ["https://data.delijn.be/stops/402156", "https://data.delijn.be/stops/409372"], ["https://data.delijn.be/stops/203874", "https://data.delijn.be/stops/203875"], ["https://data.delijn.be/stops/101643", "https://data.delijn.be/stops/105239"], ["https://data.delijn.be/stops/407029", "https://data.delijn.be/stops/408429"], ["https://data.delijn.be/stops/504590", "https://data.delijn.be/stops/505303"], ["https://data.delijn.be/stops/404866", "https://data.delijn.be/stops/404963"], ["https://data.delijn.be/stops/101188", "https://data.delijn.be/stops/208900"], ["https://data.delijn.be/stops/202395", "https://data.delijn.be/stops/203436"], ["https://data.delijn.be/stops/206502", "https://data.delijn.be/stops/207502"], ["https://data.delijn.be/stops/207693", "https://data.delijn.be/stops/308567"], ["https://data.delijn.be/stops/206023", "https://data.delijn.be/stops/207903"], ["https://data.delijn.be/stops/404440", "https://data.delijn.be/stops/404442"], ["https://data.delijn.be/stops/406086", "https://data.delijn.be/stops/406091"], ["https://data.delijn.be/stops/409502", "https://data.delijn.be/stops/409504"], ["https://data.delijn.be/stops/402178", "https://data.delijn.be/stops/402179"], ["https://data.delijn.be/stops/400516", "https://data.delijn.be/stops/404051"], ["https://data.delijn.be/stops/208547", "https://data.delijn.be/stops/208556"], ["https://data.delijn.be/stops/503324", "https://data.delijn.be/stops/508324"], ["https://data.delijn.be/stops/501196", "https://data.delijn.be/stops/506190"], ["https://data.delijn.be/stops/301374", "https://data.delijn.be/stops/301379"], ["https://data.delijn.be/stops/403308", "https://data.delijn.be/stops/403535"], ["https://data.delijn.be/stops/409672", "https://data.delijn.be/stops/409674"], ["https://data.delijn.be/stops/301555", "https://data.delijn.be/stops/301563"], ["https://data.delijn.be/stops/201926", "https://data.delijn.be/stops/206247"], ["https://data.delijn.be/stops/506441", "https://data.delijn.be/stops/590334"], ["https://data.delijn.be/stops/206331", "https://data.delijn.be/stops/207732"], ["https://data.delijn.be/stops/105194", "https://data.delijn.be/stops/105196"], ["https://data.delijn.be/stops/400529", "https://data.delijn.be/stops/410005"], ["https://data.delijn.be/stops/508388", "https://data.delijn.be/stops/508405"], ["https://data.delijn.be/stops/403370", "https://data.delijn.be/stops/403373"], ["https://data.delijn.be/stops/104047", "https://data.delijn.be/stops/108400"], ["https://data.delijn.be/stops/400728", "https://data.delijn.be/stops/400732"], ["https://data.delijn.be/stops/202393", "https://data.delijn.be/stops/203393"], ["https://data.delijn.be/stops/202936", "https://data.delijn.be/stops/202937"], ["https://data.delijn.be/stops/106744", "https://data.delijn.be/stops/106745"], ["https://data.delijn.be/stops/300452", "https://data.delijn.be/stops/300461"], ["https://data.delijn.be/stops/101054", "https://data.delijn.be/stops/104080"], ["https://data.delijn.be/stops/106751", "https://data.delijn.be/stops/109700"], ["https://data.delijn.be/stops/505264", "https://data.delijn.be/stops/508594"], ["https://data.delijn.be/stops/407068", "https://data.delijn.be/stops/407069"], ["https://data.delijn.be/stops/201913", "https://data.delijn.be/stops/203468"], ["https://data.delijn.be/stops/104139", "https://data.delijn.be/stops/108104"], ["https://data.delijn.be/stops/201687", "https://data.delijn.be/stops/208261"], ["https://data.delijn.be/stops/406066", "https://data.delijn.be/stops/406067"], ["https://data.delijn.be/stops/204501", "https://data.delijn.be/stops/204547"], ["https://data.delijn.be/stops/208524", "https://data.delijn.be/stops/219017"], ["https://data.delijn.be/stops/501082", "https://data.delijn.be/stops/506082"], ["https://data.delijn.be/stops/107399", "https://data.delijn.be/stops/107401"], ["https://data.delijn.be/stops/201064", "https://data.delijn.be/stops/203928"], ["https://data.delijn.be/stops/403884", "https://data.delijn.be/stops/403890"], ["https://data.delijn.be/stops/402123", "https://data.delijn.be/stops/402127"], ["https://data.delijn.be/stops/407947", "https://data.delijn.be/stops/408139"], ["https://data.delijn.be/stops/405052", "https://data.delijn.be/stops/406548"], ["https://data.delijn.be/stops/302522", "https://data.delijn.be/stops/303715"], ["https://data.delijn.be/stops/102473", "https://data.delijn.be/stops/102474"], ["https://data.delijn.be/stops/300047", "https://data.delijn.be/stops/306790"], ["https://data.delijn.be/stops/307270", "https://data.delijn.be/stops/307272"], ["https://data.delijn.be/stops/302646", "https://data.delijn.be/stops/302659"], ["https://data.delijn.be/stops/400429", "https://data.delijn.be/stops/407517"], ["https://data.delijn.be/stops/104337", "https://data.delijn.be/stops/105911"], ["https://data.delijn.be/stops/501331", "https://data.delijn.be/stops/506330"], ["https://data.delijn.be/stops/504852", "https://data.delijn.be/stops/505242"], ["https://data.delijn.be/stops/400312", "https://data.delijn.be/stops/400432"], ["https://data.delijn.be/stops/206958", "https://data.delijn.be/stops/308566"], ["https://data.delijn.be/stops/202774", "https://data.delijn.be/stops/203775"], ["https://data.delijn.be/stops/101030", "https://data.delijn.be/stops/101210"], ["https://data.delijn.be/stops/408952", "https://data.delijn.be/stops/408991"], ["https://data.delijn.be/stops/307569", "https://data.delijn.be/stops/307764"], ["https://data.delijn.be/stops/304536", "https://data.delijn.be/stops/306208"], ["https://data.delijn.be/stops/202042", "https://data.delijn.be/stops/204621"], ["https://data.delijn.be/stops/102198", "https://data.delijn.be/stops/105263"], ["https://data.delijn.be/stops/305513", "https://data.delijn.be/stops/307896"], ["https://data.delijn.be/stops/505047", "https://data.delijn.be/stops/506208"], ["https://data.delijn.be/stops/105168", "https://data.delijn.be/stops/109522"], ["https://data.delijn.be/stops/305658", "https://data.delijn.be/stops/305740"], ["https://data.delijn.be/stops/201746", "https://data.delijn.be/stops/219027"], ["https://data.delijn.be/stops/106872", "https://data.delijn.be/stops/106874"], ["https://data.delijn.be/stops/302934", "https://data.delijn.be/stops/303140"], ["https://data.delijn.be/stops/203832", "https://data.delijn.be/stops/218025"], ["https://data.delijn.be/stops/405153", "https://data.delijn.be/stops/405212"], ["https://data.delijn.be/stops/501356", "https://data.delijn.be/stops/506501"], ["https://data.delijn.be/stops/201928", "https://data.delijn.be/stops/202958"], ["https://data.delijn.be/stops/200952", "https://data.delijn.be/stops/203250"], ["https://data.delijn.be/stops/108936", "https://data.delijn.be/stops/108938"], ["https://data.delijn.be/stops/208277", "https://data.delijn.be/stops/208281"], ["https://data.delijn.be/stops/407159", "https://data.delijn.be/stops/407178"], ["https://data.delijn.be/stops/404214", "https://data.delijn.be/stops/404244"], ["https://data.delijn.be/stops/101988", "https://data.delijn.be/stops/103749"], ["https://data.delijn.be/stops/304419", "https://data.delijn.be/stops/307397"], ["https://data.delijn.be/stops/305337", "https://data.delijn.be/stops/305341"], ["https://data.delijn.be/stops/102059", "https://data.delijn.be/stops/109532"], ["https://data.delijn.be/stops/400613", "https://data.delijn.be/stops/404293"], ["https://data.delijn.be/stops/201396", "https://data.delijn.be/stops/208970"], ["https://data.delijn.be/stops/206692", "https://data.delijn.be/stops/206693"], ["https://data.delijn.be/stops/305834", "https://data.delijn.be/stops/305835"], ["https://data.delijn.be/stops/206599", "https://data.delijn.be/stops/207513"], ["https://data.delijn.be/stops/308466", "https://data.delijn.be/stops/308689"], ["https://data.delijn.be/stops/206704", "https://data.delijn.be/stops/207608"], ["https://data.delijn.be/stops/303722", "https://data.delijn.be/stops/303788"], ["https://data.delijn.be/stops/300482", "https://data.delijn.be/stops/302072"], ["https://data.delijn.be/stops/204552", "https://data.delijn.be/stops/204619"], ["https://data.delijn.be/stops/302471", "https://data.delijn.be/stops/302487"], ["https://data.delijn.be/stops/504473", "https://data.delijn.be/stops/504483"], ["https://data.delijn.be/stops/209295", "https://data.delijn.be/stops/209382"], ["https://data.delijn.be/stops/504332", "https://data.delijn.be/stops/504338"], ["https://data.delijn.be/stops/206830", "https://data.delijn.be/stops/207830"], ["https://data.delijn.be/stops/201120", "https://data.delijn.be/stops/201122"], ["https://data.delijn.be/stops/205033", "https://data.delijn.be/stops/205034"], ["https://data.delijn.be/stops/206874", "https://data.delijn.be/stops/206900"], ["https://data.delijn.be/stops/505947", "https://data.delijn.be/stops/508308"], ["https://data.delijn.be/stops/108941", "https://data.delijn.be/stops/108948"], ["https://data.delijn.be/stops/305227", "https://data.delijn.be/stops/305296"], ["https://data.delijn.be/stops/408147", "https://data.delijn.be/stops/408154"], ["https://data.delijn.be/stops/105732", "https://data.delijn.be/stops/109839"], ["https://data.delijn.be/stops/501258", "https://data.delijn.be/stops/501259"], ["https://data.delijn.be/stops/302370", "https://data.delijn.be/stops/302750"], ["https://data.delijn.be/stops/407150", "https://data.delijn.be/stops/409516"], ["https://data.delijn.be/stops/200400", "https://data.delijn.be/stops/201400"], ["https://data.delijn.be/stops/304815", "https://data.delijn.be/stops/304839"], ["https://data.delijn.be/stops/201951", "https://data.delijn.be/stops/203467"], ["https://data.delijn.be/stops/302242", "https://data.delijn.be/stops/302243"], ["https://data.delijn.be/stops/403407", "https://data.delijn.be/stops/405126"], ["https://data.delijn.be/stops/303033", "https://data.delijn.be/stops/303034"], ["https://data.delijn.be/stops/200932", "https://data.delijn.be/stops/202257"], ["https://data.delijn.be/stops/200945", "https://data.delijn.be/stops/202696"], ["https://data.delijn.be/stops/303205", "https://data.delijn.be/stops/303206"], ["https://data.delijn.be/stops/208073", "https://data.delijn.be/stops/208074"], ["https://data.delijn.be/stops/501190", "https://data.delijn.be/stops/501197"], ["https://data.delijn.be/stops/105274", "https://data.delijn.be/stops/105294"], ["https://data.delijn.be/stops/202927", "https://data.delijn.be/stops/208724"], ["https://data.delijn.be/stops/401856", "https://data.delijn.be/stops/406237"], ["https://data.delijn.be/stops/209776", "https://data.delijn.be/stops/219030"], ["https://data.delijn.be/stops/202381", "https://data.delijn.be/stops/203442"], ["https://data.delijn.be/stops/404022", "https://data.delijn.be/stops/407066"], ["https://data.delijn.be/stops/206262", "https://data.delijn.be/stops/207005"], ["https://data.delijn.be/stops/109264", "https://data.delijn.be/stops/109267"], ["https://data.delijn.be/stops/307871", "https://data.delijn.be/stops/308713"], ["https://data.delijn.be/stops/504341", "https://data.delijn.be/stops/509332"], ["https://data.delijn.be/stops/305109", "https://data.delijn.be/stops/305115"], ["https://data.delijn.be/stops/407813", "https://data.delijn.be/stops/408037"], ["https://data.delijn.be/stops/504645", "https://data.delijn.be/stops/509644"], ["https://data.delijn.be/stops/503730", "https://data.delijn.be/stops/507932"], ["https://data.delijn.be/stops/101273", "https://data.delijn.be/stops/102925"], ["https://data.delijn.be/stops/300485", "https://data.delijn.be/stops/300486"], ["https://data.delijn.be/stops/201758", "https://data.delijn.be/stops/219011"], ["https://data.delijn.be/stops/206450", "https://data.delijn.be/stops/207452"], ["https://data.delijn.be/stops/404237", "https://data.delijn.be/stops/404247"], ["https://data.delijn.be/stops/504414", "https://data.delijn.be/stops/509414"], ["https://data.delijn.be/stops/200881", "https://data.delijn.be/stops/208964"], ["https://data.delijn.be/stops/502176", "https://data.delijn.be/stops/509975"], ["https://data.delijn.be/stops/101482", "https://data.delijn.be/stops/108213"], ["https://data.delijn.be/stops/404575", "https://data.delijn.be/stops/407354"], ["https://data.delijn.be/stops/101904", "https://data.delijn.be/stops/105457"], ["https://data.delijn.be/stops/300758", "https://data.delijn.be/stops/303223"], ["https://data.delijn.be/stops/307634", "https://data.delijn.be/stops/307637"], ["https://data.delijn.be/stops/103855", "https://data.delijn.be/stops/105950"], ["https://data.delijn.be/stops/301621", "https://data.delijn.be/stops/307675"], ["https://data.delijn.be/stops/405038", "https://data.delijn.be/stops/405063"], ["https://data.delijn.be/stops/204771", "https://data.delijn.be/stops/205590"], ["https://data.delijn.be/stops/101748", "https://data.delijn.be/stops/103909"], ["https://data.delijn.be/stops/303749", "https://data.delijn.be/stops/308658"], ["https://data.delijn.be/stops/400455", "https://data.delijn.be/stops/400496"], ["https://data.delijn.be/stops/300372", "https://data.delijn.be/stops/307723"], ["https://data.delijn.be/stops/101595", "https://data.delijn.be/stops/101600"], ["https://data.delijn.be/stops/300102", "https://data.delijn.be/stops/306854"], ["https://data.delijn.be/stops/300011", "https://data.delijn.be/stops/301478"], ["https://data.delijn.be/stops/504006", "https://data.delijn.be/stops/504634"], ["https://data.delijn.be/stops/503047", "https://data.delijn.be/stops/503510"], ["https://data.delijn.be/stops/101533", "https://data.delijn.be/stops/109116"], ["https://data.delijn.be/stops/301367", "https://data.delijn.be/stops/301368"], ["https://data.delijn.be/stops/405385", "https://data.delijn.be/stops/405386"], ["https://data.delijn.be/stops/304230", "https://data.delijn.be/stops/304231"], ["https://data.delijn.be/stops/103295", "https://data.delijn.be/stops/107850"], ["https://data.delijn.be/stops/503242", "https://data.delijn.be/stops/503391"], ["https://data.delijn.be/stops/105783", "https://data.delijn.be/stops/105784"], ["https://data.delijn.be/stops/503342", "https://data.delijn.be/stops/508336"], ["https://data.delijn.be/stops/301648", "https://data.delijn.be/stops/301650"], ["https://data.delijn.be/stops/501315", "https://data.delijn.be/stops/506315"], ["https://data.delijn.be/stops/301249", "https://data.delijn.be/stops/307390"], ["https://data.delijn.be/stops/200942", "https://data.delijn.be/stops/203688"], ["https://data.delijn.be/stops/106598", "https://data.delijn.be/stops/106600"], ["https://data.delijn.be/stops/301396", "https://data.delijn.be/stops/306148"], ["https://data.delijn.be/stops/106225", "https://data.delijn.be/stops/106328"], ["https://data.delijn.be/stops/502082", "https://data.delijn.be/stops/502816"], ["https://data.delijn.be/stops/300077", "https://data.delijn.be/stops/307343"], ["https://data.delijn.be/stops/509105", "https://data.delijn.be/stops/509544"], ["https://data.delijn.be/stops/101146", "https://data.delijn.be/stops/106859"], ["https://data.delijn.be/stops/505291", "https://data.delijn.be/stops/505429"], ["https://data.delijn.be/stops/407183", "https://data.delijn.be/stops/407184"], ["https://data.delijn.be/stops/501420", "https://data.delijn.be/stops/501421"], ["https://data.delijn.be/stops/106050", "https://data.delijn.be/stops/108055"], ["https://data.delijn.be/stops/402000", "https://data.delijn.be/stops/410292"], ["https://data.delijn.be/stops/108564", "https://data.delijn.be/stops/109093"], ["https://data.delijn.be/stops/301453", "https://data.delijn.be/stops/307167"], ["https://data.delijn.be/stops/506089", "https://data.delijn.be/stops/506098"], ["https://data.delijn.be/stops/503744", "https://data.delijn.be/stops/509866"], ["https://data.delijn.be/stops/507040", "https://data.delijn.be/stops/507616"], ["https://data.delijn.be/stops/306709", "https://data.delijn.be/stops/307983"], ["https://data.delijn.be/stops/402224", "https://data.delijn.be/stops/402237"], ["https://data.delijn.be/stops/305187", "https://data.delijn.be/stops/305217"], ["https://data.delijn.be/stops/101953", "https://data.delijn.be/stops/109556"], ["https://data.delijn.be/stops/102293", "https://data.delijn.be/stops/104652"], ["https://data.delijn.be/stops/407160", "https://data.delijn.be/stops/407161"], ["https://data.delijn.be/stops/101517", "https://data.delijn.be/stops/109021"], ["https://data.delijn.be/stops/208601", "https://data.delijn.be/stops/209601"], ["https://data.delijn.be/stops/105269", "https://data.delijn.be/stops/105273"], ["https://data.delijn.be/stops/200839", "https://data.delijn.be/stops/211005"], ["https://data.delijn.be/stops/209788", "https://data.delijn.be/stops/209798"], ["https://data.delijn.be/stops/407840", "https://data.delijn.be/stops/407841"], ["https://data.delijn.be/stops/400072", "https://data.delijn.be/stops/400162"], ["https://data.delijn.be/stops/208016", "https://data.delijn.be/stops/208026"], ["https://data.delijn.be/stops/503408", "https://data.delijn.be/stops/508212"], ["https://data.delijn.be/stops/102624", "https://data.delijn.be/stops/108219"], ["https://data.delijn.be/stops/206817", "https://data.delijn.be/stops/207314"], ["https://data.delijn.be/stops/505934", "https://data.delijn.be/stops/508303"], ["https://data.delijn.be/stops/208677", "https://data.delijn.be/stops/208682"], ["https://data.delijn.be/stops/102136", "https://data.delijn.be/stops/103476"], ["https://data.delijn.be/stops/101699", "https://data.delijn.be/stops/108420"], ["https://data.delijn.be/stops/507352", "https://data.delijn.be/stops/509968"], ["https://data.delijn.be/stops/305409", "https://data.delijn.be/stops/305419"], ["https://data.delijn.be/stops/108423", "https://data.delijn.be/stops/108424"], ["https://data.delijn.be/stops/401356", "https://data.delijn.be/stops/406071"], ["https://data.delijn.be/stops/504985", "https://data.delijn.be/stops/509008"], ["https://data.delijn.be/stops/303468", "https://data.delijn.be/stops/304895"], ["https://data.delijn.be/stops/107488", "https://data.delijn.be/stops/305799"], ["https://data.delijn.be/stops/103107", "https://data.delijn.be/stops/106568"], ["https://data.delijn.be/stops/501004", "https://data.delijn.be/stops/501174"], ["https://data.delijn.be/stops/102858", "https://data.delijn.be/stops/102859"], ["https://data.delijn.be/stops/202167", "https://data.delijn.be/stops/203119"], ["https://data.delijn.be/stops/404911", "https://data.delijn.be/stops/404987"], ["https://data.delijn.be/stops/201253", "https://data.delijn.be/stops/203557"], ["https://data.delijn.be/stops/408823", "https://data.delijn.be/stops/408828"], ["https://data.delijn.be/stops/200924", "https://data.delijn.be/stops/200946"], ["https://data.delijn.be/stops/202367", "https://data.delijn.be/stops/203998"], ["https://data.delijn.be/stops/503112", "https://data.delijn.be/stops/508112"], ["https://data.delijn.be/stops/103170", "https://data.delijn.be/stops/103186"], ["https://data.delijn.be/stops/503914", "https://data.delijn.be/stops/508998"], ["https://data.delijn.be/stops/103710", "https://data.delijn.be/stops/105405"], ["https://data.delijn.be/stops/103061", "https://data.delijn.be/stops/303877"], ["https://data.delijn.be/stops/401088", "https://data.delijn.be/stops/401089"], ["https://data.delijn.be/stops/308213", "https://data.delijn.be/stops/308237"], ["https://data.delijn.be/stops/102611", "https://data.delijn.be/stops/102671"], ["https://data.delijn.be/stops/300015", "https://data.delijn.be/stops/304564"], ["https://data.delijn.be/stops/501664", "https://data.delijn.be/stops/506663"], ["https://data.delijn.be/stops/201346", "https://data.delijn.be/stops/201534"], ["https://data.delijn.be/stops/503678", "https://data.delijn.be/stops/509815"], ["https://data.delijn.be/stops/101199", "https://data.delijn.be/stops/204616"], ["https://data.delijn.be/stops/109047", "https://data.delijn.be/stops/109320"], ["https://data.delijn.be/stops/303621", "https://data.delijn.be/stops/306704"], ["https://data.delijn.be/stops/206584", "https://data.delijn.be/stops/207583"], ["https://data.delijn.be/stops/507709", "https://data.delijn.be/stops/508985"], ["https://data.delijn.be/stops/204215", "https://data.delijn.be/stops/205366"], ["https://data.delijn.be/stops/505743", "https://data.delijn.be/stops/507006"], ["https://data.delijn.be/stops/502292", "https://data.delijn.be/stops/502298"], ["https://data.delijn.be/stops/504629", "https://data.delijn.be/stops/509629"], ["https://data.delijn.be/stops/201372", "https://data.delijn.be/stops/203002"], ["https://data.delijn.be/stops/208742", "https://data.delijn.be/stops/209395"], ["https://data.delijn.be/stops/104399", "https://data.delijn.be/stops/205602"], ["https://data.delijn.be/stops/300643", "https://data.delijn.be/stops/300658"], ["https://data.delijn.be/stops/404130", "https://data.delijn.be/stops/404190"], ["https://data.delijn.be/stops/304909", "https://data.delijn.be/stops/306086"], ["https://data.delijn.be/stops/103771", "https://data.delijn.be/stops/106435"], ["https://data.delijn.be/stops/302569", "https://data.delijn.be/stops/302570"], ["https://data.delijn.be/stops/200026", "https://data.delijn.be/stops/201070"], ["https://data.delijn.be/stops/202533", "https://data.delijn.be/stops/205173"], ["https://data.delijn.be/stops/401594", "https://data.delijn.be/stops/401596"], ["https://data.delijn.be/stops/302391", "https://data.delijn.be/stops/302672"], ["https://data.delijn.be/stops/108348", "https://data.delijn.be/stops/108352"], ["https://data.delijn.be/stops/301009", "https://data.delijn.be/stops/301015"], ["https://data.delijn.be/stops/405055", "https://data.delijn.be/stops/405100"], ["https://data.delijn.be/stops/200286", "https://data.delijn.be/stops/201343"], ["https://data.delijn.be/stops/502705", "https://data.delijn.be/stops/505348"], ["https://data.delijn.be/stops/300537", "https://data.delijn.be/stops/300539"], ["https://data.delijn.be/stops/305651", "https://data.delijn.be/stops/306338"], ["https://data.delijn.be/stops/206711", "https://data.delijn.be/stops/206713"], ["https://data.delijn.be/stops/504600", "https://data.delijn.be/stops/509598"], ["https://data.delijn.be/stops/305682", "https://data.delijn.be/stops/305712"], ["https://data.delijn.be/stops/204413", "https://data.delijn.be/stops/205768"], ["https://data.delijn.be/stops/400811", "https://data.delijn.be/stops/400872"], ["https://data.delijn.be/stops/305193", "https://data.delijn.be/stops/305200"], ["https://data.delijn.be/stops/404513", "https://data.delijn.be/stops/404772"], ["https://data.delijn.be/stops/101208", "https://data.delijn.be/stops/107842"], ["https://data.delijn.be/stops/304330", "https://data.delijn.be/stops/304707"], ["https://data.delijn.be/stops/109290", "https://data.delijn.be/stops/109291"], ["https://data.delijn.be/stops/300830", "https://data.delijn.be/stops/300875"], ["https://data.delijn.be/stops/103130", "https://data.delijn.be/stops/103135"], ["https://data.delijn.be/stops/401090", "https://data.delijn.be/stops/401100"], ["https://data.delijn.be/stops/200871", "https://data.delijn.be/stops/200896"], ["https://data.delijn.be/stops/406909", "https://data.delijn.be/stops/409453"], ["https://data.delijn.be/stops/508562", "https://data.delijn.be/stops/509907"], ["https://data.delijn.be/stops/200957", "https://data.delijn.be/stops/203725"], ["https://data.delijn.be/stops/304451", "https://data.delijn.be/stops/307715"], ["https://data.delijn.be/stops/408857", "https://data.delijn.be/stops/408869"], ["https://data.delijn.be/stops/508920", "https://data.delijn.be/stops/508933"], ["https://data.delijn.be/stops/304349", "https://data.delijn.be/stops/304354"], ["https://data.delijn.be/stops/207547", "https://data.delijn.be/stops/209744"], ["https://data.delijn.be/stops/505016", "https://data.delijn.be/stops/505017"], ["https://data.delijn.be/stops/303018", "https://data.delijn.be/stops/304241"], ["https://data.delijn.be/stops/209476", "https://data.delijn.be/stops/209500"], ["https://data.delijn.be/stops/104609", "https://data.delijn.be/stops/305836"], ["https://data.delijn.be/stops/204556", "https://data.delijn.be/stops/205556"], ["https://data.delijn.be/stops/403812", "https://data.delijn.be/stops/403825"], ["https://data.delijn.be/stops/408976", "https://data.delijn.be/stops/408977"], ["https://data.delijn.be/stops/107943", "https://data.delijn.be/stops/107946"], ["https://data.delijn.be/stops/200748", "https://data.delijn.be/stops/203164"], ["https://data.delijn.be/stops/303129", "https://data.delijn.be/stops/303130"], ["https://data.delijn.be/stops/204474", "https://data.delijn.be/stops/205467"], ["https://data.delijn.be/stops/302855", "https://data.delijn.be/stops/308824"], ["https://data.delijn.be/stops/101873", "https://data.delijn.be/stops/106873"], ["https://data.delijn.be/stops/208652", "https://data.delijn.be/stops/209651"], ["https://data.delijn.be/stops/407753", "https://data.delijn.be/stops/407756"], ["https://data.delijn.be/stops/401266", "https://data.delijn.be/stops/401298"], ["https://data.delijn.be/stops/504056", "https://data.delijn.be/stops/504149"], ["https://data.delijn.be/stops/502492", "https://data.delijn.be/stops/505591"], ["https://data.delijn.be/stops/206549", "https://data.delijn.be/stops/209756"], ["https://data.delijn.be/stops/502204", "https://data.delijn.be/stops/508705"], ["https://data.delijn.be/stops/107323", "https://data.delijn.be/stops/107326"], ["https://data.delijn.be/stops/102206", "https://data.delijn.be/stops/102669"], ["https://data.delijn.be/stops/402364", "https://data.delijn.be/stops/402365"], ["https://data.delijn.be/stops/305646", "https://data.delijn.be/stops/305647"], ["https://data.delijn.be/stops/201079", "https://data.delijn.be/stops/201093"], ["https://data.delijn.be/stops/504511", "https://data.delijn.be/stops/509511"], ["https://data.delijn.be/stops/208117", "https://data.delijn.be/stops/209117"], ["https://data.delijn.be/stops/206197", "https://data.delijn.be/stops/207197"], ["https://data.delijn.be/stops/306832", "https://data.delijn.be/stops/307849"], ["https://data.delijn.be/stops/305538", "https://data.delijn.be/stops/307824"], ["https://data.delijn.be/stops/502803", "https://data.delijn.be/stops/505340"], ["https://data.delijn.be/stops/203262", "https://data.delijn.be/stops/208852"], ["https://data.delijn.be/stops/401355", "https://data.delijn.be/stops/406071"], ["https://data.delijn.be/stops/503276", "https://data.delijn.be/stops/508276"], ["https://data.delijn.be/stops/301129", "https://data.delijn.be/stops/301130"], ["https://data.delijn.be/stops/500927", "https://data.delijn.be/stops/505414"], ["https://data.delijn.be/stops/503581", "https://data.delijn.be/stops/503874"], ["https://data.delijn.be/stops/405154", "https://data.delijn.be/stops/405212"], ["https://data.delijn.be/stops/202462", "https://data.delijn.be/stops/202463"], ["https://data.delijn.be/stops/206887", "https://data.delijn.be/stops/207912"], ["https://data.delijn.be/stops/203020", "https://data.delijn.be/stops/208889"], ["https://data.delijn.be/stops/407542", "https://data.delijn.be/stops/407544"], ["https://data.delijn.be/stops/204007", "https://data.delijn.be/stops/205692"], ["https://data.delijn.be/stops/208441", "https://data.delijn.be/stops/208684"], ["https://data.delijn.be/stops/202580", "https://data.delijn.be/stops/203581"], ["https://data.delijn.be/stops/402984", "https://data.delijn.be/stops/405595"], ["https://data.delijn.be/stops/505789", "https://data.delijn.be/stops/508063"], ["https://data.delijn.be/stops/102862", "https://data.delijn.be/stops/103645"], ["https://data.delijn.be/stops/206280", "https://data.delijn.be/stops/207281"], ["https://data.delijn.be/stops/101770", "https://data.delijn.be/stops/103282"], ["https://data.delijn.be/stops/501407", "https://data.delijn.be/stops/506408"], ["https://data.delijn.be/stops/502470", "https://data.delijn.be/stops/502758"], ["https://data.delijn.be/stops/204740", "https://data.delijn.be/stops/204742"], ["https://data.delijn.be/stops/107834", "https://data.delijn.be/stops/107836"], ["https://data.delijn.be/stops/503159", "https://data.delijn.be/stops/508126"], ["https://data.delijn.be/stops/101345", "https://data.delijn.be/stops/105365"], ["https://data.delijn.be/stops/403310", "https://data.delijn.be/stops/403313"], ["https://data.delijn.be/stops/300121", "https://data.delijn.be/stops/300133"], ["https://data.delijn.be/stops/105229", "https://data.delijn.be/stops/108000"], ["https://data.delijn.be/stops/304392", "https://data.delijn.be/stops/308059"], ["https://data.delijn.be/stops/101835", "https://data.delijn.be/stops/104722"], ["https://data.delijn.be/stops/204518", "https://data.delijn.be/stops/204519"], ["https://data.delijn.be/stops/302952", "https://data.delijn.be/stops/304708"], ["https://data.delijn.be/stops/201774", "https://data.delijn.be/stops/201814"], ["https://data.delijn.be/stops/506364", "https://data.delijn.be/stops/506442"], ["https://data.delijn.be/stops/301722", "https://data.delijn.be/stops/308878"], ["https://data.delijn.be/stops/107316", "https://data.delijn.be/stops/107317"], ["https://data.delijn.be/stops/403376", "https://data.delijn.be/stops/403377"], ["https://data.delijn.be/stops/500947", "https://data.delijn.be/stops/509741"], ["https://data.delijn.be/stops/105660", "https://data.delijn.be/stops/105665"], ["https://data.delijn.be/stops/504068", "https://data.delijn.be/stops/509517"], ["https://data.delijn.be/stops/301684", "https://data.delijn.be/stops/302761"], ["https://data.delijn.be/stops/307142", "https://data.delijn.be/stops/307461"], ["https://data.delijn.be/stops/107567", "https://data.delijn.be/stops/107569"], ["https://data.delijn.be/stops/208133", "https://data.delijn.be/stops/208200"], ["https://data.delijn.be/stops/107085", "https://data.delijn.be/stops/107350"], ["https://data.delijn.be/stops/107636", "https://data.delijn.be/stops/108839"], ["https://data.delijn.be/stops/204566", "https://data.delijn.be/stops/303536"], ["https://data.delijn.be/stops/502291", "https://data.delijn.be/stops/507291"], ["https://data.delijn.be/stops/208358", "https://data.delijn.be/stops/209358"], ["https://data.delijn.be/stops/301605", "https://data.delijn.be/stops/301616"], ["https://data.delijn.be/stops/400981", "https://data.delijn.be/stops/406578"], ["https://data.delijn.be/stops/410351", "https://data.delijn.be/stops/410352"], ["https://data.delijn.be/stops/206321", "https://data.delijn.be/stops/206505"], ["https://data.delijn.be/stops/304430", "https://data.delijn.be/stops/307371"], ["https://data.delijn.be/stops/406195", "https://data.delijn.be/stops/409529"], ["https://data.delijn.be/stops/303385", "https://data.delijn.be/stops/308892"], ["https://data.delijn.be/stops/103254", "https://data.delijn.be/stops/105440"], ["https://data.delijn.be/stops/208465", "https://data.delijn.be/stops/209683"], ["https://data.delijn.be/stops/204040", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/102014", "https://data.delijn.be/stops/105987"], ["https://data.delijn.be/stops/503554", "https://data.delijn.be/stops/508128"], ["https://data.delijn.be/stops/101777", "https://data.delijn.be/stops/107588"], ["https://data.delijn.be/stops/204042", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/403803", "https://data.delijn.be/stops/403805"], ["https://data.delijn.be/stops/307937", "https://data.delijn.be/stops/307939"], ["https://data.delijn.be/stops/208118", "https://data.delijn.be/stops/208236"], ["https://data.delijn.be/stops/101418", "https://data.delijn.be/stops/108716"], ["https://data.delijn.be/stops/503799", "https://data.delijn.be/stops/508106"], ["https://data.delijn.be/stops/405056", "https://data.delijn.be/stops/405073"], ["https://data.delijn.be/stops/109856", "https://data.delijn.be/stops/109931"], ["https://data.delijn.be/stops/507300", "https://data.delijn.be/stops/507601"], ["https://data.delijn.be/stops/407819", "https://data.delijn.be/stops/408004"], ["https://data.delijn.be/stops/106610", "https://data.delijn.be/stops/106612"], ["https://data.delijn.be/stops/505943", "https://data.delijn.be/stops/508224"], ["https://data.delijn.be/stops/408719", "https://data.delijn.be/stops/408721"], ["https://data.delijn.be/stops/407466", "https://data.delijn.be/stops/407522"], ["https://data.delijn.be/stops/502797", "https://data.delijn.be/stops/505700"], ["https://data.delijn.be/stops/404889", "https://data.delijn.be/stops/404901"], ["https://data.delijn.be/stops/204031", "https://data.delijn.be/stops/205247"], ["https://data.delijn.be/stops/206901", "https://data.delijn.be/stops/207901"], ["https://data.delijn.be/stops/505723", "https://data.delijn.be/stops/507287"], ["https://data.delijn.be/stops/104039", "https://data.delijn.be/stops/108512"], ["https://data.delijn.be/stops/107639", "https://data.delijn.be/stops/108081"], ["https://data.delijn.be/stops/300091", "https://data.delijn.be/stops/306844"], ["https://data.delijn.be/stops/403684", "https://data.delijn.be/stops/403685"], ["https://data.delijn.be/stops/107514", "https://data.delijn.be/stops/107516"], ["https://data.delijn.be/stops/402308", "https://data.delijn.be/stops/402309"], ["https://data.delijn.be/stops/208791", "https://data.delijn.be/stops/209781"], ["https://data.delijn.be/stops/502017", "https://data.delijn.be/stops/507797"], ["https://data.delijn.be/stops/108822", "https://data.delijn.be/stops/108826"], ["https://data.delijn.be/stops/505058", "https://data.delijn.be/stops/505333"], ["https://data.delijn.be/stops/201805", "https://data.delijn.be/stops/208268"], ["https://data.delijn.be/stops/402070", "https://data.delijn.be/stops/402338"], ["https://data.delijn.be/stops/103490", "https://data.delijn.be/stops/106213"], ["https://data.delijn.be/stops/200012", "https://data.delijn.be/stops/200392"], ["https://data.delijn.be/stops/300236", "https://data.delijn.be/stops/301374"], ["https://data.delijn.be/stops/308548", "https://data.delijn.be/stops/308550"], ["https://data.delijn.be/stops/101375", "https://data.delijn.be/stops/103790"], ["https://data.delijn.be/stops/405871", "https://data.delijn.be/stops/409423"], ["https://data.delijn.be/stops/406427", "https://data.delijn.be/stops/406453"], ["https://data.delijn.be/stops/504119", "https://data.delijn.be/stops/504721"], ["https://data.delijn.be/stops/409572", "https://data.delijn.be/stops/410082"], ["https://data.delijn.be/stops/402575", "https://data.delijn.be/stops/402654"], ["https://data.delijn.be/stops/408519", "https://data.delijn.be/stops/408733"], ["https://data.delijn.be/stops/404402", "https://data.delijn.be/stops/404417"], ["https://data.delijn.be/stops/405019", "https://data.delijn.be/stops/405036"], ["https://data.delijn.be/stops/106177", "https://data.delijn.be/stops/109372"], ["https://data.delijn.be/stops/106229", "https://data.delijn.be/stops/106231"], ["https://data.delijn.be/stops/204394", "https://data.delijn.be/stops/204395"], ["https://data.delijn.be/stops/202378", "https://data.delijn.be/stops/203378"], ["https://data.delijn.be/stops/402722", "https://data.delijn.be/stops/402728"], ["https://data.delijn.be/stops/305295", "https://data.delijn.be/stops/305888"], ["https://data.delijn.be/stops/509775", "https://data.delijn.be/stops/509777"], ["https://data.delijn.be/stops/501325", "https://data.delijn.be/stops/501346"], ["https://data.delijn.be/stops/201444", "https://data.delijn.be/stops/203132"], ["https://data.delijn.be/stops/408618", "https://data.delijn.be/stops/408619"], ["https://data.delijn.be/stops/305227", "https://data.delijn.be/stops/305908"], ["https://data.delijn.be/stops/102497", "https://data.delijn.be/stops/102502"], ["https://data.delijn.be/stops/503845", "https://data.delijn.be/stops/508845"], ["https://data.delijn.be/stops/403042", "https://data.delijn.be/stops/403045"], ["https://data.delijn.be/stops/404105", "https://data.delijn.be/stops/404115"], ["https://data.delijn.be/stops/203557", "https://data.delijn.be/stops/210024"], ["https://data.delijn.be/stops/501203", "https://data.delijn.be/stops/501238"], ["https://data.delijn.be/stops/200490", "https://data.delijn.be/stops/203453"], ["https://data.delijn.be/stops/401518", "https://data.delijn.be/stops/403880"], ["https://data.delijn.be/stops/104739", "https://data.delijn.be/stops/104749"], ["https://data.delijn.be/stops/404302", "https://data.delijn.be/stops/410083"], ["https://data.delijn.be/stops/206441", "https://data.delijn.be/stops/208466"], ["https://data.delijn.be/stops/400894", "https://data.delijn.be/stops/406589"], ["https://data.delijn.be/stops/402792", "https://data.delijn.be/stops/402797"], ["https://data.delijn.be/stops/219080", "https://data.delijn.be/stops/303292"], ["https://data.delijn.be/stops/206340", "https://data.delijn.be/stops/207712"], ["https://data.delijn.be/stops/108390", "https://data.delijn.be/stops/108392"], ["https://data.delijn.be/stops/301453", "https://data.delijn.be/stops/307912"], ["https://data.delijn.be/stops/204822", "https://data.delijn.be/stops/205504"], ["https://data.delijn.be/stops/200951", "https://data.delijn.be/stops/202076"], ["https://data.delijn.be/stops/301913", "https://data.delijn.be/stops/306252"], ["https://data.delijn.be/stops/206444", "https://data.delijn.be/stops/207443"], ["https://data.delijn.be/stops/302082", "https://data.delijn.be/stops/302864"], ["https://data.delijn.be/stops/505982", "https://data.delijn.be/stops/507204"], ["https://data.delijn.be/stops/404746", "https://data.delijn.be/stops/404749"], ["https://data.delijn.be/stops/210059", "https://data.delijn.be/stops/211059"], ["https://data.delijn.be/stops/200909", "https://data.delijn.be/stops/203052"], ["https://data.delijn.be/stops/105030", "https://data.delijn.be/stops/108645"], ["https://data.delijn.be/stops/301319", "https://data.delijn.be/stops/301324"], ["https://data.delijn.be/stops/105042", "https://data.delijn.be/stops/109759"], ["https://data.delijn.be/stops/204777", "https://data.delijn.be/stops/204778"], ["https://data.delijn.be/stops/503720", "https://data.delijn.be/stops/508732"], ["https://data.delijn.be/stops/403040", "https://data.delijn.be/stops/403497"], ["https://data.delijn.be/stops/404864", "https://data.delijn.be/stops/404896"], ["https://data.delijn.be/stops/303363", "https://data.delijn.be/stops/308850"], ["https://data.delijn.be/stops/208426", "https://data.delijn.be/stops/209431"], ["https://data.delijn.be/stops/104112", "https://data.delijn.be/stops/105445"], ["https://data.delijn.be/stops/501592", "https://data.delijn.be/stops/504511"], ["https://data.delijn.be/stops/306936", "https://data.delijn.be/stops/308132"], ["https://data.delijn.be/stops/506106", "https://data.delijn.be/stops/506389"], ["https://data.delijn.be/stops/102595", "https://data.delijn.be/stops/103615"], ["https://data.delijn.be/stops/104778", "https://data.delijn.be/stops/108151"], ["https://data.delijn.be/stops/300513", "https://data.delijn.be/stops/300538"], ["https://data.delijn.be/stops/102082", "https://data.delijn.be/stops/109977"], ["https://data.delijn.be/stops/303616", "https://data.delijn.be/stops/304563"], ["https://data.delijn.be/stops/308464", "https://data.delijn.be/stops/308689"], ["https://data.delijn.be/stops/405587", "https://data.delijn.be/stops/409431"], ["https://data.delijn.be/stops/305614", "https://data.delijn.be/stops/305615"], ["https://data.delijn.be/stops/107590", "https://data.delijn.be/stops/109055"], ["https://data.delijn.be/stops/103821", "https://data.delijn.be/stops/108090"], ["https://data.delijn.be/stops/405854", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/200513", "https://data.delijn.be/stops/200514"], ["https://data.delijn.be/stops/505067", "https://data.delijn.be/stops/505320"], ["https://data.delijn.be/stops/200880", "https://data.delijn.be/stops/208919"], ["https://data.delijn.be/stops/407750", "https://data.delijn.be/stops/407752"], ["https://data.delijn.be/stops/506262", "https://data.delijn.be/stops/506286"], ["https://data.delijn.be/stops/108292", "https://data.delijn.be/stops/108294"], ["https://data.delijn.be/stops/204086", "https://data.delijn.be/stops/205083"], ["https://data.delijn.be/stops/501181", "https://data.delijn.be/stops/506674"], ["https://data.delijn.be/stops/101070", "https://data.delijn.be/stops/103040"], ["https://data.delijn.be/stops/105937", "https://data.delijn.be/stops/105938"], ["https://data.delijn.be/stops/303758", "https://data.delijn.be/stops/303759"], ["https://data.delijn.be/stops/101617", "https://data.delijn.be/stops/106570"], ["https://data.delijn.be/stops/201594", "https://data.delijn.be/stops/201598"], ["https://data.delijn.be/stops/409705", "https://data.delijn.be/stops/409712"], ["https://data.delijn.be/stops/505123", "https://data.delijn.be/stops/505136"], ["https://data.delijn.be/stops/304493", "https://data.delijn.be/stops/304497"], ["https://data.delijn.be/stops/204749", "https://data.delijn.be/stops/205748"], ["https://data.delijn.be/stops/502030", "https://data.delijn.be/stops/502038"], ["https://data.delijn.be/stops/504336", "https://data.delijn.be/stops/505169"], ["https://data.delijn.be/stops/108726", "https://data.delijn.be/stops/108727"], ["https://data.delijn.be/stops/200713", "https://data.delijn.be/stops/200718"], ["https://data.delijn.be/stops/307674", "https://data.delijn.be/stops/307675"], ["https://data.delijn.be/stops/501004", "https://data.delijn.be/stops/506010"], ["https://data.delijn.be/stops/302423", "https://data.delijn.be/stops/308105"], ["https://data.delijn.be/stops/300361", "https://data.delijn.be/stops/308991"], ["https://data.delijn.be/stops/304008", "https://data.delijn.be/stops/304009"], ["https://data.delijn.be/stops/106151", "https://data.delijn.be/stops/106156"], ["https://data.delijn.be/stops/308246", "https://data.delijn.be/stops/308247"], ["https://data.delijn.be/stops/207987", "https://data.delijn.be/stops/207995"], ["https://data.delijn.be/stops/109667", "https://data.delijn.be/stops/401934"], ["https://data.delijn.be/stops/101343", "https://data.delijn.be/stops/104052"], ["https://data.delijn.be/stops/403041", "https://data.delijn.be/stops/403276"], ["https://data.delijn.be/stops/200521", "https://data.delijn.be/stops/201235"], ["https://data.delijn.be/stops/204423", "https://data.delijn.be/stops/205423"], ["https://data.delijn.be/stops/502234", "https://data.delijn.be/stops/505720"], ["https://data.delijn.be/stops/204404", "https://data.delijn.be/stops/205196"], ["https://data.delijn.be/stops/102492", "https://data.delijn.be/stops/405133"], ["https://data.delijn.be/stops/206416", "https://data.delijn.be/stops/216016"], ["https://data.delijn.be/stops/402989", "https://data.delijn.be/stops/404827"], ["https://data.delijn.be/stops/103930", "https://data.delijn.be/stops/105420"], ["https://data.delijn.be/stops/204013", "https://data.delijn.be/stops/204696"], ["https://data.delijn.be/stops/202442", "https://data.delijn.be/stops/202443"], ["https://data.delijn.be/stops/103167", "https://data.delijn.be/stops/109740"], ["https://data.delijn.be/stops/201726", "https://data.delijn.be/stops/202977"], ["https://data.delijn.be/stops/205446", "https://data.delijn.be/stops/205614"], ["https://data.delijn.be/stops/103081", "https://data.delijn.be/stops/104676"], ["https://data.delijn.be/stops/208234", "https://data.delijn.be/stops/209797"], ["https://data.delijn.be/stops/103246", "https://data.delijn.be/stops/108920"], ["https://data.delijn.be/stops/101514", "https://data.delijn.be/stops/102901"], ["https://data.delijn.be/stops/101296", "https://data.delijn.be/stops/105771"], ["https://data.delijn.be/stops/210851", "https://data.delijn.be/stops/210852"], ["https://data.delijn.be/stops/405306", "https://data.delijn.be/stops/407123"], ["https://data.delijn.be/stops/404166", "https://data.delijn.be/stops/404167"], ["https://data.delijn.be/stops/406619", "https://data.delijn.be/stops/407410"], ["https://data.delijn.be/stops/208460", "https://data.delijn.be/stops/208461"], ["https://data.delijn.be/stops/402267", "https://data.delijn.be/stops/402422"], ["https://data.delijn.be/stops/307714", "https://data.delijn.be/stops/307715"], ["https://data.delijn.be/stops/404620", "https://data.delijn.be/stops/406960"], ["https://data.delijn.be/stops/101142", "https://data.delijn.be/stops/102831"], ["https://data.delijn.be/stops/505586", "https://data.delijn.be/stops/505744"], ["https://data.delijn.be/stops/409059", "https://data.delijn.be/stops/409141"], ["https://data.delijn.be/stops/204993", "https://data.delijn.be/stops/209129"], ["https://data.delijn.be/stops/200720", "https://data.delijn.be/stops/202622"], ["https://data.delijn.be/stops/400817", "https://data.delijn.be/stops/403583"], ["https://data.delijn.be/stops/204432", "https://data.delijn.be/stops/205432"], ["https://data.delijn.be/stops/208606", "https://data.delijn.be/stops/307606"], ["https://data.delijn.be/stops/301713", "https://data.delijn.be/stops/308697"], ["https://data.delijn.be/stops/502129", "https://data.delijn.be/stops/502145"], ["https://data.delijn.be/stops/502039", "https://data.delijn.be/stops/507039"], ["https://data.delijn.be/stops/207474", "https://data.delijn.be/stops/207495"], ["https://data.delijn.be/stops/501529", "https://data.delijn.be/stops/501531"], ["https://data.delijn.be/stops/503051", "https://data.delijn.be/stops/509845"], ["https://data.delijn.be/stops/108409", "https://data.delijn.be/stops/108411"], ["https://data.delijn.be/stops/403968", "https://data.delijn.be/stops/403969"], ["https://data.delijn.be/stops/301551", "https://data.delijn.be/stops/305137"], ["https://data.delijn.be/stops/301353", "https://data.delijn.be/stops/306127"], ["https://data.delijn.be/stops/208122", "https://data.delijn.be/stops/209289"], ["https://data.delijn.be/stops/106643", "https://data.delijn.be/stops/109752"], ["https://data.delijn.be/stops/301897", "https://data.delijn.be/stops/308131"], ["https://data.delijn.be/stops/206808", "https://data.delijn.be/stops/207220"], ["https://data.delijn.be/stops/402176", "https://data.delijn.be/stops/406870"], ["https://data.delijn.be/stops/407824", "https://data.delijn.be/stops/407917"], ["https://data.delijn.be/stops/400453", "https://data.delijn.be/stops/407648"], ["https://data.delijn.be/stops/208000", "https://data.delijn.be/stops/208022"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/501736"], ["https://data.delijn.be/stops/101035", "https://data.delijn.be/stops/101865"], ["https://data.delijn.be/stops/210025", "https://data.delijn.be/stops/211037"], ["https://data.delijn.be/stops/106459", "https://data.delijn.be/stops/107038"], ["https://data.delijn.be/stops/302754", "https://data.delijn.be/stops/302772"], ["https://data.delijn.be/stops/300234", "https://data.delijn.be/stops/301379"], ["https://data.delijn.be/stops/408956", "https://data.delijn.be/stops/408965"], ["https://data.delijn.be/stops/509752", "https://data.delijn.be/stops/509753"], ["https://data.delijn.be/stops/108300", "https://data.delijn.be/stops/108490"], ["https://data.delijn.be/stops/403678", "https://data.delijn.be/stops/403679"], ["https://data.delijn.be/stops/207535", "https://data.delijn.be/stops/207547"], ["https://data.delijn.be/stops/203837", "https://data.delijn.be/stops/208679"], ["https://data.delijn.be/stops/508174", "https://data.delijn.be/stops/508262"], ["https://data.delijn.be/stops/204505", "https://data.delijn.be/stops/205904"], ["https://data.delijn.be/stops/200834", "https://data.delijn.be/stops/200857"], ["https://data.delijn.be/stops/504475", "https://data.delijn.be/stops/505988"], ["https://data.delijn.be/stops/102533", "https://data.delijn.be/stops/408342"], ["https://data.delijn.be/stops/303653", "https://data.delijn.be/stops/304838"], ["https://data.delijn.be/stops/502745", "https://data.delijn.be/stops/505069"], ["https://data.delijn.be/stops/400571", "https://data.delijn.be/stops/404057"], ["https://data.delijn.be/stops/105781", "https://data.delijn.be/stops/105783"], ["https://data.delijn.be/stops/402364", "https://data.delijn.be/stops/402457"], ["https://data.delijn.be/stops/408531", "https://data.delijn.be/stops/408589"], ["https://data.delijn.be/stops/400786", "https://data.delijn.be/stops/409651"], ["https://data.delijn.be/stops/109192", "https://data.delijn.be/stops/109228"], ["https://data.delijn.be/stops/200940", "https://data.delijn.be/stops/203706"], ["https://data.delijn.be/stops/109455", "https://data.delijn.be/stops/109456"], ["https://data.delijn.be/stops/206792", "https://data.delijn.be/stops/207629"], ["https://data.delijn.be/stops/407000", "https://data.delijn.be/stops/408025"], ["https://data.delijn.be/stops/407627", "https://data.delijn.be/stops/410194"], ["https://data.delijn.be/stops/109149", "https://data.delijn.be/stops/109151"], ["https://data.delijn.be/stops/301316", "https://data.delijn.be/stops/306660"], ["https://data.delijn.be/stops/200070", "https://data.delijn.be/stops/210113"], ["https://data.delijn.be/stops/200494", "https://data.delijn.be/stops/201494"], ["https://data.delijn.be/stops/307567", "https://data.delijn.be/stops/307765"], ["https://data.delijn.be/stops/206201", "https://data.delijn.be/stops/207808"], ["https://data.delijn.be/stops/502769", "https://data.delijn.be/stops/507769"], ["https://data.delijn.be/stops/404429", "https://data.delijn.be/stops/407234"], ["https://data.delijn.be/stops/401225", "https://data.delijn.be/stops/401381"], ["https://data.delijn.be/stops/504254", "https://data.delijn.be/stops/509386"], ["https://data.delijn.be/stops/504230", "https://data.delijn.be/stops/509241"], ["https://data.delijn.be/stops/101827", "https://data.delijn.be/stops/101927"], ["https://data.delijn.be/stops/505984", "https://data.delijn.be/stops/510026"], ["https://data.delijn.be/stops/301904", "https://data.delijn.be/stops/301905"], ["https://data.delijn.be/stops/301007", "https://data.delijn.be/stops/301015"], ["https://data.delijn.be/stops/201420", "https://data.delijn.be/stops/202406"], ["https://data.delijn.be/stops/101519", "https://data.delijn.be/stops/101983"], ["https://data.delijn.be/stops/300976", "https://data.delijn.be/stops/301074"], ["https://data.delijn.be/stops/402042", "https://data.delijn.be/stops/402364"], ["https://data.delijn.be/stops/505648", "https://data.delijn.be/stops/505752"], ["https://data.delijn.be/stops/208332", "https://data.delijn.be/stops/209332"], ["https://data.delijn.be/stops/501577", "https://data.delijn.be/stops/503835"], ["https://data.delijn.be/stops/408111", "https://data.delijn.be/stops/408118"], ["https://data.delijn.be/stops/201389", "https://data.delijn.be/stops/208708"], ["https://data.delijn.be/stops/301827", "https://data.delijn.be/stops/301833"], ["https://data.delijn.be/stops/200581", "https://data.delijn.be/stops/201581"], ["https://data.delijn.be/stops/300802", "https://data.delijn.be/stops/302407"], ["https://data.delijn.be/stops/101534", "https://data.delijn.be/stops/101944"], ["https://data.delijn.be/stops/502456", "https://data.delijn.be/stops/505741"], ["https://data.delijn.be/stops/304736", "https://data.delijn.be/stops/304751"], ["https://data.delijn.be/stops/104683", "https://data.delijn.be/stops/104783"], ["https://data.delijn.be/stops/205160", "https://data.delijn.be/stops/207278"], ["https://data.delijn.be/stops/200773", "https://data.delijn.be/stops/209309"], ["https://data.delijn.be/stops/202440", "https://data.delijn.be/stops/210047"], ["https://data.delijn.be/stops/502243", "https://data.delijn.be/stops/502633"], ["https://data.delijn.be/stops/306055", "https://data.delijn.be/stops/306062"], ["https://data.delijn.be/stops/206634", "https://data.delijn.be/stops/207634"], ["https://data.delijn.be/stops/202155", "https://data.delijn.be/stops/203140"], ["https://data.delijn.be/stops/104078", "https://data.delijn.be/stops/106074"], ["https://data.delijn.be/stops/408855", "https://data.delijn.be/stops/408869"], ["https://data.delijn.be/stops/505710", "https://data.delijn.be/stops/509137"], ["https://data.delijn.be/stops/219022", "https://data.delijn.be/stops/219023"], ["https://data.delijn.be/stops/209338", "https://data.delijn.be/stops/209360"], ["https://data.delijn.be/stops/505954", "https://data.delijn.be/stops/508606"], ["https://data.delijn.be/stops/304962", "https://data.delijn.be/stops/306383"], ["https://data.delijn.be/stops/400926", "https://data.delijn.be/stops/400927"], ["https://data.delijn.be/stops/108939", "https://data.delijn.be/stops/108941"], ["https://data.delijn.be/stops/504242", "https://data.delijn.be/stops/509232"], ["https://data.delijn.be/stops/106001", "https://data.delijn.be/stops/107908"], ["https://data.delijn.be/stops/505381", "https://data.delijn.be/stops/508096"], ["https://data.delijn.be/stops/103293", "https://data.delijn.be/stops/108705"], ["https://data.delijn.be/stops/400774", "https://data.delijn.be/stops/402235"], ["https://data.delijn.be/stops/204410", "https://data.delijn.be/stops/205410"], ["https://data.delijn.be/stops/404665", "https://data.delijn.be/stops/404683"], ["https://data.delijn.be/stops/301516", "https://data.delijn.be/stops/301525"], ["https://data.delijn.be/stops/201314", "https://data.delijn.be/stops/210314"], ["https://data.delijn.be/stops/106420", "https://data.delijn.be/stops/106521"], ["https://data.delijn.be/stops/408802", "https://data.delijn.be/stops/408824"], ["https://data.delijn.be/stops/305648", "https://data.delijn.be/stops/305656"], ["https://data.delijn.be/stops/101836", "https://data.delijn.be/stops/107044"], ["https://data.delijn.be/stops/301713", "https://data.delijn.be/stops/305314"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/504537"], ["https://data.delijn.be/stops/400472", "https://data.delijn.be/stops/404661"], ["https://data.delijn.be/stops/400714", "https://data.delijn.be/stops/400896"], ["https://data.delijn.be/stops/307133", "https://data.delijn.be/stops/308739"], ["https://data.delijn.be/stops/505291", "https://data.delijn.be/stops/508630"], ["https://data.delijn.be/stops/207686", "https://data.delijn.be/stops/207709"], ["https://data.delijn.be/stops/402210", "https://data.delijn.be/stops/405570"], ["https://data.delijn.be/stops/206660", "https://data.delijn.be/stops/207661"], ["https://data.delijn.be/stops/101355", "https://data.delijn.be/stops/101920"], ["https://data.delijn.be/stops/306904", "https://data.delijn.be/stops/306906"], ["https://data.delijn.be/stops/107903", "https://data.delijn.be/stops/109751"], ["https://data.delijn.be/stops/209470", "https://data.delijn.be/stops/209754"], ["https://data.delijn.be/stops/200693", "https://data.delijn.be/stops/200696"], ["https://data.delijn.be/stops/408204", "https://data.delijn.be/stops/408395"], ["https://data.delijn.be/stops/502487", "https://data.delijn.be/stops/509700"], ["https://data.delijn.be/stops/305070", "https://data.delijn.be/stops/308295"], ["https://data.delijn.be/stops/200755", "https://data.delijn.be/stops/209306"], ["https://data.delijn.be/stops/504273", "https://data.delijn.be/stops/509271"], ["https://data.delijn.be/stops/203223", "https://data.delijn.be/stops/205832"], ["https://data.delijn.be/stops/401166", "https://data.delijn.be/stops/403768"], ["https://data.delijn.be/stops/502024", "https://data.delijn.be/stops/502934"], ["https://data.delijn.be/stops/405534", "https://data.delijn.be/stops/406897"], ["https://data.delijn.be/stops/501238", "https://data.delijn.be/stops/506238"], ["https://data.delijn.be/stops/406875", "https://data.delijn.be/stops/406876"], ["https://data.delijn.be/stops/102390", "https://data.delijn.be/stops/103045"], ["https://data.delijn.be/stops/304453", "https://data.delijn.be/stops/307649"], ["https://data.delijn.be/stops/307306", "https://data.delijn.be/stops/307600"], ["https://data.delijn.be/stops/106029", "https://data.delijn.be/stops/106031"], ["https://data.delijn.be/stops/505503", "https://data.delijn.be/stops/505600"], ["https://data.delijn.be/stops/502269", "https://data.delijn.be/stops/507269"], ["https://data.delijn.be/stops/501070", "https://data.delijn.be/stops/501073"], ["https://data.delijn.be/stops/409621", "https://data.delijn.be/stops/409634"], ["https://data.delijn.be/stops/503423", "https://data.delijn.be/stops/503438"], ["https://data.delijn.be/stops/206031", "https://data.delijn.be/stops/207032"], ["https://data.delijn.be/stops/104364", "https://data.delijn.be/stops/105415"], ["https://data.delijn.be/stops/404246", "https://data.delijn.be/stops/404247"], ["https://data.delijn.be/stops/202031", "https://data.delijn.be/stops/203030"], ["https://data.delijn.be/stops/304376", "https://data.delijn.be/stops/307070"], ["https://data.delijn.be/stops/503089", "https://data.delijn.be/stops/508089"], ["https://data.delijn.be/stops/304333", "https://data.delijn.be/stops/304337"], ["https://data.delijn.be/stops/508621", "https://data.delijn.be/stops/508697"], ["https://data.delijn.be/stops/208769", "https://data.delijn.be/stops/209770"], ["https://data.delijn.be/stops/211014", "https://data.delijn.be/stops/502298"], ["https://data.delijn.be/stops/200372", "https://data.delijn.be/stops/201372"], ["https://data.delijn.be/stops/106819", "https://data.delijn.be/stops/106985"], ["https://data.delijn.be/stops/200200", "https://data.delijn.be/stops/201274"], ["https://data.delijn.be/stops/208464", "https://data.delijn.be/stops/209681"], ["https://data.delijn.be/stops/404898", "https://data.delijn.be/stops/408583"], ["https://data.delijn.be/stops/102792", "https://data.delijn.be/stops/107417"], ["https://data.delijn.be/stops/502206", "https://data.delijn.be/stops/507209"], ["https://data.delijn.be/stops/200356", "https://data.delijn.be/stops/202647"], ["https://data.delijn.be/stops/402099", "https://data.delijn.be/stops/402209"], ["https://data.delijn.be/stops/206750", "https://data.delijn.be/stops/206751"], ["https://data.delijn.be/stops/405576", "https://data.delijn.be/stops/405577"], ["https://data.delijn.be/stops/206961", "https://data.delijn.be/stops/207801"], ["https://data.delijn.be/stops/106725", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/307223", "https://data.delijn.be/stops/307224"], ["https://data.delijn.be/stops/503381", "https://data.delijn.be/stops/509907"], ["https://data.delijn.be/stops/405767", "https://data.delijn.be/stops/409754"], ["https://data.delijn.be/stops/505056", "https://data.delijn.be/stops/505761"], ["https://data.delijn.be/stops/502679", "https://data.delijn.be/stops/507358"], ["https://data.delijn.be/stops/101798", "https://data.delijn.be/stops/108517"], ["https://data.delijn.be/stops/504232", "https://data.delijn.be/stops/504241"], ["https://data.delijn.be/stops/202163", "https://data.delijn.be/stops/203163"], ["https://data.delijn.be/stops/400310", "https://data.delijn.be/stops/405537"], ["https://data.delijn.be/stops/504045", "https://data.delijn.be/stops/504989"], ["https://data.delijn.be/stops/504270", "https://data.delijn.be/stops/509275"], ["https://data.delijn.be/stops/200663", "https://data.delijn.be/stops/201841"], ["https://data.delijn.be/stops/303498", "https://data.delijn.be/stops/303504"], ["https://data.delijn.be/stops/108403", "https://data.delijn.be/stops/108406"], ["https://data.delijn.be/stops/204606", "https://data.delijn.be/stops/204607"], ["https://data.delijn.be/stops/501060", "https://data.delijn.be/stops/505357"], ["https://data.delijn.be/stops/306053", "https://data.delijn.be/stops/306054"], ["https://data.delijn.be/stops/202456", "https://data.delijn.be/stops/202486"], ["https://data.delijn.be/stops/503667", "https://data.delijn.be/stops/508648"], ["https://data.delijn.be/stops/101928", "https://data.delijn.be/stops/108203"], ["https://data.delijn.be/stops/405661", "https://data.delijn.be/stops/301240"], ["https://data.delijn.be/stops/400822", "https://data.delijn.be/stops/403058"], ["https://data.delijn.be/stops/105419", "https://data.delijn.be/stops/109978"], ["https://data.delijn.be/stops/103538", "https://data.delijn.be/stops/106723"], ["https://data.delijn.be/stops/206041", "https://data.delijn.be/stops/206964"], ["https://data.delijn.be/stops/306799", "https://data.delijn.be/stops/306800"], ["https://data.delijn.be/stops/403190", "https://data.delijn.be/stops/403638"], ["https://data.delijn.be/stops/208313", "https://data.delijn.be/stops/209771"], ["https://data.delijn.be/stops/206722", "https://data.delijn.be/stops/207140"], ["https://data.delijn.be/stops/206470", "https://data.delijn.be/stops/206471"], ["https://data.delijn.be/stops/509230", "https://data.delijn.be/stops/509239"], ["https://data.delijn.be/stops/504115", "https://data.delijn.be/stops/509115"], ["https://data.delijn.be/stops/300142", "https://data.delijn.be/stops/307728"], ["https://data.delijn.be/stops/510008", "https://data.delijn.be/stops/510010"], ["https://data.delijn.be/stops/503184", "https://data.delijn.be/stops/504820"], ["https://data.delijn.be/stops/407049", "https://data.delijn.be/stops/407083"], ["https://data.delijn.be/stops/204154", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/200906", "https://data.delijn.be/stops/200907"], ["https://data.delijn.be/stops/200182", "https://data.delijn.be/stops/200192"], ["https://data.delijn.be/stops/503240", "https://data.delijn.be/stops/508518"], ["https://data.delijn.be/stops/308512", "https://data.delijn.be/stops/308513"], ["https://data.delijn.be/stops/503054", "https://data.delijn.be/stops/509845"], ["https://data.delijn.be/stops/200608", "https://data.delijn.be/stops/202779"], ["https://data.delijn.be/stops/202364", "https://data.delijn.be/stops/203989"], ["https://data.delijn.be/stops/200394", "https://data.delijn.be/stops/200396"], ["https://data.delijn.be/stops/103486", "https://data.delijn.be/stops/103789"], ["https://data.delijn.be/stops/403436", "https://data.delijn.be/stops/403437"], ["https://data.delijn.be/stops/204292", "https://data.delijn.be/stops/205293"], ["https://data.delijn.be/stops/407490", "https://data.delijn.be/stops/407571"], ["https://data.delijn.be/stops/206317", "https://data.delijn.be/stops/207289"], ["https://data.delijn.be/stops/308076", "https://data.delijn.be/stops/308077"], ["https://data.delijn.be/stops/300459", "https://data.delijn.be/stops/300471"], ["https://data.delijn.be/stops/303162", "https://data.delijn.be/stops/303178"], ["https://data.delijn.be/stops/106969", "https://data.delijn.be/stops/106970"], ["https://data.delijn.be/stops/108079", "https://data.delijn.be/stops/108081"], ["https://data.delijn.be/stops/105691", "https://data.delijn.be/stops/105696"], ["https://data.delijn.be/stops/300188", "https://data.delijn.be/stops/300196"], ["https://data.delijn.be/stops/300510", "https://data.delijn.be/stops/308357"], ["https://data.delijn.be/stops/200346", "https://data.delijn.be/stops/201548"], ["https://data.delijn.be/stops/504193", "https://data.delijn.be/stops/509189"], ["https://data.delijn.be/stops/407371", "https://data.delijn.be/stops/407376"], ["https://data.delijn.be/stops/305728", "https://data.delijn.be/stops/305729"], ["https://data.delijn.be/stops/503798", "https://data.delijn.be/stops/508796"], ["https://data.delijn.be/stops/206953", "https://data.delijn.be/stops/300174"], ["https://data.delijn.be/stops/403702", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/501256", "https://data.delijn.be/stops/506256"], ["https://data.delijn.be/stops/208356", "https://data.delijn.be/stops/209355"], ["https://data.delijn.be/stops/108495", "https://data.delijn.be/stops/109088"], ["https://data.delijn.be/stops/200852", "https://data.delijn.be/stops/200857"], ["https://data.delijn.be/stops/505133", "https://data.delijn.be/stops/505134"], ["https://data.delijn.be/stops/305068", "https://data.delijn.be/stops/305081"], ["https://data.delijn.be/stops/304434", "https://data.delijn.be/stops/304444"], ["https://data.delijn.be/stops/300938", "https://data.delijn.be/stops/308856"], ["https://data.delijn.be/stops/105294", "https://data.delijn.be/stops/105296"], ["https://data.delijn.be/stops/206417", "https://data.delijn.be/stops/206718"], ["https://data.delijn.be/stops/408861", "https://data.delijn.be/stops/408898"], ["https://data.delijn.be/stops/208284", "https://data.delijn.be/stops/209284"], ["https://data.delijn.be/stops/404214", "https://data.delijn.be/stops/404238"], ["https://data.delijn.be/stops/407856", "https://data.delijn.be/stops/407931"], ["https://data.delijn.be/stops/505364", "https://data.delijn.be/stops/505957"], ["https://data.delijn.be/stops/404691", "https://data.delijn.be/stops/407254"], ["https://data.delijn.be/stops/307215", "https://data.delijn.be/stops/307218"], ["https://data.delijn.be/stops/300393", "https://data.delijn.be/stops/303125"], ["https://data.delijn.be/stops/103765", "https://data.delijn.be/stops/104265"], ["https://data.delijn.be/stops/504322", "https://data.delijn.be/stops/504323"], ["https://data.delijn.be/stops/208136", "https://data.delijn.be/stops/209135"], ["https://data.delijn.be/stops/208646", "https://data.delijn.be/stops/210111"], ["https://data.delijn.be/stops/205443", "https://data.delijn.be/stops/205768"], ["https://data.delijn.be/stops/201451", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/503019", "https://data.delijn.be/stops/508019"], ["https://data.delijn.be/stops/300951", "https://data.delijn.be/stops/301038"], ["https://data.delijn.be/stops/106864", "https://data.delijn.be/stops/106866"], ["https://data.delijn.be/stops/505711", "https://data.delijn.be/stops/509618"], ["https://data.delijn.be/stops/302236", "https://data.delijn.be/stops/302248"], ["https://data.delijn.be/stops/109318", "https://data.delijn.be/stops/109320"], ["https://data.delijn.be/stops/307934", "https://data.delijn.be/stops/307936"], ["https://data.delijn.be/stops/202745", "https://data.delijn.be/stops/207937"], ["https://data.delijn.be/stops/508630", "https://data.delijn.be/stops/509360"], ["https://data.delijn.be/stops/201491", "https://data.delijn.be/stops/205556"], ["https://data.delijn.be/stops/102835", "https://data.delijn.be/stops/102838"], ["https://data.delijn.be/stops/505741", "https://data.delijn.be/stops/507534"], ["https://data.delijn.be/stops/201664", "https://data.delijn.be/stops/210027"], ["https://data.delijn.be/stops/106077", "https://data.delijn.be/stops/106078"], ["https://data.delijn.be/stops/400328", "https://data.delijn.be/stops/400364"], ["https://data.delijn.be/stops/206500", "https://data.delijn.be/stops/206501"], ["https://data.delijn.be/stops/401842", "https://data.delijn.be/stops/401856"], ["https://data.delijn.be/stops/104821", "https://data.delijn.be/stops/108509"], ["https://data.delijn.be/stops/410361", "https://data.delijn.be/stops/410398"], ["https://data.delijn.be/stops/204391", "https://data.delijn.be/stops/205380"], ["https://data.delijn.be/stops/302924", "https://data.delijn.be/stops/302925"], ["https://data.delijn.be/stops/208195", "https://data.delijn.be/stops/208519"], ["https://data.delijn.be/stops/201342", "https://data.delijn.be/stops/211009"], ["https://data.delijn.be/stops/502494", "https://data.delijn.be/stops/505670"], ["https://data.delijn.be/stops/204767", "https://data.delijn.be/stops/204768"], ["https://data.delijn.be/stops/206266", "https://data.delijn.be/stops/207582"], ["https://data.delijn.be/stops/108553", "https://data.delijn.be/stops/109596"], ["https://data.delijn.be/stops/300816", "https://data.delijn.be/stops/308855"], ["https://data.delijn.be/stops/109956", "https://data.delijn.be/stops/109957"], ["https://data.delijn.be/stops/207133", "https://data.delijn.be/stops/207511"], ["https://data.delijn.be/stops/503758", "https://data.delijn.be/stops/509743"], ["https://data.delijn.be/stops/405227", "https://data.delijn.be/stops/409348"], ["https://data.delijn.be/stops/304069", "https://data.delijn.be/stops/304088"], ["https://data.delijn.be/stops/204655", "https://data.delijn.be/stops/205670"], ["https://data.delijn.be/stops/202497", "https://data.delijn.be/stops/203497"], ["https://data.delijn.be/stops/104659", "https://data.delijn.be/stops/108468"], ["https://data.delijn.be/stops/301616", "https://data.delijn.be/stops/307028"], ["https://data.delijn.be/stops/402240", "https://data.delijn.be/stops/402421"], ["https://data.delijn.be/stops/307624", "https://data.delijn.be/stops/308267"], ["https://data.delijn.be/stops/404850", "https://data.delijn.be/stops/404885"], ["https://data.delijn.be/stops/503523", "https://data.delijn.be/stops/504778"], ["https://data.delijn.be/stops/401260", "https://data.delijn.be/stops/401321"], ["https://data.delijn.be/stops/200415", "https://data.delijn.be/stops/201552"], ["https://data.delijn.be/stops/108706", "https://data.delijn.be/stops/108708"], ["https://data.delijn.be/stops/403717", "https://data.delijn.be/stops/403726"], ["https://data.delijn.be/stops/403123", "https://data.delijn.be/stops/403673"], ["https://data.delijn.be/stops/202510", "https://data.delijn.be/stops/203079"], ["https://data.delijn.be/stops/206543", "https://data.delijn.be/stops/209750"], ["https://data.delijn.be/stops/208362", "https://data.delijn.be/stops/208363"], ["https://data.delijn.be/stops/300951", "https://data.delijn.be/stops/305914"], ["https://data.delijn.be/stops/205350", "https://data.delijn.be/stops/205449"], ["https://data.delijn.be/stops/407813", "https://data.delijn.be/stops/407970"], ["https://data.delijn.be/stops/102638", "https://data.delijn.be/stops/107844"], ["https://data.delijn.be/stops/208387", "https://data.delijn.be/stops/219007"], ["https://data.delijn.be/stops/409358", "https://data.delijn.be/stops/409391"], ["https://data.delijn.be/stops/105273", "https://data.delijn.be/stops/105293"], ["https://data.delijn.be/stops/405426", "https://data.delijn.be/stops/409250"], ["https://data.delijn.be/stops/302878", "https://data.delijn.be/stops/302894"], ["https://data.delijn.be/stops/203166", "https://data.delijn.be/stops/205074"], ["https://data.delijn.be/stops/102446", "https://data.delijn.be/stops/103131"], ["https://data.delijn.be/stops/200369", "https://data.delijn.be/stops/201227"], ["https://data.delijn.be/stops/401420", "https://data.delijn.be/stops/401421"], ["https://data.delijn.be/stops/400829", "https://data.delijn.be/stops/409613"], ["https://data.delijn.be/stops/503200", "https://data.delijn.be/stops/503203"], ["https://data.delijn.be/stops/104001", "https://data.delijn.be/stops/104002"], ["https://data.delijn.be/stops/401413", "https://data.delijn.be/stops/306814"], ["https://data.delijn.be/stops/503495", "https://data.delijn.be/stops/503503"], ["https://data.delijn.be/stops/107115", "https://data.delijn.be/stops/107825"], ["https://data.delijn.be/stops/503953", "https://data.delijn.be/stops/504724"], ["https://data.delijn.be/stops/503789", "https://data.delijn.be/stops/508789"], ["https://data.delijn.be/stops/107986", "https://data.delijn.be/stops/308536"], ["https://data.delijn.be/stops/104904", "https://data.delijn.be/stops/107244"], ["https://data.delijn.be/stops/400251", "https://data.delijn.be/stops/400432"], ["https://data.delijn.be/stops/208919", "https://data.delijn.be/stops/210075"], ["https://data.delijn.be/stops/201646", "https://data.delijn.be/stops/202864"], ["https://data.delijn.be/stops/406191", "https://data.delijn.be/stops/406201"], ["https://data.delijn.be/stops/200884", "https://data.delijn.be/stops/200888"], ["https://data.delijn.be/stops/402740", "https://data.delijn.be/stops/407869"], ["https://data.delijn.be/stops/205242", "https://data.delijn.be/stops/205244"], ["https://data.delijn.be/stops/504997", "https://data.delijn.be/stops/508061"], ["https://data.delijn.be/stops/107283", "https://data.delijn.be/stops/107397"], ["https://data.delijn.be/stops/200984", "https://data.delijn.be/stops/201031"], ["https://data.delijn.be/stops/109056", "https://data.delijn.be/stops/405032"], ["https://data.delijn.be/stops/507320", "https://data.delijn.be/stops/507333"], ["https://data.delijn.be/stops/406041", "https://data.delijn.be/stops/406388"], ["https://data.delijn.be/stops/206678", "https://data.delijn.be/stops/206867"], ["https://data.delijn.be/stops/207451", "https://data.delijn.be/stops/207452"], ["https://data.delijn.be/stops/503652", "https://data.delijn.be/stops/508651"], ["https://data.delijn.be/stops/109836", "https://data.delijn.be/stops/109931"], ["https://data.delijn.be/stops/504798", "https://data.delijn.be/stops/507814"], ["https://data.delijn.be/stops/306345", "https://data.delijn.be/stops/308696"], ["https://data.delijn.be/stops/403335", "https://data.delijn.be/stops/403346"], ["https://data.delijn.be/stops/503218", "https://data.delijn.be/stops/508211"], ["https://data.delijn.be/stops/206110", "https://data.delijn.be/stops/207112"], ["https://data.delijn.be/stops/206910", "https://data.delijn.be/stops/207910"], ["https://data.delijn.be/stops/308730", "https://data.delijn.be/stops/308731"], ["https://data.delijn.be/stops/106361", "https://data.delijn.be/stops/106363"], ["https://data.delijn.be/stops/209485", "https://data.delijn.be/stops/209487"], ["https://data.delijn.be/stops/303473", "https://data.delijn.be/stops/303474"], ["https://data.delijn.be/stops/305612", "https://data.delijn.be/stops/305614"], ["https://data.delijn.be/stops/106069", "https://data.delijn.be/stops/106072"], ["https://data.delijn.be/stops/402694", "https://data.delijn.be/stops/402882"], ["https://data.delijn.be/stops/410336", "https://data.delijn.be/stops/410337"], ["https://data.delijn.be/stops/202560", "https://data.delijn.be/stops/203564"], ["https://data.delijn.be/stops/102535", "https://data.delijn.be/stops/104965"], ["https://data.delijn.be/stops/108860", "https://data.delijn.be/stops/108865"], ["https://data.delijn.be/stops/406006", "https://data.delijn.be/stops/406009"], ["https://data.delijn.be/stops/302166", "https://data.delijn.be/stops/306002"], ["https://data.delijn.be/stops/301074", "https://data.delijn.be/stops/306814"], ["https://data.delijn.be/stops/304428", "https://data.delijn.be/stops/307372"], ["https://data.delijn.be/stops/209386", "https://data.delijn.be/stops/209401"], ["https://data.delijn.be/stops/403894", "https://data.delijn.be/stops/404972"], ["https://data.delijn.be/stops/206305", "https://data.delijn.be/stops/206306"], ["https://data.delijn.be/stops/305732", "https://data.delijn.be/stops/307118"], ["https://data.delijn.be/stops/406623", "https://data.delijn.be/stops/406682"], ["https://data.delijn.be/stops/306049", "https://data.delijn.be/stops/306052"], ["https://data.delijn.be/stops/103317", "https://data.delijn.be/stops/105516"], ["https://data.delijn.be/stops/400171", "https://data.delijn.be/stops/407371"], ["https://data.delijn.be/stops/107592", "https://data.delijn.be/stops/107722"], ["https://data.delijn.be/stops/202521", "https://data.delijn.be/stops/203521"], ["https://data.delijn.be/stops/108519", "https://data.delijn.be/stops/108523"], ["https://data.delijn.be/stops/302218", "https://data.delijn.be/stops/302237"], ["https://data.delijn.be/stops/409390", "https://data.delijn.be/stops/409391"], ["https://data.delijn.be/stops/203253", "https://data.delijn.be/stops/203254"], ["https://data.delijn.be/stops/206793", "https://data.delijn.be/stops/209032"], ["https://data.delijn.be/stops/400072", "https://data.delijn.be/stops/400073"], ["https://data.delijn.be/stops/505109", "https://data.delijn.be/stops/509519"], ["https://data.delijn.be/stops/207572", "https://data.delijn.be/stops/207839"], ["https://data.delijn.be/stops/306830", "https://data.delijn.be/stops/306831"], ["https://data.delijn.be/stops/503666", "https://data.delijn.be/stops/505127"], ["https://data.delijn.be/stops/503934", "https://data.delijn.be/stops/505798"], ["https://data.delijn.be/stops/300298", "https://data.delijn.be/stops/307496"], ["https://data.delijn.be/stops/204059", "https://data.delijn.be/stops/205060"], ["https://data.delijn.be/stops/202570", "https://data.delijn.be/stops/203570"], ["https://data.delijn.be/stops/503397", "https://data.delijn.be/stops/503401"], ["https://data.delijn.be/stops/304023", "https://data.delijn.be/stops/304142"], ["https://data.delijn.be/stops/408176", "https://data.delijn.be/stops/408178"], ["https://data.delijn.be/stops/302893", "https://data.delijn.be/stops/302894"], ["https://data.delijn.be/stops/107141", "https://data.delijn.be/stops/107142"], ["https://data.delijn.be/stops/206333", "https://data.delijn.be/stops/206365"], ["https://data.delijn.be/stops/406557", "https://data.delijn.be/stops/407374"], ["https://data.delijn.be/stops/207185", "https://data.delijn.be/stops/207694"], ["https://data.delijn.be/stops/209152", "https://data.delijn.be/stops/209678"], ["https://data.delijn.be/stops/206989", "https://data.delijn.be/stops/207084"], ["https://data.delijn.be/stops/202035", "https://data.delijn.be/stops/203035"], ["https://data.delijn.be/stops/504408", "https://data.delijn.be/stops/509408"], ["https://data.delijn.be/stops/208122", "https://data.delijn.be/stops/209119"], ["https://data.delijn.be/stops/404225", "https://data.delijn.be/stops/404247"], ["https://data.delijn.be/stops/407832", "https://data.delijn.be/stops/407833"], ["https://data.delijn.be/stops/109087", "https://data.delijn.be/stops/109867"], ["https://data.delijn.be/stops/401189", "https://data.delijn.be/stops/401340"], ["https://data.delijn.be/stops/203238", "https://data.delijn.be/stops/203267"], ["https://data.delijn.be/stops/202092", "https://data.delijn.be/stops/203720"], ["https://data.delijn.be/stops/305167", "https://data.delijn.be/stops/308049"], ["https://data.delijn.be/stops/408858", "https://data.delijn.be/stops/408885"], ["https://data.delijn.be/stops/105469", "https://data.delijn.be/stops/105471"], ["https://data.delijn.be/stops/209040", "https://data.delijn.be/stops/209091"], ["https://data.delijn.be/stops/502003", "https://data.delijn.be/stops/502039"], ["https://data.delijn.be/stops/403642", "https://data.delijn.be/stops/403654"], ["https://data.delijn.be/stops/504982", "https://data.delijn.be/stops/505917"], ["https://data.delijn.be/stops/406679", "https://data.delijn.be/stops/407159"], ["https://data.delijn.be/stops/406040", "https://data.delijn.be/stops/406041"], ["https://data.delijn.be/stops/101944", "https://data.delijn.be/stops/109757"], ["https://data.delijn.be/stops/504013", "https://data.delijn.be/stops/504015"], ["https://data.delijn.be/stops/102202", "https://data.delijn.be/stops/105941"], ["https://data.delijn.be/stops/101529", "https://data.delijn.be/stops/109004"], ["https://data.delijn.be/stops/206676", "https://data.delijn.be/stops/206679"], ["https://data.delijn.be/stops/303953", "https://data.delijn.be/stops/303973"], ["https://data.delijn.be/stops/407733", "https://data.delijn.be/stops/409782"], ["https://data.delijn.be/stops/204321", "https://data.delijn.be/stops/205060"], ["https://data.delijn.be/stops/503886", "https://data.delijn.be/stops/508886"], ["https://data.delijn.be/stops/408123", "https://data.delijn.be/stops/408285"], ["https://data.delijn.be/stops/102042", "https://data.delijn.be/stops/206698"], ["https://data.delijn.be/stops/401755", "https://data.delijn.be/stops/401756"], ["https://data.delijn.be/stops/206636", "https://data.delijn.be/stops/206890"], ["https://data.delijn.be/stops/504798", "https://data.delijn.be/stops/504799"], ["https://data.delijn.be/stops/301584", "https://data.delijn.be/stops/301588"], ["https://data.delijn.be/stops/203907", "https://data.delijn.be/stops/203908"], ["https://data.delijn.be/stops/106473", "https://data.delijn.be/stops/109646"], ["https://data.delijn.be/stops/502471", "https://data.delijn.be/stops/502479"], ["https://data.delijn.be/stops/109013", "https://data.delijn.be/stops/109643"], ["https://data.delijn.be/stops/102702", "https://data.delijn.be/stops/105546"], ["https://data.delijn.be/stops/304797", "https://data.delijn.be/stops/304798"], ["https://data.delijn.be/stops/103975", "https://data.delijn.be/stops/103990"], ["https://data.delijn.be/stops/406107", "https://data.delijn.be/stops/406148"], ["https://data.delijn.be/stops/102979", "https://data.delijn.be/stops/105026"], ["https://data.delijn.be/stops/204023", "https://data.delijn.be/stops/205023"], ["https://data.delijn.be/stops/203817", "https://data.delijn.be/stops/203908"], ["https://data.delijn.be/stops/407098", "https://data.delijn.be/stops/407103"], ["https://data.delijn.be/stops/201926", "https://data.delijn.be/stops/207247"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/107149"], ["https://data.delijn.be/stops/403867", "https://data.delijn.be/stops/410013"], ["https://data.delijn.be/stops/201388", "https://data.delijn.be/stops/202650"], ["https://data.delijn.be/stops/204503", "https://data.delijn.be/stops/205539"], ["https://data.delijn.be/stops/202539", "https://data.delijn.be/stops/203688"], ["https://data.delijn.be/stops/405294", "https://data.delijn.be/stops/405298"], ["https://data.delijn.be/stops/205981", "https://data.delijn.be/stops/208725"], ["https://data.delijn.be/stops/304413", "https://data.delijn.be/stops/306858"], ["https://data.delijn.be/stops/200196", "https://data.delijn.be/stops/201106"], ["https://data.delijn.be/stops/405268", "https://data.delijn.be/stops/405273"], ["https://data.delijn.be/stops/502347", "https://data.delijn.be/stops/507347"], ["https://data.delijn.be/stops/207379", "https://data.delijn.be/stops/207731"], ["https://data.delijn.be/stops/302427", "https://data.delijn.be/stops/302438"], ["https://data.delijn.be/stops/106992", "https://data.delijn.be/stops/106993"], ["https://data.delijn.be/stops/301593", "https://data.delijn.be/stops/308088"], ["https://data.delijn.be/stops/405300", "https://data.delijn.be/stops/405428"], ["https://data.delijn.be/stops/502417", "https://data.delijn.be/stops/502440"], ["https://data.delijn.be/stops/202877", "https://data.delijn.be/stops/207427"], ["https://data.delijn.be/stops/503386", "https://data.delijn.be/stops/508386"], ["https://data.delijn.be/stops/101945", "https://data.delijn.be/stops/108738"], ["https://data.delijn.be/stops/106579", "https://data.delijn.be/stops/106581"], ["https://data.delijn.be/stops/207525", "https://data.delijn.be/stops/216006"], ["https://data.delijn.be/stops/300098", "https://data.delijn.be/stops/300117"], ["https://data.delijn.be/stops/209654", "https://data.delijn.be/stops/209656"], ["https://data.delijn.be/stops/404136", "https://data.delijn.be/stops/404179"], ["https://data.delijn.be/stops/304128", "https://data.delijn.be/stops/307677"], ["https://data.delijn.be/stops/404493", "https://data.delijn.be/stops/406947"], ["https://data.delijn.be/stops/204514", "https://data.delijn.be/stops/205334"], ["https://data.delijn.be/stops/106452", "https://data.delijn.be/stops/106453"], ["https://data.delijn.be/stops/402180", "https://data.delijn.be/stops/402191"], ["https://data.delijn.be/stops/301504", "https://data.delijn.be/stops/305733"], ["https://data.delijn.be/stops/404843", "https://data.delijn.be/stops/407751"], ["https://data.delijn.be/stops/205591", "https://data.delijn.be/stops/205779"], ["https://data.delijn.be/stops/403374", "https://data.delijn.be/stops/404103"], ["https://data.delijn.be/stops/206765", "https://data.delijn.be/stops/206791"], ["https://data.delijn.be/stops/200735", "https://data.delijn.be/stops/202590"], ["https://data.delijn.be/stops/400725", "https://data.delijn.be/stops/400802"], ["https://data.delijn.be/stops/503951", "https://data.delijn.be/stops/508417"], ["https://data.delijn.be/stops/208733", "https://data.delijn.be/stops/209847"], ["https://data.delijn.be/stops/505266", "https://data.delijn.be/stops/505942"], ["https://data.delijn.be/stops/501593", "https://data.delijn.be/stops/509495"], ["https://data.delijn.be/stops/202124", "https://data.delijn.be/stops/203123"], ["https://data.delijn.be/stops/504145", "https://data.delijn.be/stops/504386"], ["https://data.delijn.be/stops/405962", "https://data.delijn.be/stops/405966"], ["https://data.delijn.be/stops/204164", "https://data.delijn.be/stops/204771"], ["https://data.delijn.be/stops/403924", "https://data.delijn.be/stops/403981"], ["https://data.delijn.be/stops/205819", "https://data.delijn.be/stops/205821"], ["https://data.delijn.be/stops/202610", "https://data.delijn.be/stops/203610"], ["https://data.delijn.be/stops/403920", "https://data.delijn.be/stops/404015"], ["https://data.delijn.be/stops/301856", "https://data.delijn.be/stops/302051"], ["https://data.delijn.be/stops/501601", "https://data.delijn.be/stops/509744"], ["https://data.delijn.be/stops/207674", "https://data.delijn.be/stops/209103"], ["https://data.delijn.be/stops/102699", "https://data.delijn.be/stops/105177"], ["https://data.delijn.be/stops/206330", "https://data.delijn.be/stops/308799"], ["https://data.delijn.be/stops/400070", "https://data.delijn.be/stops/403549"], ["https://data.delijn.be/stops/405527", "https://data.delijn.be/stops/408074"], ["https://data.delijn.be/stops/202639", "https://data.delijn.be/stops/205104"], ["https://data.delijn.be/stops/102931", "https://data.delijn.be/stops/105030"], ["https://data.delijn.be/stops/204131", "https://data.delijn.be/stops/207637"], ["https://data.delijn.be/stops/300086", "https://data.delijn.be/stops/300087"], ["https://data.delijn.be/stops/503198", "https://data.delijn.be/stops/508195"], ["https://data.delijn.be/stops/501337", "https://data.delijn.be/stops/506300"], ["https://data.delijn.be/stops/300815", "https://data.delijn.be/stops/300877"], ["https://data.delijn.be/stops/304210", "https://data.delijn.be/stops/306003"], ["https://data.delijn.be/stops/509037", "https://data.delijn.be/stops/509280"], ["https://data.delijn.be/stops/401749", "https://data.delijn.be/stops/406888"], ["https://data.delijn.be/stops/300047", "https://data.delijn.be/stops/300056"], ["https://data.delijn.be/stops/200659", "https://data.delijn.be/stops/210048"], ["https://data.delijn.be/stops/101293", "https://data.delijn.be/stops/104971"], ["https://data.delijn.be/stops/502690", "https://data.delijn.be/stops/503824"], ["https://data.delijn.be/stops/304115", "https://data.delijn.be/stops/308645"], ["https://data.delijn.be/stops/301867", "https://data.delijn.be/stops/301874"], ["https://data.delijn.be/stops/101833", "https://data.delijn.be/stops/107093"], ["https://data.delijn.be/stops/209256", "https://data.delijn.be/stops/218027"], ["https://data.delijn.be/stops/509237", "https://data.delijn.be/stops/509654"], ["https://data.delijn.be/stops/508622", "https://data.delijn.be/stops/508627"], ["https://data.delijn.be/stops/105244", "https://data.delijn.be/stops/105412"], ["https://data.delijn.be/stops/403758", "https://data.delijn.be/stops/403762"], ["https://data.delijn.be/stops/407407", "https://data.delijn.be/stops/407564"], ["https://data.delijn.be/stops/102918", "https://data.delijn.be/stops/103275"], ["https://data.delijn.be/stops/300792", "https://data.delijn.be/stops/300793"], ["https://data.delijn.be/stops/505155", "https://data.delijn.be/stops/507074"], ["https://data.delijn.be/stops/104548", "https://data.delijn.be/stops/301914"], ["https://data.delijn.be/stops/202592", "https://data.delijn.be/stops/203591"], ["https://data.delijn.be/stops/104110", "https://data.delijn.be/stops/105885"], ["https://data.delijn.be/stops/201871", "https://data.delijn.be/stops/202423"], ["https://data.delijn.be/stops/301295", "https://data.delijn.be/stops/301358"], ["https://data.delijn.be/stops/302809", "https://data.delijn.be/stops/305544"], ["https://data.delijn.be/stops/302306", "https://data.delijn.be/stops/302330"], ["https://data.delijn.be/stops/502767", "https://data.delijn.be/stops/507151"], ["https://data.delijn.be/stops/501054", "https://data.delijn.be/stops/501061"], ["https://data.delijn.be/stops/407889", "https://data.delijn.be/stops/408182"], ["https://data.delijn.be/stops/405761", "https://data.delijn.be/stops/302845"], ["https://data.delijn.be/stops/305464", "https://data.delijn.be/stops/305480"], ["https://data.delijn.be/stops/407352", "https://data.delijn.be/stops/407400"], ["https://data.delijn.be/stops/204463", "https://data.delijn.be/stops/204464"], ["https://data.delijn.be/stops/107589", "https://data.delijn.be/stops/107722"], ["https://data.delijn.be/stops/404337", "https://data.delijn.be/stops/404382"], ["https://data.delijn.be/stops/206571", "https://data.delijn.be/stops/207570"], ["https://data.delijn.be/stops/508847", "https://data.delijn.be/stops/510029"], ["https://data.delijn.be/stops/103478", "https://data.delijn.be/stops/108932"], ["https://data.delijn.be/stops/206544", "https://data.delijn.be/stops/207546"], ["https://data.delijn.be/stops/105317", "https://data.delijn.be/stops/105341"], ["https://data.delijn.be/stops/304382", "https://data.delijn.be/stops/306832"], ["https://data.delijn.be/stops/205364", "https://data.delijn.be/stops/205718"], ["https://data.delijn.be/stops/106173", "https://data.delijn.be/stops/107442"], ["https://data.delijn.be/stops/206313", "https://data.delijn.be/stops/207291"], ["https://data.delijn.be/stops/410009", "https://data.delijn.be/stops/410034"], ["https://data.delijn.be/stops/303150", "https://data.delijn.be/stops/303680"], ["https://data.delijn.be/stops/503753", "https://data.delijn.be/stops/508753"], ["https://data.delijn.be/stops/101403", "https://data.delijn.be/stops/106529"], ["https://data.delijn.be/stops/200067", "https://data.delijn.be/stops/200089"], ["https://data.delijn.be/stops/407931", "https://data.delijn.be/stops/407934"], ["https://data.delijn.be/stops/400776", "https://data.delijn.be/stops/406686"], ["https://data.delijn.be/stops/401470", "https://data.delijn.be/stops/401471"], ["https://data.delijn.be/stops/303249", "https://data.delijn.be/stops/307004"], ["https://data.delijn.be/stops/400140", "https://data.delijn.be/stops/409163"], ["https://data.delijn.be/stops/301099", "https://data.delijn.be/stops/301102"], ["https://data.delijn.be/stops/408503", "https://data.delijn.be/stops/408548"], ["https://data.delijn.be/stops/304452", "https://data.delijn.be/stops/304453"], ["https://data.delijn.be/stops/404769", "https://data.delijn.be/stops/404775"], ["https://data.delijn.be/stops/401194", "https://data.delijn.be/stops/409190"], ["https://data.delijn.be/stops/205920", "https://data.delijn.be/stops/218936"], ["https://data.delijn.be/stops/204411", "https://data.delijn.be/stops/205772"], ["https://data.delijn.be/stops/504882", "https://data.delijn.be/stops/507714"], ["https://data.delijn.be/stops/103981", "https://data.delijn.be/stops/109958"], ["https://data.delijn.be/stops/206954", "https://data.delijn.be/stops/207802"], ["https://data.delijn.be/stops/300265", "https://data.delijn.be/stops/307495"], ["https://data.delijn.be/stops/105414", "https://data.delijn.be/stops/109846"], ["https://data.delijn.be/stops/301967", "https://data.delijn.be/stops/301968"], ["https://data.delijn.be/stops/202925", "https://data.delijn.be/stops/203926"], ["https://data.delijn.be/stops/502164", "https://data.delijn.be/stops/502628"], ["https://data.delijn.be/stops/406338", "https://data.delijn.be/stops/406401"], ["https://data.delijn.be/stops/208022", "https://data.delijn.be/stops/208024"], ["https://data.delijn.be/stops/401482", "https://data.delijn.be/stops/401892"], ["https://data.delijn.be/stops/203604", "https://data.delijn.be/stops/210077"], ["https://data.delijn.be/stops/502357", "https://data.delijn.be/stops/507531"], ["https://data.delijn.be/stops/301191", "https://data.delijn.be/stops/301253"], ["https://data.delijn.be/stops/206661", "https://data.delijn.be/stops/206662"], ["https://data.delijn.be/stops/202109", "https://data.delijn.be/stops/203184"], ["https://data.delijn.be/stops/505931", "https://data.delijn.be/stops/508140"], ["https://data.delijn.be/stops/304960", "https://data.delijn.be/stops/308084"], ["https://data.delijn.be/stops/208174", "https://data.delijn.be/stops/208180"], ["https://data.delijn.be/stops/303077", "https://data.delijn.be/stops/308654"], ["https://data.delijn.be/stops/404082", "https://data.delijn.be/stops/404084"], ["https://data.delijn.be/stops/402827", "https://data.delijn.be/stops/408483"], ["https://data.delijn.be/stops/404028", "https://data.delijn.be/stops/308746"], ["https://data.delijn.be/stops/504369", "https://data.delijn.be/stops/505933"], ["https://data.delijn.be/stops/502762", "https://data.delijn.be/stops/505238"], ["https://data.delijn.be/stops/404312", "https://data.delijn.be/stops/404330"], ["https://data.delijn.be/stops/505787", "https://data.delijn.be/stops/509342"], ["https://data.delijn.be/stops/102657", "https://data.delijn.be/stops/301152"], ["https://data.delijn.be/stops/200938", "https://data.delijn.be/stops/200939"], ["https://data.delijn.be/stops/304261", "https://data.delijn.be/stops/304264"], ["https://data.delijn.be/stops/407120", "https://data.delijn.be/stops/407150"], ["https://data.delijn.be/stops/303095", "https://data.delijn.be/stops/303999"], ["https://data.delijn.be/stops/502087", "https://data.delijn.be/stops/507087"], ["https://data.delijn.be/stops/405564", "https://data.delijn.be/stops/405570"], ["https://data.delijn.be/stops/200421", "https://data.delijn.be/stops/202406"], ["https://data.delijn.be/stops/301572", "https://data.delijn.be/stops/301576"], ["https://data.delijn.be/stops/206187", "https://data.delijn.be/stops/207955"], ["https://data.delijn.be/stops/404406", "https://data.delijn.be/stops/404412"], ["https://data.delijn.be/stops/101274", "https://data.delijn.be/stops/108760"], ["https://data.delijn.be/stops/505107", "https://data.delijn.be/stops/509640"], ["https://data.delijn.be/stops/206689", "https://data.delijn.be/stops/207716"], ["https://data.delijn.be/stops/206683", "https://data.delijn.be/stops/206703"], ["https://data.delijn.be/stops/202707", "https://data.delijn.be/stops/203682"], ["https://data.delijn.be/stops/302179", "https://data.delijn.be/stops/308129"], ["https://data.delijn.be/stops/208682", "https://data.delijn.be/stops/209437"], ["https://data.delijn.be/stops/307647", "https://data.delijn.be/stops/307649"], ["https://data.delijn.be/stops/404246", "https://data.delijn.be/stops/404504"], ["https://data.delijn.be/stops/209671", "https://data.delijn.be/stops/209672"], ["https://data.delijn.be/stops/503457", "https://data.delijn.be/stops/503458"], ["https://data.delijn.be/stops/503021", "https://data.delijn.be/stops/508010"], ["https://data.delijn.be/stops/206135", "https://data.delijn.be/stops/207133"], ["https://data.delijn.be/stops/503750", "https://data.delijn.be/stops/508750"], ["https://data.delijn.be/stops/109347", "https://data.delijn.be/stops/109355"], ["https://data.delijn.be/stops/306604", "https://data.delijn.be/stops/306605"], ["https://data.delijn.be/stops/407372", "https://data.delijn.be/stops/407373"], ["https://data.delijn.be/stops/108311", "https://data.delijn.be/stops/108312"], ["https://data.delijn.be/stops/208802", "https://data.delijn.be/stops/208803"], ["https://data.delijn.be/stops/105751", "https://data.delijn.be/stops/105752"], ["https://data.delijn.be/stops/206772", "https://data.delijn.be/stops/206778"], ["https://data.delijn.be/stops/202912", "https://data.delijn.be/stops/203911"], ["https://data.delijn.be/stops/405723", "https://data.delijn.be/stops/408339"], ["https://data.delijn.be/stops/502506", "https://data.delijn.be/stops/503334"], ["https://data.delijn.be/stops/206191", "https://data.delijn.be/stops/207223"], ["https://data.delijn.be/stops/109232", "https://data.delijn.be/stops/109233"], ["https://data.delijn.be/stops/203655", "https://data.delijn.be/stops/203656"], ["https://data.delijn.be/stops/406926", "https://data.delijn.be/stops/406928"], ["https://data.delijn.be/stops/205663", "https://data.delijn.be/stops/205681"], ["https://data.delijn.be/stops/304558", "https://data.delijn.be/stops/307570"], ["https://data.delijn.be/stops/105404", "https://data.delijn.be/stops/105406"], ["https://data.delijn.be/stops/106286", "https://data.delijn.be/stops/106303"], ["https://data.delijn.be/stops/402088", "https://data.delijn.be/stops/402089"], ["https://data.delijn.be/stops/101812", "https://data.delijn.be/stops/107977"], ["https://data.delijn.be/stops/107583", "https://data.delijn.be/stops/107586"], ["https://data.delijn.be/stops/502609", "https://data.delijn.be/stops/505691"], ["https://data.delijn.be/stops/200473", "https://data.delijn.be/stops/208939"], ["https://data.delijn.be/stops/504304", "https://data.delijn.be/stops/509383"], ["https://data.delijn.be/stops/208335", "https://data.delijn.be/stops/209334"], ["https://data.delijn.be/stops/506201", "https://data.delijn.be/stops/506202"], ["https://data.delijn.be/stops/302734", "https://data.delijn.be/stops/308594"], ["https://data.delijn.be/stops/200183", "https://data.delijn.be/stops/203477"], ["https://data.delijn.be/stops/403732", "https://data.delijn.be/stops/403740"], ["https://data.delijn.be/stops/401396", "https://data.delijn.be/stops/401452"], ["https://data.delijn.be/stops/202375", "https://data.delijn.be/stops/203375"], ["https://data.delijn.be/stops/208361", "https://data.delijn.be/stops/208782"], ["https://data.delijn.be/stops/101589", "https://data.delijn.be/stops/105765"], ["https://data.delijn.be/stops/308694", "https://data.delijn.be/stops/308815"], ["https://data.delijn.be/stops/103860", "https://data.delijn.be/stops/106060"], ["https://data.delijn.be/stops/201895", "https://data.delijn.be/stops/202905"], ["https://data.delijn.be/stops/502032", "https://data.delijn.be/stops/502617"], ["https://data.delijn.be/stops/403923", "https://data.delijn.be/stops/404432"], ["https://data.delijn.be/stops/304454", "https://data.delijn.be/stops/307696"], ["https://data.delijn.be/stops/508347", "https://data.delijn.be/stops/510022"], ["https://data.delijn.be/stops/104409", "https://data.delijn.be/stops/204622"], ["https://data.delijn.be/stops/403237", "https://data.delijn.be/stops/403471"], ["https://data.delijn.be/stops/301967", "https://data.delijn.be/stops/307225"], ["https://data.delijn.be/stops/304451", "https://data.delijn.be/stops/306064"], ["https://data.delijn.be/stops/502713", "https://data.delijn.be/stops/505053"], ["https://data.delijn.be/stops/507947", "https://data.delijn.be/stops/507955"], ["https://data.delijn.be/stops/402571", "https://data.delijn.be/stops/407845"], ["https://data.delijn.be/stops/401847", "https://data.delijn.be/stops/406232"], ["https://data.delijn.be/stops/304377", "https://data.delijn.be/stops/304426"], ["https://data.delijn.be/stops/101547", "https://data.delijn.be/stops/101552"], ["https://data.delijn.be/stops/501157", "https://data.delijn.be/stops/506142"], ["https://data.delijn.be/stops/407400", "https://data.delijn.be/stops/407470"], ["https://data.delijn.be/stops/302788", "https://data.delijn.be/stops/307456"], ["https://data.delijn.be/stops/103684", "https://data.delijn.be/stops/106222"], ["https://data.delijn.be/stops/400564", "https://data.delijn.be/stops/403165"], ["https://data.delijn.be/stops/306325", "https://data.delijn.be/stops/307621"], ["https://data.delijn.be/stops/401574", "https://data.delijn.be/stops/401575"], ["https://data.delijn.be/stops/305624", "https://data.delijn.be/stops/308377"], ["https://data.delijn.be/stops/206338", "https://data.delijn.be/stops/207709"], ["https://data.delijn.be/stops/308146", "https://data.delijn.be/stops/308163"], ["https://data.delijn.be/stops/101802", "https://data.delijn.be/stops/105745"], ["https://data.delijn.be/stops/101483", "https://data.delijn.be/stops/108324"], ["https://data.delijn.be/stops/202715", "https://data.delijn.be/stops/203715"], ["https://data.delijn.be/stops/108511", "https://data.delijn.be/stops/108512"], ["https://data.delijn.be/stops/101531", "https://data.delijn.be/stops/109109"], ["https://data.delijn.be/stops/303746", "https://data.delijn.be/stops/303750"], ["https://data.delijn.be/stops/101519", "https://data.delijn.be/stops/109049"], ["https://data.delijn.be/stops/202739", "https://data.delijn.be/stops/209740"], ["https://data.delijn.be/stops/503784", "https://data.delijn.be/stops/508784"], ["https://data.delijn.be/stops/502190", "https://data.delijn.be/stops/502203"], ["https://data.delijn.be/stops/205698", "https://data.delijn.be/stops/205699"], ["https://data.delijn.be/stops/502820", "https://data.delijn.be/stops/502821"], ["https://data.delijn.be/stops/303016", "https://data.delijn.be/stops/303034"], ["https://data.delijn.be/stops/208055", "https://data.delijn.be/stops/209055"], ["https://data.delijn.be/stops/400080", "https://data.delijn.be/stops/400081"], ["https://data.delijn.be/stops/402813", "https://data.delijn.be/stops/409039"], ["https://data.delijn.be/stops/101186", "https://data.delijn.be/stops/106773"], ["https://data.delijn.be/stops/402681", "https://data.delijn.be/stops/402725"], ["https://data.delijn.be/stops/201556", "https://data.delijn.be/stops/201559"], ["https://data.delijn.be/stops/107266", "https://data.delijn.be/stops/109723"], ["https://data.delijn.be/stops/208696", "https://data.delijn.be/stops/208700"], ["https://data.delijn.be/stops/107639", "https://data.delijn.be/stops/109614"], ["https://data.delijn.be/stops/501092", "https://data.delijn.be/stops/501225"], ["https://data.delijn.be/stops/307410", "https://data.delijn.be/stops/307414"], ["https://data.delijn.be/stops/505789", "https://data.delijn.be/stops/508116"], ["https://data.delijn.be/stops/201093", "https://data.delijn.be/stops/202895"], ["https://data.delijn.be/stops/400837", "https://data.delijn.be/stops/404378"], ["https://data.delijn.be/stops/410006", "https://data.delijn.be/stops/410007"], ["https://data.delijn.be/stops/502485", "https://data.delijn.be/stops/505664"], ["https://data.delijn.be/stops/404360", "https://data.delijn.be/stops/408796"], ["https://data.delijn.be/stops/102024", "https://data.delijn.be/stops/105743"], ["https://data.delijn.be/stops/301987", "https://data.delijn.be/stops/301999"], ["https://data.delijn.be/stops/403597", "https://data.delijn.be/stops/403609"], ["https://data.delijn.be/stops/503395", "https://data.delijn.be/stops/509907"], ["https://data.delijn.be/stops/301744", "https://data.delijn.be/stops/301746"], ["https://data.delijn.be/stops/407613", "https://data.delijn.be/stops/409878"], ["https://data.delijn.be/stops/109916", "https://data.delijn.be/stops/109917"], ["https://data.delijn.be/stops/106273", "https://data.delijn.be/stops/109630"], ["https://data.delijn.be/stops/408904", "https://data.delijn.be/stops/408912"], ["https://data.delijn.be/stops/105846", "https://data.delijn.be/stops/105847"], ["https://data.delijn.be/stops/503370", "https://data.delijn.be/stops/508407"], ["https://data.delijn.be/stops/507690", "https://data.delijn.be/stops/508822"], ["https://data.delijn.be/stops/505978", "https://data.delijn.be/stops/508669"], ["https://data.delijn.be/stops/503760", "https://data.delijn.be/stops/504743"], ["https://data.delijn.be/stops/108989", "https://data.delijn.be/stops/109092"], ["https://data.delijn.be/stops/208265", "https://data.delijn.be/stops/209847"], ["https://data.delijn.be/stops/207844", "https://data.delijn.be/stops/207845"], ["https://data.delijn.be/stops/205724", "https://data.delijn.be/stops/205725"], ["https://data.delijn.be/stops/306862", "https://data.delijn.be/stops/307947"], ["https://data.delijn.be/stops/204150", "https://data.delijn.be/stops/204784"], ["https://data.delijn.be/stops/208134", "https://data.delijn.be/stops/209134"], ["https://data.delijn.be/stops/202980", "https://data.delijn.be/stops/203980"], ["https://data.delijn.be/stops/105608", "https://data.delijn.be/stops/105611"], ["https://data.delijn.be/stops/400703", "https://data.delijn.be/stops/404310"], ["https://data.delijn.be/stops/505960", "https://data.delijn.be/stops/509560"], ["https://data.delijn.be/stops/505675", "https://data.delijn.be/stops/505679"], ["https://data.delijn.be/stops/507410", "https://data.delijn.be/stops/507681"], ["https://data.delijn.be/stops/407978", "https://data.delijn.be/stops/408166"], ["https://data.delijn.be/stops/200513", "https://data.delijn.be/stops/201514"], ["https://data.delijn.be/stops/505367", "https://data.delijn.be/stops/505975"], ["https://data.delijn.be/stops/109216", "https://data.delijn.be/stops/109218"], ["https://data.delijn.be/stops/400259", "https://data.delijn.be/stops/400267"], ["https://data.delijn.be/stops/301801", "https://data.delijn.be/stops/301823"], ["https://data.delijn.be/stops/304821", "https://data.delijn.be/stops/304826"], ["https://data.delijn.be/stops/209054", "https://data.delijn.be/stops/209056"], ["https://data.delijn.be/stops/200351", "https://data.delijn.be/stops/201014"], ["https://data.delijn.be/stops/505721", "https://data.delijn.be/stops/507700"], ["https://data.delijn.be/stops/103773", "https://data.delijn.be/stops/106504"], ["https://data.delijn.be/stops/501243", "https://data.delijn.be/stops/506242"], ["https://data.delijn.be/stops/106531", "https://data.delijn.be/stops/106534"], ["https://data.delijn.be/stops/505173", "https://data.delijn.be/stops/507345"], ["https://data.delijn.be/stops/209145", "https://data.delijn.be/stops/209698"], ["https://data.delijn.be/stops/204578", "https://data.delijn.be/stops/206273"], ["https://data.delijn.be/stops/208747", "https://data.delijn.be/stops/209415"], ["https://data.delijn.be/stops/106505", "https://data.delijn.be/stops/106508"], ["https://data.delijn.be/stops/305257", "https://data.delijn.be/stops/305258"], ["https://data.delijn.be/stops/506365", "https://data.delijn.be/stops/506368"], ["https://data.delijn.be/stops/504335", "https://data.delijn.be/stops/504633"], ["https://data.delijn.be/stops/207950", "https://data.delijn.be/stops/216016"], ["https://data.delijn.be/stops/304852", "https://data.delijn.be/stops/304864"], ["https://data.delijn.be/stops/301466", "https://data.delijn.be/stops/305659"], ["https://data.delijn.be/stops/301969", "https://data.delijn.be/stops/301982"], ["https://data.delijn.be/stops/201428", "https://data.delijn.be/stops/201429"], ["https://data.delijn.be/stops/407157", "https://data.delijn.be/stops/407179"], ["https://data.delijn.be/stops/101891", "https://data.delijn.be/stops/108380"], ["https://data.delijn.be/stops/408506", "https://data.delijn.be/stops/408566"], ["https://data.delijn.be/stops/201867", "https://data.delijn.be/stops/203083"], ["https://data.delijn.be/stops/301103", "https://data.delijn.be/stops/306337"], ["https://data.delijn.be/stops/303248", "https://data.delijn.be/stops/303249"], ["https://data.delijn.be/stops/503073", "https://data.delijn.be/stops/503365"], ["https://data.delijn.be/stops/300850", "https://data.delijn.be/stops/301793"], ["https://data.delijn.be/stops/303419", "https://data.delijn.be/stops/305046"], ["https://data.delijn.be/stops/507948", "https://data.delijn.be/stops/507957"], ["https://data.delijn.be/stops/204747", "https://data.delijn.be/stops/205739"], ["https://data.delijn.be/stops/106150", "https://data.delijn.be/stops/106442"], ["https://data.delijn.be/stops/204558", "https://data.delijn.be/stops/205033"], ["https://data.delijn.be/stops/405817", "https://data.delijn.be/stops/406826"], ["https://data.delijn.be/stops/502357", "https://data.delijn.be/stops/502798"], ["https://data.delijn.be/stops/503060", "https://data.delijn.be/stops/504293"], ["https://data.delijn.be/stops/505712", "https://data.delijn.be/stops/506053"], ["https://data.delijn.be/stops/404488", "https://data.delijn.be/stops/404519"], ["https://data.delijn.be/stops/206583", "https://data.delijn.be/stops/207583"], ["https://data.delijn.be/stops/103723", "https://data.delijn.be/stops/108377"], ["https://data.delijn.be/stops/400737", "https://data.delijn.be/stops/400938"], ["https://data.delijn.be/stops/305494", "https://data.delijn.be/stops/305501"], ["https://data.delijn.be/stops/204995", "https://data.delijn.be/stops/303866"], ["https://data.delijn.be/stops/205682", "https://data.delijn.be/stops/205683"], ["https://data.delijn.be/stops/102424", "https://data.delijn.be/stops/105145"], ["https://data.delijn.be/stops/401492", "https://data.delijn.be/stops/401512"], ["https://data.delijn.be/stops/300540", "https://data.delijn.be/stops/303220"], ["https://data.delijn.be/stops/506259", "https://data.delijn.be/stops/506684"], ["https://data.delijn.be/stops/205654", "https://data.delijn.be/stops/205830"], ["https://data.delijn.be/stops/102824", "https://data.delijn.be/stops/102826"], ["https://data.delijn.be/stops/202858", "https://data.delijn.be/stops/203858"], ["https://data.delijn.be/stops/408898", "https://data.delijn.be/stops/408904"], ["https://data.delijn.be/stops/401818", "https://data.delijn.be/stops/406893"], ["https://data.delijn.be/stops/203162", "https://data.delijn.be/stops/203500"], ["https://data.delijn.be/stops/303849", "https://data.delijn.be/stops/303962"], ["https://data.delijn.be/stops/206041", "https://data.delijn.be/stops/207041"], ["https://data.delijn.be/stops/503676", "https://data.delijn.be/stops/503953"], ["https://data.delijn.be/stops/300203", "https://data.delijn.be/stops/300204"], ["https://data.delijn.be/stops/106711", "https://data.delijn.be/stops/106713"], ["https://data.delijn.be/stops/201754", "https://data.delijn.be/stops/209967"], ["https://data.delijn.be/stops/503396", "https://data.delijn.be/stops/508409"], ["https://data.delijn.be/stops/505025", "https://data.delijn.be/stops/505584"], ["https://data.delijn.be/stops/502385", "https://data.delijn.be/stops/502401"], ["https://data.delijn.be/stops/301004", "https://data.delijn.be/stops/304722"], ["https://data.delijn.be/stops/201378", "https://data.delijn.be/stops/201379"], ["https://data.delijn.be/stops/302083", "https://data.delijn.be/stops/306378"], ["https://data.delijn.be/stops/508393", "https://data.delijn.be/stops/509767"], ["https://data.delijn.be/stops/302879", "https://data.delijn.be/stops/302910"], ["https://data.delijn.be/stops/102661", "https://data.delijn.be/stops/108742"], ["https://data.delijn.be/stops/104310", "https://data.delijn.be/stops/104315"], ["https://data.delijn.be/stops/405731", "https://data.delijn.be/stops/405734"], ["https://data.delijn.be/stops/501134", "https://data.delijn.be/stops/501745"], ["https://data.delijn.be/stops/503090", "https://data.delijn.be/stops/503091"], ["https://data.delijn.be/stops/101276", "https://data.delijn.be/stops/205489"], ["https://data.delijn.be/stops/400873", "https://data.delijn.be/stops/400896"], ["https://data.delijn.be/stops/108701", "https://data.delijn.be/stops/108703"], ["https://data.delijn.be/stops/503603", "https://data.delijn.be/stops/508603"], ["https://data.delijn.be/stops/300160", "https://data.delijn.be/stops/300221"], ["https://data.delijn.be/stops/200566", "https://data.delijn.be/stops/201566"], ["https://data.delijn.be/stops/202214", "https://data.delijn.be/stops/210056"], ["https://data.delijn.be/stops/208095", "https://data.delijn.be/stops/209095"], ["https://data.delijn.be/stops/501309", "https://data.delijn.be/stops/506309"], ["https://data.delijn.be/stops/503108", "https://data.delijn.be/stops/504623"], ["https://data.delijn.be/stops/307232", "https://data.delijn.be/stops/307233"], ["https://data.delijn.be/stops/406097", "https://data.delijn.be/stops/406115"], ["https://data.delijn.be/stops/504023", "https://data.delijn.be/stops/505212"], ["https://data.delijn.be/stops/304248", "https://data.delijn.be/stops/304267"], ["https://data.delijn.be/stops/501445", "https://data.delijn.be/stops/501446"], ["https://data.delijn.be/stops/302467", "https://data.delijn.be/stops/305956"], ["https://data.delijn.be/stops/502712", "https://data.delijn.be/stops/507712"], ["https://data.delijn.be/stops/510006", "https://data.delijn.be/stops/510007"], ["https://data.delijn.be/stops/404314", "https://data.delijn.be/stops/404315"], ["https://data.delijn.be/stops/207760", "https://data.delijn.be/stops/207779"], ["https://data.delijn.be/stops/302051", "https://data.delijn.be/stops/302079"], ["https://data.delijn.be/stops/108653", "https://data.delijn.be/stops/306596"], ["https://data.delijn.be/stops/101525", "https://data.delijn.be/stops/101640"], ["https://data.delijn.be/stops/503322", "https://data.delijn.be/stops/503323"], ["https://data.delijn.be/stops/107352", "https://data.delijn.be/stops/108176"], ["https://data.delijn.be/stops/301652", "https://data.delijn.be/stops/301653"], ["https://data.delijn.be/stops/504677", "https://data.delijn.be/stops/505434"], ["https://data.delijn.be/stops/209368", "https://data.delijn.be/stops/209369"], ["https://data.delijn.be/stops/303709", "https://data.delijn.be/stops/307258"], ["https://data.delijn.be/stops/402357", "https://data.delijn.be/stops/410094"], ["https://data.delijn.be/stops/301458", "https://data.delijn.be/stops/305665"], ["https://data.delijn.be/stops/106680", "https://data.delijn.be/stops/109122"], ["https://data.delijn.be/stops/406456", "https://data.delijn.be/stops/406495"], ["https://data.delijn.be/stops/104475", "https://data.delijn.be/stops/105700"], ["https://data.delijn.be/stops/505405", "https://data.delijn.be/stops/506765"], ["https://data.delijn.be/stops/106912", "https://data.delijn.be/stops/107253"], ["https://data.delijn.be/stops/404703", "https://data.delijn.be/stops/404713"], ["https://data.delijn.be/stops/401765", "https://data.delijn.be/stops/401872"], ["https://data.delijn.be/stops/206127", "https://data.delijn.be/stops/206722"], ["https://data.delijn.be/stops/207685", "https://data.delijn.be/stops/216012"], ["https://data.delijn.be/stops/304391", "https://data.delijn.be/stops/304408"], ["https://data.delijn.be/stops/106398", "https://data.delijn.be/stops/106574"], ["https://data.delijn.be/stops/300857", "https://data.delijn.be/stops/307444"], ["https://data.delijn.be/stops/409046", "https://data.delijn.be/stops/409443"], ["https://data.delijn.be/stops/403808", "https://data.delijn.be/stops/403809"], ["https://data.delijn.be/stops/206013", "https://data.delijn.be/stops/207016"], ["https://data.delijn.be/stops/108912", "https://data.delijn.be/stops/108914"], ["https://data.delijn.be/stops/407804", "https://data.delijn.be/stops/407805"], ["https://data.delijn.be/stops/104446", "https://data.delijn.be/stops/303880"], ["https://data.delijn.be/stops/402370", "https://data.delijn.be/stops/402501"], ["https://data.delijn.be/stops/201778", "https://data.delijn.be/stops/208250"], ["https://data.delijn.be/stops/300547", "https://data.delijn.be/stops/300618"], ["https://data.delijn.be/stops/104016", "https://data.delijn.be/stops/104018"], ["https://data.delijn.be/stops/300684", "https://data.delijn.be/stops/300685"], ["https://data.delijn.be/stops/503109", "https://data.delijn.be/stops/503416"], ["https://data.delijn.be/stops/304892", "https://data.delijn.be/stops/304900"], ["https://data.delijn.be/stops/105770", "https://data.delijn.be/stops/105780"], ["https://data.delijn.be/stops/205100", "https://data.delijn.be/stops/205696"], ["https://data.delijn.be/stops/400672", "https://data.delijn.be/stops/402620"], ["https://data.delijn.be/stops/502338", "https://data.delijn.be/stops/505009"], ["https://data.delijn.be/stops/502425", "https://data.delijn.be/stops/507308"], ["https://data.delijn.be/stops/501550", "https://data.delijn.be/stops/506635"], ["https://data.delijn.be/stops/401451", "https://data.delijn.be/stops/401553"], ["https://data.delijn.be/stops/201918", "https://data.delijn.be/stops/207833"], ["https://data.delijn.be/stops/207111", "https://data.delijn.be/stops/207112"], ["https://data.delijn.be/stops/106227", "https://data.delijn.be/stops/109126"], ["https://data.delijn.be/stops/109266", "https://data.delijn.be/stops/109267"], ["https://data.delijn.be/stops/401543", "https://data.delijn.be/stops/402038"], ["https://data.delijn.be/stops/204369", "https://data.delijn.be/stops/205182"], ["https://data.delijn.be/stops/501213", "https://data.delijn.be/stops/506213"], ["https://data.delijn.be/stops/200761", "https://data.delijn.be/stops/209305"], ["https://data.delijn.be/stops/301326", "https://data.delijn.be/stops/306650"], ["https://data.delijn.be/stops/503462", "https://data.delijn.be/stops/503473"], ["https://data.delijn.be/stops/304555", "https://data.delijn.be/stops/304558"], ["https://data.delijn.be/stops/303531", "https://data.delijn.be/stops/303533"], ["https://data.delijn.be/stops/304798", "https://data.delijn.be/stops/306643"], ["https://data.delijn.be/stops/300455", "https://data.delijn.be/stops/305039"], ["https://data.delijn.be/stops/402071", "https://data.delijn.be/stops/405583"], ["https://data.delijn.be/stops/407398", "https://data.delijn.be/stops/407422"], ["https://data.delijn.be/stops/303462", "https://data.delijn.be/stops/303477"], ["https://data.delijn.be/stops/206368", "https://data.delijn.be/stops/207368"], ["https://data.delijn.be/stops/505669", "https://data.delijn.be/stops/505982"], ["https://data.delijn.be/stops/109808", "https://data.delijn.be/stops/109812"], ["https://data.delijn.be/stops/400501", "https://data.delijn.be/stops/405558"], ["https://data.delijn.be/stops/503065", "https://data.delijn.be/stops/504850"], ["https://data.delijn.be/stops/400864", "https://data.delijn.be/stops/409530"], ["https://data.delijn.be/stops/205317", "https://data.delijn.be/stops/205362"], ["https://data.delijn.be/stops/102213", "https://data.delijn.be/stops/103314"], ["https://data.delijn.be/stops/301824", "https://data.delijn.be/stops/301844"], ["https://data.delijn.be/stops/304857", "https://data.delijn.be/stops/305507"], ["https://data.delijn.be/stops/502474", "https://data.delijn.be/stops/505808"], ["https://data.delijn.be/stops/504592", "https://data.delijn.be/stops/504597"], ["https://data.delijn.be/stops/506107", "https://data.delijn.be/stops/506503"], ["https://data.delijn.be/stops/405797", "https://data.delijn.be/stops/406386"], ["https://data.delijn.be/stops/207357", "https://data.delijn.be/stops/207733"], ["https://data.delijn.be/stops/104028", "https://data.delijn.be/stops/107312"], ["https://data.delijn.be/stops/106178", "https://data.delijn.be/stops/106179"], ["https://data.delijn.be/stops/407231", "https://data.delijn.be/stops/408799"], ["https://data.delijn.be/stops/307073", "https://data.delijn.be/stops/307074"], ["https://data.delijn.be/stops/208608", "https://data.delijn.be/stops/209607"], ["https://data.delijn.be/stops/304942", "https://data.delijn.be/stops/304944"], ["https://data.delijn.be/stops/101757", "https://data.delijn.be/stops/103646"], ["https://data.delijn.be/stops/209591", "https://data.delijn.be/stops/301420"], ["https://data.delijn.be/stops/302572", "https://data.delijn.be/stops/303299"], ["https://data.delijn.be/stops/200860", "https://data.delijn.be/stops/201955"], ["https://data.delijn.be/stops/102969", "https://data.delijn.be/stops/106041"], ["https://data.delijn.be/stops/502514", "https://data.delijn.be/stops/502925"], ["https://data.delijn.be/stops/402407", "https://data.delijn.be/stops/402418"], ["https://data.delijn.be/stops/102737", "https://data.delijn.be/stops/105521"], ["https://data.delijn.be/stops/503895", "https://data.delijn.be/stops/508895"], ["https://data.delijn.be/stops/305696", "https://data.delijn.be/stops/305700"], ["https://data.delijn.be/stops/101666", "https://data.delijn.be/stops/106488"], ["https://data.delijn.be/stops/308138", "https://data.delijn.be/stops/308139"], ["https://data.delijn.be/stops/300435", "https://data.delijn.be/stops/301275"], ["https://data.delijn.be/stops/503672", "https://data.delijn.be/stops/503674"], ["https://data.delijn.be/stops/201601", "https://data.delijn.be/stops/201843"], ["https://data.delijn.be/stops/206722", "https://data.delijn.be/stops/207087"], ["https://data.delijn.be/stops/102431", "https://data.delijn.be/stops/109108"], ["https://data.delijn.be/stops/203636", "https://data.delijn.be/stops/205070"], ["https://data.delijn.be/stops/202933", "https://data.delijn.be/stops/208724"], ["https://data.delijn.be/stops/403489", "https://data.delijn.be/stops/403490"], ["https://data.delijn.be/stops/305428", "https://data.delijn.be/stops/305429"], ["https://data.delijn.be/stops/302724", "https://data.delijn.be/stops/307337"], ["https://data.delijn.be/stops/103609", "https://data.delijn.be/stops/106027"], ["https://data.delijn.be/stops/109875", "https://data.delijn.be/stops/109876"], ["https://data.delijn.be/stops/101903", "https://data.delijn.be/stops/101904"], ["https://data.delijn.be/stops/103290", "https://data.delijn.be/stops/103354"], ["https://data.delijn.be/stops/507943", "https://data.delijn.be/stops/507958"], ["https://data.delijn.be/stops/304848", "https://data.delijn.be/stops/304865"], ["https://data.delijn.be/stops/103001", "https://data.delijn.be/stops/105176"], ["https://data.delijn.be/stops/501424", "https://data.delijn.be/stops/501633"], ["https://data.delijn.be/stops/102112", "https://data.delijn.be/stops/102113"], ["https://data.delijn.be/stops/504255", "https://data.delijn.be/stops/505992"], ["https://data.delijn.be/stops/400943", "https://data.delijn.be/stops/406946"], ["https://data.delijn.be/stops/500924", "https://data.delijn.be/stops/505637"], ["https://data.delijn.be/stops/302980", "https://data.delijn.be/stops/302981"], ["https://data.delijn.be/stops/207309", "https://data.delijn.be/stops/207392"], ["https://data.delijn.be/stops/504346", "https://data.delijn.be/stops/509353"], ["https://data.delijn.be/stops/405906", "https://data.delijn.be/stops/405965"], ["https://data.delijn.be/stops/302475", "https://data.delijn.be/stops/308832"], ["https://data.delijn.be/stops/108086", "https://data.delijn.be/stops/108447"], ["https://data.delijn.be/stops/406041", "https://data.delijn.be/stops/406142"], ["https://data.delijn.be/stops/307241", "https://data.delijn.be/stops/307251"], ["https://data.delijn.be/stops/504279", "https://data.delijn.be/stops/509037"], ["https://data.delijn.be/stops/301844", "https://data.delijn.be/stops/305981"], ["https://data.delijn.be/stops/504685", "https://data.delijn.be/stops/509224"], ["https://data.delijn.be/stops/201478", "https://data.delijn.be/stops/201894"], ["https://data.delijn.be/stops/200062", "https://data.delijn.be/stops/200271"], ["https://data.delijn.be/stops/107323", "https://data.delijn.be/stops/108823"], ["https://data.delijn.be/stops/405865", "https://data.delijn.be/stops/409425"], ["https://data.delijn.be/stops/204187", "https://data.delijn.be/stops/205228"], ["https://data.delijn.be/stops/108150", "https://data.delijn.be/stops/108151"], ["https://data.delijn.be/stops/101900", "https://data.delijn.be/stops/106005"], ["https://data.delijn.be/stops/502039", "https://data.delijn.be/stops/505203"], ["https://data.delijn.be/stops/105542", "https://data.delijn.be/stops/106249"], ["https://data.delijn.be/stops/102736", "https://data.delijn.be/stops/105523"], ["https://data.delijn.be/stops/504040", "https://data.delijn.be/stops/505787"], ["https://data.delijn.be/stops/503692", "https://data.delijn.be/stops/503991"], ["https://data.delijn.be/stops/402280", "https://data.delijn.be/stops/402281"], ["https://data.delijn.be/stops/206361", "https://data.delijn.be/stops/207746"], ["https://data.delijn.be/stops/502519", "https://data.delijn.be/stops/507519"], ["https://data.delijn.be/stops/201909", "https://data.delijn.be/stops/203498"], ["https://data.delijn.be/stops/306715", "https://data.delijn.be/stops/306716"], ["https://data.delijn.be/stops/400920", "https://data.delijn.be/stops/400921"], ["https://data.delijn.be/stops/402794", "https://data.delijn.be/stops/402795"], ["https://data.delijn.be/stops/403776", "https://data.delijn.be/stops/403793"], ["https://data.delijn.be/stops/402290", "https://data.delijn.be/stops/402291"], ["https://data.delijn.be/stops/102456", "https://data.delijn.be/stops/102457"], ["https://data.delijn.be/stops/206178", "https://data.delijn.be/stops/303858"], ["https://data.delijn.be/stops/202479", "https://data.delijn.be/stops/203479"], ["https://data.delijn.be/stops/403323", "https://data.delijn.be/stops/407595"], ["https://data.delijn.be/stops/409115", "https://data.delijn.be/stops/409811"], ["https://data.delijn.be/stops/400673", "https://data.delijn.be/stops/400677"], ["https://data.delijn.be/stops/407698", "https://data.delijn.be/stops/407699"], ["https://data.delijn.be/stops/502025", "https://data.delijn.be/stops/505768"], ["https://data.delijn.be/stops/201637", "https://data.delijn.be/stops/201940"], ["https://data.delijn.be/stops/301184", "https://data.delijn.be/stops/306004"], ["https://data.delijn.be/stops/508506", "https://data.delijn.be/stops/508510"], ["https://data.delijn.be/stops/206263", "https://data.delijn.be/stops/206268"], ["https://data.delijn.be/stops/102680", "https://data.delijn.be/stops/102681"], ["https://data.delijn.be/stops/503734", "https://data.delijn.be/stops/508690"], ["https://data.delijn.be/stops/304042", "https://data.delijn.be/stops/304043"], ["https://data.delijn.be/stops/300176", "https://data.delijn.be/stops/300221"], ["https://data.delijn.be/stops/308209", "https://data.delijn.be/stops/308218"], ["https://data.delijn.be/stops/504580", "https://data.delijn.be/stops/509580"], ["https://data.delijn.be/stops/300279", "https://data.delijn.be/stops/307475"], ["https://data.delijn.be/stops/302335", "https://data.delijn.be/stops/308357"], ["https://data.delijn.be/stops/408327", "https://data.delijn.be/stops/408335"], ["https://data.delijn.be/stops/301475", "https://data.delijn.be/stops/301488"], ["https://data.delijn.be/stops/301719", "https://data.delijn.be/stops/307889"], ["https://data.delijn.be/stops/202368", "https://data.delijn.be/stops/203368"], ["https://data.delijn.be/stops/208686", "https://data.delijn.be/stops/208691"], ["https://data.delijn.be/stops/505238", "https://data.delijn.be/stops/505341"], ["https://data.delijn.be/stops/303376", "https://data.delijn.be/stops/308869"], ["https://data.delijn.be/stops/206671", "https://data.delijn.be/stops/208658"], ["https://data.delijn.be/stops/206033", "https://data.delijn.be/stops/206901"], ["https://data.delijn.be/stops/206946", "https://data.delijn.be/stops/208073"], ["https://data.delijn.be/stops/202794", "https://data.delijn.be/stops/203794"], ["https://data.delijn.be/stops/308294", "https://data.delijn.be/stops/308295"], ["https://data.delijn.be/stops/401454", "https://data.delijn.be/stops/407120"], ["https://data.delijn.be/stops/103820", "https://data.delijn.be/stops/104260"], ["https://data.delijn.be/stops/301180", "https://data.delijn.be/stops/301256"], ["https://data.delijn.be/stops/408991", "https://data.delijn.be/stops/408992"], ["https://data.delijn.be/stops/503143", "https://data.delijn.be/stops/503144"], ["https://data.delijn.be/stops/503450", "https://data.delijn.be/stops/508197"], ["https://data.delijn.be/stops/206058", "https://data.delijn.be/stops/207967"], ["https://data.delijn.be/stops/504252", "https://data.delijn.be/stops/509369"], ["https://data.delijn.be/stops/300274", "https://data.delijn.be/stops/306286"], ["https://data.delijn.be/stops/200082", "https://data.delijn.be/stops/209291"], ["https://data.delijn.be/stops/200561", "https://data.delijn.be/stops/201564"], ["https://data.delijn.be/stops/503965", "https://data.delijn.be/stops/508246"], ["https://data.delijn.be/stops/402357", "https://data.delijn.be/stops/402375"], ["https://data.delijn.be/stops/209682", "https://data.delijn.be/stops/209683"], ["https://data.delijn.be/stops/300621", "https://data.delijn.be/stops/300622"], ["https://data.delijn.be/stops/101161", "https://data.delijn.be/stops/101162"], ["https://data.delijn.be/stops/303575", "https://data.delijn.be/stops/307290"], ["https://data.delijn.be/stops/506244", "https://data.delijn.be/stops/506425"], ["https://data.delijn.be/stops/300023", "https://data.delijn.be/stops/307000"], ["https://data.delijn.be/stops/302595", "https://data.delijn.be/stops/303612"], ["https://data.delijn.be/stops/302140", "https://data.delijn.be/stops/308106"], ["https://data.delijn.be/stops/405918", "https://data.delijn.be/stops/405993"], ["https://data.delijn.be/stops/403699", "https://data.delijn.be/stops/407294"], ["https://data.delijn.be/stops/205047", "https://data.delijn.be/stops/205302"], ["https://data.delijn.be/stops/406243", "https://data.delijn.be/stops/408416"], ["https://data.delijn.be/stops/103260", "https://data.delijn.be/stops/107705"], ["https://data.delijn.be/stops/102013", "https://data.delijn.be/stops/104114"], ["https://data.delijn.be/stops/303715", "https://data.delijn.be/stops/303717"], ["https://data.delijn.be/stops/109323", "https://data.delijn.be/stops/306862"], ["https://data.delijn.be/stops/208710", "https://data.delijn.be/stops/208712"], ["https://data.delijn.be/stops/104557", "https://data.delijn.be/stops/104558"], ["https://data.delijn.be/stops/301197", "https://data.delijn.be/stops/302411"], ["https://data.delijn.be/stops/104129", "https://data.delijn.be/stops/107485"], ["https://data.delijn.be/stops/219080", "https://data.delijn.be/stops/304659"], ["https://data.delijn.be/stops/206164", "https://data.delijn.be/stops/308797"], ["https://data.delijn.be/stops/109356", "https://data.delijn.be/stops/109357"], ["https://data.delijn.be/stops/305015", "https://data.delijn.be/stops/305016"], ["https://data.delijn.be/stops/108071", "https://data.delijn.be/stops/108137"], ["https://data.delijn.be/stops/305388", "https://data.delijn.be/stops/333234"], ["https://data.delijn.be/stops/101888", "https://data.delijn.be/stops/109995"], ["https://data.delijn.be/stops/400611", "https://data.delijn.be/stops/308155"], ["https://data.delijn.be/stops/306385", "https://data.delijn.be/stops/307220"], ["https://data.delijn.be/stops/508880", "https://data.delijn.be/stops/508881"], ["https://data.delijn.be/stops/406560", "https://data.delijn.be/stops/406561"], ["https://data.delijn.be/stops/401502", "https://data.delijn.be/stops/401503"], ["https://data.delijn.be/stops/504255", "https://data.delijn.be/stops/504296"], ["https://data.delijn.be/stops/504378", "https://data.delijn.be/stops/504379"], ["https://data.delijn.be/stops/504628", "https://data.delijn.be/stops/504631"], ["https://data.delijn.be/stops/503028", "https://data.delijn.be/stops/507960"], ["https://data.delijn.be/stops/207426", "https://data.delijn.be/stops/207832"], ["https://data.delijn.be/stops/300474", "https://data.delijn.be/stops/304974"], ["https://data.delijn.be/stops/502195", "https://data.delijn.be/stops/507195"], ["https://data.delijn.be/stops/303580", "https://data.delijn.be/stops/306396"], ["https://data.delijn.be/stops/200030", "https://data.delijn.be/stops/201031"], ["https://data.delijn.be/stops/405618", "https://data.delijn.be/stops/405619"], ["https://data.delijn.be/stops/204022", "https://data.delijn.be/stops/206283"], ["https://data.delijn.be/stops/105679", "https://data.delijn.be/stops/105683"], ["https://data.delijn.be/stops/306602", "https://data.delijn.be/stops/306604"], ["https://data.delijn.be/stops/203632", "https://data.delijn.be/stops/203634"], ["https://data.delijn.be/stops/105749", "https://data.delijn.be/stops/105751"], ["https://data.delijn.be/stops/206350", "https://data.delijn.be/stops/207689"], ["https://data.delijn.be/stops/202583", "https://data.delijn.be/stops/203576"], ["https://data.delijn.be/stops/206344", "https://data.delijn.be/stops/206688"], ["https://data.delijn.be/stops/402653", "https://data.delijn.be/stops/405485"], ["https://data.delijn.be/stops/503459", "https://data.delijn.be/stops/504801"], ["https://data.delijn.be/stops/200386", "https://data.delijn.be/stops/201649"], ["https://data.delijn.be/stops/301901", "https://data.delijn.be/stops/306007"], ["https://data.delijn.be/stops/501005", "https://data.delijn.be/stops/501595"], ["https://data.delijn.be/stops/406131", "https://data.delijn.be/stops/406133"], ["https://data.delijn.be/stops/206487", "https://data.delijn.be/stops/207487"], ["https://data.delijn.be/stops/505368", "https://data.delijn.be/stops/509055"], ["https://data.delijn.be/stops/400444", "https://data.delijn.be/stops/401199"], ["https://data.delijn.be/stops/503863", "https://data.delijn.be/stops/507719"], ["https://data.delijn.be/stops/103270", "https://data.delijn.be/stops/103275"], ["https://data.delijn.be/stops/308833", "https://data.delijn.be/stops/308834"], ["https://data.delijn.be/stops/402172", "https://data.delijn.be/stops/402173"], ["https://data.delijn.be/stops/203994", "https://data.delijn.be/stops/203997"], ["https://data.delijn.be/stops/509337", "https://data.delijn.be/stops/509338"], ["https://data.delijn.be/stops/308791", "https://data.delijn.be/stops/308792"], ["https://data.delijn.be/stops/406331", "https://data.delijn.be/stops/410394"], ["https://data.delijn.be/stops/403986", "https://data.delijn.be/stops/404033"], ["https://data.delijn.be/stops/206420", "https://data.delijn.be/stops/217012"], ["https://data.delijn.be/stops/302234", "https://data.delijn.be/stops/302236"], ["https://data.delijn.be/stops/407933", "https://data.delijn.be/stops/407934"], ["https://data.delijn.be/stops/201636", "https://data.delijn.be/stops/210123"], ["https://data.delijn.be/stops/400073", "https://data.delijn.be/stops/409143"], ["https://data.delijn.be/stops/204405", "https://data.delijn.be/stops/205405"], ["https://data.delijn.be/stops/202745", "https://data.delijn.be/stops/202946"], ["https://data.delijn.be/stops/403436", "https://data.delijn.be/stops/403498"], ["https://data.delijn.be/stops/200159", "https://data.delijn.be/stops/201159"], ["https://data.delijn.be/stops/303348", "https://data.delijn.be/stops/303390"], ["https://data.delijn.be/stops/103341", "https://data.delijn.be/stops/103342"], ["https://data.delijn.be/stops/201163", "https://data.delijn.be/stops/201420"], ["https://data.delijn.be/stops/501235", "https://data.delijn.be/stops/506245"], ["https://data.delijn.be/stops/407938", "https://data.delijn.be/stops/410345"], ["https://data.delijn.be/stops/205365", "https://data.delijn.be/stops/205366"], ["https://data.delijn.be/stops/202778", "https://data.delijn.be/stops/203769"], ["https://data.delijn.be/stops/207012", "https://data.delijn.be/stops/217009"], ["https://data.delijn.be/stops/504612", "https://data.delijn.be/stops/509612"], ["https://data.delijn.be/stops/103766", "https://data.delijn.be/stops/108734"], ["https://data.delijn.be/stops/103221", "https://data.delijn.be/stops/104572"], ["https://data.delijn.be/stops/207034", "https://data.delijn.be/stops/207874"], ["https://data.delijn.be/stops/302881", "https://data.delijn.be/stops/307049"], ["https://data.delijn.be/stops/505281", "https://data.delijn.be/stops/505923"], ["https://data.delijn.be/stops/203070", "https://data.delijn.be/stops/205926"], ["https://data.delijn.be/stops/104691", "https://data.delijn.be/stops/107361"], ["https://data.delijn.be/stops/104509", "https://data.delijn.be/stops/107917"], ["https://data.delijn.be/stops/103225", "https://data.delijn.be/stops/108575"], ["https://data.delijn.be/stops/300111", "https://data.delijn.be/stops/306851"], ["https://data.delijn.be/stops/400465", "https://data.delijn.be/stops/400470"], ["https://data.delijn.be/stops/303036", "https://data.delijn.be/stops/305158"], ["https://data.delijn.be/stops/500564", "https://data.delijn.be/stops/500566"], ["https://data.delijn.be/stops/508240", "https://data.delijn.be/stops/508513"], ["https://data.delijn.be/stops/104652", "https://data.delijn.be/stops/308480"], ["https://data.delijn.be/stops/400787", "https://data.delijn.be/stops/409596"], ["https://data.delijn.be/stops/505073", "https://data.delijn.be/stops/505115"], ["https://data.delijn.be/stops/102622", "https://data.delijn.be/stops/102629"], ["https://data.delijn.be/stops/400265", "https://data.delijn.be/stops/406812"], ["https://data.delijn.be/stops/102265", "https://data.delijn.be/stops/109687"], ["https://data.delijn.be/stops/406194", "https://data.delijn.be/stops/406219"], ["https://data.delijn.be/stops/400706", "https://data.delijn.be/stops/400707"], ["https://data.delijn.be/stops/106845", "https://data.delijn.be/stops/106847"], ["https://data.delijn.be/stops/301603", "https://data.delijn.be/stops/304499"], ["https://data.delijn.be/stops/300343", "https://data.delijn.be/stops/300344"], ["https://data.delijn.be/stops/501224", "https://data.delijn.be/stops/505231"], ["https://data.delijn.be/stops/208706", "https://data.delijn.be/stops/209706"], ["https://data.delijn.be/stops/206113", "https://data.delijn.be/stops/207113"], ["https://data.delijn.be/stops/202826", "https://data.delijn.be/stops/202837"], ["https://data.delijn.be/stops/501542", "https://data.delijn.be/stops/507731"], ["https://data.delijn.be/stops/102312", "https://data.delijn.be/stops/106256"], ["https://data.delijn.be/stops/101932", "https://data.delijn.be/stops/106210"], ["https://data.delijn.be/stops/502177", "https://data.delijn.be/stops/505550"], ["https://data.delijn.be/stops/203497", "https://data.delijn.be/stops/209867"], ["https://data.delijn.be/stops/102609", "https://data.delijn.be/stops/105529"], ["https://data.delijn.be/stops/105795", "https://data.delijn.be/stops/105797"], ["https://data.delijn.be/stops/300666", "https://data.delijn.be/stops/300676"], ["https://data.delijn.be/stops/502761", "https://data.delijn.be/stops/507761"], ["https://data.delijn.be/stops/108336", "https://data.delijn.be/stops/108337"], ["https://data.delijn.be/stops/106208", "https://data.delijn.be/stops/109902"], ["https://data.delijn.be/stops/406092", "https://data.delijn.be/stops/406093"], ["https://data.delijn.be/stops/407319", "https://data.delijn.be/stops/407787"], ["https://data.delijn.be/stops/200353", "https://data.delijn.be/stops/201014"], ["https://data.delijn.be/stops/301194", "https://data.delijn.be/stops/301239"], ["https://data.delijn.be/stops/404654", "https://data.delijn.be/stops/404655"], ["https://data.delijn.be/stops/402778", "https://data.delijn.be/stops/402798"], ["https://data.delijn.be/stops/200511", "https://data.delijn.be/stops/201551"], ["https://data.delijn.be/stops/109021", "https://data.delijn.be/stops/109024"], ["https://data.delijn.be/stops/203029", "https://data.delijn.be/stops/203032"], ["https://data.delijn.be/stops/300868", "https://data.delijn.be/stops/302221"], ["https://data.delijn.be/stops/206709", "https://data.delijn.be/stops/206969"], ["https://data.delijn.be/stops/501549", "https://data.delijn.be/stops/501741"], ["https://data.delijn.be/stops/507015", "https://data.delijn.be/stops/508909"], ["https://data.delijn.be/stops/302741", "https://data.delijn.be/stops/306164"], ["https://data.delijn.be/stops/301401", "https://data.delijn.be/stops/301403"], ["https://data.delijn.be/stops/301858", "https://data.delijn.be/stops/301865"], ["https://data.delijn.be/stops/303057", "https://data.delijn.be/stops/304927"], ["https://data.delijn.be/stops/507611", "https://data.delijn.be/stops/509880"], ["https://data.delijn.be/stops/103225", "https://data.delijn.be/stops/103240"], ["https://data.delijn.be/stops/407772", "https://data.delijn.be/stops/408847"], ["https://data.delijn.be/stops/107902", "https://data.delijn.be/stops/107906"], ["https://data.delijn.be/stops/200845", "https://data.delijn.be/stops/200846"], ["https://data.delijn.be/stops/108188", "https://data.delijn.be/stops/108353"], ["https://data.delijn.be/stops/201747", "https://data.delijn.be/stops/202160"], ["https://data.delijn.be/stops/108972", "https://data.delijn.be/stops/109690"], ["https://data.delijn.be/stops/107967", "https://data.delijn.be/stops/108427"], ["https://data.delijn.be/stops/405179", "https://data.delijn.be/stops/405216"], ["https://data.delijn.be/stops/402339", "https://data.delijn.be/stops/410075"], ["https://data.delijn.be/stops/102485", "https://data.delijn.be/stops/107660"], ["https://data.delijn.be/stops/301632", "https://data.delijn.be/stops/303935"], ["https://data.delijn.be/stops/206716", "https://data.delijn.be/stops/206868"], ["https://data.delijn.be/stops/107148", "https://data.delijn.be/stops/108931"], ["https://data.delijn.be/stops/502203", "https://data.delijn.be/stops/507190"], ["https://data.delijn.be/stops/204614", "https://data.delijn.be/stops/205655"], ["https://data.delijn.be/stops/200405", "https://data.delijn.be/stops/201742"], ["https://data.delijn.be/stops/208760", "https://data.delijn.be/stops/208762"], ["https://data.delijn.be/stops/307167", "https://data.delijn.be/stops/307912"], ["https://data.delijn.be/stops/304557", "https://data.delijn.be/stops/307027"], ["https://data.delijn.be/stops/406559", "https://data.delijn.be/stops/406567"], ["https://data.delijn.be/stops/201418", "https://data.delijn.be/stops/208843"], ["https://data.delijn.be/stops/307718", "https://data.delijn.be/stops/307719"], ["https://data.delijn.be/stops/504519", "https://data.delijn.be/stops/509522"], ["https://data.delijn.be/stops/107559", "https://data.delijn.be/stops/109440"], ["https://data.delijn.be/stops/200924", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/406774", "https://data.delijn.be/stops/406785"], ["https://data.delijn.be/stops/405168", "https://data.delijn.be/stops/405170"], ["https://data.delijn.be/stops/504611", "https://data.delijn.be/stops/505422"], ["https://data.delijn.be/stops/105747", "https://data.delijn.be/stops/109828"], ["https://data.delijn.be/stops/106498", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/402519", "https://data.delijn.be/stops/402588"], ["https://data.delijn.be/stops/502074", "https://data.delijn.be/stops/507074"], ["https://data.delijn.be/stops/201692", "https://data.delijn.be/stops/201719"], ["https://data.delijn.be/stops/208620", "https://data.delijn.be/stops/208846"], ["https://data.delijn.be/stops/408799", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/206731", "https://data.delijn.be/stops/207979"], ["https://data.delijn.be/stops/208068", "https://data.delijn.be/stops/208088"], ["https://data.delijn.be/stops/203936", "https://data.delijn.be/stops/203937"], ["https://data.delijn.be/stops/305092", "https://data.delijn.be/stops/305094"], ["https://data.delijn.be/stops/208060", "https://data.delijn.be/stops/209059"], ["https://data.delijn.be/stops/304166", "https://data.delijn.be/stops/307536"], ["https://data.delijn.be/stops/509555", "https://data.delijn.be/stops/509565"], ["https://data.delijn.be/stops/209279", "https://data.delijn.be/stops/209280"], ["https://data.delijn.be/stops/106057", "https://data.delijn.be/stops/109946"], ["https://data.delijn.be/stops/401834", "https://data.delijn.be/stops/406047"], ["https://data.delijn.be/stops/308060", "https://data.delijn.be/stops/308063"], ["https://data.delijn.be/stops/200034", "https://data.delijn.be/stops/209703"], ["https://data.delijn.be/stops/400455", "https://data.delijn.be/stops/400456"], ["https://data.delijn.be/stops/202199", "https://data.delijn.be/stops/202200"], ["https://data.delijn.be/stops/200342", "https://data.delijn.be/stops/201378"], ["https://data.delijn.be/stops/505686", "https://data.delijn.be/stops/507071"], ["https://data.delijn.be/stops/304030", "https://data.delijn.be/stops/304109"], ["https://data.delijn.be/stops/300811", "https://data.delijn.be/stops/300832"], ["https://data.delijn.be/stops/504046", "https://data.delijn.be/stops/509042"], ["https://data.delijn.be/stops/204017", "https://data.delijn.be/stops/204704"], ["https://data.delijn.be/stops/104103", "https://data.delijn.be/stops/104104"], ["https://data.delijn.be/stops/502235", "https://data.delijn.be/stops/507235"], ["https://data.delijn.be/stops/201948", "https://data.delijn.be/stops/202467"], ["https://data.delijn.be/stops/503330", "https://data.delijn.be/stops/503772"], ["https://data.delijn.be/stops/107456", "https://data.delijn.be/stops/107458"], ["https://data.delijn.be/stops/307431", "https://data.delijn.be/stops/307432"], ["https://data.delijn.be/stops/406166", "https://data.delijn.be/stops/406177"], ["https://data.delijn.be/stops/200763", "https://data.delijn.be/stops/209382"], ["https://data.delijn.be/stops/302226", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/307305", "https://data.delijn.be/stops/307312"], ["https://data.delijn.be/stops/304668", "https://data.delijn.be/stops/304669"], ["https://data.delijn.be/stops/202669", "https://data.delijn.be/stops/202891"], ["https://data.delijn.be/stops/506000", "https://data.delijn.be/stops/508163"], ["https://data.delijn.be/stops/103594", "https://data.delijn.be/stops/103595"], ["https://data.delijn.be/stops/503898", "https://data.delijn.be/stops/505641"], ["https://data.delijn.be/stops/401827", "https://data.delijn.be/stops/406018"], ["https://data.delijn.be/stops/106154", "https://data.delijn.be/stops/106156"], ["https://data.delijn.be/stops/308101", "https://data.delijn.be/stops/308103"], ["https://data.delijn.be/stops/402544", "https://data.delijn.be/stops/402631"], ["https://data.delijn.be/stops/304136", "https://data.delijn.be/stops/307564"], ["https://data.delijn.be/stops/103343", "https://data.delijn.be/stops/104390"], ["https://data.delijn.be/stops/408506", "https://data.delijn.be/stops/408795"], ["https://data.delijn.be/stops/303854", "https://data.delijn.be/stops/303978"], ["https://data.delijn.be/stops/106310", "https://data.delijn.be/stops/106311"], ["https://data.delijn.be/stops/300862", "https://data.delijn.be/stops/301059"], ["https://data.delijn.be/stops/405440", "https://data.delijn.be/stops/302849"], ["https://data.delijn.be/stops/105279", "https://data.delijn.be/stops/109972"], ["https://data.delijn.be/stops/502106", "https://data.delijn.be/stops/502421"], ["https://data.delijn.be/stops/101548", "https://data.delijn.be/stops/107807"], ["https://data.delijn.be/stops/508454", "https://data.delijn.be/stops/508471"], ["https://data.delijn.be/stops/502253", "https://data.delijn.be/stops/507252"], ["https://data.delijn.be/stops/204718", "https://data.delijn.be/stops/205718"], ["https://data.delijn.be/stops/207710", "https://data.delijn.be/stops/207732"], ["https://data.delijn.be/stops/503592", "https://data.delijn.be/stops/509883"], ["https://data.delijn.be/stops/105981", "https://data.delijn.be/stops/105982"], ["https://data.delijn.be/stops/202676", "https://data.delijn.be/stops/203724"], ["https://data.delijn.be/stops/300752", "https://data.delijn.be/stops/302408"], ["https://data.delijn.be/stops/200564", "https://data.delijn.be/stops/201565"], ["https://data.delijn.be/stops/200091", "https://data.delijn.be/stops/201060"], ["https://data.delijn.be/stops/206417", "https://data.delijn.be/stops/206418"], ["https://data.delijn.be/stops/105992", "https://data.delijn.be/stops/105996"], ["https://data.delijn.be/stops/508829", "https://data.delijn.be/stops/508830"], ["https://data.delijn.be/stops/400062", "https://data.delijn.be/stops/400109"], ["https://data.delijn.be/stops/200814", "https://data.delijn.be/stops/202215"], ["https://data.delijn.be/stops/208040", "https://data.delijn.be/stops/208540"], ["https://data.delijn.be/stops/407583", "https://data.delijn.be/stops/407584"], ["https://data.delijn.be/stops/102300", "https://data.delijn.be/stops/104595"], ["https://data.delijn.be/stops/106764", "https://data.delijn.be/stops/107513"], ["https://data.delijn.be/stops/202373", "https://data.delijn.be/stops/203373"], ["https://data.delijn.be/stops/508778", "https://data.delijn.be/stops/508781"], ["https://data.delijn.be/stops/104482", "https://data.delijn.be/stops/104562"], ["https://data.delijn.be/stops/506133", "https://data.delijn.be/stops/506137"], ["https://data.delijn.be/stops/208466", "https://data.delijn.be/stops/209465"], ["https://data.delijn.be/stops/307160", "https://data.delijn.be/stops/307775"], ["https://data.delijn.be/stops/303273", "https://data.delijn.be/stops/303275"], ["https://data.delijn.be/stops/208490", "https://data.delijn.be/stops/208560"], ["https://data.delijn.be/stops/206884", "https://data.delijn.be/stops/207030"], ["https://data.delijn.be/stops/505130", "https://data.delijn.be/stops/508661"], ["https://data.delijn.be/stops/202437", "https://data.delijn.be/stops/203585"], ["https://data.delijn.be/stops/305662", "https://data.delijn.be/stops/305663"], ["https://data.delijn.be/stops/208217", "https://data.delijn.be/stops/209238"], ["https://data.delijn.be/stops/107854", "https://data.delijn.be/stops/107856"], ["https://data.delijn.be/stops/302792", "https://data.delijn.be/stops/304027"], ["https://data.delijn.be/stops/301270", "https://data.delijn.be/stops/307908"], ["https://data.delijn.be/stops/405750", "https://data.delijn.be/stops/408348"], ["https://data.delijn.be/stops/400709", "https://data.delijn.be/stops/409509"], ["https://data.delijn.be/stops/108371", "https://data.delijn.be/stops/108455"], ["https://data.delijn.be/stops/103378", "https://data.delijn.be/stops/104470"], ["https://data.delijn.be/stops/502084", "https://data.delijn.be/stops/502681"], ["https://data.delijn.be/stops/101409", "https://data.delijn.be/stops/101433"], ["https://data.delijn.be/stops/204542", "https://data.delijn.be/stops/205541"], ["https://data.delijn.be/stops/403093", "https://data.delijn.be/stops/403123"], ["https://data.delijn.be/stops/207864", "https://data.delijn.be/stops/209423"], ["https://data.delijn.be/stops/503379", "https://data.delijn.be/stops/503422"], ["https://data.delijn.be/stops/106270", "https://data.delijn.be/stops/106272"], ["https://data.delijn.be/stops/102714", "https://data.delijn.be/stops/104824"], ["https://data.delijn.be/stops/307214", "https://data.delijn.be/stops/307216"], ["https://data.delijn.be/stops/402438", "https://data.delijn.be/stops/402439"], ["https://data.delijn.be/stops/503882", "https://data.delijn.be/stops/508061"], ["https://data.delijn.be/stops/306788", "https://data.delijn.be/stops/306791"], ["https://data.delijn.be/stops/109284", "https://data.delijn.be/stops/109286"], ["https://data.delijn.be/stops/305009", "https://data.delijn.be/stops/305025"], ["https://data.delijn.be/stops/305818", "https://data.delijn.be/stops/308441"], ["https://data.delijn.be/stops/108072", "https://data.delijn.be/stops/108137"], ["https://data.delijn.be/stops/101995", "https://data.delijn.be/stops/102735"], ["https://data.delijn.be/stops/507225", "https://data.delijn.be/stops/507228"], ["https://data.delijn.be/stops/106022", "https://data.delijn.be/stops/106192"], ["https://data.delijn.be/stops/304021", "https://data.delijn.be/stops/304066"], ["https://data.delijn.be/stops/407302", "https://data.delijn.be/stops/407305"], ["https://data.delijn.be/stops/204210", "https://data.delijn.be/stops/206310"], ["https://data.delijn.be/stops/503641", "https://data.delijn.be/stops/509876"], ["https://data.delijn.be/stops/207215", "https://data.delijn.be/stops/207904"], ["https://data.delijn.be/stops/407250", "https://data.delijn.be/stops/407378"], ["https://data.delijn.be/stops/204614", "https://data.delijn.be/stops/204655"], ["https://data.delijn.be/stops/406358", "https://data.delijn.be/stops/406364"], ["https://data.delijn.be/stops/208468", "https://data.delijn.be/stops/209754"], ["https://data.delijn.be/stops/503451", "https://data.delijn.be/stops/503469"], ["https://data.delijn.be/stops/102071", "https://data.delijn.be/stops/102073"], ["https://data.delijn.be/stops/303472", "https://data.delijn.be/stops/303485"], ["https://data.delijn.be/stops/305225", "https://data.delijn.be/stops/305244"], ["https://data.delijn.be/stops/201028", "https://data.delijn.be/stops/201372"], ["https://data.delijn.be/stops/501099", "https://data.delijn.be/stops/506099"], ["https://data.delijn.be/stops/210091", "https://data.delijn.be/stops/211091"], ["https://data.delijn.be/stops/507916", "https://data.delijn.be/stops/508591"], ["https://data.delijn.be/stops/208621", "https://data.delijn.be/stops/209621"], ["https://data.delijn.be/stops/300488", "https://data.delijn.be/stops/302867"], ["https://data.delijn.be/stops/105037", "https://data.delijn.be/stops/305831"], ["https://data.delijn.be/stops/305445", "https://data.delijn.be/stops/306699"], ["https://data.delijn.be/stops/103077", "https://data.delijn.be/stops/104237"], ["https://data.delijn.be/stops/300942", "https://data.delijn.be/stops/305889"], ["https://data.delijn.be/stops/504239", "https://data.delijn.be/stops/504241"], ["https://data.delijn.be/stops/106686", "https://data.delijn.be/stops/106688"], ["https://data.delijn.be/stops/501770", "https://data.delijn.be/stops/507373"], ["https://data.delijn.be/stops/508871", "https://data.delijn.be/stops/509755"], ["https://data.delijn.be/stops/402330", "https://data.delijn.be/stops/402334"], ["https://data.delijn.be/stops/200182", "https://data.delijn.be/stops/202760"], ["https://data.delijn.be/stops/200735", "https://data.delijn.be/stops/203572"], ["https://data.delijn.be/stops/101527", "https://data.delijn.be/stops/101528"], ["https://data.delijn.be/stops/208367", "https://data.delijn.be/stops/209367"], ["https://data.delijn.be/stops/402811", "https://data.delijn.be/stops/407080"], ["https://data.delijn.be/stops/204380", "https://data.delijn.be/stops/204763"], ["https://data.delijn.be/stops/303104", "https://data.delijn.be/stops/308718"], ["https://data.delijn.be/stops/406176", "https://data.delijn.be/stops/410402"], ["https://data.delijn.be/stops/109980", "https://data.delijn.be/stops/109981"], ["https://data.delijn.be/stops/400741", "https://data.delijn.be/stops/400743"], ["https://data.delijn.be/stops/400356", "https://data.delijn.be/stops/400396"], ["https://data.delijn.be/stops/500159", "https://data.delijn.be/stops/503562"], ["https://data.delijn.be/stops/305959", "https://data.delijn.be/stops/305963"], ["https://data.delijn.be/stops/101970", "https://data.delijn.be/stops/107115"], ["https://data.delijn.be/stops/407190", "https://data.delijn.be/stops/407192"], ["https://data.delijn.be/stops/308134", "https://data.delijn.be/stops/308291"], ["https://data.delijn.be/stops/501066", "https://data.delijn.be/stops/501075"], ["https://data.delijn.be/stops/102131", "https://data.delijn.be/stops/105717"], ["https://data.delijn.be/stops/507319", "https://data.delijn.be/stops/507711"], ["https://data.delijn.be/stops/201165", "https://data.delijn.be/stops/202171"], ["https://data.delijn.be/stops/303659", "https://data.delijn.be/stops/307686"], ["https://data.delijn.be/stops/503118", "https://data.delijn.be/stops/508118"], ["https://data.delijn.be/stops/502250", "https://data.delijn.be/stops/502255"], ["https://data.delijn.be/stops/403207", "https://data.delijn.be/stops/403376"], ["https://data.delijn.be/stops/201345", "https://data.delijn.be/stops/203131"], ["https://data.delijn.be/stops/301271", "https://data.delijn.be/stops/301277"], ["https://data.delijn.be/stops/107146", "https://data.delijn.be/stops/107149"], ["https://data.delijn.be/stops/400115", "https://data.delijn.be/stops/400946"], ["https://data.delijn.be/stops/502306", "https://data.delijn.be/stops/502603"], ["https://data.delijn.be/stops/508224", "https://data.delijn.be/stops/508594"], ["https://data.delijn.be/stops/505802", "https://data.delijn.be/stops/505808"], ["https://data.delijn.be/stops/200430", "https://data.delijn.be/stops/201429"], ["https://data.delijn.be/stops/408059", "https://data.delijn.be/stops/408123"], ["https://data.delijn.be/stops/207606", "https://data.delijn.be/stops/207607"], ["https://data.delijn.be/stops/502562", "https://data.delijn.be/stops/590331"], ["https://data.delijn.be/stops/500559", "https://data.delijn.be/stops/506033"], ["https://data.delijn.be/stops/304478", "https://data.delijn.be/stops/304516"], ["https://data.delijn.be/stops/300707", "https://data.delijn.be/stops/303422"], ["https://data.delijn.be/stops/106033", "https://data.delijn.be/stops/106036"], ["https://data.delijn.be/stops/501254", "https://data.delijn.be/stops/501257"], ["https://data.delijn.be/stops/208719", "https://data.delijn.be/stops/209720"], ["https://data.delijn.be/stops/102809", "https://data.delijn.be/stops/106483"], ["https://data.delijn.be/stops/204641", "https://data.delijn.be/stops/205642"], ["https://data.delijn.be/stops/404634", "https://data.delijn.be/stops/406958"], ["https://data.delijn.be/stops/203495", "https://data.delijn.be/stops/203607"], ["https://data.delijn.be/stops/108866", "https://data.delijn.be/stops/108868"], ["https://data.delijn.be/stops/208258", "https://data.delijn.be/stops/209259"], ["https://data.delijn.be/stops/101364", "https://data.delijn.be/stops/101553"], ["https://data.delijn.be/stops/502449", "https://data.delijn.be/stops/507443"], ["https://data.delijn.be/stops/303156", "https://data.delijn.be/stops/303157"], ["https://data.delijn.be/stops/304168", "https://data.delijn.be/stops/306067"], ["https://data.delijn.be/stops/505716", "https://data.delijn.be/stops/508491"], ["https://data.delijn.be/stops/200462", "https://data.delijn.be/stops/200662"], ["https://data.delijn.be/stops/305499", "https://data.delijn.be/stops/305500"], ["https://data.delijn.be/stops/305350", "https://data.delijn.be/stops/308981"], ["https://data.delijn.be/stops/501337", "https://data.delijn.be/stops/506337"], ["https://data.delijn.be/stops/201915", "https://data.delijn.be/stops/207594"], ["https://data.delijn.be/stops/404482", "https://data.delijn.be/stops/404563"], ["https://data.delijn.be/stops/106819", "https://data.delijn.be/stops/106821"], ["https://data.delijn.be/stops/302767", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/503370", "https://data.delijn.be/stops/503400"], ["https://data.delijn.be/stops/200976", "https://data.delijn.be/stops/206803"], ["https://data.delijn.be/stops/504180", "https://data.delijn.be/stops/504181"], ["https://data.delijn.be/stops/302346", "https://data.delijn.be/stops/302354"], ["https://data.delijn.be/stops/402210", "https://data.delijn.be/stops/410098"], ["https://data.delijn.be/stops/200049", "https://data.delijn.be/stops/201247"], ["https://data.delijn.be/stops/403545", "https://data.delijn.be/stops/405644"], ["https://data.delijn.be/stops/403602", "https://data.delijn.be/stops/403609"], ["https://data.delijn.be/stops/105999", "https://data.delijn.be/stops/107909"], ["https://data.delijn.be/stops/502556", "https://data.delijn.be/stops/505051"], ["https://data.delijn.be/stops/404700", "https://data.delijn.be/stops/404711"], ["https://data.delijn.be/stops/206166", "https://data.delijn.be/stops/207022"], ["https://data.delijn.be/stops/101367", "https://data.delijn.be/stops/101368"], ["https://data.delijn.be/stops/108775", "https://data.delijn.be/stops/108780"], ["https://data.delijn.be/stops/104597", "https://data.delijn.be/stops/105162"], ["https://data.delijn.be/stops/205140", "https://data.delijn.be/stops/207638"], ["https://data.delijn.be/stops/305483", "https://data.delijn.be/stops/305509"], ["https://data.delijn.be/stops/302167", "https://data.delijn.be/stops/307806"], ["https://data.delijn.be/stops/409052", "https://data.delijn.be/stops/409083"], ["https://data.delijn.be/stops/200214", "https://data.delijn.be/stops/200216"], ["https://data.delijn.be/stops/408504", "https://data.delijn.be/stops/408524"], ["https://data.delijn.be/stops/407650", "https://data.delijn.be/stops/410248"], ["https://data.delijn.be/stops/102310", "https://data.delijn.be/stops/109132"], ["https://data.delijn.be/stops/504625", "https://data.delijn.be/stops/509627"], ["https://data.delijn.be/stops/202253", "https://data.delijn.be/stops/203252"], ["https://data.delijn.be/stops/207767", "https://data.delijn.be/stops/208190"], ["https://data.delijn.be/stops/300408", "https://data.delijn.be/stops/306068"], ["https://data.delijn.be/stops/300924", "https://data.delijn.be/stops/300925"], ["https://data.delijn.be/stops/503650", "https://data.delijn.be/stops/505254"], ["https://data.delijn.be/stops/205499", "https://data.delijn.be/stops/205509"], ["https://data.delijn.be/stops/105429", "https://data.delijn.be/stops/105431"], ["https://data.delijn.be/stops/304729", "https://data.delijn.be/stops/304744"], ["https://data.delijn.be/stops/503268", "https://data.delijn.be/stops/504862"], ["https://data.delijn.be/stops/106663", "https://data.delijn.be/stops/106669"], ["https://data.delijn.be/stops/408650", "https://data.delijn.be/stops/408812"], ["https://data.delijn.be/stops/400846", "https://data.delijn.be/stops/400847"], ["https://data.delijn.be/stops/203329", "https://data.delijn.be/stops/203586"], ["https://data.delijn.be/stops/307264", "https://data.delijn.be/stops/307913"], ["https://data.delijn.be/stops/404255", "https://data.delijn.be/stops/405186"], ["https://data.delijn.be/stops/300177", "https://data.delijn.be/stops/300188"], ["https://data.delijn.be/stops/501659", "https://data.delijn.be/stops/506658"], ["https://data.delijn.be/stops/305056", "https://data.delijn.be/stops/305057"], ["https://data.delijn.be/stops/406556", "https://data.delijn.be/stops/406563"], ["https://data.delijn.be/stops/202940", "https://data.delijn.be/stops/211018"], ["https://data.delijn.be/stops/108467", "https://data.delijn.be/stops/108468"], ["https://data.delijn.be/stops/300342", "https://data.delijn.be/stops/300345"], ["https://data.delijn.be/stops/208526", "https://data.delijn.be/stops/209527"], ["https://data.delijn.be/stops/200873", "https://data.delijn.be/stops/202309"], ["https://data.delijn.be/stops/503048", "https://data.delijn.be/stops/508333"], ["https://data.delijn.be/stops/201753", "https://data.delijn.be/stops/201754"], ["https://data.delijn.be/stops/503395", "https://data.delijn.be/stops/509786"], ["https://data.delijn.be/stops/502085", "https://data.delijn.be/stops/502817"], ["https://data.delijn.be/stops/504271", "https://data.delijn.be/stops/504275"], ["https://data.delijn.be/stops/207158", "https://data.delijn.be/stops/207673"], ["https://data.delijn.be/stops/304873", "https://data.delijn.be/stops/305425"], ["https://data.delijn.be/stops/101170", "https://data.delijn.be/stops/102230"], ["https://data.delijn.be/stops/206436", "https://data.delijn.be/stops/207436"], ["https://data.delijn.be/stops/302664", "https://data.delijn.be/stops/308298"], ["https://data.delijn.be/stops/204246", "https://data.delijn.be/stops/205096"], ["https://data.delijn.be/stops/200871", "https://data.delijn.be/stops/201118"], ["https://data.delijn.be/stops/206068", "https://data.delijn.be/stops/207074"], ["https://data.delijn.be/stops/408710", "https://data.delijn.be/stops/408733"], ["https://data.delijn.be/stops/502042", "https://data.delijn.be/stops/507323"], ["https://data.delijn.be/stops/208470", "https://data.delijn.be/stops/209470"], ["https://data.delijn.be/stops/400526", "https://data.delijn.be/stops/404531"], ["https://data.delijn.be/stops/502669", "https://data.delijn.be/stops/502766"], ["https://data.delijn.be/stops/208271", "https://data.delijn.be/stops/209271"], ["https://data.delijn.be/stops/305892", "https://data.delijn.be/stops/305893"], ["https://data.delijn.be/stops/202910", "https://data.delijn.be/stops/211070"], ["https://data.delijn.be/stops/106161", "https://data.delijn.be/stops/106166"], ["https://data.delijn.be/stops/201924", "https://data.delijn.be/stops/206591"], ["https://data.delijn.be/stops/505530", "https://data.delijn.be/stops/506423"], ["https://data.delijn.be/stops/203902", "https://data.delijn.be/stops/218003"], ["https://data.delijn.be/stops/102725", "https://data.delijn.be/stops/105177"], ["https://data.delijn.be/stops/302800", "https://data.delijn.be/stops/302809"], ["https://data.delijn.be/stops/108335", "https://data.delijn.be/stops/108730"], ["https://data.delijn.be/stops/106429", "https://data.delijn.be/stops/106434"], ["https://data.delijn.be/stops/402583", "https://data.delijn.be/stops/402592"], ["https://data.delijn.be/stops/407117", "https://data.delijn.be/stops/407123"], ["https://data.delijn.be/stops/300429", "https://data.delijn.be/stops/308062"], ["https://data.delijn.be/stops/503147", "https://data.delijn.be/stops/508141"], ["https://data.delijn.be/stops/103250", "https://data.delijn.be/stops/107725"], ["https://data.delijn.be/stops/200232", "https://data.delijn.be/stops/201230"], ["https://data.delijn.be/stops/108653", "https://data.delijn.be/stops/304325"], ["https://data.delijn.be/stops/205636", "https://data.delijn.be/stops/205637"], ["https://data.delijn.be/stops/400876", "https://data.delijn.be/stops/407532"], ["https://data.delijn.be/stops/503410", "https://data.delijn.be/stops/508351"], ["https://data.delijn.be/stops/301560", "https://data.delijn.be/stops/301572"], ["https://data.delijn.be/stops/108747", "https://data.delijn.be/stops/108748"], ["https://data.delijn.be/stops/400339", "https://data.delijn.be/stops/400449"], ["https://data.delijn.be/stops/408059", "https://data.delijn.be/stops/408293"], ["https://data.delijn.be/stops/508755", "https://data.delijn.be/stops/509963"], ["https://data.delijn.be/stops/406307", "https://data.delijn.be/stops/406308"], ["https://data.delijn.be/stops/302006", "https://data.delijn.be/stops/303178"], ["https://data.delijn.be/stops/206432", "https://data.delijn.be/stops/207431"], ["https://data.delijn.be/stops/101255", "https://data.delijn.be/stops/103940"], ["https://data.delijn.be/stops/405524", "https://data.delijn.be/stops/407274"], ["https://data.delijn.be/stops/202729", "https://data.delijn.be/stops/203729"], ["https://data.delijn.be/stops/401129", "https://data.delijn.be/stops/406719"], ["https://data.delijn.be/stops/207674", "https://data.delijn.be/stops/208491"], ["https://data.delijn.be/stops/107322", "https://data.delijn.be/stops/107324"], ["https://data.delijn.be/stops/202156", "https://data.delijn.be/stops/203156"], ["https://data.delijn.be/stops/402548", "https://data.delijn.be/stops/404067"], ["https://data.delijn.be/stops/507064", "https://data.delijn.be/stops/507069"], ["https://data.delijn.be/stops/202872", "https://data.delijn.be/stops/203872"], ["https://data.delijn.be/stops/105539", "https://data.delijn.be/stops/106250"], ["https://data.delijn.be/stops/200278", "https://data.delijn.be/stops/201278"], ["https://data.delijn.be/stops/302002", "https://data.delijn.be/stops/302024"], ["https://data.delijn.be/stops/208607", "https://data.delijn.be/stops/208608"], ["https://data.delijn.be/stops/104335", "https://data.delijn.be/stops/104340"], ["https://data.delijn.be/stops/406654", "https://data.delijn.be/stops/406655"], ["https://data.delijn.be/stops/209478", "https://data.delijn.be/stops/209479"], ["https://data.delijn.be/stops/104044", "https://data.delijn.be/stops/108543"], ["https://data.delijn.be/stops/200662", "https://data.delijn.be/stops/201838"], ["https://data.delijn.be/stops/209724", "https://data.delijn.be/stops/209791"], ["https://data.delijn.be/stops/407616", "https://data.delijn.be/stops/409806"], ["https://data.delijn.be/stops/501226", "https://data.delijn.be/stops/501228"], ["https://data.delijn.be/stops/204082", "https://data.delijn.be/stops/204083"], ["https://data.delijn.be/stops/504454", "https://data.delijn.be/stops/504455"], ["https://data.delijn.be/stops/302183", "https://data.delijn.be/stops/307108"], ["https://data.delijn.be/stops/503791", "https://data.delijn.be/stops/508791"], ["https://data.delijn.be/stops/504027", "https://data.delijn.be/stops/509024"], ["https://data.delijn.be/stops/407867", "https://data.delijn.be/stops/408175"], ["https://data.delijn.be/stops/304621", "https://data.delijn.be/stops/304661"], ["https://data.delijn.be/stops/509653", "https://data.delijn.be/stops/509654"], ["https://data.delijn.be/stops/201897", "https://data.delijn.be/stops/201943"], ["https://data.delijn.be/stops/300273", "https://data.delijn.be/stops/300946"], ["https://data.delijn.be/stops/109143", "https://data.delijn.be/stops/109147"], ["https://data.delijn.be/stops/306816", "https://data.delijn.be/stops/308991"], ["https://data.delijn.be/stops/305116", "https://data.delijn.be/stops/305117"], ["https://data.delijn.be/stops/403008", "https://data.delijn.be/stops/403009"], ["https://data.delijn.be/stops/108380", "https://data.delijn.be/stops/108968"], ["https://data.delijn.be/stops/502815", "https://data.delijn.be/stops/507284"], ["https://data.delijn.be/stops/106953", "https://data.delijn.be/stops/107267"], ["https://data.delijn.be/stops/307243", "https://data.delijn.be/stops/307248"], ["https://data.delijn.be/stops/504028", "https://data.delijn.be/stops/504032"], ["https://data.delijn.be/stops/206001", "https://data.delijn.be/stops/207521"], ["https://data.delijn.be/stops/103130", "https://data.delijn.be/stops/107735"], ["https://data.delijn.be/stops/204412", "https://data.delijn.be/stops/205412"], ["https://data.delijn.be/stops/200406", "https://data.delijn.be/stops/200507"], ["https://data.delijn.be/stops/101632", "https://data.delijn.be/stops/105911"], ["https://data.delijn.be/stops/300761", "https://data.delijn.be/stops/306200"], ["https://data.delijn.be/stops/302161", "https://data.delijn.be/stops/308103"], ["https://data.delijn.be/stops/108929", "https://data.delijn.be/stops/108933"], ["https://data.delijn.be/stops/501522", "https://data.delijn.be/stops/501546"], ["https://data.delijn.be/stops/208013", "https://data.delijn.be/stops/208027"], ["https://data.delijn.be/stops/101854", "https://data.delijn.be/stops/109455"], ["https://data.delijn.be/stops/401105", "https://data.delijn.be/stops/409220"], ["https://data.delijn.be/stops/501250", "https://data.delijn.be/stops/506773"], ["https://data.delijn.be/stops/400788", "https://data.delijn.be/stops/400798"], ["https://data.delijn.be/stops/505015", "https://data.delijn.be/stops/507355"], ["https://data.delijn.be/stops/403598", "https://data.delijn.be/stops/407339"], ["https://data.delijn.be/stops/108698", "https://data.delijn.be/stops/108700"], ["https://data.delijn.be/stops/504964", "https://data.delijn.be/stops/509965"], ["https://data.delijn.be/stops/508607", "https://data.delijn.be/stops/508612"], ["https://data.delijn.be/stops/201390", "https://data.delijn.be/stops/201847"], ["https://data.delijn.be/stops/107483", "https://data.delijn.be/stops/107486"], ["https://data.delijn.be/stops/303239", "https://data.delijn.be/stops/303243"], ["https://data.delijn.be/stops/409160", "https://data.delijn.be/stops/409162"], ["https://data.delijn.be/stops/301714", "https://data.delijn.be/stops/308696"], ["https://data.delijn.be/stops/204642", "https://data.delijn.be/stops/204772"], ["https://data.delijn.be/stops/406082", "https://data.delijn.be/stops/406140"], ["https://data.delijn.be/stops/505073", "https://data.delijn.be/stops/505315"], ["https://data.delijn.be/stops/501060", "https://data.delijn.be/stops/502646"], ["https://data.delijn.be/stops/203737", "https://data.delijn.be/stops/203738"], ["https://data.delijn.be/stops/204007", "https://data.delijn.be/stops/205007"], ["https://data.delijn.be/stops/503444", "https://data.delijn.be/stops/508572"], ["https://data.delijn.be/stops/108752", "https://data.delijn.be/stops/109502"], ["https://data.delijn.be/stops/407607", "https://data.delijn.be/stops/407608"], ["https://data.delijn.be/stops/504161", "https://data.delijn.be/stops/509161"], ["https://data.delijn.be/stops/401288", "https://data.delijn.be/stops/401312"], ["https://data.delijn.be/stops/304480", "https://data.delijn.be/stops/304507"], ["https://data.delijn.be/stops/307896", "https://data.delijn.be/stops/308549"], ["https://data.delijn.be/stops/105334", "https://data.delijn.be/stops/105337"], ["https://data.delijn.be/stops/405225", "https://data.delijn.be/stops/406244"], ["https://data.delijn.be/stops/505523", "https://data.delijn.be/stops/505618"], ["https://data.delijn.be/stops/503299", "https://data.delijn.be/stops/503304"], ["https://data.delijn.be/stops/106648", "https://data.delijn.be/stops/106650"], ["https://data.delijn.be/stops/404221", "https://data.delijn.be/stops/404242"], ["https://data.delijn.be/stops/207702", "https://data.delijn.be/stops/207898"], ["https://data.delijn.be/stops/203666", "https://data.delijn.be/stops/203667"], ["https://data.delijn.be/stops/503635", "https://data.delijn.be/stops/503756"], ["https://data.delijn.be/stops/503934", "https://data.delijn.be/stops/508934"], ["https://data.delijn.be/stops/304067", "https://data.delijn.be/stops/304083"], ["https://data.delijn.be/stops/504247", "https://data.delijn.be/stops/504248"], ["https://data.delijn.be/stops/300246", "https://data.delijn.be/stops/300260"], ["https://data.delijn.be/stops/503802", "https://data.delijn.be/stops/505541"], ["https://data.delijn.be/stops/201879", "https://data.delijn.be/stops/210034"], ["https://data.delijn.be/stops/504633", "https://data.delijn.be/stops/509220"], ["https://data.delijn.be/stops/108834", "https://data.delijn.be/stops/108848"], ["https://data.delijn.be/stops/407229", "https://data.delijn.be/stops/407509"], ["https://data.delijn.be/stops/406882", "https://data.delijn.be/stops/409754"], ["https://data.delijn.be/stops/200461", "https://data.delijn.be/stops/201460"], ["https://data.delijn.be/stops/200726", "https://data.delijn.be/stops/203592"], ["https://data.delijn.be/stops/102407", "https://data.delijn.be/stops/402019"], ["https://data.delijn.be/stops/503391", "https://data.delijn.be/stops/508244"], ["https://data.delijn.be/stops/208524", "https://data.delijn.be/stops/209044"], ["https://data.delijn.be/stops/300136", "https://data.delijn.be/stops/300139"], ["https://data.delijn.be/stops/302680", "https://data.delijn.be/stops/303611"], ["https://data.delijn.be/stops/106183", "https://data.delijn.be/stops/107439"], ["https://data.delijn.be/stops/305273", "https://data.delijn.be/stops/305274"], ["https://data.delijn.be/stops/407906", "https://data.delijn.be/stops/408010"], ["https://data.delijn.be/stops/506369", "https://data.delijn.be/stops/507745"], ["https://data.delijn.be/stops/401249", "https://data.delijn.be/stops/401250"], ["https://data.delijn.be/stops/504490", "https://data.delijn.be/stops/504491"], ["https://data.delijn.be/stops/503278", "https://data.delijn.be/stops/506000"], ["https://data.delijn.be/stops/105671", "https://data.delijn.be/stops/106070"], ["https://data.delijn.be/stops/206164", "https://data.delijn.be/stops/308901"], ["https://data.delijn.be/stops/302196", "https://data.delijn.be/stops/308105"], ["https://data.delijn.be/stops/206605", "https://data.delijn.be/stops/206741"], ["https://data.delijn.be/stops/201916", "https://data.delijn.be/stops/206834"], ["https://data.delijn.be/stops/300955", "https://data.delijn.be/stops/300958"], ["https://data.delijn.be/stops/208406", "https://data.delijn.be/stops/209820"], ["https://data.delijn.be/stops/404332", "https://data.delijn.be/stops/404340"], ["https://data.delijn.be/stops/101518", "https://data.delijn.be/stops/109051"], ["https://data.delijn.be/stops/107573", "https://data.delijn.be/stops/107574"], ["https://data.delijn.be/stops/409402", "https://data.delijn.be/stops/409403"], ["https://data.delijn.be/stops/404723", "https://data.delijn.be/stops/404735"], ["https://data.delijn.be/stops/302130", "https://data.delijn.be/stops/302143"], ["https://data.delijn.be/stops/503432", "https://data.delijn.be/stops/503436"], ["https://data.delijn.be/stops/503906", "https://data.delijn.be/stops/504008"], ["https://data.delijn.be/stops/201693", "https://data.delijn.be/stops/202036"], ["https://data.delijn.be/stops/207357", "https://data.delijn.be/stops/207687"], ["https://data.delijn.be/stops/505912", "https://data.delijn.be/stops/509114"], ["https://data.delijn.be/stops/303756", "https://data.delijn.be/stops/303757"], ["https://data.delijn.be/stops/502801", "https://data.delijn.be/stops/504180"], ["https://data.delijn.be/stops/104477", "https://data.delijn.be/stops/104479"], ["https://data.delijn.be/stops/201874", "https://data.delijn.be/stops/202021"], ["https://data.delijn.be/stops/200587", "https://data.delijn.be/stops/211200"], ["https://data.delijn.be/stops/502148", "https://data.delijn.be/stops/507167"], ["https://data.delijn.be/stops/200945", "https://data.delijn.be/stops/211023"], ["https://data.delijn.be/stops/407961", "https://data.delijn.be/stops/408042"], ["https://data.delijn.be/stops/102633", "https://data.delijn.be/stops/107853"], ["https://data.delijn.be/stops/200367", "https://data.delijn.be/stops/201607"], ["https://data.delijn.be/stops/401762", "https://data.delijn.be/stops/401763"], ["https://data.delijn.be/stops/101752", "https://data.delijn.be/stops/101753"], ["https://data.delijn.be/stops/201880", "https://data.delijn.be/stops/210852"], ["https://data.delijn.be/stops/400157", "https://data.delijn.be/stops/400158"], ["https://data.delijn.be/stops/501014", "https://data.delijn.be/stops/501609"], ["https://data.delijn.be/stops/308896", "https://data.delijn.be/stops/308897"], ["https://data.delijn.be/stops/404346", "https://data.delijn.be/stops/404368"], ["https://data.delijn.be/stops/107558", "https://data.delijn.be/stops/107561"], ["https://data.delijn.be/stops/208417", "https://data.delijn.be/stops/208418"], ["https://data.delijn.be/stops/401627", "https://data.delijn.be/stops/401633"], ["https://data.delijn.be/stops/108418", "https://data.delijn.be/stops/108419"], ["https://data.delijn.be/stops/502551", "https://data.delijn.be/stops/505335"], ["https://data.delijn.be/stops/103097", "https://data.delijn.be/stops/103269"], ["https://data.delijn.be/stops/505691", "https://data.delijn.be/stops/507610"], ["https://data.delijn.be/stops/302717", "https://data.delijn.be/stops/302722"], ["https://data.delijn.be/stops/407400", "https://data.delijn.be/stops/407404"], ["https://data.delijn.be/stops/102470", "https://data.delijn.be/stops/102862"], ["https://data.delijn.be/stops/304579", "https://data.delijn.be/stops/308684"], ["https://data.delijn.be/stops/403218", "https://data.delijn.be/stops/403219"], ["https://data.delijn.be/stops/509486", "https://data.delijn.be/stops/509489"], ["https://data.delijn.be/stops/204211", "https://data.delijn.be/stops/207312"], ["https://data.delijn.be/stops/203503", "https://data.delijn.be/stops/209662"], ["https://data.delijn.be/stops/201862", "https://data.delijn.be/stops/203670"], ["https://data.delijn.be/stops/101173", "https://data.delijn.be/stops/101174"], ["https://data.delijn.be/stops/408856", "https://data.delijn.be/stops/408861"], ["https://data.delijn.be/stops/403192", "https://data.delijn.be/stops/403451"], ["https://data.delijn.be/stops/207511", "https://data.delijn.be/stops/209666"], ["https://data.delijn.be/stops/101414", "https://data.delijn.be/stops/101416"], ["https://data.delijn.be/stops/301924", "https://data.delijn.be/stops/307827"], ["https://data.delijn.be/stops/400844", "https://data.delijn.be/stops/409568"], ["https://data.delijn.be/stops/204423", "https://data.delijn.be/stops/205766"], ["https://data.delijn.be/stops/503547", "https://data.delijn.be/stops/503565"], ["https://data.delijn.be/stops/301682", "https://data.delijn.be/stops/306188"], ["https://data.delijn.be/stops/104883", "https://data.delijn.be/stops/104884"], ["https://data.delijn.be/stops/206266", "https://data.delijn.be/stops/207993"], ["https://data.delijn.be/stops/303354", "https://data.delijn.be/stops/303358"], ["https://data.delijn.be/stops/505634", "https://data.delijn.be/stops/505635"], ["https://data.delijn.be/stops/301623", "https://data.delijn.be/stops/301672"], ["https://data.delijn.be/stops/304271", "https://data.delijn.be/stops/304276"], ["https://data.delijn.be/stops/101632", "https://data.delijn.be/stops/109746"], ["https://data.delijn.be/stops/505634", "https://data.delijn.be/stops/508337"], ["https://data.delijn.be/stops/302799", "https://data.delijn.be/stops/307835"], ["https://data.delijn.be/stops/204383", "https://data.delijn.be/stops/205185"], ["https://data.delijn.be/stops/401892", "https://data.delijn.be/stops/401893"], ["https://data.delijn.be/stops/505718", "https://data.delijn.be/stops/508489"], ["https://data.delijn.be/stops/200105", "https://data.delijn.be/stops/200363"], ["https://data.delijn.be/stops/207627", "https://data.delijn.be/stops/207628"], ["https://data.delijn.be/stops/307082", "https://data.delijn.be/stops/308106"], ["https://data.delijn.be/stops/303528", "https://data.delijn.be/stops/307990"], ["https://data.delijn.be/stops/403054", "https://data.delijn.be/stops/410247"], ["https://data.delijn.be/stops/403418", "https://data.delijn.be/stops/403517"], ["https://data.delijn.be/stops/306198", "https://data.delijn.be/stops/307279"], ["https://data.delijn.be/stops/307555", "https://data.delijn.be/stops/307677"], ["https://data.delijn.be/stops/404399", "https://data.delijn.be/stops/405561"], ["https://data.delijn.be/stops/102551", "https://data.delijn.be/stops/109661"], ["https://data.delijn.be/stops/402588", "https://data.delijn.be/stops/404143"], ["https://data.delijn.be/stops/106368", "https://data.delijn.be/stops/106369"], ["https://data.delijn.be/stops/504212", "https://data.delijn.be/stops/504213"], ["https://data.delijn.be/stops/301374", "https://data.delijn.be/stops/302417"], ["https://data.delijn.be/stops/508327", "https://data.delijn.be/stops/509878"], ["https://data.delijn.be/stops/501638", "https://data.delijn.be/stops/506638"], ["https://data.delijn.be/stops/408951", "https://data.delijn.be/stops/408979"], ["https://data.delijn.be/stops/206395", "https://data.delijn.be/stops/206396"], ["https://data.delijn.be/stops/404444", "https://data.delijn.be/stops/404456"], ["https://data.delijn.be/stops/300764", "https://data.delijn.be/stops/302404"], ["https://data.delijn.be/stops/504542", "https://data.delijn.be/stops/505786"], ["https://data.delijn.be/stops/209316", "https://data.delijn.be/stops/209772"], ["https://data.delijn.be/stops/304497", "https://data.delijn.be/stops/304503"], ["https://data.delijn.be/stops/108627", "https://data.delijn.be/stops/302551"], ["https://data.delijn.be/stops/108273", "https://data.delijn.be/stops/108274"], ["https://data.delijn.be/stops/501538", "https://data.delijn.be/stops/501542"], ["https://data.delijn.be/stops/507451", "https://data.delijn.be/stops/507452"], ["https://data.delijn.be/stops/406669", "https://data.delijn.be/stops/406987"], ["https://data.delijn.be/stops/504564", "https://data.delijn.be/stops/505187"], ["https://data.delijn.be/stops/201553", "https://data.delijn.be/stops/201899"], ["https://data.delijn.be/stops/501736", "https://data.delijn.be/stops/506508"], ["https://data.delijn.be/stops/109830", "https://data.delijn.be/stops/109854"], ["https://data.delijn.be/stops/102396", "https://data.delijn.be/stops/108199"], ["https://data.delijn.be/stops/101310", "https://data.delijn.be/stops/102705"], ["https://data.delijn.be/stops/204999", "https://data.delijn.be/stops/207385"], ["https://data.delijn.be/stops/208525", "https://data.delijn.be/stops/208526"], ["https://data.delijn.be/stops/303291", "https://data.delijn.be/stops/303292"], ["https://data.delijn.be/stops/300767", "https://data.delijn.be/stops/303224"], ["https://data.delijn.be/stops/201638", "https://data.delijn.be/stops/211054"], ["https://data.delijn.be/stops/302959", "https://data.delijn.be/stops/302973"], ["https://data.delijn.be/stops/401638", "https://data.delijn.be/stops/401639"], ["https://data.delijn.be/stops/300952", "https://data.delijn.be/stops/301050"], ["https://data.delijn.be/stops/307641", "https://data.delijn.be/stops/307685"], ["https://data.delijn.be/stops/105572", "https://data.delijn.be/stops/105574"], ["https://data.delijn.be/stops/304429", "https://data.delijn.be/stops/307383"], ["https://data.delijn.be/stops/504435", "https://data.delijn.be/stops/509435"], ["https://data.delijn.be/stops/106004", "https://data.delijn.be/stops/106006"], ["https://data.delijn.be/stops/106381", "https://data.delijn.be/stops/106383"], ["https://data.delijn.be/stops/408641", "https://data.delijn.be/stops/408715"], ["https://data.delijn.be/stops/106355", "https://data.delijn.be/stops/106379"], ["https://data.delijn.be/stops/203062", "https://data.delijn.be/stops/210016"], ["https://data.delijn.be/stops/405773", "https://data.delijn.be/stops/405827"], ["https://data.delijn.be/stops/500018", "https://data.delijn.be/stops/502445"], ["https://data.delijn.be/stops/402327", "https://data.delijn.be/stops/402376"], ["https://data.delijn.be/stops/107859", "https://data.delijn.be/stops/208900"], ["https://data.delijn.be/stops/105886", "https://data.delijn.be/stops/105887"], ["https://data.delijn.be/stops/207038", "https://data.delijn.be/stops/207216"], ["https://data.delijn.be/stops/402048", "https://data.delijn.be/stops/402202"], ["https://data.delijn.be/stops/300592", "https://data.delijn.be/stops/300593"], ["https://data.delijn.be/stops/106999", "https://data.delijn.be/stops/107323"], ["https://data.delijn.be/stops/505757", "https://data.delijn.be/stops/506209"], ["https://data.delijn.be/stops/101518", "https://data.delijn.be/stops/109070"], ["https://data.delijn.be/stops/402529", "https://data.delijn.be/stops/402533"], ["https://data.delijn.be/stops/200534", "https://data.delijn.be/stops/201534"], ["https://data.delijn.be/stops/504448", "https://data.delijn.be/stops/509967"], ["https://data.delijn.be/stops/108187", "https://data.delijn.be/stops/108329"], ["https://data.delijn.be/stops/406160", "https://data.delijn.be/stops/409408"], ["https://data.delijn.be/stops/408560", "https://data.delijn.be/stops/408598"], ["https://data.delijn.be/stops/400906", "https://data.delijn.be/stops/400974"], ["https://data.delijn.be/stops/206964", "https://data.delijn.be/stops/216011"], ["https://data.delijn.be/stops/106089", "https://data.delijn.be/stops/106141"], ["https://data.delijn.be/stops/106083", "https://data.delijn.be/stops/108729"], ["https://data.delijn.be/stops/403194", "https://data.delijn.be/stops/403425"], ["https://data.delijn.be/stops/410159", "https://data.delijn.be/stops/410160"], ["https://data.delijn.be/stops/305338", "https://data.delijn.be/stops/305340"], ["https://data.delijn.be/stops/200856", "https://data.delijn.be/stops/203308"], ["https://data.delijn.be/stops/204646", "https://data.delijn.be/stops/205647"], ["https://data.delijn.be/stops/200913", "https://data.delijn.be/stops/203539"], ["https://data.delijn.be/stops/104004", "https://data.delijn.be/stops/106567"], ["https://data.delijn.be/stops/108568", "https://data.delijn.be/stops/108993"], ["https://data.delijn.be/stops/501663", "https://data.delijn.be/stops/506665"], ["https://data.delijn.be/stops/206703", "https://data.delijn.be/stops/207605"], ["https://data.delijn.be/stops/401210", "https://data.delijn.be/stops/401382"], ["https://data.delijn.be/stops/504377", "https://data.delijn.be/stops/504634"], ["https://data.delijn.be/stops/503785", "https://data.delijn.be/stops/503786"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/302890"], ["https://data.delijn.be/stops/505128", "https://data.delijn.be/stops/505241"], ["https://data.delijn.be/stops/109858", "https://data.delijn.be/stops/405881"], ["https://data.delijn.be/stops/302285", "https://data.delijn.be/stops/302291"], ["https://data.delijn.be/stops/105909", "https://data.delijn.be/stops/105911"], ["https://data.delijn.be/stops/208207", "https://data.delijn.be/stops/209208"], ["https://data.delijn.be/stops/202189", "https://data.delijn.be/stops/203616"], ["https://data.delijn.be/stops/503296", "https://data.delijn.be/stops/503323"], ["https://data.delijn.be/stops/106471", "https://data.delijn.be/stops/107048"], ["https://data.delijn.be/stops/101331", "https://data.delijn.be/stops/106638"], ["https://data.delijn.be/stops/502248", "https://data.delijn.be/stops/507910"], ["https://data.delijn.be/stops/205401", "https://data.delijn.be/stops/205402"], ["https://data.delijn.be/stops/206874", "https://data.delijn.be/stops/207904"], ["https://data.delijn.be/stops/504126", "https://data.delijn.be/stops/504132"], ["https://data.delijn.be/stops/107174", "https://data.delijn.be/stops/107176"], ["https://data.delijn.be/stops/106269", "https://data.delijn.be/stops/106339"], ["https://data.delijn.be/stops/201415", "https://data.delijn.be/stops/201416"], ["https://data.delijn.be/stops/305302", "https://data.delijn.be/stops/305303"], ["https://data.delijn.be/stops/206086", "https://data.delijn.be/stops/207086"], ["https://data.delijn.be/stops/305067", "https://data.delijn.be/stops/306956"], ["https://data.delijn.be/stops/200908", "https://data.delijn.be/stops/203249"], ["https://data.delijn.be/stops/502707", "https://data.delijn.be/stops/505734"], ["https://data.delijn.be/stops/303531", "https://data.delijn.be/stops/304130"], ["https://data.delijn.be/stops/504423", "https://data.delijn.be/stops/509401"], ["https://data.delijn.be/stops/503706", "https://data.delijn.be/stops/508712"], ["https://data.delijn.be/stops/104846", "https://data.delijn.be/stops/106794"], ["https://data.delijn.be/stops/407832", "https://data.delijn.be/stops/409543"], ["https://data.delijn.be/stops/408006", "https://data.delijn.be/stops/408149"], ["https://data.delijn.be/stops/304293", "https://data.delijn.be/stops/306827"], ["https://data.delijn.be/stops/404426", "https://data.delijn.be/stops/410102"], ["https://data.delijn.be/stops/103148", "https://data.delijn.be/stops/103149"], ["https://data.delijn.be/stops/303802", "https://data.delijn.be/stops/303803"], ["https://data.delijn.be/stops/502182", "https://data.delijn.be/stops/505556"], ["https://data.delijn.be/stops/204677", "https://data.delijn.be/stops/205677"], ["https://data.delijn.be/stops/102184", "https://data.delijn.be/stops/108031"], ["https://data.delijn.be/stops/401460", "https://data.delijn.be/stops/401526"], ["https://data.delijn.be/stops/304207", "https://data.delijn.be/stops/306003"], ["https://data.delijn.be/stops/302116", "https://data.delijn.be/stops/304023"], ["https://data.delijn.be/stops/505505", "https://data.delijn.be/stops/505602"], ["https://data.delijn.be/stops/301394", "https://data.delijn.be/stops/306147"], ["https://data.delijn.be/stops/200210", "https://data.delijn.be/stops/201203"], ["https://data.delijn.be/stops/500020", "https://data.delijn.be/stops/502146"], ["https://data.delijn.be/stops/502370", "https://data.delijn.be/stops/505437"], ["https://data.delijn.be/stops/304108", "https://data.delijn.be/stops/304109"], ["https://data.delijn.be/stops/501006", "https://data.delijn.be/stops/501174"], ["https://data.delijn.be/stops/206213", "https://data.delijn.be/stops/207213"], ["https://data.delijn.be/stops/202816", "https://data.delijn.be/stops/203816"], ["https://data.delijn.be/stops/205303", "https://data.delijn.be/stops/205312"], ["https://data.delijn.be/stops/101892", "https://data.delijn.be/stops/107613"], ["https://data.delijn.be/stops/205237", "https://data.delijn.be/stops/206396"], ["https://data.delijn.be/stops/304839", "https://data.delijn.be/stops/304879"], ["https://data.delijn.be/stops/400486", "https://data.delijn.be/stops/400487"], ["https://data.delijn.be/stops/206055", "https://data.delijn.be/stops/216003"], ["https://data.delijn.be/stops/305616", "https://data.delijn.be/stops/305955"], ["https://data.delijn.be/stops/401017", "https://data.delijn.be/stops/401125"], ["https://data.delijn.be/stops/504086", "https://data.delijn.be/stops/509088"], ["https://data.delijn.be/stops/504846", "https://data.delijn.be/stops/509640"], ["https://data.delijn.be/stops/508388", "https://data.delijn.be/stops/510022"], ["https://data.delijn.be/stops/106222", "https://data.delijn.be/stops/106314"], ["https://data.delijn.be/stops/206183", "https://data.delijn.be/stops/206358"], ["https://data.delijn.be/stops/402889", "https://data.delijn.be/stops/402890"], ["https://data.delijn.be/stops/207773", "https://data.delijn.be/stops/207781"], ["https://data.delijn.be/stops/201005", "https://data.delijn.be/stops/203524"], ["https://data.delijn.be/stops/500945", "https://data.delijn.be/stops/509429"], ["https://data.delijn.be/stops/303286", "https://data.delijn.be/stops/305977"], ["https://data.delijn.be/stops/101411", "https://data.delijn.be/stops/101413"], ["https://data.delijn.be/stops/303558", "https://data.delijn.be/stops/307989"], ["https://data.delijn.be/stops/502661", "https://data.delijn.be/stops/507659"], ["https://data.delijn.be/stops/402194", "https://data.delijn.be/stops/402195"], ["https://data.delijn.be/stops/206613", "https://data.delijn.be/stops/206717"], ["https://data.delijn.be/stops/201358", "https://data.delijn.be/stops/209662"], ["https://data.delijn.be/stops/301491", "https://data.delijn.be/stops/307930"], ["https://data.delijn.be/stops/300720", "https://data.delijn.be/stops/300721"], ["https://data.delijn.be/stops/107438", "https://data.delijn.be/stops/107439"], ["https://data.delijn.be/stops/400035", "https://data.delijn.be/stops/402758"], ["https://data.delijn.be/stops/402881", "https://data.delijn.be/stops/402882"], ["https://data.delijn.be/stops/103659", "https://data.delijn.be/stops/106220"], ["https://data.delijn.be/stops/106103", "https://data.delijn.be/stops/106120"], ["https://data.delijn.be/stops/109553", "https://data.delijn.be/stops/109786"], ["https://data.delijn.be/stops/408800", "https://data.delijn.be/stops/408805"], ["https://data.delijn.be/stops/409354", "https://data.delijn.be/stops/409355"], ["https://data.delijn.be/stops/200873", "https://data.delijn.be/stops/203793"], ["https://data.delijn.be/stops/300171", "https://data.delijn.be/stops/301219"], ["https://data.delijn.be/stops/307153", "https://data.delijn.be/stops/307157"], ["https://data.delijn.be/stops/408023", "https://data.delijn.be/stops/408194"], ["https://data.delijn.be/stops/406529", "https://data.delijn.be/stops/409278"], ["https://data.delijn.be/stops/502511", "https://data.delijn.be/stops/502636"], ["https://data.delijn.be/stops/201455", "https://data.delijn.be/stops/201684"], ["https://data.delijn.be/stops/108850", "https://data.delijn.be/stops/108852"], ["https://data.delijn.be/stops/302753", "https://data.delijn.be/stops/306166"], ["https://data.delijn.be/stops/304834", "https://data.delijn.be/stops/305424"], ["https://data.delijn.be/stops/502614", "https://data.delijn.be/stops/502615"], ["https://data.delijn.be/stops/404021", "https://data.delijn.be/stops/407067"], ["https://data.delijn.be/stops/208053", "https://data.delijn.be/stops/209053"], ["https://data.delijn.be/stops/504261", "https://data.delijn.be/stops/509259"], ["https://data.delijn.be/stops/109693", "https://data.delijn.be/stops/109720"], ["https://data.delijn.be/stops/105302", "https://data.delijn.be/stops/105306"], ["https://data.delijn.be/stops/107148", "https://data.delijn.be/stops/107551"], ["https://data.delijn.be/stops/306948", "https://data.delijn.be/stops/306950"], ["https://data.delijn.be/stops/202483", "https://data.delijn.be/stops/203483"], ["https://data.delijn.be/stops/102748", "https://data.delijn.be/stops/107844"], ["https://data.delijn.be/stops/206842", "https://data.delijn.be/stops/207842"], ["https://data.delijn.be/stops/302909", "https://data.delijn.be/stops/302910"], ["https://data.delijn.be/stops/101312", "https://data.delijn.be/stops/101313"], ["https://data.delijn.be/stops/107043", "https://data.delijn.be/stops/108244"], ["https://data.delijn.be/stops/302163", "https://data.delijn.be/stops/302448"], ["https://data.delijn.be/stops/301995", "https://data.delijn.be/stops/307194"], ["https://data.delijn.be/stops/504102", "https://data.delijn.be/stops/504256"], ["https://data.delijn.be/stops/305732", "https://data.delijn.be/stops/305739"], ["https://data.delijn.be/stops/409360", "https://data.delijn.be/stops/409361"], ["https://data.delijn.be/stops/108648", "https://data.delijn.be/stops/108649"], ["https://data.delijn.be/stops/208065", "https://data.delijn.be/stops/208066"], ["https://data.delijn.be/stops/404378", "https://data.delijn.be/stops/404381"], ["https://data.delijn.be/stops/504773", "https://data.delijn.be/stops/508804"], ["https://data.delijn.be/stops/206704", "https://data.delijn.be/stops/301616"], ["https://data.delijn.be/stops/201563", "https://data.delijn.be/stops/204997"], ["https://data.delijn.be/stops/204305", "https://data.delijn.be/stops/205305"], ["https://data.delijn.be/stops/504370", "https://data.delijn.be/stops/509370"], ["https://data.delijn.be/stops/103722", "https://data.delijn.be/stops/108543"], ["https://data.delijn.be/stops/303470", "https://data.delijn.be/stops/303501"], ["https://data.delijn.be/stops/301558", "https://data.delijn.be/stops/301559"], ["https://data.delijn.be/stops/405856", "https://data.delijn.be/stops/405871"], ["https://data.delijn.be/stops/206701", "https://data.delijn.be/stops/304272"], ["https://data.delijn.be/stops/402527", "https://data.delijn.be/stops/402543"], ["https://data.delijn.be/stops/202033", "https://data.delijn.be/stops/203032"], ["https://data.delijn.be/stops/403797", "https://data.delijn.be/stops/403809"], ["https://data.delijn.be/stops/400221", "https://data.delijn.be/stops/409514"], ["https://data.delijn.be/stops/504592", "https://data.delijn.be/stops/509594"], ["https://data.delijn.be/stops/403396", "https://data.delijn.be/stops/403397"], ["https://data.delijn.be/stops/203406", "https://data.delijn.be/stops/203407"], ["https://data.delijn.be/stops/206363", "https://data.delijn.be/stops/207363"], ["https://data.delijn.be/stops/305080", "https://data.delijn.be/stops/305095"], ["https://data.delijn.be/stops/403146", "https://data.delijn.be/stops/403215"], ["https://data.delijn.be/stops/204062", "https://data.delijn.be/stops/204323"], ["https://data.delijn.be/stops/404513", "https://data.delijn.be/stops/408948"], ["https://data.delijn.be/stops/300399", "https://data.delijn.be/stops/304547"], ["https://data.delijn.be/stops/300780", "https://data.delijn.be/stops/307832"], ["https://data.delijn.be/stops/504114", "https://data.delijn.be/stops/504272"], ["https://data.delijn.be/stops/504944", "https://data.delijn.be/stops/509153"], ["https://data.delijn.be/stops/305443", "https://data.delijn.be/stops/305444"], ["https://data.delijn.be/stops/108035", "https://data.delijn.be/stops/108040"], ["https://data.delijn.be/stops/301648", "https://data.delijn.be/stops/301659"], ["https://data.delijn.be/stops/105168", "https://data.delijn.be/stops/105176"], ["https://data.delijn.be/stops/503823", "https://data.delijn.be/stops/505090"], ["https://data.delijn.be/stops/503456", "https://data.delijn.be/stops/504806"], ["https://data.delijn.be/stops/102610", "https://data.delijn.be/stops/106086"], ["https://data.delijn.be/stops/300311", "https://data.delijn.be/stops/302182"], ["https://data.delijn.be/stops/301598", "https://data.delijn.be/stops/304250"], ["https://data.delijn.be/stops/301655", "https://data.delijn.be/stops/307752"], ["https://data.delijn.be/stops/503406", "https://data.delijn.be/stops/508406"], ["https://data.delijn.be/stops/503208", "https://data.delijn.be/stops/503216"], ["https://data.delijn.be/stops/101172", "https://data.delijn.be/stops/101310"], ["https://data.delijn.be/stops/502472", "https://data.delijn.be/stops/509927"], ["https://data.delijn.be/stops/404510", "https://data.delijn.be/stops/404530"], ["https://data.delijn.be/stops/301329", "https://data.delijn.be/stops/306652"], ["https://data.delijn.be/stops/504542", "https://data.delijn.be/stops/505116"], ["https://data.delijn.be/stops/300739", "https://data.delijn.be/stops/300780"], ["https://data.delijn.be/stops/102169", "https://data.delijn.be/stops/108907"], ["https://data.delijn.be/stops/404113", "https://data.delijn.be/stops/404127"], ["https://data.delijn.be/stops/101722", "https://data.delijn.be/stops/102197"], ["https://data.delijn.be/stops/502667", "https://data.delijn.be/stops/505692"], ["https://data.delijn.be/stops/204342", "https://data.delijn.be/stops/204343"], ["https://data.delijn.be/stops/304448", "https://data.delijn.be/stops/304450"], ["https://data.delijn.be/stops/508122", "https://data.delijn.be/stops/508131"], ["https://data.delijn.be/stops/200247", "https://data.delijn.be/stops/201185"], ["https://data.delijn.be/stops/305205", "https://data.delijn.be/stops/305206"], ["https://data.delijn.be/stops/502054", "https://data.delijn.be/stops/507054"], ["https://data.delijn.be/stops/102169", "https://data.delijn.be/stops/102183"], ["https://data.delijn.be/stops/301079", "https://data.delijn.be/stops/308818"], ["https://data.delijn.be/stops/503415", "https://data.delijn.be/stops/508439"], ["https://data.delijn.be/stops/105199", "https://data.delijn.be/stops/108059"], ["https://data.delijn.be/stops/406711", "https://data.delijn.be/stops/407567"], ["https://data.delijn.be/stops/101465", "https://data.delijn.be/stops/101475"], ["https://data.delijn.be/stops/401776", "https://data.delijn.be/stops/401777"], ["https://data.delijn.be/stops/306944", "https://data.delijn.be/stops/306945"], ["https://data.delijn.be/stops/501511", "https://data.delijn.be/stops/506783"], ["https://data.delijn.be/stops/307642", "https://data.delijn.be/stops/307645"], ["https://data.delijn.be/stops/501283", "https://data.delijn.be/stops/501322"], ["https://data.delijn.be/stops/108197", "https://data.delijn.be/stops/108202"], ["https://data.delijn.be/stops/407840", "https://data.delijn.be/stops/407846"], ["https://data.delijn.be/stops/105588", "https://data.delijn.be/stops/105591"], ["https://data.delijn.be/stops/400491", "https://data.delijn.be/stops/407213"], ["https://data.delijn.be/stops/407385", "https://data.delijn.be/stops/407386"], ["https://data.delijn.be/stops/103265", "https://data.delijn.be/stops/107040"], ["https://data.delijn.be/stops/101956", "https://data.delijn.be/stops/108308"], ["https://data.delijn.be/stops/101421", "https://data.delijn.be/stops/107266"], ["https://data.delijn.be/stops/107230", "https://data.delijn.be/stops/108860"], ["https://data.delijn.be/stops/504330", "https://data.delijn.be/stops/509334"], ["https://data.delijn.be/stops/302160", "https://data.delijn.be/stops/302162"], ["https://data.delijn.be/stops/204424", "https://data.delijn.be/stops/205424"], ["https://data.delijn.be/stops/202372", "https://data.delijn.be/stops/202373"], ["https://data.delijn.be/stops/406989", "https://data.delijn.be/stops/408207"], ["https://data.delijn.be/stops/106581", "https://data.delijn.be/stops/107406"], ["https://data.delijn.be/stops/401761", "https://data.delijn.be/stops/401799"], ["https://data.delijn.be/stops/105964", "https://data.delijn.be/stops/107151"], ["https://data.delijn.be/stops/204587", "https://data.delijn.be/stops/205165"], ["https://data.delijn.be/stops/503405", "https://data.delijn.be/stops/503410"], ["https://data.delijn.be/stops/401431", "https://data.delijn.be/stops/401878"], ["https://data.delijn.be/stops/504169", "https://data.delijn.be/stops/504177"], ["https://data.delijn.be/stops/305577", "https://data.delijn.be/stops/308980"], ["https://data.delijn.be/stops/102726", "https://data.delijn.be/stops/205605"], ["https://data.delijn.be/stops/307404", "https://data.delijn.be/stops/308054"], ["https://data.delijn.be/stops/204650", "https://data.delijn.be/stops/205649"], ["https://data.delijn.be/stops/204673", "https://data.delijn.be/stops/204675"], ["https://data.delijn.be/stops/101036", "https://data.delijn.be/stops/205565"], ["https://data.delijn.be/stops/101035", "https://data.delijn.be/stops/102565"], ["https://data.delijn.be/stops/405146", "https://data.delijn.be/stops/405225"], ["https://data.delijn.be/stops/300660", "https://data.delijn.be/stops/301851"], ["https://data.delijn.be/stops/306395", "https://data.delijn.be/stops/306398"], ["https://data.delijn.be/stops/201851", "https://data.delijn.be/stops/203657"], ["https://data.delijn.be/stops/504381", "https://data.delijn.be/stops/504382"], ["https://data.delijn.be/stops/200156", "https://data.delijn.be/stops/200411"], ["https://data.delijn.be/stops/106588", "https://data.delijn.be/stops/107393"], ["https://data.delijn.be/stops/500561", "https://data.delijn.be/stops/506027"], ["https://data.delijn.be/stops/103305", "https://data.delijn.be/stops/107845"], ["https://data.delijn.be/stops/105070", "https://data.delijn.be/stops/105260"], ["https://data.delijn.be/stops/502583", "https://data.delijn.be/stops/507213"], ["https://data.delijn.be/stops/304689", "https://data.delijn.be/stops/304784"], ["https://data.delijn.be/stops/105113", "https://data.delijn.be/stops/105826"], ["https://data.delijn.be/stops/400776", "https://data.delijn.be/stops/406986"], ["https://data.delijn.be/stops/305598", "https://data.delijn.be/stops/308696"], ["https://data.delijn.be/stops/108679", "https://data.delijn.be/stops/306614"], ["https://data.delijn.be/stops/206886", "https://data.delijn.be/stops/206888"], ["https://data.delijn.be/stops/300353", "https://data.delijn.be/stops/300354"], ["https://data.delijn.be/stops/202418", "https://data.delijn.be/stops/203417"], ["https://data.delijn.be/stops/503847", "https://data.delijn.be/stops/508847"], ["https://data.delijn.be/stops/300619", "https://data.delijn.be/stops/300691"], ["https://data.delijn.be/stops/206541", "https://data.delijn.be/stops/207560"], ["https://data.delijn.be/stops/302571", "https://data.delijn.be/stops/302579"], ["https://data.delijn.be/stops/403848", "https://data.delijn.be/stops/403849"], ["https://data.delijn.be/stops/208135", "https://data.delijn.be/stops/208137"], ["https://data.delijn.be/stops/204467", "https://data.delijn.be/stops/204474"], ["https://data.delijn.be/stops/404989", "https://data.delijn.be/stops/404990"], ["https://data.delijn.be/stops/204687", "https://data.delijn.be/stops/204688"], ["https://data.delijn.be/stops/404339", "https://data.delijn.be/stops/404347"], ["https://data.delijn.be/stops/509725", "https://data.delijn.be/stops/509726"], ["https://data.delijn.be/stops/206554", "https://data.delijn.be/stops/206569"], ["https://data.delijn.be/stops/400905", "https://data.delijn.be/stops/401246"], ["https://data.delijn.be/stops/505664", "https://data.delijn.be/stops/509700"], ["https://data.delijn.be/stops/501690", "https://data.delijn.be/stops/506436"], ["https://data.delijn.be/stops/302499", "https://data.delijn.be/stops/302502"], ["https://data.delijn.be/stops/501560", "https://data.delijn.be/stops/509811"], ["https://data.delijn.be/stops/201835", "https://data.delijn.be/stops/201845"], ["https://data.delijn.be/stops/504208", "https://data.delijn.be/stops/504691"], ["https://data.delijn.be/stops/106021", "https://data.delijn.be/stops/109860"], ["https://data.delijn.be/stops/201208", "https://data.delijn.be/stops/203142"], ["https://data.delijn.be/stops/205049", "https://data.delijn.be/stops/205051"], ["https://data.delijn.be/stops/301448", "https://data.delijn.be/stops/307271"], ["https://data.delijn.be/stops/101666", "https://data.delijn.be/stops/108727"], ["https://data.delijn.be/stops/304104", "https://data.delijn.be/stops/304786"], ["https://data.delijn.be/stops/502321", "https://data.delijn.be/stops/507321"], ["https://data.delijn.be/stops/204242", "https://data.delijn.be/stops/205477"], ["https://data.delijn.be/stops/105716", "https://data.delijn.be/stops/105718"], ["https://data.delijn.be/stops/500208", "https://data.delijn.be/stops/504855"], ["https://data.delijn.be/stops/102655", "https://data.delijn.be/stops/103209"], ["https://data.delijn.be/stops/403294", "https://data.delijn.be/stops/403312"], ["https://data.delijn.be/stops/304151", "https://data.delijn.be/stops/304162"], ["https://data.delijn.be/stops/108852", "https://data.delijn.be/stops/108853"], ["https://data.delijn.be/stops/401409", "https://data.delijn.be/stops/300924"], ["https://data.delijn.be/stops/502529", "https://data.delijn.be/stops/505348"], ["https://data.delijn.be/stops/200929", "https://data.delijn.be/stops/204994"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/203630"], ["https://data.delijn.be/stops/304945", "https://data.delijn.be/stops/308022"], ["https://data.delijn.be/stops/504493", "https://data.delijn.be/stops/504502"], ["https://data.delijn.be/stops/201778", "https://data.delijn.be/stops/201816"], ["https://data.delijn.be/stops/204419", "https://data.delijn.be/stops/205419"], ["https://data.delijn.be/stops/101508", "https://data.delijn.be/stops/305994"], ["https://data.delijn.be/stops/502244", "https://data.delijn.be/stops/502917"], ["https://data.delijn.be/stops/102152", "https://data.delijn.be/stops/104165"], ["https://data.delijn.be/stops/502673", "https://data.delijn.be/stops/505050"], ["https://data.delijn.be/stops/208172", "https://data.delijn.be/stops/209171"], ["https://data.delijn.be/stops/103397", "https://data.delijn.be/stops/108010"], ["https://data.delijn.be/stops/508779", "https://data.delijn.be/stops/508838"], ["https://data.delijn.be/stops/104838", "https://data.delijn.be/stops/104958"], ["https://data.delijn.be/stops/201001", "https://data.delijn.be/stops/202520"], ["https://data.delijn.be/stops/504522", "https://data.delijn.be/stops/504531"], ["https://data.delijn.be/stops/301417", "https://data.delijn.be/stops/301420"], ["https://data.delijn.be/stops/303456", "https://data.delijn.be/stops/303457"], ["https://data.delijn.be/stops/106632", "https://data.delijn.be/stops/106634"], ["https://data.delijn.be/stops/407295", "https://data.delijn.be/stops/408075"], ["https://data.delijn.be/stops/203080", "https://data.delijn.be/stops/203737"], ["https://data.delijn.be/stops/505051", "https://data.delijn.be/stops/505735"], ["https://data.delijn.be/stops/200465", "https://data.delijn.be/stops/201465"], ["https://data.delijn.be/stops/404622", "https://data.delijn.be/stops/404628"], ["https://data.delijn.be/stops/204241", "https://data.delijn.be/stops/205479"], ["https://data.delijn.be/stops/302410", "https://data.delijn.be/stops/302421"], ["https://data.delijn.be/stops/108551", "https://data.delijn.be/stops/108558"], ["https://data.delijn.be/stops/208539", "https://data.delijn.be/stops/209541"], ["https://data.delijn.be/stops/207674", "https://data.delijn.be/stops/209137"], ["https://data.delijn.be/stops/200941", "https://data.delijn.be/stops/203699"], ["https://data.delijn.be/stops/208766", "https://data.delijn.be/stops/208767"], ["https://data.delijn.be/stops/301160", "https://data.delijn.be/stops/301398"], ["https://data.delijn.be/stops/302830", "https://data.delijn.be/stops/308824"], ["https://data.delijn.be/stops/204683", "https://data.delijn.be/stops/205674"], ["https://data.delijn.be/stops/108943", "https://data.delijn.be/stops/108946"], ["https://data.delijn.be/stops/103737", "https://data.delijn.be/stops/104964"], ["https://data.delijn.be/stops/200911", "https://data.delijn.be/stops/202099"], ["https://data.delijn.be/stops/104638", "https://data.delijn.be/stops/107961"], ["https://data.delijn.be/stops/108514", "https://data.delijn.be/stops/108516"], ["https://data.delijn.be/stops/300946", "https://data.delijn.be/stops/305404"], ["https://data.delijn.be/stops/206705", "https://data.delijn.be/stops/206708"], ["https://data.delijn.be/stops/202634", "https://data.delijn.be/stops/202635"], ["https://data.delijn.be/stops/206209", "https://data.delijn.be/stops/206580"], ["https://data.delijn.be/stops/106446", "https://data.delijn.be/stops/106447"], ["https://data.delijn.be/stops/203720", "https://data.delijn.be/stops/203721"], ["https://data.delijn.be/stops/506468", "https://data.delijn.be/stops/506470"], ["https://data.delijn.be/stops/202817", "https://data.delijn.be/stops/202819"], ["https://data.delijn.be/stops/200383", "https://data.delijn.be/stops/201607"], ["https://data.delijn.be/stops/401468", "https://data.delijn.be/stops/401506"], ["https://data.delijn.be/stops/304709", "https://data.delijn.be/stops/306374"], ["https://data.delijn.be/stops/408898", "https://data.delijn.be/stops/408911"], ["https://data.delijn.be/stops/504100", "https://data.delijn.be/stops/504199"], ["https://data.delijn.be/stops/303533", "https://data.delijn.be/stops/308792"], ["https://data.delijn.be/stops/301395", "https://data.delijn.be/stops/301397"], ["https://data.delijn.be/stops/404049", "https://data.delijn.be/stops/404052"], ["https://data.delijn.be/stops/401519", "https://data.delijn.be/stops/401521"], ["https://data.delijn.be/stops/107275", "https://data.delijn.be/stops/108440"], ["https://data.delijn.be/stops/304044", "https://data.delijn.be/stops/304791"], ["https://data.delijn.be/stops/302347", "https://data.delijn.be/stops/302355"], ["https://data.delijn.be/stops/409695", "https://data.delijn.be/stops/409696"], ["https://data.delijn.be/stops/404700", "https://data.delijn.be/stops/404825"], ["https://data.delijn.be/stops/304550", "https://data.delijn.be/stops/309669"], ["https://data.delijn.be/stops/400610", "https://data.delijn.be/stops/400611"], ["https://data.delijn.be/stops/204517", "https://data.delijn.be/stops/205517"], ["https://data.delijn.be/stops/502383", "https://data.delijn.be/stops/502406"], ["https://data.delijn.be/stops/407753", "https://data.delijn.be/stops/409793"], ["https://data.delijn.be/stops/405436", "https://data.delijn.be/stops/408734"], ["https://data.delijn.be/stops/106851", "https://data.delijn.be/stops/107232"], ["https://data.delijn.be/stops/402517", "https://data.delijn.be/stops/402519"], ["https://data.delijn.be/stops/205489", "https://data.delijn.be/stops/205820"], ["https://data.delijn.be/stops/208357", "https://data.delijn.be/stops/209184"], ["https://data.delijn.be/stops/102785", "https://data.delijn.be/stops/103100"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/510008"], ["https://data.delijn.be/stops/504104", "https://data.delijn.be/stops/505299"], ["https://data.delijn.be/stops/200189", "https://data.delijn.be/stops/200400"], ["https://data.delijn.be/stops/206321", "https://data.delijn.be/stops/207146"], ["https://data.delijn.be/stops/301255", "https://data.delijn.be/stops/301256"], ["https://data.delijn.be/stops/108699", "https://data.delijn.be/stops/108700"], ["https://data.delijn.be/stops/105739", "https://data.delijn.be/stops/105741"], ["https://data.delijn.be/stops/205085", "https://data.delijn.be/stops/205410"], ["https://data.delijn.be/stops/202149", "https://data.delijn.be/stops/202617"], ["https://data.delijn.be/stops/107462", "https://data.delijn.be/stops/109199"], ["https://data.delijn.be/stops/109966", "https://data.delijn.be/stops/109967"], ["https://data.delijn.be/stops/300940", "https://data.delijn.be/stops/304720"], ["https://data.delijn.be/stops/202253", "https://data.delijn.be/stops/203254"], ["https://data.delijn.be/stops/304149", "https://data.delijn.be/stops/304161"], ["https://data.delijn.be/stops/410135", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/103062", "https://data.delijn.be/stops/103988"], ["https://data.delijn.be/stops/302650", "https://data.delijn.be/stops/308120"], ["https://data.delijn.be/stops/104971", "https://data.delijn.be/stops/105294"], ["https://data.delijn.be/stops/109263", "https://data.delijn.be/stops/407110"], ["https://data.delijn.be/stops/206928", "https://data.delijn.be/stops/206930"], ["https://data.delijn.be/stops/300327", "https://data.delijn.be/stops/308991"], ["https://data.delijn.be/stops/404594", "https://data.delijn.be/stops/404604"], ["https://data.delijn.be/stops/302464", "https://data.delijn.be/stops/302732"], ["https://data.delijn.be/stops/107840", "https://data.delijn.be/stops/108590"], ["https://data.delijn.be/stops/108744", "https://data.delijn.be/stops/109561"], ["https://data.delijn.be/stops/203189", "https://data.delijn.be/stops/203242"], ["https://data.delijn.be/stops/503395", "https://data.delijn.be/stops/504793"], ["https://data.delijn.be/stops/207460", "https://data.delijn.be/stops/207461"], ["https://data.delijn.be/stops/402506", "https://data.delijn.be/stops/402588"], ["https://data.delijn.be/stops/504139", "https://data.delijn.be/stops/509142"], ["https://data.delijn.be/stops/106219", "https://data.delijn.be/stops/106322"], ["https://data.delijn.be/stops/300841", "https://data.delijn.be/stops/333454"], ["https://data.delijn.be/stops/104802", "https://data.delijn.be/stops/109790"], ["https://data.delijn.be/stops/302887", "https://data.delijn.be/stops/302924"], ["https://data.delijn.be/stops/306719", "https://data.delijn.be/stops/306721"], ["https://data.delijn.be/stops/204348", "https://data.delijn.be/stops/204667"], ["https://data.delijn.be/stops/405920", "https://data.delijn.be/stops/405935"], ["https://data.delijn.be/stops/200368", "https://data.delijn.be/stops/200384"], ["https://data.delijn.be/stops/401121", "https://data.delijn.be/stops/401150"], ["https://data.delijn.be/stops/300665", "https://data.delijn.be/stops/306886"], ["https://data.delijn.be/stops/206281", "https://data.delijn.be/stops/207282"], ["https://data.delijn.be/stops/204340", "https://data.delijn.be/stops/204510"], ["https://data.delijn.be/stops/402886", "https://data.delijn.be/stops/405536"], ["https://data.delijn.be/stops/400898", "https://data.delijn.be/stops/409641"], ["https://data.delijn.be/stops/503059", "https://data.delijn.be/stops/504996"], ["https://data.delijn.be/stops/505351", "https://data.delijn.be/stops/505725"], ["https://data.delijn.be/stops/104034", "https://data.delijn.be/stops/204609"], ["https://data.delijn.be/stops/403341", "https://data.delijn.be/stops/403348"], ["https://data.delijn.be/stops/107477", "https://data.delijn.be/stops/107482"], ["https://data.delijn.be/stops/300524", "https://data.delijn.be/stops/304891"], ["https://data.delijn.be/stops/504758", "https://data.delijn.be/stops/509758"], ["https://data.delijn.be/stops/202093", "https://data.delijn.be/stops/203093"], ["https://data.delijn.be/stops/301229", "https://data.delijn.be/stops/308790"], ["https://data.delijn.be/stops/407853", "https://data.delijn.be/stops/408138"], ["https://data.delijn.be/stops/504324", "https://data.delijn.be/stops/504404"], ["https://data.delijn.be/stops/200760", "https://data.delijn.be/stops/200777"], ["https://data.delijn.be/stops/501145", "https://data.delijn.be/stops/501678"], ["https://data.delijn.be/stops/304765", "https://data.delijn.be/stops/304768"], ["https://data.delijn.be/stops/109133", "https://data.delijn.be/stops/109136"], ["https://data.delijn.be/stops/502805", "https://data.delijn.be/stops/507500"], ["https://data.delijn.be/stops/300293", "https://data.delijn.be/stops/300294"], ["https://data.delijn.be/stops/206863", "https://data.delijn.be/stops/207031"], ["https://data.delijn.be/stops/502496", "https://data.delijn.be/stops/505591"], ["https://data.delijn.be/stops/509435", "https://data.delijn.be/stops/509440"], ["https://data.delijn.be/stops/206820", "https://data.delijn.be/stops/207821"], ["https://data.delijn.be/stops/203443", "https://data.delijn.be/stops/203444"], ["https://data.delijn.be/stops/104579", "https://data.delijn.be/stops/107887"], ["https://data.delijn.be/stops/502928", "https://data.delijn.be/stops/509828"], ["https://data.delijn.be/stops/302302", "https://data.delijn.be/stops/302322"], ["https://data.delijn.be/stops/407910", "https://data.delijn.be/stops/407911"], ["https://data.delijn.be/stops/307693", "https://data.delijn.be/stops/307694"], ["https://data.delijn.be/stops/105249", "https://data.delijn.be/stops/105842"], ["https://data.delijn.be/stops/507001", "https://data.delijn.be/stops/507039"], ["https://data.delijn.be/stops/201125", "https://data.delijn.be/stops/502274"], ["https://data.delijn.be/stops/200746", "https://data.delijn.be/stops/201773"], ["https://data.delijn.be/stops/208772", "https://data.delijn.be/stops/209789"], ["https://data.delijn.be/stops/202830", "https://data.delijn.be/stops/203947"], ["https://data.delijn.be/stops/204418", "https://data.delijn.be/stops/205762"], ["https://data.delijn.be/stops/202209", "https://data.delijn.be/stops/202503"], ["https://data.delijn.be/stops/407422", "https://data.delijn.be/stops/407426"], ["https://data.delijn.be/stops/200605", "https://data.delijn.be/stops/201603"], ["https://data.delijn.be/stops/302706", "https://data.delijn.be/stops/302730"], ["https://data.delijn.be/stops/204156", "https://data.delijn.be/stops/205581"], ["https://data.delijn.be/stops/304784", "https://data.delijn.be/stops/304796"], ["https://data.delijn.be/stops/505725", "https://data.delijn.be/stops/507286"], ["https://data.delijn.be/stops/401434", "https://data.delijn.be/stops/401435"], ["https://data.delijn.be/stops/406711", "https://data.delijn.be/stops/407901"], ["https://data.delijn.be/stops/303559", "https://data.delijn.be/stops/307989"], ["https://data.delijn.be/stops/107559", "https://data.delijn.be/stops/107563"], ["https://data.delijn.be/stops/203115", "https://data.delijn.be/stops/205796"], ["https://data.delijn.be/stops/405839", "https://data.delijn.be/stops/406874"], ["https://data.delijn.be/stops/504518", "https://data.delijn.be/stops/509517"], ["https://data.delijn.be/stops/102193", "https://data.delijn.be/stops/105929"], ["https://data.delijn.be/stops/103746", "https://data.delijn.be/stops/105794"], ["https://data.delijn.be/stops/403018", "https://data.delijn.be/stops/404260"], ["https://data.delijn.be/stops/304783", "https://data.delijn.be/stops/304784"], ["https://data.delijn.be/stops/408590", "https://data.delijn.be/stops/408592"], ["https://data.delijn.be/stops/407707", "https://data.delijn.be/stops/409626"], ["https://data.delijn.be/stops/410199", "https://data.delijn.be/stops/410263"], ["https://data.delijn.be/stops/105613", "https://data.delijn.be/stops/105616"], ["https://data.delijn.be/stops/400721", "https://data.delijn.be/stops/409504"], ["https://data.delijn.be/stops/101689", "https://data.delijn.be/stops/103694"], ["https://data.delijn.be/stops/502321", "https://data.delijn.be/stops/505575"], ["https://data.delijn.be/stops/307308", "https://data.delijn.be/stops/307335"], ["https://data.delijn.be/stops/102055", "https://data.delijn.be/stops/102056"], ["https://data.delijn.be/stops/206016", "https://data.delijn.be/stops/207387"], ["https://data.delijn.be/stops/105896", "https://data.delijn.be/stops/105934"], ["https://data.delijn.be/stops/105337", "https://data.delijn.be/stops/105338"], ["https://data.delijn.be/stops/205149", "https://data.delijn.be/stops/205156"], ["https://data.delijn.be/stops/208149", "https://data.delijn.be/stops/208153"], ["https://data.delijn.be/stops/305150", "https://data.delijn.be/stops/305168"], ["https://data.delijn.be/stops/300330", "https://data.delijn.be/stops/308991"], ["https://data.delijn.be/stops/102289", "https://data.delijn.be/stops/109636"], ["https://data.delijn.be/stops/405664", "https://data.delijn.be/stops/405713"], ["https://data.delijn.be/stops/208500", "https://data.delijn.be/stops/209500"], ["https://data.delijn.be/stops/302609", "https://data.delijn.be/stops/302616"], ["https://data.delijn.be/stops/305796", "https://data.delijn.be/stops/305798"], ["https://data.delijn.be/stops/301705", "https://data.delijn.be/stops/301706"], ["https://data.delijn.be/stops/503543", "https://data.delijn.be/stops/508563"], ["https://data.delijn.be/stops/404350", "https://data.delijn.be/stops/404897"], ["https://data.delijn.be/stops/406269", "https://data.delijn.be/stops/406294"], ["https://data.delijn.be/stops/400663", "https://data.delijn.be/stops/408957"], ["https://data.delijn.be/stops/207761", "https://data.delijn.be/stops/207782"], ["https://data.delijn.be/stops/101205", "https://data.delijn.be/stops/102400"], ["https://data.delijn.be/stops/404891", "https://data.delijn.be/stops/404900"], ["https://data.delijn.be/stops/103525", "https://data.delijn.be/stops/103530"], ["https://data.delijn.be/stops/508074", "https://data.delijn.be/stops/508522"], ["https://data.delijn.be/stops/501217", "https://data.delijn.be/stops/506422"], ["https://data.delijn.be/stops/109254", "https://data.delijn.be/stops/109256"], ["https://data.delijn.be/stops/207672", "https://data.delijn.be/stops/207936"], ["https://data.delijn.be/stops/202100", "https://data.delijn.be/stops/203257"], ["https://data.delijn.be/stops/201257", "https://data.delijn.be/stops/202541"], ["https://data.delijn.be/stops/402100", "https://data.delijn.be/stops/402332"], ["https://data.delijn.be/stops/304911", "https://data.delijn.be/stops/306407"], ["https://data.delijn.be/stops/509243", "https://data.delijn.be/stops/509244"], ["https://data.delijn.be/stops/403428", "https://data.delijn.be/stops/410209"], ["https://data.delijn.be/stops/405259", "https://data.delijn.be/stops/405272"], ["https://data.delijn.be/stops/101943", "https://data.delijn.be/stops/108757"], ["https://data.delijn.be/stops/208200", "https://data.delijn.be/stops/209200"], ["https://data.delijn.be/stops/502477", "https://data.delijn.be/stops/507474"], ["https://data.delijn.be/stops/203204", "https://data.delijn.be/stops/203205"], ["https://data.delijn.be/stops/304713", "https://data.delijn.be/stops/305121"], ["https://data.delijn.be/stops/108211", "https://data.delijn.be/stops/108212"], ["https://data.delijn.be/stops/410129", "https://data.delijn.be/stops/410289"], ["https://data.delijn.be/stops/301739", "https://data.delijn.be/stops/301740"], ["https://data.delijn.be/stops/107186", "https://data.delijn.be/stops/107188"], ["https://data.delijn.be/stops/208590", "https://data.delijn.be/stops/307024"], ["https://data.delijn.be/stops/300258", "https://data.delijn.be/stops/303825"], ["https://data.delijn.be/stops/502562", "https://data.delijn.be/stops/507562"], ["https://data.delijn.be/stops/204484", "https://data.delijn.be/stops/204759"], ["https://data.delijn.be/stops/207888", "https://data.delijn.be/stops/207892"], ["https://data.delijn.be/stops/507490", "https://data.delijn.be/stops/507494"], ["https://data.delijn.be/stops/101576", "https://data.delijn.be/stops/105461"], ["https://data.delijn.be/stops/200811", "https://data.delijn.be/stops/202049"], ["https://data.delijn.be/stops/209539", "https://data.delijn.be/stops/209559"], ["https://data.delijn.be/stops/203392", "https://data.delijn.be/stops/203393"], ["https://data.delijn.be/stops/304370", "https://data.delijn.be/stops/307385"], ["https://data.delijn.be/stops/208426", "https://data.delijn.be/stops/208431"], ["https://data.delijn.be/stops/101368", "https://data.delijn.be/stops/103242"], ["https://data.delijn.be/stops/406200", "https://data.delijn.be/stops/410401"], ["https://data.delijn.be/stops/406975", "https://data.delijn.be/stops/409467"], ["https://data.delijn.be/stops/306677", "https://data.delijn.be/stops/306680"], ["https://data.delijn.be/stops/108064", "https://data.delijn.be/stops/108066"], ["https://data.delijn.be/stops/106243", "https://data.delijn.be/stops/106244"], ["https://data.delijn.be/stops/305320", "https://data.delijn.be/stops/305321"], ["https://data.delijn.be/stops/102540", "https://data.delijn.be/stops/104965"], ["https://data.delijn.be/stops/502504", "https://data.delijn.be/stops/507504"], ["https://data.delijn.be/stops/101315", "https://data.delijn.be/stops/108370"], ["https://data.delijn.be/stops/108401", "https://data.delijn.be/stops/306637"], ["https://data.delijn.be/stops/504255", "https://data.delijn.be/stops/509237"], ["https://data.delijn.be/stops/103645", "https://data.delijn.be/stops/103650"], ["https://data.delijn.be/stops/108423", "https://data.delijn.be/stops/109568"], ["https://data.delijn.be/stops/103241", "https://data.delijn.be/stops/107298"], ["https://data.delijn.be/stops/107493", "https://data.delijn.be/stops/305795"], ["https://data.delijn.be/stops/402235", "https://data.delijn.be/stops/402291"], ["https://data.delijn.be/stops/503463", "https://data.delijn.be/stops/508191"], ["https://data.delijn.be/stops/208470", "https://data.delijn.be/stops/209673"], ["https://data.delijn.be/stops/405890", "https://data.delijn.be/stops/405891"], ["https://data.delijn.be/stops/405031", "https://data.delijn.be/stops/405033"], ["https://data.delijn.be/stops/502201", "https://data.delijn.be/stops/505608"], ["https://data.delijn.be/stops/204036", "https://data.delijn.be/stops/205037"], ["https://data.delijn.be/stops/204122", "https://data.delijn.be/stops/214005"], ["https://data.delijn.be/stops/107249", "https://data.delijn.be/stops/107250"], ["https://data.delijn.be/stops/303980", "https://data.delijn.be/stops/306594"], ["https://data.delijn.be/stops/308473", "https://data.delijn.be/stops/308474"], ["https://data.delijn.be/stops/408844", "https://data.delijn.be/stops/408847"], ["https://data.delijn.be/stops/208062", "https://data.delijn.be/stops/209511"], ["https://data.delijn.be/stops/105887", "https://data.delijn.be/stops/105894"], ["https://data.delijn.be/stops/208339", "https://data.delijn.be/stops/209339"], ["https://data.delijn.be/stops/505825", "https://data.delijn.be/stops/508337"], ["https://data.delijn.be/stops/301440", "https://data.delijn.be/stops/302129"], ["https://data.delijn.be/stops/201205", "https://data.delijn.be/stops/201255"], ["https://data.delijn.be/stops/505310", "https://data.delijn.be/stops/507348"], ["https://data.delijn.be/stops/501608", "https://data.delijn.be/stops/501609"], ["https://data.delijn.be/stops/307720", "https://data.delijn.be/stops/307721"], ["https://data.delijn.be/stops/108919", "https://data.delijn.be/stops/109412"], ["https://data.delijn.be/stops/104366", "https://data.delijn.be/stops/104398"], ["https://data.delijn.be/stops/102293", "https://data.delijn.be/stops/107978"], ["https://data.delijn.be/stops/304931", "https://data.delijn.be/stops/304933"], ["https://data.delijn.be/stops/407241", "https://data.delijn.be/stops/407242"], ["https://data.delijn.be/stops/202743", "https://data.delijn.be/stops/203856"], ["https://data.delijn.be/stops/302311", "https://data.delijn.be/stops/304103"], ["https://data.delijn.be/stops/503255", "https://data.delijn.be/stops/509793"], ["https://data.delijn.be/stops/407745", "https://data.delijn.be/stops/409878"], ["https://data.delijn.be/stops/300077", "https://data.delijn.be/stops/306788"], ["https://data.delijn.be/stops/101703", "https://data.delijn.be/stops/103348"], ["https://data.delijn.be/stops/503366", "https://data.delijn.be/stops/503411"], ["https://data.delijn.be/stops/103088", "https://data.delijn.be/stops/107468"], ["https://data.delijn.be/stops/502100", "https://data.delijn.be/stops/507100"], ["https://data.delijn.be/stops/300541", "https://data.delijn.be/stops/303219"], ["https://data.delijn.be/stops/205978", "https://data.delijn.be/stops/209244"], ["https://data.delijn.be/stops/307025", "https://data.delijn.be/stops/307534"], ["https://data.delijn.be/stops/106110", "https://data.delijn.be/stops/106172"], ["https://data.delijn.be/stops/200419", "https://data.delijn.be/stops/201419"], ["https://data.delijn.be/stops/403703", "https://data.delijn.be/stops/404264"], ["https://data.delijn.be/stops/401157", "https://data.delijn.be/stops/407091"], ["https://data.delijn.be/stops/509609", "https://data.delijn.be/stops/509613"], ["https://data.delijn.be/stops/107956", "https://data.delijn.be/stops/109776"], ["https://data.delijn.be/stops/407505", "https://data.delijn.be/stops/407512"], ["https://data.delijn.be/stops/300570", "https://data.delijn.be/stops/303622"], ["https://data.delijn.be/stops/405448", "https://data.delijn.be/stops/407567"], ["https://data.delijn.be/stops/101178", "https://data.delijn.be/stops/106739"], ["https://data.delijn.be/stops/503090", "https://data.delijn.be/stops/508093"], ["https://data.delijn.be/stops/200909", "https://data.delijn.be/stops/202051"], ["https://data.delijn.be/stops/404340", "https://data.delijn.be/stops/404344"], ["https://data.delijn.be/stops/404478", "https://data.delijn.be/stops/408171"], ["https://data.delijn.be/stops/501768", "https://data.delijn.be/stops/502473"], ["https://data.delijn.be/stops/206746", "https://data.delijn.be/stops/207712"], ["https://data.delijn.be/stops/305228", "https://data.delijn.be/stops/305890"], ["https://data.delijn.be/stops/405823", "https://data.delijn.be/stops/405832"], ["https://data.delijn.be/stops/200649", "https://data.delijn.be/stops/201585"], ["https://data.delijn.be/stops/209077", "https://data.delijn.be/stops/209540"], ["https://data.delijn.be/stops/503637", "https://data.delijn.be/stops/508313"], ["https://data.delijn.be/stops/305450", "https://data.delijn.be/stops/307535"], ["https://data.delijn.be/stops/302994", "https://data.delijn.be/stops/306298"], ["https://data.delijn.be/stops/402120", "https://data.delijn.be/stops/402121"], ["https://data.delijn.be/stops/306965", "https://data.delijn.be/stops/306966"], ["https://data.delijn.be/stops/105627", "https://data.delijn.be/stops/107169"], ["https://data.delijn.be/stops/503328", "https://data.delijn.be/stops/508328"], ["https://data.delijn.be/stops/206903", "https://data.delijn.be/stops/207075"], ["https://data.delijn.be/stops/200518", "https://data.delijn.be/stops/200550"], ["https://data.delijn.be/stops/502230", "https://data.delijn.be/stops/507917"], ["https://data.delijn.be/stops/206033", "https://data.delijn.be/stops/206214"], ["https://data.delijn.be/stops/305037", "https://data.delijn.be/stops/305039"], ["https://data.delijn.be/stops/401488", "https://data.delijn.be/stops/401500"], ["https://data.delijn.be/stops/507479", "https://data.delijn.be/stops/507482"], ["https://data.delijn.be/stops/501241", "https://data.delijn.be/stops/506371"], ["https://data.delijn.be/stops/201633", "https://data.delijn.be/stops/201637"], ["https://data.delijn.be/stops/201859", "https://data.delijn.be/stops/210037"], ["https://data.delijn.be/stops/204202", "https://data.delijn.be/stops/205203"], ["https://data.delijn.be/stops/404691", "https://data.delijn.be/stops/409499"], ["https://data.delijn.be/stops/207865", "https://data.delijn.be/stops/208746"], ["https://data.delijn.be/stops/507688", "https://data.delijn.be/stops/508774"], ["https://data.delijn.be/stops/103162", "https://data.delijn.be/stops/109932"], ["https://data.delijn.be/stops/208525", "https://data.delijn.be/stops/209044"], ["https://data.delijn.be/stops/301532", "https://data.delijn.be/stops/301533"], ["https://data.delijn.be/stops/302438", "https://data.delijn.be/stops/302445"], ["https://data.delijn.be/stops/501149", "https://data.delijn.be/stops/506147"], ["https://data.delijn.be/stops/106771", "https://data.delijn.be/stops/106808"], ["https://data.delijn.be/stops/503080", "https://data.delijn.be/stops/509951"], ["https://data.delijn.be/stops/301645", "https://data.delijn.be/stops/302108"], ["https://data.delijn.be/stops/401219", "https://data.delijn.be/stops/401226"], ["https://data.delijn.be/stops/303103", "https://data.delijn.be/stops/303104"], ["https://data.delijn.be/stops/102600", "https://data.delijn.be/stops/103636"], ["https://data.delijn.be/stops/502392", "https://data.delijn.be/stops/507379"], ["https://data.delijn.be/stops/400146", "https://data.delijn.be/stops/409207"], ["https://data.delijn.be/stops/107482", "https://data.delijn.be/stops/107483"], ["https://data.delijn.be/stops/501200", "https://data.delijn.be/stops/501202"], ["https://data.delijn.be/stops/504043", "https://data.delijn.be/stops/509047"], ["https://data.delijn.be/stops/302805", "https://data.delijn.be/stops/308866"], ["https://data.delijn.be/stops/102646", "https://data.delijn.be/stops/107927"], ["https://data.delijn.be/stops/104846", "https://data.delijn.be/stops/106864"], ["https://data.delijn.be/stops/206355", "https://data.delijn.be/stops/207345"], ["https://data.delijn.be/stops/200259", "https://data.delijn.be/stops/201259"], ["https://data.delijn.be/stops/306691", "https://data.delijn.be/stops/306694"], ["https://data.delijn.be/stops/504040", "https://data.delijn.be/stops/509343"], ["https://data.delijn.be/stops/406212", "https://data.delijn.be/stops/406215"], ["https://data.delijn.be/stops/506410", "https://data.delijn.be/stops/506414"], ["https://data.delijn.be/stops/109801", "https://data.delijn.be/stops/109804"], ["https://data.delijn.be/stops/206540", "https://data.delijn.be/stops/206552"], ["https://data.delijn.be/stops/402243", "https://data.delijn.be/stops/402329"], ["https://data.delijn.be/stops/206234", "https://data.delijn.be/stops/207234"], ["https://data.delijn.be/stops/302269", "https://data.delijn.be/stops/302271"], ["https://data.delijn.be/stops/204481", "https://data.delijn.be/stops/205481"], ["https://data.delijn.be/stops/206610", "https://data.delijn.be/stops/207610"], ["https://data.delijn.be/stops/407949", "https://data.delijn.be/stops/407983"], ["https://data.delijn.be/stops/108052", "https://data.delijn.be/stops/307903"], ["https://data.delijn.be/stops/306118", "https://data.delijn.be/stops/306120"], ["https://data.delijn.be/stops/503479", "https://data.delijn.be/stops/504253"], ["https://data.delijn.be/stops/204711", "https://data.delijn.be/stops/205722"], ["https://data.delijn.be/stops/300306", "https://data.delijn.be/stops/306270"], ["https://data.delijn.be/stops/304010", "https://data.delijn.be/stops/307996"], ["https://data.delijn.be/stops/201769", "https://data.delijn.be/stops/218011"], ["https://data.delijn.be/stops/401200", "https://data.delijn.be/stops/401351"], ["https://data.delijn.be/stops/402704", "https://data.delijn.be/stops/402708"], ["https://data.delijn.be/stops/300275", "https://data.delijn.be/stops/300276"], ["https://data.delijn.be/stops/304142", "https://data.delijn.be/stops/307546"], ["https://data.delijn.be/stops/304724", "https://data.delijn.be/stops/305581"], ["https://data.delijn.be/stops/207664", "https://data.delijn.be/stops/209675"], ["https://data.delijn.be/stops/502685", "https://data.delijn.be/stops/508021"], ["https://data.delijn.be/stops/501512", "https://data.delijn.be/stops/506512"], ["https://data.delijn.be/stops/202098", "https://data.delijn.be/stops/203098"], ["https://data.delijn.be/stops/307295", "https://data.delijn.be/stops/307944"], ["https://data.delijn.be/stops/203873", "https://data.delijn.be/stops/209712"], ["https://data.delijn.be/stops/106746", "https://data.delijn.be/stops/109775"], ["https://data.delijn.be/stops/400772", "https://data.delijn.be/stops/400773"], ["https://data.delijn.be/stops/306392", "https://data.delijn.be/stops/306393"], ["https://data.delijn.be/stops/502350", "https://data.delijn.be/stops/505232"], ["https://data.delijn.be/stops/206773", "https://data.delijn.be/stops/209091"], ["https://data.delijn.be/stops/200357", "https://data.delijn.be/stops/203646"], ["https://data.delijn.be/stops/406735", "https://data.delijn.be/stops/407627"], ["https://data.delijn.be/stops/302629", "https://data.delijn.be/stops/302655"], ["https://data.delijn.be/stops/505945", "https://data.delijn.be/stops/509876"], ["https://data.delijn.be/stops/409737", "https://data.delijn.be/stops/409759"], ["https://data.delijn.be/stops/200764", "https://data.delijn.be/stops/200776"], ["https://data.delijn.be/stops/300124", "https://data.delijn.be/stops/300147"], ["https://data.delijn.be/stops/403954", "https://data.delijn.be/stops/404028"], ["https://data.delijn.be/stops/206369", "https://data.delijn.be/stops/207369"], ["https://data.delijn.be/stops/103121", "https://data.delijn.be/stops/104126"], ["https://data.delijn.be/stops/207630", "https://data.delijn.be/stops/209571"], ["https://data.delijn.be/stops/509760", "https://data.delijn.be/stops/509907"], ["https://data.delijn.be/stops/305957", "https://data.delijn.be/stops/306744"], ["https://data.delijn.be/stops/208478", "https://data.delijn.be/stops/209477"], ["https://data.delijn.be/stops/107664", "https://data.delijn.be/stops/109105"], ["https://data.delijn.be/stops/501284", "https://data.delijn.be/stops/506284"], ["https://data.delijn.be/stops/205292", "https://data.delijn.be/stops/205761"], ["https://data.delijn.be/stops/501642", "https://data.delijn.be/stops/501674"], ["https://data.delijn.be/stops/202137", "https://data.delijn.be/stops/203138"], ["https://data.delijn.be/stops/102951", "https://data.delijn.be/stops/106030"], ["https://data.delijn.be/stops/400227", "https://data.delijn.be/stops/410001"], ["https://data.delijn.be/stops/502559", "https://data.delijn.be/stops/505335"], ["https://data.delijn.be/stops/206669", "https://data.delijn.be/stops/209779"], ["https://data.delijn.be/stops/302130", "https://data.delijn.be/stops/305597"], ["https://data.delijn.be/stops/101722", "https://data.delijn.be/stops/105262"], ["https://data.delijn.be/stops/302705", "https://data.delijn.be/stops/302730"], ["https://data.delijn.be/stops/407241", "https://data.delijn.be/stops/407455"], ["https://data.delijn.be/stops/402853", "https://data.delijn.be/stops/402891"], ["https://data.delijn.be/stops/503856", "https://data.delijn.be/stops/503860"], ["https://data.delijn.be/stops/504430", "https://data.delijn.be/stops/505998"], ["https://data.delijn.be/stops/400400", "https://data.delijn.be/stops/400962"], ["https://data.delijn.be/stops/405473", "https://data.delijn.be/stops/406552"], ["https://data.delijn.be/stops/307695", "https://data.delijn.be/stops/307697"], ["https://data.delijn.be/stops/102763", "https://data.delijn.be/stops/105586"], ["https://data.delijn.be/stops/503388", "https://data.delijn.be/stops/508388"], ["https://data.delijn.be/stops/102150", "https://data.delijn.be/stops/102443"], ["https://data.delijn.be/stops/201325", "https://data.delijn.be/stops/210085"], ["https://data.delijn.be/stops/408770", "https://data.delijn.be/stops/408772"], ["https://data.delijn.be/stops/103975", "https://data.delijn.be/stops/104645"], ["https://data.delijn.be/stops/101019", "https://data.delijn.be/stops/105625"], ["https://data.delijn.be/stops/505242", "https://data.delijn.be/stops/507254"], ["https://data.delijn.be/stops/305062", "https://data.delijn.be/stops/305063"], ["https://data.delijn.be/stops/201138", "https://data.delijn.be/stops/201308"], ["https://data.delijn.be/stops/200278", "https://data.delijn.be/stops/200995"], ["https://data.delijn.be/stops/306683", "https://data.delijn.be/stops/306684"], ["https://data.delijn.be/stops/402669", "https://data.delijn.be/stops/402670"], ["https://data.delijn.be/stops/308470", "https://data.delijn.be/stops/308519"], ["https://data.delijn.be/stops/306110", "https://data.delijn.be/stops/306111"], ["https://data.delijn.be/stops/202615", "https://data.delijn.be/stops/202616"], ["https://data.delijn.be/stops/106423", "https://data.delijn.be/stops/106558"], ["https://data.delijn.be/stops/206983", "https://data.delijn.be/stops/301228"], ["https://data.delijn.be/stops/201001", "https://data.delijn.be/stops/203521"], ["https://data.delijn.be/stops/102158", "https://data.delijn.be/stops/104966"], ["https://data.delijn.be/stops/403008", "https://data.delijn.be/stops/410279"], ["https://data.delijn.be/stops/510023", "https://data.delijn.be/stops/510024"], ["https://data.delijn.be/stops/402107", "https://data.delijn.be/stops/402263"], ["https://data.delijn.be/stops/405612", "https://data.delijn.be/stops/407179"], ["https://data.delijn.be/stops/402264", "https://data.delijn.be/stops/402423"], ["https://data.delijn.be/stops/307827", "https://data.delijn.be/stops/307878"], ["https://data.delijn.be/stops/503783", "https://data.delijn.be/stops/508782"], ["https://data.delijn.be/stops/404058", "https://data.delijn.be/stops/406856"], ["https://data.delijn.be/stops/505558", "https://data.delijn.be/stops/509940"], ["https://data.delijn.be/stops/402805", "https://data.delijn.be/stops/406010"], ["https://data.delijn.be/stops/505130", "https://data.delijn.be/stops/508035"], ["https://data.delijn.be/stops/406613", "https://data.delijn.be/stops/406614"], ["https://data.delijn.be/stops/204181", "https://data.delijn.be/stops/205368"], ["https://data.delijn.be/stops/206880", "https://data.delijn.be/stops/207356"], ["https://data.delijn.be/stops/202531", "https://data.delijn.be/stops/203965"], ["https://data.delijn.be/stops/402245", "https://data.delijn.be/stops/409393"], ["https://data.delijn.be/stops/408550", "https://data.delijn.be/stops/408706"], ["https://data.delijn.be/stops/300338", "https://data.delijn.be/stops/307030"], ["https://data.delijn.be/stops/409768", "https://data.delijn.be/stops/409770"], ["https://data.delijn.be/stops/406812", "https://data.delijn.be/stops/406813"], ["https://data.delijn.be/stops/101760", "https://data.delijn.be/stops/103492"], ["https://data.delijn.be/stops/502417", "https://data.delijn.be/stops/502750"], ["https://data.delijn.be/stops/101640", "https://data.delijn.be/stops/108645"], ["https://data.delijn.be/stops/208536", "https://data.delijn.be/stops/209536"], ["https://data.delijn.be/stops/503686", "https://data.delijn.be/stops/508684"], ["https://data.delijn.be/stops/303442", "https://data.delijn.be/stops/303443"], ["https://data.delijn.be/stops/102255", "https://data.delijn.be/stops/103535"], ["https://data.delijn.be/stops/305956", "https://data.delijn.be/stops/305957"], ["https://data.delijn.be/stops/401224", "https://data.delijn.be/stops/401225"], ["https://data.delijn.be/stops/207309", "https://data.delijn.be/stops/207356"], ["https://data.delijn.be/stops/408640", "https://data.delijn.be/stops/408714"], ["https://data.delijn.be/stops/407537", "https://data.delijn.be/stops/409113"], ["https://data.delijn.be/stops/206990", "https://data.delijn.be/stops/301446"], ["https://data.delijn.be/stops/403570", "https://data.delijn.be/stops/403571"], ["https://data.delijn.be/stops/201915", "https://data.delijn.be/stops/202951"], ["https://data.delijn.be/stops/401629", "https://data.delijn.be/stops/308217"], ["https://data.delijn.be/stops/102308", "https://data.delijn.be/stops/105657"], ["https://data.delijn.be/stops/204500", "https://data.delijn.be/stops/204546"], ["https://data.delijn.be/stops/504774", "https://data.delijn.be/stops/508584"], ["https://data.delijn.be/stops/202159", "https://data.delijn.be/stops/203159"], ["https://data.delijn.be/stops/505794", "https://data.delijn.be/stops/509372"], ["https://data.delijn.be/stops/101218", "https://data.delijn.be/stops/101658"], ["https://data.delijn.be/stops/301261", "https://data.delijn.be/stops/307392"], ["https://data.delijn.be/stops/107346", "https://data.delijn.be/stops/107348"], ["https://data.delijn.be/stops/403772", "https://data.delijn.be/stops/403774"], ["https://data.delijn.be/stops/204644", "https://data.delijn.be/stops/205644"], ["https://data.delijn.be/stops/206723", "https://data.delijn.be/stops/207985"], ["https://data.delijn.be/stops/503746", "https://data.delijn.be/stops/508749"], ["https://data.delijn.be/stops/209600", "https://data.delijn.be/stops/307306"], ["https://data.delijn.be/stops/304401", "https://data.delijn.be/stops/307416"], ["https://data.delijn.be/stops/401584", "https://data.delijn.be/stops/401585"], ["https://data.delijn.be/stops/101488", "https://data.delijn.be/stops/101489"], ["https://data.delijn.be/stops/103005", "https://data.delijn.be/stops/103601"], ["https://data.delijn.be/stops/503364", "https://data.delijn.be/stops/508725"], ["https://data.delijn.be/stops/503265", "https://data.delijn.be/stops/508945"], ["https://data.delijn.be/stops/202693", "https://data.delijn.be/stops/203679"], ["https://data.delijn.be/stops/504586", "https://data.delijn.be/stops/509582"], ["https://data.delijn.be/stops/503453", "https://data.delijn.be/stops/504808"], ["https://data.delijn.be/stops/201079", "https://data.delijn.be/stops/201546"], ["https://data.delijn.be/stops/401412", "https://data.delijn.be/stops/303650"], ["https://data.delijn.be/stops/504122", "https://data.delijn.be/stops/504259"], ["https://data.delijn.be/stops/303020", "https://data.delijn.be/stops/304229"], ["https://data.delijn.be/stops/202077", "https://data.delijn.be/stops/211075"], ["https://data.delijn.be/stops/509238", "https://data.delijn.be/stops/509239"], ["https://data.delijn.be/stops/504654", "https://data.delijn.be/stops/509135"], ["https://data.delijn.be/stops/102198", "https://data.delijn.be/stops/105842"], ["https://data.delijn.be/stops/304597", "https://data.delijn.be/stops/304598"], ["https://data.delijn.be/stops/509955", "https://data.delijn.be/stops/509976"], ["https://data.delijn.be/stops/206034", "https://data.delijn.be/stops/206901"], ["https://data.delijn.be/stops/308151", "https://data.delijn.be/stops/308165"], ["https://data.delijn.be/stops/401757", "https://data.delijn.be/stops/401871"], ["https://data.delijn.be/stops/208325", "https://data.delijn.be/stops/505797"], ["https://data.delijn.be/stops/101675", "https://data.delijn.be/stops/105785"], ["https://data.delijn.be/stops/504834", "https://data.delijn.be/stops/505443"], ["https://data.delijn.be/stops/406324", "https://data.delijn.be/stops/406325"], ["https://data.delijn.be/stops/300656", "https://data.delijn.be/stops/300666"], ["https://data.delijn.be/stops/205120", "https://data.delijn.be/stops/205148"], ["https://data.delijn.be/stops/306606", "https://data.delijn.be/stops/306609"], ["https://data.delijn.be/stops/205402", "https://data.delijn.be/stops/205403"], ["https://data.delijn.be/stops/408196", "https://data.delijn.be/stops/408415"], ["https://data.delijn.be/stops/402844", "https://data.delijn.be/stops/402845"], ["https://data.delijn.be/stops/202956", "https://data.delijn.be/stops/203956"], ["https://data.delijn.be/stops/305289", "https://data.delijn.be/stops/305290"], ["https://data.delijn.be/stops/103037", "https://data.delijn.be/stops/103039"], ["https://data.delijn.be/stops/301290", "https://data.delijn.be/stops/301310"], ["https://data.delijn.be/stops/405980", "https://data.delijn.be/stops/405982"], ["https://data.delijn.be/stops/408861", "https://data.delijn.be/stops/408870"], ["https://data.delijn.be/stops/103668", "https://data.delijn.be/stops/103671"], ["https://data.delijn.be/stops/305243", "https://data.delijn.be/stops/306091"], ["https://data.delijn.be/stops/301069", "https://data.delijn.be/stops/306115"], ["https://data.delijn.be/stops/108446", "https://data.delijn.be/stops/108450"], ["https://data.delijn.be/stops/503498", "https://data.delijn.be/stops/503877"], ["https://data.delijn.be/stops/505971", "https://data.delijn.be/stops/509605"], ["https://data.delijn.be/stops/304797", "https://data.delijn.be/stops/307130"], ["https://data.delijn.be/stops/403388", "https://data.delijn.be/stops/406854"], ["https://data.delijn.be/stops/202723", "https://data.delijn.be/stops/203723"], ["https://data.delijn.be/stops/301703", "https://data.delijn.be/stops/305891"], ["https://data.delijn.be/stops/400860", "https://data.delijn.be/stops/406589"], ["https://data.delijn.be/stops/200738", "https://data.delijn.be/stops/202597"], ["https://data.delijn.be/stops/508543", "https://data.delijn.be/stops/508566"], ["https://data.delijn.be/stops/101756", "https://data.delijn.be/stops/101757"], ["https://data.delijn.be/stops/300951", "https://data.delijn.be/stops/301006"], ["https://data.delijn.be/stops/503930", "https://data.delijn.be/stops/505254"], ["https://data.delijn.be/stops/504514", "https://data.delijn.be/stops/509514"], ["https://data.delijn.be/stops/206144", "https://data.delijn.be/stops/207144"], ["https://data.delijn.be/stops/507092", "https://data.delijn.be/stops/507135"], ["https://data.delijn.be/stops/102642", "https://data.delijn.be/stops/107866"], ["https://data.delijn.be/stops/505427", "https://data.delijn.be/stops/508490"], ["https://data.delijn.be/stops/304933", "https://data.delijn.be/stops/305243"], ["https://data.delijn.be/stops/502223", "https://data.delijn.be/stops/507220"], ["https://data.delijn.be/stops/202159", "https://data.delijn.be/stops/203244"], ["https://data.delijn.be/stops/202862", "https://data.delijn.be/stops/203861"], ["https://data.delijn.be/stops/200526", "https://data.delijn.be/stops/200678"], ["https://data.delijn.be/stops/500929", "https://data.delijn.be/stops/500931"], ["https://data.delijn.be/stops/305438", "https://data.delijn.be/stops/305504"], ["https://data.delijn.be/stops/504135", "https://data.delijn.be/stops/504654"], ["https://data.delijn.be/stops/307968", "https://data.delijn.be/stops/307969"], ["https://data.delijn.be/stops/200914", "https://data.delijn.be/stops/202090"], ["https://data.delijn.be/stops/302765", "https://data.delijn.be/stops/302774"], ["https://data.delijn.be/stops/204069", "https://data.delijn.be/stops/204186"], ["https://data.delijn.be/stops/102974", "https://data.delijn.be/stops/107136"], ["https://data.delijn.be/stops/103076", "https://data.delijn.be/stops/109522"], ["https://data.delijn.be/stops/501357", "https://data.delijn.be/stops/506742"], ["https://data.delijn.be/stops/104041", "https://data.delijn.be/stops/104042"], ["https://data.delijn.be/stops/302682", "https://data.delijn.be/stops/306184"], ["https://data.delijn.be/stops/404580", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/103683", "https://data.delijn.be/stops/103684"], ["https://data.delijn.be/stops/400616", "https://data.delijn.be/stops/400617"], ["https://data.delijn.be/stops/308164", "https://data.delijn.be/stops/308165"], ["https://data.delijn.be/stops/107058", "https://data.delijn.be/stops/107059"], ["https://data.delijn.be/stops/201675", "https://data.delijn.be/stops/202503"], ["https://data.delijn.be/stops/502067", "https://data.delijn.be/stops/502451"], ["https://data.delijn.be/stops/202949", "https://data.delijn.be/stops/203949"], ["https://data.delijn.be/stops/201696", "https://data.delijn.be/stops/203385"], ["https://data.delijn.be/stops/302142", "https://data.delijn.be/stops/306271"], ["https://data.delijn.be/stops/501744", "https://data.delijn.be/stops/504129"], ["https://data.delijn.be/stops/300014", "https://data.delijn.be/stops/304551"], ["https://data.delijn.be/stops/105452", "https://data.delijn.be/stops/109946"], ["https://data.delijn.be/stops/402621", "https://data.delijn.be/stops/402623"], ["https://data.delijn.be/stops/307542", "https://data.delijn.be/stops/307544"], ["https://data.delijn.be/stops/106560", "https://data.delijn.be/stops/106562"], ["https://data.delijn.be/stops/501466", "https://data.delijn.be/stops/501468"], ["https://data.delijn.be/stops/102724", "https://data.delijn.be/stops/103340"], ["https://data.delijn.be/stops/206283", "https://data.delijn.be/stops/206284"], ["https://data.delijn.be/stops/408741", "https://data.delijn.be/stops/408817"], ["https://data.delijn.be/stops/303802", "https://data.delijn.be/stops/307031"], ["https://data.delijn.be/stops/200455", "https://data.delijn.be/stops/200459"], ["https://data.delijn.be/stops/504729", "https://data.delijn.be/stops/509490"], ["https://data.delijn.be/stops/202636", "https://data.delijn.be/stops/204077"], ["https://data.delijn.be/stops/200271", "https://data.delijn.be/stops/200272"], ["https://data.delijn.be/stops/503121", "https://data.delijn.be/stops/508114"], ["https://data.delijn.be/stops/300276", "https://data.delijn.be/stops/301322"], ["https://data.delijn.be/stops/200448", "https://data.delijn.be/stops/210113"], ["https://data.delijn.be/stops/404193", "https://data.delijn.be/stops/405916"], ["https://data.delijn.be/stops/401782", "https://data.delijn.be/stops/409349"], ["https://data.delijn.be/stops/303719", "https://data.delijn.be/stops/303745"], ["https://data.delijn.be/stops/102804", "https://data.delijn.be/stops/109446"], ["https://data.delijn.be/stops/509619", "https://data.delijn.be/stops/509627"], ["https://data.delijn.be/stops/401756", "https://data.delijn.be/stops/401771"], ["https://data.delijn.be/stops/300125", "https://data.delijn.be/stops/305993"], ["https://data.delijn.be/stops/200814", "https://data.delijn.be/stops/200888"], ["https://data.delijn.be/stops/300822", "https://data.delijn.be/stops/300876"], ["https://data.delijn.be/stops/200462", "https://data.delijn.be/stops/201465"], ["https://data.delijn.be/stops/300028", "https://data.delijn.be/stops/300065"], ["https://data.delijn.be/stops/305132", "https://data.delijn.be/stops/305171"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/505803"], ["https://data.delijn.be/stops/509624", "https://data.delijn.be/stops/509626"], ["https://data.delijn.be/stops/105326", "https://data.delijn.be/stops/105336"], ["https://data.delijn.be/stops/103494", "https://data.delijn.be/stops/103497"], ["https://data.delijn.be/stops/505688", "https://data.delijn.be/stops/505689"], ["https://data.delijn.be/stops/405765", "https://data.delijn.be/stops/409417"], ["https://data.delijn.be/stops/301813", "https://data.delijn.be/stops/305545"], ["https://data.delijn.be/stops/102549", "https://data.delijn.be/stops/102552"], ["https://data.delijn.be/stops/502572", "https://data.delijn.be/stops/507572"], ["https://data.delijn.be/stops/401837", "https://data.delijn.be/stops/401840"], ["https://data.delijn.be/stops/200238", "https://data.delijn.be/stops/201238"], ["https://data.delijn.be/stops/300451", "https://data.delijn.be/stops/300461"], ["https://data.delijn.be/stops/404144", "https://data.delijn.be/stops/404169"], ["https://data.delijn.be/stops/501129", "https://data.delijn.be/stops/501137"], ["https://data.delijn.be/stops/405783", "https://data.delijn.be/stops/409768"], ["https://data.delijn.be/stops/403375", "https://data.delijn.be/stops/404123"], ["https://data.delijn.be/stops/109826", "https://data.delijn.be/stops/109829"], ["https://data.delijn.be/stops/204508", "https://data.delijn.be/stops/205508"], ["https://data.delijn.be/stops/107537", "https://data.delijn.be/stops/303882"], ["https://data.delijn.be/stops/201680", "https://data.delijn.be/stops/203403"], ["https://data.delijn.be/stops/105196", "https://data.delijn.be/stops/108883"], ["https://data.delijn.be/stops/504176", "https://data.delijn.be/stops/509164"], ["https://data.delijn.be/stops/206681", "https://data.delijn.be/stops/207626"], ["https://data.delijn.be/stops/204698", "https://data.delijn.be/stops/214009"], ["https://data.delijn.be/stops/206874", "https://data.delijn.be/stops/207874"], ["https://data.delijn.be/stops/500006", "https://data.delijn.be/stops/501472"], ["https://data.delijn.be/stops/200628", "https://data.delijn.be/stops/202904"], ["https://data.delijn.be/stops/301816", "https://data.delijn.be/stops/303891"], ["https://data.delijn.be/stops/102170", "https://data.delijn.be/stops/104340"], ["https://data.delijn.be/stops/406213", "https://data.delijn.be/stops/406215"], ["https://data.delijn.be/stops/106180", "https://data.delijn.be/stops/106187"], ["https://data.delijn.be/stops/502062", "https://data.delijn.be/stops/505689"], ["https://data.delijn.be/stops/500025", "https://data.delijn.be/stops/505740"], ["https://data.delijn.be/stops/502306", "https://data.delijn.be/stops/502312"], ["https://data.delijn.be/stops/207668", "https://data.delijn.be/stops/209056"], ["https://data.delijn.be/stops/301411", "https://data.delijn.be/stops/303627"], ["https://data.delijn.be/stops/409089", "https://data.delijn.be/stops/409137"], ["https://data.delijn.be/stops/202509", "https://data.delijn.be/stops/203079"], ["https://data.delijn.be/stops/402802", "https://data.delijn.be/stops/409030"], ["https://data.delijn.be/stops/103650", "https://data.delijn.be/stops/104405"], ["https://data.delijn.be/stops/402309", "https://data.delijn.be/stops/402310"], ["https://data.delijn.be/stops/103246", "https://data.delijn.be/stops/108420"], ["https://data.delijn.be/stops/503261", "https://data.delijn.be/stops/509765"], ["https://data.delijn.be/stops/300371", "https://data.delijn.be/stops/300375"], ["https://data.delijn.be/stops/406156", "https://data.delijn.be/stops/406275"], ["https://data.delijn.be/stops/202017", "https://data.delijn.be/stops/202657"], ["https://data.delijn.be/stops/503730", "https://data.delijn.be/stops/509513"], ["https://data.delijn.be/stops/502257", "https://data.delijn.be/stops/507257"], ["https://data.delijn.be/stops/402087", "https://data.delijn.be/stops/402215"], ["https://data.delijn.be/stops/402046", "https://data.delijn.be/stops/402047"], ["https://data.delijn.be/stops/504509", "https://data.delijn.be/stops/505411"], ["https://data.delijn.be/stops/208052", "https://data.delijn.be/stops/209052"], ["https://data.delijn.be/stops/505130", "https://data.delijn.be/stops/505131"], ["https://data.delijn.be/stops/206092", "https://data.delijn.be/stops/207092"], ["https://data.delijn.be/stops/408390", "https://data.delijn.be/stops/408391"], ["https://data.delijn.be/stops/502725", "https://data.delijn.be/stops/507407"], ["https://data.delijn.be/stops/501291", "https://data.delijn.be/stops/506326"], ["https://data.delijn.be/stops/503205", "https://data.delijn.be/stops/508406"], ["https://data.delijn.be/stops/403807", "https://data.delijn.be/stops/406302"], ["https://data.delijn.be/stops/403915", "https://data.delijn.be/stops/410350"], ["https://data.delijn.be/stops/105329", "https://data.delijn.be/stops/105333"], ["https://data.delijn.be/stops/406305", "https://data.delijn.be/stops/406316"], ["https://data.delijn.be/stops/407708", "https://data.delijn.be/stops/407768"], ["https://data.delijn.be/stops/107593", "https://data.delijn.be/stops/107596"], ["https://data.delijn.be/stops/504262", "https://data.delijn.be/stops/509198"], ["https://data.delijn.be/stops/405585", "https://data.delijn.be/stops/408364"], ["https://data.delijn.be/stops/204070", "https://data.delijn.be/stops/205097"], ["https://data.delijn.be/stops/503913", "https://data.delijn.be/stops/507698"], ["https://data.delijn.be/stops/402106", "https://data.delijn.be/stops/402298"], ["https://data.delijn.be/stops/300464", "https://data.delijn.be/stops/300465"], ["https://data.delijn.be/stops/102601", "https://data.delijn.be/stops/102643"], ["https://data.delijn.be/stops/103993", "https://data.delijn.be/stops/105314"], ["https://data.delijn.be/stops/301470", "https://data.delijn.be/stops/301475"], ["https://data.delijn.be/stops/509776", "https://data.delijn.be/stops/509782"], ["https://data.delijn.be/stops/105558", "https://data.delijn.be/stops/106292"], ["https://data.delijn.be/stops/502163", "https://data.delijn.be/stops/507438"], ["https://data.delijn.be/stops/106899", "https://data.delijn.be/stops/106901"], ["https://data.delijn.be/stops/504837", "https://data.delijn.be/stops/505118"], ["https://data.delijn.be/stops/301026", "https://data.delijn.be/stops/301031"], ["https://data.delijn.be/stops/501409", "https://data.delijn.be/stops/501416"], ["https://data.delijn.be/stops/501088", "https://data.delijn.be/stops/505152"], ["https://data.delijn.be/stops/508264", "https://data.delijn.be/stops/508265"], ["https://data.delijn.be/stops/503557", "https://data.delijn.be/stops/503562"], ["https://data.delijn.be/stops/208351", "https://data.delijn.be/stops/208352"], ["https://data.delijn.be/stops/102203", "https://data.delijn.be/stops/105817"], ["https://data.delijn.be/stops/308444", "https://data.delijn.be/stops/308692"], ["https://data.delijn.be/stops/304898", "https://data.delijn.be/stops/304900"], ["https://data.delijn.be/stops/404168", "https://data.delijn.be/stops/404169"], ["https://data.delijn.be/stops/403226", "https://data.delijn.be/stops/403232"], ["https://data.delijn.be/stops/202927", "https://data.delijn.be/stops/203926"], ["https://data.delijn.be/stops/207699", "https://data.delijn.be/stops/207734"], ["https://data.delijn.be/stops/304164", "https://data.delijn.be/stops/305450"], ["https://data.delijn.be/stops/200459", "https://data.delijn.be/stops/201456"], ["https://data.delijn.be/stops/506067", "https://data.delijn.be/stops/506070"], ["https://data.delijn.be/stops/305018", "https://data.delijn.be/stops/305455"], ["https://data.delijn.be/stops/504047", "https://data.delijn.be/stops/505810"], ["https://data.delijn.be/stops/108382", "https://data.delijn.be/stops/109764"], ["https://data.delijn.be/stops/304756", "https://data.delijn.be/stops/304757"], ["https://data.delijn.be/stops/302189", "https://data.delijn.be/stops/302197"], ["https://data.delijn.be/stops/402842", "https://data.delijn.be/stops/409017"], ["https://data.delijn.be/stops/204643", "https://data.delijn.be/stops/204644"], ["https://data.delijn.be/stops/301274", "https://data.delijn.be/stops/307615"], ["https://data.delijn.be/stops/104043", "https://data.delijn.be/stops/305984"], ["https://data.delijn.be/stops/204629", "https://data.delijn.be/stops/205630"], ["https://data.delijn.be/stops/203638", "https://data.delijn.be/stops/204598"], ["https://data.delijn.be/stops/108136", "https://data.delijn.be/stops/108847"], ["https://data.delijn.be/stops/404326", "https://data.delijn.be/stops/404386"], ["https://data.delijn.be/stops/305540", "https://data.delijn.be/stops/308828"], ["https://data.delijn.be/stops/105548", "https://data.delijn.be/stops/105551"], ["https://data.delijn.be/stops/106348", "https://data.delijn.be/stops/106350"], ["https://data.delijn.be/stops/503053", "https://data.delijn.be/stops/508053"], ["https://data.delijn.be/stops/105247", "https://data.delijn.be/stops/109977"], ["https://data.delijn.be/stops/406165", "https://data.delijn.be/stops/406426"], ["https://data.delijn.be/stops/301923", "https://data.delijn.be/stops/307827"], ["https://data.delijn.be/stops/300655", "https://data.delijn.be/stops/300661"], ["https://data.delijn.be/stops/504032", "https://data.delijn.be/stops/509030"], ["https://data.delijn.be/stops/107247", "https://data.delijn.be/stops/107249"], ["https://data.delijn.be/stops/308471", "https://data.delijn.be/stops/308473"], ["https://data.delijn.be/stops/106353", "https://data.delijn.be/stops/106379"], ["https://data.delijn.be/stops/303680", "https://data.delijn.be/stops/307928"], ["https://data.delijn.be/stops/200636", "https://data.delijn.be/stops/201633"], ["https://data.delijn.be/stops/307681", "https://data.delijn.be/stops/307684"], ["https://data.delijn.be/stops/208607", "https://data.delijn.be/stops/209606"], ["https://data.delijn.be/stops/505232", "https://data.delijn.be/stops/507228"], ["https://data.delijn.be/stops/400766", "https://data.delijn.be/stops/409662"], ["https://data.delijn.be/stops/300542", "https://data.delijn.be/stops/307859"], ["https://data.delijn.be/stops/201123", "https://data.delijn.be/stops/509781"], ["https://data.delijn.be/stops/101823", "https://data.delijn.be/stops/103138"], ["https://data.delijn.be/stops/301705", "https://data.delijn.be/stops/308894"], ["https://data.delijn.be/stops/502184", "https://data.delijn.be/stops/505692"], ["https://data.delijn.be/stops/108817", "https://data.delijn.be/stops/108821"], ["https://data.delijn.be/stops/307789", "https://data.delijn.be/stops/308140"], ["https://data.delijn.be/stops/405771", "https://data.delijn.be/stops/405882"], ["https://data.delijn.be/stops/502233", "https://data.delijn.be/stops/505232"], ["https://data.delijn.be/stops/107612", "https://data.delijn.be/stops/107729"], ["https://data.delijn.be/stops/102501", "https://data.delijn.be/stops/400025"], ["https://data.delijn.be/stops/504548", "https://data.delijn.be/stops/509551"], ["https://data.delijn.be/stops/503840", "https://data.delijn.be/stops/508856"], ["https://data.delijn.be/stops/204652", "https://data.delijn.be/stops/205668"], ["https://data.delijn.be/stops/206414", "https://data.delijn.be/stops/207414"], ["https://data.delijn.be/stops/208419", "https://data.delijn.be/stops/209420"], ["https://data.delijn.be/stops/102248", "https://data.delijn.be/stops/105934"], ["https://data.delijn.be/stops/503523", "https://data.delijn.be/stops/509001"], ["https://data.delijn.be/stops/307622", "https://data.delijn.be/stops/308559"], ["https://data.delijn.be/stops/108469", "https://data.delijn.be/stops/305990"], ["https://data.delijn.be/stops/506466", "https://data.delijn.be/stops/506471"], ["https://data.delijn.be/stops/207060", "https://data.delijn.be/stops/207500"], ["https://data.delijn.be/stops/305283", "https://data.delijn.be/stops/305291"], ["https://data.delijn.be/stops/504173", "https://data.delijn.be/stops/509747"], ["https://data.delijn.be/stops/109147", "https://data.delijn.be/stops/109152"], ["https://data.delijn.be/stops/300731", "https://data.delijn.be/stops/300737"], ["https://data.delijn.be/stops/504520", "https://data.delijn.be/stops/509520"], ["https://data.delijn.be/stops/102183", "https://data.delijn.be/stops/107133"], ["https://data.delijn.be/stops/101211", "https://data.delijn.be/stops/107798"], ["https://data.delijn.be/stops/404469", "https://data.delijn.be/stops/404532"], ["https://data.delijn.be/stops/400496", "https://data.delijn.be/stops/408824"], ["https://data.delijn.be/stops/204563", "https://data.delijn.be/stops/205563"], ["https://data.delijn.be/stops/404016", "https://data.delijn.be/stops/404433"], ["https://data.delijn.be/stops/202220", "https://data.delijn.be/stops/205077"], ["https://data.delijn.be/stops/409215", "https://data.delijn.be/stops/409221"], ["https://data.delijn.be/stops/505601", "https://data.delijn.be/stops/505603"], ["https://data.delijn.be/stops/206570", "https://data.delijn.be/stops/207575"], ["https://data.delijn.be/stops/404322", "https://data.delijn.be/stops/404649"], ["https://data.delijn.be/stops/201083", "https://data.delijn.be/stops/203928"], ["https://data.delijn.be/stops/507014", "https://data.delijn.be/stops/507168"], ["https://data.delijn.be/stops/302741", "https://data.delijn.be/stops/302760"], ["https://data.delijn.be/stops/109001", "https://data.delijn.be/stops/408147"], ["https://data.delijn.be/stops/509617", "https://data.delijn.be/stops/509630"], ["https://data.delijn.be/stops/102195", "https://data.delijn.be/stops/102686"], ["https://data.delijn.be/stops/302937", "https://data.delijn.be/stops/303071"], ["https://data.delijn.be/stops/505197", "https://data.delijn.be/stops/505200"], ["https://data.delijn.be/stops/402136", "https://data.delijn.be/stops/402139"], ["https://data.delijn.be/stops/304805", "https://data.delijn.be/stops/304806"], ["https://data.delijn.be/stops/200753", "https://data.delijn.be/stops/200754"], ["https://data.delijn.be/stops/106283", "https://data.delijn.be/stops/106286"], ["https://data.delijn.be/stops/103221", "https://data.delijn.be/stops/104857"], ["https://data.delijn.be/stops/304513", "https://data.delijn.be/stops/307560"], ["https://data.delijn.be/stops/200105", "https://data.delijn.be/stops/200549"], ["https://data.delijn.be/stops/101224", "https://data.delijn.be/stops/108516"], ["https://data.delijn.be/stops/204635", "https://data.delijn.be/stops/204693"], ["https://data.delijn.be/stops/102699", "https://data.delijn.be/stops/105154"], ["https://data.delijn.be/stops/209593", "https://data.delijn.be/stops/209967"], ["https://data.delijn.be/stops/503415", "https://data.delijn.be/stops/508562"], ["https://data.delijn.be/stops/206476", "https://data.delijn.be/stops/206507"], ["https://data.delijn.be/stops/106374", "https://data.delijn.be/stops/106381"], ["https://data.delijn.be/stops/500555", "https://data.delijn.be/stops/502207"], ["https://data.delijn.be/stops/503045", "https://data.delijn.be/stops/508039"], ["https://data.delijn.be/stops/502310", "https://data.delijn.be/stops/507310"], ["https://data.delijn.be/stops/104794", "https://data.delijn.be/stops/106970"], ["https://data.delijn.be/stops/205122", "https://data.delijn.be/stops/214004"], ["https://data.delijn.be/stops/508633", "https://data.delijn.be/stops/590008"], ["https://data.delijn.be/stops/502410", "https://data.delijn.be/stops/507681"], ["https://data.delijn.be/stops/202558", "https://data.delijn.be/stops/203608"], ["https://data.delijn.be/stops/103470", "https://data.delijn.be/stops/103471"], ["https://data.delijn.be/stops/401524", "https://data.delijn.be/stops/404064"], ["https://data.delijn.be/stops/302346", "https://data.delijn.be/stops/302366"], ["https://data.delijn.be/stops/103338", "https://data.delijn.be/stops/105310"], ["https://data.delijn.be/stops/204739", "https://data.delijn.be/stops/205739"], ["https://data.delijn.be/stops/503601", "https://data.delijn.be/stops/503616"], ["https://data.delijn.be/stops/503476", "https://data.delijn.be/stops/509867"], ["https://data.delijn.be/stops/307202", "https://data.delijn.be/stops/307219"], ["https://data.delijn.be/stops/505073", "https://data.delijn.be/stops/508768"], ["https://data.delijn.be/stops/402692", "https://data.delijn.be/stops/301485"], ["https://data.delijn.be/stops/304824", "https://data.delijn.be/stops/306406"], ["https://data.delijn.be/stops/303250", "https://data.delijn.be/stops/303294"], ["https://data.delijn.be/stops/301083", "https://data.delijn.be/stops/307877"], ["https://data.delijn.be/stops/300190", "https://data.delijn.be/stops/302168"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/106457"], ["https://data.delijn.be/stops/200939", "https://data.delijn.be/stops/203047"], ["https://data.delijn.be/stops/505067", "https://data.delijn.be/stops/505068"], ["https://data.delijn.be/stops/106264", "https://data.delijn.be/stops/106341"], ["https://data.delijn.be/stops/105698", "https://data.delijn.be/stops/106069"], ["https://data.delijn.be/stops/107509", "https://data.delijn.be/stops/107512"], ["https://data.delijn.be/stops/104948", "https://data.delijn.be/stops/109790"], ["https://data.delijn.be/stops/405570", "https://data.delijn.be/stops/405579"], ["https://data.delijn.be/stops/402799", "https://data.delijn.be/stops/405585"], ["https://data.delijn.be/stops/404843", "https://data.delijn.be/stops/409249"], ["https://data.delijn.be/stops/400043", "https://data.delijn.be/stops/400044"], ["https://data.delijn.be/stops/107278", "https://data.delijn.be/stops/107394"], ["https://data.delijn.be/stops/505258", "https://data.delijn.be/stops/505261"], ["https://data.delijn.be/stops/504361", "https://data.delijn.be/stops/509366"], ["https://data.delijn.be/stops/102893", "https://data.delijn.be/stops/105705"], ["https://data.delijn.be/stops/504449", "https://data.delijn.be/stops/509449"], ["https://data.delijn.be/stops/404637", "https://data.delijn.be/stops/406962"], ["https://data.delijn.be/stops/204409", "https://data.delijn.be/stops/205409"], ["https://data.delijn.be/stops/300482", "https://data.delijn.be/stops/306162"], ["https://data.delijn.be/stops/405782", "https://data.delijn.be/stops/409752"], ["https://data.delijn.be/stops/204781", "https://data.delijn.be/stops/204785"], ["https://data.delijn.be/stops/304135", "https://data.delijn.be/stops/307758"], ["https://data.delijn.be/stops/108684", "https://data.delijn.be/stops/108894"], ["https://data.delijn.be/stops/304858", "https://data.delijn.be/stops/304859"], ["https://data.delijn.be/stops/400453", "https://data.delijn.be/stops/400487"], ["https://data.delijn.be/stops/407751", "https://data.delijn.be/stops/407754"], ["https://data.delijn.be/stops/406523", "https://data.delijn.be/stops/407363"], ["https://data.delijn.be/stops/105647", "https://data.delijn.be/stops/105648"], ["https://data.delijn.be/stops/504891", "https://data.delijn.be/stops/508277"], ["https://data.delijn.be/stops/504676", "https://data.delijn.be/stops/505434"], ["https://data.delijn.be/stops/204833", "https://data.delijn.be/stops/205074"], ["https://data.delijn.be/stops/109697", "https://data.delijn.be/stops/109711"], ["https://data.delijn.be/stops/305172", "https://data.delijn.be/stops/305206"], ["https://data.delijn.be/stops/405321", "https://data.delijn.be/stops/305062"], ["https://data.delijn.be/stops/101046", "https://data.delijn.be/stops/105985"], ["https://data.delijn.be/stops/101110", "https://data.delijn.be/stops/103165"], ["https://data.delijn.be/stops/202344", "https://data.delijn.be/stops/205975"], ["https://data.delijn.be/stops/201847", "https://data.delijn.be/stops/201848"], ["https://data.delijn.be/stops/108863", "https://data.delijn.be/stops/109743"], ["https://data.delijn.be/stops/404228", "https://data.delijn.be/stops/404229"], ["https://data.delijn.be/stops/404933", "https://data.delijn.be/stops/405648"], ["https://data.delijn.be/stops/402455", "https://data.delijn.be/stops/410042"], ["https://data.delijn.be/stops/206423", "https://data.delijn.be/stops/207805"], ["https://data.delijn.be/stops/304527", "https://data.delijn.be/stops/306152"], ["https://data.delijn.be/stops/503549", "https://data.delijn.be/stops/508541"], ["https://data.delijn.be/stops/301703", "https://data.delijn.be/stops/305235"], ["https://data.delijn.be/stops/503789", "https://data.delijn.be/stops/505843"], ["https://data.delijn.be/stops/214010", "https://data.delijn.be/stops/214011"], ["https://data.delijn.be/stops/109171", "https://data.delijn.be/stops/109174"], ["https://data.delijn.be/stops/504597", "https://data.delijn.be/stops/509594"], ["https://data.delijn.be/stops/108833", "https://data.delijn.be/stops/108836"], ["https://data.delijn.be/stops/302904", "https://data.delijn.be/stops/303235"], ["https://data.delijn.be/stops/203894", "https://data.delijn.be/stops/209247"], ["https://data.delijn.be/stops/403377", "https://data.delijn.be/stops/410282"], ["https://data.delijn.be/stops/200861", "https://data.delijn.be/stops/210017"], ["https://data.delijn.be/stops/105765", "https://data.delijn.be/stops/108575"], ["https://data.delijn.be/stops/109207", "https://data.delijn.be/stops/109225"], ["https://data.delijn.be/stops/302076", "https://data.delijn.be/stops/302077"], ["https://data.delijn.be/stops/103058", "https://data.delijn.be/stops/103573"], ["https://data.delijn.be/stops/405564", "https://data.delijn.be/stops/405579"], ["https://data.delijn.be/stops/208761", "https://data.delijn.be/stops/208762"], ["https://data.delijn.be/stops/305259", "https://data.delijn.be/stops/305260"], ["https://data.delijn.be/stops/200233", "https://data.delijn.be/stops/211051"], ["https://data.delijn.be/stops/408774", "https://data.delijn.be/stops/410192"], ["https://data.delijn.be/stops/101392", "https://data.delijn.be/stops/106516"], ["https://data.delijn.be/stops/509825", "https://data.delijn.be/stops/509931"], ["https://data.delijn.be/stops/503300", "https://data.delijn.be/stops/508300"], ["https://data.delijn.be/stops/503671", "https://data.delijn.be/stops/503673"], ["https://data.delijn.be/stops/302292", "https://data.delijn.be/stops/302293"], ["https://data.delijn.be/stops/404809", "https://data.delijn.be/stops/404836"], ["https://data.delijn.be/stops/308868", "https://data.delijn.be/stops/308871"], ["https://data.delijn.be/stops/505194", "https://data.delijn.be/stops/508149"], ["https://data.delijn.be/stops/204205", "https://data.delijn.be/stops/205200"], ["https://data.delijn.be/stops/501716", "https://data.delijn.be/stops/506017"], ["https://data.delijn.be/stops/505713", "https://data.delijn.be/stops/506002"], ["https://data.delijn.be/stops/402033", "https://data.delijn.be/stops/402034"], ["https://data.delijn.be/stops/106990", "https://data.delijn.be/stops/106991"], ["https://data.delijn.be/stops/504350", "https://data.delijn.be/stops/509592"], ["https://data.delijn.be/stops/501153", "https://data.delijn.be/stops/506143"], ["https://data.delijn.be/stops/505774", "https://data.delijn.be/stops/509931"], ["https://data.delijn.be/stops/107964", "https://data.delijn.be/stops/108034"], ["https://data.delijn.be/stops/107523", "https://data.delijn.be/stops/107524"], ["https://data.delijn.be/stops/206023", "https://data.delijn.be/stops/206024"], ["https://data.delijn.be/stops/206246", "https://data.delijn.be/stops/207403"], ["https://data.delijn.be/stops/401063", "https://data.delijn.be/stops/401949"], ["https://data.delijn.be/stops/201952", "https://data.delijn.be/stops/202468"], ["https://data.delijn.be/stops/107455", "https://data.delijn.be/stops/109755"], ["https://data.delijn.be/stops/307318", "https://data.delijn.be/stops/307321"], ["https://data.delijn.be/stops/503822", "https://data.delijn.be/stops/508822"], ["https://data.delijn.be/stops/300543", "https://data.delijn.be/stops/303966"], ["https://data.delijn.be/stops/208386", "https://data.delijn.be/stops/209419"], ["https://data.delijn.be/stops/400044", "https://data.delijn.be/stops/400320"], ["https://data.delijn.be/stops/208097", "https://data.delijn.be/stops/208100"], ["https://data.delijn.be/stops/107934", "https://data.delijn.be/stops/303879"], ["https://data.delijn.be/stops/103137", "https://data.delijn.be/stops/107117"], ["https://data.delijn.be/stops/103125", "https://data.delijn.be/stops/109774"], ["https://data.delijn.be/stops/508745", "https://data.delijn.be/stops/509783"], ["https://data.delijn.be/stops/307935", "https://data.delijn.be/stops/307937"], ["https://data.delijn.be/stops/108793", "https://data.delijn.be/stops/108796"], ["https://data.delijn.be/stops/200345", "https://data.delijn.be/stops/201289"], ["https://data.delijn.be/stops/206380", "https://data.delijn.be/stops/207356"], ["https://data.delijn.be/stops/200426", "https://data.delijn.be/stops/202009"], ["https://data.delijn.be/stops/204695", "https://data.delijn.be/stops/205064"], ["https://data.delijn.be/stops/105030", "https://data.delijn.be/stops/105770"], ["https://data.delijn.be/stops/408569", "https://data.delijn.be/stops/408788"], ["https://data.delijn.be/stops/209590", "https://data.delijn.be/stops/209591"], ["https://data.delijn.be/stops/501140", "https://data.delijn.be/stops/590331"], ["https://data.delijn.be/stops/201412", "https://data.delijn.be/stops/202360"], ["https://data.delijn.be/stops/204518", "https://data.delijn.be/stops/205044"], ["https://data.delijn.be/stops/400316", "https://data.delijn.be/stops/400317"], ["https://data.delijn.be/stops/406777", "https://data.delijn.be/stops/406784"], ["https://data.delijn.be/stops/102730", "https://data.delijn.be/stops/109798"], ["https://data.delijn.be/stops/405791", "https://data.delijn.be/stops/409414"], ["https://data.delijn.be/stops/305825", "https://data.delijn.be/stops/305826"], ["https://data.delijn.be/stops/208589", "https://data.delijn.be/stops/305223"], ["https://data.delijn.be/stops/406400", "https://data.delijn.be/stops/406402"], ["https://data.delijn.be/stops/201751", "https://data.delijn.be/stops/209495"], ["https://data.delijn.be/stops/401198", "https://data.delijn.be/stops/401203"], ["https://data.delijn.be/stops/101004", "https://data.delijn.be/stops/104353"], ["https://data.delijn.be/stops/500127", "https://data.delijn.be/stops/505319"], ["https://data.delijn.be/stops/503596", "https://data.delijn.be/stops/508596"], ["https://data.delijn.be/stops/207224", "https://data.delijn.be/stops/308570"], ["https://data.delijn.be/stops/306861", "https://data.delijn.be/stops/306865"], ["https://data.delijn.be/stops/501498", "https://data.delijn.be/stops/501568"], ["https://data.delijn.be/stops/202309", "https://data.delijn.be/stops/203310"], ["https://data.delijn.be/stops/200205", "https://data.delijn.be/stops/202136"], ["https://data.delijn.be/stops/300418", "https://data.delijn.be/stops/300429"], ["https://data.delijn.be/stops/406929", "https://data.delijn.be/stops/406947"], ["https://data.delijn.be/stops/500005", "https://data.delijn.be/stops/505835"], ["https://data.delijn.be/stops/405385", "https://data.delijn.be/stops/302842"], ["https://data.delijn.be/stops/103501", "https://data.delijn.be/stops/109897"], ["https://data.delijn.be/stops/102613", "https://data.delijn.be/stops/107054"], ["https://data.delijn.be/stops/406084", "https://data.delijn.be/stops/406085"], ["https://data.delijn.be/stops/405049", "https://data.delijn.be/stops/405810"], ["https://data.delijn.be/stops/504462", "https://data.delijn.be/stops/509463"], ["https://data.delijn.be/stops/303178", "https://data.delijn.be/stops/307074"], ["https://data.delijn.be/stops/509499", "https://data.delijn.be/stops/509509"], ["https://data.delijn.be/stops/507037", "https://data.delijn.be/stops/507618"], ["https://data.delijn.be/stops/504363", "https://data.delijn.be/stops/504665"], ["https://data.delijn.be/stops/405715", "https://data.delijn.be/stops/410140"], ["https://data.delijn.be/stops/400820", "https://data.delijn.be/stops/401908"], ["https://data.delijn.be/stops/501036", "https://data.delijn.be/stops/506036"], ["https://data.delijn.be/stops/206739", "https://data.delijn.be/stops/207994"], ["https://data.delijn.be/stops/502290", "https://data.delijn.be/stops/507286"], ["https://data.delijn.be/stops/400897", "https://data.delijn.be/stops/400898"], ["https://data.delijn.be/stops/404471", "https://data.delijn.be/stops/404566"], ["https://data.delijn.be/stops/400408", "https://data.delijn.be/stops/408487"], ["https://data.delijn.be/stops/202556", "https://data.delijn.be/stops/202559"], ["https://data.delijn.be/stops/404308", "https://data.delijn.be/stops/404320"], ["https://data.delijn.be/stops/200865", "https://data.delijn.be/stops/202447"], ["https://data.delijn.be/stops/103082", "https://data.delijn.be/stops/104673"], ["https://data.delijn.be/stops/305415", "https://data.delijn.be/stops/305463"], ["https://data.delijn.be/stops/401180", "https://data.delijn.be/stops/401188"], ["https://data.delijn.be/stops/301097", "https://data.delijn.be/stops/303240"], ["https://data.delijn.be/stops/304672", "https://data.delijn.be/stops/304673"], ["https://data.delijn.be/stops/101984", "https://data.delijn.be/stops/108229"], ["https://data.delijn.be/stops/407448", "https://data.delijn.be/stops/407570"], ["https://data.delijn.be/stops/303858", "https://data.delijn.be/stops/304080"], ["https://data.delijn.be/stops/308014", "https://data.delijn.be/stops/308016"], ["https://data.delijn.be/stops/505287", "https://data.delijn.be/stops/508835"], ["https://data.delijn.be/stops/407001", "https://data.delijn.be/stops/407002"], ["https://data.delijn.be/stops/502381", "https://data.delijn.be/stops/507381"], ["https://data.delijn.be/stops/300331", "https://data.delijn.be/stops/307041"], ["https://data.delijn.be/stops/108818", "https://data.delijn.be/stops/108821"], ["https://data.delijn.be/stops/502641", "https://data.delijn.be/stops/502803"], ["https://data.delijn.be/stops/300504", "https://data.delijn.be/stops/302363"], ["https://data.delijn.be/stops/506322", "https://data.delijn.be/stops/506474"], ["https://data.delijn.be/stops/502224", "https://data.delijn.be/stops/509796"], ["https://data.delijn.be/stops/206829", "https://data.delijn.be/stops/206936"], ["https://data.delijn.be/stops/403903", "https://data.delijn.be/stops/404033"], ["https://data.delijn.be/stops/308417", "https://data.delijn.be/stops/308418"], ["https://data.delijn.be/stops/102799", "https://data.delijn.be/stops/102807"], ["https://data.delijn.be/stops/201092", "https://data.delijn.be/stops/202896"], ["https://data.delijn.be/stops/104517", "https://data.delijn.be/stops/303881"], ["https://data.delijn.be/stops/402739", "https://data.delijn.be/stops/306391"], ["https://data.delijn.be/stops/103054", "https://data.delijn.be/stops/107181"], ["https://data.delijn.be/stops/209612", "https://data.delijn.be/stops/209615"], ["https://data.delijn.be/stops/503682", "https://data.delijn.be/stops/508682"], ["https://data.delijn.be/stops/204445", "https://data.delijn.be/stops/204679"], ["https://data.delijn.be/stops/103263", "https://data.delijn.be/stops/204629"], ["https://data.delijn.be/stops/508013", "https://data.delijn.be/stops/508995"], ["https://data.delijn.be/stops/304476", "https://data.delijn.be/stops/304505"], ["https://data.delijn.be/stops/401524", "https://data.delijn.be/stops/402544"], ["https://data.delijn.be/stops/200196", "https://data.delijn.be/stops/201428"], ["https://data.delijn.be/stops/401330", "https://data.delijn.be/stops/401340"], ["https://data.delijn.be/stops/106259", "https://data.delijn.be/stops/106261"], ["https://data.delijn.be/stops/109828", "https://data.delijn.be/stops/109829"], ["https://data.delijn.be/stops/409066", "https://data.delijn.be/stops/409072"], ["https://data.delijn.be/stops/506440", "https://data.delijn.be/stops/506441"], ["https://data.delijn.be/stops/200953", "https://data.delijn.be/stops/210114"], ["https://data.delijn.be/stops/101228", "https://data.delijn.be/stops/101551"], ["https://data.delijn.be/stops/400242", "https://data.delijn.be/stops/400946"], ["https://data.delijn.be/stops/303752", "https://data.delijn.be/stops/303753"], ["https://data.delijn.be/stops/207864", "https://data.delijn.be/stops/209457"], ["https://data.delijn.be/stops/105299", "https://data.delijn.be/stops/105303"], ["https://data.delijn.be/stops/107959", "https://data.delijn.be/stops/108124"], ["https://data.delijn.be/stops/107554", "https://data.delijn.be/stops/107556"], ["https://data.delijn.be/stops/408428", "https://data.delijn.be/stops/408640"], ["https://data.delijn.be/stops/304888", "https://data.delijn.be/stops/304891"], ["https://data.delijn.be/stops/304734", "https://data.delijn.be/stops/304754"], ["https://data.delijn.be/stops/505090", "https://data.delijn.be/stops/505172"], ["https://data.delijn.be/stops/300773", "https://data.delijn.be/stops/302400"], ["https://data.delijn.be/stops/302222", "https://data.delijn.be/stops/306277"], ["https://data.delijn.be/stops/505963", "https://data.delijn.be/stops/507957"], ["https://data.delijn.be/stops/502530", "https://data.delijn.be/stops/505438"], ["https://data.delijn.be/stops/105204", "https://data.delijn.be/stops/108059"], ["https://data.delijn.be/stops/504470", "https://data.delijn.be/stops/509103"], ["https://data.delijn.be/stops/209066", "https://data.delijn.be/stops/209194"], ["https://data.delijn.be/stops/304565", "https://data.delijn.be/stops/304596"], ["https://data.delijn.be/stops/102673", "https://data.delijn.be/stops/103494"], ["https://data.delijn.be/stops/300849", "https://data.delijn.be/stops/300850"], ["https://data.delijn.be/stops/201854", "https://data.delijn.be/stops/201880"], ["https://data.delijn.be/stops/404436", "https://data.delijn.be/stops/404473"], ["https://data.delijn.be/stops/407638", "https://data.delijn.be/stops/407639"], ["https://data.delijn.be/stops/205162", "https://data.delijn.be/stops/205167"], ["https://data.delijn.be/stops/202554", "https://data.delijn.be/stops/203554"], ["https://data.delijn.be/stops/304893", "https://data.delijn.be/stops/304903"], ["https://data.delijn.be/stops/407611", "https://data.delijn.be/stops/407629"], ["https://data.delijn.be/stops/406058", "https://data.delijn.be/stops/406292"], ["https://data.delijn.be/stops/402431", "https://data.delijn.be/stops/402433"], ["https://data.delijn.be/stops/508899", "https://data.delijn.be/stops/508906"], ["https://data.delijn.be/stops/505916", "https://data.delijn.be/stops/509163"], ["https://data.delijn.be/stops/304439", "https://data.delijn.be/stops/305543"], ["https://data.delijn.be/stops/204747", "https://data.delijn.be/stops/205746"], ["https://data.delijn.be/stops/209590", "https://data.delijn.be/stops/307529"], ["https://data.delijn.be/stops/500041", "https://data.delijn.be/stops/500049"], ["https://data.delijn.be/stops/403800", "https://data.delijn.be/stops/403805"], ["https://data.delijn.be/stops/400275", "https://data.delijn.be/stops/400385"], ["https://data.delijn.be/stops/301970", "https://data.delijn.be/stops/304533"], ["https://data.delijn.be/stops/405421", "https://data.delijn.be/stops/306775"], ["https://data.delijn.be/stops/208438", "https://data.delijn.be/stops/209438"], ["https://data.delijn.be/stops/200918", "https://data.delijn.be/stops/202395"], ["https://data.delijn.be/stops/204821", "https://data.delijn.be/stops/205819"], ["https://data.delijn.be/stops/206165", "https://data.delijn.be/stops/303792"], ["https://data.delijn.be/stops/102762", "https://data.delijn.be/stops/105130"], ["https://data.delijn.be/stops/103212", "https://data.delijn.be/stops/106305"], ["https://data.delijn.be/stops/305549", "https://data.delijn.be/stops/308548"], ["https://data.delijn.be/stops/104165", "https://data.delijn.be/stops/107690"], ["https://data.delijn.be/stops/503175", "https://data.delijn.be/stops/503796"], ["https://data.delijn.be/stops/104693", "https://data.delijn.be/stops/107356"], ["https://data.delijn.be/stops/102063", "https://data.delijn.be/stops/106927"], ["https://data.delijn.be/stops/502099", "https://data.delijn.be/stops/502168"], ["https://data.delijn.be/stops/208829", "https://data.delijn.be/stops/211084"], ["https://data.delijn.be/stops/101644", "https://data.delijn.be/stops/105836"], ["https://data.delijn.be/stops/400096", "https://data.delijn.be/stops/400097"], ["https://data.delijn.be/stops/206703", "https://data.delijn.be/stops/217020"], ["https://data.delijn.be/stops/208665", "https://data.delijn.be/stops/219021"], ["https://data.delijn.be/stops/504154", "https://data.delijn.be/stops/509166"], ["https://data.delijn.be/stops/408749", "https://data.delijn.be/stops/408807"], ["https://data.delijn.be/stops/106189", "https://data.delijn.be/stops/107441"], ["https://data.delijn.be/stops/406519", "https://data.delijn.be/stops/408798"], ["https://data.delijn.be/stops/407522", "https://data.delijn.be/stops/407547"], ["https://data.delijn.be/stops/506442", "https://data.delijn.be/stops/590411"], ["https://data.delijn.be/stops/102560", "https://data.delijn.be/stops/104690"], ["https://data.delijn.be/stops/504377", "https://data.delijn.be/stops/504385"], ["https://data.delijn.be/stops/300749", "https://data.delijn.be/stops/300750"], ["https://data.delijn.be/stops/207977", "https://data.delijn.be/stops/217010"], ["https://data.delijn.be/stops/206548", "https://data.delijn.be/stops/209756"], ["https://data.delijn.be/stops/107356", "https://data.delijn.be/stops/107357"], ["https://data.delijn.be/stops/301431", "https://data.delijn.be/stops/301433"], ["https://data.delijn.be/stops/301073", "https://data.delijn.be/stops/306400"], ["https://data.delijn.be/stops/301481", "https://data.delijn.be/stops/308704"], ["https://data.delijn.be/stops/407846", "https://data.delijn.be/stops/407847"], ["https://data.delijn.be/stops/205305", "https://data.delijn.be/stops/205306"], ["https://data.delijn.be/stops/204970", "https://data.delijn.be/stops/204971"], ["https://data.delijn.be/stops/204709", "https://data.delijn.be/stops/205708"], ["https://data.delijn.be/stops/207101", "https://data.delijn.be/stops/207844"], ["https://data.delijn.be/stops/501138", "https://data.delijn.be/stops/501485"], ["https://data.delijn.be/stops/503362", "https://data.delijn.be/stops/503388"], ["https://data.delijn.be/stops/101905", "https://data.delijn.be/stops/103636"], ["https://data.delijn.be/stops/203783", "https://data.delijn.be/stops/211103"], ["https://data.delijn.be/stops/401380", "https://data.delijn.be/stops/410174"], ["https://data.delijn.be/stops/501507", "https://data.delijn.be/stops/506507"], ["https://data.delijn.be/stops/200420", "https://data.delijn.be/stops/203654"], ["https://data.delijn.be/stops/104256", "https://data.delijn.be/stops/107120"], ["https://data.delijn.be/stops/405820", "https://data.delijn.be/stops/405822"], ["https://data.delijn.be/stops/105999", "https://data.delijn.be/stops/106002"], ["https://data.delijn.be/stops/502671", "https://data.delijn.be/stops/507380"], ["https://data.delijn.be/stops/209736", "https://data.delijn.be/stops/211048"], ["https://data.delijn.be/stops/504634", "https://data.delijn.be/stops/509377"], ["https://data.delijn.be/stops/507490", "https://data.delijn.be/stops/507513"], ["https://data.delijn.be/stops/500046", "https://data.delijn.be/stops/500047"], ["https://data.delijn.be/stops/107538", "https://data.delijn.be/stops/107887"], ["https://data.delijn.be/stops/202823", "https://data.delijn.be/stops/203823"], ["https://data.delijn.be/stops/206793", "https://data.delijn.be/stops/208034"], ["https://data.delijn.be/stops/303423", "https://data.delijn.be/stops/303426"], ["https://data.delijn.be/stops/504403", "https://data.delijn.be/stops/509415"], ["https://data.delijn.be/stops/204588", "https://data.delijn.be/stops/205165"], ["https://data.delijn.be/stops/409144", "https://data.delijn.be/stops/409155"], ["https://data.delijn.be/stops/503083", "https://data.delijn.be/stops/508507"], ["https://data.delijn.be/stops/502052", "https://data.delijn.be/stops/507059"], ["https://data.delijn.be/stops/508172", "https://data.delijn.be/stops/508178"], ["https://data.delijn.be/stops/208183", "https://data.delijn.be/stops/208759"], ["https://data.delijn.be/stops/304523", "https://data.delijn.be/stops/305606"], ["https://data.delijn.be/stops/402070", "https://data.delijn.be/stops/402081"], ["https://data.delijn.be/stops/305396", "https://data.delijn.be/stops/305406"], ["https://data.delijn.be/stops/206903", "https://data.delijn.be/stops/207903"], ["https://data.delijn.be/stops/400807", "https://data.delijn.be/stops/409664"], ["https://data.delijn.be/stops/101182", "https://data.delijn.be/stops/107943"], ["https://data.delijn.be/stops/302135", "https://data.delijn.be/stops/305238"], ["https://data.delijn.be/stops/405337", "https://data.delijn.be/stops/405430"], ["https://data.delijn.be/stops/203212", "https://data.delijn.be/stops/210118"], ["https://data.delijn.be/stops/400038", "https://data.delijn.be/stops/405497"], ["https://data.delijn.be/stops/300894", "https://data.delijn.be/stops/305448"], ["https://data.delijn.be/stops/101007", "https://data.delijn.be/stops/109773"], ["https://data.delijn.be/stops/206075", "https://data.delijn.be/stops/206903"], ["https://data.delijn.be/stops/502648", "https://data.delijn.be/stops/507036"], ["https://data.delijn.be/stops/205100", "https://data.delijn.be/stops/205714"], ["https://data.delijn.be/stops/407980", "https://data.delijn.be/stops/407992"], ["https://data.delijn.be/stops/208217", "https://data.delijn.be/stops/209786"], ["https://data.delijn.be/stops/307834", "https://data.delijn.be/stops/308275"], ["https://data.delijn.be/stops/306823", "https://data.delijn.be/stops/306824"], ["https://data.delijn.be/stops/301457", "https://data.delijn.be/stops/301484"], ["https://data.delijn.be/stops/207761", "https://data.delijn.be/stops/208406"], ["https://data.delijn.be/stops/407852", "https://data.delijn.be/stops/408005"], ["https://data.delijn.be/stops/209008", "https://data.delijn.be/stops/209009"], ["https://data.delijn.be/stops/405701", "https://data.delijn.be/stops/405720"], ["https://data.delijn.be/stops/303820", "https://data.delijn.be/stops/303869"], ["https://data.delijn.be/stops/200310", "https://data.delijn.be/stops/201310"], ["https://data.delijn.be/stops/300011", "https://data.delijn.be/stops/300795"], ["https://data.delijn.be/stops/505082", "https://data.delijn.be/stops/509878"], ["https://data.delijn.be/stops/308488", "https://data.delijn.be/stops/308492"], ["https://data.delijn.be/stops/206683", "https://data.delijn.be/stops/206975"], ["https://data.delijn.be/stops/501398", "https://data.delijn.be/stops/506397"], ["https://data.delijn.be/stops/109336", "https://data.delijn.be/stops/109337"], ["https://data.delijn.be/stops/505310", "https://data.delijn.be/stops/507347"], ["https://data.delijn.be/stops/503504", "https://data.delijn.be/stops/508504"], ["https://data.delijn.be/stops/402740", "https://data.delijn.be/stops/404586"], ["https://data.delijn.be/stops/306379", "https://data.delijn.be/stops/306380"], ["https://data.delijn.be/stops/105697", "https://data.delijn.be/stops/105698"], ["https://data.delijn.be/stops/408020", "https://data.delijn.be/stops/408032"], ["https://data.delijn.be/stops/209202", "https://data.delijn.be/stops/209768"], ["https://data.delijn.be/stops/302862", "https://data.delijn.be/stops/303110"], ["https://data.delijn.be/stops/505565", "https://data.delijn.be/stops/505659"], ["https://data.delijn.be/stops/109046", "https://data.delijn.be/stops/109321"], ["https://data.delijn.be/stops/304155", "https://data.delijn.be/stops/306207"], ["https://data.delijn.be/stops/109900", "https://data.delijn.be/stops/109901"], ["https://data.delijn.be/stops/105424", "https://data.delijn.be/stops/109844"], ["https://data.delijn.be/stops/300585", "https://data.delijn.be/stops/300588"], ["https://data.delijn.be/stops/503581", "https://data.delijn.be/stops/504774"], ["https://data.delijn.be/stops/503830", "https://data.delijn.be/stops/503833"], ["https://data.delijn.be/stops/505127", "https://data.delijn.be/stops/508666"], ["https://data.delijn.be/stops/502617", "https://data.delijn.be/stops/507059"], ["https://data.delijn.be/stops/302704", "https://data.delijn.be/stops/302714"], ["https://data.delijn.be/stops/403329", "https://data.delijn.be/stops/403338"], ["https://data.delijn.be/stops/108143", "https://data.delijn.be/stops/108147"], ["https://data.delijn.be/stops/200730", "https://data.delijn.be/stops/203615"], ["https://data.delijn.be/stops/201482", "https://data.delijn.be/stops/204357"], ["https://data.delijn.be/stops/408234", "https://data.delijn.be/stops/308204"], ["https://data.delijn.be/stops/303437", "https://data.delijn.be/stops/303521"], ["https://data.delijn.be/stops/502641", "https://data.delijn.be/stops/507485"], ["https://data.delijn.be/stops/107491", "https://data.delijn.be/stops/305797"], ["https://data.delijn.be/stops/505336", "https://data.delijn.be/stops/507523"], ["https://data.delijn.be/stops/102976", "https://data.delijn.be/stops/106769"], ["https://data.delijn.be/stops/101081", "https://data.delijn.be/stops/101083"], ["https://data.delijn.be/stops/304626", "https://data.delijn.be/stops/304647"], ["https://data.delijn.be/stops/302135", "https://data.delijn.be/stops/306268"], ["https://data.delijn.be/stops/303958", "https://data.delijn.be/stops/303974"], ["https://data.delijn.be/stops/205431", "https://data.delijn.be/stops/205433"], ["https://data.delijn.be/stops/508171", "https://data.delijn.be/stops/508265"], ["https://data.delijn.be/stops/102636", "https://data.delijn.be/stops/104917"], ["https://data.delijn.be/stops/201189", "https://data.delijn.be/stops/201651"], ["https://data.delijn.be/stops/101655", "https://data.delijn.be/stops/103238"], ["https://data.delijn.be/stops/408163", "https://data.delijn.be/stops/408165"], ["https://data.delijn.be/stops/407519", "https://data.delijn.be/stops/408266"], ["https://data.delijn.be/stops/301577", "https://data.delijn.be/stops/301579"], ["https://data.delijn.be/stops/402718", "https://data.delijn.be/stops/405941"], ["https://data.delijn.be/stops/104402", "https://data.delijn.be/stops/204622"], ["https://data.delijn.be/stops/104377", "https://data.delijn.be/stops/204258"], ["https://data.delijn.be/stops/202818", "https://data.delijn.be/stops/203818"], ["https://data.delijn.be/stops/305400", "https://data.delijn.be/stops/305925"], ["https://data.delijn.be/stops/105318", "https://data.delijn.be/stops/105321"], ["https://data.delijn.be/stops/308228", "https://data.delijn.be/stops/308232"], ["https://data.delijn.be/stops/302037", "https://data.delijn.be/stops/303066"], ["https://data.delijn.be/stops/301836", "https://data.delijn.be/stops/308602"], ["https://data.delijn.be/stops/402494", "https://data.delijn.be/stops/402496"], ["https://data.delijn.be/stops/104022", "https://data.delijn.be/stops/106980"], ["https://data.delijn.be/stops/502652", "https://data.delijn.be/stops/507393"], ["https://data.delijn.be/stops/202387", "https://data.delijn.be/stops/203078"], ["https://data.delijn.be/stops/501073", "https://data.delijn.be/stops/501376"], ["https://data.delijn.be/stops/305174", "https://data.delijn.be/stops/307972"], ["https://data.delijn.be/stops/106859", "https://data.delijn.be/stops/109543"], ["https://data.delijn.be/stops/503168", "https://data.delijn.be/stops/508162"], ["https://data.delijn.be/stops/102648", "https://data.delijn.be/stops/308810"], ["https://data.delijn.be/stops/200755", "https://data.delijn.be/stops/200761"], ["https://data.delijn.be/stops/208543", "https://data.delijn.be/stops/208545"], ["https://data.delijn.be/stops/502079", "https://data.delijn.be/stops/502082"], ["https://data.delijn.be/stops/201454", "https://data.delijn.be/stops/201899"], ["https://data.delijn.be/stops/101538", "https://data.delijn.be/stops/108269"], ["https://data.delijn.be/stops/109218", "https://data.delijn.be/stops/109220"], ["https://data.delijn.be/stops/208226", "https://data.delijn.be/stops/209225"], ["https://data.delijn.be/stops/102312", "https://data.delijn.be/stops/109902"], ["https://data.delijn.be/stops/505253", "https://data.delijn.be/stops/508919"], ["https://data.delijn.be/stops/404935", "https://data.delijn.be/stops/405648"], ["https://data.delijn.be/stops/201940", "https://data.delijn.be/stops/202909"], ["https://data.delijn.be/stops/505062", "https://data.delijn.be/stops/505063"], ["https://data.delijn.be/stops/103765", "https://data.delijn.be/stops/105755"], ["https://data.delijn.be/stops/105011", "https://data.delijn.be/stops/105080"], ["https://data.delijn.be/stops/502063", "https://data.delijn.be/stops/502680"], ["https://data.delijn.be/stops/503847", "https://data.delijn.be/stops/507953"], ["https://data.delijn.be/stops/504481", "https://data.delijn.be/stops/509481"], ["https://data.delijn.be/stops/200132", "https://data.delijn.be/stops/201133"], ["https://data.delijn.be/stops/107952", "https://data.delijn.be/stops/108985"], ["https://data.delijn.be/stops/201857", "https://data.delijn.be/stops/202666"], ["https://data.delijn.be/stops/404430", "https://data.delijn.be/stops/406743"], ["https://data.delijn.be/stops/503502", "https://data.delijn.be/stops/508492"], ["https://data.delijn.be/stops/200466", "https://data.delijn.be/stops/209955"], ["https://data.delijn.be/stops/507766", "https://data.delijn.be/stops/507767"], ["https://data.delijn.be/stops/503869", "https://data.delijn.be/stops/508877"], ["https://data.delijn.be/stops/502218", "https://data.delijn.be/stops/506097"], ["https://data.delijn.be/stops/104776", "https://data.delijn.be/stops/108159"], ["https://data.delijn.be/stops/403387", "https://data.delijn.be/stops/403464"], ["https://data.delijn.be/stops/502335", "https://data.delijn.be/stops/507318"], ["https://data.delijn.be/stops/503006", "https://data.delijn.be/stops/508001"], ["https://data.delijn.be/stops/206498", "https://data.delijn.be/stops/207498"], ["https://data.delijn.be/stops/200646", "https://data.delijn.be/stops/201647"], ["https://data.delijn.be/stops/400230", "https://data.delijn.be/stops/400237"], ["https://data.delijn.be/stops/102851", "https://data.delijn.be/stops/103128"], ["https://data.delijn.be/stops/403462", "https://data.delijn.be/stops/410012"], ["https://data.delijn.be/stops/405057", "https://data.delijn.be/stops/405063"], ["https://data.delijn.be/stops/206366", "https://data.delijn.be/stops/207712"], ["https://data.delijn.be/stops/400931", "https://data.delijn.be/stops/400942"], ["https://data.delijn.be/stops/201854", "https://data.delijn.be/stops/202028"], ["https://data.delijn.be/stops/503916", "https://data.delijn.be/stops/505265"], ["https://data.delijn.be/stops/108651", "https://data.delijn.be/stops/303980"], ["https://data.delijn.be/stops/206411", "https://data.delijn.be/stops/207411"], ["https://data.delijn.be/stops/504693", "https://data.delijn.be/stops/509071"], ["https://data.delijn.be/stops/503745", "https://data.delijn.be/stops/508743"], ["https://data.delijn.be/stops/109504", "https://data.delijn.be/stops/109505"], ["https://data.delijn.be/stops/302395", "https://data.delijn.be/stops/302397"], ["https://data.delijn.be/stops/300904", "https://data.delijn.be/stops/300906"], ["https://data.delijn.be/stops/502730", "https://data.delijn.be/stops/507728"], ["https://data.delijn.be/stops/503713", "https://data.delijn.be/stops/509871"], ["https://data.delijn.be/stops/201771", "https://data.delijn.be/stops/208283"], ["https://data.delijn.be/stops/204139", "https://data.delijn.be/stops/205139"], ["https://data.delijn.be/stops/304834", "https://data.delijn.be/stops/307831"], ["https://data.delijn.be/stops/302361", "https://data.delijn.be/stops/302365"], ["https://data.delijn.be/stops/400474", "https://data.delijn.be/stops/404681"], ["https://data.delijn.be/stops/107169", "https://data.delijn.be/stops/107731"], ["https://data.delijn.be/stops/407721", "https://data.delijn.be/stops/407762"], ["https://data.delijn.be/stops/300763", "https://data.delijn.be/stops/306117"], ["https://data.delijn.be/stops/101970", "https://data.delijn.be/stops/105665"], ["https://data.delijn.be/stops/101837", "https://data.delijn.be/stops/108202"], ["https://data.delijn.be/stops/404940", "https://data.delijn.be/stops/404941"], ["https://data.delijn.be/stops/106060", "https://data.delijn.be/stops/108060"], ["https://data.delijn.be/stops/503619", "https://data.delijn.be/stops/503626"], ["https://data.delijn.be/stops/500027", "https://data.delijn.be/stops/505437"], ["https://data.delijn.be/stops/403405", "https://data.delijn.be/stops/410029"], ["https://data.delijn.be/stops/201239", "https://data.delijn.be/stops/201935"], ["https://data.delijn.be/stops/505718", "https://data.delijn.be/stops/505719"], ["https://data.delijn.be/stops/208165", "https://data.delijn.be/stops/209165"], ["https://data.delijn.be/stops/208547", "https://data.delijn.be/stops/208565"], ["https://data.delijn.be/stops/104398", "https://data.delijn.be/stops/105083"], ["https://data.delijn.be/stops/407609", "https://data.delijn.be/stops/409786"], ["https://data.delijn.be/stops/200919", "https://data.delijn.be/stops/210114"], ["https://data.delijn.be/stops/505519", "https://data.delijn.be/stops/505746"], ["https://data.delijn.be/stops/409672", "https://data.delijn.be/stops/409688"], ["https://data.delijn.be/stops/204467", "https://data.delijn.be/stops/204781"], ["https://data.delijn.be/stops/305944", "https://data.delijn.be/stops/308415"], ["https://data.delijn.be/stops/504830", "https://data.delijn.be/stops/505637"], ["https://data.delijn.be/stops/207475", "https://data.delijn.be/stops/207476"], ["https://data.delijn.be/stops/501123", "https://data.delijn.be/stops/506123"], ["https://data.delijn.be/stops/302201", "https://data.delijn.be/stops/308096"], ["https://data.delijn.be/stops/103470", "https://data.delijn.be/stops/106616"], ["https://data.delijn.be/stops/200030", "https://data.delijn.be/stops/201074"], ["https://data.delijn.be/stops/201884", "https://data.delijn.be/stops/203061"], ["https://data.delijn.be/stops/201214", "https://data.delijn.be/stops/201262"], ["https://data.delijn.be/stops/106752", "https://data.delijn.be/stops/109528"], ["https://data.delijn.be/stops/508400", "https://data.delijn.be/stops/508404"], ["https://data.delijn.be/stops/507429", "https://data.delijn.be/stops/507432"], ["https://data.delijn.be/stops/502645", "https://data.delijn.be/stops/507696"], ["https://data.delijn.be/stops/200717", "https://data.delijn.be/stops/202127"], ["https://data.delijn.be/stops/501240", "https://data.delijn.be/stops/506240"], ["https://data.delijn.be/stops/104598", "https://data.delijn.be/stops/106812"], ["https://data.delijn.be/stops/502196", "https://data.delijn.be/stops/502203"], ["https://data.delijn.be/stops/403322", "https://data.delijn.be/stops/410349"], ["https://data.delijn.be/stops/105862", "https://data.delijn.be/stops/105863"], ["https://data.delijn.be/stops/503204", "https://data.delijn.be/stops/505132"], ["https://data.delijn.be/stops/101958", "https://data.delijn.be/stops/108342"], ["https://data.delijn.be/stops/107316", "https://data.delijn.be/stops/108818"], ["https://data.delijn.be/stops/403260", "https://data.delijn.be/stops/403261"], ["https://data.delijn.be/stops/206620", "https://data.delijn.be/stops/206756"], ["https://data.delijn.be/stops/302688", "https://data.delijn.be/stops/302695"], ["https://data.delijn.be/stops/204999", "https://data.delijn.be/stops/207807"], ["https://data.delijn.be/stops/404476", "https://data.delijn.be/stops/404564"], ["https://data.delijn.be/stops/408501", "https://data.delijn.be/stops/408539"], ["https://data.delijn.be/stops/105418", "https://data.delijn.be/stops/109844"], ["https://data.delijn.be/stops/408960", "https://data.delijn.be/stops/408961"], ["https://data.delijn.be/stops/301794", "https://data.delijn.be/stops/301818"], ["https://data.delijn.be/stops/202835", "https://data.delijn.be/stops/202942"], ["https://data.delijn.be/stops/403730", "https://data.delijn.be/stops/403767"], ["https://data.delijn.be/stops/206663", "https://data.delijn.be/stops/206739"], ["https://data.delijn.be/stops/105324", "https://data.delijn.be/stops/105328"], ["https://data.delijn.be/stops/400344", "https://data.delijn.be/stops/400441"], ["https://data.delijn.be/stops/203396", "https://data.delijn.be/stops/210038"], ["https://data.delijn.be/stops/307760", "https://data.delijn.be/stops/307763"], ["https://data.delijn.be/stops/400556", "https://data.delijn.be/stops/404180"], ["https://data.delijn.be/stops/208359", "https://data.delijn.be/stops/208719"], ["https://data.delijn.be/stops/103363", "https://data.delijn.be/stops/103371"], ["https://data.delijn.be/stops/105258", "https://data.delijn.be/stops/109974"], ["https://data.delijn.be/stops/208077", "https://data.delijn.be/stops/208125"], ["https://data.delijn.be/stops/208074", "https://data.delijn.be/stops/209074"], ["https://data.delijn.be/stops/203103", "https://data.delijn.be/stops/203104"], ["https://data.delijn.be/stops/403022", "https://data.delijn.be/stops/403023"], ["https://data.delijn.be/stops/106807", "https://data.delijn.be/stops/106808"], ["https://data.delijn.be/stops/507202", "https://data.delijn.be/stops/508805"], ["https://data.delijn.be/stops/502048", "https://data.delijn.be/stops/507048"], ["https://data.delijn.be/stops/504350", "https://data.delijn.be/stops/509350"], ["https://data.delijn.be/stops/404249", "https://data.delijn.be/stops/404321"], ["https://data.delijn.be/stops/101787", "https://data.delijn.be/stops/109153"], ["https://data.delijn.be/stops/201577", "https://data.delijn.be/stops/203193"], ["https://data.delijn.be/stops/405233", "https://data.delijn.be/stops/405290"], ["https://data.delijn.be/stops/502011", "https://data.delijn.be/stops/505026"], ["https://data.delijn.be/stops/502010", "https://data.delijn.be/stops/505771"], ["https://data.delijn.be/stops/102076", "https://data.delijn.be/stops/102078"], ["https://data.delijn.be/stops/208717", "https://data.delijn.be/stops/209717"], ["https://data.delijn.be/stops/403829", "https://data.delijn.be/stops/403850"], ["https://data.delijn.be/stops/501669", "https://data.delijn.be/stops/506427"], ["https://data.delijn.be/stops/503705", "https://data.delijn.be/stops/508731"], ["https://data.delijn.be/stops/104077", "https://data.delijn.be/stops/106074"], ["https://data.delijn.be/stops/501673", "https://data.delijn.be/stops/506733"], ["https://data.delijn.be/stops/202964", "https://data.delijn.be/stops/205243"], ["https://data.delijn.be/stops/304544", "https://data.delijn.be/stops/304606"], ["https://data.delijn.be/stops/301030", "https://data.delijn.be/stops/301032"], ["https://data.delijn.be/stops/201255", "https://data.delijn.be/stops/203614"], ["https://data.delijn.be/stops/505140", "https://data.delijn.be/stops/505296"], ["https://data.delijn.be/stops/405948", "https://data.delijn.be/stops/405953"], ["https://data.delijn.be/stops/503155", "https://data.delijn.be/stops/503442"], ["https://data.delijn.be/stops/104112", "https://data.delijn.be/stops/104124"], ["https://data.delijn.be/stops/408360", "https://data.delijn.be/stops/308241"], ["https://data.delijn.be/stops/500949", "https://data.delijn.be/stops/509176"], ["https://data.delijn.be/stops/300842", "https://data.delijn.be/stops/304471"], ["https://data.delijn.be/stops/502522", "https://data.delijn.be/stops/507521"], ["https://data.delijn.be/stops/107142", "https://data.delijn.be/stops/107144"], ["https://data.delijn.be/stops/404894", "https://data.delijn.be/stops/404966"], ["https://data.delijn.be/stops/507174", "https://data.delijn.be/stops/507176"], ["https://data.delijn.be/stops/508086", "https://data.delijn.be/stops/508923"], ["https://data.delijn.be/stops/501595", "https://data.delijn.be/stops/506215"], ["https://data.delijn.be/stops/504397", "https://data.delijn.be/stops/504661"], ["https://data.delijn.be/stops/105036", "https://data.delijn.be/stops/105066"], ["https://data.delijn.be/stops/408851", "https://data.delijn.be/stops/408921"], ["https://data.delijn.be/stops/502491", "https://data.delijn.be/stops/502508"], ["https://data.delijn.be/stops/104483", "https://data.delijn.be/stops/307899"], ["https://data.delijn.be/stops/407140", "https://data.delijn.be/stops/407331"], ["https://data.delijn.be/stops/502012", "https://data.delijn.be/stops/507012"], ["https://data.delijn.be/stops/407981", "https://data.delijn.be/stops/407992"], ["https://data.delijn.be/stops/504571", "https://data.delijn.be/stops/509424"], ["https://data.delijn.be/stops/302900", "https://data.delijn.be/stops/303080"], ["https://data.delijn.be/stops/402119", "https://data.delijn.be/stops/402128"], ["https://data.delijn.be/stops/200954", "https://data.delijn.be/stops/205984"], ["https://data.delijn.be/stops/204103", "https://data.delijn.be/stops/205145"], ["https://data.delijn.be/stops/505323", "https://data.delijn.be/stops/505628"], ["https://data.delijn.be/stops/405072", "https://data.delijn.be/stops/405073"], ["https://data.delijn.be/stops/207989", "https://data.delijn.be/stops/217008"], ["https://data.delijn.be/stops/300464", "https://data.delijn.be/stops/300475"], ["https://data.delijn.be/stops/305380", "https://data.delijn.be/stops/305417"], ["https://data.delijn.be/stops/400464", "https://data.delijn.be/stops/407643"], ["https://data.delijn.be/stops/207797", "https://data.delijn.be/stops/504000"], ["https://data.delijn.be/stops/304991", "https://data.delijn.be/stops/304998"], ["https://data.delijn.be/stops/204206", "https://data.delijn.be/stops/205233"], ["https://data.delijn.be/stops/406688", "https://data.delijn.be/stops/406691"], ["https://data.delijn.be/stops/504382", "https://data.delijn.be/stops/504383"], ["https://data.delijn.be/stops/402595", "https://data.delijn.be/stops/410212"], ["https://data.delijn.be/stops/406150", "https://data.delijn.be/stops/406153"], ["https://data.delijn.be/stops/302177", "https://data.delijn.be/stops/308104"], ["https://data.delijn.be/stops/400478", "https://data.delijn.be/stops/407648"], ["https://data.delijn.be/stops/400205", "https://data.delijn.be/stops/400210"], ["https://data.delijn.be/stops/302344", "https://data.delijn.be/stops/302371"], ["https://data.delijn.be/stops/301664", "https://data.delijn.be/stops/307822"], ["https://data.delijn.be/stops/205205", "https://data.delijn.be/stops/205406"], ["https://data.delijn.be/stops/401759", "https://data.delijn.be/stops/401760"], ["https://data.delijn.be/stops/501244", "https://data.delijn.be/stops/501370"], ["https://data.delijn.be/stops/405428", "https://data.delijn.be/stops/302851"], ["https://data.delijn.be/stops/503953", "https://data.delijn.be/stops/508654"], ["https://data.delijn.be/stops/102893", "https://data.delijn.be/stops/105980"], ["https://data.delijn.be/stops/305107", "https://data.delijn.be/stops/305112"], ["https://data.delijn.be/stops/305167", "https://data.delijn.be/stops/305216"], ["https://data.delijn.be/stops/502305", "https://data.delijn.be/stops/507312"], ["https://data.delijn.be/stops/508102", "https://data.delijn.be/stops/508103"], ["https://data.delijn.be/stops/102578", "https://data.delijn.be/stops/103160"], ["https://data.delijn.be/stops/206771", "https://data.delijn.be/stops/208541"], ["https://data.delijn.be/stops/408277", "https://data.delijn.be/stops/408355"], ["https://data.delijn.be/stops/404326", "https://data.delijn.be/stops/404327"], ["https://data.delijn.be/stops/408636", "https://data.delijn.be/stops/408654"], ["https://data.delijn.be/stops/304552", "https://data.delijn.be/stops/304639"], ["https://data.delijn.be/stops/503067", "https://data.delijn.be/stops/505408"], ["https://data.delijn.be/stops/105612", "https://data.delijn.be/stops/106366"], ["https://data.delijn.be/stops/101071", "https://data.delijn.be/stops/101074"], ["https://data.delijn.be/stops/208559", "https://data.delijn.be/stops/209559"], ["https://data.delijn.be/stops/503090", "https://data.delijn.be/stops/505847"], ["https://data.delijn.be/stops/200356", "https://data.delijn.be/stops/203646"], ["https://data.delijn.be/stops/208383", "https://data.delijn.be/stops/208753"], ["https://data.delijn.be/stops/402400", "https://data.delijn.be/stops/402492"], ["https://data.delijn.be/stops/508154", "https://data.delijn.be/stops/508253"], ["https://data.delijn.be/stops/106993", "https://data.delijn.be/stops/106995"], ["https://data.delijn.be/stops/103077", "https://data.delijn.be/stops/105024"], ["https://data.delijn.be/stops/508620", "https://data.delijn.be/stops/508630"], ["https://data.delijn.be/stops/305645", "https://data.delijn.be/stops/307103"], ["https://data.delijn.be/stops/400736", "https://data.delijn.be/stops/400737"], ["https://data.delijn.be/stops/406904", "https://data.delijn.be/stops/406951"], ["https://data.delijn.be/stops/402021", "https://data.delijn.be/stops/405554"], ["https://data.delijn.be/stops/104892", "https://data.delijn.be/stops/109355"], ["https://data.delijn.be/stops/400933", "https://data.delijn.be/stops/400945"], ["https://data.delijn.be/stops/403134", "https://data.delijn.be/stops/410147"], ["https://data.delijn.be/stops/106393", "https://data.delijn.be/stops/109423"], ["https://data.delijn.be/stops/202886", "https://data.delijn.be/stops/206421"], ["https://data.delijn.be/stops/106258", "https://data.delijn.be/stops/109903"], ["https://data.delijn.be/stops/403275", "https://data.delijn.be/stops/410029"], ["https://data.delijn.be/stops/206138", "https://data.delijn.be/stops/206471"], ["https://data.delijn.be/stops/504720", "https://data.delijn.be/stops/509720"], ["https://data.delijn.be/stops/305618", "https://data.delijn.be/stops/305955"], ["https://data.delijn.be/stops/108814", "https://data.delijn.be/stops/108848"], ["https://data.delijn.be/stops/305343", "https://data.delijn.be/stops/307971"], ["https://data.delijn.be/stops/502753", "https://data.delijn.be/stops/505808"], ["https://data.delijn.be/stops/108812", "https://data.delijn.be/stops/108850"], ["https://data.delijn.be/stops/304853", "https://data.delijn.be/stops/304864"], ["https://data.delijn.be/stops/305642", "https://data.delijn.be/stops/305671"], ["https://data.delijn.be/stops/304876", "https://data.delijn.be/stops/307830"], ["https://data.delijn.be/stops/101492", "https://data.delijn.be/stops/108327"], ["https://data.delijn.be/stops/405827", "https://data.delijn.be/stops/409420"], ["https://data.delijn.be/stops/208111", "https://data.delijn.be/stops/219009"], ["https://data.delijn.be/stops/102741", "https://data.delijn.be/stops/107288"], ["https://data.delijn.be/stops/305622", "https://data.delijn.be/stops/308377"], ["https://data.delijn.be/stops/200521", "https://data.delijn.be/stops/211130"], ["https://data.delijn.be/stops/205265", "https://data.delijn.be/stops/205493"], ["https://data.delijn.be/stops/505686", "https://data.delijn.be/stops/507060"], ["https://data.delijn.be/stops/207559", "https://data.delijn.be/stops/207927"], ["https://data.delijn.be/stops/201865", "https://data.delijn.be/stops/211038"], ["https://data.delijn.be/stops/406100", "https://data.delijn.be/stops/406127"], ["https://data.delijn.be/stops/301249", "https://data.delijn.be/stops/307399"], ["https://data.delijn.be/stops/204673", "https://data.delijn.be/stops/205672"], ["https://data.delijn.be/stops/105404", "https://data.delijn.be/stops/109850"], ["https://data.delijn.be/stops/503162", "https://data.delijn.be/stops/503945"], ["https://data.delijn.be/stops/205988", "https://data.delijn.be/stops/209347"], ["https://data.delijn.be/stops/201995", "https://data.delijn.be/stops/209952"], ["https://data.delijn.be/stops/207417", "https://data.delijn.be/stops/207418"], ["https://data.delijn.be/stops/508561", "https://data.delijn.be/stops/508609"], ["https://data.delijn.be/stops/402656", "https://data.delijn.be/stops/402659"], ["https://data.delijn.be/stops/300575", "https://data.delijn.be/stops/308896"], ["https://data.delijn.be/stops/503666", "https://data.delijn.be/stops/508666"], ["https://data.delijn.be/stops/101125", "https://data.delijn.be/stops/101240"], ["https://data.delijn.be/stops/304984", "https://data.delijn.be/stops/308029"], ["https://data.delijn.be/stops/203530", "https://data.delijn.be/stops/206827"], ["https://data.delijn.be/stops/407897", "https://data.delijn.be/stops/407938"], ["https://data.delijn.be/stops/400631", "https://data.delijn.be/stops/410007"], ["https://data.delijn.be/stops/303694", "https://data.delijn.be/stops/303698"], ["https://data.delijn.be/stops/204090", "https://data.delijn.be/stops/205017"], ["https://data.delijn.be/stops/200564", "https://data.delijn.be/stops/200665"], ["https://data.delijn.be/stops/504412", "https://data.delijn.be/stops/505785"], ["https://data.delijn.be/stops/402819", "https://data.delijn.be/stops/409449"], ["https://data.delijn.be/stops/305846", "https://data.delijn.be/stops/305898"], ["https://data.delijn.be/stops/402420", "https://data.delijn.be/stops/404499"], ["https://data.delijn.be/stops/404090", "https://data.delijn.be/stops/404091"], ["https://data.delijn.be/stops/304458", "https://data.delijn.be/stops/304459"], ["https://data.delijn.be/stops/208252", "https://data.delijn.be/stops/209252"], ["https://data.delijn.be/stops/204236", "https://data.delijn.be/stops/204237"], ["https://data.delijn.be/stops/407014", "https://data.delijn.be/stops/408441"], ["https://data.delijn.be/stops/109054", "https://data.delijn.be/stops/109056"], ["https://data.delijn.be/stops/203915", "https://data.delijn.be/stops/211097"], ["https://data.delijn.be/stops/400289", "https://data.delijn.be/stops/400333"], ["https://data.delijn.be/stops/302564", "https://data.delijn.be/stops/308120"], ["https://data.delijn.be/stops/305106", "https://data.delijn.be/stops/308123"], ["https://data.delijn.be/stops/305990", "https://data.delijn.be/stops/307234"], ["https://data.delijn.be/stops/407426", "https://data.delijn.be/stops/409861"], ["https://data.delijn.be/stops/306330", "https://data.delijn.be/stops/306331"], ["https://data.delijn.be/stops/500568", "https://data.delijn.be/stops/501041"], ["https://data.delijn.be/stops/104700", "https://data.delijn.be/stops/105400"], ["https://data.delijn.be/stops/504390", "https://data.delijn.be/stops/509392"], ["https://data.delijn.be/stops/303779", "https://data.delijn.be/stops/303801"], ["https://data.delijn.be/stops/501186", "https://data.delijn.be/stops/505729"], ["https://data.delijn.be/stops/300751", "https://data.delijn.be/stops/304590"], ["https://data.delijn.be/stops/105132", "https://data.delijn.be/stops/105134"], ["https://data.delijn.be/stops/200647", "https://data.delijn.be/stops/201605"], ["https://data.delijn.be/stops/200388", "https://data.delijn.be/stops/209702"], ["https://data.delijn.be/stops/207784", "https://data.delijn.be/stops/208189"], ["https://data.delijn.be/stops/403462", "https://data.delijn.be/stops/403463"], ["https://data.delijn.be/stops/400307", "https://data.delijn.be/stops/400325"], ["https://data.delijn.be/stops/305074", "https://data.delijn.be/stops/305153"], ["https://data.delijn.be/stops/301381", "https://data.delijn.be/stops/301382"], ["https://data.delijn.be/stops/308165", "https://data.delijn.be/stops/308229"], ["https://data.delijn.be/stops/401345", "https://data.delijn.be/stops/406064"], ["https://data.delijn.be/stops/302052", "https://data.delijn.be/stops/304915"], ["https://data.delijn.be/stops/206090", "https://data.delijn.be/stops/206091"], ["https://data.delijn.be/stops/205563", "https://data.delijn.be/stops/205564"], ["https://data.delijn.be/stops/102541", "https://data.delijn.be/stops/408336"], ["https://data.delijn.be/stops/502592", "https://data.delijn.be/stops/507060"], ["https://data.delijn.be/stops/502108", "https://data.delijn.be/stops/502141"], ["https://data.delijn.be/stops/400328", "https://data.delijn.be/stops/406769"], ["https://data.delijn.be/stops/208291", "https://data.delijn.be/stops/211065"], ["https://data.delijn.be/stops/103210", "https://data.delijn.be/stops/103212"], ["https://data.delijn.be/stops/303829", "https://data.delijn.be/stops/303830"], ["https://data.delijn.be/stops/200408", "https://data.delijn.be/stops/201408"], ["https://data.delijn.be/stops/403334", "https://data.delijn.be/stops/403349"], ["https://data.delijn.be/stops/107489", "https://data.delijn.be/stops/305801"], ["https://data.delijn.be/stops/200412", "https://data.delijn.be/stops/200504"], ["https://data.delijn.be/stops/104466", "https://data.delijn.be/stops/106744"], ["https://data.delijn.be/stops/406272", "https://data.delijn.be/stops/406278"], ["https://data.delijn.be/stops/301353", "https://data.delijn.be/stops/304525"], ["https://data.delijn.be/stops/201055", "https://data.delijn.be/stops/202475"], ["https://data.delijn.be/stops/105257", "https://data.delijn.be/stops/105276"], ["https://data.delijn.be/stops/206300", "https://data.delijn.be/stops/207473"], ["https://data.delijn.be/stops/104286", "https://data.delijn.be/stops/104288"], ["https://data.delijn.be/stops/502018", "https://data.delijn.be/stops/507797"], ["https://data.delijn.be/stops/301944", "https://data.delijn.be/stops/304642"], ["https://data.delijn.be/stops/303190", "https://data.delijn.be/stops/307952"], ["https://data.delijn.be/stops/400068", "https://data.delijn.be/stops/400167"], ["https://data.delijn.be/stops/200603", "https://data.delijn.be/stops/201604"], ["https://data.delijn.be/stops/303298", "https://data.delijn.be/stops/303299"], ["https://data.delijn.be/stops/107200", "https://data.delijn.be/stops/410162"], ["https://data.delijn.be/stops/404518", "https://data.delijn.be/stops/408163"], ["https://data.delijn.be/stops/102381", "https://data.delijn.be/stops/105609"], ["https://data.delijn.be/stops/408884", "https://data.delijn.be/stops/408893"], ["https://data.delijn.be/stops/301219", "https://data.delijn.be/stops/301220"], ["https://data.delijn.be/stops/506458", "https://data.delijn.be/stops/506459"], ["https://data.delijn.be/stops/102920", "https://data.delijn.be/stops/103415"], ["https://data.delijn.be/stops/504556", "https://data.delijn.be/stops/509561"], ["https://data.delijn.be/stops/201524", "https://data.delijn.be/stops/210130"], ["https://data.delijn.be/stops/204527", "https://data.delijn.be/stops/205525"], ["https://data.delijn.be/stops/107181", "https://data.delijn.be/stops/107183"], ["https://data.delijn.be/stops/204499", "https://data.delijn.be/stops/205499"], ["https://data.delijn.be/stops/104605", "https://data.delijn.be/stops/107382"], ["https://data.delijn.be/stops/503234", "https://data.delijn.be/stops/508234"], ["https://data.delijn.be/stops/407813", "https://data.delijn.be/stops/407905"], ["https://data.delijn.be/stops/302185", "https://data.delijn.be/stops/302186"], ["https://data.delijn.be/stops/202121", "https://data.delijn.be/stops/203120"], ["https://data.delijn.be/stops/503682", "https://data.delijn.be/stops/508686"], ["https://data.delijn.be/stops/502145", "https://data.delijn.be/stops/502421"], ["https://data.delijn.be/stops/504994", "https://data.delijn.be/stops/505218"], ["https://data.delijn.be/stops/501112", "https://data.delijn.be/stops/506503"], ["https://data.delijn.be/stops/404313", "https://data.delijn.be/stops/404330"], ["https://data.delijn.be/stops/501223", "https://data.delijn.be/stops/506223"], ["https://data.delijn.be/stops/101804", "https://data.delijn.be/stops/104132"], ["https://data.delijn.be/stops/103376", "https://data.delijn.be/stops/406788"], ["https://data.delijn.be/stops/407895", "https://data.delijn.be/stops/303889"], ["https://data.delijn.be/stops/505204", "https://data.delijn.be/stops/509019"], ["https://data.delijn.be/stops/304878", "https://data.delijn.be/stops/304884"], ["https://data.delijn.be/stops/206067", "https://data.delijn.be/stops/206120"], ["https://data.delijn.be/stops/501116", "https://data.delijn.be/stops/501187"], ["https://data.delijn.be/stops/503089", "https://data.delijn.be/stops/505379"], ["https://data.delijn.be/stops/503654", "https://data.delijn.be/stops/503953"], ["https://data.delijn.be/stops/304127", "https://data.delijn.be/stops/308818"], ["https://data.delijn.be/stops/206724", "https://data.delijn.be/stops/207097"], ["https://data.delijn.be/stops/504118", "https://data.delijn.be/stops/509118"], ["https://data.delijn.be/stops/202628", "https://data.delijn.be/stops/205068"], ["https://data.delijn.be/stops/405379", "https://data.delijn.be/stops/302841"], ["https://data.delijn.be/stops/204036", "https://data.delijn.be/stops/204037"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/200732"], ["https://data.delijn.be/stops/504247", "https://data.delijn.be/stops/504702"], ["https://data.delijn.be/stops/403812", "https://data.delijn.be/stops/403814"], ["https://data.delijn.be/stops/301432", "https://data.delijn.be/stops/301434"], ["https://data.delijn.be/stops/302623", "https://data.delijn.be/stops/308117"], ["https://data.delijn.be/stops/503260", "https://data.delijn.be/stops/509766"], ["https://data.delijn.be/stops/404327", "https://data.delijn.be/stops/404391"], ["https://data.delijn.be/stops/402777", "https://data.delijn.be/stops/406472"], ["https://data.delijn.be/stops/402550", "https://data.delijn.be/stops/404067"], ["https://data.delijn.be/stops/404115", "https://data.delijn.be/stops/408738"], ["https://data.delijn.be/stops/200126", "https://data.delijn.be/stops/201244"], ["https://data.delijn.be/stops/302862", "https://data.delijn.be/stops/306102"], ["https://data.delijn.be/stops/508317", "https://data.delijn.be/stops/508676"], ["https://data.delijn.be/stops/502506", "https://data.delijn.be/stops/505552"], ["https://data.delijn.be/stops/404740", "https://data.delijn.be/stops/404834"], ["https://data.delijn.be/stops/301146", "https://data.delijn.be/stops/307714"], ["https://data.delijn.be/stops/206894", "https://data.delijn.be/stops/207893"], ["https://data.delijn.be/stops/202465", "https://data.delijn.be/stops/203461"], ["https://data.delijn.be/stops/206219", "https://data.delijn.be/stops/207183"], ["https://data.delijn.be/stops/501633", "https://data.delijn.be/stops/506254"], ["https://data.delijn.be/stops/300292", "https://data.delijn.be/stops/307478"], ["https://data.delijn.be/stops/504665", "https://data.delijn.be/stops/506371"], ["https://data.delijn.be/stops/208237", "https://data.delijn.be/stops/208330"], ["https://data.delijn.be/stops/103644", "https://data.delijn.be/stops/107177"], ["https://data.delijn.be/stops/207095", "https://data.delijn.be/stops/207908"], ["https://data.delijn.be/stops/502420", "https://data.delijn.be/stops/507420"], ["https://data.delijn.be/stops/202030", "https://data.delijn.be/stops/203027"], ["https://data.delijn.be/stops/504838", "https://data.delijn.be/stops/505206"], ["https://data.delijn.be/stops/404612", "https://data.delijn.be/stops/404617"], ["https://data.delijn.be/stops/107409", "https://data.delijn.be/stops/107594"], ["https://data.delijn.be/stops/502280", "https://data.delijn.be/stops/502284"], ["https://data.delijn.be/stops/101836", "https://data.delijn.be/stops/101837"], ["https://data.delijn.be/stops/206218", "https://data.delijn.be/stops/207461"], ["https://data.delijn.be/stops/105061", "https://data.delijn.be/stops/105823"], ["https://data.delijn.be/stops/105455", "https://data.delijn.be/stops/105895"], ["https://data.delijn.be/stops/207147", "https://data.delijn.be/stops/207148"], ["https://data.delijn.be/stops/103499", "https://data.delijn.be/stops/106211"], ["https://data.delijn.be/stops/501675", "https://data.delijn.be/stops/502352"], ["https://data.delijn.be/stops/400932", "https://data.delijn.be/stops/402838"], ["https://data.delijn.be/stops/201893", "https://data.delijn.be/stops/203776"], ["https://data.delijn.be/stops/501402", "https://data.delijn.be/stops/506402"], ["https://data.delijn.be/stops/407622", "https://data.delijn.be/stops/407701"], ["https://data.delijn.be/stops/103147", "https://data.delijn.be/stops/106295"], ["https://data.delijn.be/stops/204740", "https://data.delijn.be/stops/204766"], ["https://data.delijn.be/stops/202340", "https://data.delijn.be/stops/203339"], ["https://data.delijn.be/stops/108316", "https://data.delijn.be/stops/109018"], ["https://data.delijn.be/stops/508563", "https://data.delijn.be/stops/508579"], ["https://data.delijn.be/stops/503520", "https://data.delijn.be/stops/505548"], ["https://data.delijn.be/stops/202162", "https://data.delijn.be/stops/203162"], ["https://data.delijn.be/stops/502043", "https://data.delijn.be/stops/502642"], ["https://data.delijn.be/stops/109775", "https://data.delijn.be/stops/109776"], ["https://data.delijn.be/stops/406350", "https://data.delijn.be/stops/408857"], ["https://data.delijn.be/stops/407003", "https://data.delijn.be/stops/407005"], ["https://data.delijn.be/stops/503536", "https://data.delijn.be/stops/508538"], ["https://data.delijn.be/stops/201774", "https://data.delijn.be/stops/201806"], ["https://data.delijn.be/stops/206138", "https://data.delijn.be/stops/207138"], ["https://data.delijn.be/stops/104773", "https://data.delijn.be/stops/108151"], ["https://data.delijn.be/stops/301427", "https://data.delijn.be/stops/301442"], ["https://data.delijn.be/stops/109026", "https://data.delijn.be/stops/109077"], ["https://data.delijn.be/stops/505977", "https://data.delijn.be/stops/509386"], ["https://data.delijn.be/stops/106119", "https://data.delijn.be/stops/106120"], ["https://data.delijn.be/stops/300255", "https://data.delijn.be/stops/300256"], ["https://data.delijn.be/stops/106950", "https://data.delijn.be/stops/106951"], ["https://data.delijn.be/stops/403826", "https://data.delijn.be/stops/404057"], ["https://data.delijn.be/stops/300523", "https://data.delijn.be/stops/307828"], ["https://data.delijn.be/stops/204651", "https://data.delijn.be/stops/205652"], ["https://data.delijn.be/stops/101459", "https://data.delijn.be/stops/109285"], ["https://data.delijn.be/stops/105263", "https://data.delijn.be/stops/105266"], ["https://data.delijn.be/stops/302764", "https://data.delijn.be/stops/307781"], ["https://data.delijn.be/stops/104861", "https://data.delijn.be/stops/107813"], ["https://data.delijn.be/stops/502752", "https://data.delijn.be/stops/507752"], ["https://data.delijn.be/stops/409108", "https://data.delijn.be/stops/409109"], ["https://data.delijn.be/stops/402103", "https://data.delijn.be/stops/402460"], ["https://data.delijn.be/stops/407054", "https://data.delijn.be/stops/407055"], ["https://data.delijn.be/stops/200130", "https://data.delijn.be/stops/211063"], ["https://data.delijn.be/stops/504391", "https://data.delijn.be/stops/509715"], ["https://data.delijn.be/stops/200400", "https://data.delijn.be/stops/202362"], ["https://data.delijn.be/stops/508284", "https://data.delijn.be/stops/508314"], ["https://data.delijn.be/stops/101160", "https://data.delijn.be/stops/104119"], ["https://data.delijn.be/stops/301026", "https://data.delijn.be/stops/305466"], ["https://data.delijn.be/stops/101831", "https://data.delijn.be/stops/107009"], ["https://data.delijn.be/stops/202891", "https://data.delijn.be/stops/203891"], ["https://data.delijn.be/stops/200910", "https://data.delijn.be/stops/200911"], ["https://data.delijn.be/stops/101631", "https://data.delijn.be/stops/104343"], ["https://data.delijn.be/stops/503568", "https://data.delijn.be/stops/505937"], ["https://data.delijn.be/stops/302177", "https://data.delijn.be/stops/302439"], ["https://data.delijn.be/stops/206034", "https://data.delijn.be/stops/206215"], ["https://data.delijn.be/stops/305589", "https://data.delijn.be/stops/308815"], ["https://data.delijn.be/stops/408549", "https://data.delijn.be/stops/408550"], ["https://data.delijn.be/stops/101556", "https://data.delijn.be/stops/101557"], ["https://data.delijn.be/stops/501195", "https://data.delijn.be/stops/506195"], ["https://data.delijn.be/stops/200368", "https://data.delijn.be/stops/201286"], ["https://data.delijn.be/stops/408878", "https://data.delijn.be/stops/408896"], ["https://data.delijn.be/stops/301599", "https://data.delijn.be/stops/301615"], ["https://data.delijn.be/stops/207776", "https://data.delijn.be/stops/209186"], ["https://data.delijn.be/stops/305344", "https://data.delijn.be/stops/305350"], ["https://data.delijn.be/stops/307800", "https://data.delijn.be/stops/308612"], ["https://data.delijn.be/stops/304670", "https://data.delijn.be/stops/304671"], ["https://data.delijn.be/stops/308920", "https://data.delijn.be/stops/308921"], ["https://data.delijn.be/stops/107657", "https://data.delijn.be/stops/107658"], ["https://data.delijn.be/stops/200556", "https://data.delijn.be/stops/201558"], ["https://data.delijn.be/stops/207906", "https://data.delijn.be/stops/207907"], ["https://data.delijn.be/stops/200217", "https://data.delijn.be/stops/201217"], ["https://data.delijn.be/stops/200762", "https://data.delijn.be/stops/505280"], ["https://data.delijn.be/stops/501627", "https://data.delijn.be/stops/503948"], ["https://data.delijn.be/stops/305229", "https://data.delijn.be/stops/305889"], ["https://data.delijn.be/stops/206561", "https://data.delijn.be/stops/207561"], ["https://data.delijn.be/stops/103041", "https://data.delijn.be/stops/104345"], ["https://data.delijn.be/stops/403064", "https://data.delijn.be/stops/403065"], ["https://data.delijn.be/stops/202747", "https://data.delijn.be/stops/202748"], ["https://data.delijn.be/stops/400569", "https://data.delijn.be/stops/404153"], ["https://data.delijn.be/stops/503153", "https://data.delijn.be/stops/505426"], ["https://data.delijn.be/stops/302596", "https://data.delijn.be/stops/302612"], ["https://data.delijn.be/stops/300228", "https://data.delijn.be/stops/307131"], ["https://data.delijn.be/stops/503064", "https://data.delijn.be/stops/508064"], ["https://data.delijn.be/stops/505017", "https://data.delijn.be/stops/505336"], ["https://data.delijn.be/stops/101332", "https://data.delijn.be/stops/106674"], ["https://data.delijn.be/stops/102745", "https://data.delijn.be/stops/102750"], ["https://data.delijn.be/stops/106643", "https://data.delijn.be/stops/109672"], ["https://data.delijn.be/stops/201236", "https://data.delijn.be/stops/204924"], ["https://data.delijn.be/stops/101360", "https://data.delijn.be/stops/101806"], ["https://data.delijn.be/stops/403901", "https://data.delijn.be/stops/403926"], ["https://data.delijn.be/stops/503652", "https://data.delijn.be/stops/505365"], ["https://data.delijn.be/stops/103291", "https://data.delijn.be/stops/108731"], ["https://data.delijn.be/stops/504373", "https://data.delijn.be/stops/505716"], ["https://data.delijn.be/stops/104075", "https://data.delijn.be/stops/104875"], ["https://data.delijn.be/stops/202663", "https://data.delijn.be/stops/203662"], ["https://data.delijn.be/stops/305889", "https://data.delijn.be/stops/307795"], ["https://data.delijn.be/stops/200144", "https://data.delijn.be/stops/205919"], ["https://data.delijn.be/stops/307272", "https://data.delijn.be/stops/308695"], ["https://data.delijn.be/stops/104033", "https://data.delijn.be/stops/104402"], ["https://data.delijn.be/stops/508917", "https://data.delijn.be/stops/508925"], ["https://data.delijn.be/stops/402366", "https://data.delijn.be/stops/402444"], ["https://data.delijn.be/stops/208218", "https://data.delijn.be/stops/208592"], ["https://data.delijn.be/stops/302355", "https://data.delijn.be/stops/302360"], ["https://data.delijn.be/stops/105320", "https://data.delijn.be/stops/105325"], ["https://data.delijn.be/stops/507183", "https://data.delijn.be/stops/507185"], ["https://data.delijn.be/stops/108868", "https://data.delijn.be/stops/108869"], ["https://data.delijn.be/stops/202453", "https://data.delijn.be/stops/203452"], ["https://data.delijn.be/stops/205760", "https://data.delijn.be/stops/214012"], ["https://data.delijn.be/stops/307546", "https://data.delijn.be/stops/307753"], ["https://data.delijn.be/stops/107964", "https://data.delijn.be/stops/107965"], ["https://data.delijn.be/stops/204314", "https://data.delijn.be/stops/204710"], ["https://data.delijn.be/stops/502193", "https://data.delijn.be/stops/509945"], ["https://data.delijn.be/stops/403316", "https://data.delijn.be/stops/403323"], ["https://data.delijn.be/stops/401824", "https://data.delijn.be/stops/401826"], ["https://data.delijn.be/stops/407766", "https://data.delijn.be/stops/409626"], ["https://data.delijn.be/stops/206422", "https://data.delijn.be/stops/206568"], ["https://data.delijn.be/stops/106734", "https://data.delijn.be/stops/106735"], ["https://data.delijn.be/stops/302006", "https://data.delijn.be/stops/303189"], ["https://data.delijn.be/stops/303281", "https://data.delijn.be/stops/308793"], ["https://data.delijn.be/stops/501230", "https://data.delijn.be/stops/506230"], ["https://data.delijn.be/stops/503491", "https://data.delijn.be/stops/508485"], ["https://data.delijn.be/stops/303434", "https://data.delijn.be/stops/303435"], ["https://data.delijn.be/stops/302549", "https://data.delijn.be/stops/302557"], ["https://data.delijn.be/stops/304033", "https://data.delijn.be/stops/304091"], ["https://data.delijn.be/stops/202703", "https://data.delijn.be/stops/203701"], ["https://data.delijn.be/stops/406576", "https://data.delijn.be/stops/407167"], ["https://data.delijn.be/stops/102573", "https://data.delijn.be/stops/109167"], ["https://data.delijn.be/stops/206080", "https://data.delijn.be/stops/207991"], ["https://data.delijn.be/stops/304028", "https://data.delijn.be/stops/304030"], ["https://data.delijn.be/stops/201149", "https://data.delijn.be/stops/201172"], ["https://data.delijn.be/stops/105342", "https://data.delijn.be/stops/105343"], ["https://data.delijn.be/stops/500013", "https://data.delijn.be/stops/502563"], ["https://data.delijn.be/stops/302395", "https://data.delijn.be/stops/302761"], ["https://data.delijn.be/stops/503022", "https://data.delijn.be/stops/508020"], ["https://data.delijn.be/stops/204669", "https://data.delijn.be/stops/205014"], ["https://data.delijn.be/stops/101719", "https://data.delijn.be/stops/102924"], ["https://data.delijn.be/stops/502044", "https://data.delijn.be/stops/507044"], ["https://data.delijn.be/stops/206235", "https://data.delijn.be/stops/207855"], ["https://data.delijn.be/stops/505177", "https://data.delijn.be/stops/508845"], ["https://data.delijn.be/stops/208054", "https://data.delijn.be/stops/208658"], ["https://data.delijn.be/stops/304586", "https://data.delijn.be/stops/304654"], ["https://data.delijn.be/stops/503609", "https://data.delijn.be/stops/508609"], ["https://data.delijn.be/stops/208409", "https://data.delijn.be/stops/209409"], ["https://data.delijn.be/stops/101931", "https://data.delijn.be/stops/106252"], ["https://data.delijn.be/stops/203974", "https://data.delijn.be/stops/204237"], ["https://data.delijn.be/stops/207450", "https://data.delijn.be/stops/207493"], ["https://data.delijn.be/stops/502342", "https://data.delijn.be/stops/507342"], ["https://data.delijn.be/stops/401439", "https://data.delijn.be/stops/401627"], ["https://data.delijn.be/stops/302235", "https://data.delijn.be/stops/302236"], ["https://data.delijn.be/stops/207464", "https://data.delijn.be/stops/216010"], ["https://data.delijn.be/stops/105024", "https://data.delijn.be/stops/105832"], ["https://data.delijn.be/stops/504555", "https://data.delijn.be/stops/505184"], ["https://data.delijn.be/stops/204483", "https://data.delijn.be/stops/205483"], ["https://data.delijn.be/stops/404441", "https://data.delijn.be/stops/409429"], ["https://data.delijn.be/stops/300480", "https://data.delijn.be/stops/306162"], ["https://data.delijn.be/stops/307804", "https://data.delijn.be/stops/307805"], ["https://data.delijn.be/stops/200739", "https://data.delijn.be/stops/203601"], ["https://data.delijn.be/stops/408632", "https://data.delijn.be/stops/410191"], ["https://data.delijn.be/stops/206809", "https://data.delijn.be/stops/207809"], ["https://data.delijn.be/stops/405180", "https://data.delijn.be/stops/405239"], ["https://data.delijn.be/stops/504190", "https://data.delijn.be/stops/509645"], ["https://data.delijn.be/stops/109059", "https://data.delijn.be/stops/109063"], ["https://data.delijn.be/stops/404081", "https://data.delijn.be/stops/405968"], ["https://data.delijn.be/stops/103152", "https://data.delijn.be/stops/410163"], ["https://data.delijn.be/stops/103611", "https://data.delijn.be/stops/106194"], ["https://data.delijn.be/stops/206332", "https://data.delijn.be/stops/207732"], ["https://data.delijn.be/stops/202782", "https://data.delijn.be/stops/211103"], ["https://data.delijn.be/stops/502212", "https://data.delijn.be/stops/505149"], ["https://data.delijn.be/stops/107716", "https://data.delijn.be/stops/109391"], ["https://data.delijn.be/stops/207152", "https://data.delijn.be/stops/207153"], ["https://data.delijn.be/stops/107376", "https://data.delijn.be/stops/107377"], ["https://data.delijn.be/stops/503151", "https://data.delijn.be/stops/505194"], ["https://data.delijn.be/stops/200566", "https://data.delijn.be/stops/201670"], ["https://data.delijn.be/stops/304518", "https://data.delijn.be/stops/307674"], ["https://data.delijn.be/stops/200900", "https://data.delijn.be/stops/208890"], ["https://data.delijn.be/stops/405505", "https://data.delijn.be/stops/410086"], ["https://data.delijn.be/stops/401584", "https://data.delijn.be/stops/402082"], ["https://data.delijn.be/stops/101969", "https://data.delijn.be/stops/108188"], ["https://data.delijn.be/stops/409330", "https://data.delijn.be/stops/410286"], ["https://data.delijn.be/stops/400212", "https://data.delijn.be/stops/405613"], ["https://data.delijn.be/stops/303174", "https://data.delijn.be/stops/303202"], ["https://data.delijn.be/stops/102025", "https://data.delijn.be/stops/103765"], ["https://data.delijn.be/stops/401511", "https://data.delijn.be/stops/402845"], ["https://data.delijn.be/stops/401531", "https://data.delijn.be/stops/403885"], ["https://data.delijn.be/stops/108138", "https://data.delijn.be/stops/108842"], ["https://data.delijn.be/stops/101852", "https://data.delijn.be/stops/106870"], ["https://data.delijn.be/stops/302795", "https://data.delijn.be/stops/306560"], ["https://data.delijn.be/stops/503311", "https://data.delijn.be/stops/508311"], ["https://data.delijn.be/stops/401633", "https://data.delijn.be/stops/401736"], ["https://data.delijn.be/stops/106923", "https://data.delijn.be/stops/106945"], ["https://data.delijn.be/stops/401786", "https://data.delijn.be/stops/401787"], ["https://data.delijn.be/stops/502915", "https://data.delijn.be/stops/507915"], ["https://data.delijn.be/stops/302570", "https://data.delijn.be/stops/302575"], ["https://data.delijn.be/stops/407814", "https://data.delijn.be/stops/408043"], ["https://data.delijn.be/stops/206930", "https://data.delijn.be/stops/206948"], ["https://data.delijn.be/stops/105031", "https://data.delijn.be/stops/106837"], ["https://data.delijn.be/stops/504520", "https://data.delijn.be/stops/504524"], ["https://data.delijn.be/stops/109451", "https://data.delijn.be/stops/109555"], ["https://data.delijn.be/stops/503384", "https://data.delijn.be/stops/508363"], ["https://data.delijn.be/stops/209469", "https://data.delijn.be/stops/209668"], ["https://data.delijn.be/stops/304850", "https://data.delijn.be/stops/304851"], ["https://data.delijn.be/stops/101027", "https://data.delijn.be/stops/101930"], ["https://data.delijn.be/stops/400061", "https://data.delijn.be/stops/400101"], ["https://data.delijn.be/stops/201379", "https://data.delijn.be/stops/201539"], ["https://data.delijn.be/stops/405500", "https://data.delijn.be/stops/409345"], ["https://data.delijn.be/stops/103624", "https://data.delijn.be/stops/103648"], ["https://data.delijn.be/stops/502685", "https://data.delijn.be/stops/507685"], ["https://data.delijn.be/stops/105721", "https://data.delijn.be/stops/106562"], ["https://data.delijn.be/stops/403147", "https://data.delijn.be/stops/403352"], ["https://data.delijn.be/stops/104571", "https://data.delijn.be/stops/104573"], ["https://data.delijn.be/stops/200647", "https://data.delijn.be/stops/200972"], ["https://data.delijn.be/stops/505164", "https://data.delijn.be/stops/505375"], ["https://data.delijn.be/stops/305520", "https://data.delijn.be/stops/308553"], ["https://data.delijn.be/stops/300377", "https://data.delijn.be/stops/307725"], ["https://data.delijn.be/stops/407257", "https://data.delijn.be/stops/409490"], ["https://data.delijn.be/stops/308781", "https://data.delijn.be/stops/308783"], ["https://data.delijn.be/stops/303285", "https://data.delijn.be/stops/303330"], ["https://data.delijn.be/stops/501549", "https://data.delijn.be/stops/506249"], ["https://data.delijn.be/stops/109148", "https://data.delijn.be/stops/109191"], ["https://data.delijn.be/stops/102659", "https://data.delijn.be/stops/104860"], ["https://data.delijn.be/stops/305264", "https://data.delijn.be/stops/305281"], ["https://data.delijn.be/stops/407782", "https://data.delijn.be/stops/307447"], ["https://data.delijn.be/stops/302863", "https://data.delijn.be/stops/306401"], ["https://data.delijn.be/stops/406557", "https://data.delijn.be/stops/406563"], ["https://data.delijn.be/stops/402175", "https://data.delijn.be/stops/402383"], ["https://data.delijn.be/stops/304252", "https://data.delijn.be/stops/305492"], ["https://data.delijn.be/stops/107712", "https://data.delijn.be/stops/107714"], ["https://data.delijn.be/stops/305163", "https://data.delijn.be/stops/308682"], ["https://data.delijn.be/stops/303820", "https://data.delijn.be/stops/303822"], ["https://data.delijn.be/stops/408775", "https://data.delijn.be/stops/408783"], ["https://data.delijn.be/stops/503047", "https://data.delijn.be/stops/508629"], ["https://data.delijn.be/stops/503788", "https://data.delijn.be/stops/505822"], ["https://data.delijn.be/stops/203925", "https://data.delijn.be/stops/203926"], ["https://data.delijn.be/stops/504621", "https://data.delijn.be/stops/504622"], ["https://data.delijn.be/stops/105093", "https://data.delijn.be/stops/105098"], ["https://data.delijn.be/stops/203338", "https://data.delijn.be/stops/203340"], ["https://data.delijn.be/stops/500043", "https://data.delijn.be/stops/500044"], ["https://data.delijn.be/stops/302267", "https://data.delijn.be/stops/303194"], ["https://data.delijn.be/stops/102494", "https://data.delijn.be/stops/400306"], ["https://data.delijn.be/stops/503064", "https://data.delijn.be/stops/503237"], ["https://data.delijn.be/stops/505786", "https://data.delijn.be/stops/509345"], ["https://data.delijn.be/stops/502622", "https://data.delijn.be/stops/507622"], ["https://data.delijn.be/stops/301397", "https://data.delijn.be/stops/306122"], ["https://data.delijn.be/stops/400215", "https://data.delijn.be/stops/400216"], ["https://data.delijn.be/stops/406266", "https://data.delijn.be/stops/408482"], ["https://data.delijn.be/stops/101685", "https://data.delijn.be/stops/101690"], ["https://data.delijn.be/stops/408222", "https://data.delijn.be/stops/408280"], ["https://data.delijn.be/stops/104592", "https://data.delijn.be/stops/108259"], ["https://data.delijn.be/stops/504023", "https://data.delijn.be/stops/504200"], ["https://data.delijn.be/stops/200547", "https://data.delijn.be/stops/208677"], ["https://data.delijn.be/stops/103169", "https://data.delijn.be/stops/109859"], ["https://data.delijn.be/stops/407715", "https://data.delijn.be/stops/407716"], ["https://data.delijn.be/stops/501097", "https://data.delijn.be/stops/507214"], ["https://data.delijn.be/stops/303806", "https://data.delijn.be/stops/303809"], ["https://data.delijn.be/stops/201712", "https://data.delijn.be/stops/208651"], ["https://data.delijn.be/stops/105223", "https://data.delijn.be/stops/105224"], ["https://data.delijn.be/stops/302653", "https://data.delijn.be/stops/306339"], ["https://data.delijn.be/stops/206388", "https://data.delijn.be/stops/207388"], ["https://data.delijn.be/stops/501362", "https://data.delijn.be/stops/501366"], ["https://data.delijn.be/stops/202711", "https://data.delijn.be/stops/203711"], ["https://data.delijn.be/stops/404033", "https://data.delijn.be/stops/410350"], ["https://data.delijn.be/stops/503983", "https://data.delijn.be/stops/508983"], ["https://data.delijn.be/stops/401397", "https://data.delijn.be/stops/301037"], ["https://data.delijn.be/stops/101906", "https://data.delijn.be/stops/107114"], ["https://data.delijn.be/stops/200066", "https://data.delijn.be/stops/200098"], ["https://data.delijn.be/stops/201182", "https://data.delijn.be/stops/202213"], ["https://data.delijn.be/stops/308172", "https://data.delijn.be/stops/308240"], ["https://data.delijn.be/stops/401390", "https://data.delijn.be/stops/402820"], ["https://data.delijn.be/stops/401671", "https://data.delijn.be/stops/401673"], ["https://data.delijn.be/stops/208209", "https://data.delijn.be/stops/209208"], ["https://data.delijn.be/stops/301836", "https://data.delijn.be/stops/301842"], ["https://data.delijn.be/stops/304934", "https://data.delijn.be/stops/304942"], ["https://data.delijn.be/stops/102592", "https://data.delijn.be/stops/108998"], ["https://data.delijn.be/stops/401454", "https://data.delijn.be/stops/401455"], ["https://data.delijn.be/stops/502326", "https://data.delijn.be/stops/502657"], ["https://data.delijn.be/stops/109453", "https://data.delijn.be/stops/109454"], ["https://data.delijn.be/stops/101823", "https://data.delijn.be/stops/102958"], ["https://data.delijn.be/stops/400581", "https://data.delijn.be/stops/403019"], ["https://data.delijn.be/stops/305598", "https://data.delijn.be/stops/306879"], ["https://data.delijn.be/stops/504439", "https://data.delijn.be/stops/509439"], ["https://data.delijn.be/stops/105419", "https://data.delijn.be/stops/109826"], ["https://data.delijn.be/stops/405970", "https://data.delijn.be/stops/405971"], ["https://data.delijn.be/stops/206443", "https://data.delijn.be/stops/209681"], ["https://data.delijn.be/stops/304564", "https://data.delijn.be/stops/305977"], ["https://data.delijn.be/stops/209423", "https://data.delijn.be/stops/209754"], ["https://data.delijn.be/stops/201286", "https://data.delijn.be/stops/201619"], ["https://data.delijn.be/stops/200917", "https://data.delijn.be/stops/202246"], ["https://data.delijn.be/stops/505596", "https://data.delijn.be/stops/507501"], ["https://data.delijn.be/stops/200968", "https://data.delijn.be/stops/208596"], ["https://data.delijn.be/stops/205079", "https://data.delijn.be/stops/205585"], ["https://data.delijn.be/stops/304073", "https://data.delijn.be/stops/308645"], ["https://data.delijn.be/stops/405326", "https://data.delijn.be/stops/405327"], ["https://data.delijn.be/stops/304469", "https://data.delijn.be/stops/304532"], ["https://data.delijn.be/stops/405267", "https://data.delijn.be/stops/405268"], ["https://data.delijn.be/stops/105283", "https://data.delijn.be/stops/105286"], ["https://data.delijn.be/stops/108226", "https://data.delijn.be/stops/108229"], ["https://data.delijn.be/stops/502451", "https://data.delijn.be/stops/507067"], ["https://data.delijn.be/stops/301907", "https://data.delijn.be/stops/306259"], ["https://data.delijn.be/stops/408313", "https://data.delijn.be/stops/408403"], ["https://data.delijn.be/stops/208671", "https://data.delijn.be/stops/219021"], ["https://data.delijn.be/stops/306150", "https://data.delijn.be/stops/306649"], ["https://data.delijn.be/stops/109330", "https://data.delijn.be/stops/300066"], ["https://data.delijn.be/stops/200184", "https://data.delijn.be/stops/201192"], ["https://data.delijn.be/stops/404522", "https://data.delijn.be/stops/404730"], ["https://data.delijn.be/stops/403442", "https://data.delijn.be/stops/403480"], ["https://data.delijn.be/stops/403794", "https://data.delijn.be/stops/403825"], ["https://data.delijn.be/stops/301665", "https://data.delijn.be/stops/307823"], ["https://data.delijn.be/stops/307910", "https://data.delijn.be/stops/308146"], ["https://data.delijn.be/stops/102619", "https://data.delijn.be/stops/102621"], ["https://data.delijn.be/stops/408863", "https://data.delijn.be/stops/408864"], ["https://data.delijn.be/stops/101970", "https://data.delijn.be/stops/101971"], ["https://data.delijn.be/stops/108617", "https://data.delijn.be/stops/300647"], ["https://data.delijn.be/stops/508684", "https://data.delijn.be/stops/508689"], ["https://data.delijn.be/stops/306373", "https://data.delijn.be/stops/306374"], ["https://data.delijn.be/stops/108334", "https://data.delijn.be/stops/109331"], ["https://data.delijn.be/stops/105692", "https://data.delijn.be/stops/105693"], ["https://data.delijn.be/stops/501489", "https://data.delijn.be/stops/501490"], ["https://data.delijn.be/stops/404696", "https://data.delijn.be/stops/407144"], ["https://data.delijn.be/stops/400689", "https://data.delijn.be/stops/404331"], ["https://data.delijn.be/stops/104383", "https://data.delijn.be/stops/104386"], ["https://data.delijn.be/stops/401114", "https://data.delijn.be/stops/401115"], ["https://data.delijn.be/stops/500998", "https://data.delijn.be/stops/504825"], ["https://data.delijn.be/stops/101724", "https://data.delijn.be/stops/106803"], ["https://data.delijn.be/stops/503348", "https://data.delijn.be/stops/508424"], ["https://data.delijn.be/stops/400926", "https://data.delijn.be/stops/400935"], ["https://data.delijn.be/stops/404857", "https://data.delijn.be/stops/404913"], ["https://data.delijn.be/stops/502582", "https://data.delijn.be/stops/507582"], ["https://data.delijn.be/stops/501541", "https://data.delijn.be/stops/505835"], ["https://data.delijn.be/stops/200751", "https://data.delijn.be/stops/208318"], ["https://data.delijn.be/stops/507562", "https://data.delijn.be/stops/507563"], ["https://data.delijn.be/stops/307047", "https://data.delijn.be/stops/307780"], ["https://data.delijn.be/stops/202399", "https://data.delijn.be/stops/209491"], ["https://data.delijn.be/stops/104106", "https://data.delijn.be/stops/107825"], ["https://data.delijn.be/stops/405124", "https://data.delijn.be/stops/409285"], ["https://data.delijn.be/stops/409079", "https://data.delijn.be/stops/409139"], ["https://data.delijn.be/stops/301651", "https://data.delijn.be/stops/301653"], ["https://data.delijn.be/stops/107210", "https://data.delijn.be/stops/107212"], ["https://data.delijn.be/stops/401350", "https://data.delijn.be/stops/401363"], ["https://data.delijn.be/stops/504557", "https://data.delijn.be/stops/504564"], ["https://data.delijn.be/stops/101398", "https://data.delijn.be/stops/106940"], ["https://data.delijn.be/stops/102481", "https://data.delijn.be/stops/102484"], ["https://data.delijn.be/stops/205993", "https://data.delijn.be/stops/209197"], ["https://data.delijn.be/stops/503207", "https://data.delijn.be/stops/507738"], ["https://data.delijn.be/stops/504756", "https://data.delijn.be/stops/508873"], ["https://data.delijn.be/stops/109119", "https://data.delijn.be/stops/109121"], ["https://data.delijn.be/stops/301481", "https://data.delijn.be/stops/301496"], ["https://data.delijn.be/stops/301096", "https://data.delijn.be/stops/303240"], ["https://data.delijn.be/stops/202128", "https://data.delijn.be/stops/202581"], ["https://data.delijn.be/stops/408961", "https://data.delijn.be/stops/408969"], ["https://data.delijn.be/stops/302743", "https://data.delijn.be/stops/305551"], ["https://data.delijn.be/stops/101320", "https://data.delijn.be/stops/104112"], ["https://data.delijn.be/stops/501368", "https://data.delijn.be/stops/506103"], ["https://data.delijn.be/stops/405147", "https://data.delijn.be/stops/405202"], ["https://data.delijn.be/stops/504835", "https://data.delijn.be/stops/505989"], ["https://data.delijn.be/stops/407214", "https://data.delijn.be/stops/410143"], ["https://data.delijn.be/stops/107606", "https://data.delijn.be/stops/406792"], ["https://data.delijn.be/stops/402104", "https://data.delijn.be/stops/402215"], ["https://data.delijn.be/stops/505709", "https://data.delijn.be/stops/509147"], ["https://data.delijn.be/stops/402210", "https://data.delijn.be/stops/405562"], ["https://data.delijn.be/stops/409794", "https://data.delijn.be/stops/409795"], ["https://data.delijn.be/stops/208194", "https://data.delijn.be/stops/209142"], ["https://data.delijn.be/stops/201356", "https://data.delijn.be/stops/209726"], ["https://data.delijn.be/stops/202967", "https://data.delijn.be/stops/204063"], ["https://data.delijn.be/stops/400790", "https://data.delijn.be/stops/400976"], ["https://data.delijn.be/stops/302657", "https://data.delijn.be/stops/302658"], ["https://data.delijn.be/stops/503380", "https://data.delijn.be/stops/503469"], ["https://data.delijn.be/stops/206441", "https://data.delijn.be/stops/207442"], ["https://data.delijn.be/stops/303468", "https://data.delijn.be/stops/304823"], ["https://data.delijn.be/stops/204298", "https://data.delijn.be/stops/204552"], ["https://data.delijn.be/stops/203427", "https://data.delijn.be/stops/203466"], ["https://data.delijn.be/stops/208445", "https://data.delijn.be/stops/209446"], ["https://data.delijn.be/stops/206466", "https://data.delijn.be/stops/207467"], ["https://data.delijn.be/stops/403345", "https://data.delijn.be/stops/403480"], ["https://data.delijn.be/stops/402953", "https://data.delijn.be/stops/405503"], ["https://data.delijn.be/stops/405853", "https://data.delijn.be/stops/409755"], ["https://data.delijn.be/stops/405557", "https://data.delijn.be/stops/408363"], ["https://data.delijn.be/stops/406211", "https://data.delijn.be/stops/406213"], ["https://data.delijn.be/stops/409621", "https://data.delijn.be/stops/409623"], ["https://data.delijn.be/stops/206031", "https://data.delijn.be/stops/207047"], ["https://data.delijn.be/stops/402715", "https://data.delijn.be/stops/301277"], ["https://data.delijn.be/stops/503412", "https://data.delijn.be/stops/508380"], ["https://data.delijn.be/stops/206021", "https://data.delijn.be/stops/207022"], ["https://data.delijn.be/stops/206629", "https://data.delijn.be/stops/209572"], ["https://data.delijn.be/stops/201167", "https://data.delijn.be/stops/203619"], ["https://data.delijn.be/stops/204753", "https://data.delijn.be/stops/205106"], ["https://data.delijn.be/stops/503364", "https://data.delijn.be/stops/509938"], ["https://data.delijn.be/stops/206028", "https://data.delijn.be/stops/207268"], ["https://data.delijn.be/stops/104462", "https://data.delijn.be/stops/107955"], ["https://data.delijn.be/stops/305389", "https://data.delijn.be/stops/305390"], ["https://data.delijn.be/stops/108368", "https://data.delijn.be/stops/304920"], ["https://data.delijn.be/stops/408645", "https://data.delijn.be/stops/408660"], ["https://data.delijn.be/stops/105131", "https://data.delijn.be/stops/108804"], ["https://data.delijn.be/stops/300204", "https://data.delijn.be/stops/306743"], ["https://data.delijn.be/stops/301830", "https://data.delijn.be/stops/305872"], ["https://data.delijn.be/stops/303587", "https://data.delijn.be/stops/305221"], ["https://data.delijn.be/stops/206942", "https://data.delijn.be/stops/209099"], ["https://data.delijn.be/stops/503284", "https://data.delijn.be/stops/508285"], ["https://data.delijn.be/stops/305751", "https://data.delijn.be/stops/306333"], ["https://data.delijn.be/stops/204468", "https://data.delijn.be/stops/204781"], ["https://data.delijn.be/stops/206907", "https://data.delijn.be/stops/207906"], ["https://data.delijn.be/stops/405703", "https://data.delijn.be/stops/405714"], ["https://data.delijn.be/stops/406160", "https://data.delijn.be/stops/409409"], ["https://data.delijn.be/stops/107451", "https://data.delijn.be/stops/109754"], ["https://data.delijn.be/stops/208398", "https://data.delijn.be/stops/209279"], ["https://data.delijn.be/stops/102985", "https://data.delijn.be/stops/103105"], ["https://data.delijn.be/stops/102738", "https://data.delijn.be/stops/102739"], ["https://data.delijn.be/stops/401007", "https://data.delijn.be/stops/401086"], ["https://data.delijn.be/stops/400377", "https://data.delijn.be/stops/401587"], ["https://data.delijn.be/stops/406080", "https://data.delijn.be/stops/406087"], ["https://data.delijn.be/stops/404128", "https://data.delijn.be/stops/408555"], ["https://data.delijn.be/stops/101928", "https://data.delijn.be/stops/108193"], ["https://data.delijn.be/stops/406292", "https://data.delijn.be/stops/409289"], ["https://data.delijn.be/stops/300475", "https://data.delijn.be/stops/301574"], ["https://data.delijn.be/stops/305869", "https://data.delijn.be/stops/306826"], ["https://data.delijn.be/stops/402988", "https://data.delijn.be/stops/410052"], ["https://data.delijn.be/stops/501373", "https://data.delijn.be/stops/501497"], ["https://data.delijn.be/stops/103640", "https://data.delijn.be/stops/105455"], ["https://data.delijn.be/stops/402248", "https://data.delijn.be/stops/402483"], ["https://data.delijn.be/stops/205120", "https://data.delijn.be/stops/214005"], ["https://data.delijn.be/stops/204427", "https://data.delijn.be/stops/205441"], ["https://data.delijn.be/stops/102619", "https://data.delijn.be/stops/108208"], ["https://data.delijn.be/stops/401394", "https://data.delijn.be/stops/401460"], ["https://data.delijn.be/stops/108178", "https://data.delijn.be/stops/108182"], ["https://data.delijn.be/stops/108692", "https://data.delijn.be/stops/108812"], ["https://data.delijn.be/stops/200182", "https://data.delijn.be/stops/200184"], ["https://data.delijn.be/stops/408444", "https://data.delijn.be/stops/410151"], ["https://data.delijn.be/stops/501067", "https://data.delijn.be/stops/501736"], ["https://data.delijn.be/stops/408249", "https://data.delijn.be/stops/308291"], ["https://data.delijn.be/stops/307926", "https://data.delijn.be/stops/307927"], ["https://data.delijn.be/stops/104988", "https://data.delijn.be/stops/109693"], ["https://data.delijn.be/stops/206550", "https://data.delijn.be/stops/209744"], ["https://data.delijn.be/stops/101226", "https://data.delijn.be/stops/107807"], ["https://data.delijn.be/stops/308013", "https://data.delijn.be/stops/308015"], ["https://data.delijn.be/stops/201947", "https://data.delijn.be/stops/203453"], ["https://data.delijn.be/stops/106868", "https://data.delijn.be/stops/106869"], ["https://data.delijn.be/stops/307938", "https://data.delijn.be/stops/307939"], ["https://data.delijn.be/stops/201095", "https://data.delijn.be/stops/202132"], ["https://data.delijn.be/stops/208354", "https://data.delijn.be/stops/209354"], ["https://data.delijn.be/stops/303001", "https://data.delijn.be/stops/308661"], ["https://data.delijn.be/stops/505239", "https://data.delijn.be/stops/505935"], ["https://data.delijn.be/stops/502257", "https://data.delijn.be/stops/502920"], ["https://data.delijn.be/stops/300578", "https://data.delijn.be/stops/302955"], ["https://data.delijn.be/stops/104106", "https://data.delijn.be/stops/104107"], ["https://data.delijn.be/stops/203082", "https://data.delijn.be/stops/203083"], ["https://data.delijn.be/stops/208494", "https://data.delijn.be/stops/209493"], ["https://data.delijn.be/stops/503060", "https://data.delijn.be/stops/503065"], ["https://data.delijn.be/stops/302357", "https://data.delijn.be/stops/302750"], ["https://data.delijn.be/stops/300633", "https://data.delijn.be/stops/307222"], ["https://data.delijn.be/stops/507398", "https://data.delijn.be/stops/507402"], ["https://data.delijn.be/stops/301529", "https://data.delijn.be/stops/308082"], ["https://data.delijn.be/stops/203794", "https://data.delijn.be/stops/502759"], ["https://data.delijn.be/stops/105133", "https://data.delijn.be/stops/105134"], ["https://data.delijn.be/stops/103143", "https://data.delijn.be/stops/103145"], ["https://data.delijn.be/stops/200257", "https://data.delijn.be/stops/202564"], ["https://data.delijn.be/stops/506385", "https://data.delijn.be/stops/506479"], ["https://data.delijn.be/stops/503155", "https://data.delijn.be/stops/503376"], ["https://data.delijn.be/stops/305740", "https://data.delijn.be/stops/305741"], ["https://data.delijn.be/stops/103327", "https://data.delijn.be/stops/105102"], ["https://data.delijn.be/stops/301796", "https://data.delijn.be/stops/301802"], ["https://data.delijn.be/stops/308474", "https://data.delijn.be/stops/308489"], ["https://data.delijn.be/stops/500943", "https://data.delijn.be/stops/503893"], ["https://data.delijn.be/stops/207068", "https://data.delijn.be/stops/207415"], ["https://data.delijn.be/stops/109249", "https://data.delijn.be/stops/109252"], ["https://data.delijn.be/stops/300347", "https://data.delijn.be/stops/300362"], ["https://data.delijn.be/stops/301742", "https://data.delijn.be/stops/303704"], ["https://data.delijn.be/stops/404437", "https://data.delijn.be/stops/404485"], ["https://data.delijn.be/stops/106891", "https://data.delijn.be/stops/106892"], ["https://data.delijn.be/stops/503407", "https://data.delijn.be/stops/508410"], ["https://data.delijn.be/stops/405895", "https://data.delijn.be/stops/408245"], ["https://data.delijn.be/stops/104804", "https://data.delijn.be/stops/109112"], ["https://data.delijn.be/stops/202936", "https://data.delijn.be/stops/203816"], ["https://data.delijn.be/stops/403151", "https://data.delijn.be/stops/403154"], ["https://data.delijn.be/stops/502682", "https://data.delijn.be/stops/509829"], ["https://data.delijn.be/stops/401836", "https://data.delijn.be/stops/406016"], ["https://data.delijn.be/stops/103532", "https://data.delijn.be/stops/109630"], ["https://data.delijn.be/stops/204778", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/401268", "https://data.delijn.be/stops/401381"], ["https://data.delijn.be/stops/208803", "https://data.delijn.be/stops/209430"], ["https://data.delijn.be/stops/101680", "https://data.delijn.be/stops/102230"], ["https://data.delijn.be/stops/409470", "https://data.delijn.be/stops/409471"], ["https://data.delijn.be/stops/503920", "https://data.delijn.be/stops/508920"], ["https://data.delijn.be/stops/202593", "https://data.delijn.be/stops/210023"], ["https://data.delijn.be/stops/305403", "https://data.delijn.be/stops/305463"], ["https://data.delijn.be/stops/301512", "https://data.delijn.be/stops/301513"], ["https://data.delijn.be/stops/204516", "https://data.delijn.be/stops/205515"], ["https://data.delijn.be/stops/505198", "https://data.delijn.be/stops/505217"], ["https://data.delijn.be/stops/302530", "https://data.delijn.be/stops/302607"], ["https://data.delijn.be/stops/301104", "https://data.delijn.be/stops/302017"], ["https://data.delijn.be/stops/210053", "https://data.delijn.be/stops/211054"], ["https://data.delijn.be/stops/200913", "https://data.delijn.be/stops/200949"], ["https://data.delijn.be/stops/202465", "https://data.delijn.be/stops/203816"], ["https://data.delijn.be/stops/200389", "https://data.delijn.be/stops/201570"], ["https://data.delijn.be/stops/502060", "https://data.delijn.be/stops/502071"], ["https://data.delijn.be/stops/501027", "https://data.delijn.be/stops/501448"], ["https://data.delijn.be/stops/305753", "https://data.delijn.be/stops/306331"], ["https://data.delijn.be/stops/505201", "https://data.delijn.be/stops/508148"], ["https://data.delijn.be/stops/302504", "https://data.delijn.be/stops/302514"], ["https://data.delijn.be/stops/503787", "https://data.delijn.be/stops/508790"], ["https://data.delijn.be/stops/108810", "https://data.delijn.be/stops/109733"], ["https://data.delijn.be/stops/102962", "https://data.delijn.be/stops/109278"], ["https://data.delijn.be/stops/406776", "https://data.delijn.be/stops/406777"], ["https://data.delijn.be/stops/103205", "https://data.delijn.be/stops/103206"], ["https://data.delijn.be/stops/503717", "https://data.delijn.be/stops/503718"], ["https://data.delijn.be/stops/202677", "https://data.delijn.be/stops/203678"], ["https://data.delijn.be/stops/503509", "https://data.delijn.be/stops/505230"], ["https://data.delijn.be/stops/401856", "https://data.delijn.be/stops/406347"], ["https://data.delijn.be/stops/208619", "https://data.delijn.be/stops/209084"], ["https://data.delijn.be/stops/104431", "https://data.delijn.be/stops/106788"], ["https://data.delijn.be/stops/408418", "https://data.delijn.be/stops/408419"], ["https://data.delijn.be/stops/504579", "https://data.delijn.be/stops/504689"], ["https://data.delijn.be/stops/400792", "https://data.delijn.be/stops/400793"], ["https://data.delijn.be/stops/102723", "https://data.delijn.be/stops/102724"], ["https://data.delijn.be/stops/202952", "https://data.delijn.be/stops/203952"], ["https://data.delijn.be/stops/302493", "https://data.delijn.be/stops/302497"], ["https://data.delijn.be/stops/301976", "https://data.delijn.be/stops/302920"], ["https://data.delijn.be/stops/102590", "https://data.delijn.be/stops/102745"], ["https://data.delijn.be/stops/301377", "https://data.delijn.be/stops/306138"], ["https://data.delijn.be/stops/400226", "https://data.delijn.be/stops/400230"], ["https://data.delijn.be/stops/304546", "https://data.delijn.be/stops/304550"], ["https://data.delijn.be/stops/505245", "https://data.delijn.be/stops/505780"], ["https://data.delijn.be/stops/109454", "https://data.delijn.be/stops/109555"], ["https://data.delijn.be/stops/402140", "https://data.delijn.be/stops/402396"], ["https://data.delijn.be/stops/105002", "https://data.delijn.be/stops/105119"], ["https://data.delijn.be/stops/402307", "https://data.delijn.be/stops/402309"], ["https://data.delijn.be/stops/307246", "https://data.delijn.be/stops/307249"], ["https://data.delijn.be/stops/503425", "https://data.delijn.be/stops/508431"], ["https://data.delijn.be/stops/301181", "https://data.delijn.be/stops/301189"], ["https://data.delijn.be/stops/108273", "https://data.delijn.be/stops/109360"], ["https://data.delijn.be/stops/302743", "https://data.delijn.be/stops/302744"], ["https://data.delijn.be/stops/302104", "https://data.delijn.be/stops/302276"], ["https://data.delijn.be/stops/505397", "https://data.delijn.be/stops/506022"], ["https://data.delijn.be/stops/206843", "https://data.delijn.be/stops/304649"], ["https://data.delijn.be/stops/502543", "https://data.delijn.be/stops/507667"], ["https://data.delijn.be/stops/503304", "https://data.delijn.be/stops/505990"], ["https://data.delijn.be/stops/504294", "https://data.delijn.be/stops/504319"], ["https://data.delijn.be/stops/209356", "https://data.delijn.be/stops/209357"], ["https://data.delijn.be/stops/209665", "https://data.delijn.be/stops/209680"], ["https://data.delijn.be/stops/503664", "https://data.delijn.be/stops/505959"], ["https://data.delijn.be/stops/308631", "https://data.delijn.be/stops/308632"], ["https://data.delijn.be/stops/502009", "https://data.delijn.be/stops/507005"], ["https://data.delijn.be/stops/106574", "https://data.delijn.be/stops/106575"], ["https://data.delijn.be/stops/302904", "https://data.delijn.be/stops/302913"], ["https://data.delijn.be/stops/509621", "https://data.delijn.be/stops/509624"], ["https://data.delijn.be/stops/204593", "https://data.delijn.be/stops/205167"], ["https://data.delijn.be/stops/205046", "https://data.delijn.be/stops/205047"], ["https://data.delijn.be/stops/400251", "https://data.delijn.be/stops/400422"], ["https://data.delijn.be/stops/203507", "https://data.delijn.be/stops/203508"], ["https://data.delijn.be/stops/308510", "https://data.delijn.be/stops/308511"], ["https://data.delijn.be/stops/102930", "https://data.delijn.be/stops/103520"], ["https://data.delijn.be/stops/105065", "https://data.delijn.be/stops/105105"], ["https://data.delijn.be/stops/106105", "https://data.delijn.be/stops/109373"], ["https://data.delijn.be/stops/205210", "https://data.delijn.be/stops/205450"], ["https://data.delijn.be/stops/405049", "https://data.delijn.be/stops/405066"], ["https://data.delijn.be/stops/305707", "https://data.delijn.be/stops/307926"], ["https://data.delijn.be/stops/509175", "https://data.delijn.be/stops/509192"], ["https://data.delijn.be/stops/501772", "https://data.delijn.be/stops/509897"], ["https://data.delijn.be/stops/206721", "https://data.delijn.be/stops/207618"], ["https://data.delijn.be/stops/408208", "https://data.delijn.be/stops/408312"], ["https://data.delijn.be/stops/506429", "https://data.delijn.be/stops/506456"], ["https://data.delijn.be/stops/102323", "https://data.delijn.be/stops/105334"], ["https://data.delijn.be/stops/303101", "https://data.delijn.be/stops/303114"], ["https://data.delijn.be/stops/200934", "https://data.delijn.be/stops/201694"], ["https://data.delijn.be/stops/305916", "https://data.delijn.be/stops/305918"], ["https://data.delijn.be/stops/203406", "https://data.delijn.be/stops/210405"], ["https://data.delijn.be/stops/307744", "https://data.delijn.be/stops/307745"], ["https://data.delijn.be/stops/504734", "https://data.delijn.be/stops/506370"], ["https://data.delijn.be/stops/400859", "https://data.delijn.be/stops/400874"], ["https://data.delijn.be/stops/201673", "https://data.delijn.be/stops/208662"], ["https://data.delijn.be/stops/106459", "https://data.delijn.be/stops/109558"], ["https://data.delijn.be/stops/304446", "https://data.delijn.be/stops/307697"], ["https://data.delijn.be/stops/102172", "https://data.delijn.be/stops/104051"], ["https://data.delijn.be/stops/104609", "https://data.delijn.be/stops/105825"], ["https://data.delijn.be/stops/200248", "https://data.delijn.be/stops/200576"], ["https://data.delijn.be/stops/104098", "https://data.delijn.be/stops/107860"], ["https://data.delijn.be/stops/301764", "https://data.delijn.be/stops/301774"], ["https://data.delijn.be/stops/300457", "https://data.delijn.be/stops/304979"], ["https://data.delijn.be/stops/107202", "https://data.delijn.be/stops/107611"], ["https://data.delijn.be/stops/200092", "https://data.delijn.be/stops/201060"], ["https://data.delijn.be/stops/502411", "https://data.delijn.be/stops/507588"], ["https://data.delijn.be/stops/109729", "https://data.delijn.be/stops/401957"], ["https://data.delijn.be/stops/503468", "https://data.delijn.be/stops/508468"], ["https://data.delijn.be/stops/200182", "https://data.delijn.be/stops/210128"], ["https://data.delijn.be/stops/302166", "https://data.delijn.be/stops/303629"], ["https://data.delijn.be/stops/303079", "https://data.delijn.be/stops/303105"], ["https://data.delijn.be/stops/406404", "https://data.delijn.be/stops/407725"], ["https://data.delijn.be/stops/305105", "https://data.delijn.be/stops/305107"], ["https://data.delijn.be/stops/101597", "https://data.delijn.be/stops/103084"], ["https://data.delijn.be/stops/502482", "https://data.delijn.be/stops/507487"], ["https://data.delijn.be/stops/303960", "https://data.delijn.be/stops/306099"], ["https://data.delijn.be/stops/205083", "https://data.delijn.be/stops/205084"], ["https://data.delijn.be/stops/102595", "https://data.delijn.be/stops/105500"], ["https://data.delijn.be/stops/103112", "https://data.delijn.be/stops/105560"], ["https://data.delijn.be/stops/201202", "https://data.delijn.be/stops/202935"], ["https://data.delijn.be/stops/505097", "https://data.delijn.be/stops/505125"], ["https://data.delijn.be/stops/301469", "https://data.delijn.be/stops/308077"], ["https://data.delijn.be/stops/307314", "https://data.delijn.be/stops/307316"], ["https://data.delijn.be/stops/206357", "https://data.delijn.be/stops/207348"], ["https://data.delijn.be/stops/503528", "https://data.delijn.be/stops/504777"], ["https://data.delijn.be/stops/103245", "https://data.delijn.be/stops/107705"], ["https://data.delijn.be/stops/509153", "https://data.delijn.be/stops/509588"], ["https://data.delijn.be/stops/109303", "https://data.delijn.be/stops/109331"], ["https://data.delijn.be/stops/200249", "https://data.delijn.be/stops/210131"], ["https://data.delijn.be/stops/104514", "https://data.delijn.be/stops/104515"], ["https://data.delijn.be/stops/102205", "https://data.delijn.be/stops/105365"], ["https://data.delijn.be/stops/204083", "https://data.delijn.be/stops/204409"], ["https://data.delijn.be/stops/303645", "https://data.delijn.be/stops/305503"], ["https://data.delijn.be/stops/407678", "https://data.delijn.be/stops/408699"], ["https://data.delijn.be/stops/302498", "https://data.delijn.be/stops/307037"], ["https://data.delijn.be/stops/208485", "https://data.delijn.be/stops/209485"], ["https://data.delijn.be/stops/201171", "https://data.delijn.be/stops/210119"], ["https://data.delijn.be/stops/501741", "https://data.delijn.be/stops/504734"], ["https://data.delijn.be/stops/105723", "https://data.delijn.be/stops/106563"], ["https://data.delijn.be/stops/409041", "https://data.delijn.be/stops/409044"], ["https://data.delijn.be/stops/508788", "https://data.delijn.be/stops/508789"], ["https://data.delijn.be/stops/301743", "https://data.delijn.be/stops/301795"], ["https://data.delijn.be/stops/206881", "https://data.delijn.be/stops/207915"], ["https://data.delijn.be/stops/102937", "https://data.delijn.be/stops/102986"], ["https://data.delijn.be/stops/101670", "https://data.delijn.be/stops/105760"], ["https://data.delijn.be/stops/507176", "https://data.delijn.be/stops/508066"], ["https://data.delijn.be/stops/402511", "https://data.delijn.be/stops/402515"], ["https://data.delijn.be/stops/109627", "https://data.delijn.be/stops/109628"], ["https://data.delijn.be/stops/107050", "https://data.delijn.be/stops/108465"], ["https://data.delijn.be/stops/103537", "https://data.delijn.be/stops/103538"], ["https://data.delijn.be/stops/304641", "https://data.delijn.be/stops/304642"], ["https://data.delijn.be/stops/505922", "https://data.delijn.be/stops/507175"], ["https://data.delijn.be/stops/402816", "https://data.delijn.be/stops/402817"], ["https://data.delijn.be/stops/106970", "https://data.delijn.be/stops/107634"], ["https://data.delijn.be/stops/209707", "https://data.delijn.be/stops/209956"], ["https://data.delijn.be/stops/202495", "https://data.delijn.be/stops/203172"], ["https://data.delijn.be/stops/401092", "https://data.delijn.be/stops/401107"], ["https://data.delijn.be/stops/202641", "https://data.delijn.be/stops/203578"], ["https://data.delijn.be/stops/108907", "https://data.delijn.be/stops/109396"], ["https://data.delijn.be/stops/107855", "https://data.delijn.be/stops/107865"], ["https://data.delijn.be/stops/503057", "https://data.delijn.be/stops/508053"], ["https://data.delijn.be/stops/507407", "https://data.delijn.be/stops/507725"], ["https://data.delijn.be/stops/504221", "https://data.delijn.be/stops/509221"], ["https://data.delijn.be/stops/501059", "https://data.delijn.be/stops/506059"], ["https://data.delijn.be/stops/507796", "https://data.delijn.be/stops/508319"], ["https://data.delijn.be/stops/306368", "https://data.delijn.be/stops/307591"], ["https://data.delijn.be/stops/406655", "https://data.delijn.be/stops/406692"], ["https://data.delijn.be/stops/406242", "https://data.delijn.be/stops/408416"], ["https://data.delijn.be/stops/303818", "https://data.delijn.be/stops/303823"], ["https://data.delijn.be/stops/206799", "https://data.delijn.be/stops/208622"], ["https://data.delijn.be/stops/304931", "https://data.delijn.be/stops/305225"], ["https://data.delijn.be/stops/206149", "https://data.delijn.be/stops/206908"], ["https://data.delijn.be/stops/503417", "https://data.delijn.be/stops/508417"], ["https://data.delijn.be/stops/103729", "https://data.delijn.be/stops/108614"], ["https://data.delijn.be/stops/105139", "https://data.delijn.be/stops/305825"], ["https://data.delijn.be/stops/403980", "https://data.delijn.be/stops/403981"], ["https://data.delijn.be/stops/405164", "https://data.delijn.be/stops/405165"], ["https://data.delijn.be/stops/300092", "https://data.delijn.be/stops/306843"], ["https://data.delijn.be/stops/201314", "https://data.delijn.be/stops/205920"], ["https://data.delijn.be/stops/304283", "https://data.delijn.be/stops/304284"], ["https://data.delijn.be/stops/407982", "https://data.delijn.be/stops/408121"], ["https://data.delijn.be/stops/300695", "https://data.delijn.be/stops/306937"], ["https://data.delijn.be/stops/503302", "https://data.delijn.be/stops/508307"], ["https://data.delijn.be/stops/306771", "https://data.delijn.be/stops/308112"], ["https://data.delijn.be/stops/503594", "https://data.delijn.be/stops/503598"], ["https://data.delijn.be/stops/106102", "https://data.delijn.be/stops/106103"], ["https://data.delijn.be/stops/506211", "https://data.delijn.be/stops/506223"], ["https://data.delijn.be/stops/303580", "https://data.delijn.be/stops/305910"], ["https://data.delijn.be/stops/101230", "https://data.delijn.be/stops/104161"], ["https://data.delijn.be/stops/507220", "https://data.delijn.be/stops/509796"], ["https://data.delijn.be/stops/304220", "https://data.delijn.be/stops/304222"], ["https://data.delijn.be/stops/201160", "https://data.delijn.be/stops/201310"], ["https://data.delijn.be/stops/407163", "https://data.delijn.be/stops/409876"], ["https://data.delijn.be/stops/507748", "https://data.delijn.be/stops/508679"], ["https://data.delijn.be/stops/501348", "https://data.delijn.be/stops/506348"], ["https://data.delijn.be/stops/302604", "https://data.delijn.be/stops/308926"], ["https://data.delijn.be/stops/203099", "https://data.delijn.be/stops/203259"], ["https://data.delijn.be/stops/404702", "https://data.delijn.be/stops/404718"], ["https://data.delijn.be/stops/206860", "https://data.delijn.be/stops/207483"], ["https://data.delijn.be/stops/305165", "https://data.delijn.be/stops/306001"], ["https://data.delijn.be/stops/103855", "https://data.delijn.be/stops/106060"], ["https://data.delijn.be/stops/401766", "https://data.delijn.be/stops/406019"], ["https://data.delijn.be/stops/101200", "https://data.delijn.be/stops/105745"], ["https://data.delijn.be/stops/504618", "https://data.delijn.be/stops/505711"], ["https://data.delijn.be/stops/202709", "https://data.delijn.be/stops/203710"], ["https://data.delijn.be/stops/206806", "https://data.delijn.be/stops/207313"], ["https://data.delijn.be/stops/407574", "https://data.delijn.be/stops/408944"], ["https://data.delijn.be/stops/509196", "https://data.delijn.be/stops/509526"], ["https://data.delijn.be/stops/200138", "https://data.delijn.be/stops/201987"], ["https://data.delijn.be/stops/305150", "https://data.delijn.be/stops/308050"], ["https://data.delijn.be/stops/107448", "https://data.delijn.be/stops/109754"], ["https://data.delijn.be/stops/102659", "https://data.delijn.be/stops/108010"], ["https://data.delijn.be/stops/301141", "https://data.delijn.be/stops/306275"], ["https://data.delijn.be/stops/502247", "https://data.delijn.be/stops/507247"], ["https://data.delijn.be/stops/303073", "https://data.delijn.be/stops/303103"], ["https://data.delijn.be/stops/208391", "https://data.delijn.be/stops/209391"], ["https://data.delijn.be/stops/409058", "https://data.delijn.be/stops/410023"], ["https://data.delijn.be/stops/200769", "https://data.delijn.be/stops/200771"], ["https://data.delijn.be/stops/103959", "https://data.delijn.be/stops/109586"], ["https://data.delijn.be/stops/503484", "https://data.delijn.be/stops/504392"], ["https://data.delijn.be/stops/108791", "https://data.delijn.be/stops/109556"], ["https://data.delijn.be/stops/401585", "https://data.delijn.be/stops/401590"], ["https://data.delijn.be/stops/102207", "https://data.delijn.be/stops/102208"], ["https://data.delijn.be/stops/201676", "https://data.delijn.be/stops/202402"], ["https://data.delijn.be/stops/502061", "https://data.delijn.be/stops/505675"], ["https://data.delijn.be/stops/400656", "https://data.delijn.be/stops/400657"], ["https://data.delijn.be/stops/404859", "https://data.delijn.be/stops/404878"], ["https://data.delijn.be/stops/504458", "https://data.delijn.be/stops/509460"], ["https://data.delijn.be/stops/405383", "https://data.delijn.be/stops/405412"], ["https://data.delijn.be/stops/405158", "https://data.delijn.be/stops/405179"], ["https://data.delijn.be/stops/507475", "https://data.delijn.be/stops/508326"], ["https://data.delijn.be/stops/103169", "https://data.delijn.be/stops/109923"], ["https://data.delijn.be/stops/201001", "https://data.delijn.be/stops/202527"], ["https://data.delijn.be/stops/504253", "https://data.delijn.be/stops/509253"], ["https://data.delijn.be/stops/300325", "https://data.delijn.be/stops/300328"], ["https://data.delijn.be/stops/108322", "https://data.delijn.be/stops/108380"], ["https://data.delijn.be/stops/307026", "https://data.delijn.be/stops/307027"], ["https://data.delijn.be/stops/202853", "https://data.delijn.be/stops/203853"], ["https://data.delijn.be/stops/501206", "https://data.delijn.be/stops/501213"], ["https://data.delijn.be/stops/300936", "https://data.delijn.be/stops/300937"], ["https://data.delijn.be/stops/408875", "https://data.delijn.be/stops/408910"], ["https://data.delijn.be/stops/105596", "https://data.delijn.be/stops/105597"], ["https://data.delijn.be/stops/402000", "https://data.delijn.be/stops/410223"], ["https://data.delijn.be/stops/400609", "https://data.delijn.be/stops/408386"], ["https://data.delijn.be/stops/107078", "https://data.delijn.be/stops/107347"], ["https://data.delijn.be/stops/203648", "https://data.delijn.be/stops/210119"], ["https://data.delijn.be/stops/308743", "https://data.delijn.be/stops/308745"], ["https://data.delijn.be/stops/302299", "https://data.delijn.be/stops/306791"], ["https://data.delijn.be/stops/405040", "https://data.delijn.be/stops/405044"], ["https://data.delijn.be/stops/202276", "https://data.delijn.be/stops/211659"], ["https://data.delijn.be/stops/404496", "https://data.delijn.be/stops/404583"], ["https://data.delijn.be/stops/102848", "https://data.delijn.be/stops/103625"], ["https://data.delijn.be/stops/300808", "https://data.delijn.be/stops/304534"], ["https://data.delijn.be/stops/103689", "https://data.delijn.be/stops/107577"], ["https://data.delijn.be/stops/210127", "https://data.delijn.be/stops/211127"], ["https://data.delijn.be/stops/504581", "https://data.delijn.be/stops/509584"], ["https://data.delijn.be/stops/506147", "https://data.delijn.be/stops/506156"], ["https://data.delijn.be/stops/108437", "https://data.delijn.be/stops/108438"], ["https://data.delijn.be/stops/108362", "https://data.delijn.be/stops/108506"], ["https://data.delijn.be/stops/102431", "https://data.delijn.be/stops/102584"], ["https://data.delijn.be/stops/409044", "https://data.delijn.be/stops/409443"], ["https://data.delijn.be/stops/204045", "https://data.delijn.be/stops/205045"], ["https://data.delijn.be/stops/204723", "https://data.delijn.be/stops/214013"], ["https://data.delijn.be/stops/109199", "https://data.delijn.be/stops/109202"], ["https://data.delijn.be/stops/304483", "https://data.delijn.be/stops/304506"], ["https://data.delijn.be/stops/304317", "https://data.delijn.be/stops/305280"], ["https://data.delijn.be/stops/205161", "https://data.delijn.be/stops/206279"], ["https://data.delijn.be/stops/503612", "https://data.delijn.be/stops/508504"], ["https://data.delijn.be/stops/109188", "https://data.delijn.be/stops/403860"], ["https://data.delijn.be/stops/303327", "https://data.delijn.be/stops/306336"], ["https://data.delijn.be/stops/101700", "https://data.delijn.be/stops/103397"], ["https://data.delijn.be/stops/302420", "https://data.delijn.be/stops/302421"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/307008"], ["https://data.delijn.be/stops/402406", "https://data.delijn.be/stops/402413"], ["https://data.delijn.be/stops/103609", "https://data.delijn.be/stops/106192"], ["https://data.delijn.be/stops/407588", "https://data.delijn.be/stops/407616"], ["https://data.delijn.be/stops/206204", "https://data.delijn.be/stops/207204"], ["https://data.delijn.be/stops/505148", "https://data.delijn.be/stops/505721"], ["https://data.delijn.be/stops/200364", "https://data.delijn.be/stops/200985"], ["https://data.delijn.be/stops/503684", "https://data.delijn.be/stops/508689"], ["https://data.delijn.be/stops/503782", "https://data.delijn.be/stops/505272"], ["https://data.delijn.be/stops/307550", "https://data.delijn.be/stops/307557"], ["https://data.delijn.be/stops/504196", "https://data.delijn.be/stops/509196"], ["https://data.delijn.be/stops/405633", "https://data.delijn.be/stops/405635"], ["https://data.delijn.be/stops/503183", "https://data.delijn.be/stops/504810"], ["https://data.delijn.be/stops/400102", "https://data.delijn.be/stops/409119"], ["https://data.delijn.be/stops/404381", "https://data.delijn.be/stops/404383"], ["https://data.delijn.be/stops/302554", "https://data.delijn.be/stops/302555"], ["https://data.delijn.be/stops/406182", "https://data.delijn.be/stops/406203"], ["https://data.delijn.be/stops/407590", "https://data.delijn.be/stops/407617"], ["https://data.delijn.be/stops/206182", "https://data.delijn.be/stops/217006"], ["https://data.delijn.be/stops/402451", "https://data.delijn.be/stops/407495"], ["https://data.delijn.be/stops/501441", "https://data.delijn.be/stops/506441"], ["https://data.delijn.be/stops/207879", "https://data.delijn.be/stops/207905"], ["https://data.delijn.be/stops/203393", "https://data.delijn.be/stops/210122"], ["https://data.delijn.be/stops/308247", "https://data.delijn.be/stops/308250"], ["https://data.delijn.be/stops/207176", "https://data.delijn.be/stops/207519"], ["https://data.delijn.be/stops/504996", "https://data.delijn.be/stops/508119"], ["https://data.delijn.be/stops/407773", "https://data.delijn.be/stops/304362"], ["https://data.delijn.be/stops/209183", "https://data.delijn.be/stops/218019"], ["https://data.delijn.be/stops/301360", "https://data.delijn.be/stops/303835"], ["https://data.delijn.be/stops/504805", "https://data.delijn.be/stops/507814"], ["https://data.delijn.be/stops/402516", "https://data.delijn.be/stops/402523"], ["https://data.delijn.be/stops/304065", "https://data.delijn.be/stops/304112"], ["https://data.delijn.be/stops/102710", "https://data.delijn.be/stops/102762"], ["https://data.delijn.be/stops/306682", "https://data.delijn.be/stops/307879"], ["https://data.delijn.be/stops/302382", "https://data.delijn.be/stops/302386"], ["https://data.delijn.be/stops/403153", "https://data.delijn.be/stops/407634"], ["https://data.delijn.be/stops/406972", "https://data.delijn.be/stops/409483"], ["https://data.delijn.be/stops/101921", "https://data.delijn.be/stops/105667"], ["https://data.delijn.be/stops/404123", "https://data.delijn.be/stops/410281"], ["https://data.delijn.be/stops/106635", "https://data.delijn.be/stops/106636"], ["https://data.delijn.be/stops/508035", "https://data.delijn.be/stops/508274"], ["https://data.delijn.be/stops/505416", "https://data.delijn.be/stops/507768"], ["https://data.delijn.be/stops/303308", "https://data.delijn.be/stops/308921"], ["https://data.delijn.be/stops/501164", "https://data.delijn.be/stops/506114"], ["https://data.delijn.be/stops/304452", "https://data.delijn.be/stops/304461"], ["https://data.delijn.be/stops/106402", "https://data.delijn.be/stops/106403"], ["https://data.delijn.be/stops/303289", "https://data.delijn.be/stops/303301"], ["https://data.delijn.be/stops/505428", "https://data.delijn.be/stops/505830"], ["https://data.delijn.be/stops/401841", "https://data.delijn.be/stops/406031"], ["https://data.delijn.be/stops/302088", "https://data.delijn.be/stops/302098"], ["https://data.delijn.be/stops/300665", "https://data.delijn.be/stops/300676"], ["https://data.delijn.be/stops/503654", "https://data.delijn.be/stops/505794"], ["https://data.delijn.be/stops/302198", "https://data.delijn.be/stops/305458"], ["https://data.delijn.be/stops/507061", "https://data.delijn.be/stops/507068"], ["https://data.delijn.be/stops/502438", "https://data.delijn.be/stops/502613"], ["https://data.delijn.be/stops/201403", "https://data.delijn.be/stops/202983"], ["https://data.delijn.be/stops/200872", "https://data.delijn.be/stops/201116"], ["https://data.delijn.be/stops/206357", "https://data.delijn.be/stops/206916"], ["https://data.delijn.be/stops/103228", "https://data.delijn.be/stops/103596"], ["https://data.delijn.be/stops/308482", "https://data.delijn.be/stops/308536"], ["https://data.delijn.be/stops/101605", "https://data.delijn.be/stops/103930"], ["https://data.delijn.be/stops/202317", "https://data.delijn.be/stops/203317"], ["https://data.delijn.be/stops/108987", "https://data.delijn.be/stops/109089"], ["https://data.delijn.be/stops/208183", "https://data.delijn.be/stops/209183"], ["https://data.delijn.be/stops/403957", "https://data.delijn.be/stops/410025"], ["https://data.delijn.be/stops/400551", "https://data.delijn.be/stops/400563"], ["https://data.delijn.be/stops/304148", "https://data.delijn.be/stops/307763"], ["https://data.delijn.be/stops/302932", "https://data.delijn.be/stops/308438"], ["https://data.delijn.be/stops/501427", "https://data.delijn.be/stops/506431"], ["https://data.delijn.be/stops/301383", "https://data.delijn.be/stops/303795"], ["https://data.delijn.be/stops/304377", "https://data.delijn.be/stops/307401"], ["https://data.delijn.be/stops/407375", "https://data.delijn.be/stops/407598"], ["https://data.delijn.be/stops/402504", "https://data.delijn.be/stops/402956"], ["https://data.delijn.be/stops/402064", "https://data.delijn.be/stops/410059"], ["https://data.delijn.be/stops/404010", "https://data.delijn.be/stops/404014"], ["https://data.delijn.be/stops/400822", "https://data.delijn.be/stops/401908"], ["https://data.delijn.be/stops/104081", "https://data.delijn.be/stops/105120"], ["https://data.delijn.be/stops/107161", "https://data.delijn.be/stops/107558"], ["https://data.delijn.be/stops/308498", "https://data.delijn.be/stops/308538"], ["https://data.delijn.be/stops/106691", "https://data.delijn.be/stops/106693"], ["https://data.delijn.be/stops/208650", "https://data.delijn.be/stops/208651"], ["https://data.delijn.be/stops/208337", "https://data.delijn.be/stops/209337"], ["https://data.delijn.be/stops/505833", "https://data.delijn.be/stops/507560"], ["https://data.delijn.be/stops/503171", "https://data.delijn.be/stops/508999"], ["https://data.delijn.be/stops/407913", "https://data.delijn.be/stops/408053"], ["https://data.delijn.be/stops/503361", "https://data.delijn.be/stops/508419"], ["https://data.delijn.be/stops/410171", "https://data.delijn.be/stops/410183"], ["https://data.delijn.be/stops/404406", "https://data.delijn.be/stops/404420"], ["https://data.delijn.be/stops/200126", "https://data.delijn.be/stops/201126"], ["https://data.delijn.be/stops/500007", "https://data.delijn.be/stops/503065"], ["https://data.delijn.be/stops/101891", "https://data.delijn.be/stops/109569"], ["https://data.delijn.be/stops/206780", "https://data.delijn.be/stops/206940"], ["https://data.delijn.be/stops/504493", "https://data.delijn.be/stops/504744"], ["https://data.delijn.be/stops/405615", "https://data.delijn.be/stops/406577"], ["https://data.delijn.be/stops/201857", "https://data.delijn.be/stops/210035"], ["https://data.delijn.be/stops/508724", "https://data.delijn.be/stops/509976"], ["https://data.delijn.be/stops/208528", "https://data.delijn.be/stops/208533"], ["https://data.delijn.be/stops/503138", "https://data.delijn.be/stops/505933"], ["https://data.delijn.be/stops/207269", "https://data.delijn.be/stops/207880"], ["https://data.delijn.be/stops/302899", "https://data.delijn.be/stops/306096"], ["https://data.delijn.be/stops/204205", "https://data.delijn.be/stops/205235"], ["https://data.delijn.be/stops/404734", "https://data.delijn.be/stops/404834"], ["https://data.delijn.be/stops/109028", "https://data.delijn.be/stops/109029"], ["https://data.delijn.be/stops/308115", "https://data.delijn.be/stops/308820"], ["https://data.delijn.be/stops/201699", "https://data.delijn.be/stops/208643"], ["https://data.delijn.be/stops/509205", "https://data.delijn.be/stops/509206"], ["https://data.delijn.be/stops/204437", "https://data.delijn.be/stops/204742"], ["https://data.delijn.be/stops/303204", "https://data.delijn.be/stops/307953"], ["https://data.delijn.be/stops/405459", "https://data.delijn.be/stops/405462"], ["https://data.delijn.be/stops/300069", "https://data.delijn.be/stops/300070"], ["https://data.delijn.be/stops/408603", "https://data.delijn.be/stops/408707"], ["https://data.delijn.be/stops/208386", "https://data.delijn.be/stops/209386"], ["https://data.delijn.be/stops/504080", "https://data.delijn.be/stops/504537"], ["https://data.delijn.be/stops/307193", "https://data.delijn.be/stops/307194"], ["https://data.delijn.be/stops/304014", "https://data.delijn.be/stops/306278"], ["https://data.delijn.be/stops/202259", "https://data.delijn.be/stops/203258"], ["https://data.delijn.be/stops/202089", "https://data.delijn.be/stops/203089"], ["https://data.delijn.be/stops/401434", "https://data.delijn.be/stops/401497"], ["https://data.delijn.be/stops/102617", "https://data.delijn.be/stops/102632"], ["https://data.delijn.be/stops/104003", "https://data.delijn.be/stops/104004"], ["https://data.delijn.be/stops/201859", "https://data.delijn.be/stops/203396"], ["https://data.delijn.be/stops/506777", "https://data.delijn.be/stops/506781"], ["https://data.delijn.be/stops/102660", "https://data.delijn.be/stops/102792"], ["https://data.delijn.be/stops/400040", "https://data.delijn.be/stops/405497"], ["https://data.delijn.be/stops/206882", "https://data.delijn.be/stops/207731"], ["https://data.delijn.be/stops/501367", "https://data.delijn.be/stops/506102"], ["https://data.delijn.be/stops/400126", "https://data.delijn.be/stops/400128"], ["https://data.delijn.be/stops/401426", "https://data.delijn.be/stops/410290"], ["https://data.delijn.be/stops/404973", "https://data.delijn.be/stops/404974"], ["https://data.delijn.be/stops/401106", "https://data.delijn.be/stops/401107"], ["https://data.delijn.be/stops/210130", "https://data.delijn.be/stops/211129"], ["https://data.delijn.be/stops/501599", "https://data.delijn.be/stops/506644"], ["https://data.delijn.be/stops/203912", "https://data.delijn.be/stops/203929"], ["https://data.delijn.be/stops/202424", "https://data.delijn.be/stops/203275"], ["https://data.delijn.be/stops/504234", "https://data.delijn.be/stops/505926"], ["https://data.delijn.be/stops/503076", "https://data.delijn.be/stops/508070"], ["https://data.delijn.be/stops/304046", "https://data.delijn.be/stops/304811"], ["https://data.delijn.be/stops/300424", "https://data.delijn.be/stops/307409"], ["https://data.delijn.be/stops/200185", "https://data.delijn.be/stops/201049"], ["https://data.delijn.be/stops/505151", "https://data.delijn.be/stops/507209"], ["https://data.delijn.be/stops/305108", "https://data.delijn.be/stops/305115"], ["https://data.delijn.be/stops/505985", "https://data.delijn.be/stops/508479"], ["https://data.delijn.be/stops/302952", "https://data.delijn.be/stops/302999"], ["https://data.delijn.be/stops/504290", "https://data.delijn.be/stops/504532"], ["https://data.delijn.be/stops/200133", "https://data.delijn.be/stops/203451"], ["https://data.delijn.be/stops/201434", "https://data.delijn.be/stops/203543"], ["https://data.delijn.be/stops/207283", "https://data.delijn.be/stops/207396"], ["https://data.delijn.be/stops/305211", "https://data.delijn.be/stops/305212"], ["https://data.delijn.be/stops/406186", "https://data.delijn.be/stops/409397"], ["https://data.delijn.be/stops/106929", "https://data.delijn.be/stops/106931"], ["https://data.delijn.be/stops/204330", "https://data.delijn.be/stops/204502"], ["https://data.delijn.be/stops/410154", "https://data.delijn.be/stops/304719"], ["https://data.delijn.be/stops/206181", "https://data.delijn.be/stops/207957"], ["https://data.delijn.be/stops/506365", "https://data.delijn.be/stops/590412"], ["https://data.delijn.be/stops/507767", "https://data.delijn.be/stops/508032"], ["https://data.delijn.be/stops/406245", "https://data.delijn.be/stops/406259"], ["https://data.delijn.be/stops/206632", "https://data.delijn.be/stops/207632"], ["https://data.delijn.be/stops/101971", "https://data.delijn.be/stops/103045"], ["https://data.delijn.be/stops/503033", "https://data.delijn.be/stops/508372"], ["https://data.delijn.be/stops/301189", "https://data.delijn.be/stops/301255"], ["https://data.delijn.be/stops/107688", "https://data.delijn.be/stops/108705"], ["https://data.delijn.be/stops/404791", "https://data.delijn.be/stops/404825"], ["https://data.delijn.be/stops/203408", "https://data.delijn.be/stops/211032"], ["https://data.delijn.be/stops/407932", "https://data.delijn.be/stops/407933"], ["https://data.delijn.be/stops/501460", "https://data.delijn.be/stops/505781"], ["https://data.delijn.be/stops/403589", "https://data.delijn.be/stops/410011"], ["https://data.delijn.be/stops/402602", "https://data.delijn.be/stops/403647"], ["https://data.delijn.be/stops/502327", "https://data.delijn.be/stops/507328"], ["https://data.delijn.be/stops/503885", "https://data.delijn.be/stops/508885"], ["https://data.delijn.be/stops/306145", "https://data.delijn.be/stops/307941"], ["https://data.delijn.be/stops/304503", "https://data.delijn.be/stops/304520"], ["https://data.delijn.be/stops/501289", "https://data.delijn.be/stops/506205"], ["https://data.delijn.be/stops/202236", "https://data.delijn.be/stops/208890"], ["https://data.delijn.be/stops/401290", "https://data.delijn.be/stops/401309"], ["https://data.delijn.be/stops/303120", "https://data.delijn.be/stops/303226"], ["https://data.delijn.be/stops/103134", "https://data.delijn.be/stops/103140"], ["https://data.delijn.be/stops/210058", "https://data.delijn.be/stops/210059"], ["https://data.delijn.be/stops/406829", "https://data.delijn.be/stops/406897"], ["https://data.delijn.be/stops/101649", "https://data.delijn.be/stops/106332"], ["https://data.delijn.be/stops/103328", "https://data.delijn.be/stops/105099"], ["https://data.delijn.be/stops/501120", "https://data.delijn.be/stops/505836"], ["https://data.delijn.be/stops/106046", "https://data.delijn.be/stops/106048"], ["https://data.delijn.be/stops/301348", "https://data.delijn.be/stops/306129"], ["https://data.delijn.be/stops/503243", "https://data.delijn.be/stops/509762"], ["https://data.delijn.be/stops/400809", "https://data.delijn.be/stops/405269"], ["https://data.delijn.be/stops/305649", "https://data.delijn.be/stops/305653"], ["https://data.delijn.be/stops/206019", "https://data.delijn.be/stops/207019"], ["https://data.delijn.be/stops/403038", "https://data.delijn.be/stops/403163"], ["https://data.delijn.be/stops/202338", "https://data.delijn.be/stops/203331"], ["https://data.delijn.be/stops/102109", "https://data.delijn.be/stops/109801"], ["https://data.delijn.be/stops/201762", "https://data.delijn.be/stops/201765"], ["https://data.delijn.be/stops/302621", "https://data.delijn.be/stops/302636"], ["https://data.delijn.be/stops/500002", "https://data.delijn.be/stops/503663"], ["https://data.delijn.be/stops/105824", "https://data.delijn.be/stops/106299"], ["https://data.delijn.be/stops/206517", "https://data.delijn.be/stops/206597"], ["https://data.delijn.be/stops/200768", "https://data.delijn.be/stops/209248"], ["https://data.delijn.be/stops/400079", "https://data.delijn.be/stops/409099"], ["https://data.delijn.be/stops/104711", "https://data.delijn.be/stops/107078"], ["https://data.delijn.be/stops/503370", "https://data.delijn.be/stops/508370"], ["https://data.delijn.be/stops/103944", "https://data.delijn.be/stops/108892"], ["https://data.delijn.be/stops/404849", "https://data.delijn.be/stops/405586"], ["https://data.delijn.be/stops/503657", "https://data.delijn.be/stops/508657"], ["https://data.delijn.be/stops/106464", "https://data.delijn.be/stops/106466"], ["https://data.delijn.be/stops/306043", "https://data.delijn.be/stops/307093"], ["https://data.delijn.be/stops/303337", "https://data.delijn.be/stops/305120"], ["https://data.delijn.be/stops/508351", "https://data.delijn.be/stops/508930"], ["https://data.delijn.be/stops/101400", "https://data.delijn.be/stops/106529"], ["https://data.delijn.be/stops/409009", "https://data.delijn.be/stops/409881"], ["https://data.delijn.be/stops/505772", "https://data.delijn.be/stops/507357"], ["https://data.delijn.be/stops/206231", "https://data.delijn.be/stops/206232"], ["https://data.delijn.be/stops/409539", "https://data.delijn.be/stops/409541"], ["https://data.delijn.be/stops/104107", "https://data.delijn.be/stops/107825"], ["https://data.delijn.be/stops/402103", "https://data.delijn.be/stops/402270"], ["https://data.delijn.be/stops/205391", "https://data.delijn.be/stops/205392"], ["https://data.delijn.be/stops/103249", "https://data.delijn.be/stops/108325"], ["https://data.delijn.be/stops/101374", "https://data.delijn.be/stops/101399"], ["https://data.delijn.be/stops/102224", "https://data.delijn.be/stops/105529"], ["https://data.delijn.be/stops/301039", "https://data.delijn.be/stops/307808"], ["https://data.delijn.be/stops/502029", "https://data.delijn.be/stops/507037"], ["https://data.delijn.be/stops/106229", "https://data.delijn.be/stops/106324"], ["https://data.delijn.be/stops/308252", "https://data.delijn.be/stops/308292"], ["https://data.delijn.be/stops/202730", "https://data.delijn.be/stops/203047"], ["https://data.delijn.be/stops/201734", "https://data.delijn.be/stops/203056"], ["https://data.delijn.be/stops/109905", "https://data.delijn.be/stops/109906"], ["https://data.delijn.be/stops/403527", "https://data.delijn.be/stops/403531"], ["https://data.delijn.be/stops/200660", "https://data.delijn.be/stops/201660"], ["https://data.delijn.be/stops/207354", "https://data.delijn.be/stops/207914"], ["https://data.delijn.be/stops/206922", "https://data.delijn.be/stops/207214"], ["https://data.delijn.be/stops/302079", "https://data.delijn.be/stops/306989"], ["https://data.delijn.be/stops/407823", "https://data.delijn.be/stops/407824"], ["https://data.delijn.be/stops/205658", "https://data.delijn.be/stops/205659"], ["https://data.delijn.be/stops/201327", "https://data.delijn.be/stops/203201"], ["https://data.delijn.be/stops/102243", "https://data.delijn.be/stops/105934"], ["https://data.delijn.be/stops/404642", "https://data.delijn.be/stops/406926"], ["https://data.delijn.be/stops/208172", "https://data.delijn.be/stops/208173"], ["https://data.delijn.be/stops/502539", "https://data.delijn.be/stops/505695"], ["https://data.delijn.be/stops/302156", "https://data.delijn.be/stops/308099"], ["https://data.delijn.be/stops/304421", "https://data.delijn.be/stops/304428"], ["https://data.delijn.be/stops/207168", "https://data.delijn.be/stops/303401"], ["https://data.delijn.be/stops/408345", "https://data.delijn.be/stops/408355"], ["https://data.delijn.be/stops/505063", "https://data.delijn.be/stops/505070"], ["https://data.delijn.be/stops/302413", "https://data.delijn.be/stops/302414"], ["https://data.delijn.be/stops/208430", "https://data.delijn.be/stops/208802"], ["https://data.delijn.be/stops/206179", "https://data.delijn.be/stops/206180"], ["https://data.delijn.be/stops/108984", "https://data.delijn.be/stops/108986"], ["https://data.delijn.be/stops/505701", "https://data.delijn.be/stops/507712"], ["https://data.delijn.be/stops/401047", "https://data.delijn.be/stops/401132"], ["https://data.delijn.be/stops/503488", "https://data.delijn.be/stops/503989"], ["https://data.delijn.be/stops/507322", "https://data.delijn.be/stops/507326"], ["https://data.delijn.be/stops/101290", "https://data.delijn.be/stops/102846"], ["https://data.delijn.be/stops/502330", "https://data.delijn.be/stops/507331"], ["https://data.delijn.be/stops/502119", "https://data.delijn.be/stops/507627"], ["https://data.delijn.be/stops/502345", "https://data.delijn.be/stops/502346"], ["https://data.delijn.be/stops/101427", "https://data.delijn.be/stops/107301"], ["https://data.delijn.be/stops/503183", "https://data.delijn.be/stops/508196"], ["https://data.delijn.be/stops/303475", "https://data.delijn.be/stops/308133"], ["https://data.delijn.be/stops/501199", "https://data.delijn.be/stops/506199"], ["https://data.delijn.be/stops/109810", "https://data.delijn.be/stops/109815"], ["https://data.delijn.be/stops/105428", "https://data.delijn.be/stops/105433"], ["https://data.delijn.be/stops/209426", "https://data.delijn.be/stops/209431"], ["https://data.delijn.be/stops/300424", "https://data.delijn.be/stops/300430"], ["https://data.delijn.be/stops/403314", "https://data.delijn.be/stops/410360"], ["https://data.delijn.be/stops/401650", "https://data.delijn.be/stops/405401"], ["https://data.delijn.be/stops/409383", "https://data.delijn.be/stops/409388"], ["https://data.delijn.be/stops/402086", "https://data.delijn.be/stops/402202"], ["https://data.delijn.be/stops/206861", "https://data.delijn.be/stops/207459"], ["https://data.delijn.be/stops/405282", "https://data.delijn.be/stops/407703"], ["https://data.delijn.be/stops/308147", "https://data.delijn.be/stops/308176"], ["https://data.delijn.be/stops/201689", "https://data.delijn.be/stops/203997"], ["https://data.delijn.be/stops/200832", "https://data.delijn.be/stops/200837"], ["https://data.delijn.be/stops/502372", "https://data.delijn.be/stops/507375"], ["https://data.delijn.be/stops/202910", "https://data.delijn.be/stops/203910"], ["https://data.delijn.be/stops/504754", "https://data.delijn.be/stops/509754"], ["https://data.delijn.be/stops/104484", "https://data.delijn.be/stops/104486"], ["https://data.delijn.be/stops/203459", "https://data.delijn.be/stops/203750"], ["https://data.delijn.be/stops/301350", "https://data.delijn.be/stops/302005"], ["https://data.delijn.be/stops/502143", "https://data.delijn.be/stops/502576"], ["https://data.delijn.be/stops/301118", "https://data.delijn.be/stops/307991"], ["https://data.delijn.be/stops/406127", "https://data.delijn.be/stops/408922"], ["https://data.delijn.be/stops/504379", "https://data.delijn.be/stops/505972"], ["https://data.delijn.be/stops/504283", "https://data.delijn.be/stops/509280"], ["https://data.delijn.be/stops/200039", "https://data.delijn.be/stops/201910"], ["https://data.delijn.be/stops/407519", "https://data.delijn.be/stops/408404"], ["https://data.delijn.be/stops/404409", "https://data.delijn.be/stops/404415"], ["https://data.delijn.be/stops/501271", "https://data.delijn.be/stops/501302"], ["https://data.delijn.be/stops/204651", "https://data.delijn.be/stops/205261"], ["https://data.delijn.be/stops/300473", "https://data.delijn.be/stops/302699"], ["https://data.delijn.be/stops/404374", "https://data.delijn.be/stops/404376"], ["https://data.delijn.be/stops/405790", "https://data.delijn.be/stops/405791"], ["https://data.delijn.be/stops/503220", "https://data.delijn.be/stops/503223"], ["https://data.delijn.be/stops/506307", "https://data.delijn.be/stops/510002"], ["https://data.delijn.be/stops/104696", "https://data.delijn.be/stops/104776"], ["https://data.delijn.be/stops/201861", "https://data.delijn.be/stops/203274"], ["https://data.delijn.be/stops/408456", "https://data.delijn.be/stops/409418"], ["https://data.delijn.be/stops/101950", "https://data.delijn.be/stops/105750"], ["https://data.delijn.be/stops/302625", "https://data.delijn.be/stops/308114"], ["https://data.delijn.be/stops/503678", "https://data.delijn.be/stops/508013"], ["https://data.delijn.be/stops/300364", "https://data.delijn.be/stops/307737"], ["https://data.delijn.be/stops/108488", "https://data.delijn.be/stops/108489"], ["https://data.delijn.be/stops/209452", "https://data.delijn.be/stops/209698"], ["https://data.delijn.be/stops/403625", "https://data.delijn.be/stops/403662"], ["https://data.delijn.be/stops/304801", "https://data.delijn.be/stops/304809"], ["https://data.delijn.be/stops/400749", "https://data.delijn.be/stops/408448"], ["https://data.delijn.be/stops/504155", "https://data.delijn.be/stops/505372"], ["https://data.delijn.be/stops/301917", "https://data.delijn.be/stops/306747"], ["https://data.delijn.be/stops/501445", "https://data.delijn.be/stops/501492"], ["https://data.delijn.be/stops/204204", "https://data.delijn.be/stops/205204"], ["https://data.delijn.be/stops/404952", "https://data.delijn.be/stops/404955"], ["https://data.delijn.be/stops/104587", "https://data.delijn.be/stops/107819"], ["https://data.delijn.be/stops/101908", "https://data.delijn.be/stops/101913"], ["https://data.delijn.be/stops/307298", "https://data.delijn.be/stops/307301"], ["https://data.delijn.be/stops/405256", "https://data.delijn.be/stops/405257"], ["https://data.delijn.be/stops/504809", "https://data.delijn.be/stops/508453"], ["https://data.delijn.be/stops/204688", "https://data.delijn.be/stops/205665"], ["https://data.delijn.be/stops/102293", "https://data.delijn.be/stops/102449"], ["https://data.delijn.be/stops/306905", "https://data.delijn.be/stops/306930"], ["https://data.delijn.be/stops/105267", "https://data.delijn.be/stops/105283"], ["https://data.delijn.be/stops/406456", "https://data.delijn.be/stops/406457"], ["https://data.delijn.be/stops/204131", "https://data.delijn.be/stops/206635"], ["https://data.delijn.be/stops/308526", "https://data.delijn.be/stops/308527"], ["https://data.delijn.be/stops/508212", "https://data.delijn.be/stops/508408"], ["https://data.delijn.be/stops/108965", "https://data.delijn.be/stops/109150"], ["https://data.delijn.be/stops/104843", "https://data.delijn.be/stops/109962"], ["https://data.delijn.be/stops/400520", "https://data.delijn.be/stops/400571"], ["https://data.delijn.be/stops/206690", "https://data.delijn.be/stops/207690"], ["https://data.delijn.be/stops/101075", "https://data.delijn.be/stops/106050"], ["https://data.delijn.be/stops/102288", "https://data.delijn.be/stops/109651"], ["https://data.delijn.be/stops/202027", "https://data.delijn.be/stops/202349"], ["https://data.delijn.be/stops/504608", "https://data.delijn.be/stops/509608"], ["https://data.delijn.be/stops/300999", "https://data.delijn.be/stops/301080"], ["https://data.delijn.be/stops/102656", "https://data.delijn.be/stops/308798"], ["https://data.delijn.be/stops/206106", "https://data.delijn.be/stops/206111"], ["https://data.delijn.be/stops/503486", "https://data.delijn.be/stops/503491"], ["https://data.delijn.be/stops/102009", "https://data.delijn.be/stops/205641"], ["https://data.delijn.be/stops/400767", "https://data.delijn.be/stops/405267"], ["https://data.delijn.be/stops/503397", "https://data.delijn.be/stops/504949"], ["https://data.delijn.be/stops/501321", "https://data.delijn.be/stops/506204"], ["https://data.delijn.be/stops/300060", "https://data.delijn.be/stops/307728"], ["https://data.delijn.be/stops/106230", "https://data.delijn.be/stops/109123"], ["https://data.delijn.be/stops/400052", "https://data.delijn.be/stops/400053"], ["https://data.delijn.be/stops/405717", "https://data.delijn.be/stops/410142"], ["https://data.delijn.be/stops/201709", "https://data.delijn.be/stops/202379"], ["https://data.delijn.be/stops/503237", "https://data.delijn.be/stops/508064"], ["https://data.delijn.be/stops/406735", "https://data.delijn.be/stops/407620"], ["https://data.delijn.be/stops/302691", "https://data.delijn.be/stops/302692"], ["https://data.delijn.be/stops/301404", "https://data.delijn.be/stops/304738"], ["https://data.delijn.be/stops/206741", "https://data.delijn.be/stops/207980"], ["https://data.delijn.be/stops/208803", "https://data.delijn.be/stops/209210"], ["https://data.delijn.be/stops/101987", "https://data.delijn.be/stops/105395"], ["https://data.delijn.be/stops/206369", "https://data.delijn.be/stops/207357"], ["https://data.delijn.be/stops/208659", "https://data.delijn.be/stops/209658"], ["https://data.delijn.be/stops/206961", "https://data.delijn.be/stops/306069"], ["https://data.delijn.be/stops/405733", "https://data.delijn.be/stops/410141"], ["https://data.delijn.be/stops/104468", "https://data.delijn.be/stops/107476"], ["https://data.delijn.be/stops/204443", "https://data.delijn.be/stops/205767"], ["https://data.delijn.be/stops/502493", "https://data.delijn.be/stops/507516"], ["https://data.delijn.be/stops/406882", "https://data.delijn.be/stops/409999"], ["https://data.delijn.be/stops/504222", "https://data.delijn.be/stops/509211"], ["https://data.delijn.be/stops/400158", "https://data.delijn.be/stops/405130"], ["https://data.delijn.be/stops/505352", "https://data.delijn.be/stops/505729"], ["https://data.delijn.be/stops/403942", "https://data.delijn.be/stops/403943"], ["https://data.delijn.be/stops/202320", "https://data.delijn.be/stops/203320"], ["https://data.delijn.be/stops/400733", "https://data.delijn.be/stops/400735"], ["https://data.delijn.be/stops/201933", "https://data.delijn.be/stops/202951"], ["https://data.delijn.be/stops/102416", "https://data.delijn.be/stops/108424"], ["https://data.delijn.be/stops/503746", "https://data.delijn.be/stops/509736"], ["https://data.delijn.be/stops/503462", "https://data.delijn.be/stops/503463"], ["https://data.delijn.be/stops/304050", "https://data.delijn.be/stops/304059"], ["https://data.delijn.be/stops/401744", "https://data.delijn.be/stops/401882"], ["https://data.delijn.be/stops/404370", "https://data.delijn.be/stops/404649"], ["https://data.delijn.be/stops/405145", "https://data.delijn.be/stops/405281"], ["https://data.delijn.be/stops/407925", "https://data.delijn.be/stops/408425"], ["https://data.delijn.be/stops/303262", "https://data.delijn.be/stops/307796"], ["https://data.delijn.be/stops/301013", "https://data.delijn.be/stops/301018"], ["https://data.delijn.be/stops/305256", "https://data.delijn.be/stops/305273"], ["https://data.delijn.be/stops/200827", "https://data.delijn.be/stops/502064"], ["https://data.delijn.be/stops/501074", "https://data.delijn.be/stops/506074"], ["https://data.delijn.be/stops/405455", "https://data.delijn.be/stops/408894"], ["https://data.delijn.be/stops/205522", "https://data.delijn.be/stops/205726"], ["https://data.delijn.be/stops/300289", "https://data.delijn.be/stops/306286"], ["https://data.delijn.be/stops/502238", "https://data.delijn.be/stops/502240"], ["https://data.delijn.be/stops/300407", "https://data.delijn.be/stops/302001"], ["https://data.delijn.be/stops/407664", "https://data.delijn.be/stops/407665"], ["https://data.delijn.be/stops/502003", "https://data.delijn.be/stops/507003"], ["https://data.delijn.be/stops/200849", "https://data.delijn.be/stops/208654"], ["https://data.delijn.be/stops/305562", "https://data.delijn.be/stops/305582"], ["https://data.delijn.be/stops/201705", "https://data.delijn.be/stops/202384"], ["https://data.delijn.be/stops/205982", "https://data.delijn.be/stops/208767"], ["https://data.delijn.be/stops/502419", "https://data.delijn.be/stops/507419"], ["https://data.delijn.be/stops/400784", "https://data.delijn.be/stops/400858"], ["https://data.delijn.be/stops/400585", "https://data.delijn.be/stops/400597"], ["https://data.delijn.be/stops/502143", "https://data.delijn.be/stops/507151"], ["https://data.delijn.be/stops/204477", "https://data.delijn.be/stops/205459"], ["https://data.delijn.be/stops/507932", "https://data.delijn.be/stops/508739"], ["https://data.delijn.be/stops/405766", "https://data.delijn.be/stops/405782"], ["https://data.delijn.be/stops/407847", "https://data.delijn.be/stops/407993"], ["https://data.delijn.be/stops/101175", "https://data.delijn.be/stops/102410"], ["https://data.delijn.be/stops/102159", "https://data.delijn.be/stops/108962"], ["https://data.delijn.be/stops/404404", "https://data.delijn.be/stops/404405"], ["https://data.delijn.be/stops/503988", "https://data.delijn.be/stops/508988"], ["https://data.delijn.be/stops/302740", "https://data.delijn.be/stops/307846"], ["https://data.delijn.be/stops/302472", "https://data.delijn.be/stops/302487"], ["https://data.delijn.be/stops/506334", "https://data.delijn.be/stops/506349"], ["https://data.delijn.be/stops/105905", "https://data.delijn.be/stops/108935"], ["https://data.delijn.be/stops/508455", "https://data.delijn.be/stops/508970"], ["https://data.delijn.be/stops/402407", "https://data.delijn.be/stops/402410"], ["https://data.delijn.be/stops/101130", "https://data.delijn.be/stops/103500"], ["https://data.delijn.be/stops/302808", "https://data.delijn.be/stops/302809"], ["https://data.delijn.be/stops/403254", "https://data.delijn.be/stops/403255"], ["https://data.delijn.be/stops/206810", "https://data.delijn.be/stops/207416"], ["https://data.delijn.be/stops/400476", "https://data.delijn.be/stops/400477"], ["https://data.delijn.be/stops/106822", "https://data.delijn.be/stops/106824"], ["https://data.delijn.be/stops/300972", "https://data.delijn.be/stops/306001"], ["https://data.delijn.be/stops/105995", "https://data.delijn.be/stops/107070"], ["https://data.delijn.be/stops/406187", "https://data.delijn.be/stops/409397"], ["https://data.delijn.be/stops/503122", "https://data.delijn.be/stops/508131"], ["https://data.delijn.be/stops/206534", "https://data.delijn.be/stops/207648"], ["https://data.delijn.be/stops/104418", "https://data.delijn.be/stops/205284"], ["https://data.delijn.be/stops/201089", "https://data.delijn.be/stops/206569"], ["https://data.delijn.be/stops/206871", "https://data.delijn.be/stops/208403"], ["https://data.delijn.be/stops/206090", "https://data.delijn.be/stops/207090"], ["https://data.delijn.be/stops/501225", "https://data.delijn.be/stops/505762"], ["https://data.delijn.be/stops/505183", "https://data.delijn.be/stops/509264"], ["https://data.delijn.be/stops/408007", "https://data.delijn.be/stops/408151"], ["https://data.delijn.be/stops/204782", "https://data.delijn.be/stops/205789"], ["https://data.delijn.be/stops/201751", "https://data.delijn.be/stops/203836"], ["https://data.delijn.be/stops/300395", "https://data.delijn.be/stops/306198"], ["https://data.delijn.be/stops/503373", "https://data.delijn.be/stops/508393"], ["https://data.delijn.be/stops/105422", "https://data.delijn.be/stops/105423"], ["https://data.delijn.be/stops/200752", "https://data.delijn.be/stops/208249"], ["https://data.delijn.be/stops/109057", "https://data.delijn.be/stops/109058"], ["https://data.delijn.be/stops/501391", "https://data.delijn.be/stops/506391"], ["https://data.delijn.be/stops/406484", "https://data.delijn.be/stops/406485"], ["https://data.delijn.be/stops/405615", "https://data.delijn.be/stops/407184"], ["https://data.delijn.be/stops/300307", "https://data.delijn.be/stops/305597"], ["https://data.delijn.be/stops/503124", "https://data.delijn.be/stops/509887"], ["https://data.delijn.be/stops/502337", "https://data.delijn.be/stops/505225"], ["https://data.delijn.be/stops/503138", "https://data.delijn.be/stops/507018"], ["https://data.delijn.be/stops/304915", "https://data.delijn.be/stops/308959"], ["https://data.delijn.be/stops/504586", "https://data.delijn.be/stops/509589"], ["https://data.delijn.be/stops/200212", "https://data.delijn.be/stops/201212"], ["https://data.delijn.be/stops/201870", "https://data.delijn.be/stops/202664"], ["https://data.delijn.be/stops/200274", "https://data.delijn.be/stops/203002"], ["https://data.delijn.be/stops/107607", "https://data.delijn.be/stops/107653"], ["https://data.delijn.be/stops/300638", "https://data.delijn.be/stops/305815"], ["https://data.delijn.be/stops/107291", "https://data.delijn.be/stops/107293"], ["https://data.delijn.be/stops/308511", "https://data.delijn.be/stops/308513"], ["https://data.delijn.be/stops/502758", "https://data.delijn.be/stops/507758"], ["https://data.delijn.be/stops/201265", "https://data.delijn.be/stops/202545"], ["https://data.delijn.be/stops/105598", "https://data.delijn.be/stops/109737"], ["https://data.delijn.be/stops/207346", "https://data.delijn.be/stops/207347"], ["https://data.delijn.be/stops/107087", "https://data.delijn.be/stops/107088"], ["https://data.delijn.be/stops/106843", "https://data.delijn.be/stops/106844"], ["https://data.delijn.be/stops/507481", "https://data.delijn.be/stops/509891"], ["https://data.delijn.be/stops/104021", "https://data.delijn.be/stops/107217"], ["https://data.delijn.be/stops/203814", "https://data.delijn.be/stops/205832"], ["https://data.delijn.be/stops/404399", "https://data.delijn.be/stops/405559"], ["https://data.delijn.be/stops/101290", "https://data.delijn.be/stops/101520"], ["https://data.delijn.be/stops/108368", "https://data.delijn.be/stops/108455"], ["https://data.delijn.be/stops/302674", "https://data.delijn.be/stops/302699"], ["https://data.delijn.be/stops/400221", "https://data.delijn.be/stops/400223"], ["https://data.delijn.be/stops/208238", "https://data.delijn.be/stops/209217"], ["https://data.delijn.be/stops/200066", "https://data.delijn.be/stops/201098"], ["https://data.delijn.be/stops/404885", "https://data.delijn.be/stops/404957"], ["https://data.delijn.be/stops/408861", "https://data.delijn.be/stops/408916"], ["https://data.delijn.be/stops/301475", "https://data.delijn.be/stops/301480"], ["https://data.delijn.be/stops/200070", "https://data.delijn.be/stops/208842"], ["https://data.delijn.be/stops/405345", "https://data.delijn.be/stops/308732"], ["https://data.delijn.be/stops/200569", "https://data.delijn.be/stops/202399"], ["https://data.delijn.be/stops/301814", "https://data.delijn.be/stops/305546"], ["https://data.delijn.be/stops/200538", "https://data.delijn.be/stops/210049"], ["https://data.delijn.be/stops/402024", "https://data.delijn.be/stops/403885"], ["https://data.delijn.be/stops/106497", "https://data.delijn.be/stops/107063"], ["https://data.delijn.be/stops/301598", "https://data.delijn.be/stops/301599"], ["https://data.delijn.be/stops/302973", "https://data.delijn.be/stops/303442"], ["https://data.delijn.be/stops/202515", "https://data.delijn.be/stops/202516"], ["https://data.delijn.be/stops/407034", "https://data.delijn.be/stops/410032"], ["https://data.delijn.be/stops/408076", "https://data.delijn.be/stops/408077"], ["https://data.delijn.be/stops/410025", "https://data.delijn.be/stops/410026"], ["https://data.delijn.be/stops/208176", "https://data.delijn.be/stops/208177"], ["https://data.delijn.be/stops/301180", "https://data.delijn.be/stops/301264"], ["https://data.delijn.be/stops/200511", "https://data.delijn.be/stops/201511"], ["https://data.delijn.be/stops/208604", "https://data.delijn.be/stops/209603"], ["https://data.delijn.be/stops/400143", "https://data.delijn.be/stops/403422"], ["https://data.delijn.be/stops/101192", "https://data.delijn.be/stops/205542"], ["https://data.delijn.be/stops/402688", "https://data.delijn.be/stops/402947"], ["https://data.delijn.be/stops/305183", "https://data.delijn.be/stops/305206"], ["https://data.delijn.be/stops/300824", "https://data.delijn.be/stops/304127"], ["https://data.delijn.be/stops/401664", "https://data.delijn.be/stops/403058"], ["https://data.delijn.be/stops/403468", "https://data.delijn.be/stops/403473"], ["https://data.delijn.be/stops/505422", "https://data.delijn.be/stops/509612"], ["https://data.delijn.be/stops/105998", "https://data.delijn.be/stops/107908"], ["https://data.delijn.be/stops/403687", "https://data.delijn.be/stops/409274"], ["https://data.delijn.be/stops/106795", "https://data.delijn.be/stops/106864"], ["https://data.delijn.be/stops/300479", "https://data.delijn.be/stops/302094"], ["https://data.delijn.be/stops/503601", "https://data.delijn.be/stops/508603"], ["https://data.delijn.be/stops/306875", "https://data.delijn.be/stops/307397"], ["https://data.delijn.be/stops/303715", "https://data.delijn.be/stops/303746"], ["https://data.delijn.be/stops/206295", "https://data.delijn.be/stops/207201"], ["https://data.delijn.be/stops/401344", "https://data.delijn.be/stops/404786"], ["https://data.delijn.be/stops/402502", "https://data.delijn.be/stops/402571"], ["https://data.delijn.be/stops/208519", "https://data.delijn.be/stops/218015"], ["https://data.delijn.be/stops/408277", "https://data.delijn.be/stops/408314"], ["https://data.delijn.be/stops/107598", "https://data.delijn.be/stops/107662"], ["https://data.delijn.be/stops/205978", "https://data.delijn.be/stops/208245"], ["https://data.delijn.be/stops/504197", "https://data.delijn.be/stops/508445"], ["https://data.delijn.be/stops/109043", "https://data.delijn.be/stops/307947"], ["https://data.delijn.be/stops/407508", "https://data.delijn.be/stops/407512"], ["https://data.delijn.be/stops/504037", "https://data.delijn.be/stops/509039"], ["https://data.delijn.be/stops/205523", "https://data.delijn.be/stops/205524"], ["https://data.delijn.be/stops/101523", "https://data.delijn.be/stops/101942"], ["https://data.delijn.be/stops/305309", "https://data.delijn.be/stops/306343"], ["https://data.delijn.be/stops/101921", "https://data.delijn.be/stops/106043"], ["https://data.delijn.be/stops/300276", "https://data.delijn.be/stops/300277"], ["https://data.delijn.be/stops/105856", "https://data.delijn.be/stops/105857"], ["https://data.delijn.be/stops/503319", "https://data.delijn.be/stops/503324"], ["https://data.delijn.be/stops/203121", "https://data.delijn.be/stops/203180"], ["https://data.delijn.be/stops/404723", "https://data.delijn.be/stops/404814"], ["https://data.delijn.be/stops/408134", "https://data.delijn.be/stops/408431"], ["https://data.delijn.be/stops/403768", "https://data.delijn.be/stops/403874"], ["https://data.delijn.be/stops/202917", "https://data.delijn.be/stops/203911"], ["https://data.delijn.be/stops/205390", "https://data.delijn.be/stops/205415"], ["https://data.delijn.be/stops/300808", "https://data.delijn.be/stops/301960"], ["https://data.delijn.be/stops/104643", "https://data.delijn.be/stops/108036"], ["https://data.delijn.be/stops/306847", "https://data.delijn.be/stops/307359"], ["https://data.delijn.be/stops/102724", "https://data.delijn.be/stops/103415"], ["https://data.delijn.be/stops/402824", "https://data.delijn.be/stops/409011"], ["https://data.delijn.be/stops/301631", "https://data.delijn.be/stops/302118"], ["https://data.delijn.be/stops/504840", "https://data.delijn.be/stops/509099"], ["https://data.delijn.be/stops/201811", "https://data.delijn.be/stops/201845"], ["https://data.delijn.be/stops/108024", "https://data.delijn.be/stops/108026"], ["https://data.delijn.be/stops/102509", "https://data.delijn.be/stops/406479"], ["https://data.delijn.be/stops/102833", "https://data.delijn.be/stops/102837"], ["https://data.delijn.be/stops/405320", "https://data.delijn.be/stops/305062"], ["https://data.delijn.be/stops/209613", "https://data.delijn.be/stops/209615"], ["https://data.delijn.be/stops/107545", "https://data.delijn.be/stops/109595"], ["https://data.delijn.be/stops/208598", "https://data.delijn.be/stops/209598"], ["https://data.delijn.be/stops/406354", "https://data.delijn.be/stops/406355"], ["https://data.delijn.be/stops/505309", "https://data.delijn.be/stops/507733"], ["https://data.delijn.be/stops/202183", "https://data.delijn.be/stops/203182"], ["https://data.delijn.be/stops/302035", "https://data.delijn.be/stops/307284"], ["https://data.delijn.be/stops/302922", "https://data.delijn.be/stops/302975"], ["https://data.delijn.be/stops/208030", "https://data.delijn.be/stops/208037"], ["https://data.delijn.be/stops/206415", "https://data.delijn.be/stops/216016"], ["https://data.delijn.be/stops/406622", "https://data.delijn.be/stops/406684"], ["https://data.delijn.be/stops/407582", "https://data.delijn.be/stops/408880"], ["https://data.delijn.be/stops/302462", "https://data.delijn.be/stops/302472"], ["https://data.delijn.be/stops/103073", "https://data.delijn.be/stops/106925"], ["https://data.delijn.be/stops/101651", "https://data.delijn.be/stops/105498"], ["https://data.delijn.be/stops/301592", "https://data.delijn.be/stops/301593"], ["https://data.delijn.be/stops/506433", "https://data.delijn.be/stops/506456"], ["https://data.delijn.be/stops/503459", "https://data.delijn.be/stops/504809"], ["https://data.delijn.be/stops/404305", "https://data.delijn.be/stops/404329"], ["https://data.delijn.be/stops/504254", "https://data.delijn.be/stops/509715"], ["https://data.delijn.be/stops/406311", "https://data.delijn.be/stops/407313"], ["https://data.delijn.be/stops/201724", "https://data.delijn.be/stops/203381"], ["https://data.delijn.be/stops/205432", "https://data.delijn.be/stops/205767"], ["https://data.delijn.be/stops/401806", "https://data.delijn.be/stops/401808"], ["https://data.delijn.be/stops/301618", "https://data.delijn.be/stops/301620"], ["https://data.delijn.be/stops/303934", "https://data.delijn.be/stops/304576"], ["https://data.delijn.be/stops/301885", "https://data.delijn.be/stops/302097"], ["https://data.delijn.be/stops/400090", "https://data.delijn.be/stops/400091"], ["https://data.delijn.be/stops/304365", "https://data.delijn.be/stops/307374"], ["https://data.delijn.be/stops/204579", "https://data.delijn.be/stops/211067"], ["https://data.delijn.be/stops/502112", "https://data.delijn.be/stops/507112"], ["https://data.delijn.be/stops/503535", "https://data.delijn.be/stops/508534"], ["https://data.delijn.be/stops/204240", "https://data.delijn.be/stops/205346"], ["https://data.delijn.be/stops/406445", "https://data.delijn.be/stops/406447"], ["https://data.delijn.be/stops/105101", "https://data.delijn.be/stops/105102"], ["https://data.delijn.be/stops/206198", "https://data.delijn.be/stops/207204"], ["https://data.delijn.be/stops/509112", "https://data.delijn.be/stops/509215"], ["https://data.delijn.be/stops/306669", "https://data.delijn.be/stops/306670"], ["https://data.delijn.be/stops/108244", "https://data.delijn.be/stops/108246"], ["https://data.delijn.be/stops/409375", "https://data.delijn.be/stops/409645"], ["https://data.delijn.be/stops/401642", "https://data.delijn.be/stops/405646"], ["https://data.delijn.be/stops/508051", "https://data.delijn.be/stops/509845"], ["https://data.delijn.be/stops/400379", "https://data.delijn.be/stops/405297"], ["https://data.delijn.be/stops/508514", "https://data.delijn.be/stops/508515"], ["https://data.delijn.be/stops/501734", "https://data.delijn.be/stops/506343"], ["https://data.delijn.be/stops/510007", "https://data.delijn.be/stops/510011"], ["https://data.delijn.be/stops/108279", "https://data.delijn.be/stops/108283"], ["https://data.delijn.be/stops/401990", "https://data.delijn.be/stops/402024"], ["https://data.delijn.be/stops/101632", "https://data.delijn.be/stops/104270"], ["https://data.delijn.be/stops/203114", "https://data.delijn.be/stops/205832"], ["https://data.delijn.be/stops/502172", "https://data.delijn.be/stops/505090"], ["https://data.delijn.be/stops/103988", "https://data.delijn.be/stops/108974"], ["https://data.delijn.be/stops/201881", "https://data.delijn.be/stops/203420"], ["https://data.delijn.be/stops/103031", "https://data.delijn.be/stops/109584"], ["https://data.delijn.be/stops/102857", "https://data.delijn.be/stops/104667"], ["https://data.delijn.be/stops/208345", "https://data.delijn.be/stops/209345"], ["https://data.delijn.be/stops/208115", "https://data.delijn.be/stops/209115"], ["https://data.delijn.be/stops/206083", "https://data.delijn.be/stops/206989"], ["https://data.delijn.be/stops/107333", "https://data.delijn.be/stops/107334"], ["https://data.delijn.be/stops/508568", "https://data.delijn.be/stops/508801"], ["https://data.delijn.be/stops/300824", "https://data.delijn.be/stops/300861"], ["https://data.delijn.be/stops/301364", "https://data.delijn.be/stops/304527"], ["https://data.delijn.be/stops/504995", "https://data.delijn.be/stops/505226"], ["https://data.delijn.be/stops/404590", "https://data.delijn.be/stops/404592"], ["https://data.delijn.be/stops/204119", "https://data.delijn.be/stops/205666"], ["https://data.delijn.be/stops/300991", "https://data.delijn.be/stops/300992"], ["https://data.delijn.be/stops/301810", "https://data.delijn.be/stops/304685"], ["https://data.delijn.be/stops/107202", "https://data.delijn.be/stops/107728"], ["https://data.delijn.be/stops/204307", "https://data.delijn.be/stops/205306"], ["https://data.delijn.be/stops/202403", "https://data.delijn.be/stops/203403"], ["https://data.delijn.be/stops/208432", "https://data.delijn.be/stops/208677"], ["https://data.delijn.be/stops/405136", "https://data.delijn.be/stops/408440"], ["https://data.delijn.be/stops/504123", "https://data.delijn.be/stops/504200"], ["https://data.delijn.be/stops/305433", "https://data.delijn.be/stops/305436"], ["https://data.delijn.be/stops/207846", "https://data.delijn.be/stops/207998"], ["https://data.delijn.be/stops/503727", "https://data.delijn.be/stops/509951"], ["https://data.delijn.be/stops/503380", "https://data.delijn.be/stops/508374"], ["https://data.delijn.be/stops/201370", "https://data.delijn.be/stops/201371"], ["https://data.delijn.be/stops/502487", "https://data.delijn.be/stops/502803"], ["https://data.delijn.be/stops/102531", "https://data.delijn.be/stops/405077"], ["https://data.delijn.be/stops/505085", "https://data.delijn.be/stops/506112"], ["https://data.delijn.be/stops/503932", "https://data.delijn.be/stops/504364"], ["https://data.delijn.be/stops/303988", "https://data.delijn.be/stops/307014"], ["https://data.delijn.be/stops/104549", "https://data.delijn.be/stops/305842"], ["https://data.delijn.be/stops/405500", "https://data.delijn.be/stops/408417"], ["https://data.delijn.be/stops/103538", "https://data.delijn.be/stops/108026"], ["https://data.delijn.be/stops/302178", "https://data.delijn.be/stops/308097"], ["https://data.delijn.be/stops/508455", "https://data.delijn.be/stops/508463"], ["https://data.delijn.be/stops/105641", "https://data.delijn.be/stops/105642"], ["https://data.delijn.be/stops/301091", "https://data.delijn.be/stops/304830"], ["https://data.delijn.be/stops/503459", "https://data.delijn.be/stops/508453"], ["https://data.delijn.be/stops/306129", "https://data.delijn.be/stops/306132"], ["https://data.delijn.be/stops/301859", "https://data.delijn.be/stops/305465"], ["https://data.delijn.be/stops/107072", "https://data.delijn.be/stops/107073"], ["https://data.delijn.be/stops/102166", "https://data.delijn.be/stops/104392"], ["https://data.delijn.be/stops/501183", "https://data.delijn.be/stops/509495"], ["https://data.delijn.be/stops/510019", "https://data.delijn.be/stops/510024"], ["https://data.delijn.be/stops/101678", "https://data.delijn.be/stops/101688"], ["https://data.delijn.be/stops/400493", "https://data.delijn.be/stops/409796"], ["https://data.delijn.be/stops/401185", "https://data.delijn.be/stops/406070"], ["https://data.delijn.be/stops/300276", "https://data.delijn.be/stops/306189"], ["https://data.delijn.be/stops/300225", "https://data.delijn.be/stops/300231"], ["https://data.delijn.be/stops/406518", "https://data.delijn.be/stops/407875"], ["https://data.delijn.be/stops/501315", "https://data.delijn.be/stops/501400"], ["https://data.delijn.be/stops/103122", "https://data.delijn.be/stops/104378"], ["https://data.delijn.be/stops/209547", "https://data.delijn.be/stops/209566"], ["https://data.delijn.be/stops/106112", "https://data.delijn.be/stops/109878"], ["https://data.delijn.be/stops/405788", "https://data.delijn.be/stops/409414"], ["https://data.delijn.be/stops/307142", "https://data.delijn.be/stops/307250"], ["https://data.delijn.be/stops/200022", "https://data.delijn.be/stops/201023"], ["https://data.delijn.be/stops/403525", "https://data.delijn.be/stops/403633"], ["https://data.delijn.be/stops/305139", "https://data.delijn.be/stops/305140"], ["https://data.delijn.be/stops/505700", "https://data.delijn.be/stops/507574"], ["https://data.delijn.be/stops/109839", "https://data.delijn.be/stops/109842"], ["https://data.delijn.be/stops/407920", "https://data.delijn.be/stops/408081"], ["https://data.delijn.be/stops/407353", "https://data.delijn.be/stops/407446"], ["https://data.delijn.be/stops/204161", "https://data.delijn.be/stops/205580"], ["https://data.delijn.be/stops/504026", "https://data.delijn.be/stops/509026"], ["https://data.delijn.be/stops/305234", "https://data.delijn.be/stops/305280"], ["https://data.delijn.be/stops/108282", "https://data.delijn.be/stops/109344"], ["https://data.delijn.be/stops/303235", "https://data.delijn.be/stops/303236"], ["https://data.delijn.be/stops/208273", "https://data.delijn.be/stops/209276"], ["https://data.delijn.be/stops/200409", "https://data.delijn.be/stops/201231"], ["https://data.delijn.be/stops/405775", "https://data.delijn.be/stops/405805"], ["https://data.delijn.be/stops/205078", "https://data.delijn.be/stops/205585"], ["https://data.delijn.be/stops/504541", "https://data.delijn.be/stops/505187"], ["https://data.delijn.be/stops/108250", "https://data.delijn.be/stops/108730"], ["https://data.delijn.be/stops/305280", "https://data.delijn.be/stops/305311"], ["https://data.delijn.be/stops/505146", "https://data.delijn.be/stops/507234"], ["https://data.delijn.be/stops/404467", "https://data.delijn.be/stops/404510"], ["https://data.delijn.be/stops/106759", "https://data.delijn.be/stops/109700"], ["https://data.delijn.be/stops/202436", "https://data.delijn.be/stops/202719"], ["https://data.delijn.be/stops/403928", "https://data.delijn.be/stops/404003"], ["https://data.delijn.be/stops/302764", "https://data.delijn.be/stops/302784"], ["https://data.delijn.be/stops/201083", "https://data.delijn.be/stops/201271"], ["https://data.delijn.be/stops/501165", "https://data.delijn.be/stops/506142"], ["https://data.delijn.be/stops/500017", "https://data.delijn.be/stops/501082"], ["https://data.delijn.be/stops/204608", "https://data.delijn.be/stops/205279"], ["https://data.delijn.be/stops/201266", "https://data.delijn.be/stops/202545"], ["https://data.delijn.be/stops/401724", "https://data.delijn.be/stops/405456"], ["https://data.delijn.be/stops/504424", "https://data.delijn.be/stops/508555"], ["https://data.delijn.be/stops/408369", "https://data.delijn.be/stops/409645"], ["https://data.delijn.be/stops/206088", "https://data.delijn.be/stops/206089"], ["https://data.delijn.be/stops/503221", "https://data.delijn.be/stops/503222"], ["https://data.delijn.be/stops/306331", "https://data.delijn.be/stops/306332"], ["https://data.delijn.be/stops/106182", "https://data.delijn.be/stops/107438"], ["https://data.delijn.be/stops/206605", "https://data.delijn.be/stops/207606"], ["https://data.delijn.be/stops/308460", "https://data.delijn.be/stops/308693"], ["https://data.delijn.be/stops/209248", "https://data.delijn.be/stops/209249"], ["https://data.delijn.be/stops/207428", "https://data.delijn.be/stops/208537"], ["https://data.delijn.be/stops/200605", "https://data.delijn.be/stops/202860"], ["https://data.delijn.be/stops/106892", "https://data.delijn.be/stops/107218"], ["https://data.delijn.be/stops/105419", "https://data.delijn.be/stops/105423"], ["https://data.delijn.be/stops/302919", "https://data.delijn.be/stops/306401"], ["https://data.delijn.be/stops/406036", "https://data.delijn.be/stops/406037"], ["https://data.delijn.be/stops/401890", "https://data.delijn.be/stops/401893"], ["https://data.delijn.be/stops/200657", "https://data.delijn.be/stops/201658"], ["https://data.delijn.be/stops/301281", "https://data.delijn.be/stops/306252"], ["https://data.delijn.be/stops/502388", "https://data.delijn.be/stops/507388"], ["https://data.delijn.be/stops/105950", "https://data.delijn.be/stops/108055"], ["https://data.delijn.be/stops/300969", "https://data.delijn.be/stops/302244"], ["https://data.delijn.be/stops/400220", "https://data.delijn.be/stops/400221"], ["https://data.delijn.be/stops/305746", "https://data.delijn.be/stops/305747"], ["https://data.delijn.be/stops/404006", "https://data.delijn.be/stops/404353"], ["https://data.delijn.be/stops/206123", "https://data.delijn.be/stops/207123"], ["https://data.delijn.be/stops/108923", "https://data.delijn.be/stops/108924"], ["https://data.delijn.be/stops/300019", "https://data.delijn.be/stops/307475"], ["https://data.delijn.be/stops/409193", "https://data.delijn.be/stops/409315"], ["https://data.delijn.be/stops/304592", "https://data.delijn.be/stops/307267"], ["https://data.delijn.be/stops/302320", "https://data.delijn.be/stops/307892"], ["https://data.delijn.be/stops/204018", "https://data.delijn.be/stops/205088"], ["https://data.delijn.be/stops/504336", "https://data.delijn.be/stops/509337"], ["https://data.delijn.be/stops/407287", "https://data.delijn.be/stops/408472"], ["https://data.delijn.be/stops/408034", "https://data.delijn.be/stops/408063"], ["https://data.delijn.be/stops/206423", "https://data.delijn.be/stops/207423"], ["https://data.delijn.be/stops/208288", "https://data.delijn.be/stops/209288"], ["https://data.delijn.be/stops/501609", "https://data.delijn.be/stops/506018"], ["https://data.delijn.be/stops/302631", "https://data.delijn.be/stops/306044"], ["https://data.delijn.be/stops/304024", "https://data.delijn.be/stops/304821"], ["https://data.delijn.be/stops/402662", "https://data.delijn.be/stops/402735"], ["https://data.delijn.be/stops/405925", "https://data.delijn.be/stops/405991"], ["https://data.delijn.be/stops/304330", "https://data.delijn.be/stops/304338"], ["https://data.delijn.be/stops/503998", "https://data.delijn.be/stops/505250"], ["https://data.delijn.be/stops/102715", "https://data.delijn.be/stops/105700"], ["https://data.delijn.be/stops/301961", "https://data.delijn.be/stops/301987"], ["https://data.delijn.be/stops/300600", "https://data.delijn.be/stops/300611"], ["https://data.delijn.be/stops/510015", "https://data.delijn.be/stops/510022"], ["https://data.delijn.be/stops/504436", "https://data.delijn.be/stops/509436"], ["https://data.delijn.be/stops/108196", "https://data.delijn.be/stops/108201"], ["https://data.delijn.be/stops/200938", "https://data.delijn.be/stops/201697"], ["https://data.delijn.be/stops/501432", "https://data.delijn.be/stops/506150"], ["https://data.delijn.be/stops/108383", "https://data.delijn.be/stops/108385"], ["https://data.delijn.be/stops/106009", "https://data.delijn.be/stops/106012"], ["https://data.delijn.be/stops/109294", "https://data.delijn.be/stops/109296"], ["https://data.delijn.be/stops/101680", "https://data.delijn.be/stops/103085"], ["https://data.delijn.be/stops/305481", "https://data.delijn.be/stops/305856"], ["https://data.delijn.be/stops/201809", "https://data.delijn.be/stops/201835"], ["https://data.delijn.be/stops/402192", "https://data.delijn.be/stops/402245"], ["https://data.delijn.be/stops/101262", "https://data.delijn.be/stops/105270"], ["https://data.delijn.be/stops/501315", "https://data.delijn.be/stops/506400"], ["https://data.delijn.be/stops/108451", "https://data.delijn.be/stops/108454"], ["https://data.delijn.be/stops/300179", "https://data.delijn.be/stops/300206"], ["https://data.delijn.be/stops/307422", "https://data.delijn.be/stops/307424"], ["https://data.delijn.be/stops/207441", "https://data.delijn.be/stops/207864"], ["https://data.delijn.be/stops/202581", "https://data.delijn.be/stops/203579"], ["https://data.delijn.be/stops/106188", "https://data.delijn.be/stops/106189"], ["https://data.delijn.be/stops/500950", "https://data.delijn.be/stops/500951"], ["https://data.delijn.be/stops/204397", "https://data.delijn.be/stops/205398"], ["https://data.delijn.be/stops/300937", "https://data.delijn.be/stops/301944"], ["https://data.delijn.be/stops/206762", "https://data.delijn.be/stops/208618"], ["https://data.delijn.be/stops/408826", "https://data.delijn.be/stops/410319"], ["https://data.delijn.be/stops/506026", "https://data.delijn.be/stops/506043"], ["https://data.delijn.be/stops/201532", "https://data.delijn.be/stops/201546"], ["https://data.delijn.be/stops/408696", "https://data.delijn.be/stops/408697"], ["https://data.delijn.be/stops/504995", "https://data.delijn.be/stops/505373"], ["https://data.delijn.be/stops/200315", "https://data.delijn.be/stops/201384"], ["https://data.delijn.be/stops/405408", "https://data.delijn.be/stops/407151"], ["https://data.delijn.be/stops/204127", "https://data.delijn.be/stops/205127"], ["https://data.delijn.be/stops/307640", "https://data.delijn.be/stops/307642"], ["https://data.delijn.be/stops/102998", "https://data.delijn.be/stops/107414"], ["https://data.delijn.be/stops/404267", "https://data.delijn.be/stops/408556"], ["https://data.delijn.be/stops/108106", "https://data.delijn.be/stops/108112"], ["https://data.delijn.be/stops/400967", "https://data.delijn.be/stops/406686"], ["https://data.delijn.be/stops/101701", "https://data.delijn.be/stops/103743"], ["https://data.delijn.be/stops/200094", "https://data.delijn.be/stops/200481"], ["https://data.delijn.be/stops/504640", "https://data.delijn.be/stops/509133"], ["https://data.delijn.be/stops/302372", "https://data.delijn.be/stops/302373"], ["https://data.delijn.be/stops/207785", "https://data.delijn.be/stops/208188"], ["https://data.delijn.be/stops/300151", "https://data.delijn.be/stops/300152"], ["https://data.delijn.be/stops/503094", "https://data.delijn.be/stops/508841"], ["https://data.delijn.be/stops/300019", "https://data.delijn.be/stops/300293"], ["https://data.delijn.be/stops/501115", "https://data.delijn.be/stops/501661"], ["https://data.delijn.be/stops/206774", "https://data.delijn.be/stops/209092"], ["https://data.delijn.be/stops/107575", "https://data.delijn.be/stops/107577"], ["https://data.delijn.be/stops/503540", "https://data.delijn.be/stops/505196"], ["https://data.delijn.be/stops/409262", "https://data.delijn.be/stops/409340"], ["https://data.delijn.be/stops/208353", "https://data.delijn.be/stops/208354"], ["https://data.delijn.be/stops/502560", "https://data.delijn.be/stops/507560"], ["https://data.delijn.be/stops/202207", "https://data.delijn.be/stops/203208"], ["https://data.delijn.be/stops/301331", "https://data.delijn.be/stops/301390"], ["https://data.delijn.be/stops/101018", "https://data.delijn.be/stops/105635"], ["https://data.delijn.be/stops/304678", "https://data.delijn.be/stops/304684"], ["https://data.delijn.be/stops/101397", "https://data.delijn.be/stops/101401"], ["https://data.delijn.be/stops/307406", "https://data.delijn.be/stops/307409"], ["https://data.delijn.be/stops/202020", "https://data.delijn.be/stops/211854"], ["https://data.delijn.be/stops/303947", "https://data.delijn.be/stops/303955"], ["https://data.delijn.be/stops/201435", "https://data.delijn.be/stops/209987"], ["https://data.delijn.be/stops/109297", "https://data.delijn.be/stops/109298"], ["https://data.delijn.be/stops/104590", "https://data.delijn.be/stops/105630"], ["https://data.delijn.be/stops/303250", "https://data.delijn.be/stops/303302"], ["https://data.delijn.be/stops/408830", "https://data.delijn.be/stops/408861"], ["https://data.delijn.be/stops/304066", "https://data.delijn.be/stops/304088"], ["https://data.delijn.be/stops/508280", "https://data.delijn.be/stops/508287"], ["https://data.delijn.be/stops/500007", "https://data.delijn.be/stops/509951"], ["https://data.delijn.be/stops/402554", "https://data.delijn.be/stops/402592"], ["https://data.delijn.be/stops/504060", "https://data.delijn.be/stops/509060"], ["https://data.delijn.be/stops/103694", "https://data.delijn.be/stops/103697"], ["https://data.delijn.be/stops/403259", "https://data.delijn.be/stops/403291"], ["https://data.delijn.be/stops/503003", "https://data.delijn.be/stops/508327"], ["https://data.delijn.be/stops/200840", "https://data.delijn.be/stops/502759"], ["https://data.delijn.be/stops/504800", "https://data.delijn.be/stops/504802"], ["https://data.delijn.be/stops/300282", "https://data.delijn.be/stops/300292"], ["https://data.delijn.be/stops/505105", "https://data.delijn.be/stops/508115"], ["https://data.delijn.be/stops/508561", "https://data.delijn.be/stops/509751"], ["https://data.delijn.be/stops/406694", "https://data.delijn.be/stops/409410"], ["https://data.delijn.be/stops/401679", "https://data.delijn.be/stops/308240"], ["https://data.delijn.be/stops/406033", "https://data.delijn.be/stops/406084"], ["https://data.delijn.be/stops/504639", "https://data.delijn.be/stops/504977"], ["https://data.delijn.be/stops/101199", "https://data.delijn.be/stops/204659"], ["https://data.delijn.be/stops/305184", "https://data.delijn.be/stops/308049"], ["https://data.delijn.be/stops/502311", "https://data.delijn.be/stops/505679"], ["https://data.delijn.be/stops/200105", "https://data.delijn.be/stops/201107"], ["https://data.delijn.be/stops/206834", "https://data.delijn.be/stops/207834"], ["https://data.delijn.be/stops/505669", "https://data.delijn.be/stops/507174"], ["https://data.delijn.be/stops/307883", "https://data.delijn.be/stops/307884"], ["https://data.delijn.be/stops/301531", "https://data.delijn.be/stops/304967"], ["https://data.delijn.be/stops/108209", "https://data.delijn.be/stops/108212"], ["https://data.delijn.be/stops/105513", "https://data.delijn.be/stops/105790"], ["https://data.delijn.be/stops/504122", "https://data.delijn.be/stops/509122"], ["https://data.delijn.be/stops/400792", "https://data.delijn.be/stops/409539"], ["https://data.delijn.be/stops/505501", "https://data.delijn.be/stops/505601"], ["https://data.delijn.be/stops/106226", "https://data.delijn.be/stops/109128"], ["https://data.delijn.be/stops/102042", "https://data.delijn.be/stops/206749"], ["https://data.delijn.be/stops/305773", "https://data.delijn.be/stops/305775"], ["https://data.delijn.be/stops/107277", "https://data.delijn.be/stops/107281"], ["https://data.delijn.be/stops/307297", "https://data.delijn.be/stops/307327"], ["https://data.delijn.be/stops/505986", "https://data.delijn.be/stops/509712"], ["https://data.delijn.be/stops/206455", "https://data.delijn.be/stops/206562"], ["https://data.delijn.be/stops/504422", "https://data.delijn.be/stops/509410"], ["https://data.delijn.be/stops/502733", "https://data.delijn.be/stops/505308"], ["https://data.delijn.be/stops/408600", "https://data.delijn.be/stops/408746"], ["https://data.delijn.be/stops/204250", "https://data.delijn.be/stops/205469"], ["https://data.delijn.be/stops/405176", "https://data.delijn.be/stops/405205"], ["https://data.delijn.be/stops/505256", "https://data.delijn.be/stops/505968"], ["https://data.delijn.be/stops/400973", "https://data.delijn.be/stops/408473"], ["https://data.delijn.be/stops/208712", "https://data.delijn.be/stops/208835"], ["https://data.delijn.be/stops/504241", "https://data.delijn.be/stops/509241"], ["https://data.delijn.be/stops/201212", "https://data.delijn.be/stops/203554"], ["https://data.delijn.be/stops/502321", "https://data.delijn.be/stops/505010"], ["https://data.delijn.be/stops/200425", "https://data.delijn.be/stops/203009"], ["https://data.delijn.be/stops/503038", "https://data.delijn.be/stops/504806"], ["https://data.delijn.be/stops/300421", "https://data.delijn.be/stops/302687"], ["https://data.delijn.be/stops/400914", "https://data.delijn.be/stops/400916"], ["https://data.delijn.be/stops/201333", "https://data.delijn.be/stops/210046"], ["https://data.delijn.be/stops/502647", "https://data.delijn.be/stops/507193"], ["https://data.delijn.be/stops/204414", "https://data.delijn.be/stops/204416"], ["https://data.delijn.be/stops/201959", "https://data.delijn.be/stops/201961"], ["https://data.delijn.be/stops/300212", "https://data.delijn.be/stops/300213"], ["https://data.delijn.be/stops/400758", "https://data.delijn.be/stops/400759"], ["https://data.delijn.be/stops/404100", "https://data.delijn.be/stops/404101"], ["https://data.delijn.be/stops/302512", "https://data.delijn.be/stops/302515"], ["https://data.delijn.be/stops/503842", "https://data.delijn.be/stops/507945"], ["https://data.delijn.be/stops/402082", "https://data.delijn.be/stops/402135"], ["https://data.delijn.be/stops/102409", "https://data.delijn.be/stops/109033"], ["https://data.delijn.be/stops/501119", "https://data.delijn.be/stops/506122"], ["https://data.delijn.be/stops/202428", "https://data.delijn.be/stops/202457"], ["https://data.delijn.be/stops/505032", "https://data.delijn.be/stops/506207"], ["https://data.delijn.be/stops/504834", "https://data.delijn.be/stops/505717"], ["https://data.delijn.be/stops/201051", "https://data.delijn.be/stops/211118"], ["https://data.delijn.be/stops/104741", "https://data.delijn.be/stops/104742"], ["https://data.delijn.be/stops/300010", "https://data.delijn.be/stops/304299"], ["https://data.delijn.be/stops/201660", "https://data.delijn.be/stops/210124"], ["https://data.delijn.be/stops/204384", "https://data.delijn.be/stops/205384"], ["https://data.delijn.be/stops/301845", "https://data.delijn.be/stops/305981"], ["https://data.delijn.be/stops/304479", "https://data.delijn.be/stops/304483"], ["https://data.delijn.be/stops/200848", "https://data.delijn.be/stops/200851"], ["https://data.delijn.be/stops/404201", "https://data.delijn.be/stops/404217"], ["https://data.delijn.be/stops/200732", "https://data.delijn.be/stops/203627"], ["https://data.delijn.be/stops/302509", "https://data.delijn.be/stops/302510"], ["https://data.delijn.be/stops/106037", "https://data.delijn.be/stops/107730"], ["https://data.delijn.be/stops/400118", "https://data.delijn.be/stops/400160"], ["https://data.delijn.be/stops/102170", "https://data.delijn.be/stops/103744"], ["https://data.delijn.be/stops/402851", "https://data.delijn.be/stops/409009"], ["https://data.delijn.be/stops/204231", "https://data.delijn.be/stops/204232"], ["https://data.delijn.be/stops/305043", "https://data.delijn.be/stops/308027"], ["https://data.delijn.be/stops/502222", "https://data.delijn.be/stops/502373"], ["https://data.delijn.be/stops/503811", "https://data.delijn.be/stops/504773"], ["https://data.delijn.be/stops/300021", "https://data.delijn.be/stops/300022"], ["https://data.delijn.be/stops/108534", "https://data.delijn.be/stops/108616"], ["https://data.delijn.be/stops/407740", "https://data.delijn.be/stops/409624"], ["https://data.delijn.be/stops/300329", "https://data.delijn.be/stops/304439"], ["https://data.delijn.be/stops/204205", "https://data.delijn.be/stops/205205"], ["https://data.delijn.be/stops/501122", "https://data.delijn.be/stops/506122"], ["https://data.delijn.be/stops/303168", "https://data.delijn.be/stops/307290"], ["https://data.delijn.be/stops/101779", "https://data.delijn.be/stops/108220"], ["https://data.delijn.be/stops/106760", "https://data.delijn.be/stops/106762"], ["https://data.delijn.be/stops/202289", "https://data.delijn.be/stops/203288"], ["https://data.delijn.be/stops/208452", "https://data.delijn.be/stops/209792"], ["https://data.delijn.be/stops/208494", "https://data.delijn.be/stops/208495"], ["https://data.delijn.be/stops/300192", "https://data.delijn.be/stops/308789"], ["https://data.delijn.be/stops/503277", "https://data.delijn.be/stops/508277"], ["https://data.delijn.be/stops/107789", "https://data.delijn.be/stops/107792"], ["https://data.delijn.be/stops/208572", "https://data.delijn.be/stops/209572"], ["https://data.delijn.be/stops/107727", "https://data.delijn.be/stops/107729"], ["https://data.delijn.be/stops/302145", "https://data.delijn.be/stops/307081"], ["https://data.delijn.be/stops/401469", "https://data.delijn.be/stops/401887"], ["https://data.delijn.be/stops/403360", "https://data.delijn.be/stops/403372"], ["https://data.delijn.be/stops/206213", "https://data.delijn.be/stops/206922"], ["https://data.delijn.be/stops/403001", "https://data.delijn.be/stops/403024"], ["https://data.delijn.be/stops/103338", "https://data.delijn.be/stops/103950"], ["https://data.delijn.be/stops/304596", "https://data.delijn.be/stops/304603"], ["https://data.delijn.be/stops/201863", "https://data.delijn.be/stops/203298"], ["https://data.delijn.be/stops/204087", "https://data.delijn.be/stops/205087"], ["https://data.delijn.be/stops/503248", "https://data.delijn.be/stops/503458"], ["https://data.delijn.be/stops/403492", "https://data.delijn.be/stops/403518"], ["https://data.delijn.be/stops/103924", "https://data.delijn.be/stops/107247"], ["https://data.delijn.be/stops/104835", "https://data.delijn.be/stops/106090"], ["https://data.delijn.be/stops/304731", "https://data.delijn.be/stops/304754"], ["https://data.delijn.be/stops/206947", "https://data.delijn.be/stops/207800"], ["https://data.delijn.be/stops/505070", "https://data.delijn.be/stops/505344"], ["https://data.delijn.be/stops/302346", "https://data.delijn.be/stops/302362"], ["https://data.delijn.be/stops/102996", "https://data.delijn.be/stops/106823"], ["https://data.delijn.be/stops/302316", "https://data.delijn.be/stops/304083"], ["https://data.delijn.be/stops/105559", "https://data.delijn.be/stops/105563"], ["https://data.delijn.be/stops/301347", "https://data.delijn.be/stops/306134"], ["https://data.delijn.be/stops/501542", "https://data.delijn.be/stops/502719"], ["https://data.delijn.be/stops/207003", "https://data.delijn.be/stops/207004"], ["https://data.delijn.be/stops/300868", "https://data.delijn.be/stops/300870"], ["https://data.delijn.be/stops/506124", "https://data.delijn.be/stops/506126"], ["https://data.delijn.be/stops/301376", "https://data.delijn.be/stops/306138"], ["https://data.delijn.be/stops/206370", "https://data.delijn.be/stops/207357"], ["https://data.delijn.be/stops/501351", "https://data.delijn.be/stops/506501"], ["https://data.delijn.be/stops/208507", "https://data.delijn.be/stops/208660"], ["https://data.delijn.be/stops/401118", "https://data.delijn.be/stops/401139"], ["https://data.delijn.be/stops/102400", "https://data.delijn.be/stops/108905"], ["https://data.delijn.be/stops/407802", "https://data.delijn.be/stops/407848"], ["https://data.delijn.be/stops/502008", "https://data.delijn.be/stops/507011"], ["https://data.delijn.be/stops/404350", "https://data.delijn.be/stops/404358"], ["https://data.delijn.be/stops/200914", "https://data.delijn.be/stops/203087"], ["https://data.delijn.be/stops/202205", "https://data.delijn.be/stops/203205"], ["https://data.delijn.be/stops/200167", "https://data.delijn.be/stops/202617"], ["https://data.delijn.be/stops/406509", "https://data.delijn.be/stops/406514"], ["https://data.delijn.be/stops/405335", "https://data.delijn.be/stops/302853"], ["https://data.delijn.be/stops/503466", "https://data.delijn.be/stops/503474"], ["https://data.delijn.be/stops/300827", "https://data.delijn.be/stops/305448"], ["https://data.delijn.be/stops/501266", "https://data.delijn.be/stops/506271"], ["https://data.delijn.be/stops/103613", "https://data.delijn.be/stops/103616"], ["https://data.delijn.be/stops/201818", "https://data.delijn.be/stops/209257"], ["https://data.delijn.be/stops/300641", "https://data.delijn.be/stops/301917"], ["https://data.delijn.be/stops/102222", "https://data.delijn.be/stops/105651"], ["https://data.delijn.be/stops/407945", "https://data.delijn.be/stops/407993"], ["https://data.delijn.be/stops/102355", "https://data.delijn.be/stops/102872"], ["https://data.delijn.be/stops/504082", "https://data.delijn.be/stops/505803"], ["https://data.delijn.be/stops/308686", "https://data.delijn.be/stops/308828"], ["https://data.delijn.be/stops/404108", "https://data.delijn.be/stops/404209"], ["https://data.delijn.be/stops/401676", "https://data.delijn.be/stops/308169"], ["https://data.delijn.be/stops/109640", "https://data.delijn.be/stops/109661"], ["https://data.delijn.be/stops/508628", "https://data.delijn.be/stops/590008"], ["https://data.delijn.be/stops/307383", "https://data.delijn.be/stops/308273"], ["https://data.delijn.be/stops/303653", "https://data.delijn.be/stops/308529"], ["https://data.delijn.be/stops/504607", "https://data.delijn.be/stops/509607"], ["https://data.delijn.be/stops/105329", "https://data.delijn.be/stops/204027"], ["https://data.delijn.be/stops/402506", "https://data.delijn.be/stops/402510"], ["https://data.delijn.be/stops/109082", "https://data.delijn.be/stops/109313"], ["https://data.delijn.be/stops/302781", "https://data.delijn.be/stops/307781"], ["https://data.delijn.be/stops/200172", "https://data.delijn.be/stops/201514"], ["https://data.delijn.be/stops/201184", "https://data.delijn.be/stops/201239"], ["https://data.delijn.be/stops/303194", "https://data.delijn.be/stops/303200"], ["https://data.delijn.be/stops/408273", "https://data.delijn.be/stops/408412"], ["https://data.delijn.be/stops/301557", "https://data.delijn.be/stops/308086"], ["https://data.delijn.be/stops/403267", "https://data.delijn.be/stops/410222"], ["https://data.delijn.be/stops/203264", "https://data.delijn.be/stops/203265"], ["https://data.delijn.be/stops/403962", "https://data.delijn.be/stops/403963"], ["https://data.delijn.be/stops/404920", "https://data.delijn.be/stops/404926"], ["https://data.delijn.be/stops/202848", "https://data.delijn.be/stops/218002"], ["https://data.delijn.be/stops/102874", "https://data.delijn.be/stops/105010"], ["https://data.delijn.be/stops/101527", "https://data.delijn.be/stops/109644"], ["https://data.delijn.be/stops/107567", "https://data.delijn.be/stops/107570"], ["https://data.delijn.be/stops/203796", "https://data.delijn.be/stops/203797"], ["https://data.delijn.be/stops/301886", "https://data.delijn.be/stops/305465"], ["https://data.delijn.be/stops/201907", "https://data.delijn.be/stops/203179"], ["https://data.delijn.be/stops/204925", "https://data.delijn.be/stops/205924"], ["https://data.delijn.be/stops/403209", "https://data.delijn.be/stops/403402"], ["https://data.delijn.be/stops/104854", "https://data.delijn.be/stops/107908"], ["https://data.delijn.be/stops/402103", "https://data.delijn.be/stops/402348"], ["https://data.delijn.be/stops/402175", "https://data.delijn.be/stops/402221"], ["https://data.delijn.be/stops/208470", "https://data.delijn.be/stops/209462"], ["https://data.delijn.be/stops/207783", "https://data.delijn.be/stops/209189"], ["https://data.delijn.be/stops/505719", "https://data.delijn.be/stops/508489"], ["https://data.delijn.be/stops/400601", "https://data.delijn.be/stops/400628"], ["https://data.delijn.be/stops/303081", "https://data.delijn.be/stops/303111"], ["https://data.delijn.be/stops/501307", "https://data.delijn.be/stops/501519"], ["https://data.delijn.be/stops/206721", "https://data.delijn.be/stops/206849"], ["https://data.delijn.be/stops/202147", "https://data.delijn.be/stops/203147"], ["https://data.delijn.be/stops/200839", "https://data.delijn.be/stops/200886"], ["https://data.delijn.be/stops/402956", "https://data.delijn.be/stops/405136"], ["https://data.delijn.be/stops/200670", "https://data.delijn.be/stops/204997"], ["https://data.delijn.be/stops/402592", "https://data.delijn.be/stops/402639"], ["https://data.delijn.be/stops/504563", "https://data.delijn.be/stops/505927"], ["https://data.delijn.be/stops/209772", "https://data.delijn.be/stops/209773"], ["https://data.delijn.be/stops/504031", "https://data.delijn.be/stops/509031"], ["https://data.delijn.be/stops/302228", "https://data.delijn.be/stops/308981"], ["https://data.delijn.be/stops/208127", "https://data.delijn.be/stops/208669"], ["https://data.delijn.be/stops/200643", "https://data.delijn.be/stops/201606"], ["https://data.delijn.be/stops/408334", "https://data.delijn.be/stops/410159"], ["https://data.delijn.be/stops/407747", "https://data.delijn.be/stops/409788"], ["https://data.delijn.be/stops/203077", "https://data.delijn.be/stops/211075"], ["https://data.delijn.be/stops/505658", "https://data.delijn.be/stops/505756"], ["https://data.delijn.be/stops/109495", "https://data.delijn.be/stops/109497"], ["https://data.delijn.be/stops/101313", "https://data.delijn.be/stops/101616"], ["https://data.delijn.be/stops/204049", "https://data.delijn.be/stops/205065"], ["https://data.delijn.be/stops/502006", "https://data.delijn.be/stops/505024"], ["https://data.delijn.be/stops/304893", "https://data.delijn.be/stops/304911"], ["https://data.delijn.be/stops/104052", "https://data.delijn.be/stops/108411"], ["https://data.delijn.be/stops/202217", "https://data.delijn.be/stops/202218"], ["https://data.delijn.be/stops/301412", "https://data.delijn.be/stops/301414"], ["https://data.delijn.be/stops/402491", "https://data.delijn.be/stops/402492"], ["https://data.delijn.be/stops/305231", "https://data.delijn.be/stops/305284"], ["https://data.delijn.be/stops/305456", "https://data.delijn.be/stops/306638"], ["https://data.delijn.be/stops/300594", "https://data.delijn.be/stops/303021"], ["https://data.delijn.be/stops/206246", "https://data.delijn.be/stops/207246"], ["https://data.delijn.be/stops/506115", "https://data.delijn.be/stops/506662"], ["https://data.delijn.be/stops/106202", "https://data.delijn.be/stops/106205"], ["https://data.delijn.be/stops/502175", "https://data.delijn.be/stops/507175"], ["https://data.delijn.be/stops/308414", "https://data.delijn.be/stops/308424"], ["https://data.delijn.be/stops/409782", "https://data.delijn.be/stops/409785"], ["https://data.delijn.be/stops/207761", "https://data.delijn.be/stops/207783"], ["https://data.delijn.be/stops/500565", "https://data.delijn.be/stops/500566"], ["https://data.delijn.be/stops/300103", "https://data.delijn.be/stops/300104"], ["https://data.delijn.be/stops/200133", "https://data.delijn.be/stops/202452"], ["https://data.delijn.be/stops/503578", "https://data.delijn.be/stops/508578"], ["https://data.delijn.be/stops/402764", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/401458", "https://data.delijn.be/stops/407120"], ["https://data.delijn.be/stops/105170", "https://data.delijn.be/stops/107212"], ["https://data.delijn.be/stops/403001", "https://data.delijn.be/stops/403073"], ["https://data.delijn.be/stops/206839", "https://data.delijn.be/stops/207572"], ["https://data.delijn.be/stops/307218", "https://data.delijn.be/stops/307283"], ["https://data.delijn.be/stops/201012", "https://data.delijn.be/stops/211021"], ["https://data.delijn.be/stops/109996", "https://data.delijn.be/stops/410261"], ["https://data.delijn.be/stops/303949", "https://data.delijn.be/stops/304178"], ["https://data.delijn.be/stops/201474", "https://data.delijn.be/stops/210057"], ["https://data.delijn.be/stops/303465", "https://data.delijn.be/stops/308636"], ["https://data.delijn.be/stops/405070", "https://data.delijn.be/stops/405071"], ["https://data.delijn.be/stops/204510", "https://data.delijn.be/stops/205449"], ["https://data.delijn.be/stops/109459", "https://data.delijn.be/stops/109461"], ["https://data.delijn.be/stops/105538", "https://data.delijn.be/stops/105539"], ["https://data.delijn.be/stops/109511", "https://data.delijn.be/stops/109512"], ["https://data.delijn.be/stops/106035", "https://data.delijn.be/stops/106045"], ["https://data.delijn.be/stops/503777", "https://data.delijn.be/stops/508777"], ["https://data.delijn.be/stops/103227", "https://data.delijn.be/stops/103598"], ["https://data.delijn.be/stops/102224", "https://data.delijn.be/stops/102228"], ["https://data.delijn.be/stops/301335", "https://data.delijn.be/stops/306120"], ["https://data.delijn.be/stops/201680", "https://data.delijn.be/stops/202403"], ["https://data.delijn.be/stops/402205", "https://data.delijn.be/stops/402333"], ["https://data.delijn.be/stops/410147", "https://data.delijn.be/stops/410351"], ["https://data.delijn.be/stops/101484", "https://data.delijn.be/stops/108747"], ["https://data.delijn.be/stops/307759", "https://data.delijn.be/stops/307760"], ["https://data.delijn.be/stops/305282", "https://data.delijn.be/stops/305293"], ["https://data.delijn.be/stops/401296", "https://data.delijn.be/stops/401368"], ["https://data.delijn.be/stops/106318", "https://data.delijn.be/stops/106319"], ["https://data.delijn.be/stops/502370", "https://data.delijn.be/stops/507369"], ["https://data.delijn.be/stops/102718", "https://data.delijn.be/stops/107187"], ["https://data.delijn.be/stops/403177", "https://data.delijn.be/stops/403205"], ["https://data.delijn.be/stops/206735", "https://data.delijn.be/stops/207616"], ["https://data.delijn.be/stops/404560", "https://data.delijn.be/stops/404562"], ["https://data.delijn.be/stops/308055", "https://data.delijn.be/stops/308057"], ["https://data.delijn.be/stops/405048", "https://data.delijn.be/stops/405112"], ["https://data.delijn.be/stops/206650", "https://data.delijn.be/stops/207411"], ["https://data.delijn.be/stops/301644", "https://data.delijn.be/stops/304180"], ["https://data.delijn.be/stops/503993", "https://data.delijn.be/stops/508993"], ["https://data.delijn.be/stops/203592", "https://data.delijn.be/stops/203593"], ["https://data.delijn.be/stops/308606", "https://data.delijn.be/stops/308607"], ["https://data.delijn.be/stops/200134", "https://data.delijn.be/stops/201133"], ["https://data.delijn.be/stops/103800", "https://data.delijn.be/stops/104127"], ["https://data.delijn.be/stops/103478", "https://data.delijn.be/stops/109217"], ["https://data.delijn.be/stops/206156", "https://data.delijn.be/stops/207810"], ["https://data.delijn.be/stops/301065", "https://data.delijn.be/stops/301269"], ["https://data.delijn.be/stops/303744", "https://data.delijn.be/stops/303745"], ["https://data.delijn.be/stops/400788", "https://data.delijn.be/stops/400789"], ["https://data.delijn.be/stops/505258", "https://data.delijn.be/stops/508673"], ["https://data.delijn.be/stops/402133", "https://data.delijn.be/stops/402143"], ["https://data.delijn.be/stops/108359", "https://data.delijn.be/stops/108502"], ["https://data.delijn.be/stops/101086", "https://data.delijn.be/stops/104458"], ["https://data.delijn.be/stops/203577", "https://data.delijn.be/stops/203578"], ["https://data.delijn.be/stops/403045", "https://data.delijn.be/stops/403091"], ["https://data.delijn.be/stops/300045", "https://data.delijn.be/stops/307825"], ["https://data.delijn.be/stops/101008", "https://data.delijn.be/stops/101138"], ["https://data.delijn.be/stops/106125", "https://data.delijn.be/stops/106237"], ["https://data.delijn.be/stops/204664", "https://data.delijn.be/stops/204687"], ["https://data.delijn.be/stops/507013", "https://data.delijn.be/stops/507154"], ["https://data.delijn.be/stops/507255", "https://data.delijn.be/stops/509207"], ["https://data.delijn.be/stops/300999", "https://data.delijn.be/stops/301000"], ["https://data.delijn.be/stops/209200", "https://data.delijn.be/stops/209201"], ["https://data.delijn.be/stops/303115", "https://data.delijn.be/stops/304237"], ["https://data.delijn.be/stops/504367", "https://data.delijn.be/stops/509369"], ["https://data.delijn.be/stops/105281", "https://data.delijn.be/stops/105298"], ["https://data.delijn.be/stops/501015", "https://data.delijn.be/stops/501016"], ["https://data.delijn.be/stops/201214", "https://data.delijn.be/stops/203546"], ["https://data.delijn.be/stops/101506", "https://data.delijn.be/stops/101508"], ["https://data.delijn.be/stops/305700", "https://data.delijn.be/stops/305701"], ["https://data.delijn.be/stops/105157", "https://data.delijn.be/stops/105158"], ["https://data.delijn.be/stops/105578", "https://data.delijn.be/stops/105584"], ["https://data.delijn.be/stops/401509", "https://data.delijn.be/stops/401566"], ["https://data.delijn.be/stops/404523", "https://data.delijn.be/stops/404585"], ["https://data.delijn.be/stops/207670", "https://data.delijn.be/stops/209482"], ["https://data.delijn.be/stops/105515", "https://data.delijn.be/stops/105725"], ["https://data.delijn.be/stops/401475", "https://data.delijn.be/stops/410146"], ["https://data.delijn.be/stops/206498", "https://data.delijn.be/stops/206991"], ["https://data.delijn.be/stops/102851", "https://data.delijn.be/stops/106776"], ["https://data.delijn.be/stops/300781", "https://data.delijn.be/stops/301017"], ["https://data.delijn.be/stops/504077", "https://data.delijn.be/stops/505940"], ["https://data.delijn.be/stops/304456", "https://data.delijn.be/stops/307694"], ["https://data.delijn.be/stops/300428", "https://data.delijn.be/stops/301262"], ["https://data.delijn.be/stops/403267", "https://data.delijn.be/stops/403268"], ["https://data.delijn.be/stops/208524", "https://data.delijn.be/stops/209524"], ["https://data.delijn.be/stops/400684", "https://data.delijn.be/stops/404472"], ["https://data.delijn.be/stops/503506", "https://data.delijn.be/stops/505297"], ["https://data.delijn.be/stops/406219", "https://data.delijn.be/stops/409407"], ["https://data.delijn.be/stops/407556", "https://data.delijn.be/stops/407558"], ["https://data.delijn.be/stops/106002", "https://data.delijn.be/stops/106003"], ["https://data.delijn.be/stops/409302", "https://data.delijn.be/stops/409303"], ["https://data.delijn.be/stops/107068", "https://data.delijn.be/stops/107071"], ["https://data.delijn.be/stops/308174", "https://data.delijn.be/stops/308177"], ["https://data.delijn.be/stops/202825", "https://data.delijn.be/stops/203826"], ["https://data.delijn.be/stops/304016", "https://data.delijn.be/stops/307504"], ["https://data.delijn.be/stops/405379", "https://data.delijn.be/stops/405380"], ["https://data.delijn.be/stops/301635", "https://data.delijn.be/stops/301637"], ["https://data.delijn.be/stops/400053", "https://data.delijn.be/stops/409163"], ["https://data.delijn.be/stops/404914", "https://data.delijn.be/stops/404946"], ["https://data.delijn.be/stops/203369", "https://data.delijn.be/stops/203587"], ["https://data.delijn.be/stops/200101", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/401440", "https://data.delijn.be/stops/408280"], ["https://data.delijn.be/stops/202378", "https://data.delijn.be/stops/202379"], ["https://data.delijn.be/stops/301945", "https://data.delijn.be/stops/307895"], ["https://data.delijn.be/stops/504116", "https://data.delijn.be/stops/509643"], ["https://data.delijn.be/stops/400402", "https://data.delijn.be/stops/405864"], ["https://data.delijn.be/stops/104335", "https://data.delijn.be/stops/108375"], ["https://data.delijn.be/stops/501156", "https://data.delijn.be/stops/505621"], ["https://data.delijn.be/stops/204313", "https://data.delijn.be/stops/204708"], ["https://data.delijn.be/stops/408681", "https://data.delijn.be/stops/408798"], ["https://data.delijn.be/stops/504119", "https://data.delijn.be/stops/509718"], ["https://data.delijn.be/stops/303460", "https://data.delijn.be/stops/303486"], ["https://data.delijn.be/stops/303484", "https://data.delijn.be/stops/308739"], ["https://data.delijn.be/stops/507447", "https://data.delijn.be/stops/507662"], ["https://data.delijn.be/stops/508745", "https://data.delijn.be/stops/508747"], ["https://data.delijn.be/stops/408852", "https://data.delijn.be/stops/408857"], ["https://data.delijn.be/stops/305148", "https://data.delijn.be/stops/305149"], ["https://data.delijn.be/stops/504326", "https://data.delijn.be/stops/504634"], ["https://data.delijn.be/stops/402177", "https://data.delijn.be/stops/402363"], ["https://data.delijn.be/stops/204115", "https://data.delijn.be/stops/204690"], ["https://data.delijn.be/stops/403091", "https://data.delijn.be/stops/410336"], ["https://data.delijn.be/stops/500604", "https://data.delijn.be/stops/501533"], ["https://data.delijn.be/stops/300327", "https://data.delijn.be/stops/307030"], ["https://data.delijn.be/stops/301327", "https://data.delijn.be/stops/301380"], ["https://data.delijn.be/stops/301389", "https://data.delijn.be/stops/306153"], ["https://data.delijn.be/stops/501303", "https://data.delijn.be/stops/506391"], ["https://data.delijn.be/stops/204660", "https://data.delijn.be/stops/205660"], ["https://data.delijn.be/stops/403431", "https://data.delijn.be/stops/403498"], ["https://data.delijn.be/stops/306178", "https://data.delijn.be/stops/306388"], ["https://data.delijn.be/stops/202209", "https://data.delijn.be/stops/203209"], ["https://data.delijn.be/stops/306612", "https://data.delijn.be/stops/306614"], ["https://data.delijn.be/stops/304889", "https://data.delijn.be/stops/306713"], ["https://data.delijn.be/stops/208174", "https://data.delijn.be/stops/208759"], ["https://data.delijn.be/stops/406699", "https://data.delijn.be/stops/406987"], ["https://data.delijn.be/stops/403144", "https://data.delijn.be/stops/407586"], ["https://data.delijn.be/stops/105134", "https://data.delijn.be/stops/305614"], ["https://data.delijn.be/stops/405594", "https://data.delijn.be/stops/405595"], ["https://data.delijn.be/stops/201751", "https://data.delijn.be/stops/208679"], ["https://data.delijn.be/stops/304383", "https://data.delijn.be/stops/304384"], ["https://data.delijn.be/stops/208241", "https://data.delijn.be/stops/209241"], ["https://data.delijn.be/stops/305613", "https://data.delijn.be/stops/305619"], ["https://data.delijn.be/stops/102420", "https://data.delijn.be/stops/105155"], ["https://data.delijn.be/stops/302411", "https://data.delijn.be/stops/308814"], ["https://data.delijn.be/stops/503078", "https://data.delijn.be/stops/508078"], ["https://data.delijn.be/stops/305692", "https://data.delijn.be/stops/305699"], ["https://data.delijn.be/stops/302668", "https://data.delijn.be/stops/302679"], ["https://data.delijn.be/stops/503699", "https://data.delijn.be/stops/508709"], ["https://data.delijn.be/stops/300396", "https://data.delijn.be/stops/306065"], ["https://data.delijn.be/stops/403293", "https://data.delijn.be/stops/405636"], ["https://data.delijn.be/stops/104377", "https://data.delijn.be/stops/204271"], ["https://data.delijn.be/stops/501447", "https://data.delijn.be/stops/506447"], ["https://data.delijn.be/stops/301626", "https://data.delijn.be/stops/301641"], ["https://data.delijn.be/stops/205910", "https://data.delijn.be/stops/205913"], ["https://data.delijn.be/stops/400436", "https://data.delijn.be/stops/406768"], ["https://data.delijn.be/stops/300293", "https://data.delijn.be/stops/306092"], ["https://data.delijn.be/stops/304073", "https://data.delijn.be/stops/304074"], ["https://data.delijn.be/stops/405582", "https://data.delijn.be/stops/405583"], ["https://data.delijn.be/stops/505562", "https://data.delijn.be/stops/508640"], ["https://data.delijn.be/stops/201644", "https://data.delijn.be/stops/201645"], ["https://data.delijn.be/stops/502202", "https://data.delijn.be/stops/503948"], ["https://data.delijn.be/stops/405304", "https://data.delijn.be/stops/410151"], ["https://data.delijn.be/stops/300481", "https://data.delijn.be/stops/300534"], ["https://data.delijn.be/stops/503541", "https://data.delijn.be/stops/508541"], ["https://data.delijn.be/stops/500119", "https://data.delijn.be/stops/502466"], ["https://data.delijn.be/stops/202389", "https://data.delijn.be/stops/209947"], ["https://data.delijn.be/stops/102724", "https://data.delijn.be/stops/109880"], ["https://data.delijn.be/stops/409801", "https://data.delijn.be/stops/410194"], ["https://data.delijn.be/stops/303663", "https://data.delijn.be/stops/304947"], ["https://data.delijn.be/stops/501104", "https://data.delijn.be/stops/501493"], ["https://data.delijn.be/stops/101705", "https://data.delijn.be/stops/102162"], ["https://data.delijn.be/stops/305155", "https://data.delijn.be/stops/306880"], ["https://data.delijn.be/stops/404222", "https://data.delijn.be/stops/404239"], ["https://data.delijn.be/stops/101135", "https://data.delijn.be/stops/103330"], ["https://data.delijn.be/stops/104667", "https://data.delijn.be/stops/104883"], ["https://data.delijn.be/stops/107132", "https://data.delijn.be/stops/109650"], ["https://data.delijn.be/stops/104046", "https://data.delijn.be/stops/108401"], ["https://data.delijn.be/stops/302121", "https://data.delijn.be/stops/304133"], ["https://data.delijn.be/stops/406152", "https://data.delijn.be/stops/406153"], ["https://data.delijn.be/stops/400353", "https://data.delijn.be/stops/400369"], ["https://data.delijn.be/stops/305286", "https://data.delijn.be/stops/305291"], ["https://data.delijn.be/stops/208642", "https://data.delijn.be/stops/210027"], ["https://data.delijn.be/stops/404444", "https://data.delijn.be/stops/404445"], ["https://data.delijn.be/stops/303307", "https://data.delijn.be/stops/303344"], ["https://data.delijn.be/stops/108488", "https://data.delijn.be/stops/307234"], ["https://data.delijn.be/stops/405786", "https://data.delijn.be/stops/405879"], ["https://data.delijn.be/stops/406272", "https://data.delijn.be/stops/408864"], ["https://data.delijn.be/stops/208557", "https://data.delijn.be/stops/209557"], ["https://data.delijn.be/stops/300120", "https://data.delijn.be/stops/300132"], ["https://data.delijn.be/stops/203464", "https://data.delijn.be/stops/203467"], ["https://data.delijn.be/stops/206673", "https://data.delijn.be/stops/208169"], ["https://data.delijn.be/stops/102808", "https://data.delijn.be/stops/102866"], ["https://data.delijn.be/stops/504131", "https://data.delijn.be/stops/504740"], ["https://data.delijn.be/stops/300941", "https://data.delijn.be/stops/307795"], ["https://data.delijn.be/stops/104852", "https://data.delijn.be/stops/305806"], ["https://data.delijn.be/stops/503106", "https://data.delijn.be/stops/508106"], ["https://data.delijn.be/stops/408185", "https://data.delijn.be/stops/408186"], ["https://data.delijn.be/stops/301110", "https://data.delijn.be/stops/307634"], ["https://data.delijn.be/stops/303543", "https://data.delijn.be/stops/303559"], ["https://data.delijn.be/stops/202590", "https://data.delijn.be/stops/202591"], ["https://data.delijn.be/stops/401003", "https://data.delijn.be/stops/401153"], ["https://data.delijn.be/stops/302253", "https://data.delijn.be/stops/302268"], ["https://data.delijn.be/stops/501192", "https://data.delijn.be/stops/501193"], ["https://data.delijn.be/stops/302906", "https://data.delijn.be/stops/304329"], ["https://data.delijn.be/stops/200249", "https://data.delijn.be/stops/201525"], ["https://data.delijn.be/stops/305568", "https://data.delijn.be/stops/308829"], ["https://data.delijn.be/stops/405716", "https://data.delijn.be/stops/410144"], ["https://data.delijn.be/stops/404873", "https://data.delijn.be/stops/405546"], ["https://data.delijn.be/stops/104056", "https://data.delijn.be/stops/108141"], ["https://data.delijn.be/stops/200022", "https://data.delijn.be/stops/200071"], ["https://data.delijn.be/stops/403335", "https://data.delijn.be/stops/407041"], ["https://data.delijn.be/stops/404735", "https://data.delijn.be/stops/404753"], ["https://data.delijn.be/stops/206270", "https://data.delijn.be/stops/207270"], ["https://data.delijn.be/stops/206015", "https://data.delijn.be/stops/206267"], ["https://data.delijn.be/stops/303790", "https://data.delijn.be/stops/303876"], ["https://data.delijn.be/stops/102813", "https://data.delijn.be/stops/102814"], ["https://data.delijn.be/stops/208203", "https://data.delijn.be/stops/209778"], ["https://data.delijn.be/stops/109038", "https://data.delijn.be/stops/109039"], ["https://data.delijn.be/stops/202619", "https://data.delijn.be/stops/203596"], ["https://data.delijn.be/stops/502393", "https://data.delijn.be/stops/502394"], ["https://data.delijn.be/stops/503212", "https://data.delijn.be/stops/508212"], ["https://data.delijn.be/stops/408622", "https://data.delijn.be/stops/408770"], ["https://data.delijn.be/stops/503016", "https://data.delijn.be/stops/508020"], ["https://data.delijn.be/stops/300571", "https://data.delijn.be/stops/307856"], ["https://data.delijn.be/stops/105054", "https://data.delijn.be/stops/304041"], ["https://data.delijn.be/stops/500018", "https://data.delijn.be/stops/502453"], ["https://data.delijn.be/stops/200315", "https://data.delijn.be/stops/201315"], ["https://data.delijn.be/stops/106719", "https://data.delijn.be/stops/106721"], ["https://data.delijn.be/stops/500558", "https://data.delijn.be/stops/506033"], ["https://data.delijn.be/stops/107481", "https://data.delijn.be/stops/107483"], ["https://data.delijn.be/stops/102756", "https://data.delijn.be/stops/103343"], ["https://data.delijn.be/stops/107787", "https://data.delijn.be/stops/107788"], ["https://data.delijn.be/stops/106267", "https://data.delijn.be/stops/106268"], ["https://data.delijn.be/stops/102979", "https://data.delijn.be/stops/103078"], ["https://data.delijn.be/stops/203861", "https://data.delijn.be/stops/208700"], ["https://data.delijn.be/stops/101804", "https://data.delijn.be/stops/107983"], ["https://data.delijn.be/stops/302390", "https://data.delijn.be/stops/302672"], ["https://data.delijn.be/stops/405948", "https://data.delijn.be/stops/405998"], ["https://data.delijn.be/stops/107015", "https://data.delijn.be/stops/108650"], ["https://data.delijn.be/stops/404229", "https://data.delijn.be/stops/404553"], ["https://data.delijn.be/stops/407040", "https://data.delijn.be/stops/409203"], ["https://data.delijn.be/stops/202380", "https://data.delijn.be/stops/203380"], ["https://data.delijn.be/stops/102832", "https://data.delijn.be/stops/104982"], ["https://data.delijn.be/stops/101357", "https://data.delijn.be/stops/101358"], ["https://data.delijn.be/stops/302922", "https://data.delijn.be/stops/302923"], ["https://data.delijn.be/stops/409304", "https://data.delijn.be/stops/409331"], ["https://data.delijn.be/stops/407615", "https://data.delijn.be/stops/407618"], ["https://data.delijn.be/stops/103944", "https://data.delijn.be/stops/107326"], ["https://data.delijn.be/stops/407770", "https://data.delijn.be/stops/307367"], ["https://data.delijn.be/stops/202272", "https://data.delijn.be/stops/203276"], ["https://data.delijn.be/stops/507032", "https://data.delijn.be/stops/507055"], ["https://data.delijn.be/stops/104742", "https://data.delijn.be/stops/104746"], ["https://data.delijn.be/stops/507171", "https://data.delijn.be/stops/507341"], ["https://data.delijn.be/stops/106797", "https://data.delijn.be/stops/106874"], ["https://data.delijn.be/stops/503842", "https://data.delijn.be/stops/508842"], ["https://data.delijn.be/stops/405276", "https://data.delijn.be/stops/409662"], ["https://data.delijn.be/stops/305101", "https://data.delijn.be/stops/305111"], ["https://data.delijn.be/stops/305242", "https://data.delijn.be/stops/308695"], ["https://data.delijn.be/stops/507190", "https://data.delijn.be/stops/507198"], ["https://data.delijn.be/stops/308545", "https://data.delijn.be/stops/308586"], ["https://data.delijn.be/stops/402718", "https://data.delijn.be/stops/402719"], ["https://data.delijn.be/stops/202327", "https://data.delijn.be/stops/202425"], ["https://data.delijn.be/stops/203165", "https://data.delijn.be/stops/205073"], ["https://data.delijn.be/stops/201892", "https://data.delijn.be/stops/203934"], ["https://data.delijn.be/stops/101808", "https://data.delijn.be/stops/109761"], ["https://data.delijn.be/stops/301990", "https://data.delijn.be/stops/303163"], ["https://data.delijn.be/stops/200924", "https://data.delijn.be/stops/202702"], ["https://data.delijn.be/stops/102555", "https://data.delijn.be/stops/102560"], ["https://data.delijn.be/stops/407658", "https://data.delijn.be/stops/407662"], ["https://data.delijn.be/stops/501203", "https://data.delijn.be/stops/506257"], ["https://data.delijn.be/stops/509175", "https://data.delijn.be/stops/509477"], ["https://data.delijn.be/stops/301852", "https://data.delijn.be/stops/301853"], ["https://data.delijn.be/stops/305749", "https://data.delijn.be/stops/306332"], ["https://data.delijn.be/stops/408416", "https://data.delijn.be/stops/408417"], ["https://data.delijn.be/stops/101484", "https://data.delijn.be/stops/101492"], ["https://data.delijn.be/stops/503754", "https://data.delijn.be/stops/508754"], ["https://data.delijn.be/stops/209117", "https://data.delijn.be/stops/209332"], ["https://data.delijn.be/stops/406599", "https://data.delijn.be/stops/406609"], ["https://data.delijn.be/stops/102435", "https://data.delijn.be/stops/107980"], ["https://data.delijn.be/stops/502231", "https://data.delijn.be/stops/502236"], ["https://data.delijn.be/stops/109201", "https://data.delijn.be/stops/109202"], ["https://data.delijn.be/stops/502145", "https://data.delijn.be/stops/507145"], ["https://data.delijn.be/stops/301982", "https://data.delijn.be/stops/301983"], ["https://data.delijn.be/stops/201443", "https://data.delijn.be/stops/203134"], ["https://data.delijn.be/stops/502048", "https://data.delijn.be/stops/507029"], ["https://data.delijn.be/stops/106225", "https://data.delijn.be/stops/106228"], ["https://data.delijn.be/stops/303639", "https://data.delijn.be/stops/304808"], ["https://data.delijn.be/stops/407000", "https://data.delijn.be/stops/301525"], ["https://data.delijn.be/stops/302567", "https://data.delijn.be/stops/308119"], ["https://data.delijn.be/stops/203598", "https://data.delijn.be/stops/203599"], ["https://data.delijn.be/stops/302282", "https://data.delijn.be/stops/302283"], ["https://data.delijn.be/stops/401426", "https://data.delijn.be/stops/401489"], ["https://data.delijn.be/stops/504013", "https://data.delijn.be/stops/505298"], ["https://data.delijn.be/stops/106678", "https://data.delijn.be/stops/106679"], ["https://data.delijn.be/stops/404137", "https://data.delijn.be/stops/404160"], ["https://data.delijn.be/stops/301104", "https://data.delijn.be/stops/302953"], ["https://data.delijn.be/stops/101787", "https://data.delijn.be/stops/109144"], ["https://data.delijn.be/stops/301511", "https://data.delijn.be/stops/308750"], ["https://data.delijn.be/stops/106766", "https://data.delijn.be/stops/106768"], ["https://data.delijn.be/stops/202003", "https://data.delijn.be/stops/202022"], ["https://data.delijn.be/stops/407036", "https://data.delijn.be/stops/407061"], ["https://data.delijn.be/stops/207677", "https://data.delijn.be/stops/209134"], ["https://data.delijn.be/stops/300164", "https://data.delijn.be/stops/301229"], ["https://data.delijn.be/stops/402082", "https://data.delijn.be/stops/408469"], ["https://data.delijn.be/stops/200246", "https://data.delijn.be/stops/200426"], ["https://data.delijn.be/stops/401539", "https://data.delijn.be/stops/401892"], ["https://data.delijn.be/stops/301370", "https://data.delijn.be/stops/306683"], ["https://data.delijn.be/stops/501468", "https://data.delijn.be/stops/506468"], ["https://data.delijn.be/stops/408320", "https://data.delijn.be/stops/408334"], ["https://data.delijn.be/stops/200664", "https://data.delijn.be/stops/200665"], ["https://data.delijn.be/stops/102880", "https://data.delijn.be/stops/106060"], ["https://data.delijn.be/stops/304833", "https://data.delijn.be/stops/307830"], ["https://data.delijn.be/stops/102757", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/105767", "https://data.delijn.be/stops/109806"], ["https://data.delijn.be/stops/200662", "https://data.delijn.be/stops/200663"], ["https://data.delijn.be/stops/105815", "https://data.delijn.be/stops/105816"], ["https://data.delijn.be/stops/202027", "https://data.delijn.be/stops/202028"], ["https://data.delijn.be/stops/502367", "https://data.delijn.be/stops/502426"], ["https://data.delijn.be/stops/200959", "https://data.delijn.be/stops/202519"], ["https://data.delijn.be/stops/303863", "https://data.delijn.be/stops/303864"], ["https://data.delijn.be/stops/202437", "https://data.delijn.be/stops/204559"], ["https://data.delijn.be/stops/504066", "https://data.delijn.be/stops/509063"], ["https://data.delijn.be/stops/204580", "https://data.delijn.be/stops/204799"], ["https://data.delijn.be/stops/208428", "https://data.delijn.be/stops/208429"], ["https://data.delijn.be/stops/102417", "https://data.delijn.be/stops/105583"], ["https://data.delijn.be/stops/109137", "https://data.delijn.be/stops/109139"], ["https://data.delijn.be/stops/302599", "https://data.delijn.be/stops/302642"], ["https://data.delijn.be/stops/504547", "https://data.delijn.be/stops/505991"], ["https://data.delijn.be/stops/300294", "https://data.delijn.be/stops/306092"], ["https://data.delijn.be/stops/300392", "https://data.delijn.be/stops/301995"], ["https://data.delijn.be/stops/300058", "https://data.delijn.be/stops/307728"], ["https://data.delijn.be/stops/204110", "https://data.delijn.be/stops/204350"], ["https://data.delijn.be/stops/401089", "https://data.delijn.be/stops/401152"], ["https://data.delijn.be/stops/407144", "https://data.delijn.be/stops/407280"], ["https://data.delijn.be/stops/504150", "https://data.delijn.be/stops/509741"], ["https://data.delijn.be/stops/404503", "https://data.delijn.be/stops/404585"], ["https://data.delijn.be/stops/202982", "https://data.delijn.be/stops/203983"], ["https://data.delijn.be/stops/305892", "https://data.delijn.be/stops/306383"], ["https://data.delijn.be/stops/108283", "https://data.delijn.be/stops/109341"], ["https://data.delijn.be/stops/405057", "https://data.delijn.be/stops/405059"], ["https://data.delijn.be/stops/201848", "https://data.delijn.be/stops/210022"], ["https://data.delijn.be/stops/208685", "https://data.delijn.be/stops/208686"], ["https://data.delijn.be/stops/502656", "https://data.delijn.be/stops/505335"], ["https://data.delijn.be/stops/408380", "https://data.delijn.be/stops/409644"], ["https://data.delijn.be/stops/506181", "https://data.delijn.be/stops/506781"], ["https://data.delijn.be/stops/202678", "https://data.delijn.be/stops/203691"], ["https://data.delijn.be/stops/407631", "https://data.delijn.be/stops/407657"], ["https://data.delijn.be/stops/505241", "https://data.delijn.be/stops/505666"], ["https://data.delijn.be/stops/503546", "https://data.delijn.be/stops/505196"], ["https://data.delijn.be/stops/206723", "https://data.delijn.be/stops/206987"], ["https://data.delijn.be/stops/102579", "https://data.delijn.be/stops/102580"], ["https://data.delijn.be/stops/503335", "https://data.delijn.be/stops/508344"], ["https://data.delijn.be/stops/204020", "https://data.delijn.be/stops/205022"], ["https://data.delijn.be/stops/400274", "https://data.delijn.be/stops/400335"], ["https://data.delijn.be/stops/201033", "https://data.delijn.be/stops/201069"], ["https://data.delijn.be/stops/208125", "https://data.delijn.be/stops/208126"], ["https://data.delijn.be/stops/201678", "https://data.delijn.be/stops/201837"], ["https://data.delijn.be/stops/500950", "https://data.delijn.be/stops/504987"], ["https://data.delijn.be/stops/303894", "https://data.delijn.be/stops/303895"], ["https://data.delijn.be/stops/301374", "https://data.delijn.be/stops/306150"], ["https://data.delijn.be/stops/501121", "https://data.delijn.be/stops/506125"], ["https://data.delijn.be/stops/201677", "https://data.delijn.be/stops/201849"], ["https://data.delijn.be/stops/201265", "https://data.delijn.be/stops/201266"], ["https://data.delijn.be/stops/104639", "https://data.delijn.be/stops/108039"], ["https://data.delijn.be/stops/306335", "https://data.delijn.be/stops/306337"], ["https://data.delijn.be/stops/303056", "https://data.delijn.be/stops/303057"], ["https://data.delijn.be/stops/402040", "https://data.delijn.be/stops/403880"], ["https://data.delijn.be/stops/504954", "https://data.delijn.be/stops/508724"], ["https://data.delijn.be/stops/401043", "https://data.delijn.be/stops/401155"], ["https://data.delijn.be/stops/107461", "https://data.delijn.be/stops/107462"], ["https://data.delijn.be/stops/308718", "https://data.delijn.be/stops/308719"], ["https://data.delijn.be/stops/202541", "https://data.delijn.be/stops/209987"], ["https://data.delijn.be/stops/208451", "https://data.delijn.be/stops/218030"], ["https://data.delijn.be/stops/506142", "https://data.delijn.be/stops/506154"], ["https://data.delijn.be/stops/408318", "https://data.delijn.be/stops/410158"], ["https://data.delijn.be/stops/300413", "https://data.delijn.be/stops/300603"], ["https://data.delijn.be/stops/302196", "https://data.delijn.be/stops/302208"], ["https://data.delijn.be/stops/202579", "https://data.delijn.be/stops/203604"], ["https://data.delijn.be/stops/108513", "https://data.delijn.be/stops/108516"], ["https://data.delijn.be/stops/503336", "https://data.delijn.be/stops/503339"], ["https://data.delijn.be/stops/409358", "https://data.delijn.be/stops/409359"], ["https://data.delijn.be/stops/301363", "https://data.delijn.be/stops/306128"], ["https://data.delijn.be/stops/409369", "https://data.delijn.be/stops/410252"], ["https://data.delijn.be/stops/306801", "https://data.delijn.be/stops/307728"], ["https://data.delijn.be/stops/201125", "https://data.delijn.be/stops/509781"], ["https://data.delijn.be/stops/403478", "https://data.delijn.be/stops/403480"], ["https://data.delijn.be/stops/301967", "https://data.delijn.be/stops/307912"], ["https://data.delijn.be/stops/107542", "https://data.delijn.be/stops/109601"], ["https://data.delijn.be/stops/306846", "https://data.delijn.be/stops/307354"], ["https://data.delijn.be/stops/501483", "https://data.delijn.be/stops/506095"], ["https://data.delijn.be/stops/400244", "https://data.delijn.be/stops/400945"], ["https://data.delijn.be/stops/102189", "https://data.delijn.be/stops/105921"], ["https://data.delijn.be/stops/304130", "https://data.delijn.be/stops/305846"], ["https://data.delijn.be/stops/504255", "https://data.delijn.be/stops/509380"], ["https://data.delijn.be/stops/201213", "https://data.delijn.be/stops/201217"], ["https://data.delijn.be/stops/300282", "https://data.delijn.be/stops/303825"], ["https://data.delijn.be/stops/101198", "https://data.delijn.be/stops/101199"], ["https://data.delijn.be/stops/102827", "https://data.delijn.be/stops/105356"], ["https://data.delijn.be/stops/402036", "https://data.delijn.be/stops/403882"], ["https://data.delijn.be/stops/501063", "https://data.delijn.be/stops/506062"], ["https://data.delijn.be/stops/404874", "https://data.delijn.be/stops/404959"], ["https://data.delijn.be/stops/301950", "https://data.delijn.be/stops/307893"], ["https://data.delijn.be/stops/200753", "https://data.delijn.be/stops/209253"], ["https://data.delijn.be/stops/206777", "https://data.delijn.be/stops/208532"], ["https://data.delijn.be/stops/307027", "https://data.delijn.be/stops/307572"], ["https://data.delijn.be/stops/102973", "https://data.delijn.be/stops/105350"], ["https://data.delijn.be/stops/303111", "https://data.delijn.be/stops/305158"], ["https://data.delijn.be/stops/401209", "https://data.delijn.be/stops/401270"], ["https://data.delijn.be/stops/402885", "https://data.delijn.be/stops/402944"], ["https://data.delijn.be/stops/106481", "https://data.delijn.be/stops/106485"], ["https://data.delijn.be/stops/406094", "https://data.delijn.be/stops/406095"], ["https://data.delijn.be/stops/500563", "https://data.delijn.be/stops/506027"], ["https://data.delijn.be/stops/300179", "https://data.delijn.be/stops/300184"], ["https://data.delijn.be/stops/101925", "https://data.delijn.be/stops/105500"], ["https://data.delijn.be/stops/403912", "https://data.delijn.be/stops/403985"], ["https://data.delijn.be/stops/101460", "https://data.delijn.be/stops/102182"], ["https://data.delijn.be/stops/303171", "https://data.delijn.be/stops/305525"], ["https://data.delijn.be/stops/304443", "https://data.delijn.be/stops/307719"], ["https://data.delijn.be/stops/107902", "https://data.delijn.be/stops/109442"], ["https://data.delijn.be/stops/107282", "https://data.delijn.be/stops/107284"], ["https://data.delijn.be/stops/301891", "https://data.delijn.be/stops/301893"], ["https://data.delijn.be/stops/300343", "https://data.delijn.be/stops/304861"], ["https://data.delijn.be/stops/206878", "https://data.delijn.be/stops/207934"], ["https://data.delijn.be/stops/501073", "https://data.delijn.be/stops/501771"], ["https://data.delijn.be/stops/204210", "https://data.delijn.be/stops/207395"], ["https://data.delijn.be/stops/405801", "https://data.delijn.be/stops/405875"], ["https://data.delijn.be/stops/301793", "https://data.delijn.be/stops/305313"], ["https://data.delijn.be/stops/503473", "https://data.delijn.be/stops/503478"], ["https://data.delijn.be/stops/204547", "https://data.delijn.be/stops/205531"], ["https://data.delijn.be/stops/402358", "https://data.delijn.be/stops/402456"], ["https://data.delijn.be/stops/103601", "https://data.delijn.be/stops/104011"], ["https://data.delijn.be/stops/208094", "https://data.delijn.be/stops/208095"], ["https://data.delijn.be/stops/109120", "https://data.delijn.be/stops/109150"], ["https://data.delijn.be/stops/202812", "https://data.delijn.be/stops/203856"], ["https://data.delijn.be/stops/302548", "https://data.delijn.be/stops/302549"], ["https://data.delijn.be/stops/200763", "https://data.delijn.be/stops/200775"], ["https://data.delijn.be/stops/400612", "https://data.delijn.be/stops/400625"], ["https://data.delijn.be/stops/303964", "https://data.delijn.be/stops/303967"], ["https://data.delijn.be/stops/300538", "https://data.delijn.be/stops/302367"], ["https://data.delijn.be/stops/405148", "https://data.delijn.be/stops/405220"], ["https://data.delijn.be/stops/101465", "https://data.delijn.be/stops/101467"], ["https://data.delijn.be/stops/208064", "https://data.delijn.be/stops/209066"], ["https://data.delijn.be/stops/308771", "https://data.delijn.be/stops/308772"], ["https://data.delijn.be/stops/104651", "https://data.delijn.be/stops/108045"], ["https://data.delijn.be/stops/300352", "https://data.delijn.be/stops/301290"], ["https://data.delijn.be/stops/502932", "https://data.delijn.be/stops/504303"], ["https://data.delijn.be/stops/408524", "https://data.delijn.be/stops/408547"], ["https://data.delijn.be/stops/405295", "https://data.delijn.be/stops/405299"], ["https://data.delijn.be/stops/402763", "https://data.delijn.be/stops/410335"], ["https://data.delijn.be/stops/300275", "https://data.delijn.be/stops/306045"], ["https://data.delijn.be/stops/102636", "https://data.delijn.be/stops/102637"], ["https://data.delijn.be/stops/503498", "https://data.delijn.be/stops/503528"], ["https://data.delijn.be/stops/510003", "https://data.delijn.be/stops/510006"], ["https://data.delijn.be/stops/203596", "https://data.delijn.be/stops/203619"], ["https://data.delijn.be/stops/501662", "https://data.delijn.be/stops/506662"], ["https://data.delijn.be/stops/302222", "https://data.delijn.be/stops/304032"], ["https://data.delijn.be/stops/403219", "https://data.delijn.be/stops/403552"], ["https://data.delijn.be/stops/200658", "https://data.delijn.be/stops/208331"], ["https://data.delijn.be/stops/503088", "https://data.delijn.be/stops/503973"], ["https://data.delijn.be/stops/303855", "https://data.delijn.be/stops/307017"], ["https://data.delijn.be/stops/206097", "https://data.delijn.be/stops/207097"], ["https://data.delijn.be/stops/200728", "https://data.delijn.be/stops/200735"], ["https://data.delijn.be/stops/102995", "https://data.delijn.be/stops/104007"], ["https://data.delijn.be/stops/206530", "https://data.delijn.be/stops/207531"], ["https://data.delijn.be/stops/501384", "https://data.delijn.be/stops/506384"], ["https://data.delijn.be/stops/505925", "https://data.delijn.be/stops/509339"], ["https://data.delijn.be/stops/502280", "https://data.delijn.be/stops/507279"], ["https://data.delijn.be/stops/300428", "https://data.delijn.be/stops/300429"], ["https://data.delijn.be/stops/203931", "https://data.delijn.be/stops/210086"], ["https://data.delijn.be/stops/303546", "https://data.delijn.be/stops/306283"], ["https://data.delijn.be/stops/405807", "https://data.delijn.be/stops/408456"], ["https://data.delijn.be/stops/107274", "https://data.delijn.be/stops/107277"], ["https://data.delijn.be/stops/307402", "https://data.delijn.be/stops/307404"], ["https://data.delijn.be/stops/204257", "https://data.delijn.be/stops/204488"], ["https://data.delijn.be/stops/301362", "https://data.delijn.be/stops/308710"], ["https://data.delijn.be/stops/208218", "https://data.delijn.be/stops/209218"], ["https://data.delijn.be/stops/204663", "https://data.delijn.be/stops/204664"], ["https://data.delijn.be/stops/304425", "https://data.delijn.be/stops/304426"], ["https://data.delijn.be/stops/308710", "https://data.delijn.be/stops/308712"], ["https://data.delijn.be/stops/102045", "https://data.delijn.be/stops/102050"], ["https://data.delijn.be/stops/107237", "https://data.delijn.be/stops/108250"], ["https://data.delijn.be/stops/400702", "https://data.delijn.be/stops/400805"], ["https://data.delijn.be/stops/209171", "https://data.delijn.be/stops/209172"], ["https://data.delijn.be/stops/406030", "https://data.delijn.be/stops/406134"], ["https://data.delijn.be/stops/102670", "https://data.delijn.be/stops/103754"], ["https://data.delijn.be/stops/302050", "https://data.delijn.be/stops/306379"], ["https://data.delijn.be/stops/503023", "https://data.delijn.be/stops/503027"], ["https://data.delijn.be/stops/400499", "https://data.delijn.be/stops/400642"], ["https://data.delijn.be/stops/302677", "https://data.delijn.be/stops/302686"], ["https://data.delijn.be/stops/305970", "https://data.delijn.be/stops/308658"], ["https://data.delijn.be/stops/301532", "https://data.delijn.be/stops/304702"], ["https://data.delijn.be/stops/407872", "https://data.delijn.be/stops/408055"], ["https://data.delijn.be/stops/106999", "https://data.delijn.be/stops/107001"], ["https://data.delijn.be/stops/501535", "https://data.delijn.be/stops/501537"], ["https://data.delijn.be/stops/307571", "https://data.delijn.be/stops/307575"], ["https://data.delijn.be/stops/408100", "https://data.delijn.be/stops/408231"], ["https://data.delijn.be/stops/304014", "https://data.delijn.be/stops/304047"], ["https://data.delijn.be/stops/404999", "https://data.delijn.be/stops/408074"], ["https://data.delijn.be/stops/405813", "https://data.delijn.be/stops/409476"], ["https://data.delijn.be/stops/504508", "https://data.delijn.be/stops/509508"], ["https://data.delijn.be/stops/408746", "https://data.delijn.be/stops/408747"], ["https://data.delijn.be/stops/108397", "https://data.delijn.be/stops/108409"], ["https://data.delijn.be/stops/405448", "https://data.delijn.be/stops/405456"], ["https://data.delijn.be/stops/204288", "https://data.delijn.be/stops/205288"], ["https://data.delijn.be/stops/300655", "https://data.delijn.be/stops/302469"], ["https://data.delijn.be/stops/408825", "https://data.delijn.be/stops/408833"], ["https://data.delijn.be/stops/300351", "https://data.delijn.be/stops/300352"], ["https://data.delijn.be/stops/506629", "https://data.delijn.be/stops/508135"], ["https://data.delijn.be/stops/204149", "https://data.delijn.be/stops/205154"], ["https://data.delijn.be/stops/300088", "https://data.delijn.be/stops/308541"], ["https://data.delijn.be/stops/401216", "https://data.delijn.be/stops/406943"], ["https://data.delijn.be/stops/207513", "https://data.delijn.be/stops/207599"], ["https://data.delijn.be/stops/104966", "https://data.delijn.be/stops/107434"], ["https://data.delijn.be/stops/104037", "https://data.delijn.be/stops/108393"], ["https://data.delijn.be/stops/402810", "https://data.delijn.be/stops/407080"], ["https://data.delijn.be/stops/501395", "https://data.delijn.be/stops/590331"], ["https://data.delijn.be/stops/305051", "https://data.delijn.be/stops/306959"], ["https://data.delijn.be/stops/204778", "https://data.delijn.be/stops/205779"], ["https://data.delijn.be/stops/303771", "https://data.delijn.be/stops/303802"], ["https://data.delijn.be/stops/303988", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/101375", "https://data.delijn.be/stops/101380"], ["https://data.delijn.be/stops/102513", "https://data.delijn.be/stops/406514"], ["https://data.delijn.be/stops/101293", "https://data.delijn.be/stops/105364"], ["https://data.delijn.be/stops/206633", "https://data.delijn.be/stops/207636"], ["https://data.delijn.be/stops/301703", "https://data.delijn.be/stops/305324"], ["https://data.delijn.be/stops/503640", "https://data.delijn.be/stops/505935"], ["https://data.delijn.be/stops/507239", "https://data.delijn.be/stops/507735"], ["https://data.delijn.be/stops/206506", "https://data.delijn.be/stops/206991"], ["https://data.delijn.be/stops/501173", "https://data.delijn.be/stops/506174"], ["https://data.delijn.be/stops/301042", "https://data.delijn.be/stops/307808"], ["https://data.delijn.be/stops/208133", "https://data.delijn.be/stops/209199"], ["https://data.delijn.be/stops/208313", "https://data.delijn.be/stops/208770"], ["https://data.delijn.be/stops/407892", "https://data.delijn.be/stops/301846"], ["https://data.delijn.be/stops/402006", "https://data.delijn.be/stops/405159"], ["https://data.delijn.be/stops/200957", "https://data.delijn.be/stops/203671"], ["https://data.delijn.be/stops/204070", "https://data.delijn.be/stops/205183"], ["https://data.delijn.be/stops/104099", "https://data.delijn.be/stops/104102"], ["https://data.delijn.be/stops/407131", "https://data.delijn.be/stops/407135"], ["https://data.delijn.be/stops/105024", "https://data.delijn.be/stops/105188"], ["https://data.delijn.be/stops/101004", "https://data.delijn.be/stops/104887"], ["https://data.delijn.be/stops/402859", "https://data.delijn.be/stops/410202"], ["https://data.delijn.be/stops/102511", "https://data.delijn.be/stops/405607"], ["https://data.delijn.be/stops/101426", "https://data.delijn.be/stops/102086"], ["https://data.delijn.be/stops/405583", "https://data.delijn.be/stops/407797"], ["https://data.delijn.be/stops/503958", "https://data.delijn.be/stops/504677"], ["https://data.delijn.be/stops/300770", "https://data.delijn.be/stops/301043"], ["https://data.delijn.be/stops/407022", "https://data.delijn.be/stops/410032"], ["https://data.delijn.be/stops/103062", "https://data.delijn.be/stops/109462"], ["https://data.delijn.be/stops/400135", "https://data.delijn.be/stops/409153"], ["https://data.delijn.be/stops/502318", "https://data.delijn.be/stops/502456"], ["https://data.delijn.be/stops/402554", "https://data.delijn.be/stops/408078"], ["https://data.delijn.be/stops/301311", "https://data.delijn.be/stops/304859"], ["https://data.delijn.be/stops/402767", "https://data.delijn.be/stops/408088"], ["https://data.delijn.be/stops/503160", "https://data.delijn.be/stops/508160"], ["https://data.delijn.be/stops/403085", "https://data.delijn.be/stops/403437"], ["https://data.delijn.be/stops/502182", "https://data.delijn.be/stops/504975"], ["https://data.delijn.be/stops/105446", "https://data.delijn.be/stops/105448"], ["https://data.delijn.be/stops/502215", "https://data.delijn.be/stops/505591"], ["https://data.delijn.be/stops/504749", "https://data.delijn.be/stops/505128"], ["https://data.delijn.be/stops/101313", "https://data.delijn.be/stops/101730"], ["https://data.delijn.be/stops/103038", "https://data.delijn.be/stops/103039"], ["https://data.delijn.be/stops/201716", "https://data.delijn.be/stops/202625"], ["https://data.delijn.be/stops/400510", "https://data.delijn.be/stops/400511"], ["https://data.delijn.be/stops/406843", "https://data.delijn.be/stops/408809"], ["https://data.delijn.be/stops/300215", "https://data.delijn.be/stops/301377"], ["https://data.delijn.be/stops/202252", "https://data.delijn.be/stops/202253"], ["https://data.delijn.be/stops/400115", "https://data.delijn.be/stops/400927"], ["https://data.delijn.be/stops/208535", "https://data.delijn.be/stops/209085"], ["https://data.delijn.be/stops/206826", "https://data.delijn.be/stops/206827"], ["https://data.delijn.be/stops/200839", "https://data.delijn.be/stops/203300"], ["https://data.delijn.be/stops/207756", "https://data.delijn.be/stops/207780"], ["https://data.delijn.be/stops/206197", "https://data.delijn.be/stops/207220"], ["https://data.delijn.be/stops/301644", "https://data.delijn.be/stops/301669"], ["https://data.delijn.be/stops/405182", "https://data.delijn.be/stops/409277"], ["https://data.delijn.be/stops/208189", "https://data.delijn.be/stops/209190"], ["https://data.delijn.be/stops/403590", "https://data.delijn.be/stops/410011"], ["https://data.delijn.be/stops/302930", "https://data.delijn.be/stops/303231"], ["https://data.delijn.be/stops/404391", "https://data.delijn.be/stops/409572"], ["https://data.delijn.be/stops/304842", "https://data.delijn.be/stops/304846"], ["https://data.delijn.be/stops/200236", "https://data.delijn.be/stops/204924"], ["https://data.delijn.be/stops/205174", "https://data.delijn.be/stops/206826"], ["https://data.delijn.be/stops/507175", "https://data.delijn.be/stops/507181"], ["https://data.delijn.be/stops/200666", "https://data.delijn.be/stops/201809"], ["https://data.delijn.be/stops/306553", "https://data.delijn.be/stops/306556"], ["https://data.delijn.be/stops/201767", "https://data.delijn.be/stops/208269"], ["https://data.delijn.be/stops/105728", "https://data.delijn.be/stops/105731"], ["https://data.delijn.be/stops/308226", "https://data.delijn.be/stops/308228"], ["https://data.delijn.be/stops/303098", "https://data.delijn.be/stops/303100"], ["https://data.delijn.be/stops/204408", "https://data.delijn.be/stops/205021"], ["https://data.delijn.be/stops/405276", "https://data.delijn.be/stops/405283"], ["https://data.delijn.be/stops/408175", "https://data.delijn.be/stops/408176"], ["https://data.delijn.be/stops/106149", "https://data.delijn.be/stops/106150"], ["https://data.delijn.be/stops/104106", "https://data.delijn.be/stops/108760"], ["https://data.delijn.be/stops/208295", "https://data.delijn.be/stops/208376"], ["https://data.delijn.be/stops/400474", "https://data.delijn.be/stops/400475"], ["https://data.delijn.be/stops/404339", "https://data.delijn.be/stops/404648"], ["https://data.delijn.be/stops/300407", "https://data.delijn.be/stops/306068"], ["https://data.delijn.be/stops/204163", "https://data.delijn.be/stops/204578"], ["https://data.delijn.be/stops/204347", "https://data.delijn.be/stops/205347"], ["https://data.delijn.be/stops/504182", "https://data.delijn.be/stops/509154"], ["https://data.delijn.be/stops/503595", "https://data.delijn.be/stops/508595"], ["https://data.delijn.be/stops/106240", "https://data.delijn.be/stops/106242"], ["https://data.delijn.be/stops/205332", "https://data.delijn.be/stops/205503"], ["https://data.delijn.be/stops/504486", "https://data.delijn.be/stops/509488"], ["https://data.delijn.be/stops/408358", "https://data.delijn.be/stops/409644"], ["https://data.delijn.be/stops/303203", "https://data.delijn.be/stops/303209"], ["https://data.delijn.be/stops/202517", "https://data.delijn.be/stops/203517"], ["https://data.delijn.be/stops/206387", "https://data.delijn.be/stops/207018"], ["https://data.delijn.be/stops/200734", "https://data.delijn.be/stops/203124"], ["https://data.delijn.be/stops/504008", "https://data.delijn.be/stops/504984"], ["https://data.delijn.be/stops/505561", "https://data.delijn.be/stops/506389"], ["https://data.delijn.be/stops/301461", "https://data.delijn.be/stops/301493"], ["https://data.delijn.be/stops/206369", "https://data.delijn.be/stops/206370"], ["https://data.delijn.be/stops/206815", "https://data.delijn.be/stops/207814"], ["https://data.delijn.be/stops/109337", "https://data.delijn.be/stops/109338"], ["https://data.delijn.be/stops/207247", "https://data.delijn.be/stops/207402"], ["https://data.delijn.be/stops/104377", "https://data.delijn.be/stops/204605"], ["https://data.delijn.be/stops/206343", "https://data.delijn.be/stops/206688"], ["https://data.delijn.be/stops/501568", "https://data.delijn.be/stops/506289"], ["https://data.delijn.be/stops/503068", "https://data.delijn.be/stops/508068"], ["https://data.delijn.be/stops/202853", "https://data.delijn.be/stops/202857"], ["https://data.delijn.be/stops/407950", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/306907", "https://data.delijn.be/stops/306910"], ["https://data.delijn.be/stops/204583", "https://data.delijn.be/stops/206390"], ["https://data.delijn.be/stops/502736", "https://data.delijn.be/stops/507117"], ["https://data.delijn.be/stops/204670", "https://data.delijn.be/stops/205671"], ["https://data.delijn.be/stops/405185", "https://data.delijn.be/stops/405250"], ["https://data.delijn.be/stops/401514", "https://data.delijn.be/stops/404455"], ["https://data.delijn.be/stops/109966", "https://data.delijn.be/stops/109975"], ["https://data.delijn.be/stops/506117", "https://data.delijn.be/stops/506733"], ["https://data.delijn.be/stops/505507", "https://data.delijn.be/stops/505515"], ["https://data.delijn.be/stops/105502", "https://data.delijn.be/stops/105507"], ["https://data.delijn.be/stops/405923", "https://data.delijn.be/stops/405931"], ["https://data.delijn.be/stops/507709", "https://data.delijn.be/stops/508828"], ["https://data.delijn.be/stops/400023", "https://data.delijn.be/stops/406493"], ["https://data.delijn.be/stops/401086", "https://data.delijn.be/stops/401153"], ["https://data.delijn.be/stops/201383", "https://data.delijn.be/stops/208732"], ["https://data.delijn.be/stops/202158", "https://data.delijn.be/stops/203158"], ["https://data.delijn.be/stops/404301", "https://data.delijn.be/stops/409576"], ["https://data.delijn.be/stops/505538", "https://data.delijn.be/stops/508808"], ["https://data.delijn.be/stops/405172", "https://data.delijn.be/stops/405173"], ["https://data.delijn.be/stops/108096", "https://data.delijn.be/stops/108097"], ["https://data.delijn.be/stops/203299", "https://data.delijn.be/stops/203300"], ["https://data.delijn.be/stops/402832", "https://data.delijn.be/stops/402845"], ["https://data.delijn.be/stops/208766", "https://data.delijn.be/stops/219015"], ["https://data.delijn.be/stops/207883", "https://data.delijn.be/stops/207893"], ["https://data.delijn.be/stops/402257", "https://data.delijn.be/stops/402382"], ["https://data.delijn.be/stops/102595", "https://data.delijn.be/stops/108930"], ["https://data.delijn.be/stops/300697", "https://data.delijn.be/stops/300720"], ["https://data.delijn.be/stops/101660", "https://data.delijn.be/stops/102639"], ["https://data.delijn.be/stops/302963", "https://data.delijn.be/stops/302971"], ["https://data.delijn.be/stops/105847", "https://data.delijn.be/stops/105848"], ["https://data.delijn.be/stops/403952", "https://data.delijn.be/stops/404027"], ["https://data.delijn.be/stops/106285", "https://data.delijn.be/stops/106287"], ["https://data.delijn.be/stops/509932", "https://data.delijn.be/stops/509933"], ["https://data.delijn.be/stops/205535", "https://data.delijn.be/stops/205695"], ["https://data.delijn.be/stops/505730", "https://data.delijn.be/stops/507291"], ["https://data.delijn.be/stops/208791", "https://data.delijn.be/stops/209798"], ["https://data.delijn.be/stops/203890", "https://data.delijn.be/stops/211132"], ["https://data.delijn.be/stops/402427", "https://data.delijn.be/stops/410059"], ["https://data.delijn.be/stops/400070", "https://data.delijn.be/stops/410322"], ["https://data.delijn.be/stops/300421", "https://data.delijn.be/stops/302633"], ["https://data.delijn.be/stops/106621", "https://data.delijn.be/stops/106702"], ["https://data.delijn.be/stops/206464", "https://data.delijn.be/stops/207464"], ["https://data.delijn.be/stops/202467", "https://data.delijn.be/stops/203467"], ["https://data.delijn.be/stops/200311", "https://data.delijn.be/stops/201311"], ["https://data.delijn.be/stops/301782", "https://data.delijn.be/stops/301783"], ["https://data.delijn.be/stops/101668", "https://data.delijn.be/stops/109862"], ["https://data.delijn.be/stops/405866", "https://data.delijn.be/stops/407511"], ["https://data.delijn.be/stops/209672", "https://data.delijn.be/stops/209673"], ["https://data.delijn.be/stops/502066", "https://data.delijn.be/stops/505687"], ["https://data.delijn.be/stops/202276", "https://data.delijn.be/stops/203276"], ["https://data.delijn.be/stops/404697", "https://data.delijn.be/stops/405509"], ["https://data.delijn.be/stops/204402", "https://data.delijn.be/stops/205402"], ["https://data.delijn.be/stops/401499", "https://data.delijn.be/stops/401627"], ["https://data.delijn.be/stops/307921", "https://data.delijn.be/stops/307922"], ["https://data.delijn.be/stops/209476", "https://data.delijn.be/stops/209667"], ["https://data.delijn.be/stops/200219", "https://data.delijn.be/stops/211090"], ["https://data.delijn.be/stops/508176", "https://data.delijn.be/stops/508177"], ["https://data.delijn.be/stops/106254", "https://data.delijn.be/stops/106256"], ["https://data.delijn.be/stops/101832", "https://data.delijn.be/stops/108349"], ["https://data.delijn.be/stops/405194", "https://data.delijn.be/stops/405199"], ["https://data.delijn.be/stops/505259", "https://data.delijn.be/stops/508027"], ["https://data.delijn.be/stops/405167", "https://data.delijn.be/stops/405216"], ["https://data.delijn.be/stops/301435", "https://data.delijn.be/stops/301443"], ["https://data.delijn.be/stops/204194", "https://data.delijn.be/stops/204232"], ["https://data.delijn.be/stops/500048", "https://data.delijn.be/stops/500050"], ["https://data.delijn.be/stops/407711", "https://data.delijn.be/stops/409775"], ["https://data.delijn.be/stops/108475", "https://data.delijn.be/stops/108981"], ["https://data.delijn.be/stops/103914", "https://data.delijn.be/stops/103916"], ["https://data.delijn.be/stops/409099", "https://data.delijn.be/stops/409110"], ["https://data.delijn.be/stops/206681", "https://data.delijn.be/stops/206757"], ["https://data.delijn.be/stops/408414", "https://data.delijn.be/stops/301841"], ["https://data.delijn.be/stops/405078", "https://data.delijn.be/stops/405106"], ["https://data.delijn.be/stops/502096", "https://data.delijn.be/stops/502681"], ["https://data.delijn.be/stops/401843", "https://data.delijn.be/stops/406347"], ["https://data.delijn.be/stops/106825", "https://data.delijn.be/stops/106826"], ["https://data.delijn.be/stops/102633", "https://data.delijn.be/stops/104926"], ["https://data.delijn.be/stops/202978", "https://data.delijn.be/stops/203978"], ["https://data.delijn.be/stops/102208", "https://data.delijn.be/stops/102967"], ["https://data.delijn.be/stops/401910", "https://data.delijn.be/stops/401919"], ["https://data.delijn.be/stops/306933", "https://data.delijn.be/stops/306934"], ["https://data.delijn.be/stops/304897", "https://data.delijn.be/stops/304905"], ["https://data.delijn.be/stops/207583", "https://data.delijn.be/stops/207993"], ["https://data.delijn.be/stops/108341", "https://data.delijn.be/stops/109369"], ["https://data.delijn.be/stops/101132", "https://data.delijn.be/stops/107957"], ["https://data.delijn.be/stops/503875", "https://data.delijn.be/stops/509753"], ["https://data.delijn.be/stops/101920", "https://data.delijn.be/stops/104450"], ["https://data.delijn.be/stops/300512", "https://data.delijn.be/stops/302366"], ["https://data.delijn.be/stops/403742", "https://data.delijn.be/stops/403813"], ["https://data.delijn.be/stops/101935", "https://data.delijn.be/stops/105615"], ["https://data.delijn.be/stops/403608", "https://data.delijn.be/stops/403609"], ["https://data.delijn.be/stops/405693", "https://data.delijn.be/stops/405695"], ["https://data.delijn.be/stops/301729", "https://data.delijn.be/stops/301758"], ["https://data.delijn.be/stops/300110", "https://data.delijn.be/stops/306853"], ["https://data.delijn.be/stops/206189", "https://data.delijn.be/stops/206193"], ["https://data.delijn.be/stops/301590", "https://data.delijn.be/stops/301591"], ["https://data.delijn.be/stops/406106", "https://data.delijn.be/stops/406807"], ["https://data.delijn.be/stops/103021", "https://data.delijn.be/stops/107231"], ["https://data.delijn.be/stops/300558", "https://data.delijn.be/stops/307860"], ["https://data.delijn.be/stops/101267", "https://data.delijn.be/stops/101520"], ["https://data.delijn.be/stops/105224", "https://data.delijn.be/stops/108056"], ["https://data.delijn.be/stops/204333", "https://data.delijn.be/stops/205817"], ["https://data.delijn.be/stops/408742", "https://data.delijn.be/stops/408743"], ["https://data.delijn.be/stops/202851", "https://data.delijn.be/stops/203849"], ["https://data.delijn.be/stops/205332", "https://data.delijn.be/stops/205333"], ["https://data.delijn.be/stops/401442", "https://data.delijn.be/stops/401736"], ["https://data.delijn.be/stops/202133", "https://data.delijn.be/stops/211058"], ["https://data.delijn.be/stops/501531", "https://data.delijn.be/stops/506510"], ["https://data.delijn.be/stops/201867", "https://data.delijn.be/stops/211039"], ["https://data.delijn.be/stops/200737", "https://data.delijn.be/stops/202619"], ["https://data.delijn.be/stops/203538", "https://data.delijn.be/stops/219022"], ["https://data.delijn.be/stops/200049", "https://data.delijn.be/stops/201049"], ["https://data.delijn.be/stops/505143", "https://data.delijn.be/stops/509051"], ["https://data.delijn.be/stops/302622", "https://data.delijn.be/stops/308937"], ["https://data.delijn.be/stops/300839", "https://data.delijn.be/stops/300876"], ["https://data.delijn.be/stops/204820", "https://data.delijn.be/stops/205820"], ["https://data.delijn.be/stops/300685", "https://data.delijn.be/stops/300700"], ["https://data.delijn.be/stops/201994", "https://data.delijn.be/stops/202013"], ["https://data.delijn.be/stops/502215", "https://data.delijn.be/stops/502219"], ["https://data.delijn.be/stops/301003", "https://data.delijn.be/stops/301004"], ["https://data.delijn.be/stops/102120", "https://data.delijn.be/stops/103636"], ["https://data.delijn.be/stops/205469", "https://data.delijn.be/stops/215011"], ["https://data.delijn.be/stops/404836", "https://data.delijn.be/stops/406751"], ["https://data.delijn.be/stops/501149", "https://data.delijn.be/stops/505621"], ["https://data.delijn.be/stops/400580", "https://data.delijn.be/stops/405918"], ["https://data.delijn.be/stops/407406", "https://data.delijn.be/stops/407407"], ["https://data.delijn.be/stops/307616", "https://data.delijn.be/stops/308559"], ["https://data.delijn.be/stops/107440", "https://data.delijn.be/stops/107442"], ["https://data.delijn.be/stops/305660", "https://data.delijn.be/stops/305663"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/101923"], ["https://data.delijn.be/stops/402300", "https://data.delijn.be/stops/409373"], ["https://data.delijn.be/stops/210035", "https://data.delijn.be/stops/211034"], ["https://data.delijn.be/stops/402004", "https://data.delijn.be/stops/406744"], ["https://data.delijn.be/stops/400135", "https://data.delijn.be/stops/410220"], ["https://data.delijn.be/stops/400223", "https://data.delijn.be/stops/400230"], ["https://data.delijn.be/stops/305446", "https://data.delijn.be/stops/307297"], ["https://data.delijn.be/stops/204722", "https://data.delijn.be/stops/214013"], ["https://data.delijn.be/stops/204789", "https://data.delijn.be/stops/205128"], ["https://data.delijn.be/stops/501389", "https://data.delijn.be/stops/506387"], ["https://data.delijn.be/stops/300700", "https://data.delijn.be/stops/306940"], ["https://data.delijn.be/stops/302685", "https://data.delijn.be/stops/302686"], ["https://data.delijn.be/stops/404534", "https://data.delijn.be/stops/404585"], ["https://data.delijn.be/stops/103571", "https://data.delijn.be/stops/103573"], ["https://data.delijn.be/stops/204970", "https://data.delijn.be/stops/207265"], ["https://data.delijn.be/stops/205444", "https://data.delijn.be/stops/205449"], ["https://data.delijn.be/stops/102612", "https://data.delijn.be/stops/102614"], ["https://data.delijn.be/stops/409350", "https://data.delijn.be/stops/409370"], ["https://data.delijn.be/stops/400776", "https://data.delijn.be/stops/406670"], ["https://data.delijn.be/stops/302576", "https://data.delijn.be/stops/308093"], ["https://data.delijn.be/stops/501388", "https://data.delijn.be/stops/506106"], ["https://data.delijn.be/stops/300172", "https://data.delijn.be/stops/306069"], ["https://data.delijn.be/stops/308486", "https://data.delijn.be/stops/308490"], ["https://data.delijn.be/stops/201711", "https://data.delijn.be/stops/202750"], ["https://data.delijn.be/stops/402141", "https://data.delijn.be/stops/402436"], ["https://data.delijn.be/stops/207800", "https://data.delijn.be/stops/209545"], ["https://data.delijn.be/stops/409070", "https://data.delijn.be/stops/409087"], ["https://data.delijn.be/stops/204320", "https://data.delijn.be/stops/205320"], ["https://data.delijn.be/stops/508334", "https://data.delijn.be/stops/508339"], ["https://data.delijn.be/stops/305652", "https://data.delijn.be/stops/308131"], ["https://data.delijn.be/stops/201281", "https://data.delijn.be/stops/208957"], ["https://data.delijn.be/stops/305408", "https://data.delijn.be/stops/305414"], ["https://data.delijn.be/stops/501111", "https://data.delijn.be/stops/501493"], ["https://data.delijn.be/stops/107253", "https://data.delijn.be/stops/107256"], ["https://data.delijn.be/stops/102844", "https://data.delijn.be/stops/106564"], ["https://data.delijn.be/stops/206240", "https://data.delijn.be/stops/206406"], ["https://data.delijn.be/stops/207364", "https://data.delijn.be/stops/207707"], ["https://data.delijn.be/stops/308685", "https://data.delijn.be/stops/308688"], ["https://data.delijn.be/stops/201617", "https://data.delijn.be/stops/202920"], ["https://data.delijn.be/stops/109288", "https://data.delijn.be/stops/109290"], ["https://data.delijn.be/stops/204424", "https://data.delijn.be/stops/204425"], ["https://data.delijn.be/stops/107845", "https://data.delijn.be/stops/107850"], ["https://data.delijn.be/stops/201418", "https://data.delijn.be/stops/201419"], ["https://data.delijn.be/stops/406246", "https://data.delijn.be/stops/406252"], ["https://data.delijn.be/stops/405904", "https://data.delijn.be/stops/405964"], ["https://data.delijn.be/stops/404457", "https://data.delijn.be/stops/404571"], ["https://data.delijn.be/stops/204075", "https://data.delijn.be/stops/214016"], ["https://data.delijn.be/stops/102844", "https://data.delijn.be/stops/108040"], ["https://data.delijn.be/stops/106662", "https://data.delijn.be/stops/106663"], ["https://data.delijn.be/stops/105153", "https://data.delijn.be/stops/105154"], ["https://data.delijn.be/stops/204912", "https://data.delijn.be/stops/204914"], ["https://data.delijn.be/stops/402377", "https://data.delijn.be/stops/405563"], ["https://data.delijn.be/stops/301025", "https://data.delijn.be/stops/301027"], ["https://data.delijn.be/stops/300234", "https://data.delijn.be/stops/300247"], ["https://data.delijn.be/stops/502445", "https://data.delijn.be/stops/502465"], ["https://data.delijn.be/stops/503626", "https://data.delijn.be/stops/508628"], ["https://data.delijn.be/stops/201769", "https://data.delijn.be/stops/201829"], ["https://data.delijn.be/stops/403509", "https://data.delijn.be/stops/403551"], ["https://data.delijn.be/stops/300348", "https://data.delijn.be/stops/300356"], ["https://data.delijn.be/stops/103170", "https://data.delijn.be/stops/107665"], ["https://data.delijn.be/stops/305114", "https://data.delijn.be/stops/305118"], ["https://data.delijn.be/stops/408398", "https://data.delijn.be/stops/408401"], ["https://data.delijn.be/stops/503092", "https://data.delijn.be/stops/508194"], ["https://data.delijn.be/stops/101380", "https://data.delijn.be/stops/104090"], ["https://data.delijn.be/stops/508903", "https://data.delijn.be/stops/509641"], ["https://data.delijn.be/stops/104428", "https://data.delijn.be/stops/107372"], ["https://data.delijn.be/stops/508915", "https://data.delijn.be/stops/508921"], ["https://data.delijn.be/stops/503366", "https://data.delijn.be/stops/503438"], ["https://data.delijn.be/stops/103748", "https://data.delijn.be/stops/104457"], ["https://data.delijn.be/stops/401440", "https://data.delijn.be/stops/408378"], ["https://data.delijn.be/stops/204310", "https://data.delijn.be/stops/204338"], ["https://data.delijn.be/stops/305430", "https://data.delijn.be/stops/308866"], ["https://data.delijn.be/stops/504620", "https://data.delijn.be/stops/504629"], ["https://data.delijn.be/stops/504012", "https://data.delijn.be/stops/505813"], ["https://data.delijn.be/stops/104706", "https://data.delijn.be/stops/108176"], ["https://data.delijn.be/stops/206082", "https://data.delijn.be/stops/217007"], ["https://data.delijn.be/stops/406321", "https://data.delijn.be/stops/406331"], ["https://data.delijn.be/stops/108937", "https://data.delijn.be/stops/108941"], ["https://data.delijn.be/stops/210107", "https://data.delijn.be/stops/211082"], ["https://data.delijn.be/stops/402620", "https://data.delijn.be/stops/406767"], ["https://data.delijn.be/stops/402404", "https://data.delijn.be/stops/409600"], ["https://data.delijn.be/stops/305248", "https://data.delijn.be/stops/305601"], ["https://data.delijn.be/stops/200356", "https://data.delijn.be/stops/201110"], ["https://data.delijn.be/stops/503855", "https://data.delijn.be/stops/504379"], ["https://data.delijn.be/stops/202886", "https://data.delijn.be/stops/202887"], ["https://data.delijn.be/stops/508498", "https://data.delijn.be/stops/508528"], ["https://data.delijn.be/stops/504163", "https://data.delijn.be/stops/505174"], ["https://data.delijn.be/stops/501520", "https://data.delijn.be/stops/501525"], ["https://data.delijn.be/stops/102200", "https://data.delijn.be/stops/105170"], ["https://data.delijn.be/stops/107522", "https://data.delijn.be/stops/107524"], ["https://data.delijn.be/stops/103641", "https://data.delijn.be/stops/106634"], ["https://data.delijn.be/stops/407818", "https://data.delijn.be/stops/407822"], ["https://data.delijn.be/stops/203044", "https://data.delijn.be/stops/203394"], ["https://data.delijn.be/stops/202345", "https://data.delijn.be/stops/203345"], ["https://data.delijn.be/stops/301739", "https://data.delijn.be/stops/305227"], ["https://data.delijn.be/stops/201260", "https://data.delijn.be/stops/203452"], ["https://data.delijn.be/stops/502647", "https://data.delijn.be/stops/504944"], ["https://data.delijn.be/stops/209197", "https://data.delijn.be/stops/209198"], ["https://data.delijn.be/stops/206373", "https://data.delijn.be/stops/207689"], ["https://data.delijn.be/stops/208090", "https://data.delijn.be/stops/208620"], ["https://data.delijn.be/stops/404805", "https://data.delijn.be/stops/404812"], ["https://data.delijn.be/stops/304364", "https://data.delijn.be/stops/304430"], ["https://data.delijn.be/stops/502631", "https://data.delijn.be/stops/507083"], ["https://data.delijn.be/stops/108558", "https://data.delijn.be/stops/109593"], ["https://data.delijn.be/stops/104343", "https://data.delijn.be/stops/104348"], ["https://data.delijn.be/stops/402323", "https://data.delijn.be/stops/405585"], ["https://data.delijn.be/stops/300825", "https://data.delijn.be/stops/303833"], ["https://data.delijn.be/stops/504048", "https://data.delijn.be/stops/509048"], ["https://data.delijn.be/stops/405058", "https://data.delijn.be/stops/405067"], ["https://data.delijn.be/stops/403260", "https://data.delijn.be/stops/403845"], ["https://data.delijn.be/stops/505680", "https://data.delijn.be/stops/507301"], ["https://data.delijn.be/stops/103129", "https://data.delijn.be/stops/106779"], ["https://data.delijn.be/stops/406430", "https://data.delijn.be/stops/409529"], ["https://data.delijn.be/stops/410113", "https://data.delijn.be/stops/410115"], ["https://data.delijn.be/stops/305016", "https://data.delijn.be/stops/305018"], ["https://data.delijn.be/stops/101982", "https://data.delijn.be/stops/300039"], ["https://data.delijn.be/stops/401760", "https://data.delijn.be/stops/401761"], ["https://data.delijn.be/stops/205721", "https://data.delijn.be/stops/205722"], ["https://data.delijn.be/stops/301359", "https://data.delijn.be/stops/301389"], ["https://data.delijn.be/stops/504565", "https://data.delijn.be/stops/509978"], ["https://data.delijn.be/stops/404638", "https://data.delijn.be/stops/404989"], ["https://data.delijn.be/stops/301869", "https://data.delijn.be/stops/301870"], ["https://data.delijn.be/stops/103014", "https://data.delijn.be/stops/109019"], ["https://data.delijn.be/stops/200002", "https://data.delijn.be/stops/200006"], ["https://data.delijn.be/stops/410326", "https://data.delijn.be/stops/410327"], ["https://data.delijn.be/stops/406010", "https://data.delijn.be/stops/406011"], ["https://data.delijn.be/stops/505339", "https://data.delijn.be/stops/507813"], ["https://data.delijn.be/stops/202900", "https://data.delijn.be/stops/202902"], ["https://data.delijn.be/stops/308927", "https://data.delijn.be/stops/308928"], ["https://data.delijn.be/stops/209117", "https://data.delijn.be/stops/209118"], ["https://data.delijn.be/stops/410324", "https://data.delijn.be/stops/410325"], ["https://data.delijn.be/stops/201131", "https://data.delijn.be/stops/204556"], ["https://data.delijn.be/stops/107019", "https://data.delijn.be/stops/107067"], ["https://data.delijn.be/stops/201557", "https://data.delijn.be/stops/201558"], ["https://data.delijn.be/stops/108797", "https://data.delijn.be/stops/109549"], ["https://data.delijn.be/stops/102612", "https://data.delijn.be/stops/107052"], ["https://data.delijn.be/stops/505429", "https://data.delijn.be/stops/505830"], ["https://data.delijn.be/stops/406564", "https://data.delijn.be/stops/407207"], ["https://data.delijn.be/stops/408444", "https://data.delijn.be/stops/303321"], ["https://data.delijn.be/stops/108082", "https://data.delijn.be/stops/108086"], ["https://data.delijn.be/stops/101706", "https://data.delijn.be/stops/104665"], ["https://data.delijn.be/stops/402307", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/209602", "https://data.delijn.be/stops/307593"], ["https://data.delijn.be/stops/104485", "https://data.delijn.be/stops/104855"], ["https://data.delijn.be/stops/307151", "https://data.delijn.be/stops/307152"], ["https://data.delijn.be/stops/107807", "https://data.delijn.be/stops/107808"], ["https://data.delijn.be/stops/402876", "https://data.delijn.be/stops/404298"], ["https://data.delijn.be/stops/507300", "https://data.delijn.be/stops/507303"], ["https://data.delijn.be/stops/102926", "https://data.delijn.be/stops/104810"], ["https://data.delijn.be/stops/502075", "https://data.delijn.be/stops/507075"], ["https://data.delijn.be/stops/101370", "https://data.delijn.be/stops/104801"], ["https://data.delijn.be/stops/501400", "https://data.delijn.be/stops/506400"], ["https://data.delijn.be/stops/204039", "https://data.delijn.be/stops/204040"], ["https://data.delijn.be/stops/304492", "https://data.delijn.be/stops/304530"], ["https://data.delijn.be/stops/300489", "https://data.delijn.be/stops/307084"], ["https://data.delijn.be/stops/301900", "https://data.delijn.be/stops/301901"], ["https://data.delijn.be/stops/209078", "https://data.delijn.be/stops/209143"], ["https://data.delijn.be/stops/105199", "https://data.delijn.be/stops/108878"], ["https://data.delijn.be/stops/403685", "https://data.delijn.be/stops/409251"], ["https://data.delijn.be/stops/108965", "https://data.delijn.be/stops/109115"], ["https://data.delijn.be/stops/202402", "https://data.delijn.be/stops/203501"], ["https://data.delijn.be/stops/202118", "https://data.delijn.be/stops/202217"], ["https://data.delijn.be/stops/302804", "https://data.delijn.be/stops/303376"], ["https://data.delijn.be/stops/401598", "https://data.delijn.be/stops/408635"], ["https://data.delijn.be/stops/507952", "https://data.delijn.be/stops/508011"], ["https://data.delijn.be/stops/208447", "https://data.delijn.be/stops/218029"], ["https://data.delijn.be/stops/200390", "https://data.delijn.be/stops/209722"], ["https://data.delijn.be/stops/401094", "https://data.delijn.be/stops/401097"], ["https://data.delijn.be/stops/202264", "https://data.delijn.be/stops/210006"], ["https://data.delijn.be/stops/208677", "https://data.delijn.be/stops/208807"], ["https://data.delijn.be/stops/103157", "https://data.delijn.be/stops/103159"], ["https://data.delijn.be/stops/304997", "https://data.delijn.be/stops/305003"], ["https://data.delijn.be/stops/303997", "https://data.delijn.be/stops/303998"], ["https://data.delijn.be/stops/200686", "https://data.delijn.be/stops/202375"], ["https://data.delijn.be/stops/108259", "https://data.delijn.be/stops/108261"], ["https://data.delijn.be/stops/104938", "https://data.delijn.be/stops/107852"], ["https://data.delijn.be/stops/301681", "https://data.delijn.be/stops/301682"], ["https://data.delijn.be/stops/501115", "https://data.delijn.be/stops/506662"], ["https://data.delijn.be/stops/302728", "https://data.delijn.be/stops/308834"], ["https://data.delijn.be/stops/200003", "https://data.delijn.be/stops/202015"], ["https://data.delijn.be/stops/203519", "https://data.delijn.be/stops/203525"], ["https://data.delijn.be/stops/102494", "https://data.delijn.be/stops/405133"], ["https://data.delijn.be/stops/200764", "https://data.delijn.be/stops/200767"], ["https://data.delijn.be/stops/107636", "https://data.delijn.be/stops/109614"], ["https://data.delijn.be/stops/508340", "https://data.delijn.be/stops/508341"], ["https://data.delijn.be/stops/304541", "https://data.delijn.be/stops/306207"], ["https://data.delijn.be/stops/407088", "https://data.delijn.be/stops/407089"], ["https://data.delijn.be/stops/505947", "https://data.delijn.be/stops/509926"], ["https://data.delijn.be/stops/400778", "https://data.delijn.be/stops/400885"], ["https://data.delijn.be/stops/508038", "https://data.delijn.be/stops/508267"], ["https://data.delijn.be/stops/109350", "https://data.delijn.be/stops/109356"], ["https://data.delijn.be/stops/409433", "https://data.delijn.be/stops/409712"], ["https://data.delijn.be/stops/202429", "https://data.delijn.be/stops/203429"], ["https://data.delijn.be/stops/505987", "https://data.delijn.be/stops/508337"], ["https://data.delijn.be/stops/101653", "https://data.delijn.be/stops/107916"], ["https://data.delijn.be/stops/304887", "https://data.delijn.be/stops/306161"], ["https://data.delijn.be/stops/502404", "https://data.delijn.be/stops/507578"], ["https://data.delijn.be/stops/203714", "https://data.delijn.be/stops/203715"], ["https://data.delijn.be/stops/300633", "https://data.delijn.be/stops/301358"], ["https://data.delijn.be/stops/303721", "https://data.delijn.be/stops/303725"], ["https://data.delijn.be/stops/206332", "https://data.delijn.be/stops/207331"], ["https://data.delijn.be/stops/506102", "https://data.delijn.be/stops/590331"], ["https://data.delijn.be/stops/200411", "https://data.delijn.be/stops/200545"], ["https://data.delijn.be/stops/301053", "https://data.delijn.be/stops/301054"], ["https://data.delijn.be/stops/400257", "https://data.delijn.be/stops/405589"], ["https://data.delijn.be/stops/404483", "https://data.delijn.be/stops/409259"], ["https://data.delijn.be/stops/109744", "https://data.delijn.be/stops/109748"], ["https://data.delijn.be/stops/501469", "https://data.delijn.be/stops/506468"], ["https://data.delijn.be/stops/201699", "https://data.delijn.be/stops/211103"], ["https://data.delijn.be/stops/300455", "https://data.delijn.be/stops/305002"], ["https://data.delijn.be/stops/304091", "https://data.delijn.be/stops/305437"], ["https://data.delijn.be/stops/502731", "https://data.delijn.be/stops/507731"], ["https://data.delijn.be/stops/502739", "https://data.delijn.be/stops/590335"], ["https://data.delijn.be/stops/208515", "https://data.delijn.be/stops/209672"], ["https://data.delijn.be/stops/305134", "https://data.delijn.be/stops/305142"], ["https://data.delijn.be/stops/400400", "https://data.delijn.be/stops/400954"], ["https://data.delijn.be/stops/306252", "https://data.delijn.be/stops/306253"], ["https://data.delijn.be/stops/304964", "https://data.delijn.be/stops/304977"], ["https://data.delijn.be/stops/300849", "https://data.delijn.be/stops/305336"], ["https://data.delijn.be/stops/300175", "https://data.delijn.be/stops/300178"], ["https://data.delijn.be/stops/408862", "https://data.delijn.be/stops/408916"], ["https://data.delijn.be/stops/503941", "https://data.delijn.be/stops/507941"], ["https://data.delijn.be/stops/300619", "https://data.delijn.be/stops/300620"], ["https://data.delijn.be/stops/505535", "https://data.delijn.be/stops/509357"], ["https://data.delijn.be/stops/501250", "https://data.delijn.be/stops/501633"], ["https://data.delijn.be/stops/202407", "https://data.delijn.be/stops/203015"], ["https://data.delijn.be/stops/301795", "https://data.delijn.be/stops/301796"], ["https://data.delijn.be/stops/204796", "https://data.delijn.be/stops/205093"], ["https://data.delijn.be/stops/405043", "https://data.delijn.be/stops/405810"], ["https://data.delijn.be/stops/404347", "https://data.delijn.be/stops/404355"], ["https://data.delijn.be/stops/107603", "https://data.delijn.be/stops/406795"], ["https://data.delijn.be/stops/503725", "https://data.delijn.be/stops/509938"], ["https://data.delijn.be/stops/102999", "https://data.delijn.be/stops/107416"], ["https://data.delijn.be/stops/204544", "https://data.delijn.be/stops/205552"], ["https://data.delijn.be/stops/307162", "https://data.delijn.be/stops/307776"], ["https://data.delijn.be/stops/504420", "https://data.delijn.be/stops/505166"], ["https://data.delijn.be/stops/505734", "https://data.delijn.be/stops/507606"], ["https://data.delijn.be/stops/302264", "https://data.delijn.be/stops/304842"], ["https://data.delijn.be/stops/307362", "https://data.delijn.be/stops/307364"], ["https://data.delijn.be/stops/403865", "https://data.delijn.be/stops/403866"], ["https://data.delijn.be/stops/202869", "https://data.delijn.be/stops/207937"], ["https://data.delijn.be/stops/103087", "https://data.delijn.be/stops/103088"], ["https://data.delijn.be/stops/503437", "https://data.delijn.be/stops/503442"], ["https://data.delijn.be/stops/201948", "https://data.delijn.be/stops/203507"], ["https://data.delijn.be/stops/109158", "https://data.delijn.be/stops/109232"], ["https://data.delijn.be/stops/106256", "https://data.delijn.be/stops/109902"], ["https://data.delijn.be/stops/401480", "https://data.delijn.be/stops/401774"], ["https://data.delijn.be/stops/406555", "https://data.delijn.be/stops/407382"], ["https://data.delijn.be/stops/104974", "https://data.delijn.be/stops/109555"], ["https://data.delijn.be/stops/501335", "https://data.delijn.be/stops/506335"], ["https://data.delijn.be/stops/209293", "https://data.delijn.be/stops/209724"], ["https://data.delijn.be/stops/405701", "https://data.delijn.be/stops/407206"], ["https://data.delijn.be/stops/306716", "https://data.delijn.be/stops/306717"], ["https://data.delijn.be/stops/108206", "https://data.delijn.be/stops/108207"], ["https://data.delijn.be/stops/205579", "https://data.delijn.be/stops/205593"], ["https://data.delijn.be/stops/204472", "https://data.delijn.be/stops/205594"], ["https://data.delijn.be/stops/204318", "https://data.delijn.be/stops/205060"], ["https://data.delijn.be/stops/505299", "https://data.delijn.be/stops/509446"], ["https://data.delijn.be/stops/104513", "https://data.delijn.be/stops/107787"], ["https://data.delijn.be/stops/400051", "https://data.delijn.be/stops/400168"], ["https://data.delijn.be/stops/104901", "https://data.delijn.be/stops/410261"], ["https://data.delijn.be/stops/403222", "https://data.delijn.be/stops/403223"], ["https://data.delijn.be/stops/301860", "https://data.delijn.be/stops/305465"], ["https://data.delijn.be/stops/104384", "https://data.delijn.be/stops/105420"], ["https://data.delijn.be/stops/402167", "https://data.delijn.be/stops/406857"], ["https://data.delijn.be/stops/504104", "https://data.delijn.be/stops/504107"], ["https://data.delijn.be/stops/504197", "https://data.delijn.be/stops/508697"], ["https://data.delijn.be/stops/206496", "https://data.delijn.be/stops/207496"], ["https://data.delijn.be/stops/303223", "https://data.delijn.be/stops/303224"], ["https://data.delijn.be/stops/101703", "https://data.delijn.be/stops/101704"], ["https://data.delijn.be/stops/403195", "https://data.delijn.be/stops/403232"], ["https://data.delijn.be/stops/506083", "https://data.delijn.be/stops/506518"], ["https://data.delijn.be/stops/401306", "https://data.delijn.be/stops/401324"], ["https://data.delijn.be/stops/501132", "https://data.delijn.be/stops/506132"], ["https://data.delijn.be/stops/204564", "https://data.delijn.be/stops/303536"], ["https://data.delijn.be/stops/208719", "https://data.delijn.be/stops/208720"], ["https://data.delijn.be/stops/107963", "https://data.delijn.be/stops/108031"], ["https://data.delijn.be/stops/400032", "https://data.delijn.be/stops/400042"], ["https://data.delijn.be/stops/105799", "https://data.delijn.be/stops/105811"], ["https://data.delijn.be/stops/102482", "https://data.delijn.be/stops/400435"], ["https://data.delijn.be/stops/302166", "https://data.delijn.be/stops/304001"], ["https://data.delijn.be/stops/405287", "https://data.delijn.be/stops/405288"], ["https://data.delijn.be/stops/202644", "https://data.delijn.be/stops/203093"], ["https://data.delijn.be/stops/503825", "https://data.delijn.be/stops/505969"], ["https://data.delijn.be/stops/505752", "https://data.delijn.be/stops/509878"], ["https://data.delijn.be/stops/503083", "https://data.delijn.be/stops/508081"], ["https://data.delijn.be/stops/301796", "https://data.delijn.be/stops/301811"], ["https://data.delijn.be/stops/209047", "https://data.delijn.be/stops/209489"], ["https://data.delijn.be/stops/400936", "https://data.delijn.be/stops/401923"], ["https://data.delijn.be/stops/407024", "https://data.delijn.be/stops/408429"], ["https://data.delijn.be/stops/510001", "https://data.delijn.be/stops/510004"], ["https://data.delijn.be/stops/209862", "https://data.delijn.be/stops/210061"], ["https://data.delijn.be/stops/406430", "https://data.delijn.be/stops/406431"], ["https://data.delijn.be/stops/101170", "https://data.delijn.be/stops/102415"], ["https://data.delijn.be/stops/400480", "https://data.delijn.be/stops/408695"], ["https://data.delijn.be/stops/302308", "https://data.delijn.be/stops/302309"], ["https://data.delijn.be/stops/107122", "https://data.delijn.be/stops/107123"], ["https://data.delijn.be/stops/206664", "https://data.delijn.be/stops/206707"], ["https://data.delijn.be/stops/503483", "https://data.delijn.be/stops/508485"], ["https://data.delijn.be/stops/403037", "https://data.delijn.be/stops/403038"], ["https://data.delijn.be/stops/106816", "https://data.delijn.be/stops/106817"], ["https://data.delijn.be/stops/508402", "https://data.delijn.be/stops/510016"], ["https://data.delijn.be/stops/308235", "https://data.delijn.be/stops/308236"], ["https://data.delijn.be/stops/307872", "https://data.delijn.be/stops/307873"], ["https://data.delijn.be/stops/200205", "https://data.delijn.be/stops/201254"], ["https://data.delijn.be/stops/101797", "https://data.delijn.be/stops/108613"], ["https://data.delijn.be/stops/101977", "https://data.delijn.be/stops/308493"], ["https://data.delijn.be/stops/200139", "https://data.delijn.be/stops/200435"], ["https://data.delijn.be/stops/301983", "https://data.delijn.be/stops/304160"], ["https://data.delijn.be/stops/109320", "https://data.delijn.be/stops/109323"], ["https://data.delijn.be/stops/402537", "https://data.delijn.be/stops/404092"], ["https://data.delijn.be/stops/402118", "https://data.delijn.be/stops/402123"], ["https://data.delijn.be/stops/403994", "https://data.delijn.be/stops/404033"], ["https://data.delijn.be/stops/104053", "https://data.delijn.be/stops/108412"], ["https://data.delijn.be/stops/102079", "https://data.delijn.be/stops/109869"], ["https://data.delijn.be/stops/510020", "https://data.delijn.be/stops/510025"], ["https://data.delijn.be/stops/402688", "https://data.delijn.be/stops/402709"], ["https://data.delijn.be/stops/202701", "https://data.delijn.be/stops/203701"], ["https://data.delijn.be/stops/307651", "https://data.delijn.be/stops/307693"], ["https://data.delijn.be/stops/201466", "https://data.delijn.be/stops/201835"], ["https://data.delijn.be/stops/502640", "https://data.delijn.be/stops/507115"], ["https://data.delijn.be/stops/303732", "https://data.delijn.be/stops/303738"], ["https://data.delijn.be/stops/206714", "https://data.delijn.be/stops/207128"], ["https://data.delijn.be/stops/300646", "https://data.delijn.be/stops/305813"], ["https://data.delijn.be/stops/204678", "https://data.delijn.be/stops/204685"], ["https://data.delijn.be/stops/300979", "https://data.delijn.be/stops/300997"], ["https://data.delijn.be/stops/216018", "https://data.delijn.be/stops/306729"], ["https://data.delijn.be/stops/206714", "https://data.delijn.be/stops/206728"], ["https://data.delijn.be/stops/507339", "https://data.delijn.be/stops/507692"], ["https://data.delijn.be/stops/107801", "https://data.delijn.be/stops/107803"], ["https://data.delijn.be/stops/403142", "https://data.delijn.be/stops/410272"], ["https://data.delijn.be/stops/504333", "https://data.delijn.be/stops/504336"], ["https://data.delijn.be/stops/407651", "https://data.delijn.be/stops/407652"], ["https://data.delijn.be/stops/504093", "https://data.delijn.be/stops/505194"], ["https://data.delijn.be/stops/306093", "https://data.delijn.be/stops/308828"], ["https://data.delijn.be/stops/104588", "https://data.delijn.be/stops/106414"], ["https://data.delijn.be/stops/303854", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/206174", "https://data.delijn.be/stops/207174"], ["https://data.delijn.be/stops/306681", "https://data.delijn.be/stops/307879"], ["https://data.delijn.be/stops/402451", "https://data.delijn.be/stops/402453"], ["https://data.delijn.be/stops/107326", "https://data.delijn.be/stops/107327"], ["https://data.delijn.be/stops/106591", "https://data.delijn.be/stops/106592"], ["https://data.delijn.be/stops/202754", "https://data.delijn.be/stops/202755"], ["https://data.delijn.be/stops/210123", "https://data.delijn.be/stops/211123"], ["https://data.delijn.be/stops/101828", "https://data.delijn.be/stops/107001"], ["https://data.delijn.be/stops/303051", "https://data.delijn.be/stops/304484"], ["https://data.delijn.be/stops/501669", "https://data.delijn.be/stops/506143"], ["https://data.delijn.be/stops/408223", "https://data.delijn.be/stops/408914"], ["https://data.delijn.be/stops/205013", "https://data.delijn.be/stops/205697"], ["https://data.delijn.be/stops/408056", "https://data.delijn.be/stops/408120"], ["https://data.delijn.be/stops/305089", "https://data.delijn.be/stops/306955"], ["https://data.delijn.be/stops/107402", "https://data.delijn.be/stops/107404"], ["https://data.delijn.be/stops/502590", "https://data.delijn.be/stops/507589"], ["https://data.delijn.be/stops/201685", "https://data.delijn.be/stops/202791"], ["https://data.delijn.be/stops/401629", "https://data.delijn.be/stops/401635"], ["https://data.delijn.be/stops/505684", "https://data.delijn.be/stops/507313"], ["https://data.delijn.be/stops/106192", "https://data.delijn.be/stops/106194"], ["https://data.delijn.be/stops/405802", "https://data.delijn.be/stops/409735"], ["https://data.delijn.be/stops/403272", "https://data.delijn.be/stops/403383"], ["https://data.delijn.be/stops/101425", "https://data.delijn.be/stops/106959"], ["https://data.delijn.be/stops/204243", "https://data.delijn.be/stops/205242"], ["https://data.delijn.be/stops/200908", "https://data.delijn.be/stops/202249"], ["https://data.delijn.be/stops/101073", "https://data.delijn.be/stops/107151"], ["https://data.delijn.be/stops/503510", "https://data.delijn.be/stops/508510"], ["https://data.delijn.be/stops/204366", "https://data.delijn.be/stops/205366"], ["https://data.delijn.be/stops/302946", "https://data.delijn.be/stops/302981"], ["https://data.delijn.be/stops/109312", "https://data.delijn.be/stops/109358"], ["https://data.delijn.be/stops/302873", "https://data.delijn.be/stops/302926"], ["https://data.delijn.be/stops/105372", "https://data.delijn.be/stops/105373"], ["https://data.delijn.be/stops/401212", "https://data.delijn.be/stops/401268"], ["https://data.delijn.be/stops/209480", "https://data.delijn.be/stops/209501"], ["https://data.delijn.be/stops/508402", "https://data.delijn.be/stops/508427"], ["https://data.delijn.be/stops/501104", "https://data.delijn.be/stops/506107"], ["https://data.delijn.be/stops/208208", "https://data.delijn.be/stops/209784"], ["https://data.delijn.be/stops/108262", "https://data.delijn.be/stops/108263"], ["https://data.delijn.be/stops/302074", "https://data.delijn.be/stops/302076"], ["https://data.delijn.be/stops/304398", "https://data.delijn.be/stops/307399"], ["https://data.delijn.be/stops/303470", "https://data.delijn.be/stops/303482"], ["https://data.delijn.be/stops/404575", "https://data.delijn.be/stops/407249"], ["https://data.delijn.be/stops/408228", "https://data.delijn.be/stops/408291"], ["https://data.delijn.be/stops/502543", "https://data.delijn.be/stops/507623"], ["https://data.delijn.be/stops/104824", "https://data.delijn.be/stops/109088"], ["https://data.delijn.be/stops/304019", "https://data.delijn.be/stops/304089"], ["https://data.delijn.be/stops/506301", "https://data.delijn.be/stops/506734"], ["https://data.delijn.be/stops/410062", "https://data.delijn.be/stops/410218"], ["https://data.delijn.be/stops/101673", "https://data.delijn.be/stops/103157"], ["https://data.delijn.be/stops/404631", "https://data.delijn.be/stops/404636"], ["https://data.delijn.be/stops/505591", "https://data.delijn.be/stops/507496"], ["https://data.delijn.be/stops/404106", "https://data.delijn.be/stops/404107"], ["https://data.delijn.be/stops/301643", "https://data.delijn.be/stops/307766"], ["https://data.delijn.be/stops/301667", "https://data.delijn.be/stops/301671"], ["https://data.delijn.be/stops/503802", "https://data.delijn.be/stops/508802"], ["https://data.delijn.be/stops/202217", "https://data.delijn.be/stops/204582"], ["https://data.delijn.be/stops/206958", "https://data.delijn.be/stops/207182"], ["https://data.delijn.be/stops/201337", "https://data.delijn.be/stops/204951"], ["https://data.delijn.be/stops/204143", "https://data.delijn.be/stops/207637"], ["https://data.delijn.be/stops/304617", "https://data.delijn.be/stops/304625"], ["https://data.delijn.be/stops/205986", "https://data.delijn.be/stops/207005"], ["https://data.delijn.be/stops/400720", "https://data.delijn.be/stops/404333"], ["https://data.delijn.be/stops/407197", "https://data.delijn.be/stops/407372"], ["https://data.delijn.be/stops/102463", "https://data.delijn.be/stops/400405"], ["https://data.delijn.be/stops/201279", "https://data.delijn.be/stops/209737"], ["https://data.delijn.be/stops/104304", "https://data.delijn.be/stops/109747"], ["https://data.delijn.be/stops/307301", "https://data.delijn.be/stops/307302"], ["https://data.delijn.be/stops/407950", "https://data.delijn.be/stops/407952"], ["https://data.delijn.be/stops/401393", "https://data.delijn.be/stops/408419"], ["https://data.delijn.be/stops/102441", "https://data.delijn.be/stops/102596"], ["https://data.delijn.be/stops/405910", "https://data.delijn.be/stops/405932"], ["https://data.delijn.be/stops/102950", "https://data.delijn.be/stops/104980"], ["https://data.delijn.be/stops/406138", "https://data.delijn.be/stops/406367"], ["https://data.delijn.be/stops/108939", "https://data.delijn.be/stops/109223"], ["https://data.delijn.be/stops/307446", "https://data.delijn.be/stops/308274"], ["https://data.delijn.be/stops/200693", "https://data.delijn.be/stops/210111"], ["https://data.delijn.be/stops/300542", "https://data.delijn.be/stops/300561"], ["https://data.delijn.be/stops/503764", "https://data.delijn.be/stops/508764"], ["https://data.delijn.be/stops/403172", "https://data.delijn.be/stops/403829"], ["https://data.delijn.be/stops/206241", "https://data.delijn.be/stops/207405"], ["https://data.delijn.be/stops/502175", "https://data.delijn.be/stops/502181"], ["https://data.delijn.be/stops/405776", "https://data.delijn.be/stops/409438"], ["https://data.delijn.be/stops/104363", "https://data.delijn.be/stops/108395"], ["https://data.delijn.be/stops/204229", "https://data.delijn.be/stops/205231"], ["https://data.delijn.be/stops/106674", "https://data.delijn.be/stops/106675"], ["https://data.delijn.be/stops/302646", "https://data.delijn.be/stops/306772"], ["https://data.delijn.be/stops/101834", "https://data.delijn.be/stops/107030"], ["https://data.delijn.be/stops/206759", "https://data.delijn.be/stops/209581"], ["https://data.delijn.be/stops/301787", "https://data.delijn.be/stops/302523"], ["https://data.delijn.be/stops/308150", "https://data.delijn.be/stops/308153"], ["https://data.delijn.be/stops/407385", "https://data.delijn.be/stops/407411"], ["https://data.delijn.be/stops/300551", "https://data.delijn.be/stops/300559"], ["https://data.delijn.be/stops/501127", "https://data.delijn.be/stops/506128"], ["https://data.delijn.be/stops/502343", "https://data.delijn.be/stops/505310"], ["https://data.delijn.be/stops/101835", "https://data.delijn.be/stops/105175"], ["https://data.delijn.be/stops/107591", "https://data.delijn.be/stops/107722"], ["https://data.delijn.be/stops/503158", "https://data.delijn.be/stops/508166"], ["https://data.delijn.be/stops/504206", "https://data.delijn.be/stops/509205"], ["https://data.delijn.be/stops/204828", "https://data.delijn.be/stops/205798"], ["https://data.delijn.be/stops/206906", "https://data.delijn.be/stops/207906"], ["https://data.delijn.be/stops/402357", "https://data.delijn.be/stops/407172"], ["https://data.delijn.be/stops/502572", "https://data.delijn.be/stops/502637"], ["https://data.delijn.be/stops/301511", "https://data.delijn.be/stops/301513"], ["https://data.delijn.be/stops/202683", "https://data.delijn.be/stops/202728"], ["https://data.delijn.be/stops/403300", "https://data.delijn.be/stops/410184"], ["https://data.delijn.be/stops/304904", "https://data.delijn.be/stops/306407"], ["https://data.delijn.be/stops/102657", "https://data.delijn.be/stops/109915"], ["https://data.delijn.be/stops/301949", "https://data.delijn.be/stops/301950"], ["https://data.delijn.be/stops/300582", "https://data.delijn.be/stops/308897"], ["https://data.delijn.be/stops/503546", "https://data.delijn.be/stops/503602"], ["https://data.delijn.be/stops/204989", "https://data.delijn.be/stops/208548"], ["https://data.delijn.be/stops/108419", "https://data.delijn.be/stops/108437"], ["https://data.delijn.be/stops/400662", "https://data.delijn.be/stops/402539"], ["https://data.delijn.be/stops/302732", "https://data.delijn.be/stops/308600"], ["https://data.delijn.be/stops/307721", "https://data.delijn.be/stops/307723"], ["https://data.delijn.be/stops/305787", "https://data.delijn.be/stops/305788"], ["https://data.delijn.be/stops/105256", "https://data.delijn.be/stops/105257"], ["https://data.delijn.be/stops/403263", "https://data.delijn.be/stops/403862"], ["https://data.delijn.be/stops/206788", "https://data.delijn.be/stops/208542"], ["https://data.delijn.be/stops/401517", "https://data.delijn.be/stops/401585"], ["https://data.delijn.be/stops/304058", "https://data.delijn.be/stops/304079"], ["https://data.delijn.be/stops/407127", "https://data.delijn.be/stops/407327"], ["https://data.delijn.be/stops/402331", "https://data.delijn.be/stops/402499"], ["https://data.delijn.be/stops/400786", "https://data.delijn.be/stops/400787"], ["https://data.delijn.be/stops/202248", "https://data.delijn.be/stops/203248"], ["https://data.delijn.be/stops/200086", "https://data.delijn.be/stops/203480"], ["https://data.delijn.be/stops/206341", "https://data.delijn.be/stops/207716"], ["https://data.delijn.be/stops/408764", "https://data.delijn.be/stops/408765"], ["https://data.delijn.be/stops/106357", "https://data.delijn.be/stops/106358"], ["https://data.delijn.be/stops/306626", "https://data.delijn.be/stops/306627"], ["https://data.delijn.be/stops/202384", "https://data.delijn.be/stops/203383"], ["https://data.delijn.be/stops/101145", "https://data.delijn.be/stops/105495"], ["https://data.delijn.be/stops/502273", "https://data.delijn.be/stops/507522"], ["https://data.delijn.be/stops/300447", "https://data.delijn.be/stops/307904"], ["https://data.delijn.be/stops/301923", "https://data.delijn.be/stops/307835"], ["https://data.delijn.be/stops/305767", "https://data.delijn.be/stops/305769"], ["https://data.delijn.be/stops/108892", "https://data.delijn.be/stops/108894"], ["https://data.delijn.be/stops/303212", "https://data.delijn.be/stops/304185"], ["https://data.delijn.be/stops/103298", "https://data.delijn.be/stops/105094"], ["https://data.delijn.be/stops/201327", "https://data.delijn.be/stops/202505"], ["https://data.delijn.be/stops/209598", "https://data.delijn.be/stops/307600"], ["https://data.delijn.be/stops/103754", "https://data.delijn.be/stops/103756"], ["https://data.delijn.be/stops/101669", "https://data.delijn.be/stops/109862"], ["https://data.delijn.be/stops/407436", "https://data.delijn.be/stops/407457"], ["https://data.delijn.be/stops/308611", "https://data.delijn.be/stops/308616"], ["https://data.delijn.be/stops/303019", "https://data.delijn.be/stops/304228"], ["https://data.delijn.be/stops/306923", "https://data.delijn.be/stops/307278"], ["https://data.delijn.be/stops/401118", "https://data.delijn.be/stops/402830"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/107157"], ["https://data.delijn.be/stops/104495", "https://data.delijn.be/stops/104496"], ["https://data.delijn.be/stops/504657", "https://data.delijn.be/stops/505213"], ["https://data.delijn.be/stops/206769", "https://data.delijn.be/stops/209048"], ["https://data.delijn.be/stops/303771", "https://data.delijn.be/stops/303772"], ["https://data.delijn.be/stops/208306", "https://data.delijn.be/stops/208307"], ["https://data.delijn.be/stops/104489", "https://data.delijn.be/stops/104562"], ["https://data.delijn.be/stops/400914", "https://data.delijn.be/stops/400971"], ["https://data.delijn.be/stops/503922", "https://data.delijn.be/stops/508922"], ["https://data.delijn.be/stops/105681", "https://data.delijn.be/stops/105686"], ["https://data.delijn.be/stops/403501", "https://data.delijn.be/stops/410292"], ["https://data.delijn.be/stops/503804", "https://data.delijn.be/stops/505538"], ["https://data.delijn.be/stops/200726", "https://data.delijn.be/stops/202615"], ["https://data.delijn.be/stops/503660", "https://data.delijn.be/stops/508665"], ["https://data.delijn.be/stops/102978", "https://data.delijn.be/stops/105112"], ["https://data.delijn.be/stops/303336", "https://data.delijn.be/stops/305120"], ["https://data.delijn.be/stops/502376", "https://data.delijn.be/stops/507376"], ["https://data.delijn.be/stops/204381", "https://data.delijn.be/stops/204762"], ["https://data.delijn.be/stops/302439", "https://data.delijn.be/stops/302443"], ["https://data.delijn.be/stops/501772", "https://data.delijn.be/stops/506283"], ["https://data.delijn.be/stops/503421", "https://data.delijn.be/stops/509099"], ["https://data.delijn.be/stops/206158", "https://data.delijn.be/stops/207159"], ["https://data.delijn.be/stops/107315", "https://data.delijn.be/stops/108205"], ["https://data.delijn.be/stops/404443", "https://data.delijn.be/stops/406995"], ["https://data.delijn.be/stops/106030", "https://data.delijn.be/stops/106035"], ["https://data.delijn.be/stops/206631", "https://data.delijn.be/stops/207630"], ["https://data.delijn.be/stops/300261", "https://data.delijn.be/stops/304951"], ["https://data.delijn.be/stops/501503", "https://data.delijn.be/stops/506503"], ["https://data.delijn.be/stops/201923", "https://data.delijn.be/stops/201924"], ["https://data.delijn.be/stops/204460", "https://data.delijn.be/stops/204463"], ["https://data.delijn.be/stops/502402", "https://data.delijn.be/stops/502403"], ["https://data.delijn.be/stops/400714", "https://data.delijn.be/stops/409512"], ["https://data.delijn.be/stops/507687", "https://data.delijn.be/stops/508345"], ["https://data.delijn.be/stops/307835", "https://data.delijn.be/stops/307836"], ["https://data.delijn.be/stops/503095", "https://data.delijn.be/stops/503105"], ["https://data.delijn.be/stops/308273", "https://data.delijn.be/stops/308278"], ["https://data.delijn.be/stops/300398", "https://data.delijn.be/stops/304587"], ["https://data.delijn.be/stops/406368", "https://data.delijn.be/stops/410395"], ["https://data.delijn.be/stops/501593", "https://data.delijn.be/stops/509511"], ["https://data.delijn.be/stops/502240", "https://data.delijn.be/stops/502721"], ["https://data.delijn.be/stops/401111", "https://data.delijn.be/stops/401156"], ["https://data.delijn.be/stops/404868", "https://data.delijn.be/stops/404966"], ["https://data.delijn.be/stops/301240", "https://data.delijn.be/stops/305968"], ["https://data.delijn.be/stops/208006", "https://data.delijn.be/stops/208007"], ["https://data.delijn.be/stops/207029", "https://data.delijn.be/stops/207032"], ["https://data.delijn.be/stops/202440", "https://data.delijn.be/stops/203343"], ["https://data.delijn.be/stops/503919", "https://data.delijn.be/stops/508916"], ["https://data.delijn.be/stops/300453", "https://data.delijn.be/stops/308060"], ["https://data.delijn.be/stops/102162", "https://data.delijn.be/stops/103340"], ["https://data.delijn.be/stops/300375", "https://data.delijn.be/stops/300468"], ["https://data.delijn.be/stops/504172", "https://data.delijn.be/stops/504836"], ["https://data.delijn.be/stops/300843", "https://data.delijn.be/stops/306718"], ["https://data.delijn.be/stops/305846", "https://data.delijn.be/stops/306395"], ["https://data.delijn.be/stops/302881", "https://data.delijn.be/stops/303077"], ["https://data.delijn.be/stops/306116", "https://data.delijn.be/stops/306117"], ["https://data.delijn.be/stops/105498", "https://data.delijn.be/stops/105499"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/202623"], ["https://data.delijn.be/stops/203495", "https://data.delijn.be/stops/203496"], ["https://data.delijn.be/stops/105497", "https://data.delijn.be/stops/105504"], ["https://data.delijn.be/stops/300687", "https://data.delijn.be/stops/303498"], ["https://data.delijn.be/stops/203227", "https://data.delijn.be/stops/208857"], ["https://data.delijn.be/stops/104939", "https://data.delijn.be/stops/107849"], ["https://data.delijn.be/stops/502310", "https://data.delijn.be/stops/507302"], ["https://data.delijn.be/stops/202463", "https://data.delijn.be/stops/203464"], ["https://data.delijn.be/stops/402887", "https://data.delijn.be/stops/402942"], ["https://data.delijn.be/stops/202908", "https://data.delijn.be/stops/203818"], ["https://data.delijn.be/stops/102869", "https://data.delijn.be/stops/104975"], ["https://data.delijn.be/stops/106514", "https://data.delijn.be/stops/106518"], ["https://data.delijn.be/stops/508499", "https://data.delijn.be/stops/508685"], ["https://data.delijn.be/stops/208261", "https://data.delijn.be/stops/208262"], ["https://data.delijn.be/stops/503013", "https://data.delijn.be/stops/507736"], ["https://data.delijn.be/stops/204502", "https://data.delijn.be/stops/204503"], ["https://data.delijn.be/stops/503253", "https://data.delijn.be/stops/503265"], ["https://data.delijn.be/stops/204633", "https://data.delijn.be/stops/205632"], ["https://data.delijn.be/stops/305496", "https://data.delijn.be/stops/307813"], ["https://data.delijn.be/stops/403965", "https://data.delijn.be/stops/408709"], ["https://data.delijn.be/stops/102924", "https://data.delijn.be/stops/104803"], ["https://data.delijn.be/stops/205406", "https://data.delijn.be/stops/205407"], ["https://data.delijn.be/stops/502532", "https://data.delijn.be/stops/502533"], ["https://data.delijn.be/stops/201763", "https://data.delijn.be/stops/209272"], ["https://data.delijn.be/stops/400493", "https://data.delijn.be/stops/407754"], ["https://data.delijn.be/stops/204724", "https://data.delijn.be/stops/204761"], ["https://data.delijn.be/stops/104733", "https://data.delijn.be/stops/204258"], ["https://data.delijn.be/stops/200631", "https://data.delijn.be/stops/201632"], ["https://data.delijn.be/stops/305712", "https://data.delijn.be/stops/305715"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/106449"], ["https://data.delijn.be/stops/105103", "https://data.delijn.be/stops/109504"], ["https://data.delijn.be/stops/106743", "https://data.delijn.be/stops/106745"], ["https://data.delijn.be/stops/200693", "https://data.delijn.be/stops/201720"], ["https://data.delijn.be/stops/303009", "https://data.delijn.be/stops/303010"], ["https://data.delijn.be/stops/501225", "https://data.delijn.be/stops/506225"], ["https://data.delijn.be/stops/200342", "https://data.delijn.be/stops/201342"], ["https://data.delijn.be/stops/109724", "https://data.delijn.be/stops/109728"], ["https://data.delijn.be/stops/400102", "https://data.delijn.be/stops/409130"], ["https://data.delijn.be/stops/209481", "https://data.delijn.be/stops/209482"], ["https://data.delijn.be/stops/504269", "https://data.delijn.be/stops/504690"], ["https://data.delijn.be/stops/505116", "https://data.delijn.be/stops/505434"], ["https://data.delijn.be/stops/300564", "https://data.delijn.be/stops/300589"], ["https://data.delijn.be/stops/108927", "https://data.delijn.be/stops/109137"], ["https://data.delijn.be/stops/406829", "https://data.delijn.be/stops/409458"], ["https://data.delijn.be/stops/404456", "https://data.delijn.be/stops/404476"], ["https://data.delijn.be/stops/503693", "https://data.delijn.be/stops/504871"], ["https://data.delijn.be/stops/305334", "https://data.delijn.be/stops/307605"], ["https://data.delijn.be/stops/300363", "https://data.delijn.be/stops/300402"], ["https://data.delijn.be/stops/102021", "https://data.delijn.be/stops/104092"], ["https://data.delijn.be/stops/502470", "https://data.delijn.be/stops/507470"], ["https://data.delijn.be/stops/408224", "https://data.delijn.be/stops/408914"], ["https://data.delijn.be/stops/406121", "https://data.delijn.be/stops/406125"], ["https://data.delijn.be/stops/200021", "https://data.delijn.be/stops/200022"], ["https://data.delijn.be/stops/400204", "https://data.delijn.be/stops/400214"], ["https://data.delijn.be/stops/210045", "https://data.delijn.be/stops/211106"], ["https://data.delijn.be/stops/202518", "https://data.delijn.be/stops/203519"], ["https://data.delijn.be/stops/206388", "https://data.delijn.be/stops/207967"], ["https://data.delijn.be/stops/504213", "https://data.delijn.be/stops/504221"], ["https://data.delijn.be/stops/209558", "https://data.delijn.be/stops/209612"], ["https://data.delijn.be/stops/205982", "https://data.delijn.be/stops/208402"], ["https://data.delijn.be/stops/504031", "https://data.delijn.be/stops/505113"], ["https://data.delijn.be/stops/206242", "https://data.delijn.be/stops/207404"], ["https://data.delijn.be/stops/400843", "https://data.delijn.be/stops/409565"], ["https://data.delijn.be/stops/507927", "https://data.delijn.be/stops/509758"], ["https://data.delijn.be/stops/300322", "https://data.delijn.be/stops/300323"], ["https://data.delijn.be/stops/206521", "https://data.delijn.be/stops/207520"], ["https://data.delijn.be/stops/405093", "https://data.delijn.be/stops/405109"], ["https://data.delijn.be/stops/106285", "https://data.delijn.be/stops/106348"], ["https://data.delijn.be/stops/200764", "https://data.delijn.be/stops/208301"], ["https://data.delijn.be/stops/301371", "https://data.delijn.be/stops/304695"], ["https://data.delijn.be/stops/401272", "https://data.delijn.be/stops/401273"], ["https://data.delijn.be/stops/400799", "https://data.delijn.be/stops/409602"], ["https://data.delijn.be/stops/302786", "https://data.delijn.be/stops/302787"], ["https://data.delijn.be/stops/402506", "https://data.delijn.be/stops/402622"], ["https://data.delijn.be/stops/104540", "https://data.delijn.be/stops/108280"], ["https://data.delijn.be/stops/101171", "https://data.delijn.be/stops/104855"], ["https://data.delijn.be/stops/503206", "https://data.delijn.be/stops/508813"], ["https://data.delijn.be/stops/406338", "https://data.delijn.be/stops/406365"], ["https://data.delijn.be/stops/303988", "https://data.delijn.be/stops/306294"], ["https://data.delijn.be/stops/101388", "https://data.delijn.be/stops/103136"], ["https://data.delijn.be/stops/208220", "https://data.delijn.be/stops/209220"], ["https://data.delijn.be/stops/109129", "https://data.delijn.be/stops/109131"], ["https://data.delijn.be/stops/503947", "https://data.delijn.be/stops/504796"], ["https://data.delijn.be/stops/201359", "https://data.delijn.be/stops/211095"], ["https://data.delijn.be/stops/106895", "https://data.delijn.be/stops/107224"], ["https://data.delijn.be/stops/305593", "https://data.delijn.be/stops/308815"], ["https://data.delijn.be/stops/207204", "https://data.delijn.be/stops/207206"], ["https://data.delijn.be/stops/302633", "https://data.delijn.be/stops/307100"], ["https://data.delijn.be/stops/304145", "https://data.delijn.be/stops/304171"], ["https://data.delijn.be/stops/304261", "https://data.delijn.be/stops/304285"], ["https://data.delijn.be/stops/509625", "https://data.delijn.be/stops/509627"], ["https://data.delijn.be/stops/103980", "https://data.delijn.be/stops/106065"], ["https://data.delijn.be/stops/503588", "https://data.delijn.be/stops/504892"], ["https://data.delijn.be/stops/102186", "https://data.delijn.be/stops/109748"], ["https://data.delijn.be/stops/302254", "https://data.delijn.be/stops/304842"], ["https://data.delijn.be/stops/404906", "https://data.delijn.be/stops/404907"], ["https://data.delijn.be/stops/207764", "https://data.delijn.be/stops/207787"], ["https://data.delijn.be/stops/403062", "https://data.delijn.be/stops/405122"], ["https://data.delijn.be/stops/204804", "https://data.delijn.be/stops/209291"], ["https://data.delijn.be/stops/505671", "https://data.delijn.be/stops/507268"], ["https://data.delijn.be/stops/203576", "https://data.delijn.be/stops/211851"], ["https://data.delijn.be/stops/103156", "https://data.delijn.be/stops/103157"], ["https://data.delijn.be/stops/408618", "https://data.delijn.be/stops/408691"], ["https://data.delijn.be/stops/204200", "https://data.delijn.be/stops/205200"], ["https://data.delijn.be/stops/306293", "https://data.delijn.be/stops/306294"], ["https://data.delijn.be/stops/408733", "https://data.delijn.be/stops/408780"], ["https://data.delijn.be/stops/407130", "https://data.delijn.be/stops/407131"], ["https://data.delijn.be/stops/107465", "https://data.delijn.be/stops/109382"], ["https://data.delijn.be/stops/200643", "https://data.delijn.be/stops/201643"], ["https://data.delijn.be/stops/300896", "https://data.delijn.be/stops/300939"], ["https://data.delijn.be/stops/202820", "https://data.delijn.be/stops/202821"], ["https://data.delijn.be/stops/301498", "https://data.delijn.be/stops/307930"], ["https://data.delijn.be/stops/103185", "https://data.delijn.be/stops/103255"], ["https://data.delijn.be/stops/200904", "https://data.delijn.be/stops/201957"], ["https://data.delijn.be/stops/410047", "https://data.delijn.be/stops/410048"], ["https://data.delijn.be/stops/508664", "https://data.delijn.be/stops/508669"], ["https://data.delijn.be/stops/301528", "https://data.delijn.be/stops/301580"], ["https://data.delijn.be/stops/203854", "https://data.delijn.be/stops/203855"], ["https://data.delijn.be/stops/507204", "https://data.delijn.be/stops/508692"], ["https://data.delijn.be/stops/107978", "https://data.delijn.be/stops/107981"], ["https://data.delijn.be/stops/304756", "https://data.delijn.be/stops/307514"], ["https://data.delijn.be/stops/504398", "https://data.delijn.be/stops/509435"], ["https://data.delijn.be/stops/202109", "https://data.delijn.be/stops/203119"], ["https://data.delijn.be/stops/502497", "https://data.delijn.be/stops/505323"], ["https://data.delijn.be/stops/204447", "https://data.delijn.be/stops/204613"], ["https://data.delijn.be/stops/501673", "https://data.delijn.be/stops/506487"], ["https://data.delijn.be/stops/307309", "https://data.delijn.be/stops/307313"], ["https://data.delijn.be/stops/306650", "https://data.delijn.be/stops/306653"], ["https://data.delijn.be/stops/208105", "https://data.delijn.be/stops/209105"], ["https://data.delijn.be/stops/301898", "https://data.delijn.be/stops/306956"], ["https://data.delijn.be/stops/202849", "https://data.delijn.be/stops/202907"], ["https://data.delijn.be/stops/504022", "https://data.delijn.be/stops/509022"], ["https://data.delijn.be/stops/502598", "https://data.delijn.be/stops/507598"], ["https://data.delijn.be/stops/202344", "https://data.delijn.be/stops/207551"], ["https://data.delijn.be/stops/208461", "https://data.delijn.be/stops/209462"], ["https://data.delijn.be/stops/200173", "https://data.delijn.be/stops/201277"], ["https://data.delijn.be/stops/301059", "https://data.delijn.be/stops/308854"], ["https://data.delijn.be/stops/404852", "https://data.delijn.be/stops/404853"], ["https://data.delijn.be/stops/200924", "https://data.delijn.be/stops/203703"], ["https://data.delijn.be/stops/201415", "https://data.delijn.be/stops/208888"], ["https://data.delijn.be/stops/504441", "https://data.delijn.be/stops/505299"], ["https://data.delijn.be/stops/104133", "https://data.delijn.be/stops/108037"], ["https://data.delijn.be/stops/105891", "https://data.delijn.be/stops/105908"], ["https://data.delijn.be/stops/201663", "https://data.delijn.be/stops/202320"], ["https://data.delijn.be/stops/200630", "https://data.delijn.be/stops/200631"], ["https://data.delijn.be/stops/308777", "https://data.delijn.be/stops/308779"], ["https://data.delijn.be/stops/200167", "https://data.delijn.be/stops/203619"], ["https://data.delijn.be/stops/208804", "https://data.delijn.be/stops/208806"], ["https://data.delijn.be/stops/206680", "https://data.delijn.be/stops/208491"], ["https://data.delijn.be/stops/505156", "https://data.delijn.be/stops/505329"], ["https://data.delijn.be/stops/102505", "https://data.delijn.be/stops/104940"], ["https://data.delijn.be/stops/206766", "https://data.delijn.be/stops/206947"], ["https://data.delijn.be/stops/300750", "https://data.delijn.be/stops/300791"], ["https://data.delijn.be/stops/402263", "https://data.delijn.be/stops/402299"], ["https://data.delijn.be/stops/501270", "https://data.delijn.be/stops/506270"], ["https://data.delijn.be/stops/210089", "https://data.delijn.be/stops/211044"], ["https://data.delijn.be/stops/305716", "https://data.delijn.be/stops/306304"], ["https://data.delijn.be/stops/304364", "https://data.delijn.be/stops/307371"], ["https://data.delijn.be/stops/301773", "https://data.delijn.be/stops/301774"], ["https://data.delijn.be/stops/101912", "https://data.delijn.be/stops/101913"], ["https://data.delijn.be/stops/303058", "https://data.delijn.be/stops/303680"], ["https://data.delijn.be/stops/300721", "https://data.delijn.be/stops/308935"], ["https://data.delijn.be/stops/407400", "https://data.delijn.be/stops/407498"], ["https://data.delijn.be/stops/202408", "https://data.delijn.be/stops/211032"], ["https://data.delijn.be/stops/207679", "https://data.delijn.be/stops/209150"], ["https://data.delijn.be/stops/402956", "https://data.delijn.be/stops/404062"], ["https://data.delijn.be/stops/303193", "https://data.delijn.be/stops/303203"], ["https://data.delijn.be/stops/307831", "https://data.delijn.be/stops/308525"], ["https://data.delijn.be/stops/105475", "https://data.delijn.be/stops/109934"], ["https://data.delijn.be/stops/505626", "https://data.delijn.be/stops/507497"], ["https://data.delijn.be/stops/208748", "https://data.delijn.be/stops/208750"], ["https://data.delijn.be/stops/206776", "https://data.delijn.be/stops/209486"], ["https://data.delijn.be/stops/106263", "https://data.delijn.be/stops/106264"], ["https://data.delijn.be/stops/501476", "https://data.delijn.be/stops/506048"], ["https://data.delijn.be/stops/207803", "https://data.delijn.be/stops/300218"], ["https://data.delijn.be/stops/403967", "https://data.delijn.be/stops/405978"], ["https://data.delijn.be/stops/401112", "https://data.delijn.be/stops/401158"], ["https://data.delijn.be/stops/505089", "https://data.delijn.be/stops/507341"], ["https://data.delijn.be/stops/104407", "https://data.delijn.be/stops/104627"], ["https://data.delijn.be/stops/201976", "https://data.delijn.be/stops/206582"], ["https://data.delijn.be/stops/300630", "https://data.delijn.be/stops/307862"], ["https://data.delijn.be/stops/500115", "https://data.delijn.be/stops/505023"], ["https://data.delijn.be/stops/401201", "https://data.delijn.be/stops/401298"], ["https://data.delijn.be/stops/201234", "https://data.delijn.be/stops/203353"], ["https://data.delijn.be/stops/501109", "https://data.delijn.be/stops/506103"], ["https://data.delijn.be/stops/402694", "https://data.delijn.be/stops/405536"], ["https://data.delijn.be/stops/109255", "https://data.delijn.be/stops/109256"], ["https://data.delijn.be/stops/106604", "https://data.delijn.be/stops/106685"], ["https://data.delijn.be/stops/501161", "https://data.delijn.be/stops/501166"], ["https://data.delijn.be/stops/102478", "https://data.delijn.be/stops/405297"], ["https://data.delijn.be/stops/201123", "https://data.delijn.be/stops/201124"], ["https://data.delijn.be/stops/302662", "https://data.delijn.be/stops/302695"], ["https://data.delijn.be/stops/302720", "https://data.delijn.be/stops/308596"], ["https://data.delijn.be/stops/502438", "https://data.delijn.be/stops/502749"], ["https://data.delijn.be/stops/208132", "https://data.delijn.be/stops/208198"], ["https://data.delijn.be/stops/300897", "https://data.delijn.be/stops/305889"], ["https://data.delijn.be/stops/505749", "https://data.delijn.be/stops/507706"], ["https://data.delijn.be/stops/103068", "https://data.delijn.be/stops/105761"], ["https://data.delijn.be/stops/406320", "https://data.delijn.be/stops/406321"], ["https://data.delijn.be/stops/206604", "https://data.delijn.be/stops/206703"], ["https://data.delijn.be/stops/206367", "https://data.delijn.be/stops/207367"], ["https://data.delijn.be/stops/106906", "https://data.delijn.be/stops/106908"], ["https://data.delijn.be/stops/204445", "https://data.delijn.be/stops/204671"], ["https://data.delijn.be/stops/109445", "https://data.delijn.be/stops/109446"], ["https://data.delijn.be/stops/104700", "https://data.delijn.be/stops/104724"], ["https://data.delijn.be/stops/403147", "https://data.delijn.be/stops/403831"], ["https://data.delijn.be/stops/206906", "https://data.delijn.be/stops/206907"], ["https://data.delijn.be/stops/103620", "https://data.delijn.be/stops/103930"], ["https://data.delijn.be/stops/206613", "https://data.delijn.be/stops/207613"], ["https://data.delijn.be/stops/404100", "https://data.delijn.be/stops/404208"], ["https://data.delijn.be/stops/106623", "https://data.delijn.be/stops/106624"], ["https://data.delijn.be/stops/305126", "https://data.delijn.be/stops/308122"], ["https://data.delijn.be/stops/504230", "https://data.delijn.be/stops/504241"], ["https://data.delijn.be/stops/400621", "https://data.delijn.be/stops/401997"], ["https://data.delijn.be/stops/503346", "https://data.delijn.be/stops/507817"], ["https://data.delijn.be/stops/103244", "https://data.delijn.be/stops/108124"], ["https://data.delijn.be/stops/305333", "https://data.delijn.be/stops/307302"], ["https://data.delijn.be/stops/502815", "https://data.delijn.be/stops/507280"], ["https://data.delijn.be/stops/105577", "https://data.delijn.be/stops/106356"], ["https://data.delijn.be/stops/401408", "https://data.delijn.be/stops/301085"], ["https://data.delijn.be/stops/505692", "https://data.delijn.be/stops/507564"], ["https://data.delijn.be/stops/303207", "https://data.delijn.be/stops/303213"], ["https://data.delijn.be/stops/102030", "https://data.delijn.be/stops/104111"], ["https://data.delijn.be/stops/205156", "https://data.delijn.be/stops/205582"], ["https://data.delijn.be/stops/504150", "https://data.delijn.be/stops/509159"], ["https://data.delijn.be/stops/109914", "https://data.delijn.be/stops/301152"], ["https://data.delijn.be/stops/505354", "https://data.delijn.be/stops/509368"], ["https://data.delijn.be/stops/208381", "https://data.delijn.be/stops/209381"], ["https://data.delijn.be/stops/108653", "https://data.delijn.be/stops/108654"], ["https://data.delijn.be/stops/301758", "https://data.delijn.be/stops/301759"], ["https://data.delijn.be/stops/106103", "https://data.delijn.be/stops/106122"], ["https://data.delijn.be/stops/303724", "https://data.delijn.be/stops/303725"], ["https://data.delijn.be/stops/509533", "https://data.delijn.be/stops/509534"], ["https://data.delijn.be/stops/200261", "https://data.delijn.be/stops/201261"], ["https://data.delijn.be/stops/404127", "https://data.delijn.be/stops/404204"], ["https://data.delijn.be/stops/204727", "https://data.delijn.be/stops/205523"], ["https://data.delijn.be/stops/105216", "https://data.delijn.be/stops/109396"], ["https://data.delijn.be/stops/403921", "https://data.delijn.be/stops/403996"], ["https://data.delijn.be/stops/105508", "https://data.delijn.be/stops/105788"], ["https://data.delijn.be/stops/102077", "https://data.delijn.be/stops/105996"], ["https://data.delijn.be/stops/405990", "https://data.delijn.be/stops/405991"], ["https://data.delijn.be/stops/503200", "https://data.delijn.be/stops/508200"], ["https://data.delijn.be/stops/109772", "https://data.delijn.be/stops/109773"], ["https://data.delijn.be/stops/408094", "https://data.delijn.be/stops/409113"], ["https://data.delijn.be/stops/403246", "https://data.delijn.be/stops/403383"], ["https://data.delijn.be/stops/306194", "https://data.delijn.be/stops/307854"], ["https://data.delijn.be/stops/107396", "https://data.delijn.be/stops/107406"], ["https://data.delijn.be/stops/400766", "https://data.delijn.be/stops/400767"], ["https://data.delijn.be/stops/306706", "https://data.delijn.be/stops/306708"], ["https://data.delijn.be/stops/104036", "https://data.delijn.be/stops/108828"], ["https://data.delijn.be/stops/207333", "https://data.delijn.be/stops/207364"], ["https://data.delijn.be/stops/503879", "https://data.delijn.be/stops/508880"], ["https://data.delijn.be/stops/105033", "https://data.delijn.be/stops/105048"], ["https://data.delijn.be/stops/400652", "https://data.delijn.be/stops/406767"], ["https://data.delijn.be/stops/301419", "https://data.delijn.be/stops/301420"], ["https://data.delijn.be/stops/503921", "https://data.delijn.be/stops/508920"], ["https://data.delijn.be/stops/503867", "https://data.delijn.be/stops/508503"], ["https://data.delijn.be/stops/301691", "https://data.delijn.be/stops/301692"], ["https://data.delijn.be/stops/505213", "https://data.delijn.be/stops/509527"], ["https://data.delijn.be/stops/406520", "https://data.delijn.be/stops/407434"], ["https://data.delijn.be/stops/206507", "https://data.delijn.be/stops/207506"], ["https://data.delijn.be/stops/503461", "https://data.delijn.be/stops/503466"], ["https://data.delijn.be/stops/206106", "https://data.delijn.be/stops/206911"], ["https://data.delijn.be/stops/102723", "https://data.delijn.be/stops/103310"], ["https://data.delijn.be/stops/101593", "https://data.delijn.be/stops/101690"], ["https://data.delijn.be/stops/505515", "https://data.delijn.be/stops/505614"], ["https://data.delijn.be/stops/407169", "https://data.delijn.be/stops/407171"], ["https://data.delijn.be/stops/505046", "https://data.delijn.be/stops/506597"], ["https://data.delijn.be/stops/208308", "https://data.delijn.be/stops/505973"], ["https://data.delijn.be/stops/504000", "https://data.delijn.be/stops/504318"], ["https://data.delijn.be/stops/404662", "https://data.delijn.be/stops/404664"], ["https://data.delijn.be/stops/503222", "https://data.delijn.be/stops/508222"], ["https://data.delijn.be/stops/101809", "https://data.delijn.be/stops/109586"], ["https://data.delijn.be/stops/306063", "https://data.delijn.be/stops/306064"], ["https://data.delijn.be/stops/300772", "https://data.delijn.be/stops/302405"], ["https://data.delijn.be/stops/106920", "https://data.delijn.be/stops/107287"], ["https://data.delijn.be/stops/201064", "https://data.delijn.be/stops/201083"], ["https://data.delijn.be/stops/403209", "https://data.delijn.be/stops/405127"], ["https://data.delijn.be/stops/303011", "https://data.delijn.be/stops/303012"], ["https://data.delijn.be/stops/301228", "https://data.delijn.be/stops/304269"], ["https://data.delijn.be/stops/301280", "https://data.delijn.be/stops/301311"], ["https://data.delijn.be/stops/208122", "https://data.delijn.be/stops/208239"], ["https://data.delijn.be/stops/300839", "https://data.delijn.be/stops/300841"], ["https://data.delijn.be/stops/509623", "https://data.delijn.be/stops/509628"], ["https://data.delijn.be/stops/504325", "https://data.delijn.be/stops/504335"], ["https://data.delijn.be/stops/508682", "https://data.delijn.be/stops/508687"], ["https://data.delijn.be/stops/304158", "https://data.delijn.be/stops/304498"], ["https://data.delijn.be/stops/501286", "https://data.delijn.be/stops/506289"], ["https://data.delijn.be/stops/102718", "https://data.delijn.be/stops/107152"], ["https://data.delijn.be/stops/206410", "https://data.delijn.be/stops/207410"], ["https://data.delijn.be/stops/406016", "https://data.delijn.be/stops/406135"], ["https://data.delijn.be/stops/503858", "https://data.delijn.be/stops/503859"], ["https://data.delijn.be/stops/200126", "https://data.delijn.be/stops/201945"], ["https://data.delijn.be/stops/501231", "https://data.delijn.be/stops/506231"], ["https://data.delijn.be/stops/500603", "https://data.delijn.be/stops/505398"], ["https://data.delijn.be/stops/403803", "https://data.delijn.be/stops/406302"], ["https://data.delijn.be/stops/502261", "https://data.delijn.be/stops/507261"], ["https://data.delijn.be/stops/400563", "https://data.delijn.be/stops/403062"], ["https://data.delijn.be/stops/202079", "https://data.delijn.be/stops/204079"], ["https://data.delijn.be/stops/404356", "https://data.delijn.be/stops/404358"], ["https://data.delijn.be/stops/202905", "https://data.delijn.be/stops/203905"], ["https://data.delijn.be/stops/409379", "https://data.delijn.be/stops/409390"], ["https://data.delijn.be/stops/105993", "https://data.delijn.be/stops/107958"], ["https://data.delijn.be/stops/207067", "https://data.delijn.be/stops/207074"], ["https://data.delijn.be/stops/304059", "https://data.delijn.be/stops/307504"], ["https://data.delijn.be/stops/502657", "https://data.delijn.be/stops/507657"], ["https://data.delijn.be/stops/106133", "https://data.delijn.be/stops/109560"], ["https://data.delijn.be/stops/501383", "https://data.delijn.be/stops/506191"], ["https://data.delijn.be/stops/403096", "https://data.delijn.be/stops/403512"], ["https://data.delijn.be/stops/305209", "https://data.delijn.be/stops/305210"], ["https://data.delijn.be/stops/404550", "https://data.delijn.be/stops/404551"], ["https://data.delijn.be/stops/200717", "https://data.delijn.be/stops/210050"], ["https://data.delijn.be/stops/204734", "https://data.delijn.be/stops/205757"], ["https://data.delijn.be/stops/204390", "https://data.delijn.be/stops/204401"], ["https://data.delijn.be/stops/303857", "https://data.delijn.be/stops/303858"], ["https://data.delijn.be/stops/403051", "https://data.delijn.be/stops/404979"], ["https://data.delijn.be/stops/308144", "https://data.delijn.be/stops/308177"], ["https://data.delijn.be/stops/102979", "https://data.delijn.be/stops/106832"], ["https://data.delijn.be/stops/208043", "https://data.delijn.be/stops/208220"], ["https://data.delijn.be/stops/302050", "https://data.delijn.be/stops/302251"], ["https://data.delijn.be/stops/305027", "https://data.delijn.be/stops/305030"], ["https://data.delijn.be/stops/400592", "https://data.delijn.be/stops/405992"], ["https://data.delijn.be/stops/400491", "https://data.delijn.be/stops/407754"], ["https://data.delijn.be/stops/404961", "https://data.delijn.be/stops/404964"], ["https://data.delijn.be/stops/503913", "https://data.delijn.be/stops/508934"], ["https://data.delijn.be/stops/106120", "https://data.delijn.be/stops/106121"], ["https://data.delijn.be/stops/302878", "https://data.delijn.be/stops/303594"], ["https://data.delijn.be/stops/301328", "https://data.delijn.be/stops/305919"], ["https://data.delijn.be/stops/301607", "https://data.delijn.be/stops/301619"], ["https://data.delijn.be/stops/304024", "https://data.delijn.be/stops/304036"], ["https://data.delijn.be/stops/303627", "https://data.delijn.be/stops/307676"], ["https://data.delijn.be/stops/300264", "https://data.delijn.be/stops/303817"], ["https://data.delijn.be/stops/104962", "https://data.delijn.be/stops/107429"], ["https://data.delijn.be/stops/201897", "https://data.delijn.be/stops/202146"], ["https://data.delijn.be/stops/108367", "https://data.delijn.be/stops/108456"], ["https://data.delijn.be/stops/406604", "https://data.delijn.be/stops/406643"], ["https://data.delijn.be/stops/300224", "https://data.delijn.be/stops/300225"], ["https://data.delijn.be/stops/302691", "https://data.delijn.be/stops/302699"], ["https://data.delijn.be/stops/402194", "https://data.delijn.be/stops/402355"], ["https://data.delijn.be/stops/206560", "https://data.delijn.be/stops/207539"], ["https://data.delijn.be/stops/206704", "https://data.delijn.be/stops/206732"], ["https://data.delijn.be/stops/307728", "https://data.delijn.be/stops/307736"], ["https://data.delijn.be/stops/402716", "https://data.delijn.be/stops/402717"], ["https://data.delijn.be/stops/402235", "https://data.delijn.be/stops/402237"], ["https://data.delijn.be/stops/304939", "https://data.delijn.be/stops/304948"], ["https://data.delijn.be/stops/505691", "https://data.delijn.be/stops/505748"], ["https://data.delijn.be/stops/403218", "https://data.delijn.be/stops/403389"], ["https://data.delijn.be/stops/405809", "https://data.delijn.be/stops/409696"], ["https://data.delijn.be/stops/200927", "https://data.delijn.be/stops/200950"], ["https://data.delijn.be/stops/400184", "https://data.delijn.be/stops/407671"], ["https://data.delijn.be/stops/403497", "https://data.delijn.be/stops/410029"], ["https://data.delijn.be/stops/107163", "https://data.delijn.be/stops/107561"], ["https://data.delijn.be/stops/104646", "https://data.delijn.be/stops/108048"], ["https://data.delijn.be/stops/408820", "https://data.delijn.be/stops/408831"], ["https://data.delijn.be/stops/102209", "https://data.delijn.be/stops/106242"], ["https://data.delijn.be/stops/106697", "https://data.delijn.be/stops/106698"], ["https://data.delijn.be/stops/406651", "https://data.delijn.be/stops/407168"], ["https://data.delijn.be/stops/308475", "https://data.delijn.be/stops/308476"], ["https://data.delijn.be/stops/208048", "https://data.delijn.be/stops/209489"], ["https://data.delijn.be/stops/208403", "https://data.delijn.be/stops/209364"], ["https://data.delijn.be/stops/107183", "https://data.delijn.be/stops/107188"], ["https://data.delijn.be/stops/403942", "https://data.delijn.be/stops/403986"], ["https://data.delijn.be/stops/308377", "https://data.delijn.be/stops/308410"], ["https://data.delijn.be/stops/405964", "https://data.delijn.be/stops/405972"], ["https://data.delijn.be/stops/206691", "https://data.delijn.be/stops/207691"], ["https://data.delijn.be/stops/206915", "https://data.delijn.be/stops/207859"], ["https://data.delijn.be/stops/505935", "https://data.delijn.be/stops/508968"], ["https://data.delijn.be/stops/403576", "https://data.delijn.be/stops/405667"], ["https://data.delijn.be/stops/501080", "https://data.delijn.be/stops/506084"], ["https://data.delijn.be/stops/301647", "https://data.delijn.be/stops/303662"], ["https://data.delijn.be/stops/403900", "https://data.delijn.be/stops/403942"], ["https://data.delijn.be/stops/107173", "https://data.delijn.be/stops/107733"], ["https://data.delijn.be/stops/200223", "https://data.delijn.be/stops/200224"], ["https://data.delijn.be/stops/405666", "https://data.delijn.be/stops/409621"], ["https://data.delijn.be/stops/105769", "https://data.delijn.be/stops/105771"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/504561"], ["https://data.delijn.be/stops/504482", "https://data.delijn.be/stops/509482"], ["https://data.delijn.be/stops/106787", "https://data.delijn.be/stops/106876"], ["https://data.delijn.be/stops/402190", "https://data.delijn.be/stops/402492"], ["https://data.delijn.be/stops/505242", "https://data.delijn.be/stops/507237"], ["https://data.delijn.be/stops/303070", "https://data.delijn.be/stops/303082"], ["https://data.delijn.be/stops/308612", "https://data.delijn.be/stops/308632"], ["https://data.delijn.be/stops/300817", "https://data.delijn.be/stops/300852"], ["https://data.delijn.be/stops/405445", "https://data.delijn.be/stops/408704"], ["https://data.delijn.be/stops/407581", "https://data.delijn.be/stops/407582"], ["https://data.delijn.be/stops/402196", "https://data.delijn.be/stops/402423"], ["https://data.delijn.be/stops/407275", "https://data.delijn.be/stops/407285"], ["https://data.delijn.be/stops/109739", "https://data.delijn.be/stops/109951"], ["https://data.delijn.be/stops/308430", "https://data.delijn.be/stops/308431"], ["https://data.delijn.be/stops/208472", "https://data.delijn.be/stops/209472"], ["https://data.delijn.be/stops/302184", "https://data.delijn.be/stops/302206"], ["https://data.delijn.be/stops/101919", "https://data.delijn.be/stops/107322"], ["https://data.delijn.be/stops/408215", "https://data.delijn.be/stops/408225"], ["https://data.delijn.be/stops/407801", "https://data.delijn.be/stops/407808"], ["https://data.delijn.be/stops/107362", "https://data.delijn.be/stops/107363"], ["https://data.delijn.be/stops/403588", "https://data.delijn.be/stops/404260"], ["https://data.delijn.be/stops/201745", "https://data.delijn.be/stops/209644"], ["https://data.delijn.be/stops/301365", "https://data.delijn.be/stops/304811"], ["https://data.delijn.be/stops/408887", "https://data.delijn.be/stops/408918"], ["https://data.delijn.be/stops/403833", "https://data.delijn.be/stops/410116"], ["https://data.delijn.be/stops/409439", "https://data.delijn.be/stops/409440"], ["https://data.delijn.be/stops/403963", "https://data.delijn.be/stops/408709"], ["https://data.delijn.be/stops/105804", "https://data.delijn.be/stops/107413"], ["https://data.delijn.be/stops/400553", "https://data.delijn.be/stops/403638"], ["https://data.delijn.be/stops/402626", "https://data.delijn.be/stops/405581"], ["https://data.delijn.be/stops/107802", "https://data.delijn.be/stops/107803"], ["https://data.delijn.be/stops/208416", "https://data.delijn.be/stops/209415"], ["https://data.delijn.be/stops/102090", "https://data.delijn.be/stops/105680"], ["https://data.delijn.be/stops/301640", "https://data.delijn.be/stops/301641"], ["https://data.delijn.be/stops/402520", "https://data.delijn.be/stops/402523"], ["https://data.delijn.be/stops/300976", "https://data.delijn.be/stops/300983"], ["https://data.delijn.be/stops/304031", "https://data.delijn.be/stops/304112"], ["https://data.delijn.be/stops/202242", "https://data.delijn.be/stops/203189"], ["https://data.delijn.be/stops/407519", "https://data.delijn.be/stops/408275"], ["https://data.delijn.be/stops/305637", "https://data.delijn.be/stops/308600"], ["https://data.delijn.be/stops/301403", "https://data.delijn.be/stops/307682"], ["https://data.delijn.be/stops/109287", "https://data.delijn.be/stops/109288"], ["https://data.delijn.be/stops/409051", "https://data.delijn.be/stops/409093"], ["https://data.delijn.be/stops/103932", "https://data.delijn.be/stops/106599"], ["https://data.delijn.be/stops/508572", "https://data.delijn.be/stops/508722"], ["https://data.delijn.be/stops/101188", "https://data.delijn.be/stops/101655"], ["https://data.delijn.be/stops/503579", "https://data.delijn.be/stops/508566"], ["https://data.delijn.be/stops/501493", "https://data.delijn.be/stops/506493"], ["https://data.delijn.be/stops/504798", "https://data.delijn.be/stops/507717"], ["https://data.delijn.be/stops/404511", "https://data.delijn.be/stops/406977"], ["https://data.delijn.be/stops/403386", "https://data.delijn.be/stops/403387"], ["https://data.delijn.be/stops/500566", "https://data.delijn.be/stops/506029"], ["https://data.delijn.be/stops/208327", "https://data.delijn.be/stops/209326"], ["https://data.delijn.be/stops/202121", "https://data.delijn.be/stops/204598"], ["https://data.delijn.be/stops/401710", "https://data.delijn.be/stops/401723"], ["https://data.delijn.be/stops/102169", "https://data.delijn.be/stops/107127"], ["https://data.delijn.be/stops/404592", "https://data.delijn.be/stops/404996"], ["https://data.delijn.be/stops/202509", "https://data.delijn.be/stops/203509"], ["https://data.delijn.be/stops/102885", "https://data.delijn.be/stops/106090"], ["https://data.delijn.be/stops/206840", "https://data.delijn.be/stops/206919"], ["https://data.delijn.be/stops/501015", "https://data.delijn.be/stops/506614"], ["https://data.delijn.be/stops/200524", "https://data.delijn.be/stops/200525"], ["https://data.delijn.be/stops/301898", "https://data.delijn.be/stops/305084"], ["https://data.delijn.be/stops/209566", "https://data.delijn.be/stops/209611"], ["https://data.delijn.be/stops/206654", "https://data.delijn.be/stops/206715"], ["https://data.delijn.be/stops/202530", "https://data.delijn.be/stops/202531"], ["https://data.delijn.be/stops/200546", "https://data.delijn.be/stops/211060"], ["https://data.delijn.be/stops/305077", "https://data.delijn.be/stops/308927"], ["https://data.delijn.be/stops/305413", "https://data.delijn.be/stops/305461"], ["https://data.delijn.be/stops/404647", "https://data.delijn.be/stops/406933"], ["https://data.delijn.be/stops/204210", "https://data.delijn.be/stops/205237"], ["https://data.delijn.be/stops/506677", "https://data.delijn.be/stops/506780"], ["https://data.delijn.be/stops/506284", "https://data.delijn.be/stops/506491"], ["https://data.delijn.be/stops/306869", "https://data.delijn.be/stops/306873"], ["https://data.delijn.be/stops/208617", "https://data.delijn.be/stops/209617"], ["https://data.delijn.be/stops/404324", "https://data.delijn.be/stops/404370"], ["https://data.delijn.be/stops/206178", "https://data.delijn.be/stops/207178"], ["https://data.delijn.be/stops/401107", "https://data.delijn.be/stops/401115"], ["https://data.delijn.be/stops/103569", "https://data.delijn.be/stops/107139"], ["https://data.delijn.be/stops/304452", "https://data.delijn.be/stops/307649"], ["https://data.delijn.be/stops/208462", "https://data.delijn.be/stops/209683"], ["https://data.delijn.be/stops/404310", "https://data.delijn.be/stops/404311"], ["https://data.delijn.be/stops/504049", "https://data.delijn.be/stops/509043"], ["https://data.delijn.be/stops/305074", "https://data.delijn.be/stops/305091"], ["https://data.delijn.be/stops/202143", "https://data.delijn.be/stops/202144"], ["https://data.delijn.be/stops/501714", "https://data.delijn.be/stops/501715"], ["https://data.delijn.be/stops/305643", "https://data.delijn.be/stops/308131"], ["https://data.delijn.be/stops/503918", "https://data.delijn.be/stops/503928"], ["https://data.delijn.be/stops/202886", "https://data.delijn.be/stops/206567"], ["https://data.delijn.be/stops/201698", "https://data.delijn.be/stops/202384"], ["https://data.delijn.be/stops/302442", "https://data.delijn.be/stops/302446"], ["https://data.delijn.be/stops/206664", "https://data.delijn.be/stops/206665"], ["https://data.delijn.be/stops/403795", "https://data.delijn.be/stops/403819"], ["https://data.delijn.be/stops/303412", "https://data.delijn.be/stops/306948"], ["https://data.delijn.be/stops/503387", "https://data.delijn.be/stops/508387"], ["https://data.delijn.be/stops/504875", "https://data.delijn.be/stops/505084"], ["https://data.delijn.be/stops/200205", "https://data.delijn.be/stops/201205"], ["https://data.delijn.be/stops/304608", "https://data.delijn.be/stops/307267"], ["https://data.delijn.be/stops/408763", "https://data.delijn.be/stops/408764"], ["https://data.delijn.be/stops/403275", "https://data.delijn.be/stops/403405"], ["https://data.delijn.be/stops/502481", "https://data.delijn.be/stops/507691"], ["https://data.delijn.be/stops/401089", "https://data.delijn.be/stops/401092"], ["https://data.delijn.be/stops/403644", "https://data.delijn.be/stops/407559"], ["https://data.delijn.be/stops/102693", "https://data.delijn.be/stops/103125"], ["https://data.delijn.be/stops/305951", "https://data.delijn.be/stops/307844"], ["https://data.delijn.be/stops/302455", "https://data.delijn.be/stops/304754"], ["https://data.delijn.be/stops/200351", "https://data.delijn.be/stops/201351"], ["https://data.delijn.be/stops/305152", "https://data.delijn.be/stops/305161"], ["https://data.delijn.be/stops/505847", "https://data.delijn.be/stops/508087"], ["https://data.delijn.be/stops/205298", "https://data.delijn.be/stops/205352"], ["https://data.delijn.be/stops/502211", "https://data.delijn.be/stops/507211"], ["https://data.delijn.be/stops/204266", "https://data.delijn.be/stops/204273"], ["https://data.delijn.be/stops/505029", "https://data.delijn.be/stops/506476"], ["https://data.delijn.be/stops/400767", "https://data.delijn.be/stops/400769"], ["https://data.delijn.be/stops/108811", "https://data.delijn.be/stops/109733"], ["https://data.delijn.be/stops/503306", "https://data.delijn.be/stops/508306"], ["https://data.delijn.be/stops/206716", "https://data.delijn.be/stops/207513"], ["https://data.delijn.be/stops/501261", "https://data.delijn.be/stops/506261"], ["https://data.delijn.be/stops/206965", "https://data.delijn.be/stops/207832"], ["https://data.delijn.be/stops/106949", "https://data.delijn.be/stops/106950"], ["https://data.delijn.be/stops/108092", "https://data.delijn.be/stops/108391"], ["https://data.delijn.be/stops/502668", "https://data.delijn.be/stops/507412"], ["https://data.delijn.be/stops/405676", "https://data.delijn.be/stops/408207"], ["https://data.delijn.be/stops/203535", "https://data.delijn.be/stops/204064"], ["https://data.delijn.be/stops/101408", "https://data.delijn.be/stops/101411"], ["https://data.delijn.be/stops/405543", "https://data.delijn.be/stops/406886"], ["https://data.delijn.be/stops/401849", "https://data.delijn.be/stops/406744"], ["https://data.delijn.be/stops/207663", "https://data.delijn.be/stops/208505"], ["https://data.delijn.be/stops/202767", "https://data.delijn.be/stops/203768"], ["https://data.delijn.be/stops/304008", "https://data.delijn.be/stops/304824"], ["https://data.delijn.be/stops/504007", "https://data.delijn.be/stops/504010"], ["https://data.delijn.be/stops/405420", "https://data.delijn.be/stops/306777"], ["https://data.delijn.be/stops/106617", "https://data.delijn.be/stops/106619"], ["https://data.delijn.be/stops/300096", "https://data.delijn.be/stops/300101"], ["https://data.delijn.be/stops/103043", "https://data.delijn.be/stops/106902"], ["https://data.delijn.be/stops/302996", "https://data.delijn.be/stops/307229"], ["https://data.delijn.be/stops/407479", "https://data.delijn.be/stops/407493"], ["https://data.delijn.be/stops/503821", "https://data.delijn.be/stops/508818"], ["https://data.delijn.be/stops/501086", "https://data.delijn.be/stops/506439"], ["https://data.delijn.be/stops/503032", "https://data.delijn.be/stops/508032"], ["https://data.delijn.be/stops/204485", "https://data.delijn.be/stops/204508"], ["https://data.delijn.be/stops/400142", "https://data.delijn.be/stops/409073"], ["https://data.delijn.be/stops/406501", "https://data.delijn.be/stops/406514"], ["https://data.delijn.be/stops/203347", "https://data.delijn.be/stops/206968"], ["https://data.delijn.be/stops/502251", "https://data.delijn.be/stops/509207"], ["https://data.delijn.be/stops/300320", "https://data.delijn.be/stops/301196"], ["https://data.delijn.be/stops/104422", "https://data.delijn.be/stops/204823"], ["https://data.delijn.be/stops/206786", "https://data.delijn.be/stops/209539"], ["https://data.delijn.be/stops/402200", "https://data.delijn.be/stops/402321"], ["https://data.delijn.be/stops/208458", "https://data.delijn.be/stops/209676"], ["https://data.delijn.be/stops/107524", "https://data.delijn.be/stops/107529"], ["https://data.delijn.be/stops/109820", "https://data.delijn.be/stops/109826"], ["https://data.delijn.be/stops/204044", "https://data.delijn.be/stops/204516"], ["https://data.delijn.be/stops/404888", "https://data.delijn.be/stops/404904"], ["https://data.delijn.be/stops/406264", "https://data.delijn.be/stops/406296"], ["https://data.delijn.be/stops/206646", "https://data.delijn.be/stops/207460"], ["https://data.delijn.be/stops/307820", "https://data.delijn.be/stops/307821"], ["https://data.delijn.be/stops/104598", "https://data.delijn.be/stops/106820"], ["https://data.delijn.be/stops/204048", "https://data.delijn.be/stops/205048"], ["https://data.delijn.be/stops/502407", "https://data.delijn.be/stops/507394"], ["https://data.delijn.be/stops/507023", "https://data.delijn.be/stops/508325"], ["https://data.delijn.be/stops/503429", "https://data.delijn.be/stops/508434"], ["https://data.delijn.be/stops/303418", "https://data.delijn.be/stops/305085"], ["https://data.delijn.be/stops/206112", "https://data.delijn.be/stops/206125"], ["https://data.delijn.be/stops/304831", "https://data.delijn.be/stops/304832"], ["https://data.delijn.be/stops/103870", "https://data.delijn.be/stops/103875"], ["https://data.delijn.be/stops/408960", "https://data.delijn.be/stops/408969"], ["https://data.delijn.be/stops/208595", "https://data.delijn.be/stops/208802"], ["https://data.delijn.be/stops/105623", "https://data.delijn.be/stops/106363"], ["https://data.delijn.be/stops/204999", "https://data.delijn.be/stops/205999"], ["https://data.delijn.be/stops/206808", "https://data.delijn.be/stops/207808"], ["https://data.delijn.be/stops/404361", "https://data.delijn.be/stops/404386"], ["https://data.delijn.be/stops/405155", "https://data.delijn.be/stops/405213"], ["https://data.delijn.be/stops/203921", "https://data.delijn.be/stops/203922"], ["https://data.delijn.be/stops/101331", "https://data.delijn.be/stops/106677"], ["https://data.delijn.be/stops/404335", "https://data.delijn.be/stops/404343"], ["https://data.delijn.be/stops/200062", "https://data.delijn.be/stops/203132"], ["https://data.delijn.be/stops/104988", "https://data.delijn.be/stops/109768"], ["https://data.delijn.be/stops/204212", "https://data.delijn.be/stops/206394"], ["https://data.delijn.be/stops/301361", "https://data.delijn.be/stops/306126"], ["https://data.delijn.be/stops/302905", "https://data.delijn.be/stops/303235"], ["https://data.delijn.be/stops/300623", "https://data.delijn.be/stops/306112"], ["https://data.delijn.be/stops/506309", "https://data.delijn.be/stops/506480"], ["https://data.delijn.be/stops/405667", "https://data.delijn.be/stops/409382"], ["https://data.delijn.be/stops/405963", "https://data.delijn.be/stops/405965"], ["https://data.delijn.be/stops/302742", "https://data.delijn.be/stops/302758"], ["https://data.delijn.be/stops/303348", "https://data.delijn.be/stops/303369"], ["https://data.delijn.be/stops/503003", "https://data.delijn.be/stops/509878"], ["https://data.delijn.be/stops/408312", "https://data.delijn.be/stops/408403"], ["https://data.delijn.be/stops/504792", "https://data.delijn.be/stops/509005"], ["https://data.delijn.be/stops/402814", "https://data.delijn.be/stops/409036"], ["https://data.delijn.be/stops/504665", "https://data.delijn.be/stops/504733"], ["https://data.delijn.be/stops/404987", "https://data.delijn.be/stops/408552"], ["https://data.delijn.be/stops/208736", "https://data.delijn.be/stops/209737"], ["https://data.delijn.be/stops/301944", "https://data.delijn.be/stops/305914"], ["https://data.delijn.be/stops/202626", "https://data.delijn.be/stops/203625"], ["https://data.delijn.be/stops/105234", "https://data.delijn.be/stops/109926"], ["https://data.delijn.be/stops/505713", "https://data.delijn.be/stops/505714"], ["https://data.delijn.be/stops/201353", "https://data.delijn.be/stops/208268"], ["https://data.delijn.be/stops/303817", "https://data.delijn.be/stops/307496"], ["https://data.delijn.be/stops/304491", "https://data.delijn.be/stops/307466"], ["https://data.delijn.be/stops/204316", "https://data.delijn.be/stops/205317"], ["https://data.delijn.be/stops/105041", "https://data.delijn.be/stops/105127"], ["https://data.delijn.be/stops/104484", "https://data.delijn.be/stops/307899"], ["https://data.delijn.be/stops/305813", "https://data.delijn.be/stops/305814"], ["https://data.delijn.be/stops/502764", "https://data.delijn.be/stops/507036"], ["https://data.delijn.be/stops/300089", "https://data.delijn.be/stops/306835"], ["https://data.delijn.be/stops/107575", "https://data.delijn.be/stops/109434"], ["https://data.delijn.be/stops/207785", "https://data.delijn.be/stops/208373"], ["https://data.delijn.be/stops/407249", "https://data.delijn.be/stops/407357"], ["https://data.delijn.be/stops/301436", "https://data.delijn.be/stops/306417"], ["https://data.delijn.be/stops/204759", "https://data.delijn.be/stops/205373"], ["https://data.delijn.be/stops/202118", "https://data.delijn.be/stops/204172"], ["https://data.delijn.be/stops/101377", "https://data.delijn.be/stops/107304"], ["https://data.delijn.be/stops/400704", "https://data.delijn.be/stops/404376"], ["https://data.delijn.be/stops/405366", "https://data.delijn.be/stops/405371"], ["https://data.delijn.be/stops/201922", "https://data.delijn.be/stops/207593"], ["https://data.delijn.be/stops/403944", "https://data.delijn.be/stops/403945"], ["https://data.delijn.be/stops/107734", "https://data.delijn.be/stops/107738"], ["https://data.delijn.be/stops/401961", "https://data.delijn.be/stops/403850"], ["https://data.delijn.be/stops/101834", "https://data.delijn.be/stops/107088"], ["https://data.delijn.be/stops/408360", "https://data.delijn.be/stops/308249"], ["https://data.delijn.be/stops/408533", "https://data.delijn.be/stops/408666"], ["https://data.delijn.be/stops/207730", "https://data.delijn.be/stops/207731"], ["https://data.delijn.be/stops/305954", "https://data.delijn.be/stops/305962"], ["https://data.delijn.be/stops/401183", "https://data.delijn.be/stops/401192"], ["https://data.delijn.be/stops/101426", "https://data.delijn.be/stops/108717"], ["https://data.delijn.be/stops/404450", "https://data.delijn.be/stops/406740"], ["https://data.delijn.be/stops/301096", "https://data.delijn.be/stops/306749"], ["https://data.delijn.be/stops/504776", "https://data.delijn.be/stops/505711"], ["https://data.delijn.be/stops/300601", "https://data.delijn.be/stops/300608"], ["https://data.delijn.be/stops/105341", "https://data.delijn.be/stops/105342"], ["https://data.delijn.be/stops/105674", "https://data.delijn.be/stops/105682"], ["https://data.delijn.be/stops/306618", "https://data.delijn.be/stops/306621"], ["https://data.delijn.be/stops/503905", "https://data.delijn.be/stops/508905"], ["https://data.delijn.be/stops/101482", "https://data.delijn.be/stops/109290"], ["https://data.delijn.be/stops/501115", "https://data.delijn.be/stops/506165"], ["https://data.delijn.be/stops/402047", "https://data.delijn.be/stops/410074"], ["https://data.delijn.be/stops/200240", "https://data.delijn.be/stops/218935"], ["https://data.delijn.be/stops/206285", "https://data.delijn.be/stops/206811"], ["https://data.delijn.be/stops/206144", "https://data.delijn.be/stops/207092"], ["https://data.delijn.be/stops/106221", "https://data.delijn.be/stops/106222"], ["https://data.delijn.be/stops/200795", "https://data.delijn.be/stops/201566"], ["https://data.delijn.be/stops/304648", "https://data.delijn.be/stops/304683"], ["https://data.delijn.be/stops/103158", "https://data.delijn.be/stops/406774"], ["https://data.delijn.be/stops/205994", "https://data.delijn.be/stops/211659"], ["https://data.delijn.be/stops/107279", "https://data.delijn.be/stops/107281"], ["https://data.delijn.be/stops/400711", "https://data.delijn.be/stops/409506"], ["https://data.delijn.be/stops/408832", "https://data.delijn.be/stops/408833"], ["https://data.delijn.be/stops/102436", "https://data.delijn.be/stops/107822"], ["https://data.delijn.be/stops/202358", "https://data.delijn.be/stops/203358"], ["https://data.delijn.be/stops/304991", "https://data.delijn.be/stops/305006"], ["https://data.delijn.be/stops/407094", "https://data.delijn.be/stops/407260"], ["https://data.delijn.be/stops/200257", "https://data.delijn.be/stops/203407"], ["https://data.delijn.be/stops/404463", "https://data.delijn.be/stops/404488"], ["https://data.delijn.be/stops/200924", "https://data.delijn.be/stops/200941"], ["https://data.delijn.be/stops/204201", "https://data.delijn.be/stops/205201"], ["https://data.delijn.be/stops/108927", "https://data.delijn.be/stops/108929"], ["https://data.delijn.be/stops/106487", "https://data.delijn.be/stops/106488"], ["https://data.delijn.be/stops/404315", "https://data.delijn.be/stops/404390"], ["https://data.delijn.be/stops/200680", "https://data.delijn.be/stops/201460"], ["https://data.delijn.be/stops/400102", "https://data.delijn.be/stops/404957"], ["https://data.delijn.be/stops/303677", "https://data.delijn.be/stops/303855"], ["https://data.delijn.be/stops/200914", "https://data.delijn.be/stops/203270"], ["https://data.delijn.be/stops/406114", "https://data.delijn.be/stops/406115"], ["https://data.delijn.be/stops/502635", "https://data.delijn.be/stops/507215"], ["https://data.delijn.be/stops/206221", "https://data.delijn.be/stops/207728"], ["https://data.delijn.be/stops/505994", "https://data.delijn.be/stops/508147"], ["https://data.delijn.be/stops/204342", "https://data.delijn.be/stops/205342"], ["https://data.delijn.be/stops/204513", "https://data.delijn.be/stops/204554"], ["https://data.delijn.be/stops/305248", "https://data.delijn.be/stops/305249"], ["https://data.delijn.be/stops/217008", "https://data.delijn.be/stops/217009"], ["https://data.delijn.be/stops/507044", "https://data.delijn.be/stops/507617"], ["https://data.delijn.be/stops/301678", "https://data.delijn.be/stops/306294"], ["https://data.delijn.be/stops/403088", "https://data.delijn.be/stops/403289"], ["https://data.delijn.be/stops/105340", "https://data.delijn.be/stops/108975"], ["https://data.delijn.be/stops/302859", "https://data.delijn.be/stops/302861"], ["https://data.delijn.be/stops/304400", "https://data.delijn.be/stops/307400"], ["https://data.delijn.be/stops/202413", "https://data.delijn.be/stops/203275"], ["https://data.delijn.be/stops/104037", "https://data.delijn.be/stops/108096"], ["https://data.delijn.be/stops/208123", "https://data.delijn.be/stops/209227"], ["https://data.delijn.be/stops/403296", "https://data.delijn.be/stops/403297"], ["https://data.delijn.be/stops/300340", "https://data.delijn.be/stops/300367"], ["https://data.delijn.be/stops/301155", "https://data.delijn.be/stops/301165"], ["https://data.delijn.be/stops/206106", "https://data.delijn.be/stops/207105"], ["https://data.delijn.be/stops/502017", "https://data.delijn.be/stops/507022"], ["https://data.delijn.be/stops/401416", "https://data.delijn.be/stops/305165"], ["https://data.delijn.be/stops/302880", "https://data.delijn.be/stops/303086"], ["https://data.delijn.be/stops/302239", "https://data.delijn.be/stops/302241"], ["https://data.delijn.be/stops/303734", "https://data.delijn.be/stops/303770"], ["https://data.delijn.be/stops/103218", "https://data.delijn.be/stops/107359"], ["https://data.delijn.be/stops/504355", "https://data.delijn.be/stops/505995"], ["https://data.delijn.be/stops/404653", "https://data.delijn.be/stops/404655"], ["https://data.delijn.be/stops/400726", "https://data.delijn.be/stops/405172"], ["https://data.delijn.be/stops/504659", "https://data.delijn.be/stops/509043"], ["https://data.delijn.be/stops/302751", "https://data.delijn.be/stops/302754"], ["https://data.delijn.be/stops/200961", "https://data.delijn.be/stops/201961"], ["https://data.delijn.be/stops/407284", "https://data.delijn.be/stops/407285"], ["https://data.delijn.be/stops/200781", "https://data.delijn.be/stops/201034"], ["https://data.delijn.be/stops/504137", "https://data.delijn.be/stops/504144"], ["https://data.delijn.be/stops/104776", "https://data.delijn.be/stops/107349"], ["https://data.delijn.be/stops/208163", "https://data.delijn.be/stops/209168"], ["https://data.delijn.be/stops/304853", "https://data.delijn.be/stops/304856"], ["https://data.delijn.be/stops/203158", "https://data.delijn.be/stops/205792"], ["https://data.delijn.be/stops/506012", "https://data.delijn.be/stops/506017"], ["https://data.delijn.be/stops/101750", "https://data.delijn.be/stops/104352"], ["https://data.delijn.be/stops/209344", "https://data.delijn.be/stops/218028"], ["https://data.delijn.be/stops/206415", "https://data.delijn.be/stops/207950"], ["https://data.delijn.be/stops/407373", "https://data.delijn.be/stops/407378"], ["https://data.delijn.be/stops/304435", "https://data.delijn.be/stops/304436"], ["https://data.delijn.be/stops/109316", "https://data.delijn.be/stops/109867"], ["https://data.delijn.be/stops/502710", "https://data.delijn.be/stops/507711"], ["https://data.delijn.be/stops/104593", "https://data.delijn.be/stops/108348"], ["https://data.delijn.be/stops/103626", "https://data.delijn.be/stops/103629"], ["https://data.delijn.be/stops/303168", "https://data.delijn.be/stops/303171"], ["https://data.delijn.be/stops/200540", "https://data.delijn.be/stops/200657"], ["https://data.delijn.be/stops/300163", "https://data.delijn.be/stops/308790"], ["https://data.delijn.be/stops/304485", "https://data.delijn.be/stops/304492"], ["https://data.delijn.be/stops/503387", "https://data.delijn.be/stops/503409"], ["https://data.delijn.be/stops/400179", "https://data.delijn.be/stops/405297"], ["https://data.delijn.be/stops/406652", "https://data.delijn.be/stops/406653"], ["https://data.delijn.be/stops/206154", "https://data.delijn.be/stops/207502"], ["https://data.delijn.be/stops/101016", "https://data.delijn.be/stops/103850"], ["https://data.delijn.be/stops/203784", "https://data.delijn.be/stops/203785"], ["https://data.delijn.be/stops/401799", "https://data.delijn.be/stops/406824"], ["https://data.delijn.be/stops/402076", "https://data.delijn.be/stops/405571"], ["https://data.delijn.be/stops/502931", "https://data.delijn.be/stops/507932"], ["https://data.delijn.be/stops/504957", "https://data.delijn.be/stops/509957"], ["https://data.delijn.be/stops/502757", "https://data.delijn.be/stops/508326"], ["https://data.delijn.be/stops/302128", "https://data.delijn.be/stops/302129"], ["https://data.delijn.be/stops/107528", "https://data.delijn.be/stops/107529"], ["https://data.delijn.be/stops/502757", "https://data.delijn.be/stops/505341"], ["https://data.delijn.be/stops/200355", "https://data.delijn.be/stops/202650"], ["https://data.delijn.be/stops/202676", "https://data.delijn.be/stops/203723"], ["https://data.delijn.be/stops/503432", "https://data.delijn.be/stops/508053"], ["https://data.delijn.be/stops/102906", "https://data.delijn.be/stops/105869"], ["https://data.delijn.be/stops/501182", "https://data.delijn.be/stops/506177"], ["https://data.delijn.be/stops/405243", "https://data.delijn.be/stops/405244"], ["https://data.delijn.be/stops/301291", "https://data.delijn.be/stops/301296"], ["https://data.delijn.be/stops/401958", "https://data.delijn.be/stops/402040"], ["https://data.delijn.be/stops/504624", "https://data.delijn.be/stops/509621"], ["https://data.delijn.be/stops/300382", "https://data.delijn.be/stops/300406"], ["https://data.delijn.be/stops/104700", "https://data.delijn.be/stops/105390"], ["https://data.delijn.be/stops/206467", "https://data.delijn.be/stops/207467"], ["https://data.delijn.be/stops/306314", "https://data.delijn.be/stops/308761"], ["https://data.delijn.be/stops/408851", "https://data.delijn.be/stops/408887"], ["https://data.delijn.be/stops/303779", "https://data.delijn.be/stops/303811"], ["https://data.delijn.be/stops/305166", "https://data.delijn.be/stops/305167"], ["https://data.delijn.be/stops/203872", "https://data.delijn.be/stops/204975"], ["https://data.delijn.be/stops/210068", "https://data.delijn.be/stops/211068"], ["https://data.delijn.be/stops/505508", "https://data.delijn.be/stops/505574"], ["https://data.delijn.be/stops/209508", "https://data.delijn.be/stops/209633"], ["https://data.delijn.be/stops/502526", "https://data.delijn.be/stops/502551"], ["https://data.delijn.be/stops/207678", "https://data.delijn.be/stops/208075"], ["https://data.delijn.be/stops/400730", "https://data.delijn.be/stops/406614"], ["https://data.delijn.be/stops/202284", "https://data.delijn.be/stops/210005"], ["https://data.delijn.be/stops/201814", "https://data.delijn.be/stops/209328"], ["https://data.delijn.be/stops/401636", "https://data.delijn.be/stops/308208"], ["https://data.delijn.be/stops/504107", "https://data.delijn.be/stops/509107"], ["https://data.delijn.be/stops/403237", "https://data.delijn.be/stops/403255"], ["https://data.delijn.be/stops/401529", "https://data.delijn.be/stops/407150"], ["https://data.delijn.be/stops/107002", "https://data.delijn.be/stops/107329"], ["https://data.delijn.be/stops/502511", "https://data.delijn.be/stops/507505"], ["https://data.delijn.be/stops/305115", "https://data.delijn.be/stops/305119"], ["https://data.delijn.be/stops/501223", "https://data.delijn.be/stops/501310"], ["https://data.delijn.be/stops/503516", "https://data.delijn.be/stops/504783"], ["https://data.delijn.be/stops/200353", "https://data.delijn.be/stops/200354"], ["https://data.delijn.be/stops/302352", "https://data.delijn.be/stops/306180"], ["https://data.delijn.be/stops/501461", "https://data.delijn.be/stops/506461"], ["https://data.delijn.be/stops/108122", "https://data.delijn.be/stops/109659"], ["https://data.delijn.be/stops/302072", "https://data.delijn.be/stops/302076"], ["https://data.delijn.be/stops/406541", "https://data.delijn.be/stops/407442"], ["https://data.delijn.be/stops/208761", "https://data.delijn.be/stops/218014"], ["https://data.delijn.be/stops/405266", "https://data.delijn.be/stops/405267"], ["https://data.delijn.be/stops/504413", "https://data.delijn.be/stops/509413"], ["https://data.delijn.be/stops/407730", "https://data.delijn.be/stops/407731"], ["https://data.delijn.be/stops/505843", "https://data.delijn.be/stops/508789"], ["https://data.delijn.be/stops/301938", "https://data.delijn.be/stops/307492"], ["https://data.delijn.be/stops/303225", "https://data.delijn.be/stops/303229"], ["https://data.delijn.be/stops/200532", "https://data.delijn.be/stops/211132"], ["https://data.delijn.be/stops/103094", "https://data.delijn.be/stops/109117"], ["https://data.delijn.be/stops/303121", "https://data.delijn.be/stops/303226"], ["https://data.delijn.be/stops/200110", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/408884", "https://data.delijn.be/stops/408903"], ["https://data.delijn.be/stops/101779", "https://data.delijn.be/stops/106727"], ["https://data.delijn.be/stops/408333", "https://data.delijn.be/stops/408357"], ["https://data.delijn.be/stops/407941", "https://data.delijn.be/stops/408432"], ["https://data.delijn.be/stops/304591", "https://data.delijn.be/stops/307767"], ["https://data.delijn.be/stops/300037", "https://data.delijn.be/stops/307825"], ["https://data.delijn.be/stops/305130", "https://data.delijn.be/stops/305131"], ["https://data.delijn.be/stops/300649", "https://data.delijn.be/stops/301851"], ["https://data.delijn.be/stops/404326", "https://data.delijn.be/stops/408669"], ["https://data.delijn.be/stops/306328", "https://data.delijn.be/stops/306329"], ["https://data.delijn.be/stops/409718", "https://data.delijn.be/stops/409719"], ["https://data.delijn.be/stops/407994", "https://data.delijn.be/stops/410161"], ["https://data.delijn.be/stops/108111", "https://data.delijn.be/stops/108143"], ["https://data.delijn.be/stops/502640", "https://data.delijn.be/stops/502728"], ["https://data.delijn.be/stops/303438", "https://data.delijn.be/stops/303519"], ["https://data.delijn.be/stops/302841", "https://data.delijn.be/stops/303284"], ["https://data.delijn.be/stops/502683", "https://data.delijn.be/stops/507683"], ["https://data.delijn.be/stops/508488", "https://data.delijn.be/stops/508989"], ["https://data.delijn.be/stops/503681", "https://data.delijn.be/stops/508681"], ["https://data.delijn.be/stops/502504", "https://data.delijn.be/stops/505323"], ["https://data.delijn.be/stops/404458", "https://data.delijn.be/stops/404545"], ["https://data.delijn.be/stops/202309", "https://data.delijn.be/stops/202310"], ["https://data.delijn.be/stops/107230", "https://data.delijn.be/stops/107305"], ["https://data.delijn.be/stops/106773", "https://data.delijn.be/stops/106778"], ["https://data.delijn.be/stops/305193", "https://data.delijn.be/stops/305217"], ["https://data.delijn.be/stops/505676", "https://data.delijn.be/stops/505678"], ["https://data.delijn.be/stops/402694", "https://data.delijn.be/stops/301483"], ["https://data.delijn.be/stops/406400", "https://data.delijn.be/stops/407639"], ["https://data.delijn.be/stops/102232", "https://data.delijn.be/stops/105659"], ["https://data.delijn.be/stops/405754", "https://data.delijn.be/stops/406058"], ["https://data.delijn.be/stops/103252", "https://data.delijn.be/stops/107725"], ["https://data.delijn.be/stops/506265", "https://data.delijn.be/stops/506327"], ["https://data.delijn.be/stops/106363", "https://data.delijn.be/stops/106369"], ["https://data.delijn.be/stops/107663", "https://data.delijn.be/stops/107666"], ["https://data.delijn.be/stops/108435", "https://data.delijn.be/stops/108440"], ["https://data.delijn.be/stops/406011", "https://data.delijn.be/stops/406133"], ["https://data.delijn.be/stops/301451", "https://data.delijn.be/stops/301457"], ["https://data.delijn.be/stops/103605", "https://data.delijn.be/stops/106393"], ["https://data.delijn.be/stops/306151", "https://data.delijn.be/stops/306259"], ["https://data.delijn.be/stops/304055", "https://data.delijn.be/stops/304056"], ["https://data.delijn.be/stops/405509", "https://data.delijn.be/stops/407254"], ["https://data.delijn.be/stops/109181", "https://data.delijn.be/stops/109253"], ["https://data.delijn.be/stops/200530", "https://data.delijn.be/stops/200531"], ["https://data.delijn.be/stops/102681", "https://data.delijn.be/stops/205608"], ["https://data.delijn.be/stops/205391", "https://data.delijn.be/stops/205763"], ["https://data.delijn.be/stops/208402", "https://data.delijn.be/stops/208767"], ["https://data.delijn.be/stops/105249", "https://data.delijn.be/stops/105251"], ["https://data.delijn.be/stops/304036", "https://data.delijn.be/stops/304815"], ["https://data.delijn.be/stops/400940", "https://data.delijn.be/stops/400941"], ["https://data.delijn.be/stops/205085", "https://data.delijn.be/stops/205086"], ["https://data.delijn.be/stops/504257", "https://data.delijn.be/stops/504258"], ["https://data.delijn.be/stops/301685", "https://data.delijn.be/stops/301687"], ["https://data.delijn.be/stops/302749", "https://data.delijn.be/stops/302755"], ["https://data.delijn.be/stops/102544", "https://data.delijn.be/stops/102546"], ["https://data.delijn.be/stops/401343", "https://data.delijn.be/stops/408419"], ["https://data.delijn.be/stops/410180", "https://data.delijn.be/stops/410259"], ["https://data.delijn.be/stops/302391", "https://data.delijn.be/stops/307842"], ["https://data.delijn.be/stops/206579", "https://data.delijn.be/stops/216010"], ["https://data.delijn.be/stops/303663", "https://data.delijn.be/stops/307735"], ["https://data.delijn.be/stops/108234", "https://data.delijn.be/stops/108237"], ["https://data.delijn.be/stops/401553", "https://data.delijn.be/stops/401554"], ["https://data.delijn.be/stops/102605", "https://data.delijn.be/stops/105105"], ["https://data.delijn.be/stops/303340", "https://data.delijn.be/stops/303341"], ["https://data.delijn.be/stops/203529", "https://data.delijn.be/stops/210009"], ["https://data.delijn.be/stops/403096", "https://data.delijn.be/stops/404873"], ["https://data.delijn.be/stops/106202", "https://data.delijn.be/stops/106301"], ["https://data.delijn.be/stops/106890", "https://data.delijn.be/stops/106891"], ["https://data.delijn.be/stops/502435", "https://data.delijn.be/stops/507439"], ["https://data.delijn.be/stops/407016", "https://data.delijn.be/stops/407044"], ["https://data.delijn.be/stops/218023", "https://data.delijn.be/stops/219023"], ["https://data.delijn.be/stops/501323", "https://data.delijn.be/stops/506320"], ["https://data.delijn.be/stops/304754", "https://data.delijn.be/stops/304760"], ["https://data.delijn.be/stops/404504", "https://data.delijn.be/stops/409601"], ["https://data.delijn.be/stops/501078", "https://data.delijn.be/stops/505404"], ["https://data.delijn.be/stops/505363", "https://data.delijn.be/stops/509514"], ["https://data.delijn.be/stops/304758", "https://data.delijn.be/stops/305292"], ["https://data.delijn.be/stops/106014", "https://data.delijn.be/stops/106016"], ["https://data.delijn.be/stops/403001", "https://data.delijn.be/stops/403025"], ["https://data.delijn.be/stops/404022", "https://data.delijn.be/stops/404025"], ["https://data.delijn.be/stops/406321", "https://data.delijn.be/stops/410394"], ["https://data.delijn.be/stops/108560", "https://data.delijn.be/stops/109730"], ["https://data.delijn.be/stops/501008", "https://data.delijn.be/stops/505355"], ["https://data.delijn.be/stops/101835", "https://data.delijn.be/stops/101895"], ["https://data.delijn.be/stops/404119", "https://data.delijn.be/stops/408554"], ["https://data.delijn.be/stops/505171", "https://data.delijn.be/stops/507363"], ["https://data.delijn.be/stops/303949", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/301832", "https://data.delijn.be/stops/301870"], ["https://data.delijn.be/stops/405901", "https://data.delijn.be/stops/405932"], ["https://data.delijn.be/stops/208164", "https://data.delijn.be/stops/209102"], ["https://data.delijn.be/stops/102519", "https://data.delijn.be/stops/406514"], ["https://data.delijn.be/stops/302521", "https://data.delijn.be/stops/302522"], ["https://data.delijn.be/stops/200390", "https://data.delijn.be/stops/208359"], ["https://data.delijn.be/stops/300014", "https://data.delijn.be/stops/300400"], ["https://data.delijn.be/stops/208589", "https://data.delijn.be/stops/305237"], ["https://data.delijn.be/stops/101026", "https://data.delijn.be/stops/101027"], ["https://data.delijn.be/stops/503649", "https://data.delijn.be/stops/508649"], ["https://data.delijn.be/stops/504137", "https://data.delijn.be/stops/505423"], ["https://data.delijn.be/stops/503536", "https://data.delijn.be/stops/505945"], ["https://data.delijn.be/stops/301040", "https://data.delijn.be/stops/301061"], ["https://data.delijn.be/stops/303093", "https://data.delijn.be/stops/303153"], ["https://data.delijn.be/stops/406925", "https://data.delijn.be/stops/406927"], ["https://data.delijn.be/stops/501577", "https://data.delijn.be/stops/505287"], ["https://data.delijn.be/stops/405300", "https://data.delijn.be/stops/406298"], ["https://data.delijn.be/stops/208030", "https://data.delijn.be/stops/209019"], ["https://data.delijn.be/stops/503665", "https://data.delijn.be/stops/503667"], ["https://data.delijn.be/stops/400317", "https://data.delijn.be/stops/400319"], ["https://data.delijn.be/stops/101930", "https://data.delijn.be/stops/105835"], ["https://data.delijn.be/stops/102400", "https://data.delijn.be/stops/108900"], ["https://data.delijn.be/stops/201813", "https://data.delijn.be/stops/208327"], ["https://data.delijn.be/stops/406182", "https://data.delijn.be/stops/406460"], ["https://data.delijn.be/stops/501161", "https://data.delijn.be/stops/506157"], ["https://data.delijn.be/stops/408325", "https://data.delijn.be/stops/408335"], ["https://data.delijn.be/stops/208661", "https://data.delijn.be/stops/208693"], ["https://data.delijn.be/stops/206469", "https://data.delijn.be/stops/207469"], ["https://data.delijn.be/stops/408122", "https://data.delijn.be/stops/408123"], ["https://data.delijn.be/stops/204165", "https://data.delijn.be/stops/205158"], ["https://data.delijn.be/stops/104861", "https://data.delijn.be/stops/107822"], ["https://data.delijn.be/stops/108140", "https://data.delijn.be/stops/108735"], ["https://data.delijn.be/stops/202874", "https://data.delijn.be/stops/207427"], ["https://data.delijn.be/stops/301242", "https://data.delijn.be/stops/301244"], ["https://data.delijn.be/stops/403326", "https://data.delijn.be/stops/403907"], ["https://data.delijn.be/stops/206958", "https://data.delijn.be/stops/207693"], ["https://data.delijn.be/stops/503915", "https://data.delijn.be/stops/503925"], ["https://data.delijn.be/stops/207971", "https://data.delijn.be/stops/207972"], ["https://data.delijn.be/stops/302888", "https://data.delijn.be/stops/303232"], ["https://data.delijn.be/stops/206132", "https://data.delijn.be/stops/206135"], ["https://data.delijn.be/stops/106499", "https://data.delijn.be/stops/107117"], ["https://data.delijn.be/stops/400353", "https://data.delijn.be/stops/406866"], ["https://data.delijn.be/stops/307351", "https://data.delijn.be/stops/307353"], ["https://data.delijn.be/stops/207779", "https://data.delijn.be/stops/207780"], ["https://data.delijn.be/stops/403904", "https://data.delijn.be/stops/403914"], ["https://data.delijn.be/stops/408495", "https://data.delijn.be/stops/408701"], ["https://data.delijn.be/stops/204289", "https://data.delijn.be/stops/205289"], ["https://data.delijn.be/stops/200691", "https://data.delijn.be/stops/209644"], ["https://data.delijn.be/stops/206911", "https://data.delijn.be/stops/207100"], ["https://data.delijn.be/stops/301233", "https://data.delijn.be/stops/305951"], ["https://data.delijn.be/stops/203787", "https://data.delijn.be/stops/210108"], ["https://data.delijn.be/stops/104580", "https://data.delijn.be/stops/104585"], ["https://data.delijn.be/stops/304290", "https://data.delijn.be/stops/304296"], ["https://data.delijn.be/stops/108697", "https://data.delijn.be/stops/108698"], ["https://data.delijn.be/stops/204680", "https://data.delijn.be/stops/205615"], ["https://data.delijn.be/stops/408350", "https://data.delijn.be/stops/408357"], ["https://data.delijn.be/stops/307800", "https://data.delijn.be/stops/308632"], ["https://data.delijn.be/stops/200172", "https://data.delijn.be/stops/201533"], ["https://data.delijn.be/stops/305602", "https://data.delijn.be/stops/305606"], ["https://data.delijn.be/stops/106352", "https://data.delijn.be/stops/106353"], ["https://data.delijn.be/stops/301894", "https://data.delijn.be/stops/303936"], ["https://data.delijn.be/stops/301249", "https://data.delijn.be/stops/301250"], ["https://data.delijn.be/stops/201422", "https://data.delijn.be/stops/201573"], ["https://data.delijn.be/stops/402454", "https://data.delijn.be/stops/410041"], ["https://data.delijn.be/stops/502762", "https://data.delijn.be/stops/503326"], ["https://data.delijn.be/stops/103105", "https://data.delijn.be/stops/106055"], ["https://data.delijn.be/stops/209597", "https://data.delijn.be/stops/301415"], ["https://data.delijn.be/stops/205026", "https://data.delijn.be/stops/205817"], ["https://data.delijn.be/stops/403784", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/102521", "https://data.delijn.be/stops/102549"], ["https://data.delijn.be/stops/501772", "https://data.delijn.be/stops/506742"], ["https://data.delijn.be/stops/202480", "https://data.delijn.be/stops/203480"], ["https://data.delijn.be/stops/107213", "https://data.delijn.be/stops/107214"], ["https://data.delijn.be/stops/204312", "https://data.delijn.be/stops/205312"], ["https://data.delijn.be/stops/202741", "https://data.delijn.be/stops/209713"], ["https://data.delijn.be/stops/505949", "https://data.delijn.be/stops/505966"], ["https://data.delijn.be/stops/304361", "https://data.delijn.be/stops/307370"], ["https://data.delijn.be/stops/401792", "https://data.delijn.be/stops/401817"], ["https://data.delijn.be/stops/205930", "https://data.delijn.be/stops/205931"], ["https://data.delijn.be/stops/201644", "https://data.delijn.be/stops/203946"], ["https://data.delijn.be/stops/508660", "https://data.delijn.be/stops/508663"], ["https://data.delijn.be/stops/206151", "https://data.delijn.be/stops/207150"], ["https://data.delijn.be/stops/103631", "https://data.delijn.be/stops/103633"], ["https://data.delijn.be/stops/305803", "https://data.delijn.be/stops/305804"], ["https://data.delijn.be/stops/204797", "https://data.delijn.be/stops/205796"], ["https://data.delijn.be/stops/505216", "https://data.delijn.be/stops/509550"], ["https://data.delijn.be/stops/302120", "https://data.delijn.be/stops/302121"], ["https://data.delijn.be/stops/208075", "https://data.delijn.be/stops/209076"], ["https://data.delijn.be/stops/403196", "https://data.delijn.be/stops/403278"], ["https://data.delijn.be/stops/501203", "https://data.delijn.be/stops/501257"], ["https://data.delijn.be/stops/301122", "https://data.delijn.be/stops/308957"], ["https://data.delijn.be/stops/408024", "https://data.delijn.be/stops/408029"], ["https://data.delijn.be/stops/202774", "https://data.delijn.be/stops/202775"], ["https://data.delijn.be/stops/502574", "https://data.delijn.be/stops/502587"], ["https://data.delijn.be/stops/402161", "https://data.delijn.be/stops/410041"], ["https://data.delijn.be/stops/301485", "https://data.delijn.be/stops/308705"], ["https://data.delijn.be/stops/305275", "https://data.delijn.be/stops/305313"], ["https://data.delijn.be/stops/407114", "https://data.delijn.be/stops/407862"], ["https://data.delijn.be/stops/303967", "https://data.delijn.be/stops/303968"], ["https://data.delijn.be/stops/204252", "https://data.delijn.be/stops/205758"], ["https://data.delijn.be/stops/206977", "https://data.delijn.be/stops/207419"], ["https://data.delijn.be/stops/207430", "https://data.delijn.be/stops/209693"], ["https://data.delijn.be/stops/502106", "https://data.delijn.be/stops/502129"], ["https://data.delijn.be/stops/105171", "https://data.delijn.be/stops/107422"], ["https://data.delijn.be/stops/104582", "https://data.delijn.be/stops/107901"], ["https://data.delijn.be/stops/402991", "https://data.delijn.be/stops/408936"], ["https://data.delijn.be/stops/302006", "https://data.delijn.be/stops/303197"], ["https://data.delijn.be/stops/206750", "https://data.delijn.be/stops/209478"], ["https://data.delijn.be/stops/501102", "https://data.delijn.be/stops/506102"], ["https://data.delijn.be/stops/408804", "https://data.delijn.be/stops/408861"], ["https://data.delijn.be/stops/300373", "https://data.delijn.be/stops/300406"], ["https://data.delijn.be/stops/103484", "https://data.delijn.be/stops/109139"], ["https://data.delijn.be/stops/505834", "https://data.delijn.be/stops/506013"], ["https://data.delijn.be/stops/105107", "https://data.delijn.be/stops/109505"], ["https://data.delijn.be/stops/104817", "https://data.delijn.be/stops/105824"], ["https://data.delijn.be/stops/400738", "https://data.delijn.be/stops/400739"], ["https://data.delijn.be/stops/402835", "https://data.delijn.be/stops/409021"], ["https://data.delijn.be/stops/302050", "https://data.delijn.be/stops/302051"], ["https://data.delijn.be/stops/305210", "https://data.delijn.be/stops/308681"], ["https://data.delijn.be/stops/508387", "https://data.delijn.be/stops/508409"], ["https://data.delijn.be/stops/400591", "https://data.delijn.be/stops/400622"], ["https://data.delijn.be/stops/504402", "https://data.delijn.be/stops/504413"], ["https://data.delijn.be/stops/108183", "https://data.delijn.be/stops/108192"], ["https://data.delijn.be/stops/308222", "https://data.delijn.be/stops/308223"], ["https://data.delijn.be/stops/401967", "https://data.delijn.be/stops/408158"], ["https://data.delijn.be/stops/404192", "https://data.delijn.be/stops/404194"], ["https://data.delijn.be/stops/102508", "https://data.delijn.be/stops/400022"], ["https://data.delijn.be/stops/301567", "https://data.delijn.be/stops/301578"], ["https://data.delijn.be/stops/400871", "https://data.delijn.be/stops/406589"], ["https://data.delijn.be/stops/504330", "https://data.delijn.be/stops/505992"], ["https://data.delijn.be/stops/203321", "https://data.delijn.be/stops/203322"], ["https://data.delijn.be/stops/105516", "https://data.delijn.be/stops/105517"], ["https://data.delijn.be/stops/404163", "https://data.delijn.be/stops/404171"], ["https://data.delijn.be/stops/502704", "https://data.delijn.be/stops/502705"], ["https://data.delijn.be/stops/402970", "https://data.delijn.be/stops/404699"], ["https://data.delijn.be/stops/504032", "https://data.delijn.be/stops/504036"], ["https://data.delijn.be/stops/404588", "https://data.delijn.be/stops/404590"], ["https://data.delijn.be/stops/101513", "https://data.delijn.be/stops/101514"], ["https://data.delijn.be/stops/206423", "https://data.delijn.be/stops/206805"], ["https://data.delijn.be/stops/502620", "https://data.delijn.be/stops/507105"], ["https://data.delijn.be/stops/208419", "https://data.delijn.be/stops/208745"], ["https://data.delijn.be/stops/205660", "https://data.delijn.be/stops/205681"], ["https://data.delijn.be/stops/303585", "https://data.delijn.be/stops/304317"], ["https://data.delijn.be/stops/504598", "https://data.delijn.be/stops/509598"], ["https://data.delijn.be/stops/507379", "https://data.delijn.be/stops/507399"], ["https://data.delijn.be/stops/504006", "https://data.delijn.be/stops/509533"], ["https://data.delijn.be/stops/202423", "https://data.delijn.be/stops/203275"], ["https://data.delijn.be/stops/401590", "https://data.delijn.be/stops/401593"], ["https://data.delijn.be/stops/404819", "https://data.delijn.be/stops/404829"], ["https://data.delijn.be/stops/200039", "https://data.delijn.be/stops/202499"], ["https://data.delijn.be/stops/404441", "https://data.delijn.be/stops/409438"], ["https://data.delijn.be/stops/408103", "https://data.delijn.be/stops/408107"], ["https://data.delijn.be/stops/300207", "https://data.delijn.be/stops/300214"], ["https://data.delijn.be/stops/208122", "https://data.delijn.be/stops/208295"], ["https://data.delijn.be/stops/501147", "https://data.delijn.be/stops/501155"], ["https://data.delijn.be/stops/304350", "https://data.delijn.be/stops/304355"], ["https://data.delijn.be/stops/206740", "https://data.delijn.be/stops/207600"], ["https://data.delijn.be/stops/302763", "https://data.delijn.be/stops/302774"], ["https://data.delijn.be/stops/102652", "https://data.delijn.be/stops/107901"], ["https://data.delijn.be/stops/205123", "https://data.delijn.be/stops/205146"], ["https://data.delijn.be/stops/303295", "https://data.delijn.be/stops/308120"], ["https://data.delijn.be/stops/204609", "https://data.delijn.be/stops/205280"], ["https://data.delijn.be/stops/300577", "https://data.delijn.be/stops/300593"], ["https://data.delijn.be/stops/501294", "https://data.delijn.be/stops/506397"], ["https://data.delijn.be/stops/101025", "https://data.delijn.be/stops/101150"], ["https://data.delijn.be/stops/201945", "https://data.delijn.be/stops/203455"], ["https://data.delijn.be/stops/401547", "https://data.delijn.be/stops/401958"], ["https://data.delijn.be/stops/400105", "https://data.delijn.be/stops/408095"], ["https://data.delijn.be/stops/201564", "https://data.delijn.be/stops/211102"], ["https://data.delijn.be/stops/108483", "https://data.delijn.be/stops/306598"], ["https://data.delijn.be/stops/206696", "https://data.delijn.be/stops/207710"], ["https://data.delijn.be/stops/407873", "https://data.delijn.be/stops/407874"], ["https://data.delijn.be/stops/505806", "https://data.delijn.be/stops/508078"], ["https://data.delijn.be/stops/204217", "https://data.delijn.be/stops/205178"], ["https://data.delijn.be/stops/507229", "https://data.delijn.be/stops/507240"], ["https://data.delijn.be/stops/301922", "https://data.delijn.be/stops/301923"], ["https://data.delijn.be/stops/305446", "https://data.delijn.be/stops/307327"], ["https://data.delijn.be/stops/206383", "https://data.delijn.be/stops/207356"], ["https://data.delijn.be/stops/201807", "https://data.delijn.be/stops/201813"], ["https://data.delijn.be/stops/102503", "https://data.delijn.be/stops/400023"], ["https://data.delijn.be/stops/503279", "https://data.delijn.be/stops/505952"], ["https://data.delijn.be/stops/304819", "https://data.delijn.be/stops/304820"], ["https://data.delijn.be/stops/409816", "https://data.delijn.be/stops/409817"], ["https://data.delijn.be/stops/502101", "https://data.delijn.be/stops/502132"], ["https://data.delijn.be/stops/500940", "https://data.delijn.be/stops/500941"], ["https://data.delijn.be/stops/108100", "https://data.delijn.be/stops/108101"], ["https://data.delijn.be/stops/303205", "https://data.delijn.be/stops/304312"], ["https://data.delijn.be/stops/400229", "https://data.delijn.be/stops/405611"], ["https://data.delijn.be/stops/200774", "https://data.delijn.be/stops/209385"], ["https://data.delijn.be/stops/206529", "https://data.delijn.be/stops/206822"], ["https://data.delijn.be/stops/108116", "https://data.delijn.be/stops/108117"], ["https://data.delijn.be/stops/509166", "https://data.delijn.be/stops/509172"], ["https://data.delijn.be/stops/304303", "https://data.delijn.be/stops/304305"], ["https://data.delijn.be/stops/103689", "https://data.delijn.be/stops/109430"], ["https://data.delijn.be/stops/208256", "https://data.delijn.be/stops/208257"], ["https://data.delijn.be/stops/400254", "https://data.delijn.be/stops/400257"], ["https://data.delijn.be/stops/204484", "https://data.delijn.be/stops/204736"], ["https://data.delijn.be/stops/101048", "https://data.delijn.be/stops/104368"], ["https://data.delijn.be/stops/401200", "https://data.delijn.be/stops/401304"], ["https://data.delijn.be/stops/108356", "https://data.delijn.be/stops/108357"], ["https://data.delijn.be/stops/101527", "https://data.delijn.be/stops/108796"], ["https://data.delijn.be/stops/408025", "https://data.delijn.be/stops/408414"], ["https://data.delijn.be/stops/105215", "https://data.delijn.be/stops/105542"], ["https://data.delijn.be/stops/502597", "https://data.delijn.be/stops/505724"], ["https://data.delijn.be/stops/102391", "https://data.delijn.be/stops/103140"], ["https://data.delijn.be/stops/107760", "https://data.delijn.be/stops/108957"], ["https://data.delijn.be/stops/202695", "https://data.delijn.be/stops/203726"], ["https://data.delijn.be/stops/504979", "https://data.delijn.be/stops/508905"], ["https://data.delijn.be/stops/405107", "https://data.delijn.be/stops/405108"], ["https://data.delijn.be/stops/402142", "https://data.delijn.be/stops/402143"], ["https://data.delijn.be/stops/504558", "https://data.delijn.be/stops/504559"], ["https://data.delijn.be/stops/504326", "https://data.delijn.be/stops/505992"], ["https://data.delijn.be/stops/504979", "https://data.delijn.be/stops/504980"], ["https://data.delijn.be/stops/301652", "https://data.delijn.be/stops/306143"], ["https://data.delijn.be/stops/503696", "https://data.delijn.be/stops/504975"], ["https://data.delijn.be/stops/102126", "https://data.delijn.be/stops/109491"], ["https://data.delijn.be/stops/106209", "https://data.delijn.be/stops/106213"], ["https://data.delijn.be/stops/300877", "https://data.delijn.be/stops/308855"], ["https://data.delijn.be/stops/101516", "https://data.delijn.be/stops/109026"], ["https://data.delijn.be/stops/401386", "https://data.delijn.be/stops/410171"], ["https://data.delijn.be/stops/202232", "https://data.delijn.be/stops/208890"], ["https://data.delijn.be/stops/408069", "https://data.delijn.be/stops/408085"], ["https://data.delijn.be/stops/107470", "https://data.delijn.be/stops/109687"], ["https://data.delijn.be/stops/102174", "https://data.delijn.be/stops/108341"], ["https://data.delijn.be/stops/102050", "https://data.delijn.be/stops/103120"], ["https://data.delijn.be/stops/106749", "https://data.delijn.be/stops/106750"], ["https://data.delijn.be/stops/509581", "https://data.delijn.be/stops/509582"], ["https://data.delijn.be/stops/104662", "https://data.delijn.be/stops/306603"], ["https://data.delijn.be/stops/504621", "https://data.delijn.be/stops/504630"], ["https://data.delijn.be/stops/101887", "https://data.delijn.be/stops/410163"], ["https://data.delijn.be/stops/204674", "https://data.delijn.be/stops/205674"], ["https://data.delijn.be/stops/106435", "https://data.delijn.be/stops/106436"], ["https://data.delijn.be/stops/206338", "https://data.delijn.be/stops/207338"], ["https://data.delijn.be/stops/201956", "https://data.delijn.be/stops/202477"], ["https://data.delijn.be/stops/108713", "https://data.delijn.be/stops/108858"], ["https://data.delijn.be/stops/102509", "https://data.delijn.be/stops/406470"], ["https://data.delijn.be/stops/501095", "https://data.delijn.be/stops/506244"], ["https://data.delijn.be/stops/403246", "https://data.delijn.be/stops/403247"], ["https://data.delijn.be/stops/208033", "https://data.delijn.be/stops/209032"], ["https://data.delijn.be/stops/203840", "https://data.delijn.be/stops/209736"], ["https://data.delijn.be/stops/504215", "https://data.delijn.be/stops/509112"], ["https://data.delijn.be/stops/407715", "https://data.delijn.be/stops/407726"], ["https://data.delijn.be/stops/200590", "https://data.delijn.be/stops/201590"], ["https://data.delijn.be/stops/109132", "https://data.delijn.be/stops/109421"], ["https://data.delijn.be/stops/400756", "https://data.delijn.be/stops/407591"], ["https://data.delijn.be/stops/409048", "https://data.delijn.be/stops/409446"], ["https://data.delijn.be/stops/403003", "https://data.delijn.be/stops/404269"], ["https://data.delijn.be/stops/304505", "https://data.delijn.be/stops/304508"], ["https://data.delijn.be/stops/402098", "https://data.delijn.be/stops/402208"], ["https://data.delijn.be/stops/207008", "https://data.delijn.be/stops/207520"], ["https://data.delijn.be/stops/403126", "https://data.delijn.be/stops/403357"], ["https://data.delijn.be/stops/501032", "https://data.delijn.be/stops/506284"], ["https://data.delijn.be/stops/204408", "https://data.delijn.be/stops/205413"], ["https://data.delijn.be/stops/202153", "https://data.delijn.be/stops/203153"], ["https://data.delijn.be/stops/208300", "https://data.delijn.be/stops/208375"], ["https://data.delijn.be/stops/501091", "https://data.delijn.be/stops/501099"], ["https://data.delijn.be/stops/302280", "https://data.delijn.be/stops/302285"], ["https://data.delijn.be/stops/204185", "https://data.delijn.be/stops/205185"], ["https://data.delijn.be/stops/403179", "https://data.delijn.be/stops/403262"], ["https://data.delijn.be/stops/106467", "https://data.delijn.be/stops/106468"], ["https://data.delijn.be/stops/204332", "https://data.delijn.be/stops/205333"], ["https://data.delijn.be/stops/204137", "https://data.delijn.be/stops/205239"], ["https://data.delijn.be/stops/502186", "https://data.delijn.be/stops/507187"], ["https://data.delijn.be/stops/101699", "https://data.delijn.be/stops/101701"], ["https://data.delijn.be/stops/502580", "https://data.delijn.be/stops/507725"], ["https://data.delijn.be/stops/300862", "https://data.delijn.be/stops/307233"], ["https://data.delijn.be/stops/306914", "https://data.delijn.be/stops/308875"], ["https://data.delijn.be/stops/400391", "https://data.delijn.be/stops/406485"], ["https://data.delijn.be/stops/503634", "https://data.delijn.be/stops/504677"], ["https://data.delijn.be/stops/200150", "https://data.delijn.be/stops/200511"], ["https://data.delijn.be/stops/207784", "https://data.delijn.be/stops/207789"], ["https://data.delijn.be/stops/403320", "https://data.delijn.be/stops/403321"], ["https://data.delijn.be/stops/101954", "https://data.delijn.be/stops/108311"], ["https://data.delijn.be/stops/106201", "https://data.delijn.be/stops/106203"], ["https://data.delijn.be/stops/505608", "https://data.delijn.be/stops/505726"], ["https://data.delijn.be/stops/505341", "https://data.delijn.be/stops/505756"], ["https://data.delijn.be/stops/208068", "https://data.delijn.be/stops/209068"], ["https://data.delijn.be/stops/300160", "https://data.delijn.be/stops/300163"], ["https://data.delijn.be/stops/504073", "https://data.delijn.be/stops/504692"], ["https://data.delijn.be/stops/402477", "https://data.delijn.be/stops/407547"], ["https://data.delijn.be/stops/401787", "https://data.delijn.be/stops/406015"], ["https://data.delijn.be/stops/202149", "https://data.delijn.be/stops/203150"], ["https://data.delijn.be/stops/402956", "https://data.delijn.be/stops/408179"], ["https://data.delijn.be/stops/404506", "https://data.delijn.be/stops/404544"], ["https://data.delijn.be/stops/102074", "https://data.delijn.be/stops/108838"], ["https://data.delijn.be/stops/101064", "https://data.delijn.be/stops/106743"], ["https://data.delijn.be/stops/301831", "https://data.delijn.be/stops/305983"], ["https://data.delijn.be/stops/101831", "https://data.delijn.be/stops/107328"], ["https://data.delijn.be/stops/504372", "https://data.delijn.be/stops/505224"], ["https://data.delijn.be/stops/405796", "https://data.delijn.be/stops/406386"], ["https://data.delijn.be/stops/101783", "https://data.delijn.be/stops/104113"], ["https://data.delijn.be/stops/108334", "https://data.delijn.be/stops/109301"], ["https://data.delijn.be/stops/408665", "https://data.delijn.be/stops/410191"], ["https://data.delijn.be/stops/503193", "https://data.delijn.be/stops/508208"], ["https://data.delijn.be/stops/105042", "https://data.delijn.be/stops/105049"], ["https://data.delijn.be/stops/300852", "https://data.delijn.be/stops/303831"], ["https://data.delijn.be/stops/405447", "https://data.delijn.be/stops/409280"], ["https://data.delijn.be/stops/204755", "https://data.delijn.be/stops/205754"], ["https://data.delijn.be/stops/206760", "https://data.delijn.be/stops/209581"], ["https://data.delijn.be/stops/505718", "https://data.delijn.be/stops/508488"], ["https://data.delijn.be/stops/108510", "https://data.delijn.be/stops/108512"], ["https://data.delijn.be/stops/405673", "https://data.delijn.be/stops/407334"], ["https://data.delijn.be/stops/306292", "https://data.delijn.be/stops/306294"], ["https://data.delijn.be/stops/105624", "https://data.delijn.be/stops/105626"], ["https://data.delijn.be/stops/407610", "https://data.delijn.be/stops/407611"], ["https://data.delijn.be/stops/307987", "https://data.delijn.be/stops/307990"], ["https://data.delijn.be/stops/504353", "https://data.delijn.be/stops/509348"], ["https://data.delijn.be/stops/400688", "https://data.delijn.be/stops/404309"], ["https://data.delijn.be/stops/304025", "https://data.delijn.be/stops/304821"], ["https://data.delijn.be/stops/202810", "https://data.delijn.be/stops/203867"], ["https://data.delijn.be/stops/204301", "https://data.delijn.be/stops/205301"], ["https://data.delijn.be/stops/104422", "https://data.delijn.be/stops/205288"], ["https://data.delijn.be/stops/108899", "https://data.delijn.be/stops/108901"], ["https://data.delijn.be/stops/106606", "https://data.delijn.be/stops/106685"], ["https://data.delijn.be/stops/103112", "https://data.delijn.be/stops/105345"], ["https://data.delijn.be/stops/202500", "https://data.delijn.be/stops/203500"], ["https://data.delijn.be/stops/201675", "https://data.delijn.be/stops/203209"], ["https://data.delijn.be/stops/402585", "https://data.delijn.be/stops/405485"], ["https://data.delijn.be/stops/203851", "https://data.delijn.be/stops/211098"], ["https://data.delijn.be/stops/303782", "https://data.delijn.be/stops/303783"], ["https://data.delijn.be/stops/202543", "https://data.delijn.be/stops/210016"], ["https://data.delijn.be/stops/409742", "https://data.delijn.be/stops/409754"], ["https://data.delijn.be/stops/400686", "https://data.delijn.be/stops/404603"], ["https://data.delijn.be/stops/503502", "https://data.delijn.be/stops/508503"], ["https://data.delijn.be/stops/102069", "https://data.delijn.be/stops/106929"], ["https://data.delijn.be/stops/305209", "https://data.delijn.be/stops/308681"], ["https://data.delijn.be/stops/103040", "https://data.delijn.be/stops/104680"], ["https://data.delijn.be/stops/106911", "https://data.delijn.be/stops/107259"], ["https://data.delijn.be/stops/401960", "https://data.delijn.be/stops/402961"], ["https://data.delijn.be/stops/305435", "https://data.delijn.be/stops/305436"], ["https://data.delijn.be/stops/208102", "https://data.delijn.be/stops/209103"], ["https://data.delijn.be/stops/107094", "https://data.delijn.be/stops/108199"], ["https://data.delijn.be/stops/404424", "https://data.delijn.be/stops/404425"], ["https://data.delijn.be/stops/105097", "https://data.delijn.be/stops/105098"], ["https://data.delijn.be/stops/102396", "https://data.delijn.be/stops/108183"], ["https://data.delijn.be/stops/402022", "https://data.delijn.be/stops/408877"], ["https://data.delijn.be/stops/304247", "https://data.delijn.be/stops/306669"], ["https://data.delijn.be/stops/401672", "https://data.delijn.be/stops/308287"], ["https://data.delijn.be/stops/402737", "https://data.delijn.be/stops/405947"], ["https://data.delijn.be/stops/409365", "https://data.delijn.be/stops/409378"], ["https://data.delijn.be/stops/206064", "https://data.delijn.be/stops/207063"], ["https://data.delijn.be/stops/401431", "https://data.delijn.be/stops/401576"], ["https://data.delijn.be/stops/407926", "https://data.delijn.be/stops/407959"], ["https://data.delijn.be/stops/503039", "https://data.delijn.be/stops/508039"], ["https://data.delijn.be/stops/101137", "https://data.delijn.be/stops/101138"], ["https://data.delijn.be/stops/408293", "https://data.delijn.be/stops/408438"], ["https://data.delijn.be/stops/308251", "https://data.delijn.be/stops/308293"], ["https://data.delijn.be/stops/408980", "https://data.delijn.be/stops/408992"], ["https://data.delijn.be/stops/501327", "https://data.delijn.be/stops/506565"], ["https://data.delijn.be/stops/508268", "https://data.delijn.be/stops/508275"], ["https://data.delijn.be/stops/403991", "https://data.delijn.be/stops/407066"], ["https://data.delijn.be/stops/405335", "https://data.delijn.be/stops/405337"], ["https://data.delijn.be/stops/506001", "https://data.delijn.be/stops/509559"], ["https://data.delijn.be/stops/303761", "https://data.delijn.be/stops/303762"], ["https://data.delijn.be/stops/408641", "https://data.delijn.be/stops/408736"], ["https://data.delijn.be/stops/308233", "https://data.delijn.be/stops/308234"], ["https://data.delijn.be/stops/407648", "https://data.delijn.be/stops/407669"], ["https://data.delijn.be/stops/201238", "https://data.delijn.be/stops/205925"], ["https://data.delijn.be/stops/400691", "https://data.delijn.be/stops/409567"], ["https://data.delijn.be/stops/200679", "https://data.delijn.be/stops/201737"], ["https://data.delijn.be/stops/102305", "https://data.delijn.be/stops/104485"], ["https://data.delijn.be/stops/405501", "https://data.delijn.be/stops/406243"], ["https://data.delijn.be/stops/402952", "https://data.delijn.be/stops/405312"], ["https://data.delijn.be/stops/206364", "https://data.delijn.be/stops/207710"], ["https://data.delijn.be/stops/300167", "https://data.delijn.be/stops/300168"], ["https://data.delijn.be/stops/105562", "https://data.delijn.be/stops/105563"], ["https://data.delijn.be/stops/302676", "https://data.delijn.be/stops/302694"], ["https://data.delijn.be/stops/505284", "https://data.delijn.be/stops/508293"], ["https://data.delijn.be/stops/303341", "https://data.delijn.be/stops/303343"], ["https://data.delijn.be/stops/206651", "https://data.delijn.be/stops/207600"], ["https://data.delijn.be/stops/109730", "https://data.delijn.be/stops/109731"], ["https://data.delijn.be/stops/304937", "https://data.delijn.be/stops/307736"], ["https://data.delijn.be/stops/307752", "https://data.delijn.be/stops/307766"], ["https://data.delijn.be/stops/502793", "https://data.delijn.be/stops/507115"], ["https://data.delijn.be/stops/305001", "https://data.delijn.be/stops/305022"], ["https://data.delijn.be/stops/101724", "https://data.delijn.be/stops/101847"], ["https://data.delijn.be/stops/200031", "https://data.delijn.be/stops/201031"], ["https://data.delijn.be/stops/109055", "https://data.delijn.be/stops/109060"], ["https://data.delijn.be/stops/501375", "https://data.delijn.be/stops/506372"], ["https://data.delijn.be/stops/208106", "https://data.delijn.be/stops/209777"], ["https://data.delijn.be/stops/305924", "https://data.delijn.be/stops/308978"], ["https://data.delijn.be/stops/502547", "https://data.delijn.be/stops/505231"], ["https://data.delijn.be/stops/503520", "https://data.delijn.be/stops/508722"], ["https://data.delijn.be/stops/503277", "https://data.delijn.be/stops/505292"], ["https://data.delijn.be/stops/301464", "https://data.delijn.be/stops/301466"], ["https://data.delijn.be/stops/303577", "https://data.delijn.be/stops/303583"], ["https://data.delijn.be/stops/205533", "https://data.delijn.be/stops/205544"], ["https://data.delijn.be/stops/104901", "https://data.delijn.be/stops/107607"], ["https://data.delijn.be/stops/202682", "https://data.delijn.be/stops/211709"], ["https://data.delijn.be/stops/108263", "https://data.delijn.be/stops/109338"], ["https://data.delijn.be/stops/204648", "https://data.delijn.be/stops/205272"], ["https://data.delijn.be/stops/108339", "https://data.delijn.be/stops/108341"], ["https://data.delijn.be/stops/504148", "https://data.delijn.be/stops/509136"], ["https://data.delijn.be/stops/503429", "https://data.delijn.be/stops/510025"], ["https://data.delijn.be/stops/403104", "https://data.delijn.be/stops/403112"], ["https://data.delijn.be/stops/502140", "https://data.delijn.be/stops/507728"], ["https://data.delijn.be/stops/207177", "https://data.delijn.be/stops/308978"], ["https://data.delijn.be/stops/400121", "https://data.delijn.be/stops/400162"], ["https://data.delijn.be/stops/106779", "https://data.delijn.be/stops/106780"], ["https://data.delijn.be/stops/201253", "https://data.delijn.be/stops/201254"], ["https://data.delijn.be/stops/407285", "https://data.delijn.be/stops/409492"], ["https://data.delijn.be/stops/403596", "https://data.delijn.be/stops/403597"], ["https://data.delijn.be/stops/504175", "https://data.delijn.be/stops/509175"], ["https://data.delijn.be/stops/507479", "https://data.delijn.be/stops/509929"], ["https://data.delijn.be/stops/301050", "https://data.delijn.be/stops/301061"], ["https://data.delijn.be/stops/302288", "https://data.delijn.be/stops/302289"], ["https://data.delijn.be/stops/209089", "https://data.delijn.be/stops/507962"], ["https://data.delijn.be/stops/503784", "https://data.delijn.be/stops/503785"], ["https://data.delijn.be/stops/301687", "https://data.delijn.be/stops/301690"], ["https://data.delijn.be/stops/408550", "https://data.delijn.be/stops/408675"], ["https://data.delijn.be/stops/400090", "https://data.delijn.be/stops/400151"], ["https://data.delijn.be/stops/304761", "https://data.delijn.be/stops/304767"], ["https://data.delijn.be/stops/102446", "https://data.delijn.be/stops/106010"], ["https://data.delijn.be/stops/202694", "https://data.delijn.be/stops/203678"], ["https://data.delijn.be/stops/206801", "https://data.delijn.be/stops/208622"], ["https://data.delijn.be/stops/406117", "https://data.delijn.be/stops/406126"], ["https://data.delijn.be/stops/401036", "https://data.delijn.be/stops/404869"], ["https://data.delijn.be/stops/101888", "https://data.delijn.be/stops/406833"], ["https://data.delijn.be/stops/509031", "https://data.delijn.be/stops/509471"], ["https://data.delijn.be/stops/502640", "https://data.delijn.be/stops/507397"], ["https://data.delijn.be/stops/108998", "https://data.delijn.be/stops/108999"], ["https://data.delijn.be/stops/501192", "https://data.delijn.be/stops/501497"], ["https://data.delijn.be/stops/405906", "https://data.delijn.be/stops/405907"], ["https://data.delijn.be/stops/303759", "https://data.delijn.be/stops/303781"], ["https://data.delijn.be/stops/407014", "https://data.delijn.be/stops/408052"], ["https://data.delijn.be/stops/305146", "https://data.delijn.be/stops/305147"], ["https://data.delijn.be/stops/505124", "https://data.delijn.be/stops/505125"], ["https://data.delijn.be/stops/203308", "https://data.delijn.be/stops/203309"], ["https://data.delijn.be/stops/301192", "https://data.delijn.be/stops/301193"], ["https://data.delijn.be/stops/506039", "https://data.delijn.be/stops/506329"], ["https://data.delijn.be/stops/407741", "https://data.delijn.be/stops/409625"], ["https://data.delijn.be/stops/307903", "https://data.delijn.be/stops/308490"], ["https://data.delijn.be/stops/302937", "https://data.delijn.be/stops/304710"], ["https://data.delijn.be/stops/108474", "https://data.delijn.be/stops/109085"], ["https://data.delijn.be/stops/402602", "https://data.delijn.be/stops/402642"], ["https://data.delijn.be/stops/508360", "https://data.delijn.be/stops/509790"], ["https://data.delijn.be/stops/201932", "https://data.delijn.be/stops/202512"], ["https://data.delijn.be/stops/508713", "https://data.delijn.be/stops/509970"], ["https://data.delijn.be/stops/305124", "https://data.delijn.be/stops/305125"], ["https://data.delijn.be/stops/107078", "https://data.delijn.be/stops/107079"], ["https://data.delijn.be/stops/404659", "https://data.delijn.be/stops/404671"], ["https://data.delijn.be/stops/206648", "https://data.delijn.be/stops/207648"], ["https://data.delijn.be/stops/401000", "https://data.delijn.be/stops/409822"], ["https://data.delijn.be/stops/509165", "https://data.delijn.be/stops/509192"], ["https://data.delijn.be/stops/303839", "https://data.delijn.be/stops/303861"], ["https://data.delijn.be/stops/505630", "https://data.delijn.be/stops/505981"], ["https://data.delijn.be/stops/402214", "https://data.delijn.be/stops/404861"], ["https://data.delijn.be/stops/300095", "https://data.delijn.be/stops/304411"], ["https://data.delijn.be/stops/502558", "https://data.delijn.be/stops/507552"], ["https://data.delijn.be/stops/409060", "https://data.delijn.be/stops/409081"], ["https://data.delijn.be/stops/106420", "https://data.delijn.be/stops/106561"], ["https://data.delijn.be/stops/406738", "https://data.delijn.be/stops/407446"], ["https://data.delijn.be/stops/304839", "https://data.delijn.be/stops/304884"], ["https://data.delijn.be/stops/101757", "https://data.delijn.be/stops/102181"], ["https://data.delijn.be/stops/204213", "https://data.delijn.be/stops/205175"], ["https://data.delijn.be/stops/408760", "https://data.delijn.be/stops/408812"], ["https://data.delijn.be/stops/206055", "https://data.delijn.be/stops/217002"], ["https://data.delijn.be/stops/304484", "https://data.delijn.be/stops/304492"], ["https://data.delijn.be/stops/206786", "https://data.delijn.be/stops/208561"], ["https://data.delijn.be/stops/501335", "https://data.delijn.be/stops/501349"], ["https://data.delijn.be/stops/201674", "https://data.delijn.be/stops/203206"], ["https://data.delijn.be/stops/106038", "https://data.delijn.be/stops/106569"], ["https://data.delijn.be/stops/501071", "https://data.delijn.be/stops/506067"], ["https://data.delijn.be/stops/102866", "https://data.delijn.be/stops/104410"], ["https://data.delijn.be/stops/209589", "https://data.delijn.be/stops/307529"], ["https://data.delijn.be/stops/304792", "https://data.delijn.be/stops/304799"], ["https://data.delijn.be/stops/403314", "https://data.delijn.be/stops/403315"], ["https://data.delijn.be/stops/201672", "https://data.delijn.be/stops/202211"], ["https://data.delijn.be/stops/401791", "https://data.delijn.be/stops/406121"], ["https://data.delijn.be/stops/200987", "https://data.delijn.be/stops/201190"], ["https://data.delijn.be/stops/109767", "https://data.delijn.be/stops/109785"], ["https://data.delijn.be/stops/400508", "https://data.delijn.be/stops/403898"], ["https://data.delijn.be/stops/102287", "https://data.delijn.be/stops/109651"], ["https://data.delijn.be/stops/501149", "https://data.delijn.be/stops/509832"], ["https://data.delijn.be/stops/102602", "https://data.delijn.be/stops/107945"], ["https://data.delijn.be/stops/307620", "https://data.delijn.be/stops/308559"], ["https://data.delijn.be/stops/200434", "https://data.delijn.be/stops/201549"], ["https://data.delijn.be/stops/101821", "https://data.delijn.be/stops/107071"], ["https://data.delijn.be/stops/303034", "https://data.delijn.be/stops/306319"], ["https://data.delijn.be/stops/504140", "https://data.delijn.be/stops/509143"], ["https://data.delijn.be/stops/407684", "https://data.delijn.be/stops/407686"], ["https://data.delijn.be/stops/103576", "https://data.delijn.be/stops/106614"], ["https://data.delijn.be/stops/301270", "https://data.delijn.be/stops/307844"], ["https://data.delijn.be/stops/105772", "https://data.delijn.be/stops/105783"], ["https://data.delijn.be/stops/300170", "https://data.delijn.be/stops/301224"], ["https://data.delijn.be/stops/502030", "https://data.delijn.be/stops/507038"], ["https://data.delijn.be/stops/504243", "https://data.delijn.be/stops/509445"], ["https://data.delijn.be/stops/503382", "https://data.delijn.be/stops/508382"], ["https://data.delijn.be/stops/505804", "https://data.delijn.be/stops/590007"], ["https://data.delijn.be/stops/204330", "https://data.delijn.be/stops/205292"], ["https://data.delijn.be/stops/300574", "https://data.delijn.be/stops/300588"], ["https://data.delijn.be/stops/303576", "https://data.delijn.be/stops/305225"], ["https://data.delijn.be/stops/506343", "https://data.delijn.be/stops/509897"], ["https://data.delijn.be/stops/505933", "https://data.delijn.be/stops/507012"], ["https://data.delijn.be/stops/503345", "https://data.delijn.be/stops/508345"], ["https://data.delijn.be/stops/301831", "https://data.delijn.be/stops/301832"], ["https://data.delijn.be/stops/408388", "https://data.delijn.be/stops/408389"], ["https://data.delijn.be/stops/407482", "https://data.delijn.be/stops/407540"], ["https://data.delijn.be/stops/303226", "https://data.delijn.be/stops/303230"], ["https://data.delijn.be/stops/305958", "https://data.delijn.be/stops/305961"], ["https://data.delijn.be/stops/204924", "https://data.delijn.be/stops/210051"], ["https://data.delijn.be/stops/104993", "https://data.delijn.be/stops/109998"], ["https://data.delijn.be/stops/505806", "https://data.delijn.be/stops/505832"], ["https://data.delijn.be/stops/200820", "https://data.delijn.be/stops/209656"], ["https://data.delijn.be/stops/404212", "https://data.delijn.be/stops/404213"], ["https://data.delijn.be/stops/304139", "https://data.delijn.be/stops/307565"], ["https://data.delijn.be/stops/202911", "https://data.delijn.be/stops/202916"], ["https://data.delijn.be/stops/106847", "https://data.delijn.be/stops/106850"], ["https://data.delijn.be/stops/504261", "https://data.delijn.be/stops/509261"], ["https://data.delijn.be/stops/206056", "https://data.delijn.be/stops/206964"], ["https://data.delijn.be/stops/503466", "https://data.delijn.be/stops/503644"], ["https://data.delijn.be/stops/408513", "https://data.delijn.be/stops/408538"], ["https://data.delijn.be/stops/307184", "https://data.delijn.be/stops/307187"], ["https://data.delijn.be/stops/506094", "https://data.delijn.be/stops/509811"], ["https://data.delijn.be/stops/204245", "https://data.delijn.be/stops/205248"], ["https://data.delijn.be/stops/202251", "https://data.delijn.be/stops/202252"], ["https://data.delijn.be/stops/200688", "https://data.delijn.be/stops/201720"], ["https://data.delijn.be/stops/408168", "https://data.delijn.be/stops/409561"], ["https://data.delijn.be/stops/108787", "https://data.delijn.be/stops/108789"], ["https://data.delijn.be/stops/104953", "https://data.delijn.be/stops/104954"], ["https://data.delijn.be/stops/406161", "https://data.delijn.be/stops/406264"], ["https://data.delijn.be/stops/201525", "https://data.delijn.be/stops/210131"], ["https://data.delijn.be/stops/301603", "https://data.delijn.be/stops/301619"], ["https://data.delijn.be/stops/200824", "https://data.delijn.be/stops/200847"], ["https://data.delijn.be/stops/200853", "https://data.delijn.be/stops/200890"], ["https://data.delijn.be/stops/301895", "https://data.delijn.be/stops/305755"], ["https://data.delijn.be/stops/202904", "https://data.delijn.be/stops/203905"], ["https://data.delijn.be/stops/304160", "https://data.delijn.be/stops/304227"], ["https://data.delijn.be/stops/101217", "https://data.delijn.be/stops/104448"], ["https://data.delijn.be/stops/306198", "https://data.delijn.be/stops/306199"], ["https://data.delijn.be/stops/400803", "https://data.delijn.be/stops/400805"], ["https://data.delijn.be/stops/107965", "https://data.delijn.be/stops/107966"], ["https://data.delijn.be/stops/201554", "https://data.delijn.be/stops/201668"], ["https://data.delijn.be/stops/301922", "https://data.delijn.be/stops/302795"], ["https://data.delijn.be/stops/202369", "https://data.delijn.be/stops/203998"], ["https://data.delijn.be/stops/404916", "https://data.delijn.be/stops/404917"], ["https://data.delijn.be/stops/102660", "https://data.delijn.be/stops/105177"], ["https://data.delijn.be/stops/201100", "https://data.delijn.be/stops/201101"], ["https://data.delijn.be/stops/101883", "https://data.delijn.be/stops/104561"], ["https://data.delijn.be/stops/503225", "https://data.delijn.be/stops/505392"], ["https://data.delijn.be/stops/101085", "https://data.delijn.be/stops/103575"], ["https://data.delijn.be/stops/402095", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/302552", "https://data.delijn.be/stops/305820"], ["https://data.delijn.be/stops/302984", "https://data.delijn.be/stops/306715"], ["https://data.delijn.be/stops/304127", "https://data.delijn.be/stops/304580"], ["https://data.delijn.be/stops/109169", "https://data.delijn.be/stops/109171"], ["https://data.delijn.be/stops/104793", "https://data.delijn.be/stops/105102"], ["https://data.delijn.be/stops/501551", "https://data.delijn.be/stops/502521"], ["https://data.delijn.be/stops/307557", "https://data.delijn.be/stops/307677"], ["https://data.delijn.be/stops/504101", "https://data.delijn.be/stops/504706"], ["https://data.delijn.be/stops/508177", "https://data.delijn.be/stops/508264"], ["https://data.delijn.be/stops/302904", "https://data.delijn.be/stops/302905"], ["https://data.delijn.be/stops/201565", "https://data.delijn.be/stops/210019"], ["https://data.delijn.be/stops/302205", "https://data.delijn.be/stops/302208"], ["https://data.delijn.be/stops/504576", "https://data.delijn.be/stops/505215"], ["https://data.delijn.be/stops/300666", "https://data.delijn.be/stops/306885"], ["https://data.delijn.be/stops/206866", "https://data.delijn.be/stops/209620"], ["https://data.delijn.be/stops/503014", "https://data.delijn.be/stops/503015"], ["https://data.delijn.be/stops/404928", "https://data.delijn.be/stops/407644"], ["https://data.delijn.be/stops/504718", "https://data.delijn.be/stops/504721"], ["https://data.delijn.be/stops/200763", "https://data.delijn.be/stops/208753"], ["https://data.delijn.be/stops/503605", "https://data.delijn.be/stops/503610"], ["https://data.delijn.be/stops/103679", "https://data.delijn.be/stops/106195"], ["https://data.delijn.be/stops/204042", "https://data.delijn.be/stops/205041"], ["https://data.delijn.be/stops/401279", "https://data.delijn.be/stops/401282"], ["https://data.delijn.be/stops/300183", "https://data.delijn.be/stops/300184"], ["https://data.delijn.be/stops/400334", "https://data.delijn.be/stops/400335"], ["https://data.delijn.be/stops/502196", "https://data.delijn.be/stops/507190"], ["https://data.delijn.be/stops/101515", "https://data.delijn.be/stops/101992"], ["https://data.delijn.be/stops/405772", "https://data.delijn.be/stops/409421"], ["https://data.delijn.be/stops/505681", "https://data.delijn.be/stops/505686"], ["https://data.delijn.be/stops/303513", "https://data.delijn.be/stops/304175"], ["https://data.delijn.be/stops/506097", "https://data.delijn.be/stops/507214"], ["https://data.delijn.be/stops/200900", "https://data.delijn.be/stops/505607"], ["https://data.delijn.be/stops/303824", "https://data.delijn.be/stops/303826"], ["https://data.delijn.be/stops/403448", "https://data.delijn.be/stops/404224"], ["https://data.delijn.be/stops/400916", "https://data.delijn.be/stops/400921"], ["https://data.delijn.be/stops/102093", "https://data.delijn.be/stops/105492"], ["https://data.delijn.be/stops/106238", "https://data.delijn.be/stops/106239"], ["https://data.delijn.be/stops/404042", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/103283", "https://data.delijn.be/stops/104965"], ["https://data.delijn.be/stops/302025", "https://data.delijn.be/stops/306381"], ["https://data.delijn.be/stops/406247", "https://data.delijn.be/stops/406417"], ["https://data.delijn.be/stops/200863", "https://data.delijn.be/stops/202295"], ["https://data.delijn.be/stops/305381", "https://data.delijn.be/stops/333453"], ["https://data.delijn.be/stops/202285", "https://data.delijn.be/stops/203284"], ["https://data.delijn.be/stops/300551", "https://data.delijn.be/stops/300558"], ["https://data.delijn.be/stops/504657", "https://data.delijn.be/stops/509642"], ["https://data.delijn.be/stops/405272", "https://data.delijn.be/stops/405275"], ["https://data.delijn.be/stops/202672", "https://data.delijn.be/stops/211036"], ["https://data.delijn.be/stops/205017", "https://data.delijn.be/stops/205088"], ["https://data.delijn.be/stops/405736", "https://data.delijn.be/stops/410141"], ["https://data.delijn.be/stops/408608", "https://data.delijn.be/stops/408700"], ["https://data.delijn.be/stops/400486", "https://data.delijn.be/stops/407210"], ["https://data.delijn.be/stops/409245", "https://data.delijn.be/stops/409246"], ["https://data.delijn.be/stops/505070", "https://data.delijn.be/stops/505071"], ["https://data.delijn.be/stops/103570", "https://data.delijn.be/stops/107134"], ["https://data.delijn.be/stops/207992", "https://data.delijn.be/stops/307028"], ["https://data.delijn.be/stops/409368", "https://data.delijn.be/stops/409383"], ["https://data.delijn.be/stops/204399", "https://data.delijn.be/stops/205399"], ["https://data.delijn.be/stops/200837", "https://data.delijn.be/stops/200838"], ["https://data.delijn.be/stops/201739", "https://data.delijn.be/stops/210015"], ["https://data.delijn.be/stops/104563", "https://data.delijn.be/stops/104564"], ["https://data.delijn.be/stops/505384", "https://data.delijn.be/stops/507698"], ["https://data.delijn.be/stops/503523", "https://data.delijn.be/stops/508378"], ["https://data.delijn.be/stops/106854", "https://data.delijn.be/stops/107463"], ["https://data.delijn.be/stops/301609", "https://data.delijn.be/stops/301633"], ["https://data.delijn.be/stops/302091", "https://data.delijn.be/stops/302101"], ["https://data.delijn.be/stops/211119", "https://data.delijn.be/stops/211120"], ["https://data.delijn.be/stops/405465", "https://data.delijn.be/stops/408814"], ["https://data.delijn.be/stops/504322", "https://data.delijn.be/stops/509295"], ["https://data.delijn.be/stops/401088", "https://data.delijn.be/stops/401097"], ["https://data.delijn.be/stops/400793", "https://data.delijn.be/stops/409539"], ["https://data.delijn.be/stops/207331", "https://data.delijn.be/stops/207708"], ["https://data.delijn.be/stops/407612", "https://data.delijn.be/stops/407745"], ["https://data.delijn.be/stops/405659", "https://data.delijn.be/stops/408665"], ["https://data.delijn.be/stops/501600", "https://data.delijn.be/stops/504510"], ["https://data.delijn.be/stops/307478", "https://data.delijn.be/stops/307479"], ["https://data.delijn.be/stops/208066", "https://data.delijn.be/stops/209521"], ["https://data.delijn.be/stops/406341", "https://data.delijn.be/stops/406346"], ["https://data.delijn.be/stops/408135", "https://data.delijn.be/stops/408137"], ["https://data.delijn.be/stops/408497", "https://data.delijn.be/stops/408692"], ["https://data.delijn.be/stops/400511", "https://data.delijn.be/stops/402641"], ["https://data.delijn.be/stops/501417", "https://data.delijn.be/stops/506413"], ["https://data.delijn.be/stops/307145", "https://data.delijn.be/stops/307146"], ["https://data.delijn.be/stops/305144", "https://data.delijn.be/stops/305223"], ["https://data.delijn.be/stops/302414", "https://data.delijn.be/stops/302437"], ["https://data.delijn.be/stops/200300", "https://data.delijn.be/stops/201301"], ["https://data.delijn.be/stops/206853", "https://data.delijn.be/stops/207858"], ["https://data.delijn.be/stops/202722", "https://data.delijn.be/stops/202723"], ["https://data.delijn.be/stops/300703", "https://data.delijn.be/stops/308064"], ["https://data.delijn.be/stops/300934", "https://data.delijn.be/stops/300991"], ["https://data.delijn.be/stops/303953", "https://data.delijn.be/stops/303955"], ["https://data.delijn.be/stops/102454", "https://data.delijn.be/stops/108318"], ["https://data.delijn.be/stops/501438", "https://data.delijn.be/stops/506092"], ["https://data.delijn.be/stops/101891", "https://data.delijn.be/stops/104838"], ["https://data.delijn.be/stops/107496", "https://data.delijn.be/stops/107524"], ["https://data.delijn.be/stops/204712", "https://data.delijn.be/stops/205896"], ["https://data.delijn.be/stops/206943", "https://data.delijn.be/stops/307744"], ["https://data.delijn.be/stops/504405", "https://data.delijn.be/stops/509405"], ["https://data.delijn.be/stops/408134", "https://data.delijn.be/stops/408194"], ["https://data.delijn.be/stops/206149", "https://data.delijn.be/stops/207149"], ["https://data.delijn.be/stops/301364", "https://data.delijn.be/stops/306128"], ["https://data.delijn.be/stops/303123", "https://data.delijn.be/stops/307203"], ["https://data.delijn.be/stops/210084", "https://data.delijn.be/stops/211084"], ["https://data.delijn.be/stops/504847", "https://data.delijn.be/stops/504945"], ["https://data.delijn.be/stops/302310", "https://data.delijn.be/stops/304049"], ["https://data.delijn.be/stops/501362", "https://data.delijn.be/stops/506369"], ["https://data.delijn.be/stops/200863", "https://data.delijn.be/stops/200875"], ["https://data.delijn.be/stops/303145", "https://data.delijn.be/stops/308438"], ["https://data.delijn.be/stops/108337", "https://data.delijn.be/stops/109301"], ["https://data.delijn.be/stops/303446", "https://data.delijn.be/stops/304841"], ["https://data.delijn.be/stops/204118", "https://data.delijn.be/stops/205117"], ["https://data.delijn.be/stops/102379", "https://data.delijn.be/stops/109383"], ["https://data.delijn.be/stops/500017", "https://data.delijn.be/stops/507654"], ["https://data.delijn.be/stops/302847", "https://data.delijn.be/stops/303324"], ["https://data.delijn.be/stops/305330", "https://data.delijn.be/stops/305331"], ["https://data.delijn.be/stops/402456", "https://data.delijn.be/stops/402468"], ["https://data.delijn.be/stops/501442", "https://data.delijn.be/stops/506440"], ["https://data.delijn.be/stops/404403", "https://data.delijn.be/stops/404426"], ["https://data.delijn.be/stops/202932", "https://data.delijn.be/stops/203933"], ["https://data.delijn.be/stops/105601", "https://data.delijn.be/stops/105603"], ["https://data.delijn.be/stops/301328", "https://data.delijn.be/stops/306655"], ["https://data.delijn.be/stops/300733", "https://data.delijn.be/stops/302199"], ["https://data.delijn.be/stops/503589", "https://data.delijn.be/stops/505944"], ["https://data.delijn.be/stops/204786", "https://data.delijn.be/stops/214004"], ["https://data.delijn.be/stops/106395", "https://data.delijn.be/stops/107275"], ["https://data.delijn.be/stops/301257", "https://data.delijn.be/stops/307392"], ["https://data.delijn.be/stops/501600", "https://data.delijn.be/stops/506684"], ["https://data.delijn.be/stops/507239", "https://data.delijn.be/stops/507722"], ["https://data.delijn.be/stops/400710", "https://data.delijn.be/stops/404395"], ["https://data.delijn.be/stops/206580", "https://data.delijn.be/stops/207723"], ["https://data.delijn.be/stops/408596", "https://data.delijn.be/stops/408597"], ["https://data.delijn.be/stops/201876", "https://data.delijn.be/stops/210007"], ["https://data.delijn.be/stops/505084", "https://data.delijn.be/stops/509875"], ["https://data.delijn.be/stops/105205", "https://data.delijn.be/stops/108361"], ["https://data.delijn.be/stops/503155", "https://data.delijn.be/stops/508370"], ["https://data.delijn.be/stops/202063", "https://data.delijn.be/stops/203062"], ["https://data.delijn.be/stops/103550", "https://data.delijn.be/stops/105680"], ["https://data.delijn.be/stops/102163", "https://data.delijn.be/stops/104033"], ["https://data.delijn.be/stops/501419", "https://data.delijn.be/stops/506419"], ["https://data.delijn.be/stops/102647", "https://data.delijn.be/stops/107828"], ["https://data.delijn.be/stops/300262", "https://data.delijn.be/stops/300729"], ["https://data.delijn.be/stops/508607", "https://data.delijn.be/stops/508876"], ["https://data.delijn.be/stops/503365", "https://data.delijn.be/stops/508525"], ["https://data.delijn.be/stops/505713", "https://data.delijn.be/stops/508486"], ["https://data.delijn.be/stops/107124", "https://data.delijn.be/stops/108908"], ["https://data.delijn.be/stops/106486", "https://data.delijn.be/stops/106488"], ["https://data.delijn.be/stops/305342", "https://data.delijn.be/stops/305346"], ["https://data.delijn.be/stops/208731", "https://data.delijn.be/stops/209731"], ["https://data.delijn.be/stops/200825", "https://data.delijn.be/stops/203296"], ["https://data.delijn.be/stops/300935", "https://data.delijn.be/stops/304721"], ["https://data.delijn.be/stops/403448", "https://data.delijn.be/stops/407362"], ["https://data.delijn.be/stops/302101", "https://data.delijn.be/stops/302102"], ["https://data.delijn.be/stops/300065", "https://data.delijn.be/stops/300857"], ["https://data.delijn.be/stops/401618", "https://data.delijn.be/stops/308224"], ["https://data.delijn.be/stops/206954", "https://data.delijn.be/stops/300173"], ["https://data.delijn.be/stops/406141", "https://data.delijn.be/stops/406356"], ["https://data.delijn.be/stops/206318", "https://data.delijn.be/stops/207319"], ["https://data.delijn.be/stops/107339", "https://data.delijn.be/stops/108166"], ["https://data.delijn.be/stops/206818", "https://data.delijn.be/stops/206819"], ["https://data.delijn.be/stops/106144", "https://data.delijn.be/stops/106145"], ["https://data.delijn.be/stops/505578", "https://data.delijn.be/stops/508754"], ["https://data.delijn.be/stops/201339", "https://data.delijn.be/stops/210046"], ["https://data.delijn.be/stops/402332", "https://data.delijn.be/stops/402333"], ["https://data.delijn.be/stops/305344", "https://data.delijn.be/stops/307211"], ["https://data.delijn.be/stops/206969", "https://data.delijn.be/stops/206970"], ["https://data.delijn.be/stops/409262", "https://data.delijn.be/stops/409263"], ["https://data.delijn.be/stops/300297", "https://data.delijn.be/stops/301304"], ["https://data.delijn.be/stops/200673", "https://data.delijn.be/stops/201457"], ["https://data.delijn.be/stops/505018", "https://data.delijn.be/stops/505050"], ["https://data.delijn.be/stops/303478", "https://data.delijn.be/stops/303497"], ["https://data.delijn.be/stops/206168", "https://data.delijn.be/stops/207169"], ["https://data.delijn.be/stops/101810", "https://data.delijn.be/stops/101815"], ["https://data.delijn.be/stops/300008", "https://data.delijn.be/stops/306202"], ["https://data.delijn.be/stops/300511", "https://data.delijn.be/stops/300537"], ["https://data.delijn.be/stops/501216", "https://data.delijn.be/stops/506222"], ["https://data.delijn.be/stops/207765", "https://data.delijn.be/stops/208760"], ["https://data.delijn.be/stops/203450", "https://data.delijn.be/stops/209931"], ["https://data.delijn.be/stops/305285", "https://data.delijn.be/stops/305289"], ["https://data.delijn.be/stops/300533", "https://data.delijn.be/stops/303201"], ["https://data.delijn.be/stops/404811", "https://data.delijn.be/stops/406109"], ["https://data.delijn.be/stops/505803", "https://data.delijn.be/stops/509079"], ["https://data.delijn.be/stops/207654", "https://data.delijn.be/stops/207655"], ["https://data.delijn.be/stops/208316", "https://data.delijn.be/stops/208772"], ["https://data.delijn.be/stops/203096", "https://data.delijn.be/stops/203097"], ["https://data.delijn.be/stops/102778", "https://data.delijn.be/stops/105576"], ["https://data.delijn.be/stops/503475", "https://data.delijn.be/stops/508038"], ["https://data.delijn.be/stops/202655", "https://data.delijn.be/stops/203078"], ["https://data.delijn.be/stops/102640", "https://data.delijn.be/stops/103800"], ["https://data.delijn.be/stops/506675", "https://data.delijn.be/stops/506676"], ["https://data.delijn.be/stops/408570", "https://data.delijn.be/stops/408816"], ["https://data.delijn.be/stops/301338", "https://data.delijn.be/stops/301339"], ["https://data.delijn.be/stops/105207", "https://data.delijn.be/stops/108872"], ["https://data.delijn.be/stops/206967", "https://data.delijn.be/stops/207928"], ["https://data.delijn.be/stops/501026", "https://data.delijn.be/stops/501488"], ["https://data.delijn.be/stops/505186", "https://data.delijn.be/stops/505362"], ["https://data.delijn.be/stops/106239", "https://data.delijn.be/stops/106242"], ["https://data.delijn.be/stops/503124", "https://data.delijn.be/stops/508124"], ["https://data.delijn.be/stops/109724", "https://data.delijn.be/stops/109768"], ["https://data.delijn.be/stops/505385", "https://data.delijn.be/stops/508105"], ["https://data.delijn.be/stops/502163", "https://data.delijn.be/stops/507030"], ["https://data.delijn.be/stops/307197", "https://data.delijn.be/stops/307200"], ["https://data.delijn.be/stops/301619", "https://data.delijn.be/stops/304518"], ["https://data.delijn.be/stops/307149", "https://data.delijn.be/stops/307151"], ["https://data.delijn.be/stops/108460", "https://data.delijn.be/stops/108465"], ["https://data.delijn.be/stops/206571", "https://data.delijn.be/stops/206574"], ["https://data.delijn.be/stops/505060", "https://data.delijn.be/stops/505649"], ["https://data.delijn.be/stops/504572", "https://data.delijn.be/stops/504575"], ["https://data.delijn.be/stops/300759", "https://data.delijn.be/stops/301069"], ["https://data.delijn.be/stops/300685", "https://data.delijn.be/stops/306949"], ["https://data.delijn.be/stops/104486", "https://data.delijn.be/stops/104554"], ["https://data.delijn.be/stops/301656", "https://data.delijn.be/stops/301894"], ["https://data.delijn.be/stops/401514", "https://data.delijn.be/stops/404464"], ["https://data.delijn.be/stops/402100", "https://data.delijn.be/stops/402204"], ["https://data.delijn.be/stops/406682", "https://data.delijn.be/stops/406683"], ["https://data.delijn.be/stops/101978", "https://data.delijn.be/stops/109307"], ["https://data.delijn.be/stops/107574", "https://data.delijn.be/stops/107575"], ["https://data.delijn.be/stops/303314", "https://data.delijn.be/stops/303315"], ["https://data.delijn.be/stops/406111", "https://data.delijn.be/stops/406120"], ["https://data.delijn.be/stops/202897", "https://data.delijn.be/stops/210127"], ["https://data.delijn.be/stops/300738", "https://data.delijn.be/stops/302530"], ["https://data.delijn.be/stops/403092", "https://data.delijn.be/stops/403117"], ["https://data.delijn.be/stops/109025", "https://data.delijn.be/stops/109035"], ["https://data.delijn.be/stops/402507", "https://data.delijn.be/stops/402510"], ["https://data.delijn.be/stops/305063", "https://data.delijn.be/stops/306920"], ["https://data.delijn.be/stops/300308", "https://data.delijn.be/stops/300527"], ["https://data.delijn.be/stops/502642", "https://data.delijn.be/stops/507081"], ["https://data.delijn.be/stops/504432", "https://data.delijn.be/stops/505166"], ["https://data.delijn.be/stops/301604", "https://data.delijn.be/stops/301616"], ["https://data.delijn.be/stops/200927", "https://data.delijn.be/stops/208890"], ["https://data.delijn.be/stops/203113", "https://data.delijn.be/stops/205585"], ["https://data.delijn.be/stops/300395", "https://data.delijn.be/stops/301247"], ["https://data.delijn.be/stops/302049", "https://data.delijn.be/stops/302747"], ["https://data.delijn.be/stops/401245", "https://data.delijn.be/stops/410182"], ["https://data.delijn.be/stops/107725", "https://data.delijn.be/stops/109035"], ["https://data.delijn.be/stops/504777", "https://data.delijn.be/stops/508498"], ["https://data.delijn.be/stops/409744", "https://data.delijn.be/stops/409745"], ["https://data.delijn.be/stops/102935", "https://data.delijn.be/stops/104570"], ["https://data.delijn.be/stops/407078", "https://data.delijn.be/stops/407079"], ["https://data.delijn.be/stops/406137", "https://data.delijn.be/stops/406346"], ["https://data.delijn.be/stops/403599", "https://data.delijn.be/stops/407525"], ["https://data.delijn.be/stops/404345", "https://data.delijn.be/stops/404949"], ["https://data.delijn.be/stops/206260", "https://data.delijn.be/stops/207918"], ["https://data.delijn.be/stops/207804", "https://data.delijn.be/stops/208785"], ["https://data.delijn.be/stops/101450", "https://data.delijn.be/stops/102819"], ["https://data.delijn.be/stops/503671", "https://data.delijn.be/stops/508027"], ["https://data.delijn.be/stops/407464", "https://data.delijn.be/stops/410067"], ["https://data.delijn.be/stops/200186", "https://data.delijn.be/stops/201187"], ["https://data.delijn.be/stops/300041", "https://data.delijn.be/stops/306793"], ["https://data.delijn.be/stops/402390", "https://data.delijn.be/stops/404730"], ["https://data.delijn.be/stops/203397", "https://data.delijn.be/stops/203562"], ["https://data.delijn.be/stops/502361", "https://data.delijn.be/stops/502564"], ["https://data.delijn.be/stops/201849", "https://data.delijn.be/stops/209642"], ["https://data.delijn.be/stops/400913", "https://data.delijn.be/stops/400919"], ["https://data.delijn.be/stops/402407", "https://data.delijn.be/stops/402465"], ["https://data.delijn.be/stops/202815", "https://data.delijn.be/stops/202883"], ["https://data.delijn.be/stops/301638", "https://data.delijn.be/stops/306154"], ["https://data.delijn.be/stops/407537", "https://data.delijn.be/stops/409104"], ["https://data.delijn.be/stops/503718", "https://data.delijn.be/stops/508718"], ["https://data.delijn.be/stops/202230", "https://data.delijn.be/stops/203229"], ["https://data.delijn.be/stops/308415", "https://data.delijn.be/stops/308416"], ["https://data.delijn.be/stops/206525", "https://data.delijn.be/stops/206526"], ["https://data.delijn.be/stops/106377", "https://data.delijn.be/stops/106381"], ["https://data.delijn.be/stops/503854", "https://data.delijn.be/stops/508854"], ["https://data.delijn.be/stops/200406", "https://data.delijn.be/stops/201552"], ["https://data.delijn.be/stops/503574", "https://data.delijn.be/stops/509902"], ["https://data.delijn.be/stops/206770", "https://data.delijn.be/stops/206797"], ["https://data.delijn.be/stops/305018", "https://data.delijn.be/stops/308017"], ["https://data.delijn.be/stops/204437", "https://data.delijn.be/stops/204750"], ["https://data.delijn.be/stops/106954", "https://data.delijn.be/stops/107270"], ["https://data.delijn.be/stops/503486", "https://data.delijn.be/stops/508486"], ["https://data.delijn.be/stops/104036", "https://data.delijn.be/stops/108686"], ["https://data.delijn.be/stops/405024", "https://data.delijn.be/stops/406500"], ["https://data.delijn.be/stops/302613", "https://data.delijn.be/stops/302614"], ["https://data.delijn.be/stops/200797", "https://data.delijn.be/stops/211072"], ["https://data.delijn.be/stops/209387", "https://data.delijn.be/stops/209410"], ["https://data.delijn.be/stops/305795", "https://data.delijn.be/stops/305796"], ["https://data.delijn.be/stops/108878", "https://data.delijn.be/stops/108879"], ["https://data.delijn.be/stops/400258", "https://data.delijn.be/stops/405537"], ["https://data.delijn.be/stops/204179", "https://data.delijn.be/stops/204584"], ["https://data.delijn.be/stops/201295", "https://data.delijn.be/stops/209708"], ["https://data.delijn.be/stops/206514", "https://data.delijn.be/stops/207661"], ["https://data.delijn.be/stops/410188", "https://data.delijn.be/stops/410189"], ["https://data.delijn.be/stops/201254", "https://data.delijn.be/stops/201255"], ["https://data.delijn.be/stops/203834", "https://data.delijn.be/stops/208656"], ["https://data.delijn.be/stops/206733", "https://data.delijn.be/stops/206734"], ["https://data.delijn.be/stops/301220", "https://data.delijn.be/stops/301222"], ["https://data.delijn.be/stops/201951", "https://data.delijn.be/stops/201952"], ["https://data.delijn.be/stops/504687", "https://data.delijn.be/stops/508522"], ["https://data.delijn.be/stops/201852", "https://data.delijn.be/stops/210853"], ["https://data.delijn.be/stops/407919", "https://data.delijn.be/stops/407921"], ["https://data.delijn.be/stops/202510", "https://data.delijn.be/stops/203607"], ["https://data.delijn.be/stops/404266", "https://data.delijn.be/stops/408556"], ["https://data.delijn.be/stops/208427", "https://data.delijn.be/stops/208802"], ["https://data.delijn.be/stops/200330", "https://data.delijn.be/stops/203203"], ["https://data.delijn.be/stops/505717", "https://data.delijn.be/stops/505995"], ["https://data.delijn.be/stops/103003", "https://data.delijn.be/stops/106299"], ["https://data.delijn.be/stops/102861", "https://data.delijn.be/stops/104880"], ["https://data.delijn.be/stops/201863", "https://data.delijn.be/stops/203666"], ["https://data.delijn.be/stops/106032", "https://data.delijn.be/stops/106313"], ["https://data.delijn.be/stops/105224", "https://data.delijn.be/stops/108057"], ["https://data.delijn.be/stops/508069", "https://data.delijn.be/stops/508075"], ["https://data.delijn.be/stops/206906", "https://data.delijn.be/stops/207110"], ["https://data.delijn.be/stops/208582", "https://data.delijn.be/stops/209699"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/501509"], ["https://data.delijn.be/stops/505577", "https://data.delijn.be/stops/505741"], ["https://data.delijn.be/stops/404652", "https://data.delijn.be/stops/404676"], ["https://data.delijn.be/stops/208615", "https://data.delijn.be/stops/209608"], ["https://data.delijn.be/stops/406900", "https://data.delijn.be/stops/406950"], ["https://data.delijn.be/stops/303853", "https://data.delijn.be/stops/303854"], ["https://data.delijn.be/stops/105345", "https://data.delijn.be/stops/108980"], ["https://data.delijn.be/stops/107263", "https://data.delijn.be/stops/107267"], ["https://data.delijn.be/stops/106842", "https://data.delijn.be/stops/106986"], ["https://data.delijn.be/stops/301294", "https://data.delijn.be/stops/304691"], ["https://data.delijn.be/stops/104096", "https://data.delijn.be/stops/104097"], ["https://data.delijn.be/stops/504405", "https://data.delijn.be/stops/504543"], ["https://data.delijn.be/stops/502297", "https://data.delijn.be/stops/505353"], ["https://data.delijn.be/stops/206657", "https://data.delijn.be/stops/207657"], ["https://data.delijn.be/stops/503961", "https://data.delijn.be/stops/504345"], ["https://data.delijn.be/stops/304578", "https://data.delijn.be/stops/304585"], ["https://data.delijn.be/stops/205504", "https://data.delijn.be/stops/205904"], ["https://data.delijn.be/stops/203256", "https://data.delijn.be/stops/203257"], ["https://data.delijn.be/stops/308146", "https://data.delijn.be/stops/308147"], ["https://data.delijn.be/stops/303348", "https://data.delijn.be/stops/307032"], ["https://data.delijn.be/stops/201434", "https://data.delijn.be/stops/210090"], ["https://data.delijn.be/stops/206548", "https://data.delijn.be/stops/207549"], ["https://data.delijn.be/stops/107205", "https://data.delijn.be/stops/109893"], ["https://data.delijn.be/stops/400454", "https://data.delijn.be/stops/400456"], ["https://data.delijn.be/stops/502911", "https://data.delijn.be/stops/507244"], ["https://data.delijn.be/stops/307815", "https://data.delijn.be/stops/307816"], ["https://data.delijn.be/stops/501451", "https://data.delijn.be/stops/506451"], ["https://data.delijn.be/stops/404367", "https://data.delijn.be/stops/404391"], ["https://data.delijn.be/stops/104454", "https://data.delijn.be/stops/104477"], ["https://data.delijn.be/stops/404648", "https://data.delijn.be/stops/409690"], ["https://data.delijn.be/stops/102713", "https://data.delijn.be/stops/104824"], ["https://data.delijn.be/stops/200485", "https://data.delijn.be/stops/201383"], ["https://data.delijn.be/stops/505163", "https://data.delijn.be/stops/509429"], ["https://data.delijn.be/stops/106763", "https://data.delijn.be/stops/106764"], ["https://data.delijn.be/stops/406240", "https://data.delijn.be/stops/406241"], ["https://data.delijn.be/stops/504551", "https://data.delijn.be/stops/509546"], ["https://data.delijn.be/stops/503221", "https://data.delijn.be/stops/503595"], ["https://data.delijn.be/stops/106369", "https://data.delijn.be/stops/106370"], ["https://data.delijn.be/stops/506194", "https://data.delijn.be/stops/506195"], ["https://data.delijn.be/stops/106244", "https://data.delijn.be/stops/107233"], ["https://data.delijn.be/stops/507170", "https://data.delijn.be/stops/507566"], ["https://data.delijn.be/stops/207675", "https://data.delijn.be/stops/208141"], ["https://data.delijn.be/stops/301863", "https://data.delijn.be/stops/301866"], ["https://data.delijn.be/stops/308741", "https://data.delijn.be/stops/308744"], ["https://data.delijn.be/stops/500028", "https://data.delijn.be/stops/508121"], ["https://data.delijn.be/stops/504533", "https://data.delijn.be/stops/509534"], ["https://data.delijn.be/stops/303729", "https://data.delijn.be/stops/303739"], ["https://data.delijn.be/stops/403280", "https://data.delijn.be/stops/403300"], ["https://data.delijn.be/stops/300674", "https://data.delijn.be/stops/308977"], ["https://data.delijn.be/stops/503529", "https://data.delijn.be/stops/508529"], ["https://data.delijn.be/stops/302775", "https://data.delijn.be/stops/306556"], ["https://data.delijn.be/stops/409093", "https://data.delijn.be/stops/409215"], ["https://data.delijn.be/stops/105006", "https://data.delijn.be/stops/105075"], ["https://data.delijn.be/stops/408500", "https://data.delijn.be/stops/408505"], ["https://data.delijn.be/stops/207800", "https://data.delijn.be/stops/209565"], ["https://data.delijn.be/stops/206869", "https://data.delijn.be/stops/207868"], ["https://data.delijn.be/stops/302494", "https://data.delijn.be/stops/302495"], ["https://data.delijn.be/stops/301218", "https://data.delijn.be/stops/304924"], ["https://data.delijn.be/stops/503371", "https://data.delijn.be/stops/503427"], ["https://data.delijn.be/stops/402222", "https://data.delijn.be/stops/402223"], ["https://data.delijn.be/stops/505266", "https://data.delijn.be/stops/505268"], ["https://data.delijn.be/stops/409654", "https://data.delijn.be/stops/409657"], ["https://data.delijn.be/stops/304941", "https://data.delijn.be/stops/306807"], ["https://data.delijn.be/stops/205064", "https://data.delijn.be/stops/205099"], ["https://data.delijn.be/stops/105812", "https://data.delijn.be/stops/105814"], ["https://data.delijn.be/stops/306677", "https://data.delijn.be/stops/306679"], ["https://data.delijn.be/stops/208198", "https://data.delijn.be/stops/209132"], ["https://data.delijn.be/stops/502588", "https://data.delijn.be/stops/507588"], ["https://data.delijn.be/stops/101934", "https://data.delijn.be/stops/107577"], ["https://data.delijn.be/stops/407065", "https://data.delijn.be/stops/407083"], ["https://data.delijn.be/stops/402242", "https://data.delijn.be/stops/410079"], ["https://data.delijn.be/stops/404176", "https://data.delijn.be/stops/404282"], ["https://data.delijn.be/stops/103348", "https://data.delijn.be/stops/104865"], ["https://data.delijn.be/stops/300484", "https://data.delijn.be/stops/306401"], ["https://data.delijn.be/stops/206498", "https://data.delijn.be/stops/206506"], ["https://data.delijn.be/stops/504563", "https://data.delijn.be/stops/504792"], ["https://data.delijn.be/stops/408519", "https://data.delijn.be/stops/408764"], ["https://data.delijn.be/stops/403943", "https://data.delijn.be/stops/404027"], ["https://data.delijn.be/stops/504882", "https://data.delijn.be/stops/505325"], ["https://data.delijn.be/stops/303980", "https://data.delijn.be/stops/307234"], ["https://data.delijn.be/stops/201237", "https://data.delijn.be/stops/211129"], ["https://data.delijn.be/stops/308944", "https://data.delijn.be/stops/308945"], ["https://data.delijn.be/stops/400313", "https://data.delijn.be/stops/405133"], ["https://data.delijn.be/stops/502029", "https://data.delijn.be/stops/507046"], ["https://data.delijn.be/stops/408097", "https://data.delijn.be/stops/408103"], ["https://data.delijn.be/stops/207942", "https://data.delijn.be/stops/208101"], ["https://data.delijn.be/stops/302931", "https://data.delijn.be/stops/307467"], ["https://data.delijn.be/stops/205394", "https://data.delijn.be/stops/205395"], ["https://data.delijn.be/stops/502520", "https://data.delijn.be/stops/502521"], ["https://data.delijn.be/stops/300029", "https://data.delijn.be/stops/306835"], ["https://data.delijn.be/stops/305139", "https://data.delijn.be/stops/308093"], ["https://data.delijn.be/stops/405229", "https://data.delijn.be/stops/405233"], ["https://data.delijn.be/stops/402109", "https://data.delijn.be/stops/410335"], ["https://data.delijn.be/stops/407690", "https://data.delijn.be/stops/409879"], ["https://data.delijn.be/stops/205394", "https://data.delijn.be/stops/205763"], ["https://data.delijn.be/stops/103239", "https://data.delijn.be/stops/105022"], ["https://data.delijn.be/stops/203026", "https://data.delijn.be/stops/211039"], ["https://data.delijn.be/stops/105034", "https://data.delijn.be/stops/105037"], ["https://data.delijn.be/stops/405711", "https://data.delijn.be/stops/407214"], ["https://data.delijn.be/stops/302799", "https://data.delijn.be/stops/302807"], ["https://data.delijn.be/stops/202219", "https://data.delijn.be/stops/205078"], ["https://data.delijn.be/stops/503399", "https://data.delijn.be/stops/508426"], ["https://data.delijn.be/stops/302015", "https://data.delijn.be/stops/307818"], ["https://data.delijn.be/stops/101984", "https://data.delijn.be/stops/109277"], ["https://data.delijn.be/stops/300396", "https://data.delijn.be/stops/300408"], ["https://data.delijn.be/stops/101422", "https://data.delijn.be/stops/101424"], ["https://data.delijn.be/stops/109014", "https://data.delijn.be/stops/109017"], ["https://data.delijn.be/stops/201371", "https://data.delijn.be/stops/201446"], ["https://data.delijn.be/stops/209154", "https://data.delijn.be/stops/209241"], ["https://data.delijn.be/stops/106144", "https://data.delijn.be/stops/106440"], ["https://data.delijn.be/stops/200453", "https://data.delijn.be/stops/201353"], ["https://data.delijn.be/stops/509520", "https://data.delijn.be/stops/509524"], ["https://data.delijn.be/stops/301154", "https://data.delijn.be/stops/307714"], ["https://data.delijn.be/stops/200413", "https://data.delijn.be/stops/203360"], ["https://data.delijn.be/stops/501100", "https://data.delijn.be/stops/506090"], ["https://data.delijn.be/stops/403662", "https://data.delijn.be/stops/406854"], ["https://data.delijn.be/stops/104469", "https://data.delijn.be/stops/104472"], ["https://data.delijn.be/stops/102418", "https://data.delijn.be/stops/105584"], ["https://data.delijn.be/stops/209724", "https://data.delijn.be/stops/210065"], ["https://data.delijn.be/stops/200604", "https://data.delijn.be/stops/202859"], ["https://data.delijn.be/stops/204233", "https://data.delijn.be/stops/205232"], ["https://data.delijn.be/stops/504600", "https://data.delijn.be/stops/504602"], ["https://data.delijn.be/stops/300560", "https://data.delijn.be/stops/300562"], ["https://data.delijn.be/stops/201570", "https://data.delijn.be/stops/204804"], ["https://data.delijn.be/stops/304810", "https://data.delijn.be/stops/306688"], ["https://data.delijn.be/stops/408963", "https://data.delijn.be/stops/408968"], ["https://data.delijn.be/stops/204122", "https://data.delijn.be/stops/205126"], ["https://data.delijn.be/stops/405456", "https://data.delijn.be/stops/405460"], ["https://data.delijn.be/stops/403766", "https://data.delijn.be/stops/403767"], ["https://data.delijn.be/stops/200386", "https://data.delijn.be/stops/201317"], ["https://data.delijn.be/stops/405058", "https://data.delijn.be/stops/405062"], ["https://data.delijn.be/stops/405228", "https://data.delijn.be/stops/405229"], ["https://data.delijn.be/stops/406195", "https://data.delijn.be/stops/406221"], ["https://data.delijn.be/stops/105089", "https://data.delijn.be/stops/105092"], ["https://data.delijn.be/stops/300705", "https://data.delijn.be/stops/303475"], ["https://data.delijn.be/stops/203403", "https://data.delijn.be/stops/211117"], ["https://data.delijn.be/stops/204776", "https://data.delijn.be/stops/204777"], ["https://data.delijn.be/stops/102231", "https://data.delijn.be/stops/105523"], ["https://data.delijn.be/stops/200823", "https://data.delijn.be/stops/209656"], ["https://data.delijn.be/stops/501697", "https://data.delijn.be/stops/502344"], ["https://data.delijn.be/stops/206809", "https://data.delijn.be/stops/207854"], ["https://data.delijn.be/stops/206483", "https://data.delijn.be/stops/207823"], ["https://data.delijn.be/stops/203079", "https://data.delijn.be/stops/203509"], ["https://data.delijn.be/stops/107226", "https://data.delijn.be/stops/107227"], ["https://data.delijn.be/stops/308452", "https://data.delijn.be/stops/308453"], ["https://data.delijn.be/stops/206223", "https://data.delijn.be/stops/207223"], ["https://data.delijn.be/stops/405061", "https://data.delijn.be/stops/405859"], ["https://data.delijn.be/stops/409072", "https://data.delijn.be/stops/409073"], ["https://data.delijn.be/stops/501217", "https://data.delijn.be/stops/506217"], ["https://data.delijn.be/stops/105971", "https://data.delijn.be/stops/205636"], ["https://data.delijn.be/stops/107159", "https://data.delijn.be/stops/107162"], ["https://data.delijn.be/stops/202433", "https://data.delijn.be/stops/202435"], ["https://data.delijn.be/stops/403621", "https://data.delijn.be/stops/403652"], ["https://data.delijn.be/stops/201676", "https://data.delijn.be/stops/203401"], ["https://data.delijn.be/stops/200117", "https://data.delijn.be/stops/201117"], ["https://data.delijn.be/stops/106281", "https://data.delijn.be/stops/106282"], ["https://data.delijn.be/stops/504721", "https://data.delijn.be/stops/509349"], ["https://data.delijn.be/stops/105903", "https://data.delijn.be/stops/105904"], ["https://data.delijn.be/stops/503682", "https://data.delijn.be/stops/503686"], ["https://data.delijn.be/stops/200738", "https://data.delijn.be/stops/203598"], ["https://data.delijn.be/stops/303451", "https://data.delijn.be/stops/307061"], ["https://data.delijn.be/stops/503207", "https://data.delijn.be/stops/504238"], ["https://data.delijn.be/stops/401359", "https://data.delijn.be/stops/401373"], ["https://data.delijn.be/stops/200606", "https://data.delijn.be/stops/201633"], ["https://data.delijn.be/stops/501764", "https://data.delijn.be/stops/508824"], ["https://data.delijn.be/stops/104954", "https://data.delijn.be/stops/109720"], ["https://data.delijn.be/stops/101675", "https://data.delijn.be/stops/101680"], ["https://data.delijn.be/stops/501032", "https://data.delijn.be/stops/506032"], ["https://data.delijn.be/stops/408878", "https://data.delijn.be/stops/408906"], ["https://data.delijn.be/stops/201799", "https://data.delijn.be/stops/202642"], ["https://data.delijn.be/stops/410175", "https://data.delijn.be/stops/410176"], ["https://data.delijn.be/stops/308217", "https://data.delijn.be/stops/308245"], ["https://data.delijn.be/stops/303149", "https://data.delijn.be/stops/307928"], ["https://data.delijn.be/stops/101770", "https://data.delijn.be/stops/104335"], ["https://data.delijn.be/stops/105372", "https://data.delijn.be/stops/107504"], ["https://data.delijn.be/stops/304168", "https://data.delijn.be/stops/307540"], ["https://data.delijn.be/stops/204076", "https://data.delijn.be/stops/205066"], ["https://data.delijn.be/stops/302428", "https://data.delijn.be/stops/302441"], ["https://data.delijn.be/stops/206577", "https://data.delijn.be/stops/207577"], ["https://data.delijn.be/stops/502523", "https://data.delijn.be/stops/507808"], ["https://data.delijn.be/stops/208407", "https://data.delijn.be/stops/209407"], ["https://data.delijn.be/stops/208110", "https://data.delijn.be/stops/209110"], ["https://data.delijn.be/stops/402698", "https://data.delijn.be/stops/402873"], ["https://data.delijn.be/stops/102698", "https://data.delijn.be/stops/105625"], ["https://data.delijn.be/stops/204162", "https://data.delijn.be/stops/204163"], ["https://data.delijn.be/stops/202214", "https://data.delijn.be/stops/202215"], ["https://data.delijn.be/stops/506027", "https://data.delijn.be/stops/506448"], ["https://data.delijn.be/stops/206267", "https://data.delijn.be/stops/207069"], ["https://data.delijn.be/stops/202887", "https://data.delijn.be/stops/203887"], ["https://data.delijn.be/stops/300422", "https://data.delijn.be/stops/300440"], ["https://data.delijn.be/stops/508375", "https://data.delijn.be/stops/509767"], ["https://data.delijn.be/stops/103076", "https://data.delijn.be/stops/105026"], ["https://data.delijn.be/stops/301047", "https://data.delijn.be/stops/301051"], ["https://data.delijn.be/stops/407845", "https://data.delijn.be/stops/407891"], ["https://data.delijn.be/stops/407980", "https://data.delijn.be/stops/407981"], ["https://data.delijn.be/stops/302132", "https://data.delijn.be/stops/307081"], ["https://data.delijn.be/stops/307728", "https://data.delijn.be/stops/307735"], ["https://data.delijn.be/stops/106277", "https://data.delijn.be/stops/106279"], ["https://data.delijn.be/stops/404489", "https://data.delijn.be/stops/404510"], ["https://data.delijn.be/stops/206971", "https://data.delijn.be/stops/206973"], ["https://data.delijn.be/stops/206064", "https://data.delijn.be/stops/206521"], ["https://data.delijn.be/stops/200504", "https://data.delijn.be/stops/201411"], ["https://data.delijn.be/stops/504877", "https://data.delijn.be/stops/507487"], ["https://data.delijn.be/stops/302182", "https://data.delijn.be/stops/302440"], ["https://data.delijn.be/stops/407281", "https://data.delijn.be/stops/407310"], ["https://data.delijn.be/stops/306100", "https://data.delijn.be/stops/308718"], ["https://data.delijn.be/stops/403790", "https://data.delijn.be/stops/403825"], ["https://data.delijn.be/stops/302313", "https://data.delijn.be/stops/304795"], ["https://data.delijn.be/stops/409292", "https://data.delijn.be/stops/409293"], ["https://data.delijn.be/stops/200826", "https://data.delijn.be/stops/200832"], ["https://data.delijn.be/stops/209500", "https://data.delijn.be/stops/209670"], ["https://data.delijn.be/stops/301487", "https://data.delijn.be/stops/308075"], ["https://data.delijn.be/stops/205743", "https://data.delijn.be/stops/205744"], ["https://data.delijn.be/stops/502024", "https://data.delijn.be/stops/502795"], ["https://data.delijn.be/stops/204174", "https://data.delijn.be/stops/204763"], ["https://data.delijn.be/stops/302406", "https://data.delijn.be/stops/302407"], ["https://data.delijn.be/stops/200539", "https://data.delijn.be/stops/200540"], ["https://data.delijn.be/stops/107838", "https://data.delijn.be/stops/205142"], ["https://data.delijn.be/stops/403942", "https://data.delijn.be/stops/403951"], ["https://data.delijn.be/stops/205482", "https://data.delijn.be/stops/205523"], ["https://data.delijn.be/stops/405401", "https://data.delijn.be/stops/405403"], ["https://data.delijn.be/stops/102206", "https://data.delijn.be/stops/105813"], ["https://data.delijn.be/stops/101090", "https://data.delijn.be/stops/101920"], ["https://data.delijn.be/stops/304545", "https://data.delijn.be/stops/304606"], ["https://data.delijn.be/stops/203065", "https://data.delijn.be/stops/203725"], ["https://data.delijn.be/stops/407223", "https://data.delijn.be/stops/407571"], ["https://data.delijn.be/stops/106961", "https://data.delijn.be/stops/109508"], ["https://data.delijn.be/stops/507126", "https://data.delijn.be/stops/507135"], ["https://data.delijn.be/stops/406032", "https://data.delijn.be/stops/406085"], ["https://data.delijn.be/stops/302666", "https://data.delijn.be/stops/302685"], ["https://data.delijn.be/stops/302745", "https://data.delijn.be/stops/302752"], ["https://data.delijn.be/stops/307625", "https://data.delijn.be/stops/308252"], ["https://data.delijn.be/stops/401097", "https://data.delijn.be/stops/401153"], ["https://data.delijn.be/stops/501118", "https://data.delijn.be/stops/501209"], ["https://data.delijn.be/stops/301902", "https://data.delijn.be/stops/306251"], ["https://data.delijn.be/stops/202636", "https://data.delijn.be/stops/205070"], ["https://data.delijn.be/stops/503531", "https://data.delijn.be/stops/504764"], ["https://data.delijn.be/stops/108746", "https://data.delijn.be/stops/108748"], ["https://data.delijn.be/stops/506227", "https://data.delijn.be/stops/506230"], ["https://data.delijn.be/stops/405060", "https://data.delijn.be/stops/405859"], ["https://data.delijn.be/stops/400161", "https://data.delijn.be/stops/410322"], ["https://data.delijn.be/stops/403230", "https://data.delijn.be/stops/410279"], ["https://data.delijn.be/stops/203488", "https://data.delijn.be/stops/203930"], ["https://data.delijn.be/stops/400686", "https://data.delijn.be/stops/404614"], ["https://data.delijn.be/stops/505185", "https://data.delijn.be/stops/509557"], ["https://data.delijn.be/stops/101000", "https://data.delijn.be/stops/103745"], ["https://data.delijn.be/stops/201864", "https://data.delijn.be/stops/202082"], ["https://data.delijn.be/stops/507474", "https://data.delijn.be/stops/507477"], ["https://data.delijn.be/stops/204744", "https://data.delijn.be/stops/205743"], ["https://data.delijn.be/stops/401773", "https://data.delijn.be/stops/406337"], ["https://data.delijn.be/stops/208329", "https://data.delijn.be/stops/208715"], ["https://data.delijn.be/stops/108826", "https://data.delijn.be/stops/108829"], ["https://data.delijn.be/stops/200831", "https://data.delijn.be/stops/505062"], ["https://data.delijn.be/stops/404410", "https://data.delijn.be/stops/404425"], ["https://data.delijn.be/stops/105483", "https://data.delijn.be/stops/105484"], ["https://data.delijn.be/stops/303002", "https://data.delijn.be/stops/307096"], ["https://data.delijn.be/stops/502215", "https://data.delijn.be/stops/502496"], ["https://data.delijn.be/stops/503003", "https://data.delijn.be/stops/505081"], ["https://data.delijn.be/stops/205240", "https://data.delijn.be/stops/205345"], ["https://data.delijn.be/stops/200387", "https://data.delijn.be/stops/209706"], ["https://data.delijn.be/stops/410090", "https://data.delijn.be/stops/410091"], ["https://data.delijn.be/stops/301698", "https://data.delijn.be/stops/301719"], ["https://data.delijn.be/stops/303368", "https://data.delijn.be/stops/303374"], ["https://data.delijn.be/stops/404150", "https://data.delijn.be/stops/404230"], ["https://data.delijn.be/stops/302008", "https://data.delijn.be/stops/304631"], ["https://data.delijn.be/stops/102081", "https://data.delijn.be/stops/105406"], ["https://data.delijn.be/stops/101971", "https://data.delijn.be/stops/105525"], ["https://data.delijn.be/stops/102074", "https://data.delijn.be/stops/108851"], ["https://data.delijn.be/stops/503805", "https://data.delijn.be/stops/508805"], ["https://data.delijn.be/stops/101782", "https://data.delijn.be/stops/107490"], ["https://data.delijn.be/stops/404682", "https://data.delijn.be/stops/404683"], ["https://data.delijn.be/stops/501087", "https://data.delijn.be/stops/506087"], ["https://data.delijn.be/stops/102818", "https://data.delijn.be/stops/105260"], ["https://data.delijn.be/stops/206845", "https://data.delijn.be/stops/306678"], ["https://data.delijn.be/stops/203896", "https://data.delijn.be/stops/203897"], ["https://data.delijn.be/stops/200804", "https://data.delijn.be/stops/200813"], ["https://data.delijn.be/stops/201762", "https://data.delijn.be/stops/209271"], ["https://data.delijn.be/stops/401187", "https://data.delijn.be/stops/401327"], ["https://data.delijn.be/stops/103981", "https://data.delijn.be/stops/105733"], ["https://data.delijn.be/stops/107595", "https://data.delijn.be/stops/107600"], ["https://data.delijn.be/stops/301104", "https://data.delijn.be/stops/302864"], ["https://data.delijn.be/stops/303783", "https://data.delijn.be/stops/303802"], ["https://data.delijn.be/stops/505187", "https://data.delijn.be/stops/505289"], ["https://data.delijn.be/stops/502609", "https://data.delijn.be/stops/507609"], ["https://data.delijn.be/stops/503313", "https://data.delijn.be/stops/508433"], ["https://data.delijn.be/stops/302055", "https://data.delijn.be/stops/308959"], ["https://data.delijn.be/stops/202698", "https://data.delijn.be/stops/203705"], ["https://data.delijn.be/stops/303441", "https://data.delijn.be/stops/307066"], ["https://data.delijn.be/stops/301273", "https://data.delijn.be/stops/301275"], ["https://data.delijn.be/stops/400754", "https://data.delijn.be/stops/400849"], ["https://data.delijn.be/stops/305140", "https://data.delijn.be/stops/305142"], ["https://data.delijn.be/stops/306929", "https://data.delijn.be/stops/306932"], ["https://data.delijn.be/stops/204057", "https://data.delijn.be/stops/205056"], ["https://data.delijn.be/stops/201852", "https://data.delijn.be/stops/208888"], ["https://data.delijn.be/stops/502537", "https://data.delijn.be/stops/507537"], ["https://data.delijn.be/stops/205377", "https://data.delijn.be/stops/205420"], ["https://data.delijn.be/stops/208283", "https://data.delijn.be/stops/209283"], ["https://data.delijn.be/stops/407642", "https://data.delijn.be/stops/407643"], ["https://data.delijn.be/stops/406511", "https://data.delijn.be/stops/406515"], ["https://data.delijn.be/stops/104394", "https://data.delijn.be/stops/104396"], ["https://data.delijn.be/stops/305537", "https://data.delijn.be/stops/305582"], ["https://data.delijn.be/stops/202723", "https://data.delijn.be/stops/203724"], ["https://data.delijn.be/stops/104132", "https://data.delijn.be/stops/108041"], ["https://data.delijn.be/stops/502390", "https://data.delijn.be/stops/502405"], ["https://data.delijn.be/stops/208309", "https://data.delijn.be/stops/503864"], ["https://data.delijn.be/stops/501147", "https://data.delijn.be/stops/501599"], ["https://data.delijn.be/stops/408066", "https://data.delijn.be/stops/408068"], ["https://data.delijn.be/stops/201952", "https://data.delijn.be/stops/203467"], ["https://data.delijn.be/stops/403275", "https://data.delijn.be/stops/403437"], ["https://data.delijn.be/stops/301564", "https://data.delijn.be/stops/301565"], ["https://data.delijn.be/stops/503447", "https://data.delijn.be/stops/503449"], ["https://data.delijn.be/stops/504995", "https://data.delijn.be/stops/508845"], ["https://data.delijn.be/stops/405851", "https://data.delijn.be/stops/409731"], ["https://data.delijn.be/stops/305590", "https://data.delijn.be/stops/305955"], ["https://data.delijn.be/stops/206923", "https://data.delijn.be/stops/207922"], ["https://data.delijn.be/stops/400081", "https://data.delijn.be/stops/403549"], ["https://data.delijn.be/stops/508854", "https://data.delijn.be/stops/508859"], ["https://data.delijn.be/stops/208089", "https://data.delijn.be/stops/209304"], ["https://data.delijn.be/stops/407009", "https://data.delijn.be/stops/407054"], ["https://data.delijn.be/stops/304252", "https://data.delijn.be/stops/304295"], ["https://data.delijn.be/stops/502034", "https://data.delijn.be/stops/507037"], ["https://data.delijn.be/stops/208748", "https://data.delijn.be/stops/209414"], ["https://data.delijn.be/stops/204551", "https://data.delijn.be/stops/205291"], ["https://data.delijn.be/stops/503774", "https://data.delijn.be/stops/508774"], ["https://data.delijn.be/stops/408968", "https://data.delijn.be/stops/408982"], ["https://data.delijn.be/stops/409074", "https://data.delijn.be/stops/409215"], ["https://data.delijn.be/stops/202640", "https://data.delijn.be/stops/203167"], ["https://data.delijn.be/stops/101582", "https://data.delijn.be/stops/105451"], ["https://data.delijn.be/stops/302262", "https://data.delijn.be/stops/302266"], ["https://data.delijn.be/stops/101494", "https://data.delijn.be/stops/109374"], ["https://data.delijn.be/stops/410191", "https://data.delijn.be/stops/410192"], ["https://data.delijn.be/stops/502304", "https://data.delijn.be/stops/507306"], ["https://data.delijn.be/stops/400105", "https://data.delijn.be/stops/401970"], ["https://data.delijn.be/stops/504641", "https://data.delijn.be/stops/504645"], ["https://data.delijn.be/stops/508001", "https://data.delijn.be/stops/508002"], ["https://data.delijn.be/stops/400321", "https://data.delijn.be/stops/400324"], ["https://data.delijn.be/stops/302745", "https://data.delijn.be/stops/303220"], ["https://data.delijn.be/stops/302034", "https://data.delijn.be/stops/302052"], ["https://data.delijn.be/stops/108928", "https://data.delijn.be/stops/108931"], ["https://data.delijn.be/stops/208792", "https://data.delijn.be/stops/209787"], ["https://data.delijn.be/stops/301500", "https://data.delijn.be/stops/305654"], ["https://data.delijn.be/stops/400602", "https://data.delijn.be/stops/308155"], ["https://data.delijn.be/stops/300659", "https://data.delijn.be/stops/300660"], ["https://data.delijn.be/stops/502206", "https://data.delijn.be/stops/507206"], ["https://data.delijn.be/stops/302635", "https://data.delijn.be/stops/302636"], ["https://data.delijn.be/stops/402704", "https://data.delijn.be/stops/405997"], ["https://data.delijn.be/stops/102389", "https://data.delijn.be/stops/107079"], ["https://data.delijn.be/stops/505199", "https://data.delijn.be/stops/505906"], ["https://data.delijn.be/stops/404850", "https://data.delijn.be/stops/404851"], ["https://data.delijn.be/stops/207799", "https://data.delijn.be/stops/209180"], ["https://data.delijn.be/stops/201711", "https://data.delijn.be/stops/201713"], ["https://data.delijn.be/stops/206424", "https://data.delijn.be/stops/206965"], ["https://data.delijn.be/stops/304381", "https://data.delijn.be/stops/304382"], ["https://data.delijn.be/stops/402132", "https://data.delijn.be/stops/402137"], ["https://data.delijn.be/stops/502382", "https://data.delijn.be/stops/507384"], ["https://data.delijn.be/stops/408390", "https://data.delijn.be/stops/308209"], ["https://data.delijn.be/stops/207187", "https://data.delijn.be/stops/207955"], ["https://data.delijn.be/stops/109082", "https://data.delijn.be/stops/109083"], ["https://data.delijn.be/stops/207751", "https://data.delijn.be/stops/207752"], ["https://data.delijn.be/stops/207566", "https://data.delijn.be/stops/207835"], ["https://data.delijn.be/stops/205069", "https://data.delijn.be/stops/214016"], ["https://data.delijn.be/stops/505704", "https://data.delijn.be/stops/507575"], ["https://data.delijn.be/stops/202328", "https://data.delijn.be/stops/202432"], ["https://data.delijn.be/stops/305571", "https://data.delijn.be/stops/305572"], ["https://data.delijn.be/stops/202117", "https://data.delijn.be/stops/203117"], ["https://data.delijn.be/stops/301196", "https://data.delijn.be/stops/305174"], ["https://data.delijn.be/stops/401420", "https://data.delijn.be/stops/401434"], ["https://data.delijn.be/stops/402579", "https://data.delijn.be/stops/402595"], ["https://data.delijn.be/stops/300002", "https://data.delijn.be/stops/302520"], ["https://data.delijn.be/stops/303330", "https://data.delijn.be/stops/303331"], ["https://data.delijn.be/stops/401448", "https://data.delijn.be/stops/404927"], ["https://data.delijn.be/stops/206725", "https://data.delijn.be/stops/206986"], ["https://data.delijn.be/stops/504349", "https://data.delijn.be/stops/509592"], ["https://data.delijn.be/stops/300708", "https://data.delijn.be/stops/308066"], ["https://data.delijn.be/stops/301964", "https://data.delijn.be/stops/301980"], ["https://data.delijn.be/stops/204291", "https://data.delijn.be/stops/205292"], ["https://data.delijn.be/stops/402207", "https://data.delijn.be/stops/402501"], ["https://data.delijn.be/stops/203277", "https://data.delijn.be/stops/203278"], ["https://data.delijn.be/stops/508672", "https://data.delijn.be/stops/509842"], ["https://data.delijn.be/stops/507820", "https://data.delijn.be/stops/508084"], ["https://data.delijn.be/stops/108469", "https://data.delijn.be/stops/306599"], ["https://data.delijn.be/stops/107161", "https://data.delijn.be/stops/107163"], ["https://data.delijn.be/stops/407662", "https://data.delijn.be/stops/408549"], ["https://data.delijn.be/stops/308610", "https://data.delijn.be/stops/308618"], ["https://data.delijn.be/stops/203037", "https://data.delijn.be/stops/203983"], ["https://data.delijn.be/stops/403913", "https://data.delijn.be/stops/403985"], ["https://data.delijn.be/stops/201924", "https://data.delijn.be/stops/207949"], ["https://data.delijn.be/stops/106970", "https://data.delijn.be/stops/109506"], ["https://data.delijn.be/stops/404833", "https://data.delijn.be/stops/406132"], ["https://data.delijn.be/stops/308770", "https://data.delijn.be/stops/308778"], ["https://data.delijn.be/stops/101343", "https://data.delijn.be/stops/108098"], ["https://data.delijn.be/stops/209350", "https://data.delijn.be/stops/209351"], ["https://data.delijn.be/stops/401449", "https://data.delijn.be/stops/401893"], ["https://data.delijn.be/stops/206674", "https://data.delijn.be/stops/208165"], ["https://data.delijn.be/stops/405700", "https://data.delijn.be/stops/410139"], ["https://data.delijn.be/stops/500925", "https://data.delijn.be/stops/590010"], ["https://data.delijn.be/stops/206136", "https://data.delijn.be/stops/207137"], ["https://data.delijn.be/stops/400979", "https://data.delijn.be/stops/409625"], ["https://data.delijn.be/stops/109460", "https://data.delijn.be/stops/109793"], ["https://data.delijn.be/stops/302806", "https://data.delijn.be/stops/302808"], ["https://data.delijn.be/stops/202146", "https://data.delijn.be/stops/203146"], ["https://data.delijn.be/stops/408629", "https://data.delijn.be/stops/408771"], ["https://data.delijn.be/stops/404493", "https://data.delijn.be/stops/404511"], ["https://data.delijn.be/stops/102578", "https://data.delijn.be/stops/109739"], ["https://data.delijn.be/stops/503624", "https://data.delijn.be/stops/508624"], ["https://data.delijn.be/stops/209485", "https://data.delijn.be/stops/209489"], ["https://data.delijn.be/stops/406006", "https://data.delijn.be/stops/406815"], ["https://data.delijn.be/stops/300137", "https://data.delijn.be/stops/306805"], ["https://data.delijn.be/stops/204273", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/500018", "https://data.delijn.be/stops/507444"], ["https://data.delijn.be/stops/101501", "https://data.delijn.be/stops/104891"], ["https://data.delijn.be/stops/509764", "https://data.delijn.be/stops/509765"], ["https://data.delijn.be/stops/101546", "https://data.delijn.be/stops/107802"], ["https://data.delijn.be/stops/302352", "https://data.delijn.be/stops/302353"], ["https://data.delijn.be/stops/408340", "https://data.delijn.be/stops/410158"], ["https://data.delijn.be/stops/300437", "https://data.delijn.be/stops/300439"], ["https://data.delijn.be/stops/209193", "https://data.delijn.be/stops/209499"], ["https://data.delijn.be/stops/302231", "https://data.delijn.be/stops/302248"], ["https://data.delijn.be/stops/503544", "https://data.delijn.be/stops/503560"], ["https://data.delijn.be/stops/307411", "https://data.delijn.be/stops/307414"], ["https://data.delijn.be/stops/501596", "https://data.delijn.be/stops/504636"], ["https://data.delijn.be/stops/502217", "https://data.delijn.be/stops/507217"], ["https://data.delijn.be/stops/201090", "https://data.delijn.be/stops/202888"], ["https://data.delijn.be/stops/306649", "https://data.delijn.be/stops/306651"], ["https://data.delijn.be/stops/402692", "https://data.delijn.be/stops/402698"], ["https://data.delijn.be/stops/504087", "https://data.delijn.be/stops/505927"], ["https://data.delijn.be/stops/204162", "https://data.delijn.be/stops/207400"], ["https://data.delijn.be/stops/505338", "https://data.delijn.be/stops/507328"], ["https://data.delijn.be/stops/305947", "https://data.delijn.be/stops/308418"], ["https://data.delijn.be/stops/204377", "https://data.delijn.be/stops/205376"], ["https://data.delijn.be/stops/103228", "https://data.delijn.be/stops/103232"], ["https://data.delijn.be/stops/202856", "https://data.delijn.be/stops/202922"], ["https://data.delijn.be/stops/402547", "https://data.delijn.be/stops/402577"], ["https://data.delijn.be/stops/105588", "https://data.delijn.be/stops/105661"], ["https://data.delijn.be/stops/304412", "https://data.delijn.be/stops/304415"], ["https://data.delijn.be/stops/202669", "https://data.delijn.be/stops/203669"], ["https://data.delijn.be/stops/504017", "https://data.delijn.be/stops/509017"], ["https://data.delijn.be/stops/507716", "https://data.delijn.be/stops/507814"], ["https://data.delijn.be/stops/408317", "https://data.delijn.be/stops/408399"], ["https://data.delijn.be/stops/205260", "https://data.delijn.be/stops/205286"], ["https://data.delijn.be/stops/402703", "https://data.delijn.be/stops/405940"], ["https://data.delijn.be/stops/202493", "https://data.delijn.be/stops/203494"], ["https://data.delijn.be/stops/502332", "https://data.delijn.be/stops/502337"], ["https://data.delijn.be/stops/200318", "https://data.delijn.be/stops/203191"], ["https://data.delijn.be/stops/101641", "https://data.delijn.be/stops/109274"], ["https://data.delijn.be/stops/108182", "https://data.delijn.be/stops/108184"], ["https://data.delijn.be/stops/206205", "https://data.delijn.be/stops/207205"], ["https://data.delijn.be/stops/303634", "https://data.delijn.be/stops/307465"], ["https://data.delijn.be/stops/202161", "https://data.delijn.be/stops/202634"], ["https://data.delijn.be/stops/107014", "https://data.delijn.be/stops/107016"], ["https://data.delijn.be/stops/405022", "https://data.delijn.be/stops/405070"], ["https://data.delijn.be/stops/403745", "https://data.delijn.be/stops/403772"], ["https://data.delijn.be/stops/502807", "https://data.delijn.be/stops/507513"], ["https://data.delijn.be/stops/301170", "https://data.delijn.be/stops/303208"], ["https://data.delijn.be/stops/202783", "https://data.delijn.be/stops/211103"], ["https://data.delijn.be/stops/106778", "https://data.delijn.be/stops/106780"], ["https://data.delijn.be/stops/104636", "https://data.delijn.be/stops/109604"], ["https://data.delijn.be/stops/503017", "https://data.delijn.be/stops/508017"], ["https://data.delijn.be/stops/400112", "https://data.delijn.be/stops/409153"], ["https://data.delijn.be/stops/103378", "https://data.delijn.be/stops/104655"], ["https://data.delijn.be/stops/409707", "https://data.delijn.be/stops/409722"], ["https://data.delijn.be/stops/308223", "https://data.delijn.be/stops/308292"], ["https://data.delijn.be/stops/305818", "https://data.delijn.be/stops/305819"], ["https://data.delijn.be/stops/200828", "https://data.delijn.be/stops/502071"], ["https://data.delijn.be/stops/108862", "https://data.delijn.be/stops/108863"], ["https://data.delijn.be/stops/300574", "https://data.delijn.be/stops/300575"], ["https://data.delijn.be/stops/106599", "https://data.delijn.be/stops/106603"], ["https://data.delijn.be/stops/505910", "https://data.delijn.be/stops/508151"], ["https://data.delijn.be/stops/401899", "https://data.delijn.be/stops/407875"], ["https://data.delijn.be/stops/300516", "https://data.delijn.be/stops/307829"], ["https://data.delijn.be/stops/407962", "https://data.delijn.be/stops/407963"], ["https://data.delijn.be/stops/409748", "https://data.delijn.be/stops/409749"], ["https://data.delijn.be/stops/402639", "https://data.delijn.be/stops/404143"], ["https://data.delijn.be/stops/504730", "https://data.delijn.be/stops/505307"], ["https://data.delijn.be/stops/401327", "https://data.delijn.be/stops/401363"], ["https://data.delijn.be/stops/102393", "https://data.delijn.be/stops/107016"], ["https://data.delijn.be/stops/404103", "https://data.delijn.be/stops/404112"], ["https://data.delijn.be/stops/102687", "https://data.delijn.be/stops/104645"], ["https://data.delijn.be/stops/206985", "https://data.delijn.be/stops/207985"], ["https://data.delijn.be/stops/106458", "https://data.delijn.be/stops/106461"], ["https://data.delijn.be/stops/405929", "https://data.delijn.be/stops/405977"], ["https://data.delijn.be/stops/202371", "https://data.delijn.be/stops/203372"], ["https://data.delijn.be/stops/102606", "https://data.delijn.be/stops/105531"], ["https://data.delijn.be/stops/503503", "https://data.delijn.be/stops/503867"], ["https://data.delijn.be/stops/107289", "https://data.delijn.be/stops/107293"], ["https://data.delijn.be/stops/103272", "https://data.delijn.be/stops/107200"], ["https://data.delijn.be/stops/104489", "https://data.delijn.be/stops/307898"], ["https://data.delijn.be/stops/200773", "https://data.delijn.be/stops/509817"], ["https://data.delijn.be/stops/108689", "https://data.delijn.be/stops/108691"], ["https://data.delijn.be/stops/209226", "https://data.delijn.be/stops/209227"], ["https://data.delijn.be/stops/303358", "https://data.delijn.be/stops/303395"], ["https://data.delijn.be/stops/403829", "https://data.delijn.be/stops/405122"], ["https://data.delijn.be/stops/505802", "https://data.delijn.be/stops/507474"], ["https://data.delijn.be/stops/206693", "https://data.delijn.be/stops/206694"], ["https://data.delijn.be/stops/206004", "https://data.delijn.be/stops/207079"], ["https://data.delijn.be/stops/207393", "https://data.delijn.be/stops/207394"], ["https://data.delijn.be/stops/205419", "https://data.delijn.be/stops/205467"], ["https://data.delijn.be/stops/302221", "https://data.delijn.be/stops/302249"], ["https://data.delijn.be/stops/102800", "https://data.delijn.be/stops/103040"], ["https://data.delijn.be/stops/103482", "https://data.delijn.be/stops/109161"], ["https://data.delijn.be/stops/503593", "https://data.delijn.be/stops/508596"], ["https://data.delijn.be/stops/305056", "https://data.delijn.be/stops/306931"], ["https://data.delijn.be/stops/508416", "https://data.delijn.be/stops/508434"], ["https://data.delijn.be/stops/203864", "https://data.delijn.be/stops/203879"], ["https://data.delijn.be/stops/106053", "https://data.delijn.be/stops/109937"], ["https://data.delijn.be/stops/503732", "https://data.delijn.be/stops/508741"], ["https://data.delijn.be/stops/203001", "https://data.delijn.be/stops/203491"], ["https://data.delijn.be/stops/209224", "https://data.delijn.be/stops/209774"], ["https://data.delijn.be/stops/300505", "https://data.delijn.be/stops/302867"], ["https://data.delijn.be/stops/407922", "https://data.delijn.be/stops/407972"], ["https://data.delijn.be/stops/300103", "https://data.delijn.be/stops/306845"], ["https://data.delijn.be/stops/206045", "https://data.delijn.be/stops/206920"], ["https://data.delijn.be/stops/308476", "https://data.delijn.be/stops/308484"], ["https://data.delijn.be/stops/200390", "https://data.delijn.be/stops/209955"], ["https://data.delijn.be/stops/102869", "https://data.delijn.be/stops/105485"], ["https://data.delijn.be/stops/507024", "https://data.delijn.be/stops/507927"], ["https://data.delijn.be/stops/402781", "https://data.delijn.be/stops/402799"], ["https://data.delijn.be/stops/206981", "https://data.delijn.be/stops/207982"], ["https://data.delijn.be/stops/307064", "https://data.delijn.be/stops/307065"], ["https://data.delijn.be/stops/502116", "https://data.delijn.be/stops/507116"], ["https://data.delijn.be/stops/206790", "https://data.delijn.be/stops/209242"], ["https://data.delijn.be/stops/302085", "https://data.delijn.be/stops/302277"], ["https://data.delijn.be/stops/104034", "https://data.delijn.be/stops/205609"], ["https://data.delijn.be/stops/502592", "https://data.delijn.be/stops/505686"], ["https://data.delijn.be/stops/505384", "https://data.delijn.be/stops/508104"], ["https://data.delijn.be/stops/106379", "https://data.delijn.be/stops/106383"], ["https://data.delijn.be/stops/501253", "https://data.delijn.be/stops/506253"], ["https://data.delijn.be/stops/208000", "https://data.delijn.be/stops/209013"], ["https://data.delijn.be/stops/206777", "https://data.delijn.be/stops/208478"], ["https://data.delijn.be/stops/403450", "https://data.delijn.be/stops/409283"], ["https://data.delijn.be/stops/303436", "https://data.delijn.be/stops/303521"], ["https://data.delijn.be/stops/403913", "https://data.delijn.be/stops/406007"], ["https://data.delijn.be/stops/206859", "https://data.delijn.be/stops/207927"], ["https://data.delijn.be/stops/202346", "https://data.delijn.be/stops/202738"], ["https://data.delijn.be/stops/208739", "https://data.delijn.be/stops/209405"], ["https://data.delijn.be/stops/101846", "https://data.delijn.be/stops/101847"], ["https://data.delijn.be/stops/503947", "https://data.delijn.be/stops/508459"], ["https://data.delijn.be/stops/300376", "https://data.delijn.be/stops/300379"], ["https://data.delijn.be/stops/208395", "https://data.delijn.be/stops/209394"], ["https://data.delijn.be/stops/505164", "https://data.delijn.be/stops/509405"], ["https://data.delijn.be/stops/301356", "https://data.delijn.be/stops/307156"], ["https://data.delijn.be/stops/202350", "https://data.delijn.be/stops/205916"], ["https://data.delijn.be/stops/404992", "https://data.delijn.be/stops/406946"], ["https://data.delijn.be/stops/407645", "https://data.delijn.be/stops/409626"], ["https://data.delijn.be/stops/105374", "https://data.delijn.be/stops/105376"], ["https://data.delijn.be/stops/400595", "https://data.delijn.be/stops/400600"], ["https://data.delijn.be/stops/404300", "https://data.delijn.be/stops/404305"], ["https://data.delijn.be/stops/202432", "https://data.delijn.be/stops/202588"], ["https://data.delijn.be/stops/204084", "https://data.delijn.be/stops/204086"], ["https://data.delijn.be/stops/109269", "https://data.delijn.be/stops/407111"], ["https://data.delijn.be/stops/406054", "https://data.delijn.be/stops/406064"], ["https://data.delijn.be/stops/103914", "https://data.delijn.be/stops/107885"], ["https://data.delijn.be/stops/501449", "https://data.delijn.be/stops/501454"], ["https://data.delijn.be/stops/201952", "https://data.delijn.be/stops/202428"], ["https://data.delijn.be/stops/405705", "https://data.delijn.be/stops/307283"], ["https://data.delijn.be/stops/107320", "https://data.delijn.be/stops/109060"], ["https://data.delijn.be/stops/206049", "https://data.delijn.be/stops/207298"], ["https://data.delijn.be/stops/408003", "https://data.delijn.be/stops/408244"], ["https://data.delijn.be/stops/505032", "https://data.delijn.be/stops/505035"], ["https://data.delijn.be/stops/404061", "https://data.delijn.be/stops/406856"], ["https://data.delijn.be/stops/201831", "https://data.delijn.be/stops/208257"], ["https://data.delijn.be/stops/101183", "https://data.delijn.be/stops/107870"], ["https://data.delijn.be/stops/406280", "https://data.delijn.be/stops/406891"], ["https://data.delijn.be/stops/400076", "https://data.delijn.be/stops/407023"], ["https://data.delijn.be/stops/400235", "https://data.delijn.be/stops/400237"], ["https://data.delijn.be/stops/302828", "https://data.delijn.be/stops/302829"], ["https://data.delijn.be/stops/105516", "https://data.delijn.be/stops/105790"], ["https://data.delijn.be/stops/506085", "https://data.delijn.be/stops/506089"], ["https://data.delijn.be/stops/101548", "https://data.delijn.be/stops/101718"], ["https://data.delijn.be/stops/405404", "https://data.delijn.be/stops/405496"], ["https://data.delijn.be/stops/105376", "https://data.delijn.be/stops/305787"], ["https://data.delijn.be/stops/108854", "https://data.delijn.be/stops/108856"], ["https://data.delijn.be/stops/403317", "https://data.delijn.be/stops/407587"], ["https://data.delijn.be/stops/200647", "https://data.delijn.be/stops/201647"], ["https://data.delijn.be/stops/102158", "https://data.delijn.be/stops/107434"], ["https://data.delijn.be/stops/400410", "https://data.delijn.be/stops/408487"], ["https://data.delijn.be/stops/105430", "https://data.delijn.be/stops/108830"], ["https://data.delijn.be/stops/206905", "https://data.delijn.be/stops/207879"], ["https://data.delijn.be/stops/408429", "https://data.delijn.be/stops/410033"], ["https://data.delijn.be/stops/208143", "https://data.delijn.be/stops/209143"], ["https://data.delijn.be/stops/403701", "https://data.delijn.be/stops/403773"], ["https://data.delijn.be/stops/206333", "https://data.delijn.be/stops/206334"], ["https://data.delijn.be/stops/209454", "https://data.delijn.be/stops/209661"], ["https://data.delijn.be/stops/504247", "https://data.delijn.be/stops/509245"], ["https://data.delijn.be/stops/401432", "https://data.delijn.be/stops/401434"], ["https://data.delijn.be/stops/207339", "https://data.delijn.be/stops/207686"], ["https://data.delijn.be/stops/108991", "https://data.delijn.be/stops/108993"], ["https://data.delijn.be/stops/505638", "https://data.delijn.be/stops/508180"], ["https://data.delijn.be/stops/504726", "https://data.delijn.be/stops/509491"], ["https://data.delijn.be/stops/402554", "https://data.delijn.be/stops/402605"], ["https://data.delijn.be/stops/308704", "https://data.delijn.be/stops/308705"], ["https://data.delijn.be/stops/300229", "https://data.delijn.be/stops/302127"], ["https://data.delijn.be/stops/207157", "https://data.delijn.be/stops/207505"], ["https://data.delijn.be/stops/503578", "https://data.delijn.be/stops/504991"], ["https://data.delijn.be/stops/205699", "https://data.delijn.be/stops/214009"], ["https://data.delijn.be/stops/208474", "https://data.delijn.be/stops/209669"], ["https://data.delijn.be/stops/101944", "https://data.delijn.be/stops/108756"], ["https://data.delijn.be/stops/405509", "https://data.delijn.be/stops/405512"], ["https://data.delijn.be/stops/102382", "https://data.delijn.be/stops/109638"], ["https://data.delijn.be/stops/106952", "https://data.delijn.be/stops/108716"], ["https://data.delijn.be/stops/400735", "https://data.delijn.be/stops/403586"], ["https://data.delijn.be/stops/303774", "https://data.delijn.be/stops/307032"], ["https://data.delijn.be/stops/409532", "https://data.delijn.be/stops/409547"], ["https://data.delijn.be/stops/304044", "https://data.delijn.be/stops/309671"], ["https://data.delijn.be/stops/103090", "https://data.delijn.be/stops/105760"], ["https://data.delijn.be/stops/401980", "https://data.delijn.be/stops/405545"], ["https://data.delijn.be/stops/105852", "https://data.delijn.be/stops/105853"], ["https://data.delijn.be/stops/103005", "https://data.delijn.be/stops/104535"], ["https://data.delijn.be/stops/105486", "https://data.delijn.be/stops/108802"], ["https://data.delijn.be/stops/501594", "https://data.delijn.be/stops/509508"], ["https://data.delijn.be/stops/105772", "https://data.delijn.be/stops/108013"], ["https://data.delijn.be/stops/504360", "https://data.delijn.be/stops/505535"], ["https://data.delijn.be/stops/501250", "https://data.delijn.be/stops/506250"], ["https://data.delijn.be/stops/408259", "https://data.delijn.be/stops/307380"], ["https://data.delijn.be/stops/406257", "https://data.delijn.be/stops/406259"], ["https://data.delijn.be/stops/505391", "https://data.delijn.be/stops/505831"], ["https://data.delijn.be/stops/407848", "https://data.delijn.be/stops/408064"], ["https://data.delijn.be/stops/402300", "https://data.delijn.be/stops/402327"], ["https://data.delijn.be/stops/304394", "https://data.delijn.be/stops/307399"], ["https://data.delijn.be/stops/200219", "https://data.delijn.be/stops/201434"], ["https://data.delijn.be/stops/306848", "https://data.delijn.be/stops/307356"], ["https://data.delijn.be/stops/208548", "https://data.delijn.be/stops/209611"], ["https://data.delijn.be/stops/206311", "https://data.delijn.be/stops/206312"], ["https://data.delijn.be/stops/408521", "https://data.delijn.be/stops/408785"], ["https://data.delijn.be/stops/205244", "https://data.delijn.be/stops/205245"], ["https://data.delijn.be/stops/404190", "https://data.delijn.be/stops/404191"], ["https://data.delijn.be/stops/303148", "https://data.delijn.be/stops/308757"], ["https://data.delijn.be/stops/201016", "https://data.delijn.be/stops/201512"], ["https://data.delijn.be/stops/210849", "https://data.delijn.be/stops/211025"], ["https://data.delijn.be/stops/408897", "https://data.delijn.be/stops/408903"], ["https://data.delijn.be/stops/103291", "https://data.delijn.be/stops/105501"], ["https://data.delijn.be/stops/105667", "https://data.delijn.be/stops/109895"], ["https://data.delijn.be/stops/402801", "https://data.delijn.be/stops/409446"], ["https://data.delijn.be/stops/205119", "https://data.delijn.be/stops/205464"], ["https://data.delijn.be/stops/504963", "https://data.delijn.be/stops/508755"], ["https://data.delijn.be/stops/401359", "https://data.delijn.be/stops/406071"], ["https://data.delijn.be/stops/505598", "https://data.delijn.be/stops/507517"], ["https://data.delijn.be/stops/508126", "https://data.delijn.be/stops/508135"], ["https://data.delijn.be/stops/406508", "https://data.delijn.be/stops/406509"], ["https://data.delijn.be/stops/106630", "https://data.delijn.be/stops/106632"], ["https://data.delijn.be/stops/304268", "https://data.delijn.be/stops/304299"], ["https://data.delijn.be/stops/400769", "https://data.delijn.be/stops/400771"], ["https://data.delijn.be/stops/305694", "https://data.delijn.be/stops/307840"], ["https://data.delijn.be/stops/204783", "https://data.delijn.be/stops/205474"], ["https://data.delijn.be/stops/504231", "https://data.delijn.be/stops/504241"], ["https://data.delijn.be/stops/102895", "https://data.delijn.be/stops/103636"], ["https://data.delijn.be/stops/304209", "https://data.delijn.be/stops/305345"], ["https://data.delijn.be/stops/101198", "https://data.delijn.be/stops/204616"], ["https://data.delijn.be/stops/403223", "https://data.delijn.be/stops/403353"], ["https://data.delijn.be/stops/307630", "https://data.delijn.be/stops/308262"], ["https://data.delijn.be/stops/404338", "https://data.delijn.be/stops/404348"], ["https://data.delijn.be/stops/201749", "https://data.delijn.be/stops/202190"], ["https://data.delijn.be/stops/201921", "https://data.delijn.be/stops/203517"], ["https://data.delijn.be/stops/204483", "https://data.delijn.be/stops/205044"], ["https://data.delijn.be/stops/301866", "https://data.delijn.be/stops/301874"], ["https://data.delijn.be/stops/503558", "https://data.delijn.be/stops/509453"], ["https://data.delijn.be/stops/500994", "https://data.delijn.be/stops/509828"], ["https://data.delijn.be/stops/101173", "https://data.delijn.be/stops/104485"], ["https://data.delijn.be/stops/200503", "https://data.delijn.be/stops/205951"], ["https://data.delijn.be/stops/300102", "https://data.delijn.be/stops/306822"], ["https://data.delijn.be/stops/203856", "https://data.delijn.be/stops/208713"], ["https://data.delijn.be/stops/300089", "https://data.delijn.be/stops/300106"], ["https://data.delijn.be/stops/504491", "https://data.delijn.be/stops/509491"], ["https://data.delijn.be/stops/404884", "https://data.delijn.be/stops/404957"], ["https://data.delijn.be/stops/304479", "https://data.delijn.be/stops/304491"], ["https://data.delijn.be/stops/101459", "https://data.delijn.be/stops/108218"], ["https://data.delijn.be/stops/208225", "https://data.delijn.be/stops/209224"], ["https://data.delijn.be/stops/101755", "https://data.delijn.be/stops/109821"], ["https://data.delijn.be/stops/509002", "https://data.delijn.be/stops/509737"], ["https://data.delijn.be/stops/308493", "https://data.delijn.be/stops/308500"], ["https://data.delijn.be/stops/301498", "https://data.delijn.be/stops/307956"], ["https://data.delijn.be/stops/402287", "https://data.delijn.be/stops/406871"], ["https://data.delijn.be/stops/305018", "https://data.delijn.be/stops/308033"], ["https://data.delijn.be/stops/104698", "https://data.delijn.be/stops/107356"], ["https://data.delijn.be/stops/503982", "https://data.delijn.be/stops/504786"], ["https://data.delijn.be/stops/406634", "https://data.delijn.be/stops/406635"], ["https://data.delijn.be/stops/202369", "https://data.delijn.be/stops/202977"], ["https://data.delijn.be/stops/303663", "https://data.delijn.be/stops/307736"], ["https://data.delijn.be/stops/402884", "https://data.delijn.be/stops/402944"], ["https://data.delijn.be/stops/302241", "https://data.delijn.be/stops/302247"], ["https://data.delijn.be/stops/400972", "https://data.delijn.be/stops/400973"], ["https://data.delijn.be/stops/202167", "https://data.delijn.be/stops/205075"], ["https://data.delijn.be/stops/501142", "https://data.delijn.be/stops/501161"], ["https://data.delijn.be/stops/504996", "https://data.delijn.be/stops/505379"], ["https://data.delijn.be/stops/300494", "https://data.delijn.be/stops/306175"], ["https://data.delijn.be/stops/300156", "https://data.delijn.be/stops/300165"], ["https://data.delijn.be/stops/304882", "https://data.delijn.be/stops/304883"], ["https://data.delijn.be/stops/105763", "https://data.delijn.be/stops/105764"], ["https://data.delijn.be/stops/203280", "https://data.delijn.be/stops/211104"], ["https://data.delijn.be/stops/200047", "https://data.delijn.be/stops/210001"], ["https://data.delijn.be/stops/304981", "https://data.delijn.be/stops/308012"], ["https://data.delijn.be/stops/503277", "https://data.delijn.be/stops/508286"], ["https://data.delijn.be/stops/407711", "https://data.delijn.be/stops/407713"], ["https://data.delijn.be/stops/408670", "https://data.delijn.be/stops/408755"], ["https://data.delijn.be/stops/400065", "https://data.delijn.be/stops/400109"], ["https://data.delijn.be/stops/301995", "https://data.delijn.be/stops/306386"], ["https://data.delijn.be/stops/405340", "https://data.delijn.be/stops/405341"], ["https://data.delijn.be/stops/504411", "https://data.delijn.be/stops/504427"], ["https://data.delijn.be/stops/204346", "https://data.delijn.be/stops/205346"], ["https://data.delijn.be/stops/208732", "https://data.delijn.be/stops/209732"], ["https://data.delijn.be/stops/410007", "https://data.delijn.be/stops/410009"], ["https://data.delijn.be/stops/405912", "https://data.delijn.be/stops/405913"], ["https://data.delijn.be/stops/408010", "https://data.delijn.be/stops/408421"], ["https://data.delijn.be/stops/105246", "https://data.delijn.be/stops/105249"], ["https://data.delijn.be/stops/206147", "https://data.delijn.be/stops/207146"], ["https://data.delijn.be/stops/404199", "https://data.delijn.be/stops/404204"], ["https://data.delijn.be/stops/305341", "https://data.delijn.be/stops/305352"], ["https://data.delijn.be/stops/408363", "https://data.delijn.be/stops/408364"], ["https://data.delijn.be/stops/106511", "https://data.delijn.be/stops/106513"], ["https://data.delijn.be/stops/403037", "https://data.delijn.be/stops/403865"], ["https://data.delijn.be/stops/500930", "https://data.delijn.be/stops/500938"], ["https://data.delijn.be/stops/106044", "https://data.delijn.be/stops/106059"], ["https://data.delijn.be/stops/301650", "https://data.delijn.be/stops/301652"], ["https://data.delijn.be/stops/203476", "https://data.delijn.be/stops/206933"], ["https://data.delijn.be/stops/502526", "https://data.delijn.be/stops/502528"], ["https://data.delijn.be/stops/303737", "https://data.delijn.be/stops/303743"], ["https://data.delijn.be/stops/503175", "https://data.delijn.be/stops/508175"], ["https://data.delijn.be/stops/407717", "https://data.delijn.be/stops/409777"], ["https://data.delijn.be/stops/206493", "https://data.delijn.be/stops/207492"], ["https://data.delijn.be/stops/209110", "https://data.delijn.be/stops/209112"], ["https://data.delijn.be/stops/204311", "https://data.delijn.be/stops/204675"], ["https://data.delijn.be/stops/107110", "https://data.delijn.be/stops/108875"], ["https://data.delijn.be/stops/207783", "https://data.delijn.be/stops/208189"], ["https://data.delijn.be/stops/202237", "https://data.delijn.be/stops/203236"], ["https://data.delijn.be/stops/104250", "https://data.delijn.be/stops/104254"], ["https://data.delijn.be/stops/206724", "https://data.delijn.be/stops/206736"], ["https://data.delijn.be/stops/104289", "https://data.delijn.be/stops/105862"], ["https://data.delijn.be/stops/504327", "https://data.delijn.be/stops/509328"], ["https://data.delijn.be/stops/202589", "https://data.delijn.be/stops/202590"], ["https://data.delijn.be/stops/502732", "https://data.delijn.be/stops/507087"], ["https://data.delijn.be/stops/502287", "https://data.delijn.be/stops/505352"], ["https://data.delijn.be/stops/202220", "https://data.delijn.be/stops/203220"], ["https://data.delijn.be/stops/408733", "https://data.delijn.be/stops/410342"], ["https://data.delijn.be/stops/300389", "https://data.delijn.be/stops/304588"], ["https://data.delijn.be/stops/200580", "https://data.delijn.be/stops/201732"], ["https://data.delijn.be/stops/105827", "https://data.delijn.be/stops/106828"], ["https://data.delijn.be/stops/200181", "https://data.delijn.be/stops/201199"], ["https://data.delijn.be/stops/204930", "https://data.delijn.be/stops/209730"], ["https://data.delijn.be/stops/407760", "https://data.delijn.be/stops/409745"], ["https://data.delijn.be/stops/204763", "https://data.delijn.be/stops/205764"], ["https://data.delijn.be/stops/307148", "https://data.delijn.be/stops/307217"], ["https://data.delijn.be/stops/304049", "https://data.delijn.be/stops/304096"], ["https://data.delijn.be/stops/207672", "https://data.delijn.be/stops/208001"], ["https://data.delijn.be/stops/103273", "https://data.delijn.be/stops/103293"], ["https://data.delijn.be/stops/109686", "https://data.delijn.be/stops/109692"], ["https://data.delijn.be/stops/201717", "https://data.delijn.be/stops/203604"], ["https://data.delijn.be/stops/400586", "https://data.delijn.be/stops/400589"], ["https://data.delijn.be/stops/502090", "https://data.delijn.be/stops/507089"], ["https://data.delijn.be/stops/405731", "https://data.delijn.be/stops/410140"], ["https://data.delijn.be/stops/302588", "https://data.delijn.be/stops/302664"], ["https://data.delijn.be/stops/502744", "https://data.delijn.be/stops/505697"], ["https://data.delijn.be/stops/303302", "https://data.delijn.be/stops/303303"], ["https://data.delijn.be/stops/503170", "https://data.delijn.be/stops/503172"], ["https://data.delijn.be/stops/508067", "https://data.delijn.be/stops/508832"], ["https://data.delijn.be/stops/108709", "https://data.delijn.be/stops/108729"], ["https://data.delijn.be/stops/304471", "https://data.delijn.be/stops/304672"], ["https://data.delijn.be/stops/208083", "https://data.delijn.be/stops/209083"], ["https://data.delijn.be/stops/307333", "https://data.delijn.be/stops/308699"], ["https://data.delijn.be/stops/204379", "https://data.delijn.be/stops/205379"], ["https://data.delijn.be/stops/103724", "https://data.delijn.be/stops/108092"], ["https://data.delijn.be/stops/206818", "https://data.delijn.be/stops/207819"], ["https://data.delijn.be/stops/106375", "https://data.delijn.be/stops/106386"], ["https://data.delijn.be/stops/503557", "https://data.delijn.be/stops/508548"], ["https://data.delijn.be/stops/103472", "https://data.delijn.be/stops/109168"], ["https://data.delijn.be/stops/204970", "https://data.delijn.be/stops/206902"], ["https://data.delijn.be/stops/407835", "https://data.delijn.be/stops/408064"], ["https://data.delijn.be/stops/504493", "https://data.delijn.be/stops/509493"], ["https://data.delijn.be/stops/105749", "https://data.delijn.be/stops/109964"], ["https://data.delijn.be/stops/508996", "https://data.delijn.be/stops/509487"], ["https://data.delijn.be/stops/407923", "https://data.delijn.be/stops/407972"], ["https://data.delijn.be/stops/201080", "https://data.delijn.be/stops/203889"], ["https://data.delijn.be/stops/308478", "https://data.delijn.be/stops/308479"], ["https://data.delijn.be/stops/401564", "https://data.delijn.be/stops/401746"], ["https://data.delijn.be/stops/208574", "https://data.delijn.be/stops/209574"], ["https://data.delijn.be/stops/504191", "https://data.delijn.be/stops/509191"], ["https://data.delijn.be/stops/204595", "https://data.delijn.be/stops/205104"], ["https://data.delijn.be/stops/305430", "https://data.delijn.be/stops/305436"], ["https://data.delijn.be/stops/200648", "https://data.delijn.be/stops/202863"], ["https://data.delijn.be/stops/103928", "https://data.delijn.be/stops/106901"], ["https://data.delijn.be/stops/106915", "https://data.delijn.be/stops/106917"], ["https://data.delijn.be/stops/105873", "https://data.delijn.be/stops/105876"], ["https://data.delijn.be/stops/103724", "https://data.delijn.be/stops/104037"], ["https://data.delijn.be/stops/200869", "https://data.delijn.be/stops/200884"], ["https://data.delijn.be/stops/208665", "https://data.delijn.be/stops/208670"], ["https://data.delijn.be/stops/300005", "https://data.delijn.be/stops/304494"], ["https://data.delijn.be/stops/200661", "https://data.delijn.be/stops/200662"], ["https://data.delijn.be/stops/402875", "https://data.delijn.be/stops/402878"], ["https://data.delijn.be/stops/104389", "https://data.delijn.be/stops/104392"], ["https://data.delijn.be/stops/408252", "https://data.delijn.be/stops/408317"], ["https://data.delijn.be/stops/101656", "https://data.delijn.be/stops/104866"], ["https://data.delijn.be/stops/106093", "https://data.delijn.be/stops/109184"], ["https://data.delijn.be/stops/404893", "https://data.delijn.be/stops/404897"], ["https://data.delijn.be/stops/407839", "https://data.delijn.be/stops/407846"], ["https://data.delijn.be/stops/304204", "https://data.delijn.be/stops/307504"], ["https://data.delijn.be/stops/407859", "https://data.delijn.be/stops/407949"], ["https://data.delijn.be/stops/404010", "https://data.delijn.be/stops/404011"], ["https://data.delijn.be/stops/200206", "https://data.delijn.be/stops/201656"], ["https://data.delijn.be/stops/403258", "https://data.delijn.be/stops/403394"], ["https://data.delijn.be/stops/503186", "https://data.delijn.be/stops/508216"], ["https://data.delijn.be/stops/402006", "https://data.delijn.be/stops/405217"], ["https://data.delijn.be/stops/105552", "https://data.delijn.be/stops/105556"], ["https://data.delijn.be/stops/300684", "https://data.delijn.be/stops/302187"], ["https://data.delijn.be/stops/109138", "https://data.delijn.be/stops/109142"], ["https://data.delijn.be/stops/408710", "https://data.delijn.be/stops/408711"], ["https://data.delijn.be/stops/401402", "https://data.delijn.be/stops/304719"], ["https://data.delijn.be/stops/107835", "https://data.delijn.be/stops/107840"], ["https://data.delijn.be/stops/107934", "https://data.delijn.be/stops/205564"], ["https://data.delijn.be/stops/302977", "https://data.delijn.be/stops/303005"], ["https://data.delijn.be/stops/505719", "https://data.delijn.be/stops/508481"], ["https://data.delijn.be/stops/505103", "https://data.delijn.be/stops/508899"], ["https://data.delijn.be/stops/209299", "https://data.delijn.be/stops/209379"], ["https://data.delijn.be/stops/401409", "https://data.delijn.be/stops/300987"], ["https://data.delijn.be/stops/107447", "https://data.delijn.be/stops/107451"], ["https://data.delijn.be/stops/404766", "https://data.delijn.be/stops/404767"], ["https://data.delijn.be/stops/300826", "https://data.delijn.be/stops/300827"], ["https://data.delijn.be/stops/509927", "https://data.delijn.be/stops/509928"], ["https://data.delijn.be/stops/204768", "https://data.delijn.be/stops/205400"], ["https://data.delijn.be/stops/104917", "https://data.delijn.be/stops/107861"], ["https://data.delijn.be/stops/102982", "https://data.delijn.be/stops/105064"], ["https://data.delijn.be/stops/502521", "https://data.delijn.be/stops/507521"], ["https://data.delijn.be/stops/403174", "https://data.delijn.be/stops/403175"], ["https://data.delijn.be/stops/109042", "https://data.delijn.be/stops/109083"], ["https://data.delijn.be/stops/407491", "https://data.delijn.be/stops/408601"], ["https://data.delijn.be/stops/504444", "https://data.delijn.be/stops/504445"], ["https://data.delijn.be/stops/207299", "https://data.delijn.be/stops/207300"], ["https://data.delijn.be/stops/408650", "https://data.delijn.be/stops/408657"], ["https://data.delijn.be/stops/302080", "https://data.delijn.be/stops/302086"], ["https://data.delijn.be/stops/201430", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/401282", "https://data.delijn.be/stops/408418"], ["https://data.delijn.be/stops/305206", "https://data.delijn.be/stops/308049"], ["https://data.delijn.be/stops/106090", "https://data.delijn.be/stops/106100"], ["https://data.delijn.be/stops/102532", "https://data.delijn.be/stops/405109"], ["https://data.delijn.be/stops/502467", "https://data.delijn.be/stops/502484"], ["https://data.delijn.be/stops/406110", "https://data.delijn.be/stops/406120"], ["https://data.delijn.be/stops/102638", "https://data.delijn.be/stops/104934"], ["https://data.delijn.be/stops/404082", "https://data.delijn.be/stops/308076"], ["https://data.delijn.be/stops/404647", "https://data.delijn.be/stops/405509"], ["https://data.delijn.be/stops/107370", "https://data.delijn.be/stops/107590"], ["https://data.delijn.be/stops/503759", "https://data.delijn.be/stops/508759"], ["https://data.delijn.be/stops/503509", "https://data.delijn.be/stops/508616"], ["https://data.delijn.be/stops/200712", "https://data.delijn.be/stops/205017"], ["https://data.delijn.be/stops/301484", "https://data.delijn.be/stops/301485"], ["https://data.delijn.be/stops/200414", "https://data.delijn.be/stops/201414"], ["https://data.delijn.be/stops/408654", "https://data.delijn.be/stops/408655"], ["https://data.delijn.be/stops/201729", "https://data.delijn.be/stops/208331"], ["https://data.delijn.be/stops/101193", "https://data.delijn.be/stops/205541"], ["https://data.delijn.be/stops/503253", "https://data.delijn.be/stops/505371"], ["https://data.delijn.be/stops/400555", "https://data.delijn.be/stops/410271"], ["https://data.delijn.be/stops/501620", "https://data.delijn.be/stops/506014"], ["https://data.delijn.be/stops/208829", "https://data.delijn.be/stops/210105"], ["https://data.delijn.be/stops/409021", "https://data.delijn.be/stops/409026"], ["https://data.delijn.be/stops/208641", "https://data.delijn.be/stops/209641"], ["https://data.delijn.be/stops/207878", "https://data.delijn.be/stops/306077"], ["https://data.delijn.be/stops/503359", "https://data.delijn.be/stops/503407"], ["https://data.delijn.be/stops/502032", "https://data.delijn.be/stops/502662"], ["https://data.delijn.be/stops/402579", "https://data.delijn.be/stops/403474"], ["https://data.delijn.be/stops/400598", "https://data.delijn.be/stops/400621"], ["https://data.delijn.be/stops/502019", "https://data.delijn.be/stops/507912"], ["https://data.delijn.be/stops/204290", "https://data.delijn.be/stops/205539"], ["https://data.delijn.be/stops/301356", "https://data.delijn.be/stops/304697"], ["https://data.delijn.be/stops/300735", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/300869", "https://data.delijn.be/stops/302217"], ["https://data.delijn.be/stops/405455", "https://data.delijn.be/stops/405462"], ["https://data.delijn.be/stops/104838", "https://data.delijn.be/stops/109566"], ["https://data.delijn.be/stops/301627", "https://data.delijn.be/stops/301630"], ["https://data.delijn.be/stops/101540", "https://data.delijn.be/stops/101665"], ["https://data.delijn.be/stops/200886", "https://data.delijn.be/stops/211005"], ["https://data.delijn.be/stops/302062", "https://data.delijn.be/stops/305635"], ["https://data.delijn.be/stops/504099", "https://data.delijn.be/stops/505190"], ["https://data.delijn.be/stops/104589", "https://data.delijn.be/stops/106413"], ["https://data.delijn.be/stops/301596", "https://data.delijn.be/stops/301602"], ["https://data.delijn.be/stops/206702", "https://data.delijn.be/stops/206730"], ["https://data.delijn.be/stops/302577", "https://data.delijn.be/stops/308093"], ["https://data.delijn.be/stops/505311", "https://data.delijn.be/stops/509058"], ["https://data.delijn.be/stops/305688", "https://data.delijn.be/stops/305690"], ["https://data.delijn.be/stops/203408", "https://data.delijn.be/stops/210409"], ["https://data.delijn.be/stops/401075", "https://data.delijn.be/stops/401083"], ["https://data.delijn.be/stops/108657", "https://data.delijn.be/stops/306630"], ["https://data.delijn.be/stops/508659", "https://data.delijn.be/stops/508748"], ["https://data.delijn.be/stops/107560", "https://data.delijn.be/stops/109847"], ["https://data.delijn.be/stops/406694", "https://data.delijn.be/stops/409766"], ["https://data.delijn.be/stops/504503", "https://data.delijn.be/stops/509510"], ["https://data.delijn.be/stops/308056", "https://data.delijn.be/stops/308758"], ["https://data.delijn.be/stops/200638", "https://data.delijn.be/stops/201638"], ["https://data.delijn.be/stops/503566", "https://data.delijn.be/stops/503570"], ["https://data.delijn.be/stops/405706", "https://data.delijn.be/stops/405714"], ["https://data.delijn.be/stops/202145", "https://data.delijn.be/stops/203144"], ["https://data.delijn.be/stops/508453", "https://data.delijn.be/stops/508459"], ["https://data.delijn.be/stops/105598", "https://data.delijn.be/stops/109606"], ["https://data.delijn.be/stops/502390", "https://data.delijn.be/stops/507405"], ["https://data.delijn.be/stops/408180", "https://data.delijn.be/stops/408181"], ["https://data.delijn.be/stops/302339", "https://data.delijn.be/stops/306180"], ["https://data.delijn.be/stops/301949", "https://data.delijn.be/stops/308965"], ["https://data.delijn.be/stops/403160", "https://data.delijn.be/stops/403478"], ["https://data.delijn.be/stops/205991", "https://data.delijn.be/stops/208799"], ["https://data.delijn.be/stops/303479", "https://data.delijn.be/stops/303482"], ["https://data.delijn.be/stops/204477", "https://data.delijn.be/stops/204478"], ["https://data.delijn.be/stops/105006", "https://data.delijn.be/stops/105009"], ["https://data.delijn.be/stops/300059", "https://data.delijn.be/stops/306797"], ["https://data.delijn.be/stops/101364", "https://data.delijn.be/stops/103241"], ["https://data.delijn.be/stops/500948", "https://data.delijn.be/stops/505409"], ["https://data.delijn.be/stops/300324", "https://data.delijn.be/stops/300328"], ["https://data.delijn.be/stops/300549", "https://data.delijn.be/stops/300568"], ["https://data.delijn.be/stops/202369", "https://data.delijn.be/stops/203369"], ["https://data.delijn.be/stops/206802", "https://data.delijn.be/stops/209034"], ["https://data.delijn.be/stops/204065", "https://data.delijn.be/stops/205703"], ["https://data.delijn.be/stops/505171", "https://data.delijn.be/stops/505672"], ["https://data.delijn.be/stops/109936", "https://data.delijn.be/stops/109947"], ["https://data.delijn.be/stops/505932", "https://data.delijn.be/stops/508140"], ["https://data.delijn.be/stops/504110", "https://data.delijn.be/stops/504469"], ["https://data.delijn.be/stops/503693", "https://data.delijn.be/stops/509962"], ["https://data.delijn.be/stops/301610", "https://data.delijn.be/stops/301614"], ["https://data.delijn.be/stops/207814", "https://data.delijn.be/stops/207815"], ["https://data.delijn.be/stops/502743", "https://data.delijn.be/stops/505066"], ["https://data.delijn.be/stops/202323", "https://data.delijn.be/stops/208640"], ["https://data.delijn.be/stops/107037", "https://data.delijn.be/stops/108238"], ["https://data.delijn.be/stops/302117", "https://data.delijn.be/stops/302119"], ["https://data.delijn.be/stops/404221", "https://data.delijn.be/stops/404222"], ["https://data.delijn.be/stops/504657", "https://data.delijn.be/stops/505921"], ["https://data.delijn.be/stops/101520", "https://data.delijn.be/stops/104877"], ["https://data.delijn.be/stops/405210", "https://data.delijn.be/stops/409355"], ["https://data.delijn.be/stops/301400", "https://data.delijn.be/stops/304549"], ["https://data.delijn.be/stops/402584", "https://data.delijn.be/stops/402645"], ["https://data.delijn.be/stops/509760", "https://data.delijn.be/stops/509787"], ["https://data.delijn.be/stops/405701", "https://data.delijn.be/stops/405741"], ["https://data.delijn.be/stops/202140", "https://data.delijn.be/stops/203140"], ["https://data.delijn.be/stops/209542", "https://data.delijn.be/stops/209559"], ["https://data.delijn.be/stops/200310", "https://data.delijn.be/stops/201311"], ["https://data.delijn.be/stops/200158", "https://data.delijn.be/stops/201639"], ["https://data.delijn.be/stops/103007", "https://data.delijn.be/stops/106509"], ["https://data.delijn.be/stops/201708", "https://data.delijn.be/stops/202442"], ["https://data.delijn.be/stops/102390", "https://data.delijn.be/stops/103085"], ["https://data.delijn.be/stops/404572", "https://data.delijn.be/stops/408171"], ["https://data.delijn.be/stops/403434", "https://data.delijn.be/stops/403435"], ["https://data.delijn.be/stops/203074", "https://data.delijn.be/stops/505684"], ["https://data.delijn.be/stops/404798", "https://data.delijn.be/stops/404814"], ["https://data.delijn.be/stops/206130", "https://data.delijn.be/stops/206137"], ["https://data.delijn.be/stops/301722", "https://data.delijn.be/stops/305276"], ["https://data.delijn.be/stops/202058", "https://data.delijn.be/stops/211104"], ["https://data.delijn.be/stops/101785", "https://data.delijn.be/stops/103875"], ["https://data.delijn.be/stops/503530", "https://data.delijn.be/stops/508530"], ["https://data.delijn.be/stops/203362", "https://data.delijn.be/stops/204950"], ["https://data.delijn.be/stops/208302", "https://data.delijn.be/stops/208303"], ["https://data.delijn.be/stops/407952", "https://data.delijn.be/stops/407953"], ["https://data.delijn.be/stops/201840", "https://data.delijn.be/stops/202320"], ["https://data.delijn.be/stops/402749", "https://data.delijn.be/stops/405295"], ["https://data.delijn.be/stops/306962", "https://data.delijn.be/stops/306963"], ["https://data.delijn.be/stops/407618", "https://data.delijn.be/stops/407658"], ["https://data.delijn.be/stops/104162", "https://data.delijn.be/stops/104521"], ["https://data.delijn.be/stops/201876", "https://data.delijn.be/stops/202660"], ["https://data.delijn.be/stops/404126", "https://data.delijn.be/stops/404197"], ["https://data.delijn.be/stops/300562", "https://data.delijn.be/stops/300563"], ["https://data.delijn.be/stops/208793", "https://data.delijn.be/stops/209788"], ["https://data.delijn.be/stops/407946", "https://data.delijn.be/stops/407947"], ["https://data.delijn.be/stops/103224", "https://data.delijn.be/stops/103299"], ["https://data.delijn.be/stops/208542", "https://data.delijn.be/stops/209542"], ["https://data.delijn.be/stops/502291", "https://data.delijn.be/stops/502293"], ["https://data.delijn.be/stops/102943", "https://data.delijn.be/stops/102944"], ["https://data.delijn.be/stops/201090", "https://data.delijn.be/stops/203889"], ["https://data.delijn.be/stops/504641", "https://data.delijn.be/stops/505119"], ["https://data.delijn.be/stops/203678", "https://data.delijn.be/stops/203694"], ["https://data.delijn.be/stops/108089", "https://data.delijn.be/stops/108388"], ["https://data.delijn.be/stops/308720", "https://data.delijn.be/stops/308733"], ["https://data.delijn.be/stops/305342", "https://data.delijn.be/stops/307970"], ["https://data.delijn.be/stops/107901", "https://data.delijn.be/stops/107909"], ["https://data.delijn.be/stops/505319", "https://data.delijn.be/stops/507479"], ["https://data.delijn.be/stops/205979", "https://data.delijn.be/stops/207404"], ["https://data.delijn.be/stops/104456", "https://data.delijn.be/stops/307523"], ["https://data.delijn.be/stops/407992", "https://data.delijn.be/stops/408070"], ["https://data.delijn.be/stops/300307", "https://data.delijn.be/stops/302134"], ["https://data.delijn.be/stops/300244", "https://data.delijn.be/stops/300245"], ["https://data.delijn.be/stops/107934", "https://data.delijn.be/stops/303536"], ["https://data.delijn.be/stops/407847", "https://data.delijn.be/stops/407983"], ["https://data.delijn.be/stops/208741", "https://data.delijn.be/stops/209358"], ["https://data.delijn.be/stops/505827", "https://data.delijn.be/stops/509451"], ["https://data.delijn.be/stops/300104", "https://data.delijn.be/stops/306850"], ["https://data.delijn.be/stops/409680", "https://data.delijn.be/stops/409722"], ["https://data.delijn.be/stops/202738", "https://data.delijn.be/stops/203738"], ["https://data.delijn.be/stops/208727", "https://data.delijn.be/stops/209727"], ["https://data.delijn.be/stops/401871", "https://data.delijn.be/stops/406337"], ["https://data.delijn.be/stops/109334", "https://data.delijn.be/stops/109335"], ["https://data.delijn.be/stops/308202", "https://data.delijn.be/stops/308203"], ["https://data.delijn.be/stops/107081", "https://data.delijn.be/stops/107082"], ["https://data.delijn.be/stops/107690", "https://data.delijn.be/stops/107695"], ["https://data.delijn.be/stops/402489", "https://data.delijn.be/stops/402491"], ["https://data.delijn.be/stops/103233", "https://data.delijn.be/stops/108923"], ["https://data.delijn.be/stops/304658", "https://data.delijn.be/stops/304659"], ["https://data.delijn.be/stops/101045", "https://data.delijn.be/stops/105430"], ["https://data.delijn.be/stops/201402", "https://data.delijn.be/stops/203364"], ["https://data.delijn.be/stops/205399", "https://data.delijn.be/stops/205400"], ["https://data.delijn.be/stops/208370", "https://data.delijn.be/stops/208372"], ["https://data.delijn.be/stops/300637", "https://data.delijn.be/stops/300659"], ["https://data.delijn.be/stops/109039", "https://data.delijn.be/stops/307947"], ["https://data.delijn.be/stops/106012", "https://data.delijn.be/stops/106016"], ["https://data.delijn.be/stops/405344", "https://data.delijn.be/stops/405430"], ["https://data.delijn.be/stops/404880", "https://data.delijn.be/stops/404883"], ["https://data.delijn.be/stops/306794", "https://data.delijn.be/stops/307347"], ["https://data.delijn.be/stops/305655", "https://data.delijn.be/stops/305670"], ["https://data.delijn.be/stops/204472", "https://data.delijn.be/stops/205472"], ["https://data.delijn.be/stops/301389", "https://data.delijn.be/stops/301390"], ["https://data.delijn.be/stops/206784", "https://data.delijn.be/stops/208019"], ["https://data.delijn.be/stops/405186", "https://data.delijn.be/stops/405187"], ["https://data.delijn.be/stops/206012", "https://data.delijn.be/stops/207387"], ["https://data.delijn.be/stops/201670", "https://data.delijn.be/stops/201840"], ["https://data.delijn.be/stops/104334", "https://data.delijn.be/stops/105853"], ["https://data.delijn.be/stops/202609", "https://data.delijn.be/stops/202612"], ["https://data.delijn.be/stops/105088", "https://data.delijn.be/stops/105089"], ["https://data.delijn.be/stops/302551", "https://data.delijn.be/stops/302555"], ["https://data.delijn.be/stops/501180", "https://data.delijn.be/stops/504511"], ["https://data.delijn.be/stops/504016", "https://data.delijn.be/stops/509506"], ["https://data.delijn.be/stops/301041", "https://data.delijn.be/stops/308854"], ["https://data.delijn.be/stops/109359", "https://data.delijn.be/stops/109360"], ["https://data.delijn.be/stops/305221", "https://data.delijn.be/stops/305222"], ["https://data.delijn.be/stops/102834", "https://data.delijn.be/stops/103761"], ["https://data.delijn.be/stops/107302", "https://data.delijn.be/stops/109664"], ["https://data.delijn.be/stops/200551", "https://data.delijn.be/stops/200568"], ["https://data.delijn.be/stops/206522", "https://data.delijn.be/stops/207521"], ["https://data.delijn.be/stops/200937", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/407779", "https://data.delijn.be/stops/407780"], ["https://data.delijn.be/stops/407241", "https://data.delijn.be/stops/407486"], ["https://data.delijn.be/stops/101780", "https://data.delijn.be/stops/103282"], ["https://data.delijn.be/stops/300481", "https://data.delijn.be/stops/300505"], ["https://data.delijn.be/stops/407752", "https://data.delijn.be/stops/407756"], ["https://data.delijn.be/stops/402734", "https://data.delijn.be/stops/410089"], ["https://data.delijn.be/stops/402562", "https://data.delijn.be/stops/402563"], ["https://data.delijn.be/stops/306797", "https://data.delijn.be/stops/306798"], ["https://data.delijn.be/stops/106859", "https://data.delijn.be/stops/109622"], ["https://data.delijn.be/stops/200558", "https://data.delijn.be/stops/201559"], ["https://data.delijn.be/stops/201383", "https://data.delijn.be/stops/209732"], ["https://data.delijn.be/stops/206131", "https://data.delijn.be/stops/206132"], ["https://data.delijn.be/stops/305113", "https://data.delijn.be/stops/305130"], ["https://data.delijn.be/stops/105517", "https://data.delijn.be/stops/108728"], ["https://data.delijn.be/stops/201216", "https://data.delijn.be/stops/201217"], ["https://data.delijn.be/stops/104244", "https://data.delijn.be/stops/104246"], ["https://data.delijn.be/stops/208612", "https://data.delijn.be/stops/209612"], ["https://data.delijn.be/stops/403413", "https://data.delijn.be/stops/403686"], ["https://data.delijn.be/stops/400527", "https://data.delijn.be/stops/400581"], ["https://data.delijn.be/stops/306297", "https://data.delijn.be/stops/306298"], ["https://data.delijn.be/stops/200691", "https://data.delijn.be/stops/211041"], ["https://data.delijn.be/stops/305451", "https://data.delijn.be/stops/308952"], ["https://data.delijn.be/stops/300973", "https://data.delijn.be/stops/304535"], ["https://data.delijn.be/stops/107562", "https://data.delijn.be/stops/109436"], ["https://data.delijn.be/stops/305033", "https://data.delijn.be/stops/308059"], ["https://data.delijn.be/stops/301463", "https://data.delijn.be/stops/301496"], ["https://data.delijn.be/stops/503287", "https://data.delijn.be/stops/504713"], ["https://data.delijn.be/stops/102551", "https://data.delijn.be/stops/109640"], ["https://data.delijn.be/stops/207665", "https://data.delijn.be/stops/209675"], ["https://data.delijn.be/stops/502812", "https://data.delijn.be/stops/507513"], ["https://data.delijn.be/stops/407653", "https://data.delijn.be/stops/409810"], ["https://data.delijn.be/stops/400353", "https://data.delijn.be/stops/400361"], ["https://data.delijn.be/stops/300897", "https://data.delijn.be/stops/306284"], ["https://data.delijn.be/stops/300667", "https://data.delijn.be/stops/300673"], ["https://data.delijn.be/stops/206148", "https://data.delijn.be/stops/207148"], ["https://data.delijn.be/stops/104711", "https://data.delijn.be/stops/107344"], ["https://data.delijn.be/stops/108628", "https://data.delijn.be/stops/108632"], ["https://data.delijn.be/stops/103609", "https://data.delijn.be/stops/103611"], ["https://data.delijn.be/stops/109450", "https://data.delijn.be/stops/109452"], ["https://data.delijn.be/stops/206692", "https://data.delijn.be/stops/207191"], ["https://data.delijn.be/stops/304497", "https://data.delijn.be/stops/304520"], ["https://data.delijn.be/stops/401118", "https://data.delijn.be/stops/406299"], ["https://data.delijn.be/stops/409478", "https://data.delijn.be/stops/409483"], ["https://data.delijn.be/stops/305060", "https://data.delijn.be/stops/305065"], ["https://data.delijn.be/stops/210048", "https://data.delijn.be/stops/211082"], ["https://data.delijn.be/stops/503672", "https://data.delijn.be/stops/505258"], ["https://data.delijn.be/stops/401575", "https://data.delijn.be/stops/402104"], ["https://data.delijn.be/stops/503294", "https://data.delijn.be/stops/508295"], ["https://data.delijn.be/stops/304335", "https://data.delijn.be/stops/304706"], ["https://data.delijn.be/stops/208010", "https://data.delijn.be/stops/209012"], ["https://data.delijn.be/stops/303415", "https://data.delijn.be/stops/303429"], ["https://data.delijn.be/stops/200019", "https://data.delijn.be/stops/210045"], ["https://data.delijn.be/stops/405385", "https://data.delijn.be/stops/303316"], ["https://data.delijn.be/stops/203779", "https://data.delijn.be/stops/203780"], ["https://data.delijn.be/stops/400748", "https://data.delijn.be/stops/409598"], ["https://data.delijn.be/stops/301860", "https://data.delijn.be/stops/306989"], ["https://data.delijn.be/stops/103638", "https://data.delijn.be/stops/107167"], ["https://data.delijn.be/stops/208107", "https://data.delijn.be/stops/209778"], ["https://data.delijn.be/stops/405763", "https://data.delijn.be/stops/409281"], ["https://data.delijn.be/stops/306594", "https://data.delijn.be/stops/306598"], ["https://data.delijn.be/stops/501698", "https://data.delijn.be/stops/506405"], ["https://data.delijn.be/stops/109153", "https://data.delijn.be/stops/109232"], ["https://data.delijn.be/stops/106918", "https://data.delijn.be/stops/106949"], ["https://data.delijn.be/stops/503159", "https://data.delijn.be/stops/504856"], ["https://data.delijn.be/stops/102739", "https://data.delijn.be/stops/105522"], ["https://data.delijn.be/stops/500018", "https://data.delijn.be/stops/502463"], ["https://data.delijn.be/stops/302415", "https://data.delijn.be/stops/307002"], ["https://data.delijn.be/stops/502304", "https://data.delijn.be/stops/507316"], ["https://data.delijn.be/stops/402048", "https://data.delijn.be/stops/402268"], ["https://data.delijn.be/stops/103486", "https://data.delijn.be/stops/109148"], ["https://data.delijn.be/stops/305076", "https://data.delijn.be/stops/305080"], ["https://data.delijn.be/stops/205371", "https://data.delijn.be/stops/205760"], ["https://data.delijn.be/stops/401642", "https://data.delijn.be/stops/408621"], ["https://data.delijn.be/stops/208759", "https://data.delijn.be/stops/209183"], ["https://data.delijn.be/stops/200843", "https://data.delijn.be/stops/202299"], ["https://data.delijn.be/stops/405484", "https://data.delijn.be/stops/405485"], ["https://data.delijn.be/stops/502105", "https://data.delijn.be/stops/502118"], ["https://data.delijn.be/stops/105434", "https://data.delijn.be/stops/109981"], ["https://data.delijn.be/stops/205365", "https://data.delijn.be/stops/214012"], ["https://data.delijn.be/stops/505522", "https://data.delijn.be/stops/509893"], ["https://data.delijn.be/stops/200702", "https://data.delijn.be/stops/200730"], ["https://data.delijn.be/stops/503324", "https://data.delijn.be/stops/508325"], ["https://data.delijn.be/stops/200695", "https://data.delijn.be/stops/210108"], ["https://data.delijn.be/stops/504004", "https://data.delijn.be/stops/509740"], ["https://data.delijn.be/stops/501196", "https://data.delijn.be/stops/506196"], ["https://data.delijn.be/stops/107215", "https://data.delijn.be/stops/107236"], ["https://data.delijn.be/stops/108488", "https://data.delijn.be/stops/303980"], ["https://data.delijn.be/stops/103499", "https://data.delijn.be/stops/103501"], ["https://data.delijn.be/stops/301153", "https://data.delijn.be/stops/307695"], ["https://data.delijn.be/stops/303126", "https://data.delijn.be/stops/303134"], ["https://data.delijn.be/stops/400113", "https://data.delijn.be/stops/400135"], ["https://data.delijn.be/stops/502669", "https://data.delijn.be/stops/507669"], ["https://data.delijn.be/stops/101827", "https://data.delijn.be/stops/107116"], ["https://data.delijn.be/stops/407991", "https://data.delijn.be/stops/408169"], ["https://data.delijn.be/stops/407834", "https://data.delijn.be/stops/407977"], ["https://data.delijn.be/stops/305059", "https://data.delijn.be/stops/305062"], ["https://data.delijn.be/stops/503725", "https://data.delijn.be/stops/508774"], ["https://data.delijn.be/stops/402138", "https://data.delijn.be/stops/406810"], ["https://data.delijn.be/stops/200390", "https://data.delijn.be/stops/208970"], ["https://data.delijn.be/stops/103646", "https://data.delijn.be/stops/105325"], ["https://data.delijn.be/stops/507429", "https://data.delijn.be/stops/507431"], ["https://data.delijn.be/stops/504402", "https://data.delijn.be/stops/509464"], ["https://data.delijn.be/stops/103923", "https://data.delijn.be/stops/103926"], ["https://data.delijn.be/stops/402345", "https://data.delijn.be/stops/402355"], ["https://data.delijn.be/stops/504014", "https://data.delijn.be/stops/509014"], ["https://data.delijn.be/stops/302232", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/407783", "https://data.delijn.be/stops/408143"], ["https://data.delijn.be/stops/102242", "https://data.delijn.be/stops/105881"], ["https://data.delijn.be/stops/200367", "https://data.delijn.be/stops/200383"], ["https://data.delijn.be/stops/200531", "https://data.delijn.be/stops/201531"], ["https://data.delijn.be/stops/303637", "https://data.delijn.be/stops/304807"], ["https://data.delijn.be/stops/104428", "https://data.delijn.be/stops/104869"], ["https://data.delijn.be/stops/207752", "https://data.delijn.be/stops/207795"], ["https://data.delijn.be/stops/204240", "https://data.delijn.be/stops/205240"], ["https://data.delijn.be/stops/101500", "https://data.delijn.be/stops/109351"], ["https://data.delijn.be/stops/303664", "https://data.delijn.be/stops/305398"], ["https://data.delijn.be/stops/304849", "https://data.delijn.be/stops/307831"], ["https://data.delijn.be/stops/207088", "https://data.delijn.be/stops/207089"], ["https://data.delijn.be/stops/508495", "https://data.delijn.be/stops/508501"], ["https://data.delijn.be/stops/105713", "https://data.delijn.be/stops/106078"], ["https://data.delijn.be/stops/405177", "https://data.delijn.be/stops/406725"], ["https://data.delijn.be/stops/301537", "https://data.delijn.be/stops/304702"], ["https://data.delijn.be/stops/102089", "https://data.delijn.be/stops/106806"], ["https://data.delijn.be/stops/104508", "https://data.delijn.be/stops/308798"], ["https://data.delijn.be/stops/103248", "https://data.delijn.be/stops/107595"], ["https://data.delijn.be/stops/302583", "https://data.delijn.be/stops/302596"], ["https://data.delijn.be/stops/104049", "https://data.delijn.be/stops/104128"], ["https://data.delijn.be/stops/403413", "https://data.delijn.be/stops/410288"], ["https://data.delijn.be/stops/103771", "https://data.delijn.be/stops/103773"], ["https://data.delijn.be/stops/207796", "https://data.delijn.be/stops/207797"], ["https://data.delijn.be/stops/502240", "https://data.delijn.be/stops/502654"], ["https://data.delijn.be/stops/101661", "https://data.delijn.be/stops/204661"], ["https://data.delijn.be/stops/503767", "https://data.delijn.be/stops/505315"], ["https://data.delijn.be/stops/101787", "https://data.delijn.be/stops/109152"], ["https://data.delijn.be/stops/302902", "https://data.delijn.be/stops/302903"], ["https://data.delijn.be/stops/304263", "https://data.delijn.be/stops/304271"], ["https://data.delijn.be/stops/304216", "https://data.delijn.be/stops/307246"], ["https://data.delijn.be/stops/200156", "https://data.delijn.be/stops/201157"], ["https://data.delijn.be/stops/502175", "https://data.delijn.be/stops/507686"], ["https://data.delijn.be/stops/504016", "https://data.delijn.be/stops/504507"], ["https://data.delijn.be/stops/202500", "https://data.delijn.be/stops/205792"], ["https://data.delijn.be/stops/505958", "https://data.delijn.be/stops/508280"], ["https://data.delijn.be/stops/303472", "https://data.delijn.be/stops/304175"], ["https://data.delijn.be/stops/208970", "https://data.delijn.be/stops/209955"], ["https://data.delijn.be/stops/403944", "https://data.delijn.be/stops/403984"], ["https://data.delijn.be/stops/503154", "https://data.delijn.be/stops/505190"], ["https://data.delijn.be/stops/202254", "https://data.delijn.be/stops/203254"], ["https://data.delijn.be/stops/502755", "https://data.delijn.be/stops/507755"], ["https://data.delijn.be/stops/301531", "https://data.delijn.be/stops/308084"], ["https://data.delijn.be/stops/503591", "https://data.delijn.be/stops/505957"], ["https://data.delijn.be/stops/207497", "https://data.delijn.be/stops/207501"], ["https://data.delijn.be/stops/408546", "https://data.delijn.be/stops/408603"], ["https://data.delijn.be/stops/204761", "https://data.delijn.be/stops/214013"], ["https://data.delijn.be/stops/402115", "https://data.delijn.be/stops/406805"], ["https://data.delijn.be/stops/108205", "https://data.delijn.be/stops/108965"], ["https://data.delijn.be/stops/300304", "https://data.delijn.be/stops/307457"], ["https://data.delijn.be/stops/300605", "https://data.delijn.be/stops/300607"], ["https://data.delijn.be/stops/406304", "https://data.delijn.be/stops/409015"], ["https://data.delijn.be/stops/105286", "https://data.delijn.be/stops/108465"], ["https://data.delijn.be/stops/500873", "https://data.delijn.be/stops/504994"], ["https://data.delijn.be/stops/101482", "https://data.delijn.be/stops/109297"], ["https://data.delijn.be/stops/405658", "https://data.delijn.be/stops/408746"], ["https://data.delijn.be/stops/303139", "https://data.delijn.be/stops/303594"], ["https://data.delijn.be/stops/204195", "https://data.delijn.be/stops/204196"], ["https://data.delijn.be/stops/301460", "https://data.delijn.be/stops/301492"], ["https://data.delijn.be/stops/301240", "https://data.delijn.be/stops/308266"], ["https://data.delijn.be/stops/203897", "https://data.delijn.be/stops/203898"], ["https://data.delijn.be/stops/409423", "https://data.delijn.be/stops/409725"], ["https://data.delijn.be/stops/206454", "https://data.delijn.be/stops/207454"], ["https://data.delijn.be/stops/102383", "https://data.delijn.be/stops/106568"], ["https://data.delijn.be/stops/210053", "https://data.delijn.be/stops/210124"], ["https://data.delijn.be/stops/503335", "https://data.delijn.be/stops/508336"], ["https://data.delijn.be/stops/108107", "https://data.delijn.be/stops/108118"], ["https://data.delijn.be/stops/203148", "https://data.delijn.be/stops/203149"], ["https://data.delijn.be/stops/106928", "https://data.delijn.be/stops/106929"], ["https://data.delijn.be/stops/200494", "https://data.delijn.be/stops/203937"], ["https://data.delijn.be/stops/508613", "https://data.delijn.be/stops/508617"], ["https://data.delijn.be/stops/300268", "https://data.delijn.be/stops/302150"], ["https://data.delijn.be/stops/503933", "https://data.delijn.be/stops/508933"], ["https://data.delijn.be/stops/505190", "https://data.delijn.be/stops/505788"], ["https://data.delijn.be/stops/410071", "https://data.delijn.be/stops/410072"], ["https://data.delijn.be/stops/102535", "https://data.delijn.be/stops/102540"], ["https://data.delijn.be/stops/202296", "https://data.delijn.be/stops/203295"], ["https://data.delijn.be/stops/400164", "https://data.delijn.be/stops/400168"], ["https://data.delijn.be/stops/202091", "https://data.delijn.be/stops/202689"], ["https://data.delijn.be/stops/505349", "https://data.delijn.be/stops/507597"], ["https://data.delijn.be/stops/409038", "https://data.delijn.be/stops/409039"], ["https://data.delijn.be/stops/409063", "https://data.delijn.be/stops/409072"], ["https://data.delijn.be/stops/409555", "https://data.delijn.be/stops/409560"], ["https://data.delijn.be/stops/400045", "https://data.delijn.be/stops/400321"], ["https://data.delijn.be/stops/409266", "https://data.delijn.be/stops/409267"], ["https://data.delijn.be/stops/107598", "https://data.delijn.be/stops/107601"], ["https://data.delijn.be/stops/301713", "https://data.delijn.be/stops/301756"], ["https://data.delijn.be/stops/302505", "https://data.delijn.be/stops/302518"], ["https://data.delijn.be/stops/403128", "https://data.delijn.be/stops/409316"], ["https://data.delijn.be/stops/107078", "https://data.delijn.be/stops/108173"], ["https://data.delijn.be/stops/406446", "https://data.delijn.be/stops/406744"], ["https://data.delijn.be/stops/305508", "https://data.delijn.be/stops/305518"], ["https://data.delijn.be/stops/505630", "https://data.delijn.be/stops/508345"], ["https://data.delijn.be/stops/106204", "https://data.delijn.be/stops/109907"], ["https://data.delijn.be/stops/503434", "https://data.delijn.be/stops/508416"], ["https://data.delijn.be/stops/401401", "https://data.delijn.be/stops/304720"], ["https://data.delijn.be/stops/208610", "https://data.delijn.be/stops/209609"], ["https://data.delijn.be/stops/207434", "https://data.delijn.be/stops/209690"], ["https://data.delijn.be/stops/205734", "https://data.delijn.be/stops/205757"], ["https://data.delijn.be/stops/405789", "https://data.delijn.be/stops/405791"], ["https://data.delijn.be/stops/200921", "https://data.delijn.be/stops/202275"], ["https://data.delijn.be/stops/404411", "https://data.delijn.be/stops/404412"], ["https://data.delijn.be/stops/201564", "https://data.delijn.be/stops/201565"], ["https://data.delijn.be/stops/205029", "https://data.delijn.be/stops/205030"], ["https://data.delijn.be/stops/201453", "https://data.delijn.be/stops/201454"], ["https://data.delijn.be/stops/502186", "https://data.delijn.be/stops/502187"], ["https://data.delijn.be/stops/200213", "https://data.delijn.be/stops/203547"], ["https://data.delijn.be/stops/102395", "https://data.delijn.be/stops/105905"], ["https://data.delijn.be/stops/202037", "https://data.delijn.be/stops/202038"], ["https://data.delijn.be/stops/102808", "https://data.delijn.be/stops/107660"], ["https://data.delijn.be/stops/507543", "https://data.delijn.be/stops/507612"], ["https://data.delijn.be/stops/104880", "https://data.delijn.be/stops/104884"], ["https://data.delijn.be/stops/400557", "https://data.delijn.be/stops/404281"], ["https://data.delijn.be/stops/206439", "https://data.delijn.be/stops/206440"], ["https://data.delijn.be/stops/504576", "https://data.delijn.be/stops/509576"], ["https://data.delijn.be/stops/405836", "https://data.delijn.be/stops/406386"], ["https://data.delijn.be/stops/509347", "https://data.delijn.be/stops/509354"], ["https://data.delijn.be/stops/204018", "https://data.delijn.be/stops/205086"], ["https://data.delijn.be/stops/303518", "https://data.delijn.be/stops/303523"], ["https://data.delijn.be/stops/402140", "https://data.delijn.be/stops/402439"], ["https://data.delijn.be/stops/305739", "https://data.delijn.be/stops/305745"], ["https://data.delijn.be/stops/106258", "https://data.delijn.be/stops/109904"], ["https://data.delijn.be/stops/101267", "https://data.delijn.be/stops/102884"], ["https://data.delijn.be/stops/202001", "https://data.delijn.be/stops/203491"], ["https://data.delijn.be/stops/308126", "https://data.delijn.be/stops/308875"], ["https://data.delijn.be/stops/501732", "https://data.delijn.be/stops/506115"], ["https://data.delijn.be/stops/300164", "https://data.delijn.be/stops/308700"], ["https://data.delijn.be/stops/301860", "https://data.delijn.be/stops/301864"], ["https://data.delijn.be/stops/102088", "https://data.delijn.be/stops/106771"], ["https://data.delijn.be/stops/103772", "https://data.delijn.be/stops/107117"], ["https://data.delijn.be/stops/503086", "https://data.delijn.be/stops/508086"], ["https://data.delijn.be/stops/305558", "https://data.delijn.be/stops/305580"], ["https://data.delijn.be/stops/208109", "https://data.delijn.be/stops/209110"], ["https://data.delijn.be/stops/202023", "https://data.delijn.be/stops/202024"], ["https://data.delijn.be/stops/501336", "https://data.delijn.be/stops/506360"], ["https://data.delijn.be/stops/206800", "https://data.delijn.be/stops/208603"], ["https://data.delijn.be/stops/208027", "https://data.delijn.be/stops/209096"], ["https://data.delijn.be/stops/106469", "https://data.delijn.be/stops/107046"], ["https://data.delijn.be/stops/403644", "https://data.delijn.be/stops/407271"], ["https://data.delijn.be/stops/201948", "https://data.delijn.be/stops/201953"], ["https://data.delijn.be/stops/200896", "https://data.delijn.be/stops/203054"], ["https://data.delijn.be/stops/200114", "https://data.delijn.be/stops/210073"], ["https://data.delijn.be/stops/503342", "https://data.delijn.be/stops/508343"], ["https://data.delijn.be/stops/408652", "https://data.delijn.be/stops/408656"], ["https://data.delijn.be/stops/408672", "https://data.delijn.be/stops/408807"], ["https://data.delijn.be/stops/108021", "https://data.delijn.be/stops/108023"], ["https://data.delijn.be/stops/201861", "https://data.delijn.be/stops/203725"], ["https://data.delijn.be/stops/305328", "https://data.delijn.be/stops/305329"], ["https://data.delijn.be/stops/302330", "https://data.delijn.be/stops/304068"], ["https://data.delijn.be/stops/407599", "https://data.delijn.be/stops/410298"], ["https://data.delijn.be/stops/503285", "https://data.delijn.be/stops/505954"], ["https://data.delijn.be/stops/300392", "https://data.delijn.be/stops/306386"], ["https://data.delijn.be/stops/108330", "https://data.delijn.be/stops/108730"], ["https://data.delijn.be/stops/204692", "https://data.delijn.be/stops/205323"], ["https://data.delijn.be/stops/209790", "https://data.delijn.be/stops/209791"], ["https://data.delijn.be/stops/302213", "https://data.delijn.be/stops/302215"], ["https://data.delijn.be/stops/407761", "https://data.delijn.be/stops/409788"], ["https://data.delijn.be/stops/109084", "https://data.delijn.be/stops/109313"], ["https://data.delijn.be/stops/107021", "https://data.delijn.be/stops/107023"], ["https://data.delijn.be/stops/103055", "https://data.delijn.be/stops/104135"], ["https://data.delijn.be/stops/102838", "https://data.delijn.be/stops/103049"], ["https://data.delijn.be/stops/210063", "https://data.delijn.be/stops/211119"], ["https://data.delijn.be/stops/406054", "https://data.delijn.be/stops/406144"], ["https://data.delijn.be/stops/204547", "https://data.delijn.be/stops/205501"], ["https://data.delijn.be/stops/108068", "https://data.delijn.be/stops/108868"], ["https://data.delijn.be/stops/200698", "https://data.delijn.be/stops/201745"], ["https://data.delijn.be/stops/303282", "https://data.delijn.be/stops/304658"], ["https://data.delijn.be/stops/302548", "https://data.delijn.be/stops/302557"], ["https://data.delijn.be/stops/202011", "https://data.delijn.be/stops/203654"], ["https://data.delijn.be/stops/503318", "https://data.delijn.be/stops/503963"], ["https://data.delijn.be/stops/404722", "https://data.delijn.be/stops/404801"], ["https://data.delijn.be/stops/401966", "https://data.delijn.be/stops/403073"], ["https://data.delijn.be/stops/400875", "https://data.delijn.be/stops/409646"], ["https://data.delijn.be/stops/101926", "https://data.delijn.be/stops/107069"], ["https://data.delijn.be/stops/105269", "https://data.delijn.be/stops/105272"], ["https://data.delijn.be/stops/206597", "https://data.delijn.be/stops/207597"], ["https://data.delijn.be/stops/208016", "https://data.delijn.be/stops/208017"], ["https://data.delijn.be/stops/401226", "https://data.delijn.be/stops/401275"], ["https://data.delijn.be/stops/409642", "https://data.delijn.be/stops/410334"], ["https://data.delijn.be/stops/207113", "https://data.delijn.be/stops/207906"], ["https://data.delijn.be/stops/303062", "https://data.delijn.be/stops/304229"], ["https://data.delijn.be/stops/302534", "https://data.delijn.be/stops/302546"], ["https://data.delijn.be/stops/102300", "https://data.delijn.be/stops/104490"], ["https://data.delijn.be/stops/202435", "https://data.delijn.be/stops/203716"], ["https://data.delijn.be/stops/200449", "https://data.delijn.be/stops/202353"], ["https://data.delijn.be/stops/306764", "https://data.delijn.be/stops/308816"], ["https://data.delijn.be/stops/302377", "https://data.delijn.be/stops/302387"], ["https://data.delijn.be/stops/108123", "https://data.delijn.be/stops/109586"], ["https://data.delijn.be/stops/203327", "https://data.delijn.be/stops/203429"], ["https://data.delijn.be/stops/507223", "https://data.delijn.be/stops/507224"], ["https://data.delijn.be/stops/107014", "https://data.delijn.be/stops/107067"], ["https://data.delijn.be/stops/409009", "https://data.delijn.be/stops/409017"], ["https://data.delijn.be/stops/509601", "https://data.delijn.be/stops/509607"], ["https://data.delijn.be/stops/300546", "https://data.delijn.be/stops/300550"], ["https://data.delijn.be/stops/503378", "https://data.delijn.be/stops/508531"], ["https://data.delijn.be/stops/104060", "https://data.delijn.be/stops/108145"], ["https://data.delijn.be/stops/407200", "https://data.delijn.be/stops/407201"], ["https://data.delijn.be/stops/201355", "https://data.delijn.be/stops/209725"], ["https://data.delijn.be/stops/402641", "https://data.delijn.be/stops/402948"], ["https://data.delijn.be/stops/300963", "https://data.delijn.be/stops/300964"], ["https://data.delijn.be/stops/400840", "https://data.delijn.be/stops/409575"], ["https://data.delijn.be/stops/305920", "https://data.delijn.be/stops/306254"], ["https://data.delijn.be/stops/300336", "https://data.delijn.be/stops/304458"], ["https://data.delijn.be/stops/504772", "https://data.delijn.be/stops/509534"], ["https://data.delijn.be/stops/408881", "https://data.delijn.be/stops/408886"], ["https://data.delijn.be/stops/201002", "https://data.delijn.be/stops/203018"], ["https://data.delijn.be/stops/403005", "https://data.delijn.be/stops/404531"], ["https://data.delijn.be/stops/409064", "https://data.delijn.be/stops/409121"], ["https://data.delijn.be/stops/400564", "https://data.delijn.be/stops/400577"], ["https://data.delijn.be/stops/302861", "https://data.delijn.be/stops/307072"], ["https://data.delijn.be/stops/209063", "https://data.delijn.be/stops/209064"], ["https://data.delijn.be/stops/105801", "https://data.delijn.be/stops/105812"], ["https://data.delijn.be/stops/101906", "https://data.delijn.be/stops/101923"], ["https://data.delijn.be/stops/201914", "https://data.delijn.be/stops/202949"], ["https://data.delijn.be/stops/403835", "https://data.delijn.be/stops/405635"], ["https://data.delijn.be/stops/503010", "https://data.delijn.be/stops/505278"], ["https://data.delijn.be/stops/200678", "https://data.delijn.be/stops/201808"], ["https://data.delijn.be/stops/206340", "https://data.delijn.be/stops/207339"], ["https://data.delijn.be/stops/509448", "https://data.delijn.be/stops/509964"], ["https://data.delijn.be/stops/204145", "https://data.delijn.be/stops/207888"], ["https://data.delijn.be/stops/301455", "https://data.delijn.be/stops/301467"], ["https://data.delijn.be/stops/405916", "https://data.delijn.be/stops/405967"], ["https://data.delijn.be/stops/102838", "https://data.delijn.be/stops/103535"], ["https://data.delijn.be/stops/505673", "https://data.delijn.be/stops/505688"], ["https://data.delijn.be/stops/208613", "https://data.delijn.be/stops/209614"], ["https://data.delijn.be/stops/206472", "https://data.delijn.be/stops/207471"], ["https://data.delijn.be/stops/404178", "https://data.delijn.be/stops/404188"], ["https://data.delijn.be/stops/105253", "https://data.delijn.be/stops/105841"], ["https://data.delijn.be/stops/200595", "https://data.delijn.be/stops/200598"], ["https://data.delijn.be/stops/303151", "https://data.delijn.be/stops/303182"], ["https://data.delijn.be/stops/401081", "https://data.delijn.be/stops/401147"], ["https://data.delijn.be/stops/302589", "https://data.delijn.be/stops/302606"], ["https://data.delijn.be/stops/508186", "https://data.delijn.be/stops/508216"], ["https://data.delijn.be/stops/200588", "https://data.delijn.be/stops/211200"], ["https://data.delijn.be/stops/303984", "https://data.delijn.be/stops/305869"], ["https://data.delijn.be/stops/203744", "https://data.delijn.be/stops/203856"], ["https://data.delijn.be/stops/501123", "https://data.delijn.be/stops/505757"], ["https://data.delijn.be/stops/304459", "https://data.delijn.be/stops/307089"], ["https://data.delijn.be/stops/400509", "https://data.delijn.be/stops/404049"], ["https://data.delijn.be/stops/202580", "https://data.delijn.be/stops/202597"], ["https://data.delijn.be/stops/405339", "https://data.delijn.be/stops/305062"], ["https://data.delijn.be/stops/403241", "https://data.delijn.be/stops/403861"], ["https://data.delijn.be/stops/202352", "https://data.delijn.be/stops/202353"], ["https://data.delijn.be/stops/101948", "https://data.delijn.be/stops/108747"], ["https://data.delijn.be/stops/500135", "https://data.delijn.be/stops/500136"], ["https://data.delijn.be/stops/400966", "https://data.delijn.be/stops/406550"], ["https://data.delijn.be/stops/106272", "https://data.delijn.be/stops/106274"], ["https://data.delijn.be/stops/307216", "https://data.delijn.be/stops/307218"], ["https://data.delijn.be/stops/407381", "https://data.delijn.be/stops/407598"], ["https://data.delijn.be/stops/403455", "https://data.delijn.be/stops/410212"], ["https://data.delijn.be/stops/109852", "https://data.delijn.be/stops/109859"], ["https://data.delijn.be/stops/505238", "https://data.delijn.be/stops/505756"], ["https://data.delijn.be/stops/101976", "https://data.delijn.be/stops/109059"], ["https://data.delijn.be/stops/500954", "https://data.delijn.be/stops/504181"], ["https://data.delijn.be/stops/404870", "https://data.delijn.be/stops/404883"], ["https://data.delijn.be/stops/402641", "https://data.delijn.be/stops/405561"], ["https://data.delijn.be/stops/101865", "https://data.delijn.be/stops/103640"], ["https://data.delijn.be/stops/200907", "https://data.delijn.be/stops/202251"], ["https://data.delijn.be/stops/501694", "https://data.delijn.be/stops/502532"], ["https://data.delijn.be/stops/400475", "https://data.delijn.be/stops/408695"], ["https://data.delijn.be/stops/202083", "https://data.delijn.be/stops/203083"], ["https://data.delijn.be/stops/300907", "https://data.delijn.be/stops/308819"], ["https://data.delijn.be/stops/402545", "https://data.delijn.be/stops/404093"], ["https://data.delijn.be/stops/303129", "https://data.delijn.be/stops/303135"], ["https://data.delijn.be/stops/503665", "https://data.delijn.be/stops/505365"], ["https://data.delijn.be/stops/301435", "https://data.delijn.be/stops/301438"], ["https://data.delijn.be/stops/402117", "https://data.delijn.be/stops/402139"], ["https://data.delijn.be/stops/205130", "https://data.delijn.be/stops/207638"], ["https://data.delijn.be/stops/201145", "https://data.delijn.be/stops/208842"], ["https://data.delijn.be/stops/200236", "https://data.delijn.be/stops/201237"], ["https://data.delijn.be/stops/204532", "https://data.delijn.be/stops/205293"], ["https://data.delijn.be/stops/207221", "https://data.delijn.be/stops/207347"], ["https://data.delijn.be/stops/400573", "https://data.delijn.be/stops/408458"], ["https://data.delijn.be/stops/305555", "https://data.delijn.be/stops/305558"], ["https://data.delijn.be/stops/400033", "https://data.delijn.be/stops/400681"], ["https://data.delijn.be/stops/103681", "https://data.delijn.be/stops/107787"], ["https://data.delijn.be/stops/402731", "https://data.delijn.be/stops/410056"], ["https://data.delijn.be/stops/204002", "https://data.delijn.be/stops/205213"], ["https://data.delijn.be/stops/301644", "https://data.delijn.be/stops/301645"], ["https://data.delijn.be/stops/403378", "https://data.delijn.be/stops/403466"], ["https://data.delijn.be/stops/407756", "https://data.delijn.be/stops/409792"], ["https://data.delijn.be/stops/203947", "https://data.delijn.be/stops/211065"], ["https://data.delijn.be/stops/101196", "https://data.delijn.be/stops/101198"], ["https://data.delijn.be/stops/505979", "https://data.delijn.be/stops/508666"], ["https://data.delijn.be/stops/204296", "https://data.delijn.be/stops/204297"], ["https://data.delijn.be/stops/401355", "https://data.delijn.be/stops/406070"], ["https://data.delijn.be/stops/202109", "https://data.delijn.be/stops/203109"], ["https://data.delijn.be/stops/300374", "https://data.delijn.be/stops/300382"], ["https://data.delijn.be/stops/400555", "https://data.delijn.be/stops/403226"], ["https://data.delijn.be/stops/407016", "https://data.delijn.be/stops/407017"], ["https://data.delijn.be/stops/205213", "https://data.delijn.be/stops/205214"], ["https://data.delijn.be/stops/208608", "https://data.delijn.be/stops/208615"], ["https://data.delijn.be/stops/209215", "https://data.delijn.be/stops/209216"], ["https://data.delijn.be/stops/203273", "https://data.delijn.be/stops/203669"], ["https://data.delijn.be/stops/400640", "https://data.delijn.be/stops/400962"], ["https://data.delijn.be/stops/406179", "https://data.delijn.be/stops/406202"], ["https://data.delijn.be/stops/106910", "https://data.delijn.be/stops/107259"], ["https://data.delijn.be/stops/407494", "https://data.delijn.be/stops/407495"], ["https://data.delijn.be/stops/407382", "https://data.delijn.be/stops/407857"], ["https://data.delijn.be/stops/503154", "https://data.delijn.be/stops/504840"], ["https://data.delijn.be/stops/501107", "https://data.delijn.be/stops/506107"], ["https://data.delijn.be/stops/300821", "https://data.delijn.be/stops/300822"], ["https://data.delijn.be/stops/106919", "https://data.delijn.be/stops/106947"], ["https://data.delijn.be/stops/202679", "https://data.delijn.be/stops/202680"], ["https://data.delijn.be/stops/208732", "https://data.delijn.be/stops/209663"], ["https://data.delijn.be/stops/103152", "https://data.delijn.be/stops/109993"], ["https://data.delijn.be/stops/201103", "https://data.delijn.be/stops/201361"], ["https://data.delijn.be/stops/403310", "https://data.delijn.be/stops/403312"], ["https://data.delijn.be/stops/503970", "https://data.delijn.be/stops/508204"], ["https://data.delijn.be/stops/104514", "https://data.delijn.be/stops/107798"], ["https://data.delijn.be/stops/300472", "https://data.delijn.be/stops/308062"], ["https://data.delijn.be/stops/504858", "https://data.delijn.be/stops/505819"], ["https://data.delijn.be/stops/508183", "https://data.delijn.be/stops/508214"], ["https://data.delijn.be/stops/200147", "https://data.delijn.be/stops/200567"], ["https://data.delijn.be/stops/302356", "https://data.delijn.be/stops/306186"], ["https://data.delijn.be/stops/204110", "https://data.delijn.be/stops/204685"], ["https://data.delijn.be/stops/202133", "https://data.delijn.be/stops/210058"], ["https://data.delijn.be/stops/407286", "https://data.delijn.be/stops/407287"], ["https://data.delijn.be/stops/404855", "https://data.delijn.be/stops/404944"], ["https://data.delijn.be/stops/503927", "https://data.delijn.be/stops/508927"], ["https://data.delijn.be/stops/102030", "https://data.delijn.be/stops/105165"], ["https://data.delijn.be/stops/406289", "https://data.delijn.be/stops/409404"], ["https://data.delijn.be/stops/200394", "https://data.delijn.be/stops/201396"], ["https://data.delijn.be/stops/402670", "https://data.delijn.be/stops/402729"], ["https://data.delijn.be/stops/508046", "https://data.delijn.be/stops/508958"], ["https://data.delijn.be/stops/200193", "https://data.delijn.be/stops/201181"], ["https://data.delijn.be/stops/300022", "https://data.delijn.be/stops/300411"], ["https://data.delijn.be/stops/101360", "https://data.delijn.be/stops/102763"], ["https://data.delijn.be/stops/408092", "https://data.delijn.be/stops/408158"], ["https://data.delijn.be/stops/204911", "https://data.delijn.be/stops/205912"], ["https://data.delijn.be/stops/400719", "https://data.delijn.be/stops/409511"], ["https://data.delijn.be/stops/207878", "https://data.delijn.be/stops/207934"], ["https://data.delijn.be/stops/206266", "https://data.delijn.be/stops/206525"], ["https://data.delijn.be/stops/404224", "https://data.delijn.be/stops/404226"], ["https://data.delijn.be/stops/505014", "https://data.delijn.be/stops/507356"], ["https://data.delijn.be/stops/103487", "https://data.delijn.be/stops/109158"], ["https://data.delijn.be/stops/209298", "https://data.delijn.be/stops/218022"], ["https://data.delijn.be/stops/101009", "https://data.delijn.be/stops/103690"], ["https://data.delijn.be/stops/305913", "https://data.delijn.be/stops/307807"], ["https://data.delijn.be/stops/208095", "https://data.delijn.be/stops/209404"], ["https://data.delijn.be/stops/503192", "https://data.delijn.be/stops/508192"], ["https://data.delijn.be/stops/101777", "https://data.delijn.be/stops/107589"], ["https://data.delijn.be/stops/403946", "https://data.delijn.be/stops/404028"], ["https://data.delijn.be/stops/302220", "https://data.delijn.be/stops/302243"], ["https://data.delijn.be/stops/505257", "https://data.delijn.be/stops/508672"], ["https://data.delijn.be/stops/101418", "https://data.delijn.be/stops/108715"], ["https://data.delijn.be/stops/304116", "https://data.delijn.be/stops/307969"], ["https://data.delijn.be/stops/202479", "https://data.delijn.be/stops/203954"], ["https://data.delijn.be/stops/108684", "https://data.delijn.be/stops/108828"], ["https://data.delijn.be/stops/405321", "https://data.delijn.be/stops/405348"], ["https://data.delijn.be/stops/404123", "https://data.delijn.be/stops/410214"], ["https://data.delijn.be/stops/106019", "https://data.delijn.be/stops/106188"], ["https://data.delijn.be/stops/505134", "https://data.delijn.be/stops/508994"], ["https://data.delijn.be/stops/207976", "https://data.delijn.be/stops/307771"], ["https://data.delijn.be/stops/208078", "https://data.delijn.be/stops/209143"], ["https://data.delijn.be/stops/300062", "https://data.delijn.be/stops/306068"], ["https://data.delijn.be/stops/105006", "https://data.delijn.be/stops/106833"], ["https://data.delijn.be/stops/303869", "https://data.delijn.be/stops/303870"], ["https://data.delijn.be/stops/404171", "https://data.delijn.be/stops/404241"], ["https://data.delijn.be/stops/103257", "https://data.delijn.be/stops/103258"], ["https://data.delijn.be/stops/303680", "https://data.delijn.be/stops/305442"], ["https://data.delijn.be/stops/401247", "https://data.delijn.be/stops/401255"], ["https://data.delijn.be/stops/206532", "https://data.delijn.be/stops/207413"], ["https://data.delijn.be/stops/109501", "https://data.delijn.be/stops/109561"], ["https://data.delijn.be/stops/404478", "https://data.delijn.be/stops/406753"], ["https://data.delijn.be/stops/300181", "https://data.delijn.be/stops/300227"], ["https://data.delijn.be/stops/202037", "https://data.delijn.be/stops/203037"], ["https://data.delijn.be/stops/106088", "https://data.delijn.be/stops/108472"], ["https://data.delijn.be/stops/209210", "https://data.delijn.be/stops/209213"], ["https://data.delijn.be/stops/302652", "https://data.delijn.be/stops/302655"], ["https://data.delijn.be/stops/302611", "https://data.delijn.be/stops/302629"], ["https://data.delijn.be/stops/403951", "https://data.delijn.be/stops/403952"], ["https://data.delijn.be/stops/204366", "https://data.delijn.be/stops/204367"], ["https://data.delijn.be/stops/400092", "https://data.delijn.be/stops/409143"], ["https://data.delijn.be/stops/101440", "https://data.delijn.be/stops/103208"], ["https://data.delijn.be/stops/202788", "https://data.delijn.be/stops/210027"], ["https://data.delijn.be/stops/102693", "https://data.delijn.be/stops/104835"], ["https://data.delijn.be/stops/101672", "https://data.delijn.be/stops/107663"], ["https://data.delijn.be/stops/405871", "https://data.delijn.be/stops/409433"], ["https://data.delijn.be/stops/107053", "https://data.delijn.be/stops/107055"], ["https://data.delijn.be/stops/307933", "https://data.delijn.be/stops/307935"], ["https://data.delijn.be/stops/303652", "https://data.delijn.be/stops/308529"], ["https://data.delijn.be/stops/207445", "https://data.delijn.be/stops/207518"], ["https://data.delijn.be/stops/502540", "https://data.delijn.be/stops/502545"], ["https://data.delijn.be/stops/104093", "https://data.delijn.be/stops/107714"], ["https://data.delijn.be/stops/206531", "https://data.delijn.be/stops/207538"], ["https://data.delijn.be/stops/206285", "https://data.delijn.be/stops/206287"], ["https://data.delijn.be/stops/102207", "https://data.delijn.be/stops/106238"], ["https://data.delijn.be/stops/302584", "https://data.delijn.be/stops/302596"], ["https://data.delijn.be/stops/502535", "https://data.delijn.be/stops/507746"], ["https://data.delijn.be/stops/400630", "https://data.delijn.be/stops/400634"], ["https://data.delijn.be/stops/302586", "https://data.delijn.be/stops/303611"], ["https://data.delijn.be/stops/206866", "https://data.delijn.be/stops/209295"], ["https://data.delijn.be/stops/103334", "https://data.delijn.be/stops/106471"], ["https://data.delijn.be/stops/405655", "https://data.delijn.be/stops/408894"], ["https://data.delijn.be/stops/307910", "https://data.delijn.be/stops/307911"], ["https://data.delijn.be/stops/207882", "https://data.delijn.be/stops/207914"], ["https://data.delijn.be/stops/302032", "https://data.delijn.be/stops/304632"], ["https://data.delijn.be/stops/206776", "https://data.delijn.be/stops/208486"], ["https://data.delijn.be/stops/206032", "https://data.delijn.be/stops/206922"], ["https://data.delijn.be/stops/504841", "https://data.delijn.be/stops/509764"], ["https://data.delijn.be/stops/200911", "https://data.delijn.be/stops/203255"], ["https://data.delijn.be/stops/308016", "https://data.delijn.be/stops/308019"], ["https://data.delijn.be/stops/403998", "https://data.delijn.be/stops/404033"], ["https://data.delijn.be/stops/303962", "https://data.delijn.be/stops/307492"], ["https://data.delijn.be/stops/101147", "https://data.delijn.be/stops/106858"], ["https://data.delijn.be/stops/504647", "https://data.delijn.be/stops/509657"], ["https://data.delijn.be/stops/300408", "https://data.delijn.be/stops/301997"], ["https://data.delijn.be/stops/200051", "https://data.delijn.be/stops/211113"], ["https://data.delijn.be/stops/103117", "https://data.delijn.be/stops/107368"], ["https://data.delijn.be/stops/103488", "https://data.delijn.be/stops/103494"], ["https://data.delijn.be/stops/503975", "https://data.delijn.be/stops/508975"], ["https://data.delijn.be/stops/204692", "https://data.delijn.be/stops/205692"], ["https://data.delijn.be/stops/503376", "https://data.delijn.be/stops/503408"], ["https://data.delijn.be/stops/302089", "https://data.delijn.be/stops/302277"], ["https://data.delijn.be/stops/300835", "https://data.delijn.be/stops/302284"], ["https://data.delijn.be/stops/401436", "https://data.delijn.be/stops/401961"], ["https://data.delijn.be/stops/206132", "https://data.delijn.be/stops/207131"], ["https://data.delijn.be/stops/102246", "https://data.delijn.be/stops/102863"], ["https://data.delijn.be/stops/400339", "https://data.delijn.be/stops/400972"], ["https://data.delijn.be/stops/206549", "https://data.delijn.be/stops/207648"], ["https://data.delijn.be/stops/406083", "https://data.delijn.be/stops/406086"], ["https://data.delijn.be/stops/401010", "https://data.delijn.be/stops/401059"], ["https://data.delijn.be/stops/301035", "https://data.delijn.be/stops/308819"], ["https://data.delijn.be/stops/206196", "https://data.delijn.be/stops/207854"], ["https://data.delijn.be/stops/200844", "https://data.delijn.be/stops/203300"], ["https://data.delijn.be/stops/201390", "https://data.delijn.be/stops/202652"], ["https://data.delijn.be/stops/504249", "https://data.delijn.be/stops/509443"], ["https://data.delijn.be/stops/202425", "https://data.delijn.be/stops/203424"], ["https://data.delijn.be/stops/303548", "https://data.delijn.be/stops/304317"], ["https://data.delijn.be/stops/403159", "https://data.delijn.be/stops/410213"], ["https://data.delijn.be/stops/509812", "https://data.delijn.be/stops/509827"], ["https://data.delijn.be/stops/101929", "https://data.delijn.be/stops/108384"], ["https://data.delijn.be/stops/504687", "https://data.delijn.be/stops/504761"], ["https://data.delijn.be/stops/406252", "https://data.delijn.be/stops/406253"], ["https://data.delijn.be/stops/506348", "https://data.delijn.be/stops/506546"], ["https://data.delijn.be/stops/302295", "https://data.delijn.be/stops/303494"], ["https://data.delijn.be/stops/105449", "https://data.delijn.be/stops/109937"], ["https://data.delijn.be/stops/505409", "https://data.delijn.be/stops/508041"], ["https://data.delijn.be/stops/204751", "https://data.delijn.be/stops/205752"], ["https://data.delijn.be/stops/205974", "https://data.delijn.be/stops/208237"], ["https://data.delijn.be/stops/208574", "https://data.delijn.be/stops/208598"], ["https://data.delijn.be/stops/403806", "https://data.delijn.be/stops/403807"], ["https://data.delijn.be/stops/106957", "https://data.delijn.be/stops/107269"], ["https://data.delijn.be/stops/201074", "https://data.delijn.be/stops/201448"], ["https://data.delijn.be/stops/302535", "https://data.delijn.be/stops/302537"], ["https://data.delijn.be/stops/104778", "https://data.delijn.be/stops/108158"], ["https://data.delijn.be/stops/503941", "https://data.delijn.be/stops/509940"], ["https://data.delijn.be/stops/403702", "https://data.delijn.be/stops/403704"], ["https://data.delijn.be/stops/200972", "https://data.delijn.be/stops/202861"], ["https://data.delijn.be/stops/401208", "https://data.delijn.be/stops/401270"], ["https://data.delijn.be/stops/301428", "https://data.delijn.be/stops/307321"], ["https://data.delijn.be/stops/307567", "https://data.delijn.be/stops/307569"], ["https://data.delijn.be/stops/300513", "https://data.delijn.be/stops/300530"], ["https://data.delijn.be/stops/205002", "https://data.delijn.be/stops/205064"], ["https://data.delijn.be/stops/106586", "https://data.delijn.be/stops/106588"], ["https://data.delijn.be/stops/406722", "https://data.delijn.be/stops/408643"], ["https://data.delijn.be/stops/102976", "https://data.delijn.be/stops/107521"], ["https://data.delijn.be/stops/204129", "https://data.delijn.be/stops/204130"], ["https://data.delijn.be/stops/406151", "https://data.delijn.be/stops/406153"], ["https://data.delijn.be/stops/406900", "https://data.delijn.be/stops/406901"], ["https://data.delijn.be/stops/301991", "https://data.delijn.be/stops/303092"], ["https://data.delijn.be/stops/505948", "https://data.delijn.be/stops/508304"], ["https://data.delijn.be/stops/503386", "https://data.delijn.be/stops/509771"], ["https://data.delijn.be/stops/201825", "https://data.delijn.be/stops/203754"], ["https://data.delijn.be/stops/201026", "https://data.delijn.be/stops/201033"], ["https://data.delijn.be/stops/505353", "https://data.delijn.be/stops/507296"], ["https://data.delijn.be/stops/406577", "https://data.delijn.be/stops/407191"], ["https://data.delijn.be/stops/400882", "https://data.delijn.be/stops/409613"], ["https://data.delijn.be/stops/206230", "https://data.delijn.be/stops/206234"], ["https://data.delijn.be/stops/208371", "https://data.delijn.be/stops/209371"], ["https://data.delijn.be/stops/502556", "https://data.delijn.be/stops/505735"], ["https://data.delijn.be/stops/302882", "https://data.delijn.be/stops/306276"], ["https://data.delijn.be/stops/201903", "https://data.delijn.be/stops/202472"], ["https://data.delijn.be/stops/109968", "https://data.delijn.be/stops/109969"], ["https://data.delijn.be/stops/303860", "https://data.delijn.be/stops/303866"], ["https://data.delijn.be/stops/303064", "https://data.delijn.be/stops/304472"], ["https://data.delijn.be/stops/501374", "https://data.delijn.be/stops/506375"], ["https://data.delijn.be/stops/109004", "https://data.delijn.be/stops/109007"], ["https://data.delijn.be/stops/409705", "https://data.delijn.be/stops/409710"], ["https://data.delijn.be/stops/407889", "https://data.delijn.be/stops/408443"], ["https://data.delijn.be/stops/108081", "https://data.delijn.be/stops/108450"], ["https://data.delijn.be/stops/107902", "https://data.delijn.be/stops/108951"], ["https://data.delijn.be/stops/205184", "https://data.delijn.be/stops/205383"], ["https://data.delijn.be/stops/101534", "https://data.delijn.be/stops/109501"], ["https://data.delijn.be/stops/101942", "https://data.delijn.be/stops/101951"], ["https://data.delijn.be/stops/503154", "https://data.delijn.be/stops/508152"], ["https://data.delijn.be/stops/301010", "https://data.delijn.be/stops/301012"], ["https://data.delijn.be/stops/300016", "https://data.delijn.be/stops/301123"], ["https://data.delijn.be/stops/408264", "https://data.delijn.be/stops/408413"], ["https://data.delijn.be/stops/208212", "https://data.delijn.be/stops/208800"], ["https://data.delijn.be/stops/405619", "https://data.delijn.be/stops/407163"], ["https://data.delijn.be/stops/107719", "https://data.delijn.be/stops/107721"], ["https://data.delijn.be/stops/207789", "https://data.delijn.be/stops/209372"], ["https://data.delijn.be/stops/301098", "https://data.delijn.be/stops/307197"], ["https://data.delijn.be/stops/201779", "https://data.delijn.be/stops/208248"], ["https://data.delijn.be/stops/204013", "https://data.delijn.be/stops/204686"], ["https://data.delijn.be/stops/104680", "https://data.delijn.be/stops/105950"], ["https://data.delijn.be/stops/505842", "https://data.delijn.be/stops/509239"], ["https://data.delijn.be/stops/303367", "https://data.delijn.be/stops/308717"], ["https://data.delijn.be/stops/108088", "https://data.delijn.be/stops/108688"], ["https://data.delijn.be/stops/402783", "https://data.delijn.be/stops/406921"], ["https://data.delijn.be/stops/504647", "https://data.delijn.be/stops/504657"], ["https://data.delijn.be/stops/402201", "https://data.delijn.be/stops/402316"], ["https://data.delijn.be/stops/102724", "https://data.delijn.be/stops/105383"], ["https://data.delijn.be/stops/402801", "https://data.delijn.be/stops/409018"], ["https://data.delijn.be/stops/202864", "https://data.delijn.be/stops/203879"], ["https://data.delijn.be/stops/301445", "https://data.delijn.be/stops/306416"], ["https://data.delijn.be/stops/204196", "https://data.delijn.be/stops/205194"], ["https://data.delijn.be/stops/302725", "https://data.delijn.be/stops/302726"], ["https://data.delijn.be/stops/400494", "https://data.delijn.be/stops/407210"], ["https://data.delijn.be/stops/200932", "https://data.delijn.be/stops/203256"], ["https://data.delijn.be/stops/200720", "https://data.delijn.be/stops/202621"], ["https://data.delijn.be/stops/101078", "https://data.delijn.be/stops/105969"], ["https://data.delijn.be/stops/502807", "https://data.delijn.be/stops/507261"], ["https://data.delijn.be/stops/304099", "https://data.delijn.be/stops/304117"], ["https://data.delijn.be/stops/205989", "https://data.delijn.be/stops/209549"], ["https://data.delijn.be/stops/403463", "https://data.delijn.be/stops/410013"], ["https://data.delijn.be/stops/503711", "https://data.delijn.be/stops/508715"], ["https://data.delijn.be/stops/301641", "https://data.delijn.be/stops/306155"], ["https://data.delijn.be/stops/401368", "https://data.delijn.be/stops/405467"], ["https://data.delijn.be/stops/302257", "https://data.delijn.be/stops/302265"], ["https://data.delijn.be/stops/408096", "https://data.delijn.be/stops/408097"], ["https://data.delijn.be/stops/307713", "https://data.delijn.be/stops/307717"], ["https://data.delijn.be/stops/106478", "https://data.delijn.be/stops/107461"], ["https://data.delijn.be/stops/104122", "https://data.delijn.be/stops/104225"], ["https://data.delijn.be/stops/300462", "https://data.delijn.be/stops/300463"], ["https://data.delijn.be/stops/304520", "https://data.delijn.be/stops/307560"], ["https://data.delijn.be/stops/407256", "https://data.delijn.be/stops/407257"], ["https://data.delijn.be/stops/501486", "https://data.delijn.be/stops/506138"], ["https://data.delijn.be/stops/300565", "https://data.delijn.be/stops/307863"], ["https://data.delijn.be/stops/403595", "https://data.delijn.be/stops/404316"], ["https://data.delijn.be/stops/405798", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/105282", "https://data.delijn.be/stops/109969"], ["https://data.delijn.be/stops/402021", "https://data.delijn.be/stops/402064"], ["https://data.delijn.be/stops/208762", "https://data.delijn.be/stops/209838"], ["https://data.delijn.be/stops/502566", "https://data.delijn.be/stops/502637"], ["https://data.delijn.be/stops/305481", "https://data.delijn.be/stops/307800"], ["https://data.delijn.be/stops/208951", "https://data.delijn.be/stops/209951"], ["https://data.delijn.be/stops/406374", "https://data.delijn.be/stops/410319"], ["https://data.delijn.be/stops/305681", "https://data.delijn.be/stops/305700"], ["https://data.delijn.be/stops/404835", "https://data.delijn.be/stops/404836"], ["https://data.delijn.be/stops/105018", "https://data.delijn.be/stops/105828"], ["https://data.delijn.be/stops/406568", "https://data.delijn.be/stops/406659"], ["https://data.delijn.be/stops/408246", "https://data.delijn.be/stops/308291"], ["https://data.delijn.be/stops/303784", "https://data.delijn.be/stops/303785"], ["https://data.delijn.be/stops/107116", "https://data.delijn.be/stops/107117"], ["https://data.delijn.be/stops/201346", "https://data.delijn.be/stops/202895"], ["https://data.delijn.be/stops/204047", "https://data.delijn.be/stops/205518"], ["https://data.delijn.be/stops/301387", "https://data.delijn.be/stops/301388"], ["https://data.delijn.be/stops/200144", "https://data.delijn.be/stops/200309"], ["https://data.delijn.be/stops/503053", "https://data.delijn.be/stops/503057"], ["https://data.delijn.be/stops/508230", "https://data.delijn.be/stops/509867"], ["https://data.delijn.be/stops/502591", "https://data.delijn.be/stops/507591"], ["https://data.delijn.be/stops/104450", "https://data.delijn.be/stops/105835"], ["https://data.delijn.be/stops/502288", "https://data.delijn.be/stops/502299"], ["https://data.delijn.be/stops/307720", "https://data.delijn.be/stops/307737"], ["https://data.delijn.be/stops/103961", "https://data.delijn.be/stops/108166"], ["https://data.delijn.be/stops/109838", "https://data.delijn.be/stops/109931"], ["https://data.delijn.be/stops/401780", "https://data.delijn.be/stops/406125"], ["https://data.delijn.be/stops/101974", "https://data.delijn.be/stops/307365"], ["https://data.delijn.be/stops/206474", "https://data.delijn.be/stops/207476"], ["https://data.delijn.be/stops/501411", "https://data.delijn.be/stops/506411"], ["https://data.delijn.be/stops/302362", "https://data.delijn.be/stops/302366"], ["https://data.delijn.be/stops/407491", "https://data.delijn.be/stops/408506"], ["https://data.delijn.be/stops/206915", "https://data.delijn.be/stops/207640"], ["https://data.delijn.be/stops/102504", "https://data.delijn.be/stops/400010"], ["https://data.delijn.be/stops/502005", "https://data.delijn.be/stops/505329"], ["https://data.delijn.be/stops/101891", "https://data.delijn.be/stops/108319"], ["https://data.delijn.be/stops/508057", "https://data.delijn.be/stops/508154"], ["https://data.delijn.be/stops/405549", "https://data.delijn.be/stops/410052"], ["https://data.delijn.be/stops/406285", "https://data.delijn.be/stops/410353"], ["https://data.delijn.be/stops/208135", "https://data.delijn.be/stops/209135"], ["https://data.delijn.be/stops/210085", "https://data.delijn.be/stops/211105"], ["https://data.delijn.be/stops/206452", "https://data.delijn.be/stops/206453"], ["https://data.delijn.be/stops/106802", "https://data.delijn.be/stops/106868"], ["https://data.delijn.be/stops/206708", "https://data.delijn.be/stops/207610"], ["https://data.delijn.be/stops/503787", "https://data.delijn.be/stops/505822"], ["https://data.delijn.be/stops/301721", "https://data.delijn.be/stops/305276"], ["https://data.delijn.be/stops/406586", "https://data.delijn.be/stops/406587"], ["https://data.delijn.be/stops/208126", "https://data.delijn.be/stops/208520"], ["https://data.delijn.be/stops/302422", "https://data.delijn.be/stops/302436"], ["https://data.delijn.be/stops/200880", "https://data.delijn.be/stops/203060"], ["https://data.delijn.be/stops/300232", "https://data.delijn.be/stops/300238"], ["https://data.delijn.be/stops/102603", "https://data.delijn.be/stops/107818"], ["https://data.delijn.be/stops/507326", "https://data.delijn.be/stops/507336"], ["https://data.delijn.be/stops/305339", "https://data.delijn.be/stops/308447"], ["https://data.delijn.be/stops/206795", "https://data.delijn.be/stops/209035"], ["https://data.delijn.be/stops/502637", "https://data.delijn.be/stops/507567"], ["https://data.delijn.be/stops/405310", "https://data.delijn.be/stops/302832"], ["https://data.delijn.be/stops/103481", "https://data.delijn.be/stops/109137"], ["https://data.delijn.be/stops/408620", "https://data.delijn.be/stops/410150"], ["https://data.delijn.be/stops/508604", "https://data.delijn.be/stops/508617"], ["https://data.delijn.be/stops/305918", "https://data.delijn.be/stops/306660"], ["https://data.delijn.be/stops/108067", "https://data.delijn.be/stops/108068"], ["https://data.delijn.be/stops/300634", "https://data.delijn.be/stops/306628"], ["https://data.delijn.be/stops/109638", "https://data.delijn.be/stops/109639"], ["https://data.delijn.be/stops/206633", "https://data.delijn.be/stops/206634"], ["https://data.delijn.be/stops/102022", "https://data.delijn.be/stops/109963"], ["https://data.delijn.be/stops/107556", "https://data.delijn.be/stops/108936"], ["https://data.delijn.be/stops/304013", "https://data.delijn.be/stops/304092"], ["https://data.delijn.be/stops/504336", "https://data.delijn.be/stops/505925"], ["https://data.delijn.be/stops/404758", "https://data.delijn.be/stops/404767"], ["https://data.delijn.be/stops/304283", "https://data.delijn.be/stops/308769"], ["https://data.delijn.be/stops/406048", "https://data.delijn.be/stops/406143"], ["https://data.delijn.be/stops/205093", "https://data.delijn.be/stops/205584"], ["https://data.delijn.be/stops/405646", "https://data.delijn.be/stops/408646"], ["https://data.delijn.be/stops/503455", "https://data.delijn.be/stops/508191"], ["https://data.delijn.be/stops/408258", "https://data.delijn.be/stops/410157"], ["https://data.delijn.be/stops/202335", "https://data.delijn.be/stops/211298"], ["https://data.delijn.be/stops/105751", "https://data.delijn.be/stops/109821"], ["https://data.delijn.be/stops/209142", "https://data.delijn.be/stops/209157"], ["https://data.delijn.be/stops/201813", "https://data.delijn.be/stops/209327"], ["https://data.delijn.be/stops/503515", "https://data.delijn.be/stops/508517"], ["https://data.delijn.be/stops/106210", "https://data.delijn.be/stops/106212"], ["https://data.delijn.be/stops/109177", "https://data.delijn.be/stops/109229"], ["https://data.delijn.be/stops/406634", "https://data.delijn.be/stops/408477"], ["https://data.delijn.be/stops/500007", "https://data.delijn.be/stops/503707"], ["https://data.delijn.be/stops/107876", "https://data.delijn.be/stops/205644"], ["https://data.delijn.be/stops/403300", "https://data.delijn.be/stops/404144"], ["https://data.delijn.be/stops/308527", "https://data.delijn.be/stops/308528"], ["https://data.delijn.be/stops/501200", "https://data.delijn.be/stops/501257"], ["https://data.delijn.be/stops/304823", "https://data.delijn.be/stops/304894"], ["https://data.delijn.be/stops/101557", "https://data.delijn.be/stops/102424"], ["https://data.delijn.be/stops/303121", "https://data.delijn.be/stops/304621"], ["https://data.delijn.be/stops/105997", "https://data.delijn.be/stops/106001"], ["https://data.delijn.be/stops/209602", "https://data.delijn.be/stops/307603"], ["https://data.delijn.be/stops/400657", "https://data.delijn.be/stops/407374"], ["https://data.delijn.be/stops/307151", "https://data.delijn.be/stops/307160"], ["https://data.delijn.be/stops/300305", "https://data.delijn.be/stops/306250"], ["https://data.delijn.be/stops/305968", "https://data.delijn.be/stops/306326"], ["https://data.delijn.be/stops/504447", "https://data.delijn.be/stops/509449"], ["https://data.delijn.be/stops/200751", "https://data.delijn.be/stops/208317"], ["https://data.delijn.be/stops/202304", "https://data.delijn.be/stops/202324"], ["https://data.delijn.be/stops/205382", "https://data.delijn.be/stops/205383"], ["https://data.delijn.be/stops/203516", "https://data.delijn.be/stops/203517"], ["https://data.delijn.be/stops/300927", "https://data.delijn.be/stops/300932"], ["https://data.delijn.be/stops/303288", "https://data.delijn.be/stops/303302"], ["https://data.delijn.be/stops/507043", "https://data.delijn.be/stops/507642"], ["https://data.delijn.be/stops/503144", "https://data.delijn.be/stops/503146"], ["https://data.delijn.be/stops/504638", "https://data.delijn.be/stops/509636"], ["https://data.delijn.be/stops/101913", "https://data.delijn.be/stops/103208"], ["https://data.delijn.be/stops/207504", "https://data.delijn.be/stops/207673"], ["https://data.delijn.be/stops/502140", "https://data.delijn.be/stops/507151"], ["https://data.delijn.be/stops/204341", "https://data.delijn.be/stops/214008"], ["https://data.delijn.be/stops/502225", "https://data.delijn.be/stops/505314"], ["https://data.delijn.be/stops/202823", "https://data.delijn.be/stops/219503"], ["https://data.delijn.be/stops/401045", "https://data.delijn.be/stops/409818"], ["https://data.delijn.be/stops/504800", "https://data.delijn.be/stops/507814"], ["https://data.delijn.be/stops/305571", "https://data.delijn.be/stops/307044"], ["https://data.delijn.be/stops/503871", "https://data.delijn.be/stops/504754"], ["https://data.delijn.be/stops/501050", "https://data.delijn.be/stops/505839"], ["https://data.delijn.be/stops/407942", "https://data.delijn.be/stops/407958"], ["https://data.delijn.be/stops/504092", "https://data.delijn.be/stops/509092"], ["https://data.delijn.be/stops/306721", "https://data.delijn.be/stops/306722"], ["https://data.delijn.be/stops/507018", "https://data.delijn.be/stops/508138"], ["https://data.delijn.be/stops/104461", "https://data.delijn.be/stops/104463"], ["https://data.delijn.be/stops/503079", "https://data.delijn.be/stops/503504"], ["https://data.delijn.be/stops/104381", "https://data.delijn.be/stops/104383"], ["https://data.delijn.be/stops/406168", "https://data.delijn.be/stops/406280"], ["https://data.delijn.be/stops/105733", "https://data.delijn.be/stops/109838"], ["https://data.delijn.be/stops/408723", "https://data.delijn.be/stops/410343"], ["https://data.delijn.be/stops/204051", "https://data.delijn.be/stops/204052"], ["https://data.delijn.be/stops/300507", "https://data.delijn.be/stops/300508"], ["https://data.delijn.be/stops/108677", "https://data.delijn.be/stops/406774"], ["https://data.delijn.be/stops/501413", "https://data.delijn.be/stops/501414"], ["https://data.delijn.be/stops/306200", "https://data.delijn.be/stops/306203"], ["https://data.delijn.be/stops/107587", "https://data.delijn.be/stops/107589"], ["https://data.delijn.be/stops/306744", "https://data.delijn.be/stops/306885"], ["https://data.delijn.be/stops/106158", "https://data.delijn.be/stops/106446"], ["https://data.delijn.be/stops/104852", "https://data.delijn.be/stops/301932"], ["https://data.delijn.be/stops/504739", "https://data.delijn.be/stops/509177"], ["https://data.delijn.be/stops/405626", "https://data.delijn.be/stops/407566"], ["https://data.delijn.be/stops/305335", "https://data.delijn.be/stops/305905"], ["https://data.delijn.be/stops/101590", "https://data.delijn.be/stops/104915"], ["https://data.delijn.be/stops/102991", "https://data.delijn.be/stops/105599"], ["https://data.delijn.be/stops/208611", "https://data.delijn.be/stops/209547"], ["https://data.delijn.be/stops/304376", "https://data.delijn.be/stops/307071"], ["https://data.delijn.be/stops/105048", "https://data.delijn.be/stops/109672"], ["https://data.delijn.be/stops/501138", "https://data.delijn.be/stops/506139"], ["https://data.delijn.be/stops/406115", "https://data.delijn.be/stops/407146"], ["https://data.delijn.be/stops/200392", "https://data.delijn.be/stops/201387"], ["https://data.delijn.be/stops/306091", "https://data.delijn.be/stops/306343"], ["https://data.delijn.be/stops/407608", "https://data.delijn.be/stops/409786"], ["https://data.delijn.be/stops/404674", "https://data.delijn.be/stops/410136"], ["https://data.delijn.be/stops/101255", "https://data.delijn.be/stops/103905"], ["https://data.delijn.be/stops/508880", "https://data.delijn.be/stops/508994"], ["https://data.delijn.be/stops/106251", "https://data.delijn.be/stops/106684"], ["https://data.delijn.be/stops/105410", "https://data.delijn.be/stops/106000"], ["https://data.delijn.be/stops/301936", "https://data.delijn.be/stops/303042"], ["https://data.delijn.be/stops/408148", "https://data.delijn.be/stops/408150"], ["https://data.delijn.be/stops/503461", "https://data.delijn.be/stops/503474"], ["https://data.delijn.be/stops/503338", "https://data.delijn.be/stops/503344"], ["https://data.delijn.be/stops/105472", "https://data.delijn.be/stops/109934"], ["https://data.delijn.be/stops/304768", "https://data.delijn.be/stops/304769"], ["https://data.delijn.be/stops/104703", "https://data.delijn.be/stops/107087"], ["https://data.delijn.be/stops/300380", "https://data.delijn.be/stops/306089"], ["https://data.delijn.be/stops/207751", "https://data.delijn.be/stops/207756"], ["https://data.delijn.be/stops/408582", "https://data.delijn.be/stops/408777"], ["https://data.delijn.be/stops/504780", "https://data.delijn.be/stops/508794"], ["https://data.delijn.be/stops/201775", "https://data.delijn.be/stops/209289"], ["https://data.delijn.be/stops/502066", "https://data.delijn.be/stops/507605"], ["https://data.delijn.be/stops/408625", "https://data.delijn.be/stops/410250"], ["https://data.delijn.be/stops/404336", "https://data.delijn.be/stops/404340"], ["https://data.delijn.be/stops/200171", "https://data.delijn.be/stops/201148"], ["https://data.delijn.be/stops/302661", "https://data.delijn.be/stops/302662"], ["https://data.delijn.be/stops/401785", "https://data.delijn.be/stops/406093"], ["https://data.delijn.be/stops/305643", "https://data.delijn.be/stops/305653"], ["https://data.delijn.be/stops/508070", "https://data.delijn.be/stops/508076"], ["https://data.delijn.be/stops/109128", "https://data.delijn.be/stops/109129"], ["https://data.delijn.be/stops/206846", "https://data.delijn.be/stops/306679"], ["https://data.delijn.be/stops/204406", "https://data.delijn.be/stops/204414"], ["https://data.delijn.be/stops/405181", "https://data.delijn.be/stops/405202"], ["https://data.delijn.be/stops/102248", "https://data.delijn.be/stops/102249"], ["https://data.delijn.be/stops/409120", "https://data.delijn.be/stops/409121"], ["https://data.delijn.be/stops/108178", "https://data.delijn.be/stops/108181"], ["https://data.delijn.be/stops/207679", "https://data.delijn.be/stops/209194"], ["https://data.delijn.be/stops/201464", "https://data.delijn.be/stops/205997"], ["https://data.delijn.be/stops/105751", "https://data.delijn.be/stops/109965"], ["https://data.delijn.be/stops/301169", "https://data.delijn.be/stops/304306"], ["https://data.delijn.be/stops/105743", "https://data.delijn.be/stops/109950"], ["https://data.delijn.be/stops/301698", "https://data.delijn.be/stops/301760"], ["https://data.delijn.be/stops/409255", "https://data.delijn.be/stops/409265"], ["https://data.delijn.be/stops/104402", "https://data.delijn.be/stops/205610"], ["https://data.delijn.be/stops/504386", "https://data.delijn.be/stops/504389"], ["https://data.delijn.be/stops/502795", "https://data.delijn.be/stops/507014"], ["https://data.delijn.be/stops/407757", "https://data.delijn.be/stops/409793"], ["https://data.delijn.be/stops/201240", "https://data.delijn.be/stops/201935"], ["https://data.delijn.be/stops/301892", "https://data.delijn.be/stops/301894"], ["https://data.delijn.be/stops/105606", "https://data.delijn.be/stops/105607"], ["https://data.delijn.be/stops/407133", "https://data.delijn.be/stops/407135"], ["https://data.delijn.be/stops/402167", "https://data.delijn.be/stops/406871"], ["https://data.delijn.be/stops/206547", "https://data.delijn.be/stops/207548"], ["https://data.delijn.be/stops/204379", "https://data.delijn.be/stops/205763"], ["https://data.delijn.be/stops/503676", "https://data.delijn.be/stops/508317"], ["https://data.delijn.be/stops/405562", "https://data.delijn.be/stops/405563"], ["https://data.delijn.be/stops/308507", "https://data.delijn.be/stops/308540"], ["https://data.delijn.be/stops/405302", "https://data.delijn.be/stops/405308"], ["https://data.delijn.be/stops/401285", "https://data.delijn.be/stops/410183"], ["https://data.delijn.be/stops/300245", "https://data.delijn.be/stops/300257"], ["https://data.delijn.be/stops/401596", "https://data.delijn.be/stops/401598"], ["https://data.delijn.be/stops/407154", "https://data.delijn.be/stops/407155"], ["https://data.delijn.be/stops/405367", "https://data.delijn.be/stops/405373"], ["https://data.delijn.be/stops/101607", "https://data.delijn.be/stops/109806"], ["https://data.delijn.be/stops/107909", "https://data.delijn.be/stops/107910"], ["https://data.delijn.be/stops/106382", "https://data.delijn.be/stops/106383"], ["https://data.delijn.be/stops/307358", "https://data.delijn.be/stops/307359"], ["https://data.delijn.be/stops/508663", "https://data.delijn.be/stops/508668"], ["https://data.delijn.be/stops/403413", "https://data.delijn.be/stops/403427"], ["https://data.delijn.be/stops/204241", "https://data.delijn.be/stops/204478"], ["https://data.delijn.be/stops/503793", "https://data.delijn.be/stops/505570"], ["https://data.delijn.be/stops/106713", "https://data.delijn.be/stops/106715"], ["https://data.delijn.be/stops/302337", "https://data.delijn.be/stops/306180"], ["https://data.delijn.be/stops/101992", "https://data.delijn.be/stops/104685"], ["https://data.delijn.be/stops/106426", "https://data.delijn.be/stops/106556"], ["https://data.delijn.be/stops/404969", "https://data.delijn.be/stops/404971"], ["https://data.delijn.be/stops/105666", "https://data.delijn.be/stops/105668"], ["https://data.delijn.be/stops/406998", "https://data.delijn.be/stops/407310"], ["https://data.delijn.be/stops/102650", "https://data.delijn.be/stops/103965"], ["https://data.delijn.be/stops/502146", "https://data.delijn.be/stops/502579"], ["https://data.delijn.be/stops/402209", "https://data.delijn.be/stops/402223"], ["https://data.delijn.be/stops/501497", "https://data.delijn.be/stops/501498"], ["https://data.delijn.be/stops/400966", "https://data.delijn.be/stops/407374"], ["https://data.delijn.be/stops/107889", "https://data.delijn.be/stops/107891"], ["https://data.delijn.be/stops/503170", "https://data.delijn.be/stops/508176"], ["https://data.delijn.be/stops/210079", "https://data.delijn.be/stops/211079"], ["https://data.delijn.be/stops/303779", "https://data.delijn.be/stops/303780"], ["https://data.delijn.be/stops/201583", "https://data.delijn.be/stops/201584"], ["https://data.delijn.be/stops/401520", "https://data.delijn.be/stops/402023"], ["https://data.delijn.be/stops/302948", "https://data.delijn.be/stops/302998"], ["https://data.delijn.be/stops/202276", "https://data.delijn.be/stops/205994"], ["https://data.delijn.be/stops/304550", "https://data.delijn.be/stops/304606"], ["https://data.delijn.be/stops/201752", "https://data.delijn.be/stops/209280"], ["https://data.delijn.be/stops/504445", "https://data.delijn.be/stops/509443"], ["https://data.delijn.be/stops/300500", "https://data.delijn.be/stops/308813"], ["https://data.delijn.be/stops/106052", "https://data.delijn.be/stops/106054"], ["https://data.delijn.be/stops/204344", "https://data.delijn.be/stops/204452"], ["https://data.delijn.be/stops/400645", "https://data.delijn.be/stops/407401"], ["https://data.delijn.be/stops/304933", "https://data.delijn.be/stops/305225"], ["https://data.delijn.be/stops/306626", "https://data.delijn.be/stops/308463"], ["https://data.delijn.be/stops/209118", "https://data.delijn.be/stops/209332"], ["https://data.delijn.be/stops/108240", "https://data.delijn.be/stops/109025"], ["https://data.delijn.be/stops/502096", "https://data.delijn.be/stops/507681"], ["https://data.delijn.be/stops/101958", "https://data.delijn.be/stops/102174"], ["https://data.delijn.be/stops/303164", "https://data.delijn.be/stops/303167"], ["https://data.delijn.be/stops/408637", "https://data.delijn.be/stops/408639"], ["https://data.delijn.be/stops/400328", "https://data.delijn.be/stops/400329"], ["https://data.delijn.be/stops/107701", "https://data.delijn.be/stops/109045"], ["https://data.delijn.be/stops/204465", "https://data.delijn.be/stops/205465"], ["https://data.delijn.be/stops/204218", "https://data.delijn.be/stops/204905"], ["https://data.delijn.be/stops/502429", "https://data.delijn.be/stops/507429"], ["https://data.delijn.be/stops/200747", "https://data.delijn.be/stops/201747"], ["https://data.delijn.be/stops/504064", "https://data.delijn.be/stops/505110"], ["https://data.delijn.be/stops/302252", "https://data.delijn.be/stops/302936"], ["https://data.delijn.be/stops/404212", "https://data.delijn.be/stops/404220"], ["https://data.delijn.be/stops/404572", "https://data.delijn.be/stops/406766"], ["https://data.delijn.be/stops/208772", "https://data.delijn.be/stops/209772"], ["https://data.delijn.be/stops/201495", "https://data.delijn.be/stops/210124"], ["https://data.delijn.be/stops/101673", "https://data.delijn.be/stops/406776"], ["https://data.delijn.be/stops/106812", "https://data.delijn.be/stops/106820"], ["https://data.delijn.be/stops/509393", "https://data.delijn.be/stops/509397"], ["https://data.delijn.be/stops/204982", "https://data.delijn.be/stops/206676"], ["https://data.delijn.be/stops/504352", "https://data.delijn.be/stops/504612"], ["https://data.delijn.be/stops/402240", "https://data.delijn.be/stops/402431"], ["https://data.delijn.be/stops/503733", "https://data.delijn.be/stops/504969"], ["https://data.delijn.be/stops/400137", "https://data.delijn.be/stops/400139"], ["https://data.delijn.be/stops/106849", "https://data.delijn.be/stops/106852"], ["https://data.delijn.be/stops/405952", "https://data.delijn.be/stops/405955"], ["https://data.delijn.be/stops/404141", "https://data.delijn.be/stops/405912"], ["https://data.delijn.be/stops/401162", "https://data.delijn.be/stops/401163"], ["https://data.delijn.be/stops/101135", "https://data.delijn.be/stops/101136"], ["https://data.delijn.be/stops/504021", "https://data.delijn.be/stops/505206"], ["https://data.delijn.be/stops/302609", "https://data.delijn.be/stops/308115"], ["https://data.delijn.be/stops/303653", "https://data.delijn.be/stops/308956"], ["https://data.delijn.be/stops/402984", "https://data.delijn.be/stops/410054"], ["https://data.delijn.be/stops/107176", "https://data.delijn.be/stops/107177"], ["https://data.delijn.be/stops/503326", "https://data.delijn.be/stops/505081"], ["https://data.delijn.be/stops/102407", "https://data.delijn.be/stops/405030"], ["https://data.delijn.be/stops/404619", "https://data.delijn.be/stops/404626"], ["https://data.delijn.be/stops/101963", "https://data.delijn.be/stops/109268"], ["https://data.delijn.be/stops/503409", "https://data.delijn.be/stops/508387"], ["https://data.delijn.be/stops/406207", "https://data.delijn.be/stops/406445"], ["https://data.delijn.be/stops/504402", "https://data.delijn.be/stops/509413"], ["https://data.delijn.be/stops/301641", "https://data.delijn.be/stops/304142"], ["https://data.delijn.be/stops/407953", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/202855", "https://data.delijn.be/stops/203857"], ["https://data.delijn.be/stops/402945", "https://data.delijn.be/stops/407299"], ["https://data.delijn.be/stops/200935", "https://data.delijn.be/stops/203715"], ["https://data.delijn.be/stops/208124", "https://data.delijn.be/stops/208666"], ["https://data.delijn.be/stops/200073", "https://data.delijn.be/stops/201234"], ["https://data.delijn.be/stops/302254", "https://data.delijn.be/stops/306370"], ["https://data.delijn.be/stops/502563", "https://data.delijn.be/stops/507563"], ["https://data.delijn.be/stops/202632", "https://data.delijn.be/stops/202634"], ["https://data.delijn.be/stops/106444", "https://data.delijn.be/stops/106446"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/506734"], ["https://data.delijn.be/stops/502014", "https://data.delijn.be/stops/507014"], ["https://data.delijn.be/stops/410085", "https://data.delijn.be/stops/410087"], ["https://data.delijn.be/stops/200263", "https://data.delijn.be/stops/201263"], ["https://data.delijn.be/stops/400724", "https://data.delijn.be/stops/400837"], ["https://data.delijn.be/stops/406148", "https://data.delijn.be/stops/406806"], ["https://data.delijn.be/stops/207542", "https://data.delijn.be/stops/216004"], ["https://data.delijn.be/stops/206523", "https://data.delijn.be/stops/207003"], ["https://data.delijn.be/stops/107696", "https://data.delijn.be/stops/107717"], ["https://data.delijn.be/stops/204986", "https://data.delijn.be/stops/503835"], ["https://data.delijn.be/stops/108451", "https://data.delijn.be/stops/108509"], ["https://data.delijn.be/stops/502261", "https://data.delijn.be/stops/507703"], ["https://data.delijn.be/stops/500928", "https://data.delijn.be/stops/501011"], ["https://data.delijn.be/stops/202567", "https://data.delijn.be/stops/204942"], ["https://data.delijn.be/stops/405921", "https://data.delijn.be/stops/405975"], ["https://data.delijn.be/stops/101825", "https://data.delijn.be/stops/102056"], ["https://data.delijn.be/stops/407395", "https://data.delijn.be/stops/407500"], ["https://data.delijn.be/stops/401980", "https://data.delijn.be/stops/406886"], ["https://data.delijn.be/stops/405505", "https://data.delijn.be/stops/407719"], ["https://data.delijn.be/stops/208058", "https://data.delijn.be/stops/209057"], ["https://data.delijn.be/stops/201630", "https://data.delijn.be/stops/203936"], ["https://data.delijn.be/stops/403647", "https://data.delijn.be/stops/404098"], ["https://data.delijn.be/stops/505340", "https://data.delijn.be/stops/505664"], ["https://data.delijn.be/stops/300437", "https://data.delijn.be/stops/300440"], ["https://data.delijn.be/stops/403750", "https://data.delijn.be/stops/403759"], ["https://data.delijn.be/stops/406138", "https://data.delijn.be/stops/406357"], ["https://data.delijn.be/stops/105033", "https://data.delijn.be/stops/106712"], ["https://data.delijn.be/stops/504016", "https://data.delijn.be/stops/504664"], ["https://data.delijn.be/stops/505163", "https://data.delijn.be/stops/505970"], ["https://data.delijn.be/stops/407966", "https://data.delijn.be/stops/407967"], ["https://data.delijn.be/stops/300329", "https://data.delijn.be/stops/300337"], ["https://data.delijn.be/stops/308066", "https://data.delijn.be/stops/308067"], ["https://data.delijn.be/stops/402430", "https://data.delijn.be/stops/402431"], ["https://data.delijn.be/stops/104481", "https://data.delijn.be/stops/307898"], ["https://data.delijn.be/stops/409116", "https://data.delijn.be/stops/409117"], ["https://data.delijn.be/stops/300092", "https://data.delijn.be/stops/307731"], ["https://data.delijn.be/stops/303629", "https://data.delijn.be/stops/304204"], ["https://data.delijn.be/stops/200598", "https://data.delijn.be/stops/201598"], ["https://data.delijn.be/stops/201377", "https://data.delijn.be/stops/211009"], ["https://data.delijn.be/stops/400775", "https://data.delijn.be/stops/407533"], ["https://data.delijn.be/stops/206119", "https://data.delijn.be/stops/207120"], ["https://data.delijn.be/stops/207062", "https://data.delijn.be/stops/207519"], ["https://data.delijn.be/stops/405036", "https://data.delijn.be/stops/405100"], ["https://data.delijn.be/stops/405575", "https://data.delijn.be/stops/410098"], ["https://data.delijn.be/stops/102237", "https://data.delijn.be/stops/105266"], ["https://data.delijn.be/stops/305145", "https://data.delijn.be/stops/504000"], ["https://data.delijn.be/stops/505251", "https://data.delijn.be/stops/508917"], ["https://data.delijn.be/stops/502320", "https://data.delijn.be/stops/507320"], ["https://data.delijn.be/stops/404122", "https://data.delijn.be/stops/404129"], ["https://data.delijn.be/stops/409387", "https://data.delijn.be/stops/409399"], ["https://data.delijn.be/stops/301096", "https://data.delijn.be/stops/306670"], ["https://data.delijn.be/stops/308904", "https://data.delijn.be/stops/308905"], ["https://data.delijn.be/stops/206658", "https://data.delijn.be/stops/206718"], ["https://data.delijn.be/stops/406813", "https://data.delijn.be/stops/406896"], ["https://data.delijn.be/stops/300306", "https://data.delijn.be/stops/302134"], ["https://data.delijn.be/stops/204059", "https://data.delijn.be/stops/205059"], ["https://data.delijn.be/stops/302143", "https://data.delijn.be/stops/307526"], ["https://data.delijn.be/stops/501296", "https://data.delijn.be/stops/506360"], ["https://data.delijn.be/stops/303518", "https://data.delijn.be/stops/307077"], ["https://data.delijn.be/stops/501502", "https://data.delijn.be/stops/506502"], ["https://data.delijn.be/stops/304487", "https://data.delijn.be/stops/304489"], ["https://data.delijn.be/stops/102157", "https://data.delijn.be/stops/108319"], ["https://data.delijn.be/stops/406925", "https://data.delijn.be/stops/407422"], ["https://data.delijn.be/stops/402778", "https://data.delijn.be/stops/402779"], ["https://data.delijn.be/stops/302244", "https://data.delijn.be/stops/302245"], ["https://data.delijn.be/stops/508197", "https://data.delijn.be/stops/508467"], ["https://data.delijn.be/stops/300399", "https://data.delijn.be/stops/300402"], ["https://data.delijn.be/stops/202094", "https://data.delijn.be/stops/202644"], ["https://data.delijn.be/stops/301929", "https://data.delijn.be/stops/304502"], ["https://data.delijn.be/stops/505847", "https://data.delijn.be/stops/507620"], ["https://data.delijn.be/stops/402126", "https://data.delijn.be/stops/402127"], ["https://data.delijn.be/stops/404168", "https://data.delijn.be/stops/404185"], ["https://data.delijn.be/stops/404519", "https://data.delijn.be/stops/408163"], ["https://data.delijn.be/stops/302019", "https://data.delijn.be/stops/307285"], ["https://data.delijn.be/stops/300534", "https://data.delijn.be/stops/300535"], ["https://data.delijn.be/stops/306060", "https://data.delijn.be/stops/306062"], ["https://data.delijn.be/stops/404641", "https://data.delijn.be/stops/406967"], ["https://data.delijn.be/stops/208769", "https://data.delijn.be/stops/209789"], ["https://data.delijn.be/stops/306920", "https://data.delijn.be/stops/306922"], ["https://data.delijn.be/stops/302667", "https://data.delijn.be/stops/302679"], ["https://data.delijn.be/stops/107496", "https://data.delijn.be/stops/107497"], ["https://data.delijn.be/stops/302100", "https://data.delijn.be/stops/302101"], ["https://data.delijn.be/stops/303358", "https://data.delijn.be/stops/303359"], ["https://data.delijn.be/stops/400452", "https://data.delijn.be/stops/400487"], ["https://data.delijn.be/stops/306002", "https://data.delijn.be/stops/307508"], ["https://data.delijn.be/stops/408836", "https://data.delijn.be/stops/408912"], ["https://data.delijn.be/stops/503752", "https://data.delijn.be/stops/508601"], ["https://data.delijn.be/stops/200737", "https://data.delijn.be/stops/203596"], ["https://data.delijn.be/stops/404603", "https://data.delijn.be/stops/406831"], ["https://data.delijn.be/stops/107569", "https://data.delijn.be/stops/109434"], ["https://data.delijn.be/stops/403220", "https://data.delijn.be/stops/403401"], ["https://data.delijn.be/stops/104490", "https://data.delijn.be/stops/104625"], ["https://data.delijn.be/stops/501362", "https://data.delijn.be/stops/506362"], ["https://data.delijn.be/stops/109937", "https://data.delijn.be/stops/109946"], ["https://data.delijn.be/stops/506504", "https://data.delijn.be/stops/506506"], ["https://data.delijn.be/stops/106102", "https://data.delijn.be/stops/106118"], ["https://data.delijn.be/stops/308461", "https://data.delijn.be/stops/308465"], ["https://data.delijn.be/stops/208274", "https://data.delijn.be/stops/209275"], ["https://data.delijn.be/stops/204348", "https://data.delijn.be/stops/205667"], ["https://data.delijn.be/stops/207767", "https://data.delijn.be/stops/207769"], ["https://data.delijn.be/stops/208091", "https://data.delijn.be/stops/209053"], ["https://data.delijn.be/stops/102984", "https://data.delijn.be/stops/105221"], ["https://data.delijn.be/stops/502644", "https://data.delijn.be/stops/502722"], ["https://data.delijn.be/stops/200045", "https://data.delijn.be/stops/201260"], ["https://data.delijn.be/stops/507716", "https://data.delijn.be/stops/508978"], ["https://data.delijn.be/stops/202697", "https://data.delijn.be/stops/202698"], ["https://data.delijn.be/stops/204522", "https://data.delijn.be/stops/205522"], ["https://data.delijn.be/stops/508142", "https://data.delijn.be/stops/509631"], ["https://data.delijn.be/stops/503847", "https://data.delijn.be/stops/504660"], ["https://data.delijn.be/stops/407574", "https://data.delijn.be/stops/408967"], ["https://data.delijn.be/stops/202276", "https://data.delijn.be/stops/203660"], ["https://data.delijn.be/stops/303515", "https://data.delijn.be/stops/303516"], ["https://data.delijn.be/stops/102898", "https://data.delijn.be/stops/106756"], ["https://data.delijn.be/stops/300105", "https://data.delijn.be/stops/300116"], ["https://data.delijn.be/stops/203276", "https://data.delijn.be/stops/203418"], ["https://data.delijn.be/stops/502191", "https://data.delijn.be/stops/507191"], ["https://data.delijn.be/stops/304125", "https://data.delijn.be/stops/305528"], ["https://data.delijn.be/stops/302112", "https://data.delijn.be/stops/302120"], ["https://data.delijn.be/stops/304764", "https://data.delijn.be/stops/304772"], ["https://data.delijn.be/stops/104215", "https://data.delijn.be/stops/104265"], ["https://data.delijn.be/stops/202316", "https://data.delijn.be/stops/203317"], ["https://data.delijn.be/stops/406014", "https://data.delijn.be/stops/406015"], ["https://data.delijn.be/stops/302457", "https://data.delijn.be/stops/302467"], ["https://data.delijn.be/stops/507342", "https://data.delijn.be/stops/508592"], ["https://data.delijn.be/stops/200155", "https://data.delijn.be/stops/200504"], ["https://data.delijn.be/stops/206223", "https://data.delijn.be/stops/207863"], ["https://data.delijn.be/stops/106452", "https://data.delijn.be/stops/106458"], ["https://data.delijn.be/stops/402180", "https://data.delijn.be/stops/402195"], ["https://data.delijn.be/stops/503362", "https://data.delijn.be/stops/508398"], ["https://data.delijn.be/stops/200895", "https://data.delijn.be/stops/202336"], ["https://data.delijn.be/stops/504976", "https://data.delijn.be/stops/509116"], ["https://data.delijn.be/stops/209369", "https://data.delijn.be/stops/209454"], ["https://data.delijn.be/stops/502910", "https://data.delijn.be/stops/507912"], ["https://data.delijn.be/stops/301727", "https://data.delijn.be/stops/305948"], ["https://data.delijn.be/stops/202957", "https://data.delijn.be/stops/203956"], ["https://data.delijn.be/stops/402795", "https://data.delijn.be/stops/406717"], ["https://data.delijn.be/stops/302629", "https://data.delijn.be/stops/308113"], ["https://data.delijn.be/stops/207101", "https://data.delijn.be/stops/207102"], ["https://data.delijn.be/stops/404266", "https://data.delijn.be/stops/404267"], ["https://data.delijn.be/stops/505197", "https://data.delijn.be/stops/505217"], ["https://data.delijn.be/stops/504217", "https://data.delijn.be/stops/509211"], ["https://data.delijn.be/stops/409073", "https://data.delijn.be/stops/409153"], ["https://data.delijn.be/stops/503284", "https://data.delijn.be/stops/505966"], ["https://data.delijn.be/stops/300453", "https://data.delijn.be/stops/308052"], ["https://data.delijn.be/stops/503069", "https://data.delijn.be/stops/508069"], ["https://data.delijn.be/stops/103293", "https://data.delijn.be/stops/109478"], ["https://data.delijn.be/stops/208433", "https://data.delijn.be/stops/218021"], ["https://data.delijn.be/stops/302755", "https://data.delijn.be/stops/302764"], ["https://data.delijn.be/stops/503540", "https://data.delijn.be/stops/503563"], ["https://data.delijn.be/stops/406868", "https://data.delijn.be/stops/406869"], ["https://data.delijn.be/stops/502219", "https://data.delijn.be/stops/507219"], ["https://data.delijn.be/stops/402731", "https://data.delijn.be/stops/402732"], ["https://data.delijn.be/stops/305266", "https://data.delijn.be/stops/306342"], ["https://data.delijn.be/stops/306917", "https://data.delijn.be/stops/306918"], ["https://data.delijn.be/stops/108608", "https://data.delijn.be/stops/307434"], ["https://data.delijn.be/stops/502184", "https://data.delijn.be/stops/507184"], ["https://data.delijn.be/stops/301082", "https://data.delijn.be/stops/301088"], ["https://data.delijn.be/stops/509037", "https://data.delijn.be/stops/509287"], ["https://data.delijn.be/stops/503970", "https://data.delijn.be/stops/508200"], ["https://data.delijn.be/stops/404071", "https://data.delijn.be/stops/404110"], ["https://data.delijn.be/stops/301063", "https://data.delijn.be/stops/306116"], ["https://data.delijn.be/stops/102956", "https://data.delijn.be/stops/105576"], ["https://data.delijn.be/stops/306770", "https://data.delijn.be/stops/307426"], ["https://data.delijn.be/stops/204633", "https://data.delijn.be/stops/205614"], ["https://data.delijn.be/stops/202788", "https://data.delijn.be/stops/208642"], ["https://data.delijn.be/stops/107200", "https://data.delijn.be/stops/107728"], ["https://data.delijn.be/stops/510021", "https://data.delijn.be/stops/510025"], ["https://data.delijn.be/stops/300483", "https://data.delijn.be/stops/300488"], ["https://data.delijn.be/stops/301118", "https://data.delijn.be/stops/304010"], ["https://data.delijn.be/stops/504345", "https://data.delijn.be/stops/505116"], ["https://data.delijn.be/stops/102911", "https://data.delijn.be/stops/103165"], ["https://data.delijn.be/stops/400956", "https://data.delijn.be/stops/400957"], ["https://data.delijn.be/stops/207248", "https://data.delijn.be/stops/207249"], ["https://data.delijn.be/stops/305668", "https://data.delijn.be/stops/305741"], ["https://data.delijn.be/stops/204372", "https://data.delijn.be/stops/204381"], ["https://data.delijn.be/stops/300925", "https://data.delijn.be/stops/300927"], ["https://data.delijn.be/stops/204394", "https://data.delijn.be/stops/205393"], ["https://data.delijn.be/stops/500196", "https://data.delijn.be/stops/506050"], ["https://data.delijn.be/stops/502025", "https://data.delijn.be/stops/502764"], ["https://data.delijn.be/stops/202844", "https://data.delijn.be/stops/203731"], ["https://data.delijn.be/stops/105207", "https://data.delijn.be/stops/108061"], ["https://data.delijn.be/stops/204304", "https://data.delijn.be/stops/205304"], ["https://data.delijn.be/stops/402563", "https://data.delijn.be/stops/407805"], ["https://data.delijn.be/stops/206299", "https://data.delijn.be/stops/206300"], ["https://data.delijn.be/stops/303060", "https://data.delijn.be/stops/304469"], ["https://data.delijn.be/stops/404988", "https://data.delijn.be/stops/409454"], ["https://data.delijn.be/stops/302306", "https://data.delijn.be/stops/302323"], ["https://data.delijn.be/stops/307959", "https://data.delijn.be/stops/308072"], ["https://data.delijn.be/stops/404878", "https://data.delijn.be/stops/404934"], ["https://data.delijn.be/stops/407657", "https://data.delijn.be/stops/407743"], ["https://data.delijn.be/stops/105363", "https://data.delijn.be/stops/105364"], ["https://data.delijn.be/stops/406309", "https://data.delijn.be/stops/406322"], ["https://data.delijn.be/stops/200591", "https://data.delijn.be/stops/201584"], ["https://data.delijn.be/stops/402313", "https://data.delijn.be/stops/402382"], ["https://data.delijn.be/stops/207858", "https://data.delijn.be/stops/209623"], ["https://data.delijn.be/stops/401781", "https://data.delijn.be/stops/401790"], ["https://data.delijn.be/stops/401086", "https://data.delijn.be/stops/401090"], ["https://data.delijn.be/stops/208253", "https://data.delijn.be/stops/208328"], ["https://data.delijn.be/stops/400204", "https://data.delijn.be/stops/400206"], ["https://data.delijn.be/stops/302944", "https://data.delijn.be/stops/308660"], ["https://data.delijn.be/stops/106850", "https://data.delijn.be/stops/106852"], ["https://data.delijn.be/stops/201913", "https://data.delijn.be/stops/202468"], ["https://data.delijn.be/stops/400140", "https://data.delijn.be/stops/409203"], ["https://data.delijn.be/stops/510017", "https://data.delijn.be/stops/510018"], ["https://data.delijn.be/stops/501556", "https://data.delijn.be/stops/506556"], ["https://data.delijn.be/stops/301422", "https://data.delijn.be/stops/303627"], ["https://data.delijn.be/stops/407078", "https://data.delijn.be/stops/407086"], ["https://data.delijn.be/stops/104736", "https://data.delijn.be/stops/107331"], ["https://data.delijn.be/stops/206805", "https://data.delijn.be/stops/217012"], ["https://data.delijn.be/stops/405740", "https://data.delijn.be/stops/405745"], ["https://data.delijn.be/stops/307413", "https://data.delijn.be/stops/308055"], ["https://data.delijn.be/stops/506142", "https://data.delijn.be/stops/509836"], ["https://data.delijn.be/stops/402336", "https://data.delijn.be/stops/402443"], ["https://data.delijn.be/stops/206420", "https://data.delijn.be/stops/207420"], ["https://data.delijn.be/stops/201771", "https://data.delijn.be/stops/201820"], ["https://data.delijn.be/stops/502199", "https://data.delijn.be/stops/507194"], ["https://data.delijn.be/stops/200821", "https://data.delijn.be/stops/200822"], ["https://data.delijn.be/stops/108412", "https://data.delijn.be/stops/108413"], ["https://data.delijn.be/stops/404369", "https://data.delijn.be/stops/405669"], ["https://data.delijn.be/stops/407050", "https://data.delijn.be/stops/410016"], ["https://data.delijn.be/stops/407468", "https://data.delijn.be/stops/409859"], ["https://data.delijn.be/stops/209461", "https://data.delijn.be/stops/209462"], ["https://data.delijn.be/stops/101027", "https://data.delijn.be/stops/105130"], ["https://data.delijn.be/stops/303627", "https://data.delijn.be/stops/307219"], ["https://data.delijn.be/stops/305437", "https://data.delijn.be/stops/308644"], ["https://data.delijn.be/stops/507498", "https://data.delijn.be/stops/509727"], ["https://data.delijn.be/stops/401255", "https://data.delijn.be/stops/401452"], ["https://data.delijn.be/stops/400782", "https://data.delijn.be/stops/400816"], ["https://data.delijn.be/stops/201825", "https://data.delijn.be/stops/203794"], ["https://data.delijn.be/stops/400753", "https://data.delijn.be/stops/409807"], ["https://data.delijn.be/stops/300170", "https://data.delijn.be/stops/304924"], ["https://data.delijn.be/stops/405958", "https://data.delijn.be/stops/405960"], ["https://data.delijn.be/stops/500946", "https://data.delijn.be/stops/504194"], ["https://data.delijn.be/stops/203548", "https://data.delijn.be/stops/203554"], ["https://data.delijn.be/stops/109207", "https://data.delijn.be/stops/109209"], ["https://data.delijn.be/stops/300998", "https://data.delijn.be/stops/307043"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/202628"], ["https://data.delijn.be/stops/403710", "https://data.delijn.be/stops/403711"], ["https://data.delijn.be/stops/300855", "https://data.delijn.be/stops/306050"], ["https://data.delijn.be/stops/203186", "https://data.delijn.be/stops/203668"], ["https://data.delijn.be/stops/109846", "https://data.delijn.be/stops/109849"], ["https://data.delijn.be/stops/208339", "https://data.delijn.be/stops/208789"], ["https://data.delijn.be/stops/409450", "https://data.delijn.be/stops/409453"], ["https://data.delijn.be/stops/400119", "https://data.delijn.be/stops/400152"], ["https://data.delijn.be/stops/509211", "https://data.delijn.be/stops/509222"], ["https://data.delijn.be/stops/501179", "https://data.delijn.be/stops/501736"], ["https://data.delijn.be/stops/102382", "https://data.delijn.be/stops/102991"], ["https://data.delijn.be/stops/408822", "https://data.delijn.be/stops/408833"], ["https://data.delijn.be/stops/503810", "https://data.delijn.be/stops/503811"], ["https://data.delijn.be/stops/303289", "https://data.delijn.be/stops/308738"], ["https://data.delijn.be/stops/103477", "https://data.delijn.be/stops/103619"], ["https://data.delijn.be/stops/203818", "https://data.delijn.be/stops/203844"], ["https://data.delijn.be/stops/302487", "https://data.delijn.be/stops/308830"], ["https://data.delijn.be/stops/102235", "https://data.delijn.be/stops/102813"], ["https://data.delijn.be/stops/104142", "https://data.delijn.be/stops/305791"], ["https://data.delijn.be/stops/208092", "https://data.delijn.be/stops/209091"], ["https://data.delijn.be/stops/403003", "https://data.delijn.be/stops/405608"], ["https://data.delijn.be/stops/105729", "https://data.delijn.be/stops/109842"], ["https://data.delijn.be/stops/200901", "https://data.delijn.be/stops/202265"], ["https://data.delijn.be/stops/506120", "https://data.delijn.be/stops/506125"], ["https://data.delijn.be/stops/101001", "https://data.delijn.be/stops/106070"], ["https://data.delijn.be/stops/208692", "https://data.delijn.be/stops/208712"], ["https://data.delijn.be/stops/207752", "https://data.delijn.be/stops/208190"], ["https://data.delijn.be/stops/505926", "https://data.delijn.be/stops/509562"], ["https://data.delijn.be/stops/101812", "https://data.delijn.be/stops/107976"], ["https://data.delijn.be/stops/404628", "https://data.delijn.be/stops/406962"], ["https://data.delijn.be/stops/206669", "https://data.delijn.be/stops/207677"], ["https://data.delijn.be/stops/407032", "https://data.delijn.be/stops/407036"], ["https://data.delijn.be/stops/403207", "https://data.delijn.be/stops/410215"], ["https://data.delijn.be/stops/302188", "https://data.delijn.be/stops/302196"], ["https://data.delijn.be/stops/300969", "https://data.delijn.be/stops/301116"], ["https://data.delijn.be/stops/204163", "https://data.delijn.be/stops/206401"], ["https://data.delijn.be/stops/208335", "https://data.delijn.be/stops/209335"], ["https://data.delijn.be/stops/404594", "https://data.delijn.be/stops/406905"], ["https://data.delijn.be/stops/505184", "https://data.delijn.be/stops/509565"], ["https://data.delijn.be/stops/507034", "https://data.delijn.be/stops/507048"], ["https://data.delijn.be/stops/208257", "https://data.delijn.be/stops/209257"], ["https://data.delijn.be/stops/401214", "https://data.delijn.be/stops/401247"], ["https://data.delijn.be/stops/505087", "https://data.delijn.be/stops/505231"], ["https://data.delijn.be/stops/503040", "https://data.delijn.be/stops/503045"], ["https://data.delijn.be/stops/102425", "https://data.delijn.be/stops/105315"], ["https://data.delijn.be/stops/104133", "https://data.delijn.be/stops/108045"], ["https://data.delijn.be/stops/108647", "https://data.delijn.be/stops/109792"], ["https://data.delijn.be/stops/101202", "https://data.delijn.be/stops/104931"], ["https://data.delijn.be/stops/501749", "https://data.delijn.be/stops/501777"], ["https://data.delijn.be/stops/208809", "https://data.delijn.be/stops/209129"], ["https://data.delijn.be/stops/408241", "https://data.delijn.be/stops/408243"], ["https://data.delijn.be/stops/405178", "https://data.delijn.be/stops/405179"], ["https://data.delijn.be/stops/203287", "https://data.delijn.be/stops/203288"], ["https://data.delijn.be/stops/206711", "https://data.delijn.be/stops/207975"], ["https://data.delijn.be/stops/200824", "https://data.delijn.be/stops/203330"], ["https://data.delijn.be/stops/305586", "https://data.delijn.be/stops/305587"], ["https://data.delijn.be/stops/503205", "https://data.delijn.be/stops/508192"], ["https://data.delijn.be/stops/204446", "https://data.delijn.be/stops/214002"], ["https://data.delijn.be/stops/208797", "https://data.delijn.be/stops/209796"], ["https://data.delijn.be/stops/401297", "https://data.delijn.be/stops/401306"], ["https://data.delijn.be/stops/102449", "https://data.delijn.be/stops/107979"], ["https://data.delijn.be/stops/504763", "https://data.delijn.be/stops/508530"], ["https://data.delijn.be/stops/200917", "https://data.delijn.be/stops/202044"], ["https://data.delijn.be/stops/403836", "https://data.delijn.be/stops/403848"], ["https://data.delijn.be/stops/305689", "https://data.delijn.be/stops/305704"], ["https://data.delijn.be/stops/105244", "https://data.delijn.be/stops/105247"], ["https://data.delijn.be/stops/503684", "https://data.delijn.be/stops/503686"], ["https://data.delijn.be/stops/303618", "https://data.delijn.be/stops/304923"], ["https://data.delijn.be/stops/406423", "https://data.delijn.be/stops/406442"], ["https://data.delijn.be/stops/400029", "https://data.delijn.be/stops/400030"], ["https://data.delijn.be/stops/201456", "https://data.delijn.be/stops/201652"], ["https://data.delijn.be/stops/102006", "https://data.delijn.be/stops/102007"], ["https://data.delijn.be/stops/402383", "https://data.delijn.be/stops/402452"], ["https://data.delijn.be/stops/405208", "https://data.delijn.be/stops/405290"], ["https://data.delijn.be/stops/108843", "https://data.delijn.be/stops/108856"], ["https://data.delijn.be/stops/405049", "https://data.delijn.be/stops/405756"], ["https://data.delijn.be/stops/300647", "https://data.delijn.be/stops/305815"], ["https://data.delijn.be/stops/503413", "https://data.delijn.be/stops/508438"], ["https://data.delijn.be/stops/206592", "https://data.delijn.be/stops/206930"], ["https://data.delijn.be/stops/103865", "https://data.delijn.be/stops/103870"], ["https://data.delijn.be/stops/101749", "https://data.delijn.be/stops/106385"], ["https://data.delijn.be/stops/101933", "https://data.delijn.be/stops/107739"], ["https://data.delijn.be/stops/204074", "https://data.delijn.be/stops/204236"], ["https://data.delijn.be/stops/105043", "https://data.delijn.be/stops/105044"], ["https://data.delijn.be/stops/301360", "https://data.delijn.be/stops/305528"], ["https://data.delijn.be/stops/504494", "https://data.delijn.be/stops/504729"], ["https://data.delijn.be/stops/200595", "https://data.delijn.be/stops/210130"], ["https://data.delijn.be/stops/507015", "https://data.delijn.be/stops/507912"], ["https://data.delijn.be/stops/104611", "https://data.delijn.be/stops/105825"], ["https://data.delijn.be/stops/101519", "https://data.delijn.be/stops/109056"], ["https://data.delijn.be/stops/303814", "https://data.delijn.be/stops/303823"], ["https://data.delijn.be/stops/201707", "https://data.delijn.be/stops/201711"], ["https://data.delijn.be/stops/401131", "https://data.delijn.be/stops/406549"], ["https://data.delijn.be/stops/400071", "https://data.delijn.be/stops/403298"], ["https://data.delijn.be/stops/106260", "https://data.delijn.be/stops/109909"], ["https://data.delijn.be/stops/502057", "https://data.delijn.be/stops/502441"], ["https://data.delijn.be/stops/407491", "https://data.delijn.be/stops/410191"], ["https://data.delijn.be/stops/201021", "https://data.delijn.be/stops/201101"], ["https://data.delijn.be/stops/201953", "https://data.delijn.be/stops/202463"], ["https://data.delijn.be/stops/107549", "https://data.delijn.be/stops/108936"], ["https://data.delijn.be/stops/305659", "https://data.delijn.be/stops/305669"], ["https://data.delijn.be/stops/400629", "https://data.delijn.be/stops/404290"], ["https://data.delijn.be/stops/402201", "https://data.delijn.be/stops/402367"], ["https://data.delijn.be/stops/402782", "https://data.delijn.be/stops/402797"], ["https://data.delijn.be/stops/404314", "https://data.delijn.be/stops/405669"], ["https://data.delijn.be/stops/108562", "https://data.delijn.be/stops/109101"], ["https://data.delijn.be/stops/304753", "https://data.delijn.be/stops/304762"], ["https://data.delijn.be/stops/504151", "https://data.delijn.be/stops/504170"], ["https://data.delijn.be/stops/400253", "https://data.delijn.be/stops/400332"], ["https://data.delijn.be/stops/508504", "https://data.delijn.be/stops/508607"], ["https://data.delijn.be/stops/201423", "https://data.delijn.be/stops/202538"], ["https://data.delijn.be/stops/305173", "https://data.delijn.be/stops/306916"], ["https://data.delijn.be/stops/405586", "https://data.delijn.be/stops/409431"], ["https://data.delijn.be/stops/105311", "https://data.delijn.be/stops/105313"], ["https://data.delijn.be/stops/408813", "https://data.delijn.be/stops/408815"], ["https://data.delijn.be/stops/503396", "https://data.delijn.be/stops/503694"], ["https://data.delijn.be/stops/306898", "https://data.delijn.be/stops/306900"], ["https://data.delijn.be/stops/301434", "https://data.delijn.be/stops/306417"], ["https://data.delijn.be/stops/208150", "https://data.delijn.be/stops/209150"], ["https://data.delijn.be/stops/203342", "https://data.delijn.be/stops/203447"], ["https://data.delijn.be/stops/409715", "https://data.delijn.be/stops/409719"], ["https://data.delijn.be/stops/405872", "https://data.delijn.be/stops/409766"], ["https://data.delijn.be/stops/103068", "https://data.delijn.be/stops/105753"], ["https://data.delijn.be/stops/300065", "https://data.delijn.be/stops/303943"], ["https://data.delijn.be/stops/502209", "https://data.delijn.be/stops/507746"], ["https://data.delijn.be/stops/304343", "https://data.delijn.be/stops/304345"], ["https://data.delijn.be/stops/105094", "https://data.delijn.be/stops/105098"], ["https://data.delijn.be/stops/501337", "https://data.delijn.be/stops/509898"], ["https://data.delijn.be/stops/504595", "https://data.delijn.be/stops/504703"], ["https://data.delijn.be/stops/300733", "https://data.delijn.be/stops/300734"], ["https://data.delijn.be/stops/300036", "https://data.delijn.be/stops/300065"], ["https://data.delijn.be/stops/201026", "https://data.delijn.be/stops/201446"], ["https://data.delijn.be/stops/400778", "https://data.delijn.be/stops/400779"], ["https://data.delijn.be/stops/303477", "https://data.delijn.be/stops/303493"], ["https://data.delijn.be/stops/405950", "https://data.delijn.be/stops/405954"], ["https://data.delijn.be/stops/202969", "https://data.delijn.be/stops/202970"], ["https://data.delijn.be/stops/402584", "https://data.delijn.be/stops/402605"], ["https://data.delijn.be/stops/200421", "https://data.delijn.be/stops/201452"], ["https://data.delijn.be/stops/106775", "https://data.delijn.be/stops/106776"], ["https://data.delijn.be/stops/501387", "https://data.delijn.be/stops/506387"], ["https://data.delijn.be/stops/301904", "https://data.delijn.be/stops/306251"], ["https://data.delijn.be/stops/209149", "https://data.delijn.be/stops/209403"], ["https://data.delijn.be/stops/202585", "https://data.delijn.be/stops/202607"], ["https://data.delijn.be/stops/107977", "https://data.delijn.be/stops/306761"], ["https://data.delijn.be/stops/200257", "https://data.delijn.be/stops/203564"], ["https://data.delijn.be/stops/200301", "https://data.delijn.be/stops/200302"], ["https://data.delijn.be/stops/218020", "https://data.delijn.be/stops/219020"], ["https://data.delijn.be/stops/400382", "https://data.delijn.be/stops/400427"], ["https://data.delijn.be/stops/501634", "https://data.delijn.be/stops/501663"], ["https://data.delijn.be/stops/400465", "https://data.delijn.be/stops/410319"], ["https://data.delijn.be/stops/300611", "https://data.delijn.be/stops/300612"], ["https://data.delijn.be/stops/304996", "https://data.delijn.be/stops/305455"], ["https://data.delijn.be/stops/304635", "https://data.delijn.be/stops/308963"], ["https://data.delijn.be/stops/210053", "https://data.delijn.be/stops/211123"], ["https://data.delijn.be/stops/205658", "https://data.delijn.be/stops/205679"], ["https://data.delijn.be/stops/401472", "https://data.delijn.be/stops/405142"], ["https://data.delijn.be/stops/300137", "https://data.delijn.be/stops/300138"], ["https://data.delijn.be/stops/501600", "https://data.delijn.be/stops/505165"], ["https://data.delijn.be/stops/505608", "https://data.delijn.be/stops/507529"], ["https://data.delijn.be/stops/207707", "https://data.delijn.be/stops/308799"], ["https://data.delijn.be/stops/301640", "https://data.delijn.be/stops/307766"], ["https://data.delijn.be/stops/303078", "https://data.delijn.be/stops/303112"], ["https://data.delijn.be/stops/405878", "https://data.delijn.be/stops/409665"], ["https://data.delijn.be/stops/401788", "https://data.delijn.be/stops/401791"], ["https://data.delijn.be/stops/208688", "https://data.delijn.be/stops/208692"], ["https://data.delijn.be/stops/200922", "https://data.delijn.be/stops/200937"], ["https://data.delijn.be/stops/304883", "https://data.delijn.be/stops/307831"], ["https://data.delijn.be/stops/304852", "https://data.delijn.be/stops/304853"], ["https://data.delijn.be/stops/101016", "https://data.delijn.be/stops/101017"], ["https://data.delijn.be/stops/109912", "https://data.delijn.be/stops/109913"], ["https://data.delijn.be/stops/105159", "https://data.delijn.be/stops/108761"], ["https://data.delijn.be/stops/304207", "https://data.delijn.be/stops/308981"], ["https://data.delijn.be/stops/406285", "https://data.delijn.be/stops/409357"], ["https://data.delijn.be/stops/302051", "https://data.delijn.be/stops/302251"], ["https://data.delijn.be/stops/302071", "https://data.delijn.be/stops/306350"], ["https://data.delijn.be/stops/402863", "https://data.delijn.be/stops/408082"], ["https://data.delijn.be/stops/201901", "https://data.delijn.be/stops/202473"], ["https://data.delijn.be/stops/109072", "https://data.delijn.be/stops/109559"], ["https://data.delijn.be/stops/105617", "https://data.delijn.be/stops/105619"], ["https://data.delijn.be/stops/206688", "https://data.delijn.be/stops/207342"], ["https://data.delijn.be/stops/503617", "https://data.delijn.be/stops/508617"], ["https://data.delijn.be/stops/106261", "https://data.delijn.be/stops/106340"], ["https://data.delijn.be/stops/304744", "https://data.delijn.be/stops/304747"], ["https://data.delijn.be/stops/106051", "https://data.delijn.be/stops/109875"], ["https://data.delijn.be/stops/306248", "https://data.delijn.be/stops/306250"], ["https://data.delijn.be/stops/207799", "https://data.delijn.be/stops/208784"], ["https://data.delijn.be/stops/502566", "https://data.delijn.be/stops/507569"], ["https://data.delijn.be/stops/206069", "https://data.delijn.be/stops/207903"], ["https://data.delijn.be/stops/204995", "https://data.delijn.be/stops/303865"], ["https://data.delijn.be/stops/207800", "https://data.delijn.be/stops/208545"], ["https://data.delijn.be/stops/109705", "https://data.delijn.be/stops/109706"], ["https://data.delijn.be/stops/406012", "https://data.delijn.be/stops/406118"], ["https://data.delijn.be/stops/205656", "https://data.delijn.be/stops/205657"], ["https://data.delijn.be/stops/200161", "https://data.delijn.be/stops/201313"], ["https://data.delijn.be/stops/403746", "https://data.delijn.be/stops/403749"], ["https://data.delijn.be/stops/506295", "https://data.delijn.be/stops/506296"], ["https://data.delijn.be/stops/404789", "https://data.delijn.be/stops/404811"], ["https://data.delijn.be/stops/208560", "https://data.delijn.be/stops/208620"], ["https://data.delijn.be/stops/301951", "https://data.delijn.be/stops/303287"], ["https://data.delijn.be/stops/501014", "https://data.delijn.be/stops/506609"], ["https://data.delijn.be/stops/307455", "https://data.delijn.be/stops/307456"], ["https://data.delijn.be/stops/202496", "https://data.delijn.be/stops/203174"], ["https://data.delijn.be/stops/409529", "https://data.delijn.be/stops/410402"], ["https://data.delijn.be/stops/505680", "https://data.delijn.be/stops/507315"], ["https://data.delijn.be/stops/408266", "https://data.delijn.be/stops/408267"], ["https://data.delijn.be/stops/502547", "https://data.delijn.be/stops/505583"], ["https://data.delijn.be/stops/104666", "https://data.delijn.be/stops/109568"], ["https://data.delijn.be/stops/209438", "https://data.delijn.be/stops/218021"], ["https://data.delijn.be/stops/208517", "https://data.delijn.be/stops/209701"], ["https://data.delijn.be/stops/402352", "https://data.delijn.be/stops/405577"], ["https://data.delijn.be/stops/408075", "https://data.delijn.be/stops/408131"], ["https://data.delijn.be/stops/102196", "https://data.delijn.be/stops/104277"], ["https://data.delijn.be/stops/106814", "https://data.delijn.be/stops/106820"], ["https://data.delijn.be/stops/301593", "https://data.delijn.be/stops/305047"], ["https://data.delijn.be/stops/109256", "https://data.delijn.be/stops/109713"], ["https://data.delijn.be/stops/302014", "https://data.delijn.be/stops/307818"], ["https://data.delijn.be/stops/502041", "https://data.delijn.be/stops/507041"], ["https://data.delijn.be/stops/404428", "https://data.delijn.be/stops/404525"], ["https://data.delijn.be/stops/206032", "https://data.delijn.be/stops/206214"], ["https://data.delijn.be/stops/504566", "https://data.delijn.be/stops/509560"], ["https://data.delijn.be/stops/303163", "https://data.delijn.be/stops/303168"], ["https://data.delijn.be/stops/504005", "https://data.delijn.be/stops/504010"], ["https://data.delijn.be/stops/407873", "https://data.delijn.be/stops/407947"], ["https://data.delijn.be/stops/108407", "https://data.delijn.be/stops/108409"], ["https://data.delijn.be/stops/501527", "https://data.delijn.be/stops/501529"], ["https://data.delijn.be/stops/105484", "https://data.delijn.be/stops/105498"], ["https://data.delijn.be/stops/205680", "https://data.delijn.be/stops/205681"], ["https://data.delijn.be/stops/206564", "https://data.delijn.be/stops/207564"], ["https://data.delijn.be/stops/402991", "https://data.delijn.be/stops/405588"], ["https://data.delijn.be/stops/202080", "https://data.delijn.be/stops/202737"], ["https://data.delijn.be/stops/404086", "https://data.delijn.be/stops/404087"], ["https://data.delijn.be/stops/200223", "https://data.delijn.be/stops/201223"], ["https://data.delijn.be/stops/506332", "https://data.delijn.be/stops/506477"], ["https://data.delijn.be/stops/400036", "https://data.delijn.be/stops/402791"], ["https://data.delijn.be/stops/106354", "https://data.delijn.be/stops/106355"], ["https://data.delijn.be/stops/300164", "https://data.delijn.be/stops/300165"], ["https://data.delijn.be/stops/406008", "https://data.delijn.be/stops/406009"], ["https://data.delijn.be/stops/504026", "https://data.delijn.be/stops/505301"], ["https://data.delijn.be/stops/107352", "https://data.delijn.be/stops/108173"], ["https://data.delijn.be/stops/408547", "https://data.delijn.be/stops/408548"], ["https://data.delijn.be/stops/406082", "https://data.delijn.be/stops/406084"], ["https://data.delijn.be/stops/404318", "https://data.delijn.be/stops/404331"], ["https://data.delijn.be/stops/300509", "https://data.delijn.be/stops/308357"], ["https://data.delijn.be/stops/300046", "https://data.delijn.be/stops/307825"], ["https://data.delijn.be/stops/503028", "https://data.delijn.be/stops/504816"], ["https://data.delijn.be/stops/400844", "https://data.delijn.be/stops/407592"], ["https://data.delijn.be/stops/200947", "https://data.delijn.be/stops/203231"], ["https://data.delijn.be/stops/204779", "https://data.delijn.be/stops/214011"], ["https://data.delijn.be/stops/405527", "https://data.delijn.be/stops/407274"], ["https://data.delijn.be/stops/204076", "https://data.delijn.be/stops/205091"], ["https://data.delijn.be/stops/508114", "https://data.delijn.be/stops/508885"], ["https://data.delijn.be/stops/204348", "https://data.delijn.be/stops/205107"], ["https://data.delijn.be/stops/403446", "https://data.delijn.be/stops/403450"], ["https://data.delijn.be/stops/401408", "https://data.delijn.be/stops/304599"], ["https://data.delijn.be/stops/503962", "https://data.delijn.be/stops/509887"], ["https://data.delijn.be/stops/400079", "https://data.delijn.be/stops/409105"], ["https://data.delijn.be/stops/103491", "https://data.delijn.be/stops/104887"], ["https://data.delijn.be/stops/206024", "https://data.delijn.be/stops/207024"], ["https://data.delijn.be/stops/506308", "https://data.delijn.be/stops/506500"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/504615"], ["https://data.delijn.be/stops/106766", "https://data.delijn.be/stops/107519"], ["https://data.delijn.be/stops/208051", "https://data.delijn.be/stops/209658"], ["https://data.delijn.be/stops/405242", "https://data.delijn.be/stops/405243"], ["https://data.delijn.be/stops/109601", "https://data.delijn.be/stops/109602"], ["https://data.delijn.be/stops/410120", "https://data.delijn.be/stops/410286"], ["https://data.delijn.be/stops/505997", "https://data.delijn.be/stops/509437"], ["https://data.delijn.be/stops/209147", "https://data.delijn.be/stops/209148"], ["https://data.delijn.be/stops/503564", "https://data.delijn.be/stops/508564"], ["https://data.delijn.be/stops/304000", "https://data.delijn.be/stops/307505"], ["https://data.delijn.be/stops/107218", "https://data.delijn.be/stops/107219"], ["https://data.delijn.be/stops/105150", "https://data.delijn.be/stops/105620"], ["https://data.delijn.be/stops/107115", "https://data.delijn.be/stops/107120"], ["https://data.delijn.be/stops/200749", "https://data.delijn.be/stops/203150"], ["https://data.delijn.be/stops/501550", "https://data.delijn.be/stops/506769"], ["https://data.delijn.be/stops/109830", "https://data.delijn.be/stops/109979"], ["https://data.delijn.be/stops/109560", "https://data.delijn.be/stops/109860"], ["https://data.delijn.be/stops/510018", "https://data.delijn.be/stops/510019"], ["https://data.delijn.be/stops/302727", "https://data.delijn.be/stops/308595"], ["https://data.delijn.be/stops/405336", "https://data.delijn.be/stops/405337"], ["https://data.delijn.be/stops/305500", "https://data.delijn.be/stops/308912"], ["https://data.delijn.be/stops/206863", "https://data.delijn.be/stops/207923"], ["https://data.delijn.be/stops/300363", "https://data.delijn.be/stops/307721"], ["https://data.delijn.be/stops/509356", "https://data.delijn.be/stops/509360"], ["https://data.delijn.be/stops/206524", "https://data.delijn.be/stops/216008"], ["https://data.delijn.be/stops/210855", "https://data.delijn.be/stops/211850"], ["https://data.delijn.be/stops/504968", "https://data.delijn.be/stops/509968"], ["https://data.delijn.be/stops/303862", "https://data.delijn.be/stops/305923"], ["https://data.delijn.be/stops/204343", "https://data.delijn.be/stops/204346"], ["https://data.delijn.be/stops/508486", "https://data.delijn.be/stops/508491"], ["https://data.delijn.be/stops/204644", "https://data.delijn.be/stops/204646"], ["https://data.delijn.be/stops/108652", "https://data.delijn.be/stops/306594"], ["https://data.delijn.be/stops/504749", "https://data.delijn.be/stops/505292"], ["https://data.delijn.be/stops/306172", "https://data.delijn.be/stops/306224"], ["https://data.delijn.be/stops/304555", "https://data.delijn.be/stops/304557"], ["https://data.delijn.be/stops/206102", "https://data.delijn.be/stops/207103"], ["https://data.delijn.be/stops/201102", "https://data.delijn.be/stops/210001"], ["https://data.delijn.be/stops/102150", "https://data.delijn.be/stops/106005"], ["https://data.delijn.be/stops/208611", "https://data.delijn.be/stops/209611"], ["https://data.delijn.be/stops/502498", "https://data.delijn.be/stops/502515"], ["https://data.delijn.be/stops/301256", "https://data.delijn.be/stops/301259"], ["https://data.delijn.be/stops/202529", "https://data.delijn.be/stops/206827"], ["https://data.delijn.be/stops/503502", "https://data.delijn.be/stops/503871"], ["https://data.delijn.be/stops/206701", "https://data.delijn.be/stops/206726"], ["https://data.delijn.be/stops/206368", "https://data.delijn.be/stops/207369"], ["https://data.delijn.be/stops/108224", "https://data.delijn.be/stops/108226"], ["https://data.delijn.be/stops/301371", "https://data.delijn.be/stops/308768"], ["https://data.delijn.be/stops/202110", "https://data.delijn.be/stops/204595"], ["https://data.delijn.be/stops/107695", "https://data.delijn.be/stops/108315"], ["https://data.delijn.be/stops/305456", "https://data.delijn.be/stops/305982"], ["https://data.delijn.be/stops/503918", "https://data.delijn.be/stops/508918"], ["https://data.delijn.be/stops/204496", "https://data.delijn.be/stops/205495"], ["https://data.delijn.be/stops/203128", "https://data.delijn.be/stops/203583"], ["https://data.delijn.be/stops/400784", "https://data.delijn.be/stops/400867"], ["https://data.delijn.be/stops/504264", "https://data.delijn.be/stops/504265"], ["https://data.delijn.be/stops/503381", "https://data.delijn.be/stops/509789"], ["https://data.delijn.be/stops/504417", "https://data.delijn.be/stops/509437"], ["https://data.delijn.be/stops/109442", "https://data.delijn.be/stops/109445"], ["https://data.delijn.be/stops/300817", "https://data.delijn.be/stops/300888"], ["https://data.delijn.be/stops/202348", "https://data.delijn.be/stops/203347"], ["https://data.delijn.be/stops/202419", "https://data.delijn.be/stops/203130"], ["https://data.delijn.be/stops/203852", "https://data.delijn.be/stops/210098"], ["https://data.delijn.be/stops/300059", "https://data.delijn.be/stops/307734"], ["https://data.delijn.be/stops/503427", "https://data.delijn.be/stops/503951"], ["https://data.delijn.be/stops/109721", "https://data.delijn.be/stops/406498"], ["https://data.delijn.be/stops/400652", "https://data.delijn.be/stops/400653"], ["https://data.delijn.be/stops/202576", "https://data.delijn.be/stops/203576"], ["https://data.delijn.be/stops/204347", "https://data.delijn.be/stops/205702"], ["https://data.delijn.be/stops/304582", "https://data.delijn.be/stops/307573"], ["https://data.delijn.be/stops/402854", "https://data.delijn.be/stops/408970"], ["https://data.delijn.be/stops/301818", "https://data.delijn.be/stops/307889"], ["https://data.delijn.be/stops/102708", "https://data.delijn.be/stops/108035"], ["https://data.delijn.be/stops/504881", "https://data.delijn.be/stops/507187"], ["https://data.delijn.be/stops/400553", "https://data.delijn.be/stops/403625"], ["https://data.delijn.be/stops/504327", "https://data.delijn.be/stops/505992"], ["https://data.delijn.be/stops/103273", "https://data.delijn.be/stops/109990"], ["https://data.delijn.be/stops/104965", "https://data.delijn.be/stops/104996"], ["https://data.delijn.be/stops/307612", "https://data.delijn.be/stops/307907"], ["https://data.delijn.be/stops/401314", "https://data.delijn.be/stops/401315"], ["https://data.delijn.be/stops/404217", "https://data.delijn.be/stops/404218"], ["https://data.delijn.be/stops/200249", "https://data.delijn.be/stops/201249"], ["https://data.delijn.be/stops/203875", "https://data.delijn.be/stops/206968"], ["https://data.delijn.be/stops/403518", "https://data.delijn.be/stops/403550"], ["https://data.delijn.be/stops/102911", "https://data.delijn.be/stops/107665"], ["https://data.delijn.be/stops/201706", "https://data.delijn.be/stops/203443"], ["https://data.delijn.be/stops/502090", "https://data.delijn.be/stops/502107"], ["https://data.delijn.be/stops/203970", "https://data.delijn.be/stops/203971"], ["https://data.delijn.be/stops/406010", "https://data.delijn.be/stops/406129"], ["https://data.delijn.be/stops/202402", "https://data.delijn.be/stops/202403"], ["https://data.delijn.be/stops/200782", "https://data.delijn.be/stops/201034"], ["https://data.delijn.be/stops/108861", "https://data.delijn.be/stops/108862"], ["https://data.delijn.be/stops/402114", "https://data.delijn.be/stops/402125"], ["https://data.delijn.be/stops/300490", "https://data.delijn.be/stops/302867"], ["https://data.delijn.be/stops/404067", "https://data.delijn.be/stops/405455"], ["https://data.delijn.be/stops/302011", "https://data.delijn.be/stops/302016"], ["https://data.delijn.be/stops/108279", "https://data.delijn.be/stops/109341"], ["https://data.delijn.be/stops/200710", "https://data.delijn.be/stops/200713"], ["https://data.delijn.be/stops/504500", "https://data.delijn.be/stops/505167"], ["https://data.delijn.be/stops/300549", "https://data.delijn.be/stops/307859"], ["https://data.delijn.be/stops/207007", "https://data.delijn.be/stops/207079"], ["https://data.delijn.be/stops/505217", "https://data.delijn.be/stops/505288"], ["https://data.delijn.be/stops/302776", "https://data.delijn.be/stops/302777"], ["https://data.delijn.be/stops/305628", "https://data.delijn.be/stops/305640"], ["https://data.delijn.be/stops/505022", "https://data.delijn.be/stops/507548"], ["https://data.delijn.be/stops/505373", "https://data.delijn.be/stops/508841"], ["https://data.delijn.be/stops/504724", "https://data.delijn.be/stops/508655"], ["https://data.delijn.be/stops/501684", "https://data.delijn.be/stops/506177"], ["https://data.delijn.be/stops/304525", "https://data.delijn.be/stops/304526"], ["https://data.delijn.be/stops/302351", "https://data.delijn.be/stops/302360"], ["https://data.delijn.be/stops/207789", "https://data.delijn.be/stops/208407"], ["https://data.delijn.be/stops/407814", "https://data.delijn.be/stops/407831"], ["https://data.delijn.be/stops/204785", "https://data.delijn.be/stops/205591"], ["https://data.delijn.be/stops/107236", "https://data.delijn.be/stops/107237"], ["https://data.delijn.be/stops/504345", "https://data.delijn.be/stops/509345"], ["https://data.delijn.be/stops/503608", "https://data.delijn.be/stops/508789"], ["https://data.delijn.be/stops/303580", "https://data.delijn.be/stops/303585"], ["https://data.delijn.be/stops/200197", "https://data.delijn.be/stops/202480"], ["https://data.delijn.be/stops/206168", "https://data.delijn.be/stops/206327"], ["https://data.delijn.be/stops/400091", "https://data.delijn.be/stops/400139"], ["https://data.delijn.be/stops/105294", "https://data.delijn.be/stops/105387"], ["https://data.delijn.be/stops/204030", "https://data.delijn.be/stops/205034"], ["https://data.delijn.be/stops/206335", "https://data.delijn.be/stops/206365"], ["https://data.delijn.be/stops/404324", "https://data.delijn.be/stops/404362"], ["https://data.delijn.be/stops/502378", "https://data.delijn.be/stops/502407"], ["https://data.delijn.be/stops/200768", "https://data.delijn.be/stops/208249"], ["https://data.delijn.be/stops/402143", "https://data.delijn.be/stops/402436"], ["https://data.delijn.be/stops/105703", "https://data.delijn.be/stops/105706"], ["https://data.delijn.be/stops/405519", "https://data.delijn.be/stops/405521"], ["https://data.delijn.be/stops/410285", "https://data.delijn.be/stops/410286"], ["https://data.delijn.be/stops/201776", "https://data.delijn.be/stops/208287"], ["https://data.delijn.be/stops/505238", "https://data.delijn.be/stops/505333"], ["https://data.delijn.be/stops/501662", "https://data.delijn.be/stops/506732"], ["https://data.delijn.be/stops/101442", "https://data.delijn.be/stops/108605"], ["https://data.delijn.be/stops/304140", "https://data.delijn.be/stops/304141"], ["https://data.delijn.be/stops/206491", "https://data.delijn.be/stops/207518"], ["https://data.delijn.be/stops/204707", "https://data.delijn.be/stops/205348"], ["https://data.delijn.be/stops/102387", "https://data.delijn.be/stops/107813"], ["https://data.delijn.be/stops/202064", "https://data.delijn.be/stops/203063"], ["https://data.delijn.be/stops/302345", "https://data.delijn.be/stops/302353"], ["https://data.delijn.be/stops/207771", "https://data.delijn.be/stops/208374"], ["https://data.delijn.be/stops/104368", "https://data.delijn.be/stops/205604"], ["https://data.delijn.be/stops/208489", "https://data.delijn.be/stops/209046"], ["https://data.delijn.be/stops/208285", "https://data.delijn.be/stops/209285"], ["https://data.delijn.be/stops/109932", "https://data.delijn.be/stops/109951"], ["https://data.delijn.be/stops/206967", "https://data.delijn.be/stops/207254"], ["https://data.delijn.be/stops/502335", "https://data.delijn.be/stops/507335"], ["https://data.delijn.be/stops/300400", "https://data.delijn.be/stops/300405"], ["https://data.delijn.be/stops/403430", "https://data.delijn.be/stops/403433"], ["https://data.delijn.be/stops/300061", "https://data.delijn.be/stops/300396"], ["https://data.delijn.be/stops/208360", "https://data.delijn.be/stops/209338"], ["https://data.delijn.be/stops/204165", "https://data.delijn.be/stops/204589"], ["https://data.delijn.be/stops/402453", "https://data.delijn.be/stops/407495"], ["https://data.delijn.be/stops/301986", "https://data.delijn.be/stops/303092"], ["https://data.delijn.be/stops/202973", "https://data.delijn.be/stops/204795"], ["https://data.delijn.be/stops/207178", "https://data.delijn.be/stops/303858"], ["https://data.delijn.be/stops/504253", "https://data.delijn.be/stops/505985"], ["https://data.delijn.be/stops/305691", "https://data.delijn.be/stops/305703"], ["https://data.delijn.be/stops/202159", "https://data.delijn.be/stops/202244"], ["https://data.delijn.be/stops/204929", "https://data.delijn.be/stops/208294"], ["https://data.delijn.be/stops/402242", "https://data.delijn.be/stops/402441"], ["https://data.delijn.be/stops/301454", "https://data.delijn.be/stops/305665"], ["https://data.delijn.be/stops/203218", "https://data.delijn.be/stops/203219"], ["https://data.delijn.be/stops/404550", "https://data.delijn.be/stops/409258"], ["https://data.delijn.be/stops/302515", "https://data.delijn.be/stops/302516"], ["https://data.delijn.be/stops/504215", "https://data.delijn.be/stops/509215"], ["https://data.delijn.be/stops/306775", "https://data.delijn.be/stops/306778"], ["https://data.delijn.be/stops/401402", "https://data.delijn.be/stops/300919"], ["https://data.delijn.be/stops/202428", "https://data.delijn.be/stops/203428"], ["https://data.delijn.be/stops/106939", "https://data.delijn.be/stops/109733"], ["https://data.delijn.be/stops/300808", "https://data.delijn.be/stops/301980"], ["https://data.delijn.be/stops/200246", "https://data.delijn.be/stops/202009"], ["https://data.delijn.be/stops/402178", "https://data.delijn.be/stops/402196"], ["https://data.delijn.be/stops/304609", "https://data.delijn.be/stops/304648"], ["https://data.delijn.be/stops/301968", "https://data.delijn.be/stops/301991"], ["https://data.delijn.be/stops/101605", "https://data.delijn.be/stops/105730"], ["https://data.delijn.be/stops/506169", "https://data.delijn.be/stops/506177"], ["https://data.delijn.be/stops/302259", "https://data.delijn.be/stops/302260"], ["https://data.delijn.be/stops/308172", "https://data.delijn.be/stops/308173"], ["https://data.delijn.be/stops/202413", "https://data.delijn.be/stops/203422"], ["https://data.delijn.be/stops/403903", "https://data.delijn.be/stops/403911"], ["https://data.delijn.be/stops/300217", "https://data.delijn.be/stops/300220"], ["https://data.delijn.be/stops/107165", "https://data.delijn.be/stops/107166"], ["https://data.delijn.be/stops/504830", "https://data.delijn.be/stops/505778"], ["https://data.delijn.be/stops/103033", "https://data.delijn.be/stops/106748"], ["https://data.delijn.be/stops/200552", "https://data.delijn.be/stops/211094"], ["https://data.delijn.be/stops/504079", "https://data.delijn.be/stops/504570"], ["https://data.delijn.be/stops/200452", "https://data.delijn.be/stops/201286"], ["https://data.delijn.be/stops/410224", "https://data.delijn.be/stops/410226"], ["https://data.delijn.be/stops/301434", "https://data.delijn.be/stops/307322"], ["https://data.delijn.be/stops/202583", "https://data.delijn.be/stops/203583"], ["https://data.delijn.be/stops/206307", "https://data.delijn.be/stops/207306"], ["https://data.delijn.be/stops/406012", "https://data.delijn.be/stops/407146"], ["https://data.delijn.be/stops/101220", "https://data.delijn.be/stops/107944"], ["https://data.delijn.be/stops/203243", "https://data.delijn.be/stops/203489"], ["https://data.delijn.be/stops/304416", "https://data.delijn.be/stops/306876"], ["https://data.delijn.be/stops/400763", "https://data.delijn.be/stops/400764"], ["https://data.delijn.be/stops/301181", "https://data.delijn.be/stops/301266"], ["https://data.delijn.be/stops/208102", "https://data.delijn.be/stops/219005"], ["https://data.delijn.be/stops/406424", "https://data.delijn.be/stops/406443"], ["https://data.delijn.be/stops/503569", "https://data.delijn.be/stops/503572"], ["https://data.delijn.be/stops/503897", "https://data.delijn.be/stops/504942"], ["https://data.delijn.be/stops/403103", "https://data.delijn.be/stops/403119"], ["https://data.delijn.be/stops/505260", "https://data.delijn.be/stops/505261"], ["https://data.delijn.be/stops/200397", "https://data.delijn.be/stops/208333"], ["https://data.delijn.be/stops/401438", "https://data.delijn.be/stops/401596"], ["https://data.delijn.be/stops/300274", "https://data.delijn.be/stops/300275"], ["https://data.delijn.be/stops/204746", "https://data.delijn.be/stops/205746"], ["https://data.delijn.be/stops/407049", "https://data.delijn.be/stops/407065"], ["https://data.delijn.be/stops/204117", "https://data.delijn.be/stops/204118"], ["https://data.delijn.be/stops/201857", "https://data.delijn.be/stops/203396"], ["https://data.delijn.be/stops/502665", "https://data.delijn.be/stops/505577"], ["https://data.delijn.be/stops/409018", "https://data.delijn.be/stops/409028"], ["https://data.delijn.be/stops/403313", "https://data.delijn.be/stops/403344"], ["https://data.delijn.be/stops/305183", "https://data.delijn.be/stops/307101"], ["https://data.delijn.be/stops/204180", "https://data.delijn.be/stops/205905"], ["https://data.delijn.be/stops/503055", "https://data.delijn.be/stops/503346"], ["https://data.delijn.be/stops/304649", "https://data.delijn.be/stops/304650"], ["https://data.delijn.be/stops/300552", "https://data.delijn.be/stops/307859"], ["https://data.delijn.be/stops/103486", "https://data.delijn.be/stops/103488"], ["https://data.delijn.be/stops/400238", "https://data.delijn.be/stops/409391"], ["https://data.delijn.be/stops/504867", "https://data.delijn.be/stops/508588"], ["https://data.delijn.be/stops/200780", "https://data.delijn.be/stops/200782"], ["https://data.delijn.be/stops/302712", "https://data.delijn.be/stops/308833"], ["https://data.delijn.be/stops/206904", "https://data.delijn.be/stops/207215"], ["https://data.delijn.be/stops/405667", "https://data.delijn.be/stops/409392"], ["https://data.delijn.be/stops/105193", "https://data.delijn.be/stops/105196"], ["https://data.delijn.be/stops/206515", "https://data.delijn.be/stops/207515"], ["https://data.delijn.be/stops/501235", "https://data.delijn.be/stops/506236"], ["https://data.delijn.be/stops/103914", "https://data.delijn.be/stops/106596"], ["https://data.delijn.be/stops/501595", "https://data.delijn.be/stops/501641"], ["https://data.delijn.be/stops/102251", "https://data.delijn.be/stops/109031"], ["https://data.delijn.be/stops/204422", "https://data.delijn.be/stops/205766"], ["https://data.delijn.be/stops/301246", "https://data.delijn.be/stops/306327"], ["https://data.delijn.be/stops/407345", "https://data.delijn.be/stops/409965"], ["https://data.delijn.be/stops/207238", "https://data.delijn.be/stops/207802"], ["https://data.delijn.be/stops/302281", "https://data.delijn.be/stops/306791"], ["https://data.delijn.be/stops/106434", "https://data.delijn.be/stops/106436"], ["https://data.delijn.be/stops/304485", "https://data.delijn.be/stops/307566"], ["https://data.delijn.be/stops/205467", "https://data.delijn.be/stops/205468"], ["https://data.delijn.be/stops/501379", "https://data.delijn.be/stops/501382"], ["https://data.delijn.be/stops/502282", "https://data.delijn.be/stops/507282"], ["https://data.delijn.be/stops/104677", "https://data.delijn.be/stops/109600"], ["https://data.delijn.be/stops/301635", "https://data.delijn.be/stops/307766"], ["https://data.delijn.be/stops/206636", "https://data.delijn.be/stops/207891"], ["https://data.delijn.be/stops/203014", "https://data.delijn.be/stops/203015"], ["https://data.delijn.be/stops/301829", "https://data.delijn.be/stops/301834"], ["https://data.delijn.be/stops/404555", "https://data.delijn.be/stops/404575"], ["https://data.delijn.be/stops/405414", "https://data.delijn.be/stops/302835"], ["https://data.delijn.be/stops/107858", "https://data.delijn.be/stops/208900"], ["https://data.delijn.be/stops/504626", "https://data.delijn.be/stops/509626"], ["https://data.delijn.be/stops/103725", "https://data.delijn.be/stops/103965"], ["https://data.delijn.be/stops/207981", "https://data.delijn.be/stops/217020"], ["https://data.delijn.be/stops/105353", "https://data.delijn.be/stops/109971"], ["https://data.delijn.be/stops/204026", "https://data.delijn.be/stops/205027"], ["https://data.delijn.be/stops/105079", "https://data.delijn.be/stops/105088"], ["https://data.delijn.be/stops/106649", "https://data.delijn.be/stops/106653"], ["https://data.delijn.be/stops/206742", "https://data.delijn.be/stops/207984"], ["https://data.delijn.be/stops/103661", "https://data.delijn.be/stops/106335"], ["https://data.delijn.be/stops/410276", "https://data.delijn.be/stops/410277"], ["https://data.delijn.be/stops/300551", "https://data.delijn.be/stops/300618"], ["https://data.delijn.be/stops/301678", "https://data.delijn.be/stops/301683"], ["https://data.delijn.be/stops/106898", "https://data.delijn.be/stops/107213"], ["https://data.delijn.be/stops/202856", "https://data.delijn.be/stops/203855"], ["https://data.delijn.be/stops/101450", "https://data.delijn.be/stops/103850"], ["https://data.delijn.be/stops/200617", "https://data.delijn.be/stops/202920"], ["https://data.delijn.be/stops/200515", "https://data.delijn.be/stops/201174"], ["https://data.delijn.be/stops/408324", "https://data.delijn.be/stops/410160"], ["https://data.delijn.be/stops/208718", "https://data.delijn.be/stops/208719"], ["https://data.delijn.be/stops/407705", "https://data.delijn.be/stops/407709"], ["https://data.delijn.be/stops/502542", "https://data.delijn.be/stops/502545"], ["https://data.delijn.be/stops/506411", "https://data.delijn.be/stops/506475"], ["https://data.delijn.be/stops/305269", "https://data.delijn.be/stops/305319"], ["https://data.delijn.be/stops/200919", "https://data.delijn.be/stops/202047"], ["https://data.delijn.be/stops/300602", "https://data.delijn.be/stops/306800"], ["https://data.delijn.be/stops/107488", "https://data.delijn.be/stops/107489"], ["https://data.delijn.be/stops/105774", "https://data.delijn.be/stops/108013"], ["https://data.delijn.be/stops/505271", "https://data.delijn.be/stops/507715"], ["https://data.delijn.be/stops/103993", "https://data.delijn.be/stops/105393"], ["https://data.delijn.be/stops/504609", "https://data.delijn.be/stops/509613"], ["https://data.delijn.be/stops/503966", "https://data.delijn.be/stops/505548"], ["https://data.delijn.be/stops/104239", "https://data.delijn.be/stops/106785"], ["https://data.delijn.be/stops/400797", "https://data.delijn.be/stops/409609"], ["https://data.delijn.be/stops/205508", "https://data.delijn.be/stops/205822"], ["https://data.delijn.be/stops/102050", "https://data.delijn.be/stops/104175"], ["https://data.delijn.be/stops/300296", "https://data.delijn.be/stops/307478"], ["https://data.delijn.be/stops/301858", "https://data.delijn.be/stops/301862"], ["https://data.delijn.be/stops/400863", "https://data.delijn.be/stops/400865"], ["https://data.delijn.be/stops/105374", "https://data.delijn.be/stops/107503"], ["https://data.delijn.be/stops/502111", "https://data.delijn.be/stops/507120"], ["https://data.delijn.be/stops/503150", "https://data.delijn.be/stops/505200"], ["https://data.delijn.be/stops/106078", "https://data.delijn.be/stops/108732"], ["https://data.delijn.be/stops/201695", "https://data.delijn.be/stops/202988"], ["https://data.delijn.be/stops/509446", "https://data.delijn.be/stops/509447"], ["https://data.delijn.be/stops/500137", "https://data.delijn.be/stops/500138"], ["https://data.delijn.be/stops/106588", "https://data.delijn.be/stops/107276"], ["https://data.delijn.be/stops/307316", "https://data.delijn.be/stops/307319"], ["https://data.delijn.be/stops/504541", "https://data.delijn.be/stops/509569"], ["https://data.delijn.be/stops/404902", "https://data.delijn.be/stops/404985"], ["https://data.delijn.be/stops/408636", "https://data.delijn.be/stops/408637"], ["https://data.delijn.be/stops/300388", "https://data.delijn.be/stops/307491"], ["https://data.delijn.be/stops/202090", "https://data.delijn.be/stops/203090"], ["https://data.delijn.be/stops/107516", "https://data.delijn.be/stops/107517"], ["https://data.delijn.be/stops/308766", "https://data.delijn.be/stops/308767"], ["https://data.delijn.be/stops/409505", "https://data.delijn.be/stops/409529"], ["https://data.delijn.be/stops/505241", "https://data.delijn.be/stops/505292"], ["https://data.delijn.be/stops/104105", "https://data.delijn.be/stops/105065"], ["https://data.delijn.be/stops/501334", "https://data.delijn.be/stops/501357"], ["https://data.delijn.be/stops/206477", "https://data.delijn.be/stops/207477"], ["https://data.delijn.be/stops/204433", "https://data.delijn.be/stops/205431"], ["https://data.delijn.be/stops/300027", "https://data.delijn.be/stops/300052"], ["https://data.delijn.be/stops/508194", "https://data.delijn.be/stops/508198"], ["https://data.delijn.be/stops/200113", "https://data.delijn.be/stops/201072"], ["https://data.delijn.be/stops/505148", "https://data.delijn.be/stops/505244"], ["https://data.delijn.be/stops/402765", "https://data.delijn.be/stops/402790"], ["https://data.delijn.be/stops/206705", "https://data.delijn.be/stops/207990"], ["https://data.delijn.be/stops/503393", "https://data.delijn.be/stops/503419"], ["https://data.delijn.be/stops/506629", "https://data.delijn.be/stops/508131"], ["https://data.delijn.be/stops/200537", "https://data.delijn.be/stops/201161"], ["https://data.delijn.be/stops/208170", "https://data.delijn.be/stops/209170"], ["https://data.delijn.be/stops/204769", "https://data.delijn.be/stops/205393"], ["https://data.delijn.be/stops/408684", "https://data.delijn.be/stops/408685"], ["https://data.delijn.be/stops/203817", "https://data.delijn.be/stops/203818"], ["https://data.delijn.be/stops/504686", "https://data.delijn.be/stops/504762"], ["https://data.delijn.be/stops/106627", "https://data.delijn.be/stops/106670"], ["https://data.delijn.be/stops/102277", "https://data.delijn.be/stops/108032"], ["https://data.delijn.be/stops/306023", "https://data.delijn.be/stops/307681"], ["https://data.delijn.be/stops/301415", "https://data.delijn.be/stops/301417"], ["https://data.delijn.be/stops/402323", "https://data.delijn.be/stops/408363"], ["https://data.delijn.be/stops/102430", "https://data.delijn.be/stops/104175"], ["https://data.delijn.be/stops/102513", "https://data.delijn.be/stops/406464"], ["https://data.delijn.be/stops/206692", "https://data.delijn.be/stops/207692"], ["https://data.delijn.be/stops/101182", "https://data.delijn.be/stops/107869"], ["https://data.delijn.be/stops/207853", "https://data.delijn.be/stops/209623"], ["https://data.delijn.be/stops/302085", "https://data.delijn.be/stops/302251"], ["https://data.delijn.be/stops/302204", "https://data.delijn.be/stops/302205"], ["https://data.delijn.be/stops/301961", "https://data.delijn.be/stops/301963"], ["https://data.delijn.be/stops/102088", "https://data.delijn.be/stops/106808"], ["https://data.delijn.be/stops/201004", "https://data.delijn.be/stops/201006"], ["https://data.delijn.be/stops/400120", "https://data.delijn.be/stops/400162"], ["https://data.delijn.be/stops/404252", "https://data.delijn.be/stops/404369"], ["https://data.delijn.be/stops/301906", "https://data.delijn.be/stops/301909"], ["https://data.delijn.be/stops/106009", "https://data.delijn.be/stops/106011"], ["https://data.delijn.be/stops/306864", "https://data.delijn.be/stops/307437"], ["https://data.delijn.be/stops/507250", "https://data.delijn.be/stops/509207"], ["https://data.delijn.be/stops/509029", "https://data.delijn.be/stops/509487"], ["https://data.delijn.be/stops/301645", "https://data.delijn.be/stops/301661"], ["https://data.delijn.be/stops/206601", "https://data.delijn.be/stops/207601"], ["https://data.delijn.be/stops/308501", "https://data.delijn.be/stops/308521"], ["https://data.delijn.be/stops/404762", "https://data.delijn.be/stops/404819"], ["https://data.delijn.be/stops/402322", "https://data.delijn.be/stops/407955"], ["https://data.delijn.be/stops/404718", "https://data.delijn.be/stops/404769"], ["https://data.delijn.be/stops/207443", "https://data.delijn.be/stops/209686"], ["https://data.delijn.be/stops/401728", "https://data.delijn.be/stops/406348"], ["https://data.delijn.be/stops/403632", "https://data.delijn.be/stops/403633"], ["https://data.delijn.be/stops/300681", "https://data.delijn.be/stops/305964"], ["https://data.delijn.be/stops/206096", "https://data.delijn.be/stops/207908"], ["https://data.delijn.be/stops/105888", "https://data.delijn.be/stops/109745"], ["https://data.delijn.be/stops/403305", "https://data.delijn.be/stops/403441"], ["https://data.delijn.be/stops/405257", "https://data.delijn.be/stops/405261"], ["https://data.delijn.be/stops/305063", "https://data.delijn.be/stops/305064"], ["https://data.delijn.be/stops/209038", "https://data.delijn.be/stops/209039"], ["https://data.delijn.be/stops/505230", "https://data.delijn.be/stops/508505"], ["https://data.delijn.be/stops/405782", "https://data.delijn.be/stops/409414"], ["https://data.delijn.be/stops/207189", "https://data.delijn.be/stops/207193"], ["https://data.delijn.be/stops/407761", "https://data.delijn.be/stops/409745"], ["https://data.delijn.be/stops/403955", "https://data.delijn.be/stops/403991"], ["https://data.delijn.be/stops/406218", "https://data.delijn.be/stops/406223"], ["https://data.delijn.be/stops/308721", "https://data.delijn.be/stops/308723"], ["https://data.delijn.be/stops/503542", "https://data.delijn.be/stops/508542"], ["https://data.delijn.be/stops/407647", "https://data.delijn.be/stops/407677"], ["https://data.delijn.be/stops/502497", "https://data.delijn.be/stops/504882"], ["https://data.delijn.be/stops/302198", "https://data.delijn.be/stops/308111"], ["https://data.delijn.be/stops/504517", "https://data.delijn.be/stops/504518"], ["https://data.delijn.be/stops/406946", "https://data.delijn.be/stops/406947"], ["https://data.delijn.be/stops/200479", "https://data.delijn.be/stops/201479"], ["https://data.delijn.be/stops/200846", "https://data.delijn.be/stops/202330"], ["https://data.delijn.be/stops/305254", "https://data.delijn.be/stops/305260"], ["https://data.delijn.be/stops/401648", "https://data.delijn.be/stops/408712"], ["https://data.delijn.be/stops/302128", "https://data.delijn.be/stops/302137"], ["https://data.delijn.be/stops/301692", "https://data.delijn.be/stops/301789"], ["https://data.delijn.be/stops/300242", "https://data.delijn.be/stops/304645"], ["https://data.delijn.be/stops/207289", "https://data.delijn.be/stops/207290"], ["https://data.delijn.be/stops/301582", "https://data.delijn.be/stops/303413"], ["https://data.delijn.be/stops/401479", "https://data.delijn.be/stops/401584"], ["https://data.delijn.be/stops/503436", "https://data.delijn.be/stops/508346"], ["https://data.delijn.be/stops/200208", "https://data.delijn.be/stops/201044"], ["https://data.delijn.be/stops/401287", "https://data.delijn.be/stops/401290"], ["https://data.delijn.be/stops/403781", "https://data.delijn.be/stops/407232"], ["https://data.delijn.be/stops/410193", "https://data.delijn.be/stops/410194"], ["https://data.delijn.be/stops/305897", "https://data.delijn.be/stops/305898"], ["https://data.delijn.be/stops/202152", "https://data.delijn.be/stops/203152"], ["https://data.delijn.be/stops/400491", "https://data.delijn.be/stops/406564"], ["https://data.delijn.be/stops/501741", "https://data.delijn.be/stops/504506"], ["https://data.delijn.be/stops/200569", "https://data.delijn.be/stops/201422"], ["https://data.delijn.be/stops/307377", "https://data.delijn.be/stops/307378"], ["https://data.delijn.be/stops/208878", "https://data.delijn.be/stops/218015"], ["https://data.delijn.be/stops/106466", "https://data.delijn.be/stops/106467"], ["https://data.delijn.be/stops/206285", "https://data.delijn.be/stops/207286"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/308823"], ["https://data.delijn.be/stops/504549", "https://data.delijn.be/stops/509550"], ["https://data.delijn.be/stops/402369", "https://data.delijn.be/stops/405574"], ["https://data.delijn.be/stops/401769", "https://data.delijn.be/stops/401834"], ["https://data.delijn.be/stops/500953", "https://data.delijn.be/stops/503623"], ["https://data.delijn.be/stops/102842", "https://data.delijn.be/stops/103046"], ["https://data.delijn.be/stops/503713", "https://data.delijn.be/stops/508713"], ["https://data.delijn.be/stops/503834", "https://data.delijn.be/stops/508141"], ["https://data.delijn.be/stops/404659", "https://data.delijn.be/stops/410132"], ["https://data.delijn.be/stops/206598", "https://data.delijn.be/stops/207597"], ["https://data.delijn.be/stops/205124", "https://data.delijn.be/stops/214004"], ["https://data.delijn.be/stops/102411", "https://data.delijn.be/stops/105440"], ["https://data.delijn.be/stops/403030", "https://data.delijn.be/stops/403057"], ["https://data.delijn.be/stops/406033", "https://data.delijn.be/stops/406140"], ["https://data.delijn.be/stops/304745", "https://data.delijn.be/stops/304778"], ["https://data.delijn.be/stops/408604", "https://data.delijn.be/stops/408772"], ["https://data.delijn.be/stops/502246", "https://data.delijn.be/stops/507246"], ["https://data.delijn.be/stops/102319", "https://data.delijn.be/stops/106314"], ["https://data.delijn.be/stops/300877", "https://data.delijn.be/stops/300885"], ["https://data.delijn.be/stops/504158", "https://data.delijn.be/stops/509170"], ["https://data.delijn.be/stops/200356", "https://data.delijn.be/stops/200357"], ["https://data.delijn.be/stops/107519", "https://data.delijn.be/stops/107521"], ["https://data.delijn.be/stops/204175", "https://data.delijn.be/stops/204176"], ["https://data.delijn.be/stops/102622", "https://data.delijn.be/stops/108209"], ["https://data.delijn.be/stops/404592", "https://data.delijn.be/stops/404607"], ["https://data.delijn.be/stops/206762", "https://data.delijn.be/stops/209617"], ["https://data.delijn.be/stops/108712", "https://data.delijn.be/stops/108713"], ["https://data.delijn.be/stops/504083", "https://data.delijn.be/stops/509083"], ["https://data.delijn.be/stops/504399", "https://data.delijn.be/stops/504414"], ["https://data.delijn.be/stops/403124", "https://data.delijn.be/stops/403235"], ["https://data.delijn.be/stops/201913", "https://data.delijn.be/stops/202510"], ["https://data.delijn.be/stops/207069", "https://data.delijn.be/stops/207903"], ["https://data.delijn.be/stops/102221", "https://data.delijn.be/stops/105542"], ["https://data.delijn.be/stops/104721", "https://data.delijn.be/stops/105185"], ["https://data.delijn.be/stops/208805", "https://data.delijn.be/stops/208954"], ["https://data.delijn.be/stops/502107", "https://data.delijn.be/stops/507090"], ["https://data.delijn.be/stops/504642", "https://data.delijn.be/stops/509642"], ["https://data.delijn.be/stops/103244", "https://data.delijn.be/stops/104605"], ["https://data.delijn.be/stops/404418", "https://data.delijn.be/stops/404475"], ["https://data.delijn.be/stops/208094", "https://data.delijn.be/stops/209632"], ["https://data.delijn.be/stops/200805", "https://data.delijn.be/stops/210056"], ["https://data.delijn.be/stops/202868", "https://data.delijn.be/stops/202869"], ["https://data.delijn.be/stops/102198", "https://data.delijn.be/stops/102566"], ["https://data.delijn.be/stops/203488", "https://data.delijn.be/stops/203489"], ["https://data.delijn.be/stops/300346", "https://data.delijn.be/stops/304861"], ["https://data.delijn.be/stops/207159", "https://data.delijn.be/stops/207161"], ["https://data.delijn.be/stops/400536", "https://data.delijn.be/stops/403584"], ["https://data.delijn.be/stops/200617", "https://data.delijn.be/stops/201617"], ["https://data.delijn.be/stops/103203", "https://data.delijn.be/stops/107186"], ["https://data.delijn.be/stops/102248", "https://data.delijn.be/stops/105801"], ["https://data.delijn.be/stops/402778", "https://data.delijn.be/stops/406921"], ["https://data.delijn.be/stops/207091", "https://data.delijn.be/stops/207093"], ["https://data.delijn.be/stops/503166", "https://data.delijn.be/stops/508159"], ["https://data.delijn.be/stops/503454", "https://data.delijn.be/stops/503986"], ["https://data.delijn.be/stops/202648", "https://data.delijn.be/stops/203648"], ["https://data.delijn.be/stops/107804", "https://data.delijn.be/stops/107806"], ["https://data.delijn.be/stops/302428", "https://data.delijn.be/stops/308095"], ["https://data.delijn.be/stops/105123", "https://data.delijn.be/stops/105128"], ["https://data.delijn.be/stops/102184", "https://data.delijn.be/stops/104593"], ["https://data.delijn.be/stops/208764", "https://data.delijn.be/stops/218014"], ["https://data.delijn.be/stops/300395", "https://data.delijn.be/stops/307279"], ["https://data.delijn.be/stops/204375", "https://data.delijn.be/stops/204765"], ["https://data.delijn.be/stops/305654", "https://data.delijn.be/stops/305662"], ["https://data.delijn.be/stops/102340", "https://data.delijn.be/stops/102345"], ["https://data.delijn.be/stops/102131", "https://data.delijn.be/stops/105708"], ["https://data.delijn.be/stops/208535", "https://data.delijn.be/stops/209536"], ["https://data.delijn.be/stops/501633", "https://data.delijn.be/stops/506231"], ["https://data.delijn.be/stops/505044", "https://data.delijn.be/stops/506227"], ["https://data.delijn.be/stops/200224", "https://data.delijn.be/stops/201225"], ["https://data.delijn.be/stops/107146", "https://data.delijn.be/stops/107148"], ["https://data.delijn.be/stops/501318", "https://data.delijn.be/stops/501523"], ["https://data.delijn.be/stops/407751", "https://data.delijn.be/stops/409794"], ["https://data.delijn.be/stops/400158", "https://data.delijn.be/stops/409067"], ["https://data.delijn.be/stops/109811", "https://data.delijn.be/stops/109812"], ["https://data.delijn.be/stops/505600", "https://data.delijn.be/stops/505601"], ["https://data.delijn.be/stops/506054", "https://data.delijn.be/stops/507646"], ["https://data.delijn.be/stops/304774", "https://data.delijn.be/stops/304775"], ["https://data.delijn.be/stops/505408", "https://data.delijn.be/stops/505409"], ["https://data.delijn.be/stops/102199", "https://data.delijn.be/stops/103314"], ["https://data.delijn.be/stops/202672", "https://data.delijn.be/stops/203727"], ["https://data.delijn.be/stops/401759", "https://data.delijn.be/stops/409406"], ["https://data.delijn.be/stops/201414", "https://data.delijn.be/stops/203359"], ["https://data.delijn.be/stops/307780", "https://data.delijn.be/stops/308859"], ["https://data.delijn.be/stops/200920", "https://data.delijn.be/stops/203691"], ["https://data.delijn.be/stops/505567", "https://data.delijn.be/stops/508751"], ["https://data.delijn.be/stops/300320", "https://data.delijn.be/stops/300321"], ["https://data.delijn.be/stops/302389", "https://data.delijn.be/stops/306183"], ["https://data.delijn.be/stops/401603", "https://data.delijn.be/stops/409755"], ["https://data.delijn.be/stops/216016", "https://data.delijn.be/stops/306078"], ["https://data.delijn.be/stops/504061", "https://data.delijn.be/stops/509061"], ["https://data.delijn.be/stops/505672", "https://data.delijn.be/stops/507355"], ["https://data.delijn.be/stops/200752", "https://data.delijn.be/stops/200768"], ["https://data.delijn.be/stops/501520", "https://data.delijn.be/stops/506301"], ["https://data.delijn.be/stops/401964", "https://data.delijn.be/stops/401987"], ["https://data.delijn.be/stops/200464", "https://data.delijn.be/stops/200663"], ["https://data.delijn.be/stops/402936", "https://data.delijn.be/stops/403973"], ["https://data.delijn.be/stops/109498", "https://data.delijn.be/stops/305632"], ["https://data.delijn.be/stops/107499", "https://data.delijn.be/stops/107748"], ["https://data.delijn.be/stops/505171", "https://data.delijn.be/stops/507353"], ["https://data.delijn.be/stops/208276", "https://data.delijn.be/stops/209276"], ["https://data.delijn.be/stops/204319", "https://data.delijn.be/stops/204362"], ["https://data.delijn.be/stops/107565", "https://data.delijn.be/stops/108070"], ["https://data.delijn.be/stops/207510", "https://data.delijn.be/stops/209666"], ["https://data.delijn.be/stops/308204", "https://data.delijn.be/stops/308226"], ["https://data.delijn.be/stops/305123", "https://data.delijn.be/stops/305138"], ["https://data.delijn.be/stops/406535", "https://data.delijn.be/stops/410335"], ["https://data.delijn.be/stops/103160", "https://data.delijn.be/stops/109739"], ["https://data.delijn.be/stops/402773", "https://data.delijn.be/stops/408275"], ["https://data.delijn.be/stops/507192", "https://data.delijn.be/stops/507939"], ["https://data.delijn.be/stops/300623", "https://data.delijn.be/stops/300625"], ["https://data.delijn.be/stops/403545", "https://data.delijn.be/stops/405643"], ["https://data.delijn.be/stops/102236", "https://data.delijn.be/stops/104287"], ["https://data.delijn.be/stops/104988", "https://data.delijn.be/stops/106295"], ["https://data.delijn.be/stops/502004", "https://data.delijn.be/stops/507004"], ["https://data.delijn.be/stops/401192", "https://data.delijn.be/stops/401196"], ["https://data.delijn.be/stops/204770", "https://data.delijn.be/stops/205770"], ["https://data.delijn.be/stops/202696", "https://data.delijn.be/stops/203697"], ["https://data.delijn.be/stops/206939", "https://data.delijn.be/stops/207836"], ["https://data.delijn.be/stops/409674", "https://data.delijn.be/stops/409685"], ["https://data.delijn.be/stops/206030", "https://data.delijn.be/stops/207685"], ["https://data.delijn.be/stops/404416", "https://data.delijn.be/stops/404448"], ["https://data.delijn.be/stops/104691", "https://data.delijn.be/stops/104693"], ["https://data.delijn.be/stops/504636", "https://data.delijn.be/stops/509636"], ["https://data.delijn.be/stops/507396", "https://data.delijn.be/stops/507404"], ["https://data.delijn.be/stops/408858", "https://data.delijn.be/stops/408916"], ["https://data.delijn.be/stops/108280", "https://data.delijn.be/stops/108285"], ["https://data.delijn.be/stops/200836", "https://data.delijn.be/stops/200838"], ["https://data.delijn.be/stops/104562", "https://data.delijn.be/stops/104564"], ["https://data.delijn.be/stops/303699", "https://data.delijn.be/stops/303780"], ["https://data.delijn.be/stops/200827", "https://data.delijn.be/stops/200862"], ["https://data.delijn.be/stops/303626", "https://data.delijn.be/stops/307207"], ["https://data.delijn.be/stops/304429", "https://data.delijn.be/stops/304430"], ["https://data.delijn.be/stops/306903", "https://data.delijn.be/stops/308725"], ["https://data.delijn.be/stops/400419", "https://data.delijn.be/stops/400421"], ["https://data.delijn.be/stops/401514", "https://data.delijn.be/stops/404542"], ["https://data.delijn.be/stops/505550", "https://data.delijn.be/stops/505922"], ["https://data.delijn.be/stops/104602", "https://data.delijn.be/stops/108271"], ["https://data.delijn.be/stops/501210", "https://data.delijn.be/stops/505038"], ["https://data.delijn.be/stops/302220", "https://data.delijn.be/stops/302248"], ["https://data.delijn.be/stops/202169", "https://data.delijn.be/stops/204079"], ["https://data.delijn.be/stops/109075", "https://data.delijn.be/stops/109076"], ["https://data.delijn.be/stops/201717", "https://data.delijn.be/stops/203579"], ["https://data.delijn.be/stops/301705", "https://data.delijn.be/stops/306879"], ["https://data.delijn.be/stops/403517", "https://data.delijn.be/stops/403560"], ["https://data.delijn.be/stops/200130", "https://data.delijn.be/stops/208939"], ["https://data.delijn.be/stops/205499", "https://data.delijn.be/stops/205500"], ["https://data.delijn.be/stops/301539", "https://data.delijn.be/stops/301551"], ["https://data.delijn.be/stops/200213", "https://data.delijn.be/stops/201217"], ["https://data.delijn.be/stops/102585", "https://data.delijn.be/stops/102745"], ["https://data.delijn.be/stops/500556", "https://data.delijn.be/stops/504660"], ["https://data.delijn.be/stops/204735", "https://data.delijn.be/stops/205758"], ["https://data.delijn.be/stops/207541", "https://data.delijn.be/stops/216004"], ["https://data.delijn.be/stops/408495", "https://data.delijn.be/stops/408692"], ["https://data.delijn.be/stops/300177", "https://data.delijn.be/stops/300187"], ["https://data.delijn.be/stops/304057", "https://data.delijn.be/stops/304078"], ["https://data.delijn.be/stops/400234", "https://data.delijn.be/stops/410000"], ["https://data.delijn.be/stops/308478", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/302710", "https://data.delijn.be/stops/308861"], ["https://data.delijn.be/stops/200625", "https://data.delijn.be/stops/201624"], ["https://data.delijn.be/stops/102604", "https://data.delijn.be/stops/106119"], ["https://data.delijn.be/stops/301999", "https://data.delijn.be/stops/303616"], ["https://data.delijn.be/stops/206022", "https://data.delijn.be/stops/207022"], ["https://data.delijn.be/stops/501764", "https://data.delijn.be/stops/505740"], ["https://data.delijn.be/stops/503752", "https://data.delijn.be/stops/508752"], ["https://data.delijn.be/stops/101649", "https://data.delijn.be/stops/102763"], ["https://data.delijn.be/stops/402207", "https://data.delijn.be/stops/402368"], ["https://data.delijn.be/stops/304543", "https://data.delijn.be/stops/304547"], ["https://data.delijn.be/stops/106887", "https://data.delijn.be/stops/107223"], ["https://data.delijn.be/stops/507406", "https://data.delijn.be/stops/507621"], ["https://data.delijn.be/stops/102616", "https://data.delijn.be/stops/108208"], ["https://data.delijn.be/stops/207289", "https://data.delijn.be/stops/207811"], ["https://data.delijn.be/stops/200269", "https://data.delijn.be/stops/201269"], ["https://data.delijn.be/stops/201940", "https://data.delijn.be/stops/203909"], ["https://data.delijn.be/stops/406465", "https://data.delijn.be/stops/406489"], ["https://data.delijn.be/stops/406078", "https://data.delijn.be/stops/406079"], ["https://data.delijn.be/stops/303801", "https://data.delijn.be/stops/303845"], ["https://data.delijn.be/stops/303455", "https://data.delijn.be/stops/303519"], ["https://data.delijn.be/stops/206998", "https://data.delijn.be/stops/207868"], ["https://data.delijn.be/stops/101134", "https://data.delijn.be/stops/104980"], ["https://data.delijn.be/stops/507019", "https://data.delijn.be/stops/507927"], ["https://data.delijn.be/stops/503146", "https://data.delijn.be/stops/508146"], ["https://data.delijn.be/stops/301679", "https://data.delijn.be/stops/301685"], ["https://data.delijn.be/stops/406182", "https://data.delijn.be/stops/410270"], ["https://data.delijn.be/stops/106284", "https://data.delijn.be/stops/106301"], ["https://data.delijn.be/stops/300547", "https://data.delijn.be/stops/300710"], ["https://data.delijn.be/stops/201122", "https://data.delijn.be/stops/201125"], ["https://data.delijn.be/stops/106104", "https://data.delijn.be/stops/106157"], ["https://data.delijn.be/stops/308458", "https://data.delijn.be/stops/308465"], ["https://data.delijn.be/stops/405641", "https://data.delijn.be/stops/410339"], ["https://data.delijn.be/stops/303082", "https://data.delijn.be/stops/303150"], ["https://data.delijn.be/stops/203387", "https://data.delijn.be/stops/209947"], ["https://data.delijn.be/stops/400348", "https://data.delijn.be/stops/400418"], ["https://data.delijn.be/stops/400443", "https://data.delijn.be/stops/400446"], ["https://data.delijn.be/stops/204207", "https://data.delijn.be/stops/204472"], ["https://data.delijn.be/stops/404402", "https://data.delijn.be/stops/404426"], ["https://data.delijn.be/stops/303679", "https://data.delijn.be/stops/306100"], ["https://data.delijn.be/stops/102241", "https://data.delijn.be/stops/105934"], ["https://data.delijn.be/stops/400626", "https://data.delijn.be/stops/408290"], ["https://data.delijn.be/stops/205113", "https://data.delijn.be/stops/205688"], ["https://data.delijn.be/stops/408428", "https://data.delijn.be/stops/408677"], ["https://data.delijn.be/stops/202279", "https://data.delijn.be/stops/202891"], ["https://data.delijn.be/stops/503294", "https://data.delijn.be/stops/505996"], ["https://data.delijn.be/stops/304233", "https://data.delijn.be/stops/304686"], ["https://data.delijn.be/stops/200275", "https://data.delijn.be/stops/200276"], ["https://data.delijn.be/stops/209603", "https://data.delijn.be/stops/307593"], ["https://data.delijn.be/stops/401850", "https://data.delijn.be/stops/406347"], ["https://data.delijn.be/stops/405129", "https://data.delijn.be/stops/405404"], ["https://data.delijn.be/stops/206657", "https://data.delijn.be/stops/206718"], ["https://data.delijn.be/stops/306204", "https://data.delijn.be/stops/306205"], ["https://data.delijn.be/stops/106456", "https://data.delijn.be/stops/106459"], ["https://data.delijn.be/stops/407077", "https://data.delijn.be/stops/308079"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/501179"], ["https://data.delijn.be/stops/502033", "https://data.delijn.be/stops/507048"], ["https://data.delijn.be/stops/402630", "https://data.delijn.be/stops/405028"], ["https://data.delijn.be/stops/400452", "https://data.delijn.be/stops/407214"], ["https://data.delijn.be/stops/200348", "https://data.delijn.be/stops/201501"], ["https://data.delijn.be/stops/506198", "https://data.delijn.be/stops/506468"], ["https://data.delijn.be/stops/109042", "https://data.delijn.be/stops/109044"], ["https://data.delijn.be/stops/102920", "https://data.delijn.be/stops/104665"], ["https://data.delijn.be/stops/401448", "https://data.delijn.be/stops/401551"], ["https://data.delijn.be/stops/200331", "https://data.delijn.be/stops/203198"], ["https://data.delijn.be/stops/203116", "https://data.delijn.be/stops/205795"], ["https://data.delijn.be/stops/403096", "https://data.delijn.be/stops/403097"], ["https://data.delijn.be/stops/502106", "https://data.delijn.be/stops/502119"], ["https://data.delijn.be/stops/206610", "https://data.delijn.be/stops/207973"], ["https://data.delijn.be/stops/206934", "https://data.delijn.be/stops/206950"], ["https://data.delijn.be/stops/107335", "https://data.delijn.be/stops/107345"], ["https://data.delijn.be/stops/101341", "https://data.delijn.be/stops/108102"], ["https://data.delijn.be/stops/205581", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/200240", "https://data.delijn.be/stops/201277"], ["https://data.delijn.be/stops/400880", "https://data.delijn.be/stops/400881"], ["https://data.delijn.be/stops/101434", "https://data.delijn.be/stops/107289"], ["https://data.delijn.be/stops/502530", "https://data.delijn.be/stops/507530"], ["https://data.delijn.be/stops/108009", "https://data.delijn.be/stops/108612"], ["https://data.delijn.be/stops/401666", "https://data.delijn.be/stops/307632"], ["https://data.delijn.be/stops/300018", "https://data.delijn.be/stops/302871"], ["https://data.delijn.be/stops/505302", "https://data.delijn.be/stops/509593"], ["https://data.delijn.be/stops/303628", "https://data.delijn.be/stops/304204"], ["https://data.delijn.be/stops/204821", "https://data.delijn.be/stops/205821"], ["https://data.delijn.be/stops/407875", "https://data.delijn.be/stops/409349"], ["https://data.delijn.be/stops/303113", "https://data.delijn.be/stops/305443"], ["https://data.delijn.be/stops/403618", "https://data.delijn.be/stops/403619"], ["https://data.delijn.be/stops/101501", "https://data.delijn.be/stops/308496"], ["https://data.delijn.be/stops/303619", "https://data.delijn.be/stops/305445"], ["https://data.delijn.be/stops/106044", "https://data.delijn.be/stops/106046"], ["https://data.delijn.be/stops/300165", "https://data.delijn.be/stops/308700"], ["https://data.delijn.be/stops/202851", "https://data.delijn.be/stops/203909"], ["https://data.delijn.be/stops/206660", "https://data.delijn.be/stops/207514"], ["https://data.delijn.be/stops/201770", "https://data.delijn.be/stops/201820"], ["https://data.delijn.be/stops/504425", "https://data.delijn.be/stops/505163"], ["https://data.delijn.be/stops/208676", "https://data.delijn.be/stops/208684"], ["https://data.delijn.be/stops/405072", "https://data.delijn.be/stops/405888"], ["https://data.delijn.be/stops/200928", "https://data.delijn.be/stops/203046"], ["https://data.delijn.be/stops/407203", "https://data.delijn.be/stops/407208"], ["https://data.delijn.be/stops/109719", "https://data.delijn.be/stops/410261"], ["https://data.delijn.be/stops/305333", "https://data.delijn.be/stops/307601"], ["https://data.delijn.be/stops/504287", "https://data.delijn.be/stops/509627"], ["https://data.delijn.be/stops/502815", "https://data.delijn.be/stops/507308"], ["https://data.delijn.be/stops/505335", "https://data.delijn.be/stops/507553"], ["https://data.delijn.be/stops/200193", "https://data.delijn.be/stops/201196"], ["https://data.delijn.be/stops/401760", "https://data.delijn.be/stops/401765"], ["https://data.delijn.be/stops/209172", "https://data.delijn.be/stops/209173"], ["https://data.delijn.be/stops/108585", "https://data.delijn.be/stops/108590"], ["https://data.delijn.be/stops/200064", "https://data.delijn.be/stops/200271"], ["https://data.delijn.be/stops/206611", "https://data.delijn.be/stops/207612"], ["https://data.delijn.be/stops/305241", "https://data.delijn.be/stops/305242"], ["https://data.delijn.be/stops/109357", "https://data.delijn.be/stops/109358"], ["https://data.delijn.be/stops/101898", "https://data.delijn.be/stops/107799"], ["https://data.delijn.be/stops/105206", "https://data.delijn.be/stops/108872"], ["https://data.delijn.be/stops/200274", "https://data.delijn.be/stops/201274"], ["https://data.delijn.be/stops/300489", "https://data.delijn.be/stops/300494"], ["https://data.delijn.be/stops/302951", "https://data.delijn.be/stops/302969"], ["https://data.delijn.be/stops/300322", "https://data.delijn.be/stops/304862"], ["https://data.delijn.be/stops/504561", "https://data.delijn.be/stops/505184"], ["https://data.delijn.be/stops/208053", "https://data.delijn.be/stops/209657"], ["https://data.delijn.be/stops/305257", "https://data.delijn.be/stops/306343"], ["https://data.delijn.be/stops/101061", "https://data.delijn.be/stops/101063"], ["https://data.delijn.be/stops/105594", "https://data.delijn.be/stops/105597"], ["https://data.delijn.be/stops/505000", "https://data.delijn.be/stops/505572"], ["https://data.delijn.be/stops/106737", "https://data.delijn.be/stops/106739"], ["https://data.delijn.be/stops/205158", "https://data.delijn.be/stops/211067"], ["https://data.delijn.be/stops/400929", "https://data.delijn.be/stops/400941"], ["https://data.delijn.be/stops/107990", "https://data.delijn.be/stops/109035"], ["https://data.delijn.be/stops/303270", "https://data.delijn.be/stops/305729"], ["https://data.delijn.be/stops/505916", "https://data.delijn.be/stops/509529"], ["https://data.delijn.be/stops/509129", "https://data.delijn.be/stops/509132"], ["https://data.delijn.be/stops/104284", "https://data.delijn.be/stops/105899"], ["https://data.delijn.be/stops/108686", "https://data.delijn.be/stops/108894"], ["https://data.delijn.be/stops/106498", "https://data.delijn.be/stops/109189"], ["https://data.delijn.be/stops/401373", "https://data.delijn.be/stops/401375"], ["https://data.delijn.be/stops/101417", "https://data.delijn.be/stops/108693"], ["https://data.delijn.be/stops/104627", "https://data.delijn.be/stops/104845"], ["https://data.delijn.be/stops/302541", "https://data.delijn.be/stops/303373"], ["https://data.delijn.be/stops/303369", "https://data.delijn.be/stops/307031"], ["https://data.delijn.be/stops/204649", "https://data.delijn.be/stops/205695"], ["https://data.delijn.be/stops/509386", "https://data.delijn.be/stops/509715"], ["https://data.delijn.be/stops/300602", "https://data.delijn.be/stops/300606"], ["https://data.delijn.be/stops/405202", "https://data.delijn.be/stops/405203"], ["https://data.delijn.be/stops/200891", "https://data.delijn.be/stops/507277"], ["https://data.delijn.be/stops/400649", "https://data.delijn.be/stops/400660"], ["https://data.delijn.be/stops/400457", "https://data.delijn.be/stops/404843"], ["https://data.delijn.be/stops/303285", "https://data.delijn.be/stops/303314"], ["https://data.delijn.be/stops/403140", "https://data.delijn.be/stops/403368"], ["https://data.delijn.be/stops/400129", "https://data.delijn.be/stops/403310"], ["https://data.delijn.be/stops/305966", "https://data.delijn.be/stops/307911"], ["https://data.delijn.be/stops/507764", "https://data.delijn.be/stops/509820"], ["https://data.delijn.be/stops/204294", "https://data.delijn.be/stops/205533"], ["https://data.delijn.be/stops/108401", "https://data.delijn.be/stops/306589"], ["https://data.delijn.be/stops/404176", "https://data.delijn.be/stops/404196"], ["https://data.delijn.be/stops/102204", "https://data.delijn.be/stops/105638"], ["https://data.delijn.be/stops/404610", "https://data.delijn.be/stops/404614"], ["https://data.delijn.be/stops/104020", "https://data.delijn.be/stops/104645"], ["https://data.delijn.be/stops/305080", "https://data.delijn.be/stops/307944"], ["https://data.delijn.be/stops/504260", "https://data.delijn.be/stops/505568"], ["https://data.delijn.be/stops/301380", "https://data.delijn.be/stops/306652"], ["https://data.delijn.be/stops/401386", "https://data.delijn.be/stops/410180"], ["https://data.delijn.be/stops/109198", "https://data.delijn.be/stops/109200"], ["https://data.delijn.be/stops/304695", "https://data.delijn.be/stops/308769"], ["https://data.delijn.be/stops/300230", "https://data.delijn.be/stops/300232"], ["https://data.delijn.be/stops/206065", "https://data.delijn.be/stops/207066"], ["https://data.delijn.be/stops/204037", "https://data.delijn.be/stops/204038"], ["https://data.delijn.be/stops/304253", "https://data.delijn.be/stops/304254"], ["https://data.delijn.be/stops/502029", "https://data.delijn.be/stops/502046"], ["https://data.delijn.be/stops/201479", "https://data.delijn.be/stops/201887"], ["https://data.delijn.be/stops/206752", "https://data.delijn.be/stops/206777"], ["https://data.delijn.be/stops/306793", "https://data.delijn.be/stops/307348"], ["https://data.delijn.be/stops/407146", "https://data.delijn.be/stops/410199"], ["https://data.delijn.be/stops/308049", "https://data.delijn.be/stops/308904"], ["https://data.delijn.be/stops/408642", "https://data.delijn.be/stops/408646"], ["https://data.delijn.be/stops/108673", "https://data.delijn.be/stops/109852"], ["https://data.delijn.be/stops/201385", "https://data.delijn.be/stops/201386"], ["https://data.delijn.be/stops/503947", "https://data.delijn.be/stops/508947"], ["https://data.delijn.be/stops/206504", "https://data.delijn.be/stops/207149"], ["https://data.delijn.be/stops/206164", "https://data.delijn.be/stops/304554"], ["https://data.delijn.be/stops/501448", "https://data.delijn.be/stops/506448"], ["https://data.delijn.be/stops/403475", "https://data.delijn.be/stops/410219"], ["https://data.delijn.be/stops/405641", "https://data.delijn.be/stops/405643"], ["https://data.delijn.be/stops/303128", "https://data.delijn.be/stops/303130"], ["https://data.delijn.be/stops/102416", "https://data.delijn.be/stops/108466"], ["https://data.delijn.be/stops/208552", "https://data.delijn.be/stops/208569"], ["https://data.delijn.be/stops/208019", "https://data.delijn.be/stops/209019"], ["https://data.delijn.be/stops/402323", "https://data.delijn.be/stops/402369"], ["https://data.delijn.be/stops/204139", "https://data.delijn.be/stops/205575"], ["https://data.delijn.be/stops/201744", "https://data.delijn.be/stops/203783"], ["https://data.delijn.be/stops/202113", "https://data.delijn.be/stops/203113"], ["https://data.delijn.be/stops/400212", "https://data.delijn.be/stops/407193"], ["https://data.delijn.be/stops/108048", "https://data.delijn.be/stops/108050"], ["https://data.delijn.be/stops/200061", "https://data.delijn.be/stops/201481"], ["https://data.delijn.be/stops/304914", "https://data.delijn.be/stops/308753"], ["https://data.delijn.be/stops/305420", "https://data.delijn.be/stops/305926"], ["https://data.delijn.be/stops/402262", "https://data.delijn.be/stops/402487"], ["https://data.delijn.be/stops/208649", "https://data.delijn.be/stops/208650"], ["https://data.delijn.be/stops/403280", "https://data.delijn.be/stops/405328"], ["https://data.delijn.be/stops/109173", "https://data.delijn.be/stops/109177"], ["https://data.delijn.be/stops/103261", "https://data.delijn.be/stops/105852"], ["https://data.delijn.be/stops/402965", "https://data.delijn.be/stops/402973"], ["https://data.delijn.be/stops/201371", "https://data.delijn.be/stops/201372"], ["https://data.delijn.be/stops/109671", "https://data.delijn.be/stops/109675"], ["https://data.delijn.be/stops/204592", "https://data.delijn.be/stops/205582"], ["https://data.delijn.be/stops/300505", "https://data.delijn.be/stops/300506"], ["https://data.delijn.be/stops/503617", "https://data.delijn.be/stops/508614"], ["https://data.delijn.be/stops/302068", "https://data.delijn.be/stops/302073"], ["https://data.delijn.be/stops/503920", "https://data.delijn.be/stops/503922"], ["https://data.delijn.be/stops/104422", "https://data.delijn.be/stops/204286"], ["https://data.delijn.be/stops/308132", "https://data.delijn.be/stops/308133"], ["https://data.delijn.be/stops/300244", "https://data.delijn.be/stops/300254"], ["https://data.delijn.be/stops/301401", "https://data.delijn.be/stops/303226"], ["https://data.delijn.be/stops/104051", "https://data.delijn.be/stops/108394"], ["https://data.delijn.be/stops/300721", "https://data.delijn.be/stops/301426"], ["https://data.delijn.be/stops/506174", "https://data.delijn.be/stops/506780"], ["https://data.delijn.be/stops/305250", "https://data.delijn.be/stops/305288"], ["https://data.delijn.be/stops/206607", "https://data.delijn.be/stops/206726"], ["https://data.delijn.be/stops/101388", "https://data.delijn.be/stops/101392"], ["https://data.delijn.be/stops/101537", "https://data.delijn.be/stops/109076"], ["https://data.delijn.be/stops/206491", "https://data.delijn.be/stops/209680"], ["https://data.delijn.be/stops/103940", "https://data.delijn.be/stops/103946"], ["https://data.delijn.be/stops/400761", "https://data.delijn.be/stops/400859"], ["https://data.delijn.be/stops/102799", "https://data.delijn.be/stops/103895"], ["https://data.delijn.be/stops/504607", "https://data.delijn.be/stops/505971"], ["https://data.delijn.be/stops/101368", "https://data.delijn.be/stops/101401"], ["https://data.delijn.be/stops/200344", "https://data.delijn.be/stops/201344"], ["https://data.delijn.be/stops/504483", "https://data.delijn.be/stops/504485"], ["https://data.delijn.be/stops/201180", "https://data.delijn.be/stops/201186"], ["https://data.delijn.be/stops/300762", "https://data.delijn.be/stops/306203"], ["https://data.delijn.be/stops/201959", "https://data.delijn.be/stops/203195"], ["https://data.delijn.be/stops/208292", "https://data.delijn.be/stops/208293"], ["https://data.delijn.be/stops/109225", "https://data.delijn.be/stops/109712"], ["https://data.delijn.be/stops/302192", "https://data.delijn.be/stops/302196"], ["https://data.delijn.be/stops/106569", "https://data.delijn.be/stops/106571"], ["https://data.delijn.be/stops/303696", "https://data.delijn.be/stops/303829"], ["https://data.delijn.be/stops/509486", "https://data.delijn.be/stops/509488"], ["https://data.delijn.be/stops/206006", "https://data.delijn.be/stops/206007"], ["https://data.delijn.be/stops/206437", "https://data.delijn.be/stops/207437"], ["https://data.delijn.be/stops/106432", "https://data.delijn.be/stops/106434"], ["https://data.delijn.be/stops/400841", "https://data.delijn.be/stops/404303"], ["https://data.delijn.be/stops/504372", "https://data.delijn.be/stops/509609"], ["https://data.delijn.be/stops/203045", "https://data.delijn.be/stops/203076"], ["https://data.delijn.be/stops/302081", "https://data.delijn.be/stops/302086"], ["https://data.delijn.be/stops/101900", "https://data.delijn.be/stops/102145"], ["https://data.delijn.be/stops/201831", "https://data.delijn.be/stops/201832"], ["https://data.delijn.be/stops/304965", "https://data.delijn.be/stops/304966"], ["https://data.delijn.be/stops/301619", "https://data.delijn.be/stops/307675"], ["https://data.delijn.be/stops/202701", "https://data.delijn.be/stops/202703"], ["https://data.delijn.be/stops/406162", "https://data.delijn.be/stops/407303"], ["https://data.delijn.be/stops/504057", "https://data.delijn.be/stops/509057"], ["https://data.delijn.be/stops/308086", "https://data.delijn.be/stops/308087"], ["https://data.delijn.be/stops/406359", "https://data.delijn.be/stops/406368"], ["https://data.delijn.be/stops/508123", "https://data.delijn.be/stops/509888"], ["https://data.delijn.be/stops/504611", "https://data.delijn.be/stops/509612"], ["https://data.delijn.be/stops/204583", "https://data.delijn.be/stops/204584"], ["https://data.delijn.be/stops/107859", "https://data.delijn.be/stops/107861"], ["https://data.delijn.be/stops/303367", "https://data.delijn.be/stops/303368"], ["https://data.delijn.be/stops/507959", "https://data.delijn.be/stops/507960"], ["https://data.delijn.be/stops/504796", "https://data.delijn.be/stops/504798"], ["https://data.delijn.be/stops/403990", "https://data.delijn.be/stops/403991"], ["https://data.delijn.be/stops/401278", "https://data.delijn.be/stops/401279"], ["https://data.delijn.be/stops/208171", "https://data.delijn.be/stops/209170"], ["https://data.delijn.be/stops/303581", "https://data.delijn.be/stops/303582"], ["https://data.delijn.be/stops/107852", "https://data.delijn.be/stops/107856"], ["https://data.delijn.be/stops/205770", "https://data.delijn.be/stops/205771"], ["https://data.delijn.be/stops/105016", "https://data.delijn.be/stops/105018"], ["https://data.delijn.be/stops/208202", "https://data.delijn.be/stops/209768"], ["https://data.delijn.be/stops/207786", "https://data.delijn.be/stops/208370"], ["https://data.delijn.be/stops/103998", "https://data.delijn.be/stops/104942"], ["https://data.delijn.be/stops/206751", "https://data.delijn.be/stops/209479"], ["https://data.delijn.be/stops/207797", "https://data.delijn.be/stops/209838"], ["https://data.delijn.be/stops/103317", "https://data.delijn.be/stops/105792"], ["https://data.delijn.be/stops/202026", "https://data.delijn.be/stops/202031"], ["https://data.delijn.be/stops/208634", "https://data.delijn.be/stops/209633"], ["https://data.delijn.be/stops/102925", "https://data.delijn.be/stops/103415"], ["https://data.delijn.be/stops/301516", "https://data.delijn.be/stops/301517"], ["https://data.delijn.be/stops/307941", "https://data.delijn.be/stops/307942"], ["https://data.delijn.be/stops/404768", "https://data.delijn.be/stops/404789"], ["https://data.delijn.be/stops/107233", "https://data.delijn.be/stops/107234"], ["https://data.delijn.be/stops/407808", "https://data.delijn.be/stops/407809"], ["https://data.delijn.be/stops/402628", "https://data.delijn.be/stops/405029"], ["https://data.delijn.be/stops/405560", "https://data.delijn.be/stops/405561"], ["https://data.delijn.be/stops/300184", "https://data.delijn.be/stops/300185"], ["https://data.delijn.be/stops/303307", "https://data.delijn.be/stops/303313"], ["https://data.delijn.be/stops/502695", "https://data.delijn.be/stops/502696"], ["https://data.delijn.be/stops/109886", "https://data.delijn.be/stops/109887"], ["https://data.delijn.be/stops/508838", "https://data.delijn.be/stops/508839"], ["https://data.delijn.be/stops/307956", "https://data.delijn.be/stops/307957"], ["https://data.delijn.be/stops/300634", "https://data.delijn.be/stops/304346"], ["https://data.delijn.be/stops/503870", "https://data.delijn.be/stops/508870"], ["https://data.delijn.be/stops/304641", "https://data.delijn.be/stops/308903"], ["https://data.delijn.be/stops/503607", "https://data.delijn.be/stops/508613"], ["https://data.delijn.be/stops/206463", "https://data.delijn.be/stops/207463"], ["https://data.delijn.be/stops/305003", "https://data.delijn.be/stops/305005"], ["https://data.delijn.be/stops/108281", "https://data.delijn.be/stops/109359"], ["https://data.delijn.be/stops/304334", "https://data.delijn.be/stops/304335"], ["https://data.delijn.be/stops/509352", "https://data.delijn.be/stops/509353"], ["https://data.delijn.be/stops/102396", "https://data.delijn.be/stops/108193"], ["https://data.delijn.be/stops/407852", "https://data.delijn.be/stops/408064"], ["https://data.delijn.be/stops/207338", "https://data.delijn.be/stops/207746"], ["https://data.delijn.be/stops/305737", "https://data.delijn.be/stops/306329"], ["https://data.delijn.be/stops/201081", "https://data.delijn.be/stops/209958"], ["https://data.delijn.be/stops/303807", "https://data.delijn.be/stops/308713"], ["https://data.delijn.be/stops/402953", "https://data.delijn.be/stops/405408"], ["https://data.delijn.be/stops/306689", "https://data.delijn.be/stops/306690"], ["https://data.delijn.be/stops/108113", "https://data.delijn.be/stops/108147"], ["https://data.delijn.be/stops/503103", "https://data.delijn.be/stops/505792"], ["https://data.delijn.be/stops/502768", "https://data.delijn.be/stops/507300"], ["https://data.delijn.be/stops/305577", "https://data.delijn.be/stops/306093"], ["https://data.delijn.be/stops/405921", "https://data.delijn.be/stops/406134"], ["https://data.delijn.be/stops/104504", "https://data.delijn.be/stops/308795"], ["https://data.delijn.be/stops/503846", "https://data.delijn.be/stops/505226"], ["https://data.delijn.be/stops/201762", "https://data.delijn.be/stops/208271"], ["https://data.delijn.be/stops/400758", "https://data.delijn.be/stops/409585"], ["https://data.delijn.be/stops/302665", "https://data.delijn.be/stops/302666"], ["https://data.delijn.be/stops/508497", "https://data.delijn.be/stops/508499"], ["https://data.delijn.be/stops/507407", "https://data.delijn.be/stops/507410"], ["https://data.delijn.be/stops/402225", "https://data.delijn.be/stops/402398"], ["https://data.delijn.be/stops/503301", "https://data.delijn.be/stops/504859"], ["https://data.delijn.be/stops/208670", "https://data.delijn.be/stops/208808"], ["https://data.delijn.be/stops/400768", "https://data.delijn.be/stops/410085"], ["https://data.delijn.be/stops/206553", "https://data.delijn.be/stops/209756"], ["https://data.delijn.be/stops/405068", "https://data.delijn.be/stops/405069"], ["https://data.delijn.be/stops/407693", "https://data.delijn.be/stops/407745"], ["https://data.delijn.be/stops/200428", "https://data.delijn.be/stops/201430"], ["https://data.delijn.be/stops/105080", "https://data.delijn.be/stops/105088"], ["https://data.delijn.be/stops/402529", "https://data.delijn.be/stops/402543"], ["https://data.delijn.be/stops/200418", "https://data.delijn.be/stops/201847"], ["https://data.delijn.be/stops/304962", "https://data.delijn.be/stops/305308"], ["https://data.delijn.be/stops/505532", "https://data.delijn.be/stops/508758"], ["https://data.delijn.be/stops/204341", "https://data.delijn.be/stops/205306"], ["https://data.delijn.be/stops/102314", "https://data.delijn.be/stops/104060"], ["https://data.delijn.be/stops/401525", "https://data.delijn.be/stops/403768"], ["https://data.delijn.be/stops/102389", "https://data.delijn.be/stops/107026"], ["https://data.delijn.be/stops/307223", "https://data.delijn.be/stops/307264"], ["https://data.delijn.be/stops/207366", "https://data.delijn.be/stops/207705"], ["https://data.delijn.be/stops/505226", "https://data.delijn.be/stops/505373"], ["https://data.delijn.be/stops/404007", "https://data.delijn.be/stops/404013"], ["https://data.delijn.be/stops/404340", "https://data.delijn.be/stops/404949"], ["https://data.delijn.be/stops/104404", "https://data.delijn.be/stops/204489"], ["https://data.delijn.be/stops/401343", "https://data.delijn.be/stops/401394"], ["https://data.delijn.be/stops/501222", "https://data.delijn.be/stops/506223"], ["https://data.delijn.be/stops/400639", "https://data.delijn.be/stops/400923"], ["https://data.delijn.be/stops/408638", "https://data.delijn.be/stops/302893"], ["https://data.delijn.be/stops/201836", "https://data.delijn.be/stops/202790"], ["https://data.delijn.be/stops/205674", "https://data.delijn.be/stops/205677"], ["https://data.delijn.be/stops/503685", "https://data.delijn.be/stops/503687"], ["https://data.delijn.be/stops/201825", "https://data.delijn.be/stops/202754"], ["https://data.delijn.be/stops/503625", "https://data.delijn.be/stops/508625"], ["https://data.delijn.be/stops/505277", "https://data.delijn.be/stops/505284"], ["https://data.delijn.be/stops/306931", "https://data.delijn.be/stops/306934"], ["https://data.delijn.be/stops/107971", "https://data.delijn.be/stops/108431"], ["https://data.delijn.be/stops/307347", "https://data.delijn.be/stops/307433"], ["https://data.delijn.be/stops/404753", "https://data.delijn.be/stops/404945"], ["https://data.delijn.be/stops/506245", "https://data.delijn.be/stops/506249"], ["https://data.delijn.be/stops/400946", "https://data.delijn.be/stops/400947"], ["https://data.delijn.be/stops/301050", "https://data.delijn.be/stops/301051"], ["https://data.delijn.be/stops/205064", "https://data.delijn.be/stops/205696"], ["https://data.delijn.be/stops/107284", "https://data.delijn.be/stops/107288"], ["https://data.delijn.be/stops/101871", "https://data.delijn.be/stops/102198"], ["https://data.delijn.be/stops/300803", "https://data.delijn.be/stops/300804"], ["https://data.delijn.be/stops/408550", "https://data.delijn.be/stops/408686"], ["https://data.delijn.be/stops/101958", "https://data.delijn.be/stops/108323"], ["https://data.delijn.be/stops/503035", "https://data.delijn.be/stops/503037"], ["https://data.delijn.be/stops/505318", "https://data.delijn.be/stops/507474"], ["https://data.delijn.be/stops/203358", "https://data.delijn.be/stops/210133"], ["https://data.delijn.be/stops/400535", "https://data.delijn.be/stops/404060"], ["https://data.delijn.be/stops/202096", "https://data.delijn.be/stops/203094"], ["https://data.delijn.be/stops/304641", "https://data.delijn.be/stops/305387"], ["https://data.delijn.be/stops/201432", "https://data.delijn.be/stops/201433"], ["https://data.delijn.be/stops/403312", "https://data.delijn.be/stops/409173"], ["https://data.delijn.be/stops/401508", "https://data.delijn.be/stops/402030"], ["https://data.delijn.be/stops/201904", "https://data.delijn.be/stops/203496"], ["https://data.delijn.be/stops/504006", "https://data.delijn.be/stops/504532"], ["https://data.delijn.be/stops/408229", "https://data.delijn.be/stops/408386"], ["https://data.delijn.be/stops/103502", "https://data.delijn.be/stops/106318"], ["https://data.delijn.be/stops/407135", "https://data.delijn.be/stops/407141"], ["https://data.delijn.be/stops/300292", "https://data.delijn.be/stops/300295"], ["https://data.delijn.be/stops/200608", "https://data.delijn.be/stops/202770"], ["https://data.delijn.be/stops/505547", "https://data.delijn.be/stops/507192"], ["https://data.delijn.be/stops/108398", "https://data.delijn.be/stops/108400"], ["https://data.delijn.be/stops/305855", "https://data.delijn.be/stops/305856"], ["https://data.delijn.be/stops/108484", "https://data.delijn.be/stops/306603"], ["https://data.delijn.be/stops/304486", "https://data.delijn.be/stops/304487"], ["https://data.delijn.be/stops/200578", "https://data.delijn.be/stops/201730"], ["https://data.delijn.be/stops/507345", "https://data.delijn.be/stops/507346"], ["https://data.delijn.be/stops/108838", "https://data.delijn.be/stops/108839"], ["https://data.delijn.be/stops/300290", "https://data.delijn.be/stops/300297"], ["https://data.delijn.be/stops/400344", "https://data.delijn.be/stops/400345"], ["https://data.delijn.be/stops/305084", "https://data.delijn.be/stops/305088"], ["https://data.delijn.be/stops/303451", "https://data.delijn.be/stops/303520"], ["https://data.delijn.be/stops/507143", "https://data.delijn.be/stops/507576"], ["https://data.delijn.be/stops/106664", "https://data.delijn.be/stops/106665"], ["https://data.delijn.be/stops/107287", "https://data.delijn.be/stops/107288"], ["https://data.delijn.be/stops/202227", "https://data.delijn.be/stops/203227"], ["https://data.delijn.be/stops/104609", "https://data.delijn.be/stops/109494"], ["https://data.delijn.be/stops/502495", "https://data.delijn.be/stops/507495"], ["https://data.delijn.be/stops/302972", "https://data.delijn.be/stops/306299"], ["https://data.delijn.be/stops/407832", "https://data.delijn.be/stops/409561"], ["https://data.delijn.be/stops/303720", "https://data.delijn.be/stops/303725"], ["https://data.delijn.be/stops/402122", "https://data.delijn.be/stops/402127"], ["https://data.delijn.be/stops/105776", "https://data.delijn.be/stops/105778"], ["https://data.delijn.be/stops/205986", "https://data.delijn.be/stops/207256"], ["https://data.delijn.be/stops/501697", "https://data.delijn.be/stops/507245"], ["https://data.delijn.be/stops/206027", "https://data.delijn.be/stops/206205"], ["https://data.delijn.be/stops/202702", "https://data.delijn.be/stops/211066"], ["https://data.delijn.be/stops/410226", "https://data.delijn.be/stops/410270"], ["https://data.delijn.be/stops/501415", "https://data.delijn.be/stops/506415"], ["https://data.delijn.be/stops/400969", "https://data.delijn.be/stops/400971"], ["https://data.delijn.be/stops/206004", "https://data.delijn.be/stops/206006"], ["https://data.delijn.be/stops/402214", "https://data.delijn.be/stops/404869"], ["https://data.delijn.be/stops/404655", "https://data.delijn.be/stops/410133"], ["https://data.delijn.be/stops/307331", "https://data.delijn.be/stops/308757"], ["https://data.delijn.be/stops/206233", "https://data.delijn.be/stops/207232"], ["https://data.delijn.be/stops/500557", "https://data.delijn.be/stops/500558"], ["https://data.delijn.be/stops/406179", "https://data.delijn.be/stops/406893"], ["https://data.delijn.be/stops/304434", "https://data.delijn.be/stops/304452"], ["https://data.delijn.be/stops/102302", "https://data.delijn.be/stops/108877"], ["https://data.delijn.be/stops/300078", "https://data.delijn.be/stops/300079"], ["https://data.delijn.be/stops/102399", "https://data.delijn.be/stops/103011"], ["https://data.delijn.be/stops/507174", "https://data.delijn.be/stops/507182"], ["https://data.delijn.be/stops/400665", "https://data.delijn.be/stops/408982"], ["https://data.delijn.be/stops/407860", "https://data.delijn.be/stops/306305"], ["https://data.delijn.be/stops/108942", "https://data.delijn.be/stops/109222"], ["https://data.delijn.be/stops/305337", "https://data.delijn.be/stops/305339"], ["https://data.delijn.be/stops/501433", "https://data.delijn.be/stops/506599"], ["https://data.delijn.be/stops/109139", "https://data.delijn.be/stops/109154"], ["https://data.delijn.be/stops/502071", "https://data.delijn.be/stops/507071"], ["https://data.delijn.be/stops/306142", "https://data.delijn.be/stops/306644"], ["https://data.delijn.be/stops/104355", "https://data.delijn.be/stops/104521"], ["https://data.delijn.be/stops/503499", "https://data.delijn.be/stops/503688"], ["https://data.delijn.be/stops/300760", "https://data.delijn.be/stops/300791"], ["https://data.delijn.be/stops/203050", "https://data.delijn.be/stops/203227"], ["https://data.delijn.be/stops/505521", "https://data.delijn.be/stops/505619"], ["https://data.delijn.be/stops/101797", "https://data.delijn.be/stops/108523"], ["https://data.delijn.be/stops/206009", "https://data.delijn.be/stops/216001"], ["https://data.delijn.be/stops/204515", "https://data.delijn.be/stops/205514"], ["https://data.delijn.be/stops/502019", "https://data.delijn.be/stops/507154"], ["https://data.delijn.be/stops/508140", "https://data.delijn.be/stops/508310"], ["https://data.delijn.be/stops/105192", "https://data.delijn.be/stops/108889"], ["https://data.delijn.be/stops/101367", "https://data.delijn.be/stops/106419"], ["https://data.delijn.be/stops/206249", "https://data.delijn.be/stops/208951"], ["https://data.delijn.be/stops/503527", "https://data.delijn.be/stops/508522"], ["https://data.delijn.be/stops/404810", "https://data.delijn.be/stops/404819"], ["https://data.delijn.be/stops/505396", "https://data.delijn.be/stops/507767"], ["https://data.delijn.be/stops/304972", "https://data.delijn.be/stops/304973"], ["https://data.delijn.be/stops/103251", "https://data.delijn.be/stops/107725"], ["https://data.delijn.be/stops/104185", "https://data.delijn.be/stops/104720"], ["https://data.delijn.be/stops/200540", "https://data.delijn.be/stops/201540"], ["https://data.delijn.be/stops/401427", "https://data.delijn.be/stops/402129"], ["https://data.delijn.be/stops/203941", "https://data.delijn.be/stops/210053"], ["https://data.delijn.be/stops/104993", "https://data.delijn.be/stops/109989"], ["https://data.delijn.be/stops/503965", "https://data.delijn.be/stops/509766"], ["https://data.delijn.be/stops/406595", "https://data.delijn.be/stops/406616"], ["https://data.delijn.be/stops/305847", "https://data.delijn.be/stops/306397"], ["https://data.delijn.be/stops/102525", "https://data.delijn.be/stops/405082"], ["https://data.delijn.be/stops/300057", "https://data.delijn.be/stops/300115"], ["https://data.delijn.be/stops/208390", "https://data.delijn.be/stops/208744"], ["https://data.delijn.be/stops/102201", "https://data.delijn.be/stops/105797"], ["https://data.delijn.be/stops/405877", "https://data.delijn.be/stops/409666"], ["https://data.delijn.be/stops/501614", "https://data.delijn.be/stops/501687"], ["https://data.delijn.be/stops/305992", "https://data.delijn.be/stops/307426"], ["https://data.delijn.be/stops/105462", "https://data.delijn.be/stops/105463"], ["https://data.delijn.be/stops/302266", "https://data.delijn.be/stops/302935"], ["https://data.delijn.be/stops/403446", "https://data.delijn.be/stops/409267"], ["https://data.delijn.be/stops/204614", "https://data.delijn.be/stops/205654"], ["https://data.delijn.be/stops/201851", "https://data.delijn.be/stops/202656"], ["https://data.delijn.be/stops/408093", "https://data.delijn.be/stops/408156"], ["https://data.delijn.be/stops/205982", "https://data.delijn.be/stops/208742"], ["https://data.delijn.be/stops/401502", "https://data.delijn.be/stops/401566"], ["https://data.delijn.be/stops/308011", "https://data.delijn.be/stops/308012"], ["https://data.delijn.be/stops/501003", "https://data.delijn.be/stops/506504"], ["https://data.delijn.be/stops/403304", "https://data.delijn.be/stops/403442"], ["https://data.delijn.be/stops/300540", "https://data.delijn.be/stops/305551"], ["https://data.delijn.be/stops/504550", "https://data.delijn.be/stops/505207"], ["https://data.delijn.be/stops/504060", "https://data.delijn.be/stops/505311"], ["https://data.delijn.be/stops/504773", "https://data.delijn.be/stops/508811"], ["https://data.delijn.be/stops/202766", "https://data.delijn.be/stops/203767"], ["https://data.delijn.be/stops/301437", "https://data.delijn.be/stops/301438"], ["https://data.delijn.be/stops/200778", "https://data.delijn.be/stops/208857"], ["https://data.delijn.be/stops/105627", "https://data.delijn.be/stops/107731"], ["https://data.delijn.be/stops/201914", "https://data.delijn.be/stops/216009"], ["https://data.delijn.be/stops/200717", "https://data.delijn.be/stops/201717"], ["https://data.delijn.be/stops/305616", "https://data.delijn.be/stops/305619"], ["https://data.delijn.be/stops/202664", "https://data.delijn.be/stops/203396"], ["https://data.delijn.be/stops/206450", "https://data.delijn.be/stops/207493"], ["https://data.delijn.be/stops/106627", "https://data.delijn.be/stops/106628"], ["https://data.delijn.be/stops/202790", "https://data.delijn.be/stops/202791"], ["https://data.delijn.be/stops/503339", "https://data.delijn.be/stops/505635"], ["https://data.delijn.be/stops/407964", "https://data.delijn.be/stops/407968"], ["https://data.delijn.be/stops/400039", "https://data.delijn.be/stops/400348"], ["https://data.delijn.be/stops/307554", "https://data.delijn.be/stops/307557"], ["https://data.delijn.be/stops/307012", "https://data.delijn.be/stops/307015"], ["https://data.delijn.be/stops/202703", "https://data.delijn.be/stops/202705"], ["https://data.delijn.be/stops/103036", "https://data.delijn.be/stops/106400"], ["https://data.delijn.be/stops/103619", "https://data.delijn.be/stops/109165"], ["https://data.delijn.be/stops/401580", "https://data.delijn.be/stops/401746"], ["https://data.delijn.be/stops/503232", "https://data.delijn.be/stops/508417"], ["https://data.delijn.be/stops/400544", "https://data.delijn.be/stops/403190"], ["https://data.delijn.be/stops/503494", "https://data.delijn.be/stops/508868"], ["https://data.delijn.be/stops/104015", "https://data.delijn.be/stops/104020"], ["https://data.delijn.be/stops/200009", "https://data.delijn.be/stops/210020"], ["https://data.delijn.be/stops/202139", "https://data.delijn.be/stops/203994"], ["https://data.delijn.be/stops/501419", "https://data.delijn.be/stops/506229"], ["https://data.delijn.be/stops/204212", "https://data.delijn.be/stops/206309"], ["https://data.delijn.be/stops/502924", "https://data.delijn.be/stops/505078"], ["https://data.delijn.be/stops/300573", "https://data.delijn.be/stops/300588"], ["https://data.delijn.be/stops/408604", "https://data.delijn.be/stops/408628"], ["https://data.delijn.be/stops/101014", "https://data.delijn.be/stops/101015"], ["https://data.delijn.be/stops/106955", "https://data.delijn.be/stops/106956"], ["https://data.delijn.be/stops/501283", "https://data.delijn.be/stops/506283"], ["https://data.delijn.be/stops/107312", "https://data.delijn.be/stops/108809"], ["https://data.delijn.be/stops/408303", "https://data.delijn.be/stops/308249"], ["https://data.delijn.be/stops/205585", "https://data.delijn.be/stops/205586"], ["https://data.delijn.be/stops/103995", "https://data.delijn.be/stops/108170"], ["https://data.delijn.be/stops/407538", "https://data.delijn.be/stops/407548"], ["https://data.delijn.be/stops/209085", "https://data.delijn.be/stops/209536"], ["https://data.delijn.be/stops/502128", "https://data.delijn.be/stops/502147"], ["https://data.delijn.be/stops/201867", "https://data.delijn.be/stops/202083"], ["https://data.delijn.be/stops/202155", "https://data.delijn.be/stops/203627"], ["https://data.delijn.be/stops/405614", "https://data.delijn.be/stops/407190"], ["https://data.delijn.be/stops/207567", "https://data.delijn.be/stops/207965"], ["https://data.delijn.be/stops/301043", "https://data.delijn.be/stops/301067"], ["https://data.delijn.be/stops/205129", "https://data.delijn.be/stops/205789"], ["https://data.delijn.be/stops/101780", "https://data.delijn.be/stops/102355"], ["https://data.delijn.be/stops/302298", "https://data.delijn.be/stops/302299"], ["https://data.delijn.be/stops/507290", "https://data.delijn.be/stops/507291"], ["https://data.delijn.be/stops/109433", "https://data.delijn.be/stops/109437"], ["https://data.delijn.be/stops/505408", "https://data.delijn.be/stops/508831"], ["https://data.delijn.be/stops/404206", "https://data.delijn.be/stops/404207"], ["https://data.delijn.be/stops/301895", "https://data.delijn.be/stops/305728"], ["https://data.delijn.be/stops/109711", "https://data.delijn.be/stops/406489"], ["https://data.delijn.be/stops/101644", "https://data.delijn.be/stops/109976"], ["https://data.delijn.be/stops/507033", "https://data.delijn.be/stops/507642"], ["https://data.delijn.be/stops/504444", "https://data.delijn.be/stops/509398"], ["https://data.delijn.be/stops/206145", "https://data.delijn.be/stops/206476"], ["https://data.delijn.be/stops/301745", "https://data.delijn.be/stops/305944"], ["https://data.delijn.be/stops/504779", "https://data.delijn.be/stops/504980"], ["https://data.delijn.be/stops/208063", "https://data.delijn.be/stops/209063"], ["https://data.delijn.be/stops/108571", "https://data.delijn.be/stops/108996"], ["https://data.delijn.be/stops/303636", "https://data.delijn.be/stops/304808"], ["https://data.delijn.be/stops/200229", "https://data.delijn.be/stops/202354"], ["https://data.delijn.be/stops/107582", "https://data.delijn.be/stops/109430"], ["https://data.delijn.be/stops/108740", "https://data.delijn.be/stops/109135"], ["https://data.delijn.be/stops/510003", "https://data.delijn.be/stops/510005"], ["https://data.delijn.be/stops/206645", "https://data.delijn.be/stops/207645"], ["https://data.delijn.be/stops/200195", "https://data.delijn.be/stops/201199"], ["https://data.delijn.be/stops/502404", "https://data.delijn.be/stops/502578"], ["https://data.delijn.be/stops/406557", "https://data.delijn.be/stops/407382"], ["https://data.delijn.be/stops/106911", "https://data.delijn.be/stops/106913"], ["https://data.delijn.be/stops/506012", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/500135", "https://data.delijn.be/stops/590331"], ["https://data.delijn.be/stops/201837", "https://data.delijn.be/stops/203402"], ["https://data.delijn.be/stops/501044", "https://data.delijn.be/stops/506488"], ["https://data.delijn.be/stops/101820", "https://data.delijn.be/stops/103955"], ["https://data.delijn.be/stops/303648", "https://data.delijn.be/stops/305928"], ["https://data.delijn.be/stops/408268", "https://data.delijn.be/stops/408406"], ["https://data.delijn.be/stops/402419", "https://data.delijn.be/stops/406678"], ["https://data.delijn.be/stops/208071", "https://data.delijn.be/stops/209071"], ["https://data.delijn.be/stops/503880", "https://data.delijn.be/stops/505133"], ["https://data.delijn.be/stops/502767", "https://data.delijn.be/stops/507909"], ["https://data.delijn.be/stops/502378", "https://data.delijn.be/stops/507378"], ["https://data.delijn.be/stops/403284", "https://data.delijn.be/stops/403440"], ["https://data.delijn.be/stops/502064", "https://data.delijn.be/stops/507064"], ["https://data.delijn.be/stops/201238", "https://data.delijn.be/stops/211129"], ["https://data.delijn.be/stops/503331", "https://data.delijn.be/stops/503333"], ["https://data.delijn.be/stops/101944", "https://data.delijn.be/stops/108777"], ["https://data.delijn.be/stops/401949", "https://data.delijn.be/stops/407277"], ["https://data.delijn.be/stops/305706", "https://data.delijn.be/stops/305707"], ["https://data.delijn.be/stops/102695", "https://data.delijn.be/stops/102807"], ["https://data.delijn.be/stops/402767", "https://data.delijn.be/stops/402768"], ["https://data.delijn.be/stops/503776", "https://data.delijn.be/stops/505822"], ["https://data.delijn.be/stops/402510", "https://data.delijn.be/stops/402588"], ["https://data.delijn.be/stops/200100", "https://data.delijn.be/stops/201100"], ["https://data.delijn.be/stops/502316", "https://data.delijn.be/stops/507063"], ["https://data.delijn.be/stops/204729", "https://data.delijn.be/stops/204730"], ["https://data.delijn.be/stops/206157", "https://data.delijn.be/stops/206498"], ["https://data.delijn.be/stops/106376", "https://data.delijn.be/stops/106381"], ["https://data.delijn.be/stops/406046", "https://data.delijn.be/stops/406122"], ["https://data.delijn.be/stops/409105", "https://data.delijn.be/stops/409107"], ["https://data.delijn.be/stops/201255", "https://data.delijn.be/stops/201615"], ["https://data.delijn.be/stops/300702", "https://data.delijn.be/stops/300704"], ["https://data.delijn.be/stops/105509", "https://data.delijn.be/stops/105511"], ["https://data.delijn.be/stops/102073", "https://data.delijn.be/stops/106931"], ["https://data.delijn.be/stops/206047", "https://data.delijn.be/stops/207999"], ["https://data.delijn.be/stops/209395", "https://data.delijn.be/stops/509816"], ["https://data.delijn.be/stops/404625", "https://data.delijn.be/stops/406955"], ["https://data.delijn.be/stops/403128", "https://data.delijn.be/stops/409312"], ["https://data.delijn.be/stops/406395", "https://data.delijn.be/stops/302829"], ["https://data.delijn.be/stops/204226", "https://data.delijn.be/stops/205226"], ["https://data.delijn.be/stops/301501", "https://data.delijn.be/stops/308937"], ["https://data.delijn.be/stops/505161", "https://data.delijn.be/stops/508641"], ["https://data.delijn.be/stops/108679", "https://data.delijn.be/stops/306625"], ["https://data.delijn.be/stops/204146", "https://data.delijn.be/stops/205141"], ["https://data.delijn.be/stops/304293", "https://data.delijn.be/stops/304295"], ["https://data.delijn.be/stops/204481", "https://data.delijn.be/stops/205106"], ["https://data.delijn.be/stops/406858", "https://data.delijn.be/stops/406861"], ["https://data.delijn.be/stops/503277", "https://data.delijn.be/stops/504892"], ["https://data.delijn.be/stops/302571", "https://data.delijn.be/stops/302572"], ["https://data.delijn.be/stops/103678", "https://data.delijn.be/stops/401931"], ["https://data.delijn.be/stops/304900", "https://data.delijn.be/stops/304910"], ["https://data.delijn.be/stops/303561", "https://data.delijn.be/stops/308607"], ["https://data.delijn.be/stops/408580", "https://data.delijn.be/stops/408817"], ["https://data.delijn.be/stops/408970", "https://data.delijn.be/stops/409239"], ["https://data.delijn.be/stops/200403", "https://data.delijn.be/stops/200404"], ["https://data.delijn.be/stops/103928", "https://data.delijn.be/stops/103929"], ["https://data.delijn.be/stops/408643", "https://data.delijn.be/stops/408649"], ["https://data.delijn.be/stops/504128", "https://data.delijn.be/stops/504740"], ["https://data.delijn.be/stops/502348", "https://data.delijn.be/stops/505092"], ["https://data.delijn.be/stops/307361", "https://data.delijn.be/stops/307363"], ["https://data.delijn.be/stops/403258", "https://data.delijn.be/stops/403830"], ["https://data.delijn.be/stops/407892", "https://data.delijn.be/stops/301841"], ["https://data.delijn.be/stops/203735", "https://data.delijn.be/stops/203849"], ["https://data.delijn.be/stops/102697", "https://data.delijn.be/stops/105635"], ["https://data.delijn.be/stops/202129", "https://data.delijn.be/stops/202436"], ["https://data.delijn.be/stops/301741", "https://data.delijn.be/stops/305295"], ["https://data.delijn.be/stops/302852", "https://data.delijn.be/stops/308822"], ["https://data.delijn.be/stops/207083", "https://data.delijn.be/stops/217007"], ["https://data.delijn.be/stops/107449", "https://data.delijn.be/stops/109645"], ["https://data.delijn.be/stops/503850", "https://data.delijn.be/stops/510029"], ["https://data.delijn.be/stops/106566", "https://data.delijn.be/stops/106567"], ["https://data.delijn.be/stops/303584", "https://data.delijn.be/stops/305910"], ["https://data.delijn.be/stops/306777", "https://data.delijn.be/stops/306778"], ["https://data.delijn.be/stops/302053", "https://data.delijn.be/stops/304915"], ["https://data.delijn.be/stops/501106", "https://data.delijn.be/stops/506107"], ["https://data.delijn.be/stops/407290", "https://data.delijn.be/stops/408130"], ["https://data.delijn.be/stops/209748", "https://data.delijn.be/stops/209749"], ["https://data.delijn.be/stops/501002", "https://data.delijn.be/stops/505355"], ["https://data.delijn.be/stops/206616", "https://data.delijn.be/stops/206617"], ["https://data.delijn.be/stops/505654", "https://data.delijn.be/stops/505697"], ["https://data.delijn.be/stops/205110", "https://data.delijn.be/stops/205114"], ["https://data.delijn.be/stops/501212", "https://data.delijn.be/stops/501310"], ["https://data.delijn.be/stops/307551", "https://data.delijn.be/stops/307552"], ["https://data.delijn.be/stops/504063", "https://data.delijn.be/stops/509065"], ["https://data.delijn.be/stops/508303", "https://data.delijn.be/stops/508315"], ["https://data.delijn.be/stops/502730", "https://data.delijn.be/stops/507087"], ["https://data.delijn.be/stops/105968", "https://data.delijn.be/stops/108945"], ["https://data.delijn.be/stops/400208", "https://data.delijn.be/stops/400211"], ["https://data.delijn.be/stops/406403", "https://data.delijn.be/stops/406404"], ["https://data.delijn.be/stops/106670", "https://data.delijn.be/stops/108017"], ["https://data.delijn.be/stops/200685", "https://data.delijn.be/stops/208653"], ["https://data.delijn.be/stops/502202", "https://data.delijn.be/stops/503812"], ["https://data.delijn.be/stops/505349", "https://data.delijn.be/stops/505724"], ["https://data.delijn.be/stops/504835", "https://data.delijn.be/stops/505207"], ["https://data.delijn.be/stops/406211", "https://data.delijn.be/stops/408922"], ["https://data.delijn.be/stops/504444", "https://data.delijn.be/stops/504701"], ["https://data.delijn.be/stops/503835", "https://data.delijn.be/stops/504816"], ["https://data.delijn.be/stops/504612", "https://data.delijn.be/stops/509412"], ["https://data.delijn.be/stops/301343", "https://data.delijn.be/stops/301388"], ["https://data.delijn.be/stops/202926", "https://data.delijn.be/stops/203926"], ["https://data.delijn.be/stops/501172", "https://data.delijn.be/stops/506172"], ["https://data.delijn.be/stops/304714", "https://data.delijn.be/stops/304715"], ["https://data.delijn.be/stops/200345", "https://data.delijn.be/stops/211095"], ["https://data.delijn.be/stops/106268", "https://data.delijn.be/stops/106270"], ["https://data.delijn.be/stops/303478", "https://data.delijn.be/stops/308636"], ["https://data.delijn.be/stops/307212", "https://data.delijn.be/stops/307214"], ["https://data.delijn.be/stops/503840", "https://data.delijn.be/stops/505226"], ["https://data.delijn.be/stops/406615", "https://data.delijn.be/stops/406623"], ["https://data.delijn.be/stops/206719", "https://data.delijn.be/stops/207653"], ["https://data.delijn.be/stops/302410", "https://data.delijn.be/stops/302411"], ["https://data.delijn.be/stops/409082", "https://data.delijn.be/stops/409083"], ["https://data.delijn.be/stops/503540", "https://data.delijn.be/stops/503552"], ["https://data.delijn.be/stops/204592", "https://data.delijn.be/stops/205149"], ["https://data.delijn.be/stops/302755", "https://data.delijn.be/stops/302763"], ["https://data.delijn.be/stops/501444", "https://data.delijn.be/stops/506444"], ["https://data.delijn.be/stops/403276", "https://data.delijn.be/stops/408516"], ["https://data.delijn.be/stops/206536", "https://data.delijn.be/stops/207535"], ["https://data.delijn.be/stops/105768", "https://data.delijn.be/stops/105769"], ["https://data.delijn.be/stops/108746", "https://data.delijn.be/stops/109561"], ["https://data.delijn.be/stops/402150", "https://data.delijn.be/stops/402155"], ["https://data.delijn.be/stops/505177", "https://data.delijn.be/stops/507719"], ["https://data.delijn.be/stops/204997", "https://data.delijn.be/stops/508642"], ["https://data.delijn.be/stops/200576", "https://data.delijn.be/stops/201576"], ["https://data.delijn.be/stops/307775", "https://data.delijn.be/stops/307778"], ["https://data.delijn.be/stops/502487", "https://data.delijn.be/stops/502641"], ["https://data.delijn.be/stops/305282", "https://data.delijn.be/stops/308710"], ["https://data.delijn.be/stops/106608", "https://data.delijn.be/stops/109649"], ["https://data.delijn.be/stops/302503", "https://data.delijn.be/stops/302704"], ["https://data.delijn.be/stops/200388", "https://data.delijn.be/stops/209331"], ["https://data.delijn.be/stops/501254", "https://data.delijn.be/stops/506254"], ["https://data.delijn.be/stops/401628", "https://data.delijn.be/stops/401629"], ["https://data.delijn.be/stops/104025", "https://data.delijn.be/stops/109884"], ["https://data.delijn.be/stops/503370", "https://data.delijn.be/stops/503440"], ["https://data.delijn.be/stops/102260", "https://data.delijn.be/stops/109683"], ["https://data.delijn.be/stops/508523", "https://data.delijn.be/stops/509777"], ["https://data.delijn.be/stops/401123", "https://data.delijn.be/stops/408958"], ["https://data.delijn.be/stops/501528", "https://data.delijn.be/stops/501545"], ["https://data.delijn.be/stops/406989", "https://data.delijn.be/stops/408380"], ["https://data.delijn.be/stops/109311", "https://data.delijn.be/stops/109313"], ["https://data.delijn.be/stops/406945", "https://data.delijn.be/stops/409453"], ["https://data.delijn.be/stops/401519", "https://data.delijn.be/stops/401530"], ["https://data.delijn.be/stops/102059", "https://data.delijn.be/stops/102062"], ["https://data.delijn.be/stops/502374", "https://data.delijn.be/stops/505225"], ["https://data.delijn.be/stops/105551", "https://data.delijn.be/stops/109624"], ["https://data.delijn.be/stops/208370", "https://data.delijn.be/stops/209193"], ["https://data.delijn.be/stops/204716", "https://data.delijn.be/stops/205696"], ["https://data.delijn.be/stops/405838", "https://data.delijn.be/stops/409759"], ["https://data.delijn.be/stops/206117", "https://data.delijn.be/stops/207810"], ["https://data.delijn.be/stops/201759", "https://data.delijn.be/stops/201782"], ["https://data.delijn.be/stops/200150", "https://data.delijn.be/stops/201513"], ["https://data.delijn.be/stops/307636", "https://data.delijn.be/stops/307691"], ["https://data.delijn.be/stops/109246", "https://data.delijn.be/stops/109267"], ["https://data.delijn.be/stops/207441", "https://data.delijn.be/stops/209690"], ["https://data.delijn.be/stops/402563", "https://data.delijn.be/stops/407806"], ["https://data.delijn.be/stops/302769", "https://data.delijn.be/stops/308911"], ["https://data.delijn.be/stops/400480", "https://data.delijn.be/stops/400481"], ["https://data.delijn.be/stops/209001", "https://data.delijn.be/stops/209158"], ["https://data.delijn.be/stops/301637", "https://data.delijn.be/stops/306144"], ["https://data.delijn.be/stops/204911", "https://data.delijn.be/stops/205922"], ["https://data.delijn.be/stops/204292", "https://data.delijn.be/stops/205531"], ["https://data.delijn.be/stops/206266", "https://data.delijn.be/stops/206524"], ["https://data.delijn.be/stops/502287", "https://data.delijn.be/stops/502295"], ["https://data.delijn.be/stops/206243", "https://data.delijn.be/stops/207403"], ["https://data.delijn.be/stops/507270", "https://data.delijn.be/stops/507466"], ["https://data.delijn.be/stops/404959", "https://data.delijn.be/stops/404963"], ["https://data.delijn.be/stops/308259", "https://data.delijn.be/stops/308293"], ["https://data.delijn.be/stops/307248", "https://data.delijn.be/stops/307249"], ["https://data.delijn.be/stops/200607", "https://data.delijn.be/stops/504771"], ["https://data.delijn.be/stops/508743", "https://data.delijn.be/stops/509866"], ["https://data.delijn.be/stops/208508", "https://data.delijn.be/stops/209508"], ["https://data.delijn.be/stops/503738", "https://data.delijn.be/stops/508732"], ["https://data.delijn.be/stops/106916", "https://data.delijn.be/stops/107263"], ["https://data.delijn.be/stops/302415", "https://data.delijn.be/stops/307110"], ["https://data.delijn.be/stops/206762", "https://data.delijn.be/stops/209565"], ["https://data.delijn.be/stops/207549", "https://data.delijn.be/stops/207648"], ["https://data.delijn.be/stops/400366", "https://data.delijn.be/stops/406769"], ["https://data.delijn.be/stops/101509", "https://data.delijn.be/stops/305994"], ["https://data.delijn.be/stops/504011", "https://data.delijn.be/stops/505911"], ["https://data.delijn.be/stops/101652", "https://data.delijn.be/stops/108799"], ["https://data.delijn.be/stops/105373", "https://data.delijn.be/stops/107504"], ["https://data.delijn.be/stops/300308", "https://data.delijn.be/stops/300536"], ["https://data.delijn.be/stops/105878", "https://data.delijn.be/stops/105881"], ["https://data.delijn.be/stops/302915", "https://data.delijn.be/stops/303231"], ["https://data.delijn.be/stops/108613", "https://data.delijn.be/stops/301915"], ["https://data.delijn.be/stops/407112", "https://data.delijn.be/stops/407327"], ["https://data.delijn.be/stops/206908", "https://data.delijn.be/stops/207908"], ["https://data.delijn.be/stops/501078", "https://data.delijn.be/stops/501083"], ["https://data.delijn.be/stops/503668", "https://data.delijn.be/stops/508669"], ["https://data.delijn.be/stops/407262", "https://data.delijn.be/stops/407335"], ["https://data.delijn.be/stops/508186", "https://data.delijn.be/stops/508406"], ["https://data.delijn.be/stops/405060", "https://data.delijn.be/stops/405114"], ["https://data.delijn.be/stops/402172", "https://data.delijn.be/stops/402484"], ["https://data.delijn.be/stops/206930", "https://data.delijn.be/stops/209126"], ["https://data.delijn.be/stops/503544", "https://data.delijn.be/stops/508550"], ["https://data.delijn.be/stops/301130", "https://data.delijn.be/stops/302872"], ["https://data.delijn.be/stops/507452", "https://data.delijn.be/stops/507461"], ["https://data.delijn.be/stops/302887", "https://data.delijn.be/stops/302897"], ["https://data.delijn.be/stops/206120", "https://data.delijn.be/stops/217016"], ["https://data.delijn.be/stops/502721", "https://data.delijn.be/stops/507722"], ["https://data.delijn.be/stops/105022", "https://data.delijn.be/stops/107298"], ["https://data.delijn.be/stops/102062", "https://data.delijn.be/stops/103073"], ["https://data.delijn.be/stops/303616", "https://data.delijn.be/stops/304716"], ["https://data.delijn.be/stops/307644", "https://data.delijn.be/stops/307690"], ["https://data.delijn.be/stops/200879", "https://data.delijn.be/stops/200895"], ["https://data.delijn.be/stops/401330", "https://data.delijn.be/stops/401380"], ["https://data.delijn.be/stops/408713", "https://data.delijn.be/stops/410343"], ["https://data.delijn.be/stops/303475", "https://data.delijn.be/stops/308065"], ["https://data.delijn.be/stops/504636", "https://data.delijn.be/stops/505311"], ["https://data.delijn.be/stops/101934", "https://data.delijn.be/stops/107744"], ["https://data.delijn.be/stops/503944", "https://data.delijn.be/stops/503996"], ["https://data.delijn.be/stops/303842", "https://data.delijn.be/stops/303850"], ["https://data.delijn.be/stops/503210", "https://data.delijn.be/stops/507738"], ["https://data.delijn.be/stops/102112", "https://data.delijn.be/stops/102846"], ["https://data.delijn.be/stops/206988", "https://data.delijn.be/stops/207977"], ["https://data.delijn.be/stops/101671", "https://data.delijn.be/stops/406843"], ["https://data.delijn.be/stops/302452", "https://data.delijn.be/stops/302459"], ["https://data.delijn.be/stops/301434", "https://data.delijn.be/stops/301444"], ["https://data.delijn.be/stops/406164", "https://data.delijn.be/stops/406167"], ["https://data.delijn.be/stops/206863", "https://data.delijn.be/stops/207047"], ["https://data.delijn.be/stops/201472", "https://data.delijn.be/stops/211061"], ["https://data.delijn.be/stops/106665", "https://data.delijn.be/stops/106666"], ["https://data.delijn.be/stops/107365", "https://data.delijn.be/stops/107900"], ["https://data.delijn.be/stops/101015", "https://data.delijn.be/stops/102986"], ["https://data.delijn.be/stops/201572", "https://data.delijn.be/stops/202194"], ["https://data.delijn.be/stops/409581", "https://data.delijn.be/stops/409585"], ["https://data.delijn.be/stops/401562", "https://data.delijn.be/stops/408469"], ["https://data.delijn.be/stops/400597", "https://data.delijn.be/stops/400608"], ["https://data.delijn.be/stops/208045", "https://data.delijn.be/stops/209846"], ["https://data.delijn.be/stops/105598", "https://data.delijn.be/stops/105599"], ["https://data.delijn.be/stops/108230", "https://data.delijn.be/stops/108235"], ["https://data.delijn.be/stops/300896", "https://data.delijn.be/stops/300897"], ["https://data.delijn.be/stops/200559", "https://data.delijn.be/stops/201560"], ["https://data.delijn.be/stops/401448", "https://data.delijn.be/stops/401470"], ["https://data.delijn.be/stops/400630", "https://data.delijn.be/stops/403036"], ["https://data.delijn.be/stops/405566", "https://data.delijn.be/stops/405570"], ["https://data.delijn.be/stops/102454", "https://data.delijn.be/stops/109013"], ["https://data.delijn.be/stops/200731", "https://data.delijn.be/stops/202567"], ["https://data.delijn.be/stops/201764", "https://data.delijn.be/stops/209274"], ["https://data.delijn.be/stops/403041", "https://data.delijn.be/stops/403059"], ["https://data.delijn.be/stops/401128", "https://data.delijn.be/stops/401151"], ["https://data.delijn.be/stops/405144", "https://data.delijn.be/stops/405159"], ["https://data.delijn.be/stops/102757", "https://data.delijn.be/stops/107060"], ["https://data.delijn.be/stops/303465", "https://data.delijn.be/stops/303492"], ["https://data.delijn.be/stops/204411", "https://data.delijn.be/stops/205020"], ["https://data.delijn.be/stops/303628", "https://data.delijn.be/stops/307504"], ["https://data.delijn.be/stops/404451", "https://data.delijn.be/stops/404560"], ["https://data.delijn.be/stops/200585", "https://data.delijn.be/stops/201585"], ["https://data.delijn.be/stops/206883", "https://data.delijn.be/stops/206915"], ["https://data.delijn.be/stops/304071", "https://data.delijn.be/stops/304086"], ["https://data.delijn.be/stops/307167", "https://data.delijn.be/stops/307194"], ["https://data.delijn.be/stops/206287", "https://data.delijn.be/stops/207877"], ["https://data.delijn.be/stops/200286", "https://data.delijn.be/stops/201381"], ["https://data.delijn.be/stops/304840", "https://data.delijn.be/stops/304857"], ["https://data.delijn.be/stops/301774", "https://data.delijn.be/stops/301783"], ["https://data.delijn.be/stops/101223", "https://data.delijn.be/stops/107793"], ["https://data.delijn.be/stops/206595", "https://data.delijn.be/stops/209515"], ["https://data.delijn.be/stops/508897", "https://data.delijn.be/stops/509941"], ["https://data.delijn.be/stops/109002", "https://data.delijn.be/stops/109006"], ["https://data.delijn.be/stops/402936", "https://data.delijn.be/stops/404073"], ["https://data.delijn.be/stops/302586", "https://data.delijn.be/stops/302678"], ["https://data.delijn.be/stops/304936", "https://data.delijn.be/stops/308019"], ["https://data.delijn.be/stops/201951", "https://data.delijn.be/stops/202428"], ["https://data.delijn.be/stops/301032", "https://data.delijn.be/stops/301033"], ["https://data.delijn.be/stops/202616", "https://data.delijn.be/stops/203617"], ["https://data.delijn.be/stops/503574", "https://data.delijn.be/stops/504539"], ["https://data.delijn.be/stops/503027", "https://data.delijn.be/stops/508026"], ["https://data.delijn.be/stops/201949", "https://data.delijn.be/stops/203944"], ["https://data.delijn.be/stops/217007", "https://data.delijn.be/stops/217009"], ["https://data.delijn.be/stops/502393", "https://data.delijn.be/stops/507393"], ["https://data.delijn.be/stops/106603", "https://data.delijn.be/stops/107211"], ["https://data.delijn.be/stops/303668", "https://data.delijn.be/stops/304641"], ["https://data.delijn.be/stops/201532", "https://data.delijn.be/stops/203900"], ["https://data.delijn.be/stops/405571", "https://data.delijn.be/stops/405578"], ["https://data.delijn.be/stops/300162", "https://data.delijn.be/stops/301225"], ["https://data.delijn.be/stops/101848", "https://data.delijn.be/stops/107227"], ["https://data.delijn.be/stops/500563", "https://data.delijn.be/stops/501128"], ["https://data.delijn.be/stops/300339", "https://data.delijn.be/stops/300367"], ["https://data.delijn.be/stops/102521", "https://data.delijn.be/stops/103963"], ["https://data.delijn.be/stops/200049", "https://data.delijn.be/stops/201191"], ["https://data.delijn.be/stops/206418", "https://data.delijn.be/stops/207659"], ["https://data.delijn.be/stops/204977", "https://data.delijn.be/stops/205977"], ["https://data.delijn.be/stops/405618", "https://data.delijn.be/stops/409515"], ["https://data.delijn.be/stops/406154", "https://data.delijn.be/stops/406155"], ["https://data.delijn.be/stops/307277", "https://data.delijn.be/stops/308122"], ["https://data.delijn.be/stops/200149", "https://data.delijn.be/stops/201017"], ["https://data.delijn.be/stops/208291", "https://data.delijn.be/stops/209291"], ["https://data.delijn.be/stops/206440", "https://data.delijn.be/stops/207440"], ["https://data.delijn.be/stops/304553", "https://data.delijn.be/stops/304554"], ["https://data.delijn.be/stops/200934", "https://data.delijn.be/stops/202689"], ["https://data.delijn.be/stops/208107", "https://data.delijn.be/stops/209455"], ["https://data.delijn.be/stops/501390", "https://data.delijn.be/stops/501500"], ["https://data.delijn.be/stops/209146", "https://data.delijn.be/stops/209147"], ["https://data.delijn.be/stops/505128", "https://data.delijn.be/stops/508661"], ["https://data.delijn.be/stops/402297", "https://data.delijn.be/stops/405571"], ["https://data.delijn.be/stops/501679", "https://data.delijn.be/stops/506430"], ["https://data.delijn.be/stops/500011", "https://data.delijn.be/stops/502337"], ["https://data.delijn.be/stops/200291", "https://data.delijn.be/stops/211095"], ["https://data.delijn.be/stops/506320", "https://data.delijn.be/stops/506357"], ["https://data.delijn.be/stops/300737", "https://data.delijn.be/stops/300738"], ["https://data.delijn.be/stops/306061", "https://data.delijn.be/stops/306062"], ["https://data.delijn.be/stops/104819", "https://data.delijn.be/stops/105543"], ["https://data.delijn.be/stops/301679", "https://data.delijn.be/stops/308556"], ["https://data.delijn.be/stops/502196", "https://data.delijn.be/stops/508312"], ["https://data.delijn.be/stops/204409", "https://data.delijn.be/stops/205200"], ["https://data.delijn.be/stops/105463", "https://data.delijn.be/stops/105464"], ["https://data.delijn.be/stops/202678", "https://data.delijn.be/stops/202693"], ["https://data.delijn.be/stops/405225", "https://data.delijn.be/stops/409348"], ["https://data.delijn.be/stops/305052", "https://data.delijn.be/stops/305056"], ["https://data.delijn.be/stops/207301", "https://data.delijn.be/stops/207737"], ["https://data.delijn.be/stops/200336", "https://data.delijn.be/stops/202193"], ["https://data.delijn.be/stops/405165", "https://data.delijn.be/stops/405173"], ["https://data.delijn.be/stops/102585", "https://data.delijn.be/stops/102825"], ["https://data.delijn.be/stops/205233", "https://data.delijn.be/stops/205234"], ["https://data.delijn.be/stops/403096", "https://data.delijn.be/stops/403421"], ["https://data.delijn.be/stops/400384", "https://data.delijn.be/stops/400385"], ["https://data.delijn.be/stops/107990", "https://data.delijn.be/stops/109025"], ["https://data.delijn.be/stops/302640", "https://data.delijn.be/stops/304099"], ["https://data.delijn.be/stops/300789", "https://data.delijn.be/stops/306117"], ["https://data.delijn.be/stops/204179", "https://data.delijn.be/stops/206393"], ["https://data.delijn.be/stops/400837", "https://data.delijn.be/stops/404331"], ["https://data.delijn.be/stops/501150", "https://data.delijn.be/stops/501644"], ["https://data.delijn.be/stops/304688", "https://data.delijn.be/stops/307162"], ["https://data.delijn.be/stops/503178", "https://data.delijn.be/stops/508172"], ["https://data.delijn.be/stops/400107", "https://data.delijn.be/stops/409144"], ["https://data.delijn.be/stops/305082", "https://data.delijn.be/stops/306961"], ["https://data.delijn.be/stops/504003", "https://data.delijn.be/stops/508494"], ["https://data.delijn.be/stops/200219", "https://data.delijn.be/stops/203543"], ["https://data.delijn.be/stops/307950", "https://data.delijn.be/stops/308027"], ["https://data.delijn.be/stops/400100", "https://data.delijn.be/stops/401976"], ["https://data.delijn.be/stops/501016", "https://data.delijn.be/stops/506016"], ["https://data.delijn.be/stops/106887", "https://data.delijn.be/stops/109900"], ["https://data.delijn.be/stops/301278", "https://data.delijn.be/stops/307034"], ["https://data.delijn.be/stops/504812", "https://data.delijn.be/stops/508468"], ["https://data.delijn.be/stops/202514", "https://data.delijn.be/stops/203515"], ["https://data.delijn.be/stops/301106", "https://data.delijn.be/stops/304600"], ["https://data.delijn.be/stops/402585", "https://data.delijn.be/stops/402645"], ["https://data.delijn.be/stops/207534", "https://data.delijn.be/stops/207548"], ["https://data.delijn.be/stops/503677", "https://data.delijn.be/stops/503678"], ["https://data.delijn.be/stops/402178", "https://data.delijn.be/stops/402483"], ["https://data.delijn.be/stops/507955", "https://data.delijn.be/stops/507956"], ["https://data.delijn.be/stops/200141", "https://data.delijn.be/stops/201141"], ["https://data.delijn.be/stops/400331", "https://data.delijn.be/stops/400332"], ["https://data.delijn.be/stops/200917", "https://data.delijn.be/stops/203044"], ["https://data.delijn.be/stops/107700", "https://data.delijn.be/stops/107906"], ["https://data.delijn.be/stops/402068", "https://data.delijn.be/stops/402763"], ["https://data.delijn.be/stops/307112", "https://data.delijn.be/stops/307113"], ["https://data.delijn.be/stops/202455", "https://data.delijn.be/stops/203455"], ["https://data.delijn.be/stops/400252", "https://data.delijn.be/stops/400385"], ["https://data.delijn.be/stops/301468", "https://data.delijn.be/stops/306306"], ["https://data.delijn.be/stops/109148", "https://data.delijn.be/stops/109149"], ["https://data.delijn.be/stops/503762", "https://data.delijn.be/stops/508762"], ["https://data.delijn.be/stops/405676", "https://data.delijn.be/stops/405687"], ["https://data.delijn.be/stops/300884", "https://data.delijn.be/stops/300886"], ["https://data.delijn.be/stops/101961", "https://data.delijn.be/stops/108764"], ["https://data.delijn.be/stops/300626", "https://data.delijn.be/stops/307860"], ["https://data.delijn.be/stops/501694", "https://data.delijn.be/stops/507366"], ["https://data.delijn.be/stops/303980", "https://data.delijn.be/stops/306593"], ["https://data.delijn.be/stops/107397", "https://data.delijn.be/stops/107398"], ["https://data.delijn.be/stops/103007", "https://data.delijn.be/stops/106423"], ["https://data.delijn.be/stops/503581", "https://data.delijn.be/stops/508579"], ["https://data.delijn.be/stops/204665", "https://data.delijn.be/stops/204689"], ["https://data.delijn.be/stops/208098", "https://data.delijn.be/stops/209097"], ["https://data.delijn.be/stops/304728", "https://data.delijn.be/stops/308699"], ["https://data.delijn.be/stops/107553", "https://data.delijn.be/stops/109377"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/501633"], ["https://data.delijn.be/stops/102485", "https://data.delijn.be/stops/108570"], ["https://data.delijn.be/stops/103114", "https://data.delijn.be/stops/106817"], ["https://data.delijn.be/stops/500994", "https://data.delijn.be/stops/505143"], ["https://data.delijn.be/stops/206096", "https://data.delijn.be/stops/206724"], ["https://data.delijn.be/stops/502739", "https://data.delijn.be/stops/506086"], ["https://data.delijn.be/stops/304120", "https://data.delijn.be/stops/307545"], ["https://data.delijn.be/stops/108733", "https://data.delijn.be/stops/108736"], ["https://data.delijn.be/stops/504962", "https://data.delijn.be/stops/504988"], ["https://data.delijn.be/stops/103088", "https://data.delijn.be/stops/107477"], ["https://data.delijn.be/stops/200834", "https://data.delijn.be/stops/200835"], ["https://data.delijn.be/stops/404200", "https://data.delijn.be/stops/404217"], ["https://data.delijn.be/stops/207349", "https://data.delijn.be/stops/207729"], ["https://data.delijn.be/stops/504386", "https://data.delijn.be/stops/509386"], ["https://data.delijn.be/stops/106821", "https://data.delijn.be/stops/106985"], ["https://data.delijn.be/stops/108238", "https://data.delijn.be/stops/108239"], ["https://data.delijn.be/stops/407056", "https://data.delijn.be/stops/407057"], ["https://data.delijn.be/stops/503229", "https://data.delijn.be/stops/508229"], ["https://data.delijn.be/stops/400517", "https://data.delijn.be/stops/403898"], ["https://data.delijn.be/stops/200806", "https://data.delijn.be/stops/202055"], ["https://data.delijn.be/stops/304728", "https://data.delijn.be/stops/304758"], ["https://data.delijn.be/stops/201652", "https://data.delijn.be/stops/202316"], ["https://data.delijn.be/stops/102646", "https://data.delijn.be/stops/109912"], ["https://data.delijn.be/stops/300347", "https://data.delijn.be/stops/304547"], ["https://data.delijn.be/stops/201182", "https://data.delijn.be/stops/201671"], ["https://data.delijn.be/stops/302265", "https://data.delijn.be/stops/304357"], ["https://data.delijn.be/stops/502745", "https://data.delijn.be/stops/505067"], ["https://data.delijn.be/stops/502598", "https://data.delijn.be/stops/505349"], ["https://data.delijn.be/stops/108296", "https://data.delijn.be/stops/108297"], ["https://data.delijn.be/stops/207703", "https://data.delijn.be/stops/207705"], ["https://data.delijn.be/stops/206715", "https://data.delijn.be/stops/206728"], ["https://data.delijn.be/stops/402196", "https://data.delijn.be/stops/402228"], ["https://data.delijn.be/stops/103222", "https://data.delijn.be/stops/107903"], ["https://data.delijn.be/stops/404459", "https://data.delijn.be/stops/404460"], ["https://data.delijn.be/stops/305527", "https://data.delijn.be/stops/305554"], ["https://data.delijn.be/stops/300627", "https://data.delijn.be/stops/300628"], ["https://data.delijn.be/stops/408569", "https://data.delijn.be/stops/408570"], ["https://data.delijn.be/stops/307525", "https://data.delijn.be/stops/307526"], ["https://data.delijn.be/stops/107618", "https://data.delijn.be/stops/108691"], ["https://data.delijn.be/stops/208621", "https://data.delijn.be/stops/219012"], ["https://data.delijn.be/stops/102571", "https://data.delijn.be/stops/109162"], ["https://data.delijn.be/stops/501059", "https://data.delijn.be/stops/505359"], ["https://data.delijn.be/stops/106525", "https://data.delijn.be/stops/106526"], ["https://data.delijn.be/stops/401600", "https://data.delijn.be/stops/405837"], ["https://data.delijn.be/stops/206764", "https://data.delijn.be/stops/307312"], ["https://data.delijn.be/stops/101513", "https://data.delijn.be/stops/101535"], ["https://data.delijn.be/stops/402826", "https://data.delijn.be/stops/402827"], ["https://data.delijn.be/stops/503883", "https://data.delijn.be/stops/503885"], ["https://data.delijn.be/stops/305223", "https://data.delijn.be/stops/307533"], ["https://data.delijn.be/stops/208487", "https://data.delijn.be/stops/209488"], ["https://data.delijn.be/stops/106702", "https://data.delijn.be/stops/106703"], ["https://data.delijn.be/stops/108364", "https://data.delijn.be/stops/108507"], ["https://data.delijn.be/stops/504483", "https://data.delijn.be/stops/504723"], ["https://data.delijn.be/stops/307975", "https://data.delijn.be/stops/307976"], ["https://data.delijn.be/stops/101957", "https://data.delijn.be/stops/109704"], ["https://data.delijn.be/stops/202257", "https://data.delijn.be/stops/203257"], ["https://data.delijn.be/stops/402785", "https://data.delijn.be/stops/402799"], ["https://data.delijn.be/stops/404443", "https://data.delijn.be/stops/405875"], ["https://data.delijn.be/stops/403908", "https://data.delijn.be/stops/403909"], ["https://data.delijn.be/stops/304739", "https://data.delijn.be/stops/308648"], ["https://data.delijn.be/stops/102688", "https://data.delijn.be/stops/106065"], ["https://data.delijn.be/stops/107709", "https://data.delijn.be/stops/107747"], ["https://data.delijn.be/stops/407866", "https://data.delijn.be/stops/408176"], ["https://data.delijn.be/stops/206164", "https://data.delijn.be/stops/303378"], ["https://data.delijn.be/stops/404329", "https://data.delijn.be/stops/404649"], ["https://data.delijn.be/stops/508189", "https://data.delijn.be/stops/508199"], ["https://data.delijn.be/stops/202402", "https://data.delijn.be/stops/202501"], ["https://data.delijn.be/stops/103302", "https://data.delijn.be/stops/105776"], ["https://data.delijn.be/stops/502455", "https://data.delijn.be/stops/507083"], ["https://data.delijn.be/stops/308137", "https://data.delijn.be/stops/308178"], ["https://data.delijn.be/stops/206671", "https://data.delijn.be/stops/207671"], ["https://data.delijn.be/stops/200062", "https://data.delijn.be/stops/200444"], ["https://data.delijn.be/stops/502431", "https://data.delijn.be/stops/507694"], ["https://data.delijn.be/stops/401075", "https://data.delijn.be/stops/401164"], ["https://data.delijn.be/stops/305439", "https://data.delijn.be/stops/305516"], ["https://data.delijn.be/stops/200696", "https://data.delijn.be/stops/208644"], ["https://data.delijn.be/stops/403625", "https://data.delijn.be/stops/403638"], ["https://data.delijn.be/stops/300124", "https://data.delijn.be/stops/306829"], ["https://data.delijn.be/stops/502254", "https://data.delijn.be/stops/505583"], ["https://data.delijn.be/stops/201314", "https://data.delijn.be/stops/201593"], ["https://data.delijn.be/stops/101584", "https://data.delijn.be/stops/105449"], ["https://data.delijn.be/stops/304248", "https://data.delijn.be/stops/304277"], ["https://data.delijn.be/stops/201955", "https://data.delijn.be/stops/203074"], ["https://data.delijn.be/stops/108112", "https://data.delijn.be/stops/108149"], ["https://data.delijn.be/stops/105414", "https://data.delijn.be/stops/105418"], ["https://data.delijn.be/stops/208085", "https://data.delijn.be/stops/209085"], ["https://data.delijn.be/stops/108924", "https://data.delijn.be/stops/109137"], ["https://data.delijn.be/stops/106698", "https://data.delijn.be/stops/106700"], ["https://data.delijn.be/stops/102414", "https://data.delijn.be/stops/102916"], ["https://data.delijn.be/stops/106887", "https://data.delijn.be/stops/106890"], ["https://data.delijn.be/stops/101060", "https://data.delijn.be/stops/101061"], ["https://data.delijn.be/stops/208083", "https://data.delijn.be/stops/209701"], ["https://data.delijn.be/stops/406648", "https://data.delijn.be/stops/406693"], ["https://data.delijn.be/stops/308772", "https://data.delijn.be/stops/308778"], ["https://data.delijn.be/stops/207111", "https://data.delijn.be/stops/306729"], ["https://data.delijn.be/stops/500026", "https://data.delijn.be/stops/501692"], ["https://data.delijn.be/stops/105885", "https://data.delijn.be/stops/108085"], ["https://data.delijn.be/stops/204711", "https://data.delijn.be/stops/205711"], ["https://data.delijn.be/stops/107339", "https://data.delijn.be/stops/107341"], ["https://data.delijn.be/stops/101422", "https://data.delijn.be/stops/106977"], ["https://data.delijn.be/stops/505102", "https://data.delijn.be/stops/505915"], ["https://data.delijn.be/stops/501607", "https://data.delijn.be/stops/501716"], ["https://data.delijn.be/stops/504109", "https://data.delijn.be/stops/509109"], ["https://data.delijn.be/stops/305592", "https://data.delijn.be/stops/308816"], ["https://data.delijn.be/stops/504165", "https://data.delijn.be/stops/505101"], ["https://data.delijn.be/stops/200013", "https://data.delijn.be/stops/201351"], ["https://data.delijn.be/stops/305598", "https://data.delijn.be/stops/305628"], ["https://data.delijn.be/stops/405357", "https://data.delijn.be/stops/409004"], ["https://data.delijn.be/stops/508499", "https://data.delijn.be/stops/509454"], ["https://data.delijn.be/stops/301601", "https://data.delijn.be/stops/301608"], ["https://data.delijn.be/stops/304997", "https://data.delijn.be/stops/305020"], ["https://data.delijn.be/stops/206685", "https://data.delijn.be/stops/207685"], ["https://data.delijn.be/stops/503477", "https://data.delijn.be/stops/508454"], ["https://data.delijn.be/stops/207686", "https://data.delijn.be/stops/207703"], ["https://data.delijn.be/stops/300379", "https://data.delijn.be/stops/300383"], ["https://data.delijn.be/stops/302655", "https://data.delijn.be/stops/308113"], ["https://data.delijn.be/stops/204634", "https://data.delijn.be/stops/204693"], ["https://data.delijn.be/stops/304892", "https://data.delijn.be/stops/304910"], ["https://data.delijn.be/stops/401454", "https://data.delijn.be/stops/407328"], ["https://data.delijn.be/stops/101452", "https://data.delijn.be/stops/102621"], ["https://data.delijn.be/stops/200241", "https://data.delijn.be/stops/201000"], ["https://data.delijn.be/stops/408272", "https://data.delijn.be/stops/408389"], ["https://data.delijn.be/stops/501208", "https://data.delijn.be/stops/506210"], ["https://data.delijn.be/stops/101680", "https://data.delijn.be/stops/102390"], ["https://data.delijn.be/stops/302764", "https://data.delijn.be/stops/308859"], ["https://data.delijn.be/stops/300612", "https://data.delijn.be/stops/303517"], ["https://data.delijn.be/stops/102929", "https://data.delijn.be/stops/106124"], ["https://data.delijn.be/stops/501550", "https://data.delijn.be/stops/501557"], ["https://data.delijn.be/stops/501681", "https://data.delijn.be/stops/506475"], ["https://data.delijn.be/stops/201250", "https://data.delijn.be/stops/210057"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/208241"], ["https://data.delijn.be/stops/208203", "https://data.delijn.be/stops/209202"], ["https://data.delijn.be/stops/208369", "https://data.delijn.be/stops/209369"], ["https://data.delijn.be/stops/407587", "https://data.delijn.be/stops/407596"], ["https://data.delijn.be/stops/401671", "https://data.delijn.be/stops/308276"], ["https://data.delijn.be/stops/402592", "https://data.delijn.be/stops/402600"], ["https://data.delijn.be/stops/301393", "https://data.delijn.be/stops/301395"], ["https://data.delijn.be/stops/300671", "https://data.delijn.be/stops/300676"], ["https://data.delijn.be/stops/106885", "https://data.delijn.be/stops/109901"], ["https://data.delijn.be/stops/106271", "https://data.delijn.be/stops/109625"], ["https://data.delijn.be/stops/303721", "https://data.delijn.be/stops/303745"], ["https://data.delijn.be/stops/104910", "https://data.delijn.be/stops/107310"], ["https://data.delijn.be/stops/502455", "https://data.delijn.be/stops/507455"], ["https://data.delijn.be/stops/504704", "https://data.delijn.be/stops/509032"], ["https://data.delijn.be/stops/508380", "https://data.delijn.be/stops/508427"], ["https://data.delijn.be/stops/503103", "https://data.delijn.be/stops/508102"], ["https://data.delijn.be/stops/303892", "https://data.delijn.be/stops/305579"], ["https://data.delijn.be/stops/202155", "https://data.delijn.be/stops/202156"], ["https://data.delijn.be/stops/207168", "https://data.delijn.be/stops/303841"], ["https://data.delijn.be/stops/208301", "https://data.delijn.be/stops/208303"], ["https://data.delijn.be/stops/202817", "https://data.delijn.be/stops/203819"], ["https://data.delijn.be/stops/506231", "https://data.delijn.be/stops/506769"], ["https://data.delijn.be/stops/101494", "https://data.delijn.be/stops/108294"], ["https://data.delijn.be/stops/105779", "https://data.delijn.be/stops/108013"], ["https://data.delijn.be/stops/104647", "https://data.delijn.be/stops/107983"], ["https://data.delijn.be/stops/302246", "https://data.delijn.be/stops/304032"], ["https://data.delijn.be/stops/503908", "https://data.delijn.be/stops/507070"], ["https://data.delijn.be/stops/200333", "https://data.delijn.be/stops/211084"], ["https://data.delijn.be/stops/202182", "https://data.delijn.be/stops/204237"], ["https://data.delijn.be/stops/208221", "https://data.delijn.be/stops/208593"], ["https://data.delijn.be/stops/400408", "https://data.delijn.be/stops/405537"], ["https://data.delijn.be/stops/404710", "https://data.delijn.be/stops/404758"], ["https://data.delijn.be/stops/307703", "https://data.delijn.be/stops/308592"], ["https://data.delijn.be/stops/300849", "https://data.delijn.be/stops/305318"], ["https://data.delijn.be/stops/206933", "https://data.delijn.be/stops/207933"], ["https://data.delijn.be/stops/403373", "https://data.delijn.be/stops/403510"], ["https://data.delijn.be/stops/504451", "https://data.delijn.be/stops/509452"], ["https://data.delijn.be/stops/307393", "https://data.delijn.be/stops/308641"], ["https://data.delijn.be/stops/402707", "https://data.delijn.be/stops/306391"], ["https://data.delijn.be/stops/406621", "https://data.delijn.be/stops/406698"], ["https://data.delijn.be/stops/204459", "https://data.delijn.be/stops/205460"], ["https://data.delijn.be/stops/106146", "https://data.delijn.be/stops/106148"], ["https://data.delijn.be/stops/407988", "https://data.delijn.be/stops/407990"], ["https://data.delijn.be/stops/200343", "https://data.delijn.be/stops/210106"], ["https://data.delijn.be/stops/205171", "https://data.delijn.be/stops/205770"], ["https://data.delijn.be/stops/403213", "https://data.delijn.be/stops/405127"], ["https://data.delijn.be/stops/108794", "https://data.delijn.be/stops/108796"], ["https://data.delijn.be/stops/506321", "https://data.delijn.be/stops/506326"], ["https://data.delijn.be/stops/408198", "https://data.delijn.be/stops/409340"], ["https://data.delijn.be/stops/301238", "https://data.delijn.be/stops/301242"], ["https://data.delijn.be/stops/106797", "https://data.delijn.be/stops/106798"], ["https://data.delijn.be/stops/204985", "https://data.delijn.be/stops/208352"], ["https://data.delijn.be/stops/203007", "https://data.delijn.be/stops/203008"], ["https://data.delijn.be/stops/400553", "https://data.delijn.be/stops/403584"], ["https://data.delijn.be/stops/507260", "https://data.delijn.be/stops/507264"], ["https://data.delijn.be/stops/301452", "https://data.delijn.be/stops/302520"], ["https://data.delijn.be/stops/103290", "https://data.delijn.be/stops/103378"], ["https://data.delijn.be/stops/305555", "https://data.delijn.be/stops/308683"], ["https://data.delijn.be/stops/208144", "https://data.delijn.be/stops/209698"], ["https://data.delijn.be/stops/407936", "https://data.delijn.be/stops/407938"], ["https://data.delijn.be/stops/408605", "https://data.delijn.be/stops/408700"], ["https://data.delijn.be/stops/306592", "https://data.delijn.be/stops/306593"], ["https://data.delijn.be/stops/404544", "https://data.delijn.be/stops/404545"], ["https://data.delijn.be/stops/503294", "https://data.delijn.be/stops/505283"], ["https://data.delijn.be/stops/301480", "https://data.delijn.be/stops/301483"], ["https://data.delijn.be/stops/208483", "https://data.delijn.be/stops/209486"], ["https://data.delijn.be/stops/206427", "https://data.delijn.be/stops/207427"], ["https://data.delijn.be/stops/206222", "https://data.delijn.be/stops/207863"], ["https://data.delijn.be/stops/401899", "https://data.delijn.be/stops/406417"], ["https://data.delijn.be/stops/503610", "https://data.delijn.be/stops/503615"], ["https://data.delijn.be/stops/201815", "https://data.delijn.be/stops/208251"], ["https://data.delijn.be/stops/208341", "https://data.delijn.be/stops/208387"], ["https://data.delijn.be/stops/501477", "https://data.delijn.be/stops/506353"], ["https://data.delijn.be/stops/306617", "https://data.delijn.be/stops/306627"], ["https://data.delijn.be/stops/402083", "https://data.delijn.be/stops/408469"], ["https://data.delijn.be/stops/401997", "https://data.delijn.be/stops/404531"], ["https://data.delijn.be/stops/301623", "https://data.delijn.be/stops/301630"], ["https://data.delijn.be/stops/401639", "https://data.delijn.be/stops/308211"], ["https://data.delijn.be/stops/403884", "https://data.delijn.be/stops/405543"], ["https://data.delijn.be/stops/205699", "https://data.delijn.be/stops/205700"], ["https://data.delijn.be/stops/305287", "https://data.delijn.be/stops/305331"], ["https://data.delijn.be/stops/308696", "https://data.delijn.be/stops/308697"], ["https://data.delijn.be/stops/203656", "https://data.delijn.be/stops/203657"], ["https://data.delijn.be/stops/301329", "https://data.delijn.be/stops/306254"], ["https://data.delijn.be/stops/101845", "https://data.delijn.be/stops/102443"], ["https://data.delijn.be/stops/402419", "https://data.delijn.be/stops/402433"], ["https://data.delijn.be/stops/304164", "https://data.delijn.be/stops/304166"], ["https://data.delijn.be/stops/201070", "https://data.delijn.be/stops/208845"], ["https://data.delijn.be/stops/503644", "https://data.delijn.be/stops/509951"], ["https://data.delijn.be/stops/400565", "https://data.delijn.be/stops/404153"], ["https://data.delijn.be/stops/207789", "https://data.delijn.be/stops/208372"], ["https://data.delijn.be/stops/208592", "https://data.delijn.be/stops/209221"], ["https://data.delijn.be/stops/200026", "https://data.delijn.be/stops/200446"], ["https://data.delijn.be/stops/200978", "https://data.delijn.be/stops/208620"], ["https://data.delijn.be/stops/509726", "https://data.delijn.be/stops/509727"], ["https://data.delijn.be/stops/200455", "https://data.delijn.be/stops/201459"], ["https://data.delijn.be/stops/301352", "https://data.delijn.be/stops/301353"], ["https://data.delijn.be/stops/300628", "https://data.delijn.be/stops/300710"], ["https://data.delijn.be/stops/301811", "https://data.delijn.be/stops/301812"], ["https://data.delijn.be/stops/406452", "https://data.delijn.be/stops/410226"], ["https://data.delijn.be/stops/302804", "https://data.delijn.be/stops/306176"], ["https://data.delijn.be/stops/301233", "https://data.delijn.be/stops/307908"], ["https://data.delijn.be/stops/301653", "https://data.delijn.be/stops/303936"], ["https://data.delijn.be/stops/102912", "https://data.delijn.be/stops/106713"], ["https://data.delijn.be/stops/108526", "https://data.delijn.be/stops/108538"], ["https://data.delijn.be/stops/202001", "https://data.delijn.be/stops/203001"], ["https://data.delijn.be/stops/103303", "https://data.delijn.be/stops/404726"], ["https://data.delijn.be/stops/505567", "https://data.delijn.be/stops/505568"], ["https://data.delijn.be/stops/307535", "https://data.delijn.be/stops/307552"], ["https://data.delijn.be/stops/403424", "https://data.delijn.be/stops/404970"], ["https://data.delijn.be/stops/205620", "https://data.delijn.be/stops/205755"], ["https://data.delijn.be/stops/105842", "https://data.delijn.be/stops/105843"], ["https://data.delijn.be/stops/503191", "https://data.delijn.be/stops/508193"], ["https://data.delijn.be/stops/402143", "https://data.delijn.be/stops/402397"], ["https://data.delijn.be/stops/402159", "https://data.delijn.be/stops/407955"], ["https://data.delijn.be/stops/302055", "https://data.delijn.be/stops/303185"], ["https://data.delijn.be/stops/200979", "https://data.delijn.be/stops/211026"], ["https://data.delijn.be/stops/107297", "https://data.delijn.be/stops/107298"], ["https://data.delijn.be/stops/406891", "https://data.delijn.be/stops/406895"], ["https://data.delijn.be/stops/301814", "https://data.delijn.be/stops/305567"], ["https://data.delijn.be/stops/106107", "https://data.delijn.be/stops/106108"], ["https://data.delijn.be/stops/206625", "https://data.delijn.be/stops/206626"], ["https://data.delijn.be/stops/301598", "https://data.delijn.be/stops/301615"], ["https://data.delijn.be/stops/202290", "https://data.delijn.be/stops/202292"], ["https://data.delijn.be/stops/400839", "https://data.delijn.be/stops/409573"], ["https://data.delijn.be/stops/303617", "https://data.delijn.be/stops/306699"], ["https://data.delijn.be/stops/507731", "https://data.delijn.be/stops/507732"], ["https://data.delijn.be/stops/504712", "https://data.delijn.be/stops/509388"], ["https://data.delijn.be/stops/200705", "https://data.delijn.be/stops/200706"], ["https://data.delijn.be/stops/402237", "https://data.delijn.be/stops/402481"], ["https://data.delijn.be/stops/509116", "https://data.delijn.be/stops/509643"], ["https://data.delijn.be/stops/407151", "https://data.delijn.be/stops/306781"], ["https://data.delijn.be/stops/501402", "https://data.delijn.be/stops/501603"], ["https://data.delijn.be/stops/209284", "https://data.delijn.be/stops/209285"], ["https://data.delijn.be/stops/108749", "https://data.delijn.be/stops/108751"], ["https://data.delijn.be/stops/206794", "https://data.delijn.be/stops/209050"], ["https://data.delijn.be/stops/505427", "https://data.delijn.be/stops/508481"], ["https://data.delijn.be/stops/205157", "https://data.delijn.be/stops/205582"], ["https://data.delijn.be/stops/306626", "https://data.delijn.be/stops/308456"], ["https://data.delijn.be/stops/108788", "https://data.delijn.be/stops/109757"], ["https://data.delijn.be/stops/308473", "https://data.delijn.be/stops/308489"], ["https://data.delijn.be/stops/406259", "https://data.delijn.be/stops/408416"], ["https://data.delijn.be/stops/503451", "https://data.delijn.be/stops/508390"], ["https://data.delijn.be/stops/206791", "https://data.delijn.be/stops/209566"], ["https://data.delijn.be/stops/503917", "https://data.delijn.be/stops/505250"], ["https://data.delijn.be/stops/503426", "https://data.delijn.be/stops/508446"], ["https://data.delijn.be/stops/303631", "https://data.delijn.be/stops/306400"], ["https://data.delijn.be/stops/106727", "https://data.delijn.be/stops/106729"], ["https://data.delijn.be/stops/401463", "https://data.delijn.be/stops/403164"], ["https://data.delijn.be/stops/501023", "https://data.delijn.be/stops/501031"], ["https://data.delijn.be/stops/102974", "https://data.delijn.be/stops/107141"], ["https://data.delijn.be/stops/503029", "https://data.delijn.be/stops/508026"], ["https://data.delijn.be/stops/408203", "https://data.delijn.be/stops/408277"], ["https://data.delijn.be/stops/206771", "https://data.delijn.be/stops/206797"], ["https://data.delijn.be/stops/206500", "https://data.delijn.be/stops/207500"], ["https://data.delijn.be/stops/201905", "https://data.delijn.be/stops/202516"], ["https://data.delijn.be/stops/204261", "https://data.delijn.be/stops/205473"], ["https://data.delijn.be/stops/405037", "https://data.delijn.be/stops/405069"], ["https://data.delijn.be/stops/502614", "https://data.delijn.be/stops/502641"], ["https://data.delijn.be/stops/303371", "https://data.delijn.be/stops/307031"], ["https://data.delijn.be/stops/107493", "https://data.delijn.be/stops/107494"], ["https://data.delijn.be/stops/105513", "https://data.delijn.be/stops/105514"], ["https://data.delijn.be/stops/108089", "https://data.delijn.be/stops/108691"], ["https://data.delijn.be/stops/408928", "https://data.delijn.be/stops/408944"], ["https://data.delijn.be/stops/501264", "https://data.delijn.be/stops/501286"], ["https://data.delijn.be/stops/501289", "https://data.delijn.be/stops/506289"], ["https://data.delijn.be/stops/106787", "https://data.delijn.be/stops/106797"], ["https://data.delijn.be/stops/304463", "https://data.delijn.be/stops/307694"], ["https://data.delijn.be/stops/408692", "https://data.delijn.be/stops/408697"], ["https://data.delijn.be/stops/400475", "https://data.delijn.be/stops/400480"], ["https://data.delijn.be/stops/106734", "https://data.delijn.be/stops/107199"], ["https://data.delijn.be/stops/503223", "https://data.delijn.be/stops/505943"], ["https://data.delijn.be/stops/109282", "https://data.delijn.be/stops/109283"], ["https://data.delijn.be/stops/501334", "https://data.delijn.be/stops/506349"], ["https://data.delijn.be/stops/502251", "https://data.delijn.be/stops/507250"], ["https://data.delijn.be/stops/105614", "https://data.delijn.be/stops/105616"], ["https://data.delijn.be/stops/500019", "https://data.delijn.be/stops/507047"], ["https://data.delijn.be/stops/503470", "https://data.delijn.be/stops/508469"], ["https://data.delijn.be/stops/109832", "https://data.delijn.be/stops/109833"], ["https://data.delijn.be/stops/400432", "https://data.delijn.be/stops/405132"], ["https://data.delijn.be/stops/207159", "https://data.delijn.be/stops/207448"], ["https://data.delijn.be/stops/302474", "https://data.delijn.be/stops/302732"], ["https://data.delijn.be/stops/203246", "https://data.delijn.be/stops/203247"], ["https://data.delijn.be/stops/501116", "https://data.delijn.be/stops/501693"], ["https://data.delijn.be/stops/305132", "https://data.delijn.be/stops/305172"], ["https://data.delijn.be/stops/200369", "https://data.delijn.be/stops/201267"], ["https://data.delijn.be/stops/504992", "https://data.delijn.be/stops/505984"], ["https://data.delijn.be/stops/102653", "https://data.delijn.be/stops/107788"], ["https://data.delijn.be/stops/206512", "https://data.delijn.be/stops/207512"], ["https://data.delijn.be/stops/304019", "https://data.delijn.be/stops/304073"], ["https://data.delijn.be/stops/200129", "https://data.delijn.be/stops/201323"], ["https://data.delijn.be/stops/301964", "https://data.delijn.be/stops/301988"], ["https://data.delijn.be/stops/107196", "https://data.delijn.be/stops/109772"], ["https://data.delijn.be/stops/406276", "https://data.delijn.be/stops/406277"], ["https://data.delijn.be/stops/105387", "https://data.delijn.be/stops/105626"], ["https://data.delijn.be/stops/405260", "https://data.delijn.be/stops/405262"], ["https://data.delijn.be/stops/400081", "https://data.delijn.be/stops/405644"], ["https://data.delijn.be/stops/501772", "https://data.delijn.be/stops/506474"], ["https://data.delijn.be/stops/502606", "https://data.delijn.be/stops/502607"], ["https://data.delijn.be/stops/207511", "https://data.delijn.be/stops/207598"], ["https://data.delijn.be/stops/404874", "https://data.delijn.be/stops/404875"], ["https://data.delijn.be/stops/210011", "https://data.delijn.be/stops/502275"], ["https://data.delijn.be/stops/107022", "https://data.delijn.be/stops/107023"], ["https://data.delijn.be/stops/200526", "https://data.delijn.be/stops/201668"], ["https://data.delijn.be/stops/400835", "https://data.delijn.be/stops/409536"], ["https://data.delijn.be/stops/303449", "https://data.delijn.be/stops/307067"], ["https://data.delijn.be/stops/404566", "https://data.delijn.be/stops/404568"], ["https://data.delijn.be/stops/401077", "https://data.delijn.be/stops/408092"], ["https://data.delijn.be/stops/403744", "https://data.delijn.be/stops/403877"], ["https://data.delijn.be/stops/302852", "https://data.delijn.be/stops/302853"], ["https://data.delijn.be/stops/400113", "https://data.delijn.be/stops/409156"], ["https://data.delijn.be/stops/404349", "https://data.delijn.be/stops/404355"], ["https://data.delijn.be/stops/503043", "https://data.delijn.be/stops/508043"], ["https://data.delijn.be/stops/503624", "https://data.delijn.be/stops/508632"], ["https://data.delijn.be/stops/305175", "https://data.delijn.be/stops/305176"], ["https://data.delijn.be/stops/208157", "https://data.delijn.be/stops/209509"], ["https://data.delijn.be/stops/405264", "https://data.delijn.be/stops/406405"], ["https://data.delijn.be/stops/208693", "https://data.delijn.be/stops/208695"], ["https://data.delijn.be/stops/501187", "https://data.delijn.be/stops/506116"], ["https://data.delijn.be/stops/307205", "https://data.delijn.be/stops/307676"], ["https://data.delijn.be/stops/102859", "https://data.delijn.be/stops/103262"], ["https://data.delijn.be/stops/202965", "https://data.delijn.be/stops/203966"], ["https://data.delijn.be/stops/305425", "https://data.delijn.be/stops/307051"], ["https://data.delijn.be/stops/404149", "https://data.delijn.be/stops/404173"], ["https://data.delijn.be/stops/307301", "https://data.delijn.be/stops/307321"], ["https://data.delijn.be/stops/508536", "https://data.delijn.be/stops/508538"], ["https://data.delijn.be/stops/101274", "https://data.delijn.be/stops/104103"], ["https://data.delijn.be/stops/200725", "https://data.delijn.be/stops/204943"], ["https://data.delijn.be/stops/207786", "https://data.delijn.be/stops/209408"], ["https://data.delijn.be/stops/200092", "https://data.delijn.be/stops/201092"], ["https://data.delijn.be/stops/408328", "https://data.delijn.be/stops/408329"], ["https://data.delijn.be/stops/101342", "https://data.delijn.be/stops/101343"], ["https://data.delijn.be/stops/200751", "https://data.delijn.be/stops/208298"], ["https://data.delijn.be/stops/101189", "https://data.delijn.be/stops/101191"], ["https://data.delijn.be/stops/302044", "https://data.delijn.be/stops/307285"], ["https://data.delijn.be/stops/109243", "https://data.delijn.be/stops/109246"], ["https://data.delijn.be/stops/105512", "https://data.delijn.be/stops/108731"], ["https://data.delijn.be/stops/305412", "https://data.delijn.be/stops/305413"], ["https://data.delijn.be/stops/204759", "https://data.delijn.be/stops/204760"], ["https://data.delijn.be/stops/502617", "https://data.delijn.be/stops/507618"], ["https://data.delijn.be/stops/302324", "https://data.delijn.be/stops/303439"], ["https://data.delijn.be/stops/204976", "https://data.delijn.be/stops/209298"], ["https://data.delijn.be/stops/206420", "https://data.delijn.be/stops/206805"], ["https://data.delijn.be/stops/401370", "https://data.delijn.be/stops/401376"], ["https://data.delijn.be/stops/204213", "https://data.delijn.be/stops/205212"], ["https://data.delijn.be/stops/408679", "https://data.delijn.be/stops/408788"], ["https://data.delijn.be/stops/402954", "https://data.delijn.be/stops/404384"], ["https://data.delijn.be/stops/203048", "https://data.delijn.be/stops/203049"], ["https://data.delijn.be/stops/508754", "https://data.delijn.be/stops/508764"], ["https://data.delijn.be/stops/503496", "https://data.delijn.be/stops/504452"], ["https://data.delijn.be/stops/501200", "https://data.delijn.be/stops/506201"], ["https://data.delijn.be/stops/402038", "https://data.delijn.be/stops/403882"], ["https://data.delijn.be/stops/403044", "https://data.delijn.be/stops/403073"], ["https://data.delijn.be/stops/300746", "https://data.delijn.be/stops/306115"], ["https://data.delijn.be/stops/107042", "https://data.delijn.be/stops/108239"], ["https://data.delijn.be/stops/200453", "https://data.delijn.be/stops/208267"], ["https://data.delijn.be/stops/404156", "https://data.delijn.be/stops/404167"], ["https://data.delijn.be/stops/405022", "https://data.delijn.be/stops/405112"], ["https://data.delijn.be/stops/200685", "https://data.delijn.be/stops/200822"], ["https://data.delijn.be/stops/106084", "https://data.delijn.be/stops/108729"], ["https://data.delijn.be/stops/401946", "https://data.delijn.be/stops/409730"], ["https://data.delijn.be/stops/210125", "https://data.delijn.be/stops/210127"], ["https://data.delijn.be/stops/400241", "https://data.delijn.be/stops/407156"], ["https://data.delijn.be/stops/306338", "https://data.delijn.be/stops/306339"], ["https://data.delijn.be/stops/509936", "https://data.delijn.be/stops/509982"], ["https://data.delijn.be/stops/303722", "https://data.delijn.be/stops/303723"], ["https://data.delijn.be/stops/501271", "https://data.delijn.be/stops/506302"], ["https://data.delijn.be/stops/504486", "https://data.delijn.be/stops/505928"], ["https://data.delijn.be/stops/308156", "https://data.delijn.be/stops/308159"], ["https://data.delijn.be/stops/200081", "https://data.delijn.be/stops/211855"], ["https://data.delijn.be/stops/105223", "https://data.delijn.be/stops/107390"], ["https://data.delijn.be/stops/501409", "https://data.delijn.be/stops/501419"], ["https://data.delijn.be/stops/503180", "https://data.delijn.be/stops/508180"], ["https://data.delijn.be/stops/503296", "https://data.delijn.be/stops/505935"], ["https://data.delijn.be/stops/202233", "https://data.delijn.be/stops/202234"], ["https://data.delijn.be/stops/300651", "https://data.delijn.be/stops/300663"], ["https://data.delijn.be/stops/304315", "https://data.delijn.be/stops/306883"], ["https://data.delijn.be/stops/206222", "https://data.delijn.be/stops/206809"], ["https://data.delijn.be/stops/102687", "https://data.delijn.be/stops/104630"], ["https://data.delijn.be/stops/102727", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/409802", "https://data.delijn.be/stops/409803"], ["https://data.delijn.be/stops/502130", "https://data.delijn.be/stops/507130"], ["https://data.delijn.be/stops/504976", "https://data.delijn.be/stops/509653"], ["https://data.delijn.be/stops/300661", "https://data.delijn.be/stops/300662"], ["https://data.delijn.be/stops/502229", "https://data.delijn.be/stops/507229"], ["https://data.delijn.be/stops/103326", "https://data.delijn.be/stops/107637"], ["https://data.delijn.be/stops/208019", "https://data.delijn.be/stops/208024"], ["https://data.delijn.be/stops/207757", "https://data.delijn.be/stops/207779"], ["https://data.delijn.be/stops/400894", "https://data.delijn.be/stops/406702"], ["https://data.delijn.be/stops/304540", "https://data.delijn.be/stops/304555"], ["https://data.delijn.be/stops/201859", "https://data.delijn.be/stops/202672"], ["https://data.delijn.be/stops/204705", "https://data.delijn.be/stops/204710"], ["https://data.delijn.be/stops/104706", "https://data.delijn.be/stops/107353"], ["https://data.delijn.be/stops/303753", "https://data.delijn.be/stops/303757"], ["https://data.delijn.be/stops/402115", "https://data.delijn.be/stops/409298"], ["https://data.delijn.be/stops/200557", "https://data.delijn.be/stops/200558"], ["https://data.delijn.be/stops/404999", "https://data.delijn.be/stops/405527"], ["https://data.delijn.be/stops/304812", "https://data.delijn.be/stops/307886"], ["https://data.delijn.be/stops/200637", "https://data.delijn.be/stops/201633"], ["https://data.delijn.be/stops/303113", "https://data.delijn.be/stops/303114"], ["https://data.delijn.be/stops/408505", "https://data.delijn.be/stops/408617"], ["https://data.delijn.be/stops/104591", "https://data.delijn.be/stops/107307"], ["https://data.delijn.be/stops/401529", "https://data.delijn.be/stops/409502"], ["https://data.delijn.be/stops/402812", "https://data.delijn.be/stops/409034"], ["https://data.delijn.be/stops/501367", "https://data.delijn.be/stops/506367"], ["https://data.delijn.be/stops/502099", "https://data.delijn.be/stops/502817"], ["https://data.delijn.be/stops/108817", "https://data.delijn.be/stops/108828"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/107139"], ["https://data.delijn.be/stops/202165", "https://data.delijn.be/stops/203638"], ["https://data.delijn.be/stops/206603", "https://data.delijn.be/stops/206703"], ["https://data.delijn.be/stops/305742", "https://data.delijn.be/stops/305743"], ["https://data.delijn.be/stops/105205", "https://data.delijn.be/stops/105206"], ["https://data.delijn.be/stops/306828", "https://data.delijn.be/stops/308700"], ["https://data.delijn.be/stops/504068", "https://data.delijn.be/stops/509066"], ["https://data.delijn.be/stops/202513", "https://data.delijn.be/stops/203513"], ["https://data.delijn.be/stops/308870", "https://data.delijn.be/stops/308871"], ["https://data.delijn.be/stops/203820", "https://data.delijn.be/stops/203821"], ["https://data.delijn.be/stops/506769", "https://data.delijn.be/stops/506772"], ["https://data.delijn.be/stops/203214", "https://data.delijn.be/stops/210005"], ["https://data.delijn.be/stops/507503", "https://data.delijn.be/stops/507536"], ["https://data.delijn.be/stops/304579", "https://data.delijn.be/stops/305555"], ["https://data.delijn.be/stops/306942", "https://data.delijn.be/stops/306947"], ["https://data.delijn.be/stops/407620", "https://data.delijn.be/stops/407622"], ["https://data.delijn.be/stops/508513", "https://data.delijn.be/stops/508518"], ["https://data.delijn.be/stops/302870", "https://data.delijn.be/stops/302892"], ["https://data.delijn.be/stops/102082", "https://data.delijn.be/stops/105833"], ["https://data.delijn.be/stops/401813", "https://data.delijn.be/stops/406355"], ["https://data.delijn.be/stops/106607", "https://data.delijn.be/stops/106608"], ["https://data.delijn.be/stops/304055", "https://data.delijn.be/stops/304084"], ["https://data.delijn.be/stops/503634", "https://data.delijn.be/stops/503959"], ["https://data.delijn.be/stops/404118", "https://data.delijn.be/stops/404182"], ["https://data.delijn.be/stops/303047", "https://data.delijn.be/stops/306552"], ["https://data.delijn.be/stops/102611", "https://data.delijn.be/stops/105531"], ["https://data.delijn.be/stops/101211", "https://data.delijn.be/stops/107827"], ["https://data.delijn.be/stops/300524", "https://data.delijn.be/stops/305551"], ["https://data.delijn.be/stops/505108", "https://data.delijn.be/stops/509172"], ["https://data.delijn.be/stops/505511", "https://data.delijn.be/stops/505615"], ["https://data.delijn.be/stops/204521", "https://data.delijn.be/stops/204522"], ["https://data.delijn.be/stops/101494", "https://data.delijn.be/stops/101514"], ["https://data.delijn.be/stops/202139", "https://data.delijn.be/stops/203139"], ["https://data.delijn.be/stops/408028", "https://data.delijn.be/stops/305731"], ["https://data.delijn.be/stops/505240", "https://data.delijn.be/stops/507346"], ["https://data.delijn.be/stops/502011", "https://data.delijn.be/stops/505764"], ["https://data.delijn.be/stops/504073", "https://data.delijn.be/stops/504341"], ["https://data.delijn.be/stops/303613", "https://data.delijn.be/stops/307167"], ["https://data.delijn.be/stops/300508", "https://data.delijn.be/stops/300509"], ["https://data.delijn.be/stops/206055", "https://data.delijn.be/stops/207297"], ["https://data.delijn.be/stops/407719", "https://data.delijn.be/stops/407720"], ["https://data.delijn.be/stops/105231", "https://data.delijn.be/stops/105232"], ["https://data.delijn.be/stops/301292", "https://data.delijn.be/stops/304694"], ["https://data.delijn.be/stops/211012", "https://data.delijn.be/stops/507275"], ["https://data.delijn.be/stops/206128", "https://data.delijn.be/stops/206129"], ["https://data.delijn.be/stops/208669", "https://data.delijn.be/stops/209127"], ["https://data.delijn.be/stops/109926", "https://data.delijn.be/stops/109956"], ["https://data.delijn.be/stops/106283", "https://data.delijn.be/stops/106285"], ["https://data.delijn.be/stops/405199", "https://data.delijn.be/stops/405238"], ["https://data.delijn.be/stops/501047", "https://data.delijn.be/stops/502730"], ["https://data.delijn.be/stops/500041", "https://data.delijn.be/stops/502821"], ["https://data.delijn.be/stops/503733", "https://data.delijn.be/stops/503738"], ["https://data.delijn.be/stops/504169", "https://data.delijn.be/stops/505988"], ["https://data.delijn.be/stops/200852", "https://data.delijn.be/stops/201846"], ["https://data.delijn.be/stops/406908", "https://data.delijn.be/stops/406944"], ["https://data.delijn.be/stops/202239", "https://data.delijn.be/stops/203239"], ["https://data.delijn.be/stops/401483", "https://data.delijn.be/stops/401566"], ["https://data.delijn.be/stops/301862", "https://data.delijn.be/stops/302051"], ["https://data.delijn.be/stops/503386", "https://data.delijn.be/stops/503402"], ["https://data.delijn.be/stops/107201", "https://data.delijn.be/stops/109993"], ["https://data.delijn.be/stops/502165", "https://data.delijn.be/stops/502243"], ["https://data.delijn.be/stops/409106", "https://data.delijn.be/stops/409110"], ["https://data.delijn.be/stops/204786", "https://data.delijn.be/stops/205148"], ["https://data.delijn.be/stops/108396", "https://data.delijn.be/stops/108400"], ["https://data.delijn.be/stops/408920", "https://data.delijn.be/stops/408927"], ["https://data.delijn.be/stops/503635", "https://data.delijn.be/stops/508635"], ["https://data.delijn.be/stops/308046", "https://data.delijn.be/stops/308047"], ["https://data.delijn.be/stops/509786", "https://data.delijn.be/stops/509788"], ["https://data.delijn.be/stops/101572", "https://data.delijn.be/stops/105467"], ["https://data.delijn.be/stops/205062", "https://data.delijn.be/stops/205323"], ["https://data.delijn.be/stops/202758", "https://data.delijn.be/stops/203763"], ["https://data.delijn.be/stops/305828", "https://data.delijn.be/stops/305830"], ["https://data.delijn.be/stops/403087", "https://data.delijn.be/stops/403679"], ["https://data.delijn.be/stops/103642", "https://data.delijn.be/stops/107169"], ["https://data.delijn.be/stops/101444", "https://data.delijn.be/stops/109665"], ["https://data.delijn.be/stops/502111", "https://data.delijn.be/stops/502580"], ["https://data.delijn.be/stops/204830", "https://data.delijn.be/stops/205260"], ["https://data.delijn.be/stops/307762", "https://data.delijn.be/stops/307765"], ["https://data.delijn.be/stops/400584", "https://data.delijn.be/stops/408676"], ["https://data.delijn.be/stops/106597", "https://data.delijn.be/stops/107243"], ["https://data.delijn.be/stops/302253", "https://data.delijn.be/stops/303206"], ["https://data.delijn.be/stops/200241", "https://data.delijn.be/stops/201129"], ["https://data.delijn.be/stops/508427", "https://data.delijn.be/stops/509770"], ["https://data.delijn.be/stops/405326", "https://data.delijn.be/stops/302847"], ["https://data.delijn.be/stops/304803", "https://data.delijn.be/stops/304804"], ["https://data.delijn.be/stops/402692", "https://data.delijn.be/stops/301477"], ["https://data.delijn.be/stops/407407", "https://data.delijn.be/stops/407571"], ["https://data.delijn.be/stops/406550", "https://data.delijn.be/stops/406558"], ["https://data.delijn.be/stops/201697", "https://data.delijn.be/stops/203384"], ["https://data.delijn.be/stops/401492", "https://data.delijn.be/stops/408635"], ["https://data.delijn.be/stops/106211", "https://data.delijn.be/stops/106215"], ["https://data.delijn.be/stops/401105", "https://data.delijn.be/stops/401111"], ["https://data.delijn.be/stops/401139", "https://data.delijn.be/stops/406719"], ["https://data.delijn.be/stops/202284", "https://data.delijn.be/stops/203283"], ["https://data.delijn.be/stops/304039", "https://data.delijn.be/stops/304090"], ["https://data.delijn.be/stops/300719", "https://data.delijn.be/stops/300726"], ["https://data.delijn.be/stops/501351", "https://data.delijn.be/stops/506329"], ["https://data.delijn.be/stops/503196", "https://data.delijn.be/stops/508196"], ["https://data.delijn.be/stops/307616", "https://data.delijn.be/stops/308257"], ["https://data.delijn.be/stops/200608", "https://data.delijn.be/stops/202206"], ["https://data.delijn.be/stops/202530", "https://data.delijn.be/stops/206827"], ["https://data.delijn.be/stops/402171", "https://data.delijn.be/stops/402206"], ["https://data.delijn.be/stops/207176", "https://data.delijn.be/stops/207479"], ["https://data.delijn.be/stops/308124", "https://data.delijn.be/stops/308734"], ["https://data.delijn.be/stops/302626", "https://data.delijn.be/stops/302643"], ["https://data.delijn.be/stops/107187", "https://data.delijn.be/stops/107197"], ["https://data.delijn.be/stops/106952", "https://data.delijn.be/stops/106954"], ["https://data.delijn.be/stops/108952", "https://data.delijn.be/stops/108953"], ["https://data.delijn.be/stops/504449", "https://data.delijn.be/stops/509441"], ["https://data.delijn.be/stops/204002", "https://data.delijn.be/stops/204716"], ["https://data.delijn.be/stops/304903", "https://data.delijn.be/stops/306178"], ["https://data.delijn.be/stops/407842", "https://data.delijn.be/stops/407991"], ["https://data.delijn.be/stops/303371", "https://data.delijn.be/stops/303386"], ["https://data.delijn.be/stops/504069", "https://data.delijn.be/stops/509069"], ["https://data.delijn.be/stops/308154", "https://data.delijn.be/stops/308170"], ["https://data.delijn.be/stops/405414", "https://data.delijn.be/stops/306776"], ["https://data.delijn.be/stops/403421", "https://data.delijn.be/stops/404873"], ["https://data.delijn.be/stops/204124", "https://data.delijn.be/stops/204126"], ["https://data.delijn.be/stops/201701", "https://data.delijn.be/stops/203562"], ["https://data.delijn.be/stops/501105", "https://data.delijn.be/stops/501106"], ["https://data.delijn.be/stops/408527", "https://data.delijn.be/stops/408688"], ["https://data.delijn.be/stops/300753", "https://data.delijn.be/stops/300773"], ["https://data.delijn.be/stops/102825", "https://data.delijn.be/stops/104370"], ["https://data.delijn.be/stops/105436", "https://data.delijn.be/stops/109953"], ["https://data.delijn.be/stops/108047", "https://data.delijn.be/stops/108278"], ["https://data.delijn.be/stops/501623", "https://data.delijn.be/stops/506624"], ["https://data.delijn.be/stops/304108", "https://data.delijn.be/stops/307996"], ["https://data.delijn.be/stops/208621", "https://data.delijn.be/stops/209596"], ["https://data.delijn.be/stops/504580", "https://data.delijn.be/stops/505995"], ["https://data.delijn.be/stops/302537", "https://data.delijn.be/stops/302540"], ["https://data.delijn.be/stops/405905", "https://data.delijn.be/stops/405972"], ["https://data.delijn.be/stops/406988", "https://data.delijn.be/stops/410005"], ["https://data.delijn.be/stops/200821", "https://data.delijn.be/stops/200849"], ["https://data.delijn.be/stops/302257", "https://data.delijn.be/stops/304846"], ["https://data.delijn.be/stops/305123", "https://data.delijn.be/stops/305125"], ["https://data.delijn.be/stops/200620", "https://data.delijn.be/stops/201478"], ["https://data.delijn.be/stops/304400", "https://data.delijn.be/stops/308827"], ["https://data.delijn.be/stops/108898", "https://data.delijn.be/stops/108899"], ["https://data.delijn.be/stops/303963", "https://data.delijn.be/stops/303964"], ["https://data.delijn.be/stops/301920", "https://data.delijn.be/stops/302812"], ["https://data.delijn.be/stops/200050", "https://data.delijn.be/stops/201892"], ["https://data.delijn.be/stops/201246", "https://data.delijn.be/stops/201425"], ["https://data.delijn.be/stops/501672", "https://data.delijn.be/stops/506430"], ["https://data.delijn.be/stops/505118", "https://data.delijn.be/stops/505427"], ["https://data.delijn.be/stops/108627", "https://data.delijn.be/stops/301837"], ["https://data.delijn.be/stops/405389", "https://data.delijn.be/stops/409250"], ["https://data.delijn.be/stops/400485", "https://data.delijn.be/stops/400494"], ["https://data.delijn.be/stops/105604", "https://data.delijn.be/stops/105606"], ["https://data.delijn.be/stops/306815", "https://data.delijn.be/stops/307428"], ["https://data.delijn.be/stops/204594", "https://data.delijn.be/stops/205582"], ["https://data.delijn.be/stops/509027", "https://data.delijn.be/stops/509034"], ["https://data.delijn.be/stops/502178", "https://data.delijn.be/stops/502256"], ["https://data.delijn.be/stops/302955", "https://data.delijn.be/stops/302957"], ["https://data.delijn.be/stops/101389", "https://data.delijn.be/stops/101391"], ["https://data.delijn.be/stops/202005", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/300129", "https://data.delijn.be/stops/300135"], ["https://data.delijn.be/stops/504967", "https://data.delijn.be/stops/509967"], ["https://data.delijn.be/stops/406003", "https://data.delijn.be/stops/406120"], ["https://data.delijn.be/stops/404660", "https://data.delijn.be/stops/404662"], ["https://data.delijn.be/stops/400177", "https://data.delijn.be/stops/400179"], ["https://data.delijn.be/stops/306325", "https://data.delijn.be/stops/306326"], ["https://data.delijn.be/stops/503794", "https://data.delijn.be/stops/508798"], ["https://data.delijn.be/stops/503085", "https://data.delijn.be/stops/507820"], ["https://data.delijn.be/stops/303848", "https://data.delijn.be/stops/304080"], ["https://data.delijn.be/stops/304389", "https://data.delijn.be/stops/304390"], ["https://data.delijn.be/stops/404175", "https://data.delijn.be/stops/404219"], ["https://data.delijn.be/stops/206225", "https://data.delijn.be/stops/207225"], ["https://data.delijn.be/stops/507382", "https://data.delijn.be/stops/507387"], ["https://data.delijn.be/stops/303294", "https://data.delijn.be/stops/303295"], ["https://data.delijn.be/stops/108896", "https://data.delijn.be/stops/108898"], ["https://data.delijn.be/stops/202049", "https://data.delijn.be/stops/203227"], ["https://data.delijn.be/stops/205160", "https://data.delijn.be/stops/205578"], ["https://data.delijn.be/stops/206168", "https://data.delijn.be/stops/304827"], ["https://data.delijn.be/stops/308868", "https://data.delijn.be/stops/308870"], ["https://data.delijn.be/stops/509591", "https://data.delijn.be/stops/509596"], ["https://data.delijn.be/stops/108300", "https://data.delijn.be/stops/108305"], ["https://data.delijn.be/stops/304570", "https://data.delijn.be/stops/304605"], ["https://data.delijn.be/stops/404114", "https://data.delijn.be/stops/408554"], ["https://data.delijn.be/stops/404431", "https://data.delijn.be/stops/404483"], ["https://data.delijn.be/stops/302613", "https://data.delijn.be/stops/302632"], ["https://data.delijn.be/stops/400960", "https://data.delijn.be/stops/400961"], ["https://data.delijn.be/stops/109419", "https://data.delijn.be/stops/109423"], ["https://data.delijn.be/stops/102381", "https://data.delijn.be/stops/106379"], ["https://data.delijn.be/stops/307374", "https://data.delijn.be/stops/307384"], ["https://data.delijn.be/stops/109447", "https://data.delijn.be/stops/109448"], ["https://data.delijn.be/stops/501227", "https://data.delijn.be/stops/505044"], ["https://data.delijn.be/stops/200431", "https://data.delijn.be/stops/201431"], ["https://data.delijn.be/stops/104044", "https://data.delijn.be/stops/104048"], ["https://data.delijn.be/stops/400151", "https://data.delijn.be/stops/410031"], ["https://data.delijn.be/stops/203115", "https://data.delijn.be/stops/204581"], ["https://data.delijn.be/stops/101812", "https://data.delijn.be/stops/108039"], ["https://data.delijn.be/stops/207695", "https://data.delijn.be/stops/207700"], ["https://data.delijn.be/stops/508563", "https://data.delijn.be/stops/508874"], ["https://data.delijn.be/stops/407861", "https://data.delijn.be/stops/408026"], ["https://data.delijn.be/stops/105459", "https://data.delijn.be/stops/109895"], ["https://data.delijn.be/stops/204584", "https://data.delijn.be/stops/204585"], ["https://data.delijn.be/stops/106729", "https://data.delijn.be/stops/108220"], ["https://data.delijn.be/stops/402608", "https://data.delijn.be/stops/402609"], ["https://data.delijn.be/stops/405277", "https://data.delijn.be/stops/410085"], ["https://data.delijn.be/stops/405170", "https://data.delijn.be/stops/405175"], ["https://data.delijn.be/stops/106693", "https://data.delijn.be/stops/106695"], ["https://data.delijn.be/stops/104954", "https://data.delijn.be/stops/406504"], ["https://data.delijn.be/stops/305832", "https://data.delijn.be/stops/305834"], ["https://data.delijn.be/stops/504618", "https://data.delijn.be/stops/509618"], ["https://data.delijn.be/stops/502763", "https://data.delijn.be/stops/507691"], ["https://data.delijn.be/stops/301277", "https://data.delijn.be/stops/303647"], ["https://data.delijn.be/stops/507317", "https://data.delijn.be/stops/507336"], ["https://data.delijn.be/stops/106843", "https://data.delijn.be/stops/106985"], ["https://data.delijn.be/stops/400593", "https://data.delijn.be/stops/400605"], ["https://data.delijn.be/stops/500931", "https://data.delijn.be/stops/503122"], ["https://data.delijn.be/stops/208303", "https://data.delijn.be/stops/209089"], ["https://data.delijn.be/stops/301063", "https://data.delijn.be/stops/305916"], ["https://data.delijn.be/stops/301647", "https://data.delijn.be/stops/302108"], ["https://data.delijn.be/stops/408230", "https://data.delijn.be/stops/408491"], ["https://data.delijn.be/stops/304154", "https://data.delijn.be/stops/304155"], ["https://data.delijn.be/stops/108413", "https://data.delijn.be/stops/108414"], ["https://data.delijn.be/stops/407204", "https://data.delijn.be/stops/408810"], ["https://data.delijn.be/stops/504220", "https://data.delijn.be/stops/504306"], ["https://data.delijn.be/stops/202608", "https://data.delijn.be/stops/203552"], ["https://data.delijn.be/stops/203126", "https://data.delijn.be/stops/203598"], ["https://data.delijn.be/stops/508495", "https://data.delijn.be/stops/509454"], ["https://data.delijn.be/stops/408806", "https://data.delijn.be/stops/408810"], ["https://data.delijn.be/stops/202760", "https://data.delijn.be/stops/203757"], ["https://data.delijn.be/stops/204566", "https://data.delijn.be/stops/303382"], ["https://data.delijn.be/stops/501506", "https://data.delijn.be/stops/506506"], ["https://data.delijn.be/stops/501615", "https://data.delijn.be/stops/501620"], ["https://data.delijn.be/stops/401344", "https://data.delijn.be/stops/410045"], ["https://data.delijn.be/stops/206223", "https://data.delijn.be/stops/206224"], ["https://data.delijn.be/stops/407255", "https://data.delijn.be/stops/407314"], ["https://data.delijn.be/stops/401466", "https://data.delijn.be/stops/401885"], ["https://data.delijn.be/stops/107138", "https://data.delijn.be/stops/107142"], ["https://data.delijn.be/stops/200089", "https://data.delijn.be/stops/201066"], ["https://data.delijn.be/stops/306147", "https://data.delijn.be/stops/306151"], ["https://data.delijn.be/stops/405180", "https://data.delijn.be/stops/405199"], ["https://data.delijn.be/stops/206791", "https://data.delijn.be/stops/208565"], ["https://data.delijn.be/stops/301701", "https://data.delijn.be/stops/303711"], ["https://data.delijn.be/stops/106643", "https://data.delijn.be/stops/106645"], ["https://data.delijn.be/stops/408518", "https://data.delijn.be/stops/408711"], ["https://data.delijn.be/stops/508607", "https://data.delijn.be/stops/509752"], ["https://data.delijn.be/stops/106813", "https://data.delijn.be/stops/106814"], ["https://data.delijn.be/stops/103294", "https://data.delijn.be/stops/107707"], ["https://data.delijn.be/stops/305675", "https://data.delijn.be/stops/305692"], ["https://data.delijn.be/stops/404266", "https://data.delijn.be/stops/405553"], ["https://data.delijn.be/stops/200410", "https://data.delijn.be/stops/201899"], ["https://data.delijn.be/stops/501445", "https://data.delijn.be/stops/501555"], ["https://data.delijn.be/stops/201953", "https://data.delijn.be/stops/202460"], ["https://data.delijn.be/stops/206327", "https://data.delijn.be/stops/308846"], ["https://data.delijn.be/stops/409505", "https://data.delijn.be/stops/410402"], ["https://data.delijn.be/stops/402836", "https://data.delijn.be/stops/407574"], ["https://data.delijn.be/stops/502221", "https://data.delijn.be/stops/507224"], ["https://data.delijn.be/stops/300172", "https://data.delijn.be/stops/306717"], ["https://data.delijn.be/stops/403601", "https://data.delijn.be/stops/410037"], ["https://data.delijn.be/stops/201555", "https://data.delijn.be/stops/201679"], ["https://data.delijn.be/stops/303032", "https://data.delijn.be/stops/303594"], ["https://data.delijn.be/stops/101924", "https://data.delijn.be/stops/107013"], ["https://data.delijn.be/stops/502170", "https://data.delijn.be/stops/507170"], ["https://data.delijn.be/stops/405407", "https://data.delijn.be/stops/406298"], ["https://data.delijn.be/stops/207236", "https://data.delijn.be/stops/207855"], ["https://data.delijn.be/stops/300195", "https://data.delijn.be/stops/300216"], ["https://data.delijn.be/stops/303624", "https://data.delijn.be/stops/306700"], ["https://data.delijn.be/stops/401676", "https://data.delijn.be/stops/308153"], ["https://data.delijn.be/stops/200588", "https://data.delijn.be/stops/211078"], ["https://data.delijn.be/stops/300463", "https://data.delijn.be/stops/300472"], ["https://data.delijn.be/stops/501529", "https://data.delijn.be/stops/506199"], ["https://data.delijn.be/stops/101671", "https://data.delijn.be/stops/107663"], ["https://data.delijn.be/stops/200463", "https://data.delijn.be/stops/201463"], ["https://data.delijn.be/stops/409088", "https://data.delijn.be/stops/409211"], ["https://data.delijn.be/stops/303801", "https://data.delijn.be/stops/303811"], ["https://data.delijn.be/stops/406058", "https://data.delijn.be/stops/409259"], ["https://data.delijn.be/stops/205021", "https://data.delijn.be/stops/205413"], ["https://data.delijn.be/stops/200663", "https://data.delijn.be/stops/200664"], ["https://data.delijn.be/stops/105214", "https://data.delijn.be/stops/105546"], ["https://data.delijn.be/stops/206664", "https://data.delijn.be/stops/207612"], ["https://data.delijn.be/stops/205123", "https://data.delijn.be/stops/214004"], ["https://data.delijn.be/stops/305984", "https://data.delijn.be/stops/305986"], ["https://data.delijn.be/stops/206201", "https://data.delijn.be/stops/206220"], ["https://data.delijn.be/stops/501047", "https://data.delijn.be/stops/506047"], ["https://data.delijn.be/stops/407899", "https://data.delijn.be/stops/407989"], ["https://data.delijn.be/stops/103041", "https://data.delijn.be/stops/103505"], ["https://data.delijn.be/stops/103292", "https://data.delijn.be/stops/108731"], ["https://data.delijn.be/stops/405044", "https://data.delijn.be/stops/408154"], ["https://data.delijn.be/stops/400815", "https://data.delijn.be/stops/400823"], ["https://data.delijn.be/stops/109033", "https://data.delijn.be/stops/109034"], ["https://data.delijn.be/stops/210037", "https://data.delijn.be/stops/211037"], ["https://data.delijn.be/stops/101474", "https://data.delijn.be/stops/109249"], ["https://data.delijn.be/stops/501169", "https://data.delijn.be/stops/501684"], ["https://data.delijn.be/stops/306942", "https://data.delijn.be/stops/308064"], ["https://data.delijn.be/stops/101947", "https://data.delijn.be/stops/108749"], ["https://data.delijn.be/stops/105552", "https://data.delijn.be/stops/105564"], ["https://data.delijn.be/stops/404090", "https://data.delijn.be/stops/408592"], ["https://data.delijn.be/stops/504103", "https://data.delijn.be/stops/509103"], ["https://data.delijn.be/stops/303443", "https://data.delijn.be/stops/303455"], ["https://data.delijn.be/stops/502043", "https://data.delijn.be/stops/507081"], ["https://data.delijn.be/stops/101726", "https://data.delijn.be/stops/102092"], ["https://data.delijn.be/stops/202213", "https://data.delijn.be/stops/203213"], ["https://data.delijn.be/stops/201747", "https://data.delijn.be/stops/203244"], ["https://data.delijn.be/stops/306280", "https://data.delijn.be/stops/308604"], ["https://data.delijn.be/stops/505073", "https://data.delijn.be/stops/505761"], ["https://data.delijn.be/stops/409476", "https://data.delijn.be/stops/410255"], ["https://data.delijn.be/stops/504772", "https://data.delijn.be/stops/505213"], ["https://data.delijn.be/stops/401728", "https://data.delijn.be/stops/406123"], ["https://data.delijn.be/stops/102481", "https://data.delijn.be/stops/407100"], ["https://data.delijn.be/stops/207404", "https://data.delijn.be/stops/207405"], ["https://data.delijn.be/stops/400657", "https://data.delijn.be/stops/400966"], ["https://data.delijn.be/stops/208147", "https://data.delijn.be/stops/208151"], ["https://data.delijn.be/stops/409286", "https://data.delijn.be/stops/409311"], ["https://data.delijn.be/stops/409076", "https://data.delijn.be/stops/409079"], ["https://data.delijn.be/stops/505134", "https://data.delijn.be/stops/505137"], ["https://data.delijn.be/stops/410167", "https://data.delijn.be/stops/410353"], ["https://data.delijn.be/stops/101013", "https://data.delijn.be/stops/109774"], ["https://data.delijn.be/stops/405284", "https://data.delijn.be/stops/407333"], ["https://data.delijn.be/stops/200176", "https://data.delijn.be/stops/200503"], ["https://data.delijn.be/stops/302962", "https://data.delijn.be/stops/306297"], ["https://data.delijn.be/stops/200225", "https://data.delijn.be/stops/200267"], ["https://data.delijn.be/stops/307477", "https://data.delijn.be/stops/307479"], ["https://data.delijn.be/stops/102314", "https://data.delijn.be/stops/103378"], ["https://data.delijn.be/stops/200360", "https://data.delijn.be/stops/202006"], ["https://data.delijn.be/stops/405613", "https://data.delijn.be/stops/407191"], ["https://data.delijn.be/stops/202836", "https://data.delijn.be/stops/203836"], ["https://data.delijn.be/stops/403619", "https://data.delijn.be/stops/403634"], ["https://data.delijn.be/stops/200066", "https://data.delijn.be/stops/200228"], ["https://data.delijn.be/stops/200052", "https://data.delijn.be/stops/201052"], ["https://data.delijn.be/stops/206774", "https://data.delijn.be/stops/209404"], ["https://data.delijn.be/stops/303378", "https://data.delijn.be/stops/303394"], ["https://data.delijn.be/stops/304974", "https://data.delijn.be/stops/308083"], ["https://data.delijn.be/stops/301992", "https://data.delijn.be/stops/303286"], ["https://data.delijn.be/stops/501674", "https://data.delijn.be/stops/506662"], ["https://data.delijn.be/stops/402394", "https://data.delijn.be/stops/407494"], ["https://data.delijn.be/stops/304829", "https://data.delijn.be/stops/305505"], ["https://data.delijn.be/stops/200820", "https://data.delijn.be/stops/200851"], ["https://data.delijn.be/stops/206829", "https://data.delijn.be/stops/207829"], ["https://data.delijn.be/stops/410074", "https://data.delijn.be/stops/410076"], ["https://data.delijn.be/stops/201754", "https://data.delijn.be/stops/209281"], ["https://data.delijn.be/stops/402086", "https://data.delijn.be/stops/402134"], ["https://data.delijn.be/stops/403179", "https://data.delijn.be/stops/403454"], ["https://data.delijn.be/stops/105696", "https://data.delijn.be/stops/105698"], ["https://data.delijn.be/stops/106738", "https://data.delijn.be/stops/106739"], ["https://data.delijn.be/stops/200832", "https://data.delijn.be/stops/200875"], ["https://data.delijn.be/stops/102590", "https://data.delijn.be/stops/105840"], ["https://data.delijn.be/stops/300190", "https://data.delijn.be/stops/300228"], ["https://data.delijn.be/stops/208340", "https://data.delijn.be/stops/208387"], ["https://data.delijn.be/stops/501014", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/503122", "https://data.delijn.be/stops/508044"], ["https://data.delijn.be/stops/306916", "https://data.delijn.be/stops/307086"], ["https://data.delijn.be/stops/407894", "https://data.delijn.be/stops/408045"], ["https://data.delijn.be/stops/200609", "https://data.delijn.be/stops/202310"], ["https://data.delijn.be/stops/407662", "https://data.delijn.be/stops/409807"], ["https://data.delijn.be/stops/201451", "https://data.delijn.be/stops/203407"], ["https://data.delijn.be/stops/300166", "https://data.delijn.be/stops/308700"], ["https://data.delijn.be/stops/401964", "https://data.delijn.be/stops/406885"], ["https://data.delijn.be/stops/402069", "https://data.delijn.be/stops/402070"], ["https://data.delijn.be/stops/403165", "https://data.delijn.be/stops/403829"], ["https://data.delijn.be/stops/102590", "https://data.delijn.be/stops/105735"], ["https://data.delijn.be/stops/202089", "https://data.delijn.be/stops/203721"], ["https://data.delijn.be/stops/505138", "https://data.delijn.be/stops/505139"], ["https://data.delijn.be/stops/303943", "https://data.delijn.be/stops/307729"], ["https://data.delijn.be/stops/102120", "https://data.delijn.be/stops/104110"], ["https://data.delijn.be/stops/503318", "https://data.delijn.be/stops/508318"], ["https://data.delijn.be/stops/304000", "https://data.delijn.be/stops/304092"], ["https://data.delijn.be/stops/404204", "https://data.delijn.be/stops/404205"], ["https://data.delijn.be/stops/202032", "https://data.delijn.be/stops/203029"], ["https://data.delijn.be/stops/500196", "https://data.delijn.be/stops/505030"], ["https://data.delijn.be/stops/407652", "https://data.delijn.be/stops/407653"], ["https://data.delijn.be/stops/300113", "https://data.delijn.be/stops/306844"], ["https://data.delijn.be/stops/505706", "https://data.delijn.be/stops/505707"], ["https://data.delijn.be/stops/407590", "https://data.delijn.be/stops/407670"], ["https://data.delijn.be/stops/501023", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/501026", "https://data.delijn.be/stops/506329"], ["https://data.delijn.be/stops/400659", "https://data.delijn.be/stops/402529"], ["https://data.delijn.be/stops/404835", "https://data.delijn.be/stops/406109"], ["https://data.delijn.be/stops/209502", "https://data.delijn.be/stops/209618"], ["https://data.delijn.be/stops/305506", "https://data.delijn.be/stops/305513"], ["https://data.delijn.be/stops/401922", "https://data.delijn.be/stops/403750"], ["https://data.delijn.be/stops/400500", "https://data.delijn.be/stops/400513"], ["https://data.delijn.be/stops/107902", "https://data.delijn.be/stops/108953"], ["https://data.delijn.be/stops/306691", "https://data.delijn.be/stops/308925"], ["https://data.delijn.be/stops/402976", "https://data.delijn.be/stops/404039"], ["https://data.delijn.be/stops/208390", "https://data.delijn.be/stops/209389"], ["https://data.delijn.be/stops/404161", "https://data.delijn.be/stops/404163"], ["https://data.delijn.be/stops/202298", "https://data.delijn.be/stops/203298"], ["https://data.delijn.be/stops/304616", "https://data.delijn.be/stops/304637"], ["https://data.delijn.be/stops/400440", "https://data.delijn.be/stops/400441"], ["https://data.delijn.be/stops/503070", "https://data.delijn.be/stops/508073"], ["https://data.delijn.be/stops/200738", "https://data.delijn.be/stops/203582"], ["https://data.delijn.be/stops/202371", "https://data.delijn.be/stops/210104"], ["https://data.delijn.be/stops/502149", "https://data.delijn.be/stops/507112"], ["https://data.delijn.be/stops/508079", "https://data.delijn.be/stops/508083"], ["https://data.delijn.be/stops/501211", "https://data.delijn.be/stops/501310"], ["https://data.delijn.be/stops/505916", "https://data.delijn.be/stops/509528"], ["https://data.delijn.be/stops/502401", "https://data.delijn.be/stops/502652"], ["https://data.delijn.be/stops/400481", "https://data.delijn.be/stops/408698"], ["https://data.delijn.be/stops/203155", "https://data.delijn.be/stops/203179"], ["https://data.delijn.be/stops/403338", "https://data.delijn.be/stops/403356"], ["https://data.delijn.be/stops/401488", "https://data.delijn.be/stops/406808"], ["https://data.delijn.be/stops/301947", "https://data.delijn.be/stops/306971"], ["https://data.delijn.be/stops/403486", "https://data.delijn.be/stops/403487"], ["https://data.delijn.be/stops/200481", "https://data.delijn.be/stops/202132"], ["https://data.delijn.be/stops/401359", "https://data.delijn.be/stops/406356"], ["https://data.delijn.be/stops/106194", "https://data.delijn.be/stops/106195"], ["https://data.delijn.be/stops/202375", "https://data.delijn.be/stops/202376"], ["https://data.delijn.be/stops/201023", "https://data.delijn.be/stops/208849"], ["https://data.delijn.be/stops/101398", "https://data.delijn.be/stops/107304"], ["https://data.delijn.be/stops/408769", "https://data.delijn.be/stops/408770"], ["https://data.delijn.be/stops/109279", "https://data.delijn.be/stops/109283"], ["https://data.delijn.be/stops/102392", "https://data.delijn.be/stops/107114"], ["https://data.delijn.be/stops/102397", "https://data.delijn.be/stops/106340"], ["https://data.delijn.be/stops/304607", "https://data.delijn.be/stops/304626"], ["https://data.delijn.be/stops/504410", "https://data.delijn.be/stops/509436"], ["https://data.delijn.be/stops/502332", "https://data.delijn.be/stops/507282"], ["https://data.delijn.be/stops/202564", "https://data.delijn.be/stops/203564"], ["https://data.delijn.be/stops/401413", "https://data.delijn.be/stops/307498"], ["https://data.delijn.be/stops/200088", "https://data.delijn.be/stops/203240"], ["https://data.delijn.be/stops/207670", "https://data.delijn.be/stops/209501"], ["https://data.delijn.be/stops/401475", "https://data.delijn.be/stops/410129"], ["https://data.delijn.be/stops/301006", "https://data.delijn.be/stops/301012"], ["https://data.delijn.be/stops/202234", "https://data.delijn.be/stops/202235"], ["https://data.delijn.be/stops/400900", "https://data.delijn.be/stops/400963"], ["https://data.delijn.be/stops/205139", "https://data.delijn.be/stops/209912"], ["https://data.delijn.be/stops/201668", "https://data.delijn.be/stops/201679"], ["https://data.delijn.be/stops/204062", "https://data.delijn.be/stops/205062"], ["https://data.delijn.be/stops/505236", "https://data.delijn.be/stops/505775"], ["https://data.delijn.be/stops/200110", "https://data.delijn.be/stops/201110"], ["https://data.delijn.be/stops/202481", "https://data.delijn.be/stops/211003"], ["https://data.delijn.be/stops/504364", "https://data.delijn.be/stops/505306"], ["https://data.delijn.be/stops/207514", "https://data.delijn.be/stops/207661"], ["https://data.delijn.be/stops/302024", "https://data.delijn.be/stops/302025"], ["https://data.delijn.be/stops/406714", "https://data.delijn.be/stops/408681"], ["https://data.delijn.be/stops/402871", "https://data.delijn.be/stops/402873"], ["https://data.delijn.be/stops/408854", "https://data.delijn.be/stops/408855"], ["https://data.delijn.be/stops/406568", "https://data.delijn.be/stops/406569"], ["https://data.delijn.be/stops/201534", "https://data.delijn.be/stops/201546"], ["https://data.delijn.be/stops/207676", "https://data.delijn.be/stops/207677"], ["https://data.delijn.be/stops/300205", "https://data.delijn.be/stops/307130"], ["https://data.delijn.be/stops/504287", "https://data.delijn.be/stops/504627"], ["https://data.delijn.be/stops/303531", "https://data.delijn.be/stops/303572"], ["https://data.delijn.be/stops/407017", "https://data.delijn.be/stops/407049"], ["https://data.delijn.be/stops/201695", "https://data.delijn.be/stops/202689"], ["https://data.delijn.be/stops/203969", "https://data.delijn.be/stops/205092"], ["https://data.delijn.be/stops/503766", "https://data.delijn.be/stops/508966"], ["https://data.delijn.be/stops/301655", "https://data.delijn.be/stops/306301"], ["https://data.delijn.be/stops/405531", "https://data.delijn.be/stops/406829"], ["https://data.delijn.be/stops/201852", "https://data.delijn.be/stops/202361"], ["https://data.delijn.be/stops/408149", "https://data.delijn.be/stops/408150"], ["https://data.delijn.be/stops/101950", "https://data.delijn.be/stops/101955"], ["https://data.delijn.be/stops/300641", "https://data.delijn.be/stops/300678"], ["https://data.delijn.be/stops/307940", "https://data.delijn.be/stops/308776"], ["https://data.delijn.be/stops/105473", "https://data.delijn.be/stops/109934"], ["https://data.delijn.be/stops/109890", "https://data.delijn.be/stops/109893"], ["https://data.delijn.be/stops/400562", "https://data.delijn.be/stops/405122"], ["https://data.delijn.be/stops/308720", "https://data.delijn.be/stops/308725"], ["https://data.delijn.be/stops/103116", "https://data.delijn.be/stops/107366"], ["https://data.delijn.be/stops/304826", "https://data.delijn.be/stops/304839"], ["https://data.delijn.be/stops/209615", "https://data.delijn.be/stops/307745"], ["https://data.delijn.be/stops/500005", "https://data.delijn.be/stops/500603"], ["https://data.delijn.be/stops/302943", "https://data.delijn.be/stops/302966"], ["https://data.delijn.be/stops/405718", "https://data.delijn.be/stops/410144"], ["https://data.delijn.be/stops/303462", "https://data.delijn.be/stops/308068"], ["https://data.delijn.be/stops/103054", "https://data.delijn.be/stops/103056"], ["https://data.delijn.be/stops/103963", "https://data.delijn.be/stops/408923"], ["https://data.delijn.be/stops/400575", "https://data.delijn.be/stops/403019"], ["https://data.delijn.be/stops/103674", "https://data.delijn.be/stops/106216"], ["https://data.delijn.be/stops/405131", "https://data.delijn.be/stops/405186"], ["https://data.delijn.be/stops/207671", "https://data.delijn.be/stops/208483"], ["https://data.delijn.be/stops/403329", "https://data.delijn.be/stops/403339"], ["https://data.delijn.be/stops/201926", "https://data.delijn.be/stops/206400"], ["https://data.delijn.be/stops/105746", "https://data.delijn.be/stops/105747"], ["https://data.delijn.be/stops/202162", "https://data.delijn.be/stops/202634"], ["https://data.delijn.be/stops/405254", "https://data.delijn.be/stops/405290"], ["https://data.delijn.be/stops/301556", "https://data.delijn.be/stops/301561"], ["https://data.delijn.be/stops/109024", "https://data.delijn.be/stops/109078"], ["https://data.delijn.be/stops/207061", "https://data.delijn.be/stops/207176"], ["https://data.delijn.be/stops/300813", "https://data.delijn.be/stops/307233"], ["https://data.delijn.be/stops/500006", "https://data.delijn.be/stops/506510"], ["https://data.delijn.be/stops/303061", "https://data.delijn.be/stops/304468"], ["https://data.delijn.be/stops/404774", "https://data.delijn.be/stops/404780"], ["https://data.delijn.be/stops/504671", "https://data.delijn.be/stops/504793"], ["https://data.delijn.be/stops/300442", "https://data.delijn.be/stops/307100"], ["https://data.delijn.be/stops/204757", "https://data.delijn.be/stops/205482"], ["https://data.delijn.be/stops/509055", "https://data.delijn.be/stops/509057"], ["https://data.delijn.be/stops/200131", "https://data.delijn.be/stops/201491"], ["https://data.delijn.be/stops/402781", "https://data.delijn.be/stops/405581"], ["https://data.delijn.be/stops/403525", "https://data.delijn.be/stops/404409"], ["https://data.delijn.be/stops/206486", "https://data.delijn.be/stops/207485"], ["https://data.delijn.be/stops/101838", "https://data.delijn.be/stops/105905"], ["https://data.delijn.be/stops/103019", "https://data.delijn.be/stops/107231"], ["https://data.delijn.be/stops/105791", "https://data.delijn.be/stops/105792"], ["https://data.delijn.be/stops/208178", "https://data.delijn.be/stops/209177"], ["https://data.delijn.be/stops/102519", "https://data.delijn.be/stops/405004"], ["https://data.delijn.be/stops/407035", "https://data.delijn.be/stops/410032"], ["https://data.delijn.be/stops/201967", "https://data.delijn.be/stops/208038"], ["https://data.delijn.be/stops/306065", "https://data.delijn.be/stops/307201"], ["https://data.delijn.be/stops/106003", "https://data.delijn.be/stops/106006"], ["https://data.delijn.be/stops/305655", "https://data.delijn.be/stops/305662"], ["https://data.delijn.be/stops/404414", "https://data.delijn.be/stops/404415"], ["https://data.delijn.be/stops/405196", "https://data.delijn.be/stops/405198"], ["https://data.delijn.be/stops/202390", "https://data.delijn.be/stops/203389"], ["https://data.delijn.be/stops/401592", "https://data.delijn.be/stops/408635"], ["https://data.delijn.be/stops/406908", "https://data.delijn.be/stops/409468"], ["https://data.delijn.be/stops/300952", "https://data.delijn.be/stops/301943"], ["https://data.delijn.be/stops/206632", "https://data.delijn.be/stops/207890"], ["https://data.delijn.be/stops/101228", "https://data.delijn.be/stops/104449"], ["https://data.delijn.be/stops/300135", "https://data.delijn.be/stops/306821"], ["https://data.delijn.be/stops/403643", "https://data.delijn.be/stops/403645"], ["https://data.delijn.be/stops/205137", "https://data.delijn.be/stops/207894"], ["https://data.delijn.be/stops/107031", "https://data.delijn.be/stops/107033"], ["https://data.delijn.be/stops/205098", "https://data.delijn.be/stops/205141"], ["https://data.delijn.be/stops/204460", "https://data.delijn.be/stops/205460"], ["https://data.delijn.be/stops/103989", "https://data.delijn.be/stops/104818"], ["https://data.delijn.be/stops/209334", "https://data.delijn.be/stops/209335"], ["https://data.delijn.be/stops/504660", "https://data.delijn.be/stops/507953"], ["https://data.delijn.be/stops/102998", "https://data.delijn.be/stops/102999"], ["https://data.delijn.be/stops/407671", "https://data.delijn.be/stops/408448"], ["https://data.delijn.be/stops/109065", "https://data.delijn.be/stops/109067"], ["https://data.delijn.be/stops/204692", "https://data.delijn.be/stops/205006"], ["https://data.delijn.be/stops/407963", "https://data.delijn.be/stops/408424"], ["https://data.delijn.be/stops/204321", "https://data.delijn.be/stops/204322"], ["https://data.delijn.be/stops/501312", "https://data.delijn.be/stops/501313"], ["https://data.delijn.be/stops/408584", "https://data.delijn.be/stops/408587"], ["https://data.delijn.be/stops/503931", "https://data.delijn.be/stops/508931"], ["https://data.delijn.be/stops/209030", "https://data.delijn.be/stops/217001"], ["https://data.delijn.be/stops/501205", "https://data.delijn.be/stops/506205"], ["https://data.delijn.be/stops/101172", "https://data.delijn.be/stops/104030"], ["https://data.delijn.be/stops/403323", "https://data.delijn.be/stops/407634"], ["https://data.delijn.be/stops/504464", "https://data.delijn.be/stops/509464"], ["https://data.delijn.be/stops/400859", "https://data.delijn.be/stops/400867"], ["https://data.delijn.be/stops/204416", "https://data.delijn.be/stops/205769"], ["https://data.delijn.be/stops/105522", "https://data.delijn.be/stops/106974"], ["https://data.delijn.be/stops/406648", "https://data.delijn.be/stops/406649"], ["https://data.delijn.be/stops/108287", "https://data.delijn.be/stops/108288"], ["https://data.delijn.be/stops/505332", "https://data.delijn.be/stops/507495"], ["https://data.delijn.be/stops/208407", "https://data.delijn.be/stops/209820"], ["https://data.delijn.be/stops/302956", "https://data.delijn.be/stops/302958"], ["https://data.delijn.be/stops/503199", "https://data.delijn.be/stops/508199"], ["https://data.delijn.be/stops/211084", "https://data.delijn.be/stops/211132"], ["https://data.delijn.be/stops/505331", "https://data.delijn.be/stops/507515"], ["https://data.delijn.be/stops/504509", "https://data.delijn.be/stops/505167"], ["https://data.delijn.be/stops/107003", "https://data.delijn.be/stops/107006"], ["https://data.delijn.be/stops/200132", "https://data.delijn.be/stops/201132"], ["https://data.delijn.be/stops/209740", "https://data.delijn.be/stops/209742"], ["https://data.delijn.be/stops/204669", "https://data.delijn.be/stops/205697"], ["https://data.delijn.be/stops/402889", "https://data.delijn.be/stops/402942"], ["https://data.delijn.be/stops/501204", "https://data.delijn.be/stops/506204"], ["https://data.delijn.be/stops/501087", "https://data.delijn.be/stops/505148"], ["https://data.delijn.be/stops/202784", "https://data.delijn.be/stops/203784"], ["https://data.delijn.be/stops/502009", "https://data.delijn.be/stops/505764"], ["https://data.delijn.be/stops/107200", "https://data.delijn.be/stops/107202"], ["https://data.delijn.be/stops/106115", "https://data.delijn.be/stops/109085"], ["https://data.delijn.be/stops/503330", "https://data.delijn.be/stops/508330"], ["https://data.delijn.be/stops/303823", "https://data.delijn.be/stops/307496"], ["https://data.delijn.be/stops/407256", "https://data.delijn.be/stops/407335"], ["https://data.delijn.be/stops/401089", "https://data.delijn.be/stops/401114"], ["https://data.delijn.be/stops/302906", "https://data.delijn.be/stops/304313"], ["https://data.delijn.be/stops/409077", "https://data.delijn.be/stops/409092"], ["https://data.delijn.be/stops/505079", "https://data.delijn.be/stops/509698"], ["https://data.delijn.be/stops/206794", "https://data.delijn.be/stops/206795"], ["https://data.delijn.be/stops/408820", "https://data.delijn.be/stops/408827"], ["https://data.delijn.be/stops/403487", "https://data.delijn.be/stops/409296"], ["https://data.delijn.be/stops/204431", "https://data.delijn.be/stops/204432"], ["https://data.delijn.be/stops/308125", "https://data.delijn.be/stops/308722"], ["https://data.delijn.be/stops/503807", "https://data.delijn.be/stops/505542"], ["https://data.delijn.be/stops/403164", "https://data.delijn.be/stops/403314"], ["https://data.delijn.be/stops/202173", "https://data.delijn.be/stops/202174"], ["https://data.delijn.be/stops/300807", "https://data.delijn.be/stops/300808"], ["https://data.delijn.be/stops/306194", "https://data.delijn.be/stops/307521"], ["https://data.delijn.be/stops/402156", "https://data.delijn.be/stops/409382"], ["https://data.delijn.be/stops/400871", "https://data.delijn.be/stops/400894"], ["https://data.delijn.be/stops/501489", "https://data.delijn.be/stops/506044"], ["https://data.delijn.be/stops/501476", "https://data.delijn.be/stops/505029"], ["https://data.delijn.be/stops/404866", "https://data.delijn.be/stops/404964"], ["https://data.delijn.be/stops/304547", "https://data.delijn.be/stops/304552"], ["https://data.delijn.be/stops/404059", "https://data.delijn.be/stops/406856"], ["https://data.delijn.be/stops/208076", "https://data.delijn.be/stops/209077"], ["https://data.delijn.be/stops/101657", "https://data.delijn.be/stops/102634"], ["https://data.delijn.be/stops/504517", "https://data.delijn.be/stops/505112"], ["https://data.delijn.be/stops/404714", "https://data.delijn.be/stops/404721"], ["https://data.delijn.be/stops/406161", "https://data.delijn.be/stops/406229"], ["https://data.delijn.be/stops/206502", "https://data.delijn.be/stops/207503"], ["https://data.delijn.be/stops/305460", "https://data.delijn.be/stops/306559"], ["https://data.delijn.be/stops/403018", "https://data.delijn.be/stops/408197"], ["https://data.delijn.be/stops/503669", "https://data.delijn.be/stops/504362"], ["https://data.delijn.be/stops/103078", "https://data.delijn.be/stops/105006"], ["https://data.delijn.be/stops/301759", "https://data.delijn.be/stops/308418"], ["https://data.delijn.be/stops/404019", "https://data.delijn.be/stops/404021"], ["https://data.delijn.be/stops/404785", "https://data.delijn.be/stops/404786"], ["https://data.delijn.be/stops/208410", "https://data.delijn.be/stops/208766"], ["https://data.delijn.be/stops/102826", "https://data.delijn.be/stops/106233"], ["https://data.delijn.be/stops/202413", "https://data.delijn.be/stops/203421"], ["https://data.delijn.be/stops/204408", "https://data.delijn.be/stops/205200"], ["https://data.delijn.be/stops/304807", "https://data.delijn.be/stops/304808"], ["https://data.delijn.be/stops/402235", "https://data.delijn.be/stops/409512"], ["https://data.delijn.be/stops/302684", "https://data.delijn.be/stops/302697"], ["https://data.delijn.be/stops/301555", "https://data.delijn.be/stops/301562"], ["https://data.delijn.be/stops/305944", "https://data.delijn.be/stops/308416"], ["https://data.delijn.be/stops/401756", "https://data.delijn.be/stops/401845"], ["https://data.delijn.be/stops/301437", "https://data.delijn.be/stops/301442"], ["https://data.delijn.be/stops/206621", "https://data.delijn.be/stops/207869"], ["https://data.delijn.be/stops/503928", "https://data.delijn.be/stops/505250"], ["https://data.delijn.be/stops/206354", "https://data.delijn.be/stops/206884"], ["https://data.delijn.be/stops/301269", "https://data.delijn.be/stops/301270"], ["https://data.delijn.be/stops/203673", "https://data.delijn.be/stops/203726"], ["https://data.delijn.be/stops/202567", "https://data.delijn.be/stops/202684"], ["https://data.delijn.be/stops/502567", "https://data.delijn.be/stops/507567"], ["https://data.delijn.be/stops/502494", "https://data.delijn.be/stops/505323"], ["https://data.delijn.be/stops/404856", "https://data.delijn.be/stops/404861"], ["https://data.delijn.be/stops/404524", "https://data.delijn.be/stops/404525"], ["https://data.delijn.be/stops/101931", "https://data.delijn.be/stops/101932"], ["https://data.delijn.be/stops/108527", "https://data.delijn.be/stops/108538"], ["https://data.delijn.be/stops/105555", "https://data.delijn.be/stops/108975"], ["https://data.delijn.be/stops/400661", "https://data.delijn.be/stops/400665"], ["https://data.delijn.be/stops/104839", "https://data.delijn.be/stops/107953"], ["https://data.delijn.be/stops/302758", "https://data.delijn.be/stops/302783"], ["https://data.delijn.be/stops/408579", "https://data.delijn.be/stops/408587"], ["https://data.delijn.be/stops/108313", "https://data.delijn.be/stops/108753"], ["https://data.delijn.be/stops/305343", "https://data.delijn.be/stops/305348"], ["https://data.delijn.be/stops/201913", "https://data.delijn.be/stops/203469"], ["https://data.delijn.be/stops/509252", "https://data.delijn.be/stops/509370"], ["https://data.delijn.be/stops/403313", "https://data.delijn.be/stops/403345"], ["https://data.delijn.be/stops/205241", "https://data.delijn.be/stops/205477"], ["https://data.delijn.be/stops/302807", "https://data.delijn.be/stops/302808"], ["https://data.delijn.be/stops/308649", "https://data.delijn.be/stops/308652"], ["https://data.delijn.be/stops/103682", "https://data.delijn.be/stops/109275"], ["https://data.delijn.be/stops/405030", "https://data.delijn.be/stops/405033"], ["https://data.delijn.be/stops/502920", "https://data.delijn.be/stops/507263"], ["https://data.delijn.be/stops/202275", "https://data.delijn.be/stops/202681"], ["https://data.delijn.be/stops/509043", "https://data.delijn.be/stops/509049"], ["https://data.delijn.be/stops/306624", "https://data.delijn.be/stops/306625"], ["https://data.delijn.be/stops/303348", "https://data.delijn.be/stops/303349"], ["https://data.delijn.be/stops/205980", "https://data.delijn.be/stops/207819"], ["https://data.delijn.be/stops/506296", "https://data.delijn.be/stops/506360"], ["https://data.delijn.be/stops/502061", "https://data.delijn.be/stops/507061"], ["https://data.delijn.be/stops/307270", "https://data.delijn.be/stops/307271"], ["https://data.delijn.be/stops/502048", "https://data.delijn.be/stops/507047"], ["https://data.delijn.be/stops/202312", "https://data.delijn.be/stops/202313"], ["https://data.delijn.be/stops/109084", "https://data.delijn.be/stops/109866"], ["https://data.delijn.be/stops/302646", "https://data.delijn.be/stops/302660"], ["https://data.delijn.be/stops/408952", "https://data.delijn.be/stops/408992"], ["https://data.delijn.be/stops/504127", "https://data.delijn.be/stops/509127"], ["https://data.delijn.be/stops/508100", "https://data.delijn.be/stops/508437"], ["https://data.delijn.be/stops/202156", "https://data.delijn.be/stops/202628"], ["https://data.delijn.be/stops/106872", "https://data.delijn.be/stops/106873"], ["https://data.delijn.be/stops/400031", "https://data.delijn.be/stops/400316"], ["https://data.delijn.be/stops/509783", "https://data.delijn.be/stops/509788"], ["https://data.delijn.be/stops/200952", "https://data.delijn.be/stops/203249"], ["https://data.delijn.be/stops/200309", "https://data.delijn.be/stops/201160"], ["https://data.delijn.be/stops/105802", "https://data.delijn.be/stops/305791"], ["https://data.delijn.be/stops/502690", "https://data.delijn.be/stops/508824"], ["https://data.delijn.be/stops/407159", "https://data.delijn.be/stops/407179"], ["https://data.delijn.be/stops/408008", "https://data.delijn.be/stops/408010"], ["https://data.delijn.be/stops/305337", "https://data.delijn.be/stops/305340"], ["https://data.delijn.be/stops/400508", "https://data.delijn.be/stops/404049"], ["https://data.delijn.be/stops/504416", "https://data.delijn.be/stops/509009"], ["https://data.delijn.be/stops/400599", "https://data.delijn.be/stops/401997"], ["https://data.delijn.be/stops/202301", "https://data.delijn.be/stops/203301"], ["https://data.delijn.be/stops/508602", "https://data.delijn.be/stops/508611"], ["https://data.delijn.be/stops/302163", "https://data.delijn.be/stops/307805"], ["https://data.delijn.be/stops/400613", "https://data.delijn.be/stops/404294"], ["https://data.delijn.be/stops/505323", "https://data.delijn.be/stops/505627"], ["https://data.delijn.be/stops/101310", "https://data.delijn.be/stops/102385"], ["https://data.delijn.be/stops/206704", "https://data.delijn.be/stops/207607"], ["https://data.delijn.be/stops/410028", "https://data.delijn.be/stops/410029"], ["https://data.delijn.be/stops/303722", "https://data.delijn.be/stops/303789"], ["https://data.delijn.be/stops/101423", "https://data.delijn.be/stops/106965"], ["https://data.delijn.be/stops/403832", "https://data.delijn.be/stops/405636"], ["https://data.delijn.be/stops/404535", "https://data.delijn.be/stops/404585"], ["https://data.delijn.be/stops/503382", "https://data.delijn.be/stops/508439"], ["https://data.delijn.be/stops/201206", "https://data.delijn.be/stops/202142"], ["https://data.delijn.be/stops/306815", "https://data.delijn.be/stops/308591"], ["https://data.delijn.be/stops/200857", "https://data.delijn.be/stops/201846"], ["https://data.delijn.be/stops/102750", "https://data.delijn.be/stops/102760"], ["https://data.delijn.be/stops/104022", "https://data.delijn.be/stops/104023"], ["https://data.delijn.be/stops/406529", "https://data.delijn.be/stops/409252"], ["https://data.delijn.be/stops/401251", "https://data.delijn.be/stops/401259"], ["https://data.delijn.be/stops/206258", "https://data.delijn.be/stops/206260"], ["https://data.delijn.be/stops/503834", "https://data.delijn.be/stops/508832"], ["https://data.delijn.be/stops/400205", "https://data.delijn.be/stops/400217"], ["https://data.delijn.be/stops/302356", "https://data.delijn.be/stops/302682"], ["https://data.delijn.be/stops/105732", "https://data.delijn.be/stops/109838"], ["https://data.delijn.be/stops/307420", "https://data.delijn.be/stops/308827"], ["https://data.delijn.be/stops/303168", "https://data.delijn.be/stops/304320"], ["https://data.delijn.be/stops/302708", "https://data.delijn.be/stops/302727"], ["https://data.delijn.be/stops/101344", "https://data.delijn.be/stops/108064"], ["https://data.delijn.be/stops/102977", "https://data.delijn.be/stops/107610"], ["https://data.delijn.be/stops/103694", "https://data.delijn.be/stops/109604"], ["https://data.delijn.be/stops/306910", "https://data.delijn.be/stops/308127"], ["https://data.delijn.be/stops/400877", "https://data.delijn.be/stops/403582"], ["https://data.delijn.be/stops/300545", "https://data.delijn.be/stops/306288"], ["https://data.delijn.be/stops/302505", "https://data.delijn.be/stops/302510"], ["https://data.delijn.be/stops/201108", "https://data.delijn.be/stops/209908"], ["https://data.delijn.be/stops/305508", "https://data.delijn.be/stops/305509"], ["https://data.delijn.be/stops/101684", "https://data.delijn.be/stops/101688"], ["https://data.delijn.be/stops/206872", "https://data.delijn.be/stops/207872"], ["https://data.delijn.be/stops/301995", "https://data.delijn.be/stops/303613"], ["https://data.delijn.be/stops/202003", "https://data.delijn.be/stops/203022"], ["https://data.delijn.be/stops/208541", "https://data.delijn.be/stops/208543"], ["https://data.delijn.be/stops/400700", "https://data.delijn.be/stops/400898"], ["https://data.delijn.be/stops/303566", "https://data.delijn.be/stops/303567"], ["https://data.delijn.be/stops/101941", "https://data.delijn.be/stops/101943"], ["https://data.delijn.be/stops/404934", "https://data.delijn.be/stops/405649"], ["https://data.delijn.be/stops/500029", "https://data.delijn.be/stops/503884"], ["https://data.delijn.be/stops/101514", "https://data.delijn.be/stops/102251"], ["https://data.delijn.be/stops/504002", "https://data.delijn.be/stops/508498"], ["https://data.delijn.be/stops/206048", "https://data.delijn.be/stops/207999"], ["https://data.delijn.be/stops/107657", "https://data.delijn.be/stops/109861"], ["https://data.delijn.be/stops/504645", "https://data.delijn.be/stops/509645"], ["https://data.delijn.be/stops/304399", "https://data.delijn.be/stops/304426"], ["https://data.delijn.be/stops/408169", "https://data.delijn.be/stops/409543"], ["https://data.delijn.be/stops/509048", "https://data.delijn.be/stops/509150"], ["https://data.delijn.be/stops/106652", "https://data.delijn.be/stops/106653"], ["https://data.delijn.be/stops/209096", "https://data.delijn.be/stops/209633"], ["https://data.delijn.be/stops/503873", "https://data.delijn.be/stops/508872"], ["https://data.delijn.be/stops/206997", "https://data.delijn.be/stops/207868"], ["https://data.delijn.be/stops/101476", "https://data.delijn.be/stops/101477"], ["https://data.delijn.be/stops/506150", "https://data.delijn.be/stops/506432"], ["https://data.delijn.be/stops/206450", "https://data.delijn.be/stops/207451"], ["https://data.delijn.be/stops/403370", "https://data.delijn.be/stops/403510"], ["https://data.delijn.be/stops/106425", "https://data.delijn.be/stops/106511"], ["https://data.delijn.be/stops/502321", "https://data.delijn.be/stops/505225"], ["https://data.delijn.be/stops/202497", "https://data.delijn.be/stops/203176"], ["https://data.delijn.be/stops/101482", "https://data.delijn.be/stops/108212"], ["https://data.delijn.be/stops/502426", "https://data.delijn.be/stops/507307"], ["https://data.delijn.be/stops/104738", "https://data.delijn.be/stops/107333"], ["https://data.delijn.be/stops/101904", "https://data.delijn.be/stops/105456"], ["https://data.delijn.be/stops/201002", "https://data.delijn.be/stops/210857"], ["https://data.delijn.be/stops/401210", "https://data.delijn.be/stops/401212"], ["https://data.delijn.be/stops/302785", "https://data.delijn.be/stops/304732"], ["https://data.delijn.be/stops/306970", "https://data.delijn.be/stops/306971"], ["https://data.delijn.be/stops/405827", "https://data.delijn.be/stops/409421"], ["https://data.delijn.be/stops/306662", "https://data.delijn.be/stops/306665"], ["https://data.delijn.be/stops/402095", "https://data.delijn.be/stops/402174"], ["https://data.delijn.be/stops/208085", "https://data.delijn.be/stops/208086"], ["https://data.delijn.be/stops/106509", "https://data.delijn.be/stops/106512"], ["https://data.delijn.be/stops/505079", "https://data.delijn.be/stops/505510"], ["https://data.delijn.be/stops/301249", "https://data.delijn.be/stops/307389"], ["https://data.delijn.be/stops/208581", "https://data.delijn.be/stops/301423"], ["https://data.delijn.be/stops/206536", "https://data.delijn.be/stops/209739"], ["https://data.delijn.be/stops/200682", "https://data.delijn.be/stops/208653"], ["https://data.delijn.be/stops/200942", "https://data.delijn.be/stops/203687"], ["https://data.delijn.be/stops/503670", "https://data.delijn.be/stops/509842"], ["https://data.delijn.be/stops/500129", "https://data.delijn.be/stops/505627"], ["https://data.delijn.be/stops/206300", "https://data.delijn.be/stops/206472"], ["https://data.delijn.be/stops/106598", "https://data.delijn.be/stops/106599"], ["https://data.delijn.be/stops/106567", "https://data.delijn.be/stops/106571"], ["https://data.delijn.be/stops/301486", "https://data.delijn.be/stops/308075"], ["https://data.delijn.be/stops/104951", "https://data.delijn.be/stops/109569"], ["https://data.delijn.be/stops/305735", "https://data.delijn.be/stops/305742"], ["https://data.delijn.be/stops/503716", "https://data.delijn.be/stops/505999"], ["https://data.delijn.be/stops/108564", "https://data.delijn.be/stops/109092"], ["https://data.delijn.be/stops/407897", "https://data.delijn.be/stops/407931"], ["https://data.delijn.be/stops/208129", "https://data.delijn.be/stops/208816"], ["https://data.delijn.be/stops/503290", "https://data.delijn.be/stops/505292"], ["https://data.delijn.be/stops/202440", "https://data.delijn.be/stops/203440"], ["https://data.delijn.be/stops/501300", "https://data.delijn.be/stops/506301"], ["https://data.delijn.be/stops/302198", "https://data.delijn.be/stops/308110"], ["https://data.delijn.be/stops/305452", "https://data.delijn.be/stops/308965"], ["https://data.delijn.be/stops/407276", "https://data.delijn.be/stops/407277"], ["https://data.delijn.be/stops/209011", "https://data.delijn.be/stops/209012"], ["https://data.delijn.be/stops/200868", "https://data.delijn.be/stops/203341"], ["https://data.delijn.be/stops/300194", "https://data.delijn.be/stops/300217"], ["https://data.delijn.be/stops/204994", "https://data.delijn.be/stops/505512"], ["https://data.delijn.be/stops/301116", "https://data.delijn.be/stops/302242"], ["https://data.delijn.be/stops/402538", "https://data.delijn.be/stops/404093"], ["https://data.delijn.be/stops/408177", "https://data.delijn.be/stops/408178"], ["https://data.delijn.be/stops/106624", "https://data.delijn.be/stops/106625"], ["https://data.delijn.be/stops/408524", "https://data.delijn.be/stops/408525"], ["https://data.delijn.be/stops/202593", "https://data.delijn.be/stops/203593"], ["https://data.delijn.be/stops/207158", "https://data.delijn.be/stops/207159"], ["https://data.delijn.be/stops/406119", "https://data.delijn.be/stops/410262"], ["https://data.delijn.be/stops/104732", "https://data.delijn.be/stops/204266"], ["https://data.delijn.be/stops/406042", "https://data.delijn.be/stops/406379"], ["https://data.delijn.be/stops/304926", "https://data.delijn.be/stops/306109"], ["https://data.delijn.be/stops/200837", "https://data.delijn.be/stops/200863"], ["https://data.delijn.be/stops/101666", "https://data.delijn.be/stops/109189"], ["https://data.delijn.be/stops/504748", "https://data.delijn.be/stops/509030"], ["https://data.delijn.be/stops/304384", "https://data.delijn.be/stops/304396"], ["https://data.delijn.be/stops/105217", "https://data.delijn.be/stops/109395"], ["https://data.delijn.be/stops/103107", "https://data.delijn.be/stops/106567"], ["https://data.delijn.be/stops/501681", "https://data.delijn.be/stops/506681"], ["https://data.delijn.be/stops/103011", "https://data.delijn.be/stops/104210"], ["https://data.delijn.be/stops/201253", "https://data.delijn.be/stops/203558"], ["https://data.delijn.be/stops/103170", "https://data.delijn.be/stops/103185"], ["https://data.delijn.be/stops/503112", "https://data.delijn.be/stops/508113"], ["https://data.delijn.be/stops/103980", "https://data.delijn.be/stops/104645"], ["https://data.delijn.be/stops/405759", "https://data.delijn.be/stops/303335"], ["https://data.delijn.be/stops/102728", "https://data.delijn.be/stops/102729"], ["https://data.delijn.be/stops/102555", "https://data.delijn.be/stops/103110"], ["https://data.delijn.be/stops/503961", "https://data.delijn.be/stops/504342"], ["https://data.delijn.be/stops/107716", "https://data.delijn.be/stops/107717"], ["https://data.delijn.be/stops/205176", "https://data.delijn.be/stops/205215"], ["https://data.delijn.be/stops/201532", "https://data.delijn.be/stops/211109"], ["https://data.delijn.be/stops/409750", "https://data.delijn.be/stops/409752"], ["https://data.delijn.be/stops/303540", "https://data.delijn.be/stops/303571"], ["https://data.delijn.be/stops/501664", "https://data.delijn.be/stops/506664"], ["https://data.delijn.be/stops/308472", "https://data.delijn.be/stops/308521"], ["https://data.delijn.be/stops/404322", "https://data.delijn.be/stops/404370"], ["https://data.delijn.be/stops/402858", "https://data.delijn.be/stops/409009"], ["https://data.delijn.be/stops/507335", "https://data.delijn.be/stops/507711"], ["https://data.delijn.be/stops/204929", "https://data.delijn.be/stops/209294"], ["https://data.delijn.be/stops/300479", "https://data.delijn.be/stops/300495"], ["https://data.delijn.be/stops/500017", "https://data.delijn.be/stops/501049"], ["https://data.delijn.be/stops/406602", "https://data.delijn.be/stops/406604"], ["https://data.delijn.be/stops/503558", "https://data.delijn.be/stops/503689"], ["https://data.delijn.be/stops/403221", "https://data.delijn.be/stops/403223"], ["https://data.delijn.be/stops/300451", "https://data.delijn.be/stops/308061"], ["https://data.delijn.be/stops/300486", "https://data.delijn.be/stops/300496"], ["https://data.delijn.be/stops/306885", "https://data.delijn.be/stops/306886"], ["https://data.delijn.be/stops/301455", "https://data.delijn.be/stops/301459"], ["https://data.delijn.be/stops/400502", "https://data.delijn.be/stops/400503"], ["https://data.delijn.be/stops/102940", "https://data.delijn.be/stops/104970"], ["https://data.delijn.be/stops/408884", "https://data.delijn.be/stops/408885"], ["https://data.delijn.be/stops/301165", "https://data.delijn.be/stops/301166"], ["https://data.delijn.be/stops/404130", "https://data.delijn.be/stops/404189"], ["https://data.delijn.be/stops/208562", "https://data.delijn.be/stops/209596"], ["https://data.delijn.be/stops/104741", "https://data.delijn.be/stops/108904"], ["https://data.delijn.be/stops/209590", "https://data.delijn.be/stops/305223"], ["https://data.delijn.be/stops/301396", "https://data.delijn.be/stops/301397"], ["https://data.delijn.be/stops/404178", "https://data.delijn.be/stops/404179"], ["https://data.delijn.be/stops/507153", "https://data.delijn.be/stops/507576"], ["https://data.delijn.be/stops/504699", "https://data.delijn.be/stops/509574"], ["https://data.delijn.be/stops/301009", "https://data.delijn.be/stops/301016"], ["https://data.delijn.be/stops/409386", "https://data.delijn.be/stops/409398"], ["https://data.delijn.be/stops/405055", "https://data.delijn.be/stops/405101"], ["https://data.delijn.be/stops/504054", "https://data.delijn.be/stops/504531"], ["https://data.delijn.be/stops/103112", "https://data.delijn.be/stops/104815"], ["https://data.delijn.be/stops/504446", "https://data.delijn.be/stops/509446"], ["https://data.delijn.be/stops/300537", "https://data.delijn.be/stops/300538"], ["https://data.delijn.be/stops/101350", "https://data.delijn.be/stops/102763"], ["https://data.delijn.be/stops/105262", "https://data.delijn.be/stops/105264"], ["https://data.delijn.be/stops/305060", "https://data.delijn.be/stops/306919"], ["https://data.delijn.be/stops/400966", "https://data.delijn.be/stops/406558"], ["https://data.delijn.be/stops/204413", "https://data.delijn.be/stops/205767"], ["https://data.delijn.be/stops/402378", "https://data.delijn.be/stops/404730"], ["https://data.delijn.be/stops/307389", "https://data.delijn.be/stops/307906"], ["https://data.delijn.be/stops/405951", "https://data.delijn.be/stops/405953"], ["https://data.delijn.be/stops/105766", "https://data.delijn.be/stops/108575"], ["https://data.delijn.be/stops/101208", "https://data.delijn.be/stops/107843"], ["https://data.delijn.be/stops/103027", "https://data.delijn.be/stops/107476"], ["https://data.delijn.be/stops/400515", "https://data.delijn.be/stops/403826"], ["https://data.delijn.be/stops/300359", "https://data.delijn.be/stops/300360"], ["https://data.delijn.be/stops/105972", "https://data.delijn.be/stops/105973"], ["https://data.delijn.be/stops/403916", "https://data.delijn.be/stops/403917"], ["https://data.delijn.be/stops/305216", "https://data.delijn.be/stops/306966"], ["https://data.delijn.be/stops/401090", "https://data.delijn.be/stops/401099"], ["https://data.delijn.be/stops/103623", "https://data.delijn.be/stops/103647"], ["https://data.delijn.be/stops/207959", "https://data.delijn.be/stops/306078"], ["https://data.delijn.be/stops/300094", "https://data.delijn.be/stops/300117"], ["https://data.delijn.be/stops/400065", "https://data.delijn.be/stops/409833"], ["https://data.delijn.be/stops/304451", "https://data.delijn.be/stops/307714"], ["https://data.delijn.be/stops/202344", "https://data.delijn.be/stops/209743"], ["https://data.delijn.be/stops/304349", "https://data.delijn.be/stops/304357"], ["https://data.delijn.be/stops/504008", "https://data.delijn.be/stops/508906"], ["https://data.delijn.be/stops/205460", "https://data.delijn.be/stops/214017"], ["https://data.delijn.be/stops/402777", "https://data.delijn.be/stops/406473"], ["https://data.delijn.be/stops/509328", "https://data.delijn.be/stops/509329"], ["https://data.delijn.be/stops/502528", "https://data.delijn.be/stops/507548"], ["https://data.delijn.be/stops/300478", "https://data.delijn.be/stops/300483"], ["https://data.delijn.be/stops/208652", "https://data.delijn.be/stops/209652"], ["https://data.delijn.be/stops/408578", "https://data.delijn.be/stops/408591"], ["https://data.delijn.be/stops/207350", "https://data.delijn.be/stops/207351"], ["https://data.delijn.be/stops/304389", "https://data.delijn.be/stops/304396"], ["https://data.delijn.be/stops/407753", "https://data.delijn.be/stops/407760"], ["https://data.delijn.be/stops/104742", "https://data.delijn.be/stops/107338"], ["https://data.delijn.be/stops/206894", "https://data.delijn.be/stops/207886"], ["https://data.delijn.be/stops/503661", "https://data.delijn.be/stops/505130"], ["https://data.delijn.be/stops/401806", "https://data.delijn.be/stops/406351"], ["https://data.delijn.be/stops/206762", "https://data.delijn.be/stops/208564"], ["https://data.delijn.be/stops/107323", "https://data.delijn.be/stops/107327"], ["https://data.delijn.be/stops/503098", "https://data.delijn.be/stops/505388"], ["https://data.delijn.be/stops/500120", "https://data.delijn.be/stops/502450"], ["https://data.delijn.be/stops/502516", "https://data.delijn.be/stops/505337"], ["https://data.delijn.be/stops/201688", "https://data.delijn.be/stops/201849"], ["https://data.delijn.be/stops/406282", "https://data.delijn.be/stops/406284"], ["https://data.delijn.be/stops/208117", "https://data.delijn.be/stops/209116"], ["https://data.delijn.be/stops/206197", "https://data.delijn.be/stops/207198"], ["https://data.delijn.be/stops/101196", "https://data.delijn.be/stops/101207"], ["https://data.delijn.be/stops/405414", "https://data.delijn.be/stops/406395"], ["https://data.delijn.be/stops/504025", "https://data.delijn.be/stops/504119"], ["https://data.delijn.be/stops/303302", "https://data.delijn.be/stops/303343"], ["https://data.delijn.be/stops/107409", "https://data.delijn.be/stops/107601"], ["https://data.delijn.be/stops/208096", "https://data.delijn.be/stops/209633"], ["https://data.delijn.be/stops/404784", "https://data.delijn.be/stops/410051"], ["https://data.delijn.be/stops/407542", "https://data.delijn.be/stops/407547"], ["https://data.delijn.be/stops/102482", "https://data.delijn.be/stops/400176"], ["https://data.delijn.be/stops/306771", "https://data.delijn.be/stops/306772"], ["https://data.delijn.be/stops/202013", "https://data.delijn.be/stops/203013"], ["https://data.delijn.be/stops/300543", "https://data.delijn.be/stops/304081"], ["https://data.delijn.be/stops/501407", "https://data.delijn.be/stops/506407"], ["https://data.delijn.be/stops/206019", "https://data.delijn.be/stops/206143"], ["https://data.delijn.be/stops/507109", "https://data.delijn.be/stops/507145"], ["https://data.delijn.be/stops/401964", "https://data.delijn.be/stops/402040"], ["https://data.delijn.be/stops/508066", "https://data.delijn.be/stops/509950"], ["https://data.delijn.be/stops/106124", "https://data.delijn.be/stops/106126"], ["https://data.delijn.be/stops/501658", "https://data.delijn.be/stops/506658"], ["https://data.delijn.be/stops/103118", "https://data.delijn.be/stops/104111"], ["https://data.delijn.be/stops/107834", "https://data.delijn.be/stops/107837"], ["https://data.delijn.be/stops/106440", "https://data.delijn.be/stops/106441"], ["https://data.delijn.be/stops/503187", "https://data.delijn.be/stops/508183"], ["https://data.delijn.be/stops/407247", "https://data.delijn.be/stops/407455"], ["https://data.delijn.be/stops/504281", "https://data.delijn.be/stops/504616"], ["https://data.delijn.be/stops/202332", "https://data.delijn.be/stops/202333"], ["https://data.delijn.be/stops/405788", "https://data.delijn.be/stops/409692"], ["https://data.delijn.be/stops/200514", "https://data.delijn.be/stops/201174"], ["https://data.delijn.be/stops/208589", "https://data.delijn.be/stops/305236"], ["https://data.delijn.be/stops/104103", "https://data.delijn.be/stops/108295"], ["https://data.delijn.be/stops/202940", "https://data.delijn.be/stops/203940"], ["https://data.delijn.be/stops/405754", "https://data.delijn.be/stops/405763"], ["https://data.delijn.be/stops/501002", "https://data.delijn.be/stops/506216"], ["https://data.delijn.be/stops/107567", "https://data.delijn.be/stops/107568"], ["https://data.delijn.be/stops/208133", "https://data.delijn.be/stops/208199"], ["https://data.delijn.be/stops/302156", "https://data.delijn.be/stops/302157"], ["https://data.delijn.be/stops/109156", "https://data.delijn.be/stops/109158"], ["https://data.delijn.be/stops/107636", "https://data.delijn.be/stops/108838"], ["https://data.delijn.be/stops/501096", "https://data.delijn.be/stops/507208"], ["https://data.delijn.be/stops/204015", "https://data.delijn.be/stops/204350"], ["https://data.delijn.be/stops/406518", "https://data.delijn.be/stops/409349"], ["https://data.delijn.be/stops/101409", "https://data.delijn.be/stops/101434"], ["https://data.delijn.be/stops/202105", "https://data.delijn.be/stops/203104"], ["https://data.delijn.be/stops/109298", "https://data.delijn.be/stops/109300"], ["https://data.delijn.be/stops/301608", "https://data.delijn.be/stops/301609"], ["https://data.delijn.be/stops/504140", "https://data.delijn.be/stops/504141"], ["https://data.delijn.be/stops/208358", "https://data.delijn.be/stops/209357"], ["https://data.delijn.be/stops/400104", "https://data.delijn.be/stops/400150"], ["https://data.delijn.be/stops/206321", "https://data.delijn.be/stops/206504"], ["https://data.delijn.be/stops/102459", "https://data.delijn.be/stops/406858"], ["https://data.delijn.be/stops/202926", "https://data.delijn.be/stops/208694"], ["https://data.delijn.be/stops/101459", "https://data.delijn.be/stops/109280"], ["https://data.delijn.be/stops/106943", "https://data.delijn.be/stops/108702"], ["https://data.delijn.be/stops/303385", "https://data.delijn.be/stops/308893"], ["https://data.delijn.be/stops/202877", "https://data.delijn.be/stops/209534"], ["https://data.delijn.be/stops/406268", "https://data.delijn.be/stops/406421"], ["https://data.delijn.be/stops/201385", "https://data.delijn.be/stops/202645"], ["https://data.delijn.be/stops/202008", "https://data.delijn.be/stops/203007"], ["https://data.delijn.be/stops/503554", "https://data.delijn.be/stops/508129"], ["https://data.delijn.be/stops/402685", "https://data.delijn.be/stops/402732"], ["https://data.delijn.be/stops/400918", "https://data.delijn.be/stops/400919"], ["https://data.delijn.be/stops/403803", "https://data.delijn.be/stops/403806"], ["https://data.delijn.be/stops/204078", "https://data.delijn.be/stops/204238"], ["https://data.delijn.be/stops/209204", "https://data.delijn.be/stops/209781"], ["https://data.delijn.be/stops/304846", "https://data.delijn.be/stops/307281"], ["https://data.delijn.be/stops/200685", "https://data.delijn.be/stops/209652"], ["https://data.delijn.be/stops/200678", "https://data.delijn.be/stops/201668"], ["https://data.delijn.be/stops/103685", "https://data.delijn.be/stops/103690"], ["https://data.delijn.be/stops/202472", "https://data.delijn.be/stops/203471"], ["https://data.delijn.be/stops/201192", "https://data.delijn.be/stops/201247"], ["https://data.delijn.be/stops/206519", "https://data.delijn.be/stops/207527"], ["https://data.delijn.be/stops/304232", "https://data.delijn.be/stops/304235"], ["https://data.delijn.be/stops/405714", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/106638", "https://data.delijn.be/stops/106647"], ["https://data.delijn.be/stops/301654", "https://data.delijn.be/stops/304498"], ["https://data.delijn.be/stops/404808", "https://data.delijn.be/stops/404809"], ["https://data.delijn.be/stops/202234", "https://data.delijn.be/stops/208890"], ["https://data.delijn.be/stops/507021", "https://data.delijn.be/stops/507024"], ["https://data.delijn.be/stops/301633", "https://data.delijn.be/stops/301638"], ["https://data.delijn.be/stops/304587", "https://data.delijn.be/stops/304613"], ["https://data.delijn.be/stops/206263", "https://data.delijn.be/stops/207005"], ["https://data.delijn.be/stops/402418", "https://data.delijn.be/stops/402419"], ["https://data.delijn.be/stops/300697", "https://data.delijn.be/stops/300698"], ["https://data.delijn.be/stops/508996", "https://data.delijn.be/stops/509594"], ["https://data.delijn.be/stops/408719", "https://data.delijn.be/stops/408720"], ["https://data.delijn.be/stops/205410", "https://data.delijn.be/stops/205798"], ["https://data.delijn.be/stops/101417", "https://data.delijn.be/stops/108812"], ["https://data.delijn.be/stops/104039", "https://data.delijn.be/stops/108513"], ["https://data.delijn.be/stops/408500", "https://data.delijn.be/stops/408526"], ["https://data.delijn.be/stops/506256", "https://data.delijn.be/stops/506259"], ["https://data.delijn.be/stops/403564", "https://data.delijn.be/stops/403565"], ["https://data.delijn.be/stops/409645", "https://data.delijn.be/stops/410167"], ["https://data.delijn.be/stops/404451", "https://data.delijn.be/stops/406742"], ["https://data.delijn.be/stops/406718", "https://data.delijn.be/stops/408280"], ["https://data.delijn.be/stops/405514", "https://data.delijn.be/stops/407787"], ["https://data.delijn.be/stops/304546", "https://data.delijn.be/stops/304606"], ["https://data.delijn.be/stops/502184", "https://data.delijn.be/stops/502189"], ["https://data.delijn.be/stops/102085", "https://data.delijn.be/stops/103990"], ["https://data.delijn.be/stops/402070", "https://data.delijn.be/stops/402339"], ["https://data.delijn.be/stops/208776", "https://data.delijn.be/stops/209364"], ["https://data.delijn.be/stops/300954", "https://data.delijn.be/stops/301943"], ["https://data.delijn.be/stops/500116", "https://data.delijn.be/stops/500117"], ["https://data.delijn.be/stops/304284", "https://data.delijn.be/stops/306137"], ["https://data.delijn.be/stops/102435", "https://data.delijn.be/stops/105928"], ["https://data.delijn.be/stops/501246", "https://data.delijn.be/stops/506768"], ["https://data.delijn.be/stops/407434", "https://data.delijn.be/stops/407444"], ["https://data.delijn.be/stops/303009", "https://data.delijn.be/stops/306099"], ["https://data.delijn.be/stops/302141", "https://data.delijn.be/stops/304133"], ["https://data.delijn.be/stops/302321", "https://data.delijn.be/stops/303448"], ["https://data.delijn.be/stops/403917", "https://data.delijn.be/stops/410257"], ["https://data.delijn.be/stops/105458", "https://data.delijn.be/stops/107205"], ["https://data.delijn.be/stops/200840", "https://data.delijn.be/stops/202796"], ["https://data.delijn.be/stops/206531", "https://data.delijn.be/stops/207530"], ["https://data.delijn.be/stops/504473", "https://data.delijn.be/stops/509447"], ["https://data.delijn.be/stops/106229", "https://data.delijn.be/stops/106230"], ["https://data.delijn.be/stops/204394", "https://data.delijn.be/stops/204396"], ["https://data.delijn.be/stops/202415", "https://data.delijn.be/stops/202416"], ["https://data.delijn.be/stops/201937", "https://data.delijn.be/stops/202449"], ["https://data.delijn.be/stops/207084", "https://data.delijn.be/stops/207410"], ["https://data.delijn.be/stops/400178", "https://data.delijn.be/stops/400367"], ["https://data.delijn.be/stops/502058", "https://data.delijn.be/stops/507041"], ["https://data.delijn.be/stops/304456", "https://data.delijn.be/stops/304460"], ["https://data.delijn.be/stops/305295", "https://data.delijn.be/stops/305889"], ["https://data.delijn.be/stops/109031", "https://data.delijn.be/stops/109032"], ["https://data.delijn.be/stops/303381", "https://data.delijn.be/stops/303382"], ["https://data.delijn.be/stops/307967", "https://data.delijn.be/stops/307971"], ["https://data.delijn.be/stops/405474", "https://data.delijn.be/stops/407568"], ["https://data.delijn.be/stops/103545", "https://data.delijn.be/stops/103550"], ["https://data.delijn.be/stops/400118", "https://data.delijn.be/stops/400119"], ["https://data.delijn.be/stops/503049", "https://data.delijn.be/stops/508051"], ["https://data.delijn.be/stops/403757", "https://data.delijn.be/stops/403763"], ["https://data.delijn.be/stops/304647", "https://data.delijn.be/stops/304648"], ["https://data.delijn.be/stops/504849", "https://data.delijn.be/stops/504948"], ["https://data.delijn.be/stops/303469", "https://data.delijn.be/stops/303510"], ["https://data.delijn.be/stops/401518", "https://data.delijn.be/stops/403882"], ["https://data.delijn.be/stops/403399", "https://data.delijn.be/stops/404980"], ["https://data.delijn.be/stops/300593", "https://data.delijn.be/stops/300595"], ["https://data.delijn.be/stops/104739", "https://data.delijn.be/stops/104757"], ["https://data.delijn.be/stops/208044", "https://data.delijn.be/stops/209082"], ["https://data.delijn.be/stops/302664", "https://data.delijn.be/stops/302666"], ["https://data.delijn.be/stops/403256", "https://data.delijn.be/stops/403466"], ["https://data.delijn.be/stops/206340", "https://data.delijn.be/stops/207713"], ["https://data.delijn.be/stops/108390", "https://data.delijn.be/stops/108391"], ["https://data.delijn.be/stops/200689", "https://data.delijn.be/stops/201735"], ["https://data.delijn.be/stops/204822", "https://data.delijn.be/stops/205503"], ["https://data.delijn.be/stops/300564", "https://data.delijn.be/stops/308897"], ["https://data.delijn.be/stops/302006", "https://data.delijn.be/stops/303184"], ["https://data.delijn.be/stops/206444", "https://data.delijn.be/stops/207444"], ["https://data.delijn.be/stops/502175", "https://data.delijn.be/stops/507181"], ["https://data.delijn.be/stops/201523", "https://data.delijn.be/stops/201524"], ["https://data.delijn.be/stops/405754", "https://data.delijn.be/stops/409258"], ["https://data.delijn.be/stops/105106", "https://data.delijn.be/stops/105107"], ["https://data.delijn.be/stops/107363", "https://data.delijn.be/stops/107364"], ["https://data.delijn.be/stops/300558", "https://data.delijn.be/stops/300613"], ["https://data.delijn.be/stops/502119", "https://data.delijn.be/stops/507752"], ["https://data.delijn.be/stops/301909", "https://data.delijn.be/stops/306259"], ["https://data.delijn.be/stops/406597", "https://data.delijn.be/stops/406645"], ["https://data.delijn.be/stops/404430", "https://data.delijn.be/stops/404515"], ["https://data.delijn.be/stops/300701", "https://data.delijn.be/stops/306944"], ["https://data.delijn.be/stops/108815", "https://data.delijn.be/stops/109150"], ["https://data.delijn.be/stops/503816", "https://data.delijn.be/stops/505259"], ["https://data.delijn.be/stops/307321", "https://data.delijn.be/stops/307323"], ["https://data.delijn.be/stops/505408", "https://data.delijn.be/stops/508041"], ["https://data.delijn.be/stops/102186", "https://data.delijn.be/stops/104271"], ["https://data.delijn.be/stops/508557", "https://data.delijn.be/stops/509817"], ["https://data.delijn.be/stops/508396", "https://data.delijn.be/stops/508409"], ["https://data.delijn.be/stops/300513", "https://data.delijn.be/stops/300539"], ["https://data.delijn.be/stops/208676", "https://data.delijn.be/stops/208710"], ["https://data.delijn.be/stops/403409", "https://data.delijn.be/stops/403417"], ["https://data.delijn.be/stops/300781", "https://data.delijn.be/stops/300787"], ["https://data.delijn.be/stops/109156", "https://data.delijn.be/stops/109232"], ["https://data.delijn.be/stops/502009", "https://data.delijn.be/stops/507746"], ["https://data.delijn.be/stops/305150", "https://data.delijn.be/stops/305176"], ["https://data.delijn.be/stops/207773", "https://data.delijn.be/stops/208190"], ["https://data.delijn.be/stops/105511", "https://data.delijn.be/stops/105512"], ["https://data.delijn.be/stops/106908", "https://data.delijn.be/stops/107258"], ["https://data.delijn.be/stops/200927", "https://data.delijn.be/stops/202229"], ["https://data.delijn.be/stops/306165", "https://data.delijn.be/stops/308545"], ["https://data.delijn.be/stops/106730", "https://data.delijn.be/stops/106731"], ["https://data.delijn.be/stops/108292", "https://data.delijn.be/stops/108293"], ["https://data.delijn.be/stops/407600", "https://data.delijn.be/stops/407698"], ["https://data.delijn.be/stops/303190", "https://data.delijn.be/stops/303193"], ["https://data.delijn.be/stops/501181", "https://data.delijn.be/stops/506675"], ["https://data.delijn.be/stops/303064", "https://data.delijn.be/stops/304464"], ["https://data.delijn.be/stops/305241", "https://data.delijn.be/stops/305250"], ["https://data.delijn.be/stops/210008", "https://data.delijn.be/stops/211854"], ["https://data.delijn.be/stops/206461", "https://data.delijn.be/stops/207461"], ["https://data.delijn.be/stops/301903", "https://data.delijn.be/stops/306251"], ["https://data.delijn.be/stops/503100", "https://data.delijn.be/stops/508424"], ["https://data.delijn.be/stops/108959", "https://data.delijn.be/stops/108963"], ["https://data.delijn.be/stops/204767", "https://data.delijn.be/stops/205432"], ["https://data.delijn.be/stops/106151", "https://data.delijn.be/stops/106153"], ["https://data.delijn.be/stops/503673", "https://data.delijn.be/stops/505258"], ["https://data.delijn.be/stops/505258", "https://data.delijn.be/stops/505968"], ["https://data.delijn.be/stops/207987", "https://data.delijn.be/stops/207994"], ["https://data.delijn.be/stops/101614", "https://data.delijn.be/stops/101730"], ["https://data.delijn.be/stops/204423", "https://data.delijn.be/stops/205422"], ["https://data.delijn.be/stops/105707", "https://data.delijn.be/stops/105712"], ["https://data.delijn.be/stops/207467", "https://data.delijn.be/stops/207825"], ["https://data.delijn.be/stops/203041", "https://data.delijn.be/stops/203686"], ["https://data.delijn.be/stops/501031", "https://data.delijn.be/stops/501485"], ["https://data.delijn.be/stops/108317", "https://data.delijn.be/stops/108318"], ["https://data.delijn.be/stops/304057", "https://data.delijn.be/stops/304058"], ["https://data.delijn.be/stops/305135", "https://data.delijn.be/stops/305143"], ["https://data.delijn.be/stops/303424", "https://data.delijn.be/stops/303429"], ["https://data.delijn.be/stops/302251", "https://data.delijn.be/stops/306379"], ["https://data.delijn.be/stops/101395", "https://data.delijn.be/stops/104256"], ["https://data.delijn.be/stops/207411", "https://data.delijn.be/stops/207600"], ["https://data.delijn.be/stops/509001", "https://data.delijn.be/stops/509866"], ["https://data.delijn.be/stops/409070", "https://data.delijn.be/stops/409071"], ["https://data.delijn.be/stops/405306", "https://data.delijn.be/stops/407127"], ["https://data.delijn.be/stops/306802", "https://data.delijn.be/stops/307732"], ["https://data.delijn.be/stops/405039", "https://data.delijn.be/stops/405073"], ["https://data.delijn.be/stops/103134", "https://data.delijn.be/stops/107107"], ["https://data.delijn.be/stops/101756", "https://data.delijn.be/stops/105325"], ["https://data.delijn.be/stops/204432", "https://data.delijn.be/stops/205433"], ["https://data.delijn.be/stops/401520", "https://data.delijn.be/stops/401521"], ["https://data.delijn.be/stops/303369", "https://data.delijn.be/stops/303370"], ["https://data.delijn.be/stops/204018", "https://data.delijn.be/stops/205798"], ["https://data.delijn.be/stops/400252", "https://data.delijn.be/stops/400335"], ["https://data.delijn.be/stops/109342", "https://data.delijn.be/stops/109344"], ["https://data.delijn.be/stops/207474", "https://data.delijn.be/stops/207496"], ["https://data.delijn.be/stops/501529", "https://data.delijn.be/stops/501532"], ["https://data.delijn.be/stops/407843", "https://data.delijn.be/stops/408168"], ["https://data.delijn.be/stops/208625", "https://data.delijn.be/stops/218020"], ["https://data.delijn.be/stops/208956", "https://data.delijn.be/stops/209707"], ["https://data.delijn.be/stops/108409", "https://data.delijn.be/stops/108412"], ["https://data.delijn.be/stops/300202", "https://data.delijn.be/stops/304786"], ["https://data.delijn.be/stops/102409", "https://data.delijn.be/stops/109081"], ["https://data.delijn.be/stops/103850", "https://data.delijn.be/stops/108360"], ["https://data.delijn.be/stops/107498", "https://data.delijn.be/stops/107502"], ["https://data.delijn.be/stops/402176", "https://data.delijn.be/stops/406869"], ["https://data.delijn.be/stops/304919", "https://data.delijn.be/stops/305378"], ["https://data.delijn.be/stops/200746", "https://data.delijn.be/stops/208328"], ["https://data.delijn.be/stops/405799", "https://data.delijn.be/stops/405854"], ["https://data.delijn.be/stops/200362", "https://data.delijn.be/stops/201362"], ["https://data.delijn.be/stops/105447", "https://data.delijn.be/stops/105450"], ["https://data.delijn.be/stops/108537", "https://data.delijn.be/stops/108616"], ["https://data.delijn.be/stops/208000", "https://data.delijn.be/stops/208023"], ["https://data.delijn.be/stops/504015", "https://data.delijn.be/stops/505298"], ["https://data.delijn.be/stops/200588", "https://data.delijn.be/stops/200996"], ["https://data.delijn.be/stops/203104", "https://data.delijn.be/stops/203105"], ["https://data.delijn.be/stops/203263", "https://data.delijn.be/stops/203264"], ["https://data.delijn.be/stops/502679", "https://data.delijn.be/stops/505054"], ["https://data.delijn.be/stops/406076", "https://data.delijn.be/stops/406077"], ["https://data.delijn.be/stops/403097", "https://data.delijn.be/stops/403512"], ["https://data.delijn.be/stops/301295", "https://data.delijn.be/stops/301968"], ["https://data.delijn.be/stops/305268", "https://data.delijn.be/stops/305330"], ["https://data.delijn.be/stops/301616", "https://data.delijn.be/stops/301669"], ["https://data.delijn.be/stops/204099", "https://data.delijn.be/stops/206407"], ["https://data.delijn.be/stops/402986", "https://data.delijn.be/stops/402988"], ["https://data.delijn.be/stops/401744", "https://data.delijn.be/stops/401746"], ["https://data.delijn.be/stops/202550", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/300234", "https://data.delijn.be/stops/301380"], ["https://data.delijn.be/stops/305585", "https://data.delijn.be/stops/305613"], ["https://data.delijn.be/stops/409067", "https://data.delijn.be/stops/409143"], ["https://data.delijn.be/stops/101658", "https://data.delijn.be/stops/102442"], ["https://data.delijn.be/stops/504575", "https://data.delijn.be/stops/504578"], ["https://data.delijn.be/stops/301400", "https://data.delijn.be/stops/301403"], ["https://data.delijn.be/stops/109845", "https://data.delijn.be/stops/109847"], ["https://data.delijn.be/stops/501093", "https://data.delijn.be/stops/505148"], ["https://data.delijn.be/stops/305540", "https://data.delijn.be/stops/308686"], ["https://data.delijn.be/stops/206902", "https://data.delijn.be/stops/216001"], ["https://data.delijn.be/stops/405187", "https://data.delijn.be/stops/405246"], ["https://data.delijn.be/stops/502745", "https://data.delijn.be/stops/505068"], ["https://data.delijn.be/stops/101822", "https://data.delijn.be/stops/102389"], ["https://data.delijn.be/stops/101082", "https://data.delijn.be/stops/101087"], ["https://data.delijn.be/stops/105195", "https://data.delijn.be/stops/105210"], ["https://data.delijn.be/stops/304251", "https://data.delijn.be/stops/304287"], ["https://data.delijn.be/stops/302535", "https://data.delijn.be/stops/303381"], ["https://data.delijn.be/stops/400571", "https://data.delijn.be/stops/404058"], ["https://data.delijn.be/stops/105781", "https://data.delijn.be/stops/105784"], ["https://data.delijn.be/stops/305775", "https://data.delijn.be/stops/305794"], ["https://data.delijn.be/stops/303166", "https://data.delijn.be/stops/303167"], ["https://data.delijn.be/stops/101641", "https://data.delijn.be/stops/101642"], ["https://data.delijn.be/stops/302422", "https://data.delijn.be/stops/302444"], ["https://data.delijn.be/stops/505175", "https://data.delijn.be/stops/509642"], ["https://data.delijn.be/stops/200940", "https://data.delijn.be/stops/203705"], ["https://data.delijn.be/stops/101781", "https://data.delijn.be/stops/103755"], ["https://data.delijn.be/stops/200973", "https://data.delijn.be/stops/209456"], ["https://data.delijn.be/stops/209367", "https://data.delijn.be/stops/209368"], ["https://data.delijn.be/stops/303370", "https://data.delijn.be/stops/303386"], ["https://data.delijn.be/stops/409095", "https://data.delijn.be/stops/409116"], ["https://data.delijn.be/stops/506443", "https://data.delijn.be/stops/506482"], ["https://data.delijn.be/stops/502148", "https://data.delijn.be/stops/507108"], ["https://data.delijn.be/stops/206792", "https://data.delijn.be/stops/207628"], ["https://data.delijn.be/stops/102705", "https://data.delijn.be/stops/104855"], ["https://data.delijn.be/stops/308892", "https://data.delijn.be/stops/308893"], ["https://data.delijn.be/stops/301870", "https://data.delijn.be/stops/301876"], ["https://data.delijn.be/stops/501068", "https://data.delijn.be/stops/501595"], ["https://data.delijn.be/stops/503595", "https://data.delijn.be/stops/508219"], ["https://data.delijn.be/stops/307567", "https://data.delijn.be/stops/307764"], ["https://data.delijn.be/stops/504970", "https://data.delijn.be/stops/509970"], ["https://data.delijn.be/stops/407057", "https://data.delijn.be/stops/407076"], ["https://data.delijn.be/stops/401364", "https://data.delijn.be/stops/401365"], ["https://data.delijn.be/stops/504574", "https://data.delijn.be/stops/509574"], ["https://data.delijn.be/stops/301393", "https://data.delijn.be/stops/306150"], ["https://data.delijn.be/stops/406853", "https://data.delijn.be/stops/406855"], ["https://data.delijn.be/stops/403075", "https://data.delijn.be/stops/403565"], ["https://data.delijn.be/stops/300829", "https://data.delijn.be/stops/306969"], ["https://data.delijn.be/stops/404748", "https://data.delijn.be/stops/404945"], ["https://data.delijn.be/stops/501431", "https://data.delijn.be/stops/506456"], ["https://data.delijn.be/stops/403056", "https://data.delijn.be/stops/403057"], ["https://data.delijn.be/stops/201825", "https://data.delijn.be/stops/203309"], ["https://data.delijn.be/stops/107305", "https://data.delijn.be/stops/107310"], ["https://data.delijn.be/stops/301532", "https://data.delijn.be/stops/301542"], ["https://data.delijn.be/stops/303452", "https://data.delijn.be/stops/307063"], ["https://data.delijn.be/stops/107931", "https://data.delijn.be/stops/308810"], ["https://data.delijn.be/stops/408111", "https://data.delijn.be/stops/408119"], ["https://data.delijn.be/stops/305565", "https://data.delijn.be/stops/306093"], ["https://data.delijn.be/stops/508691", "https://data.delijn.be/stops/508699"], ["https://data.delijn.be/stops/500603", "https://data.delijn.be/stops/501533"], ["https://data.delijn.be/stops/105551", "https://data.delijn.be/stops/106023"], ["https://data.delijn.be/stops/103254", "https://data.delijn.be/stops/105715"], ["https://data.delijn.be/stops/200581", "https://data.delijn.be/stops/201580"], ["https://data.delijn.be/stops/105043", "https://data.delijn.be/stops/105127"], ["https://data.delijn.be/stops/103046", "https://data.delijn.be/stops/108555"], ["https://data.delijn.be/stops/304736", "https://data.delijn.be/stops/304750"], ["https://data.delijn.be/stops/206522", "https://data.delijn.be/stops/207002"], ["https://data.delijn.be/stops/203989", "https://data.delijn.be/stops/203991"], ["https://data.delijn.be/stops/204583", "https://data.delijn.be/stops/205595"], ["https://data.delijn.be/stops/304222", "https://data.delijn.be/stops/307939"], ["https://data.delijn.be/stops/102880", "https://data.delijn.be/stops/108030"], ["https://data.delijn.be/stops/400229", "https://data.delijn.be/stops/400241"], ["https://data.delijn.be/stops/408855", "https://data.delijn.be/stops/408868"], ["https://data.delijn.be/stops/201716", "https://data.delijn.be/stops/202123"], ["https://data.delijn.be/stops/106611", "https://data.delijn.be/stops/106613"], ["https://data.delijn.be/stops/201656", "https://data.delijn.be/stops/202144"], ["https://data.delijn.be/stops/503238", "https://data.delijn.be/stops/508243"], ["https://data.delijn.be/stops/404738", "https://data.delijn.be/stops/404749"], ["https://data.delijn.be/stops/403901", "https://data.delijn.be/stops/308752"], ["https://data.delijn.be/stops/506742", "https://data.delijn.be/stops/510014"], ["https://data.delijn.be/stops/502436", "https://data.delijn.be/stops/507436"], ["https://data.delijn.be/stops/400315", "https://data.delijn.be/stops/402764"], ["https://data.delijn.be/stops/500929", "https://data.delijn.be/stops/506629"], ["https://data.delijn.be/stops/204676", "https://data.delijn.be/stops/205674"], ["https://data.delijn.be/stops/208344", "https://data.delijn.be/stops/208787"], ["https://data.delijn.be/stops/408886", "https://data.delijn.be/stops/408913"], ["https://data.delijn.be/stops/404160", "https://data.delijn.be/stops/404161"], ["https://data.delijn.be/stops/304018", "https://data.delijn.be/stops/304039"], ["https://data.delijn.be/stops/407296", "https://data.delijn.be/stops/407297"], ["https://data.delijn.be/stops/101611", "https://data.delijn.be/stops/101614"], ["https://data.delijn.be/stops/304902", "https://data.delijn.be/stops/304906"], ["https://data.delijn.be/stops/207498", "https://data.delijn.be/stops/207506"], ["https://data.delijn.be/stops/200371", "https://data.delijn.be/stops/201446"], ["https://data.delijn.be/stops/406466", "https://data.delijn.be/stops/406493"], ["https://data.delijn.be/stops/402409", "https://data.delijn.be/stops/406946"], ["https://data.delijn.be/stops/507034", "https://data.delijn.be/stops/507618"], ["https://data.delijn.be/stops/403910", "https://data.delijn.be/stops/406007"], ["https://data.delijn.be/stops/208616", "https://data.delijn.be/stops/209616"], ["https://data.delijn.be/stops/507498", "https://data.delijn.be/stops/507517"], ["https://data.delijn.be/stops/408961", "https://data.delijn.be/stops/408962"], ["https://data.delijn.be/stops/106222", "https://data.delijn.be/stops/106223"], ["https://data.delijn.be/stops/201044", "https://data.delijn.be/stops/202488"], ["https://data.delijn.be/stops/407642", "https://data.delijn.be/stops/407764"], ["https://data.delijn.be/stops/202339", "https://data.delijn.be/stops/202483"], ["https://data.delijn.be/stops/201663", "https://data.delijn.be/stops/201836"], ["https://data.delijn.be/stops/403328", "https://data.delijn.be/stops/403867"], ["https://data.delijn.be/stops/101202", "https://data.delijn.be/stops/101661"], ["https://data.delijn.be/stops/504881", "https://data.delijn.be/stops/505691"], ["https://data.delijn.be/stops/400052", "https://data.delijn.be/stops/400109"], ["https://data.delijn.be/stops/402210", "https://data.delijn.be/stops/405571"], ["https://data.delijn.be/stops/206660", "https://data.delijn.be/stops/207660"], ["https://data.delijn.be/stops/404382", "https://data.delijn.be/stops/404396"], ["https://data.delijn.be/stops/300141", "https://data.delijn.be/stops/306806"], ["https://data.delijn.be/stops/206920", "https://data.delijn.be/stops/207920"], ["https://data.delijn.be/stops/302629", "https://data.delijn.be/stops/302630"], ["https://data.delijn.be/stops/505985", "https://data.delijn.be/stops/509142"], ["https://data.delijn.be/stops/201558", "https://data.delijn.be/stops/502685"], ["https://data.delijn.be/stops/200255", "https://data.delijn.be/stops/201255"], ["https://data.delijn.be/stops/101669", "https://data.delijn.be/stops/406770"], ["https://data.delijn.be/stops/200755", "https://data.delijn.be/stops/209305"], ["https://data.delijn.be/stops/504273", "https://data.delijn.be/stops/509272"], ["https://data.delijn.be/stops/404510", "https://data.delijn.be/stops/408165"], ["https://data.delijn.be/stops/407376", "https://data.delijn.be/stops/407386"], ["https://data.delijn.be/stops/406352", "https://data.delijn.be/stops/406354"], ["https://data.delijn.be/stops/204728", "https://data.delijn.be/stops/205729"], ["https://data.delijn.be/stops/307641", "https://data.delijn.be/stops/307643"], ["https://data.delijn.be/stops/305164", "https://data.delijn.be/stops/306914"], ["https://data.delijn.be/stops/403014", "https://data.delijn.be/stops/403015"], ["https://data.delijn.be/stops/409621", "https://data.delijn.be/stops/409632"], ["https://data.delijn.be/stops/206007", "https://data.delijn.be/stops/207006"], ["https://data.delijn.be/stops/202031", "https://data.delijn.be/stops/203031"], ["https://data.delijn.be/stops/503098", "https://data.delijn.be/stops/508098"], ["https://data.delijn.be/stops/403207", "https://data.delijn.be/stops/403209"], ["https://data.delijn.be/stops/406995", "https://data.delijn.be/stops/409731"], ["https://data.delijn.be/stops/504144", "https://data.delijn.be/stops/509137"], ["https://data.delijn.be/stops/207792", "https://data.delijn.be/stops/208764"], ["https://data.delijn.be/stops/108248", "https://data.delijn.be/stops/109557"], ["https://data.delijn.be/stops/202789", "https://data.delijn.be/stops/203788"], ["https://data.delijn.be/stops/301488", "https://data.delijn.be/stops/301489"], ["https://data.delijn.be/stops/501523", "https://data.delijn.be/stops/509898"], ["https://data.delijn.be/stops/402170", "https://data.delijn.be/stops/402224"], ["https://data.delijn.be/stops/308073", "https://data.delijn.be/stops/308075"], ["https://data.delijn.be/stops/200456", "https://data.delijn.be/stops/201652"], ["https://data.delijn.be/stops/208769", "https://data.delijn.be/stops/209769"], ["https://data.delijn.be/stops/101137", "https://data.delijn.be/stops/108415"], ["https://data.delijn.be/stops/504285", "https://data.delijn.be/stops/509617"], ["https://data.delijn.be/stops/402099", "https://data.delijn.be/stops/402208"], ["https://data.delijn.be/stops/502546", "https://data.delijn.be/stops/507541"], ["https://data.delijn.be/stops/300168", "https://data.delijn.be/stops/300170"], ["https://data.delijn.be/stops/502520", "https://data.delijn.be/stops/507520"], ["https://data.delijn.be/stops/302278", "https://data.delijn.be/stops/307068"], ["https://data.delijn.be/stops/207569", "https://data.delijn.be/stops/207594"], ["https://data.delijn.be/stops/409395", "https://data.delijn.be/stops/409404"], ["https://data.delijn.be/stops/504232", "https://data.delijn.be/stops/504242"], ["https://data.delijn.be/stops/405703", "https://data.delijn.be/stops/405715"], ["https://data.delijn.be/stops/409588", "https://data.delijn.be/stops/410047"], ["https://data.delijn.be/stops/204979", "https://data.delijn.be/stops/208161"], ["https://data.delijn.be/stops/206073", "https://data.delijn.be/stops/207052"], ["https://data.delijn.be/stops/402049", "https://data.delijn.be/stops/402088"], ["https://data.delijn.be/stops/305666", "https://data.delijn.be/stops/305740"], ["https://data.delijn.be/stops/103028", "https://data.delijn.be/stops/107477"], ["https://data.delijn.be/stops/109837", "https://data.delijn.be/stops/405881"], ["https://data.delijn.be/stops/205533", "https://data.delijn.be/stops/205545"], ["https://data.delijn.be/stops/503560", "https://data.delijn.be/stops/505845"], ["https://data.delijn.be/stops/206603", "https://data.delijn.be/stops/207982"], ["https://data.delijn.be/stops/405661", "https://data.delijn.be/stops/301239"], ["https://data.delijn.be/stops/403241", "https://data.delijn.be/stops/403243"], ["https://data.delijn.be/stops/207751", "https://data.delijn.be/stops/207781"], ["https://data.delijn.be/stops/202567", "https://data.delijn.be/stops/202612"], ["https://data.delijn.be/stops/301861", "https://data.delijn.be/stops/301865"], ["https://data.delijn.be/stops/206013", "https://data.delijn.be/stops/207386"], ["https://data.delijn.be/stops/101361", "https://data.delijn.be/stops/102193"], ["https://data.delijn.be/stops/401576", "https://data.delijn.be/stops/402280"], ["https://data.delijn.be/stops/503498", "https://data.delijn.be/stops/508498"], ["https://data.delijn.be/stops/106093", "https://data.delijn.be/stops/108474"], ["https://data.delijn.be/stops/504115", "https://data.delijn.be/stops/509116"], ["https://data.delijn.be/stops/408214", "https://data.delijn.be/stops/408397"], ["https://data.delijn.be/stops/510008", "https://data.delijn.be/stops/510011"], ["https://data.delijn.be/stops/106173", "https://data.delijn.be/stops/106175"], ["https://data.delijn.be/stops/407601", "https://data.delijn.be/stops/407698"], ["https://data.delijn.be/stops/206788", "https://data.delijn.be/stops/206790"], ["https://data.delijn.be/stops/506148", "https://data.delijn.be/stops/506164"], ["https://data.delijn.be/stops/506635", "https://data.delijn.be/stops/506772"], ["https://data.delijn.be/stops/508592", "https://data.delijn.be/stops/509883"], ["https://data.delijn.be/stops/103731", "https://data.delijn.be/stops/106319"], ["https://data.delijn.be/stops/305539", "https://data.delijn.be/stops/307185"], ["https://data.delijn.be/stops/301830", "https://data.delijn.be/stops/301847"], ["https://data.delijn.be/stops/107832", "https://data.delijn.be/stops/107836"], ["https://data.delijn.be/stops/303583", "https://data.delijn.be/stops/305910"], ["https://data.delijn.be/stops/207152", "https://data.delijn.be/stops/207503"], ["https://data.delijn.be/stops/407490", "https://data.delijn.be/stops/407570"], ["https://data.delijn.be/stops/207429", "https://data.delijn.be/stops/209693"], ["https://data.delijn.be/stops/502027", "https://data.delijn.be/stops/507027"], ["https://data.delijn.be/stops/304022", "https://data.delijn.be/stops/305442"], ["https://data.delijn.be/stops/209739", "https://data.delijn.be/stops/209744"], ["https://data.delijn.be/stops/208128", "https://data.delijn.be/stops/208129"], ["https://data.delijn.be/stops/205980", "https://data.delijn.be/stops/207723"], ["https://data.delijn.be/stops/209715", "https://data.delijn.be/stops/209716"], ["https://data.delijn.be/stops/503482", "https://data.delijn.be/stops/505986"], ["https://data.delijn.be/stops/300459", "https://data.delijn.be/stops/300470"], ["https://data.delijn.be/stops/505968", "https://data.delijn.be/stops/508670"], ["https://data.delijn.be/stops/303162", "https://data.delijn.be/stops/303179"], ["https://data.delijn.be/stops/201805", "https://data.delijn.be/stops/201817"], ["https://data.delijn.be/stops/207337", "https://data.delijn.be/stops/207747"], ["https://data.delijn.be/stops/405090", "https://data.delijn.be/stops/405109"], ["https://data.delijn.be/stops/210052", "https://data.delijn.be/stops/211052"], ["https://data.delijn.be/stops/502467", "https://data.delijn.be/stops/507467"], ["https://data.delijn.be/stops/308779", "https://data.delijn.be/stops/308780"], ["https://data.delijn.be/stops/201762", "https://data.delijn.be/stops/209266"], ["https://data.delijn.be/stops/106428", "https://data.delijn.be/stops/106429"], ["https://data.delijn.be/stops/504543", "https://data.delijn.be/stops/505164"], ["https://data.delijn.be/stops/105691", "https://data.delijn.be/stops/105694"], ["https://data.delijn.be/stops/407154", "https://data.delijn.be/stops/407166"], ["https://data.delijn.be/stops/102201", "https://data.delijn.be/stops/105942"], ["https://data.delijn.be/stops/303559", "https://data.delijn.be/stops/303562"], ["https://data.delijn.be/stops/103944", "https://data.delijn.be/stops/104752"], ["https://data.delijn.be/stops/505703", "https://data.delijn.be/stops/507544"], ["https://data.delijn.be/stops/301480", "https://data.delijn.be/stops/308705"], ["https://data.delijn.be/stops/106372", "https://data.delijn.be/stops/106374"], ["https://data.delijn.be/stops/300633", "https://data.delijn.be/stops/307221"], ["https://data.delijn.be/stops/303051", "https://data.delijn.be/stops/303064"], ["https://data.delijn.be/stops/308459", "https://data.delijn.be/stops/308461"], ["https://data.delijn.be/stops/108495", "https://data.delijn.be/stops/109089"], ["https://data.delijn.be/stops/507033", "https://data.delijn.be/stops/507081"], ["https://data.delijn.be/stops/505133", "https://data.delijn.be/stops/505135"], ["https://data.delijn.be/stops/407211", "https://data.delijn.be/stops/407217"], ["https://data.delijn.be/stops/304434", "https://data.delijn.be/stops/304445"], ["https://data.delijn.be/stops/200257", "https://data.delijn.be/stops/202550"], ["https://data.delijn.be/stops/203139", "https://data.delijn.be/stops/211849"], ["https://data.delijn.be/stops/106522", "https://data.delijn.be/stops/106526"], ["https://data.delijn.be/stops/404148", "https://data.delijn.be/stops/404278"], ["https://data.delijn.be/stops/303993", "https://data.delijn.be/stops/304736"], ["https://data.delijn.be/stops/103327", "https://data.delijn.be/stops/105097"], ["https://data.delijn.be/stops/403357", "https://data.delijn.be/stops/405635"], ["https://data.delijn.be/stops/208284", "https://data.delijn.be/stops/209285"], ["https://data.delijn.be/stops/307215", "https://data.delijn.be/stops/307217"], ["https://data.delijn.be/stops/503508", "https://data.delijn.be/stops/508508"], ["https://data.delijn.be/stops/501022", "https://data.delijn.be/stops/506022"], ["https://data.delijn.be/stops/208136", "https://data.delijn.be/stops/209136"], ["https://data.delijn.be/stops/201810", "https://data.delijn.be/stops/201830"], ["https://data.delijn.be/stops/503019", "https://data.delijn.be/stops/508020"], ["https://data.delijn.be/stops/109318", "https://data.delijn.be/stops/109319"], ["https://data.delijn.be/stops/101215", "https://data.delijn.be/stops/105770"], ["https://data.delijn.be/stops/200050", "https://data.delijn.be/stops/202934"], ["https://data.delijn.be/stops/106864", "https://data.delijn.be/stops/106865"], ["https://data.delijn.be/stops/307934", "https://data.delijn.be/stops/307935"], ["https://data.delijn.be/stops/101267", "https://data.delijn.be/stops/104877"], ["https://data.delijn.be/stops/302831", "https://data.delijn.be/stops/302836"], ["https://data.delijn.be/stops/102640", "https://data.delijn.be/stops/104118"], ["https://data.delijn.be/stops/207886", "https://data.delijn.be/stops/207887"], ["https://data.delijn.be/stops/505642", "https://data.delijn.be/stops/508895"], ["https://data.delijn.be/stops/200681", "https://data.delijn.be/stops/202809"], ["https://data.delijn.be/stops/502481", "https://data.delijn.be/stops/507481"], ["https://data.delijn.be/stops/204480", "https://data.delijn.be/stops/205480"], ["https://data.delijn.be/stops/503050", "https://data.delijn.be/stops/508050"], ["https://data.delijn.be/stops/108070", "https://data.delijn.be/stops/108210"], ["https://data.delijn.be/stops/302845", "https://data.delijn.be/stops/302847"], ["https://data.delijn.be/stops/200554", "https://data.delijn.be/stops/201554"], ["https://data.delijn.be/stops/305438", "https://data.delijn.be/stops/305439"], ["https://data.delijn.be/stops/207596", "https://data.delijn.be/stops/209665"], ["https://data.delijn.be/stops/307295", "https://data.delijn.be/stops/308295"], ["https://data.delijn.be/stops/202865", "https://data.delijn.be/stops/203865"], ["https://data.delijn.be/stops/403164", "https://data.delijn.be/stops/403268"], ["https://data.delijn.be/stops/502455", "https://data.delijn.be/stops/507662"], ["https://data.delijn.be/stops/504562", "https://data.delijn.be/stops/509243"], ["https://data.delijn.be/stops/404212", "https://data.delijn.be/stops/404228"], ["https://data.delijn.be/stops/109880", "https://data.delijn.be/stops/109881"], ["https://data.delijn.be/stops/400429", "https://data.delijn.be/stops/406477"], ["https://data.delijn.be/stops/108553", "https://data.delijn.be/stops/109595"], ["https://data.delijn.be/stops/207133", "https://data.delijn.be/stops/207512"], ["https://data.delijn.be/stops/203263", "https://data.delijn.be/stops/208852"], ["https://data.delijn.be/stops/202529", "https://data.delijn.be/stops/203530"], ["https://data.delijn.be/stops/504115", "https://data.delijn.be/stops/504116"], ["https://data.delijn.be/stops/304069", "https://data.delijn.be/stops/304089"], ["https://data.delijn.be/stops/305845", "https://data.delijn.be/stops/305897"], ["https://data.delijn.be/stops/201927", "https://data.delijn.be/stops/207928"], ["https://data.delijn.be/stops/202497", "https://data.delijn.be/stops/203496"], ["https://data.delijn.be/stops/101086", "https://data.delijn.be/stops/105979"], ["https://data.delijn.be/stops/204119", "https://data.delijn.be/stops/204666"], ["https://data.delijn.be/stops/207805", "https://data.delijn.be/stops/306078"], ["https://data.delijn.be/stops/404850", "https://data.delijn.be/stops/404880"], ["https://data.delijn.be/stops/203401", "https://data.delijn.be/stops/203402"], ["https://data.delijn.be/stops/108656", "https://data.delijn.be/stops/306628"], ["https://data.delijn.be/stops/206608", "https://data.delijn.be/stops/207199"], ["https://data.delijn.be/stops/306621", "https://data.delijn.be/stops/306758"], ["https://data.delijn.be/stops/206607", "https://data.delijn.be/stops/207607"], ["https://data.delijn.be/stops/209698", "https://data.delijn.be/stops/218030"], ["https://data.delijn.be/stops/105152", "https://data.delijn.be/stops/105154"], ["https://data.delijn.be/stops/409358", "https://data.delijn.be/stops/409390"], ["https://data.delijn.be/stops/502188", "https://data.delijn.be/stops/505010"], ["https://data.delijn.be/stops/306830", "https://data.delijn.be/stops/307849"], ["https://data.delijn.be/stops/204044", "https://data.delijn.be/stops/205045"], ["https://data.delijn.be/stops/202815", "https://data.delijn.be/stops/203883"], ["https://data.delijn.be/stops/303697", "https://data.delijn.be/stops/305390"], ["https://data.delijn.be/stops/402790", "https://data.delijn.be/stops/402797"], ["https://data.delijn.be/stops/208715", "https://data.delijn.be/stops/209715"], ["https://data.delijn.be/stops/403691", "https://data.delijn.be/stops/409310"], ["https://data.delijn.be/stops/302878", "https://data.delijn.be/stops/302893"], ["https://data.delijn.be/stops/402809", "https://data.delijn.be/stops/409021"], ["https://data.delijn.be/stops/501211", "https://data.delijn.be/stops/506211"], ["https://data.delijn.be/stops/302974", "https://data.delijn.be/stops/302998"], ["https://data.delijn.be/stops/301937", "https://data.delijn.be/stops/302153"], ["https://data.delijn.be/stops/504645", "https://data.delijn.be/stops/505119"], ["https://data.delijn.be/stops/304403", "https://data.delijn.be/stops/304406"], ["https://data.delijn.be/stops/407894", "https://data.delijn.be/stops/303262"], ["https://data.delijn.be/stops/502676", "https://data.delijn.be/stops/507676"], ["https://data.delijn.be/stops/104793", "https://data.delijn.be/stops/107637"], ["https://data.delijn.be/stops/509398", "https://data.delijn.be/stops/509444"], ["https://data.delijn.be/stops/501606", "https://data.delijn.be/stops/506606"], ["https://data.delijn.be/stops/305896", "https://data.delijn.be/stops/305897"], ["https://data.delijn.be/stops/108812", "https://data.delijn.be/stops/108813"], ["https://data.delijn.be/stops/107090", "https://data.delijn.be/stops/108780"], ["https://data.delijn.be/stops/404252", "https://data.delijn.be/stops/404314"], ["https://data.delijn.be/stops/306399", "https://data.delijn.be/stops/306400"], ["https://data.delijn.be/stops/300508", "https://data.delijn.be/stops/305523"], ["https://data.delijn.be/stops/400251", "https://data.delijn.be/stops/400421"], ["https://data.delijn.be/stops/204723", "https://data.delijn.be/stops/204724"], ["https://data.delijn.be/stops/407025", "https://data.delijn.be/stops/407965"], ["https://data.delijn.be/stops/201013", "https://data.delijn.be/stops/201350"], ["https://data.delijn.be/stops/104377", "https://data.delijn.be/stops/104378"], ["https://data.delijn.be/stops/201646", "https://data.delijn.be/stops/202865"], ["https://data.delijn.be/stops/505103", "https://data.delijn.be/stops/509358"], ["https://data.delijn.be/stops/200984", "https://data.delijn.be/stops/201030"], ["https://data.delijn.be/stops/101400", "https://data.delijn.be/stops/101402"], ["https://data.delijn.be/stops/301540", "https://data.delijn.be/stops/301543"], ["https://data.delijn.be/stops/308288", "https://data.delijn.be/stops/308289"], ["https://data.delijn.be/stops/203383", "https://data.delijn.be/stops/203384"], ["https://data.delijn.be/stops/102691", "https://data.delijn.be/stops/108625"], ["https://data.delijn.be/stops/204706", "https://data.delijn.be/stops/205706"], ["https://data.delijn.be/stops/402756", "https://data.delijn.be/stops/402776"], ["https://data.delijn.be/stops/206652", "https://data.delijn.be/stops/207128"], ["https://data.delijn.be/stops/306345", "https://data.delijn.be/stops/308697"], ["https://data.delijn.be/stops/105712", "https://data.delijn.be/stops/106077"], ["https://data.delijn.be/stops/202915", "https://data.delijn.be/stops/211097"], ["https://data.delijn.be/stops/209485", "https://data.delijn.be/stops/209488"], ["https://data.delijn.be/stops/305612", "https://data.delijn.be/stops/305615"], ["https://data.delijn.be/stops/505057", "https://data.delijn.be/stops/507761"], ["https://data.delijn.be/stops/106069", "https://data.delijn.be/stops/106071"], ["https://data.delijn.be/stops/302318", "https://data.delijn.be/stops/304784"], ["https://data.delijn.be/stops/207245", "https://data.delijn.be/stops/207403"], ["https://data.delijn.be/stops/402705", "https://data.delijn.be/stops/402865"], ["https://data.delijn.be/stops/401850", "https://data.delijn.be/stops/401851"], ["https://data.delijn.be/stops/508158", "https://data.delijn.be/stops/508166"], ["https://data.delijn.be/stops/107202", "https://data.delijn.be/stops/107606"], ["https://data.delijn.be/stops/304428", "https://data.delijn.be/stops/307371"], ["https://data.delijn.be/stops/208386", "https://data.delijn.be/stops/208419"], ["https://data.delijn.be/stops/503468", "https://data.delijn.be/stops/508456"], ["https://data.delijn.be/stops/102009", "https://data.delijn.be/stops/105978"], ["https://data.delijn.be/stops/209215", "https://data.delijn.be/stops/209428"], ["https://data.delijn.be/stops/503727", "https://data.delijn.be/stops/509872"], ["https://data.delijn.be/stops/400171", "https://data.delijn.be/stops/407372"], ["https://data.delijn.be/stops/502199", "https://data.delijn.be/stops/507631"], ["https://data.delijn.be/stops/409624", "https://data.delijn.be/stops/409625"], ["https://data.delijn.be/stops/308143", "https://data.delijn.be/stops/308145"], ["https://data.delijn.be/stops/505109", "https://data.delijn.be/stops/509518"], ["https://data.delijn.be/stops/301232", "https://data.delijn.be/stops/305949"], ["https://data.delijn.be/stops/503182", "https://data.delijn.be/stops/508180"], ["https://data.delijn.be/stops/507201", "https://data.delijn.be/stops/590010"], ["https://data.delijn.be/stops/505251", "https://data.delijn.be/stops/508925"], ["https://data.delijn.be/stops/503185", "https://data.delijn.be/stops/508187"], ["https://data.delijn.be/stops/101835", "https://data.delijn.be/stops/105200"], ["https://data.delijn.be/stops/405344", "https://data.delijn.be/stops/308734"], ["https://data.delijn.be/stops/400040", "https://data.delijn.be/stops/400351"], ["https://data.delijn.be/stops/504234", "https://data.delijn.be/stops/505842"], ["https://data.delijn.be/stops/208450", "https://data.delijn.be/stops/208520"], ["https://data.delijn.be/stops/301743", "https://data.delijn.be/stops/301792"], ["https://data.delijn.be/stops/202238", "https://data.delijn.be/stops/202239"], ["https://data.delijn.be/stops/403950", "https://data.delijn.be/stops/404021"], ["https://data.delijn.be/stops/204434", "https://data.delijn.be/stops/205434"], ["https://data.delijn.be/stops/107141", "https://data.delijn.be/stops/107143"], ["https://data.delijn.be/stops/401851", "https://data.delijn.be/stops/406348"], ["https://data.delijn.be/stops/203739", "https://data.delijn.be/stops/209743"], ["https://data.delijn.be/stops/102894", "https://data.delijn.be/stops/103105"], ["https://data.delijn.be/stops/107961", "https://data.delijn.be/stops/108028"], ["https://data.delijn.be/stops/109087", "https://data.delijn.be/stops/109866"], ["https://data.delijn.be/stops/502126", "https://data.delijn.be/stops/507167"], ["https://data.delijn.be/stops/406447", "https://data.delijn.be/stops/406746"], ["https://data.delijn.be/stops/400552", "https://data.delijn.be/stops/403638"], ["https://data.delijn.be/stops/405436", "https://data.delijn.be/stops/408520"], ["https://data.delijn.be/stops/202495", "https://data.delijn.be/stops/203171"], ["https://data.delijn.be/stops/508227", "https://data.delijn.be/stops/508229"], ["https://data.delijn.be/stops/503998", "https://data.delijn.be/stops/508998"], ["https://data.delijn.be/stops/504505", "https://data.delijn.be/stops/509504"], ["https://data.delijn.be/stops/102456", "https://data.delijn.be/stops/406858"], ["https://data.delijn.be/stops/202217", "https://data.delijn.be/stops/203217"], ["https://data.delijn.be/stops/503033", "https://data.delijn.be/stops/508033"], ["https://data.delijn.be/stops/306067", "https://data.delijn.be/stops/306068"], ["https://data.delijn.be/stops/208336", "https://data.delijn.be/stops/209116"], ["https://data.delijn.be/stops/201868", "https://data.delijn.be/stops/203015"], ["https://data.delijn.be/stops/103931", "https://data.delijn.be/stops/106599"], ["https://data.delijn.be/stops/502623", "https://data.delijn.be/stops/505692"], ["https://data.delijn.be/stops/108332", "https://data.delijn.be/stops/109303"], ["https://data.delijn.be/stops/403756", "https://data.delijn.be/stops/403764"], ["https://data.delijn.be/stops/201004", "https://data.delijn.be/stops/211069"], ["https://data.delijn.be/stops/106735", "https://data.delijn.be/stops/106736"], ["https://data.delijn.be/stops/202264", "https://data.delijn.be/stops/202265"], ["https://data.delijn.be/stops/207437", "https://data.delijn.be/stops/207438"], ["https://data.delijn.be/stops/503446", "https://data.delijn.be/stops/508446"], ["https://data.delijn.be/stops/403480", "https://data.delijn.be/stops/403481"], ["https://data.delijn.be/stops/400911", "https://data.delijn.be/stops/400960"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/107029"], ["https://data.delijn.be/stops/102686", "https://data.delijn.be/stops/105200"], ["https://data.delijn.be/stops/306181", "https://data.delijn.be/stops/307829"], ["https://data.delijn.be/stops/102042", "https://data.delijn.be/stops/206697"], ["https://data.delijn.be/stops/102804", "https://data.delijn.be/stops/104974"], ["https://data.delijn.be/stops/204513", "https://data.delijn.be/stops/205513"], ["https://data.delijn.be/stops/204166", "https://data.delijn.be/stops/204579"], ["https://data.delijn.be/stops/301086", "https://data.delijn.be/stops/301927"], ["https://data.delijn.be/stops/208129", "https://data.delijn.be/stops/209851"], ["https://data.delijn.be/stops/106353", "https://data.delijn.be/stops/106354"], ["https://data.delijn.be/stops/106473", "https://data.delijn.be/stops/109645"], ["https://data.delijn.be/stops/206775", "https://data.delijn.be/stops/206798"], ["https://data.delijn.be/stops/509948", "https://data.delijn.be/stops/509957"], ["https://data.delijn.be/stops/109934", "https://data.delijn.be/stops/109949"], ["https://data.delijn.be/stops/109013", "https://data.delijn.be/stops/109642"], ["https://data.delijn.be/stops/102702", "https://data.delijn.be/stops/105547"], ["https://data.delijn.be/stops/405955", "https://data.delijn.be/stops/405957"], ["https://data.delijn.be/stops/408538", "https://data.delijn.be/stops/408539"], ["https://data.delijn.be/stops/401081", "https://data.delijn.be/stops/401084"], ["https://data.delijn.be/stops/206045", "https://data.delijn.be/stops/207381"], ["https://data.delijn.be/stops/501114", "https://data.delijn.be/stops/501665"], ["https://data.delijn.be/stops/207671", "https://data.delijn.be/stops/209484"], ["https://data.delijn.be/stops/208438", "https://data.delijn.be/stops/218021"], ["https://data.delijn.be/stops/406106", "https://data.delijn.be/stops/406148"], ["https://data.delijn.be/stops/204366", "https://data.delijn.be/stops/205215"], ["https://data.delijn.be/stops/104387", "https://data.delijn.be/stops/104389"], ["https://data.delijn.be/stops/102927", "https://data.delijn.be/stops/103313"], ["https://data.delijn.be/stops/300147", "https://data.delijn.be/stops/306823"], ["https://data.delijn.be/stops/404403", "https://data.delijn.be/stops/404410"], ["https://data.delijn.be/stops/409719", "https://data.delijn.be/stops/409721"], ["https://data.delijn.be/stops/400076", "https://data.delijn.be/stops/407962"], ["https://data.delijn.be/stops/501308", "https://data.delijn.be/stops/501501"], ["https://data.delijn.be/stops/502561", "https://data.delijn.be/stops/507561"], ["https://data.delijn.be/stops/204786", "https://data.delijn.be/stops/214005"], ["https://data.delijn.be/stops/404425", "https://data.delijn.be/stops/404583"], ["https://data.delijn.be/stops/405268", "https://data.delijn.be/stops/405270"], ["https://data.delijn.be/stops/501686", "https://data.delijn.be/stops/504740"], ["https://data.delijn.be/stops/104121", "https://data.delijn.be/stops/108540"], ["https://data.delijn.be/stops/106992", "https://data.delijn.be/stops/106994"], ["https://data.delijn.be/stops/405156", "https://data.delijn.be/stops/405157"], ["https://data.delijn.be/stops/300509", "https://data.delijn.be/stops/300510"], ["https://data.delijn.be/stops/204168", "https://data.delijn.be/stops/205579"], ["https://data.delijn.be/stops/405476", "https://data.delijn.be/stops/406600"], ["https://data.delijn.be/stops/105989", "https://data.delijn.be/stops/105990"], ["https://data.delijn.be/stops/206387", "https://data.delijn.be/stops/207926"], ["https://data.delijn.be/stops/503765", "https://data.delijn.be/stops/508762"], ["https://data.delijn.be/stops/206158", "https://data.delijn.be/stops/207507"], ["https://data.delijn.be/stops/402616", "https://data.delijn.be/stops/402617"], ["https://data.delijn.be/stops/204517", "https://data.delijn.be/stops/205045"], ["https://data.delijn.be/stops/503174", "https://data.delijn.be/stops/503239"], ["https://data.delijn.be/stops/405160", "https://data.delijn.be/stops/405161"], ["https://data.delijn.be/stops/401205", "https://data.delijn.be/stops/401207"], ["https://data.delijn.be/stops/501464", "https://data.delijn.be/stops/506464"], ["https://data.delijn.be/stops/300419", "https://data.delijn.be/stops/300420"], ["https://data.delijn.be/stops/301504", "https://data.delijn.be/stops/305732"], ["https://data.delijn.be/stops/500119", "https://data.delijn.be/stops/505023"], ["https://data.delijn.be/stops/106203", "https://data.delijn.be/stops/106213"], ["https://data.delijn.be/stops/403374", "https://data.delijn.be/stops/404102"], ["https://data.delijn.be/stops/503536", "https://data.delijn.be/stops/503839"], ["https://data.delijn.be/stops/200735", "https://data.delijn.be/stops/202591"], ["https://data.delijn.be/stops/400725", "https://data.delijn.be/stops/400803"], ["https://data.delijn.be/stops/408108", "https://data.delijn.be/stops/408114"], ["https://data.delijn.be/stops/402600", "https://data.delijn.be/stops/402601"], ["https://data.delijn.be/stops/302593", "https://data.delijn.be/stops/302594"], ["https://data.delijn.be/stops/405961", "https://data.delijn.be/stops/308152"], ["https://data.delijn.be/stops/200607", "https://data.delijn.be/stops/201661"], ["https://data.delijn.be/stops/200607", "https://data.delijn.be/stops/504876"], ["https://data.delijn.be/stops/400195", "https://data.delijn.be/stops/403768"], ["https://data.delijn.be/stops/305698", "https://data.delijn.be/stops/305706"], ["https://data.delijn.be/stops/307565", "https://data.delijn.be/stops/307765"], ["https://data.delijn.be/stops/103135", "https://data.delijn.be/stops/105770"], ["https://data.delijn.be/stops/501206", "https://data.delijn.be/stops/501214"], ["https://data.delijn.be/stops/405962", "https://data.delijn.be/stops/405967"], ["https://data.delijn.be/stops/403924", "https://data.delijn.be/stops/403982"], ["https://data.delijn.be/stops/201887", "https://data.delijn.be/stops/204556"], ["https://data.delijn.be/stops/205819", "https://data.delijn.be/stops/205820"], ["https://data.delijn.be/stops/206186", "https://data.delijn.be/stops/206694"], ["https://data.delijn.be/stops/504324", "https://data.delijn.be/stops/509404"], ["https://data.delijn.be/stops/501156", "https://data.delijn.be/stops/506156"], ["https://data.delijn.be/stops/503868", "https://data.delijn.be/stops/503877"], ["https://data.delijn.be/stops/204081", "https://data.delijn.be/stops/205082"], ["https://data.delijn.be/stops/503167", "https://data.delijn.be/stops/508167"], ["https://data.delijn.be/stops/107265", "https://data.delijn.be/stops/107267"], ["https://data.delijn.be/stops/102985", "https://data.delijn.be/stops/104690"], ["https://data.delijn.be/stops/106184", "https://data.delijn.be/stops/106187"], ["https://data.delijn.be/stops/204159", "https://data.delijn.be/stops/204165"], ["https://data.delijn.be/stops/204977", "https://data.delijn.be/stops/209245"], ["https://data.delijn.be/stops/303208", "https://data.delijn.be/stops/304313"], ["https://data.delijn.be/stops/209568", "https://data.delijn.be/stops/209611"], ["https://data.delijn.be/stops/101508", "https://data.delijn.be/stops/300111"], ["https://data.delijn.be/stops/407173", "https://data.delijn.be/stops/407176"], ["https://data.delijn.be/stops/300815", "https://data.delijn.be/stops/300876"], ["https://data.delijn.be/stops/509037", "https://data.delijn.be/stops/509279"], ["https://data.delijn.be/stops/503037", "https://data.delijn.be/stops/503185"], ["https://data.delijn.be/stops/406169", "https://data.delijn.be/stops/406192"], ["https://data.delijn.be/stops/300435", "https://data.delijn.be/stops/300443"], ["https://data.delijn.be/stops/301867", "https://data.delijn.be/stops/301869"], ["https://data.delijn.be/stops/304190", "https://data.delijn.be/stops/304191"], ["https://data.delijn.be/stops/408615", "https://data.delijn.be/stops/408632"], ["https://data.delijn.be/stops/107405", "https://data.delijn.be/stops/107407"], ["https://data.delijn.be/stops/504014", "https://data.delijn.be/stops/509720"], ["https://data.delijn.be/stops/404743", "https://data.delijn.be/stops/410051"], ["https://data.delijn.be/stops/101673", "https://data.delijn.be/stops/101674"], ["https://data.delijn.be/stops/208064", "https://data.delijn.be/stops/208065"], ["https://data.delijn.be/stops/209076", "https://data.delijn.be/stops/209124"], ["https://data.delijn.be/stops/503684", "https://data.delijn.be/stops/508684"], ["https://data.delijn.be/stops/306902", "https://data.delijn.be/stops/308129"], ["https://data.delijn.be/stops/505155", "https://data.delijn.be/stops/507075"], ["https://data.delijn.be/stops/200408", "https://data.delijn.be/stops/201308"], ["https://data.delijn.be/stops/208445", "https://data.delijn.be/stops/208453"], ["https://data.delijn.be/stops/300676", "https://data.delijn.be/stops/308977"], ["https://data.delijn.be/stops/405570", "https://data.delijn.be/stops/405571"], ["https://data.delijn.be/stops/200510", "https://data.delijn.be/stops/200511"], ["https://data.delijn.be/stops/408325", "https://data.delijn.be/stops/408348"], ["https://data.delijn.be/stops/200352", "https://data.delijn.be/stops/201018"], ["https://data.delijn.be/stops/508025", "https://data.delijn.be/stops/508223"], ["https://data.delijn.be/stops/303502", "https://data.delijn.be/stops/303503"], ["https://data.delijn.be/stops/300904", "https://data.delijn.be/stops/301114"], ["https://data.delijn.be/stops/101922", "https://data.delijn.be/stops/102969"], ["https://data.delijn.be/stops/402328", "https://data.delijn.be/stops/402329"], ["https://data.delijn.be/stops/407224", "https://data.delijn.be/stops/407490"], ["https://data.delijn.be/stops/308617", "https://data.delijn.be/stops/308618"], ["https://data.delijn.be/stops/403073", "https://data.delijn.be/stops/403075"], ["https://data.delijn.be/stops/202834", "https://data.delijn.be/stops/202942"], ["https://data.delijn.be/stops/401679", "https://data.delijn.be/stops/308171"], ["https://data.delijn.be/stops/406309", "https://data.delijn.be/stops/406312"], ["https://data.delijn.be/stops/206571", "https://data.delijn.be/stops/207571"], ["https://data.delijn.be/stops/209221", "https://data.delijn.be/stops/209238"], ["https://data.delijn.be/stops/403092", "https://data.delijn.be/stops/403093"], ["https://data.delijn.be/stops/202516", "https://data.delijn.be/stops/203515"], ["https://data.delijn.be/stops/503602", "https://data.delijn.be/stops/508602"], ["https://data.delijn.be/stops/301532", "https://data.delijn.be/stops/304701"], ["https://data.delijn.be/stops/105317", "https://data.delijn.be/stops/105342"], ["https://data.delijn.be/stops/200232", "https://data.delijn.be/stops/200550"], ["https://data.delijn.be/stops/101020", "https://data.delijn.be/stops/105671"], ["https://data.delijn.be/stops/407758", "https://data.delijn.be/stops/409249"], ["https://data.delijn.be/stops/101921", "https://data.delijn.be/stops/105668"], ["https://data.delijn.be/stops/303152", "https://data.delijn.be/stops/305449"], ["https://data.delijn.be/stops/208202", "https://data.delijn.be/stops/209780"], ["https://data.delijn.be/stops/300016", "https://data.delijn.be/stops/301138"], ["https://data.delijn.be/stops/301849", "https://data.delijn.be/stops/305817"], ["https://data.delijn.be/stops/204916", "https://data.delijn.be/stops/205912"], ["https://data.delijn.be/stops/208527", "https://data.delijn.be/stops/209701"], ["https://data.delijn.be/stops/102392", "https://data.delijn.be/stops/103137"], ["https://data.delijn.be/stops/105789", "https://data.delijn.be/stops/105790"], ["https://data.delijn.be/stops/503643", "https://data.delijn.be/stops/508641"], ["https://data.delijn.be/stops/206532", "https://data.delijn.be/stops/207455"], ["https://data.delijn.be/stops/202925", "https://data.delijn.be/stops/203925"], ["https://data.delijn.be/stops/408888", "https://data.delijn.be/stops/408903"], ["https://data.delijn.be/stops/400806", "https://data.delijn.be/stops/400872"], ["https://data.delijn.be/stops/106017", "https://data.delijn.be/stops/106758"], ["https://data.delijn.be/stops/501093", "https://data.delijn.be/stops/506092"], ["https://data.delijn.be/stops/201134", "https://data.delijn.be/stops/201468"], ["https://data.delijn.be/stops/101657", "https://data.delijn.be/stops/107849"], ["https://data.delijn.be/stops/200495", "https://data.delijn.be/stops/200632"], ["https://data.delijn.be/stops/208022", "https://data.delijn.be/stops/208023"], ["https://data.delijn.be/stops/409667", "https://data.delijn.be/stops/409688"], ["https://data.delijn.be/stops/209484", "https://data.delijn.be/stops/209659"], ["https://data.delijn.be/stops/400640", "https://data.delijn.be/stops/406876"], ["https://data.delijn.be/stops/504646", "https://data.delijn.be/stops/505101"], ["https://data.delijn.be/stops/302739", "https://data.delijn.be/stops/302747"], ["https://data.delijn.be/stops/403764", "https://data.delijn.be/stops/403774"], ["https://data.delijn.be/stops/206075", "https://data.delijn.be/stops/207319"], ["https://data.delijn.be/stops/200879", "https://data.delijn.be/stops/200888"], ["https://data.delijn.be/stops/406095", "https://data.delijn.be/stops/406133"], ["https://data.delijn.be/stops/105283", "https://data.delijn.be/stops/109925"], ["https://data.delijn.be/stops/301626", "https://data.delijn.be/stops/306155"], ["https://data.delijn.be/stops/303373", "https://data.delijn.be/stops/303383"], ["https://data.delijn.be/stops/404028", "https://data.delijn.be/stops/308749"], ["https://data.delijn.be/stops/402082", "https://data.delijn.be/stops/402116"], ["https://data.delijn.be/stops/204051", "https://data.delijn.be/stops/205065"], ["https://data.delijn.be/stops/207726", "https://data.delijn.be/stops/207881"], ["https://data.delijn.be/stops/508072", "https://data.delijn.be/stops/508073"], ["https://data.delijn.be/stops/408994", "https://data.delijn.be/stops/409006"], ["https://data.delijn.be/stops/300526", "https://data.delijn.be/stops/306174"], ["https://data.delijn.be/stops/208089", "https://data.delijn.be/stops/507962"], ["https://data.delijn.be/stops/505079", "https://data.delijn.be/stops/508822"], ["https://data.delijn.be/stops/504746", "https://data.delijn.be/stops/509132"], ["https://data.delijn.be/stops/301398", "https://data.delijn.be/stops/301403"], ["https://data.delijn.be/stops/407690", "https://data.delijn.be/stops/410193"], ["https://data.delijn.be/stops/302405", "https://data.delijn.be/stops/302407"], ["https://data.delijn.be/stops/505107", "https://data.delijn.be/stops/509639"], ["https://data.delijn.be/stops/206689", "https://data.delijn.be/stops/207717"], ["https://data.delijn.be/stops/507471", "https://data.delijn.be/stops/507476"], ["https://data.delijn.be/stops/302129", "https://data.delijn.be/stops/307527"], ["https://data.delijn.be/stops/203218", "https://data.delijn.be/stops/204795"], ["https://data.delijn.be/stops/208682", "https://data.delijn.be/stops/209432"], ["https://data.delijn.be/stops/403196", "https://data.delijn.be/stops/403518"], ["https://data.delijn.be/stops/307647", "https://data.delijn.be/stops/307648"], ["https://data.delijn.be/stops/103520", "https://data.delijn.be/stops/105510"], ["https://data.delijn.be/stops/503630", "https://data.delijn.be/stops/508630"], ["https://data.delijn.be/stops/201934", "https://data.delijn.be/stops/207966"], ["https://data.delijn.be/stops/108311", "https://data.delijn.be/stops/108313"], ["https://data.delijn.be/stops/201054", "https://data.delijn.be/stops/201478"], ["https://data.delijn.be/stops/108926", "https://data.delijn.be/stops/108931"], ["https://data.delijn.be/stops/108858", "https://data.delijn.be/stops/108861"], ["https://data.delijn.be/stops/401758", "https://data.delijn.be/stops/401760"], ["https://data.delijn.be/stops/209750", "https://data.delijn.be/stops/209756"], ["https://data.delijn.be/stops/308142", "https://data.delijn.be/stops/308145"], ["https://data.delijn.be/stops/406926", "https://data.delijn.be/stops/406927"], ["https://data.delijn.be/stops/304558", "https://data.delijn.be/stops/307571"], ["https://data.delijn.be/stops/105001", "https://data.delijn.be/stops/105066"], ["https://data.delijn.be/stops/303465", "https://data.delijn.be/stops/303501"], ["https://data.delijn.be/stops/503303", "https://data.delijn.be/stops/508303"], ["https://data.delijn.be/stops/302325", "https://data.delijn.be/stops/307229"], ["https://data.delijn.be/stops/104815", "https://data.delijn.be/stops/105457"], ["https://data.delijn.be/stops/301063", "https://data.delijn.be/stops/301064"], ["https://data.delijn.be/stops/304937", "https://data.delijn.be/stops/304943"], ["https://data.delijn.be/stops/104013", "https://data.delijn.be/stops/104016"], ["https://data.delijn.be/stops/509420", "https://data.delijn.be/stops/509436"], ["https://data.delijn.be/stops/407924", "https://data.delijn.be/stops/408230"], ["https://data.delijn.be/stops/504834", "https://data.delijn.be/stops/504845"], ["https://data.delijn.be/stops/300969", "https://data.delijn.be/stops/301106"], ["https://data.delijn.be/stops/405954", "https://data.delijn.be/stops/405955"], ["https://data.delijn.be/stops/302940", "https://data.delijn.be/stops/302951"], ["https://data.delijn.be/stops/505705", "https://data.delijn.be/stops/507062"], ["https://data.delijn.be/stops/504610", "https://data.delijn.be/stops/505983"], ["https://data.delijn.be/stops/101969", "https://data.delijn.be/stops/104936"], ["https://data.delijn.be/stops/503720", "https://data.delijn.be/stops/508720"], ["https://data.delijn.be/stops/500942", "https://data.delijn.be/stops/508806"], ["https://data.delijn.be/stops/407436", "https://data.delijn.be/stops/407488"], ["https://data.delijn.be/stops/403732", "https://data.delijn.be/stops/403739"], ["https://data.delijn.be/stops/305946", "https://data.delijn.be/stops/308420"], ["https://data.delijn.be/stops/506056", "https://data.delijn.be/stops/506058"], ["https://data.delijn.be/stops/305727", "https://data.delijn.be/stops/308131"], ["https://data.delijn.be/stops/202690", "https://data.delijn.be/stops/203722"], ["https://data.delijn.be/stops/406401", "https://data.delijn.be/stops/406402"], ["https://data.delijn.be/stops/507220", "https://data.delijn.be/stops/507223"], ["https://data.delijn.be/stops/405339", "https://data.delijn.be/stops/405349"], ["https://data.delijn.be/stops/103274", "https://data.delijn.be/stops/107611"], ["https://data.delijn.be/stops/301967", "https://data.delijn.be/stops/307224"], ["https://data.delijn.be/stops/505118", "https://data.delijn.be/stops/508480"], ["https://data.delijn.be/stops/308607", "https://data.delijn.be/stops/308609"], ["https://data.delijn.be/stops/507947", "https://data.delijn.be/stops/507954"], ["https://data.delijn.be/stops/304377", "https://data.delijn.be/stops/304425"], ["https://data.delijn.be/stops/206537", "https://data.delijn.be/stops/209689"], ["https://data.delijn.be/stops/307207", "https://data.delijn.be/stops/307534"], ["https://data.delijn.be/stops/407674", "https://data.delijn.be/stops/407679"], ["https://data.delijn.be/stops/302274", "https://data.delijn.be/stops/307280"], ["https://data.delijn.be/stops/203824", "https://data.delijn.be/stops/203825"], ["https://data.delijn.be/stops/408607", "https://data.delijn.be/stops/408616"], ["https://data.delijn.be/stops/502140", "https://data.delijn.be/stops/502728"], ["https://data.delijn.be/stops/400816", "https://data.delijn.be/stops/403580"], ["https://data.delijn.be/stops/108189", "https://data.delijn.be/stops/108206"], ["https://data.delijn.be/stops/408386", "https://data.delijn.be/stops/408388"], ["https://data.delijn.be/stops/207127", "https://data.delijn.be/stops/207414"], ["https://data.delijn.be/stops/501132", "https://data.delijn.be/stops/501135"], ["https://data.delijn.be/stops/407852", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/301536", "https://data.delijn.be/stops/304701"], ["https://data.delijn.be/stops/504491", "https://data.delijn.be/stops/509060"], ["https://data.delijn.be/stops/106099", "https://data.delijn.be/stops/106113"], ["https://data.delijn.be/stops/308479", "https://data.delijn.be/stops/308480"], ["https://data.delijn.be/stops/302594", "https://data.delijn.be/stops/302606"], ["https://data.delijn.be/stops/204069", "https://data.delijn.be/stops/205188"], ["https://data.delijn.be/stops/303814", "https://data.delijn.be/stops/303815"], ["https://data.delijn.be/stops/108109", "https://data.delijn.be/stops/108111"], ["https://data.delijn.be/stops/503953", "https://data.delijn.be/stops/508959"], ["https://data.delijn.be/stops/503784", "https://data.delijn.be/stops/508785"], ["https://data.delijn.be/stops/402776", "https://data.delijn.be/stops/405684"], ["https://data.delijn.be/stops/509780", "https://data.delijn.be/stops/509781"], ["https://data.delijn.be/stops/502190", "https://data.delijn.be/stops/502204"], ["https://data.delijn.be/stops/502327", "https://data.delijn.be/stops/507327"], ["https://data.delijn.be/stops/301921", "https://data.delijn.be/stops/302812"], ["https://data.delijn.be/stops/305502", "https://data.delijn.be/stops/307826"], ["https://data.delijn.be/stops/203817", "https://data.delijn.be/stops/219953"], ["https://data.delijn.be/stops/306054", "https://data.delijn.be/stops/306062"], ["https://data.delijn.be/stops/402813", "https://data.delijn.be/stops/409041"], ["https://data.delijn.be/stops/300740", "https://data.delijn.be/stops/308530"], ["https://data.delijn.be/stops/208004", "https://data.delijn.be/stops/209635"], ["https://data.delijn.be/stops/107483", "https://data.delijn.be/stops/107509"], ["https://data.delijn.be/stops/402681", "https://data.delijn.be/stops/402726"], ["https://data.delijn.be/stops/400201", "https://data.delijn.be/stops/402375"], ["https://data.delijn.be/stops/504560", "https://data.delijn.be/stops/504567"], ["https://data.delijn.be/stops/301683", "https://data.delijn.be/stops/302397"], ["https://data.delijn.be/stops/203013", "https://data.delijn.be/stops/203014"], ["https://data.delijn.be/stops/307204", "https://data.delijn.be/stops/307555"], ["https://data.delijn.be/stops/410151", "https://data.delijn.be/stops/302829"], ["https://data.delijn.be/stops/301987", "https://data.delijn.be/stops/301996"], ["https://data.delijn.be/stops/502014", "https://data.delijn.be/stops/502913"], ["https://data.delijn.be/stops/302621", "https://data.delijn.be/stops/302637"], ["https://data.delijn.be/stops/105237", "https://data.delijn.be/stops/105248"], ["https://data.delijn.be/stops/503531", "https://data.delijn.be/stops/508530"], ["https://data.delijn.be/stops/409088", "https://data.delijn.be/stops/409130"], ["https://data.delijn.be/stops/404324", "https://data.delijn.be/stops/404782"], ["https://data.delijn.be/stops/400377", "https://data.delijn.be/stops/401590"], ["https://data.delijn.be/stops/103389", "https://data.delijn.be/stops/108395"], ["https://data.delijn.be/stops/103496", "https://data.delijn.be/stops/103676"], ["https://data.delijn.be/stops/509409", "https://data.delijn.be/stops/509472"], ["https://data.delijn.be/stops/106273", "https://data.delijn.be/stops/109625"], ["https://data.delijn.be/stops/408904", "https://data.delijn.be/stops/408911"], ["https://data.delijn.be/stops/403057", "https://data.delijn.be/stops/403066"], ["https://data.delijn.be/stops/504784", "https://data.delijn.be/stops/508519"], ["https://data.delijn.be/stops/208668", "https://data.delijn.be/stops/208669"], ["https://data.delijn.be/stops/504101", "https://data.delijn.be/stops/504256"], ["https://data.delijn.be/stops/408499", "https://data.delijn.be/stops/408688"], ["https://data.delijn.be/stops/203885", "https://data.delijn.be/stops/209746"], ["https://data.delijn.be/stops/407782", "https://data.delijn.be/stops/307381"], ["https://data.delijn.be/stops/502401", "https://data.delijn.be/stops/507393"], ["https://data.delijn.be/stops/202065", "https://data.delijn.be/stops/203713"], ["https://data.delijn.be/stops/304501", "https://data.delijn.be/stops/304513"], ["https://data.delijn.be/stops/109308", "https://data.delijn.be/stops/109310"], ["https://data.delijn.be/stops/402584", "https://data.delijn.be/stops/402592"], ["https://data.delijn.be/stops/502410", "https://data.delijn.be/stops/502821"], ["https://data.delijn.be/stops/218001", "https://data.delijn.be/stops/219002"], ["https://data.delijn.be/stops/301960", "https://data.delijn.be/stops/301980"], ["https://data.delijn.be/stops/510016", "https://data.delijn.be/stops/510017"], ["https://data.delijn.be/stops/201010", "https://data.delijn.be/stops/211020"], ["https://data.delijn.be/stops/508539", "https://data.delijn.be/stops/508993"], ["https://data.delijn.be/stops/400482", "https://data.delijn.be/stops/407688"], ["https://data.delijn.be/stops/109216", "https://data.delijn.be/stops/109217"], ["https://data.delijn.be/stops/206592", "https://data.delijn.be/stops/207948"], ["https://data.delijn.be/stops/501033", "https://data.delijn.be/stops/501044"], ["https://data.delijn.be/stops/504200", "https://data.delijn.be/stops/509257"], ["https://data.delijn.be/stops/307395", "https://data.delijn.be/stops/308641"], ["https://data.delijn.be/stops/209054", "https://data.delijn.be/stops/209055"], ["https://data.delijn.be/stops/106362", "https://data.delijn.be/stops/106369"], ["https://data.delijn.be/stops/504535", "https://data.delijn.be/stops/504954"], ["https://data.delijn.be/stops/207031", "https://data.delijn.be/stops/207922"], ["https://data.delijn.be/stops/501634", "https://data.delijn.be/stops/501674"], ["https://data.delijn.be/stops/207608", "https://data.delijn.be/stops/207992"], ["https://data.delijn.be/stops/202714", "https://data.delijn.be/stops/202715"], ["https://data.delijn.be/stops/101526", "https://data.delijn.be/stops/101943"], ["https://data.delijn.be/stops/204578", "https://data.delijn.be/stops/206274"], ["https://data.delijn.be/stops/208747", "https://data.delijn.be/stops/209414"], ["https://data.delijn.be/stops/406835", "https://data.delijn.be/stops/406855"], ["https://data.delijn.be/stops/206362", "https://data.delijn.be/stops/207377"], ["https://data.delijn.be/stops/509264", "https://data.delijn.be/stops/509265"], ["https://data.delijn.be/stops/405505", "https://data.delijn.be/stops/405506"], ["https://data.delijn.be/stops/204145", "https://data.delijn.be/stops/206634"], ["https://data.delijn.be/stops/404131", "https://data.delijn.be/stops/404240"], ["https://data.delijn.be/stops/200679", "https://data.delijn.be/stops/201465"], ["https://data.delijn.be/stops/402222", "https://data.delijn.be/stops/410334"], ["https://data.delijn.be/stops/503904", "https://data.delijn.be/stops/508905"], ["https://data.delijn.be/stops/201867", "https://data.delijn.be/stops/203084"], ["https://data.delijn.be/stops/501491", "https://data.delijn.be/stops/506490"], ["https://data.delijn.be/stops/205739", "https://data.delijn.be/stops/205740"], ["https://data.delijn.be/stops/502079", "https://data.delijn.be/stops/502816"], ["https://data.delijn.be/stops/208720", "https://data.delijn.be/stops/209720"], ["https://data.delijn.be/stops/507365", "https://data.delijn.be/stops/507374"], ["https://data.delijn.be/stops/104608", "https://data.delijn.be/stops/108462"], ["https://data.delijn.be/stops/204747", "https://data.delijn.be/stops/205738"], ["https://data.delijn.be/stops/301103", "https://data.delijn.be/stops/303342"], ["https://data.delijn.be/stops/408681", "https://data.delijn.be/stops/408908"], ["https://data.delijn.be/stops/102672", "https://data.delijn.be/stops/106214"], ["https://data.delijn.be/stops/206448", "https://data.delijn.be/stops/207159"], ["https://data.delijn.be/stops/505213", "https://data.delijn.be/stops/509600"], ["https://data.delijn.be/stops/507322", "https://data.delijn.be/stops/507329"], ["https://data.delijn.be/stops/105688", "https://data.delijn.be/stops/105692"], ["https://data.delijn.be/stops/404007", "https://data.delijn.be/stops/404433"], ["https://data.delijn.be/stops/208451", "https://data.delijn.be/stops/209792"], ["https://data.delijn.be/stops/206755", "https://data.delijn.be/stops/208476"], ["https://data.delijn.be/stops/302412", "https://data.delijn.be/stops/302417"], ["https://data.delijn.be/stops/300528", "https://data.delijn.be/stops/306174"], ["https://data.delijn.be/stops/402196", "https://data.delijn.be/stops/402265"], ["https://data.delijn.be/stops/405478", "https://data.delijn.be/stops/409313"], ["https://data.delijn.be/stops/303837", "https://data.delijn.be/stops/303860"], ["https://data.delijn.be/stops/400100", "https://data.delijn.be/stops/400101"], ["https://data.delijn.be/stops/302256", "https://data.delijn.be/stops/307280"], ["https://data.delijn.be/stops/102193", "https://data.delijn.be/stops/102323"], ["https://data.delijn.be/stops/506074", "https://data.delijn.be/stops/506076"], ["https://data.delijn.be/stops/201982", "https://data.delijn.be/stops/202912"], ["https://data.delijn.be/stops/305693", "https://data.delijn.be/stops/305695"], ["https://data.delijn.be/stops/101605", "https://data.delijn.be/stops/103306"], ["https://data.delijn.be/stops/200522", "https://data.delijn.be/stops/211131"], ["https://data.delijn.be/stops/202424", "https://data.delijn.be/stops/203423"], ["https://data.delijn.be/stops/405190", "https://data.delijn.be/stops/406322"], ["https://data.delijn.be/stops/405456", "https://data.delijn.be/stops/405474"], ["https://data.delijn.be/stops/106711", "https://data.delijn.be/stops/106714"], ["https://data.delijn.be/stops/505278", "https://data.delijn.be/stops/505973"], ["https://data.delijn.be/stops/503355", "https://data.delijn.be/stops/503662"], ["https://data.delijn.be/stops/406074", "https://data.delijn.be/stops/406076"], ["https://data.delijn.be/stops/101973", "https://data.delijn.be/stops/109291"], ["https://data.delijn.be/stops/408230", "https://data.delijn.be/stops/408422"], ["https://data.delijn.be/stops/301935", "https://data.delijn.be/stops/302899"], ["https://data.delijn.be/stops/505025", "https://data.delijn.be/stops/505583"], ["https://data.delijn.be/stops/301728", "https://data.delijn.be/stops/301734"], ["https://data.delijn.be/stops/105151", "https://data.delijn.be/stops/109523"], ["https://data.delijn.be/stops/200485", "https://data.delijn.be/stops/209733"], ["https://data.delijn.be/stops/103399", "https://data.delijn.be/stops/105019"], ["https://data.delijn.be/stops/304494", "https://data.delijn.be/stops/304519"], ["https://data.delijn.be/stops/200543", "https://data.delijn.be/stops/201543"], ["https://data.delijn.be/stops/404617", "https://data.delijn.be/stops/406944"], ["https://data.delijn.be/stops/104310", "https://data.delijn.be/stops/104320"], ["https://data.delijn.be/stops/102661", "https://data.delijn.be/stops/108739"], ["https://data.delijn.be/stops/201945", "https://data.delijn.be/stops/202455"], ["https://data.delijn.be/stops/405035", "https://data.delijn.be/stops/405070"], ["https://data.delijn.be/stops/504076", "https://data.delijn.be/stops/504694"], ["https://data.delijn.be/stops/305414", "https://data.delijn.be/stops/305925"], ["https://data.delijn.be/stops/108701", "https://data.delijn.be/stops/108702"], ["https://data.delijn.be/stops/210003", "https://data.delijn.be/stops/211003"], ["https://data.delijn.be/stops/200175", "https://data.delijn.be/stops/211112"], ["https://data.delijn.be/stops/303163", "https://data.delijn.be/stops/303178"], ["https://data.delijn.be/stops/201561", "https://data.delijn.be/stops/201563"], ["https://data.delijn.be/stops/203114", "https://data.delijn.be/stops/205587"], ["https://data.delijn.be/stops/302417", "https://data.delijn.be/stops/306150"], ["https://data.delijn.be/stops/109771", "https://data.delijn.be/stops/109774"], ["https://data.delijn.be/stops/403726", "https://data.delijn.be/stops/403786"], ["https://data.delijn.be/stops/407938", "https://data.delijn.be/stops/408122"], ["https://data.delijn.be/stops/200523", "https://data.delijn.be/stops/201521"], ["https://data.delijn.be/stops/402158", "https://data.delijn.be/stops/407955"], ["https://data.delijn.be/stops/408172", "https://data.delijn.be/stops/408173"], ["https://data.delijn.be/stops/303367", "https://data.delijn.be/stops/303389"], ["https://data.delijn.be/stops/107139", "https://data.delijn.be/stops/107142"], ["https://data.delijn.be/stops/302467", "https://data.delijn.be/stops/305957"], ["https://data.delijn.be/stops/502391", "https://data.delijn.be/stops/507051"], ["https://data.delijn.be/stops/107811", "https://data.delijn.be/stops/109918"], ["https://data.delijn.be/stops/201501", "https://data.delijn.be/stops/201570"], ["https://data.delijn.be/stops/101477", "https://data.delijn.be/stops/109705"], ["https://data.delijn.be/stops/504040", "https://data.delijn.be/stops/509282"], ["https://data.delijn.be/stops/406880", "https://data.delijn.be/stops/409768"], ["https://data.delijn.be/stops/108653", "https://data.delijn.be/stops/306597"], ["https://data.delijn.be/stops/504333", "https://data.delijn.be/stops/509331"], ["https://data.delijn.be/stops/300826", "https://data.delijn.be/stops/305448"], ["https://data.delijn.be/stops/101908", "https://data.delijn.be/stops/101912"], ["https://data.delijn.be/stops/503313", "https://data.delijn.be/stops/505937"], ["https://data.delijn.be/stops/301474", "https://data.delijn.be/stops/308073"], ["https://data.delijn.be/stops/408517", "https://data.delijn.be/stops/408593"], ["https://data.delijn.be/stops/308468", "https://data.delijn.be/stops/308470"], ["https://data.delijn.be/stops/200606", "https://data.delijn.be/stops/201606"], ["https://data.delijn.be/stops/504677", "https://data.delijn.be/stops/505435"], ["https://data.delijn.be/stops/102414", "https://data.delijn.be/stops/102909"], ["https://data.delijn.be/stops/400688", "https://data.delijn.be/stops/404362"], ["https://data.delijn.be/stops/303362", "https://data.delijn.be/stops/303377"], ["https://data.delijn.be/stops/106628", "https://data.delijn.be/stops/106629"], ["https://data.delijn.be/stops/202791", "https://data.delijn.be/stops/202792"], ["https://data.delijn.be/stops/104345", "https://data.delijn.be/stops/104346"], ["https://data.delijn.be/stops/104966", "https://data.delijn.be/stops/109214"], ["https://data.delijn.be/stops/108353", "https://data.delijn.be/stops/108357"], ["https://data.delijn.be/stops/504495", "https://data.delijn.be/stops/506174"], ["https://data.delijn.be/stops/304955", "https://data.delijn.be/stops/304964"], ["https://data.delijn.be/stops/301277", "https://data.delijn.be/stops/307789"], ["https://data.delijn.be/stops/203574", "https://data.delijn.be/stops/203575"], ["https://data.delijn.be/stops/306046", "https://data.delijn.be/stops/306151"], ["https://data.delijn.be/stops/503647", "https://data.delijn.be/stops/508739"], ["https://data.delijn.be/stops/102009", "https://data.delijn.be/stops/205642"], ["https://data.delijn.be/stops/401034", "https://data.delijn.be/stops/401038"], ["https://data.delijn.be/stops/206711", "https://data.delijn.be/stops/207601"], ["https://data.delijn.be/stops/108912", "https://data.delijn.be/stops/108913"], ["https://data.delijn.be/stops/200632", "https://data.delijn.be/stops/200660"], ["https://data.delijn.be/stops/402157", "https://data.delijn.be/stops/402376"], ["https://data.delijn.be/stops/304829", "https://data.delijn.be/stops/304832"], ["https://data.delijn.be/stops/503589", "https://data.delijn.be/stops/508589"], ["https://data.delijn.be/stops/304412", "https://data.delijn.be/stops/307359"], ["https://data.delijn.be/stops/302083", "https://data.delijn.be/stops/302087"], ["https://data.delijn.be/stops/101579", "https://data.delijn.be/stops/101582"], ["https://data.delijn.be/stops/104016", "https://data.delijn.be/stops/104017"], ["https://data.delijn.be/stops/104511", "https://data.delijn.be/stops/104513"], ["https://data.delijn.be/stops/305191", "https://data.delijn.be/stops/305193"], ["https://data.delijn.be/stops/402715", "https://data.delijn.be/stops/308139"], ["https://data.delijn.be/stops/106078", "https://data.delijn.be/stops/106079"], ["https://data.delijn.be/stops/400060", "https://data.delijn.be/stops/400100"], ["https://data.delijn.be/stops/107115", "https://data.delijn.be/stops/107235"], ["https://data.delijn.be/stops/106725", "https://data.delijn.be/stops/106726"], ["https://data.delijn.be/stops/501366", "https://data.delijn.be/stops/506369"], ["https://data.delijn.be/stops/200504", "https://data.delijn.be/stops/201412"], ["https://data.delijn.be/stops/208185", "https://data.delijn.be/stops/209185"], ["https://data.delijn.be/stops/405697", "https://data.delijn.be/stops/405989"], ["https://data.delijn.be/stops/504194", "https://data.delijn.be/stops/504195"], ["https://data.delijn.be/stops/503511", "https://data.delijn.be/stops/508506"], ["https://data.delijn.be/stops/400759", "https://data.delijn.be/stops/409585"], ["https://data.delijn.be/stops/202147", "https://data.delijn.be/stops/202189"], ["https://data.delijn.be/stops/508197", "https://data.delijn.be/stops/508205"], ["https://data.delijn.be/stops/300213", "https://data.delijn.be/stops/303795"], ["https://data.delijn.be/stops/509644", "https://data.delijn.be/stops/509646"], ["https://data.delijn.be/stops/307860", "https://data.delijn.be/stops/307862"], ["https://data.delijn.be/stops/401212", "https://data.delijn.be/stops/402821"], ["https://data.delijn.be/stops/501213", "https://data.delijn.be/stops/506212"], ["https://data.delijn.be/stops/106808", "https://data.delijn.be/stops/106810"], ["https://data.delijn.be/stops/301121", "https://data.delijn.be/stops/301131"], ["https://data.delijn.be/stops/105771", "https://data.delijn.be/stops/108013"], ["https://data.delijn.be/stops/402191", "https://data.delijn.be/stops/402262"], ["https://data.delijn.be/stops/502696", "https://data.delijn.be/stops/507428"], ["https://data.delijn.be/stops/300455", "https://data.delijn.be/stops/305038"], ["https://data.delijn.be/stops/205372", "https://data.delijn.be/stops/205381"], ["https://data.delijn.be/stops/402071", "https://data.delijn.be/stops/405582"], ["https://data.delijn.be/stops/202607", "https://data.delijn.be/stops/203575"], ["https://data.delijn.be/stops/504278", "https://data.delijn.be/stops/504280"], ["https://data.delijn.be/stops/109808", "https://data.delijn.be/stops/109813"], ["https://data.delijn.be/stops/507103", "https://data.delijn.be/stops/507141"], ["https://data.delijn.be/stops/300788", "https://data.delijn.be/stops/300789"], ["https://data.delijn.be/stops/107468", "https://data.delijn.be/stops/107469"], ["https://data.delijn.be/stops/504080", "https://data.delijn.be/stops/504412"], ["https://data.delijn.be/stops/304446", "https://data.delijn.be/stops/304448"], ["https://data.delijn.be/stops/401736", "https://data.delijn.be/stops/401738"], ["https://data.delijn.be/stops/300318", "https://data.delijn.be/stops/308110"], ["https://data.delijn.be/stops/307420", "https://data.delijn.be/stops/307421"], ["https://data.delijn.be/stops/302378", "https://data.delijn.be/stops/302384"], ["https://data.delijn.be/stops/104028", "https://data.delijn.be/stops/107311"], ["https://data.delijn.be/stops/408649", "https://data.delijn.be/stops/408796"], ["https://data.delijn.be/stops/304424", "https://data.delijn.be/stops/307420"], ["https://data.delijn.be/stops/508759", "https://data.delijn.be/stops/509750"], ["https://data.delijn.be/stops/208608", "https://data.delijn.be/stops/209608"], ["https://data.delijn.be/stops/207731", "https://data.delijn.be/stops/207915"], ["https://data.delijn.be/stops/304396", "https://data.delijn.be/stops/307413"], ["https://data.delijn.be/stops/203945", "https://data.delijn.be/stops/203946"], ["https://data.delijn.be/stops/304942", "https://data.delijn.be/stops/304943"], ["https://data.delijn.be/stops/407971", "https://data.delijn.be/stops/408037"], ["https://data.delijn.be/stops/406674", "https://data.delijn.be/stops/406686"], ["https://data.delijn.be/stops/208514", "https://data.delijn.be/stops/209672"], ["https://data.delijn.be/stops/201891", "https://data.delijn.be/stops/211113"], ["https://data.delijn.be/stops/506681", "https://data.delijn.be/stops/509840"], ["https://data.delijn.be/stops/501671", "https://data.delijn.be/stops/501679"], ["https://data.delijn.be/stops/101666", "https://data.delijn.be/stops/106489"], ["https://data.delijn.be/stops/102955", "https://data.delijn.be/stops/104999"], ["https://data.delijn.be/stops/106858", "https://data.delijn.be/stops/106860"], ["https://data.delijn.be/stops/206722", "https://data.delijn.be/stops/207086"], ["https://data.delijn.be/stops/400201", "https://data.delijn.be/stops/409391"], ["https://data.delijn.be/stops/503087", "https://data.delijn.be/stops/505848"], ["https://data.delijn.be/stops/503528", "https://data.delijn.be/stops/508528"], ["https://data.delijn.be/stops/405701", "https://data.delijn.be/stops/407212"], ["https://data.delijn.be/stops/400110", "https://data.delijn.be/stops/409207"], ["https://data.delijn.be/stops/108986", "https://data.delijn.be/stops/109689"], ["https://data.delijn.be/stops/304960", "https://data.delijn.be/stops/304967"], ["https://data.delijn.be/stops/500924", "https://data.delijn.be/stops/505636"], ["https://data.delijn.be/stops/505143", "https://data.delijn.be/stops/507240"], ["https://data.delijn.be/stops/204791", "https://data.delijn.be/stops/205129"], ["https://data.delijn.be/stops/502580", "https://data.delijn.be/stops/507120"], ["https://data.delijn.be/stops/200818", "https://data.delijn.be/stops/200819"], ["https://data.delijn.be/stops/303284", "https://data.delijn.be/stops/303285"], ["https://data.delijn.be/stops/307241", "https://data.delijn.be/stops/307252"], ["https://data.delijn.be/stops/509417", "https://data.delijn.be/stops/509423"], ["https://data.delijn.be/stops/104364", "https://data.delijn.be/stops/104996"], ["https://data.delijn.be/stops/103961", "https://data.delijn.be/stops/107342"], ["https://data.delijn.be/stops/509272", "https://data.delijn.be/stops/509274"], ["https://data.delijn.be/stops/105542", "https://data.delijn.be/stops/106248"], ["https://data.delijn.be/stops/207246", "https://data.delijn.be/stops/207402"], ["https://data.delijn.be/stops/502495", "https://data.delijn.be/stops/507516"], ["https://data.delijn.be/stops/505996", "https://data.delijn.be/stops/508294"], ["https://data.delijn.be/stops/106636", "https://data.delijn.be/stops/106638"], ["https://data.delijn.be/stops/202479", "https://data.delijn.be/stops/203478"], ["https://data.delijn.be/stops/403776", "https://data.delijn.be/stops/403792"], ["https://data.delijn.be/stops/101013", "https://data.delijn.be/stops/103125"], ["https://data.delijn.be/stops/403323", "https://data.delijn.be/stops/407596"], ["https://data.delijn.be/stops/104038", "https://data.delijn.be/stops/107624"], ["https://data.delijn.be/stops/206651", "https://data.delijn.be/stops/207650"], ["https://data.delijn.be/stops/202187", "https://data.delijn.be/stops/203187"], ["https://data.delijn.be/stops/501556", "https://data.delijn.be/stops/506738"], ["https://data.delijn.be/stops/200806", "https://data.delijn.be/stops/203281"], ["https://data.delijn.be/stops/107963", "https://data.delijn.be/stops/107965"], ["https://data.delijn.be/stops/501081", "https://data.delijn.be/stops/501083"], ["https://data.delijn.be/stops/304897", "https://data.delijn.be/stops/307829"], ["https://data.delijn.be/stops/502216", "https://data.delijn.be/stops/505150"], ["https://data.delijn.be/stops/302663", "https://data.delijn.be/stops/302700"], ["https://data.delijn.be/stops/405835", "https://data.delijn.be/stops/409424"], ["https://data.delijn.be/stops/400091", "https://data.delijn.be/stops/400147"], ["https://data.delijn.be/stops/101250", "https://data.delijn.be/stops/103935"], ["https://data.delijn.be/stops/302335", "https://data.delijn.be/stops/308358"], ["https://data.delijn.be/stops/508655", "https://data.delijn.be/stops/508953"], ["https://data.delijn.be/stops/404461", "https://data.delijn.be/stops/404462"], ["https://data.delijn.be/stops/103929", "https://data.delijn.be/stops/104904"], ["https://data.delijn.be/stops/305074", "https://data.delijn.be/stops/305075"], ["https://data.delijn.be/stops/503299", "https://data.delijn.be/stops/503516"], ["https://data.delijn.be/stops/202368", "https://data.delijn.be/stops/203367"], ["https://data.delijn.be/stops/205131", "https://data.delijn.be/stops/205789"], ["https://data.delijn.be/stops/206671", "https://data.delijn.be/stops/208659"], ["https://data.delijn.be/stops/304297", "https://data.delijn.be/stops/306827"], ["https://data.delijn.be/stops/501247", "https://data.delijn.be/stops/506247"], ["https://data.delijn.be/stops/302973", "https://data.delijn.be/stops/303449"], ["https://data.delijn.be/stops/201940", "https://data.delijn.be/stops/210123"], ["https://data.delijn.be/stops/201953", "https://data.delijn.be/stops/203506"], ["https://data.delijn.be/stops/507266", "https://data.delijn.be/stops/507350"], ["https://data.delijn.be/stops/206946", "https://data.delijn.be/stops/208072"], ["https://data.delijn.be/stops/304535", "https://data.delijn.be/stops/304600"], ["https://data.delijn.be/stops/207633", "https://data.delijn.be/stops/207636"], ["https://data.delijn.be/stops/202967", "https://data.delijn.be/stops/203967"], ["https://data.delijn.be/stops/405379", "https://data.delijn.be/stops/303314"], ["https://data.delijn.be/stops/300305", "https://data.delijn.be/stops/300317"], ["https://data.delijn.be/stops/200216", "https://data.delijn.be/stops/201218"], ["https://data.delijn.be/stops/402303", "https://data.delijn.be/stops/402304"], ["https://data.delijn.be/stops/303058", "https://data.delijn.be/stops/303150"], ["https://data.delijn.be/stops/302846", "https://data.delijn.be/stops/302847"], ["https://data.delijn.be/stops/502665", "https://data.delijn.be/stops/507664"], ["https://data.delijn.be/stops/403089", "https://data.delijn.be/stops/410130"], ["https://data.delijn.be/stops/101970", "https://data.delijn.be/stops/107825"], ["https://data.delijn.be/stops/101055", "https://data.delijn.be/stops/108645"], ["https://data.delijn.be/stops/301781", "https://data.delijn.be/stops/301783"], ["https://data.delijn.be/stops/108537", "https://data.delijn.be/stops/108538"], ["https://data.delijn.be/stops/208151", "https://data.delijn.be/stops/209678"], ["https://data.delijn.be/stops/209682", "https://data.delijn.be/stops/209684"], ["https://data.delijn.be/stops/302736", "https://data.delijn.be/stops/307703"], ["https://data.delijn.be/stops/208358", "https://data.delijn.be/stops/209499"], ["https://data.delijn.be/stops/208584", "https://data.delijn.be/stops/208841"], ["https://data.delijn.be/stops/508200", "https://data.delijn.be/stops/508208"], ["https://data.delijn.be/stops/500998", "https://data.delijn.be/stops/505898"], ["https://data.delijn.be/stops/109040", "https://data.delijn.be/stops/109135"], ["https://data.delijn.be/stops/206478", "https://data.delijn.be/stops/207478"], ["https://data.delijn.be/stops/301945", "https://data.delijn.be/stops/303323"], ["https://data.delijn.be/stops/503161", "https://data.delijn.be/stops/505526"], ["https://data.delijn.be/stops/204971", "https://data.delijn.be/stops/207265"], ["https://data.delijn.be/stops/305691", "https://data.delijn.be/stops/305695"], ["https://data.delijn.be/stops/204693", "https://data.delijn.be/stops/205614"], ["https://data.delijn.be/stops/503378", "https://data.delijn.be/stops/504764"], ["https://data.delijn.be/stops/305604", "https://data.delijn.be/stops/305605"], ["https://data.delijn.be/stops/400584", "https://data.delijn.be/stops/400585"], ["https://data.delijn.be/stops/501303", "https://data.delijn.be/stops/501325"], ["https://data.delijn.be/stops/504387", "https://data.delijn.be/stops/505977"], ["https://data.delijn.be/stops/103056", "https://data.delijn.be/stops/107178"], ["https://data.delijn.be/stops/106336", "https://data.delijn.be/stops/106699"], ["https://data.delijn.be/stops/206164", "https://data.delijn.be/stops/308798"], ["https://data.delijn.be/stops/105134", "https://data.delijn.be/stops/105138"], ["https://data.delijn.be/stops/106329", "https://data.delijn.be/stops/106330"], ["https://data.delijn.be/stops/503851", "https://data.delijn.be/stops/504994"], ["https://data.delijn.be/stops/209201", "https://data.delijn.be/stops/209212"], ["https://data.delijn.be/stops/201159", "https://data.delijn.be/stops/205922"], ["https://data.delijn.be/stops/108071", "https://data.delijn.be/stops/108134"], ["https://data.delijn.be/stops/105699", "https://data.delijn.be/stops/105701"], ["https://data.delijn.be/stops/103486", "https://data.delijn.be/stops/109191"], ["https://data.delijn.be/stops/504378", "https://data.delijn.be/stops/507951"], ["https://data.delijn.be/stops/307542", "https://data.delijn.be/stops/307579"], ["https://data.delijn.be/stops/503964", "https://data.delijn.be/stops/505405"], ["https://data.delijn.be/stops/402851", "https://data.delijn.be/stops/402858"], ["https://data.delijn.be/stops/406560", "https://data.delijn.be/stops/406562"], ["https://data.delijn.be/stops/104934", "https://data.delijn.be/stops/107846"], ["https://data.delijn.be/stops/405710", "https://data.delijn.be/stops/408203"], ["https://data.delijn.be/stops/109261", "https://data.delijn.be/stops/109615"], ["https://data.delijn.be/stops/105614", "https://data.delijn.be/stops/106364"], ["https://data.delijn.be/stops/302006", "https://data.delijn.be/stops/307074"], ["https://data.delijn.be/stops/506096", "https://data.delijn.be/stops/506098"], ["https://data.delijn.be/stops/206792", "https://data.delijn.be/stops/207869"], ["https://data.delijn.be/stops/402782", "https://data.delijn.be/stops/405585"], ["https://data.delijn.be/stops/407854", "https://data.delijn.be/stops/407896"], ["https://data.delijn.be/stops/509698", "https://data.delijn.be/stops/509703"], ["https://data.delijn.be/stops/505537", "https://data.delijn.be/stops/505543"], ["https://data.delijn.be/stops/306602", "https://data.delijn.be/stops/306605"], ["https://data.delijn.be/stops/505749", "https://data.delijn.be/stops/507007"], ["https://data.delijn.be/stops/305625", "https://data.delijn.be/stops/308377"], ["https://data.delijn.be/stops/105748", "https://data.delijn.be/stops/105749"], ["https://data.delijn.be/stops/105338", "https://data.delijn.be/stops/105349"], ["https://data.delijn.be/stops/507352", "https://data.delijn.be/stops/508719"], ["https://data.delijn.be/stops/107360", "https://data.delijn.be/stops/108585"], ["https://data.delijn.be/stops/400737", "https://data.delijn.be/stops/404261"], ["https://data.delijn.be/stops/104919", "https://data.delijn.be/stops/107859"], ["https://data.delijn.be/stops/305013", "https://data.delijn.be/stops/305014"], ["https://data.delijn.be/stops/205637", "https://data.delijn.be/stops/205639"], ["https://data.delijn.be/stops/407138", "https://data.delijn.be/stops/407304"], ["https://data.delijn.be/stops/502380", "https://data.delijn.be/stops/507404"], ["https://data.delijn.be/stops/404762", "https://data.delijn.be/stops/404788"], ["https://data.delijn.be/stops/501203", "https://data.delijn.be/stops/506240"], ["https://data.delijn.be/stops/401298", "https://data.delijn.be/stops/401321"], ["https://data.delijn.be/stops/501397", "https://data.delijn.be/stops/505836"], ["https://data.delijn.be/stops/204742", "https://data.delijn.be/stops/204743"], ["https://data.delijn.be/stops/201657", "https://data.delijn.be/stops/201658"], ["https://data.delijn.be/stops/105488", "https://data.delijn.be/stops/105489"], ["https://data.delijn.be/stops/404801", "https://data.delijn.be/stops/406991"], ["https://data.delijn.be/stops/400964", "https://data.delijn.be/stops/400965"], ["https://data.delijn.be/stops/504456", "https://data.delijn.be/stops/509456"], ["https://data.delijn.be/stops/403365", "https://data.delijn.be/stops/403522"], ["https://data.delijn.be/stops/107157", "https://data.delijn.be/stops/109380"], ["https://data.delijn.be/stops/202778", "https://data.delijn.be/stops/203768"], ["https://data.delijn.be/stops/405711", "https://data.delijn.be/stops/410139"], ["https://data.delijn.be/stops/300514", "https://data.delijn.be/stops/302790"], ["https://data.delijn.be/stops/501680", "https://data.delijn.be/stops/504636"], ["https://data.delijn.be/stops/302756", "https://data.delijn.be/stops/302765"], ["https://data.delijn.be/stops/304886", "https://data.delijn.be/stops/306160"], ["https://data.delijn.be/stops/103972", "https://data.delijn.be/stops/106156"], ["https://data.delijn.be/stops/301810", "https://data.delijn.be/stops/304678"], ["https://data.delijn.be/stops/502113", "https://data.delijn.be/stops/502145"], ["https://data.delijn.be/stops/207439", "https://data.delijn.be/stops/207442"], ["https://data.delijn.be/stops/303036", "https://data.delijn.be/stops/305159"], ["https://data.delijn.be/stops/210069", "https://data.delijn.be/stops/211072"], ["https://data.delijn.be/stops/304018", "https://data.delijn.be/stops/304865"], ["https://data.delijn.be/stops/402810", "https://data.delijn.be/stops/409048"], ["https://data.delijn.be/stops/400787", "https://data.delijn.be/stops/409594"], ["https://data.delijn.be/stops/104652", "https://data.delijn.be/stops/308481"], ["https://data.delijn.be/stops/406221", "https://data.delijn.be/stops/410043"], ["https://data.delijn.be/stops/505193", "https://data.delijn.be/stops/505197"], ["https://data.delijn.be/stops/305248", "https://data.delijn.be/stops/306344"], ["https://data.delijn.be/stops/506101", "https://data.delijn.be/stops/506102"], ["https://data.delijn.be/stops/101799", "https://data.delijn.be/stops/300672"], ["https://data.delijn.be/stops/404352", "https://data.delijn.be/stops/404390"], ["https://data.delijn.be/stops/102698", "https://data.delijn.be/stops/103690"], ["https://data.delijn.be/stops/300302", "https://data.delijn.be/stops/306045"], ["https://data.delijn.be/stops/204986", "https://data.delijn.be/stops/509816"], ["https://data.delijn.be/stops/101452", "https://data.delijn.be/stops/107055"], ["https://data.delijn.be/stops/106845", "https://data.delijn.be/stops/106848"], ["https://data.delijn.be/stops/304712", "https://data.delijn.be/stops/306334"], ["https://data.delijn.be/stops/307535", "https://data.delijn.be/stops/307537"], ["https://data.delijn.be/stops/105079", "https://data.delijn.be/stops/105080"], ["https://data.delijn.be/stops/409121", "https://data.delijn.be/stops/409123"], ["https://data.delijn.be/stops/102312", "https://data.delijn.be/stops/106257"], ["https://data.delijn.be/stops/102609", "https://data.delijn.be/stops/105528"], ["https://data.delijn.be/stops/404939", "https://data.delijn.be/stops/404954"], ["https://data.delijn.be/stops/300666", "https://data.delijn.be/stops/300677"], ["https://data.delijn.be/stops/501448", "https://data.delijn.be/stops/501452"], ["https://data.delijn.be/stops/106208", "https://data.delijn.be/stops/109903"], ["https://data.delijn.be/stops/408608", "https://data.delijn.be/stops/408609"], ["https://data.delijn.be/stops/204475", "https://data.delijn.be/stops/205475"], ["https://data.delijn.be/stops/501776", "https://data.delijn.be/stops/501777"], ["https://data.delijn.be/stops/208480", "https://data.delijn.be/stops/209479"], ["https://data.delijn.be/stops/102516", "https://data.delijn.be/stops/406465"], ["https://data.delijn.be/stops/101475", "https://data.delijn.be/stops/101961"], ["https://data.delijn.be/stops/200353", "https://data.delijn.be/stops/201016"], ["https://data.delijn.be/stops/204380", "https://data.delijn.be/stops/205380"], ["https://data.delijn.be/stops/403109", "https://data.delijn.be/stops/403234"], ["https://data.delijn.be/stops/103070", "https://data.delijn.be/stops/104225"], ["https://data.delijn.be/stops/301717", "https://data.delijn.be/stops/301754"], ["https://data.delijn.be/stops/400407", "https://data.delijn.be/stops/408487"], ["https://data.delijn.be/stops/501238", "https://data.delijn.be/stops/506203"], ["https://data.delijn.be/stops/106669", "https://data.delijn.be/stops/109391"], ["https://data.delijn.be/stops/407772", "https://data.delijn.be/stops/408839"], ["https://data.delijn.be/stops/400702", "https://data.delijn.be/stops/400703"], ["https://data.delijn.be/stops/403928", "https://data.delijn.be/stops/403983"], ["https://data.delijn.be/stops/301632", "https://data.delijn.be/stops/303936"], ["https://data.delijn.be/stops/304340", "https://data.delijn.be/stops/304707"], ["https://data.delijn.be/stops/406712", "https://data.delijn.be/stops/408652"], ["https://data.delijn.be/stops/201305", "https://data.delijn.be/stops/203761"], ["https://data.delijn.be/stops/503279", "https://data.delijn.be/stops/508279"], ["https://data.delijn.be/stops/206705", "https://data.delijn.be/stops/301446"], ["https://data.delijn.be/stops/101372", "https://data.delijn.be/stops/101403"], ["https://data.delijn.be/stops/306385", "https://data.delijn.be/stops/307153"], ["https://data.delijn.be/stops/501105", "https://data.delijn.be/stops/501224"], ["https://data.delijn.be/stops/400852", "https://data.delijn.be/stops/409623"], ["https://data.delijn.be/stops/503032", "https://data.delijn.be/stops/507748"], ["https://data.delijn.be/stops/406957", "https://data.delijn.be/stops/406961"], ["https://data.delijn.be/stops/202837", "https://data.delijn.be/stops/203837"], ["https://data.delijn.be/stops/306367", "https://data.delijn.be/stops/306368"], ["https://data.delijn.be/stops/501436", "https://data.delijn.be/stops/506733"], ["https://data.delijn.be/stops/103725", "https://data.delijn.be/stops/105280"], ["https://data.delijn.be/stops/505331", "https://data.delijn.be/stops/505596"], ["https://data.delijn.be/stops/401774", "https://data.delijn.be/stops/406124"], ["https://data.delijn.be/stops/103737", "https://data.delijn.be/stops/108638"], ["https://data.delijn.be/stops/406774", "https://data.delijn.be/stops/406784"], ["https://data.delijn.be/stops/403314", "https://data.delijn.be/stops/409571"], ["https://data.delijn.be/stops/203767", "https://data.delijn.be/stops/203768"], ["https://data.delijn.be/stops/504212", "https://data.delijn.be/stops/504868"], ["https://data.delijn.be/stops/502136", "https://data.delijn.be/stops/502150"], ["https://data.delijn.be/stops/105747", "https://data.delijn.be/stops/109829"], ["https://data.delijn.be/stops/204769", "https://data.delijn.be/stops/205401"], ["https://data.delijn.be/stops/509770", "https://data.delijn.be/stops/510015"], ["https://data.delijn.be/stops/404653", "https://data.delijn.be/stops/404675"], ["https://data.delijn.be/stops/501298", "https://data.delijn.be/stops/501299"], ["https://data.delijn.be/stops/204445", "https://data.delijn.be/stops/205657"], ["https://data.delijn.be/stops/402751", "https://data.delijn.be/stops/408038"], ["https://data.delijn.be/stops/201680", "https://data.delijn.be/stops/201837"], ["https://data.delijn.be/stops/402208", "https://data.delijn.be/stops/402209"], ["https://data.delijn.be/stops/301159", "https://data.delijn.be/stops/301160"], ["https://data.delijn.be/stops/200151", "https://data.delijn.be/stops/201174"], ["https://data.delijn.be/stops/305092", "https://data.delijn.be/stops/305095"], ["https://data.delijn.be/stops/105621", "https://data.delijn.be/stops/105652"], ["https://data.delijn.be/stops/208060", "https://data.delijn.be/stops/209060"], ["https://data.delijn.be/stops/304166", "https://data.delijn.be/stops/307537"], ["https://data.delijn.be/stops/200781", "https://data.delijn.be/stops/201067"], ["https://data.delijn.be/stops/201918", "https://data.delijn.be/stops/206566"], ["https://data.delijn.be/stops/308499", "https://data.delijn.be/stops/308538"], ["https://data.delijn.be/stops/301230", "https://data.delijn.be/stops/307197"], ["https://data.delijn.be/stops/206918", "https://data.delijn.be/stops/207918"], ["https://data.delijn.be/stops/408298", "https://data.delijn.be/stops/408370"], ["https://data.delijn.be/stops/101397", "https://data.delijn.be/stops/107303"], ["https://data.delijn.be/stops/201491", "https://data.delijn.be/stops/203452"], ["https://data.delijn.be/stops/504576", "https://data.delijn.be/stops/505300"], ["https://data.delijn.be/stops/400455", "https://data.delijn.be/stops/400459"], ["https://data.delijn.be/stops/206777", "https://data.delijn.be/stops/208477"], ["https://data.delijn.be/stops/405160", "https://data.delijn.be/stops/405261"], ["https://data.delijn.be/stops/501635", "https://data.delijn.be/stops/506774"], ["https://data.delijn.be/stops/107456", "https://data.delijn.be/stops/107457"], ["https://data.delijn.be/stops/406166", "https://data.delijn.be/stops/406176"], ["https://data.delijn.be/stops/301356", "https://data.delijn.be/stops/307195"], ["https://data.delijn.be/stops/307305", "https://data.delijn.be/stops/307315"], ["https://data.delijn.be/stops/507745", "https://data.delijn.be/stops/590412"], ["https://data.delijn.be/stops/201557", "https://data.delijn.be/stops/502685"], ["https://data.delijn.be/stops/204334", "https://data.delijn.be/stops/204483"], ["https://data.delijn.be/stops/403786", "https://data.delijn.be/stops/403789"], ["https://data.delijn.be/stops/201881", "https://data.delijn.be/stops/203272"], ["https://data.delijn.be/stops/502392", "https://data.delijn.be/stops/502399"], ["https://data.delijn.be/stops/206028", "https://data.delijn.be/stops/206075"], ["https://data.delijn.be/stops/501219", "https://data.delijn.be/stops/506223"], ["https://data.delijn.be/stops/101363", "https://data.delijn.be/stops/102187"], ["https://data.delijn.be/stops/202164", "https://data.delijn.be/stops/203163"], ["https://data.delijn.be/stops/503469", "https://data.delijn.be/stops/508374"], ["https://data.delijn.be/stops/501680", "https://data.delijn.be/stops/504514"], ["https://data.delijn.be/stops/105279", "https://data.delijn.be/stops/109969"], ["https://data.delijn.be/stops/305498", "https://data.delijn.be/stops/308912"], ["https://data.delijn.be/stops/400772", "https://data.delijn.be/stops/409636"], ["https://data.delijn.be/stops/405114", "https://data.delijn.be/stops/405893"], ["https://data.delijn.be/stops/507450", "https://data.delijn.be/stops/507454"], ["https://data.delijn.be/stops/101391", "https://data.delijn.be/stops/102391"], ["https://data.delijn.be/stops/202422", "https://data.delijn.be/stops/202423"], ["https://data.delijn.be/stops/402888", "https://data.delijn.be/stops/402896"], ["https://data.delijn.be/stops/105561", "https://data.delijn.be/stops/105563"], ["https://data.delijn.be/stops/402853", "https://data.delijn.be/stops/301273"], ["https://data.delijn.be/stops/503441", "https://data.delijn.be/stops/508408"], ["https://data.delijn.be/stops/307440", "https://data.delijn.be/stops/307825"], ["https://data.delijn.be/stops/400768", "https://data.delijn.be/stops/405267"], ["https://data.delijn.be/stops/101462", "https://data.delijn.be/stops/109283"], ["https://data.delijn.be/stops/206155", "https://data.delijn.be/stops/206915"], ["https://data.delijn.be/stops/109054", "https://data.delijn.be/stops/109064"], ["https://data.delijn.be/stops/308194", "https://data.delijn.be/stops/308204"], ["https://data.delijn.be/stops/401059", "https://data.delijn.be/stops/406712"], ["https://data.delijn.be/stops/400062", "https://data.delijn.be/stops/400108"], ["https://data.delijn.be/stops/302114", "https://data.delijn.be/stops/302153"], ["https://data.delijn.be/stops/401287", "https://data.delijn.be/stops/401328"], ["https://data.delijn.be/stops/303316", "https://data.delijn.be/stops/307117"], ["https://data.delijn.be/stops/407583", "https://data.delijn.be/stops/407585"], ["https://data.delijn.be/stops/106764", "https://data.delijn.be/stops/107514"], ["https://data.delijn.be/stops/202373", "https://data.delijn.be/stops/203374"], ["https://data.delijn.be/stops/105124", "https://data.delijn.be/stops/105196"], ["https://data.delijn.be/stops/407944", "https://data.delijn.be/stops/408121"], ["https://data.delijn.be/stops/504159", "https://data.delijn.be/stops/509150"], ["https://data.delijn.be/stops/200388", "https://data.delijn.be/stops/209496"], ["https://data.delijn.be/stops/208466", "https://data.delijn.be/stops/209466"], ["https://data.delijn.be/stops/502769", "https://data.delijn.be/stops/507300"], ["https://data.delijn.be/stops/303273", "https://data.delijn.be/stops/303274"], ["https://data.delijn.be/stops/502536", "https://data.delijn.be/stops/507535"], ["https://data.delijn.be/stops/207186", "https://data.delijn.be/stops/207955"], ["https://data.delijn.be/stops/206556", "https://data.delijn.be/stops/206583"], ["https://data.delijn.be/stops/408830", "https://data.delijn.be/stops/408831"], ["https://data.delijn.be/stops/206866", "https://data.delijn.be/stops/208382"], ["https://data.delijn.be/stops/206251", "https://data.delijn.be/stops/206585"], ["https://data.delijn.be/stops/503413", "https://data.delijn.be/stops/503438"], ["https://data.delijn.be/stops/208015", "https://data.delijn.be/stops/209095"], ["https://data.delijn.be/stops/403093", "https://data.delijn.be/stops/403121"], ["https://data.delijn.be/stops/308240", "https://data.delijn.be/stops/308242"], ["https://data.delijn.be/stops/104931", "https://data.delijn.be/stops/104932"], ["https://data.delijn.be/stops/200351", "https://data.delijn.be/stops/200352"], ["https://data.delijn.be/stops/401783", "https://data.delijn.be/stops/406352"], ["https://data.delijn.be/stops/209012", "https://data.delijn.be/stops/209018"], ["https://data.delijn.be/stops/109284", "https://data.delijn.be/stops/109285"], ["https://data.delijn.be/stops/306788", "https://data.delijn.be/stops/306790"], ["https://data.delijn.be/stops/501064", "https://data.delijn.be/stops/501140"], ["https://data.delijn.be/stops/103605", "https://data.delijn.be/stops/109423"], ["https://data.delijn.be/stops/406973", "https://data.delijn.be/stops/407882"], ["https://data.delijn.be/stops/502425", "https://data.delijn.be/stops/502436"], ["https://data.delijn.be/stops/303965", "https://data.delijn.be/stops/303968"], ["https://data.delijn.be/stops/403030", "https://data.delijn.be/stops/403072"], ["https://data.delijn.be/stops/503077", "https://data.delijn.be/stops/505264"], ["https://data.delijn.be/stops/504409", "https://data.delijn.be/stops/509409"], ["https://data.delijn.be/stops/304540", "https://data.delijn.be/stops/307576"], ["https://data.delijn.be/stops/206878", "https://data.delijn.be/stops/206962"], ["https://data.delijn.be/stops/206430", "https://data.delijn.be/stops/206431"], ["https://data.delijn.be/stops/505669", "https://data.delijn.be/stops/507181"], ["https://data.delijn.be/stops/200105", "https://data.delijn.be/stops/201104"], ["https://data.delijn.be/stops/200350", "https://data.delijn.be/stops/201387"], ["https://data.delijn.be/stops/301531", "https://data.delijn.be/stops/304972"], ["https://data.delijn.be/stops/400932", "https://data.delijn.be/stops/408483"], ["https://data.delijn.be/stops/204210", "https://data.delijn.be/stops/206311"], ["https://data.delijn.be/stops/400892", "https://data.delijn.be/stops/409609"], ["https://data.delijn.be/stops/202029", "https://data.delijn.be/stops/202034"], ["https://data.delijn.be/stops/302749", "https://data.delijn.be/stops/307471"], ["https://data.delijn.be/stops/501032", "https://data.delijn.be/stops/501588"], ["https://data.delijn.be/stops/202821", "https://data.delijn.be/stops/203820"], ["https://data.delijn.be/stops/401755", "https://data.delijn.be/stops/401771"], ["https://data.delijn.be/stops/407250", "https://data.delijn.be/stops/407379"], ["https://data.delijn.be/stops/208212", "https://data.delijn.be/stops/209201"], ["https://data.delijn.be/stops/104005", "https://data.delijn.be/stops/104006"], ["https://data.delijn.be/stops/406358", "https://data.delijn.be/stops/406365"], ["https://data.delijn.be/stops/201337", "https://data.delijn.be/stops/211112"], ["https://data.delijn.be/stops/201516", "https://data.delijn.be/stops/201619"], ["https://data.delijn.be/stops/102053", "https://data.delijn.be/stops/107500"], ["https://data.delijn.be/stops/200415", "https://data.delijn.be/stops/201506"], ["https://data.delijn.be/stops/102071", "https://data.delijn.be/stops/102072"], ["https://data.delijn.be/stops/408514", "https://data.delijn.be/stops/408761"], ["https://data.delijn.be/stops/401521", "https://data.delijn.be/stops/401554"], ["https://data.delijn.be/stops/200842", "https://data.delijn.be/stops/202306"], ["https://data.delijn.be/stops/505980", "https://data.delijn.be/stops/509942"], ["https://data.delijn.be/stops/501267", "https://data.delijn.be/stops/506315"], ["https://data.delijn.be/stops/103992", "https://data.delijn.be/stops/103993"], ["https://data.delijn.be/stops/106603", "https://data.delijn.be/stops/106900"], ["https://data.delijn.be/stops/102179", "https://data.delijn.be/stops/102987"], ["https://data.delijn.be/stops/304459", "https://data.delijn.be/stops/307042"], ["https://data.delijn.be/stops/204595", "https://data.delijn.be/stops/204797"], ["https://data.delijn.be/stops/503657", "https://data.delijn.be/stops/505534"], ["https://data.delijn.be/stops/102113", "https://data.delijn.be/stops/102846"], ["https://data.delijn.be/stops/201707", "https://data.delijn.be/stops/203444"], ["https://data.delijn.be/stops/505034", "https://data.delijn.be/stops/506470"], ["https://data.delijn.be/stops/401491", "https://data.delijn.be/stops/401749"], ["https://data.delijn.be/stops/304377", "https://data.delijn.be/stops/307398"], ["https://data.delijn.be/stops/502647", "https://data.delijn.be/stops/507202"], ["https://data.delijn.be/stops/200926", "https://data.delijn.be/stops/200939"], ["https://data.delijn.be/stops/504058", "https://data.delijn.be/stops/504059"], ["https://data.delijn.be/stops/400883", "https://data.delijn.be/stops/409343"], ["https://data.delijn.be/stops/206880", "https://data.delijn.be/stops/206881"], ["https://data.delijn.be/stops/501770", "https://data.delijn.be/stops/507372"], ["https://data.delijn.be/stops/402330", "https://data.delijn.be/stops/402335"], ["https://data.delijn.be/stops/201936", "https://data.delijn.be/stops/207406"], ["https://data.delijn.be/stops/301502", "https://data.delijn.be/stops/301523"], ["https://data.delijn.be/stops/208457", "https://data.delijn.be/stops/209457"], ["https://data.delijn.be/stops/300366", "https://data.delijn.be/stops/307722"], ["https://data.delijn.be/stops/406733", "https://data.delijn.be/stops/408530"], ["https://data.delijn.be/stops/102409", "https://data.delijn.be/stops/109034"], ["https://data.delijn.be/stops/102059", "https://data.delijn.be/stops/106926"], ["https://data.delijn.be/stops/504748", "https://data.delijn.be/stops/509484"], ["https://data.delijn.be/stops/303104", "https://data.delijn.be/stops/308719"], ["https://data.delijn.be/stops/409559", "https://data.delijn.be/stops/409562"], ["https://data.delijn.be/stops/506366", "https://data.delijn.be/stops/507745"], ["https://data.delijn.be/stops/102050", "https://data.delijn.be/stops/102785"], ["https://data.delijn.be/stops/400741", "https://data.delijn.be/stops/400742"], ["https://data.delijn.be/stops/400356", "https://data.delijn.be/stops/400397"], ["https://data.delijn.be/stops/305959", "https://data.delijn.be/stops/305962"], ["https://data.delijn.be/stops/302131", "https://data.delijn.be/stops/304869"], ["https://data.delijn.be/stops/405807", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/301296", "https://data.delijn.be/stops/307254"], ["https://data.delijn.be/stops/304691", "https://data.delijn.be/stops/304692"], ["https://data.delijn.be/stops/501412", "https://data.delijn.be/stops/501681"], ["https://data.delijn.be/stops/206343", "https://data.delijn.be/stops/206344"], ["https://data.delijn.be/stops/308134", "https://data.delijn.be/stops/308290"], ["https://data.delijn.be/stops/301450", "https://data.delijn.be/stops/301451"], ["https://data.delijn.be/stops/501212", "https://data.delijn.be/stops/501223"], ["https://data.delijn.be/stops/302509", "https://data.delijn.be/stops/302519"], ["https://data.delijn.be/stops/103647", "https://data.delijn.be/stops/107174"], ["https://data.delijn.be/stops/508235", "https://data.delijn.be/stops/508252"], ["https://data.delijn.be/stops/308493", "https://data.delijn.be/stops/308501"], ["https://data.delijn.be/stops/306707", "https://data.delijn.be/stops/306709"], ["https://data.delijn.be/stops/503037", "https://data.delijn.be/stops/508037"], ["https://data.delijn.be/stops/200341", "https://data.delijn.be/stops/201283"], ["https://data.delijn.be/stops/409665", "https://data.delijn.be/stops/409748"], ["https://data.delijn.be/stops/404734", "https://data.delijn.be/stops/404741"], ["https://data.delijn.be/stops/203003", "https://data.delijn.be/stops/203021"], ["https://data.delijn.be/stops/107173", "https://data.delijn.be/stops/107174"], ["https://data.delijn.be/stops/303192", "https://data.delijn.be/stops/305449"], ["https://data.delijn.be/stops/202639", "https://data.delijn.be/stops/203108"], ["https://data.delijn.be/stops/200430", "https://data.delijn.be/stops/201428"], ["https://data.delijn.be/stops/302834", "https://data.delijn.be/stops/306773"], ["https://data.delijn.be/stops/305887", "https://data.delijn.be/stops/305888"], ["https://data.delijn.be/stops/400583", "https://data.delijn.be/stops/400618"], ["https://data.delijn.be/stops/501253", "https://data.delijn.be/stops/501738"], ["https://data.delijn.be/stops/106093", "https://data.delijn.be/stops/106094"], ["https://data.delijn.be/stops/406597", "https://data.delijn.be/stops/407410"], ["https://data.delijn.be/stops/303461", "https://data.delijn.be/stops/308068"], ["https://data.delijn.be/stops/501323", "https://data.delijn.be/stops/506347"], ["https://data.delijn.be/stops/208719", "https://data.delijn.be/stops/209719"], ["https://data.delijn.be/stops/102809", "https://data.delijn.be/stops/106482"], ["https://data.delijn.be/stops/302389", "https://data.delijn.be/stops/306194"], ["https://data.delijn.be/stops/404634", "https://data.delijn.be/stops/406959"], ["https://data.delijn.be/stops/405458", "https://data.delijn.be/stops/405462"], ["https://data.delijn.be/stops/208258", "https://data.delijn.be/stops/209258"], ["https://data.delijn.be/stops/105676", "https://data.delijn.be/stops/105678"], ["https://data.delijn.be/stops/404852", "https://data.delijn.be/stops/404878"], ["https://data.delijn.be/stops/206104", "https://data.delijn.be/stops/207123"], ["https://data.delijn.be/stops/202319", "https://data.delijn.be/stops/202320"], ["https://data.delijn.be/stops/400590", "https://data.delijn.be/stops/400591"], ["https://data.delijn.be/stops/405004", "https://data.delijn.be/stops/408342"], ["https://data.delijn.be/stops/505088", "https://data.delijn.be/stops/507236"], ["https://data.delijn.be/stops/504864", "https://data.delijn.be/stops/505633"], ["https://data.delijn.be/stops/305350", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/508243", "https://data.delijn.be/stops/509763"], ["https://data.delijn.be/stops/106819", "https://data.delijn.be/stops/106820"], ["https://data.delijn.be/stops/509631", "https://data.delijn.be/stops/509885"], ["https://data.delijn.be/stops/501328", "https://data.delijn.be/stops/506317"], ["https://data.delijn.be/stops/208466", "https://data.delijn.be/stops/209683"], ["https://data.delijn.be/stops/102662", "https://data.delijn.be/stops/108739"], ["https://data.delijn.be/stops/503570", "https://data.delijn.be/stops/508539"], ["https://data.delijn.be/stops/202020", "https://data.delijn.be/stops/210854"], ["https://data.delijn.be/stops/408973", "https://data.delijn.be/stops/408982"], ["https://data.delijn.be/stops/302316", "https://data.delijn.be/stops/304082"], ["https://data.delijn.be/stops/301216", "https://data.delijn.be/stops/301217"], ["https://data.delijn.be/stops/504594", "https://data.delijn.be/stops/505791"], ["https://data.delijn.be/stops/403197", "https://data.delijn.be/stops/403494"], ["https://data.delijn.be/stops/408316", "https://data.delijn.be/stops/408317"], ["https://data.delijn.be/stops/200081", "https://data.delijn.be/stops/209958"], ["https://data.delijn.be/stops/208671", "https://data.delijn.be/stops/209439"], ["https://data.delijn.be/stops/202371", "https://data.delijn.be/stops/202587"], ["https://data.delijn.be/stops/302763", "https://data.delijn.be/stops/302785"], ["https://data.delijn.be/stops/207022", "https://data.delijn.be/stops/207028"], ["https://data.delijn.be/stops/404911", "https://data.delijn.be/stops/404966"], ["https://data.delijn.be/stops/409278", "https://data.delijn.be/stops/409312"], ["https://data.delijn.be/stops/209304", "https://data.delijn.be/stops/209305"], ["https://data.delijn.be/stops/103326", "https://data.delijn.be/stops/103327"], ["https://data.delijn.be/stops/400577", "https://data.delijn.be/stops/404138"], ["https://data.delijn.be/stops/404350", "https://data.delijn.be/stops/404351"], ["https://data.delijn.be/stops/207829", "https://data.delijn.be/stops/207929"], ["https://data.delijn.be/stops/201776", "https://data.delijn.be/stops/205974"], ["https://data.delijn.be/stops/204351", "https://data.delijn.be/stops/205351"], ["https://data.delijn.be/stops/103090", "https://data.delijn.be/stops/105870"], ["https://data.delijn.be/stops/200580", "https://data.delijn.be/stops/201733"], ["https://data.delijn.be/stops/300759", "https://data.delijn.be/stops/301006"], ["https://data.delijn.be/stops/408267", "https://data.delijn.be/stops/408404"], ["https://data.delijn.be/stops/306871", "https://data.delijn.be/stops/306872"], ["https://data.delijn.be/stops/106330", "https://data.delijn.be/stops/109390"], ["https://data.delijn.be/stops/408504", "https://data.delijn.be/stops/408527"], ["https://data.delijn.be/stops/209584", "https://data.delijn.be/stops/209697"], ["https://data.delijn.be/stops/502178", "https://data.delijn.be/stops/505558"], ["https://data.delijn.be/stops/102310", "https://data.delijn.be/stops/109131"], ["https://data.delijn.be/stops/405875", "https://data.delijn.be/stops/409429"], ["https://data.delijn.be/stops/406598", "https://data.delijn.be/stops/406613"], ["https://data.delijn.be/stops/107228", "https://data.delijn.be/stops/109889"], ["https://data.delijn.be/stops/200400", "https://data.delijn.be/stops/200500"], ["https://data.delijn.be/stops/301539", "https://data.delijn.be/stops/301543"], ["https://data.delijn.be/stops/406411", "https://data.delijn.be/stops/406725"], ["https://data.delijn.be/stops/401845", "https://data.delijn.be/stops/406349"], ["https://data.delijn.be/stops/306695", "https://data.delijn.be/stops/308788"], ["https://data.delijn.be/stops/307857", "https://data.delijn.be/stops/307858"], ["https://data.delijn.be/stops/501659", "https://data.delijn.be/stops/506659"], ["https://data.delijn.be/stops/102515", "https://data.delijn.be/stops/105490"], ["https://data.delijn.be/stops/200873", "https://data.delijn.be/stops/202308"], ["https://data.delijn.be/stops/502497", "https://data.delijn.be/stops/505626"], ["https://data.delijn.be/stops/503395", "https://data.delijn.be/stops/509785"], ["https://data.delijn.be/stops/308160", "https://data.delijn.be/stops/308181"], ["https://data.delijn.be/stops/202548", "https://data.delijn.be/stops/203548"], ["https://data.delijn.be/stops/107603", "https://data.delijn.be/stops/107605"], ["https://data.delijn.be/stops/103054", "https://data.delijn.be/stops/107179"], ["https://data.delijn.be/stops/402577", "https://data.delijn.be/stops/402583"], ["https://data.delijn.be/stops/407683", "https://data.delijn.be/stops/409878"], ["https://data.delijn.be/stops/401125", "https://data.delijn.be/stops/401140"], ["https://data.delijn.be/stops/207344", "https://data.delijn.be/stops/207688"], ["https://data.delijn.be/stops/406280", "https://data.delijn.be/stops/406281"], ["https://data.delijn.be/stops/301129", "https://data.delijn.be/stops/302875"], ["https://data.delijn.be/stops/206423", "https://data.delijn.be/stops/207685"], ["https://data.delijn.be/stops/303838", "https://data.delijn.be/stops/303849"], ["https://data.delijn.be/stops/109114", "https://data.delijn.be/stops/109117"], ["https://data.delijn.be/stops/206436", "https://data.delijn.be/stops/207437"], ["https://data.delijn.be/stops/207763", "https://data.delijn.be/stops/207786"], ["https://data.delijn.be/stops/204129", "https://data.delijn.be/stops/205129"], ["https://data.delijn.be/stops/200871", "https://data.delijn.be/stops/201117"], ["https://data.delijn.be/stops/300741", "https://data.delijn.be/stops/300776"], ["https://data.delijn.be/stops/507942", "https://data.delijn.be/stops/507958"], ["https://data.delijn.be/stops/403082", "https://data.delijn.be/stops/410034"], ["https://data.delijn.be/stops/405843", "https://data.delijn.be/stops/409757"], ["https://data.delijn.be/stops/506440", "https://data.delijn.be/stops/506482"], ["https://data.delijn.be/stops/208470", "https://data.delijn.be/stops/209471"], ["https://data.delijn.be/stops/508758", "https://data.delijn.be/stops/508958"], ["https://data.delijn.be/stops/502384", "https://data.delijn.be/stops/507384"], ["https://data.delijn.be/stops/201879", "https://data.delijn.be/stops/211034"], ["https://data.delijn.be/stops/101533", "https://data.delijn.be/stops/108785"], ["https://data.delijn.be/stops/106161", "https://data.delijn.be/stops/106167"], ["https://data.delijn.be/stops/209603", "https://data.delijn.be/stops/307603"], ["https://data.delijn.be/stops/504605", "https://data.delijn.be/stops/509605"], ["https://data.delijn.be/stops/109343", "https://data.delijn.be/stops/109346"], ["https://data.delijn.be/stops/302314", "https://data.delijn.be/stops/302352"], ["https://data.delijn.be/stops/306132", "https://data.delijn.be/stops/306135"], ["https://data.delijn.be/stops/300304", "https://data.delijn.be/stops/301768"], ["https://data.delijn.be/stops/404766", "https://data.delijn.be/stops/404788"], ["https://data.delijn.be/stops/104479", "https://data.delijn.be/stops/104483"], ["https://data.delijn.be/stops/407363", "https://data.delijn.be/stops/407388"], ["https://data.delijn.be/stops/303469", "https://data.delijn.be/stops/303509"], ["https://data.delijn.be/stops/503569", "https://data.delijn.be/stops/508564"], ["https://data.delijn.be/stops/206649", "https://data.delijn.be/stops/206757"], ["https://data.delijn.be/stops/103064", "https://data.delijn.be/stops/205280"], ["https://data.delijn.be/stops/106201", "https://data.delijn.be/stops/109755"], ["https://data.delijn.be/stops/405473", "https://data.delijn.be/stops/406691"], ["https://data.delijn.be/stops/501456", "https://data.delijn.be/stops/501547"], ["https://data.delijn.be/stops/308853", "https://data.delijn.be/stops/308854"], ["https://data.delijn.be/stops/207576", "https://data.delijn.be/stops/207577"], ["https://data.delijn.be/stops/305309", "https://data.delijn.be/stops/306091"], ["https://data.delijn.be/stops/207505", "https://data.delijn.be/stops/207673"], ["https://data.delijn.be/stops/305210", "https://data.delijn.be/stops/306933"], ["https://data.delijn.be/stops/300288", "https://data.delijn.be/stops/306045"], ["https://data.delijn.be/stops/504982", "https://data.delijn.be/stops/508901"], ["https://data.delijn.be/stops/206432", "https://data.delijn.be/stops/207432"], ["https://data.delijn.be/stops/406307", "https://data.delijn.be/stops/406309"], ["https://data.delijn.be/stops/209088", "https://data.delijn.be/stops/209154"], ["https://data.delijn.be/stops/302962", "https://data.delijn.be/stops/306300"], ["https://data.delijn.be/stops/501027", "https://data.delijn.be/stops/506027"], ["https://data.delijn.be/stops/101255", "https://data.delijn.be/stops/103935"], ["https://data.delijn.be/stops/405524", "https://data.delijn.be/stops/407275"], ["https://data.delijn.be/stops/503195", "https://data.delijn.be/stops/508195"], ["https://data.delijn.be/stops/301430", "https://data.delijn.be/stops/301435"], ["https://data.delijn.be/stops/107322", "https://data.delijn.be/stops/107323"], ["https://data.delijn.be/stops/200053", "https://data.delijn.be/stops/200054"], ["https://data.delijn.be/stops/300578", "https://data.delijn.be/stops/307077"], ["https://data.delijn.be/stops/506734", "https://data.delijn.be/stops/510001"], ["https://data.delijn.be/stops/504773", "https://data.delijn.be/stops/508568"], ["https://data.delijn.be/stops/402219", "https://data.delijn.be/stops/405548"], ["https://data.delijn.be/stops/508456", "https://data.delijn.be/stops/508468"], ["https://data.delijn.be/stops/107612", "https://data.delijn.be/stops/109995"], ["https://data.delijn.be/stops/301365", "https://data.delijn.be/stops/306134"], ["https://data.delijn.be/stops/305066", "https://data.delijn.be/stops/305076"], ["https://data.delijn.be/stops/302746", "https://data.delijn.be/stops/302747"], ["https://data.delijn.be/stops/402386", "https://data.delijn.be/stops/402387"], ["https://data.delijn.be/stops/306163", "https://data.delijn.be/stops/306164"], ["https://data.delijn.be/stops/108517", "https://data.delijn.be/stops/108518"], ["https://data.delijn.be/stops/403618", "https://data.delijn.be/stops/403631"], ["https://data.delijn.be/stops/105786", "https://data.delijn.be/stops/105788"], ["https://data.delijn.be/stops/102869", "https://data.delijn.be/stops/103575"], ["https://data.delijn.be/stops/300932", "https://data.delijn.be/stops/300934"], ["https://data.delijn.be/stops/206115", "https://data.delijn.be/stops/207115"], ["https://data.delijn.be/stops/503791", "https://data.delijn.be/stops/508794"], ["https://data.delijn.be/stops/208112", "https://data.delijn.be/stops/209110"], ["https://data.delijn.be/stops/504027", "https://data.delijn.be/stops/509027"], ["https://data.delijn.be/stops/408713", "https://data.delijn.be/stops/408723"], ["https://data.delijn.be/stops/301681", "https://data.delijn.be/stops/302388"], ["https://data.delijn.be/stops/302939", "https://data.delijn.be/stops/307435"], ["https://data.delijn.be/stops/105744", "https://data.delijn.be/stops/109835"], ["https://data.delijn.be/stops/403129", "https://data.delijn.be/stops/403135"], ["https://data.delijn.be/stops/406273", "https://data.delijn.be/stops/406275"], ["https://data.delijn.be/stops/403015", "https://data.delijn.be/stops/403410"], ["https://data.delijn.be/stops/101361", "https://data.delijn.be/stops/105354"], ["https://data.delijn.be/stops/302380", "https://data.delijn.be/stops/307841"], ["https://data.delijn.be/stops/201939", "https://data.delijn.be/stops/203945"], ["https://data.delijn.be/stops/108380", "https://data.delijn.be/stops/108967"], ["https://data.delijn.be/stops/400375", "https://data.delijn.be/stops/406768"], ["https://data.delijn.be/stops/106291", "https://data.delijn.be/stops/106292"], ["https://data.delijn.be/stops/301046", "https://data.delijn.be/stops/301062"], ["https://data.delijn.be/stops/202890", "https://data.delijn.be/stops/203820"], ["https://data.delijn.be/stops/505117", "https://data.delijn.be/stops/505365"], ["https://data.delijn.be/stops/505721", "https://data.delijn.be/stops/506093"], ["https://data.delijn.be/stops/307243", "https://data.delijn.be/stops/307246"], ["https://data.delijn.be/stops/504379", "https://data.delijn.be/stops/508859"], ["https://data.delijn.be/stops/501547", "https://data.delijn.be/stops/506460"], ["https://data.delijn.be/stops/505269", "https://data.delijn.be/stops/508219"], ["https://data.delijn.be/stops/406084", "https://data.delijn.be/stops/406824"], ["https://data.delijn.be/stops/304259", "https://data.delijn.be/stops/306663"], ["https://data.delijn.be/stops/300541", "https://data.delijn.be/stops/306167"], ["https://data.delijn.be/stops/404548", "https://data.delijn.be/stops/404553"], ["https://data.delijn.be/stops/302951", "https://data.delijn.be/stops/302977"], ["https://data.delijn.be/stops/108929", "https://data.delijn.be/stops/108932"], ["https://data.delijn.be/stops/503539", "https://data.delijn.be/stops/508539"], ["https://data.delijn.be/stops/507722", "https://data.delijn.be/stops/507735"], ["https://data.delijn.be/stops/403273", "https://data.delijn.be/stops/410294"], ["https://data.delijn.be/stops/205437", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/200486", "https://data.delijn.be/stops/201470"], ["https://data.delijn.be/stops/406312", "https://data.delijn.be/stops/406313"], ["https://data.delijn.be/stops/503310", "https://data.delijn.be/stops/505949"], ["https://data.delijn.be/stops/200224", "https://data.delijn.be/stops/201444"], ["https://data.delijn.be/stops/405832", "https://data.delijn.be/stops/405833"], ["https://data.delijn.be/stops/102073", "https://data.delijn.be/stops/106989"], ["https://data.delijn.be/stops/400788", "https://data.delijn.be/stops/400799"], ["https://data.delijn.be/stops/505015", "https://data.delijn.be/stops/507356"], ["https://data.delijn.be/stops/105319", "https://data.delijn.be/stops/105328"], ["https://data.delijn.be/stops/204367", "https://data.delijn.be/stops/205367"], ["https://data.delijn.be/stops/400333", "https://data.delijn.be/stops/400334"], ["https://data.delijn.be/stops/409160", "https://data.delijn.be/stops/409163"], ["https://data.delijn.be/stops/301714", "https://data.delijn.be/stops/308697"], ["https://data.delijn.be/stops/408743", "https://data.delijn.be/stops/408817"], ["https://data.delijn.be/stops/405846", "https://data.delijn.be/stops/405847"], ["https://data.delijn.be/stops/205991", "https://data.delijn.be/stops/208781"], ["https://data.delijn.be/stops/402201", "https://data.delijn.be/stops/402329"], ["https://data.delijn.be/stops/402769", "https://data.delijn.be/stops/409550"], ["https://data.delijn.be/stops/305779", "https://data.delijn.be/stops/305800"], ["https://data.delijn.be/stops/502322", "https://data.delijn.be/stops/507322"], ["https://data.delijn.be/stops/403384", "https://data.delijn.be/stops/404979"], ["https://data.delijn.be/stops/502351", "https://data.delijn.be/stops/507919"], ["https://data.delijn.be/stops/304174", "https://data.delijn.be/stops/306152"], ["https://data.delijn.be/stops/204057", "https://data.delijn.be/stops/204058"], ["https://data.delijn.be/stops/406948", "https://data.delijn.be/stops/407398"], ["https://data.delijn.be/stops/104759", "https://data.delijn.be/stops/108896"], ["https://data.delijn.be/stops/102751", "https://data.delijn.be/stops/104875"], ["https://data.delijn.be/stops/503252", "https://data.delijn.be/stops/503261"], ["https://data.delijn.be/stops/505523", "https://data.delijn.be/stops/505617"], ["https://data.delijn.be/stops/204519", "https://data.delijn.be/stops/205519"], ["https://data.delijn.be/stops/206864", "https://data.delijn.be/stops/207234"], ["https://data.delijn.be/stops/407496", "https://data.delijn.be/stops/407503"], ["https://data.delijn.be/stops/109894", "https://data.delijn.be/stops/109923"], ["https://data.delijn.be/stops/303386", "https://data.delijn.be/stops/308893"], ["https://data.delijn.be/stops/302961", "https://data.delijn.be/stops/306296"], ["https://data.delijn.be/stops/405973", "https://data.delijn.be/stops/405982"], ["https://data.delijn.be/stops/407381", "https://data.delijn.be/stops/407799"], ["https://data.delijn.be/stops/203533", "https://data.delijn.be/stops/205173"], ["https://data.delijn.be/stops/204080", "https://data.delijn.be/stops/205080"], ["https://data.delijn.be/stops/503054", "https://data.delijn.be/stops/503056"], ["https://data.delijn.be/stops/101796", "https://data.delijn.be/stops/104011"], ["https://data.delijn.be/stops/207764", "https://data.delijn.be/stops/208407"], ["https://data.delijn.be/stops/304884", "https://data.delijn.be/stops/304885"], ["https://data.delijn.be/stops/107064", "https://data.delijn.be/stops/109665"], ["https://data.delijn.be/stops/106483", "https://data.delijn.be/stops/109213"], ["https://data.delijn.be/stops/107050", "https://data.delijn.be/stops/107685"], ["https://data.delijn.be/stops/200974", "https://data.delijn.be/stops/206853"], ["https://data.delijn.be/stops/104646", "https://data.delijn.be/stops/107986"], ["https://data.delijn.be/stops/102284", "https://data.delijn.be/stops/106743"], ["https://data.delijn.be/stops/203725", "https://data.delijn.be/stops/203892"], ["https://data.delijn.be/stops/306837", "https://data.delijn.be/stops/306838"], ["https://data.delijn.be/stops/400703", "https://data.delijn.be/stops/400878"], ["https://data.delijn.be/stops/400142", "https://data.delijn.be/stops/400143"], ["https://data.delijn.be/stops/504358", "https://data.delijn.be/stops/508902"], ["https://data.delijn.be/stops/400733", "https://data.delijn.be/stops/400807"], ["https://data.delijn.be/stops/101942", "https://data.delijn.be/stops/109644"], ["https://data.delijn.be/stops/402749", "https://data.delijn.be/stops/405285"], ["https://data.delijn.be/stops/403243", "https://data.delijn.be/stops/408516"], ["https://data.delijn.be/stops/505517", "https://data.delijn.be/stops/505623"], ["https://data.delijn.be/stops/104276", "https://data.delijn.be/stops/104277"], ["https://data.delijn.be/stops/504648", "https://data.delijn.be/stops/509644"], ["https://data.delijn.be/stops/204636", "https://data.delijn.be/stops/205694"], ["https://data.delijn.be/stops/106206", "https://data.delijn.be/stops/106207"], ["https://data.delijn.be/stops/202387", "https://data.delijn.be/stops/202388"], ["https://data.delijn.be/stops/201282", "https://data.delijn.be/stops/208958"], ["https://data.delijn.be/stops/502233", "https://data.delijn.be/stops/505720"], ["https://data.delijn.be/stops/204295", "https://data.delijn.be/stops/205296"], ["https://data.delijn.be/stops/403659", "https://data.delijn.be/stops/409431"], ["https://data.delijn.be/stops/306367", "https://data.delijn.be/stops/307603"], ["https://data.delijn.be/stops/201010", "https://data.delijn.be/stops/201417"], ["https://data.delijn.be/stops/302023", "https://data.delijn.be/stops/306340"], ["https://data.delijn.be/stops/101990", "https://data.delijn.be/stops/105175"], ["https://data.delijn.be/stops/105473", "https://data.delijn.be/stops/105475"], ["https://data.delijn.be/stops/201693", "https://data.delijn.be/stops/202035"], ["https://data.delijn.be/stops/501555", "https://data.delijn.be/stops/506261"], ["https://data.delijn.be/stops/200066", "https://data.delijn.be/stops/200089"], ["https://data.delijn.be/stops/403742", "https://data.delijn.be/stops/403743"], ["https://data.delijn.be/stops/502801", "https://data.delijn.be/stops/504179"], ["https://data.delijn.be/stops/104477", "https://data.delijn.be/stops/104478"], ["https://data.delijn.be/stops/104667", "https://data.delijn.be/stops/204612"], ["https://data.delijn.be/stops/403784", "https://data.delijn.be/stops/403788"], ["https://data.delijn.be/stops/102649", "https://data.delijn.be/stops/107829"], ["https://data.delijn.be/stops/407754", "https://data.delijn.be/stops/409796"], ["https://data.delijn.be/stops/200239", "https://data.delijn.be/stops/201037"], ["https://data.delijn.be/stops/206817", "https://data.delijn.be/stops/207806"], ["https://data.delijn.be/stops/201880", "https://data.delijn.be/stops/210853"], ["https://data.delijn.be/stops/103696", "https://data.delijn.be/stops/103699"], ["https://data.delijn.be/stops/200556", "https://data.delijn.be/stops/502685"], ["https://data.delijn.be/stops/407172", "https://data.delijn.be/stops/407173"], ["https://data.delijn.be/stops/107634", "https://data.delijn.be/stops/107637"], ["https://data.delijn.be/stops/404346", "https://data.delijn.be/stops/404369"], ["https://data.delijn.be/stops/404336", "https://data.delijn.be/stops/404383"], ["https://data.delijn.be/stops/201069", "https://data.delijn.be/stops/205926"], ["https://data.delijn.be/stops/401245", "https://data.delijn.be/stops/401278"], ["https://data.delijn.be/stops/103490", "https://data.delijn.be/stops/103497"], ["https://data.delijn.be/stops/404184", "https://data.delijn.be/stops/407362"], ["https://data.delijn.be/stops/501077", "https://data.delijn.be/stops/501081"], ["https://data.delijn.be/stops/504376", "https://data.delijn.be/stops/505070"], ["https://data.delijn.be/stops/302953", "https://data.delijn.be/stops/306275"], ["https://data.delijn.be/stops/207946", "https://data.delijn.be/stops/208070"], ["https://data.delijn.be/stops/507111", "https://data.delijn.be/stops/507725"], ["https://data.delijn.be/stops/200139", "https://data.delijn.be/stops/201783"], ["https://data.delijn.be/stops/106602", "https://data.delijn.be/stops/107211"], ["https://data.delijn.be/stops/201916", "https://data.delijn.be/stops/202749"], ["https://data.delijn.be/stops/503659", "https://data.delijn.be/stops/508659"], ["https://data.delijn.be/stops/408313", "https://data.delijn.be/stops/408393"], ["https://data.delijn.be/stops/203785", "https://data.delijn.be/stops/208643"], ["https://data.delijn.be/stops/202931", "https://data.delijn.be/stops/203931"], ["https://data.delijn.be/stops/507354", "https://data.delijn.be/stops/507925"], ["https://data.delijn.be/stops/402592", "https://data.delijn.be/stops/404143"], ["https://data.delijn.be/stops/201862", "https://data.delijn.be/stops/203667"], ["https://data.delijn.be/stops/406317", "https://data.delijn.be/stops/406364"], ["https://data.delijn.be/stops/503382", "https://data.delijn.be/stops/509760"], ["https://data.delijn.be/stops/302668", "https://data.delijn.be/stops/302684"], ["https://data.delijn.be/stops/405607", "https://data.delijn.be/stops/405687"], ["https://data.delijn.be/stops/402429", "https://data.delijn.be/stops/409856"], ["https://data.delijn.be/stops/501228", "https://data.delijn.be/stops/506681"], ["https://data.delijn.be/stops/301014", "https://data.delijn.be/stops/301021"], ["https://data.delijn.be/stops/200148", "https://data.delijn.be/stops/200171"], ["https://data.delijn.be/stops/101477", "https://data.delijn.be/stops/109287"], ["https://data.delijn.be/stops/406359", "https://data.delijn.be/stops/406392"], ["https://data.delijn.be/stops/301282", "https://data.delijn.be/stops/306255"], ["https://data.delijn.be/stops/208279", "https://data.delijn.be/stops/208280"], ["https://data.delijn.be/stops/502584", "https://data.delijn.be/stops/507118"], ["https://data.delijn.be/stops/301682", "https://data.delijn.be/stops/306185"], ["https://data.delijn.be/stops/400711", "https://data.delijn.be/stops/400720"], ["https://data.delijn.be/stops/206108", "https://data.delijn.be/stops/206111"], ["https://data.delijn.be/stops/303354", "https://data.delijn.be/stops/303359"], ["https://data.delijn.be/stops/108534", "https://data.delijn.be/stops/108536"], ["https://data.delijn.be/stops/204658", "https://data.delijn.be/stops/205658"], ["https://data.delijn.be/stops/504082", "https://data.delijn.be/stops/509081"], ["https://data.delijn.be/stops/206089", "https://data.delijn.be/stops/207089"], ["https://data.delijn.be/stops/503677", "https://data.delijn.be/stops/508677"], ["https://data.delijn.be/stops/103636", "https://data.delijn.be/stops/103695"], ["https://data.delijn.be/stops/201107", "https://data.delijn.be/stops/209908"], ["https://data.delijn.be/stops/207797", "https://data.delijn.be/stops/208024"], ["https://data.delijn.be/stops/408101", "https://data.delijn.be/stops/408108"], ["https://data.delijn.be/stops/104961", "https://data.delijn.be/stops/104965"], ["https://data.delijn.be/stops/204383", "https://data.delijn.be/stops/205184"], ["https://data.delijn.be/stops/302799", "https://data.delijn.be/stops/307836"], ["https://data.delijn.be/stops/404455", "https://data.delijn.be/stops/404480"], ["https://data.delijn.be/stops/201893", "https://data.delijn.be/stops/209823"], ["https://data.delijn.be/stops/502451", "https://data.delijn.be/stops/502454"], ["https://data.delijn.be/stops/200815", "https://data.delijn.be/stops/502274"], ["https://data.delijn.be/stops/103310", "https://data.delijn.be/stops/108655"], ["https://data.delijn.be/stops/406920", "https://data.delijn.be/stops/409464"], ["https://data.delijn.be/stops/404355", "https://data.delijn.be/stops/404384"], ["https://data.delijn.be/stops/104647", "https://data.delijn.be/stops/104651"], ["https://data.delijn.be/stops/305201", "https://data.delijn.be/stops/305203"], ["https://data.delijn.be/stops/105266", "https://data.delijn.be/stops/109967"], ["https://data.delijn.be/stops/400688", "https://data.delijn.be/stops/404325"], ["https://data.delijn.be/stops/403054", "https://data.delijn.be/stops/410248"], ["https://data.delijn.be/stops/404222", "https://data.delijn.be/stops/404230"], ["https://data.delijn.be/stops/207335", "https://data.delijn.be/stops/207697"], ["https://data.delijn.be/stops/106368", "https://data.delijn.be/stops/106372"], ["https://data.delijn.be/stops/106243", "https://data.delijn.be/stops/107233"], ["https://data.delijn.be/stops/504134", "https://data.delijn.be/stops/505921"], ["https://data.delijn.be/stops/202887", "https://data.delijn.be/stops/207421"], ["https://data.delijn.be/stops/501387", "https://data.delijn.be/stops/501391"], ["https://data.delijn.be/stops/204620", "https://data.delijn.be/stops/204621"], ["https://data.delijn.be/stops/400164", "https://data.delijn.be/stops/409144"], ["https://data.delijn.be/stops/102330", "https://data.delijn.be/stops/103308"], ["https://data.delijn.be/stops/400482", "https://data.delijn.be/stops/400486"], ["https://data.delijn.be/stops/406254", "https://data.delijn.be/stops/406255"], ["https://data.delijn.be/stops/304119", "https://data.delijn.be/stops/307544"], ["https://data.delijn.be/stops/407145", "https://data.delijn.be/stops/407146"], ["https://data.delijn.be/stops/109088", "https://data.delijn.be/stops/109089"], ["https://data.delijn.be/stops/204610", "https://data.delijn.be/stops/204611"], ["https://data.delijn.be/stops/501214", "https://data.delijn.be/stops/501637"], ["https://data.delijn.be/stops/501139", "https://data.delijn.be/stops/506139"], ["https://data.delijn.be/stops/109842", "https://data.delijn.be/stops/109843"], ["https://data.delijn.be/stops/108918", "https://data.delijn.be/stops/108919"], ["https://data.delijn.be/stops/201895", "https://data.delijn.be/stops/202340"], ["https://data.delijn.be/stops/502275", "https://data.delijn.be/stops/502276"], ["https://data.delijn.be/stops/406848", "https://data.delijn.be/stops/406852"], ["https://data.delijn.be/stops/201470", "https://data.delijn.be/stops/202455"], ["https://data.delijn.be/stops/503607", "https://data.delijn.be/stops/508604"], ["https://data.delijn.be/stops/204059", "https://data.delijn.be/stops/204060"], ["https://data.delijn.be/stops/102946", "https://data.delijn.be/stops/108564"], ["https://data.delijn.be/stops/503738", "https://data.delijn.be/stops/504969"], ["https://data.delijn.be/stops/504564", "https://data.delijn.be/stops/505188"], ["https://data.delijn.be/stops/301180", "https://data.delijn.be/stops/301185"], ["https://data.delijn.be/stops/101617", "https://data.delijn.be/stops/102969"], ["https://data.delijn.be/stops/109830", "https://data.delijn.be/stops/109855"], ["https://data.delijn.be/stops/402022", "https://data.delijn.be/stops/408896"], ["https://data.delijn.be/stops/109344", "https://data.delijn.be/stops/109346"], ["https://data.delijn.be/stops/503075", "https://data.delijn.be/stops/508070"], ["https://data.delijn.be/stops/302936", "https://data.delijn.be/stops/306371"], ["https://data.delijn.be/stops/204999", "https://data.delijn.be/stops/207383"], ["https://data.delijn.be/stops/202526", "https://data.delijn.be/stops/203520"], ["https://data.delijn.be/stops/205501", "https://data.delijn.be/stops/205545"], ["https://data.delijn.be/stops/102297", "https://data.delijn.be/stops/107393"], ["https://data.delijn.be/stops/400132", "https://data.delijn.be/stops/409169"], ["https://data.delijn.be/stops/105572", "https://data.delijn.be/stops/105573"], ["https://data.delijn.be/stops/304429", "https://data.delijn.be/stops/307384"], ["https://data.delijn.be/stops/303639", "https://data.delijn.be/stops/307886"], ["https://data.delijn.be/stops/403048", "https://data.delijn.be/stops/403090"], ["https://data.delijn.be/stops/504392", "https://data.delijn.be/stops/504712"], ["https://data.delijn.be/stops/202892", "https://data.delijn.be/stops/203725"], ["https://data.delijn.be/stops/405545", "https://data.delijn.be/stops/405546"], ["https://data.delijn.be/stops/408641", "https://data.delijn.be/stops/408714"], ["https://data.delijn.be/stops/307628", "https://data.delijn.be/stops/308262"], ["https://data.delijn.be/stops/101408", "https://data.delijn.be/stops/101435"], ["https://data.delijn.be/stops/306123", "https://data.delijn.be/stops/307473"], ["https://data.delijn.be/stops/400554", "https://data.delijn.be/stops/400555"], ["https://data.delijn.be/stops/102936", "https://data.delijn.be/stops/104900"], ["https://data.delijn.be/stops/500018", "https://data.delijn.be/stops/502448"], ["https://data.delijn.be/stops/103909", "https://data.delijn.be/stops/105647"], ["https://data.delijn.be/stops/300251", "https://data.delijn.be/stops/304567"], ["https://data.delijn.be/stops/101518", "https://data.delijn.be/stops/109071"], ["https://data.delijn.be/stops/200153", "https://data.delijn.be/stops/201154"], ["https://data.delijn.be/stops/402529", "https://data.delijn.be/stops/402532"], ["https://data.delijn.be/stops/400213", "https://data.delijn.be/stops/400241"], ["https://data.delijn.be/stops/503438", "https://data.delijn.be/stops/510019"], ["https://data.delijn.be/stops/204170", "https://data.delijn.be/stops/205579"], ["https://data.delijn.be/stops/504448", "https://data.delijn.be/stops/509965"], ["https://data.delijn.be/stops/303780", "https://data.delijn.be/stops/303781"], ["https://data.delijn.be/stops/504011", "https://data.delijn.be/stops/509013"], ["https://data.delijn.be/stops/300402", "https://data.delijn.be/stops/304054"], ["https://data.delijn.be/stops/405772", "https://data.delijn.be/stops/405827"], ["https://data.delijn.be/stops/204408", "https://data.delijn.be/stops/205205"], ["https://data.delijn.be/stops/402299", "https://data.delijn.be/stops/402472"], ["https://data.delijn.be/stops/206669", "https://data.delijn.be/stops/206682"], ["https://data.delijn.be/stops/202340", "https://data.delijn.be/stops/203850"], ["https://data.delijn.be/stops/402782", "https://data.delijn.be/stops/405497"], ["https://data.delijn.be/stops/204646", "https://data.delijn.be/stops/205646"], ["https://data.delijn.be/stops/504783", "https://data.delijn.be/stops/508299"], ["https://data.delijn.be/stops/300874", "https://data.delijn.be/stops/300880"], ["https://data.delijn.be/stops/503569", "https://data.delijn.be/stops/503574"], ["https://data.delijn.be/stops/300459", "https://data.delijn.be/stops/305013"], ["https://data.delijn.be/stops/407908", "https://data.delijn.be/stops/407909"], ["https://data.delijn.be/stops/503358", "https://data.delijn.be/stops/503492"], ["https://data.delijn.be/stops/104082", "https://data.delijn.be/stops/105455"], ["https://data.delijn.be/stops/206185", "https://data.delijn.be/stops/206694"], ["https://data.delijn.be/stops/105997", "https://data.delijn.be/stops/107908"], ["https://data.delijn.be/stops/503315", "https://data.delijn.be/stops/505814"], ["https://data.delijn.be/stops/107699", "https://data.delijn.be/stops/107717"], ["https://data.delijn.be/stops/102745", "https://data.delijn.be/stops/105265"], ["https://data.delijn.be/stops/203346", "https://data.delijn.be/stops/209743"], ["https://data.delijn.be/stops/304739", "https://data.delijn.be/stops/308711"], ["https://data.delijn.be/stops/300599", "https://data.delijn.be/stops/300600"], ["https://data.delijn.be/stops/208207", "https://data.delijn.be/stops/209207"], ["https://data.delijn.be/stops/303759", "https://data.delijn.be/stops/303760"], ["https://data.delijn.be/stops/504217", "https://data.delijn.be/stops/504218"], ["https://data.delijn.be/stops/302054", "https://data.delijn.be/stops/303179"], ["https://data.delijn.be/stops/101371", "https://data.delijn.be/stops/101404"], ["https://data.delijn.be/stops/107174", "https://data.delijn.be/stops/107175"], ["https://data.delijn.be/stops/502278", "https://data.delijn.be/stops/507282"], ["https://data.delijn.be/stops/504135", "https://data.delijn.be/stops/504976"], ["https://data.delijn.be/stops/508082", "https://data.delijn.be/stops/508507"], ["https://data.delijn.be/stops/504423", "https://data.delijn.be/stops/509400"], ["https://data.delijn.be/stops/109797", "https://data.delijn.be/stops/109798"], ["https://data.delijn.be/stops/302558", "https://data.delijn.be/stops/305980"], ["https://data.delijn.be/stops/407822", "https://data.delijn.be/stops/407824"], ["https://data.delijn.be/stops/501331", "https://data.delijn.be/stops/506345"], ["https://data.delijn.be/stops/504362", "https://data.delijn.be/stops/505093"], ["https://data.delijn.be/stops/401474", "https://data.delijn.be/stops/401475"], ["https://data.delijn.be/stops/409298", "https://data.delijn.be/stops/409299"], ["https://data.delijn.be/stops/504371", "https://data.delijn.be/stops/509368"], ["https://data.delijn.be/stops/206839", "https://data.delijn.be/stops/208953"], ["https://data.delijn.be/stops/303802", "https://data.delijn.be/stops/303808"], ["https://data.delijn.be/stops/501615", "https://data.delijn.be/stops/506616"], ["https://data.delijn.be/stops/202003", "https://data.delijn.be/stops/202023"], ["https://data.delijn.be/stops/204677", "https://data.delijn.be/stops/205678"], ["https://data.delijn.be/stops/200861", "https://data.delijn.be/stops/200863"], ["https://data.delijn.be/stops/504074", "https://data.delijn.be/stops/504075"], ["https://data.delijn.be/stops/200107", "https://data.delijn.be/stops/203007"], ["https://data.delijn.be/stops/301394", "https://data.delijn.be/stops/306148"], ["https://data.delijn.be/stops/505505", "https://data.delijn.be/stops/505605"], ["https://data.delijn.be/stops/200210", "https://data.delijn.be/stops/201210"], ["https://data.delijn.be/stops/306726", "https://data.delijn.be/stops/306727"], ["https://data.delijn.be/stops/403174", "https://data.delijn.be/stops/410028"], ["https://data.delijn.be/stops/204973", "https://data.delijn.be/stops/205970"], ["https://data.delijn.be/stops/101892", "https://data.delijn.be/stops/107614"], ["https://data.delijn.be/stops/102237", "https://data.delijn.be/stops/105857"], ["https://data.delijn.be/stops/501017", "https://data.delijn.be/stops/506013"], ["https://data.delijn.be/stops/400665", "https://data.delijn.be/stops/408972"], ["https://data.delijn.be/stops/400288", "https://data.delijn.be/stops/400289"], ["https://data.delijn.be/stops/501401", "https://data.delijn.be/stops/506518"], ["https://data.delijn.be/stops/204544", "https://data.delijn.be/stops/204619"], ["https://data.delijn.be/stops/402889", "https://data.delijn.be/stops/402891"], ["https://data.delijn.be/stops/208665", "https://data.delijn.be/stops/208754"], ["https://data.delijn.be/stops/201005", "https://data.delijn.be/stops/203523"], ["https://data.delijn.be/stops/105075", "https://data.delijn.be/stops/105076"], ["https://data.delijn.be/stops/305147", "https://data.delijn.be/stops/306965"], ["https://data.delijn.be/stops/202021", "https://data.delijn.be/stops/211853"], ["https://data.delijn.be/stops/101411", "https://data.delijn.be/stops/101412"], ["https://data.delijn.be/stops/402074", "https://data.delijn.be/stops/402076"], ["https://data.delijn.be/stops/405798", "https://data.delijn.be/stops/409712"], ["https://data.delijn.be/stops/407871", "https://data.delijn.be/stops/409457"], ["https://data.delijn.be/stops/402339", "https://data.delijn.be/stops/402340"], ["https://data.delijn.be/stops/107702", "https://data.delijn.be/stops/107715"], ["https://data.delijn.be/stops/207466", "https://data.delijn.be/stops/207467"], ["https://data.delijn.be/stops/301491", "https://data.delijn.be/stops/307931"], ["https://data.delijn.be/stops/502508", "https://data.delijn.be/stops/507508"], ["https://data.delijn.be/stops/308224", "https://data.delijn.be/stops/308231"], ["https://data.delijn.be/stops/403612", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/505427", "https://data.delijn.be/stops/505719"], ["https://data.delijn.be/stops/302738", "https://data.delijn.be/stops/307705"], ["https://data.delijn.be/stops/101795", "https://data.delijn.be/stops/101950"], ["https://data.delijn.be/stops/408800", "https://data.delijn.be/stops/408806"], ["https://data.delijn.be/stops/206389", "https://data.delijn.be/stops/206552"], ["https://data.delijn.be/stops/401446", "https://data.delijn.be/stops/401738"], ["https://data.delijn.be/stops/401635", "https://data.delijn.be/stops/308217"], ["https://data.delijn.be/stops/108850", "https://data.delijn.be/stops/108853"], ["https://data.delijn.be/stops/501021", "https://data.delijn.be/stops/501622"], ["https://data.delijn.be/stops/102053", "https://data.delijn.be/stops/104049"], ["https://data.delijn.be/stops/304834", "https://data.delijn.be/stops/305425"], ["https://data.delijn.be/stops/404021", "https://data.delijn.be/stops/407066"], ["https://data.delijn.be/stops/101780", "https://data.delijn.be/stops/105160"], ["https://data.delijn.be/stops/406243", "https://data.delijn.be/stops/406249"], ["https://data.delijn.be/stops/505099", "https://data.delijn.be/stops/505124"], ["https://data.delijn.be/stops/408191", "https://data.delijn.be/stops/408336"], ["https://data.delijn.be/stops/502421", "https://data.delijn.be/stops/507124"], ["https://data.delijn.be/stops/502477", "https://data.delijn.be/stops/502753"], ["https://data.delijn.be/stops/105345", "https://data.delijn.be/stops/105560"], ["https://data.delijn.be/stops/504034", "https://data.delijn.be/stops/505301"], ["https://data.delijn.be/stops/306948", "https://data.delijn.be/stops/306949"], ["https://data.delijn.be/stops/402776", "https://data.delijn.be/stops/402777"], ["https://data.delijn.be/stops/507005", "https://data.delijn.be/stops/507746"], ["https://data.delijn.be/stops/509200", "https://data.delijn.be/stops/509353"], ["https://data.delijn.be/stops/102399", "https://data.delijn.be/stops/108775"], ["https://data.delijn.be/stops/208565", "https://data.delijn.be/stops/209546"], ["https://data.delijn.be/stops/102748", "https://data.delijn.be/stops/107847"], ["https://data.delijn.be/stops/302909", "https://data.delijn.be/stops/302911"], ["https://data.delijn.be/stops/206269", "https://data.delijn.be/stops/207046"], ["https://data.delijn.be/stops/503506", "https://data.delijn.be/stops/508510"], ["https://data.delijn.be/stops/301995", "https://data.delijn.be/stops/307193"], ["https://data.delijn.be/stops/502388", "https://data.delijn.be/stops/507381"], ["https://data.delijn.be/stops/201028", "https://data.delijn.be/stops/201275"], ["https://data.delijn.be/stops/404378", "https://data.delijn.be/stops/404380"], ["https://data.delijn.be/stops/407176", "https://data.delijn.be/stops/409857"], ["https://data.delijn.be/stops/408606", "https://data.delijn.be/stops/306774"], ["https://data.delijn.be/stops/101597", "https://data.delijn.be/stops/106587"], ["https://data.delijn.be/stops/102225", "https://data.delijn.be/stops/102230"], ["https://data.delijn.be/stops/201134", "https://data.delijn.be/stops/201135"], ["https://data.delijn.be/stops/104818", "https://data.delijn.be/stops/108562"], ["https://data.delijn.be/stops/302967", "https://data.delijn.be/stops/306282"], ["https://data.delijn.be/stops/206147", "https://data.delijn.be/stops/206148"], ["https://data.delijn.be/stops/204305", "https://data.delijn.be/stops/205304"], ["https://data.delijn.be/stops/400696", "https://data.delijn.be/stops/409526"], ["https://data.delijn.be/stops/504370", "https://data.delijn.be/stops/509367"], ["https://data.delijn.be/stops/105447", "https://data.delijn.be/stops/109937"], ["https://data.delijn.be/stops/101080", "https://data.delijn.be/stops/104975"], ["https://data.delijn.be/stops/104504", "https://data.delijn.be/stops/107926"], ["https://data.delijn.be/stops/303470", "https://data.delijn.be/stops/303500"], ["https://data.delijn.be/stops/405363", "https://data.delijn.be/stops/405406"], ["https://data.delijn.be/stops/206075", "https://data.delijn.be/stops/207028"], ["https://data.delijn.be/stops/206701", "https://data.delijn.be/stops/304275"], ["https://data.delijn.be/stops/502413", "https://data.delijn.be/stops/507386"], ["https://data.delijn.be/stops/302858", "https://data.delijn.be/stops/302861"], ["https://data.delijn.be/stops/404450", "https://data.delijn.be/stops/404494"], ["https://data.delijn.be/stops/504862", "https://data.delijn.be/stops/505966"], ["https://data.delijn.be/stops/202033", "https://data.delijn.be/stops/203033"], ["https://data.delijn.be/stops/408298", "https://data.delijn.be/stops/408402"], ["https://data.delijn.be/stops/103569", "https://data.delijn.be/stops/103570"], ["https://data.delijn.be/stops/403797", "https://data.delijn.be/stops/403808"], ["https://data.delijn.be/stops/201006", "https://data.delijn.be/stops/211069"], ["https://data.delijn.be/stops/301908", "https://data.delijn.be/stops/306258"], ["https://data.delijn.be/stops/504492", "https://data.delijn.be/stops/504505"], ["https://data.delijn.be/stops/504058", "https://data.delijn.be/stops/509062"], ["https://data.delijn.be/stops/404513", "https://data.delijn.be/stops/408946"], ["https://data.delijn.be/stops/104894", "https://data.delijn.be/stops/105349"], ["https://data.delijn.be/stops/503149", "https://data.delijn.be/stops/505191"], ["https://data.delijn.be/stops/504520", "https://data.delijn.be/stops/509069"], ["https://data.delijn.be/stops/503373", "https://data.delijn.be/stops/508356"], ["https://data.delijn.be/stops/202582", "https://data.delijn.be/stops/203582"], ["https://data.delijn.be/stops/308027", "https://data.delijn.be/stops/308029"], ["https://data.delijn.be/stops/303822", "https://data.delijn.be/stops/303823"], ["https://data.delijn.be/stops/109930", "https://data.delijn.be/stops/109952"], ["https://data.delijn.be/stops/403700", "https://data.delijn.be/stops/403764"], ["https://data.delijn.be/stops/302330", "https://data.delijn.be/stops/304083"], ["https://data.delijn.be/stops/103286", "https://data.delijn.be/stops/109372"], ["https://data.delijn.be/stops/504562", "https://data.delijn.be/stops/505186"], ["https://data.delijn.be/stops/405166", "https://data.delijn.be/stops/405217"], ["https://data.delijn.be/stops/101489", "https://data.delijn.be/stops/108752"], ["https://data.delijn.be/stops/502273", "https://data.delijn.be/stops/505023"], ["https://data.delijn.be/stops/204768", "https://data.delijn.be/stops/205443"], ["https://data.delijn.be/stops/405748", "https://data.delijn.be/stops/409672"], ["https://data.delijn.be/stops/208077", "https://data.delijn.be/stops/208078"], ["https://data.delijn.be/stops/502204", "https://data.delijn.be/stops/508991"], ["https://data.delijn.be/stops/200392", "https://data.delijn.be/stops/202651"], ["https://data.delijn.be/stops/107586", "https://data.delijn.be/stops/107588"], ["https://data.delijn.be/stops/404510", "https://data.delijn.be/stops/404529"], ["https://data.delijn.be/stops/301329", "https://data.delijn.be/stops/306655"], ["https://data.delijn.be/stops/103343", "https://data.delijn.be/stops/104363"], ["https://data.delijn.be/stops/108837", "https://data.delijn.be/stops/108851"], ["https://data.delijn.be/stops/101990", "https://data.delijn.be/stops/102195"], ["https://data.delijn.be/stops/109051", "https://data.delijn.be/stops/109053"], ["https://data.delijn.be/stops/502643", "https://data.delijn.be/stops/507150"], ["https://data.delijn.be/stops/304448", "https://data.delijn.be/stops/304451"], ["https://data.delijn.be/stops/400055", "https://data.delijn.be/stops/400096"], ["https://data.delijn.be/stops/404311", "https://data.delijn.be/stops/406816"], ["https://data.delijn.be/stops/209525", "https://data.delijn.be/stops/209705"], ["https://data.delijn.be/stops/401833", "https://data.delijn.be/stops/401835"], ["https://data.delijn.be/stops/303529", "https://data.delijn.be/stops/303552"], ["https://data.delijn.be/stops/202026", "https://data.delijn.be/stops/203026"], ["https://data.delijn.be/stops/103214", "https://data.delijn.be/stops/106742"], ["https://data.delijn.be/stops/104419", "https://data.delijn.be/stops/204489"], ["https://data.delijn.be/stops/503041", "https://data.delijn.be/stops/508995"], ["https://data.delijn.be/stops/108766", "https://data.delijn.be/stops/109272"], ["https://data.delijn.be/stops/402161", "https://data.delijn.be/stops/402203"], ["https://data.delijn.be/stops/301712", "https://data.delijn.be/stops/305909"], ["https://data.delijn.be/stops/105269", "https://data.delijn.be/stops/105287"], ["https://data.delijn.be/stops/201929", "https://data.delijn.be/stops/203474"], ["https://data.delijn.be/stops/205021", "https://data.delijn.be/stops/205798"], ["https://data.delijn.be/stops/200707", "https://data.delijn.be/stops/200937"], ["https://data.delijn.be/stops/105588", "https://data.delijn.be/stops/105592"], ["https://data.delijn.be/stops/108457", "https://data.delijn.be/stops/108461"], ["https://data.delijn.be/stops/503647", "https://data.delijn.be/stops/509513"], ["https://data.delijn.be/stops/405023", "https://data.delijn.be/stops/405052"], ["https://data.delijn.be/stops/200115", "https://data.delijn.be/stops/200874"], ["https://data.delijn.be/stops/307826", "https://data.delijn.be/stops/307878"], ["https://data.delijn.be/stops/101421", "https://data.delijn.be/stops/107265"], ["https://data.delijn.be/stops/403453", "https://data.delijn.be/stops/403477"], ["https://data.delijn.be/stops/407987", "https://data.delijn.be/stops/407992"], ["https://data.delijn.be/stops/302160", "https://data.delijn.be/stops/302161"], ["https://data.delijn.be/stops/103628", "https://data.delijn.be/stops/103631"], ["https://data.delijn.be/stops/200128", "https://data.delijn.be/stops/201210"], ["https://data.delijn.be/stops/204424", "https://data.delijn.be/stops/205425"], ["https://data.delijn.be/stops/501296", "https://data.delijn.be/stops/506295"], ["https://data.delijn.be/stops/504059", "https://data.delijn.be/stops/505305"], ["https://data.delijn.be/stops/102995", "https://data.delijn.be/stops/104008"], ["https://data.delijn.be/stops/202035", "https://data.delijn.be/stops/202986"], ["https://data.delijn.be/stops/108374", "https://data.delijn.be/stops/108376"], ["https://data.delijn.be/stops/400472", "https://data.delijn.be/stops/400477"], ["https://data.delijn.be/stops/306937", "https://data.delijn.be/stops/308132"], ["https://data.delijn.be/stops/102910", "https://data.delijn.be/stops/105365"], ["https://data.delijn.be/stops/109839", "https://data.delijn.be/stops/109953"], ["https://data.delijn.be/stops/400264", "https://data.delijn.be/stops/402826"], ["https://data.delijn.be/stops/300631", "https://data.delijn.be/stops/300632"], ["https://data.delijn.be/stops/507197", "https://data.delijn.be/stops/507687"], ["https://data.delijn.be/stops/300219", "https://data.delijn.be/stops/300221"], ["https://data.delijn.be/stops/401431", "https://data.delijn.be/stops/401876"], ["https://data.delijn.be/stops/304384", "https://data.delijn.be/stops/308056"], ["https://data.delijn.be/stops/409068", "https://data.delijn.be/stops/409139"], ["https://data.delijn.be/stops/107274", "https://data.delijn.be/stops/107276"], ["https://data.delijn.be/stops/303299", "https://data.delijn.be/stops/305102"], ["https://data.delijn.be/stops/208106", "https://data.delijn.be/stops/208107"], ["https://data.delijn.be/stops/400109", "https://data.delijn.be/stops/409164"], ["https://data.delijn.be/stops/504747", "https://data.delijn.be/stops/509173"], ["https://data.delijn.be/stops/401777", "https://data.delijn.be/stops/406144"], ["https://data.delijn.be/stops/307375", "https://data.delijn.be/stops/307376"], ["https://data.delijn.be/stops/109494", "https://data.delijn.be/stops/109800"], ["https://data.delijn.be/stops/500126", "https://data.delijn.be/stops/508005"], ["https://data.delijn.be/stops/206695", "https://data.delijn.be/stops/207695"], ["https://data.delijn.be/stops/506729", "https://data.delijn.be/stops/507170"], ["https://data.delijn.be/stops/208837", "https://data.delijn.be/stops/209212"], ["https://data.delijn.be/stops/503305", "https://data.delijn.be/stops/508137"], ["https://data.delijn.be/stops/301548", "https://data.delijn.be/stops/301552"], ["https://data.delijn.be/stops/303528", "https://data.delijn.be/stops/303566"], ["https://data.delijn.be/stops/405803", "https://data.delijn.be/stops/409732"], ["https://data.delijn.be/stops/502427", "https://data.delijn.be/stops/507423"], ["https://data.delijn.be/stops/300769", "https://data.delijn.be/stops/301168"], ["https://data.delijn.be/stops/301547", "https://data.delijn.be/stops/305206"], ["https://data.delijn.be/stops/201927", "https://data.delijn.be/stops/204001"], ["https://data.delijn.be/stops/105091", "https://data.delijn.be/stops/105092"], ["https://data.delijn.be/stops/107038", "https://data.delijn.be/stops/109558"], ["https://data.delijn.be/stops/301439", "https://data.delijn.be/stops/301440"], ["https://data.delijn.be/stops/305636", "https://data.delijn.be/stops/305637"], ["https://data.delijn.be/stops/504587", "https://data.delijn.be/stops/509587"], ["https://data.delijn.be/stops/302948", "https://data.delijn.be/stops/308656"], ["https://data.delijn.be/stops/103716", "https://data.delijn.be/stops/107307"], ["https://data.delijn.be/stops/200031", "https://data.delijn.be/stops/200144"], ["https://data.delijn.be/stops/404927", "https://data.delijn.be/stops/404949"], ["https://data.delijn.be/stops/102431", "https://data.delijn.be/stops/104972"], ["https://data.delijn.be/stops/407099", "https://data.delijn.be/stops/407103"], ["https://data.delijn.be/stops/204596", "https://data.delijn.be/stops/204799"], ["https://data.delijn.be/stops/400810", "https://data.delijn.be/stops/409621"], ["https://data.delijn.be/stops/503119", "https://data.delijn.be/stops/508118"], ["https://data.delijn.be/stops/208135", "https://data.delijn.be/stops/208136"], ["https://data.delijn.be/stops/503583", "https://data.delijn.be/stops/503600"], ["https://data.delijn.be/stops/403432", "https://data.delijn.be/stops/403498"], ["https://data.delijn.be/stops/503783", "https://data.delijn.be/stops/505269"], ["https://data.delijn.be/stops/410002", "https://data.delijn.be/stops/410003"], ["https://data.delijn.be/stops/407582", "https://data.delijn.be/stops/408922"], ["https://data.delijn.be/stops/400905", "https://data.delijn.be/stops/401247"], ["https://data.delijn.be/stops/206837", "https://data.delijn.be/stops/207836"], ["https://data.delijn.be/stops/408017", "https://data.delijn.be/stops/408037"], ["https://data.delijn.be/stops/106733", "https://data.delijn.be/stops/107199"], ["https://data.delijn.be/stops/106425", "https://data.delijn.be/stops/106426"], ["https://data.delijn.be/stops/504208", "https://data.delijn.be/stops/504690"], ["https://data.delijn.be/stops/201523", "https://data.delijn.be/stops/211131"], ["https://data.delijn.be/stops/206633", "https://data.delijn.be/stops/207633"], ["https://data.delijn.be/stops/404702", "https://data.delijn.be/stops/404755"], ["https://data.delijn.be/stops/101827", "https://data.delijn.be/stops/102958"], ["https://data.delijn.be/stops/304896", "https://data.delijn.be/stops/307829"], ["https://data.delijn.be/stops/301448", "https://data.delijn.be/stops/307272"], ["https://data.delijn.be/stops/406557", "https://data.delijn.be/stops/407598"], ["https://data.delijn.be/stops/202481", "https://data.delijn.be/stops/203477"], ["https://data.delijn.be/stops/303141", "https://data.delijn.be/stops/304026"], ["https://data.delijn.be/stops/305308", "https://data.delijn.be/stops/306343"], ["https://data.delijn.be/stops/405156", "https://data.delijn.be/stops/405192"], ["https://data.delijn.be/stops/106963", "https://data.delijn.be/stops/106965"], ["https://data.delijn.be/stops/401422", "https://data.delijn.be/stops/401498"], ["https://data.delijn.be/stops/105716", "https://data.delijn.be/stops/105717"], ["https://data.delijn.be/stops/406011", "https://data.delijn.be/stops/406095"], ["https://data.delijn.be/stops/502705", "https://data.delijn.be/stops/507705"], ["https://data.delijn.be/stops/402892", "https://data.delijn.be/stops/402894"], ["https://data.delijn.be/stops/108852", "https://data.delijn.be/stops/108854"], ["https://data.delijn.be/stops/400712", "https://data.delijn.be/stops/400713"], ["https://data.delijn.be/stops/200724", "https://data.delijn.be/stops/202586"], ["https://data.delijn.be/stops/501208", "https://data.delijn.be/stops/505047"], ["https://data.delijn.be/stops/403023", "https://data.delijn.be/stops/404263"], ["https://data.delijn.be/stops/300273", "https://data.delijn.be/stops/305404"], ["https://data.delijn.be/stops/200966", "https://data.delijn.be/stops/208038"], ["https://data.delijn.be/stops/504424", "https://data.delijn.be/stops/504571"], ["https://data.delijn.be/stops/301399", "https://data.delijn.be/stops/301403"], ["https://data.delijn.be/stops/206754", "https://data.delijn.be/stops/206755"], ["https://data.delijn.be/stops/204335", "https://data.delijn.be/stops/205335"], ["https://data.delijn.be/stops/501028", "https://data.delijn.be/stops/506036"], ["https://data.delijn.be/stops/208172", "https://data.delijn.be/stops/209172"], ["https://data.delijn.be/stops/200538", "https://data.delijn.be/stops/200539"], ["https://data.delijn.be/stops/208213", "https://data.delijn.be/stops/209210"], ["https://data.delijn.be/stops/204441", "https://data.delijn.be/stops/205441"], ["https://data.delijn.be/stops/504892", "https://data.delijn.be/stops/508587"], ["https://data.delijn.be/stops/206121", "https://data.delijn.be/stops/206145"], ["https://data.delijn.be/stops/304163", "https://data.delijn.be/stops/304165"], ["https://data.delijn.be/stops/505197", "https://data.delijn.be/stops/505288"], ["https://data.delijn.be/stops/408200", "https://data.delijn.be/stops/307379"], ["https://data.delijn.be/stops/503616", "https://data.delijn.be/stops/508601"], ["https://data.delijn.be/stops/200465", "https://data.delijn.be/stops/201466"], ["https://data.delijn.be/stops/102045", "https://data.delijn.be/stops/108030"], ["https://data.delijn.be/stops/403214", "https://data.delijn.be/stops/403219"], ["https://data.delijn.be/stops/209050", "https://data.delijn.be/stops/209658"], ["https://data.delijn.be/stops/200168", "https://data.delijn.be/stops/203623"], ["https://data.delijn.be/stops/302410", "https://data.delijn.be/stops/302420"], ["https://data.delijn.be/stops/200006", "https://data.delijn.be/stops/201006"], ["https://data.delijn.be/stops/302003", "https://data.delijn.be/stops/302044"], ["https://data.delijn.be/stops/200710", "https://data.delijn.be/stops/204768"], ["https://data.delijn.be/stops/207674", "https://data.delijn.be/stops/209138"], ["https://data.delijn.be/stops/504212", "https://data.delijn.be/stops/509209"], ["https://data.delijn.be/stops/103478", "https://data.delijn.be/stops/103481"], ["https://data.delijn.be/stops/303114", "https://data.delijn.be/stops/305444"], ["https://data.delijn.be/stops/200941", "https://data.delijn.be/stops/203700"], ["https://data.delijn.be/stops/407478", "https://data.delijn.be/stops/407540"], ["https://data.delijn.be/stops/102932", "https://data.delijn.be/stops/106042"], ["https://data.delijn.be/stops/101395", "https://data.delijn.be/stops/102520"], ["https://data.delijn.be/stops/107045", "https://data.delijn.be/stops/108410"], ["https://data.delijn.be/stops/203720", "https://data.delijn.be/stops/203722"], ["https://data.delijn.be/stops/106446", "https://data.delijn.be/stops/106448"], ["https://data.delijn.be/stops/101668", "https://data.delijn.be/stops/107656"], ["https://data.delijn.be/stops/105424", "https://data.delijn.be/stops/105428"], ["https://data.delijn.be/stops/408740", "https://data.delijn.be/stops/408744"], ["https://data.delijn.be/stops/401468", "https://data.delijn.be/stops/401505"], ["https://data.delijn.be/stops/304709", "https://data.delijn.be/stops/306373"], ["https://data.delijn.be/stops/301905", "https://data.delijn.be/stops/306251"], ["https://data.delijn.be/stops/402527", "https://data.delijn.be/stops/404064"], ["https://data.delijn.be/stops/404049", "https://data.delijn.be/stops/404051"], ["https://data.delijn.be/stops/301395", "https://data.delijn.be/stops/301396"], ["https://data.delijn.be/stops/303836", "https://data.delijn.be/stops/308541"], ["https://data.delijn.be/stops/102815", "https://data.delijn.be/stops/105260"], ["https://data.delijn.be/stops/401519", "https://data.delijn.be/stops/401520"], ["https://data.delijn.be/stops/202189", "https://data.delijn.be/stops/203146"], ["https://data.delijn.be/stops/400195", "https://data.delijn.be/stops/401162"], ["https://data.delijn.be/stops/206185", "https://data.delijn.be/stops/206186"], ["https://data.delijn.be/stops/504965", "https://data.delijn.be/stops/508726"], ["https://data.delijn.be/stops/302347", "https://data.delijn.be/stops/302356"], ["https://data.delijn.be/stops/104511", "https://data.delijn.be/stops/107799"], ["https://data.delijn.be/stops/407588", "https://data.delijn.be/stops/409806"], ["https://data.delijn.be/stops/104749", "https://data.delijn.be/stops/107328"], ["https://data.delijn.be/stops/204517", "https://data.delijn.be/stops/205516"], ["https://data.delijn.be/stops/506190", "https://data.delijn.be/stops/506194"], ["https://data.delijn.be/stops/410126", "https://data.delijn.be/stops/410127"], ["https://data.delijn.be/stops/400491", "https://data.delijn.be/stops/400493"], ["https://data.delijn.be/stops/203686", "https://data.delijn.be/stops/203687"], ["https://data.delijn.be/stops/401280", "https://data.delijn.be/stops/401281"], ["https://data.delijn.be/stops/205489", "https://data.delijn.be/stops/205823"], ["https://data.delijn.be/stops/102157", "https://data.delijn.be/stops/109569"], ["https://data.delijn.be/stops/402517", "https://data.delijn.be/stops/402518"], ["https://data.delijn.be/stops/200452", "https://data.delijn.be/stops/208738"], ["https://data.delijn.be/stops/209395", "https://data.delijn.be/stops/508032"], ["https://data.delijn.be/stops/300801", "https://data.delijn.be/stops/302406"], ["https://data.delijn.be/stops/300008", "https://data.delijn.be/stops/300009"], ["https://data.delijn.be/stops/103329", "https://data.delijn.be/stops/109297"], ["https://data.delijn.be/stops/105740", "https://data.delijn.be/stops/105745"], ["https://data.delijn.be/stops/103790", "https://data.delijn.be/stops/104080"], ["https://data.delijn.be/stops/206321", "https://data.delijn.be/stops/207145"], ["https://data.delijn.be/stops/301255", "https://data.delijn.be/stops/301259"], ["https://data.delijn.be/stops/401174", "https://data.delijn.be/stops/406692"], ["https://data.delijn.be/stops/500115", "https://data.delijn.be/stops/507388"], ["https://data.delijn.be/stops/109910", "https://data.delijn.be/stops/109913"], ["https://data.delijn.be/stops/101261", "https://data.delijn.be/stops/103680"], ["https://data.delijn.be/stops/501509", "https://data.delijn.be/stops/506343"], ["https://data.delijn.be/stops/208044", "https://data.delijn.be/stops/208525"], ["https://data.delijn.be/stops/507709", "https://data.delijn.be/stops/508826"], ["https://data.delijn.be/stops/301789", "https://data.delijn.be/stops/302531"], ["https://data.delijn.be/stops/202253", "https://data.delijn.be/stops/203253"], ["https://data.delijn.be/stops/504613", "https://data.delijn.be/stops/509613"], ["https://data.delijn.be/stops/401326", "https://data.delijn.be/stops/401363"], ["https://data.delijn.be/stops/202725", "https://data.delijn.be/stops/203725"], ["https://data.delijn.be/stops/109263", "https://data.delijn.be/stops/407111"], ["https://data.delijn.be/stops/300028", "https://data.delijn.be/stops/307443"], ["https://data.delijn.be/stops/504213", "https://data.delijn.be/stops/504306"], ["https://data.delijn.be/stops/405479", "https://data.delijn.be/stops/409291"], ["https://data.delijn.be/stops/106075", "https://data.delijn.be/stops/106077"], ["https://data.delijn.be/stops/404594", "https://data.delijn.be/stops/404607"], ["https://data.delijn.be/stops/509164", "https://data.delijn.be/stops/509170"], ["https://data.delijn.be/stops/209301", "https://data.delijn.be/stops/209302"], ["https://data.delijn.be/stops/306847", "https://data.delijn.be/stops/306848"], ["https://data.delijn.be/stops/105858", "https://data.delijn.be/stops/105861"], ["https://data.delijn.be/stops/103535", "https://data.delijn.be/stops/106010"], ["https://data.delijn.be/stops/406087", "https://data.delijn.be/stops/410148"], ["https://data.delijn.be/stops/406469", "https://data.delijn.be/stops/406833"], ["https://data.delijn.be/stops/503341", "https://data.delijn.be/stops/508340"], ["https://data.delijn.be/stops/501500", "https://data.delijn.be/stops/506500"], ["https://data.delijn.be/stops/504598", "https://data.delijn.be/stops/504602"], ["https://data.delijn.be/stops/508066", "https://data.delijn.be/stops/508699"], ["https://data.delijn.be/stops/205101", "https://data.delijn.be/stops/205342"], ["https://data.delijn.be/stops/301399", "https://data.delijn.be/stops/303226"], ["https://data.delijn.be/stops/106219", "https://data.delijn.be/stops/106321"], ["https://data.delijn.be/stops/303166", "https://data.delijn.be/stops/307284"], ["https://data.delijn.be/stops/300841", "https://data.delijn.be/stops/333453"], ["https://data.delijn.be/stops/104802", "https://data.delijn.be/stops/109791"], ["https://data.delijn.be/stops/400924", "https://data.delijn.be/stops/400925"], ["https://data.delijn.be/stops/306719", "https://data.delijn.be/stops/306720"], ["https://data.delijn.be/stops/503685", "https://data.delijn.be/stops/504453"], ["https://data.delijn.be/stops/103259", "https://data.delijn.be/stops/105858"], ["https://data.delijn.be/stops/101828", "https://data.delijn.be/stops/101829"], ["https://data.delijn.be/stops/503325", "https://data.delijn.be/stops/503756"], ["https://data.delijn.be/stops/505291", "https://data.delijn.be/stops/505906"], ["https://data.delijn.be/stops/300665", "https://data.delijn.be/stops/306885"], ["https://data.delijn.be/stops/300582", "https://data.delijn.be/stops/307077"], ["https://data.delijn.be/stops/405512", "https://data.delijn.be/stops/407786"], ["https://data.delijn.be/stops/506072", "https://data.delijn.be/stops/506075"], ["https://data.delijn.be/stops/206722", "https://data.delijn.be/stops/207650"], ["https://data.delijn.be/stops/106645", "https://data.delijn.be/stops/106674"], ["https://data.delijn.be/stops/103159", "https://data.delijn.be/stops/406776"], ["https://data.delijn.be/stops/401312", "https://data.delijn.be/stops/405467"], ["https://data.delijn.be/stops/403740", "https://data.delijn.be/stops/403743"], ["https://data.delijn.be/stops/207537", "https://data.delijn.be/stops/209742"], ["https://data.delijn.be/stops/502476", "https://data.delijn.be/stops/507479"], ["https://data.delijn.be/stops/208751", "https://data.delijn.be/stops/209438"], ["https://data.delijn.be/stops/503897", "https://data.delijn.be/stops/505423"], ["https://data.delijn.be/stops/504428", "https://data.delijn.be/stops/508304"], ["https://data.delijn.be/stops/501051", "https://data.delijn.be/stops/506045"], ["https://data.delijn.be/stops/501003", "https://data.delijn.be/stops/501072"], ["https://data.delijn.be/stops/406318", "https://data.delijn.be/stops/406407"], ["https://data.delijn.be/stops/405820", "https://data.delijn.be/stops/409417"], ["https://data.delijn.be/stops/402156", "https://data.delijn.be/stops/402252"], ["https://data.delijn.be/stops/503661", "https://data.delijn.be/stops/508661"], ["https://data.delijn.be/stops/505398", "https://data.delijn.be/stops/506645"], ["https://data.delijn.be/stops/202827", "https://data.delijn.be/stops/218023"], ["https://data.delijn.be/stops/302271", "https://data.delijn.be/stops/306883"], ["https://data.delijn.be/stops/204155", "https://data.delijn.be/stops/204579"], ["https://data.delijn.be/stops/509029", "https://data.delijn.be/stops/509102"], ["https://data.delijn.be/stops/400910", "https://data.delijn.be/stops/400911"], ["https://data.delijn.be/stops/504644", "https://data.delijn.be/stops/504646"], ["https://data.delijn.be/stops/208761", "https://data.delijn.be/stops/208872"], ["https://data.delijn.be/stops/400658", "https://data.delijn.be/stops/400659"], ["https://data.delijn.be/stops/109360", "https://data.delijn.be/stops/109365"], ["https://data.delijn.be/stops/504146", "https://data.delijn.be/stops/505423"], ["https://data.delijn.be/stops/405129", "https://data.delijn.be/stops/405496"], ["https://data.delijn.be/stops/102899", "https://data.delijn.be/stops/107069"], ["https://data.delijn.be/stops/207941", "https://data.delijn.be/stops/208564"], ["https://data.delijn.be/stops/206820", "https://data.delijn.be/stops/207820"], ["https://data.delijn.be/stops/205099", "https://data.delijn.be/stops/205340"], ["https://data.delijn.be/stops/400867", "https://data.delijn.be/stops/409530"], ["https://data.delijn.be/stops/405078", "https://data.delijn.be/stops/405107"], ["https://data.delijn.be/stops/302711", "https://data.delijn.be/stops/308595"], ["https://data.delijn.be/stops/303078", "https://data.delijn.be/stops/303080"], ["https://data.delijn.be/stops/503710", "https://data.delijn.be/stops/508710"], ["https://data.delijn.be/stops/305275", "https://data.delijn.be/stops/305276"], ["https://data.delijn.be/stops/202036", "https://data.delijn.be/stops/203982"], ["https://data.delijn.be/stops/407422", "https://data.delijn.be/stops/407427"], ["https://data.delijn.be/stops/107970", "https://data.delijn.be/stops/306759"], ["https://data.delijn.be/stops/301356", "https://data.delijn.be/stops/301453"], ["https://data.delijn.be/stops/400258", "https://data.delijn.be/stops/405557"], ["https://data.delijn.be/stops/101668", "https://data.delijn.be/stops/101669"], ["https://data.delijn.be/stops/103994", "https://data.delijn.be/stops/108386"], ["https://data.delijn.be/stops/206049", "https://data.delijn.be/stops/207040"], ["https://data.delijn.be/stops/301792", "https://data.delijn.be/stops/305395"], ["https://data.delijn.be/stops/508261", "https://data.delijn.be/stops/509792"], ["https://data.delijn.be/stops/305251", "https://data.delijn.be/stops/305287"], ["https://data.delijn.be/stops/202108", "https://data.delijn.be/stops/202639"], ["https://data.delijn.be/stops/202629", "https://data.delijn.be/stops/203629"], ["https://data.delijn.be/stops/304840", "https://data.delijn.be/stops/304884"], ["https://data.delijn.be/stops/503648", "https://data.delijn.be/stops/508648"], ["https://data.delijn.be/stops/109192", "https://data.delijn.be/stops/109193"], ["https://data.delijn.be/stops/503023", "https://data.delijn.be/stops/508025"], ["https://data.delijn.be/stops/302148", "https://data.delijn.be/stops/302151"], ["https://data.delijn.be/stops/107559", "https://data.delijn.be/stops/107562"], ["https://data.delijn.be/stops/103282", "https://data.delijn.be/stops/104300"], ["https://data.delijn.be/stops/102424", "https://data.delijn.be/stops/105100"], ["https://data.delijn.be/stops/307030", "https://data.delijn.be/stops/307035"], ["https://data.delijn.be/stops/102869", "https://data.delijn.be/stops/103645"], ["https://data.delijn.be/stops/107692", "https://data.delijn.be/stops/109995"], ["https://data.delijn.be/stops/406204", "https://data.delijn.be/stops/406205"], ["https://data.delijn.be/stops/504518", "https://data.delijn.be/stops/509518"], ["https://data.delijn.be/stops/208588", "https://data.delijn.be/stops/209588"], ["https://data.delijn.be/stops/502763", "https://data.delijn.be/stops/507763"], ["https://data.delijn.be/stops/405901", "https://data.delijn.be/stops/405907"], ["https://data.delijn.be/stops/103746", "https://data.delijn.be/stops/105791"], ["https://data.delijn.be/stops/305178", "https://data.delijn.be/stops/305188"], ["https://data.delijn.be/stops/201394", "https://data.delijn.be/stops/208722"], ["https://data.delijn.be/stops/305223", "https://data.delijn.be/stops/305236"], ["https://data.delijn.be/stops/408590", "https://data.delijn.be/stops/408591"], ["https://data.delijn.be/stops/303800", "https://data.delijn.be/stops/303803"], ["https://data.delijn.be/stops/207450", "https://data.delijn.be/stops/207452"], ["https://data.delijn.be/stops/302492", "https://data.delijn.be/stops/302720"], ["https://data.delijn.be/stops/401151", "https://data.delijn.be/stops/407796"], ["https://data.delijn.be/stops/503449", "https://data.delijn.be/stops/504873"], ["https://data.delijn.be/stops/308239", "https://data.delijn.be/stops/308243"], ["https://data.delijn.be/stops/105337", "https://data.delijn.be/stops/105339"], ["https://data.delijn.be/stops/200868", "https://data.delijn.be/stops/202483"], ["https://data.delijn.be/stops/109044", "https://data.delijn.be/stops/109086"], ["https://data.delijn.be/stops/502101", "https://data.delijn.be/stops/507130"], ["https://data.delijn.be/stops/509031", "https://data.delijn.be/stops/509033"], ["https://data.delijn.be/stops/508347", "https://data.delijn.be/stops/508388"], ["https://data.delijn.be/stops/200777", "https://data.delijn.be/stops/209307"], ["https://data.delijn.be/stops/103989", "https://data.delijn.be/stops/108558"], ["https://data.delijn.be/stops/406611", "https://data.delijn.be/stops/407410"], ["https://data.delijn.be/stops/208507", "https://data.delijn.be/stops/217004"], ["https://data.delijn.be/stops/305091", "https://data.delijn.be/stops/305095"], ["https://data.delijn.be/stops/505026", "https://data.delijn.be/stops/505345"], ["https://data.delijn.be/stops/106172", "https://data.delijn.be/stops/109103"], ["https://data.delijn.be/stops/407018", "https://data.delijn.be/stops/407086"], ["https://data.delijn.be/stops/503446", "https://data.delijn.be/stops/508951"], ["https://data.delijn.be/stops/302425", "https://data.delijn.be/stops/302449"], ["https://data.delijn.be/stops/304510", "https://data.delijn.be/stops/306346"], ["https://data.delijn.be/stops/102319", "https://data.delijn.be/stops/106224"], ["https://data.delijn.be/stops/403912", "https://data.delijn.be/stops/406007"], ["https://data.delijn.be/stops/104288", "https://data.delijn.be/stops/105859"], ["https://data.delijn.be/stops/407178", "https://data.delijn.be/stops/408729"], ["https://data.delijn.be/stops/503676", "https://data.delijn.be/stops/508676"], ["https://data.delijn.be/stops/407005", "https://data.delijn.be/stops/408195"], ["https://data.delijn.be/stops/200551", "https://data.delijn.be/stops/200552"], ["https://data.delijn.be/stops/101943", "https://data.delijn.be/stops/108758"], ["https://data.delijn.be/stops/505163", "https://data.delijn.be/stops/509411"], ["https://data.delijn.be/stops/501180", "https://data.delijn.be/stops/506183"], ["https://data.delijn.be/stops/505258", "https://data.delijn.be/stops/505943"], ["https://data.delijn.be/stops/200143", "https://data.delijn.be/stops/200780"], ["https://data.delijn.be/stops/103885", "https://data.delijn.be/stops/105470"], ["https://data.delijn.be/stops/502266", "https://data.delijn.be/stops/507266"], ["https://data.delijn.be/stops/205324", "https://data.delijn.be/stops/205340"], ["https://data.delijn.be/stops/505095", "https://data.delijn.be/stops/505096"], ["https://data.delijn.be/stops/504616", "https://data.delijn.be/stops/509289"], ["https://data.delijn.be/stops/408264", "https://data.delijn.be/stops/408265"], ["https://data.delijn.be/stops/501409", "https://data.delijn.be/stops/506416"], ["https://data.delijn.be/stops/106193", "https://data.delijn.be/stops/107443"], ["https://data.delijn.be/stops/106826", "https://data.delijn.be/stops/109749"], ["https://data.delijn.be/stops/502442", "https://data.delijn.be/stops/502453"], ["https://data.delijn.be/stops/503755", "https://data.delijn.be/stops/504965"], ["https://data.delijn.be/stops/104942", "https://data.delijn.be/stops/107217"], ["https://data.delijn.be/stops/301596", "https://data.delijn.be/stops/304475"], ["https://data.delijn.be/stops/207888", "https://data.delijn.be/stops/207891"], ["https://data.delijn.be/stops/101012", "https://data.delijn.be/stops/102694"], ["https://data.delijn.be/stops/101576", "https://data.delijn.be/stops/105462"], ["https://data.delijn.be/stops/402704", "https://data.delijn.be/stops/402867"], ["https://data.delijn.be/stops/208307", "https://data.delijn.be/stops/209307"], ["https://data.delijn.be/stops/209039", "https://data.delijn.be/stops/209047"], ["https://data.delijn.be/stops/505817", "https://data.delijn.be/stops/509120"], ["https://data.delijn.be/stops/204772", "https://data.delijn.be/stops/205730"], ["https://data.delijn.be/stops/303062", "https://data.delijn.be/stops/303091"], ["https://data.delijn.be/stops/503152", "https://data.delijn.be/stops/508152"], ["https://data.delijn.be/stops/301124", "https://data.delijn.be/stops/301229"], ["https://data.delijn.be/stops/409739", "https://data.delijn.be/stops/409999"], ["https://data.delijn.be/stops/305408", "https://data.delijn.be/stops/305421"], ["https://data.delijn.be/stops/408526", "https://data.delijn.be/stops/408688"], ["https://data.delijn.be/stops/101207", "https://data.delijn.be/stops/101661"], ["https://data.delijn.be/stops/406975", "https://data.delijn.be/stops/409468"], ["https://data.delijn.be/stops/201886", "https://data.delijn.be/stops/203976"], ["https://data.delijn.be/stops/205207", "https://data.delijn.be/stops/205472"], ["https://data.delijn.be/stops/107189", "https://data.delijn.be/stops/107736"], ["https://data.delijn.be/stops/203238", "https://data.delijn.be/stops/210076"], ["https://data.delijn.be/stops/108401", "https://data.delijn.be/stops/306638"], ["https://data.delijn.be/stops/103645", "https://data.delijn.be/stops/103651"], ["https://data.delijn.be/stops/204202", "https://data.delijn.be/stops/205081"], ["https://data.delijn.be/stops/308466", "https://data.delijn.be/stops/308468"], ["https://data.delijn.be/stops/107493", "https://data.delijn.be/stops/305796"], ["https://data.delijn.be/stops/105134", "https://data.delijn.be/stops/305825"], ["https://data.delijn.be/stops/304468", "https://data.delijn.be/stops/304555"], ["https://data.delijn.be/stops/103631", "https://data.delijn.be/stops/107566"], ["https://data.delijn.be/stops/208470", "https://data.delijn.be/stops/209674"], ["https://data.delijn.be/stops/508680", "https://data.delijn.be/stops/509815"], ["https://data.delijn.be/stops/300397", "https://data.delijn.be/stops/300398"], ["https://data.delijn.be/stops/300119", "https://data.delijn.be/stops/300133"], ["https://data.delijn.be/stops/204122", "https://data.delijn.be/stops/214004"], ["https://data.delijn.be/stops/203963", "https://data.delijn.be/stops/207270"], ["https://data.delijn.be/stops/404258", "https://data.delijn.be/stops/405124"], ["https://data.delijn.be/stops/408844", "https://data.delijn.be/stops/408846"], ["https://data.delijn.be/stops/207631", "https://data.delijn.be/stops/208655"], ["https://data.delijn.be/stops/201071", "https://data.delijn.be/stops/201072"], ["https://data.delijn.be/stops/504770", "https://data.delijn.be/stops/505919"], ["https://data.delijn.be/stops/503189", "https://data.delijn.be/stops/508189"], ["https://data.delijn.be/stops/307720", "https://data.delijn.be/stops/307722"], ["https://data.delijn.be/stops/403283", "https://data.delijn.be/stops/403360"], ["https://data.delijn.be/stops/104572", "https://data.delijn.be/stops/107531"], ["https://data.delijn.be/stops/205507", "https://data.delijn.be/stops/205508"], ["https://data.delijn.be/stops/306664", "https://data.delijn.be/stops/306665"], ["https://data.delijn.be/stops/404361", "https://data.delijn.be/stops/408762"], ["https://data.delijn.be/stops/103748", "https://data.delijn.be/stops/104467"], ["https://data.delijn.be/stops/200701", "https://data.delijn.be/stops/201411"], ["https://data.delijn.be/stops/503555", "https://data.delijn.be/stops/505191"], ["https://data.delijn.be/stops/108309", "https://data.delijn.be/stops/109374"], ["https://data.delijn.be/stops/109365", "https://data.delijn.be/stops/109367"], ["https://data.delijn.be/stops/209509", "https://data.delijn.be/stops/209510"], ["https://data.delijn.be/stops/502483", "https://data.delijn.be/stops/505078"], ["https://data.delijn.be/stops/305231", "https://data.delijn.be/stops/305232"], ["https://data.delijn.be/stops/404174", "https://data.delijn.be/stops/404219"], ["https://data.delijn.be/stops/207144", "https://data.delijn.be/stops/207145"], ["https://data.delijn.be/stops/407114", "https://data.delijn.be/stops/410148"], ["https://data.delijn.be/stops/400152", "https://data.delijn.be/stops/400153"], ["https://data.delijn.be/stops/403160", "https://data.delijn.be/stops/403221"], ["https://data.delijn.be/stops/402036", "https://data.delijn.be/stops/402038"], ["https://data.delijn.be/stops/209525", "https://data.delijn.be/stops/218017"], ["https://data.delijn.be/stops/502435", "https://data.delijn.be/stops/507420"], ["https://data.delijn.be/stops/403976", "https://data.delijn.be/stops/408709"], ["https://data.delijn.be/stops/101074", "https://data.delijn.be/stops/107187"], ["https://data.delijn.be/stops/401587", "https://data.delijn.be/stops/408635"], ["https://data.delijn.be/stops/202824", "https://data.delijn.be/stops/211022"], ["https://data.delijn.be/stops/403088", "https://data.delijn.be/stops/403095"], ["https://data.delijn.be/stops/404288", "https://data.delijn.be/stops/409747"], ["https://data.delijn.be/stops/407159", "https://data.delijn.be/stops/409856"], ["https://data.delijn.be/stops/400872", "https://data.delijn.be/stops/403586"], ["https://data.delijn.be/stops/405823", "https://data.delijn.be/stops/405833"], ["https://data.delijn.be/stops/404813", "https://data.delijn.be/stops/406991"], ["https://data.delijn.be/stops/506227", "https://data.delijn.be/stops/506418"], ["https://data.delijn.be/stops/208382", "https://data.delijn.be/stops/209382"], ["https://data.delijn.be/stops/108647", "https://data.delijn.be/stops/109680"], ["https://data.delijn.be/stops/405012", "https://data.delijn.be/stops/405019"], ["https://data.delijn.be/stops/302657", "https://data.delijn.be/stops/303259"], ["https://data.delijn.be/stops/501321", "https://data.delijn.be/stops/501546"], ["https://data.delijn.be/stops/503091", "https://data.delijn.be/stops/503103"], ["https://data.delijn.be/stops/108353", "https://data.delijn.be/stops/109335"], ["https://data.delijn.be/stops/102649", "https://data.delijn.be/stops/107793"], ["https://data.delijn.be/stops/302009", "https://data.delijn.be/stops/306341"], ["https://data.delijn.be/stops/200689", "https://data.delijn.be/stops/210081"], ["https://data.delijn.be/stops/202478", "https://data.delijn.be/stops/202481"], ["https://data.delijn.be/stops/302161", "https://data.delijn.be/stops/302177"], ["https://data.delijn.be/stops/206033", "https://data.delijn.be/stops/206215"], ["https://data.delijn.be/stops/205983", "https://data.delijn.be/stops/208677"], ["https://data.delijn.be/stops/403039", "https://data.delijn.be/stops/404817"], ["https://data.delijn.be/stops/300431", "https://data.delijn.be/stops/300438"], ["https://data.delijn.be/stops/503151", "https://data.delijn.be/stops/505910"], ["https://data.delijn.be/stops/505136", "https://data.delijn.be/stops/508668"], ["https://data.delijn.be/stops/400326", "https://data.delijn.be/stops/406769"], ["https://data.delijn.be/stops/400852", "https://data.delijn.be/stops/400853"], ["https://data.delijn.be/stops/305222", "https://data.delijn.be/stops/305321"], ["https://data.delijn.be/stops/500946", "https://data.delijn.be/stops/505415"], ["https://data.delijn.be/stops/506055", "https://data.delijn.be/stops/506057"], ["https://data.delijn.be/stops/106255", "https://data.delijn.be/stops/106257"], ["https://data.delijn.be/stops/300828", "https://data.delijn.be/stops/306641"], ["https://data.delijn.be/stops/208191", "https://data.delijn.be/stops/209405"], ["https://data.delijn.be/stops/504267", "https://data.delijn.be/stops/509267"], ["https://data.delijn.be/stops/304556", "https://data.delijn.be/stops/307571"], ["https://data.delijn.be/stops/106771", "https://data.delijn.be/stops/106807"], ["https://data.delijn.be/stops/208671", "https://data.delijn.be/stops/218021"], ["https://data.delijn.be/stops/208584", "https://data.delijn.be/stops/209697"], ["https://data.delijn.be/stops/203079", "https://data.delijn.be/stops/203493"], ["https://data.delijn.be/stops/502398", "https://data.delijn.be/stops/502413"], ["https://data.delijn.be/stops/103302", "https://data.delijn.be/stops/105768"], ["https://data.delijn.be/stops/201912", "https://data.delijn.be/stops/202967"], ["https://data.delijn.be/stops/106955", "https://data.delijn.be/stops/107271"], ["https://data.delijn.be/stops/301334", "https://data.delijn.be/stops/301342"], ["https://data.delijn.be/stops/503916", "https://data.delijn.be/stops/503927"], ["https://data.delijn.be/stops/200181", "https://data.delijn.be/stops/201181"], ["https://data.delijn.be/stops/207823", "https://data.delijn.be/stops/207824"], ["https://data.delijn.be/stops/403608", "https://data.delijn.be/stops/410038"], ["https://data.delijn.be/stops/200131", "https://data.delijn.be/stops/205556"], ["https://data.delijn.be/stops/200888", "https://data.delijn.be/stops/210056"], ["https://data.delijn.be/stops/406564", "https://data.delijn.be/stops/407200"], ["https://data.delijn.be/stops/401216", "https://data.delijn.be/stops/401338"], ["https://data.delijn.be/stops/206355", "https://data.delijn.be/stops/207344"], ["https://data.delijn.be/stops/501445", "https://data.delijn.be/stops/501484"], ["https://data.delijn.be/stops/204657", "https://data.delijn.be/stops/204658"], ["https://data.delijn.be/stops/106232", "https://data.delijn.be/stops/109803"], ["https://data.delijn.be/stops/101891", "https://data.delijn.be/stops/104952"], ["https://data.delijn.be/stops/204423", "https://data.delijn.be/stops/205434"], ["https://data.delijn.be/stops/108073", "https://data.delijn.be/stops/108841"], ["https://data.delijn.be/stops/407718", "https://data.delijn.be/stops/407729"], ["https://data.delijn.be/stops/408532", "https://data.delijn.be/stops/408750"], ["https://data.delijn.be/stops/300365", "https://data.delijn.be/stops/300402"], ["https://data.delijn.be/stops/206234", "https://data.delijn.be/stops/207233"], ["https://data.delijn.be/stops/104897", "https://data.delijn.be/stops/105444"], ["https://data.delijn.be/stops/101370", "https://data.delijn.be/stops/104785"], ["https://data.delijn.be/stops/202181", "https://data.delijn.be/stops/203182"], ["https://data.delijn.be/stops/400804", "https://data.delijn.be/stops/400879"], ["https://data.delijn.be/stops/203439", "https://data.delijn.be/stops/203482"], ["https://data.delijn.be/stops/505791", "https://data.delijn.be/stops/509433"], ["https://data.delijn.be/stops/404581", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/504477", "https://data.delijn.be/stops/509175"], ["https://data.delijn.be/stops/206883", "https://data.delijn.be/stops/207030"], ["https://data.delijn.be/stops/204711", "https://data.delijn.be/stops/205721"], ["https://data.delijn.be/stops/401828", "https://data.delijn.be/stops/406020"], ["https://data.delijn.be/stops/506771", "https://data.delijn.be/stops/506772"], ["https://data.delijn.be/stops/508693", "https://data.delijn.be/stops/508719"], ["https://data.delijn.be/stops/204076", "https://data.delijn.be/stops/205082"], ["https://data.delijn.be/stops/103231", "https://data.delijn.be/stops/103232"], ["https://data.delijn.be/stops/304480", "https://data.delijn.be/stops/304481"], ["https://data.delijn.be/stops/200959", "https://data.delijn.be/stops/201907"], ["https://data.delijn.be/stops/409144", "https://data.delijn.be/stops/409145"], ["https://data.delijn.be/stops/104468", "https://data.delijn.be/stops/104469"], ["https://data.delijn.be/stops/200421", "https://data.delijn.be/stops/211405"], ["https://data.delijn.be/stops/503458", "https://data.delijn.be/stops/508459"], ["https://data.delijn.be/stops/305154", "https://data.delijn.be/stops/305155"], ["https://data.delijn.be/stops/207664", "https://data.delijn.be/stops/209676"], ["https://data.delijn.be/stops/204703", "https://data.delijn.be/stops/205703"], ["https://data.delijn.be/stops/504578", "https://data.delijn.be/stops/505215"], ["https://data.delijn.be/stops/404247", "https://data.delijn.be/stops/409789"], ["https://data.delijn.be/stops/206795", "https://data.delijn.be/stops/208035"], ["https://data.delijn.be/stops/200391", "https://data.delijn.be/stops/208719"], ["https://data.delijn.be/stops/202117", "https://data.delijn.be/stops/202494"], ["https://data.delijn.be/stops/106801", "https://data.delijn.be/stops/106804"], ["https://data.delijn.be/stops/102021", "https://data.delijn.be/stops/109949"], ["https://data.delijn.be/stops/203873", "https://data.delijn.be/stops/209713"], ["https://data.delijn.be/stops/408164", "https://data.delijn.be/stops/409136"], ["https://data.delijn.be/stops/103991", "https://data.delijn.be/stops/105309"], ["https://data.delijn.be/stops/400052", "https://data.delijn.be/stops/400062"], ["https://data.delijn.be/stops/102237", "https://data.delijn.be/stops/102566"], ["https://data.delijn.be/stops/101024", "https://data.delijn.be/stops/105615"], ["https://data.delijn.be/stops/403307", "https://data.delijn.be/stops/403309"], ["https://data.delijn.be/stops/207678", "https://data.delijn.be/stops/207679"], ["https://data.delijn.be/stops/104953", "https://data.delijn.be/stops/406502"], ["https://data.delijn.be/stops/502300", "https://data.delijn.be/stops/505676"], ["https://data.delijn.be/stops/406316", "https://data.delijn.be/stops/406321"], ["https://data.delijn.be/stops/501115", "https://data.delijn.be/stops/506642"], ["https://data.delijn.be/stops/304698", "https://data.delijn.be/stops/304699"], ["https://data.delijn.be/stops/404709", "https://data.delijn.be/stops/406109"], ["https://data.delijn.be/stops/308748", "https://data.delijn.be/stops/308749"], ["https://data.delijn.be/stops/403954", "https://data.delijn.be/stops/404027"], ["https://data.delijn.be/stops/304669", "https://data.delijn.be/stops/304685"], ["https://data.delijn.be/stops/200339", "https://data.delijn.be/stops/201325"], ["https://data.delijn.be/stops/103121", "https://data.delijn.be/stops/104124"], ["https://data.delijn.be/stops/408082", "https://data.delijn.be/stops/408083"], ["https://data.delijn.be/stops/209131", "https://data.delijn.be/stops/209132"], ["https://data.delijn.be/stops/402865", "https://data.delijn.be/stops/402867"], ["https://data.delijn.be/stops/208478", "https://data.delijn.be/stops/209478"], ["https://data.delijn.be/stops/403302", "https://data.delijn.be/stops/405641"], ["https://data.delijn.be/stops/200839", "https://data.delijn.be/stops/200844"], ["https://data.delijn.be/stops/102835", "https://data.delijn.be/stops/103131"], ["https://data.delijn.be/stops/501436", "https://data.delijn.be/stops/501733"], ["https://data.delijn.be/stops/204750", "https://data.delijn.be/stops/204751"], ["https://data.delijn.be/stops/202429", "https://data.delijn.be/stops/203438"], ["https://data.delijn.be/stops/208664", "https://data.delijn.be/stops/208665"], ["https://data.delijn.be/stops/303576", "https://data.delijn.be/stops/305280"], ["https://data.delijn.be/stops/201646", "https://data.delijn.be/stops/201647"], ["https://data.delijn.be/stops/400861", "https://data.delijn.be/stops/400866"], ["https://data.delijn.be/stops/400227", "https://data.delijn.be/stops/410000"], ["https://data.delijn.be/stops/504286", "https://data.delijn.be/stops/509282"], ["https://data.delijn.be/stops/400410", "https://data.delijn.be/stops/406861"], ["https://data.delijn.be/stops/302130", "https://data.delijn.be/stops/305596"], ["https://data.delijn.be/stops/107900", "https://data.delijn.be/stops/107905"], ["https://data.delijn.be/stops/502591", "https://data.delijn.be/stops/507751"], ["https://data.delijn.be/stops/402749", "https://data.delijn.be/stops/405202"], ["https://data.delijn.be/stops/502500", "https://data.delijn.be/stops/505767"], ["https://data.delijn.be/stops/300455", "https://data.delijn.be/stops/305005"], ["https://data.delijn.be/stops/303063", "https://data.delijn.be/stops/303107"], ["https://data.delijn.be/stops/204774", "https://data.delijn.be/stops/205094"], ["https://data.delijn.be/stops/401340", "https://data.delijn.be/stops/406648"], ["https://data.delijn.be/stops/101494", "https://data.delijn.be/stops/108302"], ["https://data.delijn.be/stops/505988", "https://data.delijn.be/stops/509169"], ["https://data.delijn.be/stops/406834", "https://data.delijn.be/stops/407138"], ["https://data.delijn.be/stops/501446", "https://data.delijn.be/stops/501492"], ["https://data.delijn.be/stops/504154", "https://data.delijn.be/stops/504990"], ["https://data.delijn.be/stops/405879", "https://data.delijn.be/stops/409750"], ["https://data.delijn.be/stops/204124", "https://data.delijn.be/stops/205124"], ["https://data.delijn.be/stops/107345", "https://data.delijn.be/stops/108405"], ["https://data.delijn.be/stops/307695", "https://data.delijn.be/stops/307696"], ["https://data.delijn.be/stops/407744", "https://data.delijn.be/stops/409785"], ["https://data.delijn.be/stops/502656", "https://data.delijn.be/stops/507559"], ["https://data.delijn.be/stops/405277", "https://data.delijn.be/stops/405283"], ["https://data.delijn.be/stops/400784", "https://data.delijn.be/stops/400834"], ["https://data.delijn.be/stops/202857", "https://data.delijn.be/stops/203853"], ["https://data.delijn.be/stops/204513", "https://data.delijn.be/stops/204514"], ["https://data.delijn.be/stops/204123", "https://data.delijn.be/stops/204146"], ["https://data.delijn.be/stops/401248", "https://data.delijn.be/stops/401259"], ["https://data.delijn.be/stops/206352", "https://data.delijn.be/stops/206916"], ["https://data.delijn.be/stops/505371", "https://data.delijn.be/stops/508251"], ["https://data.delijn.be/stops/508729", "https://data.delijn.be/stops/508742"], ["https://data.delijn.be/stops/101992", "https://data.delijn.be/stops/104118"], ["https://data.delijn.be/stops/206510", "https://data.delijn.be/stops/207135"], ["https://data.delijn.be/stops/103503", "https://data.delijn.be/stops/109896"], ["https://data.delijn.be/stops/204158", "https://data.delijn.be/stops/205590"], ["https://data.delijn.be/stops/302760", "https://data.delijn.be/stops/302772"], ["https://data.delijn.be/stops/504045", "https://data.delijn.be/stops/504962"], ["https://data.delijn.be/stops/106423", "https://data.delijn.be/stops/106557"], ["https://data.delijn.be/stops/403314", "https://data.delijn.be/stops/410126"], ["https://data.delijn.be/stops/102158", "https://data.delijn.be/stops/104962"], ["https://data.delijn.be/stops/108488", "https://data.delijn.be/stops/305990"], ["https://data.delijn.be/stops/107546", "https://data.delijn.be/stops/109589"], ["https://data.delijn.be/stops/405251", "https://data.delijn.be/stops/408369"], ["https://data.delijn.be/stops/103235", "https://data.delijn.be/stops/103250"], ["https://data.delijn.be/stops/505752", "https://data.delijn.be/stops/508327"], ["https://data.delijn.be/stops/406194", "https://data.delijn.be/stops/409529"], ["https://data.delijn.be/stops/300086", "https://data.delijn.be/stops/307361"], ["https://data.delijn.be/stops/105383", "https://data.delijn.be/stops/105389"], ["https://data.delijn.be/stops/203494", "https://data.delijn.be/stops/211043"], ["https://data.delijn.be/stops/209432", "https://data.delijn.be/stops/209433"], ["https://data.delijn.be/stops/301789", "https://data.delijn.be/stops/308886"], ["https://data.delijn.be/stops/404285", "https://data.delijn.be/stops/407273"], ["https://data.delijn.be/stops/301092", "https://data.delijn.be/stops/301093"], ["https://data.delijn.be/stops/502043", "https://data.delijn.be/stops/507591"], ["https://data.delijn.be/stops/502553", "https://data.delijn.be/stops/507656"], ["https://data.delijn.be/stops/505299", "https://data.delijn.be/stops/509447"], ["https://data.delijn.be/stops/407537", "https://data.delijn.be/stops/409112"], ["https://data.delijn.be/stops/408593", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/102529", "https://data.delijn.be/stops/408352"], ["https://data.delijn.be/stops/109448", "https://data.delijn.be/stops/109450"], ["https://data.delijn.be/stops/305146", "https://data.delijn.be/stops/305185"], ["https://data.delijn.be/stops/208422", "https://data.delijn.be/stops/208742"], ["https://data.delijn.be/stops/405492", "https://data.delijn.be/stops/409318"], ["https://data.delijn.be/stops/301114", "https://data.delijn.be/stops/307636"], ["https://data.delijn.be/stops/108838", "https://data.delijn.be/stops/108853"], ["https://data.delijn.be/stops/503126", "https://data.delijn.be/stops/508126"], ["https://data.delijn.be/stops/109087", "https://data.delijn.be/stops/109317"], ["https://data.delijn.be/stops/401629", "https://data.delijn.be/stops/308218"], ["https://data.delijn.be/stops/201945", "https://data.delijn.be/stops/201946"], ["https://data.delijn.be/stops/301626", "https://data.delijn.be/stops/301627"], ["https://data.delijn.be/stops/202176", "https://data.delijn.be/stops/203497"], ["https://data.delijn.be/stops/403772", "https://data.delijn.be/stops/403773"], ["https://data.delijn.be/stops/107346", "https://data.delijn.be/stops/107347"], ["https://data.delijn.be/stops/206723", "https://data.delijn.be/stops/207986"], ["https://data.delijn.be/stops/101951", "https://data.delijn.be/stops/108794"], ["https://data.delijn.be/stops/504586", "https://data.delijn.be/stops/509581"], ["https://data.delijn.be/stops/202693", "https://data.delijn.be/stops/203678"], ["https://data.delijn.be/stops/404883", "https://data.delijn.be/stops/404964"], ["https://data.delijn.be/stops/405288", "https://data.delijn.be/stops/406253"], ["https://data.delijn.be/stops/401864", "https://data.delijn.be/stops/410354"], ["https://data.delijn.be/stops/502032", "https://data.delijn.be/stops/507032"], ["https://data.delijn.be/stops/109910", "https://data.delijn.be/stops/301152"], ["https://data.delijn.be/stops/304355", "https://data.delijn.be/stops/304356"], ["https://data.delijn.be/stops/105206", "https://data.delijn.be/stops/105207"], ["https://data.delijn.be/stops/108687", "https://data.delijn.be/stops/108688"], ["https://data.delijn.be/stops/201360", "https://data.delijn.be/stops/201361"], ["https://data.delijn.be/stops/401426", "https://data.delijn.be/stops/401445"], ["https://data.delijn.be/stops/405794", "https://data.delijn.be/stops/409437"], ["https://data.delijn.be/stops/104713", "https://data.delijn.be/stops/104736"], ["https://data.delijn.be/stops/303020", "https://data.delijn.be/stops/304228"], ["https://data.delijn.be/stops/508115", "https://data.delijn.be/stops/508884"], ["https://data.delijn.be/stops/405581", "https://data.delijn.be/stops/405585"], ["https://data.delijn.be/stops/503217", "https://data.delijn.be/stops/509951"], ["https://data.delijn.be/stops/303420", "https://data.delijn.be/stops/303462"], ["https://data.delijn.be/stops/205481", "https://data.delijn.be/stops/205482"], ["https://data.delijn.be/stops/406635", "https://data.delijn.be/stops/407442"], ["https://data.delijn.be/stops/308151", "https://data.delijn.be/stops/308166"], ["https://data.delijn.be/stops/303100", "https://data.delijn.be/stops/303119"], ["https://data.delijn.be/stops/307476", "https://data.delijn.be/stops/307478"], ["https://data.delijn.be/stops/305587", "https://data.delijn.be/stops/306765"], ["https://data.delijn.be/stops/202762", "https://data.delijn.be/stops/203762"], ["https://data.delijn.be/stops/200429", "https://data.delijn.be/stops/201549"], ["https://data.delijn.be/stops/201560", "https://data.delijn.be/stops/210067"], ["https://data.delijn.be/stops/102698", "https://data.delijn.be/stops/103743"], ["https://data.delijn.be/stops/504520", "https://data.delijn.be/stops/504836"], ["https://data.delijn.be/stops/507814", "https://data.delijn.be/stops/508462"], ["https://data.delijn.be/stops/401786", "https://data.delijn.be/stops/406144"], ["https://data.delijn.be/stops/102912", "https://data.delijn.be/stops/106705"], ["https://data.delijn.be/stops/103037", "https://data.delijn.be/stops/103038"], ["https://data.delijn.be/stops/206582", "https://data.delijn.be/stops/207822"], ["https://data.delijn.be/stops/408196", "https://data.delijn.be/stops/408414"], ["https://data.delijn.be/stops/405980", "https://data.delijn.be/stops/405981"], ["https://data.delijn.be/stops/101296", "https://data.delijn.be/stops/105492"], ["https://data.delijn.be/stops/103532", "https://data.delijn.be/stops/106335"], ["https://data.delijn.be/stops/108446", "https://data.delijn.be/stops/108449"], ["https://data.delijn.be/stops/208795", "https://data.delijn.be/stops/209231"], ["https://data.delijn.be/stops/505971", "https://data.delijn.be/stops/509607"], ["https://data.delijn.be/stops/201153", "https://data.delijn.be/stops/203358"], ["https://data.delijn.be/stops/505780", "https://data.delijn.be/stops/509880"], ["https://data.delijn.be/stops/103022", "https://data.delijn.be/stops/103023"], ["https://data.delijn.be/stops/201940", "https://data.delijn.be/stops/210098"], ["https://data.delijn.be/stops/403193", "https://data.delijn.be/stops/403440"], ["https://data.delijn.be/stops/202084", "https://data.delijn.be/stops/203084"], ["https://data.delijn.be/stops/109318", "https://data.delijn.be/stops/109354"], ["https://data.delijn.be/stops/405438", "https://data.delijn.be/stops/408589"], ["https://data.delijn.be/stops/501636", "https://data.delijn.be/stops/506496"], ["https://data.delijn.be/stops/103027", "https://data.delijn.be/stops/307523"], ["https://data.delijn.be/stops/505255", "https://data.delijn.be/stops/508922"], ["https://data.delijn.be/stops/302585", "https://data.delijn.be/stops/302601"], ["https://data.delijn.be/stops/407807", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/303240", "https://data.delijn.be/stops/306749"], ["https://data.delijn.be/stops/408715", "https://data.delijn.be/stops/408736"], ["https://data.delijn.be/stops/109320", "https://data.delijn.be/stops/109322"], ["https://data.delijn.be/stops/102642", "https://data.delijn.be/stops/107867"], ["https://data.delijn.be/stops/406192", "https://data.delijn.be/stops/406818"], ["https://data.delijn.be/stops/405972", "https://data.delijn.be/stops/405973"], ["https://data.delijn.be/stops/202654", "https://data.delijn.be/stops/203653"], ["https://data.delijn.be/stops/304933", "https://data.delijn.be/stops/305244"], ["https://data.delijn.be/stops/205312", "https://data.delijn.be/stops/205351"], ["https://data.delijn.be/stops/102485", "https://data.delijn.be/stops/104410"], ["https://data.delijn.be/stops/303977", "https://data.delijn.be/stops/303978"], ["https://data.delijn.be/stops/202862", "https://data.delijn.be/stops/203862"], ["https://data.delijn.be/stops/300795", "https://data.delijn.be/stops/303121"], ["https://data.delijn.be/stops/508434", "https://data.delijn.be/stops/508443"], ["https://data.delijn.be/stops/505612", "https://data.delijn.be/stops/509781"], ["https://data.delijn.be/stops/408062", "https://data.delijn.be/stops/408089"], ["https://data.delijn.be/stops/408637", "https://data.delijn.be/stops/408655"], ["https://data.delijn.be/stops/502038", "https://data.delijn.be/stops/502058"], ["https://data.delijn.be/stops/102695", "https://data.delijn.be/stops/102895"], ["https://data.delijn.be/stops/303852", "https://data.delijn.be/stops/303985"], ["https://data.delijn.be/stops/106770", "https://data.delijn.be/stops/106868"], ["https://data.delijn.be/stops/302682", "https://data.delijn.be/stops/306185"], ["https://data.delijn.be/stops/300652", "https://data.delijn.be/stops/300654"], ["https://data.delijn.be/stops/109073", "https://data.delijn.be/stops/109074"], ["https://data.delijn.be/stops/202666", "https://data.delijn.be/stops/203666"], ["https://data.delijn.be/stops/502067", "https://data.delijn.be/stops/502454"], ["https://data.delijn.be/stops/408277", "https://data.delijn.be/stops/408341"], ["https://data.delijn.be/stops/205578", "https://data.delijn.be/stops/205590"], ["https://data.delijn.be/stops/401528", "https://data.delijn.be/stops/401885"], ["https://data.delijn.be/stops/201696", "https://data.delijn.be/stops/203386"], ["https://data.delijn.be/stops/305595", "https://data.delijn.be/stops/305609"], ["https://data.delijn.be/stops/501466", "https://data.delijn.be/stops/505397"], ["https://data.delijn.be/stops/501744", "https://data.delijn.be/stops/504130"], ["https://data.delijn.be/stops/404714", "https://data.delijn.be/stops/404816"], ["https://data.delijn.be/stops/101487", "https://data.delijn.be/stops/101945"], ["https://data.delijn.be/stops/402621", "https://data.delijn.be/stops/402622"], ["https://data.delijn.be/stops/307542", "https://data.delijn.be/stops/307543"], ["https://data.delijn.be/stops/408678", "https://data.delijn.be/stops/408788"], ["https://data.delijn.be/stops/104881", "https://data.delijn.be/stops/104887"], ["https://data.delijn.be/stops/106560", "https://data.delijn.be/stops/106561"], ["https://data.delijn.be/stops/509234", "https://data.delijn.be/stops/509244"], ["https://data.delijn.be/stops/200031", "https://data.delijn.be/stops/201242"], ["https://data.delijn.be/stops/501466", "https://data.delijn.be/stops/501469"], ["https://data.delijn.be/stops/502590", "https://data.delijn.be/stops/507590"], ["https://data.delijn.be/stops/504729", "https://data.delijn.be/stops/509491"], ["https://data.delijn.be/stops/108741", "https://data.delijn.be/stops/109501"], ["https://data.delijn.be/stops/505684", "https://data.delijn.be/stops/507304"], ["https://data.delijn.be/stops/301370", "https://data.delijn.be/stops/304695"], ["https://data.delijn.be/stops/108218", "https://data.delijn.be/stops/108219"], ["https://data.delijn.be/stops/102309", "https://data.delijn.be/stops/105553"], ["https://data.delijn.be/stops/406472", "https://data.delijn.be/stops/406476"], ["https://data.delijn.be/stops/200707", "https://data.delijn.be/stops/202588"], ["https://data.delijn.be/stops/303483", "https://data.delijn.be/stops/303485"], ["https://data.delijn.be/stops/300421", "https://data.delijn.be/stops/300442"], ["https://data.delijn.be/stops/303169", "https://data.delijn.be/stops/304320"], ["https://data.delijn.be/stops/102330", "https://data.delijn.be/stops/104565"], ["https://data.delijn.be/stops/404307", "https://data.delijn.be/stops/409659"], ["https://data.delijn.be/stops/102536", "https://data.delijn.be/stops/408342"], ["https://data.delijn.be/stops/502111", "https://data.delijn.be/stops/502116"], ["https://data.delijn.be/stops/206224", "https://data.delijn.be/stops/207223"], ["https://data.delijn.be/stops/108507", "https://data.delijn.be/stops/304920"], ["https://data.delijn.be/stops/406207", "https://data.delijn.be/stops/406448"], ["https://data.delijn.be/stops/501658", "https://data.delijn.be/stops/501659"], ["https://data.delijn.be/stops/206905", "https://data.delijn.be/stops/207216"], ["https://data.delijn.be/stops/501140", "https://data.delijn.be/stops/501395"], ["https://data.delijn.be/stops/303692", "https://data.delijn.be/stops/303693"], ["https://data.delijn.be/stops/505688", "https://data.delijn.be/stops/505690"], ["https://data.delijn.be/stops/104840", "https://data.delijn.be/stops/105630"], ["https://data.delijn.be/stops/504366", "https://data.delijn.be/stops/509369"], ["https://data.delijn.be/stops/301383", "https://data.delijn.be/stops/306645"], ["https://data.delijn.be/stops/402221", "https://data.delijn.be/stops/402249"], ["https://data.delijn.be/stops/401422", "https://data.delijn.be/stops/401423"], ["https://data.delijn.be/stops/200238", "https://data.delijn.be/stops/201237"], ["https://data.delijn.be/stops/207725", "https://data.delijn.be/stops/207881"], ["https://data.delijn.be/stops/403739", "https://data.delijn.be/stops/403813"], ["https://data.delijn.be/stops/303503", "https://data.delijn.be/stops/303506"], ["https://data.delijn.be/stops/406066", "https://data.delijn.be/stops/406141"], ["https://data.delijn.be/stops/401062", "https://data.delijn.be/stops/408552"], ["https://data.delijn.be/stops/301258", "https://data.delijn.be/stops/301262"], ["https://data.delijn.be/stops/203117", "https://data.delijn.be/stops/203171"], ["https://data.delijn.be/stops/200188", "https://data.delijn.be/stops/205951"], ["https://data.delijn.be/stops/105196", "https://data.delijn.be/stops/108884"], ["https://data.delijn.be/stops/207762", "https://data.delijn.be/stops/207785"], ["https://data.delijn.be/stops/401295", "https://data.delijn.be/stops/401368"], ["https://data.delijn.be/stops/101468", "https://data.delijn.be/stops/109264"], ["https://data.delijn.be/stops/200628", "https://data.delijn.be/stops/202903"], ["https://data.delijn.be/stops/304511", "https://data.delijn.be/stops/306344"], ["https://data.delijn.be/stops/404819", "https://data.delijn.be/stops/410045"], ["https://data.delijn.be/stops/507912", "https://data.delijn.be/stops/508909"], ["https://data.delijn.be/stops/102899", "https://data.delijn.be/stops/104711"], ["https://data.delijn.be/stops/206990", "https://data.delijn.be/stops/207970"], ["https://data.delijn.be/stops/408222", "https://data.delijn.be/stops/408914"], ["https://data.delijn.be/stops/301958", "https://data.delijn.be/stops/302398"], ["https://data.delijn.be/stops/304617", "https://data.delijn.be/stops/304618"], ["https://data.delijn.be/stops/209705", "https://data.delijn.be/stops/219016"], ["https://data.delijn.be/stops/301411", "https://data.delijn.be/stops/303626"], ["https://data.delijn.be/stops/402802", "https://data.delijn.be/stops/409045"], ["https://data.delijn.be/stops/503919", "https://data.delijn.be/stops/509108"], ["https://data.delijn.be/stops/204072", "https://data.delijn.be/stops/204187"], ["https://data.delijn.be/stops/301856", "https://data.delijn.be/stops/301857"], ["https://data.delijn.be/stops/208147", "https://data.delijn.be/stops/209677"], ["https://data.delijn.be/stops/409345", "https://data.delijn.be/stops/409346"], ["https://data.delijn.be/stops/107703", "https://data.delijn.be/stops/109173"], ["https://data.delijn.be/stops/304254", "https://data.delijn.be/stops/304272"], ["https://data.delijn.be/stops/402559", "https://data.delijn.be/stops/402567"], ["https://data.delijn.be/stops/101620", "https://data.delijn.be/stops/102866"], ["https://data.delijn.be/stops/307158", "https://data.delijn.be/stops/307159"], ["https://data.delijn.be/stops/102722", "https://data.delijn.be/stops/108307"], ["https://data.delijn.be/stops/503420", "https://data.delijn.be/stops/508408"], ["https://data.delijn.be/stops/200951", "https://data.delijn.be/stops/203393"], ["https://data.delijn.be/stops/305960", "https://data.delijn.be/stops/305964"], ["https://data.delijn.be/stops/204612", "https://data.delijn.be/stops/205612"], ["https://data.delijn.be/stops/503153", "https://data.delijn.be/stops/508153"], ["https://data.delijn.be/stops/505303", "https://data.delijn.be/stops/505367"], ["https://data.delijn.be/stops/105465", "https://data.delijn.be/stops/105670"], ["https://data.delijn.be/stops/500001", "https://data.delijn.be/stops/505438"], ["https://data.delijn.be/stops/203207", "https://data.delijn.be/stops/203208"], ["https://data.delijn.be/stops/403745", "https://data.delijn.be/stops/403791"], ["https://data.delijn.be/stops/501172", "https://data.delijn.be/stops/501177"], ["https://data.delijn.be/stops/200129", "https://data.delijn.be/stops/200300"], ["https://data.delijn.be/stops/300464", "https://data.delijn.be/stops/300466"], ["https://data.delijn.be/stops/402712", "https://data.delijn.be/stops/308175"], ["https://data.delijn.be/stops/503627", "https://data.delijn.be/stops/508622"], ["https://data.delijn.be/stops/501016", "https://data.delijn.be/stops/501412"], ["https://data.delijn.be/stops/304904", "https://data.delijn.be/stops/306408"], ["https://data.delijn.be/stops/304300", "https://data.delijn.be/stops/306826"], ["https://data.delijn.be/stops/307972", "https://data.delijn.be/stops/307975"], ["https://data.delijn.be/stops/301026", "https://data.delijn.be/stops/301034"], ["https://data.delijn.be/stops/104858", "https://data.delijn.be/stops/107817"], ["https://data.delijn.be/stops/302492", "https://data.delijn.be/stops/308835"], ["https://data.delijn.be/stops/402842", "https://data.delijn.be/stops/402843"], ["https://data.delijn.be/stops/101481", "https://data.delijn.be/stops/108213"], ["https://data.delijn.be/stops/308444", "https://data.delijn.be/stops/308693"], ["https://data.delijn.be/stops/508650", "https://data.delijn.be/stops/509757"], ["https://data.delijn.be/stops/107897", "https://data.delijn.be/stops/108953"], ["https://data.delijn.be/stops/503197", "https://data.delijn.be/stops/503205"], ["https://data.delijn.be/stops/501671", "https://data.delijn.be/stops/506433"], ["https://data.delijn.be/stops/304022", "https://data.delijn.be/stops/307929"], ["https://data.delijn.be/stops/501303", "https://data.delijn.be/stops/501500"], ["https://data.delijn.be/stops/505159", "https://data.delijn.be/stops/508838"], ["https://data.delijn.be/stops/201877", "https://data.delijn.be/stops/211033"], ["https://data.delijn.be/stops/209543", "https://data.delijn.be/stops/209559"], ["https://data.delijn.be/stops/405408", "https://data.delijn.be/stops/302832"], ["https://data.delijn.be/stops/204355", "https://data.delijn.be/stops/204762"], ["https://data.delijn.be/stops/503478", "https://data.delijn.be/stops/507814"], ["https://data.delijn.be/stops/106691", "https://data.delijn.be/stops/109390"], ["https://data.delijn.be/stops/506164", "https://data.delijn.be/stops/506165"], ["https://data.delijn.be/stops/303753", "https://data.delijn.be/stops/303788"], ["https://data.delijn.be/stops/104051", "https://data.delijn.be/stops/108096"], ["https://data.delijn.be/stops/406165", "https://data.delijn.be/stops/406427"], ["https://data.delijn.be/stops/403714", "https://data.delijn.be/stops/406709"], ["https://data.delijn.be/stops/503271", "https://data.delijn.be/stops/508267"], ["https://data.delijn.be/stops/109620", "https://data.delijn.be/stops/109659"], ["https://data.delijn.be/stops/401899", "https://data.delijn.be/stops/410359"], ["https://data.delijn.be/stops/300025", "https://data.delijn.be/stops/300404"], ["https://data.delijn.be/stops/107247", "https://data.delijn.be/stops/107250"], ["https://data.delijn.be/stops/502271", "https://data.delijn.be/stops/505013"], ["https://data.delijn.be/stops/304441", "https://data.delijn.be/stops/307717"], ["https://data.delijn.be/stops/304800", "https://data.delijn.be/stops/304811"], ["https://data.delijn.be/stops/201831", "https://data.delijn.be/stops/209259"], ["https://data.delijn.be/stops/206532", "https://data.delijn.be/stops/207532"], ["https://data.delijn.be/stops/206351", "https://data.delijn.be/stops/206362"], ["https://data.delijn.be/stops/304379", "https://data.delijn.be/stops/304391"], ["https://data.delijn.be/stops/101683", "https://data.delijn.be/stops/101687"], ["https://data.delijn.be/stops/200490", "https://data.delijn.be/stops/201489"], ["https://data.delijn.be/stops/400826", "https://data.delijn.be/stops/402011"], ["https://data.delijn.be/stops/400266", "https://data.delijn.be/stops/400267"], ["https://data.delijn.be/stops/504583", "https://data.delijn.be/stops/509583"], ["https://data.delijn.be/stops/303843", "https://data.delijn.be/stops/303856"], ["https://data.delijn.be/stops/206066", "https://data.delijn.be/stops/207067"], ["https://data.delijn.be/stops/305599", "https://data.delijn.be/stops/305629"], ["https://data.delijn.be/stops/104344", "https://data.delijn.be/stops/104348"], ["https://data.delijn.be/stops/303771", "https://data.delijn.be/stops/303784"], ["https://data.delijn.be/stops/502079", "https://data.delijn.be/stops/507080"], ["https://data.delijn.be/stops/206235", "https://data.delijn.be/stops/206864"], ["https://data.delijn.be/stops/203111", "https://data.delijn.be/stops/205797"], ["https://data.delijn.be/stops/505734", "https://data.delijn.be/stops/505780"], ["https://data.delijn.be/stops/200977", "https://data.delijn.be/stops/219953"], ["https://data.delijn.be/stops/503660", "https://data.delijn.be/stops/508660"], ["https://data.delijn.be/stops/406220", "https://data.delijn.be/stops/410043"], ["https://data.delijn.be/stops/400725", "https://data.delijn.be/stops/410393"], ["https://data.delijn.be/stops/206944", "https://data.delijn.be/stops/207944"], ["https://data.delijn.be/stops/503114", "https://data.delijn.be/stops/508787"], ["https://data.delijn.be/stops/400683", "https://data.delijn.be/stops/408972"], ["https://data.delijn.be/stops/106704", "https://data.delijn.be/stops/106706"], ["https://data.delijn.be/stops/405300", "https://data.delijn.be/stops/405405"], ["https://data.delijn.be/stops/407460", "https://data.delijn.be/stops/407556"], ["https://data.delijn.be/stops/504967", "https://data.delijn.be/stops/508719"], ["https://data.delijn.be/stops/401526", "https://data.delijn.be/stops/410207"], ["https://data.delijn.be/stops/108419", "https://data.delijn.be/stops/109572"], ["https://data.delijn.be/stops/109147", "https://data.delijn.be/stops/109149"], ["https://data.delijn.be/stops/403962", "https://data.delijn.be/stops/408709"], ["https://data.delijn.be/stops/102247", "https://data.delijn.be/stops/105863"], ["https://data.delijn.be/stops/102183", "https://data.delijn.be/stops/107132"], ["https://data.delijn.be/stops/206123", "https://data.delijn.be/stops/306720"], ["https://data.delijn.be/stops/201493", "https://data.delijn.be/stops/202292"], ["https://data.delijn.be/stops/200254", "https://data.delijn.be/stops/202559"], ["https://data.delijn.be/stops/301289", "https://data.delijn.be/stops/304694"], ["https://data.delijn.be/stops/409215", "https://data.delijn.be/stops/409220"], ["https://data.delijn.be/stops/202463", "https://data.delijn.be/stops/202464"], ["https://data.delijn.be/stops/102477", "https://data.delijn.be/stops/400178"], ["https://data.delijn.be/stops/507687", "https://data.delijn.be/stops/508338"], ["https://data.delijn.be/stops/107933", "https://data.delijn.be/stops/205563"], ["https://data.delijn.be/stops/301268", "https://data.delijn.be/stops/308011"], ["https://data.delijn.be/stops/503095", "https://data.delijn.be/stops/503096"], ["https://data.delijn.be/stops/200222", "https://data.delijn.be/stops/201783"], ["https://data.delijn.be/stops/204437", "https://data.delijn.be/stops/205425"], ["https://data.delijn.be/stops/400617", "https://data.delijn.be/stops/408229"], ["https://data.delijn.be/stops/307906", "https://data.delijn.be/stops/308273"], ["https://data.delijn.be/stops/501388", "https://data.delijn.be/stops/501493"], ["https://data.delijn.be/stops/501742", "https://data.delijn.be/stops/504503"], ["https://data.delijn.be/stops/206799", "https://data.delijn.be/stops/209622"], ["https://data.delijn.be/stops/307813", "https://data.delijn.be/stops/307821"], ["https://data.delijn.be/stops/501114", "https://data.delijn.be/stops/506732"], ["https://data.delijn.be/stops/503787", "https://data.delijn.be/stops/505962"], ["https://data.delijn.be/stops/400818", "https://data.delijn.be/stops/403580"], ["https://data.delijn.be/stops/106666", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/204407", "https://data.delijn.be/stops/205205"], ["https://data.delijn.be/stops/301834", "https://data.delijn.be/stops/301847"], ["https://data.delijn.be/stops/200662", "https://data.delijn.be/stops/201463"], ["https://data.delijn.be/stops/103641", "https://data.delijn.be/stops/103643"], ["https://data.delijn.be/stops/307506", "https://data.delijn.be/stops/307508"], ["https://data.delijn.be/stops/401410", "https://data.delijn.be/stops/301088"], ["https://data.delijn.be/stops/503291", "https://data.delijn.be/stops/509936"], ["https://data.delijn.be/stops/101464", "https://data.delijn.be/stops/101466"], ["https://data.delijn.be/stops/108077", "https://data.delijn.be/stops/108079"], ["https://data.delijn.be/stops/102746", "https://data.delijn.be/stops/106412"], ["https://data.delijn.be/stops/204739", "https://data.delijn.be/stops/205738"], ["https://data.delijn.be/stops/503048", "https://data.delijn.be/stops/503049"], ["https://data.delijn.be/stops/105417", "https://data.delijn.be/stops/105421"], ["https://data.delijn.be/stops/406550", "https://data.delijn.be/stops/406566"], ["https://data.delijn.be/stops/502324", "https://data.delijn.be/stops/507335"], ["https://data.delijn.be/stops/106264", "https://data.delijn.be/stops/106342"], ["https://data.delijn.be/stops/107417", "https://data.delijn.be/stops/109796"], ["https://data.delijn.be/stops/203076", "https://data.delijn.be/stops/210122"], ["https://data.delijn.be/stops/208001", "https://data.delijn.be/stops/208002"], ["https://data.delijn.be/stops/304322", "https://data.delijn.be/stops/304323"], ["https://data.delijn.be/stops/202833", "https://data.delijn.be/stops/209638"], ["https://data.delijn.be/stops/200315", "https://data.delijn.be/stops/210026"], ["https://data.delijn.be/stops/505328", "https://data.delijn.be/stops/505329"], ["https://data.delijn.be/stops/200530", "https://data.delijn.be/stops/201531"], ["https://data.delijn.be/stops/101974", "https://data.delijn.be/stops/109065"], ["https://data.delijn.be/stops/302287", "https://data.delijn.be/stops/302299"], ["https://data.delijn.be/stops/108841", "https://data.delijn.be/stops/108842"], ["https://data.delijn.be/stops/200704", "https://data.delijn.be/stops/202574"], ["https://data.delijn.be/stops/200011", "https://data.delijn.be/stops/200014"], ["https://data.delijn.be/stops/503034", "https://data.delijn.be/stops/503035"], ["https://data.delijn.be/stops/305334", "https://data.delijn.be/stops/307592"], ["https://data.delijn.be/stops/301694", "https://data.delijn.be/stops/301702"], ["https://data.delijn.be/stops/206916", "https://data.delijn.be/stops/207729"], ["https://data.delijn.be/stops/504361", "https://data.delijn.be/stops/509365"], ["https://data.delijn.be/stops/206063", "https://data.delijn.be/stops/207063"], ["https://data.delijn.be/stops/401582", "https://data.delijn.be/stops/405502"], ["https://data.delijn.be/stops/209584", "https://data.delijn.be/stops/209585"], ["https://data.delijn.be/stops/502209", "https://data.delijn.be/stops/505329"], ["https://data.delijn.be/stops/105317", "https://data.delijn.be/stops/105321"], ["https://data.delijn.be/stops/202934", "https://data.delijn.be/stops/203934"], ["https://data.delijn.be/stops/503116", "https://data.delijn.be/stops/508116"], ["https://data.delijn.be/stops/402311", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/408662", "https://data.delijn.be/stops/408743"], ["https://data.delijn.be/stops/200977", "https://data.delijn.be/stops/202905"], ["https://data.delijn.be/stops/405002", "https://data.delijn.be/stops/405003"], ["https://data.delijn.be/stops/504468", "https://data.delijn.be/stops/504698"], ["https://data.delijn.be/stops/109854", "https://data.delijn.be/stops/109855"], ["https://data.delijn.be/stops/207560", "https://data.delijn.be/stops/207570"], ["https://data.delijn.be/stops/504399", "https://data.delijn.be/stops/504409"], ["https://data.delijn.be/stops/509832", "https://data.delijn.be/stops/509833"], ["https://data.delijn.be/stops/206196", "https://data.delijn.be/stops/206220"], ["https://data.delijn.be/stops/109193", "https://data.delijn.be/stops/109228"], ["https://data.delijn.be/stops/307264", "https://data.delijn.be/stops/307776"], ["https://data.delijn.be/stops/202172", "https://data.delijn.be/stops/202173"], ["https://data.delijn.be/stops/505701", "https://data.delijn.be/stops/505703"], ["https://data.delijn.be/stops/301351", "https://data.delijn.be/stops/304812"], ["https://data.delijn.be/stops/105611", "https://data.delijn.be/stops/105612"], ["https://data.delijn.be/stops/305048", "https://data.delijn.be/stops/305049"], ["https://data.delijn.be/stops/105647", "https://data.delijn.be/stops/105649"], ["https://data.delijn.be/stops/504677", "https://data.delijn.be/stops/504858"], ["https://data.delijn.be/stops/300956", "https://data.delijn.be/stops/300974"], ["https://data.delijn.be/stops/208647", "https://data.delijn.be/stops/209647"], ["https://data.delijn.be/stops/405369", "https://data.delijn.be/stops/405373"], ["https://data.delijn.be/stops/300753", "https://data.delijn.be/stops/300782"], ["https://data.delijn.be/stops/102763", "https://data.delijn.be/stops/103587"], ["https://data.delijn.be/stops/502173", "https://data.delijn.be/stops/507173"], ["https://data.delijn.be/stops/104099", "https://data.delijn.be/stops/107235"], ["https://data.delijn.be/stops/108186", "https://data.delijn.be/stops/108329"], ["https://data.delijn.be/stops/302922", "https://data.delijn.be/stops/303043"], ["https://data.delijn.be/stops/207165", "https://data.delijn.be/stops/303792"], ["https://data.delijn.be/stops/108767", "https://data.delijn.be/stops/109272"], ["https://data.delijn.be/stops/101579", "https://data.delijn.be/stops/105458"], ["https://data.delijn.be/stops/400724", "https://data.delijn.be/stops/404331"], ["https://data.delijn.be/stops/404286", "https://data.delijn.be/stops/409494"], ["https://data.delijn.be/stops/401053", "https://data.delijn.be/stops/408958"], ["https://data.delijn.be/stops/101296", "https://data.delijn.be/stops/102093"], ["https://data.delijn.be/stops/200832", "https://data.delijn.be/stops/505060"], ["https://data.delijn.be/stops/509083", "https://data.delijn.be/stops/509610"], ["https://data.delijn.be/stops/301703", "https://data.delijn.be/stops/305230"], ["https://data.delijn.be/stops/304012", "https://data.delijn.be/stops/304013"], ["https://data.delijn.be/stops/401489", "https://data.delijn.be/stops/406808"], ["https://data.delijn.be/stops/102288", "https://data.delijn.be/stops/109008"], ["https://data.delijn.be/stops/203600", "https://data.delijn.be/stops/203601"], ["https://data.delijn.be/stops/202751", "https://data.delijn.be/stops/203758"], ["https://data.delijn.be/stops/504597", "https://data.delijn.be/stops/509595"], ["https://data.delijn.be/stops/404972", "https://data.delijn.be/stops/404974"], ["https://data.delijn.be/stops/308725", "https://data.delijn.be/stops/308726"], ["https://data.delijn.be/stops/103999", "https://data.delijn.be/stops/106884"], ["https://data.delijn.be/stops/300023", "https://data.delijn.be/stops/300387"], ["https://data.delijn.be/stops/101141", "https://data.delijn.be/stops/102831"], ["https://data.delijn.be/stops/204037", "https://data.delijn.be/stops/205037"], ["https://data.delijn.be/stops/405476", "https://data.delijn.be/stops/406614"], ["https://data.delijn.be/stops/202111", "https://data.delijn.be/stops/205797"], ["https://data.delijn.be/stops/101007", "https://data.delijn.be/stops/107980"], ["https://data.delijn.be/stops/109207", "https://data.delijn.be/stops/109226"], ["https://data.delijn.be/stops/405894", "https://data.delijn.be/stops/308279"], ["https://data.delijn.be/stops/407941", "https://data.delijn.be/stops/408023"], ["https://data.delijn.be/stops/204148", "https://data.delijn.be/stops/205789"], ["https://data.delijn.be/stops/201558", "https://data.delijn.be/stops/201559"], ["https://data.delijn.be/stops/302516", "https://data.delijn.be/stops/305874"], ["https://data.delijn.be/stops/405314", "https://data.delijn.be/stops/302828"], ["https://data.delijn.be/stops/201327", "https://data.delijn.be/stops/203764"], ["https://data.delijn.be/stops/203540", "https://data.delijn.be/stops/206409"], ["https://data.delijn.be/stops/403042", "https://data.delijn.be/stops/403094"], ["https://data.delijn.be/stops/204231", "https://data.delijn.be/stops/204261"], ["https://data.delijn.be/stops/102951", "https://data.delijn.be/stops/102957"], ["https://data.delijn.be/stops/108651", "https://data.delijn.be/stops/306594"], ["https://data.delijn.be/stops/201914", "https://data.delijn.be/stops/201934"], ["https://data.delijn.be/stops/402891", "https://data.delijn.be/stops/402892"], ["https://data.delijn.be/stops/305730", "https://data.delijn.be/stops/305731"], ["https://data.delijn.be/stops/404809", "https://data.delijn.be/stops/404835"], ["https://data.delijn.be/stops/104142", "https://data.delijn.be/stops/305773"], ["https://data.delijn.be/stops/405859", "https://data.delijn.be/stops/405893"], ["https://data.delijn.be/stops/200806", "https://data.delijn.be/stops/202281"], ["https://data.delijn.be/stops/201952", "https://data.delijn.be/stops/202467"], ["https://data.delijn.be/stops/301856", "https://data.delijn.be/stops/301871"], ["https://data.delijn.be/stops/502498", "https://data.delijn.be/stops/507517"], ["https://data.delijn.be/stops/505747", "https://data.delijn.be/stops/507290"], ["https://data.delijn.be/stops/102292", "https://data.delijn.be/stops/108291"], ["https://data.delijn.be/stops/107597", "https://data.delijn.be/stops/107601"], ["https://data.delijn.be/stops/403051", "https://data.delijn.be/stops/403428"], ["https://data.delijn.be/stops/105748", "https://data.delijn.be/stops/109964"], ["https://data.delijn.be/stops/503820", "https://data.delijn.be/stops/504816"], ["https://data.delijn.be/stops/104018", "https://data.delijn.be/stops/104022"], ["https://data.delijn.be/stops/202362", "https://data.delijn.be/stops/203363"], ["https://data.delijn.be/stops/402883", "https://data.delijn.be/stops/402884"], ["https://data.delijn.be/stops/107934", "https://data.delijn.be/stops/303878"], ["https://data.delijn.be/stops/505532", "https://data.delijn.be/stops/505562"], ["https://data.delijn.be/stops/307935", "https://data.delijn.be/stops/307938"], ["https://data.delijn.be/stops/206019", "https://data.delijn.be/stops/206077"], ["https://data.delijn.be/stops/102833", "https://data.delijn.be/stops/103759"], ["https://data.delijn.be/stops/302586", "https://data.delijn.be/stops/302593"], ["https://data.delijn.be/stops/102694", "https://data.delijn.be/stops/103125"], ["https://data.delijn.be/stops/405792", "https://data.delijn.be/stops/405832"], ["https://data.delijn.be/stops/403599", "https://data.delijn.be/stops/406266"], ["https://data.delijn.be/stops/501760", "https://data.delijn.be/stops/509932"], ["https://data.delijn.be/stops/400590", "https://data.delijn.be/stops/400625"], ["https://data.delijn.be/stops/501408", "https://data.delijn.be/stops/506407"], ["https://data.delijn.be/stops/404280", "https://data.delijn.be/stops/404281"], ["https://data.delijn.be/stops/207591", "https://data.delijn.be/stops/207949"], ["https://data.delijn.be/stops/301027", "https://data.delijn.be/stops/303833"], ["https://data.delijn.be/stops/104962", "https://data.delijn.be/stops/109261"], ["https://data.delijn.be/stops/200907", "https://data.delijn.be/stops/200931"], ["https://data.delijn.be/stops/200206", "https://data.delijn.be/stops/203143"], ["https://data.delijn.be/stops/402770", "https://data.delijn.be/stops/408124"], ["https://data.delijn.be/stops/200691", "https://data.delijn.be/stops/200698"], ["https://data.delijn.be/stops/202608", "https://data.delijn.be/stops/203564"], ["https://data.delijn.be/stops/206008", "https://data.delijn.be/stops/207008"], ["https://data.delijn.be/stops/306861", "https://data.delijn.be/stops/306864"], ["https://data.delijn.be/stops/504041", "https://data.delijn.be/stops/509041"], ["https://data.delijn.be/stops/202309", "https://data.delijn.be/stops/203309"], ["https://data.delijn.be/stops/108431", "https://data.delijn.be/stops/108432"], ["https://data.delijn.be/stops/402670", "https://data.delijn.be/stops/402735"], ["https://data.delijn.be/stops/502795", "https://data.delijn.be/stops/502934"], ["https://data.delijn.be/stops/102256", "https://data.delijn.be/stops/109871"], ["https://data.delijn.be/stops/102613", "https://data.delijn.be/stops/107053"], ["https://data.delijn.be/stops/505183", "https://data.delijn.be/stops/509394"], ["https://data.delijn.be/stops/102018", "https://data.delijn.be/stops/109963"], ["https://data.delijn.be/stops/504136", "https://data.delijn.be/stops/504144"], ["https://data.delijn.be/stops/405212", "https://data.delijn.be/stops/405213"], ["https://data.delijn.be/stops/406967", "https://data.delijn.be/stops/409450"], ["https://data.delijn.be/stops/206739", "https://data.delijn.be/stops/207995"], ["https://data.delijn.be/stops/307373", "https://data.delijn.be/stops/307380"], ["https://data.delijn.be/stops/101050", "https://data.delijn.be/stops/103046"], ["https://data.delijn.be/stops/104052", "https://data.delijn.be/stops/108100"], ["https://data.delijn.be/stops/202556", "https://data.delijn.be/stops/202560"], ["https://data.delijn.be/stops/201566", "https://data.delijn.be/stops/201670"], ["https://data.delijn.be/stops/302404", "https://data.delijn.be/stops/302405"], ["https://data.delijn.be/stops/403517", "https://data.delijn.be/stops/403518"], ["https://data.delijn.be/stops/505051", "https://data.delijn.be/stops/507557"], ["https://data.delijn.be/stops/301921", "https://data.delijn.be/stops/302794"], ["https://data.delijn.be/stops/106638", "https://data.delijn.be/stops/106677"], ["https://data.delijn.be/stops/509777", "https://data.delijn.be/stops/509782"], ["https://data.delijn.be/stops/308218", "https://data.delijn.be/stops/308246"], ["https://data.delijn.be/stops/505526", "https://data.delijn.be/stops/505534"], ["https://data.delijn.be/stops/505415", "https://data.delijn.be/stops/509161"], ["https://data.delijn.be/stops/404171", "https://data.delijn.be/stops/404178"], ["https://data.delijn.be/stops/402409", "https://data.delijn.be/stops/404992"], ["https://data.delijn.be/stops/106379", "https://data.delijn.be/stops/108024"], ["https://data.delijn.be/stops/300331", "https://data.delijn.be/stops/307042"], ["https://data.delijn.be/stops/103541", "https://data.delijn.be/stops/106725"], ["https://data.delijn.be/stops/400727", "https://data.delijn.be/stops/405216"], ["https://data.delijn.be/stops/200909", "https://data.delijn.be/stops/200929"], ["https://data.delijn.be/stops/200707", "https://data.delijn.be/stops/202129"], ["https://data.delijn.be/stops/204251", "https://data.delijn.be/stops/205251"], ["https://data.delijn.be/stops/101683", "https://data.delijn.be/stops/103697"], ["https://data.delijn.be/stops/400406", "https://data.delijn.be/stops/400407"], ["https://data.delijn.be/stops/404730", "https://data.delijn.be/stops/405134"], ["https://data.delijn.be/stops/104517", "https://data.delijn.be/stops/303882"], ["https://data.delijn.be/stops/502387", "https://data.delijn.be/stops/507384"], ["https://data.delijn.be/stops/302710", "https://data.delijn.be/stops/307846"], ["https://data.delijn.be/stops/404887", "https://data.delijn.be/stops/406722"], ["https://data.delijn.be/stops/504392", "https://data.delijn.be/stops/509392"], ["https://data.delijn.be/stops/300534", "https://data.delijn.be/stops/308929"], ["https://data.delijn.be/stops/409408", "https://data.delijn.be/stops/409409"], ["https://data.delijn.be/stops/504595", "https://data.delijn.be/stops/509592"], ["https://data.delijn.be/stops/102537", "https://data.delijn.be/stops/102538"], ["https://data.delijn.be/stops/202198", "https://data.delijn.be/stops/203197"], ["https://data.delijn.be/stops/106259", "https://data.delijn.be/stops/106260"], ["https://data.delijn.be/stops/202446", "https://data.delijn.be/stops/202447"], ["https://data.delijn.be/stops/404100", "https://data.delijn.be/stops/404209"], ["https://data.delijn.be/stops/200976", "https://data.delijn.be/stops/209581"], ["https://data.delijn.be/stops/508703", "https://data.delijn.be/stops/508741"], ["https://data.delijn.be/stops/301847", "https://data.delijn.be/stops/305872"], ["https://data.delijn.be/stops/500937", "https://data.delijn.be/stops/500938"], ["https://data.delijn.be/stops/300084", "https://data.delijn.be/stops/306846"], ["https://data.delijn.be/stops/208794", "https://data.delijn.be/stops/209243"], ["https://data.delijn.be/stops/301711", "https://data.delijn.be/stops/305909"], ["https://data.delijn.be/stops/501075", "https://data.delijn.be/stops/506506"], ["https://data.delijn.be/stops/507018", "https://data.delijn.be/stops/507797"], ["https://data.delijn.be/stops/400753", "https://data.delijn.be/stops/409579"], ["https://data.delijn.be/stops/305514", "https://data.delijn.be/stops/305515"], ["https://data.delijn.be/stops/206725", "https://data.delijn.be/stops/207994"], ["https://data.delijn.be/stops/502244", "https://data.delijn.be/stops/507244"], ["https://data.delijn.be/stops/301358", "https://data.delijn.be/stops/307222"], ["https://data.delijn.be/stops/303752", "https://data.delijn.be/stops/303756"], ["https://data.delijn.be/stops/401792", "https://data.delijn.be/stops/401793"], ["https://data.delijn.be/stops/505919", "https://data.delijn.be/stops/509099"], ["https://data.delijn.be/stops/300773", "https://data.delijn.be/stops/302401"], ["https://data.delijn.be/stops/106753", "https://data.delijn.be/stops/109700"], ["https://data.delijn.be/stops/500126", "https://data.delijn.be/stops/503005"], ["https://data.delijn.be/stops/304016", "https://data.delijn.be/stops/304084"], ["https://data.delijn.be/stops/408864", "https://data.delijn.be/stops/408865"], ["https://data.delijn.be/stops/505963", "https://data.delijn.be/stops/507956"], ["https://data.delijn.be/stops/202024", "https://data.delijn.be/stops/203349"], ["https://data.delijn.be/stops/308542", "https://data.delijn.be/stops/308543"], ["https://data.delijn.be/stops/207828", "https://data.delijn.be/stops/207829"], ["https://data.delijn.be/stops/102163", "https://data.delijn.be/stops/102164"], ["https://data.delijn.be/stops/102077", "https://data.delijn.be/stops/105990"], ["https://data.delijn.be/stops/101363", "https://data.delijn.be/stops/105354"], ["https://data.delijn.be/stops/501096", "https://data.delijn.be/stops/502218"], ["https://data.delijn.be/stops/504259", "https://data.delijn.be/stops/509127"], ["https://data.delijn.be/stops/104463", "https://data.delijn.be/stops/104467"], ["https://data.delijn.be/stops/200682", "https://data.delijn.be/stops/209651"], ["https://data.delijn.be/stops/204504", "https://data.delijn.be/stops/204505"], ["https://data.delijn.be/stops/503259", "https://data.delijn.be/stops/508262"], ["https://data.delijn.be/stops/202554", "https://data.delijn.be/stops/203556"], ["https://data.delijn.be/stops/307456", "https://data.delijn.be/stops/307845"], ["https://data.delijn.be/stops/503496", "https://data.delijn.be/stops/509452"], ["https://data.delijn.be/stops/303484", "https://data.delijn.be/stops/307069"], ["https://data.delijn.be/stops/405935", "https://data.delijn.be/stops/405963"], ["https://data.delijn.be/stops/408232", "https://data.delijn.be/stops/408249"], ["https://data.delijn.be/stops/204374", "https://data.delijn.be/stops/204383"], ["https://data.delijn.be/stops/101298", "https://data.delijn.be/stops/108802"], ["https://data.delijn.be/stops/507430", "https://data.delijn.be/stops/507434"], ["https://data.delijn.be/stops/107192", "https://data.delijn.be/stops/107193"], ["https://data.delijn.be/stops/203528", "https://data.delijn.be/stops/203529"], ["https://data.delijn.be/stops/402895", "https://data.delijn.be/stops/302637"], ["https://data.delijn.be/stops/503921", "https://data.delijn.be/stops/508915"], ["https://data.delijn.be/stops/201699", "https://data.delijn.be/stops/203785"], ["https://data.delijn.be/stops/301259", "https://data.delijn.be/stops/307392"], ["https://data.delijn.be/stops/301970", "https://data.delijn.be/stops/304534"], ["https://data.delijn.be/stops/103322", "https://data.delijn.be/stops/105085"], ["https://data.delijn.be/stops/503341", "https://data.delijn.be/stops/505633"], ["https://data.delijn.be/stops/209211", "https://data.delijn.be/stops/209808"], ["https://data.delijn.be/stops/405639", "https://data.delijn.be/stops/405641"], ["https://data.delijn.be/stops/202111", "https://data.delijn.be/stops/202112"], ["https://data.delijn.be/stops/400352", "https://data.delijn.be/stops/400353"], ["https://data.delijn.be/stops/504402", "https://data.delijn.be/stops/504466"], ["https://data.delijn.be/stops/103212", "https://data.delijn.be/stops/106304"], ["https://data.delijn.be/stops/200436", "https://data.delijn.be/stops/201408"], ["https://data.delijn.be/stops/103620", "https://data.delijn.be/stops/105730"], ["https://data.delijn.be/stops/500013", "https://data.delijn.be/stops/507562"], ["https://data.delijn.be/stops/104693", "https://data.delijn.be/stops/107357"], ["https://data.delijn.be/stops/501542", "https://data.delijn.be/stops/506077"], ["https://data.delijn.be/stops/204675", "https://data.delijn.be/stops/205258"], ["https://data.delijn.be/stops/502348", "https://data.delijn.be/stops/507340"], ["https://data.delijn.be/stops/401728", "https://data.delijn.be/stops/401870"], ["https://data.delijn.be/stops/304831", "https://data.delijn.be/stops/306160"], ["https://data.delijn.be/stops/503222", "https://data.delijn.be/stops/508221"], ["https://data.delijn.be/stops/207380", "https://data.delijn.be/stops/207381"], ["https://data.delijn.be/stops/306384", "https://data.delijn.be/stops/306385"], ["https://data.delijn.be/stops/201770", "https://data.delijn.be/stops/201827"], ["https://data.delijn.be/stops/204070", "https://data.delijn.be/stops/204221"], ["https://data.delijn.be/stops/407581", "https://data.delijn.be/stops/408913"], ["https://data.delijn.be/stops/302870", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/208134", "https://data.delijn.be/stops/208138"], ["https://data.delijn.be/stops/101394", "https://data.delijn.be/stops/103141"], ["https://data.delijn.be/stops/409521", "https://data.delijn.be/stops/409772"], ["https://data.delijn.be/stops/205135", "https://data.delijn.be/stops/205136"], ["https://data.delijn.be/stops/400437", "https://data.delijn.be/stops/406843"], ["https://data.delijn.be/stops/300749", "https://data.delijn.be/stops/300753"], ["https://data.delijn.be/stops/206836", "https://data.delijn.be/stops/207836"], ["https://data.delijn.be/stops/304030", "https://data.delijn.be/stops/306176"], ["https://data.delijn.be/stops/402270", "https://data.delijn.be/stops/410094"], ["https://data.delijn.be/stops/202447", "https://data.delijn.be/stops/203447"], ["https://data.delijn.be/stops/200694", "https://data.delijn.be/stops/203790"], ["https://data.delijn.be/stops/107089", "https://data.delijn.be/stops/107093"], ["https://data.delijn.be/stops/301431", "https://data.delijn.be/stops/301432"], ["https://data.delijn.be/stops/503688", "https://data.delijn.be/stops/508682"], ["https://data.delijn.be/stops/402301", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/404835", "https://data.delijn.be/stops/406094"], ["https://data.delijn.be/stops/301799", "https://data.delijn.be/stops/305395"], ["https://data.delijn.be/stops/200756", "https://data.delijn.be/stops/200770"], ["https://data.delijn.be/stops/103590", "https://data.delijn.be/stops/109399"], ["https://data.delijn.be/stops/109196", "https://data.delijn.be/stops/109198"], ["https://data.delijn.be/stops/302514", "https://data.delijn.be/stops/305803"], ["https://data.delijn.be/stops/403625", "https://data.delijn.be/stops/403720"], ["https://data.delijn.be/stops/200701", "https://data.delijn.be/stops/201157"], ["https://data.delijn.be/stops/301936", "https://data.delijn.be/stops/308719"], ["https://data.delijn.be/stops/406097", "https://data.delijn.be/stops/406129"], ["https://data.delijn.be/stops/206382", "https://data.delijn.be/stops/207383"], ["https://data.delijn.be/stops/503095", "https://data.delijn.be/stops/508095"], ["https://data.delijn.be/stops/303639", "https://data.delijn.be/stops/304521"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/203622"], ["https://data.delijn.be/stops/406897", "https://data.delijn.be/stops/409463"], ["https://data.delijn.be/stops/410291", "https://data.delijn.be/stops/410352"], ["https://data.delijn.be/stops/304388", "https://data.delijn.be/stops/307417"], ["https://data.delijn.be/stops/301025", "https://data.delijn.be/stops/305466"], ["https://data.delijn.be/stops/305550", "https://data.delijn.be/stops/305555"], ["https://data.delijn.be/stops/104675", "https://data.delijn.be/stops/105870"], ["https://data.delijn.be/stops/401417", "https://data.delijn.be/stops/306001"], ["https://data.delijn.be/stops/204390", "https://data.delijn.be/stops/204402"], ["https://data.delijn.be/stops/101376", "https://data.delijn.be/stops/101402"], ["https://data.delijn.be/stops/505552", "https://data.delijn.be/stops/505922"], ["https://data.delijn.be/stops/502080", "https://data.delijn.be/stops/507079"], ["https://data.delijn.be/stops/206509", "https://data.delijn.be/stops/207862"], ["https://data.delijn.be/stops/303423", "https://data.delijn.be/stops/303431"], ["https://data.delijn.be/stops/206748", "https://data.delijn.be/stops/207337"], ["https://data.delijn.be/stops/305027", "https://data.delijn.be/stops/305029"], ["https://data.delijn.be/stops/409144", "https://data.delijn.be/stops/409156"], ["https://data.delijn.be/stops/503629", "https://data.delijn.be/stops/508619"], ["https://data.delijn.be/stops/303170", "https://data.delijn.be/stops/303175"], ["https://data.delijn.be/stops/503516", "https://data.delijn.be/stops/508299"], ["https://data.delijn.be/stops/203741", "https://data.delijn.be/stops/203870"], ["https://data.delijn.be/stops/304523", "https://data.delijn.be/stops/305603"], ["https://data.delijn.be/stops/408718", "https://data.delijn.be/stops/408726"], ["https://data.delijn.be/stops/104200", "https://data.delijn.be/stops/104220"], ["https://data.delijn.be/stops/503052", "https://data.delijn.be/stops/508049"], ["https://data.delijn.be/stops/405819", "https://data.delijn.be/stops/405872"], ["https://data.delijn.be/stops/305396", "https://data.delijn.be/stops/305407"], ["https://data.delijn.be/stops/104001", "https://data.delijn.be/stops/106884"], ["https://data.delijn.be/stops/106862", "https://data.delijn.be/stops/106865"], ["https://data.delijn.be/stops/101182", "https://data.delijn.be/stops/107946"], ["https://data.delijn.be/stops/101872", "https://data.delijn.be/stops/106873"], ["https://data.delijn.be/stops/502438", "https://data.delijn.be/stops/507438"], ["https://data.delijn.be/stops/203212", "https://data.delijn.be/stops/210115"], ["https://data.delijn.be/stops/503462", "https://data.delijn.be/stops/508462"], ["https://data.delijn.be/stops/501015", "https://data.delijn.be/stops/501618"], ["https://data.delijn.be/stops/408846", "https://data.delijn.be/stops/408848"], ["https://data.delijn.be/stops/205100", "https://data.delijn.be/stops/205716"], ["https://data.delijn.be/stops/307834", "https://data.delijn.be/stops/308276"], ["https://data.delijn.be/stops/107150", "https://data.delijn.be/stops/107315"], ["https://data.delijn.be/stops/300949", "https://data.delijn.be/stops/304641"], ["https://data.delijn.be/stops/503515", "https://data.delijn.be/stops/504784"], ["https://data.delijn.be/stops/300011", "https://data.delijn.be/stops/300794"], ["https://data.delijn.be/stops/206117", "https://data.delijn.be/stops/206118"], ["https://data.delijn.be/stops/102391", "https://data.delijn.be/stops/107107"], ["https://data.delijn.be/stops/402397", "https://data.delijn.be/stops/405134"], ["https://data.delijn.be/stops/109285", "https://data.delijn.be/stops/109736"], ["https://data.delijn.be/stops/406296", "https://data.delijn.be/stops/409409"], ["https://data.delijn.be/stops/203235", "https://data.delijn.be/stops/203236"], ["https://data.delijn.be/stops/303153", "https://data.delijn.be/stops/303183"], ["https://data.delijn.be/stops/404105", "https://data.delijn.be/stops/404182"], ["https://data.delijn.be/stops/503260", "https://data.delijn.be/stops/503458"], ["https://data.delijn.be/stops/401242", "https://data.delijn.be/stops/401243"], ["https://data.delijn.be/stops/201382", "https://data.delijn.be/stops/201984"], ["https://data.delijn.be/stops/109838", "https://data.delijn.be/stops/109839"], ["https://data.delijn.be/stops/202155", "https://data.delijn.be/stops/202176"], ["https://data.delijn.be/stops/206164", "https://data.delijn.be/stops/308848"], ["https://data.delijn.be/stops/204153", "https://data.delijn.be/stops/205153"], ["https://data.delijn.be/stops/402589", "https://data.delijn.be/stops/402597"], ["https://data.delijn.be/stops/201193", "https://data.delijn.be/stops/202756"], ["https://data.delijn.be/stops/503963", "https://data.delijn.be/stops/508318"], ["https://data.delijn.be/stops/201885", "https://data.delijn.be/stops/203281"], ["https://data.delijn.be/stops/204829", "https://data.delijn.be/stops/205765"], ["https://data.delijn.be/stops/303068", "https://data.delijn.be/stops/303069"], ["https://data.delijn.be/stops/502228", "https://data.delijn.be/stops/507229"], ["https://data.delijn.be/stops/103158", "https://data.delijn.be/stops/107711"], ["https://data.delijn.be/stops/102723", "https://data.delijn.be/stops/107005"], ["https://data.delijn.be/stops/404117", "https://data.delijn.be/stops/404182"], ["https://data.delijn.be/stops/404455", "https://data.delijn.be/stops/406878"], ["https://data.delijn.be/stops/402098", "https://data.delijn.be/stops/402099"], ["https://data.delijn.be/stops/101425", "https://data.delijn.be/stops/108717"], ["https://data.delijn.be/stops/302999", "https://data.delijn.be/stops/303000"], ["https://data.delijn.be/stops/503203", "https://data.delijn.be/stops/508204"], ["https://data.delijn.be/stops/305312", "https://data.delijn.be/stops/305313"], ["https://data.delijn.be/stops/408780", "https://data.delijn.be/stops/410343"], ["https://data.delijn.be/stops/300467", "https://data.delijn.be/stops/300475"], ["https://data.delijn.be/stops/505598", "https://data.delijn.be/stops/505670"], ["https://data.delijn.be/stops/107491", "https://data.delijn.be/stops/305798"], ["https://data.delijn.be/stops/400960", "https://data.delijn.be/stops/407401"], ["https://data.delijn.be/stops/304626", "https://data.delijn.be/stops/304646"], ["https://data.delijn.be/stops/207358", "https://data.delijn.be/stops/207884"], ["https://data.delijn.be/stops/408633", "https://data.delijn.be/stops/408768"], ["https://data.delijn.be/stops/103638", "https://data.delijn.be/stops/103639"], ["https://data.delijn.be/stops/306625", "https://data.delijn.be/stops/306627"], ["https://data.delijn.be/stops/501014", "https://data.delijn.be/stops/506014"], ["https://data.delijn.be/stops/407800", "https://data.delijn.be/stops/407801"], ["https://data.delijn.be/stops/301850", "https://data.delijn.be/stops/301851"], ["https://data.delijn.be/stops/107242", "https://data.delijn.be/stops/107243"], ["https://data.delijn.be/stops/107537", "https://data.delijn.be/stops/107818"], ["https://data.delijn.be/stops/308087", "https://data.delijn.be/stops/308088"], ["https://data.delijn.be/stops/404090", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/102636", "https://data.delijn.be/stops/104921"], ["https://data.delijn.be/stops/302192", "https://data.delijn.be/stops/302420"], ["https://data.delijn.be/stops/202494", "https://data.delijn.be/stops/203494"], ["https://data.delijn.be/stops/403158", "https://data.delijn.be/stops/407583"], ["https://data.delijn.be/stops/106946", "https://data.delijn.be/stops/108701"], ["https://data.delijn.be/stops/102247", "https://data.delijn.be/stops/105761"], ["https://data.delijn.be/stops/502499", "https://data.delijn.be/stops/502925"], ["https://data.delijn.be/stops/301577", "https://data.delijn.be/stops/301578"], ["https://data.delijn.be/stops/106970", "https://data.delijn.be/stops/106971"], ["https://data.delijn.be/stops/502732", "https://data.delijn.be/stops/506082"], ["https://data.delijn.be/stops/502513", "https://data.delijn.be/stops/508800"], ["https://data.delijn.be/stops/209115", "https://data.delijn.be/stops/209339"], ["https://data.delijn.be/stops/505413", "https://data.delijn.be/stops/505581"], ["https://data.delijn.be/stops/406908", "https://data.delijn.be/stops/409453"], ["https://data.delijn.be/stops/205152", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/102858", "https://data.delijn.be/stops/205629"], ["https://data.delijn.be/stops/401498", "https://data.delijn.be/stops/401627"], ["https://data.delijn.be/stops/302084", "https://data.delijn.be/stops/302085"], ["https://data.delijn.be/stops/305400", "https://data.delijn.be/stops/305926"], ["https://data.delijn.be/stops/202818", "https://data.delijn.be/stops/203817"], ["https://data.delijn.be/stops/208077", "https://data.delijn.be/stops/208520"], ["https://data.delijn.be/stops/503099", "https://data.delijn.be/stops/508926"], ["https://data.delijn.be/stops/505341", "https://data.delijn.be/stops/505658"], ["https://data.delijn.be/stops/308228", "https://data.delijn.be/stops/308231"], ["https://data.delijn.be/stops/407057", "https://data.delijn.be/stops/308746"], ["https://data.delijn.be/stops/401821", "https://data.delijn.be/stops/410357"], ["https://data.delijn.be/stops/206427", "https://data.delijn.be/stops/209536"], ["https://data.delijn.be/stops/300549", "https://data.delijn.be/stops/307864"], ["https://data.delijn.be/stops/407645", "https://data.delijn.be/stops/407689"], ["https://data.delijn.be/stops/204950", "https://data.delijn.be/stops/205950"], ["https://data.delijn.be/stops/408509", "https://data.delijn.be/stops/408525"], ["https://data.delijn.be/stops/304474", "https://data.delijn.be/stops/304506"], ["https://data.delijn.be/stops/503666", "https://data.delijn.be/stops/505979"], ["https://data.delijn.be/stops/304770", "https://data.delijn.be/stops/304772"], ["https://data.delijn.be/stops/206046", "https://data.delijn.be/stops/206107"], ["https://data.delijn.be/stops/200689", "https://data.delijn.be/stops/203004"], ["https://data.delijn.be/stops/505373", "https://data.delijn.be/stops/508860"], ["https://data.delijn.be/stops/200546", "https://data.delijn.be/stops/208862"], ["https://data.delijn.be/stops/405100", "https://data.delijn.be/stops/405101"], ["https://data.delijn.be/stops/300861", "https://data.delijn.be/stops/301057"], ["https://data.delijn.be/stops/208379", "https://data.delijn.be/stops/218022"], ["https://data.delijn.be/stops/505261", "https://data.delijn.be/stops/505943"], ["https://data.delijn.be/stops/301602", "https://data.delijn.be/stops/301603"], ["https://data.delijn.be/stops/109218", "https://data.delijn.be/stops/109219"], ["https://data.delijn.be/stops/101631", "https://data.delijn.be/stops/102188"], ["https://data.delijn.be/stops/208226", "https://data.delijn.be/stops/209226"], ["https://data.delijn.be/stops/506677", "https://data.delijn.be/stops/506779"], ["https://data.delijn.be/stops/401757", "https://data.delijn.be/stops/401807"], ["https://data.delijn.be/stops/200849", "https://data.delijn.be/stops/209654"], ["https://data.delijn.be/stops/504426", "https://data.delijn.be/stops/505970"], ["https://data.delijn.be/stops/102312", "https://data.delijn.be/stops/109903"], ["https://data.delijn.be/stops/400409", "https://data.delijn.be/stops/400410"], ["https://data.delijn.be/stops/300644", "https://data.delijn.be/stops/306746"], ["https://data.delijn.be/stops/403519", "https://data.delijn.be/stops/410277"], ["https://data.delijn.be/stops/300655", "https://data.delijn.be/stops/301917"], ["https://data.delijn.be/stops/206954", "https://data.delijn.be/stops/207925"], ["https://data.delijn.be/stops/302620", "https://data.delijn.be/stops/303252"], ["https://data.delijn.be/stops/302166", "https://data.delijn.be/stops/304078"], ["https://data.delijn.be/stops/306764", "https://data.delijn.be/stops/307272"], ["https://data.delijn.be/stops/105011", "https://data.delijn.be/stops/105079"], ["https://data.delijn.be/stops/507394", "https://data.delijn.be/stops/507621"], ["https://data.delijn.be/stops/302949", "https://data.delijn.be/stops/303003"], ["https://data.delijn.be/stops/504481", "https://data.delijn.be/stops/509480"], ["https://data.delijn.be/stops/505118", "https://data.delijn.be/stops/509479"], ["https://data.delijn.be/stops/302096", "https://data.delijn.be/stops/302104"], ["https://data.delijn.be/stops/207641", "https://data.delijn.be/stops/207642"], ["https://data.delijn.be/stops/101024", "https://data.delijn.be/stops/101027"], ["https://data.delijn.be/stops/202435", "https://data.delijn.be/stops/203435"], ["https://data.delijn.be/stops/207587", "https://data.delijn.be/stops/207588"], ["https://data.delijn.be/stops/206208", "https://data.delijn.be/stops/207208"], ["https://data.delijn.be/stops/308241", "https://data.delijn.be/stops/308242"], ["https://data.delijn.be/stops/204294", "https://data.delijn.be/stops/205293"], ["https://data.delijn.be/stops/203353", "https://data.delijn.be/stops/211046"], ["https://data.delijn.be/stops/407380", "https://data.delijn.be/stops/407381"], ["https://data.delijn.be/stops/105607", "https://data.delijn.be/stops/105609"], ["https://data.delijn.be/stops/209601", "https://data.delijn.be/stops/307592"], ["https://data.delijn.be/stops/403275", "https://data.delijn.be/stops/403406"], ["https://data.delijn.be/stops/501016", "https://data.delijn.be/stops/501687"], ["https://data.delijn.be/stops/101262", "https://data.delijn.be/stops/102185"], ["https://data.delijn.be/stops/503006", "https://data.delijn.be/stops/508002"], ["https://data.delijn.be/stops/200249", "https://data.delijn.be/stops/201450"], ["https://data.delijn.be/stops/405642", "https://data.delijn.be/stops/410339"], ["https://data.delijn.be/stops/302455", "https://data.delijn.be/stops/304756"], ["https://data.delijn.be/stops/101067", "https://data.delijn.be/stops/108940"], ["https://data.delijn.be/stops/104113", "https://data.delijn.be/stops/107881"], ["https://data.delijn.be/stops/204501", "https://data.delijn.be/stops/205501"], ["https://data.delijn.be/stops/400931", "https://data.delijn.be/stops/400943"], ["https://data.delijn.be/stops/502414", "https://data.delijn.be/stops/502431"], ["https://data.delijn.be/stops/106384", "https://data.delijn.be/stops/106386"], ["https://data.delijn.be/stops/504690", "https://data.delijn.be/stops/505940"], ["https://data.delijn.be/stops/405918", "https://data.delijn.be/stops/405970"], ["https://data.delijn.be/stops/408203", "https://data.delijn.be/stops/408215"], ["https://data.delijn.be/stops/303268", "https://data.delijn.be/stops/303308"], ["https://data.delijn.be/stops/300904", "https://data.delijn.be/stops/300907"], ["https://data.delijn.be/stops/207178", "https://data.delijn.be/stops/303843"], ["https://data.delijn.be/stops/206588", "https://data.delijn.be/stops/206589"], ["https://data.delijn.be/stops/209331", "https://data.delijn.be/stops/209702"], ["https://data.delijn.be/stops/105962", "https://data.delijn.be/stops/105963"], ["https://data.delijn.be/stops/300158", "https://data.delijn.be/stops/306697"], ["https://data.delijn.be/stops/103752", "https://data.delijn.be/stops/105655"], ["https://data.delijn.be/stops/502507", "https://data.delijn.be/stops/507492"], ["https://data.delijn.be/stops/402502", "https://data.delijn.be/stops/402529"], ["https://data.delijn.be/stops/302361", "https://data.delijn.be/stops/302366"], ["https://data.delijn.be/stops/300529", "https://data.delijn.be/stops/300534"], ["https://data.delijn.be/stops/402156", "https://data.delijn.be/stops/409392"], ["https://data.delijn.be/stops/306930", "https://data.delijn.be/stops/308726"], ["https://data.delijn.be/stops/508241", "https://data.delijn.be/stops/508262"], ["https://data.delijn.be/stops/107355", "https://data.delijn.be/stops/108065"], ["https://data.delijn.be/stops/400830", "https://data.delijn.be/stops/405667"], ["https://data.delijn.be/stops/502483", "https://data.delijn.be/stops/505340"], ["https://data.delijn.be/stops/503914", "https://data.delijn.be/stops/503924"], ["https://data.delijn.be/stops/300495", "https://data.delijn.be/stops/306175"], ["https://data.delijn.be/stops/505935", "https://data.delijn.be/stops/508296"], ["https://data.delijn.be/stops/305748", "https://data.delijn.be/stops/305754"], ["https://data.delijn.be/stops/501255", "https://data.delijn.be/stops/501635"], ["https://data.delijn.be/stops/302805", "https://data.delijn.be/stops/306176"], ["https://data.delijn.be/stops/503619", "https://data.delijn.be/stops/503625"], ["https://data.delijn.be/stops/204178", "https://data.delijn.be/stops/204242"], ["https://data.delijn.be/stops/301747", "https://data.delijn.be/stops/305906"], ["https://data.delijn.be/stops/208418", "https://data.delijn.be/stops/208745"], ["https://data.delijn.be/stops/401160", "https://data.delijn.be/stops/408103"], ["https://data.delijn.be/stops/203004", "https://data.delijn.be/stops/203759"], ["https://data.delijn.be/stops/407609", "https://data.delijn.be/stops/409785"], ["https://data.delijn.be/stops/403599", "https://data.delijn.be/stops/403616"], ["https://data.delijn.be/stops/401137", "https://data.delijn.be/stops/401140"], ["https://data.delijn.be/stops/202088", "https://data.delijn.be/stops/202089"], ["https://data.delijn.be/stops/204306", "https://data.delijn.be/stops/204307"], ["https://data.delijn.be/stops/505556", "https://data.delijn.be/stops/505558"], ["https://data.delijn.be/stops/302201", "https://data.delijn.be/stops/308097"], ["https://data.delijn.be/stops/400967", "https://data.delijn.be/stops/401281"], ["https://data.delijn.be/stops/408877", "https://data.delijn.be/stops/408890"], ["https://data.delijn.be/stops/403254", "https://data.delijn.be/stops/403396"], ["https://data.delijn.be/stops/206447", "https://data.delijn.be/stops/207159"], ["https://data.delijn.be/stops/300686", "https://data.delijn.be/stops/303498"], ["https://data.delijn.be/stops/403535", "https://data.delijn.be/stops/403545"], ["https://data.delijn.be/stops/401932", "https://data.delijn.be/stops/401934"], ["https://data.delijn.be/stops/405142", "https://data.delijn.be/stops/405201"], ["https://data.delijn.be/stops/303692", "https://data.delijn.be/stops/303764"], ["https://data.delijn.be/stops/105862", "https://data.delijn.be/stops/105864"], ["https://data.delijn.be/stops/207887", "https://data.delijn.be/stops/207889"], ["https://data.delijn.be/stops/302737", "https://data.delijn.be/stops/308813"], ["https://data.delijn.be/stops/304761", "https://data.delijn.be/stops/304778"], ["https://data.delijn.be/stops/303463", "https://data.delijn.be/stops/303505"], ["https://data.delijn.be/stops/209064", "https://data.delijn.be/stops/209067"], ["https://data.delijn.be/stops/503582", "https://data.delijn.be/stops/503996"], ["https://data.delijn.be/stops/200446", "https://data.delijn.be/stops/201447"], ["https://data.delijn.be/stops/202833", "https://data.delijn.be/stops/218025"], ["https://data.delijn.be/stops/503171", "https://data.delijn.be/stops/508175"], ["https://data.delijn.be/stops/105324", "https://data.delijn.be/stops/105327"], ["https://data.delijn.be/stops/400344", "https://data.delijn.be/stops/400438"], ["https://data.delijn.be/stops/402174", "https://data.delijn.be/stops/402175"], ["https://data.delijn.be/stops/300576", "https://data.delijn.be/stops/300583"], ["https://data.delijn.be/stops/202950", "https://data.delijn.be/stops/203950"], ["https://data.delijn.be/stops/103161", "https://data.delijn.be/stops/109740"], ["https://data.delijn.be/stops/208359", "https://data.delijn.be/stops/208720"], ["https://data.delijn.be/stops/101182", "https://data.delijn.be/stops/104861"], ["https://data.delijn.be/stops/302742", "https://data.delijn.be/stops/302760"], ["https://data.delijn.be/stops/107228", "https://data.delijn.be/stops/107231"], ["https://data.delijn.be/stops/208074", "https://data.delijn.be/stops/209075"], ["https://data.delijn.be/stops/102527", "https://data.delijn.be/stops/102528"], ["https://data.delijn.be/stops/206055", "https://data.delijn.be/stops/207026"], ["https://data.delijn.be/stops/101133", "https://data.delijn.be/stops/108360"], ["https://data.delijn.be/stops/500561", "https://data.delijn.be/stops/500564"], ["https://data.delijn.be/stops/500555", "https://data.delijn.be/stops/507213"], ["https://data.delijn.be/stops/301510", "https://data.delijn.be/stops/301520"], ["https://data.delijn.be/stops/208411", "https://data.delijn.be/stops/209411"], ["https://data.delijn.be/stops/404249", "https://data.delijn.be/stops/404320"], ["https://data.delijn.be/stops/303817", "https://data.delijn.be/stops/307497"], ["https://data.delijn.be/stops/204046", "https://data.delijn.be/stops/205046"], ["https://data.delijn.be/stops/102076", "https://data.delijn.be/stops/102079"], ["https://data.delijn.be/stops/401772", "https://data.delijn.be/stops/406341"], ["https://data.delijn.be/stops/207964", "https://data.delijn.be/stops/216003"], ["https://data.delijn.be/stops/507416", "https://data.delijn.be/stops/507430"], ["https://data.delijn.be/stops/403648", "https://data.delijn.be/stops/409965"], ["https://data.delijn.be/stops/204389", "https://data.delijn.be/stops/205389"], ["https://data.delijn.be/stops/402042", "https://data.delijn.be/stops/410071"], ["https://data.delijn.be/stops/200548", "https://data.delijn.be/stops/201375"], ["https://data.delijn.be/stops/509038", "https://data.delijn.be/stops/509286"], ["https://data.delijn.be/stops/301030", "https://data.delijn.be/stops/301031"], ["https://data.delijn.be/stops/109446", "https://data.delijn.be/stops/109448"], ["https://data.delijn.be/stops/405948", "https://data.delijn.be/stops/405950"], ["https://data.delijn.be/stops/405386", "https://data.delijn.be/stops/405393"], ["https://data.delijn.be/stops/502522", "https://data.delijn.be/stops/507522"], ["https://data.delijn.be/stops/305954", "https://data.delijn.be/stops/305955"], ["https://data.delijn.be/stops/107142", "https://data.delijn.be/stops/107143"], ["https://data.delijn.be/stops/505646", "https://data.delijn.be/stops/505773"], ["https://data.delijn.be/stops/108767", "https://data.delijn.be/stops/108768"], ["https://data.delijn.be/stops/208112", "https://data.delijn.be/stops/209798"], ["https://data.delijn.be/stops/200889", "https://data.delijn.be/stops/202299"], ["https://data.delijn.be/stops/201648", "https://data.delijn.be/stops/202864"], ["https://data.delijn.be/stops/302262", "https://data.delijn.be/stops/303194"], ["https://data.delijn.be/stops/502491", "https://data.delijn.be/stops/502507"], ["https://data.delijn.be/stops/504110", "https://data.delijn.be/stops/504111"], ["https://data.delijn.be/stops/402404", "https://data.delijn.be/stops/402441"], ["https://data.delijn.be/stops/200402", "https://data.delijn.be/stops/201402"], ["https://data.delijn.be/stops/207702", "https://data.delijn.be/stops/207705"], ["https://data.delijn.be/stops/102204", "https://data.delijn.be/stops/102669"], ["https://data.delijn.be/stops/508325", "https://data.delijn.be/stops/508730"], ["https://data.delijn.be/stops/207989", "https://data.delijn.be/stops/217007"], ["https://data.delijn.be/stops/102995", "https://data.delijn.be/stops/104021"], ["https://data.delijn.be/stops/301252", "https://data.delijn.be/stops/308266"], ["https://data.delijn.be/stops/304519", "https://data.delijn.be/stops/307255"], ["https://data.delijn.be/stops/300722", "https://data.delijn.be/stops/301426"], ["https://data.delijn.be/stops/200705", "https://data.delijn.be/stops/202574"], ["https://data.delijn.be/stops/305647", "https://data.delijn.be/stops/305664"], ["https://data.delijn.be/stops/102164", "https://data.delijn.be/stops/102166"], ["https://data.delijn.be/stops/404503", "https://data.delijn.be/stops/404534"], ["https://data.delijn.be/stops/107121", "https://data.delijn.be/stops/107124"], ["https://data.delijn.be/stops/304991", "https://data.delijn.be/stops/304993"], ["https://data.delijn.be/stops/503435", "https://data.delijn.be/stops/503444"], ["https://data.delijn.be/stops/500998", "https://data.delijn.be/stops/509402"], ["https://data.delijn.be/stops/103031", "https://data.delijn.be/stops/104605"], ["https://data.delijn.be/stops/504565", "https://data.delijn.be/stops/509276"], ["https://data.delijn.be/stops/304493", "https://data.delijn.be/stops/307566"], ["https://data.delijn.be/stops/501399", "https://data.delijn.be/stops/501568"], ["https://data.delijn.be/stops/206922", "https://data.delijn.be/stops/207922"], ["https://data.delijn.be/stops/503414", "https://data.delijn.be/stops/505856"], ["https://data.delijn.be/stops/303740", "https://data.delijn.be/stops/304918"], ["https://data.delijn.be/stops/301664", "https://data.delijn.be/stops/307823"], ["https://data.delijn.be/stops/201231", "https://data.delijn.be/stops/203133"], ["https://data.delijn.be/stops/302951", "https://data.delijn.be/stops/306374"], ["https://data.delijn.be/stops/204234", "https://data.delijn.be/stops/205793"], ["https://data.delijn.be/stops/400274", "https://data.delijn.be/stops/400275"], ["https://data.delijn.be/stops/506363", "https://data.delijn.be/stops/590412"], ["https://data.delijn.be/stops/403928", "https://data.delijn.be/stops/403960"], ["https://data.delijn.be/stops/208889", "https://data.delijn.be/stops/211853"], ["https://data.delijn.be/stops/303162", "https://data.delijn.be/stops/303575"], ["https://data.delijn.be/stops/305138", "https://data.delijn.be/stops/305140"], ["https://data.delijn.be/stops/208368", "https://data.delijn.be/stops/209499"], ["https://data.delijn.be/stops/409263", "https://data.delijn.be/stops/409340"], ["https://data.delijn.be/stops/304552", "https://data.delijn.be/stops/304640"], ["https://data.delijn.be/stops/201894", "https://data.delijn.be/stops/210126"], ["https://data.delijn.be/stops/400228", "https://data.delijn.be/stops/402357"], ["https://data.delijn.be/stops/303462", "https://data.delijn.be/stops/304989"], ["https://data.delijn.be/stops/206856", "https://data.delijn.be/stops/207197"], ["https://data.delijn.be/stops/501687", "https://data.delijn.be/stops/506598"], ["https://data.delijn.be/stops/408572", "https://data.delijn.be/stops/408575"], ["https://data.delijn.be/stops/205983", "https://data.delijn.be/stops/206677"], ["https://data.delijn.be/stops/501137", "https://data.delijn.be/stops/506137"], ["https://data.delijn.be/stops/508270", "https://data.delijn.be/stops/508492"], ["https://data.delijn.be/stops/502323", "https://data.delijn.be/stops/502336"], ["https://data.delijn.be/stops/204138", "https://data.delijn.be/stops/204142"], ["https://data.delijn.be/stops/102901", "https://data.delijn.be/stops/109026"], ["https://data.delijn.be/stops/204346", "https://data.delijn.be/stops/204695"], ["https://data.delijn.be/stops/300393", "https://data.delijn.be/stops/300394"], ["https://data.delijn.be/stops/402400", "https://data.delijn.be/stops/402491"], ["https://data.delijn.be/stops/402628", "https://data.delijn.be/stops/405663"], ["https://data.delijn.be/stops/303253", "https://data.delijn.be/stops/306338"], ["https://data.delijn.be/stops/504192", "https://data.delijn.be/stops/509169"], ["https://data.delijn.be/stops/106993", "https://data.delijn.be/stops/106994"], ["https://data.delijn.be/stops/108683", "https://data.delijn.be/stops/108892"], ["https://data.delijn.be/stops/505752", "https://data.delijn.be/stops/507756"], ["https://data.delijn.be/stops/503164", "https://data.delijn.be/stops/503605"], ["https://data.delijn.be/stops/104892", "https://data.delijn.be/stops/109356"], ["https://data.delijn.be/stops/503851", "https://data.delijn.be/stops/505923"], ["https://data.delijn.be/stops/406283", "https://data.delijn.be/stops/409357"], ["https://data.delijn.be/stops/505368", "https://data.delijn.be/stops/505810"], ["https://data.delijn.be/stops/210012", "https://data.delijn.be/stops/502275"], ["https://data.delijn.be/stops/408200", "https://data.delijn.be/stops/408259"], ["https://data.delijn.be/stops/108814", "https://data.delijn.be/stops/108849"], ["https://data.delijn.be/stops/305343", "https://data.delijn.be/stops/307970"], ["https://data.delijn.be/stops/300318", "https://data.delijn.be/stops/300624"], ["https://data.delijn.be/stops/508178", "https://data.delijn.be/stops/508265"], ["https://data.delijn.be/stops/205681", "https://data.delijn.be/stops/205688"], ["https://data.delijn.be/stops/206573", "https://data.delijn.be/stops/206574"], ["https://data.delijn.be/stops/307136", "https://data.delijn.be/stops/308716"], ["https://data.delijn.be/stops/504772", "https://data.delijn.be/stops/505921"], ["https://data.delijn.be/stops/507116", "https://data.delijn.be/stops/507383"], ["https://data.delijn.be/stops/505108", "https://data.delijn.be/stops/505645"], ["https://data.delijn.be/stops/505708", "https://data.delijn.be/stops/509139"], ["https://data.delijn.be/stops/500118", "https://data.delijn.be/stops/507268"], ["https://data.delijn.be/stops/200368", "https://data.delijn.be/stops/209727"], ["https://data.delijn.be/stops/505390", "https://data.delijn.be/stops/505932"], ["https://data.delijn.be/stops/204673", "https://data.delijn.be/stops/205673"], ["https://data.delijn.be/stops/202512", "https://data.delijn.be/stops/203511"], ["https://data.delijn.be/stops/504073", "https://data.delijn.be/stops/504210"], ["https://data.delijn.be/stops/303480", "https://data.delijn.be/stops/303482"], ["https://data.delijn.be/stops/200108", "https://data.delijn.be/stops/201361"], ["https://data.delijn.be/stops/501360", "https://data.delijn.be/stops/506345"], ["https://data.delijn.be/stops/403508", "https://data.delijn.be/stops/403528"], ["https://data.delijn.be/stops/404223", "https://data.delijn.be/stops/404238"], ["https://data.delijn.be/stops/206763", "https://data.delijn.be/stops/209655"], ["https://data.delijn.be/stops/402637", "https://data.delijn.be/stops/405580"], ["https://data.delijn.be/stops/202225", "https://data.delijn.be/stops/203224"], ["https://data.delijn.be/stops/407626", "https://data.delijn.be/stops/407627"], ["https://data.delijn.be/stops/200778", "https://data.delijn.be/stops/200908"], ["https://data.delijn.be/stops/505231", "https://data.delijn.be/stops/505777"], ["https://data.delijn.be/stops/504761", "https://data.delijn.be/stops/508532"], ["https://data.delijn.be/stops/400631", "https://data.delijn.be/stops/410006"], ["https://data.delijn.be/stops/401304", "https://data.delijn.be/stops/401351"], ["https://data.delijn.be/stops/106195", "https://data.delijn.be/stops/109186"], ["https://data.delijn.be/stops/502931", "https://data.delijn.be/stops/507931"], ["https://data.delijn.be/stops/204250", "https://data.delijn.be/stops/204468"], ["https://data.delijn.be/stops/101154", "https://data.delijn.be/stops/103306"], ["https://data.delijn.be/stops/405296", "https://data.delijn.be/stops/405298"], ["https://data.delijn.be/stops/504360", "https://data.delijn.be/stops/509357"], ["https://data.delijn.be/stops/206914", "https://data.delijn.be/stops/207890"], ["https://data.delijn.be/stops/202326", "https://data.delijn.be/stops/203326"], ["https://data.delijn.be/stops/402420", "https://data.delijn.be/stops/404498"], ["https://data.delijn.be/stops/209308", "https://data.delijn.be/stops/209309"], ["https://data.delijn.be/stops/208252", "https://data.delijn.be/stops/209253"], ["https://data.delijn.be/stops/109054", "https://data.delijn.be/stops/109057"], ["https://data.delijn.be/stops/105138", "https://data.delijn.be/stops/305826"], ["https://data.delijn.be/stops/503621", "https://data.delijn.be/stops/508697"], ["https://data.delijn.be/stops/101224", "https://data.delijn.be/stops/101799"], ["https://data.delijn.be/stops/207727", "https://data.delijn.be/stops/207733"], ["https://data.delijn.be/stops/104133", "https://data.delijn.be/stops/108259"], ["https://data.delijn.be/stops/105002", "https://data.delijn.be/stops/108889"], ["https://data.delijn.be/stops/406045", "https://data.delijn.be/stops/406054"], ["https://data.delijn.be/stops/504390", "https://data.delijn.be/stops/509391"], ["https://data.delijn.be/stops/301679", "https://data.delijn.be/stops/302393"], ["https://data.delijn.be/stops/406224", "https://data.delijn.be/stops/406432"], ["https://data.delijn.be/stops/504100", "https://data.delijn.be/stops/504481"], ["https://data.delijn.be/stops/200388", "https://data.delijn.be/stops/209703"], ["https://data.delijn.be/stops/205970", "https://data.delijn.be/stops/205971"], ["https://data.delijn.be/stops/406996", "https://data.delijn.be/stops/407135"], ["https://data.delijn.be/stops/505900", "https://data.delijn.be/stops/508315"], ["https://data.delijn.be/stops/400602", "https://data.delijn.be/stops/400607"], ["https://data.delijn.be/stops/207784", "https://data.delijn.be/stops/208188"], ["https://data.delijn.be/stops/202341", "https://data.delijn.be/stops/202448"], ["https://data.delijn.be/stops/502572", "https://data.delijn.be/stops/502573"], ["https://data.delijn.be/stops/104843", "https://data.delijn.be/stops/104844"], ["https://data.delijn.be/stops/301381", "https://data.delijn.be/stops/301383"], ["https://data.delijn.be/stops/404213", "https://data.delijn.be/stops/404221"], ["https://data.delijn.be/stops/403043", "https://data.delijn.be/stops/403094"], ["https://data.delijn.be/stops/500945", "https://data.delijn.be/stops/505166"], ["https://data.delijn.be/stops/208416", "https://data.delijn.be/stops/208745"], ["https://data.delijn.be/stops/204637", "https://data.delijn.be/stops/205638"], ["https://data.delijn.be/stops/200412", "https://data.delijn.be/stops/200505"], ["https://data.delijn.be/stops/502064", "https://data.delijn.be/stops/507071"], ["https://data.delijn.be/stops/509430", "https://data.delijn.be/stops/509696"], ["https://data.delijn.be/stops/209095", "https://data.delijn.be/stops/209404"], ["https://data.delijn.be/stops/207156", "https://data.delijn.be/stops/207639"], ["https://data.delijn.be/stops/101365", "https://data.delijn.be/stops/109709"], ["https://data.delijn.be/stops/205358", "https://data.delijn.be/stops/205919"], ["https://data.delijn.be/stops/406272", "https://data.delijn.be/stops/406279"], ["https://data.delijn.be/stops/504473", "https://data.delijn.be/stops/505837"], ["https://data.delijn.be/stops/405201", "https://data.delijn.be/stops/405290"], ["https://data.delijn.be/stops/202150", "https://data.delijn.be/stops/202197"], ["https://data.delijn.be/stops/201860", "https://data.delijn.be/stops/202671"], ["https://data.delijn.be/stops/505038", "https://data.delijn.be/stops/505046"], ["https://data.delijn.be/stops/509519", "https://data.delijn.be/stops/509521"], ["https://data.delijn.be/stops/104286", "https://data.delijn.be/stops/104289"], ["https://data.delijn.be/stops/208093", "https://data.delijn.be/stops/209094"], ["https://data.delijn.be/stops/303190", "https://data.delijn.be/stops/307953"], ["https://data.delijn.be/stops/200603", "https://data.delijn.be/stops/201603"], ["https://data.delijn.be/stops/301816", "https://data.delijn.be/stops/301818"], ["https://data.delijn.be/stops/305086", "https://data.delijn.be/stops/305087"], ["https://data.delijn.be/stops/409485", "https://data.delijn.be/stops/410069"], ["https://data.delijn.be/stops/301550", "https://data.delijn.be/stops/306961"], ["https://data.delijn.be/stops/200500", "https://data.delijn.be/stops/201553"], ["https://data.delijn.be/stops/504030", "https://data.delijn.be/stops/509032"], ["https://data.delijn.be/stops/209427", "https://data.delijn.be/stops/209430"], ["https://data.delijn.be/stops/502249", "https://data.delijn.be/stops/502252"], ["https://data.delijn.be/stops/109265", "https://data.delijn.be/stops/109267"], ["https://data.delijn.be/stops/106019", "https://data.delijn.be/stops/106021"], ["https://data.delijn.be/stops/208120", "https://data.delijn.be/stops/208794"], ["https://data.delijn.be/stops/400727", "https://data.delijn.be/stops/409398"], ["https://data.delijn.be/stops/301693", "https://data.delijn.be/stops/303746"], ["https://data.delijn.be/stops/107375", "https://data.delijn.be/stops/107595"], ["https://data.delijn.be/stops/104982", "https://data.delijn.be/stops/106773"], ["https://data.delijn.be/stops/403316", "https://data.delijn.be/stops/407587"], ["https://data.delijn.be/stops/305130", "https://data.delijn.be/stops/305136"], ["https://data.delijn.be/stops/102958", "https://data.delijn.be/stops/107011"], ["https://data.delijn.be/stops/202968", "https://data.delijn.be/stops/204092"], ["https://data.delijn.be/stops/200349", "https://data.delijn.be/stops/201501"], ["https://data.delijn.be/stops/403199", "https://data.delijn.be/stops/403279"], ["https://data.delijn.be/stops/201524", "https://data.delijn.be/stops/210131"], ["https://data.delijn.be/stops/301758", "https://data.delijn.be/stops/308421"], ["https://data.delijn.be/stops/200018", "https://data.delijn.be/stops/201018"], ["https://data.delijn.be/stops/306122", "https://data.delijn.be/stops/306148"], ["https://data.delijn.be/stops/102387", "https://data.delijn.be/stops/102599"], ["https://data.delijn.be/stops/301448", "https://data.delijn.be/stops/308411"], ["https://data.delijn.be/stops/300769", "https://data.delijn.be/stops/307142"], ["https://data.delijn.be/stops/103037", "https://data.delijn.be/stops/103934"], ["https://data.delijn.be/stops/108115", "https://data.delijn.be/stops/108120"], ["https://data.delijn.be/stops/204396", "https://data.delijn.be/stops/205396"], ["https://data.delijn.be/stops/503109", "https://data.delijn.be/stops/508374"], ["https://data.delijn.be/stops/503602", "https://data.delijn.be/stops/503611"], ["https://data.delijn.be/stops/103615", "https://data.delijn.be/stops/108300"], ["https://data.delijn.be/stops/402694", "https://data.delijn.be/stops/301477"], ["https://data.delijn.be/stops/407614", "https://data.delijn.be/stops/407681"], ["https://data.delijn.be/stops/304412", "https://data.delijn.be/stops/307501"], ["https://data.delijn.be/stops/208197", "https://data.delijn.be/stops/209197"], ["https://data.delijn.be/stops/305694", "https://data.delijn.be/stops/305699"], ["https://data.delijn.be/stops/303638", "https://data.delijn.be/stops/304804"], ["https://data.delijn.be/stops/408358", "https://data.delijn.be/stops/408403"], ["https://data.delijn.be/stops/505264", "https://data.delijn.be/stops/508223"], ["https://data.delijn.be/stops/502278", "https://data.delijn.be/stops/502279"], ["https://data.delijn.be/stops/205122", "https://data.delijn.be/stops/205123"], ["https://data.delijn.be/stops/501457", "https://data.delijn.be/stops/506457"], ["https://data.delijn.be/stops/405379", "https://data.delijn.be/stops/302840"], ["https://data.delijn.be/stops/505711", "https://data.delijn.be/stops/505985"], ["https://data.delijn.be/stops/404112", "https://data.delijn.be/stops/404113"], ["https://data.delijn.be/stops/502481", "https://data.delijn.be/stops/509891"], ["https://data.delijn.be/stops/400515", "https://data.delijn.be/stops/400534"], ["https://data.delijn.be/stops/403812", "https://data.delijn.be/stops/403815"], ["https://data.delijn.be/stops/202757", "https://data.delijn.be/stops/203757"], ["https://data.delijn.be/stops/102210", "https://data.delijn.be/stops/102895"], ["https://data.delijn.be/stops/504748", "https://data.delijn.be/stops/505837"], ["https://data.delijn.be/stops/404115", "https://data.delijn.be/stops/408739"], ["https://data.delijn.be/stops/101846", "https://data.delijn.be/stops/102092"], ["https://data.delijn.be/stops/202874", "https://data.delijn.be/stops/203875"], ["https://data.delijn.be/stops/302650", "https://data.delijn.be/stops/303295"], ["https://data.delijn.be/stops/507738", "https://data.delijn.be/stops/507764"], ["https://data.delijn.be/stops/502506", "https://data.delijn.be/stops/505553"], ["https://data.delijn.be/stops/206894", "https://data.delijn.be/stops/207894"], ["https://data.delijn.be/stops/200037", "https://data.delijn.be/stops/200376"], ["https://data.delijn.be/stops/202874", "https://data.delijn.be/stops/206427"], ["https://data.delijn.be/stops/501549", "https://data.delijn.be/stops/504734"], ["https://data.delijn.be/stops/509167", "https://data.delijn.be/stops/509475"], ["https://data.delijn.be/stops/402824", "https://data.delijn.be/stops/402825"], ["https://data.delijn.be/stops/400427", "https://data.delijn.be/stops/405133"], ["https://data.delijn.be/stops/305377", "https://data.delijn.be/stops/333453"], ["https://data.delijn.be/stops/103644", "https://data.delijn.be/stops/107176"], ["https://data.delijn.be/stops/200703", "https://data.delijn.be/stops/201872"], ["https://data.delijn.be/stops/302672", "https://data.delijn.be/stops/304098"], ["https://data.delijn.be/stops/404612", "https://data.delijn.be/stops/404614"], ["https://data.delijn.be/stops/206218", "https://data.delijn.be/stops/207462"], ["https://data.delijn.be/stops/501673", "https://data.delijn.be/stops/506673"], ["https://data.delijn.be/stops/405448", "https://data.delijn.be/stops/407901"], ["https://data.delijn.be/stops/405380", "https://data.delijn.be/stops/405383"], ["https://data.delijn.be/stops/401499", "https://data.delijn.be/stops/408635"], ["https://data.delijn.be/stops/206569", "https://data.delijn.be/stops/207569"], ["https://data.delijn.be/stops/108181", "https://data.delijn.be/stops/108184"], ["https://data.delijn.be/stops/501402", "https://data.delijn.be/stops/506401"], ["https://data.delijn.be/stops/104077", "https://data.delijn.be/stops/104078"], ["https://data.delijn.be/stops/103147", "https://data.delijn.be/stops/106296"], ["https://data.delijn.be/stops/304758", "https://data.delijn.be/stops/305289"], ["https://data.delijn.be/stops/103300", "https://data.delijn.be/stops/103305"], ["https://data.delijn.be/stops/202366", "https://data.delijn.be/stops/203997"], ["https://data.delijn.be/stops/207438", "https://data.delijn.be/stops/209560"], ["https://data.delijn.be/stops/408611", "https://data.delijn.be/stops/408695"], ["https://data.delijn.be/stops/308828", "https://data.delijn.be/stops/308829"], ["https://data.delijn.be/stops/205131", "https://data.delijn.be/stops/206635"], ["https://data.delijn.be/stops/207164", "https://data.delijn.be/stops/303378"], ["https://data.delijn.be/stops/108067", "https://data.delijn.be/stops/108366"], ["https://data.delijn.be/stops/303012", "https://data.delijn.be/stops/303044"], ["https://data.delijn.be/stops/300803", "https://data.delijn.be/stops/301956"], ["https://data.delijn.be/stops/201774", "https://data.delijn.be/stops/201807"], ["https://data.delijn.be/stops/407026", "https://data.delijn.be/stops/407035"], ["https://data.delijn.be/stops/305548", "https://data.delijn.be/stops/307824"], ["https://data.delijn.be/stops/209134", "https://data.delijn.be/stops/209135"], ["https://data.delijn.be/stops/505537", "https://data.delijn.be/stops/508803"], ["https://data.delijn.be/stops/509390", "https://data.delijn.be/stops/509391"], ["https://data.delijn.be/stops/503778", "https://data.delijn.be/stops/508779"], ["https://data.delijn.be/stops/304074", "https://data.delijn.be/stops/307050"], ["https://data.delijn.be/stops/302385", "https://data.delijn.be/stops/304117"], ["https://data.delijn.be/stops/405023", "https://data.delijn.be/stops/408372"], ["https://data.delijn.be/stops/200331", "https://data.delijn.be/stops/202196"], ["https://data.delijn.be/stops/301040", "https://data.delijn.be/stops/301052"], ["https://data.delijn.be/stops/402358", "https://data.delijn.be/stops/402359"], ["https://data.delijn.be/stops/106233", "https://data.delijn.be/stops/106236"], ["https://data.delijn.be/stops/404003", "https://data.delijn.be/stops/405968"], ["https://data.delijn.be/stops/207096", "https://data.delijn.be/stops/207097"], ["https://data.delijn.be/stops/409419", "https://data.delijn.be/stops/409420"], ["https://data.delijn.be/stops/101978", "https://data.delijn.be/stops/101979"], ["https://data.delijn.be/stops/209395", "https://data.delijn.be/stops/507959"], ["https://data.delijn.be/stops/202591", "https://data.delijn.be/stops/203590"], ["https://data.delijn.be/stops/409108", "https://data.delijn.be/stops/409113"], ["https://data.delijn.be/stops/402685", "https://data.delijn.be/stops/402724"], ["https://data.delijn.be/stops/308104", "https://data.delijn.be/stops/308105"], ["https://data.delijn.be/stops/106997", "https://data.delijn.be/stops/106998"], ["https://data.delijn.be/stops/307344", "https://data.delijn.be/stops/308535"], ["https://data.delijn.be/stops/107148", "https://data.delijn.be/stops/107149"], ["https://data.delijn.be/stops/102222", "https://data.delijn.be/stops/105543"], ["https://data.delijn.be/stops/202042", "https://data.delijn.be/stops/203730"], ["https://data.delijn.be/stops/206232", "https://data.delijn.be/stops/300161"], ["https://data.delijn.be/stops/301661", "https://data.delijn.be/stops/301666"], ["https://data.delijn.be/stops/505348", "https://data.delijn.be/stops/507370"], ["https://data.delijn.be/stops/200951", "https://data.delijn.be/stops/203076"], ["https://data.delijn.be/stops/501195", "https://data.delijn.be/stops/506194"], ["https://data.delijn.be/stops/203863", "https://data.delijn.be/stops/208692"], ["https://data.delijn.be/stops/307350", "https://data.delijn.be/stops/308590"], ["https://data.delijn.be/stops/503313", "https://data.delijn.be/stops/508791"], ["https://data.delijn.be/stops/108649", "https://data.delijn.be/stops/303980"], ["https://data.delijn.be/stops/203460", "https://data.delijn.be/stops/203461"], ["https://data.delijn.be/stops/404889", "https://data.delijn.be/stops/404907"], ["https://data.delijn.be/stops/301775", "https://data.delijn.be/stops/301779"], ["https://data.delijn.be/stops/201592", "https://data.delijn.be/stops/218935"], ["https://data.delijn.be/stops/202470", "https://data.delijn.be/stops/203470"], ["https://data.delijn.be/stops/504244", "https://data.delijn.be/stops/504702"], ["https://data.delijn.be/stops/204694", "https://data.delijn.be/stops/205691"], ["https://data.delijn.be/stops/206755", "https://data.delijn.be/stops/206803"], ["https://data.delijn.be/stops/301198", "https://data.delijn.be/stops/308264"], ["https://data.delijn.be/stops/503693", "https://data.delijn.be/stops/509871"], ["https://data.delijn.be/stops/200762", "https://data.delijn.be/stops/505286"], ["https://data.delijn.be/stops/305229", "https://data.delijn.be/stops/305890"], ["https://data.delijn.be/stops/304238", "https://data.delijn.be/stops/306706"], ["https://data.delijn.be/stops/108191", "https://data.delijn.be/stops/108192"], ["https://data.delijn.be/stops/105366", "https://data.delijn.be/stops/105394"], ["https://data.delijn.be/stops/305771", "https://data.delijn.be/stops/305786"], ["https://data.delijn.be/stops/207666", "https://data.delijn.be/stops/208505"], ["https://data.delijn.be/stops/401000", "https://data.delijn.be/stops/401153"], ["https://data.delijn.be/stops/204427", "https://data.delijn.be/stops/205412"], ["https://data.delijn.be/stops/206580", "https://data.delijn.be/stops/207819"], ["https://data.delijn.be/stops/404402", "https://data.delijn.be/stops/404412"], ["https://data.delijn.be/stops/503368", "https://data.delijn.be/stops/503414"], ["https://data.delijn.be/stops/403901", "https://data.delijn.be/stops/403933"], ["https://data.delijn.be/stops/409015", "https://data.delijn.be/stops/409017"], ["https://data.delijn.be/stops/301159", "https://data.delijn.be/stops/307682"], ["https://data.delijn.be/stops/103291", "https://data.delijn.be/stops/108732"], ["https://data.delijn.be/stops/504373", "https://data.delijn.be/stops/505714"], ["https://data.delijn.be/stops/305686", "https://data.delijn.be/stops/305687"], ["https://data.delijn.be/stops/303514", "https://data.delijn.be/stops/307891"], ["https://data.delijn.be/stops/400140", "https://data.delijn.be/stops/400141"], ["https://data.delijn.be/stops/203486", "https://data.delijn.be/stops/203487"], ["https://data.delijn.be/stops/202663", "https://data.delijn.be/stops/203663"], ["https://data.delijn.be/stops/307272", "https://data.delijn.be/stops/308694"], ["https://data.delijn.be/stops/502248", "https://data.delijn.be/stops/507245"], ["https://data.delijn.be/stops/200724", "https://data.delijn.be/stops/202328"], ["https://data.delijn.be/stops/402414", "https://data.delijn.be/stops/402416"], ["https://data.delijn.be/stops/304447", "https://data.delijn.be/stops/304450"], ["https://data.delijn.be/stops/208218", "https://data.delijn.be/stops/208593"], ["https://data.delijn.be/stops/210025", "https://data.delijn.be/stops/210037"], ["https://data.delijn.be/stops/503162", "https://data.delijn.be/stops/503176"], ["https://data.delijn.be/stops/206104", "https://data.delijn.be/stops/306722"], ["https://data.delijn.be/stops/401846", "https://data.delijn.be/stops/406236"], ["https://data.delijn.be/stops/106311", "https://data.delijn.be/stops/106313"], ["https://data.delijn.be/stops/300944", "https://data.delijn.be/stops/303670"], ["https://data.delijn.be/stops/507183", "https://data.delijn.be/stops/507186"], ["https://data.delijn.be/stops/201240", "https://data.delijn.be/stops/202955"], ["https://data.delijn.be/stops/200937", "https://data.delijn.be/stops/203704"], ["https://data.delijn.be/stops/206535", "https://data.delijn.be/stops/209687"], ["https://data.delijn.be/stops/202453", "https://data.delijn.be/stops/203453"], ["https://data.delijn.be/stops/202406", "https://data.delijn.be/stops/210405"], ["https://data.delijn.be/stops/502440", "https://data.delijn.be/stops/502750"], ["https://data.delijn.be/stops/205662", "https://data.delijn.be/stops/205681"], ["https://data.delijn.be/stops/405244", "https://data.delijn.be/stops/406324"], ["https://data.delijn.be/stops/205258", "https://data.delijn.be/stops/205286"], ["https://data.delijn.be/stops/305275", "https://data.delijn.be/stops/305312"], ["https://data.delijn.be/stops/105128", "https://data.delijn.be/stops/105129"], ["https://data.delijn.be/stops/206460", "https://data.delijn.be/stops/207461"], ["https://data.delijn.be/stops/200273", "https://data.delijn.be/stops/202002"], ["https://data.delijn.be/stops/500119", "https://data.delijn.be/stops/500120"], ["https://data.delijn.be/stops/306710", "https://data.delijn.be/stops/307983"], ["https://data.delijn.be/stops/206750", "https://data.delijn.be/stops/209473"], ["https://data.delijn.be/stops/400555", "https://data.delijn.be/stops/403425"], ["https://data.delijn.be/stops/109292", "https://data.delijn.be/stops/109295"], ["https://data.delijn.be/stops/302549", "https://data.delijn.be/stops/302558"], ["https://data.delijn.be/stops/304033", "https://data.delijn.be/stops/304090"], ["https://data.delijn.be/stops/102573", "https://data.delijn.be/stops/109168"], ["https://data.delijn.be/stops/207008", "https://data.delijn.be/stops/207052"], ["https://data.delijn.be/stops/200857", "https://data.delijn.be/stops/203306"], ["https://data.delijn.be/stops/304495", "https://data.delijn.be/stops/304497"], ["https://data.delijn.be/stops/404228", "https://data.delijn.be/stops/405653"], ["https://data.delijn.be/stops/303351", "https://data.delijn.be/stops/303361"], ["https://data.delijn.be/stops/304470", "https://data.delijn.be/stops/304526"], ["https://data.delijn.be/stops/302395", "https://data.delijn.be/stops/302762"], ["https://data.delijn.be/stops/303793", "https://data.delijn.be/stops/303846"], ["https://data.delijn.be/stops/302908", "https://data.delijn.be/stops/304325"], ["https://data.delijn.be/stops/303590", "https://data.delijn.be/stops/306392"], ["https://data.delijn.be/stops/207281", "https://data.delijn.be/stops/207282"], ["https://data.delijn.be/stops/207944", "https://data.delijn.be/stops/207945"], ["https://data.delijn.be/stops/101383", "https://data.delijn.be/stops/101384"], ["https://data.delijn.be/stops/504943", "https://data.delijn.be/stops/509153"], ["https://data.delijn.be/stops/503064", "https://data.delijn.be/stops/509303"], ["https://data.delijn.be/stops/505507", "https://data.delijn.be/stops/505607"], ["https://data.delijn.be/stops/503422", "https://data.delijn.be/stops/508405"], ["https://data.delijn.be/stops/503609", "https://data.delijn.be/stops/508610"], ["https://data.delijn.be/stops/502516", "https://data.delijn.be/stops/507516"], ["https://data.delijn.be/stops/106364", "https://data.delijn.be/stops/106366"], ["https://data.delijn.be/stops/101931", "https://data.delijn.be/stops/106253"], ["https://data.delijn.be/stops/203974", "https://data.delijn.be/stops/204236"], ["https://data.delijn.be/stops/207450", "https://data.delijn.be/stops/207492"], ["https://data.delijn.be/stops/401439", "https://data.delijn.be/stops/401633"], ["https://data.delijn.be/stops/501087", "https://data.delijn.be/stops/501093"], ["https://data.delijn.be/stops/204311", "https://data.delijn.be/stops/204449"], ["https://data.delijn.be/stops/106720", "https://data.delijn.be/stops/109672"], ["https://data.delijn.be/stops/302348", "https://data.delijn.be/stops/302357"], ["https://data.delijn.be/stops/302763", "https://data.delijn.be/stops/302764"], ["https://data.delijn.be/stops/101183", "https://data.delijn.be/stops/205644"], ["https://data.delijn.be/stops/106488", "https://data.delijn.be/stops/106490"], ["https://data.delijn.be/stops/401207", "https://data.delijn.be/stops/401375"], ["https://data.delijn.be/stops/205469", "https://data.delijn.be/stops/214010"], ["https://data.delijn.be/stops/308229", "https://data.delijn.be/stops/308230"], ["https://data.delijn.be/stops/109059", "https://data.delijn.be/stops/109062"], ["https://data.delijn.be/stops/207586", "https://data.delijn.be/stops/207919"], ["https://data.delijn.be/stops/300625", "https://data.delijn.be/stops/300626"], ["https://data.delijn.be/stops/107812", "https://data.delijn.be/stops/109918"], ["https://data.delijn.be/stops/408102", "https://data.delijn.be/stops/408420"], ["https://data.delijn.be/stops/406881", "https://data.delijn.be/stops/409768"], ["https://data.delijn.be/stops/400564", "https://data.delijn.be/stops/400565"], ["https://data.delijn.be/stops/204068", "https://data.delijn.be/stops/204402"], ["https://data.delijn.be/stops/305999", "https://data.delijn.be/stops/306003"], ["https://data.delijn.be/stops/305052", "https://data.delijn.be/stops/306929"], ["https://data.delijn.be/stops/400810", "https://data.delijn.be/stops/405666"], ["https://data.delijn.be/stops/103685", "https://data.delijn.be/stops/103977"], ["https://data.delijn.be/stops/208801", "https://data.delijn.be/stops/209211"], ["https://data.delijn.be/stops/401511", "https://data.delijn.be/stops/402844"], ["https://data.delijn.be/stops/102456", "https://data.delijn.be/stops/102462"], ["https://data.delijn.be/stops/302564", "https://data.delijn.be/stops/302601"], ["https://data.delijn.be/stops/103206", "https://data.delijn.be/stops/106436"], ["https://data.delijn.be/stops/108138", "https://data.delijn.be/stops/108843"], ["https://data.delijn.be/stops/402444", "https://data.delijn.be/stops/402446"], ["https://data.delijn.be/stops/302795", "https://data.delijn.be/stops/306561"], ["https://data.delijn.be/stops/104124", "https://data.delijn.be/stops/104126"], ["https://data.delijn.be/stops/303363", "https://data.delijn.be/stops/303397"], ["https://data.delijn.be/stops/407941", "https://data.delijn.be/stops/408125"], ["https://data.delijn.be/stops/407397", "https://data.delijn.be/stops/407542"], ["https://data.delijn.be/stops/105872", "https://data.delijn.be/stops/109744"], ["https://data.delijn.be/stops/304250", "https://data.delijn.be/stops/304257"], ["https://data.delijn.be/stops/205630", "https://data.delijn.be/stops/205631"], ["https://data.delijn.be/stops/401129", "https://data.delijn.be/stops/407796"], ["https://data.delijn.be/stops/403058", "https://data.delijn.be/stops/406836"], ["https://data.delijn.be/stops/103283", "https://data.delijn.be/stops/105995"], ["https://data.delijn.be/stops/302949", "https://data.delijn.be/stops/306297"], ["https://data.delijn.be/stops/401225", "https://data.delijn.be/stops/406943"], ["https://data.delijn.be/stops/300183", "https://data.delijn.be/stops/306742"], ["https://data.delijn.be/stops/503094", "https://data.delijn.be/stops/505848"], ["https://data.delijn.be/stops/201772", "https://data.delijn.be/stops/209271"], ["https://data.delijn.be/stops/501318", "https://data.delijn.be/stops/506517"], ["https://data.delijn.be/stops/504756", "https://data.delijn.be/stops/509755"], ["https://data.delijn.be/stops/403648", "https://data.delijn.be/stops/403649"], ["https://data.delijn.be/stops/308168", "https://data.delijn.be/stops/308169"], ["https://data.delijn.be/stops/400886", "https://data.delijn.be/stops/409614"], ["https://data.delijn.be/stops/503478", "https://data.delijn.be/stops/504805"], ["https://data.delijn.be/stops/305918", "https://data.delijn.be/stops/307457"], ["https://data.delijn.be/stops/505265", "https://data.delijn.be/stops/508219"], ["https://data.delijn.be/stops/104571", "https://data.delijn.be/stops/104572"], ["https://data.delijn.be/stops/303285", "https://data.delijn.be/stops/303331"], ["https://data.delijn.be/stops/407859", "https://data.delijn.be/stops/407945"], ["https://data.delijn.be/stops/407682", "https://data.delijn.be/stops/409878"], ["https://data.delijn.be/stops/102824", "https://data.delijn.be/stops/106236"], ["https://data.delijn.be/stops/303522", "https://data.delijn.be/stops/303523"], ["https://data.delijn.be/stops/502065", "https://data.delijn.be/stops/505680"], ["https://data.delijn.be/stops/102886", "https://data.delijn.be/stops/102887"], ["https://data.delijn.be/stops/104962", "https://data.delijn.be/stops/109615"], ["https://data.delijn.be/stops/406160", "https://data.delijn.be/stops/406296"], ["https://data.delijn.be/stops/206308", "https://data.delijn.be/stops/207307"], ["https://data.delijn.be/stops/302857", "https://data.delijn.be/stops/302889"], ["https://data.delijn.be/stops/206949", "https://data.delijn.be/stops/207591"], ["https://data.delijn.be/stops/206185", "https://data.delijn.be/stops/207955"], ["https://data.delijn.be/stops/200251", "https://data.delijn.be/stops/202193"], ["https://data.delijn.be/stops/303820", "https://data.delijn.be/stops/303821"], ["https://data.delijn.be/stops/502235", "https://data.delijn.be/stops/502684"], ["https://data.delijn.be/stops/401543", "https://data.delijn.be/stops/401958"], ["https://data.delijn.be/stops/500043", "https://data.delijn.be/stops/500045"], ["https://data.delijn.be/stops/206365", "https://data.delijn.be/stops/207335"], ["https://data.delijn.be/stops/501238", "https://data.delijn.be/stops/506425"], ["https://data.delijn.be/stops/103240", "https://data.delijn.be/stops/107395"], ["https://data.delijn.be/stops/208403", "https://data.delijn.be/stops/209290"], ["https://data.delijn.be/stops/202391", "https://data.delijn.be/stops/202395"], ["https://data.delijn.be/stops/106580", "https://data.delijn.be/stops/107790"], ["https://data.delijn.be/stops/300448", "https://data.delijn.be/stops/308297"], ["https://data.delijn.be/stops/105386", "https://data.delijn.be/stops/105389"], ["https://data.delijn.be/stops/408222", "https://data.delijn.be/stops/408299"], ["https://data.delijn.be/stops/502668", "https://data.delijn.be/stops/507668"], ["https://data.delijn.be/stops/202937", "https://data.delijn.be/stops/203816"], ["https://data.delijn.be/stops/405200", "https://data.delijn.be/stops/405201"], ["https://data.delijn.be/stops/401288", "https://data.delijn.be/stops/405467"], ["https://data.delijn.be/stops/201497", "https://data.delijn.be/stops/211055"], ["https://data.delijn.be/stops/300468", "https://data.delijn.be/stops/300469"], ["https://data.delijn.be/stops/402944", "https://data.delijn.be/stops/402945"], ["https://data.delijn.be/stops/403601", "https://data.delijn.be/stops/407515"], ["https://data.delijn.be/stops/301549", "https://data.delijn.be/stops/301595"], ["https://data.delijn.be/stops/204139", "https://data.delijn.be/stops/207888"], ["https://data.delijn.be/stops/208622", "https://data.delijn.be/stops/208623"], ["https://data.delijn.be/stops/107067", "https://data.delijn.be/stops/107068"], ["https://data.delijn.be/stops/102253", "https://data.delijn.be/stops/109307"], ["https://data.delijn.be/stops/106400", "https://data.delijn.be/stops/106574"], ["https://data.delijn.be/stops/304150", "https://data.delijn.be/stops/307761"], ["https://data.delijn.be/stops/302943", "https://data.delijn.be/stops/302944"], ["https://data.delijn.be/stops/204511", "https://data.delijn.be/stops/205497"], ["https://data.delijn.be/stops/101788", "https://data.delijn.be/stops/105613"], ["https://data.delijn.be/stops/303304", "https://data.delijn.be/stops/303305"], ["https://data.delijn.be/stops/304086", "https://data.delijn.be/stops/306004"], ["https://data.delijn.be/stops/108857", "https://data.delijn.be/stops/108859"], ["https://data.delijn.be/stops/207840", "https://data.delijn.be/stops/207927"], ["https://data.delijn.be/stops/502566", "https://data.delijn.be/stops/507575"], ["https://data.delijn.be/stops/106533", "https://data.delijn.be/stops/107304"], ["https://data.delijn.be/stops/103722", "https://data.delijn.be/stops/306590"], ["https://data.delijn.be/stops/106473", "https://data.delijn.be/stops/107051"], ["https://data.delijn.be/stops/502801", "https://data.delijn.be/stops/504158"], ["https://data.delijn.be/stops/502812", "https://data.delijn.be/stops/505670"], ["https://data.delijn.be/stops/401454", "https://data.delijn.be/stops/401458"], ["https://data.delijn.be/stops/208644", "https://data.delijn.be/stops/209645"], ["https://data.delijn.be/stops/105336", "https://data.delijn.be/stops/105341"], ["https://data.delijn.be/stops/408654", "https://data.delijn.be/stops/408691"], ["https://data.delijn.be/stops/206194", "https://data.delijn.be/stops/207194"], ["https://data.delijn.be/stops/502450", "https://data.delijn.be/stops/502466"], ["https://data.delijn.be/stops/102380", "https://data.delijn.be/stops/104030"], ["https://data.delijn.be/stops/105419", "https://data.delijn.be/stops/109829"], ["https://data.delijn.be/stops/504656", "https://data.delijn.be/stops/505119"], ["https://data.delijn.be/stops/206267", "https://data.delijn.be/stops/207902"], ["https://data.delijn.be/stops/200910", "https://data.delijn.be/stops/203252"], ["https://data.delijn.be/stops/302789", "https://data.delijn.be/stops/307845"], ["https://data.delijn.be/stops/205079", "https://data.delijn.be/stops/205584"], ["https://data.delijn.be/stops/205374", "https://data.delijn.be/stops/205762"], ["https://data.delijn.be/stops/202983", "https://data.delijn.be/stops/203983"], ["https://data.delijn.be/stops/400505", "https://data.delijn.be/stops/401437"], ["https://data.delijn.be/stops/204129", "https://data.delijn.be/stops/204575"], ["https://data.delijn.be/stops/504048", "https://data.delijn.be/stops/509056"], ["https://data.delijn.be/stops/300283", "https://data.delijn.be/stops/300298"], ["https://data.delijn.be/stops/301991", "https://data.delijn.be/stops/303281"], ["https://data.delijn.be/stops/402327", "https://data.delijn.be/stops/409372"], ["https://data.delijn.be/stops/505514", "https://data.delijn.be/stops/505618"], ["https://data.delijn.be/stops/103622", "https://data.delijn.be/stops/106196"], ["https://data.delijn.be/stops/304820", "https://data.delijn.be/stops/306405"], ["https://data.delijn.be/stops/206777", "https://data.delijn.be/stops/209477"], ["https://data.delijn.be/stops/305587", "https://data.delijn.be/stops/308816"], ["https://data.delijn.be/stops/404128", "https://data.delijn.be/stops/404129"], ["https://data.delijn.be/stops/407693", "https://data.delijn.be/stops/409878"], ["https://data.delijn.be/stops/504226", "https://data.delijn.be/stops/504228"], ["https://data.delijn.be/stops/404188", "https://data.delijn.be/stops/404195"], ["https://data.delijn.be/stops/503634", "https://data.delijn.be/stops/504676"], ["https://data.delijn.be/stops/301665", "https://data.delijn.be/stops/307822"], ["https://data.delijn.be/stops/509276", "https://data.delijn.be/stops/509978"], ["https://data.delijn.be/stops/503282", "https://data.delijn.be/stops/505952"], ["https://data.delijn.be/stops/301827", "https://data.delijn.be/stops/301840"], ["https://data.delijn.be/stops/506235", "https://data.delijn.be/stops/506245"], ["https://data.delijn.be/stops/206030", "https://data.delijn.be/stops/206901"], ["https://data.delijn.be/stops/400773", "https://data.delijn.be/stops/409634"], ["https://data.delijn.be/stops/105009", "https://data.delijn.be/stops/106833"], ["https://data.delijn.be/stops/208406", "https://data.delijn.be/stops/208740"], ["https://data.delijn.be/stops/404314", "https://data.delijn.be/stops/404390"], ["https://data.delijn.be/stops/201694", "https://data.delijn.be/stops/201864"], ["https://data.delijn.be/stops/404696", "https://data.delijn.be/stops/407141"], ["https://data.delijn.be/stops/104383", "https://data.delijn.be/stops/104384"], ["https://data.delijn.be/stops/500953", "https://data.delijn.be/stops/508623"], ["https://data.delijn.be/stops/108633", "https://data.delijn.be/stops/109662"], ["https://data.delijn.be/stops/108727", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/501622", "https://data.delijn.be/stops/506620"], ["https://data.delijn.be/stops/206626", "https://data.delijn.be/stops/207626"], ["https://data.delijn.be/stops/504948", "https://data.delijn.be/stops/509948"], ["https://data.delijn.be/stops/405684", "https://data.delijn.be/stops/405687"], ["https://data.delijn.be/stops/504604", "https://data.delijn.be/stops/509604"], ["https://data.delijn.be/stops/307047", "https://data.delijn.be/stops/307781"], ["https://data.delijn.be/stops/408344", "https://data.delijn.be/stops/410158"], ["https://data.delijn.be/stops/405124", "https://data.delijn.be/stops/409284"], ["https://data.delijn.be/stops/103725", "https://data.delijn.be/stops/104480"], ["https://data.delijn.be/stops/401647", "https://data.delijn.be/stops/401648"], ["https://data.delijn.be/stops/301651", "https://data.delijn.be/stops/301652"], ["https://data.delijn.be/stops/305522", "https://data.delijn.be/stops/305573"], ["https://data.delijn.be/stops/102961", "https://data.delijn.be/stops/107248"], ["https://data.delijn.be/stops/201769", "https://data.delijn.be/stops/219011"], ["https://data.delijn.be/stops/504649", "https://data.delijn.be/stops/505119"], ["https://data.delijn.be/stops/305648", "https://data.delijn.be/stops/305649"], ["https://data.delijn.be/stops/300480", "https://data.delijn.be/stops/308929"], ["https://data.delijn.be/stops/300806", "https://data.delijn.be/stops/304774"], ["https://data.delijn.be/stops/504805", "https://data.delijn.be/stops/504806"], ["https://data.delijn.be/stops/206142", "https://data.delijn.be/stops/207089"], ["https://data.delijn.be/stops/505408", "https://data.delijn.be/stops/508146"], ["https://data.delijn.be/stops/204115", "https://data.delijn.be/stops/205690"], ["https://data.delijn.be/stops/101320", "https://data.delijn.be/stops/104111"], ["https://data.delijn.be/stops/201825", "https://data.delijn.be/stops/202309"], ["https://data.delijn.be/stops/402317", "https://data.delijn.be/stops/402398"], ["https://data.delijn.be/stops/504253", "https://data.delijn.be/stops/504715"], ["https://data.delijn.be/stops/208194", "https://data.delijn.be/stops/209155"], ["https://data.delijn.be/stops/203932", "https://data.delijn.be/stops/218001"], ["https://data.delijn.be/stops/300964", "https://data.delijn.be/stops/300974"], ["https://data.delijn.be/stops/301813", "https://data.delijn.be/stops/307181"], ["https://data.delijn.be/stops/203111", "https://data.delijn.be/stops/205069"], ["https://data.delijn.be/stops/405538", "https://data.delijn.be/stops/409271"], ["https://data.delijn.be/stops/206441", "https://data.delijn.be/stops/207441"], ["https://data.delijn.be/stops/208271", "https://data.delijn.be/stops/208272"], ["https://data.delijn.be/stops/407376", "https://data.delijn.be/stops/407377"], ["https://data.delijn.be/stops/109896", "https://data.delijn.be/stops/109897"], ["https://data.delijn.be/stops/101601", "https://data.delijn.be/stops/103609"], ["https://data.delijn.be/stops/109022", "https://data.delijn.be/stops/109075"], ["https://data.delijn.be/stops/302298", "https://data.delijn.be/stops/303507"], ["https://data.delijn.be/stops/300235", "https://data.delijn.be/stops/300283"], ["https://data.delijn.be/stops/209575", "https://data.delijn.be/stops/307525"], ["https://data.delijn.be/stops/401814", "https://data.delijn.be/stops/401818"], ["https://data.delijn.be/stops/108762", "https://data.delijn.be/stops/108763"], ["https://data.delijn.be/stops/406211", "https://data.delijn.be/stops/406212"], ["https://data.delijn.be/stops/208186", "https://data.delijn.be/stops/209185"], ["https://data.delijn.be/stops/101540", "https://data.delijn.be/stops/104626"], ["https://data.delijn.be/stops/208249", "https://data.delijn.be/stops/209249"], ["https://data.delijn.be/stops/408493", "https://data.delijn.be/stops/408952"], ["https://data.delijn.be/stops/206021", "https://data.delijn.be/stops/207021"], ["https://data.delijn.be/stops/204488", "https://data.delijn.be/stops/205485"], ["https://data.delijn.be/stops/200955", "https://data.delijn.be/stops/201913"], ["https://data.delijn.be/stops/108441", "https://data.delijn.be/stops/108444"], ["https://data.delijn.be/stops/303230", "https://data.delijn.be/stops/304549"], ["https://data.delijn.be/stops/403127", "https://data.delijn.be/stops/403129"], ["https://data.delijn.be/stops/302935", "https://data.delijn.be/stops/306371"], ["https://data.delijn.be/stops/105474", "https://data.delijn.be/stops/105682"], ["https://data.delijn.be/stops/308640", "https://data.delijn.be/stops/308641"], ["https://data.delijn.be/stops/407997", "https://data.delijn.be/stops/407999"], ["https://data.delijn.be/stops/107744", "https://data.delijn.be/stops/107745"], ["https://data.delijn.be/stops/500047", "https://data.delijn.be/stops/500048"], ["https://data.delijn.be/stops/305001", "https://data.delijn.be/stops/305021"], ["https://data.delijn.be/stops/402088", "https://data.delijn.be/stops/402202"], ["https://data.delijn.be/stops/208106", "https://data.delijn.be/stops/209778"], ["https://data.delijn.be/stops/207366", "https://data.delijn.be/stops/207688"], ["https://data.delijn.be/stops/304594", "https://data.delijn.be/stops/304630"], ["https://data.delijn.be/stops/200852", "https://data.delijn.be/stops/203066"], ["https://data.delijn.be/stops/504710", "https://data.delijn.be/stops/509164"], ["https://data.delijn.be/stops/107451", "https://data.delijn.be/stops/109755"], ["https://data.delijn.be/stops/302653", "https://data.delijn.be/stops/302654"], ["https://data.delijn.be/stops/107052", "https://data.delijn.be/stops/107053"], ["https://data.delijn.be/stops/205200", "https://data.delijn.be/stops/205205"], ["https://data.delijn.be/stops/305666", "https://data.delijn.be/stops/305748"], ["https://data.delijn.be/stops/207774", "https://data.delijn.be/stops/209187"], ["https://data.delijn.be/stops/105139", "https://data.delijn.be/stops/108506"], ["https://data.delijn.be/stops/404128", "https://data.delijn.be/stops/408554"], ["https://data.delijn.be/stops/101928", "https://data.delijn.be/stops/108192"], ["https://data.delijn.be/stops/107201", "https://data.delijn.be/stops/107612"], ["https://data.delijn.be/stops/303243", "https://data.delijn.be/stops/304247"], ["https://data.delijn.be/stops/305869", "https://data.delijn.be/stops/306827"], ["https://data.delijn.be/stops/504521", "https://data.delijn.be/stops/505803"], ["https://data.delijn.be/stops/202125", "https://data.delijn.be/stops/203600"], ["https://data.delijn.be/stops/402988", "https://data.delijn.be/stops/410053"], ["https://data.delijn.be/stops/404856", "https://data.delijn.be/stops/404913"], ["https://data.delijn.be/stops/400608", "https://data.delijn.be/stops/400609"], ["https://data.delijn.be/stops/504089", "https://data.delijn.be/stops/509087"], ["https://data.delijn.be/stops/502500", "https://data.delijn.be/stops/505331"], ["https://data.delijn.be/stops/201360", "https://data.delijn.be/stops/209908"], ["https://data.delijn.be/stops/300503", "https://data.delijn.be/stops/302366"], ["https://data.delijn.be/stops/400098", "https://data.delijn.be/stops/400128"], ["https://data.delijn.be/stops/202443", "https://data.delijn.be/stops/203443"], ["https://data.delijn.be/stops/401785", "https://data.delijn.be/stops/406116"], ["https://data.delijn.be/stops/200630", "https://data.delijn.be/stops/201630"], ["https://data.delijn.be/stops/305716", "https://data.delijn.be/stops/306059"], ["https://data.delijn.be/stops/102619", "https://data.delijn.be/stops/108209"], ["https://data.delijn.be/stops/200938", "https://data.delijn.be/stops/201405"], ["https://data.delijn.be/stops/504964", "https://data.delijn.be/stops/504965"], ["https://data.delijn.be/stops/506635", "https://data.delijn.be/stops/506738"], ["https://data.delijn.be/stops/407002", "https://data.delijn.be/stops/308079"], ["https://data.delijn.be/stops/203455", "https://data.delijn.be/stops/203459"], ["https://data.delijn.be/stops/200809", "https://data.delijn.be/stops/200899"], ["https://data.delijn.be/stops/401971", "https://data.delijn.be/stops/401976"], ["https://data.delijn.be/stops/307152", "https://data.delijn.be/stops/307153"], ["https://data.delijn.be/stops/504099", "https://data.delijn.be/stops/504832"], ["https://data.delijn.be/stops/305146", "https://data.delijn.be/stops/305152"], ["https://data.delijn.be/stops/208075", "https://data.delijn.be/stops/208124"], ["https://data.delijn.be/stops/302511", "https://data.delijn.be/stops/305839"], ["https://data.delijn.be/stops/101226", "https://data.delijn.be/stops/107808"], ["https://data.delijn.be/stops/504358", "https://data.delijn.be/stops/509358"], ["https://data.delijn.be/stops/308013", "https://data.delijn.be/stops/308014"], ["https://data.delijn.be/stops/201947", "https://data.delijn.be/stops/203454"], ["https://data.delijn.be/stops/508108", "https://data.delijn.be/stops/508529"], ["https://data.delijn.be/stops/402396", "https://data.delijn.be/stops/405134"], ["https://data.delijn.be/stops/207015", "https://data.delijn.be/stops/207166"], ["https://data.delijn.be/stops/208354", "https://data.delijn.be/stops/209353"], ["https://data.delijn.be/stops/402314", "https://data.delijn.be/stops/405692"], ["https://data.delijn.be/stops/202134", "https://data.delijn.be/stops/203133"], ["https://data.delijn.be/stops/402612", "https://data.delijn.be/stops/405561"], ["https://data.delijn.be/stops/505239", "https://data.delijn.be/stops/505934"], ["https://data.delijn.be/stops/407161", "https://data.delijn.be/stops/407185"], ["https://data.delijn.be/stops/504771", "https://data.delijn.be/stops/504875"], ["https://data.delijn.be/stops/208494", "https://data.delijn.be/stops/209494"], ["https://data.delijn.be/stops/202374", "https://data.delijn.be/stops/203374"], ["https://data.delijn.be/stops/306597", "https://data.delijn.be/stops/306604"], ["https://data.delijn.be/stops/303010", "https://data.delijn.be/stops/306100"], ["https://data.delijn.be/stops/206241", "https://data.delijn.be/stops/207241"], ["https://data.delijn.be/stops/209474", "https://data.delijn.be/stops/209475"], ["https://data.delijn.be/stops/109161", "https://data.delijn.be/stops/109162"], ["https://data.delijn.be/stops/101046", "https://data.delijn.be/stops/102009"], ["https://data.delijn.be/stops/208362", "https://data.delijn.be/stops/209362"], ["https://data.delijn.be/stops/303559", "https://data.delijn.be/stops/308688"], ["https://data.delijn.be/stops/504529", "https://data.delijn.be/stops/509529"], ["https://data.delijn.be/stops/307564", "https://data.delijn.be/stops/307652"], ["https://data.delijn.be/stops/301935", "https://data.delijn.be/stops/308719"], ["https://data.delijn.be/stops/308208", "https://data.delijn.be/stops/308209"], ["https://data.delijn.be/stops/404443", "https://data.delijn.be/stops/408371"], ["https://data.delijn.be/stops/104486", "https://data.delijn.be/stops/307899"], ["https://data.delijn.be/stops/206882", "https://data.delijn.be/stops/207030"], ["https://data.delijn.be/stops/503489", "https://data.delijn.be/stops/508489"], ["https://data.delijn.be/stops/304484", "https://data.delijn.be/stops/304485"], ["https://data.delijn.be/stops/106598", "https://data.delijn.be/stops/107210"], ["https://data.delijn.be/stops/108836", "https://data.delijn.be/stops/108837"], ["https://data.delijn.be/stops/302714", "https://data.delijn.be/stops/302731"], ["https://data.delijn.be/stops/501265", "https://data.delijn.be/stops/501293"], ["https://data.delijn.be/stops/401520", "https://data.delijn.be/stops/401723"], ["https://data.delijn.be/stops/503295", "https://data.delijn.be/stops/508672"], ["https://data.delijn.be/stops/300441", "https://data.delijn.be/stops/307093"], ["https://data.delijn.be/stops/105668", "https://data.delijn.be/stops/106058"], ["https://data.delijn.be/stops/206470", "https://data.delijn.be/stops/207470"], ["https://data.delijn.be/stops/101796", "https://data.delijn.be/stops/103492"], ["https://data.delijn.be/stops/104804", "https://data.delijn.be/stops/109113"], ["https://data.delijn.be/stops/201698", "https://data.delijn.be/stops/203445"], ["https://data.delijn.be/stops/401836", "https://data.delijn.be/stops/406017"], ["https://data.delijn.be/stops/401268", "https://data.delijn.be/stops/401382"], ["https://data.delijn.be/stops/505442", "https://data.delijn.be/stops/509141"], ["https://data.delijn.be/stops/301983", "https://data.delijn.be/stops/304152"], ["https://data.delijn.be/stops/103576", "https://data.delijn.be/stops/106613"], ["https://data.delijn.be/stops/105772", "https://data.delijn.be/stops/105782"], ["https://data.delijn.be/stops/400830", "https://data.delijn.be/stops/402245"], ["https://data.delijn.be/stops/204516", "https://data.delijn.be/stops/205516"], ["https://data.delijn.be/stops/400573", "https://data.delijn.be/stops/403226"], ["https://data.delijn.be/stops/406365", "https://data.delijn.be/stops/406410"], ["https://data.delijn.be/stops/208231", "https://data.delijn.be/stops/209231"], ["https://data.delijn.be/stops/106960", "https://data.delijn.be/stops/109512"], ["https://data.delijn.be/stops/204767", "https://data.delijn.be/stops/205768"], ["https://data.delijn.be/stops/506311", "https://data.delijn.be/stops/506337"], ["https://data.delijn.be/stops/305284", "https://data.delijn.be/stops/305288"], ["https://data.delijn.be/stops/104937", "https://data.delijn.be/stops/108353"], ["https://data.delijn.be/stops/301104", "https://data.delijn.be/stops/302016"], ["https://data.delijn.be/stops/109552", "https://data.delijn.be/stops/300050"], ["https://data.delijn.be/stops/202797", "https://data.delijn.be/stops/502759"], ["https://data.delijn.be/stops/307619", "https://data.delijn.be/stops/308759"], ["https://data.delijn.be/stops/204068", "https://data.delijn.be/stops/205190"], ["https://data.delijn.be/stops/500010", "https://data.delijn.be/stops/502330"], ["https://data.delijn.be/stops/200337", "https://data.delijn.be/stops/202204"], ["https://data.delijn.be/stops/304848", "https://data.delijn.be/stops/308524"], ["https://data.delijn.be/stops/206935", "https://data.delijn.be/stops/207238"], ["https://data.delijn.be/stops/201819", "https://data.delijn.be/stops/218026"], ["https://data.delijn.be/stops/203819", "https://data.delijn.be/stops/203912"], ["https://data.delijn.be/stops/503288", "https://data.delijn.be/stops/508282"], ["https://data.delijn.be/stops/306304", "https://data.delijn.be/stops/307926"], ["https://data.delijn.be/stops/200410", "https://data.delijn.be/stops/201412"], ["https://data.delijn.be/stops/508036", "https://data.delijn.be/stops/508185"], ["https://data.delijn.be/stops/507461", "https://data.delijn.be/stops/507662"], ["https://data.delijn.be/stops/501118", "https://data.delijn.be/stops/501124"], ["https://data.delijn.be/stops/203247", "https://data.delijn.be/stops/203248"], ["https://data.delijn.be/stops/202540", "https://data.delijn.be/stops/203540"], ["https://data.delijn.be/stops/109209", "https://data.delijn.be/stops/109210"], ["https://data.delijn.be/stops/104411", "https://data.delijn.be/stops/204335"], ["https://data.delijn.be/stops/404131", "https://data.delijn.be/stops/408555"], ["https://data.delijn.be/stops/303152", "https://data.delijn.be/stops/303193"], ["https://data.delijn.be/stops/508259", "https://data.delijn.be/stops/508744"], ["https://data.delijn.be/stops/401515", "https://data.delijn.be/stops/401743"], ["https://data.delijn.be/stops/303030", "https://data.delijn.be/stops/307727"], ["https://data.delijn.be/stops/406013", "https://data.delijn.be/stops/406118"], ["https://data.delijn.be/stops/303123", "https://data.delijn.be/stops/307201"], ["https://data.delijn.be/stops/202617", "https://data.delijn.be/stops/203617"], ["https://data.delijn.be/stops/401808", "https://data.delijn.be/stops/401809"], ["https://data.delijn.be/stops/408538", "https://data.delijn.be/stops/408688"], ["https://data.delijn.be/stops/206514", "https://data.delijn.be/stops/206659"], ["https://data.delijn.be/stops/400817", "https://data.delijn.be/stops/400876"], ["https://data.delijn.be/stops/504663", "https://data.delijn.be/stops/509496"], ["https://data.delijn.be/stops/107928", "https://data.delijn.be/stops/301152"], ["https://data.delijn.be/stops/502105", "https://data.delijn.be/stops/507680"], ["https://data.delijn.be/stops/102260", "https://data.delijn.be/stops/102290"], ["https://data.delijn.be/stops/203975", "https://data.delijn.be/stops/207398"], ["https://data.delijn.be/stops/302493", "https://data.delijn.be/stops/302496"], ["https://data.delijn.be/stops/307002", "https://data.delijn.be/stops/308823"], ["https://data.delijn.be/stops/400226", "https://data.delijn.be/stops/400231"], ["https://data.delijn.be/stops/401281", "https://data.delijn.be/stops/406686"], ["https://data.delijn.be/stops/207385", "https://data.delijn.be/stops/207807"], ["https://data.delijn.be/stops/402140", "https://data.delijn.be/stops/402397"], ["https://data.delijn.be/stops/206467", "https://data.delijn.be/stops/207825"], ["https://data.delijn.be/stops/206062", "https://data.delijn.be/stops/206063"], ["https://data.delijn.be/stops/103415", "https://data.delijn.be/stops/106025"], ["https://data.delijn.be/stops/301887", "https://data.delijn.be/stops/305912"], ["https://data.delijn.be/stops/108273", "https://data.delijn.be/stops/109359"], ["https://data.delijn.be/stops/502038", "https://data.delijn.be/stops/507281"], ["https://data.delijn.be/stops/300285", "https://data.delijn.be/stops/300289"], ["https://data.delijn.be/stops/105417", "https://data.delijn.be/stops/105848"], ["https://data.delijn.be/stops/404330", "https://data.delijn.be/stops/404380"], ["https://data.delijn.be/stops/504576", "https://data.delijn.be/stops/505205"], ["https://data.delijn.be/stops/507067", "https://data.delijn.be/stops/507445"], ["https://data.delijn.be/stops/302032", "https://data.delijn.be/stops/306379"], ["https://data.delijn.be/stops/302757", "https://data.delijn.be/stops/302758"], ["https://data.delijn.be/stops/301540", "https://data.delijn.be/stops/301551"], ["https://data.delijn.be/stops/502283", "https://data.delijn.be/stops/502334"], ["https://data.delijn.be/stops/200579", "https://data.delijn.be/stops/201732"], ["https://data.delijn.be/stops/200352", "https://data.delijn.be/stops/201388"], ["https://data.delijn.be/stops/504332", "https://data.delijn.be/stops/509076"], ["https://data.delijn.be/stops/104101", "https://data.delijn.be/stops/108290"], ["https://data.delijn.be/stops/200934", "https://data.delijn.be/stops/201695"], ["https://data.delijn.be/stops/106228", "https://data.delijn.be/stops/106328"], ["https://data.delijn.be/stops/300267", "https://data.delijn.be/stops/303868"], ["https://data.delijn.be/stops/206108", "https://data.delijn.be/stops/206931"], ["https://data.delijn.be/stops/206032", "https://data.delijn.be/stops/207032"], ["https://data.delijn.be/stops/302369", "https://data.delijn.be/stops/306195"], ["https://data.delijn.be/stops/306141", "https://data.delijn.be/stops/306643"], ["https://data.delijn.be/stops/400859", "https://data.delijn.be/stops/400875"], ["https://data.delijn.be/stops/504865", "https://data.delijn.be/stops/504996"], ["https://data.delijn.be/stops/106530", "https://data.delijn.be/stops/106531"], ["https://data.delijn.be/stops/102172", "https://data.delijn.be/stops/104052"], ["https://data.delijn.be/stops/204590", "https://data.delijn.be/stops/205594"], ["https://data.delijn.be/stops/201091", "https://data.delijn.be/stops/201092"], ["https://data.delijn.be/stops/302110", "https://data.delijn.be/stops/302112"], ["https://data.delijn.be/stops/202776", "https://data.delijn.be/stops/203460"], ["https://data.delijn.be/stops/103639", "https://data.delijn.be/stops/106634"], ["https://data.delijn.be/stops/504157", "https://data.delijn.be/stops/504190"], ["https://data.delijn.be/stops/509477", "https://data.delijn.be/stops/509479"], ["https://data.delijn.be/stops/505643", "https://data.delijn.be/stops/508897"], ["https://data.delijn.be/stops/201121", "https://data.delijn.be/stops/203482"], ["https://data.delijn.be/stops/304985", "https://data.delijn.be/stops/305018"], ["https://data.delijn.be/stops/508699", "https://data.delijn.be/stops/509955"], ["https://data.delijn.be/stops/305105", "https://data.delijn.be/stops/305106"], ["https://data.delijn.be/stops/503029", "https://data.delijn.be/stops/503030"], ["https://data.delijn.be/stops/200179", "https://data.delijn.be/stops/204951"], ["https://data.delijn.be/stops/307314", "https://data.delijn.be/stops/307317"], ["https://data.delijn.be/stops/208110", "https://data.delijn.be/stops/209314"], ["https://data.delijn.be/stops/204758", "https://data.delijn.be/stops/205758"], ["https://data.delijn.be/stops/304480", "https://data.delijn.be/stops/307674"], ["https://data.delijn.be/stops/107591", "https://data.delijn.be/stops/107697"], ["https://data.delijn.be/stops/405736", "https://data.delijn.be/stops/410140"], ["https://data.delijn.be/stops/407922", "https://data.delijn.be/stops/303262"], ["https://data.delijn.be/stops/502082", "https://data.delijn.be/stops/507681"], ["https://data.delijn.be/stops/208625", "https://data.delijn.be/stops/209655"], ["https://data.delijn.be/stops/102583", "https://data.delijn.be/stops/104972"], ["https://data.delijn.be/stops/500955", "https://data.delijn.be/stops/503288"], ["https://data.delijn.be/stops/304019", "https://data.delijn.be/stops/307050"], ["https://data.delijn.be/stops/407799", "https://data.delijn.be/stops/407857"], ["https://data.delijn.be/stops/407259", "https://data.delijn.be/stops/407293"], ["https://data.delijn.be/stops/208059", "https://data.delijn.be/stops/209060"], ["https://data.delijn.be/stops/303481", "https://data.delijn.be/stops/303482"], ["https://data.delijn.be/stops/502732", "https://data.delijn.be/stops/507135"], ["https://data.delijn.be/stops/301747", "https://data.delijn.be/stops/308425"], ["https://data.delijn.be/stops/501298", "https://data.delijn.be/stops/506345"], ["https://data.delijn.be/stops/205081", "https://data.delijn.be/stops/205082"], ["https://data.delijn.be/stops/202641", "https://data.delijn.be/stops/203577"], ["https://data.delijn.be/stops/505682", "https://data.delijn.be/stops/507315"], ["https://data.delijn.be/stops/503831", "https://data.delijn.be/stops/508067"], ["https://data.delijn.be/stops/302374", "https://data.delijn.be/stops/302381"], ["https://data.delijn.be/stops/200949", "https://data.delijn.be/stops/203539"], ["https://data.delijn.be/stops/503108", "https://data.delijn.be/stops/503145"], ["https://data.delijn.be/stops/300491", "https://data.delijn.be/stops/300493"], ["https://data.delijn.be/stops/501303", "https://data.delijn.be/stops/501391"], ["https://data.delijn.be/stops/209457", "https://data.delijn.be/stops/209676"], ["https://data.delijn.be/stops/506049", "https://data.delijn.be/stops/507135"], ["https://data.delijn.be/stops/401812", "https://data.delijn.be/stops/406239"], ["https://data.delijn.be/stops/208098", "https://data.delijn.be/stops/208099"], ["https://data.delijn.be/stops/205157", "https://data.delijn.be/stops/211067"], ["https://data.delijn.be/stops/302291", "https://data.delijn.be/stops/306791"], ["https://data.delijn.be/stops/501769", "https://data.delijn.be/stops/502704"], ["https://data.delijn.be/stops/400068", "https://data.delijn.be/stops/400069"], ["https://data.delijn.be/stops/303677", "https://data.delijn.be/stops/303977"], ["https://data.delijn.be/stops/505562", "https://data.delijn.be/stops/505578"], ["https://data.delijn.be/stops/403658", "https://data.delijn.be/stops/403659"], ["https://data.delijn.be/stops/408004", "https://data.delijn.be/stops/408090"], ["https://data.delijn.be/stops/504331", "https://data.delijn.be/stops/504341"], ["https://data.delijn.be/stops/107341", "https://data.delijn.be/stops/107342"], ["https://data.delijn.be/stops/503081", "https://data.delijn.be/stops/507820"], ["https://data.delijn.be/stops/501059", "https://data.delijn.be/stops/506061"], ["https://data.delijn.be/stops/203791", "https://data.delijn.be/stops/203792"], ["https://data.delijn.be/stops/304014", "https://data.delijn.be/stops/304015"], ["https://data.delijn.be/stops/303818", "https://data.delijn.be/stops/303822"], ["https://data.delijn.be/stops/404590", "https://data.delijn.be/stops/404993"], ["https://data.delijn.be/stops/105248", "https://data.delijn.be/stops/105249"], ["https://data.delijn.be/stops/306679", "https://data.delijn.be/stops/307880"], ["https://data.delijn.be/stops/201682", "https://data.delijn.be/stops/203502"], ["https://data.delijn.be/stops/107849", "https://data.delijn.be/stops/107851"], ["https://data.delijn.be/stops/103729", "https://data.delijn.be/stops/108613"], ["https://data.delijn.be/stops/502662", "https://data.delijn.be/stops/502736"], ["https://data.delijn.be/stops/307303", "https://data.delijn.be/stops/307317"], ["https://data.delijn.be/stops/401127", "https://data.delijn.be/stops/401128"], ["https://data.delijn.be/stops/108088", "https://data.delijn.be/stops/108387"], ["https://data.delijn.be/stops/107492", "https://data.delijn.be/stops/107511"], ["https://data.delijn.be/stops/305584", "https://data.delijn.be/stops/305587"], ["https://data.delijn.be/stops/301309", "https://data.delijn.be/stops/304858"], ["https://data.delijn.be/stops/102997", "https://data.delijn.be/stops/109449"], ["https://data.delijn.be/stops/500945", "https://data.delijn.be/stops/505785"], ["https://data.delijn.be/stops/501688", "https://data.delijn.be/stops/505046"], ["https://data.delijn.be/stops/506211", "https://data.delijn.be/stops/506222"], ["https://data.delijn.be/stops/102887", "https://data.delijn.be/stops/102888"], ["https://data.delijn.be/stops/502685", "https://data.delijn.be/stops/505668"], ["https://data.delijn.be/stops/200918", "https://data.delijn.be/stops/200951"], ["https://data.delijn.be/stops/207795", "https://data.delijn.be/stops/207796"], ["https://data.delijn.be/stops/407163", "https://data.delijn.be/stops/409877"], ["https://data.delijn.be/stops/204337", "https://data.delijn.be/stops/205335"], ["https://data.delijn.be/stops/304220", "https://data.delijn.be/stops/304221"], ["https://data.delijn.be/stops/206416", "https://data.delijn.be/stops/206977"], ["https://data.delijn.be/stops/305682", "https://data.delijn.be/stops/305731"], ["https://data.delijn.be/stops/503109", "https://data.delijn.be/stops/508437"], ["https://data.delijn.be/stops/402378", "https://data.delijn.be/stops/404704"], ["https://data.delijn.be/stops/301704", "https://data.delijn.be/stops/305235"], ["https://data.delijn.be/stops/208116", "https://data.delijn.be/stops/209116"], ["https://data.delijn.be/stops/208429", "https://data.delijn.be/stops/208801"], ["https://data.delijn.be/stops/407641", "https://data.delijn.be/stops/407642"], ["https://data.delijn.be/stops/203099", "https://data.delijn.be/stops/203258"], ["https://data.delijn.be/stops/404425", "https://data.delijn.be/stops/404570"], ["https://data.delijn.be/stops/307061", "https://data.delijn.be/stops/307281"], ["https://data.delijn.be/stops/402382", "https://data.delijn.be/stops/402383"], ["https://data.delijn.be/stops/302427", "https://data.delijn.be/stops/302450"], ["https://data.delijn.be/stops/305308", "https://data.delijn.be/stops/306382"], ["https://data.delijn.be/stops/206806", "https://data.delijn.be/stops/207312"], ["https://data.delijn.be/stops/407574", "https://data.delijn.be/stops/408946"], ["https://data.delijn.be/stops/307086", "https://data.delijn.be/stops/308048"], ["https://data.delijn.be/stops/205580", "https://data.delijn.be/stops/205592"], ["https://data.delijn.be/stops/303073", "https://data.delijn.be/stops/303104"], ["https://data.delijn.be/stops/403467", "https://data.delijn.be/stops/410338"], ["https://data.delijn.be/stops/408283", "https://data.delijn.be/stops/408285"], ["https://data.delijn.be/stops/107918", "https://data.delijn.be/stops/107919"], ["https://data.delijn.be/stops/503610", "https://data.delijn.be/stops/504751"], ["https://data.delijn.be/stops/302587", "https://data.delijn.be/stops/308926"], ["https://data.delijn.be/stops/204798", "https://data.delijn.be/stops/205765"], ["https://data.delijn.be/stops/203531", "https://data.delijn.be/stops/203965"], ["https://data.delijn.be/stops/102207", "https://data.delijn.be/stops/102211"], ["https://data.delijn.be/stops/109400", "https://data.delijn.be/stops/109427"], ["https://data.delijn.be/stops/206475", "https://data.delijn.be/stops/207476"], ["https://data.delijn.be/stops/304218", "https://data.delijn.be/stops/304220"], ["https://data.delijn.be/stops/404843", "https://data.delijn.be/stops/407758"], ["https://data.delijn.be/stops/404292", "https://data.delijn.be/stops/404293"], ["https://data.delijn.be/stops/300429", "https://data.delijn.be/stops/307409"], ["https://data.delijn.be/stops/304128", "https://data.delijn.be/stops/304146"], ["https://data.delijn.be/stops/406489", "https://data.delijn.be/stops/406495"], ["https://data.delijn.be/stops/200765", "https://data.delijn.be/stops/209300"], ["https://data.delijn.be/stops/200233", "https://data.delijn.be/stops/203354"], ["https://data.delijn.be/stops/101298", "https://data.delijn.be/stops/105506"], ["https://data.delijn.be/stops/300824", "https://data.delijn.be/stops/301055"], ["https://data.delijn.be/stops/206655", "https://data.delijn.be/stops/206666"], ["https://data.delijn.be/stops/300449", "https://data.delijn.be/stops/300452"], ["https://data.delijn.be/stops/108564", "https://data.delijn.be/stops/108566"], ["https://data.delijn.be/stops/400255", "https://data.delijn.be/stops/400258"], ["https://data.delijn.be/stops/503007", "https://data.delijn.be/stops/507813"], ["https://data.delijn.be/stops/108223", "https://data.delijn.be/stops/108224"], ["https://data.delijn.be/stops/106335", "https://data.delijn.be/stops/106699"], ["https://data.delijn.be/stops/308743", "https://data.delijn.be/stops/308744"], ["https://data.delijn.be/stops/404726", "https://data.delijn.be/stops/404748"], ["https://data.delijn.be/stops/206694", "https://data.delijn.be/stops/207694"], ["https://data.delijn.be/stops/409114", "https://data.delijn.be/stops/409115"], ["https://data.delijn.be/stops/305136", "https://data.delijn.be/stops/305137"], ["https://data.delijn.be/stops/500957", "https://data.delijn.be/stops/505952"], ["https://data.delijn.be/stops/210127", "https://data.delijn.be/stops/211126"], ["https://data.delijn.be/stops/504581", "https://data.delijn.be/stops/509581"], ["https://data.delijn.be/stops/101012", "https://data.delijn.be/stops/101013"], ["https://data.delijn.be/stops/400236", "https://data.delijn.be/stops/406283"], ["https://data.delijn.be/stops/202492", "https://data.delijn.be/stops/211043"], ["https://data.delijn.be/stops/101508", "https://data.delijn.be/stops/300103"], ["https://data.delijn.be/stops/305452", "https://data.delijn.be/stops/307778"], ["https://data.delijn.be/stops/304896", "https://data.delijn.be/stops/306408"], ["https://data.delijn.be/stops/204476", "https://data.delijn.be/stops/205120"], ["https://data.delijn.be/stops/307199", "https://data.delijn.be/stops/307599"], ["https://data.delijn.be/stops/301218", "https://data.delijn.be/stops/301220"], ["https://data.delijn.be/stops/202492", "https://data.delijn.be/stops/203492"], ["https://data.delijn.be/stops/402106", "https://data.delijn.be/stops/402217"], ["https://data.delijn.be/stops/109626", "https://data.delijn.be/stops/109628"], ["https://data.delijn.be/stops/206204", "https://data.delijn.be/stops/207203"], ["https://data.delijn.be/stops/107613", "https://data.delijn.be/stops/108959"], ["https://data.delijn.be/stops/301012", "https://data.delijn.be/stops/301015"], ["https://data.delijn.be/stops/106897", "https://data.delijn.be/stops/107217"], ["https://data.delijn.be/stops/108607", "https://data.delijn.be/stops/109330"], ["https://data.delijn.be/stops/204637", "https://data.delijn.be/stops/205694"], ["https://data.delijn.be/stops/307550", "https://data.delijn.be/stops/307552"], ["https://data.delijn.be/stops/409436", "https://data.delijn.be/stops/409437"], ["https://data.delijn.be/stops/502534", "https://data.delijn.be/stops/507533"], ["https://data.delijn.be/stops/404979", "https://data.delijn.be/stops/410210"], ["https://data.delijn.be/stops/505067", "https://data.delijn.be/stops/505654"], ["https://data.delijn.be/stops/307149", "https://data.delijn.be/stops/307160"], ["https://data.delijn.be/stops/300659", "https://data.delijn.be/stops/305816"], ["https://data.delijn.be/stops/204521", "https://data.delijn.be/stops/205483"], ["https://data.delijn.be/stops/106096", "https://data.delijn.be/stops/106112"], ["https://data.delijn.be/stops/102889", "https://data.delijn.be/stops/102892"], ["https://data.delijn.be/stops/204488", "https://data.delijn.be/stops/205265"], ["https://data.delijn.be/stops/303314", "https://data.delijn.be/stops/303320"], ["https://data.delijn.be/stops/305628", "https://data.delijn.be/stops/305768"], ["https://data.delijn.be/stops/102710", "https://data.delijn.be/stops/102763"], ["https://data.delijn.be/stops/306682", "https://data.delijn.be/stops/307880"], ["https://data.delijn.be/stops/501126", "https://data.delijn.be/stops/505038"], ["https://data.delijn.be/stops/304664", "https://data.delijn.be/stops/304665"], ["https://data.delijn.be/stops/400574", "https://data.delijn.be/stops/400575"], ["https://data.delijn.be/stops/307051", "https://data.delijn.be/stops/307053"], ["https://data.delijn.be/stops/409378", "https://data.delijn.be/stops/409388"], ["https://data.delijn.be/stops/405479", "https://data.delijn.be/stops/409266"], ["https://data.delijn.be/stops/302929", "https://data.delijn.be/stops/304014"], ["https://data.delijn.be/stops/502013", "https://data.delijn.be/stops/507154"], ["https://data.delijn.be/stops/208128", "https://data.delijn.be/stops/209128"], ["https://data.delijn.be/stops/408549", "https://data.delijn.be/stops/408565"], ["https://data.delijn.be/stops/102238", "https://data.delijn.be/stops/105869"], ["https://data.delijn.be/stops/405232", "https://data.delijn.be/stops/405500"], ["https://data.delijn.be/stops/305581", "https://data.delijn.be/stops/306555"], ["https://data.delijn.be/stops/406137", "https://data.delijn.be/stops/406343"], ["https://data.delijn.be/stops/302198", "https://data.delijn.be/stops/305457"], ["https://data.delijn.be/stops/401730", "https://data.delijn.be/stops/401752"], ["https://data.delijn.be/stops/302000", "https://data.delijn.be/stops/306067"], ["https://data.delijn.be/stops/408888", "https://data.delijn.be/stops/408893"], ["https://data.delijn.be/stops/405792", "https://data.delijn.be/stops/409665"], ["https://data.delijn.be/stops/200391", "https://data.delijn.be/stops/209706"], ["https://data.delijn.be/stops/505558", "https://data.delijn.be/stops/507178"], ["https://data.delijn.be/stops/301549", "https://data.delijn.be/stops/308090"], ["https://data.delijn.be/stops/504998", "https://data.delijn.be/stops/508883"], ["https://data.delijn.be/stops/402298", "https://data.delijn.be/stops/402363"], ["https://data.delijn.be/stops/502561", "https://data.delijn.be/stops/507224"], ["https://data.delijn.be/stops/206685", "https://data.delijn.be/stops/206874"], ["https://data.delijn.be/stops/403957", "https://data.delijn.be/stops/410026"], ["https://data.delijn.be/stops/208450", "https://data.delijn.be/stops/209878"], ["https://data.delijn.be/stops/403024", "https://data.delijn.be/stops/403410"], ["https://data.delijn.be/stops/204425", "https://data.delijn.be/stops/204437"], ["https://data.delijn.be/stops/104626", "https://data.delijn.be/stops/104627"], ["https://data.delijn.be/stops/208143", "https://data.delijn.be/stops/218030"], ["https://data.delijn.be/stops/101688", "https://data.delijn.be/stops/109391"], ["https://data.delijn.be/stops/107792", "https://data.delijn.be/stops/107794"], ["https://data.delijn.be/stops/500944", "https://data.delijn.be/stops/505711"], ["https://data.delijn.be/stops/201691", "https://data.delijn.be/stops/202139"], ["https://data.delijn.be/stops/106460", "https://data.delijn.be/stops/106463"], ["https://data.delijn.be/stops/300041", "https://data.delijn.be/stops/306791"], ["https://data.delijn.be/stops/303842", "https://data.delijn.be/stops/303867"], ["https://data.delijn.be/stops/202555", "https://data.delijn.be/stops/210024"], ["https://data.delijn.be/stops/302728", "https://data.delijn.be/stops/308595"], ["https://data.delijn.be/stops/302326", "https://data.delijn.be/stops/302481"], ["https://data.delijn.be/stops/503108", "https://data.delijn.be/stops/509886"], ["https://data.delijn.be/stops/301882", "https://data.delijn.be/stops/302065"], ["https://data.delijn.be/stops/201857", "https://data.delijn.be/stops/203666"], ["https://data.delijn.be/stops/206182", "https://data.delijn.be/stops/207182"], ["https://data.delijn.be/stops/106691", "https://data.delijn.be/stops/106694"], ["https://data.delijn.be/stops/208337", "https://data.delijn.be/stops/209338"], ["https://data.delijn.be/stops/104994", "https://data.delijn.be/stops/400391"], ["https://data.delijn.be/stops/206152", "https://data.delijn.be/stops/207153"], ["https://data.delijn.be/stops/505833", "https://data.delijn.be/stops/507561"], ["https://data.delijn.be/stops/406562", "https://data.delijn.be/stops/406567"], ["https://data.delijn.be/stops/303322", "https://data.delijn.be/stops/303323"], ["https://data.delijn.be/stops/103227", "https://data.delijn.be/stops/108912"], ["https://data.delijn.be/stops/305192", "https://data.delijn.be/stops/305202"], ["https://data.delijn.be/stops/405041", "https://data.delijn.be/stops/405863"], ["https://data.delijn.be/stops/301697", "https://data.delijn.be/stops/301746"], ["https://data.delijn.be/stops/206780", "https://data.delijn.be/stops/206941"], ["https://data.delijn.be/stops/304157", "https://data.delijn.be/stops/307579"], ["https://data.delijn.be/stops/104607", "https://data.delijn.be/stops/108076"], ["https://data.delijn.be/stops/300978", "https://data.delijn.be/stops/300979"], ["https://data.delijn.be/stops/300290", "https://data.delijn.be/stops/301281"], ["https://data.delijn.be/stops/109347", "https://data.delijn.be/stops/109348"], ["https://data.delijn.be/stops/304894", "https://data.delijn.be/stops/304910"], ["https://data.delijn.be/stops/207546", "https://data.delijn.be/stops/209744"], ["https://data.delijn.be/stops/303085", "https://data.delijn.be/stops/304710"], ["https://data.delijn.be/stops/508450", "https://data.delijn.be/stops/508975"], ["https://data.delijn.be/stops/204437", "https://data.delijn.be/stops/204743"], ["https://data.delijn.be/stops/302384", "https://data.delijn.be/stops/307841"], ["https://data.delijn.be/stops/200577", "https://data.delijn.be/stops/202757"], ["https://data.delijn.be/stops/504046", "https://data.delijn.be/stops/504837"], ["https://data.delijn.be/stops/303644", "https://data.delijn.be/stops/305496"], ["https://data.delijn.be/stops/205187", "https://data.delijn.be/stops/205188"], ["https://data.delijn.be/stops/102605", "https://data.delijn.be/stops/102680"], ["https://data.delijn.be/stops/301848", "https://data.delijn.be/stops/305871"], ["https://data.delijn.be/stops/302120", "https://data.delijn.be/stops/304034"], ["https://data.delijn.be/stops/301031", "https://data.delijn.be/stops/301032"], ["https://data.delijn.be/stops/302874", "https://data.delijn.be/stops/302927"], ["https://data.delijn.be/stops/301729", "https://data.delijn.be/stops/301730"], ["https://data.delijn.be/stops/108626", "https://data.delijn.be/stops/108627"], ["https://data.delijn.be/stops/102471", "https://data.delijn.be/stops/102472"], ["https://data.delijn.be/stops/400794", "https://data.delijn.be/stops/406660"], ["https://data.delijn.be/stops/400126", "https://data.delijn.be/stops/400127"], ["https://data.delijn.be/stops/206026", "https://data.delijn.be/stops/206267"], ["https://data.delijn.be/stops/201461", "https://data.delijn.be/stops/201465"], ["https://data.delijn.be/stops/200841", "https://data.delijn.be/stops/202792"], ["https://data.delijn.be/stops/503101", "https://data.delijn.be/stops/508097"], ["https://data.delijn.be/stops/302588", "https://data.delijn.be/stops/308298"], ["https://data.delijn.be/stops/301600", "https://data.delijn.be/stops/301608"], ["https://data.delijn.be/stops/210130", "https://data.delijn.be/stops/211130"], ["https://data.delijn.be/stops/201470", "https://data.delijn.be/stops/201893"], ["https://data.delijn.be/stops/501371", "https://data.delijn.be/stops/506371"], ["https://data.delijn.be/stops/503470", "https://data.delijn.be/stops/503471"], ["https://data.delijn.be/stops/407581", "https://data.delijn.be/stops/408880"], ["https://data.delijn.be/stops/200706", "https://data.delijn.be/stops/200733"], ["https://data.delijn.be/stops/303933", "https://data.delijn.be/stops/304573"], ["https://data.delijn.be/stops/302379", "https://data.delijn.be/stops/302391"], ["https://data.delijn.be/stops/306598", "https://data.delijn.be/stops/306599"], ["https://data.delijn.be/stops/105747", "https://data.delijn.be/stops/105748"], ["https://data.delijn.be/stops/504623", "https://data.delijn.be/stops/509628"], ["https://data.delijn.be/stops/509391", "https://data.delijn.be/stops/509715"], ["https://data.delijn.be/stops/201378", "https://data.delijn.be/stops/201537"], ["https://data.delijn.be/stops/102289", "https://data.delijn.be/stops/109630"], ["https://data.delijn.be/stops/401254", "https://data.delijn.be/stops/401338"], ["https://data.delijn.be/stops/207283", "https://data.delijn.be/stops/207397"], ["https://data.delijn.be/stops/400112", "https://data.delijn.be/stops/409072"], ["https://data.delijn.be/stops/404728", "https://data.delijn.be/stops/404743"], ["https://data.delijn.be/stops/200251", "https://data.delijn.be/stops/200960"], ["https://data.delijn.be/stops/404302", "https://data.delijn.be/stops/404303"], ["https://data.delijn.be/stops/502073", "https://data.delijn.be/stops/502560"], ["https://data.delijn.be/stops/503725", "https://data.delijn.be/stops/503774"], ["https://data.delijn.be/stops/406629", "https://data.delijn.be/stops/406631"], ["https://data.delijn.be/stops/108303", "https://data.delijn.be/stops/108304"], ["https://data.delijn.be/stops/202407", "https://data.delijn.be/stops/203407"], ["https://data.delijn.be/stops/101025", "https://data.delijn.be/stops/101030"], ["https://data.delijn.be/stops/105252", "https://data.delijn.be/stops/105253"], ["https://data.delijn.be/stops/303068", "https://data.delijn.be/stops/308661"], ["https://data.delijn.be/stops/109677", "https://data.delijn.be/stops/408450"], ["https://data.delijn.be/stops/501094", "https://data.delijn.be/stops/506094"], ["https://data.delijn.be/stops/104742", "https://data.delijn.be/stops/108163"], ["https://data.delijn.be/stops/300056", "https://data.delijn.be/stops/306790"], ["https://data.delijn.be/stops/201138", "https://data.delijn.be/stops/203450"], ["https://data.delijn.be/stops/407932", "https://data.delijn.be/stops/407934"], ["https://data.delijn.be/stops/503265", "https://data.delijn.be/stops/508075"], ["https://data.delijn.be/stops/403315", "https://data.delijn.be/stops/409571"], ["https://data.delijn.be/stops/405290", "https://data.delijn.be/stops/406310"], ["https://data.delijn.be/stops/505163", "https://data.delijn.be/stops/509418"], ["https://data.delijn.be/stops/108666", "https://data.delijn.be/stops/306610"], ["https://data.delijn.be/stops/206978", "https://data.delijn.be/stops/207978"], ["https://data.delijn.be/stops/404534", "https://data.delijn.be/stops/404546"], ["https://data.delijn.be/stops/306145", "https://data.delijn.be/stops/307942"], ["https://data.delijn.be/stops/406240", "https://data.delijn.be/stops/406246"], ["https://data.delijn.be/stops/104917", "https://data.delijn.be/stops/104921"], ["https://data.delijn.be/stops/301010", "https://data.delijn.be/stops/301018"], ["https://data.delijn.be/stops/401290", "https://data.delijn.be/stops/401308"], ["https://data.delijn.be/stops/201404", "https://data.delijn.be/stops/201405"], ["https://data.delijn.be/stops/400929", "https://data.delijn.be/stops/400944"], ["https://data.delijn.be/stops/401462", "https://data.delijn.be/stops/403895"], ["https://data.delijn.be/stops/405218", "https://data.delijn.be/stops/405219"], ["https://data.delijn.be/stops/200874", "https://data.delijn.be/stops/201115"], ["https://data.delijn.be/stops/301348", "https://data.delijn.be/stops/306130"], ["https://data.delijn.be/stops/105735", "https://data.delijn.be/stops/105740"], ["https://data.delijn.be/stops/307426", "https://data.delijn.be/stops/307733"], ["https://data.delijn.be/stops/201749", "https://data.delijn.be/stops/203620"], ["https://data.delijn.be/stops/408042", "https://data.delijn.be/stops/408043"], ["https://data.delijn.be/stops/400253", "https://data.delijn.be/stops/400357"], ["https://data.delijn.be/stops/302158", "https://data.delijn.be/stops/302160"], ["https://data.delijn.be/stops/404091", "https://data.delijn.be/stops/407230"], ["https://data.delijn.be/stops/401200", "https://data.delijn.be/stops/401201"], ["https://data.delijn.be/stops/507606", "https://data.delijn.be/stops/507607"], ["https://data.delijn.be/stops/504323", "https://data.delijn.be/stops/509295"], ["https://data.delijn.be/stops/302494", "https://data.delijn.be/stops/302500"], ["https://data.delijn.be/stops/206517", "https://data.delijn.be/stops/206598"], ["https://data.delijn.be/stops/200768", "https://data.delijn.be/stops/209249"], ["https://data.delijn.be/stops/101382", "https://data.delijn.be/stops/106994"], ["https://data.delijn.be/stops/502357", "https://data.delijn.be/stops/507357"], ["https://data.delijn.be/stops/202352", "https://data.delijn.be/stops/203352"], ["https://data.delijn.be/stops/103944", "https://data.delijn.be/stops/108893"], ["https://data.delijn.be/stops/504753", "https://data.delijn.be/stops/504754"], ["https://data.delijn.be/stops/401562", "https://data.delijn.be/stops/401563"], ["https://data.delijn.be/stops/503237", "https://data.delijn.be/stops/508062"], ["https://data.delijn.be/stops/200705", "https://data.delijn.be/stops/200736"], ["https://data.delijn.be/stops/506238", "https://data.delijn.be/stops/506240"], ["https://data.delijn.be/stops/101689", "https://data.delijn.be/stops/101691"], ["https://data.delijn.be/stops/301193", "https://data.delijn.be/stops/301253"], ["https://data.delijn.be/stops/408617", "https://data.delijn.be/stops/408707"], ["https://data.delijn.be/stops/300751", "https://data.delijn.be/stops/302406"], ["https://data.delijn.be/stops/408519", "https://data.delijn.be/stops/408773"], ["https://data.delijn.be/stops/103287", "https://data.delijn.be/stops/109991"], ["https://data.delijn.be/stops/505140", "https://data.delijn.be/stops/505579"], ["https://data.delijn.be/stops/503018", "https://data.delijn.be/stops/508018"], ["https://data.delijn.be/stops/203529", "https://data.delijn.be/stops/206826"], ["https://data.delijn.be/stops/504051", "https://data.delijn.be/stops/509051"], ["https://data.delijn.be/stops/202598", "https://data.delijn.be/stops/203127"], ["https://data.delijn.be/stops/202730", "https://data.delijn.be/stops/203042"], ["https://data.delijn.be/stops/103007", "https://data.delijn.be/stops/106424"], ["https://data.delijn.be/stops/102153", "https://data.delijn.be/stops/109725"], ["https://data.delijn.be/stops/504222", "https://data.delijn.be/stops/509633"], ["https://data.delijn.be/stops/206983", "https://data.delijn.be/stops/304269"], ["https://data.delijn.be/stops/409375", "https://data.delijn.be/stops/409399"], ["https://data.delijn.be/stops/403527", "https://data.delijn.be/stops/403530"], ["https://data.delijn.be/stops/304342", "https://data.delijn.be/stops/307007"], ["https://data.delijn.be/stops/301375", "https://data.delijn.be/stops/306138"], ["https://data.delijn.be/stops/501243", "https://data.delijn.be/stops/506243"], ["https://data.delijn.be/stops/403949", "https://data.delijn.be/stops/404022"], ["https://data.delijn.be/stops/307836", "https://data.delijn.be/stops/307837"], ["https://data.delijn.be/stops/302617", "https://data.delijn.be/stops/302632"], ["https://data.delijn.be/stops/302156", "https://data.delijn.be/stops/308098"], ["https://data.delijn.be/stops/104592", "https://data.delijn.be/stops/108351"], ["https://data.delijn.be/stops/304421", "https://data.delijn.be/stops/304427"], ["https://data.delijn.be/stops/401647", "https://data.delijn.be/stops/408732"], ["https://data.delijn.be/stops/101069", "https://data.delijn.be/stops/101073"], ["https://data.delijn.be/stops/208430", "https://data.delijn.be/stops/208803"], ["https://data.delijn.be/stops/503530", "https://data.delijn.be/stops/504686"], ["https://data.delijn.be/stops/206356", "https://data.delijn.be/stops/207688"], ["https://data.delijn.be/stops/308866", "https://data.delijn.be/stops/308868"], ["https://data.delijn.be/stops/107604", "https://data.delijn.be/stops/107606"], ["https://data.delijn.be/stops/403160", "https://data.delijn.be/stops/403161"], ["https://data.delijn.be/stops/505110", "https://data.delijn.be/stops/509149"], ["https://data.delijn.be/stops/109908", "https://data.delijn.be/stops/109909"], ["https://data.delijn.be/stops/502423", "https://data.delijn.be/stops/507750"], ["https://data.delijn.be/stops/204166", "https://data.delijn.be/stops/204774"], ["https://data.delijn.be/stops/103475", "https://data.delijn.be/stops/105435"], ["https://data.delijn.be/stops/306950", "https://data.delijn.be/stops/306956"], ["https://data.delijn.be/stops/104452", "https://data.delijn.be/stops/107521"], ["https://data.delijn.be/stops/107300", "https://data.delijn.be/stops/108240"], ["https://data.delijn.be/stops/302514", "https://data.delijn.be/stops/302517"], ["https://data.delijn.be/stops/409588", "https://data.delijn.be/stops/409590"], ["https://data.delijn.be/stops/203472", "https://data.delijn.be/stops/210047"], ["https://data.delijn.be/stops/208300", "https://data.delijn.be/stops/209300"], ["https://data.delijn.be/stops/209433", "https://data.delijn.be/stops/219021"], ["https://data.delijn.be/stops/205974", "https://data.delijn.be/stops/208242"], ["https://data.delijn.be/stops/106398", "https://data.delijn.be/stops/107406"], ["https://data.delijn.be/stops/403438", "https://data.delijn.be/stops/403662"], ["https://data.delijn.be/stops/406596", "https://data.delijn.be/stops/407410"], ["https://data.delijn.be/stops/401650", "https://data.delijn.be/stops/405402"], ["https://data.delijn.be/stops/502085", "https://data.delijn.be/stops/502104"], ["https://data.delijn.be/stops/102022", "https://data.delijn.be/stops/109949"], ["https://data.delijn.be/stops/201717", "https://data.delijn.be/stops/202604"], ["https://data.delijn.be/stops/200277", "https://data.delijn.be/stops/201174"], ["https://data.delijn.be/stops/208588", "https://data.delijn.be/stops/307528"], ["https://data.delijn.be/stops/107239", "https://data.delijn.be/stops/107242"], ["https://data.delijn.be/stops/502328", "https://data.delijn.be/stops/507331"], ["https://data.delijn.be/stops/104484", "https://data.delijn.be/stops/104487"], ["https://data.delijn.be/stops/301935", "https://data.delijn.be/stops/302907"], ["https://data.delijn.be/stops/106906", "https://data.delijn.be/stops/107262"], ["https://data.delijn.be/stops/408801", "https://data.delijn.be/stops/408802"], ["https://data.delijn.be/stops/204336", "https://data.delijn.be/stops/204626"], ["https://data.delijn.be/stops/103162", "https://data.delijn.be/stops/109951"], ["https://data.delijn.be/stops/105654", "https://data.delijn.be/stops/105658"], ["https://data.delijn.be/stops/504104", "https://data.delijn.be/stops/509544"], ["https://data.delijn.be/stops/102200", "https://data.delijn.be/stops/108165"], ["https://data.delijn.be/stops/102260", "https://data.delijn.be/stops/109382"], ["https://data.delijn.be/stops/407613", "https://data.delijn.be/stops/407745"], ["https://data.delijn.be/stops/508415", "https://data.delijn.be/stops/508562"], ["https://data.delijn.be/stops/410247", "https://data.delijn.be/stops/410248"], ["https://data.delijn.be/stops/504283", "https://data.delijn.be/stops/509281"], ["https://data.delijn.be/stops/401447", "https://data.delijn.be/stops/401736"], ["https://data.delijn.be/stops/405731", "https://data.delijn.be/stops/405735"], ["https://data.delijn.be/stops/102911", "https://data.delijn.be/stops/107660"], ["https://data.delijn.be/stops/108701", "https://data.delijn.be/stops/108710"], ["https://data.delijn.be/stops/206230", "https://data.delijn.be/stops/207935"], ["https://data.delijn.be/stops/200550", "https://data.delijn.be/stops/201230"], ["https://data.delijn.be/stops/308452", "https://data.delijn.be/stops/308464"], ["https://data.delijn.be/stops/505376", "https://data.delijn.be/stops/508882"], ["https://data.delijn.be/stops/506307", "https://data.delijn.be/stops/510003"], ["https://data.delijn.be/stops/508162", "https://data.delijn.be/stops/508176"], ["https://data.delijn.be/stops/304736", "https://data.delijn.be/stops/304851"], ["https://data.delijn.be/stops/408456", "https://data.delijn.be/stops/409419"], ["https://data.delijn.be/stops/503645", "https://data.delijn.be/stops/508724"], ["https://data.delijn.be/stops/302625", "https://data.delijn.be/stops/308115"], ["https://data.delijn.be/stops/401812", "https://data.delijn.be/stops/406354"], ["https://data.delijn.be/stops/202711", "https://data.delijn.be/stops/202712"], ["https://data.delijn.be/stops/209452", "https://data.delijn.be/stops/209699"], ["https://data.delijn.be/stops/301285", "https://data.delijn.be/stops/301900"], ["https://data.delijn.be/stops/302327", "https://data.delijn.be/stops/306180"], ["https://data.delijn.be/stops/508033", "https://data.delijn.be/stops/508424"], ["https://data.delijn.be/stops/102780", "https://data.delijn.be/stops/103715"], ["https://data.delijn.be/stops/406097", "https://data.delijn.be/stops/406106"], ["https://data.delijn.be/stops/202155", "https://data.delijn.be/stops/203154"], ["https://data.delijn.be/stops/209792", "https://data.delijn.be/stops/218015"], ["https://data.delijn.be/stops/403019", "https://data.delijn.be/stops/404531"], ["https://data.delijn.be/stops/300936", "https://data.delijn.be/stops/301005"], ["https://data.delijn.be/stops/103721", "https://data.delijn.be/stops/103722"], ["https://data.delijn.be/stops/204511", "https://data.delijn.be/stops/204513"], ["https://data.delijn.be/stops/407664", "https://data.delijn.be/stops/409801"], ["https://data.delijn.be/stops/403338", "https://data.delijn.be/stops/403339"], ["https://data.delijn.be/stops/504631", "https://data.delijn.be/stops/508142"], ["https://data.delijn.be/stops/200711", "https://data.delijn.be/stops/200739"], ["https://data.delijn.be/stops/206265", "https://data.delijn.be/stops/206981"], ["https://data.delijn.be/stops/104843", "https://data.delijn.be/stops/109963"], ["https://data.delijn.be/stops/304981", "https://data.delijn.be/stops/304986"], ["https://data.delijn.be/stops/403511", "https://data.delijn.be/stops/403512"], ["https://data.delijn.be/stops/103124", "https://data.delijn.be/stops/109172"], ["https://data.delijn.be/stops/502811", "https://data.delijn.be/stops/507501"], ["https://data.delijn.be/stops/207024", "https://data.delijn.be/stops/207166"], ["https://data.delijn.be/stops/300999", "https://data.delijn.be/stops/301077"], ["https://data.delijn.be/stops/102656", "https://data.delijn.be/stops/308797"], ["https://data.delijn.be/stops/400767", "https://data.delijn.be/stops/405268"], ["https://data.delijn.be/stops/302636", "https://data.delijn.be/stops/308820"], ["https://data.delijn.be/stops/400825", "https://data.delijn.be/stops/400828"], ["https://data.delijn.be/stops/508689", "https://data.delijn.be/stops/509453"], ["https://data.delijn.be/stops/201709", "https://data.delijn.be/stops/202378"], ["https://data.delijn.be/stops/300224", "https://data.delijn.be/stops/300255"], ["https://data.delijn.be/stops/506368", "https://data.delijn.be/stops/590412"], ["https://data.delijn.be/stops/406735", "https://data.delijn.be/stops/407621"], ["https://data.delijn.be/stops/301404", "https://data.delijn.be/stops/304739"], ["https://data.delijn.be/stops/304159", "https://data.delijn.be/stops/307544"], ["https://data.delijn.be/stops/300271", "https://data.delijn.be/stops/307113"], ["https://data.delijn.be/stops/202737", "https://data.delijn.be/stops/203080"], ["https://data.delijn.be/stops/408272", "https://data.delijn.be/stops/408413"], ["https://data.delijn.be/stops/102291", "https://data.delijn.be/stops/106347"], ["https://data.delijn.be/stops/503210", "https://data.delijn.be/stops/508189"], ["https://data.delijn.be/stops/403890", "https://data.delijn.be/stops/403895"], ["https://data.delijn.be/stops/401451", "https://data.delijn.be/stops/401543"], ["https://data.delijn.be/stops/205007", "https://data.delijn.be/stops/205321"], ["https://data.delijn.be/stops/106072", "https://data.delijn.be/stops/106073"], ["https://data.delijn.be/stops/107305", "https://data.delijn.be/stops/108860"], ["https://data.delijn.be/stops/307971", "https://data.delijn.be/stops/307973"], ["https://data.delijn.be/stops/107387", "https://data.delijn.be/stops/107790"], ["https://data.delijn.be/stops/300363", "https://data.delijn.be/stops/307737"], ["https://data.delijn.be/stops/408194", "https://data.delijn.be/stops/408431"], ["https://data.delijn.be/stops/305498", "https://data.delijn.be/stops/305499"], ["https://data.delijn.be/stops/207429", "https://data.delijn.be/stops/208752"], ["https://data.delijn.be/stops/502435", "https://data.delijn.be/stops/502644"], ["https://data.delijn.be/stops/403212", "https://data.delijn.be/stops/405127"], ["https://data.delijn.be/stops/503746", "https://data.delijn.be/stops/509737"], ["https://data.delijn.be/stops/407454", "https://data.delijn.be/stops/407455"], ["https://data.delijn.be/stops/200350", "https://data.delijn.be/stops/200355"], ["https://data.delijn.be/stops/205372", "https://data.delijn.be/stops/205373"], ["https://data.delijn.be/stops/408641", "https://data.delijn.be/stops/408664"], ["https://data.delijn.be/stops/401583", "https://data.delijn.be/stops/406249"], ["https://data.delijn.be/stops/304561", "https://data.delijn.be/stops/304640"], ["https://data.delijn.be/stops/502327", "https://data.delijn.be/stops/505574"], ["https://data.delijn.be/stops/300197", "https://data.delijn.be/stops/300230"], ["https://data.delijn.be/stops/405145", "https://data.delijn.be/stops/405280"], ["https://data.delijn.be/stops/502470", "https://data.delijn.be/stops/508326"], ["https://data.delijn.be/stops/501428", "https://data.delijn.be/stops/501433"], ["https://data.delijn.be/stops/405281", "https://data.delijn.be/stops/405295"], ["https://data.delijn.be/stops/207760", "https://data.delijn.be/stops/209188"], ["https://data.delijn.be/stops/505406", "https://data.delijn.be/stops/505901"], ["https://data.delijn.be/stops/503351", "https://data.delijn.be/stops/503410"], ["https://data.delijn.be/stops/507126", "https://data.delijn.be/stops/507167"], ["https://data.delijn.be/stops/307643", "https://data.delijn.be/stops/307688"], ["https://data.delijn.be/stops/200650", "https://data.delijn.be/stops/203886"], ["https://data.delijn.be/stops/400321", "https://data.delijn.be/stops/400439"], ["https://data.delijn.be/stops/201950", "https://data.delijn.be/stops/203428"], ["https://data.delijn.be/stops/303507", "https://data.delijn.be/stops/308739"], ["https://data.delijn.be/stops/502238", "https://data.delijn.be/stops/502241"], ["https://data.delijn.be/stops/300407", "https://data.delijn.be/stops/302000"], ["https://data.delijn.be/stops/304113", "https://data.delijn.be/stops/306278"], ["https://data.delijn.be/stops/405149", "https://data.delijn.be/stops/405228"], ["https://data.delijn.be/stops/504508", "https://data.delijn.be/stops/509017"], ["https://data.delijn.be/stops/203043", "https://data.delijn.be/stops/203047"], ["https://data.delijn.be/stops/201053", "https://data.delijn.be/stops/202931"], ["https://data.delijn.be/stops/102162", "https://data.delijn.be/stops/102724"], ["https://data.delijn.be/stops/201705", "https://data.delijn.be/stops/202383"], ["https://data.delijn.be/stops/304568", "https://data.delijn.be/stops/308963"], ["https://data.delijn.be/stops/108573", "https://data.delijn.be/stops/109689"], ["https://data.delijn.be/stops/107916", "https://data.delijn.be/stops/107918"], ["https://data.delijn.be/stops/507206", "https://data.delijn.be/stops/507219"], ["https://data.delijn.be/stops/504033", "https://data.delijn.be/stops/509031"], ["https://data.delijn.be/stops/206957", "https://data.delijn.be/stops/207714"], ["https://data.delijn.be/stops/504417", "https://data.delijn.be/stops/509417"], ["https://data.delijn.be/stops/503485", "https://data.delijn.be/stops/505718"], ["https://data.delijn.be/stops/204459", "https://data.delijn.be/stops/205459"], ["https://data.delijn.be/stops/408244", "https://data.delijn.be/stops/308222"], ["https://data.delijn.be/stops/205741", "https://data.delijn.be/stops/205742"], ["https://data.delijn.be/stops/204301", "https://data.delijn.be/stops/205047"], ["https://data.delijn.be/stops/405624", "https://data.delijn.be/stops/409300"], ["https://data.delijn.be/stops/503444", "https://data.delijn.be/stops/508722"], ["https://data.delijn.be/stops/206872", "https://data.delijn.be/stops/208364"], ["https://data.delijn.be/stops/403290", "https://data.delijn.be/stops/410117"], ["https://data.delijn.be/stops/300789", "https://data.delijn.be/stops/308673"], ["https://data.delijn.be/stops/201001", "https://data.delijn.be/stops/203527"], ["https://data.delijn.be/stops/302472", "https://data.delijn.be/stops/302486"], ["https://data.delijn.be/stops/107594", "https://data.delijn.be/stops/107662"], ["https://data.delijn.be/stops/505556", "https://data.delijn.be/stops/507178"], ["https://data.delijn.be/stops/509574", "https://data.delijn.be/stops/509577"], ["https://data.delijn.be/stops/101223", "https://data.delijn.be/stops/206697"], ["https://data.delijn.be/stops/206682", "https://data.delijn.be/stops/209106"], ["https://data.delijn.be/stops/400476", "https://data.delijn.be/stops/400478"], ["https://data.delijn.be/stops/205335", "https://data.delijn.be/stops/205337"], ["https://data.delijn.be/stops/104262", "https://data.delijn.be/stops/105354"], ["https://data.delijn.be/stops/106531", "https://data.delijn.be/stops/107309"], ["https://data.delijn.be/stops/401661", "https://data.delijn.be/stops/401710"], ["https://data.delijn.be/stops/209398", "https://data.delijn.be/stops/209495"], ["https://data.delijn.be/stops/503122", "https://data.delijn.be/stops/508132"], ["https://data.delijn.be/stops/206534", "https://data.delijn.be/stops/207647"], ["https://data.delijn.be/stops/206680", "https://data.delijn.be/stops/218005"], ["https://data.delijn.be/stops/405434", "https://data.delijn.be/stops/409251"], ["https://data.delijn.be/stops/304304", "https://data.delijn.be/stops/304305"], ["https://data.delijn.be/stops/105615", "https://data.delijn.be/stops/105620"], ["https://data.delijn.be/stops/101066", "https://data.delijn.be/stops/101069"], ["https://data.delijn.be/stops/102255", "https://data.delijn.be/stops/106010"], ["https://data.delijn.be/stops/400755", "https://data.delijn.be/stops/410048"], ["https://data.delijn.be/stops/502804", "https://data.delijn.be/stops/505662"], ["https://data.delijn.be/stops/103304", "https://data.delijn.be/stops/104870"], ["https://data.delijn.be/stops/206090", "https://data.delijn.be/stops/207091"], ["https://data.delijn.be/stops/207230", "https://data.delijn.be/stops/207935"], ["https://data.delijn.be/stops/502216", "https://data.delijn.be/stops/507216"], ["https://data.delijn.be/stops/202340", "https://data.delijn.be/stops/202948"], ["https://data.delijn.be/stops/504483", "https://data.delijn.be/stops/509447"], ["https://data.delijn.be/stops/204043", "https://data.delijn.be/stops/204409"], ["https://data.delijn.be/stops/205977", "https://data.delijn.be/stops/218022"], ["https://data.delijn.be/stops/301480", "https://data.delijn.be/stops/301482"], ["https://data.delijn.be/stops/508516", "https://data.delijn.be/stops/508982"], ["https://data.delijn.be/stops/304690", "https://data.delijn.be/stops/304791"], ["https://data.delijn.be/stops/400926", "https://data.delijn.be/stops/407393"], ["https://data.delijn.be/stops/301640", "https://data.delijn.be/stops/306154"], ["https://data.delijn.be/stops/501048", "https://data.delijn.be/stops/501476"], ["https://data.delijn.be/stops/505682", "https://data.delijn.be/stops/505684"], ["https://data.delijn.be/stops/507535", "https://data.delijn.be/stops/507741"], ["https://data.delijn.be/stops/202890", "https://data.delijn.be/stops/211132"], ["https://data.delijn.be/stops/202064", "https://data.delijn.be/stops/211852"], ["https://data.delijn.be/stops/405056", "https://data.delijn.be/stops/405863"], ["https://data.delijn.be/stops/505316", "https://data.delijn.be/stops/508005"], ["https://data.delijn.be/stops/304407", "https://data.delijn.be/stops/307416"], ["https://data.delijn.be/stops/304101", "https://data.delijn.be/stops/304108"], ["https://data.delijn.be/stops/201870", "https://data.delijn.be/stops/202663"], ["https://data.delijn.be/stops/106455", "https://data.delijn.be/stops/106457"], ["https://data.delijn.be/stops/206668", "https://data.delijn.be/stops/208532"], ["https://data.delijn.be/stops/106916", "https://data.delijn.be/stops/107251"], ["https://data.delijn.be/stops/107659", "https://data.delijn.be/stops/107663"], ["https://data.delijn.be/stops/102053", "https://data.delijn.be/stops/102260"], ["https://data.delijn.be/stops/206537", "https://data.delijn.be/stops/207432"], ["https://data.delijn.be/stops/107444", "https://data.delijn.be/stops/109755"], ["https://data.delijn.be/stops/208802", "https://data.delijn.be/stops/209427"], ["https://data.delijn.be/stops/201803", "https://data.delijn.be/stops/201833"], ["https://data.delijn.be/stops/302152", "https://data.delijn.be/stops/303844"], ["https://data.delijn.be/stops/200247", "https://data.delijn.be/stops/203756"], ["https://data.delijn.be/stops/500927", "https://data.delijn.be/stops/503958"], ["https://data.delijn.be/stops/504278", "https://data.delijn.be/stops/509283"], ["https://data.delijn.be/stops/400519", "https://data.delijn.be/stops/400520"], ["https://data.delijn.be/stops/204401", "https://data.delijn.be/stops/204402"], ["https://data.delijn.be/stops/503573", "https://data.delijn.be/stops/503580"], ["https://data.delijn.be/stops/407825", "https://data.delijn.be/stops/408174"], ["https://data.delijn.be/stops/107018", "https://data.delijn.be/stops/107112"], ["https://data.delijn.be/stops/201053", "https://data.delijn.be/stops/201477"], ["https://data.delijn.be/stops/505673", "https://data.delijn.be/stops/507314"], ["https://data.delijn.be/stops/402705", "https://data.delijn.be/stops/405997"], ["https://data.delijn.be/stops/404320", "https://data.delijn.be/stops/404321"], ["https://data.delijn.be/stops/303857", "https://data.delijn.be/stops/304080"], ["https://data.delijn.be/stops/202698", "https://data.delijn.be/stops/203698"], ["https://data.delijn.be/stops/504638", "https://data.delijn.be/stops/504746"], ["https://data.delijn.be/stops/505395", "https://data.delijn.be/stops/505810"], ["https://data.delijn.be/stops/400031", "https://data.delijn.be/stops/400439"], ["https://data.delijn.be/stops/200833", "https://data.delijn.be/stops/201883"], ["https://data.delijn.be/stops/300289", "https://data.delijn.be/stops/301316"], ["https://data.delijn.be/stops/108368", "https://data.delijn.be/stops/108458"], ["https://data.delijn.be/stops/106395", "https://data.delijn.be/stops/106397"], ["https://data.delijn.be/stops/505841", "https://data.delijn.be/stops/509118"], ["https://data.delijn.be/stops/403617", "https://data.delijn.be/stops/410037"], ["https://data.delijn.be/stops/306156", "https://data.delijn.be/stops/308638"], ["https://data.delijn.be/stops/503553", "https://data.delijn.be/stops/503556"], ["https://data.delijn.be/stops/206235", "https://data.delijn.be/stops/207236"], ["https://data.delijn.be/stops/501123", "https://data.delijn.be/stops/501126"], ["https://data.delijn.be/stops/402608", "https://data.delijn.be/stops/405472"], ["https://data.delijn.be/stops/403304", "https://data.delijn.be/stops/409173"], ["https://data.delijn.be/stops/201335", "https://data.delijn.be/stops/210335"], ["https://data.delijn.be/stops/405250", "https://data.delijn.be/stops/405251"], ["https://data.delijn.be/stops/403795", "https://data.delijn.be/stops/403811"], ["https://data.delijn.be/stops/109590", "https://data.delijn.be/stops/109591"], ["https://data.delijn.be/stops/106422", "https://data.delijn.be/stops/106561"], ["https://data.delijn.be/stops/401029", "https://data.delijn.be/stops/409220"], ["https://data.delijn.be/stops/405412", "https://data.delijn.be/stops/302841"], ["https://data.delijn.be/stops/406171", "https://data.delijn.be/stops/410226"], ["https://data.delijn.be/stops/503267", "https://data.delijn.be/stops/508036"], ["https://data.delijn.be/stops/204080", "https://data.delijn.be/stops/204203"], ["https://data.delijn.be/stops/204424", "https://data.delijn.be/stops/204745"], ["https://data.delijn.be/stops/106818", "https://data.delijn.be/stops/106819"], ["https://data.delijn.be/stops/203032", "https://data.delijn.be/stops/203033"], ["https://data.delijn.be/stops/201952", "https://data.delijn.be/stops/203457"], ["https://data.delijn.be/stops/206323", "https://data.delijn.be/stops/206487"], ["https://data.delijn.be/stops/104839", "https://data.delijn.be/stops/109460"], ["https://data.delijn.be/stops/303360", "https://data.delijn.be/stops/303373"], ["https://data.delijn.be/stops/507294", "https://data.delijn.be/stops/507296"], ["https://data.delijn.be/stops/107136", "https://data.delijn.be/stops/107138"], ["https://data.delijn.be/stops/102022", "https://data.delijn.be/stops/104843"], ["https://data.delijn.be/stops/407094", "https://data.delijn.be/stops/407098"], ["https://data.delijn.be/stops/401476", "https://data.delijn.be/stops/401491"], ["https://data.delijn.be/stops/401900", "https://data.delijn.be/stops/401908"], ["https://data.delijn.be/stops/505579", "https://data.delijn.be/stops/509891"], ["https://data.delijn.be/stops/407021", "https://data.delijn.be/stops/407057"], ["https://data.delijn.be/stops/304265", "https://data.delijn.be/stops/304285"], ["https://data.delijn.be/stops/405903", "https://data.delijn.be/stops/405917"], ["https://data.delijn.be/stops/200501", "https://data.delijn.be/stops/201189"], ["https://data.delijn.be/stops/504701", "https://data.delijn.be/stops/509441"], ["https://data.delijn.be/stops/401125", "https://data.delijn.be/stops/402830"], ["https://data.delijn.be/stops/209689", "https://data.delijn.be/stops/209741"], ["https://data.delijn.be/stops/303715", "https://data.delijn.be/stops/303747"], ["https://data.delijn.be/stops/405037", "https://data.delijn.be/stops/405100"], ["https://data.delijn.be/stops/503212", "https://data.delijn.be/stops/508354"], ["https://data.delijn.be/stops/209389", "https://data.delijn.be/stops/503329"], ["https://data.delijn.be/stops/503480", "https://data.delijn.be/stops/509046"], ["https://data.delijn.be/stops/201345", "https://data.delijn.be/stops/201346"], ["https://data.delijn.be/stops/401264", "https://data.delijn.be/stops/401270"], ["https://data.delijn.be/stops/502304", "https://data.delijn.be/stops/507313"], ["https://data.delijn.be/stops/101136", "https://data.delijn.be/stops/104362"], ["https://data.delijn.be/stops/504037", "https://data.delijn.be/stops/509038"], ["https://data.delijn.be/stops/503565", "https://data.delijn.be/stops/503569"], ["https://data.delijn.be/stops/104639", "https://data.delijn.be/stops/107971"], ["https://data.delijn.be/stops/101941", "https://data.delijn.be/stops/109642"], ["https://data.delijn.be/stops/410043", "https://data.delijn.be/stops/410044"], ["https://data.delijn.be/stops/209466", "https://data.delijn.be/stops/209467"], ["https://data.delijn.be/stops/203121", "https://data.delijn.be/stops/203181"], ["https://data.delijn.be/stops/106994", "https://data.delijn.be/stops/107098"], ["https://data.delijn.be/stops/403768", "https://data.delijn.be/stops/403875"], ["https://data.delijn.be/stops/306954", "https://data.delijn.be/stops/306957"], ["https://data.delijn.be/stops/206750", "https://data.delijn.be/stops/208477"], ["https://data.delijn.be/stops/200815", "https://data.delijn.be/stops/200874"], ["https://data.delijn.be/stops/201811", "https://data.delijn.be/stops/201844"], ["https://data.delijn.be/stops/507798", "https://data.delijn.be/stops/508271"], ["https://data.delijn.be/stops/206049", "https://data.delijn.be/stops/206143"], ["https://data.delijn.be/stops/301785", "https://data.delijn.be/stops/301786"], ["https://data.delijn.be/stops/501122", "https://data.delijn.be/stops/501123"], ["https://data.delijn.be/stops/503028", "https://data.delijn.be/stops/508028"], ["https://data.delijn.be/stops/403938", "https://data.delijn.be/stops/403939"], ["https://data.delijn.be/stops/107545", "https://data.delijn.be/stops/109596"], ["https://data.delijn.be/stops/503460", "https://data.delijn.be/stops/503461"], ["https://data.delijn.be/stops/406622", "https://data.delijn.be/stops/406685"], ["https://data.delijn.be/stops/405705", "https://data.delijn.be/stops/408898"], ["https://data.delijn.be/stops/204675", "https://data.delijn.be/stops/205676"], ["https://data.delijn.be/stops/103073", "https://data.delijn.be/stops/106926"], ["https://data.delijn.be/stops/101651", "https://data.delijn.be/stops/105499"], ["https://data.delijn.be/stops/402653", "https://data.delijn.be/stops/405484"], ["https://data.delijn.be/stops/404305", "https://data.delijn.be/stops/404328"], ["https://data.delijn.be/stops/201724", "https://data.delijn.be/stops/203380"], ["https://data.delijn.be/stops/102211", "https://data.delijn.be/stops/106119"], ["https://data.delijn.be/stops/403907", "https://data.delijn.be/stops/404039"], ["https://data.delijn.be/stops/401806", "https://data.delijn.be/stops/401807"], ["https://data.delijn.be/stops/301618", "https://data.delijn.be/stops/301621"], ["https://data.delijn.be/stops/503562", "https://data.delijn.be/stops/508564"], ["https://data.delijn.be/stops/103279", "https://data.delijn.be/stops/107725"], ["https://data.delijn.be/stops/200573", "https://data.delijn.be/stops/201422"], ["https://data.delijn.be/stops/501262", "https://data.delijn.be/stops/506321"], ["https://data.delijn.be/stops/304490", "https://data.delijn.be/stops/304516"], ["https://data.delijn.be/stops/101389", "https://data.delijn.be/stops/101828"], ["https://data.delijn.be/stops/202304", "https://data.delijn.be/stops/203304"], ["https://data.delijn.be/stops/101015", "https://data.delijn.be/stops/101017"], ["https://data.delijn.be/stops/305545", "https://data.delijn.be/stops/305546"], ["https://data.delijn.be/stops/405696", "https://data.delijn.be/stops/405991"], ["https://data.delijn.be/stops/105967", "https://data.delijn.be/stops/107140"], ["https://data.delijn.be/stops/405687", "https://data.delijn.be/stops/406466"], ["https://data.delijn.be/stops/404012", "https://data.delijn.be/stops/404013"], ["https://data.delijn.be/stops/501096", "https://data.delijn.be/stops/505151"], ["https://data.delijn.be/stops/301702", "https://data.delijn.be/stops/303750"], ["https://data.delijn.be/stops/208506", "https://data.delijn.be/stops/208660"], ["https://data.delijn.be/stops/502533", "https://data.delijn.be/stops/507532"], ["https://data.delijn.be/stops/206547", "https://data.delijn.be/stops/209750"], ["https://data.delijn.be/stops/505307", "https://data.delijn.be/stops/505342"], ["https://data.delijn.be/stops/407599", "https://data.delijn.be/stops/410350"], ["https://data.delijn.be/stops/106333", "https://data.delijn.be/stops/106697"], ["https://data.delijn.be/stops/206565", "https://data.delijn.be/stops/207565"], ["https://data.delijn.be/stops/504164", "https://data.delijn.be/stops/504739"], ["https://data.delijn.be/stops/201735", "https://data.delijn.be/stops/203758"], ["https://data.delijn.be/stops/208345", "https://data.delijn.be/stops/209346"], ["https://data.delijn.be/stops/107797", "https://data.delijn.be/stops/107801"], ["https://data.delijn.be/stops/301746", "https://data.delijn.be/stops/304571"], ["https://data.delijn.be/stops/407586", "https://data.delijn.be/stops/410275"], ["https://data.delijn.be/stops/200234", "https://data.delijn.be/stops/201249"], ["https://data.delijn.be/stops/302756", "https://data.delijn.be/stops/302774"], ["https://data.delijn.be/stops/503096", "https://data.delijn.be/stops/508096"], ["https://data.delijn.be/stops/103617", "https://data.delijn.be/stops/103679"], ["https://data.delijn.be/stops/302550", "https://data.delijn.be/stops/305979"], ["https://data.delijn.be/stops/101799", "https://data.delijn.be/stops/300680"], ["https://data.delijn.be/stops/108784", "https://data.delijn.be/stops/109119"], ["https://data.delijn.be/stops/400991", "https://data.delijn.be/stops/409102"], ["https://data.delijn.be/stops/102502", "https://data.delijn.be/stops/102504"], ["https://data.delijn.be/stops/300343", "https://data.delijn.be/stops/300355"], ["https://data.delijn.be/stops/106939", "https://data.delijn.be/stops/107309"], ["https://data.delijn.be/stops/104599", "https://data.delijn.be/stops/104601"], ["https://data.delijn.be/stops/503779", "https://data.delijn.be/stops/508838"], ["https://data.delijn.be/stops/200403", "https://data.delijn.be/stops/202040"], ["https://data.delijn.be/stops/105083", "https://data.delijn.be/stops/205279"], ["https://data.delijn.be/stops/404691", "https://data.delijn.be/stops/406933"], ["https://data.delijn.be/stops/102219", "https://data.delijn.be/stops/102221"], ["https://data.delijn.be/stops/307310", "https://data.delijn.be/stops/307313"], ["https://data.delijn.be/stops/306129", "https://data.delijn.be/stops/306130"], ["https://data.delijn.be/stops/400560", "https://data.delijn.be/stops/400561"], ["https://data.delijn.be/stops/400368", "https://data.delijn.be/stops/400416"], ["https://data.delijn.be/stops/201862", "https://data.delijn.be/stops/201879"], ["https://data.delijn.be/stops/510019", "https://data.delijn.be/stops/510023"], ["https://data.delijn.be/stops/302136", "https://data.delijn.be/stops/302144"], ["https://data.delijn.be/stops/300225", "https://data.delijn.be/stops/300230"], ["https://data.delijn.be/stops/102931", "https://data.delijn.be/stops/102936"], ["https://data.delijn.be/stops/409692", "https://data.delijn.be/stops/409704"], ["https://data.delijn.be/stops/107090", "https://data.delijn.be/stops/107350"], ["https://data.delijn.be/stops/302216", "https://data.delijn.be/stops/302234"], ["https://data.delijn.be/stops/104479", "https://data.delijn.be/stops/303561"], ["https://data.delijn.be/stops/307142", "https://data.delijn.be/stops/307249"], ["https://data.delijn.be/stops/104549", "https://data.delijn.be/stops/301914"], ["https://data.delijn.be/stops/403525", "https://data.delijn.be/stops/403628"], ["https://data.delijn.be/stops/402778", "https://data.delijn.be/stops/402785"], ["https://data.delijn.be/stops/407920", "https://data.delijn.be/stops/408080"], ["https://data.delijn.be/stops/206198", "https://data.delijn.be/stops/206238"], ["https://data.delijn.be/stops/203547", "https://data.delijn.be/stops/203548"], ["https://data.delijn.be/stops/308223", "https://data.delijn.be/stops/308287"], ["https://data.delijn.be/stops/200828", "https://data.delijn.be/stops/502060"], ["https://data.delijn.be/stops/404346", "https://data.delijn.be/stops/409690"], ["https://data.delijn.be/stops/207096", "https://data.delijn.be/stops/207909"], ["https://data.delijn.be/stops/102500", "https://data.delijn.be/stops/102505"], ["https://data.delijn.be/stops/206229", "https://data.delijn.be/stops/207906"], ["https://data.delijn.be/stops/208549", "https://data.delijn.be/stops/209549"], ["https://data.delijn.be/stops/305280", "https://data.delijn.be/stops/305310"], ["https://data.delijn.be/stops/501385", "https://data.delijn.be/stops/506464"], ["https://data.delijn.be/stops/210008", "https://data.delijn.be/stops/210856"], ["https://data.delijn.be/stops/407772", "https://data.delijn.be/stops/408848"], ["https://data.delijn.be/stops/407714", "https://data.delijn.be/stops/409520"], ["https://data.delijn.be/stops/206727", "https://data.delijn.be/stops/206733"], ["https://data.delijn.be/stops/402656", "https://data.delijn.be/stops/407298"], ["https://data.delijn.be/stops/201073", "https://data.delijn.be/stops/211046"], ["https://data.delijn.be/stops/204089", "https://data.delijn.be/stops/205017"], ["https://data.delijn.be/stops/105092", "https://data.delijn.be/stops/105094"], ["https://data.delijn.be/stops/103982", "https://data.delijn.be/stops/109960"], ["https://data.delijn.be/stops/109681", "https://data.delijn.be/stops/109682"], ["https://data.delijn.be/stops/404461", "https://data.delijn.be/stops/410155"], ["https://data.delijn.be/stops/308460", "https://data.delijn.be/stops/308692"], ["https://data.delijn.be/stops/103209", "https://data.delijn.be/stops/108440"], ["https://data.delijn.be/stops/300487", "https://data.delijn.be/stops/303613"], ["https://data.delijn.be/stops/501201", "https://data.delijn.be/stops/506257"], ["https://data.delijn.be/stops/202448", "https://data.delijn.be/stops/203078"], ["https://data.delijn.be/stops/504569", "https://data.delijn.be/stops/509569"], ["https://data.delijn.be/stops/305344", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/105419", "https://data.delijn.be/stops/105422"], ["https://data.delijn.be/stops/302919", "https://data.delijn.be/stops/306402"], ["https://data.delijn.be/stops/404140", "https://data.delijn.be/stops/404141"], ["https://data.delijn.be/stops/301281", "https://data.delijn.be/stops/306251"], ["https://data.delijn.be/stops/303773", "https://data.delijn.be/stops/308714"], ["https://data.delijn.be/stops/305991", "https://data.delijn.be/stops/306632"], ["https://data.delijn.be/stops/405766", "https://data.delijn.be/stops/409752"], ["https://data.delijn.be/stops/305746", "https://data.delijn.be/stops/305748"], ["https://data.delijn.be/stops/201874", "https://data.delijn.be/stops/203021"], ["https://data.delijn.be/stops/402528", "https://data.delijn.be/stops/402532"], ["https://data.delijn.be/stops/108923", "https://data.delijn.be/stops/108926"], ["https://data.delijn.be/stops/401443", "https://data.delijn.be/stops/401723"], ["https://data.delijn.be/stops/405311", "https://data.delijn.be/stops/405420"], ["https://data.delijn.be/stops/500601", "https://data.delijn.be/stops/501537"], ["https://data.delijn.be/stops/502762", "https://data.delijn.be/stops/507756"], ["https://data.delijn.be/stops/105266", "https://data.delijn.be/stops/105353"], ["https://data.delijn.be/stops/200396", "https://data.delijn.be/stops/201396"], ["https://data.delijn.be/stops/109933", "https://data.delijn.be/stops/109958"], ["https://data.delijn.be/stops/304357", "https://data.delijn.be/stops/304358"], ["https://data.delijn.be/stops/405925", "https://data.delijn.be/stops/405990"], ["https://data.delijn.be/stops/408705", "https://data.delijn.be/stops/408767"], ["https://data.delijn.be/stops/206971", "https://data.delijn.be/stops/207990"], ["https://data.delijn.be/stops/106898", "https://data.delijn.be/stops/109884"], ["https://data.delijn.be/stops/301961", "https://data.delijn.be/stops/301982"], ["https://data.delijn.be/stops/300600", "https://data.delijn.be/stops/300612"], ["https://data.delijn.be/stops/302338", "https://data.delijn.be/stops/306181"], ["https://data.delijn.be/stops/306901", "https://data.delijn.be/stops/306902"], ["https://data.delijn.be/stops/202758", "https://data.delijn.be/stops/202759"], ["https://data.delijn.be/stops/109294", "https://data.delijn.be/stops/109295"], ["https://data.delijn.be/stops/200620", "https://data.delijn.be/stops/211002"], ["https://data.delijn.be/stops/107064", "https://data.delijn.be/stops/107066"], ["https://data.delijn.be/stops/201809", "https://data.delijn.be/stops/201834"], ["https://data.delijn.be/stops/300705", "https://data.delijn.be/stops/308069"], ["https://data.delijn.be/stops/308170", "https://data.delijn.be/stops/308172"], ["https://data.delijn.be/stops/402192", "https://data.delijn.be/stops/402252"], ["https://data.delijn.be/stops/202932", "https://data.delijn.be/stops/218001"], ["https://data.delijn.be/stops/102751", "https://data.delijn.be/stops/108145"], ["https://data.delijn.be/stops/200579", "https://data.delijn.be/stops/201580"], ["https://data.delijn.be/stops/405659", "https://data.delijn.be/stops/408747"], ["https://data.delijn.be/stops/305482", "https://data.delijn.be/stops/308551"], ["https://data.delijn.be/stops/404138", "https://data.delijn.be/stops/404140"], ["https://data.delijn.be/stops/302318", "https://data.delijn.be/stops/308788"], ["https://data.delijn.be/stops/401741", "https://data.delijn.be/stops/401743"], ["https://data.delijn.be/stops/307422", "https://data.delijn.be/stops/307423"], ["https://data.delijn.be/stops/201849", "https://data.delijn.be/stops/203772"], ["https://data.delijn.be/stops/202581", "https://data.delijn.be/stops/203582"], ["https://data.delijn.be/stops/201126", "https://data.delijn.be/stops/203142"], ["https://data.delijn.be/stops/207012", "https://data.delijn.be/stops/207988"], ["https://data.delijn.be/stops/402205", "https://data.delijn.be/stops/402481"], ["https://data.delijn.be/stops/101298", "https://data.delijn.be/stops/105487"], ["https://data.delijn.be/stops/205175", "https://data.delijn.be/stops/205452"], ["https://data.delijn.be/stops/408875", "https://data.delijn.be/stops/408890"], ["https://data.delijn.be/stops/307640", "https://data.delijn.be/stops/307643"], ["https://data.delijn.be/stops/403686", "https://data.delijn.be/stops/409274"], ["https://data.delijn.be/stops/103398", "https://data.delijn.be/stops/104794"], ["https://data.delijn.be/stops/402017", "https://data.delijn.be/stops/402021"], ["https://data.delijn.be/stops/106087", "https://data.delijn.be/stops/106139"], ["https://data.delijn.be/stops/204622", "https://data.delijn.be/stops/205622"], ["https://data.delijn.be/stops/504210", "https://data.delijn.be/stops/504691"], ["https://data.delijn.be/stops/305806", "https://data.delijn.be/stops/305841"], ["https://data.delijn.be/stops/403051", "https://data.delijn.be/stops/403175"], ["https://data.delijn.be/stops/206940", "https://data.delijn.be/stops/207940"], ["https://data.delijn.be/stops/405380", "https://data.delijn.be/stops/405412"], ["https://data.delijn.be/stops/206255", "https://data.delijn.be/stops/206996"], ["https://data.delijn.be/stops/203823", "https://data.delijn.be/stops/209715"], ["https://data.delijn.be/stops/104284", "https://data.delijn.be/stops/104338"], ["https://data.delijn.be/stops/407052", "https://data.delijn.be/stops/407076"], ["https://data.delijn.be/stops/208245", "https://data.delijn.be/stops/208246"], ["https://data.delijn.be/stops/206774", "https://data.delijn.be/stops/209093"], ["https://data.delijn.be/stops/107575", "https://data.delijn.be/stops/107576"], ["https://data.delijn.be/stops/302162", "https://data.delijn.be/stops/302163"], ["https://data.delijn.be/stops/204095", "https://data.delijn.be/stops/204471"], ["https://data.delijn.be/stops/308072", "https://data.delijn.be/stops/308075"], ["https://data.delijn.be/stops/200778", "https://data.delijn.be/stops/211121"], ["https://data.delijn.be/stops/206621", "https://data.delijn.be/stops/206622"], ["https://data.delijn.be/stops/505973", "https://data.delijn.be/stops/508017"], ["https://data.delijn.be/stops/306853", "https://data.delijn.be/stops/306854"], ["https://data.delijn.be/stops/508754", "https://data.delijn.be/stops/508759"], ["https://data.delijn.be/stops/101217", "https://data.delijn.be/stops/107944"], ["https://data.delijn.be/stops/305220", "https://data.delijn.be/stops/305989"], ["https://data.delijn.be/stops/404770", "https://data.delijn.be/stops/404771"], ["https://data.delijn.be/stops/504703", "https://data.delijn.be/stops/509597"], ["https://data.delijn.be/stops/301331", "https://data.delijn.be/stops/301389"], ["https://data.delijn.be/stops/102807", "https://data.delijn.be/stops/109673"], ["https://data.delijn.be/stops/102300", "https://data.delijn.be/stops/104625"], ["https://data.delijn.be/stops/307791", "https://data.delijn.be/stops/333234"], ["https://data.delijn.be/stops/304751", "https://data.delijn.be/stops/308698"], ["https://data.delijn.be/stops/308214", "https://data.delijn.be/stops/308231"], ["https://data.delijn.be/stops/403087", "https://data.delijn.be/stops/403682"], ["https://data.delijn.be/stops/206470", "https://data.delijn.be/stops/207137"], ["https://data.delijn.be/stops/501065", "https://data.delijn.be/stops/506135"], ["https://data.delijn.be/stops/405880", "https://data.delijn.be/stops/405881"], ["https://data.delijn.be/stops/503592", "https://data.delijn.be/stops/504883"], ["https://data.delijn.be/stops/300349", "https://data.delijn.be/stops/300361"], ["https://data.delijn.be/stops/502761", "https://data.delijn.be/stops/505647"], ["https://data.delijn.be/stops/403701", "https://data.delijn.be/stops/403761"], ["https://data.delijn.be/stops/206789", "https://data.delijn.be/stops/208596"], ["https://data.delijn.be/stops/104590", "https://data.delijn.be/stops/105635"], ["https://data.delijn.be/stops/407888", "https://data.delijn.be/stops/408179"], ["https://data.delijn.be/stops/505060", "https://data.delijn.be/stops/505062"], ["https://data.delijn.be/stops/208133", "https://data.delijn.be/stops/208138"], ["https://data.delijn.be/stops/106091", "https://data.delijn.be/stops/108473"], ["https://data.delijn.be/stops/504008", "https://data.delijn.be/stops/505103"], ["https://data.delijn.be/stops/308215", "https://data.delijn.be/stops/308245"], ["https://data.delijn.be/stops/105236", "https://data.delijn.be/stops/108000"], ["https://data.delijn.be/stops/206530", "https://data.delijn.be/stops/206822"], ["https://data.delijn.be/stops/103477", "https://data.delijn.be/stops/109164"], ["https://data.delijn.be/stops/302541", "https://data.delijn.be/stops/302542"], ["https://data.delijn.be/stops/200711", "https://data.delijn.be/stops/204768"], ["https://data.delijn.be/stops/400435", "https://data.delijn.be/stops/405297"], ["https://data.delijn.be/stops/103694", "https://data.delijn.be/stops/103696"], ["https://data.delijn.be/stops/301627", "https://data.delijn.be/stops/302119"], ["https://data.delijn.be/stops/200095", "https://data.delijn.be/stops/201095"], ["https://data.delijn.be/stops/301089", "https://data.delijn.be/stops/302808"], ["https://data.delijn.be/stops/206411", "https://data.delijn.be/stops/207650"], ["https://data.delijn.be/stops/103605", "https://data.delijn.be/stops/109402"], ["https://data.delijn.be/stops/403340", "https://data.delijn.be/stops/403522"], ["https://data.delijn.be/stops/102607", "https://data.delijn.be/stops/105527"], ["https://data.delijn.be/stops/505105", "https://data.delijn.be/stops/508116"], ["https://data.delijn.be/stops/403326", "https://data.delijn.be/stops/403327"], ["https://data.delijn.be/stops/500022", "https://data.delijn.be/stops/506194"], ["https://data.delijn.be/stops/401672", "https://data.delijn.be/stops/307626"], ["https://data.delijn.be/stops/409545", "https://data.delijn.be/stops/409547"], ["https://data.delijn.be/stops/206834", "https://data.delijn.be/stops/207833"], ["https://data.delijn.be/stops/402840", "https://data.delijn.be/stops/402889"], ["https://data.delijn.be/stops/400792", "https://data.delijn.be/stops/409541"], ["https://data.delijn.be/stops/306960", "https://data.delijn.be/stops/308088"], ["https://data.delijn.be/stops/202419", "https://data.delijn.be/stops/203276"], ["https://data.delijn.be/stops/104866", "https://data.delijn.be/stops/104867"], ["https://data.delijn.be/stops/105968", "https://data.delijn.be/stops/105971"], ["https://data.delijn.be/stops/501250", "https://data.delijn.be/stops/506259"], ["https://data.delijn.be/stops/503780", "https://data.delijn.be/stops/508780"], ["https://data.delijn.be/stops/204342", "https://data.delijn.be/stops/205212"], ["https://data.delijn.be/stops/408134", "https://data.delijn.be/stops/408140"], ["https://data.delijn.be/stops/202625", "https://data.delijn.be/stops/203625"], ["https://data.delijn.be/stops/204250", "https://data.delijn.be/stops/205468"], ["https://data.delijn.be/stops/407838", "https://data.delijn.be/stops/408006"], ["https://data.delijn.be/stops/200815", "https://data.delijn.be/stops/201125"], ["https://data.delijn.be/stops/402586", "https://data.delijn.be/stops/402587"], ["https://data.delijn.be/stops/302603", "https://data.delijn.be/stops/302604"], ["https://data.delijn.be/stops/306819", "https://data.delijn.be/stops/306820"], ["https://data.delijn.be/stops/104995", "https://data.delijn.be/stops/105000"], ["https://data.delijn.be/stops/306045", "https://data.delijn.be/stops/307475"], ["https://data.delijn.be/stops/409347", "https://data.delijn.be/stops/409348"], ["https://data.delijn.be/stops/503552", "https://data.delijn.be/stops/503576"], ["https://data.delijn.be/stops/101046", "https://data.delijn.be/stops/105988"], ["https://data.delijn.be/stops/102474", "https://data.delijn.be/stops/102477"], ["https://data.delijn.be/stops/407683", "https://data.delijn.be/stops/407685"], ["https://data.delijn.be/stops/307386", "https://data.delijn.be/stops/307397"], ["https://data.delijn.be/stops/505289", "https://data.delijn.be/stops/505369"], ["https://data.delijn.be/stops/508154", "https://data.delijn.be/stops/508155"], ["https://data.delijn.be/stops/202431", "https://data.delijn.be/stops/203433"], ["https://data.delijn.be/stops/202259", "https://data.delijn.be/stops/203105"], ["https://data.delijn.be/stops/106961", "https://data.delijn.be/stops/106962"], ["https://data.delijn.be/stops/308068", "https://data.delijn.be/stops/308069"], ["https://data.delijn.be/stops/304434", "https://data.delijn.be/stops/307042"], ["https://data.delijn.be/stops/208114", "https://data.delijn.be/stops/209789"], ["https://data.delijn.be/stops/302943", "https://data.delijn.be/stops/308660"], ["https://data.delijn.be/stops/307162", "https://data.delijn.be/stops/307264"], ["https://data.delijn.be/stops/302974", "https://data.delijn.be/stops/303026"], ["https://data.delijn.be/stops/400914", "https://data.delijn.be/stops/400915"], ["https://data.delijn.be/stops/403468", "https://data.delijn.be/stops/410062"], ["https://data.delijn.be/stops/504208", "https://data.delijn.be/stops/504692"], ["https://data.delijn.be/stops/504231", "https://data.delijn.be/stops/504232"], ["https://data.delijn.be/stops/202272", "https://data.delijn.be/stops/203662"], ["https://data.delijn.be/stops/108703", "https://data.delijn.be/stops/108710"], ["https://data.delijn.be/stops/206043", "https://data.delijn.be/stops/206538"], ["https://data.delijn.be/stops/404100", "https://data.delijn.be/stops/404102"], ["https://data.delijn.be/stops/204151", "https://data.delijn.be/stops/205591"], ["https://data.delijn.be/stops/502348", "https://data.delijn.be/stops/505310"], ["https://data.delijn.be/stops/203372", "https://data.delijn.be/stops/203373"], ["https://data.delijn.be/stops/505787", "https://data.delijn.be/stops/509040"], ["https://data.delijn.be/stops/504258", "https://data.delijn.be/stops/504707"], ["https://data.delijn.be/stops/201632", "https://data.delijn.be/stops/202909"], ["https://data.delijn.be/stops/504324", "https://data.delijn.be/stops/504424"], ["https://data.delijn.be/stops/507163", "https://data.delijn.be/stops/507441"], ["https://data.delijn.be/stops/300010", "https://data.delijn.be/stops/304300"], ["https://data.delijn.be/stops/201644", "https://data.delijn.be/stops/203777"], ["https://data.delijn.be/stops/303141", "https://data.delijn.be/stops/308604"], ["https://data.delijn.be/stops/403922", "https://data.delijn.be/stops/405940"], ["https://data.delijn.be/stops/204384", "https://data.delijn.be/stops/205385"], ["https://data.delijn.be/stops/208098", "https://data.delijn.be/stops/209004"], ["https://data.delijn.be/stops/102295", "https://data.delijn.be/stops/103762"], ["https://data.delijn.be/stops/501741", "https://data.delijn.be/stops/509507"], ["https://data.delijn.be/stops/304479", "https://data.delijn.be/stops/304482"], ["https://data.delijn.be/stops/404201", "https://data.delijn.be/stops/404218"], ["https://data.delijn.be/stops/102415", "https://data.delijn.be/stops/105570"], ["https://data.delijn.be/stops/102860", "https://data.delijn.be/stops/104565"], ["https://data.delijn.be/stops/401009", "https://data.delijn.be/stops/403800"], ["https://data.delijn.be/stops/401472", "https://data.delijn.be/stops/405232"], ["https://data.delijn.be/stops/302749", "https://data.delijn.be/stops/302764"], ["https://data.delijn.be/stops/103731", "https://data.delijn.be/stops/109896"], ["https://data.delijn.be/stops/101574", "https://data.delijn.be/stops/105469"], ["https://data.delijn.be/stops/406939", "https://data.delijn.be/stops/409492"], ["https://data.delijn.be/stops/401839", "https://data.delijn.be/stops/406020"], ["https://data.delijn.be/stops/505194", "https://data.delijn.be/stops/508151"], ["https://data.delijn.be/stops/407740", "https://data.delijn.be/stops/409625"], ["https://data.delijn.be/stops/109185", "https://data.delijn.be/stops/109878"], ["https://data.delijn.be/stops/400300", "https://data.delijn.be/stops/400306"], ["https://data.delijn.be/stops/501122", "https://data.delijn.be/stops/506121"], ["https://data.delijn.be/stops/507090", "https://data.delijn.be/stops/507148"], ["https://data.delijn.be/stops/406586", "https://data.delijn.be/stops/407167"], ["https://data.delijn.be/stops/405154", "https://data.delijn.be/stops/405257"], ["https://data.delijn.be/stops/305140", "https://data.delijn.be/stops/308090"], ["https://data.delijn.be/stops/105926", "https://data.delijn.be/stops/107271"], ["https://data.delijn.be/stops/408223", "https://data.delijn.be/stops/408280"], ["https://data.delijn.be/stops/301019", "https://data.delijn.be/stops/304255"], ["https://data.delijn.be/stops/207695", "https://data.delijn.be/stops/207715"], ["https://data.delijn.be/stops/203217", "https://data.delijn.be/stops/205092"], ["https://data.delijn.be/stops/104028", "https://data.delijn.be/stops/106528"], ["https://data.delijn.be/stops/107727", "https://data.delijn.be/stops/107728"], ["https://data.delijn.be/stops/200014", "https://data.delijn.be/stops/201508"], ["https://data.delijn.be/stops/403148", "https://data.delijn.be/stops/403318"], ["https://data.delijn.be/stops/105030", "https://data.delijn.be/stops/105780"], ["https://data.delijn.be/stops/209290", "https://data.delijn.be/stops/209295"], ["https://data.delijn.be/stops/508243", "https://data.delijn.be/stops/509792"], ["https://data.delijn.be/stops/204087", "https://data.delijn.be/stops/205086"], ["https://data.delijn.be/stops/404871", "https://data.delijn.be/stops/405546"], ["https://data.delijn.be/stops/505707", "https://data.delijn.be/stops/509227"], ["https://data.delijn.be/stops/103924", "https://data.delijn.be/stops/107248"], ["https://data.delijn.be/stops/306845", "https://data.delijn.be/stops/306850"], ["https://data.delijn.be/stops/503570", "https://data.delijn.be/stops/508566"], ["https://data.delijn.be/stops/400374", "https://data.delijn.be/stops/400437"], ["https://data.delijn.be/stops/300750", "https://data.delijn.be/stops/300833"], ["https://data.delijn.be/stops/504220", "https://data.delijn.be/stops/504221"], ["https://data.delijn.be/stops/107211", "https://data.delijn.be/stops/107212"], ["https://data.delijn.be/stops/403109", "https://data.delijn.be/stops/403187"], ["https://data.delijn.be/stops/300868", "https://data.delijn.be/stops/300869"], ["https://data.delijn.be/stops/101221", "https://data.delijn.be/stops/107824"], ["https://data.delijn.be/stops/300813", "https://data.delijn.be/stops/300875"], ["https://data.delijn.be/stops/407802", "https://data.delijn.be/stops/407849"], ["https://data.delijn.be/stops/501056", "https://data.delijn.be/stops/506505"], ["https://data.delijn.be/stops/404350", "https://data.delijn.be/stops/404359"], ["https://data.delijn.be/stops/103398", "https://data.delijn.be/stops/107408"], ["https://data.delijn.be/stops/503369", "https://data.delijn.be/stops/503429"], ["https://data.delijn.be/stops/200914", "https://data.delijn.be/stops/203090"], ["https://data.delijn.be/stops/202205", "https://data.delijn.be/stops/203206"], ["https://data.delijn.be/stops/408866", "https://data.delijn.be/stops/408867"], ["https://data.delijn.be/stops/307383", "https://data.delijn.be/stops/307384"], ["https://data.delijn.be/stops/108847", "https://data.delijn.be/stops/108859"], ["https://data.delijn.be/stops/302947", "https://data.delijn.be/stops/302948"], ["https://data.delijn.be/stops/103981", "https://data.delijn.be/stops/103982"], ["https://data.delijn.be/stops/302550", "https://data.delijn.be/stops/302555"], ["https://data.delijn.be/stops/106416", "https://data.delijn.be/stops/106417"], ["https://data.delijn.be/stops/503305", "https://data.delijn.be/stops/503311"], ["https://data.delijn.be/stops/300104", "https://data.delijn.be/stops/300111"], ["https://data.delijn.be/stops/404229", "https://data.delijn.be/stops/409601"], ["https://data.delijn.be/stops/501074", "https://data.delijn.be/stops/501076"], ["https://data.delijn.be/stops/302020", "https://data.delijn.be/stops/302055"], ["https://data.delijn.be/stops/501461", "https://data.delijn.be/stops/501541"], ["https://data.delijn.be/stops/103284", "https://data.delijn.be/stops/106130"], ["https://data.delijn.be/stops/204676", "https://data.delijn.be/stops/205314"], ["https://data.delijn.be/stops/503669", "https://data.delijn.be/stops/505135"], ["https://data.delijn.be/stops/200637", "https://data.delijn.be/stops/201940"], ["https://data.delijn.be/stops/408503", "https://data.delijn.be/stops/408511"], ["https://data.delijn.be/stops/206753", "https://data.delijn.be/stops/208500"], ["https://data.delijn.be/stops/503055", "https://data.delijn.be/stops/508053"], ["https://data.delijn.be/stops/407466", "https://data.delijn.be/stops/407467"], ["https://data.delijn.be/stops/208744", "https://data.delijn.be/stops/208745"], ["https://data.delijn.be/stops/200636", "https://data.delijn.be/stops/201941"], ["https://data.delijn.be/stops/200531", "https://data.delijn.be/stops/211079"], ["https://data.delijn.be/stops/505302", "https://data.delijn.be/stops/505303"], ["https://data.delijn.be/stops/307383", "https://data.delijn.be/stops/308274"], ["https://data.delijn.be/stops/504162", "https://data.delijn.be/stops/509162"], ["https://data.delijn.be/stops/104039", "https://data.delijn.be/stops/108453"], ["https://data.delijn.be/stops/105329", "https://data.delijn.be/stops/204024"], ["https://data.delijn.be/stops/300365", "https://data.delijn.be/stops/300370"], ["https://data.delijn.be/stops/300634", "https://data.delijn.be/stops/308457"], ["https://data.delijn.be/stops/201184", "https://data.delijn.be/stops/201240"], ["https://data.delijn.be/stops/409356", "https://data.delijn.be/stops/409361"], ["https://data.delijn.be/stops/400562", "https://data.delijn.be/stops/400563"], ["https://data.delijn.be/stops/502706", "https://data.delijn.be/stops/507706"], ["https://data.delijn.be/stops/102931", "https://data.delijn.be/stops/105775"], ["https://data.delijn.be/stops/401482", "https://data.delijn.be/stops/402030"], ["https://data.delijn.be/stops/204745", "https://data.delijn.be/stops/205424"], ["https://data.delijn.be/stops/101446", "https://data.delijn.be/stops/107059"], ["https://data.delijn.be/stops/308244", "https://data.delijn.be/stops/308248"], ["https://data.delijn.be/stops/201271", "https://data.delijn.be/stops/201372"], ["https://data.delijn.be/stops/407656", "https://data.delijn.be/stops/407735"], ["https://data.delijn.be/stops/201681", "https://data.delijn.be/stops/203809"], ["https://data.delijn.be/stops/202848", "https://data.delijn.be/stops/218001"], ["https://data.delijn.be/stops/502056", "https://data.delijn.be/stops/502914"], ["https://data.delijn.be/stops/300741", "https://data.delijn.be/stops/300785"], ["https://data.delijn.be/stops/405904", "https://data.delijn.be/stops/405928"], ["https://data.delijn.be/stops/206137", "https://data.delijn.be/stops/206471"], ["https://data.delijn.be/stops/204925", "https://data.delijn.be/stops/205925"], ["https://data.delijn.be/stops/209979", "https://data.delijn.be/stops/215003"], ["https://data.delijn.be/stops/104854", "https://data.delijn.be/stops/107907"], ["https://data.delijn.be/stops/203717", "https://data.delijn.be/stops/210434"], ["https://data.delijn.be/stops/503450", "https://data.delijn.be/stops/508450"], ["https://data.delijn.be/stops/400814", "https://data.delijn.be/stops/403573"], ["https://data.delijn.be/stops/301313", "https://data.delijn.be/stops/301912"], ["https://data.delijn.be/stops/505719", "https://data.delijn.be/stops/508490"], ["https://data.delijn.be/stops/400601", "https://data.delijn.be/stops/400629"], ["https://data.delijn.be/stops/303081", "https://data.delijn.be/stops/303112"], ["https://data.delijn.be/stops/501307", "https://data.delijn.be/stops/501520"], ["https://data.delijn.be/stops/208525", "https://data.delijn.be/stops/218017"], ["https://data.delijn.be/stops/505286", "https://data.delijn.be/stops/508328"], ["https://data.delijn.be/stops/308489", "https://data.delijn.be/stops/308521"], ["https://data.delijn.be/stops/307081", "https://data.delijn.be/stops/307529"], ["https://data.delijn.be/stops/504031", "https://data.delijn.be/stops/509030"], ["https://data.delijn.be/stops/302228", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/207148", "https://data.delijn.be/stops/207149"], ["https://data.delijn.be/stops/108460", "https://data.delijn.be/stops/108955"], ["https://data.delijn.be/stops/502292", "https://data.delijn.be/stops/507298"], ["https://data.delijn.be/stops/407910", "https://data.delijn.be/stops/407986"], ["https://data.delijn.be/stops/200023", "https://data.delijn.be/stops/211094"], ["https://data.delijn.be/stops/206301", "https://data.delijn.be/stops/207354"], ["https://data.delijn.be/stops/405234", "https://data.delijn.be/stops/405235"], ["https://data.delijn.be/stops/101083", "https://data.delijn.be/stops/101084"], ["https://data.delijn.be/stops/208044", "https://data.delijn.be/stops/209044"], ["https://data.delijn.be/stops/104482", "https://data.delijn.be/stops/307898"], ["https://data.delijn.be/stops/101160", "https://data.delijn.be/stops/101545"], ["https://data.delijn.be/stops/503503", "https://data.delijn.be/stops/508501"], ["https://data.delijn.be/stops/101825", "https://data.delijn.be/stops/104285"], ["https://data.delijn.be/stops/202030", "https://data.delijn.be/stops/202031"], ["https://data.delijn.be/stops/204316", "https://data.delijn.be/stops/204678"], ["https://data.delijn.be/stops/106800", "https://data.delijn.be/stops/106868"], ["https://data.delijn.be/stops/106227", "https://data.delijn.be/stops/106228"], ["https://data.delijn.be/stops/509545", "https://data.delijn.be/stops/509551"], ["https://data.delijn.be/stops/203196", "https://data.delijn.be/stops/203199"], ["https://data.delijn.be/stops/202413", "https://data.delijn.be/stops/202414"], ["https://data.delijn.be/stops/305456", "https://data.delijn.be/stops/306637"], ["https://data.delijn.be/stops/303587", "https://data.delijn.be/stops/303590"], ["https://data.delijn.be/stops/504948", "https://data.delijn.be/stops/508699"], ["https://data.delijn.be/stops/402895", "https://data.delijn.be/stops/302614"], ["https://data.delijn.be/stops/401766", "https://data.delijn.be/stops/401826"], ["https://data.delijn.be/stops/402524", "https://data.delijn.be/stops/402600"], ["https://data.delijn.be/stops/102469", "https://data.delijn.be/stops/406848"], ["https://data.delijn.be/stops/403619", "https://data.delijn.be/stops/403648"], ["https://data.delijn.be/stops/102187", "https://data.delijn.be/stops/505600"], ["https://data.delijn.be/stops/400352", "https://data.delijn.be/stops/400387"], ["https://data.delijn.be/stops/103212", "https://data.delijn.be/stops/106285"], ["https://data.delijn.be/stops/401794", "https://data.delijn.be/stops/401847"], ["https://data.delijn.be/stops/107232", "https://data.delijn.be/stops/109887"], ["https://data.delijn.be/stops/303949", "https://data.delijn.be/stops/304177"], ["https://data.delijn.be/stops/101024", "https://data.delijn.be/stops/101991"], ["https://data.delijn.be/stops/208800", "https://data.delijn.be/stops/208838"], ["https://data.delijn.be/stops/401106", "https://data.delijn.be/stops/401158"], ["https://data.delijn.be/stops/109459", "https://data.delijn.be/stops/109460"], ["https://data.delijn.be/stops/109843", "https://data.delijn.be/stops/109845"], ["https://data.delijn.be/stops/209111", "https://data.delijn.be/stops/219009"], ["https://data.delijn.be/stops/106607", "https://data.delijn.be/stops/109649"], ["https://data.delijn.be/stops/201539", "https://data.delijn.be/stops/201540"], ["https://data.delijn.be/stops/402496", "https://data.delijn.be/stops/402497"], ["https://data.delijn.be/stops/103040", "https://data.delijn.be/stops/106050"], ["https://data.delijn.be/stops/305116", "https://data.delijn.be/stops/305126"], ["https://data.delijn.be/stops/409437", "https://data.delijn.be/stops/409698"], ["https://data.delijn.be/stops/406220", "https://data.delijn.be/stops/406238"], ["https://data.delijn.be/stops/304760", "https://data.delijn.be/stops/304778"], ["https://data.delijn.be/stops/303856", "https://data.delijn.be/stops/303866"], ["https://data.delijn.be/stops/503302", "https://data.delijn.be/stops/503309"], ["https://data.delijn.be/stops/101484", "https://data.delijn.be/stops/108746"], ["https://data.delijn.be/stops/102090", "https://data.delijn.be/stops/105285"], ["https://data.delijn.be/stops/305054", "https://data.delijn.be/stops/305179"], ["https://data.delijn.be/stops/404443", "https://data.delijn.be/stops/405846"], ["https://data.delijn.be/stops/407613", "https://data.delijn.be/stops/407645"], ["https://data.delijn.be/stops/101173", "https://data.delijn.be/stops/103510"], ["https://data.delijn.be/stops/300208", "https://data.delijn.be/stops/307112"], ["https://data.delijn.be/stops/204207", "https://data.delijn.be/stops/205472"], ["https://data.delijn.be/stops/402526", "https://data.delijn.be/stops/404064"], ["https://data.delijn.be/stops/502370", "https://data.delijn.be/stops/507370"], ["https://data.delijn.be/stops/304500", "https://data.delijn.be/stops/307255"], ["https://data.delijn.be/stops/210011", "https://data.delijn.be/stops/502276"], ["https://data.delijn.be/stops/300774", "https://data.delijn.be/stops/300787"], ["https://data.delijn.be/stops/103238", "https://data.delijn.be/stops/107856"], ["https://data.delijn.be/stops/204318", "https://data.delijn.be/stops/205318"], ["https://data.delijn.be/stops/203831", "https://data.delijn.be/stops/211048"], ["https://data.delijn.be/stops/406956", "https://data.delijn.be/stops/406966"], ["https://data.delijn.be/stops/101235", "https://data.delijn.be/stops/102733"], ["https://data.delijn.be/stops/206735", "https://data.delijn.be/stops/207617"], ["https://data.delijn.be/stops/405715", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/403125", "https://data.delijn.be/stops/403126"], ["https://data.delijn.be/stops/504792", "https://data.delijn.be/stops/508153"], ["https://data.delijn.be/stops/200007", "https://data.delijn.be/stops/203297"], ["https://data.delijn.be/stops/403736", "https://data.delijn.be/stops/403737"], ["https://data.delijn.be/stops/504678", "https://data.delijn.be/stops/504679"], ["https://data.delijn.be/stops/301496", "https://data.delijn.be/stops/301497"], ["https://data.delijn.be/stops/404861", "https://data.delijn.be/stops/404865"], ["https://data.delijn.be/stops/303644", "https://data.delijn.be/stops/303645"], ["https://data.delijn.be/stops/301239", "https://data.delijn.be/stops/308759"], ["https://data.delijn.be/stops/507105", "https://data.delijn.be/stops/507604"], ["https://data.delijn.be/stops/402133", "https://data.delijn.be/stops/402142"], ["https://data.delijn.be/stops/200371", "https://data.delijn.be/stops/200372"], ["https://data.delijn.be/stops/102679", "https://data.delijn.be/stops/308817"], ["https://data.delijn.be/stops/303643", "https://data.delijn.be/stops/304521"], ["https://data.delijn.be/stops/101885", "https://data.delijn.be/stops/104825"], ["https://data.delijn.be/stops/203136", "https://data.delijn.be/stops/203450"], ["https://data.delijn.be/stops/301097", "https://data.delijn.be/stops/306667"], ["https://data.delijn.be/stops/204664", "https://data.delijn.be/stops/204688"], ["https://data.delijn.be/stops/103167", "https://data.delijn.be/stops/104093"], ["https://data.delijn.be/stops/505382", "https://data.delijn.be/stops/508101"], ["https://data.delijn.be/stops/200208", "https://data.delijn.be/stops/201943"], ["https://data.delijn.be/stops/204448", "https://data.delijn.be/stops/205310"], ["https://data.delijn.be/stops/504367", "https://data.delijn.be/stops/509372"], ["https://data.delijn.be/stops/206201", "https://data.delijn.be/stops/206368"], ["https://data.delijn.be/stops/202886", "https://data.delijn.be/stops/206998"], ["https://data.delijn.be/stops/302331", "https://data.delijn.be/stops/302333"], ["https://data.delijn.be/stops/101506", "https://data.delijn.be/stops/101509"], ["https://data.delijn.be/stops/201387", "https://data.delijn.be/stops/202647"], ["https://data.delijn.be/stops/502490", "https://data.delijn.be/stops/507490"], ["https://data.delijn.be/stops/106750", "https://data.delijn.be/stops/106752"], ["https://data.delijn.be/stops/502306", "https://data.delijn.be/stops/507316"], ["https://data.delijn.be/stops/102851", "https://data.delijn.be/stops/106777"], ["https://data.delijn.be/stops/501319", "https://data.delijn.be/stops/501523"], ["https://data.delijn.be/stops/306667", "https://data.delijn.be/stops/306680"], ["https://data.delijn.be/stops/406168", "https://data.delijn.be/stops/406169"], ["https://data.delijn.be/stops/504173", "https://data.delijn.be/stops/509173"], ["https://data.delijn.be/stops/103991", "https://data.delijn.be/stops/103992"], ["https://data.delijn.be/stops/509572", "https://data.delijn.be/stops/509574"], ["https://data.delijn.be/stops/303533", "https://data.delijn.be/stops/303568"], ["https://data.delijn.be/stops/206001", "https://data.delijn.be/stops/206523"], ["https://data.delijn.be/stops/505024", "https://data.delijn.be/stops/507010"], ["https://data.delijn.be/stops/400218", "https://data.delijn.be/stops/400221"], ["https://data.delijn.be/stops/104858", "https://data.delijn.be/stops/107931"], ["https://data.delijn.be/stops/406882", "https://data.delijn.be/stops/409739"], ["https://data.delijn.be/stops/209560", "https://data.delijn.be/stops/209691"], ["https://data.delijn.be/stops/407556", "https://data.delijn.be/stops/407557"], ["https://data.delijn.be/stops/209955", "https://data.delijn.be/stops/209970"], ["https://data.delijn.be/stops/202546", "https://data.delijn.be/stops/203545"], ["https://data.delijn.be/stops/206130", "https://data.delijn.be/stops/206140"], ["https://data.delijn.be/stops/208089", "https://data.delijn.be/stops/209089"], ["https://data.delijn.be/stops/306591", "https://data.delijn.be/stops/308442"], ["https://data.delijn.be/stops/301635", "https://data.delijn.be/stops/301636"], ["https://data.delijn.be/stops/302013", "https://data.delijn.be/stops/307285"], ["https://data.delijn.be/stops/303713", "https://data.delijn.be/stops/307259"], ["https://data.delijn.be/stops/107925", "https://data.delijn.be/stops/108835"], ["https://data.delijn.be/stops/109848", "https://data.delijn.be/stops/109853"], ["https://data.delijn.be/stops/107882", "https://data.delijn.be/stops/107883"], ["https://data.delijn.be/stops/208235", "https://data.delijn.be/stops/208236"], ["https://data.delijn.be/stops/204303", "https://data.delijn.be/stops/205312"], ["https://data.delijn.be/stops/305698", "https://data.delijn.be/stops/306308"], ["https://data.delijn.be/stops/303773", "https://data.delijn.be/stops/303806"], ["https://data.delijn.be/stops/204128", "https://data.delijn.be/stops/205132"], ["https://data.delijn.be/stops/504767", "https://data.delijn.be/stops/508527"], ["https://data.delijn.be/stops/400810", "https://data.delijn.be/stops/403586"], ["https://data.delijn.be/stops/401777", "https://data.delijn.be/stops/401836"], ["https://data.delijn.be/stops/308673", "https://data.delijn.be/stops/308675"], ["https://data.delijn.be/stops/303460", "https://data.delijn.be/stops/303485"], ["https://data.delijn.be/stops/507447", "https://data.delijn.be/stops/507661"], ["https://data.delijn.be/stops/304153", "https://data.delijn.be/stops/306067"], ["https://data.delijn.be/stops/402493", "https://data.delijn.be/stops/406884"], ["https://data.delijn.be/stops/107618", "https://data.delijn.be/stops/108094"], ["https://data.delijn.be/stops/409095", "https://data.delijn.be/stops/409221"], ["https://data.delijn.be/stops/209101", "https://data.delijn.be/stops/218005"], ["https://data.delijn.be/stops/205737", "https://data.delijn.be/stops/205757"], ["https://data.delijn.be/stops/107594", "https://data.delijn.be/stops/107596"], ["https://data.delijn.be/stops/202738", "https://data.delijn.be/stops/203739"], ["https://data.delijn.be/stops/503874", "https://data.delijn.be/stops/508874"], ["https://data.delijn.be/stops/507952", "https://data.delijn.be/stops/508848"], ["https://data.delijn.be/stops/307416", "https://data.delijn.be/stops/307417"], ["https://data.delijn.be/stops/204660", "https://data.delijn.be/stops/205661"], ["https://data.delijn.be/stops/408694", "https://data.delijn.be/stops/408697"], ["https://data.delijn.be/stops/202209", "https://data.delijn.be/stops/203211"], ["https://data.delijn.be/stops/204294", "https://data.delijn.be/stops/204327"], ["https://data.delijn.be/stops/304889", "https://data.delijn.be/stops/306710"], ["https://data.delijn.be/stops/407399", "https://data.delijn.be/stops/409861"], ["https://data.delijn.be/stops/405968", "https://data.delijn.be/stops/410256"], ["https://data.delijn.be/stops/401402", "https://data.delijn.be/stops/410153"], ["https://data.delijn.be/stops/200668", "https://data.delijn.be/stops/211019"], ["https://data.delijn.be/stops/407800", "https://data.delijn.be/stops/407806"], ["https://data.delijn.be/stops/400676", "https://data.delijn.be/stops/402628"], ["https://data.delijn.be/stops/204332", "https://data.delijn.be/stops/205817"], ["https://data.delijn.be/stops/401131", "https://data.delijn.be/stops/401134"], ["https://data.delijn.be/stops/106623", "https://data.delijn.be/stops/108017"], ["https://data.delijn.be/stops/205399", "https://data.delijn.be/stops/205411"], ["https://data.delijn.be/stops/502929", "https://data.delijn.be/stops/503730"], ["https://data.delijn.be/stops/400091", "https://data.delijn.be/stops/409207"], ["https://data.delijn.be/stops/305712", "https://data.delijn.be/stops/306303"], ["https://data.delijn.be/stops/504524", "https://data.delijn.be/stops/509524"], ["https://data.delijn.be/stops/107459", "https://data.delijn.be/stops/109193"], ["https://data.delijn.be/stops/103684", "https://data.delijn.be/stops/106315"], ["https://data.delijn.be/stops/206575", "https://data.delijn.be/stops/207575"], ["https://data.delijn.be/stops/503068", "https://data.delijn.be/stops/503238"], ["https://data.delijn.be/stops/502748", "https://data.delijn.be/stops/505694"], ["https://data.delijn.be/stops/505543", "https://data.delijn.be/stops/508809"], ["https://data.delijn.be/stops/202869", "https://data.delijn.be/stops/203869"], ["https://data.delijn.be/stops/404880", "https://data.delijn.be/stops/404882"], ["https://data.delijn.be/stops/406510", "https://data.delijn.be/stops/406511"], ["https://data.delijn.be/stops/202212", "https://data.delijn.be/stops/202775"], ["https://data.delijn.be/stops/407020", "https://data.delijn.be/stops/308741"], ["https://data.delijn.be/stops/103590", "https://data.delijn.be/stops/109427"], ["https://data.delijn.be/stops/503547", "https://data.delijn.be/stops/503572"], ["https://data.delijn.be/stops/503089", "https://data.delijn.be/stops/507620"], ["https://data.delijn.be/stops/306312", "https://data.delijn.be/stops/306313"], ["https://data.delijn.be/stops/201516", "https://data.delijn.be/stops/209737"], ["https://data.delijn.be/stops/101191", "https://data.delijn.be/stops/101206"], ["https://data.delijn.be/stops/204684", "https://data.delijn.be/stops/205683"], ["https://data.delijn.be/stops/102053", "https://data.delijn.be/stops/102412"], ["https://data.delijn.be/stops/503651", "https://data.delijn.be/stops/508116"], ["https://data.delijn.be/stops/109018", "https://data.delijn.be/stops/109019"], ["https://data.delijn.be/stops/201803", "https://data.delijn.be/stops/201819"], ["https://data.delijn.be/stops/409801", "https://data.delijn.be/stops/410193"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/103573"], ["https://data.delijn.be/stops/303663", "https://data.delijn.be/stops/304946"], ["https://data.delijn.be/stops/404366", "https://data.delijn.be/stops/404367"], ["https://data.delijn.be/stops/300234", "https://data.delijn.be/stops/306655"], ["https://data.delijn.be/stops/306905", "https://data.delijn.be/stops/306906"], ["https://data.delijn.be/stops/404222", "https://data.delijn.be/stops/404242"], ["https://data.delijn.be/stops/506086", "https://data.delijn.be/stops/506439"], ["https://data.delijn.be/stops/202508", "https://data.delijn.be/stops/203001"], ["https://data.delijn.be/stops/107502", "https://data.delijn.be/stops/107528"], ["https://data.delijn.be/stops/405714", "https://data.delijn.be/stops/405715"], ["https://data.delijn.be/stops/102388", "https://data.delijn.be/stops/109918"], ["https://data.delijn.be/stops/307387", "https://data.delijn.be/stops/307390"], ["https://data.delijn.be/stops/404768", "https://data.delijn.be/stops/404769"], ["https://data.delijn.be/stops/300191", "https://data.delijn.be/stops/300632"], ["https://data.delijn.be/stops/101273", "https://data.delijn.be/stops/102006"], ["https://data.delijn.be/stops/501134", "https://data.delijn.be/stops/506102"], ["https://data.delijn.be/stops/103968", "https://data.delijn.be/stops/106017"], ["https://data.delijn.be/stops/207435", "https://data.delijn.be/stops/209689"], ["https://data.delijn.be/stops/101240", "https://data.delijn.be/stops/103973"], ["https://data.delijn.be/stops/106801", "https://data.delijn.be/stops/106871"], ["https://data.delijn.be/stops/300120", "https://data.delijn.be/stops/300131"], ["https://data.delijn.be/stops/503893", "https://data.delijn.be/stops/505641"], ["https://data.delijn.be/stops/504420", "https://data.delijn.be/stops/504421"], ["https://data.delijn.be/stops/106608", "https://data.delijn.be/stops/106609"], ["https://data.delijn.be/stops/404236", "https://data.delijn.be/stops/404247"], ["https://data.delijn.be/stops/204656", "https://data.delijn.be/stops/205671"], ["https://data.delijn.be/stops/102457", "https://data.delijn.be/stops/406848"], ["https://data.delijn.be/stops/508228", "https://data.delijn.be/stops/508229"], ["https://data.delijn.be/stops/302131", "https://data.delijn.be/stops/307799"], ["https://data.delijn.be/stops/301110", "https://data.delijn.be/stops/307635"], ["https://data.delijn.be/stops/203623", "https://data.delijn.be/stops/203624"], ["https://data.delijn.be/stops/200830", "https://data.delijn.be/stops/200831"], ["https://data.delijn.be/stops/103627", "https://data.delijn.be/stops/103648"], ["https://data.delijn.be/stops/302906", "https://data.delijn.be/stops/304328"], ["https://data.delijn.be/stops/302253", "https://data.delijn.be/stops/302267"], ["https://data.delijn.be/stops/409220", "https://data.delijn.be/stops/409221"], ["https://data.delijn.be/stops/101551", "https://data.delijn.be/stops/101552"], ["https://data.delijn.be/stops/104517", "https://data.delijn.be/stops/104583"], ["https://data.delijn.be/stops/104042", "https://data.delijn.be/stops/109702"], ["https://data.delijn.be/stops/200776", "https://data.delijn.be/stops/208303"], ["https://data.delijn.be/stops/102867", "https://data.delijn.be/stops/106154"], ["https://data.delijn.be/stops/205736", "https://data.delijn.be/stops/205757"], ["https://data.delijn.be/stops/406940", "https://data.delijn.be/stops/409476"], ["https://data.delijn.be/stops/206726", "https://data.delijn.be/stops/307028"], ["https://data.delijn.be/stops/200180", "https://data.delijn.be/stops/201195"], ["https://data.delijn.be/stops/208203", "https://data.delijn.be/stops/209779"], ["https://data.delijn.be/stops/403274", "https://data.delijn.be/stops/403275"], ["https://data.delijn.be/stops/302218", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/503239", "https://data.delijn.be/stops/508262"], ["https://data.delijn.be/stops/206587", "https://data.delijn.be/stops/206840"], ["https://data.delijn.be/stops/406009", "https://data.delijn.be/stops/406815"], ["https://data.delijn.be/stops/304050", "https://data.delijn.be/stops/304085"], ["https://data.delijn.be/stops/409052", "https://data.delijn.be/stops/409157"], ["https://data.delijn.be/stops/308164", "https://data.delijn.be/stops/308227"], ["https://data.delijn.be/stops/107396", "https://data.delijn.be/stops/107398"], ["https://data.delijn.be/stops/105054", "https://data.delijn.be/stops/304040"], ["https://data.delijn.be/stops/501005", "https://data.delijn.be/stops/506496"], ["https://data.delijn.be/stops/404584", "https://data.delijn.be/stops/404585"], ["https://data.delijn.be/stops/104491", "https://data.delijn.be/stops/104585"], ["https://data.delijn.be/stops/202469", "https://data.delijn.be/stops/203469"], ["https://data.delijn.be/stops/103186", "https://data.delijn.be/stops/108570"], ["https://data.delijn.be/stops/201506", "https://data.delijn.be/stops/201552"], ["https://data.delijn.be/stops/403831", "https://data.delijn.be/stops/410118"], ["https://data.delijn.be/stops/502166", "https://data.delijn.be/stops/507153"], ["https://data.delijn.be/stops/203481", "https://data.delijn.be/stops/207933"], ["https://data.delijn.be/stops/403055", "https://data.delijn.be/stops/410247"], ["https://data.delijn.be/stops/207668", "https://data.delijn.be/stops/217004"], ["https://data.delijn.be/stops/301535", "https://data.delijn.be/stops/304701"], ["https://data.delijn.be/stops/102756", "https://data.delijn.be/stops/103342"], ["https://data.delijn.be/stops/106251", "https://data.delijn.be/stops/106604"], ["https://data.delijn.be/stops/206539", "https://data.delijn.be/stops/207559"], ["https://data.delijn.be/stops/404440", "https://data.delijn.be/stops/404467"], ["https://data.delijn.be/stops/201979", "https://data.delijn.be/stops/208090"], ["https://data.delijn.be/stops/206706", "https://data.delijn.be/stops/206975"], ["https://data.delijn.be/stops/202739", "https://data.delijn.be/stops/206537"], ["https://data.delijn.be/stops/204986", "https://data.delijn.be/stops/209392"], ["https://data.delijn.be/stops/203861", "https://data.delijn.be/stops/208701"], ["https://data.delijn.be/stops/502550", "https://data.delijn.be/stops/507674"], ["https://data.delijn.be/stops/105367", "https://data.delijn.be/stops/105392"], ["https://data.delijn.be/stops/109136", "https://data.delijn.be/stops/109137"], ["https://data.delijn.be/stops/400115", "https://data.delijn.be/stops/407375"], ["https://data.delijn.be/stops/408560", "https://data.delijn.be/stops/408619"], ["https://data.delijn.be/stops/306870", "https://data.delijn.be/stops/307070"], ["https://data.delijn.be/stops/301553", "https://data.delijn.be/stops/308087"], ["https://data.delijn.be/stops/303134", "https://data.delijn.be/stops/306086"], ["https://data.delijn.be/stops/502307", "https://data.delijn.be/stops/505673"], ["https://data.delijn.be/stops/405863", "https://data.delijn.be/stops/408154"], ["https://data.delijn.be/stops/202380", "https://data.delijn.be/stops/203379"], ["https://data.delijn.be/stops/301555", "https://data.delijn.be/stops/301579"], ["https://data.delijn.be/stops/405734", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/403159", "https://data.delijn.be/stops/403211"], ["https://data.delijn.be/stops/103049", "https://data.delijn.be/stops/103535"], ["https://data.delijn.be/stops/503340", "https://data.delijn.be/stops/508343"], ["https://data.delijn.be/stops/101674", "https://data.delijn.be/stops/103156"], ["https://data.delijn.be/stops/502564", "https://data.delijn.be/stops/507361"], ["https://data.delijn.be/stops/306694", "https://data.delijn.be/stops/308925"], ["https://data.delijn.be/stops/400106", "https://data.delijn.be/stops/409144"], ["https://data.delijn.be/stops/206256", "https://data.delijn.be/stops/207996"], ["https://data.delijn.be/stops/104950", "https://data.delijn.be/stops/104955"], ["https://data.delijn.be/stops/504145", "https://data.delijn.be/stops/509386"], ["https://data.delijn.be/stops/503842", "https://data.delijn.be/stops/508857"], ["https://data.delijn.be/stops/408568", "https://data.delijn.be/stops/408570"], ["https://data.delijn.be/stops/503423", "https://data.delijn.be/stops/508416"], ["https://data.delijn.be/stops/305101", "https://data.delijn.be/stops/305110"], ["https://data.delijn.be/stops/502224", "https://data.delijn.be/stops/502563"], ["https://data.delijn.be/stops/302548", "https://data.delijn.be/stops/306589"], ["https://data.delijn.be/stops/405895", "https://data.delijn.be/stops/308203"], ["https://data.delijn.be/stops/202570", "https://data.delijn.be/stops/204942"], ["https://data.delijn.be/stops/206275", "https://data.delijn.be/stops/207968"], ["https://data.delijn.be/stops/507423", "https://data.delijn.be/stops/507427"], ["https://data.delijn.be/stops/202452", "https://data.delijn.be/stops/203452"], ["https://data.delijn.be/stops/304809", "https://data.delijn.be/stops/304810"], ["https://data.delijn.be/stops/202327", "https://data.delijn.be/stops/202426"], ["https://data.delijn.be/stops/407858", "https://data.delijn.be/stops/408023"], ["https://data.delijn.be/stops/502359", "https://data.delijn.be/stops/502679"], ["https://data.delijn.be/stops/403396", "https://data.delijn.be/stops/403561"], ["https://data.delijn.be/stops/301085", "https://data.delijn.be/stops/306159"], ["https://data.delijn.be/stops/206763", "https://data.delijn.be/stops/206792"], ["https://data.delijn.be/stops/108373", "https://data.delijn.be/stops/108376"], ["https://data.delijn.be/stops/501423", "https://data.delijn.be/stops/501425"], ["https://data.delijn.be/stops/509175", "https://data.delijn.be/stops/509475"], ["https://data.delijn.be/stops/204109", "https://data.delijn.be/stops/204116"], ["https://data.delijn.be/stops/101331", "https://data.delijn.be/stops/106631"], ["https://data.delijn.be/stops/400238", "https://data.delijn.be/stops/409356"], ["https://data.delijn.be/stops/108074", "https://data.delijn.be/stops/108446"], ["https://data.delijn.be/stops/109316", "https://data.delijn.be/stops/109352"], ["https://data.delijn.be/stops/201979", "https://data.delijn.be/stops/209846"], ["https://data.delijn.be/stops/308102", "https://data.delijn.be/stops/308103"], ["https://data.delijn.be/stops/201900", "https://data.delijn.be/stops/211001"], ["https://data.delijn.be/stops/509464", "https://data.delijn.be/stops/509465"], ["https://data.delijn.be/stops/109201", "https://data.delijn.be/stops/109203"], ["https://data.delijn.be/stops/206014", "https://data.delijn.be/stops/207020"], ["https://data.delijn.be/stops/303620", "https://data.delijn.be/stops/306705"], ["https://data.delijn.be/stops/106484", "https://data.delijn.be/stops/106486"], ["https://data.delijn.be/stops/203116", "https://data.delijn.be/stops/205593"], ["https://data.delijn.be/stops/107444", "https://data.delijn.be/stops/109645"], ["https://data.delijn.be/stops/302282", "https://data.delijn.be/stops/302286"], ["https://data.delijn.be/stops/504238", "https://data.delijn.be/stops/509822"], ["https://data.delijn.be/stops/403947", "https://data.delijn.be/stops/407056"], ["https://data.delijn.be/stops/502526", "https://data.delijn.be/stops/507551"], ["https://data.delijn.be/stops/207677", "https://data.delijn.be/stops/209133"], ["https://data.delijn.be/stops/503071", "https://data.delijn.be/stops/508167"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/214018"], ["https://data.delijn.be/stops/102618", "https://data.delijn.be/stops/102619"], ["https://data.delijn.be/stops/204821", "https://data.delijn.be/stops/205506"], ["https://data.delijn.be/stops/307807", "https://data.delijn.be/stops/307808"], ["https://data.delijn.be/stops/501086", "https://data.delijn.be/stops/506086"], ["https://data.delijn.be/stops/101396", "https://data.delijn.be/stops/106518"], ["https://data.delijn.be/stops/105014", "https://data.delijn.be/stops/105112"], ["https://data.delijn.be/stops/101171", "https://data.delijn.be/stops/101172"], ["https://data.delijn.be/stops/301526", "https://data.delijn.be/stops/301527"], ["https://data.delijn.be/stops/402042", "https://data.delijn.be/stops/410079"], ["https://data.delijn.be/stops/505958", "https://data.delijn.be/stops/508287"], ["https://data.delijn.be/stops/105638", "https://data.delijn.be/stops/105817"], ["https://data.delijn.be/stops/204302", "https://data.delijn.be/stops/205303"], ["https://data.delijn.be/stops/304098", "https://data.delijn.be/stops/304099"], ["https://data.delijn.be/stops/108363", "https://data.delijn.be/stops/108364"], ["https://data.delijn.be/stops/509396", "https://data.delijn.be/stops/509397"], ["https://data.delijn.be/stops/204041", "https://data.delijn.be/stops/204042"], ["https://data.delijn.be/stops/408263", "https://data.delijn.be/stops/408283"], ["https://data.delijn.be/stops/300768", "https://data.delijn.be/stops/306115"], ["https://data.delijn.be/stops/207545", "https://data.delijn.be/stops/207550"], ["https://data.delijn.be/stops/101836", "https://data.delijn.be/stops/108234"], ["https://data.delijn.be/stops/505781", "https://data.delijn.be/stops/506146"], ["https://data.delijn.be/stops/408338", "https://data.delijn.be/stops/408382"], ["https://data.delijn.be/stops/502183", "https://data.delijn.be/stops/502187"], ["https://data.delijn.be/stops/504571", "https://data.delijn.be/stops/509413"], ["https://data.delijn.be/stops/200712", "https://data.delijn.be/stops/215018"], ["https://data.delijn.be/stops/107593", "https://data.delijn.be/stops/107664"], ["https://data.delijn.be/stops/506036", "https://data.delijn.be/stops/506058"], ["https://data.delijn.be/stops/302336", "https://data.delijn.be/stops/302337"], ["https://data.delijn.be/stops/501395", "https://data.delijn.be/stops/501512"], ["https://data.delijn.be/stops/403654", "https://data.delijn.be/stops/407345"], ["https://data.delijn.be/stops/101927", "https://data.delijn.be/stops/107007"], ["https://data.delijn.be/stops/402546", "https://data.delijn.be/stops/402551"], ["https://data.delijn.be/stops/503895", "https://data.delijn.be/stops/505980"], ["https://data.delijn.be/stops/504471", "https://data.delijn.be/stops/509107"], ["https://data.delijn.be/stops/302085", "https://data.delijn.be/stops/302087"], ["https://data.delijn.be/stops/202308", "https://data.delijn.be/stops/202309"], ["https://data.delijn.be/stops/401089", "https://data.delijn.be/stops/401153"], ["https://data.delijn.be/stops/400082", "https://data.delijn.be/stops/400119"], ["https://data.delijn.be/stops/404503", "https://data.delijn.be/stops/404584"], ["https://data.delijn.be/stops/404741", "https://data.delijn.be/stops/404751"], ["https://data.delijn.be/stops/108283", "https://data.delijn.be/stops/109342"], ["https://data.delijn.be/stops/509173", "https://data.delijn.be/stops/509741"], ["https://data.delijn.be/stops/103249", "https://data.delijn.be/stops/107335"], ["https://data.delijn.be/stops/108070", "https://data.delijn.be/stops/108160"], ["https://data.delijn.be/stops/101531", "https://data.delijn.be/stops/102587"], ["https://data.delijn.be/stops/302736", "https://data.delijn.be/stops/307456"], ["https://data.delijn.be/stops/103014", "https://data.delijn.be/stops/108314"], ["https://data.delijn.be/stops/303613", "https://data.delijn.be/stops/304697"], ["https://data.delijn.be/stops/508534", "https://data.delijn.be/stops/508966"], ["https://data.delijn.be/stops/202678", "https://data.delijn.be/stops/203690"], ["https://data.delijn.be/stops/301296", "https://data.delijn.be/stops/304692"], ["https://data.delijn.be/stops/102579", "https://data.delijn.be/stops/102583"], ["https://data.delijn.be/stops/501217", "https://data.delijn.be/stops/501218"], ["https://data.delijn.be/stops/108107", "https://data.delijn.be/stops/108108"], ["https://data.delijn.be/stops/102323", "https://data.delijn.be/stops/505600"], ["https://data.delijn.be/stops/401635", "https://data.delijn.be/stops/308209"], ["https://data.delijn.be/stops/204020", "https://data.delijn.be/stops/205023"], ["https://data.delijn.be/stops/107314", "https://data.delijn.be/stops/108809"], ["https://data.delijn.be/stops/104958", "https://data.delijn.be/stops/108969"], ["https://data.delijn.be/stops/206771", "https://data.delijn.be/stops/208543"], ["https://data.delijn.be/stops/102821", "https://data.delijn.be/stops/102822"], ["https://data.delijn.be/stops/504522", "https://data.delijn.be/stops/505372"], ["https://data.delijn.be/stops/405128", "https://data.delijn.be/stops/405129"], ["https://data.delijn.be/stops/308854", "https://data.delijn.be/stops/308856"], ["https://data.delijn.be/stops/308462", "https://data.delijn.be/stops/308467"], ["https://data.delijn.be/stops/400045", "https://data.delijn.be/stops/400320"], ["https://data.delijn.be/stops/400374", "https://data.delijn.be/stops/408809"], ["https://data.delijn.be/stops/505173", "https://data.delijn.be/stops/505413"], ["https://data.delijn.be/stops/407862", "https://data.delijn.be/stops/407865"], ["https://data.delijn.be/stops/501264", "https://data.delijn.be/stops/501359"], ["https://data.delijn.be/stops/501687", "https://data.delijn.be/stops/506614"], ["https://data.delijn.be/stops/304952", "https://data.delijn.be/stops/308028"], ["https://data.delijn.be/stops/300398", "https://data.delijn.be/stops/300412"], ["https://data.delijn.be/stops/503434", "https://data.delijn.be/stops/508434"], ["https://data.delijn.be/stops/202601", "https://data.delijn.be/stops/203600"], ["https://data.delijn.be/stops/200664", "https://data.delijn.be/stops/201464"], ["https://data.delijn.be/stops/400873", "https://data.delijn.be/stops/409641"], ["https://data.delijn.be/stops/501693", "https://data.delijn.be/stops/505746"], ["https://data.delijn.be/stops/300413", "https://data.delijn.be/stops/300602"], ["https://data.delijn.be/stops/303757", "https://data.delijn.be/stops/303790"], ["https://data.delijn.be/stops/300594", "https://data.delijn.be/stops/300596"], ["https://data.delijn.be/stops/300210", "https://data.delijn.be/stops/303127"], ["https://data.delijn.be/stops/101940", "https://data.delijn.be/stops/105750"], ["https://data.delijn.be/stops/501672", "https://data.delijn.be/stops/501673"], ["https://data.delijn.be/stops/503871", "https://data.delijn.be/stops/508265"], ["https://data.delijn.be/stops/108513", "https://data.delijn.be/stops/108514"], ["https://data.delijn.be/stops/106886", "https://data.delijn.be/stops/106888"], ["https://data.delijn.be/stops/101027", "https://data.delijn.be/stops/102710"], ["https://data.delijn.be/stops/406565", "https://data.delijn.be/stops/408802"], ["https://data.delijn.be/stops/102978", "https://data.delijn.be/stops/102979"], ["https://data.delijn.be/stops/101883", "https://data.delijn.be/stops/104489"], ["https://data.delijn.be/stops/501309", "https://data.delijn.be/stops/501546"], ["https://data.delijn.be/stops/507195", "https://data.delijn.be/stops/507196"], ["https://data.delijn.be/stops/101422", "https://data.delijn.be/stops/109722"], ["https://data.delijn.be/stops/104099", "https://data.delijn.be/stops/105726"], ["https://data.delijn.be/stops/403478", "https://data.delijn.be/stops/403479"], ["https://data.delijn.be/stops/407457", "https://data.delijn.be/stops/407469"], ["https://data.delijn.be/stops/307630", "https://data.delijn.be/stops/307631"], ["https://data.delijn.be/stops/403690", "https://data.delijn.be/stops/403691"], ["https://data.delijn.be/stops/305950", "https://data.delijn.be/stops/308670"], ["https://data.delijn.be/stops/202277", "https://data.delijn.be/stops/202278"], ["https://data.delijn.be/stops/301169", "https://data.delijn.be/stops/301170"], ["https://data.delijn.be/stops/507764", "https://data.delijn.be/stops/507765"], ["https://data.delijn.be/stops/104824", "https://data.delijn.be/stops/109091"], ["https://data.delijn.be/stops/402527", "https://data.delijn.be/stops/402529"], ["https://data.delijn.be/stops/400244", "https://data.delijn.be/stops/400944"], ["https://data.delijn.be/stops/102189", "https://data.delijn.be/stops/105919"], ["https://data.delijn.be/stops/210010", "https://data.delijn.be/stops/211011"], ["https://data.delijn.be/stops/205422", "https://data.delijn.be/stops/205765"], ["https://data.delijn.be/stops/200871", "https://data.delijn.be/stops/200872"], ["https://data.delijn.be/stops/304130", "https://data.delijn.be/stops/305847"], ["https://data.delijn.be/stops/407601", "https://data.delijn.be/stops/407609"], ["https://data.delijn.be/stops/501245", "https://data.delijn.be/stops/506245"], ["https://data.delijn.be/stops/305558", "https://data.delijn.be/stops/305581"], ["https://data.delijn.be/stops/300785", "https://data.delijn.be/stops/300833"], ["https://data.delijn.be/stops/208325", "https://data.delijn.be/stops/503864"], ["https://data.delijn.be/stops/205373", "https://data.delijn.be/stops/205382"], ["https://data.delijn.be/stops/200753", "https://data.delijn.be/stops/209252"], ["https://data.delijn.be/stops/301809", "https://data.delijn.be/stops/304679"], ["https://data.delijn.be/stops/307027", "https://data.delijn.be/stops/307573"], ["https://data.delijn.be/stops/206800", "https://data.delijn.be/stops/208602"], ["https://data.delijn.be/stops/504492", "https://data.delijn.be/stops/504497"], ["https://data.delijn.be/stops/200957", "https://data.delijn.be/stops/202065"], ["https://data.delijn.be/stops/108061", "https://data.delijn.be/stops/108062"], ["https://data.delijn.be/stops/106556", "https://data.delijn.be/stops/106557"], ["https://data.delijn.be/stops/504502", "https://data.delijn.be/stops/509510"], ["https://data.delijn.be/stops/104937", "https://data.delijn.be/stops/108187"], ["https://data.delijn.be/stops/205265", "https://data.delijn.be/stops/205485"], ["https://data.delijn.be/stops/303111", "https://data.delijn.be/stops/305159"], ["https://data.delijn.be/stops/401209", "https://data.delijn.be/stops/401272"], ["https://data.delijn.be/stops/407706", "https://data.delijn.be/stops/407769"], ["https://data.delijn.be/stops/506609", "https://data.delijn.be/stops/506612"], ["https://data.delijn.be/stops/108228", "https://data.delijn.be/stops/108229"], ["https://data.delijn.be/stops/301263", "https://data.delijn.be/stops/301266"], ["https://data.delijn.be/stops/302944", "https://data.delijn.be/stops/303132"], ["https://data.delijn.be/stops/103201", "https://data.delijn.be/stops/109932"], ["https://data.delijn.be/stops/208341", "https://data.delijn.be/stops/209340"], ["https://data.delijn.be/stops/502318", "https://data.delijn.be/stops/502335"], ["https://data.delijn.be/stops/303847", "https://data.delijn.be/stops/303848"], ["https://data.delijn.be/stops/304443", "https://data.delijn.be/stops/307718"], ["https://data.delijn.be/stops/206243", "https://data.delijn.be/stops/206244"], ["https://data.delijn.be/stops/304908", "https://data.delijn.be/stops/306388"], ["https://data.delijn.be/stops/101131", "https://data.delijn.be/stops/105997"], ["https://data.delijn.be/stops/107282", "https://data.delijn.be/stops/107283"], ["https://data.delijn.be/stops/201239", "https://data.delijn.be/stops/203241"], ["https://data.delijn.be/stops/504698", "https://data.delijn.be/stops/509463"], ["https://data.delijn.be/stops/202013", "https://data.delijn.be/stops/210070"], ["https://data.delijn.be/stops/304136", "https://data.delijn.be/stops/307583"], ["https://data.delijn.be/stops/103636", "https://data.delijn.be/stops/104115"], ["https://data.delijn.be/stops/503987", "https://data.delijn.be/stops/508895"], ["https://data.delijn.be/stops/402765", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/200432", "https://data.delijn.be/stops/200433"], ["https://data.delijn.be/stops/409094", "https://data.delijn.be/stops/409116"], ["https://data.delijn.be/stops/206376", "https://data.delijn.be/stops/207351"], ["https://data.delijn.be/stops/501065", "https://data.delijn.be/stops/501135"], ["https://data.delijn.be/stops/502814", "https://data.delijn.be/stops/508139"], ["https://data.delijn.be/stops/303391", "https://data.delijn.be/stops/303396"], ["https://data.delijn.be/stops/301570", "https://data.delijn.be/stops/301571"], ["https://data.delijn.be/stops/400410", "https://data.delijn.be/stops/400412"], ["https://data.delijn.be/stops/404228", "https://data.delijn.be/stops/409630"], ["https://data.delijn.be/stops/305078", "https://data.delijn.be/stops/305081"], ["https://data.delijn.be/stops/502394", "https://data.delijn.be/stops/507909"], ["https://data.delijn.be/stops/204433", "https://data.delijn.be/stops/204434"], ["https://data.delijn.be/stops/404962", "https://data.delijn.be/stops/404963"], ["https://data.delijn.be/stops/400612", "https://data.delijn.be/stops/400624"], ["https://data.delijn.be/stops/101465", "https://data.delijn.be/stops/101466"], ["https://data.delijn.be/stops/201685", "https://data.delijn.be/stops/202314"], ["https://data.delijn.be/stops/104651", "https://data.delijn.be/stops/108048"], ["https://data.delijn.be/stops/401958", "https://data.delijn.be/stops/401964"], ["https://data.delijn.be/stops/102589", "https://data.delijn.be/stops/409531"], ["https://data.delijn.be/stops/300743", "https://data.delijn.be/stops/300798"], ["https://data.delijn.be/stops/201769", "https://data.delijn.be/stops/209272"], ["https://data.delijn.be/stops/402763", "https://data.delijn.be/stops/410334"], ["https://data.delijn.be/stops/300019", "https://data.delijn.be/stops/306045"], ["https://data.delijn.be/stops/503081", "https://data.delijn.be/stops/503084"], ["https://data.delijn.be/stops/104893", "https://data.delijn.be/stops/104894"], ["https://data.delijn.be/stops/304936", "https://data.delijn.be/stops/304939"], ["https://data.delijn.be/stops/403219", "https://data.delijn.be/stops/403553"], ["https://data.delijn.be/stops/501662", "https://data.delijn.be/stops/506663"], ["https://data.delijn.be/stops/302339", "https://data.delijn.be/stops/302344"], ["https://data.delijn.be/stops/107820", "https://data.delijn.be/stops/107825"], ["https://data.delijn.be/stops/400438", "https://data.delijn.be/stops/406842"], ["https://data.delijn.be/stops/403178", "https://data.delijn.be/stops/403518"], ["https://data.delijn.be/stops/101587", "https://data.delijn.be/stops/105450"], ["https://data.delijn.be/stops/302260", "https://data.delijn.be/stops/304347"], ["https://data.delijn.be/stops/106221", "https://data.delijn.be/stops/106336"], ["https://data.delijn.be/stops/300703", "https://data.delijn.be/stops/300706"], ["https://data.delijn.be/stops/206061", "https://data.delijn.be/stops/207062"], ["https://data.delijn.be/stops/204587", "https://data.delijn.be/stops/205159"], ["https://data.delijn.be/stops/206530", "https://data.delijn.be/stops/207530"], ["https://data.delijn.be/stops/207672", "https://data.delijn.be/stops/209157"], ["https://data.delijn.be/stops/300751", "https://data.delijn.be/stops/300784"], ["https://data.delijn.be/stops/302127", "https://data.delijn.be/stops/304165"], ["https://data.delijn.be/stops/104401", "https://data.delijn.be/stops/107132"], ["https://data.delijn.be/stops/108189", "https://data.delijn.be/stops/108354"], ["https://data.delijn.be/stops/502069", "https://data.delijn.be/stops/505681"], ["https://data.delijn.be/stops/502280", "https://data.delijn.be/stops/507280"], ["https://data.delijn.be/stops/200808", "https://data.delijn.be/stops/200809"], ["https://data.delijn.be/stops/503914", "https://data.delijn.be/stops/508924"], ["https://data.delijn.be/stops/400851", "https://data.delijn.be/stops/400852"], ["https://data.delijn.be/stops/504793", "https://data.delijn.be/stops/509907"], ["https://data.delijn.be/stops/406461", "https://data.delijn.be/stops/406519"], ["https://data.delijn.be/stops/502740", "https://data.delijn.be/stops/507919"], ["https://data.delijn.be/stops/303859", "https://data.delijn.be/stops/303962"], ["https://data.delijn.be/stops/405939", "https://data.delijn.be/stops/405947"], ["https://data.delijn.be/stops/303260", "https://data.delijn.be/stops/305661"], ["https://data.delijn.be/stops/103647", "https://data.delijn.be/stops/107736"], ["https://data.delijn.be/stops/501435", "https://data.delijn.be/stops/501672"], ["https://data.delijn.be/stops/108072", "https://data.delijn.be/stops/108073"], ["https://data.delijn.be/stops/201609", "https://data.delijn.be/stops/202755"], ["https://data.delijn.be/stops/303131", "https://data.delijn.be/stops/303134"], ["https://data.delijn.be/stops/102893", "https://data.delijn.be/stops/105305"], ["https://data.delijn.be/stops/404427", "https://data.delijn.be/stops/404497"], ["https://data.delijn.be/stops/203998", "https://data.delijn.be/stops/203999"], ["https://data.delijn.be/stops/504988", "https://data.delijn.be/stops/509046"], ["https://data.delijn.be/stops/401462", "https://data.delijn.be/stops/401474"], ["https://data.delijn.be/stops/304757", "https://data.delijn.be/stops/308815"], ["https://data.delijn.be/stops/200525", "https://data.delijn.be/stops/201525"], ["https://data.delijn.be/stops/307571", "https://data.delijn.be/stops/307574"], ["https://data.delijn.be/stops/200497", "https://data.delijn.be/stops/201497"], ["https://data.delijn.be/stops/204145", "https://data.delijn.be/stops/207637"], ["https://data.delijn.be/stops/402119", "https://data.delijn.be/stops/403426"], ["https://data.delijn.be/stops/303229", "https://data.delijn.be/stops/304550"], ["https://data.delijn.be/stops/204157", "https://data.delijn.be/stops/205157"], ["https://data.delijn.be/stops/401794", "https://data.delijn.be/stops/406349"], ["https://data.delijn.be/stops/505158", "https://data.delijn.be/stops/508887"], ["https://data.delijn.be/stops/204288", "https://data.delijn.be/stops/205289"], ["https://data.delijn.be/stops/407989", "https://data.delijn.be/stops/408070"], ["https://data.delijn.be/stops/307871", "https://data.delijn.be/stops/308887"], ["https://data.delijn.be/stops/201683", "https://data.delijn.be/stops/203004"], ["https://data.delijn.be/stops/408512", "https://data.delijn.be/stops/408513"], ["https://data.delijn.be/stops/101086", "https://data.delijn.be/stops/101088"], ["https://data.delijn.be/stops/103531", "https://data.delijn.be/stops/109635"], ["https://data.delijn.be/stops/505567", "https://data.delijn.be/stops/508639"], ["https://data.delijn.be/stops/407689", "https://data.delijn.be/stops/407734"], ["https://data.delijn.be/stops/106739", "https://data.delijn.be/stops/106740"], ["https://data.delijn.be/stops/203549", "https://data.delijn.be/stops/203557"], ["https://data.delijn.be/stops/203364", "https://data.delijn.be/stops/203989"], ["https://data.delijn.be/stops/104037", "https://data.delijn.be/stops/108394"], ["https://data.delijn.be/stops/502553", "https://data.delijn.be/stops/502666"], ["https://data.delijn.be/stops/400905", "https://data.delijn.be/stops/401255"], ["https://data.delijn.be/stops/504414", "https://data.delijn.be/stops/509591"], ["https://data.delijn.be/stops/502085", "https://data.delijn.be/stops/502584"], ["https://data.delijn.be/stops/203771", "https://data.delijn.be/stops/203772"], ["https://data.delijn.be/stops/409282", "https://data.delijn.be/stops/409283"], ["https://data.delijn.be/stops/104097", "https://data.delijn.be/stops/104099"], ["https://data.delijn.be/stops/405565", "https://data.delijn.be/stops/405576"], ["https://data.delijn.be/stops/502543", "https://data.delijn.be/stops/507543"], ["https://data.delijn.be/stops/404709", "https://data.delijn.be/stops/404811"], ["https://data.delijn.be/stops/201871", "https://data.delijn.be/stops/203422"], ["https://data.delijn.be/stops/208313", "https://data.delijn.be/stops/208771"], ["https://data.delijn.be/stops/402260", "https://data.delijn.be/stops/409631"], ["https://data.delijn.be/stops/502278", "https://data.delijn.be/stops/502334"], ["https://data.delijn.be/stops/407131", "https://data.delijn.be/stops/407133"], ["https://data.delijn.be/stops/103758", "https://data.delijn.be/stops/108090"], ["https://data.delijn.be/stops/504848", "https://data.delijn.be/stops/508119"], ["https://data.delijn.be/stops/103069", "https://data.delijn.be/stops/105754"], ["https://data.delijn.be/stops/409559", "https://data.delijn.be/stops/409567"], ["https://data.delijn.be/stops/202365", "https://data.delijn.be/stops/203364"], ["https://data.delijn.be/stops/504741", "https://data.delijn.be/stops/509150"], ["https://data.delijn.be/stops/408428", "https://data.delijn.be/stops/408577"], ["https://data.delijn.be/stops/205259", "https://data.delijn.be/stops/205260"], ["https://data.delijn.be/stops/101426", "https://data.delijn.be/stops/102087"], ["https://data.delijn.be/stops/305023", "https://data.delijn.be/stops/305024"], ["https://data.delijn.be/stops/206029", "https://data.delijn.be/stops/207029"], ["https://data.delijn.be/stops/502416", "https://data.delijn.be/stops/507420"], ["https://data.delijn.be/stops/106637", "https://data.delijn.be/stops/106679"], ["https://data.delijn.be/stops/403085", "https://data.delijn.be/stops/403436"], ["https://data.delijn.be/stops/504771", "https://data.delijn.be/stops/505945"], ["https://data.delijn.be/stops/504073", "https://data.delijn.be/stops/509076"], ["https://data.delijn.be/stops/505848", "https://data.delijn.be/stops/507620"], ["https://data.delijn.be/stops/502406", "https://data.delijn.be/stops/507725"], ["https://data.delijn.be/stops/501624", "https://data.delijn.be/stops/506624"], ["https://data.delijn.be/stops/209374", "https://data.delijn.be/stops/209661"], ["https://data.delijn.be/stops/303656", "https://data.delijn.be/stops/305464"], ["https://data.delijn.be/stops/302937", "https://data.delijn.be/stops/303142"], ["https://data.delijn.be/stops/301789", "https://data.delijn.be/stops/301790"], ["https://data.delijn.be/stops/206458", "https://data.delijn.be/stops/206861"], ["https://data.delijn.be/stops/301644", "https://data.delijn.be/stops/301670"], ["https://data.delijn.be/stops/307212", "https://data.delijn.be/stops/307283"], ["https://data.delijn.be/stops/105277", "https://data.delijn.be/stops/105686"], ["https://data.delijn.be/stops/503989", "https://data.delijn.be/stops/508486"], ["https://data.delijn.be/stops/208189", "https://data.delijn.be/stops/209189"], ["https://data.delijn.be/stops/305993", "https://data.delijn.be/stops/307425"], ["https://data.delijn.be/stops/101794", "https://data.delijn.be/stops/108562"], ["https://data.delijn.be/stops/505534", "https://data.delijn.be/stops/505535"], ["https://data.delijn.be/stops/503033", "https://data.delijn.be/stops/503363"], ["https://data.delijn.be/stops/304733", "https://data.delijn.be/stops/306555"], ["https://data.delijn.be/stops/107982", "https://data.delijn.be/stops/107986"], ["https://data.delijn.be/stops/400932", "https://data.delijn.be/stops/402826"], ["https://data.delijn.be/stops/201767", "https://data.delijn.be/stops/208268"], ["https://data.delijn.be/stops/203660", "https://data.delijn.be/stops/203661"], ["https://data.delijn.be/stops/308226", "https://data.delijn.be/stops/308227"], ["https://data.delijn.be/stops/200908", "https://data.delijn.be/stops/200928"], ["https://data.delijn.be/stops/105458", "https://data.delijn.be/stops/105461"], ["https://data.delijn.be/stops/400424", "https://data.delijn.be/stops/400954"], ["https://data.delijn.be/stops/502100", "https://data.delijn.be/stops/502111"], ["https://data.delijn.be/stops/200810", "https://data.delijn.be/stops/203356"], ["https://data.delijn.be/stops/501009", "https://data.delijn.be/stops/505035"], ["https://data.delijn.be/stops/508066", "https://data.delijn.be/stops/509975"], ["https://data.delijn.be/stops/204243", "https://data.delijn.be/stops/204458"], ["https://data.delijn.be/stops/202908", "https://data.delijn.be/stops/203908"], ["https://data.delijn.be/stops/400708", "https://data.delijn.be/stops/400710"], ["https://data.delijn.be/stops/300407", "https://data.delijn.be/stops/306067"], ["https://data.delijn.be/stops/203528", "https://data.delijn.be/stops/210009"], ["https://data.delijn.be/stops/204347", "https://data.delijn.be/stops/205348"], ["https://data.delijn.be/stops/107096", "https://data.delijn.be/stops/108233"], ["https://data.delijn.be/stops/103142", "https://data.delijn.be/stops/103727"], ["https://data.delijn.be/stops/105503", "https://data.delijn.be/stops/105506"], ["https://data.delijn.be/stops/105352", "https://data.delijn.be/stops/109617"], ["https://data.delijn.be/stops/304528", "https://data.delijn.be/stops/304672"], ["https://data.delijn.be/stops/104409", "https://data.delijn.be/stops/204493"], ["https://data.delijn.be/stops/208219", "https://data.delijn.be/stops/209219"], ["https://data.delijn.be/stops/300615", "https://data.delijn.be/stops/304650"], ["https://data.delijn.be/stops/210033", "https://data.delijn.be/stops/211037"], ["https://data.delijn.be/stops/101545", "https://data.delijn.be/stops/104127"], ["https://data.delijn.be/stops/105639", "https://data.delijn.be/stops/105811"], ["https://data.delijn.be/stops/302126", "https://data.delijn.be/stops/304781"], ["https://data.delijn.be/stops/503842", "https://data.delijn.be/stops/505804"], ["https://data.delijn.be/stops/107828", "https://data.delijn.be/stops/107829"], ["https://data.delijn.be/stops/206815", "https://data.delijn.be/stops/207815"], ["https://data.delijn.be/stops/408276", "https://data.delijn.be/stops/408341"], ["https://data.delijn.be/stops/207247", "https://data.delijn.be/stops/207401"], ["https://data.delijn.be/stops/105204", "https://data.delijn.be/stops/108877"], ["https://data.delijn.be/stops/300274", "https://data.delijn.be/stops/307477"], ["https://data.delijn.be/stops/407600", "https://data.delijn.be/stops/407601"], ["https://data.delijn.be/stops/401949", "https://data.delijn.be/stops/407112"], ["https://data.delijn.be/stops/300690", "https://data.delijn.be/stops/303459"], ["https://data.delijn.be/stops/408444", "https://data.delijn.be/stops/305684"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/510001"], ["https://data.delijn.be/stops/304983", "https://data.delijn.be/stops/308013"], ["https://data.delijn.be/stops/403085", "https://data.delijn.be/stops/403133"], ["https://data.delijn.be/stops/405185", "https://data.delijn.be/stops/405251"], ["https://data.delijn.be/stops/101285", "https://data.delijn.be/stops/101992"], ["https://data.delijn.be/stops/109966", "https://data.delijn.be/stops/109974"], ["https://data.delijn.be/stops/508064", "https://data.delijn.be/stops/509303"], ["https://data.delijn.be/stops/503329", "https://data.delijn.be/stops/508329"], ["https://data.delijn.be/stops/202891", "https://data.delijn.be/stops/203669"], ["https://data.delijn.be/stops/201943", "https://data.delijn.be/stops/202001"], ["https://data.delijn.be/stops/302588", "https://data.delijn.be/stops/302594"], ["https://data.delijn.be/stops/101179", "https://data.delijn.be/stops/106791"], ["https://data.delijn.be/stops/407842", "https://data.delijn.be/stops/407907"], ["https://data.delijn.be/stops/507491", "https://data.delijn.be/stops/507507"], ["https://data.delijn.be/stops/307226", "https://data.delijn.be/stops/307913"], ["https://data.delijn.be/stops/104971", "https://data.delijn.be/stops/105303"], ["https://data.delijn.be/stops/101049", "https://data.delijn.be/stops/205279"], ["https://data.delijn.be/stops/301055", "https://data.delijn.be/stops/303832"], ["https://data.delijn.be/stops/408865", "https://data.delijn.be/stops/408868"], ["https://data.delijn.be/stops/300847", "https://data.delijn.be/stops/301565"], ["https://data.delijn.be/stops/406678", "https://data.delijn.be/stops/406679"], ["https://data.delijn.be/stops/300499", "https://data.delijn.be/stops/300500"], ["https://data.delijn.be/stops/503882", "https://data.delijn.be/stops/505376"], ["https://data.delijn.be/stops/306786", "https://data.delijn.be/stops/306788"], ["https://data.delijn.be/stops/105906", "https://data.delijn.be/stops/105907"], ["https://data.delijn.be/stops/410320", "https://data.delijn.be/stops/410321"], ["https://data.delijn.be/stops/300311", "https://data.delijn.be/stops/307806"], ["https://data.delijn.be/stops/504697", "https://data.delijn.be/stops/509411"], ["https://data.delijn.be/stops/300697", "https://data.delijn.be/stops/300719"], ["https://data.delijn.be/stops/403952", "https://data.delijn.be/stops/404025"], ["https://data.delijn.be/stops/106285", "https://data.delijn.be/stops/106286"], ["https://data.delijn.be/stops/107869", "https://data.delijn.be/stops/107871"], ["https://data.delijn.be/stops/301470", "https://data.delijn.be/stops/307960"], ["https://data.delijn.be/stops/502648", "https://data.delijn.be/stops/502815"], ["https://data.delijn.be/stops/302897", "https://data.delijn.be/stops/302924"], ["https://data.delijn.be/stops/208179", "https://data.delijn.be/stops/209178"], ["https://data.delijn.be/stops/501249", "https://data.delijn.be/stops/506249"], ["https://data.delijn.be/stops/500931", "https://data.delijn.be/stops/500935"], ["https://data.delijn.be/stops/209169", "https://data.delijn.be/stops/209170"], ["https://data.delijn.be/stops/301798", "https://data.delijn.be/stops/303704"], ["https://data.delijn.be/stops/503030", "https://data.delijn.be/stops/505396"], ["https://data.delijn.be/stops/503295", "https://data.delijn.be/stops/509842"], ["https://data.delijn.be/stops/104038", "https://data.delijn.be/stops/104044"], ["https://data.delijn.be/stops/508026", "https://data.delijn.be/stops/508030"], ["https://data.delijn.be/stops/206464", "https://data.delijn.be/stops/207463"], ["https://data.delijn.be/stops/106084", "https://data.delijn.be/stops/109899"], ["https://data.delijn.be/stops/402160", "https://data.delijn.be/stops/402172"], ["https://data.delijn.be/stops/301782", "https://data.delijn.be/stops/301784"], ["https://data.delijn.be/stops/106298", "https://data.delijn.be/stops/106472"], ["https://data.delijn.be/stops/506265", "https://data.delijn.be/stops/506565"], ["https://data.delijn.be/stops/503346", "https://data.delijn.be/stops/508053"], ["https://data.delijn.be/stops/204402", "https://data.delijn.be/stops/205403"], ["https://data.delijn.be/stops/105073", "https://data.delijn.be/stops/105188"], ["https://data.delijn.be/stops/502052", "https://data.delijn.be/stops/502661"], ["https://data.delijn.be/stops/208470", "https://data.delijn.be/stops/209513"], ["https://data.delijn.be/stops/200704", "https://data.delijn.be/stops/200705"], ["https://data.delijn.be/stops/405194", "https://data.delijn.be/stops/405196"], ["https://data.delijn.be/stops/109133", "https://data.delijn.be/stops/109137"], ["https://data.delijn.be/stops/102184", "https://data.delijn.be/stops/104428"], ["https://data.delijn.be/stops/103255", "https://data.delijn.be/stops/103256"], ["https://data.delijn.be/stops/505259", "https://data.delijn.be/stops/508026"], ["https://data.delijn.be/stops/105023", "https://data.delijn.be/stops/106829"], ["https://data.delijn.be/stops/107686", "https://data.delijn.be/stops/107691"], ["https://data.delijn.be/stops/304287", "https://data.delijn.be/stops/304301"], ["https://data.delijn.be/stops/304598", "https://data.delijn.be/stops/304717"], ["https://data.delijn.be/stops/207416", "https://data.delijn.be/stops/207639"], ["https://data.delijn.be/stops/304110", "https://data.delijn.be/stops/304821"], ["https://data.delijn.be/stops/209442", "https://data.delijn.be/stops/209443"], ["https://data.delijn.be/stops/207669", "https://data.delijn.be/stops/208055"], ["https://data.delijn.be/stops/200767", "https://data.delijn.be/stops/201728"], ["https://data.delijn.be/stops/503046", "https://data.delijn.be/stops/508047"], ["https://data.delijn.be/stops/300105", "https://data.delijn.be/stops/306842"], ["https://data.delijn.be/stops/506166", "https://data.delijn.be/stops/509838"], ["https://data.delijn.be/stops/202929", "https://data.delijn.be/stops/210097"], ["https://data.delijn.be/stops/106448", "https://data.delijn.be/stops/106451"], ["https://data.delijn.be/stops/503230", "https://data.delijn.be/stops/509867"], ["https://data.delijn.be/stops/407836", "https://data.delijn.be/stops/409561"], ["https://data.delijn.be/stops/202559", "https://data.delijn.be/stops/203558"], ["https://data.delijn.be/stops/502200", "https://data.delijn.be/stops/505549"], ["https://data.delijn.be/stops/502104", "https://data.delijn.be/stops/502168"], ["https://data.delijn.be/stops/103994", "https://data.delijn.be/stops/108394"], ["https://data.delijn.be/stops/101132", "https://data.delijn.be/stops/107958"], ["https://data.delijn.be/stops/101929", "https://data.delijn.be/stops/108385"], ["https://data.delijn.be/stops/504649", "https://data.delijn.be/stops/509643"], ["https://data.delijn.be/stops/107034", "https://data.delijn.be/stops/107038"], ["https://data.delijn.be/stops/504687", "https://data.delijn.be/stops/504762"], ["https://data.delijn.be/stops/302295", "https://data.delijn.be/stops/303503"], ["https://data.delijn.be/stops/102919", "https://data.delijn.be/stops/104580"], ["https://data.delijn.be/stops/208511", "https://data.delijn.be/stops/208632"], ["https://data.delijn.be/stops/404430", "https://data.delijn.be/stops/404482"], ["https://data.delijn.be/stops/401404", "https://data.delijn.be/stops/410153"], ["https://data.delijn.be/stops/406075", "https://data.delijn.be/stops/407489"], ["https://data.delijn.be/stops/403880", "https://data.delijn.be/stops/403882"], ["https://data.delijn.be/stops/404228", "https://data.delijn.be/stops/405547"], ["https://data.delijn.be/stops/207497", "https://data.delijn.be/stops/207673"], ["https://data.delijn.be/stops/502718", "https://data.delijn.be/stops/502920"], ["https://data.delijn.be/stops/400135", "https://data.delijn.be/stops/400142"], ["https://data.delijn.be/stops/103021", "https://data.delijn.be/stops/107232"], ["https://data.delijn.be/stops/105314", "https://data.delijn.be/stops/105342"], ["https://data.delijn.be/stops/502408", "https://data.delijn.be/stops/507394"], ["https://data.delijn.be/stops/303107", "https://data.delijn.be/stops/303117"], ["https://data.delijn.be/stops/408742", "https://data.delijn.be/stops/408744"], ["https://data.delijn.be/stops/403276", "https://data.delijn.be/stops/403396"], ["https://data.delijn.be/stops/503307", "https://data.delijn.be/stops/503312"], ["https://data.delijn.be/stops/207182", "https://data.delijn.be/stops/207184"], ["https://data.delijn.be/stops/502355", "https://data.delijn.be/stops/507362"], ["https://data.delijn.be/stops/302718", "https://data.delijn.be/stops/302722"], ["https://data.delijn.be/stops/108214", "https://data.delijn.be/stops/108216"], ["https://data.delijn.be/stops/200012", "https://data.delijn.be/stops/200013"], ["https://data.delijn.be/stops/208683", "https://data.delijn.be/stops/209437"], ["https://data.delijn.be/stops/503828", "https://data.delijn.be/stops/508449"], ["https://data.delijn.be/stops/402893", "https://data.delijn.be/stops/302613"], ["https://data.delijn.be/stops/501330", "https://data.delijn.be/stops/501331"], ["https://data.delijn.be/stops/503977", "https://data.delijn.be/stops/508467"], ["https://data.delijn.be/stops/105701", "https://data.delijn.be/stops/106069"], ["https://data.delijn.be/stops/102200", "https://data.delijn.be/stops/108170"], ["https://data.delijn.be/stops/201994", "https://data.delijn.be/stops/202014"], ["https://data.delijn.be/stops/208764", "https://data.delijn.be/stops/208765"], ["https://data.delijn.be/stops/303695", "https://data.delijn.be/stops/303749"], ["https://data.delijn.be/stops/501149", "https://data.delijn.be/stops/505620"], ["https://data.delijn.be/stops/107979", "https://data.delijn.be/stops/107981"], ["https://data.delijn.be/stops/205911", "https://data.delijn.be/stops/205913"], ["https://data.delijn.be/stops/208005", "https://data.delijn.be/stops/209634"], ["https://data.delijn.be/stops/107440", "https://data.delijn.be/stops/107441"], ["https://data.delijn.be/stops/108086", "https://data.delijn.be/stops/108832"], ["https://data.delijn.be/stops/206431", "https://data.delijn.be/stops/207432"], ["https://data.delijn.be/stops/204749", "https://data.delijn.be/stops/205750"], ["https://data.delijn.be/stops/509410", "https://data.delijn.be/stops/509420"], ["https://data.delijn.be/stops/302425", "https://data.delijn.be/stops/302440"], ["https://data.delijn.be/stops/304604", "https://data.delijn.be/stops/304618"], ["https://data.delijn.be/stops/200566", "https://data.delijn.be/stops/201680"], ["https://data.delijn.be/stops/208583", "https://data.delijn.be/stops/209677"], ["https://data.delijn.be/stops/301065", "https://data.delijn.be/stops/301278"], ["https://data.delijn.be/stops/401062", "https://data.delijn.be/stops/406712"], ["https://data.delijn.be/stops/101530", "https://data.delijn.be/stops/103108"], ["https://data.delijn.be/stops/207495", "https://data.delijn.be/stops/207496"], ["https://data.delijn.be/stops/102370", "https://data.delijn.be/stops/104627"], ["https://data.delijn.be/stops/103571", "https://data.delijn.be/stops/103574"], ["https://data.delijn.be/stops/301585", "https://data.delijn.be/stops/304960"], ["https://data.delijn.be/stops/303189", "https://data.delijn.be/stops/303202"], ["https://data.delijn.be/stops/502442", "https://data.delijn.be/stops/502463"], ["https://data.delijn.be/stops/403160", "https://data.delijn.be/stops/403408"], ["https://data.delijn.be/stops/409350", "https://data.delijn.be/stops/409369"], ["https://data.delijn.be/stops/108551", "https://data.delijn.be/stops/109093"], ["https://data.delijn.be/stops/303340", "https://data.delijn.be/stops/306335"], ["https://data.delijn.be/stops/501632", "https://data.delijn.be/stops/506023"], ["https://data.delijn.be/stops/106594", "https://data.delijn.be/stops/107246"], ["https://data.delijn.be/stops/201212", "https://data.delijn.be/stops/201213"], ["https://data.delijn.be/stops/407080", "https://data.delijn.be/stops/409018"], ["https://data.delijn.be/stops/108155", "https://data.delijn.be/stops/108160"], ["https://data.delijn.be/stops/504990", "https://data.delijn.be/stops/509189"], ["https://data.delijn.be/stops/503073", "https://data.delijn.be/stops/508073"], ["https://data.delijn.be/stops/107344", "https://data.delijn.be/stops/107347"], ["https://data.delijn.be/stops/304797", "https://data.delijn.be/stops/306643"], ["https://data.delijn.be/stops/303312", "https://data.delijn.be/stops/303328"], ["https://data.delijn.be/stops/201281", "https://data.delijn.be/stops/208958"], ["https://data.delijn.be/stops/101536", "https://data.delijn.be/stops/102454"], ["https://data.delijn.be/stops/306694", "https://data.delijn.be/stops/308785"], ["https://data.delijn.be/stops/202103", "https://data.delijn.be/stops/210006"], ["https://data.delijn.be/stops/107700", "https://data.delijn.be/stops/107760"], ["https://data.delijn.be/stops/300684", "https://data.delijn.be/stops/300735"], ["https://data.delijn.be/stops/204103", "https://data.delijn.be/stops/206306"], ["https://data.delijn.be/stops/302388", "https://data.delijn.be/stops/302389"], ["https://data.delijn.be/stops/109288", "https://data.delijn.be/stops/109289"], ["https://data.delijn.be/stops/208582", "https://data.delijn.be/stops/209452"], ["https://data.delijn.be/stops/502072", "https://data.delijn.be/stops/507070"], ["https://data.delijn.be/stops/405904", "https://data.delijn.be/stops/405965"], ["https://data.delijn.be/stops/106478", "https://data.delijn.be/stops/107454"], ["https://data.delijn.be/stops/403456", "https://data.delijn.be/stops/410328"], ["https://data.delijn.be/stops/404090", "https://data.delijn.be/stops/408585"], ["https://data.delijn.be/stops/404294", "https://data.delijn.be/stops/405999"], ["https://data.delijn.be/stops/301252", "https://data.delijn.be/stops/308557"], ["https://data.delijn.be/stops/303514", "https://data.delijn.be/stops/304175"], ["https://data.delijn.be/stops/302697", "https://data.delijn.be/stops/302698"], ["https://data.delijn.be/stops/106662", "https://data.delijn.be/stops/106664"], ["https://data.delijn.be/stops/407046", "https://data.delijn.be/stops/407047"], ["https://data.delijn.be/stops/502004", "https://data.delijn.be/stops/505749"], ["https://data.delijn.be/stops/205367", "https://data.delijn.be/stops/205760"], ["https://data.delijn.be/stops/204912", "https://data.delijn.be/stops/204915"], ["https://data.delijn.be/stops/400992", "https://data.delijn.be/stops/400999"], ["https://data.delijn.be/stops/209654", "https://data.delijn.be/stops/210068"], ["https://data.delijn.be/stops/201658", "https://data.delijn.be/stops/201659"], ["https://data.delijn.be/stops/406299", "https://data.delijn.be/stops/409139"], ["https://data.delijn.be/stops/102061", "https://data.delijn.be/stops/106940"], ["https://data.delijn.be/stops/501697", "https://data.delijn.be/stops/502244"], ["https://data.delijn.be/stops/305681", "https://data.delijn.be/stops/305699"], ["https://data.delijn.be/stops/503626", "https://data.delijn.be/stops/508619"], ["https://data.delijn.be/stops/101664", "https://data.delijn.be/stops/106489"], ["https://data.delijn.be/stops/204376", "https://data.delijn.be/stops/205764"], ["https://data.delijn.be/stops/506091", "https://data.delijn.be/stops/506099"], ["https://data.delijn.be/stops/302396", "https://data.delijn.be/stops/302397"], ["https://data.delijn.be/stops/107469", "https://data.delijn.be/stops/107517"], ["https://data.delijn.be/stops/501411", "https://data.delijn.be/stops/506410"], ["https://data.delijn.be/stops/407867", "https://data.delijn.be/stops/407888"], ["https://data.delijn.be/stops/509316", "https://data.delijn.be/stops/509860"], ["https://data.delijn.be/stops/401440", "https://data.delijn.be/stops/408379"], ["https://data.delijn.be/stops/400176", "https://data.delijn.be/stops/400179"], ["https://data.delijn.be/stops/505230", "https://data.delijn.be/stops/505565"], ["https://data.delijn.be/stops/406834", "https://data.delijn.be/stops/407325"], ["https://data.delijn.be/stops/208239", "https://data.delijn.be/stops/209234"], ["https://data.delijn.be/stops/301582", "https://data.delijn.be/stops/301585"], ["https://data.delijn.be/stops/201927", "https://data.delijn.be/stops/207750"], ["https://data.delijn.be/stops/106873", "https://data.delijn.be/stops/106874"], ["https://data.delijn.be/stops/104210", "https://data.delijn.be/stops/104215"], ["https://data.delijn.be/stops/303780", "https://data.delijn.be/stops/303811"], ["https://data.delijn.be/stops/102314", "https://data.delijn.be/stops/103752"], ["https://data.delijn.be/stops/405515", "https://data.delijn.be/stops/407144"], ["https://data.delijn.be/stops/206214", "https://data.delijn.be/stops/206215"], ["https://data.delijn.be/stops/301080", "https://data.delijn.be/stops/308819"], ["https://data.delijn.be/stops/101139", "https://data.delijn.be/stops/109382"], ["https://data.delijn.be/stops/410188", "https://data.delijn.be/stops/410251"], ["https://data.delijn.be/stops/503855", "https://data.delijn.be/stops/504378"], ["https://data.delijn.be/stops/504978", "https://data.delijn.be/stops/509086"], ["https://data.delijn.be/stops/107680", "https://data.delijn.be/stops/107705"], ["https://data.delijn.be/stops/200093", "https://data.delijn.be/stops/201469"], ["https://data.delijn.be/stops/505363", "https://data.delijn.be/stops/509199"], ["https://data.delijn.be/stops/201090", "https://data.delijn.be/stops/201916"], ["https://data.delijn.be/stops/203593", "https://data.delijn.be/stops/210023"], ["https://data.delijn.be/stops/107557", "https://data.delijn.be/stops/107902"], ["https://data.delijn.be/stops/302422", "https://data.delijn.be/stops/302423"], ["https://data.delijn.be/stops/301836", "https://data.delijn.be/stops/301852"], ["https://data.delijn.be/stops/200450", "https://data.delijn.be/stops/208722"], ["https://data.delijn.be/stops/403383", "https://data.delijn.be/stops/406887"], ["https://data.delijn.be/stops/401471", "https://data.delijn.be/stops/401897"], ["https://data.delijn.be/stops/509411", "https://data.delijn.be/stops/509429"], ["https://data.delijn.be/stops/200051", "https://data.delijn.be/stops/201051"], ["https://data.delijn.be/stops/403489", "https://data.delijn.be/stops/405632"], ["https://data.delijn.be/stops/101797", "https://data.delijn.be/stops/300642"], ["https://data.delijn.be/stops/301560", "https://data.delijn.be/stops/308087"], ["https://data.delijn.be/stops/504620", "https://data.delijn.be/stops/509620"], ["https://data.delijn.be/stops/307198", "https://data.delijn.be/stops/307219"], ["https://data.delijn.be/stops/201728", "https://data.delijn.be/stops/208304"], ["https://data.delijn.be/stops/405305", "https://data.delijn.be/stops/405314"], ["https://data.delijn.be/stops/501130", "https://data.delijn.be/stops/506130"], ["https://data.delijn.be/stops/302626", "https://data.delijn.be/stops/308114"], ["https://data.delijn.be/stops/505136", "https://data.delijn.be/stops/508660"], ["https://data.delijn.be/stops/402605", "https://data.delijn.be/stops/402609"], ["https://data.delijn.be/stops/306044", "https://data.delijn.be/stops/307100"], ["https://data.delijn.be/stops/504006", "https://data.delijn.be/stops/509006"], ["https://data.delijn.be/stops/201827", "https://data.delijn.be/stops/209333"], ["https://data.delijn.be/stops/101368", "https://data.delijn.be/stops/106523"], ["https://data.delijn.be/stops/209781", "https://data.delijn.be/stops/209798"], ["https://data.delijn.be/stops/205679", "https://data.delijn.be/stops/205680"], ["https://data.delijn.be/stops/410113", "https://data.delijn.be/stops/410114"], ["https://data.delijn.be/stops/103011", "https://data.delijn.be/stops/103012"], ["https://data.delijn.be/stops/305016", "https://data.delijn.be/stops/305019"], ["https://data.delijn.be/stops/505208", "https://data.delijn.be/stops/505923"], ["https://data.delijn.be/stops/300098", "https://data.delijn.be/stops/300100"], ["https://data.delijn.be/stops/300018", "https://data.delijn.be/stops/301131"], ["https://data.delijn.be/stops/404884", "https://data.delijn.be/stops/405546"], ["https://data.delijn.be/stops/202900", "https://data.delijn.be/stops/202901"], ["https://data.delijn.be/stops/206482", "https://data.delijn.be/stops/206582"], ["https://data.delijn.be/stops/201110", "https://data.delijn.be/stops/203646"], ["https://data.delijn.be/stops/405582", "https://data.delijn.be/stops/405604"], ["https://data.delijn.be/stops/107019", "https://data.delijn.be/stops/107068"], ["https://data.delijn.be/stops/306794", "https://data.delijn.be/stops/308449"], ["https://data.delijn.be/stops/409254", "https://data.delijn.be/stops/409255"], ["https://data.delijn.be/stops/206086", "https://data.delijn.be/stops/207988"], ["https://data.delijn.be/stops/301116", "https://data.delijn.be/stops/306176"], ["https://data.delijn.be/stops/200083", "https://data.delijn.be/stops/201083"], ["https://data.delijn.be/stops/105276", "https://data.delijn.be/stops/105293"], ["https://data.delijn.be/stops/106290", "https://data.delijn.be/stops/106310"], ["https://data.delijn.be/stops/502209", "https://data.delijn.be/stops/505151"], ["https://data.delijn.be/stops/302805", "https://data.delijn.be/stops/308867"], ["https://data.delijn.be/stops/505542", "https://data.delijn.be/stops/508806"], ["https://data.delijn.be/stops/102123", "https://data.delijn.be/stops/109586"], ["https://data.delijn.be/stops/408444", "https://data.delijn.be/stops/303320"], ["https://data.delijn.be/stops/503126", "https://data.delijn.be/stops/509886"], ["https://data.delijn.be/stops/200718", "https://data.delijn.be/stops/203599"], ["https://data.delijn.be/stops/303427", "https://data.delijn.be/stops/303432"], ["https://data.delijn.be/stops/501118", "https://data.delijn.be/stops/505038"], ["https://data.delijn.be/stops/101885", "https://data.delijn.be/stops/101895"], ["https://data.delijn.be/stops/407718", "https://data.delijn.be/stops/407719"], ["https://data.delijn.be/stops/404530", "https://data.delijn.be/stops/409316"], ["https://data.delijn.be/stops/408532", "https://data.delijn.be/stops/408764"], ["https://data.delijn.be/stops/402300", "https://data.delijn.be/stops/402447"], ["https://data.delijn.be/stops/405856", "https://data.delijn.be/stops/409713"], ["https://data.delijn.be/stops/207791", "https://data.delijn.be/stops/208872"], ["https://data.delijn.be/stops/301001", "https://data.delijn.be/stops/301002"], ["https://data.delijn.be/stops/502075", "https://data.delijn.be/stops/507074"], ["https://data.delijn.be/stops/400849", "https://data.delijn.be/stops/400851"], ["https://data.delijn.be/stops/508846", "https://data.delijn.be/stops/508849"], ["https://data.delijn.be/stops/202181", "https://data.delijn.be/stops/203121"], ["https://data.delijn.be/stops/204747", "https://data.delijn.be/stops/204749"], ["https://data.delijn.be/stops/505629", "https://data.delijn.be/stops/509807"], ["https://data.delijn.be/stops/404131", "https://data.delijn.be/stops/410213"], ["https://data.delijn.be/stops/205718", "https://data.delijn.be/stops/205719"], ["https://data.delijn.be/stops/101992", "https://data.delijn.be/stops/104494"], ["https://data.delijn.be/stops/402379", "https://data.delijn.be/stops/404730"], ["https://data.delijn.be/stops/500924", "https://data.delijn.be/stops/503341"], ["https://data.delijn.be/stops/206532", "https://data.delijn.be/stops/206562"], ["https://data.delijn.be/stops/208526", "https://data.delijn.be/stops/209705"], ["https://data.delijn.be/stops/105793", "https://data.delijn.be/stops/105795"], ["https://data.delijn.be/stops/505325", "https://data.delijn.be/stops/505626"], ["https://data.delijn.be/stops/102724", "https://data.delijn.be/stops/106025"], ["https://data.delijn.be/stops/200450", "https://data.delijn.be/stops/209722"], ["https://data.delijn.be/stops/501655", "https://data.delijn.be/stops/506435"], ["https://data.delijn.be/stops/300041", "https://data.delijn.be/stops/300042"], ["https://data.delijn.be/stops/101556", "https://data.delijn.be/stops/106000"], ["https://data.delijn.be/stops/501414", "https://data.delijn.be/stops/506413"], ["https://data.delijn.be/stops/102746", "https://data.delijn.be/stops/103039"], ["https://data.delijn.be/stops/200291", "https://data.delijn.be/stops/201359"], ["https://data.delijn.be/stops/404689", "https://data.delijn.be/stops/405748"], ["https://data.delijn.be/stops/200695", "https://data.delijn.be/stops/203787"], ["https://data.delijn.be/stops/200686", "https://data.delijn.be/stops/202376"], ["https://data.delijn.be/stops/302376", "https://data.delijn.be/stops/302377"], ["https://data.delijn.be/stops/208328", "https://data.delijn.be/stops/209328"], ["https://data.delijn.be/stops/404793", "https://data.delijn.be/stops/404798"], ["https://data.delijn.be/stops/201144", "https://data.delijn.be/stops/205923"], ["https://data.delijn.be/stops/503490", "https://data.delijn.be/stops/508487"], ["https://data.delijn.be/stops/303076", "https://data.delijn.be/stops/308654"], ["https://data.delijn.be/stops/200339", "https://data.delijn.be/stops/201339"], ["https://data.delijn.be/stops/401846", "https://data.delijn.be/stops/401856"], ["https://data.delijn.be/stops/505942", "https://data.delijn.be/stops/508056"], ["https://data.delijn.be/stops/210200", "https://data.delijn.be/stops/211095"], ["https://data.delijn.be/stops/102588", "https://data.delijn.be/stops/409531"], ["https://data.delijn.be/stops/501096", "https://data.delijn.be/stops/506097"], ["https://data.delijn.be/stops/407754", "https://data.delijn.be/stops/407755"], ["https://data.delijn.be/stops/207104", "https://data.delijn.be/stops/207105"], ["https://data.delijn.be/stops/109350", "https://data.delijn.be/stops/109355"], ["https://data.delijn.be/stops/304367", "https://data.delijn.be/stops/307380"], ["https://data.delijn.be/stops/406638", "https://data.delijn.be/stops/406640"], ["https://data.delijn.be/stops/102635", "https://data.delijn.be/stops/102640"], ["https://data.delijn.be/stops/200184", "https://data.delijn.be/stops/202757"], ["https://data.delijn.be/stops/502404", "https://data.delijn.be/stops/507581"], ["https://data.delijn.be/stops/204804", "https://data.delijn.be/stops/205804"], ["https://data.delijn.be/stops/501469", "https://data.delijn.be/stops/506466"], ["https://data.delijn.be/stops/107120", "https://data.delijn.be/stops/107230"], ["https://data.delijn.be/stops/206273", "https://data.delijn.be/stops/207272"], ["https://data.delijn.be/stops/505064", "https://data.delijn.be/stops/505068"], ["https://data.delijn.be/stops/300891", "https://data.delijn.be/stops/303648"], ["https://data.delijn.be/stops/205304", "https://data.delijn.be/stops/205305"], ["https://data.delijn.be/stops/101581", "https://data.delijn.be/stops/105451"], ["https://data.delijn.be/stops/305945", "https://data.delijn.be/stops/308428"], ["https://data.delijn.be/stops/403926", "https://data.delijn.be/stops/308751"], ["https://data.delijn.be/stops/502731", "https://data.delijn.be/stops/507732"], ["https://data.delijn.be/stops/103057", "https://data.delijn.be/stops/106837"], ["https://data.delijn.be/stops/305134", "https://data.delijn.be/stops/305143"], ["https://data.delijn.be/stops/404866", "https://data.delijn.be/stops/404878"], ["https://data.delijn.be/stops/109998", "https://data.delijn.be/stops/406468"], ["https://data.delijn.be/stops/106920", "https://data.delijn.be/stops/106945"], ["https://data.delijn.be/stops/202195", "https://data.delijn.be/stops/203197"], ["https://data.delijn.be/stops/103975", "https://data.delijn.be/stops/104635"], ["https://data.delijn.be/stops/203823", "https://data.delijn.be/stops/219503"], ["https://data.delijn.be/stops/303152", "https://data.delijn.be/stops/303154"], ["https://data.delijn.be/stops/105472", "https://data.delijn.be/stops/109948"], ["https://data.delijn.be/stops/103900", "https://data.delijn.be/stops/103901"], ["https://data.delijn.be/stops/305005", "https://data.delijn.be/stops/305037"], ["https://data.delijn.be/stops/300356", "https://data.delijn.be/stops/304698"], ["https://data.delijn.be/stops/104429", "https://data.delijn.be/stops/104593"], ["https://data.delijn.be/stops/107603", "https://data.delijn.be/stops/406796"], ["https://data.delijn.be/stops/207751", "https://data.delijn.be/stops/207767"], ["https://data.delijn.be/stops/102999", "https://data.delijn.be/stops/107417"], ["https://data.delijn.be/stops/502552", "https://data.delijn.be/stops/502558"], ["https://data.delijn.be/stops/202567", "https://data.delijn.be/stops/202613"], ["https://data.delijn.be/stops/505734", "https://data.delijn.be/stops/507607"], ["https://data.delijn.be/stops/306842", "https://data.delijn.be/stops/306844"], ["https://data.delijn.be/stops/307362", "https://data.delijn.be/stops/307365"], ["https://data.delijn.be/stops/108792", "https://data.delijn.be/stops/108793"], ["https://data.delijn.be/stops/203629", "https://data.delijn.be/stops/203630"], ["https://data.delijn.be/stops/408728", "https://data.delijn.be/stops/410343"], ["https://data.delijn.be/stops/401480", "https://data.delijn.be/stops/401775"], ["https://data.delijn.be/stops/507718", "https://data.delijn.be/stops/508845"], ["https://data.delijn.be/stops/407068", "https://data.delijn.be/stops/410014"], ["https://data.delijn.be/stops/206528", "https://data.delijn.be/stops/207529"], ["https://data.delijn.be/stops/400985", "https://data.delijn.be/stops/406585"], ["https://data.delijn.be/stops/405849", "https://data.delijn.be/stops/407293"], ["https://data.delijn.be/stops/300192", "https://data.delijn.be/stops/300201"], ["https://data.delijn.be/stops/208145", "https://data.delijn.be/stops/209403"], ["https://data.delijn.be/stops/108294", "https://data.delijn.be/stops/108296"], ["https://data.delijn.be/stops/501294", "https://data.delijn.be/stops/501324"], ["https://data.delijn.be/stops/408712", "https://data.delijn.be/stops/408720"], ["https://data.delijn.be/stops/403726", "https://data.delijn.be/stops/406709"], ["https://data.delijn.be/stops/206828", "https://data.delijn.be/stops/207254"], ["https://data.delijn.be/stops/108206", "https://data.delijn.be/stops/108208"], ["https://data.delijn.be/stops/302678", "https://data.delijn.be/stops/302680"], ["https://data.delijn.be/stops/109792", "https://data.delijn.be/stops/109793"], ["https://data.delijn.be/stops/405186", "https://data.delijn.be/stops/405280"], ["https://data.delijn.be/stops/503688", "https://data.delijn.be/stops/508689"], ["https://data.delijn.be/stops/200896", "https://data.delijn.be/stops/200929"], ["https://data.delijn.be/stops/504104", "https://data.delijn.be/stops/504106"], ["https://data.delijn.be/stops/505955", "https://data.delijn.be/stops/508161"], ["https://data.delijn.be/stops/103772", "https://data.delijn.be/stops/106435"], ["https://data.delijn.be/stops/403863", "https://data.delijn.be/stops/403864"], ["https://data.delijn.be/stops/300106", "https://data.delijn.be/stops/306837"], ["https://data.delijn.be/stops/404445", "https://data.delijn.be/stops/404447"], ["https://data.delijn.be/stops/102461", "https://data.delijn.be/stops/102463"], ["https://data.delijn.be/stops/207151", "https://data.delijn.be/stops/207152"], ["https://data.delijn.be/stops/506420", "https://data.delijn.be/stops/506421"], ["https://data.delijn.be/stops/104108", "https://data.delijn.be/stops/104109"], ["https://data.delijn.be/stops/200076", "https://data.delijn.be/stops/201525"], ["https://data.delijn.be/stops/505588", "https://data.delijn.be/stops/507491"], ["https://data.delijn.be/stops/400032", "https://data.delijn.be/stops/400043"], ["https://data.delijn.be/stops/200016", "https://data.delijn.be/stops/201016"], ["https://data.delijn.be/stops/308740", "https://data.delijn.be/stops/308742"], ["https://data.delijn.be/stops/105799", "https://data.delijn.be/stops/105812"], ["https://data.delijn.be/stops/407514", "https://data.delijn.be/stops/407525"], ["https://data.delijn.be/stops/501521", "https://data.delijn.be/stops/501525"], ["https://data.delijn.be/stops/304183", "https://data.delijn.be/stops/304184"], ["https://data.delijn.be/stops/208334", "https://data.delijn.be/stops/209334"], ["https://data.delijn.be/stops/202644", "https://data.delijn.be/stops/203094"], ["https://data.delijn.be/stops/109261", "https://data.delijn.be/stops/109263"], ["https://data.delijn.be/stops/205293", "https://data.delijn.be/stops/205537"], ["https://data.delijn.be/stops/400428", "https://data.delijn.be/stops/402767"], ["https://data.delijn.be/stops/301796", "https://data.delijn.be/stops/301812"], ["https://data.delijn.be/stops/406178", "https://data.delijn.be/stops/406179"], ["https://data.delijn.be/stops/302032", "https://data.delijn.be/stops/302033"], ["https://data.delijn.be/stops/509835", "https://data.delijn.be/stops/509838"], ["https://data.delijn.be/stops/108751", "https://data.delijn.be/stops/108752"], ["https://data.delijn.be/stops/101195", "https://data.delijn.be/stops/105185"], ["https://data.delijn.be/stops/103646", "https://data.delijn.be/stops/103651"], ["https://data.delijn.be/stops/202642", "https://data.delijn.be/stops/203641"], ["https://data.delijn.be/stops/503667", "https://data.delijn.be/stops/504368"], ["https://data.delijn.be/stops/508402", "https://data.delijn.be/stops/510017"], ["https://data.delijn.be/stops/300579", "https://data.delijn.be/stops/300993"], ["https://data.delijn.be/stops/407726", "https://data.delijn.be/stops/407727"], ["https://data.delijn.be/stops/105390", "https://data.delijn.be/stops/105400"], ["https://data.delijn.be/stops/401580", "https://data.delijn.be/stops/401581"], ["https://data.delijn.be/stops/303618", "https://data.delijn.be/stops/303619"], ["https://data.delijn.be/stops/200205", "https://data.delijn.be/stops/201253"], ["https://data.delijn.be/stops/202059", "https://data.delijn.be/stops/211075"], ["https://data.delijn.be/stops/206973", "https://data.delijn.be/stops/207611"], ["https://data.delijn.be/stops/503180", "https://data.delijn.be/stops/505638"], ["https://data.delijn.be/stops/301231", "https://data.delijn.be/stops/306327"], ["https://data.delijn.be/stops/402537", "https://data.delijn.be/stops/404093"], ["https://data.delijn.be/stops/505700", "https://data.delijn.be/stops/507569"], ["https://data.delijn.be/stops/302798", "https://data.delijn.be/stops/302807"], ["https://data.delijn.be/stops/202701", "https://data.delijn.be/stops/203700"], ["https://data.delijn.be/stops/400727", "https://data.delijn.be/stops/400729"], ["https://data.delijn.be/stops/400853", "https://data.delijn.be/stops/405666"], ["https://data.delijn.be/stops/404447", "https://data.delijn.be/stops/404536"], ["https://data.delijn.be/stops/200364", "https://data.delijn.be/stops/200549"], ["https://data.delijn.be/stops/405235", "https://data.delijn.be/stops/405286"], ["https://data.delijn.be/stops/203628", "https://data.delijn.be/stops/205068"], ["https://data.delijn.be/stops/405018", "https://data.delijn.be/stops/408923"], ["https://data.delijn.be/stops/300646", "https://data.delijn.be/stops/305814"], ["https://data.delijn.be/stops/106414", "https://data.delijn.be/stops/106415"], ["https://data.delijn.be/stops/204678", "https://data.delijn.be/stops/204684"], ["https://data.delijn.be/stops/505575", "https://data.delijn.be/stops/507188"], ["https://data.delijn.be/stops/300979", "https://data.delijn.be/stops/300998"], ["https://data.delijn.be/stops/206771", "https://data.delijn.be/stops/206778"], ["https://data.delijn.be/stops/400274", "https://data.delijn.be/stops/400413"], ["https://data.delijn.be/stops/501021", "https://data.delijn.be/stops/501687"], ["https://data.delijn.be/stops/504093", "https://data.delijn.be/stops/505193"], ["https://data.delijn.be/stops/202885", "https://data.delijn.be/stops/203884"], ["https://data.delijn.be/stops/201079", "https://data.delijn.be/stops/202896"], ["https://data.delijn.be/stops/502021", "https://data.delijn.be/stops/507154"], ["https://data.delijn.be/stops/501098", "https://data.delijn.be/stops/502208"], ["https://data.delijn.be/stops/506729", "https://data.delijn.be/stops/507566"], ["https://data.delijn.be/stops/401485", "https://data.delijn.be/stops/401496"], ["https://data.delijn.be/stops/202110", "https://data.delijn.be/stops/205093"], ["https://data.delijn.be/stops/402451", "https://data.delijn.be/stops/402452"], ["https://data.delijn.be/stops/303525", "https://data.delijn.be/stops/304081"], ["https://data.delijn.be/stops/304069", "https://data.delijn.be/stops/304114"], ["https://data.delijn.be/stops/201530", "https://data.delijn.be/stops/210091"], ["https://data.delijn.be/stops/305704", "https://data.delijn.be/stops/307840"], ["https://data.delijn.be/stops/108982", "https://data.delijn.be/stops/109692"], ["https://data.delijn.be/stops/300946", "https://data.delijn.be/stops/300947"], ["https://data.delijn.be/stops/400964", "https://data.delijn.be/stops/406875"], ["https://data.delijn.be/stops/302861", "https://data.delijn.be/stops/302912"], ["https://data.delijn.be/stops/300620", "https://data.delijn.be/stops/300691"], ["https://data.delijn.be/stops/301351", "https://data.delijn.be/stops/303279"], ["https://data.delijn.be/stops/504004", "https://data.delijn.be/stops/509004"], ["https://data.delijn.be/stops/108024", "https://data.delijn.be/stops/108058"], ["https://data.delijn.be/stops/509121", "https://data.delijn.be/stops/509129"], ["https://data.delijn.be/stops/205057", "https://data.delijn.be/stops/205058"], ["https://data.delijn.be/stops/103224", "https://data.delijn.be/stops/107035"], ["https://data.delijn.be/stops/106636", "https://data.delijn.be/stops/107188"], ["https://data.delijn.be/stops/502313", "https://data.delijn.be/stops/502592"], ["https://data.delijn.be/stops/403272", "https://data.delijn.be/stops/403382"], ["https://data.delijn.be/stops/102999", "https://data.delijn.be/stops/109796"], ["https://data.delijn.be/stops/206079", "https://data.delijn.be/stops/207304"], ["https://data.delijn.be/stops/204366", "https://data.delijn.be/stops/205367"], ["https://data.delijn.be/stops/109312", "https://data.delijn.be/stops/109357"], ["https://data.delijn.be/stops/408038", "https://data.delijn.be/stops/408088"], ["https://data.delijn.be/stops/200814", "https://data.delijn.be/stops/200881"], ["https://data.delijn.be/stops/501104", "https://data.delijn.be/stops/506104"], ["https://data.delijn.be/stops/206009", "https://data.delijn.be/stops/206073"], ["https://data.delijn.be/stops/505900", "https://data.delijn.be/stops/509908"], ["https://data.delijn.be/stops/407649", "https://data.delijn.be/stops/409775"], ["https://data.delijn.be/stops/101211", "https://data.delijn.be/stops/102748"], ["https://data.delijn.be/stops/208794", "https://data.delijn.be/stops/218022"], ["https://data.delijn.be/stops/108974", "https://data.delijn.be/stops/108977"], ["https://data.delijn.be/stops/504410", "https://data.delijn.be/stops/504436"], ["https://data.delijn.be/stops/508378", "https://data.delijn.be/stops/508531"], ["https://data.delijn.be/stops/400257", "https://data.delijn.be/stops/400258"], ["https://data.delijn.be/stops/404144", "https://data.delijn.be/stops/404174"], ["https://data.delijn.be/stops/300451", "https://data.delijn.be/stops/300452"], ["https://data.delijn.be/stops/202403", "https://data.delijn.be/stops/202501"], ["https://data.delijn.be/stops/307357", "https://data.delijn.be/stops/307362"], ["https://data.delijn.be/stops/202437", "https://data.delijn.be/stops/202573"], ["https://data.delijn.be/stops/502057", "https://data.delijn.be/stops/507043"], ["https://data.delijn.be/stops/109014", "https://data.delijn.be/stops/404047"], ["https://data.delijn.be/stops/301667", "https://data.delijn.be/stops/301670"], ["https://data.delijn.be/stops/206181", "https://data.delijn.be/stops/206958"], ["https://data.delijn.be/stops/202082", "https://data.delijn.be/stops/203026"], ["https://data.delijn.be/stops/400800", "https://data.delijn.be/stops/400801"], ["https://data.delijn.be/stops/502500", "https://data.delijn.be/stops/507500"], ["https://data.delijn.be/stops/503659", "https://data.delijn.be/stops/509943"], ["https://data.delijn.be/stops/300954", "https://data.delijn.be/stops/308856"], ["https://data.delijn.be/stops/304953", "https://data.delijn.be/stops/304955"], ["https://data.delijn.be/stops/201279", "https://data.delijn.be/stops/209736"], ["https://data.delijn.be/stops/104304", "https://data.delijn.be/stops/109746"], ["https://data.delijn.be/stops/102896", "https://data.delijn.be/stops/105515"], ["https://data.delijn.be/stops/101953", "https://data.delijn.be/stops/108796"], ["https://data.delijn.be/stops/302474", "https://data.delijn.be/stops/302498"], ["https://data.delijn.be/stops/200941", "https://data.delijn.be/stops/211066"], ["https://data.delijn.be/stops/405852", "https://data.delijn.be/stops/409428"], ["https://data.delijn.be/stops/203473", "https://data.delijn.be/stops/203474"], ["https://data.delijn.be/stops/502448", "https://data.delijn.be/stops/507466"], ["https://data.delijn.be/stops/103167", "https://data.delijn.be/stops/109923"], ["https://data.delijn.be/stops/505926", "https://data.delijn.be/stops/509243"], ["https://data.delijn.be/stops/402047", "https://data.delijn.be/stops/402270"], ["https://data.delijn.be/stops/300371", "https://data.delijn.be/stops/300382"], ["https://data.delijn.be/stops/200518", "https://data.delijn.be/stops/201518"], ["https://data.delijn.be/stops/504076", "https://data.delijn.be/stops/509076"], ["https://data.delijn.be/stops/108736", "https://data.delijn.be/stops/108738"], ["https://data.delijn.be/stops/503181", "https://data.delijn.be/stops/508865"], ["https://data.delijn.be/stops/508926", "https://data.delijn.be/stops/508931"], ["https://data.delijn.be/stops/208440", "https://data.delijn.be/stops/209439"], ["https://data.delijn.be/stops/302017", "https://data.delijn.be/stops/302864"], ["https://data.delijn.be/stops/201954", "https://data.delijn.be/stops/210055"], ["https://data.delijn.be/stops/101177", "https://data.delijn.be/stops/106782"], ["https://data.delijn.be/stops/208114", "https://data.delijn.be/stops/219009"], ["https://data.delijn.be/stops/103538", "https://data.delijn.be/stops/108058"], ["https://data.delijn.be/stops/405191", "https://data.delijn.be/stops/405245"], ["https://data.delijn.be/stops/400487", "https://data.delijn.be/stops/407688"], ["https://data.delijn.be/stops/502067", "https://data.delijn.be/stops/507454"], ["https://data.delijn.be/stops/408317", "https://data.delijn.be/stops/408350"], ["https://data.delijn.be/stops/200995", "https://data.delijn.be/stops/209952"], ["https://data.delijn.be/stops/505251", "https://data.delijn.be/stops/508914"], ["https://data.delijn.be/stops/402712", "https://data.delijn.be/stops/402713"], ["https://data.delijn.be/stops/303718", "https://data.delijn.be/stops/303757"], ["https://data.delijn.be/stops/208646", "https://data.delijn.be/stops/211111"], ["https://data.delijn.be/stops/503612", "https://data.delijn.be/stops/508540"], ["https://data.delijn.be/stops/403192", "https://data.delijn.be/stops/409316"], ["https://data.delijn.be/stops/102236", "https://data.delijn.be/stops/105867"], ["https://data.delijn.be/stops/302359", "https://data.delijn.be/stops/307013"], ["https://data.delijn.be/stops/101011", "https://data.delijn.be/stops/102340"], ["https://data.delijn.be/stops/103510", "https://data.delijn.be/stops/104595"], ["https://data.delijn.be/stops/208109", "https://data.delijn.be/stops/209798"], ["https://data.delijn.be/stops/201254", "https://data.delijn.be/stops/203562"], ["https://data.delijn.be/stops/101760", "https://data.delijn.be/stops/101796"], ["https://data.delijn.be/stops/106769", "https://data.delijn.be/stops/106770"], ["https://data.delijn.be/stops/301511", "https://data.delijn.be/stops/301512"], ["https://data.delijn.be/stops/106942", "https://data.delijn.be/stops/108699"], ["https://data.delijn.be/stops/300582", "https://data.delijn.be/stops/308896"], ["https://data.delijn.be/stops/304315", "https://data.delijn.be/stops/304322"], ["https://data.delijn.be/stops/102587", "https://data.delijn.be/stops/109109"], ["https://data.delijn.be/stops/108419", "https://data.delijn.be/stops/108438"], ["https://data.delijn.be/stops/409068", "https://data.delijn.be/stops/409071"], ["https://data.delijn.be/stops/502540", "https://data.delijn.be/stops/507545"], ["https://data.delijn.be/stops/300399", "https://data.delijn.be/stops/300401"], ["https://data.delijn.be/stops/505021", "https://data.delijn.be/stops/507925"], ["https://data.delijn.be/stops/405744", "https://data.delijn.be/stops/405745"], ["https://data.delijn.be/stops/307721", "https://data.delijn.be/stops/307722"], ["https://data.delijn.be/stops/202873", "https://data.delijn.be/stops/203737"], ["https://data.delijn.be/stops/401904", "https://data.delijn.be/stops/406248"], ["https://data.delijn.be/stops/207465", "https://data.delijn.be/stops/207466"], ["https://data.delijn.be/stops/405826", "https://data.delijn.be/stops/409420"], ["https://data.delijn.be/stops/407127", "https://data.delijn.be/stops/407326"], ["https://data.delijn.be/stops/304488", "https://data.delijn.be/stops/304489"], ["https://data.delijn.be/stops/206909", "https://data.delijn.be/stops/207108"], ["https://data.delijn.be/stops/306707", "https://data.delijn.be/stops/307983"], ["https://data.delijn.be/stops/300039", "https://data.delijn.be/stops/300042"], ["https://data.delijn.be/stops/302667", "https://data.delijn.be/stops/302686"], ["https://data.delijn.be/stops/503886", "https://data.delijn.be/stops/508884"], ["https://data.delijn.be/stops/103266", "https://data.delijn.be/stops/104407"], ["https://data.delijn.be/stops/406880", "https://data.delijn.be/stops/409036"], ["https://data.delijn.be/stops/502273", "https://data.delijn.be/stops/507521"], ["https://data.delijn.be/stops/200538", "https://data.delijn.be/stops/201161"], ["https://data.delijn.be/stops/305572", "https://data.delijn.be/stops/305573"], ["https://data.delijn.be/stops/303212", "https://data.delijn.be/stops/304186"], ["https://data.delijn.be/stops/502687", "https://data.delijn.be/stops/508338"], ["https://data.delijn.be/stops/200900", "https://data.delijn.be/stops/202239"], ["https://data.delijn.be/stops/305915", "https://data.delijn.be/stops/305918"], ["https://data.delijn.be/stops/207787", "https://data.delijn.be/stops/209407"], ["https://data.delijn.be/stops/300062", "https://data.delijn.be/stops/307204"], ["https://data.delijn.be/stops/501120", "https://data.delijn.be/stops/506120"], ["https://data.delijn.be/stops/202138", "https://data.delijn.be/stops/210114"], ["https://data.delijn.be/stops/403220", "https://data.delijn.be/stops/403408"], ["https://data.delijn.be/stops/502094", "https://data.delijn.be/stops/502127"], ["https://data.delijn.be/stops/300191", "https://data.delijn.be/stops/300192"], ["https://data.delijn.be/stops/402173", "https://data.delijn.be/stops/410041"], ["https://data.delijn.be/stops/402954", "https://data.delijn.be/stops/404925"], ["https://data.delijn.be/stops/400526", "https://data.delijn.be/stops/400581"], ["https://data.delijn.be/stops/205300", "https://data.delijn.be/stops/205301"], ["https://data.delijn.be/stops/504663", "https://data.delijn.be/stops/509370"], ["https://data.delijn.be/stops/400706", "https://data.delijn.be/stops/401919"], ["https://data.delijn.be/stops/102515", "https://data.delijn.be/stops/102520"], ["https://data.delijn.be/stops/400144", "https://data.delijn.be/stops/400172"], ["https://data.delijn.be/stops/503693", "https://data.delijn.be/stops/508693"], ["https://data.delijn.be/stops/204711", "https://data.delijn.be/stops/205896"], ["https://data.delijn.be/stops/408824", "https://data.delijn.be/stops/408833"], ["https://data.delijn.be/stops/202976", "https://data.delijn.be/stops/203395"], ["https://data.delijn.be/stops/302571", "https://data.delijn.be/stops/303299"], ["https://data.delijn.be/stops/207712", "https://data.delijn.be/stops/207713"], ["https://data.delijn.be/stops/208317", "https://data.delijn.be/stops/209299"], ["https://data.delijn.be/stops/304133", "https://data.delijn.be/stops/304134"], ["https://data.delijn.be/stops/505044", "https://data.delijn.be/stops/505045"], ["https://data.delijn.be/stops/502038", "https://data.delijn.be/stops/507038"], ["https://data.delijn.be/stops/301606", "https://data.delijn.be/stops/307675"], ["https://data.delijn.be/stops/504535", "https://data.delijn.be/stops/509979"], ["https://data.delijn.be/stops/405066", "https://data.delijn.be/stops/405810"], ["https://data.delijn.be/stops/203974", "https://data.delijn.be/stops/205235"], ["https://data.delijn.be/stops/300950", "https://data.delijn.be/stops/300951"], ["https://data.delijn.be/stops/208655", "https://data.delijn.be/stops/209090"], ["https://data.delijn.be/stops/302439", "https://data.delijn.be/stops/302442"], ["https://data.delijn.be/stops/302723", "https://data.delijn.be/stops/307337"], ["https://data.delijn.be/stops/206158", "https://data.delijn.be/stops/207158"], ["https://data.delijn.be/stops/402725", "https://data.delijn.be/stops/402730"], ["https://data.delijn.be/stops/504694", "https://data.delijn.be/stops/505375"], ["https://data.delijn.be/stops/102308", "https://data.delijn.be/stops/102944"], ["https://data.delijn.be/stops/302112", "https://data.delijn.be/stops/302113"], ["https://data.delijn.be/stops/304764", "https://data.delijn.be/stops/304765"], ["https://data.delijn.be/stops/208121", "https://data.delijn.be/stops/209206"], ["https://data.delijn.be/stops/201914", "https://data.delijn.be/stops/207966"], ["https://data.delijn.be/stops/306897", "https://data.delijn.be/stops/306899"], ["https://data.delijn.be/stops/508232", "https://data.delijn.be/stops/508263"], ["https://data.delijn.be/stops/502178", "https://data.delijn.be/stops/509723"], ["https://data.delijn.be/stops/301893", "https://data.delijn.be/stops/301894"], ["https://data.delijn.be/stops/403612", "https://data.delijn.be/stops/403654"], ["https://data.delijn.be/stops/205245", "https://data.delijn.be/stops/205248"], ["https://data.delijn.be/stops/204164", "https://data.delijn.be/stops/205770"], ["https://data.delijn.be/stops/211129", "https://data.delijn.be/stops/211130"], ["https://data.delijn.be/stops/505566", "https://data.delijn.be/stops/508752"], ["https://data.delijn.be/stops/402991", "https://data.delijn.be/stops/404827"], ["https://data.delijn.be/stops/200956", "https://data.delijn.be/stops/203392"], ["https://data.delijn.be/stops/401757", "https://data.delijn.be/stops/406341"], ["https://data.delijn.be/stops/300398", "https://data.delijn.be/stops/304588"], ["https://data.delijn.be/stops/407089", "https://data.delijn.be/stops/407258"], ["https://data.delijn.be/stops/102441", "https://data.delijn.be/stops/102442"], ["https://data.delijn.be/stops/202208", "https://data.delijn.be/stops/203208"], ["https://data.delijn.be/stops/408168", "https://data.delijn.be/stops/408169"], ["https://data.delijn.be/stops/304753", "https://data.delijn.be/stops/308699"], ["https://data.delijn.be/stops/505954", "https://data.delijn.be/stops/505958"], ["https://data.delijn.be/stops/404572", "https://data.delijn.be/stops/404583"], ["https://data.delijn.be/stops/504203", "https://data.delijn.be/stops/504207"], ["https://data.delijn.be/stops/201694", "https://data.delijn.be/stops/203033"], ["https://data.delijn.be/stops/201304", "https://data.delijn.be/stops/203757"], ["https://data.delijn.be/stops/202642", "https://data.delijn.be/stops/210050"], ["https://data.delijn.be/stops/500957", "https://data.delijn.be/stops/503282"], ["https://data.delijn.be/stops/503656", "https://data.delijn.be/stops/508748"], ["https://data.delijn.be/stops/307441", "https://data.delijn.be/stops/307825"], ["https://data.delijn.be/stops/104028", "https://data.delijn.be/stops/106939"], ["https://data.delijn.be/stops/508154", "https://data.delijn.be/stops/509843"], ["https://data.delijn.be/stops/504444", "https://data.delijn.be/stops/509444"], ["https://data.delijn.be/stops/408117", "https://data.delijn.be/stops/408231"], ["https://data.delijn.be/stops/407004", "https://data.delijn.be/stops/407051"], ["https://data.delijn.be/stops/109441", "https://data.delijn.be/stops/109520"], ["https://data.delijn.be/stops/202463", "https://data.delijn.be/stops/203463"], ["https://data.delijn.be/stops/504507", "https://data.delijn.be/stops/509016"], ["https://data.delijn.be/stops/202908", "https://data.delijn.be/stops/203817"], ["https://data.delijn.be/stops/102869", "https://data.delijn.be/stops/104980"], ["https://data.delijn.be/stops/300331", "https://data.delijn.be/stops/300340"], ["https://data.delijn.be/stops/502184", "https://data.delijn.be/stops/507189"], ["https://data.delijn.be/stops/502461", "https://data.delijn.be/stops/507464"], ["https://data.delijn.be/stops/103498", "https://data.delijn.be/stops/103501"], ["https://data.delijn.be/stops/502027", "https://data.delijn.be/stops/502041"], ["https://data.delijn.be/stops/208304", "https://data.delijn.be/stops/209306"], ["https://data.delijn.be/stops/406112", "https://data.delijn.be/stops/407145"], ["https://data.delijn.be/stops/109677", "https://data.delijn.be/stops/109680"], ["https://data.delijn.be/stops/304247", "https://data.delijn.be/stops/304286"], ["https://data.delijn.be/stops/204633", "https://data.delijn.be/stops/205633"], ["https://data.delijn.be/stops/101833", "https://data.delijn.be/stops/107091"], ["https://data.delijn.be/stops/501092", "https://data.delijn.be/stops/506225"], ["https://data.delijn.be/stops/502077", "https://data.delijn.be/stops/507080"], ["https://data.delijn.be/stops/300805", "https://data.delijn.be/stops/304774"], ["https://data.delijn.be/stops/306112", "https://data.delijn.be/stops/306113"], ["https://data.delijn.be/stops/301745", "https://data.delijn.be/stops/301747"], ["https://data.delijn.be/stops/202675", "https://data.delijn.be/stops/203675"], ["https://data.delijn.be/stops/107359", "https://data.delijn.be/stops/107361"], ["https://data.delijn.be/stops/504965", "https://data.delijn.be/stops/508720"], ["https://data.delijn.be/stops/503315", "https://data.delijn.be/stops/508307"], ["https://data.delijn.be/stops/206064", "https://data.delijn.be/stops/207502"], ["https://data.delijn.be/stops/302172", "https://data.delijn.be/stops/302183"], ["https://data.delijn.be/stops/304368", "https://data.delijn.be/stops/307372"], ["https://data.delijn.be/stops/204304", "https://data.delijn.be/stops/205297"], ["https://data.delijn.be/stops/503817", "https://data.delijn.be/stops/508821"], ["https://data.delijn.be/stops/502740", "https://data.delijn.be/stops/507740"], ["https://data.delijn.be/stops/505116", "https://data.delijn.be/stops/505435"], ["https://data.delijn.be/stops/105557", "https://data.delijn.be/stops/105561"], ["https://data.delijn.be/stops/204412", "https://data.delijn.be/stops/205428"], ["https://data.delijn.be/stops/302306", "https://data.delijn.be/stops/302316"], ["https://data.delijn.be/stops/501441", "https://data.delijn.be/stops/506443"], ["https://data.delijn.be/stops/200967", "https://data.delijn.be/stops/201674"], ["https://data.delijn.be/stops/406829", "https://data.delijn.be/stops/409457"], ["https://data.delijn.be/stops/509410", "https://data.delijn.be/stops/509696"], ["https://data.delijn.be/stops/305334", "https://data.delijn.be/stops/307602"], ["https://data.delijn.be/stops/404559", "https://data.delijn.be/stops/409292"], ["https://data.delijn.be/stops/101199", "https://data.delijn.be/stops/101661"], ["https://data.delijn.be/stops/200478", "https://data.delijn.be/stops/211072"], ["https://data.delijn.be/stops/402776", "https://data.delijn.be/stops/406472"], ["https://data.delijn.be/stops/404401", "https://data.delijn.be/stops/404424"], ["https://data.delijn.be/stops/400204", "https://data.delijn.be/stops/400215"], ["https://data.delijn.be/stops/204398", "https://data.delijn.be/stops/205772"], ["https://data.delijn.be/stops/407906", "https://data.delijn.be/stops/408421"], ["https://data.delijn.be/stops/403142", "https://data.delijn.be/stops/403145"], ["https://data.delijn.be/stops/504213", "https://data.delijn.be/stops/504218"], ["https://data.delijn.be/stops/203927", "https://data.delijn.be/stops/208724"], ["https://data.delijn.be/stops/200804", "https://data.delijn.be/stops/203281"], ["https://data.delijn.be/stops/301662", "https://data.delijn.be/stops/302137"], ["https://data.delijn.be/stops/200861", "https://data.delijn.be/stops/201493"], ["https://data.delijn.be/stops/501450", "https://data.delijn.be/stops/501454"], ["https://data.delijn.be/stops/503439", "https://data.delijn.be/stops/508694"], ["https://data.delijn.be/stops/206248", "https://data.delijn.be/stops/207248"], ["https://data.delijn.be/stops/400734", "https://data.delijn.be/stops/405172"], ["https://data.delijn.be/stops/401391", "https://data.delijn.be/stops/406568"], ["https://data.delijn.be/stops/200163", "https://data.delijn.be/stops/201419"], ["https://data.delijn.be/stops/504004", "https://data.delijn.be/stops/509317"], ["https://data.delijn.be/stops/206521", "https://data.delijn.be/stops/207521"], ["https://data.delijn.be/stops/300753", "https://data.delijn.be/stops/300754"], ["https://data.delijn.be/stops/404107", "https://data.delijn.be/stops/408554"], ["https://data.delijn.be/stops/203344", "https://data.delijn.be/stops/209747"], ["https://data.delijn.be/stops/200176", "https://data.delijn.be/stops/201337"], ["https://data.delijn.be/stops/206941", "https://data.delijn.be/stops/219012"], ["https://data.delijn.be/stops/301371", "https://data.delijn.be/stops/304696"], ["https://data.delijn.be/stops/303083", "https://data.delijn.be/stops/303146"], ["https://data.delijn.be/stops/400799", "https://data.delijn.be/stops/409604"], ["https://data.delijn.be/stops/201636", "https://data.delijn.be/stops/201941"], ["https://data.delijn.be/stops/201876", "https://data.delijn.be/stops/203658"], ["https://data.delijn.be/stops/302406", "https://data.delijn.be/stops/308673"], ["https://data.delijn.be/stops/400408", "https://data.delijn.be/stops/400409"], ["https://data.delijn.be/stops/503746", "https://data.delijn.be/stops/503749"], ["https://data.delijn.be/stops/206093", "https://data.delijn.be/stops/207094"], ["https://data.delijn.be/stops/304954", "https://data.delijn.be/stops/304964"], ["https://data.delijn.be/stops/505737", "https://data.delijn.be/stops/507710"], ["https://data.delijn.be/stops/103965", "https://data.delijn.be/stops/105400"], ["https://data.delijn.be/stops/308749", "https://data.delijn.be/stops/308751"], ["https://data.delijn.be/stops/108627", "https://data.delijn.be/stops/301853"], ["https://data.delijn.be/stops/301525", "https://data.delijn.be/stops/301527"], ["https://data.delijn.be/stops/306698", "https://data.delijn.be/stops/307934"], ["https://data.delijn.be/stops/503947", "https://data.delijn.be/stops/504795"], ["https://data.delijn.be/stops/404338", "https://data.delijn.be/stops/404339"], ["https://data.delijn.be/stops/206556", "https://data.delijn.be/stops/207556"], ["https://data.delijn.be/stops/401519", "https://data.delijn.be/stops/401723"], ["https://data.delijn.be/stops/507023", "https://data.delijn.be/stops/509758"], ["https://data.delijn.be/stops/409393", "https://data.delijn.be/stops/409394"], ["https://data.delijn.be/stops/202442", "https://data.delijn.be/stops/203379"], ["https://data.delijn.be/stops/202966", "https://data.delijn.be/stops/203966"], ["https://data.delijn.be/stops/304172", "https://data.delijn.be/stops/307539"], ["https://data.delijn.be/stops/305593", "https://data.delijn.be/stops/308816"], ["https://data.delijn.be/stops/208062", "https://data.delijn.be/stops/209062"], ["https://data.delijn.be/stops/200488", "https://data.delijn.be/stops/202454"], ["https://data.delijn.be/stops/406003", "https://data.delijn.be/stops/406100"], ["https://data.delijn.be/stops/502181", "https://data.delijn.be/stops/502686"], ["https://data.delijn.be/stops/300855", "https://data.delijn.be/stops/306052"], ["https://data.delijn.be/stops/202607", "https://data.delijn.be/stops/209979"], ["https://data.delijn.be/stops/105581", "https://data.delijn.be/stops/305787"], ["https://data.delijn.be/stops/504225", "https://data.delijn.be/stops/509622"], ["https://data.delijn.be/stops/404175", "https://data.delijn.be/stops/404199"], ["https://data.delijn.be/stops/200560", "https://data.delijn.be/stops/201662"], ["https://data.delijn.be/stops/106792", "https://data.delijn.be/stops/106794"], ["https://data.delijn.be/stops/306066", "https://data.delijn.be/stops/307204"], ["https://data.delijn.be/stops/502311", "https://data.delijn.be/stops/507311"], ["https://data.delijn.be/stops/502316", "https://data.delijn.be/stops/507316"], ["https://data.delijn.be/stops/306162", "https://data.delijn.be/stops/308930"], ["https://data.delijn.be/stops/103493", "https://data.delijn.be/stops/103501"], ["https://data.delijn.be/stops/404584", "https://data.delijn.be/stops/405620"], ["https://data.delijn.be/stops/201768", "https://data.delijn.be/stops/201782"], ["https://data.delijn.be/stops/203108", "https://data.delijn.be/stops/205793"], ["https://data.delijn.be/stops/401311", "https://data.delijn.be/stops/401321"], ["https://data.delijn.be/stops/300896", "https://data.delijn.be/stops/300940"], ["https://data.delijn.be/stops/506179", "https://data.delijn.be/stops/506775"], ["https://data.delijn.be/stops/501187", "https://data.delijn.be/stops/505722"], ["https://data.delijn.be/stops/203027", "https://data.delijn.be/stops/203030"], ["https://data.delijn.be/stops/301528", "https://data.delijn.be/stops/301581"], ["https://data.delijn.be/stops/507204", "https://data.delijn.be/stops/508691"], ["https://data.delijn.be/stops/105128", "https://data.delijn.be/stops/105198"], ["https://data.delijn.be/stops/104601", "https://data.delijn.be/stops/106825"], ["https://data.delijn.be/stops/403715", "https://data.delijn.be/stops/406889"], ["https://data.delijn.be/stops/104592", "https://data.delijn.be/stops/108033"], ["https://data.delijn.be/stops/206340", "https://data.delijn.be/stops/206366"], ["https://data.delijn.be/stops/102668", "https://data.delijn.be/stops/300110"], ["https://data.delijn.be/stops/503359", "https://data.delijn.be/stops/508813"], ["https://data.delijn.be/stops/404628", "https://data.delijn.be/stops/404638"], ["https://data.delijn.be/stops/301999", "https://data.delijn.be/stops/306317"], ["https://data.delijn.be/stops/501027", "https://data.delijn.be/stops/506129"], ["https://data.delijn.be/stops/502423", "https://data.delijn.be/stops/507422"], ["https://data.delijn.be/stops/301898", "https://data.delijn.be/stops/306957"], ["https://data.delijn.be/stops/206957", "https://data.delijn.be/stops/207957"], ["https://data.delijn.be/stops/206644", "https://data.delijn.be/stops/209686"], ["https://data.delijn.be/stops/102280", "https://data.delijn.be/stops/107450"], ["https://data.delijn.be/stops/203742", "https://data.delijn.be/stops/203743"], ["https://data.delijn.be/stops/404939", "https://data.delijn.be/stops/405648"], ["https://data.delijn.be/stops/406576", "https://data.delijn.be/stops/407184"], ["https://data.delijn.be/stops/102023", "https://data.delijn.be/stops/109962"], ["https://data.delijn.be/stops/105137", "https://data.delijn.be/stops/108804"], ["https://data.delijn.be/stops/505184", "https://data.delijn.be/stops/509555"], ["https://data.delijn.be/stops/405733", "https://data.delijn.be/stops/405735"], ["https://data.delijn.be/stops/501073", "https://data.delijn.be/stops/506381"], ["https://data.delijn.be/stops/401521", "https://data.delijn.be/stops/402023"], ["https://data.delijn.be/stops/405108", "https://data.delijn.be/stops/405109"], ["https://data.delijn.be/stops/200924", "https://data.delijn.be/stops/203702"], ["https://data.delijn.be/stops/104133", "https://data.delijn.be/stops/108038"], ["https://data.delijn.be/stops/304596", "https://data.delijn.be/stops/304637"], ["https://data.delijn.be/stops/109750", "https://data.delijn.be/stops/109900"], ["https://data.delijn.be/stops/308139", "https://data.delijn.be/stops/308143"], ["https://data.delijn.be/stops/201663", "https://data.delijn.be/stops/202321"], ["https://data.delijn.be/stops/501337", "https://data.delijn.be/stops/506477"], ["https://data.delijn.be/stops/501347", "https://data.delijn.be/stops/506292"], ["https://data.delijn.be/stops/303416", "https://data.delijn.be/stops/303417"], ["https://data.delijn.be/stops/409676", "https://data.delijn.be/stops/409677"], ["https://data.delijn.be/stops/504272", "https://data.delijn.be/stops/504699"], ["https://data.delijn.be/stops/502673", "https://data.delijn.be/stops/507269"], ["https://data.delijn.be/stops/500158", "https://data.delijn.be/stops/508863"], ["https://data.delijn.be/stops/200751", "https://data.delijn.be/stops/200752"], ["https://data.delijn.be/stops/501695", "https://data.delijn.be/stops/505690"], ["https://data.delijn.be/stops/301967", "https://data.delijn.be/stops/307227"], ["https://data.delijn.be/stops/305689", "https://data.delijn.be/stops/305703"], ["https://data.delijn.be/stops/305333", "https://data.delijn.be/stops/305334"], ["https://data.delijn.be/stops/201279", "https://data.delijn.be/stops/201619"], ["https://data.delijn.be/stops/208145", "https://data.delijn.be/stops/209698"], ["https://data.delijn.be/stops/207958", "https://data.delijn.be/stops/302152"], ["https://data.delijn.be/stops/504128", "https://data.delijn.be/stops/505305"], ["https://data.delijn.be/stops/405717", "https://data.delijn.be/stops/405745"], ["https://data.delijn.be/stops/502204", "https://data.delijn.be/stops/503991"], ["https://data.delijn.be/stops/102185", "https://data.delijn.be/stops/102345"], ["https://data.delijn.be/stops/508520", "https://data.delijn.be/stops/508722"], ["https://data.delijn.be/stops/205673", "https://data.delijn.be/stops/205676"], ["https://data.delijn.be/stops/204999", "https://data.delijn.be/stops/207921"], ["https://data.delijn.be/stops/206803", "https://data.delijn.be/stops/208530"], ["https://data.delijn.be/stops/101903", "https://data.delijn.be/stops/105456"], ["https://data.delijn.be/stops/207679", "https://data.delijn.be/stops/209149"], ["https://data.delijn.be/stops/302609", "https://data.delijn.be/stops/302635"], ["https://data.delijn.be/stops/306007", "https://data.delijn.be/stops/308657"], ["https://data.delijn.be/stops/208048", "https://data.delijn.be/stops/209048"], ["https://data.delijn.be/stops/105653", "https://data.delijn.be/stops/105654"], ["https://data.delijn.be/stops/405180", "https://data.delijn.be/stops/405181"], ["https://data.delijn.be/stops/503717", "https://data.delijn.be/stops/507352"], ["https://data.delijn.be/stops/402602", "https://data.delijn.be/stops/408079"], ["https://data.delijn.be/stops/206776", "https://data.delijn.be/stops/209487"], ["https://data.delijn.be/stops/302843", "https://data.delijn.be/stops/302845"], ["https://data.delijn.be/stops/302334", "https://data.delijn.be/stops/302571"], ["https://data.delijn.be/stops/409722", "https://data.delijn.be/stops/409723"], ["https://data.delijn.be/stops/409330", "https://data.delijn.be/stops/409331"], ["https://data.delijn.be/stops/208259", "https://data.delijn.be/stops/208260"], ["https://data.delijn.be/stops/301076", "https://data.delijn.be/stops/305495"], ["https://data.delijn.be/stops/305226", "https://data.delijn.be/stops/305264"], ["https://data.delijn.be/stops/101519", "https://data.delijn.be/stops/109051"], ["https://data.delijn.be/stops/207803", "https://data.delijn.be/stops/300219"], ["https://data.delijn.be/stops/204506", "https://data.delijn.be/stops/204821"], ["https://data.delijn.be/stops/307818", "https://data.delijn.be/stops/308754"], ["https://data.delijn.be/stops/205474", "https://data.delijn.be/stops/205475"], ["https://data.delijn.be/stops/300603", "https://data.delijn.be/stops/300606"], ["https://data.delijn.be/stops/505153", "https://data.delijn.be/stops/505154"], ["https://data.delijn.be/stops/501365", "https://data.delijn.be/stops/506368"], ["https://data.delijn.be/stops/300177", "https://data.delijn.be/stops/300228"], ["https://data.delijn.be/stops/506130", "https://data.delijn.be/stops/506134"], ["https://data.delijn.be/stops/104031", "https://data.delijn.be/stops/105083"], ["https://data.delijn.be/stops/107680", "https://data.delijn.be/stops/108620"], ["https://data.delijn.be/stops/303180", "https://data.delijn.be/stops/303181"], ["https://data.delijn.be/stops/500022", "https://data.delijn.be/stops/500023"], ["https://data.delijn.be/stops/108734", "https://data.delijn.be/stops/108737"], ["https://data.delijn.be/stops/403834", "https://data.delijn.be/stops/405635"], ["https://data.delijn.be/stops/104605", "https://data.delijn.be/stops/104681"], ["https://data.delijn.be/stops/500029", "https://data.delijn.be/stops/503121"], ["https://data.delijn.be/stops/402782", "https://data.delijn.be/stops/402796"], ["https://data.delijn.be/stops/305649", "https://data.delijn.be/stops/305671"], ["https://data.delijn.be/stops/501416", "https://data.delijn.be/stops/501475"], ["https://data.delijn.be/stops/401084", "https://data.delijn.be/stops/401166"], ["https://data.delijn.be/stops/204680", "https://data.delijn.be/stops/205680"], ["https://data.delijn.be/stops/208132", "https://data.delijn.be/stops/208199"], ["https://data.delijn.be/stops/400041", "https://data.delijn.be/stops/400042"], ["https://data.delijn.be/stops/400761", "https://data.delijn.be/stops/400879"], ["https://data.delijn.be/stops/302156", "https://data.delijn.be/stops/307186"], ["https://data.delijn.be/stops/503186", "https://data.delijn.be/stops/503192"], ["https://data.delijn.be/stops/504546", "https://data.delijn.be/stops/504551"], ["https://data.delijn.be/stops/208051", "https://data.delijn.be/stops/209051"], ["https://data.delijn.be/stops/302168", "https://data.delijn.be/stops/304165"], ["https://data.delijn.be/stops/302878", "https://data.delijn.be/stops/303139"], ["https://data.delijn.be/stops/106906", "https://data.delijn.be/stops/106907"], ["https://data.delijn.be/stops/206201", "https://data.delijn.be/stops/206203"], ["https://data.delijn.be/stops/505650", "https://data.delijn.be/stops/507756"], ["https://data.delijn.be/stops/205107", "https://data.delijn.be/stops/205209"], ["https://data.delijn.be/stops/206431", "https://data.delijn.be/stops/209690"], ["https://data.delijn.be/stops/210057", "https://data.delijn.be/stops/211063"], ["https://data.delijn.be/stops/201197", "https://data.delijn.be/stops/201200"], ["https://data.delijn.be/stops/502749", "https://data.delijn.be/stops/507418"], ["https://data.delijn.be/stops/202161", "https://data.delijn.be/stops/202282"], ["https://data.delijn.be/stops/204103", "https://data.delijn.be/stops/206390"], ["https://data.delijn.be/stops/101355", "https://data.delijn.be/stops/101806"], ["https://data.delijn.be/stops/108264", "https://data.delijn.be/stops/108266"], ["https://data.delijn.be/stops/105283", "https://data.delijn.be/stops/107995"], ["https://data.delijn.be/stops/206725", "https://data.delijn.be/stops/207986"], ["https://data.delijn.be/stops/206974", "https://data.delijn.be/stops/207974"], ["https://data.delijn.be/stops/404548", "https://data.delijn.be/stops/409601"], ["https://data.delijn.be/stops/204291", "https://data.delijn.be/stops/204330"], ["https://data.delijn.be/stops/505949", "https://data.delijn.be/stops/505990"], ["https://data.delijn.be/stops/102244", "https://data.delijn.be/stops/105877"], ["https://data.delijn.be/stops/501387", "https://data.delijn.be/stops/506392"], ["https://data.delijn.be/stops/101686", "https://data.delijn.be/stops/101691"], ["https://data.delijn.be/stops/504150", "https://data.delijn.be/stops/509161"], ["https://data.delijn.be/stops/304888", "https://data.delijn.be/stops/304906"], ["https://data.delijn.be/stops/206175", "https://data.delijn.be/stops/207481"], ["https://data.delijn.be/stops/208545", "https://data.delijn.be/stops/209544"], ["https://data.delijn.be/stops/101010", "https://data.delijn.be/stops/102950"], ["https://data.delijn.be/stops/403779", "https://data.delijn.be/stops/404264"], ["https://data.delijn.be/stops/106925", "https://data.delijn.be/stops/106941"], ["https://data.delijn.be/stops/200406", "https://data.delijn.be/stops/201406"], ["https://data.delijn.be/stops/406374", "https://data.delijn.be/stops/407721"], ["https://data.delijn.be/stops/206362", "https://data.delijn.be/stops/207362"], ["https://data.delijn.be/stops/401647", "https://data.delijn.be/stops/408713"], ["https://data.delijn.be/stops/200844", "https://data.delijn.be/stops/202330"], ["https://data.delijn.be/stops/204441", "https://data.delijn.be/stops/205396"], ["https://data.delijn.be/stops/506095", "https://data.delijn.be/stops/506098"], ["https://data.delijn.be/stops/101298", "https://data.delijn.be/stops/105783"], ["https://data.delijn.be/stops/208117", "https://data.delijn.be/stops/209234"], ["https://data.delijn.be/stops/503879", "https://data.delijn.be/stops/508881"], ["https://data.delijn.be/stops/306554", "https://data.delijn.be/stops/306557"], ["https://data.delijn.be/stops/105405", "https://data.delijn.be/stops/105410"], ["https://data.delijn.be/stops/204241", "https://data.delijn.be/stops/205175"], ["https://data.delijn.be/stops/206082", "https://data.delijn.be/stops/217010"], ["https://data.delijn.be/stops/503706", "https://data.delijn.be/stops/508647"], ["https://data.delijn.be/stops/307108", "https://data.delijn.be/stops/307114"], ["https://data.delijn.be/stops/301103", "https://data.delijn.be/stops/303325"], ["https://data.delijn.be/stops/504123", "https://data.delijn.be/stops/504129"], ["https://data.delijn.be/stops/402524", "https://data.delijn.be/stops/402554"], ["https://data.delijn.be/stops/406520", "https://data.delijn.be/stops/407444"], ["https://data.delijn.be/stops/208223", "https://data.delijn.be/stops/209223"], ["https://data.delijn.be/stops/503461", "https://data.delijn.be/stops/503465"], ["https://data.delijn.be/stops/102924", "https://data.delijn.be/stops/107953"], ["https://data.delijn.be/stops/300702", "https://data.delijn.be/stops/308066"], ["https://data.delijn.be/stops/200269", "https://data.delijn.be/stops/201393"], ["https://data.delijn.be/stops/305558", "https://data.delijn.be/stops/308652"], ["https://data.delijn.be/stops/305494", "https://data.delijn.be/stops/305495"], ["https://data.delijn.be/stops/200863", "https://data.delijn.be/stops/201493"], ["https://data.delijn.be/stops/203933", "https://data.delijn.be/stops/208681"], ["https://data.delijn.be/stops/403788", "https://data.delijn.be/stops/408962"], ["https://data.delijn.be/stops/206106", "https://data.delijn.be/stops/206910"], ["https://data.delijn.be/stops/503647", "https://data.delijn.be/stops/509750"], ["https://data.delijn.be/stops/300514", "https://data.delijn.be/stops/300539"], ["https://data.delijn.be/stops/407204", "https://data.delijn.be/stops/407206"], ["https://data.delijn.be/stops/306628", "https://data.delijn.be/stops/306629"], ["https://data.delijn.be/stops/407326", "https://data.delijn.be/stops/407327"], ["https://data.delijn.be/stops/505515", "https://data.delijn.be/stops/505615"], ["https://data.delijn.be/stops/300664", "https://data.delijn.be/stops/305814"], ["https://data.delijn.be/stops/403565", "https://data.delijn.be/stops/410287"], ["https://data.delijn.be/stops/200103", "https://data.delijn.be/stops/200140"], ["https://data.delijn.be/stops/402532", "https://data.delijn.be/stops/402539"], ["https://data.delijn.be/stops/404662", "https://data.delijn.be/stops/404665"], ["https://data.delijn.be/stops/207358", "https://data.delijn.be/stops/207740"], ["https://data.delijn.be/stops/405950", "https://data.delijn.be/stops/308155"], ["https://data.delijn.be/stops/208449", "https://data.delijn.be/stops/218015"], ["https://data.delijn.be/stops/503396", "https://data.delijn.be/stops/508387"], ["https://data.delijn.be/stops/508619", "https://data.delijn.be/stops/508626"], ["https://data.delijn.be/stops/504993", "https://data.delijn.be/stops/505972"], ["https://data.delijn.be/stops/403486", "https://data.delijn.be/stops/410114"], ["https://data.delijn.be/stops/400569", "https://data.delijn.be/stops/403186"], ["https://data.delijn.be/stops/207512", "https://data.delijn.be/stops/207598"], ["https://data.delijn.be/stops/305070", "https://data.delijn.be/stops/308927"], ["https://data.delijn.be/stops/304581", "https://data.delijn.be/stops/304624"], ["https://data.delijn.be/stops/302348", "https://data.delijn.be/stops/302367"], ["https://data.delijn.be/stops/509217", "https://data.delijn.be/stops/509221"], ["https://data.delijn.be/stops/401015", "https://data.delijn.be/stops/401019"], ["https://data.delijn.be/stops/201473", "https://data.delijn.be/stops/208939"], ["https://data.delijn.be/stops/208167", "https://data.delijn.be/stops/208175"], ["https://data.delijn.be/stops/408567", "https://data.delijn.be/stops/408795"], ["https://data.delijn.be/stops/201047", "https://data.delijn.be/stops/203470"], ["https://data.delijn.be/stops/209606", "https://data.delijn.be/stops/209607"], ["https://data.delijn.be/stops/102054", "https://data.delijn.be/stops/104565"], ["https://data.delijn.be/stops/108284", "https://data.delijn.be/stops/109363"], ["https://data.delijn.be/stops/207542", "https://data.delijn.be/stops/209750"], ["https://data.delijn.be/stops/402312", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/401486", "https://data.delijn.be/stops/401887"], ["https://data.delijn.be/stops/508271", "https://data.delijn.be/stops/509822"], ["https://data.delijn.be/stops/504299", "https://data.delijn.be/stops/504307"], ["https://data.delijn.be/stops/109196", "https://data.delijn.be/stops/109206"], ["https://data.delijn.be/stops/400314", "https://data.delijn.be/stops/400315"], ["https://data.delijn.be/stops/401038", "https://data.delijn.be/stops/401100"], ["https://data.delijn.be/stops/105993", "https://data.delijn.be/stops/107957"], ["https://data.delijn.be/stops/105728", "https://data.delijn.be/stops/109845"], ["https://data.delijn.be/stops/404786", "https://data.delijn.be/stops/404832"], ["https://data.delijn.be/stops/208742", "https://data.delijn.be/stops/208767"], ["https://data.delijn.be/stops/408552", "https://data.delijn.be/stops/408647"], ["https://data.delijn.be/stops/101217", "https://data.delijn.be/stops/101218"], ["https://data.delijn.be/stops/102720", "https://data.delijn.be/stops/102874"], ["https://data.delijn.be/stops/204513", "https://data.delijn.be/stops/205334"], ["https://data.delijn.be/stops/207369", "https://data.delijn.be/stops/207371"], ["https://data.delijn.be/stops/502401", "https://data.delijn.be/stops/502588"], ["https://data.delijn.be/stops/204734", "https://data.delijn.be/stops/205758"], ["https://data.delijn.be/stops/504649", "https://data.delijn.be/stops/509116"], ["https://data.delijn.be/stops/203896", "https://data.delijn.be/stops/211126"], ["https://data.delijn.be/stops/300687", "https://data.delijn.be/stops/300695"], ["https://data.delijn.be/stops/206532", "https://data.delijn.be/stops/206582"], ["https://data.delijn.be/stops/502800", "https://data.delijn.be/stops/502801"], ["https://data.delijn.be/stops/308477", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/102979", "https://data.delijn.be/stops/106833"], ["https://data.delijn.be/stops/405618", "https://data.delijn.be/stops/407160"], ["https://data.delijn.be/stops/404473", "https://data.delijn.be/stops/404567"], ["https://data.delijn.be/stops/106171", "https://data.delijn.be/stops/106466"], ["https://data.delijn.be/stops/204299", "https://data.delijn.be/stops/204352"], ["https://data.delijn.be/stops/103690", "https://data.delijn.be/stops/105625"], ["https://data.delijn.be/stops/401408", "https://data.delijn.be/stops/304600"], ["https://data.delijn.be/stops/204519", "https://data.delijn.be/stops/205483"], ["https://data.delijn.be/stops/104419", "https://data.delijn.be/stops/204287"], ["https://data.delijn.be/stops/201168", "https://data.delijn.be/stops/202642"], ["https://data.delijn.be/stops/401045", "https://data.delijn.be/stops/408939"], ["https://data.delijn.be/stops/501194", "https://data.delijn.be/stops/506194"], ["https://data.delijn.be/stops/400306", "https://data.delijn.be/stops/400439"], ["https://data.delijn.be/stops/200966", "https://data.delijn.be/stops/209039"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/504608"], ["https://data.delijn.be/stops/303378", "https://data.delijn.be/stops/308893"], ["https://data.delijn.be/stops/403311", "https://data.delijn.be/stops/410013"], ["https://data.delijn.be/stops/305519", "https://data.delijn.be/stops/307831"], ["https://data.delijn.be/stops/302691", "https://data.delijn.be/stops/302698"], ["https://data.delijn.be/stops/408272", "https://data.delijn.be/stops/408375"], ["https://data.delijn.be/stops/109057", "https://data.delijn.be/stops/405032"], ["https://data.delijn.be/stops/503594", "https://data.delijn.be/stops/508597"], ["https://data.delijn.be/stops/304939", "https://data.delijn.be/stops/304949"], ["https://data.delijn.be/stops/506615", "https://data.delijn.be/stops/506616"], ["https://data.delijn.be/stops/400184", "https://data.delijn.be/stops/407665"], ["https://data.delijn.be/stops/504019", "https://data.delijn.be/stops/509021"], ["https://data.delijn.be/stops/405433", "https://data.delijn.be/stops/408529"], ["https://data.delijn.be/stops/408820", "https://data.delijn.be/stops/408832"], ["https://data.delijn.be/stops/105092", "https://data.delijn.be/stops/108882"], ["https://data.delijn.be/stops/301752", "https://data.delijn.be/stops/307457"], ["https://data.delijn.be/stops/501359", "https://data.delijn.be/stops/501568"], ["https://data.delijn.be/stops/303153", "https://data.delijn.be/stops/303193"], ["https://data.delijn.be/stops/308377", "https://data.delijn.be/stops/308407"], ["https://data.delijn.be/stops/508450", "https://data.delijn.be/stops/508467"], ["https://data.delijn.be/stops/303872", "https://data.delijn.be/stops/304080"], ["https://data.delijn.be/stops/204729", "https://data.delijn.be/stops/205731"], ["https://data.delijn.be/stops/403263", "https://data.delijn.be/stops/403454"], ["https://data.delijn.be/stops/102150", "https://data.delijn.be/stops/106010"], ["https://data.delijn.be/stops/406432", "https://data.delijn.be/stops/409407"], ["https://data.delijn.be/stops/201307", "https://data.delijn.be/stops/211090"], ["https://data.delijn.be/stops/406286", "https://data.delijn.be/stops/406287"], ["https://data.delijn.be/stops/107955", "https://data.delijn.be/stops/107956"], ["https://data.delijn.be/stops/205822", "https://data.delijn.be/stops/205823"], ["https://data.delijn.be/stops/403900", "https://data.delijn.be/stops/403943"], ["https://data.delijn.be/stops/400838", "https://data.delijn.be/stops/400839"], ["https://data.delijn.be/stops/301716", "https://data.delijn.be/stops/301753"], ["https://data.delijn.be/stops/305425", "https://data.delijn.be/stops/305426"], ["https://data.delijn.be/stops/501262", "https://data.delijn.be/stops/501264"], ["https://data.delijn.be/stops/206196", "https://data.delijn.be/stops/206856"], ["https://data.delijn.be/stops/106787", "https://data.delijn.be/stops/106875"], ["https://data.delijn.be/stops/503532", "https://data.delijn.be/stops/508532"], ["https://data.delijn.be/stops/304724", "https://data.delijn.be/stops/304731"], ["https://data.delijn.be/stops/308612", "https://data.delijn.be/stops/308631"], ["https://data.delijn.be/stops/104404", "https://data.delijn.be/stops/204622"], ["https://data.delijn.be/stops/103570", "https://data.delijn.be/stops/103572"], ["https://data.delijn.be/stops/401848", "https://data.delijn.be/stops/401850"], ["https://data.delijn.be/stops/209791", "https://data.delijn.be/stops/210065"], ["https://data.delijn.be/stops/104338", "https://data.delijn.be/stops/105907"], ["https://data.delijn.be/stops/208472", "https://data.delijn.be/stops/209473"], ["https://data.delijn.be/stops/102511", "https://data.delijn.be/stops/102512"], ["https://data.delijn.be/stops/206178", "https://data.delijn.be/stops/206179"], ["https://data.delijn.be/stops/106709", "https://data.delijn.be/stops/106710"], ["https://data.delijn.be/stops/503356", "https://data.delijn.be/stops/509920"], ["https://data.delijn.be/stops/206189", "https://data.delijn.be/stops/207189"], ["https://data.delijn.be/stops/206208", "https://data.delijn.be/stops/207722"], ["https://data.delijn.be/stops/501021", "https://data.delijn.be/stops/506021"], ["https://data.delijn.be/stops/211015", "https://data.delijn.be/stops/507292"], ["https://data.delijn.be/stops/103012", "https://data.delijn.be/stops/104094"], ["https://data.delijn.be/stops/204070", "https://data.delijn.be/stops/204098"], ["https://data.delijn.be/stops/105804", "https://data.delijn.be/stops/107412"], ["https://data.delijn.be/stops/300491", "https://data.delijn.be/stops/307084"], ["https://data.delijn.be/stops/300012", "https://data.delijn.be/stops/300741"], ["https://data.delijn.be/stops/108823", "https://data.delijn.be/stops/108826"], ["https://data.delijn.be/stops/107802", "https://data.delijn.be/stops/107806"], ["https://data.delijn.be/stops/208416", "https://data.delijn.be/stops/209416"], ["https://data.delijn.be/stops/306759", "https://data.delijn.be/stops/306760"], ["https://data.delijn.be/stops/402758", "https://data.delijn.be/stops/402759"], ["https://data.delijn.be/stops/301640", "https://data.delijn.be/stops/301642"], ["https://data.delijn.be/stops/101719", "https://data.delijn.be/stops/108969"], ["https://data.delijn.be/stops/108435", "https://data.delijn.be/stops/108585"], ["https://data.delijn.be/stops/204616", "https://data.delijn.be/stops/204658"], ["https://data.delijn.be/stops/109850", "https://data.delijn.be/stops/109851"], ["https://data.delijn.be/stops/401314", "https://data.delijn.be/stops/401324"], ["https://data.delijn.be/stops/200870", "https://data.delijn.be/stops/202335"], ["https://data.delijn.be/stops/502468", "https://data.delijn.be/stops/504877"], ["https://data.delijn.be/stops/207414", "https://data.delijn.be/stops/306973"], ["https://data.delijn.be/stops/501552", "https://data.delijn.be/stops/509659"], ["https://data.delijn.be/stops/201836", "https://data.delijn.be/stops/208887"], ["https://data.delijn.be/stops/109287", "https://data.delijn.be/stops/109289"], ["https://data.delijn.be/stops/103932", "https://data.delijn.be/stops/106600"], ["https://data.delijn.be/stops/405186", "https://data.delijn.be/stops/405196"], ["https://data.delijn.be/stops/201817", "https://data.delijn.be/stops/201831"], ["https://data.delijn.be/stops/308516", "https://data.delijn.be/stops/308518"], ["https://data.delijn.be/stops/407170", "https://data.delijn.be/stops/407171"], ["https://data.delijn.be/stops/204632", "https://data.delijn.be/stops/204633"], ["https://data.delijn.be/stops/504798", "https://data.delijn.be/stops/507716"], ["https://data.delijn.be/stops/208327", "https://data.delijn.be/stops/209327"], ["https://data.delijn.be/stops/300279", "https://data.delijn.be/stops/300292"], ["https://data.delijn.be/stops/503269", "https://data.delijn.be/stops/503273"], ["https://data.delijn.be/stops/302319", "https://data.delijn.be/stops/303514"], ["https://data.delijn.be/stops/106636", "https://data.delijn.be/stops/106655"], ["https://data.delijn.be/stops/404592", "https://data.delijn.be/stops/404995"], ["https://data.delijn.be/stops/108019", "https://data.delijn.be/stops/109636"], ["https://data.delijn.be/stops/300650", "https://data.delijn.be/stops/301838"], ["https://data.delijn.be/stops/202509", "https://data.delijn.be/stops/203508"], ["https://data.delijn.be/stops/504156", "https://data.delijn.be/stops/504990"], ["https://data.delijn.be/stops/104363", "https://data.delijn.be/stops/104390"], ["https://data.delijn.be/stops/501015", "https://data.delijn.be/stops/506618"], ["https://data.delijn.be/stops/308518", "https://data.delijn.be/stops/308520"], ["https://data.delijn.be/stops/107146", "https://data.delijn.be/stops/108931"], ["https://data.delijn.be/stops/301898", "https://data.delijn.be/stops/305085"], ["https://data.delijn.be/stops/102109", "https://data.delijn.be/stops/106685"], ["https://data.delijn.be/stops/201695", "https://data.delijn.be/stops/203988"], ["https://data.delijn.be/stops/202175", "https://data.delijn.be/stops/203153"], ["https://data.delijn.be/stops/405673", "https://data.delijn.be/stops/407256"], ["https://data.delijn.be/stops/305413", "https://data.delijn.be/stops/305462"], ["https://data.delijn.be/stops/202109", "https://data.delijn.be/stops/202640"], ["https://data.delijn.be/stops/200546", "https://data.delijn.be/stops/211061"], ["https://data.delijn.be/stops/400527", "https://data.delijn.be/stops/400605"], ["https://data.delijn.be/stops/203682", "https://data.delijn.be/stops/203728"], ["https://data.delijn.be/stops/408318", "https://data.delijn.be/stops/408334"], ["https://data.delijn.be/stops/505253", "https://data.delijn.be/stops/508926"], ["https://data.delijn.be/stops/301471", "https://data.delijn.be/stops/308070"], ["https://data.delijn.be/stops/306869", "https://data.delijn.be/stops/306872"], ["https://data.delijn.be/stops/302620", "https://data.delijn.be/stops/303260"], ["https://data.delijn.be/stops/208617", "https://data.delijn.be/stops/209616"], ["https://data.delijn.be/stops/304278", "https://data.delijn.be/stops/304286"], ["https://data.delijn.be/stops/501356", "https://data.delijn.be/stops/506351"], ["https://data.delijn.be/stops/400528", "https://data.delijn.be/stops/403036"], ["https://data.delijn.be/stops/400925", "https://data.delijn.be/stops/400929"], ["https://data.delijn.be/stops/206339", "https://data.delijn.be/stops/207704"], ["https://data.delijn.be/stops/206178", "https://data.delijn.be/stops/207179"], ["https://data.delijn.be/stops/402572", "https://data.delijn.be/stops/402616"], ["https://data.delijn.be/stops/304484", "https://data.delijn.be/stops/304529"], ["https://data.delijn.be/stops/206417", "https://data.delijn.be/stops/206658"], ["https://data.delijn.be/stops/300871", "https://data.delijn.be/stops/302216"], ["https://data.delijn.be/stops/304824", "https://data.delijn.be/stops/304900"], ["https://data.delijn.be/stops/106323", "https://data.delijn.be/stops/106325"], ["https://data.delijn.be/stops/303061", "https://data.delijn.be/stops/303064"], ["https://data.delijn.be/stops/201698", "https://data.delijn.be/stops/202385"], ["https://data.delijn.be/stops/106170", "https://data.delijn.be/stops/106171"], ["https://data.delijn.be/stops/409054", "https://data.delijn.be/stops/409055"], ["https://data.delijn.be/stops/403795", "https://data.delijn.be/stops/403818"], ["https://data.delijn.be/stops/208303", "https://data.delijn.be/stops/209303"], ["https://data.delijn.be/stops/108077", "https://data.delijn.be/stops/108450"], ["https://data.delijn.be/stops/402725", "https://data.delijn.be/stops/405944"], ["https://data.delijn.be/stops/200205", "https://data.delijn.be/stops/201204"], ["https://data.delijn.be/stops/107826", "https://data.delijn.be/stops/107827"], ["https://data.delijn.be/stops/407195", "https://data.delijn.be/stops/407197"], ["https://data.delijn.be/stops/300981", "https://data.delijn.be/stops/301088"], ["https://data.delijn.be/stops/209601", "https://data.delijn.be/stops/307602"], ["https://data.delijn.be/stops/403644", "https://data.delijn.be/stops/407558"], ["https://data.delijn.be/stops/401876", "https://data.delijn.be/stops/402281"], ["https://data.delijn.be/stops/206527", "https://data.delijn.be/stops/209080"], ["https://data.delijn.be/stops/505292", "https://data.delijn.be/stops/508286"], ["https://data.delijn.be/stops/503451", "https://data.delijn.be/stops/508451"], ["https://data.delijn.be/stops/504153", "https://data.delijn.be/stops/509048"], ["https://data.delijn.be/stops/400257", "https://data.delijn.be/stops/402989"], ["https://data.delijn.be/stops/216020", "https://data.delijn.be/stops/217020"], ["https://data.delijn.be/stops/204266", "https://data.delijn.be/stops/204271"], ["https://data.delijn.be/stops/204663", "https://data.delijn.be/stops/205098"], ["https://data.delijn.be/stops/504435", "https://data.delijn.be/stops/509407"], ["https://data.delijn.be/stops/208206", "https://data.delijn.be/stops/209206"], ["https://data.delijn.be/stops/200539", "https://data.delijn.be/stops/201161"], ["https://data.delijn.be/stops/106949", "https://data.delijn.be/stops/106951"], ["https://data.delijn.be/stops/403762", "https://data.delijn.be/stops/403763"], ["https://data.delijn.be/stops/408722", "https://data.delijn.be/stops/410342"], ["https://data.delijn.be/stops/101413", "https://data.delijn.be/stops/106924"], ["https://data.delijn.be/stops/104106", "https://data.delijn.be/stops/105145"], ["https://data.delijn.be/stops/302975", "https://data.delijn.be/stops/307228"], ["https://data.delijn.be/stops/101408", "https://data.delijn.be/stops/101409"], ["https://data.delijn.be/stops/405543", "https://data.delijn.be/stops/406887"], ["https://data.delijn.be/stops/105737", "https://data.delijn.be/stops/109958"], ["https://data.delijn.be/stops/103000", "https://data.delijn.be/stops/104008"], ["https://data.delijn.be/stops/104488", "https://data.delijn.be/stops/307898"], ["https://data.delijn.be/stops/501412", "https://data.delijn.be/stops/506618"], ["https://data.delijn.be/stops/106617", "https://data.delijn.be/stops/106618"], ["https://data.delijn.be/stops/403081", "https://data.delijn.be/stops/403501"], ["https://data.delijn.be/stops/302996", "https://data.delijn.be/stops/307228"], ["https://data.delijn.be/stops/505502", "https://data.delijn.be/stops/505602"], ["https://data.delijn.be/stops/301546", "https://data.delijn.be/stops/306962"], ["https://data.delijn.be/stops/400213", "https://data.delijn.be/stops/400214"], ["https://data.delijn.be/stops/101020", "https://data.delijn.be/stops/102373"], ["https://data.delijn.be/stops/207366", "https://data.delijn.be/stops/207740"], ["https://data.delijn.be/stops/503203", "https://data.delijn.be/stops/508189"], ["https://data.delijn.be/stops/208353", "https://data.delijn.be/stops/209184"], ["https://data.delijn.be/stops/300217", "https://data.delijn.be/stops/300219"], ["https://data.delijn.be/stops/307898", "https://data.delijn.be/stops/307899"], ["https://data.delijn.be/stops/304663", "https://data.delijn.be/stops/304665"], ["https://data.delijn.be/stops/206726", "https://data.delijn.be/stops/207608"], ["https://data.delijn.be/stops/106838", "https://data.delijn.be/stops/106839"], ["https://data.delijn.be/stops/407623", "https://data.delijn.be/stops/409805"], ["https://data.delijn.be/stops/400124", "https://data.delijn.be/stops/400129"], ["https://data.delijn.be/stops/402200", "https://data.delijn.be/stops/402322"], ["https://data.delijn.be/stops/109820", "https://data.delijn.be/stops/109827"], ["https://data.delijn.be/stops/406939", "https://data.delijn.be/stops/407330"], ["https://data.delijn.be/stops/409366", "https://data.delijn.be/stops/409367"], ["https://data.delijn.be/stops/102465", "https://data.delijn.be/stops/108010"], ["https://data.delijn.be/stops/406353", "https://data.delijn.be/stops/406355"], ["https://data.delijn.be/stops/501163", "https://data.delijn.be/stops/501678"], ["https://data.delijn.be/stops/107614", "https://data.delijn.be/stops/108952"], ["https://data.delijn.be/stops/408590", "https://data.delijn.be/stops/408777"], ["https://data.delijn.be/stops/503059", "https://data.delijn.be/stops/508117"], ["https://data.delijn.be/stops/401420", "https://data.delijn.be/stops/401501"], ["https://data.delijn.be/stops/304997", "https://data.delijn.be/stops/305455"], ["https://data.delijn.be/stops/203150", "https://data.delijn.be/stops/203169"], ["https://data.delijn.be/stops/501174", "https://data.delijn.be/stops/505403"], ["https://data.delijn.be/stops/404191", "https://data.delijn.be/stops/404192"], ["https://data.delijn.be/stops/105445", "https://data.delijn.be/stops/108370"], ["https://data.delijn.be/stops/201849", "https://data.delijn.be/stops/208640"], ["https://data.delijn.be/stops/405264", "https://data.delijn.be/stops/408367"], ["https://data.delijn.be/stops/401438", "https://data.delijn.be/stops/401633"], ["https://data.delijn.be/stops/206068", "https://data.delijn.be/stops/206964"], ["https://data.delijn.be/stops/506203", "https://data.delijn.be/stops/506425"], ["https://data.delijn.be/stops/403267", "https://data.delijn.be/stops/404970"], ["https://data.delijn.be/stops/403307", "https://data.delijn.be/stops/410164"], ["https://data.delijn.be/stops/303154", "https://data.delijn.be/stops/304244"], ["https://data.delijn.be/stops/300120", "https://data.delijn.be/stops/304998"], ["https://data.delijn.be/stops/302824", "https://data.delijn.be/stops/302825"], ["https://data.delijn.be/stops/210041", "https://data.delijn.be/stops/211041"], ["https://data.delijn.be/stops/201904", "https://data.delijn.be/stops/203513"], ["https://data.delijn.be/stops/503859", "https://data.delijn.be/stops/508858"], ["https://data.delijn.be/stops/304795", "https://data.delijn.be/stops/306689"], ["https://data.delijn.be/stops/205080", "https://data.delijn.be/stops/205091"], ["https://data.delijn.be/stops/306146", "https://data.delijn.be/stops/307941"], ["https://data.delijn.be/stops/400631", "https://data.delijn.be/stops/403062"], ["https://data.delijn.be/stops/301361", "https://data.delijn.be/stops/306127"], ["https://data.delijn.be/stops/302905", "https://data.delijn.be/stops/303236"], ["https://data.delijn.be/stops/409011", "https://data.delijn.be/stops/409015"], ["https://data.delijn.be/stops/405667", "https://data.delijn.be/stops/409383"], ["https://data.delijn.be/stops/503325", "https://data.delijn.be/stops/508730"], ["https://data.delijn.be/stops/405963", "https://data.delijn.be/stops/405964"], ["https://data.delijn.be/stops/103064", "https://data.delijn.be/stops/104031"], ["https://data.delijn.be/stops/302166", "https://data.delijn.be/stops/302203"], ["https://data.delijn.be/stops/304953", "https://data.delijn.be/stops/304961"], ["https://data.delijn.be/stops/406842", "https://data.delijn.be/stops/406843"], ["https://data.delijn.be/stops/200200", "https://data.delijn.be/stops/201372"], ["https://data.delijn.be/stops/404987", "https://data.delijn.be/stops/408553"], ["https://data.delijn.be/stops/408110", "https://data.delijn.be/stops/408161"], ["https://data.delijn.be/stops/401478", "https://data.delijn.be/stops/408419"], ["https://data.delijn.be/stops/307431", "https://data.delijn.be/stops/308590"], ["https://data.delijn.be/stops/404419", "https://data.delijn.be/stops/407245"], ["https://data.delijn.be/stops/202626", "https://data.delijn.be/stops/203626"], ["https://data.delijn.be/stops/503525", "https://data.delijn.be/stops/508074"], ["https://data.delijn.be/stops/304320", "https://data.delijn.be/stops/304326"], ["https://data.delijn.be/stops/107156", "https://data.delijn.be/stops/107157"], ["https://data.delijn.be/stops/504243", "https://data.delijn.be/stops/504485"], ["https://data.delijn.be/stops/207543", "https://data.delijn.be/stops/207544"], ["https://data.delijn.be/stops/201901", "https://data.delijn.be/stops/201902"], ["https://data.delijn.be/stops/300111", "https://data.delijn.be/stops/306849"], ["https://data.delijn.be/stops/502442", "https://data.delijn.be/stops/502659"], ["https://data.delijn.be/stops/300089", "https://data.delijn.be/stops/306837"], ["https://data.delijn.be/stops/209207", "https://data.delijn.be/stops/209208"], ["https://data.delijn.be/stops/407249", "https://data.delijn.be/stops/407354"], ["https://data.delijn.be/stops/204759", "https://data.delijn.be/stops/205372"], ["https://data.delijn.be/stops/305433", "https://data.delijn.be/stops/305520"], ["https://data.delijn.be/stops/201191", "https://data.delijn.be/stops/201192"], ["https://data.delijn.be/stops/503380", "https://data.delijn.be/stops/508412"], ["https://data.delijn.be/stops/405737", "https://data.delijn.be/stops/410138"], ["https://data.delijn.be/stops/402559", "https://data.delijn.be/stops/402571"], ["https://data.delijn.be/stops/401751", "https://data.delijn.be/stops/406888"], ["https://data.delijn.be/stops/308135", "https://data.delijn.be/stops/308140"], ["https://data.delijn.be/stops/404713", "https://data.delijn.be/stops/404829"], ["https://data.delijn.be/stops/300343", "https://data.delijn.be/stops/300362"], ["https://data.delijn.be/stops/406208", "https://data.delijn.be/stops/406209"], ["https://data.delijn.be/stops/410173", "https://data.delijn.be/stops/410174"], ["https://data.delijn.be/stops/101834", "https://data.delijn.be/stops/107087"], ["https://data.delijn.be/stops/402344", "https://data.delijn.be/stops/402354"], ["https://data.delijn.be/stops/200917", "https://data.delijn.be/stops/203394"], ["https://data.delijn.be/stops/101984", "https://data.delijn.be/stops/101986"], ["https://data.delijn.be/stops/503495", "https://data.delijn.be/stops/508495"], ["https://data.delijn.be/stops/406087", "https://data.delijn.be/stops/406139"], ["https://data.delijn.be/stops/201825", "https://data.delijn.be/stops/502759"], ["https://data.delijn.be/stops/400816", "https://data.delijn.be/stops/400818"], ["https://data.delijn.be/stops/503154", "https://data.delijn.be/stops/503428"], ["https://data.delijn.be/stops/107642", "https://data.delijn.be/stops/308407"], ["https://data.delijn.be/stops/206344", "https://data.delijn.be/stops/207717"], ["https://data.delijn.be/stops/301678", "https://data.delijn.be/stops/301688"], ["https://data.delijn.be/stops/101687", "https://data.delijn.be/stops/103697"], ["https://data.delijn.be/stops/407140", "https://data.delijn.be/stops/407325"], ["https://data.delijn.be/stops/105609", "https://data.delijn.be/stops/105612"], ["https://data.delijn.be/stops/405492", "https://data.delijn.be/stops/405538"], ["https://data.delijn.be/stops/201027", "https://data.delijn.be/stops/201446"], ["https://data.delijn.be/stops/200584", "https://data.delijn.be/stops/204920"], ["https://data.delijn.be/stops/300601", "https://data.delijn.be/stops/300607"], ["https://data.delijn.be/stops/106653", "https://data.delijn.be/stops/109753"], ["https://data.delijn.be/stops/107209", "https://data.delijn.be/stops/107211"], ["https://data.delijn.be/stops/105674", "https://data.delijn.be/stops/105679"], ["https://data.delijn.be/stops/503049", "https://data.delijn.be/stops/503052"], ["https://data.delijn.be/stops/200514", "https://data.delijn.be/stops/201515"], ["https://data.delijn.be/stops/106803", "https://data.delijn.be/stops/106804"], ["https://data.delijn.be/stops/209470", "https://data.delijn.be/stops/209471"], ["https://data.delijn.be/stops/403500", "https://data.delijn.be/stops/410391"], ["https://data.delijn.be/stops/408326", "https://data.delijn.be/stops/408357"], ["https://data.delijn.be/stops/102394", "https://data.delijn.be/stops/107096"], ["https://data.delijn.be/stops/407890", "https://data.delijn.be/stops/408188"], ["https://data.delijn.be/stops/204133", "https://data.delijn.be/stops/205146"], ["https://data.delijn.be/stops/505018", "https://data.delijn.be/stops/507554"], ["https://data.delijn.be/stops/208214", "https://data.delijn.be/stops/209214"], ["https://data.delijn.be/stops/107279", "https://data.delijn.be/stops/107282"], ["https://data.delijn.be/stops/102436", "https://data.delijn.be/stops/107821"], ["https://data.delijn.be/stops/202336", "https://data.delijn.be/stops/203336"], ["https://data.delijn.be/stops/302010", "https://data.delijn.be/stops/308654"], ["https://data.delijn.be/stops/407094", "https://data.delijn.be/stops/407261"], ["https://data.delijn.be/stops/408027", "https://data.delijn.be/stops/301846"], ["https://data.delijn.be/stops/201021", "https://data.delijn.be/stops/210045"], ["https://data.delijn.be/stops/103249", "https://data.delijn.be/stops/107375"], ["https://data.delijn.be/stops/403916", "https://data.delijn.be/stops/410256"], ["https://data.delijn.be/stops/505692", "https://data.delijn.be/stops/507184"], ["https://data.delijn.be/stops/101378", "https://data.delijn.be/stops/101397"], ["https://data.delijn.be/stops/504342", "https://data.delijn.be/stops/509342"], ["https://data.delijn.be/stops/204201", "https://data.delijn.be/stops/205202"], ["https://data.delijn.be/stops/108927", "https://data.delijn.be/stops/108928"], ["https://data.delijn.be/stops/200680", "https://data.delijn.be/stops/201459"], ["https://data.delijn.be/stops/308849", "https://data.delijn.be/stops/308850"], ["https://data.delijn.be/stops/108289", "https://data.delijn.be/stops/108291"], ["https://data.delijn.be/stops/503197", "https://data.delijn.be/stops/503408"], ["https://data.delijn.be/stops/206805", "https://data.delijn.be/stops/207805"], ["https://data.delijn.be/stops/304785", "https://data.delijn.be/stops/304786"], ["https://data.delijn.be/stops/208044", "https://data.delijn.be/stops/209699"], ["https://data.delijn.be/stops/503801", "https://data.delijn.be/stops/505908"], ["https://data.delijn.be/stops/502305", "https://data.delijn.be/stops/507305"], ["https://data.delijn.be/stops/406060", "https://data.delijn.be/stops/406357"], ["https://data.delijn.be/stops/303677", "https://data.delijn.be/stops/303854"], ["https://data.delijn.be/stops/104457", "https://data.delijn.be/stops/106740"], ["https://data.delijn.be/stops/200067", "https://data.delijn.be/stops/200370"], ["https://data.delijn.be/stops/208559", "https://data.delijn.be/stops/209542"], ["https://data.delijn.be/stops/201922", "https://data.delijn.be/stops/201936"], ["https://data.delijn.be/stops/503648", "https://data.delijn.be/stops/503950"], ["https://data.delijn.be/stops/201414", "https://data.delijn.be/stops/202361"], ["https://data.delijn.be/stops/303811", "https://data.delijn.be/stops/303845"], ["https://data.delijn.be/stops/301976", "https://data.delijn.be/stops/307279"], ["https://data.delijn.be/stops/204362", "https://data.delijn.be/stops/204678"], ["https://data.delijn.be/stops/302229", "https://data.delijn.be/stops/302928"], ["https://data.delijn.be/stops/406036", "https://data.delijn.be/stops/406069"], ["https://data.delijn.be/stops/204429", "https://data.delijn.be/stops/204431"], ["https://data.delijn.be/stops/107392", "https://data.delijn.be/stops/107394"], ["https://data.delijn.be/stops/405217", "https://data.delijn.be/stops/405269"], ["https://data.delijn.be/stops/203240", "https://data.delijn.be/stops/203961"], ["https://data.delijn.be/stops/301155", "https://data.delijn.be/stops/301166"], ["https://data.delijn.be/stops/505380", "https://data.delijn.be/stops/508093"], ["https://data.delijn.be/stops/500948", "https://data.delijn.be/stops/504203"], ["https://data.delijn.be/stops/301399", "https://data.delijn.be/stops/303120"], ["https://data.delijn.be/stops/302880", "https://data.delijn.be/stops/303085"], ["https://data.delijn.be/stops/300364", "https://data.delijn.be/stops/300366"], ["https://data.delijn.be/stops/406774", "https://data.delijn.be/stops/406777"], ["https://data.delijn.be/stops/300707", "https://data.delijn.be/stops/306944"], ["https://data.delijn.be/stops/502463", "https://data.delijn.be/stops/507657"], ["https://data.delijn.be/stops/300257", "https://data.delijn.be/stops/300273"], ["https://data.delijn.be/stops/306647", "https://data.delijn.be/stops/307461"], ["https://data.delijn.be/stops/301984", "https://data.delijn.be/stops/307279"], ["https://data.delijn.be/stops/304074", "https://data.delijn.be/stops/304075"], ["https://data.delijn.be/stops/504659", "https://data.delijn.be/stops/509042"], ["https://data.delijn.be/stops/201044", "https://data.delijn.be/stops/201945"], ["https://data.delijn.be/stops/103723", "https://data.delijn.be/stops/109761"], ["https://data.delijn.be/stops/108804", "https://data.delijn.be/stops/109012"], ["https://data.delijn.be/stops/107051", "https://data.delijn.be/stops/107053"], ["https://data.delijn.be/stops/105308", "https://data.delijn.be/stops/105309"], ["https://data.delijn.be/stops/201458", "https://data.delijn.be/stops/201459"], ["https://data.delijn.be/stops/302127", "https://data.delijn.be/stops/302168"], ["https://data.delijn.be/stops/504425", "https://data.delijn.be/stops/504571"], ["https://data.delijn.be/stops/207675", "https://data.delijn.be/stops/209140"], ["https://data.delijn.be/stops/206511", "https://data.delijn.be/stops/207134"], ["https://data.delijn.be/stops/302381", "https://data.delijn.be/stops/307966"], ["https://data.delijn.be/stops/204672", "https://data.delijn.be/stops/204675"], ["https://data.delijn.be/stops/200458", "https://data.delijn.be/stops/201737"], ["https://data.delijn.be/stops/409058", "https://data.delijn.be/stops/409104"], ["https://data.delijn.be/stops/402821", "https://data.delijn.be/stops/406680"], ["https://data.delijn.be/stops/108022", "https://data.delijn.be/stops/108023"], ["https://data.delijn.be/stops/102184", "https://data.delijn.be/stops/104869"], ["https://data.delijn.be/stops/507191", "https://data.delijn.be/stops/507201"], ["https://data.delijn.be/stops/402796", "https://data.delijn.be/stops/406717"], ["https://data.delijn.be/stops/505686", "https://data.delijn.be/stops/507069"], ["https://data.delijn.be/stops/403090", "https://data.delijn.be/stops/403091"], ["https://data.delijn.be/stops/303812", "https://data.delijn.be/stops/303869"], ["https://data.delijn.be/stops/404469", "https://data.delijn.be/stops/404472"], ["https://data.delijn.be/stops/108093", "https://data.delijn.be/stops/108390"], ["https://data.delijn.be/stops/208225", "https://data.delijn.be/stops/208834"], ["https://data.delijn.be/stops/206923", "https://data.delijn.be/stops/207213"], ["https://data.delijn.be/stops/502710", "https://data.delijn.be/stops/507710"], ["https://data.delijn.be/stops/109669", "https://data.delijn.be/stops/109671"], ["https://data.delijn.be/stops/304128", "https://data.delijn.be/stops/307578"], ["https://data.delijn.be/stops/400608", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/504670", "https://data.delijn.be/stops/504766"], ["https://data.delijn.be/stops/400099", "https://data.delijn.be/stops/410013"], ["https://data.delijn.be/stops/501360", "https://data.delijn.be/stops/506360"], ["https://data.delijn.be/stops/503784", "https://data.delijn.be/stops/508595"], ["https://data.delijn.be/stops/202255", "https://data.delijn.be/stops/203255"], ["https://data.delijn.be/stops/200883", "https://data.delijn.be/stops/203054"], ["https://data.delijn.be/stops/400541", "https://data.delijn.be/stops/400569"], ["https://data.delijn.be/stops/502610", "https://data.delijn.be/stops/505691"], ["https://data.delijn.be/stops/509782", "https://data.delijn.be/stops/509783"], ["https://data.delijn.be/stops/403278", "https://data.delijn.be/stops/403279"], ["https://data.delijn.be/stops/503503", "https://data.delijn.be/stops/508270"], ["https://data.delijn.be/stops/301857", "https://data.delijn.be/stops/301866"], ["https://data.delijn.be/stops/203784", "https://data.delijn.be/stops/203786"], ["https://data.delijn.be/stops/503207", "https://data.delijn.be/stops/503815"], ["https://data.delijn.be/stops/105468", "https://data.delijn.be/stops/105471"], ["https://data.delijn.be/stops/501018", "https://data.delijn.be/stops/506609"], ["https://data.delijn.be/stops/203648", "https://data.delijn.be/stops/211045"], ["https://data.delijn.be/stops/406330", "https://data.delijn.be/stops/406410"], ["https://data.delijn.be/stops/101895", "https://data.delijn.be/stops/104719"], ["https://data.delijn.be/stops/509813", "https://data.delijn.be/stops/509825"], ["https://data.delijn.be/stops/306926", "https://data.delijn.be/stops/308728"], ["https://data.delijn.be/stops/300375", "https://data.delijn.be/stops/300381"], ["https://data.delijn.be/stops/400214", "https://data.delijn.be/stops/408489"], ["https://data.delijn.be/stops/504212", "https://data.delijn.be/stops/509020"], ["https://data.delijn.be/stops/104332", "https://data.delijn.be/stops/109589"], ["https://data.delijn.be/stops/301692", "https://data.delijn.be/stops/301790"], ["https://data.delijn.be/stops/102917", "https://data.delijn.be/stops/103295"], ["https://data.delijn.be/stops/503855", "https://data.delijn.be/stops/503859"], ["https://data.delijn.be/stops/206914", "https://data.delijn.be/stops/207882"], ["https://data.delijn.be/stops/406156", "https://data.delijn.be/stops/406157"], ["https://data.delijn.be/stops/503825", "https://data.delijn.be/stops/508828"], ["https://data.delijn.be/stops/206286", "https://data.delijn.be/stops/207239"], ["https://data.delijn.be/stops/402975", "https://data.delijn.be/stops/403148"], ["https://data.delijn.be/stops/304239", "https://data.delijn.be/stops/304806"], ["https://data.delijn.be/stops/405310", "https://data.delijn.be/stops/405361"], ["https://data.delijn.be/stops/301954", "https://data.delijn.be/stops/302868"], ["https://data.delijn.be/stops/403791", "https://data.delijn.be/stops/404264"], ["https://data.delijn.be/stops/202781", "https://data.delijn.be/stops/203770"], ["https://data.delijn.be/stops/301556", "https://data.delijn.be/stops/301589"], ["https://data.delijn.be/stops/106520", "https://data.delijn.be/stops/107098"], ["https://data.delijn.be/stops/401958", "https://data.delijn.be/stops/402038"], ["https://data.delijn.be/stops/504624", "https://data.delijn.be/stops/509624"], ["https://data.delijn.be/stops/206467", "https://data.delijn.be/stops/207469"], ["https://data.delijn.be/stops/200829", "https://data.delijn.be/stops/200830"], ["https://data.delijn.be/stops/401016", "https://data.delijn.be/stops/401149"], ["https://data.delijn.be/stops/303958", "https://data.delijn.be/stops/307859"], ["https://data.delijn.be/stops/304810", "https://data.delijn.be/stops/307883"], ["https://data.delijn.be/stops/504468", "https://data.delijn.be/stops/509462"], ["https://data.delijn.be/stops/401636", "https://data.delijn.be/stops/308204"], ["https://data.delijn.be/stops/102091", "https://data.delijn.be/stops/106813"], ["https://data.delijn.be/stops/502929", "https://data.delijn.be/stops/502932"], ["https://data.delijn.be/stops/101820", "https://data.delijn.be/stops/105980"], ["https://data.delijn.be/stops/202238", "https://data.delijn.be/stops/203239"], ["https://data.delijn.be/stops/502572", "https://data.delijn.be/stops/502582"], ["https://data.delijn.be/stops/402546", "https://data.delijn.be/stops/402622"], ["https://data.delijn.be/stops/300692", "https://data.delijn.be/stops/306938"], ["https://data.delijn.be/stops/201426", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/104043", "https://data.delijn.be/stops/108408"], ["https://data.delijn.be/stops/305115", "https://data.delijn.be/stops/305118"], ["https://data.delijn.be/stops/201729", "https://data.delijn.be/stops/204920"], ["https://data.delijn.be/stops/300575", "https://data.delijn.be/stops/300576"], ["https://data.delijn.be/stops/102661", "https://data.delijn.be/stops/109708"], ["https://data.delijn.be/stops/404863", "https://data.delijn.be/stops/404865"], ["https://data.delijn.be/stops/302191", "https://data.delijn.be/stops/302193"], ["https://data.delijn.be/stops/403353", "https://data.delijn.be/stops/410010"], ["https://data.delijn.be/stops/403093", "https://data.delijn.be/stops/403129"], ["https://data.delijn.be/stops/207936", "https://data.delijn.be/stops/208101"], ["https://data.delijn.be/stops/206616", "https://data.delijn.be/stops/207617"], ["https://data.delijn.be/stops/405380", "https://data.delijn.be/stops/410151"], ["https://data.delijn.be/stops/302072", "https://data.delijn.be/stops/302077"], ["https://data.delijn.be/stops/302142", "https://data.delijn.be/stops/302143"], ["https://data.delijn.be/stops/103685", "https://data.delijn.be/stops/105625"], ["https://data.delijn.be/stops/407730", "https://data.delijn.be/stops/407732"], ["https://data.delijn.be/stops/503110", "https://data.delijn.be/stops/505945"], ["https://data.delijn.be/stops/303290", "https://data.delijn.be/stops/303292"], ["https://data.delijn.be/stops/203479", "https://data.delijn.be/stops/207933"], ["https://data.delijn.be/stops/307959", "https://data.delijn.be/stops/307961"], ["https://data.delijn.be/stops/103113", "https://data.delijn.be/stops/103114"], ["https://data.delijn.be/stops/202299", "https://data.delijn.be/stops/203296"], ["https://data.delijn.be/stops/101689", "https://data.delijn.be/stops/109604"], ["https://data.delijn.be/stops/107321", "https://data.delijn.be/stops/107322"], ["https://data.delijn.be/stops/503037", "https://data.delijn.be/stops/508201"], ["https://data.delijn.be/stops/206605", "https://data.delijn.be/stops/206702"], ["https://data.delijn.be/stops/301642", "https://data.delijn.be/stops/307766"], ["https://data.delijn.be/stops/401922", "https://data.delijn.be/stops/407232"], ["https://data.delijn.be/stops/305187", "https://data.delijn.be/stops/306965"], ["https://data.delijn.be/stops/407941", "https://data.delijn.be/stops/408431"], ["https://data.delijn.be/stops/108333", "https://data.delijn.be/stops/109331"], ["https://data.delijn.be/stops/202482", "https://data.delijn.be/stops/203476"], ["https://data.delijn.be/stops/205392", "https://data.delijn.be/stops/205415"], ["https://data.delijn.be/stops/408341", "https://data.delijn.be/stops/408398"], ["https://data.delijn.be/stops/400985", "https://data.delijn.be/stops/400999"], ["https://data.delijn.be/stops/504461", "https://data.delijn.be/stops/509461"], ["https://data.delijn.be/stops/106302", "https://data.delijn.be/stops/106303"], ["https://data.delijn.be/stops/206380", "https://data.delijn.be/stops/206381"], ["https://data.delijn.be/stops/405280", "https://data.delijn.be/stops/405281"], ["https://data.delijn.be/stops/505946", "https://data.delijn.be/stops/508299"], ["https://data.delijn.be/stops/505602", "https://data.delijn.be/stops/505623"], ["https://data.delijn.be/stops/400672", "https://data.delijn.be/stops/406767"], ["https://data.delijn.be/stops/304380", "https://data.delijn.be/stops/304381"], ["https://data.delijn.be/stops/106971", "https://data.delijn.be/stops/107634"], ["https://data.delijn.be/stops/200841", "https://data.delijn.be/stops/201685"], ["https://data.delijn.be/stops/407904", "https://data.delijn.be/stops/408149"], ["https://data.delijn.be/stops/300855", "https://data.delijn.be/stops/300856"], ["https://data.delijn.be/stops/201267", "https://data.delijn.be/stops/203928"], ["https://data.delijn.be/stops/103203", "https://data.delijn.be/stops/107194"], ["https://data.delijn.be/stops/200316", "https://data.delijn.be/stops/204920"], ["https://data.delijn.be/stops/103252", "https://data.delijn.be/stops/107720"], ["https://data.delijn.be/stops/406563", "https://data.delijn.be/stops/407382"], ["https://data.delijn.be/stops/508542", "https://data.delijn.be/stops/508548"], ["https://data.delijn.be/stops/503715", "https://data.delijn.be/stops/509970"], ["https://data.delijn.be/stops/304055", "https://data.delijn.be/stops/304057"], ["https://data.delijn.be/stops/403482", "https://data.delijn.be/stops/410011"], ["https://data.delijn.be/stops/302565", "https://data.delijn.be/stops/302566"], ["https://data.delijn.be/stops/108711", "https://data.delijn.be/stops/108855"], ["https://data.delijn.be/stops/102681", "https://data.delijn.be/stops/205609"], ["https://data.delijn.be/stops/101197", "https://data.delijn.be/stops/204616"], ["https://data.delijn.be/stops/208402", "https://data.delijn.be/stops/208766"], ["https://data.delijn.be/stops/307629", "https://data.delijn.be/stops/308272"], ["https://data.delijn.be/stops/201165", "https://data.delijn.be/stops/202190"], ["https://data.delijn.be/stops/301685", "https://data.delijn.be/stops/301686"], ["https://data.delijn.be/stops/206203", "https://data.delijn.be/stops/206808"], ["https://data.delijn.be/stops/203425", "https://data.delijn.be/stops/211033"], ["https://data.delijn.be/stops/102982", "https://data.delijn.be/stops/105031"], ["https://data.delijn.be/stops/106287", "https://data.delijn.be/stops/106290"], ["https://data.delijn.be/stops/502190", "https://data.delijn.be/stops/508705"], ["https://data.delijn.be/stops/508337", "https://data.delijn.be/stops/509890"], ["https://data.delijn.be/stops/104026", "https://data.delijn.be/stops/106899"], ["https://data.delijn.be/stops/208308", "https://data.delijn.be/stops/209309"], ["https://data.delijn.be/stops/201200", "https://data.delijn.be/stops/201735"], ["https://data.delijn.be/stops/107799", "https://data.delijn.be/stops/107803"], ["https://data.delijn.be/stops/105099", "https://data.delijn.be/stops/109504"], ["https://data.delijn.be/stops/208831", "https://data.delijn.be/stops/208834"], ["https://data.delijn.be/stops/204061", "https://data.delijn.be/stops/205061"], ["https://data.delijn.be/stops/204019", "https://data.delijn.be/stops/205798"], ["https://data.delijn.be/stops/206473", "https://data.delijn.be/stops/207471"], ["https://data.delijn.be/stops/206336", "https://data.delijn.be/stops/207335"], ["https://data.delijn.be/stops/108108", "https://data.delijn.be/stops/108117"], ["https://data.delijn.be/stops/302338", "https://data.delijn.be/stops/302340"], ["https://data.delijn.be/stops/102658", "https://data.delijn.be/stops/105593"], ["https://data.delijn.be/stops/105039", "https://data.delijn.be/stops/105049"], ["https://data.delijn.be/stops/202897", "https://data.delijn.be/stops/202898"], ["https://data.delijn.be/stops/101642", "https://data.delijn.be/stops/109186"], ["https://data.delijn.be/stops/504326", "https://data.delijn.be/stops/504381"], ["https://data.delijn.be/stops/301041", "https://data.delijn.be/stops/301943"], ["https://data.delijn.be/stops/406245", "https://data.delijn.be/stops/409346"], ["https://data.delijn.be/stops/304592", "https://data.delijn.be/stops/307767"], ["https://data.delijn.be/stops/402083", "https://data.delijn.be/stops/402085"], ["https://data.delijn.be/stops/206190", "https://data.delijn.be/stops/207190"], ["https://data.delijn.be/stops/405372", "https://data.delijn.be/stops/302844"], ["https://data.delijn.be/stops/502548", "https://data.delijn.be/stops/505743"], ["https://data.delijn.be/stops/304234", "https://data.delijn.be/stops/304290"], ["https://data.delijn.be/stops/200866", "https://data.delijn.be/stops/209656"], ["https://data.delijn.be/stops/301472", "https://data.delijn.be/stops/308937"], ["https://data.delijn.be/stops/208340", "https://data.delijn.be/stops/209340"], ["https://data.delijn.be/stops/503649", "https://data.delijn.be/stops/508650"], ["https://data.delijn.be/stops/201904", "https://data.delijn.be/stops/202514"], ["https://data.delijn.be/stops/401519", "https://data.delijn.be/stops/401554"], ["https://data.delijn.be/stops/107328", "https://data.delijn.be/stops/107329"], ["https://data.delijn.be/stops/303093", "https://data.delijn.be/stops/303154"], ["https://data.delijn.be/stops/406925", "https://data.delijn.be/stops/406928"], ["https://data.delijn.be/stops/303704", "https://data.delijn.be/stops/303740"], ["https://data.delijn.be/stops/502237", "https://data.delijn.be/stops/507231"], ["https://data.delijn.be/stops/503166", "https://data.delijn.be/stops/507684"], ["https://data.delijn.be/stops/104487", "https://data.delijn.be/stops/104554"], ["https://data.delijn.be/stops/106208", "https://data.delijn.be/stops/106210"], ["https://data.delijn.be/stops/202323", "https://data.delijn.be/stops/203323"], ["https://data.delijn.be/stops/207616", "https://data.delijn.be/stops/207617"], ["https://data.delijn.be/stops/104056", "https://data.delijn.be/stops/108896"], ["https://data.delijn.be/stops/200089", "https://data.delijn.be/stops/201098"], ["https://data.delijn.be/stops/407214", "https://data.delijn.be/stops/407217"], ["https://data.delijn.be/stops/108274", "https://data.delijn.be/stops/108279"], ["https://data.delijn.be/stops/508336", "https://data.delijn.be/stops/508339"], ["https://data.delijn.be/stops/401039", "https://data.delijn.be/stops/401089"], ["https://data.delijn.be/stops/104861", "https://data.delijn.be/stops/107821"], ["https://data.delijn.be/stops/208348", "https://data.delijn.be/stops/209348"], ["https://data.delijn.be/stops/303103", "https://data.delijn.be/stops/306110"], ["https://data.delijn.be/stops/104486", "https://data.delijn.be/stops/104487"], ["https://data.delijn.be/stops/407760", "https://data.delijn.be/stops/409795"], ["https://data.delijn.be/stops/403326", "https://data.delijn.be/stops/403906"], ["https://data.delijn.be/stops/407034", "https://data.delijn.be/stops/407035"], ["https://data.delijn.be/stops/502150", "https://data.delijn.be/stops/502165"], ["https://data.delijn.be/stops/102684", "https://data.delijn.be/stops/108167"], ["https://data.delijn.be/stops/202690", "https://data.delijn.be/stops/203092"], ["https://data.delijn.be/stops/208574", "https://data.delijn.be/stops/307335"], ["https://data.delijn.be/stops/302944", "https://data.delijn.be/stops/306086"], ["https://data.delijn.be/stops/201669", "https://data.delijn.be/stops/201680"], ["https://data.delijn.be/stops/104986", "https://data.delijn.be/stops/104992"], ["https://data.delijn.be/stops/200203", "https://data.delijn.be/stops/201212"], ["https://data.delijn.be/stops/405995", "https://data.delijn.be/stops/405997"], ["https://data.delijn.be/stops/108869", "https://data.delijn.be/stops/109513"], ["https://data.delijn.be/stops/301078", "https://data.delijn.be/stops/301080"], ["https://data.delijn.be/stops/307351", "https://data.delijn.be/stops/307352"], ["https://data.delijn.be/stops/300701", "https://data.delijn.be/stops/300702"], ["https://data.delijn.be/stops/304953", "https://data.delijn.be/stops/307950"], ["https://data.delijn.be/stops/502642", "https://data.delijn.be/stops/507033"], ["https://data.delijn.be/stops/208046", "https://data.delijn.be/stops/209489"], ["https://data.delijn.be/stops/301661", "https://data.delijn.be/stops/301674"], ["https://data.delijn.be/stops/103500", "https://data.delijn.be/stops/103755"], ["https://data.delijn.be/stops/408681", "https://data.delijn.be/stops/408714"], ["https://data.delijn.be/stops/503030", "https://data.delijn.be/stops/508024"], ["https://data.delijn.be/stops/404808", "https://data.delijn.be/stops/404836"], ["https://data.delijn.be/stops/104284", "https://data.delijn.be/stops/105799"], ["https://data.delijn.be/stops/103293", "https://data.delijn.be/stops/107688"], ["https://data.delijn.be/stops/302733", "https://data.delijn.be/stops/302746"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/106630"], ["https://data.delijn.be/stops/104582", "https://data.delijn.be/stops/109751"], ["https://data.delijn.be/stops/201578", "https://data.delijn.be/stops/202192"], ["https://data.delijn.be/stops/300751", "https://data.delijn.be/stops/308673"], ["https://data.delijn.be/stops/104005", "https://data.delijn.be/stops/105460"], ["https://data.delijn.be/stops/404588", "https://data.delijn.be/stops/406903"], ["https://data.delijn.be/stops/102498", "https://data.delijn.be/stops/400301"], ["https://data.delijn.be/stops/106946", "https://data.delijn.be/stops/106947"], ["https://data.delijn.be/stops/503510", "https://data.delijn.be/stops/508047"], ["https://data.delijn.be/stops/205450", "https://data.delijn.be/stops/205696"], ["https://data.delijn.be/stops/500956", "https://data.delijn.be/stops/508287"], ["https://data.delijn.be/stops/106472", "https://data.delijn.be/stops/109645"], ["https://data.delijn.be/stops/201547", "https://data.delijn.be/stops/219953"], ["https://data.delijn.be/stops/202024", "https://data.delijn.be/stops/203025"], ["https://data.delijn.be/stops/400569", "https://data.delijn.be/stops/404162"], ["https://data.delijn.be/stops/502572", "https://data.delijn.be/stops/507567"], ["https://data.delijn.be/stops/402454", "https://data.delijn.be/stops/410042"], ["https://data.delijn.be/stops/501214", "https://data.delijn.be/stops/506213"], ["https://data.delijn.be/stops/203025", "https://data.delijn.be/stops/211039"], ["https://data.delijn.be/stops/209597", "https://data.delijn.be/stops/301414"], ["https://data.delijn.be/stops/208439", "https://data.delijn.be/stops/209439"], ["https://data.delijn.be/stops/504198", "https://data.delijn.be/stops/504199"], ["https://data.delijn.be/stops/402968", "https://data.delijn.be/stops/402973"], ["https://data.delijn.be/stops/200543", "https://data.delijn.be/stops/201325"], ["https://data.delijn.be/stops/203234", "https://data.delijn.be/stops/211121"], ["https://data.delijn.be/stops/405442", "https://data.delijn.be/stops/408589"], ["https://data.delijn.be/stops/302621", "https://data.delijn.be/stops/308116"], ["https://data.delijn.be/stops/201012", "https://data.delijn.be/stops/201390"], ["https://data.delijn.be/stops/308082", "https://data.delijn.be/stops/308083"], ["https://data.delijn.be/stops/207334", "https://data.delijn.be/stops/207706"], ["https://data.delijn.be/stops/108654", "https://data.delijn.be/stops/304305"], ["https://data.delijn.be/stops/408864", "https://data.delijn.be/stops/408882"], ["https://data.delijn.be/stops/401533", "https://data.delijn.be/stops/401827"], ["https://data.delijn.be/stops/200817", "https://data.delijn.be/stops/201116"], ["https://data.delijn.be/stops/105389", "https://data.delijn.be/stops/106025"], ["https://data.delijn.be/stops/304402", "https://data.delijn.be/stops/304408"], ["https://data.delijn.be/stops/203627", "https://data.delijn.be/stops/203643"], ["https://data.delijn.be/stops/206151", "https://data.delijn.be/stops/207151"], ["https://data.delijn.be/stops/103631", "https://data.delijn.be/stops/103632"], ["https://data.delijn.be/stops/304703", "https://data.delijn.be/stops/304704"], ["https://data.delijn.be/stops/400452", "https://data.delijn.be/stops/407215"], ["https://data.delijn.be/stops/208075", "https://data.delijn.be/stops/209075"], ["https://data.delijn.be/stops/503089", "https://data.delijn.be/stops/505848"], ["https://data.delijn.be/stops/403212", "https://data.delijn.be/stops/404759"], ["https://data.delijn.be/stops/504792", "https://data.delijn.be/stops/509563"], ["https://data.delijn.be/stops/106762", "https://data.delijn.be/stops/107516"], ["https://data.delijn.be/stops/206157", "https://data.delijn.be/stops/207157"], ["https://data.delijn.be/stops/505250", "https://data.delijn.be/stops/508998"], ["https://data.delijn.be/stops/206433", "https://data.delijn.be/stops/206434"], ["https://data.delijn.be/stops/408024", "https://data.delijn.be/stops/408028"], ["https://data.delijn.be/stops/108085", "https://data.delijn.be/stops/108090"], ["https://data.delijn.be/stops/400469", "https://data.delijn.be/stops/400471"], ["https://data.delijn.be/stops/504721", "https://data.delijn.be/stops/509718"], ["https://data.delijn.be/stops/206834", "https://data.delijn.be/stops/207426"], ["https://data.delijn.be/stops/109284", "https://data.delijn.be/stops/109736"], ["https://data.delijn.be/stops/304985", "https://data.delijn.be/stops/308017"], ["https://data.delijn.be/stops/101964", "https://data.delijn.be/stops/109284"], ["https://data.delijn.be/stops/404292", "https://data.delijn.be/stops/405699"], ["https://data.delijn.be/stops/207430", "https://data.delijn.be/stops/209692"], ["https://data.delijn.be/stops/109419", "https://data.delijn.be/stops/109420"], ["https://data.delijn.be/stops/105502", "https://data.delijn.be/stops/108799"], ["https://data.delijn.be/stops/103353", "https://data.delijn.be/stops/104570"], ["https://data.delijn.be/stops/103699", "https://data.delijn.be/stops/103700"], ["https://data.delijn.be/stops/209233", "https://data.delijn.be/stops/209234"], ["https://data.delijn.be/stops/301179", "https://data.delijn.be/stops/307102"], ["https://data.delijn.be/stops/202244", "https://data.delijn.be/stops/203244"], ["https://data.delijn.be/stops/400626", "https://data.delijn.be/stops/400627"], ["https://data.delijn.be/stops/102602", "https://data.delijn.be/stops/102643"], ["https://data.delijn.be/stops/108741", "https://data.delijn.be/stops/108742"], ["https://data.delijn.be/stops/404459", "https://data.delijn.be/stops/404585"], ["https://data.delijn.be/stops/104031", "https://data.delijn.be/stops/104394"], ["https://data.delijn.be/stops/404192", "https://data.delijn.be/stops/404193"], ["https://data.delijn.be/stops/200984", "https://data.delijn.be/stops/210335"], ["https://data.delijn.be/stops/501155", "https://data.delijn.be/stops/506156"], ["https://data.delijn.be/stops/205912", "https://data.delijn.be/stops/205916"], ["https://data.delijn.be/stops/404163", "https://data.delijn.be/stops/404170"], ["https://data.delijn.be/stops/403702", "https://data.delijn.be/stops/403717"], ["https://data.delijn.be/stops/401433", "https://data.delijn.be/stops/401474"], ["https://data.delijn.be/stops/503107", "https://data.delijn.be/stops/508090"], ["https://data.delijn.be/stops/400084", "https://data.delijn.be/stops/400152"], ["https://data.delijn.be/stops/101571", "https://data.delijn.be/stops/101572"], ["https://data.delijn.be/stops/405732", "https://data.delijn.be/stops/405739"], ["https://data.delijn.be/stops/405907", "https://data.delijn.be/stops/405965"], ["https://data.delijn.be/stops/205660", "https://data.delijn.be/stops/205680"], ["https://data.delijn.be/stops/211045", "https://data.delijn.be/stops/211106"], ["https://data.delijn.be/stops/202495", "https://data.delijn.be/stops/203495"], ["https://data.delijn.be/stops/206212", "https://data.delijn.be/stops/207814"], ["https://data.delijn.be/stops/302294", "https://data.delijn.be/stops/302295"], ["https://data.delijn.be/stops/302348", "https://data.delijn.be/stops/302349"], ["https://data.delijn.be/stops/304350", "https://data.delijn.be/stops/304356"], ["https://data.delijn.be/stops/504524", "https://data.delijn.be/stops/504526"], ["https://data.delijn.be/stops/108489", "https://data.delijn.be/stops/306595"], ["https://data.delijn.be/stops/206859", "https://data.delijn.be/stops/206927"], ["https://data.delijn.be/stops/300577", "https://data.delijn.be/stops/300592"], ["https://data.delijn.be/stops/301646", "https://data.delijn.be/stops/301672"], ["https://data.delijn.be/stops/400535", "https://data.delijn.be/stops/403858"], ["https://data.delijn.be/stops/504831", "https://data.delijn.be/stops/508893"], ["https://data.delijn.be/stops/201945", "https://data.delijn.be/stops/203456"], ["https://data.delijn.be/stops/302012", "https://data.delijn.be/stops/302044"], ["https://data.delijn.be/stops/503077", "https://data.delijn.be/stops/503078"], ["https://data.delijn.be/stops/201828", "https://data.delijn.be/stops/208276"], ["https://data.delijn.be/stops/106155", "https://data.delijn.be/stops/106157"], ["https://data.delijn.be/stops/409550", "https://data.delijn.be/stops/409555"], ["https://data.delijn.be/stops/503306", "https://data.delijn.be/stops/505947"], ["https://data.delijn.be/stops/200347", "https://data.delijn.be/stops/200349"], ["https://data.delijn.be/stops/406002", "https://data.delijn.be/stops/406100"], ["https://data.delijn.be/stops/204217", "https://data.delijn.be/stops/205177"], ["https://data.delijn.be/stops/204972", "https://data.delijn.be/stops/217002"], ["https://data.delijn.be/stops/405632", "https://data.delijn.be/stops/405634"], ["https://data.delijn.be/stops/301922", "https://data.delijn.be/stops/301924"], ["https://data.delijn.be/stops/200204", "https://data.delijn.be/stops/200253"], ["https://data.delijn.be/stops/300490", "https://data.delijn.be/stops/300491"], ["https://data.delijn.be/stops/305006", "https://data.delijn.be/stops/305007"], ["https://data.delijn.be/stops/304407", "https://data.delijn.be/stops/304408"], ["https://data.delijn.be/stops/501001", "https://data.delijn.be/stops/505403"], ["https://data.delijn.be/stops/409816", "https://data.delijn.be/stops/409818"], ["https://data.delijn.be/stops/400080", "https://data.delijn.be/stops/400167"], ["https://data.delijn.be/stops/106630", "https://data.delijn.be/stops/108016"], ["https://data.delijn.be/stops/106590", "https://data.delijn.be/stops/107274"], ["https://data.delijn.be/stops/303084", "https://data.delijn.be/stops/303086"], ["https://data.delijn.be/stops/302278", "https://data.delijn.be/stops/307932"], ["https://data.delijn.be/stops/502915", "https://data.delijn.be/stops/507927"], ["https://data.delijn.be/stops/205991", "https://data.delijn.be/stops/208780"], ["https://data.delijn.be/stops/400229", "https://data.delijn.be/stops/405610"], ["https://data.delijn.be/stops/200774", "https://data.delijn.be/stops/209384"], ["https://data.delijn.be/stops/507798", "https://data.delijn.be/stops/508924"], ["https://data.delijn.be/stops/103689", "https://data.delijn.be/stops/109431"], ["https://data.delijn.be/stops/407294", "https://data.delijn.be/stops/407869"], ["https://data.delijn.be/stops/204484", "https://data.delijn.be/stops/204735"], ["https://data.delijn.be/stops/405051", "https://data.delijn.be/stops/405118"], ["https://data.delijn.be/stops/205972", "https://data.delijn.be/stops/217002"], ["https://data.delijn.be/stops/204467", "https://data.delijn.be/stops/205468"], ["https://data.delijn.be/stops/508504", "https://data.delijn.be/stops/508509"], ["https://data.delijn.be/stops/101152", "https://data.delijn.be/stops/109621"], ["https://data.delijn.be/stops/305208", "https://data.delijn.be/stops/308904"], ["https://data.delijn.be/stops/402452", "https://data.delijn.be/stops/402453"], ["https://data.delijn.be/stops/105215", "https://data.delijn.be/stops/105541"], ["https://data.delijn.be/stops/302725", "https://data.delijn.be/stops/302769"], ["https://data.delijn.be/stops/502523", "https://data.delijn.be/stops/507665"], ["https://data.delijn.be/stops/407027", "https://data.delijn.be/stops/407035"], ["https://data.delijn.be/stops/408502", "https://data.delijn.be/stops/408547"], ["https://data.delijn.be/stops/405039", "https://data.delijn.be/stops/405057"], ["https://data.delijn.be/stops/306046", "https://data.delijn.be/stops/306259"], ["https://data.delijn.be/stops/304219", "https://data.delijn.be/stops/304230"], ["https://data.delijn.be/stops/308118", "https://data.delijn.be/stops/308120"], ["https://data.delijn.be/stops/101461", "https://data.delijn.be/stops/109253"], ["https://data.delijn.be/stops/400649", "https://data.delijn.be/stops/400652"], ["https://data.delijn.be/stops/403337", "https://data.delijn.be/stops/407634"], ["https://data.delijn.be/stops/109509", "https://data.delijn.be/stops/109510"], ["https://data.delijn.be/stops/304316", "https://data.delijn.be/stops/304317"], ["https://data.delijn.be/stops/106209", "https://data.delijn.be/stops/106212"], ["https://data.delijn.be/stops/300854", "https://data.delijn.be/stops/300894"], ["https://data.delijn.be/stops/407980", "https://data.delijn.be/stops/408031"], ["https://data.delijn.be/stops/403000", "https://data.delijn.be/stops/403277"], ["https://data.delijn.be/stops/101583", "https://data.delijn.be/stops/101584"], ["https://data.delijn.be/stops/200759", "https://data.delijn.be/stops/507962"], ["https://data.delijn.be/stops/501017", "https://data.delijn.be/stops/501716"], ["https://data.delijn.be/stops/203639", "https://data.delijn.be/stops/205069"], ["https://data.delijn.be/stops/304919", "https://data.delijn.be/stops/305396"], ["https://data.delijn.be/stops/504633", "https://data.delijn.be/stops/509222"], ["https://data.delijn.be/stops/308167", "https://data.delijn.be/stops/308229"], ["https://data.delijn.be/stops/206247", "https://data.delijn.be/stops/207247"], ["https://data.delijn.be/stops/207178", "https://data.delijn.be/stops/304080"], ["https://data.delijn.be/stops/204674", "https://data.delijn.be/stops/205673"], ["https://data.delijn.be/stops/410401", "https://data.delijn.be/stops/410402"], ["https://data.delijn.be/stops/206338", "https://data.delijn.be/stops/207339"], ["https://data.delijn.be/stops/207127", "https://data.delijn.be/stops/207650"], ["https://data.delijn.be/stops/206895", "https://data.delijn.be/stops/207887"], ["https://data.delijn.be/stops/108713", "https://data.delijn.be/stops/108857"], ["https://data.delijn.be/stops/501029", "https://data.delijn.be/stops/506041"], ["https://data.delijn.be/stops/105013", "https://data.delijn.be/stops/106831"], ["https://data.delijn.be/stops/503097", "https://data.delijn.be/stops/508095"], ["https://data.delijn.be/stops/202957", "https://data.delijn.be/stops/203241"], ["https://data.delijn.be/stops/401946", "https://data.delijn.be/stops/405851"], ["https://data.delijn.be/stops/504584", "https://data.delijn.be/stops/504588"], ["https://data.delijn.be/stops/107227", "https://data.delijn.be/stops/109750"], ["https://data.delijn.be/stops/200118", "https://data.delijn.be/stops/201119"], ["https://data.delijn.be/stops/402262", "https://data.delijn.be/stops/402488"], ["https://data.delijn.be/stops/205051", "https://data.delijn.be/stops/205052"], ["https://data.delijn.be/stops/105459", "https://data.delijn.be/stops/105461"], ["https://data.delijn.be/stops/102913", "https://data.delijn.be/stops/103532"], ["https://data.delijn.be/stops/202508", "https://data.delijn.be/stops/203507"], ["https://data.delijn.be/stops/406308", "https://data.delijn.be/stops/406310"], ["https://data.delijn.be/stops/404332", "https://data.delijn.be/stops/404333"], ["https://data.delijn.be/stops/107973", "https://data.delijn.be/stops/107974"], ["https://data.delijn.be/stops/305274", "https://data.delijn.be/stops/305601"], ["https://data.delijn.be/stops/400756", "https://data.delijn.be/stops/407592"], ["https://data.delijn.be/stops/407321", "https://data.delijn.be/stops/409427"], ["https://data.delijn.be/stops/409048", "https://data.delijn.be/stops/409444"], ["https://data.delijn.be/stops/503061", "https://data.delijn.be/stops/504997"], ["https://data.delijn.be/stops/402714", "https://data.delijn.be/stops/303647"], ["https://data.delijn.be/stops/405795", "https://data.delijn.be/stops/405883"], ["https://data.delijn.be/stops/302968", "https://data.delijn.be/stops/303001"], ["https://data.delijn.be/stops/108149", "https://data.delijn.be/stops/108150"], ["https://data.delijn.be/stops/402643", "https://data.delijn.be/stops/403647"], ["https://data.delijn.be/stops/305775", "https://data.delijn.be/stops/305776"], ["https://data.delijn.be/stops/209418", "https://data.delijn.be/stops/209419"], ["https://data.delijn.be/stops/208393", "https://data.delijn.be/stops/209393"], ["https://data.delijn.be/stops/303293", "https://data.delijn.be/stops/303322"], ["https://data.delijn.be/stops/105241", "https://data.delijn.be/stops/105243"], ["https://data.delijn.be/stops/300561", "https://data.delijn.be/stops/307858"], ["https://data.delijn.be/stops/200370", "https://data.delijn.be/stops/201446"], ["https://data.delijn.be/stops/300040", "https://data.delijn.be/stops/307732"], ["https://data.delijn.be/stops/406707", "https://data.delijn.be/stops/406708"], ["https://data.delijn.be/stops/402963", "https://data.delijn.be/stops/405151"], ["https://data.delijn.be/stops/502801", "https://data.delijn.be/stops/504182"], ["https://data.delijn.be/stops/208569", "https://data.delijn.be/stops/209090"], ["https://data.delijn.be/stops/204943", "https://data.delijn.be/stops/210256"], ["https://data.delijn.be/stops/401187", "https://data.delijn.be/stops/406070"], ["https://data.delijn.be/stops/509198", "https://data.delijn.be/stops/509199"], ["https://data.delijn.be/stops/104794", "https://data.delijn.be/stops/106823"], ["https://data.delijn.be/stops/201012", "https://data.delijn.be/stops/210021"], ["https://data.delijn.be/stops/410279", "https://data.delijn.be/stops/410280"], ["https://data.delijn.be/stops/103940", "https://data.delijn.be/stops/103945"], ["https://data.delijn.be/stops/204185", "https://data.delijn.be/stops/205186"], ["https://data.delijn.be/stops/307638", "https://data.delijn.be/stops/307640"], ["https://data.delijn.be/stops/504281", "https://data.delijn.be/stops/509283"], ["https://data.delijn.be/stops/405242", "https://data.delijn.be/stops/406311"], ["https://data.delijn.be/stops/401627", "https://data.delijn.be/stops/401649"], ["https://data.delijn.be/stops/305782", "https://data.delijn.be/stops/306878"], ["https://data.delijn.be/stops/403000", "https://data.delijn.be/stops/403133"], ["https://data.delijn.be/stops/302659", "https://data.delijn.be/stops/306772"], ["https://data.delijn.be/stops/408008", "https://data.delijn.be/stops/408148"], ["https://data.delijn.be/stops/303210", "https://data.delijn.be/stops/307953"], ["https://data.delijn.be/stops/206601", "https://data.delijn.be/stops/206738"], ["https://data.delijn.be/stops/106207", "https://data.delijn.be/stops/109905"], ["https://data.delijn.be/stops/200707", "https://data.delijn.be/stops/203329"], ["https://data.delijn.be/stops/205106", "https://data.delijn.be/stops/205752"], ["https://data.delijn.be/stops/509029", "https://data.delijn.be/stops/509759"], ["https://data.delijn.be/stops/102687", "https://data.delijn.be/stops/103980"], ["https://data.delijn.be/stops/202779", "https://data.delijn.be/stops/203769"], ["https://data.delijn.be/stops/403974", "https://data.delijn.be/stops/403977"], ["https://data.delijn.be/stops/304995", "https://data.delijn.be/stops/305033"], ["https://data.delijn.be/stops/406066", "https://data.delijn.be/stops/407114"], ["https://data.delijn.be/stops/304580", "https://data.delijn.be/stops/305448"], ["https://data.delijn.be/stops/109206", "https://data.delijn.be/stops/109209"], ["https://data.delijn.be/stops/400106", "https://data.delijn.be/stops/400134"], ["https://data.delijn.be/stops/206136", "https://data.delijn.be/stops/207469"], ["https://data.delijn.be/stops/307015", "https://data.delijn.be/stops/307016"], ["https://data.delijn.be/stops/102074", "https://data.delijn.be/stops/108839"], ["https://data.delijn.be/stops/202149", "https://data.delijn.be/stops/203149"], ["https://data.delijn.be/stops/402956", "https://data.delijn.be/stops/408180"], ["https://data.delijn.be/stops/402321", "https://data.delijn.be/stops/408054"], ["https://data.delijn.be/stops/208366", "https://data.delijn.be/stops/208776"], ["https://data.delijn.be/stops/407927", "https://data.delijn.be/stops/408018"], ["https://data.delijn.be/stops/201402", "https://data.delijn.be/stops/201689"], ["https://data.delijn.be/stops/400830", "https://data.delijn.be/stops/407532"], ["https://data.delijn.be/stops/101783", "https://data.delijn.be/stops/104114"], ["https://data.delijn.be/stops/308818", "https://data.delijn.be/stops/308819"], ["https://data.delijn.be/stops/203773", "https://data.delijn.be/stops/203774"], ["https://data.delijn.be/stops/108161", "https://data.delijn.be/stops/108162"], ["https://data.delijn.be/stops/405447", "https://data.delijn.be/stops/409281"], ["https://data.delijn.be/stops/104383", "https://data.delijn.be/stops/104393"], ["https://data.delijn.be/stops/401980", "https://data.delijn.be/stops/403885"], ["https://data.delijn.be/stops/303663", "https://data.delijn.be/stops/304937"], ["https://data.delijn.be/stops/306292", "https://data.delijn.be/stops/306293"], ["https://data.delijn.be/stops/202969", "https://data.delijn.be/stops/204092"], ["https://data.delijn.be/stops/403761", "https://data.delijn.be/stops/403764"], ["https://data.delijn.be/stops/307583", "https://data.delijn.be/stops/307652"], ["https://data.delijn.be/stops/108948", "https://data.delijn.be/stops/109224"], ["https://data.delijn.be/stops/401137", "https://data.delijn.be/stops/403762"], ["https://data.delijn.be/stops/202431", "https://data.delijn.be/stops/202433"], ["https://data.delijn.be/stops/504189", "https://data.delijn.be/stops/509189"], ["https://data.delijn.be/stops/407237", "https://data.delijn.be/stops/407505"], ["https://data.delijn.be/stops/304544", "https://data.delijn.be/stops/304547"], ["https://data.delijn.be/stops/108899", "https://data.delijn.be/stops/108902"], ["https://data.delijn.be/stops/204717", "https://data.delijn.be/stops/205712"], ["https://data.delijn.be/stops/106606", "https://data.delijn.be/stops/106686"], ["https://data.delijn.be/stops/206161", "https://data.delijn.be/stops/207449"], ["https://data.delijn.be/stops/406466", "https://data.delijn.be/stops/406467"], ["https://data.delijn.be/stops/408802", "https://data.delijn.be/stops/408806"], ["https://data.delijn.be/stops/302240", "https://data.delijn.be/stops/302243"], ["https://data.delijn.be/stops/104952", "https://data.delijn.be/stops/108495"], ["https://data.delijn.be/stops/106519", "https://data.delijn.be/stops/106521"], ["https://data.delijn.be/stops/102671", "https://data.delijn.be/stops/105648"], ["https://data.delijn.be/stops/204695", "https://data.delijn.be/stops/205701"], ["https://data.delijn.be/stops/307437", "https://data.delijn.be/stops/307438"], ["https://data.delijn.be/stops/304759", "https://data.delijn.be/stops/304763"], ["https://data.delijn.be/stops/400010", "https://data.delijn.be/stops/400015"], ["https://data.delijn.be/stops/508963", "https://data.delijn.be/stops/508964"], ["https://data.delijn.be/stops/200745", "https://data.delijn.be/stops/209644"], ["https://data.delijn.be/stops/105117", "https://data.delijn.be/stops/105158"], ["https://data.delijn.be/stops/402690", "https://data.delijn.be/stops/402743"], ["https://data.delijn.be/stops/404010", "https://data.delijn.be/stops/404353"], ["https://data.delijn.be/stops/106911", "https://data.delijn.be/stops/107261"], ["https://data.delijn.be/stops/402074", "https://data.delijn.be/stops/402219"], ["https://data.delijn.be/stops/206527", "https://data.delijn.be/stops/207582"], ["https://data.delijn.be/stops/404351", "https://data.delijn.be/stops/404384"], ["https://data.delijn.be/stops/402022", "https://data.delijn.be/stops/408878"], ["https://data.delijn.be/stops/108974", "https://data.delijn.be/stops/109690"], ["https://data.delijn.be/stops/409382", "https://data.delijn.be/stops/409383"], ["https://data.delijn.be/stops/207135", "https://data.delijn.be/stops/207136"], ["https://data.delijn.be/stops/305539", "https://data.delijn.be/stops/307181"], ["https://data.delijn.be/stops/407263", "https://data.delijn.be/stops/410255"], ["https://data.delijn.be/stops/107073", "https://data.delijn.be/stops/107074"], ["https://data.delijn.be/stops/105243", "https://data.delijn.be/stops/105247"], ["https://data.delijn.be/stops/103628", "https://data.delijn.be/stops/107169"], ["https://data.delijn.be/stops/206752", "https://data.delijn.be/stops/208532"], ["https://data.delijn.be/stops/202987", "https://data.delijn.be/stops/203987"], ["https://data.delijn.be/stops/305120", "https://data.delijn.be/stops/305129"], ["https://data.delijn.be/stops/101137", "https://data.delijn.be/stops/101142"], ["https://data.delijn.be/stops/206727", "https://data.delijn.be/stops/207983"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/402622"], ["https://data.delijn.be/stops/101093", "https://data.delijn.be/stops/104462"], ["https://data.delijn.be/stops/503818", "https://data.delijn.be/stops/508821"], ["https://data.delijn.be/stops/308182", "https://data.delijn.be/stops/308195"], ["https://data.delijn.be/stops/103031", "https://data.delijn.be/stops/107959"], ["https://data.delijn.be/stops/406176", "https://data.delijn.be/stops/406177"], ["https://data.delijn.be/stops/300817", "https://data.delijn.be/stops/303833"], ["https://data.delijn.be/stops/300851", "https://data.delijn.be/stops/300852"], ["https://data.delijn.be/stops/304986", "https://data.delijn.be/stops/304987"], ["https://data.delijn.be/stops/301528", "https://data.delijn.be/stops/301529"], ["https://data.delijn.be/stops/300118", "https://data.delijn.be/stops/306854"], ["https://data.delijn.be/stops/303761", "https://data.delijn.be/stops/303763"], ["https://data.delijn.be/stops/308233", "https://data.delijn.be/stops/308235"], ["https://data.delijn.be/stops/200192", "https://data.delijn.be/stops/201689"], ["https://data.delijn.be/stops/503403", "https://data.delijn.be/stops/508382"], ["https://data.delijn.be/stops/206677", "https://data.delijn.be/stops/208804"], ["https://data.delijn.be/stops/400554", "https://data.delijn.be/stops/400572"], ["https://data.delijn.be/stops/201183", "https://data.delijn.be/stops/202522"], ["https://data.delijn.be/stops/306182", "https://data.delijn.be/stops/306186"], ["https://data.delijn.be/stops/105562", "https://data.delijn.be/stops/105566"], ["https://data.delijn.be/stops/200350", "https://data.delijn.be/stops/201013"], ["https://data.delijn.be/stops/303341", "https://data.delijn.be/stops/303342"], ["https://data.delijn.be/stops/301781", "https://data.delijn.be/stops/306879"], ["https://data.delijn.be/stops/504231", "https://data.delijn.be/stops/509230"], ["https://data.delijn.be/stops/403948", "https://data.delijn.be/stops/404022"], ["https://data.delijn.be/stops/504523", "https://data.delijn.be/stops/509059"], ["https://data.delijn.be/stops/503270", "https://data.delijn.be/stops/508035"], ["https://data.delijn.be/stops/105748", "https://data.delijn.be/stops/109820"], ["https://data.delijn.be/stops/502694", "https://data.delijn.be/stops/507419"], ["https://data.delijn.be/stops/101906", "https://data.delijn.be/stops/107021"], ["https://data.delijn.be/stops/502473", "https://data.delijn.be/stops/502803"], ["https://data.delijn.be/stops/409236", "https://data.delijn.be/stops/409242"], ["https://data.delijn.be/stops/206509", "https://data.delijn.be/stops/206510"], ["https://data.delijn.be/stops/404474", "https://data.delijn.be/stops/404502"], ["https://data.delijn.be/stops/201922", "https://data.delijn.be/stops/203961"], ["https://data.delijn.be/stops/202529", "https://data.delijn.be/stops/202965"], ["https://data.delijn.be/stops/401343", "https://data.delijn.be/stops/401393"], ["https://data.delijn.be/stops/106634", "https://data.delijn.be/stops/106636"], ["https://data.delijn.be/stops/304437", "https://data.delijn.be/stops/306063"], ["https://data.delijn.be/stops/208398", "https://data.delijn.be/stops/209278"], ["https://data.delijn.be/stops/303577", "https://data.delijn.be/stops/303584"], ["https://data.delijn.be/stops/502388", "https://data.delijn.be/stops/502578"], ["https://data.delijn.be/stops/108263", "https://data.delijn.be/stops/109337"], ["https://data.delijn.be/stops/208458", "https://data.delijn.be/stops/209754"], ["https://data.delijn.be/stops/403104", "https://data.delijn.be/stops/403111"], ["https://data.delijn.be/stops/403008", "https://data.delijn.be/stops/410325"], ["https://data.delijn.be/stops/102191", "https://data.delijn.be/stops/104262"], ["https://data.delijn.be/stops/104638", "https://data.delijn.be/stops/109583"], ["https://data.delijn.be/stops/200968", "https://data.delijn.be/stops/218012"], ["https://data.delijn.be/stops/403672", "https://data.delijn.be/stops/403673"], ["https://data.delijn.be/stops/104417", "https://data.delijn.be/stops/104419"], ["https://data.delijn.be/stops/201694", "https://data.delijn.be/stops/203987"], ["https://data.delijn.be/stops/203246", "https://data.delijn.be/stops/203730"], ["https://data.delijn.be/stops/400608", "https://data.delijn.be/stops/400618"], ["https://data.delijn.be/stops/501198", "https://data.delijn.be/stops/506198"], ["https://data.delijn.be/stops/105889", "https://data.delijn.be/stops/105891"], ["https://data.delijn.be/stops/207442", "https://data.delijn.be/stops/209560"], ["https://data.delijn.be/stops/502012", "https://data.delijn.be/stops/505240"], ["https://data.delijn.be/stops/304475", "https://data.delijn.be/stops/305492"], ["https://data.delijn.be/stops/503784", "https://data.delijn.be/stops/503786"], ["https://data.delijn.be/stops/206880", "https://data.delijn.be/stops/207306"], ["https://data.delijn.be/stops/405004", "https://data.delijn.be/stops/406514"], ["https://data.delijn.be/stops/304761", "https://data.delijn.be/stops/304766"], ["https://data.delijn.be/stops/101958", "https://data.delijn.be/stops/108298"], ["https://data.delijn.be/stops/101067", "https://data.delijn.be/stops/105962"], ["https://data.delijn.be/stops/400560", "https://data.delijn.be/stops/403820"], ["https://data.delijn.be/stops/206518", "https://data.delijn.be/stops/209679"], ["https://data.delijn.be/stops/503369", "https://data.delijn.be/stops/508369"], ["https://data.delijn.be/stops/304356", "https://data.delijn.be/stops/304357"], ["https://data.delijn.be/stops/401036", "https://data.delijn.be/stops/404868"], ["https://data.delijn.be/stops/201429", "https://data.delijn.be/stops/201549"], ["https://data.delijn.be/stops/502313", "https://data.delijn.be/stops/507301"], ["https://data.delijn.be/stops/305189", "https://data.delijn.be/stops/305207"], ["https://data.delijn.be/stops/504513", "https://data.delijn.be/stops/505176"], ["https://data.delijn.be/stops/502725", "https://data.delijn.be/stops/507681"], ["https://data.delijn.be/stops/505761", "https://data.delijn.be/stops/507758"], ["https://data.delijn.be/stops/102867", "https://data.delijn.be/stops/106447"], ["https://data.delijn.be/stops/106269", "https://data.delijn.be/stops/106341"], ["https://data.delijn.be/stops/200473", "https://data.delijn.be/stops/201472"], ["https://data.delijn.be/stops/307903", "https://data.delijn.be/stops/308491"], ["https://data.delijn.be/stops/502569", "https://data.delijn.be/stops/502637"], ["https://data.delijn.be/stops/106639", "https://data.delijn.be/stops/106640"], ["https://data.delijn.be/stops/306758", "https://data.delijn.be/stops/306759"], ["https://data.delijn.be/stops/408853", "https://data.delijn.be/stops/408870"], ["https://data.delijn.be/stops/200117", "https://data.delijn.be/stops/200874"], ["https://data.delijn.be/stops/202099", "https://data.delijn.be/stops/203255"], ["https://data.delijn.be/stops/201009", "https://data.delijn.be/stops/201417"], ["https://data.delijn.be/stops/305028", "https://data.delijn.be/stops/305031"], ["https://data.delijn.be/stops/302179", "https://data.delijn.be/stops/305173"], ["https://data.delijn.be/stops/503193", "https://data.delijn.be/stops/508193"], ["https://data.delijn.be/stops/501318", "https://data.delijn.be/stops/501355"], ["https://data.delijn.be/stops/301723", "https://data.delijn.be/stops/301725"], ["https://data.delijn.be/stops/105110", "https://data.delijn.be/stops/108930"], ["https://data.delijn.be/stops/207857", "https://data.delijn.be/stops/207858"], ["https://data.delijn.be/stops/301388", "https://data.delijn.be/stops/304667"], ["https://data.delijn.be/stops/208492", "https://data.delijn.be/stops/208493"], ["https://data.delijn.be/stops/208669", "https://data.delijn.be/stops/209439"], ["https://data.delijn.be/stops/408678", "https://data.delijn.be/stops/408679"], ["https://data.delijn.be/stops/208516", "https://data.delijn.be/stops/209516"], ["https://data.delijn.be/stops/505112", "https://data.delijn.be/stops/509517"], ["https://data.delijn.be/stops/504135", "https://data.delijn.be/stops/509135"], ["https://data.delijn.be/stops/402214", "https://data.delijn.be/stops/404860"], ["https://data.delijn.be/stops/209377", "https://data.delijn.be/stops/218008"], ["https://data.delijn.be/stops/503121", "https://data.delijn.be/stops/503884"], ["https://data.delijn.be/stops/304434", "https://data.delijn.be/stops/304461"], ["https://data.delijn.be/stops/503816", "https://data.delijn.be/stops/503817"], ["https://data.delijn.be/stops/404490", "https://data.delijn.be/stops/404538"], ["https://data.delijn.be/stops/202626", "https://data.delijn.be/stops/202627"], ["https://data.delijn.be/stops/101797", "https://data.delijn.be/stops/101798"], ["https://data.delijn.be/stops/408760", "https://data.delijn.be/stops/408813"], ["https://data.delijn.be/stops/502469", "https://data.delijn.be/stops/509703"], ["https://data.delijn.be/stops/304753", "https://data.delijn.be/stops/307276"], ["https://data.delijn.be/stops/102735", "https://data.delijn.be/stops/104723"], ["https://data.delijn.be/stops/206796", "https://data.delijn.be/stops/208048"], ["https://data.delijn.be/stops/404214", "https://data.delijn.be/stops/404217"], ["https://data.delijn.be/stops/501265", "https://data.delijn.be/stops/501322"], ["https://data.delijn.be/stops/201674", "https://data.delijn.be/stops/203205"], ["https://data.delijn.be/stops/201237", "https://data.delijn.be/stops/205924"], ["https://data.delijn.be/stops/106038", "https://data.delijn.be/stops/106570"], ["https://data.delijn.be/stops/501672", "https://data.delijn.be/stops/505712"], ["https://data.delijn.be/stops/300347", "https://data.delijn.be/stops/300349"], ["https://data.delijn.be/stops/202945", "https://data.delijn.be/stops/207966"], ["https://data.delijn.be/stops/209589", "https://data.delijn.be/stops/307530"], ["https://data.delijn.be/stops/302766", "https://data.delijn.be/stops/302774"], ["https://data.delijn.be/stops/101462", "https://data.delijn.be/stops/102962"], ["https://data.delijn.be/stops/106395", "https://data.delijn.be/stops/107835"], ["https://data.delijn.be/stops/408625", "https://data.delijn.be/stops/408727"], ["https://data.delijn.be/stops/101411", "https://data.delijn.be/stops/101433"], ["https://data.delijn.be/stops/106791", "https://data.delijn.be/stops/106793"], ["https://data.delijn.be/stops/406570", "https://data.delijn.be/stops/406701"], ["https://data.delijn.be/stops/306791", "https://data.delijn.be/stops/307812"], ["https://data.delijn.be/stops/102602", "https://data.delijn.be/stops/107946"], ["https://data.delijn.be/stops/407684", "https://data.delijn.be/stops/407685"], ["https://data.delijn.be/stops/403275", "https://data.delijn.be/stops/403507"], ["https://data.delijn.be/stops/503920", "https://data.delijn.be/stops/508929"], ["https://data.delijn.be/stops/101262", "https://data.delijn.be/stops/102320"], ["https://data.delijn.be/stops/105772", "https://data.delijn.be/stops/105774"], ["https://data.delijn.be/stops/103011", "https://data.delijn.be/stops/104096"], ["https://data.delijn.be/stops/306693", "https://data.delijn.be/stops/306695"], ["https://data.delijn.be/stops/105068", "https://data.delijn.be/stops/106781"], ["https://data.delijn.be/stops/407341", "https://data.delijn.be/stops/409403"], ["https://data.delijn.be/stops/503513", "https://data.delijn.be/stops/504791"], ["https://data.delijn.be/stops/200204", "https://data.delijn.be/stops/201204"], ["https://data.delijn.be/stops/505073", "https://data.delijn.be/stops/507763"], ["https://data.delijn.be/stops/209673", "https://data.delijn.be/stops/209674"], ["https://data.delijn.be/stops/305804", "https://data.delijn.be/stops/305806"], ["https://data.delijn.be/stops/106100", "https://data.delijn.be/stops/107765"], ["https://data.delijn.be/stops/304072", "https://data.delijn.be/stops/307504"], ["https://data.delijn.be/stops/400301", "https://data.delijn.be/stops/400302"], ["https://data.delijn.be/stops/502189", "https://data.delijn.be/stops/507189"], ["https://data.delijn.be/stops/107167", "https://data.delijn.be/stops/107171"], ["https://data.delijn.be/stops/404638", "https://data.delijn.be/stops/406962"], ["https://data.delijn.be/stops/300337", "https://data.delijn.be/stops/305543"], ["https://data.delijn.be/stops/404974", "https://data.delijn.be/stops/410295"], ["https://data.delijn.be/stops/503504", "https://data.delijn.be/stops/508079"], ["https://data.delijn.be/stops/101995", "https://data.delijn.be/stops/102420"], ["https://data.delijn.be/stops/105052", "https://data.delijn.be/stops/105054"], ["https://data.delijn.be/stops/502500", "https://data.delijn.be/stops/505662"], ["https://data.delijn.be/stops/206543", "https://data.delijn.be/stops/206564"], ["https://data.delijn.be/stops/502517", "https://data.delijn.be/stops/507517"], ["https://data.delijn.be/stops/202640", "https://data.delijn.be/stops/203109"], ["https://data.delijn.be/stops/104993", "https://data.delijn.be/stops/109997"], ["https://data.delijn.be/stops/203535", "https://data.delijn.be/stops/204770"], ["https://data.delijn.be/stops/208544", "https://data.delijn.be/stops/209544"], ["https://data.delijn.be/stops/407155", "https://data.delijn.be/stops/409514"], ["https://data.delijn.be/stops/405768", "https://data.delijn.be/stops/409277"], ["https://data.delijn.be/stops/301234", "https://data.delijn.be/stops/307612"], ["https://data.delijn.be/stops/504261", "https://data.delijn.be/stops/509262"], ["https://data.delijn.be/stops/307211", "https://data.delijn.be/stops/307214"], ["https://data.delijn.be/stops/501678", "https://data.delijn.be/stops/506678"], ["https://data.delijn.be/stops/305249", "https://data.delijn.be/stops/305256"], ["https://data.delijn.be/stops/109766", "https://data.delijn.be/stops/304043"], ["https://data.delijn.be/stops/106224", "https://data.delijn.be/stops/106226"], ["https://data.delijn.be/stops/406788", "https://data.delijn.be/stops/406853"], ["https://data.delijn.be/stops/503658", "https://data.delijn.be/stops/508658"], ["https://data.delijn.be/stops/408671", "https://data.delijn.be/stops/408755"], ["https://data.delijn.be/stops/302534", "https://data.delijn.be/stops/308615"], ["https://data.delijn.be/stops/208199", "https://data.delijn.be/stops/209198"], ["https://data.delijn.be/stops/401470", "https://data.delijn.be/stops/401895"], ["https://data.delijn.be/stops/507245", "https://data.delijn.be/stops/507248"], ["https://data.delijn.be/stops/204942", "https://data.delijn.be/stops/205943"], ["https://data.delijn.be/stops/407660", "https://data.delijn.be/stops/409807"], ["https://data.delijn.be/stops/301603", "https://data.delijn.be/stops/301618"], ["https://data.delijn.be/stops/402240", "https://data.delijn.be/stops/402420"], ["https://data.delijn.be/stops/105771", "https://data.delijn.be/stops/105776"], ["https://data.delijn.be/stops/202904", "https://data.delijn.be/stops/203904"], ["https://data.delijn.be/stops/400804", "https://data.delijn.be/stops/400805"], ["https://data.delijn.be/stops/205687", "https://data.delijn.be/stops/205688"], ["https://data.delijn.be/stops/307763", "https://data.delijn.be/stops/307765"], ["https://data.delijn.be/stops/203625", "https://data.delijn.be/stops/203626"], ["https://data.delijn.be/stops/504121", "https://data.delijn.be/stops/504124"], ["https://data.delijn.be/stops/105315", "https://data.delijn.be/stops/105410"], ["https://data.delijn.be/stops/107965", "https://data.delijn.be/stops/107967"], ["https://data.delijn.be/stops/501682", "https://data.delijn.be/stops/509659"], ["https://data.delijn.be/stops/403938", "https://data.delijn.be/stops/404030"], ["https://data.delijn.be/stops/202863", "https://data.delijn.be/stops/203863"], ["https://data.delijn.be/stops/201692", "https://data.delijn.be/stops/202366"], ["https://data.delijn.be/stops/503237", "https://data.delijn.be/stops/504961"], ["https://data.delijn.be/stops/502002", "https://data.delijn.be/stops/505742"], ["https://data.delijn.be/stops/202369", "https://data.delijn.be/stops/203999"], ["https://data.delijn.be/stops/101516", "https://data.delijn.be/stops/101517"], ["https://data.delijn.be/stops/301165", "https://data.delijn.be/stops/307695"], ["https://data.delijn.be/stops/406565", "https://data.delijn.be/stops/408811"], ["https://data.delijn.be/stops/107360", "https://data.delijn.be/stops/107840"], ["https://data.delijn.be/stops/407098", "https://data.delijn.be/stops/407301"], ["https://data.delijn.be/stops/108817", "https://data.delijn.be/stops/108848"], ["https://data.delijn.be/stops/109169", "https://data.delijn.be/stops/109172"], ["https://data.delijn.be/stops/207442", "https://data.delijn.be/stops/209690"], ["https://data.delijn.be/stops/505151", "https://data.delijn.be/stops/506096"], ["https://data.delijn.be/stops/403813", "https://data.delijn.be/stops/403815"], ["https://data.delijn.be/stops/200129", "https://data.delijn.be/stops/201210"], ["https://data.delijn.be/stops/205206", "https://data.delijn.be/stops/205473"], ["https://data.delijn.be/stops/502413", "https://data.delijn.be/stops/507413"], ["https://data.delijn.be/stops/407023", "https://data.delijn.be/stops/407027"], ["https://data.delijn.be/stops/304574", "https://data.delijn.be/stops/304659"], ["https://data.delijn.be/stops/502754", "https://data.delijn.be/stops/505649"], ["https://data.delijn.be/stops/407803", "https://data.delijn.be/stops/407850"], ["https://data.delijn.be/stops/504127", "https://data.delijn.be/stops/504257"], ["https://data.delijn.be/stops/504432", "https://data.delijn.be/stops/509420"], ["https://data.delijn.be/stops/302205", "https://data.delijn.be/stops/302209"], ["https://data.delijn.be/stops/301443", "https://data.delijn.be/stops/307608"], ["https://data.delijn.be/stops/507121", "https://data.delijn.be/stops/507164"], ["https://data.delijn.be/stops/406826", "https://data.delijn.be/stops/409431"], ["https://data.delijn.be/stops/502030", "https://data.delijn.be/stops/505768"], ["https://data.delijn.be/stops/208149", "https://data.delijn.be/stops/209151"], ["https://data.delijn.be/stops/108748", "https://data.delijn.be/stops/109561"], ["https://data.delijn.be/stops/200491", "https://data.delijn.be/stops/203452"], ["https://data.delijn.be/stops/501423", "https://data.delijn.be/stops/506425"], ["https://data.delijn.be/stops/401899", "https://data.delijn.be/stops/406518"], ["https://data.delijn.be/stops/507030", "https://data.delijn.be/stops/507676"], ["https://data.delijn.be/stops/206317", "https://data.delijn.be/stops/206812"], ["https://data.delijn.be/stops/109812", "https://data.delijn.be/stops/109813"], ["https://data.delijn.be/stops/504090", "https://data.delijn.be/stops/505927"], ["https://data.delijn.be/stops/206102", "https://data.delijn.be/stops/207844"], ["https://data.delijn.be/stops/402873", "https://data.delijn.be/stops/402874"], ["https://data.delijn.be/stops/204160", "https://data.delijn.be/stops/205592"], ["https://data.delijn.be/stops/201832", "https://data.delijn.be/stops/208259"], ["https://data.delijn.be/stops/205368", "https://data.delijn.be/stops/205369"], ["https://data.delijn.be/stops/208888", "https://data.delijn.be/stops/210853"], ["https://data.delijn.be/stops/302247", "https://data.delijn.be/stops/303997"], ["https://data.delijn.be/stops/106521", "https://data.delijn.be/stops/106523"], ["https://data.delijn.be/stops/107335", "https://data.delijn.be/stops/108325"], ["https://data.delijn.be/stops/301622", "https://data.delijn.be/stops/301624"], ["https://data.delijn.be/stops/107158", "https://data.delijn.be/stops/107159"], ["https://data.delijn.be/stops/301764", "https://data.delijn.be/stops/301766"], ["https://data.delijn.be/stops/200108", "https://data.delijn.be/stops/200361"], ["https://data.delijn.be/stops/503775", "https://data.delijn.be/stops/505276"], ["https://data.delijn.be/stops/204053", "https://data.delijn.be/stops/205053"], ["https://data.delijn.be/stops/304373", "https://data.delijn.be/stops/304411"], ["https://data.delijn.be/stops/300299", "https://data.delijn.be/stops/306092"], ["https://data.delijn.be/stops/207787", "https://data.delijn.be/stops/208372"], ["https://data.delijn.be/stops/405975", "https://data.delijn.be/stops/405992"], ["https://data.delijn.be/stops/303824", "https://data.delijn.be/stops/303825"], ["https://data.delijn.be/stops/407771", "https://data.delijn.be/stops/304360"], ["https://data.delijn.be/stops/405846", "https://data.delijn.be/stops/409663"], ["https://data.delijn.be/stops/204149", "https://data.delijn.be/stops/204156"], ["https://data.delijn.be/stops/101002", "https://data.delijn.be/stops/108625"], ["https://data.delijn.be/stops/506074", "https://data.delijn.be/stops/506778"], ["https://data.delijn.be/stops/505027", "https://data.delijn.be/stops/505771"], ["https://data.delijn.be/stops/304054", "https://data.delijn.be/stops/304063"], ["https://data.delijn.be/stops/407044", "https://data.delijn.be/stops/407051"], ["https://data.delijn.be/stops/304825", "https://data.delijn.be/stops/304826"], ["https://data.delijn.be/stops/102621", "https://data.delijn.be/stops/102622"], ["https://data.delijn.be/stops/202672", "https://data.delijn.be/stops/211035"], ["https://data.delijn.be/stops/205017", "https://data.delijn.be/stops/205089"], ["https://data.delijn.be/stops/303645", "https://data.delijn.be/stops/305496"], ["https://data.delijn.be/stops/200390", "https://data.delijn.be/stops/208722"], ["https://data.delijn.be/stops/104949", "https://data.delijn.be/stops/109995"], ["https://data.delijn.be/stops/105286", "https://data.delijn.be/stops/107995"], ["https://data.delijn.be/stops/200658", "https://data.delijn.be/stops/208329"], ["https://data.delijn.be/stops/502109", "https://data.delijn.be/stops/507145"], ["https://data.delijn.be/stops/402770", "https://data.delijn.be/stops/408389"], ["https://data.delijn.be/stops/207992", "https://data.delijn.be/stops/307029"], ["https://data.delijn.be/stops/105078", "https://data.delijn.be/stops/105089"], ["https://data.delijn.be/stops/206499", "https://data.delijn.be/stops/206556"], ["https://data.delijn.be/stops/502178", "https://data.delijn.be/stops/502703"], ["https://data.delijn.be/stops/104884", "https://data.delijn.be/stops/205528"], ["https://data.delijn.be/stops/301609", "https://data.delijn.be/stops/301632"], ["https://data.delijn.be/stops/307507", "https://data.delijn.be/stops/307508"], ["https://data.delijn.be/stops/108874", "https://data.delijn.be/stops/109509"], ["https://data.delijn.be/stops/106430", "https://data.delijn.be/stops/106432"], ["https://data.delijn.be/stops/201055", "https://data.delijn.be/stops/201902"], ["https://data.delijn.be/stops/404463", "https://data.delijn.be/stops/404542"], ["https://data.delijn.be/stops/401030", "https://data.delijn.be/stops/401114"], ["https://data.delijn.be/stops/401088", "https://data.delijn.be/stops/401095"], ["https://data.delijn.be/stops/508139", "https://data.delijn.be/stops/508284"], ["https://data.delijn.be/stops/404168", "https://data.delijn.be/stops/404230"], ["https://data.delijn.be/stops/503952", "https://data.delijn.be/stops/504276"], ["https://data.delijn.be/stops/405626", "https://data.delijn.be/stops/407799"], ["https://data.delijn.be/stops/104018", "https://data.delijn.be/stops/107264"], ["https://data.delijn.be/stops/206289", "https://data.delijn.be/stops/207811"], ["https://data.delijn.be/stops/501226", "https://data.delijn.be/stops/506228"], ["https://data.delijn.be/stops/305144", "https://data.delijn.be/stops/305224"], ["https://data.delijn.be/stops/200023", "https://data.delijn.be/stops/208849"], ["https://data.delijn.be/stops/202305", "https://data.delijn.be/stops/203066"], ["https://data.delijn.be/stops/200105", "https://data.delijn.be/stops/201360"], ["https://data.delijn.be/stops/300630", "https://data.delijn.be/stops/306112"], ["https://data.delijn.be/stops/300703", "https://data.delijn.be/stops/308067"], ["https://data.delijn.be/stops/303953", "https://data.delijn.be/stops/303954"], ["https://data.delijn.be/stops/105738", "https://data.delijn.be/stops/109958"], ["https://data.delijn.be/stops/502171", "https://data.delijn.be/stops/507344"], ["https://data.delijn.be/stops/404625", "https://data.delijn.be/stops/406958"], ["https://data.delijn.be/stops/406063", "https://data.delijn.be/stops/407865"], ["https://data.delijn.be/stops/302734", "https://data.delijn.be/stops/302745"], ["https://data.delijn.be/stops/206943", "https://data.delijn.be/stops/307745"], ["https://data.delijn.be/stops/205572", "https://data.delijn.be/stops/307135"], ["https://data.delijn.be/stops/501154", "https://data.delijn.be/stops/501166"], ["https://data.delijn.be/stops/207757", "https://data.delijn.be/stops/208757"], ["https://data.delijn.be/stops/303123", "https://data.delijn.be/stops/307204"], ["https://data.delijn.be/stops/400351", "https://data.delijn.be/stops/400353"], ["https://data.delijn.be/stops/206514", "https://data.delijn.be/stops/206515"], ["https://data.delijn.be/stops/105309", "https://data.delijn.be/stops/105311"], ["https://data.delijn.be/stops/502330", "https://data.delijn.be/stops/505737"], ["https://data.delijn.be/stops/201199", "https://data.delijn.be/stops/201732"], ["https://data.delijn.be/stops/204118", "https://data.delijn.be/stops/205116"], ["https://data.delijn.be/stops/405778", "https://data.delijn.be/stops/409422"], ["https://data.delijn.be/stops/400599", "https://data.delijn.be/stops/400621"], ["https://data.delijn.be/stops/402456", "https://data.delijn.be/stops/402469"], ["https://data.delijn.be/stops/103928", "https://data.delijn.be/stops/106603"], ["https://data.delijn.be/stops/408711", "https://data.delijn.be/stops/408733"], ["https://data.delijn.be/stops/103994", "https://data.delijn.be/stops/104048"], ["https://data.delijn.be/stops/502177", "https://data.delijn.be/stops/507178"], ["https://data.delijn.be/stops/207712", "https://data.delijn.be/stops/207746"], ["https://data.delijn.be/stops/106191", "https://data.delijn.be/stops/106192"], ["https://data.delijn.be/stops/200064", "https://data.delijn.be/stops/201271"], ["https://data.delijn.be/stops/503560", "https://data.delijn.be/stops/503561"], ["https://data.delijn.be/stops/502218", "https://data.delijn.be/stops/507206"], ["https://data.delijn.be/stops/408358", "https://data.delijn.be/stops/408380"], ["https://data.delijn.be/stops/106607", "https://data.delijn.be/stops/106690"], ["https://data.delijn.be/stops/304891", "https://data.delijn.be/stops/305551"], ["https://data.delijn.be/stops/102726", "https://data.delijn.be/stops/104108"], ["https://data.delijn.be/stops/204121", "https://data.delijn.be/stops/204249"], ["https://data.delijn.be/stops/506664", "https://data.delijn.be/stops/506732"], ["https://data.delijn.be/stops/107281", "https://data.delijn.be/stops/107396"], ["https://data.delijn.be/stops/502451", "https://data.delijn.be/stops/507451"], ["https://data.delijn.be/stops/103251", "https://data.delijn.be/stops/109035"], ["https://data.delijn.be/stops/403426", "https://data.delijn.be/stops/410291"], ["https://data.delijn.be/stops/300072", "https://data.delijn.be/stops/304669"], ["https://data.delijn.be/stops/401648", "https://data.delijn.be/stops/406519"], ["https://data.delijn.be/stops/206485", "https://data.delijn.be/stops/207485"], ["https://data.delijn.be/stops/104596", "https://data.delijn.be/stops/107428"], ["https://data.delijn.be/stops/101644", "https://data.delijn.be/stops/109977"], ["https://data.delijn.be/stops/302862", "https://data.delijn.be/stops/306111"], ["https://data.delijn.be/stops/508696", "https://data.delijn.be/stops/508699"], ["https://data.delijn.be/stops/503162", "https://data.delijn.be/stops/503239"], ["https://data.delijn.be/stops/200551", "https://data.delijn.be/stops/201033"], ["https://data.delijn.be/stops/202963", "https://data.delijn.be/stops/206270"], ["https://data.delijn.be/stops/504664", "https://data.delijn.be/stops/505414"], ["https://data.delijn.be/stops/306557", "https://data.delijn.be/stops/306559"], ["https://data.delijn.be/stops/503898", "https://data.delijn.be/stops/508147"], ["https://data.delijn.be/stops/504475", "https://data.delijn.be/stops/509478"], ["https://data.delijn.be/stops/102194", "https://data.delijn.be/stops/109747"], ["https://data.delijn.be/stops/505277", "https://data.delijn.be/stops/508436"], ["https://data.delijn.be/stops/308619", "https://data.delijn.be/stops/308620"], ["https://data.delijn.be/stops/207756", "https://data.delijn.be/stops/207757"], ["https://data.delijn.be/stops/506266", "https://data.delijn.be/stops/506783"], ["https://data.delijn.be/stops/303548", "https://data.delijn.be/stops/306283"], ["https://data.delijn.be/stops/200825", "https://data.delijn.be/stops/203295"], ["https://data.delijn.be/stops/109074", "https://data.delijn.be/stops/300149"], ["https://data.delijn.be/stops/200972", "https://data.delijn.be/stops/208705"], ["https://data.delijn.be/stops/400429", "https://data.delijn.be/stops/402767"], ["https://data.delijn.be/stops/406615", "https://data.delijn.be/stops/406638"], ["https://data.delijn.be/stops/301828", "https://data.delijn.be/stops/301852"], ["https://data.delijn.be/stops/101654", "https://data.delijn.be/stops/308847"], ["https://data.delijn.be/stops/306698", "https://data.delijn.be/stops/308779"], ["https://data.delijn.be/stops/302003", "https://data.delijn.be/stops/302019"], ["https://data.delijn.be/stops/401483", "https://data.delijn.be/stops/401508"], ["https://data.delijn.be/stops/301305", "https://data.delijn.be/stops/308657"], ["https://data.delijn.be/stops/507293", "https://data.delijn.be/stops/507294"], ["https://data.delijn.be/stops/501150", "https://data.delijn.be/stops/506432"], ["https://data.delijn.be/stops/107928", "https://data.delijn.be/stops/107929"], ["https://data.delijn.be/stops/406585", "https://data.delijn.be/stops/406622"], ["https://data.delijn.be/stops/400054", "https://data.delijn.be/stops/400105"], ["https://data.delijn.be/stops/216012", "https://data.delijn.be/stops/217014"], ["https://data.delijn.be/stops/206805", "https://data.delijn.be/stops/306731"], ["https://data.delijn.be/stops/304889", "https://data.delijn.be/stops/304890"], ["https://data.delijn.be/stops/209459", "https://data.delijn.be/stops/209754"], ["https://data.delijn.be/stops/401410", "https://data.delijn.be/stops/300991"], ["https://data.delijn.be/stops/103470", "https://data.delijn.be/stops/103576"], ["https://data.delijn.be/stops/502005", "https://data.delijn.be/stops/507746"], ["https://data.delijn.be/stops/400793", "https://data.delijn.be/stops/402769"], ["https://data.delijn.be/stops/508550", "https://data.delijn.be/stops/508564"], ["https://data.delijn.be/stops/103660", "https://data.delijn.be/stops/106335"], ["https://data.delijn.be/stops/402406", "https://data.delijn.be/stops/402412"], ["https://data.delijn.be/stops/408570", "https://data.delijn.be/stops/408817"], ["https://data.delijn.be/stops/104114", "https://data.delijn.be/stops/107876"], ["https://data.delijn.be/stops/101218", "https://data.delijn.be/stops/107946"], ["https://data.delijn.be/stops/105207", "https://data.delijn.be/stops/108873"], ["https://data.delijn.be/stops/203869", "https://data.delijn.be/stops/208835"], ["https://data.delijn.be/stops/305677", "https://data.delijn.be/stops/305690"], ["https://data.delijn.be/stops/105263", "https://data.delijn.be/stops/109966"], ["https://data.delijn.be/stops/209115", "https://data.delijn.be/stops/219007"], ["https://data.delijn.be/stops/505327", "https://data.delijn.be/stops/507210"], ["https://data.delijn.be/stops/204996", "https://data.delijn.be/stops/207021"], ["https://data.delijn.be/stops/405586", "https://data.delijn.be/stops/405595"], ["https://data.delijn.be/stops/205060", "https://data.delijn.be/stops/205061"], ["https://data.delijn.be/stops/201384", "https://data.delijn.be/stops/201527"], ["https://data.delijn.be/stops/209604", "https://data.delijn.be/stops/305334"], ["https://data.delijn.be/stops/403865", "https://data.delijn.be/stops/410164"], ["https://data.delijn.be/stops/109724", "https://data.delijn.be/stops/109769"], ["https://data.delijn.be/stops/200088", "https://data.delijn.be/stops/206870"], ["https://data.delijn.be/stops/204385", "https://data.delijn.be/stops/205385"], ["https://data.delijn.be/stops/505385", "https://data.delijn.be/stops/508104"], ["https://data.delijn.be/stops/408507", "https://data.delijn.be/stops/408795"], ["https://data.delijn.be/stops/305715", "https://data.delijn.be/stops/306305"], ["https://data.delijn.be/stops/305046", "https://data.delijn.be/stops/305047"], ["https://data.delijn.be/stops/108790", "https://data.delijn.be/stops/109549"], ["https://data.delijn.be/stops/204198", "https://data.delijn.be/stops/204405"], ["https://data.delijn.be/stops/300477", "https://data.delijn.be/stops/307087"], ["https://data.delijn.be/stops/405322", "https://data.delijn.be/stops/405324"], ["https://data.delijn.be/stops/104512", "https://data.delijn.be/stops/104513"], ["https://data.delijn.be/stops/503781", "https://data.delijn.be/stops/508787"], ["https://data.delijn.be/stops/408573", "https://data.delijn.be/stops/408788"], ["https://data.delijn.be/stops/400421", "https://data.delijn.be/stops/405133"], ["https://data.delijn.be/stops/503750", "https://data.delijn.be/stops/509789"], ["https://data.delijn.be/stops/204261", "https://data.delijn.be/stops/205232"], ["https://data.delijn.be/stops/207672", "https://data.delijn.be/stops/208099"], ["https://data.delijn.be/stops/502431", "https://data.delijn.be/stops/507415"], ["https://data.delijn.be/stops/308259", "https://data.delijn.be/stops/308290"], ["https://data.delijn.be/stops/509020", "https://data.delijn.be/stops/509220"], ["https://data.delijn.be/stops/504120", "https://data.delijn.be/stops/509120"], ["https://data.delijn.be/stops/403092", "https://data.delijn.be/stops/403118"], ["https://data.delijn.be/stops/200609", "https://data.delijn.be/stops/203793"], ["https://data.delijn.be/stops/506026", "https://data.delijn.be/stops/506448"], ["https://data.delijn.be/stops/503102", "https://data.delijn.be/stops/508090"], ["https://data.delijn.be/stops/408100", "https://data.delijn.be/stops/408421"], ["https://data.delijn.be/stops/410356", "https://data.delijn.be/stops/410357"], ["https://data.delijn.be/stops/200693", "https://data.delijn.be/stops/208646"], ["https://data.delijn.be/stops/305502", "https://data.delijn.be/stops/307989"], ["https://data.delijn.be/stops/406787", "https://data.delijn.be/stops/409299"], ["https://data.delijn.be/stops/402081", "https://data.delijn.be/stops/402443"], ["https://data.delijn.be/stops/200699", "https://data.delijn.be/stops/202789"], ["https://data.delijn.be/stops/509261", "https://data.delijn.be/stops/509262"], ["https://data.delijn.be/stops/109255", "https://data.delijn.be/stops/109277"], ["https://data.delijn.be/stops/501326", "https://data.delijn.be/stops/506321"], ["https://data.delijn.be/stops/203040", "https://data.delijn.be/stops/203687"], ["https://data.delijn.be/stops/303861", "https://data.delijn.be/stops/305923"], ["https://data.delijn.be/stops/207164", "https://data.delijn.be/stops/308893"], ["https://data.delijn.be/stops/206583", "https://data.delijn.be/stops/206927"], ["https://data.delijn.be/stops/408536", "https://data.delijn.be/stops/408537"], ["https://data.delijn.be/stops/301920", "https://data.delijn.be/stops/307813"], ["https://data.delijn.be/stops/407677", "https://data.delijn.be/stops/407678"], ["https://data.delijn.be/stops/302726", "https://data.delijn.be/stops/302776"], ["https://data.delijn.be/stops/303265", "https://data.delijn.be/stops/303266"], ["https://data.delijn.be/stops/305820", "https://data.delijn.be/stops/306588"], ["https://data.delijn.be/stops/301366", "https://data.delijn.be/stops/306684"], ["https://data.delijn.be/stops/403914", "https://data.delijn.be/stops/404033"], ["https://data.delijn.be/stops/405905", "https://data.delijn.be/stops/405928"], ["https://data.delijn.be/stops/400924", "https://data.delijn.be/stops/400941"], ["https://data.delijn.be/stops/102309", "https://data.delijn.be/stops/102944"], ["https://data.delijn.be/stops/101973", "https://data.delijn.be/stops/109703"], ["https://data.delijn.be/stops/206018", "https://data.delijn.be/stops/206077"], ["https://data.delijn.be/stops/303032", "https://data.delijn.be/stops/308674"], ["https://data.delijn.be/stops/505950", "https://data.delijn.be/stops/505954"], ["https://data.delijn.be/stops/207804", "https://data.delijn.be/stops/208784"], ["https://data.delijn.be/stops/504347", "https://data.delijn.be/stops/509592"], ["https://data.delijn.be/stops/401330", "https://data.delijn.be/stops/401381"], ["https://data.delijn.be/stops/307307", "https://data.delijn.be/stops/307309"], ["https://data.delijn.be/stops/206987", "https://data.delijn.be/stops/207987"], ["https://data.delijn.be/stops/101311", "https://data.delijn.be/stops/106046"], ["https://data.delijn.be/stops/106135", "https://data.delijn.be/stops/106136"], ["https://data.delijn.be/stops/206773", "https://data.delijn.be/stops/206774"], ["https://data.delijn.be/stops/407704", "https://data.delijn.be/stops/407709"], ["https://data.delijn.be/stops/208771", "https://data.delijn.be/stops/209772"], ["https://data.delijn.be/stops/304475", "https://data.delijn.be/stops/304507"], ["https://data.delijn.be/stops/304787", "https://data.delijn.be/stops/306687"], ["https://data.delijn.be/stops/202815", "https://data.delijn.be/stops/202884"], ["https://data.delijn.be/stops/207111", "https://data.delijn.be/stops/207412"], ["https://data.delijn.be/stops/101084", "https://data.delijn.be/stops/101086"], ["https://data.delijn.be/stops/201882", "https://data.delijn.be/stops/202408"], ["https://data.delijn.be/stops/401788", "https://data.delijn.be/stops/406046"], ["https://data.delijn.be/stops/109307", "https://data.delijn.be/stops/109654"], ["https://data.delijn.be/stops/501191", "https://data.delijn.be/stops/506191"], ["https://data.delijn.be/stops/107831", "https://data.delijn.be/stops/204142"], ["https://data.delijn.be/stops/504427", "https://data.delijn.be/stops/509411"], ["https://data.delijn.be/stops/200093", "https://data.delijn.be/stops/211059"], ["https://data.delijn.be/stops/208049", "https://data.delijn.be/stops/209049"], ["https://data.delijn.be/stops/407445", "https://data.delijn.be/stops/407499"], ["https://data.delijn.be/stops/401080", "https://data.delijn.be/stops/409058"], ["https://data.delijn.be/stops/104162", "https://data.delijn.be/stops/104365"], ["https://data.delijn.be/stops/305529", "https://data.delijn.be/stops/305530"], ["https://data.delijn.be/stops/208703", "https://data.delijn.be/stops/209703"], ["https://data.delijn.be/stops/400223", "https://data.delijn.be/stops/401865"], ["https://data.delijn.be/stops/200765", "https://data.delijn.be/stops/209317"], ["https://data.delijn.be/stops/207444", "https://data.delijn.be/stops/207518"], ["https://data.delijn.be/stops/302757", "https://data.delijn.be/stops/308911"], ["https://data.delijn.be/stops/204437", "https://data.delijn.be/stops/204751"], ["https://data.delijn.be/stops/106954", "https://data.delijn.be/stops/107269"], ["https://data.delijn.be/stops/503321", "https://data.delijn.be/stops/503324"], ["https://data.delijn.be/stops/401128", "https://data.delijn.be/stops/401135"], ["https://data.delijn.be/stops/401970", "https://data.delijn.be/stops/408156"], ["https://data.delijn.be/stops/106490", "https://data.delijn.be/stops/109712"], ["https://data.delijn.be/stops/204208", "https://data.delijn.be/stops/204778"], ["https://data.delijn.be/stops/204179", "https://data.delijn.be/stops/204585"], ["https://data.delijn.be/stops/206078", "https://data.delijn.be/stops/207107"], ["https://data.delijn.be/stops/408026", "https://data.delijn.be/stops/408029"], ["https://data.delijn.be/stops/501114", "https://data.delijn.be/stops/506665"], ["https://data.delijn.be/stops/303346", "https://data.delijn.be/stops/306334"], ["https://data.delijn.be/stops/502118", "https://data.delijn.be/stops/507105"], ["https://data.delijn.be/stops/202178", "https://data.delijn.be/stops/209867"], ["https://data.delijn.be/stops/209078", "https://data.delijn.be/stops/218030"], ["https://data.delijn.be/stops/201852", "https://data.delijn.be/stops/210852"], ["https://data.delijn.be/stops/406436", "https://data.delijn.be/stops/406447"], ["https://data.delijn.be/stops/108328", "https://data.delijn.be/stops/109333"], ["https://data.delijn.be/stops/302148", "https://data.delijn.be/stops/302150"], ["https://data.delijn.be/stops/503720", "https://data.delijn.be/stops/508697"], ["https://data.delijn.be/stops/107559", "https://data.delijn.be/stops/107561"], ["https://data.delijn.be/stops/302874", "https://data.delijn.be/stops/302919"], ["https://data.delijn.be/stops/507551", "https://data.delijn.be/stops/507553"], ["https://data.delijn.be/stops/301537", "https://data.delijn.be/stops/301549"], ["https://data.delijn.be/stops/101537", "https://data.delijn.be/stops/109019"], ["https://data.delijn.be/stops/103098", "https://data.delijn.be/stops/103271"], ["https://data.delijn.be/stops/404197", "https://data.delijn.be/stops/404198"], ["https://data.delijn.be/stops/205514", "https://data.delijn.be/stops/205515"], ["https://data.delijn.be/stops/400362", "https://data.delijn.be/stops/400404"], ["https://data.delijn.be/stops/502269", "https://data.delijn.be/stops/502674"], ["https://data.delijn.be/stops/209629", "https://data.delijn.be/stops/209630"], ["https://data.delijn.be/stops/410172", "https://data.delijn.be/stops/410173"], ["https://data.delijn.be/stops/208049", "https://data.delijn.be/stops/208050"], ["https://data.delijn.be/stops/404163", "https://data.delijn.be/stops/404281"], ["https://data.delijn.be/stops/505905", "https://data.delijn.be/stops/508676"], ["https://data.delijn.be/stops/202182", "https://data.delijn.be/stops/203182"], ["https://data.delijn.be/stops/303800", "https://data.delijn.be/stops/303802"], ["https://data.delijn.be/stops/307537", "https://data.delijn.be/stops/307540"], ["https://data.delijn.be/stops/102645", "https://data.delijn.be/stops/102820"], ["https://data.delijn.be/stops/503481", "https://data.delijn.be/stops/505713"], ["https://data.delijn.be/stops/501421", "https://data.delijn.be/stops/506420"], ["https://data.delijn.be/stops/302119", "https://data.delijn.be/stops/304023"], ["https://data.delijn.be/stops/204980", "https://data.delijn.be/stops/206388"], ["https://data.delijn.be/stops/504010", "https://data.delijn.be/stops/505205"], ["https://data.delijn.be/stops/408197", "https://data.delijn.be/stops/409339"], ["https://data.delijn.be/stops/404708", "https://data.delijn.be/stops/404709"], ["https://data.delijn.be/stops/503543", "https://data.delijn.be/stops/508543"], ["https://data.delijn.be/stops/500941", "https://data.delijn.be/stops/504942"], ["https://data.delijn.be/stops/508161", "https://data.delijn.be/stops/508163"], ["https://data.delijn.be/stops/302965", "https://data.delijn.be/stops/302966"], ["https://data.delijn.be/stops/206548", "https://data.delijn.be/stops/207548"], ["https://data.delijn.be/stops/300567", "https://data.delijn.be/stops/307855"], ["https://data.delijn.be/stops/400454", "https://data.delijn.be/stops/400457"], ["https://data.delijn.be/stops/407018", "https://data.delijn.be/stops/407085"], ["https://data.delijn.be/stops/302849", "https://data.delijn.be/stops/302855"], ["https://data.delijn.be/stops/200108", "https://data.delijn.be/stops/202007"], ["https://data.delijn.be/stops/503805", "https://data.delijn.be/stops/509153"], ["https://data.delijn.be/stops/209584", "https://data.delijn.be/stops/209677"], ["https://data.delijn.be/stops/304425", "https://data.delijn.be/stops/307398"], ["https://data.delijn.be/stops/300689", "https://data.delijn.be/stops/300697"], ["https://data.delijn.be/stops/303954", "https://data.delijn.be/stops/303973"], ["https://data.delijn.be/stops/400576", "https://data.delijn.be/stops/404139"], ["https://data.delijn.be/stops/400378", "https://data.delijn.be/stops/405297"], ["https://data.delijn.be/stops/201976", "https://data.delijn.be/stops/206481"], ["https://data.delijn.be/stops/206591", "https://data.delijn.be/stops/207574"], ["https://data.delijn.be/stops/307818", "https://data.delijn.be/stops/308753"], ["https://data.delijn.be/stops/503221", "https://data.delijn.be/stops/503596"], ["https://data.delijn.be/stops/106244", "https://data.delijn.be/stops/107234"], ["https://data.delijn.be/stops/207675", "https://data.delijn.be/stops/208140"], ["https://data.delijn.be/stops/407845", "https://data.delijn.be/stops/408177"], ["https://data.delijn.be/stops/206945", "https://data.delijn.be/stops/209549"], ["https://data.delijn.be/stops/304539", "https://data.delijn.be/stops/304540"], ["https://data.delijn.be/stops/403703", "https://data.delijn.be/stops/403745"], ["https://data.delijn.be/stops/308741", "https://data.delijn.be/stops/308747"], ["https://data.delijn.be/stops/504533", "https://data.delijn.be/stops/509533"], ["https://data.delijn.be/stops/202445", "https://data.delijn.be/stops/203445"], ["https://data.delijn.be/stops/204179", "https://data.delijn.be/stops/206394"], ["https://data.delijn.be/stops/504236", "https://data.delijn.be/stops/509241"], ["https://data.delijn.be/stops/105006", "https://data.delijn.be/stops/105076"], ["https://data.delijn.be/stops/200712", "https://data.delijn.be/stops/201704"], ["https://data.delijn.be/stops/405040", "https://data.delijn.be/stops/405863"], ["https://data.delijn.be/stops/303697", "https://data.delijn.be/stops/303698"], ["https://data.delijn.be/stops/508012", "https://data.delijn.be/stops/508018"], ["https://data.delijn.be/stops/305082", "https://data.delijn.be/stops/306954"], ["https://data.delijn.be/stops/402122", "https://data.delijn.be/stops/405490"], ["https://data.delijn.be/stops/303551", "https://data.delijn.be/stops/308685"], ["https://data.delijn.be/stops/106798", "https://data.delijn.be/stops/106866"], ["https://data.delijn.be/stops/404310", "https://data.delijn.be/stops/404649"], ["https://data.delijn.be/stops/105099", "https://data.delijn.be/stops/105102"], ["https://data.delijn.be/stops/400496", "https://data.delijn.be/stops/400497"], ["https://data.delijn.be/stops/407837", "https://data.delijn.be/stops/408168"], ["https://data.delijn.be/stops/201754", "https://data.delijn.be/stops/208221"], ["https://data.delijn.be/stops/303471", "https://data.delijn.be/stops/303472"], ["https://data.delijn.be/stops/404139", "https://data.delijn.be/stops/404140"], ["https://data.delijn.be/stops/306677", "https://data.delijn.be/stops/306678"], ["https://data.delijn.be/stops/301359", "https://data.delijn.be/stops/306125"], ["https://data.delijn.be/stops/502588", "https://data.delijn.be/stops/507589"], ["https://data.delijn.be/stops/502039", "https://data.delijn.be/stops/507001"], ["https://data.delijn.be/stops/203882", "https://data.delijn.be/stops/207938"], ["https://data.delijn.be/stops/505788", "https://data.delijn.be/stops/506001"], ["https://data.delijn.be/stops/503762", "https://data.delijn.be/stops/508753"], ["https://data.delijn.be/stops/300076", "https://data.delijn.be/stops/308450"], ["https://data.delijn.be/stops/403968", "https://data.delijn.be/stops/403974"], ["https://data.delijn.be/stops/201237", "https://data.delijn.be/stops/211130"], ["https://data.delijn.be/stops/408519", "https://data.delijn.be/stops/408765"], ["https://data.delijn.be/stops/108654", "https://data.delijn.be/stops/306597"], ["https://data.delijn.be/stops/409036", "https://data.delijn.be/stops/409246"], ["https://data.delijn.be/stops/208659", "https://data.delijn.be/stops/209484"], ["https://data.delijn.be/stops/407497", "https://data.delijn.be/stops/409457"], ["https://data.delijn.be/stops/401093", "https://data.delijn.be/stops/401123"], ["https://data.delijn.be/stops/502004", "https://data.delijn.be/stops/505625"], ["https://data.delijn.be/stops/301986", "https://data.delijn.be/stops/307194"], ["https://data.delijn.be/stops/106982", "https://data.delijn.be/stops/106984"], ["https://data.delijn.be/stops/406272", "https://data.delijn.be/stops/407582"], ["https://data.delijn.be/stops/406069", "https://data.delijn.be/stops/406138"], ["https://data.delijn.be/stops/200257", "https://data.delijn.be/stops/203552"], ["https://data.delijn.be/stops/505925", "https://data.delijn.be/stops/505992"], ["https://data.delijn.be/stops/407690", "https://data.delijn.be/stops/409878"], ["https://data.delijn.be/stops/301002", "https://data.delijn.be/stops/301074"], ["https://data.delijn.be/stops/501634", "https://data.delijn.be/stops/501642"], ["https://data.delijn.be/stops/105034", "https://data.delijn.be/stops/105038"], ["https://data.delijn.be/stops/300123", "https://data.delijn.be/stops/300125"], ["https://data.delijn.be/stops/107900", "https://data.delijn.be/stops/108035"], ["https://data.delijn.be/stops/501357", "https://data.delijn.be/stops/506335"], ["https://data.delijn.be/stops/305840", "https://data.delijn.be/stops/305841"], ["https://data.delijn.be/stops/502214", "https://data.delijn.be/stops/507214"], ["https://data.delijn.be/stops/101580", "https://data.delijn.be/stops/109709"], ["https://data.delijn.be/stops/504063", "https://data.delijn.be/stops/505109"], ["https://data.delijn.be/stops/202219", "https://data.delijn.be/stops/205077"], ["https://data.delijn.be/stops/301938", "https://data.delijn.be/stops/306825"], ["https://data.delijn.be/stops/200507", "https://data.delijn.be/stops/211133"], ["https://data.delijn.be/stops/204152", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/107341", "https://data.delijn.be/stops/108163"], ["https://data.delijn.be/stops/200924", "https://data.delijn.be/stops/211066"], ["https://data.delijn.be/stops/301519", "https://data.delijn.be/stops/301525"], ["https://data.delijn.be/stops/408294", "https://data.delijn.be/stops/408295"], ["https://data.delijn.be/stops/204822", "https://data.delijn.be/stops/205539"], ["https://data.delijn.be/stops/407626", "https://data.delijn.be/stops/410193"], ["https://data.delijn.be/stops/201714", "https://data.delijn.be/stops/202380"], ["https://data.delijn.be/stops/503858", "https://data.delijn.be/stops/507945"], ["https://data.delijn.be/stops/305162", "https://data.delijn.be/stops/305190"], ["https://data.delijn.be/stops/406110", "https://data.delijn.be/stops/406111"], ["https://data.delijn.be/stops/505662", "https://data.delijn.be/stops/507505"], ["https://data.delijn.be/stops/209220", "https://data.delijn.be/stops/209223"], ["https://data.delijn.be/stops/201356", "https://data.delijn.be/stops/201501"], ["https://data.delijn.be/stops/402836", "https://data.delijn.be/stops/402854"], ["https://data.delijn.be/stops/304339", "https://data.delijn.be/stops/304707"], ["https://data.delijn.be/stops/302921", "https://data.delijn.be/stops/306317"], ["https://data.delijn.be/stops/101948", "https://data.delijn.be/stops/109871"], ["https://data.delijn.be/stops/508693", "https://data.delijn.be/stops/509962"], ["https://data.delijn.be/stops/402654", "https://data.delijn.be/stops/402655"], ["https://data.delijn.be/stops/200604", "https://data.delijn.be/stops/202860"], ["https://data.delijn.be/stops/505817", "https://data.delijn.be/stops/509481"], ["https://data.delijn.be/stops/200518", "https://data.delijn.be/stops/200533"], ["https://data.delijn.be/stops/401413", "https://data.delijn.be/stops/401415"], ["https://data.delijn.be/stops/300560", "https://data.delijn.be/stops/300561"], ["https://data.delijn.be/stops/502015", "https://data.delijn.be/stops/507912"], ["https://data.delijn.be/stops/206512", "https://data.delijn.be/stops/206716"], ["https://data.delijn.be/stops/408963", "https://data.delijn.be/stops/408965"], ["https://data.delijn.be/stops/204115", "https://data.delijn.be/stops/204117"], ["https://data.delijn.be/stops/501488", "https://data.delijn.be/stops/506026"], ["https://data.delijn.be/stops/301450", "https://data.delijn.be/stops/308077"], ["https://data.delijn.be/stops/107565", "https://data.delijn.be/stops/108155"], ["https://data.delijn.be/stops/503613", "https://data.delijn.be/stops/503617"], ["https://data.delijn.be/stops/400094", "https://data.delijn.be/stops/409067"], ["https://data.delijn.be/stops/503871", "https://data.delijn.be/stops/508868"], ["https://data.delijn.be/stops/504388", "https://data.delijn.be/stops/509388"], ["https://data.delijn.be/stops/405228", "https://data.delijn.be/stops/405233"], ["https://data.delijn.be/stops/505204", "https://data.delijn.be/stops/505830"], ["https://data.delijn.be/stops/201768", "https://data.delijn.be/stops/219006"], ["https://data.delijn.be/stops/200079", "https://data.delijn.be/stops/201346"], ["https://data.delijn.be/stops/102231", "https://data.delijn.be/stops/105522"], ["https://data.delijn.be/stops/503099", "https://data.delijn.be/stops/503219"], ["https://data.delijn.be/stops/503526", "https://data.delijn.be/stops/504687"], ["https://data.delijn.be/stops/302438", "https://data.delijn.be/stops/302439"], ["https://data.delijn.be/stops/302997", "https://data.delijn.be/stops/302998"], ["https://data.delijn.be/stops/107689", "https://data.delijn.be/stops/107691"], ["https://data.delijn.be/stops/305310", "https://data.delijn.be/stops/305311"], ["https://data.delijn.be/stops/204651", "https://data.delijn.be/stops/205286"], ["https://data.delijn.be/stops/301869", "https://data.delijn.be/stops/301876"], ["https://data.delijn.be/stops/203474", "https://data.delijn.be/stops/203475"], ["https://data.delijn.be/stops/503645", "https://data.delijn.be/stops/508735"], ["https://data.delijn.be/stops/502707", "https://data.delijn.be/stops/507606"], ["https://data.delijn.be/stops/402834", "https://data.delijn.be/stops/406993"], ["https://data.delijn.be/stops/105971", "https://data.delijn.be/stops/205637"], ["https://data.delijn.be/stops/107159", "https://data.delijn.be/stops/107161"], ["https://data.delijn.be/stops/202433", "https://data.delijn.be/stops/202434"], ["https://data.delijn.be/stops/302977", "https://data.delijn.be/stops/308660"], ["https://data.delijn.be/stops/402477", "https://data.delijn.be/stops/407369"], ["https://data.delijn.be/stops/300127", "https://data.delijn.be/stops/300144"], ["https://data.delijn.be/stops/505617", "https://data.delijn.be/stops/505623"], ["https://data.delijn.be/stops/307205", "https://data.delijn.be/stops/307206"], ["https://data.delijn.be/stops/502225", "https://data.delijn.be/stops/507225"], ["https://data.delijn.be/stops/206390", "https://data.delijn.be/stops/207306"], ["https://data.delijn.be/stops/306660", "https://data.delijn.be/stops/307457"], ["https://data.delijn.be/stops/105012", "https://data.delijn.be/stops/105082"], ["https://data.delijn.be/stops/405882", "https://data.delijn.be/stops/405889"], ["https://data.delijn.be/stops/503531", "https://data.delijn.be/stops/503869"], ["https://data.delijn.be/stops/102634", "https://data.delijn.be/stops/107854"], ["https://data.delijn.be/stops/104954", "https://data.delijn.be/stops/109721"], ["https://data.delijn.be/stops/200705", "https://data.delijn.be/stops/203573"], ["https://data.delijn.be/stops/404514", "https://data.delijn.be/stops/406743"], ["https://data.delijn.be/stops/506200", "https://data.delijn.be/stops/506254"], ["https://data.delijn.be/stops/203980", "https://data.delijn.be/stops/203982"], ["https://data.delijn.be/stops/308144", "https://data.delijn.be/stops/308145"], ["https://data.delijn.be/stops/203254", "https://data.delijn.be/stops/203255"], ["https://data.delijn.be/stops/302897", "https://data.delijn.be/stops/303236"], ["https://data.delijn.be/stops/101412", "https://data.delijn.be/stops/101413"], ["https://data.delijn.be/stops/104960", "https://data.delijn.be/stops/104996"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/202154"], ["https://data.delijn.be/stops/206621", "https://data.delijn.be/stops/206757"], ["https://data.delijn.be/stops/107793", "https://data.delijn.be/stops/107796"], ["https://data.delijn.be/stops/300829", "https://data.delijn.be/stops/301811"], ["https://data.delijn.be/stops/206443", "https://data.delijn.be/stops/206444"], ["https://data.delijn.be/stops/300354", "https://data.delijn.be/stops/304054"], ["https://data.delijn.be/stops/405147", "https://data.delijn.be/stops/405285"], ["https://data.delijn.be/stops/101640", "https://data.delijn.be/stops/102839"], ["https://data.delijn.be/stops/203118", "https://data.delijn.be/stops/203223"], ["https://data.delijn.be/stops/106370", "https://data.delijn.be/stops/106372"], ["https://data.delijn.be/stops/106908", "https://data.delijn.be/stops/106909"], ["https://data.delijn.be/stops/301047", "https://data.delijn.be/stops/301050"], ["https://data.delijn.be/stops/201513", "https://data.delijn.be/stops/201551"], ["https://data.delijn.be/stops/106277", "https://data.delijn.be/stops/106278"], ["https://data.delijn.be/stops/206971", "https://data.delijn.be/stops/206972"], ["https://data.delijn.be/stops/109549", "https://data.delijn.be/stops/109758"], ["https://data.delijn.be/stops/308020", "https://data.delijn.be/stops/308021"], ["https://data.delijn.be/stops/300685", "https://data.delijn.be/stops/305068"], ["https://data.delijn.be/stops/201861", "https://data.delijn.be/stops/202669"], ["https://data.delijn.be/stops/409552", "https://data.delijn.be/stops/409555"], ["https://data.delijn.be/stops/405635", "https://data.delijn.be/stops/405636"], ["https://data.delijn.be/stops/300244", "https://data.delijn.be/stops/305420"], ["https://data.delijn.be/stops/102651", "https://data.delijn.be/stops/102652"], ["https://data.delijn.be/stops/105048", "https://data.delijn.be/stops/106708"], ["https://data.delijn.be/stops/409086", "https://data.delijn.be/stops/409139"], ["https://data.delijn.be/stops/302353", "https://data.delijn.be/stops/302369"], ["https://data.delijn.be/stops/308731", "https://data.delijn.be/stops/308732"], ["https://data.delijn.be/stops/106247", "https://data.delijn.be/stops/106250"], ["https://data.delijn.be/stops/406451", "https://data.delijn.be/stops/406488"], ["https://data.delijn.be/stops/500559", "https://data.delijn.be/stops/500561"], ["https://data.delijn.be/stops/205482", "https://data.delijn.be/stops/205522"], ["https://data.delijn.be/stops/400733", "https://data.delijn.be/stops/400742"], ["https://data.delijn.be/stops/102206", "https://data.delijn.be/stops/105814"], ["https://data.delijn.be/stops/106658", "https://data.delijn.be/stops/106659"], ["https://data.delijn.be/stops/202924", "https://data.delijn.be/stops/202925"], ["https://data.delijn.be/stops/307648", "https://data.delijn.be/stops/307649"], ["https://data.delijn.be/stops/303531", "https://data.delijn.be/stops/303556"], ["https://data.delijn.be/stops/303892", "https://data.delijn.be/stops/305547"], ["https://data.delijn.be/stops/204636", "https://data.delijn.be/stops/205637"], ["https://data.delijn.be/stops/204113", "https://data.delijn.be/stops/205681"], ["https://data.delijn.be/stops/504244", "https://data.delijn.be/stops/509596"], ["https://data.delijn.be/stops/408523", "https://data.delijn.be/stops/408580"], ["https://data.delijn.be/stops/400582", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/302682", "https://data.delijn.be/stops/302750"], ["https://data.delijn.be/stops/402377", "https://data.delijn.be/stops/402427"], ["https://data.delijn.be/stops/202776", "https://data.delijn.be/stops/203935"], ["https://data.delijn.be/stops/307625", "https://data.delijn.be/stops/308251"], ["https://data.delijn.be/stops/302745", "https://data.delijn.be/stops/302751"], ["https://data.delijn.be/stops/504654", "https://data.delijn.be/stops/509654"], ["https://data.delijn.be/stops/503797", "https://data.delijn.be/stops/508864"], ["https://data.delijn.be/stops/503046", "https://data.delijn.be/stops/508763"], ["https://data.delijn.be/stops/507206", "https://data.delijn.be/stops/507211"], ["https://data.delijn.be/stops/503531", "https://data.delijn.be/stops/504765"], ["https://data.delijn.be/stops/501104", "https://data.delijn.be/stops/501112"], ["https://data.delijn.be/stops/400900", "https://data.delijn.be/stops/408473"], ["https://data.delijn.be/stops/307393", "https://data.delijn.be/stops/308640"], ["https://data.delijn.be/stops/408315", "https://data.delijn.be/stops/408343"], ["https://data.delijn.be/stops/102880", "https://data.delijn.be/stops/104889"], ["https://data.delijn.be/stops/101278", "https://data.delijn.be/stops/105391"], ["https://data.delijn.be/stops/104652", "https://data.delijn.be/stops/306620"], ["https://data.delijn.be/stops/208170", "https://data.delijn.be/stops/208171"], ["https://data.delijn.be/stops/505185", "https://data.delijn.be/stops/509558"], ["https://data.delijn.be/stops/404681", "https://data.delijn.be/stops/408700"], ["https://data.delijn.be/stops/400999", "https://data.delijn.be/stops/406577"], ["https://data.delijn.be/stops/204744", "https://data.delijn.be/stops/205744"], ["https://data.delijn.be/stops/103006", "https://data.delijn.be/stops/106556"], ["https://data.delijn.be/stops/402854", "https://data.delijn.be/stops/408981"], ["https://data.delijn.be/stops/107602", "https://data.delijn.be/stops/107605"], ["https://data.delijn.be/stops/207755", "https://data.delijn.be/stops/208374"], ["https://data.delijn.be/stops/200129", "https://data.delijn.be/stops/201129"], ["https://data.delijn.be/stops/505117", "https://data.delijn.be/stops/508884"], ["https://data.delijn.be/stops/300180", "https://data.delijn.be/stops/300211"], ["https://data.delijn.be/stops/509398", "https://data.delijn.be/stops/509550"], ["https://data.delijn.be/stops/206346", "https://data.delijn.be/stops/207372"], ["https://data.delijn.be/stops/303404", "https://data.delijn.be/stops/303405"], ["https://data.delijn.be/stops/200391", "https://data.delijn.be/stops/203719"], ["https://data.delijn.be/stops/107786", "https://data.delijn.be/stops/207334"], ["https://data.delijn.be/stops/106685", "https://data.delijn.be/stops/106686"], ["https://data.delijn.be/stops/303696", "https://data.delijn.be/stops/303780"], ["https://data.delijn.be/stops/403253", "https://data.delijn.be/stops/403285"], ["https://data.delijn.be/stops/505706", "https://data.delijn.be/stops/509224"], ["https://data.delijn.be/stops/202674", "https://data.delijn.be/stops/203675"], ["https://data.delijn.be/stops/105743", "https://data.delijn.be/stops/109833"], ["https://data.delijn.be/stops/207970", "https://data.delijn.be/stops/207990"], ["https://data.delijn.be/stops/303368", "https://data.delijn.be/stops/303373"], ["https://data.delijn.be/stops/506113", "https://data.delijn.be/stops/506638"], ["https://data.delijn.be/stops/101430", "https://data.delijn.be/stops/101810"], ["https://data.delijn.be/stops/105620", "https://data.delijn.be/stops/105830"], ["https://data.delijn.be/stops/508195", "https://data.delijn.be/stops/508198"], ["https://data.delijn.be/stops/101590", "https://data.delijn.be/stops/105885"], ["https://data.delijn.be/stops/200914", "https://data.delijn.be/stops/200934"], ["https://data.delijn.be/stops/400576", "https://data.delijn.be/stops/400635"], ["https://data.delijn.be/stops/301261", "https://data.delijn.be/stops/307389"], ["https://data.delijn.be/stops/303747", "https://data.delijn.be/stops/303750"], ["https://data.delijn.be/stops/405806", "https://data.delijn.be/stops/409420"], ["https://data.delijn.be/stops/204167", "https://data.delijn.be/stops/205168"], ["https://data.delijn.be/stops/200457", "https://data.delijn.be/stops/200557"], ["https://data.delijn.be/stops/402132", "https://data.delijn.be/stops/410100"], ["https://data.delijn.be/stops/504435", "https://data.delijn.be/stops/504835"], ["https://data.delijn.be/stops/201762", "https://data.delijn.be/stops/209272"], ["https://data.delijn.be/stops/207416", "https://data.delijn.be/stops/217016"], ["https://data.delijn.be/stops/300638", "https://data.delijn.be/stops/305816"], ["https://data.delijn.be/stops/403195", "https://data.delijn.be/stops/403251"], ["https://data.delijn.be/stops/505231", "https://data.delijn.be/stops/506105"], ["https://data.delijn.be/stops/203990", "https://data.delijn.be/stops/210851"], ["https://data.delijn.be/stops/302614", "https://data.delijn.be/stops/302637"], ["https://data.delijn.be/stops/303783", "https://data.delijn.be/stops/303801"], ["https://data.delijn.be/stops/400362", "https://data.delijn.be/stops/406866"], ["https://data.delijn.be/stops/401025", "https://data.delijn.be/stops/401140"], ["https://data.delijn.be/stops/503060", "https://data.delijn.be/stops/503163"], ["https://data.delijn.be/stops/505013", "https://data.delijn.be/stops/507271"], ["https://data.delijn.be/stops/401185", "https://data.delijn.be/stops/401187"], ["https://data.delijn.be/stops/301273", "https://data.delijn.be/stops/301274"], ["https://data.delijn.be/stops/307394", "https://data.delijn.be/stops/307395"], ["https://data.delijn.be/stops/106426", "https://data.delijn.be/stops/106427"], ["https://data.delijn.be/stops/401413", "https://data.delijn.be/stops/301122"], ["https://data.delijn.be/stops/401786", "https://data.delijn.be/stops/406143"], ["https://data.delijn.be/stops/303535", "https://data.delijn.be/stops/308792"], ["https://data.delijn.be/stops/101230", "https://data.delijn.be/stops/102505"], ["https://data.delijn.be/stops/402157", "https://data.delijn.be/stops/402252"], ["https://data.delijn.be/stops/302294", "https://data.delijn.be/stops/304989"], ["https://data.delijn.be/stops/205229", "https://data.delijn.be/stops/205230"], ["https://data.delijn.be/stops/406500", "https://data.delijn.be/stops/406501"], ["https://data.delijn.be/stops/101641", "https://data.delijn.be/stops/109186"], ["https://data.delijn.be/stops/200402", "https://data.delijn.be/stops/201689"], ["https://data.delijn.be/stops/300005", "https://data.delijn.be/stops/307467"], ["https://data.delijn.be/stops/508372", "https://data.delijn.be/stops/508403"], ["https://data.delijn.be/stops/505823", "https://data.delijn.be/stops/507018"], ["https://data.delijn.be/stops/202624", "https://data.delijn.be/stops/202625"], ["https://data.delijn.be/stops/501075", "https://data.delijn.be/stops/506071"], ["https://data.delijn.be/stops/301698", "https://data.delijn.be/stops/304571"], ["https://data.delijn.be/stops/403502", "https://data.delijn.be/stops/409571"], ["https://data.delijn.be/stops/302913", "https://data.delijn.be/stops/303227"], ["https://data.delijn.be/stops/408066", "https://data.delijn.be/stops/408067"], ["https://data.delijn.be/stops/106641", "https://data.delijn.be/stops/106678"], ["https://data.delijn.be/stops/102241", "https://data.delijn.be/stops/102242"], ["https://data.delijn.be/stops/206419", "https://data.delijn.be/stops/207805"], ["https://data.delijn.be/stops/206579", "https://data.delijn.be/stops/207467"], ["https://data.delijn.be/stops/206960", "https://data.delijn.be/stops/306730"], ["https://data.delijn.be/stops/401066", "https://data.delijn.be/stops/410202"], ["https://data.delijn.be/stops/108272", "https://data.delijn.be/stops/108277"], ["https://data.delijn.be/stops/501409", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/503868", "https://data.delijn.be/stops/508868"], ["https://data.delijn.be/stops/101616", "https://data.delijn.be/stops/102934"], ["https://data.delijn.be/stops/501286", "https://data.delijn.be/stops/506204"], ["https://data.delijn.be/stops/501023", "https://data.delijn.be/stops/501036"], ["https://data.delijn.be/stops/502107", "https://data.delijn.be/stops/502167"], ["https://data.delijn.be/stops/204756", "https://data.delijn.be/stops/205522"], ["https://data.delijn.be/stops/400528", "https://data.delijn.be/stops/400630"], ["https://data.delijn.be/stops/204551", "https://data.delijn.be/stops/205290"], ["https://data.delijn.be/stops/302917", "https://data.delijn.be/stops/307008"], ["https://data.delijn.be/stops/408137", "https://data.delijn.be/stops/408166"], ["https://data.delijn.be/stops/406055", "https://data.delijn.be/stops/406143"], ["https://data.delijn.be/stops/400520", "https://data.delijn.be/stops/403826"], ["https://data.delijn.be/stops/101494", "https://data.delijn.be/stops/109375"], ["https://data.delijn.be/stops/101782", "https://data.delijn.be/stops/108010"], ["https://data.delijn.be/stops/508787", "https://data.delijn.be/stops/508885"], ["https://data.delijn.be/stops/208667", "https://data.delijn.be/stops/208668"], ["https://data.delijn.be/stops/104392", "https://data.delijn.be/stops/104393"], ["https://data.delijn.be/stops/301452", "https://data.delijn.be/stops/308713"], ["https://data.delijn.be/stops/200955", "https://data.delijn.be/stops/203508"], ["https://data.delijn.be/stops/102691", "https://data.delijn.be/stops/103120"], ["https://data.delijn.be/stops/204289", "https://data.delijn.be/stops/204290"], ["https://data.delijn.be/stops/300752", "https://data.delijn.be/stops/304569"], ["https://data.delijn.be/stops/404850", "https://data.delijn.be/stops/404854"], ["https://data.delijn.be/stops/504255", "https://data.delijn.be/stops/504326"], ["https://data.delijn.be/stops/201711", "https://data.delijn.be/stops/201712"], ["https://data.delijn.be/stops/506388", "https://data.delijn.be/stops/506390"], ["https://data.delijn.be/stops/408741", "https://data.delijn.be/stops/408743"], ["https://data.delijn.be/stops/407231", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/304347", "https://data.delijn.be/stops/304349"], ["https://data.delijn.be/stops/400064", "https://data.delijn.be/stops/409203"], ["https://data.delijn.be/stops/507249", "https://data.delijn.be/stops/507255"], ["https://data.delijn.be/stops/109082", "https://data.delijn.be/stops/109084"], ["https://data.delijn.be/stops/304392", "https://data.delijn.be/stops/304995"], ["https://data.delijn.be/stops/506261", "https://data.delijn.be/stops/509659"], ["https://data.delijn.be/stops/102527", "https://data.delijn.be/stops/405710"], ["https://data.delijn.be/stops/500019", "https://data.delijn.be/stops/507058"], ["https://data.delijn.be/stops/206844", "https://data.delijn.be/stops/207843"], ["https://data.delijn.be/stops/308504", "https://data.delijn.be/stops/308540"], ["https://data.delijn.be/stops/103610", "https://data.delijn.be/stops/107290"], ["https://data.delijn.be/stops/106642", "https://data.delijn.be/stops/106650"], ["https://data.delijn.be/stops/305571", "https://data.delijn.be/stops/305573"], ["https://data.delijn.be/stops/303411", "https://data.delijn.be/stops/303427"], ["https://data.delijn.be/stops/405453", "https://data.delijn.be/stops/405460"], ["https://data.delijn.be/stops/202648", "https://data.delijn.be/stops/211045"], ["https://data.delijn.be/stops/503354", "https://data.delijn.be/stops/508374"], ["https://data.delijn.be/stops/101442", "https://data.delijn.be/stops/107055"], ["https://data.delijn.be/stops/301813", "https://data.delijn.be/stops/305531"], ["https://data.delijn.be/stops/407023", "https://data.delijn.be/stops/407034"], ["https://data.delijn.be/stops/405630", "https://data.delijn.be/stops/407774"], ["https://data.delijn.be/stops/204291", "https://data.delijn.be/stops/205291"], ["https://data.delijn.be/stops/210125", "https://data.delijn.be/stops/211127"], ["https://data.delijn.be/stops/406270", "https://data.delijn.be/stops/406278"], ["https://data.delijn.be/stops/409500", "https://data.delijn.be/stops/409506"], ["https://data.delijn.be/stops/408859", "https://data.delijn.be/stops/408864"], ["https://data.delijn.be/stops/504499", "https://data.delijn.be/stops/509501"], ["https://data.delijn.be/stops/103234", "https://data.delijn.be/stops/103236"], ["https://data.delijn.be/stops/301297", "https://data.delijn.be/stops/307324"], ["https://data.delijn.be/stops/203037", "https://data.delijn.be/stops/203982"], ["https://data.delijn.be/stops/403925", "https://data.delijn.be/stops/408356"], ["https://data.delijn.be/stops/108825", "https://data.delijn.be/stops/108892"], ["https://data.delijn.be/stops/101536", "https://data.delijn.be/stops/109017"], ["https://data.delijn.be/stops/101747", "https://data.delijn.be/stops/101748"], ["https://data.delijn.be/stops/109048", "https://data.delijn.be/stops/109330"], ["https://data.delijn.be/stops/106482", "https://data.delijn.be/stops/109213"], ["https://data.delijn.be/stops/206702", "https://data.delijn.be/stops/206741"], ["https://data.delijn.be/stops/504572", "https://data.delijn.be/stops/505300"], ["https://data.delijn.be/stops/500006", "https://data.delijn.be/stops/501510"], ["https://data.delijn.be/stops/206136", "https://data.delijn.be/stops/207136"], ["https://data.delijn.be/stops/109096", "https://data.delijn.be/stops/109097"], ["https://data.delijn.be/stops/306189", "https://data.delijn.be/stops/306190"], ["https://data.delijn.be/stops/302806", "https://data.delijn.be/stops/302807"], ["https://data.delijn.be/stops/301253", "https://data.delijn.be/stops/301254"], ["https://data.delijn.be/stops/203677", "https://data.delijn.be/stops/203695"], ["https://data.delijn.be/stops/500873", "https://data.delijn.be/stops/505923"], ["https://data.delijn.be/stops/302222", "https://data.delijn.be/stops/302223"], ["https://data.delijn.be/stops/308136", "https://data.delijn.be/stops/308137"], ["https://data.delijn.be/stops/504734", "https://data.delijn.be/stops/506241"], ["https://data.delijn.be/stops/509871", "https://data.delijn.be/stops/509963"], ["https://data.delijn.be/stops/300137", "https://data.delijn.be/stops/306806"], ["https://data.delijn.be/stops/502290", "https://data.delijn.be/stops/505730"], ["https://data.delijn.be/stops/303851", "https://data.delijn.be/stops/303854"], ["https://data.delijn.be/stops/102982", "https://data.delijn.be/stops/107412"], ["https://data.delijn.be/stops/207574", "https://data.delijn.be/stops/207575"], ["https://data.delijn.be/stops/409321", "https://data.delijn.be/stops/410068"], ["https://data.delijn.be/stops/300437", "https://data.delijn.be/stops/300438"], ["https://data.delijn.be/stops/202112", "https://data.delijn.be/stops/203113"], ["https://data.delijn.be/stops/403243", "https://data.delijn.be/stops/403276"], ["https://data.delijn.be/stops/408059", "https://data.delijn.be/stops/408438"], ["https://data.delijn.be/stops/405206", "https://data.delijn.be/stops/405252"], ["https://data.delijn.be/stops/101226", "https://data.delijn.be/stops/101718"], ["https://data.delijn.be/stops/109824", "https://data.delijn.be/stops/109825"], ["https://data.delijn.be/stops/205289", "https://data.delijn.be/stops/205498"], ["https://data.delijn.be/stops/408171", "https://data.delijn.be/stops/409136"], ["https://data.delijn.be/stops/508601", "https://data.delijn.be/stops/508752"], ["https://data.delijn.be/stops/400624", "https://data.delijn.be/stops/400625"], ["https://data.delijn.be/stops/306649", "https://data.delijn.be/stops/306650"], ["https://data.delijn.be/stops/401099", "https://data.delijn.be/stops/404984"], ["https://data.delijn.be/stops/502617", "https://data.delijn.be/stops/507617"], ["https://data.delijn.be/stops/300559", "https://data.delijn.be/stops/300613"], ["https://data.delijn.be/stops/206049", "https://data.delijn.be/stops/206962"], ["https://data.delijn.be/stops/105011", "https://data.delijn.be/stops/105013"], ["https://data.delijn.be/stops/201699", "https://data.delijn.be/stops/202785"], ["https://data.delijn.be/stops/509773", "https://data.delijn.be/stops/509787"], ["https://data.delijn.be/stops/405960", "https://data.delijn.be/stops/308171"], ["https://data.delijn.be/stops/307833", "https://data.delijn.be/stops/308275"], ["https://data.delijn.be/stops/407176", "https://data.delijn.be/stops/408729"], ["https://data.delijn.be/stops/200563", "https://data.delijn.be/stops/201564"], ["https://data.delijn.be/stops/404784", "https://data.delijn.be/stops/404832"], ["https://data.delijn.be/stops/203971", "https://data.delijn.be/stops/203972"], ["https://data.delijn.be/stops/504072", "https://data.delijn.be/stops/509071"], ["https://data.delijn.be/stops/408317", "https://data.delijn.be/stops/408398"], ["https://data.delijn.be/stops/202108", "https://data.delijn.be/stops/205793"], ["https://data.delijn.be/stops/208501", "https://data.delijn.be/stops/209468"], ["https://data.delijn.be/stops/409312", "https://data.delijn.be/stops/409313"], ["https://data.delijn.be/stops/102453", "https://data.delijn.be/stops/102454"], ["https://data.delijn.be/stops/206205", "https://data.delijn.be/stops/207206"], ["https://data.delijn.be/stops/206640", "https://data.delijn.be/stops/206922"], ["https://data.delijn.be/stops/405849", "https://data.delijn.be/stops/405868"], ["https://data.delijn.be/stops/208342", "https://data.delijn.be/stops/209110"], ["https://data.delijn.be/stops/409368", "https://data.delijn.be/stops/409442"], ["https://data.delijn.be/stops/106221", "https://data.delijn.be/stops/106320"], ["https://data.delijn.be/stops/408258", "https://data.delijn.be/stops/408373"], ["https://data.delijn.be/stops/107400", "https://data.delijn.be/stops/107725"], ["https://data.delijn.be/stops/203624", "https://data.delijn.be/stops/203625"], ["https://data.delijn.be/stops/406214", "https://data.delijn.be/stops/406232"], ["https://data.delijn.be/stops/206520", "https://data.delijn.be/stops/207520"], ["https://data.delijn.be/stops/503513", "https://data.delijn.be/stops/508475"], ["https://data.delijn.be/stops/109946", "https://data.delijn.be/stops/109947"], ["https://data.delijn.be/stops/304562", "https://data.delijn.be/stops/304586"], ["https://data.delijn.be/stops/305234", "https://data.delijn.be/stops/305325"], ["https://data.delijn.be/stops/300516", "https://data.delijn.be/stops/307828"], ["https://data.delijn.be/stops/108921", "https://data.delijn.be/stops/108923"], ["https://data.delijn.be/stops/307552", "https://data.delijn.be/stops/307555"], ["https://data.delijn.be/stops/400477", "https://data.delijn.be/stops/404669"], ["https://data.delijn.be/stops/106105", "https://data.delijn.be/stops/106161"], ["https://data.delijn.be/stops/206029", "https://data.delijn.be/stops/206030"], ["https://data.delijn.be/stops/211076", "https://data.delijn.be/stops/214003"], ["https://data.delijn.be/stops/206985", "https://data.delijn.be/stops/207984"], ["https://data.delijn.be/stops/401904", "https://data.delijn.be/stops/406257"], ["https://data.delijn.be/stops/206559", "https://data.delijn.be/stops/208953"], ["https://data.delijn.be/stops/501036", "https://data.delijn.be/stops/506323"], ["https://data.delijn.be/stops/502555", "https://data.delijn.be/stops/507555"], ["https://data.delijn.be/stops/206500", "https://data.delijn.be/stops/207062"], ["https://data.delijn.be/stops/200714", "https://data.delijn.be/stops/202124"], ["https://data.delijn.be/stops/104042", "https://data.delijn.be/stops/108376"], ["https://data.delijn.be/stops/406398", "https://data.delijn.be/stops/302838"], ["https://data.delijn.be/stops/101428", "https://data.delijn.be/stops/107298"], ["https://data.delijn.be/stops/200713", "https://data.delijn.be/stops/202600"], ["https://data.delijn.be/stops/403735", "https://data.delijn.be/stops/403736"], ["https://data.delijn.be/stops/208058", "https://data.delijn.be/stops/208059"], ["https://data.delijn.be/stops/405883", "https://data.delijn.be/stops/406386"], ["https://data.delijn.be/stops/503680", "https://data.delijn.be/stops/508077"], ["https://data.delijn.be/stops/501193", "https://data.delijn.be/stops/506193"], ["https://data.delijn.be/stops/406453", "https://data.delijn.be/stops/410225"], ["https://data.delijn.be/stops/505810", "https://data.delijn.be/stops/509044"], ["https://data.delijn.be/stops/101723", "https://data.delijn.be/stops/109975"], ["https://data.delijn.be/stops/202216", "https://data.delijn.be/stops/203212"], ["https://data.delijn.be/stops/300025", "https://data.delijn.be/stops/300387"], ["https://data.delijn.be/stops/402222", "https://data.delijn.be/stops/402763"], ["https://data.delijn.be/stops/503867", "https://data.delijn.be/stops/508872"], ["https://data.delijn.be/stops/207140", "https://data.delijn.be/stops/207141"], ["https://data.delijn.be/stops/205419", "https://data.delijn.be/stops/205466"], ["https://data.delijn.be/stops/307681", "https://data.delijn.be/stops/307682"], ["https://data.delijn.be/stops/400073", "https://data.delijn.be/stops/401971"], ["https://data.delijn.be/stops/402954", "https://data.delijn.be/stops/404899"], ["https://data.delijn.be/stops/405766", "https://data.delijn.be/stops/409742"], ["https://data.delijn.be/stops/304568", "https://data.delijn.be/stops/304578"], ["https://data.delijn.be/stops/101506", "https://data.delijn.be/stops/109032"], ["https://data.delijn.be/stops/409746", "https://data.delijn.be/stops/409747"], ["https://data.delijn.be/stops/306346", "https://data.delijn.be/stops/306347"], ["https://data.delijn.be/stops/209224", "https://data.delijn.be/stops/209773"], ["https://data.delijn.be/stops/507543", "https://data.delijn.be/stops/507623"], ["https://data.delijn.be/stops/503809", "https://data.delijn.be/stops/503812"], ["https://data.delijn.be/stops/403387", "https://data.delijn.be/stops/410324"], ["https://data.delijn.be/stops/502376", "https://data.delijn.be/stops/502555"], ["https://data.delijn.be/stops/300147", "https://data.delijn.be/stops/306770"], ["https://data.delijn.be/stops/208716", "https://data.delijn.be/stops/209331"], ["https://data.delijn.be/stops/503443", "https://data.delijn.be/stops/508429"], ["https://data.delijn.be/stops/505058", "https://data.delijn.be/stops/505072"], ["https://data.delijn.be/stops/307409", "https://data.delijn.be/stops/308054"], ["https://data.delijn.be/stops/405443", "https://data.delijn.be/stops/408613"], ["https://data.delijn.be/stops/208537", "https://data.delijn.be/stops/209696"], ["https://data.delijn.be/stops/205981", "https://data.delijn.be/stops/208684"], ["https://data.delijn.be/stops/206981", "https://data.delijn.be/stops/207981"], ["https://data.delijn.be/stops/501645", "https://data.delijn.be/stops/506646"], ["https://data.delijn.be/stops/510015", "https://data.delijn.be/stops/510021"], ["https://data.delijn.be/stops/304987", "https://data.delijn.be/stops/304988"], ["https://data.delijn.be/stops/106379", "https://data.delijn.be/stops/106382"], ["https://data.delijn.be/stops/109351", "https://data.delijn.be/stops/306815"], ["https://data.delijn.be/stops/301005", "https://data.delijn.be/stops/301011"], ["https://data.delijn.be/stops/501772", "https://data.delijn.be/stops/506302"], ["https://data.delijn.be/stops/409036", "https://data.delijn.be/stops/409038"], ["https://data.delijn.be/stops/508044", "https://data.delijn.be/stops/508122"], ["https://data.delijn.be/stops/208000", "https://data.delijn.be/stops/209014"], ["https://data.delijn.be/stops/308265", "https://data.delijn.be/stops/308266"], ["https://data.delijn.be/stops/503884", "https://data.delijn.be/stops/508115"], ["https://data.delijn.be/stops/403450", "https://data.delijn.be/stops/409284"], ["https://data.delijn.be/stops/505748", "https://data.delijn.be/stops/507667"], ["https://data.delijn.be/stops/304415", "https://data.delijn.be/stops/306858"], ["https://data.delijn.be/stops/107599", "https://data.delijn.be/stops/107601"], ["https://data.delijn.be/stops/109239", "https://data.delijn.be/stops/109240"], ["https://data.delijn.be/stops/304371", "https://data.delijn.be/stops/304372"], ["https://data.delijn.be/stops/204615", "https://data.delijn.be/stops/204657"], ["https://data.delijn.be/stops/409778", "https://data.delijn.be/stops/409779"], ["https://data.delijn.be/stops/300811", "https://data.delijn.be/stops/300812"], ["https://data.delijn.be/stops/109668", "https://data.delijn.be/stops/109669"], ["https://data.delijn.be/stops/208038", "https://data.delijn.be/stops/209038"], ["https://data.delijn.be/stops/204405", "https://data.delijn.be/stops/205198"], ["https://data.delijn.be/stops/502798", "https://data.delijn.be/stops/507318"], ["https://data.delijn.be/stops/300077", "https://data.delijn.be/stops/308450"], ["https://data.delijn.be/stops/308502", "https://data.delijn.be/stops/308520"], ["https://data.delijn.be/stops/103895", "https://data.delijn.be/stops/105316"], ["https://data.delijn.be/stops/101497", "https://data.delijn.be/stops/108306"], ["https://data.delijn.be/stops/204663", "https://data.delijn.be/stops/205664"], ["https://data.delijn.be/stops/400216", "https://data.delijn.be/stops/400217"], ["https://data.delijn.be/stops/503151", "https://data.delijn.be/stops/504095"], ["https://data.delijn.be/stops/408108", "https://data.delijn.be/stops/408160"], ["https://data.delijn.be/stops/104898", "https://data.delijn.be/stops/107613"], ["https://data.delijn.be/stops/300768", "https://data.delijn.be/stops/301069"], ["https://data.delijn.be/stops/307317", "https://data.delijn.be/stops/307319"], ["https://data.delijn.be/stops/102933", "https://data.delijn.be/stops/106038"], ["https://data.delijn.be/stops/503104", "https://data.delijn.be/stops/505384"], ["https://data.delijn.be/stops/408055", "https://data.delijn.be/stops/408057"], ["https://data.delijn.be/stops/107156", "https://data.delijn.be/stops/107554"], ["https://data.delijn.be/stops/201277", "https://data.delijn.be/stops/204925"], ["https://data.delijn.be/stops/108106", "https://data.delijn.be/stops/108117"], ["https://data.delijn.be/stops/408045", "https://data.delijn.be/stops/303262"], ["https://data.delijn.be/stops/401618", "https://data.delijn.be/stops/308221"], ["https://data.delijn.be/stops/105238", "https://data.delijn.be/stops/105239"], ["https://data.delijn.be/stops/408003", "https://data.delijn.be/stops/408245"], ["https://data.delijn.be/stops/206476", "https://data.delijn.be/stops/206477"], ["https://data.delijn.be/stops/409060", "https://data.delijn.be/stops/409122"], ["https://data.delijn.be/stops/402692", "https://data.delijn.be/stops/402877"], ["https://data.delijn.be/stops/305344", "https://data.delijn.be/stops/307283"], ["https://data.delijn.be/stops/104101", "https://data.delijn.be/stops/104102"], ["https://data.delijn.be/stops/404496", "https://data.delijn.be/stops/404526"], ["https://data.delijn.be/stops/201831", "https://data.delijn.be/stops/208256"], ["https://data.delijn.be/stops/101183", "https://data.delijn.be/stops/107871"], ["https://data.delijn.be/stops/503731", "https://data.delijn.be/stops/508731"], ["https://data.delijn.be/stops/502581", "https://data.delijn.be/stops/507388"], ["https://data.delijn.be/stops/107422", "https://data.delijn.be/stops/107707"], ["https://data.delijn.be/stops/400235", "https://data.delijn.be/stops/400236"], ["https://data.delijn.be/stops/105528", "https://data.delijn.be/stops/106973"], ["https://data.delijn.be/stops/300815", "https://data.delijn.be/stops/300821"], ["https://data.delijn.be/stops/506085", "https://data.delijn.be/stops/506088"], ["https://data.delijn.be/stops/503211", "https://data.delijn.be/stops/508211"], ["https://data.delijn.be/stops/300987", "https://data.delijn.be/stops/300988"], ["https://data.delijn.be/stops/106228", "https://data.delijn.be/stops/109128"], ["https://data.delijn.be/stops/405683", "https://data.delijn.be/stops/409746"], ["https://data.delijn.be/stops/407775", "https://data.delijn.be/stops/407778"], ["https://data.delijn.be/stops/403701", "https://data.delijn.be/stops/403772"], ["https://data.delijn.be/stops/401432", "https://data.delijn.be/stops/401435"], ["https://data.delijn.be/stops/301723", "https://data.delijn.be/stops/303466"], ["https://data.delijn.be/stops/208346", "https://data.delijn.be/stops/209347"], ["https://data.delijn.be/stops/108991", "https://data.delijn.be/stops/108992"], ["https://data.delijn.be/stops/505638", "https://data.delijn.be/stops/508181"], ["https://data.delijn.be/stops/204638", "https://data.delijn.be/stops/204731"], ["https://data.delijn.be/stops/405087", "https://data.delijn.be/stops/406501"], ["https://data.delijn.be/stops/503224", "https://data.delijn.be/stops/505261"], ["https://data.delijn.be/stops/502294", "https://data.delijn.be/stops/507294"], ["https://data.delijn.be/stops/302461", "https://data.delijn.be/stops/302464"], ["https://data.delijn.be/stops/507556", "https://data.delijn.be/stops/507666"], ["https://data.delijn.be/stops/108122", "https://data.delijn.be/stops/109620"], ["https://data.delijn.be/stops/504661", "https://data.delijn.be/stops/509393"], ["https://data.delijn.be/stops/300229", "https://data.delijn.be/stops/302126"], ["https://data.delijn.be/stops/402563", "https://data.delijn.be/stops/407843"], ["https://data.delijn.be/stops/505224", "https://data.delijn.be/stops/509609"], ["https://data.delijn.be/stops/503894", "https://data.delijn.be/stops/505980"], ["https://data.delijn.be/stops/507079", "https://data.delijn.be/stops/507080"], ["https://data.delijn.be/stops/303774", "https://data.delijn.be/stops/307031"], ["https://data.delijn.be/stops/105013", "https://data.delijn.be/stops/105081"], ["https://data.delijn.be/stops/107278", "https://data.delijn.be/stops/107392"], ["https://data.delijn.be/stops/301849", "https://data.delijn.be/stops/301851"], ["https://data.delijn.be/stops/400749", "https://data.delijn.be/stops/409587"], ["https://data.delijn.be/stops/304044", "https://data.delijn.be/stops/309670"], ["https://data.delijn.be/stops/504158", "https://data.delijn.be/stops/509189"], ["https://data.delijn.be/stops/203001", "https://data.delijn.be/stops/203079"], ["https://data.delijn.be/stops/508614", "https://data.delijn.be/stops/508617"], ["https://data.delijn.be/stops/406322", "https://data.delijn.be/stops/406331"], ["https://data.delijn.be/stops/208431", "https://data.delijn.be/stops/208680"], ["https://data.delijn.be/stops/108938", "https://data.delijn.be/stops/108941"], ["https://data.delijn.be/stops/507207", "https://data.delijn.be/stops/507216"], ["https://data.delijn.be/stops/206822", "https://data.delijn.be/stops/207529"], ["https://data.delijn.be/stops/208888", "https://data.delijn.be/stops/208889"], ["https://data.delijn.be/stops/503932", "https://data.delijn.be/stops/508932"], ["https://data.delijn.be/stops/406257", "https://data.delijn.be/stops/406258"], ["https://data.delijn.be/stops/505391", "https://data.delijn.be/stops/505832"], ["https://data.delijn.be/stops/208046", "https://data.delijn.be/stops/209561"], ["https://data.delijn.be/stops/402300", "https://data.delijn.be/stops/402326"], ["https://data.delijn.be/stops/104659", "https://data.delijn.be/stops/306608"], ["https://data.delijn.be/stops/201639", "https://data.delijn.be/stops/201896"], ["https://data.delijn.be/stops/306848", "https://data.delijn.be/stops/307355"], ["https://data.delijn.be/stops/507021", "https://data.delijn.be/stops/507154"], ["https://data.delijn.be/stops/504119", "https://data.delijn.be/stops/509119"], ["https://data.delijn.be/stops/404190", "https://data.delijn.be/stops/404194"], ["https://data.delijn.be/stops/405176", "https://data.delijn.be/stops/405219"], ["https://data.delijn.be/stops/207587", "https://data.delijn.be/stops/208951"], ["https://data.delijn.be/stops/403158", "https://data.delijn.be/stops/410320"], ["https://data.delijn.be/stops/206213", "https://data.delijn.be/stops/207820"], ["https://data.delijn.be/stops/405060", "https://data.delijn.be/stops/405061"], ["https://data.delijn.be/stops/402773", "https://data.delijn.be/stops/402777"], ["https://data.delijn.be/stops/101350", "https://data.delijn.be/stops/102710"], ["https://data.delijn.be/stops/106655", "https://data.delijn.be/stops/106657"], ["https://data.delijn.be/stops/410394", "https://data.delijn.be/stops/410395"], ["https://data.delijn.be/stops/302537", "https://data.delijn.be/stops/302539"], ["https://data.delijn.be/stops/409585", "https://data.delijn.be/stops/409586"], ["https://data.delijn.be/stops/208254", "https://data.delijn.be/stops/218027"], ["https://data.delijn.be/stops/500942", "https://data.delijn.be/stops/590010"], ["https://data.delijn.be/stops/206675", "https://data.delijn.be/stops/209101"], ["https://data.delijn.be/stops/108536", "https://data.delijn.be/stops/108538"], ["https://data.delijn.be/stops/200949", "https://data.delijn.be/stops/202094"], ["https://data.delijn.be/stops/303253", "https://data.delijn.be/stops/303259"], ["https://data.delijn.be/stops/401483", "https://data.delijn.be/stops/407348"], ["https://data.delijn.be/stops/201246", "https://data.delijn.be/stops/201426"], ["https://data.delijn.be/stops/504231", "https://data.delijn.be/stops/504240"], ["https://data.delijn.be/stops/403764", "https://data.delijn.be/stops/403811"], ["https://data.delijn.be/stops/503201", "https://data.delijn.be/stops/508190"], ["https://data.delijn.be/stops/102751", "https://data.delijn.be/stops/103357"], ["https://data.delijn.be/stops/200871", "https://data.delijn.be/stops/201120"], ["https://data.delijn.be/stops/404338", "https://data.delijn.be/stops/404347"], ["https://data.delijn.be/stops/200311", "https://data.delijn.be/stops/200537"], ["https://data.delijn.be/stops/307595", "https://data.delijn.be/stops/307596"], ["https://data.delijn.be/stops/306939", "https://data.delijn.be/stops/306941"], ["https://data.delijn.be/stops/206917", "https://data.delijn.be/stops/207264"], ["https://data.delijn.be/stops/102422", "https://data.delijn.be/stops/107316"], ["https://data.delijn.be/stops/400147", "https://data.delijn.be/stops/409199"], ["https://data.delijn.be/stops/402659", "https://data.delijn.be/stops/402669"], ["https://data.delijn.be/stops/308498", "https://data.delijn.be/stops/308500"], ["https://data.delijn.be/stops/204043", "https://data.delijn.be/stops/205043"], ["https://data.delijn.be/stops/206879", "https://data.delijn.be/stops/207878"], ["https://data.delijn.be/stops/304489", "https://data.delijn.be/stops/304491"], ["https://data.delijn.be/stops/103683", "https://data.delijn.be/stops/106316"], ["https://data.delijn.be/stops/400286", "https://data.delijn.be/stops/400403"], ["https://data.delijn.be/stops/204017", "https://data.delijn.be/stops/205054"], ["https://data.delijn.be/stops/208151", "https://data.delijn.be/stops/209152"], ["https://data.delijn.be/stops/303440", "https://data.delijn.be/stops/303446"], ["https://data.delijn.be/stops/304511", "https://data.delijn.be/stops/305278"], ["https://data.delijn.be/stops/501454", "https://data.delijn.be/stops/506449"], ["https://data.delijn.be/stops/502487", "https://data.delijn.be/stops/507485"], ["https://data.delijn.be/stops/206015", "https://data.delijn.be/stops/206166"], ["https://data.delijn.be/stops/207885", "https://data.delijn.be/stops/207889"], ["https://data.delijn.be/stops/101068", "https://data.delijn.be/stops/109095"], ["https://data.delijn.be/stops/104471", "https://data.delijn.be/stops/104476"], ["https://data.delijn.be/stops/303256", "https://data.delijn.be/stops/303275"], ["https://data.delijn.be/stops/305018", "https://data.delijn.be/stops/308034"], ["https://data.delijn.be/stops/502100", "https://data.delijn.be/stops/507120"], ["https://data.delijn.be/stops/504612", "https://data.delijn.be/stops/509352"], ["https://data.delijn.be/stops/406524", "https://data.delijn.be/stops/406525"], ["https://data.delijn.be/stops/109335", "https://data.delijn.be/stops/109337"], ["https://data.delijn.be/stops/105481", "https://data.delijn.be/stops/105484"], ["https://data.delijn.be/stops/302241", "https://data.delijn.be/stops/302246"], ["https://data.delijn.be/stops/300933", "https://data.delijn.be/stops/300935"], ["https://data.delijn.be/stops/106097", "https://data.delijn.be/stops/106112"], ["https://data.delijn.be/stops/301896", "https://data.delijn.be/stops/304299"], ["https://data.delijn.be/stops/109221", "https://data.delijn.be/stops/109223"], ["https://data.delijn.be/stops/102605", "https://data.delijn.be/stops/102610"], ["https://data.delijn.be/stops/204389", "https://data.delijn.be/stops/204402"], ["https://data.delijn.be/stops/208592", "https://data.delijn.be/stops/209592"], ["https://data.delijn.be/stops/407103", "https://data.delijn.be/stops/407272"], ["https://data.delijn.be/stops/407711", "https://data.delijn.be/stops/407712"], ["https://data.delijn.be/stops/404952", "https://data.delijn.be/stops/408583"], ["https://data.delijn.be/stops/208441", "https://data.delijn.be/stops/208668"], ["https://data.delijn.be/stops/208344", "https://data.delijn.be/stops/218031"], ["https://data.delijn.be/stops/302641", "https://data.delijn.be/stops/302687"], ["https://data.delijn.be/stops/200852", "https://data.delijn.be/stops/202324"], ["https://data.delijn.be/stops/202118", "https://data.delijn.be/stops/205171"], ["https://data.delijn.be/stops/204346", "https://data.delijn.be/stops/205345"], ["https://data.delijn.be/stops/108815", "https://data.delijn.be/stops/108970"], ["https://data.delijn.be/stops/206147", "https://data.delijn.be/stops/207147"], ["https://data.delijn.be/stops/404199", "https://data.delijn.be/stops/404205"], ["https://data.delijn.be/stops/405178", "https://data.delijn.be/stops/405216"], ["https://data.delijn.be/stops/502606", "https://data.delijn.be/stops/507606"], ["https://data.delijn.be/stops/504268", "https://data.delijn.be/stops/509268"], ["https://data.delijn.be/stops/206190", "https://data.delijn.be/stops/207224"], ["https://data.delijn.be/stops/204006", "https://data.delijn.be/stops/205007"], ["https://data.delijn.be/stops/507498", "https://data.delijn.be/stops/508800"], ["https://data.delijn.be/stops/303011", "https://data.delijn.be/stops/306279"], ["https://data.delijn.be/stops/106511", "https://data.delijn.be/stops/106514"], ["https://data.delijn.be/stops/407026", "https://data.delijn.be/stops/407027"], ["https://data.delijn.be/stops/202907", "https://data.delijn.be/stops/203906"], ["https://data.delijn.be/stops/500930", "https://data.delijn.be/stops/500937"], ["https://data.delijn.be/stops/406127", "https://data.delijn.be/stops/407914"], ["https://data.delijn.be/stops/200925", "https://data.delijn.be/stops/200952"], ["https://data.delijn.be/stops/102424", "https://data.delijn.be/stops/103710"], ["https://data.delijn.be/stops/403237", "https://data.delijn.be/stops/403428"], ["https://data.delijn.be/stops/206008", "https://data.delijn.be/stops/207007"], ["https://data.delijn.be/stops/404632", "https://data.delijn.be/stops/404634"], ["https://data.delijn.be/stops/101162", "https://data.delijn.be/stops/205640"], ["https://data.delijn.be/stops/105599", "https://data.delijn.be/stops/105602"], ["https://data.delijn.be/stops/201619", "https://data.delijn.be/stops/211048"], ["https://data.delijn.be/stops/402065", "https://data.delijn.be/stops/410059"], ["https://data.delijn.be/stops/207679", "https://data.delijn.be/stops/209144"], ["https://data.delijn.be/stops/103990", "https://data.delijn.be/stops/104494"], ["https://data.delijn.be/stops/502140", "https://data.delijn.be/stops/502793"], ["https://data.delijn.be/stops/301651", "https://data.delijn.be/stops/303936"], ["https://data.delijn.be/stops/209644", "https://data.delijn.be/stops/209645"], ["https://data.delijn.be/stops/404979", "https://data.delijn.be/stops/410061"], ["https://data.delijn.be/stops/105252", "https://data.delijn.be/stops/105268"], ["https://data.delijn.be/stops/504197", "https://data.delijn.be/stops/504969"], ["https://data.delijn.be/stops/302545", "https://data.delijn.be/stops/305857"], ["https://data.delijn.be/stops/207672", "https://data.delijn.be/stops/208002"], ["https://data.delijn.be/stops/206739", "https://data.delijn.be/stops/207980"], ["https://data.delijn.be/stops/402085", "https://data.delijn.be/stops/408469"], ["https://data.delijn.be/stops/305675", "https://data.delijn.be/stops/305685"], ["https://data.delijn.be/stops/204468", "https://data.delijn.be/stops/214010"], ["https://data.delijn.be/stops/406598", "https://data.delijn.be/stops/406638"], ["https://data.delijn.be/stops/206763", "https://data.delijn.be/stops/218020"], ["https://data.delijn.be/stops/206770", "https://data.delijn.be/stops/208541"], ["https://data.delijn.be/stops/102669", "https://data.delijn.be/stops/102671"], ["https://data.delijn.be/stops/302456", "https://data.delijn.be/stops/302497"], ["https://data.delijn.be/stops/300640", "https://data.delijn.be/stops/300645"], ["https://data.delijn.be/stops/108709", "https://data.delijn.be/stops/108728"], ["https://data.delijn.be/stops/108742", "https://data.delijn.be/stops/109501"], ["https://data.delijn.be/stops/103724", "https://data.delijn.be/stops/108091"], ["https://data.delijn.be/stops/300334", "https://data.delijn.be/stops/306816"], ["https://data.delijn.be/stops/504397", "https://data.delijn.be/stops/509393"], ["https://data.delijn.be/stops/302578", "https://data.delijn.be/stops/306404"], ["https://data.delijn.be/stops/206818", "https://data.delijn.be/stops/207818"], ["https://data.delijn.be/stops/106375", "https://data.delijn.be/stops/106387"], ["https://data.delijn.be/stops/109260", "https://data.delijn.be/stops/109265"], ["https://data.delijn.be/stops/103472", "https://data.delijn.be/stops/109165"], ["https://data.delijn.be/stops/103747", "https://data.delijn.be/stops/105795"], ["https://data.delijn.be/stops/105480", "https://data.delijn.be/stops/105689"], ["https://data.delijn.be/stops/502797", "https://data.delijn.be/stops/505766"], ["https://data.delijn.be/stops/407923", "https://data.delijn.be/stops/407973"], ["https://data.delijn.be/stops/300677", "https://data.delijn.be/stops/300678"], ["https://data.delijn.be/stops/200531", "https://data.delijn.be/stops/211091"], ["https://data.delijn.be/stops/101786", "https://data.delijn.be/stops/109142"], ["https://data.delijn.be/stops/504378", "https://data.delijn.be/stops/508855"], ["https://data.delijn.be/stops/202985", "https://data.delijn.be/stops/203986"], ["https://data.delijn.be/stops/205027", "https://data.delijn.be/stops/205817"], ["https://data.delijn.be/stops/504022", "https://data.delijn.be/stops/505291"], ["https://data.delijn.be/stops/303985", "https://data.delijn.be/stops/303986"], ["https://data.delijn.be/stops/300182", "https://data.delijn.be/stops/300187"], ["https://data.delijn.be/stops/101917", "https://data.delijn.be/stops/107920"], ["https://data.delijn.be/stops/406870", "https://data.delijn.be/stops/406871"], ["https://data.delijn.be/stops/104802", "https://data.delijn.be/stops/109553"], ["https://data.delijn.be/stops/402333", "https://data.delijn.be/stops/407328"], ["https://data.delijn.be/stops/305430", "https://data.delijn.be/stops/305435"], ["https://data.delijn.be/stops/105311", "https://data.delijn.be/stops/105353"], ["https://data.delijn.be/stops/501076", "https://data.delijn.be/stops/506074"], ["https://data.delijn.be/stops/200066", "https://data.delijn.be/stops/200983"], ["https://data.delijn.be/stops/106915", "https://data.delijn.be/stops/106918"], ["https://data.delijn.be/stops/103004", "https://data.delijn.be/stops/108329"], ["https://data.delijn.be/stops/105873", "https://data.delijn.be/stops/105874"], ["https://data.delijn.be/stops/202085", "https://data.delijn.be/stops/202086"], ["https://data.delijn.be/stops/106198", "https://data.delijn.be/stops/109274"], ["https://data.delijn.be/stops/400842", "https://data.delijn.be/stops/409573"], ["https://data.delijn.be/stops/203136", "https://data.delijn.be/stops/209987"], ["https://data.delijn.be/stops/208665", "https://data.delijn.be/stops/208669"], ["https://data.delijn.be/stops/501551", "https://data.delijn.be/stops/507521"], ["https://data.delijn.be/stops/402865", "https://data.delijn.be/stops/306035"], ["https://data.delijn.be/stops/200661", "https://data.delijn.be/stops/200663"], ["https://data.delijn.be/stops/104389", "https://data.delijn.be/stops/104393"], ["https://data.delijn.be/stops/303115", "https://data.delijn.be/stops/307939"], ["https://data.delijn.be/stops/406311", "https://data.delijn.be/stops/406324"], ["https://data.delijn.be/stops/208069", "https://data.delijn.be/stops/209241"], ["https://data.delijn.be/stops/208467", "https://data.delijn.be/stops/209461"], ["https://data.delijn.be/stops/404893", "https://data.delijn.be/stops/404896"], ["https://data.delijn.be/stops/302178", "https://data.delijn.be/stops/305161"], ["https://data.delijn.be/stops/505788", "https://data.delijn.be/stops/505910"], ["https://data.delijn.be/stops/200848", "https://data.delijn.be/stops/209653"], ["https://data.delijn.be/stops/105708", "https://data.delijn.be/stops/106071"], ["https://data.delijn.be/stops/508735", "https://data.delijn.be/stops/509976"], ["https://data.delijn.be/stops/200629", "https://data.delijn.be/stops/200954"], ["https://data.delijn.be/stops/109138", "https://data.delijn.be/stops/109141"], ["https://data.delijn.be/stops/508590", "https://data.delijn.be/stops/509883"], ["https://data.delijn.be/stops/300706", "https://data.delijn.be/stops/308068"], ["https://data.delijn.be/stops/302977", "https://data.delijn.be/stops/303006"], ["https://data.delijn.be/stops/105299", "https://data.delijn.be/stops/105301"], ["https://data.delijn.be/stops/200939", "https://data.delijn.be/stops/202042"], ["https://data.delijn.be/stops/304734", "https://data.delijn.be/stops/304745"], ["https://data.delijn.be/stops/106643", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/400443", "https://data.delijn.be/stops/404772"], ["https://data.delijn.be/stops/504563", "https://data.delijn.be/stops/505918"], ["https://data.delijn.be/stops/108553", "https://data.delijn.be/stops/108558"], ["https://data.delijn.be/stops/505937", "https://data.delijn.be/stops/505946"], ["https://data.delijn.be/stops/502623", "https://data.delijn.be/stops/507544"], ["https://data.delijn.be/stops/409028", "https://data.delijn.be/stops/409045"], ["https://data.delijn.be/stops/303110", "https://data.delijn.be/stops/306102"], ["https://data.delijn.be/stops/402953", "https://data.delijn.be/stops/306782"], ["https://data.delijn.be/stops/206732", "https://data.delijn.be/stops/307822"], ["https://data.delijn.be/stops/302787", "https://data.delijn.be/stops/308593"], ["https://data.delijn.be/stops/409076", "https://data.delijn.be/stops/409078"], ["https://data.delijn.be/stops/102209", "https://data.delijn.be/stops/102211"], ["https://data.delijn.be/stops/305232", "https://data.delijn.be/stops/305252"], ["https://data.delijn.be/stops/505064", "https://data.delijn.be/stops/505320"], ["https://data.delijn.be/stops/208464", "https://data.delijn.be/stops/208515"], ["https://data.delijn.be/stops/101077", "https://data.delijn.be/stops/107152"], ["https://data.delijn.be/stops/302080", "https://data.delijn.be/stops/302087"], ["https://data.delijn.be/stops/409580", "https://data.delijn.be/stops/409583"], ["https://data.delijn.be/stops/401282", "https://data.delijn.be/stops/408419"], ["https://data.delijn.be/stops/102335", "https://data.delijn.be/stops/104165"], ["https://data.delijn.be/stops/104392", "https://data.delijn.be/stops/104492"], ["https://data.delijn.be/stops/200660", "https://data.delijn.be/stops/210123"], ["https://data.delijn.be/stops/103305", "https://data.delijn.be/stops/107015"], ["https://data.delijn.be/stops/505365", "https://data.delijn.be/stops/508662"], ["https://data.delijn.be/stops/506266", "https://data.delijn.be/stops/506308"], ["https://data.delijn.be/stops/502712", "https://data.delijn.be/stops/505694"], ["https://data.delijn.be/stops/407033", "https://data.delijn.be/stops/408000"], ["https://data.delijn.be/stops/302805", "https://data.delijn.be/stops/305429"], ["https://data.delijn.be/stops/107330", "https://data.delijn.be/stops/108120"], ["https://data.delijn.be/stops/403719", "https://data.delijn.be/stops/405136"], ["https://data.delijn.be/stops/308414", "https://data.delijn.be/stops/308429"], ["https://data.delijn.be/stops/302373", "https://data.delijn.be/stops/302387"], ["https://data.delijn.be/stops/504482", "https://data.delijn.be/stops/509012"], ["https://data.delijn.be/stops/204314", "https://data.delijn.be/stops/204315"], ["https://data.delijn.be/stops/406001", "https://data.delijn.be/stops/406135"], ["https://data.delijn.be/stops/304466", "https://data.delijn.be/stops/304469"], ["https://data.delijn.be/stops/302203", "https://data.delijn.be/stops/304079"], ["https://data.delijn.be/stops/202866", "https://data.delijn.be/stops/203742"], ["https://data.delijn.be/stops/201671", "https://data.delijn.be/stops/203774"], ["https://data.delijn.be/stops/400937", "https://data.delijn.be/stops/401923"], ["https://data.delijn.be/stops/206736", "https://data.delijn.be/stops/207985"], ["https://data.delijn.be/stops/106498", "https://data.delijn.be/stops/108727"], ["https://data.delijn.be/stops/200689", "https://data.delijn.be/stops/203759"], ["https://data.delijn.be/stops/405397", "https://data.delijn.be/stops/302835"], ["https://data.delijn.be/stops/101055", "https://data.delijn.be/stops/104895"], ["https://data.delijn.be/stops/505809", "https://data.delijn.be/stops/507709"], ["https://data.delijn.be/stops/306171", "https://data.delijn.be/stops/307267"], ["https://data.delijn.be/stops/203933", "https://data.delijn.be/stops/208724"], ["https://data.delijn.be/stops/503538", "https://data.delijn.be/stops/508110"], ["https://data.delijn.be/stops/200820", "https://data.delijn.be/stops/200848"], ["https://data.delijn.be/stops/205237", "https://data.delijn.be/stops/207396"], ["https://data.delijn.be/stops/401492", "https://data.delijn.be/stops/401549"], ["https://data.delijn.be/stops/301733", "https://data.delijn.be/stops/305948"], ["https://data.delijn.be/stops/200414", "https://data.delijn.be/stops/201415"], ["https://data.delijn.be/stops/201144", "https://data.delijn.be/stops/201242"], ["https://data.delijn.be/stops/305651", "https://data.delijn.be/stops/305661"], ["https://data.delijn.be/stops/402751", "https://data.delijn.be/stops/406473"], ["https://data.delijn.be/stops/108166", "https://data.delijn.be/stops/108168"], ["https://data.delijn.be/stops/409021", "https://data.delijn.be/stops/409028"], ["https://data.delijn.be/stops/401433", "https://data.delijn.be/stops/401435"], ["https://data.delijn.be/stops/300093", "https://data.delijn.be/stops/306862"], ["https://data.delijn.be/stops/102660", "https://data.delijn.be/stops/107417"], ["https://data.delijn.be/stops/106927", "https://data.delijn.be/stops/106928"], ["https://data.delijn.be/stops/107877", "https://data.delijn.be/stops/107883"], ["https://data.delijn.be/stops/200255", "https://data.delijn.be/stops/200258"], ["https://data.delijn.be/stops/105383", "https://data.delijn.be/stops/105624"], ["https://data.delijn.be/stops/402879", "https://data.delijn.be/stops/402880"], ["https://data.delijn.be/stops/407732", "https://data.delijn.be/stops/407733"], ["https://data.delijn.be/stops/202106", "https://data.delijn.be/stops/202262"], ["https://data.delijn.be/stops/206773", "https://data.delijn.be/stops/208031"], ["https://data.delijn.be/stops/206389", "https://data.delijn.be/stops/209756"], ["https://data.delijn.be/stops/503068", "https://data.delijn.be/stops/503391"], ["https://data.delijn.be/stops/405900", "https://data.delijn.be/stops/405926"], ["https://data.delijn.be/stops/204591", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/509110", "https://data.delijn.be/stops/509114"], ["https://data.delijn.be/stops/304693", "https://data.delijn.be/stops/304694"], ["https://data.delijn.be/stops/301627", "https://data.delijn.be/stops/301633"], ["https://data.delijn.be/stops/102383", "https://data.delijn.be/stops/106037"], ["https://data.delijn.be/stops/406956", "https://data.delijn.be/stops/406957"], ["https://data.delijn.be/stops/104589", "https://data.delijn.be/stops/106412"], ["https://data.delijn.be/stops/305233", "https://data.delijn.be/stops/305296"], ["https://data.delijn.be/stops/404835", "https://data.delijn.be/stops/406095"], ["https://data.delijn.be/stops/205706", "https://data.delijn.be/stops/205708"], ["https://data.delijn.be/stops/200010", "https://data.delijn.be/stops/201010"], ["https://data.delijn.be/stops/508328", "https://data.delijn.be/stops/508980"], ["https://data.delijn.be/stops/200587", "https://data.delijn.be/stops/201587"], ["https://data.delijn.be/stops/303372", "https://data.delijn.be/stops/303803"], ["https://data.delijn.be/stops/402230", "https://data.delijn.be/stops/402294"], ["https://data.delijn.be/stops/106561", "https://data.delijn.be/stops/106562"], ["https://data.delijn.be/stops/308520", "https://data.delijn.be/stops/308521"], ["https://data.delijn.be/stops/409098", "https://data.delijn.be/stops/409100"], ["https://data.delijn.be/stops/204034", "https://data.delijn.be/stops/205034"], ["https://data.delijn.be/stops/305466", "https://data.delijn.be/stops/307461"], ["https://data.delijn.be/stops/202169", "https://data.delijn.be/stops/204773"], ["https://data.delijn.be/stops/202889", "https://data.delijn.be/stops/203749"], ["https://data.delijn.be/stops/102830", "https://data.delijn.be/stops/108060"], ["https://data.delijn.be/stops/307689", "https://data.delijn.be/stops/307690"], ["https://data.delijn.be/stops/206416", "https://data.delijn.be/stops/217016"], ["https://data.delijn.be/stops/400834", "https://data.delijn.be/stops/409532"], ["https://data.delijn.be/stops/302339", "https://data.delijn.be/stops/306181"], ["https://data.delijn.be/stops/205991", "https://data.delijn.be/stops/208798"], ["https://data.delijn.be/stops/109312", "https://data.delijn.be/stops/109866"], ["https://data.delijn.be/stops/102650", "https://data.delijn.be/stops/105400"], ["https://data.delijn.be/stops/503907", "https://data.delijn.be/stops/505917"], ["https://data.delijn.be/stops/200764", "https://data.delijn.be/stops/209300"], ["https://data.delijn.be/stops/101364", "https://data.delijn.be/stops/103242"], ["https://data.delijn.be/stops/503925", "https://data.delijn.be/stops/508929"], ["https://data.delijn.be/stops/202369", "https://data.delijn.be/stops/203372"], ["https://data.delijn.be/stops/300324", "https://data.delijn.be/stops/300327"], ["https://data.delijn.be/stops/409560", "https://data.delijn.be/stops/409570"], ["https://data.delijn.be/stops/202507", "https://data.delijn.be/stops/203930"], ["https://data.delijn.be/stops/508535", "https://data.delijn.be/stops/509970"], ["https://data.delijn.be/stops/103496", "https://data.delijn.be/stops/103499"], ["https://data.delijn.be/stops/503017", "https://data.delijn.be/stops/503022"], ["https://data.delijn.be/stops/403456", "https://data.delijn.be/stops/403459"], ["https://data.delijn.be/stops/204191", "https://data.delijn.be/stops/205195"], ["https://data.delijn.be/stops/202066", "https://data.delijn.be/stops/202305"], ["https://data.delijn.be/stops/102204", "https://data.delijn.be/stops/102206"], ["https://data.delijn.be/stops/200813", "https://data.delijn.be/stops/210075"], ["https://data.delijn.be/stops/103992", "https://data.delijn.be/stops/105392"], ["https://data.delijn.be/stops/409054", "https://data.delijn.be/stops/409210"], ["https://data.delijn.be/stops/506439", "https://data.delijn.be/stops/590334"], ["https://data.delijn.be/stops/302117", "https://data.delijn.be/stops/302118"], ["https://data.delijn.be/stops/504055", "https://data.delijn.be/stops/509149"], ["https://data.delijn.be/stops/507251", "https://data.delijn.be/stops/507252"], ["https://data.delijn.be/stops/502029", "https://data.delijn.be/stops/502037"], ["https://data.delijn.be/stops/208155", "https://data.delijn.be/stops/208157"], ["https://data.delijn.be/stops/304067", "https://data.delijn.be/stops/304068"], ["https://data.delijn.be/stops/504491", "https://data.delijn.be/stops/505311"], ["https://data.delijn.be/stops/201708", "https://data.delijn.be/stops/202443"], ["https://data.delijn.be/stops/302024", "https://data.delijn.be/stops/302046"], ["https://data.delijn.be/stops/206699", "https://data.delijn.be/stops/207734"], ["https://data.delijn.be/stops/503751", "https://data.delijn.be/stops/504260"], ["https://data.delijn.be/stops/503270", "https://data.delijn.be/stops/503272"], ["https://data.delijn.be/stops/202937", "https://data.delijn.be/stops/202938"], ["https://data.delijn.be/stops/410056", "https://data.delijn.be/stops/308175"], ["https://data.delijn.be/stops/108950", "https://data.delijn.be/stops/108955"], ["https://data.delijn.be/stops/404898", "https://data.delijn.be/stops/404949"], ["https://data.delijn.be/stops/207644", "https://data.delijn.be/stops/207645"], ["https://data.delijn.be/stops/302254", "https://data.delijn.be/stops/302255"], ["https://data.delijn.be/stops/303192", "https://data.delijn.be/stops/303193"], ["https://data.delijn.be/stops/202196", "https://data.delijn.be/stops/203199"], ["https://data.delijn.be/stops/503453", "https://data.delijn.be/stops/503458"], ["https://data.delijn.be/stops/200190", "https://data.delijn.be/stops/200401"], ["https://data.delijn.be/stops/304177", "https://data.delijn.be/stops/306097"], ["https://data.delijn.be/stops/206108", "https://data.delijn.be/stops/207910"], ["https://data.delijn.be/stops/502093", "https://data.delijn.be/stops/502099"], ["https://data.delijn.be/stops/208793", "https://data.delijn.be/stops/209787"], ["https://data.delijn.be/stops/301501", "https://data.delijn.be/stops/305654"], ["https://data.delijn.be/stops/204128", "https://data.delijn.be/stops/205123"], ["https://data.delijn.be/stops/203678", "https://data.delijn.be/stops/203695"], ["https://data.delijn.be/stops/107656", "https://data.delijn.be/stops/406770"], ["https://data.delijn.be/stops/101020", "https://data.delijn.be/stops/102075"], ["https://data.delijn.be/stops/302130", "https://data.delijn.be/stops/302142"], ["https://data.delijn.be/stops/505281", "https://data.delijn.be/stops/507736"], ["https://data.delijn.be/stops/408707", "https://data.delijn.be/stops/410090"], ["https://data.delijn.be/stops/408320", "https://data.delijn.be/stops/410159"], ["https://data.delijn.be/stops/505662", "https://data.delijn.be/stops/507502"], ["https://data.delijn.be/stops/505331", "https://data.delijn.be/stops/509727"], ["https://data.delijn.be/stops/101920", "https://data.delijn.be/stops/105760"], ["https://data.delijn.be/stops/402098", "https://data.delijn.be/stops/402158"], ["https://data.delijn.be/stops/106306", "https://data.delijn.be/stops/106308"], ["https://data.delijn.be/stops/205035", "https://data.delijn.be/stops/205036"], ["https://data.delijn.be/stops/201288", "https://data.delijn.be/stops/201289"], ["https://data.delijn.be/stops/104449", "https://data.delijn.be/stops/109918"], ["https://data.delijn.be/stops/203229", "https://data.delijn.be/stops/208857"], ["https://data.delijn.be/stops/109569", "https://data.delijn.be/stops/109588"], ["https://data.delijn.be/stops/405693", "https://data.delijn.be/stops/405932"], ["https://data.delijn.be/stops/206127", "https://data.delijn.be/stops/207650"], ["https://data.delijn.be/stops/208043", "https://data.delijn.be/stops/209220"], ["https://data.delijn.be/stops/301947", "https://data.delijn.be/stops/303293"], ["https://data.delijn.be/stops/203315", "https://data.delijn.be/stops/210067"], ["https://data.delijn.be/stops/300104", "https://data.delijn.be/stops/306849"], ["https://data.delijn.be/stops/202331", "https://data.delijn.be/stops/203331"], ["https://data.delijn.be/stops/300004", "https://data.delijn.be/stops/304299"], ["https://data.delijn.be/stops/200394", "https://data.delijn.be/stops/204804"], ["https://data.delijn.be/stops/402107", "https://data.delijn.be/stops/402298"], ["https://data.delijn.be/stops/105448", "https://data.delijn.be/stops/105450"], ["https://data.delijn.be/stops/502657", "https://data.delijn.be/stops/505508"], ["https://data.delijn.be/stops/402489", "https://data.delijn.be/stops/402490"], ["https://data.delijn.be/stops/503687", "https://data.delijn.be/stops/508687"], ["https://data.delijn.be/stops/206710", "https://data.delijn.be/stops/206740"], ["https://data.delijn.be/stops/401225", "https://data.delijn.be/stops/401256"], ["https://data.delijn.be/stops/206899", "https://data.delijn.be/stops/207899"], ["https://data.delijn.be/stops/105197", "https://data.delijn.be/stops/108883"], ["https://data.delijn.be/stops/306883", "https://data.delijn.be/stops/307007"], ["https://data.delijn.be/stops/302869", "https://data.delijn.be/stops/306097"], ["https://data.delijn.be/stops/405660", "https://data.delijn.be/stops/306282"], ["https://data.delijn.be/stops/208370", "https://data.delijn.be/stops/208371"], ["https://data.delijn.be/stops/504849", "https://data.delijn.be/stops/508729"], ["https://data.delijn.be/stops/208021", "https://data.delijn.be/stops/208025"], ["https://data.delijn.be/stops/501430", "https://data.delijn.be/stops/501672"], ["https://data.delijn.be/stops/202042", "https://data.delijn.be/stops/202537"], ["https://data.delijn.be/stops/218015", "https://data.delijn.be/stops/218016"], ["https://data.delijn.be/stops/202869", "https://data.delijn.be/stops/203878"], ["https://data.delijn.be/stops/503973", "https://data.delijn.be/stops/505385"], ["https://data.delijn.be/stops/208640", "https://data.delijn.be/stops/209640"], ["https://data.delijn.be/stops/405673", "https://data.delijn.be/stops/409496"], ["https://data.delijn.be/stops/301392", "https://data.delijn.be/stops/302417"], ["https://data.delijn.be/stops/104342", "https://data.delijn.be/stops/105911"], ["https://data.delijn.be/stops/403459", "https://data.delijn.be/stops/403678"], ["https://data.delijn.be/stops/501013", "https://data.delijn.be/stops/501534"], ["https://data.delijn.be/stops/502795", "https://data.delijn.be/stops/507168"], ["https://data.delijn.be/stops/508431", "https://data.delijn.be/stops/508441"], ["https://data.delijn.be/stops/302551", "https://data.delijn.be/stops/302556"], ["https://data.delijn.be/stops/504016", "https://data.delijn.be/stops/509507"], ["https://data.delijn.be/stops/208552", "https://data.delijn.be/stops/209549"], ["https://data.delijn.be/stops/508743", "https://data.delijn.be/stops/509001"], ["https://data.delijn.be/stops/302693", "https://data.delijn.be/stops/303612"], ["https://data.delijn.be/stops/201803", "https://data.delijn.be/stops/201811"], ["https://data.delijn.be/stops/402562", "https://data.delijn.be/stops/402566"], ["https://data.delijn.be/stops/400134", "https://data.delijn.be/stops/410221"], ["https://data.delijn.be/stops/201726", "https://data.delijn.be/stops/203978"], ["https://data.delijn.be/stops/208612", "https://data.delijn.be/stops/209613"], ["https://data.delijn.be/stops/503691", "https://data.delijn.be/stops/508396"], ["https://data.delijn.be/stops/207115", "https://data.delijn.be/stops/207118"], ["https://data.delijn.be/stops/101399", "https://data.delijn.be/stops/106531"], ["https://data.delijn.be/stops/501388", "https://data.delijn.be/stops/506390"], ["https://data.delijn.be/stops/106453", "https://data.delijn.be/stops/106455"], ["https://data.delijn.be/stops/200404", "https://data.delijn.be/stops/202983"], ["https://data.delijn.be/stops/206287", "https://data.delijn.be/stops/207287"], ["https://data.delijn.be/stops/302663", "https://data.delijn.be/stops/302674"], ["https://data.delijn.be/stops/101888", "https://data.delijn.be/stops/104949"], ["https://data.delijn.be/stops/201277", "https://data.delijn.be/stops/218935"], ["https://data.delijn.be/stops/302383", "https://data.delijn.be/stops/307841"], ["https://data.delijn.be/stops/400360", "https://data.delijn.be/stops/400366"], ["https://data.delijn.be/stops/101350", "https://data.delijn.be/stops/101930"], ["https://data.delijn.be/stops/503705", "https://data.delijn.be/stops/508445"], ["https://data.delijn.be/stops/400353", "https://data.delijn.be/stops/400368"], ["https://data.delijn.be/stops/101878", "https://data.delijn.be/stops/105694"], ["https://data.delijn.be/stops/502205", "https://data.delijn.be/stops/507194"], ["https://data.delijn.be/stops/502811", "https://data.delijn.be/stops/507506"], ["https://data.delijn.be/stops/102238", "https://data.delijn.be/stops/109748"], ["https://data.delijn.be/stops/504852", "https://data.delijn.be/stops/505838"], ["https://data.delijn.be/stops/104711", "https://data.delijn.be/stops/107343"], ["https://data.delijn.be/stops/204503", "https://data.delijn.be/stops/204822"], ["https://data.delijn.be/stops/109047", "https://data.delijn.be/stops/307947"], ["https://data.delijn.be/stops/103965", "https://data.delijn.be/stops/104480"], ["https://data.delijn.be/stops/203347", "https://data.delijn.be/stops/208710"], ["https://data.delijn.be/stops/102225", "https://data.delijn.be/stops/103880"], ["https://data.delijn.be/stops/103609", "https://data.delijn.be/stops/103612"], ["https://data.delijn.be/stops/206692", "https://data.delijn.be/stops/207190"], ["https://data.delijn.be/stops/303586", "https://data.delijn.be/stops/306396"], ["https://data.delijn.be/stops/504691", "https://data.delijn.be/stops/509219"], ["https://data.delijn.be/stops/206698", "https://data.delijn.be/stops/207699"], ["https://data.delijn.be/stops/502032", "https://data.delijn.be/stops/502052"], ["https://data.delijn.be/stops/101267", "https://data.delijn.be/stops/104685"], ["https://data.delijn.be/stops/208102", "https://data.delijn.be/stops/208491"], ["https://data.delijn.be/stops/103286", "https://data.delijn.be/stops/106126"], ["https://data.delijn.be/stops/300213", "https://data.delijn.be/stops/307130"], ["https://data.delijn.be/stops/503980", "https://data.delijn.be/stops/508980"], ["https://data.delijn.be/stops/507193", "https://data.delijn.be/stops/507202"], ["https://data.delijn.be/stops/109963", "https://data.delijn.be/stops/109965"], ["https://data.delijn.be/stops/304335", "https://data.delijn.be/stops/304707"], ["https://data.delijn.be/stops/201782", "https://data.delijn.be/stops/201816"], ["https://data.delijn.be/stops/303240", "https://data.delijn.be/stops/306678"], ["https://data.delijn.be/stops/501125", "https://data.delijn.be/stops/506230"], ["https://data.delijn.be/stops/206330", "https://data.delijn.be/stops/207329"], ["https://data.delijn.be/stops/303342", "https://data.delijn.be/stops/303343"], ["https://data.delijn.be/stops/208010", "https://data.delijn.be/stops/209011"], ["https://data.delijn.be/stops/501409", "https://data.delijn.be/stops/501736"], ["https://data.delijn.be/stops/405180", "https://data.delijn.be/stops/406725"], ["https://data.delijn.be/stops/102692", "https://data.delijn.be/stops/105020"], ["https://data.delijn.be/stops/304782", "https://data.delijn.be/stops/304794"], ["https://data.delijn.be/stops/201465", "https://data.delijn.be/stops/201737"], ["https://data.delijn.be/stops/103638", "https://data.delijn.be/stops/107171"], ["https://data.delijn.be/stops/204466", "https://data.delijn.be/stops/205466"], ["https://data.delijn.be/stops/305328", "https://data.delijn.be/stops/306091"], ["https://data.delijn.be/stops/304328", "https://data.delijn.be/stops/304329"], ["https://data.delijn.be/stops/301807", "https://data.delijn.be/stops/301808"], ["https://data.delijn.be/stops/506113", "https://data.delijn.be/stops/506142"], ["https://data.delijn.be/stops/208591", "https://data.delijn.be/stops/301408"], ["https://data.delijn.be/stops/300258", "https://data.delijn.be/stops/300273"], ["https://data.delijn.be/stops/407045", "https://data.delijn.be/stops/407047"], ["https://data.delijn.be/stops/102340", "https://data.delijn.be/stops/103665"], ["https://data.delijn.be/stops/105507", "https://data.delijn.be/stops/105509"], ["https://data.delijn.be/stops/504599", "https://data.delijn.be/stops/509599"], ["https://data.delijn.be/stops/304164", "https://data.delijn.be/stops/307536"], ["https://data.delijn.be/stops/103057", "https://data.delijn.be/stops/105031"], ["https://data.delijn.be/stops/404781", "https://data.delijn.be/stops/404786"], ["https://data.delijn.be/stops/203665", "https://data.delijn.be/stops/210080"], ["https://data.delijn.be/stops/403135", "https://data.delijn.be/stops/403352"], ["https://data.delijn.be/stops/300777", "https://data.delijn.be/stops/304569"], ["https://data.delijn.be/stops/205028", "https://data.delijn.be/stops/205029"], ["https://data.delijn.be/stops/500018", "https://data.delijn.be/stops/502466"], ["https://data.delijn.be/stops/104046", "https://data.delijn.be/stops/104048"], ["https://data.delijn.be/stops/407333", "https://data.delijn.be/stops/410165"], ["https://data.delijn.be/stops/104009", "https://data.delijn.be/stops/107216"], ["https://data.delijn.be/stops/507365", "https://data.delijn.be/stops/507679"], ["https://data.delijn.be/stops/502570", "https://data.delijn.be/stops/507919"], ["https://data.delijn.be/stops/104340", "https://data.delijn.be/stops/105445"], ["https://data.delijn.be/stops/307591", "https://data.delijn.be/stops/307592"], ["https://data.delijn.be/stops/308130", "https://data.delijn.be/stops/308131"], ["https://data.delijn.be/stops/505522", "https://data.delijn.be/stops/509894"], ["https://data.delijn.be/stops/507951", "https://data.delijn.be/stops/507958"], ["https://data.delijn.be/stops/409300", "https://data.delijn.be/stops/409301"], ["https://data.delijn.be/stops/101208", "https://data.delijn.be/stops/101209"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/506674"], ["https://data.delijn.be/stops/504004", "https://data.delijn.be/stops/509739"], ["https://data.delijn.be/stops/303562", "https://data.delijn.be/stops/308688"], ["https://data.delijn.be/stops/107215", "https://data.delijn.be/stops/107237"], ["https://data.delijn.be/stops/200368", "https://data.delijn.be/stops/201766"], ["https://data.delijn.be/stops/107015", "https://data.delijn.be/stops/108655"], ["https://data.delijn.be/stops/200702", "https://data.delijn.be/stops/200731"], ["https://data.delijn.be/stops/403493", "https://data.delijn.be/stops/403550"], ["https://data.delijn.be/stops/401967", "https://data.delijn.be/stops/408454"], ["https://data.delijn.be/stops/400311", "https://data.delijn.be/stops/400413"], ["https://data.delijn.be/stops/109062", "https://data.delijn.be/stops/307369"], ["https://data.delijn.be/stops/300387", "https://data.delijn.be/stops/308637"], ["https://data.delijn.be/stops/204395", "https://data.delijn.be/stops/205396"], ["https://data.delijn.be/stops/200236", "https://data.delijn.be/stops/211130"], ["https://data.delijn.be/stops/104030", "https://data.delijn.be/stops/104810"], ["https://data.delijn.be/stops/503962", "https://data.delijn.be/stops/508044"], ["https://data.delijn.be/stops/303723", "https://data.delijn.be/stops/303742"], ["https://data.delijn.be/stops/404286", "https://data.delijn.be/stops/407089"], ["https://data.delijn.be/stops/403086", "https://data.delijn.be/stops/410328"], ["https://data.delijn.be/stops/307820", "https://data.delijn.be/stops/307827"], ["https://data.delijn.be/stops/403417", "https://data.delijn.be/stops/403453"], ["https://data.delijn.be/stops/403596", "https://data.delijn.be/stops/403645"], ["https://data.delijn.be/stops/106753", "https://data.delijn.be/stops/106758"], ["https://data.delijn.be/stops/504402", "https://data.delijn.be/stops/509465"], ["https://data.delijn.be/stops/103290", "https://data.delijn.be/stops/104811"], ["https://data.delijn.be/stops/401420", "https://data.delijn.be/stops/401531"], ["https://data.delijn.be/stops/400241", "https://data.delijn.be/stops/405610"], ["https://data.delijn.be/stops/410289", "https://data.delijn.be/stops/410351"], ["https://data.delijn.be/stops/303977", "https://data.delijn.be/stops/305524"], ["https://data.delijn.be/stops/102242", "https://data.delijn.be/stops/105879"], ["https://data.delijn.be/stops/301452", "https://data.delijn.be/stops/302505"], ["https://data.delijn.be/stops/205250", "https://data.delijn.be/stops/205471"], ["https://data.delijn.be/stops/302256", "https://data.delijn.be/stops/302275"], ["https://data.delijn.be/stops/105979", "https://data.delijn.be/stops/105982"], ["https://data.delijn.be/stops/503476", "https://data.delijn.be/stops/508260"], ["https://data.delijn.be/stops/300459", "https://data.delijn.be/stops/307087"], ["https://data.delijn.be/stops/208517", "https://data.delijn.be/stops/209517"], ["https://data.delijn.be/stops/307093", "https://data.delijn.be/stops/307100"], ["https://data.delijn.be/stops/405155", "https://data.delijn.be/stops/405206"], ["https://data.delijn.be/stops/105713", "https://data.delijn.be/stops/106079"], ["https://data.delijn.be/stops/500029", "https://data.delijn.be/stops/508885"], ["https://data.delijn.be/stops/205740", "https://data.delijn.be/stops/205741"], ["https://data.delijn.be/stops/101746", "https://data.delijn.be/stops/106384"], ["https://data.delijn.be/stops/204524", "https://data.delijn.be/stops/205481"], ["https://data.delijn.be/stops/301192", "https://data.delijn.be/stops/301239"], ["https://data.delijn.be/stops/400302", "https://data.delijn.be/stops/400440"], ["https://data.delijn.be/stops/109201", "https://data.delijn.be/stops/109211"], ["https://data.delijn.be/stops/300747", "https://data.delijn.be/stops/300804"], ["https://data.delijn.be/stops/406881", "https://data.delijn.be/stops/409411"], ["https://data.delijn.be/stops/104049", "https://data.delijn.be/stops/104129"], ["https://data.delijn.be/stops/107969", "https://data.delijn.be/stops/108436"], ["https://data.delijn.be/stops/407822", "https://data.delijn.be/stops/407923"], ["https://data.delijn.be/stops/200430", "https://data.delijn.be/stops/200433"], ["https://data.delijn.be/stops/301811", "https://data.delijn.be/stops/305928"], ["https://data.delijn.be/stops/404946", "https://data.delijn.be/stops/404947"], ["https://data.delijn.be/stops/405055", "https://data.delijn.be/stops/408257"], ["https://data.delijn.be/stops/101661", "https://data.delijn.be/stops/204660"], ["https://data.delijn.be/stops/208023", "https://data.delijn.be/stops/209011"], ["https://data.delijn.be/stops/205635", "https://data.delijn.be/stops/205636"], ["https://data.delijn.be/stops/107030", "https://data.delijn.be/stops/107086"], ["https://data.delijn.be/stops/101787", "https://data.delijn.be/stops/109151"], ["https://data.delijn.be/stops/502318", "https://data.delijn.be/stops/505741"], ["https://data.delijn.be/stops/208397", "https://data.delijn.be/stops/209333"], ["https://data.delijn.be/stops/106616", "https://data.delijn.be/stops/106618"], ["https://data.delijn.be/stops/401137", "https://data.delijn.be/stops/403750"], ["https://data.delijn.be/stops/103789", "https://data.delijn.be/stops/109148"], ["https://data.delijn.be/stops/505047", "https://data.delijn.be/stops/506210"], ["https://data.delijn.be/stops/108613", "https://data.delijn.be/stops/108616"], ["https://data.delijn.be/stops/108378", "https://data.delijn.be/stops/108444"], ["https://data.delijn.be/stops/300746", "https://data.delijn.be/stops/300775"], ["https://data.delijn.be/stops/108875", "https://data.delijn.be/stops/109150"], ["https://data.delijn.be/stops/409681", "https://data.delijn.be/stops/409683"], ["https://data.delijn.be/stops/502755", "https://data.delijn.be/stops/507754"], ["https://data.delijn.be/stops/202746", "https://data.delijn.be/stops/207421"], ["https://data.delijn.be/stops/300777", "https://data.delijn.be/stops/300794"], ["https://data.delijn.be/stops/405791", "https://data.delijn.be/stops/409889"], ["https://data.delijn.be/stops/307097", "https://data.delijn.be/stops/307371"], ["https://data.delijn.be/stops/101311", "https://data.delijn.be/stops/102934"], ["https://data.delijn.be/stops/204761", "https://data.delijn.be/stops/214012"], ["https://data.delijn.be/stops/400508", "https://data.delijn.be/stops/404051"], ["https://data.delijn.be/stops/501433", "https://data.delijn.be/stops/506644"], ["https://data.delijn.be/stops/206412", "https://data.delijn.be/stops/207454"], ["https://data.delijn.be/stops/208069", "https://data.delijn.be/stops/209069"], ["https://data.delijn.be/stops/102591", "https://data.delijn.be/stops/109102"], ["https://data.delijn.be/stops/503118", "https://data.delijn.be/stops/503119"], ["https://data.delijn.be/stops/405364", "https://data.delijn.be/stops/405368"], ["https://data.delijn.be/stops/101883", "https://data.delijn.be/stops/101884"], ["https://data.delijn.be/stops/105580", "https://data.delijn.be/stops/105584"], ["https://data.delijn.be/stops/208057", "https://data.delijn.be/stops/208628"], ["https://data.delijn.be/stops/207669", "https://data.delijn.be/stops/209618"], ["https://data.delijn.be/stops/401664", "https://data.delijn.be/stops/402011"], ["https://data.delijn.be/stops/504332", "https://data.delijn.be/stops/504341"], ["https://data.delijn.be/stops/304991", "https://data.delijn.be/stops/305008"], ["https://data.delijn.be/stops/102614", "https://data.delijn.be/stops/102617"], ["https://data.delijn.be/stops/501045", "https://data.delijn.be/stops/507654"], ["https://data.delijn.be/stops/202988", "https://data.delijn.be/stops/203988"], ["https://data.delijn.be/stops/101531", "https://data.delijn.be/stops/102579"], ["https://data.delijn.be/stops/401217", "https://data.delijn.be/stops/401389"], ["https://data.delijn.be/stops/501088", "https://data.delijn.be/stops/501438"], ["https://data.delijn.be/stops/505547", "https://data.delijn.be/stops/505982"], ["https://data.delijn.be/stops/503335", "https://data.delijn.be/stops/508335"], ["https://data.delijn.be/stops/300322", "https://data.delijn.be/stops/306816"], ["https://data.delijn.be/stops/108107", "https://data.delijn.be/stops/108117"], ["https://data.delijn.be/stops/108293", "https://data.delijn.be/stops/109735"], ["https://data.delijn.be/stops/404919", "https://data.delijn.be/stops/404939"], ["https://data.delijn.be/stops/204520", "https://data.delijn.be/stops/205726"], ["https://data.delijn.be/stops/302425", "https://data.delijn.be/stops/302427"], ["https://data.delijn.be/stops/208339", "https://data.delijn.be/stops/219010"], ["https://data.delijn.be/stops/202296", "https://data.delijn.be/stops/203296"], ["https://data.delijn.be/stops/400164", "https://data.delijn.be/stops/400169"], ["https://data.delijn.be/stops/108439", "https://data.delijn.be/stops/109702"], ["https://data.delijn.be/stops/505349", "https://data.delijn.be/stops/507598"], ["https://data.delijn.be/stops/102700", "https://data.delijn.be/stops/103515"], ["https://data.delijn.be/stops/300992", "https://data.delijn.be/stops/300996"], ["https://data.delijn.be/stops/305197", "https://data.delijn.be/stops/305198"], ["https://data.delijn.be/stops/508817", "https://data.delijn.be/stops/508819"], ["https://data.delijn.be/stops/505988", "https://data.delijn.be/stops/509151"], ["https://data.delijn.be/stops/210012", "https://data.delijn.be/stops/211012"], ["https://data.delijn.be/stops/301185", "https://data.delijn.be/stops/301263"], ["https://data.delijn.be/stops/502138", "https://data.delijn.be/stops/507135"], ["https://data.delijn.be/stops/204105", "https://data.delijn.be/stops/205105"], ["https://data.delijn.be/stops/403225", "https://data.delijn.be/stops/403402"], ["https://data.delijn.be/stops/204450", "https://data.delijn.be/stops/214002"], ["https://data.delijn.be/stops/502745", "https://data.delijn.be/stops/505247"], ["https://data.delijn.be/stops/402172", "https://data.delijn.be/stops/410041"], ["https://data.delijn.be/stops/502575", "https://data.delijn.be/stops/507574"], ["https://data.delijn.be/stops/502151", "https://data.delijn.be/stops/502166"], ["https://data.delijn.be/stops/503046", "https://data.delijn.be/stops/508958"], ["https://data.delijn.be/stops/208610", "https://data.delijn.be/stops/209610"], ["https://data.delijn.be/stops/408836", "https://data.delijn.be/stops/408851"], ["https://data.delijn.be/stops/501462", "https://data.delijn.be/stops/505398"], ["https://data.delijn.be/stops/109264", "https://data.delijn.be/stops/109265"], ["https://data.delijn.be/stops/206101", "https://data.delijn.be/stops/207932"], ["https://data.delijn.be/stops/505636", "https://data.delijn.be/stops/505924"], ["https://data.delijn.be/stops/200370", "https://data.delijn.be/stops/201067"], ["https://data.delijn.be/stops/203814", "https://data.delijn.be/stops/205076"], ["https://data.delijn.be/stops/504645", "https://data.delijn.be/stops/509646"], ["https://data.delijn.be/stops/502017", "https://data.delijn.be/stops/507012"], ["https://data.delijn.be/stops/302239", "https://data.delijn.be/stops/302247"], ["https://data.delijn.be/stops/209056", "https://data.delijn.be/stops/209092"], ["https://data.delijn.be/stops/207258", "https://data.delijn.be/stops/207289"], ["https://data.delijn.be/stops/108683", "https://data.delijn.be/stops/108891"], ["https://data.delijn.be/stops/501091", "https://data.delijn.be/stops/505152"], ["https://data.delijn.be/stops/206450", "https://data.delijn.be/stops/207450"], ["https://data.delijn.be/stops/204018", "https://data.delijn.be/stops/205087"], ["https://data.delijn.be/stops/104892", "https://data.delijn.be/stops/109345"], ["https://data.delijn.be/stops/305739", "https://data.delijn.be/stops/305744"], ["https://data.delijn.be/stops/301028", "https://data.delijn.be/stops/301030"], ["https://data.delijn.be/stops/406118", "https://data.delijn.be/stops/410262"], ["https://data.delijn.be/stops/102293", "https://data.delijn.be/stops/308481"], ["https://data.delijn.be/stops/205721", "https://data.delijn.be/stops/214013"], ["https://data.delijn.be/stops/105825", "https://data.delijn.be/stops/109491"], ["https://data.delijn.be/stops/200494", "https://data.delijn.be/stops/200495"], ["https://data.delijn.be/stops/402527", "https://data.delijn.be/stops/402542"], ["https://data.delijn.be/stops/307634", "https://data.delijn.be/stops/307635"], ["https://data.delijn.be/stops/302858", "https://data.delijn.be/stops/302913"], ["https://data.delijn.be/stops/410152", "https://data.delijn.be/stops/300925"], ["https://data.delijn.be/stops/408076", "https://data.delijn.be/stops/305696"], ["https://data.delijn.be/stops/207489", "https://data.delijn.be/stops/207490"], ["https://data.delijn.be/stops/304335", "https://data.delijn.be/stops/304336"], ["https://data.delijn.be/stops/108651", "https://data.delijn.be/stops/108652"], ["https://data.delijn.be/stops/408628", "https://data.delijn.be/stops/408771"], ["https://data.delijn.be/stops/404874", "https://data.delijn.be/stops/404968"], ["https://data.delijn.be/stops/108261", "https://data.delijn.be/stops/108263"], ["https://data.delijn.be/stops/301809", "https://data.delijn.be/stops/304669"], ["https://data.delijn.be/stops/205985", "https://data.delijn.be/stops/206837"], ["https://data.delijn.be/stops/107089", "https://data.delijn.be/stops/108184"], ["https://data.delijn.be/stops/404513", "https://data.delijn.be/stops/408967"], ["https://data.delijn.be/stops/506663", "https://data.delijn.be/stops/506664"], ["https://data.delijn.be/stops/409530", "https://data.delijn.be/stops/410112"], ["https://data.delijn.be/stops/400501", "https://data.delijn.be/stops/400513"], ["https://data.delijn.be/stops/102858", "https://data.delijn.be/stops/204626"], ["https://data.delijn.be/stops/202326", "https://data.delijn.be/stops/203065"], ["https://data.delijn.be/stops/200143", "https://data.delijn.be/stops/211094"], ["https://data.delijn.be/stops/503342", "https://data.delijn.be/stops/508342"], ["https://data.delijn.be/stops/105129", "https://data.delijn.be/stops/105131"], ["https://data.delijn.be/stops/201601", "https://data.delijn.be/stops/203194"], ["https://data.delijn.be/stops/302944", "https://data.delijn.be/stops/303124"], ["https://data.delijn.be/stops/109930", "https://data.delijn.be/stops/109931"], ["https://data.delijn.be/stops/303154", "https://data.delijn.be/stops/305449"], ["https://data.delijn.be/stops/103290", "https://data.delijn.be/stops/107500"], ["https://data.delijn.be/stops/101925", "https://data.delijn.be/stops/105510"], ["https://data.delijn.be/stops/403912", "https://data.delijn.be/stops/403978"], ["https://data.delijn.be/stops/508047", "https://data.delijn.be/stops/508624"], ["https://data.delijn.be/stops/102412", "https://data.delijn.be/stops/104049"], ["https://data.delijn.be/stops/502584", "https://data.delijn.be/stops/502736"], ["https://data.delijn.be/stops/503376", "https://data.delijn.be/stops/508370"], ["https://data.delijn.be/stops/502603", "https://data.delijn.be/stops/507306"], ["https://data.delijn.be/stops/201777", "https://data.delijn.be/stops/201780"], ["https://data.delijn.be/stops/300315", "https://data.delijn.be/stops/301676"], ["https://data.delijn.be/stops/101061", "https://data.delijn.be/stops/106009"], ["https://data.delijn.be/stops/305550", "https://data.delijn.be/stops/308548"], ["https://data.delijn.be/stops/202396", "https://data.delijn.be/stops/202537"], ["https://data.delijn.be/stops/203156", "https://data.delijn.be/stops/203158"], ["https://data.delijn.be/stops/505036", "https://data.delijn.be/stops/505038"], ["https://data.delijn.be/stops/101384", "https://data.delijn.be/stops/101386"], ["https://data.delijn.be/stops/503318", "https://data.delijn.be/stops/503964"], ["https://data.delijn.be/stops/400123", "https://data.delijn.be/stops/400130"], ["https://data.delijn.be/stops/308100", "https://data.delijn.be/stops/308102"], ["https://data.delijn.be/stops/307642", "https://data.delijn.be/stops/307690"], ["https://data.delijn.be/stops/101926", "https://data.delijn.be/stops/107076"], ["https://data.delijn.be/stops/102631", "https://data.delijn.be/stops/108213"], ["https://data.delijn.be/stops/201413", "https://data.delijn.be/stops/201414"], ["https://data.delijn.be/stops/208405", "https://data.delijn.be/stops/208413"], ["https://data.delijn.be/stops/208016", "https://data.delijn.be/stops/208020"], ["https://data.delijn.be/stops/409642", "https://data.delijn.be/stops/410335"], ["https://data.delijn.be/stops/303026", "https://data.delijn.be/stops/303072"], ["https://data.delijn.be/stops/307068", "https://data.delijn.be/stops/307133"], ["https://data.delijn.be/stops/401887", "https://data.delijn.be/stops/401890"], ["https://data.delijn.be/stops/503570", "https://data.delijn.be/stops/503944"], ["https://data.delijn.be/stops/106918", "https://data.delijn.be/stops/107282"], ["https://data.delijn.be/stops/504303", "https://data.delijn.be/stops/504961"], ["https://data.delijn.be/stops/501617", "https://data.delijn.be/stops/506614"], ["https://data.delijn.be/stops/305186", "https://data.delijn.be/stops/306963"], ["https://data.delijn.be/stops/502414", "https://data.delijn.be/stops/507695"], ["https://data.delijn.be/stops/201355", "https://data.delijn.be/stops/209726"], ["https://data.delijn.be/stops/503224", "https://data.delijn.be/stops/508593"], ["https://data.delijn.be/stops/403901", "https://data.delijn.be/stops/404030"], ["https://data.delijn.be/stops/204743", "https://data.delijn.be/stops/205744"], ["https://data.delijn.be/stops/501461", "https://data.delijn.be/stops/506459"], ["https://data.delijn.be/stops/505675", "https://data.delijn.be/stops/507305"], ["https://data.delijn.be/stops/503233", "https://data.delijn.be/stops/503458"], ["https://data.delijn.be/stops/400248", "https://data.delijn.be/stops/400944"], ["https://data.delijn.be/stops/509377", "https://data.delijn.be/stops/509385"], ["https://data.delijn.be/stops/305920", "https://data.delijn.be/stops/306255"], ["https://data.delijn.be/stops/405201", "https://data.delijn.be/stops/405289"], ["https://data.delijn.be/stops/504007", "https://data.delijn.be/stops/509404"], ["https://data.delijn.be/stops/204322", "https://data.delijn.be/stops/205007"], ["https://data.delijn.be/stops/402942", "https://data.delijn.be/stops/402943"], ["https://data.delijn.be/stops/101261", "https://data.delijn.be/stops/101262"], ["https://data.delijn.be/stops/302037", "https://data.delijn.be/stops/304915"], ["https://data.delijn.be/stops/302394", "https://data.delijn.be/stops/307521"], ["https://data.delijn.be/stops/307103", "https://data.delijn.be/stops/307790"], ["https://data.delijn.be/stops/307109", "https://data.delijn.be/stops/308094"], ["https://data.delijn.be/stops/500602", "https://data.delijn.be/stops/501462"], ["https://data.delijn.be/stops/509448", "https://data.delijn.be/stops/509963"], ["https://data.delijn.be/stops/403960", "https://data.delijn.be/stops/405978"], ["https://data.delijn.be/stops/308550", "https://data.delijn.be/stops/308551"], ["https://data.delijn.be/stops/301807", "https://data.delijn.be/stops/307889"], ["https://data.delijn.be/stops/402337", "https://data.delijn.be/stops/402468"], ["https://data.delijn.be/stops/207196", "https://data.delijn.be/stops/207854"], ["https://data.delijn.be/stops/402300", "https://data.delijn.be/stops/402316"], ["https://data.delijn.be/stops/208613", "https://data.delijn.be/stops/209613"], ["https://data.delijn.be/stops/103488", "https://data.delijn.be/stops/109191"], ["https://data.delijn.be/stops/402895", "https://data.delijn.be/stops/402896"], ["https://data.delijn.be/stops/200891", "https://data.delijn.be/stops/502274"], ["https://data.delijn.be/stops/202795", "https://data.delijn.be/stops/202796"], ["https://data.delijn.be/stops/206472", "https://data.delijn.be/stops/207472"], ["https://data.delijn.be/stops/307420", "https://data.delijn.be/stops/307955"], ["https://data.delijn.be/stops/503986", "https://data.delijn.be/stops/508454"], ["https://data.delijn.be/stops/404990", "https://data.delijn.be/stops/404992"], ["https://data.delijn.be/stops/404178", "https://data.delijn.be/stops/404189"], ["https://data.delijn.be/stops/208548", "https://data.delijn.be/stops/209548"], ["https://data.delijn.be/stops/108348", "https://data.delijn.be/stops/108349"], ["https://data.delijn.be/stops/103503", "https://data.delijn.be/stops/109141"], ["https://data.delijn.be/stops/105253", "https://data.delijn.be/stops/105842"], ["https://data.delijn.be/stops/303151", "https://data.delijn.be/stops/303183"], ["https://data.delijn.be/stops/505046", "https://data.delijn.be/stops/509840"], ["https://data.delijn.be/stops/303292", "https://data.delijn.be/stops/306971"], ["https://data.delijn.be/stops/401359", "https://data.delijn.be/stops/406141"], ["https://data.delijn.be/stops/403241", "https://data.delijn.be/stops/403862"], ["https://data.delijn.be/stops/505898", "https://data.delijn.be/stops/509424"], ["https://data.delijn.be/stops/400136", "https://data.delijn.be/stops/400138"], ["https://data.delijn.be/stops/400966", "https://data.delijn.be/stops/406551"], ["https://data.delijn.be/stops/101988", "https://data.delijn.be/stops/102874"], ["https://data.delijn.be/stops/205145", "https://data.delijn.be/stops/205151"], ["https://data.delijn.be/stops/206447", "https://data.delijn.be/stops/207447"], ["https://data.delijn.be/stops/106466", "https://data.delijn.be/stops/108247"], ["https://data.delijn.be/stops/306289", "https://data.delijn.be/stops/306290"], ["https://data.delijn.be/stops/106216", "https://data.delijn.be/stops/106217"], ["https://data.delijn.be/stops/400030", "https://data.delijn.be/stops/400428"], ["https://data.delijn.be/stops/200464", "https://data.delijn.be/stops/205997"], ["https://data.delijn.be/stops/103003", "https://data.delijn.be/stops/105063"], ["https://data.delijn.be/stops/205981", "https://data.delijn.be/stops/208675"], ["https://data.delijn.be/stops/201002", "https://data.delijn.be/stops/211857"], ["https://data.delijn.be/stops/104107", "https://data.delijn.be/stops/108295"], ["https://data.delijn.be/stops/407230", "https://data.delijn.be/stops/407231"], ["https://data.delijn.be/stops/200907", "https://data.delijn.be/stops/202252"], ["https://data.delijn.be/stops/501694", "https://data.delijn.be/stops/502533"], ["https://data.delijn.be/stops/207959", "https://data.delijn.be/stops/306077"], ["https://data.delijn.be/stops/200147", "https://data.delijn.be/stops/201022"], ["https://data.delijn.be/stops/503153", "https://data.delijn.be/stops/505202"], ["https://data.delijn.be/stops/507372", "https://data.delijn.be/stops/507520"], ["https://data.delijn.be/stops/207674", "https://data.delijn.be/stops/208137"], ["https://data.delijn.be/stops/207547", "https://data.delijn.be/stops/209750"], ["https://data.delijn.be/stops/203766", "https://data.delijn.be/stops/203767"], ["https://data.delijn.be/stops/200460", "https://data.delijn.be/stops/200526"], ["https://data.delijn.be/stops/207870", "https://data.delijn.be/stops/208785"], ["https://data.delijn.be/stops/404316", "https://data.delijn.be/stops/404368"], ["https://data.delijn.be/stops/502247", "https://data.delijn.be/stops/507910"], ["https://data.delijn.be/stops/200593", "https://data.delijn.be/stops/200594"], ["https://data.delijn.be/stops/300478", "https://data.delijn.be/stops/300488"], ["https://data.delijn.be/stops/206203", "https://data.delijn.be/stops/207357"], ["https://data.delijn.be/stops/208483", "https://data.delijn.be/stops/208484"], ["https://data.delijn.be/stops/102943", "https://data.delijn.be/stops/105654"], ["https://data.delijn.be/stops/105648", "https://data.delijn.be/stops/105649"], ["https://data.delijn.be/stops/200416", "https://data.delijn.be/stops/201416"], ["https://data.delijn.be/stops/204532", "https://data.delijn.be/stops/205294"], ["https://data.delijn.be/stops/202050", "https://data.delijn.be/stops/203051"], ["https://data.delijn.be/stops/104898", "https://data.delijn.be/stops/107760"], ["https://data.delijn.be/stops/503586", "https://data.delijn.be/stops/505098"], ["https://data.delijn.be/stops/201695", "https://data.delijn.be/stops/202539"], ["https://data.delijn.be/stops/301514", "https://data.delijn.be/stops/308750"], ["https://data.delijn.be/stops/103288", "https://data.delijn.be/stops/109478"], ["https://data.delijn.be/stops/105121", "https://data.delijn.be/stops/305823"], ["https://data.delijn.be/stops/302698", "https://data.delijn.be/stops/302699"], ["https://data.delijn.be/stops/103681", "https://data.delijn.be/stops/107788"], ["https://data.delijn.be/stops/301644", "https://data.delijn.be/stops/301646"], ["https://data.delijn.be/stops/105277", "https://data.delijn.be/stops/105677"], ["https://data.delijn.be/stops/101196", "https://data.delijn.be/stops/101197"], ["https://data.delijn.be/stops/507385", "https://data.delijn.be/stops/507581"], ["https://data.delijn.be/stops/200165", "https://data.delijn.be/stops/203152"], ["https://data.delijn.be/stops/503540", "https://data.delijn.be/stops/503576"], ["https://data.delijn.be/stops/206887", "https://data.delijn.be/stops/207914"], ["https://data.delijn.be/stops/106467", "https://data.delijn.be/stops/107044"], ["https://data.delijn.be/stops/108937", "https://data.delijn.be/stops/109223"], ["https://data.delijn.be/stops/301486", "https://data.delijn.be/stops/301500"], ["https://data.delijn.be/stops/109000", "https://data.delijn.be/stops/408147"], ["https://data.delijn.be/stops/507261", "https://data.delijn.be/stops/509725"], ["https://data.delijn.be/stops/505578", "https://data.delijn.be/stops/508640"], ["https://data.delijn.be/stops/509611", "https://data.delijn.be/stops/509614"], ["https://data.delijn.be/stops/405891", "https://data.delijn.be/stops/407263"], ["https://data.delijn.be/stops/408714", "https://data.delijn.be/stops/408715"], ["https://data.delijn.be/stops/504803", "https://data.delijn.be/stops/504804"], ["https://data.delijn.be/stops/304406", "https://data.delijn.be/stops/306874"], ["https://data.delijn.be/stops/504519", "https://data.delijn.be/stops/504531"], ["https://data.delijn.be/stops/202078", "https://data.delijn.be/stops/203078"], ["https://data.delijn.be/stops/200918", "https://data.delijn.be/stops/202138"], ["https://data.delijn.be/stops/404881", "https://data.delijn.be/stops/404944"], ["https://data.delijn.be/stops/405908", "https://data.delijn.be/stops/405942"], ["https://data.delijn.be/stops/404254", "https://data.delijn.be/stops/404320"], ["https://data.delijn.be/stops/400450", "https://data.delijn.be/stops/404674"], ["https://data.delijn.be/stops/202679", "https://data.delijn.be/stops/202681"], ["https://data.delijn.be/stops/502100", "https://data.delijn.be/stops/502120"], ["https://data.delijn.be/stops/300950", "https://data.delijn.be/stops/305913"], ["https://data.delijn.be/stops/503944", "https://data.delijn.be/stops/508567"], ["https://data.delijn.be/stops/208642", "https://data.delijn.be/stops/209643"], ["https://data.delijn.be/stops/101835", "https://data.delijn.be/stops/101885"], ["https://data.delijn.be/stops/400474", "https://data.delijn.be/stops/400480"], ["https://data.delijn.be/stops/505742", "https://data.delijn.be/stops/507005"], ["https://data.delijn.be/stops/403310", "https://data.delijn.be/stops/403311"], ["https://data.delijn.be/stops/305598", "https://data.delijn.be/stops/306344"], ["https://data.delijn.be/stops/208967", "https://data.delijn.be/stops/209967"], ["https://data.delijn.be/stops/105696", "https://data.delijn.be/stops/106071"], ["https://data.delijn.be/stops/300472", "https://data.delijn.be/stops/308063"], ["https://data.delijn.be/stops/502193", "https://data.delijn.be/stops/504847"], ["https://data.delijn.be/stops/503358", "https://data.delijn.be/stops/505137"], ["https://data.delijn.be/stops/102290", "https://data.delijn.be/stops/107465"], ["https://data.delijn.be/stops/202716", "https://data.delijn.be/stops/203716"], ["https://data.delijn.be/stops/206228", "https://data.delijn.be/stops/207226"], ["https://data.delijn.be/stops/204515", "https://data.delijn.be/stops/204516"], ["https://data.delijn.be/stops/102514", "https://data.delijn.be/stops/102516"], ["https://data.delijn.be/stops/406806", "https://data.delijn.be/stops/407914"], ["https://data.delijn.be/stops/109914", "https://data.delijn.be/stops/109917"], ["https://data.delijn.be/stops/205318", "https://data.delijn.be/stops/205362"], ["https://data.delijn.be/stops/307320", "https://data.delijn.be/stops/307321"], ["https://data.delijn.be/stops/401676", "https://data.delijn.be/stops/401679"], ["https://data.delijn.be/stops/106591", "https://data.delijn.be/stops/107247"], ["https://data.delijn.be/stops/200827", "https://data.delijn.be/stops/200828"], ["https://data.delijn.be/stops/404224", "https://data.delijn.be/stops/404225"], ["https://data.delijn.be/stops/102477", "https://data.delijn.be/stops/400295"], ["https://data.delijn.be/stops/101445", "https://data.delijn.be/stops/101450"], ["https://data.delijn.be/stops/101342", "https://data.delijn.be/stops/108109"], ["https://data.delijn.be/stops/501641", "https://data.delijn.be/stops/506383"], ["https://data.delijn.be/stops/303994", "https://data.delijn.be/stops/307019"], ["https://data.delijn.be/stops/506089", "https://data.delijn.be/stops/509811"], ["https://data.delijn.be/stops/301352", "https://data.delijn.be/stops/306127"], ["https://data.delijn.be/stops/305657", "https://data.delijn.be/stops/307103"], ["https://data.delijn.be/stops/503192", "https://data.delijn.be/stops/508193"], ["https://data.delijn.be/stops/201230", "https://data.delijn.be/stops/202354"], ["https://data.delijn.be/stops/302220", "https://data.delijn.be/stops/302242"], ["https://data.delijn.be/stops/505257", "https://data.delijn.be/stops/508671"], ["https://data.delijn.be/stops/405588", "https://data.delijn.be/stops/405589"], ["https://data.delijn.be/stops/400136", "https://data.delijn.be/stops/409164"], ["https://data.delijn.be/stops/101418", "https://data.delijn.be/stops/108714"], ["https://data.delijn.be/stops/302950", "https://data.delijn.be/stops/303000"], ["https://data.delijn.be/stops/108684", "https://data.delijn.be/stops/108829"], ["https://data.delijn.be/stops/503484", "https://data.delijn.be/stops/508484"], ["https://data.delijn.be/stops/401553", "https://data.delijn.be/stops/402036"], ["https://data.delijn.be/stops/408919", "https://data.delijn.be/stops/408924"], ["https://data.delijn.be/stops/306805", "https://data.delijn.be/stops/306806"], ["https://data.delijn.be/stops/202266", "https://data.delijn.be/stops/203265"], ["https://data.delijn.be/stops/402418", "https://data.delijn.be/stops/402429"], ["https://data.delijn.be/stops/503999", "https://data.delijn.be/stops/508561"], ["https://data.delijn.be/stops/105803", "https://data.delijn.be/stops/305787"], ["https://data.delijn.be/stops/306608", "https://data.delijn.be/stops/306609"], ["https://data.delijn.be/stops/302963", "https://data.delijn.be/stops/302964"], ["https://data.delijn.be/stops/207445", "https://data.delijn.be/stops/209515"], ["https://data.delijn.be/stops/207411", "https://data.delijn.be/stops/207650"], ["https://data.delijn.be/stops/401763", "https://data.delijn.be/stops/401768"], ["https://data.delijn.be/stops/202570", "https://data.delijn.be/stops/202684"], ["https://data.delijn.be/stops/503635", "https://data.delijn.be/stops/509971"], ["https://data.delijn.be/stops/300181", "https://data.delijn.be/stops/300226"], ["https://data.delijn.be/stops/106204", "https://data.delijn.be/stops/106206"], ["https://data.delijn.be/stops/404478", "https://data.delijn.be/stops/406766"], ["https://data.delijn.be/stops/207341", "https://data.delijn.be/stops/207716"], ["https://data.delijn.be/stops/106088", "https://data.delijn.be/stops/108473"], ["https://data.delijn.be/stops/206142", "https://data.delijn.be/stops/206722"], ["https://data.delijn.be/stops/508184", "https://data.delijn.be/stops/508206"], ["https://data.delijn.be/stops/501690", "https://data.delijn.be/stops/506690"], ["https://data.delijn.be/stops/201805", "https://data.delijn.be/stops/208261"], ["https://data.delijn.be/stops/101440", "https://data.delijn.be/stops/103209"], ["https://data.delijn.be/stops/201780", "https://data.delijn.be/stops/209247"], ["https://data.delijn.be/stops/405261", "https://data.delijn.be/stops/405278"], ["https://data.delijn.be/stops/101904", "https://data.delijn.be/stops/105720"], ["https://data.delijn.be/stops/104082", "https://data.delijn.be/stops/105895"], ["https://data.delijn.be/stops/104972", "https://data.delijn.be/stops/109110"], ["https://data.delijn.be/stops/305923", "https://data.delijn.be/stops/305924"], ["https://data.delijn.be/stops/103258", "https://data.delijn.be/stops/103306"], ["https://data.delijn.be/stops/409500", "https://data.delijn.be/stops/409502"], ["https://data.delijn.be/stops/205639", "https://data.delijn.be/stops/205640"], ["https://data.delijn.be/stops/504473", "https://data.delijn.be/stops/509446"], ["https://data.delijn.be/stops/105373", "https://data.delijn.be/stops/305785"], ["https://data.delijn.be/stops/403197", "https://data.delijn.be/stops/403198"], ["https://data.delijn.be/stops/300128", "https://data.delijn.be/stops/300148"], ["https://data.delijn.be/stops/101084", "https://data.delijn.be/stops/101087"], ["https://data.delijn.be/stops/208008", "https://data.delijn.be/stops/209008"], ["https://data.delijn.be/stops/305596", "https://data.delijn.be/stops/306268"], ["https://data.delijn.be/stops/402340", "https://data.delijn.be/stops/410149"], ["https://data.delijn.be/stops/505648", "https://data.delijn.be/stops/507472"], ["https://data.delijn.be/stops/302520", "https://data.delijn.be/stops/302524"], ["https://data.delijn.be/stops/301029", "https://data.delijn.be/stops/308819"], ["https://data.delijn.be/stops/206776", "https://data.delijn.be/stops/208487"], ["https://data.delijn.be/stops/200770", "https://data.delijn.be/stops/508011"], ["https://data.delijn.be/stops/102373", "https://data.delijn.be/stops/102892"], ["https://data.delijn.be/stops/106111", "https://data.delijn.be/stops/106112"], ["https://data.delijn.be/stops/402454", "https://data.delijn.be/stops/402455"], ["https://data.delijn.be/stops/301586", "https://data.delijn.be/stops/301587"], ["https://data.delijn.be/stops/202296", "https://data.delijn.be/stops/202297"], ["https://data.delijn.be/stops/302302", "https://data.delijn.be/stops/302303"], ["https://data.delijn.be/stops/105034", "https://data.delijn.be/stops/105064"], ["https://data.delijn.be/stops/408310", "https://data.delijn.be/stops/408380"], ["https://data.delijn.be/stops/508659", "https://data.delijn.be/stops/509943"], ["https://data.delijn.be/stops/303469", "https://data.delijn.be/stops/303470"], ["https://data.delijn.be/stops/103116", "https://data.delijn.be/stops/103117"], ["https://data.delijn.be/stops/202391", "https://data.delijn.be/stops/203390"], ["https://data.delijn.be/stops/403394", "https://data.delijn.be/stops/410117"], ["https://data.delijn.be/stops/300835", "https://data.delijn.be/stops/302285"], ["https://data.delijn.be/stops/509593", "https://data.delijn.be/stops/509596"], ["https://data.delijn.be/stops/400056", "https://data.delijn.be/stops/400101"], ["https://data.delijn.be/stops/219080", "https://data.delijn.be/stops/303290"], ["https://data.delijn.be/stops/305298", "https://data.delijn.be/stops/305299"], ["https://data.delijn.be/stops/501593", "https://data.delijn.be/stops/509061"], ["https://data.delijn.be/stops/504612", "https://data.delijn.be/stops/509080"], ["https://data.delijn.be/stops/104676", "https://data.delijn.be/stops/104677"], ["https://data.delijn.be/stops/308264", "https://data.delijn.be/stops/308266"], ["https://data.delijn.be/stops/209166", "https://data.delijn.be/stops/209167"], ["https://data.delijn.be/stops/503735", "https://data.delijn.be/stops/508266"], ["https://data.delijn.be/stops/303629", "https://data.delijn.be/stops/306003"], ["https://data.delijn.be/stops/101978", "https://data.delijn.be/stops/109654"], ["https://data.delijn.be/stops/201390", "https://data.delijn.be/stops/202651"], ["https://data.delijn.be/stops/307276", "https://data.delijn.be/stops/307333"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/504296"], ["https://data.delijn.be/stops/300606", "https://data.delijn.be/stops/300607"], ["https://data.delijn.be/stops/303548", "https://data.delijn.be/stops/304316"], ["https://data.delijn.be/stops/305538", "https://data.delijn.be/stops/305583"], ["https://data.delijn.be/stops/503491", "https://data.delijn.be/stops/508491"], ["https://data.delijn.be/stops/104256", "https://data.delijn.be/stops/108865"], ["https://data.delijn.be/stops/509812", "https://data.delijn.be/stops/509825"], ["https://data.delijn.be/stops/203323", "https://data.delijn.be/stops/208640"], ["https://data.delijn.be/stops/406252", "https://data.delijn.be/stops/406254"], ["https://data.delijn.be/stops/302295", "https://data.delijn.be/stops/303495"], ["https://data.delijn.be/stops/400616", "https://data.delijn.be/stops/408229"], ["https://data.delijn.be/stops/504496", "https://data.delijn.be/stops/509496"], ["https://data.delijn.be/stops/304239", "https://data.delijn.be/stops/304522"], ["https://data.delijn.be/stops/204751", "https://data.delijn.be/stops/205751"], ["https://data.delijn.be/stops/303680", "https://data.delijn.be/stops/304022"], ["https://data.delijn.be/stops/302535", "https://data.delijn.be/stops/302536"], ["https://data.delijn.be/stops/300558", "https://data.delijn.be/stops/307863"], ["https://data.delijn.be/stops/104818", "https://data.delijn.be/stops/109097"], ["https://data.delijn.be/stops/509086", "https://data.delijn.be/stops/509091"], ["https://data.delijn.be/stops/101548", "https://data.delijn.be/stops/101549"], ["https://data.delijn.be/stops/303107", "https://data.delijn.be/stops/303108"], ["https://data.delijn.be/stops/105841", "https://data.delijn.be/stops/105842"], ["https://data.delijn.be/stops/102637", "https://data.delijn.be/stops/107857"], ["https://data.delijn.be/stops/301428", "https://data.delijn.be/stops/307318"], ["https://data.delijn.be/stops/208187", "https://data.delijn.be/stops/209192"], ["https://data.delijn.be/stops/406722", "https://data.delijn.be/stops/408642"], ["https://data.delijn.be/stops/302889", "https://data.delijn.be/stops/302890"], ["https://data.delijn.be/stops/101272", "https://data.delijn.be/stops/101273"], ["https://data.delijn.be/stops/206704", "https://data.delijn.be/stops/207992"], ["https://data.delijn.be/stops/406571", "https://data.delijn.be/stops/410202"], ["https://data.delijn.be/stops/504306", "https://data.delijn.be/stops/509220"], ["https://data.delijn.be/stops/501157", "https://data.delijn.be/stops/501165"], ["https://data.delijn.be/stops/200819", "https://data.delijn.be/stops/200847"], ["https://data.delijn.be/stops/406168", "https://data.delijn.be/stops/406818"], ["https://data.delijn.be/stops/103376", "https://data.delijn.be/stops/109852"], ["https://data.delijn.be/stops/404748", "https://data.delijn.be/stops/404749"], ["https://data.delijn.be/stops/201457", "https://data.delijn.be/stops/201661"], ["https://data.delijn.be/stops/506076", "https://data.delijn.be/stops/506778"], ["https://data.delijn.be/stops/200725", "https://data.delijn.be/stops/202612"], ["https://data.delijn.be/stops/107927", "https://data.delijn.be/stops/205799"], ["https://data.delijn.be/stops/401364", "https://data.delijn.be/stops/406356"], ["https://data.delijn.be/stops/204086", "https://data.delijn.be/stops/205085"], ["https://data.delijn.be/stops/109968", "https://data.delijn.be/stops/109972"], ["https://data.delijn.be/stops/201903", "https://data.delijn.be/stops/202473"], ["https://data.delijn.be/stops/101617", "https://data.delijn.be/stops/106573"], ["https://data.delijn.be/stops/407396", "https://data.delijn.be/stops/407397"], ["https://data.delijn.be/stops/501374", "https://data.delijn.be/stops/506374"], ["https://data.delijn.be/stops/402652", "https://data.delijn.be/stops/402653"], ["https://data.delijn.be/stops/409705", "https://data.delijn.be/stops/409707"], ["https://data.delijn.be/stops/202849", "https://data.delijn.be/stops/203735"], ["https://data.delijn.be/stops/304493", "https://data.delijn.be/stops/304503"], ["https://data.delijn.be/stops/406978", "https://data.delijn.be/stops/409485"], ["https://data.delijn.be/stops/102770", "https://data.delijn.be/stops/102775"], ["https://data.delijn.be/stops/501769", "https://data.delijn.be/stops/505438"], ["https://data.delijn.be/stops/408805", "https://data.delijn.be/stops/408806"], ["https://data.delijn.be/stops/406729", "https://data.delijn.be/stops/407321"], ["https://data.delijn.be/stops/101826", "https://data.delijn.be/stops/103138"], ["https://data.delijn.be/stops/106618", "https://data.delijn.be/stops/106619"], ["https://data.delijn.be/stops/108870", "https://data.delijn.be/stops/109145"], ["https://data.delijn.be/stops/405177", "https://data.delijn.be/stops/405206"], ["https://data.delijn.be/stops/204767", "https://data.delijn.be/stops/205443"], ["https://data.delijn.be/stops/107902", "https://data.delijn.be/stops/108948"], ["https://data.delijn.be/stops/200923", "https://data.delijn.be/stops/201858"], ["https://data.delijn.be/stops/301376", "https://data.delijn.be/stops/301392"], ["https://data.delijn.be/stops/400276", "https://data.delijn.be/stops/400387"], ["https://data.delijn.be/stops/301549", "https://data.delijn.be/stops/301559"], ["https://data.delijn.be/stops/205184", "https://data.delijn.be/stops/205382"], ["https://data.delijn.be/stops/304248", "https://data.delijn.be/stops/304300"], ["https://data.delijn.be/stops/101534", "https://data.delijn.be/stops/109502"], ["https://data.delijn.be/stops/104352", "https://data.delijn.be/stops/108565"], ["https://data.delijn.be/stops/307526", "https://data.delijn.be/stops/307528"], ["https://data.delijn.be/stops/406739", "https://data.delijn.be/stops/407481"], ["https://data.delijn.be/stops/206263", "https://data.delijn.be/stops/207263"], ["https://data.delijn.be/stops/408264", "https://data.delijn.be/stops/408412"], ["https://data.delijn.be/stops/302272", "https://data.delijn.be/stops/302273"], ["https://data.delijn.be/stops/304794", "https://data.delijn.be/stops/304800"], ["https://data.delijn.be/stops/205920", "https://data.delijn.be/stops/210026"], ["https://data.delijn.be/stops/108088", "https://data.delijn.be/stops/108687"], ["https://data.delijn.be/stops/403427", "https://data.delijn.be/stops/410291"], ["https://data.delijn.be/stops/204446", "https://data.delijn.be/stops/205337"], ["https://data.delijn.be/stops/302325", "https://data.delijn.be/stops/302956"], ["https://data.delijn.be/stops/407800", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/402135", "https://data.delijn.be/stops/402136"], ["https://data.delijn.be/stops/302570", "https://data.delijn.be/stops/303299"], ["https://data.delijn.be/stops/501760", "https://data.delijn.be/stops/506179"], ["https://data.delijn.be/stops/400201", "https://data.delijn.be/stops/400209"], ["https://data.delijn.be/stops/402515", "https://data.delijn.be/stops/402517"], ["https://data.delijn.be/stops/305911", "https://data.delijn.be/stops/305912"], ["https://data.delijn.be/stops/400396", "https://data.delijn.be/stops/400397"], ["https://data.delijn.be/stops/501009", "https://data.delijn.be/stops/501022"], ["https://data.delijn.be/stops/507394", "https://data.delijn.be/stops/507408"], ["https://data.delijn.be/stops/404166", "https://data.delijn.be/stops/404177"], ["https://data.delijn.be/stops/101878", "https://data.delijn.be/stops/106077"], ["https://data.delijn.be/stops/108608", "https://data.delijn.be/stops/307348"], ["https://data.delijn.be/stops/204320", "https://data.delijn.be/stops/205321"], ["https://data.delijn.be/stops/207212", "https://data.delijn.be/stops/207814"], ["https://data.delijn.be/stops/403057", "https://data.delijn.be/stops/403162"], ["https://data.delijn.be/stops/207843", "https://data.delijn.be/stops/207844"], ["https://data.delijn.be/stops/301124", "https://data.delijn.be/stops/301208"], ["https://data.delijn.be/stops/109964", "https://data.delijn.be/stops/109965"], ["https://data.delijn.be/stops/503846", "https://data.delijn.be/stops/508856"], ["https://data.delijn.be/stops/507329", "https://data.delijn.be/stops/507338"], ["https://data.delijn.be/stops/406165", "https://data.delijn.be/stops/409396"], ["https://data.delijn.be/stops/401080", "https://data.delijn.be/stops/401084"], ["https://data.delijn.be/stops/504614", "https://data.delijn.be/stops/509615"], ["https://data.delijn.be/stops/204332", "https://data.delijn.be/stops/204821"], ["https://data.delijn.be/stops/504892", "https://data.delijn.be/stops/505091"], ["https://data.delijn.be/stops/304099", "https://data.delijn.be/stops/304118"], ["https://data.delijn.be/stops/502129", "https://data.delijn.be/stops/502147"], ["https://data.delijn.be/stops/301641", "https://data.delijn.be/stops/306154"], ["https://data.delijn.be/stops/108409", "https://data.delijn.be/stops/108413"], ["https://data.delijn.be/stops/205000", "https://data.delijn.be/stops/207378"], ["https://data.delijn.be/stops/204052", "https://data.delijn.be/stops/205052"], ["https://data.delijn.be/stops/307713", "https://data.delijn.be/stops/307716"], ["https://data.delijn.be/stops/405246", "https://data.delijn.be/stops/405254"], ["https://data.delijn.be/stops/400345", "https://data.delijn.be/stops/400437"], ["https://data.delijn.be/stops/200594", "https://data.delijn.be/stops/200598"], ["https://data.delijn.be/stops/201708", "https://data.delijn.be/stops/201709"], ["https://data.delijn.be/stops/403595", "https://data.delijn.be/stops/404317"], ["https://data.delijn.be/stops/507397", "https://data.delijn.be/stops/507412"], ["https://data.delijn.be/stops/402551", "https://data.delijn.be/stops/408446"], ["https://data.delijn.be/stops/200073", "https://data.delijn.be/stops/202353"], ["https://data.delijn.be/stops/407824", "https://data.delijn.be/stops/407919"], ["https://data.delijn.be/stops/300201", "https://data.delijn.be/stops/302202"], ["https://data.delijn.be/stops/501066", "https://data.delijn.be/stops/501506"], ["https://data.delijn.be/stops/300029", "https://data.delijn.be/stops/306797"], ["https://data.delijn.be/stops/303618", "https://data.delijn.be/stops/306705"], ["https://data.delijn.be/stops/101664", "https://data.delijn.be/stops/106481"], ["https://data.delijn.be/stops/105018", "https://data.delijn.be/stops/105829"], ["https://data.delijn.be/stops/307068", "https://data.delijn.be/stops/308739"], ["https://data.delijn.be/stops/204047", "https://data.delijn.be/stops/205519"], ["https://data.delijn.be/stops/106459", "https://data.delijn.be/stops/107036"], ["https://data.delijn.be/stops/200718", "https://data.delijn.be/stops/214003"], ["https://data.delijn.be/stops/101969", "https://data.delijn.be/stops/109302"], ["https://data.delijn.be/stops/402191", "https://data.delijn.be/stops/402497"], ["https://data.delijn.be/stops/206474", "https://data.delijn.be/stops/207477"], ["https://data.delijn.be/stops/401946", "https://data.delijn.be/stops/405825"], ["https://data.delijn.be/stops/208377", "https://data.delijn.be/stops/208378"], ["https://data.delijn.be/stops/502005", "https://data.delijn.be/stops/505328"], ["https://data.delijn.be/stops/201885", "https://data.delijn.be/stops/203214"], ["https://data.delijn.be/stops/403332", "https://data.delijn.be/stops/403333"], ["https://data.delijn.be/stops/307466", "https://data.delijn.be/stops/307467"], ["https://data.delijn.be/stops/201694", "https://data.delijn.be/stops/202032"], ["https://data.delijn.be/stops/504214", "https://data.delijn.be/stops/504223"], ["https://data.delijn.be/stops/501262", "https://data.delijn.be/stops/501326"], ["https://data.delijn.be/stops/306660", "https://data.delijn.be/stops/306661"], ["https://data.delijn.be/stops/501084", "https://data.delijn.be/stops/506059"], ["https://data.delijn.be/stops/502467", "https://data.delijn.be/stops/502473"], ["https://data.delijn.be/stops/401417", "https://data.delijn.be/stops/304535"], ["https://data.delijn.be/stops/305733", "https://data.delijn.be/stops/305736"], ["https://data.delijn.be/stops/506176", "https://data.delijn.be/stops/506182"], ["https://data.delijn.be/stops/202273", "https://data.delijn.be/stops/202669"], ["https://data.delijn.be/stops/204718", "https://data.delijn.be/stops/205213"], ["https://data.delijn.be/stops/407841", "https://data.delijn.be/stops/407991"], ["https://data.delijn.be/stops/201617", "https://data.delijn.be/stops/203923"], ["https://data.delijn.be/stops/400571", "https://data.delijn.be/stops/404059"], ["https://data.delijn.be/stops/405445", "https://data.delijn.be/stops/408543"], ["https://data.delijn.be/stops/202125", "https://data.delijn.be/stops/210050"], ["https://data.delijn.be/stops/501376", "https://data.delijn.be/stops/505354"], ["https://data.delijn.be/stops/300222", "https://data.delijn.be/stops/302153"], ["https://data.delijn.be/stops/302422", "https://data.delijn.be/stops/302437"], ["https://data.delijn.be/stops/102880", "https://data.delijn.be/stops/104667"], ["https://data.delijn.be/stops/300232", "https://data.delijn.be/stops/300239"], ["https://data.delijn.be/stops/502226", "https://data.delijn.be/stops/505720"], ["https://data.delijn.be/stops/204126", "https://data.delijn.be/stops/205121"], ["https://data.delijn.be/stops/300634", "https://data.delijn.be/stops/306629"], ["https://data.delijn.be/stops/406196", "https://data.delijn.be/stops/406818"], ["https://data.delijn.be/stops/408354", "https://data.delijn.be/stops/408370"], ["https://data.delijn.be/stops/404805", "https://data.delijn.be/stops/404834"], ["https://data.delijn.be/stops/104353", "https://data.delijn.be/stops/104882"], ["https://data.delijn.be/stops/200563", "https://data.delijn.be/stops/200665"], ["https://data.delijn.be/stops/305012", "https://data.delijn.be/stops/305032"], ["https://data.delijn.be/stops/304283", "https://data.delijn.be/stops/308768"], ["https://data.delijn.be/stops/305222", "https://data.delijn.be/stops/305268"], ["https://data.delijn.be/stops/103233", "https://data.delijn.be/stops/107143"], ["https://data.delijn.be/stops/407640", "https://data.delijn.be/stops/407763"], ["https://data.delijn.be/stops/303106", "https://data.delijn.be/stops/303999"], ["https://data.delijn.be/stops/506070", "https://data.delijn.be/stops/506507"], ["https://data.delijn.be/stops/209344", "https://data.delijn.be/stops/209345"], ["https://data.delijn.be/stops/300482", "https://data.delijn.be/stops/300485"], ["https://data.delijn.be/stops/106345", "https://data.delijn.be/stops/109633"], ["https://data.delijn.be/stops/203109", "https://data.delijn.be/stops/205587"], ["https://data.delijn.be/stops/303452", "https://data.delijn.be/stops/307061"], ["https://data.delijn.be/stops/300359", "https://data.delijn.be/stops/304714"], ["https://data.delijn.be/stops/500603", "https://data.delijn.be/stops/501547"], ["https://data.delijn.be/stops/109177", "https://data.delijn.be/stops/109228"], ["https://data.delijn.be/stops/206466", "https://data.delijn.be/stops/206467"], ["https://data.delijn.be/stops/400097", "https://data.delijn.be/stops/401967"], ["https://data.delijn.be/stops/402977", "https://data.delijn.be/stops/404699"], ["https://data.delijn.be/stops/502346", "https://data.delijn.be/stops/505240"], ["https://data.delijn.be/stops/105575", "https://data.delijn.be/stops/105590"], ["https://data.delijn.be/stops/200355", "https://data.delijn.be/stops/211106"], ["https://data.delijn.be/stops/208691", "https://data.delijn.be/stops/208697"], ["https://data.delijn.be/stops/301701", "https://data.delijn.be/stops/307258"], ["https://data.delijn.be/stops/101877", "https://data.delijn.be/stops/109516"], ["https://data.delijn.be/stops/302568", "https://data.delijn.be/stops/308119"], ["https://data.delijn.be/stops/502653", "https://data.delijn.be/stops/507665"], ["https://data.delijn.be/stops/206606", "https://data.delijn.be/stops/206667"], ["https://data.delijn.be/stops/202796", "https://data.delijn.be/stops/202797"], ["https://data.delijn.be/stops/300447", "https://data.delijn.be/stops/300448"], ["https://data.delijn.be/stops/106333", "https://data.delijn.be/stops/109390"], ["https://data.delijn.be/stops/303229", "https://data.delijn.be/stops/304660"], ["https://data.delijn.be/stops/509332", "https://data.delijn.be/stops/509338"], ["https://data.delijn.be/stops/502089", "https://data.delijn.be/stops/502134"], ["https://data.delijn.be/stops/408018", "https://data.delijn.be/stops/408043"], ["https://data.delijn.be/stops/300512", "https://data.delijn.be/stops/300534"], ["https://data.delijn.be/stops/108339", "https://data.delijn.be/stops/109301"], ["https://data.delijn.be/stops/303059", "https://data.delijn.be/stops/303146"], ["https://data.delijn.be/stops/505841", "https://data.delijn.be/stops/509351"], ["https://data.delijn.be/stops/306704", "https://data.delijn.be/stops/307939"], ["https://data.delijn.be/stops/209266", "https://data.delijn.be/stops/209267"], ["https://data.delijn.be/stops/304391", "https://data.delijn.be/stops/304392"], ["https://data.delijn.be/stops/105180", "https://data.delijn.be/stops/105185"], ["https://data.delijn.be/stops/403833", "https://data.delijn.be/stops/405635"], ["https://data.delijn.be/stops/101847", "https://data.delijn.be/stops/106803"], ["https://data.delijn.be/stops/104666", "https://data.delijn.be/stops/104668"], ["https://data.delijn.be/stops/505931", "https://data.delijn.be/stops/505933"], ["https://data.delijn.be/stops/503295", "https://data.delijn.be/stops/505283"], ["https://data.delijn.be/stops/201399", "https://data.delijn.be/stops/202360"], ["https://data.delijn.be/stops/209425", "https://data.delijn.be/stops/209426"], ["https://data.delijn.be/stops/400694", "https://data.delijn.be/stops/400695"], ["https://data.delijn.be/stops/208557", "https://data.delijn.be/stops/209612"], ["https://data.delijn.be/stops/404244", "https://data.delijn.be/stops/409296"], ["https://data.delijn.be/stops/207595", "https://data.delijn.be/stops/209672"], ["https://data.delijn.be/stops/302086", "https://data.delijn.be/stops/302088"], ["https://data.delijn.be/stops/105702", "https://data.delijn.be/stops/106073"], ["https://data.delijn.be/stops/407445", "https://data.delijn.be/stops/410253"], ["https://data.delijn.be/stops/306721", "https://data.delijn.be/stops/306725"], ["https://data.delijn.be/stops/200053", "https://data.delijn.be/stops/210057"], ["https://data.delijn.be/stops/104461", "https://data.delijn.be/stops/104462"], ["https://data.delijn.be/stops/104381", "https://data.delijn.be/stops/104382"], ["https://data.delijn.be/stops/400315", "https://data.delijn.be/stops/400318"], ["https://data.delijn.be/stops/505392", "https://data.delijn.be/stops/508226"], ["https://data.delijn.be/stops/102865", "https://data.delijn.be/stops/104490"], ["https://data.delijn.be/stops/505224", "https://data.delijn.be/stops/509083"], ["https://data.delijn.be/stops/305189", "https://data.delijn.be/stops/306913"], ["https://data.delijn.be/stops/106883", "https://data.delijn.be/stops/106885"], ["https://data.delijn.be/stops/305164", "https://data.delijn.be/stops/306915"], ["https://data.delijn.be/stops/108244", "https://data.delijn.be/stops/108247"], ["https://data.delijn.be/stops/301932", "https://data.delijn.be/stops/305806"], ["https://data.delijn.be/stops/400733", "https://data.delijn.be/stops/400781"], ["https://data.delijn.be/stops/503782", "https://data.delijn.be/stops/508782"], ["https://data.delijn.be/stops/508405", "https://data.delijn.be/stops/509939"], ["https://data.delijn.be/stops/504617", "https://data.delijn.be/stops/509617"], ["https://data.delijn.be/stops/501640", "https://data.delijn.be/stops/506149"], ["https://data.delijn.be/stops/304114", "https://data.delijn.be/stops/304115"], ["https://data.delijn.be/stops/400756", "https://data.delijn.be/stops/400757"], ["https://data.delijn.be/stops/302665", "https://data.delijn.be/stops/302700"], ["https://data.delijn.be/stops/501138", "https://data.delijn.be/stops/506138"], ["https://data.delijn.be/stops/102859", "https://data.delijn.be/stops/204626"], ["https://data.delijn.be/stops/401161", "https://data.delijn.be/stops/408119"], ["https://data.delijn.be/stops/404179", "https://data.delijn.be/stops/404188"], ["https://data.delijn.be/stops/205638", "https://data.delijn.be/stops/205639"], ["https://data.delijn.be/stops/208515", "https://data.delijn.be/stops/209681"], ["https://data.delijn.be/stops/305134", "https://data.delijn.be/stops/305135"], ["https://data.delijn.be/stops/101079", "https://data.delijn.be/stops/107152"], ["https://data.delijn.be/stops/502206", "https://data.delijn.be/stops/507219"], ["https://data.delijn.be/stops/307304", "https://data.delijn.be/stops/307306"], ["https://data.delijn.be/stops/104407", "https://data.delijn.be/stops/104408"], ["https://data.delijn.be/stops/106479", "https://data.delijn.be/stops/106481"], ["https://data.delijn.be/stops/103078", "https://data.delijn.be/stops/105024"], ["https://data.delijn.be/stops/106251", "https://data.delijn.be/stops/106682"], ["https://data.delijn.be/stops/506022", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/103101", "https://data.delijn.be/stops/105853"], ["https://data.delijn.be/stops/306590", "https://data.delijn.be/stops/308441"], ["https://data.delijn.be/stops/308428", "https://data.delijn.be/stops/308430"], ["https://data.delijn.be/stops/200495", "https://data.delijn.be/stops/201660"], ["https://data.delijn.be/stops/107349", "https://data.delijn.be/stops/108173"], ["https://data.delijn.be/stops/504232", "https://data.delijn.be/stops/504235"], ["https://data.delijn.be/stops/105472", "https://data.delijn.be/stops/109935"], ["https://data.delijn.be/stops/106702", "https://data.delijn.be/stops/108017"], ["https://data.delijn.be/stops/108471", "https://data.delijn.be/stops/306603"], ["https://data.delijn.be/stops/501614", "https://data.delijn.be/stops/506614"], ["https://data.delijn.be/stops/400451", "https://data.delijn.be/stops/400478"], ["https://data.delijn.be/stops/406680", "https://data.delijn.be/stops/406706"], ["https://data.delijn.be/stops/502449", "https://data.delijn.be/stops/507589"], ["https://data.delijn.be/stops/208458", "https://data.delijn.be/stops/209458"], ["https://data.delijn.be/stops/409454", "https://data.delijn.be/stops/409485"], ["https://data.delijn.be/stops/206614", "https://data.delijn.be/stops/206717"], ["https://data.delijn.be/stops/302801", "https://data.delijn.be/stops/307835"], ["https://data.delijn.be/stops/402805", "https://data.delijn.be/stops/406035"], ["https://data.delijn.be/stops/503865", "https://data.delijn.be/stops/505640"], ["https://data.delijn.be/stops/206722", "https://data.delijn.be/stops/207142"], ["https://data.delijn.be/stops/408625", "https://data.delijn.be/stops/410249"], ["https://data.delijn.be/stops/208349", "https://data.delijn.be/stops/209349"], ["https://data.delijn.be/stops/509230", "https://data.delijn.be/stops/509233"], ["https://data.delijn.be/stops/109128", "https://data.delijn.be/stops/109131"], ["https://data.delijn.be/stops/301078", "https://data.delijn.be/stops/308818"], ["https://data.delijn.be/stops/208294", "https://data.delijn.be/stops/209294"], ["https://data.delijn.be/stops/103860", "https://data.delijn.be/stops/204609"], ["https://data.delijn.be/stops/505423", "https://data.delijn.be/stops/509145"], ["https://data.delijn.be/stops/108178", "https://data.delijn.be/stops/108179"], ["https://data.delijn.be/stops/301727", "https://data.delijn.be/stops/301739"], ["https://data.delijn.be/stops/407049", "https://data.delijn.be/stops/407079"], ["https://data.delijn.be/stops/407307", "https://data.delijn.be/stops/407398"], ["https://data.delijn.be/stops/207669", "https://data.delijn.be/stops/208505"], ["https://data.delijn.be/stops/503054", "https://data.delijn.be/stops/509847"], ["https://data.delijn.be/stops/404544", "https://data.delijn.be/stops/404573"], ["https://data.delijn.be/stops/301698", "https://data.delijn.be/stops/301761"], ["https://data.delijn.be/stops/502323", "https://data.delijn.be/stops/507336"], ["https://data.delijn.be/stops/206206", "https://data.delijn.be/stops/207206"], ["https://data.delijn.be/stops/206699", "https://data.delijn.be/stops/207365"], ["https://data.delijn.be/stops/108326", "https://data.delijn.be/stops/108327"], ["https://data.delijn.be/stops/104019", "https://data.delijn.be/stops/104022"], ["https://data.delijn.be/stops/407061", "https://data.delijn.be/stops/407075"], ["https://data.delijn.be/stops/304022", "https://data.delijn.be/stops/305449"], ["https://data.delijn.be/stops/305049", "https://data.delijn.be/stops/305085"], ["https://data.delijn.be/stops/105606", "https://data.delijn.be/stops/105608"], ["https://data.delijn.be/stops/402730", "https://data.delijn.be/stops/410056"], ["https://data.delijn.be/stops/106969", "https://data.delijn.be/stops/106983"], ["https://data.delijn.be/stops/505082", "https://data.delijn.be/stops/505668"], ["https://data.delijn.be/stops/503364", "https://data.delijn.be/stops/508706"], ["https://data.delijn.be/stops/400398", "https://data.delijn.be/stops/400399"], ["https://data.delijn.be/stops/107058", "https://data.delijn.be/stops/108227"], ["https://data.delijn.be/stops/406206", "https://data.delijn.be/stops/406268"], ["https://data.delijn.be/stops/209062", "https://data.delijn.be/stops/209511"], ["https://data.delijn.be/stops/203407", "https://data.delijn.be/stops/211032"], ["https://data.delijn.be/stops/101909", "https://data.delijn.be/stops/107880"], ["https://data.delijn.be/stops/204437", "https://data.delijn.be/stops/205746"], ["https://data.delijn.be/stops/307227", "https://data.delijn.be/stops/307913"], ["https://data.delijn.be/stops/105691", "https://data.delijn.be/stops/105693"], ["https://data.delijn.be/stops/301003", "https://data.delijn.be/stops/307043"], ["https://data.delijn.be/stops/405367", "https://data.delijn.be/stops/405372"], ["https://data.delijn.be/stops/207352", "https://data.delijn.be/stops/207916"], ["https://data.delijn.be/stops/200903", "https://data.delijn.be/stops/201957"], ["https://data.delijn.be/stops/307358", "https://data.delijn.be/stops/307360"], ["https://data.delijn.be/stops/507604", "https://data.delijn.be/stops/507680"], ["https://data.delijn.be/stops/503798", "https://data.delijn.be/stops/508794"], ["https://data.delijn.be/stops/408612", "https://data.delijn.be/stops/408613"], ["https://data.delijn.be/stops/302673", "https://data.delijn.be/stops/302674"], ["https://data.delijn.be/stops/308158", "https://data.delijn.be/stops/308160"], ["https://data.delijn.be/stops/105993", "https://data.delijn.be/stops/105998"], ["https://data.delijn.be/stops/400171", "https://data.delijn.be/stops/406977"], ["https://data.delijn.be/stops/200880", "https://data.delijn.be/stops/201884"], ["https://data.delijn.be/stops/300073", "https://data.delijn.be/stops/304676"], ["https://data.delijn.be/stops/404969", "https://data.delijn.be/stops/404972"], ["https://data.delijn.be/stops/301319", "https://data.delijn.be/stops/301913"], ["https://data.delijn.be/stops/105666", "https://data.delijn.be/stops/105669"], ["https://data.delijn.be/stops/303554", "https://data.delijn.be/stops/303568"], ["https://data.delijn.be/stops/300023", "https://data.delijn.be/stops/300024"], ["https://data.delijn.be/stops/401987", "https://data.delijn.be/stops/402024"], ["https://data.delijn.be/stops/408656", "https://data.delijn.be/stops/408662"], ["https://data.delijn.be/stops/202111", "https://data.delijn.be/stops/205584"], ["https://data.delijn.be/stops/106595", "https://data.delijn.be/stops/107241"], ["https://data.delijn.be/stops/401561", "https://data.delijn.be/stops/407348"], ["https://data.delijn.be/stops/507766", "https://data.delijn.be/stops/508023"], ["https://data.delijn.be/stops/202585", "https://data.delijn.be/stops/211076"], ["https://data.delijn.be/stops/206374", "https://data.delijn.be/stops/207689"], ["https://data.delijn.be/stops/208485", "https://data.delijn.be/stops/209658"], ["https://data.delijn.be/stops/303889", "https://data.delijn.be/stops/306062"], ["https://data.delijn.be/stops/502697", "https://data.delijn.be/stops/507704"], ["https://data.delijn.be/stops/200435", "https://data.delijn.be/stops/201435"], ["https://data.delijn.be/stops/403902", "https://data.delijn.be/stops/403903"], ["https://data.delijn.be/stops/300653", "https://data.delijn.be/stops/302473"], ["https://data.delijn.be/stops/200919", "https://data.delijn.be/stops/202138"], ["https://data.delijn.be/stops/302766", "https://data.delijn.be/stops/306553"], ["https://data.delijn.be/stops/206212", "https://data.delijn.be/stops/207212"], ["https://data.delijn.be/stops/503100", "https://data.delijn.be/stops/503348"], ["https://data.delijn.be/stops/303867", "https://data.delijn.be/stops/303870"], ["https://data.delijn.be/stops/305613", "https://data.delijn.be/stops/306765"], ["https://data.delijn.be/stops/109032", "https://data.delijn.be/stops/109034"], ["https://data.delijn.be/stops/108290", "https://data.delijn.be/stops/108295"], ["https://data.delijn.be/stops/102092", "https://data.delijn.be/stops/109750"], ["https://data.delijn.be/stops/303349", "https://data.delijn.be/stops/303369"], ["https://data.delijn.be/stops/305041", "https://data.delijn.be/stops/307849"], ["https://data.delijn.be/stops/404854", "https://data.delijn.be/stops/404895"], ["https://data.delijn.be/stops/400141", "https://data.delijn.be/stops/406362"], ["https://data.delijn.be/stops/509221", "https://data.delijn.be/stops/509222"], ["https://data.delijn.be/stops/301208", "https://data.delijn.be/stops/303617"], ["https://data.delijn.be/stops/202355", "https://data.delijn.be/stops/203648"], ["https://data.delijn.be/stops/107201", "https://data.delijn.be/stops/410162"], ["https://data.delijn.be/stops/401842", "https://data.delijn.be/stops/401854"], ["https://data.delijn.be/stops/409081", "https://data.delijn.be/stops/409123"], ["https://data.delijn.be/stops/216018", "https://data.delijn.be/stops/306730"], ["https://data.delijn.be/stops/206714", "https://data.delijn.be/stops/206719"], ["https://data.delijn.be/stops/304521", "https://data.delijn.be/stops/304806"], ["https://data.delijn.be/stops/303283", "https://data.delijn.be/stops/303291"], ["https://data.delijn.be/stops/404572", "https://data.delijn.be/stops/406763"], ["https://data.delijn.be/stops/200118", "https://data.delijn.be/stops/200815"], ["https://data.delijn.be/stops/505245", "https://data.delijn.be/stops/505315"], ["https://data.delijn.be/stops/405869", "https://data.delijn.be/stops/409412"], ["https://data.delijn.be/stops/301306", "https://data.delijn.be/stops/306256"], ["https://data.delijn.be/stops/405089", "https://data.delijn.be/stops/406547"], ["https://data.delijn.be/stops/104036", "https://data.delijn.be/stops/108086"], ["https://data.delijn.be/stops/304420", "https://data.delijn.be/stops/304424"], ["https://data.delijn.be/stops/503969", "https://data.delijn.be/stops/508969"], ["https://data.delijn.be/stops/200525", "https://data.delijn.be/stops/201595"], ["https://data.delijn.be/stops/504648", "https://data.delijn.be/stops/505101"], ["https://data.delijn.be/stops/502493", "https://data.delijn.be/stops/502516"], ["https://data.delijn.be/stops/406161", "https://data.delijn.be/stops/406287"], ["https://data.delijn.be/stops/102073", "https://data.delijn.be/stops/109714"], ["https://data.delijn.be/stops/400137", "https://data.delijn.be/stops/400138"], ["https://data.delijn.be/stops/505549", "https://data.delijn.be/stops/508312"], ["https://data.delijn.be/stops/107512", "https://data.delijn.be/stops/107516"], ["https://data.delijn.be/stops/108784", "https://data.delijn.be/stops/108786"], ["https://data.delijn.be/stops/200812", "https://data.delijn.be/stops/202053"], ["https://data.delijn.be/stops/405789", "https://data.delijn.be/stops/405885"], ["https://data.delijn.be/stops/202303", "https://data.delijn.be/stops/202324"], ["https://data.delijn.be/stops/404141", "https://data.delijn.be/stops/405913"], ["https://data.delijn.be/stops/504396", "https://data.delijn.be/stops/509661"], ["https://data.delijn.be/stops/103712", "https://data.delijn.be/stops/103752"], ["https://data.delijn.be/stops/102309", "https://data.delijn.be/stops/105569"], ["https://data.delijn.be/stops/204779", "https://data.delijn.be/stops/205779"], ["https://data.delijn.be/stops/503877", "https://data.delijn.be/stops/508167"], ["https://data.delijn.be/stops/102200", "https://data.delijn.be/stops/103995"], ["https://data.delijn.be/stops/402200", "https://data.delijn.be/stops/402398"], ["https://data.delijn.be/stops/300186", "https://data.delijn.be/stops/300209"], ["https://data.delijn.be/stops/505831", "https://data.delijn.be/stops/508013"], ["https://data.delijn.be/stops/108683", "https://data.delijn.be/stops/108829"], ["https://data.delijn.be/stops/200503", "https://data.delijn.be/stops/201553"], ["https://data.delijn.be/stops/402261", "https://data.delijn.be/stops/409631"], ["https://data.delijn.be/stops/404729", "https://data.delijn.be/stops/406991"], ["https://data.delijn.be/stops/401212", "https://data.delijn.be/stops/401257"], ["https://data.delijn.be/stops/404465", "https://data.delijn.be/stops/404548"], ["https://data.delijn.be/stops/307964", "https://data.delijn.be/stops/307965"], ["https://data.delijn.be/stops/208116", "https://data.delijn.be/stops/208796"], ["https://data.delijn.be/stops/405765", "https://data.delijn.be/stops/405820"], ["https://data.delijn.be/stops/408284", "https://data.delijn.be/stops/408345"], ["https://data.delijn.be/stops/400801", "https://data.delijn.be/stops/403572"], ["https://data.delijn.be/stops/403934", "https://data.delijn.be/stops/403983"], ["https://data.delijn.be/stops/303066", "https://data.delijn.be/stops/303183"], ["https://data.delijn.be/stops/200494", "https://data.delijn.be/stops/200631"], ["https://data.delijn.be/stops/101865", "https://data.delijn.be/stops/104340"], ["https://data.delijn.be/stops/104110", "https://data.delijn.be/stops/104115"], ["https://data.delijn.be/stops/104102", "https://data.delijn.be/stops/108290"], ["https://data.delijn.be/stops/107986", "https://data.delijn.be/stops/308483"], ["https://data.delijn.be/stops/403933", "https://data.delijn.be/stops/403986"], ["https://data.delijn.be/stops/204508", "https://data.delijn.be/stops/205489"], ["https://data.delijn.be/stops/408006", "https://data.delijn.be/stops/408013"], ["https://data.delijn.be/stops/102915", "https://data.delijn.be/stops/103343"], ["https://data.delijn.be/stops/302348", "https://data.delijn.be/stops/302750"], ["https://data.delijn.be/stops/206483", "https://data.delijn.be/stops/207483"], ["https://data.delijn.be/stops/305182", "https://data.delijn.be/stops/308049"], ["https://data.delijn.be/stops/410085", "https://data.delijn.be/stops/410086"], ["https://data.delijn.be/stops/208549", "https://data.delijn.be/stops/208551"], ["https://data.delijn.be/stops/210097", "https://data.delijn.be/stops/211097"], ["https://data.delijn.be/stops/303754", "https://data.delijn.be/stops/303755"], ["https://data.delijn.be/stops/506429", "https://data.delijn.be/stops/506433"], ["https://data.delijn.be/stops/206483", "https://data.delijn.be/stops/206860"], ["https://data.delijn.be/stops/507269", "https://data.delijn.be/stops/507272"], ["https://data.delijn.be/stops/204142", "https://data.delijn.be/stops/205142"], ["https://data.delijn.be/stops/400556", "https://data.delijn.be/stops/404278"], ["https://data.delijn.be/stops/201868", "https://data.delijn.be/stops/202017"], ["https://data.delijn.be/stops/503369", "https://data.delijn.be/stops/510024"], ["https://data.delijn.be/stops/501048", "https://data.delijn.be/stops/501538"], ["https://data.delijn.be/stops/104825", "https://data.delijn.be/stops/104860"], ["https://data.delijn.be/stops/505829", "https://data.delijn.be/stops/509268"], ["https://data.delijn.be/stops/400816", "https://data.delijn.be/stops/409647"], ["https://data.delijn.be/stops/109711", "https://data.delijn.be/stops/109721"], ["https://data.delijn.be/stops/407089", "https://data.delijn.be/stops/407259"], ["https://data.delijn.be/stops/405505", "https://data.delijn.be/stops/407718"], ["https://data.delijn.be/stops/208058", "https://data.delijn.be/stops/209058"], ["https://data.delijn.be/stops/102882", "https://data.delijn.be/stops/108153"], ["https://data.delijn.be/stops/405206", "https://data.delijn.be/stops/405218"], ["https://data.delijn.be/stops/406330", "https://data.delijn.be/stops/406331"], ["https://data.delijn.be/stops/201327", "https://data.delijn.be/stops/202765"], ["https://data.delijn.be/stops/308227", "https://data.delijn.be/stops/308230"], ["https://data.delijn.be/stops/300329", "https://data.delijn.be/stops/300338"], ["https://data.delijn.be/stops/300734", "https://data.delijn.be/stops/302607"], ["https://data.delijn.be/stops/206542", "https://data.delijn.be/stops/206563"], ["https://data.delijn.be/stops/405643", "https://data.delijn.be/stops/405644"], ["https://data.delijn.be/stops/403084", "https://data.delijn.be/stops/403437"], ["https://data.delijn.be/stops/203823", "https://data.delijn.be/stops/209240"], ["https://data.delijn.be/stops/101428", "https://data.delijn.be/stops/101429"], ["https://data.delijn.be/stops/407001", "https://data.delijn.be/stops/408196"], ["https://data.delijn.be/stops/306552", "https://data.delijn.be/stops/306553"], ["https://data.delijn.be/stops/408024", "https://data.delijn.be/stops/301841"], ["https://data.delijn.be/stops/206119", "https://data.delijn.be/stops/207119"], ["https://data.delijn.be/stops/204704", "https://data.delijn.be/stops/205704"], ["https://data.delijn.be/stops/202204", "https://data.delijn.be/stops/202205"], ["https://data.delijn.be/stops/101884", "https://data.delijn.be/stops/104559"], ["https://data.delijn.be/stops/206576", "https://data.delijn.be/stops/207577"], ["https://data.delijn.be/stops/409387", "https://data.delijn.be/stops/409398"], ["https://data.delijn.be/stops/501606", "https://data.delijn.be/stops/501716"], ["https://data.delijn.be/stops/208198", "https://data.delijn.be/stops/208199"], ["https://data.delijn.be/stops/105966", "https://data.delijn.be/stops/108945"], ["https://data.delijn.be/stops/206534", "https://data.delijn.be/stops/206547"], ["https://data.delijn.be/stops/203851", "https://data.delijn.be/stops/203853"], ["https://data.delijn.be/stops/208169", "https://data.delijn.be/stops/209169"], ["https://data.delijn.be/stops/104096", "https://data.delijn.be/stops/107860"], ["https://data.delijn.be/stops/204059", "https://data.delijn.be/stops/205058"], ["https://data.delijn.be/stops/202579", "https://data.delijn.be/stops/202581"], ["https://data.delijn.be/stops/302143", "https://data.delijn.be/stops/307527"], ["https://data.delijn.be/stops/509143", "https://data.delijn.be/stops/509144"], ["https://data.delijn.be/stops/501502", "https://data.delijn.be/stops/506501"], ["https://data.delijn.be/stops/503726", "https://data.delijn.be/stops/504967"], ["https://data.delijn.be/stops/207865", "https://data.delijn.be/stops/208385"], ["https://data.delijn.be/stops/105464", "https://data.delijn.be/stops/105466"], ["https://data.delijn.be/stops/504406", "https://data.delijn.be/stops/504433"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/307110"], ["https://data.delijn.be/stops/504661", "https://data.delijn.be/stops/509661"], ["https://data.delijn.be/stops/400404", "https://data.delijn.be/stops/406866"], ["https://data.delijn.be/stops/204912", "https://data.delijn.be/stops/205914"], ["https://data.delijn.be/stops/201152", "https://data.delijn.be/stops/202358"], ["https://data.delijn.be/stops/102713", "https://data.delijn.be/stops/102714"], ["https://data.delijn.be/stops/407580", "https://data.delijn.be/stops/409291"], ["https://data.delijn.be/stops/301408", "https://data.delijn.be/stops/301411"], ["https://data.delijn.be/stops/307336", "https://data.delijn.be/stops/308833"], ["https://data.delijn.be/stops/504050", "https://data.delijn.be/stops/505410"], ["https://data.delijn.be/stops/202319", "https://data.delijn.be/stops/203320"], ["https://data.delijn.be/stops/107355", "https://data.delijn.be/stops/108160"], ["https://data.delijn.be/stops/101943", "https://data.delijn.be/stops/108316"], ["https://data.delijn.be/stops/306920", "https://data.delijn.be/stops/306921"], ["https://data.delijn.be/stops/203035", "https://data.delijn.be/stops/203986"], ["https://data.delijn.be/stops/205183", "https://data.delijn.be/stops/205184"], ["https://data.delijn.be/stops/206878", "https://data.delijn.be/stops/207039"], ["https://data.delijn.be/stops/501007", "https://data.delijn.be/stops/503744"], ["https://data.delijn.be/stops/300416", "https://data.delijn.be/stops/301264"], ["https://data.delijn.be/stops/300935", "https://data.delijn.be/stops/300982"], ["https://data.delijn.be/stops/406675", "https://data.delijn.be/stops/406677"], ["https://data.delijn.be/stops/102471", "https://data.delijn.be/stops/400359"], ["https://data.delijn.be/stops/506415", "https://data.delijn.be/stops/506475"], ["https://data.delijn.be/stops/302310", "https://data.delijn.be/stops/304009"], ["https://data.delijn.be/stops/507490", "https://data.delijn.be/stops/507740"], ["https://data.delijn.be/stops/403066", "https://data.delijn.be/stops/410329"], ["https://data.delijn.be/stops/102997", "https://data.delijn.be/stops/109454"], ["https://data.delijn.be/stops/402972", "https://data.delijn.be/stops/404699"], ["https://data.delijn.be/stops/303195", "https://data.delijn.be/stops/303214"], ["https://data.delijn.be/stops/305195", "https://data.delijn.be/stops/305197"], ["https://data.delijn.be/stops/202232", "https://data.delijn.be/stops/203232"], ["https://data.delijn.be/stops/208274", "https://data.delijn.be/stops/209276"], ["https://data.delijn.be/stops/403405", "https://data.delijn.be/stops/403406"], ["https://data.delijn.be/stops/308162", "https://data.delijn.be/stops/308163"], ["https://data.delijn.be/stops/107056", "https://data.delijn.be/stops/107057"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/107147"], ["https://data.delijn.be/stops/206769", "https://data.delijn.be/stops/209037"], ["https://data.delijn.be/stops/404403", "https://data.delijn.be/stops/404411"], ["https://data.delijn.be/stops/106082", "https://data.delijn.be/stops/106083"], ["https://data.delijn.be/stops/402140", "https://data.delijn.be/stops/402141"], ["https://data.delijn.be/stops/503772", "https://data.delijn.be/stops/504318"], ["https://data.delijn.be/stops/403169", "https://data.delijn.be/stops/403863"], ["https://data.delijn.be/stops/108055", "https://data.delijn.be/stops/108060"], ["https://data.delijn.be/stops/206618", "https://data.delijn.be/stops/207618"], ["https://data.delijn.be/stops/308594", "https://data.delijn.be/stops/308595"], ["https://data.delijn.be/stops/503539", "https://data.delijn.be/stops/503993"], ["https://data.delijn.be/stops/107353", "https://data.delijn.be/stops/107354"], ["https://data.delijn.be/stops/506027", "https://data.delijn.be/stops/506037"], ["https://data.delijn.be/stops/404702", "https://data.delijn.be/stops/404703"], ["https://data.delijn.be/stops/404260", "https://data.delijn.be/stops/404263"], ["https://data.delijn.be/stops/305717", "https://data.delijn.be/stops/306053"], ["https://data.delijn.be/stops/407291", "https://data.delijn.be/stops/408131"], ["https://data.delijn.be/stops/406717", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/206600", "https://data.delijn.be/stops/207601"], ["https://data.delijn.be/stops/304260", "https://data.delijn.be/stops/306662"], ["https://data.delijn.be/stops/403443", "https://data.delijn.be/stops/403479"], ["https://data.delijn.be/stops/102881", "https://data.delijn.be/stops/104771"], ["https://data.delijn.be/stops/300896", "https://data.delijn.be/stops/306283"], ["https://data.delijn.be/stops/109000", "https://data.delijn.be/stops/109001"], ["https://data.delijn.be/stops/201408", "https://data.delijn.be/stops/201409"], ["https://data.delijn.be/stops/405433", "https://data.delijn.be/stops/406733"], ["https://data.delijn.be/stops/208014", "https://data.delijn.be/stops/208027"], ["https://data.delijn.be/stops/206158", "https://data.delijn.be/stops/207498"], ["https://data.delijn.be/stops/108638", "https://data.delijn.be/stops/109686"], ["https://data.delijn.be/stops/304764", "https://data.delijn.be/stops/304773"], ["https://data.delijn.be/stops/202524", "https://data.delijn.be/stops/203518"], ["https://data.delijn.be/stops/404971", "https://data.delijn.be/stops/404977"], ["https://data.delijn.be/stops/507212", "https://data.delijn.be/stops/507583"], ["https://data.delijn.be/stops/407844", "https://data.delijn.be/stops/407845"], ["https://data.delijn.be/stops/206631", "https://data.delijn.be/stops/207631"], ["https://data.delijn.be/stops/502457", "https://data.delijn.be/stops/505508"], ["https://data.delijn.be/stops/505318", "https://data.delijn.be/stops/509891"], ["https://data.delijn.be/stops/504077", "https://data.delijn.be/stops/509072"], ["https://data.delijn.be/stops/207306", "https://data.delijn.be/stops/207308"], ["https://data.delijn.be/stops/503011", "https://data.delijn.be/stops/503013"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/501213"], ["https://data.delijn.be/stops/505812", "https://data.delijn.be/stops/507345"], ["https://data.delijn.be/stops/202957", "https://data.delijn.be/stops/203957"], ["https://data.delijn.be/stops/503493", "https://data.delijn.be/stops/505138"], ["https://data.delijn.be/stops/406118", "https://data.delijn.be/stops/406127"], ["https://data.delijn.be/stops/305555", "https://data.delijn.be/stops/305578"], ["https://data.delijn.be/stops/302629", "https://data.delijn.be/stops/308114"], ["https://data.delijn.be/stops/105982", "https://data.delijn.be/stops/105983"], ["https://data.delijn.be/stops/400255", "https://data.delijn.be/stops/400257"], ["https://data.delijn.be/stops/409073", "https://data.delijn.be/stops/409154"], ["https://data.delijn.be/stops/409578", "https://data.delijn.be/stops/409579"], ["https://data.delijn.be/stops/200564", "https://data.delijn.be/stops/200565"], ["https://data.delijn.be/stops/102162", "https://data.delijn.be/stops/103415"], ["https://data.delijn.be/stops/302423", "https://data.delijn.be/stops/302437"], ["https://data.delijn.be/stops/405813", "https://data.delijn.be/stops/406880"], ["https://data.delijn.be/stops/304723", "https://data.delijn.be/stops/304735"], ["https://data.delijn.be/stops/501306", "https://data.delijn.be/stops/506315"], ["https://data.delijn.be/stops/206510", "https://data.delijn.be/stops/207510"], ["https://data.delijn.be/stops/306966", "https://data.delijn.be/stops/306967"], ["https://data.delijn.be/stops/101094", "https://data.delijn.be/stops/107955"], ["https://data.delijn.be/stops/304006", "https://data.delijn.be/stops/304024"], ["https://data.delijn.be/stops/202679", "https://data.delijn.be/stops/202691"], ["https://data.delijn.be/stops/207730", "https://data.delijn.be/stops/207916"], ["https://data.delijn.be/stops/108608", "https://data.delijn.be/stops/307433"], ["https://data.delijn.be/stops/102645", "https://data.delijn.be/stops/104815"], ["https://data.delijn.be/stops/305611", "https://data.delijn.be/stops/305614"], ["https://data.delijn.be/stops/106558", "https://data.delijn.be/stops/106560"], ["https://data.delijn.be/stops/300360", "https://data.delijn.be/stops/303660"], ["https://data.delijn.be/stops/205272", "https://data.delijn.be/stops/205647"], ["https://data.delijn.be/stops/307893", "https://data.delijn.be/stops/307894"], ["https://data.delijn.be/stops/504159", "https://data.delijn.be/stops/509048"], ["https://data.delijn.be/stops/402773", "https://data.delijn.be/stops/408404"], ["https://data.delijn.be/stops/206463", "https://data.delijn.be/stops/216010"], ["https://data.delijn.be/stops/403758", "https://data.delijn.be/stops/403759"], ["https://data.delijn.be/stops/402692", "https://data.delijn.be/stops/301469"], ["https://data.delijn.be/stops/103525", "https://data.delijn.be/stops/105260"], ["https://data.delijn.be/stops/206596", "https://data.delijn.be/stops/207595"], ["https://data.delijn.be/stops/503315", "https://data.delijn.be/stops/508315"], ["https://data.delijn.be/stops/104481", "https://data.delijn.be/stops/104483"], ["https://data.delijn.be/stops/505327", "https://data.delijn.be/stops/507235"], ["https://data.delijn.be/stops/204394", "https://data.delijn.be/stops/205394"], ["https://data.delijn.be/stops/308448", "https://data.delijn.be/stops/308691"], ["https://data.delijn.be/stops/109724", "https://data.delijn.be/stops/109785"], ["https://data.delijn.be/stops/408798", "https://data.delijn.be/stops/408908"], ["https://data.delijn.be/stops/105207", "https://data.delijn.be/stops/108062"], ["https://data.delijn.be/stops/204055", "https://data.delijn.be/stops/204703"], ["https://data.delijn.be/stops/404607", "https://data.delijn.be/stops/404996"], ["https://data.delijn.be/stops/305100", "https://data.delijn.be/stops/305104"], ["https://data.delijn.be/stops/300438", "https://data.delijn.be/stops/302702"], ["https://data.delijn.be/stops/208068", "https://data.delijn.be/stops/209194"], ["https://data.delijn.be/stops/210075", "https://data.delijn.be/stops/211075"], ["https://data.delijn.be/stops/101776", "https://data.delijn.be/stops/101777"], ["https://data.delijn.be/stops/304842", "https://data.delijn.be/stops/307065"], ["https://data.delijn.be/stops/400204", "https://data.delijn.be/stops/400207"], ["https://data.delijn.be/stops/108471", "https://data.delijn.be/stops/108483"], ["https://data.delijn.be/stops/500949", "https://data.delijn.be/stops/500954"], ["https://data.delijn.be/stops/201913", "https://data.delijn.be/stops/202469"], ["https://data.delijn.be/stops/403788", "https://data.delijn.be/stops/403789"], ["https://data.delijn.be/stops/505157", "https://data.delijn.be/stops/509875"], ["https://data.delijn.be/stops/200543", "https://data.delijn.be/stops/211105"], ["https://data.delijn.be/stops/404853", "https://data.delijn.be/stops/404878"], ["https://data.delijn.be/stops/301654", "https://data.delijn.be/stops/307756"], ["https://data.delijn.be/stops/202940", "https://data.delijn.be/stops/210053"], ["https://data.delijn.be/stops/300322", "https://data.delijn.be/stops/300334"], ["https://data.delijn.be/stops/305228", "https://data.delijn.be/stops/305296"], ["https://data.delijn.be/stops/105292", "https://data.delijn.be/stops/105387"], ["https://data.delijn.be/stops/305225", "https://data.delijn.be/stops/305226"], ["https://data.delijn.be/stops/103981", "https://data.delijn.be/stops/109950"], ["https://data.delijn.be/stops/401603", "https://data.delijn.be/stops/409428"], ["https://data.delijn.be/stops/403065", "https://data.delijn.be/stops/403129"], ["https://data.delijn.be/stops/307413", "https://data.delijn.be/stops/308054"], ["https://data.delijn.be/stops/202257", "https://data.delijn.be/stops/210006"], ["https://data.delijn.be/stops/209269", "https://data.delijn.be/stops/209270"], ["https://data.delijn.be/stops/204428", "https://data.delijn.be/stops/204443"], ["https://data.delijn.be/stops/107475", "https://data.delijn.be/stops/109687"], ["https://data.delijn.be/stops/300461", "https://data.delijn.be/stops/308061"], ["https://data.delijn.be/stops/202246", "https://data.delijn.be/stops/203246"], ["https://data.delijn.be/stops/405102", "https://data.delijn.be/stops/408257"], ["https://data.delijn.be/stops/406571", "https://data.delijn.be/stops/406701"], ["https://data.delijn.be/stops/503432", "https://data.delijn.be/stops/509757"], ["https://data.delijn.be/stops/407050", "https://data.delijn.be/stops/410017"], ["https://data.delijn.be/stops/208174", "https://data.delijn.be/stops/208178"], ["https://data.delijn.be/stops/507498", "https://data.delijn.be/stops/509726"], ["https://data.delijn.be/stops/108678", "https://data.delijn.be/stops/306625"], ["https://data.delijn.be/stops/502588", "https://data.delijn.be/stops/507401"], ["https://data.delijn.be/stops/508556", "https://data.delijn.be/stops/508567"], ["https://data.delijn.be/stops/301384", "https://data.delijn.be/stops/306646"], ["https://data.delijn.be/stops/404545", "https://data.delijn.be/stops/404583"], ["https://data.delijn.be/stops/109248", "https://data.delijn.be/stops/109267"], ["https://data.delijn.be/stops/405958", "https://data.delijn.be/stops/405961"], ["https://data.delijn.be/stops/106815", "https://data.delijn.be/stops/106844"], ["https://data.delijn.be/stops/203548", "https://data.delijn.be/stops/203556"], ["https://data.delijn.be/stops/101912", "https://data.delijn.be/stops/103209"], ["https://data.delijn.be/stops/503563", "https://data.delijn.be/stops/508563"], ["https://data.delijn.be/stops/104652", "https://data.delijn.be/stops/107977"], ["https://data.delijn.be/stops/402659", "https://data.delijn.be/stops/402707"], ["https://data.delijn.be/stops/407379", "https://data.delijn.be/stops/407385"], ["https://data.delijn.be/stops/200460", "https://data.delijn.be/stops/200680"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/202629"], ["https://data.delijn.be/stops/206182", "https://data.delijn.be/stops/206957"], ["https://data.delijn.be/stops/302354", "https://data.delijn.be/stops/302355"], ["https://data.delijn.be/stops/300410", "https://data.delijn.be/stops/307490"], ["https://data.delijn.be/stops/305192", "https://data.delijn.be/stops/305203"], ["https://data.delijn.be/stops/300952", "https://data.delijn.be/stops/300953"], ["https://data.delijn.be/stops/303448", "https://data.delijn.be/stops/303452"], ["https://data.delijn.be/stops/502152", "https://data.delijn.be/stops/502816"], ["https://data.delijn.be/stops/509211", "https://data.delijn.be/stops/509223"], ["https://data.delijn.be/stops/501061", "https://data.delijn.be/stops/506059"], ["https://data.delijn.be/stops/102382", "https://data.delijn.be/stops/102990"], ["https://data.delijn.be/stops/108069", "https://data.delijn.be/stops/108136"], ["https://data.delijn.be/stops/103185", "https://data.delijn.be/stops/103265"], ["https://data.delijn.be/stops/301694", "https://data.delijn.be/stops/303750"], ["https://data.delijn.be/stops/200199", "https://data.delijn.be/stops/202889"], ["https://data.delijn.be/stops/403246", "https://data.delijn.be/stops/403530"], ["https://data.delijn.be/stops/502083", "https://data.delijn.be/stops/502793"], ["https://data.delijn.be/stops/202594", "https://data.delijn.be/stops/202595"], ["https://data.delijn.be/stops/104142", "https://data.delijn.be/stops/305789"], ["https://data.delijn.be/stops/301528", "https://data.delijn.be/stops/301589"], ["https://data.delijn.be/stops/107898", "https://data.delijn.be/stops/107907"], ["https://data.delijn.be/stops/305908", "https://data.delijn.be/stops/305909"], ["https://data.delijn.be/stops/204190", "https://data.delijn.be/stops/204204"], ["https://data.delijn.be/stops/301594", "https://data.delijn.be/stops/302604"], ["https://data.delijn.be/stops/504891", "https://data.delijn.be/stops/505957"], ["https://data.delijn.be/stops/200747", "https://data.delijn.be/stops/203244"], ["https://data.delijn.be/stops/101824", "https://data.delijn.be/stops/102958"], ["https://data.delijn.be/stops/504412", "https://data.delijn.be/stops/504612"], ["https://data.delijn.be/stops/103969", "https://data.delijn.be/stops/104856"], ["https://data.delijn.be/stops/403548", "https://data.delijn.be/stops/405328"], ["https://data.delijn.be/stops/204163", "https://data.delijn.be/stops/206400"], ["https://data.delijn.be/stops/407646", "https://data.delijn.be/stops/407718"], ["https://data.delijn.be/stops/207801", "https://data.delijn.be/stops/217014"], ["https://data.delijn.be/stops/206804", "https://data.delijn.be/stops/208348"], ["https://data.delijn.be/stops/105319", "https://data.delijn.be/stops/109882"], ["https://data.delijn.be/stops/401214", "https://data.delijn.be/stops/401246"], ["https://data.delijn.be/stops/102603", "https://data.delijn.be/stops/107537"], ["https://data.delijn.be/stops/101202", "https://data.delijn.be/stops/104932"], ["https://data.delijn.be/stops/505010", "https://data.delijn.be/stops/505737"], ["https://data.delijn.be/stops/403683", "https://data.delijn.be/stops/405389"], ["https://data.delijn.be/stops/102966", "https://data.delijn.be/stops/109462"], ["https://data.delijn.be/stops/105395", "https://data.delijn.be/stops/105700"], ["https://data.delijn.be/stops/401297", "https://data.delijn.be/stops/401304"], ["https://data.delijn.be/stops/504228", "https://data.delijn.be/stops/509228"], ["https://data.delijn.be/stops/200072", "https://data.delijn.be/stops/211047"], ["https://data.delijn.be/stops/102449", "https://data.delijn.be/stops/107982"], ["https://data.delijn.be/stops/406077", "https://data.delijn.be/stops/407168"], ["https://data.delijn.be/stops/401523", "https://data.delijn.be/stops/401741"], ["https://data.delijn.be/stops/509383", "https://data.delijn.be/stops/509534"], ["https://data.delijn.be/stops/403728", "https://data.delijn.be/stops/406973"], ["https://data.delijn.be/stops/503961", "https://data.delijn.be/stops/509285"], ["https://data.delijn.be/stops/105896", "https://data.delijn.be/stops/105897"], ["https://data.delijn.be/stops/202106", "https://data.delijn.be/stops/202107"], ["https://data.delijn.be/stops/504106", "https://data.delijn.be/stops/504544"], ["https://data.delijn.be/stops/504089", "https://data.delijn.be/stops/505918"], ["https://data.delijn.be/stops/206552", "https://data.delijn.be/stops/206553"], ["https://data.delijn.be/stops/507719", "https://data.delijn.be/stops/508863"], ["https://data.delijn.be/stops/509011", "https://data.delijn.be/stops/509013"], ["https://data.delijn.be/stops/200828", "https://data.delijn.be/stops/200830"], ["https://data.delijn.be/stops/300837", "https://data.delijn.be/stops/301792"], ["https://data.delijn.be/stops/406733", "https://data.delijn.be/stops/408762"], ["https://data.delijn.be/stops/105713", "https://data.delijn.be/stops/105717"], ["https://data.delijn.be/stops/407890", "https://data.delijn.be/stops/407906"], ["https://data.delijn.be/stops/305379", "https://data.delijn.be/stops/305383"], ["https://data.delijn.be/stops/202385", "https://data.delijn.be/stops/203384"], ["https://data.delijn.be/stops/404494", "https://data.delijn.be/stops/406740"], ["https://data.delijn.be/stops/503543", "https://data.delijn.be/stops/508579"], ["https://data.delijn.be/stops/308155", "https://data.delijn.be/stops/308173"], ["https://data.delijn.be/stops/204074", "https://data.delijn.be/stops/204237"], ["https://data.delijn.be/stops/205754", "https://data.delijn.be/stops/205755"], ["https://data.delijn.be/stops/200363", "https://data.delijn.be/stops/201104"], ["https://data.delijn.be/stops/104611", "https://data.delijn.be/stops/105824"], ["https://data.delijn.be/stops/504872", "https://data.delijn.be/stops/508722"], ["https://data.delijn.be/stops/201707", "https://data.delijn.be/stops/201710"], ["https://data.delijn.be/stops/305675", "https://data.delijn.be/stops/305722"], ["https://data.delijn.be/stops/504085", "https://data.delijn.be/stops/505000"], ["https://data.delijn.be/stops/505272", "https://data.delijn.be/stops/508785"], ["https://data.delijn.be/stops/405015", "https://data.delijn.be/stops/408155"], ["https://data.delijn.be/stops/508753", "https://data.delijn.be/stops/508762"], ["https://data.delijn.be/stops/208801", "https://data.delijn.be/stops/209429"], ["https://data.delijn.be/stops/305177", "https://data.delijn.be/stops/305193"], ["https://data.delijn.be/stops/206004", "https://data.delijn.be/stops/207005"], ["https://data.delijn.be/stops/202916", "https://data.delijn.be/stops/203733"], ["https://data.delijn.be/stops/200176", "https://data.delijn.be/stops/201176"], ["https://data.delijn.be/stops/305306", "https://data.delijn.be/stops/305307"], ["https://data.delijn.be/stops/404238", "https://data.delijn.be/stops/405547"], ["https://data.delijn.be/stops/502365", "https://data.delijn.be/stops/507332"], ["https://data.delijn.be/stops/108104", "https://data.delijn.be/stops/108107"], ["https://data.delijn.be/stops/301651", "https://data.delijn.be/stops/301894"], ["https://data.delijn.be/stops/504151", "https://data.delijn.be/stops/504169"], ["https://data.delijn.be/stops/405320", "https://data.delijn.be/stops/405322"], ["https://data.delijn.be/stops/200008", "https://data.delijn.be/stops/201008"], ["https://data.delijn.be/stops/303003", "https://data.delijn.be/stops/303004"], ["https://data.delijn.be/stops/302286", "https://data.delijn.be/stops/302287"], ["https://data.delijn.be/stops/306898", "https://data.delijn.be/stops/306899"], ["https://data.delijn.be/stops/506407", "https://data.delijn.be/stops/506408"], ["https://data.delijn.be/stops/405872", "https://data.delijn.be/stops/409764"], ["https://data.delijn.be/stops/507753", "https://data.delijn.be/stops/507763"], ["https://data.delijn.be/stops/505297", "https://data.delijn.be/stops/508510"], ["https://data.delijn.be/stops/304343", "https://data.delijn.be/stops/304344"], ["https://data.delijn.be/stops/401524", "https://data.delijn.be/stops/402520"], ["https://data.delijn.be/stops/300099", "https://data.delijn.be/stops/307357"], ["https://data.delijn.be/stops/502350", "https://data.delijn.be/stops/505141"], ["https://data.delijn.be/stops/300733", "https://data.delijn.be/stops/300737"], ["https://data.delijn.be/stops/305957", "https://data.delijn.be/stops/305958"], ["https://data.delijn.be/stops/210014", "https://data.delijn.be/stops/502277"], ["https://data.delijn.be/stops/302729", "https://data.delijn.be/stops/305635"], ["https://data.delijn.be/stops/302313", "https://data.delijn.be/stops/306689"], ["https://data.delijn.be/stops/504118", "https://data.delijn.be/stops/509397"], ["https://data.delijn.be/stops/502361", "https://data.delijn.be/stops/502797"], ["https://data.delijn.be/stops/405950", "https://data.delijn.be/stops/405955"], ["https://data.delijn.be/stops/503984", "https://data.delijn.be/stops/509746"], ["https://data.delijn.be/stops/502029", "https://data.delijn.be/stops/507058"], ["https://data.delijn.be/stops/303396", "https://data.delijn.be/stops/307135"], ["https://data.delijn.be/stops/408666", "https://data.delijn.be/stops/408767"], ["https://data.delijn.be/stops/301801", "https://data.delijn.be/stops/301821"], ["https://data.delijn.be/stops/404915", "https://data.delijn.be/stops/404926"], ["https://data.delijn.be/stops/302016", "https://data.delijn.be/stops/308755"], ["https://data.delijn.be/stops/505575", "https://data.delijn.be/stops/507683"], ["https://data.delijn.be/stops/303082", "https://data.delijn.be/stops/307331"], ["https://data.delijn.be/stops/404862", "https://data.delijn.be/stops/404867"], ["https://data.delijn.be/stops/203028", "https://data.delijn.be/stops/203029"], ["https://data.delijn.be/stops/404436", "https://data.delijn.be/stops/404491"], ["https://data.delijn.be/stops/200922", "https://data.delijn.be/stops/200940"], ["https://data.delijn.be/stops/304883", "https://data.delijn.be/stops/307830"], ["https://data.delijn.be/stops/108940", "https://data.delijn.be/stops/109100"], ["https://data.delijn.be/stops/402863", "https://data.delijn.be/stops/408081"], ["https://data.delijn.be/stops/406032", "https://data.delijn.be/stops/406649"], ["https://data.delijn.be/stops/108299", "https://data.delijn.be/stops/109304"], ["https://data.delijn.be/stops/209163", "https://data.delijn.be/stops/219005"], ["https://data.delijn.be/stops/201121", "https://data.delijn.be/stops/203952"], ["https://data.delijn.be/stops/102913", "https://data.delijn.be/stops/106719"], ["https://data.delijn.be/stops/502344", "https://data.delijn.be/stops/505418"], ["https://data.delijn.be/stops/102672", "https://data.delijn.be/stops/106213"], ["https://data.delijn.be/stops/304793", "https://data.delijn.be/stops/304794"], ["https://data.delijn.be/stops/304944", "https://data.delijn.be/stops/304945"], ["https://data.delijn.be/stops/306248", "https://data.delijn.be/stops/306251"], ["https://data.delijn.be/stops/201467", "https://data.delijn.be/stops/203774"], ["https://data.delijn.be/stops/101350", "https://data.delijn.be/stops/101360"], ["https://data.delijn.be/stops/202410", "https://data.delijn.be/stops/203420"], ["https://data.delijn.be/stops/201664", "https://data.delijn.be/stops/201836"], ["https://data.delijn.be/stops/300157", "https://data.delijn.be/stops/308789"], ["https://data.delijn.be/stops/509006", "https://data.delijn.be/stops/509533"], ["https://data.delijn.be/stops/304336", "https://data.delijn.be/stops/304707"], ["https://data.delijn.be/stops/302657", "https://data.delijn.be/stops/303295"], ["https://data.delijn.be/stops/207800", "https://data.delijn.be/stops/208544"], ["https://data.delijn.be/stops/504783", "https://data.delijn.be/stops/505946"], ["https://data.delijn.be/stops/405828", "https://data.delijn.be/stops/405883"], ["https://data.delijn.be/stops/404116", "https://data.delijn.be/stops/404117"], ["https://data.delijn.be/stops/403198", "https://data.delijn.be/stops/403279"], ["https://data.delijn.be/stops/405043", "https://data.delijn.be/stops/405893"], ["https://data.delijn.be/stops/504623", "https://data.delijn.be/stops/504626"], ["https://data.delijn.be/stops/303300", "https://data.delijn.be/stops/305121"], ["https://data.delijn.be/stops/401762", "https://data.delijn.be/stops/401764"], ["https://data.delijn.be/stops/405327", "https://data.delijn.be/stops/405336"], ["https://data.delijn.be/stops/105261", "https://data.delijn.be/stops/105264"], ["https://data.delijn.be/stops/501558", "https://data.delijn.be/stops/501741"], ["https://data.delijn.be/stops/407858", "https://data.delijn.be/stops/408167"], ["https://data.delijn.be/stops/202496", "https://data.delijn.be/stops/203175"], ["https://data.delijn.be/stops/204028", "https://data.delijn.be/stops/204029"], ["https://data.delijn.be/stops/203518", "https://data.delijn.be/stops/203519"], ["https://data.delijn.be/stops/407613", "https://data.delijn.be/stops/407689"], ["https://data.delijn.be/stops/206175", "https://data.delijn.be/stops/206479"], ["https://data.delijn.be/stops/304816", "https://data.delijn.be/stops/304825"], ["https://data.delijn.be/stops/105307", "https://data.delijn.be/stops/105308"], ["https://data.delijn.be/stops/407002", "https://data.delijn.be/stops/407004"], ["https://data.delijn.be/stops/308521", "https://data.delijn.be/stops/308522"], ["https://data.delijn.be/stops/502547", "https://data.delijn.be/stops/505584"], ["https://data.delijn.be/stops/303637", "https://data.delijn.be/stops/307883"], ["https://data.delijn.be/stops/103330", "https://data.delijn.be/stops/104363"], ["https://data.delijn.be/stops/105664", "https://data.delijn.be/stops/109895"], ["https://data.delijn.be/stops/504291", "https://data.delijn.be/stops/509291"], ["https://data.delijn.be/stops/301861", "https://data.delijn.be/stops/305465"], ["https://data.delijn.be/stops/502751", "https://data.delijn.be/stops/502752"], ["https://data.delijn.be/stops/108940", "https://data.delijn.be/stops/109731"], ["https://data.delijn.be/stops/109256", "https://data.delijn.be/stops/109712"], ["https://data.delijn.be/stops/302014", "https://data.delijn.be/stops/307819"], ["https://data.delijn.be/stops/102607", "https://data.delijn.be/stops/105522"], ["https://data.delijn.be/stops/305079", "https://data.delijn.be/stops/306953"], ["https://data.delijn.be/stops/203907", "https://data.delijn.be/stops/219953"], ["https://data.delijn.be/stops/103931", "https://data.delijn.be/stops/104904"], ["https://data.delijn.be/stops/405860", "https://data.delijn.be/stops/409739"], ["https://data.delijn.be/stops/503076", "https://data.delijn.be/stops/503244"], ["https://data.delijn.be/stops/104119", "https://data.delijn.be/stops/104127"], ["https://data.delijn.be/stops/301919", "https://data.delijn.be/stops/301990"], ["https://data.delijn.be/stops/206564", "https://data.delijn.be/stops/207563"], ["https://data.delijn.be/stops/403150", "https://data.delijn.be/stops/407586"], ["https://data.delijn.be/stops/206964", "https://data.delijn.be/stops/207041"], ["https://data.delijn.be/stops/302274", "https://data.delijn.be/stops/302275"], ["https://data.delijn.be/stops/103592", "https://data.delijn.be/stops/109129"], ["https://data.delijn.be/stops/303146", "https://data.delijn.be/stops/303147"], ["https://data.delijn.be/stops/201638", "https://data.delijn.be/stops/203942"], ["https://data.delijn.be/stops/304062", "https://data.delijn.be/stops/304082"], ["https://data.delijn.be/stops/308524", "https://data.delijn.be/stops/308527"], ["https://data.delijn.be/stops/305550", "https://data.delijn.be/stops/305580"], ["https://data.delijn.be/stops/206476", "https://data.delijn.be/stops/207476"], ["https://data.delijn.be/stops/108296", "https://data.delijn.be/stops/109363"], ["https://data.delijn.be/stops/406082", "https://data.delijn.be/stops/406083"], ["https://data.delijn.be/stops/101463", "https://data.delijn.be/stops/101464"], ["https://data.delijn.be/stops/404694", "https://data.delijn.be/stops/407254"], ["https://data.delijn.be/stops/107691", "https://data.delijn.be/stops/107722"], ["https://data.delijn.be/stops/209709", "https://data.delijn.be/stops/218017"], ["https://data.delijn.be/stops/300059", "https://data.delijn.be/stops/306835"], ["https://data.delijn.be/stops/200947", "https://data.delijn.be/stops/203232"], ["https://data.delijn.be/stops/405527", "https://data.delijn.be/stops/407275"], ["https://data.delijn.be/stops/102747", "https://data.delijn.be/stops/107404"], ["https://data.delijn.be/stops/208502", "https://data.delijn.be/stops/209618"], ["https://data.delijn.be/stops/404444", "https://data.delijn.be/stops/404564"], ["https://data.delijn.be/stops/503913", "https://data.delijn.be/stops/508921"], ["https://data.delijn.be/stops/501368", "https://data.delijn.be/stops/506368"], ["https://data.delijn.be/stops/407381", "https://data.delijn.be/stops/407857"], ["https://data.delijn.be/stops/402514", "https://data.delijn.be/stops/402515"], ["https://data.delijn.be/stops/200534", "https://data.delijn.be/stops/210091"], ["https://data.delijn.be/stops/308465", "https://data.delijn.be/stops/308466"], ["https://data.delijn.be/stops/107649", "https://data.delijn.be/stops/108954"], ["https://data.delijn.be/stops/407173", "https://data.delijn.be/stops/410094"], ["https://data.delijn.be/stops/103108", "https://data.delijn.be/stops/105345"], ["https://data.delijn.be/stops/401123", "https://data.delijn.be/stops/409816"], ["https://data.delijn.be/stops/400714", "https://data.delijn.be/stops/400715"], ["https://data.delijn.be/stops/302469", "https://data.delijn.be/stops/306744"], ["https://data.delijn.be/stops/504150", "https://data.delijn.be/stops/505415"], ["https://data.delijn.be/stops/201206", "https://data.delijn.be/stops/201615"], ["https://data.delijn.be/stops/207185", "https://data.delijn.be/stops/207956"], ["https://data.delijn.be/stops/404845", "https://data.delijn.be/stops/409624"], ["https://data.delijn.be/stops/108844", "https://data.delijn.be/stops/108859"], ["https://data.delijn.be/stops/301457", "https://data.delijn.be/stops/301499"], ["https://data.delijn.be/stops/302263", "https://data.delijn.be/stops/303194"], ["https://data.delijn.be/stops/103066", "https://data.delijn.be/stops/106837"], ["https://data.delijn.be/stops/302727", "https://data.delijn.be/stops/308594"], ["https://data.delijn.be/stops/302869", "https://data.delijn.be/stops/302895"], ["https://data.delijn.be/stops/109041", "https://data.delijn.be/stops/109086"], ["https://data.delijn.be/stops/300295", "https://data.delijn.be/stops/300332"], ["https://data.delijn.be/stops/109657", "https://data.delijn.be/stops/406514"], ["https://data.delijn.be/stops/108453", "https://data.delijn.be/stops/108512"], ["https://data.delijn.be/stops/402503", "https://data.delijn.be/stops/402504"], ["https://data.delijn.be/stops/206891", "https://data.delijn.be/stops/206892"], ["https://data.delijn.be/stops/302008", "https://data.delijn.be/stops/306380"], ["https://data.delijn.be/stops/406202", "https://data.delijn.be/stops/410251"], ["https://data.delijn.be/stops/206898", "https://data.delijn.be/stops/207702"], ["https://data.delijn.be/stops/200714", "https://data.delijn.be/stops/201716"], ["https://data.delijn.be/stops/402967", "https://data.delijn.be/stops/402973"], ["https://data.delijn.be/stops/206469", "https://data.delijn.be/stops/206825"], ["https://data.delijn.be/stops/204644", "https://data.delijn.be/stops/204645"], ["https://data.delijn.be/stops/101430", "https://data.delijn.be/stops/103080"], ["https://data.delijn.be/stops/504705", "https://data.delijn.be/stops/509505"], ["https://data.delijn.be/stops/300281", "https://data.delijn.be/stops/300300"], ["https://data.delijn.be/stops/304555", "https://data.delijn.be/stops/304556"], ["https://data.delijn.be/stops/206102", "https://data.delijn.be/stops/207102"], ["https://data.delijn.be/stops/505517", "https://data.delijn.be/stops/505603"], ["https://data.delijn.be/stops/202825", "https://data.delijn.be/stops/211022"], ["https://data.delijn.be/stops/403911", "https://data.delijn.be/stops/403958"], ["https://data.delijn.be/stops/101500", "https://data.delijn.be/stops/308505"], ["https://data.delijn.be/stops/503558", "https://data.delijn.be/stops/503581"], ["https://data.delijn.be/stops/301371", "https://data.delijn.be/stops/308769"], ["https://data.delijn.be/stops/402262", "https://data.delijn.be/stops/402472"], ["https://data.delijn.be/stops/302133", "https://data.delijn.be/stops/302140"], ["https://data.delijn.be/stops/401163", "https://data.delijn.be/stops/401164"], ["https://data.delijn.be/stops/109173", "https://data.delijn.be/stops/109233"], ["https://data.delijn.be/stops/305209", "https://data.delijn.be/stops/306934"], ["https://data.delijn.be/stops/303513", "https://data.delijn.be/stops/303520"], ["https://data.delijn.be/stops/301077", "https://data.delijn.be/stops/301079"], ["https://data.delijn.be/stops/504556", "https://data.delijn.be/stops/506001"], ["https://data.delijn.be/stops/204223", "https://data.delijn.be/stops/204248"], ["https://data.delijn.be/stops/400734", "https://data.delijn.be/stops/403586"], ["https://data.delijn.be/stops/206641", "https://data.delijn.be/stops/206642"], ["https://data.delijn.be/stops/400756", "https://data.delijn.be/stops/407663"], ["https://data.delijn.be/stops/305524", "https://data.delijn.be/stops/307015"], ["https://data.delijn.be/stops/102072", "https://data.delijn.be/stops/106929"], ["https://data.delijn.be/stops/406621", "https://data.delijn.be/stops/406628"], ["https://data.delijn.be/stops/503381", "https://data.delijn.be/stops/509788"], ["https://data.delijn.be/stops/303070", "https://data.delijn.be/stops/303071"], ["https://data.delijn.be/stops/507812", "https://data.delijn.be/stops/508002"], ["https://data.delijn.be/stops/104028", "https://data.delijn.be/stops/107314"], ["https://data.delijn.be/stops/404359", "https://data.delijn.be/stops/404893"], ["https://data.delijn.be/stops/202348", "https://data.delijn.be/stops/203348"], ["https://data.delijn.be/stops/107642", "https://data.delijn.be/stops/305625"], ["https://data.delijn.be/stops/201288", "https://data.delijn.be/stops/201344"], ["https://data.delijn.be/stops/403001", "https://data.delijn.be/stops/403289"], ["https://data.delijn.be/stops/209724", "https://data.delijn.be/stops/211048"], ["https://data.delijn.be/stops/400761", "https://data.delijn.be/stops/400804"], ["https://data.delijn.be/stops/206512", "https://data.delijn.be/stops/206847"], ["https://data.delijn.be/stops/504249", "https://data.delijn.be/stops/504483"], ["https://data.delijn.be/stops/201011", "https://data.delijn.be/stops/210021"], ["https://data.delijn.be/stops/301154", "https://data.delijn.be/stops/301156"], ["https://data.delijn.be/stops/106393", "https://data.delijn.be/stops/109134"], ["https://data.delijn.be/stops/101666", "https://data.delijn.be/stops/106490"], ["https://data.delijn.be/stops/204830", "https://data.delijn.be/stops/205830"], ["https://data.delijn.be/stops/408530", "https://data.delijn.be/stops/408734"], ["https://data.delijn.be/stops/201014", "https://data.delijn.be/stops/201351"], ["https://data.delijn.be/stops/102431", "https://data.delijn.be/stops/109097"], ["https://data.delijn.be/stops/208546", "https://data.delijn.be/stops/208612"], ["https://data.delijn.be/stops/200171", "https://data.delijn.be/stops/201172"], ["https://data.delijn.be/stops/101426", "https://data.delijn.be/stops/106959"], ["https://data.delijn.be/stops/504881", "https://data.delijn.be/stops/507186"], ["https://data.delijn.be/stops/108656", "https://data.delijn.be/stops/108657"], ["https://data.delijn.be/stops/103609", "https://data.delijn.be/stops/106029"], ["https://data.delijn.be/stops/405660", "https://data.delijn.be/stops/306281"], ["https://data.delijn.be/stops/301772", "https://data.delijn.be/stops/301786"], ["https://data.delijn.be/stops/201917", "https://data.delijn.be/stops/206834"], ["https://data.delijn.be/stops/109178", "https://data.delijn.be/stops/109227"], ["https://data.delijn.be/stops/400327", "https://data.delijn.be/stops/406769"], ["https://data.delijn.be/stops/101418", "https://data.delijn.be/stops/101426"], ["https://data.delijn.be/stops/402044", "https://data.delijn.be/stops/402456"], ["https://data.delijn.be/stops/208767", "https://data.delijn.be/stops/505275"], ["https://data.delijn.be/stops/201706", "https://data.delijn.be/stops/203444"], ["https://data.delijn.be/stops/206752", "https://data.delijn.be/stops/209456"], ["https://data.delijn.be/stops/401243", "https://data.delijn.be/stops/401330"], ["https://data.delijn.be/stops/106257", "https://data.delijn.be/stops/106259"], ["https://data.delijn.be/stops/101460", "https://data.delijn.be/stops/102733"], ["https://data.delijn.be/stops/504680", "https://data.delijn.be/stops/505841"], ["https://data.delijn.be/stops/109542", "https://data.delijn.be/stops/109543"], ["https://data.delijn.be/stops/505536", "https://data.delijn.be/stops/505537"], ["https://data.delijn.be/stops/101554", "https://data.delijn.be/stops/107303"], ["https://data.delijn.be/stops/304894", "https://data.delijn.be/stops/306408"], ["https://data.delijn.be/stops/505628", "https://data.delijn.be/stops/507512"], ["https://data.delijn.be/stops/101799", "https://data.delijn.be/stops/104822"], ["https://data.delijn.be/stops/302776", "https://data.delijn.be/stops/302780"], ["https://data.delijn.be/stops/206046", "https://data.delijn.be/stops/206047"], ["https://data.delijn.be/stops/406068", "https://data.delijn.be/stops/406378"], ["https://data.delijn.be/stops/505570", "https://data.delijn.be/stops/508796"], ["https://data.delijn.be/stops/504145", "https://data.delijn.be/stops/505423"], ["https://data.delijn.be/stops/106585", "https://data.delijn.be/stops/106586"], ["https://data.delijn.be/stops/103113", "https://data.delijn.be/stops/106846"], ["https://data.delijn.be/stops/403323", "https://data.delijn.be/stops/407593"], ["https://data.delijn.be/stops/302351", "https://data.delijn.be/stops/302361"], ["https://data.delijn.be/stops/202312", "https://data.delijn.be/stops/203312"], ["https://data.delijn.be/stops/302703", "https://data.delijn.be/stops/302713"], ["https://data.delijn.be/stops/402181", "https://data.delijn.be/stops/402345"], ["https://data.delijn.be/stops/202613", "https://data.delijn.be/stops/203613"], ["https://data.delijn.be/stops/202187", "https://data.delijn.be/stops/203188"], ["https://data.delijn.be/stops/408220", "https://data.delijn.be/stops/408914"], ["https://data.delijn.be/stops/104025", "https://data.delijn.be/stops/106898"], ["https://data.delijn.be/stops/104094", "https://data.delijn.be/stops/104096"], ["https://data.delijn.be/stops/403111", "https://data.delijn.be/stops/403234"], ["https://data.delijn.be/stops/300196", "https://data.delijn.be/stops/300217"], ["https://data.delijn.be/stops/408018", "https://data.delijn.be/stops/408019"], ["https://data.delijn.be/stops/301000", "https://data.delijn.be/stops/306048"], ["https://data.delijn.be/stops/301371", "https://data.delijn.be/stops/301372"], ["https://data.delijn.be/stops/204030", "https://data.delijn.be/stops/205029"], ["https://data.delijn.be/stops/404324", "https://data.delijn.be/stops/404363"], ["https://data.delijn.be/stops/501134", "https://data.delijn.be/stops/506130"], ["https://data.delijn.be/stops/106535", "https://data.delijn.be/stops/107306"], ["https://data.delijn.be/stops/408767", "https://data.delijn.be/stops/408768"], ["https://data.delijn.be/stops/500042", "https://data.delijn.be/stops/507456"], ["https://data.delijn.be/stops/503553", "https://data.delijn.be/stops/503559"], ["https://data.delijn.be/stops/507438", "https://data.delijn.be/stops/507676"], ["https://data.delijn.be/stops/409458", "https://data.delijn.be/stops/410070"], ["https://data.delijn.be/stops/103223", "https://data.delijn.be/stops/107680"], ["https://data.delijn.be/stops/202970", "https://data.delijn.be/stops/203164"], ["https://data.delijn.be/stops/201183", "https://data.delijn.be/stops/203477"], ["https://data.delijn.be/stops/401463", "https://data.delijn.be/stops/410127"], ["https://data.delijn.be/stops/502684", "https://data.delijn.be/stops/507235"], ["https://data.delijn.be/stops/204672", "https://data.delijn.be/stops/205259"], ["https://data.delijn.be/stops/205497", "https://data.delijn.be/stops/205510"], ["https://data.delijn.be/stops/505069", "https://data.delijn.be/stops/505344"], ["https://data.delijn.be/stops/502543", "https://data.delijn.be/stops/505692"], ["https://data.delijn.be/stops/404619", "https://data.delijn.be/stops/406732"], ["https://data.delijn.be/stops/304111", "https://data.delijn.be/stops/304820"], ["https://data.delijn.be/stops/202064", "https://data.delijn.be/stops/203064"], ["https://data.delijn.be/stops/303808", "https://data.delijn.be/stops/307031"], ["https://data.delijn.be/stops/404339", "https://data.delijn.be/stops/409690"], ["https://data.delijn.be/stops/202327", "https://data.delijn.be/stops/202715"], ["https://data.delijn.be/stops/102742", "https://data.delijn.be/stops/103934"], ["https://data.delijn.be/stops/306916", "https://data.delijn.be/stops/308048"], ["https://data.delijn.be/stops/200681", "https://data.delijn.be/stops/202750"], ["https://data.delijn.be/stops/502425", "https://data.delijn.be/stops/507426"], ["https://data.delijn.be/stops/408087", "https://data.delijn.be/stops/408138"], ["https://data.delijn.be/stops/203665", "https://data.delijn.be/stops/203666"], ["https://data.delijn.be/stops/504421", "https://data.delijn.be/stops/509433"], ["https://data.delijn.be/stops/300410", "https://data.delijn.be/stops/304635"], ["https://data.delijn.be/stops/502665", "https://data.delijn.be/stops/507655"], ["https://data.delijn.be/stops/503143", "https://data.delijn.be/stops/508988"], ["https://data.delijn.be/stops/302455", "https://data.delijn.be/stops/304772"], ["https://data.delijn.be/stops/305989", "https://data.delijn.be/stops/305990"], ["https://data.delijn.be/stops/400458", "https://data.delijn.be/stops/400459"], ["https://data.delijn.be/stops/203087", "https://data.delijn.be/stops/203722"], ["https://data.delijn.be/stops/502446", "https://data.delijn.be/stops/502682"], ["https://data.delijn.be/stops/307153", "https://data.delijn.be/stops/307217"], ["https://data.delijn.be/stops/403928", "https://data.delijn.be/stops/403929"], ["https://data.delijn.be/stops/300480", "https://data.delijn.be/stops/300482"], ["https://data.delijn.be/stops/305691", "https://data.delijn.be/stops/305702"], ["https://data.delijn.be/stops/204929", "https://data.delijn.be/stops/208293"], ["https://data.delijn.be/stops/204504", "https://data.delijn.be/stops/205503"], ["https://data.delijn.be/stops/400584", "https://data.delijn.be/stops/400596"], ["https://data.delijn.be/stops/401344", "https://data.delijn.be/stops/404765"], ["https://data.delijn.be/stops/407661", "https://data.delijn.be/stops/409807"], ["https://data.delijn.be/stops/503492", "https://data.delijn.be/stops/503669"], ["https://data.delijn.be/stops/503147", "https://data.delijn.be/stops/503830"], ["https://data.delijn.be/stops/208067", "https://data.delijn.be/stops/209067"], ["https://data.delijn.be/stops/407337", "https://data.delijn.be/stops/409249"], ["https://data.delijn.be/stops/201070", "https://data.delijn.be/stops/210113"], ["https://data.delijn.be/stops/306775", "https://data.delijn.be/stops/306777"], ["https://data.delijn.be/stops/300285", "https://data.delijn.be/stops/306656"], ["https://data.delijn.be/stops/205109", "https://data.delijn.be/stops/205118"], ["https://data.delijn.be/stops/300126", "https://data.delijn.be/stops/306831"], ["https://data.delijn.be/stops/401642", "https://data.delijn.be/stops/408661"], ["https://data.delijn.be/stops/501292", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/209737", "https://data.delijn.be/stops/209738"], ["https://data.delijn.be/stops/305055", "https://data.delijn.be/stops/305057"], ["https://data.delijn.be/stops/506676", "https://data.delijn.be/stops/506677"], ["https://data.delijn.be/stops/207434", "https://data.delijn.be/stops/209560"], ["https://data.delijn.be/stops/103205", "https://data.delijn.be/stops/106436"], ["https://data.delijn.be/stops/302570", "https://data.delijn.be/stops/305124"], ["https://data.delijn.be/stops/404311", "https://data.delijn.be/stops/404649"], ["https://data.delijn.be/stops/408644", "https://data.delijn.be/stops/408660"], ["https://data.delijn.be/stops/504356", "https://data.delijn.be/stops/509355"], ["https://data.delijn.be/stops/501427", "https://data.delijn.be/stops/501669"], ["https://data.delijn.be/stops/101088", "https://data.delijn.be/stops/102009"], ["https://data.delijn.be/stops/407582", "https://data.delijn.be/stops/408890"], ["https://data.delijn.be/stops/208361", "https://data.delijn.be/stops/209376"], ["https://data.delijn.be/stops/306866", "https://data.delijn.be/stops/307354"], ["https://data.delijn.be/stops/503762", "https://data.delijn.be/stops/503765"], ["https://data.delijn.be/stops/406522", "https://data.delijn.be/stops/406603"], ["https://data.delijn.be/stops/504218", "https://data.delijn.be/stops/504219"], ["https://data.delijn.be/stops/202534", "https://data.delijn.be/stops/205243"], ["https://data.delijn.be/stops/505245", "https://data.delijn.be/stops/505697"], ["https://data.delijn.be/stops/504113", "https://data.delijn.be/stops/509114"], ["https://data.delijn.be/stops/203243", "https://data.delijn.be/stops/203486"], ["https://data.delijn.be/stops/204259", "https://data.delijn.be/stops/205419"], ["https://data.delijn.be/stops/106945", "https://data.delijn.be/stops/106946"], ["https://data.delijn.be/stops/108527", "https://data.delijn.be/stops/108528"], ["https://data.delijn.be/stops/303066", "https://data.delijn.be/stops/303094"], ["https://data.delijn.be/stops/300002", "https://data.delijn.be/stops/302528"], ["https://data.delijn.be/stops/502380", "https://data.delijn.be/stops/507396"], ["https://data.delijn.be/stops/108454", "https://data.delijn.be/stops/108510"], ["https://data.delijn.be/stops/505091", "https://data.delijn.be/stops/508588"], ["https://data.delijn.be/stops/503781", "https://data.delijn.be/stops/503787"], ["https://data.delijn.be/stops/106141", "https://data.delijn.be/stops/106142"], ["https://data.delijn.be/stops/501128", "https://data.delijn.be/stops/501137"], ["https://data.delijn.be/stops/407049", "https://data.delijn.be/stops/407063"], ["https://data.delijn.be/stops/200330", "https://data.delijn.be/stops/202199"], ["https://data.delijn.be/stops/207044", "https://data.delijn.be/stops/207967"], ["https://data.delijn.be/stops/503557", "https://data.delijn.be/stops/505191"], ["https://data.delijn.be/stops/504758", "https://data.delijn.be/stops/507023"], ["https://data.delijn.be/stops/505843", "https://data.delijn.be/stops/505914"], ["https://data.delijn.be/stops/208453", "https://data.delijn.be/stops/209444"], ["https://data.delijn.be/stops/403986", "https://data.delijn.be/stops/404021"], ["https://data.delijn.be/stops/307353", "https://data.delijn.be/stops/307430"], ["https://data.delijn.be/stops/401790", "https://data.delijn.be/stops/406121"], ["https://data.delijn.be/stops/304957", "https://data.delijn.be/stops/304966"], ["https://data.delijn.be/stops/502747", "https://data.delijn.be/stops/505326"], ["https://data.delijn.be/stops/501026", "https://data.delijn.be/stops/506026"], ["https://data.delijn.be/stops/302712", "https://data.delijn.be/stops/308834"], ["https://data.delijn.be/stops/503754", "https://data.delijn.be/stops/508764"], ["https://data.delijn.be/stops/206904", "https://data.delijn.be/stops/207216"], ["https://data.delijn.be/stops/504064", "https://data.delijn.be/stops/504069"], ["https://data.delijn.be/stops/504532", "https://data.delijn.be/stops/504602"], ["https://data.delijn.be/stops/200355", "https://data.delijn.be/stops/209948"], ["https://data.delijn.be/stops/508059", "https://data.delijn.be/stops/508117"], ["https://data.delijn.be/stops/202890", "https://data.delijn.be/stops/219953"], ["https://data.delijn.be/stops/207884", "https://data.delijn.be/stops/207889"], ["https://data.delijn.be/stops/208532", "https://data.delijn.be/stops/209480"], ["https://data.delijn.be/stops/202778", "https://data.delijn.be/stops/203767"], ["https://data.delijn.be/stops/305703", "https://data.delijn.be/stops/305704"], ["https://data.delijn.be/stops/303995", "https://data.delijn.be/stops/306187"], ["https://data.delijn.be/stops/505290", "https://data.delijn.be/stops/508904"], ["https://data.delijn.be/stops/104781", "https://data.delijn.be/stops/108119"], ["https://data.delijn.be/stops/201920", "https://data.delijn.be/stops/202241"], ["https://data.delijn.be/stops/502032", "https://data.delijn.be/stops/507052"], ["https://data.delijn.be/stops/306614", "https://data.delijn.be/stops/306617"], ["https://data.delijn.be/stops/400917", "https://data.delijn.be/stops/400918"], ["https://data.delijn.be/stops/304037", "https://data.delijn.be/stops/304076"], ["https://data.delijn.be/stops/205661", "https://data.delijn.be/stops/205662"], ["https://data.delijn.be/stops/400327", "https://data.delijn.be/stops/400355"], ["https://data.delijn.be/stops/503410", "https://data.delijn.be/stops/508410"], ["https://data.delijn.be/stops/206636", "https://data.delijn.be/stops/207890"], ["https://data.delijn.be/stops/104691", "https://data.delijn.be/stops/107363"], ["https://data.delijn.be/stops/502227", "https://data.delijn.be/stops/507230"], ["https://data.delijn.be/stops/502113", "https://data.delijn.be/stops/502164"], ["https://data.delijn.be/stops/404555", "https://data.delijn.be/stops/404574"], ["https://data.delijn.be/stops/200606", "https://data.delijn.be/stops/201941"], ["https://data.delijn.be/stops/503581", "https://data.delijn.be/stops/503584"], ["https://data.delijn.be/stops/207964", "https://data.delijn.be/stops/217003"], ["https://data.delijn.be/stops/409590", "https://data.delijn.be/stops/409594"], ["https://data.delijn.be/stops/206602", "https://data.delijn.be/stops/307771"], ["https://data.delijn.be/stops/407245", "https://data.delijn.be/stops/407556"], ["https://data.delijn.be/stops/504477", "https://data.delijn.be/stops/509157"], ["https://data.delijn.be/stops/407972", "https://data.delijn.be/stops/307797"], ["https://data.delijn.be/stops/504292", "https://data.delijn.be/stops/504307"], ["https://data.delijn.be/stops/301565", "https://data.delijn.be/stops/301578"], ["https://data.delijn.be/stops/503276", "https://data.delijn.be/stops/503281"], ["https://data.delijn.be/stops/206597", "https://data.delijn.be/stops/207417"], ["https://data.delijn.be/stops/504485", "https://data.delijn.be/stops/504723"], ["https://data.delijn.be/stops/207294", "https://data.delijn.be/stops/207817"], ["https://data.delijn.be/stops/502616", "https://data.delijn.be/stops/507616"], ["https://data.delijn.be/stops/402492", "https://data.delijn.be/stops/402498"], ["https://data.delijn.be/stops/301678", "https://data.delijn.be/stops/301680"], ["https://data.delijn.be/stops/400625", "https://data.delijn.be/stops/404293"], ["https://data.delijn.be/stops/200652", "https://data.delijn.be/stops/210067"], ["https://data.delijn.be/stops/504787", "https://data.delijn.be/stops/508275"], ["https://data.delijn.be/stops/204475", "https://data.delijn.be/stops/205474"], ["https://data.delijn.be/stops/202923", "https://data.delijn.be/stops/208695"], ["https://data.delijn.be/stops/200919", "https://data.delijn.be/stops/202048"], ["https://data.delijn.be/stops/206302", "https://data.delijn.be/stops/206914"], ["https://data.delijn.be/stops/403745", "https://data.delijn.be/stops/403817"], ["https://data.delijn.be/stops/300098", "https://data.delijn.be/stops/307098"], ["https://data.delijn.be/stops/409368", "https://data.delijn.be/stops/409441"], ["https://data.delijn.be/stops/504609", "https://data.delijn.be/stops/509614"], ["https://data.delijn.be/stops/200353", "https://data.delijn.be/stops/201017"], ["https://data.delijn.be/stops/207044", "https://data.delijn.be/stops/207269"], ["https://data.delijn.be/stops/207593", "https://data.delijn.be/stops/207948"], ["https://data.delijn.be/stops/102586", "https://data.delijn.be/stops/104818"], ["https://data.delijn.be/stops/106248", "https://data.delijn.be/stops/107234"], ["https://data.delijn.be/stops/205426", "https://data.delijn.be/stops/205441"], ["https://data.delijn.be/stops/402688", "https://data.delijn.be/stops/402743"], ["https://data.delijn.be/stops/301578", "https://data.delijn.be/stops/301579"], ["https://data.delijn.be/stops/103330", "https://data.delijn.be/stops/103331"], ["https://data.delijn.be/stops/408029", "https://data.delijn.be/stops/305731"], ["https://data.delijn.be/stops/401784", "https://data.delijn.be/stops/406092"], ["https://data.delijn.be/stops/503949", "https://data.delijn.be/stops/508648"], ["https://data.delijn.be/stops/107274", "https://data.delijn.be/stops/107393"], ["https://data.delijn.be/stops/504837", "https://data.delijn.be/stops/508481"], ["https://data.delijn.be/stops/107823", "https://data.delijn.be/stops/107824"], ["https://data.delijn.be/stops/500603", "https://data.delijn.be/stops/500604"], ["https://data.delijn.be/stops/503096", "https://data.delijn.be/stops/505383"], ["https://data.delijn.be/stops/204055", "https://data.delijn.be/stops/205058"], ["https://data.delijn.be/stops/409280", "https://data.delijn.be/stops/409292"], ["https://data.delijn.be/stops/105374", "https://data.delijn.be/stops/107502"], ["https://data.delijn.be/stops/503150", "https://data.delijn.be/stops/505201"], ["https://data.delijn.be/stops/101658", "https://data.delijn.be/stops/101660"], ["https://data.delijn.be/stops/207493", "https://data.delijn.be/stops/207494"], ["https://data.delijn.be/stops/203297", "https://data.delijn.be/stops/211854"], ["https://data.delijn.be/stops/502403", "https://data.delijn.be/stops/507402"], ["https://data.delijn.be/stops/302888", "https://data.delijn.be/stops/302902"], ["https://data.delijn.be/stops/304306", "https://data.delijn.be/stops/304307"], ["https://data.delijn.be/stops/506659", "https://data.delijn.be/stops/506661"], ["https://data.delijn.be/stops/107886", "https://data.delijn.be/stops/107908"], ["https://data.delijn.be/stops/503452", "https://data.delijn.be/stops/503468"], ["https://data.delijn.be/stops/301713", "https://data.delijn.be/stops/301714"], ["https://data.delijn.be/stops/102734", "https://data.delijn.be/stops/109795"], ["https://data.delijn.be/stops/308766", "https://data.delijn.be/stops/308768"], ["https://data.delijn.be/stops/207161", "https://data.delijn.be/stops/207449"], ["https://data.delijn.be/stops/300499", "https://data.delijn.be/stops/300513"], ["https://data.delijn.be/stops/503434", "https://data.delijn.be/stops/508369"], ["https://data.delijn.be/stops/407239", "https://data.delijn.be/stops/407512"], ["https://data.delijn.be/stops/408095", "https://data.delijn.be/stops/409113"], ["https://data.delijn.be/stops/206477", "https://data.delijn.be/stops/207476"], ["https://data.delijn.be/stops/403236", "https://data.delijn.be/stops/410061"], ["https://data.delijn.be/stops/305751", "https://data.delijn.be/stops/305752"], ["https://data.delijn.be/stops/102302", "https://data.delijn.be/stops/105106"], ["https://data.delijn.be/stops/300027", "https://data.delijn.be/stops/300065"], ["https://data.delijn.be/stops/504876", "https://data.delijn.be/stops/509876"], ["https://data.delijn.be/stops/204299", "https://data.delijn.be/stops/205305"], ["https://data.delijn.be/stops/506629", "https://data.delijn.be/stops/508132"], ["https://data.delijn.be/stops/400526", "https://data.delijn.be/stops/400527"], ["https://data.delijn.be/stops/203744", "https://data.delijn.be/stops/203946"], ["https://data.delijn.be/stops/200187", "https://data.delijn.be/stops/201187"], ["https://data.delijn.be/stops/304060", "https://data.delijn.be/stops/306004"], ["https://data.delijn.be/stops/403387", "https://data.delijn.be/stops/410279"], ["https://data.delijn.be/stops/308867", "https://data.delijn.be/stops/308869"], ["https://data.delijn.be/stops/106108", "https://data.delijn.be/stops/106110"], ["https://data.delijn.be/stops/102277", "https://data.delijn.be/stops/108033"], ["https://data.delijn.be/stops/307389", "https://data.delijn.be/stops/307392"], ["https://data.delijn.be/stops/301415", "https://data.delijn.be/stops/301416"], ["https://data.delijn.be/stops/102197", "https://data.delijn.be/stops/102198"], ["https://data.delijn.be/stops/207860", "https://data.delijn.be/stops/207861"], ["https://data.delijn.be/stops/305650", "https://data.delijn.be/stops/305663"], ["https://data.delijn.be/stops/405925", "https://data.delijn.be/stops/405976"], ["https://data.delijn.be/stops/501186", "https://data.delijn.be/stops/507290"], ["https://data.delijn.be/stops/505541", "https://data.delijn.be/stops/505542"], ["https://data.delijn.be/stops/102062", "https://data.delijn.be/stops/102067"], ["https://data.delijn.be/stops/104307", "https://data.delijn.be/stops/109747"], ["https://data.delijn.be/stops/501192", "https://data.delijn.be/stops/506193"], ["https://data.delijn.be/stops/400254", "https://data.delijn.be/stops/405578"], ["https://data.delijn.be/stops/304579", "https://data.delijn.be/stops/305529"], ["https://data.delijn.be/stops/105621", "https://data.delijn.be/stops/105649"], ["https://data.delijn.be/stops/304047", "https://data.delijn.be/stops/306277"], ["https://data.delijn.be/stops/505204", "https://data.delijn.be/stops/508153"], ["https://data.delijn.be/stops/205056", "https://data.delijn.be/stops/205057"], ["https://data.delijn.be/stops/202097", "https://data.delijn.be/stops/203098"], ["https://data.delijn.be/stops/204919", "https://data.delijn.be/stops/205913"], ["https://data.delijn.be/stops/306864", "https://data.delijn.be/stops/307438"], ["https://data.delijn.be/stops/202086", "https://data.delijn.be/stops/203086"], ["https://data.delijn.be/stops/401224", "https://data.delijn.be/stops/401557"], ["https://data.delijn.be/stops/405375", "https://data.delijn.be/stops/409320"], ["https://data.delijn.be/stops/308501", "https://data.delijn.be/stops/308522"], ["https://data.delijn.be/stops/404762", "https://data.delijn.be/stops/404825"], ["https://data.delijn.be/stops/206133", "https://data.delijn.be/stops/207133"], ["https://data.delijn.be/stops/504557", "https://data.delijn.be/stops/509557"], ["https://data.delijn.be/stops/206592", "https://data.delijn.be/stops/207592"], ["https://data.delijn.be/stops/402662", "https://data.delijn.be/stops/410057"], ["https://data.delijn.be/stops/404776", "https://data.delijn.be/stops/410051"], ["https://data.delijn.be/stops/404057", "https://data.delijn.be/stops/404058"], ["https://data.delijn.be/stops/501183", "https://data.delijn.be/stops/504495"], ["https://data.delijn.be/stops/303168", "https://data.delijn.be/stops/303172"], ["https://data.delijn.be/stops/202057", "https://data.delijn.be/stops/211104"], ["https://data.delijn.be/stops/502443", "https://data.delijn.be/stops/502589"], ["https://data.delijn.be/stops/102283", "https://data.delijn.be/stops/106792"], ["https://data.delijn.be/stops/404859", "https://data.delijn.be/stops/404963"], ["https://data.delijn.be/stops/201443", "https://data.delijn.be/stops/202134"], ["https://data.delijn.be/stops/206458", "https://data.delijn.be/stops/207459"], ["https://data.delijn.be/stops/104285", "https://data.delijn.be/stops/104650"], ["https://data.delijn.be/stops/300145", "https://data.delijn.be/stops/300146"], ["https://data.delijn.be/stops/209084", "https://data.delijn.be/stops/209619"], ["https://data.delijn.be/stops/404460", "https://data.delijn.be/stops/404491"], ["https://data.delijn.be/stops/302167", "https://data.delijn.be/stops/308098"], ["https://data.delijn.be/stops/503542", "https://data.delijn.be/stops/508541"], ["https://data.delijn.be/stops/206957", "https://data.delijn.be/stops/207182"], ["https://data.delijn.be/stops/301650", "https://data.delijn.be/stops/306143"], ["https://data.delijn.be/stops/407160", "https://data.delijn.be/stops/407193"], ["https://data.delijn.be/stops/305527", "https://data.delijn.be/stops/308980"], ["https://data.delijn.be/stops/205151", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/202596", "https://data.delijn.be/stops/203596"], ["https://data.delijn.be/stops/202432", "https://data.delijn.be/stops/204559"], ["https://data.delijn.be/stops/301582", "https://data.delijn.be/stops/303414"], ["https://data.delijn.be/stops/201847", "https://data.delijn.be/stops/202652"], ["https://data.delijn.be/stops/209278", "https://data.delijn.be/stops/209495"], ["https://data.delijn.be/stops/204345", "https://data.delijn.be/stops/205344"], ["https://data.delijn.be/stops/507511", "https://data.delijn.be/stops/507636"], ["https://data.delijn.be/stops/301083", "https://data.delijn.be/stops/301086"], ["https://data.delijn.be/stops/101804", "https://data.delijn.be/stops/104651"], ["https://data.delijn.be/stops/204687", "https://data.delijn.be/stops/205687"], ["https://data.delijn.be/stops/308786", "https://data.delijn.be/stops/308787"], ["https://data.delijn.be/stops/503471", "https://data.delijn.be/stops/508947"], ["https://data.delijn.be/stops/204158", "https://data.delijn.be/stops/207274"], ["https://data.delijn.be/stops/207510", "https://data.delijn.be/stops/207825"], ["https://data.delijn.be/stops/505381", "https://data.delijn.be/stops/505382"], ["https://data.delijn.be/stops/200475", "https://data.delijn.be/stops/201317"], ["https://data.delijn.be/stops/504171", "https://data.delijn.be/stops/504348"], ["https://data.delijn.be/stops/504170", "https://data.delijn.be/stops/504710"], ["https://data.delijn.be/stops/101167", "https://data.delijn.be/stops/103775"], ["https://data.delijn.be/stops/402829", "https://data.delijn.be/stops/402840"], ["https://data.delijn.be/stops/207278", "https://data.delijn.be/stops/207279"], ["https://data.delijn.be/stops/106466", "https://data.delijn.be/stops/106468"], ["https://data.delijn.be/stops/104043", "https://data.delijn.be/stops/108416"], ["https://data.delijn.be/stops/200901", "https://data.delijn.be/stops/210006"], ["https://data.delijn.be/stops/408185", "https://data.delijn.be/stops/408443"], ["https://data.delijn.be/stops/307157", "https://data.delijn.be/stops/307158"], ["https://data.delijn.be/stops/300414", "https://data.delijn.be/stops/307891"], ["https://data.delijn.be/stops/503371", "https://data.delijn.be/stops/509939"], ["https://data.delijn.be/stops/108371", "https://data.delijn.be/stops/108461"], ["https://data.delijn.be/stops/201765", "https://data.delijn.be/stops/209265"], ["https://data.delijn.be/stops/505268", "https://data.delijn.be/stops/508331"], ["https://data.delijn.be/stops/403093", "https://data.delijn.be/stops/403120"], ["https://data.delijn.be/stops/508251", "https://data.delijn.be/stops/509762"], ["https://data.delijn.be/stops/402369", "https://data.delijn.be/stops/405575"], ["https://data.delijn.be/stops/401769", "https://data.delijn.be/stops/401833"], ["https://data.delijn.be/stops/303540", "https://data.delijn.be/stops/303541"], ["https://data.delijn.be/stops/303844", "https://data.delijn.be/stops/308574"], ["https://data.delijn.be/stops/300759", "https://data.delijn.be/stops/300951"], ["https://data.delijn.be/stops/303717", "https://data.delijn.be/stops/303757"], ["https://data.delijn.be/stops/302448", "https://data.delijn.be/stops/302451"], ["https://data.delijn.be/stops/207176", "https://data.delijn.be/stops/207446"], ["https://data.delijn.be/stops/300877", "https://data.delijn.be/stops/300884"], ["https://data.delijn.be/stops/109697", "https://data.delijn.be/stops/406485"], ["https://data.delijn.be/stops/407897", "https://data.delijn.be/stops/303263"], ["https://data.delijn.be/stops/501386", "https://data.delijn.be/stops/506386"], ["https://data.delijn.be/stops/302677", "https://data.delijn.be/stops/302678"], ["https://data.delijn.be/stops/108712", "https://data.delijn.be/stops/108714"], ["https://data.delijn.be/stops/200506", "https://data.delijn.be/stops/211133"], ["https://data.delijn.be/stops/301464", "https://data.delijn.be/stops/305669"], ["https://data.delijn.be/stops/202148", "https://data.delijn.be/stops/203148"], ["https://data.delijn.be/stops/505906", "https://data.delijn.be/stops/508633"], ["https://data.delijn.be/stops/208394", "https://data.delijn.be/stops/208395"], ["https://data.delijn.be/stops/407848", "https://data.delijn.be/stops/407849"], ["https://data.delijn.be/stops/301506", "https://data.delijn.be/stops/301507"], ["https://data.delijn.be/stops/303387", "https://data.delijn.be/stops/303388"], ["https://data.delijn.be/stops/404014", "https://data.delijn.be/stops/404015"], ["https://data.delijn.be/stops/105899", "https://data.delijn.be/stops/105934"], ["https://data.delijn.be/stops/101856", "https://data.delijn.be/stops/104980"], ["https://data.delijn.be/stops/404108", "https://data.delijn.be/stops/404112"], ["https://data.delijn.be/stops/308267", "https://data.delijn.be/stops/308268"], ["https://data.delijn.be/stops/301930", "https://data.delijn.be/stops/304523"], ["https://data.delijn.be/stops/502660", "https://data.delijn.be/stops/502661"], ["https://data.delijn.be/stops/203712", "https://data.delijn.be/stops/203713"], ["https://data.delijn.be/stops/102738", "https://data.delijn.be/stops/105522"], ["https://data.delijn.be/stops/201275", "https://data.delijn.be/stops/201984"], ["https://data.delijn.be/stops/206774", "https://data.delijn.be/stops/208093"], ["https://data.delijn.be/stops/403065", "https://data.delijn.be/stops/403138"], ["https://data.delijn.be/stops/206749", "https://data.delijn.be/stops/207365"], ["https://data.delijn.be/stops/504783", "https://data.delijn.be/stops/508519"], ["https://data.delijn.be/stops/102157", "https://data.delijn.be/stops/104332"], ["https://data.delijn.be/stops/301827", "https://data.delijn.be/stops/308602"], ["https://data.delijn.be/stops/206675", "https://data.delijn.be/stops/209161"], ["https://data.delijn.be/stops/109806", "https://data.delijn.be/stops/109809"], ["https://data.delijn.be/stops/408982", "https://data.delijn.be/stops/408983"], ["https://data.delijn.be/stops/102136", "https://data.delijn.be/stops/102137"], ["https://data.delijn.be/stops/200976", "https://data.delijn.be/stops/207851"], ["https://data.delijn.be/stops/206307", "https://data.delijn.be/stops/206390"], ["https://data.delijn.be/stops/305428", "https://data.delijn.be/stops/305436"], ["https://data.delijn.be/stops/307392", "https://data.delijn.be/stops/308262"], ["https://data.delijn.be/stops/502348", "https://data.delijn.be/stops/505172"], ["https://data.delijn.be/stops/508746", "https://data.delijn.be/stops/508749"], ["https://data.delijn.be/stops/101222", "https://data.delijn.be/stops/107796"], ["https://data.delijn.be/stops/404258", "https://data.delijn.be/stops/409257"], ["https://data.delijn.be/stops/108465", "https://data.delijn.be/stops/109880"], ["https://data.delijn.be/stops/202835", "https://data.delijn.be/stops/203835"], ["https://data.delijn.be/stops/209299", "https://data.delijn.be/stops/218022"], ["https://data.delijn.be/stops/209575", "https://data.delijn.be/stops/306271"], ["https://data.delijn.be/stops/200867", "https://data.delijn.be/stops/202338"], ["https://data.delijn.be/stops/305959", "https://data.delijn.be/stops/305961"], ["https://data.delijn.be/stops/502640", "https://data.delijn.be/stops/506050"], ["https://data.delijn.be/stops/201893", "https://data.delijn.be/stops/202776"], ["https://data.delijn.be/stops/305654", "https://data.delijn.be/stops/305663"], ["https://data.delijn.be/stops/300962", "https://data.delijn.be/stops/300974"], ["https://data.delijn.be/stops/102131", "https://data.delijn.be/stops/105707"], ["https://data.delijn.be/stops/302125", "https://data.delijn.be/stops/302141"], ["https://data.delijn.be/stops/200732", "https://data.delijn.be/stops/203643"], ["https://data.delijn.be/stops/502252", "https://data.delijn.be/stops/502255"], ["https://data.delijn.be/stops/509002", "https://data.delijn.be/stops/509866"], ["https://data.delijn.be/stops/208535", "https://data.delijn.be/stops/209535"], ["https://data.delijn.be/stops/204712", "https://data.delijn.be/stops/205717"], ["https://data.delijn.be/stops/403176", "https://data.delijn.be/stops/403235"], ["https://data.delijn.be/stops/102520", "https://data.delijn.be/stops/104256"], ["https://data.delijn.be/stops/201533", "https://data.delijn.be/stops/201550"], ["https://data.delijn.be/stops/401839", "https://data.delijn.be/stops/406047"], ["https://data.delijn.be/stops/200224", "https://data.delijn.be/stops/201226"], ["https://data.delijn.be/stops/305426", "https://data.delijn.be/stops/305428"], ["https://data.delijn.be/stops/401013", "https://data.delijn.be/stops/401014"], ["https://data.delijn.be/stops/107146", "https://data.delijn.be/stops/107147"], ["https://data.delijn.be/stops/400577", "https://data.delijn.be/stops/410034"], ["https://data.delijn.be/stops/301520", "https://data.delijn.be/stops/308079"], ["https://data.delijn.be/stops/105826", "https://data.delijn.be/stops/105828"], ["https://data.delijn.be/stops/504246", "https://data.delijn.be/stops/504485"], ["https://data.delijn.be/stops/305875", "https://data.delijn.be/stops/308423"], ["https://data.delijn.be/stops/505203", "https://data.delijn.be/stops/507008"], ["https://data.delijn.be/stops/108635", "https://data.delijn.be/stops/109771"], ["https://data.delijn.be/stops/404746", "https://data.delijn.be/stops/404945"], ["https://data.delijn.be/stops/202672", "https://data.delijn.be/stops/203726"], ["https://data.delijn.be/stops/209234", "https://data.delijn.be/stops/209797"], ["https://data.delijn.be/stops/108967", "https://data.delijn.be/stops/401936"], ["https://data.delijn.be/stops/200920", "https://data.delijn.be/stops/203690"], ["https://data.delijn.be/stops/102233", "https://data.delijn.be/stops/105569"], ["https://data.delijn.be/stops/208719", "https://data.delijn.be/stops/209718"], ["https://data.delijn.be/stops/207796", "https://data.delijn.be/stops/208758"], ["https://data.delijn.be/stops/506299", "https://data.delijn.be/stops/506305"], ["https://data.delijn.be/stops/504061", "https://data.delijn.be/stops/509060"], ["https://data.delijn.be/stops/206768", "https://data.delijn.be/stops/207800"], ["https://data.delijn.be/stops/200752", "https://data.delijn.be/stops/200769"], ["https://data.delijn.be/stops/502439", "https://data.delijn.be/stops/505741"], ["https://data.delijn.be/stops/506412", "https://data.delijn.be/stops/506597"], ["https://data.delijn.be/stops/105941", "https://data.delijn.be/stops/105942"], ["https://data.delijn.be/stops/103127", "https://data.delijn.be/stops/105445"], ["https://data.delijn.be/stops/406970", "https://data.delijn.be/stops/409483"], ["https://data.delijn.be/stops/204703", "https://data.delijn.be/stops/205056"], ["https://data.delijn.be/stops/402596", "https://data.delijn.be/stops/404143"], ["https://data.delijn.be/stops/204613", "https://data.delijn.be/stops/205694"], ["https://data.delijn.be/stops/206339", "https://data.delijn.be/stops/206340"], ["https://data.delijn.be/stops/302987", "https://data.delijn.be/stops/303032"], ["https://data.delijn.be/stops/200505", "https://data.delijn.be/stops/201411"], ["https://data.delijn.be/stops/302443", "https://data.delijn.be/stops/302450"], ["https://data.delijn.be/stops/403291", "https://data.delijn.be/stops/409317"], ["https://data.delijn.be/stops/201470", "https://data.delijn.be/stops/201471"], ["https://data.delijn.be/stops/402738", "https://data.delijn.be/stops/407299"], ["https://data.delijn.be/stops/402605", "https://data.delijn.be/stops/402644"], ["https://data.delijn.be/stops/202674", "https://data.delijn.be/stops/202724"], ["https://data.delijn.be/stops/300623", "https://data.delijn.be/stops/300624"], ["https://data.delijn.be/stops/206068", "https://data.delijn.be/stops/207963"], ["https://data.delijn.be/stops/504006", "https://data.delijn.be/stops/509377"], ["https://data.delijn.be/stops/407284", "https://data.delijn.be/stops/409492"], ["https://data.delijn.be/stops/105236", "https://data.delijn.be/stops/105248"], ["https://data.delijn.be/stops/501320", "https://data.delijn.be/stops/501349"], ["https://data.delijn.be/stops/408239", "https://data.delijn.be/stops/408243"], ["https://data.delijn.be/stops/401192", "https://data.delijn.be/stops/401194"], ["https://data.delijn.be/stops/202696", "https://data.delijn.be/stops/203698"], ["https://data.delijn.be/stops/504318", "https://data.delijn.be/stops/507689"], ["https://data.delijn.be/stops/104456", "https://data.delijn.be/stops/104482"], ["https://data.delijn.be/stops/206343", "https://data.delijn.be/stops/207366"], ["https://data.delijn.be/stops/300318", "https://data.delijn.be/stops/300319"], ["https://data.delijn.be/stops/201282", "https://data.delijn.be/stops/202193"], ["https://data.delijn.be/stops/101331", "https://data.delijn.be/stops/101332"], ["https://data.delijn.be/stops/202979", "https://data.delijn.be/stops/205995"], ["https://data.delijn.be/stops/107267", "https://data.delijn.be/stops/107270"], ["https://data.delijn.be/stops/200836", "https://data.delijn.be/stops/200839"], ["https://data.delijn.be/stops/304703", "https://data.delijn.be/stops/306553"], ["https://data.delijn.be/stops/306160", "https://data.delijn.be/stops/306161"], ["https://data.delijn.be/stops/202130", "https://data.delijn.be/stops/203419"], ["https://data.delijn.be/stops/407083", "https://data.delijn.be/stops/407084"], ["https://data.delijn.be/stops/509334", "https://data.delijn.be/stops/509339"], ["https://data.delijn.be/stops/203114", "https://data.delijn.be/stops/204597"], ["https://data.delijn.be/stops/303626", "https://data.delijn.be/stops/307208"], ["https://data.delijn.be/stops/202091", "https://data.delijn.be/stops/203093"], ["https://data.delijn.be/stops/306903", "https://data.delijn.be/stops/308726"], ["https://data.delijn.be/stops/105290", "https://data.delijn.be/stops/109881"], ["https://data.delijn.be/stops/302898", "https://data.delijn.be/stops/302925"], ["https://data.delijn.be/stops/104602", "https://data.delijn.be/stops/108269"], ["https://data.delijn.be/stops/205556", "https://data.delijn.be/stops/211086"], ["https://data.delijn.be/stops/305675", "https://data.delijn.be/stops/305698"], ["https://data.delijn.be/stops/102310", "https://data.delijn.be/stops/109134"], ["https://data.delijn.be/stops/405556", "https://data.delijn.be/stops/405572"], ["https://data.delijn.be/stops/301781", "https://data.delijn.be/stops/305948"], ["https://data.delijn.be/stops/403517", "https://data.delijn.be/stops/403559"], ["https://data.delijn.be/stops/502273", "https://data.delijn.be/stops/502673"], ["https://data.delijn.be/stops/301539", "https://data.delijn.be/stops/301550"], ["https://data.delijn.be/stops/302494", "https://data.delijn.be/stops/308833"], ["https://data.delijn.be/stops/305177", "https://data.delijn.be/stops/305191"], ["https://data.delijn.be/stops/302517", "https://data.delijn.be/stops/302518"], ["https://data.delijn.be/stops/503688", "https://data.delijn.be/stops/503876"], ["https://data.delijn.be/stops/408495", "https://data.delijn.be/stops/408696"], ["https://data.delijn.be/stops/302107", "https://data.delijn.be/stops/302145"], ["https://data.delijn.be/stops/106781", "https://data.delijn.be/stops/106784"], ["https://data.delijn.be/stops/200962", "https://data.delijn.be/stops/203197"], ["https://data.delijn.be/stops/505097", "https://data.delijn.be/stops/505663"], ["https://data.delijn.be/stops/302018", "https://data.delijn.be/stops/307284"], ["https://data.delijn.be/stops/406556", "https://data.delijn.be/stops/406557"], ["https://data.delijn.be/stops/501365", "https://data.delijn.be/stops/590411"], ["https://data.delijn.be/stops/501088", "https://data.delijn.be/stops/506091"], ["https://data.delijn.be/stops/206318", "https://data.delijn.be/stops/206918"], ["https://data.delijn.be/stops/406005", "https://data.delijn.be/stops/406006"], ["https://data.delijn.be/stops/108913", "https://data.delijn.be/stops/108914"], ["https://data.delijn.be/stops/501114", "https://data.delijn.be/stops/506114"], ["https://data.delijn.be/stops/404909", "https://data.delijn.be/stops/404910"], ["https://data.delijn.be/stops/202679", "https://data.delijn.be/stops/203679"], ["https://data.delijn.be/stops/502047", "https://data.delijn.be/stops/507032"], ["https://data.delijn.be/stops/206022", "https://data.delijn.be/stops/207023"], ["https://data.delijn.be/stops/504389", "https://data.delijn.be/stops/504583"], ["https://data.delijn.be/stops/302590", "https://data.delijn.be/stops/302606"], ["https://data.delijn.be/stops/202037", "https://data.delijn.be/stops/202988"], ["https://data.delijn.be/stops/301930", "https://data.delijn.be/stops/306204"], ["https://data.delijn.be/stops/107015", "https://data.delijn.be/stops/107845"], ["https://data.delijn.be/stops/404588", "https://data.delijn.be/stops/406913"], ["https://data.delijn.be/stops/504723", "https://data.delijn.be/stops/509488"], ["https://data.delijn.be/stops/402577", "https://data.delijn.be/stops/402588"], ["https://data.delijn.be/stops/504764", "https://data.delijn.be/stops/508531"], ["https://data.delijn.be/stops/210116", "https://data.delijn.be/stops/210118"], ["https://data.delijn.be/stops/303652", "https://data.delijn.be/stops/304021"], ["https://data.delijn.be/stops/206098", "https://data.delijn.be/stops/206932"], ["https://data.delijn.be/stops/106689", "https://data.delijn.be/stops/106691"], ["https://data.delijn.be/stops/406311", "https://data.delijn.be/stops/406325"], ["https://data.delijn.be/stops/102760", "https://data.delijn.be/stops/105740"], ["https://data.delijn.be/stops/106104", "https://data.delijn.be/stops/106162"], ["https://data.delijn.be/stops/301847", "https://data.delijn.be/stops/305911"], ["https://data.delijn.be/stops/503430", "https://data.delijn.be/stops/508252"], ["https://data.delijn.be/stops/501009", "https://data.delijn.be/stops/506471"], ["https://data.delijn.be/stops/303082", "https://data.delijn.be/stops/303149"], ["https://data.delijn.be/stops/209597", "https://data.delijn.be/stops/301422"], ["https://data.delijn.be/stops/305128", "https://data.delijn.be/stops/305129"], ["https://data.delijn.be/stops/400443", "https://data.delijn.be/stops/400449"], ["https://data.delijn.be/stops/301507", "https://data.delijn.be/stops/307930"], ["https://data.delijn.be/stops/204207", "https://data.delijn.be/stops/204473"], ["https://data.delijn.be/stops/502042", "https://data.delijn.be/stops/507317"], ["https://data.delijn.be/stops/202279", "https://data.delijn.be/stops/202892"], ["https://data.delijn.be/stops/102384", "https://data.delijn.be/stops/106224"], ["https://data.delijn.be/stops/504751", "https://data.delijn.be/stops/509751"], ["https://data.delijn.be/stops/504434", "https://data.delijn.be/stops/509434"], ["https://data.delijn.be/stops/503025", "https://data.delijn.be/stops/503077"], ["https://data.delijn.be/stops/108820", "https://data.delijn.be/stops/109060"], ["https://data.delijn.be/stops/308819", "https://data.delijn.be/stops/308874"], ["https://data.delijn.be/stops/102849", "https://data.delijn.be/stops/106773"], ["https://data.delijn.be/stops/204385", "https://data.delijn.be/stops/204386"], ["https://data.delijn.be/stops/200975", "https://data.delijn.be/stops/206623"], ["https://data.delijn.be/stops/305157", "https://data.delijn.be/stops/305187"], ["https://data.delijn.be/stops/107114", "https://data.delijn.be/stops/107117"], ["https://data.delijn.be/stops/404772", "https://data.delijn.be/stops/404773"], ["https://data.delijn.be/stops/101535", "https://data.delijn.be/stops/109028"], ["https://data.delijn.be/stops/203167", "https://data.delijn.be/stops/203814"], ["https://data.delijn.be/stops/408236", "https://data.delijn.be/stops/308219"], ["https://data.delijn.be/stops/402203", "https://data.delijn.be/stops/402439"], ["https://data.delijn.be/stops/300464", "https://data.delijn.be/stops/304974"], ["https://data.delijn.be/stops/103272", "https://data.delijn.be/stops/108705"], ["https://data.delijn.be/stops/503147", "https://data.delijn.be/stops/508147"], ["https://data.delijn.be/stops/409076", "https://data.delijn.be/stops/409085"], ["https://data.delijn.be/stops/507307", "https://data.delijn.be/stops/507314"], ["https://data.delijn.be/stops/501489", "https://data.delijn.be/stops/506488"], ["https://data.delijn.be/stops/507467", "https://data.delijn.be/stops/507484"], ["https://data.delijn.be/stops/103998", "https://data.delijn.be/stops/104021"], ["https://data.delijn.be/stops/506229", "https://data.delijn.be/stops/506418"], ["https://data.delijn.be/stops/302006", "https://data.delijn.be/stops/303174"], ["https://data.delijn.be/stops/502367", "https://data.delijn.be/stops/507307"], ["https://data.delijn.be/stops/403747", "https://data.delijn.be/stops/403749"], ["https://data.delijn.be/stops/507450", "https://data.delijn.be/stops/509830"], ["https://data.delijn.be/stops/207689", "https://data.delijn.be/stops/207733"], ["https://data.delijn.be/stops/503727", "https://data.delijn.be/stops/508690"], ["https://data.delijn.be/stops/209348", "https://data.delijn.be/stops/209350"], ["https://data.delijn.be/stops/402283", "https://data.delijn.be/stops/405012"], ["https://data.delijn.be/stops/508456", "https://data.delijn.be/stops/508478"], ["https://data.delijn.be/stops/302623", "https://data.delijn.be/stops/308074"], ["https://data.delijn.be/stops/304241", "https://data.delijn.be/stops/306108"], ["https://data.delijn.be/stops/305266", "https://data.delijn.be/stops/305307"], ["https://data.delijn.be/stops/407618", "https://data.delijn.be/stops/409806"], ["https://data.delijn.be/stops/401104", "https://data.delijn.be/stops/409117"], ["https://data.delijn.be/stops/507274", "https://data.delijn.be/stops/508664"], ["https://data.delijn.be/stops/508387", "https://data.delijn.be/stops/508398"], ["https://data.delijn.be/stops/403618", "https://data.delijn.be/stops/403623"], ["https://data.delijn.be/stops/406012", "https://data.delijn.be/stops/406107"], ["https://data.delijn.be/stops/106132", "https://data.delijn.be/stops/109372"], ["https://data.delijn.be/stops/404852", "https://data.delijn.be/stops/405545"], ["https://data.delijn.be/stops/406457", "https://data.delijn.be/stops/406478"], ["https://data.delijn.be/stops/205395", "https://data.delijn.be/stops/205426"], ["https://data.delijn.be/stops/503818", "https://data.delijn.be/stops/503821"], ["https://data.delijn.be/stops/302116", "https://data.delijn.be/stops/302117"], ["https://data.delijn.be/stops/303336", "https://data.delijn.be/stops/303337"], ["https://data.delijn.be/stops/208815", "https://data.delijn.be/stops/209139"], ["https://data.delijn.be/stops/508347", "https://data.delijn.be/stops/508694"], ["https://data.delijn.be/stops/208676", "https://data.delijn.be/stops/208685"], ["https://data.delijn.be/stops/503505", "https://data.delijn.be/stops/505230"], ["https://data.delijn.be/stops/102161", "https://data.delijn.be/stops/108961"], ["https://data.delijn.be/stops/209681", "https://data.delijn.be/stops/209682"], ["https://data.delijn.be/stops/407203", "https://data.delijn.be/stops/407209"], ["https://data.delijn.be/stops/208509", "https://data.delijn.be/stops/209633"], ["https://data.delijn.be/stops/302869", "https://data.delijn.be/stops/303949"], ["https://data.delijn.be/stops/509157", "https://data.delijn.be/stops/509165"], ["https://data.delijn.be/stops/103753", "https://data.delijn.be/stops/105650"], ["https://data.delijn.be/stops/208446", "https://data.delijn.be/stops/209520"], ["https://data.delijn.be/stops/106796", "https://data.delijn.be/stops/106864"], ["https://data.delijn.be/stops/103990", "https://data.delijn.be/stops/104650"], ["https://data.delijn.be/stops/206684", "https://data.delijn.be/stops/206977"], ["https://data.delijn.be/stops/207441", "https://data.delijn.be/stops/209466"], ["https://data.delijn.be/stops/204114", "https://data.delijn.be/stops/205114"], ["https://data.delijn.be/stops/104510", "https://data.delijn.be/stops/105430"], ["https://data.delijn.be/stops/301046", "https://data.delijn.be/stops/301053"], ["https://data.delijn.be/stops/303190", "https://data.delijn.be/stops/303203"], ["https://data.delijn.be/stops/206611", "https://data.delijn.be/stops/207611"], ["https://data.delijn.be/stops/300021", "https://data.delijn.be/stops/300390"], ["https://data.delijn.be/stops/206717", "https://data.delijn.be/stops/206785"], ["https://data.delijn.be/stops/301461", "https://data.delijn.be/stops/307930"], ["https://data.delijn.be/stops/102736", "https://data.delijn.be/stops/102739"], ["https://data.delijn.be/stops/304259", "https://data.delijn.be/stops/306662"], ["https://data.delijn.be/stops/206157", "https://data.delijn.be/stops/206991"], ["https://data.delijn.be/stops/306961", "https://data.delijn.be/stops/306963"], ["https://data.delijn.be/stops/108929", "https://data.delijn.be/stops/108931"], ["https://data.delijn.be/stops/408622", "https://data.delijn.be/stops/408629"], ["https://data.delijn.be/stops/200457", "https://data.delijn.be/stops/200607"], ["https://data.delijn.be/stops/208615", "https://data.delijn.be/stops/307740"], ["https://data.delijn.be/stops/200345", "https://data.delijn.be/stops/208829"], ["https://data.delijn.be/stops/101061", "https://data.delijn.be/stops/101062"], ["https://data.delijn.be/stops/101969", "https://data.delijn.be/stops/108206"], ["https://data.delijn.be/stops/401112", "https://data.delijn.be/stops/401113"], ["https://data.delijn.be/stops/102535", "https://data.delijn.be/stops/103475"], ["https://data.delijn.be/stops/106828", "https://data.delijn.be/stops/109749"], ["https://data.delijn.be/stops/402241", "https://data.delijn.be/stops/402330"], ["https://data.delijn.be/stops/203822", "https://data.delijn.be/stops/219503"], ["https://data.delijn.be/stops/101885", "https://data.delijn.be/stops/102659"], ["https://data.delijn.be/stops/101577", "https://data.delijn.be/stops/103982"], ["https://data.delijn.be/stops/401511", "https://data.delijn.be/stops/402825"], ["https://data.delijn.be/stops/204072", "https://data.delijn.be/stops/205228"], ["https://data.delijn.be/stops/503282", "https://data.delijn.be/stops/504713"], ["https://data.delijn.be/stops/206027", "https://data.delijn.be/stops/207687"], ["https://data.delijn.be/stops/406911", "https://data.delijn.be/stops/406967"], ["https://data.delijn.be/stops/504374", "https://data.delijn.be/stops/509389"], ["https://data.delijn.be/stops/409370", "https://data.delijn.be/stops/409391"], ["https://data.delijn.be/stops/400643", "https://data.delijn.be/stops/408473"], ["https://data.delijn.be/stops/107796", "https://data.delijn.be/stops/107823"], ["https://data.delijn.be/stops/106498", "https://data.delijn.be/stops/109190"], ["https://data.delijn.be/stops/407968", "https://data.delijn.be/stops/407969"], ["https://data.delijn.be/stops/301293", "https://data.delijn.be/stops/301297"], ["https://data.delijn.be/stops/401373", "https://data.delijn.be/stops/401376"], ["https://data.delijn.be/stops/505986", "https://data.delijn.be/stops/508484"], ["https://data.delijn.be/stops/506041", "https://data.delijn.be/stops/506042"], ["https://data.delijn.be/stops/101924", "https://data.delijn.be/stops/107068"], ["https://data.delijn.be/stops/101417", "https://data.delijn.be/stops/108694"], ["https://data.delijn.be/stops/304923", "https://data.delijn.be/stops/305445"], ["https://data.delijn.be/stops/104557", "https://data.delijn.be/stops/107487"], ["https://data.delijn.be/stops/304286", "https://data.delijn.be/stops/306669"], ["https://data.delijn.be/stops/216018", "https://data.delijn.be/stops/217014"], ["https://data.delijn.be/stops/104759", "https://data.delijn.be/stops/108897"], ["https://data.delijn.be/stops/304695", "https://data.delijn.be/stops/306683"], ["https://data.delijn.be/stops/301485", "https://data.delijn.be/stops/301495"], ["https://data.delijn.be/stops/505817", "https://data.delijn.be/stops/509117"], ["https://data.delijn.be/stops/103758", "https://data.delijn.be/stops/103821"], ["https://data.delijn.be/stops/505213", "https://data.delijn.be/stops/505921"], ["https://data.delijn.be/stops/505543", "https://data.delijn.be/stops/509588"], ["https://data.delijn.be/stops/502052", "https://data.delijn.be/stops/507028"], ["https://data.delijn.be/stops/104028", "https://data.delijn.be/stops/104029"], ["https://data.delijn.be/stops/503193", "https://data.delijn.be/stops/503208"], ["https://data.delijn.be/stops/300111", "https://data.delijn.be/stops/300112"], ["https://data.delijn.be/stops/201263", "https://data.delijn.be/stops/202549"], ["https://data.delijn.be/stops/302143", "https://data.delijn.be/stops/306272"], ["https://data.delijn.be/stops/102875", "https://data.delijn.be/stops/102910"], ["https://data.delijn.be/stops/303285", "https://data.delijn.be/stops/303315"], ["https://data.delijn.be/stops/507764", "https://data.delijn.be/stops/509819"], ["https://data.delijn.be/stops/502572", "https://data.delijn.be/stops/506729"], ["https://data.delijn.be/stops/205310", "https://data.delijn.be/stops/205311"], ["https://data.delijn.be/stops/304567", "https://data.delijn.be/stops/304578"], ["https://data.delijn.be/stops/304856", "https://data.delijn.be/stops/304857"], ["https://data.delijn.be/stops/401386", "https://data.delijn.be/stops/410181"], ["https://data.delijn.be/stops/300230", "https://data.delijn.be/stops/300233"], ["https://data.delijn.be/stops/205284", "https://data.delijn.be/stops/205337"], ["https://data.delijn.be/stops/304876", "https://data.delijn.be/stops/307054"], ["https://data.delijn.be/stops/205817", "https://data.delijn.be/stops/205819"], ["https://data.delijn.be/stops/208477", "https://data.delijn.be/stops/209477"], ["https://data.delijn.be/stops/204154", "https://data.delijn.be/stops/204583"], ["https://data.delijn.be/stops/406879", "https://data.delijn.be/stops/409414"], ["https://data.delijn.be/stops/200975", "https://data.delijn.be/stops/206758"], ["https://data.delijn.be/stops/406076", "https://data.delijn.be/stops/406085"], ["https://data.delijn.be/stops/206504", "https://data.delijn.be/stops/207150"], ["https://data.delijn.be/stops/405641", "https://data.delijn.be/stops/405642"], ["https://data.delijn.be/stops/206895", "https://data.delijn.be/stops/207895"], ["https://data.delijn.be/stops/202165", "https://data.delijn.be/stops/203165"], ["https://data.delijn.be/stops/208552", "https://data.delijn.be/stops/208568"], ["https://data.delijn.be/stops/208153", "https://data.delijn.be/stops/209153"], ["https://data.delijn.be/stops/403283", "https://data.delijn.be/stops/403300"], ["https://data.delijn.be/stops/403659", "https://data.delijn.be/stops/404849"], ["https://data.delijn.be/stops/202497", "https://data.delijn.be/stops/209867"], ["https://data.delijn.be/stops/201162", "https://data.delijn.be/stops/201313"], ["https://data.delijn.be/stops/200904", "https://data.delijn.be/stops/200946"], ["https://data.delijn.be/stops/505534", "https://data.delijn.be/stops/508657"], ["https://data.delijn.be/stops/201744", "https://data.delijn.be/stops/203782"], ["https://data.delijn.be/stops/409277", "https://data.delijn.be/stops/409330"], ["https://data.delijn.be/stops/108048", "https://data.delijn.be/stops/108049"], ["https://data.delijn.be/stops/505034", "https://data.delijn.be/stops/505035"], ["https://data.delijn.be/stops/106180", "https://data.delijn.be/stops/107442"], ["https://data.delijn.be/stops/403911", "https://data.delijn.be/stops/404033"], ["https://data.delijn.be/stops/302196", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/409067", "https://data.delijn.be/stops/409156"], ["https://data.delijn.be/stops/400403", "https://data.delijn.be/stops/409431"], ["https://data.delijn.be/stops/501258", "https://data.delijn.be/stops/506259"], ["https://data.delijn.be/stops/404636", "https://data.delijn.be/stops/404637"], ["https://data.delijn.be/stops/302232", "https://data.delijn.be/stops/302241"], ["https://data.delijn.be/stops/107143", "https://data.delijn.be/stops/108931"], ["https://data.delijn.be/stops/504871", "https://data.delijn.be/stops/509967"], ["https://data.delijn.be/stops/204156", "https://data.delijn.be/stops/205156"], ["https://data.delijn.be/stops/505072", "https://data.delijn.be/stops/505756"], ["https://data.delijn.be/stops/407992", "https://data.delijn.be/stops/408089"], ["https://data.delijn.be/stops/407370", "https://data.delijn.be/stops/407371"], ["https://data.delijn.be/stops/109630", "https://data.delijn.be/stops/109632"], ["https://data.delijn.be/stops/104422", "https://data.delijn.be/stops/204287"], ["https://data.delijn.be/stops/102265", "https://data.delijn.be/stops/103353"], ["https://data.delijn.be/stops/300538", "https://data.delijn.be/stops/300539"], ["https://data.delijn.be/stops/103860", "https://data.delijn.be/stops/108060"], ["https://data.delijn.be/stops/305801", "https://data.delijn.be/stops/305802"], ["https://data.delijn.be/stops/206494", "https://data.delijn.be/stops/206495"], ["https://data.delijn.be/stops/400265", "https://data.delijn.be/stops/405534"], ["https://data.delijn.be/stops/202268", "https://data.delijn.be/stops/202269"], ["https://data.delijn.be/stops/407860", "https://data.delijn.be/stops/305683"], ["https://data.delijn.be/stops/503627", "https://data.delijn.be/stops/503628"], ["https://data.delijn.be/stops/204111", "https://data.delijn.be/stops/204112"], ["https://data.delijn.be/stops/505050", "https://data.delijn.be/stops/505051"], ["https://data.delijn.be/stops/406525", "https://data.delijn.be/stops/406643"], ["https://data.delijn.be/stops/404680", "https://data.delijn.be/stops/404681"], ["https://data.delijn.be/stops/400158", "https://data.delijn.be/stops/400159"], ["https://data.delijn.be/stops/405300", "https://data.delijn.be/stops/302854"], ["https://data.delijn.be/stops/504630", "https://data.delijn.be/stops/505799"], ["https://data.delijn.be/stops/300548", "https://data.delijn.be/stops/307864"], ["https://data.delijn.be/stops/301229", "https://data.delijn.be/stops/306828"], ["https://data.delijn.be/stops/206528", "https://data.delijn.be/stops/206927"], ["https://data.delijn.be/stops/101368", "https://data.delijn.be/stops/101402"], ["https://data.delijn.be/stops/107962", "https://data.delijn.be/stops/107963"], ["https://data.delijn.be/stops/302134", "https://data.delijn.be/stops/306268"], ["https://data.delijn.be/stops/507764", "https://data.delijn.be/stops/508189"], ["https://data.delijn.be/stops/404336", "https://data.delijn.be/stops/404396"], ["https://data.delijn.be/stops/103165", "https://data.delijn.be/stops/103348"], ["https://data.delijn.be/stops/501090", "https://data.delijn.be/stops/502208"], ["https://data.delijn.be/stops/208152", "https://data.delijn.be/stops/208506"], ["https://data.delijn.be/stops/101987", "https://data.delijn.be/stops/104995"], ["https://data.delijn.be/stops/407151", "https://data.delijn.be/stops/302832"], ["https://data.delijn.be/stops/407503", "https://data.delijn.be/stops/410254"], ["https://data.delijn.be/stops/407104", "https://data.delijn.be/stops/407343"], ["https://data.delijn.be/stops/109225", "https://data.delijn.be/stops/109713"], ["https://data.delijn.be/stops/302192", "https://data.delijn.be/stops/302193"], ["https://data.delijn.be/stops/503331", "https://data.delijn.be/stops/508331"], ["https://data.delijn.be/stops/302255", "https://data.delijn.be/stops/304349"], ["https://data.delijn.be/stops/405082", "https://data.delijn.be/stops/405692"], ["https://data.delijn.be/stops/301612", "https://data.delijn.be/stops/304272"], ["https://data.delijn.be/stops/104669", "https://data.delijn.be/stops/107382"], ["https://data.delijn.be/stops/502700", "https://data.delijn.be/stops/505147"], ["https://data.delijn.be/stops/204686", "https://data.delijn.be/stops/204696"], ["https://data.delijn.be/stops/208080", "https://data.delijn.be/stops/218015"], ["https://data.delijn.be/stops/202472", "https://data.delijn.be/stops/209852"], ["https://data.delijn.be/stops/106459", "https://data.delijn.be/stops/106461"], ["https://data.delijn.be/stops/204257", "https://data.delijn.be/stops/205264"], ["https://data.delijn.be/stops/104004", "https://data.delijn.be/stops/108540"], ["https://data.delijn.be/stops/300135", "https://data.delijn.be/stops/306819"], ["https://data.delijn.be/stops/104502", "https://data.delijn.be/stops/104503"], ["https://data.delijn.be/stops/305383", "https://data.delijn.be/stops/305418"], ["https://data.delijn.be/stops/403616", "https://data.delijn.be/stops/403617"], ["https://data.delijn.be/stops/304995", "https://data.delijn.be/stops/305041"], ["https://data.delijn.be/stops/406016", "https://data.delijn.be/stops/406017"], ["https://data.delijn.be/stops/103272", "https://data.delijn.be/stops/109987"], ["https://data.delijn.be/stops/402114", "https://data.delijn.be/stops/402138"], ["https://data.delijn.be/stops/209648", "https://data.delijn.be/stops/211041"], ["https://data.delijn.be/stops/405390", "https://data.delijn.be/stops/405392"], ["https://data.delijn.be/stops/109110", "https://data.delijn.be/stops/109113"], ["https://data.delijn.be/stops/501082", "https://data.delijn.be/stops/502238"], ["https://data.delijn.be/stops/504796", "https://data.delijn.be/stops/504797"], ["https://data.delijn.be/stops/504760", "https://data.delijn.be/stops/508532"], ["https://data.delijn.be/stops/304271", "https://data.delijn.be/stops/304282"], ["https://data.delijn.be/stops/301456", "https://data.delijn.be/stops/301507"], ["https://data.delijn.be/stops/207958", "https://data.delijn.be/stops/308573"], ["https://data.delijn.be/stops/501684", "https://data.delijn.be/stops/506169"], ["https://data.delijn.be/stops/202873", "https://data.delijn.be/stops/209712"], ["https://data.delijn.be/stops/303542", "https://data.delijn.be/stops/303552"], ["https://data.delijn.be/stops/101291", "https://data.delijn.be/stops/101515"], ["https://data.delijn.be/stops/405714", "https://data.delijn.be/stops/410355"], ["https://data.delijn.be/stops/101456", "https://data.delijn.be/stops/107056"], ["https://data.delijn.be/stops/208590", "https://data.delijn.be/stops/209590"], ["https://data.delijn.be/stops/203274", "https://data.delijn.be/stops/203670"], ["https://data.delijn.be/stops/406920", "https://data.delijn.be/stops/409485"], ["https://data.delijn.be/stops/505097", "https://data.delijn.be/stops/505944"], ["https://data.delijn.be/stops/208266", "https://data.delijn.be/stops/208847"], ["https://data.delijn.be/stops/505081", "https://data.delijn.be/stops/505752"], ["https://data.delijn.be/stops/204784", "https://data.delijn.be/stops/205150"], ["https://data.delijn.be/stops/501094", "https://data.delijn.be/stops/501483"], ["https://data.delijn.be/stops/504426", "https://data.delijn.be/stops/505997"], ["https://data.delijn.be/stops/203208", "https://data.delijn.be/stops/203504"], ["https://data.delijn.be/stops/300794", "https://data.delijn.be/stops/300801"], ["https://data.delijn.be/stops/302109", "https://data.delijn.be/stops/302120"], ["https://data.delijn.be/stops/300488", "https://data.delijn.be/stops/300509"], ["https://data.delijn.be/stops/202028", "https://data.delijn.be/stops/203028"], ["https://data.delijn.be/stops/408234", "https://data.delijn.be/stops/408247"], ["https://data.delijn.be/stops/407052", "https://data.delijn.be/stops/407053"], ["https://data.delijn.be/stops/200074", "https://data.delijn.be/stops/203352"], ["https://data.delijn.be/stops/407607", "https://data.delijn.be/stops/407767"], ["https://data.delijn.be/stops/201877", "https://data.delijn.be/stops/202414"], ["https://data.delijn.be/stops/403979", "https://data.delijn.be/stops/403981"], ["https://data.delijn.be/stops/105189", "https://data.delijn.be/stops/105192"], ["https://data.delijn.be/stops/406452", "https://data.delijn.be/stops/409397"], ["https://data.delijn.be/stops/508782", "https://data.delijn.be/stops/508785"], ["https://data.delijn.be/stops/501638", "https://data.delijn.be/stops/506641"], ["https://data.delijn.be/stops/403104", "https://data.delijn.be/stops/403445"], ["https://data.delijn.be/stops/105462", "https://data.delijn.be/stops/109895"], ["https://data.delijn.be/stops/502606", "https://data.delijn.be/stops/505705"], ["https://data.delijn.be/stops/204695", "https://data.delijn.be/stops/205692"], ["https://data.delijn.be/stops/103123", "https://data.delijn.be/stops/103124"], ["https://data.delijn.be/stops/502512", "https://data.delijn.be/stops/507363"], ["https://data.delijn.be/stops/300184", "https://data.delijn.be/stops/300186"], ["https://data.delijn.be/stops/503011", "https://data.delijn.be/stops/508011"], ["https://data.delijn.be/stops/300764", "https://data.delijn.be/stops/302402"], ["https://data.delijn.be/stops/109003", "https://data.delijn.be/stops/405030"], ["https://data.delijn.be/stops/303652", "https://data.delijn.be/stops/304913"], ["https://data.delijn.be/stops/401471", "https://data.delijn.be/stops/401546"], ["https://data.delijn.be/stops/303307", "https://data.delijn.be/stops/303312"], ["https://data.delijn.be/stops/201525", "https://data.delijn.be/stops/204911"], ["https://data.delijn.be/stops/208586", "https://data.delijn.be/stops/209586"], ["https://data.delijn.be/stops/304249", "https://data.delijn.be/stops/304253"], ["https://data.delijn.be/stops/103098", "https://data.delijn.be/stops/104407"], ["https://data.delijn.be/stops/200325", "https://data.delijn.be/stops/201325"], ["https://data.delijn.be/stops/300772", "https://data.delijn.be/stops/303121"], ["https://data.delijn.be/stops/304615", "https://data.delijn.be/stops/304616"], ["https://data.delijn.be/stops/104746", "https://data.delijn.be/stops/104747"], ["https://data.delijn.be/stops/300994", "https://data.delijn.be/stops/301000"], ["https://data.delijn.be/stops/102408", "https://data.delijn.be/stops/109034"], ["https://data.delijn.be/stops/203870", "https://data.delijn.be/stops/209723"], ["https://data.delijn.be/stops/104046", "https://data.delijn.be/stops/306591"], ["https://data.delijn.be/stops/204656", "https://data.delijn.be/stops/205656"], ["https://data.delijn.be/stops/305003", "https://data.delijn.be/stops/305004"], ["https://data.delijn.be/stops/301719", "https://data.delijn.be/stops/301720"], ["https://data.delijn.be/stops/202337", "https://data.delijn.be/stops/203331"], ["https://data.delijn.be/stops/106277", "https://data.delijn.be/stops/106343"], ["https://data.delijn.be/stops/302986", "https://data.delijn.be/stops/306647"], ["https://data.delijn.be/stops/104822", "https://data.delijn.be/stops/108505"], ["https://data.delijn.be/stops/302616", "https://data.delijn.be/stops/302618"], ["https://data.delijn.be/stops/208084", "https://data.delijn.be/stops/208517"], ["https://data.delijn.be/stops/502644", "https://data.delijn.be/stops/507644"], ["https://data.delijn.be/stops/504081", "https://data.delijn.be/stops/505803"], ["https://data.delijn.be/stops/307968", "https://data.delijn.be/stops/307970"], ["https://data.delijn.be/stops/301943", "https://data.delijn.be/stops/305913"], ["https://data.delijn.be/stops/405394", "https://data.delijn.be/stops/408941"], ["https://data.delijn.be/stops/406197", "https://data.delijn.be/stops/406280"], ["https://data.delijn.be/stops/501270", "https://data.delijn.be/stops/501328"], ["https://data.delijn.be/stops/203578", "https://data.delijn.be/stops/211851"], ["https://data.delijn.be/stops/301478", "https://data.delijn.be/stops/304622"], ["https://data.delijn.be/stops/407826", "https://data.delijn.be/stops/407827"], ["https://data.delijn.be/stops/301195", "https://data.delijn.be/stops/308258"], ["https://data.delijn.be/stops/107193", "https://data.delijn.be/stops/109383"], ["https://data.delijn.be/stops/106893", "https://data.delijn.be/stops/107218"], ["https://data.delijn.be/stops/208670", "https://data.delijn.be/stops/208809"], ["https://data.delijn.be/stops/208157", "https://data.delijn.be/stops/208194"], ["https://data.delijn.be/stops/305209", "https://data.delijn.be/stops/306911"], ["https://data.delijn.be/stops/408513", "https://data.delijn.be/stops/408684"], ["https://data.delijn.be/stops/305103", "https://data.delijn.be/stops/305122"], ["https://data.delijn.be/stops/408202", "https://data.delijn.be/stops/408225"], ["https://data.delijn.be/stops/101828", "https://data.delijn.be/stops/107107"], ["https://data.delijn.be/stops/501746", "https://data.delijn.be/stops/505824"], ["https://data.delijn.be/stops/207868", "https://data.delijn.be/stops/209747"], ["https://data.delijn.be/stops/501250", "https://data.delijn.be/stops/501259"], ["https://data.delijn.be/stops/404872", "https://data.delijn.be/stops/404884"], ["https://data.delijn.be/stops/404007", "https://data.delijn.be/stops/404012"], ["https://data.delijn.be/stops/400946", "https://data.delijn.be/stops/406730"], ["https://data.delijn.be/stops/106089", "https://data.delijn.be/stops/106139"], ["https://data.delijn.be/stops/206995", "https://data.delijn.be/stops/207995"], ["https://data.delijn.be/stops/410249", "https://data.delijn.be/stops/410250"], ["https://data.delijn.be/stops/306552", "https://data.delijn.be/stops/307897"], ["https://data.delijn.be/stops/205674", "https://data.delijn.be/stops/205676"], ["https://data.delijn.be/stops/102297", "https://data.delijn.be/stops/106588"], ["https://data.delijn.be/stops/206377", "https://data.delijn.be/stops/207725"], ["https://data.delijn.be/stops/503535", "https://data.delijn.be/stops/508713"], ["https://data.delijn.be/stops/206009", "https://data.delijn.be/stops/206264"], ["https://data.delijn.be/stops/403417", "https://data.delijn.be/stops/403443"], ["https://data.delijn.be/stops/209119", "https://data.delijn.be/stops/219008"], ["https://data.delijn.be/stops/104507", "https://data.delijn.be/stops/107927"], ["https://data.delijn.be/stops/107284", "https://data.delijn.be/stops/107287"], ["https://data.delijn.be/stops/107055", "https://data.delijn.be/stops/108605"], ["https://data.delijn.be/stops/407050", "https://data.delijn.be/stops/407076"], ["https://data.delijn.be/stops/200026", "https://data.delijn.be/stops/208845"], ["https://data.delijn.be/stops/408550", "https://data.delijn.be/stops/408687"], ["https://data.delijn.be/stops/307722", "https://data.delijn.be/stops/307724"], ["https://data.delijn.be/stops/302661", "https://data.delijn.be/stops/302694"], ["https://data.delijn.be/stops/101958", "https://data.delijn.be/stops/108324"], ["https://data.delijn.be/stops/204117", "https://data.delijn.be/stops/204690"], ["https://data.delijn.be/stops/302285", "https://data.delijn.be/stops/302289"], ["https://data.delijn.be/stops/102608", "https://data.delijn.be/stops/105526"], ["https://data.delijn.be/stops/103502", "https://data.delijn.be/stops/106317"], ["https://data.delijn.be/stops/109496", "https://data.delijn.be/stops/305632"], ["https://data.delijn.be/stops/206453", "https://data.delijn.be/stops/207452"], ["https://data.delijn.be/stops/500048", "https://data.delijn.be/stops/500049"], ["https://data.delijn.be/stops/108484", "https://data.delijn.be/stops/306602"], ["https://data.delijn.be/stops/200578", "https://data.delijn.be/stops/201732"], ["https://data.delijn.be/stops/500944", "https://data.delijn.be/stops/504139"], ["https://data.delijn.be/stops/305714", "https://data.delijn.be/stops/307926"], ["https://data.delijn.be/stops/202392", "https://data.delijn.be/stops/203392"], ["https://data.delijn.be/stops/403386", "https://data.delijn.be/stops/403465"], ["https://data.delijn.be/stops/400832", "https://data.delijn.be/stops/400833"], ["https://data.delijn.be/stops/104943", "https://data.delijn.be/stops/106496"], ["https://data.delijn.be/stops/404408", "https://data.delijn.be/stops/404414"], ["https://data.delijn.be/stops/503982", "https://data.delijn.be/stops/505966"], ["https://data.delijn.be/stops/207299", "https://data.delijn.be/stops/207860"], ["https://data.delijn.be/stops/202182", "https://data.delijn.be/stops/205235"], ["https://data.delijn.be/stops/205052", "https://data.delijn.be/stops/205053"], ["https://data.delijn.be/stops/105776", "https://data.delijn.be/stops/105777"], ["https://data.delijn.be/stops/404249", "https://data.delijn.be/stops/404352"], ["https://data.delijn.be/stops/201687", "https://data.delijn.be/stops/202503"], ["https://data.delijn.be/stops/206027", "https://data.delijn.be/stops/206206"], ["https://data.delijn.be/stops/403996", "https://data.delijn.be/stops/405936"], ["https://data.delijn.be/stops/208452", "https://data.delijn.be/stops/209699"], ["https://data.delijn.be/stops/400969", "https://data.delijn.be/stops/400970"], ["https://data.delijn.be/stops/206004", "https://data.delijn.be/stops/206005"], ["https://data.delijn.be/stops/402490", "https://data.delijn.be/stops/406884"], ["https://data.delijn.be/stops/206233", "https://data.delijn.be/stops/207233"], ["https://data.delijn.be/stops/103230", "https://data.delijn.be/stops/108570"], ["https://data.delijn.be/stops/400709", "https://data.delijn.be/stops/401910"], ["https://data.delijn.be/stops/105573", "https://data.delijn.be/stops/105577"], ["https://data.delijn.be/stops/507508", "https://data.delijn.be/stops/507536"], ["https://data.delijn.be/stops/507174", "https://data.delijn.be/stops/507181"], ["https://data.delijn.be/stops/407860", "https://data.delijn.be/stops/306304"], ["https://data.delijn.be/stops/502369", "https://data.delijn.be/stops/507369"], ["https://data.delijn.be/stops/502458", "https://data.delijn.be/stops/502463"], ["https://data.delijn.be/stops/504540", "https://data.delijn.be/stops/509902"], ["https://data.delijn.be/stops/108608", "https://data.delijn.be/stops/300066"], ["https://data.delijn.be/stops/305337", "https://data.delijn.be/stops/305338"], ["https://data.delijn.be/stops/302275", "https://data.delijn.be/stops/306784"], ["https://data.delijn.be/stops/303769", "https://data.delijn.be/stops/303770"], ["https://data.delijn.be/stops/403571", "https://data.delijn.be/stops/404960"], ["https://data.delijn.be/stops/505521", "https://data.delijn.be/stops/505622"], ["https://data.delijn.be/stops/101797", "https://data.delijn.be/stops/108524"], ["https://data.delijn.be/stops/400981", "https://data.delijn.be/stops/400983"], ["https://data.delijn.be/stops/408326", "https://data.delijn.be/stops/408327"], ["https://data.delijn.be/stops/305597", "https://data.delijn.be/stops/306268"], ["https://data.delijn.be/stops/106106", "https://data.delijn.be/stops/106161"], ["https://data.delijn.be/stops/502059", "https://data.delijn.be/stops/507027"], ["https://data.delijn.be/stops/104239", "https://data.delijn.be/stops/106875"], ["https://data.delijn.be/stops/505148", "https://data.delijn.be/stops/506093"], ["https://data.delijn.be/stops/406073", "https://data.delijn.be/stops/406078"], ["https://data.delijn.be/stops/207334", "https://data.delijn.be/stops/207335"], ["https://data.delijn.be/stops/101367", "https://data.delijn.be/stops/106418"], ["https://data.delijn.be/stops/508721", "https://data.delijn.be/stops/508739"], ["https://data.delijn.be/stops/503177", "https://data.delijn.be/stops/508162"], ["https://data.delijn.be/stops/109553", "https://data.delijn.be/stops/109784"], ["https://data.delijn.be/stops/201848", "https://data.delijn.be/stops/210020"], ["https://data.delijn.be/stops/108419", "https://data.delijn.be/stops/108466"], ["https://data.delijn.be/stops/505198", "https://data.delijn.be/stops/505199"], ["https://data.delijn.be/stops/404854", "https://data.delijn.be/stops/404855"], ["https://data.delijn.be/stops/502478", "https://data.delijn.be/stops/505739"], ["https://data.delijn.be/stops/304972", "https://data.delijn.be/stops/304974"], ["https://data.delijn.be/stops/205430", "https://data.delijn.be/stops/205431"], ["https://data.delijn.be/stops/109552", "https://data.delijn.be/stops/300028"], ["https://data.delijn.be/stops/402708", "https://data.delijn.be/stops/402709"], ["https://data.delijn.be/stops/201581", "https://data.delijn.be/stops/201733"], ["https://data.delijn.be/stops/400402", "https://data.delijn.be/stops/400403"], ["https://data.delijn.be/stops/404150", "https://data.delijn.be/stops/407365"], ["https://data.delijn.be/stops/304815", "https://data.delijn.be/stops/304825"], ["https://data.delijn.be/stops/410140", "https://data.delijn.be/stops/410141"], ["https://data.delijn.be/stops/301777", "https://data.delijn.be/stops/301778"], ["https://data.delijn.be/stops/402976", "https://data.delijn.be/stops/403327"], ["https://data.delijn.be/stops/208390", "https://data.delijn.be/stops/208745"], ["https://data.delijn.be/stops/206174", "https://data.delijn.be/stops/207066"], ["https://data.delijn.be/stops/302210", "https://data.delijn.be/stops/302234"], ["https://data.delijn.be/stops/108243", "https://data.delijn.be/stops/108246"], ["https://data.delijn.be/stops/406788", "https://data.delijn.be/stops/406835"], ["https://data.delijn.be/stops/301634", "https://data.delijn.be/stops/301642"], ["https://data.delijn.be/stops/408168", "https://data.delijn.be/stops/409543"], ["https://data.delijn.be/stops/503305", "https://data.delijn.be/stops/505990"], ["https://data.delijn.be/stops/201851", "https://data.delijn.be/stops/202657"], ["https://data.delijn.be/stops/200760", "https://data.delijn.be/stops/208306"], ["https://data.delijn.be/stops/505186", "https://data.delijn.be/stops/509562"], ["https://data.delijn.be/stops/408093", "https://data.delijn.be/stops/408157"], ["https://data.delijn.be/stops/104975", "https://data.delijn.be/stops/105065"], ["https://data.delijn.be/stops/104337", "https://data.delijn.be/stops/104338"], ["https://data.delijn.be/stops/505645", "https://data.delijn.be/stops/509149"], ["https://data.delijn.be/stops/503084", "https://data.delijn.be/stops/507820"], ["https://data.delijn.be/stops/305345", "https://data.delijn.be/stops/305349"], ["https://data.delijn.be/stops/504560", "https://data.delijn.be/stops/505362"], ["https://data.delijn.be/stops/101907", "https://data.delijn.be/stops/101914"], ["https://data.delijn.be/stops/502398", "https://data.delijn.be/stops/507384"], ["https://data.delijn.be/stops/200625", "https://data.delijn.be/stops/201202"], ["https://data.delijn.be/stops/403296", "https://data.delijn.be/stops/403309"], ["https://data.delijn.be/stops/400882", "https://data.delijn.be/stops/400883"], ["https://data.delijn.be/stops/105491", "https://data.delijn.be/stops/105504"], ["https://data.delijn.be/stops/505380", "https://data.delijn.be/stops/508107"], ["https://data.delijn.be/stops/506150", "https://data.delijn.be/stops/509835"], ["https://data.delijn.be/stops/505059", "https://data.delijn.be/stops/505651"], ["https://data.delijn.be/stops/301437", "https://data.delijn.be/stops/301441"], ["https://data.delijn.be/stops/404513", "https://data.delijn.be/stops/405357"], ["https://data.delijn.be/stops/407922", "https://data.delijn.be/stops/408058"], ["https://data.delijn.be/stops/202278", "https://data.delijn.be/stops/202663"], ["https://data.delijn.be/stops/209381", "https://data.delijn.be/stops/209382"], ["https://data.delijn.be/stops/400375", "https://data.delijn.be/stops/400436"], ["https://data.delijn.be/stops/109144", "https://data.delijn.be/stops/109152"], ["https://data.delijn.be/stops/402140", "https://data.delijn.be/stops/402379"], ["https://data.delijn.be/stops/201355", "https://data.delijn.be/stops/201356"], ["https://data.delijn.be/stops/205108", "https://data.delijn.be/stops/205109"], ["https://data.delijn.be/stops/503648", "https://data.delijn.be/stops/508950"], ["https://data.delijn.be/stops/400032", "https://data.delijn.be/stops/407101"], ["https://data.delijn.be/stops/206680", "https://data.delijn.be/stops/207936"], ["https://data.delijn.be/stops/407964", "https://data.delijn.be/stops/407967"], ["https://data.delijn.be/stops/408314", "https://data.delijn.be/stops/408343"], ["https://data.delijn.be/stops/103722", "https://data.delijn.be/stops/108537"], ["https://data.delijn.be/stops/400039", "https://data.delijn.be/stops/400351"], ["https://data.delijn.be/stops/501205", "https://data.delijn.be/stops/501290"], ["https://data.delijn.be/stops/106162", "https://data.delijn.be/stops/106451"], ["https://data.delijn.be/stops/504106", "https://data.delijn.be/stops/505212"], ["https://data.delijn.be/stops/202703", "https://data.delijn.be/stops/202704"], ["https://data.delijn.be/stops/300536", "https://data.delijn.be/stops/302349"], ["https://data.delijn.be/stops/104980", "https://data.delijn.be/stops/107805"], ["https://data.delijn.be/stops/504436", "https://data.delijn.be/stops/509430"], ["https://data.delijn.be/stops/101152", "https://data.delijn.be/stops/106749"], ["https://data.delijn.be/stops/503781", "https://data.delijn.be/stops/503887"], ["https://data.delijn.be/stops/504592", "https://data.delijn.be/stops/509592"], ["https://data.delijn.be/stops/202292", "https://data.delijn.be/stops/203292"], ["https://data.delijn.be/stops/204791", "https://data.delijn.be/stops/205575"], ["https://data.delijn.be/stops/408109", "https://data.delijn.be/stops/408158"], ["https://data.delijn.be/stops/302458", "https://data.delijn.be/stops/302459"], ["https://data.delijn.be/stops/502283", "https://data.delijn.be/stops/502317"], ["https://data.delijn.be/stops/108201", "https://data.delijn.be/stops/108202"], ["https://data.delijn.be/stops/204212", "https://data.delijn.be/stops/206310"], ["https://data.delijn.be/stops/400800", "https://data.delijn.be/stops/400828"], ["https://data.delijn.be/stops/405802", "https://data.delijn.be/stops/405803"], ["https://data.delijn.be/stops/105168", "https://data.delijn.be/stops/105173"], ["https://data.delijn.be/stops/206935", "https://data.delijn.be/stops/207935"], ["https://data.delijn.be/stops/200190", "https://data.delijn.be/stops/201689"], ["https://data.delijn.be/stops/209409", "https://data.delijn.be/stops/209410"], ["https://data.delijn.be/stops/107312", "https://data.delijn.be/stops/108808"], ["https://data.delijn.be/stops/408143", "https://data.delijn.be/stops/307452"], ["https://data.delijn.be/stops/505953", "https://data.delijn.be/stops/508139"], ["https://data.delijn.be/stops/400732", "https://data.delijn.be/stops/400734"], ["https://data.delijn.be/stops/300272", "https://data.delijn.be/stops/307494"], ["https://data.delijn.be/stops/508158", "https://data.delijn.be/stops/508175"], ["https://data.delijn.be/stops/301043", "https://data.delijn.be/stops/301066"], ["https://data.delijn.be/stops/401150", "https://data.delijn.be/stops/409141"], ["https://data.delijn.be/stops/202172", "https://data.delijn.be/stops/203172"], ["https://data.delijn.be/stops/201976", "https://data.delijn.be/stops/207481"], ["https://data.delijn.be/stops/205129", "https://data.delijn.be/stops/205790"], ["https://data.delijn.be/stops/101780", "https://data.delijn.be/stops/102350"], ["https://data.delijn.be/stops/101799", "https://data.delijn.be/stops/108516"], ["https://data.delijn.be/stops/108437", "https://data.delijn.be/stops/109572"], ["https://data.delijn.be/stops/500011", "https://data.delijn.be/stops/505560"], ["https://data.delijn.be/stops/303317", "https://data.delijn.be/stops/303335"], ["https://data.delijn.be/stops/403199", "https://data.delijn.be/stops/403201"], ["https://data.delijn.be/stops/505193", "https://data.delijn.be/stops/505288"], ["https://data.delijn.be/stops/108009", "https://data.delijn.be/stops/109048"], ["https://data.delijn.be/stops/301895", "https://data.delijn.be/stops/305727"], ["https://data.delijn.be/stops/405070", "https://data.delijn.be/stops/408373"], ["https://data.delijn.be/stops/405148", "https://data.delijn.be/stops/405201"], ["https://data.delijn.be/stops/400133", "https://data.delijn.be/stops/400153"], ["https://data.delijn.be/stops/108118", "https://data.delijn.be/stops/108119"], ["https://data.delijn.be/stops/107372", "https://data.delijn.be/stops/107377"], ["https://data.delijn.be/stops/103971", "https://data.delijn.be/stops/106155"], ["https://data.delijn.be/stops/103245", "https://data.delijn.be/stops/107725"], ["https://data.delijn.be/stops/405142", "https://data.delijn.be/stops/406726"], ["https://data.delijn.be/stops/202224", "https://data.delijn.be/stops/203224"], ["https://data.delijn.be/stops/307522", "https://data.delijn.be/stops/308592"], ["https://data.delijn.be/stops/503034", "https://data.delijn.be/stops/508034"], ["https://data.delijn.be/stops/302454", "https://data.delijn.be/stops/302456"], ["https://data.delijn.be/stops/405023", "https://data.delijn.be/stops/405055"], ["https://data.delijn.be/stops/300743", "https://data.delijn.be/stops/300797"], ["https://data.delijn.be/stops/305235", "https://data.delijn.be/stops/305305"], ["https://data.delijn.be/stops/102394", "https://data.delijn.be/stops/102396"], ["https://data.delijn.be/stops/405751", "https://data.delijn.be/stops/408191"], ["https://data.delijn.be/stops/302534", "https://data.delijn.be/stops/302536"], ["https://data.delijn.be/stops/510003", "https://data.delijn.be/stops/510004"], ["https://data.delijn.be/stops/303497", "https://data.delijn.be/stops/303505"], ["https://data.delijn.be/stops/503639", "https://data.delijn.be/stops/508638"], ["https://data.delijn.be/stops/400486", "https://data.delijn.be/stops/407215"], ["https://data.delijn.be/stops/407987", "https://data.delijn.be/stops/407999"], ["https://data.delijn.be/stops/501695", "https://data.delijn.be/stops/505705"], ["https://data.delijn.be/stops/505555", "https://data.delijn.be/stops/507180"], ["https://data.delijn.be/stops/304524", "https://data.delijn.be/stops/305603"], ["https://data.delijn.be/stops/301695", "https://data.delijn.be/stops/301696"], ["https://data.delijn.be/stops/107092", "https://data.delijn.be/stops/107093"], ["https://data.delijn.be/stops/103624", "https://data.delijn.be/stops/107737"], ["https://data.delijn.be/stops/409368", "https://data.delijn.be/stops/409369"], ["https://data.delijn.be/stops/106911", "https://data.delijn.be/stops/106914"], ["https://data.delijn.be/stops/206530", "https://data.delijn.be/stops/207529"], ["https://data.delijn.be/stops/201837", "https://data.delijn.be/stops/203401"], ["https://data.delijn.be/stops/500135", "https://data.delijn.be/stops/590330"], ["https://data.delijn.be/stops/207592", "https://data.delijn.be/stops/207948"], ["https://data.delijn.be/stops/206879", "https://data.delijn.be/stops/207038"], ["https://data.delijn.be/stops/402834", "https://data.delijn.be/stops/402839"], ["https://data.delijn.be/stops/405227", "https://data.delijn.be/stops/405234"], ["https://data.delijn.be/stops/408031", "https://data.delijn.be/stops/408062"], ["https://data.delijn.be/stops/202513", "https://data.delijn.be/stops/202514"], ["https://data.delijn.be/stops/301689", "https://data.delijn.be/stops/307974"], ["https://data.delijn.be/stops/101944", "https://data.delijn.be/stops/108789"], ["https://data.delijn.be/stops/401949", "https://data.delijn.be/stops/407276"], ["https://data.delijn.be/stops/101070", "https://data.delijn.be/stops/102800"], ["https://data.delijn.be/stops/508870", "https://data.delijn.be/stops/509756"], ["https://data.delijn.be/stops/103605", "https://data.delijn.be/stops/108924"], ["https://data.delijn.be/stops/403143", "https://data.delijn.be/stops/403368"], ["https://data.delijn.be/stops/504775", "https://data.delijn.be/stops/509596"], ["https://data.delijn.be/stops/301257", "https://data.delijn.be/stops/301260"], ["https://data.delijn.be/stops/108042", "https://data.delijn.be/stops/108045"], ["https://data.delijn.be/stops/301758", "https://data.delijn.be/stops/305946"], ["https://data.delijn.be/stops/300461", "https://data.delijn.be/stops/308081"], ["https://data.delijn.be/stops/409815", "https://data.delijn.be/stops/409822"], ["https://data.delijn.be/stops/201105", "https://data.delijn.be/stops/201939"], ["https://data.delijn.be/stops/105509", "https://data.delijn.be/stops/105512"], ["https://data.delijn.be/stops/102073", "https://data.delijn.be/stops/106940"], ["https://data.delijn.be/stops/406601", "https://data.delijn.be/stops/406644"], ["https://data.delijn.be/stops/501266", "https://data.delijn.be/stops/506783"], ["https://data.delijn.be/stops/306627", "https://data.delijn.be/stops/308457"], ["https://data.delijn.be/stops/403128", "https://data.delijn.be/stops/409313"], ["https://data.delijn.be/stops/104602", "https://data.delijn.be/stops/108047"], ["https://data.delijn.be/stops/101530", "https://data.delijn.be/stops/102820"], ["https://data.delijn.be/stops/107350", "https://data.delijn.be/stops/108065"], ["https://data.delijn.be/stops/402491", "https://data.delijn.be/stops/406884"], ["https://data.delijn.be/stops/504770", "https://data.delijn.be/stops/505193"], ["https://data.delijn.be/stops/406858", "https://data.delijn.be/stops/406859"], ["https://data.delijn.be/stops/405710", "https://data.delijn.be/stops/408277"], ["https://data.delijn.be/stops/506134", "https://data.delijn.be/stops/506140"], ["https://data.delijn.be/stops/200415", "https://data.delijn.be/stops/201416"], ["https://data.delijn.be/stops/201431", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/206428", "https://data.delijn.be/stops/209712"], ["https://data.delijn.be/stops/505785", "https://data.delijn.be/stops/509418"], ["https://data.delijn.be/stops/102169", "https://data.delijn.be/stops/103233"], ["https://data.delijn.be/stops/408957", "https://data.delijn.be/stops/408964"], ["https://data.delijn.be/stops/303151", "https://data.delijn.be/stops/303153"], ["https://data.delijn.be/stops/300947", "https://data.delijn.be/stops/308903"], ["https://data.delijn.be/stops/403290", "https://data.delijn.be/stops/409317"], ["https://data.delijn.be/stops/502687", "https://data.delijn.be/stops/509945"], ["https://data.delijn.be/stops/204421", "https://data.delijn.be/stops/205418"], ["https://data.delijn.be/stops/406301", "https://data.delijn.be/stops/406317"], ["https://data.delijn.be/stops/301634", "https://data.delijn.be/stops/307766"], ["https://data.delijn.be/stops/200242", "https://data.delijn.be/stops/203142"], ["https://data.delijn.be/stops/206066", "https://data.delijn.be/stops/207120"], ["https://data.delijn.be/stops/305724", "https://data.delijn.be/stops/305725"], ["https://data.delijn.be/stops/306384", "https://data.delijn.be/stops/307220"], ["https://data.delijn.be/stops/300496", "https://data.delijn.be/stops/302076"], ["https://data.delijn.be/stops/301859", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/200958", "https://data.delijn.be/stops/203470"], ["https://data.delijn.be/stops/308058", "https://data.delijn.be/stops/308758"], ["https://data.delijn.be/stops/202225", "https://data.delijn.be/stops/202284"], ["https://data.delijn.be/stops/300897", "https://data.delijn.be/stops/300940"], ["https://data.delijn.be/stops/307361", "https://data.delijn.be/stops/307362"], ["https://data.delijn.be/stops/501257", "https://data.delijn.be/stops/506236"], ["https://data.delijn.be/stops/200659", "https://data.delijn.be/stops/205929"], ["https://data.delijn.be/stops/202932", "https://data.delijn.be/stops/208681"], ["https://data.delijn.be/stops/506092", "https://data.delijn.be/stops/506093"], ["https://data.delijn.be/stops/300536", "https://data.delijn.be/stops/300538"], ["https://data.delijn.be/stops/404112", "https://data.delijn.be/stops/404127"], ["https://data.delijn.be/stops/505169", "https://data.delijn.be/stops/509339"], ["https://data.delijn.be/stops/106907", "https://data.delijn.be/stops/106908"], ["https://data.delijn.be/stops/206798", "https://data.delijn.be/stops/209456"], ["https://data.delijn.be/stops/206438", "https://data.delijn.be/stops/206439"], ["https://data.delijn.be/stops/503850", "https://data.delijn.be/stops/510026"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/209068"], ["https://data.delijn.be/stops/304996", "https://data.delijn.be/stops/305027"], ["https://data.delijn.be/stops/407290", "https://data.delijn.be/stops/408131"], ["https://data.delijn.be/stops/102647", "https://data.delijn.be/stops/107837"], ["https://data.delijn.be/stops/300001", "https://data.delijn.be/stops/305782"], ["https://data.delijn.be/stops/102272", "https://data.delijn.be/stops/103283"], ["https://data.delijn.be/stops/303678", "https://data.delijn.be/stops/303679"], ["https://data.delijn.be/stops/402180", "https://data.delijn.be/stops/402240"], ["https://data.delijn.be/stops/107125", "https://data.delijn.be/stops/108330"], ["https://data.delijn.be/stops/106203", "https://data.delijn.be/stops/106205"], ["https://data.delijn.be/stops/504499", "https://data.delijn.be/stops/504737"], ["https://data.delijn.be/stops/200189", "https://data.delijn.be/stops/201189"], ["https://data.delijn.be/stops/504679", "https://data.delijn.be/stops/509265"], ["https://data.delijn.be/stops/502171", "https://data.delijn.be/stops/505089"], ["https://data.delijn.be/stops/200685", "https://data.delijn.be/stops/208652"], ["https://data.delijn.be/stops/302741", "https://data.delijn.be/stops/302742"], ["https://data.delijn.be/stops/103399", "https://data.delijn.be/stops/107408"], ["https://data.delijn.be/stops/108082", "https://data.delijn.be/stops/108834"], ["https://data.delijn.be/stops/406521", "https://data.delijn.be/stops/407389"], ["https://data.delijn.be/stops/205978", "https://data.delijn.be/stops/208794"], ["https://data.delijn.be/stops/301417", "https://data.delijn.be/stops/301422"], ["https://data.delijn.be/stops/402436", "https://data.delijn.be/stops/402438"], ["https://data.delijn.be/stops/508677", "https://data.delijn.be/stops/508679"], ["https://data.delijn.be/stops/306806", "https://data.delijn.be/stops/307728"], ["https://data.delijn.be/stops/300374", "https://data.delijn.be/stops/300406"], ["https://data.delijn.be/stops/509527", "https://data.delijn.be/stops/509528"], ["https://data.delijn.be/stops/206719", "https://data.delijn.be/stops/207654"], ["https://data.delijn.be/stops/300446", "https://data.delijn.be/stops/301180"], ["https://data.delijn.be/stops/106153", "https://data.delijn.be/stops/106156"], ["https://data.delijn.be/stops/404563", "https://data.delijn.be/stops/406878"], ["https://data.delijn.be/stops/304048", "https://data.delijn.be/stops/304097"], ["https://data.delijn.be/stops/502695", "https://data.delijn.be/stops/507695"], ["https://data.delijn.be/stops/204822", "https://data.delijn.be/stops/205904"], ["https://data.delijn.be/stops/210073", "https://data.delijn.be/stops/211104"], ["https://data.delijn.be/stops/105728", "https://data.delijn.be/stops/105729"], ["https://data.delijn.be/stops/205153", "https://data.delijn.be/stops/205595"], ["https://data.delijn.be/stops/104562", "https://data.delijn.be/stops/307898"], ["https://data.delijn.be/stops/300511", "https://data.delijn.be/stops/300525"], ["https://data.delijn.be/stops/204687", "https://data.delijn.be/stops/205688"], ["https://data.delijn.be/stops/507188", "https://data.delijn.be/stops/507683"], ["https://data.delijn.be/stops/208476", "https://data.delijn.be/stops/208477"], ["https://data.delijn.be/stops/406931", "https://data.delijn.be/stops/407294"], ["https://data.delijn.be/stops/108918", "https://data.delijn.be/stops/109411"], ["https://data.delijn.be/stops/304464", "https://data.delijn.be/stops/304472"], ["https://data.delijn.be/stops/302385", "https://data.delijn.be/stops/304098"], ["https://data.delijn.be/stops/206067", "https://data.delijn.be/stops/207120"], ["https://data.delijn.be/stops/505667", "https://data.delijn.be/stops/508111"], ["https://data.delijn.be/stops/103303", "https://data.delijn.be/stops/109391"], ["https://data.delijn.be/stops/502475", "https://data.delijn.be/stops/507475"], ["https://data.delijn.be/stops/105997", "https://data.delijn.be/stops/107958"], ["https://data.delijn.be/stops/408375", "https://data.delijn.be/stops/408389"], ["https://data.delijn.be/stops/105048", "https://data.delijn.be/stops/106674"], ["https://data.delijn.be/stops/104649", "https://data.delijn.be/stops/108034"], ["https://data.delijn.be/stops/401219", "https://data.delijn.be/stops/401275"], ["https://data.delijn.be/stops/502525", "https://data.delijn.be/stops/507523"], ["https://data.delijn.be/stops/202700", "https://data.delijn.be/stops/203699"], ["https://data.delijn.be/stops/504692", "https://data.delijn.be/stops/509076"], ["https://data.delijn.be/stops/206410", "https://data.delijn.be/stops/207083"], ["https://data.delijn.be/stops/506448", "https://data.delijn.be/stops/506452"], ["https://data.delijn.be/stops/301637", "https://data.delijn.be/stops/306143"], ["https://data.delijn.be/stops/407724", "https://data.delijn.be/stops/407727"], ["https://data.delijn.be/stops/300685", "https://data.delijn.be/stops/306942"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/510010"], ["https://data.delijn.be/stops/201087", "https://data.delijn.be/stops/203770"], ["https://data.delijn.be/stops/102057", "https://data.delijn.be/stops/106860"], ["https://data.delijn.be/stops/300336", "https://data.delijn.be/stops/305543"], ["https://data.delijn.be/stops/405869", "https://data.delijn.be/stops/409770"], ["https://data.delijn.be/stops/302415", "https://data.delijn.be/stops/307111"], ["https://data.delijn.be/stops/508078", "https://data.delijn.be/stops/508597"], ["https://data.delijn.be/stops/509448", "https://data.delijn.be/stops/509871"], ["https://data.delijn.be/stops/205102", "https://data.delijn.be/stops/205346"], ["https://data.delijn.be/stops/104971", "https://data.delijn.be/stops/105302"], ["https://data.delijn.be/stops/102841", "https://data.delijn.be/stops/103049"], ["https://data.delijn.be/stops/306765", "https://data.delijn.be/stops/307271"], ["https://data.delijn.be/stops/101302", "https://data.delijn.be/stops/106203"], ["https://data.delijn.be/stops/107192", "https://data.delijn.be/stops/107736"], ["https://data.delijn.be/stops/300643", "https://data.delijn.be/stops/300644"], ["https://data.delijn.be/stops/301525", "https://data.delijn.be/stops/308079"], ["https://data.delijn.be/stops/502664", "https://data.delijn.be/stops/507655"], ["https://data.delijn.be/stops/501450", "https://data.delijn.be/stops/506452"], ["https://data.delijn.be/stops/306742", "https://data.delijn.be/stops/306743"], ["https://data.delijn.be/stops/105878", "https://data.delijn.be/stops/105879"], ["https://data.delijn.be/stops/201913", "https://data.delijn.be/stops/201948"], ["https://data.delijn.be/stops/503341", "https://data.delijn.be/stops/508341"], ["https://data.delijn.be/stops/304339", "https://data.delijn.be/stops/304340"], ["https://data.delijn.be/stops/400518", "https://data.delijn.be/stops/400519"], ["https://data.delijn.be/stops/103027", "https://data.delijn.be/stops/103028"], ["https://data.delijn.be/stops/407262", "https://data.delijn.be/stops/407334"], ["https://data.delijn.be/stops/505778", "https://data.delijn.be/stops/505924"], ["https://data.delijn.be/stops/303959", "https://data.delijn.be/stops/303974"], ["https://data.delijn.be/stops/407668", "https://data.delijn.be/stops/407686"], ["https://data.delijn.be/stops/505549", "https://data.delijn.be/stops/509312"], ["https://data.delijn.be/stops/502320", "https://data.delijn.be/stops/502333"], ["https://data.delijn.be/stops/206930", "https://data.delijn.be/stops/209125"], ["https://data.delijn.be/stops/202977", "https://data.delijn.be/stops/203373"], ["https://data.delijn.be/stops/302887", "https://data.delijn.be/stops/302898"], ["https://data.delijn.be/stops/105676", "https://data.delijn.be/stops/106047"], ["https://data.delijn.be/stops/403640", "https://data.delijn.be/stops/403641"], ["https://data.delijn.be/stops/105022", "https://data.delijn.be/stops/107297"], ["https://data.delijn.be/stops/208428", "https://data.delijn.be/stops/209595"], ["https://data.delijn.be/stops/201908", "https://data.delijn.be/stops/202519"], ["https://data.delijn.be/stops/307324", "https://data.delijn.be/stops/308657"], ["https://data.delijn.be/stops/305950", "https://data.delijn.be/stops/308259"], ["https://data.delijn.be/stops/106021", "https://data.delijn.be/stops/109560"], ["https://data.delijn.be/stops/200841", "https://data.delijn.be/stops/202313"], ["https://data.delijn.be/stops/201671", "https://data.delijn.be/stops/201849"], ["https://data.delijn.be/stops/206303", "https://data.delijn.be/stops/207304"], ["https://data.delijn.be/stops/206561", "https://data.delijn.be/stops/206563"], ["https://data.delijn.be/stops/301490", "https://data.delijn.be/stops/301491"], ["https://data.delijn.be/stops/103672", "https://data.delijn.be/stops/106255"], ["https://data.delijn.be/stops/504428", "https://data.delijn.be/stops/508309"], ["https://data.delijn.be/stops/307208", "https://data.delijn.be/stops/307220"], ["https://data.delijn.be/stops/303641", "https://data.delijn.be/stops/303643"], ["https://data.delijn.be/stops/507497", "https://data.delijn.be/stops/507504"], ["https://data.delijn.be/stops/104393", "https://data.delijn.be/stops/104396"], ["https://data.delijn.be/stops/209639", "https://data.delijn.be/stops/209661"], ["https://data.delijn.be/stops/202610", "https://data.delijn.be/stops/202612"], ["https://data.delijn.be/stops/503563", "https://data.delijn.be/stops/508612"], ["https://data.delijn.be/stops/200774", "https://data.delijn.be/stops/200775"], ["https://data.delijn.be/stops/200704", "https://data.delijn.be/stops/200719"], ["https://data.delijn.be/stops/503439", "https://data.delijn.be/stops/503691"], ["https://data.delijn.be/stops/400560", "https://data.delijn.be/stops/405151"], ["https://data.delijn.be/stops/402192", "https://data.delijn.be/stops/402320"], ["https://data.delijn.be/stops/201882", "https://data.delijn.be/stops/202418"], ["https://data.delijn.be/stops/206393", "https://data.delijn.be/stops/207392"], ["https://data.delijn.be/stops/202378", "https://data.delijn.be/stops/203379"], ["https://data.delijn.be/stops/104996", "https://data.delijn.be/stops/105435"], ["https://data.delijn.be/stops/403766", "https://data.delijn.be/stops/408183"], ["https://data.delijn.be/stops/400457", "https://data.delijn.be/stops/400458"], ["https://data.delijn.be/stops/502591", "https://data.delijn.be/stops/507044"], ["https://data.delijn.be/stops/409581", "https://data.delijn.be/stops/409586"], ["https://data.delijn.be/stops/503842", "https://data.delijn.be/stops/503854"], ["https://data.delijn.be/stops/206904", "https://data.delijn.be/stops/207904"], ["https://data.delijn.be/stops/204678", "https://data.delijn.be/stops/205316"], ["https://data.delijn.be/stops/301254", "https://data.delijn.be/stops/301265"], ["https://data.delijn.be/stops/403374", "https://data.delijn.be/stops/404128"], ["https://data.delijn.be/stops/200559", "https://data.delijn.be/stops/201559"], ["https://data.delijn.be/stops/109402", "https://data.delijn.be/stops/109423"], ["https://data.delijn.be/stops/402190", "https://data.delijn.be/stops/402401"], ["https://data.delijn.be/stops/302184", "https://data.delijn.be/stops/305081"], ["https://data.delijn.be/stops/502489", "https://data.delijn.be/stops/502511"], ["https://data.delijn.be/stops/201684", "https://data.delijn.be/stops/202317"], ["https://data.delijn.be/stops/206046", "https://data.delijn.be/stops/207044"], ["https://data.delijn.be/stops/405052", "https://data.delijn.be/stops/405065"], ["https://data.delijn.be/stops/503772", "https://data.delijn.be/stops/508772"], ["https://data.delijn.be/stops/303071", "https://data.delijn.be/stops/303146"], ["https://data.delijn.be/stops/101444", "https://data.delijn.be/stops/102732"], ["https://data.delijn.be/stops/101390", "https://data.delijn.be/stops/107001"], ["https://data.delijn.be/stops/201739", "https://data.delijn.be/stops/505351"], ["https://data.delijn.be/stops/204260", "https://data.delijn.be/stops/205249"], ["https://data.delijn.be/stops/408695", "https://data.delijn.be/stops/408698"], ["https://data.delijn.be/stops/301774", "https://data.delijn.be/stops/301784"], ["https://data.delijn.be/stops/207715", "https://data.delijn.be/stops/207716"], ["https://data.delijn.be/stops/400100", "https://data.delijn.be/stops/400157"], ["https://data.delijn.be/stops/301773", "https://data.delijn.be/stops/306879"], ["https://data.delijn.be/stops/105000", "https://data.delijn.be/stops/105010"], ["https://data.delijn.be/stops/509645", "https://data.delijn.be/stops/509646"], ["https://data.delijn.be/stops/205514", "https://data.delijn.be/stops/205554"], ["https://data.delijn.be/stops/503574", "https://data.delijn.be/stops/504540"], ["https://data.delijn.be/stops/205021", "https://data.delijn.be/stops/205043"], ["https://data.delijn.be/stops/509598", "https://data.delijn.be/stops/509599"], ["https://data.delijn.be/stops/217007", "https://data.delijn.be/stops/217008"], ["https://data.delijn.be/stops/503027", "https://data.delijn.be/stops/508025"], ["https://data.delijn.be/stops/502393", "https://data.delijn.be/stops/507394"], ["https://data.delijn.be/stops/101931", "https://data.delijn.be/stops/106211"], ["https://data.delijn.be/stops/105613", "https://data.delijn.be/stops/105614"], ["https://data.delijn.be/stops/502620", "https://data.delijn.be/stops/507035"], ["https://data.delijn.be/stops/409290", "https://data.delijn.be/stops/409313"], ["https://data.delijn.be/stops/505116", "https://data.delijn.be/stops/509345"], ["https://data.delijn.be/stops/204605", "https://data.delijn.be/stops/205605"], ["https://data.delijn.be/stops/401185", "https://data.delijn.be/stops/410148"], ["https://data.delijn.be/stops/404993", "https://data.delijn.be/stops/404995"], ["https://data.delijn.be/stops/107436", "https://data.delijn.be/stops/107437"], ["https://data.delijn.be/stops/308689", "https://data.delijn.be/stops/308690"], ["https://data.delijn.be/stops/106533", "https://data.delijn.be/stops/106940"], ["https://data.delijn.be/stops/505788", "https://data.delijn.be/stops/509561"], ["https://data.delijn.be/stops/302609", "https://data.delijn.be/stops/302610"], ["https://data.delijn.be/stops/202459", "https://data.delijn.be/stops/203459"], ["https://data.delijn.be/stops/101540", "https://data.delijn.be/stops/101800"], ["https://data.delijn.be/stops/106652", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/108065", "https://data.delijn.be/stops/109120"], ["https://data.delijn.be/stops/109064", "https://data.delijn.be/stops/109067"], ["https://data.delijn.be/stops/207761", "https://data.delijn.be/stops/207789"], ["https://data.delijn.be/stops/407883", "https://data.delijn.be/stops/408189"], ["https://data.delijn.be/stops/406244", "https://data.delijn.be/stops/406245"], ["https://data.delijn.be/stops/503556", "https://data.delijn.be/stops/503572"], ["https://data.delijn.be/stops/402953", "https://data.delijn.be/stops/406711"], ["https://data.delijn.be/stops/208074", "https://data.delijn.be/stops/208075"], ["https://data.delijn.be/stops/401830", "https://data.delijn.be/stops/406040"], ["https://data.delijn.be/stops/205495", "https://data.delijn.be/stops/205509"], ["https://data.delijn.be/stops/301348", "https://data.delijn.be/stops/301349"], ["https://data.delijn.be/stops/502457", "https://data.delijn.be/stops/502458"], ["https://data.delijn.be/stops/405838", "https://data.delijn.be/stops/405839"], ["https://data.delijn.be/stops/501217", "https://data.delijn.be/stops/501633"], ["https://data.delijn.be/stops/206427", "https://data.delijn.be/stops/209712"], ["https://data.delijn.be/stops/306691", "https://data.delijn.be/stops/308785"], ["https://data.delijn.be/stops/206587", "https://data.delijn.be/stops/207919"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/400682"], ["https://data.delijn.be/stops/300703", "https://data.delijn.be/stops/306942"], ["https://data.delijn.be/stops/202678", "https://data.delijn.be/stops/202691"], ["https://data.delijn.be/stops/301798", "https://data.delijn.be/stops/301799"], ["https://data.delijn.be/stops/405165", "https://data.delijn.be/stops/405172"], ["https://data.delijn.be/stops/503507", "https://data.delijn.be/stops/508512"], ["https://data.delijn.be/stops/107549", "https://data.delijn.be/stops/107553"], ["https://data.delijn.be/stops/304358", "https://data.delijn.be/stops/306628"], ["https://data.delijn.be/stops/302570", "https://data.delijn.be/stops/302580"], ["https://data.delijn.be/stops/208699", "https://data.delijn.be/stops/208701"], ["https://data.delijn.be/stops/302604", "https://data.delijn.be/stops/302606"], ["https://data.delijn.be/stops/502175", "https://data.delijn.be/stops/502686"], ["https://data.delijn.be/stops/505192", "https://data.delijn.be/stops/505193"], ["https://data.delijn.be/stops/300243", "https://data.delijn.be/stops/304618"], ["https://data.delijn.be/stops/409431", "https://data.delijn.be/stops/409433"], ["https://data.delijn.be/stops/207888", "https://data.delijn.be/stops/207894"], ["https://data.delijn.be/stops/108181", "https://data.delijn.be/stops/108349"], ["https://data.delijn.be/stops/503874", "https://data.delijn.be/stops/508558"], ["https://data.delijn.be/stops/201673", "https://data.delijn.be/stops/202206"], ["https://data.delijn.be/stops/501140", "https://data.delijn.be/stops/506140"], ["https://data.delijn.be/stops/200157", "https://data.delijn.be/stops/207403"], ["https://data.delijn.be/stops/503223", "https://data.delijn.be/stops/508223"], ["https://data.delijn.be/stops/502491", "https://data.delijn.be/stops/507496"], ["https://data.delijn.be/stops/503181", "https://data.delijn.be/stops/508181"], ["https://data.delijn.be/stops/501508", "https://data.delijn.be/stops/501746"], ["https://data.delijn.be/stops/403213", "https://data.delijn.be/stops/403477"], ["https://data.delijn.be/stops/401566", "https://data.delijn.be/stops/401567"], ["https://data.delijn.be/stops/303312", "https://data.delijn.be/stops/303313"], ["https://data.delijn.be/stops/506032", "https://data.delijn.be/stops/506284"], ["https://data.delijn.be/stops/305408", "https://data.delijn.be/stops/305416"], ["https://data.delijn.be/stops/503677", "https://data.delijn.be/stops/503679"], ["https://data.delijn.be/stops/207534", "https://data.delijn.be/stops/207549"], ["https://data.delijn.be/stops/403169", "https://data.delijn.be/stops/403444"], ["https://data.delijn.be/stops/203839", "https://data.delijn.be/stops/208425"], ["https://data.delijn.be/stops/101765", "https://data.delijn.be/stops/103885"], ["https://data.delijn.be/stops/501008", "https://data.delijn.be/stops/501595"], ["https://data.delijn.be/stops/301579", "https://data.delijn.be/stops/301594"], ["https://data.delijn.be/stops/200254", "https://data.delijn.be/stops/203562"], ["https://data.delijn.be/stops/301361", "https://data.delijn.be/stops/301369"], ["https://data.delijn.be/stops/502129", "https://data.delijn.be/stops/502168"], ["https://data.delijn.be/stops/105668", "https://data.delijn.be/stops/105673"], ["https://data.delijn.be/stops/504410", "https://data.delijn.be/stops/509430"], ["https://data.delijn.be/stops/201751", "https://data.delijn.be/stops/209279"], ["https://data.delijn.be/stops/107005", "https://data.delijn.be/stops/109880"], ["https://data.delijn.be/stops/204242", "https://data.delijn.be/stops/205178"], ["https://data.delijn.be/stops/200105", "https://data.delijn.be/stops/209908"], ["https://data.delijn.be/stops/108535", "https://data.delijn.be/stops/108540"], ["https://data.delijn.be/stops/105447", "https://data.delijn.be/stops/106053"], ["https://data.delijn.be/stops/400704", "https://data.delijn.be/stops/401919"], ["https://data.delijn.be/stops/305531", "https://data.delijn.be/stops/305544"], ["https://data.delijn.be/stops/302986", "https://data.delijn.be/stops/303632"], ["https://data.delijn.be/stops/501049", "https://data.delijn.be/stops/501082"], ["https://data.delijn.be/stops/302647", "https://data.delijn.be/stops/302653"], ["https://data.delijn.be/stops/303980", "https://data.delijn.be/stops/306592"], ["https://data.delijn.be/stops/107397", "https://data.delijn.be/stops/107401"], ["https://data.delijn.be/stops/303792", "https://data.delijn.be/stops/303796"], ["https://data.delijn.be/stops/102474", "https://data.delijn.be/stops/405253"], ["https://data.delijn.be/stops/208413", "https://data.delijn.be/stops/209413"], ["https://data.delijn.be/stops/305539", "https://data.delijn.be/stops/305548"], ["https://data.delijn.be/stops/304728", "https://data.delijn.be/stops/308698"], ["https://data.delijn.be/stops/400034", "https://data.delijn.be/stops/400439"], ["https://data.delijn.be/stops/103114", "https://data.delijn.be/stops/106814"], ["https://data.delijn.be/stops/302896", "https://data.delijn.be/stops/307055"], ["https://data.delijn.be/stops/401546", "https://data.delijn.be/stops/401958"], ["https://data.delijn.be/stops/501070", "https://data.delijn.be/stops/501384"], ["https://data.delijn.be/stops/108877", "https://data.delijn.be/stops/109505"], ["https://data.delijn.be/stops/302735", "https://data.delijn.be/stops/308592"], ["https://data.delijn.be/stops/302856", "https://data.delijn.be/stops/302889"], ["https://data.delijn.be/stops/501629", "https://data.delijn.be/stops/503959"], ["https://data.delijn.be/stops/200834", "https://data.delijn.be/stops/200836"], ["https://data.delijn.be/stops/206742", "https://data.delijn.be/stops/301228"], ["https://data.delijn.be/stops/304982", "https://data.delijn.be/stops/304984"], ["https://data.delijn.be/stops/501491", "https://data.delijn.be/stops/506632"], ["https://data.delijn.be/stops/305459", "https://data.delijn.be/stops/305581"], ["https://data.delijn.be/stops/200806", "https://data.delijn.be/stops/202056"], ["https://data.delijn.be/stops/307224", "https://data.delijn.be/stops/307264"], ["https://data.delijn.be/stops/305162", "https://data.delijn.be/stops/305182"], ["https://data.delijn.be/stops/502570", "https://data.delijn.be/stops/507570"], ["https://data.delijn.be/stops/403662", "https://data.delijn.be/stops/403720"], ["https://data.delijn.be/stops/206375", "https://data.delijn.be/stops/207727"], ["https://data.delijn.be/stops/104696", "https://data.delijn.be/stops/107353"], ["https://data.delijn.be/stops/508104", "https://data.delijn.be/stops/508974"], ["https://data.delijn.be/stops/207703", "https://data.delijn.be/stops/207704"], ["https://data.delijn.be/stops/404478", "https://data.delijn.be/stops/408164"], ["https://data.delijn.be/stops/304169", "https://data.delijn.be/stops/306067"], ["https://data.delijn.be/stops/301261", "https://data.delijn.be/stops/301262"], ["https://data.delijn.be/stops/402196", "https://data.delijn.be/stops/402229"], ["https://data.delijn.be/stops/104843", "https://data.delijn.be/stops/109964"], ["https://data.delijn.be/stops/200712", "https://data.delijn.be/stops/204828"], ["https://data.delijn.be/stops/505956", "https://data.delijn.be/stops/508276"], ["https://data.delijn.be/stops/105547", "https://data.delijn.be/stops/106133"], ["https://data.delijn.be/stops/408569", "https://data.delijn.be/stops/408573"], ["https://data.delijn.be/stops/201455", "https://data.delijn.be/stops/203319"], ["https://data.delijn.be/stops/102571", "https://data.delijn.be/stops/109161"], ["https://data.delijn.be/stops/508297", "https://data.delijn.be/stops/509908"], ["https://data.delijn.be/stops/102060", "https://data.delijn.be/stops/102065"], ["https://data.delijn.be/stops/102007", "https://data.delijn.be/stops/204488"], ["https://data.delijn.be/stops/201102", "https://data.delijn.be/stops/203005"], ["https://data.delijn.be/stops/303634", "https://data.delijn.be/stops/306825"], ["https://data.delijn.be/stops/200626", "https://data.delijn.be/stops/211073"], ["https://data.delijn.be/stops/502659", "https://data.delijn.be/stops/502661"], ["https://data.delijn.be/stops/200437", "https://data.delijn.be/stops/202451"], ["https://data.delijn.be/stops/501210", "https://data.delijn.be/stops/509795"], ["https://data.delijn.be/stops/208487", "https://data.delijn.be/stops/209487"], ["https://data.delijn.be/stops/208446", "https://data.delijn.be/stops/209446"], ["https://data.delijn.be/stops/305793", "https://data.delijn.be/stops/305794"], ["https://data.delijn.be/stops/301886", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/101957", "https://data.delijn.be/stops/109703"], ["https://data.delijn.be/stops/103047", "https://data.delijn.be/stops/108645"], ["https://data.delijn.be/stops/405646", "https://data.delijn.be/stops/408644"], ["https://data.delijn.be/stops/200152", "https://data.delijn.be/stops/203358"], ["https://data.delijn.be/stops/407866", "https://data.delijn.be/stops/408175"], ["https://data.delijn.be/stops/503149", "https://data.delijn.be/stops/503577"], ["https://data.delijn.be/stops/502502", "https://data.delijn.be/stops/505596"], ["https://data.delijn.be/stops/505914", "https://data.delijn.be/stops/508836"], ["https://data.delijn.be/stops/407091", "https://data.delijn.be/stops/407301"], ["https://data.delijn.be/stops/202765", "https://data.delijn.be/stops/202766"], ["https://data.delijn.be/stops/502030", "https://data.delijn.be/stops/502058"], ["https://data.delijn.be/stops/307504", "https://data.delijn.be/stops/308981"], ["https://data.delijn.be/stops/405878", "https://data.delijn.be/stops/409413"], ["https://data.delijn.be/stops/407633", "https://data.delijn.be/stops/407657"], ["https://data.delijn.be/stops/207801", "https://data.delijn.be/stops/306072"], ["https://data.delijn.be/stops/502431", "https://data.delijn.be/stops/507695"], ["https://data.delijn.be/stops/102870", "https://data.delijn.be/stops/105380"], ["https://data.delijn.be/stops/408863", "https://data.delijn.be/stops/408867"], ["https://data.delijn.be/stops/200696", "https://data.delijn.be/stops/208645"], ["https://data.delijn.be/stops/208013", "https://data.delijn.be/stops/208079"], ["https://data.delijn.be/stops/501327", "https://data.delijn.be/stops/501353"], ["https://data.delijn.be/stops/201314", "https://data.delijn.be/stops/201594"], ["https://data.delijn.be/stops/202591", "https://data.delijn.be/stops/210023"], ["https://data.delijn.be/stops/501778", "https://data.delijn.be/stops/506435"], ["https://data.delijn.be/stops/501362", "https://data.delijn.be/stops/501447"], ["https://data.delijn.be/stops/403096", "https://data.delijn.be/stops/403246"], ["https://data.delijn.be/stops/405256", "https://data.delijn.be/stops/405270"], ["https://data.delijn.be/stops/107158", "https://data.delijn.be/stops/107554"], ["https://data.delijn.be/stops/103144", "https://data.delijn.be/stops/109444"], ["https://data.delijn.be/stops/401359", "https://data.delijn.be/stops/401364"], ["https://data.delijn.be/stops/504167", "https://data.delijn.be/stops/504192"], ["https://data.delijn.be/stops/301778", "https://data.delijn.be/stops/301786"], ["https://data.delijn.be/stops/504374", "https://data.delijn.be/stops/509587"], ["https://data.delijn.be/stops/208083", "https://data.delijn.be/stops/209700"], ["https://data.delijn.be/stops/204159", "https://data.delijn.be/stops/205164"], ["https://data.delijn.be/stops/503675", "https://data.delijn.be/stops/505968"], ["https://data.delijn.be/stops/207778", "https://data.delijn.be/stops/208757"], ["https://data.delijn.be/stops/102232", "https://data.delijn.be/stops/102308"], ["https://data.delijn.be/stops/500195", "https://data.delijn.be/stops/506050"], ["https://data.delijn.be/stops/508190", "https://data.delijn.be/stops/508196"], ["https://data.delijn.be/stops/209630", "https://data.delijn.be/stops/209631"], ["https://data.delijn.be/stops/401513", "https://data.delijn.be/stops/406808"], ["https://data.delijn.be/stops/203051", "https://data.delijn.be/stops/203227"], ["https://data.delijn.be/stops/400627", "https://data.delijn.be/stops/408305"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/504516"], ["https://data.delijn.be/stops/405357", "https://data.delijn.be/stops/409001"], ["https://data.delijn.be/stops/304997", "https://data.delijn.be/stops/305019"], ["https://data.delijn.be/stops/400302", "https://data.delijn.be/stops/406768"], ["https://data.delijn.be/stops/408568", "https://data.delijn.be/stops/408814"], ["https://data.delijn.be/stops/207686", "https://data.delijn.be/stops/207704"], ["https://data.delijn.be/stops/508703", "https://data.delijn.be/stops/508991"], ["https://data.delijn.be/stops/103262", "https://data.delijn.be/stops/204627"], ["https://data.delijn.be/stops/503109", "https://data.delijn.be/stops/503374"], ["https://data.delijn.be/stops/401258", "https://data.delijn.be/stops/404558"], ["https://data.delijn.be/stops/208680", "https://data.delijn.be/stops/208681"], ["https://data.delijn.be/stops/206989", "https://data.delijn.be/stops/207989"], ["https://data.delijn.be/stops/307435", "https://data.delijn.be/stops/307436"], ["https://data.delijn.be/stops/300762", "https://data.delijn.be/stops/304577"], ["https://data.delijn.be/stops/507532", "https://data.delijn.be/stops/507533"], ["https://data.delijn.be/stops/505392", "https://data.delijn.be/stops/508225"], ["https://data.delijn.be/stops/505908", "https://data.delijn.be/stops/508568"], ["https://data.delijn.be/stops/501028", "https://data.delijn.be/stops/501036"], ["https://data.delijn.be/stops/209366", "https://data.delijn.be/stops/209367"], ["https://data.delijn.be/stops/304482", "https://data.delijn.be/stops/304483"], ["https://data.delijn.be/stops/403430", "https://data.delijn.be/stops/403498"], ["https://data.delijn.be/stops/300388", "https://data.delijn.be/stops/300394"], ["https://data.delijn.be/stops/208203", "https://data.delijn.be/stops/209203"], ["https://data.delijn.be/stops/401671", "https://data.delijn.be/stops/308275"], ["https://data.delijn.be/stops/402592", "https://data.delijn.be/stops/402601"], ["https://data.delijn.be/stops/300671", "https://data.delijn.be/stops/300675"], ["https://data.delijn.be/stops/405549", "https://data.delijn.be/stops/405553"], ["https://data.delijn.be/stops/504005", "https://data.delijn.be/stops/505205"], ["https://data.delijn.be/stops/109581", "https://data.delijn.be/stops/109583"], ["https://data.delijn.be/stops/204671", "https://data.delijn.be/stops/204672"], ["https://data.delijn.be/stops/105406", "https://data.delijn.be/stops/105407"], ["https://data.delijn.be/stops/301962", "https://data.delijn.be/stops/301963"], ["https://data.delijn.be/stops/405335", "https://data.delijn.be/stops/405364"], ["https://data.delijn.be/stops/408493", "https://data.delijn.be/stops/408980"], ["https://data.delijn.be/stops/104480", "https://data.delijn.be/stops/105285"], ["https://data.delijn.be/stops/407241", "https://data.delijn.be/stops/407436"], ["https://data.delijn.be/stops/205162", "https://data.delijn.be/stops/205580"], ["https://data.delijn.be/stops/300748", "https://data.delijn.be/stops/302401"], ["https://data.delijn.be/stops/200814", "https://data.delijn.be/stops/203215"], ["https://data.delijn.be/stops/304270", "https://data.delijn.be/stops/306681"], ["https://data.delijn.be/stops/208301", "https://data.delijn.be/stops/208302"], ["https://data.delijn.be/stops/508123", "https://data.delijn.be/stops/508142"], ["https://data.delijn.be/stops/400871", "https://data.delijn.be/stops/400952"], ["https://data.delijn.be/stops/204464", "https://data.delijn.be/stops/205119"], ["https://data.delijn.be/stops/302666", "https://data.delijn.be/stops/302678"], ["https://data.delijn.be/stops/208221", "https://data.delijn.be/stops/208592"], ["https://data.delijn.be/stops/402099", "https://data.delijn.be/stops/402260"], ["https://data.delijn.be/stops/307304", "https://data.delijn.be/stops/307315"], ["https://data.delijn.be/stops/400161", "https://data.delijn.be/stops/403549"], ["https://data.delijn.be/stops/300175", "https://data.delijn.be/stops/300188"], ["https://data.delijn.be/stops/504417", "https://data.delijn.be/stops/509400"], ["https://data.delijn.be/stops/103168", "https://data.delijn.be/stops/109740"], ["https://data.delijn.be/stops/305924", "https://data.delijn.be/stops/308881"], ["https://data.delijn.be/stops/502754", "https://data.delijn.be/stops/502756"], ["https://data.delijn.be/stops/204477", "https://data.delijn.be/stops/205477"], ["https://data.delijn.be/stops/105501", "https://data.delijn.be/stops/105694"], ["https://data.delijn.be/stops/405766", "https://data.delijn.be/stops/405767"], ["https://data.delijn.be/stops/406256", "https://data.delijn.be/stops/406257"], ["https://data.delijn.be/stops/501250", "https://data.delijn.be/stops/501635"], ["https://data.delijn.be/stops/400502", "https://data.delijn.be/stops/405581"], ["https://data.delijn.be/stops/200625", "https://data.delijn.be/stops/200954"], ["https://data.delijn.be/stops/301351", "https://data.delijn.be/stops/302005"], ["https://data.delijn.be/stops/409663", "https://data.delijn.be/stops/409727"], ["https://data.delijn.be/stops/503051", "https://data.delijn.be/stops/503056"], ["https://data.delijn.be/stops/204998", "https://data.delijn.be/stops/205998"], ["https://data.delijn.be/stops/505265", "https://data.delijn.be/stops/508927"], ["https://data.delijn.be/stops/303586", "https://data.delijn.be/stops/304317"], ["https://data.delijn.be/stops/407988", "https://data.delijn.be/stops/407989"], ["https://data.delijn.be/stops/503646", "https://data.delijn.be/stops/508735"], ["https://data.delijn.be/stops/508128", "https://data.delijn.be/stops/509453"], ["https://data.delijn.be/stops/404331", "https://data.delijn.be/stops/404380"], ["https://data.delijn.be/stops/505734", "https://data.delijn.be/stops/507608"], ["https://data.delijn.be/stops/402805", "https://data.delijn.be/stops/406003"], ["https://data.delijn.be/stops/301862", "https://data.delijn.be/stops/306989"], ["https://data.delijn.be/stops/306138", "https://data.delijn.be/stops/306140"], ["https://data.delijn.be/stops/108025", "https://data.delijn.be/stops/108030"], ["https://data.delijn.be/stops/105518", "https://data.delijn.be/stops/105521"], ["https://data.delijn.be/stops/403067", "https://data.delijn.be/stops/410328"], ["https://data.delijn.be/stops/201748", "https://data.delijn.be/stops/205071"], ["https://data.delijn.be/stops/104476", "https://data.delijn.be/stops/104479"], ["https://data.delijn.be/stops/109739", "https://data.delijn.be/stops/406774"], ["https://data.delijn.be/stops/504268", "https://data.delijn.be/stops/505183"], ["https://data.delijn.be/stops/103290", "https://data.delijn.be/stops/103377"], ["https://data.delijn.be/stops/102174", "https://data.delijn.be/stops/109369"], ["https://data.delijn.be/stops/302472", "https://data.delijn.be/stops/308830"], ["https://data.delijn.be/stops/304205", "https://data.delijn.be/stops/304207"], ["https://data.delijn.be/stops/405478", "https://data.delijn.be/stops/405479"], ["https://data.delijn.be/stops/407742", "https://data.delijn.be/stops/409775"], ["https://data.delijn.be/stops/305007", "https://data.delijn.be/stops/305015"], ["https://data.delijn.be/stops/508415", "https://data.delijn.be/stops/508439"], ["https://data.delijn.be/stops/204037", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/304831", "https://data.delijn.be/stops/304887"], ["https://data.delijn.be/stops/207526", "https://data.delijn.be/stops/216006"], ["https://data.delijn.be/stops/501294", "https://data.delijn.be/stops/501344"], ["https://data.delijn.be/stops/207978", "https://data.delijn.be/stops/304259"], ["https://data.delijn.be/stops/102207", "https://data.delijn.be/stops/102967"], ["https://data.delijn.be/stops/208483", "https://data.delijn.be/stops/209485"], ["https://data.delijn.be/stops/206659", "https://data.delijn.be/stops/207515"], ["https://data.delijn.be/stops/504774", "https://data.delijn.be/stops/508579"], ["https://data.delijn.be/stops/504051", "https://data.delijn.be/stops/505143"], ["https://data.delijn.be/stops/506038", "https://data.delijn.be/stops/506044"], ["https://data.delijn.be/stops/410220", "https://data.delijn.be/stops/410391"], ["https://data.delijn.be/stops/103623", "https://data.delijn.be/stops/107737"], ["https://data.delijn.be/stops/101017", "https://data.delijn.be/stops/104600"], ["https://data.delijn.be/stops/507311", "https://data.delijn.be/stops/507601"], ["https://data.delijn.be/stops/301623", "https://data.delijn.be/stops/301625"], ["https://data.delijn.be/stops/406318", "https://data.delijn.be/stops/409884"], ["https://data.delijn.be/stops/502305", "https://data.delijn.be/stops/505677"], ["https://data.delijn.be/stops/400642", "https://data.delijn.be/stops/400643"], ["https://data.delijn.be/stops/404207", "https://data.delijn.be/stops/404208"], ["https://data.delijn.be/stops/503113", "https://data.delijn.be/stops/505157"], ["https://data.delijn.be/stops/300852", "https://data.delijn.be/stops/303631"], ["https://data.delijn.be/stops/200009", "https://data.delijn.be/stops/201010"], ["https://data.delijn.be/stops/201551", "https://data.delijn.be/stops/211510"], ["https://data.delijn.be/stops/203023", "https://data.delijn.be/stops/203024"], ["https://data.delijn.be/stops/406553", "https://data.delijn.be/stops/406562"], ["https://data.delijn.be/stops/301352", "https://data.delijn.be/stops/301354"], ["https://data.delijn.be/stops/106799", "https://data.delijn.be/stops/106874"], ["https://data.delijn.be/stops/205180", "https://data.delijn.be/stops/205218"], ["https://data.delijn.be/stops/400967", "https://data.delijn.be/stops/406552"], ["https://data.delijn.be/stops/503428", "https://data.delijn.be/stops/505189"], ["https://data.delijn.be/stops/208032", "https://data.delijn.be/stops/209032"], ["https://data.delijn.be/stops/500028", "https://data.delijn.be/stops/503120"], ["https://data.delijn.be/stops/301653", "https://data.delijn.be/stops/303935"], ["https://data.delijn.be/stops/306606", "https://data.delijn.be/stops/306607"], ["https://data.delijn.be/stops/108526", "https://data.delijn.be/stops/108537"], ["https://data.delijn.be/stops/105753", "https://data.delijn.be/stops/105754"], ["https://data.delijn.be/stops/307535", "https://data.delijn.be/stops/307551"], ["https://data.delijn.be/stops/503191", "https://data.delijn.be/stops/508192"], ["https://data.delijn.be/stops/302612", "https://data.delijn.be/stops/302652"], ["https://data.delijn.be/stops/304753", "https://data.delijn.be/stops/307333"], ["https://data.delijn.be/stops/205620", "https://data.delijn.be/stops/205754"], ["https://data.delijn.be/stops/209460", "https://data.delijn.be/stops/209467"], ["https://data.delijn.be/stops/403424", "https://data.delijn.be/stops/404969"], ["https://data.delijn.be/stops/503264", "https://data.delijn.be/stops/508174"], ["https://data.delijn.be/stops/408186", "https://data.delijn.be/stops/408443"], ["https://data.delijn.be/stops/400548", "https://data.delijn.be/stops/404060"], ["https://data.delijn.be/stops/200137", "https://data.delijn.be/stops/201308"], ["https://data.delijn.be/stops/407783", "https://data.delijn.be/stops/308202"], ["https://data.delijn.be/stops/302892", "https://data.delijn.be/stops/307072"], ["https://data.delijn.be/stops/208136", "https://data.delijn.be/stops/209103"], ["https://data.delijn.be/stops/303251", "https://data.delijn.be/stops/303258"], ["https://data.delijn.be/stops/503625", "https://data.delijn.be/stops/503629"], ["https://data.delijn.be/stops/305518", "https://data.delijn.be/stops/305519"], ["https://data.delijn.be/stops/206794", "https://data.delijn.be/stops/209049"], ["https://data.delijn.be/stops/502801", "https://data.delijn.be/stops/509189"], ["https://data.delijn.be/stops/206118", "https://data.delijn.be/stops/207117"], ["https://data.delijn.be/stops/401514", "https://data.delijn.be/stops/409315"], ["https://data.delijn.be/stops/306626", "https://data.delijn.be/stops/308457"], ["https://data.delijn.be/stops/108788", "https://data.delijn.be/stops/109758"], ["https://data.delijn.be/stops/503390", "https://data.delijn.be/stops/503450"], ["https://data.delijn.be/stops/101315", "https://data.delijn.be/stops/101320"], ["https://data.delijn.be/stops/304390", "https://data.delijn.be/stops/307414"], ["https://data.delijn.be/stops/405079", "https://data.delijn.be/stops/405109"], ["https://data.delijn.be/stops/402459", "https://data.delijn.be/stops/402463"], ["https://data.delijn.be/stops/206791", "https://data.delijn.be/stops/209568"], ["https://data.delijn.be/stops/201466", "https://data.delijn.be/stops/201833"], ["https://data.delijn.be/stops/108678", "https://data.delijn.be/stops/108679"], ["https://data.delijn.be/stops/302842", "https://data.delijn.be/stops/307117"], ["https://data.delijn.be/stops/503029", "https://data.delijn.be/stops/508029"], ["https://data.delijn.be/stops/505172", "https://data.delijn.be/stops/507343"], ["https://data.delijn.be/stops/201151", "https://data.delijn.be/stops/201174"], ["https://data.delijn.be/stops/407009", "https://data.delijn.be/stops/407057"], ["https://data.delijn.be/stops/102974", "https://data.delijn.be/stops/107142"], ["https://data.delijn.be/stops/303043", "https://data.delijn.be/stops/303073"], ["https://data.delijn.be/stops/300063", "https://data.delijn.be/stops/303836"], ["https://data.delijn.be/stops/405692", "https://data.delijn.be/stops/405708"], ["https://data.delijn.be/stops/305099", "https://data.delijn.be/stops/305104"], ["https://data.delijn.be/stops/201645", "https://data.delijn.be/stops/202865"], ["https://data.delijn.be/stops/200459", "https://data.delijn.be/stops/201652"], ["https://data.delijn.be/stops/405857", "https://data.delijn.be/stops/409433"], ["https://data.delijn.be/stops/302917", "https://data.delijn.be/stops/307019"], ["https://data.delijn.be/stops/403796", "https://data.delijn.be/stops/403808"], ["https://data.delijn.be/stops/207724", "https://data.delijn.be/stops/207726"], ["https://data.delijn.be/stops/409061", "https://data.delijn.be/stops/409089"], ["https://data.delijn.be/stops/200259", "https://data.delijn.be/stops/202453"], ["https://data.delijn.be/stops/400020", "https://data.delijn.be/stops/400025"], ["https://data.delijn.be/stops/507368", "https://data.delijn.be/stops/507370"], ["https://data.delijn.be/stops/406142", "https://data.delijn.be/stops/406388"], ["https://data.delijn.be/stops/504683", "https://data.delijn.be/stops/509683"], ["https://data.delijn.be/stops/206132", "https://data.delijn.be/stops/206868"], ["https://data.delijn.be/stops/300494", "https://data.delijn.be/stops/307085"], ["https://data.delijn.be/stops/302034", "https://data.delijn.be/stops/302053"], ["https://data.delijn.be/stops/408928", "https://data.delijn.be/stops/408943"], ["https://data.delijn.be/stops/104108", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/101631", "https://data.delijn.be/stops/101632"], ["https://data.delijn.be/stops/500049", "https://data.delijn.be/stops/500050"], ["https://data.delijn.be/stops/103515", "https://data.delijn.be/stops/105180"], ["https://data.delijn.be/stops/405184", "https://data.delijn.be/stops/407333"], ["https://data.delijn.be/stops/202381", "https://data.delijn.be/stops/203381"], ["https://data.delijn.be/stops/406520", "https://data.delijn.be/stops/407565"], ["https://data.delijn.be/stops/503679", "https://data.delijn.be/stops/508679"], ["https://data.delijn.be/stops/403564", "https://data.delijn.be/stops/407464"], ["https://data.delijn.be/stops/206668", "https://data.delijn.be/stops/206801"], ["https://data.delijn.be/stops/105031", "https://data.delijn.be/stops/105064"], ["https://data.delijn.be/stops/102804", "https://data.delijn.be/stops/109448"], ["https://data.delijn.be/stops/202589", "https://data.delijn.be/stops/203590"], ["https://data.delijn.be/stops/300264", "https://data.delijn.be/stops/307497"], ["https://data.delijn.be/stops/205350", "https://data.delijn.be/stops/205444"], ["https://data.delijn.be/stops/200054", "https://data.delijn.be/stops/211057"], ["https://data.delijn.be/stops/206347", "https://data.delijn.be/stops/207347"], ["https://data.delijn.be/stops/201462", "https://data.delijn.be/stops/201737"], ["https://data.delijn.be/stops/406939", "https://data.delijn.be/stops/407296"], ["https://data.delijn.be/stops/303169", "https://data.delijn.be/stops/304327"], ["https://data.delijn.be/stops/402264", "https://data.delijn.be/stops/402265"], ["https://data.delijn.be/stops/302873", "https://data.delijn.be/stops/302874"], ["https://data.delijn.be/stops/406522", "https://data.delijn.be/stops/406647"], ["https://data.delijn.be/stops/204221", "https://data.delijn.be/stops/205905"], ["https://data.delijn.be/stops/207159", "https://data.delijn.be/stops/207447"], ["https://data.delijn.be/stops/403346", "https://data.delijn.be/stops/403349"], ["https://data.delijn.be/stops/301110", "https://data.delijn.be/stops/303676"], ["https://data.delijn.be/stops/103239", "https://data.delijn.be/stops/107292"], ["https://data.delijn.be/stops/200647", "https://data.delijn.be/stops/202861"], ["https://data.delijn.be/stops/205928", "https://data.delijn.be/stops/205931"], ["https://data.delijn.be/stops/403701", "https://data.delijn.be/stops/407233"], ["https://data.delijn.be/stops/207602", "https://data.delijn.be/stops/307771"], ["https://data.delijn.be/stops/107196", "https://data.delijn.be/stops/109771"], ["https://data.delijn.be/stops/405209", "https://data.delijn.be/stops/405255"], ["https://data.delijn.be/stops/502376", "https://data.delijn.be/stops/507555"], ["https://data.delijn.be/stops/403474", "https://data.delijn.be/stops/410390"], ["https://data.delijn.be/stops/200867", "https://data.delijn.be/stops/200879"], ["https://data.delijn.be/stops/401548", "https://data.delijn.be/stops/401661"], ["https://data.delijn.be/stops/405260", "https://data.delijn.be/stops/405263"], ["https://data.delijn.be/stops/202360", "https://data.delijn.be/stops/203360"], ["https://data.delijn.be/stops/501129", "https://data.delijn.be/stops/501134"], ["https://data.delijn.be/stops/206188", "https://data.delijn.be/stops/206955"], ["https://data.delijn.be/stops/103096", "https://data.delijn.be/stops/109271"], ["https://data.delijn.be/stops/403933", "https://data.delijn.be/stops/403998"], ["https://data.delijn.be/stops/405687", "https://data.delijn.be/stops/406492"], ["https://data.delijn.be/stops/101343", "https://data.delijn.be/stops/108099"], ["https://data.delijn.be/stops/409267", "https://data.delijn.be/stops/409282"], ["https://data.delijn.be/stops/300593", "https://data.delijn.be/stops/307170"], ["https://data.delijn.be/stops/403222", "https://data.delijn.be/stops/403401"], ["https://data.delijn.be/stops/404566", "https://data.delijn.be/stops/404567"], ["https://data.delijn.be/stops/406829", "https://data.delijn.be/stops/408475"], ["https://data.delijn.be/stops/402581", "https://data.delijn.be/stops/408446"], ["https://data.delijn.be/stops/204391", "https://data.delijn.be/stops/204763"], ["https://data.delijn.be/stops/201152", "https://data.delijn.be/stops/201153"], ["https://data.delijn.be/stops/403236", "https://data.delijn.be/stops/403473"], ["https://data.delijn.be/stops/208376", "https://data.delijn.be/stops/209120"], ["https://data.delijn.be/stops/202733", "https://data.delijn.be/stops/202735"], ["https://data.delijn.be/stops/103364", "https://data.delijn.be/stops/107490"], ["https://data.delijn.be/stops/402359", "https://data.delijn.be/stops/402461"], ["https://data.delijn.be/stops/107302", "https://data.delijn.be/stops/109715"], ["https://data.delijn.be/stops/504734", "https://data.delijn.be/stops/506249"], ["https://data.delijn.be/stops/301958", "https://data.delijn.be/stops/302399"], ["https://data.delijn.be/stops/204027", "https://data.delijn.be/stops/204028"], ["https://data.delijn.be/stops/304243", "https://data.delijn.be/stops/304244"], ["https://data.delijn.be/stops/208693", "https://data.delijn.be/stops/208694"], ["https://data.delijn.be/stops/200804", "https://data.delijn.be/stops/200882"], ["https://data.delijn.be/stops/106614", "https://data.delijn.be/stops/106615"], ["https://data.delijn.be/stops/304136", "https://data.delijn.be/stops/307652"], ["https://data.delijn.be/stops/401872", "https://data.delijn.be/stops/401874"], ["https://data.delijn.be/stops/307572", "https://data.delijn.be/stops/307573"], ["https://data.delijn.be/stops/202965", "https://data.delijn.be/stops/203965"], ["https://data.delijn.be/stops/102859", "https://data.delijn.be/stops/103263"], ["https://data.delijn.be/stops/106200", "https://data.delijn.be/stops/106303"], ["https://data.delijn.be/stops/302186", "https://data.delijn.be/stops/302207"], ["https://data.delijn.be/stops/208053", "https://data.delijn.be/stops/208657"], ["https://data.delijn.be/stops/509764", "https://data.delijn.be/stops/509793"], ["https://data.delijn.be/stops/400513", "https://data.delijn.be/stops/401961"], ["https://data.delijn.be/stops/105086", "https://data.delijn.be/stops/105087"], ["https://data.delijn.be/stops/201604", "https://data.delijn.be/stops/201940"], ["https://data.delijn.be/stops/102447", "https://data.delijn.be/stops/104117"], ["https://data.delijn.be/stops/502518", "https://data.delijn.be/stops/509795"], ["https://data.delijn.be/stops/402385", "https://data.delijn.be/stops/404730"], ["https://data.delijn.be/stops/405902", "https://data.delijn.be/stops/405903"], ["https://data.delijn.be/stops/300371", "https://data.delijn.be/stops/300377"], ["https://data.delijn.be/stops/503812", "https://data.delijn.be/stops/505543"], ["https://data.delijn.be/stops/302324", "https://data.delijn.be/stops/303438"], ["https://data.delijn.be/stops/501428", "https://data.delijn.be/stops/506487"], ["https://data.delijn.be/stops/202762", "https://data.delijn.be/stops/202763"], ["https://data.delijn.be/stops/303412", "https://data.delijn.be/stops/303415"], ["https://data.delijn.be/stops/307088", "https://data.delijn.be/stops/307905"], ["https://data.delijn.be/stops/200862", "https://data.delijn.be/stops/502069"], ["https://data.delijn.be/stops/505504", "https://data.delijn.be/stops/505604"], ["https://data.delijn.be/stops/406786", "https://data.delijn.be/stops/409299"], ["https://data.delijn.be/stops/206122", "https://data.delijn.be/stops/206477"], ["https://data.delijn.be/stops/507261", "https://data.delijn.be/stops/507703"], ["https://data.delijn.be/stops/504323", "https://data.delijn.be/stops/507689"], ["https://data.delijn.be/stops/107151", "https://data.delijn.be/stops/107153"], ["https://data.delijn.be/stops/206924", "https://data.delijn.be/stops/206925"], ["https://data.delijn.be/stops/307261", "https://data.delijn.be/stops/307262"], ["https://data.delijn.be/stops/200453", "https://data.delijn.be/stops/208266"], ["https://data.delijn.be/stops/400493", "https://data.delijn.be/stops/409797"], ["https://data.delijn.be/stops/504069", "https://data.delijn.be/stops/505110"], ["https://data.delijn.be/stops/506043", "https://data.delijn.be/stops/506488"], ["https://data.delijn.be/stops/405195", "https://data.delijn.be/stops/405199"], ["https://data.delijn.be/stops/206599", "https://data.delijn.be/stops/207598"], ["https://data.delijn.be/stops/205789", "https://data.delijn.be/stops/205791"], ["https://data.delijn.be/stops/105203", "https://data.delijn.be/stops/109012"], ["https://data.delijn.be/stops/206487", "https://data.delijn.be/stops/206648"], ["https://data.delijn.be/stops/502385", "https://data.delijn.be/stops/502766"], ["https://data.delijn.be/stops/300637", "https://data.delijn.be/stops/302471"], ["https://data.delijn.be/stops/400112", "https://data.delijn.be/stops/409156"], ["https://data.delijn.be/stops/409707", "https://data.delijn.be/stops/409710"], ["https://data.delijn.be/stops/405177", "https://data.delijn.be/stops/408367"], ["https://data.delijn.be/stops/504319", "https://data.delijn.be/stops/504455"], ["https://data.delijn.be/stops/506329", "https://data.delijn.be/stops/506453"], ["https://data.delijn.be/stops/304101", "https://data.delijn.be/stops/307996"], ["https://data.delijn.be/stops/505663", "https://data.delijn.be/stops/505944"], ["https://data.delijn.be/stops/501117", "https://data.delijn.be/stops/506117"], ["https://data.delijn.be/stops/304315", "https://data.delijn.be/stops/306882"], ["https://data.delijn.be/stops/504987", "https://data.delijn.be/stops/504988"], ["https://data.delijn.be/stops/108726", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/502096", "https://data.delijn.be/stops/502146"], ["https://data.delijn.be/stops/405215", "https://data.delijn.be/stops/405296"], ["https://data.delijn.be/stops/301138", "https://data.delijn.be/stops/302876"], ["https://data.delijn.be/stops/405676", "https://data.delijn.be/stops/408395"], ["https://data.delijn.be/stops/501165", "https://data.delijn.be/stops/506165"], ["https://data.delijn.be/stops/406398", "https://data.delijn.be/stops/302830"], ["https://data.delijn.be/stops/207757", "https://data.delijn.be/stops/207778"], ["https://data.delijn.be/stops/408636", "https://data.delijn.be/stops/408672"], ["https://data.delijn.be/stops/102888", "https://data.delijn.be/stops/105275"], ["https://data.delijn.be/stops/504795", "https://data.delijn.be/stops/508947"], ["https://data.delijn.be/stops/104706", "https://data.delijn.be/stops/107354"], ["https://data.delijn.be/stops/503445", "https://data.delijn.be/stops/508444"], ["https://data.delijn.be/stops/200967", "https://data.delijn.be/stops/208662"], ["https://data.delijn.be/stops/202795", "https://data.delijn.be/stops/203796"], ["https://data.delijn.be/stops/305181", "https://data.delijn.be/stops/305208"], ["https://data.delijn.be/stops/204973", "https://data.delijn.be/stops/207067"], ["https://data.delijn.be/stops/409372", "https://data.delijn.be/stops/409382"], ["https://data.delijn.be/stops/104591", "https://data.delijn.be/stops/107306"], ["https://data.delijn.be/stops/308418", "https://data.delijn.be/stops/308423"], ["https://data.delijn.be/stops/506504", "https://data.delijn.be/stops/506513"], ["https://data.delijn.be/stops/302272", "https://data.delijn.be/stops/307932"], ["https://data.delijn.be/stops/204648", "https://data.delijn.be/stops/205648"], ["https://data.delijn.be/stops/402812", "https://data.delijn.be/stops/409030"], ["https://data.delijn.be/stops/206748", "https://data.delijn.be/stops/207709"], ["https://data.delijn.be/stops/204913", "https://data.delijn.be/stops/204914"], ["https://data.delijn.be/stops/501053", "https://data.delijn.be/stops/506057"], ["https://data.delijn.be/stops/201908", "https://data.delijn.be/stops/201910"], ["https://data.delijn.be/stops/101311", "https://data.delijn.be/stops/101313"], ["https://data.delijn.be/stops/202394", "https://data.delijn.be/stops/203394"], ["https://data.delijn.be/stops/108817", "https://data.delijn.be/stops/108819"], ["https://data.delijn.be/stops/505387", "https://data.delijn.be/stops/505969"], ["https://data.delijn.be/stops/206924", "https://data.delijn.be/stops/207212"], ["https://data.delijn.be/stops/304502", "https://data.delijn.be/stops/304520"], ["https://data.delijn.be/stops/203480", "https://data.delijn.be/stops/203954"], ["https://data.delijn.be/stops/501645", "https://data.delijn.be/stops/506636"], ["https://data.delijn.be/stops/407888", "https://data.delijn.be/stops/407889"], ["https://data.delijn.be/stops/202315", "https://data.delijn.be/stops/208887"], ["https://data.delijn.be/stops/300673", "https://data.delijn.be/stops/300674"], ["https://data.delijn.be/stops/404357", "https://data.delijn.be/stops/404893"], ["https://data.delijn.be/stops/406195", "https://data.delijn.be/stops/406460"], ["https://data.delijn.be/stops/109330", "https://data.delijn.be/stops/307436"], ["https://data.delijn.be/stops/302870", "https://data.delijn.be/stops/302891"], ["https://data.delijn.be/stops/300268", "https://data.delijn.be/stops/306825"], ["https://data.delijn.be/stops/400078", "https://data.delijn.be/stops/409105"], ["https://data.delijn.be/stops/102082", "https://data.delijn.be/stops/105836"], ["https://data.delijn.be/stops/301569", "https://data.delijn.be/stops/303110"], ["https://data.delijn.be/stops/105058", "https://data.delijn.be/stops/109491"], ["https://data.delijn.be/stops/401480", "https://data.delijn.be/stops/406006"], ["https://data.delijn.be/stops/400715", "https://data.delijn.be/stops/401919"], ["https://data.delijn.be/stops/107449", "https://data.delijn.be/stops/107453"], ["https://data.delijn.be/stops/307334", "https://data.delijn.be/stops/307335"], ["https://data.delijn.be/stops/201666", "https://data.delijn.be/stops/201678"], ["https://data.delijn.be/stops/408028", "https://data.delijn.be/stops/305730"], ["https://data.delijn.be/stops/503244", "https://data.delijn.be/stops/508076"], ["https://data.delijn.be/stops/509361", "https://data.delijn.be/stops/509370"], ["https://data.delijn.be/stops/102684", "https://data.delijn.be/stops/107337"], ["https://data.delijn.be/stops/201428", "https://data.delijn.be/stops/203008"], ["https://data.delijn.be/stops/507369", "https://data.delijn.be/stops/507370"], ["https://data.delijn.be/stops/208773", "https://data.delijn.be/stops/209774"], ["https://data.delijn.be/stops/105108", "https://data.delijn.be/stops/105112"], ["https://data.delijn.be/stops/404062", "https://data.delijn.be/stops/408965"], ["https://data.delijn.be/stops/203297", "https://data.delijn.be/stops/208889"], ["https://data.delijn.be/stops/406460", "https://data.delijn.be/stops/410188"], ["https://data.delijn.be/stops/403685", "https://data.delijn.be/stops/405389"], ["https://data.delijn.be/stops/208846", "https://data.delijn.be/stops/209047"], ["https://data.delijn.be/stops/502279", "https://data.delijn.be/stops/507279"], ["https://data.delijn.be/stops/401546", "https://data.delijn.be/stops/401547"], ["https://data.delijn.be/stops/502672", "https://data.delijn.be/stops/507268"], ["https://data.delijn.be/stops/104941", "https://data.delijn.be/stops/109995"], ["https://data.delijn.be/stops/303328", "https://data.delijn.be/stops/303329"], ["https://data.delijn.be/stops/301542", "https://data.delijn.be/stops/301543"], ["https://data.delijn.be/stops/503987", "https://data.delijn.be/stops/508987"], ["https://data.delijn.be/stops/201852", "https://data.delijn.be/stops/201880"], ["https://data.delijn.be/stops/404470", "https://data.delijn.be/stops/404473"], ["https://data.delijn.be/stops/501108", "https://data.delijn.be/stops/506111"], ["https://data.delijn.be/stops/501034", "https://data.delijn.be/stops/506329"], ["https://data.delijn.be/stops/503024", "https://data.delijn.be/stops/508024"], ["https://data.delijn.be/stops/106283", "https://data.delijn.be/stops/106284"], ["https://data.delijn.be/stops/103642", "https://data.delijn.be/stops/105628"], ["https://data.delijn.be/stops/400101", "https://data.delijn.be/stops/400163"], ["https://data.delijn.be/stops/405694", "https://data.delijn.be/stops/405697"], ["https://data.delijn.be/stops/503733", "https://data.delijn.be/stops/503741"], ["https://data.delijn.be/stops/401618", "https://data.delijn.be/stops/308212"], ["https://data.delijn.be/stops/202362", "https://data.delijn.be/stops/204950"], ["https://data.delijn.be/stops/107123", "https://data.delijn.be/stops/109650"], ["https://data.delijn.be/stops/202610", "https://data.delijn.be/stops/203564"], ["https://data.delijn.be/stops/503951", "https://data.delijn.be/stops/508951"], ["https://data.delijn.be/stops/401483", "https://data.delijn.be/stops/401567"], ["https://data.delijn.be/stops/106716", "https://data.delijn.be/stops/106720"], ["https://data.delijn.be/stops/300280", "https://data.delijn.be/stops/307475"], ["https://data.delijn.be/stops/106052", "https://data.delijn.be/stops/109937"], ["https://data.delijn.be/stops/402385", "https://data.delijn.be/stops/402495"], ["https://data.delijn.be/stops/305102", "https://data.delijn.be/stops/305120"], ["https://data.delijn.be/stops/402074", "https://data.delijn.be/stops/405548"], ["https://data.delijn.be/stops/109617", "https://data.delijn.be/stops/109618"], ["https://data.delijn.be/stops/401649", "https://data.delijn.be/stops/401723"], ["https://data.delijn.be/stops/305179", "https://data.delijn.be/stops/305180"], ["https://data.delijn.be/stops/404794", "https://data.delijn.be/stops/404798"], ["https://data.delijn.be/stops/101572", "https://data.delijn.be/stops/105466"], ["https://data.delijn.be/stops/503856", "https://data.delijn.be/stops/508856"], ["https://data.delijn.be/stops/107035", "https://data.delijn.be/stops/107040"], ["https://data.delijn.be/stops/300391", "https://data.delijn.be/stops/300395"], ["https://data.delijn.be/stops/204830", "https://data.delijn.be/stops/205259"], ["https://data.delijn.be/stops/304739", "https://data.delijn.be/stops/304850"], ["https://data.delijn.be/stops/106568", "https://data.delijn.be/stops/107730"], ["https://data.delijn.be/stops/405333", "https://data.delijn.be/stops/405339"], ["https://data.delijn.be/stops/103068", "https://data.delijn.be/stops/103069"], ["https://data.delijn.be/stops/307729", "https://data.delijn.be/stops/307732"], ["https://data.delijn.be/stops/307269", "https://data.delijn.be/stops/308410"], ["https://data.delijn.be/stops/101277", "https://data.delijn.be/stops/106025"], ["https://data.delijn.be/stops/405326", "https://data.delijn.be/stops/302846"], ["https://data.delijn.be/stops/400195", "https://data.delijn.be/stops/401082"], ["https://data.delijn.be/stops/407407", "https://data.delijn.be/stops/407570"], ["https://data.delijn.be/stops/101654", "https://data.delijn.be/stops/107921"], ["https://data.delijn.be/stops/300523", "https://data.delijn.be/stops/305552"], ["https://data.delijn.be/stops/200808", "https://data.delijn.be/stops/200884"], ["https://data.delijn.be/stops/304039", "https://data.delijn.be/stops/304091"], ["https://data.delijn.be/stops/202284", "https://data.delijn.be/stops/203284"], ["https://data.delijn.be/stops/104948", "https://data.delijn.be/stops/109767"], ["https://data.delijn.be/stops/502553", "https://data.delijn.be/stops/507553"], ["https://data.delijn.be/stops/208231", "https://data.delijn.be/stops/208795"], ["https://data.delijn.be/stops/507154", "https://data.delijn.be/stops/507912"], ["https://data.delijn.be/stops/504513", "https://data.delijn.be/stops/504515"], ["https://data.delijn.be/stops/503044", "https://data.delijn.be/stops/508040"], ["https://data.delijn.be/stops/306558", "https://data.delijn.be/stops/306559"], ["https://data.delijn.be/stops/200608", "https://data.delijn.be/stops/202207"], ["https://data.delijn.be/stops/105257", "https://data.delijn.be/stops/105259"], ["https://data.delijn.be/stops/402171", "https://data.delijn.be/stops/402207"], ["https://data.delijn.be/stops/101522", "https://data.delijn.be/stops/109644"], ["https://data.delijn.be/stops/202834", "https://data.delijn.be/stops/202835"], ["https://data.delijn.be/stops/505915", "https://data.delijn.be/stops/505918"], ["https://data.delijn.be/stops/106952", "https://data.delijn.be/stops/106953"], ["https://data.delijn.be/stops/108952", "https://data.delijn.be/stops/108954"], ["https://data.delijn.be/stops/403886", "https://data.delijn.be/stops/404057"], ["https://data.delijn.be/stops/107028", "https://data.delijn.be/stops/107030"], ["https://data.delijn.be/stops/102934", "https://data.delijn.be/stops/106043"], ["https://data.delijn.be/stops/101445", "https://data.delijn.be/stops/104545"], ["https://data.delijn.be/stops/403837", "https://data.delijn.be/stops/405633"], ["https://data.delijn.be/stops/109293", "https://data.delijn.be/stops/109703"], ["https://data.delijn.be/stops/300789", "https://data.delijn.be/stops/302404"], ["https://data.delijn.be/stops/403724", "https://data.delijn.be/stops/403726"], ["https://data.delijn.be/stops/407303", "https://data.delijn.be/stops/409494"], ["https://data.delijn.be/stops/407250", "https://data.delijn.be/stops/407411"], ["https://data.delijn.be/stops/502124", "https://data.delijn.be/stops/502752"], ["https://data.delijn.be/stops/109559", "https://data.delijn.be/stops/306859"], ["https://data.delijn.be/stops/204584", "https://data.delijn.be/stops/207391"], ["https://data.delijn.be/stops/308549", "https://data.delijn.be/stops/308551"], ["https://data.delijn.be/stops/501031", "https://data.delijn.be/stops/501138"], ["https://data.delijn.be/stops/101088", "https://data.delijn.be/stops/105974"], ["https://data.delijn.be/stops/208647", "https://data.delijn.be/stops/209648"], ["https://data.delijn.be/stops/403952", "https://data.delijn.be/stops/403953"], ["https://data.delijn.be/stops/106285", "https://data.delijn.be/stops/106350"], ["https://data.delijn.be/stops/400299", "https://data.delijn.be/stops/400359"], ["https://data.delijn.be/stops/102724", "https://data.delijn.be/stops/105626"], ["https://data.delijn.be/stops/302922", "https://data.delijn.be/stops/303026"], ["https://data.delijn.be/stops/300709", "https://data.delijn.be/stops/300730"], ["https://data.delijn.be/stops/305123", "https://data.delijn.be/stops/305124"], ["https://data.delijn.be/stops/102735", "https://data.delijn.be/stops/103725"], ["https://data.delijn.be/stops/407000", "https://data.delijn.be/stops/308079"], ["https://data.delijn.be/stops/200045", "https://data.delijn.be/stops/201436"], ["https://data.delijn.be/stops/501672", "https://data.delijn.be/stops/506429"], ["https://data.delijn.be/stops/409193", "https://data.delijn.be/stops/410155"], ["https://data.delijn.be/stops/207239", "https://data.delijn.be/stops/207291"], ["https://data.delijn.be/stops/400485", "https://data.delijn.be/stops/400493"], ["https://data.delijn.be/stops/300783", "https://data.delijn.be/stops/304653"], ["https://data.delijn.be/stops/401000", "https://data.delijn.be/stops/401003"], ["https://data.delijn.be/stops/108833", "https://data.delijn.be/stops/108834"], ["https://data.delijn.be/stops/503899", "https://data.delijn.be/stops/508902"], ["https://data.delijn.be/stops/401951", "https://data.delijn.be/stops/407558"], ["https://data.delijn.be/stops/307595", "https://data.delijn.be/stops/307606"], ["https://data.delijn.be/stops/301866", "https://data.delijn.be/stops/301867"], ["https://data.delijn.be/stops/107261", "https://data.delijn.be/stops/107262"], ["https://data.delijn.be/stops/502324", "https://data.delijn.be/stops/505737"], ["https://data.delijn.be/stops/300117", "https://data.delijn.be/stops/306853"], ["https://data.delijn.be/stops/405476", "https://data.delijn.be/stops/406615"], ["https://data.delijn.be/stops/102500", "https://data.delijn.be/stops/104940"], ["https://data.delijn.be/stops/504546", "https://data.delijn.be/stops/509546"], ["https://data.delijn.be/stops/300942", "https://data.delijn.be/stops/304720"], ["https://data.delijn.be/stops/400707", "https://data.delijn.be/stops/400709"], ["https://data.delijn.be/stops/300129", "https://data.delijn.be/stops/300136"], ["https://data.delijn.be/stops/202005", "https://data.delijn.be/stops/211006"], ["https://data.delijn.be/stops/300102", "https://data.delijn.be/stops/306770"], ["https://data.delijn.be/stops/500051", "https://data.delijn.be/stops/501010"], ["https://data.delijn.be/stops/504967", "https://data.delijn.be/stops/509965"], ["https://data.delijn.be/stops/503792", "https://data.delijn.be/stops/508797"], ["https://data.delijn.be/stops/303496", "https://data.delijn.be/stops/303498"], ["https://data.delijn.be/stops/501420", "https://data.delijn.be/stops/505530"], ["https://data.delijn.be/stops/302197", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/404660", "https://data.delijn.be/stops/404663"], ["https://data.delijn.be/stops/305949", "https://data.delijn.be/stops/308290"], ["https://data.delijn.be/stops/105659", "https://data.delijn.be/stops/105661"], ["https://data.delijn.be/stops/306325", "https://data.delijn.be/stops/306327"], ["https://data.delijn.be/stops/503794", "https://data.delijn.be/stops/508795"], ["https://data.delijn.be/stops/206225", "https://data.delijn.be/stops/207224"], ["https://data.delijn.be/stops/303256", "https://data.delijn.be/stops/303266"], ["https://data.delijn.be/stops/105331", "https://data.delijn.be/stops/105336"], ["https://data.delijn.be/stops/401311", "https://data.delijn.be/stops/401324"], ["https://data.delijn.be/stops/108896", "https://data.delijn.be/stops/108897"], ["https://data.delijn.be/stops/200199", "https://data.delijn.be/stops/202954"], ["https://data.delijn.be/stops/308868", "https://data.delijn.be/stops/308869"], ["https://data.delijn.be/stops/206108", "https://data.delijn.be/stops/207106"], ["https://data.delijn.be/stops/408669", "https://data.delijn.be/stops/408671"], ["https://data.delijn.be/stops/504074", "https://data.delijn.be/stops/504271"], ["https://data.delijn.be/stops/105481", "https://data.delijn.be/stops/105492"], ["https://data.delijn.be/stops/303229", "https://data.delijn.be/stops/303230"], ["https://data.delijn.be/stops/301546", "https://data.delijn.be/stops/305166"], ["https://data.delijn.be/stops/302927", "https://data.delijn.be/stops/302953"], ["https://data.delijn.be/stops/304071", "https://data.delijn.be/stops/307504"], ["https://data.delijn.be/stops/201952", "https://data.delijn.be/stops/202457"], ["https://data.delijn.be/stops/503822", "https://data.delijn.be/stops/508824"], ["https://data.delijn.be/stops/200431", "https://data.delijn.be/stops/201432"], ["https://data.delijn.be/stops/400151", "https://data.delijn.be/stops/410030"], ["https://data.delijn.be/stops/404451", "https://data.delijn.be/stops/404495"], ["https://data.delijn.be/stops/207367", "https://data.delijn.be/stops/207368"], ["https://data.delijn.be/stops/302116", "https://data.delijn.be/stops/303662"], ["https://data.delijn.be/stops/405040", "https://data.delijn.be/stops/405068"], ["https://data.delijn.be/stops/204429", "https://data.delijn.be/stops/205418"], ["https://data.delijn.be/stops/400650", "https://data.delijn.be/stops/400682"], ["https://data.delijn.be/stops/109784", "https://data.delijn.be/stops/109787"], ["https://data.delijn.be/stops/305341", "https://data.delijn.be/stops/305342"], ["https://data.delijn.be/stops/106693", "https://data.delijn.be/stops/106696"], ["https://data.delijn.be/stops/204613", "https://data.delijn.be/stops/205730"], ["https://data.delijn.be/stops/302563", "https://data.delijn.be/stops/308121"], ["https://data.delijn.be/stops/102469", "https://data.delijn.be/stops/400414"], ["https://data.delijn.be/stops/106145", "https://data.delijn.be/stops/106440"], ["https://data.delijn.be/stops/301277", "https://data.delijn.be/stops/303646"], ["https://data.delijn.be/stops/504159", "https://data.delijn.be/stops/509191"], ["https://data.delijn.be/stops/403975", "https://data.delijn.be/stops/405976"], ["https://data.delijn.be/stops/404323", "https://data.delijn.be/stops/404370"], ["https://data.delijn.be/stops/504293", "https://data.delijn.be/stops/509957"], ["https://data.delijn.be/stops/202046", "https://data.delijn.be/stops/203137"], ["https://data.delijn.be/stops/108154", "https://data.delijn.be/stops/108156"], ["https://data.delijn.be/stops/508436", "https://data.delijn.be/stops/508818"], ["https://data.delijn.be/stops/204155", "https://data.delijn.be/stops/204166"], ["https://data.delijn.be/stops/508375", "https://data.delijn.be/stops/508393"], ["https://data.delijn.be/stops/305311", "https://data.delijn.be/stops/305314"], ["https://data.delijn.be/stops/503837", "https://data.delijn.be/stops/508838"], ["https://data.delijn.be/stops/206778", "https://data.delijn.be/stops/208032"], ["https://data.delijn.be/stops/406660", "https://data.delijn.be/stops/406685"], ["https://data.delijn.be/stops/204566", "https://data.delijn.be/stops/303381"], ["https://data.delijn.be/stops/102256", "https://data.delijn.be/stops/109872"], ["https://data.delijn.be/stops/208130", "https://data.delijn.be/stops/209131"], ["https://data.delijn.be/stops/102613", "https://data.delijn.be/stops/107052"], ["https://data.delijn.be/stops/204992", "https://data.delijn.be/stops/208335"], ["https://data.delijn.be/stops/407255", "https://data.delijn.be/stops/407315"], ["https://data.delijn.be/stops/400177", "https://data.delijn.be/stops/400416"], ["https://data.delijn.be/stops/105018", "https://data.delijn.be/stops/105113"], ["https://data.delijn.be/stops/103149", "https://data.delijn.be/stops/109480"], ["https://data.delijn.be/stops/201661", "https://data.delijn.be/stops/503642"], ["https://data.delijn.be/stops/402843", "https://data.delijn.be/stops/409234"], ["https://data.delijn.be/stops/301402", "https://data.delijn.be/stops/301403"], ["https://data.delijn.be/stops/106643", "https://data.delijn.be/stops/106644"], ["https://data.delijn.be/stops/300458", "https://data.delijn.be/stops/304975"], ["https://data.delijn.be/stops/505009", "https://data.delijn.be/stops/505574"], ["https://data.delijn.be/stops/204135", "https://data.delijn.be/stops/204147"], ["https://data.delijn.be/stops/405897", "https://data.delijn.be/stops/409889"], ["https://data.delijn.be/stops/402090", "https://data.delijn.be/stops/402105"], ["https://data.delijn.be/stops/406729", "https://data.delijn.be/stops/407095"], ["https://data.delijn.be/stops/407999", "https://data.delijn.be/stops/408020"], ["https://data.delijn.be/stops/305226", "https://data.delijn.be/stops/305244"], ["https://data.delijn.be/stops/502246", "https://data.delijn.be/stops/507022"], ["https://data.delijn.be/stops/502537", "https://data.delijn.be/stops/502542"], ["https://data.delijn.be/stops/105487", "https://data.delijn.be/stops/105494"], ["https://data.delijn.be/stops/305675", "https://data.delijn.be/stops/305693"], ["https://data.delijn.be/stops/201916", "https://data.delijn.be/stops/206426"], ["https://data.delijn.be/stops/401782", "https://data.delijn.be/stops/407875"], ["https://data.delijn.be/stops/103785", "https://data.delijn.be/stops/105895"], ["https://data.delijn.be/stops/405731", "https://data.delijn.be/stops/410141"], ["https://data.delijn.be/stops/200179", "https://data.delijn.be/stops/201733"], ["https://data.delijn.be/stops/504794", "https://data.delijn.be/stops/508524"], ["https://data.delijn.be/stops/401180", "https://data.delijn.be/stops/401192"], ["https://data.delijn.be/stops/405165", "https://data.delijn.be/stops/405217"], ["https://data.delijn.be/stops/201953", "https://data.delijn.be/stops/202461"], ["https://data.delijn.be/stops/200754", "https://data.delijn.be/stops/209251"], ["https://data.delijn.be/stops/102717", "https://data.delijn.be/stops/105029"], ["https://data.delijn.be/stops/105462", "https://data.delijn.be/stops/105663"], ["https://data.delijn.be/stops/208253", "https://data.delijn.be/stops/219027"], ["https://data.delijn.be/stops/407110", "https://data.delijn.be/stops/407111"], ["https://data.delijn.be/stops/203947", "https://data.delijn.be/stops/219022"], ["https://data.delijn.be/stops/103205", "https://data.delijn.be/stops/103333"], ["https://data.delijn.be/stops/403601", "https://data.delijn.be/stops/410038"], ["https://data.delijn.be/stops/406257", "https://data.delijn.be/stops/408416"], ["https://data.delijn.be/stops/503557", "https://data.delijn.be/stops/508552"], ["https://data.delijn.be/stops/502252", "https://data.delijn.be/stops/507252"], ["https://data.delijn.be/stops/303032", "https://data.delijn.be/stops/303595"], ["https://data.delijn.be/stops/101924", "https://data.delijn.be/stops/107016"], ["https://data.delijn.be/stops/206022", "https://data.delijn.be/stops/207075"], ["https://data.delijn.be/stops/200521", "https://data.delijn.be/stops/200523"], ["https://data.delijn.be/stops/308796", "https://data.delijn.be/stops/308850"], ["https://data.delijn.be/stops/206019", "https://data.delijn.be/stops/207078"], ["https://data.delijn.be/stops/200977", "https://data.delijn.be/stops/203904"], ["https://data.delijn.be/stops/207667", "https://data.delijn.be/stops/208061"], ["https://data.delijn.be/stops/202585", "https://data.delijn.be/stops/203585"], ["https://data.delijn.be/stops/400406", "https://data.delijn.be/stops/400412"], ["https://data.delijn.be/stops/202947", "https://data.delijn.be/stops/203962"], ["https://data.delijn.be/stops/203849", "https://data.delijn.be/stops/203851"], ["https://data.delijn.be/stops/202306", "https://data.delijn.be/stops/203306"], ["https://data.delijn.be/stops/305984", "https://data.delijn.be/stops/305985"], ["https://data.delijn.be/stops/401524", "https://data.delijn.be/stops/402567"], ["https://data.delijn.be/stops/400252", "https://data.delijn.be/stops/400266"], ["https://data.delijn.be/stops/304111", "https://data.delijn.be/stops/306406"], ["https://data.delijn.be/stops/210037", "https://data.delijn.be/stops/211038"], ["https://data.delijn.be/stops/202301", "https://data.delijn.be/stops/202303"], ["https://data.delijn.be/stops/201978", "https://data.delijn.be/stops/208540"], ["https://data.delijn.be/stops/507018", "https://data.delijn.be/stops/507796"], ["https://data.delijn.be/stops/305305", "https://data.delijn.be/stops/305310"], ["https://data.delijn.be/stops/101947", "https://data.delijn.be/stops/108751"], ["https://data.delijn.be/stops/503135", "https://data.delijn.be/stops/508135"], ["https://data.delijn.be/stops/303443", "https://data.delijn.be/stops/303456"], ["https://data.delijn.be/stops/202213", "https://data.delijn.be/stops/203212"], ["https://data.delijn.be/stops/105764", "https://data.delijn.be/stops/109528"], ["https://data.delijn.be/stops/502502", "https://data.delijn.be/stops/507734"], ["https://data.delijn.be/stops/208453", "https://data.delijn.be/stops/209520"], ["https://data.delijn.be/stops/106634", "https://data.delijn.be/stops/107184"], ["https://data.delijn.be/stops/206802", "https://data.delijn.be/stops/208032"], ["https://data.delijn.be/stops/304173", "https://data.delijn.be/stops/304684"], ["https://data.delijn.be/stops/201684", "https://data.delijn.be/stops/203318"], ["https://data.delijn.be/stops/205264", "https://data.delijn.be/stops/205823"], ["https://data.delijn.be/stops/400474", "https://data.delijn.be/stops/408700"], ["https://data.delijn.be/stops/404910", "https://data.delijn.be/stops/404984"], ["https://data.delijn.be/stops/108636", "https://data.delijn.be/stops/109657"], ["https://data.delijn.be/stops/303078", "https://data.delijn.be/stops/303105"], ["https://data.delijn.be/stops/409286", "https://data.delijn.be/stops/409310"], ["https://data.delijn.be/stops/305232", "https://data.delijn.be/stops/305260"], ["https://data.delijn.be/stops/504317", "https://data.delijn.be/stops/509317"], ["https://data.delijn.be/stops/503706", "https://data.delijn.be/stops/509364"], ["https://data.delijn.be/stops/303520", "https://data.delijn.be/stops/303521"], ["https://data.delijn.be/stops/409063", "https://data.delijn.be/stops/409149"], ["https://data.delijn.be/stops/301896", "https://data.delijn.be/stops/304282"], ["https://data.delijn.be/stops/502616", "https://data.delijn.be/stops/502617"], ["https://data.delijn.be/stops/503022", "https://data.delijn.be/stops/504344"], ["https://data.delijn.be/stops/201386", "https://data.delijn.be/stops/203651"], ["https://data.delijn.be/stops/102137", "https://data.delijn.be/stops/103476"], ["https://data.delijn.be/stops/303644", "https://data.delijn.be/stops/305540"], ["https://data.delijn.be/stops/210129", "https://data.delijn.be/stops/211129"], ["https://data.delijn.be/stops/200052", "https://data.delijn.be/stops/201053"], ["https://data.delijn.be/stops/208473", "https://data.delijn.be/stops/209473"], ["https://data.delijn.be/stops/208223", "https://data.delijn.be/stops/209222"], ["https://data.delijn.be/stops/502318", "https://data.delijn.be/stops/507318"], ["https://data.delijn.be/stops/503341", "https://data.delijn.be/stops/505634"], ["https://data.delijn.be/stops/500128", "https://data.delijn.be/stops/505014"], ["https://data.delijn.be/stops/208382", "https://data.delijn.be/stops/208753"], ["https://data.delijn.be/stops/402394", "https://data.delijn.be/stops/407495"], ["https://data.delijn.be/stops/504525", "https://data.delijn.be/stops/504529"], ["https://data.delijn.be/stops/502562", "https://data.delijn.be/stops/502563"], ["https://data.delijn.be/stops/502054", "https://data.delijn.be/stops/502441"], ["https://data.delijn.be/stops/201102", "https://data.delijn.be/stops/201103"], ["https://data.delijn.be/stops/406124", "https://data.delijn.be/stops/406125"], ["https://data.delijn.be/stops/209631", "https://data.delijn.be/stops/209632"], ["https://data.delijn.be/stops/105696", "https://data.delijn.be/stops/105697"], ["https://data.delijn.be/stops/301513", "https://data.delijn.be/stops/301515"], ["https://data.delijn.be/stops/504442", "https://data.delijn.be/stops/509398"], ["https://data.delijn.be/stops/107760", "https://data.delijn.be/stops/107906"], ["https://data.delijn.be/stops/300190", "https://data.delijn.be/stops/300229"], ["https://data.delijn.be/stops/204070", "https://data.delijn.be/stops/204222"], ["https://data.delijn.be/stops/405202", "https://data.delijn.be/stops/406725"], ["https://data.delijn.be/stops/407894", "https://data.delijn.be/stops/408044"], ["https://data.delijn.be/stops/302148", "https://data.delijn.be/stops/307113"], ["https://data.delijn.be/stops/102091", "https://data.delijn.be/stops/102092"], ["https://data.delijn.be/stops/202089", "https://data.delijn.be/stops/203720"], ["https://data.delijn.be/stops/109188", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/302713", "https://data.delijn.be/stops/302736"], ["https://data.delijn.be/stops/106276", "https://data.delijn.be/stops/106277"], ["https://data.delijn.be/stops/500196", "https://data.delijn.be/stops/505032"], ["https://data.delijn.be/stops/503293", "https://data.delijn.be/stops/508293"], ["https://data.delijn.be/stops/103612", "https://data.delijn.be/stops/103614"], ["https://data.delijn.be/stops/504666", "https://data.delijn.be/stops/505794"], ["https://data.delijn.be/stops/200805", "https://data.delijn.be/stops/200883"], ["https://data.delijn.be/stops/307955", "https://data.delijn.be/stops/308827"], ["https://data.delijn.be/stops/205127", "https://data.delijn.be/stops/205128"], ["https://data.delijn.be/stops/504819", "https://data.delijn.be/stops/508189"], ["https://data.delijn.be/stops/102785", "https://data.delijn.be/stops/102800"], ["https://data.delijn.be/stops/303206", "https://data.delijn.be/stops/304314"], ["https://data.delijn.be/stops/503663", "https://data.delijn.be/stops/508663"], ["https://data.delijn.be/stops/504365", "https://data.delijn.be/stops/509365"], ["https://data.delijn.be/stops/503645", "https://data.delijn.be/stops/508718"], ["https://data.delijn.be/stops/408485", "https://data.delijn.be/stops/408486"], ["https://data.delijn.be/stops/302716", "https://data.delijn.be/stops/302785"], ["https://data.delijn.be/stops/208390", "https://data.delijn.be/stops/209390"], ["https://data.delijn.be/stops/105554", "https://data.delijn.be/stops/105556"], ["https://data.delijn.be/stops/504503", "https://data.delijn.be/stops/509503"], ["https://data.delijn.be/stops/408674", "https://data.delijn.be/stops/408760"], ["https://data.delijn.be/stops/105267", "https://data.delijn.be/stops/109925"], ["https://data.delijn.be/stops/404161", "https://data.delijn.be/stops/404162"], ["https://data.delijn.be/stops/101090", "https://data.delijn.be/stops/103845"], ["https://data.delijn.be/stops/300679", "https://data.delijn.be/stops/300680"], ["https://data.delijn.be/stops/503676", "https://data.delijn.be/stops/505905"], ["https://data.delijn.be/stops/503070", "https://data.delijn.be/stops/508074"], ["https://data.delijn.be/stops/200738", "https://data.delijn.be/stops/203581"], ["https://data.delijn.be/stops/508764", "https://data.delijn.be/stops/509364"], ["https://data.delijn.be/stops/409094", "https://data.delijn.be/stops/410049"], ["https://data.delijn.be/stops/405981", "https://data.delijn.be/stops/405982"], ["https://data.delijn.be/stops/505261", "https://data.delijn.be/stops/508222"], ["https://data.delijn.be/stops/301824", "https://data.delijn.be/stops/302550"], ["https://data.delijn.be/stops/400874", "https://data.delijn.be/stops/400875"], ["https://data.delijn.be/stops/504070", "https://data.delijn.be/stops/504694"], ["https://data.delijn.be/stops/504353", "https://data.delijn.be/stops/509200"], ["https://data.delijn.be/stops/202260", "https://data.delijn.be/stops/203105"], ["https://data.delijn.be/stops/108116", "https://data.delijn.be/stops/108151"], ["https://data.delijn.be/stops/209081", "https://data.delijn.be/stops/218015"], ["https://data.delijn.be/stops/300927", "https://data.delijn.be/stops/300988"], ["https://data.delijn.be/stops/201511", "https://data.delijn.be/stops/211510"], ["https://data.delijn.be/stops/201772", "https://data.delijn.be/stops/209270"], ["https://data.delijn.be/stops/403765", "https://data.delijn.be/stops/403811"], ["https://data.delijn.be/stops/106896", "https://data.delijn.be/stops/107217"], ["https://data.delijn.be/stops/101027", "https://data.delijn.be/stops/101989"], ["https://data.delijn.be/stops/207479", "https://data.delijn.be/stops/207499"], ["https://data.delijn.be/stops/108942", "https://data.delijn.be/stops/108943"], ["https://data.delijn.be/stops/402070", "https://data.delijn.be/stops/402079"], ["https://data.delijn.be/stops/303877", "https://data.delijn.be/stops/307800"], ["https://data.delijn.be/stops/304219", "https://data.delijn.be/stops/304289"], ["https://data.delijn.be/stops/501551", "https://data.delijn.be/stops/509796"], ["https://data.delijn.be/stops/300263", "https://data.delijn.be/stops/300265"], ["https://data.delijn.be/stops/407095", "https://data.delijn.be/stops/407321"], ["https://data.delijn.be/stops/102392", "https://data.delijn.be/stops/107117"], ["https://data.delijn.be/stops/303373", "https://data.delijn.be/stops/303672"], ["https://data.delijn.be/stops/204476", "https://data.delijn.be/stops/205119"], ["https://data.delijn.be/stops/507266", "https://data.delijn.be/stops/507921"], ["https://data.delijn.be/stops/505714", "https://data.delijn.be/stops/508486"], ["https://data.delijn.be/stops/106111", "https://data.delijn.be/stops/109877"], ["https://data.delijn.be/stops/207670", "https://data.delijn.be/stops/209502"], ["https://data.delijn.be/stops/206064", "https://data.delijn.be/stops/206501"], ["https://data.delijn.be/stops/301134", "https://data.delijn.be/stops/308957"], ["https://data.delijn.be/stops/506070", "https://data.delijn.be/stops/506073"], ["https://data.delijn.be/stops/107163", "https://data.delijn.be/stops/107563"], ["https://data.delijn.be/stops/402105", "https://data.delijn.be/stops/402422"], ["https://data.delijn.be/stops/104646", "https://data.delijn.be/stops/108050"], ["https://data.delijn.be/stops/202147", "https://data.delijn.be/stops/202148"], ["https://data.delijn.be/stops/107426", "https://data.delijn.be/stops/107428"], ["https://data.delijn.be/stops/207514", "https://data.delijn.be/stops/207660"], ["https://data.delijn.be/stops/105967", "https://data.delijn.be/stops/105968"], ["https://data.delijn.be/stops/301250", "https://data.delijn.be/stops/307409"], ["https://data.delijn.be/stops/108421", "https://data.delijn.be/stops/109568"], ["https://data.delijn.be/stops/200727", "https://data.delijn.be/stops/204942"], ["https://data.delijn.be/stops/408854", "https://data.delijn.be/stops/408856"], ["https://data.delijn.be/stops/103055", "https://data.delijn.be/stops/104801"], ["https://data.delijn.be/stops/108081", "https://data.delijn.be/stops/108083"], ["https://data.delijn.be/stops/501325", "https://data.delijn.be/stops/501565"], ["https://data.delijn.be/stops/405410", "https://data.delijn.be/stops/406395"], ["https://data.delijn.be/stops/101430", "https://data.delijn.be/stops/103070"], ["https://data.delijn.be/stops/410143", "https://data.delijn.be/stops/410145"], ["https://data.delijn.be/stops/404914", "https://data.delijn.be/stops/404922"], ["https://data.delijn.be/stops/208279", "https://data.delijn.be/stops/209278"], ["https://data.delijn.be/stops/203262", "https://data.delijn.be/stops/203263"], ["https://data.delijn.be/stops/307648", "https://data.delijn.be/stops/307691"], ["https://data.delijn.be/stops/203868", "https://data.delijn.be/stops/208835"], ["https://data.delijn.be/stops/308420", "https://data.delijn.be/stops/308708"], ["https://data.delijn.be/stops/407017", "https://data.delijn.be/stops/407050"], ["https://data.delijn.be/stops/503419", "https://data.delijn.be/stops/503442"], ["https://data.delijn.be/stops/503067", "https://data.delijn.be/stops/508067"], ["https://data.delijn.be/stops/104548", "https://data.delijn.be/stops/104549"], ["https://data.delijn.be/stops/201695", "https://data.delijn.be/stops/202688"], ["https://data.delijn.be/stops/508149", "https://data.delijn.be/stops/508151"], ["https://data.delijn.be/stops/203823", "https://data.delijn.be/stops/203824"], ["https://data.delijn.be/stops/503483", "https://data.delijn.be/stops/504391"], ["https://data.delijn.be/stops/307940", "https://data.delijn.be/stops/308774"], ["https://data.delijn.be/stops/403997", "https://data.delijn.be/stops/404014"], ["https://data.delijn.be/stops/406032", "https://data.delijn.be/stops/406033"], ["https://data.delijn.be/stops/200822", "https://data.delijn.be/stops/208653"], ["https://data.delijn.be/stops/204241", "https://data.delijn.be/stops/205344"], ["https://data.delijn.be/stops/405466", "https://data.delijn.be/stops/408568"], ["https://data.delijn.be/stops/302071", "https://data.delijn.be/stops/308812"], ["https://data.delijn.be/stops/403210", "https://data.delijn.be/stops/410213"], ["https://data.delijn.be/stops/502105", "https://data.delijn.be/stops/502142"], ["https://data.delijn.be/stops/210129", "https://data.delijn.be/stops/218935"], ["https://data.delijn.be/stops/502258", "https://data.delijn.be/stops/502718"], ["https://data.delijn.be/stops/404694", "https://data.delijn.be/stops/405509"], ["https://data.delijn.be/stops/402818", "https://data.delijn.be/stops/404620"], ["https://data.delijn.be/stops/201865", "https://data.delijn.be/stops/201874"], ["https://data.delijn.be/stops/305450", "https://data.delijn.be/stops/307551"], ["https://data.delijn.be/stops/409680", "https://data.delijn.be/stops/409683"], ["https://data.delijn.be/stops/304027", "https://data.delijn.be/stops/304028"], ["https://data.delijn.be/stops/203456", "https://data.delijn.be/stops/203459"], ["https://data.delijn.be/stops/404286", "https://data.delijn.be/stops/407293"], ["https://data.delijn.be/stops/507260", "https://data.delijn.be/stops/507912"], ["https://data.delijn.be/stops/404774", "https://data.delijn.be/stops/404781"], ["https://data.delijn.be/stops/206728", "https://data.delijn.be/stops/207128"], ["https://data.delijn.be/stops/208817", "https://data.delijn.be/stops/209072"], ["https://data.delijn.be/stops/408324", "https://data.delijn.be/stops/408325"], ["https://data.delijn.be/stops/509055", "https://data.delijn.be/stops/509056"], ["https://data.delijn.be/stops/504694", "https://data.delijn.be/stops/509483"], ["https://data.delijn.be/stops/407380", "https://data.delijn.be/stops/407598"], ["https://data.delijn.be/stops/105791", "https://data.delijn.be/stops/105793"], ["https://data.delijn.be/stops/107390", "https://data.delijn.be/stops/305821"], ["https://data.delijn.be/stops/208178", "https://data.delijn.be/stops/209178"], ["https://data.delijn.be/stops/300273", "https://data.delijn.be/stops/300281"], ["https://data.delijn.be/stops/304796", "https://data.delijn.be/stops/306685"], ["https://data.delijn.be/stops/101982", "https://data.delijn.be/stops/300026"], ["https://data.delijn.be/stops/502587", "https://data.delijn.be/stops/505700"], ["https://data.delijn.be/stops/503281", "https://data.delijn.be/stops/508281"], ["https://data.delijn.be/stops/404993", "https://data.delijn.be/stops/406926"], ["https://data.delijn.be/stops/305483", "https://data.delijn.be/stops/308553"], ["https://data.delijn.be/stops/405196", "https://data.delijn.be/stops/405199"], ["https://data.delijn.be/stops/409051", "https://data.delijn.be/stops/409077"], ["https://data.delijn.be/stops/406908", "https://data.delijn.be/stops/409470"], ["https://data.delijn.be/stops/301090", "https://data.delijn.be/stops/304254"], ["https://data.delijn.be/stops/208498", "https://data.delijn.be/stops/209469"], ["https://data.delijn.be/stops/200818", "https://data.delijn.be/stops/200853"], ["https://data.delijn.be/stops/202609", "https://data.delijn.be/stops/202613"], ["https://data.delijn.be/stops/105318", "https://data.delijn.be/stops/105323"], ["https://data.delijn.be/stops/205137", "https://data.delijn.be/stops/207895"], ["https://data.delijn.be/stops/308137", "https://data.delijn.be/stops/308140"], ["https://data.delijn.be/stops/407057", "https://data.delijn.be/stops/308745"], ["https://data.delijn.be/stops/205321", "https://data.delijn.be/stops/205698"], ["https://data.delijn.be/stops/205098", "https://data.delijn.be/stops/205142"], ["https://data.delijn.be/stops/102859", "https://data.delijn.be/stops/205629"], ["https://data.delijn.be/stops/501010", "https://data.delijn.be/stops/502821"], ["https://data.delijn.be/stops/102998", "https://data.delijn.be/stops/103002"], ["https://data.delijn.be/stops/504660", "https://data.delijn.be/stops/507954"], ["https://data.delijn.be/stops/403046", "https://data.delijn.be/stops/403502"], ["https://data.delijn.be/stops/500954", "https://data.delijn.be/stops/509154"], ["https://data.delijn.be/stops/206668", "https://data.delijn.be/stops/208482"], ["https://data.delijn.be/stops/202831", "https://data.delijn.be/stops/202942"], ["https://data.delijn.be/stops/409596", "https://data.delijn.be/stops/409651"], ["https://data.delijn.be/stops/405019", "https://data.delijn.be/stops/408923"], ["https://data.delijn.be/stops/400596", "https://data.delijn.be/stops/400619"], ["https://data.delijn.be/stops/505298", "https://data.delijn.be/stops/505817"], ["https://data.delijn.be/stops/403719", "https://data.delijn.be/stops/403723"], ["https://data.delijn.be/stops/502315", "https://data.delijn.be/stops/505680"], ["https://data.delijn.be/stops/407223", "https://data.delijn.be/stops/407224"], ["https://data.delijn.be/stops/403894", "https://data.delijn.be/stops/406887"], ["https://data.delijn.be/stops/400267", "https://data.delijn.be/stops/405537"], ["https://data.delijn.be/stops/109118", "https://data.delijn.be/stops/109121"], ["https://data.delijn.be/stops/502915", "https://data.delijn.be/stops/508325"], ["https://data.delijn.be/stops/405700", "https://data.delijn.be/stops/405740"], ["https://data.delijn.be/stops/200082", "https://data.delijn.be/stops/201082"], ["https://data.delijn.be/stops/303259", "https://data.delijn.be/stops/306339"], ["https://data.delijn.be/stops/206890", "https://data.delijn.be/stops/206914"], ["https://data.delijn.be/stops/103492", "https://data.delijn.be/stops/104551"], ["https://data.delijn.be/stops/300176", "https://data.delijn.be/stops/300192"], ["https://data.delijn.be/stops/106472", "https://data.delijn.be/stops/106473"], ["https://data.delijn.be/stops/408318", "https://data.delijn.be/stops/408349"], ["https://data.delijn.be/stops/206521", "https://data.delijn.be/stops/207063"], ["https://data.delijn.be/stops/108287", "https://data.delijn.be/stops/108289"], ["https://data.delijn.be/stops/101362", "https://data.delijn.be/stops/102188"], ["https://data.delijn.be/stops/504980", "https://data.delijn.be/stops/508905"], ["https://data.delijn.be/stops/408562", "https://data.delijn.be/stops/408795"], ["https://data.delijn.be/stops/101302", "https://data.delijn.be/stops/107457"], ["https://data.delijn.be/stops/402306", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/204134", "https://data.delijn.be/stops/205147"], ["https://data.delijn.be/stops/201148", "https://data.delijn.be/stops/201149"], ["https://data.delijn.be/stops/401394", "https://data.delijn.be/stops/408418"], ["https://data.delijn.be/stops/200836", "https://data.delijn.be/stops/203300"], ["https://data.delijn.be/stops/505332", "https://data.delijn.be/stops/507502"], ["https://data.delijn.be/stops/502194", "https://data.delijn.be/stops/508312"], ["https://data.delijn.be/stops/401652", "https://data.delijn.be/stops/305950"], ["https://data.delijn.be/stops/400353", "https://data.delijn.be/stops/400360"], ["https://data.delijn.be/stops/202819", "https://data.delijn.be/stops/211070"], ["https://data.delijn.be/stops/303059", "https://data.delijn.be/stops/303070"], ["https://data.delijn.be/stops/208633", "https://data.delijn.be/stops/209508"], ["https://data.delijn.be/stops/502010", "https://data.delijn.be/stops/505345"], ["https://data.delijn.be/stops/300084", "https://data.delijn.be/stops/300085"], ["https://data.delijn.be/stops/506335", "https://data.delijn.be/stops/506349"], ["https://data.delijn.be/stops/209740", "https://data.delijn.be/stops/209743"], ["https://data.delijn.be/stops/202809", "https://data.delijn.be/stops/208649"], ["https://data.delijn.be/stops/302096", "https://data.delijn.be/stops/302097"], ["https://data.delijn.be/stops/503502", "https://data.delijn.be/stops/508495"], ["https://data.delijn.be/stops/101640", "https://data.delijn.be/stops/103048"], ["https://data.delijn.be/stops/201776", "https://data.delijn.be/stops/208289"], ["https://data.delijn.be/stops/406224", "https://data.delijn.be/stops/406228"], ["https://data.delijn.be/stops/300160", "https://data.delijn.be/stops/308790"], ["https://data.delijn.be/stops/104054", "https://data.delijn.be/stops/108901"], ["https://data.delijn.be/stops/501204", "https://data.delijn.be/stops/506205"], ["https://data.delijn.be/stops/300694", "https://data.delijn.be/stops/306935"], ["https://data.delijn.be/stops/504571", "https://data.delijn.be/stops/509577"], ["https://data.delijn.be/stops/204580", "https://data.delijn.be/stops/205094"], ["https://data.delijn.be/stops/200569", "https://data.delijn.be/stops/201960"], ["https://data.delijn.be/stops/407054", "https://data.delijn.be/stops/410014"], ["https://data.delijn.be/stops/408178", "https://data.delijn.be/stops/408179"], ["https://data.delijn.be/stops/106881", "https://data.delijn.be/stops/106882"], ["https://data.delijn.be/stops/203098", "https://data.delijn.be/stops/203099"], ["https://data.delijn.be/stops/202474", "https://data.delijn.be/stops/203473"], ["https://data.delijn.be/stops/206533", "https://data.delijn.be/stops/207532"], ["https://data.delijn.be/stops/200562", "https://data.delijn.be/stops/201562"], ["https://data.delijn.be/stops/504291", "https://data.delijn.be/stops/504602"], ["https://data.delijn.be/stops/108000", "https://data.delijn.be/stops/108115"], ["https://data.delijn.be/stops/407256", "https://data.delijn.be/stops/407334"], ["https://data.delijn.be/stops/304947", "https://data.delijn.be/stops/304991"], ["https://data.delijn.be/stops/504554", "https://data.delijn.be/stops/505369"], ["https://data.delijn.be/stops/202683", "https://data.delijn.be/stops/202711"], ["https://data.delijn.be/stops/503928", "https://data.delijn.be/stops/508928"], ["https://data.delijn.be/stops/206342", "https://data.delijn.be/stops/206688"], ["https://data.delijn.be/stops/302906", "https://data.delijn.be/stops/304312"], ["https://data.delijn.be/stops/101220", "https://data.delijn.be/stops/102593"], ["https://data.delijn.be/stops/101148", "https://data.delijn.be/stops/106762"], ["https://data.delijn.be/stops/504318", "https://data.delijn.be/stops/509735"], ["https://data.delijn.be/stops/107059", "https://data.delijn.be/stops/108224"], ["https://data.delijn.be/stops/403062", "https://data.delijn.be/stops/403082"], ["https://data.delijn.be/stops/200640", "https://data.delijn.be/stops/201983"], ["https://data.delijn.be/stops/301121", "https://data.delijn.be/stops/301122"], ["https://data.delijn.be/stops/204257", "https://data.delijn.be/stops/204823"], ["https://data.delijn.be/stops/102922", "https://data.delijn.be/stops/104870"], ["https://data.delijn.be/stops/506248", "https://data.delijn.be/stops/506771"], ["https://data.delijn.be/stops/408902", "https://data.delijn.be/stops/408903"], ["https://data.delijn.be/stops/302496", "https://data.delijn.be/stops/302716"], ["https://data.delijn.be/stops/102021", "https://data.delijn.be/stops/102022"], ["https://data.delijn.be/stops/308125", "https://data.delijn.be/stops/308723"], ["https://data.delijn.be/stops/300258", "https://data.delijn.be/stops/300281"], ["https://data.delijn.be/stops/405324", "https://data.delijn.be/stops/405327"], ["https://data.delijn.be/stops/106333", "https://data.delijn.be/stops/106334"], ["https://data.delijn.be/stops/506138", "https://data.delijn.be/stops/506139"], ["https://data.delijn.be/stops/201026", "https://data.delijn.be/stops/205926"], ["https://data.delijn.be/stops/502095", "https://data.delijn.be/stops/502148"], ["https://data.delijn.be/stops/300135", "https://data.delijn.be/stops/300136"], ["https://data.delijn.be/stops/407323", "https://data.delijn.be/stops/410181"], ["https://data.delijn.be/stops/305657", "https://data.delijn.be/stops/307790"], ["https://data.delijn.be/stops/406881", "https://data.delijn.be/stops/406882"], ["https://data.delijn.be/stops/206128", "https://data.delijn.be/stops/206652"], ["https://data.delijn.be/stops/301520", "https://data.delijn.be/stops/308740"], ["https://data.delijn.be/stops/105705", "https://data.delijn.be/stops/105980"], ["https://data.delijn.be/stops/201659", "https://data.delijn.be/stops/210048"], ["https://data.delijn.be/stops/200813", "https://data.delijn.be/stops/202059"], ["https://data.delijn.be/stops/201276", "https://data.delijn.be/stops/201342"], ["https://data.delijn.be/stops/503116", "https://data.delijn.be/stops/505789"], ["https://data.delijn.be/stops/204295", "https://data.delijn.be/stops/205496"], ["https://data.delijn.be/stops/501059", "https://data.delijn.be/stops/506053"], ["https://data.delijn.be/stops/101837", "https://data.delijn.be/stops/108199"], ["https://data.delijn.be/stops/405018", "https://data.delijn.be/stops/405019"], ["https://data.delijn.be/stops/304547", "https://data.delijn.be/stops/304551"], ["https://data.delijn.be/stops/207481", "https://data.delijn.be/stops/207822"], ["https://data.delijn.be/stops/306588", "https://data.delijn.be/stops/308441"], ["https://data.delijn.be/stops/305460", "https://data.delijn.be/stops/306558"], ["https://data.delijn.be/stops/208619", "https://data.delijn.be/stops/209619"], ["https://data.delijn.be/stops/406161", "https://data.delijn.be/stops/406228"], ["https://data.delijn.be/stops/504103", "https://data.delijn.be/stops/504471"], ["https://data.delijn.be/stops/208165", "https://data.delijn.be/stops/209171"], ["https://data.delijn.be/stops/102880", "https://data.delijn.be/stops/205611"], ["https://data.delijn.be/stops/201811", "https://data.delijn.be/stops/201813"], ["https://data.delijn.be/stops/406914", "https://data.delijn.be/stops/406933"], ["https://data.delijn.be/stops/406233", "https://data.delijn.be/stops/406238"], ["https://data.delijn.be/stops/302421", "https://data.delijn.be/stops/302423"], ["https://data.delijn.be/stops/308470", "https://data.delijn.be/stops/308472"], ["https://data.delijn.be/stops/300163", "https://data.delijn.be/stops/300176"], ["https://data.delijn.be/stops/401007", "https://data.delijn.be/stops/401009"], ["https://data.delijn.be/stops/402417", "https://data.delijn.be/stops/402430"], ["https://data.delijn.be/stops/206354", "https://data.delijn.be/stops/206885"], ["https://data.delijn.be/stops/202047", "https://data.delijn.be/stops/203138"], ["https://data.delijn.be/stops/103259", "https://data.delijn.be/stops/105421"], ["https://data.delijn.be/stops/403370", "https://data.delijn.be/stops/403371"], ["https://data.delijn.be/stops/503535", "https://data.delijn.be/stops/508755"], ["https://data.delijn.be/stops/501021", "https://data.delijn.be/stops/506620"], ["https://data.delijn.be/stops/502453", "https://data.delijn.be/stops/507444"], ["https://data.delijn.be/stops/404067", "https://data.delijn.be/stops/408894"], ["https://data.delijn.be/stops/501240", "https://data.delijn.be/stops/506236"], ["https://data.delijn.be/stops/107600", "https://data.delijn.be/stops/109030"], ["https://data.delijn.be/stops/200477", "https://data.delijn.be/stops/203931"], ["https://data.delijn.be/stops/304316", "https://data.delijn.be/stops/306284"], ["https://data.delijn.be/stops/104551", "https://data.delijn.be/stops/108940"], ["https://data.delijn.be/stops/300318", "https://data.delijn.be/stops/300728"], ["https://data.delijn.be/stops/504637", "https://data.delijn.be/stops/509515"], ["https://data.delijn.be/stops/504506", "https://data.delijn.be/stops/509507"], ["https://data.delijn.be/stops/302688", "https://data.delijn.be/stops/302693"], ["https://data.delijn.be/stops/206397", "https://data.delijn.be/stops/207280"], ["https://data.delijn.be/stops/408579", "https://data.delijn.be/stops/408586"], ["https://data.delijn.be/stops/108313", "https://data.delijn.be/stops/108754"], ["https://data.delijn.be/stops/405696", "https://data.delijn.be/stops/405931"], ["https://data.delijn.be/stops/101535", "https://data.delijn.be/stops/102252"], ["https://data.delijn.be/stops/207376", "https://data.delijn.be/stops/207724"], ["https://data.delijn.be/stops/504680", "https://data.delijn.be/stops/509200"], ["https://data.delijn.be/stops/206399", "https://data.delijn.be/stops/207400"], ["https://data.delijn.be/stops/205241", "https://data.delijn.be/stops/205478"], ["https://data.delijn.be/stops/502014", "https://data.delijn.be/stops/507168"], ["https://data.delijn.be/stops/504393", "https://data.delijn.be/stops/509661"], ["https://data.delijn.be/stops/201472", "https://data.delijn.be/stops/211120"], ["https://data.delijn.be/stops/105324", "https://data.delijn.be/stops/105336"], ["https://data.delijn.be/stops/402000", "https://data.delijn.be/stops/404977"], ["https://data.delijn.be/stops/308056", "https://data.delijn.be/stops/308057"], ["https://data.delijn.be/stops/206945", "https://data.delijn.be/stops/207944"], ["https://data.delijn.be/stops/206612", "https://data.delijn.be/stops/206785"], ["https://data.delijn.be/stops/503881", "https://data.delijn.be/stops/504998"], ["https://data.delijn.be/stops/300937", "https://data.delijn.be/stops/301005"], ["https://data.delijn.be/stops/204505", "https://data.delijn.be/stops/204506"], ["https://data.delijn.be/stops/502048", "https://data.delijn.be/stops/507046"], ["https://data.delijn.be/stops/409777", "https://data.delijn.be/stops/409779"], ["https://data.delijn.be/stops/500561", "https://data.delijn.be/stops/500563"], ["https://data.delijn.be/stops/407815", "https://data.delijn.be/stops/407961"], ["https://data.delijn.be/stops/206709", "https://data.delijn.be/stops/301428"], ["https://data.delijn.be/stops/103766", "https://data.delijn.be/stops/108737"], ["https://data.delijn.be/stops/301020", "https://data.delijn.be/stops/304255"], ["https://data.delijn.be/stops/101217", "https://data.delijn.be/stops/101658"], ["https://data.delijn.be/stops/101030", "https://data.delijn.be/stops/101215"], ["https://data.delijn.be/stops/402963", "https://data.delijn.be/stops/407042"], ["https://data.delijn.be/stops/205069", "https://data.delijn.be/stops/205236"], ["https://data.delijn.be/stops/106018", "https://data.delijn.be/stops/106188"], ["https://data.delijn.be/stops/504201", "https://data.delijn.be/stops/505387"], ["https://data.delijn.be/stops/107923", "https://data.delijn.be/stops/205799"], ["https://data.delijn.be/stops/202108", "https://data.delijn.be/stops/203108"], ["https://data.delijn.be/stops/200489", "https://data.delijn.be/stops/203454"], ["https://data.delijn.be/stops/301616", "https://data.delijn.be/stops/304179"], ["https://data.delijn.be/stops/200952", "https://data.delijn.be/stops/203252"], ["https://data.delijn.be/stops/200309", "https://data.delijn.be/stops/201159"], ["https://data.delijn.be/stops/501345", "https://data.delijn.be/stops/506546"], ["https://data.delijn.be/stops/501017", "https://data.delijn.be/stops/506022"], ["https://data.delijn.be/stops/108124", "https://data.delijn.be/stops/108126"], ["https://data.delijn.be/stops/505729", "https://data.delijn.be/stops/507295"], ["https://data.delijn.be/stops/301038", "https://data.delijn.be/stops/301070"], ["https://data.delijn.be/stops/108157", "https://data.delijn.be/stops/108158"], ["https://data.delijn.be/stops/304419", "https://data.delijn.be/stops/307395"], ["https://data.delijn.be/stops/408851", "https://data.delijn.be/stops/408919"], ["https://data.delijn.be/stops/501485", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/207894", "https://data.delijn.be/stops/207895"], ["https://data.delijn.be/stops/405660", "https://data.delijn.be/stops/302963"], ["https://data.delijn.be/stops/404437", "https://data.delijn.be/stops/404546"], ["https://data.delijn.be/stops/306346", "https://data.delijn.be/stops/308697"], ["https://data.delijn.be/stops/401419", "https://data.delijn.be/stops/305494"], ["https://data.delijn.be/stops/504349", "https://data.delijn.be/stops/509351"], ["https://data.delijn.be/stops/103338", "https://data.delijn.be/stops/104877"], ["https://data.delijn.be/stops/503244", "https://data.delijn.be/stops/503265"], ["https://data.delijn.be/stops/400791", "https://data.delijn.be/stops/400835"], ["https://data.delijn.be/stops/501449", "https://data.delijn.be/stops/506501"], ["https://data.delijn.be/stops/504043", "https://data.delijn.be/stops/504047"], ["https://data.delijn.be/stops/304991", "https://data.delijn.be/stops/305018"], ["https://data.delijn.be/stops/501409", "https://data.delijn.be/stops/501485"], ["https://data.delijn.be/stops/503468", "https://data.delijn.be/stops/504812"], ["https://data.delijn.be/stops/507372", "https://data.delijn.be/stops/509892"], ["https://data.delijn.be/stops/409354", "https://data.delijn.be/stops/409387"], ["https://data.delijn.be/stops/101726", "https://data.delijn.be/stops/106806"], ["https://data.delijn.be/stops/102679", "https://data.delijn.be/stops/305821"], ["https://data.delijn.be/stops/401251", "https://data.delijn.be/stops/401258"], ["https://data.delijn.be/stops/108941", "https://data.delijn.be/stops/108946"], ["https://data.delijn.be/stops/305182", "https://data.delijn.be/stops/305184"], ["https://data.delijn.be/stops/400205", "https://data.delijn.be/stops/400216"], ["https://data.delijn.be/stops/204412", "https://data.delijn.be/stops/204428"], ["https://data.delijn.be/stops/401446", "https://data.delijn.be/stops/401596"], ["https://data.delijn.be/stops/104676", "https://data.delijn.be/stops/107371"], ["https://data.delijn.be/stops/302293", "https://data.delijn.be/stops/302294"], ["https://data.delijn.be/stops/101139", "https://data.delijn.be/stops/102280"], ["https://data.delijn.be/stops/200668", "https://data.delijn.be/stops/508847"], ["https://data.delijn.be/stops/101007", "https://data.delijn.be/stops/101072"], ["https://data.delijn.be/stops/205447", "https://data.delijn.be/stops/205649"], ["https://data.delijn.be/stops/403212", "https://data.delijn.be/stops/403213"], ["https://data.delijn.be/stops/204991", "https://data.delijn.be/stops/205991"], ["https://data.delijn.be/stops/504125", "https://data.delijn.be/stops/504130"], ["https://data.delijn.be/stops/202101", "https://data.delijn.be/stops/203100"], ["https://data.delijn.be/stops/102757", "https://data.delijn.be/stops/105072"], ["https://data.delijn.be/stops/303492", "https://data.delijn.be/stops/303502"], ["https://data.delijn.be/stops/302505", "https://data.delijn.be/stops/302509"], ["https://data.delijn.be/stops/403225", "https://data.delijn.be/stops/403389"], ["https://data.delijn.be/stops/102109", "https://data.delijn.be/stops/106233"], ["https://data.delijn.be/stops/202528", "https://data.delijn.be/stops/210009"], ["https://data.delijn.be/stops/101684", "https://data.delijn.be/stops/101687"], ["https://data.delijn.be/stops/303205", "https://data.delijn.be/stops/303208"], ["https://data.delijn.be/stops/400545", "https://data.delijn.be/stops/410271"], ["https://data.delijn.be/stops/302523", "https://data.delijn.be/stops/302528"], ["https://data.delijn.be/stops/502729", "https://data.delijn.be/stops/507150"], ["https://data.delijn.be/stops/107145", "https://data.delijn.be/stops/109090"], ["https://data.delijn.be/stops/500029", "https://data.delijn.be/stops/503883"], ["https://data.delijn.be/stops/102629", "https://data.delijn.be/stops/102631"], ["https://data.delijn.be/stops/204362", "https://data.delijn.be/stops/204696"], ["https://data.delijn.be/stops/400803", "https://data.delijn.be/stops/400847"], ["https://data.delijn.be/stops/107718", "https://data.delijn.be/stops/107719"], ["https://data.delijn.be/stops/207236", "https://data.delijn.be/stops/207935"], ["https://data.delijn.be/stops/200231", "https://data.delijn.be/stops/202133"], ["https://data.delijn.be/stops/304020", "https://data.delijn.be/stops/304066"], ["https://data.delijn.be/stops/104024", "https://data.delijn.be/stops/106602"], ["https://data.delijn.be/stops/405306", "https://data.delijn.be/stops/406996"], ["https://data.delijn.be/stops/503873", "https://data.delijn.be/stops/508873"], ["https://data.delijn.be/stops/105052", "https://data.delijn.be/stops/304043"], ["https://data.delijn.be/stops/403370", "https://data.delijn.be/stops/403509"], ["https://data.delijn.be/stops/102513", "https://data.delijn.be/stops/406500"], ["https://data.delijn.be/stops/203144", "https://data.delijn.be/stops/203145"], ["https://data.delijn.be/stops/101520", "https://data.delijn.be/stops/102113"], ["https://data.delijn.be/stops/101182", "https://data.delijn.be/stops/107879"], ["https://data.delijn.be/stops/105791", "https://data.delijn.be/stops/105942"], ["https://data.delijn.be/stops/504029", "https://data.delijn.be/stops/509029"], ["https://data.delijn.be/stops/202022", "https://data.delijn.be/stops/210853"], ["https://data.delijn.be/stops/401380", "https://data.delijn.be/stops/401381"], ["https://data.delijn.be/stops/109171", "https://data.delijn.be/stops/109233"], ["https://data.delijn.be/stops/101468", "https://data.delijn.be/stops/101963"], ["https://data.delijn.be/stops/304361", "https://data.delijn.be/stops/304370"], ["https://data.delijn.be/stops/402518", "https://data.delijn.be/stops/402586"], ["https://data.delijn.be/stops/303389", "https://data.delijn.be/stops/303390"], ["https://data.delijn.be/stops/106815", "https://data.delijn.be/stops/106817"], ["https://data.delijn.be/stops/501129", "https://data.delijn.be/stops/501366"], ["https://data.delijn.be/stops/405827", "https://data.delijn.be/stops/409422"], ["https://data.delijn.be/stops/507818", "https://data.delijn.be/stops/509772"], ["https://data.delijn.be/stops/501176", "https://data.delijn.be/stops/506170"], ["https://data.delijn.be/stops/502688", "https://data.delijn.be/stops/507921"], ["https://data.delijn.be/stops/504566", "https://data.delijn.be/stops/505289"], ["https://data.delijn.be/stops/101533", "https://data.delijn.be/stops/109118"], ["https://data.delijn.be/stops/402101", "https://data.delijn.be/stops/402228"], ["https://data.delijn.be/stops/504891", "https://data.delijn.be/stops/504892"], ["https://data.delijn.be/stops/408068", "https://data.delijn.be/stops/408069"], ["https://data.delijn.be/stops/501389", "https://data.delijn.be/stops/501392"], ["https://data.delijn.be/stops/304966", "https://data.delijn.be/stops/304967"], ["https://data.delijn.be/stops/308744", "https://data.delijn.be/stops/308746"], ["https://data.delijn.be/stops/104081", "https://data.delijn.be/stops/104082"], ["https://data.delijn.be/stops/105783", "https://data.delijn.be/stops/105786"], ["https://data.delijn.be/stops/407920", "https://data.delijn.be/stops/305716"], ["https://data.delijn.be/stops/301249", "https://data.delijn.be/stops/307388"], ["https://data.delijn.be/stops/400257", "https://data.delijn.be/stops/404269"], ["https://data.delijn.be/stops/105120", "https://data.delijn.be/stops/105125"], ["https://data.delijn.be/stops/200682", "https://data.delijn.be/stops/208652"], ["https://data.delijn.be/stops/302044", "https://data.delijn.be/stops/302045"], ["https://data.delijn.be/stops/101404", "https://data.delijn.be/stops/106525"], ["https://data.delijn.be/stops/406407", "https://data.delijn.be/stops/410394"], ["https://data.delijn.be/stops/501477", "https://data.delijn.be/stops/506477"], ["https://data.delijn.be/stops/209600", "https://data.delijn.be/stops/307600"], ["https://data.delijn.be/stops/202347", "https://data.delijn.be/stops/203347"], ["https://data.delijn.be/stops/400142", "https://data.delijn.be/stops/403097"], ["https://data.delijn.be/stops/106129", "https://data.delijn.be/stops/106240"], ["https://data.delijn.be/stops/106225", "https://data.delijn.be/stops/106330"], ["https://data.delijn.be/stops/200021", "https://data.delijn.be/stops/200147"], ["https://data.delijn.be/stops/300500", "https://data.delijn.be/stops/300529"], ["https://data.delijn.be/stops/509105", "https://data.delijn.be/stops/509546"], ["https://data.delijn.be/stops/400050", "https://data.delijn.be/stops/400165"], ["https://data.delijn.be/stops/101146", "https://data.delijn.be/stops/106857"], ["https://data.delijn.be/stops/202725", "https://data.delijn.be/stops/203892"], ["https://data.delijn.be/stops/406470", "https://data.delijn.be/stops/406493"], ["https://data.delijn.be/stops/204547", "https://data.delijn.be/stops/205502"], ["https://data.delijn.be/stops/302198", "https://data.delijn.be/stops/308109"], ["https://data.delijn.be/stops/504031", "https://data.delijn.be/stops/504033"], ["https://data.delijn.be/stops/208054", "https://data.delijn.be/stops/208055"], ["https://data.delijn.be/stops/402450", "https://data.delijn.be/stops/402451"], ["https://data.delijn.be/stops/105426", "https://data.delijn.be/stops/105428"], ["https://data.delijn.be/stops/101384", "https://data.delijn.be/stops/101394"], ["https://data.delijn.be/stops/408814", "https://data.delijn.be/stops/408815"], ["https://data.delijn.be/stops/207710", "https://data.delijn.be/stops/207711"], ["https://data.delijn.be/stops/501069", "https://data.delijn.be/stops/501073"], ["https://data.delijn.be/stops/200349", "https://data.delijn.be/stops/201349"], ["https://data.delijn.be/stops/300487", "https://data.delijn.be/stops/307198"], ["https://data.delijn.be/stops/400788", "https://data.delijn.be/stops/409594"], ["https://data.delijn.be/stops/300150", "https://data.delijn.be/stops/306860"], ["https://data.delijn.be/stops/408620", "https://data.delijn.be/stops/408621"], ["https://data.delijn.be/stops/405792", "https://data.delijn.be/stops/405897"], ["https://data.delijn.be/stops/202593", "https://data.delijn.be/stops/203594"], ["https://data.delijn.be/stops/205422", "https://data.delijn.be/stops/205423"], ["https://data.delijn.be/stops/302541", "https://data.delijn.be/stops/307809"], ["https://data.delijn.be/stops/403210", "https://data.delijn.be/stops/403380"], ["https://data.delijn.be/stops/403087", "https://data.delijn.be/stops/403413"], ["https://data.delijn.be/stops/502812", "https://data.delijn.be/stops/508800"], ["https://data.delijn.be/stops/102136", "https://data.delijn.be/stops/103474"], ["https://data.delijn.be/stops/102161", "https://data.delijn.be/stops/107952"], ["https://data.delijn.be/stops/208705", "https://data.delijn.be/stops/208709"], ["https://data.delijn.be/stops/210659", "https://data.delijn.be/stops/211659"], ["https://data.delijn.be/stops/300724", "https://data.delijn.be/stops/306935"], ["https://data.delijn.be/stops/503722", "https://data.delijn.be/stops/509937"], ["https://data.delijn.be/stops/206741", "https://data.delijn.be/stops/207605"], ["https://data.delijn.be/stops/405834", "https://data.delijn.be/stops/405870"], ["https://data.delijn.be/stops/401040", "https://data.delijn.be/stops/401149"], ["https://data.delijn.be/stops/508593", "https://data.delijn.be/stops/508594"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/405455"], ["https://data.delijn.be/stops/405759", "https://data.delijn.be/stops/303334"], ["https://data.delijn.be/stops/109204", "https://data.delijn.be/stops/109205"], ["https://data.delijn.be/stops/302735", "https://data.delijn.be/stops/302738"], ["https://data.delijn.be/stops/305046", "https://data.delijn.be/stops/305085"], ["https://data.delijn.be/stops/503961", "https://data.delijn.be/stops/504343"], ["https://data.delijn.be/stops/108790", "https://data.delijn.be/stops/109758"], ["https://data.delijn.be/stops/208566", "https://data.delijn.be/stops/209547"], ["https://data.delijn.be/stops/406608", "https://data.delijn.be/stops/406609"], ["https://data.delijn.be/stops/206206", "https://data.delijn.be/stops/206608"], ["https://data.delijn.be/stops/501664", "https://data.delijn.be/stops/506665"], ["https://data.delijn.be/stops/307632", "https://data.delijn.be/stops/307906"], ["https://data.delijn.be/stops/302176", "https://data.delijn.be/stops/308105"], ["https://data.delijn.be/stops/408890", "https://data.delijn.be/stops/408906"], ["https://data.delijn.be/stops/206588", "https://data.delijn.be/stops/206839"], ["https://data.delijn.be/stops/203671", "https://data.delijn.be/stops/203727"], ["https://data.delijn.be/stops/402863", "https://data.delijn.be/stops/404098"], ["https://data.delijn.be/stops/302369", "https://data.delijn.be/stops/307521"], ["https://data.delijn.be/stops/208528", "https://data.delijn.be/stops/219016"], ["https://data.delijn.be/stops/301221", "https://data.delijn.be/stops/301223"], ["https://data.delijn.be/stops/406602", "https://data.delijn.be/stops/406603"], ["https://data.delijn.be/stops/204142", "https://data.delijn.be/stops/207898"], ["https://data.delijn.be/stops/406601", "https://data.delijn.be/stops/406621"], ["https://data.delijn.be/stops/302429", "https://data.delijn.be/stops/307002"], ["https://data.delijn.be/stops/300486", "https://data.delijn.be/stops/300498"], ["https://data.delijn.be/stops/502249", "https://data.delijn.be/stops/502255"], ["https://data.delijn.be/stops/301455", "https://data.delijn.be/stops/301458"], ["https://data.delijn.be/stops/406157", "https://data.delijn.be/stops/406254"], ["https://data.delijn.be/stops/102381", "https://data.delijn.be/stops/105612"], ["https://data.delijn.be/stops/304388", "https://data.delijn.be/stops/306869"], ["https://data.delijn.be/stops/301267", "https://data.delijn.be/stops/305043"], ["https://data.delijn.be/stops/300453", "https://data.delijn.be/stops/308297"], ["https://data.delijn.be/stops/404130", "https://data.delijn.be/stops/404188"], ["https://data.delijn.be/stops/201639", "https://data.delijn.be/stops/201949"], ["https://data.delijn.be/stops/106109", "https://data.delijn.be/stops/106176"], ["https://data.delijn.be/stops/103045", "https://data.delijn.be/stops/104256"], ["https://data.delijn.be/stops/107236", "https://data.delijn.be/stops/107885"], ["https://data.delijn.be/stops/206004", "https://data.delijn.be/stops/206522"], ["https://data.delijn.be/stops/409194", "https://data.delijn.be/stops/409203"], ["https://data.delijn.be/stops/206541", "https://data.delijn.be/stops/207570"], ["https://data.delijn.be/stops/505813", "https://data.delijn.be/stops/509011"], ["https://data.delijn.be/stops/209080", "https://data.delijn.be/stops/216006"], ["https://data.delijn.be/stops/405472", "https://data.delijn.be/stops/405485"], ["https://data.delijn.be/stops/207415", "https://data.delijn.be/stops/217016"], ["https://data.delijn.be/stops/101607", "https://data.delijn.be/stops/105762"], ["https://data.delijn.be/stops/200682", "https://data.delijn.be/stops/200683"], ["https://data.delijn.be/stops/403809", "https://data.delijn.be/stops/408597"], ["https://data.delijn.be/stops/301343", "https://data.delijn.be/stops/304666"], ["https://data.delijn.be/stops/103615", "https://data.delijn.be/stops/108305"], ["https://data.delijn.be/stops/304758", "https://data.delijn.be/stops/304762"], ["https://data.delijn.be/stops/201584", "https://data.delijn.be/stops/201591"], ["https://data.delijn.be/stops/501672", "https://data.delijn.be/stops/506456"], ["https://data.delijn.be/stops/204652", "https://data.delijn.be/stops/205261"], ["https://data.delijn.be/stops/509754", "https://data.delijn.be/stops/509755"], ["https://data.delijn.be/stops/401960", "https://data.delijn.be/stops/407042"], ["https://data.delijn.be/stops/408559", "https://data.delijn.be/stops/408563"], ["https://data.delijn.be/stops/204097", "https://data.delijn.be/stops/215017"], ["https://data.delijn.be/stops/504535", "https://data.delijn.be/stops/508718"], ["https://data.delijn.be/stops/302358", "https://data.delijn.be/stops/302359"], ["https://data.delijn.be/stops/304655", "https://data.delijn.be/stops/306170"], ["https://data.delijn.be/stops/403341", "https://data.delijn.be/stops/403521"], ["https://data.delijn.be/stops/106296", "https://data.delijn.be/stops/109436"], ["https://data.delijn.be/stops/503900", "https://data.delijn.be/stops/508901"], ["https://data.delijn.be/stops/209609", "https://data.delijn.be/stops/307605"], ["https://data.delijn.be/stops/402316", "https://data.delijn.be/stops/402367"], ["https://data.delijn.be/stops/202344", "https://data.delijn.be/stops/209744"], ["https://data.delijn.be/stops/503449", "https://data.delijn.be/stops/503644"], ["https://data.delijn.be/stops/408976", "https://data.delijn.be/stops/408979"], ["https://data.delijn.be/stops/207248", "https://data.delijn.be/stops/216019"], ["https://data.delijn.be/stops/304337", "https://data.delijn.be/stops/304706"], ["https://data.delijn.be/stops/106646", "https://data.delijn.be/stops/106647"], ["https://data.delijn.be/stops/201934", "https://data.delijn.be/stops/201937"], ["https://data.delijn.be/stops/308509", "https://data.delijn.be/stops/308510"], ["https://data.delijn.be/stops/203506", "https://data.delijn.be/stops/203507"], ["https://data.delijn.be/stops/104379", "https://data.delijn.be/stops/104381"], ["https://data.delijn.be/stops/203902", "https://data.delijn.be/stops/210092"], ["https://data.delijn.be/stops/508075", "https://data.delijn.be/stops/508869"], ["https://data.delijn.be/stops/504218", "https://data.delijn.be/stops/509066"], ["https://data.delijn.be/stops/508317", "https://data.delijn.be/stops/508654"], ["https://data.delijn.be/stops/101978", "https://data.delijn.be/stops/108284"], ["https://data.delijn.be/stops/503661", "https://data.delijn.be/stops/505131"], ["https://data.delijn.be/stops/407931", "https://data.delijn.be/stops/410344"], ["https://data.delijn.be/stops/101191", "https://data.delijn.be/stops/101656"], ["https://data.delijn.be/stops/509004", "https://data.delijn.be/stops/509737"], ["https://data.delijn.be/stops/405025", "https://data.delijn.be/stops/405607"], ["https://data.delijn.be/stops/406282", "https://data.delijn.be/stops/406285"], ["https://data.delijn.be/stops/504511", "https://data.delijn.be/stops/509509"], ["https://data.delijn.be/stops/211013", "https://data.delijn.be/stops/502277"], ["https://data.delijn.be/stops/401820", "https://data.delijn.be/stops/406202"], ["https://data.delijn.be/stops/406262", "https://data.delijn.be/stops/408482"], ["https://data.delijn.be/stops/202462", "https://data.delijn.be/stops/202465"], ["https://data.delijn.be/stops/103467", "https://data.delijn.be/stops/106323"], ["https://data.delijn.be/stops/304637", "https://data.delijn.be/stops/304652"], ["https://data.delijn.be/stops/208629", "https://data.delijn.be/stops/209058"], ["https://data.delijn.be/stops/504296", "https://data.delijn.be/stops/504307"], ["https://data.delijn.be/stops/507470", "https://data.delijn.be/stops/507691"], ["https://data.delijn.be/stops/509420", "https://data.delijn.be/stops/509421"], ["https://data.delijn.be/stops/402984", "https://data.delijn.be/stops/405592"], ["https://data.delijn.be/stops/205654", "https://data.delijn.be/stops/205668"], ["https://data.delijn.be/stops/400802", "https://data.delijn.be/stops/404331"], ["https://data.delijn.be/stops/208110", "https://data.delijn.be/stops/208387"], ["https://data.delijn.be/stops/502195", "https://data.delijn.be/stops/507939"], ["https://data.delijn.be/stops/301545", "https://data.delijn.be/stops/305142"], ["https://data.delijn.be/stops/206189", "https://data.delijn.be/stops/206367"], ["https://data.delijn.be/stops/302960", "https://data.delijn.be/stops/302981"], ["https://data.delijn.be/stops/407943", "https://data.delijn.be/stops/408064"], ["https://data.delijn.be/stops/103896", "https://data.delijn.be/stops/103900"], ["https://data.delijn.be/stops/407247", "https://data.delijn.be/stops/407456"], ["https://data.delijn.be/stops/403210", "https://data.delijn.be/stops/403219"], ["https://data.delijn.be/stops/302722", "https://data.delijn.be/stops/308598"], ["https://data.delijn.be/stops/208804", "https://data.delijn.be/stops/208954"], ["https://data.delijn.be/stops/208645", "https://data.delijn.be/stops/209645"], ["https://data.delijn.be/stops/107316", "https://data.delijn.be/stops/107319"], ["https://data.delijn.be/stops/202940", "https://data.delijn.be/stops/203941"], ["https://data.delijn.be/stops/505977", "https://data.delijn.be/stops/509392"], ["https://data.delijn.be/stops/209009", "https://data.delijn.be/stops/209010"], ["https://data.delijn.be/stops/207490", "https://data.delijn.be/stops/207491"], ["https://data.delijn.be/stops/108385", "https://data.delijn.be/stops/108386"], ["https://data.delijn.be/stops/305057", "https://data.delijn.be/stops/305180"], ["https://data.delijn.be/stops/403602", "https://data.delijn.be/stops/403642"], ["https://data.delijn.be/stops/502946", "https://data.delijn.be/stops/508588"], ["https://data.delijn.be/stops/407672", "https://data.delijn.be/stops/409803"], ["https://data.delijn.be/stops/101409", "https://data.delijn.be/stops/101435"], ["https://data.delijn.be/stops/202105", "https://data.delijn.be/stops/203105"], ["https://data.delijn.be/stops/202868", "https://data.delijn.be/stops/203868"], ["https://data.delijn.be/stops/109298", "https://data.delijn.be/stops/109299"], ["https://data.delijn.be/stops/403484", "https://data.delijn.be/stops/403588"], ["https://data.delijn.be/stops/301608", "https://data.delijn.be/stops/301610"], ["https://data.delijn.be/stops/304401", "https://data.delijn.be/stops/304405"], ["https://data.delijn.be/stops/209217", "https://data.delijn.be/stops/209238"], ["https://data.delijn.be/stops/208465", "https://data.delijn.be/stops/209685"], ["https://data.delijn.be/stops/202591", "https://data.delijn.be/stops/203591"], ["https://data.delijn.be/stops/303699", "https://data.delijn.be/stops/303761"], ["https://data.delijn.be/stops/504318", "https://data.delijn.be/stops/504322"], ["https://data.delijn.be/stops/408238", "https://data.delijn.be/stops/408241"], ["https://data.delijn.be/stops/202008", "https://data.delijn.be/stops/203008"], ["https://data.delijn.be/stops/505147", "https://data.delijn.be/stops/505762"], ["https://data.delijn.be/stops/204670", "https://data.delijn.be/stops/205670"], ["https://data.delijn.be/stops/402685", "https://data.delijn.be/stops/402731"], ["https://data.delijn.be/stops/401553", "https://data.delijn.be/stops/403882"], ["https://data.delijn.be/stops/108617", "https://data.delijn.be/stops/301916"], ["https://data.delijn.be/stops/300745", "https://data.delijn.be/stops/300746"], ["https://data.delijn.be/stops/200744", "https://data.delijn.be/stops/201745"], ["https://data.delijn.be/stops/204035", "https://data.delijn.be/stops/205035"], ["https://data.delijn.be/stops/204231", "https://data.delijn.be/stops/205250"], ["https://data.delijn.be/stops/404715", "https://data.delijn.be/stops/404721"], ["https://data.delijn.be/stops/404686", "https://data.delijn.be/stops/404687"], ["https://data.delijn.be/stops/202741", "https://data.delijn.be/stops/202873"], ["https://data.delijn.be/stops/507709", "https://data.delijn.be/stops/509936"], ["https://data.delijn.be/stops/201836", "https://data.delijn.be/stops/203319"], ["https://data.delijn.be/stops/304259", "https://data.delijn.be/stops/304260"], ["https://data.delijn.be/stops/200678", "https://data.delijn.be/stops/201667"], ["https://data.delijn.be/stops/206519", "https://data.delijn.be/stops/207524"], ["https://data.delijn.be/stops/101377", "https://data.delijn.be/stops/101399"], ["https://data.delijn.be/stops/405002", "https://data.delijn.be/stops/405068"], ["https://data.delijn.be/stops/301654", "https://data.delijn.be/stops/304499"], ["https://data.delijn.be/stops/301630", "https://data.delijn.be/stops/301631"], ["https://data.delijn.be/stops/107714", "https://data.delijn.be/stops/107715"], ["https://data.delijn.be/stops/106594", "https://data.delijn.be/stops/107387"], ["https://data.delijn.be/stops/302149", "https://data.delijn.be/stops/303813"], ["https://data.delijn.be/stops/107639", "https://data.delijn.be/stops/108083"], ["https://data.delijn.be/stops/403684", "https://data.delijn.be/stops/403687"], ["https://data.delijn.be/stops/409645", "https://data.delijn.be/stops/410165"], ["https://data.delijn.be/stops/403759", "https://data.delijn.be/stops/403763"], ["https://data.delijn.be/stops/500937", "https://data.delijn.be/stops/505406"], ["https://data.delijn.be/stops/405514", "https://data.delijn.be/stops/407786"], ["https://data.delijn.be/stops/106948", "https://data.delijn.be/stops/108712"], ["https://data.delijn.be/stops/107786", "https://data.delijn.be/stops/107788"], ["https://data.delijn.be/stops/500116", "https://data.delijn.be/stops/500118"], ["https://data.delijn.be/stops/302739", "https://data.delijn.be/stops/302740"], ["https://data.delijn.be/stops/304284", "https://data.delijn.be/stops/306138"], ["https://data.delijn.be/stops/206686", "https://data.delijn.be/stops/207207"], ["https://data.delijn.be/stops/204392", "https://data.delijn.be/stops/205392"], ["https://data.delijn.be/stops/206272", "https://data.delijn.be/stops/207272"], ["https://data.delijn.be/stops/405261", "https://data.delijn.be/stops/405270"], ["https://data.delijn.be/stops/202429", "https://data.delijn.be/stops/202715"], ["https://data.delijn.be/stops/501246", "https://data.delijn.be/stops/506767"], ["https://data.delijn.be/stops/304391", "https://data.delijn.be/stops/307416"], ["https://data.delijn.be/stops/305771", "https://data.delijn.be/stops/305787"], ["https://data.delijn.be/stops/501396", "https://data.delijn.be/stops/501397"], ["https://data.delijn.be/stops/106006", "https://data.delijn.be/stops/106008"], ["https://data.delijn.be/stops/303815", "https://data.delijn.be/stops/303817"], ["https://data.delijn.be/stops/303009", "https://data.delijn.be/stops/306100"], ["https://data.delijn.be/stops/502796", "https://data.delijn.be/stops/504863"], ["https://data.delijn.be/stops/206501", "https://data.delijn.be/stops/207673"], ["https://data.delijn.be/stops/403917", "https://data.delijn.be/stops/410256"], ["https://data.delijn.be/stops/300085", "https://data.delijn.be/stops/300137"], ["https://data.delijn.be/stops/206531", "https://data.delijn.be/stops/207531"], ["https://data.delijn.be/stops/503144", "https://data.delijn.be/stops/508143"], ["https://data.delijn.be/stops/105299", "https://data.delijn.be/stops/105353"], ["https://data.delijn.be/stops/208436", "https://data.delijn.be/stops/208437"], ["https://data.delijn.be/stops/507050", "https://data.delijn.be/stops/507750"], ["https://data.delijn.be/stops/101699", "https://data.delijn.be/stops/103246"], ["https://data.delijn.be/stops/501480", "https://data.delijn.be/stops/506480"], ["https://data.delijn.be/stops/401496", "https://data.delijn.be/stops/401497"], ["https://data.delijn.be/stops/400178", "https://data.delijn.be/stops/400366"], ["https://data.delijn.be/stops/109913", "https://data.delijn.be/stops/109914"], ["https://data.delijn.be/stops/504470", "https://data.delijn.be/stops/509031"], ["https://data.delijn.be/stops/305295", "https://data.delijn.be/stops/305890"], ["https://data.delijn.be/stops/304456", "https://data.delijn.be/stops/304461"], ["https://data.delijn.be/stops/208227", "https://data.delijn.be/stops/209233"], ["https://data.delijn.be/stops/402366", "https://data.delijn.be/stops/402446"], ["https://data.delijn.be/stops/409364", "https://data.delijn.be/stops/409367"], ["https://data.delijn.be/stops/307967", "https://data.delijn.be/stops/307970"], ["https://data.delijn.be/stops/405474", "https://data.delijn.be/stops/407567"], ["https://data.delijn.be/stops/206244", "https://data.delijn.be/stops/207244"], ["https://data.delijn.be/stops/505146", "https://data.delijn.be/stops/507917"], ["https://data.delijn.be/stops/500925", "https://data.delijn.be/stops/508341"], ["https://data.delijn.be/stops/104739", "https://data.delijn.be/stops/104756"], ["https://data.delijn.be/stops/300572", "https://data.delijn.be/stops/300590"], ["https://data.delijn.be/stops/303879", "https://data.delijn.be/stops/303880"], ["https://data.delijn.be/stops/503272", "https://data.delijn.be/stops/503275"], ["https://data.delijn.be/stops/202110", "https://data.delijn.be/stops/202639"], ["https://data.delijn.be/stops/304139", "https://data.delijn.be/stops/307762"], ["https://data.delijn.be/stops/401905", "https://data.delijn.be/stops/410157"], ["https://data.delijn.be/stops/219080", "https://data.delijn.be/stops/303282"], ["https://data.delijn.be/stops/508977", "https://data.delijn.be/stops/508978"], ["https://data.delijn.be/stops/301838", "https://data.delijn.be/stops/302487"], ["https://data.delijn.be/stops/503042", "https://data.delijn.be/stops/504206"], ["https://data.delijn.be/stops/404405", "https://data.delijn.be/stops/404412"], ["https://data.delijn.be/stops/300564", "https://data.delijn.be/stops/308896"], ["https://data.delijn.be/stops/407766", "https://data.delijn.be/stops/409624"], ["https://data.delijn.be/stops/302006", "https://data.delijn.be/stops/303185"], ["https://data.delijn.be/stops/107320", "https://data.delijn.be/stops/109055"], ["https://data.delijn.be/stops/503491", "https://data.delijn.be/stops/508483"], ["https://data.delijn.be/stops/405754", "https://data.delijn.be/stops/409259"], ["https://data.delijn.be/stops/403466", "https://data.delijn.be/stops/403467"], ["https://data.delijn.be/stops/509812", "https://data.delijn.be/stops/509813"], ["https://data.delijn.be/stops/505518", "https://data.delijn.be/stops/505523"], ["https://data.delijn.be/stops/302549", "https://data.delijn.be/stops/302551"], ["https://data.delijn.be/stops/103306", "https://data.delijn.be/stops/105730"], ["https://data.delijn.be/stops/204765", "https://data.delijn.be/stops/205373"], ["https://data.delijn.be/stops/301909", "https://data.delijn.be/stops/306258"], ["https://data.delijn.be/stops/300701", "https://data.delijn.be/stops/306943"], ["https://data.delijn.be/stops/501076", "https://data.delijn.be/stops/506513"], ["https://data.delijn.be/stops/206410", "https://data.delijn.be/stops/306973"], ["https://data.delijn.be/stops/401538", "https://data.delijn.be/stops/401539"], ["https://data.delijn.be/stops/301537", "https://data.delijn.be/stops/301538"], ["https://data.delijn.be/stops/503893", "https://data.delijn.be/stops/508893"], ["https://data.delijn.be/stops/502207", "https://data.delijn.be/stops/502216"], ["https://data.delijn.be/stops/205086", "https://data.delijn.be/stops/205798"], ["https://data.delijn.be/stops/202273", "https://data.delijn.be/stops/203273"], ["https://data.delijn.be/stops/102186", "https://data.delijn.be/stops/104262"], ["https://data.delijn.be/stops/106066", "https://data.delijn.be/stops/109876"], ["https://data.delijn.be/stops/300474", "https://data.delijn.be/stops/301560"], ["https://data.delijn.be/stops/405812", "https://data.delijn.be/stops/406880"], ["https://data.delijn.be/stops/502934", "https://data.delijn.be/stops/507914"], ["https://data.delijn.be/stops/406370", "https://data.delijn.be/stops/406374"], ["https://data.delijn.be/stops/102035", "https://data.delijn.be/stops/103764"], ["https://data.delijn.be/stops/400132", "https://data.delijn.be/stops/400133"], ["https://data.delijn.be/stops/407953", "https://data.delijn.be/stops/408126"], ["https://data.delijn.be/stops/302381", "https://data.delijn.be/stops/304062"], ["https://data.delijn.be/stops/503097", "https://data.delijn.be/stops/505382"], ["https://data.delijn.be/stops/405760", "https://data.delijn.be/stops/301103"], ["https://data.delijn.be/stops/206950", "https://data.delijn.be/stops/207934"], ["https://data.delijn.be/stops/503110", "https://data.delijn.be/stops/505083"], ["https://data.delijn.be/stops/205118", "https://data.delijn.be/stops/205464"], ["https://data.delijn.be/stops/503200", "https://data.delijn.be/stops/503970"], ["https://data.delijn.be/stops/304044", "https://data.delijn.be/stops/304690"], ["https://data.delijn.be/stops/202876", "https://data.delijn.be/stops/202877"], ["https://data.delijn.be/stops/207773", "https://data.delijn.be/stops/208189"], ["https://data.delijn.be/stops/502529", "https://data.delijn.be/stops/507529"], ["https://data.delijn.be/stops/401296", "https://data.delijn.be/stops/401326"], ["https://data.delijn.be/stops/102345", "https://data.delijn.be/stops/104250"], ["https://data.delijn.be/stops/407750", "https://data.delijn.be/stops/407754"], ["https://data.delijn.be/stops/200927", "https://data.delijn.be/stops/202230"], ["https://data.delijn.be/stops/408173", "https://data.delijn.be/stops/408174"], ["https://data.delijn.be/stops/407600", "https://data.delijn.be/stops/407699"], ["https://data.delijn.be/stops/307379", "https://data.delijn.be/stops/307451"], ["https://data.delijn.be/stops/204109", "https://data.delijn.be/stops/205115"], ["https://data.delijn.be/stops/109059", "https://data.delijn.be/stops/109061"], ["https://data.delijn.be/stops/303064", "https://data.delijn.be/stops/304465"], ["https://data.delijn.be/stops/108483", "https://data.delijn.be/stops/306596"], ["https://data.delijn.be/stops/206461", "https://data.delijn.be/stops/207462"], ["https://data.delijn.be/stops/106263", "https://data.delijn.be/stops/106340"], ["https://data.delijn.be/stops/106612", "https://data.delijn.be/stops/106613"], ["https://data.delijn.be/stops/201126", "https://data.delijn.be/stops/201298"], ["https://data.delijn.be/stops/207420", "https://data.delijn.be/stops/216012"], ["https://data.delijn.be/stops/403156", "https://data.delijn.be/stops/407583"], ["https://data.delijn.be/stops/103272", "https://data.delijn.be/stops/107689"], ["https://data.delijn.be/stops/407650", "https://data.delijn.be/stops/410211"], ["https://data.delijn.be/stops/401554", "https://data.delijn.be/stops/401558"], ["https://data.delijn.be/stops/503320", "https://data.delijn.be/stops/508315"], ["https://data.delijn.be/stops/406262", "https://data.delijn.be/stops/407123"], ["https://data.delijn.be/stops/201333", "https://data.delijn.be/stops/201339"], ["https://data.delijn.be/stops/307578", "https://data.delijn.be/stops/307677"], ["https://data.delijn.be/stops/105304", "https://data.delijn.be/stops/105364"], ["https://data.delijn.be/stops/304236", "https://data.delijn.be/stops/304486"], ["https://data.delijn.be/stops/305778", "https://data.delijn.be/stops/305780"], ["https://data.delijn.be/stops/101203", "https://data.delijn.be/stops/204661"], ["https://data.delijn.be/stops/503093", "https://data.delijn.be/stops/505379"], ["https://data.delijn.be/stops/400896", "https://data.delijn.be/stops/400898"], ["https://data.delijn.be/stops/108068", "https://data.delijn.be/stops/108136"], ["https://data.delijn.be/stops/302251", "https://data.delijn.be/stops/306378"], ["https://data.delijn.be/stops/201726", "https://data.delijn.be/stops/202979"], ["https://data.delijn.be/stops/103081", "https://data.delijn.be/stops/104673"], ["https://data.delijn.be/stops/407861", "https://data.delijn.be/stops/305682"], ["https://data.delijn.be/stops/107395", "https://data.delijn.be/stops/108575"], ["https://data.delijn.be/stops/407719", "https://data.delijn.be/stops/409520"], ["https://data.delijn.be/stops/203877", "https://data.delijn.be/stops/209534"], ["https://data.delijn.be/stops/407176", "https://data.delijn.be/stops/410094"], ["https://data.delijn.be/stops/102514", "https://data.delijn.be/stops/406479"], ["https://data.delijn.be/stops/501593", "https://data.delijn.be/stops/505403"], ["https://data.delijn.be/stops/202784", "https://data.delijn.be/stops/211103"], ["https://data.delijn.be/stops/502402", "https://data.delijn.be/stops/507402"], ["https://data.delijn.be/stops/502418", "https://data.delijn.be/stops/502645"], ["https://data.delijn.be/stops/210021", "https://data.delijn.be/stops/211020"], ["https://data.delijn.be/stops/304411", "https://data.delijn.be/stops/307360"], ["https://data.delijn.be/stops/103134", "https://data.delijn.be/stops/107106"], ["https://data.delijn.be/stops/206449", "https://data.delijn.be/stops/207059"], ["https://data.delijn.be/stops/102909", "https://data.delijn.be/stops/102915"], ["https://data.delijn.be/stops/201547", "https://data.delijn.be/stops/211132"], ["https://data.delijn.be/stops/406172", "https://data.delijn.be/stops/406436"], ["https://data.delijn.be/stops/208646", "https://data.delijn.be/stops/209646"], ["https://data.delijn.be/stops/405866", "https://data.delijn.be/stops/405867"], ["https://data.delijn.be/stops/101419", "https://data.delijn.be/stops/106957"], ["https://data.delijn.be/stops/106437", "https://data.delijn.be/stops/106507"], ["https://data.delijn.be/stops/207287", "https://data.delijn.be/stops/207811"], ["https://data.delijn.be/stops/408977", "https://data.delijn.be/stops/408979"], ["https://data.delijn.be/stops/203313", "https://data.delijn.be/stops/203314"], ["https://data.delijn.be/stops/105787", "https://data.delijn.be/stops/105936"], ["https://data.delijn.be/stops/301489", "https://data.delijn.be/stops/302623"], ["https://data.delijn.be/stops/104586", "https://data.delijn.be/stops/104587"], ["https://data.delijn.be/stops/400004", "https://data.delijn.be/stops/400431"], ["https://data.delijn.be/stops/200037", "https://data.delijn.be/stops/201037"], ["https://data.delijn.be/stops/503099", "https://data.delijn.be/stops/505253"], ["https://data.delijn.be/stops/300773", "https://data.delijn.be/stops/301958"], ["https://data.delijn.be/stops/202735", "https://data.delijn.be/stops/202849"], ["https://data.delijn.be/stops/405799", "https://data.delijn.be/stops/405855"], ["https://data.delijn.be/stops/503142", "https://data.delijn.be/stops/503988"], ["https://data.delijn.be/stops/102131", "https://data.delijn.be/stops/106068"], ["https://data.delijn.be/stops/402263", "https://data.delijn.be/stops/402472"], ["https://data.delijn.be/stops/307132", "https://data.delijn.be/stops/308447"], ["https://data.delijn.be/stops/300645", "https://data.delijn.be/stops/300663"], ["https://data.delijn.be/stops/301616", "https://data.delijn.be/stops/301670"], ["https://data.delijn.be/stops/407826", "https://data.delijn.be/stops/408014"], ["https://data.delijn.be/stops/304120", "https://data.delijn.be/stops/307677"], ["https://data.delijn.be/stops/101922", "https://data.delijn.be/stops/106039"], ["https://data.delijn.be/stops/503363", "https://data.delijn.be/stops/503373"], ["https://data.delijn.be/stops/206756", "https://data.delijn.be/stops/206849"], ["https://data.delijn.be/stops/401440", "https://data.delijn.be/stops/408358"], ["https://data.delijn.be/stops/302413", "https://data.delijn.be/stops/302437"], ["https://data.delijn.be/stops/204505", "https://data.delijn.be/stops/205821"], ["https://data.delijn.be/stops/204734", "https://data.delijn.be/stops/205734"], ["https://data.delijn.be/stops/202274", "https://data.delijn.be/stops/203274"], ["https://data.delijn.be/stops/303806", "https://data.delijn.be/stops/303807"], ["https://data.delijn.be/stops/403332", "https://data.delijn.be/stops/403341"], ["https://data.delijn.be/stops/206902", "https://data.delijn.be/stops/216002"], ["https://data.delijn.be/stops/303068", "https://data.delijn.be/stops/303157"], ["https://data.delijn.be/stops/300561", "https://data.delijn.be/stops/300562"], ["https://data.delijn.be/stops/305540", "https://data.delijn.be/stops/308685"], ["https://data.delijn.be/stops/207097", "https://data.delijn.be/stops/207931"], ["https://data.delijn.be/stops/503323", "https://data.delijn.be/stops/508323"], ["https://data.delijn.be/stops/508784", "https://data.delijn.be/stops/508785"], ["https://data.delijn.be/stops/201725", "https://data.delijn.be/stops/203377"], ["https://data.delijn.be/stops/308181", "https://data.delijn.be/stops/308182"], ["https://data.delijn.be/stops/407370", "https://data.delijn.be/stops/407376"], ["https://data.delijn.be/stops/504091", "https://data.delijn.be/stops/504838"], ["https://data.delijn.be/stops/207703", "https://data.delijn.be/stops/207739"], ["https://data.delijn.be/stops/402021", "https://data.delijn.be/stops/410059"], ["https://data.delijn.be/stops/403123", "https://data.delijn.be/stops/403357"], ["https://data.delijn.be/stops/405823", "https://data.delijn.be/stops/405841"], ["https://data.delijn.be/stops/404317", "https://data.delijn.be/stops/409690"], ["https://data.delijn.be/stops/206048", "https://data.delijn.be/stops/207046"], ["https://data.delijn.be/stops/109455", "https://data.delijn.be/stops/109458"], ["https://data.delijn.be/stops/101781", "https://data.delijn.be/stops/103756"], ["https://data.delijn.be/stops/303370", "https://data.delijn.be/stops/303385"], ["https://data.delijn.be/stops/304934", "https://data.delijn.be/stops/304944"], ["https://data.delijn.be/stops/300829", "https://data.delijn.be/stops/300874"], ["https://data.delijn.be/stops/208621", "https://data.delijn.be/stops/218012"], ["https://data.delijn.be/stops/502440", "https://data.delijn.be/stops/507422"], ["https://data.delijn.be/stops/502802", "https://data.delijn.be/stops/507540"], ["https://data.delijn.be/stops/204066", "https://data.delijn.be/stops/204228"], ["https://data.delijn.be/stops/503225", "https://data.delijn.be/stops/503226"], ["https://data.delijn.be/stops/206092", "https://data.delijn.be/stops/206093"], ["https://data.delijn.be/stops/201925", "https://data.delijn.be/stops/205979"], ["https://data.delijn.be/stops/204599", "https://data.delijn.be/stops/205095"], ["https://data.delijn.be/stops/103870", "https://data.delijn.be/stops/105525"], ["https://data.delijn.be/stops/200492", "https://data.delijn.be/stops/201490"], ["https://data.delijn.be/stops/202203", "https://data.delijn.be/stops/202204"], ["https://data.delijn.be/stops/507356", "https://data.delijn.be/stops/507362"], ["https://data.delijn.be/stops/203661", "https://data.delijn.be/stops/203662"], ["https://data.delijn.be/stops/401072", "https://data.delijn.be/stops/410024"], ["https://data.delijn.be/stops/201825", "https://data.delijn.be/stops/203310"], ["https://data.delijn.be/stops/105865", "https://data.delijn.be/stops/105871"], ["https://data.delijn.be/stops/304469", "https://data.delijn.be/stops/304555"], ["https://data.delijn.be/stops/503598", "https://data.delijn.be/stops/508594"], ["https://data.delijn.be/stops/405868", "https://data.delijn.be/stops/407258"], ["https://data.delijn.be/stops/300107", "https://data.delijn.be/stops/306866"], ["https://data.delijn.be/stops/307404", "https://data.delijn.be/stops/307406"], ["https://data.delijn.be/stops/107931", "https://data.delijn.be/stops/308811"], ["https://data.delijn.be/stops/209314", "https://data.delijn.be/stops/219009"], ["https://data.delijn.be/stops/108871", "https://data.delijn.be/stops/108873"], ["https://data.delijn.be/stops/102582", "https://data.delijn.be/stops/105620"], ["https://data.delijn.be/stops/103058", "https://data.delijn.be/stops/106612"], ["https://data.delijn.be/stops/404903", "https://data.delijn.be/stops/404985"], ["https://data.delijn.be/stops/300209", "https://data.delijn.be/stops/300210"], ["https://data.delijn.be/stops/307148", "https://data.delijn.be/stops/307153"], ["https://data.delijn.be/stops/504760", "https://data.delijn.be/stops/504761"], ["https://data.delijn.be/stops/105671", "https://data.delijn.be/stops/105710"], ["https://data.delijn.be/stops/407752", "https://data.delijn.be/stops/409795"], ["https://data.delijn.be/stops/203989", "https://data.delijn.be/stops/203990"], ["https://data.delijn.be/stops/101929", "https://data.delijn.be/stops/104048"], ["https://data.delijn.be/stops/408722", "https://data.delijn.be/stops/408723"], ["https://data.delijn.be/stops/400229", "https://data.delijn.be/stops/400240"], ["https://data.delijn.be/stops/502273", "https://data.delijn.be/stops/502389"], ["https://data.delijn.be/stops/106611", "https://data.delijn.be/stops/106612"], ["https://data.delijn.be/stops/405986", "https://data.delijn.be/stops/406030"], ["https://data.delijn.be/stops/206143", "https://data.delijn.be/stops/207019"], ["https://data.delijn.be/stops/400315", "https://data.delijn.be/stops/402765"], ["https://data.delijn.be/stops/301298", "https://data.delijn.be/stops/308675"], ["https://data.delijn.be/stops/504243", "https://data.delijn.be/stops/504246"], ["https://data.delijn.be/stops/107018", "https://data.delijn.be/stops/107067"], ["https://data.delijn.be/stops/108939", "https://data.delijn.be/stops/108943"], ["https://data.delijn.be/stops/208344", "https://data.delijn.be/stops/208786"], ["https://data.delijn.be/stops/208612", "https://data.delijn.be/stops/209557"], ["https://data.delijn.be/stops/409104", "https://data.delijn.be/stops/409106"], ["https://data.delijn.be/stops/106504", "https://data.delijn.be/stops/106506"], ["https://data.delijn.be/stops/102375", "https://data.delijn.be/stops/104626"], ["https://data.delijn.be/stops/303252", "https://data.delijn.be/stops/303266"], ["https://data.delijn.be/stops/401924", "https://data.delijn.be/stops/405840"], ["https://data.delijn.be/stops/500020", "https://data.delijn.be/stops/502114"], ["https://data.delijn.be/stops/502134", "https://data.delijn.be/stops/507242"], ["https://data.delijn.be/stops/404665", "https://data.delijn.be/stops/404681"], ["https://data.delijn.be/stops/501453", "https://data.delijn.be/stops/506452"], ["https://data.delijn.be/stops/302862", "https://data.delijn.be/stops/308718"], ["https://data.delijn.be/stops/207642", "https://data.delijn.be/stops/209688"], ["https://data.delijn.be/stops/206930", "https://data.delijn.be/stops/207591"], ["https://data.delijn.be/stops/301516", "https://data.delijn.be/stops/301527"], ["https://data.delijn.be/stops/406466", "https://data.delijn.be/stops/406492"], ["https://data.delijn.be/stops/303254", "https://data.delijn.be/stops/303345"], ["https://data.delijn.be/stops/401572", "https://data.delijn.be/stops/402483"], ["https://data.delijn.be/stops/305648", "https://data.delijn.be/stops/305654"], ["https://data.delijn.be/stops/503291", "https://data.delijn.be/stops/508291"], ["https://data.delijn.be/stops/203996", "https://data.delijn.be/stops/206779"], ["https://data.delijn.be/stops/206711", "https://data.delijn.be/stops/206740"], ["https://data.delijn.be/stops/505567", "https://data.delijn.be/stops/505660"], ["https://data.delijn.be/stops/103045", "https://data.delijn.be/stops/105525"], ["https://data.delijn.be/stops/501529", "https://data.delijn.be/stops/509896"], ["https://data.delijn.be/stops/206643", "https://data.delijn.be/stops/207643"], ["https://data.delijn.be/stops/300415", "https://data.delijn.be/stops/300443"], ["https://data.delijn.be/stops/501295", "https://data.delijn.be/stops/506295"], ["https://data.delijn.be/stops/400472", "https://data.delijn.be/stops/404663"], ["https://data.delijn.be/stops/508146", "https://data.delijn.be/stops/509225"], ["https://data.delijn.be/stops/501159", "https://data.delijn.be/stops/501668"], ["https://data.delijn.be/stops/301217", "https://data.delijn.be/stops/301219"], ["https://data.delijn.be/stops/502595", "https://data.delijn.be/stops/507449"], ["https://data.delijn.be/stops/200412", "https://data.delijn.be/stops/201412"], ["https://data.delijn.be/stops/401575", "https://data.delijn.be/stops/402215"], ["https://data.delijn.be/stops/408601", "https://data.delijn.be/stops/408655"], ["https://data.delijn.be/stops/502287", "https://data.delijn.be/stops/507287"], ["https://data.delijn.be/stops/407739", "https://data.delijn.be/stops/409634"], ["https://data.delijn.be/stops/407934", "https://data.delijn.be/stops/407936"], ["https://data.delijn.be/stops/402784", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/101007", "https://data.delijn.be/stops/107675"], ["https://data.delijn.be/stops/200255", "https://data.delijn.be/stops/201254"], ["https://data.delijn.be/stops/504273", "https://data.delijn.be/stops/509274"], ["https://data.delijn.be/stops/202526", "https://data.delijn.be/stops/203540"], ["https://data.delijn.be/stops/207524", "https://data.delijn.be/stops/216008"], ["https://data.delijn.be/stops/109186", "https://data.delijn.be/stops/109275"], ["https://data.delijn.be/stops/408842", "https://data.delijn.be/stops/408843"], ["https://data.delijn.be/stops/206187", "https://data.delijn.be/stops/207187"], ["https://data.delijn.be/stops/206466", "https://data.delijn.be/stops/207470"], ["https://data.delijn.be/stops/201289", "https://data.delijn.be/stops/211132"], ["https://data.delijn.be/stops/204728", "https://data.delijn.be/stops/205728"], ["https://data.delijn.be/stops/200135", "https://data.delijn.be/stops/200408"], ["https://data.delijn.be/stops/105996", "https://data.delijn.be/stops/107908"], ["https://data.delijn.be/stops/403488", "https://data.delijn.be/stops/403489"], ["https://data.delijn.be/stops/200937", "https://data.delijn.be/stops/200940"], ["https://data.delijn.be/stops/108460", "https://data.delijn.be/stops/108620"], ["https://data.delijn.be/stops/300923", "https://data.delijn.be/stops/300924"], ["https://data.delijn.be/stops/206007", "https://data.delijn.be/stops/207007"], ["https://data.delijn.be/stops/505406", "https://data.delijn.be/stops/509885"], ["https://data.delijn.be/stops/503098", "https://data.delijn.be/stops/508099"], ["https://data.delijn.be/stops/503147", "https://data.delijn.be/stops/505994"], ["https://data.delijn.be/stops/406995", "https://data.delijn.be/stops/409732"], ["https://data.delijn.be/stops/200417", "https://data.delijn.be/stops/201009"], ["https://data.delijn.be/stops/207724", "https://data.delijn.be/stops/207881"], ["https://data.delijn.be/stops/202789", "https://data.delijn.be/stops/203789"], ["https://data.delijn.be/stops/302246", "https://data.delijn.be/stops/303997"], ["https://data.delijn.be/stops/308073", "https://data.delijn.be/stops/308074"], ["https://data.delijn.be/stops/301288", "https://data.delijn.be/stops/307942"], ["https://data.delijn.be/stops/101895", "https://data.delijn.be/stops/108010"], ["https://data.delijn.be/stops/103909", "https://data.delijn.be/stops/105621"], ["https://data.delijn.be/stops/206132", "https://data.delijn.be/stops/206716"], ["https://data.delijn.be/stops/501446", "https://data.delijn.be/stops/501484"], ["https://data.delijn.be/stops/305076", "https://data.delijn.be/stops/305095"], ["https://data.delijn.be/stops/106507", "https://data.delijn.be/stops/106508"], ["https://data.delijn.be/stops/405684", "https://data.delijn.be/stops/406467"], ["https://data.delijn.be/stops/205735", "https://data.delijn.be/stops/205757"], ["https://data.delijn.be/stops/206424", "https://data.delijn.be/stops/207568"], ["https://data.delijn.be/stops/208796", "https://data.delijn.be/stops/209231"], ["https://data.delijn.be/stops/105643", "https://data.delijn.be/stops/105646"], ["https://data.delijn.be/stops/206080", "https://data.delijn.be/stops/207080"], ["https://data.delijn.be/stops/204752", "https://data.delijn.be/stops/205752"], ["https://data.delijn.be/stops/402049", "https://data.delijn.be/stops/402089"], ["https://data.delijn.be/stops/204565", "https://data.delijn.be/stops/205565"], ["https://data.delijn.be/stops/307626", "https://data.delijn.be/stops/308268"], ["https://data.delijn.be/stops/207691", "https://data.delijn.be/stops/207718"], ["https://data.delijn.be/stops/104677", "https://data.delijn.be/stops/104696"], ["https://data.delijn.be/stops/200663", "https://data.delijn.be/stops/201838"], ["https://data.delijn.be/stops/103028", "https://data.delijn.be/stops/107482"], ["https://data.delijn.be/stops/300627", "https://data.delijn.be/stops/300709"], ["https://data.delijn.be/stops/505118", "https://data.delijn.be/stops/509046"], ["https://data.delijn.be/stops/503560", "https://data.delijn.be/stops/505846"], ["https://data.delijn.be/stops/503384", "https://data.delijn.be/stops/507817"], ["https://data.delijn.be/stops/502317", "https://data.delijn.be/stops/507027"], ["https://data.delijn.be/stops/504120", "https://data.delijn.be/stops/504759"], ["https://data.delijn.be/stops/202543", "https://data.delijn.be/stops/507277"], ["https://data.delijn.be/stops/200050", "https://data.delijn.be/stops/200202"], ["https://data.delijn.be/stops/406522", "https://data.delijn.be/stops/406524"], ["https://data.delijn.be/stops/106142", "https://data.delijn.be/stops/106144"], ["https://data.delijn.be/stops/300694", "https://data.delijn.be/stops/306366"], ["https://data.delijn.be/stops/301861", "https://data.delijn.be/stops/301864"], ["https://data.delijn.be/stops/200633", "https://data.delijn.be/stops/201603"], ["https://data.delijn.be/stops/407782", "https://data.delijn.be/stops/407783"], ["https://data.delijn.be/stops/101361", "https://data.delijn.be/stops/102192"], ["https://data.delijn.be/stops/108789", "https://data.delijn.be/stops/109112"], ["https://data.delijn.be/stops/301667", "https://data.delijn.be/stops/307338"], ["https://data.delijn.be/stops/200449", "https://data.delijn.be/stops/201075"], ["https://data.delijn.be/stops/305166", "https://data.delijn.be/stops/306965"], ["https://data.delijn.be/stops/305160", "https://data.delijn.be/stops/305195"], ["https://data.delijn.be/stops/405434", "https://data.delijn.be/stops/409303"], ["https://data.delijn.be/stops/400098", "https://data.delijn.be/stops/400099"], ["https://data.delijn.be/stops/406127", "https://data.delijn.be/stops/406132"], ["https://data.delijn.be/stops/101080", "https://data.delijn.be/stops/101085"], ["https://data.delijn.be/stops/102227", "https://data.delijn.be/stops/105524"], ["https://data.delijn.be/stops/206788", "https://data.delijn.be/stops/206789"], ["https://data.delijn.be/stops/104972", "https://data.delijn.be/stops/108558"], ["https://data.delijn.be/stops/202578", "https://data.delijn.be/stops/202581"], ["https://data.delijn.be/stops/502508", "https://data.delijn.be/stops/502535"], ["https://data.delijn.be/stops/104900", "https://data.delijn.be/stops/108555"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/302917"], ["https://data.delijn.be/stops/204169", "https://data.delijn.be/stops/205169"], ["https://data.delijn.be/stops/202379", "https://data.delijn.be/stops/203379"], ["https://data.delijn.be/stops/201260", "https://data.delijn.be/stops/210095"], ["https://data.delijn.be/stops/503145", "https://data.delijn.be/stops/509885"], ["https://data.delijn.be/stops/308512", "https://data.delijn.be/stops/308515"], ["https://data.delijn.be/stops/301169", "https://data.delijn.be/stops/304313"], ["https://data.delijn.be/stops/503550", "https://data.delijn.be/stops/508550"], ["https://data.delijn.be/stops/403401", "https://data.delijn.be/stops/403402"], ["https://data.delijn.be/stops/302469", "https://data.delijn.be/stops/304875"], ["https://data.delijn.be/stops/108274", "https://data.delijn.be/stops/109341"], ["https://data.delijn.be/stops/209498", "https://data.delijn.be/stops/209668"], ["https://data.delijn.be/stops/201389", "https://data.delijn.be/stops/208970"], ["https://data.delijn.be/stops/209603", "https://data.delijn.be/stops/305334"], ["https://data.delijn.be/stops/202963", "https://data.delijn.be/stops/203964"], ["https://data.delijn.be/stops/206207", "https://data.delijn.be/stops/206322"], ["https://data.delijn.be/stops/102589", "https://data.delijn.be/stops/109002"], ["https://data.delijn.be/stops/503846", "https://data.delijn.be/stops/503856"], ["https://data.delijn.be/stops/302553", "https://data.delijn.be/stops/302554"], ["https://data.delijn.be/stops/302871", "https://data.delijn.be/stops/302872"], ["https://data.delijn.be/stops/202062", "https://data.delijn.be/stops/203062"], ["https://data.delijn.be/stops/508482", "https://data.delijn.be/stops/508490"], ["https://data.delijn.be/stops/308507", "https://data.delijn.be/stops/308514"], ["https://data.delijn.be/stops/200856", "https://data.delijn.be/stops/202306"], ["https://data.delijn.be/stops/504563", "https://data.delijn.be/stops/509235"], ["https://data.delijn.be/stops/206972", "https://data.delijn.be/stops/207990"], ["https://data.delijn.be/stops/305523", "https://data.delijn.be/stops/305524"], ["https://data.delijn.be/stops/503731", "https://data.delijn.be/stops/503741"], ["https://data.delijn.be/stops/208670", "https://data.delijn.be/stops/219021"], ["https://data.delijn.be/stops/109987", "https://data.delijn.be/stops/410346"], ["https://data.delijn.be/stops/505726", "https://data.delijn.be/stops/507769"], ["https://data.delijn.be/stops/206063", "https://data.delijn.be/stops/206064"], ["https://data.delijn.be/stops/502583", "https://data.delijn.be/stops/507583"], ["https://data.delijn.be/stops/108325", "https://data.delijn.be/stops/108410"], ["https://data.delijn.be/stops/407154", "https://data.delijn.be/stops/407167"], ["https://data.delijn.be/stops/204190", "https://data.delijn.be/stops/205190"], ["https://data.delijn.be/stops/202263", "https://data.delijn.be/stops/202264"], ["https://data.delijn.be/stops/503168", "https://data.delijn.be/stops/508265"], ["https://data.delijn.be/stops/108742", "https://data.delijn.be/stops/108774"], ["https://data.delijn.be/stops/102201", "https://data.delijn.be/stops/105941"], ["https://data.delijn.be/stops/401844", "https://data.delijn.be/stops/406347"], ["https://data.delijn.be/stops/402573", "https://data.delijn.be/stops/402655"], ["https://data.delijn.be/stops/301453", "https://data.delijn.be/stops/307264"], ["https://data.delijn.be/stops/103476", "https://data.delijn.be/stops/103619"], ["https://data.delijn.be/stops/208395", "https://data.delijn.be/stops/509816"], ["https://data.delijn.be/stops/505417", "https://data.delijn.be/stops/505724"], ["https://data.delijn.be/stops/301480", "https://data.delijn.be/stops/308704"], ["https://data.delijn.be/stops/106372", "https://data.delijn.be/stops/106373"], ["https://data.delijn.be/stops/307349", "https://data.delijn.be/stops/307350"], ["https://data.delijn.be/stops/307108", "https://data.delijn.be/stops/307806"], ["https://data.delijn.be/stops/502660", "https://data.delijn.be/stops/507447"], ["https://data.delijn.be/stops/206953", "https://data.delijn.be/stops/300172"], ["https://data.delijn.be/stops/308459", "https://data.delijn.be/stops/308462"], ["https://data.delijn.be/stops/404320", "https://data.delijn.be/stops/404370"], ["https://data.delijn.be/stops/102812", "https://data.delijn.be/stops/104035"], ["https://data.delijn.be/stops/102484", "https://data.delijn.be/stops/400251"], ["https://data.delijn.be/stops/300570", "https://data.delijn.be/stops/301624"], ["https://data.delijn.be/stops/503489", "https://data.delijn.be/stops/508484"], ["https://data.delijn.be/stops/304944", "https://data.delijn.be/stops/308021"], ["https://data.delijn.be/stops/101836", "https://data.delijn.be/stops/108204"], ["https://data.delijn.be/stops/404703", "https://data.delijn.be/stops/404829"], ["https://data.delijn.be/stops/301251", "https://data.delijn.be/stops/301252"], ["https://data.delijn.be/stops/404061", "https://data.delijn.be/stops/404543"], ["https://data.delijn.be/stops/403357", "https://data.delijn.be/stops/405636"], ["https://data.delijn.be/stops/104448", "https://data.delijn.be/stops/107944"], ["https://data.delijn.be/stops/102961", "https://data.delijn.be/stops/106593"], ["https://data.delijn.be/stops/505364", "https://data.delijn.be/stops/505955"], ["https://data.delijn.be/stops/307215", "https://data.delijn.be/stops/307216"], ["https://data.delijn.be/stops/501071", "https://data.delijn.be/stops/506071"], ["https://data.delijn.be/stops/106212", "https://data.delijn.be/stops/106252"], ["https://data.delijn.be/stops/403704", "https://data.delijn.be/stops/403705"], ["https://data.delijn.be/stops/301734", "https://data.delijn.be/stops/301736"], ["https://data.delijn.be/stops/204144", "https://data.delijn.be/stops/205144"], ["https://data.delijn.be/stops/303425", "https://data.delijn.be/stops/303429"], ["https://data.delijn.be/stops/503019", "https://data.delijn.be/stops/508017"], ["https://data.delijn.be/stops/303118", "https://data.delijn.be/stops/303125"], ["https://data.delijn.be/stops/109318", "https://data.delijn.be/stops/109322"], ["https://data.delijn.be/stops/302831", "https://data.delijn.be/stops/302837"], ["https://data.delijn.be/stops/304410", "https://data.delijn.be/stops/306875"], ["https://data.delijn.be/stops/405940", "https://data.delijn.be/stops/405941"], ["https://data.delijn.be/stops/105374", "https://data.delijn.be/stops/305785"], ["https://data.delijn.be/stops/200632", "https://data.delijn.be/stops/201940"], ["https://data.delijn.be/stops/305634", "https://data.delijn.be/stops/305636"], ["https://data.delijn.be/stops/206579", "https://data.delijn.be/stops/207510"], ["https://data.delijn.be/stops/302524", "https://data.delijn.be/stops/308713"], ["https://data.delijn.be/stops/206308", "https://data.delijn.be/stops/206391"], ["https://data.delijn.be/stops/504944", "https://data.delijn.be/stops/509944"], ["https://data.delijn.be/stops/403284", "https://data.delijn.be/stops/403865"], ["https://data.delijn.be/stops/211025", "https://data.delijn.be/stops/211849"], ["https://data.delijn.be/stops/200025", "https://data.delijn.be/stops/205926"], ["https://data.delijn.be/stops/501022", "https://data.delijn.be/stops/501471"], ["https://data.delijn.be/stops/206298", "https://data.delijn.be/stops/207107"], ["https://data.delijn.be/stops/304577", "https://data.delijn.be/stops/304610"], ["https://data.delijn.be/stops/207429", "https://data.delijn.be/stops/208538"], ["https://data.delijn.be/stops/405553", "https://data.delijn.be/stops/410054"], ["https://data.delijn.be/stops/504701", "https://data.delijn.be/stops/509546"], ["https://data.delijn.be/stops/405918", "https://data.delijn.be/stops/405919"], ["https://data.delijn.be/stops/401842", "https://data.delijn.be/stops/401846"], ["https://data.delijn.be/stops/404173", "https://data.delijn.be/stops/404279"], ["https://data.delijn.be/stops/307295", "https://data.delijn.be/stops/308294"], ["https://data.delijn.be/stops/201361", "https://data.delijn.be/stops/202006"], ["https://data.delijn.be/stops/507520", "https://data.delijn.be/stops/507673"], ["https://data.delijn.be/stops/101359", "https://data.delijn.be/stops/101362"], ["https://data.delijn.be/stops/504562", "https://data.delijn.be/stops/509244"], ["https://data.delijn.be/stops/204068", "https://data.delijn.be/stops/205195"], ["https://data.delijn.be/stops/109253", "https://data.delijn.be/stops/109713"], ["https://data.delijn.be/stops/408566", "https://data.delijn.be/stops/408795"], ["https://data.delijn.be/stops/505550", "https://data.delijn.be/stops/507256"], ["https://data.delijn.be/stops/502479", "https://data.delijn.be/stops/509929"], ["https://data.delijn.be/stops/200816", "https://data.delijn.be/stops/200874"], ["https://data.delijn.be/stops/300816", "https://data.delijn.be/stops/308853"], ["https://data.delijn.be/stops/406827", "https://data.delijn.be/stops/409667"], ["https://data.delijn.be/stops/206822", "https://data.delijn.be/stops/207822"], ["https://data.delijn.be/stops/505520", "https://data.delijn.be/stops/505622"], ["https://data.delijn.be/stops/507340", "https://data.delijn.be/stops/507342"], ["https://data.delijn.be/stops/203101", "https://data.delijn.be/stops/203258"], ["https://data.delijn.be/stops/208679", "https://data.delijn.be/stops/209428"], ["https://data.delijn.be/stops/108720", "https://data.delijn.be/stops/109899"], ["https://data.delijn.be/stops/301031", "https://data.delijn.be/stops/307142"], ["https://data.delijn.be/stops/106812", "https://data.delijn.be/stops/106813"], ["https://data.delijn.be/stops/307864", "https://data.delijn.be/stops/307865"], ["https://data.delijn.be/stops/205226", "https://data.delijn.be/stops/205231"], ["https://data.delijn.be/stops/505038", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/301446", "https://data.delijn.be/stops/301673"], ["https://data.delijn.be/stops/201344", "https://data.delijn.be/stops/201377"], ["https://data.delijn.be/stops/307624", "https://data.delijn.be/stops/308265"], ["https://data.delijn.be/stops/206513", "https://data.delijn.be/stops/207517"], ["https://data.delijn.be/stops/501362", "https://data.delijn.be/stops/506493"], ["https://data.delijn.be/stops/208383", "https://data.delijn.be/stops/209383"], ["https://data.delijn.be/stops/101130", "https://data.delijn.be/stops/101565"], ["https://data.delijn.be/stops/500002", "https://data.delijn.be/stops/503204"], ["https://data.delijn.be/stops/408524", "https://data.delijn.be/stops/408763"], ["https://data.delijn.be/stops/206415", "https://data.delijn.be/stops/217016"], ["https://data.delijn.be/stops/211011", "https://data.delijn.be/stops/502276"], ["https://data.delijn.be/stops/202815", "https://data.delijn.be/stops/203884"], ["https://data.delijn.be/stops/408620", "https://data.delijn.be/stops/408807"], ["https://data.delijn.be/stops/403087", "https://data.delijn.be/stops/403162"], ["https://data.delijn.be/stops/303697", "https://data.delijn.be/stops/305389"], ["https://data.delijn.be/stops/300788", "https://data.delijn.be/stops/308673"], ["https://data.delijn.be/stops/405426", "https://data.delijn.be/stops/409256"], ["https://data.delijn.be/stops/302974", "https://data.delijn.be/stops/302997"], ["https://data.delijn.be/stops/503425", "https://data.delijn.be/stops/508420"], ["https://data.delijn.be/stops/301937", "https://data.delijn.be/stops/302152"], ["https://data.delijn.be/stops/301181", "https://data.delijn.be/stops/301185"], ["https://data.delijn.be/stops/208630", "https://data.delijn.be/stops/209045"], ["https://data.delijn.be/stops/106605", "https://data.delijn.be/stops/106607"], ["https://data.delijn.be/stops/408768", "https://data.delijn.be/stops/408774"], ["https://data.delijn.be/stops/106905", "https://data.delijn.be/stops/106906"], ["https://data.delijn.be/stops/305896", "https://data.delijn.be/stops/305898"], ["https://data.delijn.be/stops/402803", "https://data.delijn.be/stops/402812"], ["https://data.delijn.be/stops/108812", "https://data.delijn.be/stops/108814"], ["https://data.delijn.be/stops/208292", "https://data.delijn.be/stops/209292"], ["https://data.delijn.be/stops/105106", "https://data.delijn.be/stops/109505"], ["https://data.delijn.be/stops/200160", "https://data.delijn.be/stops/201160"], ["https://data.delijn.be/stops/404252", "https://data.delijn.be/stops/404315"], ["https://data.delijn.be/stops/503142", "https://data.delijn.be/stops/505408"], ["https://data.delijn.be/stops/505103", "https://data.delijn.be/stops/509359"], ["https://data.delijn.be/stops/206139", "https://data.delijn.be/stops/207138"], ["https://data.delijn.be/stops/105039", "https://data.delijn.be/stops/305833"], ["https://data.delijn.be/stops/502070", "https://data.delijn.be/stops/507061"], ["https://data.delijn.be/stops/207303", "https://data.delijn.be/stops/207304"], ["https://data.delijn.be/stops/307381", "https://data.delijn.be/stops/308278"], ["https://data.delijn.be/stops/105861", "https://data.delijn.be/stops/105863"], ["https://data.delijn.be/stops/102454", "https://data.delijn.be/stops/404047"], ["https://data.delijn.be/stops/308288", "https://data.delijn.be/stops/308290"], ["https://data.delijn.be/stops/501389", "https://data.delijn.be/stops/501464"], ["https://data.delijn.be/stops/303754", "https://data.delijn.be/stops/303784"], ["https://data.delijn.be/stops/503652", "https://data.delijn.be/stops/508653"], ["https://data.delijn.be/stops/305536", "https://data.delijn.be/stops/305537"], ["https://data.delijn.be/stops/109970", "https://data.delijn.be/stops/109971"], ["https://data.delijn.be/stops/103248", "https://data.delijn.be/stops/108230"], ["https://data.delijn.be/stops/205421", "https://data.delijn.be/stops/205765"], ["https://data.delijn.be/stops/306141", "https://data.delijn.be/stops/306644"], ["https://data.delijn.be/stops/300475", "https://data.delijn.be/stops/308081"], ["https://data.delijn.be/stops/308136", "https://data.delijn.be/stops/308178"], ["https://data.delijn.be/stops/206865", "https://data.delijn.be/stops/208746"], ["https://data.delijn.be/stops/504284", "https://data.delijn.be/stops/509038"], ["https://data.delijn.be/stops/501594", "https://data.delijn.be/stops/509017"], ["https://data.delijn.be/stops/505135", "https://data.delijn.be/stops/505978"], ["https://data.delijn.be/stops/102670", "https://data.delijn.be/stops/105435"], ["https://data.delijn.be/stops/104466", "https://data.delijn.be/stops/109777"], ["https://data.delijn.be/stops/300112", "https://data.delijn.be/stops/306851"], ["https://data.delijn.be/stops/204072", "https://data.delijn.be/stops/205097"], ["https://data.delijn.be/stops/202560", "https://data.delijn.be/stops/203560"], ["https://data.delijn.be/stops/504581", "https://data.delijn.be/stops/504586"], ["https://data.delijn.be/stops/103201", "https://data.delijn.be/stops/406788"], ["https://data.delijn.be/stops/301067", "https://data.delijn.be/stops/301071"], ["https://data.delijn.be/stops/208539", "https://data.delijn.be/stops/209038"], ["https://data.delijn.be/stops/504113", "https://data.delijn.be/stops/504698"], ["https://data.delijn.be/stops/107202", "https://data.delijn.be/stops/107605"], ["https://data.delijn.be/stops/302062", "https://data.delijn.be/stops/308812"], ["https://data.delijn.be/stops/403894", "https://data.delijn.be/stops/404970"], ["https://data.delijn.be/stops/304985", "https://data.delijn.be/stops/305017"], ["https://data.delijn.be/stops/405521", "https://data.delijn.be/stops/405671"], ["https://data.delijn.be/stops/104370", "https://data.delijn.be/stops/104375"], ["https://data.delijn.be/stops/301184", "https://data.delijn.be/stops/302929"], ["https://data.delijn.be/stops/109117", "https://data.delijn.be/stops/109121"], ["https://data.delijn.be/stops/107370", "https://data.delijn.be/stops/108115"], ["https://data.delijn.be/stops/401413", "https://data.delijn.be/stops/301132"], ["https://data.delijn.be/stops/506684", "https://data.delijn.be/stops/509499"], ["https://data.delijn.be/stops/108519", "https://data.delijn.be/stops/108521"], ["https://data.delijn.be/stops/402973", "https://data.delijn.be/stops/410059"], ["https://data.delijn.be/stops/407400", "https://data.delijn.be/stops/410253"], ["https://data.delijn.be/stops/301365", "https://data.delijn.be/stops/306684"], ["https://data.delijn.be/stops/102521", "https://data.delijn.be/stops/108628"], ["https://data.delijn.be/stops/202489", "https://data.delijn.be/stops/203489"], ["https://data.delijn.be/stops/506028", "https://data.delijn.be/stops/506491"], ["https://data.delijn.be/stops/501458", "https://data.delijn.be/stops/506458"], ["https://data.delijn.be/stops/505109", "https://data.delijn.be/stops/509521"], ["https://data.delijn.be/stops/107726", "https://data.delijn.be/stops/406796"], ["https://data.delijn.be/stops/503182", "https://data.delijn.be/stops/508181"], ["https://data.delijn.be/stops/206434", "https://data.delijn.be/stops/209689"], ["https://data.delijn.be/stops/108067", "https://data.delijn.be/stops/108458"], ["https://data.delijn.be/stops/304089", "https://data.delijn.be/stops/304107"], ["https://data.delijn.be/stops/206232", "https://data.delijn.be/stops/207232"], ["https://data.delijn.be/stops/104275", "https://data.delijn.be/stops/107290"], ["https://data.delijn.be/stops/302967", "https://data.delijn.be/stops/304186"], ["https://data.delijn.be/stops/305549", "https://data.delijn.be/stops/305561"], ["https://data.delijn.be/stops/104355", "https://data.delijn.be/stops/104721"], ["https://data.delijn.be/stops/500119", "https://data.delijn.be/stops/507270"], ["https://data.delijn.be/stops/106933", "https://data.delijn.be/stops/107302"], ["https://data.delijn.be/stops/502925", "https://data.delijn.be/stops/505332"], ["https://data.delijn.be/stops/304023", "https://data.delijn.be/stops/304144"], ["https://data.delijn.be/stops/301597", "https://data.delijn.be/stops/301602"], ["https://data.delijn.be/stops/308165", "https://data.delijn.be/stops/308167"], ["https://data.delijn.be/stops/503816", "https://data.delijn.be/stops/508436"], ["https://data.delijn.be/stops/410275", "https://data.delijn.be/stops/410277"], ["https://data.delijn.be/stops/206084", "https://data.delijn.be/stops/206989"], ["https://data.delijn.be/stops/504079", "https://data.delijn.be/stops/509079"], ["https://data.delijn.be/stops/108114", "https://data.delijn.be/stops/108116"], ["https://data.delijn.be/stops/103632", "https://data.delijn.be/stops/103633"], ["https://data.delijn.be/stops/200608", "https://data.delijn.be/stops/201608"], ["https://data.delijn.be/stops/106317", "https://data.delijn.be/stops/109138"], ["https://data.delijn.be/stops/305424", "https://data.delijn.be/stops/305519"], ["https://data.delijn.be/stops/302316", "https://data.delijn.be/stops/302317"], ["https://data.delijn.be/stops/205998", "https://data.delijn.be/stops/208378"], ["https://data.delijn.be/stops/504505", "https://data.delijn.be/stops/509505"], ["https://data.delijn.be/stops/402825", "https://data.delijn.be/stops/402827"], ["https://data.delijn.be/stops/400081", "https://data.delijn.be/stops/403298"], ["https://data.delijn.be/stops/304827", "https://data.delijn.be/stops/304828"], ["https://data.delijn.be/stops/103299", "https://data.delijn.be/stops/107015"], ["https://data.delijn.be/stops/400489", "https://data.delijn.be/stops/400972"], ["https://data.delijn.be/stops/401319", "https://data.delijn.be/stops/406656"], ["https://data.delijn.be/stops/300075", "https://data.delijn.be/stops/304645"], ["https://data.delijn.be/stops/206548", "https://data.delijn.be/stops/206549"], ["https://data.delijn.be/stops/509167", "https://data.delijn.be/stops/509192"], ["https://data.delijn.be/stops/102202", "https://data.delijn.be/stops/105938"], ["https://data.delijn.be/stops/400911", "https://data.delijn.be/stops/400961"], ["https://data.delijn.be/stops/103634", "https://data.delijn.be/stops/107166"], ["https://data.delijn.be/stops/404172", "https://data.delijn.be/stops/404197"], ["https://data.delijn.be/stops/206756", "https://data.delijn.be/stops/207658"], ["https://data.delijn.be/stops/106748", "https://data.delijn.be/stops/109775"], ["https://data.delijn.be/stops/301634", "https://data.delijn.be/stops/301638"], ["https://data.delijn.be/stops/108677", "https://data.delijn.be/stops/109951"], ["https://data.delijn.be/stops/102388", "https://data.delijn.be/stops/102648"], ["https://data.delijn.be/stops/509056", "https://data.delijn.be/stops/509191"], ["https://data.delijn.be/stops/206027", "https://data.delijn.be/stops/207205"], ["https://data.delijn.be/stops/204166", "https://data.delijn.be/stops/204580"], ["https://data.delijn.be/stops/405781", "https://data.delijn.be/stops/408481"], ["https://data.delijn.be/stops/301584", "https://data.delijn.be/stops/301590"], ["https://data.delijn.be/stops/106353", "https://data.delijn.be/stops/106355"], ["https://data.delijn.be/stops/401123", "https://data.delijn.be/stops/401129"], ["https://data.delijn.be/stops/405955", "https://data.delijn.be/stops/405956"], ["https://data.delijn.be/stops/503439", "https://data.delijn.be/stops/508429"], ["https://data.delijn.be/stops/206045", "https://data.delijn.be/stops/207382"], ["https://data.delijn.be/stops/200025", "https://data.delijn.be/stops/200551"], ["https://data.delijn.be/stops/104966", "https://data.delijn.be/stops/107464"], ["https://data.delijn.be/stops/104200", "https://data.delijn.be/stops/104720"], ["https://data.delijn.be/stops/204366", "https://data.delijn.be/stops/205216"], ["https://data.delijn.be/stops/407208", "https://data.delijn.be/stops/407209"], ["https://data.delijn.be/stops/109661", "https://data.delijn.be/stops/109662"], ["https://data.delijn.be/stops/300502", "https://data.delijn.be/stops/300510"], ["https://data.delijn.be/stops/402382", "https://data.delijn.be/stops/402392"], ["https://data.delijn.be/stops/102423", "https://data.delijn.be/stops/104736"], ["https://data.delijn.be/stops/400221", "https://data.delijn.be/stops/407193"], ["https://data.delijn.be/stops/106992", "https://data.delijn.be/stops/106995"], ["https://data.delijn.be/stops/408946", "https://data.delijn.be/stops/408948"], ["https://data.delijn.be/stops/203140", "https://data.delijn.be/stops/203176"], ["https://data.delijn.be/stops/407574", "https://data.delijn.be/stops/408928"], ["https://data.delijn.be/stops/207449", "https://data.delijn.be/stops/207450"], ["https://data.delijn.be/stops/403922", "https://data.delijn.be/stops/404432"], ["https://data.delijn.be/stops/202214", "https://data.delijn.be/stops/203281"], ["https://data.delijn.be/stops/403808", "https://data.delijn.be/stops/408745"], ["https://data.delijn.be/stops/107445", "https://data.delijn.be/stops/107475"], ["https://data.delijn.be/stops/206158", "https://data.delijn.be/stops/207506"], ["https://data.delijn.be/stops/102643", "https://data.delijn.be/stops/205447"], ["https://data.delijn.be/stops/500601", "https://data.delijn.be/stops/506457"], ["https://data.delijn.be/stops/208380", "https://data.delijn.be/stops/209379"], ["https://data.delijn.be/stops/108462", "https://data.delijn.be/stops/108463"], ["https://data.delijn.be/stops/106760", "https://data.delijn.be/stops/107469"], ["https://data.delijn.be/stops/200076", "https://data.delijn.be/stops/204912"], ["https://data.delijn.be/stops/203146", "https://data.delijn.be/stops/203188"], ["https://data.delijn.be/stops/301785", "https://data.delijn.be/stops/308430"], ["https://data.delijn.be/stops/300179", "https://data.delijn.be/stops/307130"], ["https://data.delijn.be/stops/101538", "https://data.delijn.be/stops/103473"], ["https://data.delijn.be/stops/201587", "https://data.delijn.be/stops/211850"], ["https://data.delijn.be/stops/406118", "https://data.delijn.be/stops/406119"], ["https://data.delijn.be/stops/409785", "https://data.delijn.be/stops/409787"], ["https://data.delijn.be/stops/300214", "https://data.delijn.be/stops/301377"], ["https://data.delijn.be/stops/402205", "https://data.delijn.be/stops/402499"], ["https://data.delijn.be/stops/206149", "https://data.delijn.be/stops/207907"], ["https://data.delijn.be/stops/505381", "https://data.delijn.be/stops/508059"], ["https://data.delijn.be/stops/503949", "https://data.delijn.be/stops/503950"], ["https://data.delijn.be/stops/204192", "https://data.delijn.be/stops/205204"], ["https://data.delijn.be/stops/505395", "https://data.delijn.be/stops/505424"], ["https://data.delijn.be/stops/206318", "https://data.delijn.be/stops/207268"], ["https://data.delijn.be/stops/503167", "https://data.delijn.be/stops/508168"], ["https://data.delijn.be/stops/403792", "https://data.delijn.be/stops/403811"], ["https://data.delijn.be/stops/108957", "https://data.delijn.be/stops/108958"], ["https://data.delijn.be/stops/400640", "https://data.delijn.be/stops/400916"], ["https://data.delijn.be/stops/208146", "https://data.delijn.be/stops/209146"], ["https://data.delijn.be/stops/302753", "https://data.delijn.be/stops/308545"], ["https://data.delijn.be/stops/107265", "https://data.delijn.be/stops/107268"], ["https://data.delijn.be/stops/206799", "https://data.delijn.be/stops/206801"], ["https://data.delijn.be/stops/402385", "https://data.delijn.be/stops/402452"], ["https://data.delijn.be/stops/204977", "https://data.delijn.be/stops/209246"], ["https://data.delijn.be/stops/503878", "https://data.delijn.be/stops/508878"], ["https://data.delijn.be/stops/301338", "https://data.delijn.be/stops/306118"], ["https://data.delijn.be/stops/202324", "https://data.delijn.be/stops/203304"], ["https://data.delijn.be/stops/101508", "https://data.delijn.be/stops/300112"], ["https://data.delijn.be/stops/503009", "https://data.delijn.be/stops/503014"], ["https://data.delijn.be/stops/208666", "https://data.delijn.be/stops/209124"], ["https://data.delijn.be/stops/201663", "https://data.delijn.be/stops/203321"], ["https://data.delijn.be/stops/103616", "https://data.delijn.be/stops/106306"], ["https://data.delijn.be/stops/406169", "https://data.delijn.be/stops/406193"], ["https://data.delijn.be/stops/302981", "https://data.delijn.be/stops/306295"], ["https://data.delijn.be/stops/502690", "https://data.delijn.be/stops/503822"], ["https://data.delijn.be/stops/107405", "https://data.delijn.be/stops/107406"], ["https://data.delijn.be/stops/107200", "https://data.delijn.be/stops/107727"], ["https://data.delijn.be/stops/303377", "https://data.delijn.be/stops/307135"], ["https://data.delijn.be/stops/401077", "https://data.delijn.be/stops/401167"], ["https://data.delijn.be/stops/302607", "https://data.delijn.be/stops/302608"], ["https://data.delijn.be/stops/101010", "https://data.delijn.be/stops/105860"], ["https://data.delijn.be/stops/303250", "https://data.delijn.be/stops/303251"], ["https://data.delijn.be/stops/204716", "https://data.delijn.be/stops/205716"], ["https://data.delijn.be/stops/102243", "https://data.delijn.be/stops/102244"], ["https://data.delijn.be/stops/206741", "https://data.delijn.be/stops/206980"], ["https://data.delijn.be/stops/504051", "https://data.delijn.be/stops/509931"], ["https://data.delijn.be/stops/504196", "https://data.delijn.be/stops/509166"], ["https://data.delijn.be/stops/502041", "https://data.delijn.be/stops/502059"], ["https://data.delijn.be/stops/403819", "https://data.delijn.be/stops/403825"], ["https://data.delijn.be/stops/302809", "https://data.delijn.be/stops/305546"], ["https://data.delijn.be/stops/108090", "https://data.delijn.be/stops/108135"], ["https://data.delijn.be/stops/505843", "https://data.delijn.be/stops/508850"], ["https://data.delijn.be/stops/300904", "https://data.delijn.be/stops/301115"], ["https://data.delijn.be/stops/200905", "https://data.delijn.be/stops/202269"], ["https://data.delijn.be/stops/203424", "https://data.delijn.be/stops/211033"], ["https://data.delijn.be/stops/207350", "https://data.delijn.be/stops/207729"], ["https://data.delijn.be/stops/402100", "https://data.delijn.be/stops/402228"], ["https://data.delijn.be/stops/204418", "https://data.delijn.be/stops/205386"], ["https://data.delijn.be/stops/102010", "https://data.delijn.be/stops/102200"], ["https://data.delijn.be/stops/504363", "https://data.delijn.be/stops/509363"], ["https://data.delijn.be/stops/504155", "https://data.delijn.be/stops/505110"], ["https://data.delijn.be/stops/206355", "https://data.delijn.be/stops/207688"], ["https://data.delijn.be/stops/106203", "https://data.delijn.be/stops/109193"], ["https://data.delijn.be/stops/101403", "https://data.delijn.be/stops/106527"], ["https://data.delijn.be/stops/407931", "https://data.delijn.be/stops/407936"], ["https://data.delijn.be/stops/508067", "https://data.delijn.be/stops/508831"], ["https://data.delijn.be/stops/504239", "https://data.delijn.be/stops/509241"], ["https://data.delijn.be/stops/208202", "https://data.delijn.be/stops/209779"], ["https://data.delijn.be/stops/204481", "https://data.delijn.be/stops/205251"], ["https://data.delijn.be/stops/102543", "https://data.delijn.be/stops/102546"], ["https://data.delijn.be/stops/505358", "https://data.delijn.be/stops/505359"], ["https://data.delijn.be/stops/200142", "https://data.delijn.be/stops/201067"], ["https://data.delijn.be/stops/503668", "https://data.delijn.be/stops/508663"], ["https://data.delijn.be/stops/102441", "https://data.delijn.be/stops/107946"], ["https://data.delijn.be/stops/305653", "https://data.delijn.be/stops/308131"], ["https://data.delijn.be/stops/500601", "https://data.delijn.be/stops/501456"], ["https://data.delijn.be/stops/508719", "https://data.delijn.be/stops/509967"], ["https://data.delijn.be/stops/401196", "https://data.delijn.be/stops/401219"], ["https://data.delijn.be/stops/108464", "https://data.delijn.be/stops/108466"], ["https://data.delijn.be/stops/501093", "https://data.delijn.be/stops/506093"], ["https://data.delijn.be/stops/209097", "https://data.delijn.be/stops/209099"], ["https://data.delijn.be/stops/106017", "https://data.delijn.be/stops/106756"], ["https://data.delijn.be/stops/402298", "https://data.delijn.be/stops/402362"], ["https://data.delijn.be/stops/405920", "https://data.delijn.be/stops/405987"], ["https://data.delijn.be/stops/300744", "https://data.delijn.be/stops/303224"], ["https://data.delijn.be/stops/208476", "https://data.delijn.be/stops/209475"], ["https://data.delijn.be/stops/106877", "https://data.delijn.be/stops/106878"], ["https://data.delijn.be/stops/308161", "https://data.delijn.be/stops/308162"], ["https://data.delijn.be/stops/509771", "https://data.delijn.be/stops/509790"], ["https://data.delijn.be/stops/302307", "https://data.delijn.be/stops/302317"], ["https://data.delijn.be/stops/306846", "https://data.delijn.be/stops/306850"], ["https://data.delijn.be/stops/204400", "https://data.delijn.be/stops/204411"], ["https://data.delijn.be/stops/101036", "https://data.delijn.be/stops/104506"], ["https://data.delijn.be/stops/303373", "https://data.delijn.be/stops/303384"], ["https://data.delijn.be/stops/101222", "https://data.delijn.be/stops/107824"], ["https://data.delijn.be/stops/207701", "https://data.delijn.be/stops/207740"], ["https://data.delijn.be/stops/404028", "https://data.delijn.be/stops/308748"], ["https://data.delijn.be/stops/404494", "https://data.delijn.be/stops/404537"], ["https://data.delijn.be/stops/503883", "https://data.delijn.be/stops/505104"], ["https://data.delijn.be/stops/402082", "https://data.delijn.be/stops/402117"], ["https://data.delijn.be/stops/303417", "https://data.delijn.be/stops/303420"], ["https://data.delijn.be/stops/508072", "https://data.delijn.be/stops/508074"], ["https://data.delijn.be/stops/408605", "https://data.delijn.be/stops/408772"], ["https://data.delijn.be/stops/202899", "https://data.delijn.be/stops/210125"], ["https://data.delijn.be/stops/206988", "https://data.delijn.be/stops/207987"], ["https://data.delijn.be/stops/501481", "https://data.delijn.be/stops/505034"], ["https://data.delijn.be/stops/300999", "https://data.delijn.be/stops/306052"], ["https://data.delijn.be/stops/402659", "https://data.delijn.be/stops/402717"], ["https://data.delijn.be/stops/401466", "https://data.delijn.be/stops/401504"], ["https://data.delijn.be/stops/108240", "https://data.delijn.be/stops/108410"], ["https://data.delijn.be/stops/503750", "https://data.delijn.be/stops/508055"], ["https://data.delijn.be/stops/200677", "https://data.delijn.be/stops/210082"], ["https://data.delijn.be/stops/201664", "https://data.delijn.be/stops/209642"], ["https://data.delijn.be/stops/505696", "https://data.delijn.be/stops/505780"], ["https://data.delijn.be/stops/203022", "https://data.delijn.be/stops/210853"], ["https://data.delijn.be/stops/509032", "https://data.delijn.be/stops/509704"], ["https://data.delijn.be/stops/400964", "https://data.delijn.be/stops/401248"], ["https://data.delijn.be/stops/301262", "https://data.delijn.be/stops/307409"], ["https://data.delijn.be/stops/102623", "https://data.delijn.be/stops/102624"], ["https://data.delijn.be/stops/202015", "https://data.delijn.be/stops/202016"], ["https://data.delijn.be/stops/204730", "https://data.delijn.be/stops/204758"], ["https://data.delijn.be/stops/202328", "https://data.delijn.be/stops/204559"], ["https://data.delijn.be/stops/209514", "https://data.delijn.be/stops/209684"], ["https://data.delijn.be/stops/201768", "https://data.delijn.be/stops/201815"], ["https://data.delijn.be/stops/206135", "https://data.delijn.be/stops/207135"], ["https://data.delijn.be/stops/204541", "https://data.delijn.be/stops/204542"], ["https://data.delijn.be/stops/400477", "https://data.delijn.be/stops/407647"], ["https://data.delijn.be/stops/306604", "https://data.delijn.be/stops/306607"], ["https://data.delijn.be/stops/108926", "https://data.delijn.be/stops/108928"], ["https://data.delijn.be/stops/407925", "https://data.delijn.be/stops/408230"], ["https://data.delijn.be/stops/207291", "https://data.delijn.be/stops/207816"], ["https://data.delijn.be/stops/204175", "https://data.delijn.be/stops/205175"], ["https://data.delijn.be/stops/502229", "https://data.delijn.be/stops/505142"], ["https://data.delijn.be/stops/202691", "https://data.delijn.be/stops/203679"], ["https://data.delijn.be/stops/201726", "https://data.delijn.be/stops/203374"], ["https://data.delijn.be/stops/300384", "https://data.delijn.be/stops/301946"], ["https://data.delijn.be/stops/501737", "https://data.delijn.be/stops/506508"], ["https://data.delijn.be/stops/103300", "https://data.delijn.be/stops/107850"], ["https://data.delijn.be/stops/503812", "https://data.delijn.be/stops/508812"], ["https://data.delijn.be/stops/106131", "https://data.delijn.be/stops/106132"], ["https://data.delijn.be/stops/107583", "https://data.delijn.be/stops/107584"], ["https://data.delijn.be/stops/104013", "https://data.delijn.be/stops/104017"], ["https://data.delijn.be/stops/405954", "https://data.delijn.be/stops/405956"], ["https://data.delijn.be/stops/505639", "https://data.delijn.be/stops/508896"], ["https://data.delijn.be/stops/409386", "https://data.delijn.be/stops/410167"], ["https://data.delijn.be/stops/204214", "https://data.delijn.be/stops/205213"], ["https://data.delijn.be/stops/208458", "https://data.delijn.be/stops/209423"], ["https://data.delijn.be/stops/504045", "https://data.delijn.be/stops/505368"], ["https://data.delijn.be/stops/200133", "https://data.delijn.be/stops/200491"], ["https://data.delijn.be/stops/204299", "https://data.delijn.be/stops/204539"], ["https://data.delijn.be/stops/102075", "https://data.delijn.be/stops/102816"], ["https://data.delijn.be/stops/105672", "https://data.delijn.be/stops/305787"], ["https://data.delijn.be/stops/501749", "https://data.delijn.be/stops/501751"], ["https://data.delijn.be/stops/102752", "https://data.delijn.be/stops/104636"], ["https://data.delijn.be/stops/400794", "https://data.delijn.be/stops/406677"], ["https://data.delijn.be/stops/105891", "https://data.delijn.be/stops/105892"], ["https://data.delijn.be/stops/201725", "https://data.delijn.be/stops/202376"], ["https://data.delijn.be/stops/301814", "https://data.delijn.be/stops/306561"], ["https://data.delijn.be/stops/303012", "https://data.delijn.be/stops/303096"], ["https://data.delijn.be/stops/403492", "https://data.delijn.be/stops/403493"], ["https://data.delijn.be/stops/201895", "https://data.delijn.be/stops/202907"], ["https://data.delijn.be/stops/405339", "https://data.delijn.be/stops/405348"], ["https://data.delijn.be/stops/503076", "https://data.delijn.be/stops/508076"], ["https://data.delijn.be/stops/105613", "https://data.delijn.be/stops/105659"], ["https://data.delijn.be/stops/403722", "https://data.delijn.be/stops/403723"], ["https://data.delijn.be/stops/404652", "https://data.delijn.be/stops/404654"], ["https://data.delijn.be/stops/503848", "https://data.delijn.be/stops/504378"], ["https://data.delijn.be/stops/202506", "https://data.delijn.be/stops/203243"], ["https://data.delijn.be/stops/404700", "https://data.delijn.be/stops/404791"], ["https://data.delijn.be/stops/206140", "https://data.delijn.be/stops/207140"], ["https://data.delijn.be/stops/203493", "https://data.delijn.be/stops/203494"], ["https://data.delijn.be/stops/202653", "https://data.delijn.be/stops/203652"], ["https://data.delijn.be/stops/108189", "https://data.delijn.be/stops/108207"], ["https://data.delijn.be/stops/304987", "https://data.delijn.be/stops/308022"], ["https://data.delijn.be/stops/408386", "https://data.delijn.be/stops/408387"], ["https://data.delijn.be/stops/105495", "https://data.delijn.be/stops/105785"], ["https://data.delijn.be/stops/305017", "https://data.delijn.be/stops/308028"], ["https://data.delijn.be/stops/106942", "https://data.delijn.be/stops/109532"], ["https://data.delijn.be/stops/306935", "https://data.delijn.be/stops/306937"], ["https://data.delijn.be/stops/102651", "https://data.delijn.be/stops/104446"], ["https://data.delijn.be/stops/501132", "https://data.delijn.be/stops/501137"], ["https://data.delijn.be/stops/208181", "https://data.delijn.be/stops/208182"], ["https://data.delijn.be/stops/406244", "https://data.delijn.be/stops/406252"], ["https://data.delijn.be/stops/408257", "https://data.delijn.be/stops/408329"], ["https://data.delijn.be/stops/108434", "https://data.delijn.be/stops/109576"], ["https://data.delijn.be/stops/105043", "https://data.delijn.be/stops/105054"], ["https://data.delijn.be/stops/106099", "https://data.delijn.be/stops/106114"], ["https://data.delijn.be/stops/206942", "https://data.delijn.be/stops/207942"], ["https://data.delijn.be/stops/502286", "https://data.delijn.be/stops/505729"], ["https://data.delijn.be/stops/102686", "https://data.delijn.be/stops/104362"], ["https://data.delijn.be/stops/204069", "https://data.delijn.be/stops/205187"], ["https://data.delijn.be/stops/504017", "https://data.delijn.be/stops/504507"], ["https://data.delijn.be/stops/306401", "https://data.delijn.be/stops/306402"], ["https://data.delijn.be/stops/105936", "https://data.delijn.be/stops/105937"], ["https://data.delijn.be/stops/205020", "https://data.delijn.be/stops/205798"], ["https://data.delijn.be/stops/406240", "https://data.delijn.be/stops/406257"], ["https://data.delijn.be/stops/308112", "https://data.delijn.be/stops/308115"], ["https://data.delijn.be/stops/207082", "https://data.delijn.be/stops/207083"], ["https://data.delijn.be/stops/504236", "https://data.delijn.be/stops/504237"], ["https://data.delijn.be/stops/301712", "https://data.delijn.be/stops/301740"], ["https://data.delijn.be/stops/502240", "https://data.delijn.be/stops/502241"], ["https://data.delijn.be/stops/305502", "https://data.delijn.be/stops/307827"], ["https://data.delijn.be/stops/505839", "https://data.delijn.be/stops/505840"], ["https://data.delijn.be/stops/302311", "https://data.delijn.be/stops/302329"], ["https://data.delijn.be/stops/505097", "https://data.delijn.be/stops/505582"], ["https://data.delijn.be/stops/105113", "https://data.delijn.be/stops/105114"], ["https://data.delijn.be/stops/102212", "https://data.delijn.be/stops/103314"], ["https://data.delijn.be/stops/400594", "https://data.delijn.be/stops/400629"], ["https://data.delijn.be/stops/307410", "https://data.delijn.be/stops/307412"], ["https://data.delijn.be/stops/205418", "https://data.delijn.be/stops/205763"], ["https://data.delijn.be/stops/305732", "https://data.delijn.be/stops/306330"], ["https://data.delijn.be/stops/410006", "https://data.delijn.be/stops/410009"], ["https://data.delijn.be/stops/200776", "https://data.delijn.be/stops/201728"], ["https://data.delijn.be/stops/105996", "https://data.delijn.be/stops/105998"], ["https://data.delijn.be/stops/203013", "https://data.delijn.be/stops/203015"], ["https://data.delijn.be/stops/204566", "https://data.delijn.be/stops/205566"], ["https://data.delijn.be/stops/204589", "https://data.delijn.be/stops/211067"], ["https://data.delijn.be/stops/301987", "https://data.delijn.be/stops/301997"], ["https://data.delijn.be/stops/403597", "https://data.delijn.be/stops/403603"], ["https://data.delijn.be/stops/400107", "https://data.delijn.be/stops/409155"], ["https://data.delijn.be/stops/301603", "https://data.delijn.be/stops/306301"], ["https://data.delijn.be/stops/302336", "https://data.delijn.be/stops/306181"], ["https://data.delijn.be/stops/208404", "https://data.delijn.be/stops/211087"], ["https://data.delijn.be/stops/106398", "https://data.delijn.be/stops/106399"], ["https://data.delijn.be/stops/408738", "https://data.delijn.be/stops/408739"], ["https://data.delijn.be/stops/505762", "https://data.delijn.be/stops/506093"], ["https://data.delijn.be/stops/503645", "https://data.delijn.be/stops/503718"], ["https://data.delijn.be/stops/400865", "https://data.delijn.be/stops/400867"], ["https://data.delijn.be/stops/304476", "https://data.delijn.be/stops/304482"], ["https://data.delijn.be/stops/303471", "https://data.delijn.be/stops/303485"], ["https://data.delijn.be/stops/101006", "https://data.delijn.be/stops/109773"], ["https://data.delijn.be/stops/104469", "https://data.delijn.be/stops/107531"], ["https://data.delijn.be/stops/301432", "https://data.delijn.be/stops/307322"], ["https://data.delijn.be/stops/300856", "https://data.delijn.be/stops/308676"], ["https://data.delijn.be/stops/101311", "https://data.delijn.be/stops/106059"], ["https://data.delijn.be/stops/406044", "https://data.delijn.be/stops/406045"], ["https://data.delijn.be/stops/502704", "https://data.delijn.be/stops/507425"], ["https://data.delijn.be/stops/505772", "https://data.delijn.be/stops/507365"], ["https://data.delijn.be/stops/408617", "https://data.delijn.be/stops/408622"], ["https://data.delijn.be/stops/405161", "https://data.delijn.be/stops/405174"], ["https://data.delijn.be/stops/304501", "https://data.delijn.be/stops/304512"], ["https://data.delijn.be/stops/109308", "https://data.delijn.be/stops/109309"], ["https://data.delijn.be/stops/101593", "https://data.delijn.be/stops/107400"], ["https://data.delijn.be/stops/201855", "https://data.delijn.be/stops/203024"], ["https://data.delijn.be/stops/106651", "https://data.delijn.be/stops/109753"], ["https://data.delijn.be/stops/400781", "https://data.delijn.be/stops/404262"], ["https://data.delijn.be/stops/109798", "https://data.delijn.be/stops/305784"], ["https://data.delijn.be/stops/302784", "https://data.delijn.be/stops/302785"], ["https://data.delijn.be/stops/406299", "https://data.delijn.be/stops/409079"], ["https://data.delijn.be/stops/403187", "https://data.delijn.be/stops/403444"], ["https://data.delijn.be/stops/106793", "https://data.delijn.be/stops/106795"], ["https://data.delijn.be/stops/503063", "https://data.delijn.be/stops/508063"], ["https://data.delijn.be/stops/105971", "https://data.delijn.be/stops/105973"], ["https://data.delijn.be/stops/501033", "https://data.delijn.be/stops/501043"], ["https://data.delijn.be/stops/107654", "https://data.delijn.be/stops/107726"], ["https://data.delijn.be/stops/405229", "https://data.delijn.be/stops/405287"], ["https://data.delijn.be/stops/306120", "https://data.delijn.be/stops/306121"], ["https://data.delijn.be/stops/101922", "https://data.delijn.be/stops/109895"], ["https://data.delijn.be/stops/408357", "https://data.delijn.be/stops/408383"], ["https://data.delijn.be/stops/101995", "https://data.delijn.be/stops/104470"], ["https://data.delijn.be/stops/102580", "https://data.delijn.be/stops/108788"], ["https://data.delijn.be/stops/506248", "https://data.delijn.be/stops/506634"], ["https://data.delijn.be/stops/101526", "https://data.delijn.be/stops/101951"], ["https://data.delijn.be/stops/500007", "https://data.delijn.be/stops/504850"], ["https://data.delijn.be/stops/107596", "https://data.delijn.be/stops/107662"], ["https://data.delijn.be/stops/300994", "https://data.delijn.be/stops/308356"], ["https://data.delijn.be/stops/108360", "https://data.delijn.be/stops/109010"], ["https://data.delijn.be/stops/307811", "https://data.delijn.be/stops/307812"], ["https://data.delijn.be/stops/402190", "https://data.delijn.be/stops/402191"], ["https://data.delijn.be/stops/505356", "https://data.delijn.be/stops/507704"], ["https://data.delijn.be/stops/105466", "https://data.delijn.be/stops/105467"], ["https://data.delijn.be/stops/104762", "https://data.delijn.be/stops/108896"], ["https://data.delijn.be/stops/200007", "https://data.delijn.be/stops/200416"], ["https://data.delijn.be/stops/400877", "https://data.delijn.be/stops/403058"], ["https://data.delijn.be/stops/501491", "https://data.delijn.be/stops/506491"], ["https://data.delijn.be/stops/400400", "https://data.delijn.be/stops/400639"], ["https://data.delijn.be/stops/108735", "https://data.delijn.be/stops/108775"], ["https://data.delijn.be/stops/300919", "https://data.delijn.be/stops/300941"], ["https://data.delijn.be/stops/507948", "https://data.delijn.be/stops/507955"], ["https://data.delijn.be/stops/300872", "https://data.delijn.be/stops/302193"], ["https://data.delijn.be/stops/501055", "https://data.delijn.be/stops/501673"], ["https://data.delijn.be/stops/301754", "https://data.delijn.be/stops/304572"], ["https://data.delijn.be/stops/106150", "https://data.delijn.be/stops/106440"], ["https://data.delijn.be/stops/408078", "https://data.delijn.be/stops/305688"], ["https://data.delijn.be/stops/302176", "https://data.delijn.be/stops/302209"], ["https://data.delijn.be/stops/304466", "https://data.delijn.be/stops/304525"], ["https://data.delijn.be/stops/505213", "https://data.delijn.be/stops/509599"], ["https://data.delijn.be/stops/400576", "https://data.delijn.be/stops/410034"], ["https://data.delijn.be/stops/505712", "https://data.delijn.be/stops/506055"], ["https://data.delijn.be/stops/101427", "https://data.delijn.be/stops/107299"], ["https://data.delijn.be/stops/202965", "https://data.delijn.be/stops/202966"], ["https://data.delijn.be/stops/105593", "https://data.delijn.be/stops/105597"], ["https://data.delijn.be/stops/405478", "https://data.delijn.be/stops/409312"], ["https://data.delijn.be/stops/503060", "https://data.delijn.be/stops/508060"], ["https://data.delijn.be/stops/510028", "https://data.delijn.be/stops/510029"], ["https://data.delijn.be/stops/501438", "https://data.delijn.be/stops/501439"], ["https://data.delijn.be/stops/109816", "https://data.delijn.be/stops/109817"], ["https://data.delijn.be/stops/102880", "https://data.delijn.be/stops/104680"], ["https://data.delijn.be/stops/103723", "https://data.delijn.be/stops/108379"], ["https://data.delijn.be/stops/200093", "https://data.delijn.be/stops/201481"], ["https://data.delijn.be/stops/501655", "https://data.delijn.be/stops/506157"], ["https://data.delijn.be/stops/402120", "https://data.delijn.be/stops/402256"], ["https://data.delijn.be/stops/204233", "https://data.delijn.be/stops/205206"], ["https://data.delijn.be/stops/302151", "https://data.delijn.be/stops/303868"], ["https://data.delijn.be/stops/504992", "https://data.delijn.be/stops/504995"], ["https://data.delijn.be/stops/102697", "https://data.delijn.be/stops/102698"], ["https://data.delijn.be/stops/202424", "https://data.delijn.be/stops/203424"], ["https://data.delijn.be/stops/203852", "https://data.delijn.be/stops/203853"], ["https://data.delijn.be/stops/501488", "https://data.delijn.be/stops/506043"], ["https://data.delijn.be/stops/300203", "https://data.delijn.be/stops/300206"], ["https://data.delijn.be/stops/305497", "https://data.delijn.be/stops/307821"], ["https://data.delijn.be/stops/504845", "https://data.delijn.be/stops/505443"], ["https://data.delijn.be/stops/406074", "https://data.delijn.be/stops/406075"], ["https://data.delijn.be/stops/408230", "https://data.delijn.be/stops/408421"], ["https://data.delijn.be/stops/209472", "https://data.delijn.be/stops/209498"], ["https://data.delijn.be/stops/406220", "https://data.delijn.be/stops/406221"], ["https://data.delijn.be/stops/301728", "https://data.delijn.be/stops/301736"], ["https://data.delijn.be/stops/106424", "https://data.delijn.be/stops/106556"], ["https://data.delijn.be/stops/407483", "https://data.delijn.be/stops/407540"], ["https://data.delijn.be/stops/300778", "https://data.delijn.be/stops/304569"], ["https://data.delijn.be/stops/104310", "https://data.delijn.be/stops/104321"], ["https://data.delijn.be/stops/502361", "https://data.delijn.be/stops/507332"], ["https://data.delijn.be/stops/106235", "https://data.delijn.be/stops/106251"], ["https://data.delijn.be/stops/201945", "https://data.delijn.be/stops/202456"], ["https://data.delijn.be/stops/400499", "https://data.delijn.be/stops/407401"], ["https://data.delijn.be/stops/400128", "https://data.delijn.be/stops/403310"], ["https://data.delijn.be/stops/306844", "https://data.delijn.be/stops/307947"], ["https://data.delijn.be/stops/400588", "https://data.delijn.be/stops/400611"], ["https://data.delijn.be/stops/102203", "https://data.delijn.be/stops/105638"], ["https://data.delijn.be/stops/405271", "https://data.delijn.be/stops/405273"], ["https://data.delijn.be/stops/104558", "https://data.delijn.be/stops/104560"], ["https://data.delijn.be/stops/308605", "https://data.delijn.be/stops/308631"], ["https://data.delijn.be/stops/407680", "https://data.delijn.be/stops/408603"], ["https://data.delijn.be/stops/200259", "https://data.delijn.be/stops/201216"], ["https://data.delijn.be/stops/104010", "https://data.delijn.be/stops/104942"], ["https://data.delijn.be/stops/106133", "https://data.delijn.be/stops/109624"], ["https://data.delijn.be/stops/404952", "https://data.delijn.be/stops/404953"], ["https://data.delijn.be/stops/506428", "https://data.delijn.be/stops/506733"], ["https://data.delijn.be/stops/406880", "https://data.delijn.be/stops/409769"], ["https://data.delijn.be/stops/406739", "https://data.delijn.be/stops/407407"], ["https://data.delijn.be/stops/504333", "https://data.delijn.be/stops/509332"], ["https://data.delijn.be/stops/101302", "https://data.delijn.be/stops/106478"], ["https://data.delijn.be/stops/304439", "https://data.delijn.be/stops/307089"], ["https://data.delijn.be/stops/101908", "https://data.delijn.be/stops/101909"], ["https://data.delijn.be/stops/308511", "https://data.delijn.be/stops/308691"], ["https://data.delijn.be/stops/301474", "https://data.delijn.be/stops/308074"], ["https://data.delijn.be/stops/407033", "https://data.delijn.be/stops/407037"], ["https://data.delijn.be/stops/502101", "https://data.delijn.be/stops/502120"], ["https://data.delijn.be/stops/308468", "https://data.delijn.be/stops/308469"], ["https://data.delijn.be/stops/401838", "https://data.delijn.be/stops/406047"], ["https://data.delijn.be/stops/103144", "https://data.delijn.be/stops/109520"], ["https://data.delijn.be/stops/200606", "https://data.delijn.be/stops/201603"], ["https://data.delijn.be/stops/408886", "https://data.delijn.be/stops/408887"], ["https://data.delijn.be/stops/305205", "https://data.delijn.be/stops/307101"], ["https://data.delijn.be/stops/505143", "https://data.delijn.be/stops/505407"], ["https://data.delijn.be/stops/504589", "https://data.delijn.be/stops/505995"], ["https://data.delijn.be/stops/400688", "https://data.delijn.be/stops/404363"], ["https://data.delijn.be/stops/303362", "https://data.delijn.be/stops/303378"], ["https://data.delijn.be/stops/208629", "https://data.delijn.be/stops/209630"], ["https://data.delijn.be/stops/200477", "https://data.delijn.be/stops/201053"], ["https://data.delijn.be/stops/101412", "https://data.delijn.be/stops/101432"], ["https://data.delijn.be/stops/504056", "https://data.delijn.be/stops/509149"], ["https://data.delijn.be/stops/501016", "https://data.delijn.be/stops/505781"], ["https://data.delijn.be/stops/206106", "https://data.delijn.be/stops/206108"], ["https://data.delijn.be/stops/400800", "https://data.delijn.be/stops/409539"], ["https://data.delijn.be/stops/400825", "https://data.delijn.be/stops/400833"], ["https://data.delijn.be/stops/102466", "https://data.delijn.be/stops/102467"], ["https://data.delijn.be/stops/200367", "https://data.delijn.be/stops/201367"], ["https://data.delijn.be/stops/300547", "https://data.delijn.be/stops/300628"], ["https://data.delijn.be/stops/304412", "https://data.delijn.be/stops/307360"], ["https://data.delijn.be/stops/304272", "https://data.delijn.be/stops/304280"], ["https://data.delijn.be/stops/200848", "https://data.delijn.be/stops/211068"], ["https://data.delijn.be/stops/405717", "https://data.delijn.be/stops/410140"], ["https://data.delijn.be/stops/104511", "https://data.delijn.be/stops/104512"], ["https://data.delijn.be/stops/503407", "https://data.delijn.be/stops/508351"], ["https://data.delijn.be/stops/203942", "https://data.delijn.be/stops/211054"], ["https://data.delijn.be/stops/305191", "https://data.delijn.be/stops/305192"], ["https://data.delijn.be/stops/304369", "https://data.delijn.be/stops/304370"], ["https://data.delijn.be/stops/506780", "https://data.delijn.be/stops/506782"], ["https://data.delijn.be/stops/106725", "https://data.delijn.be/stops/106727"], ["https://data.delijn.be/stops/407195", "https://data.delijn.be/stops/407372"], ["https://data.delijn.be/stops/502565", "https://data.delijn.be/stops/507540"], ["https://data.delijn.be/stops/503621", "https://data.delijn.be/stops/503658"], ["https://data.delijn.be/stops/408510", "https://data.delijn.be/stops/408775"], ["https://data.delijn.be/stops/208742", "https://data.delijn.be/stops/505275"], ["https://data.delijn.be/stops/503638", "https://data.delijn.be/stops/505935"], ["https://data.delijn.be/stops/404845", "https://data.delijn.be/stops/407766"], ["https://data.delijn.be/stops/400759", "https://data.delijn.be/stops/409583"], ["https://data.delijn.be/stops/102822", "https://data.delijn.be/stops/103850"], ["https://data.delijn.be/stops/307860", "https://data.delijn.be/stops/307863"], ["https://data.delijn.be/stops/106808", "https://data.delijn.be/stops/106811"], ["https://data.delijn.be/stops/205698", "https://data.delijn.be/stops/214009"], ["https://data.delijn.be/stops/503505", "https://data.delijn.be/stops/509824"], ["https://data.delijn.be/stops/105677", "https://data.delijn.be/stops/106064"], ["https://data.delijn.be/stops/205516", "https://data.delijn.be/stops/205517"], ["https://data.delijn.be/stops/402191", "https://data.delijn.be/stops/402263"], ["https://data.delijn.be/stops/106247", "https://data.delijn.be/stops/106249"], ["https://data.delijn.be/stops/501374", "https://data.delijn.be/stops/506206"], ["https://data.delijn.be/stops/101850", "https://data.delijn.be/stops/102842"], ["https://data.delijn.be/stops/304059", "https://data.delijn.be/stops/304084"], ["https://data.delijn.be/stops/402451", "https://data.delijn.be/stops/406884"], ["https://data.delijn.be/stops/101227", "https://data.delijn.be/stops/101548"], ["https://data.delijn.be/stops/404898", "https://data.delijn.be/stops/404899"], ["https://data.delijn.be/stops/403512", "https://data.delijn.be/stops/410220"], ["https://data.delijn.be/stops/303872", "https://data.delijn.be/stops/304064"], ["https://data.delijn.be/stops/300281", "https://data.delijn.be/stops/300292"], ["https://data.delijn.be/stops/407188", "https://data.delijn.be/stops/407411"], ["https://data.delijn.be/stops/407398", "https://data.delijn.be/stops/407399"], ["https://data.delijn.be/stops/504014", "https://data.delijn.be/stops/504720"], ["https://data.delijn.be/stops/206624", "https://data.delijn.be/stops/206625"], ["https://data.delijn.be/stops/206153", "https://data.delijn.be/stops/207153"], ["https://data.delijn.be/stops/501074", "https://data.delijn.be/stops/506066"], ["https://data.delijn.be/stops/206150", "https://data.delijn.be/stops/207907"], ["https://data.delijn.be/stops/209216", "https://data.delijn.be/stops/209238"], ["https://data.delijn.be/stops/307625", "https://data.delijn.be/stops/308266"], ["https://data.delijn.be/stops/505828", "https://data.delijn.be/stops/509455"], ["https://data.delijn.be/stops/403360", "https://data.delijn.be/stops/406854"], ["https://data.delijn.be/stops/504592", "https://data.delijn.be/stops/504595"], ["https://data.delijn.be/stops/201705", "https://data.delijn.be/stops/202382"], ["https://data.delijn.be/stops/204156", "https://data.delijn.be/stops/205149"], ["https://data.delijn.be/stops/304446", "https://data.delijn.be/stops/304449"], ["https://data.delijn.be/stops/302522", "https://data.delijn.be/stops/308887"], ["https://data.delijn.be/stops/405994", "https://data.delijn.be/stops/405997"], ["https://data.delijn.be/stops/501149", "https://data.delijn.be/stops/505515"], ["https://data.delijn.be/stops/101915", "https://data.delijn.be/stops/108835"], ["https://data.delijn.be/stops/408165", "https://data.delijn.be/stops/409315"], ["https://data.delijn.be/stops/305112", "https://data.delijn.be/stops/305131"], ["https://data.delijn.be/stops/208355", "https://data.delijn.be/stops/208356"], ["https://data.delijn.be/stops/301406", "https://data.delijn.be/stops/304697"], ["https://data.delijn.be/stops/300638", "https://data.delijn.be/stops/300659"], ["https://data.delijn.be/stops/202853", "https://data.delijn.be/stops/210098"], ["https://data.delijn.be/stops/304297", "https://data.delijn.be/stops/304301"], ["https://data.delijn.be/stops/501083", "https://data.delijn.be/stops/506083"], ["https://data.delijn.be/stops/202685", "https://data.delijn.be/stops/203047"], ["https://data.delijn.be/stops/406674", "https://data.delijn.be/stops/406687"], ["https://data.delijn.be/stops/104952", "https://data.delijn.be/stops/109588"], ["https://data.delijn.be/stops/105581", "https://data.delijn.be/stops/105672"], ["https://data.delijn.be/stops/302825", "https://data.delijn.be/stops/302828"], ["https://data.delijn.be/stops/503689", "https://data.delijn.be/stops/509453"], ["https://data.delijn.be/stops/400254", "https://data.delijn.be/stops/404269"], ["https://data.delijn.be/stops/502310", "https://data.delijn.be/stops/502603"], ["https://data.delijn.be/stops/405519", "https://data.delijn.be/stops/407291"], ["https://data.delijn.be/stops/400508", "https://data.delijn.be/stops/400509"], ["https://data.delijn.be/stops/306899", "https://data.delijn.be/stops/306900"], ["https://data.delijn.be/stops/106032", "https://data.delijn.be/stops/106033"], ["https://data.delijn.be/stops/200103", "https://data.delijn.be/stops/200363"], ["https://data.delijn.be/stops/300360", "https://data.delijn.be/stops/303248"], ["https://data.delijn.be/stops/401208", "https://data.delijn.be/stops/401226"], ["https://data.delijn.be/stops/406196", "https://data.delijn.be/stops/406744"], ["https://data.delijn.be/stops/101666", "https://data.delijn.be/stops/106498"], ["https://data.delijn.be/stops/201273", "https://data.delijn.be/stops/202002"], ["https://data.delijn.be/stops/308138", "https://data.delijn.be/stops/308141"], ["https://data.delijn.be/stops/208442", "https://data.delijn.be/stops/208676"], ["https://data.delijn.be/stops/106858", "https://data.delijn.be/stops/106859"], ["https://data.delijn.be/stops/503122", "https://data.delijn.be/stops/508122"], ["https://data.delijn.be/stops/502465", "https://data.delijn.be/stops/507067"], ["https://data.delijn.be/stops/300001", "https://data.delijn.be/stops/301779"], ["https://data.delijn.be/stops/102506", "https://data.delijn.be/stops/400020"], ["https://data.delijn.be/stops/208313", "https://data.delijn.be/stops/209313"], ["https://data.delijn.be/stops/507943", "https://data.delijn.be/stops/507956"], ["https://data.delijn.be/stops/305496", "https://data.delijn.be/stops/306560"], ["https://data.delijn.be/stops/508637", "https://data.delijn.be/stops/508639"], ["https://data.delijn.be/stops/203558", "https://data.delijn.be/stops/203560"], ["https://data.delijn.be/stops/206117", "https://data.delijn.be/stops/207120"], ["https://data.delijn.be/stops/103001", "https://data.delijn.be/stops/105173"], ["https://data.delijn.be/stops/503790", "https://data.delijn.be/stops/508789"], ["https://data.delijn.be/stops/503653", "https://data.delijn.be/stops/508116"], ["https://data.delijn.be/stops/302932", "https://data.delijn.be/stops/303145"], ["https://data.delijn.be/stops/203043", "https://data.delijn.be/stops/203246"], ["https://data.delijn.be/stops/101473", "https://data.delijn.be/stops/109271"], ["https://data.delijn.be/stops/503815", "https://data.delijn.be/stops/509820"], ["https://data.delijn.be/stops/208291", "https://data.delijn.be/stops/208292"], ["https://data.delijn.be/stops/204791", "https://data.delijn.be/stops/205132"], ["https://data.delijn.be/stops/102607", "https://data.delijn.be/stops/102608"], ["https://data.delijn.be/stops/204782", "https://data.delijn.be/stops/205791"], ["https://data.delijn.be/stops/201636", "https://data.delijn.be/stops/210055"], ["https://data.delijn.be/stops/404150", "https://data.delijn.be/stops/404224"], ["https://data.delijn.be/stops/206226", "https://data.delijn.be/stops/207226"], ["https://data.delijn.be/stops/204979", "https://data.delijn.be/stops/208168"], ["https://data.delijn.be/stops/307225", "https://data.delijn.be/stops/307264"], ["https://data.delijn.be/stops/200296", "https://data.delijn.be/stops/210048"], ["https://data.delijn.be/stops/200062", "https://data.delijn.be/stops/200267"], ["https://data.delijn.be/stops/107323", "https://data.delijn.be/stops/108821"], ["https://data.delijn.be/stops/108150", "https://data.delijn.be/stops/108153"], ["https://data.delijn.be/stops/102734", "https://data.delijn.be/stops/107414"], ["https://data.delijn.be/stops/103961", "https://data.delijn.be/stops/107341"], ["https://data.delijn.be/stops/201870", "https://data.delijn.be/stops/202662"], ["https://data.delijn.be/stops/201173", "https://data.delijn.be/stops/201515"], ["https://data.delijn.be/stops/305628", "https://data.delijn.be/stops/305629"], ["https://data.delijn.be/stops/207693", "https://data.delijn.be/stops/207956"], ["https://data.delijn.be/stops/206787", "https://data.delijn.be/stops/208539"], ["https://data.delijn.be/stops/503187", "https://data.delijn.be/stops/503214"], ["https://data.delijn.be/stops/405911", "https://data.delijn.be/stops/409701"], ["https://data.delijn.be/stops/102812", "https://data.delijn.be/stops/104785"], ["https://data.delijn.be/stops/503467", "https://data.delijn.be/stops/508467"], ["https://data.delijn.be/stops/507052", "https://data.delijn.be/stops/507059"], ["https://data.delijn.be/stops/202945", "https://data.delijn.be/stops/216009"], ["https://data.delijn.be/stops/409359", "https://data.delijn.be/stops/409391"], ["https://data.delijn.be/stops/104038", "https://data.delijn.be/stops/107622"], ["https://data.delijn.be/stops/206651", "https://data.delijn.be/stops/207651"], ["https://data.delijn.be/stops/504250", "https://data.delijn.be/stops/509247"], ["https://data.delijn.be/stops/301825", "https://data.delijn.be/stops/301852"], ["https://data.delijn.be/stops/302916", "https://data.delijn.be/stops/304184"], ["https://data.delijn.be/stops/404904", "https://data.delijn.be/stops/404966"], ["https://data.delijn.be/stops/308209", "https://data.delijn.be/stops/308216"], ["https://data.delijn.be/stops/301406", "https://data.delijn.be/stops/303613"], ["https://data.delijn.be/stops/304897", "https://data.delijn.be/stops/307828"], ["https://data.delijn.be/stops/302663", "https://data.delijn.be/stops/302699"], ["https://data.delijn.be/stops/101487", "https://data.delijn.be/stops/109705"], ["https://data.delijn.be/stops/403836", "https://data.delijn.be/stops/410114"], ["https://data.delijn.be/stops/101250", "https://data.delijn.be/stops/103940"], ["https://data.delijn.be/stops/406152", "https://data.delijn.be/stops/406209"], ["https://data.delijn.be/stops/106277", "https://data.delijn.be/stops/109633"], ["https://data.delijn.be/stops/208008", "https://data.delijn.be/stops/208009"], ["https://data.delijn.be/stops/102844", "https://data.delijn.be/stops/104003"], ["https://data.delijn.be/stops/504174", "https://data.delijn.be/stops/505253"], ["https://data.delijn.be/stops/200242", "https://data.delijn.be/stops/201244"], ["https://data.delijn.be/stops/200152", "https://data.delijn.be/stops/202358"], ["https://data.delijn.be/stops/206875", "https://data.delijn.be/stops/207044"], ["https://data.delijn.be/stops/206013", "https://data.delijn.be/stops/206016"], ["https://data.delijn.be/stops/404973", "https://data.delijn.be/stops/404977"], ["https://data.delijn.be/stops/303376", "https://data.delijn.be/stops/308871"], ["https://data.delijn.be/stops/405406", "https://data.delijn.be/stops/405407"], ["https://data.delijn.be/stops/200707", "https://data.delijn.be/stops/200723"], ["https://data.delijn.be/stops/300547", "https://data.delijn.be/stops/302608"], ["https://data.delijn.be/stops/200767", "https://data.delijn.be/stops/208375"], ["https://data.delijn.be/stops/502697", "https://data.delijn.be/stops/507646"], ["https://data.delijn.be/stops/302973", "https://data.delijn.be/stops/303450"], ["https://data.delijn.be/stops/201953", "https://data.delijn.be/stops/203507"], ["https://data.delijn.be/stops/407901", "https://data.delijn.be/stops/302837"], ["https://data.delijn.be/stops/505768", "https://data.delijn.be/stops/507025"], ["https://data.delijn.be/stops/204246", "https://data.delijn.be/stops/205223"], ["https://data.delijn.be/stops/206946", "https://data.delijn.be/stops/208071"], ["https://data.delijn.be/stops/407020", "https://data.delijn.be/stops/407021"], ["https://data.delijn.be/stops/304523", "https://data.delijn.be/stops/304524"], ["https://data.delijn.be/stops/204985", "https://data.delijn.be/stops/209349"], ["https://data.delijn.be/stops/503512", "https://data.delijn.be/stops/508506"], ["https://data.delijn.be/stops/301180", "https://data.delijn.be/stops/301258"], ["https://data.delijn.be/stops/103751", "https://data.delijn.be/stops/105085"], ["https://data.delijn.be/stops/408991", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/200511", "https://data.delijn.be/stops/201513"], ["https://data.delijn.be/stops/405782", "https://data.delijn.be/stops/406879"], ["https://data.delijn.be/stops/303755", "https://data.delijn.be/stops/303766"], ["https://data.delijn.be/stops/504117", "https://data.delijn.be/stops/504394"], ["https://data.delijn.be/stops/508642", "https://data.delijn.be/stops/509876"], ["https://data.delijn.be/stops/301781", "https://data.delijn.be/stops/301782"], ["https://data.delijn.be/stops/108537", "https://data.delijn.be/stops/108539"], ["https://data.delijn.be/stops/303325", "https://data.delijn.be/stops/306337"], ["https://data.delijn.be/stops/306815", "https://data.delijn.be/stops/308540"], ["https://data.delijn.be/stops/209682", "https://data.delijn.be/stops/209685"], ["https://data.delijn.be/stops/506244", "https://data.delijn.be/stops/506423"], ["https://data.delijn.be/stops/202641", "https://data.delijn.be/stops/203641"], ["https://data.delijn.be/stops/506597", "https://data.delijn.be/stops/506623"], ["https://data.delijn.be/stops/204165", "https://data.delijn.be/stops/204580"], ["https://data.delijn.be/stops/109052", "https://data.delijn.be/stops/109056"], ["https://data.delijn.be/stops/107711", "https://data.delijn.be/stops/109045"], ["https://data.delijn.be/stops/206277", "https://data.delijn.be/stops/206823"], ["https://data.delijn.be/stops/508405", "https://data.delijn.be/stops/509770"], ["https://data.delijn.be/stops/503378", "https://data.delijn.be/stops/504765"], ["https://data.delijn.be/stops/302917", "https://data.delijn.be/stops/307072"], ["https://data.delijn.be/stops/103056", "https://data.delijn.be/stops/107177"], ["https://data.delijn.be/stops/408303", "https://data.delijn.be/stops/408391"], ["https://data.delijn.be/stops/300452", "https://data.delijn.be/stops/308758"], ["https://data.delijn.be/stops/103977", "https://data.delijn.be/stops/109005"], ["https://data.delijn.be/stops/201159", "https://data.delijn.be/stops/205923"], ["https://data.delijn.be/stops/303275", "https://data.delijn.be/stops/303277"], ["https://data.delijn.be/stops/104639", "https://data.delijn.be/stops/107974"], ["https://data.delijn.be/stops/200050", "https://data.delijn.be/stops/203776"], ["https://data.delijn.be/stops/202317", "https://data.delijn.be/stops/208887"], ["https://data.delijn.be/stops/304345", "https://data.delijn.be/stops/304346"], ["https://data.delijn.be/stops/405352", "https://data.delijn.be/stops/405353"], ["https://data.delijn.be/stops/201295", "https://data.delijn.be/stops/209952"], ["https://data.delijn.be/stops/401642", "https://data.delijn.be/stops/408650"], ["https://data.delijn.be/stops/504083", "https://data.delijn.be/stops/505803"], ["https://data.delijn.be/stops/102669", "https://data.delijn.be/stops/105814"], ["https://data.delijn.be/stops/505535", "https://data.delijn.be/stops/509584"], ["https://data.delijn.be/stops/103004", "https://data.delijn.be/stops/104937"], ["https://data.delijn.be/stops/201811", "https://data.delijn.be/stops/201834"], ["https://data.delijn.be/stops/502267", "https://data.delijn.be/stops/502688"], ["https://data.delijn.be/stops/505519", "https://data.delijn.be/stops/505619"], ["https://data.delijn.be/stops/108562", "https://data.delijn.be/stops/108564"], ["https://data.delijn.be/stops/505152", "https://data.delijn.be/stops/506100"], ["https://data.delijn.be/stops/105754", "https://data.delijn.be/stops/109816"], ["https://data.delijn.be/stops/505253", "https://data.delijn.be/stops/505920"], ["https://data.delijn.be/stops/509698", "https://data.delijn.be/stops/509702"], ["https://data.delijn.be/stops/204022", "https://data.delijn.be/stops/206281"], ["https://data.delijn.be/stops/200823", "https://data.delijn.be/stops/200866"], ["https://data.delijn.be/stops/204348", "https://data.delijn.be/stops/205209"], ["https://data.delijn.be/stops/109501", "https://data.delijn.be/stops/109502"], ["https://data.delijn.be/stops/105679", "https://data.delijn.be/stops/105681"], ["https://data.delijn.be/stops/201857", "https://data.delijn.be/stops/201859"], ["https://data.delijn.be/stops/107625", "https://data.delijn.be/stops/108935"], ["https://data.delijn.be/stops/200141", "https://data.delijn.be/stops/201900"], ["https://data.delijn.be/stops/503459", "https://data.delijn.be/stops/504803"], ["https://data.delijn.be/stops/101586", "https://data.delijn.be/stops/107310"], ["https://data.delijn.be/stops/205637", "https://data.delijn.be/stops/205638"], ["https://data.delijn.be/stops/204982", "https://data.delijn.be/stops/209167"], ["https://data.delijn.be/stops/400244", "https://data.delijn.be/stops/400923"], ["https://data.delijn.be/stops/405038", "https://data.delijn.be/stops/405057"], ["https://data.delijn.be/stops/503161", "https://data.delijn.be/stops/505529"], ["https://data.delijn.be/stops/102953", "https://data.delijn.be/stops/102954"], ["https://data.delijn.be/stops/507500", "https://data.delijn.be/stops/507511"], ["https://data.delijn.be/stops/402566", "https://data.delijn.be/stops/407804"], ["https://data.delijn.be/stops/206744", "https://data.delijn.be/stops/206745"], ["https://data.delijn.be/stops/400444", "https://data.delijn.be/stops/401201"], ["https://data.delijn.be/stops/405774", "https://data.delijn.be/stops/409735"], ["https://data.delijn.be/stops/102967", "https://data.delijn.be/stops/106237"], ["https://data.delijn.be/stops/204207", "https://data.delijn.be/stops/205094"], ["https://data.delijn.be/stops/200092", "https://data.delijn.be/stops/211059"], ["https://data.delijn.be/stops/200251", "https://data.delijn.be/stops/201575"], ["https://data.delijn.be/stops/501203", "https://data.delijn.be/stops/506238"], ["https://data.delijn.be/stops/305053", "https://data.delijn.be/stops/305056"], ["https://data.delijn.be/stops/301306", "https://data.delijn.be/stops/301307"], ["https://data.delijn.be/stops/400051", "https://data.delijn.be/stops/400120"], ["https://data.delijn.be/stops/502291", "https://data.delijn.be/stops/505730"], ["https://data.delijn.be/stops/203396", "https://data.delijn.be/stops/210007"], ["https://data.delijn.be/stops/304442", "https://data.delijn.be/stops/304444"], ["https://data.delijn.be/stops/202060", "https://data.delijn.be/stops/208919"], ["https://data.delijn.be/stops/104022", "https://data.delijn.be/stops/109887"], ["https://data.delijn.be/stops/207721", "https://data.delijn.be/stops/207725"], ["https://data.delijn.be/stops/501053", "https://data.delijn.be/stops/501057"], ["https://data.delijn.be/stops/202104", "https://data.delijn.be/stops/202262"], ["https://data.delijn.be/stops/108738", "https://data.delijn.be/stops/108739"], ["https://data.delijn.be/stops/205063", "https://data.delijn.be/stops/205324"], ["https://data.delijn.be/stops/207696", "https://data.delijn.be/stops/207743"], ["https://data.delijn.be/stops/205129", "https://data.delijn.be/stops/205132"], ["https://data.delijn.be/stops/508568", "https://data.delijn.be/stops/508811"], ["https://data.delijn.be/stops/103221", "https://data.delijn.be/stops/104574"], ["https://data.delijn.be/stops/401306", "https://data.delijn.be/stops/401368"], ["https://data.delijn.be/stops/304886", "https://data.delijn.be/stops/306161"], ["https://data.delijn.be/stops/103944", "https://data.delijn.be/stops/104739"], ["https://data.delijn.be/stops/103972", "https://data.delijn.be/stops/106155"], ["https://data.delijn.be/stops/502302", "https://data.delijn.be/stops/502305"], ["https://data.delijn.be/stops/109978", "https://data.delijn.be/stops/109979"], ["https://data.delijn.be/stops/201972", "https://data.delijn.be/stops/208705"], ["https://data.delijn.be/stops/102653", "https://data.delijn.be/stops/102654"], ["https://data.delijn.be/stops/103219", "https://data.delijn.be/stops/108179"], ["https://data.delijn.be/stops/104077", "https://data.delijn.be/stops/106069"], ["https://data.delijn.be/stops/106399", "https://data.delijn.be/stops/106574"], ["https://data.delijn.be/stops/503657", "https://data.delijn.be/stops/509153"], ["https://data.delijn.be/stops/209667", "https://data.delijn.be/stops/209672"], ["https://data.delijn.be/stops/406194", "https://data.delijn.be/stops/406221"], ["https://data.delijn.be/stops/101452", "https://data.delijn.be/stops/107054"], ["https://data.delijn.be/stops/200677", "https://data.delijn.be/stops/201808"], ["https://data.delijn.be/stops/400706", "https://data.delijn.be/stops/400709"], ["https://data.delijn.be/stops/300343", "https://data.delijn.be/stops/300346"], ["https://data.delijn.be/stops/302737", "https://data.delijn.be/stops/302787"], ["https://data.delijn.be/stops/105137", "https://data.delijn.be/stops/108501"], ["https://data.delijn.be/stops/307535", "https://data.delijn.be/stops/307536"], ["https://data.delijn.be/stops/502200", "https://data.delijn.be/stops/509312"], ["https://data.delijn.be/stops/303577", "https://data.delijn.be/stops/304929"], ["https://data.delijn.be/stops/405699", "https://data.delijn.be/stops/405926"], ["https://data.delijn.be/stops/503473", "https://data.delijn.be/stops/508462"], ["https://data.delijn.be/stops/407469", "https://data.delijn.be/stops/407505"], ["https://data.delijn.be/stops/301038", "https://data.delijn.be/stops/301039"], ["https://data.delijn.be/stops/101432", "https://data.delijn.be/stops/101434"], ["https://data.delijn.be/stops/207340", "https://data.delijn.be/stops/207342"], ["https://data.delijn.be/stops/200115", "https://data.delijn.be/stops/200887"], ["https://data.delijn.be/stops/404939", "https://data.delijn.be/stops/404955"], ["https://data.delijn.be/stops/300666", "https://data.delijn.be/stops/300678"], ["https://data.delijn.be/stops/202439", "https://data.delijn.be/stops/203482"], ["https://data.delijn.be/stops/102166", "https://data.delijn.be/stops/104394"], ["https://data.delijn.be/stops/206412", "https://data.delijn.be/stops/207413"], ["https://data.delijn.be/stops/407426", "https://data.delijn.be/stops/407427"], ["https://data.delijn.be/stops/306185", "https://data.delijn.be/stops/306186"], ["https://data.delijn.be/stops/108336", "https://data.delijn.be/stops/108339"], ["https://data.delijn.be/stops/302567", "https://data.delijn.be/stops/302590"], ["https://data.delijn.be/stops/501448", "https://data.delijn.be/stops/501451"], ["https://data.delijn.be/stops/501205", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/303094", "https://data.delijn.be/stops/303100"], ["https://data.delijn.be/stops/107591", "https://data.delijn.be/stops/107592"], ["https://data.delijn.be/stops/201175", "https://data.delijn.be/stops/211112"], ["https://data.delijn.be/stops/503612", "https://data.delijn.be/stops/508612"], ["https://data.delijn.be/stops/400438", "https://data.delijn.be/stops/406771"], ["https://data.delijn.be/stops/200628", "https://data.delijn.be/stops/219003"], ["https://data.delijn.be/stops/305544", "https://data.delijn.be/stops/305545"], ["https://data.delijn.be/stops/406664", "https://data.delijn.be/stops/407179"], ["https://data.delijn.be/stops/305774", "https://data.delijn.be/stops/306879"], ["https://data.delijn.be/stops/206836", "https://data.delijn.be/stops/206928"], ["https://data.delijn.be/stops/305827", "https://data.delijn.be/stops/305955"], ["https://data.delijn.be/stops/206733", "https://data.delijn.be/stops/306681"], ["https://data.delijn.be/stops/403109", "https://data.delijn.be/stops/403235"], ["https://data.delijn.be/stops/204426", "https://data.delijn.be/stops/204441"], ["https://data.delijn.be/stops/200939", "https://data.delijn.be/stops/202685"], ["https://data.delijn.be/stops/402079", "https://data.delijn.be/stops/410149"], ["https://data.delijn.be/stops/505199", "https://data.delijn.be/stops/505425"], ["https://data.delijn.be/stops/502511", "https://data.delijn.be/stops/502804"], ["https://data.delijn.be/stops/204650", "https://data.delijn.be/stops/205695"], ["https://data.delijn.be/stops/303856", "https://data.delijn.be/stops/308978"], ["https://data.delijn.be/stops/302741", "https://data.delijn.be/stops/306166"], ["https://data.delijn.be/stops/206897", "https://data.delijn.be/stops/207898"], ["https://data.delijn.be/stops/501517", "https://data.delijn.be/stops/509898"], ["https://data.delijn.be/stops/505271", "https://data.delijn.be/stops/505276"], ["https://data.delijn.be/stops/501385", "https://data.delijn.be/stops/506479"], ["https://data.delijn.be/stops/407772", "https://data.delijn.be/stops/408840"], ["https://data.delijn.be/stops/401653", "https://data.delijn.be/stops/305950"], ["https://data.delijn.be/stops/101477", "https://data.delijn.be/stops/108738"], ["https://data.delijn.be/stops/300715", "https://data.delijn.be/stops/300730"], ["https://data.delijn.be/stops/302721", "https://data.delijn.be/stops/302736"], ["https://data.delijn.be/stops/207464", "https://data.delijn.be/stops/207465"], ["https://data.delijn.be/stops/200770", "https://data.delijn.be/stops/209309"], ["https://data.delijn.be/stops/208222", "https://data.delijn.be/stops/209222"], ["https://data.delijn.be/stops/504872", "https://data.delijn.be/stops/509872"], ["https://data.delijn.be/stops/102045", "https://data.delijn.be/stops/104535"], ["https://data.delijn.be/stops/406712", "https://data.delijn.be/stops/408653"], ["https://data.delijn.be/stops/503216", "https://data.delijn.be/stops/508193"], ["https://data.delijn.be/stops/107148", "https://data.delijn.be/stops/108933"], ["https://data.delijn.be/stops/109205", "https://data.delijn.be/stops/109209"], ["https://data.delijn.be/stops/401760", "https://data.delijn.be/stops/406319"], ["https://data.delijn.be/stops/409071", "https://data.delijn.be/stops/409210"], ["https://data.delijn.be/stops/204374", "https://data.delijn.be/stops/205374"], ["https://data.delijn.be/stops/200722", "https://data.delijn.be/stops/202410"], ["https://data.delijn.be/stops/306385", "https://data.delijn.be/stops/307154"], ["https://data.delijn.be/stops/400852", "https://data.delijn.be/stops/409621"], ["https://data.delijn.be/stops/208383", "https://data.delijn.be/stops/209620"], ["https://data.delijn.be/stops/302859", "https://data.delijn.be/stops/302916"], ["https://data.delijn.be/stops/304909", "https://data.delijn.be/stops/307331"], ["https://data.delijn.be/stops/202076", "https://data.delijn.be/stops/203076"], ["https://data.delijn.be/stops/107559", "https://data.delijn.be/stops/109438"], ["https://data.delijn.be/stops/304865", "https://data.delijn.be/stops/308529"], ["https://data.delijn.be/stops/505331", "https://data.delijn.be/stops/505597"], ["https://data.delijn.be/stops/507087", "https://data.delijn.be/stops/507729"], ["https://data.delijn.be/stops/407499", "https://data.delijn.be/stops/410253"], ["https://data.delijn.be/stops/504621", "https://data.delijn.be/stops/509625"], ["https://data.delijn.be/stops/301499", "https://data.delijn.be/stops/307956"], ["https://data.delijn.be/stops/504192", "https://data.delijn.be/stops/509177"], ["https://data.delijn.be/stops/503650", "https://data.delijn.be/stops/508351"], ["https://data.delijn.be/stops/105380", "https://data.delijn.be/stops/108485"], ["https://data.delijn.be/stops/201154", "https://data.delijn.be/stops/201453"], ["https://data.delijn.be/stops/207857", "https://data.delijn.be/stops/209616"], ["https://data.delijn.be/stops/202170", "https://data.delijn.be/stops/203170"], ["https://data.delijn.be/stops/404653", "https://data.delijn.be/stops/404674"], ["https://data.delijn.be/stops/405204", "https://data.delijn.be/stops/405206"], ["https://data.delijn.be/stops/105538", "https://data.delijn.be/stops/106250"], ["https://data.delijn.be/stops/405763", "https://data.delijn.be/stops/406292"], ["https://data.delijn.be/stops/206673", "https://data.delijn.be/stops/209008"], ["https://data.delijn.be/stops/200003", "https://data.delijn.be/stops/203014"], ["https://data.delijn.be/stops/300072", "https://data.delijn.be/stops/300073"], ["https://data.delijn.be/stops/402173", "https://data.delijn.be/stops/402483"], ["https://data.delijn.be/stops/502535", "https://data.delijn.be/stops/507215"], ["https://data.delijn.be/stops/505923", "https://data.delijn.be/stops/509982"], ["https://data.delijn.be/stops/307384", "https://data.delijn.be/stops/307446"], ["https://data.delijn.be/stops/504126", "https://data.delijn.be/stops/509636"], ["https://data.delijn.be/stops/305481", "https://data.delijn.be/stops/305858"], ["https://data.delijn.be/stops/405944", "https://data.delijn.be/stops/405945"], ["https://data.delijn.be/stops/502493", "https://data.delijn.be/stops/505625"], ["https://data.delijn.be/stops/204298", "https://data.delijn.be/stops/205298"], ["https://data.delijn.be/stops/208854", "https://data.delijn.be/stops/208855"], ["https://data.delijn.be/stops/404762", "https://data.delijn.be/stops/404810"], ["https://data.delijn.be/stops/200433", "https://data.delijn.be/stops/201432"], ["https://data.delijn.be/stops/301326", "https://data.delijn.be/stops/301327"], ["https://data.delijn.be/stops/101276", "https://data.delijn.be/stops/205264"], ["https://data.delijn.be/stops/305821", "https://data.delijn.be/stops/308817"], ["https://data.delijn.be/stops/302199", "https://data.delijn.be/stops/308110"], ["https://data.delijn.be/stops/501635", "https://data.delijn.be/stops/506773"], ["https://data.delijn.be/stops/102090", "https://data.delijn.be/stops/103985"], ["https://data.delijn.be/stops/402721", "https://data.delijn.be/stops/410057"], ["https://data.delijn.be/stops/206420", "https://data.delijn.be/stops/306732"], ["https://data.delijn.be/stops/200272", "https://data.delijn.be/stops/201273"], ["https://data.delijn.be/stops/307305", "https://data.delijn.be/stops/307314"], ["https://data.delijn.be/stops/507745", "https://data.delijn.be/stops/590413"], ["https://data.delijn.be/stops/304668", "https://data.delijn.be/stops/304671"], ["https://data.delijn.be/stops/200603", "https://data.delijn.be/stops/200605"], ["https://data.delijn.be/stops/101187", "https://data.delijn.be/stops/106773"], ["https://data.delijn.be/stops/103323", "https://data.delijn.be/stops/103388"], ["https://data.delijn.be/stops/202164", "https://data.delijn.be/stops/203164"], ["https://data.delijn.be/stops/101160", "https://data.delijn.be/stops/101985"], ["https://data.delijn.be/stops/108930", "https://data.delijn.be/stops/108935"], ["https://data.delijn.be/stops/402002", "https://data.delijn.be/stops/406142"], ["https://data.delijn.be/stops/400772", "https://data.delijn.be/stops/409634"], ["https://data.delijn.be/stops/102998", "https://data.delijn.be/stops/107417"], ["https://data.delijn.be/stops/303248", "https://data.delijn.be/stops/303660"], ["https://data.delijn.be/stops/401389", "https://data.delijn.be/stops/401557"], ["https://data.delijn.be/stops/102717", "https://data.delijn.be/stops/102982"], ["https://data.delijn.be/stops/502253", "https://data.delijn.be/stops/507254"], ["https://data.delijn.be/stops/200116", "https://data.delijn.be/stops/200874"], ["https://data.delijn.be/stops/508024", "https://data.delijn.be/stops/508030"], ["https://data.delijn.be/stops/400678", "https://data.delijn.be/stops/405301"], ["https://data.delijn.be/stops/302400", "https://data.delijn.be/stops/302402"], ["https://data.delijn.be/stops/400768", "https://data.delijn.be/stops/405266"], ["https://data.delijn.be/stops/301725", "https://data.delijn.be/stops/308431"], ["https://data.delijn.be/stops/504438", "https://data.delijn.be/stops/509424"], ["https://data.delijn.be/stops/105992", "https://data.delijn.be/stops/105998"], ["https://data.delijn.be/stops/406045", "https://data.delijn.be/stops/406064"], ["https://data.delijn.be/stops/300251", "https://data.delijn.be/stops/300393"], ["https://data.delijn.be/stops/305500", "https://data.delijn.be/stops/307826"], ["https://data.delijn.be/stops/305025", "https://data.delijn.be/stops/305040"], ["https://data.delijn.be/stops/407583", "https://data.delijn.be/stops/407586"], ["https://data.delijn.be/stops/308214", "https://data.delijn.be/stops/308234"], ["https://data.delijn.be/stops/501391", "https://data.delijn.be/stops/501699"], ["https://data.delijn.be/stops/303459", "https://data.delijn.be/stops/303460"], ["https://data.delijn.be/stops/206323", "https://data.delijn.be/stops/207485"], ["https://data.delijn.be/stops/502536", "https://data.delijn.be/stops/507536"], ["https://data.delijn.be/stops/107700", "https://data.delijn.be/stops/108956"], ["https://data.delijn.be/stops/206067", "https://data.delijn.be/stops/207067"], ["https://data.delijn.be/stops/206285", "https://data.delijn.be/stops/207287"], ["https://data.delijn.be/stops/104840", "https://data.delijn.be/stops/106086"], ["https://data.delijn.be/stops/400076", "https://data.delijn.be/stops/408426"], ["https://data.delijn.be/stops/302792", "https://data.delijn.be/stops/304030"], ["https://data.delijn.be/stops/204093", "https://data.delijn.be/stops/205092"], ["https://data.delijn.be/stops/108638", "https://data.delijn.be/stops/108644"], ["https://data.delijn.be/stops/301971", "https://data.delijn.be/stops/301999"], ["https://data.delijn.be/stops/101461", "https://data.delijn.be/stops/102962"], ["https://data.delijn.be/stops/206039", "https://data.delijn.be/stops/206962"], ["https://data.delijn.be/stops/301138", "https://data.delijn.be/stops/308957"], ["https://data.delijn.be/stops/102915", "https://data.delijn.be/stops/103323"], ["https://data.delijn.be/stops/302856", "https://data.delijn.be/stops/308654"], ["https://data.delijn.be/stops/216021", "https://data.delijn.be/stops/217019"], ["https://data.delijn.be/stops/401783", "https://data.delijn.be/stops/406353"], ["https://data.delijn.be/stops/301151", "https://data.delijn.be/stops/301152"], ["https://data.delijn.be/stops/202434", "https://data.delijn.be/stops/202435"], ["https://data.delijn.be/stops/101725", "https://data.delijn.be/stops/103364"], ["https://data.delijn.be/stops/504316", "https://data.delijn.be/stops/505827"], ["https://data.delijn.be/stops/210026", "https://data.delijn.be/stops/218936"], ["https://data.delijn.be/stops/505315", "https://data.delijn.be/stops/505326"], ["https://data.delijn.be/stops/300344", "https://data.delijn.be/stops/307690"], ["https://data.delijn.be/stops/203089", "https://data.delijn.be/stops/203720"], ["https://data.delijn.be/stops/501261", "https://data.delijn.be/stops/506738"], ["https://data.delijn.be/stops/302162", "https://data.delijn.be/stops/307140"], ["https://data.delijn.be/stops/406033", "https://data.delijn.be/stops/406082"], ["https://data.delijn.be/stops/101299", "https://data.delijn.be/stops/107456"], ["https://data.delijn.be/stops/305949", "https://data.delijn.be/stops/305950"], ["https://data.delijn.be/stops/408312", "https://data.delijn.be/stops/408914"], ["https://data.delijn.be/stops/200512", "https://data.delijn.be/stops/201512"], ["https://data.delijn.be/stops/301368", "https://data.delijn.be/stops/306130"], ["https://data.delijn.be/stops/106022", "https://data.delijn.be/stops/106190"], ["https://data.delijn.be/stops/508743", "https://data.delijn.be/stops/509777"], ["https://data.delijn.be/stops/202700", "https://data.delijn.be/stops/202701"], ["https://data.delijn.be/stops/105354", "https://data.delijn.be/stops/105929"], ["https://data.delijn.be/stops/303639", "https://data.delijn.be/stops/303641"], ["https://data.delijn.be/stops/203163", "https://data.delijn.be/stops/204092"], ["https://data.delijn.be/stops/508137", "https://data.delijn.be/stops/508140"], ["https://data.delijn.be/stops/208143", "https://data.delijn.be/stops/208144"], ["https://data.delijn.be/stops/402321", "https://data.delijn.be/stops/402501"], ["https://data.delijn.be/stops/102491", "https://data.delijn.be/stops/400043"], ["https://data.delijn.be/stops/405013", "https://data.delijn.be/stops/405015"], ["https://data.delijn.be/stops/407668", "https://data.delijn.be/stops/409801"], ["https://data.delijn.be/stops/106083", "https://data.delijn.be/stops/106136"], ["https://data.delijn.be/stops/101765", "https://data.delijn.be/stops/105470"], ["https://data.delijn.be/stops/201339", "https://data.delijn.be/stops/211105"], ["https://data.delijn.be/stops/200842", "https://data.delijn.be/stops/202307"], ["https://data.delijn.be/stops/301041", "https://data.delijn.be/stops/301050"], ["https://data.delijn.be/stops/107548", "https://data.delijn.be/stops/107960"], ["https://data.delijn.be/stops/104495", "https://data.delijn.be/stops/107488"], ["https://data.delijn.be/stops/200537", "https://data.delijn.be/stops/201311"], ["https://data.delijn.be/stops/304459", "https://data.delijn.be/stops/307041"], ["https://data.delijn.be/stops/403490", "https://data.delijn.be/stops/403518"], ["https://data.delijn.be/stops/507509", "https://data.delijn.be/stops/507714"], ["https://data.delijn.be/stops/202427", "https://data.delijn.be/stops/202466"], ["https://data.delijn.be/stops/201707", "https://data.delijn.be/stops/203443"], ["https://data.delijn.be/stops/205448", "https://data.delijn.be/stops/214008"], ["https://data.delijn.be/stops/305594", "https://data.delijn.be/stops/305595"], ["https://data.delijn.be/stops/104893", "https://data.delijn.be/stops/105313"], ["https://data.delijn.be/stops/300212", "https://data.delijn.be/stops/300223"], ["https://data.delijn.be/stops/504058", "https://data.delijn.be/stops/504060"], ["https://data.delijn.be/stops/501770", "https://data.delijn.be/stops/507375"], ["https://data.delijn.be/stops/404960", "https://data.delijn.be/stops/409646"], ["https://data.delijn.be/stops/503371", "https://data.delijn.be/stops/508371"], ["https://data.delijn.be/stops/208416", "https://data.delijn.be/stops/208763"], ["https://data.delijn.be/stops/302174", "https://data.delijn.be/stops/305092"], ["https://data.delijn.be/stops/402730", "https://data.delijn.be/stops/402731"], ["https://data.delijn.be/stops/301502", "https://data.delijn.be/stops/301522"], ["https://data.delijn.be/stops/102205", "https://data.delijn.be/stops/109898"], ["https://data.delijn.be/stops/207923", "https://data.delijn.be/stops/207925"], ["https://data.delijn.be/stops/101565", "https://data.delijn.be/stops/102370"], ["https://data.delijn.be/stops/404081", "https://data.delijn.be/stops/404082"], ["https://data.delijn.be/stops/201871", "https://data.delijn.be/stops/202665"], ["https://data.delijn.be/stops/305654", "https://data.delijn.be/stops/305655"], ["https://data.delijn.be/stops/204180", "https://data.delijn.be/stops/204355"], ["https://data.delijn.be/stops/401026", "https://data.delijn.be/stops/404860"], ["https://data.delijn.be/stops/302509", "https://data.delijn.be/stops/302520"], ["https://data.delijn.be/stops/300280", "https://data.delijn.be/stops/300298"], ["https://data.delijn.be/stops/402203", "https://data.delijn.be/stops/402266"], ["https://data.delijn.be/stops/306707", "https://data.delijn.be/stops/306708"], ["https://data.delijn.be/stops/109576", "https://data.delijn.be/stops/109579"], ["https://data.delijn.be/stops/101631", "https://data.delijn.be/stops/105917"], ["https://data.delijn.be/stops/207079", "https://data.delijn.be/stops/207876"], ["https://data.delijn.be/stops/106699", "https://data.delijn.be/stops/106700"], ["https://data.delijn.be/stops/307724", "https://data.delijn.be/stops/307725"], ["https://data.delijn.be/stops/203003", "https://data.delijn.be/stops/203022"], ["https://data.delijn.be/stops/104453", "https://data.delijn.be/stops/107518"], ["https://data.delijn.be/stops/107173", "https://data.delijn.be/stops/107175"], ["https://data.delijn.be/stops/102928", "https://data.delijn.be/stops/102947"], ["https://data.delijn.be/stops/105481", "https://data.delijn.be/stops/105483"], ["https://data.delijn.be/stops/201467", "https://data.delijn.be/stops/211117"], ["https://data.delijn.be/stops/206005", "https://data.delijn.be/stops/207006"], ["https://data.delijn.be/stops/303108", "https://data.delijn.be/stops/303119"], ["https://data.delijn.be/stops/105160", "https://data.delijn.be/stops/105345"], ["https://data.delijn.be/stops/401215", "https://data.delijn.be/stops/401396"], ["https://data.delijn.be/stops/400093", "https://data.delijn.be/stops/400164"], ["https://data.delijn.be/stops/305580", "https://data.delijn.be/stops/305581"], ["https://data.delijn.be/stops/204449", "https://data.delijn.be/stops/205312"], ["https://data.delijn.be/stops/407784", "https://data.delijn.be/stops/407785"], ["https://data.delijn.be/stops/300891", "https://data.delijn.be/stops/301802"], ["https://data.delijn.be/stops/400583", "https://data.delijn.be/stops/400619"], ["https://data.delijn.be/stops/303461", "https://data.delijn.be/stops/308069"], ["https://data.delijn.be/stops/300687", "https://data.delijn.be/stops/301425"], ["https://data.delijn.be/stops/304421", "https://data.delijn.be/stops/308640"], ["https://data.delijn.be/stops/102809", "https://data.delijn.be/stops/106485"], ["https://data.delijn.be/stops/204641", "https://data.delijn.be/stops/205640"], ["https://data.delijn.be/stops/101514", "https://data.delijn.be/stops/101535"], ["https://data.delijn.be/stops/403148", "https://data.delijn.be/stops/403323"], ["https://data.delijn.be/stops/208209", "https://data.delijn.be/stops/208792"], ["https://data.delijn.be/stops/407699", "https://data.delijn.be/stops/409796"], ["https://data.delijn.be/stops/202577", "https://data.delijn.be/stops/203577"], ["https://data.delijn.be/stops/105485", "https://data.delijn.be/stops/105860"], ["https://data.delijn.be/stops/502725", "https://data.delijn.be/stops/507084"], ["https://data.delijn.be/stops/405974", "https://data.delijn.be/stops/405992"], ["https://data.delijn.be/stops/403785", "https://data.delijn.be/stops/408960"], ["https://data.delijn.be/stops/107371", "https://data.delijn.be/stops/107377"], ["https://data.delijn.be/stops/202434", "https://data.delijn.be/stops/210434"], ["https://data.delijn.be/stops/102662", "https://data.delijn.be/stops/108742"], ["https://data.delijn.be/stops/201936", "https://data.delijn.be/stops/206408"], ["https://data.delijn.be/stops/408973", "https://data.delijn.be/stops/408977"], ["https://data.delijn.be/stops/105236", "https://data.delijn.be/stops/105237"], ["https://data.delijn.be/stops/206463", "https://data.delijn.be/stops/206464"], ["https://data.delijn.be/stops/105778", "https://data.delijn.be/stops/105784"], ["https://data.delijn.be/stops/207680", "https://data.delijn.be/stops/208141"], ["https://data.delijn.be/stops/208671", "https://data.delijn.be/stops/209438"], ["https://data.delijn.be/stops/201196", "https://data.delijn.be/stops/201732"], ["https://data.delijn.be/stops/305265", "https://data.delijn.be/stops/305329"], ["https://data.delijn.be/stops/108883", "https://data.delijn.be/stops/108884"], ["https://data.delijn.be/stops/205319", "https://data.delijn.be/stops/205697"], ["https://data.delijn.be/stops/308213", "https://data.delijn.be/stops/308215"], ["https://data.delijn.be/stops/204398", "https://data.delijn.be/stops/204768"], ["https://data.delijn.be/stops/503880", "https://data.delijn.be/stops/508880"], ["https://data.delijn.be/stops/301675", "https://data.delijn.be/stops/301689"], ["https://data.delijn.be/stops/105689", "https://data.delijn.be/stops/105691"], ["https://data.delijn.be/stops/408504", "https://data.delijn.be/stops/408526"], ["https://data.delijn.be/stops/301776", "https://data.delijn.be/stops/301779"], ["https://data.delijn.be/stops/300301", "https://data.delijn.be/stops/300333"], ["https://data.delijn.be/stops/301118", "https://data.delijn.be/stops/302224"], ["https://data.delijn.be/stops/406598", "https://data.delijn.be/stops/406612"], ["https://data.delijn.be/stops/207301", "https://data.delijn.be/stops/207640"], ["https://data.delijn.be/stops/300986", "https://data.delijn.be/stops/306048"], ["https://data.delijn.be/stops/106663", "https://data.delijn.be/stops/106667"], ["https://data.delijn.be/stops/400757", "https://data.delijn.be/stops/409570"], ["https://data.delijn.be/stops/407644", "https://data.delijn.be/stops/407689"], ["https://data.delijn.be/stops/205444", "https://data.delijn.be/stops/205596"], ["https://data.delijn.be/stops/502482", "https://data.delijn.be/stops/505665"], ["https://data.delijn.be/stops/106629", "https://data.delijn.be/stops/106631"], ["https://data.delijn.be/stops/501659", "https://data.delijn.be/stops/506661"], ["https://data.delijn.be/stops/105433", "https://data.delijn.be/stops/109842"], ["https://data.delijn.be/stops/305722", "https://data.delijn.be/stops/305723"], ["https://data.delijn.be/stops/200093", "https://data.delijn.be/stops/201093"], ["https://data.delijn.be/stops/201067", "https://data.delijn.be/stops/201446"], ["https://data.delijn.be/stops/102919", "https://data.delijn.be/stops/102921"], ["https://data.delijn.be/stops/300404", "https://data.delijn.be/stops/300405"], ["https://data.delijn.be/stops/400727", "https://data.delijn.be/stops/405179"], ["https://data.delijn.be/stops/208526", "https://data.delijn.be/stops/209525"], ["https://data.delijn.be/stops/405308", "https://data.delijn.be/stops/405314"], ["https://data.delijn.be/stops/507387", "https://data.delijn.be/stops/507402"], ["https://data.delijn.be/stops/403344", "https://data.delijn.be/stops/403345"], ["https://data.delijn.be/stops/503574", "https://data.delijn.be/stops/503575"], ["https://data.delijn.be/stops/206178", "https://data.delijn.be/stops/207957"], ["https://data.delijn.be/stops/202548", "https://data.delijn.be/stops/203549"], ["https://data.delijn.be/stops/401104", "https://data.delijn.be/stops/410049"], ["https://data.delijn.be/stops/308160", "https://data.delijn.be/stops/308180"], ["https://data.delijn.be/stops/401807", "https://data.delijn.be/stops/401809"], ["https://data.delijn.be/stops/109229", "https://data.delijn.be/stops/109230"], ["https://data.delijn.be/stops/107603", "https://data.delijn.be/stops/107606"], ["https://data.delijn.be/stops/205450", "https://data.delijn.be/stops/205713"], ["https://data.delijn.be/stops/504271", "https://data.delijn.be/stops/504273"], ["https://data.delijn.be/stops/305594", "https://data.delijn.be/stops/305609"], ["https://data.delijn.be/stops/205930", "https://data.delijn.be/stops/210084"], ["https://data.delijn.be/stops/401840", "https://data.delijn.be/stops/406031"], ["https://data.delijn.be/stops/108908", "https://data.delijn.be/stops/109396"], ["https://data.delijn.be/stops/109179", "https://data.delijn.be/stops/109249"], ["https://data.delijn.be/stops/206043", "https://data.delijn.be/stops/207539"], ["https://data.delijn.be/stops/304154", "https://data.delijn.be/stops/306207"], ["https://data.delijn.be/stops/504171", "https://data.delijn.be/stops/509171"], ["https://data.delijn.be/stops/207199", "https://data.delijn.be/stops/207925"], ["https://data.delijn.be/stops/406044", "https://data.delijn.be/stops/406144"], ["https://data.delijn.be/stops/300741", "https://data.delijn.be/stops/300775"], ["https://data.delijn.be/stops/502913", "https://data.delijn.be/stops/507247"], ["https://data.delijn.be/stops/405843", "https://data.delijn.be/stops/409755"], ["https://data.delijn.be/stops/206068", "https://data.delijn.be/stops/207068"], ["https://data.delijn.be/stops/105552", "https://data.delijn.be/stops/105554"], ["https://data.delijn.be/stops/501182", "https://data.delijn.be/stops/501563"], ["https://data.delijn.be/stops/101783", "https://data.delijn.be/stops/107874"], ["https://data.delijn.be/stops/102248", "https://data.delijn.be/stops/104284"], ["https://data.delijn.be/stops/109008", "https://data.delijn.be/stops/402018"], ["https://data.delijn.be/stops/304781", "https://data.delijn.be/stops/304794"], ["https://data.delijn.be/stops/504605", "https://data.delijn.be/stops/509604"], ["https://data.delijn.be/stops/306132", "https://data.delijn.be/stops/306134"], ["https://data.delijn.be/stops/205177", "https://data.delijn.be/stops/205178"], ["https://data.delijn.be/stops/404798", "https://data.delijn.be/stops/404805"], ["https://data.delijn.be/stops/503633", "https://data.delijn.be/stops/505291"], ["https://data.delijn.be/stops/406185", "https://data.delijn.be/stops/406200"], ["https://data.delijn.be/stops/406116", "https://data.delijn.be/stops/406815"], ["https://data.delijn.be/stops/106429", "https://data.delijn.be/stops/106432"], ["https://data.delijn.be/stops/202041", "https://data.delijn.be/stops/202686"], ["https://data.delijn.be/stops/101379", "https://data.delijn.be/stops/108692"], ["https://data.delijn.be/stops/208225", "https://data.delijn.be/stops/209774"], ["https://data.delijn.be/stops/407363", "https://data.delijn.be/stops/407389"], ["https://data.delijn.be/stops/300324", "https://data.delijn.be/stops/308991"], ["https://data.delijn.be/stops/101507", "https://data.delijn.be/stops/109075"], ["https://data.delijn.be/stops/400798", "https://data.delijn.be/stops/400976"], ["https://data.delijn.be/stops/108297", "https://data.delijn.be/stops/108302"], ["https://data.delijn.be/stops/208554", "https://data.delijn.be/stops/209553"], ["https://data.delijn.be/stops/206105", "https://data.delijn.be/stops/207111"], ["https://data.delijn.be/stops/305118", "https://data.delijn.be/stops/305122"], ["https://data.delijn.be/stops/308853", "https://data.delijn.be/stops/308855"], ["https://data.delijn.be/stops/200232", "https://data.delijn.be/stops/201232"], ["https://data.delijn.be/stops/301412", "https://data.delijn.be/stops/301420"], ["https://data.delijn.be/stops/203927", "https://data.delijn.be/stops/211022"], ["https://data.delijn.be/stops/305210", "https://data.delijn.be/stops/306934"], ["https://data.delijn.be/stops/500005", "https://data.delijn.be/stops/501541"], ["https://data.delijn.be/stops/301074", "https://data.delijn.be/stops/307043"], ["https://data.delijn.be/stops/200198", "https://data.delijn.be/stops/201198"], ["https://data.delijn.be/stops/208129", "https://data.delijn.be/stops/208664"], ["https://data.delijn.be/stops/406307", "https://data.delijn.be/stops/406310"], ["https://data.delijn.be/stops/504102", "https://data.delijn.be/stops/509102"], ["https://data.delijn.be/stops/503219", "https://data.delijn.be/stops/505265"], ["https://data.delijn.be/stops/403848", "https://data.delijn.be/stops/410116"], ["https://data.delijn.be/stops/403262", "https://data.delijn.be/stops/403454"], ["https://data.delijn.be/stops/101467", "https://data.delijn.be/stops/109250"], ["https://data.delijn.be/stops/202156", "https://data.delijn.be/stops/203158"], ["https://data.delijn.be/stops/105617", "https://data.delijn.be/stops/106363"], ["https://data.delijn.be/stops/407603", "https://data.delijn.be/stops/407754"], ["https://data.delijn.be/stops/105786", "https://data.delijn.be/stops/105787"], ["https://data.delijn.be/stops/108517", "https://data.delijn.be/stops/108519"], ["https://data.delijn.be/stops/300999", "https://data.delijn.be/stops/302479"], ["https://data.delijn.be/stops/503497", "https://data.delijn.be/stops/503870"], ["https://data.delijn.be/stops/406015", "https://data.delijn.be/stops/406048"], ["https://data.delijn.be/stops/505901", "https://data.delijn.be/stops/508142"], ["https://data.delijn.be/stops/404875", "https://data.delijn.be/stops/406890"], ["https://data.delijn.be/stops/300932", "https://data.delijn.be/stops/300933"], ["https://data.delijn.be/stops/306254", "https://data.delijn.be/stops/306255"], ["https://data.delijn.be/stops/302151", "https://data.delijn.be/stops/303813"], ["https://data.delijn.be/stops/206115", "https://data.delijn.be/stops/207114"], ["https://data.delijn.be/stops/302939", "https://data.delijn.be/stops/307436"], ["https://data.delijn.be/stops/105744", "https://data.delijn.be/stops/109834"], ["https://data.delijn.be/stops/406699", "https://data.delijn.be/stops/406700"], ["https://data.delijn.be/stops/105660", "https://data.delijn.be/stops/105720"], ["https://data.delijn.be/stops/403015", "https://data.delijn.be/stops/403411"], ["https://data.delijn.be/stops/404524", "https://data.delijn.be/stops/407234"], ["https://data.delijn.be/stops/401351", "https://data.delijn.be/stops/401360"], ["https://data.delijn.be/stops/202011", "https://data.delijn.be/stops/202536"], ["https://data.delijn.be/stops/301280", "https://data.delijn.be/stops/301339"], ["https://data.delijn.be/stops/202745", "https://data.delijn.be/stops/206937"], ["https://data.delijn.be/stops/502279", "https://data.delijn.be/stops/502284"], ["https://data.delijn.be/stops/202881", "https://data.delijn.be/stops/203870"], ["https://data.delijn.be/stops/108063", "https://data.delijn.be/stops/108871"], ["https://data.delijn.be/stops/502035", "https://data.delijn.be/stops/507035"], ["https://data.delijn.be/stops/200109", "https://data.delijn.be/stops/200357"], ["https://data.delijn.be/stops/509458", "https://data.delijn.be/stops/509612"], ["https://data.delijn.be/stops/404551", "https://data.delijn.be/stops/409258"], ["https://data.delijn.be/stops/202890", "https://data.delijn.be/stops/203819"], ["https://data.delijn.be/stops/501090", "https://data.delijn.be/stops/506095"], ["https://data.delijn.be/stops/101540", "https://data.delijn.be/stops/101802"], ["https://data.delijn.be/stops/303860", "https://data.delijn.be/stops/303962"], ["https://data.delijn.be/stops/405035", "https://data.delijn.be/stops/405047"], ["https://data.delijn.be/stops/103097", "https://data.delijn.be/stops/104627"], ["https://data.delijn.be/stops/101583", "https://data.delijn.be/stops/105728"], ["https://data.delijn.be/stops/206858", "https://data.delijn.be/stops/207857"], ["https://data.delijn.be/stops/302297", "https://data.delijn.be/stops/303301"], ["https://data.delijn.be/stops/300018", "https://data.delijn.be/stops/301123"], ["https://data.delijn.be/stops/402670", "https://data.delijn.be/stops/410056"], ["https://data.delijn.be/stops/306952", "https://data.delijn.be/stops/306953"], ["https://data.delijn.be/stops/502272", "https://data.delijn.be/stops/505013"], ["https://data.delijn.be/stops/305257", "https://data.delijn.be/stops/306382"], ["https://data.delijn.be/stops/403374", "https://data.delijn.be/stops/403375"], ["https://data.delijn.be/stops/307523", "https://data.delijn.be/stops/307524"], ["https://data.delijn.be/stops/502178", "https://data.delijn.be/stops/507178"], ["https://data.delijn.be/stops/502001", "https://data.delijn.be/stops/507001"], ["https://data.delijn.be/stops/206356", "https://data.delijn.be/stops/207347"], ["https://data.delijn.be/stops/203221", "https://data.delijn.be/stops/205076"], ["https://data.delijn.be/stops/101854", "https://data.delijn.be/stops/109453"], ["https://data.delijn.be/stops/505205", "https://data.delijn.be/stops/505375"], ["https://data.delijn.be/stops/204780", "https://data.delijn.be/stops/205591"], ["https://data.delijn.be/stops/200683", "https://data.delijn.be/stops/210108"], ["https://data.delijn.be/stops/406231", "https://data.delijn.be/stops/406237"], ["https://data.delijn.be/stops/402133", "https://data.delijn.be/stops/402137"], ["https://data.delijn.be/stops/403512", "https://data.delijn.be/stops/403526"], ["https://data.delijn.be/stops/200533", "https://data.delijn.be/stops/204925"], ["https://data.delijn.be/stops/308236", "https://data.delijn.be/stops/308238"], ["https://data.delijn.be/stops/108338", "https://data.delijn.be/stops/109369"], ["https://data.delijn.be/stops/501145", "https://data.delijn.be/stops/506145"], ["https://data.delijn.be/stops/509059", "https://data.delijn.be/stops/509069"], ["https://data.delijn.be/stops/300029", "https://data.delijn.be/stops/300059"], ["https://data.delijn.be/stops/402201", "https://data.delijn.be/stops/402328"], ["https://data.delijn.be/stops/402769", "https://data.delijn.be/stops/409547"], ["https://data.delijn.be/stops/200368", "https://data.delijn.be/stops/201164"], ["https://data.delijn.be/stops/204031", "https://data.delijn.be/stops/205030"], ["https://data.delijn.be/stops/509349", "https://data.delijn.be/stops/509351"], ["https://data.delijn.be/stops/206753", "https://data.delijn.be/stops/206754"], ["https://data.delijn.be/stops/204299", "https://data.delijn.be/stops/204306"], ["https://data.delijn.be/stops/204126", "https://data.delijn.be/stops/204786"], ["https://data.delijn.be/stops/206864", "https://data.delijn.be/stops/207233"], ["https://data.delijn.be/stops/204519", "https://data.delijn.be/stops/205518"], ["https://data.delijn.be/stops/102068", "https://data.delijn.be/stops/107302"], ["https://data.delijn.be/stops/407496", "https://data.delijn.be/stops/407502"], ["https://data.delijn.be/stops/204080", "https://data.delijn.be/stops/205081"], ["https://data.delijn.be/stops/304838", "https://data.delijn.be/stops/308543"], ["https://data.delijn.be/stops/400717", "https://data.delijn.be/stops/400896"], ["https://data.delijn.be/stops/302396", "https://data.delijn.be/stops/308556"], ["https://data.delijn.be/stops/102778", "https://data.delijn.be/stops/102954"], ["https://data.delijn.be/stops/204151", "https://data.delijn.be/stops/205145"], ["https://data.delijn.be/stops/304371", "https://data.delijn.be/stops/305992"], ["https://data.delijn.be/stops/506172", "https://data.delijn.be/stops/506183"], ["https://data.delijn.be/stops/207764", "https://data.delijn.be/stops/208408"], ["https://data.delijn.be/stops/507248", "https://data.delijn.be/stops/507566"], ["https://data.delijn.be/stops/405550", "https://data.delijn.be/stops/405551"], ["https://data.delijn.be/stops/103820", "https://data.delijn.be/stops/103821"], ["https://data.delijn.be/stops/503005", "https://data.delijn.be/stops/505081"], ["https://data.delijn.be/stops/201008", "https://data.delijn.be/stops/210022"], ["https://data.delijn.be/stops/400900", "https://data.delijn.be/stops/400961"], ["https://data.delijn.be/stops/408565", "https://data.delijn.be/stops/408617"], ["https://data.delijn.be/stops/507455", "https://data.delijn.be/stops/507461"], ["https://data.delijn.be/stops/504247", "https://data.delijn.be/stops/504250"], ["https://data.delijn.be/stops/504042", "https://data.delijn.be/stops/504045"], ["https://data.delijn.be/stops/505155", "https://data.delijn.be/stops/507739"], ["https://data.delijn.be/stops/200876", "https://data.delijn.be/stops/505064"], ["https://data.delijn.be/stops/106027", "https://data.delijn.be/stops/106029"], ["https://data.delijn.be/stops/407229", "https://data.delijn.be/stops/407507"], ["https://data.delijn.be/stops/307300", "https://data.delijn.be/stops/307301"], ["https://data.delijn.be/stops/106484", "https://data.delijn.be/stops/109213"], ["https://data.delijn.be/stops/107654", "https://data.delijn.be/stops/107656"], ["https://data.delijn.be/stops/102494", "https://data.delijn.be/stops/400307"], ["https://data.delijn.be/stops/205977", "https://data.delijn.be/stops/208794"], ["https://data.delijn.be/stops/201950", "https://data.delijn.be/stops/211018"], ["https://data.delijn.be/stops/107864", "https://data.delijn.be/stops/107945"], ["https://data.delijn.be/stops/504358", "https://data.delijn.be/stops/508899"], ["https://data.delijn.be/stops/204062", "https://data.delijn.be/stops/205896"], ["https://data.delijn.be/stops/408720", "https://data.delijn.be/stops/408908"], ["https://data.delijn.be/stops/303134", "https://data.delijn.be/stops/308757"], ["https://data.delijn.be/stops/105365", "https://data.delijn.be/stops/109898"], ["https://data.delijn.be/stops/503218", "https://data.delijn.be/stops/509746"], ["https://data.delijn.be/stops/504282", "https://data.delijn.be/stops/509282"], ["https://data.delijn.be/stops/407812", "https://data.delijn.be/stops/408008"], ["https://data.delijn.be/stops/403256", "https://data.delijn.be/stops/403379"], ["https://data.delijn.be/stops/300955", "https://data.delijn.be/stops/300962"], ["https://data.delijn.be/stops/205024", "https://data.delijn.be/stops/205819"], ["https://data.delijn.be/stops/204295", "https://data.delijn.be/stops/205295"], ["https://data.delijn.be/stops/202290", "https://data.delijn.be/stops/210291"], ["https://data.delijn.be/stops/302232", "https://data.delijn.be/stops/302233"], ["https://data.delijn.be/stops/201844", "https://data.delijn.be/stops/209326"], ["https://data.delijn.be/stops/102503", "https://data.delijn.be/stops/102508"], ["https://data.delijn.be/stops/405149", "https://data.delijn.be/stops/405290"], ["https://data.delijn.be/stops/205290", "https://data.delijn.be/stops/205291"], ["https://data.delijn.be/stops/206642", "https://data.delijn.be/stops/207443"], ["https://data.delijn.be/stops/108468", "https://data.delijn.be/stops/108471"], ["https://data.delijn.be/stops/503126", "https://data.delijn.be/stops/503135"], ["https://data.delijn.be/stops/304251", "https://data.delijn.be/stops/304252"], ["https://data.delijn.be/stops/503230", "https://data.delijn.be/stops/508230"], ["https://data.delijn.be/stops/503697", "https://data.delijn.be/stops/509969"], ["https://data.delijn.be/stops/105473", "https://data.delijn.be/stops/105474"], ["https://data.delijn.be/stops/505379", "https://data.delijn.be/stops/508089"], ["https://data.delijn.be/stops/200649", "https://data.delijn.be/stops/201649"], ["https://data.delijn.be/stops/102219", "https://data.delijn.be/stops/105648"], ["https://data.delijn.be/stops/102169", "https://data.delijn.be/stops/103583"], ["https://data.delijn.be/stops/403784", "https://data.delijn.be/stops/403789"], ["https://data.delijn.be/stops/503101", "https://data.delijn.be/stops/505382"], ["https://data.delijn.be/stops/202675", "https://data.delijn.be/stops/202724"], ["https://data.delijn.be/stops/104048", "https://data.delijn.be/stops/109764"], ["https://data.delijn.be/stops/501021", "https://data.delijn.be/stops/506014"], ["https://data.delijn.be/stops/105066", "https://data.delijn.be/stops/105169"], ["https://data.delijn.be/stops/400547", "https://data.delijn.be/stops/400963"], ["https://data.delijn.be/stops/400736", "https://data.delijn.be/stops/400938"], ["https://data.delijn.be/stops/103934", "https://data.delijn.be/stops/107404"], ["https://data.delijn.be/stops/305893", "https://data.delijn.be/stops/306393"], ["https://data.delijn.be/stops/404336", "https://data.delijn.be/stops/404382"], ["https://data.delijn.be/stops/103097", "https://data.delijn.be/stops/103271"], ["https://data.delijn.be/stops/301561", "https://data.delijn.be/stops/308083"], ["https://data.delijn.be/stops/301824", "https://data.delijn.be/stops/302767"], ["https://data.delijn.be/stops/501077", "https://data.delijn.be/stops/501082"], ["https://data.delijn.be/stops/504376", "https://data.delijn.be/stops/505071"], ["https://data.delijn.be/stops/102930", "https://data.delijn.be/stops/106030"], ["https://data.delijn.be/stops/206111", "https://data.delijn.be/stops/207112"], ["https://data.delijn.be/stops/302255", "https://data.delijn.be/stops/304357"], ["https://data.delijn.be/stops/106602", "https://data.delijn.be/stops/107212"], ["https://data.delijn.be/stops/304721", "https://data.delijn.be/stops/305269"], ["https://data.delijn.be/stops/403328", "https://data.delijn.be/stops/409194"], ["https://data.delijn.be/stops/301347", "https://data.delijn.be/stops/306683"], ["https://data.delijn.be/stops/407519", "https://data.delijn.be/stops/408305"], ["https://data.delijn.be/stops/510013", "https://data.delijn.be/stops/510014"], ["https://data.delijn.be/stops/400449", "https://data.delijn.be/stops/400489"], ["https://data.delijn.be/stops/508120", "https://data.delijn.be/stops/508122"], ["https://data.delijn.be/stops/200168", "https://data.delijn.be/stops/201168"], ["https://data.delijn.be/stops/407405", "https://data.delijn.be/stops/408482"], ["https://data.delijn.be/stops/102188", "https://data.delijn.be/stops/105354"], ["https://data.delijn.be/stops/203045", "https://data.delijn.be/stops/203046"], ["https://data.delijn.be/stops/203319", "https://data.delijn.be/stops/203320"], ["https://data.delijn.be/stops/302155", "https://data.delijn.be/stops/302200"], ["https://data.delijn.be/stops/500007", "https://data.delijn.be/stops/503742"], ["https://data.delijn.be/stops/200262", "https://data.delijn.be/stops/203546"], ["https://data.delijn.be/stops/205910", "https://data.delijn.be/stops/205911"], ["https://data.delijn.be/stops/301282", "https://data.delijn.be/stops/306252"], ["https://data.delijn.be/stops/206108", "https://data.delijn.be/stops/206110"], ["https://data.delijn.be/stops/207224", "https://data.delijn.be/stops/207225"], ["https://data.delijn.be/stops/307349", "https://data.delijn.be/stops/308590"], ["https://data.delijn.be/stops/304271", "https://data.delijn.be/stops/304272"], ["https://data.delijn.be/stops/407444", "https://data.delijn.be/stops/407499"], ["https://data.delijn.be/stops/200718", "https://data.delijn.be/stops/203582"], ["https://data.delijn.be/stops/504082", "https://data.delijn.be/stops/509082"], ["https://data.delijn.be/stops/206089", "https://data.delijn.be/stops/207088"], ["https://data.delijn.be/stops/204437", "https://data.delijn.be/stops/205436"], ["https://data.delijn.be/stops/503677", "https://data.delijn.be/stops/508678"], ["https://data.delijn.be/stops/407822", "https://data.delijn.be/stops/407973"], ["https://data.delijn.be/stops/300591", "https://data.delijn.be/stops/308897"], ["https://data.delijn.be/stops/401892", "https://data.delijn.be/stops/401897"], ["https://data.delijn.be/stops/103292", "https://data.delijn.be/stops/105509"], ["https://data.delijn.be/stops/207196", "https://data.delijn.be/stops/207201"], ["https://data.delijn.be/stops/207030", "https://data.delijn.be/stops/207916"], ["https://data.delijn.be/stops/406920", "https://data.delijn.be/stops/409465"], ["https://data.delijn.be/stops/505202", "https://data.delijn.be/stops/505369"], ["https://data.delijn.be/stops/105266", "https://data.delijn.be/stops/109968"], ["https://data.delijn.be/stops/206489", "https://data.delijn.be/stops/206579"], ["https://data.delijn.be/stops/104667", "https://data.delijn.be/stops/104886"], ["https://data.delijn.be/stops/101658", "https://data.delijn.be/stops/107810"], ["https://data.delijn.be/stops/302109", "https://data.delijn.be/stops/302112"], ["https://data.delijn.be/stops/410183", "https://data.delijn.be/stops/410208"], ["https://data.delijn.be/stops/103100", "https://data.delijn.be/stops/103120"], ["https://data.delijn.be/stops/400814", "https://data.delijn.be/stops/400823"], ["https://data.delijn.be/stops/202265", "https://data.delijn.be/stops/203264"], ["https://data.delijn.be/stops/505365", "https://data.delijn.be/stops/508884"], ["https://data.delijn.be/stops/404768", "https://data.delijn.be/stops/404774"], ["https://data.delijn.be/stops/103022", "https://data.delijn.be/stops/109790"], ["https://data.delijn.be/stops/305820", "https://data.delijn.be/stops/305871"], ["https://data.delijn.be/stops/400353", "https://data.delijn.be/stops/400397"], ["https://data.delijn.be/stops/408951", "https://data.delijn.be/stops/408977"], ["https://data.delijn.be/stops/200334", "https://data.delijn.be/stops/200569"], ["https://data.delijn.be/stops/400164", "https://data.delijn.be/stops/409145"], ["https://data.delijn.be/stops/403292", "https://data.delijn.be/stops/410028"], ["https://data.delijn.be/stops/506032", "https://data.delijn.be/stops/506588"], ["https://data.delijn.be/stops/302840", "https://data.delijn.be/stops/302841"], ["https://data.delijn.be/stops/210314", "https://data.delijn.be/stops/218936"], ["https://data.delijn.be/stops/202065", "https://data.delijn.be/stops/202683"], ["https://data.delijn.be/stops/108273", "https://data.delijn.be/stops/108277"], ["https://data.delijn.be/stops/400454", "https://data.delijn.be/stops/404843"], ["https://data.delijn.be/stops/200726", "https://data.delijn.be/stops/200730"], ["https://data.delijn.be/stops/406848", "https://data.delijn.be/stops/406849"], ["https://data.delijn.be/stops/503872", "https://data.delijn.be/stops/503873"], ["https://data.delijn.be/stops/103295", "https://data.delijn.be/stops/103300"], ["https://data.delijn.be/stops/502681", "https://data.delijn.be/stops/502725"], ["https://data.delijn.be/stops/502540", "https://data.delijn.be/stops/502802"], ["https://data.delijn.be/stops/109858", "https://data.delijn.be/stops/406859"], ["https://data.delijn.be/stops/202727", "https://data.delijn.be/stops/203727"], ["https://data.delijn.be/stops/102866", "https://data.delijn.be/stops/107660"], ["https://data.delijn.be/stops/503075", "https://data.delijn.be/stops/508069"], ["https://data.delijn.be/stops/407728", "https://data.delijn.be/stops/409777"], ["https://data.delijn.be/stops/501742", "https://data.delijn.be/stops/509503"], ["https://data.delijn.be/stops/102728", "https://data.delijn.be/stops/106590"], ["https://data.delijn.be/stops/202526", "https://data.delijn.be/stops/203521"], ["https://data.delijn.be/stops/301487", "https://data.delijn.be/stops/307958"], ["https://data.delijn.be/stops/203186", "https://data.delijn.be/stops/203273"], ["https://data.delijn.be/stops/502564", "https://data.delijn.be/stops/502565"], ["https://data.delijn.be/stops/204650", "https://data.delijn.be/stops/205286"], ["https://data.delijn.be/stops/202137", "https://data.delijn.be/stops/203076"], ["https://data.delijn.be/stops/407170", "https://data.delijn.be/stops/407489"], ["https://data.delijn.be/stops/305685", "https://data.delijn.be/stops/305687"], ["https://data.delijn.be/stops/502768", "https://data.delijn.be/stops/507307"], ["https://data.delijn.be/stops/109662", "https://data.delijn.be/stops/109663"], ["https://data.delijn.be/stops/508235", "https://data.delijn.be/stops/508365"], ["https://data.delijn.be/stops/103613", "https://data.delijn.be/stops/106194"], ["https://data.delijn.be/stops/201455", "https://data.delijn.be/stops/201459"], ["https://data.delijn.be/stops/106004", "https://data.delijn.be/stops/106008"], ["https://data.delijn.be/stops/304161", "https://data.delijn.be/stops/304172"], ["https://data.delijn.be/stops/106381", "https://data.delijn.be/stops/106385"], ["https://data.delijn.be/stops/504599", "https://data.delijn.be/stops/509527"], ["https://data.delijn.be/stops/502021", "https://data.delijn.be/stops/507927"], ["https://data.delijn.be/stops/503412", "https://data.delijn.be/stops/508417"], ["https://data.delijn.be/stops/105456", "https://data.delijn.be/stops/105465"], ["https://data.delijn.be/stops/503016", "https://data.delijn.be/stops/508014"], ["https://data.delijn.be/stops/301920", "https://data.delijn.be/stops/301921"], ["https://data.delijn.be/stops/301753", "https://data.delijn.be/stops/301754"], ["https://data.delijn.be/stops/409308", "https://data.delijn.be/stops/410067"], ["https://data.delijn.be/stops/305103", "https://data.delijn.be/stops/305114"], ["https://data.delijn.be/stops/206131", "https://data.delijn.be/stops/207131"], ["https://data.delijn.be/stops/501127", "https://data.delijn.be/stops/501137"], ["https://data.delijn.be/stops/109370", "https://data.delijn.be/stops/109371"], ["https://data.delijn.be/stops/201579", "https://data.delijn.be/stops/201730"], ["https://data.delijn.be/stops/103046", "https://data.delijn.be/stops/103107"], ["https://data.delijn.be/stops/105080", "https://data.delijn.be/stops/105081"], ["https://data.delijn.be/stops/200153", "https://data.delijn.be/stops/201153"], ["https://data.delijn.be/stops/305622", "https://data.delijn.be/stops/305623"], ["https://data.delijn.be/stops/503480", "https://data.delijn.be/stops/504837"], ["https://data.delijn.be/stops/500558", "https://data.delijn.be/stops/506031"], ["https://data.delijn.be/stops/102756", "https://data.delijn.be/stops/103341"], ["https://data.delijn.be/stops/109368", "https://data.delijn.be/stops/109369"], ["https://data.delijn.be/stops/101470", "https://data.delijn.be/stops/101963"], ["https://data.delijn.be/stops/203630", "https://data.delijn.be/stops/203631"], ["https://data.delijn.be/stops/203923", "https://data.delijn.be/stops/203924"], ["https://data.delijn.be/stops/300723", "https://data.delijn.be/stops/306366"], ["https://data.delijn.be/stops/500041", "https://data.delijn.be/stops/500042"], ["https://data.delijn.be/stops/404872", "https://data.delijn.be/stops/404873"], ["https://data.delijn.be/stops/102906", "https://data.delijn.be/stops/102907"], ["https://data.delijn.be/stops/504338", "https://data.delijn.be/stops/509339"], ["https://data.delijn.be/stops/401744", "https://data.delijn.be/stops/407348"], ["https://data.delijn.be/stops/300277", "https://data.delijn.be/stops/306656"], ["https://data.delijn.be/stops/300993", "https://data.delijn.be/stops/308356"], ["https://data.delijn.be/stops/405320", "https://data.delijn.be/stops/305058"], ["https://data.delijn.be/stops/408638", "https://data.delijn.be/stops/302868"], ["https://data.delijn.be/stops/204229", "https://data.delijn.be/stops/204231"], ["https://data.delijn.be/stops/207113", "https://data.delijn.be/stops/207229"], ["https://data.delijn.be/stops/400060", "https://data.delijn.be/stops/405130"], ["https://data.delijn.be/stops/201972", "https://data.delijn.be/stops/203863"], ["https://data.delijn.be/stops/200025", "https://data.delijn.be/stops/203070"], ["https://data.delijn.be/stops/108232", "https://data.delijn.be/stops/108233"], ["https://data.delijn.be/stops/504674", "https://data.delijn.be/stops/505307"], ["https://data.delijn.be/stops/200771", "https://data.delijn.be/stops/201728"], ["https://data.delijn.be/stops/206921", "https://data.delijn.be/stops/207383"], ["https://data.delijn.be/stops/106797", "https://data.delijn.be/stops/106868"], ["https://data.delijn.be/stops/106845", "https://data.delijn.be/stops/106984"], ["https://data.delijn.be/stops/106319", "https://data.delijn.be/stops/106321"], ["https://data.delijn.be/stops/300459", "https://data.delijn.be/stops/305012"], ["https://data.delijn.be/stops/208806", "https://data.delijn.be/stops/208837"], ["https://data.delijn.be/stops/204110", "https://data.delijn.be/stops/205363"], ["https://data.delijn.be/stops/402159", "https://data.delijn.be/stops/402287"], ["https://data.delijn.be/stops/101211", "https://data.delijn.be/stops/104909"], ["https://data.delijn.be/stops/502288", "https://data.delijn.be/stops/507299"], ["https://data.delijn.be/stops/302036", "https://data.delijn.be/stops/302037"], ["https://data.delijn.be/stops/206372", "https://data.delijn.be/stops/207371"], ["https://data.delijn.be/stops/400051", "https://data.delijn.be/stops/400073"], ["https://data.delijn.be/stops/503540", "https://data.delijn.be/stops/508540"], ["https://data.delijn.be/stops/404420", "https://data.delijn.be/stops/404537"], ["https://data.delijn.be/stops/208017", "https://data.delijn.be/stops/209021"], ["https://data.delijn.be/stops/106840", "https://data.delijn.be/stops/109749"], ["https://data.delijn.be/stops/300389", "https://data.delijn.be/stops/304551"], ["https://data.delijn.be/stops/404150", "https://data.delijn.be/stops/404168"], ["https://data.delijn.be/stops/101371", "https://data.delijn.be/stops/101403"], ["https://data.delijn.be/stops/304945", "https://data.delijn.be/stops/304950"], ["https://data.delijn.be/stops/204532", "https://data.delijn.be/stops/205536"], ["https://data.delijn.be/stops/303070", "https://data.delijn.be/stops/308757"], ["https://data.delijn.be/stops/104846", "https://data.delijn.be/stops/106796"], ["https://data.delijn.be/stops/407815", "https://data.delijn.be/stops/407943"], ["https://data.delijn.be/stops/501438", "https://data.delijn.be/stops/506225"], ["https://data.delijn.be/stops/104161", "https://data.delijn.be/stops/104375"], ["https://data.delijn.be/stops/406712", "https://data.delijn.be/stops/408742"], ["https://data.delijn.be/stops/407036", "https://data.delijn.be/stops/407059"], ["https://data.delijn.be/stops/407897", "https://data.delijn.be/stops/408045"], ["https://data.delijn.be/stops/508649", "https://data.delijn.be/stops/509767"], ["https://data.delijn.be/stops/200861", "https://data.delijn.be/stops/200862"], ["https://data.delijn.be/stops/202408", "https://data.delijn.be/stops/202418"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/505412"], ["https://data.delijn.be/stops/105001", "https://data.delijn.be/stops/105224"], ["https://data.delijn.be/stops/306726", "https://data.delijn.be/stops/306728"], ["https://data.delijn.be/stops/301701", "https://data.delijn.be/stops/301742"], ["https://data.delijn.be/stops/301184", "https://data.delijn.be/stops/302823"], ["https://data.delijn.be/stops/403318", "https://data.delijn.be/stops/403319"], ["https://data.delijn.be/stops/106872", "https://data.delijn.be/stops/106881"], ["https://data.delijn.be/stops/202286", "https://data.delijn.be/stops/203287"], ["https://data.delijn.be/stops/304378", "https://data.delijn.be/stops/304399"], ["https://data.delijn.be/stops/302737", "https://data.delijn.be/stops/302738"], ["https://data.delijn.be/stops/202920", "https://data.delijn.be/stops/203920"], ["https://data.delijn.be/stops/206786", "https://data.delijn.be/stops/208542"], ["https://data.delijn.be/stops/406271", "https://data.delijn.be/stops/406278"], ["https://data.delijn.be/stops/408861", "https://data.delijn.be/stops/408862"], ["https://data.delijn.be/stops/402889", "https://data.delijn.be/stops/402892"], ["https://data.delijn.be/stops/200959", "https://data.delijn.be/stops/202517"], ["https://data.delijn.be/stops/408338", "https://data.delijn.be/stops/408351"], ["https://data.delijn.be/stops/104347", "https://data.delijn.be/stops/105917"], ["https://data.delijn.be/stops/503459", "https://data.delijn.be/stops/508459"], ["https://data.delijn.be/stops/206675", "https://data.delijn.be/stops/219005"], ["https://data.delijn.be/stops/306693", "https://data.delijn.be/stops/308788"], ["https://data.delijn.be/stops/502661", "https://data.delijn.be/stops/507661"], ["https://data.delijn.be/stops/200815", "https://data.delijn.be/stops/210016"], ["https://data.delijn.be/stops/107702", "https://data.delijn.be/stops/107714"], ["https://data.delijn.be/stops/503314", "https://data.delijn.be/stops/508314"], ["https://data.delijn.be/stops/405298", "https://data.delijn.be/stops/407333"], ["https://data.delijn.be/stops/107062", "https://data.delijn.be/stops/109255"], ["https://data.delijn.be/stops/302926", "https://data.delijn.be/stops/306402"], ["https://data.delijn.be/stops/500948", "https://data.delijn.be/stops/505838"], ["https://data.delijn.be/stops/306720", "https://data.delijn.be/stops/306721"], ["https://data.delijn.be/stops/307312", "https://data.delijn.be/stops/307313"], ["https://data.delijn.be/stops/107438", "https://data.delijn.be/stops/107441"], ["https://data.delijn.be/stops/205413", "https://data.delijn.be/stops/205769"], ["https://data.delijn.be/stops/402881", "https://data.delijn.be/stops/402884"], ["https://data.delijn.be/stops/106137", "https://data.delijn.be/stops/106138"], ["https://data.delijn.be/stops/208951", "https://data.delijn.be/stops/216019"], ["https://data.delijn.be/stops/200840", "https://data.delijn.be/stops/505753"], ["https://data.delijn.be/stops/300523", "https://data.delijn.be/stops/303201"], ["https://data.delijn.be/stops/307153", "https://data.delijn.be/stops/307155"], ["https://data.delijn.be/stops/400912", "https://data.delijn.be/stops/400923"], ["https://data.delijn.be/stops/408827", "https://data.delijn.be/stops/408832"], ["https://data.delijn.be/stops/302481", "https://data.delijn.be/stops/302640"], ["https://data.delijn.be/stops/101188", "https://data.delijn.be/stops/205651"], ["https://data.delijn.be/stops/304004", "https://data.delijn.be/stops/304006"], ["https://data.delijn.be/stops/401635", "https://data.delijn.be/stops/308216"], ["https://data.delijn.be/stops/304834", "https://data.delijn.be/stops/305426"], ["https://data.delijn.be/stops/201673", "https://data.delijn.be/stops/209662"], ["https://data.delijn.be/stops/206900", "https://data.delijn.be/stops/306078"], ["https://data.delijn.be/stops/504539", "https://data.delijn.be/stops/509902"], ["https://data.delijn.be/stops/105908", "https://data.delijn.be/stops/109745"], ["https://data.delijn.be/stops/505099", "https://data.delijn.be/stops/505123"], ["https://data.delijn.be/stops/204721", "https://data.delijn.be/stops/214013"], ["https://data.delijn.be/stops/105091", "https://data.delijn.be/stops/108877"], ["https://data.delijn.be/stops/102202", "https://data.delijn.be/stops/105789"], ["https://data.delijn.be/stops/405822", "https://data.delijn.be/stops/405840"], ["https://data.delijn.be/stops/103909", "https://data.delijn.be/stops/105799"], ["https://data.delijn.be/stops/307211", "https://data.delijn.be/stops/307283"], ["https://data.delijn.be/stops/300447", "https://data.delijn.be/stops/308052"], ["https://data.delijn.be/stops/307002", "https://data.delijn.be/stops/307110"], ["https://data.delijn.be/stops/205262", "https://data.delijn.be/stops/205310"], ["https://data.delijn.be/stops/106787", "https://data.delijn.be/stops/106790"], ["https://data.delijn.be/stops/202677", "https://data.delijn.be/stops/202690"], ["https://data.delijn.be/stops/405109", "https://data.delijn.be/stops/405664"], ["https://data.delijn.be/stops/102491", "https://data.delijn.be/stops/400307"], ["https://data.delijn.be/stops/208565", "https://data.delijn.be/stops/209547"], ["https://data.delijn.be/stops/201128", "https://data.delijn.be/stops/201210"], ["https://data.delijn.be/stops/302140", "https://data.delijn.be/stops/302141"], ["https://data.delijn.be/stops/106695", "https://data.delijn.be/stops/109390"], ["https://data.delijn.be/stops/400937", "https://data.delijn.be/stops/400941"], ["https://data.delijn.be/stops/305732", "https://data.delijn.be/stops/305745"], ["https://data.delijn.be/stops/108648", "https://data.delijn.be/stops/108651"], ["https://data.delijn.be/stops/102493", "https://data.delijn.be/stops/102498"], ["https://data.delijn.be/stops/206177", "https://data.delijn.be/stops/305923"], ["https://data.delijn.be/stops/206799", "https://data.delijn.be/stops/207853"], ["https://data.delijn.be/stops/300509", "https://data.delijn.be/stops/305523"], ["https://data.delijn.be/stops/101781", "https://data.delijn.be/stops/104185"], ["https://data.delijn.be/stops/407176", "https://data.delijn.be/stops/409856"], ["https://data.delijn.be/stops/408571", "https://data.delijn.be/stops/408580"], ["https://data.delijn.be/stops/504172", "https://data.delijn.be/stops/509172"], ["https://data.delijn.be/stops/301671", "https://data.delijn.be/stops/307338"], ["https://data.delijn.be/stops/303617", "https://data.delijn.be/stops/303625"], ["https://data.delijn.be/stops/203527", "https://data.delijn.be/stops/210009"], ["https://data.delijn.be/stops/102703", "https://data.delijn.be/stops/107331"], ["https://data.delijn.be/stops/304369", "https://data.delijn.be/stops/307366"], ["https://data.delijn.be/stops/505664", "https://data.delijn.be/stops/509928"], ["https://data.delijn.be/stops/405363", "https://data.delijn.be/stops/405407"], ["https://data.delijn.be/stops/107542", "https://data.delijn.be/stops/109597"], ["https://data.delijn.be/stops/401441", "https://data.delijn.be/stops/404157"], ["https://data.delijn.be/stops/406172", "https://data.delijn.be/stops/406187"], ["https://data.delijn.be/stops/404450", "https://data.delijn.be/stops/404495"], ["https://data.delijn.be/stops/407492", "https://data.delijn.be/stops/407540"], ["https://data.delijn.be/stops/200079", "https://data.delijn.be/stops/202895"], ["https://data.delijn.be/stops/505512", "https://data.delijn.be/stops/505607"], ["https://data.delijn.be/stops/303778", "https://data.delijn.be/stops/303779"], ["https://data.delijn.be/stops/401059", "https://data.delijn.be/stops/401060"], ["https://data.delijn.be/stops/501472", "https://data.delijn.be/stops/505398"], ["https://data.delijn.be/stops/501176", "https://data.delijn.be/stops/506176"], ["https://data.delijn.be/stops/406310", "https://data.delijn.be/stops/407313"], ["https://data.delijn.be/stops/102131", "https://data.delijn.be/stops/106420"], ["https://data.delijn.be/stops/202582", "https://data.delijn.be/stops/203583"], ["https://data.delijn.be/stops/300643", "https://data.delijn.be/stops/304875"], ["https://data.delijn.be/stops/300880", "https://data.delijn.be/stops/300881"], ["https://data.delijn.be/stops/308027", "https://data.delijn.be/stops/308028"], ["https://data.delijn.be/stops/402400", "https://data.delijn.be/stops/402401"], ["https://data.delijn.be/stops/209174", "https://data.delijn.be/stops/209175"], ["https://data.delijn.be/stops/101718", "https://data.delijn.be/stops/107804"], ["https://data.delijn.be/stops/302742", "https://data.delijn.be/stops/302782"], ["https://data.delijn.be/stops/103286", "https://data.delijn.be/stops/109373"], ["https://data.delijn.be/stops/102647", "https://data.delijn.be/stops/109652"], ["https://data.delijn.be/stops/301598", "https://data.delijn.be/stops/304257"], ["https://data.delijn.be/stops/301655", "https://data.delijn.be/stops/307754"], ["https://data.delijn.be/stops/106400", "https://data.delijn.be/stops/107407"], ["https://data.delijn.be/stops/509833", "https://data.delijn.be/stops/509834"], ["https://data.delijn.be/stops/202494", "https://data.delijn.be/stops/202495"], ["https://data.delijn.be/stops/301048", "https://data.delijn.be/stops/301049"], ["https://data.delijn.be/stops/306959", "https://data.delijn.be/stops/306960"], ["https://data.delijn.be/stops/208690", "https://data.delijn.be/stops/208692"], ["https://data.delijn.be/stops/204068", "https://data.delijn.be/stops/204195"], ["https://data.delijn.be/stops/102668", "https://data.delijn.be/stops/306854"], ["https://data.delijn.be/stops/104812", "https://data.delijn.be/stops/105369"], ["https://data.delijn.be/stops/404510", "https://data.delijn.be/stops/404528"], ["https://data.delijn.be/stops/505141", "https://data.delijn.be/stops/507240"], ["https://data.delijn.be/stops/501438", "https://data.delijn.be/stops/506440"], ["https://data.delijn.be/stops/400732", "https://data.delijn.be/stops/400742"], ["https://data.delijn.be/stops/504989", "https://data.delijn.be/stops/509042"], ["https://data.delijn.be/stops/301376", "https://data.delijn.be/stops/302417"], ["https://data.delijn.be/stops/405501", "https://data.delijn.be/stops/405502"], ["https://data.delijn.be/stops/408943", "https://data.delijn.be/stops/408944"], ["https://data.delijn.be/stops/305429", "https://data.delijn.be/stops/308866"], ["https://data.delijn.be/stops/502283", "https://data.delijn.be/stops/507281"], ["https://data.delijn.be/stops/401026", "https://data.delijn.be/stops/401039"], ["https://data.delijn.be/stops/409117", "https://data.delijn.be/stops/409221"], ["https://data.delijn.be/stops/502643", "https://data.delijn.be/stops/507151"], ["https://data.delijn.be/stops/107224", "https://data.delijn.be/stops/109888"], ["https://data.delijn.be/stops/402743", "https://data.delijn.be/stops/402879"], ["https://data.delijn.be/stops/102526", "https://data.delijn.be/stops/402314"], ["https://data.delijn.be/stops/403412", "https://data.delijn.be/stops/410128"], ["https://data.delijn.be/stops/505102", "https://data.delijn.be/stops/509091"], ["https://data.delijn.be/stops/200960", "https://data.delijn.be/stops/202193"], ["https://data.delijn.be/stops/401833", "https://data.delijn.be/stops/401834"], ["https://data.delijn.be/stops/200336", "https://data.delijn.be/stops/200569"], ["https://data.delijn.be/stops/408600", "https://data.delijn.be/stops/408655"], ["https://data.delijn.be/stops/404206", "https://data.delijn.be/stops/404216"], ["https://data.delijn.be/stops/408785", "https://data.delijn.be/stops/408795"], ["https://data.delijn.be/stops/101075", "https://data.delijn.be/stops/102890"], ["https://data.delijn.be/stops/102010", "https://data.delijn.be/stops/108165"], ["https://data.delijn.be/stops/102093", "https://data.delijn.be/stops/105477"], ["https://data.delijn.be/stops/306944", "https://data.delijn.be/stops/306947"], ["https://data.delijn.be/stops/206941", "https://data.delijn.be/stops/209242"], ["https://data.delijn.be/stops/300042", "https://data.delijn.be/stops/300071"], ["https://data.delijn.be/stops/401267", "https://data.delijn.be/stops/410124"], ["https://data.delijn.be/stops/214003", "https://data.delijn.be/stops/215003"], ["https://data.delijn.be/stops/201929", "https://data.delijn.be/stops/203475"], ["https://data.delijn.be/stops/302375", "https://data.delijn.be/stops/304083"], ["https://data.delijn.be/stops/407991", "https://data.delijn.be/stops/407993"], ["https://data.delijn.be/stops/508077", "https://data.delijn.be/stops/508995"], ["https://data.delijn.be/stops/409110", "https://data.delijn.be/stops/409127"], ["https://data.delijn.be/stops/302907", "https://data.delijn.be/stops/302909"], ["https://data.delijn.be/stops/303718", "https://data.delijn.be/stops/303744"], ["https://data.delijn.be/stops/508499", "https://data.delijn.be/stops/508875"], ["https://data.delijn.be/stops/403633", "https://data.delijn.be/stops/404408"], ["https://data.delijn.be/stops/304936", "https://data.delijn.be/stops/304938"], ["https://data.delijn.be/stops/502295", "https://data.delijn.be/stops/507292"], ["https://data.delijn.be/stops/101421", "https://data.delijn.be/stops/107268"], ["https://data.delijn.be/stops/405022", "https://data.delijn.be/stops/405023"], ["https://data.delijn.be/stops/203272", "https://data.delijn.be/stops/203419"], ["https://data.delijn.be/stops/105811", "https://data.delijn.be/stops/105812"], ["https://data.delijn.be/stops/200703", "https://data.delijn.be/stops/203327"], ["https://data.delijn.be/stops/505054", "https://data.delijn.be/stops/507366"], ["https://data.delijn.be/stops/403043", "https://data.delijn.be/stops/403088"], ["https://data.delijn.be/stops/204587", "https://data.delijn.be/stops/205168"], ["https://data.delijn.be/stops/202035", "https://data.delijn.be/stops/202987"], ["https://data.delijn.be/stops/109794", "https://data.delijn.be/stops/109837"], ["https://data.delijn.be/stops/207672", "https://data.delijn.be/stops/209099"], ["https://data.delijn.be/stops/300011", "https://data.delijn.be/stops/304622"], ["https://data.delijn.be/stops/503550", "https://data.delijn.be/stops/505191"], ["https://data.delijn.be/stops/300595", "https://data.delijn.be/stops/303021"], ["https://data.delijn.be/stops/300219", "https://data.delijn.be/stops/300220"], ["https://data.delijn.be/stops/204016", "https://data.delijn.be/stops/205103"], ["https://data.delijn.be/stops/408823", "https://data.delijn.be/stops/408825"], ["https://data.delijn.be/stops/109996", "https://data.delijn.be/stops/400438"], ["https://data.delijn.be/stops/209690", "https://data.delijn.be/stops/209692"], ["https://data.delijn.be/stops/203196", "https://data.delijn.be/stops/211087"], ["https://data.delijn.be/stops/204650", "https://data.delijn.be/stops/205651"], ["https://data.delijn.be/stops/208357", "https://data.delijn.be/stops/209357"], ["https://data.delijn.be/stops/206434", "https://data.delijn.be/stops/207433"], ["https://data.delijn.be/stops/304500", "https://data.delijn.be/stops/304513"], ["https://data.delijn.be/stops/405146", "https://data.delijn.be/stops/405227"], ["https://data.delijn.be/stops/104476", "https://data.delijn.be/stops/308607"], ["https://data.delijn.be/stops/106567", "https://data.delijn.be/stops/108540"], ["https://data.delijn.be/stops/401418", "https://data.delijn.be/stops/305495"], ["https://data.delijn.be/stops/203345", "https://data.delijn.be/stops/209743"], ["https://data.delijn.be/stops/401252", "https://data.delijn.be/stops/401396"], ["https://data.delijn.be/stops/403312", "https://data.delijn.be/stops/403313"], ["https://data.delijn.be/stops/204719", "https://data.delijn.be/stops/204721"], ["https://data.delijn.be/stops/102670", "https://data.delijn.be/stops/103756"], ["https://data.delijn.be/stops/208837", "https://data.delijn.be/stops/209213"], ["https://data.delijn.be/stops/201105", "https://data.delijn.be/stops/201949"], ["https://data.delijn.be/stops/503023", "https://data.delijn.be/stops/503025"], ["https://data.delijn.be/stops/200156", "https://data.delijn.be/stops/200413"], ["https://data.delijn.be/stops/301548", "https://data.delijn.be/stops/301553"], ["https://data.delijn.be/stops/407037", "https://data.delijn.be/stops/407059"], ["https://data.delijn.be/stops/304689", "https://data.delijn.be/stops/304786"], ["https://data.delijn.be/stops/101364", "https://data.delijn.be/stops/107301"], ["https://data.delijn.be/stops/108679", "https://data.delijn.be/stops/306612"], ["https://data.delijn.be/stops/207351", "https://data.delijn.be/stops/207729"], ["https://data.delijn.be/stops/105091", "https://data.delijn.be/stops/105093"], ["https://data.delijn.be/stops/408302", "https://data.delijn.be/stops/408370"], ["https://data.delijn.be/stops/402121", "https://data.delijn.be/stops/402392"], ["https://data.delijn.be/stops/201182", "https://data.delijn.be/stops/202323"], ["https://data.delijn.be/stops/202144", "https://data.delijn.be/stops/202614"], ["https://data.delijn.be/stops/107236", "https://data.delijn.be/stops/107920"], ["https://data.delijn.be/stops/503347", "https://data.delijn.be/stops/508347"], ["https://data.delijn.be/stops/504411", "https://data.delijn.be/stops/505166"], ["https://data.delijn.be/stops/504222", "https://data.delijn.be/stops/504634"], ["https://data.delijn.be/stops/505646", "https://data.delijn.be/stops/507468"], ["https://data.delijn.be/stops/102517", "https://data.delijn.be/stops/406510"], ["https://data.delijn.be/stops/201769", "https://data.delijn.be/stops/208397"], ["https://data.delijn.be/stops/101062", "https://data.delijn.be/stops/103033"], ["https://data.delijn.be/stops/410002", "https://data.delijn.be/stops/410004"], ["https://data.delijn.be/stops/206837", "https://data.delijn.be/stops/207837"], ["https://data.delijn.be/stops/407523", "https://data.delijn.be/stops/407556"], ["https://data.delijn.be/stops/408017", "https://data.delijn.be/stops/408036"], ["https://data.delijn.be/stops/108210", "https://data.delijn.be/stops/108965"], ["https://data.delijn.be/stops/202384", "https://data.delijn.be/stops/202385"], ["https://data.delijn.be/stops/502357", "https://data.delijn.be/stops/507679"], ["https://data.delijn.be/stops/108966", "https://data.delijn.be/stops/108985"], ["https://data.delijn.be/stops/301927", "https://data.delijn.be/stops/306159"], ["https://data.delijn.be/stops/206633", "https://data.delijn.be/stops/207634"], ["https://data.delijn.be/stops/400094", "https://data.delijn.be/stops/409143"], ["https://data.delijn.be/stops/203388", "https://data.delijn.be/stops/209947"], ["https://data.delijn.be/stops/204221", "https://data.delijn.be/stops/204222"], ["https://data.delijn.be/stops/407464", "https://data.delijn.be/stops/410287"], ["https://data.delijn.be/stops/503088", "https://data.delijn.be/stops/503105"], ["https://data.delijn.be/stops/405156", "https://data.delijn.be/stops/405193"], ["https://data.delijn.be/stops/502689", "https://data.delijn.be/stops/507921"], ["https://data.delijn.be/stops/407286", "https://data.delijn.be/stops/408472"], ["https://data.delijn.be/stops/401026", "https://data.delijn.be/stops/409220"], ["https://data.delijn.be/stops/300024", "https://data.delijn.be/stops/307262"], ["https://data.delijn.be/stops/408370", "https://data.delijn.be/stops/408402"], ["https://data.delijn.be/stops/501412", "https://data.delijn.be/stops/501413"], ["https://data.delijn.be/stops/109225", "https://data.delijn.be/stops/109226"], ["https://data.delijn.be/stops/104821", "https://data.delijn.be/stops/104822"], ["https://data.delijn.be/stops/305400", "https://data.delijn.be/stops/305401"], ["https://data.delijn.be/stops/503401", "https://data.delijn.be/stops/504957"], ["https://data.delijn.be/stops/404136", "https://data.delijn.be/stops/404141"], ["https://data.delijn.be/stops/202414", "https://data.delijn.be/stops/202415"], ["https://data.delijn.be/stops/306643", "https://data.delijn.be/stops/308767"], ["https://data.delijn.be/stops/202465", "https://data.delijn.be/stops/203427"], ["https://data.delijn.be/stops/403716", "https://data.delijn.be/stops/403717"], ["https://data.delijn.be/stops/103397", "https://data.delijn.be/stops/108005"], ["https://data.delijn.be/stops/501641", "https://data.delijn.be/stops/506191"], ["https://data.delijn.be/stops/202868", "https://data.delijn.be/stops/208713"], ["https://data.delijn.be/stops/200337", "https://data.delijn.be/stops/201674"], ["https://data.delijn.be/stops/509264", "https://data.delijn.be/stops/509661"], ["https://data.delijn.be/stops/304348", "https://data.delijn.be/stops/304355"], ["https://data.delijn.be/stops/302495", "https://data.delijn.be/stops/302501"], ["https://data.delijn.be/stops/300449", "https://data.delijn.be/stops/300476"], ["https://data.delijn.be/stops/303171", "https://data.delijn.be/stops/304306"], ["https://data.delijn.be/stops/405913", "https://data.delijn.be/stops/405914"], ["https://data.delijn.be/stops/409082", "https://data.delijn.be/stops/409098"], ["https://data.delijn.be/stops/200006", "https://data.delijn.be/stops/201007"], ["https://data.delijn.be/stops/208539", "https://data.delijn.be/stops/209539"], ["https://data.delijn.be/stops/303114", "https://data.delijn.be/stops/305443"], ["https://data.delijn.be/stops/104638", "https://data.delijn.be/stops/107967"], ["https://data.delijn.be/stops/203195", "https://data.delijn.be/stops/209491"], ["https://data.delijn.be/stops/101502", "https://data.delijn.be/stops/308494"], ["https://data.delijn.be/stops/500009", "https://data.delijn.be/stops/507769"], ["https://data.delijn.be/stops/206122", "https://data.delijn.be/stops/207477"], ["https://data.delijn.be/stops/300482", "https://data.delijn.be/stops/308813"], ["https://data.delijn.be/stops/103257", "https://data.delijn.be/stops/105730"], ["https://data.delijn.be/stops/304502", "https://data.delijn.be/stops/306206"], ["https://data.delijn.be/stops/105424", "https://data.delijn.be/stops/105429"], ["https://data.delijn.be/stops/300361", "https://data.delijn.be/stops/300362"], ["https://data.delijn.be/stops/302960", "https://data.delijn.be/stops/302972"], ["https://data.delijn.be/stops/104605", "https://data.delijn.be/stops/109539"], ["https://data.delijn.be/stops/307255", "https://data.delijn.be/stops/307560"], ["https://data.delijn.be/stops/403975", "https://data.delijn.be/stops/405922"], ["https://data.delijn.be/stops/209107", "https://data.delijn.be/stops/209455"], ["https://data.delijn.be/stops/401772", "https://data.delijn.be/stops/401773"], ["https://data.delijn.be/stops/304730", "https://data.delijn.be/stops/305558"], ["https://data.delijn.be/stops/208219", "https://data.delijn.be/stops/209218"], ["https://data.delijn.be/stops/405139", "https://data.delijn.be/stops/406854"], ["https://data.delijn.be/stops/102472", "https://data.delijn.be/stops/405253"], ["https://data.delijn.be/stops/400195", "https://data.delijn.be/stops/401163"], ["https://data.delijn.be/stops/204015", "https://data.delijn.be/stops/205014"], ["https://data.delijn.be/stops/504226", "https://data.delijn.be/stops/509625"], ["https://data.delijn.be/stops/501076", "https://data.delijn.be/stops/501174"], ["https://data.delijn.be/stops/102019", "https://data.delijn.be/stops/109817"], ["https://data.delijn.be/stops/505822", "https://data.delijn.be/stops/508790"], ["https://data.delijn.be/stops/301413", "https://data.delijn.be/stops/301419"], ["https://data.delijn.be/stops/504126", "https://data.delijn.be/stops/509127"], ["https://data.delijn.be/stops/501067", "https://data.delijn.be/stops/501071"], ["https://data.delijn.be/stops/208500", "https://data.delijn.be/stops/209670"], ["https://data.delijn.be/stops/401758", "https://data.delijn.be/stops/406319"], ["https://data.delijn.be/stops/503994", "https://data.delijn.be/stops/508995"], ["https://data.delijn.be/stops/409695", "https://data.delijn.be/stops/409700"], ["https://data.delijn.be/stops/503035", "https://data.delijn.be/stops/505376"], ["https://data.delijn.be/stops/302736", "https://data.delijn.be/stops/307846"], ["https://data.delijn.be/stops/407827", "https://data.delijn.be/stops/407959"], ["https://data.delijn.be/stops/205489", "https://data.delijn.be/stops/205822"], ["https://data.delijn.be/stops/200237", "https://data.delijn.be/stops/200238"], ["https://data.delijn.be/stops/201841", "https://data.delijn.be/stops/504991"], ["https://data.delijn.be/stops/302306", "https://data.delijn.be/stops/302331"], ["https://data.delijn.be/stops/105603", "https://data.delijn.be/stops/105608"], ["https://data.delijn.be/stops/202282", "https://data.delijn.be/stops/203282"], ["https://data.delijn.be/stops/306670", "https://data.delijn.be/stops/306749"], ["https://data.delijn.be/stops/103329", "https://data.delijn.be/stops/109296"], ["https://data.delijn.be/stops/206321", "https://data.delijn.be/stops/207148"], ["https://data.delijn.be/stops/108699", "https://data.delijn.be/stops/108702"], ["https://data.delijn.be/stops/109993", "https://data.delijn.be/stops/109995"], ["https://data.delijn.be/stops/502202", "https://data.delijn.be/stops/504847"], ["https://data.delijn.be/stops/103084", "https://data.delijn.be/stops/106582"], ["https://data.delijn.be/stops/206865", "https://data.delijn.be/stops/208384"], ["https://data.delijn.be/stops/201577", "https://data.delijn.be/stops/202192"], ["https://data.delijn.be/stops/503412", "https://data.delijn.be/stops/503427"], ["https://data.delijn.be/stops/402176", "https://data.delijn.be/stops/410079"], ["https://data.delijn.be/stops/502451", "https://data.delijn.be/stops/502682"], ["https://data.delijn.be/stops/106075", "https://data.delijn.be/stops/106076"], ["https://data.delijn.be/stops/502664", "https://data.delijn.be/stops/507663"], ["https://data.delijn.be/stops/403625", "https://data.delijn.be/stops/408458"], ["https://data.delijn.be/stops/501164", "https://data.delijn.be/stops/506165"], ["https://data.delijn.be/stops/305238", "https://data.delijn.be/stops/305261"], ["https://data.delijn.be/stops/206719", "https://data.delijn.be/stops/206740"], ["https://data.delijn.be/stops/202163", "https://data.delijn.be/stops/202636"], ["https://data.delijn.be/stops/504598", "https://data.delijn.be/stops/504601"], ["https://data.delijn.be/stops/502320", "https://data.delijn.be/stops/502324"], ["https://data.delijn.be/stops/503849", "https://data.delijn.be/stops/505208"], ["https://data.delijn.be/stops/104802", "https://data.delijn.be/stops/109786"], ["https://data.delijn.be/stops/407242", "https://data.delijn.be/stops/407466"], ["https://data.delijn.be/stops/207372", "https://data.delijn.be/stops/207691"], ["https://data.delijn.be/stops/304336", "https://data.delijn.be/stops/305988"], ["https://data.delijn.be/stops/301802", "https://data.delijn.be/stops/301811"], ["https://data.delijn.be/stops/404106", "https://data.delijn.be/stops/408738"], ["https://data.delijn.be/stops/502743", "https://data.delijn.be/stops/505654"], ["https://data.delijn.be/stops/405512", "https://data.delijn.be/stops/407787"], ["https://data.delijn.be/stops/502116", "https://data.delijn.be/stops/507143"], ["https://data.delijn.be/stops/103159", "https://data.delijn.be/stops/406777"], ["https://data.delijn.be/stops/106274", "https://data.delijn.be/stops/106275"], ["https://data.delijn.be/stops/501531", "https://data.delijn.be/stops/506199"], ["https://data.delijn.be/stops/300238", "https://data.delijn.be/stops/300239"], ["https://data.delijn.be/stops/504428", "https://data.delijn.be/stops/508301"], ["https://data.delijn.be/stops/206806", "https://data.delijn.be/stops/206889"], ["https://data.delijn.be/stops/404494", "https://data.delijn.be/stops/404495"], ["https://data.delijn.be/stops/400966", "https://data.delijn.be/stops/400967"], ["https://data.delijn.be/stops/406318", "https://data.delijn.be/stops/406406"], ["https://data.delijn.be/stops/507372", "https://data.delijn.be/stops/507373"], ["https://data.delijn.be/stops/101332", "https://data.delijn.be/stops/106631"], ["https://data.delijn.be/stops/206773", "https://data.delijn.be/stops/206793"], ["https://data.delijn.be/stops/202966", "https://data.delijn.be/stops/204063"], ["https://data.delijn.be/stops/300287", "https://data.delijn.be/stops/300303"], ["https://data.delijn.be/stops/302452", "https://data.delijn.be/stops/302458"], ["https://data.delijn.be/stops/303819", "https://data.delijn.be/stops/303825"], ["https://data.delijn.be/stops/507136", "https://data.delijn.be/stops/507150"], ["https://data.delijn.be/stops/401466", "https://data.delijn.be/stops/401467"], ["https://data.delijn.be/stops/301899", "https://data.delijn.be/stops/305084"], ["https://data.delijn.be/stops/304300", "https://data.delijn.be/stops/304301"], ["https://data.delijn.be/stops/108292", "https://data.delijn.be/stops/109735"], ["https://data.delijn.be/stops/201334", "https://data.delijn.be/stops/201384"], ["https://data.delijn.be/stops/200691", "https://data.delijn.be/stops/203809"], ["https://data.delijn.be/stops/106615", "https://data.delijn.be/stops/106694"], ["https://data.delijn.be/stops/201857", "https://data.delijn.be/stops/210080"], ["https://data.delijn.be/stops/407910", "https://data.delijn.be/stops/407913"], ["https://data.delijn.be/stops/302120", "https://data.delijn.be/stops/302125"], ["https://data.delijn.be/stops/306690", "https://data.delijn.be/stops/308784"], ["https://data.delijn.be/stops/508765", "https://data.delijn.be/stops/509971"], ["https://data.delijn.be/stops/405078", "https://data.delijn.be/stops/405108"], ["https://data.delijn.be/stops/107731", "https://data.delijn.be/stops/107732"], ["https://data.delijn.be/stops/303078", "https://data.delijn.be/stops/303079"], ["https://data.delijn.be/stops/304894", "https://data.delijn.be/stops/304900"], ["https://data.delijn.be/stops/400976", "https://data.delijn.be/stops/409654"], ["https://data.delijn.be/stops/501557", "https://data.delijn.be/stops/506635"], ["https://data.delijn.be/stops/103055", "https://data.delijn.be/stops/103715"], ["https://data.delijn.be/stops/501226", "https://data.delijn.be/stops/509840"], ["https://data.delijn.be/stops/204418", "https://data.delijn.be/stops/205764"], ["https://data.delijn.be/stops/502341", "https://data.delijn.be/stops/507341"], ["https://data.delijn.be/stops/504715", "https://data.delijn.be/stops/509715"], ["https://data.delijn.be/stops/108855", "https://data.delijn.be/stops/108856"], ["https://data.delijn.be/stops/307694", "https://data.delijn.be/stops/307696"], ["https://data.delijn.be/stops/506240", "https://data.delijn.be/stops/506243"], ["https://data.delijn.be/stops/505161", "https://data.delijn.be/stops/505945"], ["https://data.delijn.be/stops/305106", "https://data.delijn.be/stops/305107"], ["https://data.delijn.be/stops/302706", "https://data.delijn.be/stops/302732"], ["https://data.delijn.be/stops/109575", "https://data.delijn.be/stops/109576"], ["https://data.delijn.be/stops/104391", "https://data.delijn.be/stops/104392"], ["https://data.delijn.be/stops/502522", "https://data.delijn.be/stops/509795"], ["https://data.delijn.be/stops/202629", "https://data.delijn.be/stops/203628"], ["https://data.delijn.be/stops/501200", "https://data.delijn.be/stops/506257"], ["https://data.delijn.be/stops/205308", "https://data.delijn.be/stops/214008"], ["https://data.delijn.be/stops/401275", "https://data.delijn.be/stops/401283"], ["https://data.delijn.be/stops/402880", "https://data.delijn.be/stops/402882"], ["https://data.delijn.be/stops/300107", "https://data.delijn.be/stops/300115"], ["https://data.delijn.be/stops/208072", "https://data.delijn.be/stops/209072"], ["https://data.delijn.be/stops/304806", "https://data.delijn.be/stops/307881"], ["https://data.delijn.be/stops/505586", "https://data.delijn.be/stops/507007"], ["https://data.delijn.be/stops/404771", "https://data.delijn.be/stops/410051"], ["https://data.delijn.be/stops/501332", "https://data.delijn.be/stops/501353"], ["https://data.delijn.be/stops/202924", "https://data.delijn.be/stops/203920"], ["https://data.delijn.be/stops/200494", "https://data.delijn.be/stops/201632"], ["https://data.delijn.be/stops/103746", "https://data.delijn.be/stops/105792"], ["https://data.delijn.be/stops/304586", "https://data.delijn.be/stops/304639"], ["https://data.delijn.be/stops/405345", "https://data.delijn.be/stops/405430"], ["https://data.delijn.be/stops/304783", "https://data.delijn.be/stops/304786"], ["https://data.delijn.be/stops/501484", "https://data.delijn.be/stops/501601"], ["https://data.delijn.be/stops/302381", "https://data.delijn.be/stops/304083"], ["https://data.delijn.be/stops/304397", "https://data.delijn.be/stops/307399"], ["https://data.delijn.be/stops/500563", "https://data.delijn.be/stops/501137"], ["https://data.delijn.be/stops/408821", "https://data.delijn.be/stops/408827"], ["https://data.delijn.be/stops/504196", "https://data.delijn.be/stops/509154"], ["https://data.delijn.be/stops/409260", "https://data.delijn.be/stops/409261"], ["https://data.delijn.be/stops/107926", "https://data.delijn.be/stops/107928"], ["https://data.delijn.be/stops/504058", "https://data.delijn.be/stops/509638"], ["https://data.delijn.be/stops/305091", "https://data.delijn.be/stops/305094"], ["https://data.delijn.be/stops/200752", "https://data.delijn.be/stops/209250"], ["https://data.delijn.be/stops/304580", "https://data.delijn.be/stops/306052"], ["https://data.delijn.be/stops/401830", "https://data.delijn.be/stops/406048"], ["https://data.delijn.be/stops/101483", "https://data.delijn.be/stops/108342"], ["https://data.delijn.be/stops/505951", "https://data.delijn.be/stops/508279"], ["https://data.delijn.be/stops/303457", "https://data.delijn.be/stops/303519"], ["https://data.delijn.be/stops/403215", "https://data.delijn.be/stops/403368"], ["https://data.delijn.be/stops/301233", "https://data.delijn.be/stops/301234"], ["https://data.delijn.be/stops/300704", "https://data.delijn.be/stops/308066"], ["https://data.delijn.be/stops/402819", "https://data.delijn.be/stops/406965"], ["https://data.delijn.be/stops/500954", "https://data.delijn.be/stops/509164"], ["https://data.delijn.be/stops/201943", "https://data.delijn.be/stops/202146"], ["https://data.delijn.be/stops/301766", "https://data.delijn.be/stops/301780"], ["https://data.delijn.be/stops/504588", "https://data.delijn.be/stops/509588"], ["https://data.delijn.be/stops/304590", "https://data.delijn.be/stops/304605"], ["https://data.delijn.be/stops/205102", "https://data.delijn.be/stops/205701"], ["https://data.delijn.be/stops/502047", "https://data.delijn.be/stops/502616"], ["https://data.delijn.be/stops/200010", "https://data.delijn.be/stops/200011"], ["https://data.delijn.be/stops/501409", "https://data.delijn.be/stops/506415"], ["https://data.delijn.be/stops/204397", "https://data.delijn.be/stops/205768"], ["https://data.delijn.be/stops/101782", "https://data.delijn.be/stops/103369"], ["https://data.delijn.be/stops/501632", "https://data.delijn.be/stops/506035"], ["https://data.delijn.be/stops/300258", "https://data.delijn.be/stops/303827"], ["https://data.delijn.be/stops/300243", "https://data.delijn.be/stops/304626"], ["https://data.delijn.be/stops/308486", "https://data.delijn.be/stops/308488"], ["https://data.delijn.be/stops/300254", "https://data.delijn.be/stops/305420"], ["https://data.delijn.be/stops/206914", "https://data.delijn.be/stops/207354"], ["https://data.delijn.be/stops/402141", "https://data.delijn.be/stops/402438"], ["https://data.delijn.be/stops/407205", "https://data.delijn.be/stops/408810"], ["https://data.delijn.be/stops/101576", "https://data.delijn.be/stops/105463"], ["https://data.delijn.be/stops/402704", "https://data.delijn.be/stops/402865"], ["https://data.delijn.be/stops/102533", "https://data.delijn.be/stops/102538"], ["https://data.delijn.be/stops/107344", "https://data.delijn.be/stops/107346"], ["https://data.delijn.be/stops/506386", "https://data.delijn.be/stops/506493"], ["https://data.delijn.be/stops/401864", "https://data.delijn.be/stops/401867"], ["https://data.delijn.be/stops/101087", "https://data.delijn.be/stops/105972"], ["https://data.delijn.be/stops/102453", "https://data.delijn.be/stops/109642"], ["https://data.delijn.be/stops/208352", "https://data.delijn.be/stops/218019"], ["https://data.delijn.be/stops/204783", "https://data.delijn.be/stops/205788"], ["https://data.delijn.be/stops/102216", "https://data.delijn.be/stops/105533"], ["https://data.delijn.be/stops/202695", "https://data.delijn.be/stops/203696"], ["https://data.delijn.be/stops/201886", "https://data.delijn.be/stops/203977"], ["https://data.delijn.be/stops/303763", "https://data.delijn.be/stops/303781"], ["https://data.delijn.be/stops/302994", "https://data.delijn.be/stops/303003"], ["https://data.delijn.be/stops/108064", "https://data.delijn.be/stops/108068"], ["https://data.delijn.be/stops/208343", "https://data.delijn.be/stops/219031"], ["https://data.delijn.be/stops/302877", "https://data.delijn.be/stops/302894"], ["https://data.delijn.be/stops/504489", "https://data.delijn.be/stops/509248"], ["https://data.delijn.be/stops/308685", "https://data.delijn.be/stops/308686"], ["https://data.delijn.be/stops/103274", "https://data.delijn.be/stops/107202"], ["https://data.delijn.be/stops/107427", "https://data.delijn.be/stops/107428"], ["https://data.delijn.be/stops/402772", "https://data.delijn.be/stops/402777"], ["https://data.delijn.be/stops/103076", "https://data.delijn.be/stops/105172"], ["https://data.delijn.be/stops/400234", "https://data.delijn.be/stops/400236"], ["https://data.delijn.be/stops/302226", "https://data.delijn.be/stops/307717"], ["https://data.delijn.be/stops/103241", "https://data.delijn.be/stops/107293"], ["https://data.delijn.be/stops/203463", "https://data.delijn.be/stops/203464"], ["https://data.delijn.be/stops/405161", "https://data.delijn.be/stops/405279"], ["https://data.delijn.be/stops/308466", "https://data.delijn.be/stops/308467"], ["https://data.delijn.be/stops/504630", "https://data.delijn.be/stops/509630"], ["https://data.delijn.be/stops/500944", "https://data.delijn.be/stops/509618"], ["https://data.delijn.be/stops/302731", "https://data.delijn.be/stops/302735"], ["https://data.delijn.be/stops/200711", "https://data.delijn.be/stops/203602"], ["https://data.delijn.be/stops/502029", "https://data.delijn.be/stops/507029"], ["https://data.delijn.be/stops/305531", "https://data.delijn.be/stops/305532"], ["https://data.delijn.be/stops/107249", "https://data.delijn.be/stops/107252"], ["https://data.delijn.be/stops/108382", "https://data.delijn.be/stops/108384"], ["https://data.delijn.be/stops/503575", "https://data.delijn.be/stops/509902"], ["https://data.delijn.be/stops/204665", "https://data.delijn.be/stops/204688"], ["https://data.delijn.be/stops/305681", "https://data.delijn.be/stops/305706"], ["https://data.delijn.be/stops/503626", "https://data.delijn.be/stops/508626"], ["https://data.delijn.be/stops/303345", "https://data.delijn.be/stops/308932"], ["https://data.delijn.be/stops/404862", "https://data.delijn.be/stops/404934"], ["https://data.delijn.be/stops/300817", "https://data.delijn.be/stops/302986"], ["https://data.delijn.be/stops/200996", "https://data.delijn.be/stops/201587"], ["https://data.delijn.be/stops/207249", "https://data.delijn.be/stops/208951"], ["https://data.delijn.be/stops/403161", "https://data.delijn.be/stops/403479"], ["https://data.delijn.be/stops/102734", "https://data.delijn.be/stops/105823"], ["https://data.delijn.be/stops/304120", "https://data.delijn.be/stops/307556"], ["https://data.delijn.be/stops/503951", "https://data.delijn.be/stops/508357"], ["https://data.delijn.be/stops/303517", "https://data.delijn.be/stops/307892"], ["https://data.delijn.be/stops/503222", "https://data.delijn.be/stops/505261"], ["https://data.delijn.be/stops/501197", "https://data.delijn.be/stops/506194"], ["https://data.delijn.be/stops/300515", "https://data.delijn.be/stops/300517"], ["https://data.delijn.be/stops/304150", "https://data.delijn.be/stops/304162"], ["https://data.delijn.be/stops/206867", "https://data.delijn.be/stops/208810"], ["https://data.delijn.be/stops/106110", "https://data.delijn.be/stops/106170"], ["https://data.delijn.be/stops/106147", "https://data.delijn.be/stops/106157"], ["https://data.delijn.be/stops/108084", "https://data.delijn.be/stops/108385"], ["https://data.delijn.be/stops/205804", "https://data.delijn.be/stops/208722"], ["https://data.delijn.be/stops/101643", "https://data.delijn.be/stops/108000"], ["https://data.delijn.be/stops/302551", "https://data.delijn.be/stops/305859"], ["https://data.delijn.be/stops/304279", "https://data.delijn.be/stops/304281"], ["https://data.delijn.be/stops/504647", "https://data.delijn.be/stops/505101"], ["https://data.delijn.be/stops/108937", "https://data.delijn.be/stops/108939"], ["https://data.delijn.be/stops/503298", "https://data.delijn.be/stops/508298"], ["https://data.delijn.be/stops/501265", "https://data.delijn.be/stops/506565"], ["https://data.delijn.be/stops/202961", "https://data.delijn.be/stops/203960"], ["https://data.delijn.be/stops/404288", "https://data.delijn.be/stops/409748"], ["https://data.delijn.be/stops/200649", "https://data.delijn.be/stops/201583"], ["https://data.delijn.be/stops/503877", "https://data.delijn.be/stops/508868"], ["https://data.delijn.be/stops/206589", "https://data.delijn.be/stops/207573"], ["https://data.delijn.be/stops/405012", "https://data.delijn.be/stops/405018"], ["https://data.delijn.be/stops/410279", "https://data.delijn.be/stops/410324"], ["https://data.delijn.be/stops/409044", "https://data.delijn.be/stops/409046"], ["https://data.delijn.be/stops/503091", "https://data.delijn.be/stops/503102"], ["https://data.delijn.be/stops/400635", "https://data.delijn.be/stops/403027"], ["https://data.delijn.be/stops/108524", "https://data.delijn.be/stops/108529"], ["https://data.delijn.be/stops/200745", "https://data.delijn.be/stops/208644"], ["https://data.delijn.be/stops/502121", "https://data.delijn.be/stops/507112"], ["https://data.delijn.be/stops/501470", "https://data.delijn.be/stops/506476"], ["https://data.delijn.be/stops/300431", "https://data.delijn.be/stops/300437"], ["https://data.delijn.be/stops/400122", "https://data.delijn.be/stops/409194"], ["https://data.delijn.be/stops/109363", "https://data.delijn.be/stops/109364"], ["https://data.delijn.be/stops/106255", "https://data.delijn.be/stops/106256"], ["https://data.delijn.be/stops/405823", "https://data.delijn.be/stops/409415"], ["https://data.delijn.be/stops/301476", "https://data.delijn.be/stops/308705"], ["https://data.delijn.be/stops/202008", "https://data.delijn.be/stops/203651"], ["https://data.delijn.be/stops/106771", "https://data.delijn.be/stops/106806"], ["https://data.delijn.be/stops/507689", "https://data.delijn.be/stops/509739"], ["https://data.delijn.be/stops/406431", "https://data.delijn.be/stops/406432"], ["https://data.delijn.be/stops/408944", "https://data.delijn.be/stops/409242"], ["https://data.delijn.be/stops/504837", "https://data.delijn.be/stops/506002"], ["https://data.delijn.be/stops/300352", "https://data.delijn.be/stops/304858"], ["https://data.delijn.be/stops/305100", "https://data.delijn.be/stops/305138"], ["https://data.delijn.be/stops/308231", "https://data.delijn.be/stops/308232"], ["https://data.delijn.be/stops/203079", "https://data.delijn.be/stops/203492"], ["https://data.delijn.be/stops/300007", "https://data.delijn.be/stops/304683"], ["https://data.delijn.be/stops/302486", "https://data.delijn.be/stops/302487"], ["https://data.delijn.be/stops/405410", "https://data.delijn.be/stops/405412"], ["https://data.delijn.be/stops/504224", "https://data.delijn.be/stops/509224"], ["https://data.delijn.be/stops/502392", "https://data.delijn.be/stops/507381"], ["https://data.delijn.be/stops/103302", "https://data.delijn.be/stops/105767"], ["https://data.delijn.be/stops/403030", "https://data.delijn.be/stops/403569"], ["https://data.delijn.be/stops/101971", "https://data.delijn.be/stops/105665"], ["https://data.delijn.be/stops/306794", "https://data.delijn.be/stops/308448"], ["https://data.delijn.be/stops/302190", "https://data.delijn.be/stops/302191"], ["https://data.delijn.be/stops/400575", "https://data.delijn.be/stops/400635"], ["https://data.delijn.be/stops/504499", "https://data.delijn.be/stops/505411"], ["https://data.delijn.be/stops/302716", "https://data.delijn.be/stops/302720"], ["https://data.delijn.be/stops/403608", "https://data.delijn.be/stops/410037"], ["https://data.delijn.be/stops/101022", "https://data.delijn.be/stops/106040"], ["https://data.delijn.be/stops/409263", "https://data.delijn.be/stops/410286"], ["https://data.delijn.be/stops/501398", "https://data.delijn.be/stops/501399"], ["https://data.delijn.be/stops/406564", "https://data.delijn.be/stops/407201"], ["https://data.delijn.be/stops/408855", "https://data.delijn.be/stops/408857"], ["https://data.delijn.be/stops/106232", "https://data.delijn.be/stops/109804"], ["https://data.delijn.be/stops/108073", "https://data.delijn.be/stops/108842"], ["https://data.delijn.be/stops/508253", "https://data.delijn.be/stops/509843"], ["https://data.delijn.be/stops/400746", "https://data.delijn.be/stops/409807"], ["https://data.delijn.be/stops/408621", "https://data.delijn.be/stops/408648"], ["https://data.delijn.be/stops/502660", "https://data.delijn.be/stops/507660"], ["https://data.delijn.be/stops/206772", "https://data.delijn.be/stops/209030"], ["https://data.delijn.be/stops/304826", "https://data.delijn.be/stops/306405"], ["https://data.delijn.be/stops/400804", "https://data.delijn.be/stops/400878"], ["https://data.delijn.be/stops/301243", "https://data.delijn.be/stops/308135"], ["https://data.delijn.be/stops/301360", "https://data.delijn.be/stops/308709"], ["https://data.delijn.be/stops/300488", "https://data.delijn.be/stops/300494"], ["https://data.delijn.be/stops/503194", "https://data.delijn.be/stops/508198"], ["https://data.delijn.be/stops/404478", "https://data.delijn.be/stops/409136"], ["https://data.delijn.be/stops/204646", "https://data.delijn.be/stops/204647"], ["https://data.delijn.be/stops/407805", "https://data.delijn.be/stops/407806"], ["https://data.delijn.be/stops/400582", "https://data.delijn.be/stops/400618"], ["https://data.delijn.be/stops/200959", "https://data.delijn.be/stops/201908"], ["https://data.delijn.be/stops/502446", "https://data.delijn.be/stops/507462"], ["https://data.delijn.be/stops/200873", "https://data.delijn.be/stops/200893"], ["https://data.delijn.be/stops/406256", "https://data.delijn.be/stops/408416"], ["https://data.delijn.be/stops/208404", "https://data.delijn.be/stops/209491"], ["https://data.delijn.be/stops/204156", "https://data.delijn.be/stops/214007"], ["https://data.delijn.be/stops/200391", "https://data.delijn.be/stops/208718"], ["https://data.delijn.be/stops/201134", "https://data.delijn.be/stops/202451"], ["https://data.delijn.be/stops/505920", "https://data.delijn.be/stops/508923"], ["https://data.delijn.be/stops/405631", "https://data.delijn.be/stops/410211"], ["https://data.delijn.be/stops/400052", "https://data.delijn.be/stops/400063"], ["https://data.delijn.be/stops/503607", "https://data.delijn.be/stops/508616"], ["https://data.delijn.be/stops/206505", "https://data.delijn.be/stops/207673"], ["https://data.delijn.be/stops/102795", "https://data.delijn.be/stops/103125"], ["https://data.delijn.be/stops/304051", "https://data.delijn.be/stops/304058"], ["https://data.delijn.be/stops/101511", "https://data.delijn.be/stops/305994"], ["https://data.delijn.be/stops/202347", "https://data.delijn.be/stops/202875"], ["https://data.delijn.be/stops/401813", "https://data.delijn.be/stops/406239"], ["https://data.delijn.be/stops/306267", "https://data.delijn.be/stops/307326"], ["https://data.delijn.be/stops/402022", "https://data.delijn.be/stops/408910"], ["https://data.delijn.be/stops/105733", "https://data.delijn.be/stops/109836"], ["https://data.delijn.be/stops/400212", "https://data.delijn.be/stops/408489"], ["https://data.delijn.be/stops/208478", "https://data.delijn.be/stops/209479"], ["https://data.delijn.be/stops/503025", "https://data.delijn.be/stops/508223"], ["https://data.delijn.be/stops/202441", "https://data.delijn.be/stops/210047"], ["https://data.delijn.be/stops/503099", "https://data.delijn.be/stops/505394"], ["https://data.delijn.be/stops/203771", "https://data.delijn.be/stops/209641"], ["https://data.delijn.be/stops/304367", "https://data.delijn.be/stops/307373"], ["https://data.delijn.be/stops/208332", "https://data.delijn.be/stops/208334"], ["https://data.delijn.be/stops/201646", "https://data.delijn.be/stops/201648"], ["https://data.delijn.be/stops/203114", "https://data.delijn.be/stops/204079"], ["https://data.delijn.be/stops/505566", "https://data.delijn.be/stops/505660"], ["https://data.delijn.be/stops/303279", "https://data.delijn.be/stops/303642"], ["https://data.delijn.be/stops/300134", "https://data.delijn.be/stops/307849"], ["https://data.delijn.be/stops/101658", "https://data.delijn.be/stops/102639"], ["https://data.delijn.be/stops/302705", "https://data.delijn.be/stops/302732"], ["https://data.delijn.be/stops/106633", "https://data.delijn.be/stops/106635"], ["https://data.delijn.be/stops/504692", "https://data.delijn.be/stops/505940"], ["https://data.delijn.be/stops/303892", "https://data.delijn.be/stops/305568"], ["https://data.delijn.be/stops/105251", "https://data.delijn.be/stops/105268"], ["https://data.delijn.be/stops/405145", "https://data.delijn.be/stops/405238"], ["https://data.delijn.be/stops/101494", "https://data.delijn.be/stops/108303"], ["https://data.delijn.be/stops/301268", "https://data.delijn.be/stops/303421"], ["https://data.delijn.be/stops/206826", "https://data.delijn.be/stops/207320"], ["https://data.delijn.be/stops/405499", "https://data.delijn.be/stops/407908"], ["https://data.delijn.be/stops/204582", "https://data.delijn.be/stops/205171"], ["https://data.delijn.be/stops/200399", "https://data.delijn.be/stops/201899"], ["https://data.delijn.be/stops/505015", "https://data.delijn.be/stops/505766"], ["https://data.delijn.be/stops/406834", "https://data.delijn.be/stops/407135"], ["https://data.delijn.be/stops/405426", "https://data.delijn.be/stops/405434"], ["https://data.delijn.be/stops/200080", "https://data.delijn.be/stops/207933"], ["https://data.delijn.be/stops/204124", "https://data.delijn.be/stops/205128"], ["https://data.delijn.be/stops/200877", "https://data.delijn.be/stops/210016"], ["https://data.delijn.be/stops/102109", "https://data.delijn.be/stops/106323"], ["https://data.delijn.be/stops/405515", "https://data.delijn.be/stops/407319"], ["https://data.delijn.be/stops/204511", "https://data.delijn.be/stops/205510"], ["https://data.delijn.be/stops/404238", "https://data.delijn.be/stops/404244"], ["https://data.delijn.be/stops/400827", "https://data.delijn.be/stops/401664"], ["https://data.delijn.be/stops/509122", "https://data.delijn.be/stops/509261"], ["https://data.delijn.be/stops/206510", "https://data.delijn.be/stops/207136"], ["https://data.delijn.be/stops/103503", "https://data.delijn.be/stops/109897"], ["https://data.delijn.be/stops/301274", "https://data.delijn.be/stops/301275"], ["https://data.delijn.be/stops/301972", "https://data.delijn.be/stops/306198"], ["https://data.delijn.be/stops/300480", "https://data.delijn.be/stops/308813"], ["https://data.delijn.be/stops/104964", "https://data.delijn.be/stops/109461"], ["https://data.delijn.be/stops/502552", "https://data.delijn.be/stops/505051"], ["https://data.delijn.be/stops/104005", "https://data.delijn.be/stops/104760"], ["https://data.delijn.be/stops/402375", "https://data.delijn.be/stops/409359"], ["https://data.delijn.be/stops/405118", "https://data.delijn.be/stops/405848"], ["https://data.delijn.be/stops/504409", "https://data.delijn.be/stops/504414"], ["https://data.delijn.be/stops/200722", "https://data.delijn.be/stops/211032"], ["https://data.delijn.be/stops/105297", "https://data.delijn.be/stops/109971"], ["https://data.delijn.be/stops/301237", "https://data.delijn.be/stops/301242"], ["https://data.delijn.be/stops/207019", "https://data.delijn.be/stops/207078"], ["https://data.delijn.be/stops/308652", "https://data.delijn.be/stops/308684"], ["https://data.delijn.be/stops/103066", "https://data.delijn.be/stops/107422"], ["https://data.delijn.be/stops/208754", "https://data.delijn.be/stops/209128"], ["https://data.delijn.be/stops/109158", "https://data.delijn.be/stops/109234"], ["https://data.delijn.be/stops/304316", "https://data.delijn.be/stops/305280"], ["https://data.delijn.be/stops/300260", "https://data.delijn.be/stops/300272"], ["https://data.delijn.be/stops/503994", "https://data.delijn.be/stops/505831"], ["https://data.delijn.be/stops/209432", "https://data.delijn.be/stops/209436"], ["https://data.delijn.be/stops/300012", "https://data.delijn.be/stops/300757"], ["https://data.delijn.be/stops/105511", "https://data.delijn.be/stops/105790"], ["https://data.delijn.be/stops/102287", "https://data.delijn.be/stops/109008"], ["https://data.delijn.be/stops/405687", "https://data.delijn.be/stops/405689"], ["https://data.delijn.be/stops/401364", "https://data.delijn.be/stops/406060"], ["https://data.delijn.be/stops/105019", "https://data.delijn.be/stops/106830"], ["https://data.delijn.be/stops/109188", "https://data.delijn.be/stops/109189"], ["https://data.delijn.be/stops/508376", "https://data.delijn.be/stops/508441"], ["https://data.delijn.be/stops/405155", "https://data.delijn.be/stops/405257"], ["https://data.delijn.be/stops/101305", "https://data.delijn.be/stops/103106"], ["https://data.delijn.be/stops/409530", "https://data.delijn.be/stops/409532"], ["https://data.delijn.be/stops/204198", "https://data.delijn.be/stops/205199"], ["https://data.delijn.be/stops/208422", "https://data.delijn.be/stops/208743"], ["https://data.delijn.be/stops/405492", "https://data.delijn.be/stops/409319"], ["https://data.delijn.be/stops/303284", "https://data.delijn.be/stops/303318"], ["https://data.delijn.be/stops/301114", "https://data.delijn.be/stops/307637"], ["https://data.delijn.be/stops/502190", "https://data.delijn.be/stops/507203"], ["https://data.delijn.be/stops/502452", "https://data.delijn.be/stops/507452"], ["https://data.delijn.be/stops/109087", "https://data.delijn.be/stops/109316"], ["https://data.delijn.be/stops/405041", "https://data.delijn.be/stops/405068"], ["https://data.delijn.be/stops/402245", "https://data.delijn.be/stops/402254"], ["https://data.delijn.be/stops/508508", "https://data.delijn.be/stops/508512"], ["https://data.delijn.be/stops/405453", "https://data.delijn.be/stops/408894"], ["https://data.delijn.be/stops/101951", "https://data.delijn.be/stops/108798"], ["https://data.delijn.be/stops/209600", "https://data.delijn.be/stops/307304"], ["https://data.delijn.be/stops/206059", "https://data.delijn.be/stops/207161"], ["https://data.delijn.be/stops/200894", "https://data.delijn.be/stops/203338"], ["https://data.delijn.be/stops/404883", "https://data.delijn.be/stops/404965"], ["https://data.delijn.be/stops/503364", "https://data.delijn.be/stops/508723"], ["https://data.delijn.be/stops/504213", "https://data.delijn.be/stops/509219"], ["https://data.delijn.be/stops/207014", "https://data.delijn.be/stops/207386"], ["https://data.delijn.be/stops/409543", "https://data.delijn.be/stops/409561"], ["https://data.delijn.be/stops/101370", "https://data.delijn.be/stops/101805"], ["https://data.delijn.be/stops/405794", "https://data.delijn.be/stops/409436"], ["https://data.delijn.be/stops/503256", "https://data.delijn.be/stops/503417"], ["https://data.delijn.be/stops/101530", "https://data.delijn.be/stops/104770"], ["https://data.delijn.be/stops/308151", "https://data.delijn.be/stops/308167"], ["https://data.delijn.be/stops/202144", "https://data.delijn.be/stops/202145"], ["https://data.delijn.be/stops/307476", "https://data.delijn.be/stops/307479"], ["https://data.delijn.be/stops/404449", "https://data.delijn.be/stops/404536"], ["https://data.delijn.be/stops/204031", "https://data.delijn.be/stops/204557"], ["https://data.delijn.be/stops/200031", "https://data.delijn.be/stops/201075"], ["https://data.delijn.be/stops/104671", "https://data.delijn.be/stops/107378"], ["https://data.delijn.be/stops/106426", "https://data.delijn.be/stops/106516"], ["https://data.delijn.be/stops/108965", "https://data.delijn.be/stops/108970"], ["https://data.delijn.be/stops/302166", "https://data.delijn.be/stops/304017"], ["https://data.delijn.be/stops/206280", "https://data.delijn.be/stops/207398"], ["https://data.delijn.be/stops/102536", "https://data.delijn.be/stops/405723"], ["https://data.delijn.be/stops/404754", "https://data.delijn.be/stops/404755"], ["https://data.delijn.be/stops/108526", "https://data.delijn.be/stops/108527"], ["https://data.delijn.be/stops/509342", "https://data.delijn.be/stops/509345"], ["https://data.delijn.be/stops/211012", "https://data.delijn.be/stops/502275"], ["https://data.delijn.be/stops/200242", "https://data.delijn.be/stops/201205"], ["https://data.delijn.be/stops/408861", "https://data.delijn.be/stops/408868"], ["https://data.delijn.be/stops/307613", "https://data.delijn.be/stops/307614"], ["https://data.delijn.be/stops/403798", "https://data.delijn.be/stops/403807"], ["https://data.delijn.be/stops/101719", "https://data.delijn.be/stops/103678"], ["https://data.delijn.be/stops/200309", "https://data.delijn.be/stops/200341"], ["https://data.delijn.be/stops/403902", "https://data.delijn.be/stops/404033"], ["https://data.delijn.be/stops/300319", "https://data.delijn.be/stops/301196"], ["https://data.delijn.be/stops/503483", "https://data.delijn.be/stops/508483"], ["https://data.delijn.be/stops/301627", "https://data.delijn.be/stops/306155"], ["https://data.delijn.be/stops/108094", "https://data.delijn.be/stops/108096"], ["https://data.delijn.be/stops/109776", "https://data.delijn.be/stops/109777"], ["https://data.delijn.be/stops/104054", "https://data.delijn.be/stops/108143"], ["https://data.delijn.be/stops/305253", "https://data.delijn.be/stops/305321"], ["https://data.delijn.be/stops/407020", "https://data.delijn.be/stops/407057"], ["https://data.delijn.be/stops/404472", "https://data.delijn.be/stops/404473"], ["https://data.delijn.be/stops/300041", "https://data.delijn.be/stops/307348"], ["https://data.delijn.be/stops/504085", "https://data.delijn.be/stops/509092"], ["https://data.delijn.be/stops/303642", "https://data.delijn.be/stops/303643"], ["https://data.delijn.be/stops/302585", "https://data.delijn.be/stops/302602"], ["https://data.delijn.be/stops/101601", "https://data.delijn.be/stops/106192"], ["https://data.delijn.be/stops/109320", "https://data.delijn.be/stops/109321"], ["https://data.delijn.be/stops/102642", "https://data.delijn.be/stops/107868"], ["https://data.delijn.be/stops/402118", "https://data.delijn.be/stops/402129"], ["https://data.delijn.be/stops/101986", "https://data.delijn.be/stops/108228"], ["https://data.delijn.be/stops/308454", "https://data.delijn.be/stops/308693"], ["https://data.delijn.be/stops/303732", "https://data.delijn.be/stops/303748"], ["https://data.delijn.be/stops/211093", "https://data.delijn.be/stops/211118"], ["https://data.delijn.be/stops/301235", "https://data.delijn.be/stops/301236"], ["https://data.delijn.be/stops/101070", "https://data.delijn.be/stops/102890"], ["https://data.delijn.be/stops/102695", "https://data.delijn.be/stops/102896"], ["https://data.delijn.be/stops/400660", "https://data.delijn.be/stops/400661"], ["https://data.delijn.be/stops/106166", "https://data.delijn.be/stops/106167"], ["https://data.delijn.be/stops/405868", "https://data.delijn.be/stops/409771"], ["https://data.delijn.be/stops/409296", "https://data.delijn.be/stops/409331"], ["https://data.delijn.be/stops/201994", "https://data.delijn.be/stops/211069"], ["https://data.delijn.be/stops/500952", "https://data.delijn.be/stops/500953"], ["https://data.delijn.be/stops/104681", "https://data.delijn.be/stops/104683"], ["https://data.delijn.be/stops/304179", "https://data.delijn.be/stops/304180"], ["https://data.delijn.be/stops/101706", "https://data.delijn.be/stops/102007"], ["https://data.delijn.be/stops/106770", "https://data.delijn.be/stops/106869"], ["https://data.delijn.be/stops/302682", "https://data.delijn.be/stops/306186"], ["https://data.delijn.be/stops/406471", "https://data.delijn.be/stops/406497"], ["https://data.delijn.be/stops/209441", "https://data.delijn.be/stops/209516"], ["https://data.delijn.be/stops/200363", "https://data.delijn.be/stops/200985"], ["https://data.delijn.be/stops/104364", "https://data.delijn.be/stops/105220"], ["https://data.delijn.be/stops/211058", "https://data.delijn.be/stops/211086"], ["https://data.delijn.be/stops/403796", "https://data.delijn.be/stops/403797"], ["https://data.delijn.be/stops/301656", "https://data.delijn.be/stops/301657"], ["https://data.delijn.be/stops/507944", "https://data.delijn.be/stops/508858"], ["https://data.delijn.be/stops/202666", "https://data.delijn.be/stops/203665"], ["https://data.delijn.be/stops/102208", "https://data.delijn.be/stops/106123"], ["https://data.delijn.be/stops/108381", "https://data.delijn.be/stops/108443"], ["https://data.delijn.be/stops/409263", "https://data.delijn.be/stops/409308"], ["https://data.delijn.be/stops/401485", "https://data.delijn.be/stops/401497"], ["https://data.delijn.be/stops/104127", "https://data.delijn.be/stops/105160"], ["https://data.delijn.be/stops/400696", "https://data.delijn.be/stops/400785"], ["https://data.delijn.be/stops/305595", "https://data.delijn.be/stops/305605"], ["https://data.delijn.be/stops/205821", "https://data.delijn.be/stops/205904"], ["https://data.delijn.be/stops/207584", "https://data.delijn.be/stops/207841"], ["https://data.delijn.be/stops/102892", "https://data.delijn.be/stops/105705"], ["https://data.delijn.be/stops/503228", "https://data.delijn.be/stops/504000"], ["https://data.delijn.be/stops/503733", "https://data.delijn.be/stops/508741"], ["https://data.delijn.be/stops/205144", "https://data.delijn.be/stops/207633"], ["https://data.delijn.be/stops/200853", "https://data.delijn.be/stops/200858"], ["https://data.delijn.be/stops/303042", "https://data.delijn.be/stops/303043"], ["https://data.delijn.be/stops/107512", "https://data.delijn.be/stops/107514"], ["https://data.delijn.be/stops/400827", "https://data.delijn.be/stops/401908"], ["https://data.delijn.be/stops/107821", "https://data.delijn.be/stops/107822"], ["https://data.delijn.be/stops/500601", "https://data.delijn.be/stops/500602"], ["https://data.delijn.be/stops/504795", "https://data.delijn.be/stops/504796"], ["https://data.delijn.be/stops/200688", "https://data.delijn.be/stops/200692"], ["https://data.delijn.be/stops/108218", "https://data.delijn.be/stops/108224"], ["https://data.delijn.be/stops/303719", "https://data.delijn.be/stops/303747"], ["https://data.delijn.be/stops/502544", "https://data.delijn.be/stops/507544"], ["https://data.delijn.be/stops/304119", "https://data.delijn.be/stops/304120"], ["https://data.delijn.be/stops/406472", "https://data.delijn.be/stops/406473"], ["https://data.delijn.be/stops/303483", "https://data.delijn.be/stops/303486"], ["https://data.delijn.be/stops/105614", "https://data.delijn.be/stops/105623"], ["https://data.delijn.be/stops/400473", "https://data.delijn.be/stops/400474"], ["https://data.delijn.be/stops/502560", "https://data.delijn.be/stops/505833"], ["https://data.delijn.be/stops/200130", "https://data.delijn.be/stops/200492"], ["https://data.delijn.be/stops/508071", "https://data.delijn.be/stops/508877"], ["https://data.delijn.be/stops/201760", "https://data.delijn.be/stops/201782"], ["https://data.delijn.be/stops/402935", "https://data.delijn.be/stops/403970"], ["https://data.delijn.be/stops/206224", "https://data.delijn.be/stops/207224"], ["https://data.delijn.be/stops/303337", "https://data.delijn.be/stops/303347"], ["https://data.delijn.be/stops/109613", "https://data.delijn.be/stops/109616"], ["https://data.delijn.be/stops/509624", "https://data.delijn.be/stops/509628"], ["https://data.delijn.be/stops/208317", "https://data.delijn.be/stops/209317"], ["https://data.delijn.be/stops/303692", "https://data.delijn.be/stops/303694"], ["https://data.delijn.be/stops/105413", "https://data.delijn.be/stops/109850"], ["https://data.delijn.be/stops/405765", "https://data.delijn.be/stops/409419"], ["https://data.delijn.be/stops/503264", "https://data.delijn.be/stops/503945"], ["https://data.delijn.be/stops/502692", "https://data.delijn.be/stops/505317"], ["https://data.delijn.be/stops/400479", "https://data.delijn.be/stops/407647"], ["https://data.delijn.be/stops/102157", "https://data.delijn.be/stops/108127"], ["https://data.delijn.be/stops/400689", "https://data.delijn.be/stops/400803"], ["https://data.delijn.be/stops/405783", "https://data.delijn.be/stops/409766"], ["https://data.delijn.be/stops/201386", "https://data.delijn.be/stops/202645"], ["https://data.delijn.be/stops/403739", "https://data.delijn.be/stops/403814"], ["https://data.delijn.be/stops/401062", "https://data.delijn.be/stops/408553"], ["https://data.delijn.be/stops/504269", "https://data.delijn.be/stops/509110"], ["https://data.delijn.be/stops/202538", "https://data.delijn.be/stops/209721"], ["https://data.delijn.be/stops/404106", "https://data.delijn.be/stops/404114"], ["https://data.delijn.be/stops/206681", "https://data.delijn.be/stops/207624"], ["https://data.delijn.be/stops/305303", "https://data.delijn.be/stops/305328"], ["https://data.delijn.be/stops/503769", "https://data.delijn.be/stops/503822"], ["https://data.delijn.be/stops/501067", "https://data.delijn.be/stops/506067"], ["https://data.delijn.be/stops/502549", "https://data.delijn.be/stops/502656"], ["https://data.delijn.be/stops/301104", "https://data.delijn.be/stops/301141"], ["https://data.delijn.be/stops/406965", "https://data.delijn.be/stops/409449"], ["https://data.delijn.be/stops/204350", "https://data.delijn.be/stops/205110"], ["https://data.delijn.be/stops/108502", "https://data.delijn.be/stops/109012"], ["https://data.delijn.be/stops/504563", "https://data.delijn.be/stops/509005"], ["https://data.delijn.be/stops/505022", "https://data.delijn.be/stops/507706"], ["https://data.delijn.be/stops/303995", "https://data.delijn.be/stops/306182"], ["https://data.delijn.be/stops/303269", "https://data.delijn.be/stops/308920"], ["https://data.delijn.be/stops/400069", "https://data.delijn.be/stops/400080"], ["https://data.delijn.be/stops/300570", "https://data.delijn.be/stops/307339"], ["https://data.delijn.be/stops/301515", "https://data.delijn.be/stops/301526"], ["https://data.delijn.be/stops/405767", "https://data.delijn.be/stops/405782"], ["https://data.delijn.be/stops/109244", "https://data.delijn.be/stops/109259"], ["https://data.delijn.be/stops/202911", "https://data.delijn.be/stops/203911"], ["https://data.delijn.be/stops/305255", "https://data.delijn.be/stops/305284"], ["https://data.delijn.be/stops/200689", "https://data.delijn.be/stops/201197"], ["https://data.delijn.be/stops/208831", "https://data.delijn.be/stops/209231"], ["https://data.delijn.be/stops/503544", "https://data.delijn.be/stops/503547"], ["https://data.delijn.be/stops/202480", "https://data.delijn.be/stops/202889"], ["https://data.delijn.be/stops/502434", "https://data.delijn.be/stops/507124"], ["https://data.delijn.be/stops/504195", "https://data.delijn.be/stops/505415"], ["https://data.delijn.be/stops/503597", "https://data.delijn.be/stops/508597"], ["https://data.delijn.be/stops/305382", "https://data.delijn.be/stops/305386"], ["https://data.delijn.be/stops/501072", "https://data.delijn.be/stops/506506"], ["https://data.delijn.be/stops/101816", "https://data.delijn.be/stops/107834"], ["https://data.delijn.be/stops/508385", "https://data.delijn.be/stops/508406"], ["https://data.delijn.be/stops/206662", "https://data.delijn.be/stops/208500"], ["https://data.delijn.be/stops/301049", "https://data.delijn.be/stops/306116"], ["https://data.delijn.be/stops/402559", "https://data.delijn.be/stops/402566"], ["https://data.delijn.be/stops/302324", "https://data.delijn.be/stops/303448"], ["https://data.delijn.be/stops/103466", "https://data.delijn.be/stops/106688"], ["https://data.delijn.be/stops/308270", "https://data.delijn.be/stops/308287"], ["https://data.delijn.be/stops/400211", "https://data.delijn.be/stops/400239"], ["https://data.delijn.be/stops/102956", "https://data.delijn.be/stops/103764"], ["https://data.delijn.be/stops/303412", "https://data.delijn.be/stops/303423"], ["https://data.delijn.be/stops/506134", "https://data.delijn.be/stops/590331"], ["https://data.delijn.be/stops/207322", "https://data.delijn.be/stops/207354"], ["https://data.delijn.be/stops/305520", "https://data.delijn.be/stops/305522"], ["https://data.delijn.be/stops/204076", "https://data.delijn.be/stops/204082"], ["https://data.delijn.be/stops/502023", "https://data.delijn.be/stops/508321"], ["https://data.delijn.be/stops/105329", "https://data.delijn.be/stops/105331"], ["https://data.delijn.be/stops/405083", "https://data.delijn.be/stops/405708"], ["https://data.delijn.be/stops/505596", "https://data.delijn.be/stops/505597"], ["https://data.delijn.be/stops/304437", "https://data.delijn.be/stops/304455"], ["https://data.delijn.be/stops/106857", "https://data.delijn.be/stops/109700"], ["https://data.delijn.be/stops/404156", "https://data.delijn.be/stops/404176"], ["https://data.delijn.be/stops/207837", "https://data.delijn.be/stops/207939"], ["https://data.delijn.be/stops/200492", "https://data.delijn.be/stops/201890"], ["https://data.delijn.be/stops/105848", "https://data.delijn.be/stops/105849"], ["https://data.delijn.be/stops/302359", "https://data.delijn.be/stops/307014"], ["https://data.delijn.be/stops/508665", "https://data.delijn.be/stops/508667"], ["https://data.delijn.be/stops/300464", "https://data.delijn.be/stops/300467"], ["https://data.delijn.be/stops/503683", "https://data.delijn.be/stops/503685"], ["https://data.delijn.be/stops/101054", "https://data.delijn.be/stops/101380"], ["https://data.delijn.be/stops/208060", "https://data.delijn.be/stops/208507"], ["https://data.delijn.be/stops/503627", "https://data.delijn.be/stops/508623"], ["https://data.delijn.be/stops/407975", "https://data.delijn.be/stops/408239"], ["https://data.delijn.be/stops/503315", "https://data.delijn.be/stops/508133"], ["https://data.delijn.be/stops/502405", "https://data.delijn.be/stops/507393"], ["https://data.delijn.be/stops/400752", "https://data.delijn.be/stops/409570"], ["https://data.delijn.be/stops/504077", "https://data.delijn.be/stops/504693"], ["https://data.delijn.be/stops/501409", "https://data.delijn.be/stops/501410"], ["https://data.delijn.be/stops/104858", "https://data.delijn.be/stops/107815"], ["https://data.delijn.be/stops/302492", "https://data.delijn.be/stops/308836"], ["https://data.delijn.be/stops/409068", "https://data.delijn.be/stops/409070"], ["https://data.delijn.be/stops/304986", "https://data.delijn.be/stops/308014"], ["https://data.delijn.be/stops/405924", "https://data.delijn.be/stops/405931"], ["https://data.delijn.be/stops/405304", "https://data.delijn.be/stops/305688"], ["https://data.delijn.be/stops/502015", "https://data.delijn.be/stops/502915"], ["https://data.delijn.be/stops/304898", "https://data.delijn.be/stops/304903"], ["https://data.delijn.be/stops/407580", "https://data.delijn.be/stops/409290"], ["https://data.delijn.be/stops/108704", "https://data.delijn.be/stops/108707"], ["https://data.delijn.be/stops/502232", "https://data.delijn.be/stops/502684"], ["https://data.delijn.be/stops/300651", "https://data.delijn.be/stops/300654"], ["https://data.delijn.be/stops/501503", "https://data.delijn.be/stops/506112"], ["https://data.delijn.be/stops/208281", "https://data.delijn.be/stops/209281"], ["https://data.delijn.be/stops/305447", "https://data.delijn.be/stops/307326"], ["https://data.delijn.be/stops/202747", "https://data.delijn.be/stops/206594"], ["https://data.delijn.be/stops/200325", "https://data.delijn.be/stops/210107"], ["https://data.delijn.be/stops/200459", "https://data.delijn.be/stops/201458"], ["https://data.delijn.be/stops/202211", "https://data.delijn.be/stops/202773"], ["https://data.delijn.be/stops/206332", "https://data.delijn.be/stops/206364"], ["https://data.delijn.be/stops/204643", "https://data.delijn.be/stops/204646"], ["https://data.delijn.be/stops/503222", "https://data.delijn.be/stops/503596"], ["https://data.delijn.be/stops/406398", "https://data.delijn.be/stops/302855"], ["https://data.delijn.be/stops/108136", "https://data.delijn.be/stops/108845"], ["https://data.delijn.be/stops/104043", "https://data.delijn.be/stops/305982"], ["https://data.delijn.be/stops/502605", "https://data.delijn.be/stops/502606"], ["https://data.delijn.be/stops/202640", "https://data.delijn.be/stops/205832"], ["https://data.delijn.be/stops/506253", "https://data.delijn.be/stops/506738"], ["https://data.delijn.be/stops/503419", "https://data.delijn.be/stops/508419"], ["https://data.delijn.be/stops/505088", "https://data.delijn.be/stops/505242"], ["https://data.delijn.be/stops/204171", "https://data.delijn.be/stops/205171"], ["https://data.delijn.be/stops/303753", "https://data.delijn.be/stops/303789"], ["https://data.delijn.be/stops/402350", "https://data.delijn.be/stops/402365"], ["https://data.delijn.be/stops/408156", "https://data.delijn.be/stops/409113"], ["https://data.delijn.be/stops/504032", "https://data.delijn.be/stops/509032"], ["https://data.delijn.be/stops/302444", "https://data.delijn.be/stops/302445"], ["https://data.delijn.be/stops/406940", "https://data.delijn.be/stops/406970"], ["https://data.delijn.be/stops/206452", "https://data.delijn.be/stops/206824"], ["https://data.delijn.be/stops/107933", "https://data.delijn.be/stops/107934"], ["https://data.delijn.be/stops/204511", "https://data.delijn.be/stops/205333"], ["https://data.delijn.be/stops/300025", "https://data.delijn.be/stops/300403"], ["https://data.delijn.be/stops/202339", "https://data.delijn.be/stops/203483"], ["https://data.delijn.be/stops/108706", "https://data.delijn.be/stops/108854"], ["https://data.delijn.be/stops/304441", "https://data.delijn.be/stops/307716"], ["https://data.delijn.be/stops/307522", "https://data.delijn.be/stops/307703"], ["https://data.delijn.be/stops/301145", "https://data.delijn.be/stops/301146"], ["https://data.delijn.be/stops/506415", "https://data.delijn.be/stops/506416"], ["https://data.delijn.be/stops/300028", "https://data.delijn.be/stops/302939"], ["https://data.delijn.be/stops/203182", "https://data.delijn.be/stops/204200"], ["https://data.delijn.be/stops/502662", "https://data.delijn.be/stops/507117"], ["https://data.delijn.be/stops/101796", "https://data.delijn.be/stops/104552"], ["https://data.delijn.be/stops/206066", "https://data.delijn.be/stops/207066"], ["https://data.delijn.be/stops/504111", "https://data.delijn.be/stops/504690"], ["https://data.delijn.be/stops/405059", "https://data.delijn.be/stops/405066"], ["https://data.delijn.be/stops/204503", "https://data.delijn.be/stops/205503"], ["https://data.delijn.be/stops/400914", "https://data.delijn.be/stops/400965"], ["https://data.delijn.be/stops/202400", "https://data.delijn.be/stops/208262"], ["https://data.delijn.be/stops/502549", "https://data.delijn.be/stops/507550"], ["https://data.delijn.be/stops/503038", "https://data.delijn.be/stops/508214"], ["https://data.delijn.be/stops/207764", "https://data.delijn.be/stops/208872"], ["https://data.delijn.be/stops/505923", "https://data.delijn.be/stops/509936"], ["https://data.delijn.be/stops/106704", "https://data.delijn.be/stops/106705"], ["https://data.delijn.be/stops/203680", "https://data.delijn.be/stops/203681"], ["https://data.delijn.be/stops/207704", "https://data.delijn.be/stops/207705"], ["https://data.delijn.be/stops/305283", "https://data.delijn.be/stops/305293"], ["https://data.delijn.be/stops/308722", "https://data.delijn.be/stops/308723"], ["https://data.delijn.be/stops/405809", "https://data.delijn.be/stops/409414"], ["https://data.delijn.be/stops/106110", "https://data.delijn.be/stops/109183"], ["https://data.delijn.be/stops/202392", "https://data.delijn.be/stops/202393"], ["https://data.delijn.be/stops/305499", "https://data.delijn.be/stops/308912"], ["https://data.delijn.be/stops/507250", "https://data.delijn.be/stops/507251"], ["https://data.delijn.be/stops/200086", "https://data.delijn.be/stops/202478"], ["https://data.delijn.be/stops/202823", "https://data.delijn.be/stops/202924"], ["https://data.delijn.be/stops/303679", "https://data.delijn.be/stops/308718"], ["https://data.delijn.be/stops/503069", "https://data.delijn.be/stops/503522"], ["https://data.delijn.be/stops/403382", "https://data.delijn.be/stops/403383"], ["https://data.delijn.be/stops/301697", "https://data.delijn.be/stops/301698"], ["https://data.delijn.be/stops/503244", "https://data.delijn.be/stops/508068"], ["https://data.delijn.be/stops/408578", "https://data.delijn.be/stops/408586"], ["https://data.delijn.be/stops/308502", "https://data.delijn.be/stops/308539"], ["https://data.delijn.be/stops/201705", "https://data.delijn.be/stops/203445"], ["https://data.delijn.be/stops/300728", "https://data.delijn.be/stops/307057"], ["https://data.delijn.be/stops/102477", "https://data.delijn.be/stops/400177"], ["https://data.delijn.be/stops/107933", "https://data.delijn.be/stops/205564"], ["https://data.delijn.be/stops/503231", "https://data.delijn.be/stops/504783"], ["https://data.delijn.be/stops/504158", "https://data.delijn.be/stops/504181"], ["https://data.delijn.be/stops/302252", "https://data.delijn.be/stops/302253"], ["https://data.delijn.be/stops/108101", "https://data.delijn.be/stops/108109"], ["https://data.delijn.be/stops/506026", "https://data.delijn.be/stops/506037"], ["https://data.delijn.be/stops/403960", "https://data.delijn.be/stops/403967"], ["https://data.delijn.be/stops/402136", "https://data.delijn.be/stops/402137"], ["https://data.delijn.be/stops/206419", "https://data.delijn.be/stops/306078"], ["https://data.delijn.be/stops/402017", "https://data.delijn.be/stops/402071"], ["https://data.delijn.be/stops/307640", "https://data.delijn.be/stops/307691"], ["https://data.delijn.be/stops/306686", "https://data.delijn.be/stops/309671"], ["https://data.delijn.be/stops/306386", "https://data.delijn.be/stops/307198"], ["https://data.delijn.be/stops/206799", "https://data.delijn.be/stops/209623"], ["https://data.delijn.be/stops/206402", "https://data.delijn.be/stops/207243"], ["https://data.delijn.be/stops/408311", "https://data.delijn.be/stops/408345"], ["https://data.delijn.be/stops/500957", "https://data.delijn.be/stops/503289"], ["https://data.delijn.be/stops/307813", "https://data.delijn.be/stops/307820"], ["https://data.delijn.be/stops/304723", "https://data.delijn.be/stops/304734"], ["https://data.delijn.be/stops/102598", "https://data.delijn.be/stops/104587"], ["https://data.delijn.be/stops/408920", "https://data.delijn.be/stops/408922"], ["https://data.delijn.be/stops/503045", "https://data.delijn.be/stops/508045"], ["https://data.delijn.be/stops/405699", "https://data.delijn.be/stops/406030"], ["https://data.delijn.be/stops/200662", "https://data.delijn.be/stops/201462"], ["https://data.delijn.be/stops/105046", "https://data.delijn.be/stops/105054"], ["https://data.delijn.be/stops/204233", "https://data.delijn.be/stops/205473"], ["https://data.delijn.be/stops/101391", "https://data.delijn.be/stops/107107"], ["https://data.delijn.be/stops/105657", "https://data.delijn.be/stops/105658"], ["https://data.delijn.be/stops/501531", "https://data.delijn.be/stops/501532"], ["https://data.delijn.be/stops/503248", "https://data.delijn.be/stops/503262"], ["https://data.delijn.be/stops/108411", "https://data.delijn.be/stops/108412"], ["https://data.delijn.be/stops/201672", "https://data.delijn.be/stops/202502"], ["https://data.delijn.be/stops/105928", "https://data.delijn.be/stops/109100"], ["https://data.delijn.be/stops/302772", "https://data.delijn.be/stops/302773"], ["https://data.delijn.be/stops/108077", "https://data.delijn.be/stops/108078"], ["https://data.delijn.be/stops/101078", "https://data.delijn.be/stops/101079"], ["https://data.delijn.be/stops/207771", "https://data.delijn.be/stops/208739"], ["https://data.delijn.be/stops/504829", "https://data.delijn.be/stops/508120"], ["https://data.delijn.be/stops/300483", "https://data.delijn.be/stops/300507"], ["https://data.delijn.be/stops/405223", "https://data.delijn.be/stops/405288"], ["https://data.delijn.be/stops/208020", "https://data.delijn.be/stops/209016"], ["https://data.delijn.be/stops/406101", "https://data.delijn.be/stops/407146"], ["https://data.delijn.be/stops/203701", "https://data.delijn.be/stops/211066"], ["https://data.delijn.be/stops/201697", "https://data.delijn.be/stops/203391"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/106451"], ["https://data.delijn.be/stops/105698", "https://data.delijn.be/stops/106071"], ["https://data.delijn.be/stops/404146", "https://data.delijn.be/stops/404180"], ["https://data.delijn.be/stops/403682", "https://data.delijn.be/stops/403685"], ["https://data.delijn.be/stops/101035", "https://data.delijn.be/stops/105445"], ["https://data.delijn.be/stops/508139", "https://data.delijn.be/stops/508140"], ["https://data.delijn.be/stops/305352", "https://data.delijn.be/stops/307969"], ["https://data.delijn.be/stops/505641", "https://data.delijn.be/stops/508969"], ["https://data.delijn.be/stops/303791", "https://data.delijn.be/stops/303809"], ["https://data.delijn.be/stops/200704", "https://data.delijn.be/stops/202575"], ["https://data.delijn.be/stops/409550", "https://data.delijn.be/stops/410112"], ["https://data.delijn.be/stops/503660", "https://data.delijn.be/stops/503663"], ["https://data.delijn.be/stops/408265", "https://data.delijn.be/stops/408413"], ["https://data.delijn.be/stops/301968", "https://data.delijn.be/stops/308952"], ["https://data.delijn.be/stops/200765", "https://data.delijn.be/stops/208380"], ["https://data.delijn.be/stops/200061", "https://data.delijn.be/stops/202133"], ["https://data.delijn.be/stops/301249", "https://data.delijn.be/stops/304397"], ["https://data.delijn.be/stops/504449", "https://data.delijn.be/stops/509443"], ["https://data.delijn.be/stops/201882", "https://data.delijn.be/stops/205994"], ["https://data.delijn.be/stops/503116", "https://data.delijn.be/stops/508117"], ["https://data.delijn.be/stops/302273", "https://data.delijn.be/stops/302275"], ["https://data.delijn.be/stops/200977", "https://data.delijn.be/stops/202906"], ["https://data.delijn.be/stops/208166", "https://data.delijn.be/stops/209175"], ["https://data.delijn.be/stops/400757", "https://data.delijn.be/stops/409807"], ["https://data.delijn.be/stops/107710", "https://data.delijn.be/stops/108220"], ["https://data.delijn.be/stops/204631", "https://data.delijn.be/stops/205631"], ["https://data.delijn.be/stops/501745", "https://data.delijn.be/stops/506363"], ["https://data.delijn.be/stops/509832", "https://data.delijn.be/stops/509834"], ["https://data.delijn.be/stops/206352", "https://data.delijn.be/stops/207352"], ["https://data.delijn.be/stops/305048", "https://data.delijn.be/stops/305050"], ["https://data.delijn.be/stops/501520", "https://data.delijn.be/stops/510014"], ["https://data.delijn.be/stops/409744", "https://data.delijn.be/stops/409794"], ["https://data.delijn.be/stops/205914", "https://data.delijn.be/stops/205916"], ["https://data.delijn.be/stops/405369", "https://data.delijn.be/stops/405372"], ["https://data.delijn.be/stops/303083", "https://data.delijn.be/stops/303147"], ["https://data.delijn.be/stops/101362", "https://data.delijn.be/stops/101363"], ["https://data.delijn.be/stops/400603", "https://data.delijn.be/stops/400607"], ["https://data.delijn.be/stops/203967", "https://data.delijn.be/stops/205173"], ["https://data.delijn.be/stops/503978", "https://data.delijn.be/stops/505845"], ["https://data.delijn.be/stops/302922", "https://data.delijn.be/stops/303042"], ["https://data.delijn.be/stops/406338", "https://data.delijn.be/stops/406358"], ["https://data.delijn.be/stops/304148", "https://data.delijn.be/stops/304541"], ["https://data.delijn.be/stops/108767", "https://data.delijn.be/stops/109273"], ["https://data.delijn.be/stops/209224", "https://data.delijn.be/stops/209225"], ["https://data.delijn.be/stops/208952", "https://data.delijn.be/stops/209489"], ["https://data.delijn.be/stops/208620", "https://data.delijn.be/stops/209846"], ["https://data.delijn.be/stops/402631", "https://data.delijn.be/stops/410022"], ["https://data.delijn.be/stops/105665", "https://data.delijn.be/stops/105720"], ["https://data.delijn.be/stops/300590", "https://data.delijn.be/stops/300613"], ["https://data.delijn.be/stops/405503", "https://data.delijn.be/stops/302826"], ["https://data.delijn.be/stops/403583", "https://data.delijn.be/stops/406836"], ["https://data.delijn.be/stops/504535", "https://data.delijn.be/stops/508729"], ["https://data.delijn.be/stops/402723", "https://data.delijn.be/stops/402724"], ["https://data.delijn.be/stops/306909", "https://data.delijn.be/stops/306910"], ["https://data.delijn.be/stops/500933", "https://data.delijn.be/stops/503123"], ["https://data.delijn.be/stops/106895", "https://data.delijn.be/stops/107222"], ["https://data.delijn.be/stops/204037", "https://data.delijn.be/stops/205038"], ["https://data.delijn.be/stops/501181", "https://data.delijn.be/stops/509932"], ["https://data.delijn.be/stops/501045", "https://data.delijn.be/stops/506049"], ["https://data.delijn.be/stops/200051", "https://data.delijn.be/stops/203934"], ["https://data.delijn.be/stops/505103", "https://data.delijn.be/stops/509008"], ["https://data.delijn.be/stops/402659", "https://data.delijn.be/stops/402706"], ["https://data.delijn.be/stops/301289", "https://data.delijn.be/stops/301290"], ["https://data.delijn.be/stops/200235", "https://data.delijn.be/stops/211051"], ["https://data.delijn.be/stops/504961", "https://data.delijn.be/stops/508064"], ["https://data.delijn.be/stops/202843", "https://data.delijn.be/stops/203843"], ["https://data.delijn.be/stops/502556", "https://data.delijn.be/stops/507551"], ["https://data.delijn.be/stops/504559", "https://data.delijn.be/stops/509559"], ["https://data.delijn.be/stops/502928", "https://data.delijn.be/stops/509931"], ["https://data.delijn.be/stops/201327", "https://data.delijn.be/stops/203765"], ["https://data.delijn.be/stops/207777", "https://data.delijn.be/stops/208186"], ["https://data.delijn.be/stops/403196", "https://data.delijn.be/stops/403550"], ["https://data.delijn.be/stops/206031", "https://data.delijn.be/stops/207801"], ["https://data.delijn.be/stops/104666", "https://data.delijn.be/stops/305989"], ["https://data.delijn.be/stops/501379", "https://data.delijn.be/stops/506379"], ["https://data.delijn.be/stops/106262", "https://data.delijn.be/stops/106263"], ["https://data.delijn.be/stops/102019", "https://data.delijn.be/stops/102021"], ["https://data.delijn.be/stops/407925", "https://data.delijn.be/stops/408199"], ["https://data.delijn.be/stops/206567", "https://data.delijn.be/stops/207567"], ["https://data.delijn.be/stops/200210", "https://data.delijn.be/stops/200212"], ["https://data.delijn.be/stops/103998", "https://data.delijn.be/stops/103999"], ["https://data.delijn.be/stops/301280", "https://data.delijn.be/stops/304859"], ["https://data.delijn.be/stops/503361", "https://data.delijn.be/stops/503440"], ["https://data.delijn.be/stops/400044", "https://data.delijn.be/stops/400324"], ["https://data.delijn.be/stops/202733", "https://data.delijn.be/stops/203735"], ["https://data.delijn.be/stops/303973", "https://data.delijn.be/stops/303974"], ["https://data.delijn.be/stops/206562", "https://data.delijn.be/stops/206823"], ["https://data.delijn.be/stops/403224", "https://data.delijn.be/stops/403402"], ["https://data.delijn.be/stops/102591", "https://data.delijn.be/stops/102946"], ["https://data.delijn.be/stops/209237", "https://data.delijn.be/stops/209384"], ["https://data.delijn.be/stops/302586", "https://data.delijn.be/stops/302590"], ["https://data.delijn.be/stops/405792", "https://data.delijn.be/stops/405833"], ["https://data.delijn.be/stops/400300", "https://data.delijn.be/stops/406768"], ["https://data.delijn.be/stops/501408", "https://data.delijn.be/stops/506408"], ["https://data.delijn.be/stops/107526", "https://data.delijn.be/stops/107545"], ["https://data.delijn.be/stops/207164", "https://data.delijn.be/stops/303386"], ["https://data.delijn.be/stops/302388", "https://data.delijn.be/stops/302761"], ["https://data.delijn.be/stops/504100", "https://data.delijn.be/stops/504120"], ["https://data.delijn.be/stops/107005", "https://data.delijn.be/stops/107010"], ["https://data.delijn.be/stops/502254", "https://data.delijn.be/stops/505025"], ["https://data.delijn.be/stops/106909", "https://data.delijn.be/stops/107254"], ["https://data.delijn.be/stops/507048", "https://data.delijn.be/stops/507642"], ["https://data.delijn.be/stops/500042", "https://data.delijn.be/stops/507117"], ["https://data.delijn.be/stops/401198", "https://data.delijn.be/stops/401207"], ["https://data.delijn.be/stops/401523", "https://data.delijn.be/stops/401743"], ["https://data.delijn.be/stops/408543", "https://data.delijn.be/stops/408615"], ["https://data.delijn.be/stops/502414", "https://data.delijn.be/stops/507428"], ["https://data.delijn.be/stops/103228", "https://data.delijn.be/stops/109405"], ["https://data.delijn.be/stops/501320", "https://data.delijn.be/stops/501323"], ["https://data.delijn.be/stops/403014", "https://data.delijn.be/stops/409334"], ["https://data.delijn.be/stops/208414", "https://data.delijn.be/stops/209414"], ["https://data.delijn.be/stops/403429", "https://data.delijn.be/stops/410209"], ["https://data.delijn.be/stops/202237", "https://data.delijn.be/stops/203237"], ["https://data.delijn.be/stops/301706", "https://data.delijn.be/stops/306879"], ["https://data.delijn.be/stops/407400", "https://data.delijn.be/stops/407492"], ["https://data.delijn.be/stops/208057", "https://data.delijn.be/stops/209628"], ["https://data.delijn.be/stops/409278", "https://data.delijn.be/stops/409279"], ["https://data.delijn.be/stops/302082", "https://data.delijn.be/stops/302092"], ["https://data.delijn.be/stops/102408", "https://data.delijn.be/stops/102409"], ["https://data.delijn.be/stops/303955", "https://data.delijn.be/stops/303956"], ["https://data.delijn.be/stops/102593", "https://data.delijn.be/stops/102594"], ["https://data.delijn.be/stops/505183", "https://data.delijn.be/stops/509395"], ["https://data.delijn.be/stops/308146", "https://data.delijn.be/stops/308176"], ["https://data.delijn.be/stops/405433", "https://data.delijn.be/stops/410150"], ["https://data.delijn.be/stops/402300", "https://data.delijn.be/stops/409359"], ["https://data.delijn.be/stops/308479", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/504166", "https://data.delijn.be/stops/509172"], ["https://data.delijn.be/stops/301279", "https://data.delijn.be/stops/304858"], ["https://data.delijn.be/stops/201707", "https://data.delijn.be/stops/201713"], ["https://data.delijn.be/stops/403221", "https://data.delijn.be/stops/403481"], ["https://data.delijn.be/stops/500120", "https://data.delijn.be/stops/509829"], ["https://data.delijn.be/stops/103082", "https://data.delijn.be/stops/104671"], ["https://data.delijn.be/stops/505856", "https://data.delijn.be/stops/508380"], ["https://data.delijn.be/stops/508670", "https://data.delijn.be/stops/509842"], ["https://data.delijn.be/stops/405653", "https://data.delijn.be/stops/409307"], ["https://data.delijn.be/stops/300630", "https://data.delijn.be/stops/307860"], ["https://data.delijn.be/stops/304768", "https://data.delijn.be/stops/308701"], ["https://data.delijn.be/stops/303120", "https://data.delijn.be/stops/303223"], ["https://data.delijn.be/stops/503085", "https://data.delijn.be/stops/504096"], ["https://data.delijn.be/stops/506130", "https://data.delijn.be/stops/506133"], ["https://data.delijn.be/stops/402440", "https://data.delijn.be/stops/402442"], ["https://data.delijn.be/stops/508681", "https://data.delijn.be/stops/508683"], ["https://data.delijn.be/stops/106967", "https://data.delijn.be/stops/106969"], ["https://data.delijn.be/stops/301196", "https://data.delijn.be/stops/301197"], ["https://data.delijn.be/stops/505526", "https://data.delijn.be/stops/505529"], ["https://data.delijn.be/stops/505142", "https://data.delijn.be/stops/505232"], ["https://data.delijn.be/stops/300006", "https://data.delijn.be/stops/306200"], ["https://data.delijn.be/stops/502080", "https://data.delijn.be/stops/507681"], ["https://data.delijn.be/stops/106379", "https://data.delijn.be/stops/108023"], ["https://data.delijn.be/stops/407732", "https://data.delijn.be/stops/409786"], ["https://data.delijn.be/stops/501715", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/200246", "https://data.delijn.be/stops/203009"], ["https://data.delijn.be/stops/502448", "https://data.delijn.be/stops/502463"], ["https://data.delijn.be/stops/107123", "https://data.delijn.be/stops/107126"], ["https://data.delijn.be/stops/103541", "https://data.delijn.be/stops/106726"], ["https://data.delijn.be/stops/301283", "https://data.delijn.be/stops/301296"], ["https://data.delijn.be/stops/204251", "https://data.delijn.be/stops/205252"], ["https://data.delijn.be/stops/107084", "https://data.delijn.be/stops/107086"], ["https://data.delijn.be/stops/202852", "https://data.delijn.be/stops/203853"], ["https://data.delijn.be/stops/304130", "https://data.delijn.be/stops/304131"], ["https://data.delijn.be/stops/301103", "https://data.delijn.be/stops/308932"], ["https://data.delijn.be/stops/303652", "https://data.delijn.be/stops/304066"], ["https://data.delijn.be/stops/204689", "https://data.delijn.be/stops/204690"], ["https://data.delijn.be/stops/302656", "https://data.delijn.be/stops/308113"], ["https://data.delijn.be/stops/407979", "https://data.delijn.be/stops/408236"], ["https://data.delijn.be/stops/204080", "https://data.delijn.be/stops/205202"], ["https://data.delijn.be/stops/408252", "https://data.delijn.be/stops/408351"], ["https://data.delijn.be/stops/305777", "https://data.delijn.be/stops/305779"], ["https://data.delijn.be/stops/300400", "https://data.delijn.be/stops/307001"], ["https://data.delijn.be/stops/305856", "https://data.delijn.be/stops/305858"], ["https://data.delijn.be/stops/400815", "https://data.delijn.be/stops/400832"], ["https://data.delijn.be/stops/101527", "https://data.delijn.be/stops/109651"], ["https://data.delijn.be/stops/107258", "https://data.delijn.be/stops/107259"], ["https://data.delijn.be/stops/301711", "https://data.delijn.be/stops/305908"], ["https://data.delijn.be/stops/503232", "https://data.delijn.be/stops/508263"], ["https://data.delijn.be/stops/305333", "https://data.delijn.be/stops/307300"], ["https://data.delijn.be/stops/206134", "https://data.delijn.be/stops/206511"], ["https://data.delijn.be/stops/502244", "https://data.delijn.be/stops/507245"], ["https://data.delijn.be/stops/206309", "https://data.delijn.be/stops/206310"], ["https://data.delijn.be/stops/404810", "https://data.delijn.be/stops/406108"], ["https://data.delijn.be/stops/208575", "https://data.delijn.be/stops/306271"], ["https://data.delijn.be/stops/400242", "https://data.delijn.be/stops/400944"], ["https://data.delijn.be/stops/202196", "https://data.delijn.be/stops/211087"], ["https://data.delijn.be/stops/505692", "https://data.delijn.be/stops/507540"], ["https://data.delijn.be/stops/101050", "https://data.delijn.be/stops/108555"], ["https://data.delijn.be/stops/200318", "https://data.delijn.be/stops/200588"], ["https://data.delijn.be/stops/206462", "https://data.delijn.be/stops/206463"], ["https://data.delijn.be/stops/500126", "https://data.delijn.be/stops/503003"], ["https://data.delijn.be/stops/208520", "https://data.delijn.be/stops/209078"], ["https://data.delijn.be/stops/109181", "https://data.delijn.be/stops/109182"], ["https://data.delijn.be/stops/108216", "https://data.delijn.be/stops/108219"], ["https://data.delijn.be/stops/501680", "https://data.delijn.be/stops/509122"], ["https://data.delijn.be/stops/505547", "https://data.delijn.be/stops/507939"], ["https://data.delijn.be/stops/201096", "https://data.delijn.be/stops/201345"], ["https://data.delijn.be/stops/101685", "https://data.delijn.be/stops/105766"], ["https://data.delijn.be/stops/304565", "https://data.delijn.be/stops/304603"], ["https://data.delijn.be/stops/200375", "https://data.delijn.be/stops/200548"], ["https://data.delijn.be/stops/102077", "https://data.delijn.be/stops/105989"], ["https://data.delijn.be/stops/208530", "https://data.delijn.be/stops/209456"], ["https://data.delijn.be/stops/300657", "https://data.delijn.be/stops/300658"], ["https://data.delijn.be/stops/408222", "https://data.delijn.be/stops/408224"], ["https://data.delijn.be/stops/407638", "https://data.delijn.be/stops/407641"], ["https://data.delijn.be/stops/302273", "https://data.delijn.be/stops/303436"], ["https://data.delijn.be/stops/506049", "https://data.delijn.be/stops/506082"], ["https://data.delijn.be/stops/307456", "https://data.delijn.be/stops/307846"], ["https://data.delijn.be/stops/404918", "https://data.delijn.be/stops/404954"], ["https://data.delijn.be/stops/203915", "https://data.delijn.be/stops/203929"], ["https://data.delijn.be/stops/206742", "https://data.delijn.be/stops/301093"], ["https://data.delijn.be/stops/501034", "https://data.delijn.be/stops/506039"], ["https://data.delijn.be/stops/509774", "https://data.delijn.be/stops/509785"], ["https://data.delijn.be/stops/104412", "https://data.delijn.be/stops/205337"], ["https://data.delijn.be/stops/402895", "https://data.delijn.be/stops/302638"], ["https://data.delijn.be/stops/500041", "https://data.delijn.be/stops/500047"], ["https://data.delijn.be/stops/400597", "https://data.delijn.be/stops/408676"], ["https://data.delijn.be/stops/404310", "https://data.delijn.be/stops/406816"], ["https://data.delijn.be/stops/205418", "https://data.delijn.be/stops/205428"], ["https://data.delijn.be/stops/206100", "https://data.delijn.be/stops/207911"], ["https://data.delijn.be/stops/405421", "https://data.delijn.be/stops/306777"], ["https://data.delijn.be/stops/202239", "https://data.delijn.be/stops/505518"], ["https://data.delijn.be/stops/403360", "https://data.delijn.be/stops/403448"], ["https://data.delijn.be/stops/405639", "https://data.delijn.be/stops/405640"], ["https://data.delijn.be/stops/206069", "https://data.delijn.be/stops/207917"], ["https://data.delijn.be/stops/501125", "https://data.delijn.be/stops/505045"], ["https://data.delijn.be/stops/302919", "https://data.delijn.be/stops/303977"], ["https://data.delijn.be/stops/102499", "https://data.delijn.be/stops/400028"], ["https://data.delijn.be/stops/200290", "https://data.delijn.be/stops/205941"], ["https://data.delijn.be/stops/500013", "https://data.delijn.be/stops/507563"], ["https://data.delijn.be/stops/206235", "https://data.delijn.be/stops/207863"], ["https://data.delijn.be/stops/204347", "https://data.delijn.be/stops/205209"], ["https://data.delijn.be/stops/406488", "https://data.delijn.be/stops/406495"], ["https://data.delijn.be/stops/504775", "https://data.delijn.be/stops/505302"], ["https://data.delijn.be/stops/406304", "https://data.delijn.be/stops/409232"], ["https://data.delijn.be/stops/407984", "https://data.delijn.be/stops/408021"], ["https://data.delijn.be/stops/208314", "https://data.delijn.be/stops/209770"], ["https://data.delijn.be/stops/300772", "https://data.delijn.be/stops/302407"], ["https://data.delijn.be/stops/509136", "https://data.delijn.be/stops/509140"], ["https://data.delijn.be/stops/503646", "https://data.delijn.be/stops/508266"], ["https://data.delijn.be/stops/102560", "https://data.delijn.be/stops/104685"], ["https://data.delijn.be/stops/107581", "https://data.delijn.be/stops/107719"], ["https://data.delijn.be/stops/102918", "https://data.delijn.be/stops/102919"], ["https://data.delijn.be/stops/102718", "https://data.delijn.be/stops/107154"], ["https://data.delijn.be/stops/502692", "https://data.delijn.be/stops/502924"], ["https://data.delijn.be/stops/208843", "https://data.delijn.be/stops/210022"], ["https://data.delijn.be/stops/501294", "https://data.delijn.be/stops/506324"], ["https://data.delijn.be/stops/205985", "https://data.delijn.be/stops/207565"], ["https://data.delijn.be/stops/200694", "https://data.delijn.be/stops/203791"], ["https://data.delijn.be/stops/308211", "https://data.delijn.be/stops/308216"], ["https://data.delijn.be/stops/206151", "https://data.delijn.be/stops/206152"], ["https://data.delijn.be/stops/406195", "https://data.delijn.be/stops/410402"], ["https://data.delijn.be/stops/306616", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/303206", "https://data.delijn.be/stops/304322"], ["https://data.delijn.be/stops/404302", "https://data.delijn.be/stops/408550"], ["https://data.delijn.be/stops/305482", "https://data.delijn.be/stops/305483"], ["https://data.delijn.be/stops/302514", "https://data.delijn.be/stops/305802"], ["https://data.delijn.be/stops/404835", "https://data.delijn.be/stops/406751"], ["https://data.delijn.be/stops/204335", "https://data.delijn.be/stops/204626"], ["https://data.delijn.be/stops/408067", "https://data.delijn.be/stops/408068"], ["https://data.delijn.be/stops/402116", "https://data.delijn.be/stops/402138"], ["https://data.delijn.be/stops/402241", "https://data.delijn.be/stops/402284"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/203623"], ["https://data.delijn.be/stops/303744", "https://data.delijn.be/stops/303756"], ["https://data.delijn.be/stops/300353", "https://data.delijn.be/stops/300402"], ["https://data.delijn.be/stops/302868", "https://data.delijn.be/stops/302894"], ["https://data.delijn.be/stops/106182", "https://data.delijn.be/stops/106184"], ["https://data.delijn.be/stops/301699", "https://data.delijn.be/stops/305294"], ["https://data.delijn.be/stops/500022", "https://data.delijn.be/stops/501346"], ["https://data.delijn.be/stops/308459", "https://data.delijn.be/stops/308693"], ["https://data.delijn.be/stops/300687", "https://data.delijn.be/stops/300696"], ["https://data.delijn.be/stops/206759", "https://data.delijn.be/stops/219020"], ["https://data.delijn.be/stops/402782", "https://data.delijn.be/stops/406921"], ["https://data.delijn.be/stops/408718", "https://data.delijn.be/stops/408727"], ["https://data.delijn.be/stops/509463", "https://data.delijn.be/stops/509574"], ["https://data.delijn.be/stops/105928", "https://data.delijn.be/stops/107975"], ["https://data.delijn.be/stops/106593", "https://data.delijn.be/stops/107387"], ["https://data.delijn.be/stops/401006", "https://data.delijn.be/stops/401011"], ["https://data.delijn.be/stops/101182", "https://data.delijn.be/stops/107945"], ["https://data.delijn.be/stops/502164", "https://data.delijn.be/stops/507108"], ["https://data.delijn.be/stops/102996", "https://data.delijn.be/stops/105397"], ["https://data.delijn.be/stops/408499", "https://data.delijn.be/stops/408527"], ["https://data.delijn.be/stops/402690", "https://data.delijn.be/stops/402869"], ["https://data.delijn.be/stops/509253", "https://data.delijn.be/stops/509254"], ["https://data.delijn.be/stops/408846", "https://data.delijn.be/stops/408851"], ["https://data.delijn.be/stops/104888", "https://data.delijn.be/stops/104889"], ["https://data.delijn.be/stops/401509", "https://data.delijn.be/stops/401558"], ["https://data.delijn.be/stops/304567", "https://data.delijn.be/stops/304656"], ["https://data.delijn.be/stops/404351", "https://data.delijn.be/stops/404358"], ["https://data.delijn.be/stops/307834", "https://data.delijn.be/stops/308277"], ["https://data.delijn.be/stops/504380", "https://data.delijn.be/stops/509380"], ["https://data.delijn.be/stops/103222", "https://data.delijn.be/stops/104547"], ["https://data.delijn.be/stops/208219", "https://data.delijn.be/stops/209773"], ["https://data.delijn.be/stops/106965", "https://data.delijn.be/stops/106981"], ["https://data.delijn.be/stops/400504", "https://data.delijn.be/stops/400511"], ["https://data.delijn.be/stops/400591", "https://data.delijn.be/stops/404292"], ["https://data.delijn.be/stops/106724", "https://data.delijn.be/stops/106726"], ["https://data.delijn.be/stops/307755", "https://data.delijn.be/stops/307757"], ["https://data.delijn.be/stops/402854", "https://data.delijn.be/stops/402856"], ["https://data.delijn.be/stops/108650", "https://data.delijn.be/stops/108655"], ["https://data.delijn.be/stops/407519", "https://data.delijn.be/stops/308242"], ["https://data.delijn.be/stops/209455", "https://data.delijn.be/stops/209778"], ["https://data.delijn.be/stops/207249", "https://data.delijn.be/stops/209951"], ["https://data.delijn.be/stops/204674", "https://data.delijn.be/stops/205615"], ["https://data.delijn.be/stops/302008", "https://data.delijn.be/stops/306381"], ["https://data.delijn.be/stops/205929", "https://data.delijn.be/stops/205930"], ["https://data.delijn.be/stops/104011", "https://data.delijn.be/stops/105928"], ["https://data.delijn.be/stops/504351", "https://data.delijn.be/stops/509592"], ["https://data.delijn.be/stops/402749", "https://data.delijn.be/stops/405181"], ["https://data.delijn.be/stops/305107", "https://data.delijn.be/stops/305140"], ["https://data.delijn.be/stops/400367", "https://data.delijn.be/stops/406769"], ["https://data.delijn.be/stops/104572", "https://data.delijn.be/stops/107468"], ["https://data.delijn.be/stops/403263", "https://data.delijn.be/stops/403455"], ["https://data.delijn.be/stops/200904", "https://data.delijn.be/stops/200921"], ["https://data.delijn.be/stops/206276", "https://data.delijn.be/stops/207275"], ["https://data.delijn.be/stops/402071", "https://data.delijn.be/stops/405552"], ["https://data.delijn.be/stops/401540", "https://data.delijn.be/stops/401541"], ["https://data.delijn.be/stops/501073", "https://data.delijn.be/stops/501079"], ["https://data.delijn.be/stops/404008", "https://data.delijn.be/stops/404009"], ["https://data.delijn.be/stops/202106", "https://data.delijn.be/stops/203262"], ["https://data.delijn.be/stops/402589", "https://data.delijn.be/stops/402596"], ["https://data.delijn.be/stops/204401", "https://data.delijn.be/stops/205401"], ["https://data.delijn.be/stops/105233", "https://data.delijn.be/stops/105234"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/504567"], ["https://data.delijn.be/stops/105297", "https://data.delijn.be/stops/105299"], ["https://data.delijn.be/stops/305680", "https://data.delijn.be/stops/305681"], ["https://data.delijn.be/stops/403337", "https://data.delijn.be/stops/410274"], ["https://data.delijn.be/stops/300585", "https://data.delijn.be/stops/300590"], ["https://data.delijn.be/stops/303462", "https://data.delijn.be/stops/308067"], ["https://data.delijn.be/stops/505242", "https://data.delijn.be/stops/507231"], ["https://data.delijn.be/stops/305701", "https://data.delijn.be/stops/307839"], ["https://data.delijn.be/stops/200909", "https://data.delijn.be/stops/202227"], ["https://data.delijn.be/stops/101425", "https://data.delijn.be/stops/108716"], ["https://data.delijn.be/stops/304424", "https://data.delijn.be/stops/307395"], ["https://data.delijn.be/stops/501250", "https://data.delijn.be/stops/501738"], ["https://data.delijn.be/stops/408780", "https://data.delijn.be/stops/410342"], ["https://data.delijn.be/stops/209610", "https://data.delijn.be/stops/305262"], ["https://data.delijn.be/stops/304557", "https://data.delijn.be/stops/304558"], ["https://data.delijn.be/stops/204373", "https://data.delijn.be/stops/204374"], ["https://data.delijn.be/stops/208382", "https://data.delijn.be/stops/209295"], ["https://data.delijn.be/stops/501427", "https://data.delijn.be/stops/501431"], ["https://data.delijn.be/stops/404763", "https://data.delijn.be/stops/404791"], ["https://data.delijn.be/stops/304589", "https://data.delijn.be/stops/304662"], ["https://data.delijn.be/stops/204071", "https://data.delijn.be/stops/205185"], ["https://data.delijn.be/stops/107491", "https://data.delijn.be/stops/305799"], ["https://data.delijn.be/stops/401794", "https://data.delijn.be/stops/401809"], ["https://data.delijn.be/stops/409680", "https://data.delijn.be/stops/409698"], ["https://data.delijn.be/stops/209391", "https://data.delijn.be/stops/209392"], ["https://data.delijn.be/stops/502537", "https://data.delijn.be/stops/505703"], ["https://data.delijn.be/stops/501323", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/206618", "https://data.delijn.be/stops/206720"], ["https://data.delijn.be/stops/505336", "https://data.delijn.be/stops/507525"], ["https://data.delijn.be/stops/305133", "https://data.delijn.be/stops/305172"], ["https://data.delijn.be/stops/304626", "https://data.delijn.be/stops/304645"], ["https://data.delijn.be/stops/202900", "https://data.delijn.be/stops/203900"], ["https://data.delijn.be/stops/207358", "https://data.delijn.be/stops/207885"], ["https://data.delijn.be/stops/200681", "https://data.delijn.be/stops/200691"], ["https://data.delijn.be/stops/308443", "https://data.delijn.be/stops/308444"], ["https://data.delijn.be/stops/408561", "https://data.delijn.be/stops/408873"], ["https://data.delijn.be/stops/200088", "https://data.delijn.be/stops/201088"], ["https://data.delijn.be/stops/504261", "https://data.delijn.be/stops/505301"], ["https://data.delijn.be/stops/408324", "https://data.delijn.be/stops/408335"], ["https://data.delijn.be/stops/202471", "https://data.delijn.be/stops/209852"], ["https://data.delijn.be/stops/302422", "https://data.delijn.be/stops/308105"], ["https://data.delijn.be/stops/501144", "https://data.delijn.be/stops/507919"], ["https://data.delijn.be/stops/109016", "https://data.delijn.be/stops/404046"], ["https://data.delijn.be/stops/503088", "https://data.delijn.be/stops/505383"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/208155"], ["https://data.delijn.be/stops/106037", "https://data.delijn.be/stops/106053"], ["https://data.delijn.be/stops/204483", "https://data.delijn.be/stops/204515"], ["https://data.delijn.be/stops/206766", "https://data.delijn.be/stops/207800"], ["https://data.delijn.be/stops/501320", "https://data.delijn.be/stops/506323"], ["https://data.delijn.be/stops/304372", "https://data.delijn.be/stops/304375"], ["https://data.delijn.be/stops/202494", "https://data.delijn.be/stops/203495"], ["https://data.delijn.be/stops/102807", "https://data.delijn.be/stops/103901"], ["https://data.delijn.be/stops/506599", "https://data.delijn.be/stops/506733"], ["https://data.delijn.be/stops/203165", "https://data.delijn.be/stops/204833"], ["https://data.delijn.be/stops/208614", "https://data.delijn.be/stops/209615"], ["https://data.delijn.be/stops/206090", "https://data.delijn.be/stops/207089"], ["https://data.delijn.be/stops/109262", "https://data.delijn.be/stops/407110"], ["https://data.delijn.be/stops/506190", "https://data.delijn.be/stops/506394"], ["https://data.delijn.be/stops/206854", "https://data.delijn.be/stops/207856"], ["https://data.delijn.be/stops/409051", "https://data.delijn.be/stops/409085"], ["https://data.delijn.be/stops/402480", "https://data.delijn.be/stops/402481"], ["https://data.delijn.be/stops/201564", "https://data.delijn.be/stops/211019"], ["https://data.delijn.be/stops/410305", "https://data.delijn.be/stops/410306"], ["https://data.delijn.be/stops/402563", "https://data.delijn.be/stops/402571"], ["https://data.delijn.be/stops/202735", "https://data.delijn.be/stops/203908"], ["https://data.delijn.be/stops/408576", "https://data.delijn.be/stops/408577"], ["https://data.delijn.be/stops/402114", "https://data.delijn.be/stops/402115"], ["https://data.delijn.be/stops/403526", "https://data.delijn.be/stops/410217"], ["https://data.delijn.be/stops/503844", "https://data.delijn.be/stops/503847"], ["https://data.delijn.be/stops/501338", "https://data.delijn.be/stops/501342"], ["https://data.delijn.be/stops/402321", "https://data.delijn.be/stops/407955"], ["https://data.delijn.be/stops/302179", "https://data.delijn.be/stops/308875"], ["https://data.delijn.be/stops/304474", "https://data.delijn.be/stops/304507"], ["https://data.delijn.be/stops/508621", "https://data.delijn.be/stops/508632"], ["https://data.delijn.be/stops/405222", "https://data.delijn.be/stops/405290"], ["https://data.delijn.be/stops/206537", "https://data.delijn.be/stops/207537"], ["https://data.delijn.be/stops/102812", "https://data.delijn.be/stops/104775"], ["https://data.delijn.be/stops/107414", "https://data.delijn.be/stops/109796"], ["https://data.delijn.be/stops/204511", "https://data.delijn.be/stops/204544"], ["https://data.delijn.be/stops/108902", "https://data.delijn.be/stops/108904"], ["https://data.delijn.be/stops/407814", "https://data.delijn.be/stops/407815"], ["https://data.delijn.be/stops/101631", "https://data.delijn.be/stops/102189"], ["https://data.delijn.be/stops/406649", "https://data.delijn.be/stops/406655"], ["https://data.delijn.be/stops/200849", "https://data.delijn.be/stops/209653"], ["https://data.delijn.be/stops/301630", "https://data.delijn.be/stops/302119"], ["https://data.delijn.be/stops/401757", "https://data.delijn.be/stops/401806"], ["https://data.delijn.be/stops/300259", "https://data.delijn.be/stops/303893"], ["https://data.delijn.be/stops/206221", "https://data.delijn.be/stops/206371"], ["https://data.delijn.be/stops/102502", "https://data.delijn.be/stops/400028"], ["https://data.delijn.be/stops/403519", "https://data.delijn.be/stops/410276"], ["https://data.delijn.be/stops/302457", "https://data.delijn.be/stops/304756"], ["https://data.delijn.be/stops/403131", "https://data.delijn.be/stops/403666"], ["https://data.delijn.be/stops/302388", "https://data.delijn.be/stops/306185"], ["https://data.delijn.be/stops/304324", "https://data.delijn.be/stops/306882"], ["https://data.delijn.be/stops/304509", "https://data.delijn.be/stops/304518"], ["https://data.delijn.be/stops/207445", "https://data.delijn.be/stops/208515"], ["https://data.delijn.be/stops/209099", "https://data.delijn.be/stops/209100"], ["https://data.delijn.be/stops/504142", "https://data.delijn.be/stops/504147"], ["https://data.delijn.be/stops/204606", "https://data.delijn.be/stops/205608"], ["https://data.delijn.be/stops/504049", "https://data.delijn.be/stops/509045"], ["https://data.delijn.be/stops/203991", "https://data.delijn.be/stops/210851"], ["https://data.delijn.be/stops/301290", "https://data.delijn.be/stops/301297"], ["https://data.delijn.be/stops/201857", "https://data.delijn.be/stops/202664"], ["https://data.delijn.be/stops/107425", "https://data.delijn.be/stops/109241"], ["https://data.delijn.be/stops/300062", "https://data.delijn.be/stops/300408"], ["https://data.delijn.be/stops/505191", "https://data.delijn.be/stops/508149"], ["https://data.delijn.be/stops/200466", "https://data.delijn.be/stops/209957"], ["https://data.delijn.be/stops/202435", "https://data.delijn.be/stops/203433"], ["https://data.delijn.be/stops/102583", "https://data.delijn.be/stops/102584"], ["https://data.delijn.be/stops/308241", "https://data.delijn.be/stops/308243"], ["https://data.delijn.be/stops/408016", "https://data.delijn.be/stops/408199"], ["https://data.delijn.be/stops/204294", "https://data.delijn.be/stops/205294"], ["https://data.delijn.be/stops/103080", "https://data.delijn.be/stops/104123"], ["https://data.delijn.be/stops/106580", "https://data.delijn.be/stops/106582"], ["https://data.delijn.be/stops/407380", "https://data.delijn.be/stops/407382"], ["https://data.delijn.be/stops/203372", "https://data.delijn.be/stops/203587"], ["https://data.delijn.be/stops/206435", "https://data.delijn.be/stops/207435"], ["https://data.delijn.be/stops/302326", "https://data.delijn.be/stops/302343"], ["https://data.delijn.be/stops/502020", "https://data.delijn.be/stops/502913"], ["https://data.delijn.be/stops/105607", "https://data.delijn.be/stops/105608"], ["https://data.delijn.be/stops/102908", "https://data.delijn.be/stops/102909"], ["https://data.delijn.be/stops/502329", "https://data.delijn.be/stops/505009"], ["https://data.delijn.be/stops/406369", "https://data.delijn.be/stops/406393"], ["https://data.delijn.be/stops/201748", "https://data.delijn.be/stops/202971"], ["https://data.delijn.be/stops/503652", "https://data.delijn.be/stops/505117"], ["https://data.delijn.be/stops/104113", "https://data.delijn.be/stops/107878"], ["https://data.delijn.be/stops/503745", "https://data.delijn.be/stops/508745"], ["https://data.delijn.be/stops/107878", "https://data.delijn.be/stops/107882"], ["https://data.delijn.be/stops/300480", "https://data.delijn.be/stops/300500"], ["https://data.delijn.be/stops/300158", "https://data.delijn.be/stops/306696"], ["https://data.delijn.be/stops/401504", "https://data.delijn.be/stops/401506"], ["https://data.delijn.be/stops/307442", "https://data.delijn.be/stops/307825"], ["https://data.delijn.be/stops/502507", "https://data.delijn.be/stops/507491"], ["https://data.delijn.be/stops/104548", "https://data.delijn.be/stops/104852"], ["https://data.delijn.be/stops/300529", "https://data.delijn.be/stops/300535"], ["https://data.delijn.be/stops/408235", "https://data.delijn.be/stops/308208"], ["https://data.delijn.be/stops/402156", "https://data.delijn.be/stops/409393"], ["https://data.delijn.be/stops/103216", "https://data.delijn.be/stops/103591"], ["https://data.delijn.be/stops/302515", "https://data.delijn.be/stops/302533"], ["https://data.delijn.be/stops/102779", "https://data.delijn.be/stops/106030"], ["https://data.delijn.be/stops/305748", "https://data.delijn.be/stops/305755"], ["https://data.delijn.be/stops/104493", "https://data.delijn.be/stops/105345"], ["https://data.delijn.be/stops/404838", "https://data.delijn.be/stops/405221"], ["https://data.delijn.be/stops/103729", "https://data.delijn.be/stops/108534"], ["https://data.delijn.be/stops/202127", "https://data.delijn.be/stops/210077"], ["https://data.delijn.be/stops/508759", "https://data.delijn.be/stops/509513"], ["https://data.delijn.be/stops/503009", "https://data.delijn.be/stops/505278"], ["https://data.delijn.be/stops/403308", "https://data.delijn.be/stops/403545"], ["https://data.delijn.be/stops/302684", "https://data.delijn.be/stops/302686"], ["https://data.delijn.be/stops/410061", "https://data.delijn.be/stops/410210"], ["https://data.delijn.be/stops/206488", "https://data.delijn.be/stops/206861"], ["https://data.delijn.be/stops/505502", "https://data.delijn.be/stops/505504"], ["https://data.delijn.be/stops/400222", "https://data.delijn.be/stops/406079"], ["https://data.delijn.be/stops/204064", "https://data.delijn.be/stops/204582"], ["https://data.delijn.be/stops/301947", "https://data.delijn.be/stops/303323"], ["https://data.delijn.be/stops/103470", "https://data.delijn.be/stops/106618"], ["https://data.delijn.be/stops/400924", "https://data.delijn.be/stops/401923"], ["https://data.delijn.be/stops/208361", "https://data.delijn.be/stops/209361"], ["https://data.delijn.be/stops/408207", "https://data.delijn.be/stops/408380"], ["https://data.delijn.be/stops/300503", "https://data.delijn.be/stops/300504"], ["https://data.delijn.be/stops/103006", "https://data.delijn.be/stops/106424"], ["https://data.delijn.be/stops/105893", "https://data.delijn.be/stops/105903"], ["https://data.delijn.be/stops/505071", "https://data.delijn.be/stops/505072"], ["https://data.delijn.be/stops/201775", "https://data.delijn.be/stops/209226"], ["https://data.delijn.be/stops/507561", "https://data.delijn.be/stops/507562"], ["https://data.delijn.be/stops/303692", "https://data.delijn.be/stops/303765"], ["https://data.delijn.be/stops/203232", "https://data.delijn.be/stops/203233"], ["https://data.delijn.be/stops/303762", "https://data.delijn.be/stops/303766"], ["https://data.delijn.be/stops/105862", "https://data.delijn.be/stops/105865"], ["https://data.delijn.be/stops/401932", "https://data.delijn.be/stops/401933"], ["https://data.delijn.be/stops/208554", "https://data.delijn.be/stops/307742"], ["https://data.delijn.be/stops/104020", "https://data.delijn.be/stops/105655"], ["https://data.delijn.be/stops/403320", "https://data.delijn.be/stops/410349"], ["https://data.delijn.be/stops/201262", "https://data.delijn.be/stops/203546"], ["https://data.delijn.be/stops/501563", "https://data.delijn.be/stops/506182"], ["https://data.delijn.be/stops/503068", "https://data.delijn.be/stops/503073"], ["https://data.delijn.be/stops/302610", "https://data.delijn.be/stops/302618"], ["https://data.delijn.be/stops/507016", "https://data.delijn.be/stops/509940"], ["https://data.delijn.be/stops/106908", "https://data.delijn.be/stops/107252"], ["https://data.delijn.be/stops/107053", "https://data.delijn.be/stops/109646"], ["https://data.delijn.be/stops/300797", "https://data.delijn.be/stops/300798"], ["https://data.delijn.be/stops/101832", "https://data.delijn.be/stops/108184"], ["https://data.delijn.be/stops/503653", "https://data.delijn.be/stops/503886"], ["https://data.delijn.be/stops/503171", "https://data.delijn.be/stops/508171"], ["https://data.delijn.be/stops/408624", "https://data.delijn.be/stops/410250"], ["https://data.delijn.be/stops/505804", "https://data.delijn.be/stops/508842"], ["https://data.delijn.be/stops/101386", "https://data.delijn.be/stops/101829"], ["https://data.delijn.be/stops/204728", "https://data.delijn.be/stops/204761"], ["https://data.delijn.be/stops/504758", "https://data.delijn.be/stops/507914"], ["https://data.delijn.be/stops/300576", "https://data.delijn.be/stops/300584"], ["https://data.delijn.be/stops/104237", "https://data.delijn.be/stops/105024"], ["https://data.delijn.be/stops/104384", "https://data.delijn.be/stops/105250"], ["https://data.delijn.be/stops/203094", "https://data.delijn.be/stops/203644"], ["https://data.delijn.be/stops/301811", "https://data.delijn.be/stops/306969"], ["https://data.delijn.be/stops/402487", "https://data.delijn.be/stops/402489"], ["https://data.delijn.be/stops/503798", "https://data.delijn.be/stops/507684"], ["https://data.delijn.be/stops/504202", "https://data.delijn.be/stops/504256"], ["https://data.delijn.be/stops/503208", "https://data.delijn.be/stops/508193"], ["https://data.delijn.be/stops/101408", "https://data.delijn.be/stops/106921"], ["https://data.delijn.be/stops/103885", "https://data.delijn.be/stops/105670"], ["https://data.delijn.be/stops/202596", "https://data.delijn.be/stops/202617"], ["https://data.delijn.be/stops/300222", "https://data.delijn.be/stops/307464"], ["https://data.delijn.be/stops/304354", "https://data.delijn.be/stops/304355"], ["https://data.delijn.be/stops/209223", "https://data.delijn.be/stops/209224"], ["https://data.delijn.be/stops/200350", "https://data.delijn.be/stops/202650"], ["https://data.delijn.be/stops/201353", "https://data.delijn.be/stops/208261"], ["https://data.delijn.be/stops/109719", "https://data.delijn.be/stops/109996"], ["https://data.delijn.be/stops/404497", "https://data.delijn.be/stops/404564"], ["https://data.delijn.be/stops/204295", "https://data.delijn.be/stops/204496"], ["https://data.delijn.be/stops/204289", "https://data.delijn.be/stops/205546"], ["https://data.delijn.be/stops/106021", "https://data.delijn.be/stops/106188"], ["https://data.delijn.be/stops/209583", "https://data.delijn.be/stops/209677"], ["https://data.delijn.be/stops/401199", "https://data.delijn.be/stops/404772"], ["https://data.delijn.be/stops/301184", "https://data.delijn.be/stops/302928"], ["https://data.delijn.be/stops/502469", "https://data.delijn.be/stops/505664"], ["https://data.delijn.be/stops/308279", "https://data.delijn.be/stops/308287"], ["https://data.delijn.be/stops/406999", "https://data.delijn.be/stops/408700"], ["https://data.delijn.be/stops/201767", "https://data.delijn.be/stops/209269"], ["https://data.delijn.be/stops/203381", "https://data.delijn.be/stops/203382"], ["https://data.delijn.be/stops/505102", "https://data.delijn.be/stops/505572"], ["https://data.delijn.be/stops/201047", "https://data.delijn.be/stops/202441"], ["https://data.delijn.be/stops/401767", "https://data.delijn.be/stops/406329"], ["https://data.delijn.be/stops/400153", "https://data.delijn.be/stops/409199"], ["https://data.delijn.be/stops/300343", "https://data.delijn.be/stops/300357"], ["https://data.delijn.be/stops/208373", "https://data.delijn.be/stops/209373"], ["https://data.delijn.be/stops/307024", "https://data.delijn.be/stops/307534"], ["https://data.delijn.be/stops/204754", "https://data.delijn.be/stops/204755"], ["https://data.delijn.be/stops/505749", "https://data.delijn.be/stops/507504"], ["https://data.delijn.be/stops/305954", "https://data.delijn.be/stops/305956"], ["https://data.delijn.be/stops/406087", "https://data.delijn.be/stops/406091"], ["https://data.delijn.be/stops/401290", "https://data.delijn.be/stops/410148"], ["https://data.delijn.be/stops/302792", "https://data.delijn.be/stops/305425"], ["https://data.delijn.be/stops/405824", "https://data.delijn.be/stops/409742"], ["https://data.delijn.be/stops/402404", "https://data.delijn.be/stops/402440"], ["https://data.delijn.be/stops/405022", "https://data.delijn.be/stops/405113"], ["https://data.delijn.be/stops/502299", "https://data.delijn.be/stops/505608"], ["https://data.delijn.be/stops/101482", "https://data.delijn.be/stops/109292"], ["https://data.delijn.be/stops/303361", "https://data.delijn.be/stops/307032"], ["https://data.delijn.be/stops/200049", "https://data.delijn.be/stops/200187"], ["https://data.delijn.be/stops/306295", "https://data.delijn.be/stops/306296"], ["https://data.delijn.be/stops/205659", "https://data.delijn.be/stops/205660"], ["https://data.delijn.be/stops/102477", "https://data.delijn.be/stops/405297"], ["https://data.delijn.be/stops/200795", "https://data.delijn.be/stops/201665"], ["https://data.delijn.be/stops/503199", "https://data.delijn.be/stops/503983"], ["https://data.delijn.be/stops/203550", "https://data.delijn.be/stops/203552"], ["https://data.delijn.be/stops/403307", "https://data.delijn.be/stops/405640"], ["https://data.delijn.be/stops/107050", "https://data.delijn.be/stops/108620"], ["https://data.delijn.be/stops/109332", "https://data.delijn.be/stops/109333"], ["https://data.delijn.be/stops/501213", "https://data.delijn.be/stops/501221"], ["https://data.delijn.be/stops/304991", "https://data.delijn.be/stops/304992"], ["https://data.delijn.be/stops/504615", "https://data.delijn.be/stops/505422"], ["https://data.delijn.be/stops/406150", "https://data.delijn.be/stops/406151"], ["https://data.delijn.be/stops/504853", "https://data.delijn.be/stops/505088"], ["https://data.delijn.be/stops/400025", "https://data.delijn.be/stops/407513"], ["https://data.delijn.be/stops/202875", "https://data.delijn.be/stops/202876"], ["https://data.delijn.be/stops/404735", "https://data.delijn.be/stops/404814"], ["https://data.delijn.be/stops/404173", "https://data.delijn.be/stops/404197"], ["https://data.delijn.be/stops/504018", "https://data.delijn.be/stops/504664"], ["https://data.delijn.be/stops/301881", "https://data.delijn.be/stops/301889"], ["https://data.delijn.be/stops/105476", "https://data.delijn.be/stops/109934"], ["https://data.delijn.be/stops/504272", "https://data.delijn.be/stops/509274"], ["https://data.delijn.be/stops/106096", "https://data.delijn.be/stops/106143"], ["https://data.delijn.be/stops/404667", "https://data.delijn.be/stops/404668"], ["https://data.delijn.be/stops/300922", "https://data.delijn.be/stops/300924"], ["https://data.delijn.be/stops/509787", "https://data.delijn.be/stops/509907"], ["https://data.delijn.be/stops/509737", "https://data.delijn.be/stops/509740"], ["https://data.delijn.be/stops/201894", "https://data.delijn.be/stops/210127"], ["https://data.delijn.be/stops/402244", "https://data.delijn.be/stops/402245"], ["https://data.delijn.be/stops/304306", "https://data.delijn.be/stops/304320"], ["https://data.delijn.be/stops/508507", "https://data.delijn.be/stops/508508"], ["https://data.delijn.be/stops/105612", "https://data.delijn.be/stops/106364"], ["https://data.delijn.be/stops/503279", "https://data.delijn.be/stops/508289"], ["https://data.delijn.be/stops/401048", "https://data.delijn.be/stops/402830"], ["https://data.delijn.be/stops/303462", "https://data.delijn.be/stops/304988"], ["https://data.delijn.be/stops/502583", "https://data.delijn.be/stops/507207"], ["https://data.delijn.be/stops/307798", "https://data.delijn.be/stops/307799"], ["https://data.delijn.be/stops/200710", "https://data.delijn.be/stops/200937"], ["https://data.delijn.be/stops/505757", "https://data.delijn.be/stops/509796"], ["https://data.delijn.be/stops/501137", "https://data.delijn.be/stops/506129"], ["https://data.delijn.be/stops/502729", "https://data.delijn.be/stops/507136"], ["https://data.delijn.be/stops/201406", "https://data.delijn.be/stops/203358"], ["https://data.delijn.be/stops/501177", "https://data.delijn.be/stops/506169"], ["https://data.delijn.be/stops/209735", "https://data.delijn.be/stops/218025"], ["https://data.delijn.be/stops/102901", "https://data.delijn.be/stops/109027"], ["https://data.delijn.be/stops/208460", "https://data.delijn.be/stops/209513"], ["https://data.delijn.be/stops/502811", "https://data.delijn.be/stops/505596"], ["https://data.delijn.be/stops/201007", "https://data.delijn.be/stops/210070"], ["https://data.delijn.be/stops/109829", "https://data.delijn.be/stops/109979"], ["https://data.delijn.be/stops/408684", "https://data.delijn.be/stops/408706"], ["https://data.delijn.be/stops/206417", "https://data.delijn.be/stops/207417"], ["https://data.delijn.be/stops/200266", "https://data.delijn.be/stops/201266"], ["https://data.delijn.be/stops/502019", "https://data.delijn.be/stops/502915"], ["https://data.delijn.be/stops/200503", "https://data.delijn.be/stops/201154"], ["https://data.delijn.be/stops/505440", "https://data.delijn.be/stops/505635"], ["https://data.delijn.be/stops/503443", "https://data.delijn.be/stops/508382"], ["https://data.delijn.be/stops/504659", "https://data.delijn.be/stops/509045"], ["https://data.delijn.be/stops/106240", "https://data.delijn.be/stops/107234"], ["https://data.delijn.be/stops/200738", "https://data.delijn.be/stops/202581"], ["https://data.delijn.be/stops/404140", "https://data.delijn.be/stops/405918"], ["https://data.delijn.be/stops/406400", "https://data.delijn.be/stops/407763"], ["https://data.delijn.be/stops/104738", "https://data.delijn.be/stops/107338"], ["https://data.delijn.be/stops/303246", "https://data.delijn.be/stops/303247"], ["https://data.delijn.be/stops/103097", "https://data.delijn.be/stops/103974"], ["https://data.delijn.be/stops/108792", "https://data.delijn.be/stops/109549"], ["https://data.delijn.be/stops/304746", "https://data.delijn.be/stops/308701"], ["https://data.delijn.be/stops/101592", "https://data.delijn.be/stops/101611"], ["https://data.delijn.be/stops/106672", "https://data.delijn.be/stops/106674"], ["https://data.delijn.be/stops/105533", "https://data.delijn.be/stops/106247"], ["https://data.delijn.be/stops/202870", "https://data.delijn.be/stops/209723"], ["https://data.delijn.be/stops/300728", "https://data.delijn.be/stops/302199"], ["https://data.delijn.be/stops/304611", "https://data.delijn.be/stops/304633"], ["https://data.delijn.be/stops/404039", "https://data.delijn.be/stops/405980"], ["https://data.delijn.be/stops/404513", "https://data.delijn.be/stops/408994"], ["https://data.delijn.be/stops/104894", "https://data.delijn.be/stops/105311"], ["https://data.delijn.be/stops/206778", "https://data.delijn.be/stops/206784"], ["https://data.delijn.be/stops/204129", "https://data.delijn.be/stops/205789"], ["https://data.delijn.be/stops/304738", "https://data.delijn.be/stops/308712"], ["https://data.delijn.be/stops/404780", "https://data.delijn.be/stops/410051"], ["https://data.delijn.be/stops/505390", "https://data.delijn.be/stops/505931"], ["https://data.delijn.be/stops/403925", "https://data.delijn.be/stops/403983"], ["https://data.delijn.be/stops/109322", "https://data.delijn.be/stops/307438"], ["https://data.delijn.be/stops/504073", "https://data.delijn.be/stops/504209"], ["https://data.delijn.be/stops/206970", "https://data.delijn.be/stops/206990"], ["https://data.delijn.be/stops/108416", "https://data.delijn.be/stops/108417"], ["https://data.delijn.be/stops/505093", "https://data.delijn.be/stops/509891"], ["https://data.delijn.be/stops/204101", "https://data.delijn.be/stops/207395"], ["https://data.delijn.be/stops/206300", "https://data.delijn.be/stops/206464"], ["https://data.delijn.be/stops/300208", "https://data.delijn.be/stops/301375"], ["https://data.delijn.be/stops/507931", "https://data.delijn.be/stops/508721"], ["https://data.delijn.be/stops/302756", "https://data.delijn.be/stops/304829"], ["https://data.delijn.be/stops/504284", "https://data.delijn.be/stops/509284"], ["https://data.delijn.be/stops/504349", "https://data.delijn.be/stops/504351"], ["https://data.delijn.be/stops/402637", "https://data.delijn.be/stops/405581"], ["https://data.delijn.be/stops/303270", "https://data.delijn.be/stops/303271"], ["https://data.delijn.be/stops/200778", "https://data.delijn.be/stops/200907"], ["https://data.delijn.be/stops/306925", "https://data.delijn.be/stops/307278"], ["https://data.delijn.be/stops/502691", "https://data.delijn.be/stops/507474"], ["https://data.delijn.be/stops/302940", "https://data.delijn.be/stops/307096"], ["https://data.delijn.be/stops/102917", "https://data.delijn.be/stops/103300"], ["https://data.delijn.be/stops/204484", "https://data.delijn.be/stops/205484"], ["https://data.delijn.be/stops/403664", "https://data.delijn.be/stops/409255"], ["https://data.delijn.be/stops/301582", "https://data.delijn.be/stops/303419"], ["https://data.delijn.be/stops/302108", "https://data.delijn.be/stops/302109"], ["https://data.delijn.be/stops/109163", "https://data.delijn.be/stops/109164"], ["https://data.delijn.be/stops/400289", "https://data.delijn.be/stops/400331"], ["https://data.delijn.be/stops/302389", "https://data.delijn.be/stops/302762"], ["https://data.delijn.be/stops/303346", "https://data.delijn.be/stops/303347"], ["https://data.delijn.be/stops/106371", "https://data.delijn.be/stops/106373"], ["https://data.delijn.be/stops/509171", "https://data.delijn.be/stops/509354"], ["https://data.delijn.be/stops/104133", "https://data.delijn.be/stops/108261"], ["https://data.delijn.be/stops/508184", "https://data.delijn.be/stops/508815"], ["https://data.delijn.be/stops/105002", "https://data.delijn.be/stops/108890"], ["https://data.delijn.be/stops/500557", "https://data.delijn.be/stops/506033"], ["https://data.delijn.be/stops/504390", "https://data.delijn.be/stops/509390"], ["https://data.delijn.be/stops/503198", "https://data.delijn.be/stops/508213"], ["https://data.delijn.be/stops/305500", "https://data.delijn.be/stops/307878"], ["https://data.delijn.be/stops/202525", "https://data.delijn.be/stops/203960"], ["https://data.delijn.be/stops/105164", "https://data.delijn.be/stops/107504"], ["https://data.delijn.be/stops/206829", "https://data.delijn.be/stops/209951"], ["https://data.delijn.be/stops/303374", "https://data.delijn.be/stops/303672"], ["https://data.delijn.be/stops/504028", "https://data.delijn.be/stops/509028"], ["https://data.delijn.be/stops/206658", "https://data.delijn.be/stops/206659"], ["https://data.delijn.be/stops/301613", "https://data.delijn.be/stops/303623"], ["https://data.delijn.be/stops/500116", "https://data.delijn.be/stops/505023"], ["https://data.delijn.be/stops/202355", "https://data.delijn.be/stops/210119"], ["https://data.delijn.be/stops/102701", "https://data.delijn.be/stops/105656"], ["https://data.delijn.be/stops/400602", "https://data.delijn.be/stops/400606"], ["https://data.delijn.be/stops/109217", "https://data.delijn.be/stops/109219"], ["https://data.delijn.be/stops/403043", "https://data.delijn.be/stops/403095"], ["https://data.delijn.be/stops/505210", "https://data.delijn.be/stops/509089"], ["https://data.delijn.be/stops/107050", "https://data.delijn.be/stops/108405"], ["https://data.delijn.be/stops/504883", "https://data.delijn.be/stops/509883"], ["https://data.delijn.be/stops/106211", "https://data.delijn.be/stops/106252"], ["https://data.delijn.be/stops/103107", "https://data.delijn.be/stops/106566"], ["https://data.delijn.be/stops/302645", "https://data.delijn.be/stops/308113"], ["https://data.delijn.be/stops/307529", "https://data.delijn.be/stops/307530"], ["https://data.delijn.be/stops/108681", "https://data.delijn.be/stops/108682"], ["https://data.delijn.be/stops/206530", "https://data.delijn.be/stops/206859"], ["https://data.delijn.be/stops/106529", "https://data.delijn.be/stops/106530"], ["https://data.delijn.be/stops/407232", "https://data.delijn.be/stops/407233"], ["https://data.delijn.be/stops/105019", "https://data.delijn.be/stops/105087"], ["https://data.delijn.be/stops/202268", "https://data.delijn.be/stops/203268"], ["https://data.delijn.be/stops/202492", "https://data.delijn.be/stops/203001"], ["https://data.delijn.be/stops/101036", "https://data.delijn.be/stops/205564"], ["https://data.delijn.be/stops/409119", "https://data.delijn.be/stops/409130"], ["https://data.delijn.be/stops/207783", "https://data.delijn.be/stops/207789"], ["https://data.delijn.be/stops/200106", "https://data.delijn.be/stops/203008"], ["https://data.delijn.be/stops/303490", "https://data.delijn.be/stops/308636"], ["https://data.delijn.be/stops/302958", "https://data.delijn.be/stops/302974"], ["https://data.delijn.be/stops/301250", "https://data.delijn.be/stops/304397"], ["https://data.delijn.be/stops/509009", "https://data.delijn.be/stops/509405"], ["https://data.delijn.be/stops/103236", "https://data.delijn.be/stops/107722"], ["https://data.delijn.be/stops/203116", "https://data.delijn.be/stops/204172"], ["https://data.delijn.be/stops/501054", "https://data.delijn.be/stops/506061"], ["https://data.delijn.be/stops/405420", "https://data.delijn.be/stops/405421"], ["https://data.delijn.be/stops/206294", "https://data.delijn.be/stops/207315"], ["https://data.delijn.be/stops/405531", "https://data.delijn.be/stops/408075"], ["https://data.delijn.be/stops/300451", "https://data.delijn.be/stops/308052"], ["https://data.delijn.be/stops/106154", "https://data.delijn.be/stops/106447"], ["https://data.delijn.be/stops/305086", "https://data.delijn.be/stops/305088"], ["https://data.delijn.be/stops/201670", "https://data.delijn.be/stops/210044"], ["https://data.delijn.be/stops/301550", "https://data.delijn.be/stops/306962"], ["https://data.delijn.be/stops/201760", "https://data.delijn.be/stops/208271"], ["https://data.delijn.be/stops/201773", "https://data.delijn.be/stops/218027"], ["https://data.delijn.be/stops/101753", "https://data.delijn.be/stops/109821"], ["https://data.delijn.be/stops/206642", "https://data.delijn.be/stops/206643"], ["https://data.delijn.be/stops/400727", "https://data.delijn.be/stops/409399"], ["https://data.delijn.be/stops/208669", "https://data.delijn.be/stops/208672"], ["https://data.delijn.be/stops/102862", "https://data.delijn.be/stops/105860"], ["https://data.delijn.be/stops/406358", "https://data.delijn.be/stops/406392"], ["https://data.delijn.be/stops/505599", "https://data.delijn.be/stops/507714"], ["https://data.delijn.be/stops/203267", "https://data.delijn.be/stops/210076"], ["https://data.delijn.be/stops/408274", "https://data.delijn.be/stops/408275"], ["https://data.delijn.be/stops/503786", "https://data.delijn.be/stops/508786"], ["https://data.delijn.be/stops/106712", "https://data.delijn.be/stops/106714"], ["https://data.delijn.be/stops/402064", "https://data.delijn.be/stops/405555"], ["https://data.delijn.be/stops/503682", "https://data.delijn.be/stops/508684"], ["https://data.delijn.be/stops/403015", "https://data.delijn.be/stops/409334"], ["https://data.delijn.be/stops/303315", "https://data.delijn.be/stops/307294"], ["https://data.delijn.be/stops/204396", "https://data.delijn.be/stops/205397"], ["https://data.delijn.be/stops/202199", "https://data.delijn.be/stops/203199"], ["https://data.delijn.be/stops/206228", "https://data.delijn.be/stops/300181"], ["https://data.delijn.be/stops/304188", "https://data.delijn.be/stops/305905"], ["https://data.delijn.be/stops/402694", "https://data.delijn.be/stops/301476"], ["https://data.delijn.be/stops/510026", "https://data.delijn.be/stops/510030"], ["https://data.delijn.be/stops/403485", "https://data.delijn.be/stops/403488"], ["https://data.delijn.be/stops/208797", "https://data.delijn.be/stops/209116"], ["https://data.delijn.be/stops/101855", "https://data.delijn.be/stops/101856"], ["https://data.delijn.be/stops/104637", "https://data.delijn.be/stops/108033"], ["https://data.delijn.be/stops/307439", "https://data.delijn.be/stops/307440"], ["https://data.delijn.be/stops/200422", "https://data.delijn.be/stops/202536"], ["https://data.delijn.be/stops/304958", "https://data.delijn.be/stops/304966"], ["https://data.delijn.be/stops/105151", "https://data.delijn.be/stops/105153"], ["https://data.delijn.be/stops/502336", "https://data.delijn.be/stops/507336"], ["https://data.delijn.be/stops/102066", "https://data.delijn.be/stops/102067"], ["https://data.delijn.be/stops/401255", "https://data.delijn.be/stops/401388"], ["https://data.delijn.be/stops/101778", "https://data.delijn.be/stops/104247"], ["https://data.delijn.be/stops/106363", "https://data.delijn.be/stops/106367"], ["https://data.delijn.be/stops/204141", "https://data.delijn.be/stops/205239"], ["https://data.delijn.be/stops/202938", "https://data.delijn.be/stops/203427"], ["https://data.delijn.be/stops/400716", "https://data.delijn.be/stops/402235"], ["https://data.delijn.be/stops/206724", "https://data.delijn.be/stops/207095"], ["https://data.delijn.be/stops/204593", "https://data.delijn.be/stops/205582"], ["https://data.delijn.be/stops/404294", "https://data.delijn.be/stops/405699"], ["https://data.delijn.be/stops/505264", "https://data.delijn.be/stops/508224"], ["https://data.delijn.be/stops/400857", "https://data.delijn.be/stops/409541"], ["https://data.delijn.be/stops/502797", "https://data.delijn.be/stops/503979"], ["https://data.delijn.be/stops/209575", "https://data.delijn.be/stops/306272"], ["https://data.delijn.be/stops/106632", "https://data.delijn.be/stops/107164"], ["https://data.delijn.be/stops/202757", "https://data.delijn.be/stops/203756"], ["https://data.delijn.be/stops/504150", "https://data.delijn.be/stops/509150"], ["https://data.delijn.be/stops/403294", "https://data.delijn.be/stops/403345"], ["https://data.delijn.be/stops/102210", "https://data.delijn.be/stops/102896"], ["https://data.delijn.be/stops/206026", "https://data.delijn.be/stops/216002"], ["https://data.delijn.be/stops/503803", "https://data.delijn.be/stops/505538"], ["https://data.delijn.be/stops/507100", "https://data.delijn.be/stops/507576"], ["https://data.delijn.be/stops/301334", "https://data.delijn.be/stops/301907"], ["https://data.delijn.be/stops/207378", "https://data.delijn.be/stops/207381"], ["https://data.delijn.be/stops/202663", "https://data.delijn.be/stops/202664"], ["https://data.delijn.be/stops/304511", "https://data.delijn.be/stops/305307"], ["https://data.delijn.be/stops/104919", "https://data.delijn.be/stops/104921"], ["https://data.delijn.be/stops/307629", "https://data.delijn.be/stops/308261"], ["https://data.delijn.be/stops/203711", "https://data.delijn.be/stops/211709"], ["https://data.delijn.be/stops/504310", "https://data.delijn.be/stops/509292"], ["https://data.delijn.be/stops/200037", "https://data.delijn.be/stops/200375"], ["https://data.delijn.be/stops/300292", "https://data.delijn.be/stops/307476"], ["https://data.delijn.be/stops/202176", "https://data.delijn.be/stops/203155"], ["https://data.delijn.be/stops/106817", "https://data.delijn.be/stops/106988"], ["https://data.delijn.be/stops/107390", "https://data.delijn.be/stops/308817"], ["https://data.delijn.be/stops/403487", "https://data.delijn.be/stops/403488"], ["https://data.delijn.be/stops/402877", "https://data.delijn.be/stops/402878"], ["https://data.delijn.be/stops/301910", "https://data.delijn.be/stops/301911"], ["https://data.delijn.be/stops/101030", "https://data.delijn.be/stops/104905"], ["https://data.delijn.be/stops/208992", "https://data.delijn.be/stops/209329"], ["https://data.delijn.be/stops/304442", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/105737", "https://data.delijn.be/stops/109835"], ["https://data.delijn.be/stops/406521", "https://data.delijn.be/stops/407442"], ["https://data.delijn.be/stops/104109", "https://data.delijn.be/stops/204604"], ["https://data.delijn.be/stops/302566", "https://data.delijn.be/stops/306404"], ["https://data.delijn.be/stops/101825", "https://data.delijn.be/stops/103975"], ["https://data.delijn.be/stops/202830", "https://data.delijn.be/stops/203831"], ["https://data.delijn.be/stops/202030", "https://data.delijn.be/stops/203029"], ["https://data.delijn.be/stops/504674", "https://data.delijn.be/stops/509015"], ["https://data.delijn.be/stops/503701", "https://data.delijn.be/stops/508723"], ["https://data.delijn.be/stops/502219", "https://data.delijn.be/stops/505150"], ["https://data.delijn.be/stops/208156", "https://data.delijn.be/stops/209155"], ["https://data.delijn.be/stops/405277", "https://data.delijn.be/stops/405506"], ["https://data.delijn.be/stops/301459", "https://data.delijn.be/stops/307102"], ["https://data.delijn.be/stops/102233", "https://data.delijn.be/stops/105580"], ["https://data.delijn.be/stops/200855", "https://data.delijn.be/stops/200856"], ["https://data.delijn.be/stops/401979", "https://data.delijn.be/stops/406885"], ["https://data.delijn.be/stops/304754", "https://data.delijn.be/stops/304770"], ["https://data.delijn.be/stops/402078", "https://data.delijn.be/stops/402079"], ["https://data.delijn.be/stops/208451", "https://data.delijn.be/stops/209698"], ["https://data.delijn.be/stops/303019", "https://data.delijn.be/stops/303020"], ["https://data.delijn.be/stops/304285", "https://data.delijn.be/stops/306669"], ["https://data.delijn.be/stops/200677", "https://data.delijn.be/stops/201466"], ["https://data.delijn.be/stops/410082", "https://data.delijn.be/stops/410083"], ["https://data.delijn.be/stops/507469", "https://data.delijn.be/stops/509699"], ["https://data.delijn.be/stops/407261", "https://data.delijn.be/stops/407301"], ["https://data.delijn.be/stops/104017", "https://data.delijn.be/stops/104019"], ["https://data.delijn.be/stops/508563", "https://data.delijn.be/stops/508612"], ["https://data.delijn.be/stops/404197", "https://data.delijn.be/stops/404204"], ["https://data.delijn.be/stops/508747", "https://data.delijn.be/stops/509866"], ["https://data.delijn.be/stops/202269", "https://data.delijn.be/stops/203269"], ["https://data.delijn.be/stops/403629", "https://data.delijn.be/stops/403649"], ["https://data.delijn.be/stops/405719", "https://data.delijn.be/stops/410145"], ["https://data.delijn.be/stops/104605", "https://data.delijn.be/stops/109594"], ["https://data.delijn.be/stops/204619", "https://data.delijn.be/stops/205619"], ["https://data.delijn.be/stops/303247", "https://data.delijn.be/stops/307688"], ["https://data.delijn.be/stops/410213", "https://data.delijn.be/stops/410320"], ["https://data.delijn.be/stops/102829", "https://data.delijn.be/stops/104780"], ["https://data.delijn.be/stops/509947", "https://data.delijn.be/stops/509962"], ["https://data.delijn.be/stops/206224", "https://data.delijn.be/stops/207803"], ["https://data.delijn.be/stops/302072", "https://data.delijn.be/stops/308813"], ["https://data.delijn.be/stops/407085", "https://data.delijn.be/stops/407086"], ["https://data.delijn.be/stops/503778", "https://data.delijn.be/stops/508780"], ["https://data.delijn.be/stops/401878", "https://data.delijn.be/stops/402281"], ["https://data.delijn.be/stops/109311", "https://data.delijn.be/stops/109345"], ["https://data.delijn.be/stops/504020", "https://data.delijn.be/stops/505425"], ["https://data.delijn.be/stops/505146", "https://data.delijn.be/stops/505312"], ["https://data.delijn.be/stops/303725", "https://data.delijn.be/stops/303743"], ["https://data.delijn.be/stops/502287", "https://data.delijn.be/stops/505723"], ["https://data.delijn.be/stops/505079", "https://data.delijn.be/stops/507471"], ["https://data.delijn.be/stops/207080", "https://data.delijn.be/stops/207991"], ["https://data.delijn.be/stops/300138", "https://data.delijn.be/stops/306808"], ["https://data.delijn.be/stops/407802", "https://data.delijn.be/stops/407803"], ["https://data.delijn.be/stops/206114", "https://data.delijn.be/stops/207114"], ["https://data.delijn.be/stops/508336", "https://data.delijn.be/stops/508342"], ["https://data.delijn.be/stops/204625", "https://data.delijn.be/stops/205622"], ["https://data.delijn.be/stops/206478", "https://data.delijn.be/stops/207059"], ["https://data.delijn.be/stops/408444", "https://data.delijn.be/stops/305710"], ["https://data.delijn.be/stops/209395", "https://data.delijn.be/stops/507960"], ["https://data.delijn.be/stops/202631", "https://data.delijn.be/stops/202633"], ["https://data.delijn.be/stops/206244", "https://data.delijn.be/stops/206403"], ["https://data.delijn.be/stops/409108", "https://data.delijn.be/stops/409112"], ["https://data.delijn.be/stops/403991", "https://data.delijn.be/stops/407055"], ["https://data.delijn.be/stops/400860", "https://data.delijn.be/stops/400952"], ["https://data.delijn.be/stops/208957", "https://data.delijn.be/stops/208958"], ["https://data.delijn.be/stops/404511", "https://data.delijn.be/stops/407422"], ["https://data.delijn.be/stops/507946", "https://data.delijn.be/stops/507954"], ["https://data.delijn.be/stops/402685", "https://data.delijn.be/stops/402723"], ["https://data.delijn.be/stops/209103", "https://data.delijn.be/stops/209136"], ["https://data.delijn.be/stops/302898", "https://data.delijn.be/stops/302900"], ["https://data.delijn.be/stops/205137", "https://data.delijn.be/stops/209912"], ["https://data.delijn.be/stops/409413", "https://data.delijn.be/stops/409665"], ["https://data.delijn.be/stops/502178", "https://data.delijn.be/stops/505550"], ["https://data.delijn.be/stops/403803", "https://data.delijn.be/stops/403807"], ["https://data.delijn.be/stops/102323", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/202741", "https://data.delijn.be/stops/202881"], ["https://data.delijn.be/stops/101831", "https://data.delijn.be/stops/107011"], ["https://data.delijn.be/stops/504245", "https://data.delijn.be/stops/504248"], ["https://data.delijn.be/stops/102126", "https://data.delijn.be/stops/105058"], ["https://data.delijn.be/stops/503969", "https://data.delijn.be/stops/509812"], ["https://data.delijn.be/stops/502505", "https://data.delijn.be/stops/507505"], ["https://data.delijn.be/stops/102222", "https://data.delijn.be/stops/105544"], ["https://data.delijn.be/stops/302822", "https://data.delijn.be/stops/304072"], ["https://data.delijn.be/stops/206284", "https://data.delijn.be/stops/206285"], ["https://data.delijn.be/stops/502115", "https://data.delijn.be/stops/502728"], ["https://data.delijn.be/stops/204379", "https://data.delijn.be/stops/205418"], ["https://data.delijn.be/stops/506450", "https://data.delijn.be/stops/506454"], ["https://data.delijn.be/stops/407835", "https://data.delijn.be/stops/407848"], ["https://data.delijn.be/stops/504324", "https://data.delijn.be/stops/508555"], ["https://data.delijn.be/stops/103498", "https://data.delijn.be/stops/109141"], ["https://data.delijn.be/stops/302152", "https://data.delijn.be/stops/302153"], ["https://data.delijn.be/stops/307350", "https://data.delijn.be/stops/308591"], ["https://data.delijn.be/stops/307904", "https://data.delijn.be/stops/308061"], ["https://data.delijn.be/stops/208399", "https://data.delijn.be/stops/209376"], ["https://data.delijn.be/stops/106767", "https://data.delijn.be/stops/107519"], ["https://data.delijn.be/stops/107869", "https://data.delijn.be/stops/107879"], ["https://data.delijn.be/stops/408500", "https://data.delijn.be/stops/408539"], ["https://data.delijn.be/stops/200464", "https://data.delijn.be/stops/201838"], ["https://data.delijn.be/stops/408332", "https://data.delijn.be/stops/408335"], ["https://data.delijn.be/stops/404011", "https://data.delijn.be/stops/404013"], ["https://data.delijn.be/stops/208791", "https://data.delijn.be/stops/209788"], ["https://data.delijn.be/stops/405306", "https://data.delijn.be/stops/407315"], ["https://data.delijn.be/stops/200556", "https://data.delijn.be/stops/201556"], ["https://data.delijn.be/stops/301373", "https://data.delijn.be/stops/302417"], ["https://data.delijn.be/stops/105321", "https://data.delijn.be/stops/105323"], ["https://data.delijn.be/stops/403346", "https://data.delijn.be/stops/407040"], ["https://data.delijn.be/stops/501321", "https://data.delijn.be/stops/506262"], ["https://data.delijn.be/stops/505823", "https://data.delijn.be/stops/508138"], ["https://data.delijn.be/stops/302223", "https://data.delijn.be/stops/304047"], ["https://data.delijn.be/stops/107567", "https://data.delijn.be/stops/107741"], ["https://data.delijn.be/stops/300297", "https://data.delijn.be/stops/305918"], ["https://data.delijn.be/stops/401000", "https://data.delijn.be/stops/401152"], ["https://data.delijn.be/stops/206556", "https://data.delijn.be/stops/207499"], ["https://data.delijn.be/stops/505398", "https://data.delijn.be/stops/506518"], ["https://data.delijn.be/stops/503426", "https://data.delijn.be/stops/503446"], ["https://data.delijn.be/stops/508060", "https://data.delijn.be/stops/508707"], ["https://data.delijn.be/stops/404402", "https://data.delijn.be/stops/404411"], ["https://data.delijn.be/stops/204206", "https://data.delijn.be/stops/204234"], ["https://data.delijn.be/stops/503368", "https://data.delijn.be/stops/503413"], ["https://data.delijn.be/stops/503455", "https://data.delijn.be/stops/508970"], ["https://data.delijn.be/stops/103121", "https://data.delijn.be/stops/104112"], ["https://data.delijn.be/stops/401419", "https://data.delijn.be/stops/301083"], ["https://data.delijn.be/stops/200982", "https://data.delijn.be/stops/202917"], ["https://data.delijn.be/stops/403901", "https://data.delijn.be/stops/403932"], ["https://data.delijn.be/stops/204318", "https://data.delijn.be/stops/204320"], ["https://data.delijn.be/stops/102082", "https://data.delijn.be/stops/105412"], ["https://data.delijn.be/stops/208525", "https://data.delijn.be/stops/219017"], ["https://data.delijn.be/stops/203486", "https://data.delijn.be/stops/203488"], ["https://data.delijn.be/stops/202145", "https://data.delijn.be/stops/203615"], ["https://data.delijn.be/stops/501397", "https://data.delijn.be/stops/506403"], ["https://data.delijn.be/stops/402414", "https://data.delijn.be/stops/402415"], ["https://data.delijn.be/stops/300692", "https://data.delijn.be/stops/300694"], ["https://data.delijn.be/stops/200845", "https://data.delijn.be/stops/202301"], ["https://data.delijn.be/stops/206612", "https://data.delijn.be/stops/206613"], ["https://data.delijn.be/stops/208341", "https://data.delijn.be/stops/209110"], ["https://data.delijn.be/stops/504693", "https://data.delijn.be/stops/509483"], ["https://data.delijn.be/stops/107491", "https://data.delijn.be/stops/107511"], ["https://data.delijn.be/stops/506116", "https://data.delijn.be/stops/506117"], ["https://data.delijn.be/stops/106959", "https://data.delijn.be/stops/109514"], ["https://data.delijn.be/stops/202875", "https://data.delijn.be/stops/203880"], ["https://data.delijn.be/stops/505134", "https://data.delijn.be/stops/505158"], ["https://data.delijn.be/stops/306849", "https://data.delijn.be/stops/306851"], ["https://data.delijn.be/stops/504154", "https://data.delijn.be/stops/504166"], ["https://data.delijn.be/stops/200966", "https://data.delijn.be/stops/201967"], ["https://data.delijn.be/stops/503465", "https://data.delijn.be/stops/503644"], ["https://data.delijn.be/stops/102804", "https://data.delijn.be/stops/103142"], ["https://data.delijn.be/stops/502691", "https://data.delijn.be/stops/507763"], ["https://data.delijn.be/stops/200590", "https://data.delijn.be/stops/201733"], ["https://data.delijn.be/stops/403316", "https://data.delijn.be/stops/403317"], ["https://data.delijn.be/stops/303024", "https://data.delijn.be/stops/308656"], ["https://data.delijn.be/stops/103156", "https://data.delijn.be/stops/109105"], ["https://data.delijn.be/stops/101139", "https://data.delijn.be/stops/107465"], ["https://data.delijn.be/stops/300795", "https://data.delijn.be/stops/300801"], ["https://data.delijn.be/stops/302719", "https://data.delijn.be/stops/302720"], ["https://data.delijn.be/stops/401047", "https://data.delijn.be/stops/401151"], ["https://data.delijn.be/stops/205984", "https://data.delijn.be/stops/211073"], ["https://data.delijn.be/stops/202489", "https://data.delijn.be/stops/202506"], ["https://data.delijn.be/stops/302549", "https://data.delijn.be/stops/302560"], ["https://data.delijn.be/stops/301691", "https://data.delijn.be/stops/301778"], ["https://data.delijn.be/stops/202703", "https://data.delijn.be/stops/203703"], ["https://data.delijn.be/stops/204111", "https://data.delijn.be/stops/205110"], ["https://data.delijn.be/stops/400876", "https://data.delijn.be/stops/403580"], ["https://data.delijn.be/stops/500138", "https://data.delijn.be/stops/502075"], ["https://data.delijn.be/stops/209092", "https://data.delijn.be/stops/209628"], ["https://data.delijn.be/stops/200857", "https://data.delijn.be/stops/203305"], ["https://data.delijn.be/stops/208504", "https://data.delijn.be/stops/209503"], ["https://data.delijn.be/stops/405514", "https://data.delijn.be/stops/405515"], ["https://data.delijn.be/stops/303351", "https://data.delijn.be/stops/303360"], ["https://data.delijn.be/stops/205996", "https://data.delijn.be/stops/206143"], ["https://data.delijn.be/stops/303739", "https://data.delijn.be/stops/308658"], ["https://data.delijn.be/stops/208040", "https://data.delijn.be/stops/208846"], ["https://data.delijn.be/stops/504120", "https://data.delijn.be/stops/504481"], ["https://data.delijn.be/stops/302908", "https://data.delijn.be/stops/304324"], ["https://data.delijn.be/stops/102186", "https://data.delijn.be/stops/104247"], ["https://data.delijn.be/stops/505151", "https://data.delijn.be/stops/505156"], ["https://data.delijn.be/stops/400296", "https://data.delijn.be/stops/400367"], ["https://data.delijn.be/stops/503422", "https://data.delijn.be/stops/508404"], ["https://data.delijn.be/stops/106364", "https://data.delijn.be/stops/106365"], ["https://data.delijn.be/stops/206987", "https://data.delijn.be/stops/206988"], ["https://data.delijn.be/stops/305536", "https://data.delijn.be/stops/308553"], ["https://data.delijn.be/stops/101193", "https://data.delijn.be/stops/101196"], ["https://data.delijn.be/stops/407762", "https://data.delijn.be/stops/407764"], ["https://data.delijn.be/stops/500562", "https://data.delijn.be/stops/500568"], ["https://data.delijn.be/stops/402139", "https://data.delijn.be/stops/402155"], ["https://data.delijn.be/stops/502352", "https://data.delijn.be/stops/503979"], ["https://data.delijn.be/stops/404819", "https://data.delijn.be/stops/404825"], ["https://data.delijn.be/stops/300526", "https://data.delijn.be/stops/307845"], ["https://data.delijn.be/stops/502558", "https://data.delijn.be/stops/505012"], ["https://data.delijn.be/stops/102652", "https://data.delijn.be/stops/107898"], ["https://data.delijn.be/stops/401296", "https://data.delijn.be/stops/401312"], ["https://data.delijn.be/stops/301089", "https://data.delijn.be/stops/305510"], ["https://data.delijn.be/stops/401207", "https://data.delijn.be/stops/401376"], ["https://data.delijn.be/stops/402550", "https://data.delijn.be/stops/402551"], ["https://data.delijn.be/stops/108489", "https://data.delijn.be/stops/306592"], ["https://data.delijn.be/stops/101183", "https://data.delijn.be/stops/205645"], ["https://data.delijn.be/stops/300149", "https://data.delijn.be/stops/300150"], ["https://data.delijn.be/stops/405602", "https://data.delijn.be/stops/405603"], ["https://data.delijn.be/stops/403908", "https://data.delijn.be/stops/403972"], ["https://data.delijn.be/stops/401463", "https://data.delijn.be/stops/403894"], ["https://data.delijn.be/stops/408115", "https://data.delijn.be/stops/408158"], ["https://data.delijn.be/stops/503758", "https://data.delijn.be/stops/504743"], ["https://data.delijn.be/stops/408122", "https://data.delijn.be/stops/408285"], ["https://data.delijn.be/stops/406881", "https://data.delijn.be/stops/409767"], ["https://data.delijn.be/stops/107716", "https://data.delijn.be/stops/109383"], ["https://data.delijn.be/stops/409392", "https://data.delijn.be/stops/409394"], ["https://data.delijn.be/stops/204068", "https://data.delijn.be/stops/204403"], ["https://data.delijn.be/stops/305999", "https://data.delijn.be/stops/306002"], ["https://data.delijn.be/stops/406748", "https://data.delijn.be/stops/406812"], ["https://data.delijn.be/stops/102170", "https://data.delijn.be/stops/103070"], ["https://data.delijn.be/stops/308596", "https://data.delijn.be/stops/308597"], ["https://data.delijn.be/stops/400771", "https://data.delijn.be/stops/410085"], ["https://data.delijn.be/stops/301332", "https://data.delijn.be/stops/301334"], ["https://data.delijn.be/stops/205987", "https://data.delijn.be/stops/208223"], ["https://data.delijn.be/stops/410184", "https://data.delijn.be/stops/410185"], ["https://data.delijn.be/stops/503320", "https://data.delijn.be/stops/508323"], ["https://data.delijn.be/stops/306350", "https://data.delijn.be/stops/308812"], ["https://data.delijn.be/stops/508122", "https://data.delijn.be/stops/509887"], ["https://data.delijn.be/stops/107620", "https://data.delijn.be/stops/107695"], ["https://data.delijn.be/stops/204983", "https://data.delijn.be/stops/206209"], ["https://data.delijn.be/stops/304427", "https://data.delijn.be/stops/307383"], ["https://data.delijn.be/stops/504421", "https://data.delijn.be/stops/505166"], ["https://data.delijn.be/stops/509781", "https://data.delijn.be/stops/509893"], ["https://data.delijn.be/stops/306303", "https://data.delijn.be/stops/306331"], ["https://data.delijn.be/stops/302949", "https://data.delijn.be/stops/306298"], ["https://data.delijn.be/stops/409158", "https://data.delijn.be/stops/409160"], ["https://data.delijn.be/stops/205249", "https://data.delijn.be/stops/205475"], ["https://data.delijn.be/stops/304804", "https://data.delijn.be/stops/304806"], ["https://data.delijn.be/stops/105531", "https://data.delijn.be/stops/105532"], ["https://data.delijn.be/stops/306149", "https://data.delijn.be/stops/306150"], ["https://data.delijn.be/stops/407070", "https://data.delijn.be/stops/407071"], ["https://data.delijn.be/stops/405500", "https://data.delijn.be/stops/409347"], ["https://data.delijn.be/stops/503838", "https://data.delijn.be/stops/505159"], ["https://data.delijn.be/stops/401339", "https://data.delijn.be/stops/406943"], ["https://data.delijn.be/stops/503478", "https://data.delijn.be/stops/504806"], ["https://data.delijn.be/stops/302308", "https://data.delijn.be/stops/302640"], ["https://data.delijn.be/stops/300377", "https://data.delijn.be/stops/307723"], ["https://data.delijn.be/stops/407839", "https://data.delijn.be/stops/407905"], ["https://data.delijn.be/stops/301844", "https://data.delijn.be/stops/301845"], ["https://data.delijn.be/stops/209773", "https://data.delijn.be/stops/209774"], ["https://data.delijn.be/stops/402096", "https://data.delijn.be/stops/402316"], ["https://data.delijn.be/stops/201514", "https://data.delijn.be/stops/201515"], ["https://data.delijn.be/stops/502807", "https://data.delijn.be/stops/507703"], ["https://data.delijn.be/stops/301858", "https://data.delijn.be/stops/306989"], ["https://data.delijn.be/stops/104962", "https://data.delijn.be/stops/109616"], ["https://data.delijn.be/stops/301658", "https://data.delijn.be/stops/301893"], ["https://data.delijn.be/stops/205426", "https://data.delijn.be/stops/205763"], ["https://data.delijn.be/stops/205046", "https://data.delijn.be/stops/205515"], ["https://data.delijn.be/stops/206308", "https://data.delijn.be/stops/207308"], ["https://data.delijn.be/stops/505649", "https://data.delijn.be/stops/507755"], ["https://data.delijn.be/stops/308416", "https://data.delijn.be/stops/308428"], ["https://data.delijn.be/stops/101789", "https://data.delijn.be/stops/105612"], ["https://data.delijn.be/stops/508758", "https://data.delijn.be/stops/508766"], ["https://data.delijn.be/stops/104662", "https://data.delijn.be/stops/306605"], ["https://data.delijn.be/stops/200262", "https://data.delijn.be/stops/202547"], ["https://data.delijn.be/stops/205644", "https://data.delijn.be/stops/205645"], ["https://data.delijn.be/stops/402967", "https://data.delijn.be/stops/405151"], ["https://data.delijn.be/stops/302304", "https://data.delijn.be/stops/303468"], ["https://data.delijn.be/stops/407984", "https://data.delijn.be/stops/408442"], ["https://data.delijn.be/stops/200714", "https://data.delijn.be/stops/201799"], ["https://data.delijn.be/stops/301424", "https://data.delijn.be/stops/306172"], ["https://data.delijn.be/stops/202107", "https://data.delijn.be/stops/203262"], ["https://data.delijn.be/stops/109838", "https://data.delijn.be/stops/109953"], ["https://data.delijn.be/stops/202743", "https://data.delijn.be/stops/203812"], ["https://data.delijn.be/stops/202880", "https://data.delijn.be/stops/203880"], ["https://data.delijn.be/stops/503561", "https://data.delijn.be/stops/508550"], ["https://data.delijn.be/stops/300316", "https://data.delijn.be/stops/300624"], ["https://data.delijn.be/stops/209070", "https://data.delijn.be/stops/209072"], ["https://data.delijn.be/stops/505990", "https://data.delijn.be/stops/508301"], ["https://data.delijn.be/stops/206422", "https://data.delijn.be/stops/207422"], ["https://data.delijn.be/stops/206455", "https://data.delijn.be/stops/207824"], ["https://data.delijn.be/stops/305091", "https://data.delijn.be/stops/305152"], ["https://data.delijn.be/stops/106400", "https://data.delijn.be/stops/106575"], ["https://data.delijn.be/stops/204447", "https://data.delijn.be/stops/204510"], ["https://data.delijn.be/stops/106846", "https://data.delijn.be/stops/106848"], ["https://data.delijn.be/stops/204342", "https://data.delijn.be/stops/204452"], ["https://data.delijn.be/stops/504668", "https://data.delijn.be/stops/508654"], ["https://data.delijn.be/stops/101990", "https://data.delijn.be/stops/105155"], ["https://data.delijn.be/stops/209390", "https://data.delijn.be/stops/209391"], ["https://data.delijn.be/stops/105003", "https://data.delijn.be/stops/105193"], ["https://data.delijn.be/stops/400503", "https://data.delijn.be/stops/404042"], ["https://data.delijn.be/stops/105573", "https://data.delijn.be/stops/106354"], ["https://data.delijn.be/stops/408560", "https://data.delijn.be/stops/408873"], ["https://data.delijn.be/stops/402049", "https://data.delijn.be/stops/402268"], ["https://data.delijn.be/stops/109270", "https://data.delijn.be/stops/109272"], ["https://data.delijn.be/stops/304902", "https://data.delijn.be/stops/306388"], ["https://data.delijn.be/stops/102592", "https://data.delijn.be/stops/109000"], ["https://data.delijn.be/stops/208644", "https://data.delijn.be/stops/209644"], ["https://data.delijn.be/stops/507089", "https://data.delijn.be/stops/507644"], ["https://data.delijn.be/stops/507234", "https://data.delijn.be/stops/507822"], ["https://data.delijn.be/stops/401390", "https://data.delijn.be/stops/406568"], ["https://data.delijn.be/stops/302280", "https://data.delijn.be/stops/302291"], ["https://data.delijn.be/stops/202817", "https://data.delijn.be/stops/202890"], ["https://data.delijn.be/stops/400537", "https://data.delijn.be/stops/400573"], ["https://data.delijn.be/stops/504439", "https://data.delijn.be/stops/509441"], ["https://data.delijn.be/stops/501204", "https://data.delijn.be/stops/501321"], ["https://data.delijn.be/stops/306724", "https://data.delijn.be/stops/306726"], ["https://data.delijn.be/stops/400492", "https://data.delijn.be/stops/400494"], ["https://data.delijn.be/stops/202236", "https://data.delijn.be/stops/202238"], ["https://data.delijn.be/stops/300163", "https://data.delijn.be/stops/301229"], ["https://data.delijn.be/stops/405823", "https://data.delijn.be/stops/409663"], ["https://data.delijn.be/stops/501472", "https://data.delijn.be/stops/501532"], ["https://data.delijn.be/stops/101387", "https://data.delijn.be/stops/101829"], ["https://data.delijn.be/stops/103097", "https://data.delijn.be/stops/103266"], ["https://data.delijn.be/stops/300012", "https://data.delijn.be/stops/300806"], ["https://data.delijn.be/stops/504376", "https://data.delijn.be/stops/505063"], ["https://data.delijn.be/stops/402595", "https://data.delijn.be/stops/403472"], ["https://data.delijn.be/stops/103622", "https://data.delijn.be/stops/106197"], ["https://data.delijn.be/stops/410221", "https://data.delijn.be/stops/410339"], ["https://data.delijn.be/stops/408598", "https://data.delijn.be/stops/408619"], ["https://data.delijn.be/stops/108636", "https://data.delijn.be/stops/406504"], ["https://data.delijn.be/stops/202506", "https://data.delijn.be/stops/203489"], ["https://data.delijn.be/stops/501248", "https://data.delijn.be/stops/501633"], ["https://data.delijn.be/stops/304529", "https://data.delijn.be/stops/304530"], ["https://data.delijn.be/stops/208080", "https://data.delijn.be/stops/218029"], ["https://data.delijn.be/stops/208517", "https://data.delijn.be/stops/209619"], ["https://data.delijn.be/stops/303724", "https://data.delijn.be/stops/307259"], ["https://data.delijn.be/stops/305383", "https://data.delijn.be/stops/305398"], ["https://data.delijn.be/stops/104879", "https://data.delijn.be/stops/109972"], ["https://data.delijn.be/stops/206015", "https://data.delijn.be/stops/207166"], ["https://data.delijn.be/stops/109206", "https://data.delijn.be/stops/109208"], ["https://data.delijn.be/stops/302155", "https://data.delijn.be/stops/302183"], ["https://data.delijn.be/stops/204450", "https://data.delijn.be/stops/205445"], ["https://data.delijn.be/stops/405146", "https://data.delijn.be/stops/406253"], ["https://data.delijn.be/stops/504447", "https://data.delijn.be/stops/504449"], ["https://data.delijn.be/stops/408863", "https://data.delijn.be/stops/408866"], ["https://data.delijn.be/stops/308709", "https://data.delijn.be/stops/308710"], ["https://data.delijn.be/stops/105009", "https://data.delijn.be/stops/106832"], ["https://data.delijn.be/stops/303542", "https://data.delijn.be/stops/303570"], ["https://data.delijn.be/stops/500230", "https://data.delijn.be/stops/506101"], ["https://data.delijn.be/stops/406686", "https://data.delijn.be/stops/406687"], ["https://data.delijn.be/stops/400537", "https://data.delijn.be/stops/408458"], ["https://data.delijn.be/stops/402562", "https://data.delijn.be/stops/402570"], ["https://data.delijn.be/stops/301838", "https://data.delijn.be/stops/301851"], ["https://data.delijn.be/stops/206654", "https://data.delijn.be/stops/206655"], ["https://data.delijn.be/stops/400926", "https://data.delijn.be/stops/400937"], ["https://data.delijn.be/stops/400872", "https://data.delijn.be/stops/405666"], ["https://data.delijn.be/stops/200974", "https://data.delijn.be/stops/219020"], ["https://data.delijn.be/stops/108633", "https://data.delijn.be/stops/109663"], ["https://data.delijn.be/stops/206626", "https://data.delijn.be/stops/207625"], ["https://data.delijn.be/stops/405684", "https://data.delijn.be/stops/405685"], ["https://data.delijn.be/stops/208096", "https://data.delijn.be/stops/209095"], ["https://data.delijn.be/stops/405047", "https://data.delijn.be/stops/405756"], ["https://data.delijn.be/stops/504353", "https://data.delijn.be/stops/509346"], ["https://data.delijn.be/stops/402989", "https://data.delijn.be/stops/405588"], ["https://data.delijn.be/stops/507798", "https://data.delijn.be/stops/509822"], ["https://data.delijn.be/stops/503084", "https://data.delijn.be/stops/505297"], ["https://data.delijn.be/stops/103759", "https://data.delijn.be/stops/104340"], ["https://data.delijn.be/stops/408344", "https://data.delijn.be/stops/410157"], ["https://data.delijn.be/stops/207676", "https://data.delijn.be/stops/209105"], ["https://data.delijn.be/stops/400763", "https://data.delijn.be/stops/405268"], ["https://data.delijn.be/stops/102482", "https://data.delijn.be/stops/400251"], ["https://data.delijn.be/stops/401350", "https://data.delijn.be/stops/401351"], ["https://data.delijn.be/stops/504557", "https://data.delijn.be/stops/504558"], ["https://data.delijn.be/stops/300512", "https://data.delijn.be/stops/300513"], ["https://data.delijn.be/stops/102961", "https://data.delijn.be/stops/107247"], ["https://data.delijn.be/stops/109728", "https://data.delijn.be/stops/401957"], ["https://data.delijn.be/stops/104952", "https://data.delijn.be/stops/108475"], ["https://data.delijn.be/stops/302960", "https://data.delijn.be/stops/306295"], ["https://data.delijn.be/stops/404303", "https://data.delijn.be/stops/404649"], ["https://data.delijn.be/stops/504430", "https://data.delijn.be/stops/504436"], ["https://data.delijn.be/stops/300480", "https://data.delijn.be/stops/308930"], ["https://data.delijn.be/stops/201592", "https://data.delijn.be/stops/210129"], ["https://data.delijn.be/stops/201379", "https://data.delijn.be/stops/201380"], ["https://data.delijn.be/stops/300041", "https://data.delijn.be/stops/300071"], ["https://data.delijn.be/stops/504805", "https://data.delijn.be/stops/504807"], ["https://data.delijn.be/stops/206142", "https://data.delijn.be/stops/207088"], ["https://data.delijn.be/stops/402450", "https://data.delijn.be/stops/407494"], ["https://data.delijn.be/stops/303504", "https://data.delijn.be/stops/303509"], ["https://data.delijn.be/stops/201714", "https://data.delijn.be/stops/203379"], ["https://data.delijn.be/stops/105742", "https://data.delijn.be/stops/105802"], ["https://data.delijn.be/stops/504002", "https://data.delijn.be/stops/509002"], ["https://data.delijn.be/stops/201825", "https://data.delijn.be/stops/202310"], ["https://data.delijn.be/stops/204347", "https://data.delijn.be/stops/204694"], ["https://data.delijn.be/stops/503059", "https://data.delijn.be/stops/505381"], ["https://data.delijn.be/stops/102093", "https://data.delijn.be/stops/109812"], ["https://data.delijn.be/stops/406664", "https://data.delijn.be/stops/406679"], ["https://data.delijn.be/stops/501405", "https://data.delijn.be/stops/501698"], ["https://data.delijn.be/stops/502209", "https://data.delijn.be/stops/507209"], ["https://data.delijn.be/stops/101355", "https://data.delijn.be/stops/101930"], ["https://data.delijn.be/stops/400589", "https://data.delijn.be/stops/400610"], ["https://data.delijn.be/stops/204458", "https://data.delijn.be/stops/204477"], ["https://data.delijn.be/stops/208194", "https://data.delijn.be/stops/209156"], ["https://data.delijn.be/stops/200619", "https://data.delijn.be/stops/201286"], ["https://data.delijn.be/stops/505984", "https://data.delijn.be/stops/508850"], ["https://data.delijn.be/stops/408565", "https://data.delijn.be/stops/408707"], ["https://data.delijn.be/stops/500946", "https://data.delijn.be/stops/504195"], ["https://data.delijn.be/stops/206441", "https://data.delijn.be/stops/207440"], ["https://data.delijn.be/stops/509872", "https://data.delijn.be/stops/509873"], ["https://data.delijn.be/stops/402292", "https://data.delijn.be/stops/402320"], ["https://data.delijn.be/stops/502248", "https://data.delijn.be/stops/505704"], ["https://data.delijn.be/stops/209575", "https://data.delijn.be/stops/307526"], ["https://data.delijn.be/stops/406009", "https://data.delijn.be/stops/406064"], ["https://data.delijn.be/stops/302723", "https://data.delijn.be/stops/302724"], ["https://data.delijn.be/stops/304036", "https://data.delijn.be/stops/304865"], ["https://data.delijn.be/stops/102990", "https://data.delijn.be/stops/109641"], ["https://data.delijn.be/stops/101076", "https://data.delijn.be/stops/102718"], ["https://data.delijn.be/stops/304814", "https://data.delijn.be/stops/308771"], ["https://data.delijn.be/stops/401459", "https://data.delijn.be/stops/401541"], ["https://data.delijn.be/stops/200199", "https://data.delijn.be/stops/202480"], ["https://data.delijn.be/stops/307045", "https://data.delijn.be/stops/307046"], ["https://data.delijn.be/stops/505157", "https://data.delijn.be/stops/508112"], ["https://data.delijn.be/stops/504121", "https://data.delijn.be/stops/509121"], ["https://data.delijn.be/stops/101549", "https://data.delijn.be/stops/107806"], ["https://data.delijn.be/stops/301066", "https://data.delijn.be/stops/301070"], ["https://data.delijn.be/stops/507177", "https://data.delijn.be/stops/507181"], ["https://data.delijn.be/stops/303261", "https://data.delijn.be/stops/305661"], ["https://data.delijn.be/stops/402099", "https://data.delijn.be/stops/402223"], ["https://data.delijn.be/stops/208575", "https://data.delijn.be/stops/209575"], ["https://data.delijn.be/stops/107744", "https://data.delijn.be/stops/107746"], ["https://data.delijn.be/stops/403948", "https://data.delijn.be/stops/404021"], ["https://data.delijn.be/stops/304223", "https://data.delijn.be/stops/306826"], ["https://data.delijn.be/stops/200843", "https://data.delijn.be/stops/203299"], ["https://data.delijn.be/stops/208106", "https://data.delijn.be/stops/209779"], ["https://data.delijn.be/stops/203748", "https://data.delijn.be/stops/207568"], ["https://data.delijn.be/stops/503206", "https://data.delijn.be/stops/503359"], ["https://data.delijn.be/stops/302009", "https://data.delijn.be/stops/302025"], ["https://data.delijn.be/stops/302625", "https://data.delijn.be/stops/302626"], ["https://data.delijn.be/stops/504223", "https://data.delijn.be/stops/509523"], ["https://data.delijn.be/stops/302653", "https://data.delijn.be/stops/302657"], ["https://data.delijn.be/stops/504825", "https://data.delijn.be/stops/509402"], ["https://data.delijn.be/stops/104901", "https://data.delijn.be/stops/107609"], ["https://data.delijn.be/stops/503036", "https://data.delijn.be/stops/508037"], ["https://data.delijn.be/stops/202705", "https://data.delijn.be/stops/203705"], ["https://data.delijn.be/stops/108403", "https://data.delijn.be/stops/108404"], ["https://data.delijn.be/stops/108037", "https://data.delijn.be/stops/108038"], ["https://data.delijn.be/stops/105139", "https://data.delijn.be/stops/108505"], ["https://data.delijn.be/stops/403104", "https://data.delijn.be/stops/403114"], ["https://data.delijn.be/stops/101928", "https://data.delijn.be/stops/108196"], ["https://data.delijn.be/stops/300787", "https://data.delijn.be/stops/301048"], ["https://data.delijn.be/stops/504632", "https://data.delijn.be/stops/509633"], ["https://data.delijn.be/stops/104003", "https://data.delijn.be/stops/107840"], ["https://data.delijn.be/stops/501663", "https://data.delijn.be/stops/506636"], ["https://data.delijn.be/stops/503450", "https://data.delijn.be/stops/508975"], ["https://data.delijn.be/stops/504355", "https://data.delijn.be/stops/504357"], ["https://data.delijn.be/stops/304747", "https://data.delijn.be/stops/307276"], ["https://data.delijn.be/stops/300503", "https://data.delijn.be/stops/302363"], ["https://data.delijn.be/stops/400098", "https://data.delijn.be/stops/400127"], ["https://data.delijn.be/stops/209274", "https://data.delijn.be/stops/209333"], ["https://data.delijn.be/stops/200938", "https://data.delijn.be/stops/201404"], ["https://data.delijn.be/stops/108692", "https://data.delijn.be/stops/108810"], ["https://data.delijn.be/stops/401152", "https://data.delijn.be/stops/409815"], ["https://data.delijn.be/stops/305146", "https://data.delijn.be/stops/305153"], ["https://data.delijn.be/stops/405474", "https://data.delijn.be/stops/406711"], ["https://data.delijn.be/stops/203677", "https://data.delijn.be/stops/203726"], ["https://data.delijn.be/stops/304318", "https://data.delijn.be/stops/304319"], ["https://data.delijn.be/stops/109730", "https://data.delijn.be/stops/205528"], ["https://data.delijn.be/stops/408853", "https://data.delijn.be/stops/408861"], ["https://data.delijn.be/stops/402314", "https://data.delijn.be/stops/405689"], ["https://data.delijn.be/stops/202134", "https://data.delijn.be/stops/203134"], ["https://data.delijn.be/stops/503193", "https://data.delijn.be/stops/508200"], ["https://data.delijn.be/stops/303461", "https://data.delijn.be/stops/303477"], ["https://data.delijn.be/stops/504040", "https://data.delijn.be/stops/509040"], ["https://data.delijn.be/stops/302715", "https://data.delijn.be/stops/302777"], ["https://data.delijn.be/stops/508713", "https://data.delijn.be/stops/509963"], ["https://data.delijn.be/stops/505281", "https://data.delijn.be/stops/505996"], ["https://data.delijn.be/stops/403927", "https://data.delijn.be/stops/403930"], ["https://data.delijn.be/stops/502151", "https://data.delijn.be/stops/502643"], ["https://data.delijn.be/stops/402181", "https://data.delijn.be/stops/402430"], ["https://data.delijn.be/stops/303068", "https://data.delijn.be/stops/307928"], ["https://data.delijn.be/stops/200869", "https://data.delijn.be/stops/203341"], ["https://data.delijn.be/stops/207643", "https://data.delijn.be/stops/207644"], ["https://data.delijn.be/stops/305695", "https://data.delijn.be/stops/307840"], ["https://data.delijn.be/stops/503500", "https://data.delijn.be/stops/503503"], ["https://data.delijn.be/stops/301682", "https://data.delijn.be/stops/301684"], ["https://data.delijn.be/stops/102957", "https://data.delijn.be/stops/103764"], ["https://data.delijn.be/stops/501264", "https://data.delijn.be/stops/506262"], ["https://data.delijn.be/stops/101046", "https://data.delijn.be/stops/102012"], ["https://data.delijn.be/stops/105133", "https://data.delijn.be/stops/105136"], ["https://data.delijn.be/stops/101943", "https://data.delijn.be/stops/102453"], ["https://data.delijn.be/stops/108570", "https://data.delijn.be/stops/108575"], ["https://data.delijn.be/stops/202461", "https://data.delijn.be/stops/203461"], ["https://data.delijn.be/stops/304839", "https://data.delijn.be/stops/304853"], ["https://data.delijn.be/stops/301935", "https://data.delijn.be/stops/308718"], ["https://data.delijn.be/stops/106598", "https://data.delijn.be/stops/107209"], ["https://data.delijn.be/stops/503083", "https://data.delijn.be/stops/508079"], ["https://data.delijn.be/stops/308474", "https://data.delijn.be/stops/308487"], ["https://data.delijn.be/stops/302714", "https://data.delijn.be/stops/302732"], ["https://data.delijn.be/stops/204669", "https://data.delijn.be/stops/205669"], ["https://data.delijn.be/stops/501291", "https://data.delijn.be/stops/506546"], ["https://data.delijn.be/stops/503372", "https://data.delijn.be/stops/508403"], ["https://data.delijn.be/stops/109249", "https://data.delijn.be/stops/109250"], ["https://data.delijn.be/stops/300347", "https://data.delijn.be/stops/300356"], ["https://data.delijn.be/stops/410153", "https://data.delijn.be/stops/300918"], ["https://data.delijn.be/stops/204354", "https://data.delijn.be/stops/204675"], ["https://data.delijn.be/stops/107044", "https://data.delijn.be/stops/107046"], ["https://data.delijn.be/stops/104804", "https://data.delijn.be/stops/109114"], ["https://data.delijn.be/stops/404181", "https://data.delijn.be/stops/404279"], ["https://data.delijn.be/stops/405536", "https://data.delijn.be/stops/301489"], ["https://data.delijn.be/stops/307442", "https://data.delijn.be/stops/308590"], ["https://data.delijn.be/stops/201698", "https://data.delijn.be/stops/203446"], ["https://data.delijn.be/stops/403151", "https://data.delijn.be/stops/403152"], ["https://data.delijn.be/stops/401836", "https://data.delijn.be/stops/406018"], ["https://data.delijn.be/stops/304061", "https://data.delijn.be/stops/308447"], ["https://data.delijn.be/stops/206501", "https://data.delijn.be/stops/207502"], ["https://data.delijn.be/stops/402047", "https://data.delijn.be/stops/410149"], ["https://data.delijn.be/stops/105286", "https://data.delijn.be/stops/105287"], ["https://data.delijn.be/stops/305827", "https://data.delijn.be/stops/305828"], ["https://data.delijn.be/stops/103576", "https://data.delijn.be/stops/106612"], ["https://data.delijn.be/stops/405189", "https://data.delijn.be/stops/410059"], ["https://data.delijn.be/stops/404773", "https://data.delijn.be/stops/404777"], ["https://data.delijn.be/stops/200451", "https://data.delijn.be/stops/201425"], ["https://data.delijn.be/stops/104502", "https://data.delijn.be/stops/205563"], ["https://data.delijn.be/stops/508916", "https://data.delijn.be/stops/508919"], ["https://data.delijn.be/stops/208698", "https://data.delijn.be/stops/208699"], ["https://data.delijn.be/stops/301512", "https://data.delijn.be/stops/301515"], ["https://data.delijn.be/stops/504622", "https://data.delijn.be/stops/509622"], ["https://data.delijn.be/stops/204767", "https://data.delijn.be/stops/205767"], ["https://data.delijn.be/stops/305284", "https://data.delijn.be/stops/305287"], ["https://data.delijn.be/stops/505073", "https://data.delijn.be/stops/507753"], ["https://data.delijn.be/stops/305329", "https://data.delijn.be/stops/306342"], ["https://data.delijn.be/stops/401361", "https://data.delijn.be/stops/401366"], ["https://data.delijn.be/stops/202741", "https://data.delijn.be/stops/203741"], ["https://data.delijn.be/stops/407701", "https://data.delijn.be/stops/408448"], ["https://data.delijn.be/stops/501628", "https://data.delijn.be/stops/505716"], ["https://data.delijn.be/stops/109552", "https://data.delijn.be/stops/300051"], ["https://data.delijn.be/stops/503307", "https://data.delijn.be/stops/505814"], ["https://data.delijn.be/stops/500010", "https://data.delijn.be/stops/502337"], ["https://data.delijn.be/stops/200337", "https://data.delijn.be/stops/202203"], ["https://data.delijn.be/stops/401825", "https://data.delijn.be/stops/401831"], ["https://data.delijn.be/stops/201951", "https://data.delijn.be/stops/203428"], ["https://data.delijn.be/stops/401203", "https://data.delijn.be/stops/401360"], ["https://data.delijn.be/stops/204140", "https://data.delijn.be/stops/207888"], ["https://data.delijn.be/stops/301839", "https://data.delijn.be/stops/302470"], ["https://data.delijn.be/stops/409422", "https://data.delijn.be/stops/409705"], ["https://data.delijn.be/stops/201094", "https://data.delijn.be/stops/201469"], ["https://data.delijn.be/stops/307211", "https://data.delijn.be/stops/307213"], ["https://data.delijn.be/stops/305753", "https://data.delijn.be/stops/306333"], ["https://data.delijn.be/stops/107790", "https://data.delijn.be/stops/107795"], ["https://data.delijn.be/stops/104041", "https://data.delijn.be/stops/107624"], ["https://data.delijn.be/stops/102962", "https://data.delijn.be/stops/109276"], ["https://data.delijn.be/stops/502262", "https://data.delijn.be/stops/502689"], ["https://data.delijn.be/stops/400840", "https://data.delijn.be/stops/400842"], ["https://data.delijn.be/stops/104411", "https://data.delijn.be/stops/204336"], ["https://data.delijn.be/stops/300769", "https://data.delijn.be/stops/301043"], ["https://data.delijn.be/stops/109209", "https://data.delijn.be/stops/109211"], ["https://data.delijn.be/stops/303152", "https://data.delijn.be/stops/303192"], ["https://data.delijn.be/stops/308011", "https://data.delijn.be/stops/308030"], ["https://data.delijn.be/stops/408836", "https://data.delijn.be/stops/408904"], ["https://data.delijn.be/stops/502485", "https://data.delijn.be/stops/507485"], ["https://data.delijn.be/stops/302163", "https://data.delijn.be/stops/302451"], ["https://data.delijn.be/stops/303030", "https://data.delijn.be/stops/307724"], ["https://data.delijn.be/stops/103205", "https://data.delijn.be/stops/106507"], ["https://data.delijn.be/stops/104431", "https://data.delijn.be/stops/106786"], ["https://data.delijn.be/stops/506053", "https://data.delijn.be/stops/506055"], ["https://data.delijn.be/stops/102040", "https://data.delijn.be/stops/103745"], ["https://data.delijn.be/stops/201930", "https://data.delijn.be/stops/202471"], ["https://data.delijn.be/stops/301051", "https://data.delijn.be/stops/301062"], ["https://data.delijn.be/stops/302004", "https://data.delijn.be/stops/308958"], ["https://data.delijn.be/stops/101940", "https://data.delijn.be/stops/101950"], ["https://data.delijn.be/stops/105002", "https://data.delijn.be/stops/105121"], ["https://data.delijn.be/stops/302984", "https://data.delijn.be/stops/306707"], ["https://data.delijn.be/stops/102978", "https://data.delijn.be/stops/106831"], ["https://data.delijn.be/stops/303272", "https://data.delijn.be/stops/305724"], ["https://data.delijn.be/stops/301887", "https://data.delijn.be/stops/305911"], ["https://data.delijn.be/stops/304398", "https://data.delijn.be/stops/307406"], ["https://data.delijn.be/stops/505151", "https://data.delijn.be/stops/506089"], ["https://data.delijn.be/stops/201283", "https://data.delijn.be/stops/201335"], ["https://data.delijn.be/stops/404425", "https://data.delijn.be/stops/404427"], ["https://data.delijn.be/stops/202532", "https://data.delijn.be/stops/203966"], ["https://data.delijn.be/stops/107164", "https://data.delijn.be/stops/107166"], ["https://data.delijn.be/stops/404697", "https://data.delijn.be/stops/407144"], ["https://data.delijn.be/stops/202123", "https://data.delijn.be/stops/214018"], ["https://data.delijn.be/stops/209589", "https://data.delijn.be/stops/209590"], ["https://data.delijn.be/stops/101262", "https://data.delijn.be/stops/103680"], ["https://data.delijn.be/stops/404330", "https://data.delijn.be/stops/404381"], ["https://data.delijn.be/stops/302624", "https://data.delijn.be/stops/308116"], ["https://data.delijn.be/stops/200982", "https://data.delijn.be/stops/203917"], ["https://data.delijn.be/stops/204593", "https://data.delijn.be/stops/205164"], ["https://data.delijn.be/stops/207276", "https://data.delijn.be/stops/207968"], ["https://data.delijn.be/stops/107647", "https://data.delijn.be/stops/108958"], ["https://data.delijn.be/stops/506203", "https://data.delijn.be/stops/506257"], ["https://data.delijn.be/stops/504432", "https://data.delijn.be/stops/509410"], ["https://data.delijn.be/stops/200012", "https://data.delijn.be/stops/201012"], ["https://data.delijn.be/stops/300302", "https://data.delijn.be/stops/300303"], ["https://data.delijn.be/stops/302032", "https://data.delijn.be/stops/306380"], ["https://data.delijn.be/stops/503619", "https://data.delijn.be/stops/508619"], ["https://data.delijn.be/stops/300462", "https://data.delijn.be/stops/307088"], ["https://data.delijn.be/stops/403085", "https://data.delijn.be/stops/403666"], ["https://data.delijn.be/stops/300642", "https://data.delijn.be/stops/306747"], ["https://data.delijn.be/stops/103682", "https://data.delijn.be/stops/106197"], ["https://data.delijn.be/stops/206032", "https://data.delijn.be/stops/207031"], ["https://data.delijn.be/stops/401990", "https://data.delijn.be/stops/402040"], ["https://data.delijn.be/stops/102717", "https://data.delijn.be/stops/107413"], ["https://data.delijn.be/stops/400981", "https://data.delijn.be/stops/402860"], ["https://data.delijn.be/stops/202080", "https://data.delijn.be/stops/202346"], ["https://data.delijn.be/stops/207972", "https://data.delijn.be/stops/207973"], ["https://data.delijn.be/stops/206787", "https://data.delijn.be/stops/209037"], ["https://data.delijn.be/stops/502196", "https://data.delijn.be/stops/507196"], ["https://data.delijn.be/stops/302110", "https://data.delijn.be/stops/302113"], ["https://data.delijn.be/stops/403750", "https://data.delijn.be/stops/403781"], ["https://data.delijn.be/stops/207908", "https://data.delijn.be/stops/207909"], ["https://data.delijn.be/stops/102246", "https://data.delijn.be/stops/102247"], ["https://data.delijn.be/stops/200921", "https://data.delijn.be/stops/203699"], ["https://data.delijn.be/stops/109435", "https://data.delijn.be/stops/109437"], ["https://data.delijn.be/stops/208266", "https://data.delijn.be/stops/209266"], ["https://data.delijn.be/stops/103634", "https://data.delijn.be/stops/103637"], ["https://data.delijn.be/stops/200319", "https://data.delijn.be/stops/203191"], ["https://data.delijn.be/stops/302679", "https://data.delijn.be/stops/303612"], ["https://data.delijn.be/stops/102482", "https://data.delijn.be/stops/102484"], ["https://data.delijn.be/stops/109433", "https://data.delijn.be/stops/109435"], ["https://data.delijn.be/stops/303140", "https://data.delijn.be/stops/304026"], ["https://data.delijn.be/stops/401776", "https://data.delijn.be/stops/401790"], ["https://data.delijn.be/stops/305394", "https://data.delijn.be/stops/305461"], ["https://data.delijn.be/stops/200918", "https://data.delijn.be/stops/203138"], ["https://data.delijn.be/stops/402850", "https://data.delijn.be/stops/402858"], ["https://data.delijn.be/stops/307614", "https://data.delijn.be/stops/307615"], ["https://data.delijn.be/stops/204758", "https://data.delijn.be/stops/205759"], ["https://data.delijn.be/stops/405036", "https://data.delijn.be/stops/405069"], ["https://data.delijn.be/stops/303327", "https://data.delijn.be/stops/305058"], ["https://data.delijn.be/stops/204448", "https://data.delijn.be/stops/205448"], ["https://data.delijn.be/stops/300040", "https://data.delijn.be/stops/300041"], ["https://data.delijn.be/stops/407108", "https://data.delijn.be/stops/407734"], ["https://data.delijn.be/stops/401194", "https://data.delijn.be/stops/401219"], ["https://data.delijn.be/stops/203233", "https://data.delijn.be/stops/211121"], ["https://data.delijn.be/stops/306764", "https://data.delijn.be/stops/308694"], ["https://data.delijn.be/stops/501599", "https://data.delijn.be/stops/506146"], ["https://data.delijn.be/stops/201955", "https://data.delijn.be/stops/203285"], ["https://data.delijn.be/stops/405022", "https://data.delijn.be/stops/405052"], ["https://data.delijn.be/stops/403956", "https://data.delijn.be/stops/410025"], ["https://data.delijn.be/stops/102383", "https://data.delijn.be/stops/107730"], ["https://data.delijn.be/stops/308824", "https://data.delijn.be/stops/308825"], ["https://data.delijn.be/stops/107578", "https://data.delijn.be/stops/107579"], ["https://data.delijn.be/stops/501329", "https://data.delijn.be/stops/501356"], ["https://data.delijn.be/stops/109023", "https://data.delijn.be/stops/109078"], ["https://data.delijn.be/stops/201316", "https://data.delijn.be/stops/201649"], ["https://data.delijn.be/stops/409467", "https://data.delijn.be/stops/409471"], ["https://data.delijn.be/stops/200948", "https://data.delijn.be/stops/203049"], ["https://data.delijn.be/stops/404664", "https://data.delijn.be/stops/404670"], ["https://data.delijn.be/stops/503714", "https://data.delijn.be/stops/508706"], ["https://data.delijn.be/stops/106652", "https://data.delijn.be/stops/109752"], ["https://data.delijn.be/stops/300504", "https://data.delijn.be/stops/308358"], ["https://data.delijn.be/stops/504081", "https://data.delijn.be/stops/509081"], ["https://data.delijn.be/stops/208059", "https://data.delijn.be/stops/209059"], ["https://data.delijn.be/stops/206030", "https://data.delijn.be/stops/207874"], ["https://data.delijn.be/stops/200840", "https://data.delijn.be/stops/505648"], ["https://data.delijn.be/stops/201224", "https://data.delijn.be/stops/203134"], ["https://data.delijn.be/stops/408858", "https://data.delijn.be/stops/408897"], ["https://data.delijn.be/stops/308062", "https://data.delijn.be/stops/308063"], ["https://data.delijn.be/stops/106986", "https://data.delijn.be/stops/106987"], ["https://data.delijn.be/stops/302374", "https://data.delijn.be/stops/302384"], ["https://data.delijn.be/stops/206717", "https://data.delijn.be/stops/207613"], ["https://data.delijn.be/stops/504775", "https://data.delijn.be/stops/509591"], ["https://data.delijn.be/stops/300491", "https://data.delijn.be/stops/300492"], ["https://data.delijn.be/stops/505387", "https://data.delijn.be/stops/505389"], ["https://data.delijn.be/stops/200224", "https://data.delijn.be/stops/200443"], ["https://data.delijn.be/stops/501769", "https://data.delijn.be/stops/502705"], ["https://data.delijn.be/stops/507717", "https://data.delijn.be/stops/508975"], ["https://data.delijn.be/stops/503310", "https://data.delijn.be/stops/508140"], ["https://data.delijn.be/stops/206997", "https://data.delijn.be/stops/209748"], ["https://data.delijn.be/stops/207950", "https://data.delijn.be/stops/306077"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/107022"], ["https://data.delijn.be/stops/208782", "https://data.delijn.be/stops/209376"], ["https://data.delijn.be/stops/507796", "https://data.delijn.be/stops/508321"], ["https://data.delijn.be/stops/301113", "https://data.delijn.be/stops/307683"], ["https://data.delijn.be/stops/408910", "https://data.delijn.be/stops/408911"], ["https://data.delijn.be/stops/308410", "https://data.delijn.be/stops/308411"], ["https://data.delijn.be/stops/301168", "https://data.delijn.be/stops/307142"], ["https://data.delijn.be/stops/406108", "https://data.delijn.be/stops/406116"], ["https://data.delijn.be/stops/505258", "https://data.delijn.be/stops/508223"], ["https://data.delijn.be/stops/204171", "https://data.delijn.be/stops/205172"], ["https://data.delijn.be/stops/406895", "https://data.delijn.be/stops/406899"], ["https://data.delijn.be/stops/401398", "https://data.delijn.be/stops/301037"], ["https://data.delijn.be/stops/208538", "https://data.delijn.be/stops/209538"], ["https://data.delijn.be/stops/504964", "https://data.delijn.be/stops/508755"], ["https://data.delijn.be/stops/306679", "https://data.delijn.be/stops/307879"], ["https://data.delijn.be/stops/201682", "https://data.delijn.be/stops/203501"], ["https://data.delijn.be/stops/504296", "https://data.delijn.be/stops/505362"], ["https://data.delijn.be/stops/201047", "https://data.delijn.be/stops/201105"], ["https://data.delijn.be/stops/102954", "https://data.delijn.be/stops/102957"], ["https://data.delijn.be/stops/507477", "https://data.delijn.be/stops/507763"], ["https://data.delijn.be/stops/103975", "https://data.delijn.be/stops/104020"], ["https://data.delijn.be/stops/503800", "https://data.delijn.be/stops/508099"], ["https://data.delijn.be/stops/508081", "https://data.delijn.be/stops/508507"], ["https://data.delijn.be/stops/204997", "https://data.delijn.be/stops/205997"], ["https://data.delijn.be/stops/202128", "https://data.delijn.be/stops/203128"], ["https://data.delijn.be/stops/401416", "https://data.delijn.be/stops/308957"], ["https://data.delijn.be/stops/200590", "https://data.delijn.be/stops/211112"], ["https://data.delijn.be/stops/204473", "https://data.delijn.be/stops/205207"], ["https://data.delijn.be/stops/306384", "https://data.delijn.be/stops/307207"], ["https://data.delijn.be/stops/509119", "https://data.delijn.be/stops/509394"], ["https://data.delijn.be/stops/204795", "https://data.delijn.be/stops/205074"], ["https://data.delijn.be/stops/503316", "https://data.delijn.be/stops/504668"], ["https://data.delijn.be/stops/303616", "https://data.delijn.be/stops/304597"], ["https://data.delijn.be/stops/200686", "https://data.delijn.be/stops/201710"], ["https://data.delijn.be/stops/102978", "https://data.delijn.be/stops/105111"], ["https://data.delijn.be/stops/300142", "https://data.delijn.be/stops/306811"], ["https://data.delijn.be/stops/302427", "https://data.delijn.be/stops/302449"], ["https://data.delijn.be/stops/102778", "https://data.delijn.be/stops/106035"], ["https://data.delijn.be/stops/103069", "https://data.delijn.be/stops/105756"], ["https://data.delijn.be/stops/101492", "https://data.delijn.be/stops/108302"], ["https://data.delijn.be/stops/207046", "https://data.delijn.be/stops/207050"], ["https://data.delijn.be/stops/101133", "https://data.delijn.be/stops/101134"], ["https://data.delijn.be/stops/307451", "https://data.delijn.be/stops/307452"], ["https://data.delijn.be/stops/403450", "https://data.delijn.be/stops/409265"], ["https://data.delijn.be/stops/107599", "https://data.delijn.be/stops/107691"], ["https://data.delijn.be/stops/208603", "https://data.delijn.be/stops/307594"], ["https://data.delijn.be/stops/503484", "https://data.delijn.be/stops/504390"], ["https://data.delijn.be/stops/404469", "https://data.delijn.be/stops/404569"], ["https://data.delijn.be/stops/202534", "https://data.delijn.be/stops/202535"], ["https://data.delijn.be/stops/504420", "https://data.delijn.be/stops/509420"], ["https://data.delijn.be/stops/504063", "https://data.delijn.be/stops/509063"], ["https://data.delijn.be/stops/304218", "https://data.delijn.be/stops/304219"], ["https://data.delijn.be/stops/206627", "https://data.delijn.be/stops/307312"], ["https://data.delijn.be/stops/505580", "https://data.delijn.be/stops/505667"], ["https://data.delijn.be/stops/406118", "https://data.delijn.be/stops/406148"], ["https://data.delijn.be/stops/200765", "https://data.delijn.be/stops/209299"], ["https://data.delijn.be/stops/406554", "https://data.delijn.be/stops/406555"], ["https://data.delijn.be/stops/305698", "https://data.delijn.be/stops/305699"], ["https://data.delijn.be/stops/403149", "https://data.delijn.be/stops/403152"], ["https://data.delijn.be/stops/103135", "https://data.delijn.be/stops/105775"], ["https://data.delijn.be/stops/403924", "https://data.delijn.be/stops/403971"], ["https://data.delijn.be/stops/301828", "https://data.delijn.be/stops/301829"], ["https://data.delijn.be/stops/205705", "https://data.delijn.be/stops/205706"], ["https://data.delijn.be/stops/501687", "https://data.delijn.be/stops/506021"], ["https://data.delijn.be/stops/503540", "https://data.delijn.be/stops/503546"], ["https://data.delijn.be/stops/405885", "https://data.delijn.be/stops/406827"], ["https://data.delijn.be/stops/400928", "https://data.delijn.be/stops/400945"], ["https://data.delijn.be/stops/206666", "https://data.delijn.be/stops/206716"], ["https://data.delijn.be/stops/201191", "https://data.delijn.be/stops/201689"], ["https://data.delijn.be/stops/102159", "https://data.delijn.be/stops/107960"], ["https://data.delijn.be/stops/207250", "https://data.delijn.be/stops/208951"], ["https://data.delijn.be/stops/300351", "https://data.delijn.be/stops/301290"], ["https://data.delijn.be/stops/402074", "https://data.delijn.be/stops/405571"], ["https://data.delijn.be/stops/101798", "https://data.delijn.be/stops/300678"], ["https://data.delijn.be/stops/505512", "https://data.delijn.be/stops/505515"], ["https://data.delijn.be/stops/108362", "https://data.delijn.be/stops/108504"], ["https://data.delijn.be/stops/102431", "https://data.delijn.be/stops/102586"], ["https://data.delijn.be/stops/201450", "https://data.delijn.be/stops/202353"], ["https://data.delijn.be/stops/101508", "https://data.delijn.be/stops/300104"], ["https://data.delijn.be/stops/305734", "https://data.delijn.be/stops/305746"], ["https://data.delijn.be/stops/102675", "https://data.delijn.be/stops/105420"], ["https://data.delijn.be/stops/109680", "https://data.delijn.be/stops/408450"], ["https://data.delijn.be/stops/304153", "https://data.delijn.be/stops/304168"], ["https://data.delijn.be/stops/305429", "https://data.delijn.be/stops/305430"], ["https://data.delijn.be/stops/109199", "https://data.delijn.be/stops/109200"], ["https://data.delijn.be/stops/501210", "https://data.delijn.be/stops/506209"], ["https://data.delijn.be/stops/407853", "https://data.delijn.be/stops/408065"], ["https://data.delijn.be/stops/504875", "https://data.delijn.be/stops/505157"], ["https://data.delijn.be/stops/207784", "https://data.delijn.be/stops/208373"], ["https://data.delijn.be/stops/107150", "https://data.delijn.be/stops/109850"], ["https://data.delijn.be/stops/101748", "https://data.delijn.be/stops/102187"], ["https://data.delijn.be/stops/302420", "https://data.delijn.be/stops/302423"], ["https://data.delijn.be/stops/400468", "https://data.delijn.be/stops/409249"], ["https://data.delijn.be/stops/402406", "https://data.delijn.be/stops/402419"], ["https://data.delijn.be/stops/206950", "https://data.delijn.be/stops/207878"], ["https://data.delijn.be/stops/101024", "https://data.delijn.be/stops/106040"], ["https://data.delijn.be/stops/208159", "https://data.delijn.be/stops/209510"], ["https://data.delijn.be/stops/401843", "https://data.delijn.be/stops/401844"], ["https://data.delijn.be/stops/307550", "https://data.delijn.be/stops/307551"], ["https://data.delijn.be/stops/302172", "https://data.delijn.be/stops/302175"], ["https://data.delijn.be/stops/107208", "https://data.delijn.be/stops/107211"], ["https://data.delijn.be/stops/200412", "https://data.delijn.be/stops/200413"], ["https://data.delijn.be/stops/502534", "https://data.delijn.be/stops/507534"], ["https://data.delijn.be/stops/300032", "https://data.delijn.be/stops/303322"], ["https://data.delijn.be/stops/302306", "https://data.delijn.be/stops/302307"], ["https://data.delijn.be/stops/203848", "https://data.delijn.be/stops/203927"], ["https://data.delijn.be/stops/300357", "https://data.delijn.be/stops/300362"], ["https://data.delijn.be/stops/102819", "https://data.delijn.be/stops/103850"], ["https://data.delijn.be/stops/503781", "https://data.delijn.be/stops/508778"], ["https://data.delijn.be/stops/303310", "https://data.delijn.be/stops/303331"], ["https://data.delijn.be/stops/304222", "https://data.delijn.be/stops/304223"], ["https://data.delijn.be/stops/409050", "https://data.delijn.be/stops/409087"], ["https://data.delijn.be/stops/401679", "https://data.delijn.be/stops/308166"], ["https://data.delijn.be/stops/302765", "https://data.delijn.be/stops/304829"], ["https://data.delijn.be/stops/402685", "https://data.delijn.be/stops/402733"], ["https://data.delijn.be/stops/304995", "https://data.delijn.be/stops/308059"], ["https://data.delijn.be/stops/402078", "https://data.delijn.be/stops/410149"], ["https://data.delijn.be/stops/202743", "https://data.delijn.be/stops/203743"], ["https://data.delijn.be/stops/308935", "https://data.delijn.be/stops/308936"], ["https://data.delijn.be/stops/109017", "https://data.delijn.be/stops/404047"], ["https://data.delijn.be/stops/206678", "https://data.delijn.be/stops/208807"], ["https://data.delijn.be/stops/208679", "https://data.delijn.be/stops/209595"], ["https://data.delijn.be/stops/301215", "https://data.delijn.be/stops/304923"], ["https://data.delijn.be/stops/200094", "https://data.delijn.be/stops/201095"], ["https://data.delijn.be/stops/503231", "https://data.delijn.be/stops/508231"], ["https://data.delijn.be/stops/503800", "https://data.delijn.be/stops/505388"], ["https://data.delijn.be/stops/509389", "https://data.delijn.be/stops/509583"], ["https://data.delijn.be/stops/406972", "https://data.delijn.be/stops/409476"], ["https://data.delijn.be/stops/307051", "https://data.delijn.be/stops/307054"], ["https://data.delijn.be/stops/409378", "https://data.delijn.be/stops/409389"], ["https://data.delijn.be/stops/106433", "https://data.delijn.be/stops/106435"], ["https://data.delijn.be/stops/401245", "https://data.delijn.be/stops/410180"], ["https://data.delijn.be/stops/400836", "https://data.delijn.be/stops/400837"], ["https://data.delijn.be/stops/502683", "https://data.delijn.be/stops/505053"], ["https://data.delijn.be/stops/106402", "https://data.delijn.be/stops/106405"], ["https://data.delijn.be/stops/408549", "https://data.delijn.be/stops/408564"], ["https://data.delijn.be/stops/202969", "https://data.delijn.be/stops/203969"], ["https://data.delijn.be/stops/103257", "https://data.delijn.be/stops/103304"], ["https://data.delijn.be/stops/102238", "https://data.delijn.be/stops/105868"], ["https://data.delijn.be/stops/109396", "https://data.delijn.be/stops/109397"], ["https://data.delijn.be/stops/200864", "https://data.delijn.be/stops/202292"], ["https://data.delijn.be/stops/405232", "https://data.delijn.be/stops/405501"], ["https://data.delijn.be/stops/403131", "https://data.delijn.be/stops/403135"], ["https://data.delijn.be/stops/505302", "https://data.delijn.be/stops/505367"], ["https://data.delijn.be/stops/406137", "https://data.delijn.be/stops/406341"], ["https://data.delijn.be/stops/400537", "https://data.delijn.be/stops/403584"], ["https://data.delijn.be/stops/108628", "https://data.delijn.be/stops/109671"], ["https://data.delijn.be/stops/407668", "https://data.delijn.be/stops/407669"], ["https://data.delijn.be/stops/401730", "https://data.delijn.be/stops/401753"], ["https://data.delijn.be/stops/305042", "https://data.delijn.be/stops/305043"], ["https://data.delijn.be/stops/302281", "https://data.delijn.be/stops/302286"], ["https://data.delijn.be/stops/405792", "https://data.delijn.be/stops/409666"], ["https://data.delijn.be/stops/504172", "https://data.delijn.be/stops/509526"], ["https://data.delijn.be/stops/204185", "https://data.delijn.be/stops/204384"], ["https://data.delijn.be/stops/204546", "https://data.delijn.be/stops/205499"], ["https://data.delijn.be/stops/101555", "https://data.delijn.be/stops/101556"], ["https://data.delijn.be/stops/504820", "https://data.delijn.be/stops/508184"], ["https://data.delijn.be/stops/304148", "https://data.delijn.be/stops/307761"], ["https://data.delijn.be/stops/204340", "https://data.delijn.be/stops/204448"], ["https://data.delijn.be/stops/507051", "https://data.delijn.be/stops/507391"], ["https://data.delijn.be/stops/401524", "https://data.delijn.be/stops/402515"], ["https://data.delijn.be/stops/200879", "https://data.delijn.be/stops/200881"], ["https://data.delijn.be/stops/507381", "https://data.delijn.be/stops/507578"], ["https://data.delijn.be/stops/206296", "https://data.delijn.be/stops/206446"], ["https://data.delijn.be/stops/503671", "https://data.delijn.be/stops/508025"], ["https://data.delijn.be/stops/303373", "https://data.delijn.be/stops/303374"], ["https://data.delijn.be/stops/206987", "https://data.delijn.be/stops/207994"], ["https://data.delijn.be/stops/400413", "https://data.delijn.be/stops/400414"], ["https://data.delijn.be/stops/202985", "https://data.delijn.be/stops/203037"], ["https://data.delijn.be/stops/504295", "https://data.delijn.be/stops/509295"], ["https://data.delijn.be/stops/304563", "https://data.delijn.be/stops/306317"], ["https://data.delijn.be/stops/406017", "https://data.delijn.be/stops/406018"], ["https://data.delijn.be/stops/502042", "https://data.delijn.be/stops/507391"], ["https://data.delijn.be/stops/206988", "https://data.delijn.be/stops/207995"], ["https://data.delijn.be/stops/400910", "https://data.delijn.be/stops/400956"], ["https://data.delijn.be/stops/107916", "https://data.delijn.be/stops/207742"], ["https://data.delijn.be/stops/504810", "https://data.delijn.be/stops/508305"], ["https://data.delijn.be/stops/206152", "https://data.delijn.be/stops/207152"], ["https://data.delijn.be/stops/401409", "https://data.delijn.be/stops/301088"], ["https://data.delijn.be/stops/202695", "https://data.delijn.be/stops/211023"], ["https://data.delijn.be/stops/106640", "https://data.delijn.be/stops/106642"], ["https://data.delijn.be/stops/504504", "https://data.delijn.be/stops/509504"], ["https://data.delijn.be/stops/201906", "https://data.delijn.be/stops/203517"], ["https://data.delijn.be/stops/402803", "https://data.delijn.be/stops/409030"], ["https://data.delijn.be/stops/504093", "https://data.delijn.be/stops/504094"], ["https://data.delijn.be/stops/401500", "https://data.delijn.be/stops/410291"], ["https://data.delijn.be/stops/200866", "https://data.delijn.be/stops/202331"], ["https://data.delijn.be/stops/109347", "https://data.delijn.be/stops/109349"], ["https://data.delijn.be/stops/502554", "https://data.delijn.be/stops/505051"], ["https://data.delijn.be/stops/300747", "https://data.delijn.be/stops/302401"], ["https://data.delijn.be/stops/406524", "https://data.delijn.be/stops/406602"], ["https://data.delijn.be/stops/200577", "https://data.delijn.be/stops/202756"], ["https://data.delijn.be/stops/205052", "https://data.delijn.be/stops/205704"], ["https://data.delijn.be/stops/401258", "https://data.delijn.be/stops/401259"], ["https://data.delijn.be/stops/409164", "https://data.delijn.be/stops/409207"], ["https://data.delijn.be/stops/301002", "https://data.delijn.be/stops/306813"], ["https://data.delijn.be/stops/405723", "https://data.delijn.be/stops/408327"], ["https://data.delijn.be/stops/504224", "https://data.delijn.be/stops/504228"], ["https://data.delijn.be/stops/501163", "https://data.delijn.be/stops/506678"], ["https://data.delijn.be/stops/208202", "https://data.delijn.be/stops/208203"], ["https://data.delijn.be/stops/503361", "https://data.delijn.be/stops/503419"], ["https://data.delijn.be/stops/109116", "https://data.delijn.be/stops/109117"], ["https://data.delijn.be/stops/407617", "https://data.delijn.be/stops/409806"], ["https://data.delijn.be/stops/504127", "https://data.delijn.be/stops/509683"], ["https://data.delijn.be/stops/107034", "https://data.delijn.be/stops/107036"], ["https://data.delijn.be/stops/408003", "https://data.delijn.be/stops/408340"], ["https://data.delijn.be/stops/206514", "https://data.delijn.be/stops/207659"], ["https://data.delijn.be/stops/301691", "https://data.delijn.be/stops/301788"], ["https://data.delijn.be/stops/404864", "https://data.delijn.be/stops/406722"], ["https://data.delijn.be/stops/401356", "https://data.delijn.be/stops/401373"], ["https://data.delijn.be/stops/303985", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/504162", "https://data.delijn.be/stops/504196"], ["https://data.delijn.be/stops/407667", "https://data.delijn.be/stops/410248"], ["https://data.delijn.be/stops/404864", "https://data.delijn.be/stops/404892"], ["https://data.delijn.be/stops/502269", "https://data.delijn.be/stops/502673"], ["https://data.delijn.be/stops/504079", "https://data.delijn.be/stops/505395"], ["https://data.delijn.be/stops/304032", "https://data.delijn.be/stops/304112"], ["https://data.delijn.be/stops/501347", "https://data.delijn.be/stops/506357"], ["https://data.delijn.be/stops/405619", "https://data.delijn.be/stops/409876"], ["https://data.delijn.be/stops/200841", "https://data.delijn.be/stops/202791"], ["https://data.delijn.be/stops/401106", "https://data.delijn.be/stops/401111"], ["https://data.delijn.be/stops/503076", "https://data.delijn.be/stops/508068"], ["https://data.delijn.be/stops/407581", "https://data.delijn.be/stops/408881"], ["https://data.delijn.be/stops/206955", "https://data.delijn.be/stops/207367"], ["https://data.delijn.be/stops/305108", "https://data.delijn.be/stops/305109"], ["https://data.delijn.be/stops/103609", "https://data.delijn.be/stops/106311"], ["https://data.delijn.be/stops/503346", "https://data.delijn.be/stops/508346"], ["https://data.delijn.be/stops/300685", "https://data.delijn.be/stops/300699"], ["https://data.delijn.be/stops/402042", "https://data.delijn.be/stops/402044"], ["https://data.delijn.be/stops/200624", "https://data.delijn.be/stops/210093"], ["https://data.delijn.be/stops/109246", "https://data.delijn.be/stops/109258"], ["https://data.delijn.be/stops/107110", "https://data.delijn.be/stops/107595"], ["https://data.delijn.be/stops/202201", "https://data.delijn.be/stops/202204"], ["https://data.delijn.be/stops/202407", "https://data.delijn.be/stops/203406"], ["https://data.delijn.be/stops/503793", "https://data.delijn.be/stops/503795"], ["https://data.delijn.be/stops/106235", "https://data.delijn.be/stops/106682"], ["https://data.delijn.be/stops/503513", "https://data.delijn.be/stops/503518"], ["https://data.delijn.be/stops/200457", "https://data.delijn.be/stops/201737"], ["https://data.delijn.be/stops/303696", "https://data.delijn.be/stops/305419"], ["https://data.delijn.be/stops/207031", "https://data.delijn.be/stops/207047"], ["https://data.delijn.be/stops/301615", "https://data.delijn.be/stops/301633"], ["https://data.delijn.be/stops/400853", "https://data.delijn.be/stops/409621"], ["https://data.delijn.be/stops/501011", "https://data.delijn.be/stops/501072"], ["https://data.delijn.be/stops/202930", "https://data.delijn.be/stops/203491"], ["https://data.delijn.be/stops/401761", "https://data.delijn.be/stops/406824"], ["https://data.delijn.be/stops/304473", "https://data.delijn.be/stops/307584"], ["https://data.delijn.be/stops/104504", "https://data.delijn.be/stops/308849"], ["https://data.delijn.be/stops/501451", "https://data.delijn.be/stops/506362"], ["https://data.delijn.be/stops/104742", "https://data.delijn.be/stops/108162"], ["https://data.delijn.be/stops/207803", "https://data.delijn.be/stops/300195"], ["https://data.delijn.be/stops/403967", "https://data.delijn.be/stops/405979"], ["https://data.delijn.be/stops/204530", "https://data.delijn.be/stops/205327"], ["https://data.delijn.be/stops/301332", "https://data.delijn.be/stops/301342"], ["https://data.delijn.be/stops/304918", "https://data.delijn.be/stops/304919"], ["https://data.delijn.be/stops/408369", "https://data.delijn.be/stops/409375"], ["https://data.delijn.be/stops/403364", "https://data.delijn.be/stops/403522"], ["https://data.delijn.be/stops/300481", "https://data.delijn.be/stops/300503"], ["https://data.delijn.be/stops/406240", "https://data.delijn.be/stops/406247"], ["https://data.delijn.be/stops/101845", "https://data.delijn.be/stops/102840"], ["https://data.delijn.be/stops/400929", "https://data.delijn.be/stops/400945"], ["https://data.delijn.be/stops/303120", "https://data.delijn.be/stops/303224"], ["https://data.delijn.be/stops/206674", "https://data.delijn.be/stops/209172"], ["https://data.delijn.be/stops/200855", "https://data.delijn.be/stops/201883"], ["https://data.delijn.be/stops/301348", "https://data.delijn.be/stops/306132"], ["https://data.delijn.be/stops/204752", "https://data.delijn.be/stops/204753"], ["https://data.delijn.be/stops/204026", "https://data.delijn.be/stops/204027"], ["https://data.delijn.be/stops/109227", "https://data.delijn.be/stops/109228"], ["https://data.delijn.be/stops/400015", "https://data.delijn.be/stops/400016"], ["https://data.delijn.be/stops/201749", "https://data.delijn.be/stops/203621"], ["https://data.delijn.be/stops/302158", "https://data.delijn.be/stops/302159"], ["https://data.delijn.be/stops/109170", "https://data.delijn.be/stops/109172"], ["https://data.delijn.be/stops/500002", "https://data.delijn.be/stops/503665"], ["https://data.delijn.be/stops/402724", "https://data.delijn.be/stops/402731"], ["https://data.delijn.be/stops/305265", "https://data.delijn.be/stops/308697"], ["https://data.delijn.be/stops/301825", "https://data.delijn.be/stops/305912"], ["https://data.delijn.be/stops/106798", "https://data.delijn.be/stops/106867"], ["https://data.delijn.be/stops/103900", "https://data.delijn.be/stops/109673"], ["https://data.delijn.be/stops/203279", "https://data.delijn.be/stops/203298"], ["https://data.delijn.be/stops/400199", "https://data.delijn.be/stops/400430"], ["https://data.delijn.be/stops/202012", "https://data.delijn.be/stops/203012"], ["https://data.delijn.be/stops/101382", "https://data.delijn.be/stops/106993"], ["https://data.delijn.be/stops/206236", "https://data.delijn.be/stops/206855"], ["https://data.delijn.be/stops/407823", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/304941", "https://data.delijn.be/stops/306805"], ["https://data.delijn.be/stops/302014", "https://data.delijn.be/stops/302023"], ["https://data.delijn.be/stops/208061", "https://data.delijn.be/stops/208063"], ["https://data.delijn.be/stops/502039", "https://data.delijn.be/stops/507008"], ["https://data.delijn.be/stops/101400", "https://data.delijn.be/stops/106531"], ["https://data.delijn.be/stops/401562", "https://data.delijn.be/stops/401564"], ["https://data.delijn.be/stops/206566", "https://data.delijn.be/stops/206998"], ["https://data.delijn.be/stops/206085", "https://data.delijn.be/stops/206086"], ["https://data.delijn.be/stops/207474", "https://data.delijn.be/stops/207475"], ["https://data.delijn.be/stops/101689", "https://data.delijn.be/stops/101692"], ["https://data.delijn.be/stops/505772", "https://data.delijn.be/stops/507374"], ["https://data.delijn.be/stops/503040", "https://data.delijn.be/stops/508045"], ["https://data.delijn.be/stops/503232", "https://data.delijn.be/stops/508232"], ["https://data.delijn.be/stops/203064", "https://data.delijn.be/stops/211852"], ["https://data.delijn.be/stops/505960", "https://data.delijn.be/stops/509562"], ["https://data.delijn.be/stops/103287", "https://data.delijn.be/stops/109990"], ["https://data.delijn.be/stops/208167", "https://data.delijn.be/stops/209167"], ["https://data.delijn.be/stops/103002", "https://data.delijn.be/stops/105176"], ["https://data.delijn.be/stops/102224", "https://data.delijn.be/stops/105527"], ["https://data.delijn.be/stops/300345", "https://data.delijn.be/stops/304699"], ["https://data.delijn.be/stops/504470", "https://data.delijn.be/stops/504473"], ["https://data.delijn.be/stops/405713", "https://data.delijn.be/stops/408352"], ["https://data.delijn.be/stops/103007", "https://data.delijn.be/stops/106425"], ["https://data.delijn.be/stops/200650", "https://data.delijn.be/stops/208712"], ["https://data.delijn.be/stops/403949", "https://data.delijn.be/stops/404025"], ["https://data.delijn.be/stops/409306", "https://data.delijn.be/stops/409307"], ["https://data.delijn.be/stops/306871", "https://data.delijn.be/stops/307421"], ["https://data.delijn.be/stops/401647", "https://data.delijn.be/stops/408723"], ["https://data.delijn.be/stops/305347", "https://data.delijn.be/stops/307110"], ["https://data.delijn.be/stops/102463", "https://data.delijn.be/stops/400145"], ["https://data.delijn.be/stops/105114", "https://data.delijn.be/stops/105826"], ["https://data.delijn.be/stops/402155", "https://data.delijn.be/stops/406810"], ["https://data.delijn.be/stops/308866", "https://data.delijn.be/stops/308867"], ["https://data.delijn.be/stops/107604", "https://data.delijn.be/stops/107605"], ["https://data.delijn.be/stops/403394", "https://data.delijn.be/stops/403395"], ["https://data.delijn.be/stops/505778", "https://data.delijn.be/stops/509827"], ["https://data.delijn.be/stops/503858", "https://data.delijn.be/stops/507953"], ["https://data.delijn.be/stops/102756", "https://data.delijn.be/stops/103306"], ["https://data.delijn.be/stops/303700", "https://data.delijn.be/stops/304918"], ["https://data.delijn.be/stops/205528", "https://data.delijn.be/stops/205634"], ["https://data.delijn.be/stops/503949", "https://data.delijn.be/stops/504997"], ["https://data.delijn.be/stops/104452", "https://data.delijn.be/stops/107522"], ["https://data.delijn.be/stops/408332", "https://data.delijn.be/stops/410160"], ["https://data.delijn.be/stops/206769", "https://data.delijn.be/stops/208038"], ["https://data.delijn.be/stops/202028", "https://data.delijn.be/stops/203991"], ["https://data.delijn.be/stops/208440", "https://data.delijn.be/stops/208674"], ["https://data.delijn.be/stops/501100", "https://data.delijn.be/stops/506100"], ["https://data.delijn.be/stops/205974", "https://data.delijn.be/stops/208243"], ["https://data.delijn.be/stops/301833", "https://data.delijn.be/stops/301847"], ["https://data.delijn.be/stops/404626", "https://data.delijn.be/stops/406732"], ["https://data.delijn.be/stops/503145", "https://data.delijn.be/stops/503159"], ["https://data.delijn.be/stops/501173", "https://data.delijn.be/stops/501183"], ["https://data.delijn.be/stops/404655", "https://data.delijn.be/stops/404666"], ["https://data.delijn.be/stops/200832", "https://data.delijn.be/stops/200835"], ["https://data.delijn.be/stops/204340", "https://data.delijn.be/stops/204341"], ["https://data.delijn.be/stops/305497", "https://data.delijn.be/stops/307813"], ["https://data.delijn.be/stops/502328", "https://data.delijn.be/stops/507328"], ["https://data.delijn.be/stops/101368", "https://data.delijn.be/stops/106419"], ["https://data.delijn.be/stops/501384", "https://data.delijn.be/stops/506191"], ["https://data.delijn.be/stops/402750", "https://data.delijn.be/stops/408038"], ["https://data.delijn.be/stops/105654", "https://data.delijn.be/stops/105657"], ["https://data.delijn.be/stops/201235", "https://data.delijn.be/stops/201521"], ["https://data.delijn.be/stops/103641", "https://data.delijn.be/stops/107171"], ["https://data.delijn.be/stops/301847", "https://data.delijn.be/stops/308602"], ["https://data.delijn.be/stops/203766", "https://data.delijn.be/stops/203778"], ["https://data.delijn.be/stops/404151", "https://data.delijn.be/stops/404184"], ["https://data.delijn.be/stops/505079", "https://data.delijn.be/stops/507753"], ["https://data.delijn.be/stops/108091", "https://data.delijn.be/stops/108093"], ["https://data.delijn.be/stops/208843", "https://data.delijn.be/stops/210070"], ["https://data.delijn.be/stops/407630", "https://data.delijn.be/stops/409520"], ["https://data.delijn.be/stops/203305", "https://data.delijn.be/stops/203306"], ["https://data.delijn.be/stops/333233", "https://data.delijn.be/stops/333234"], ["https://data.delijn.be/stops/302958", "https://data.delijn.be/stops/303005"], ["https://data.delijn.be/stops/407224", "https://data.delijn.be/stops/407442"], ["https://data.delijn.be/stops/408456", "https://data.delijn.be/stops/409420"], ["https://data.delijn.be/stops/401922", "https://data.delijn.be/stops/403798"], ["https://data.delijn.be/stops/301292", "https://data.delijn.be/stops/306249"], ["https://data.delijn.be/stops/200333", "https://data.delijn.be/stops/203821"], ["https://data.delijn.be/stops/202824", "https://data.delijn.be/stops/203824"], ["https://data.delijn.be/stops/300780", "https://data.delijn.be/stops/300785"], ["https://data.delijn.be/stops/506242", "https://data.delijn.be/stops/506768"], ["https://data.delijn.be/stops/303180", "https://data.delijn.be/stops/307799"], ["https://data.delijn.be/stops/204370", "https://data.delijn.be/stops/204371"], ["https://data.delijn.be/stops/207760", "https://data.delijn.be/stops/207781"], ["https://data.delijn.be/stops/402589", "https://data.delijn.be/stops/404143"], ["https://data.delijn.be/stops/400092", "https://data.delijn.be/stops/400093"], ["https://data.delijn.be/stops/205020", "https://data.delijn.be/stops/205400"], ["https://data.delijn.be/stops/203989", "https://data.delijn.be/stops/210850"], ["https://data.delijn.be/stops/305664", "https://data.delijn.be/stops/305666"], ["https://data.delijn.be/stops/504604", "https://data.delijn.be/stops/509523"], ["https://data.delijn.be/stops/401401", "https://data.delijn.be/stops/401402"], ["https://data.delijn.be/stops/504443", "https://data.delijn.be/stops/509445"], ["https://data.delijn.be/stops/101589", "https://data.delijn.be/stops/101590"], ["https://data.delijn.be/stops/206168", "https://data.delijn.be/stops/206169"], ["https://data.delijn.be/stops/406974", "https://data.delijn.be/stops/406975"], ["https://data.delijn.be/stops/204649", "https://data.delijn.be/stops/205613"], ["https://data.delijn.be/stops/502297", "https://data.delijn.be/stops/507297"], ["https://data.delijn.be/stops/201403", "https://data.delijn.be/stops/202688"], ["https://data.delijn.be/stops/308477", "https://data.delijn.be/stops/308478"], ["https://data.delijn.be/stops/205251", "https://data.delijn.be/stops/205481"], ["https://data.delijn.be/stops/304863", "https://data.delijn.be/stops/306816"], ["https://data.delijn.be/stops/302428", "https://data.delijn.be/stops/302429"], ["https://data.delijn.be/stops/206265", "https://data.delijn.be/stops/206982"], ["https://data.delijn.be/stops/301052", "https://data.delijn.be/stops/301061"], ["https://data.delijn.be/stops/302887", "https://data.delijn.be/stops/303232"], ["https://data.delijn.be/stops/101395", "https://data.delijn.be/stops/101680"], ["https://data.delijn.be/stops/208110", "https://data.delijn.be/stops/209112"], ["https://data.delijn.be/stops/501751", "https://data.delijn.be/stops/501777"], ["https://data.delijn.be/stops/406786", "https://data.delijn.be/stops/406804"], ["https://data.delijn.be/stops/503696", "https://data.delijn.be/stops/508696"], ["https://data.delijn.be/stops/402104", "https://data.delijn.be/stops/402105"], ["https://data.delijn.be/stops/408432", "https://data.delijn.be/stops/408433"], ["https://data.delijn.be/stops/106230", "https://data.delijn.be/stops/109126"], ["https://data.delijn.be/stops/102190", "https://data.delijn.be/stops/102414"], ["https://data.delijn.be/stops/201709", "https://data.delijn.be/stops/202377"], ["https://data.delijn.be/stops/300224", "https://data.delijn.be/stops/300256"], ["https://data.delijn.be/stops/202108", "https://data.delijn.be/stops/204234"], ["https://data.delijn.be/stops/103985", "https://data.delijn.be/stops/104020"], ["https://data.delijn.be/stops/406735", "https://data.delijn.be/stops/407622"], ["https://data.delijn.be/stops/300271", "https://data.delijn.be/stops/307112"], ["https://data.delijn.be/stops/304051", "https://data.delijn.be/stops/304079"], ["https://data.delijn.be/stops/304159", "https://data.delijn.be/stops/307543"], ["https://data.delijn.be/stops/409457", "https://data.delijn.be/stops/409458"], ["https://data.delijn.be/stops/404728", "https://data.delijn.be/stops/406109"], ["https://data.delijn.be/stops/102596", "https://data.delijn.be/stops/102597"], ["https://data.delijn.be/stops/200725", "https://data.delijn.be/stops/202567"], ["https://data.delijn.be/stops/303276", "https://data.delijn.be/stops/303304"], ["https://data.delijn.be/stops/209118", "https://data.delijn.be/stops/209236"], ["https://data.delijn.be/stops/207111", "https://data.delijn.be/stops/207125"], ["https://data.delijn.be/stops/307971", "https://data.delijn.be/stops/307972"], ["https://data.delijn.be/stops/403844", "https://data.delijn.be/stops/403845"], ["https://data.delijn.be/stops/501681", "https://data.delijn.be/stops/506417"], ["https://data.delijn.be/stops/505207", "https://data.delijn.be/stops/505216"], ["https://data.delijn.be/stops/504786", "https://data.delijn.be/stops/504862"], ["https://data.delijn.be/stops/103585", "https://data.delijn.be/stops/105325"], ["https://data.delijn.be/stops/102209", "https://data.delijn.be/stops/106241"], ["https://data.delijn.be/stops/307742", "https://data.delijn.be/stops/307743"], ["https://data.delijn.be/stops/501436", "https://data.delijn.be/stops/501693"], ["https://data.delijn.be/stops/107231", "https://data.delijn.be/stops/107232"], ["https://data.delijn.be/stops/408260", "https://data.delijn.be/stops/408401"], ["https://data.delijn.be/stops/402953", "https://data.delijn.be/stops/405308"], ["https://data.delijn.be/stops/301099", "https://data.delijn.be/stops/308871"], ["https://data.delijn.be/stops/405735", "https://data.delijn.be/stops/410141"], ["https://data.delijn.be/stops/505547", "https://data.delijn.be/stops/505669"], ["https://data.delijn.be/stops/308488", "https://data.delijn.be/stops/308523"], ["https://data.delijn.be/stops/303721", "https://data.delijn.be/stops/303743"], ["https://data.delijn.be/stops/502250", "https://data.delijn.be/stops/507250"], ["https://data.delijn.be/stops/500023", "https://data.delijn.be/stops/501402"], ["https://data.delijn.be/stops/109049", "https://data.delijn.be/stops/109051"], ["https://data.delijn.be/stops/406694", "https://data.delijn.be/stops/408481"], ["https://data.delijn.be/stops/401583", "https://data.delijn.be/stops/406248"], ["https://data.delijn.be/stops/501428", "https://data.delijn.be/stops/501430"], ["https://data.delijn.be/stops/302315", "https://data.delijn.be/stops/302671"], ["https://data.delijn.be/stops/105049", "https://data.delijn.be/stops/304043"], ["https://data.delijn.be/stops/107695", "https://data.delijn.be/stops/108300"], ["https://data.delijn.be/stops/203221", "https://data.delijn.be/stops/205832"], ["https://data.delijn.be/stops/503416", "https://data.delijn.be/stops/508443"], ["https://data.delijn.be/stops/201950", "https://data.delijn.be/stops/203427"], ["https://data.delijn.be/stops/507796", "https://data.delijn.be/stops/507797"], ["https://data.delijn.be/stops/205972", "https://data.delijn.be/stops/207074"], ["https://data.delijn.be/stops/305653", "https://data.delijn.be/stops/307790"], ["https://data.delijn.be/stops/106920", "https://data.delijn.be/stops/106921"], ["https://data.delijn.be/stops/207427", "https://data.delijn.be/stops/209535"], ["https://data.delijn.be/stops/404082", "https://data.delijn.be/stops/308751"], ["https://data.delijn.be/stops/301021", "https://data.delijn.be/stops/301048"], ["https://data.delijn.be/stops/304393", "https://data.delijn.be/stops/307399"], ["https://data.delijn.be/stops/403514", "https://data.delijn.be/stops/403559"], ["https://data.delijn.be/stops/507206", "https://data.delijn.be/stops/507218"], ["https://data.delijn.be/stops/501104", "https://data.delijn.be/stops/501108"], ["https://data.delijn.be/stops/302378", "https://data.delijn.be/stops/302391"], ["https://data.delijn.be/stops/106721", "https://data.delijn.be/stops/106722"], ["https://data.delijn.be/stops/502143", "https://data.delijn.be/stops/507166"], ["https://data.delijn.be/stops/106220", "https://data.delijn.be/stops/106322"], ["https://data.delijn.be/stops/501768", "https://data.delijn.be/stops/502484"], ["https://data.delijn.be/stops/204459", "https://data.delijn.be/stops/205458"], ["https://data.delijn.be/stops/303238", "https://data.delijn.be/stops/303239"], ["https://data.delijn.be/stops/405624", "https://data.delijn.be/stops/409301"], ["https://data.delijn.be/stops/102159", "https://data.delijn.be/stops/108964"], ["https://data.delijn.be/stops/407834", "https://data.delijn.be/stops/407835"], ["https://data.delijn.be/stops/301098", "https://data.delijn.be/stops/301247"], ["https://data.delijn.be/stops/105036", "https://data.delijn.be/stops/105219"], ["https://data.delijn.be/stops/200239", "https://data.delijn.be/stops/201276"], ["https://data.delijn.be/stops/505434", "https://data.delijn.be/stops/505435"], ["https://data.delijn.be/stops/402719", "https://data.delijn.be/stops/402729"], ["https://data.delijn.be/stops/300831", "https://data.delijn.be/stops/300986"], ["https://data.delijn.be/stops/401773", "https://data.delijn.be/stops/406329"], ["https://data.delijn.be/stops/207019", "https://data.delijn.be/stops/207143"], ["https://data.delijn.be/stops/400476", "https://data.delijn.be/stops/400479"], ["https://data.delijn.be/stops/502911", "https://data.delijn.be/stops/502917"], ["https://data.delijn.be/stops/208804", "https://data.delijn.be/stops/209431"], ["https://data.delijn.be/stops/502453", "https://data.delijn.be/stops/507659"], ["https://data.delijn.be/stops/503326", "https://data.delijn.be/stops/505752"], ["https://data.delijn.be/stops/406187", "https://data.delijn.be/stops/409395"], ["https://data.delijn.be/stops/208316", "https://data.delijn.be/stops/209316"], ["https://data.delijn.be/stops/103012", "https://data.delijn.be/stops/104102"], ["https://data.delijn.be/stops/503475", "https://data.delijn.be/stops/508475"], ["https://data.delijn.be/stops/503197", "https://data.delijn.be/stops/508212"], ["https://data.delijn.be/stops/405434", "https://data.delijn.be/stops/409250"], ["https://data.delijn.be/stops/300012", "https://data.delijn.be/stops/300785"], ["https://data.delijn.be/stops/303943", "https://data.delijn.be/stops/306797"], ["https://data.delijn.be/stops/403573", "https://data.delijn.be/stops/403576"], ["https://data.delijn.be/stops/400110", "https://data.delijn.be/stops/409164"], ["https://data.delijn.be/stops/200023", "https://data.delijn.be/stops/201023"], ["https://data.delijn.be/stops/406310", "https://data.delijn.be/stops/406325"], ["https://data.delijn.be/stops/407725", "https://data.delijn.be/stops/407727"], ["https://data.delijn.be/stops/207758", "https://data.delijn.be/stops/207798"], ["https://data.delijn.be/stops/402115", "https://data.delijn.be/stops/402122"], ["https://data.delijn.be/stops/301480", "https://data.delijn.be/stops/301481"], ["https://data.delijn.be/stops/107283", "https://data.delijn.be/stops/107402"], ["https://data.delijn.be/stops/101677", "https://data.delijn.be/stops/103132"], ["https://data.delijn.be/stops/504393", "https://data.delijn.be/stops/509393"], ["https://data.delijn.be/stops/201751", "https://data.delijn.be/stops/203834"], ["https://data.delijn.be/stops/301114", "https://data.delijn.be/stops/307634"], ["https://data.delijn.be/stops/302081", "https://data.delijn.be/stops/302095"], ["https://data.delijn.be/stops/102965", "https://data.delijn.be/stops/104100"], ["https://data.delijn.be/stops/304404", "https://data.delijn.be/stops/307955"], ["https://data.delijn.be/stops/102867", "https://data.delijn.be/stops/106505"], ["https://data.delijn.be/stops/405615", "https://data.delijn.be/stops/407186"], ["https://data.delijn.be/stops/505682", "https://data.delijn.be/stops/505683"], ["https://data.delijn.be/stops/105977", "https://data.delijn.be/stops/105978"], ["https://data.delijn.be/stops/303213", "https://data.delijn.be/stops/303214"], ["https://data.delijn.be/stops/301421", "https://data.delijn.be/stops/302132"], ["https://data.delijn.be/stops/204167", "https://data.delijn.be/stops/205167"], ["https://data.delijn.be/stops/505316", "https://data.delijn.be/stops/508006"], ["https://data.delijn.be/stops/101857", "https://data.delijn.be/stops/105554"], ["https://data.delijn.be/stops/206228", "https://data.delijn.be/stops/308573"], ["https://data.delijn.be/stops/200212", "https://data.delijn.be/stops/201203"], ["https://data.delijn.be/stops/207246", "https://data.delijn.be/stops/207403"], ["https://data.delijn.be/stops/307428", "https://data.delijn.be/stops/307429"], ["https://data.delijn.be/stops/304101", "https://data.delijn.be/stops/304109"], ["https://data.delijn.be/stops/502324", "https://data.delijn.be/stops/502333"], ["https://data.delijn.be/stops/106455", "https://data.delijn.be/stops/106456"], ["https://data.delijn.be/stops/107444", "https://data.delijn.be/stops/109754"], ["https://data.delijn.be/stops/501027", "https://data.delijn.be/stops/501366"], ["https://data.delijn.be/stops/405976", "https://data.delijn.be/stops/405991"], ["https://data.delijn.be/stops/502092", "https://data.delijn.be/stops/507112"], ["https://data.delijn.be/stops/200856", "https://data.delijn.be/stops/201883"], ["https://data.delijn.be/stops/408735", "https://data.delijn.be/stops/408775"], ["https://data.delijn.be/stops/504278", "https://data.delijn.be/stops/509282"], ["https://data.delijn.be/stops/505052", "https://data.delijn.be/stops/505225"], ["https://data.delijn.be/stops/202110", "https://data.delijn.be/stops/203639"], ["https://data.delijn.be/stops/308015", "https://data.delijn.be/stops/308018"], ["https://data.delijn.be/stops/503573", "https://data.delijn.be/stops/503575"], ["https://data.delijn.be/stops/106839", "https://data.delijn.be/stops/107426"], ["https://data.delijn.be/stops/403817", "https://data.delijn.be/stops/403819"], ["https://data.delijn.be/stops/101530", "https://data.delijn.be/stops/104815"], ["https://data.delijn.be/stops/503154", "https://data.delijn.be/stops/505788"], ["https://data.delijn.be/stops/301825", "https://data.delijn.be/stops/301828"], ["https://data.delijn.be/stops/206642", "https://data.delijn.be/stops/207642"], ["https://data.delijn.be/stops/502457", "https://data.delijn.be/stops/507270"], ["https://data.delijn.be/stops/201375", "https://data.delijn.be/stops/210089"], ["https://data.delijn.be/stops/208087", "https://data.delijn.be/stops/209088"], ["https://data.delijn.be/stops/101279", "https://data.delijn.be/stops/106025"], ["https://data.delijn.be/stops/506051", "https://data.delijn.be/stops/507135"], ["https://data.delijn.be/stops/106395", "https://data.delijn.be/stops/106396"], ["https://data.delijn.be/stops/504327", "https://data.delijn.be/stops/504330"], ["https://data.delijn.be/stops/204990", "https://data.delijn.be/stops/204991"], ["https://data.delijn.be/stops/303657", "https://data.delijn.be/stops/308958"], ["https://data.delijn.be/stops/503646", "https://data.delijn.be/stops/503735"], ["https://data.delijn.be/stops/301632", "https://data.delijn.be/stops/301633"], ["https://data.delijn.be/stops/103624", "https://data.delijn.be/stops/103629"], ["https://data.delijn.be/stops/200183", "https://data.delijn.be/stops/202477"], ["https://data.delijn.be/stops/204432", "https://data.delijn.be/stops/204443"], ["https://data.delijn.be/stops/503696", "https://data.delijn.be/stops/509950"], ["https://data.delijn.be/stops/206123", "https://data.delijn.be/stops/300843"], ["https://data.delijn.be/stops/402236", "https://data.delijn.be/stops/402237"], ["https://data.delijn.be/stops/301084", "https://data.delijn.be/stops/301927"], ["https://data.delijn.be/stops/105458", "https://data.delijn.be/stops/109893"], ["https://data.delijn.be/stops/106138", "https://data.delijn.be/stops/106140"], ["https://data.delijn.be/stops/104757", "https://data.delijn.be/stops/108897"], ["https://data.delijn.be/stops/406042", "https://data.delijn.be/stops/406050"], ["https://data.delijn.be/stops/408530", "https://data.delijn.be/stops/408775"], ["https://data.delijn.be/stops/301832", "https://data.delijn.be/stops/304334"], ["https://data.delijn.be/stops/408698", "https://data.delijn.be/stops/408699"], ["https://data.delijn.be/stops/208159", "https://data.delijn.be/stops/208510"], ["https://data.delijn.be/stops/504820", "https://data.delijn.be/stops/509820"], ["https://data.delijn.be/stops/407542", "https://data.delijn.be/stops/408482"], ["https://data.delijn.be/stops/401082", "https://data.delijn.be/stops/401167"], ["https://data.delijn.be/stops/302345", "https://data.delijn.be/stops/302370"], ["https://data.delijn.be/stops/108558", "https://data.delijn.be/stops/109093"], ["https://data.delijn.be/stops/103596", "https://data.delijn.be/stops/109402"], ["https://data.delijn.be/stops/106818", "https://data.delijn.be/stops/106820"], ["https://data.delijn.be/stops/202365", "https://data.delijn.be/stops/203997"], ["https://data.delijn.be/stops/408084", "https://data.delijn.be/stops/305705"], ["https://data.delijn.be/stops/502037", "https://data.delijn.be/stops/502041"], ["https://data.delijn.be/stops/107136", "https://data.delijn.be/stops/107137"], ["https://data.delijn.be/stops/400143", "https://data.delijn.be/stops/403420"], ["https://data.delijn.be/stops/301587", "https://data.delijn.be/stops/301588"], ["https://data.delijn.be/stops/407357", "https://data.delijn.be/stops/409859"], ["https://data.delijn.be/stops/404486", "https://data.delijn.be/stops/406763"], ["https://data.delijn.be/stops/101925", "https://data.delijn.be/stops/102595"], ["https://data.delijn.be/stops/200669", "https://data.delijn.be/stops/505914"], ["https://data.delijn.be/stops/403468", "https://data.delijn.be/stops/403475"], ["https://data.delijn.be/stops/200501", "https://data.delijn.be/stops/201188"], ["https://data.delijn.be/stops/401564", "https://data.delijn.be/stops/408469"], ["https://data.delijn.be/stops/305263", "https://data.delijn.be/stops/305315"], ["https://data.delijn.be/stops/503601", "https://data.delijn.be/stops/508601"], ["https://data.delijn.be/stops/408968", "https://data.delijn.be/stops/408976"], ["https://data.delijn.be/stops/504257", "https://data.delijn.be/stops/509683"], ["https://data.delijn.be/stops/109621", "https://data.delijn.be/stops/109622"], ["https://data.delijn.be/stops/305070", "https://data.delijn.be/stops/305071"], ["https://data.delijn.be/stops/404625", "https://data.delijn.be/stops/404634"], ["https://data.delijn.be/stops/303196", "https://data.delijn.be/stops/303197"], ["https://data.delijn.be/stops/202103", "https://data.delijn.be/stops/202104"], ["https://data.delijn.be/stops/407508", "https://data.delijn.be/stops/407509"], ["https://data.delijn.be/stops/504037", "https://data.delijn.be/stops/509037"], ["https://data.delijn.be/stops/208707", "https://data.delijn.be/stops/208708"], ["https://data.delijn.be/stops/407479", "https://data.delijn.be/stops/407540"], ["https://data.delijn.be/stops/405466", "https://data.delijn.be/stops/408814"], ["https://data.delijn.be/stops/209006", "https://data.delijn.be/stops/209007"], ["https://data.delijn.be/stops/107929", "https://data.delijn.be/stops/107930"], ["https://data.delijn.be/stops/203233", "https://data.delijn.be/stops/203234"], ["https://data.delijn.be/stops/305082", "https://data.delijn.be/stops/305083"], ["https://data.delijn.be/stops/104987", "https://data.delijn.be/stops/109480"], ["https://data.delijn.be/stops/102389", "https://data.delijn.be/stops/107081"], ["https://data.delijn.be/stops/308074", "https://data.delijn.be/stops/308937"], ["https://data.delijn.be/stops/206750", "https://data.delijn.be/stops/208476"], ["https://data.delijn.be/stops/104643", "https://data.delijn.be/stops/108034"], ["https://data.delijn.be/stops/206706", "https://data.delijn.be/stops/207611"], ["https://data.delijn.be/stops/400906", "https://data.delijn.be/stops/400907"], ["https://data.delijn.be/stops/503061", "https://data.delijn.be/stops/505789"], ["https://data.delijn.be/stops/107545", "https://data.delijn.be/stops/109593"], ["https://data.delijn.be/stops/407670", "https://data.delijn.be/stops/407674"], ["https://data.delijn.be/stops/200692", "https://data.delijn.be/stops/210041"], ["https://data.delijn.be/stops/502518", "https://data.delijn.be/stops/507518"], ["https://data.delijn.be/stops/207619", "https://data.delijn.be/stops/207620"], ["https://data.delijn.be/stops/403201", "https://data.delijn.be/stops/403559"], ["https://data.delijn.be/stops/200115", "https://data.delijn.be/stops/203077"], ["https://data.delijn.be/stops/305122", "https://data.delijn.be/stops/305124"], ["https://data.delijn.be/stops/200185", "https://data.delijn.be/stops/203756"], ["https://data.delijn.be/stops/305964", "https://data.delijn.be/stops/305965"], ["https://data.delijn.be/stops/505746", "https://data.delijn.be/stops/509893"], ["https://data.delijn.be/stops/300420", "https://data.delijn.be/stops/302702"], ["https://data.delijn.be/stops/302363", "https://data.delijn.be/stops/307013"], ["https://data.delijn.be/stops/102237", "https://data.delijn.be/stops/104334"], ["https://data.delijn.be/stops/306770", "https://data.delijn.be/stops/306821"], ["https://data.delijn.be/stops/109498", "https://data.delijn.be/stops/109499"], ["https://data.delijn.be/stops/408228", "https://data.delijn.be/stops/408250"], ["https://data.delijn.be/stops/207568", "https://data.delijn.be/stops/207594"], ["https://data.delijn.be/stops/403907", "https://data.delijn.be/stops/404037"], ["https://data.delijn.be/stops/502236", "https://data.delijn.be/stops/505088"], ["https://data.delijn.be/stops/304409", "https://data.delijn.be/stops/304410"], ["https://data.delijn.be/stops/505368", "https://data.delijn.be/stops/509045"], ["https://data.delijn.be/stops/400768", "https://data.delijn.be/stops/400771"], ["https://data.delijn.be/stops/504087", "https://data.delijn.be/stops/504090"], ["https://data.delijn.be/stops/109837", "https://data.delijn.be/stops/109892"], ["https://data.delijn.be/stops/101550", "https://data.delijn.be/stops/109673"], ["https://data.delijn.be/stops/204426", "https://data.delijn.be/stops/205426"], ["https://data.delijn.be/stops/401548", "https://data.delijn.be/stops/401627"], ["https://data.delijn.be/stops/105281", "https://data.delijn.be/stops/109969"], ["https://data.delijn.be/stops/200191", "https://data.delijn.be/stops/201198"], ["https://data.delijn.be/stops/408120", "https://data.delijn.be/stops/408121"], ["https://data.delijn.be/stops/404012", "https://data.delijn.be/stops/404014"], ["https://data.delijn.be/stops/108825", "https://data.delijn.be/stops/108891"], ["https://data.delijn.be/stops/308770", "https://data.delijn.be/stops/308780"], ["https://data.delijn.be/stops/400209", "https://data.delijn.be/stops/400211"], ["https://data.delijn.be/stops/302555", "https://data.delijn.be/stops/302556"], ["https://data.delijn.be/stops/303713", "https://data.delijn.be/stops/303724"], ["https://data.delijn.be/stops/104908", "https://data.delijn.be/stops/107847"], ["https://data.delijn.be/stops/401340", "https://data.delijn.be/stops/410175"], ["https://data.delijn.be/stops/207181", "https://data.delijn.be/stops/207957"], ["https://data.delijn.be/stops/202747", "https://data.delijn.be/stops/207422"], ["https://data.delijn.be/stops/302595", "https://data.delijn.be/stops/302601"], ["https://data.delijn.be/stops/200431", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/101014", "https://data.delijn.be/stops/101133"], ["https://data.delijn.be/stops/207721", "https://data.delijn.be/stops/207733"], ["https://data.delijn.be/stops/406097", "https://data.delijn.be/stops/406983"], ["https://data.delijn.be/stops/505695", "https://data.delijn.be/stops/509880"], ["https://data.delijn.be/stops/507113", "https://data.delijn.be/stops/507145"], ["https://data.delijn.be/stops/206549", "https://data.delijn.be/stops/207486"], ["https://data.delijn.be/stops/102703", "https://data.delijn.be/stops/104747"], ["https://data.delijn.be/stops/407053", "https://data.delijn.be/stops/408001"], ["https://data.delijn.be/stops/503703", "https://data.delijn.be/stops/508703"], ["https://data.delijn.be/stops/503071", "https://data.delijn.be/stops/508071"], ["https://data.delijn.be/stops/503336", "https://data.delijn.be/stops/505635"], ["https://data.delijn.be/stops/503282", "https://data.delijn.be/stops/503288"], ["https://data.delijn.be/stops/405524", "https://data.delijn.be/stops/406736"], ["https://data.delijn.be/stops/208397", "https://data.delijn.be/stops/209272"], ["https://data.delijn.be/stops/302136", "https://data.delijn.be/stops/307081"], ["https://data.delijn.be/stops/406442", "https://data.delijn.be/stops/406443"], ["https://data.delijn.be/stops/301284", "https://data.delijn.be/stops/304691"], ["https://data.delijn.be/stops/308514", "https://data.delijn.be/stops/308517"], ["https://data.delijn.be/stops/504522", "https://data.delijn.be/stops/509522"], ["https://data.delijn.be/stops/505287", "https://data.delijn.be/stops/508544"], ["https://data.delijn.be/stops/204373", "https://data.delijn.be/stops/204765"], ["https://data.delijn.be/stops/105288", "https://data.delijn.be/stops/106491"], ["https://data.delijn.be/stops/200563", "https://data.delijn.be/stops/201563"], ["https://data.delijn.be/stops/403044", "https://data.delijn.be/stops/403048"], ["https://data.delijn.be/stops/302774", "https://data.delijn.be/stops/302775"], ["https://data.delijn.be/stops/103875", "https://data.delijn.be/stops/105525"], ["https://data.delijn.be/stops/301609", "https://data.delijn.be/stops/303936"], ["https://data.delijn.be/stops/502176", "https://data.delijn.be/stops/502182"], ["https://data.delijn.be/stops/107042", "https://data.delijn.be/stops/108237"], ["https://data.delijn.be/stops/207702", "https://data.delijn.be/stops/207739"], ["https://data.delijn.be/stops/405022", "https://data.delijn.be/stops/405064"], ["https://data.delijn.be/stops/200661", "https://data.delijn.be/stops/201835"], ["https://data.delijn.be/stops/206946", "https://data.delijn.be/stops/207678"], ["https://data.delijn.be/stops/302692", "https://data.delijn.be/stops/302699"], ["https://data.delijn.be/stops/402946", "https://data.delijn.be/stops/402947"], ["https://data.delijn.be/stops/301170", "https://data.delijn.be/stops/303214"], ["https://data.delijn.be/stops/503244", "https://data.delijn.be/stops/503253"], ["https://data.delijn.be/stops/200686", "https://data.delijn.be/stops/200688"], ["https://data.delijn.be/stops/303722", "https://data.delijn.be/stops/303742"], ["https://data.delijn.be/stops/505353", "https://data.delijn.be/stops/507099"], ["https://data.delijn.be/stops/303009", "https://data.delijn.be/stops/304927"], ["https://data.delijn.be/stops/306202", "https://data.delijn.be/stops/306203"], ["https://data.delijn.be/stops/502012", "https://data.delijn.be/stops/502344"], ["https://data.delijn.be/stops/402778", "https://data.delijn.be/stops/402784"], ["https://data.delijn.be/stops/200935", "https://data.delijn.be/stops/202713"], ["https://data.delijn.be/stops/103070", "https://data.delijn.be/stops/104123"], ["https://data.delijn.be/stops/203238", "https://data.delijn.be/stops/203239"], ["https://data.delijn.be/stops/502563", "https://data.delijn.be/stops/507224"], ["https://data.delijn.be/stops/202282", "https://data.delijn.be/stops/205067"], ["https://data.delijn.be/stops/501540", "https://data.delijn.be/stops/501547"], ["https://data.delijn.be/stops/201282", "https://data.delijn.be/stops/203193"], ["https://data.delijn.be/stops/105823", "https://data.delijn.be/stops/109516"], ["https://data.delijn.be/stops/307552", "https://data.delijn.be/stops/307554"], ["https://data.delijn.be/stops/103476", "https://data.delijn.be/stops/109214"], ["https://data.delijn.be/stops/204730", "https://data.delijn.be/stops/205732"], ["https://data.delijn.be/stops/407772", "https://data.delijn.be/stops/408851"], ["https://data.delijn.be/stops/209072", "https://data.delijn.be/stops/209073"], ["https://data.delijn.be/stops/206727", "https://data.delijn.be/stops/206734"], ["https://data.delijn.be/stops/404208", "https://data.delijn.be/stops/404217"], ["https://data.delijn.be/stops/503651", "https://data.delijn.be/stops/503950"], ["https://data.delijn.be/stops/102537", "https://data.delijn.be/stops/405723"], ["https://data.delijn.be/stops/105092", "https://data.delijn.be/stops/105093"], ["https://data.delijn.be/stops/103500", "https://data.delijn.be/stops/105435"], ["https://data.delijn.be/stops/200816", "https://data.delijn.be/stops/200880"], ["https://data.delijn.be/stops/207757", "https://data.delijn.be/stops/207760"], ["https://data.delijn.be/stops/102700", "https://data.delijn.be/stops/106015"], ["https://data.delijn.be/stops/302916", "https://data.delijn.be/stops/302917"], ["https://data.delijn.be/stops/302844", "https://data.delijn.be/stops/302845"], ["https://data.delijn.be/stops/105130", "https://data.delijn.be/stops/105586"], ["https://data.delijn.be/stops/300075", "https://data.delijn.be/stops/301809"], ["https://data.delijn.be/stops/300629", "https://data.delijn.be/stops/300630"], ["https://data.delijn.be/stops/504569", "https://data.delijn.be/stops/509568"], ["https://data.delijn.be/stops/505643", "https://data.delijn.be/stops/509941"], ["https://data.delijn.be/stops/206775", "https://data.delijn.be/stops/206853"], ["https://data.delijn.be/stops/504070", "https://data.delijn.be/stops/505375"], ["https://data.delijn.be/stops/104028", "https://data.delijn.be/stops/106991"], ["https://data.delijn.be/stops/502297", "https://data.delijn.be/stops/505725"], ["https://data.delijn.be/stops/302221", "https://data.delijn.be/stops/302243"], ["https://data.delijn.be/stops/305339", "https://data.delijn.be/stops/305354"], ["https://data.delijn.be/stops/201643", "https://data.delijn.be/stops/201941"], ["https://data.delijn.be/stops/502267", "https://data.delijn.be/stops/502807"], ["https://data.delijn.be/stops/204527", "https://data.delijn.be/stops/205731"], ["https://data.delijn.be/stops/301281", "https://data.delijn.be/stops/306250"], ["https://data.delijn.be/stops/208236", "https://data.delijn.be/stops/209118"], ["https://data.delijn.be/stops/103725", "https://data.delijn.be/stops/105285"], ["https://data.delijn.be/stops/400220", "https://data.delijn.be/stops/400223"], ["https://data.delijn.be/stops/405766", "https://data.delijn.be/stops/409754"], ["https://data.delijn.be/stops/305991", "https://data.delijn.be/stops/306633"], ["https://data.delijn.be/stops/201874", "https://data.delijn.be/stops/203020"], ["https://data.delijn.be/stops/301764", "https://data.delijn.be/stops/306877"], ["https://data.delijn.be/stops/406571", "https://data.delijn.be/stops/406589"], ["https://data.delijn.be/stops/300494", "https://data.delijn.be/stops/300495"], ["https://data.delijn.be/stops/305092", "https://data.delijn.be/stops/308099"], ["https://data.delijn.be/stops/506121", "https://data.delijn.be/stops/506125"], ["https://data.delijn.be/stops/201381", "https://data.delijn.be/stops/211044"], ["https://data.delijn.be/stops/207857", "https://data.delijn.be/stops/209625"], ["https://data.delijn.be/stops/509770", "https://data.delijn.be/stops/510022"], ["https://data.delijn.be/stops/101177", "https://data.delijn.be/stops/101178"], ["https://data.delijn.be/stops/400303", "https://data.delijn.be/stops/406768"], ["https://data.delijn.be/stops/301342", "https://data.delijn.be/stops/301388"], ["https://data.delijn.be/stops/400423", "https://data.delijn.be/stops/401600"], ["https://data.delijn.be/stops/501645", "https://data.delijn.be/stops/506645"], ["https://data.delijn.be/stops/507528", "https://data.delijn.be/stops/507548"], ["https://data.delijn.be/stops/307202", "https://data.delijn.be/stops/307607"], ["https://data.delijn.be/stops/304574", "https://data.delijn.be/stops/304576"], ["https://data.delijn.be/stops/408946", "https://data.delijn.be/stops/408966"], ["https://data.delijn.be/stops/200007", "https://data.delijn.be/stops/210070"], ["https://data.delijn.be/stops/202279", "https://data.delijn.be/stops/203669"], ["https://data.delijn.be/stops/308170", "https://data.delijn.be/stops/308171"], ["https://data.delijn.be/stops/203540", "https://data.delijn.be/stops/210009"], ["https://data.delijn.be/stops/102468", "https://data.delijn.be/stops/400274"], ["https://data.delijn.be/stops/201352", "https://data.delijn.be/stops/202399"], ["https://data.delijn.be/stops/408941", "https://data.delijn.be/stops/409245"], ["https://data.delijn.be/stops/508546", "https://data.delijn.be/stops/508602"], ["https://data.delijn.be/stops/400770", "https://data.delijn.be/stops/405267"], ["https://data.delijn.be/stops/208298", "https://data.delijn.be/stops/208317"], ["https://data.delijn.be/stops/401130", "https://data.delijn.be/stops/401131"], ["https://data.delijn.be/stops/405045", "https://data.delijn.be/stops/408154"], ["https://data.delijn.be/stops/204017", "https://data.delijn.be/stops/204710"], ["https://data.delijn.be/stops/207758", "https://data.delijn.be/stops/209185"], ["https://data.delijn.be/stops/508294", "https://data.delijn.be/stops/509842"], ["https://data.delijn.be/stops/102448", "https://data.delijn.be/stops/108140"], ["https://data.delijn.be/stops/405659", "https://data.delijn.be/stops/408746"], ["https://data.delijn.be/stops/404138", "https://data.delijn.be/stops/404139"], ["https://data.delijn.be/stops/406313", "https://data.delijn.be/stops/406406"], ["https://data.delijn.be/stops/402356", "https://data.delijn.be/stops/410149"], ["https://data.delijn.be/stops/108451", "https://data.delijn.be/stops/108452"], ["https://data.delijn.be/stops/302167", "https://data.delijn.be/stops/307114"], ["https://data.delijn.be/stops/208193", "https://data.delijn.be/stops/209148"], ["https://data.delijn.be/stops/502011", "https://data.delijn.be/stops/505742"], ["https://data.delijn.be/stops/307305", "https://data.delijn.be/stops/307306"], ["https://data.delijn.be/stops/202581", "https://data.delijn.be/stops/203581"], ["https://data.delijn.be/stops/402291", "https://data.delijn.be/stops/402293"], ["https://data.delijn.be/stops/301504", "https://data.delijn.be/stops/305669"], ["https://data.delijn.be/stops/207012", "https://data.delijn.be/stops/207989"], ["https://data.delijn.be/stops/501633", "https://data.delijn.be/stops/506422"], ["https://data.delijn.be/stops/101661", "https://data.delijn.be/stops/104932"], ["https://data.delijn.be/stops/200080", "https://data.delijn.be/stops/206933"], ["https://data.delijn.be/stops/108069", "https://data.delijn.be/stops/108457"], ["https://data.delijn.be/stops/302856", "https://data.delijn.be/stops/303076"], ["https://data.delijn.be/stops/101779", "https://data.delijn.be/stops/107710"], ["https://data.delijn.be/stops/401558", "https://data.delijn.be/stops/402034"], ["https://data.delijn.be/stops/105342", "https://data.delijn.be/stops/109618"], ["https://data.delijn.be/stops/206455", "https://data.delijn.be/stops/207413"], ["https://data.delijn.be/stops/109322", "https://data.delijn.be/stops/109323"], ["https://data.delijn.be/stops/208562", "https://data.delijn.be/stops/208596"], ["https://data.delijn.be/stops/203078", "https://data.delijn.be/stops/203447"], ["https://data.delijn.be/stops/204464", "https://data.delijn.be/stops/205463"], ["https://data.delijn.be/stops/200912", "https://data.delijn.be/stops/202690"], ["https://data.delijn.be/stops/204132", "https://data.delijn.be/stops/204133"], ["https://data.delijn.be/stops/402938", "https://data.delijn.be/stops/404073"], ["https://data.delijn.be/stops/407647", "https://data.delijn.be/stops/407676"], ["https://data.delijn.be/stops/107490", "https://data.delijn.be/stops/109382"], ["https://data.delijn.be/stops/505269", "https://data.delijn.be/stops/505271"], ["https://data.delijn.be/stops/402224", "https://data.delijn.be/stops/402225"], ["https://data.delijn.be/stops/403080", "https://data.delijn.be/stops/403274"], ["https://data.delijn.be/stops/300158", "https://data.delijn.be/stops/308789"], ["https://data.delijn.be/stops/203823", "https://data.delijn.be/stops/209716"], ["https://data.delijn.be/stops/102335", "https://data.delijn.be/stops/108830"], ["https://data.delijn.be/stops/201467", "https://data.delijn.be/stops/203403"], ["https://data.delijn.be/stops/305176", "https://data.delijn.be/stops/306967"], ["https://data.delijn.be/stops/407004", "https://data.delijn.be/stops/407005"], ["https://data.delijn.be/stops/209219", "https://data.delijn.be/stops/209220"], ["https://data.delijn.be/stops/101217", "https://data.delijn.be/stops/107943"], ["https://data.delijn.be/stops/302334", "https://data.delijn.be/stops/308119"], ["https://data.delijn.be/stops/407634", "https://data.delijn.be/stops/410298"], ["https://data.delijn.be/stops/301331", "https://data.delijn.be/stops/301388"], ["https://data.delijn.be/stops/400076", "https://data.delijn.be/stops/407025"], ["https://data.delijn.be/stops/502043", "https://data.delijn.be/stops/502591"], ["https://data.delijn.be/stops/200004", "https://data.delijn.be/stops/201994"], ["https://data.delijn.be/stops/404530", "https://data.delijn.be/stops/406527"], ["https://data.delijn.be/stops/202152", "https://data.delijn.be/stops/203170"], ["https://data.delijn.be/stops/203057", "https://data.delijn.be/stops/210073"], ["https://data.delijn.be/stops/102091", "https://data.delijn.be/stops/106805"], ["https://data.delijn.be/stops/303947", "https://data.delijn.be/stops/303957"], ["https://data.delijn.be/stops/208173", "https://data.delijn.be/stops/208759"], ["https://data.delijn.be/stops/107200", "https://data.delijn.be/stops/107602"], ["https://data.delijn.be/stops/502761", "https://data.delijn.be/stops/505648"], ["https://data.delijn.be/stops/504020", "https://data.delijn.be/stops/505204"], ["https://data.delijn.be/stops/206880", "https://data.delijn.be/stops/207915"], ["https://data.delijn.be/stops/503966", "https://data.delijn.be/stops/508572"], ["https://data.delijn.be/stops/407888", "https://data.delijn.be/stops/408178"], ["https://data.delijn.be/stops/208615", "https://data.delijn.be/stops/209615"], ["https://data.delijn.be/stops/400242", "https://data.delijn.be/stops/400244"], ["https://data.delijn.be/stops/105406", "https://data.delijn.be/stops/109850"], ["https://data.delijn.be/stops/502226", "https://data.delijn.be/stops/505145"], ["https://data.delijn.be/stops/401053", "https://data.delijn.be/stops/403749"], ["https://data.delijn.be/stops/502921", "https://data.delijn.be/stops/507619"], ["https://data.delijn.be/stops/306902", "https://data.delijn.be/stops/308094"], ["https://data.delijn.be/stops/401798", "https://data.delijn.be/stops/410356"], ["https://data.delijn.be/stops/302284", "https://data.delijn.be/stops/302288"], ["https://data.delijn.be/stops/504060", "https://data.delijn.be/stops/509058"], ["https://data.delijn.be/stops/108967", "https://data.delijn.be/stops/108969"], ["https://data.delijn.be/stops/403340", "https://data.delijn.be/stops/403521"], ["https://data.delijn.be/stops/504800", "https://data.delijn.be/stops/504804"], ["https://data.delijn.be/stops/505105", "https://data.delijn.be/stops/508117"], ["https://data.delijn.be/stops/401063", "https://data.delijn.be/stops/407104"], ["https://data.delijn.be/stops/403030", "https://data.delijn.be/stops/403086"], ["https://data.delijn.be/stops/408497", "https://data.delijn.be/stops/408608"], ["https://data.delijn.be/stops/500022", "https://data.delijn.be/stops/506195"], ["https://data.delijn.be/stops/502311", "https://data.delijn.be/stops/505677"], ["https://data.delijn.be/stops/507552", "https://data.delijn.be/stops/507557"], ["https://data.delijn.be/stops/206834", "https://data.delijn.be/stops/207832"], ["https://data.delijn.be/stops/102533", "https://data.delijn.be/stops/405723"], ["https://data.delijn.be/stops/505669", "https://data.delijn.be/stops/507176"], ["https://data.delijn.be/stops/402840", "https://data.delijn.be/stops/402892"], ["https://data.delijn.be/stops/502239", "https://data.delijn.be/stops/507735"], ["https://data.delijn.be/stops/401086", "https://data.delijn.be/stops/401094"], ["https://data.delijn.be/stops/211060", "https://data.delijn.be/stops/211061"], ["https://data.delijn.be/stops/504175", "https://data.delijn.be/stops/504477"], ["https://data.delijn.be/stops/505501", "https://data.delijn.be/stops/505603"], ["https://data.delijn.be/stops/206056", "https://data.delijn.be/stops/217003"], ["https://data.delijn.be/stops/500009", "https://data.delijn.be/stops/505437"], ["https://data.delijn.be/stops/106226", "https://data.delijn.be/stops/109131"], ["https://data.delijn.be/stops/504202", "https://data.delijn.be/stops/509262"], ["https://data.delijn.be/stops/304421", "https://data.delijn.be/stops/307393"], ["https://data.delijn.be/stops/101358", "https://data.delijn.be/stops/102189"], ["https://data.delijn.be/stops/101537", "https://data.delijn.be/stops/103014"], ["https://data.delijn.be/stops/408003", "https://data.delijn.be/stops/308198"], ["https://data.delijn.be/stops/503063", "https://data.delijn.be/stops/505381"], ["https://data.delijn.be/stops/202625", "https://data.delijn.be/stops/203624"], ["https://data.delijn.be/stops/203928", "https://data.delijn.be/stops/204810"], ["https://data.delijn.be/stops/103209", "https://data.delijn.be/stops/107790"], ["https://data.delijn.be/stops/206217", "https://data.delijn.be/stops/206817"], ["https://data.delijn.be/stops/102453", "https://data.delijn.be/stops/108318"], ["https://data.delijn.be/stops/202361", "https://data.delijn.be/stops/210852"], ["https://data.delijn.be/stops/206336", "https://data.delijn.be/stops/206365"], ["https://data.delijn.be/stops/102302", "https://data.delijn.be/stops/109505"], ["https://data.delijn.be/stops/301041", "https://data.delijn.be/stops/301059"], ["https://data.delijn.be/stops/302473", "https://data.delijn.be/stops/302476"], ["https://data.delijn.be/stops/202431", "https://data.delijn.be/stops/203438"], ["https://data.delijn.be/stops/202259", "https://data.delijn.be/stops/203104"], ["https://data.delijn.be/stops/502418", "https://data.delijn.be/stops/502749"], ["https://data.delijn.be/stops/400956", "https://data.delijn.be/stops/406875"], ["https://data.delijn.be/stops/106961", "https://data.delijn.be/stops/106963"], ["https://data.delijn.be/stops/303343", "https://data.delijn.be/stops/304713"], ["https://data.delijn.be/stops/207294", "https://data.delijn.be/stops/207315"], ["https://data.delijn.be/stops/105706", "https://data.delijn.be/stops/106069"], ["https://data.delijn.be/stops/505918", "https://data.delijn.be/stops/509242"], ["https://data.delijn.be/stops/200912", "https://data.delijn.be/stops/203260"], ["https://data.delijn.be/stops/504231", "https://data.delijn.be/stops/504235"], ["https://data.delijn.be/stops/202272", "https://data.delijn.be/stops/203661"], ["https://data.delijn.be/stops/400077", "https://data.delijn.be/stops/400141"], ["https://data.delijn.be/stops/205983", "https://data.delijn.be/stops/209431"], ["https://data.delijn.be/stops/406112", "https://data.delijn.be/stops/406113"], ["https://data.delijn.be/stops/410294", "https://data.delijn.be/stops/410295"], ["https://data.delijn.be/stops/200437", "https://data.delijn.be/stops/201135"], ["https://data.delijn.be/stops/301027", "https://data.delijn.be/stops/301034"], ["https://data.delijn.be/stops/101880", "https://data.delijn.be/stops/104685"], ["https://data.delijn.be/stops/305377", "https://data.delijn.be/stops/305390"], ["https://data.delijn.be/stops/407740", "https://data.delijn.be/stops/407741"], ["https://data.delijn.be/stops/409051", "https://data.delijn.be/stops/409211"], ["https://data.delijn.be/stops/301996", "https://data.delijn.be/stops/302001"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/305344"], ["https://data.delijn.be/stops/402526", "https://data.delijn.be/stops/402545"], ["https://data.delijn.be/stops/300553", "https://data.delijn.be/stops/307859"], ["https://data.delijn.be/stops/206348", "https://data.delijn.be/stops/207348"], ["https://data.delijn.be/stops/301821", "https://data.delijn.be/stops/301823"], ["https://data.delijn.be/stops/302252", "https://data.delijn.be/stops/306371"], ["https://data.delijn.be/stops/200972", "https://data.delijn.be/stops/203862"], ["https://data.delijn.be/stops/203047", "https://data.delijn.be/stops/203246"], ["https://data.delijn.be/stops/303364", "https://data.delijn.be/stops/303365"], ["https://data.delijn.be/stops/102131", "https://data.delijn.be/stops/105723"], ["https://data.delijn.be/stops/200732", "https://data.delijn.be/stops/203625"], ["https://data.delijn.be/stops/402717", "https://data.delijn.be/stops/402720"], ["https://data.delijn.be/stops/102857", "https://data.delijn.be/stops/204624"], ["https://data.delijn.be/stops/301467", "https://data.delijn.be/stops/305664"], ["https://data.delijn.be/stops/207706", "https://data.delijn.be/stops/207742"], ["https://data.delijn.be/stops/404333", "https://data.delijn.be/stops/404949"], ["https://data.delijn.be/stops/502058", "https://data.delijn.be/stops/507441"], ["https://data.delijn.be/stops/407337", "https://data.delijn.be/stops/409778"], ["https://data.delijn.be/stops/101574", "https://data.delijn.be/stops/105468"], ["https://data.delijn.be/stops/102419", "https://data.delijn.be/stops/102421"], ["https://data.delijn.be/stops/108534", "https://data.delijn.be/stops/108614"], ["https://data.delijn.be/stops/400300", "https://data.delijn.be/stops/400302"], ["https://data.delijn.be/stops/305840", "https://data.delijn.be/stops/308619"], ["https://data.delijn.be/stops/501489", "https://data.delijn.be/stops/506489"], ["https://data.delijn.be/stops/406527", "https://data.delijn.be/stops/409261"], ["https://data.delijn.be/stops/103718", "https://data.delijn.be/stops/108810"], ["https://data.delijn.be/stops/200974", "https://data.delijn.be/stops/209625"], ["https://data.delijn.be/stops/105711", "https://data.delijn.be/stops/106067"], ["https://data.delijn.be/stops/404398", "https://data.delijn.be/stops/404400"], ["https://data.delijn.be/stops/502611", "https://data.delijn.be/stops/509880"], ["https://data.delijn.be/stops/300446", "https://data.delijn.be/stops/301258"], ["https://data.delijn.be/stops/201397", "https://data.delijn.be/stops/209703"], ["https://data.delijn.be/stops/300891", "https://data.delijn.be/stops/301793"], ["https://data.delijn.be/stops/304692", "https://data.delijn.be/stops/307254"], ["https://data.delijn.be/stops/107300", "https://data.delijn.be/stops/109025"], ["https://data.delijn.be/stops/507492", "https://data.delijn.be/stops/507506"], ["https://data.delijn.be/stops/301862", "https://data.delijn.be/stops/301863"], ["https://data.delijn.be/stops/504114", "https://data.delijn.be/stops/509114"], ["https://data.delijn.be/stops/305592", "https://data.delijn.be/stops/305593"], ["https://data.delijn.be/stops/208300", "https://data.delijn.be/stops/209375"], ["https://data.delijn.be/stops/405822", "https://data.delijn.be/stops/409416"], ["https://data.delijn.be/stops/400500", "https://data.delijn.be/stops/402641"], ["https://data.delijn.be/stops/208844", "https://data.delijn.be/stops/210113"], ["https://data.delijn.be/stops/504941", "https://data.delijn.be/stops/509941"], ["https://data.delijn.be/stops/207991", "https://data.delijn.be/stops/306973"], ["https://data.delijn.be/stops/502492", "https://data.delijn.be/stops/502506"], ["https://data.delijn.be/stops/102249", "https://data.delijn.be/stops/105899"], ["https://data.delijn.be/stops/403037", "https://data.delijn.be/stops/403863"], ["https://data.delijn.be/stops/505707", "https://data.delijn.be/stops/509226"], ["https://data.delijn.be/stops/103378", "https://data.delijn.be/stops/103925"], ["https://data.delijn.be/stops/507292", "https://data.delijn.be/stops/507295"], ["https://data.delijn.be/stops/503570", "https://data.delijn.be/stops/508567"], ["https://data.delijn.be/stops/200027", "https://data.delijn.be/stops/201026"], ["https://data.delijn.be/stops/400374", "https://data.delijn.be/stops/400436"], ["https://data.delijn.be/stops/502035", "https://data.delijn.be/stops/507627"], ["https://data.delijn.be/stops/503135", "https://data.delijn.be/stops/506945"], ["https://data.delijn.be/stops/406042", "https://data.delijn.be/stops/407779"], ["https://data.delijn.be/stops/406551", "https://data.delijn.be/stops/406566"], ["https://data.delijn.be/stops/201304", "https://data.delijn.be/stops/201601"], ["https://data.delijn.be/stops/206085", "https://data.delijn.be/stops/207086"], ["https://data.delijn.be/stops/101167", "https://data.delijn.be/stops/101310"], ["https://data.delijn.be/stops/408812", "https://data.delijn.be/stops/408815"], ["https://data.delijn.be/stops/206724", "https://data.delijn.be/stops/206734"], ["https://data.delijn.be/stops/406929", "https://data.delijn.be/stops/406946"], ["https://data.delijn.be/stops/107968", "https://data.delijn.be/stops/107969"], ["https://data.delijn.be/stops/503039", "https://data.delijn.be/stops/503042"], ["https://data.delijn.be/stops/406198", "https://data.delijn.be/stops/406201"], ["https://data.delijn.be/stops/305379", "https://data.delijn.be/stops/305418"], ["https://data.delijn.be/stops/502140", "https://data.delijn.be/stops/502767"], ["https://data.delijn.be/stops/301658", "https://data.delijn.be/stops/306301"], ["https://data.delijn.be/stops/304443", "https://data.delijn.be/stops/304463"], ["https://data.delijn.be/stops/404979", "https://data.delijn.be/stops/410062"], ["https://data.delijn.be/stops/206152", "https://data.delijn.be/stops/207907"], ["https://data.delijn.be/stops/300771", "https://data.delijn.be/stops/302402"], ["https://data.delijn.be/stops/200290", "https://data.delijn.be/stops/211082"], ["https://data.delijn.be/stops/200914", "https://data.delijn.be/stops/203089"], ["https://data.delijn.be/stops/500050", "https://data.delijn.be/stops/500053"], ["https://data.delijn.be/stops/305895", "https://data.delijn.be/stops/305896"], ["https://data.delijn.be/stops/106416", "https://data.delijn.be/stops/106418"], ["https://data.delijn.be/stops/108062", "https://data.delijn.be/stops/108066"], ["https://data.delijn.be/stops/503305", "https://data.delijn.be/stops/503310"], ["https://data.delijn.be/stops/101754", "https://data.delijn.be/stops/101755"], ["https://data.delijn.be/stops/304822", "https://data.delijn.be/stops/304825"], ["https://data.delijn.be/stops/200416", "https://data.delijn.be/stops/201010"], ["https://data.delijn.be/stops/205711", "https://data.delijn.be/stops/205722"], ["https://data.delijn.be/stops/408340", "https://data.delijn.be/stops/408344"], ["https://data.delijn.be/stops/400586", "https://data.delijn.be/stops/400587"], ["https://data.delijn.be/stops/405321", "https://data.delijn.be/stops/405327"], ["https://data.delijn.be/stops/207047", "https://data.delijn.be/stops/207801"], ["https://data.delijn.be/stops/408828", "https://data.delijn.be/stops/408829"], ["https://data.delijn.be/stops/207530", "https://data.delijn.be/stops/207531"], ["https://data.delijn.be/stops/403292", "https://data.delijn.be/stops/403405"], ["https://data.delijn.be/stops/504382", "https://data.delijn.be/stops/509381"], ["https://data.delijn.be/stops/409361", "https://data.delijn.be/stops/409440"], ["https://data.delijn.be/stops/103284", "https://data.delijn.be/stops/106129"], ["https://data.delijn.be/stops/301022", "https://data.delijn.be/stops/301049"], ["https://data.delijn.be/stops/504589", "https://data.delijn.be/stops/505537"], ["https://data.delijn.be/stops/201479", "https://data.delijn.be/stops/210072"], ["https://data.delijn.be/stops/101776", "https://data.delijn.be/stops/107719"], ["https://data.delijn.be/stops/503095", "https://data.delijn.be/stops/508974"], ["https://data.delijn.be/stops/503243", "https://data.delijn.be/stops/509766"], ["https://data.delijn.be/stops/201327", "https://data.delijn.be/stops/202200"], ["https://data.delijn.be/stops/405445", "https://data.delijn.be/stops/408795"], ["https://data.delijn.be/stops/509412", "https://data.delijn.be/stops/509434"], ["https://data.delijn.be/stops/501733", "https://data.delijn.be/stops/506690"], ["https://data.delijn.be/stops/105329", "https://data.delijn.be/stops/204025"], ["https://data.delijn.be/stops/400756", "https://data.delijn.be/stops/409568"], ["https://data.delijn.be/stops/403378", "https://data.delijn.be/stops/410220"], ["https://data.delijn.be/stops/300365", "https://data.delijn.be/stops/300369"], ["https://data.delijn.be/stops/204495", "https://data.delijn.be/stops/204530"], ["https://data.delijn.be/stops/408571", "https://data.delijn.be/stops/408788"], ["https://data.delijn.be/stops/301072", "https://data.delijn.be/stops/301073"], ["https://data.delijn.be/stops/108610", "https://data.delijn.be/stops/109085"], ["https://data.delijn.be/stops/206069", "https://data.delijn.be/stops/206917"], ["https://data.delijn.be/stops/503571", "https://data.delijn.be/stops/508556"], ["https://data.delijn.be/stops/301557", "https://data.delijn.be/stops/308088"], ["https://data.delijn.be/stops/201271", "https://data.delijn.be/stops/201371"], ["https://data.delijn.be/stops/204259", "https://data.delijn.be/stops/204466"], ["https://data.delijn.be/stops/501050", "https://data.delijn.be/stops/507728"], ["https://data.delijn.be/stops/203731", "https://data.delijn.be/stops/203733"], ["https://data.delijn.be/stops/504787", "https://data.delijn.be/stops/508475"], ["https://data.delijn.be/stops/400985", "https://data.delijn.be/stops/407179"], ["https://data.delijn.be/stops/503267", "https://data.delijn.be/stops/508274"], ["https://data.delijn.be/stops/505096", "https://data.delijn.be/stops/505125"], ["https://data.delijn.be/stops/101833", "https://data.delijn.be/stops/108236"], ["https://data.delijn.be/stops/206112", "https://data.delijn.be/stops/207906"], ["https://data.delijn.be/stops/503450", "https://data.delijn.be/stops/508451"], ["https://data.delijn.be/stops/206182", "https://data.delijn.be/stops/207184"], ["https://data.delijn.be/stops/206038", "https://data.delijn.be/stops/207216"], ["https://data.delijn.be/stops/304630", "https://data.delijn.be/stops/306171"], ["https://data.delijn.be/stops/108553", "https://data.delijn.be/stops/108556"], ["https://data.delijn.be/stops/501046", "https://data.delijn.be/stops/501048"], ["https://data.delijn.be/stops/300880", "https://data.delijn.be/stops/301811"], ["https://data.delijn.be/stops/202687", "https://data.delijn.be/stops/203687"], ["https://data.delijn.be/stops/204768", "https://data.delijn.be/stops/205398"], ["https://data.delijn.be/stops/201966", "https://data.delijn.be/stops/208952"], ["https://data.delijn.be/stops/303358", "https://data.delijn.be/stops/307135"], ["https://data.delijn.be/stops/404190", "https://data.delijn.be/stops/410213"], ["https://data.delijn.be/stops/206691", "https://data.delijn.be/stops/207873"], ["https://data.delijn.be/stops/200301", "https://data.delijn.be/stops/201946"], ["https://data.delijn.be/stops/201101", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/109495", "https://data.delijn.be/stops/109499"], ["https://data.delijn.be/stops/503503", "https://data.delijn.be/stops/508500"], ["https://data.delijn.be/stops/102086", "https://data.delijn.be/stops/109743"], ["https://data.delijn.be/stops/304833", "https://data.delijn.be/stops/304876"], ["https://data.delijn.be/stops/206644", "https://data.delijn.be/stops/207645"], ["https://data.delijn.be/stops/400332", "https://data.delijn.be/stops/400333"], ["https://data.delijn.be/stops/402524", "https://data.delijn.be/stops/402601"], ["https://data.delijn.be/stops/300074", "https://data.delijn.be/stops/304647"], ["https://data.delijn.be/stops/509059", "https://data.delijn.be/stops/509524"], ["https://data.delijn.be/stops/403619", "https://data.delijn.be/stops/403649"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/506170"], ["https://data.delijn.be/stops/504404", "https://data.delijn.be/stops/509416"], ["https://data.delijn.be/stops/201389", "https://data.delijn.be/stops/201396"], ["https://data.delijn.be/stops/105170", "https://data.delijn.be/stops/107214"], ["https://data.delijn.be/stops/305266", "https://data.delijn.be/stops/305329"], ["https://data.delijn.be/stops/305066", "https://data.delijn.be/stops/305067"], ["https://data.delijn.be/stops/509794", "https://data.delijn.be/stops/509795"], ["https://data.delijn.be/stops/200172", "https://data.delijn.be/stops/201172"], ["https://data.delijn.be/stops/200739", "https://data.delijn.be/stops/202600"], ["https://data.delijn.be/stops/300822", "https://data.delijn.be/stops/301792"], ["https://data.delijn.be/stops/106367", "https://data.delijn.be/stops/106369"], ["https://data.delijn.be/stops/304905", "https://data.delijn.be/stops/306408"], ["https://data.delijn.be/stops/502542", "https://data.delijn.be/stops/505090"], ["https://data.delijn.be/stops/301007", "https://data.delijn.be/stops/304641"], ["https://data.delijn.be/stops/305384", "https://data.delijn.be/stops/305390"], ["https://data.delijn.be/stops/109843", "https://data.delijn.be/stops/109844"], ["https://data.delijn.be/stops/303238", "https://data.delijn.be/stops/306707"], ["https://data.delijn.be/stops/502031", "https://data.delijn.be/stops/502055"], ["https://data.delijn.be/stops/307732", "https://data.delijn.be/stops/307811"], ["https://data.delijn.be/stops/402496", "https://data.delijn.be/stops/402498"], ["https://data.delijn.be/stops/505410", "https://data.delijn.be/stops/509050"], ["https://data.delijn.be/stops/403039", "https://data.delijn.be/stops/404706"], ["https://data.delijn.be/stops/102224", "https://data.delijn.be/stops/102226"], ["https://data.delijn.be/stops/503239", "https://data.delijn.be/stops/503262"], ["https://data.delijn.be/stops/101939", "https://data.delijn.be/stops/105100"], ["https://data.delijn.be/stops/200360", "https://data.delijn.be/stops/209908"], ["https://data.delijn.be/stops/501100", "https://data.delijn.be/stops/505148"], ["https://data.delijn.be/stops/103059", "https://data.delijn.be/stops/103061"], ["https://data.delijn.be/stops/304126", "https://data.delijn.be/stops/307551"], ["https://data.delijn.be/stops/101484", "https://data.delijn.be/stops/108744"], ["https://data.delijn.be/stops/105868", "https://data.delijn.be/stops/105869"], ["https://data.delijn.be/stops/400703", "https://data.delijn.be/stops/404649"], ["https://data.delijn.be/stops/210011", "https://data.delijn.be/stops/502277"], ["https://data.delijn.be/stops/207864", "https://data.delijn.be/stops/208457"], ["https://data.delijn.be/stops/301327", "https://data.delijn.be/stops/306653"], ["https://data.delijn.be/stops/300774", "https://data.delijn.be/stops/300786"], ["https://data.delijn.be/stops/302791", "https://data.delijn.be/stops/307456"], ["https://data.delijn.be/stops/106099", "https://data.delijn.be/stops/106147"], ["https://data.delijn.be/stops/403125", "https://data.delijn.be/stops/403129"], ["https://data.delijn.be/stops/308516", "https://data.delijn.be/stops/308690"], ["https://data.delijn.be/stops/306940", "https://data.delijn.be/stops/307945"], ["https://data.delijn.be/stops/206055", "https://data.delijn.be/stops/206297"], ["https://data.delijn.be/stops/107887", "https://data.delijn.be/stops/107891"], ["https://data.delijn.be/stops/305532", "https://data.delijn.be/stops/307044"], ["https://data.delijn.be/stops/206915", "https://data.delijn.be/stops/207354"], ["https://data.delijn.be/stops/107560", "https://data.delijn.be/stops/109853"], ["https://data.delijn.be/stops/406740", "https://data.delijn.be/stops/406741"], ["https://data.delijn.be/stops/103478", "https://data.delijn.be/stops/109219"], ["https://data.delijn.be/stops/102280", "https://data.delijn.be/stops/103352"], ["https://data.delijn.be/stops/200395", "https://data.delijn.be/stops/209496"], ["https://data.delijn.be/stops/202298", "https://data.delijn.be/stops/203279"], ["https://data.delijn.be/stops/403609", "https://data.delijn.be/stops/403612"], ["https://data.delijn.be/stops/408235", "https://data.delijn.be/stops/408308"], ["https://data.delijn.be/stops/200019", "https://data.delijn.be/stops/201019"], ["https://data.delijn.be/stops/405706", "https://data.delijn.be/stops/405720"], ["https://data.delijn.be/stops/209270", "https://data.delijn.be/stops/209271"], ["https://data.delijn.be/stops/204193", "https://data.delijn.be/stops/204230"], ["https://data.delijn.be/stops/207396", "https://data.delijn.be/stops/207397"], ["https://data.delijn.be/stops/105350", "https://data.delijn.be/stops/105780"], ["https://data.delijn.be/stops/303643", "https://data.delijn.be/stops/304522"], ["https://data.delijn.be/stops/400775", "https://data.delijn.be/stops/403580"], ["https://data.delijn.be/stops/503178", "https://data.delijn.be/stops/508264"], ["https://data.delijn.be/stops/200269", "https://data.delijn.be/stops/201083"], ["https://data.delijn.be/stops/401832", "https://data.delijn.be/stops/401833"], ["https://data.delijn.be/stops/206236", "https://data.delijn.be/stops/207236"], ["https://data.delijn.be/stops/102075", "https://data.delijn.be/stops/102320"], ["https://data.delijn.be/stops/403493", "https://data.delijn.be/stops/407774"], ["https://data.delijn.be/stops/504368", "https://data.delijn.be/stops/505130"], ["https://data.delijn.be/stops/107542", "https://data.delijn.be/stops/107545"], ["https://data.delijn.be/stops/508524", "https://data.delijn.be/stops/508526"], ["https://data.delijn.be/stops/401838", "https://data.delijn.be/stops/401839"], ["https://data.delijn.be/stops/204191", "https://data.delijn.be/stops/205204"], ["https://data.delijn.be/stops/407621", "https://data.delijn.be/stops/407627"], ["https://data.delijn.be/stops/400213", "https://data.delijn.be/stops/408489"], ["https://data.delijn.be/stops/300415", "https://data.delijn.be/stops/300439"], ["https://data.delijn.be/stops/204425", "https://data.delijn.be/stops/204743"], ["https://data.delijn.be/stops/503897", "https://data.delijn.be/stops/508897"], ["https://data.delijn.be/stops/105034", "https://data.delijn.be/stops/305831"], ["https://data.delijn.be/stops/400437", "https://data.delijn.be/stops/400438"], ["https://data.delijn.be/stops/206267", "https://data.delijn.be/stops/207015"], ["https://data.delijn.be/stops/205239", "https://data.delijn.be/stops/207896"], ["https://data.delijn.be/stops/106750", "https://data.delijn.be/stops/106751"], ["https://data.delijn.be/stops/202938", "https://data.delijn.be/stops/203816"], ["https://data.delijn.be/stops/407687", "https://data.delijn.be/stops/407699"], ["https://data.delijn.be/stops/303368", "https://data.delijn.be/stops/307137"], ["https://data.delijn.be/stops/302708", "https://data.delijn.be/stops/308835"], ["https://data.delijn.be/stops/209251", "https://data.delijn.be/stops/209252"], ["https://data.delijn.be/stops/203187", "https://data.delijn.be/stops/203188"], ["https://data.delijn.be/stops/403053", "https://data.delijn.be/stops/403057"], ["https://data.delijn.be/stops/104429", "https://data.delijn.be/stops/107369"], ["https://data.delijn.be/stops/209560", "https://data.delijn.be/stops/209690"], ["https://data.delijn.be/stops/202825", "https://data.delijn.be/stops/203824"], ["https://data.delijn.be/stops/102025", "https://data.delijn.be/stops/108755"], ["https://data.delijn.be/stops/206130", "https://data.delijn.be/stops/206139"], ["https://data.delijn.be/stops/507822", "https://data.delijn.be/stops/507917"], ["https://data.delijn.be/stops/200965", "https://data.delijn.be/stops/203928"], ["https://data.delijn.be/stops/306591", "https://data.delijn.be/stops/308441"], ["https://data.delijn.be/stops/400053", "https://data.delijn.be/stops/409160"], ["https://data.delijn.be/stops/301635", "https://data.delijn.be/stops/301639"], ["https://data.delijn.be/stops/106201", "https://data.delijn.be/stops/107455"], ["https://data.delijn.be/stops/207941", "https://data.delijn.be/stops/209621"], ["https://data.delijn.be/stops/503354", "https://data.delijn.be/stops/503420"], ["https://data.delijn.be/stops/107882", "https://data.delijn.be/stops/107884"], ["https://data.delijn.be/stops/504648", "https://data.delijn.be/stops/509647"], ["https://data.delijn.be/stops/108748", "https://data.delijn.be/stops/108749"], ["https://data.delijn.be/stops/305973", "https://data.delijn.be/stops/305974"], ["https://data.delijn.be/stops/504490", "https://data.delijn.be/stops/504497"], ["https://data.delijn.be/stops/206174", "https://data.delijn.be/stops/207010"], ["https://data.delijn.be/stops/300133", "https://data.delijn.be/stops/304999"], ["https://data.delijn.be/stops/505342", "https://data.delijn.be/stops/509637"], ["https://data.delijn.be/stops/404838", "https://data.delijn.be/stops/409347"], ["https://data.delijn.be/stops/500012", "https://data.delijn.be/stops/507375"], ["https://data.delijn.be/stops/503606", "https://data.delijn.be/stops/505845"], ["https://data.delijn.be/stops/204128", "https://data.delijn.be/stops/205129"], ["https://data.delijn.be/stops/409030", "https://data.delijn.be/stops/409045"], ["https://data.delijn.be/stops/303764", "https://data.delijn.be/stops/303766"], ["https://data.delijn.be/stops/306367", "https://data.delijn.be/stops/307592"], ["https://data.delijn.be/stops/304420", "https://data.delijn.be/stops/307420"], ["https://data.delijn.be/stops/202743", "https://data.delijn.be/stops/202812"], ["https://data.delijn.be/stops/502735", "https://data.delijn.be/stops/507735"], ["https://data.delijn.be/stops/302130", "https://data.delijn.be/stops/302131"], ["https://data.delijn.be/stops/501156", "https://data.delijn.be/stops/505619"], ["https://data.delijn.be/stops/203582", "https://data.delijn.be/stops/203583"], ["https://data.delijn.be/stops/306560", "https://data.delijn.be/stops/306561"], ["https://data.delijn.be/stops/303379", "https://data.delijn.be/stops/308794"], ["https://data.delijn.be/stops/505319", "https://data.delijn.be/stops/507482"], ["https://data.delijn.be/stops/501319", "https://data.delijn.be/stops/506517"], ["https://data.delijn.be/stops/107413", "https://data.delijn.be/stops/107414"], ["https://data.delijn.be/stops/303460", "https://data.delijn.be/stops/303488"], ["https://data.delijn.be/stops/501776", "https://data.delijn.be/stops/506157"], ["https://data.delijn.be/stops/206101", "https://data.delijn.be/stops/207104"], ["https://data.delijn.be/stops/507289", "https://data.delijn.be/stops/507295"], ["https://data.delijn.be/stops/406729", "https://data.delijn.be/stops/408456"], ["https://data.delijn.be/stops/401342", "https://data.delijn.be/stops/401343"], ["https://data.delijn.be/stops/302184", "https://data.delijn.be/stops/302185"], ["https://data.delijn.be/stops/400915", "https://data.delijn.be/stops/400964"], ["https://data.delijn.be/stops/502148", "https://data.delijn.be/stops/507148"], ["https://data.delijn.be/stops/300907", "https://data.delijn.be/stops/301107"], ["https://data.delijn.be/stops/306924", "https://data.delijn.be/stops/306926"], ["https://data.delijn.be/stops/202109", "https://data.delijn.be/stops/204598"], ["https://data.delijn.be/stops/202525", "https://data.delijn.be/stops/202961"], ["https://data.delijn.be/stops/505687", "https://data.delijn.be/stops/507707"], ["https://data.delijn.be/stops/408354", "https://data.delijn.be/stops/408391"], ["https://data.delijn.be/stops/502166", "https://data.delijn.be/stops/502576"], ["https://data.delijn.be/stops/407399", "https://data.delijn.be/stops/409873"], ["https://data.delijn.be/stops/401402", "https://data.delijn.be/stops/410154"], ["https://data.delijn.be/stops/403144", "https://data.delijn.be/stops/407584"], ["https://data.delijn.be/stops/406051", "https://data.delijn.be/stops/406388"], ["https://data.delijn.be/stops/401759", "https://data.delijn.be/stops/406824"], ["https://data.delijn.be/stops/407800", "https://data.delijn.be/stops/407807"], ["https://data.delijn.be/stops/504575", "https://data.delijn.be/stops/509574"], ["https://data.delijn.be/stops/502050", "https://data.delijn.be/stops/507050"], ["https://data.delijn.be/stops/405885", "https://data.delijn.be/stops/409687"], ["https://data.delijn.be/stops/408565", "https://data.delijn.be/stops/410090"], ["https://data.delijn.be/stops/106623", "https://data.delijn.be/stops/108016"], ["https://data.delijn.be/stops/504780", "https://data.delijn.be/stops/505937"], ["https://data.delijn.be/stops/400330", "https://data.delijn.be/stops/400357"], ["https://data.delijn.be/stops/202333", "https://data.delijn.be/stops/507315"], ["https://data.delijn.be/stops/103115", "https://data.delijn.be/stops/103785"], ["https://data.delijn.be/stops/206602", "https://data.delijn.be/stops/207602"], ["https://data.delijn.be/stops/201153", "https://data.delijn.be/stops/201154"], ["https://data.delijn.be/stops/504524", "https://data.delijn.be/stops/509526"], ["https://data.delijn.be/stops/404770", "https://data.delijn.be/stops/410051"], ["https://data.delijn.be/stops/302437", "https://data.delijn.be/stops/308814"], ["https://data.delijn.be/stops/101975", "https://data.delijn.be/stops/108930"], ["https://data.delijn.be/stops/302209", "https://data.delijn.be/stops/308102"], ["https://data.delijn.be/stops/103684", "https://data.delijn.be/stops/106314"], ["https://data.delijn.be/stops/200265", "https://data.delijn.be/stops/201433"], ["https://data.delijn.be/stops/502748", "https://data.delijn.be/stops/505695"], ["https://data.delijn.be/stops/107459", "https://data.delijn.be/stops/109194"], ["https://data.delijn.be/stops/401012", "https://data.delijn.be/stops/401014"], ["https://data.delijn.be/stops/202869", "https://data.delijn.be/stops/203868"], ["https://data.delijn.be/stops/404880", "https://data.delijn.be/stops/404881"], ["https://data.delijn.be/stops/405868", "https://data.delijn.be/stops/407259"], ["https://data.delijn.be/stops/305406", "https://data.delijn.be/stops/333453"], ["https://data.delijn.be/stops/303440", "https://data.delijn.be/stops/304841"], ["https://data.delijn.be/stops/305692", "https://data.delijn.be/stops/305693"], ["https://data.delijn.be/stops/205152", "https://data.delijn.be/stops/205595"], ["https://data.delijn.be/stops/102529", "https://data.delijn.be/stops/408253"], ["https://data.delijn.be/stops/206758", "https://data.delijn.be/stops/207515"], ["https://data.delijn.be/stops/307910", "https://data.delijn.be/stops/308177"], ["https://data.delijn.be/stops/405325", "https://data.delijn.be/stops/405327"], ["https://data.delijn.be/stops/304813", "https://data.delijn.be/stops/307881"], ["https://data.delijn.be/stops/502262", "https://data.delijn.be/stops/507921"], ["https://data.delijn.be/stops/400781", "https://data.delijn.be/stops/409664"], ["https://data.delijn.be/stops/401340", "https://data.delijn.be/stops/406693"], ["https://data.delijn.be/stops/404506", "https://data.delijn.be/stops/404508"], ["https://data.delijn.be/stops/503163", "https://data.delijn.be/stops/508062"], ["https://data.delijn.be/stops/106117", "https://data.delijn.be/stops/106118"], ["https://data.delijn.be/stops/306141", "https://data.delijn.be/stops/306142"], ["https://data.delijn.be/stops/401876", "https://data.delijn.be/stops/406888"], ["https://data.delijn.be/stops/504865", "https://data.delijn.be/stops/508118"], ["https://data.delijn.be/stops/407241", "https://data.delijn.be/stops/407467"], ["https://data.delijn.be/stops/502453", "https://data.delijn.be/stops/502463"], ["https://data.delijn.be/stops/301456", "https://data.delijn.be/stops/301457"], ["https://data.delijn.be/stops/202303", "https://data.delijn.be/stops/203304"], ["https://data.delijn.be/stops/207944", "https://data.delijn.be/stops/209612"], ["https://data.delijn.be/stops/406804", "https://data.delijn.be/stops/406810"], ["https://data.delijn.be/stops/503829", "https://data.delijn.be/stops/508829"], ["https://data.delijn.be/stops/108029", "https://data.delijn.be/stops/108031"], ["https://data.delijn.be/stops/206911", "https://data.delijn.be/stops/207911"], ["https://data.delijn.be/stops/102753", "https://data.delijn.be/stops/106382"], ["https://data.delijn.be/stops/300234", "https://data.delijn.be/stops/306652"], ["https://data.delijn.be/stops/500022", "https://data.delijn.be/stops/501197"], ["https://data.delijn.be/stops/404680", "https://data.delijn.be/stops/408700"], ["https://data.delijn.be/stops/302106", "https://data.delijn.be/stops/302125"], ["https://data.delijn.be/stops/400195", "https://data.delijn.be/stops/408185"], ["https://data.delijn.be/stops/108768", "https://data.delijn.be/stops/109119"], ["https://data.delijn.be/stops/202362", "https://data.delijn.be/stops/203989"], ["https://data.delijn.be/stops/206107", "https://data.delijn.be/stops/206298"], ["https://data.delijn.be/stops/400814", "https://data.delijn.be/stops/400815"], ["https://data.delijn.be/stops/402628", "https://data.delijn.be/stops/405028"], ["https://data.delijn.be/stops/104002", "https://data.delijn.be/stops/106030"], ["https://data.delijn.be/stops/504430", "https://data.delijn.be/stops/504472"], ["https://data.delijn.be/stops/504174", "https://data.delijn.be/stops/505388"], ["https://data.delijn.be/stops/509386", "https://data.delijn.be/stops/509390"], ["https://data.delijn.be/stops/404376", "https://data.delijn.be/stops/404383"], ["https://data.delijn.be/stops/503022", "https://data.delijn.be/stops/508557"], ["https://data.delijn.be/stops/508720", "https://data.delijn.be/stops/508766"], ["https://data.delijn.be/stops/209464", "https://data.delijn.be/stops/209672"], ["https://data.delijn.be/stops/105224", "https://data.delijn.be/stops/107390"], ["https://data.delijn.be/stops/305209", "https://data.delijn.be/stops/308724"], ["https://data.delijn.be/stops/204182", "https://data.delijn.be/stops/205368"], ["https://data.delijn.be/stops/300579", "https://data.delijn.be/stops/301074"], ["https://data.delijn.be/stops/201553", "https://data.delijn.be/stops/202362"], ["https://data.delijn.be/stops/304365", "https://data.delijn.be/stops/307097"], ["https://data.delijn.be/stops/306652", "https://data.delijn.be/stops/306653"], ["https://data.delijn.be/stops/201719", "https://data.delijn.be/stops/203993"], ["https://data.delijn.be/stops/101670", "https://data.delijn.be/stops/104845"], ["https://data.delijn.be/stops/505103", "https://data.delijn.be/stops/505291"], ["https://data.delijn.be/stops/103627", "https://data.delijn.be/stops/103647"], ["https://data.delijn.be/stops/208475", "https://data.delijn.be/stops/209475"], ["https://data.delijn.be/stops/507380", "https://data.delijn.be/stops/507385"], ["https://data.delijn.be/stops/300295", "https://data.delijn.be/stops/300301"], ["https://data.delijn.be/stops/102139", "https://data.delijn.be/stops/106050"], ["https://data.delijn.be/stops/303415", "https://data.delijn.be/stops/303427"], ["https://data.delijn.be/stops/307528", "https://data.delijn.be/stops/307530"], ["https://data.delijn.be/stops/302133", "https://data.delijn.be/stops/307081"], ["https://data.delijn.be/stops/104517", "https://data.delijn.be/stops/104584"], ["https://data.delijn.be/stops/207629", "https://data.delijn.be/stops/209571"], ["https://data.delijn.be/stops/303106", "https://data.delijn.be/stops/307055"], ["https://data.delijn.be/stops/300050", "https://data.delijn.be/stops/307436"], ["https://data.delijn.be/stops/206438", "https://data.delijn.be/stops/207440"], ["https://data.delijn.be/stops/208360", "https://data.delijn.be/stops/209376"], ["https://data.delijn.be/stops/308251", "https://data.delijn.be/stops/308259"], ["https://data.delijn.be/stops/303983", "https://data.delijn.be/stops/304301"], ["https://data.delijn.be/stops/301807", "https://data.delijn.be/stops/301821"], ["https://data.delijn.be/stops/502498", "https://data.delijn.be/stops/505331"], ["https://data.delijn.be/stops/503746", "https://data.delijn.be/stops/509866"], ["https://data.delijn.be/stops/202395", "https://data.delijn.be/stops/210114"], ["https://data.delijn.be/stops/400808", "https://data.delijn.be/stops/400810"], ["https://data.delijn.be/stops/306279", "https://data.delijn.be/stops/306280"], ["https://data.delijn.be/stops/209625", "https://data.delijn.be/stops/219020"], ["https://data.delijn.be/stops/403825", "https://data.delijn.be/stops/403875"], ["https://data.delijn.be/stops/104270", "https://data.delijn.be/stops/105354"], ["https://data.delijn.be/stops/202469", "https://data.delijn.be/stops/203468"], ["https://data.delijn.be/stops/403395", "https://data.delijn.be/stops/410117"], ["https://data.delijn.be/stops/102245", "https://data.delijn.be/stops/105808"], ["https://data.delijn.be/stops/305652", "https://data.delijn.be/stops/307790"], ["https://data.delijn.be/stops/200031", "https://data.delijn.be/stops/201076"], ["https://data.delijn.be/stops/206502", "https://data.delijn.be/stops/207501"], ["https://data.delijn.be/stops/104659", "https://data.delijn.be/stops/108438"], ["https://data.delijn.be/stops/204178", "https://data.delijn.be/stops/204218"], ["https://data.delijn.be/stops/200465", "https://data.delijn.be/stops/200675"], ["https://data.delijn.be/stops/206706", "https://data.delijn.be/stops/206974"], ["https://data.delijn.be/stops/204986", "https://data.delijn.be/stops/209391"], ["https://data.delijn.be/stops/104270", "https://data.delijn.be/stops/104271"], ["https://data.delijn.be/stops/201401", "https://data.delijn.be/stops/201402"], ["https://data.delijn.be/stops/101804", "https://data.delijn.be/stops/107981"], ["https://data.delijn.be/stops/503662", "https://data.delijn.be/stops/508662"], ["https://data.delijn.be/stops/504619", "https://data.delijn.be/stops/509619"], ["https://data.delijn.be/stops/402713", "https://data.delijn.be/stops/402736"], ["https://data.delijn.be/stops/408533", "https://data.delijn.be/stops/408765"], ["https://data.delijn.be/stops/406644", "https://data.delijn.be/stops/406645"], ["https://data.delijn.be/stops/407040", "https://data.delijn.be/stops/409194"], ["https://data.delijn.be/stops/303126", "https://data.delijn.be/stops/303128"], ["https://data.delijn.be/stops/504151", "https://data.delijn.be/stops/504739"], ["https://data.delijn.be/stops/502461", "https://data.delijn.be/stops/502634"], ["https://data.delijn.be/stops/501559", "https://data.delijn.be/stops/506769"], ["https://data.delijn.be/stops/405828", "https://data.delijn.be/stops/405831"], ["https://data.delijn.be/stops/109062", "https://data.delijn.be/stops/307370"], ["https://data.delijn.be/stops/301855", "https://data.delijn.be/stops/301885"], ["https://data.delijn.be/stops/204395", "https://data.delijn.be/stops/205395"], ["https://data.delijn.be/stops/206646", "https://data.delijn.be/stops/207461"], ["https://data.delijn.be/stops/405765", "https://data.delijn.be/stops/405772"], ["https://data.delijn.be/stops/502206", "https://data.delijn.be/stops/502217"], ["https://data.delijn.be/stops/109281", "https://data.delijn.be/stops/109283"], ["https://data.delijn.be/stops/109286", "https://data.delijn.be/stops/109288"], ["https://data.delijn.be/stops/502255", "https://data.delijn.be/stops/507255"], ["https://data.delijn.be/stops/401576", "https://data.delijn.be/stops/402215"], ["https://data.delijn.be/stops/504536", "https://data.delijn.be/stops/509608"], ["https://data.delijn.be/stops/409662", "https://data.delijn.be/stops/410035"], ["https://data.delijn.be/stops/106797", "https://data.delijn.be/stops/106876"], ["https://data.delijn.be/stops/205026", "https://data.delijn.be/stops/205027"], ["https://data.delijn.be/stops/405895", "https://data.delijn.be/stops/308202"], ["https://data.delijn.be/stops/105979", "https://data.delijn.be/stops/105981"], ["https://data.delijn.be/stops/401438", "https://data.delijn.be/stops/401736"], ["https://data.delijn.be/stops/202452", "https://data.delijn.be/stops/203451"], ["https://data.delijn.be/stops/306207", "https://data.delijn.be/stops/306208"], ["https://data.delijn.be/stops/400689", "https://data.delijn.be/stops/400702"], ["https://data.delijn.be/stops/307862", "https://data.delijn.be/stops/307863"], ["https://data.delijn.be/stops/403739", "https://data.delijn.be/stops/403740"], ["https://data.delijn.be/stops/200149", "https://data.delijn.be/stops/201150"], ["https://data.delijn.be/stops/407658", "https://data.delijn.be/stops/407660"], ["https://data.delijn.be/stops/208517", "https://data.delijn.be/stops/209535"], ["https://data.delijn.be/stops/508635", "https://data.delijn.be/stops/509971"], ["https://data.delijn.be/stops/300201", "https://data.delijn.be/stops/300632"], ["https://data.delijn.be/stops/107741", "https://data.delijn.be/stops/107743"], ["https://data.delijn.be/stops/502728", "https://data.delijn.be/stops/507115"], ["https://data.delijn.be/stops/300048", "https://data.delijn.be/stops/306788"], ["https://data.delijn.be/stops/502275", "https://data.delijn.be/stops/507275"], ["https://data.delijn.be/stops/106192", "https://data.delijn.be/stops/107440"], ["https://data.delijn.be/stops/204514", "https://data.delijn.be/stops/205514"], ["https://data.delijn.be/stops/401046", "https://data.delijn.be/stops/401047"], ["https://data.delijn.be/stops/405615", "https://data.delijn.be/stops/407153"], ["https://data.delijn.be/stops/504275", "https://data.delijn.be/stops/504689"], ["https://data.delijn.be/stops/506296", "https://data.delijn.be/stops/506315"], ["https://data.delijn.be/stops/200905", "https://data.delijn.be/stops/200932"], ["https://data.delijn.be/stops/407089", "https://data.delijn.be/stops/409498"], ["https://data.delijn.be/stops/500944", "https://data.delijn.be/stops/504685"], ["https://data.delijn.be/stops/109194", "https://data.delijn.be/stops/109228"], ["https://data.delijn.be/stops/300245", "https://data.delijn.be/stops/300273"], ["https://data.delijn.be/stops/500950", "https://data.delijn.be/stops/504741"], ["https://data.delijn.be/stops/200430", "https://data.delijn.be/stops/200432"], ["https://data.delijn.be/stops/504949", "https://data.delijn.be/stops/505556"], ["https://data.delijn.be/stops/400778", "https://data.delijn.be/stops/409343"], ["https://data.delijn.be/stops/101661", "https://data.delijn.be/stops/204659"], ["https://data.delijn.be/stops/102746", "https://data.delijn.be/stops/107291"], ["https://data.delijn.be/stops/403947", "https://data.delijn.be/stops/407057"], ["https://data.delijn.be/stops/103617", "https://data.delijn.be/stops/103618"], ["https://data.delijn.be/stops/207415", "https://data.delijn.be/stops/207963"], ["https://data.delijn.be/stops/407904", "https://data.delijn.be/stops/407905"], ["https://data.delijn.be/stops/205613", "https://data.delijn.be/stops/205730"], ["https://data.delijn.be/stops/105638", "https://data.delijn.be/stops/105816"], ["https://data.delijn.be/stops/200664", "https://data.delijn.be/stops/200667"], ["https://data.delijn.be/stops/402473", "https://data.delijn.be/stops/402488"], ["https://data.delijn.be/stops/405359", "https://data.delijn.be/stops/410280"], ["https://data.delijn.be/stops/106231", "https://data.delijn.be/stops/109802"], ["https://data.delijn.be/stops/201105", "https://data.delijn.be/stops/203449"], ["https://data.delijn.be/stops/502219", "https://data.delijn.be/stops/505825"], ["https://data.delijn.be/stops/503585", "https://data.delijn.be/stops/508591"], ["https://data.delijn.be/stops/106598", "https://data.delijn.be/stops/107243"], ["https://data.delijn.be/stops/208277", "https://data.delijn.be/stops/208278"], ["https://data.delijn.be/stops/303383", "https://data.delijn.be/stops/303384"], ["https://data.delijn.be/stops/406931", "https://data.delijn.be/stops/406932"], ["https://data.delijn.be/stops/300555", "https://data.delijn.be/stops/307855"], ["https://data.delijn.be/stops/502183", "https://data.delijn.be/stops/502186"], ["https://data.delijn.be/stops/505099", "https://data.delijn.be/stops/508664"], ["https://data.delijn.be/stops/308834", "https://data.delijn.be/stops/308836"], ["https://data.delijn.be/stops/102799", "https://data.delijn.be/stops/104955"], ["https://data.delijn.be/stops/505314", "https://data.delijn.be/stops/507228"], ["https://data.delijn.be/stops/505844", "https://data.delijn.be/stops/508337"], ["https://data.delijn.be/stops/107578", "https://data.delijn.be/stops/107721"], ["https://data.delijn.be/stops/101927", "https://data.delijn.be/stops/107008"], ["https://data.delijn.be/stops/300058", "https://data.delijn.be/stops/307734"], ["https://data.delijn.be/stops/302085", "https://data.delijn.be/stops/302086"], ["https://data.delijn.be/stops/401038", "https://data.delijn.be/stops/404984"], ["https://data.delijn.be/stops/302709", "https://data.delijn.be/stops/302710"], ["https://data.delijn.be/stops/403532", "https://data.delijn.be/stops/403662"], ["https://data.delijn.be/stops/306921", "https://data.delijn.be/stops/306923"], ["https://data.delijn.be/stops/200107", "https://data.delijn.be/stops/209908"], ["https://data.delijn.be/stops/207983", "https://data.delijn.be/stops/304270"], ["https://data.delijn.be/stops/301460", "https://data.delijn.be/stops/301498"], ["https://data.delijn.be/stops/202498", "https://data.delijn.be/stops/203498"], ["https://data.delijn.be/stops/101531", "https://data.delijn.be/stops/102584"], ["https://data.delijn.be/stops/108137", "https://data.delijn.be/stops/108843"], ["https://data.delijn.be/stops/101429", "https://data.delijn.be/stops/107298"], ["https://data.delijn.be/stops/505396", "https://data.delijn.be/stops/507766"], ["https://data.delijn.be/stops/204412", "https://data.delijn.be/stops/204413"], ["https://data.delijn.be/stops/504733", "https://data.delijn.be/stops/504734"], ["https://data.delijn.be/stops/304004", "https://data.delijn.be/stops/304048"], ["https://data.delijn.be/stops/208682", "https://data.delijn.be/stops/208725"], ["https://data.delijn.be/stops/107314", "https://data.delijn.be/stops/108808"], ["https://data.delijn.be/stops/406275", "https://data.delijn.be/stops/406277"], ["https://data.delijn.be/stops/206156", "https://data.delijn.be/stops/206810"], ["https://data.delijn.be/stops/307016", "https://data.delijn.be/stops/307017"], ["https://data.delijn.be/stops/106127", "https://data.delijn.be/stops/106128"], ["https://data.delijn.be/stops/402458", "https://data.delijn.be/stops/402462"], ["https://data.delijn.be/stops/203655", "https://data.delijn.be/stops/211857"], ["https://data.delijn.be/stops/409555", "https://data.delijn.be/stops/409556"], ["https://data.delijn.be/stops/308854", "https://data.delijn.be/stops/308855"], ["https://data.delijn.be/stops/501061", "https://data.delijn.be/stops/501080"], ["https://data.delijn.be/stops/505553", "https://data.delijn.be/stops/507510"], ["https://data.delijn.be/stops/402410", "https://data.delijn.be/stops/402465"], ["https://data.delijn.be/stops/304606", "https://data.delijn.be/stops/304664"], ["https://data.delijn.be/stops/101483", "https://data.delijn.be/stops/103329"], ["https://data.delijn.be/stops/103398", "https://data.delijn.be/stops/103399"], ["https://data.delijn.be/stops/200092", "https://data.delijn.be/stops/200093"], ["https://data.delijn.be/stops/304952", "https://data.delijn.be/stops/308027"], ["https://data.delijn.be/stops/501190", "https://data.delijn.be/stops/501192"], ["https://data.delijn.be/stops/300479", "https://data.delijn.be/stops/306175"], ["https://data.delijn.be/stops/200273", "https://data.delijn.be/stops/203002"], ["https://data.delijn.be/stops/204378", "https://data.delijn.be/stops/205418"], ["https://data.delijn.be/stops/507513", "https://data.delijn.be/stops/509726"], ["https://data.delijn.be/stops/404838", "https://data.delijn.be/stops/405234"], ["https://data.delijn.be/stops/300254", "https://data.delijn.be/stops/303830"], ["https://data.delijn.be/stops/406036", "https://data.delijn.be/stops/406051"], ["https://data.delijn.be/stops/303757", "https://data.delijn.be/stops/303791"], ["https://data.delijn.be/stops/304127", "https://data.delijn.be/stops/305448"], ["https://data.delijn.be/stops/402108", "https://data.delijn.be/stops/402301"], ["https://data.delijn.be/stops/107718", "https://data.delijn.be/stops/107738"], ["https://data.delijn.be/stops/407916", "https://data.delijn.be/stops/407919"], ["https://data.delijn.be/stops/403272", "https://data.delijn.be/stops/403273"], ["https://data.delijn.be/stops/503405", "https://data.delijn.be/stops/508444"], ["https://data.delijn.be/stops/401413", "https://data.delijn.be/stops/300907"], ["https://data.delijn.be/stops/409369", "https://data.delijn.be/stops/409501"], ["https://data.delijn.be/stops/409371", "https://data.delijn.be/stops/410252"], ["https://data.delijn.be/stops/502227", "https://data.delijn.be/stops/505232"], ["https://data.delijn.be/stops/204216", "https://data.delijn.be/stops/205177"], ["https://data.delijn.be/stops/500936", "https://data.delijn.be/stops/505406"], ["https://data.delijn.be/stops/101422", "https://data.delijn.be/stops/109723"], ["https://data.delijn.be/stops/407624", "https://data.delijn.be/stops/409805"], ["https://data.delijn.be/stops/407457", "https://data.delijn.be/stops/407468"], ["https://data.delijn.be/stops/404880", "https://data.delijn.be/stops/405546"], ["https://data.delijn.be/stops/200251", "https://data.delijn.be/stops/200576"], ["https://data.delijn.be/stops/204413", "https://data.delijn.be/stops/205441"], ["https://data.delijn.be/stops/406336", "https://data.delijn.be/stops/406337"], ["https://data.delijn.be/stops/303585", "https://data.delijn.be/stops/303586"], ["https://data.delijn.be/stops/502413", "https://data.delijn.be/stops/507402"], ["https://data.delijn.be/stops/200110", "https://data.delijn.be/stops/200356"], ["https://data.delijn.be/stops/401347", "https://data.delijn.be/stops/401370"], ["https://data.delijn.be/stops/506283", "https://data.delijn.be/stops/506322"], ["https://data.delijn.be/stops/302851", "https://data.delijn.be/stops/302854"], ["https://data.delijn.be/stops/300198", "https://data.delijn.be/stops/300224"], ["https://data.delijn.be/stops/102692", "https://data.delijn.be/stops/108630"], ["https://data.delijn.be/stops/205373", "https://data.delijn.be/stops/205381"], ["https://data.delijn.be/stops/303372", "https://data.delijn.be/stops/308900"], ["https://data.delijn.be/stops/504841", "https://data.delijn.be/stops/508232"], ["https://data.delijn.be/stops/207833", "https://data.delijn.be/stops/207834"], ["https://data.delijn.be/stops/205985", "https://data.delijn.be/stops/206830"], ["https://data.delijn.be/stops/504622", "https://data.delijn.be/stops/508144"], ["https://data.delijn.be/stops/209386", "https://data.delijn.be/stops/503329"], ["https://data.delijn.be/stops/401209", "https://data.delijn.be/stops/401273"], ["https://data.delijn.be/stops/407706", "https://data.delijn.be/stops/407768"], ["https://data.delijn.be/stops/207777", "https://data.delijn.be/stops/207798"], ["https://data.delijn.be/stops/400279", "https://data.delijn.be/stops/400443"], ["https://data.delijn.be/stops/105171", "https://data.delijn.be/stops/106837"], ["https://data.delijn.be/stops/500563", "https://data.delijn.be/stops/506029"], ["https://data.delijn.be/stops/400675", "https://data.delijn.be/stops/401650"], ["https://data.delijn.be/stops/300525", "https://data.delijn.be/stops/306174"], ["https://data.delijn.be/stops/302731", "https://data.delijn.be/stops/307522"], ["https://data.delijn.be/stops/205347", "https://data.delijn.be/stops/205702"], ["https://data.delijn.be/stops/205280", "https://data.delijn.be/stops/205610"], ["https://data.delijn.be/stops/208384", "https://data.delijn.be/stops/209384"], ["https://data.delijn.be/stops/107902", "https://data.delijn.be/stops/109440"], ["https://data.delijn.be/stops/203308", "https://data.delijn.be/stops/507759"], ["https://data.delijn.be/stops/209069", "https://data.delijn.be/stops/209088"], ["https://data.delijn.be/stops/200778", "https://data.delijn.be/stops/200931"], ["https://data.delijn.be/stops/302746", "https://data.delijn.be/stops/308860"], ["https://data.delijn.be/stops/106283", "https://data.delijn.be/stops/106348"], ["https://data.delijn.be/stops/105911", "https://data.delijn.be/stops/109745"], ["https://data.delijn.be/stops/203560", "https://data.delijn.be/stops/203564"], ["https://data.delijn.be/stops/400055", "https://data.delijn.be/stops/400063"], ["https://data.delijn.be/stops/501065", "https://data.delijn.be/stops/501132"], ["https://data.delijn.be/stops/107872", "https://data.delijn.be/stops/107873"], ["https://data.delijn.be/stops/502814", "https://data.delijn.be/stops/508140"], ["https://data.delijn.be/stops/300235", "https://data.delijn.be/stops/306655"], ["https://data.delijn.be/stops/303056", "https://data.delijn.be/stops/304081"], ["https://data.delijn.be/stops/303317", "https://data.delijn.be/stops/303319"], ["https://data.delijn.be/stops/200443", "https://data.delijn.be/stops/201443"], ["https://data.delijn.be/stops/106013", "https://data.delijn.be/stops/107910"], ["https://data.delijn.be/stops/101370", "https://data.delijn.be/stops/106359"], ["https://data.delijn.be/stops/504445", "https://data.delijn.be/stops/504449"], ["https://data.delijn.be/stops/103625", "https://data.delijn.be/stops/103745"], ["https://data.delijn.be/stops/302755", "https://data.delijn.be/stops/304830"], ["https://data.delijn.be/stops/403123", "https://data.delijn.be/stops/403126"], ["https://data.delijn.be/stops/408574", "https://data.delijn.be/stops/408677"], ["https://data.delijn.be/stops/201685", "https://data.delijn.be/stops/202315"], ["https://data.delijn.be/stops/401424", "https://data.delijn.be/stops/401578"], ["https://data.delijn.be/stops/305500", "https://data.delijn.be/stops/305501"], ["https://data.delijn.be/stops/405671", "https://data.delijn.be/stops/406912"], ["https://data.delijn.be/stops/307642", "https://data.delijn.be/stops/307643"], ["https://data.delijn.be/stops/406093", "https://data.delijn.be/stops/406116"], ["https://data.delijn.be/stops/205521", "https://data.delijn.be/stops/205726"], ["https://data.delijn.be/stops/103728", "https://data.delijn.be/stops/109442"], ["https://data.delijn.be/stops/508388", "https://data.delijn.be/stops/509770"], ["https://data.delijn.be/stops/503371", "https://data.delijn.be/stops/503951"], ["https://data.delijn.be/stops/306917", "https://data.delijn.be/stops/306919"], ["https://data.delijn.be/stops/403117", "https://data.delijn.be/stops/403234"], ["https://data.delijn.be/stops/503268", "https://data.delijn.be/stops/508268"], ["https://data.delijn.be/stops/502750", "https://data.delijn.be/stops/507750"], ["https://data.delijn.be/stops/102636", "https://data.delijn.be/stops/102639"], ["https://data.delijn.be/stops/104893", "https://data.delijn.be/stops/104897"], ["https://data.delijn.be/stops/408520", "https://data.delijn.be/stops/408795"], ["https://data.delijn.be/stops/503158", "https://data.delijn.be/stops/508175"], ["https://data.delijn.be/stops/102091", "https://data.delijn.be/stops/106846"], ["https://data.delijn.be/stops/400438", "https://data.delijn.be/stops/406843"], ["https://data.delijn.be/stops/106221", "https://data.delijn.be/stops/106335"], ["https://data.delijn.be/stops/207672", "https://data.delijn.be/stops/209158"], ["https://data.delijn.be/stops/300751", "https://data.delijn.be/stops/300783"], ["https://data.delijn.be/stops/500044", "https://data.delijn.be/stops/500053"], ["https://data.delijn.be/stops/400752", "https://data.delijn.be/stops/409560"], ["https://data.delijn.be/stops/400851", "https://data.delijn.be/stops/400853"], ["https://data.delijn.be/stops/502515", "https://data.delijn.be/stops/507636"], ["https://data.delijn.be/stops/408031", "https://data.delijn.be/stops/408035"], ["https://data.delijn.be/stops/107013", "https://data.delijn.be/stops/107016"], ["https://data.delijn.be/stops/102045", "https://data.delijn.be/stops/103005"], ["https://data.delijn.be/stops/303260", "https://data.delijn.be/stops/305660"], ["https://data.delijn.be/stops/303082", "https://data.delijn.be/stops/308661"], ["https://data.delijn.be/stops/300344", "https://data.delijn.be/stops/307644"], ["https://data.delijn.be/stops/503745", "https://data.delijn.be/stops/509777"], ["https://data.delijn.be/stops/302562", "https://data.delijn.be/stops/302566"], ["https://data.delijn.be/stops/102340", "https://data.delijn.be/stops/104254"], ["https://data.delijn.be/stops/101922", "https://data.delijn.be/stops/102933"], ["https://data.delijn.be/stops/102448", "https://data.delijn.be/stops/103011"], ["https://data.delijn.be/stops/303131", "https://data.delijn.be/stops/303135"], ["https://data.delijn.be/stops/204164", "https://data.delijn.be/stops/207274"], ["https://data.delijn.be/stops/404427", "https://data.delijn.be/stops/404496"], ["https://data.delijn.be/stops/303528", "https://data.delijn.be/stops/303552"], ["https://data.delijn.be/stops/303229", "https://data.delijn.be/stops/304549"], ["https://data.delijn.be/stops/404466", "https://data.delijn.be/stops/404510"], ["https://data.delijn.be/stops/409801", "https://data.delijn.be/stops/409803"], ["https://data.delijn.be/stops/402118", "https://data.delijn.be/stops/409286"], ["https://data.delijn.be/stops/202113", "https://data.delijn.be/stops/205586"], ["https://data.delijn.be/stops/204157", "https://data.delijn.be/stops/205156"], ["https://data.delijn.be/stops/208394", "https://data.delijn.be/stops/208421"], ["https://data.delijn.be/stops/204146", "https://data.delijn.be/stops/205126"], ["https://data.delijn.be/stops/108397", "https://data.delijn.be/stops/108411"], ["https://data.delijn.be/stops/206708", "https://data.delijn.be/stops/206975"], ["https://data.delijn.be/stops/503480", "https://data.delijn.be/stops/504046"], ["https://data.delijn.be/stops/200745", "https://data.delijn.be/stops/203780"], ["https://data.delijn.be/stops/503382", "https://data.delijn.be/stops/503439"], ["https://data.delijn.be/stops/307871", "https://data.delijn.be/stops/308886"], ["https://data.delijn.be/stops/101086", "https://data.delijn.be/stops/101087"], ["https://data.delijn.be/stops/302780", "https://data.delijn.be/stops/302781"], ["https://data.delijn.be/stops/408957", "https://data.delijn.be/stops/408983"], ["https://data.delijn.be/stops/107442", "https://data.delijn.be/stops/107444"], ["https://data.delijn.be/stops/407689", "https://data.delijn.be/stops/407735"], ["https://data.delijn.be/stops/300247", "https://data.delijn.be/stops/303893"], ["https://data.delijn.be/stops/409130", "https://data.delijn.be/stops/409215"], ["https://data.delijn.be/stops/304262", "https://data.delijn.be/stops/304264"], ["https://data.delijn.be/stops/502662", "https://data.delijn.be/stops/507032"], ["https://data.delijn.be/stops/405210", "https://data.delijn.be/stops/407341"], ["https://data.delijn.be/stops/308245", "https://data.delijn.be/stops/308246"], ["https://data.delijn.be/stops/400694", "https://data.delijn.be/stops/400875"], ["https://data.delijn.be/stops/400966", "https://data.delijn.be/stops/406552"], ["https://data.delijn.be/stops/503086", "https://data.delijn.be/stops/508923"], ["https://data.delijn.be/stops/104802", "https://data.delijn.be/stops/109456"], ["https://data.delijn.be/stops/102529", "https://data.delijn.be/stops/405077"], ["https://data.delijn.be/stops/205131", "https://data.delijn.be/stops/205143"], ["https://data.delijn.be/stops/101293", "https://data.delijn.be/stops/105366"], ["https://data.delijn.be/stops/101976", "https://data.delijn.be/stops/109065"], ["https://data.delijn.be/stops/206436", "https://data.delijn.be/stops/207641"], ["https://data.delijn.be/stops/405156", "https://data.delijn.be/stops/405184"], ["https://data.delijn.be/stops/408596", "https://data.delijn.be/stops/408741"], ["https://data.delijn.be/stops/406167", "https://data.delijn.be/stops/406453"], ["https://data.delijn.be/stops/409685", "https://data.delijn.be/stops/409687"], ["https://data.delijn.be/stops/201380", "https://data.delijn.be/stops/210200"], ["https://data.delijn.be/stops/203943", "https://data.delijn.be/stops/203944"], ["https://data.delijn.be/stops/405778", "https://data.delijn.be/stops/405806"], ["https://data.delijn.be/stops/301435", "https://data.delijn.be/stops/301436"], ["https://data.delijn.be/stops/106637", "https://data.delijn.be/stops/106678"], ["https://data.delijn.be/stops/402740", "https://data.delijn.be/stops/405671"], ["https://data.delijn.be/stops/303644", "https://data.delijn.be/stops/308828"], ["https://data.delijn.be/stops/403085", "https://data.delijn.be/stops/403435"], ["https://data.delijn.be/stops/401026", "https://data.delijn.be/stops/404965"], ["https://data.delijn.be/stops/200199", "https://data.delijn.be/stops/201080"], ["https://data.delijn.be/stops/504851", "https://data.delijn.be/stops/505940"], ["https://data.delijn.be/stops/401375", "https://data.delijn.be/stops/401376"], ["https://data.delijn.be/stops/403716", "https://data.delijn.be/stops/403729"], ["https://data.delijn.be/stops/409004", "https://data.delijn.be/stops/409006"], ["https://data.delijn.be/stops/501624", "https://data.delijn.be/stops/506623"], ["https://data.delijn.be/stops/204244", "https://data.delijn.be/stops/204245"], ["https://data.delijn.be/stops/302937", "https://data.delijn.be/stops/303145"], ["https://data.delijn.be/stops/207154", "https://data.delijn.be/stops/207502"], ["https://data.delijn.be/stops/502803", "https://data.delijn.be/stops/505317"], ["https://data.delijn.be/stops/401045", "https://data.delijn.be/stops/401140"], ["https://data.delijn.be/stops/308778", "https://data.delijn.be/stops/308780"], ["https://data.delijn.be/stops/305993", "https://data.delijn.be/stops/307426"], ["https://data.delijn.be/stops/403590", "https://data.delijn.be/stops/410013"], ["https://data.delijn.be/stops/503359", "https://data.delijn.be/stops/508930"], ["https://data.delijn.be/stops/102863", "https://data.delijn.be/stops/102864"], ["https://data.delijn.be/stops/107313", "https://data.delijn.be/stops/107314"], ["https://data.delijn.be/stops/403337", "https://data.delijn.be/stops/410026"], ["https://data.delijn.be/stops/208781", "https://data.delijn.be/stops/208788"], ["https://data.delijn.be/stops/502613", "https://data.delijn.be/stops/502676"], ["https://data.delijn.be/stops/506147", "https://data.delijn.be/stops/509834"], ["https://data.delijn.be/stops/206913", "https://data.delijn.be/stops/207926"], ["https://data.delijn.be/stops/504803", "https://data.delijn.be/stops/504809"], ["https://data.delijn.be/stops/405909", "https://data.delijn.be/stops/405942"], ["https://data.delijn.be/stops/305021", "https://data.delijn.be/stops/305022"], ["https://data.delijn.be/stops/102145", "https://data.delijn.be/stops/102444"], ["https://data.delijn.be/stops/202933", "https://data.delijn.be/stops/203848"], ["https://data.delijn.be/stops/404164", "https://data.delijn.be/stops/404282"], ["https://data.delijn.be/stops/108969", "https://data.delijn.be/stops/109566"], ["https://data.delijn.be/stops/400658", "https://data.delijn.be/stops/408964"], ["https://data.delijn.be/stops/509544", "https://data.delijn.be/stops/509546"], ["https://data.delijn.be/stops/501336", "https://data.delijn.be/stops/501353"], ["https://data.delijn.be/stops/103968", "https://data.delijn.be/stops/106756"], ["https://data.delijn.be/stops/403398", "https://data.delijn.be/stops/410295"], ["https://data.delijn.be/stops/504307", "https://data.delijn.be/stops/509292"], ["https://data.delijn.be/stops/408551", "https://data.delijn.be/stops/410001"], ["https://data.delijn.be/stops/200080", "https://data.delijn.be/stops/201080"], ["https://data.delijn.be/stops/400708", "https://data.delijn.be/stops/400709"], ["https://data.delijn.be/stops/505742", "https://data.delijn.be/stops/507002"], ["https://data.delijn.be/stops/107360", "https://data.delijn.be/stops/107365"], ["https://data.delijn.be/stops/501322", "https://data.delijn.be/stops/506283"], ["https://data.delijn.be/stops/102984", "https://data.delijn.be/stops/105057"], ["https://data.delijn.be/stops/205744", "https://data.delijn.be/stops/205745"], ["https://data.delijn.be/stops/401016", "https://data.delijn.be/stops/401017"], ["https://data.delijn.be/stops/401297", "https://data.delijn.be/stops/401351"], ["https://data.delijn.be/stops/105503", "https://data.delijn.be/stops/105504"], ["https://data.delijn.be/stops/304419", "https://data.delijn.be/stops/304424"], ["https://data.delijn.be/stops/205332", "https://data.delijn.be/stops/205501"], ["https://data.delijn.be/stops/206692", "https://data.delijn.be/stops/206956"], ["https://data.delijn.be/stops/300083", "https://data.delijn.be/stops/306784"], ["https://data.delijn.be/stops/300001", "https://data.delijn.be/stops/302508"], ["https://data.delijn.be/stops/202322", "https://data.delijn.be/stops/209640"], ["https://data.delijn.be/stops/402670", "https://data.delijn.be/stops/402723"], ["https://data.delijn.be/stops/200814", "https://data.delijn.be/stops/210056"], ["https://data.delijn.be/stops/201423", "https://data.delijn.be/stops/209721"], ["https://data.delijn.be/stops/204638", "https://data.delijn.be/stops/204639"], ["https://data.delijn.be/stops/106264", "https://data.delijn.be/stops/106274"], ["https://data.delijn.be/stops/200891", "https://data.delijn.be/stops/210016"], ["https://data.delijn.be/stops/304173", "https://data.delijn.be/stops/306152"], ["https://data.delijn.be/stops/204652", "https://data.delijn.be/stops/214001"], ["https://data.delijn.be/stops/104958", "https://data.delijn.be/stops/109566"], ["https://data.delijn.be/stops/107315", "https://data.delijn.be/stops/109080"], ["https://data.delijn.be/stops/105204", "https://data.delijn.be/stops/108876"], ["https://data.delijn.be/stops/400409", "https://data.delijn.be/stops/408487"], ["https://data.delijn.be/stops/209313", "https://data.delijn.be/stops/209788"], ["https://data.delijn.be/stops/205691", "https://data.delijn.be/stops/205700"], ["https://data.delijn.be/stops/104185", "https://data.delijn.be/stops/104205"], ["https://data.delijn.be/stops/204160", "https://data.delijn.be/stops/204165"], ["https://data.delijn.be/stops/403085", "https://data.delijn.be/stops/403132"], ["https://data.delijn.be/stops/407659", "https://data.delijn.be/stops/409807"], ["https://data.delijn.be/stops/101342", "https://data.delijn.be/stops/108099"], ["https://data.delijn.be/stops/202874", "https://data.delijn.be/stops/209712"], ["https://data.delijn.be/stops/505083", "https://data.delijn.be/stops/505667"], ["https://data.delijn.be/stops/109086", "https://data.delijn.be/stops/109317"], ["https://data.delijn.be/stops/105502", "https://data.delijn.be/stops/105504"], ["https://data.delijn.be/stops/206655", "https://data.delijn.be/stops/207655"], ["https://data.delijn.be/stops/302588", "https://data.delijn.be/stops/302593"], ["https://data.delijn.be/stops/507491", "https://data.delijn.be/stops/507508"], ["https://data.delijn.be/stops/505538", "https://data.delijn.be/stops/508810"], ["https://data.delijn.be/stops/108388", "https://data.delijn.be/stops/108390"], ["https://data.delijn.be/stops/401398", "https://data.delijn.be/stops/401418"], ["https://data.delijn.be/stops/105906", "https://data.delijn.be/stops/105908"], ["https://data.delijn.be/stops/302740", "https://data.delijn.be/stops/302747"], ["https://data.delijn.be/stops/405056", "https://data.delijn.be/stops/405062"], ["https://data.delijn.be/stops/102963", "https://data.delijn.be/stops/103217"], ["https://data.delijn.be/stops/502185", "https://data.delijn.be/stops/507189"], ["https://data.delijn.be/stops/501164", "https://data.delijn.be/stops/506148"], ["https://data.delijn.be/stops/404853", "https://data.delijn.be/stops/404943"], ["https://data.delijn.be/stops/306847", "https://data.delijn.be/stops/306858"], ["https://data.delijn.be/stops/102212", "https://data.delijn.be/stops/102736"], ["https://data.delijn.be/stops/106465", "https://data.delijn.be/stops/109557"], ["https://data.delijn.be/stops/200774", "https://data.delijn.be/stops/209302"], ["https://data.delijn.be/stops/403705", "https://data.delijn.be/stops/406973"], ["https://data.delijn.be/stops/404226", "https://data.delijn.be/stops/404227"], ["https://data.delijn.be/stops/107869", "https://data.delijn.be/stops/107870"], ["https://data.delijn.be/stops/500931", "https://data.delijn.be/stops/500936"], ["https://data.delijn.be/stops/300802", "https://data.delijn.be/stops/303121"], ["https://data.delijn.be/stops/501363", "https://data.delijn.be/stops/506363"], ["https://data.delijn.be/stops/308482", "https://data.delijn.be/stops/308484"], ["https://data.delijn.be/stops/106145", "https://data.delijn.be/stops/106146"], ["https://data.delijn.be/stops/302230", "https://data.delijn.be/stops/302236"], ["https://data.delijn.be/stops/106082", "https://data.delijn.be/stops/106138"], ["https://data.delijn.be/stops/200013", "https://data.delijn.be/stops/201014"], ["https://data.delijn.be/stops/305614", "https://data.delijn.be/stops/308944"], ["https://data.delijn.be/stops/401468", "https://data.delijn.be/stops/401893"], ["https://data.delijn.be/stops/207942", "https://data.delijn.be/stops/209161"], ["https://data.delijn.be/stops/403832", "https://data.delijn.be/stops/403833"], ["https://data.delijn.be/stops/501306", "https://data.delijn.be/stops/501360"], ["https://data.delijn.be/stops/204354", "https://data.delijn.be/stops/205314"], ["https://data.delijn.be/stops/204554", "https://data.delijn.be/stops/205554"], ["https://data.delijn.be/stops/103860", "https://data.delijn.be/stops/205609"], ["https://data.delijn.be/stops/206803", "https://data.delijn.be/stops/209581"], ["https://data.delijn.be/stops/502815", "https://data.delijn.be/stops/507036"], ["https://data.delijn.be/stops/105073", "https://data.delijn.be/stops/105189"], ["https://data.delijn.be/stops/102184", "https://data.delijn.be/stops/104429"], ["https://data.delijn.be/stops/305686", "https://data.delijn.be/stops/305711"], ["https://data.delijn.be/stops/400213", "https://data.delijn.be/stops/407156"], ["https://data.delijn.be/stops/107686", "https://data.delijn.be/stops/107688"], ["https://data.delijn.be/stops/405850", "https://data.delijn.be/stops/405851"], ["https://data.delijn.be/stops/206222", "https://data.delijn.be/stops/207192"], ["https://data.delijn.be/stops/508660", "https://data.delijn.be/stops/508668"], ["https://data.delijn.be/stops/206193", "https://data.delijn.be/stops/207194"], ["https://data.delijn.be/stops/305328", "https://data.delijn.be/stops/306343"], ["https://data.delijn.be/stops/306713", "https://data.delijn.be/stops/306714"], ["https://data.delijn.be/stops/408205", "https://data.delijn.be/stops/408355"], ["https://data.delijn.be/stops/304978", "https://data.delijn.be/stops/305002"], ["https://data.delijn.be/stops/102195", "https://data.delijn.be/stops/102414"], ["https://data.delijn.be/stops/209442", "https://data.delijn.be/stops/209444"], ["https://data.delijn.be/stops/306871", "https://data.delijn.be/stops/307954"], ["https://data.delijn.be/stops/202180", "https://data.delijn.be/stops/204080"], ["https://data.delijn.be/stops/505200", "https://data.delijn.be/stops/508148"], ["https://data.delijn.be/stops/102607", "https://data.delijn.be/stops/106974"], ["https://data.delijn.be/stops/503391", "https://data.delijn.be/stops/509762"], ["https://data.delijn.be/stops/202747", "https://data.delijn.be/stops/203748"], ["https://data.delijn.be/stops/506166", "https://data.delijn.be/stops/509837"], ["https://data.delijn.be/stops/502499", "https://data.delijn.be/stops/507502"], ["https://data.delijn.be/stops/400407", "https://data.delijn.be/stops/400408"], ["https://data.delijn.be/stops/506393", "https://data.delijn.be/stops/506394"], ["https://data.delijn.be/stops/504249", "https://data.delijn.be/stops/509449"], ["https://data.delijn.be/stops/405840", "https://data.delijn.be/stops/405841"], ["https://data.delijn.be/stops/501439", "https://data.delijn.be/stops/506444"], ["https://data.delijn.be/stops/202559", "https://data.delijn.be/stops/203559"], ["https://data.delijn.be/stops/200978", "https://data.delijn.be/stops/208046"], ["https://data.delijn.be/stops/105832", "https://data.delijn.be/stops/107707"], ["https://data.delijn.be/stops/502487", "https://data.delijn.be/stops/504877"], ["https://data.delijn.be/stops/107034", "https://data.delijn.be/stops/107037"], ["https://data.delijn.be/stops/101929", "https://data.delijn.be/stops/108386"], ["https://data.delijn.be/stops/102713", "https://data.delijn.be/stops/109589"], ["https://data.delijn.be/stops/504687", "https://data.delijn.be/stops/504763"], ["https://data.delijn.be/stops/102904", "https://data.delijn.be/stops/109567"], ["https://data.delijn.be/stops/403742", "https://data.delijn.be/stops/403811"], ["https://data.delijn.be/stops/300017", "https://data.delijn.be/stops/304564"], ["https://data.delijn.be/stops/406597", "https://data.delijn.be/stops/406628"], ["https://data.delijn.be/stops/102238", "https://data.delijn.be/stops/102239"], ["https://data.delijn.be/stops/404430", "https://data.delijn.be/stops/404483"], ["https://data.delijn.be/stops/503635", "https://data.delijn.be/stops/508322"], ["https://data.delijn.be/stops/202243", "https://data.delijn.be/stops/203485"], ["https://data.delijn.be/stops/303351", "https://data.delijn.be/stops/303368"], ["https://data.delijn.be/stops/208426", "https://data.delijn.be/stops/209426"], ["https://data.delijn.be/stops/101135", "https://data.delijn.be/stops/104570"], ["https://data.delijn.be/stops/408241", "https://data.delijn.be/stops/408308"], ["https://data.delijn.be/stops/201754", "https://data.delijn.be/stops/209221"], ["https://data.delijn.be/stops/505177", "https://data.delijn.be/stops/508863"], ["https://data.delijn.be/stops/200545", "https://data.delijn.be/stops/200701"], ["https://data.delijn.be/stops/408742", "https://data.delijn.be/stops/408745"], ["https://data.delijn.be/stops/503307", "https://data.delijn.be/stops/503315"], ["https://data.delijn.be/stops/409357", "https://data.delijn.be/stops/409439"], ["https://data.delijn.be/stops/108214", "https://data.delijn.be/stops/108217"], ["https://data.delijn.be/stops/206433", "https://data.delijn.be/stops/209690"], ["https://data.delijn.be/stops/200012", "https://data.delijn.be/stops/200014"], ["https://data.delijn.be/stops/402893", "https://data.delijn.be/stops/302614"], ["https://data.delijn.be/stops/201859", "https://data.delijn.be/stops/211036"], ["https://data.delijn.be/stops/503026", "https://data.delijn.be/stops/508023"], ["https://data.delijn.be/stops/504564", "https://data.delijn.be/stops/504568"], ["https://data.delijn.be/stops/405276", "https://data.delijn.be/stops/410085"], ["https://data.delijn.be/stops/408037", "https://data.delijn.be/stops/408043"], ["https://data.delijn.be/stops/206950", "https://data.delijn.be/stops/207950"], ["https://data.delijn.be/stops/301040", "https://data.delijn.be/stops/301041"], ["https://data.delijn.be/stops/201867", "https://data.delijn.be/stops/211037"], ["https://data.delijn.be/stops/206303", "https://data.delijn.be/stops/207632"], ["https://data.delijn.be/stops/505948", "https://data.delijn.be/stops/508298"], ["https://data.delijn.be/stops/403197", "https://data.delijn.be/stops/403386"], ["https://data.delijn.be/stops/501214", "https://data.delijn.be/stops/506496"], ["https://data.delijn.be/stops/205000", "https://data.delijn.be/stops/206378"], ["https://data.delijn.be/stops/208011", "https://data.delijn.be/stops/209011"], ["https://data.delijn.be/stops/504473", "https://data.delijn.be/stops/509109"], ["https://data.delijn.be/stops/506599", "https://data.delijn.be/stops/506644"], ["https://data.delijn.be/stops/509647", "https://data.delijn.be/stops/509657"], ["https://data.delijn.be/stops/208413", "https://data.delijn.be/stops/208414"], ["https://data.delijn.be/stops/205911", "https://data.delijn.be/stops/205914"], ["https://data.delijn.be/stops/208005", "https://data.delijn.be/stops/209635"], ["https://data.delijn.be/stops/503293", "https://data.delijn.be/stops/505259"], ["https://data.delijn.be/stops/106732", "https://data.delijn.be/stops/109771"], ["https://data.delijn.be/stops/305208", "https://data.delijn.be/stops/308049"], ["https://data.delijn.be/stops/206431", "https://data.delijn.be/stops/207431"], ["https://data.delijn.be/stops/501492", "https://data.delijn.be/stops/504506"], ["https://data.delijn.be/stops/303826", "https://data.delijn.be/stops/303830"], ["https://data.delijn.be/stops/202092", "https://data.delijn.be/stops/202720"], ["https://data.delijn.be/stops/305660", "https://data.delijn.be/stops/305661"], ["https://data.delijn.be/stops/204322", "https://data.delijn.be/stops/205321"], ["https://data.delijn.be/stops/503411", "https://data.delijn.be/stops/503423"], ["https://data.delijn.be/stops/308097", "https://data.delijn.be/stops/308129"], ["https://data.delijn.be/stops/204749", "https://data.delijn.be/stops/205749"], ["https://data.delijn.be/stops/107174", "https://data.delijn.be/stops/107733"], ["https://data.delijn.be/stops/307383", "https://data.delijn.be/stops/307446"], ["https://data.delijn.be/stops/304604", "https://data.delijn.be/stops/304617"], ["https://data.delijn.be/stops/400643", "https://data.delijn.be/stops/400901"], ["https://data.delijn.be/stops/108460", "https://data.delijn.be/stops/109880"], ["https://data.delijn.be/stops/304577", "https://data.delijn.be/stops/306203"], ["https://data.delijn.be/stops/102086", "https://data.delijn.be/stops/108715"], ["https://data.delijn.be/stops/503630", "https://data.delijn.be/stops/505534"], ["https://data.delijn.be/stops/300700", "https://data.delijn.be/stops/306942"], ["https://data.delijn.be/stops/407074", "https://data.delijn.be/stops/407775"], ["https://data.delijn.be/stops/107685", "https://data.delijn.be/stops/107990"], ["https://data.delijn.be/stops/204762", "https://data.delijn.be/stops/205355"], ["https://data.delijn.be/stops/105229", "https://data.delijn.be/stops/105233"], ["https://data.delijn.be/stops/102162", "https://data.delijn.be/stops/102164"], ["https://data.delijn.be/stops/501409", "https://data.delijn.be/stops/506407"], ["https://data.delijn.be/stops/300038", "https://data.delijn.be/stops/306837"], ["https://data.delijn.be/stops/102612", "https://data.delijn.be/stops/102617"], ["https://data.delijn.be/stops/208005", "https://data.delijn.be/stops/208006"], ["https://data.delijn.be/stops/201779", "https://data.delijn.be/stops/208250"], ["https://data.delijn.be/stops/505279", "https://data.delijn.be/stops/505280"], ["https://data.delijn.be/stops/105054", "https://data.delijn.be/stops/305610"], ["https://data.delijn.be/stops/407814", "https://data.delijn.be/stops/408042"], ["https://data.delijn.be/stops/400776", "https://data.delijn.be/stops/406668"], ["https://data.delijn.be/stops/408536", "https://data.delijn.be/stops/408650"], ["https://data.delijn.be/stops/303012", "https://data.delijn.be/stops/306279"], ["https://data.delijn.be/stops/403655", "https://data.delijn.be/stops/407345"], ["https://data.delijn.be/stops/508276", "https://data.delijn.be/stops/508277"], ["https://data.delijn.be/stops/404345", "https://data.delijn.be/stops/404648"], ["https://data.delijn.be/stops/400061", "https://data.delijn.be/stops/400151"], ["https://data.delijn.be/stops/402108", "https://data.delijn.be/stops/402486"], ["https://data.delijn.be/stops/208481", "https://data.delijn.be/stops/209481"], ["https://data.delijn.be/stops/304517", "https://data.delijn.be/stops/304518"], ["https://data.delijn.be/stops/201915", "https://data.delijn.be/stops/206424"], ["https://data.delijn.be/stops/101913", "https://data.delijn.be/stops/101914"], ["https://data.delijn.be/stops/303312", "https://data.delijn.be/stops/303329"], ["https://data.delijn.be/stops/401933", "https://data.delijn.be/stops/401934"], ["https://data.delijn.be/stops/207798", "https://data.delijn.be/stops/208184"], ["https://data.delijn.be/stops/300354", "https://data.delijn.be/stops/304063"], ["https://data.delijn.be/stops/502743", "https://data.delijn.be/stops/505734"], ["https://data.delijn.be/stops/207795", "https://data.delijn.be/stops/208757"], ["https://data.delijn.be/stops/102397", "https://data.delijn.be/stops/106261"], ["https://data.delijn.be/stops/404875", "https://data.delijn.be/stops/404968"], ["https://data.delijn.be/stops/208510", "https://data.delijn.be/stops/209159"], ["https://data.delijn.be/stops/302257", "https://data.delijn.be/stops/302275"], ["https://data.delijn.be/stops/304556", "https://data.delijn.be/stops/304558"], ["https://data.delijn.be/stops/208437", "https://data.delijn.be/stops/208751"], ["https://data.delijn.be/stops/307713", "https://data.delijn.be/stops/307715"], ["https://data.delijn.be/stops/106688", "https://data.delijn.be/stops/106690"], ["https://data.delijn.be/stops/301252", "https://data.delijn.be/stops/308558"], ["https://data.delijn.be/stops/105134", "https://data.delijn.be/stops/305826"], ["https://data.delijn.be/stops/303514", "https://data.delijn.be/stops/304176"], ["https://data.delijn.be/stops/302697", "https://data.delijn.be/stops/302701"], ["https://data.delijn.be/stops/105153", "https://data.delijn.be/stops/105156"], ["https://data.delijn.be/stops/407046", "https://data.delijn.be/stops/407051"], ["https://data.delijn.be/stops/103364", "https://data.delijn.be/stops/103369"], ["https://data.delijn.be/stops/207754", "https://data.delijn.be/stops/209838"], ["https://data.delijn.be/stops/406299", "https://data.delijn.be/stops/409140"], ["https://data.delijn.be/stops/105447", "https://data.delijn.be/stops/105448"], ["https://data.delijn.be/stops/104424", "https://data.delijn.be/stops/205287"], ["https://data.delijn.be/stops/403476", "https://data.delijn.be/stops/403479"], ["https://data.delijn.be/stops/401242", "https://data.delijn.be/stops/401381"], ["https://data.delijn.be/stops/305582", "https://data.delijn.be/stops/307044"], ["https://data.delijn.be/stops/505846", "https://data.delijn.be/stops/508952"], ["https://data.delijn.be/stops/509316", "https://data.delijn.be/stops/509861"], ["https://data.delijn.be/stops/406834", "https://data.delijn.be/stops/407324"], ["https://data.delijn.be/stops/304762", "https://data.delijn.be/stops/304765"], ["https://data.delijn.be/stops/208239", "https://data.delijn.be/stops/209233"], ["https://data.delijn.be/stops/206451", "https://data.delijn.be/stops/207451"], ["https://data.delijn.be/stops/202622", "https://data.delijn.be/stops/210043"], ["https://data.delijn.be/stops/405610", "https://data.delijn.be/stops/405611"], ["https://data.delijn.be/stops/209746", "https://data.delijn.be/stops/209747"], ["https://data.delijn.be/stops/404435", "https://data.delijn.be/stops/404442"], ["https://data.delijn.be/stops/206708", "https://data.delijn.be/stops/207607"], ["https://data.delijn.be/stops/302439", "https://data.delijn.be/stops/308104"], ["https://data.delijn.be/stops/504978", "https://data.delijn.be/stops/509085"], ["https://data.delijn.be/stops/303140", "https://data.delijn.be/stops/303141"], ["https://data.delijn.be/stops/505363", "https://data.delijn.be/stops/509198"], ["https://data.delijn.be/stops/403152", "https://data.delijn.be/stops/403153"], ["https://data.delijn.be/stops/503823", "https://data.delijn.be/stops/508824"], ["https://data.delijn.be/stops/300742", "https://data.delijn.be/stops/300775"], ["https://data.delijn.be/stops/405970", "https://data.delijn.be/stops/405993"], ["https://data.delijn.be/stops/300503", "https://data.delijn.be/stops/300512"], ["https://data.delijn.be/stops/305742", "https://data.delijn.be/stops/306308"], ["https://data.delijn.be/stops/206729", "https://data.delijn.be/stops/207658"], ["https://data.delijn.be/stops/201773", "https://data.delijn.be/stops/201812"], ["https://data.delijn.be/stops/306339", "https://data.delijn.be/stops/306771"], ["https://data.delijn.be/stops/200668", "https://data.delijn.be/stops/211102"], ["https://data.delijn.be/stops/206252", "https://data.delijn.be/stops/207584"], ["https://data.delijn.be/stops/200399", "https://data.delijn.be/stops/204950"], ["https://data.delijn.be/stops/104994", "https://data.delijn.be/stops/109480"], ["https://data.delijn.be/stops/501688", "https://data.delijn.be/stops/506597"], ["https://data.delijn.be/stops/105621", "https://data.delijn.be/stops/106361"], ["https://data.delijn.be/stops/103129", "https://data.delijn.be/stops/106781"], ["https://data.delijn.be/stops/300949", "https://data.delijn.be/stops/303664"], ["https://data.delijn.be/stops/109351", "https://data.delijn.be/stops/307353"], ["https://data.delijn.be/stops/208643", "https://data.delijn.be/stops/209643"], ["https://data.delijn.be/stops/501487", "https://data.delijn.be/stops/506428"], ["https://data.delijn.be/stops/208369", "https://data.delijn.be/stops/208370"], ["https://data.delijn.be/stops/200002", "https://data.delijn.be/stops/200004"], ["https://data.delijn.be/stops/207772", "https://data.delijn.be/stops/208406"], ["https://data.delijn.be/stops/505183", "https://data.delijn.be/stops/509119"], ["https://data.delijn.be/stops/101979", "https://data.delijn.be/stops/108284"], ["https://data.delijn.be/stops/102385", "https://data.delijn.be/stops/104090"], ["https://data.delijn.be/stops/106950", "https://data.delijn.be/stops/108714"], ["https://data.delijn.be/stops/102254", "https://data.delijn.be/stops/108289"], ["https://data.delijn.be/stops/302173", "https://data.delijn.be/stops/305090"], ["https://data.delijn.be/stops/102585", "https://data.delijn.be/stops/105265"], ["https://data.delijn.be/stops/200034", "https://data.delijn.be/stops/201397"], ["https://data.delijn.be/stops/501022", "https://data.delijn.be/stops/505397"], ["https://data.delijn.be/stops/206337", "https://data.delijn.be/stops/207337"], ["https://data.delijn.be/stops/105997", "https://data.delijn.be/stops/105999"], ["https://data.delijn.be/stops/302875", "https://data.delijn.be/stops/307650"], ["https://data.delijn.be/stops/404738", "https://data.delijn.be/stops/404751"], ["https://data.delijn.be/stops/503408", "https://data.delijn.be/stops/503441"], ["https://data.delijn.be/stops/303427", "https://data.delijn.be/stops/303429"], ["https://data.delijn.be/stops/304307", "https://data.delijn.be/stops/304309"], ["https://data.delijn.be/stops/501191", "https://data.delijn.be/stops/501497"], ["https://data.delijn.be/stops/202755", "https://data.delijn.be/stops/203795"], ["https://data.delijn.be/stops/107807", "https://data.delijn.be/stops/107810"], ["https://data.delijn.be/stops/408532", "https://data.delijn.be/stops/408765"], ["https://data.delijn.be/stops/402300", "https://data.delijn.be/stops/402446"], ["https://data.delijn.be/stops/303091", "https://data.delijn.be/stops/305443"], ["https://data.delijn.be/stops/500128", "https://data.delijn.be/stops/501675"], ["https://data.delijn.be/stops/400848", "https://data.delijn.be/stops/400849"], ["https://data.delijn.be/stops/204747", "https://data.delijn.be/stops/204748"], ["https://data.delijn.be/stops/301566", "https://data.delijn.be/stops/308080"], ["https://data.delijn.be/stops/300414", "https://data.delijn.be/stops/300608"], ["https://data.delijn.be/stops/102832", "https://data.delijn.be/stops/108415"], ["https://data.delijn.be/stops/305020", "https://data.delijn.be/stops/305040"], ["https://data.delijn.be/stops/305648", "https://data.delijn.be/stops/305671"], ["https://data.delijn.be/stops/402572", "https://data.delijn.be/stops/402654"], ["https://data.delijn.be/stops/501414", "https://data.delijn.be/stops/506414"], ["https://data.delijn.be/stops/402698", "https://data.delijn.be/stops/402882"], ["https://data.delijn.be/stops/400304", "https://data.delijn.be/stops/400339"], ["https://data.delijn.be/stops/206066", "https://data.delijn.be/stops/206067"], ["https://data.delijn.be/stops/206267", "https://data.delijn.be/stops/207026"], ["https://data.delijn.be/stops/201940", "https://data.delijn.be/stops/211098"], ["https://data.delijn.be/stops/503109", "https://data.delijn.be/stops/503356"], ["https://data.delijn.be/stops/305435", "https://data.delijn.be/stops/305522"], ["https://data.delijn.be/stops/407942", "https://data.delijn.be/stops/407960"], ["https://data.delijn.be/stops/202748", "https://data.delijn.be/stops/206422"], ["https://data.delijn.be/stops/108193", "https://data.delijn.be/stops/108197"], ["https://data.delijn.be/stops/506374", "https://data.delijn.be/stops/506375"], ["https://data.delijn.be/stops/106513", "https://data.delijn.be/stops/106514"], ["https://data.delijn.be/stops/508340", "https://data.delijn.be/stops/508343"], ["https://data.delijn.be/stops/400184", "https://data.delijn.be/stops/407679"], ["https://data.delijn.be/stops/505947", "https://data.delijn.be/stops/509908"], ["https://data.delijn.be/stops/206342", "https://data.delijn.be/stops/207342"], ["https://data.delijn.be/stops/502108", "https://data.delijn.be/stops/507141"], ["https://data.delijn.be/stops/501096", "https://data.delijn.be/stops/506096"], ["https://data.delijn.be/stops/501435", "https://data.delijn.be/stops/506435"], ["https://data.delijn.be/stops/407754", "https://data.delijn.be/stops/407756"], ["https://data.delijn.be/stops/508038", "https://data.delijn.be/stops/508269"], ["https://data.delijn.be/stops/105049", "https://data.delijn.be/stops/109759"], ["https://data.delijn.be/stops/300235", "https://data.delijn.be/stops/300294"], ["https://data.delijn.be/stops/400105", "https://data.delijn.be/stops/409105"], ["https://data.delijn.be/stops/304005", "https://data.delijn.be/stops/304007"], ["https://data.delijn.be/stops/504325", "https://data.delijn.be/stops/505925"], ["https://data.delijn.be/stops/205716", "https://data.delijn.be/stops/205717"], ["https://data.delijn.be/stops/303017", "https://data.delijn.be/stops/306107"], ["https://data.delijn.be/stops/505503", "https://data.delijn.be/stops/505618"], ["https://data.delijn.be/stops/506186", "https://data.delijn.be/stops/506187"], ["https://data.delijn.be/stops/406450", "https://data.delijn.be/stops/406451"], ["https://data.delijn.be/stops/206301", "https://data.delijn.be/stops/207303"], ["https://data.delijn.be/stops/404483", "https://data.delijn.be/stops/409261"], ["https://data.delijn.be/stops/109744", "https://data.delijn.be/stops/109746"], ["https://data.delijn.be/stops/106470", "https://data.delijn.be/stops/106471"], ["https://data.delijn.be/stops/401485", "https://data.delijn.be/stops/403887"], ["https://data.delijn.be/stops/206273", "https://data.delijn.be/stops/207273"], ["https://data.delijn.be/stops/505064", "https://data.delijn.be/stops/505067"], ["https://data.delijn.be/stops/202659", "https://data.delijn.be/stops/202660"], ["https://data.delijn.be/stops/300197", "https://data.delijn.be/stops/300198"], ["https://data.delijn.be/stops/300487", "https://data.delijn.be/stops/301406"], ["https://data.delijn.be/stops/502250", "https://data.delijn.be/stops/509207"], ["https://data.delijn.be/stops/403926", "https://data.delijn.be/stops/308752"], ["https://data.delijn.be/stops/210010", "https://data.delijn.be/stops/502289"], ["https://data.delijn.be/stops/404179", "https://data.delijn.be/stops/404195"], ["https://data.delijn.be/stops/509480", "https://data.delijn.be/stops/509515"], ["https://data.delijn.be/stops/305134", "https://data.delijn.be/stops/305140"], ["https://data.delijn.be/stops/208326", "https://data.delijn.be/stops/209326"], ["https://data.delijn.be/stops/304583", "https://data.delijn.be/stops/304584"], ["https://data.delijn.be/stops/402119", "https://data.delijn.be/stops/403691"], ["https://data.delijn.be/stops/202363", "https://data.delijn.be/stops/203989"], ["https://data.delijn.be/stops/504448", "https://data.delijn.be/stops/509448"], ["https://data.delijn.be/stops/206220", "https://data.delijn.be/stops/207808"], ["https://data.delijn.be/stops/300395", "https://data.delijn.be/stops/300396"], ["https://data.delijn.be/stops/506306", "https://data.delijn.be/stops/506324"], ["https://data.delijn.be/stops/106282", "https://data.delijn.be/stops/106283"], ["https://data.delijn.be/stops/106888", "https://data.delijn.be/stops/109900"], ["https://data.delijn.be/stops/202470", "https://data.delijn.be/stops/202471"], ["https://data.delijn.be/stops/303152", "https://data.delijn.be/stops/303153"], ["https://data.delijn.be/stops/504451", "https://data.delijn.be/stops/509451"], ["https://data.delijn.be/stops/502527", "https://data.delijn.be/stops/502708"], ["https://data.delijn.be/stops/108766", "https://data.delijn.be/stops/108767"], ["https://data.delijn.be/stops/405703", "https://data.delijn.be/stops/405741"], ["https://data.delijn.be/stops/204374", "https://data.delijn.be/stops/205762"], ["https://data.delijn.be/stops/206535", "https://data.delijn.be/stops/207535"], ["https://data.delijn.be/stops/206814", "https://data.delijn.be/stops/207818"], ["https://data.delijn.be/stops/202407", "https://data.delijn.be/stops/203013"], ["https://data.delijn.be/stops/401381", "https://data.delijn.be/stops/401382"], ["https://data.delijn.be/stops/300627", "https://data.delijn.be/stops/300730"], ["https://data.delijn.be/stops/303498", "https://data.delijn.be/stops/303499"], ["https://data.delijn.be/stops/101473", "https://data.delijn.be/stops/407111"], ["https://data.delijn.be/stops/408002", "https://data.delijn.be/stops/408340"], ["https://data.delijn.be/stops/305644", "https://data.delijn.be/stops/305645"], ["https://data.delijn.be/stops/205189", "https://data.delijn.be/stops/205229"], ["https://data.delijn.be/stops/104142", "https://data.delijn.be/stops/105803"], ["https://data.delijn.be/stops/502121", "https://data.delijn.be/stops/507149"], ["https://data.delijn.be/stops/505099", "https://data.delijn.be/stops/505964"], ["https://data.delijn.be/stops/107060", "https://data.delijn.be/stops/108227"], ["https://data.delijn.be/stops/505558", "https://data.delijn.be/stops/509946"], ["https://data.delijn.be/stops/101596", "https://data.delijn.be/stops/101597"], ["https://data.delijn.be/stops/206414", "https://data.delijn.be/stops/207127"], ["https://data.delijn.be/stops/402345", "https://data.delijn.be/stops/402415"], ["https://data.delijn.be/stops/302104", "https://data.delijn.be/stops/302105"], ["https://data.delijn.be/stops/403914", "https://data.delijn.be/stops/410350"], ["https://data.delijn.be/stops/401480", "https://data.delijn.be/stops/401776"], ["https://data.delijn.be/stops/509230", "https://data.delijn.be/stops/509236"], ["https://data.delijn.be/stops/106082", "https://data.delijn.be/stops/108732"], ["https://data.delijn.be/stops/201305", "https://data.delijn.be/stops/202761"], ["https://data.delijn.be/stops/206528", "https://data.delijn.be/stops/207528"], ["https://data.delijn.be/stops/502495", "https://data.delijn.be/stops/502925"], ["https://data.delijn.be/stops/404410", "https://data.delijn.be/stops/404415"], ["https://data.delijn.be/stops/405849", "https://data.delijn.be/stops/407292"], ["https://data.delijn.be/stops/109513", "https://data.delijn.be/stops/109514"], ["https://data.delijn.be/stops/201222", "https://data.delijn.be/stops/203136"], ["https://data.delijn.be/stops/106761", "https://data.delijn.be/stops/107516"], ["https://data.delijn.be/stops/405701", "https://data.delijn.be/stops/407204"], ["https://data.delijn.be/stops/501769", "https://data.delijn.be/stops/507530"], ["https://data.delijn.be/stops/200877", "https://data.delijn.be/stops/203063"], ["https://data.delijn.be/stops/304031", "https://data.delijn.be/stops/304032"], ["https://data.delijn.be/stops/403247", "https://data.delijn.be/stops/403383"], ["https://data.delijn.be/stops/408712", "https://data.delijn.be/stops/408721"], ["https://data.delijn.be/stops/206828", "https://data.delijn.be/stops/207252"], ["https://data.delijn.be/stops/400943", "https://data.delijn.be/stops/406955"], ["https://data.delijn.be/stops/305590", "https://data.delijn.be/stops/305617"], ["https://data.delijn.be/stops/504048", "https://data.delijn.be/stops/505368"], ["https://data.delijn.be/stops/404971", "https://data.delijn.be/stops/404972"], ["https://data.delijn.be/stops/202276", "https://data.delijn.be/stops/202418"], ["https://data.delijn.be/stops/502580", "https://data.delijn.be/stops/507111"], ["https://data.delijn.be/stops/105020", "https://data.delijn.be/stops/109774"], ["https://data.delijn.be/stops/401104", "https://data.delijn.be/stops/401105"], ["https://data.delijn.be/stops/304486", "https://data.delijn.be/stops/304515"], ["https://data.delijn.be/stops/408697", "https://data.delijn.be/stops/408701"], ["https://data.delijn.be/stops/300359", "https://data.delijn.be/stops/306313"], ["https://data.delijn.be/stops/109187", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/506039", "https://data.delijn.be/stops/506284"], ["https://data.delijn.be/stops/302574", "https://data.delijn.be/stops/302771"], ["https://data.delijn.be/stops/404975", "https://data.delijn.be/stops/404976"], ["https://data.delijn.be/stops/402549", "https://data.delijn.be/stops/402622"], ["https://data.delijn.be/stops/302898", "https://data.delijn.be/stops/303080"], ["https://data.delijn.be/stops/504104", "https://data.delijn.be/stops/504105"], ["https://data.delijn.be/stops/401279", "https://data.delijn.be/stops/401478"], ["https://data.delijn.be/stops/404696", "https://data.delijn.be/stops/407315"], ["https://data.delijn.be/stops/404445", "https://data.delijn.be/stops/404446"], ["https://data.delijn.be/stops/204193", "https://data.delijn.be/stops/204195"], ["https://data.delijn.be/stops/102461", "https://data.delijn.be/stops/102462"], ["https://data.delijn.be/stops/200994", "https://data.delijn.be/stops/202014"], ["https://data.delijn.be/stops/405705", "https://data.delijn.be/stops/305344"], ["https://data.delijn.be/stops/208564", "https://data.delijn.be/stops/209564"], ["https://data.delijn.be/stops/303656", "https://data.delijn.be/stops/308612"], ["https://data.delijn.be/stops/400715", "https://data.delijn.be/stops/409512"], ["https://data.delijn.be/stops/300945", "https://data.delijn.be/stops/301016"], ["https://data.delijn.be/stops/502507", "https://data.delijn.be/stops/502811"], ["https://data.delijn.be/stops/107963", "https://data.delijn.be/stops/108029"], ["https://data.delijn.be/stops/400032", "https://data.delijn.be/stops/400036"], ["https://data.delijn.be/stops/300095", "https://data.delijn.be/stops/304373"], ["https://data.delijn.be/stops/203520", "https://data.delijn.be/stops/203526"], ["https://data.delijn.be/stops/504815", "https://data.delijn.be/stops/508680"], ["https://data.delijn.be/stops/106858", "https://data.delijn.be/stops/109622"], ["https://data.delijn.be/stops/304202", "https://data.delijn.be/stops/305354"], ["https://data.delijn.be/stops/401786", "https://data.delijn.be/stops/406014"], ["https://data.delijn.be/stops/104099", "https://data.delijn.be/stops/107860"], ["https://data.delijn.be/stops/202720", "https://data.delijn.be/stops/203089"], ["https://data.delijn.be/stops/103349", "https://data.delijn.be/stops/104870"], ["https://data.delijn.be/stops/408760", "https://data.delijn.be/stops/408761"], ["https://data.delijn.be/stops/509279", "https://data.delijn.be/stops/509616"], ["https://data.delijn.be/stops/308795", "https://data.delijn.be/stops/308796"], ["https://data.delijn.be/stops/107344", "https://data.delijn.be/stops/108164"], ["https://data.delijn.be/stops/102335", "https://data.delijn.be/stops/107695"], ["https://data.delijn.be/stops/202201", "https://data.delijn.be/stops/203201"], ["https://data.delijn.be/stops/203832", "https://data.delijn.be/stops/208492"], ["https://data.delijn.be/stops/504793", "https://data.delijn.be/stops/504794"], ["https://data.delijn.be/stops/307907", "https://data.delijn.be/stops/308258"], ["https://data.delijn.be/stops/105687", "https://data.delijn.be/stops/105690"], ["https://data.delijn.be/stops/301406", "https://data.delijn.be/stops/307219"], ["https://data.delijn.be/stops/502268", "https://data.delijn.be/stops/502926"], ["https://data.delijn.be/stops/210079", "https://data.delijn.be/stops/211089"], ["https://data.delijn.be/stops/101278", "https://data.delijn.be/stops/205489"], ["https://data.delijn.be/stops/105198", "https://data.delijn.be/stops/108878"], ["https://data.delijn.be/stops/508402", "https://data.delijn.be/stops/510018"], ["https://data.delijn.be/stops/208489", "https://data.delijn.be/stops/209489"], ["https://data.delijn.be/stops/306201", "https://data.delijn.be/stops/306203"], ["https://data.delijn.be/stops/303618", "https://data.delijn.be/stops/303620"], ["https://data.delijn.be/stops/307400", "https://data.delijn.be/stops/307411"], ["https://data.delijn.be/stops/101977", "https://data.delijn.be/stops/308495"], ["https://data.delijn.be/stops/502016", "https://data.delijn.be/stops/507016"], ["https://data.delijn.be/stops/102922", "https://data.delijn.be/stops/103265"], ["https://data.delijn.be/stops/206973", "https://data.delijn.be/stops/207610"], ["https://data.delijn.be/stops/503051", "https://data.delijn.be/stops/508054"], ["https://data.delijn.be/stops/403075", "https://data.delijn.be/stops/403077"], ["https://data.delijn.be/stops/402217", "https://data.delijn.be/stops/402263"], ["https://data.delijn.be/stops/510020", "https://data.delijn.be/stops/510023"], ["https://data.delijn.be/stops/402323", "https://data.delijn.be/stops/402612"], ["https://data.delijn.be/stops/508256", "https://data.delijn.be/stops/508426"], ["https://data.delijn.be/stops/202966", "https://data.delijn.be/stops/205173"], ["https://data.delijn.be/stops/208111", "https://data.delijn.be/stops/209111"], ["https://data.delijn.be/stops/306815", "https://data.delijn.be/stops/308504"], ["https://data.delijn.be/stops/306064", "https://data.delijn.be/stops/307716"], ["https://data.delijn.be/stops/206545", "https://data.delijn.be/stops/209744"], ["https://data.delijn.be/stops/408800", "https://data.delijn.be/stops/408828"], ["https://data.delijn.be/stops/402845", "https://data.delijn.be/stops/409004"], ["https://data.delijn.be/stops/303164", "https://data.delijn.be/stops/303179"], ["https://data.delijn.be/stops/104466", "https://data.delijn.be/stops/104467"], ["https://data.delijn.be/stops/305152", "https://data.delijn.be/stops/305153"], ["https://data.delijn.be/stops/503063", "https://data.delijn.be/stops/505789"], ["https://data.delijn.be/stops/407773", "https://data.delijn.be/stops/307372"], ["https://data.delijn.be/stops/209164", "https://data.delijn.be/stops/209171"], ["https://data.delijn.be/stops/105279", "https://data.delijn.be/stops/105281"], ["https://data.delijn.be/stops/207417", "https://data.delijn.be/stops/207661"], ["https://data.delijn.be/stops/106152", "https://data.delijn.be/stops/106154"], ["https://data.delijn.be/stops/405037", "https://data.delijn.be/stops/405052"], ["https://data.delijn.be/stops/405676", "https://data.delijn.be/stops/408225"], ["https://data.delijn.be/stops/401652", "https://data.delijn.be/stops/401653"], ["https://data.delijn.be/stops/400755", "https://data.delijn.be/stops/400758"], ["https://data.delijn.be/stops/502796", "https://data.delijn.be/stops/508341"], ["https://data.delijn.be/stops/501035", "https://data.delijn.be/stops/501632"], ["https://data.delijn.be/stops/107148", "https://data.delijn.be/stops/109377"], ["https://data.delijn.be/stops/409562", "https://data.delijn.be/stops/409565"], ["https://data.delijn.be/stops/506729", "https://data.delijn.be/stops/507567"], ["https://data.delijn.be/stops/407693", "https://data.delijn.be/stops/407698"], ["https://data.delijn.be/stops/407008", "https://data.delijn.be/stops/407068"], ["https://data.delijn.be/stops/107326", "https://data.delijn.be/stops/107329"], ["https://data.delijn.be/stops/102013", "https://data.delijn.be/stops/107876"], ["https://data.delijn.be/stops/400519", "https://data.delijn.be/stops/401437"], ["https://data.delijn.be/stops/101828", "https://data.delijn.be/stops/106998"], ["https://data.delijn.be/stops/202677", "https://data.delijn.be/stops/203677"], ["https://data.delijn.be/stops/204722", "https://data.delijn.be/stops/205722"], ["https://data.delijn.be/stops/409814", "https://data.delijn.be/stops/409822"], ["https://data.delijn.be/stops/201693", "https://data.delijn.be/stops/203035"], ["https://data.delijn.be/stops/106734", "https://data.delijn.be/stops/107198"], ["https://data.delijn.be/stops/104713", "https://data.delijn.be/stops/108167"], ["https://data.delijn.be/stops/301166", "https://data.delijn.be/stops/304705"], ["https://data.delijn.be/stops/404141", "https://data.delijn.be/stops/405914"], ["https://data.delijn.be/stops/206488", "https://data.delijn.be/stops/207488"], ["https://data.delijn.be/stops/403630", "https://data.delijn.be/stops/403641"], ["https://data.delijn.be/stops/101824", "https://data.delijn.be/stops/102393"], ["https://data.delijn.be/stops/101688", "https://data.delijn.be/stops/101689"], ["https://data.delijn.be/stops/303209", "https://data.delijn.be/stops/303210"], ["https://data.delijn.be/stops/503917", "https://data.delijn.be/stops/508928"], ["https://data.delijn.be/stops/200860", "https://data.delijn.be/stops/202289"], ["https://data.delijn.be/stops/404331", "https://data.delijn.be/stops/406816"], ["https://data.delijn.be/stops/501124", "https://data.delijn.be/stops/505038"], ["https://data.delijn.be/stops/303676", "https://data.delijn.be/stops/307682"], ["https://data.delijn.be/stops/409358", "https://data.delijn.be/stops/409373"], ["https://data.delijn.be/stops/206079", "https://data.delijn.be/stops/207305"], ["https://data.delijn.be/stops/206690", "https://data.delijn.be/stops/207185"], ["https://data.delijn.be/stops/109312", "https://data.delijn.be/stops/109356"], ["https://data.delijn.be/stops/508369", "https://data.delijn.be/stops/510024"], ["https://data.delijn.be/stops/305147", "https://data.delijn.be/stops/305185"], ["https://data.delijn.be/stops/508071", "https://data.delijn.be/stops/508869"], ["https://data.delijn.be/stops/406494", "https://data.delijn.be/stops/406495"], ["https://data.delijn.be/stops/200910", "https://data.delijn.be/stops/203539"], ["https://data.delijn.be/stops/306770", "https://data.delijn.be/stops/306820"], ["https://data.delijn.be/stops/108974", "https://data.delijn.be/stops/108978"], ["https://data.delijn.be/stops/201088", "https://data.delijn.be/stops/203960"], ["https://data.delijn.be/stops/407803", "https://data.delijn.be/stops/407808"], ["https://data.delijn.be/stops/200867", "https://data.delijn.be/stops/200895"], ["https://data.delijn.be/stops/404285", "https://data.delijn.be/stops/407091"], ["https://data.delijn.be/stops/302997", "https://data.delijn.be/stops/303024"], ["https://data.delijn.be/stops/404631", "https://data.delijn.be/stops/404632"], ["https://data.delijn.be/stops/300958", "https://data.delijn.be/stops/300961"], ["https://data.delijn.be/stops/307357", "https://data.delijn.be/stops/307365"], ["https://data.delijn.be/stops/406191", "https://data.delijn.be/stops/406431"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/506742"], ["https://data.delijn.be/stops/301446", "https://data.delijn.be/stops/307798"], ["https://data.delijn.be/stops/509033", "https://data.delijn.be/stops/509035"], ["https://data.delijn.be/stops/303754", "https://data.delijn.be/stops/303762"], ["https://data.delijn.be/stops/407589", "https://data.delijn.be/stops/409806"], ["https://data.delijn.be/stops/303822", "https://data.delijn.be/stops/303845"], ["https://data.delijn.be/stops/502549", "https://data.delijn.be/stops/502664"], ["https://data.delijn.be/stops/205309", "https://data.delijn.be/stops/205448"], ["https://data.delijn.be/stops/405715", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/502559", "https://data.delijn.be/stops/502656"], ["https://data.delijn.be/stops/202176", "https://data.delijn.be/stops/202178"], ["https://data.delijn.be/stops/200804", "https://data.delijn.be/stops/200898"], ["https://data.delijn.be/stops/205105", "https://data.delijn.be/stops/205363"], ["https://data.delijn.be/stops/501081", "https://data.delijn.be/stops/506081"], ["https://data.delijn.be/stops/503497", "https://data.delijn.be/stops/508499"], ["https://data.delijn.be/stops/103363", "https://data.delijn.be/stops/105700"], ["https://data.delijn.be/stops/106397", "https://data.delijn.be/stops/106579"], ["https://data.delijn.be/stops/202920", "https://data.delijn.be/stops/211097"], ["https://data.delijn.be/stops/109037", "https://data.delijn.be/stops/109039"], ["https://data.delijn.be/stops/105041", "https://data.delijn.be/stops/105043"], ["https://data.delijn.be/stops/402818", "https://data.delijn.be/stops/406960"], ["https://data.delijn.be/stops/105033", "https://data.delijn.be/stops/106720"], ["https://data.delijn.be/stops/404400", "https://data.delijn.be/stops/404425"], ["https://data.delijn.be/stops/403531", "https://data.delijn.be/stops/408453"], ["https://data.delijn.be/stops/408171", "https://data.delijn.be/stops/409193"], ["https://data.delijn.be/stops/401397", "https://data.delijn.be/stops/300924"], ["https://data.delijn.be/stops/405776", "https://data.delijn.be/stops/409427"], ["https://data.delijn.be/stops/505926", "https://data.delijn.be/stops/509244"], ["https://data.delijn.be/stops/304378", "https://data.delijn.be/stops/307401"], ["https://data.delijn.be/stops/503849", "https://data.delijn.be/stops/508849"], ["https://data.delijn.be/stops/504076", "https://data.delijn.be/stops/509077"], ["https://data.delijn.be/stops/206161", "https://data.delijn.be/stops/207161"], ["https://data.delijn.be/stops/108736", "https://data.delijn.be/stops/108737"], ["https://data.delijn.be/stops/404713", "https://data.delijn.be/stops/404786"], ["https://data.delijn.be/stops/102848", "https://data.delijn.be/stops/103763"], ["https://data.delijn.be/stops/305547", "https://data.delijn.be/stops/307185"], ["https://data.delijn.be/stops/101834", "https://data.delijn.be/stops/107032"], ["https://data.delijn.be/stops/303412", "https://data.delijn.be/stops/303431"], ["https://data.delijn.be/stops/503038", "https://data.delijn.be/stops/503214"], ["https://data.delijn.be/stops/400491", "https://data.delijn.be/stops/407201"], ["https://data.delijn.be/stops/102424", "https://data.delijn.be/stops/105665"], ["https://data.delijn.be/stops/101932", "https://data.delijn.be/stops/106253"], ["https://data.delijn.be/stops/203920", "https://data.delijn.be/stops/203924"], ["https://data.delijn.be/stops/105876", "https://data.delijn.be/stops/105881"], ["https://data.delijn.be/stops/208169", "https://data.delijn.be/stops/209168"], ["https://data.delijn.be/stops/202084", "https://data.delijn.be/stops/202085"], ["https://data.delijn.be/stops/102236", "https://data.delijn.be/stops/105866"], ["https://data.delijn.be/stops/403950", "https://data.delijn.be/stops/404025"], ["https://data.delijn.be/stops/407825", "https://data.delijn.be/stops/407921"], ["https://data.delijn.be/stops/102190", "https://data.delijn.be/stops/102686"], ["https://data.delijn.be/stops/504492", "https://data.delijn.be/stops/509510"], ["https://data.delijn.be/stops/405899", "https://data.delijn.be/stops/410069"], ["https://data.delijn.be/stops/207339", "https://data.delijn.be/stops/207704"], ["https://data.delijn.be/stops/400516", "https://data.delijn.be/stops/401437"], ["https://data.delijn.be/stops/101991", "https://data.delijn.be/stops/105615"], ["https://data.delijn.be/stops/107222", "https://data.delijn.be/stops/107224"], ["https://data.delijn.be/stops/503513", "https://data.delijn.be/stops/508518"], ["https://data.delijn.be/stops/501203", "https://data.delijn.be/stops/506203"], ["https://data.delijn.be/stops/400752", "https://data.delijn.be/stops/409579"], ["https://data.delijn.be/stops/402204", "https://data.delijn.be/stops/402205"], ["https://data.delijn.be/stops/501420", "https://data.delijn.be/stops/506422"], ["https://data.delijn.be/stops/502378", "https://data.delijn.be/stops/507410"], ["https://data.delijn.be/stops/204912", "https://data.delijn.be/stops/205911"], ["https://data.delijn.be/stops/403025", "https://data.delijn.be/stops/403132"], ["https://data.delijn.be/stops/409331", "https://data.delijn.be/stops/410326"], ["https://data.delijn.be/stops/301747", "https://data.delijn.be/stops/308414"], ["https://data.delijn.be/stops/300399", "https://data.delijn.be/stops/300400"], ["https://data.delijn.be/stops/108061", "https://data.delijn.be/stops/108359"], ["https://data.delijn.be/stops/508139", "https://data.delijn.be/stops/508314"], ["https://data.delijn.be/stops/202722", "https://data.delijn.be/stops/203723"], ["https://data.delijn.be/stops/302481", "https://data.delijn.be/stops/302671"], ["https://data.delijn.be/stops/202205", "https://data.delijn.be/stops/203505"], ["https://data.delijn.be/stops/300660", "https://data.delijn.be/stops/302470"], ["https://data.delijn.be/stops/204729", "https://data.delijn.be/stops/204758"], ["https://data.delijn.be/stops/401904", "https://data.delijn.be/stops/406247"], ["https://data.delijn.be/stops/204074", "https://data.delijn.be/stops/205797"], ["https://data.delijn.be/stops/501738", "https://data.delijn.be/stops/506738"], ["https://data.delijn.be/stops/303379", "https://data.delijn.be/stops/303672"], ["https://data.delijn.be/stops/505317", "https://data.delijn.be/stops/507692"], ["https://data.delijn.be/stops/403825", "https://data.delijn.be/stops/404264"], ["https://data.delijn.be/stops/500602", "https://data.delijn.be/stops/501535"], ["https://data.delijn.be/stops/200086", "https://data.delijn.be/stops/203478"], ["https://data.delijn.be/stops/301089", "https://data.delijn.be/stops/301099"], ["https://data.delijn.be/stops/106383", "https://data.delijn.be/stops/106385"], ["https://data.delijn.be/stops/408405", "https://data.delijn.be/stops/408406"], ["https://data.delijn.be/stops/305515", "https://data.delijn.be/stops/305518"], ["https://data.delijn.be/stops/201894", "https://data.delijn.be/stops/211050"], ["https://data.delijn.be/stops/102632", "https://data.delijn.be/stops/108207"], ["https://data.delijn.be/stops/302667", "https://data.delijn.be/stops/302677"], ["https://data.delijn.be/stops/306643", "https://data.delijn.be/stops/306644"], ["https://data.delijn.be/stops/105782", "https://data.delijn.be/stops/105783"], ["https://data.delijn.be/stops/207041", "https://data.delijn.be/stops/216011"], ["https://data.delijn.be/stops/502013", "https://data.delijn.be/stops/507013"], ["https://data.delijn.be/stops/103298", "https://data.delijn.be/stops/105087"], ["https://data.delijn.be/stops/501120", "https://data.delijn.be/stops/506119"], ["https://data.delijn.be/stops/402365", "https://data.delijn.be/stops/410072"], ["https://data.delijn.be/stops/303728", "https://data.delijn.be/stops/303741"], ["https://data.delijn.be/stops/301364", "https://data.delijn.be/stops/306125"], ["https://data.delijn.be/stops/304637", "https://data.delijn.be/stops/305977"], ["https://data.delijn.be/stops/200014", "https://data.delijn.be/stops/201014"], ["https://data.delijn.be/stops/101770", "https://data.delijn.be/stops/102415"], ["https://data.delijn.be/stops/106765", "https://data.delijn.be/stops/106766"], ["https://data.delijn.be/stops/108328", "https://data.delijn.be/stops/108329"], ["https://data.delijn.be/stops/210001", "https://data.delijn.be/stops/211001"], ["https://data.delijn.be/stops/401000", "https://data.delijn.be/stops/403800"], ["https://data.delijn.be/stops/106913", "https://data.delijn.be/stops/106916"], ["https://data.delijn.be/stops/400433", "https://data.delijn.be/stops/405132"], ["https://data.delijn.be/stops/308611", "https://data.delijn.be/stops/308612"], ["https://data.delijn.be/stops/403272", "https://data.delijn.be/stops/403531"], ["https://data.delijn.be/stops/507027", "https://data.delijn.be/stops/507281"], ["https://data.delijn.be/stops/504507", "https://data.delijn.be/stops/509507"], ["https://data.delijn.be/stops/400706", "https://data.delijn.be/stops/401910"], ["https://data.delijn.be/stops/505304", "https://data.delijn.be/stops/509462"], ["https://data.delijn.be/stops/204646", "https://data.delijn.be/stops/205272"], ["https://data.delijn.be/stops/305195", "https://data.delijn.be/stops/305203"], ["https://data.delijn.be/stops/407903", "https://data.delijn.be/stops/407905"], ["https://data.delijn.be/stops/304841", "https://data.delijn.be/stops/307281"], ["https://data.delijn.be/stops/302017", "https://data.delijn.be/stops/302083"], ["https://data.delijn.be/stops/104502", "https://data.delijn.be/stops/107932"], ["https://data.delijn.be/stops/503901", "https://data.delijn.be/stops/508901"], ["https://data.delijn.be/stops/107463", "https://data.delijn.be/stops/109529"], ["https://data.delijn.be/stops/502132", "https://data.delijn.be/stops/507149"], ["https://data.delijn.be/stops/104495", "https://data.delijn.be/stops/104498"], ["https://data.delijn.be/stops/101555", "https://data.delijn.be/stops/103900"], ["https://data.delijn.be/stops/104489", "https://data.delijn.be/stops/104560"], ["https://data.delijn.be/stops/403169", "https://data.delijn.be/stops/403864"], ["https://data.delijn.be/stops/401136", "https://data.delijn.be/stops/401137"], ["https://data.delijn.be/stops/301239", "https://data.delijn.be/stops/301240"], ["https://data.delijn.be/stops/508801", "https://data.delijn.be/stops/508806"], ["https://data.delijn.be/stops/304502", "https://data.delijn.be/stops/304503"], ["https://data.delijn.be/stops/102421", "https://data.delijn.be/stops/106259"], ["https://data.delijn.be/stops/207687", "https://data.delijn.be/stops/207720"], ["https://data.delijn.be/stops/503660", "https://data.delijn.be/stops/508667"], ["https://data.delijn.be/stops/508918", "https://data.delijn.be/stops/508922"], ["https://data.delijn.be/stops/207880", "https://data.delijn.be/stops/207999"], ["https://data.delijn.be/stops/107843", "https://data.delijn.be/stops/109652"], ["https://data.delijn.be/stops/101565", "https://data.delijn.be/stops/104945"], ["https://data.delijn.be/stops/202506", "https://data.delijn.be/stops/203930"], ["https://data.delijn.be/stops/102949", "https://data.delijn.be/stops/106593"], ["https://data.delijn.be/stops/204240", "https://data.delijn.be/stops/204707"], ["https://data.delijn.be/stops/405300", "https://data.delijn.be/stops/405404"], ["https://data.delijn.be/stops/406073", "https://data.delijn.be/stops/407489"], ["https://data.delijn.be/stops/102898", "https://data.delijn.be/stops/106759"], ["https://data.delijn.be/stops/208184", "https://data.delijn.be/stops/209183"], ["https://data.delijn.be/stops/407746", "https://data.delijn.be/stops/407756"], ["https://data.delijn.be/stops/504438", "https://data.delijn.be/stops/505211"], ["https://data.delijn.be/stops/402725", "https://data.delijn.be/stops/402731"], ["https://data.delijn.be/stops/305504", "https://data.delijn.be/stops/305507"], ["https://data.delijn.be/stops/204133", "https://data.delijn.be/stops/204791"], ["https://data.delijn.be/stops/102308", "https://data.delijn.be/stops/102943"], ["https://data.delijn.be/stops/508017", "https://data.delijn.be/stops/508019"], ["https://data.delijn.be/stops/108473", "https://data.delijn.be/stops/108610"], ["https://data.delijn.be/stops/401014", "https://data.delijn.be/stops/401137"], ["https://data.delijn.be/stops/102921", "https://data.delijn.be/stops/104492"], ["https://data.delijn.be/stops/404126", "https://data.delijn.be/stops/408738"], ["https://data.delijn.be/stops/407985", "https://data.delijn.be/stops/408032"], ["https://data.delijn.be/stops/105343", "https://data.delijn.be/stops/109618"], ["https://data.delijn.be/stops/206567", "https://data.delijn.be/stops/206998"], ["https://data.delijn.be/stops/102181", "https://data.delijn.be/stops/102182"], ["https://data.delijn.be/stops/200956", "https://data.delijn.be/stops/203391"], ["https://data.delijn.be/stops/504385", "https://data.delijn.be/stops/509385"], ["https://data.delijn.be/stops/302741", "https://data.delijn.be/stops/302753"], ["https://data.delijn.be/stops/509617", "https://data.delijn.be/stops/509624"], ["https://data.delijn.be/stops/103145", "https://data.delijn.be/stops/109441"], ["https://data.delijn.be/stops/101473", "https://data.delijn.be/stops/103096"], ["https://data.delijn.be/stops/302937", "https://data.delijn.be/stops/303083"], ["https://data.delijn.be/stops/202124", "https://data.delijn.be/stops/203124"], ["https://data.delijn.be/stops/406554", "https://data.delijn.be/stops/406560"], ["https://data.delijn.be/stops/304022", "https://data.delijn.be/stops/304229"], ["https://data.delijn.be/stops/101643", "https://data.delijn.be/stops/105834"], ["https://data.delijn.be/stops/404663", "https://data.delijn.be/stops/404665"], ["https://data.delijn.be/stops/206840", "https://data.delijn.be/stops/207840"], ["https://data.delijn.be/stops/406054", "https://data.delijn.be/stops/406055"], ["https://data.delijn.be/stops/201694", "https://data.delijn.be/stops/203034"], ["https://data.delijn.be/stops/304766", "https://data.delijn.be/stops/304767"], ["https://data.delijn.be/stops/508445", "https://data.delijn.be/stops/508748"], ["https://data.delijn.be/stops/501084", "https://data.delijn.be/stops/506646"], ["https://data.delijn.be/stops/501055", "https://data.delijn.be/stops/501361"], ["https://data.delijn.be/stops/408311", "https://data.delijn.be/stops/408355"], ["https://data.delijn.be/stops/401996", "https://data.delijn.be/stops/404061"], ["https://data.delijn.be/stops/103340", "https://data.delijn.be/stops/105808"], ["https://data.delijn.be/stops/207429", "https://data.delijn.be/stops/207430"], ["https://data.delijn.be/stops/503441", "https://data.delijn.be/stops/508441"], ["https://data.delijn.be/stops/300843", "https://data.delijn.be/stops/306720"], ["https://data.delijn.be/stops/204302", "https://data.delijn.be/stops/205048"], ["https://data.delijn.be/stops/400768", "https://data.delijn.be/stops/405259"], ["https://data.delijn.be/stops/504160", "https://data.delijn.be/stops/509151"], ["https://data.delijn.be/stops/208527", "https://data.delijn.be/stops/208533"], ["https://data.delijn.be/stops/403237", "https://data.delijn.be/stops/410209"], ["https://data.delijn.be/stops/508154", "https://data.delijn.be/stops/509844"], ["https://data.delijn.be/stops/505781", "https://data.delijn.be/stops/506637"], ["https://data.delijn.be/stops/104939", "https://data.delijn.be/stops/107851"], ["https://data.delijn.be/stops/104794", "https://data.delijn.be/stops/106983"], ["https://data.delijn.be/stops/202463", "https://data.delijn.be/stops/203462"], ["https://data.delijn.be/stops/301001", "https://data.delijn.be/stops/306813"], ["https://data.delijn.be/stops/503919", "https://data.delijn.be/stops/504108"], ["https://data.delijn.be/stops/305154", "https://data.delijn.be/stops/306880"], ["https://data.delijn.be/stops/400534", "https://data.delijn.be/stops/403886"], ["https://data.delijn.be/stops/508499", "https://data.delijn.be/stops/508683"], ["https://data.delijn.be/stops/202883", "https://data.delijn.be/stops/207938"], ["https://data.delijn.be/stops/104382", "https://data.delijn.be/stops/104384"], ["https://data.delijn.be/stops/101833", "https://data.delijn.be/stops/107092"], ["https://data.delijn.be/stops/202475", "https://data.delijn.be/stops/202476"], ["https://data.delijn.be/stops/505999", "https://data.delijn.be/stops/508306"], ["https://data.delijn.be/stops/206296", "https://data.delijn.be/stops/207500"], ["https://data.delijn.be/stops/103165", "https://data.delijn.be/stops/103185"], ["https://data.delijn.be/stops/201763", "https://data.delijn.be/stops/209274"], ["https://data.delijn.be/stops/208568", "https://data.delijn.be/stops/209568"], ["https://data.delijn.be/stops/408258", "https://data.delijn.be/stops/408259"], ["https://data.delijn.be/stops/401040", "https://data.delijn.be/stops/401041"], ["https://data.delijn.be/stops/106289", "https://data.delijn.be/stops/106312"], ["https://data.delijn.be/stops/509700", "https://data.delijn.be/stops/509701"], ["https://data.delijn.be/stops/507520", "https://data.delijn.be/stops/509892"], ["https://data.delijn.be/stops/106264", "https://data.delijn.be/stops/106339"], ["https://data.delijn.be/stops/200562", "https://data.delijn.be/stops/200563"], ["https://data.delijn.be/stops/204593", "https://data.delijn.be/stops/204594"], ["https://data.delijn.be/stops/503653", "https://data.delijn.be/stops/508653"], ["https://data.delijn.be/stops/406198", "https://data.delijn.be/stops/406264"], ["https://data.delijn.be/stops/502502", "https://data.delijn.be/stops/505332"], ["https://data.delijn.be/stops/304368", "https://data.delijn.be/stops/307371"], ["https://data.delijn.be/stops/403612", "https://data.delijn.be/stops/405807"], ["https://data.delijn.be/stops/503817", "https://data.delijn.be/stops/508816"], ["https://data.delijn.be/stops/204304", "https://data.delijn.be/stops/205298"], ["https://data.delijn.be/stops/506181", "https://data.delijn.be/stops/506675"], ["https://data.delijn.be/stops/109043", "https://data.delijn.be/stops/109319"], ["https://data.delijn.be/stops/501026", "https://data.delijn.be/stops/501039"], ["https://data.delijn.be/stops/305423", "https://data.delijn.be/stops/305433"], ["https://data.delijn.be/stops/305334", "https://data.delijn.be/stops/307603"], ["https://data.delijn.be/stops/407694", "https://data.delijn.be/stops/407698"], ["https://data.delijn.be/stops/301694", "https://data.delijn.be/stops/301695"], ["https://data.delijn.be/stops/408248", "https://data.delijn.be/stops/408249"], ["https://data.delijn.be/stops/302179", "https://data.delijn.be/stops/306916"], ["https://data.delijn.be/stops/304362", "https://data.delijn.be/stops/304370"], ["https://data.delijn.be/stops/402759", "https://data.delijn.be/stops/402767"], ["https://data.delijn.be/stops/404401", "https://data.delijn.be/stops/404425"], ["https://data.delijn.be/stops/407906", "https://data.delijn.be/stops/408420"], ["https://data.delijn.be/stops/105739", "https://data.delijn.be/stops/109834"], ["https://data.delijn.be/stops/504213", "https://data.delijn.be/stops/504219"], ["https://data.delijn.be/stops/302975", "https://data.delijn.be/stops/303026"], ["https://data.delijn.be/stops/200683", "https://data.delijn.be/stops/209650"], ["https://data.delijn.be/stops/508255", "https://data.delijn.be/stops/508430"], ["https://data.delijn.be/stops/305083", "https://data.delijn.be/stops/305089"], ["https://data.delijn.be/stops/207853", "https://data.delijn.be/stops/207858"], ["https://data.delijn.be/stops/305537", "https://data.delijn.be/stops/308553"], ["https://data.delijn.be/stops/308487", "https://data.delijn.be/stops/308489"], ["https://data.delijn.be/stops/505603", "https://data.delijn.be/stops/505623"], ["https://data.delijn.be/stops/105871", "https://data.delijn.be/stops/105888"], ["https://data.delijn.be/stops/200163", "https://data.delijn.be/stops/201418"], ["https://data.delijn.be/stops/400236", "https://data.delijn.be/stops/410000"], ["https://data.delijn.be/stops/200764", "https://data.delijn.be/stops/208303"], ["https://data.delijn.be/stops/503793", "https://data.delijn.be/stops/508798"], ["https://data.delijn.be/stops/200028", "https://data.delijn.be/stops/200446"], ["https://data.delijn.be/stops/208247", "https://data.delijn.be/stops/208855"], ["https://data.delijn.be/stops/106198", "https://data.delijn.be/stops/106199"], ["https://data.delijn.be/stops/401578", "https://data.delijn.be/stops/402281"], ["https://data.delijn.be/stops/206093", "https://data.delijn.be/stops/207093"], ["https://data.delijn.be/stops/402298", "https://data.delijn.be/stops/402299"], ["https://data.delijn.be/stops/501382", "https://data.delijn.be/stops/509203"], ["https://data.delijn.be/stops/204144", "https://data.delijn.be/stops/206633"], ["https://data.delijn.be/stops/104720", "https://data.delijn.be/stops/104721"], ["https://data.delijn.be/stops/302870", "https://data.delijn.be/stops/307072"], ["https://data.delijn.be/stops/301022", "https://data.delijn.be/stops/305916"], ["https://data.delijn.be/stops/505184", "https://data.delijn.be/stops/505788"], ["https://data.delijn.be/stops/202768", "https://data.delijn.be/stops/203768"], ["https://data.delijn.be/stops/305445", "https://data.delijn.be/stops/306704"], ["https://data.delijn.be/stops/301871", "https://data.delijn.be/stops/301872"], ["https://data.delijn.be/stops/204654", "https://data.delijn.be/stops/205654"], ["https://data.delijn.be/stops/308749", "https://data.delijn.be/stops/308750"], ["https://data.delijn.be/stops/104816", "https://data.delijn.be/stops/105166"], ["https://data.delijn.be/stops/106176", "https://data.delijn.be/stops/106177"], ["https://data.delijn.be/stops/403951", "https://data.delijn.be/stops/404025"], ["https://data.delijn.be/stops/405211", "https://data.delijn.be/stops/410167"], ["https://data.delijn.be/stops/105472", "https://data.delijn.be/stops/105674"], ["https://data.delijn.be/stops/407614", "https://data.delijn.be/stops/407615"], ["https://data.delijn.be/stops/306846", "https://data.delijn.be/stops/306866"], ["https://data.delijn.be/stops/108361", "https://data.delijn.be/stops/109012"], ["https://data.delijn.be/stops/308725", "https://data.delijn.be/stops/308733"], ["https://data.delijn.be/stops/505583", "https://data.delijn.be/stops/507254"], ["https://data.delijn.be/stops/301975", "https://data.delijn.be/stops/304563"], ["https://data.delijn.be/stops/206556", "https://data.delijn.be/stops/207555"], ["https://data.delijn.be/stops/109248", "https://data.delijn.be/stops/109266"], ["https://data.delijn.be/stops/302904", "https://data.delijn.be/stops/303227"], ["https://data.delijn.be/stops/401519", "https://data.delijn.be/stops/401710"], ["https://data.delijn.be/stops/202966", "https://data.delijn.be/stops/203967"], ["https://data.delijn.be/stops/303560", "https://data.delijn.be/stops/308617"], ["https://data.delijn.be/stops/201652", "https://data.delijn.be/stops/203316"], ["https://data.delijn.be/stops/208062", "https://data.delijn.be/stops/209063"], ["https://data.delijn.be/stops/102910", "https://data.delijn.be/stops/104889"], ["https://data.delijn.be/stops/402659", "https://data.delijn.be/stops/402716"], ["https://data.delijn.be/stops/105533", "https://data.delijn.be/stops/105537"], ["https://data.delijn.be/stops/200488", "https://data.delijn.be/stops/202455"], ["https://data.delijn.be/stops/401466", "https://data.delijn.be/stops/401487"], ["https://data.delijn.be/stops/405564", "https://data.delijn.be/stops/405565"], ["https://data.delijn.be/stops/503644", "https://data.delijn.be/stops/503727"], ["https://data.delijn.be/stops/502416", "https://data.delijn.be/stops/507430"], ["https://data.delijn.be/stops/208339", "https://data.delijn.be/stops/208782"], ["https://data.delijn.be/stops/207706", "https://data.delijn.be/stops/207707"], ["https://data.delijn.be/stops/206124", "https://data.delijn.be/stops/206132"], ["https://data.delijn.be/stops/502431", "https://data.delijn.be/stops/502622"], ["https://data.delijn.be/stops/108999", "https://data.delijn.be/stops/408147"], ["https://data.delijn.be/stops/204541", "https://data.delijn.be/stops/204614"], ["https://data.delijn.be/stops/406634", "https://data.delijn.be/stops/406647"], ["https://data.delijn.be/stops/201470", "https://data.delijn.be/stops/203455"], ["https://data.delijn.be/stops/206772", "https://data.delijn.be/stops/206784"], ["https://data.delijn.be/stops/301402", "https://data.delijn.be/stops/306313"], ["https://data.delijn.be/stops/404666", "https://data.delijn.be/stops/404668"], ["https://data.delijn.be/stops/506393", "https://data.delijn.be/stops/506464"], ["https://data.delijn.be/stops/206176", "https://data.delijn.be/stops/206447"], ["https://data.delijn.be/stops/303588", "https://data.delijn.be/stops/305267"], ["https://data.delijn.be/stops/108707", "https://data.delijn.be/stops/108852"], ["https://data.delijn.be/stops/208180", "https://data.delijn.be/stops/209179"], ["https://data.delijn.be/stops/209387", "https://data.delijn.be/stops/209449"], ["https://data.delijn.be/stops/502636", "https://data.delijn.be/stops/502806"], ["https://data.delijn.be/stops/502423", "https://data.delijn.be/stops/507423"], ["https://data.delijn.be/stops/200698", "https://data.delijn.be/stops/200744"], ["https://data.delijn.be/stops/302309", "https://data.delijn.be/stops/302332"], ["https://data.delijn.be/stops/306650", "https://data.delijn.be/stops/306651"], ["https://data.delijn.be/stops/502136", "https://data.delijn.be/stops/507138"], ["https://data.delijn.be/stops/504723", "https://data.delijn.be/stops/505837"], ["https://data.delijn.be/stops/306925", "https://data.delijn.be/stops/308726"], ["https://data.delijn.be/stops/403454", "https://data.delijn.be/stops/403455"], ["https://data.delijn.be/stops/102023", "https://data.delijn.be/stops/109960"], ["https://data.delijn.be/stops/405733", "https://data.delijn.be/stops/405736"], ["https://data.delijn.be/stops/303996", "https://data.delijn.be/stops/308447"], ["https://data.delijn.be/stops/504369", "https://data.delijn.be/stops/505390"], ["https://data.delijn.be/stops/203674", "https://data.delijn.be/stops/203675"], ["https://data.delijn.be/stops/505087", "https://data.delijn.be/stops/505223"], ["https://data.delijn.be/stops/501240", "https://data.delijn.be/stops/501257"], ["https://data.delijn.be/stops/104133", "https://data.delijn.be/stops/108043"], ["https://data.delijn.be/stops/205100", "https://data.delijn.be/stops/205896"], ["https://data.delijn.be/stops/103098", "https://data.delijn.be/stops/103318"], ["https://data.delijn.be/stops/109750", "https://data.delijn.be/stops/109901"], ["https://data.delijn.be/stops/105891", "https://data.delijn.be/stops/105906"], ["https://data.delijn.be/stops/308139", "https://data.delijn.be/stops/308144"], ["https://data.delijn.be/stops/307002", "https://data.delijn.be/stops/308095"], ["https://data.delijn.be/stops/303416", "https://data.delijn.be/stops/303420"], ["https://data.delijn.be/stops/206604", "https://data.delijn.be/stops/216020"], ["https://data.delijn.be/stops/200010", "https://data.delijn.be/stops/210021"], ["https://data.delijn.be/stops/400310", "https://data.delijn.be/stops/400384"], ["https://data.delijn.be/stops/203831", "https://data.delijn.be/stops/203947"], ["https://data.delijn.be/stops/405339", "https://data.delijn.be/stops/306920"], ["https://data.delijn.be/stops/103146", "https://data.delijn.be/stops/106296"], ["https://data.delijn.be/stops/301967", "https://data.delijn.be/stops/307226"], ["https://data.delijn.be/stops/207958", "https://data.delijn.be/stops/302153"], ["https://data.delijn.be/stops/300750", "https://data.delijn.be/stops/300793"], ["https://data.delijn.be/stops/206703", "https://data.delijn.be/stops/207976"], ["https://data.delijn.be/stops/305726", "https://data.delijn.be/stops/305727"], ["https://data.delijn.be/stops/102541", "https://data.delijn.be/stops/408191"], ["https://data.delijn.be/stops/403982", "https://data.delijn.be/stops/403985"], ["https://data.delijn.be/stops/408125", "https://data.delijn.be/stops/408433"], ["https://data.delijn.be/stops/102185", "https://data.delijn.be/stops/102340"], ["https://data.delijn.be/stops/401467", "https://data.delijn.be/stops/401486"], ["https://data.delijn.be/stops/105163", "https://data.delijn.be/stops/107504"], ["https://data.delijn.be/stops/107110", "https://data.delijn.be/stops/108820"], ["https://data.delijn.be/stops/302609", "https://data.delijn.be/stops/302636"], ["https://data.delijn.be/stops/207016", "https://data.delijn.be/stops/207020"], ["https://data.delijn.be/stops/502797", "https://data.delijn.be/stops/505015"], ["https://data.delijn.be/stops/501351", "https://data.delijn.be/stops/506453"], ["https://data.delijn.be/stops/302498", "https://data.delijn.be/stops/302503"], ["https://data.delijn.be/stops/300869", "https://data.delijn.be/stops/302240"], ["https://data.delijn.be/stops/201938", "https://data.delijn.be/stops/203449"], ["https://data.delijn.be/stops/107315", "https://data.delijn.be/stops/107320"], ["https://data.delijn.be/stops/108072", "https://data.delijn.be/stops/108463"], ["https://data.delijn.be/stops/206299", "https://data.delijn.be/stops/206458"], ["https://data.delijn.be/stops/102511", "https://data.delijn.be/stops/406470"], ["https://data.delijn.be/stops/303193", "https://data.delijn.be/stops/303209"], ["https://data.delijn.be/stops/303983", "https://data.delijn.be/stops/304293"], ["https://data.delijn.be/stops/101802", "https://data.delijn.be/stops/105750"], ["https://data.delijn.be/stops/101188", "https://data.delijn.be/stops/101189"], ["https://data.delijn.be/stops/302334", "https://data.delijn.be/stops/302574"], ["https://data.delijn.be/stops/302843", "https://data.delijn.be/stops/302844"], ["https://data.delijn.be/stops/104364", "https://data.delijn.be/stops/104733"], ["https://data.delijn.be/stops/202715", "https://data.delijn.be/stops/203714"], ["https://data.delijn.be/stops/208402", "https://data.delijn.be/stops/208411"], ["https://data.delijn.be/stops/108323", "https://data.delijn.be/stops/108327"], ["https://data.delijn.be/stops/101191", "https://data.delijn.be/stops/205652"], ["https://data.delijn.be/stops/200007", "https://data.delijn.be/stops/201416"], ["https://data.delijn.be/stops/304481", "https://data.delijn.be/stops/304518"], ["https://data.delijn.be/stops/502454", "https://data.delijn.be/stops/509830"], ["https://data.delijn.be/stops/208492", "https://data.delijn.be/stops/209492"], ["https://data.delijn.be/stops/202355", "https://data.delijn.be/stops/202648"], ["https://data.delijn.be/stops/201242", "https://data.delijn.be/stops/202350"], ["https://data.delijn.be/stops/307818", "https://data.delijn.be/stops/308755"], ["https://data.delijn.be/stops/205144", "https://data.delijn.be/stops/205145"], ["https://data.delijn.be/stops/305177", "https://data.delijn.be/stops/305203"], ["https://data.delijn.be/stops/206220", "https://data.delijn.be/stops/207220"], ["https://data.delijn.be/stops/505153", "https://data.delijn.be/stops/505155"], ["https://data.delijn.be/stops/401812", "https://data.delijn.be/stops/401847"], ["https://data.delijn.be/stops/201239", "https://data.delijn.be/stops/201240"], ["https://data.delijn.be/stops/503676", "https://data.delijn.be/stops/508959"], ["https://data.delijn.be/stops/101444", "https://data.delijn.be/stops/101446"], ["https://data.delijn.be/stops/501365", "https://data.delijn.be/stops/506365"], ["https://data.delijn.be/stops/205216", "https://data.delijn.be/stops/205217"], ["https://data.delijn.be/stops/106967", "https://data.delijn.be/stops/106980"], ["https://data.delijn.be/stops/105161", "https://data.delijn.be/stops/105162"], ["https://data.delijn.be/stops/102710", "https://data.delijn.be/stops/105130"], ["https://data.delijn.be/stops/106604", "https://data.delijn.be/stops/106682"], ["https://data.delijn.be/stops/206069", "https://data.delijn.be/stops/207069"], ["https://data.delijn.be/stops/409294", "https://data.delijn.be/stops/409300"], ["https://data.delijn.be/stops/105709", "https://data.delijn.be/stops/105713"], ["https://data.delijn.be/stops/105703", "https://data.delijn.be/stops/106072"], ["https://data.delijn.be/stops/205222", "https://data.delijn.be/stops/205248"], ["https://data.delijn.be/stops/208051", "https://data.delijn.be/stops/209050"], ["https://data.delijn.be/stops/208641", "https://data.delijn.be/stops/208642"], ["https://data.delijn.be/stops/200291", "https://data.delijn.be/stops/200344"], ["https://data.delijn.be/stops/306861", "https://data.delijn.be/stops/307731"], ["https://data.delijn.be/stops/108264", "https://data.delijn.be/stops/108267"], ["https://data.delijn.be/stops/403748", "https://data.delijn.be/stops/403749"], ["https://data.delijn.be/stops/502441", "https://data.delijn.be/stops/507441"], ["https://data.delijn.be/stops/302000", "https://data.delijn.be/stops/302001"], ["https://data.delijn.be/stops/506439", "https://data.delijn.be/stops/506444"], ["https://data.delijn.be/stops/200265", "https://data.delijn.be/stops/201265"], ["https://data.delijn.be/stops/503463", "https://data.delijn.be/stops/508205"], ["https://data.delijn.be/stops/108654", "https://data.delijn.be/stops/306631"], ["https://data.delijn.be/stops/502607", "https://data.delijn.be/stops/502608"], ["https://data.delijn.be/stops/106024", "https://data.delijn.be/stops/106192"], ["https://data.delijn.be/stops/105577", "https://data.delijn.be/stops/106354"], ["https://data.delijn.be/stops/208808", "https://data.delijn.be/stops/209432"], ["https://data.delijn.be/stops/208024", "https://data.delijn.be/stops/208173"], ["https://data.delijn.be/stops/206175", "https://data.delijn.be/stops/207480"], ["https://data.delijn.be/stops/105028", "https://data.delijn.be/stops/105173"], ["https://data.delijn.be/stops/407067", "https://data.delijn.be/stops/407070"], ["https://data.delijn.be/stops/200261", "https://data.delijn.be/stops/201259"], ["https://data.delijn.be/stops/308134", "https://data.delijn.be/stops/308178"], ["https://data.delijn.be/stops/103982", "https://data.delijn.be/stops/105468"], ["https://data.delijn.be/stops/109195", "https://data.delijn.be/stops/109196"], ["https://data.delijn.be/stops/502549", "https://data.delijn.be/stops/502550"], ["https://data.delijn.be/stops/504499", "https://data.delijn.be/stops/504501"], ["https://data.delijn.be/stops/209212", "https://data.delijn.be/stops/209213"], ["https://data.delijn.be/stops/401647", "https://data.delijn.be/stops/408712"], ["https://data.delijn.be/stops/504085", "https://data.delijn.be/stops/504088"], ["https://data.delijn.be/stops/400766", "https://data.delijn.be/stops/400769"], ["https://data.delijn.be/stops/300455", "https://data.delijn.be/stops/300456"], ["https://data.delijn.be/stops/104244", "https://data.delijn.be/stops/105266"], ["https://data.delijn.be/stops/107350", "https://data.delijn.be/stops/108740"], ["https://data.delijn.be/stops/202632", "https://data.delijn.be/stops/203634"], ["https://data.delijn.be/stops/305258", "https://data.delijn.be/stops/305320"], ["https://data.delijn.be/stops/403269", "https://data.delijn.be/stops/409522"], ["https://data.delijn.be/stops/308496", "https://data.delijn.be/stops/308503"], ["https://data.delijn.be/stops/304491", "https://data.delijn.be/stops/304522"], ["https://data.delijn.be/stops/502210", "https://data.delijn.be/stops/505149"], ["https://data.delijn.be/stops/408078", "https://data.delijn.be/stops/305705"], ["https://data.delijn.be/stops/301271", "https://data.delijn.be/stops/303646"], ["https://data.delijn.be/stops/101068", "https://data.delijn.be/stops/101072"], ["https://data.delijn.be/stops/202916", "https://data.delijn.be/stops/203911"], ["https://data.delijn.be/stops/505182", "https://data.delijn.be/stops/509410"], ["https://data.delijn.be/stops/200014", "https://data.delijn.be/stops/201551"], ["https://data.delijn.be/stops/407496", "https://data.delijn.be/stops/410254"], ["https://data.delijn.be/stops/203400", "https://data.delijn.be/stops/209262"], ["https://data.delijn.be/stops/102219", "https://data.delijn.be/stops/105542"], ["https://data.delijn.be/stops/404647", "https://data.delijn.be/stops/404691"], ["https://data.delijn.be/stops/404532", "https://data.delijn.be/stops/404569"], ["https://data.delijn.be/stops/200820", "https://data.delijn.be/stops/200824"], ["https://data.delijn.be/stops/206351", "https://data.delijn.be/stops/206916"], ["https://data.delijn.be/stops/301032", "https://data.delijn.be/stops/301168"], ["https://data.delijn.be/stops/407204", "https://data.delijn.be/stops/407205"], ["https://data.delijn.be/stops/504581", "https://data.delijn.be/stops/505543"], ["https://data.delijn.be/stops/308728", "https://data.delijn.be/stops/308729"], ["https://data.delijn.be/stops/505515", "https://data.delijn.be/stops/505600"], ["https://data.delijn.be/stops/401600", "https://data.delijn.be/stops/405797"], ["https://data.delijn.be/stops/201319", "https://data.delijn.be/stops/201996"], ["https://data.delijn.be/stops/401818", "https://data.delijn.be/stops/406824"], ["https://data.delijn.be/stops/406558", "https://data.delijn.be/stops/407374"], ["https://data.delijn.be/stops/404662", "https://data.delijn.be/stops/404670"], ["https://data.delijn.be/stops/105261", "https://data.delijn.be/stops/105263"], ["https://data.delijn.be/stops/202579", "https://data.delijn.be/stops/202604"], ["https://data.delijn.be/stops/202417", "https://data.delijn.be/stops/202418"], ["https://data.delijn.be/stops/403039", "https://data.delijn.be/stops/404754"], ["https://data.delijn.be/stops/304973", "https://data.delijn.be/stops/304975"], ["https://data.delijn.be/stops/401893", "https://data.delijn.be/stops/404927"], ["https://data.delijn.be/stops/500945", "https://data.delijn.be/stops/504429"], ["https://data.delijn.be/stops/403415", "https://data.delijn.be/stops/403871"], ["https://data.delijn.be/stops/507012", "https://data.delijn.be/stops/507022"], ["https://data.delijn.be/stops/304581", "https://data.delijn.be/stops/304623"], ["https://data.delijn.be/stops/502756", "https://data.delijn.be/stops/507756"], ["https://data.delijn.be/stops/509623", "https://data.delijn.be/stops/509626"], ["https://data.delijn.be/stops/306069", "https://data.delijn.be/stops/306070"], ["https://data.delijn.be/stops/105471", "https://data.delijn.be/stops/105472"], ["https://data.delijn.be/stops/505017", "https://data.delijn.be/stops/507363"], ["https://data.delijn.be/stops/108315", "https://data.delijn.be/stops/108935"], ["https://data.delijn.be/stops/102430", "https://data.delijn.be/stops/107670"], ["https://data.delijn.be/stops/404329", "https://data.delijn.be/stops/404782"], ["https://data.delijn.be/stops/105412", "https://data.delijn.be/stops/105413"], ["https://data.delijn.be/stops/207098", "https://data.delijn.be/stops/207931"], ["https://data.delijn.be/stops/206891", "https://data.delijn.be/stops/207912"], ["https://data.delijn.be/stops/501447", "https://data.delijn.be/stops/506362"], ["https://data.delijn.be/stops/200411", "https://data.delijn.be/stops/201410"], ["https://data.delijn.be/stops/401486", "https://data.delijn.be/stops/401885"], ["https://data.delijn.be/stops/403811", "https://data.delijn.be/stops/403816"], ["https://data.delijn.be/stops/405860", "https://data.delijn.be/stops/409737"], ["https://data.delijn.be/stops/109196", "https://data.delijn.be/stops/109205"], ["https://data.delijn.be/stops/200702", "https://data.delijn.be/stops/203614"], ["https://data.delijn.be/stops/301624", "https://data.delijn.be/stops/307339"], ["https://data.delijn.be/stops/305482", "https://data.delijn.be/stops/305515"], ["https://data.delijn.be/stops/201783", "https://data.delijn.be/stops/209931"], ["https://data.delijn.be/stops/206116", "https://data.delijn.be/stops/207116"], ["https://data.delijn.be/stops/505793", "https://data.delijn.be/stops/509888"], ["https://data.delijn.be/stops/102382", "https://data.delijn.be/stops/106357"], ["https://data.delijn.be/stops/408235", "https://data.delijn.be/stops/408260"], ["https://data.delijn.be/stops/408255", "https://data.delijn.be/stops/408392"], ["https://data.delijn.be/stops/307344", "https://data.delijn.be/stops/308454"], ["https://data.delijn.be/stops/102378", "https://data.delijn.be/stops/106663"], ["https://data.delijn.be/stops/204513", "https://data.delijn.be/stops/205333"], ["https://data.delijn.be/stops/501107", "https://data.delijn.be/stops/505085"], ["https://data.delijn.be/stops/504421", "https://data.delijn.be/stops/504433"], ["https://data.delijn.be/stops/503665", "https://data.delijn.be/stops/508665"], ["https://data.delijn.be/stops/404694", "https://data.delijn.be/stops/407255"], ["https://data.delijn.be/stops/106150", "https://data.delijn.be/stops/106155"], ["https://data.delijn.be/stops/102754", "https://data.delijn.be/stops/505600"], ["https://data.delijn.be/stops/303362", "https://data.delijn.be/stops/303396"], ["https://data.delijn.be/stops/301304", "https://data.delijn.be/stops/305918"], ["https://data.delijn.be/stops/202171", "https://data.delijn.be/stops/203117"], ["https://data.delijn.be/stops/307370", "https://data.delijn.be/stops/307376"], ["https://data.delijn.be/stops/208511", "https://data.delijn.be/stops/209511"], ["https://data.delijn.be/stops/107738", "https://data.delijn.be/stops/107740"], ["https://data.delijn.be/stops/303455", "https://data.delijn.be/stops/303457"], ["https://data.delijn.be/stops/206676", "https://data.delijn.be/stops/209102"], ["https://data.delijn.be/stops/404961", "https://data.delijn.be/stops/404962"], ["https://data.delijn.be/stops/503070", "https://data.delijn.be/stops/503074"], ["https://data.delijn.be/stops/303430", "https://data.delijn.be/stops/303433"], ["https://data.delijn.be/stops/107649", "https://data.delijn.be/stops/108957"], ["https://data.delijn.be/stops/201871", "https://data.delijn.be/stops/203665"], ["https://data.delijn.be/stops/503387", "https://data.delijn.be/stops/508235"], ["https://data.delijn.be/stops/208582", "https://data.delijn.be/stops/208841"], ["https://data.delijn.be/stops/402194", "https://data.delijn.be/stops/402345"], ["https://data.delijn.be/stops/406316", "https://data.delijn.be/stops/406393"], ["https://data.delijn.be/stops/201008", "https://data.delijn.be/stops/210070"], ["https://data.delijn.be/stops/503594", "https://data.delijn.be/stops/508598"], ["https://data.delijn.be/stops/301457", "https://data.delijn.be/stops/301494"], ["https://data.delijn.be/stops/410390", "https://data.delijn.be/stops/410391"], ["https://data.delijn.be/stops/308492", "https://data.delijn.be/stops/308493"], ["https://data.delijn.be/stops/400184", "https://data.delijn.be/stops/407664"], ["https://data.delijn.be/stops/207334", "https://data.delijn.be/stops/207363"], ["https://data.delijn.be/stops/408820", "https://data.delijn.be/stops/408833"], ["https://data.delijn.be/stops/504394", "https://data.delijn.be/stops/509394"], ["https://data.delijn.be/stops/503136", "https://data.delijn.be/stops/504829"], ["https://data.delijn.be/stops/105092", "https://data.delijn.be/stops/108881"], ["https://data.delijn.be/stops/304802", "https://data.delijn.be/stops/307881"], ["https://data.delijn.be/stops/102045", "https://data.delijn.be/stops/104175"], ["https://data.delijn.be/stops/102513", "https://data.delijn.be/stops/102516"], ["https://data.delijn.be/stops/302931", "https://data.delijn.be/stops/304479"], ["https://data.delijn.be/stops/107183", "https://data.delijn.be/stops/107186"], ["https://data.delijn.be/stops/308377", "https://data.delijn.be/stops/308408"], ["https://data.delijn.be/stops/403968", "https://data.delijn.be/stops/408709"], ["https://data.delijn.be/stops/305741", "https://data.delijn.be/stops/307118"], ["https://data.delijn.be/stops/503092", "https://data.delijn.be/stops/508101"], ["https://data.delijn.be/stops/308173", "https://data.delijn.be/stops/308240"], ["https://data.delijn.be/stops/408222", "https://data.delijn.be/stops/408366"], ["https://data.delijn.be/stops/407826", "https://data.delijn.be/stops/408070"], ["https://data.delijn.be/stops/206915", "https://data.delijn.be/stops/207861"], ["https://data.delijn.be/stops/406606", "https://data.delijn.be/stops/406616"], ["https://data.delijn.be/stops/103095", "https://data.delijn.be/stops/104570"], ["https://data.delijn.be/stops/305014", "https://data.delijn.be/stops/305033"], ["https://data.delijn.be/stops/201658", "https://data.delijn.be/stops/205928"], ["https://data.delijn.be/stops/200223", "https://data.delijn.be/stops/200226"], ["https://data.delijn.be/stops/200395", "https://data.delijn.be/stops/208718"], ["https://data.delijn.be/stops/203633", "https://data.delijn.be/stops/205068"], ["https://data.delijn.be/stops/504112", "https://data.delijn.be/stops/504215"], ["https://data.delijn.be/stops/101705", "https://data.delijn.be/stops/104402"], ["https://data.delijn.be/stops/202118", "https://data.delijn.be/stops/205795"], ["https://data.delijn.be/stops/304857", "https://data.delijn.be/stops/305519"], ["https://data.delijn.be/stops/504273", "https://data.delijn.be/stops/504275"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/504559"], ["https://data.delijn.be/stops/402190", "https://data.delijn.be/stops/402498"], ["https://data.delijn.be/stops/503115", "https://data.delijn.be/stops/505105"], ["https://data.delijn.be/stops/401960", "https://data.delijn.be/stops/401961"], ["https://data.delijn.be/stops/109442", "https://data.delijn.be/stops/109443"], ["https://data.delijn.be/stops/300476", "https://data.delijn.be/stops/300545"], ["https://data.delijn.be/stops/304910", "https://data.delijn.be/stops/306408"], ["https://data.delijn.be/stops/105413", "https://data.delijn.be/stops/105416"], ["https://data.delijn.be/stops/501154", "https://data.delijn.be/stops/509836"], ["https://data.delijn.be/stops/105573", "https://data.delijn.be/stops/106289"], ["https://data.delijn.be/stops/408918", "https://data.delijn.be/stops/408922"], ["https://data.delijn.be/stops/401848", "https://data.delijn.be/stops/401851"], ["https://data.delijn.be/stops/403001", "https://data.delijn.be/stops/403277"], ["https://data.delijn.be/stops/407818", "https://data.delijn.be/stops/408004"], ["https://data.delijn.be/stops/307989", "https://data.delijn.be/stops/307990"], ["https://data.delijn.be/stops/502925", "https://data.delijn.be/stops/507499"], ["https://data.delijn.be/stops/206304", "https://data.delijn.be/stops/207304"], ["https://data.delijn.be/stops/200161", "https://data.delijn.be/stops/201161"], ["https://data.delijn.be/stops/406939", "https://data.delijn.be/stops/407140"], ["https://data.delijn.be/stops/200503", "https://data.delijn.be/stops/201454"], ["https://data.delijn.be/stops/206189", "https://data.delijn.be/stops/207188"], ["https://data.delijn.be/stops/109258", "https://data.delijn.be/stops/109259"], ["https://data.delijn.be/stops/402726", "https://data.delijn.be/stops/402730"], ["https://data.delijn.be/stops/406229", "https://data.delijn.be/stops/406254"], ["https://data.delijn.be/stops/301887", "https://data.delijn.be/stops/305974"], ["https://data.delijn.be/stops/200958", "https://data.delijn.be/stops/202470"], ["https://data.delijn.be/stops/402128", "https://data.delijn.be/stops/402129"], ["https://data.delijn.be/stops/302967", "https://data.delijn.be/stops/302968"], ["https://data.delijn.be/stops/101401", "https://data.delijn.be/stops/101402"], ["https://data.delijn.be/stops/209110", "https://data.delijn.be/stops/209341"], ["https://data.delijn.be/stops/507350", "https://data.delijn.be/stops/507921"], ["https://data.delijn.be/stops/200506", "https://data.delijn.be/stops/200507"], ["https://data.delijn.be/stops/102174", "https://data.delijn.be/stops/109367"], ["https://data.delijn.be/stops/105716", "https://data.delijn.be/stops/106140"], ["https://data.delijn.be/stops/300976", "https://data.delijn.be/stops/300977"], ["https://data.delijn.be/stops/306666", "https://data.delijn.be/stops/306667"], ["https://data.delijn.be/stops/204616", "https://data.delijn.be/stops/204659"], ["https://data.delijn.be/stops/401451", "https://data.delijn.be/stops/402036"], ["https://data.delijn.be/stops/206545", "https://data.delijn.be/stops/206550"], ["https://data.delijn.be/stops/405759", "https://data.delijn.be/stops/302843"], ["https://data.delijn.be/stops/101408", "https://data.delijn.be/stops/107291"], ["https://data.delijn.be/stops/301114", "https://data.delijn.be/stops/307683"], ["https://data.delijn.be/stops/105318", "https://data.delijn.be/stops/105341"], ["https://data.delijn.be/stops/402706", "https://data.delijn.be/stops/402707"], ["https://data.delijn.be/stops/106343", "https://data.delijn.be/stops/106345"], ["https://data.delijn.be/stops/308516", "https://data.delijn.be/stops/308517"], ["https://data.delijn.be/stops/403293", "https://data.delijn.be/stops/403352"], ["https://data.delijn.be/stops/205098", "https://data.delijn.be/stops/205126"], ["https://data.delijn.be/stops/107492", "https://data.delijn.be/stops/305798"], ["https://data.delijn.be/stops/504646", "https://data.delijn.be/stops/509646"], ["https://data.delijn.be/stops/300279", "https://data.delijn.be/stops/300291"], ["https://data.delijn.be/stops/308518", "https://data.delijn.be/stops/308519"], ["https://data.delijn.be/stops/405288", "https://data.delijn.be/stops/406276"], ["https://data.delijn.be/stops/105556", "https://data.delijn.be/stops/106033"], ["https://data.delijn.be/stops/207190", "https://data.delijn.be/stops/207692"], ["https://data.delijn.be/stops/501220", "https://data.delijn.be/stops/506220"], ["https://data.delijn.be/stops/105549", "https://data.delijn.be/stops/106023"], ["https://data.delijn.be/stops/502712", "https://data.delijn.be/stops/507546"], ["https://data.delijn.be/stops/300650", "https://data.delijn.be/stops/301839"], ["https://data.delijn.be/stops/403920", "https://data.delijn.be/stops/405946"], ["https://data.delijn.be/stops/300668", "https://data.delijn.be/stops/300678"], ["https://data.delijn.be/stops/302474", "https://data.delijn.be/stops/302704"], ["https://data.delijn.be/stops/502149", "https://data.delijn.be/stops/502243"], ["https://data.delijn.be/stops/504616", "https://data.delijn.be/stops/509616"], ["https://data.delijn.be/stops/302351", "https://data.delijn.be/stops/302354"], ["https://data.delijn.be/stops/206675", "https://data.delijn.be/stops/208163"], ["https://data.delijn.be/stops/302272", "https://data.delijn.be/stops/302296"], ["https://data.delijn.be/stops/103022", "https://data.delijn.be/stops/406504"], ["https://data.delijn.be/stops/302703", "https://data.delijn.be/stops/302704"], ["https://data.delijn.be/stops/302711", "https://data.delijn.be/stops/302723"], ["https://data.delijn.be/stops/303105", "https://data.delijn.be/stops/305158"], ["https://data.delijn.be/stops/101477", "https://data.delijn.be/stops/101973"], ["https://data.delijn.be/stops/103678", "https://data.delijn.be/stops/108967"], ["https://data.delijn.be/stops/101538", "https://data.delijn.be/stops/108262"], ["https://data.delijn.be/stops/104009", "https://data.delijn.be/stops/106894"], ["https://data.delijn.be/stops/304359", "https://data.delijn.be/stops/304362"], ["https://data.delijn.be/stops/200525", "https://data.delijn.be/stops/205922"], ["https://data.delijn.be/stops/102502", "https://data.delijn.be/stops/400004"], ["https://data.delijn.be/stops/504345", "https://data.delijn.be/stops/509342"], ["https://data.delijn.be/stops/200436", "https://data.delijn.be/stops/200641"], ["https://data.delijn.be/stops/501072", "https://data.delijn.be/stops/506075"], ["https://data.delijn.be/stops/200900", "https://data.delijn.be/stops/505507"], ["https://data.delijn.be/stops/506284", "https://data.delijn.be/stops/506489"], ["https://data.delijn.be/stops/206255", "https://data.delijn.be/stops/207255"], ["https://data.delijn.be/stops/206705", "https://data.delijn.be/stops/207607"], ["https://data.delijn.be/stops/109278", "https://data.delijn.be/stops/109279"], ["https://data.delijn.be/stops/102010", "https://data.delijn.be/stops/107125"], ["https://data.delijn.be/stops/300471", "https://data.delijn.be/stops/307087"], ["https://data.delijn.be/stops/502174", "https://data.delijn.be/stops/507182"], ["https://data.delijn.be/stops/403984", "https://data.delijn.be/stops/404030"], ["https://data.delijn.be/stops/402572", "https://data.delijn.be/stops/402617"], ["https://data.delijn.be/stops/304484", "https://data.delijn.be/stops/304530"], ["https://data.delijn.be/stops/206760", "https://data.delijn.be/stops/206853"], ["https://data.delijn.be/stops/503646", "https://data.delijn.be/stops/503703"], ["https://data.delijn.be/stops/407369", "https://data.delijn.be/stops/407522"], ["https://data.delijn.be/stops/501512", "https://data.delijn.be/stops/506405"], ["https://data.delijn.be/stops/508720", "https://data.delijn.be/stops/508726"], ["https://data.delijn.be/stops/200676", "https://data.delijn.be/stops/201461"], ["https://data.delijn.be/stops/500931", "https://data.delijn.be/stops/505793"], ["https://data.delijn.be/stops/106323", "https://data.delijn.be/stops/106324"], ["https://data.delijn.be/stops/504812", "https://data.delijn.be/stops/504813"], ["https://data.delijn.be/stops/205269", "https://data.delijn.be/stops/205535"], ["https://data.delijn.be/stops/409458", "https://data.delijn.be/stops/410069"], ["https://data.delijn.be/stops/201698", "https://data.delijn.be/stops/202386"], ["https://data.delijn.be/stops/307832", "https://data.delijn.be/stops/308530"], ["https://data.delijn.be/stops/502800", "https://data.delijn.be/stops/504182"], ["https://data.delijn.be/stops/505029", "https://data.delijn.be/stops/505030"], ["https://data.delijn.be/stops/301895", "https://data.delijn.be/stops/301897"], ["https://data.delijn.be/stops/205458", "https://data.delijn.be/stops/215017"], ["https://data.delijn.be/stops/200461", "https://data.delijn.be/stops/200676"], ["https://data.delijn.be/stops/102852", "https://data.delijn.be/stops/104417"], ["https://data.delijn.be/stops/501175", "https://data.delijn.be/stops/501177"], ["https://data.delijn.be/stops/504020", "https://data.delijn.be/stops/504986"], ["https://data.delijn.be/stops/108066", "https://data.delijn.be/stops/108068"], ["https://data.delijn.be/stops/304898", "https://data.delijn.be/stops/306178"], ["https://data.delijn.be/stops/401989", "https://data.delijn.be/stops/403381"], ["https://data.delijn.be/stops/501223", "https://data.delijn.be/stops/501633"], ["https://data.delijn.be/stops/307837", "https://data.delijn.be/stops/307838"], ["https://data.delijn.be/stops/104517", "https://data.delijn.be/stops/104519"], ["https://data.delijn.be/stops/401807", "https://data.delijn.be/stops/406349"], ["https://data.delijn.be/stops/204500", "https://data.delijn.be/stops/205544"], ["https://data.delijn.be/stops/102681", "https://data.delijn.be/stops/103860"], ["https://data.delijn.be/stops/202779", "https://data.delijn.be/stops/202780"], ["https://data.delijn.be/stops/501142", "https://data.delijn.be/stops/506154"], ["https://data.delijn.be/stops/403687", "https://data.delijn.be/stops/409251"], ["https://data.delijn.be/stops/509382", "https://data.delijn.be/stops/509383"], ["https://data.delijn.be/stops/405806", "https://data.delijn.be/stops/409705"], ["https://data.delijn.be/stops/301595", "https://data.delijn.be/stops/302577"], ["https://data.delijn.be/stops/101668", "https://data.delijn.be/stops/406770"], ["https://data.delijn.be/stops/207178", "https://data.delijn.be/stops/303848"], ["https://data.delijn.be/stops/301361", "https://data.delijn.be/stops/304695"], ["https://data.delijn.be/stops/505082", "https://data.delijn.be/stops/507812"], ["https://data.delijn.be/stops/301294", "https://data.delijn.be/stops/301900"], ["https://data.delijn.be/stops/406294", "https://data.delijn.be/stops/406449"], ["https://data.delijn.be/stops/305263", "https://data.delijn.be/stops/305271"], ["https://data.delijn.be/stops/408722", "https://data.delijn.be/stops/410343"], ["https://data.delijn.be/stops/302975", "https://data.delijn.be/stops/307229"], ["https://data.delijn.be/stops/409074", "https://data.delijn.be/stops/409119"], ["https://data.delijn.be/stops/305070", "https://data.delijn.be/stops/305078"], ["https://data.delijn.be/stops/502759", "https://data.delijn.be/stops/507759"], ["https://data.delijn.be/stops/505550", "https://data.delijn.be/stops/507178"], ["https://data.delijn.be/stops/103216", "https://data.delijn.be/stops/103600"], ["https://data.delijn.be/stops/104488", "https://data.delijn.be/stops/307899"], ["https://data.delijn.be/stops/200725", "https://data.delijn.be/stops/205943"], ["https://data.delijn.be/stops/508468", "https://data.delijn.be/stops/508478"], ["https://data.delijn.be/stops/106617", "https://data.delijn.be/stops/106621"], ["https://data.delijn.be/stops/403834", "https://data.delijn.be/stops/403849"], ["https://data.delijn.be/stops/106963", "https://data.delijn.be/stops/106976"], ["https://data.delijn.be/stops/504224", "https://data.delijn.be/stops/504685"], ["https://data.delijn.be/stops/301309", "https://data.delijn.be/stops/301336"], ["https://data.delijn.be/stops/403150", "https://data.delijn.be/stops/410275"], ["https://data.delijn.be/stops/105049", "https://data.delijn.be/stops/305833"], ["https://data.delijn.be/stops/407604", "https://data.delijn.be/stops/407605"], ["https://data.delijn.be/stops/105121", "https://data.delijn.be/stops/109696"], ["https://data.delijn.be/stops/406114", "https://data.delijn.be/stops/407146"], ["https://data.delijn.be/stops/407177", "https://data.delijn.be/stops/409856"], ["https://data.delijn.be/stops/103214", "https://data.delijn.be/stops/106293"], ["https://data.delijn.be/stops/206448", "https://data.delijn.be/stops/207448"], ["https://data.delijn.be/stops/101445", "https://data.delijn.be/stops/109005"], ["https://data.delijn.be/stops/202060", "https://data.delijn.be/stops/203060"], ["https://data.delijn.be/stops/301411", "https://data.delijn.be/stops/307025"], ["https://data.delijn.be/stops/201565", "https://data.delijn.be/stops/201841"], ["https://data.delijn.be/stops/202501", "https://data.delijn.be/stops/203501"], ["https://data.delijn.be/stops/304701", "https://data.delijn.be/stops/304702"], ["https://data.delijn.be/stops/205058", "https://data.delijn.be/stops/205317"], ["https://data.delijn.be/stops/302570", "https://data.delijn.be/stops/305103"], ["https://data.delijn.be/stops/403903", "https://data.delijn.be/stops/403905"], ["https://data.delijn.be/stops/103161", "https://data.delijn.be/stops/103162"], ["https://data.delijn.be/stops/206726", "https://data.delijn.be/stops/207607"], ["https://data.delijn.be/stops/302587", "https://data.delijn.be/stops/302588"], ["https://data.delijn.be/stops/407623", "https://data.delijn.be/stops/409810"], ["https://data.delijn.be/stops/408644", "https://data.delijn.be/stops/408646"], ["https://data.delijn.be/stops/108337", "https://data.delijn.be/stops/109333"], ["https://data.delijn.be/stops/400124", "https://data.delijn.be/stops/400130"], ["https://data.delijn.be/stops/306186", "https://data.delijn.be/stops/306290"], ["https://data.delijn.be/stops/202665", "https://data.delijn.be/stops/203665"], ["https://data.delijn.be/stops/103033", "https://data.delijn.be/stops/106750"], ["https://data.delijn.be/stops/303254", "https://data.delijn.be/stops/303302"], ["https://data.delijn.be/stops/206228", "https://data.delijn.be/stops/302153"], ["https://data.delijn.be/stops/200722", "https://data.delijn.be/stops/210409"], ["https://data.delijn.be/stops/204044", "https://data.delijn.be/stops/204518"], ["https://data.delijn.be/stops/403398", "https://data.delijn.be/stops/408453"], ["https://data.delijn.be/stops/206373", "https://data.delijn.be/stops/207374"], ["https://data.delijn.be/stops/406353", "https://data.delijn.be/stops/406354"], ["https://data.delijn.be/stops/201873", "https://data.delijn.be/stops/203030"], ["https://data.delijn.be/stops/408590", "https://data.delijn.be/stops/408776"], ["https://data.delijn.be/stops/202754", "https://data.delijn.be/stops/203754"], ["https://data.delijn.be/stops/302219", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/301181", "https://data.delijn.be/stops/301256"], ["https://data.delijn.be/stops/505283", "https://data.delijn.be/stops/508295"], ["https://data.delijn.be/stops/404191", "https://data.delijn.be/stops/404193"], ["https://data.delijn.be/stops/505387", "https://data.delijn.be/stops/508106"], ["https://data.delijn.be/stops/104974", "https://data.delijn.be/stops/109785"], ["https://data.delijn.be/stops/402069", "https://data.delijn.be/stops/402375"], ["https://data.delijn.be/stops/502194", "https://data.delijn.be/stops/502199"], ["https://data.delijn.be/stops/409251", "https://data.delijn.be/stops/409275"], ["https://data.delijn.be/stops/302610", "https://data.delijn.be/stops/302626"], ["https://data.delijn.be/stops/204058", "https://data.delijn.be/stops/204059"], ["https://data.delijn.be/stops/206815", "https://data.delijn.be/stops/207199"], ["https://data.delijn.be/stops/504232", "https://data.delijn.be/stops/505918"], ["https://data.delijn.be/stops/105623", "https://data.delijn.be/stops/106365"], ["https://data.delijn.be/stops/103683", "https://data.delijn.be/stops/109138"], ["https://data.delijn.be/stops/401224", "https://data.delijn.be/stops/401379"], ["https://data.delijn.be/stops/503859", "https://data.delijn.be/stops/508859"], ["https://data.delijn.be/stops/307336", "https://data.delijn.be/stops/308598"], ["https://data.delijn.be/stops/208270", "https://data.delijn.be/stops/209269"], ["https://data.delijn.be/stops/403946", "https://data.delijn.be/stops/407054"], ["https://data.delijn.be/stops/202313", "https://data.delijn.be/stops/202314"], ["https://data.delijn.be/stops/102914", "https://data.delijn.be/stops/103305"], ["https://data.delijn.be/stops/102944", "https://data.delijn.be/stops/105553"], ["https://data.delijn.be/stops/104822", "https://data.delijn.be/stops/300680"], ["https://data.delijn.be/stops/201345", "https://data.delijn.be/stops/201548"], ["https://data.delijn.be/stops/406241", "https://data.delijn.be/stops/406257"], ["https://data.delijn.be/stops/106851", "https://data.delijn.be/stops/106852"], ["https://data.delijn.be/stops/308198", "https://data.delijn.be/stops/308199"], ["https://data.delijn.be/stops/107079", "https://data.delijn.be/stops/107080"], ["https://data.delijn.be/stops/502062", "https://data.delijn.be/stops/505575"], ["https://data.delijn.be/stops/201911", "https://data.delijn.be/stops/202528"], ["https://data.delijn.be/stops/502666", "https://data.delijn.be/stops/507550"], ["https://data.delijn.be/stops/402413", "https://data.delijn.be/stops/402414"], ["https://data.delijn.be/stops/101133", "https://data.delijn.be/stops/108355"], ["https://data.delijn.be/stops/505441", "https://data.delijn.be/stops/505442"], ["https://data.delijn.be/stops/505206", "https://data.delijn.be/stops/505210"], ["https://data.delijn.be/stops/201105", "https://data.delijn.be/stops/202944"], ["https://data.delijn.be/stops/502257", "https://data.delijn.be/stops/502570"], ["https://data.delijn.be/stops/202059", "https://data.delijn.be/stops/203058"], ["https://data.delijn.be/stops/103636", "https://data.delijn.be/stops/104110"], ["https://data.delijn.be/stops/508164", "https://data.delijn.be/stops/508999"], ["https://data.delijn.be/stops/407060", "https://data.delijn.be/stops/407074"], ["https://data.delijn.be/stops/304320", "https://data.delijn.be/stops/304327"], ["https://data.delijn.be/stops/504995", "https://data.delijn.be/stops/505177"], ["https://data.delijn.be/stops/201901", "https://data.delijn.be/stops/201903"], ["https://data.delijn.be/stops/301829", "https://data.delijn.be/stops/301840"], ["https://data.delijn.be/stops/404505", "https://data.delijn.be/stops/404548"], ["https://data.delijn.be/stops/403371", "https://data.delijn.be/stops/403513"], ["https://data.delijn.be/stops/209272", "https://data.delijn.be/stops/209397"], ["https://data.delijn.be/stops/508553", "https://data.delijn.be/stops/508567"], ["https://data.delijn.be/stops/503006", "https://data.delijn.be/stops/503111"], ["https://data.delijn.be/stops/502173", "https://data.delijn.be/stops/508137"], ["https://data.delijn.be/stops/400265", "https://data.delijn.be/stops/406896"], ["https://data.delijn.be/stops/402559", "https://data.delijn.be/stops/402570"], ["https://data.delijn.be/stops/205320", "https://data.delijn.be/stops/205698"], ["https://data.delijn.be/stops/501428", "https://data.delijn.be/stops/506428"], ["https://data.delijn.be/stops/107734", "https://data.delijn.be/stops/107736"], ["https://data.delijn.be/stops/506435", "https://data.delijn.be/stops/506646"], ["https://data.delijn.be/stops/300752", "https://data.delijn.be/stops/300778"], ["https://data.delijn.be/stops/101463", "https://data.delijn.be/stops/108734"], ["https://data.delijn.be/stops/202519", "https://data.delijn.be/stops/202520"], ["https://data.delijn.be/stops/301666", "https://data.delijn.be/stops/304179"], ["https://data.delijn.be/stops/400816", "https://data.delijn.be/stops/400817"], ["https://data.delijn.be/stops/301235", "https://data.delijn.be/stops/308134"], ["https://data.delijn.be/stops/102225", "https://data.delijn.be/stops/103030"], ["https://data.delijn.be/stops/405492", "https://data.delijn.be/stops/405540"], ["https://data.delijn.be/stops/206240", "https://data.delijn.be/stops/206826"], ["https://data.delijn.be/stops/407140", "https://data.delijn.be/stops/407324"], ["https://data.delijn.be/stops/105609", "https://data.delijn.be/stops/105611"], ["https://data.delijn.be/stops/208501", "https://data.delijn.be/stops/209501"], ["https://data.delijn.be/stops/502012", "https://data.delijn.be/stops/507022"], ["https://data.delijn.be/stops/300601", "https://data.delijn.be/stops/300606"], ["https://data.delijn.be/stops/107209", "https://data.delijn.be/stops/107212"], ["https://data.delijn.be/stops/402558", "https://data.delijn.be/stops/402559"], ["https://data.delijn.be/stops/306618", "https://data.delijn.be/stops/306619"], ["https://data.delijn.be/stops/201021", "https://data.delijn.be/stops/203647"], ["https://data.delijn.be/stops/101228", "https://data.delijn.be/stops/109916"], ["https://data.delijn.be/stops/202657", "https://data.delijn.be/stops/203658"], ["https://data.delijn.be/stops/403597", "https://data.delijn.be/stops/410038"], ["https://data.delijn.be/stops/303722", "https://data.delijn.be/stops/303755"], ["https://data.delijn.be/stops/508041", "https://data.delijn.be/stops/509888"], ["https://data.delijn.be/stops/102394", "https://data.delijn.be/stops/107094"], ["https://data.delijn.be/stops/202025", "https://data.delijn.be/stops/211039"], ["https://data.delijn.be/stops/101524", "https://data.delijn.be/stops/108757"], ["https://data.delijn.be/stops/404997", "https://data.delijn.be/stops/406964"], ["https://data.delijn.be/stops/407890", "https://data.delijn.be/stops/408187"], ["https://data.delijn.be/stops/305380", "https://data.delijn.be/stops/305404"], ["https://data.delijn.be/stops/204372", "https://data.delijn.be/stops/204762"], ["https://data.delijn.be/stops/403916", "https://data.delijn.be/stops/410257"], ["https://data.delijn.be/stops/306101", "https://data.delijn.be/stops/306102"], ["https://data.delijn.be/stops/302736", "https://data.delijn.be/stops/307522"], ["https://data.delijn.be/stops/101378", "https://data.delijn.be/stops/101398"], ["https://data.delijn.be/stops/407504", "https://data.delijn.be/stops/407505"], ["https://data.delijn.be/stops/407738", "https://data.delijn.be/stops/409628"], ["https://data.delijn.be/stops/108927", "https://data.delijn.be/stops/108931"], ["https://data.delijn.be/stops/503501", "https://data.delijn.be/stops/508497"], ["https://data.delijn.be/stops/206322", "https://data.delijn.be/stops/207355"], ["https://data.delijn.be/stops/108289", "https://data.delijn.be/stops/108292"], ["https://data.delijn.be/stops/506231", "https://data.delijn.be/stops/506254"], ["https://data.delijn.be/stops/300143", "https://data.delijn.be/stops/300145"], ["https://data.delijn.be/stops/406060", "https://data.delijn.be/stops/406356"], ["https://data.delijn.be/stops/400908", "https://data.delijn.be/stops/400960"], ["https://data.delijn.be/stops/104457", "https://data.delijn.be/stops/106741"], ["https://data.delijn.be/stops/108501", "https://data.delijn.be/stops/108503"], ["https://data.delijn.be/stops/302563", "https://data.delijn.be/stops/302586"], ["https://data.delijn.be/stops/204507", "https://data.delijn.be/stops/205821"], ["https://data.delijn.be/stops/106088", "https://data.delijn.be/stops/109899"], ["https://data.delijn.be/stops/507072", "https://data.delijn.be/stops/507605"], ["https://data.delijn.be/stops/104205", "https://data.delijn.be/stops/104720"], ["https://data.delijn.be/stops/501164", "https://data.delijn.be/stops/506640"], ["https://data.delijn.be/stops/503752", "https://data.delijn.be/stops/508549"], ["https://data.delijn.be/stops/505831", "https://data.delijn.be/stops/508995"], ["https://data.delijn.be/stops/102492", "https://data.delijn.be/stops/407928"], ["https://data.delijn.be/stops/204429", "https://data.delijn.be/stops/204430"], ["https://data.delijn.be/stops/208123", "https://data.delijn.be/stops/209233"], ["https://data.delijn.be/stops/305895", "https://data.delijn.be/stops/308709"], ["https://data.delijn.be/stops/400078", "https://data.delijn.be/stops/400079"], ["https://data.delijn.be/stops/409731", "https://data.delijn.be/stops/409732"], ["https://data.delijn.be/stops/208398", "https://data.delijn.be/stops/209495"], ["https://data.delijn.be/stops/102018", "https://data.delijn.be/stops/102021"], ["https://data.delijn.be/stops/500948", "https://data.delijn.be/stops/504204"], ["https://data.delijn.be/stops/206872", "https://data.delijn.be/stops/209365"], ["https://data.delijn.be/stops/502017", "https://data.delijn.be/stops/507020"], ["https://data.delijn.be/stops/302880", "https://data.delijn.be/stops/303084"], ["https://data.delijn.be/stops/302190", "https://data.delijn.be/stops/308109"], ["https://data.delijn.be/stops/103723", "https://data.delijn.be/stops/109764"], ["https://data.delijn.be/stops/306613", "https://data.delijn.be/stops/306616"], ["https://data.delijn.be/stops/300654", "https://data.delijn.be/stops/300657"], ["https://data.delijn.be/stops/207675", "https://data.delijn.be/stops/209139"], ["https://data.delijn.be/stops/300567", "https://data.delijn.be/stops/300572"], ["https://data.delijn.be/stops/202029", "https://data.delijn.be/stops/211025"], ["https://data.delijn.be/stops/103586", "https://data.delijn.be/stops/104625"], ["https://data.delijn.be/stops/404531", "https://data.delijn.be/stops/406988"], ["https://data.delijn.be/stops/201467", "https://data.delijn.be/stops/202774"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/509615"], ["https://data.delijn.be/stops/302228", "https://data.delijn.be/stops/302823"], ["https://data.delijn.be/stops/301283", "https://data.delijn.be/stops/304692"], ["https://data.delijn.be/stops/410272", "https://data.delijn.be/stops/410277"], ["https://data.delijn.be/stops/507818", "https://data.delijn.be/stops/509790"], ["https://data.delijn.be/stops/404293", "https://data.delijn.be/stops/404294"], ["https://data.delijn.be/stops/300941", "https://data.delijn.be/stops/304720"], ["https://data.delijn.be/stops/306859", "https://data.delijn.be/stops/307361"], ["https://data.delijn.be/stops/208330", "https://data.delijn.be/stops/208376"], ["https://data.delijn.be/stops/304435", "https://data.delijn.be/stops/304438"], ["https://data.delijn.be/stops/504670", "https://data.delijn.be/stops/504767"], ["https://data.delijn.be/stops/109669", "https://data.delijn.be/stops/109675"], ["https://data.delijn.be/stops/402944", "https://data.delijn.be/stops/407299"], ["https://data.delijn.be/stops/402255", "https://data.delijn.be/stops/407532"], ["https://data.delijn.be/stops/206411", "https://data.delijn.be/stops/206651"], ["https://data.delijn.be/stops/101692", "https://data.delijn.be/stops/103694"], ["https://data.delijn.be/stops/209369", "https://data.delijn.be/stops/209374"], ["https://data.delijn.be/stops/208556", "https://data.delijn.be/stops/209557"], ["https://data.delijn.be/stops/302392", "https://data.delijn.be/stops/302393"], ["https://data.delijn.be/stops/107875", "https://data.delijn.be/stops/107876"], ["https://data.delijn.be/stops/205038", "https://data.delijn.be/stops/205818"], ["https://data.delijn.be/stops/204090", "https://data.delijn.be/stops/214018"], ["https://data.delijn.be/stops/202255", "https://data.delijn.be/stops/203254"], ["https://data.delijn.be/stops/303681", "https://data.delijn.be/stops/304428"], ["https://data.delijn.be/stops/204223", "https://data.delijn.be/stops/205223"], ["https://data.delijn.be/stops/300383", "https://data.delijn.be/stops/300384"], ["https://data.delijn.be/stops/206379", "https://data.delijn.be/stops/207731"], ["https://data.delijn.be/stops/305397", "https://data.delijn.be/stops/305398"], ["https://data.delijn.be/stops/209380", "https://data.delijn.be/stops/209381"], ["https://data.delijn.be/stops/402989", "https://data.delijn.be/stops/402991"], ["https://data.delijn.be/stops/206192", "https://data.delijn.be/stops/206222"], ["https://data.delijn.be/stops/201906", "https://data.delijn.be/stops/209867"], ["https://data.delijn.be/stops/202363", "https://data.delijn.be/stops/203363"], ["https://data.delijn.be/stops/503775", "https://data.delijn.be/stops/505272"], ["https://data.delijn.be/stops/408118", "https://data.delijn.be/stops/408119"], ["https://data.delijn.be/stops/403371", "https://data.delijn.be/stops/403375"], ["https://data.delijn.be/stops/200444", "https://data.delijn.be/stops/201445"], ["https://data.delijn.be/stops/406946", "https://data.delijn.be/stops/406977"], ["https://data.delijn.be/stops/302372", "https://data.delijn.be/stops/302386"], ["https://data.delijn.be/stops/102837", "https://data.delijn.be/stops/105780"], ["https://data.delijn.be/stops/201090", "https://data.delijn.be/stops/202749"], ["https://data.delijn.be/stops/202812", "https://data.delijn.be/stops/203812"], ["https://data.delijn.be/stops/302755", "https://data.delijn.be/stops/304829"], ["https://data.delijn.be/stops/410225", "https://data.delijn.be/stops/410226"], ["https://data.delijn.be/stops/406013", "https://data.delijn.be/stops/410262"], ["https://data.delijn.be/stops/509171", "https://data.delijn.be/stops/509346"], ["https://data.delijn.be/stops/104540", "https://data.delijn.be/stops/104545"], ["https://data.delijn.be/stops/200822", "https://data.delijn.be/stops/200823"], ["https://data.delijn.be/stops/102071", "https://data.delijn.be/stops/104591"], ["https://data.delijn.be/stops/200869", "https://data.delijn.be/stops/202655"], ["https://data.delijn.be/stops/503828", "https://data.delijn.be/stops/505809"], ["https://data.delijn.be/stops/407231", "https://data.delijn.be/stops/407233"], ["https://data.delijn.be/stops/307826", "https://data.delijn.be/stops/307827"], ["https://data.delijn.be/stops/101011", "https://data.delijn.be/stops/106332"], ["https://data.delijn.be/stops/403037", "https://data.delijn.be/stops/403256"], ["https://data.delijn.be/stops/400219", "https://data.delijn.be/stops/400227"], ["https://data.delijn.be/stops/504028", "https://data.delijn.be/stops/509036"], ["https://data.delijn.be/stops/504468", "https://data.delijn.be/stops/509463"], ["https://data.delijn.be/stops/403773", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/301436", "https://data.delijn.be/stops/301437"], ["https://data.delijn.be/stops/401120", "https://data.delijn.be/stops/401121"], ["https://data.delijn.be/stops/400730", "https://data.delijn.be/stops/406612"], ["https://data.delijn.be/stops/105519", "https://data.delijn.be/stops/105521"], ["https://data.delijn.be/stops/401636", "https://data.delijn.be/stops/308205"], ["https://data.delijn.be/stops/202238", "https://data.delijn.be/stops/203238"], ["https://data.delijn.be/stops/107002", "https://data.delijn.be/stops/107327"], ["https://data.delijn.be/stops/206067", "https://data.delijn.be/stops/207068"], ["https://data.delijn.be/stops/502319", "https://data.delijn.be/stops/507324"], ["https://data.delijn.be/stops/406047", "https://data.delijn.be/stops/406123"], ["https://data.delijn.be/stops/300192", "https://data.delijn.be/stops/300632"], ["https://data.delijn.be/stops/304044", "https://data.delijn.be/stops/307885"], ["https://data.delijn.be/stops/506218", "https://data.delijn.be/stops/506421"], ["https://data.delijn.be/stops/206616", "https://data.delijn.be/stops/207616"], ["https://data.delijn.be/stops/204180", "https://data.delijn.be/stops/205355"], ["https://data.delijn.be/stops/303290", "https://data.delijn.be/stops/303291"], ["https://data.delijn.be/stops/307959", "https://data.delijn.be/stops/307960"], ["https://data.delijn.be/stops/302958", "https://data.delijn.be/stops/302966"], ["https://data.delijn.be/stops/303702", "https://data.delijn.be/stops/305378"], ["https://data.delijn.be/stops/107484", "https://data.delijn.be/stops/107509"], ["https://data.delijn.be/stops/201675", "https://data.delijn.be/stops/202208"], ["https://data.delijn.be/stops/405537", "https://data.delijn.be/stops/405864"], ["https://data.delijn.be/stops/103094", "https://data.delijn.be/stops/109119"], ["https://data.delijn.be/stops/501074", "https://data.delijn.be/stops/506775"], ["https://data.delijn.be/stops/204657", "https://data.delijn.be/stops/205658"], ["https://data.delijn.be/stops/408100", "https://data.delijn.be/stops/408102"], ["https://data.delijn.be/stops/206610", "https://data.delijn.be/stops/206708"], ["https://data.delijn.be/stops/501095", "https://data.delijn.be/stops/501771"], ["https://data.delijn.be/stops/304394", "https://data.delijn.be/stops/307402"], ["https://data.delijn.be/stops/405221", "https://data.delijn.be/stops/405235"], ["https://data.delijn.be/stops/200202", "https://data.delijn.be/stops/203934"], ["https://data.delijn.be/stops/108333", "https://data.delijn.be/stops/109332"], ["https://data.delijn.be/stops/203647", "https://data.delijn.be/stops/211106"], ["https://data.delijn.be/stops/407364", "https://data.delijn.be/stops/408477"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/506676"], ["https://data.delijn.be/stops/409718", "https://data.delijn.be/stops/409722"], ["https://data.delijn.be/stops/103633", "https://data.delijn.be/stops/107163"], ["https://data.delijn.be/stops/306328", "https://data.delijn.be/stops/306331"], ["https://data.delijn.be/stops/108369", "https://data.delijn.be/stops/108455"], ["https://data.delijn.be/stops/301454", "https://data.delijn.be/stops/301458"], ["https://data.delijn.be/stops/304306", "https://data.delijn.be/stops/305525"], ["https://data.delijn.be/stops/502107", "https://data.delijn.be/stops/507095"], ["https://data.delijn.be/stops/108415", "https://data.delijn.be/stops/108920"], ["https://data.delijn.be/stops/204741", "https://data.delijn.be/stops/205739"], ["https://data.delijn.be/stops/201562", "https://data.delijn.be/stops/205997"], ["https://data.delijn.be/stops/308847", "https://data.delijn.be/stops/308848"], ["https://data.delijn.be/stops/102689", "https://data.delijn.be/stops/205279"], ["https://data.delijn.be/stops/402240", "https://data.delijn.be/stops/404730"], ["https://data.delijn.be/stops/503332", "https://data.delijn.be/stops/503772"], ["https://data.delijn.be/stops/506364", "https://data.delijn.be/stops/590411"], ["https://data.delijn.be/stops/503672", "https://data.delijn.be/stops/508673"], ["https://data.delijn.be/stops/202130", "https://data.delijn.be/stops/202419"], ["https://data.delijn.be/stops/503037", "https://data.delijn.be/stops/505376"], ["https://data.delijn.be/stops/105546", "https://data.delijn.be/stops/106240"], ["https://data.delijn.be/stops/303253", "https://data.delijn.be/stops/303261"], ["https://data.delijn.be/stops/202272", "https://data.delijn.be/stops/203660"], ["https://data.delijn.be/stops/201233", "https://data.delijn.be/stops/211051"], ["https://data.delijn.be/stops/407904", "https://data.delijn.be/stops/408148"], ["https://data.delijn.be/stops/205432", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/406323", "https://data.delijn.be/stops/406410"], ["https://data.delijn.be/stops/303477", "https://data.delijn.be/stops/304989"], ["https://data.delijn.be/stops/207710", "https://data.delijn.be/stops/304064"], ["https://data.delijn.be/stops/300542", "https://data.delijn.be/stops/303968"], ["https://data.delijn.be/stops/200636", "https://data.delijn.be/stops/210123"], ["https://data.delijn.be/stops/410219", "https://data.delijn.be/stops/410390"], ["https://data.delijn.be/stops/503166", "https://data.delijn.be/stops/508166"], ["https://data.delijn.be/stops/206499", "https://data.delijn.be/stops/207479"], ["https://data.delijn.be/stops/503462", "https://data.delijn.be/stops/508978"], ["https://data.delijn.be/stops/303458", "https://data.delijn.be/stops/303519"], ["https://data.delijn.be/stops/503099", "https://data.delijn.be/stops/503800"], ["https://data.delijn.be/stops/504523", "https://data.delijn.be/stops/504526"], ["https://data.delijn.be/stops/503816", "https://data.delijn.be/stops/508028"], ["https://data.delijn.be/stops/208445", "https://data.delijn.be/stops/209520"], ["https://data.delijn.be/stops/504723", "https://data.delijn.be/stops/504748"], ["https://data.delijn.be/stops/508767", "https://data.delijn.be/stops/508824"], ["https://data.delijn.be/stops/102519", "https://data.delijn.be/stops/109640"], ["https://data.delijn.be/stops/108240", "https://data.delijn.be/stops/108325"], ["https://data.delijn.be/stops/304055", "https://data.delijn.be/stops/304058"], ["https://data.delijn.be/stops/200876", "https://data.delijn.be/stops/505320"], ["https://data.delijn.be/stops/407020", "https://data.delijn.be/stops/308079"], ["https://data.delijn.be/stops/403482", "https://data.delijn.be/stops/410010"], ["https://data.delijn.be/stops/204135", "https://data.delijn.be/stops/205135"], ["https://data.delijn.be/stops/203130", "https://data.delijn.be/stops/203272"], ["https://data.delijn.be/stops/400551", "https://data.delijn.be/stops/410005"], ["https://data.delijn.be/stops/201833", "https://data.delijn.be/stops/209260"], ["https://data.delijn.be/stops/301450", "https://data.delijn.be/stops/301469"], ["https://data.delijn.be/stops/504604", "https://data.delijn.be/stops/504634"], ["https://data.delijn.be/stops/405936", "https://data.delijn.be/stops/405946"], ["https://data.delijn.be/stops/102131", "https://data.delijn.be/stops/105714"], ["https://data.delijn.be/stops/406927", "https://data.delijn.be/stops/406933"], ["https://data.delijn.be/stops/203532", "https://data.delijn.be/stops/206827"], ["https://data.delijn.be/stops/503564", "https://data.delijn.be/stops/503565"], ["https://data.delijn.be/stops/106314", "https://data.delijn.be/stops/106315"], ["https://data.delijn.be/stops/501431", "https://data.delijn.be/stops/501432"], ["https://data.delijn.be/stops/104471", "https://data.delijn.be/stops/104574"], ["https://data.delijn.be/stops/508108", "https://data.delijn.be/stops/508109"], ["https://data.delijn.be/stops/101146", "https://data.delijn.be/stops/106761"], ["https://data.delijn.be/stops/208345", "https://data.delijn.be/stops/208346"], ["https://data.delijn.be/stops/504453", "https://data.delijn.be/stops/509453"], ["https://data.delijn.be/stops/105768", "https://data.delijn.be/stops/109806"], ["https://data.delijn.be/stops/406053", "https://data.delijn.be/stops/409289"], ["https://data.delijn.be/stops/304910", "https://data.delijn.be/stops/304911"], ["https://data.delijn.be/stops/303588", "https://data.delijn.be/stops/305330"], ["https://data.delijn.be/stops/504724", "https://data.delijn.be/stops/508953"], ["https://data.delijn.be/stops/401215", "https://data.delijn.be/stops/401272"], ["https://data.delijn.be/stops/203840", "https://data.delijn.be/stops/209276"], ["https://data.delijn.be/stops/503822", "https://data.delijn.be/stops/508767"], ["https://data.delijn.be/stops/200247", "https://data.delijn.be/stops/201247"], ["https://data.delijn.be/stops/408107", "https://data.delijn.be/stops/408118"], ["https://data.delijn.be/stops/302309", "https://data.delijn.be/stops/302326"], ["https://data.delijn.be/stops/401960", "https://data.delijn.be/stops/402427"], ["https://data.delijn.be/stops/108108", "https://data.delijn.be/stops/108118"], ["https://data.delijn.be/stops/302338", "https://data.delijn.be/stops/302339"], ["https://data.delijn.be/stops/505584", "https://data.delijn.be/stops/507236"], ["https://data.delijn.be/stops/200536", "https://data.delijn.be/stops/201159"], ["https://data.delijn.be/stops/505781", "https://data.delijn.be/stops/506461"], ["https://data.delijn.be/stops/402936", "https://data.delijn.be/stops/403975"], ["https://data.delijn.be/stops/504326", "https://data.delijn.be/stops/504380"], ["https://data.delijn.be/stops/202690", "https://data.delijn.be/stops/203644"], ["https://data.delijn.be/stops/204158", "https://data.delijn.be/stops/207968"], ["https://data.delijn.be/stops/101513", "https://data.delijn.be/stops/102901"], ["https://data.delijn.be/stops/302577", "https://data.delijn.be/stops/302578"], ["https://data.delijn.be/stops/406245", "https://data.delijn.be/stops/409345"], ["https://data.delijn.be/stops/408021", "https://data.delijn.be/stops/408134"], ["https://data.delijn.be/stops/208800", "https://data.delijn.be/stops/209207"], ["https://data.delijn.be/stops/402810", "https://data.delijn.be/stops/402811"], ["https://data.delijn.be/stops/402083", "https://data.delijn.be/stops/402084"], ["https://data.delijn.be/stops/206190", "https://data.delijn.be/stops/207191"], ["https://data.delijn.be/stops/307703", "https://data.delijn.be/stops/307705"], ["https://data.delijn.be/stops/302008", "https://data.delijn.be/stops/302009"], ["https://data.delijn.be/stops/302290", "https://data.delijn.be/stops/307811"], ["https://data.delijn.be/stops/504292", "https://data.delijn.be/stops/509292"], ["https://data.delijn.be/stops/401602", "https://data.delijn.be/stops/409438"], ["https://data.delijn.be/stops/401519", "https://data.delijn.be/stops/401553"], ["https://data.delijn.be/stops/303264", "https://data.delijn.be/stops/306174"], ["https://data.delijn.be/stops/303093", "https://data.delijn.be/stops/303151"], ["https://data.delijn.be/stops/201133", "https://data.delijn.be/stops/201468"], ["https://data.delijn.be/stops/202696", "https://data.delijn.be/stops/203726"], ["https://data.delijn.be/stops/502529", "https://data.delijn.be/stops/507368"], ["https://data.delijn.be/stops/105583", "https://data.delijn.be/stops/105589"], ["https://data.delijn.be/stops/403442", "https://data.delijn.be/stops/405359"], ["https://data.delijn.be/stops/503338", "https://data.delijn.be/stops/507687"], ["https://data.delijn.be/stops/408614", "https://data.delijn.be/stops/408632"], ["https://data.delijn.be/stops/401002", "https://data.delijn.be/stops/401003"], ["https://data.delijn.be/stops/305781", "https://data.delijn.be/stops/305801"], ["https://data.delijn.be/stops/402808", "https://data.delijn.be/stops/404620"], ["https://data.delijn.be/stops/503993", "https://data.delijn.be/stops/508129"], ["https://data.delijn.be/stops/204597", "https://data.delijn.be/stops/205078"], ["https://data.delijn.be/stops/401039", "https://data.delijn.be/stops/401088"], ["https://data.delijn.be/stops/501259", "https://data.delijn.be/stops/506177"], ["https://data.delijn.be/stops/300082", "https://data.delijn.be/stops/307344"], ["https://data.delijn.be/stops/208065", "https://data.delijn.be/stops/209066"], ["https://data.delijn.be/stops/404551", "https://data.delijn.be/stops/406741"], ["https://data.delijn.be/stops/106813", "https://data.delijn.be/stops/106846"], ["https://data.delijn.be/stops/308292", "https://data.delijn.be/stops/308293"], ["https://data.delijn.be/stops/102565", "https://data.delijn.be/stops/102570"], ["https://data.delijn.be/stops/401563", "https://data.delijn.be/stops/410305"], ["https://data.delijn.be/stops/304208", "https://data.delijn.be/stops/304210"], ["https://data.delijn.be/stops/503620", "https://data.delijn.be/stops/503630"], ["https://data.delijn.be/stops/504390", "https://data.delijn.be/stops/504392"], ["https://data.delijn.be/stops/404917", "https://data.delijn.be/stops/404943"], ["https://data.delijn.be/stops/208810", "https://data.delijn.be/stops/208814"], ["https://data.delijn.be/stops/400737", "https://data.delijn.be/stops/400739"], ["https://data.delijn.be/stops/208504", "https://data.delijn.be/stops/208505"], ["https://data.delijn.be/stops/300885", "https://data.delijn.be/stops/300887"], ["https://data.delijn.be/stops/300541", "https://data.delijn.be/stops/308545"], ["https://data.delijn.be/stops/106887", "https://data.delijn.be/stops/107221"], ["https://data.delijn.be/stops/307618", "https://data.delijn.be/stops/307619"], ["https://data.delijn.be/stops/501305", "https://data.delijn.be/stops/506305"], ["https://data.delijn.be/stops/300173", "https://data.delijn.be/stops/301223"], ["https://data.delijn.be/stops/404588", "https://data.delijn.be/stops/406902"], ["https://data.delijn.be/stops/503516", "https://data.delijn.be/stops/508516"], ["https://data.delijn.be/stops/301231", "https://data.delijn.be/stops/301232"], ["https://data.delijn.be/stops/106582", "https://data.delijn.be/stops/107790"], ["https://data.delijn.be/stops/300450", "https://data.delijn.be/stops/308758"], ["https://data.delijn.be/stops/403317", "https://data.delijn.be/stops/403327"], ["https://data.delijn.be/stops/502085", "https://data.delijn.be/stops/502818"], ["https://data.delijn.be/stops/503488", "https://data.delijn.be/stops/508989"], ["https://data.delijn.be/stops/203354", "https://data.delijn.be/stops/211047"], ["https://data.delijn.be/stops/307296", "https://data.delijn.be/stops/307298"], ["https://data.delijn.be/stops/204915", "https://data.delijn.be/stops/204918"], ["https://data.delijn.be/stops/300547", "https://data.delijn.be/stops/300716"], ["https://data.delijn.be/stops/102567", "https://data.delijn.be/stops/400023"], ["https://data.delijn.be/stops/408098", "https://data.delijn.be/stops/408111"], ["https://data.delijn.be/stops/202024", "https://data.delijn.be/stops/203024"], ["https://data.delijn.be/stops/401814", "https://data.delijn.be/stops/406824"], ["https://data.delijn.be/stops/302062", "https://data.delijn.be/stops/302071"], ["https://data.delijn.be/stops/201305", "https://data.delijn.be/stops/202199"], ["https://data.delijn.be/stops/106066", "https://data.delijn.be/stops/106413"], ["https://data.delijn.be/stops/109906", "https://data.delijn.be/stops/109908"], ["https://data.delijn.be/stops/504171", "https://data.delijn.be/stops/509348"], ["https://data.delijn.be/stops/301196", "https://data.delijn.be/stops/307111"], ["https://data.delijn.be/stops/401986", "https://data.delijn.be/stops/401987"], ["https://data.delijn.be/stops/208439", "https://data.delijn.be/stops/209438"], ["https://data.delijn.be/stops/107184", "https://data.delijn.be/stops/107188"], ["https://data.delijn.be/stops/504198", "https://data.delijn.be/stops/504202"], ["https://data.delijn.be/stops/403629", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/102521", "https://data.delijn.be/stops/102551"], ["https://data.delijn.be/stops/202826", "https://data.delijn.be/stops/211022"], ["https://data.delijn.be/stops/206679", "https://data.delijn.be/stops/209776"], ["https://data.delijn.be/stops/401792", "https://data.delijn.be/stops/401800"], ["https://data.delijn.be/stops/303196", "https://data.delijn.be/stops/308959"], ["https://data.delijn.be/stops/502540", "https://data.delijn.be/stops/505692"], ["https://data.delijn.be/stops/410137", "https://data.delijn.be/stops/410138"], ["https://data.delijn.be/stops/102397", "https://data.delijn.be/stops/102398"], ["https://data.delijn.be/stops/207988", "https://data.delijn.be/stops/207989"], ["https://data.delijn.be/stops/201644", "https://data.delijn.be/stops/203944"], ["https://data.delijn.be/stops/200748", "https://data.delijn.be/stops/202970"], ["https://data.delijn.be/stops/404231", "https://data.delijn.be/stops/404242"], ["https://data.delijn.be/stops/200817", "https://data.delijn.be/stops/201115"], ["https://data.delijn.be/stops/101483", "https://data.delijn.be/stops/109299"], ["https://data.delijn.be/stops/502339", "https://data.delijn.be/stops/505959"], ["https://data.delijn.be/stops/101276", "https://data.delijn.be/stops/101277"], ["https://data.delijn.be/stops/109215", "https://data.delijn.be/stops/109217"], ["https://data.delijn.be/stops/101147", "https://data.delijn.be/stops/106863"], ["https://data.delijn.be/stops/109220", "https://data.delijn.be/stops/109222"], ["https://data.delijn.be/stops/501468", "https://data.delijn.be/stops/501545"], ["https://data.delijn.be/stops/201172", "https://data.delijn.be/stops/201230"], ["https://data.delijn.be/stops/302120", "https://data.delijn.be/stops/302124"], ["https://data.delijn.be/stops/101510", "https://data.delijn.be/stops/109050"], ["https://data.delijn.be/stops/406359", "https://data.delijn.be/stops/407721"], ["https://data.delijn.be/stops/408024", "https://data.delijn.be/stops/408027"], ["https://data.delijn.be/stops/206294", "https://data.delijn.be/stops/206816"], ["https://data.delijn.be/stops/502539", "https://data.delijn.be/stops/503823"], ["https://data.delijn.be/stops/405284", "https://data.delijn.be/stops/405285"], ["https://data.delijn.be/stops/204415", "https://data.delijn.be/stops/205413"], ["https://data.delijn.be/stops/200744", "https://data.delijn.be/stops/200745"], ["https://data.delijn.be/stops/502337", "https://data.delijn.be/stops/505737"], ["https://data.delijn.be/stops/403715", "https://data.delijn.be/stops/406709"], ["https://data.delijn.be/stops/202861", "https://data.delijn.be/stops/202862"], ["https://data.delijn.be/stops/501001", "https://data.delijn.be/stops/501011"], ["https://data.delijn.be/stops/406363", "https://data.delijn.be/stops/406729"], ["https://data.delijn.be/stops/206460", "https://data.delijn.be/stops/207460"], ["https://data.delijn.be/stops/109419", "https://data.delijn.be/stops/109421"], ["https://data.delijn.be/stops/101362", "https://data.delijn.be/stops/105354"], ["https://data.delijn.be/stops/401425", "https://data.delijn.be/stops/401458"], ["https://data.delijn.be/stops/407153", "https://data.delijn.be/stops/407162"], ["https://data.delijn.be/stops/502383", "https://data.delijn.be/stops/507383"], ["https://data.delijn.be/stops/406001", "https://data.delijn.be/stops/406017"], ["https://data.delijn.be/stops/404628", "https://data.delijn.be/stops/406732"], ["https://data.delijn.be/stops/302203", "https://data.delijn.be/stops/304051"], ["https://data.delijn.be/stops/502192", "https://data.delijn.be/stops/507939"], ["https://data.delijn.be/stops/501374", "https://data.delijn.be/stops/501375"], ["https://data.delijn.be/stops/101892", "https://data.delijn.be/stops/107526"], ["https://data.delijn.be/stops/408938", "https://data.delijn.be/stops/308249"], ["https://data.delijn.be/stops/105106", "https://data.delijn.be/stops/106968"], ["https://data.delijn.be/stops/400738", "https://data.delijn.be/stops/400741"], ["https://data.delijn.be/stops/207728", "https://data.delijn.be/stops/207733"], ["https://data.delijn.be/stops/509400", "https://data.delijn.be/stops/509719"], ["https://data.delijn.be/stops/404091", "https://data.delijn.be/stops/408799"], ["https://data.delijn.be/stops/102508", "https://data.delijn.be/stops/400025"], ["https://data.delijn.be/stops/107197", "https://data.delijn.be/stops/109772"], ["https://data.delijn.be/stops/406012", "https://data.delijn.be/stops/406114"], ["https://data.delijn.be/stops/302535", "https://data.delijn.be/stops/302544"], ["https://data.delijn.be/stops/209473", "https://data.delijn.be/stops/209668"], ["https://data.delijn.be/stops/103721", "https://data.delijn.be/stops/305818"], ["https://data.delijn.be/stops/405732", "https://data.delijn.be/stops/405738"], ["https://data.delijn.be/stops/300333", "https://data.delijn.be/stops/306661"], ["https://data.delijn.be/stops/401439", "https://data.delijn.be/stops/401596"], ["https://data.delijn.be/stops/300189", "https://data.delijn.be/stops/300228"], ["https://data.delijn.be/stops/204048", "https://data.delijn.be/stops/205519"], ["https://data.delijn.be/stops/202043", "https://data.delijn.be/stops/203043"], ["https://data.delijn.be/stops/303069", "https://data.delijn.be/stops/307929"], ["https://data.delijn.be/stops/408543", "https://data.delijn.be/stops/408567"], ["https://data.delijn.be/stops/302723", "https://data.delijn.be/stops/308598"], ["https://data.delijn.be/stops/405807", "https://data.delijn.be/stops/405854"], ["https://data.delijn.be/stops/304126", "https://data.delijn.be/stops/307579"], ["https://data.delijn.be/stops/300207", "https://data.delijn.be/stops/300208"], ["https://data.delijn.be/stops/102226", "https://data.delijn.be/stops/102609"], ["https://data.delijn.be/stops/304350", "https://data.delijn.be/stops/304357"], ["https://data.delijn.be/stops/303541", "https://data.delijn.be/stops/304130"], ["https://data.delijn.be/stops/300577", "https://data.delijn.be/stops/300591"], ["https://data.delijn.be/stops/308229", "https://data.delijn.be/stops/308239"], ["https://data.delijn.be/stops/207772", "https://data.delijn.be/stops/208374"], ["https://data.delijn.be/stops/302012", "https://data.delijn.be/stops/302045"], ["https://data.delijn.be/stops/204763", "https://data.delijn.be/stops/205380"], ["https://data.delijn.be/stops/300021", "https://data.delijn.be/stops/300389"], ["https://data.delijn.be/stops/202267", "https://data.delijn.be/stops/203268"], ["https://data.delijn.be/stops/409550", "https://data.delijn.be/stops/409552"], ["https://data.delijn.be/stops/403720", "https://data.delijn.be/stops/407790"], ["https://data.delijn.be/stops/502456", "https://data.delijn.be/stops/505577"], ["https://data.delijn.be/stops/504414", "https://data.delijn.be/stops/504442"], ["https://data.delijn.be/stops/206047", "https://data.delijn.be/stops/206107"], ["https://data.delijn.be/stops/101595", "https://data.delijn.be/stops/107185"], ["https://data.delijn.be/stops/101500", "https://data.delijn.be/stops/306815"], ["https://data.delijn.be/stops/300586", "https://data.delijn.be/stops/303523"], ["https://data.delijn.be/stops/400034", "https://data.delijn.be/stops/402758"], ["https://data.delijn.be/stops/101573", "https://data.delijn.be/stops/103036"], ["https://data.delijn.be/stops/502273", "https://data.delijn.be/stops/502521"], ["https://data.delijn.be/stops/302645", "https://data.delijn.be/stops/302646"], ["https://data.delijn.be/stops/403719", "https://data.delijn.be/stops/403822"], ["https://data.delijn.be/stops/400080", "https://data.delijn.be/stops/400166"], ["https://data.delijn.be/stops/508835", "https://data.delijn.be/stops/508980"], ["https://data.delijn.be/stops/206455", "https://data.delijn.be/stops/206823"], ["https://data.delijn.be/stops/400746", "https://data.delijn.be/stops/409579"], ["https://data.delijn.be/stops/208543", "https://data.delijn.be/stops/208614"], ["https://data.delijn.be/stops/503510", "https://data.delijn.be/stops/505297"], ["https://data.delijn.be/stops/501135", "https://data.delijn.be/stops/506132"], ["https://data.delijn.be/stops/104897", "https://data.delijn.be/stops/105312"], ["https://data.delijn.be/stops/504715", "https://data.delijn.be/stops/509254"], ["https://data.delijn.be/stops/103914", "https://data.delijn.be/stops/107238"], ["https://data.delijn.be/stops/203822", "https://data.delijn.be/stops/203913"], ["https://data.delijn.be/stops/301472", "https://data.delijn.be/stops/301473"], ["https://data.delijn.be/stops/504647", "https://data.delijn.be/stops/504648"], ["https://data.delijn.be/stops/404084", "https://data.delijn.be/stops/404086"], ["https://data.delijn.be/stops/204197", "https://data.delijn.be/stops/204238"], ["https://data.delijn.be/stops/505253", "https://data.delijn.be/stops/509174"], ["https://data.delijn.be/stops/300649", "https://data.delijn.be/stops/300650"], ["https://data.delijn.be/stops/204112", "https://data.delijn.be/stops/205112"], ["https://data.delijn.be/stops/302541", "https://data.delijn.be/stops/303381"], ["https://data.delijn.be/stops/101152", "https://data.delijn.be/stops/109622"], ["https://data.delijn.be/stops/402838", "https://data.delijn.be/stops/406304"], ["https://data.delijn.be/stops/102200", "https://data.delijn.be/stops/103000"], ["https://data.delijn.be/stops/402452", "https://data.delijn.be/stops/402454"], ["https://data.delijn.be/stops/302725", "https://data.delijn.be/stops/302772"], ["https://data.delijn.be/stops/301522", "https://data.delijn.be/stops/305733"], ["https://data.delijn.be/stops/302313", "https://data.delijn.be/stops/308784"], ["https://data.delijn.be/stops/300005", "https://data.delijn.be/stops/304508"], ["https://data.delijn.be/stops/101461", "https://data.delijn.be/stops/109252"], ["https://data.delijn.be/stops/107012", "https://data.delijn.be/stops/107013"], ["https://data.delijn.be/stops/308118", "https://data.delijn.be/stops/308119"], ["https://data.delijn.be/stops/403337", "https://data.delijn.be/stops/407635"], ["https://data.delijn.be/stops/109509", "https://data.delijn.be/stops/109511"], ["https://data.delijn.be/stops/202682", "https://data.delijn.be/stops/203682"], ["https://data.delijn.be/stops/201108", "https://data.delijn.be/stops/202007"], ["https://data.delijn.be/stops/109165", "https://data.delijn.be/stops/109166"], ["https://data.delijn.be/stops/503204", "https://data.delijn.be/stops/503355"], ["https://data.delijn.be/stops/304856", "https://data.delijn.be/stops/304864"], ["https://data.delijn.be/stops/503904", "https://data.delijn.be/stops/503905"], ["https://data.delijn.be/stops/503283", "https://data.delijn.be/stops/508280"], ["https://data.delijn.be/stops/200759", "https://data.delijn.be/stops/507961"], ["https://data.delijn.be/stops/201168", "https://data.delijn.be/stops/203641"], ["https://data.delijn.be/stops/403053", "https://data.delijn.be/stops/403067"], ["https://data.delijn.be/stops/408498", "https://data.delijn.be/stops/408499"], ["https://data.delijn.be/stops/207943", "https://data.delijn.be/stops/207944"], ["https://data.delijn.be/stops/406875", "https://data.delijn.be/stops/407401"], ["https://data.delijn.be/stops/407406", "https://data.delijn.be/stops/407564"], ["https://data.delijn.be/stops/204674", "https://data.delijn.be/stops/205672"], ["https://data.delijn.be/stops/200579", "https://data.delijn.be/stops/200580"], ["https://data.delijn.be/stops/504679", "https://data.delijn.be/stops/505435"], ["https://data.delijn.be/stops/108713", "https://data.delijn.be/stops/108856"], ["https://data.delijn.be/stops/205747", "https://data.delijn.be/stops/205748"], ["https://data.delijn.be/stops/206630", "https://data.delijn.be/stops/209571"], ["https://data.delijn.be/stops/403949", "https://data.delijn.be/stops/403950"], ["https://data.delijn.be/stops/400909", "https://data.delijn.be/stops/400960"], ["https://data.delijn.be/stops/202312", "https://data.delijn.be/stops/202793"], ["https://data.delijn.be/stops/201591", "https://data.delijn.be/stops/205920"], ["https://data.delijn.be/stops/504034", "https://data.delijn.be/stops/509026"], ["https://data.delijn.be/stops/200224", "https://data.delijn.be/stops/200225"], ["https://data.delijn.be/stops/200090", "https://data.delijn.be/stops/211126"], ["https://data.delijn.be/stops/300483", "https://data.delijn.be/stops/302918"], ["https://data.delijn.be/stops/219030", "https://data.delijn.be/stops/219031"], ["https://data.delijn.be/stops/406308", "https://data.delijn.be/stops/406309"], ["https://data.delijn.be/stops/204244", "https://data.delijn.be/stops/205244"], ["https://data.delijn.be/stops/300403", "https://data.delijn.be/stops/300405"], ["https://data.delijn.be/stops/409048", "https://data.delijn.be/stops/409443"], ["https://data.delijn.be/stops/105356", "https://data.delijn.be/stops/109396"], ["https://data.delijn.be/stops/305775", "https://data.delijn.be/stops/305777"], ["https://data.delijn.be/stops/108880", "https://data.delijn.be/stops/108882"], ["https://data.delijn.be/stops/108766", "https://data.delijn.be/stops/108777"], ["https://data.delijn.be/stops/206535", "https://data.delijn.be/stops/207547"], ["https://data.delijn.be/stops/104794", "https://data.delijn.be/stops/106824"], ["https://data.delijn.be/stops/201181", "https://data.delijn.be/stops/201196"], ["https://data.delijn.be/stops/304864", "https://data.delijn.be/stops/304865"], ["https://data.delijn.be/stops/103234", "https://data.delijn.be/stops/109433"], ["https://data.delijn.be/stops/207092", "https://data.delijn.be/stops/207142"], ["https://data.delijn.be/stops/407058", "https://data.delijn.be/stops/407071"], ["https://data.delijn.be/stops/203100", "https://data.delijn.be/stops/203101"], ["https://data.delijn.be/stops/109395", "https://data.delijn.be/stops/109405"], ["https://data.delijn.be/stops/201051", "https://data.delijn.be/stops/201052"], ["https://data.delijn.be/stops/501282", "https://data.delijn.be/stops/506271"], ["https://data.delijn.be/stops/206925", "https://data.delijn.be/stops/207815"], ["https://data.delijn.be/stops/306770", "https://data.delijn.be/stops/306868"], ["https://data.delijn.be/stops/306903", "https://data.delijn.be/stops/306930"], ["https://data.delijn.be/stops/400118", "https://data.delijn.be/stops/410278"], ["https://data.delijn.be/stops/503871", "https://data.delijn.be/stops/508871"], ["https://data.delijn.be/stops/406062", "https://data.delijn.be/stops/409406"], ["https://data.delijn.be/stops/102018", "https://data.delijn.be/stops/102019"], ["https://data.delijn.be/stops/306924", "https://data.delijn.be/stops/308728"], ["https://data.delijn.be/stops/405814", "https://data.delijn.be/stops/405815"], ["https://data.delijn.be/stops/202127", "https://data.delijn.be/stops/203127"], ["https://data.delijn.be/stops/207496", "https://data.delijn.be/stops/207507"], ["https://data.delijn.be/stops/102227", "https://data.delijn.be/stops/105527"], ["https://data.delijn.be/stops/207260", "https://data.delijn.be/stops/207918"], ["https://data.delijn.be/stops/406007", "https://data.delijn.be/stops/408709"], ["https://data.delijn.be/stops/405618", "https://data.delijn.be/stops/409876"], ["https://data.delijn.be/stops/508266", "https://data.delijn.be/stops/508991"], ["https://data.delijn.be/stops/503802", "https://data.delijn.be/stops/503948"], ["https://data.delijn.be/stops/202826", "https://data.delijn.be/stops/218002"], ["https://data.delijn.be/stops/105283", "https://data.delijn.be/stops/105284"], ["https://data.delijn.be/stops/401279", "https://data.delijn.be/stops/408419"], ["https://data.delijn.be/stops/106207", "https://data.delijn.be/stops/109904"], ["https://data.delijn.be/stops/206199", "https://data.delijn.be/stops/207925"], ["https://data.delijn.be/stops/205106", "https://data.delijn.be/stops/205749"], ["https://data.delijn.be/stops/105576", "https://data.delijn.be/stops/105590"], ["https://data.delijn.be/stops/506235", "https://data.delijn.be/stops/506236"], ["https://data.delijn.be/stops/403924", "https://data.delijn.be/stops/410257"], ["https://data.delijn.be/stops/102011", "https://data.delijn.be/stops/102078"], ["https://data.delijn.be/stops/401491", "https://data.delijn.be/stops/410306"], ["https://data.delijn.be/stops/306124", "https://data.delijn.be/stops/307145"], ["https://data.delijn.be/stops/401360", "https://data.delijn.be/stops/401361"], ["https://data.delijn.be/stops/504516", "https://data.delijn.be/stops/509418"], ["https://data.delijn.be/stops/202149", "https://data.delijn.be/stops/203148"], ["https://data.delijn.be/stops/108443", "https://data.delijn.be/stops/108445"], ["https://data.delijn.be/stops/301831", "https://data.delijn.be/stops/305985"], ["https://data.delijn.be/stops/504625", "https://data.delijn.be/stops/509287"], ["https://data.delijn.be/stops/408074", "https://data.delijn.be/stops/408131"], ["https://data.delijn.be/stops/200807", "https://data.delijn.be/stops/202389"], ["https://data.delijn.be/stops/102885", "https://data.delijn.be/stops/106050"], ["https://data.delijn.be/stops/101954", "https://data.delijn.be/stops/109872"], ["https://data.delijn.be/stops/207252", "https://data.delijn.be/stops/207829"], ["https://data.delijn.be/stops/200055", "https://data.delijn.be/stops/211119"], ["https://data.delijn.be/stops/404319", "https://data.delijn.be/stops/404390"], ["https://data.delijn.be/stops/107378", "https://data.delijn.be/stops/109539"], ["https://data.delijn.be/stops/503348", "https://data.delijn.be/stops/508437"], ["https://data.delijn.be/stops/405389", "https://data.delijn.be/stops/405426"], ["https://data.delijn.be/stops/206234", "https://data.delijn.be/stops/206864"], ["https://data.delijn.be/stops/402548", "https://data.delijn.be/stops/402550"], ["https://data.delijn.be/stops/400509", "https://data.delijn.be/stops/400511"], ["https://data.delijn.be/stops/300688", "https://data.delijn.be/stops/306941"], ["https://data.delijn.be/stops/504358", "https://data.delijn.be/stops/504359"], ["https://data.delijn.be/stops/108287", "https://data.delijn.be/stops/108291"], ["https://data.delijn.be/stops/301822", "https://data.delijn.be/stops/307889"], ["https://data.delijn.be/stops/204031", "https://data.delijn.be/stops/204751"], ["https://data.delijn.be/stops/202431", "https://data.delijn.be/stops/202432"], ["https://data.delijn.be/stops/400718", "https://data.delijn.be/stops/400719"], ["https://data.delijn.be/stops/407237", "https://data.delijn.be/stops/407504"], ["https://data.delijn.be/stops/205180", "https://data.delijn.be/stops/205181"], ["https://data.delijn.be/stops/109591", "https://data.delijn.be/stops/109593"], ["https://data.delijn.be/stops/503958", "https://data.delijn.be/stops/509267"], ["https://data.delijn.be/stops/202782", "https://data.delijn.be/stops/202783"], ["https://data.delijn.be/stops/404724", "https://data.delijn.be/stops/404748"], ["https://data.delijn.be/stops/303782", "https://data.delijn.be/stops/303785"], ["https://data.delijn.be/stops/107960", "https://data.delijn.be/stops/108322"], ["https://data.delijn.be/stops/106519", "https://data.delijn.be/stops/106520"], ["https://data.delijn.be/stops/300842", "https://data.delijn.be/stops/304679"], ["https://data.delijn.be/stops/200860", "https://data.delijn.be/stops/200892"], ["https://data.delijn.be/stops/102123", "https://data.delijn.be/stops/104139"], ["https://data.delijn.be/stops/401765", "https://data.delijn.be/stops/401783"], ["https://data.delijn.be/stops/204695", "https://data.delijn.be/stops/205700"], ["https://data.delijn.be/stops/502753", "https://data.delijn.be/stops/505079"], ["https://data.delijn.be/stops/301998", "https://data.delijn.be/stops/306318"], ["https://data.delijn.be/stops/501675", "https://data.delijn.be/stops/505014"], ["https://data.delijn.be/stops/400620", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/304759", "https://data.delijn.be/stops/304762"], ["https://data.delijn.be/stops/209187", "https://data.delijn.be/stops/209358"], ["https://data.delijn.be/stops/106197", "https://data.delijn.be/stops/106198"], ["https://data.delijn.be/stops/504555", "https://data.delijn.be/stops/509565"], ["https://data.delijn.be/stops/403958", "https://data.delijn.be/stops/406007"], ["https://data.delijn.be/stops/505709", "https://data.delijn.be/stops/509136"], ["https://data.delijn.be/stops/403907", "https://data.delijn.be/stops/403914"], ["https://data.delijn.be/stops/504354", "https://data.delijn.be/stops/509171"], ["https://data.delijn.be/stops/504207", "https://data.delijn.be/stops/509207"], ["https://data.delijn.be/stops/502397", "https://data.delijn.be/stops/502412"], ["https://data.delijn.be/stops/502676", "https://data.delijn.be/stops/505768"], ["https://data.delijn.be/stops/404424", "https://data.delijn.be/stops/404427"], ["https://data.delijn.be/stops/207669", "https://data.delijn.be/stops/209503"], ["https://data.delijn.be/stops/106960", "https://data.delijn.be/stops/107271"], ["https://data.delijn.be/stops/107073", "https://data.delijn.be/stops/107075"], ["https://data.delijn.be/stops/200385", "https://data.delijn.be/stops/200475"], ["https://data.delijn.be/stops/409365", "https://data.delijn.be/stops/409388"], ["https://data.delijn.be/stops/102120", "https://data.delijn.be/stops/102895"], ["https://data.delijn.be/stops/405899", "https://data.delijn.be/stops/406978"], ["https://data.delijn.be/stops/300763", "https://data.delijn.be/stops/301048"], ["https://data.delijn.be/stops/206752", "https://data.delijn.be/stops/208530"], ["https://data.delijn.be/stops/103628", "https://data.delijn.be/stops/107171"], ["https://data.delijn.be/stops/302083", "https://data.delijn.be/stops/302864"], ["https://data.delijn.be/stops/502564", "https://data.delijn.be/stops/502582"], ["https://data.delijn.be/stops/503039", "https://data.delijn.be/stops/508041"], ["https://data.delijn.be/stops/101137", "https://data.delijn.be/stops/101141"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/402623"], ["https://data.delijn.be/stops/101906", "https://data.delijn.be/stops/106504"], ["https://data.delijn.be/stops/308182", "https://data.delijn.be/stops/308194"], ["https://data.delijn.be/stops/504693", "https://data.delijn.be/stops/509077"], ["https://data.delijn.be/stops/503077", "https://data.delijn.be/stops/503678"], ["https://data.delijn.be/stops/109245", "https://data.delijn.be/stops/109248"], ["https://data.delijn.be/stops/101392", "https://data.delijn.be/stops/103136"], ["https://data.delijn.be/stops/501401", "https://data.delijn.be/stops/501532"], ["https://data.delijn.be/stops/300118", "https://data.delijn.be/stops/306853"], ["https://data.delijn.be/stops/501565", "https://data.delijn.be/stops/506565"], ["https://data.delijn.be/stops/505095", "https://data.delijn.be/stops/508586"], ["https://data.delijn.be/stops/205164", "https://data.delijn.be/stops/205582"], ["https://data.delijn.be/stops/308233", "https://data.delijn.be/stops/308236"], ["https://data.delijn.be/stops/206677", "https://data.delijn.be/stops/208805"], ["https://data.delijn.be/stops/402331", "https://data.delijn.be/stops/402766"], ["https://data.delijn.be/stops/304015", "https://data.delijn.be/stops/304070"], ["https://data.delijn.be/stops/104819", "https://data.delijn.be/stops/105214"], ["https://data.delijn.be/stops/204629", "https://data.delijn.be/stops/204630"], ["https://data.delijn.be/stops/300167", "https://data.delijn.be/stops/300170"], ["https://data.delijn.be/stops/102818", "https://data.delijn.be/stops/103770"], ["https://data.delijn.be/stops/303313", "https://data.delijn.be/stops/303331"], ["https://data.delijn.be/stops/103909", "https://data.delijn.be/stops/105644"], ["https://data.delijn.be/stops/200349", "https://data.delijn.be/stops/200389"], ["https://data.delijn.be/stops/503518", "https://data.delijn.be/stops/508518"], ["https://data.delijn.be/stops/206121", "https://data.delijn.be/stops/207092"], ["https://data.delijn.be/stops/400739", "https://data.delijn.be/stops/400741"], ["https://data.delijn.be/stops/105748", "https://data.delijn.be/stops/109829"], ["https://data.delijn.be/stops/402965", "https://data.delijn.be/stops/405151"], ["https://data.delijn.be/stops/408685", "https://data.delijn.be/stops/408689"], ["https://data.delijn.be/stops/402897", "https://data.delijn.be/stops/402942"], ["https://data.delijn.be/stops/406225", "https://data.delijn.be/stops/406432"], ["https://data.delijn.be/stops/104643", "https://data.delijn.be/stops/107967"], ["https://data.delijn.be/stops/501375", "https://data.delijn.be/stops/506375"], ["https://data.delijn.be/stops/501714", "https://data.delijn.be/stops/506012"], ["https://data.delijn.be/stops/304666", "https://data.delijn.be/stops/304677"], ["https://data.delijn.be/stops/206529", "https://data.delijn.be/stops/207529"], ["https://data.delijn.be/stops/409236", "https://data.delijn.be/stops/409239"], ["https://data.delijn.be/stops/404474", "https://data.delijn.be/stops/404503"], ["https://data.delijn.be/stops/400466", "https://data.delijn.be/stops/404843"], ["https://data.delijn.be/stops/103598", "https://data.delijn.be/stops/109399"], ["https://data.delijn.be/stops/304207", "https://data.delijn.be/stops/304208"], ["https://data.delijn.be/stops/301383", "https://data.delijn.be/stops/301384"], ["https://data.delijn.be/stops/205243", "https://data.delijn.be/stops/207241"], ["https://data.delijn.be/stops/302752", "https://data.delijn.be/stops/302773"], ["https://data.delijn.be/stops/402538", "https://data.delijn.be/stops/402544"], ["https://data.delijn.be/stops/206236", "https://data.delijn.be/stops/207935"], ["https://data.delijn.be/stops/106174", "https://data.delijn.be/stops/106175"], ["https://data.delijn.be/stops/304187", "https://data.delijn.be/stops/304188"], ["https://data.delijn.be/stops/403008", "https://data.delijn.be/stops/410324"], ["https://data.delijn.be/stops/301394", "https://data.delijn.be/stops/301395"], ["https://data.delijn.be/stops/105478", "https://data.delijn.be/stops/105479"], ["https://data.delijn.be/stops/103259", "https://data.delijn.be/stops/105419"], ["https://data.delijn.be/stops/104417", "https://data.delijn.be/stops/104418"], ["https://data.delijn.be/stops/203339", "https://data.delijn.be/stops/203850"], ["https://data.delijn.be/stops/304563", "https://data.delijn.be/stops/304564"], ["https://data.delijn.be/stops/105917", "https://data.delijn.be/stops/105919"], ["https://data.delijn.be/stops/302543", "https://data.delijn.be/stops/302544"], ["https://data.delijn.be/stops/201694", "https://data.delijn.be/stops/203988"], ["https://data.delijn.be/stops/400106", "https://data.delijn.be/stops/409155"], ["https://data.delijn.be/stops/509119", "https://data.delijn.be/stops/509718"], ["https://data.delijn.be/stops/501198", "https://data.delijn.be/stops/506199"], ["https://data.delijn.be/stops/200387", "https://data.delijn.be/stops/203719"], ["https://data.delijn.be/stops/502300", "https://data.delijn.be/stops/507300"], ["https://data.delijn.be/stops/504068", "https://data.delijn.be/stops/504112"], ["https://data.delijn.be/stops/201703", "https://data.delijn.be/stops/210256"], ["https://data.delijn.be/stops/207180", "https://data.delijn.be/stops/308574"], ["https://data.delijn.be/stops/503894", "https://data.delijn.be/stops/508894"], ["https://data.delijn.be/stops/501492", "https://data.delijn.be/stops/501601"], ["https://data.delijn.be/stops/105258", "https://data.delijn.be/stops/105276"], ["https://data.delijn.be/stops/503233", "https://data.delijn.be/stops/503965"], ["https://data.delijn.be/stops/401224", "https://data.delijn.be/stops/401285"], ["https://data.delijn.be/stops/108998", "https://data.delijn.be/stops/109001"], ["https://data.delijn.be/stops/500946", "https://data.delijn.be/stops/509168"], ["https://data.delijn.be/stops/303759", "https://data.delijn.be/stops/303779"], ["https://data.delijn.be/stops/402601", "https://data.delijn.be/stops/402639"], ["https://data.delijn.be/stops/407135", "https://data.delijn.be/stops/407138"], ["https://data.delijn.be/stops/300292", "https://data.delijn.be/stops/300301"], ["https://data.delijn.be/stops/408323", "https://data.delijn.be/stops/408357"], ["https://data.delijn.be/stops/300201", "https://data.delijn.be/stops/300631"], ["https://data.delijn.be/stops/505124", "https://data.delijn.be/stops/505127"], ["https://data.delijn.be/stops/504758", "https://data.delijn.be/stops/507797"], ["https://data.delijn.be/stops/403744", "https://data.delijn.be/stops/403817"], ["https://data.delijn.be/stops/102172", "https://data.delijn.be/stops/108096"], ["https://data.delijn.be/stops/307715", "https://data.delijn.be/stops/307717"], ["https://data.delijn.be/stops/106690", "https://data.delijn.be/stops/106692"], ["https://data.delijn.be/stops/200896", "https://data.delijn.be/stops/200897"], ["https://data.delijn.be/stops/307903", "https://data.delijn.be/stops/308492"], ["https://data.delijn.be/stops/407741", "https://data.delijn.be/stops/409634"], ["https://data.delijn.be/stops/203938", "https://data.delijn.be/stops/211052"], ["https://data.delijn.be/stops/106565", "https://data.delijn.be/stops/106567"], ["https://data.delijn.be/stops/205023", "https://data.delijn.be/stops/205819"], ["https://data.delijn.be/stops/306123", "https://data.delijn.be/stops/306124"], ["https://data.delijn.be/stops/200510", "https://data.delijn.be/stops/201509"], ["https://data.delijn.be/stops/404408", "https://data.delijn.be/stops/404421"], ["https://data.delijn.be/stops/200301", "https://data.delijn.be/stops/201301"], ["https://data.delijn.be/stops/108082", "https://data.delijn.be/stops/108448"], ["https://data.delijn.be/stops/202099", "https://data.delijn.be/stops/203256"], ["https://data.delijn.be/stops/302319", "https://data.delijn.be/stops/304176"], ["https://data.delijn.be/stops/407161", "https://data.delijn.be/stops/407192"], ["https://data.delijn.be/stops/301723", "https://data.delijn.be/stops/301724"], ["https://data.delijn.be/stops/106397", "https://data.delijn.be/stops/106398"], ["https://data.delijn.be/stops/103755", "https://data.delijn.be/stops/104161"], ["https://data.delijn.be/stops/507028", "https://data.delijn.be/stops/507051"], ["https://data.delijn.be/stops/301388", "https://data.delijn.be/stops/304666"], ["https://data.delijn.be/stops/104548", "https://data.delijn.be/stops/308620"], ["https://data.delijn.be/stops/504193", "https://data.delijn.be/stops/509159"], ["https://data.delijn.be/stops/406766", "https://data.delijn.be/stops/408171"], ["https://data.delijn.be/stops/504949", "https://data.delijn.be/stops/509949"], ["https://data.delijn.be/stops/105725", "https://data.delijn.be/stops/105755"], ["https://data.delijn.be/stops/505112", "https://data.delijn.be/stops/509516"], ["https://data.delijn.be/stops/502633", "https://data.delijn.be/stops/507130"], ["https://data.delijn.be/stops/203062", "https://data.delijn.be/stops/203074"], ["https://data.delijn.be/stops/106209", "https://data.delijn.be/stops/109904"], ["https://data.delijn.be/stops/501428", "https://data.delijn.be/stops/506599"], ["https://data.delijn.be/stops/505584", "https://data.delijn.be/stops/505754"], ["https://data.delijn.be/stops/201863", "https://data.delijn.be/stops/202423"], ["https://data.delijn.be/stops/304010", "https://data.delijn.be/stops/304100"], ["https://data.delijn.be/stops/307350", "https://data.delijn.be/stops/307429"], ["https://data.delijn.be/stops/508829", "https://data.delijn.be/stops/509052"], ["https://data.delijn.be/stops/401563", "https://data.delijn.be/stops/401746"], ["https://data.delijn.be/stops/201674", "https://data.delijn.be/stops/203204"], ["https://data.delijn.be/stops/508114", "https://data.delijn.be/stops/508118"], ["https://data.delijn.be/stops/300347", "https://data.delijn.be/stops/300348"], ["https://data.delijn.be/stops/105449", "https://data.delijn.be/stops/105451"], ["https://data.delijn.be/stops/502224", "https://data.delijn.be/stops/505836"], ["https://data.delijn.be/stops/407595", "https://data.delijn.be/stops/407634"], ["https://data.delijn.be/stops/503406", "https://data.delijn.be/stops/503410"], ["https://data.delijn.be/stops/106791", "https://data.delijn.be/stops/106792"], ["https://data.delijn.be/stops/400844", "https://data.delijn.be/stops/400845"], ["https://data.delijn.be/stops/405926", "https://data.delijn.be/stops/405927"], ["https://data.delijn.be/stops/109767", "https://data.delijn.be/stops/109787"], ["https://data.delijn.be/stops/200537", "https://data.delijn.be/stops/210049"], ["https://data.delijn.be/stops/203938", "https://data.delijn.be/stops/203940"], ["https://data.delijn.be/stops/302646", "https://data.delijn.be/stops/308112"], ["https://data.delijn.be/stops/202967", "https://data.delijn.be/stops/204100"], ["https://data.delijn.be/stops/405517", "https://data.delijn.be/stops/405521"], ["https://data.delijn.be/stops/502441", "https://data.delijn.be/stops/507163"], ["https://data.delijn.be/stops/205367", "https://data.delijn.be/stops/205369"], ["https://data.delijn.be/stops/105772", "https://data.delijn.be/stops/105773"], ["https://data.delijn.be/stops/504593", "https://data.delijn.be/stops/509245"], ["https://data.delijn.be/stops/406803", "https://data.delijn.be/stops/407901"], ["https://data.delijn.be/stops/101148", "https://data.delijn.be/stops/106761"], ["https://data.delijn.be/stops/102503", "https://data.delijn.be/stops/406493"], ["https://data.delijn.be/stops/504460", "https://data.delijn.be/stops/509200"], ["https://data.delijn.be/stops/306693", "https://data.delijn.be/stops/306694"], ["https://data.delijn.be/stops/102436", "https://data.delijn.be/stops/107884"], ["https://data.delijn.be/stops/505804", "https://data.delijn.be/stops/510030"], ["https://data.delijn.be/stops/102947", "https://data.delijn.be/stops/106128"], ["https://data.delijn.be/stops/105068", "https://data.delijn.be/stops/106782"], ["https://data.delijn.be/stops/407341", "https://data.delijn.be/stops/409402"], ["https://data.delijn.be/stops/102457", "https://data.delijn.be/stops/109852"], ["https://data.delijn.be/stops/406529", "https://data.delijn.be/stops/409289"], ["https://data.delijn.be/stops/105356", "https://data.delijn.be/stops/106234"], ["https://data.delijn.be/stops/202434", "https://data.delijn.be/stops/203438"], ["https://data.delijn.be/stops/400301", "https://data.delijn.be/stops/400306"], ["https://data.delijn.be/stops/308472", "https://data.delijn.be/stops/308473"], ["https://data.delijn.be/stops/105052", "https://data.delijn.be/stops/105053"], ["https://data.delijn.be/stops/305399", "https://data.delijn.be/stops/305461"], ["https://data.delijn.be/stops/102632", "https://data.delijn.be/stops/103337"], ["https://data.delijn.be/stops/300480", "https://data.delijn.be/stops/300534"], ["https://data.delijn.be/stops/300670", "https://data.delijn.be/stops/300675"], ["https://data.delijn.be/stops/200979", "https://data.delijn.be/stops/201594"], ["https://data.delijn.be/stops/503881", "https://data.delijn.be/stops/508879"], ["https://data.delijn.be/stops/304139", "https://data.delijn.be/stops/307561"], ["https://data.delijn.be/stops/209145", "https://data.delijn.be/stops/209403"], ["https://data.delijn.be/stops/102229", "https://data.delijn.be/stops/102607"], ["https://data.delijn.be/stops/401203", "https://data.delijn.be/stops/401346"], ["https://data.delijn.be/stops/106847", "https://data.delijn.be/stops/106848"], ["https://data.delijn.be/stops/506363", "https://data.delijn.be/stops/506364"], ["https://data.delijn.be/stops/300345", "https://data.delijn.be/stops/300355"], ["https://data.delijn.be/stops/408613", "https://data.delijn.be/stops/408750"], ["https://data.delijn.be/stops/108071", "https://data.delijn.be/stops/108072"], ["https://data.delijn.be/stops/208253", "https://data.delijn.be/stops/209328"], ["https://data.delijn.be/stops/305753", "https://data.delijn.be/stops/306303"], ["https://data.delijn.be/stops/400228", "https://data.delijn.be/stops/402375"], ["https://data.delijn.be/stops/208199", "https://data.delijn.be/stops/209199"], ["https://data.delijn.be/stops/500002", "https://data.delijn.be/stops/508663"], ["https://data.delijn.be/stops/202632", "https://data.delijn.be/stops/204091"], ["https://data.delijn.be/stops/106590", "https://data.delijn.be/stops/107252"], ["https://data.delijn.be/stops/503717", "https://data.delijn.be/stops/503732"], ["https://data.delijn.be/stops/502499", "https://data.delijn.be/stops/505662"], ["https://data.delijn.be/stops/202927", "https://data.delijn.be/stops/208694"], ["https://data.delijn.be/stops/105771", "https://data.delijn.be/stops/105777"], ["https://data.delijn.be/stops/401260", "https://data.delijn.be/stops/401277"], ["https://data.delijn.be/stops/504405", "https://data.delijn.be/stops/505989"], ["https://data.delijn.be/stops/408591", "https://data.delijn.be/stops/408777"], ["https://data.delijn.be/stops/101651", "https://data.delijn.be/stops/108799"], ["https://data.delijn.be/stops/504121", "https://data.delijn.be/stops/504129"], ["https://data.delijn.be/stops/502574", "https://data.delijn.be/stops/507574"], ["https://data.delijn.be/stops/202589", "https://data.delijn.be/stops/203570"], ["https://data.delijn.be/stops/105854", "https://data.delijn.be/stops/105856"], ["https://data.delijn.be/stops/201554", "https://data.delijn.be/stops/201666"], ["https://data.delijn.be/stops/502023", "https://data.delijn.be/stops/507797"], ["https://data.delijn.be/stops/207340", "https://data.delijn.be/stops/207713"], ["https://data.delijn.be/stops/101919", "https://data.delijn.be/stops/106999"], ["https://data.delijn.be/stops/200478", "https://data.delijn.be/stops/201797"], ["https://data.delijn.be/stops/305616", "https://data.delijn.be/stops/305617"], ["https://data.delijn.be/stops/302974", "https://data.delijn.be/stops/302975"], ["https://data.delijn.be/stops/300822", "https://data.delijn.be/stops/300841"], ["https://data.delijn.be/stops/107425", "https://data.delijn.be/stops/107703"], ["https://data.delijn.be/stops/302878", "https://data.delijn.be/stops/302978"], ["https://data.delijn.be/stops/501523", "https://data.delijn.be/stops/501546"], ["https://data.delijn.be/stops/505141", "https://data.delijn.be/stops/505142"], ["https://data.delijn.be/stops/501551", "https://data.delijn.be/stops/502519"], ["https://data.delijn.be/stops/208174", "https://data.delijn.be/stops/209173"], ["https://data.delijn.be/stops/505151", "https://data.delijn.be/stops/506097"], ["https://data.delijn.be/stops/208083", "https://data.delijn.be/stops/208084"], ["https://data.delijn.be/stops/308637", "https://data.delijn.be/stops/308638"], ["https://data.delijn.be/stops/206471", "https://data.delijn.be/stops/207471"], ["https://data.delijn.be/stops/402669", "https://data.delijn.be/stops/410089"], ["https://data.delijn.be/stops/208133", "https://data.delijn.be/stops/208815"], ["https://data.delijn.be/stops/203538", "https://data.delijn.be/stops/209722"], ["https://data.delijn.be/stops/301122", "https://data.delijn.be/stops/301131"], ["https://data.delijn.be/stops/507569", "https://data.delijn.be/stops/507575"], ["https://data.delijn.be/stops/400755", "https://data.delijn.be/stops/409587"], ["https://data.delijn.be/stops/502069", "https://data.delijn.be/stops/507069"], ["https://data.delijn.be/stops/306375", "https://data.delijn.be/stops/307814"], ["https://data.delijn.be/stops/303515", "https://data.delijn.be/stops/305637"], ["https://data.delijn.be/stops/206130", "https://data.delijn.be/stops/207138"], ["https://data.delijn.be/stops/401445", "https://data.delijn.be/stops/406808"], ["https://data.delijn.be/stops/507320", "https://data.delijn.be/stops/507331"], ["https://data.delijn.be/stops/401014", "https://data.delijn.be/stops/401019"], ["https://data.delijn.be/stops/501423", "https://data.delijn.be/stops/506424"], ["https://data.delijn.be/stops/407692", "https://data.delijn.be/stops/407694"], ["https://data.delijn.be/stops/206243", "https://data.delijn.be/stops/206272"], ["https://data.delijn.be/stops/200762", "https://data.delijn.be/stops/507961"], ["https://data.delijn.be/stops/206102", "https://data.delijn.be/stops/207843"], ["https://data.delijn.be/stops/402873", "https://data.delijn.be/stops/402875"], ["https://data.delijn.be/stops/201832", "https://data.delijn.be/stops/208260"], ["https://data.delijn.be/stops/301583", "https://data.delijn.be/stops/305046"], ["https://data.delijn.be/stops/203822", "https://data.delijn.be/stops/209715"], ["https://data.delijn.be/stops/306685", "https://data.delijn.be/stops/306688"], ["https://data.delijn.be/stops/300183", "https://data.delijn.be/stops/300186"], ["https://data.delijn.be/stops/207101", "https://data.delijn.be/stops/207123"], ["https://data.delijn.be/stops/106521", "https://data.delijn.be/stops/106522"], ["https://data.delijn.be/stops/403715", "https://data.delijn.be/stops/403726"], ["https://data.delijn.be/stops/405772", "https://data.delijn.be/stops/409419"], ["https://data.delijn.be/stops/508158", "https://data.delijn.be/stops/508171"], ["https://data.delijn.be/stops/107158", "https://data.delijn.be/stops/107161"], ["https://data.delijn.be/stops/303092", "https://data.delijn.be/stops/307169"], ["https://data.delijn.be/stops/200108", "https://data.delijn.be/stops/200360"], ["https://data.delijn.be/stops/207797", "https://data.delijn.be/stops/208758"], ["https://data.delijn.be/stops/204053", "https://data.delijn.be/stops/205052"], ["https://data.delijn.be/stops/404647", "https://data.delijn.be/stops/407254"], ["https://data.delijn.be/stops/201931", "https://data.delijn.be/stops/202945"], ["https://data.delijn.be/stops/203706", "https://data.delijn.be/stops/203707"], ["https://data.delijn.be/stops/204411", "https://data.delijn.be/stops/205411"], ["https://data.delijn.be/stops/303188", "https://data.delijn.be/stops/303211"], ["https://data.delijn.be/stops/201850", "https://data.delijn.be/stops/211032"], ["https://data.delijn.be/stops/304759", "https://data.delijn.be/stops/305285"], ["https://data.delijn.be/stops/403131", "https://data.delijn.be/stops/403831"], ["https://data.delijn.be/stops/400171", "https://data.delijn.be/stops/407393"], ["https://data.delijn.be/stops/104419", "https://data.delijn.be/stops/204450"], ["https://data.delijn.be/stops/201922", "https://data.delijn.be/stops/207409"], ["https://data.delijn.be/stops/505184", "https://data.delijn.be/stops/509978"], ["https://data.delijn.be/stops/301946", "https://data.delijn.be/stops/307895"], ["https://data.delijn.be/stops/206357", "https://data.delijn.be/stops/207358"], ["https://data.delijn.be/stops/504981", "https://data.delijn.be/stops/509641"], ["https://data.delijn.be/stops/200906", "https://data.delijn.be/stops/203269"], ["https://data.delijn.be/stops/503797", "https://data.delijn.be/stops/508549"], ["https://data.delijn.be/stops/407044", "https://data.delijn.be/stops/407050"], ["https://data.delijn.be/stops/104966", "https://data.delijn.be/stops/107614"], ["https://data.delijn.be/stops/305235", "https://data.delijn.be/stops/305314"], ["https://data.delijn.be/stops/500019", "https://data.delijn.be/stops/507441"], ["https://data.delijn.be/stops/303645", "https://data.delijn.be/stops/305497"], ["https://data.delijn.be/stops/208164", "https://data.delijn.be/stops/209170"], ["https://data.delijn.be/stops/107230", "https://data.delijn.be/stops/108865"], ["https://data.delijn.be/stops/206925", "https://data.delijn.be/stops/207199"], ["https://data.delijn.be/stops/504348", "https://data.delijn.be/stops/509200"], ["https://data.delijn.be/stops/103570", "https://data.delijn.be/stops/107137"], ["https://data.delijn.be/stops/500158", "https://data.delijn.be/stops/505984"], ["https://data.delijn.be/stops/504527", "https://data.delijn.be/stops/504599"], ["https://data.delijn.be/stops/201763", "https://data.delijn.be/stops/209397"], ["https://data.delijn.be/stops/201420", "https://data.delijn.be/stops/203012"], ["https://data.delijn.be/stops/303733", "https://data.delijn.be/stops/307259"], ["https://data.delijn.be/stops/206139", "https://data.delijn.be/stops/206140"], ["https://data.delijn.be/stops/502511", "https://data.delijn.be/stops/502806"], ["https://data.delijn.be/stops/506644", "https://data.delijn.be/stops/509835"], ["https://data.delijn.be/stops/501313", "https://data.delijn.be/stops/501511"], ["https://data.delijn.be/stops/504258", "https://data.delijn.be/stops/509258"], ["https://data.delijn.be/stops/108284", "https://data.delijn.be/stops/108288"], ["https://data.delijn.be/stops/101557", "https://data.delijn.be/stops/103757"], ["https://data.delijn.be/stops/102972", "https://data.delijn.be/stops/105780"], ["https://data.delijn.be/stops/202386", "https://data.delijn.be/stops/209947"], ["https://data.delijn.be/stops/200300", "https://data.delijn.be/stops/201323"], ["https://data.delijn.be/stops/303101", "https://data.delijn.be/stops/305159"], ["https://data.delijn.be/stops/308074", "https://data.delijn.be/stops/308075"], ["https://data.delijn.be/stops/106967", "https://data.delijn.be/stops/106968"], ["https://data.delijn.be/stops/403221", "https://data.delijn.be/stops/403222"], ["https://data.delijn.be/stops/302071", "https://data.delijn.be/stops/305635"], ["https://data.delijn.be/stops/303953", "https://data.delijn.be/stops/303957"], ["https://data.delijn.be/stops/103999", "https://data.delijn.be/stops/107285"], ["https://data.delijn.be/stops/102813", "https://data.delijn.be/stops/104775"], ["https://data.delijn.be/stops/403960", "https://data.delijn.be/stops/405943"], ["https://data.delijn.be/stops/104741", "https://data.delijn.be/stops/108154"], ["https://data.delijn.be/stops/104585", "https://data.delijn.be/stops/105809"], ["https://data.delijn.be/stops/206002", "https://data.delijn.be/stops/207003"], ["https://data.delijn.be/stops/301184", "https://data.delijn.be/stops/304071"], ["https://data.delijn.be/stops/300323", "https://data.delijn.be/stops/300334"], ["https://data.delijn.be/stops/408505", "https://data.delijn.be/stops/408526"], ["https://data.delijn.be/stops/400223", "https://data.delijn.be/stops/407154"], ["https://data.delijn.be/stops/403199", "https://data.delijn.be/stops/403229"], ["https://data.delijn.be/stops/106327", "https://data.delijn.be/stops/106328"], ["https://data.delijn.be/stops/405683", "https://data.delijn.be/stops/407511"], ["https://data.delijn.be/stops/303757", "https://data.delijn.be/stops/303875"], ["https://data.delijn.be/stops/408439", "https://data.delijn.be/stops/408440"], ["https://data.delijn.be/stops/501559", "https://data.delijn.be/stops/506231"], ["https://data.delijn.be/stops/206604", "https://data.delijn.be/stops/207980"], ["https://data.delijn.be/stops/206048", "https://data.delijn.be/stops/206298"], ["https://data.delijn.be/stops/501155", "https://data.delijn.be/stops/506690"], ["https://data.delijn.be/stops/104599", "https://data.delijn.be/stops/106826"], ["https://data.delijn.be/stops/203857", "https://data.delijn.be/stops/208714"], ["https://data.delijn.be/stops/103994", "https://data.delijn.be/stops/104047"], ["https://data.delijn.be/stops/302848", "https://data.delijn.be/stops/308822"], ["https://data.delijn.be/stops/501442", "https://data.delijn.be/stops/506438"], ["https://data.delijn.be/stops/502177", "https://data.delijn.be/stops/507177"], ["https://data.delijn.be/stops/505664", "https://data.delijn.be/stops/509703"], ["https://data.delijn.be/stops/103281", "https://data.delijn.be/stops/105456"], ["https://data.delijn.be/stops/407729", "https://data.delijn.be/stops/409777"], ["https://data.delijn.be/stops/409398", "https://data.delijn.be/stops/409399"], ["https://data.delijn.be/stops/502348", "https://data.delijn.be/stops/505090"], ["https://data.delijn.be/stops/301291", "https://data.delijn.be/stops/304694"], ["https://data.delijn.be/stops/200386", "https://data.delijn.be/stops/203719"], ["https://data.delijn.be/stops/405156", "https://data.delijn.be/stops/405176"], ["https://data.delijn.be/stops/406616", "https://data.delijn.be/stops/406641"], ["https://data.delijn.be/stops/502351", "https://data.delijn.be/stops/502570"], ["https://data.delijn.be/stops/408358", "https://data.delijn.be/stops/408379"], ["https://data.delijn.be/stops/304542", "https://data.delijn.be/stops/307568"], ["https://data.delijn.be/stops/200006", "https://data.delijn.be/stops/210070"], ["https://data.delijn.be/stops/408529", "https://data.delijn.be/stops/408873"], ["https://data.delijn.be/stops/402248", "https://data.delijn.be/stops/402373"], ["https://data.delijn.be/stops/107281", "https://data.delijn.be/stops/107397"], ["https://data.delijn.be/stops/103959", "https://data.delijn.be/stops/109576"], ["https://data.delijn.be/stops/102163", "https://data.delijn.be/stops/104031"], ["https://data.delijn.be/stops/403887", "https://data.delijn.be/stops/403895"], ["https://data.delijn.be/stops/106005", "https://data.delijn.be/stops/106010"], ["https://data.delijn.be/stops/403426", "https://data.delijn.be/stops/410290"], ["https://data.delijn.be/stops/209669", "https://data.delijn.be/stops/209673"], ["https://data.delijn.be/stops/206957", "https://data.delijn.be/stops/217006"], ["https://data.delijn.be/stops/200773", "https://data.delijn.be/stops/505973"], ["https://data.delijn.be/stops/302862", "https://data.delijn.be/stops/306110"], ["https://data.delijn.be/stops/208218", "https://data.delijn.be/stops/208219"], ["https://data.delijn.be/stops/301472", "https://data.delijn.be/stops/305654"], ["https://data.delijn.be/stops/400467", "https://data.delijn.be/stops/400496"], ["https://data.delijn.be/stops/304157", "https://data.delijn.be/stops/307759"], ["https://data.delijn.be/stops/503160", "https://data.delijn.be/stops/508172"], ["https://data.delijn.be/stops/200944", "https://data.delijn.be/stops/202727"], ["https://data.delijn.be/stops/104668", "https://data.delijn.be/stops/108423"], ["https://data.delijn.be/stops/301372", "https://data.delijn.be/stops/304696"], ["https://data.delijn.be/stops/306557", "https://data.delijn.be/stops/306558"], ["https://data.delijn.be/stops/101003", "https://data.delijn.be/stops/107670"], ["https://data.delijn.be/stops/503469", "https://data.delijn.be/stops/508469"], ["https://data.delijn.be/stops/501172", "https://data.delijn.be/stops/506169"], ["https://data.delijn.be/stops/200098", "https://data.delijn.be/stops/200142"], ["https://data.delijn.be/stops/206458", "https://data.delijn.be/stops/206824"], ["https://data.delijn.be/stops/301518", "https://data.delijn.be/stops/301519"], ["https://data.delijn.be/stops/409434", "https://data.delijn.be/stops/409723"], ["https://data.delijn.be/stops/503600", "https://data.delijn.be/stops/505788"], ["https://data.delijn.be/stops/106421", "https://data.delijn.be/stops/106561"], ["https://data.delijn.be/stops/302755", "https://data.delijn.be/stops/302756"], ["https://data.delijn.be/stops/206927", "https://data.delijn.be/stops/207583"], ["https://data.delijn.be/stops/306698", "https://data.delijn.be/stops/308780"], ["https://data.delijn.be/stops/209112", "https://data.delijn.be/stops/209314"], ["https://data.delijn.be/stops/502383", "https://data.delijn.be/stops/507909"], ["https://data.delijn.be/stops/405953", "https://data.delijn.be/stops/405998"], ["https://data.delijn.be/stops/301160", "https://data.delijn.be/stops/301403"], ["https://data.delijn.be/stops/208787", "https://data.delijn.be/stops/209776"], ["https://data.delijn.be/stops/204970", "https://data.delijn.be/stops/216002"], ["https://data.delijn.be/stops/103775", "https://data.delijn.be/stops/104485"], ["https://data.delijn.be/stops/106919", "https://data.delijn.be/stops/106920"], ["https://data.delijn.be/stops/503720", "https://data.delijn.be/stops/509969"], ["https://data.delijn.be/stops/205913", "https://data.delijn.be/stops/205914"], ["https://data.delijn.be/stops/200673", "https://data.delijn.be/stops/201463"], ["https://data.delijn.be/stops/201263", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/504806", "https://data.delijn.be/stops/504807"], ["https://data.delijn.be/stops/202537", "https://data.delijn.be/stops/202730"], ["https://data.delijn.be/stops/204095", "https://data.delijn.be/stops/204250"], ["https://data.delijn.be/stops/400502", "https://data.delijn.be/stops/402637"], ["https://data.delijn.be/stops/409044", "https://data.delijn.be/stops/409470"], ["https://data.delijn.be/stops/204493", "https://data.delijn.be/stops/205265"], ["https://data.delijn.be/stops/403917", "https://data.delijn.be/stops/404004"], ["https://data.delijn.be/stops/211011", "https://data.delijn.be/stops/502274"], ["https://data.delijn.be/stops/401410", "https://data.delijn.be/stops/300992"], ["https://data.delijn.be/stops/504159", "https://data.delijn.be/stops/509056"], ["https://data.delijn.be/stops/501065", "https://data.delijn.be/stops/506064"], ["https://data.delijn.be/stops/400888", "https://data.delijn.be/stops/400976"], ["https://data.delijn.be/stops/300995", "https://data.delijn.be/stops/301082"], ["https://data.delijn.be/stops/502492", "https://data.delijn.be/stops/503334"], ["https://data.delijn.be/stops/308464", "https://data.delijn.be/stops/308513"], ["https://data.delijn.be/stops/304399", "https://data.delijn.be/stops/308827"], ["https://data.delijn.be/stops/202487", "https://data.delijn.be/stops/202488"], ["https://data.delijn.be/stops/206487", "https://data.delijn.be/stops/206861"], ["https://data.delijn.be/stops/504518", "https://data.delijn.be/stops/504521"], ["https://data.delijn.be/stops/103115", "https://data.delijn.be/stops/104126"], ["https://data.delijn.be/stops/102407", "https://data.delijn.be/stops/109008"], ["https://data.delijn.be/stops/204399", "https://data.delijn.be/stops/205772"], ["https://data.delijn.be/stops/203179", "https://data.delijn.be/stops/205792"], ["https://data.delijn.be/stops/504037", "https://data.delijn.be/stops/504040"], ["https://data.delijn.be/stops/106239", "https://data.delijn.be/stops/106240"], ["https://data.delijn.be/stops/202425", "https://data.delijn.be/stops/202426"], ["https://data.delijn.be/stops/504021", "https://data.delijn.be/stops/509087"], ["https://data.delijn.be/stops/302113", "https://data.delijn.be/stops/302121"], ["https://data.delijn.be/stops/402874", "https://data.delijn.be/stops/404353"], ["https://data.delijn.be/stops/303421", "https://data.delijn.be/stops/304986"], ["https://data.delijn.be/stops/405322", "https://data.delijn.be/stops/405323"], ["https://data.delijn.be/stops/505060", "https://data.delijn.be/stops/505647"], ["https://data.delijn.be/stops/101673", "https://data.delijn.be/stops/408809"], ["https://data.delijn.be/stops/407352", "https://data.delijn.be/stops/407446"], ["https://data.delijn.be/stops/407657", "https://data.delijn.be/stops/407714"], ["https://data.delijn.be/stops/300245", "https://data.delijn.be/stops/305394"], ["https://data.delijn.be/stops/403030", "https://data.delijn.be/stops/403162"], ["https://data.delijn.be/stops/300643", "https://data.delijn.be/stops/306746"], ["https://data.delijn.be/stops/107134", "https://data.delijn.be/stops/107136"], ["https://data.delijn.be/stops/308247", "https://data.delijn.be/stops/308248"], ["https://data.delijn.be/stops/107622", "https://data.delijn.be/stops/109761"], ["https://data.delijn.be/stops/503310", "https://data.delijn.be/stops/508310"], ["https://data.delijn.be/stops/508078", "https://data.delijn.be/stops/508594"], ["https://data.delijn.be/stops/202298", "https://data.delijn.be/stops/203326"], ["https://data.delijn.be/stops/205987", "https://data.delijn.be/stops/209285"], ["https://data.delijn.be/stops/503091", "https://data.delijn.be/stops/508102"], ["https://data.delijn.be/stops/105111", "https://data.delijn.be/stops/105113"], ["https://data.delijn.be/stops/204034", "https://data.delijn.be/stops/204558"], ["https://data.delijn.be/stops/408100", "https://data.delijn.be/stops/408420"], ["https://data.delijn.be/stops/206406", "https://data.delijn.be/stops/207406"], ["https://data.delijn.be/stops/502103", "https://data.delijn.be/stops/507090"], ["https://data.delijn.be/stops/300430", "https://data.delijn.be/stops/308062"], ["https://data.delijn.be/stops/300308", "https://data.delijn.be/stops/300525"], ["https://data.delijn.be/stops/200699", "https://data.delijn.be/stops/202790"], ["https://data.delijn.be/stops/101456", "https://data.delijn.be/stops/108214"], ["https://data.delijn.be/stops/108961", "https://data.delijn.be/stops/108963"], ["https://data.delijn.be/stops/401245", "https://data.delijn.be/stops/410171"], ["https://data.delijn.be/stops/203040", "https://data.delijn.be/stops/203686"], ["https://data.delijn.be/stops/104404", "https://data.delijn.be/stops/205336"], ["https://data.delijn.be/stops/302726", "https://data.delijn.be/stops/302769"], ["https://data.delijn.be/stops/503035", "https://data.delijn.be/stops/508035"], ["https://data.delijn.be/stops/402755", "https://data.delijn.be/stops/408275"], ["https://data.delijn.be/stops/300876", "https://data.delijn.be/stops/300884"], ["https://data.delijn.be/stops/504208", "https://data.delijn.be/stops/509215"], ["https://data.delijn.be/stops/400816", "https://data.delijn.be/stops/400876"], ["https://data.delijn.be/stops/504064", "https://data.delijn.be/stops/509067"], ["https://data.delijn.be/stops/304501", "https://data.delijn.be/stops/305602"], ["https://data.delijn.be/stops/206018", "https://data.delijn.be/stops/206078"], ["https://data.delijn.be/stops/105237", "https://data.delijn.be/stops/108000"], ["https://data.delijn.be/stops/409272", "https://data.delijn.be/stops/409273"], ["https://data.delijn.be/stops/300470", "https://data.delijn.be/stops/300475"], ["https://data.delijn.be/stops/501098", "https://data.delijn.be/stops/506098"], ["https://data.delijn.be/stops/307307", "https://data.delijn.be/stops/307308"], ["https://data.delijn.be/stops/509950", "https://data.delijn.be/stops/509975"], ["https://data.delijn.be/stops/505665", "https://data.delijn.be/stops/507482"], ["https://data.delijn.be/stops/211015", "https://data.delijn.be/stops/507277"], ["https://data.delijn.be/stops/300094", "https://data.delijn.be/stops/300095"], ["https://data.delijn.be/stops/207473", "https://data.delijn.be/stops/207495"], ["https://data.delijn.be/stops/205136", "https://data.delijn.be/stops/209912"], ["https://data.delijn.be/stops/201849", "https://data.delijn.be/stops/209640"], ["https://data.delijn.be/stops/208771", "https://data.delijn.be/stops/209771"], ["https://data.delijn.be/stops/400913", "https://data.delijn.be/stops/400917"], ["https://data.delijn.be/stops/402407", "https://data.delijn.be/stops/402463"], ["https://data.delijn.be/stops/202412", "https://data.delijn.be/stops/204943"], ["https://data.delijn.be/stops/306095", "https://data.delijn.be/stops/306096"], ["https://data.delijn.be/stops/407730", "https://data.delijn.be/stops/409782"], ["https://data.delijn.be/stops/503145", "https://data.delijn.be/stops/509631"], ["https://data.delijn.be/stops/102792", "https://data.delijn.be/stops/105177"], ["https://data.delijn.be/stops/207077", "https://data.delijn.be/stops/207877"], ["https://data.delijn.be/stops/206657", "https://data.delijn.be/stops/206658"], ["https://data.delijn.be/stops/404401", "https://data.delijn.be/stops/410102"], ["https://data.delijn.be/stops/410171", "https://data.delijn.be/stops/410172"], ["https://data.delijn.be/stops/409581", "https://data.delijn.be/stops/409587"], ["https://data.delijn.be/stops/503640", "https://data.delijn.be/stops/503981"], ["https://data.delijn.be/stops/407831", "https://data.delijn.be/stops/407943"], ["https://data.delijn.be/stops/305503", "https://data.delijn.be/stops/305559"], ["https://data.delijn.be/stops/200126", "https://data.delijn.be/stops/201129"], ["https://data.delijn.be/stops/204200", "https://data.delijn.be/stops/205235"], ["https://data.delijn.be/stops/304647", "https://data.delijn.be/stops/304677"], ["https://data.delijn.be/stops/407045", "https://data.delijn.be/stops/407078"], ["https://data.delijn.be/stops/501207", "https://data.delijn.be/stops/501426"], ["https://data.delijn.be/stops/204998", "https://data.delijn.be/stops/218008"], ["https://data.delijn.be/stops/301068", "https://data.delijn.be/stops/301070"], ["https://data.delijn.be/stops/304435", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/101459", "https://data.delijn.be/stops/101481"], ["https://data.delijn.be/stops/209387", "https://data.delijn.be/stops/209413"], ["https://data.delijn.be/stops/400919", "https://data.delijn.be/stops/400922"], ["https://data.delijn.be/stops/300208", "https://data.delijn.be/stops/300270"], ["https://data.delijn.be/stops/506240", "https://data.delijn.be/stops/506242"], ["https://data.delijn.be/stops/503361", "https://data.delijn.be/stops/503410"], ["https://data.delijn.be/stops/502757", "https://data.delijn.be/stops/507762"], ["https://data.delijn.be/stops/505725", "https://data.delijn.be/stops/507297"], ["https://data.delijn.be/stops/501114", "https://data.delijn.be/stops/506664"], ["https://data.delijn.be/stops/502066", "https://data.delijn.be/stops/502707"], ["https://data.delijn.be/stops/201227", "https://data.delijn.be/stops/201369"], ["https://data.delijn.be/stops/508662", "https://data.delijn.be/stops/508880"], ["https://data.delijn.be/stops/503669", "https://data.delijn.be/stops/505978"], ["https://data.delijn.be/stops/104118", "https://data.delijn.be/stops/104494"], ["https://data.delijn.be/stops/302148", "https://data.delijn.be/stops/302149"], ["https://data.delijn.be/stops/101131", "https://data.delijn.be/stops/107958"], ["https://data.delijn.be/stops/102985", "https://data.delijn.be/stops/103670"], ["https://data.delijn.be/stops/301537", "https://data.delijn.be/stops/301548"], ["https://data.delijn.be/stops/305243", "https://data.delijn.be/stops/305271"], ["https://data.delijn.be/stops/301700", "https://data.delijn.be/stops/301745"], ["https://data.delijn.be/stops/503962", "https://data.delijn.be/stops/504668"], ["https://data.delijn.be/stops/303742", "https://data.delijn.be/stops/303745"], ["https://data.delijn.be/stops/300269", "https://data.delijn.be/stops/303634"], ["https://data.delijn.be/stops/109345", "https://data.delijn.be/stops/109346"], ["https://data.delijn.be/stops/406070", "https://data.delijn.be/stops/410148"], ["https://data.delijn.be/stops/202182", "https://data.delijn.be/stops/203183"], ["https://data.delijn.be/stops/303800", "https://data.delijn.be/stops/303801"], ["https://data.delijn.be/stops/303933", "https://data.delijn.be/stops/304594"], ["https://data.delijn.be/stops/106732", "https://data.delijn.be/stops/108915"], ["https://data.delijn.be/stops/504240", "https://data.delijn.be/stops/509231"], ["https://data.delijn.be/stops/202128", "https://data.delijn.be/stops/203583"], ["https://data.delijn.be/stops/210124", "https://data.delijn.be/stops/211124"], ["https://data.delijn.be/stops/408197", "https://data.delijn.be/stops/409340"], ["https://data.delijn.be/stops/305170", "https://data.delijn.be/stops/307104"], ["https://data.delijn.be/stops/201861", "https://data.delijn.be/stops/202274"], ["https://data.delijn.be/stops/502547", "https://data.delijn.be/stops/505777"], ["https://data.delijn.be/stops/401076", "https://data.delijn.be/stops/401077"], ["https://data.delijn.be/stops/505372", "https://data.delijn.be/stops/509155"], ["https://data.delijn.be/stops/504406", "https://data.delijn.be/stops/505785"], ["https://data.delijn.be/stops/503413", "https://data.delijn.be/stops/508427"], ["https://data.delijn.be/stops/103128", "https://data.delijn.be/stops/106777"], ["https://data.delijn.be/stops/107662", "https://data.delijn.be/stops/107666"], ["https://data.delijn.be/stops/308146", "https://data.delijn.be/stops/308149"], ["https://data.delijn.be/stops/301615", "https://data.delijn.be/stops/301625"], ["https://data.delijn.be/stops/201488", "https://data.delijn.be/stops/203454"], ["https://data.delijn.be/stops/106005", "https://data.delijn.be/stops/107900"], ["https://data.delijn.be/stops/400454", "https://data.delijn.be/stops/400466"], ["https://data.delijn.be/stops/407018", "https://data.delijn.be/stops/407084"], ["https://data.delijn.be/stops/502911", "https://data.delijn.be/stops/507246"], ["https://data.delijn.be/stops/302849", "https://data.delijn.be/stops/302854"], ["https://data.delijn.be/stops/502167", "https://data.delijn.be/stops/507167"], ["https://data.delijn.be/stops/505269", "https://data.delijn.be/stops/508783"], ["https://data.delijn.be/stops/104742", "https://data.delijn.be/stops/108154"], ["https://data.delijn.be/stops/504787", "https://data.delijn.be/stops/504862"], ["https://data.delijn.be/stops/200108", "https://data.delijn.be/stops/202006"], ["https://data.delijn.be/stops/104588", "https://data.delijn.be/stops/106068"], ["https://data.delijn.be/stops/108074", "https://data.delijn.be/stops/108078"], ["https://data.delijn.be/stops/505317", "https://data.delijn.be/stops/507483"], ["https://data.delijn.be/stops/200448", "https://data.delijn.be/stops/203352"], ["https://data.delijn.be/stops/202220", "https://data.delijn.be/stops/202221"], ["https://data.delijn.be/stops/504007", "https://data.delijn.be/stops/504577"], ["https://data.delijn.be/stops/303954", "https://data.delijn.be/stops/303974"], ["https://data.delijn.be/stops/301948", "https://data.delijn.be/stops/306970"], ["https://data.delijn.be/stops/400576", "https://data.delijn.be/stops/404138"], ["https://data.delijn.be/stops/403284", "https://data.delijn.be/stops/410164"], ["https://data.delijn.be/stops/402388", "https://data.delijn.be/stops/402391"], ["https://data.delijn.be/stops/504753", "https://data.delijn.be/stops/509753"], ["https://data.delijn.be/stops/404534", "https://data.delijn.be/stops/404535"], ["https://data.delijn.be/stops/503885", "https://data.delijn.be/stops/508887"], ["https://data.delijn.be/stops/504551", "https://data.delijn.be/stops/509544"], ["https://data.delijn.be/stops/405165", "https://data.delijn.be/stops/405167"], ["https://data.delijn.be/stops/302264", "https://data.delijn.be/stops/302265"], ["https://data.delijn.be/stops/403156", "https://data.delijn.be/stops/403159"], ["https://data.delijn.be/stops/505503", "https://data.delijn.be/stops/505517"], ["https://data.delijn.be/stops/301190", "https://data.delijn.be/stops/308264"], ["https://data.delijn.be/stops/505644", "https://data.delijn.be/stops/509140"], ["https://data.delijn.be/stops/206945", "https://data.delijn.be/stops/209551"], ["https://data.delijn.be/stops/504274", "https://data.delijn.be/stops/504578"], ["https://data.delijn.be/stops/308741", "https://data.delijn.be/stops/308746"], ["https://data.delijn.be/stops/208468", "https://data.delijn.be/stops/209468"], ["https://data.delijn.be/stops/202038", "https://data.delijn.be/stops/202983"], ["https://data.delijn.be/stops/206755", "https://data.delijn.be/stops/209476"], ["https://data.delijn.be/stops/201378", "https://data.delijn.be/stops/211009"], ["https://data.delijn.be/stops/503529", "https://data.delijn.be/stops/508527"], ["https://data.delijn.be/stops/103219", "https://data.delijn.be/stops/108348"], ["https://data.delijn.be/stops/105006", "https://data.delijn.be/stops/105073"], ["https://data.delijn.be/stops/202338", "https://data.delijn.be/stops/203337"], ["https://data.delijn.be/stops/201762", "https://data.delijn.be/stops/201763"], ["https://data.delijn.be/stops/501636", "https://data.delijn.be/stops/501637"], ["https://data.delijn.be/stops/105586", "https://data.delijn.be/stops/105587"], ["https://data.delijn.be/stops/504151", "https://data.delijn.be/stops/504177"], ["https://data.delijn.be/stops/302621", "https://data.delijn.be/stops/302622"], ["https://data.delijn.be/stops/206627", "https://data.delijn.be/stops/209573"], ["https://data.delijn.be/stops/406849", "https://data.delijn.be/stops/406852"], ["https://data.delijn.be/stops/206596", "https://data.delijn.be/stops/209671"], ["https://data.delijn.be/stops/306167", "https://data.delijn.be/stops/308545"], ["https://data.delijn.be/stops/204772", "https://data.delijn.be/stops/205642"], ["https://data.delijn.be/stops/208789", "https://data.delijn.be/stops/209348"], ["https://data.delijn.be/stops/305082", "https://data.delijn.be/stops/306955"], ["https://data.delijn.be/stops/101765", "https://data.delijn.be/stops/103880"], ["https://data.delijn.be/stops/102423", "https://data.delijn.be/stops/107011"], ["https://data.delijn.be/stops/401199", "https://data.delijn.be/stops/401360"], ["https://data.delijn.be/stops/504029", "https://data.delijn.be/stops/509487"], ["https://data.delijn.be/stops/302289", "https://data.delijn.be/stops/302290"], ["https://data.delijn.be/stops/102658", "https://data.delijn.be/stops/109737"], ["https://data.delijn.be/stops/302014", "https://data.delijn.be/stops/302015"], ["https://data.delijn.be/stops/403054", "https://data.delijn.be/stops/403055"], ["https://data.delijn.be/stops/205064", "https://data.delijn.be/stops/205101"], ["https://data.delijn.be/stops/503122", "https://data.delijn.be/stops/505793"], ["https://data.delijn.be/stops/104378", "https://data.delijn.be/stops/204605"], ["https://data.delijn.be/stops/101485", "https://data.delijn.be/stops/102813"], ["https://data.delijn.be/stops/404967", "https://data.delijn.be/stops/404968"], ["https://data.delijn.be/stops/300076", "https://data.delijn.be/stops/308449"], ["https://data.delijn.be/stops/102185", "https://data.delijn.be/stops/103680"], ["https://data.delijn.be/stops/503186", "https://data.delijn.be/stops/508186"], ["https://data.delijn.be/stops/208163", "https://data.delijn.be/stops/209163"], ["https://data.delijn.be/stops/208167", "https://data.delijn.be/stops/209175"], ["https://data.delijn.be/stops/108036", "https://data.delijn.be/stops/108038"], ["https://data.delijn.be/stops/407497", "https://data.delijn.be/stops/409458"], ["https://data.delijn.be/stops/204365", "https://data.delijn.be/stops/214012"], ["https://data.delijn.be/stops/200711", "https://data.delijn.be/stops/203603"], ["https://data.delijn.be/stops/400801", "https://data.delijn.be/stops/400824"], ["https://data.delijn.be/stops/101565", "https://data.delijn.be/stops/102540"], ["https://data.delijn.be/stops/503494", "https://data.delijn.be/stops/503496"], ["https://data.delijn.be/stops/301835", "https://data.delijn.be/stops/305872"], ["https://data.delijn.be/stops/102748", "https://data.delijn.be/stops/104909"], ["https://data.delijn.be/stops/102272", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/502748", "https://data.delijn.be/stops/509880"], ["https://data.delijn.be/stops/304916", "https://data.delijn.be/stops/304917"], ["https://data.delijn.be/stops/400034", "https://data.delijn.be/stops/400428"], ["https://data.delijn.be/stops/300271", "https://data.delijn.be/stops/302149"], ["https://data.delijn.be/stops/405711", "https://data.delijn.be/stops/407212"], ["https://data.delijn.be/stops/206587", "https://data.delijn.be/stops/206919"], ["https://data.delijn.be/stops/505406", "https://data.delijn.be/stops/509631"], ["https://data.delijn.be/stops/305585", "https://data.delijn.be/stops/305591"], ["https://data.delijn.be/stops/209610", "https://data.delijn.be/stops/504000"], ["https://data.delijn.be/stops/107113", "https://data.delijn.be/stops/107114"], ["https://data.delijn.be/stops/408270", "https://data.delijn.be/stops/408374"], ["https://data.delijn.be/stops/503478", "https://data.delijn.be/stops/508473"], ["https://data.delijn.be/stops/204655", "https://data.delijn.be/stops/204670"], ["https://data.delijn.be/stops/106280", "https://data.delijn.be/stops/106281"], ["https://data.delijn.be/stops/208593", "https://data.delijn.be/stops/208967"], ["https://data.delijn.be/stops/307224", "https://data.delijn.be/stops/307225"], ["https://data.delijn.be/stops/103515", "https://data.delijn.be/stops/103930"], ["https://data.delijn.be/stops/508039", "https://data.delijn.be/stops/508040"], ["https://data.delijn.be/stops/303320", "https://data.delijn.be/stops/303321"], ["https://data.delijn.be/stops/101914", "https://data.delijn.be/stops/104081"], ["https://data.delijn.be/stops/202006", "https://data.delijn.be/stops/209908"], ["https://data.delijn.be/stops/102846", "https://data.delijn.be/stops/103119"], ["https://data.delijn.be/stops/303441", "https://data.delijn.be/stops/306369"], ["https://data.delijn.be/stops/208147", "https://data.delijn.be/stops/209147"], ["https://data.delijn.be/stops/400793", "https://data.delijn.be/stops/400893"], ["https://data.delijn.be/stops/502330", "https://data.delijn.be/stops/507333"], ["https://data.delijn.be/stops/504452", "https://data.delijn.be/stops/504828"], ["https://data.delijn.be/stops/302921", "https://data.delijn.be/stops/306318"], ["https://data.delijn.be/stops/301280", "https://data.delijn.be/stops/306200"], ["https://data.delijn.be/stops/400054", "https://data.delijn.be/stops/401970"], ["https://data.delijn.be/stops/503436", "https://data.delijn.be/stops/508393"], ["https://data.delijn.be/stops/300767", "https://data.delijn.be/stops/300769"], ["https://data.delijn.be/stops/504033", "https://data.delijn.be/stops/505121"], ["https://data.delijn.be/stops/102322", "https://data.delijn.be/stops/106462"], ["https://data.delijn.be/stops/505057", "https://data.delijn.be/stops/505060"], ["https://data.delijn.be/stops/402946", "https://data.delijn.be/stops/306020"], ["https://data.delijn.be/stops/200617", "https://data.delijn.be/stops/200982"], ["https://data.delijn.be/stops/404758", "https://data.delijn.be/stops/404817"], ["https://data.delijn.be/stops/102978", "https://data.delijn.be/stops/109523"], ["https://data.delijn.be/stops/501688", "https://data.delijn.be/stops/506615"], ["https://data.delijn.be/stops/105089", "https://data.delijn.be/stops/105094"], ["https://data.delijn.be/stops/203403", "https://data.delijn.be/stops/211115"], ["https://data.delijn.be/stops/403103", "https://data.delijn.be/stops/403445"], ["https://data.delijn.be/stops/400437", "https://data.delijn.be/stops/406768"], ["https://data.delijn.be/stops/503631", "https://data.delijn.be/stops/505198"], ["https://data.delijn.be/stops/102945", "https://data.delijn.be/stops/104590"], ["https://data.delijn.be/stops/109904", "https://data.delijn.be/stops/109905"], ["https://data.delijn.be/stops/107226", "https://data.delijn.be/stops/107229"], ["https://data.delijn.be/stops/400375", "https://data.delijn.be/stops/408809"], ["https://data.delijn.be/stops/201495", "https://data.delijn.be/stops/203938"], ["https://data.delijn.be/stops/109316", "https://data.delijn.be/stops/109319"], ["https://data.delijn.be/stops/304533", "https://data.delijn.be/stops/304540"], ["https://data.delijn.be/stops/405942", "https://data.delijn.be/stops/405978"], ["https://data.delijn.be/stops/504057", "https://data.delijn.be/stops/509155"], ["https://data.delijn.be/stops/408762", "https://data.delijn.be/stops/408796"], ["https://data.delijn.be/stops/103043", "https://data.delijn.be/stops/103923"], ["https://data.delijn.be/stops/106290", "https://data.delijn.be/stops/106304"], ["https://data.delijn.be/stops/502703", "https://data.delijn.be/stops/507703"], ["https://data.delijn.be/stops/503908", "https://data.delijn.be/stops/505687"], ["https://data.delijn.be/stops/200952", "https://data.delijn.be/stops/202249"], ["https://data.delijn.be/stops/200744", "https://data.delijn.be/stops/202784"], ["https://data.delijn.be/stops/101226", "https://data.delijn.be/stops/102748"], ["https://data.delijn.be/stops/308408", "https://data.delijn.be/stops/308411"], ["https://data.delijn.be/stops/406008", "https://data.delijn.be/stops/406044"], ["https://data.delijn.be/stops/503964", "https://data.delijn.be/stops/504285"], ["https://data.delijn.be/stops/305735", "https://data.delijn.be/stops/306308"], ["https://data.delijn.be/stops/108698", "https://data.delijn.be/stops/108812"], ["https://data.delijn.be/stops/108846", "https://data.delijn.be/stops/108862"], ["https://data.delijn.be/stops/301336", "https://data.delijn.be/stops/306118"], ["https://data.delijn.be/stops/301102", "https://data.delijn.be/stops/301106"], ["https://data.delijn.be/stops/206893", "https://data.delijn.be/stops/207893"], ["https://data.delijn.be/stops/502104", "https://data.delijn.be/stops/502584"], ["https://data.delijn.be/stops/502524", "https://data.delijn.be/stops/505019"], ["https://data.delijn.be/stops/501032", "https://data.delijn.be/stops/506034"], ["https://data.delijn.be/stops/301243", "https://data.delijn.be/stops/308134"], ["https://data.delijn.be/stops/203980", "https://data.delijn.be/stops/203981"], ["https://data.delijn.be/stops/105267", "https://data.delijn.be/stops/105268"], ["https://data.delijn.be/stops/303625", "https://data.delijn.be/stops/305445"], ["https://data.delijn.be/stops/504634", "https://data.delijn.be/stops/509335"], ["https://data.delijn.be/stops/302660", "https://data.delijn.be/stops/306339"], ["https://data.delijn.be/stops/507043", "https://data.delijn.be/stops/507591"], ["https://data.delijn.be/stops/103765", "https://data.delijn.be/stops/105725"], ["https://data.delijn.be/stops/403984", "https://data.delijn.be/stops/404004"], ["https://data.delijn.be/stops/402704", "https://data.delijn.be/stops/402705"], ["https://data.delijn.be/stops/206604", "https://data.delijn.be/stops/207604"], ["https://data.delijn.be/stops/104506", "https://data.delijn.be/stops/107926"], ["https://data.delijn.be/stops/209987", "https://data.delijn.be/stops/210090"], ["https://data.delijn.be/stops/506419", "https://data.delijn.be/stops/506475"], ["https://data.delijn.be/stops/204704", "https://data.delijn.be/stops/204705"], ["https://data.delijn.be/stops/405147", "https://data.delijn.be/stops/405284"], ["https://data.delijn.be/stops/106964", "https://data.delijn.be/stops/106966"], ["https://data.delijn.be/stops/406161", "https://data.delijn.be/stops/409408"], ["https://data.delijn.be/stops/200916", "https://data.delijn.be/stops/202686"], ["https://data.delijn.be/stops/106370", "https://data.delijn.be/stops/106371"], ["https://data.delijn.be/stops/404851", "https://data.delijn.be/stops/404880"], ["https://data.delijn.be/stops/307347", "https://data.delijn.be/stops/307348"], ["https://data.delijn.be/stops/401531", "https://data.delijn.be/stops/401710"], ["https://data.delijn.be/stops/300422", "https://data.delijn.be/stops/300442"], ["https://data.delijn.be/stops/501229", "https://data.delijn.be/stops/506419"], ["https://data.delijn.be/stops/201862", "https://data.delijn.be/stops/202274"], ["https://data.delijn.be/stops/200928", "https://data.delijn.be/stops/202047"], ["https://data.delijn.be/stops/101601", "https://data.delijn.be/stops/106024"], ["https://data.delijn.be/stops/501208", "https://data.delijn.be/stops/506208"], ["https://data.delijn.be/stops/102814", "https://data.delijn.be/stops/102816"], ["https://data.delijn.be/stops/402355", "https://data.delijn.be/stops/402365"], ["https://data.delijn.be/stops/109549", "https://data.delijn.be/stops/109757"], ["https://data.delijn.be/stops/505692", "https://data.delijn.be/stops/507374"], ["https://data.delijn.be/stops/300685", "https://data.delijn.be/stops/305069"], ["https://data.delijn.be/stops/502502", "https://data.delijn.be/stops/507502"], ["https://data.delijn.be/stops/205130", "https://data.delijn.be/stops/205143"], ["https://data.delijn.be/stops/305071", "https://data.delijn.be/stops/306956"], ["https://data.delijn.be/stops/400694", "https://data.delijn.be/stops/409524"], ["https://data.delijn.be/stops/504222", "https://data.delijn.be/stops/509222"], ["https://data.delijn.be/stops/102054", "https://data.delijn.be/stops/103308"], ["https://data.delijn.be/stops/302406", "https://data.delijn.be/stops/302409"], ["https://data.delijn.be/stops/402191", "https://data.delijn.be/stops/402195"], ["https://data.delijn.be/stops/203963", "https://data.delijn.be/stops/203964"], ["https://data.delijn.be/stops/102847", "https://data.delijn.be/stops/102848"], ["https://data.delijn.be/stops/500559", "https://data.delijn.be/stops/500560"], ["https://data.delijn.be/stops/303721", "https://data.delijn.be/stops/303751"], ["https://data.delijn.be/stops/403274", "https://data.delijn.be/stops/403381"], ["https://data.delijn.be/stops/106658", "https://data.delijn.be/stops/106660"], ["https://data.delijn.be/stops/202924", "https://data.delijn.be/stops/202926"], ["https://data.delijn.be/stops/200189", "https://data.delijn.be/stops/200987"], ["https://data.delijn.be/stops/506311", "https://data.delijn.be/stops/509898"], ["https://data.delijn.be/stops/401174", "https://data.delijn.be/stops/406654"], ["https://data.delijn.be/stops/402067", "https://data.delijn.be/stops/402284"], ["https://data.delijn.be/stops/204636", "https://data.delijn.be/stops/205636"], ["https://data.delijn.be/stops/204113", "https://data.delijn.be/stops/205682"], ["https://data.delijn.be/stops/403339", "https://data.delijn.be/stops/403522"], ["https://data.delijn.be/stops/206059", "https://data.delijn.be/stops/206448"], ["https://data.delijn.be/stops/403348", "https://data.delijn.be/stops/403349"], ["https://data.delijn.be/stops/206458", "https://data.delijn.be/stops/206459"], ["https://data.delijn.be/stops/306555", "https://data.delijn.be/stops/306557"], ["https://data.delijn.be/stops/101550", "https://data.delijn.be/stops/103757"], ["https://data.delijn.be/stops/406032", "https://data.delijn.be/stops/406087"], ["https://data.delijn.be/stops/301824", "https://data.delijn.be/stops/301825"], ["https://data.delijn.be/stops/407664", "https://data.delijn.be/stops/407676"], ["https://data.delijn.be/stops/202818", "https://data.delijn.be/stops/202819"], ["https://data.delijn.be/stops/106710", "https://data.delijn.be/stops/106712"], ["https://data.delijn.be/stops/201643", "https://data.delijn.be/stops/201644"], ["https://data.delijn.be/stops/405400", "https://data.delijn.be/stops/405402"], ["https://data.delijn.be/stops/400071", "https://data.delijn.be/stops/410322"], ["https://data.delijn.be/stops/504021", "https://data.delijn.be/stops/504985"], ["https://data.delijn.be/stops/204301", "https://data.delijn.be/stops/205046"], ["https://data.delijn.be/stops/201713", "https://data.delijn.be/stops/202445"], ["https://data.delijn.be/stops/305382", "https://data.delijn.be/stops/333454"], ["https://data.delijn.be/stops/501665", "https://data.delijn.be/stops/506636"], ["https://data.delijn.be/stops/202452", "https://data.delijn.be/stops/210095"], ["https://data.delijn.be/stops/400686", "https://data.delijn.be/stops/404610"], ["https://data.delijn.be/stops/402240", "https://data.delijn.be/stops/404538"], ["https://data.delijn.be/stops/402538", "https://data.delijn.be/stops/402631"], ["https://data.delijn.be/stops/201864", "https://data.delijn.be/stops/202084"], ["https://data.delijn.be/stops/107546", "https://data.delijn.be/stops/109591"], ["https://data.delijn.be/stops/504963", "https://data.delijn.be/stops/509963"], ["https://data.delijn.be/stops/104638", "https://data.delijn.be/stops/109660"], ["https://data.delijn.be/stops/408299", "https://data.delijn.be/stops/408402"], ["https://data.delijn.be/stops/502172", "https://data.delijn.be/stops/507341"], ["https://data.delijn.be/stops/108826", "https://data.delijn.be/stops/108827"], ["https://data.delijn.be/stops/204634", "https://data.delijn.be/stops/205635"], ["https://data.delijn.be/stops/507074", "https://data.delijn.be/stops/507075"], ["https://data.delijn.be/stops/203960", "https://data.delijn.be/stops/203961"], ["https://data.delijn.be/stops/204425", "https://data.delijn.be/stops/205745"], ["https://data.delijn.be/stops/301976", "https://data.delijn.be/stops/301978"], ["https://data.delijn.be/stops/302016", "https://data.delijn.be/stops/303077"], ["https://data.delijn.be/stops/502289", "https://data.delijn.be/stops/507295"], ["https://data.delijn.be/stops/500947", "https://data.delijn.be/stops/509173"], ["https://data.delijn.be/stops/401480", "https://data.delijn.be/stops/401785"], ["https://data.delijn.be/stops/102843", "https://data.delijn.be/stops/102844"], ["https://data.delijn.be/stops/407423", "https://data.delijn.be/stops/407471"], ["https://data.delijn.be/stops/207379", "https://data.delijn.be/stops/207380"], ["https://data.delijn.be/stops/106951", "https://data.delijn.be/stops/106952"], ["https://data.delijn.be/stops/301452", "https://data.delijn.be/stops/302510"], ["https://data.delijn.be/stops/208119", "https://data.delijn.be/stops/209119"], ["https://data.delijn.be/stops/303360", "https://data.delijn.be/stops/307810"], ["https://data.delijn.be/stops/403995", "https://data.delijn.be/stops/410026"], ["https://data.delijn.be/stops/200096", "https://data.delijn.be/stops/203131"], ["https://data.delijn.be/stops/301769", "https://data.delijn.be/stops/301775"], ["https://data.delijn.be/stops/208298", "https://data.delijn.be/stops/209298"], ["https://data.delijn.be/stops/304431", "https://data.delijn.be/stops/306064"], ["https://data.delijn.be/stops/303589", "https://data.delijn.be/stops/306392"], ["https://data.delijn.be/stops/503373", "https://data.delijn.be/stops/508363"], ["https://data.delijn.be/stops/300763", "https://data.delijn.be/stops/300787"], ["https://data.delijn.be/stops/301600", "https://data.delijn.be/stops/304475"], ["https://data.delijn.be/stops/103294", "https://data.delijn.be/stops/105172"], ["https://data.delijn.be/stops/402428", "https://data.delijn.be/stops/402458"], ["https://data.delijn.be/stops/400811", "https://data.delijn.be/stops/403586"], ["https://data.delijn.be/stops/401854", "https://data.delijn.be/stops/401856"], ["https://data.delijn.be/stops/400576", "https://data.delijn.be/stops/400634"], ["https://data.delijn.be/stops/406407", "https://data.delijn.be/stops/409884"], ["https://data.delijn.be/stops/208601", "https://data.delijn.be/stops/307602"], ["https://data.delijn.be/stops/206593", "https://data.delijn.be/stops/206948"], ["https://data.delijn.be/stops/304333", "https://data.delijn.be/stops/304706"], ["https://data.delijn.be/stops/302392", "https://data.delijn.be/stops/302671"], ["https://data.delijn.be/stops/402132", "https://data.delijn.be/stops/410101"], ["https://data.delijn.be/stops/200923", "https://data.delijn.be/stops/201867"], ["https://data.delijn.be/stops/404102", "https://data.delijn.be/stops/409296"], ["https://data.delijn.be/stops/210052", "https://data.delijn.be/stops/210124"], ["https://data.delijn.be/stops/407830", "https://data.delijn.be/stops/407846"], ["https://data.delijn.be/stops/503116", "https://data.delijn.be/stops/508059"], ["https://data.delijn.be/stops/205103", "https://data.delijn.be/stops/205669"], ["https://data.delijn.be/stops/501422", "https://data.delijn.be/stops/506420"], ["https://data.delijn.be/stops/200973", "https://data.delijn.be/stops/206853"], ["https://data.delijn.be/stops/305644", "https://data.delijn.be/stops/308130"], ["https://data.delijn.be/stops/203990", "https://data.delijn.be/stops/210852"], ["https://data.delijn.be/stops/503575", "https://data.delijn.be/stops/504540"], ["https://data.delijn.be/stops/501488", "https://data.delijn.be/stops/501489"], ["https://data.delijn.be/stops/303783", "https://data.delijn.be/stops/303800"], ["https://data.delijn.be/stops/401025", "https://data.delijn.be/stops/401141"], ["https://data.delijn.be/stops/201779", "https://data.delijn.be/stops/209249"], ["https://data.delijn.be/stops/400791", "https://data.delijn.be/stops/409536"], ["https://data.delijn.be/stops/105160", "https://data.delijn.be/stops/105165"], ["https://data.delijn.be/stops/207165", "https://data.delijn.be/stops/308901"], ["https://data.delijn.be/stops/305042", "https://data.delijn.be/stops/307951"], ["https://data.delijn.be/stops/201113", "https://data.delijn.be/stops/201567"], ["https://data.delijn.be/stops/501006", "https://data.delijn.be/stops/501076"], ["https://data.delijn.be/stops/400754", "https://data.delijn.be/stops/400851"], ["https://data.delijn.be/stops/406738", "https://data.delijn.be/stops/407369"], ["https://data.delijn.be/stops/206929", "https://data.delijn.be/stops/207928"], ["https://data.delijn.be/stops/207754", "https://data.delijn.be/stops/207765"], ["https://data.delijn.be/stops/300570", "https://data.delijn.be/stops/301598"], ["https://data.delijn.be/stops/202236", "https://data.delijn.be/stops/203236"], ["https://data.delijn.be/stops/407618", "https://data.delijn.be/stops/408549"], ["https://data.delijn.be/stops/404885", "https://data.delijn.be/stops/404944"], ["https://data.delijn.be/stops/507043", "https://data.delijn.be/stops/507057"], ["https://data.delijn.be/stops/303535", "https://data.delijn.be/stops/308791"], ["https://data.delijn.be/stops/507813", "https://data.delijn.be/stops/508008"], ["https://data.delijn.be/stops/406056", "https://data.delijn.be/stops/406142"], ["https://data.delijn.be/stops/107412", "https://data.delijn.be/stops/107424"], ["https://data.delijn.be/stops/400860", "https://data.delijn.be/stops/406585"], ["https://data.delijn.be/stops/301436", "https://data.delijn.be/stops/301442"], ["https://data.delijn.be/stops/504069", "https://data.delijn.be/stops/504520"], ["https://data.delijn.be/stops/101134", "https://data.delijn.be/stops/102940"], ["https://data.delijn.be/stops/405926", "https://data.delijn.be/stops/405986"], ["https://data.delijn.be/stops/305253", "https://data.delijn.be/stops/305306"], ["https://data.delijn.be/stops/200205", "https://data.delijn.be/stops/201244"], ["https://data.delijn.be/stops/404309", "https://data.delijn.be/stops/404325"], ["https://data.delijn.be/stops/501235", "https://data.delijn.be/stops/501257"], ["https://data.delijn.be/stops/201095", "https://data.delijn.be/stops/204357"], ["https://data.delijn.be/stops/202289", "https://data.delijn.be/stops/202335"], ["https://data.delijn.be/stops/106809", "https://data.delijn.be/stops/106810"], ["https://data.delijn.be/stops/200742", "https://data.delijn.be/stops/203384"], ["https://data.delijn.be/stops/401771", "https://data.delijn.be/stops/401845"], ["https://data.delijn.be/stops/203700", "https://data.delijn.be/stops/211066"], ["https://data.delijn.be/stops/108272", "https://data.delijn.be/stops/108278"], ["https://data.delijn.be/stops/302699", "https://data.delijn.be/stops/302702"], ["https://data.delijn.be/stops/307033", "https://data.delijn.be/stops/307908"], ["https://data.delijn.be/stops/304240", "https://data.delijn.be/stops/304486"], ["https://data.delijn.be/stops/409556", "https://data.delijn.be/stops/409562"], ["https://data.delijn.be/stops/409006", "https://data.delijn.be/stops/409009"], ["https://data.delijn.be/stops/206923", "https://data.delijn.be/stops/207924"], ["https://data.delijn.be/stops/400821", "https://data.delijn.be/stops/400822"], ["https://data.delijn.be/stops/304334", "https://data.delijn.be/stops/305988"], ["https://data.delijn.be/stops/508854", "https://data.delijn.be/stops/508857"], ["https://data.delijn.be/stops/409339", "https://data.delijn.be/stops/409340"], ["https://data.delijn.be/stops/300979", "https://data.delijn.be/stops/300986"], ["https://data.delijn.be/stops/303490", "https://data.delijn.be/stops/308934"], ["https://data.delijn.be/stops/109941", "https://data.delijn.be/stops/109958"], ["https://data.delijn.be/stops/501175", "https://data.delijn.be/stops/506677"], ["https://data.delijn.be/stops/108710", "https://data.delijn.be/stops/108712"], ["https://data.delijn.be/stops/108188", "https://data.delijn.be/stops/108189"], ["https://data.delijn.be/stops/403174", "https://data.delijn.be/stops/403403"], ["https://data.delijn.be/stops/300355", "https://data.delijn.be/stops/304699"], ["https://data.delijn.be/stops/405034", "https://data.delijn.be/stops/405047"], ["https://data.delijn.be/stops/406055", "https://data.delijn.be/stops/406142"], ["https://data.delijn.be/stops/304580", "https://data.delijn.be/stops/308818"], ["https://data.delijn.be/stops/401590", "https://data.delijn.be/stops/408635"], ["https://data.delijn.be/stops/409422", "https://data.delijn.be/stops/409672"], ["https://data.delijn.be/stops/200955", "https://data.delijn.be/stops/203509"], ["https://data.delijn.be/stops/208792", "https://data.delijn.be/stops/209785"], ["https://data.delijn.be/stops/301612", "https://data.delijn.be/stops/301613"], ["https://data.delijn.be/stops/303935", "https://data.delijn.be/stops/303936"], ["https://data.delijn.be/stops/306786", "https://data.delijn.be/stops/307343"], ["https://data.delijn.be/stops/102389", "https://data.delijn.be/stops/107073"], ["https://data.delijn.be/stops/102989", "https://data.delijn.be/stops/106425"], ["https://data.delijn.be/stops/101992", "https://data.delijn.be/stops/102640"], ["https://data.delijn.be/stops/103303", "https://data.delijn.be/stops/406880"], ["https://data.delijn.be/stops/304463", "https://data.delijn.be/stops/307696"], ["https://data.delijn.be/stops/101790", "https://data.delijn.be/stops/103030"], ["https://data.delijn.be/stops/408741", "https://data.delijn.be/stops/408742"], ["https://data.delijn.be/stops/304347", "https://data.delijn.be/stops/304348"], ["https://data.delijn.be/stops/105197", "https://data.delijn.be/stops/105198"], ["https://data.delijn.be/stops/502382", "https://data.delijn.be/stops/507382"], ["https://data.delijn.be/stops/201595", "https://data.delijn.be/stops/210132"], ["https://data.delijn.be/stops/308795", "https://data.delijn.be/stops/308849"], ["https://data.delijn.be/stops/103143", "https://data.delijn.be/stops/103727"], ["https://data.delijn.be/stops/206347", "https://data.delijn.be/stops/207373"], ["https://data.delijn.be/stops/505716", "https://data.delijn.be/stops/505985"], ["https://data.delijn.be/stops/302703", "https://data.delijn.be/stops/302718"], ["https://data.delijn.be/stops/200066", "https://data.delijn.be/stops/201369"], ["https://data.delijn.be/stops/408580", "https://data.delijn.be/stops/408586"], ["https://data.delijn.be/stops/108652", "https://data.delijn.be/stops/108653"], ["https://data.delijn.be/stops/502749", "https://data.delijn.be/stops/507163"], ["https://data.delijn.be/stops/403346", "https://data.delijn.be/stops/403348"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/505785"], ["https://data.delijn.be/stops/209650", "https://data.delijn.be/stops/209651"], ["https://data.delijn.be/stops/503905", "https://data.delijn.be/stops/505443"], ["https://data.delijn.be/stops/108814", "https://data.delijn.be/stops/108818"], ["https://data.delijn.be/stops/405038", "https://data.delijn.be/stops/405039"], ["https://data.delijn.be/stops/501399", "https://data.delijn.be/stops/506401"], ["https://data.delijn.be/stops/407023", "https://data.delijn.be/stops/407035"], ["https://data.delijn.be/stops/303463", "https://data.delijn.be/stops/303464"], ["https://data.delijn.be/stops/302006", "https://data.delijn.be/stops/302007"], ["https://data.delijn.be/stops/108812", "https://data.delijn.be/stops/108816"], ["https://data.delijn.be/stops/400887", "https://data.delijn.be/stops/400976"], ["https://data.delijn.be/stops/405774", "https://data.delijn.be/stops/409759"], ["https://data.delijn.be/stops/502351", "https://data.delijn.be/stops/502363"], ["https://data.delijn.be/stops/200935", "https://data.delijn.be/stops/203712"], ["https://data.delijn.be/stops/408859", "https://data.delijn.be/stops/408863"], ["https://data.delijn.be/stops/504289", "https://data.delijn.be/stops/509278"], ["https://data.delijn.be/stops/405042", "https://data.delijn.be/stops/405118"], ["https://data.delijn.be/stops/504565", "https://data.delijn.be/stops/509565"], ["https://data.delijn.be/stops/300894", "https://data.delijn.be/stops/304580"], ["https://data.delijn.be/stops/101536", "https://data.delijn.be/stops/109018"], ["https://data.delijn.be/stops/508723", "https://data.delijn.be/stops/509938"], ["https://data.delijn.be/stops/103062", "https://data.delijn.be/stops/108974"], ["https://data.delijn.be/stops/400672", "https://data.delijn.be/stops/400673"], ["https://data.delijn.be/stops/503330", "https://data.delijn.be/stops/503332"], ["https://data.delijn.be/stops/210015", "https://data.delijn.be/stops/211015"], ["https://data.delijn.be/stops/502674", "https://data.delijn.be/stops/507674"], ["https://data.delijn.be/stops/200844", "https://data.delijn.be/stops/200846"], ["https://data.delijn.be/stops/208532", "https://data.delijn.be/stops/209456"], ["https://data.delijn.be/stops/408224", "https://data.delijn.be/stops/408366"], ["https://data.delijn.be/stops/200524", "https://data.delijn.be/stops/200595"], ["https://data.delijn.be/stops/106990", "https://data.delijn.be/stops/107313"], ["https://data.delijn.be/stops/202633", "https://data.delijn.be/stops/203630"], ["https://data.delijn.be/stops/202280", "https://data.delijn.be/stops/211104"], ["https://data.delijn.be/stops/201706", "https://data.delijn.be/stops/202444"], ["https://data.delijn.be/stops/107335", "https://data.delijn.be/stops/108410"], ["https://data.delijn.be/stops/300836", "https://data.delijn.be/stops/300880"], ["https://data.delijn.be/stops/102982", "https://data.delijn.be/stops/107413"], ["https://data.delijn.be/stops/409321", "https://data.delijn.be/stops/410067"], ["https://data.delijn.be/stops/300769", "https://data.delijn.be/stops/300770"], ["https://data.delijn.be/stops/202112", "https://data.delijn.be/stops/203112"], ["https://data.delijn.be/stops/107286", "https://data.delijn.be/stops/107288"], ["https://data.delijn.be/stops/307147", "https://data.delijn.be/stops/307160"], ["https://data.delijn.be/stops/409276", "https://data.delijn.be/stops/409330"], ["https://data.delijn.be/stops/502217", "https://data.delijn.be/stops/507219"], ["https://data.delijn.be/stops/502367", "https://data.delijn.be/stops/507768"], ["https://data.delijn.be/stops/408005", "https://data.delijn.be/stops/408139"], ["https://data.delijn.be/stops/304536", "https://data.delijn.be/stops/304537"], ["https://data.delijn.be/stops/303347", "https://data.delijn.be/stops/304713"], ["https://data.delijn.be/stops/406242", "https://data.delijn.be/stops/406249"], ["https://data.delijn.be/stops/504626", "https://data.delijn.be/stops/509617"], ["https://data.delijn.be/stops/406976", "https://data.delijn.be/stops/409464"], ["https://data.delijn.be/stops/502617", "https://data.delijn.be/stops/507616"], ["https://data.delijn.be/stops/403944", "https://data.delijn.be/stops/404089"], ["https://data.delijn.be/stops/305559", "https://data.delijn.be/stops/305560"], ["https://data.delijn.be/stops/206742", "https://data.delijn.be/stops/207979"], ["https://data.delijn.be/stops/308150", "https://data.delijn.be/stops/308174"], ["https://data.delijn.be/stops/209119", "https://data.delijn.be/stops/209120"], ["https://data.delijn.be/stops/302492", "https://data.delijn.be/stops/302493"], ["https://data.delijn.be/stops/306919", "https://data.delijn.be/stops/306920"], ["https://data.delijn.be/stops/404848", "https://data.delijn.be/stops/404928"], ["https://data.delijn.be/stops/505393", "https://data.delijn.be/stops/508276"], ["https://data.delijn.be/stops/301736", "https://data.delijn.be/stops/308420"], ["https://data.delijn.be/stops/203624", "https://data.delijn.be/stops/203626"], ["https://data.delijn.be/stops/406214", "https://data.delijn.be/stops/406233"], ["https://data.delijn.be/stops/507455", "https://data.delijn.be/stops/507662"], ["https://data.delijn.be/stops/509776", "https://data.delijn.be/stops/509783"], ["https://data.delijn.be/stops/305065", "https://data.delijn.be/stops/305126"], ["https://data.delijn.be/stops/204161", "https://data.delijn.be/stops/205592"], ["https://data.delijn.be/stops/300595", "https://data.delijn.be/stops/302960"], ["https://data.delijn.be/stops/505922", "https://data.delijn.be/stops/507195"], ["https://data.delijn.be/stops/505142", "https://data.delijn.be/stops/507240"], ["https://data.delijn.be/stops/302174", "https://data.delijn.be/stops/307186"], ["https://data.delijn.be/stops/200346", "https://data.delijn.be/stops/211528"], ["https://data.delijn.be/stops/300868", "https://data.delijn.be/stops/302240"], ["https://data.delijn.be/stops/402458", "https://data.delijn.be/stops/410094"], ["https://data.delijn.be/stops/307580", "https://data.delijn.be/stops/307581"], ["https://data.delijn.be/stops/106599", "https://data.delijn.be/stops/106600"], ["https://data.delijn.be/stops/407962", "https://data.delijn.be/stops/407965"], ["https://data.delijn.be/stops/504294", "https://data.delijn.be/stops/509861"], ["https://data.delijn.be/stops/301657", "https://data.delijn.be/stops/301893"], ["https://data.delijn.be/stops/101430", "https://data.delijn.be/stops/104123"], ["https://data.delijn.be/stops/304004", "https://data.delijn.be/stops/304076"], ["https://data.delijn.be/stops/102687", "https://data.delijn.be/stops/104640"], ["https://data.delijn.be/stops/103946", "https://data.delijn.be/stops/104630"], ["https://data.delijn.be/stops/404467", "https://data.delijn.be/stops/404507"], ["https://data.delijn.be/stops/503713", "https://data.delijn.be/stops/509963"], ["https://data.delijn.be/stops/401904", "https://data.delijn.be/stops/406256"], ["https://data.delijn.be/stops/502130", "https://data.delijn.be/stops/507149"], ["https://data.delijn.be/stops/200714", "https://data.delijn.be/stops/202123"], ["https://data.delijn.be/stops/506067", "https://data.delijn.be/stops/506073"], ["https://data.delijn.be/stops/103064", "https://data.delijn.be/stops/204609"], ["https://data.delijn.be/stops/204089", "https://data.delijn.be/stops/205089"], ["https://data.delijn.be/stops/204078", "https://data.delijn.be/stops/204197"], ["https://data.delijn.be/stops/200086", "https://data.delijn.be/stops/203749"], ["https://data.delijn.be/stops/101428", "https://data.delijn.be/stops/107299"], ["https://data.delijn.be/stops/106728", "https://data.delijn.be/stops/107709"], ["https://data.delijn.be/stops/502427", "https://data.delijn.be/stops/507427"], ["https://data.delijn.be/stops/403735", "https://data.delijn.be/stops/403737"], ["https://data.delijn.be/stops/105159", "https://data.delijn.be/stops/105161"], ["https://data.delijn.be/stops/501512", "https://data.delijn.be/stops/501698"], ["https://data.delijn.be/stops/503867", "https://data.delijn.be/stops/508873"], ["https://data.delijn.be/stops/305778", "https://data.delijn.be/stops/306879"], ["https://data.delijn.be/stops/102472", "https://data.delijn.be/stops/102473"], ["https://data.delijn.be/stops/109066", "https://data.delijn.be/stops/307361"], ["https://data.delijn.be/stops/502094", "https://data.delijn.be/stops/502106"], ["https://data.delijn.be/stops/102679", "https://data.delijn.be/stops/105223"], ["https://data.delijn.be/stops/402954", "https://data.delijn.be/stops/404898"], ["https://data.delijn.be/stops/202629", "https://data.delijn.be/stops/205068"], ["https://data.delijn.be/stops/303243", "https://data.delijn.be/stops/306671"], ["https://data.delijn.be/stops/108981", "https://data.delijn.be/stops/109567"], ["https://data.delijn.be/stops/406106", "https://data.delijn.be/stops/406114"], ["https://data.delijn.be/stops/400717", "https://data.delijn.be/stops/400873"], ["https://data.delijn.be/stops/503535", "https://data.delijn.be/stops/508966"], ["https://data.delijn.be/stops/501298", "https://data.delijn.be/stops/501360"], ["https://data.delijn.be/stops/400933", "https://data.delijn.be/stops/400942"], ["https://data.delijn.be/stops/204445", "https://data.delijn.be/stops/205672"], ["https://data.delijn.be/stops/208109", "https://data.delijn.be/stops/208112"], ["https://data.delijn.be/stops/307409", "https://data.delijn.be/stops/308053"], ["https://data.delijn.be/stops/300360", "https://data.delijn.be/stops/304714"], ["https://data.delijn.be/stops/200680", "https://data.delijn.be/stops/203320"], ["https://data.delijn.be/stops/205161", "https://data.delijn.be/stops/207397"], ["https://data.delijn.be/stops/201821", "https://data.delijn.be/stops/208284"], ["https://data.delijn.be/stops/307202", "https://data.delijn.be/stops/307599"], ["https://data.delijn.be/stops/404357", "https://data.delijn.be/stops/404864"], ["https://data.delijn.be/stops/300536", "https://data.delijn.be/stops/302367"], ["https://data.delijn.be/stops/503866", "https://data.delijn.be/stops/508563"], ["https://data.delijn.be/stops/510015", "https://data.delijn.be/stops/510020"], ["https://data.delijn.be/stops/407574", "https://data.delijn.be/stops/408981"], ["https://data.delijn.be/stops/301005", "https://data.delijn.be/stops/301012"], ["https://data.delijn.be/stops/402827", "https://data.delijn.be/stops/407487"], ["https://data.delijn.be/stops/302679", "https://data.delijn.be/stops/302689"], ["https://data.delijn.be/stops/107085", "https://data.delijn.be/stops/108740"], ["https://data.delijn.be/stops/208000", "https://data.delijn.be/stops/209015"], ["https://data.delijn.be/stops/308265", "https://data.delijn.be/stops/308267"], ["https://data.delijn.be/stops/101473", "https://data.delijn.be/stops/109616"], ["https://data.delijn.be/stops/301588", "https://data.delijn.be/stops/301589"], ["https://data.delijn.be/stops/403922", "https://data.delijn.be/stops/403923"], ["https://data.delijn.be/stops/102623", "https://data.delijn.be/stops/108219"], ["https://data.delijn.be/stops/107599", "https://data.delijn.be/stops/107602"], ["https://data.delijn.be/stops/109239", "https://data.delijn.be/stops/109241"], ["https://data.delijn.be/stops/304055", "https://data.delijn.be/stops/304078"], ["https://data.delijn.be/stops/304371", "https://data.delijn.be/stops/304373"], ["https://data.delijn.be/stops/204615", "https://data.delijn.be/stops/204656"], ["https://data.delijn.be/stops/208038", "https://data.delijn.be/stops/209037"], ["https://data.delijn.be/stops/300077", "https://data.delijn.be/stops/308451"], ["https://data.delijn.be/stops/101854", "https://data.delijn.be/stops/102997"], ["https://data.delijn.be/stops/210060", "https://data.delijn.be/stops/210061"], ["https://data.delijn.be/stops/107157", "https://data.delijn.be/stops/107159"], ["https://data.delijn.be/stops/301356", "https://data.delijn.be/stops/307158"], ["https://data.delijn.be/stops/204663", "https://data.delijn.be/stops/205663"], ["https://data.delijn.be/stops/504073", "https://data.delijn.be/stops/504332"], ["https://data.delijn.be/stops/301422", "https://data.delijn.be/stops/302141"], ["https://data.delijn.be/stops/502122", "https://data.delijn.be/stops/507109"], ["https://data.delijn.be/stops/202350", "https://data.delijn.be/stops/205914"], ["https://data.delijn.be/stops/202327", "https://data.delijn.be/stops/203326"], ["https://data.delijn.be/stops/503738", "https://data.delijn.be/stops/509969"], ["https://data.delijn.be/stops/305588", "https://data.delijn.be/stops/305593"], ["https://data.delijn.be/stops/102209", "https://data.delijn.be/stops/102604"], ["https://data.delijn.be/stops/104898", "https://data.delijn.be/stops/107614"], ["https://data.delijn.be/stops/206312", "https://data.delijn.be/stops/207311"], ["https://data.delijn.be/stops/201680", "https://data.delijn.be/stops/210121"], ["https://data.delijn.be/stops/407812", "https://data.delijn.be/stops/408148"], ["https://data.delijn.be/stops/308595", "https://data.delijn.be/stops/308860"], ["https://data.delijn.be/stops/503104", "https://data.delijn.be/stops/505385"], ["https://data.delijn.be/stops/106844", "https://data.delijn.be/stops/106846"], ["https://data.delijn.be/stops/300506", "https://data.delijn.be/stops/302419"], ["https://data.delijn.be/stops/405567", "https://data.delijn.be/stops/410098"], ["https://data.delijn.be/stops/101176", "https://data.delijn.be/stops/106789"], ["https://data.delijn.be/stops/102228", "https://data.delijn.be/stops/105523"], ["https://data.delijn.be/stops/405144", "https://data.delijn.be/stops/405166"], ["https://data.delijn.be/stops/509028", "https://data.delijn.be/stops/509036"], ["https://data.delijn.be/stops/407825", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/202311", "https://data.delijn.be/stops/203312"], ["https://data.delijn.be/stops/500053", "https://data.delijn.be/stops/502079"], ["https://data.delijn.be/stops/202746", "https://data.delijn.be/stops/206594"], ["https://data.delijn.be/stops/504130", "https://data.delijn.be/stops/504740"], ["https://data.delijn.be/stops/505980", "https://data.delijn.be/stops/508898"], ["https://data.delijn.be/stops/201831", "https://data.delijn.be/stops/208254"], ["https://data.delijn.be/stops/405876", "https://data.delijn.be/stops/409413"], ["https://data.delijn.be/stops/301546", "https://data.delijn.be/stops/301547"], ["https://data.delijn.be/stops/101183", "https://data.delijn.be/stops/107872"], ["https://data.delijn.be/stops/302630", "https://data.delijn.be/stops/302644"], ["https://data.delijn.be/stops/104017", "https://data.delijn.be/stops/104023"], ["https://data.delijn.be/stops/403044", "https://data.delijn.be/stops/403289"], ["https://data.delijn.be/stops/204137", "https://data.delijn.be/stops/204147"], ["https://data.delijn.be/stops/204654", "https://data.delijn.be/stops/204830"], ["https://data.delijn.be/stops/105376", "https://data.delijn.be/stops/305785"], ["https://data.delijn.be/stops/403357", "https://data.delijn.be/stops/403673"], ["https://data.delijn.be/stops/204580", "https://data.delijn.be/stops/204595"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/306275"], ["https://data.delijn.be/stops/502193", "https://data.delijn.be/stops/504945"], ["https://data.delijn.be/stops/108123", "https://data.delijn.be/stops/109659"], ["https://data.delijn.be/stops/101394", "https://data.delijn.be/stops/101396"], ["https://data.delijn.be/stops/300987", "https://data.delijn.be/stops/300991"], ["https://data.delijn.be/stops/404519", "https://data.delijn.be/stops/404542"], ["https://data.delijn.be/stops/300008", "https://data.delijn.be/stops/304609"], ["https://data.delijn.be/stops/307202", "https://data.delijn.be/stops/307206"], ["https://data.delijn.be/stops/304260", "https://data.delijn.be/stops/304262"], ["https://data.delijn.be/stops/505638", "https://data.delijn.be/stops/508182"], ["https://data.delijn.be/stops/202138", "https://data.delijn.be/stops/203138"], ["https://data.delijn.be/stops/404146", "https://data.delijn.be/stops/404198"], ["https://data.delijn.be/stops/402554", "https://data.delijn.be/stops/402602"], ["https://data.delijn.be/stops/303110", "https://data.delijn.be/stops/303678"], ["https://data.delijn.be/stops/300719", "https://data.delijn.be/stops/300732"], ["https://data.delijn.be/stops/302268", "https://data.delijn.be/stops/306972"], ["https://data.delijn.be/stops/204472", "https://data.delijn.be/stops/204776"], ["https://data.delijn.be/stops/103354", "https://data.delijn.be/stops/103762"], ["https://data.delijn.be/stops/408295", "https://data.delijn.be/stops/308180"], ["https://data.delijn.be/stops/402784", "https://data.delijn.be/stops/404042"], ["https://data.delijn.be/stops/405146", "https://data.delijn.be/stops/405234"], ["https://data.delijn.be/stops/101497", "https://data.delijn.be/stops/109374"], ["https://data.delijn.be/stops/105033", "https://data.delijn.be/stops/109672"], ["https://data.delijn.be/stops/105013", "https://data.delijn.be/stops/105080"], ["https://data.delijn.be/stops/402808", "https://data.delijn.be/stops/402809"], ["https://data.delijn.be/stops/301849", "https://data.delijn.be/stops/301850"], ["https://data.delijn.be/stops/201546", "https://data.delijn.be/stops/203900"], ["https://data.delijn.be/stops/406322", "https://data.delijn.be/stops/406330"], ["https://data.delijn.be/stops/507207", "https://data.delijn.be/stops/507213"], ["https://data.delijn.be/stops/103545", "https://data.delijn.be/stops/104465"], ["https://data.delijn.be/stops/109003", "https://data.delijn.be/stops/402019"], ["https://data.delijn.be/stops/504452", "https://data.delijn.be/stops/509455"], ["https://data.delijn.be/stops/206390", "https://data.delijn.be/stops/207390"], ["https://data.delijn.be/stops/403778", "https://data.delijn.be/stops/403875"], ["https://data.delijn.be/stops/300363", "https://data.delijn.be/stops/300371"], ["https://data.delijn.be/stops/104946", "https://data.delijn.be/stops/108860"], ["https://data.delijn.be/stops/406467", "https://data.delijn.be/stops/407513"], ["https://data.delijn.be/stops/404130", "https://data.delijn.be/stops/404131"], ["https://data.delijn.be/stops/209779", "https://data.delijn.be/stops/209780"], ["https://data.delijn.be/stops/303262", "https://data.delijn.be/stops/303890"], ["https://data.delijn.be/stops/206020", "https://data.delijn.be/stops/207020"], ["https://data.delijn.be/stops/407819", "https://data.delijn.be/stops/407823"], ["https://data.delijn.be/stops/307568", "https://data.delijn.be/stops/307586"], ["https://data.delijn.be/stops/207250", "https://data.delijn.be/stops/209951"], ["https://data.delijn.be/stops/408897", "https://data.delijn.be/stops/408901"], ["https://data.delijn.be/stops/403158", "https://data.delijn.be/stops/410321"], ["https://data.delijn.be/stops/504022", "https://data.delijn.be/stops/505429"], ["https://data.delijn.be/stops/208236", "https://data.delijn.be/stops/209236"], ["https://data.delijn.be/stops/402408", "https://data.delijn.be/stops/402417"], ["https://data.delijn.be/stops/503529", "https://data.delijn.be/stops/504767"], ["https://data.delijn.be/stops/208616", "https://data.delijn.be/stops/208617"], ["https://data.delijn.be/stops/401411", "https://data.delijn.be/stops/300980"], ["https://data.delijn.be/stops/304169", "https://data.delijn.be/stops/307552"], ["https://data.delijn.be/stops/407628", "https://data.delijn.be/stops/407629"], ["https://data.delijn.be/stops/305173", "https://data.delijn.be/stops/308048"], ["https://data.delijn.be/stops/202029", "https://data.delijn.be/stops/205995"], ["https://data.delijn.be/stops/106655", "https://data.delijn.be/stops/106656"], ["https://data.delijn.be/stops/204754", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/302537", "https://data.delijn.be/stops/302538"], ["https://data.delijn.be/stops/305098", "https://data.delijn.be/stops/305111"], ["https://data.delijn.be/stops/304275", "https://data.delijn.be/stops/304276"], ["https://data.delijn.be/stops/201581", "https://data.delijn.be/stops/210607"], ["https://data.delijn.be/stops/101345", "https://data.delijn.be/stops/103216"], ["https://data.delijn.be/stops/504525", "https://data.delijn.be/stops/509604"], ["https://data.delijn.be/stops/400485", "https://data.delijn.be/stops/400492"], ["https://data.delijn.be/stops/206471", "https://data.delijn.be/stops/207138"], ["https://data.delijn.be/stops/102751", "https://data.delijn.be/stops/103354"], ["https://data.delijn.be/stops/200871", "https://data.delijn.be/stops/201119"], ["https://data.delijn.be/stops/407354", "https://data.delijn.be/stops/407357"], ["https://data.delijn.be/stops/206917", "https://data.delijn.be/stops/207263"], ["https://data.delijn.be/stops/503304", "https://data.delijn.be/stops/508304"], ["https://data.delijn.be/stops/305774", "https://data.delijn.be/stops/305776"], ["https://data.delijn.be/stops/301612", "https://data.delijn.be/stops/303623"], ["https://data.delijn.be/stops/308498", "https://data.delijn.be/stops/308499"], ["https://data.delijn.be/stops/206960", "https://data.delijn.be/stops/306072"], ["https://data.delijn.be/stops/507689", "https://data.delijn.be/stops/509317"], ["https://data.delijn.be/stops/303552", "https://data.delijn.be/stops/307990"], ["https://data.delijn.be/stops/204017", "https://data.delijn.be/stops/205053"], ["https://data.delijn.be/stops/103683", "https://data.delijn.be/stops/106317"], ["https://data.delijn.be/stops/501680", "https://data.delijn.be/stops/509262"], ["https://data.delijn.be/stops/503706", "https://data.delijn.be/stops/503714"], ["https://data.delijn.be/stops/400286", "https://data.delijn.be/stops/400402"], ["https://data.delijn.be/stops/208151", "https://data.delijn.be/stops/209151"], ["https://data.delijn.be/stops/506191", "https://data.delijn.be/stops/506384"], ["https://data.delijn.be/stops/407592", "https://data.delijn.be/stops/408550"], ["https://data.delijn.be/stops/401258", "https://data.delijn.be/stops/406681"], ["https://data.delijn.be/stops/502487", "https://data.delijn.be/stops/507487"], ["https://data.delijn.be/stops/503117", "https://data.delijn.be/stops/505105"], ["https://data.delijn.be/stops/303225", "https://data.delijn.be/stops/304661"], ["https://data.delijn.be/stops/203241", "https://data.delijn.be/stops/203956"], ["https://data.delijn.be/stops/302158", "https://data.delijn.be/stops/308101"], ["https://data.delijn.be/stops/202167", "https://data.delijn.be/stops/205073"], ["https://data.delijn.be/stops/301168", "https://data.delijn.be/stops/303224"], ["https://data.delijn.be/stops/108041", "https://data.delijn.be/stops/108042"], ["https://data.delijn.be/stops/504995", "https://data.delijn.be/stops/505120"], ["https://data.delijn.be/stops/403750", "https://data.delijn.be/stops/403751"], ["https://data.delijn.be/stops/301019", "https://data.delijn.be/stops/301021"], ["https://data.delijn.be/stops/307879", "https://data.delijn.be/stops/307880"], ["https://data.delijn.be/stops/400664", "https://data.delijn.be/stops/400665"], ["https://data.delijn.be/stops/204403", "https://data.delijn.be/stops/204404"], ["https://data.delijn.be/stops/503085", "https://data.delijn.be/stops/505196"], ["https://data.delijn.be/stops/101390", "https://data.delijn.be/stops/107006"], ["https://data.delijn.be/stops/209144", "https://data.delijn.be/stops/209403"], ["https://data.delijn.be/stops/107934", "https://data.delijn.be/stops/303880"], ["https://data.delijn.be/stops/400065", "https://data.delijn.be/stops/400111"], ["https://data.delijn.be/stops/501267", "https://data.delijn.be/stops/501565"], ["https://data.delijn.be/stops/207065", "https://data.delijn.be/stops/207066"], ["https://data.delijn.be/stops/508403", "https://data.delijn.be/stops/509771"], ["https://data.delijn.be/stops/302933", "https://data.delijn.be/stops/303106"], ["https://data.delijn.be/stops/107610", "https://data.delijn.be/stops/107690"], ["https://data.delijn.be/stops/508829", "https://data.delijn.be/stops/508833"], ["https://data.delijn.be/stops/206147", "https://data.delijn.be/stops/207148"], ["https://data.delijn.be/stops/404199", "https://data.delijn.be/stops/404206"], ["https://data.delijn.be/stops/505637", "https://data.delijn.be/stops/508179"], ["https://data.delijn.be/stops/502606", "https://data.delijn.be/stops/507607"], ["https://data.delijn.be/stops/405974", "https://data.delijn.be/stops/405975"], ["https://data.delijn.be/stops/401816", "https://data.delijn.be/stops/406076"], ["https://data.delijn.be/stops/305168", "https://data.delijn.be/stops/306913"], ["https://data.delijn.be/stops/204006", "https://data.delijn.be/stops/205006"], ["https://data.delijn.be/stops/201579", "https://data.delijn.be/stops/210607"], ["https://data.delijn.be/stops/202907", "https://data.delijn.be/stops/203907"], ["https://data.delijn.be/stops/503253", "https://data.delijn.be/stops/503259"], ["https://data.delijn.be/stops/202300", "https://data.delijn.be/stops/203299"], ["https://data.delijn.be/stops/302304", "https://data.delijn.be/stops/302329"], ["https://data.delijn.be/stops/106944", "https://data.delijn.be/stops/108701"], ["https://data.delijn.be/stops/303287", "https://data.delijn.be/stops/304638"], ["https://data.delijn.be/stops/403982", "https://data.delijn.be/stops/404005"], ["https://data.delijn.be/stops/105599", "https://data.delijn.be/stops/105601"], ["https://data.delijn.be/stops/205704", "https://data.delijn.be/stops/205705"], ["https://data.delijn.be/stops/305252", "https://data.delijn.be/stops/305254"], ["https://data.delijn.be/stops/306687", "https://data.delijn.be/stops/306688"], ["https://data.delijn.be/stops/104310", "https://data.delijn.be/stops/105120"], ["https://data.delijn.be/stops/403617", "https://data.delijn.be/stops/406729"], ["https://data.delijn.be/stops/101972", "https://data.delijn.be/stops/109295"], ["https://data.delijn.be/stops/501146", "https://data.delijn.be/stops/509831"], ["https://data.delijn.be/stops/504526", "https://data.delijn.be/stops/509059"], ["https://data.delijn.be/stops/102511", "https://data.delijn.be/stops/406479"], ["https://data.delijn.be/stops/109802", "https://data.delijn.be/stops/109803"], ["https://data.delijn.be/stops/211050", "https://data.delijn.be/stops/211127"], ["https://data.delijn.be/stops/404456", "https://data.delijn.be/stops/404564"], ["https://data.delijn.be/stops/408265", "https://data.delijn.be/stops/408271"], ["https://data.delijn.be/stops/503548", "https://data.delijn.be/stops/508541"], ["https://data.delijn.be/stops/205141", "https://data.delijn.be/stops/205142"], ["https://data.delijn.be/stops/307148", "https://data.delijn.be/stops/307215"], ["https://data.delijn.be/stops/206739", "https://data.delijn.be/stops/207981"], ["https://data.delijn.be/stops/109686", "https://data.delijn.be/stops/109689"], ["https://data.delijn.be/stops/305675", "https://data.delijn.be/stops/305690"], ["https://data.delijn.be/stops/204175", "https://data.delijn.be/stops/204213"], ["https://data.delijn.be/stops/204468", "https://data.delijn.be/stops/214011"], ["https://data.delijn.be/stops/500560", "https://data.delijn.be/stops/500562"], ["https://data.delijn.be/stops/109242", "https://data.delijn.be/stops/109244"], ["https://data.delijn.be/stops/102286", "https://data.delijn.be/stops/105521"], ["https://data.delijn.be/stops/508067", "https://data.delijn.be/stops/508834"], ["https://data.delijn.be/stops/300640", "https://data.delijn.be/stops/300642"], ["https://data.delijn.be/stops/108059", "https://data.delijn.be/stops/108804"], ["https://data.delijn.be/stops/101914", "https://data.delijn.be/stops/101916"], ["https://data.delijn.be/stops/106375", "https://data.delijn.be/stops/106384"], ["https://data.delijn.be/stops/300172", "https://data.delijn.be/stops/306719"], ["https://data.delijn.be/stops/300177", "https://data.delijn.be/stops/300178"], ["https://data.delijn.be/stops/105231", "https://data.delijn.be/stops/109957"], ["https://data.delijn.be/stops/301449", "https://data.delijn.be/stops/306677"], ["https://data.delijn.be/stops/408503", "https://data.delijn.be/stops/408504"], ["https://data.delijn.be/stops/103472", "https://data.delijn.be/stops/109166"], ["https://data.delijn.be/stops/200948", "https://data.delijn.be/stops/203227"], ["https://data.delijn.be/stops/200576", "https://data.delijn.be/stops/202757"], ["https://data.delijn.be/stops/303700", "https://data.delijn.be/stops/305970"], ["https://data.delijn.be/stops/501470", "https://data.delijn.be/stops/501476"], ["https://data.delijn.be/stops/406718", "https://data.delijn.be/stops/408345"], ["https://data.delijn.be/stops/404324", "https://data.delijn.be/stops/404649"], ["https://data.delijn.be/stops/102956", "https://data.delijn.be/stops/102957"], ["https://data.delijn.be/stops/103928", "https://data.delijn.be/stops/106899"], ["https://data.delijn.be/stops/103004", "https://data.delijn.be/stops/108328"], ["https://data.delijn.be/stops/405812", "https://data.delijn.be/stops/405891"], ["https://data.delijn.be/stops/307135", "https://data.delijn.be/stops/308716"], ["https://data.delijn.be/stops/206811", "https://data.delijn.be/stops/207811"], ["https://data.delijn.be/stops/103615", "https://data.delijn.be/stops/108905"], ["https://data.delijn.be/stops/103025", "https://data.delijn.be/stops/103030"], ["https://data.delijn.be/stops/104165", "https://data.delijn.be/stops/108835"], ["https://data.delijn.be/stops/402875", "https://data.delijn.be/stops/402876"], ["https://data.delijn.be/stops/504428", "https://data.delijn.be/stops/505948"], ["https://data.delijn.be/stops/404920", "https://data.delijn.be/stops/404922"], ["https://data.delijn.be/stops/400166", "https://data.delijn.be/stops/400167"], ["https://data.delijn.be/stops/404668", "https://data.delijn.be/stops/404669"], ["https://data.delijn.be/stops/305777", "https://data.delijn.be/stops/305798"], ["https://data.delijn.be/stops/503286", "https://data.delijn.be/stops/503290"], ["https://data.delijn.be/stops/300346", "https://data.delijn.be/stops/303246"], ["https://data.delijn.be/stops/300444", "https://data.delijn.be/stops/301276"], ["https://data.delijn.be/stops/200848", "https://data.delijn.be/stops/209654"], ["https://data.delijn.be/stops/101474", "https://data.delijn.be/stops/109239"], ["https://data.delijn.be/stops/203694", "https://data.delijn.be/stops/211023"], ["https://data.delijn.be/stops/102886", "https://data.delijn.be/stops/102893"], ["https://data.delijn.be/stops/501092", "https://data.delijn.be/stops/505762"], ["https://data.delijn.be/stops/502913", "https://data.delijn.be/stops/507154"], ["https://data.delijn.be/stops/204130", "https://data.delijn.be/stops/207638"], ["https://data.delijn.be/stops/108607", "https://data.delijn.be/stops/307436"], ["https://data.delijn.be/stops/405402", "https://data.delijn.be/stops/405405"], ["https://data.delijn.be/stops/108052", "https://data.delijn.be/stops/108054"], ["https://data.delijn.be/stops/504103", "https://data.delijn.be/stops/509107"], ["https://data.delijn.be/stops/200338", "https://data.delijn.be/stops/200347"], ["https://data.delijn.be/stops/300706", "https://data.delijn.be/stops/308069"], ["https://data.delijn.be/stops/304738", "https://data.delijn.be/stops/305530"], ["https://data.delijn.be/stops/407691", "https://data.delijn.be/stops/410193"], ["https://data.delijn.be/stops/304734", "https://data.delijn.be/stops/304744"], ["https://data.delijn.be/stops/504220", "https://data.delijn.be/stops/509220"], ["https://data.delijn.be/stops/107238", "https://data.delijn.be/stops/107885"], ["https://data.delijn.be/stops/108216", "https://data.delijn.be/stops/108218"], ["https://data.delijn.be/stops/402105", "https://data.delijn.be/stops/402229"], ["https://data.delijn.be/stops/405449", "https://data.delijn.be/stops/302837"], ["https://data.delijn.be/stops/502708", "https://data.delijn.be/stops/507524"], ["https://data.delijn.be/stops/303848", "https://data.delijn.be/stops/303872"], ["https://data.delijn.be/stops/204040", "https://data.delijn.be/stops/205041"], ["https://data.delijn.be/stops/300290", "https://data.delijn.be/stops/301313"], ["https://data.delijn.be/stops/406916", "https://data.delijn.be/stops/406976"], ["https://data.delijn.be/stops/303702", "https://data.delijn.be/stops/305970"], ["https://data.delijn.be/stops/409076", "https://data.delijn.be/stops/409077"], ["https://data.delijn.be/stops/501379", "https://data.delijn.be/stops/506196"], ["https://data.delijn.be/stops/405158", "https://data.delijn.be/stops/405159"], ["https://data.delijn.be/stops/306123", "https://data.delijn.be/stops/307144"], ["https://data.delijn.be/stops/501199", "https://data.delijn.be/stops/501531"], ["https://data.delijn.be/stops/305175", "https://data.delijn.be/stops/306967"], ["https://data.delijn.be/stops/300174", "https://data.delijn.be/stops/301221"], ["https://data.delijn.be/stops/409580", "https://data.delijn.be/stops/409581"], ["https://data.delijn.be/stops/207245", "https://data.delijn.be/stops/207246"], ["https://data.delijn.be/stops/106116", "https://data.delijn.be/stops/106118"], ["https://data.delijn.be/stops/507741", "https://data.delijn.be/stops/507746"], ["https://data.delijn.be/stops/209038", "https://data.delijn.be/stops/209539"], ["https://data.delijn.be/stops/300357", "https://data.delijn.be/stops/304863"], ["https://data.delijn.be/stops/408292", "https://data.delijn.be/stops/408354"], ["https://data.delijn.be/stops/503872", "https://data.delijn.be/stops/508870"], ["https://data.delijn.be/stops/101577", "https://data.delijn.be/stops/105461"], ["https://data.delijn.be/stops/500943", "https://data.delijn.be/stops/508893"], ["https://data.delijn.be/stops/405187", "https://data.delijn.be/stops/405214"], ["https://data.delijn.be/stops/409122", "https://data.delijn.be/stops/409137"], ["https://data.delijn.be/stops/102137", "https://data.delijn.be/stops/103479"], ["https://data.delijn.be/stops/101467", "https://data.delijn.be/stops/109266"], ["https://data.delijn.be/stops/300803", "https://data.delijn.be/stops/308530"], ["https://data.delijn.be/stops/202496", "https://data.delijn.be/stops/203495"], ["https://data.delijn.be/stops/201671", "https://data.delijn.be/stops/203775"], ["https://data.delijn.be/stops/104760", "https://data.delijn.be/stops/105500"], ["https://data.delijn.be/stops/503759", "https://data.delijn.be/stops/508756"], ["https://data.delijn.be/stops/206736", "https://data.delijn.be/stops/207984"], ["https://data.delijn.be/stops/206586", "https://data.delijn.be/stops/207841"], ["https://data.delijn.be/stops/503017", "https://data.delijn.be/stops/504817"], ["https://data.delijn.be/stops/508731", "https://data.delijn.be/stops/508991"], ["https://data.delijn.be/stops/200689", "https://data.delijn.be/stops/203758"], ["https://data.delijn.be/stops/302683", "https://data.delijn.be/stops/302686"], ["https://data.delijn.be/stops/401967", "https://data.delijn.be/stops/408115"], ["https://data.delijn.be/stops/305609", "https://data.delijn.be/stops/307272"], ["https://data.delijn.be/stops/207842", "https://data.delijn.be/stops/208951"], ["https://data.delijn.be/stops/305740", "https://data.delijn.be/stops/307118"], ["https://data.delijn.be/stops/206041", "https://data.delijn.be/stops/216011"], ["https://data.delijn.be/stops/205974", "https://data.delijn.be/stops/208295"], ["https://data.delijn.be/stops/505501", "https://data.delijn.be/stops/505504"], ["https://data.delijn.be/stops/403179", "https://data.delijn.be/stops/403445"], ["https://data.delijn.be/stops/505046", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/108166", "https://data.delijn.be/stops/108167"], ["https://data.delijn.be/stops/302649", "https://data.delijn.be/stops/302650"], ["https://data.delijn.be/stops/507698", "https://data.delijn.be/stops/508921"], ["https://data.delijn.be/stops/207534", "https://data.delijn.be/stops/207648"], ["https://data.delijn.be/stops/204476", "https://data.delijn.be/stops/205463"], ["https://data.delijn.be/stops/201452", "https://data.delijn.be/stops/203654"], ["https://data.delijn.be/stops/406379", "https://data.delijn.be/stops/407862"], ["https://data.delijn.be/stops/507063", "https://data.delijn.be/stops/507316"], ["https://data.delijn.be/stops/503556", "https://data.delijn.be/stops/508556"], ["https://data.delijn.be/stops/402069", "https://data.delijn.be/stops/402080"], ["https://data.delijn.be/stops/204117", "https://data.delijn.be/stops/205115"], ["https://data.delijn.be/stops/207307", "https://data.delijn.be/stops/207308"], ["https://data.delijn.be/stops/401296", "https://data.delijn.be/stops/401351"], ["https://data.delijn.be/stops/504031", "https://data.delijn.be/stops/505837"], ["https://data.delijn.be/stops/303422", "https://data.delijn.be/stops/303423"], ["https://data.delijn.be/stops/109671", "https://data.delijn.be/stops/408449"], ["https://data.delijn.be/stops/502361", "https://data.delijn.be/stops/507361"], ["https://data.delijn.be/stops/207175", "https://data.delijn.be/stops/207478"], ["https://data.delijn.be/stops/500946", "https://data.delijn.be/stops/500947"], ["https://data.delijn.be/stops/206039", "https://data.delijn.be/stops/207039"], ["https://data.delijn.be/stops/406956", "https://data.delijn.be/stops/406960"], ["https://data.delijn.be/stops/104589", "https://data.delijn.be/stops/106415"], ["https://data.delijn.be/stops/200126", "https://data.delijn.be/stops/202000"], ["https://data.delijn.be/stops/305002", "https://data.delijn.be/stops/305022"], ["https://data.delijn.be/stops/400588", "https://data.delijn.be/stops/400589"], ["https://data.delijn.be/stops/400659", "https://data.delijn.be/stops/402533"], ["https://data.delijn.be/stops/206696", "https://data.delijn.be/stops/207743"], ["https://data.delijn.be/stops/408672", "https://data.delijn.be/stops/408674"], ["https://data.delijn.be/stops/305506", "https://data.delijn.be/stops/305507"], ["https://data.delijn.be/stops/505277", "https://data.delijn.be/stops/508818"], ["https://data.delijn.be/stops/200010", "https://data.delijn.be/stops/201011"], ["https://data.delijn.be/stops/502457", "https://data.delijn.be/stops/502657"], ["https://data.delijn.be/stops/505311", "https://data.delijn.be/stops/509060"], ["https://data.delijn.be/stops/503188", "https://data.delijn.be/stops/503208"], ["https://data.delijn.be/stops/101816", "https://data.delijn.be/stops/204142"], ["https://data.delijn.be/stops/304696", "https://data.delijn.be/stops/306683"], ["https://data.delijn.be/stops/204296", "https://data.delijn.be/stops/204497"], ["https://data.delijn.be/stops/409098", "https://data.delijn.be/stops/409099"], ["https://data.delijn.be/stops/407680", "https://data.delijn.be/stops/408707"], ["https://data.delijn.be/stops/504619", "https://data.delijn.be/stops/504685"], ["https://data.delijn.be/stops/204034", "https://data.delijn.be/stops/205033"], ["https://data.delijn.be/stops/304862", "https://data.delijn.be/stops/307647"], ["https://data.delijn.be/stops/208356", "https://data.delijn.be/stops/209499"], ["https://data.delijn.be/stops/404857", "https://data.delijn.be/stops/404869"], ["https://data.delijn.be/stops/101444", "https://data.delijn.be/stops/101664"], ["https://data.delijn.be/stops/503241", "https://data.delijn.be/stops/505371"], ["https://data.delijn.be/stops/303479", "https://data.delijn.be/stops/303480"], ["https://data.delijn.be/stops/407861", "https://data.delijn.be/stops/305731"], ["https://data.delijn.be/stops/207943", "https://data.delijn.be/stops/307744"], ["https://data.delijn.be/stops/206559", "https://data.delijn.be/stops/206560"], ["https://data.delijn.be/stops/307051", "https://data.delijn.be/stops/308544"], ["https://data.delijn.be/stops/502402", "https://data.delijn.be/stops/507382"], ["https://data.delijn.be/stops/207261", "https://data.delijn.be/stops/207903"], ["https://data.delijn.be/stops/403548", "https://data.delijn.be/stops/403625"], ["https://data.delijn.be/stops/408002", "https://data.delijn.be/stops/308199"], ["https://data.delijn.be/stops/200403", "https://data.delijn.be/stops/202983"], ["https://data.delijn.be/stops/300602", "https://data.delijn.be/stops/300622"], ["https://data.delijn.be/stops/502028", "https://data.delijn.be/stops/502391"], ["https://data.delijn.be/stops/200692", "https://data.delijn.be/stops/208647"], ["https://data.delijn.be/stops/307055", "https://data.delijn.be/stops/307056"], ["https://data.delijn.be/stops/202832", "https://data.delijn.be/stops/209638"], ["https://data.delijn.be/stops/304900", "https://data.delijn.be/stops/306406"], ["https://data.delijn.be/stops/300115", "https://data.delijn.be/stops/306842"], ["https://data.delijn.be/stops/200111", "https://data.delijn.be/stops/201021"], ["https://data.delijn.be/stops/402942", "https://data.delijn.be/stops/301273"], ["https://data.delijn.be/stops/400471", "https://data.delijn.be/stops/407638"], ["https://data.delijn.be/stops/200161", "https://data.delijn.be/stops/200536"], ["https://data.delijn.be/stops/505714", "https://data.delijn.be/stops/508491"], ["https://data.delijn.be/stops/304527", "https://data.delijn.be/stops/304678"], ["https://data.delijn.be/stops/301503", "https://data.delijn.be/stops/301523"], ["https://data.delijn.be/stops/400505", "https://data.delijn.be/stops/400517"], ["https://data.delijn.be/stops/101688", "https://data.delijn.be/stops/109604"], ["https://data.delijn.be/stops/109057", "https://data.delijn.be/stops/405050"], ["https://data.delijn.be/stops/505511", "https://data.delijn.be/stops/505512"], ["https://data.delijn.be/stops/409415", "https://data.delijn.be/stops/409663"], ["https://data.delijn.be/stops/208155", "https://data.delijn.be/stops/208156"], ["https://data.delijn.be/stops/306667", "https://data.delijn.be/stops/306668"], ["https://data.delijn.be/stops/303820", "https://data.delijn.be/stops/303846"], ["https://data.delijn.be/stops/404105", "https://data.delijn.be/stops/408738"], ["https://data.delijn.be/stops/201718", "https://data.delijn.be/stops/202376"], ["https://data.delijn.be/stops/402112", "https://data.delijn.be/stops/405555"], ["https://data.delijn.be/stops/305071", "https://data.delijn.be/stops/306950"], ["https://data.delijn.be/stops/501219", "https://data.delijn.be/stops/501223"], ["https://data.delijn.be/stops/302024", "https://data.delijn.be/stops/302047"], ["https://data.delijn.be/stops/103007", "https://data.delijn.be/stops/106511"], ["https://data.delijn.be/stops/302735", "https://data.delijn.be/stops/307522"], ["https://data.delijn.be/stops/205985", "https://data.delijn.be/stops/207836"], ["https://data.delijn.be/stops/300358", "https://data.delijn.be/stops/304863"], ["https://data.delijn.be/stops/501344", "https://data.delijn.be/stops/506294"], ["https://data.delijn.be/stops/103055", "https://data.delijn.be/stops/104785"], ["https://data.delijn.be/stops/206130", "https://data.delijn.be/stops/206131"], ["https://data.delijn.be/stops/503270", "https://data.delijn.be/stops/503271"], ["https://data.delijn.be/stops/400684", "https://data.delijn.be/stops/406683"], ["https://data.delijn.be/stops/404898", "https://data.delijn.be/stops/404952"], ["https://data.delijn.be/stops/505677", "https://data.delijn.be/stops/507310"], ["https://data.delijn.be/stops/402542", "https://data.delijn.be/stops/402567"], ["https://data.delijn.be/stops/401782", "https://data.delijn.be/stops/406443"], ["https://data.delijn.be/stops/206691", "https://data.delijn.be/stops/207718"], ["https://data.delijn.be/stops/200054", "https://data.delijn.be/stops/201797"], ["https://data.delijn.be/stops/408020", "https://data.delijn.be/stops/408063"], ["https://data.delijn.be/stops/200825", "https://data.delijn.be/stops/200837"], ["https://data.delijn.be/stops/501080", "https://data.delijn.be/stops/506059"], ["https://data.delijn.be/stops/300133", "https://data.delijn.be/stops/305025"], ["https://data.delijn.be/stops/304697", "https://data.delijn.be/stops/307154"], ["https://data.delijn.be/stops/300641", "https://data.delijn.be/stops/300656"], ["https://data.delijn.be/stops/407893", "https://data.delijn.be/stops/301846"], ["https://data.delijn.be/stops/200219", "https://data.delijn.be/stops/200266"], ["https://data.delijn.be/stops/300285", "https://data.delijn.be/stops/306285"], ["https://data.delijn.be/stops/107461", "https://data.delijn.be/stops/109201"], ["https://data.delijn.be/stops/304786", "https://data.delijn.be/stops/308786"], ["https://data.delijn.be/stops/401670", "https://data.delijn.be/stops/308272"], ["https://data.delijn.be/stops/201663", "https://data.delijn.be/stops/209640"], ["https://data.delijn.be/stops/101136", "https://data.delijn.be/stops/104860"], ["https://data.delijn.be/stops/502586", "https://data.delijn.be/stops/502679"], ["https://data.delijn.be/stops/408707", "https://data.delijn.be/stops/410091"], ["https://data.delijn.be/stops/507685", "https://data.delijn.be/stops/507812"], ["https://data.delijn.be/stops/301928", "https://data.delijn.be/stops/307877"], ["https://data.delijn.be/stops/402098", "https://data.delijn.be/stops/402159"], ["https://data.delijn.be/stops/206161", "https://data.delijn.be/stops/206495"], ["https://data.delijn.be/stops/401062", "https://data.delijn.be/stops/401086"], ["https://data.delijn.be/stops/106306", "https://data.delijn.be/stops/106309"], ["https://data.delijn.be/stops/504074", "https://data.delijn.be/stops/509271"], ["https://data.delijn.be/stops/304951", "https://data.delijn.be/stops/304989"], ["https://data.delijn.be/stops/403329", "https://data.delijn.be/stops/403333"], ["https://data.delijn.be/stops/302228", "https://data.delijn.be/stops/302232"], ["https://data.delijn.be/stops/404404", "https://data.delijn.be/stops/404417"], ["https://data.delijn.be/stops/107920", "https://data.delijn.be/stops/107925"], ["https://data.delijn.be/stops/101444", "https://data.delijn.be/stops/107064"], ["https://data.delijn.be/stops/204497", "https://data.delijn.be/stops/205496"], ["https://data.delijn.be/stops/405927", "https://data.delijn.be/stops/406030"], ["https://data.delijn.be/stops/505799", "https://data.delijn.be/stops/509620"], ["https://data.delijn.be/stops/102300", "https://data.delijn.be/stops/105135"], ["https://data.delijn.be/stops/406545", "https://data.delijn.be/stops/408386"], ["https://data.delijn.be/stops/101145", "https://data.delijn.be/stops/102515"], ["https://data.delijn.be/stops/406552", "https://data.delijn.be/stops/406560"], ["https://data.delijn.be/stops/203726", "https://data.delijn.be/stops/203727"], ["https://data.delijn.be/stops/102675", "https://data.delijn.be/stops/104220"], ["https://data.delijn.be/stops/103233", "https://data.delijn.be/stops/108921"], ["https://data.delijn.be/stops/306612", "https://data.delijn.be/stops/306616"], ["https://data.delijn.be/stops/300453", "https://data.delijn.be/stops/300454"], ["https://data.delijn.be/stops/206660", "https://data.delijn.be/stops/207418"], ["https://data.delijn.be/stops/105197", "https://data.delijn.be/stops/108882"], ["https://data.delijn.be/stops/302869", "https://data.delijn.be/stops/306098"], ["https://data.delijn.be/stops/103586", "https://data.delijn.be/stops/104890"], ["https://data.delijn.be/stops/305611", "https://data.delijn.be/stops/308945"], ["https://data.delijn.be/stops/301089", "https://data.delijn.be/stops/308870"], ["https://data.delijn.be/stops/301042", "https://data.delijn.be/stops/307252"], ["https://data.delijn.be/stops/401774", "https://data.delijn.be/stops/401870"], ["https://data.delijn.be/stops/405232", "https://data.delijn.be/stops/409347"], ["https://data.delijn.be/stops/507191", "https://data.delijn.be/stops/508338"], ["https://data.delijn.be/stops/208021", "https://data.delijn.be/stops/208026"], ["https://data.delijn.be/stops/402229", "https://data.delijn.be/stops/402423"], ["https://data.delijn.be/stops/403451", "https://data.delijn.be/stops/404553"], ["https://data.delijn.be/stops/104131", "https://data.delijn.be/stops/108433"], ["https://data.delijn.be/stops/404869", "https://data.delijn.be/stops/404913"], ["https://data.delijn.be/stops/502351", "https://data.delijn.be/stops/505171"], ["https://data.delijn.be/stops/406268", "https://data.delijn.be/stops/409404"], ["https://data.delijn.be/stops/108692", "https://data.delijn.be/stops/108693"], ["https://data.delijn.be/stops/503025", "https://data.delijn.be/stops/508025"], ["https://data.delijn.be/stops/505543", "https://data.delijn.be/stops/508804"], ["https://data.delijn.be/stops/403794", "https://data.delijn.be/stops/403795"], ["https://data.delijn.be/stops/209141", "https://data.delijn.be/stops/209851"], ["https://data.delijn.be/stops/405186", "https://data.delijn.be/stops/405190"], ["https://data.delijn.be/stops/502312", "https://data.delijn.be/stops/507312"], ["https://data.delijn.be/stops/202552", "https://data.delijn.be/stops/203564"], ["https://data.delijn.be/stops/504590", "https://data.delijn.be/stops/509346"], ["https://data.delijn.be/stops/503114", "https://data.delijn.be/stops/508114"], ["https://data.delijn.be/stops/101414", "https://data.delijn.be/stops/101431"], ["https://data.delijn.be/stops/108192", "https://data.delijn.be/stops/108193"], ["https://data.delijn.be/stops/203772", "https://data.delijn.be/stops/209641"], ["https://data.delijn.be/stops/200109", "https://data.delijn.be/stops/201386"], ["https://data.delijn.be/stops/208259", "https://data.delijn.be/stops/209259"], ["https://data.delijn.be/stops/508893", "https://data.delijn.be/stops/508969"], ["https://data.delijn.be/stops/206289", "https://data.delijn.be/stops/207257"], ["https://data.delijn.be/stops/502350", "https://data.delijn.be/stops/507233"], ["https://data.delijn.be/stops/504660", "https://data.delijn.be/stops/507946"], ["https://data.delijn.be/stops/206668", "https://data.delijn.be/stops/208481"], ["https://data.delijn.be/stops/302962", "https://data.delijn.be/stops/302993"], ["https://data.delijn.be/stops/305830", "https://data.delijn.be/stops/305962"], ["https://data.delijn.be/stops/403978", "https://data.delijn.be/stops/403979"], ["https://data.delijn.be/stops/407752", "https://data.delijn.be/stops/407754"], ["https://data.delijn.be/stops/301797", "https://data.delijn.be/stops/301799"], ["https://data.delijn.be/stops/403776", "https://data.delijn.be/stops/403817"], ["https://data.delijn.be/stops/101886", "https://data.delijn.be/stops/107531"], ["https://data.delijn.be/stops/403719", "https://data.delijn.be/stops/403722"], ["https://data.delijn.be/stops/400859", "https://data.delijn.be/stops/400861"], ["https://data.delijn.be/stops/201383", "https://data.delijn.be/stops/209730"], ["https://data.delijn.be/stops/502421", "https://data.delijn.be/stops/507421"], ["https://data.delijn.be/stops/300552", "https://data.delijn.be/stops/300563"], ["https://data.delijn.be/stops/501201", "https://data.delijn.be/stops/506201"], ["https://data.delijn.be/stops/207791", "https://data.delijn.be/stops/208764"], ["https://data.delijn.be/stops/204367", "https://data.delijn.be/stops/205217"], ["https://data.delijn.be/stops/201726", "https://data.delijn.be/stops/203977"], ["https://data.delijn.be/stops/104672", "https://data.delijn.be/stops/109660"], ["https://data.delijn.be/stops/502037", "https://data.delijn.be/stops/507041"], ["https://data.delijn.be/stops/304018", "https://data.delijn.be/stops/304090"], ["https://data.delijn.be/stops/400688", "https://data.delijn.be/stops/404252"], ["https://data.delijn.be/stops/104133", "https://data.delijn.be/stops/104592"], ["https://data.delijn.be/stops/206521", "https://data.delijn.be/stops/207064"], ["https://data.delijn.be/stops/106453", "https://data.delijn.be/stops/106454"], ["https://data.delijn.be/stops/208126", "https://data.delijn.be/stops/218015"], ["https://data.delijn.be/stops/302663", "https://data.delijn.be/stops/302673"], ["https://data.delijn.be/stops/503075", "https://data.delijn.be/stops/503265"], ["https://data.delijn.be/stops/402889", "https://data.delijn.be/stops/402897"], ["https://data.delijn.be/stops/402779", "https://data.delijn.be/stops/402798"], ["https://data.delijn.be/stops/106705", "https://data.delijn.be/stops/106706"], ["https://data.delijn.be/stops/308467", "https://data.delijn.be/stops/308468"], ["https://data.delijn.be/stops/204182", "https://data.delijn.be/stops/205355"], ["https://data.delijn.be/stops/206698", "https://data.delijn.be/stops/207698"], ["https://data.delijn.be/stops/504053", "https://data.delijn.be/stops/505144"], ["https://data.delijn.be/stops/508168", "https://data.delijn.be/stops/508945"], ["https://data.delijn.be/stops/402882", "https://data.delijn.be/stops/405536"], ["https://data.delijn.be/stops/204029", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/301808", "https://data.delijn.be/stops/301818"], ["https://data.delijn.be/stops/206330", "https://data.delijn.be/stops/207330"], ["https://data.delijn.be/stops/202817", "https://data.delijn.be/stops/219953"], ["https://data.delijn.be/stops/208010", "https://data.delijn.be/stops/209010"], ["https://data.delijn.be/stops/406073", "https://data.delijn.be/stops/406079"], ["https://data.delijn.be/stops/408820", "https://data.delijn.be/stops/408821"], ["https://data.delijn.be/stops/303280", "https://data.delijn.be/stops/308793"], ["https://data.delijn.be/stops/509169", "https://data.delijn.be/stops/509177"], ["https://data.delijn.be/stops/105508", "https://data.delijn.be/stops/105509"], ["https://data.delijn.be/stops/108644", "https://data.delijn.be/stops/108647"], ["https://data.delijn.be/stops/306904", "https://data.delijn.be/stops/308721"], ["https://data.delijn.be/stops/208181", "https://data.delijn.be/stops/208759"], ["https://data.delijn.be/stops/208107", "https://data.delijn.be/stops/209776"], ["https://data.delijn.be/stops/503054", "https://data.delijn.be/stops/508054"], ["https://data.delijn.be/stops/405626", "https://data.delijn.be/stops/407471"], ["https://data.delijn.be/stops/401459", "https://data.delijn.be/stops/401578"], ["https://data.delijn.be/stops/404781", "https://data.delijn.be/stops/404785"], ["https://data.delijn.be/stops/504664", "https://data.delijn.be/stops/504730"], ["https://data.delijn.be/stops/304203", "https://data.delijn.be/stops/304209"], ["https://data.delijn.be/stops/201605", "https://data.delijn.be/stops/201647"], ["https://data.delijn.be/stops/407589", "https://data.delijn.be/stops/407590"], ["https://data.delijn.be/stops/204416", "https://data.delijn.be/stops/205416"], ["https://data.delijn.be/stops/302240", "https://data.delijn.be/stops/304913"], ["https://data.delijn.be/stops/206089", "https://data.delijn.be/stops/206094"], ["https://data.delijn.be/stops/403119", "https://data.delijn.be/stops/403120"], ["https://data.delijn.be/stops/500018", "https://data.delijn.be/stops/502465"], ["https://data.delijn.be/stops/302515", "https://data.delijn.be/stops/302538"], ["https://data.delijn.be/stops/104046", "https://data.delijn.be/stops/104047"], ["https://data.delijn.be/stops/105754", "https://data.delijn.be/stops/105756"], ["https://data.delijn.be/stops/202410", "https://data.delijn.be/stops/202418"], ["https://data.delijn.be/stops/501059", "https://data.delijn.be/stops/506054"], ["https://data.delijn.be/stops/101403", "https://data.delijn.be/stops/101404"], ["https://data.delijn.be/stops/304090", "https://data.delijn.be/stops/306375"], ["https://data.delijn.be/stops/108915", "https://data.delijn.be/stops/109771"], ["https://data.delijn.be/stops/400406", "https://data.delijn.be/stops/405537"], ["https://data.delijn.be/stops/401145", "https://data.delijn.be/stops/403735"], ["https://data.delijn.be/stops/206432", "https://data.delijn.be/stops/206537"], ["https://data.delijn.be/stops/507430", "https://data.delijn.be/stops/507751"], ["https://data.delijn.be/stops/103235", "https://data.delijn.be/stops/107400"], ["https://data.delijn.be/stops/403230", "https://data.delijn.be/stops/403387"], ["https://data.delijn.be/stops/200903", "https://data.delijn.be/stops/200904"], ["https://data.delijn.be/stops/204342", "https://data.delijn.be/stops/205452"], ["https://data.delijn.be/stops/200031", "https://data.delijn.be/stops/201335"], ["https://data.delijn.be/stops/400496", "https://data.delijn.be/stops/406565"], ["https://data.delijn.be/stops/103216", "https://data.delijn.be/stops/104887"], ["https://data.delijn.be/stops/503206", "https://data.delijn.be/stops/503407"], ["https://data.delijn.be/stops/202921", "https://data.delijn.be/stops/203855"], ["https://data.delijn.be/stops/209598", "https://data.delijn.be/stops/307306"], ["https://data.delijn.be/stops/501463", "https://data.delijn.be/stops/501536"], ["https://data.delijn.be/stops/504551", "https://data.delijn.be/stops/504553"], ["https://data.delijn.be/stops/206882", "https://data.delijn.be/stops/207915"], ["https://data.delijn.be/stops/204740", "https://data.delijn.be/stops/205743"], ["https://data.delijn.be/stops/103712", "https://data.delijn.be/stops/103946"], ["https://data.delijn.be/stops/200856", "https://data.delijn.be/stops/203306"], ["https://data.delijn.be/stops/307412", "https://data.delijn.be/stops/307413"], ["https://data.delijn.be/stops/106019", "https://data.delijn.be/stops/109860"], ["https://data.delijn.be/stops/300492", "https://data.delijn.be/stops/302867"], ["https://data.delijn.be/stops/504139", "https://data.delijn.be/stops/505985"], ["https://data.delijn.be/stops/404286", "https://data.delijn.be/stops/407088"], ["https://data.delijn.be/stops/501163", "https://data.delijn.be/stops/501669"], ["https://data.delijn.be/stops/403086", "https://data.delijn.be/stops/410329"], ["https://data.delijn.be/stops/106753", "https://data.delijn.be/stops/106759"], ["https://data.delijn.be/stops/405786", "https://data.delijn.be/stops/409749"], ["https://data.delijn.be/stops/504402", "https://data.delijn.be/stops/509467"], ["https://data.delijn.be/stops/106345", "https://data.delijn.be/stops/106346"], ["https://data.delijn.be/stops/408530", "https://data.delijn.be/stops/408531"], ["https://data.delijn.be/stops/304690", "https://data.delijn.be/stops/309670"], ["https://data.delijn.be/stops/301495", "https://data.delijn.be/stops/307957"], ["https://data.delijn.be/stops/300894", "https://data.delijn.be/stops/306052"], ["https://data.delijn.be/stops/400661", "https://data.delijn.be/stops/400663"], ["https://data.delijn.be/stops/504150", "https://data.delijn.be/stops/504193"], ["https://data.delijn.be/stops/205250", "https://data.delijn.be/stops/205472"], ["https://data.delijn.be/stops/402386", "https://data.delijn.be/stops/406884"], ["https://data.delijn.be/stops/302870", "https://data.delijn.be/stops/303950"], ["https://data.delijn.be/stops/504289", "https://data.delijn.be/stops/509289"], ["https://data.delijn.be/stops/208131", "https://data.delijn.be/stops/208815"], ["https://data.delijn.be/stops/106644", "https://data.delijn.be/stops/106678"], ["https://data.delijn.be/stops/201166", "https://data.delijn.be/stops/202152"], ["https://data.delijn.be/stops/206815", "https://data.delijn.be/stops/207210"], ["https://data.delijn.be/stops/103059", "https://data.delijn.be/stops/104447"], ["https://data.delijn.be/stops/207376", "https://data.delijn.be/stops/207727"], ["https://data.delijn.be/stops/501129", "https://data.delijn.be/stops/506129"], ["https://data.delijn.be/stops/501770", "https://data.delijn.be/stops/502372"], ["https://data.delijn.be/stops/402726", "https://data.delijn.be/stops/410056"], ["https://data.delijn.be/stops/404335", "https://data.delijn.be/stops/404354"], ["https://data.delijn.be/stops/200893", "https://data.delijn.be/stops/202793"], ["https://data.delijn.be/stops/402231", "https://data.delijn.be/stops/402295"], ["https://data.delijn.be/stops/404150", "https://data.delijn.be/stops/404184"], ["https://data.delijn.be/stops/204524", "https://data.delijn.be/stops/205482"], ["https://data.delijn.be/stops/300576", "https://data.delijn.be/stops/300585"], ["https://data.delijn.be/stops/301192", "https://data.delijn.be/stops/301240"], ["https://data.delijn.be/stops/405030", "https://data.delijn.be/stops/405031"], ["https://data.delijn.be/stops/304882", "https://data.delijn.be/stops/308542"], ["https://data.delijn.be/stops/102089", "https://data.delijn.be/stops/106808"], ["https://data.delijn.be/stops/205999", "https://data.delijn.be/stops/207385"], ["https://data.delijn.be/stops/507319", "https://data.delijn.be/stops/507324"], ["https://data.delijn.be/stops/102730", "https://data.delijn.be/stops/305622"], ["https://data.delijn.be/stops/403884", "https://data.delijn.be/stops/403892"], ["https://data.delijn.be/stops/406881", "https://data.delijn.be/stops/409410"], ["https://data.delijn.be/stops/504706", "https://data.delijn.be/stops/509024"], ["https://data.delijn.be/stops/502467", "https://data.delijn.be/stops/507484"], ["https://data.delijn.be/stops/502225", "https://data.delijn.be/stops/505844"], ["https://data.delijn.be/stops/400069", "https://data.delijn.be/stops/400160"], ["https://data.delijn.be/stops/400429", "https://data.delijn.be/stops/407513"], ["https://data.delijn.be/stops/206873", "https://data.delijn.be/stops/207239"], ["https://data.delijn.be/stops/208023", "https://data.delijn.be/stops/209012"], ["https://data.delijn.be/stops/304788", "https://data.delijn.be/stops/304795"], ["https://data.delijn.be/stops/304216", "https://data.delijn.be/stops/307241"], ["https://data.delijn.be/stops/306561", "https://data.delijn.be/stops/308829"], ["https://data.delijn.be/stops/400708", "https://data.delijn.be/stops/404374"], ["https://data.delijn.be/stops/502150", "https://data.delijn.be/stops/507136"], ["https://data.delijn.be/stops/211073", "https://data.delijn.be/stops/219003"], ["https://data.delijn.be/stops/301029", "https://data.delijn.be/stops/301035"], ["https://data.delijn.be/stops/407712", "https://data.delijn.be/stops/409772"], ["https://data.delijn.be/stops/304954", "https://data.delijn.be/stops/308033"], ["https://data.delijn.be/stops/105877", "https://data.delijn.be/stops/105878"], ["https://data.delijn.be/stops/409681", "https://data.delijn.be/stops/409685"], ["https://data.delijn.be/stops/302060", "https://data.delijn.be/stops/303516"], ["https://data.delijn.be/stops/501295", "https://data.delijn.be/stops/501296"], ["https://data.delijn.be/stops/201928", "https://data.delijn.be/stops/202959"], ["https://data.delijn.be/stops/201105", "https://data.delijn.be/stops/203457"], ["https://data.delijn.be/stops/301318", "https://data.delijn.be/stops/301319"], ["https://data.delijn.be/stops/500008", "https://data.delijn.be/stops/505894"], ["https://data.delijn.be/stops/202698", "https://data.delijn.be/stops/202700"], ["https://data.delijn.be/stops/202746", "https://data.delijn.be/stops/207422"], ["https://data.delijn.be/stops/301531", "https://data.delijn.be/stops/308082"], ["https://data.delijn.be/stops/106094", "https://data.delijn.be/stops/109185"], ["https://data.delijn.be/stops/200889", "https://data.delijn.be/stops/202297"], ["https://data.delijn.be/stops/103025", "https://data.delijn.be/stops/103880"], ["https://data.delijn.be/stops/209588", "https://data.delijn.be/stops/209589"], ["https://data.delijn.be/stops/204066", "https://data.delijn.be/stops/205224"], ["https://data.delijn.be/stops/105198", "https://data.delijn.be/stops/108880"], ["https://data.delijn.be/stops/202062", "https://data.delijn.be/stops/211016"], ["https://data.delijn.be/stops/503118", "https://data.delijn.be/stops/503120"], ["https://data.delijn.be/stops/405364", "https://data.delijn.be/stops/405367"], ["https://data.delijn.be/stops/503800", "https://data.delijn.be/stops/508799"], ["https://data.delijn.be/stops/107593", "https://data.delijn.be/stops/107697"], ["https://data.delijn.be/stops/504348", "https://data.delijn.be/stops/509347"], ["https://data.delijn.be/stops/406986", "https://data.delijn.be/stops/406987"], ["https://data.delijn.be/stops/302511", "https://data.delijn.be/stops/302512"], ["https://data.delijn.be/stops/404309", "https://data.delijn.be/stops/404370"], ["https://data.delijn.be/stops/108027", "https://data.delijn.be/stops/108028"], ["https://data.delijn.be/stops/209948", "https://data.delijn.be/stops/211045"], ["https://data.delijn.be/stops/504332", "https://data.delijn.be/stops/504340"], ["https://data.delijn.be/stops/102614", "https://data.delijn.be/stops/102618"], ["https://data.delijn.be/stops/109657", "https://data.delijn.be/stops/406502"], ["https://data.delijn.be/stops/209447", "https://data.delijn.be/stops/209524"], ["https://data.delijn.be/stops/202988", "https://data.delijn.be/stops/203987"], ["https://data.delijn.be/stops/104220", "https://data.delijn.be/stops/105235"], ["https://data.delijn.be/stops/302126", "https://data.delijn.be/stops/307130"], ["https://data.delijn.be/stops/203710", "https://data.delijn.be/stops/211709"], ["https://data.delijn.be/stops/305948", "https://data.delijn.be/stops/308894"], ["https://data.delijn.be/stops/302425", "https://data.delijn.be/stops/302426"], ["https://data.delijn.be/stops/204140", "https://data.delijn.be/stops/205575"], ["https://data.delijn.be/stops/407150", "https://data.delijn.be/stops/409509"], ["https://data.delijn.be/stops/504253", "https://data.delijn.be/stops/508479"], ["https://data.delijn.be/stops/300992", "https://data.delijn.be/stops/300995"], ["https://data.delijn.be/stops/508817", "https://data.delijn.be/stops/508820"], ["https://data.delijn.be/stops/504730", "https://data.delijn.be/stops/509506"], ["https://data.delijn.be/stops/302183", "https://data.delijn.be/stops/308096"], ["https://data.delijn.be/stops/505112", "https://data.delijn.be/stops/505855"], ["https://data.delijn.be/stops/400513", "https://data.delijn.be/stops/401436"], ["https://data.delijn.be/stops/303492", "https://data.delijn.be/stops/303495"], ["https://data.delijn.be/stops/304526", "https://data.delijn.be/stops/304672"], ["https://data.delijn.be/stops/503730", "https://data.delijn.be/stops/503759"], ["https://data.delijn.be/stops/101525", "https://data.delijn.be/stops/103048"], ["https://data.delijn.be/stops/305508", "https://data.delijn.be/stops/305515"], ["https://data.delijn.be/stops/401036", "https://data.delijn.be/stops/402214"], ["https://data.delijn.be/stops/407331", "https://data.delijn.be/stops/407403"], ["https://data.delijn.be/stops/202077", "https://data.delijn.be/stops/208919"], ["https://data.delijn.be/stops/107343", "https://data.delijn.be/stops/108163"], ["https://data.delijn.be/stops/509504", "https://data.delijn.be/stops/509505"], ["https://data.delijn.be/stops/305292", "https://data.delijn.be/stops/305293"], ["https://data.delijn.be/stops/202003", "https://data.delijn.be/stops/203003"], ["https://data.delijn.be/stops/406642", "https://data.delijn.be/stops/407410"], ["https://data.delijn.be/stops/400700", "https://data.delijn.be/stops/400896"], ["https://data.delijn.be/stops/404095", "https://data.delijn.be/stops/409283"], ["https://data.delijn.be/stops/201163", "https://data.delijn.be/stops/203654"], ["https://data.delijn.be/stops/102875", "https://data.delijn.be/stops/108025"], ["https://data.delijn.be/stops/205296", "https://data.delijn.be/stops/205496"], ["https://data.delijn.be/stops/200428", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/404411", "https://data.delijn.be/stops/404414"], ["https://data.delijn.be/stops/502365", "https://data.delijn.be/stops/507679"], ["https://data.delijn.be/stops/203814", "https://data.delijn.be/stops/205075"], ["https://data.delijn.be/stops/205029", "https://data.delijn.be/stops/205034"], ["https://data.delijn.be/stops/105303", "https://data.delijn.be/stops/105306"], ["https://data.delijn.be/stops/106178", "https://data.delijn.be/stops/109372"], ["https://data.delijn.be/stops/300973", "https://data.delijn.be/stops/306001"], ["https://data.delijn.be/stops/208847", "https://data.delijn.be/stops/209847"], ["https://data.delijn.be/stops/406944", "https://data.delijn.be/stops/406975"], ["https://data.delijn.be/stops/206439", "https://data.delijn.be/stops/206442"], ["https://data.delijn.be/stops/400171", "https://data.delijn.be/stops/400937"], ["https://data.delijn.be/stops/408559", "https://data.delijn.be/stops/408691"], ["https://data.delijn.be/stops/301028", "https://data.delijn.be/stops/301029"], ["https://data.delijn.be/stops/503397", "https://data.delijn.be/stops/504293"], ["https://data.delijn.be/stops/200151", "https://data.delijn.be/stops/201152"], ["https://data.delijn.be/stops/302320", "https://data.delijn.be/stops/303471"], ["https://data.delijn.be/stops/102886", "https://data.delijn.be/stops/102985"], ["https://data.delijn.be/stops/204312", "https://data.delijn.be/stops/204351"], ["https://data.delijn.be/stops/410152", "https://data.delijn.be/stops/300932"], ["https://data.delijn.be/stops/304579", "https://data.delijn.be/stops/305576"], ["https://data.delijn.be/stops/101227", "https://data.delijn.be/stops/107810"], ["https://data.delijn.be/stops/107847", "https://data.delijn.be/stops/107848"], ["https://data.delijn.be/stops/302366", "https://data.delijn.be/stops/302367"], ["https://data.delijn.be/stops/206573", "https://data.delijn.be/stops/206590"], ["https://data.delijn.be/stops/200451", "https://data.delijn.be/stops/201246"], ["https://data.delijn.be/stops/300282", "https://data.delijn.be/stops/303819"], ["https://data.delijn.be/stops/204982", "https://data.delijn.be/stops/209776"], ["https://data.delijn.be/stops/202097", "https://data.delijn.be/stops/203096"], ["https://data.delijn.be/stops/503356", "https://data.delijn.be/stops/503414"], ["https://data.delijn.be/stops/108261", "https://data.delijn.be/stops/108262"], ["https://data.delijn.be/stops/501336", "https://data.delijn.be/stops/506315"], ["https://data.delijn.be/stops/201355", "https://data.delijn.be/stops/208292"], ["https://data.delijn.be/stops/305586", "https://data.delijn.be/stops/308816"], ["https://data.delijn.be/stops/300010", "https://data.delijn.be/stops/304288"], ["https://data.delijn.be/stops/404932", "https://data.delijn.be/stops/404941"], ["https://data.delijn.be/stops/405385", "https://data.delijn.be/stops/405391"], ["https://data.delijn.be/stops/206230", "https://data.delijn.be/stops/207233"], ["https://data.delijn.be/stops/504224", "https://data.delijn.be/stops/509619"], ["https://data.delijn.be/stops/204327", "https://data.delijn.be/stops/205327"], ["https://data.delijn.be/stops/402349", "https://data.delijn.be/stops/410073"], ["https://data.delijn.be/stops/106760", "https://data.delijn.be/stops/107516"], ["https://data.delijn.be/stops/103290", "https://data.delijn.be/stops/107490"], ["https://data.delijn.be/stops/402350", "https://data.delijn.be/stops/402463"], ["https://data.delijn.be/stops/503492", "https://data.delijn.be/stops/503567"], ["https://data.delijn.be/stops/206331", "https://data.delijn.be/stops/308799"], ["https://data.delijn.be/stops/304146", "https://data.delijn.be/stops/304171"], ["https://data.delijn.be/stops/308019", "https://data.delijn.be/stops/308020"], ["https://data.delijn.be/stops/300300", "https://data.delijn.be/stops/301014"], ["https://data.delijn.be/stops/106721", "https://data.delijn.be/stops/109635"], ["https://data.delijn.be/stops/106924", "https://data.delijn.be/stops/106925"], ["https://data.delijn.be/stops/403631", "https://data.delijn.be/stops/403640"], ["https://data.delijn.be/stops/408696", "https://data.delijn.be/stops/408701"], ["https://data.delijn.be/stops/501420", "https://data.delijn.be/stops/501424"], ["https://data.delijn.be/stops/300683", "https://data.delijn.be/stops/305965"], ["https://data.delijn.be/stops/202796", "https://data.delijn.be/stops/203313"], ["https://data.delijn.be/stops/408492", "https://data.delijn.be/stops/408980"], ["https://data.delijn.be/stops/108564", "https://data.delijn.be/stops/109094"], ["https://data.delijn.be/stops/203156", "https://data.delijn.be/stops/203157"], ["https://data.delijn.be/stops/201735", "https://data.delijn.be/stops/210128"], ["https://data.delijn.be/stops/210014", "https://data.delijn.be/stops/507298"], ["https://data.delijn.be/stops/304149", "https://data.delijn.be/stops/307761"], ["https://data.delijn.be/stops/204784", "https://data.delijn.be/stops/204785"], ["https://data.delijn.be/stops/104756", "https://data.delijn.be/stops/104757"], ["https://data.delijn.be/stops/201591", "https://data.delijn.be/stops/201592"], ["https://data.delijn.be/stops/300436", "https://data.delijn.be/stops/300440"], ["https://data.delijn.be/stops/303529", "https://data.delijn.be/stops/303570"], ["https://data.delijn.be/stops/208781", "https://data.delijn.be/stops/209350"], ["https://data.delijn.be/stops/505109", "https://data.delijn.be/stops/505110"], ["https://data.delijn.be/stops/102917", "https://data.delijn.be/stops/103275"], ["https://data.delijn.be/stops/302548", "https://data.delijn.be/stops/302560"], ["https://data.delijn.be/stops/301673", "https://data.delijn.be/stops/301674"], ["https://data.delijn.be/stops/507256", "https://data.delijn.be/stops/507261"], ["https://data.delijn.be/stops/109301", "https://data.delijn.be/stops/109302"], ["https://data.delijn.be/stops/200233", "https://data.delijn.be/stops/201232"], ["https://data.delijn.be/stops/308100", "https://data.delijn.be/stops/308101"], ["https://data.delijn.be/stops/300297", "https://data.delijn.be/stops/301315"], ["https://data.delijn.be/stops/200450", "https://data.delijn.be/stops/209291"], ["https://data.delijn.be/stops/503343", "https://data.delijn.be/stops/504863"], ["https://data.delijn.be/stops/302375", "https://data.delijn.be/stops/304067"], ["https://data.delijn.be/stops/501010", "https://data.delijn.be/stops/507076"], ["https://data.delijn.be/stops/202440", "https://data.delijn.be/stops/202441"], ["https://data.delijn.be/stops/102624", "https://data.delijn.be/stops/108216"], ["https://data.delijn.be/stops/304174", "https://data.delijn.be/stops/304684"], ["https://data.delijn.be/stops/502015", "https://data.delijn.be/stops/507015"], ["https://data.delijn.be/stops/406996", "https://data.delijn.be/stops/407131"], ["https://data.delijn.be/stops/402751", "https://data.delijn.be/stops/402777"], ["https://data.delijn.be/stops/501395", "https://data.delijn.be/stops/501397"], ["https://data.delijn.be/stops/200728", "https://data.delijn.be/stops/200733"], ["https://data.delijn.be/stops/300750", "https://data.delijn.be/stops/300785"], ["https://data.delijn.be/stops/502120", "https://data.delijn.be/stops/507120"], ["https://data.delijn.be/stops/301882", "https://data.delijn.be/stops/302465"], ["https://data.delijn.be/stops/103923", "https://data.delijn.be/stops/106902"], ["https://data.delijn.be/stops/503234", "https://data.delijn.be/stops/503243"], ["https://data.delijn.be/stops/206545", "https://data.delijn.be/stops/207546"], ["https://data.delijn.be/stops/504048", "https://data.delijn.be/stops/504159"], ["https://data.delijn.be/stops/501244", "https://data.delijn.be/stops/506370"], ["https://data.delijn.be/stops/501037", "https://data.delijn.be/stops/506033"], ["https://data.delijn.be/stops/402601", "https://data.delijn.be/stops/404098"], ["https://data.delijn.be/stops/401805", "https://data.delijn.be/stops/401817"], ["https://data.delijn.be/stops/404911", "https://data.delijn.be/stops/404985"], ["https://data.delijn.be/stops/304562", "https://data.delijn.be/stops/304639"], ["https://data.delijn.be/stops/204743", "https://data.delijn.be/stops/205743"], ["https://data.delijn.be/stops/501461", "https://data.delijn.be/stops/506460"], ["https://data.delijn.be/stops/301566", "https://data.delijn.be/stops/301567"], ["https://data.delijn.be/stops/501181", "https://data.delijn.be/stops/506181"], ["https://data.delijn.be/stops/308213", "https://data.delijn.be/stops/308236"], ["https://data.delijn.be/stops/202022", "https://data.delijn.be/stops/203022"], ["https://data.delijn.be/stops/509135", "https://data.delijn.be/stops/509654"], ["https://data.delijn.be/stops/302084", "https://data.delijn.be/stops/302250"], ["https://data.delijn.be/stops/200859", "https://data.delijn.be/stops/505683"], ["https://data.delijn.be/stops/300507", "https://data.delijn.be/stops/302918"], ["https://data.delijn.be/stops/204712", "https://data.delijn.be/stops/204717"], ["https://data.delijn.be/stops/505053", "https://data.delijn.be/stops/507188"], ["https://data.delijn.be/stops/205988", "https://data.delijn.be/stops/208341"], ["https://data.delijn.be/stops/202162", "https://data.delijn.be/stops/203635"], ["https://data.delijn.be/stops/202460", "https://data.delijn.be/stops/202461"], ["https://data.delijn.be/stops/106524", "https://data.delijn.be/stops/106525"], ["https://data.delijn.be/stops/206584", "https://data.delijn.be/stops/207584"], ["https://data.delijn.be/stops/505173", "https://data.delijn.be/stops/505310"], ["https://data.delijn.be/stops/400729", "https://data.delijn.be/stops/409398"], ["https://data.delijn.be/stops/106023", "https://data.delijn.be/stops/109624"], ["https://data.delijn.be/stops/308550", "https://data.delijn.be/stops/308552"], ["https://data.delijn.be/stops/305314", "https://data.delijn.be/stops/305315"], ["https://data.delijn.be/stops/503104", "https://data.delijn.be/stops/504364"], ["https://data.delijn.be/stops/300270", "https://data.delijn.be/stops/302146"], ["https://data.delijn.be/stops/104412", "https://data.delijn.be/stops/104417"], ["https://data.delijn.be/stops/403904", "https://data.delijn.be/stops/404037"], ["https://data.delijn.be/stops/205411", "https://data.delijn.be/stops/205772"], ["https://data.delijn.be/stops/307420", "https://data.delijn.be/stops/307954"], ["https://data.delijn.be/stops/206472", "https://data.delijn.be/stops/207473"], ["https://data.delijn.be/stops/407123", "https://data.delijn.be/stops/407339"], ["https://data.delijn.be/stops/203266", "https://data.delijn.be/stops/210076"], ["https://data.delijn.be/stops/304862", "https://data.delijn.be/stops/304863"], ["https://data.delijn.be/stops/304998", "https://data.delijn.be/stops/305008"], ["https://data.delijn.be/stops/301009", "https://data.delijn.be/stops/301018"], ["https://data.delijn.be/stops/405255", "https://data.delijn.be/stops/405291"], ["https://data.delijn.be/stops/401730", "https://data.delijn.be/stops/401872"], ["https://data.delijn.be/stops/102166", "https://data.delijn.be/stops/104491"], ["https://data.delijn.be/stops/407813", "https://data.delijn.be/stops/407902"], ["https://data.delijn.be/stops/404339", "https://data.delijn.be/stops/404345"], ["https://data.delijn.be/stops/102350", "https://data.delijn.be/stops/102872"], ["https://data.delijn.be/stops/408580", "https://data.delijn.be/stops/408776"], ["https://data.delijn.be/stops/301704", "https://data.delijn.be/stops/305227"], ["https://data.delijn.be/stops/204306", "https://data.delijn.be/stops/205305"], ["https://data.delijn.be/stops/505729", "https://data.delijn.be/stops/506186"], ["https://data.delijn.be/stops/505995", "https://data.delijn.be/stops/509585"], ["https://data.delijn.be/stops/400030", "https://data.delijn.be/stops/400429"], ["https://data.delijn.be/stops/502589", "https://data.delijn.be/stops/507443"], ["https://data.delijn.be/stops/302793", "https://data.delijn.be/stops/302805"], ["https://data.delijn.be/stops/201776", "https://data.delijn.be/stops/208854"], ["https://data.delijn.be/stops/405565", "https://data.delijn.be/stops/405567"], ["https://data.delijn.be/stops/104637", "https://data.delijn.be/stops/108032"], ["https://data.delijn.be/stops/400548", "https://data.delijn.be/stops/406988"], ["https://data.delijn.be/stops/104139", "https://data.delijn.be/stops/109576"], ["https://data.delijn.be/stops/401083", "https://data.delijn.be/stops/402899"], ["https://data.delijn.be/stops/303704", "https://data.delijn.be/stops/307258"], ["https://data.delijn.be/stops/208313", "https://data.delijn.be/stops/208772"], ["https://data.delijn.be/stops/102260", "https://data.delijn.be/stops/107460"], ["https://data.delijn.be/stops/206947", "https://data.delijn.be/stops/208542"], ["https://data.delijn.be/stops/102345", "https://data.delijn.be/stops/102985"], ["https://data.delijn.be/stops/201608", "https://data.delijn.be/stops/202780"], ["https://data.delijn.be/stops/505721", "https://data.delijn.be/stops/507235"], ["https://data.delijn.be/stops/407272", "https://data.delijn.be/stops/407303"], ["https://data.delijn.be/stops/407515", "https://data.delijn.be/stops/410038"], ["https://data.delijn.be/stops/502389", "https://data.delijn.be/stops/502399"], ["https://data.delijn.be/stops/102896", "https://data.delijn.be/stops/109673"], ["https://data.delijn.be/stops/408553", "https://data.delijn.be/stops/409980"], ["https://data.delijn.be/stops/104553", "https://data.delijn.be/stops/104557"], ["https://data.delijn.be/stops/300698", "https://data.delijn.be/stops/306938"], ["https://data.delijn.be/stops/201778", "https://data.delijn.be/stops/201780"], ["https://data.delijn.be/stops/207956", "https://data.delijn.be/stops/308565"], ["https://data.delijn.be/stops/401517", "https://data.delijn.be/stops/401594"], ["https://data.delijn.be/stops/206894", "https://data.delijn.be/stops/207884"], ["https://data.delijn.be/stops/303299", "https://data.delijn.be/stops/308118"], ["https://data.delijn.be/stops/505254", "https://data.delijn.be/stops/505942"], ["https://data.delijn.be/stops/200416", "https://data.delijn.be/stops/201417"], ["https://data.delijn.be/stops/103028", "https://data.delijn.be/stops/104563"], ["https://data.delijn.be/stops/204478", "https://data.delijn.be/stops/205478"], ["https://data.delijn.be/stops/105866", "https://data.delijn.be/stops/105872"], ["https://data.delijn.be/stops/205980", "https://data.delijn.be/stops/206821"], ["https://data.delijn.be/stops/101292", "https://data.delijn.be/stops/105364"], ["https://data.delijn.be/stops/305646", "https://data.delijn.be/stops/305666"], ["https://data.delijn.be/stops/301514", "https://data.delijn.be/stops/308751"], ["https://data.delijn.be/stops/403003", "https://data.delijn.be/stops/405551"], ["https://data.delijn.be/stops/103681", "https://data.delijn.be/stops/107789"], ["https://data.delijn.be/stops/305986", "https://data.delijn.be/stops/305988"], ["https://data.delijn.be/stops/204175", "https://data.delijn.be/stops/205213"], ["https://data.delijn.be/stops/301644", "https://data.delijn.be/stops/301647"], ["https://data.delijn.be/stops/405640", "https://data.delijn.be/stops/405641"], ["https://data.delijn.be/stops/300374", "https://data.delijn.be/stops/300380"], ["https://data.delijn.be/stops/200720", "https://data.delijn.be/stops/203577"], ["https://data.delijn.be/stops/204123", "https://data.delijn.be/stops/205146"], ["https://data.delijn.be/stops/202533", "https://data.delijn.be/stops/203966"], ["https://data.delijn.be/stops/210093", "https://data.delijn.be/stops/211073"], ["https://data.delijn.be/stops/304478", "https://data.delijn.be/stops/304479"], ["https://data.delijn.be/stops/106467", "https://data.delijn.be/stops/107043"], ["https://data.delijn.be/stops/400354", "https://data.delijn.be/stops/400355"], ["https://data.delijn.be/stops/104815", "https://data.delijn.be/stops/105555"], ["https://data.delijn.be/stops/402047", "https://data.delijn.be/stops/402348"], ["https://data.delijn.be/stops/504296", "https://data.delijn.be/stops/504319"], ["https://data.delijn.be/stops/400932", "https://data.delijn.be/stops/402835"], ["https://data.delijn.be/stops/505551", "https://data.delijn.be/stops/505552"], ["https://data.delijn.be/stops/506412", "https://data.delijn.be/stops/506624"], ["https://data.delijn.be/stops/200918", "https://data.delijn.be/stops/202137"], ["https://data.delijn.be/stops/104031", "https://data.delijn.be/stops/104033"], ["https://data.delijn.be/stops/206093", "https://data.delijn.be/stops/206147"], ["https://data.delijn.be/stops/505781", "https://data.delijn.be/stops/506460"], ["https://data.delijn.be/stops/208642", "https://data.delijn.be/stops/209642"], ["https://data.delijn.be/stops/505826", "https://data.delijn.be/stops/505900"], ["https://data.delijn.be/stops/107221", "https://data.delijn.be/stops/107223"], ["https://data.delijn.be/stops/107584", "https://data.delijn.be/stops/107586"], ["https://data.delijn.be/stops/105229", "https://data.delijn.be/stops/107995"], ["https://data.delijn.be/stops/307637", "https://data.delijn.be/stops/307639"], ["https://data.delijn.be/stops/200926", "https://data.delijn.be/stops/202043"], ["https://data.delijn.be/stops/200489", "https://data.delijn.be/stops/201489"], ["https://data.delijn.be/stops/300403", "https://data.delijn.be/stops/308638"], ["https://data.delijn.be/stops/202716", "https://data.delijn.be/stops/203715"], ["https://data.delijn.be/stops/504395", "https://data.delijn.be/stops/509395"], ["https://data.delijn.be/stops/501002", "https://data.delijn.be/stops/506222"], ["https://data.delijn.be/stops/400108", "https://data.delijn.be/stops/400109"], ["https://data.delijn.be/stops/503855", "https://data.delijn.be/stops/508859"], ["https://data.delijn.be/stops/200394", "https://data.delijn.be/stops/201394"], ["https://data.delijn.be/stops/209115", "https://data.delijn.be/stops/218007"], ["https://data.delijn.be/stops/106264", "https://data.delijn.be/stops/106266"], ["https://data.delijn.be/stops/101946", "https://data.delijn.be/stops/102661"], ["https://data.delijn.be/stops/101860", "https://data.delijn.be/stops/109050"], ["https://data.delijn.be/stops/502201", "https://data.delijn.be/stops/507297"], ["https://data.delijn.be/stops/501538", "https://data.delijn.be/stops/506198"], ["https://data.delijn.be/stops/406541", "https://data.delijn.be/stops/407223"], ["https://data.delijn.be/stops/307019", "https://data.delijn.be/stops/307072"], ["https://data.delijn.be/stops/502339", "https://data.delijn.be/stops/507274"], ["https://data.delijn.be/stops/204180", "https://data.delijn.be/stops/205218"], ["https://data.delijn.be/stops/507574", "https://data.delijn.be/stops/507575"], ["https://data.delijn.be/stops/207680", "https://data.delijn.be/stops/209154"], ["https://data.delijn.be/stops/202044", "https://data.delijn.be/stops/202248"], ["https://data.delijn.be/stops/406918", "https://data.delijn.be/stops/409476"], ["https://data.delijn.be/stops/402228", "https://data.delijn.be/stops/402332"], ["https://data.delijn.be/stops/408238", "https://data.delijn.be/stops/408248"], ["https://data.delijn.be/stops/504177", "https://data.delijn.be/stops/509177"], ["https://data.delijn.be/stops/109162", "https://data.delijn.be/stops/109164"], ["https://data.delijn.be/stops/109187", "https://data.delijn.be/stops/109188"], ["https://data.delijn.be/stops/208336", "https://data.delijn.be/stops/209336"], ["https://data.delijn.be/stops/200314", "https://data.delijn.be/stops/210314"], ["https://data.delijn.be/stops/206055", "https://data.delijn.be/stops/206056"], ["https://data.delijn.be/stops/103487", "https://data.delijn.be/stops/109161"], ["https://data.delijn.be/stops/408181", "https://data.delijn.be/stops/408189"], ["https://data.delijn.be/stops/403212", "https://data.delijn.be/stops/403476"], ["https://data.delijn.be/stops/503359", "https://data.delijn.be/stops/508359"], ["https://data.delijn.be/stops/101777", "https://data.delijn.be/stops/107591"], ["https://data.delijn.be/stops/304143", "https://data.delijn.be/stops/304171"], ["https://data.delijn.be/stops/301198", "https://data.delijn.be/stops/301255"], ["https://data.delijn.be/stops/302950", "https://data.delijn.be/stops/302999"], ["https://data.delijn.be/stops/200910", "https://data.delijn.be/stops/200942"], ["https://data.delijn.be/stops/304808", "https://data.delijn.be/stops/307886"], ["https://data.delijn.be/stops/302020", "https://data.delijn.be/stops/302021"], ["https://data.delijn.be/stops/200605", "https://data.delijn.be/stops/200647"], ["https://data.delijn.be/stops/408919", "https://data.delijn.be/stops/408921"], ["https://data.delijn.be/stops/504397", "https://data.delijn.be/stops/509396"], ["https://data.delijn.be/stops/202328", "https://data.delijn.be/stops/210088"], ["https://data.delijn.be/stops/206843", "https://data.delijn.be/stops/207843"], ["https://data.delijn.be/stops/504725", "https://data.delijn.be/stops/509012"], ["https://data.delijn.be/stops/300062", "https://data.delijn.be/stops/306066"], ["https://data.delijn.be/stops/202266", "https://data.delijn.be/stops/203266"], ["https://data.delijn.be/stops/408719", "https://data.delijn.be/stops/408728"], ["https://data.delijn.be/stops/508996", "https://data.delijn.be/stops/509592"], ["https://data.delijn.be/stops/505256", "https://data.delijn.be/stops/505809"], ["https://data.delijn.be/stops/105803", "https://data.delijn.be/stops/305788"], ["https://data.delijn.be/stops/202639", "https://data.delijn.be/stops/203639"], ["https://data.delijn.be/stops/206979", "https://data.delijn.be/stops/207979"], ["https://data.delijn.be/stops/504222", "https://data.delijn.be/stops/504604"], ["https://data.delijn.be/stops/206742", "https://data.delijn.be/stops/206983"], ["https://data.delijn.be/stops/503516", "https://data.delijn.be/stops/505949"], ["https://data.delijn.be/stops/109259", "https://data.delijn.be/stops/109260"], ["https://data.delijn.be/stops/503144", "https://data.delijn.be/stops/503988"], ["https://data.delijn.be/stops/404478", "https://data.delijn.be/stops/406763"], ["https://data.delijn.be/stops/106736", "https://data.delijn.be/stops/107196"], ["https://data.delijn.be/stops/500924", "https://data.delijn.be/stops/503179"], ["https://data.delijn.be/stops/105724", "https://data.delijn.be/stops/105727"], ["https://data.delijn.be/stops/109263", "https://data.delijn.be/stops/109615"], ["https://data.delijn.be/stops/503312", "https://data.delijn.be/stops/508311"], ["https://data.delijn.be/stops/406718", "https://data.delijn.be/stops/408284"], ["https://data.delijn.be/stops/302779", "https://data.delijn.be/stops/302780"], ["https://data.delijn.be/stops/302652", "https://data.delijn.be/stops/302653"], ["https://data.delijn.be/stops/102584", "https://data.delijn.be/stops/109108"], ["https://data.delijn.be/stops/204694", "https://data.delijn.be/stops/205702"], ["https://data.delijn.be/stops/200103", "https://data.delijn.be/stops/200985"], ["https://data.delijn.be/stops/405736", "https://data.delijn.be/stops/405739"], ["https://data.delijn.be/stops/106136", "https://data.delijn.be/stops/106138"], ["https://data.delijn.be/stops/405368", "https://data.delijn.be/stops/405369"], ["https://data.delijn.be/stops/203450", "https://data.delijn.be/stops/209450"], ["https://data.delijn.be/stops/307336", "https://data.delijn.be/stops/307337"], ["https://data.delijn.be/stops/400092", "https://data.delijn.be/stops/409145"], ["https://data.delijn.be/stops/505418", "https://data.delijn.be/stops/507344"], ["https://data.delijn.be/stops/105140", "https://data.delijn.be/stops/105755"], ["https://data.delijn.be/stops/502564", "https://data.delijn.be/stops/505700"], ["https://data.delijn.be/stops/106104", "https://data.delijn.be/stops/106122"], ["https://data.delijn.be/stops/403929", "https://data.delijn.be/stops/405943"], ["https://data.delijn.be/stops/207537", "https://data.delijn.be/stops/209689"], ["https://data.delijn.be/stops/209573", "https://data.delijn.be/stops/307590"], ["https://data.delijn.be/stops/503074", "https://data.delijn.be/stops/508069"], ["https://data.delijn.be/stops/200897", "https://data.delijn.be/stops/203052"], ["https://data.delijn.be/stops/208803", "https://data.delijn.be/stops/208806"], ["https://data.delijn.be/stops/104093", "https://data.delijn.be/stops/107712"], ["https://data.delijn.be/stops/302584", "https://data.delijn.be/stops/302600"], ["https://data.delijn.be/stops/502004", "https://data.delijn.be/stops/505586"], ["https://data.delijn.be/stops/300128", "https://data.delijn.be/stops/300147"], ["https://data.delijn.be/stops/208008", "https://data.delijn.be/stops/209007"], ["https://data.delijn.be/stops/103249", "https://data.delijn.be/stops/108120"], ["https://data.delijn.be/stops/204056", "https://data.delijn.be/stops/204703"], ["https://data.delijn.be/stops/504653", "https://data.delijn.be/stops/504772"], ["https://data.delijn.be/stops/301324", "https://data.delijn.be/stops/301325"], ["https://data.delijn.be/stops/408313", "https://data.delijn.be/stops/409825"], ["https://data.delijn.be/stops/103334", "https://data.delijn.be/stops/106469"], ["https://data.delijn.be/stops/204516", "https://data.delijn.be/stops/205044"], ["https://data.delijn.be/stops/307033", "https://data.delijn.be/stops/307034"], ["https://data.delijn.be/stops/208203", "https://data.delijn.be/stops/208204"], ["https://data.delijn.be/stops/501662", "https://data.delijn.be/stops/501674"], ["https://data.delijn.be/stops/301107", "https://data.delijn.be/stops/301108"], ["https://data.delijn.be/stops/406952", "https://data.delijn.be/stops/409483"], ["https://data.delijn.be/stops/109786", "https://data.delijn.be/stops/109787"], ["https://data.delijn.be/stops/200490", "https://data.delijn.be/stops/203452"], ["https://data.delijn.be/stops/108323", "https://data.delijn.be/stops/109304"], ["https://data.delijn.be/stops/502020", "https://data.delijn.be/stops/507020"], ["https://data.delijn.be/stops/405078", "https://data.delijn.be/stops/405079"], ["https://data.delijn.be/stops/202391", "https://data.delijn.be/stops/203391"], ["https://data.delijn.be/stops/403399", "https://data.delijn.be/stops/404978"], ["https://data.delijn.be/stops/300835", "https://data.delijn.be/stops/302286"], ["https://data.delijn.be/stops/500022", "https://data.delijn.be/stops/506402"], ["https://data.delijn.be/stops/308264", "https://data.delijn.be/stops/308265"], ["https://data.delijn.be/stops/105684", "https://data.delijn.be/stops/105687"], ["https://data.delijn.be/stops/206196", "https://data.delijn.be/stops/207856"], ["https://data.delijn.be/stops/303629", "https://data.delijn.be/stops/306002"], ["https://data.delijn.be/stops/205116", "https://data.delijn.be/stops/205117"], ["https://data.delijn.be/stops/502106", "https://data.delijn.be/stops/502142"], ["https://data.delijn.be/stops/206945", "https://data.delijn.be/stops/208552"], ["https://data.delijn.be/stops/300208", "https://data.delijn.be/stops/300269"], ["https://data.delijn.be/stops/507485", "https://data.delijn.be/stops/509700"], ["https://data.delijn.be/stops/301358", "https://data.delijn.be/stops/308952"], ["https://data.delijn.be/stops/208085", "https://data.delijn.be/stops/208535"], ["https://data.delijn.be/stops/406252", "https://data.delijn.be/stops/406255"], ["https://data.delijn.be/stops/503727", "https://data.delijn.be/stops/508715"], ["https://data.delijn.be/stops/304554", "https://data.delijn.be/stops/308848"], ["https://data.delijn.be/stops/205738", "https://data.delijn.be/stops/205757"], ["https://data.delijn.be/stops/105547", "https://data.delijn.be/stops/105548"], ["https://data.delijn.be/stops/207330", "https://data.delijn.be/stops/308799"], ["https://data.delijn.be/stops/401342", "https://data.delijn.be/stops/401460"], ["https://data.delijn.be/stops/206839", "https://data.delijn.be/stops/207588"], ["https://data.delijn.be/stops/201713", "https://data.delijn.be/stops/202444"], ["https://data.delijn.be/stops/101208", "https://data.delijn.be/stops/109652"], ["https://data.delijn.be/stops/403322", "https://data.delijn.be/stops/403327"], ["https://data.delijn.be/stops/502473", "https://data.delijn.be/stops/505665"], ["https://data.delijn.be/stops/209119", "https://data.delijn.be/stops/209236"], ["https://data.delijn.be/stops/202098", "https://data.delijn.be/stops/202099"], ["https://data.delijn.be/stops/104818", "https://data.delijn.be/stops/109094"], ["https://data.delijn.be/stops/200534", "https://data.delijn.be/stops/211528"], ["https://data.delijn.be/stops/502408", "https://data.delijn.be/stops/507400"], ["https://data.delijn.be/stops/502690", "https://data.delijn.be/stops/507471"], ["https://data.delijn.be/stops/200159", "https://data.delijn.be/stops/205922"], ["https://data.delijn.be/stops/300531", "https://data.delijn.be/stops/307845"], ["https://data.delijn.be/stops/402882", "https://data.delijn.be/stops/402884"], ["https://data.delijn.be/stops/102637", "https://data.delijn.be/stops/107858"], ["https://data.delijn.be/stops/503422", "https://data.delijn.be/stops/508426"], ["https://data.delijn.be/stops/107565", "https://data.delijn.be/stops/108205"], ["https://data.delijn.be/stops/208409", "https://data.delijn.be/stops/209408"], ["https://data.delijn.be/stops/104804", "https://data.delijn.be/stops/108556"], ["https://data.delijn.be/stops/406722", "https://data.delijn.be/stops/408649"], ["https://data.delijn.be/stops/204425", "https://data.delijn.be/stops/205425"], ["https://data.delijn.be/stops/302235", "https://data.delijn.be/stops/302249"], ["https://data.delijn.be/stops/200819", "https://data.delijn.be/stops/200846"], ["https://data.delijn.be/stops/406151", "https://data.delijn.be/stops/406155"], ["https://data.delijn.be/stops/302009", "https://data.delijn.be/stops/304631"], ["https://data.delijn.be/stops/200716", "https://data.delijn.be/stops/201716"], ["https://data.delijn.be/stops/105163", "https://data.delijn.be/stops/107428"], ["https://data.delijn.be/stops/509605", "https://data.delijn.be/stops/509607"], ["https://data.delijn.be/stops/303017", "https://data.delijn.be/stops/303018"], ["https://data.delijn.be/stops/401207", "https://data.delijn.be/stops/401346"], ["https://data.delijn.be/stops/506076", "https://data.delijn.be/stops/506777"], ["https://data.delijn.be/stops/507215", "https://data.delijn.be/stops/507219"], ["https://data.delijn.be/stops/204086", "https://data.delijn.be/stops/205086"], ["https://data.delijn.be/stops/101617", "https://data.delijn.be/stops/106574"], ["https://data.delijn.be/stops/504498", "https://data.delijn.be/stops/509498"], ["https://data.delijn.be/stops/303758", "https://data.delijn.be/stops/303785"], ["https://data.delijn.be/stops/407396", "https://data.delijn.be/stops/407400"], ["https://data.delijn.be/stops/501206", "https://data.delijn.be/stops/506213"], ["https://data.delijn.be/stops/204989", "https://data.delijn.be/stops/209568"], ["https://data.delijn.be/stops/304493", "https://data.delijn.be/stops/304502"], ["https://data.delijn.be/stops/301952", "https://data.delijn.be/stops/307894"], ["https://data.delijn.be/stops/301189", "https://data.delijn.be/stops/301198"], ["https://data.delijn.be/stops/402090", "https://data.delijn.be/stops/402268"], ["https://data.delijn.be/stops/106618", "https://data.delijn.be/stops/106620"], ["https://data.delijn.be/stops/200714", "https://data.delijn.be/stops/203123"], ["https://data.delijn.be/stops/208034", "https://data.delijn.be/stops/209051"], ["https://data.delijn.be/stops/403215", "https://data.delijn.be/stops/403385"], ["https://data.delijn.be/stops/102684", "https://data.delijn.be/stops/108166"], ["https://data.delijn.be/stops/202848", "https://data.delijn.be/stops/202933"], ["https://data.delijn.be/stops/500019", "https://data.delijn.be/stops/502046"], ["https://data.delijn.be/stops/305675", "https://data.delijn.be/stops/305677"], ["https://data.delijn.be/stops/301549", "https://data.delijn.be/stops/301558"], ["https://data.delijn.be/stops/300689", "https://data.delijn.be/stops/300735"], ["https://data.delijn.be/stops/202407", "https://data.delijn.be/stops/211032"], ["https://data.delijn.be/stops/302783", "https://data.delijn.be/stops/307045"], ["https://data.delijn.be/stops/303016", "https://data.delijn.be/stops/303066"], ["https://data.delijn.be/stops/203433", "https://data.delijn.be/stops/203435"], ["https://data.delijn.be/stops/403433", "https://data.delijn.be/stops/403434"], ["https://data.delijn.be/stops/206263", "https://data.delijn.be/stops/207264"], ["https://data.delijn.be/stops/502124", "https://data.delijn.be/stops/502430"], ["https://data.delijn.be/stops/104687", "https://data.delijn.be/stops/107366"], ["https://data.delijn.be/stops/501019", "https://data.delijn.be/stops/501715"], ["https://data.delijn.be/stops/301098", "https://data.delijn.be/stops/307199"], ["https://data.delijn.be/stops/402357", "https://data.delijn.be/stops/410149"], ["https://data.delijn.be/stops/505160", "https://data.delijn.be/stops/508836"], ["https://data.delijn.be/stops/105292", "https://data.delijn.be/stops/105294"], ["https://data.delijn.be/stops/400201", "https://data.delijn.be/stops/400208"], ["https://data.delijn.be/stops/305833", "https://data.delijn.be/stops/305835"], ["https://data.delijn.be/stops/306620", "https://data.delijn.be/stops/306760"], ["https://data.delijn.be/stops/202280", "https://data.delijn.be/stops/203281"], ["https://data.delijn.be/stops/106628", "https://data.delijn.be/stops/106630"], ["https://data.delijn.be/stops/404554", "https://data.delijn.be/stops/404555"], ["https://data.delijn.be/stops/301017", "https://data.delijn.be/stops/301018"], ["https://data.delijn.be/stops/206749", "https://data.delijn.be/stops/207734"], ["https://data.delijn.be/stops/304007", "https://data.delijn.be/stops/304048"], ["https://data.delijn.be/stops/101878", "https://data.delijn.be/stops/106076"], ["https://data.delijn.be/stops/302949", "https://data.delijn.be/stops/302950"], ["https://data.delijn.be/stops/409273", "https://data.delijn.be/stops/409291"], ["https://data.delijn.be/stops/200091", "https://data.delijn.be/stops/202896"], ["https://data.delijn.be/stops/206675", "https://data.delijn.be/stops/209424"], ["https://data.delijn.be/stops/405789", "https://data.delijn.be/stops/409692"], ["https://data.delijn.be/stops/202986", "https://data.delijn.be/stops/202988"], ["https://data.delijn.be/stops/300423", "https://data.delijn.be/stops/300424"], ["https://data.delijn.be/stops/204083", "https://data.delijn.be/stops/205202"], ["https://data.delijn.be/stops/206780", "https://data.delijn.be/stops/208564"], ["https://data.delijn.be/stops/504003", "https://data.delijn.be/stops/509316"], ["https://data.delijn.be/stops/202695", "https://data.delijn.be/stops/203677"], ["https://data.delijn.be/stops/401080", "https://data.delijn.be/stops/401085"], ["https://data.delijn.be/stops/201777", "https://data.delijn.be/stops/218011"], ["https://data.delijn.be/stops/504614", "https://data.delijn.be/stops/509614"], ["https://data.delijn.be/stops/300496", "https://data.delijn.be/stops/300498"], ["https://data.delijn.be/stops/103558", "https://data.delijn.be/stops/109405"], ["https://data.delijn.be/stops/204052", "https://data.delijn.be/stops/205053"], ["https://data.delijn.be/stops/103964", "https://data.delijn.be/stops/104899"], ["https://data.delijn.be/stops/408204", "https://data.delijn.be/stops/408206"], ["https://data.delijn.be/stops/201708", "https://data.delijn.be/stops/201710"], ["https://data.delijn.be/stops/307429", "https://data.delijn.be/stops/307431"], ["https://data.delijn.be/stops/400626", "https://data.delijn.be/stops/408229"], ["https://data.delijn.be/stops/503552", "https://data.delijn.be/stops/508552"], ["https://data.delijn.be/stops/203588", "https://data.delijn.be/stops/205243"], ["https://data.delijn.be/stops/402551", "https://data.delijn.be/stops/408447"], ["https://data.delijn.be/stops/300228", "https://data.delijn.be/stops/300229"], ["https://data.delijn.be/stops/408337", "https://data.delijn.be/stops/408344"], ["https://data.delijn.be/stops/402377", "https://data.delijn.be/stops/405569"], ["https://data.delijn.be/stops/501480", "https://data.delijn.be/stops/506299"], ["https://data.delijn.be/stops/303047", "https://data.delijn.be/stops/305505"], ["https://data.delijn.be/stops/402503", "https://data.delijn.be/stops/402529"], ["https://data.delijn.be/stops/101010", "https://data.delijn.be/stops/102869"], ["https://data.delijn.be/stops/300234", "https://data.delijn.be/stops/300235"], ["https://data.delijn.be/stops/400568", "https://data.delijn.be/stops/403172"], ["https://data.delijn.be/stops/307148", "https://data.delijn.be/stops/307473"], ["https://data.delijn.be/stops/301387", "https://data.delijn.be/stops/301390"], ["https://data.delijn.be/stops/101205", "https://data.delijn.be/stops/103615"], ["https://data.delijn.be/stops/202494", "https://data.delijn.be/stops/203117"], ["https://data.delijn.be/stops/101969", "https://data.delijn.be/stops/109301"], ["https://data.delijn.be/stops/206474", "https://data.delijn.be/stops/207474"], ["https://data.delijn.be/stops/502638", "https://data.delijn.be/stops/505701"], ["https://data.delijn.be/stops/504209", "https://data.delijn.be/stops/509073"], ["https://data.delijn.be/stops/501678", "https://data.delijn.be/stops/506163"], ["https://data.delijn.be/stops/503238", "https://data.delijn.be/stops/509762"], ["https://data.delijn.be/stops/208106", "https://data.delijn.be/stops/209106"], ["https://data.delijn.be/stops/505993", "https://data.delijn.be/stops/508826"], ["https://data.delijn.be/stops/301213", "https://data.delijn.be/stops/306715"], ["https://data.delijn.be/stops/201841", "https://data.delijn.be/stops/505797"], ["https://data.delijn.be/stops/201241", "https://data.delijn.be/stops/201592"], ["https://data.delijn.be/stops/305000", "https://data.delijn.be/stops/305001"], ["https://data.delijn.be/stops/200510", "https://data.delijn.be/stops/211510"], ["https://data.delijn.be/stops/503115", "https://data.delijn.be/stops/508115"], ["https://data.delijn.be/stops/206452", "https://data.delijn.be/stops/206455"], ["https://data.delijn.be/stops/301554", "https://data.delijn.be/stops/308087"], ["https://data.delijn.be/stops/201617", "https://data.delijn.be/stops/203924"], ["https://data.delijn.be/stops/101046", "https://data.delijn.be/stops/101047"], ["https://data.delijn.be/stops/202688", "https://data.delijn.be/stops/203040"], ["https://data.delijn.be/stops/107972", "https://data.delijn.be/stops/107974"], ["https://data.delijn.be/stops/402254", "https://data.delijn.be/stops/402320"], ["https://data.delijn.be/stops/402196", "https://data.delijn.be/stops/402197"], ["https://data.delijn.be/stops/405445", "https://data.delijn.be/stops/408540"], ["https://data.delijn.be/stops/502470", "https://data.delijn.be/stops/502481"], ["https://data.delijn.be/stops/501436", "https://data.delijn.be/stops/506436"], ["https://data.delijn.be/stops/304373", "https://data.delijn.be/stops/307501"], ["https://data.delijn.be/stops/102399", "https://data.delijn.be/stops/102448"], ["https://data.delijn.be/stops/303437", "https://data.delijn.be/stops/303451"], ["https://data.delijn.be/stops/409231", "https://data.delijn.be/stops/409232"], ["https://data.delijn.be/stops/206792", "https://data.delijn.be/stops/207626"], ["https://data.delijn.be/stops/302141", "https://data.delijn.be/stops/307676"], ["https://data.delijn.be/stops/109665", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/307638", "https://data.delijn.be/stops/307686"], ["https://data.delijn.be/stops/104047", "https://data.delijn.be/stops/108394"], ["https://data.delijn.be/stops/502317", "https://data.delijn.be/stops/507317"], ["https://data.delijn.be/stops/102022", "https://data.delijn.be/stops/109960"], ["https://data.delijn.be/stops/300074", "https://data.delijn.be/stops/300075"], ["https://data.delijn.be/stops/404805", "https://data.delijn.be/stops/404833"], ["https://data.delijn.be/stops/401225", "https://data.delijn.be/stops/401378"], ["https://data.delijn.be/stops/502501", "https://data.delijn.be/stops/507501"], ["https://data.delijn.be/stops/203731", "https://data.delijn.be/stops/203910"], ["https://data.delijn.be/stops/303511", "https://data.delijn.be/stops/303514"], ["https://data.delijn.be/stops/305012", "https://data.delijn.be/stops/305033"], ["https://data.delijn.be/stops/208817", "https://data.delijn.be/stops/209141"], ["https://data.delijn.be/stops/203153", "https://data.delijn.be/stops/203174"], ["https://data.delijn.be/stops/103210", "https://data.delijn.be/stops/106302"], ["https://data.delijn.be/stops/305222", "https://data.delijn.be/stops/305267"], ["https://data.delijn.be/stops/200002", "https://data.delijn.be/stops/201002"], ["https://data.delijn.be/stops/204828", "https://data.delijn.be/stops/205017"], ["https://data.delijn.be/stops/409677", "https://data.delijn.be/stops/409683"], ["https://data.delijn.be/stops/410073", "https://data.delijn.be/stops/410074"], ["https://data.delijn.be/stops/109794", "https://data.delijn.be/stops/109892"], ["https://data.delijn.be/stops/505202", "https://data.delijn.be/stops/509563"], ["https://data.delijn.be/stops/209781", "https://data.delijn.be/stops/209784"], ["https://data.delijn.be/stops/409426", "https://data.delijn.be/stops/409427"], ["https://data.delijn.be/stops/508776", "https://data.delijn.be/stops/508780"], ["https://data.delijn.be/stops/407640", "https://data.delijn.be/stops/407764"], ["https://data.delijn.be/stops/103586", "https://data.delijn.be/stops/104255"], ["https://data.delijn.be/stops/108313", "https://data.delijn.be/stops/108316"], ["https://data.delijn.be/stops/204240", "https://data.delijn.be/stops/205667"], ["https://data.delijn.be/stops/101545", "https://data.delijn.be/stops/103795"], ["https://data.delijn.be/stops/400095", "https://data.delijn.be/stops/400100"], ["https://data.delijn.be/stops/106345", "https://data.delijn.be/stops/109634"], ["https://data.delijn.be/stops/104891", "https://data.delijn.be/stops/104892"], ["https://data.delijn.be/stops/308238", "https://data.delijn.be/stops/308239"], ["https://data.delijn.be/stops/503884", "https://data.delijn.be/stops/508884"], ["https://data.delijn.be/stops/304088", "https://data.delijn.be/stops/304089"], ["https://data.delijn.be/stops/301645", "https://data.delijn.be/stops/302106"], ["https://data.delijn.be/stops/503515", "https://data.delijn.be/stops/508515"], ["https://data.delijn.be/stops/206721", "https://data.delijn.be/stops/207849"], ["https://data.delijn.be/stops/400097", "https://data.delijn.be/stops/401970"], ["https://data.delijn.be/stops/406577", "https://data.delijn.be/stops/406586"], ["https://data.delijn.be/stops/204375", "https://data.delijn.be/stops/205375"], ["https://data.delijn.be/stops/108907", "https://data.delijn.be/stops/108911"], ["https://data.delijn.be/stops/103721", "https://data.delijn.be/stops/108617"], ["https://data.delijn.be/stops/208066", "https://data.delijn.be/stops/209150"], ["https://data.delijn.be/stops/407133", "https://data.delijn.be/stops/407305"], ["https://data.delijn.be/stops/401787", "https://data.delijn.be/stops/406014"], ["https://data.delijn.be/stops/409254", "https://data.delijn.be/stops/409262"], ["https://data.delijn.be/stops/206593", "https://data.delijn.be/stops/206870"], ["https://data.delijn.be/stops/308259", "https://data.delijn.be/stops/308671"], ["https://data.delijn.be/stops/108302", "https://data.delijn.be/stops/108326"], ["https://data.delijn.be/stops/306878", "https://data.delijn.be/stops/306879"], ["https://data.delijn.be/stops/106022", "https://data.delijn.be/stops/106023"], ["https://data.delijn.be/stops/202744", "https://data.delijn.be/stops/202745"], ["https://data.delijn.be/stops/102532", "https://data.delijn.be/stops/405713"], ["https://data.delijn.be/stops/206634", "https://data.delijn.be/stops/207635"], ["https://data.delijn.be/stops/300447", "https://data.delijn.be/stops/300451"], ["https://data.delijn.be/stops/105064", "https://data.delijn.be/stops/107412"], ["https://data.delijn.be/stops/500016", "https://data.delijn.be/stops/502450"], ["https://data.delijn.be/stops/400705", "https://data.delijn.be/stops/404374"], ["https://data.delijn.be/stops/101209", "https://data.delijn.be/stops/102748"], ["https://data.delijn.be/stops/505607", "https://data.delijn.be/stops/505615"], ["https://data.delijn.be/stops/300314", "https://data.delijn.be/stops/307976"], ["https://data.delijn.be/stops/504243", "https://data.delijn.be/stops/504249"], ["https://data.delijn.be/stops/107016", "https://data.delijn.be/stops/107112"], ["https://data.delijn.be/stops/104341", "https://data.delijn.be/stops/104343"], ["https://data.delijn.be/stops/509332", "https://data.delijn.be/stops/509337"], ["https://data.delijn.be/stops/401838", "https://data.delijn.be/stops/406031"], ["https://data.delijn.be/stops/107562", "https://data.delijn.be/stops/107563"], ["https://data.delijn.be/stops/300305", "https://data.delijn.be/stops/306248"], ["https://data.delijn.be/stops/504447", "https://data.delijn.be/stops/509447"], ["https://data.delijn.be/stops/305086", "https://data.delijn.be/stops/306955"], ["https://data.delijn.be/stops/202123", "https://data.delijn.be/stops/203123"], ["https://data.delijn.be/stops/307646", "https://data.delijn.be/stops/307689"], ["https://data.delijn.be/stops/405953", "https://data.delijn.be/stops/405955"], ["https://data.delijn.be/stops/200764", "https://data.delijn.be/stops/209381"], ["https://data.delijn.be/stops/204302", "https://data.delijn.be/stops/205705"], ["https://data.delijn.be/stops/303288", "https://data.delijn.be/stops/303300"], ["https://data.delijn.be/stops/106102", "https://data.delijn.be/stops/106157"], ["https://data.delijn.be/stops/304168", "https://data.delijn.be/stops/307539"], ["https://data.delijn.be/stops/200643", "https://data.delijn.be/stops/203777"], ["https://data.delijn.be/stops/200530", "https://data.delijn.be/stops/210091"], ["https://data.delijn.be/stops/103976", "https://data.delijn.be/stops/108355"], ["https://data.delijn.be/stops/502725", "https://data.delijn.be/stops/507725"], ["https://data.delijn.be/stops/403833", "https://data.delijn.be/stops/405636"], ["https://data.delijn.be/stops/101823", "https://data.delijn.be/stops/101824"], ["https://data.delijn.be/stops/201399", "https://data.delijn.be/stops/202361"], ["https://data.delijn.be/stops/300672", "https://data.delijn.be/stops/300675"], ["https://data.delijn.be/stops/103332", "https://data.delijn.be/stops/103333"], ["https://data.delijn.be/stops/303295", "https://data.delijn.be/stops/303296"], ["https://data.delijn.be/stops/206563", "https://data.delijn.be/stops/209125"], ["https://data.delijn.be/stops/303476", "https://data.delijn.be/stops/308069"], ["https://data.delijn.be/stops/405527", "https://data.delijn.be/stops/408130"], ["https://data.delijn.be/stops/302086", "https://data.delijn.be/stops/302089"], ["https://data.delijn.be/stops/401045", "https://data.delijn.be/stops/409816"], ["https://data.delijn.be/stops/505224", "https://data.delijn.be/stops/505424"], ["https://data.delijn.be/stops/205363", "https://data.delijn.be/stops/205686"], ["https://data.delijn.be/stops/203901", "https://data.delijn.be/stops/219953"], ["https://data.delijn.be/stops/410222", "https://data.delijn.be/stops/410293"], ["https://data.delijn.be/stops/407445", "https://data.delijn.be/stops/410254"], ["https://data.delijn.be/stops/202869", "https://data.delijn.be/stops/206938"], ["https://data.delijn.be/stops/201200", "https://data.delijn.be/stops/210128"], ["https://data.delijn.be/stops/306721", "https://data.delijn.be/stops/306724"], ["https://data.delijn.be/stops/202936", "https://data.delijn.be/stops/203936"], ["https://data.delijn.be/stops/308636", "https://data.delijn.be/stops/308934"], ["https://data.delijn.be/stops/206635", "https://data.delijn.be/stops/207635"], ["https://data.delijn.be/stops/409737", "https://data.delijn.be/stops/409739"], ["https://data.delijn.be/stops/503481", "https://data.delijn.be/stops/508488"], ["https://data.delijn.be/stops/101865", "https://data.delijn.be/stops/102565"], ["https://data.delijn.be/stops/202499", "https://data.delijn.be/stops/203499"], ["https://data.delijn.be/stops/405034", "https://data.delijn.be/stops/408259"], ["https://data.delijn.be/stops/509487", "https://data.delijn.be/stops/509488"], ["https://data.delijn.be/stops/404027", "https://data.delijn.be/stops/308749"], ["https://data.delijn.be/stops/105558", "https://data.delijn.be/stops/106034"], ["https://data.delijn.be/stops/404510", "https://data.delijn.be/stops/408163"], ["https://data.delijn.be/stops/203911", "https://data.delijn.be/stops/203917"], ["https://data.delijn.be/stops/103136", "https://data.delijn.be/stops/103140"], ["https://data.delijn.be/stops/400584", "https://data.delijn.be/stops/404294"], ["https://data.delijn.be/stops/102541", "https://data.delijn.be/stops/405103"], ["https://data.delijn.be/stops/108244", "https://data.delijn.be/stops/108248"], ["https://data.delijn.be/stops/106158", "https://data.delijn.be/stops/106444"], ["https://data.delijn.be/stops/201033", "https://data.delijn.be/stops/201446"], ["https://data.delijn.be/stops/501640", "https://data.delijn.be/stops/506148"], ["https://data.delijn.be/stops/102991", "https://data.delijn.be/stops/105602"], ["https://data.delijn.be/stops/504531", "https://data.delijn.be/stops/505372"], ["https://data.delijn.be/stops/401048", "https://data.delijn.be/stops/401131"], ["https://data.delijn.be/stops/204719", "https://data.delijn.be/stops/205719"], ["https://data.delijn.be/stops/102859", "https://data.delijn.be/stops/204627"], ["https://data.delijn.be/stops/403256", "https://data.delijn.be/stops/403872"], ["https://data.delijn.be/stops/501046", "https://data.delijn.be/stops/505030"], ["https://data.delijn.be/stops/400421", "https://data.delijn.be/stops/407928"], ["https://data.delijn.be/stops/101079", "https://data.delijn.be/stops/107153"], ["https://data.delijn.be/stops/208326", "https://data.delijn.be/stops/209309"], ["https://data.delijn.be/stops/407997", "https://data.delijn.be/stops/408020"], ["https://data.delijn.be/stops/205126", "https://data.delijn.be/stops/205138"], ["https://data.delijn.be/stops/106335", "https://data.delijn.be/stops/106338"], ["https://data.delijn.be/stops/202014", "https://data.delijn.be/stops/203014"], ["https://data.delijn.be/stops/404674", "https://data.delijn.be/stops/410138"], ["https://data.delijn.be/stops/303149", "https://data.delijn.be/stops/308661"], ["https://data.delijn.be/stops/203430", "https://data.delijn.be/stops/203431"], ["https://data.delijn.be/stops/308428", "https://data.delijn.be/stops/308429"], ["https://data.delijn.be/stops/504804", "https://data.delijn.be/stops/504805"], ["https://data.delijn.be/stops/106273", "https://data.delijn.be/stops/106275"], ["https://data.delijn.be/stops/207420", "https://data.delijn.be/stops/306732"], ["https://data.delijn.be/stops/203719", "https://data.delijn.be/stops/208333"], ["https://data.delijn.be/stops/200154", "https://data.delijn.be/stops/203359"], ["https://data.delijn.be/stops/405703", "https://data.delijn.be/stops/405706"], ["https://data.delijn.be/stops/104355", "https://data.delijn.be/stops/104365"], ["https://data.delijn.be/stops/500025", "https://data.delijn.be/stops/502478"], ["https://data.delijn.be/stops/403038", "https://data.delijn.be/stops/403257"], ["https://data.delijn.be/stops/304768", "https://data.delijn.be/stops/304771"], ["https://data.delijn.be/stops/204726", "https://data.delijn.be/stops/205726"], ["https://data.delijn.be/stops/204149", "https://data.delijn.be/stops/205581"], ["https://data.delijn.be/stops/307626", "https://data.delijn.be/stops/308261"], ["https://data.delijn.be/stops/501292", "https://data.delijn.be/stops/506292"], ["https://data.delijn.be/stops/204066", "https://data.delijn.be/stops/204098"], ["https://data.delijn.be/stops/504132", "https://data.delijn.be/stops/509257"], ["https://data.delijn.be/stops/409366", "https://data.delijn.be/stops/409501"], ["https://data.delijn.be/stops/400264", "https://data.delijn.be/stops/407487"], ["https://data.delijn.be/stops/205423", "https://data.delijn.be/stops/205765"], ["https://data.delijn.be/stops/301393", "https://data.delijn.be/stops/306137"], ["https://data.delijn.be/stops/405434", "https://data.delijn.be/stops/409293"], ["https://data.delijn.be/stops/304188", "https://data.delijn.be/stops/308876"], ["https://data.delijn.be/stops/501694", "https://data.delijn.be/stops/502586"], ["https://data.delijn.be/stops/501335", "https://data.delijn.be/stops/506357"], ["https://data.delijn.be/stops/106341", "https://data.delijn.be/stops/106342"], ["https://data.delijn.be/stops/506148", "https://data.delijn.be/stops/506149"], ["https://data.delijn.be/stops/207656", "https://data.delijn.be/stops/207657"], ["https://data.delijn.be/stops/206212", "https://data.delijn.be/stops/206213"], ["https://data.delijn.be/stops/404476", "https://data.delijn.be/stops/404481"], ["https://data.delijn.be/stops/102479", "https://data.delijn.be/stops/400179"], ["https://data.delijn.be/stops/106659", "https://data.delijn.be/stops/106661"], ["https://data.delijn.be/stops/104060", "https://data.delijn.be/stops/109709"], ["https://data.delijn.be/stops/503054", "https://data.delijn.be/stops/509846"], ["https://data.delijn.be/stops/409053", "https://data.delijn.be/stops/409066"], ["https://data.delijn.be/stops/409255", "https://data.delijn.be/stops/409273"], ["https://data.delijn.be/stops/101995", "https://data.delijn.be/stops/103550"], ["https://data.delijn.be/stops/400035", "https://data.delijn.be/stops/400315"], ["https://data.delijn.be/stops/305049", "https://data.delijn.be/stops/305084"], ["https://data.delijn.be/stops/108508", "https://data.delijn.be/stops/304920"], ["https://data.delijn.be/stops/107287", "https://data.delijn.be/stops/107291"], ["https://data.delijn.be/stops/300726", "https://data.delijn.be/stops/300736"], ["https://data.delijn.be/stops/101632", "https://data.delijn.be/stops/104343"], ["https://data.delijn.be/stops/207337", "https://data.delijn.be/stops/207741"], ["https://data.delijn.be/stops/204692", "https://data.delijn.be/stops/205099"], ["https://data.delijn.be/stops/200223", "https://data.delijn.be/stops/201137"], ["https://data.delijn.be/stops/201975", "https://data.delijn.be/stops/209846"], ["https://data.delijn.be/stops/501452", "https://data.delijn.be/stops/506448"], ["https://data.delijn.be/stops/307227", "https://data.delijn.be/stops/307912"], ["https://data.delijn.be/stops/406206", "https://data.delijn.be/stops/406269"], ["https://data.delijn.be/stops/107058", "https://data.delijn.be/stops/108226"], ["https://data.delijn.be/stops/408539", "https://data.delijn.be/stops/408688"], ["https://data.delijn.be/stops/203092", "https://data.delijn.be/stops/203093"], ["https://data.delijn.be/stops/107607", "https://data.delijn.be/stops/107726"], ["https://data.delijn.be/stops/206876", "https://data.delijn.be/stops/207079"], ["https://data.delijn.be/stops/303461", "https://data.delijn.be/stops/303462"], ["https://data.delijn.be/stops/105691", "https://data.delijn.be/stops/105692"], ["https://data.delijn.be/stops/201070", "https://data.delijn.be/stops/208849"], ["https://data.delijn.be/stops/507645", "https://data.delijn.be/stops/507646"], ["https://data.delijn.be/stops/106382", "https://data.delijn.be/stops/106385"], ["https://data.delijn.be/stops/200734", "https://data.delijn.be/stops/215018"], ["https://data.delijn.be/stops/401820", "https://data.delijn.be/stops/406893"], ["https://data.delijn.be/stops/104509", "https://data.delijn.be/stops/107799"], ["https://data.delijn.be/stops/301429", "https://data.delijn.be/stops/301437"], ["https://data.delijn.be/stops/407371", "https://data.delijn.be/stops/407393"], ["https://data.delijn.be/stops/201903", "https://data.delijn.be/stops/209852"], ["https://data.delijn.be/stops/201186", "https://data.delijn.be/stops/201195"], ["https://data.delijn.be/stops/101203", "https://data.delijn.be/stops/205098"], ["https://data.delijn.be/stops/500958", "https://data.delijn.be/stops/503289"], ["https://data.delijn.be/stops/103013", "https://data.delijn.be/stops/109022"], ["https://data.delijn.be/stops/407427", "https://data.delijn.be/stops/409873"], ["https://data.delijn.be/stops/102884", "https://data.delijn.be/stops/102893"], ["https://data.delijn.be/stops/203530", "https://data.delijn.be/stops/203965"], ["https://data.delijn.be/stops/107320", "https://data.delijn.be/stops/108815"], ["https://data.delijn.be/stops/308158", "https://data.delijn.be/stops/308159"], ["https://data.delijn.be/stops/304759", "https://data.delijn.be/stops/305250"], ["https://data.delijn.be/stops/201799", "https://data.delijn.be/stops/203124"], ["https://data.delijn.be/stops/102313", "https://data.delijn.be/stops/103377"], ["https://data.delijn.be/stops/304033", "https://data.delijn.be/stops/306375"], ["https://data.delijn.be/stops/207423", "https://data.delijn.be/stops/306078"], ["https://data.delijn.be/stops/402097", "https://data.delijn.be/stops/402300"], ["https://data.delijn.be/stops/205509", "https://data.delijn.be/stops/205510"], ["https://data.delijn.be/stops/200979", "https://data.delijn.be/stops/210314"], ["https://data.delijn.be/stops/206194", "https://data.delijn.be/stops/206222"], ["https://data.delijn.be/stops/200425", "https://data.delijn.be/stops/202011"], ["https://data.delijn.be/stops/406804", "https://data.delijn.be/stops/410100"], ["https://data.delijn.be/stops/302567", "https://data.delijn.be/stops/302568"], ["https://data.delijn.be/stops/303459", "https://data.delijn.be/stops/303481"], ["https://data.delijn.be/stops/300687", "https://data.delijn.be/stops/306935"], ["https://data.delijn.be/stops/200673", "https://data.delijn.be/stops/205997"], ["https://data.delijn.be/stops/106081", "https://data.delijn.be/stops/106082"], ["https://data.delijn.be/stops/305253", "https://data.delijn.be/stops/305268"], ["https://data.delijn.be/stops/301963", "https://data.delijn.be/stops/301964"], ["https://data.delijn.be/stops/504445", "https://data.delijn.be/stops/509445"], ["https://data.delijn.be/stops/106052", "https://data.delijn.be/stops/106057"], ["https://data.delijn.be/stops/206212", "https://data.delijn.be/stops/207213"], ["https://data.delijn.be/stops/505998", "https://data.delijn.be/stops/509430"], ["https://data.delijn.be/stops/508046", "https://data.delijn.be/stops/508047"], ["https://data.delijn.be/stops/104418", "https://data.delijn.be/stops/204450"], ["https://data.delijn.be/stops/504439", "https://data.delijn.be/stops/504445"], ["https://data.delijn.be/stops/204388", "https://data.delijn.be/stops/204418"], ["https://data.delijn.be/stops/305171", "https://data.delijn.be/stops/306880"], ["https://data.delijn.be/stops/508095", "https://data.delijn.be/stops/508974"], ["https://data.delijn.be/stops/103575", "https://data.delijn.be/stops/103585"], ["https://data.delijn.be/stops/505091", "https://data.delijn.be/stops/505092"], ["https://data.delijn.be/stops/300085", "https://data.delijn.be/stops/306812"], ["https://data.delijn.be/stops/101942", "https://data.delijn.be/stops/108794"], ["https://data.delijn.be/stops/103659", "https://data.delijn.be/stops/106322"], ["https://data.delijn.be/stops/202877", "https://data.delijn.be/stops/208534"], ["https://data.delijn.be/stops/301831", "https://data.delijn.be/stops/301845"], ["https://data.delijn.be/stops/101811", "https://data.delijn.be/stops/104687"], ["https://data.delijn.be/stops/407482", "https://data.delijn.be/stops/407483"], ["https://data.delijn.be/stops/408271", "https://data.delijn.be/stops/408374"], ["https://data.delijn.be/stops/200802", "https://data.delijn.be/stops/211852"], ["https://data.delijn.be/stops/500928", "https://data.delijn.be/stops/505401"], ["https://data.delijn.be/stops/401842", "https://data.delijn.be/stops/401855"], ["https://data.delijn.be/stops/307632", "https://data.delijn.be/stops/307833"], ["https://data.delijn.be/stops/206771", "https://data.delijn.be/stops/206784"], ["https://data.delijn.be/stops/400981", "https://data.delijn.be/stops/406702"], ["https://data.delijn.be/stops/504578", "https://data.delijn.be/stops/509274"], ["https://data.delijn.be/stops/501303", "https://data.delijn.be/stops/501346"], ["https://data.delijn.be/stops/102928", "https://data.delijn.be/stops/106240"], ["https://data.delijn.be/stops/108553", "https://data.delijn.be/stops/109593"], ["https://data.delijn.be/stops/203843", "https://data.delijn.be/stops/208426"], ["https://data.delijn.be/stops/204530", "https://data.delijn.be/stops/204532"], ["https://data.delijn.be/stops/107790", "https://data.delijn.be/stops/107880"], ["https://data.delijn.be/stops/107182", "https://data.delijn.be/stops/107184"], ["https://data.delijn.be/stops/304069", "https://data.delijn.be/stops/304107"], ["https://data.delijn.be/stops/504497", "https://data.delijn.be/stops/509490"], ["https://data.delijn.be/stops/502277", "https://data.delijn.be/stops/507277"], ["https://data.delijn.be/stops/101849", "https://data.delijn.be/stops/106850"], ["https://data.delijn.be/stops/504640", "https://data.delijn.be/stops/509640"], ["https://data.delijn.be/stops/205197", "https://data.delijn.be/stops/205198"], ["https://data.delijn.be/stops/204119", "https://data.delijn.be/stops/204689"], ["https://data.delijn.be/stops/205390", "https://data.delijn.be/stops/205391"], ["https://data.delijn.be/stops/200824", "https://data.delijn.be/stops/200866"], ["https://data.delijn.be/stops/502182", "https://data.delijn.be/stops/509975"], ["https://data.delijn.be/stops/409360", "https://data.delijn.be/stops/409398"], ["https://data.delijn.be/stops/103712", "https://data.delijn.be/stops/103753"], ["https://data.delijn.be/stops/208383", "https://data.delijn.be/stops/209384"], ["https://data.delijn.be/stops/505061", "https://data.delijn.be/stops/505063"], ["https://data.delijn.be/stops/400073", "https://data.delijn.be/stops/400120"], ["https://data.delijn.be/stops/302462", "https://data.delijn.be/stops/302463"], ["https://data.delijn.be/stops/308504", "https://data.delijn.be/stops/308505"], ["https://data.delijn.be/stops/501112", "https://data.delijn.be/stops/501503"], ["https://data.delijn.be/stops/204305", "https://data.delijn.be/stops/205352"], ["https://data.delijn.be/stops/304807", "https://data.delijn.be/stops/309671"], ["https://data.delijn.be/stops/404383", "https://data.delijn.be/stops/404396"], ["https://data.delijn.be/stops/407227", "https://data.delijn.be/stops/407488"], ["https://data.delijn.be/stops/503409", "https://data.delijn.be/stops/508409"], ["https://data.delijn.be/stops/202787", "https://data.delijn.be/stops/203787"], ["https://data.delijn.be/stops/505515", "https://data.delijn.be/stops/509780"], ["https://data.delijn.be/stops/405443", "https://data.delijn.be/stops/408704"], ["https://data.delijn.be/stops/300368", "https://data.delijn.be/stops/300369"], ["https://data.delijn.be/stops/206885", "https://data.delijn.be/stops/207914"], ["https://data.delijn.be/stops/305132", "https://data.delijn.be/stops/305133"], ["https://data.delijn.be/stops/105059", "https://data.delijn.be/stops/105825"], ["https://data.delijn.be/stops/303066", "https://data.delijn.be/stops/303182"], ["https://data.delijn.be/stops/404709", "https://data.delijn.be/stops/404728"], ["https://data.delijn.be/stops/204123", "https://data.delijn.be/stops/205123"], ["https://data.delijn.be/stops/202169", "https://data.delijn.be/stops/202640"], ["https://data.delijn.be/stops/202087", "https://data.delijn.be/stops/202089"], ["https://data.delijn.be/stops/206065", "https://data.delijn.be/stops/206066"], ["https://data.delijn.be/stops/306970", "https://data.delijn.be/stops/307080"], ["https://data.delijn.be/stops/405831", "https://data.delijn.be/stops/409695"], ["https://data.delijn.be/stops/202855", "https://data.delijn.be/stops/203855"], ["https://data.delijn.be/stops/400031", "https://data.delijn.be/stops/407101"], ["https://data.delijn.be/stops/208437", "https://data.delijn.be/stops/208438"], ["https://data.delijn.be/stops/200160", "https://data.delijn.be/stops/201161"], ["https://data.delijn.be/stops/401300", "https://data.delijn.be/stops/401306"], ["https://data.delijn.be/stops/200620", "https://data.delijn.be/stops/211118"], ["https://data.delijn.be/stops/108417", "https://data.delijn.be/stops/108421"], ["https://data.delijn.be/stops/200401", "https://data.delijn.be/stops/202363"], ["https://data.delijn.be/stops/206030", "https://data.delijn.be/stops/207029"], ["https://data.delijn.be/stops/504791", "https://data.delijn.be/stops/508513"], ["https://data.delijn.be/stops/508898", "https://data.delijn.be/stops/509140"], ["https://data.delijn.be/stops/202208", "https://data.delijn.be/stops/202770"], ["https://data.delijn.be/stops/202694", "https://data.delijn.be/stops/211023"], ["https://data.delijn.be/stops/302565", "https://data.delijn.be/stops/302589"], ["https://data.delijn.be/stops/208168", "https://data.delijn.be/stops/208424"], ["https://data.delijn.be/stops/405158", "https://data.delijn.be/stops/409375"], ["https://data.delijn.be/stops/205071", "https://data.delijn.be/stops/205072"], ["https://data.delijn.be/stops/503369", "https://data.delijn.be/stops/510025"], ["https://data.delijn.be/stops/107696", "https://data.delijn.be/stops/107719"], ["https://data.delijn.be/stops/508044", "https://data.delijn.be/stops/509887"], ["https://data.delijn.be/stops/302110", "https://data.delijn.be/stops/304140"], ["https://data.delijn.be/stops/108840", "https://data.delijn.be/stops/108853"], ["https://data.delijn.be/stops/408422", "https://data.delijn.be/stops/408491"], ["https://data.delijn.be/stops/504042", "https://data.delijn.be/stops/509042"], ["https://data.delijn.be/stops/300516", "https://data.delijn.be/stops/300533"], ["https://data.delijn.be/stops/103988", "https://data.delijn.be/stops/109459"], ["https://data.delijn.be/stops/308730", "https://data.delijn.be/stops/308734"], ["https://data.delijn.be/stops/207972", "https://data.delijn.be/stops/207990"], ["https://data.delijn.be/stops/400816", "https://data.delijn.be/stops/409646"], ["https://data.delijn.be/stops/302474", "https://data.delijn.be/stops/302476"], ["https://data.delijn.be/stops/101836", "https://data.delijn.be/stops/102632"], ["https://data.delijn.be/stops/402374", "https://data.delijn.be/stops/402375"], ["https://data.delijn.be/stops/105033", "https://data.delijn.be/stops/106710"], ["https://data.delijn.be/stops/200843", "https://data.delijn.be/stops/200889"], ["https://data.delijn.be/stops/504695", "https://data.delijn.be/stops/508854"], ["https://data.delijn.be/stops/306119", "https://data.delijn.be/stops/306121"], ["https://data.delijn.be/stops/407966", "https://data.delijn.be/stops/407969"], ["https://data.delijn.be/stops/200225", "https://data.delijn.be/stops/200445"], ["https://data.delijn.be/stops/101914", "https://data.delijn.be/stops/103208"], ["https://data.delijn.be/stops/300329", "https://data.delijn.be/stops/300335"], ["https://data.delijn.be/stops/207737", "https://data.delijn.be/stops/207861"], ["https://data.delijn.be/stops/204484", "https://data.delijn.be/stops/205735"], ["https://data.delijn.be/stops/201339", "https://data.delijn.be/stops/211085"], ["https://data.delijn.be/stops/302934", "https://data.delijn.be/stops/303044"], ["https://data.delijn.be/stops/108337", "https://data.delijn.be/stops/108339"], ["https://data.delijn.be/stops/200598", "https://data.delijn.be/stops/201594"], ["https://data.delijn.be/stops/300669", "https://data.delijn.be/stops/306744"], ["https://data.delijn.be/stops/101935", "https://data.delijn.be/stops/105830"], ["https://data.delijn.be/stops/201808", "https://data.delijn.be/stops/209262"], ["https://data.delijn.be/stops/206119", "https://data.delijn.be/stops/207118"], ["https://data.delijn.be/stops/206510", "https://data.delijn.be/stops/209666"], ["https://data.delijn.be/stops/206793", "https://data.delijn.be/stops/209040"], ["https://data.delijn.be/stops/504465", "https://data.delijn.be/stops/504574"], ["https://data.delijn.be/stops/502374", "https://data.delijn.be/stops/507280"], ["https://data.delijn.be/stops/504779", "https://data.delijn.be/stops/504981"], ["https://data.delijn.be/stops/301536", "https://data.delijn.be/stops/301552"], ["https://data.delijn.be/stops/503182", "https://data.delijn.be/stops/508182"], ["https://data.delijn.be/stops/206576", "https://data.delijn.be/stops/207576"], ["https://data.delijn.be/stops/401847", "https://data.delijn.be/stops/401853"], ["https://data.delijn.be/stops/501606", "https://data.delijn.be/stops/501715"], ["https://data.delijn.be/stops/301096", "https://data.delijn.be/stops/306668"], ["https://data.delijn.be/stops/405247", "https://data.delijn.be/stops/405248"], ["https://data.delijn.be/stops/305549", "https://data.delijn.be/stops/305550"], ["https://data.delijn.be/stops/109986", "https://data.delijn.be/stops/109987"], ["https://data.delijn.be/stops/501395", "https://data.delijn.be/stops/501403"], ["https://data.delijn.be/stops/202579", "https://data.delijn.be/stops/202580"], ["https://data.delijn.be/stops/302143", "https://data.delijn.be/stops/307528"], ["https://data.delijn.be/stops/301743", "https://data.delijn.be/stops/301823"], ["https://data.delijn.be/stops/207412", "https://data.delijn.be/stops/207419"], ["https://data.delijn.be/stops/102996", "https://data.delijn.be/stops/106838"], ["https://data.delijn.be/stops/101839", "https://data.delijn.be/stops/105430"], ["https://data.delijn.be/stops/404145", "https://data.delijn.be/stops/404174"], ["https://data.delijn.be/stops/101794", "https://data.delijn.be/stops/409531"], ["https://data.delijn.be/stops/304487", "https://data.delijn.be/stops/304491"], ["https://data.delijn.be/stops/202949", "https://data.delijn.be/stops/202950"], ["https://data.delijn.be/stops/207865", "https://data.delijn.be/stops/208386"], ["https://data.delijn.be/stops/208122", "https://data.delijn.be/stops/209123"], ["https://data.delijn.be/stops/301350", "https://data.delijn.be/stops/301351"], ["https://data.delijn.be/stops/404225", "https://data.delijn.be/stops/404226"], ["https://data.delijn.be/stops/407832", "https://data.delijn.be/stops/407836"], ["https://data.delijn.be/stops/504406", "https://data.delijn.be/stops/504434"], ["https://data.delijn.be/stops/304092", "https://data.delijn.be/stops/307506"], ["https://data.delijn.be/stops/308060", "https://data.delijn.be/stops/308297"], ["https://data.delijn.be/stops/507342", "https://data.delijn.be/stops/507467"], ["https://data.delijn.be/stops/503686", "https://data.delijn.be/stops/509453"], ["https://data.delijn.be/stops/409068", "https://data.delijn.be/stops/409086"], ["https://data.delijn.be/stops/305424", "https://data.delijn.be/stops/305518"], ["https://data.delijn.be/stops/206653", "https://data.delijn.be/stops/207653"], ["https://data.delijn.be/stops/300097", "https://data.delijn.be/stops/306849"], ["https://data.delijn.be/stops/407782", "https://data.delijn.be/stops/308274"], ["https://data.delijn.be/stops/109847", "https://data.delijn.be/stops/109849"], ["https://data.delijn.be/stops/201481", "https://data.delijn.be/stops/211059"], ["https://data.delijn.be/stops/301715", "https://data.delijn.be/stops/303467"], ["https://data.delijn.be/stops/401828", "https://data.delijn.be/stops/401829"], ["https://data.delijn.be/stops/202319", "https://data.delijn.be/stops/203319"], ["https://data.delijn.be/stops/507404", "https://data.delijn.be/stops/507581"], ["https://data.delijn.be/stops/103634", "https://data.delijn.be/stops/107167"], ["https://data.delijn.be/stops/101943", "https://data.delijn.be/stops/108317"], ["https://data.delijn.be/stops/303640", "https://data.delijn.be/stops/303642"], ["https://data.delijn.be/stops/405917", "https://data.delijn.be/stops/405971"], ["https://data.delijn.be/stops/401514", "https://data.delijn.be/stops/406878"], ["https://data.delijn.be/stops/209342", "https://data.delijn.be/stops/218028"], ["https://data.delijn.be/stops/403128", "https://data.delijn.be/stops/409278"], ["https://data.delijn.be/stops/406655", "https://data.delijn.be/stops/406693"], ["https://data.delijn.be/stops/109062", "https://data.delijn.be/stops/109063"], ["https://data.delijn.be/stops/107496", "https://data.delijn.be/stops/107499"], ["https://data.delijn.be/stops/302100", "https://data.delijn.be/stops/302103"], ["https://data.delijn.be/stops/300935", "https://data.delijn.be/stops/300983"], ["https://data.delijn.be/stops/200219", "https://data.delijn.be/stops/201219"], ["https://data.delijn.be/stops/206177", "https://data.delijn.be/stops/303843"], ["https://data.delijn.be/stops/406675", "https://data.delijn.be/stops/406676"], ["https://data.delijn.be/stops/306140", "https://data.delijn.be/stops/306142"], ["https://data.delijn.be/stops/104950", "https://data.delijn.be/stops/108570"], ["https://data.delijn.be/stops/104009", "https://data.delijn.be/stops/104010"], ["https://data.delijn.be/stops/507477", "https://data.delijn.be/stops/507753"], ["https://data.delijn.be/stops/101060", "https://data.delijn.be/stops/109528"], ["https://data.delijn.be/stops/401053", "https://data.delijn.be/stops/409814"], ["https://data.delijn.be/stops/202232", "https://data.delijn.be/stops/203231"], ["https://data.delijn.be/stops/208274", "https://data.delijn.be/stops/209273"], ["https://data.delijn.be/stops/305599", "https://data.delijn.be/stops/305605"], ["https://data.delijn.be/stops/405974", "https://data.delijn.be/stops/406134"], ["https://data.delijn.be/stops/407892", "https://data.delijn.be/stops/407893"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/107146"], ["https://data.delijn.be/stops/402807", "https://data.delijn.be/stops/409471"], ["https://data.delijn.be/stops/102423", "https://data.delijn.be/stops/104713"], ["https://data.delijn.be/stops/304873", "https://data.delijn.be/stops/308544"], ["https://data.delijn.be/stops/304296", "https://data.delijn.be/stops/304516"], ["https://data.delijn.be/stops/303336", "https://data.delijn.be/stops/305062"], ["https://data.delijn.be/stops/503728", "https://data.delijn.be/stops/507931"], ["https://data.delijn.be/stops/503560", "https://data.delijn.be/stops/503583"], ["https://data.delijn.be/stops/206600", "https://data.delijn.be/stops/207600"], ["https://data.delijn.be/stops/503866", "https://data.delijn.be/stops/508612"], ["https://data.delijn.be/stops/105357", "https://data.delijn.be/stops/105588"], ["https://data.delijn.be/stops/502489", "https://data.delijn.be/stops/507517"], ["https://data.delijn.be/stops/303374", "https://data.delijn.be/stops/307137"], ["https://data.delijn.be/stops/102665", "https://data.delijn.be/stops/102675"], ["https://data.delijn.be/stops/408206", "https://data.delijn.be/stops/408380"], ["https://data.delijn.be/stops/503685", "https://data.delijn.be/stops/508683"], ["https://data.delijn.be/stops/402121", "https://data.delijn.be/stops/402473"], ["https://data.delijn.be/stops/404891", "https://data.delijn.be/stops/408583"], ["https://data.delijn.be/stops/202524", "https://data.delijn.be/stops/203519"], ["https://data.delijn.be/stops/201957", "https://data.delijn.be/stops/202275"], ["https://data.delijn.be/stops/107995", "https://data.delijn.be/stops/108115"], ["https://data.delijn.be/stops/504077", "https://data.delijn.be/stops/509077"], ["https://data.delijn.be/stops/301600", "https://data.delijn.be/stops/304258"], ["https://data.delijn.be/stops/300261", "https://data.delijn.be/stops/304945"], ["https://data.delijn.be/stops/406668", "https://data.delijn.be/stops/406670"], ["https://data.delijn.be/stops/407018", "https://data.delijn.be/stops/408052"], ["https://data.delijn.be/stops/109492", "https://data.delijn.be/stops/109496"], ["https://data.delijn.be/stops/403528", "https://data.delijn.be/stops/410218"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/501212"], ["https://data.delijn.be/stops/301194", "https://data.delijn.be/stops/307614"], ["https://data.delijn.be/stops/301472", "https://data.delijn.be/stops/305663"], ["https://data.delijn.be/stops/505812", "https://data.delijn.be/stops/507344"], ["https://data.delijn.be/stops/206014", "https://data.delijn.be/stops/207386"], ["https://data.delijn.be/stops/504072", "https://data.delijn.be/stops/504851"], ["https://data.delijn.be/stops/106203", "https://data.delijn.be/stops/106301"], ["https://data.delijn.be/stops/403372", "https://data.delijn.be/stops/403388"], ["https://data.delijn.be/stops/301663", "https://data.delijn.be/stops/301674"], ["https://data.delijn.be/stops/503483", "https://data.delijn.be/stops/503484"], ["https://data.delijn.be/stops/305078", "https://data.delijn.be/stops/308927"], ["https://data.delijn.be/stops/308566", "https://data.delijn.be/stops/308567"], ["https://data.delijn.be/stops/503493", "https://data.delijn.be/stops/505137"], ["https://data.delijn.be/stops/107586", "https://data.delijn.be/stops/107719"], ["https://data.delijn.be/stops/208347", "https://data.delijn.be/stops/208785"], ["https://data.delijn.be/stops/209475", "https://data.delijn.be/stops/209476"], ["https://data.delijn.be/stops/303487", "https://data.delijn.be/stops/303488"], ["https://data.delijn.be/stops/102072", "https://data.delijn.be/stops/102073"], ["https://data.delijn.be/stops/401478", "https://data.delijn.be/stops/410182"], ["https://data.delijn.be/stops/207030", "https://data.delijn.be/stops/207730"], ["https://data.delijn.be/stops/301518", "https://data.delijn.be/stops/301524"], ["https://data.delijn.be/stops/409073", "https://data.delijn.be/stops/409147"], ["https://data.delijn.be/stops/404902", "https://data.delijn.be/stops/406722"], ["https://data.delijn.be/stops/503868", "https://data.delijn.be/stops/503871"], ["https://data.delijn.be/stops/406868", "https://data.delijn.be/stops/406871"], ["https://data.delijn.be/stops/405040", "https://data.delijn.be/stops/405045"], ["https://data.delijn.be/stops/101605", "https://data.delijn.be/stops/104565"], ["https://data.delijn.be/stops/103765", "https://data.delijn.be/stops/108755"], ["https://data.delijn.be/stops/204786", "https://data.delijn.be/stops/205124"], ["https://data.delijn.be/stops/302258", "https://data.delijn.be/stops/302259"], ["https://data.delijn.be/stops/300821", "https://data.delijn.be/stops/300836"], ["https://data.delijn.be/stops/201518", "https://data.delijn.be/stops/204924"], ["https://data.delijn.be/stops/503198", "https://data.delijn.be/stops/508198"], ["https://data.delijn.be/stops/106558", "https://data.delijn.be/stops/106559"], ["https://data.delijn.be/stops/205272", "https://data.delijn.be/stops/205646"], ["https://data.delijn.be/stops/217010", "https://data.delijn.be/stops/217011"], ["https://data.delijn.be/stops/408195", "https://data.delijn.be/stops/408441"], ["https://data.delijn.be/stops/205406", "https://data.delijn.be/stops/205413"], ["https://data.delijn.be/stops/308114", "https://data.delijn.be/stops/308115"], ["https://data.delijn.be/stops/102296", "https://data.delijn.be/stops/103084"], ["https://data.delijn.be/stops/102918", "https://data.delijn.be/stops/103270"], ["https://data.delijn.be/stops/303622", "https://data.delijn.be/stops/303623"], ["https://data.delijn.be/stops/105601", "https://data.delijn.be/stops/109737"], ["https://data.delijn.be/stops/505155", "https://data.delijn.be/stops/507073"], ["https://data.delijn.be/stops/104481", "https://data.delijn.be/stops/104482"], ["https://data.delijn.be/stops/101526", "https://data.delijn.be/stops/108798"], ["https://data.delijn.be/stops/200578", "https://data.delijn.be/stops/200579"], ["https://data.delijn.be/stops/400811", "https://data.delijn.be/stops/405666"], ["https://data.delijn.be/stops/200290", "https://data.delijn.be/stops/210048"], ["https://data.delijn.be/stops/200168", "https://data.delijn.be/stops/200720"], ["https://data.delijn.be/stops/305480", "https://data.delijn.be/stops/305858"], ["https://data.delijn.be/stops/106105", "https://data.delijn.be/stops/106106"], ["https://data.delijn.be/stops/204074", "https://data.delijn.be/stops/204075"], ["https://data.delijn.be/stops/206723", "https://data.delijn.be/stops/206724"], ["https://data.delijn.be/stops/202288", "https://data.delijn.be/stops/202289"], ["https://data.delijn.be/stops/403306", "https://data.delijn.be/stops/405640"], ["https://data.delijn.be/stops/102314", "https://data.delijn.be/stops/108145"], ["https://data.delijn.be/stops/305100", "https://data.delijn.be/stops/305105"], ["https://data.delijn.be/stops/407198", "https://data.delijn.be/stops/407385"], ["https://data.delijn.be/stops/206215", "https://data.delijn.be/stops/207215"], ["https://data.delijn.be/stops/206571", "https://data.delijn.be/stops/207573"], ["https://data.delijn.be/stops/301145", "https://data.delijn.be/stops/307695"], ["https://data.delijn.be/stops/403939", "https://data.delijn.be/stops/403998"], ["https://data.delijn.be/stops/502470", "https://data.delijn.be/stops/507481"], ["https://data.delijn.be/stops/103478", "https://data.delijn.be/stops/108927"], ["https://data.delijn.be/stops/204583", "https://data.delijn.be/stops/205154"], ["https://data.delijn.be/stops/307026", "https://data.delijn.be/stops/307571"], ["https://data.delijn.be/stops/505239", "https://data.delijn.be/stops/505900"], ["https://data.delijn.be/stops/407337", "https://data.delijn.be/stops/407632"], ["https://data.delijn.be/stops/405460", "https://data.delijn.be/stops/405655"], ["https://data.delijn.be/stops/206846", "https://data.delijn.be/stops/207845"], ["https://data.delijn.be/stops/401553", "https://data.delijn.be/stops/402034"], ["https://data.delijn.be/stops/402300", "https://data.delijn.be/stops/402367"], ["https://data.delijn.be/stops/107931", "https://data.delijn.be/stops/107932"], ["https://data.delijn.be/stops/407038", "https://data.delijn.be/stops/407040"], ["https://data.delijn.be/stops/302929", "https://data.delijn.be/stops/303998"], ["https://data.delijn.be/stops/402884", "https://data.delijn.be/stops/405536"], ["https://data.delijn.be/stops/510017", "https://data.delijn.be/stops/510020"], ["https://data.delijn.be/stops/502441", "https://data.delijn.be/stops/502749"], ["https://data.delijn.be/stops/506443", "https://data.delijn.be/stops/590334"], ["https://data.delijn.be/stops/206641", "https://data.delijn.be/stops/207641"], ["https://data.delijn.be/stops/501556", "https://data.delijn.be/stops/506635"], ["https://data.delijn.be/stops/307037", "https://data.delijn.be/stops/308832"], ["https://data.delijn.be/stops/501324", "https://data.delijn.be/stops/501358"], ["https://data.delijn.be/stops/102187", "https://data.delijn.be/stops/102754"], ["https://data.delijn.be/stops/405250", "https://data.delijn.be/stops/409645"], ["https://data.delijn.be/stops/104736", "https://data.delijn.be/stops/107337"], ["https://data.delijn.be/stops/106984", "https://data.delijn.be/stops/106985"], ["https://data.delijn.be/stops/102212", "https://data.delijn.be/stops/102213"], ["https://data.delijn.be/stops/401196", "https://data.delijn.be/stops/401239"], ["https://data.delijn.be/stops/402265", "https://data.delijn.be/stops/402484"], ["https://data.delijn.be/stops/101657", "https://data.delijn.be/stops/107847"], ["https://data.delijn.be/stops/503487", "https://data.delijn.be/stops/505427"], ["https://data.delijn.be/stops/202246", "https://data.delijn.be/stops/203247"], ["https://data.delijn.be/stops/400818", "https://data.delijn.be/stops/409641"], ["https://data.delijn.be/stops/101690", "https://data.delijn.be/stops/105766"], ["https://data.delijn.be/stops/302479", "https://data.delijn.be/stops/306814"], ["https://data.delijn.be/stops/501672", "https://data.delijn.be/stops/506673"], ["https://data.delijn.be/stops/303303", "https://data.delijn.be/stops/308737"], ["https://data.delijn.be/stops/210057", "https://data.delijn.be/stops/210061"], ["https://data.delijn.be/stops/403764", "https://data.delijn.be/stops/403772"], ["https://data.delijn.be/stops/102526", "https://data.delijn.be/stops/408203"], ["https://data.delijn.be/stops/203364", "https://data.delijn.be/stops/211849"], ["https://data.delijn.be/stops/301433", "https://data.delijn.be/stops/301442"], ["https://data.delijn.be/stops/302476", "https://data.delijn.be/stops/304875"], ["https://data.delijn.be/stops/406493", "https://data.delijn.be/stops/407513"], ["https://data.delijn.be/stops/102688", "https://data.delijn.be/stops/103980"], ["https://data.delijn.be/stops/106815", "https://data.delijn.be/stops/106843"], ["https://data.delijn.be/stops/101912", "https://data.delijn.be/stops/103208"], ["https://data.delijn.be/stops/503855", "https://data.delijn.be/stops/507944"], ["https://data.delijn.be/stops/104652", "https://data.delijn.be/stops/107978"], ["https://data.delijn.be/stops/200364", "https://data.delijn.be/stops/201985"], ["https://data.delijn.be/stops/301424", "https://data.delijn.be/stops/304868"], ["https://data.delijn.be/stops/406003", "https://data.delijn.be/stops/406111"], ["https://data.delijn.be/stops/200054", "https://data.delijn.be/stops/200478"], ["https://data.delijn.be/stops/305424", "https://data.delijn.be/stops/307831"], ["https://data.delijn.be/stops/300410", "https://data.delijn.be/stops/307491"], ["https://data.delijn.be/stops/504427", "https://data.delijn.be/stops/509426"], ["https://data.delijn.be/stops/202054", "https://data.delijn.be/stops/203055"], ["https://data.delijn.be/stops/101983", "https://data.delijn.be/stops/109014"], ["https://data.delijn.be/stops/305949", "https://data.delijn.be/stops/308259"], ["https://data.delijn.be/stops/300132", "https://data.delijn.be/stops/300134"], ["https://data.delijn.be/stops/109331", "https://data.delijn.be/stops/109333"], ["https://data.delijn.be/stops/301440", "https://data.delijn.be/stops/301661"], ["https://data.delijn.be/stops/403497", "https://data.delijn.be/stops/403498"], ["https://data.delijn.be/stops/301902", "https://data.delijn.be/stops/301903"], ["https://data.delijn.be/stops/408822", "https://data.delijn.be/stops/408831"], ["https://data.delijn.be/stops/503630", "https://data.delijn.be/stops/508620"], ["https://data.delijn.be/stops/403246", "https://data.delijn.be/stops/403531"], ["https://data.delijn.be/stops/103627", "https://data.delijn.be/stops/107737"], ["https://data.delijn.be/stops/504404", "https://data.delijn.be/stops/504835"], ["https://data.delijn.be/stops/508701", "https://data.delijn.be/stops/509938"], ["https://data.delijn.be/stops/107898", "https://data.delijn.be/stops/107901"], ["https://data.delijn.be/stops/406993", "https://data.delijn.be/stops/409036"], ["https://data.delijn.be/stops/200853", "https://data.delijn.be/stops/202324"], ["https://data.delijn.be/stops/308820", "https://data.delijn.be/stops/308937"], ["https://data.delijn.be/stops/101060", "https://data.delijn.be/stops/106853"], ["https://data.delijn.be/stops/504149", "https://data.delijn.be/stops/509191"], ["https://data.delijn.be/stops/503812", "https://data.delijn.be/stops/508805"], ["https://data.delijn.be/stops/302634", "https://data.delijn.be/stops/302644"], ["https://data.delijn.be/stops/101812", "https://data.delijn.be/stops/107974"], ["https://data.delijn.be/stops/208101", "https://data.delijn.be/stops/209101"], ["https://data.delijn.be/stops/302064", "https://data.delijn.be/stops/302065"], ["https://data.delijn.be/stops/203647", "https://data.delijn.be/stops/210045"], ["https://data.delijn.be/stops/503946", "https://data.delijn.be/stops/508159"], ["https://data.delijn.be/stops/302188", "https://data.delijn.be/stops/302192"], ["https://data.delijn.be/stops/407646", "https://data.delijn.be/stops/407719"], ["https://data.delijn.be/stops/202282", "https://data.delijn.be/stops/202633"], ["https://data.delijn.be/stops/502322", "https://data.delijn.be/stops/502334"], ["https://data.delijn.be/stops/201688", "https://data.delijn.be/stops/209642"], ["https://data.delijn.be/stops/503040", "https://data.delijn.be/stops/503043"], ["https://data.delijn.be/stops/206804", "https://data.delijn.be/stops/208347"], ["https://data.delijn.be/stops/302734", "https://data.delijn.be/stops/308597"], ["https://data.delijn.be/stops/108647", "https://data.delijn.be/stops/109790"], ["https://data.delijn.be/stops/101388", "https://data.delijn.be/stops/101828"], ["https://data.delijn.be/stops/302709", "https://data.delijn.be/stops/308861"], ["https://data.delijn.be/stops/306725", "https://data.delijn.be/stops/306726"], ["https://data.delijn.be/stops/304976", "https://data.delijn.be/stops/304977"], ["https://data.delijn.be/stops/109715", "https://data.delijn.be/stops/109716"], ["https://data.delijn.be/stops/502542", "https://data.delijn.be/stops/507541"], ["https://data.delijn.be/stops/207517", "https://data.delijn.be/stops/207598"], ["https://data.delijn.be/stops/108977", "https://data.delijn.be/stops/109462"], ["https://data.delijn.be/stops/103258", "https://data.delijn.be/stops/105730"], ["https://data.delijn.be/stops/402982", "https://data.delijn.be/stops/405594"], ["https://data.delijn.be/stops/102449", "https://data.delijn.be/stops/107981"], ["https://data.delijn.be/stops/304454", "https://data.delijn.be/stops/307695"], ["https://data.delijn.be/stops/102660", "https://data.delijn.be/stops/109796"], ["https://data.delijn.be/stops/407260", "https://data.delijn.be/stops/407273"], ["https://data.delijn.be/stops/506427", "https://data.delijn.be/stops/506431"], ["https://data.delijn.be/stops/105896", "https://data.delijn.be/stops/105901"], ["https://data.delijn.be/stops/200206", "https://data.delijn.be/stops/201206"], ["https://data.delijn.be/stops/200828", "https://data.delijn.be/stops/200831"], ["https://data.delijn.be/stops/401254", "https://data.delijn.be/stops/401255"], ["https://data.delijn.be/stops/204211", "https://data.delijn.be/stops/206312"], ["https://data.delijn.be/stops/300080", "https://data.delijn.be/stops/307343"], ["https://data.delijn.be/stops/503224", "https://data.delijn.be/stops/508222"], ["https://data.delijn.be/stops/300869", "https://data.delijn.be/stops/302232"], ["https://data.delijn.be/stops/506102", "https://data.delijn.be/stops/506367"], ["https://data.delijn.be/stops/208026", "https://data.delijn.be/stops/209404"], ["https://data.delijn.be/stops/208029", "https://data.delijn.be/stops/209029"], ["https://data.delijn.be/stops/101933", "https://data.delijn.be/stops/107741"], ["https://data.delijn.be/stops/301360", "https://data.delijn.be/stops/305530"], ["https://data.delijn.be/stops/408246", "https://data.delijn.be/stops/408247"], ["https://data.delijn.be/stops/405936", "https://data.delijn.be/stops/405998"], ["https://data.delijn.be/stops/404777", "https://data.delijn.be/stops/404786"], ["https://data.delijn.be/stops/503673", "https://data.delijn.be/stops/508223"], ["https://data.delijn.be/stops/303746", "https://data.delijn.be/stops/303747"], ["https://data.delijn.be/stops/108121", "https://data.delijn.be/stops/109659"], ["https://data.delijn.be/stops/303814", "https://data.delijn.be/stops/303821"], ["https://data.delijn.be/stops/500012", "https://data.delijn.be/stops/507223"], ["https://data.delijn.be/stops/403900", "https://data.delijn.be/stops/403933"], ["https://data.delijn.be/stops/200264", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/104581", "https://data.delijn.be/stops/104582"], ["https://data.delijn.be/stops/209360", "https://data.delijn.be/stops/209376"], ["https://data.delijn.be/stops/202274", "https://data.delijn.be/stops/202669"], ["https://data.delijn.be/stops/405938", "https://data.delijn.be/stops/405945"], ["https://data.delijn.be/stops/200881", "https://data.delijn.be/stops/200895"], ["https://data.delijn.be/stops/204829", "https://data.delijn.be/stops/205421"], ["https://data.delijn.be/stops/308112", "https://data.delijn.be/stops/308114"], ["https://data.delijn.be/stops/301408", "https://data.delijn.be/stops/307024"], ["https://data.delijn.be/stops/202889", "https://data.delijn.be/stops/203889"], ["https://data.delijn.be/stops/305177", "https://data.delijn.be/stops/305192"], ["https://data.delijn.be/stops/306054", "https://data.delijn.be/stops/306060"], ["https://data.delijn.be/stops/300517", "https://data.delijn.be/stops/306174"], ["https://data.delijn.be/stops/500117", "https://data.delijn.be/stops/502926"], ["https://data.delijn.be/stops/302115", "https://data.delijn.be/stops/307131"], ["https://data.delijn.be/stops/300178", "https://data.delijn.be/stops/300192"], ["https://data.delijn.be/stops/504204", "https://data.delijn.be/stops/504205"], ["https://data.delijn.be/stops/503071", "https://data.delijn.be/stops/508945"], ["https://data.delijn.be/stops/202281", "https://data.delijn.be/stops/203281"], ["https://data.delijn.be/stops/305659", "https://data.delijn.be/stops/305667"], ["https://data.delijn.be/stops/505287", "https://data.delijn.be/stops/508820"], ["https://data.delijn.be/stops/204995", "https://data.delijn.be/stops/305923"], ["https://data.delijn.be/stops/505994", "https://data.delijn.be/stops/509813"], ["https://data.delijn.be/stops/302325", "https://data.delijn.be/stops/302975"], ["https://data.delijn.be/stops/206004", "https://data.delijn.be/stops/207004"], ["https://data.delijn.be/stops/401505", "https://data.delijn.be/stops/401506"], ["https://data.delijn.be/stops/301508", "https://data.delijn.be/stops/301509"], ["https://data.delijn.be/stops/402782", "https://data.delijn.be/stops/402783"], ["https://data.delijn.be/stops/106668", "https://data.delijn.be/stops/106669"], ["https://data.delijn.be/stops/201847", "https://data.delijn.be/stops/203653"], ["https://data.delijn.be/stops/405320", "https://data.delijn.be/stops/405321"], ["https://data.delijn.be/stops/204726", "https://data.delijn.be/stops/204727"], ["https://data.delijn.be/stops/501215", "https://data.delijn.be/stops/501216"], ["https://data.delijn.be/stops/400253", "https://data.delijn.be/stops/400334"], ["https://data.delijn.be/stops/108104", "https://data.delijn.be/stops/108106"], ["https://data.delijn.be/stops/200008", "https://data.delijn.be/stops/201009"], ["https://data.delijn.be/stops/307510", "https://data.delijn.be/stops/307816"], ["https://data.delijn.be/stops/304068", "https://data.delijn.be/stops/304083"], ["https://data.delijn.be/stops/103214", "https://data.delijn.be/stops/103748"], ["https://data.delijn.be/stops/208460", "https://data.delijn.be/stops/208513"], ["https://data.delijn.be/stops/506228", "https://data.delijn.be/stops/506681"], ["https://data.delijn.be/stops/405242", "https://data.delijn.be/stops/407313"], ["https://data.delijn.be/stops/107026", "https://data.delijn.be/stops/107029"], ["https://data.delijn.be/stops/405872", "https://data.delijn.be/stops/409763"], ["https://data.delijn.be/stops/504784", "https://data.delijn.be/stops/508517"], ["https://data.delijn.be/stops/305598", "https://data.delijn.be/stops/305599"], ["https://data.delijn.be/stops/408366", "https://data.delijn.be/stops/308249"], ["https://data.delijn.be/stops/102297", "https://data.delijn.be/stops/103084"], ["https://data.delijn.be/stops/304527", "https://data.delijn.be/stops/304528"], ["https://data.delijn.be/stops/202864", "https://data.delijn.be/stops/202865"], ["https://data.delijn.be/stops/301015", "https://data.delijn.be/stops/301016"], ["https://data.delijn.be/stops/207701", "https://data.delijn.be/stops/207885"], ["https://data.delijn.be/stops/504230", "https://data.delijn.be/stops/504231"], ["https://data.delijn.be/stops/305071", "https://data.delijn.be/stops/308295"], ["https://data.delijn.be/stops/504449", "https://data.delijn.be/stops/505299"], ["https://data.delijn.be/stops/206725", "https://data.delijn.be/stops/207979"], ["https://data.delijn.be/stops/305054", "https://data.delijn.be/stops/306933"], ["https://data.delijn.be/stops/302729", "https://data.delijn.be/stops/305634"], ["https://data.delijn.be/stops/504118", "https://data.delijn.be/stops/509396"], ["https://data.delijn.be/stops/303477", "https://data.delijn.be/stops/303478"], ["https://data.delijn.be/stops/206065", "https://data.delijn.be/stops/207119"], ["https://data.delijn.be/stops/503342", "https://data.delijn.be/stops/504863"], ["https://data.delijn.be/stops/102868", "https://data.delijn.be/stops/106443"], ["https://data.delijn.be/stops/102236", "https://data.delijn.be/stops/102906"], ["https://data.delijn.be/stops/504832", "https://data.delijn.be/stops/505919"], ["https://data.delijn.be/stops/504150", "https://data.delijn.be/stops/509193"], ["https://data.delijn.be/stops/301853", "https://data.delijn.be/stops/302551"], ["https://data.delijn.be/stops/501184", "https://data.delijn.be/stops/506677"], ["https://data.delijn.be/stops/103331", "https://data.delijn.be/stops/104570"], ["https://data.delijn.be/stops/408666", "https://data.delijn.be/stops/408766"], ["https://data.delijn.be/stops/101010", "https://data.delijn.be/stops/102955"], ["https://data.delijn.be/stops/302016", "https://data.delijn.be/stops/308756"], ["https://data.delijn.be/stops/204327", "https://data.delijn.be/stops/205544"], ["https://data.delijn.be/stops/406684", "https://data.delijn.be/stops/406688"], ["https://data.delijn.be/stops/406952", "https://data.delijn.be/stops/406972"], ["https://data.delijn.be/stops/307033", "https://data.delijn.be/stops/307613"], ["https://data.delijn.be/stops/302131", "https://data.delijn.be/stops/302143"], ["https://data.delijn.be/stops/200859", "https://data.delijn.be/stops/507315"], ["https://data.delijn.be/stops/403475", "https://data.delijn.be/stops/410062"], ["https://data.delijn.be/stops/404186", "https://data.delijn.be/stops/404280"], ["https://data.delijn.be/stops/104458", "https://data.delijn.be/stops/105982"], ["https://data.delijn.be/stops/202041", "https://data.delijn.be/stops/203041"], ["https://data.delijn.be/stops/103275", "https://data.delijn.be/stops/107850"], ["https://data.delijn.be/stops/200189", "https://data.delijn.be/stops/201198"], ["https://data.delijn.be/stops/407011", "https://data.delijn.be/stops/407069"], ["https://data.delijn.be/stops/200679", "https://data.delijn.be/stops/201459"], ["https://data.delijn.be/stops/201122", "https://data.delijn.be/stops/505612"], ["https://data.delijn.be/stops/102863", "https://data.delijn.be/stops/105933"], ["https://data.delijn.be/stops/504271", "https://data.delijn.be/stops/509271"], ["https://data.delijn.be/stops/108299", "https://data.delijn.be/stops/109305"], ["https://data.delijn.be/stops/301103", "https://data.delijn.be/stops/303340"], ["https://data.delijn.be/stops/208004", "https://data.delijn.be/stops/208635"], ["https://data.delijn.be/stops/502344", "https://data.delijn.be/stops/505419"], ["https://data.delijn.be/stops/503617", "https://data.delijn.be/stops/508615"], ["https://data.delijn.be/stops/507228", "https://data.delijn.be/stops/507232"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/506182"], ["https://data.delijn.be/stops/200833", "https://data.delijn.be/stops/200855"], ["https://data.delijn.be/stops/509006", "https://data.delijn.be/stops/509532"], ["https://data.delijn.be/stops/200168", "https://data.delijn.be/stops/210043"], ["https://data.delijn.be/stops/204495", "https://data.delijn.be/stops/205495"], ["https://data.delijn.be/stops/102550", "https://data.delijn.be/stops/402283"], ["https://data.delijn.be/stops/205830", "https://data.delijn.be/stops/214001"], ["https://data.delijn.be/stops/204044", "https://data.delijn.be/stops/205516"], ["https://data.delijn.be/stops/300319", "https://data.delijn.be/stops/300624"], ["https://data.delijn.be/stops/202036", "https://data.delijn.be/stops/203037"], ["https://data.delijn.be/stops/107962", "https://data.delijn.be/stops/108031"], ["https://data.delijn.be/stops/508142", "https://data.delijn.be/stops/508144"], ["https://data.delijn.be/stops/503649", "https://data.delijn.be/stops/508375"], ["https://data.delijn.be/stops/405134", "https://data.delijn.be/stops/406797"], ["https://data.delijn.be/stops/403525", "https://data.delijn.be/stops/404581"], ["https://data.delijn.be/stops/303856", "https://data.delijn.be/stops/303962"], ["https://data.delijn.be/stops/503017", "https://data.delijn.be/stops/508557"], ["https://data.delijn.be/stops/205111", "https://data.delijn.be/stops/205113"], ["https://data.delijn.be/stops/507472", "https://data.delijn.be/stops/507759"], ["https://data.delijn.be/stops/501004", "https://data.delijn.be/stops/501006"], ["https://data.delijn.be/stops/105307", "https://data.delijn.be/stops/105309"], ["https://data.delijn.be/stops/102472", "https://data.delijn.be/stops/406853"], ["https://data.delijn.be/stops/505964", "https://data.delijn.be/stops/507484"], ["https://data.delijn.be/stops/206175", "https://data.delijn.be/stops/206478"], ["https://data.delijn.be/stops/509217", "https://data.delijn.be/stops/509222"], ["https://data.delijn.be/stops/104804", "https://data.delijn.be/stops/104972"], ["https://data.delijn.be/stops/407002", "https://data.delijn.be/stops/407005"], ["https://data.delijn.be/stops/308521", "https://data.delijn.be/stops/308523"], ["https://data.delijn.be/stops/303637", "https://data.delijn.be/stops/307884"], ["https://data.delijn.be/stops/106771", "https://data.delijn.be/stops/106772"], ["https://data.delijn.be/stops/202189", "https://data.delijn.be/stops/203188"], ["https://data.delijn.be/stops/400648", "https://data.delijn.be/stops/400652"], ["https://data.delijn.be/stops/504291", "https://data.delijn.be/stops/509290"], ["https://data.delijn.be/stops/404518", "https://data.delijn.be/stops/404519"], ["https://data.delijn.be/stops/109859", "https://data.delijn.be/stops/109892"], ["https://data.delijn.be/stops/201560", "https://data.delijn.be/stops/201662"], ["https://data.delijn.be/stops/400873", "https://data.delijn.be/stops/400897"], ["https://data.delijn.be/stops/208378", "https://data.delijn.be/stops/209378"], ["https://data.delijn.be/stops/206721", "https://data.delijn.be/stops/207658"], ["https://data.delijn.be/stops/400070", "https://data.delijn.be/stops/400071"], ["https://data.delijn.be/stops/105023", "https://data.delijn.be/stops/105828"], ["https://data.delijn.be/stops/204351", "https://data.delijn.be/stops/204708"], ["https://data.delijn.be/stops/301980", "https://data.delijn.be/stops/301988"], ["https://data.delijn.be/stops/401922", "https://data.delijn.be/stops/403781"], ["https://data.delijn.be/stops/107019", "https://data.delijn.be/stops/107023"], ["https://data.delijn.be/stops/205366", "https://data.delijn.be/stops/214012"], ["https://data.delijn.be/stops/408067", "https://data.delijn.be/stops/408085"], ["https://data.delijn.be/stops/104119", "https://data.delijn.be/stops/104126"], ["https://data.delijn.be/stops/301919", "https://data.delijn.be/stops/302007"], ["https://data.delijn.be/stops/403232", "https://data.delijn.be/stops/403251"], ["https://data.delijn.be/stops/505927", "https://data.delijn.be/stops/509087"], ["https://data.delijn.be/stops/205184", "https://data.delijn.be/stops/205185"], ["https://data.delijn.be/stops/103139", "https://data.delijn.be/stops/106427"], ["https://data.delijn.be/stops/405440", "https://data.delijn.be/stops/405449"], ["https://data.delijn.be/stops/207845", "https://data.delijn.be/stops/306677"], ["https://data.delijn.be/stops/101788", "https://data.delijn.be/stops/101789"], ["https://data.delijn.be/stops/408690", "https://data.delijn.be/stops/408691"], ["https://data.delijn.be/stops/301500", "https://data.delijn.be/stops/308075"], ["https://data.delijn.be/stops/300788", "https://data.delijn.be/stops/301301"], ["https://data.delijn.be/stops/402876", "https://data.delijn.be/stops/404353"], ["https://data.delijn.be/stops/109752", "https://data.delijn.be/stops/109753"], ["https://data.delijn.be/stops/508500", "https://data.delijn.be/stops/508501"], ["https://data.delijn.be/stops/408024", "https://data.delijn.be/stops/301519"], ["https://data.delijn.be/stops/406961", "https://data.delijn.be/stops/410125"], ["https://data.delijn.be/stops/306338", "https://data.delijn.be/stops/308112"], ["https://data.delijn.be/stops/502687", "https://data.delijn.be/stops/507197"], ["https://data.delijn.be/stops/105011", "https://data.delijn.be/stops/106832"], ["https://data.delijn.be/stops/503275", "https://data.delijn.be/stops/508268"], ["https://data.delijn.be/stops/202203", "https://data.delijn.be/stops/203203"], ["https://data.delijn.be/stops/200947", "https://data.delijn.be/stops/203229"], ["https://data.delijn.be/stops/106912", "https://data.delijn.be/stops/107259"], ["https://data.delijn.be/stops/207066", "https://data.delijn.be/stops/207174"], ["https://data.delijn.be/stops/406186", "https://data.delijn.be/stops/406187"], ["https://data.delijn.be/stops/508297", "https://data.delijn.be/stops/508309"], ["https://data.delijn.be/stops/404703", "https://data.delijn.be/stops/404718"], ["https://data.delijn.be/stops/507748", "https://data.delijn.be/stops/507767"], ["https://data.delijn.be/stops/206577", "https://data.delijn.be/stops/207564"], ["https://data.delijn.be/stops/108914", "https://data.delijn.be/stops/108917"], ["https://data.delijn.be/stops/507274", "https://data.delijn.be/stops/507339"], ["https://data.delijn.be/stops/102230", "https://data.delijn.be/stops/103030"], ["https://data.delijn.be/stops/408088", "https://data.delijn.be/stops/408375"], ["https://data.delijn.be/stops/401600", "https://data.delijn.be/stops/406858"], ["https://data.delijn.be/stops/305024", "https://data.delijn.be/stops/305041"], ["https://data.delijn.be/stops/308465", "https://data.delijn.be/stops/308467"], ["https://data.delijn.be/stops/505045", "https://data.delijn.be/stops/505046"], ["https://data.delijn.be/stops/300684", "https://data.delijn.be/stops/300699"], ["https://data.delijn.be/stops/206009", "https://data.delijn.be/stops/207264"], ["https://data.delijn.be/stops/504349", "https://data.delijn.be/stops/508996"], ["https://data.delijn.be/stops/303816", "https://data.delijn.be/stops/303821"], ["https://data.delijn.be/stops/206884", "https://data.delijn.be/stops/206915"], ["https://data.delijn.be/stops/401123", "https://data.delijn.be/stops/409817"], ["https://data.delijn.be/stops/200053", "https://data.delijn.be/stops/211002"], ["https://data.delijn.be/stops/504749", "https://data.delijn.be/stops/509749"], ["https://data.delijn.be/stops/204239", "https://data.delijn.be/stops/204248"], ["https://data.delijn.be/stops/304431", "https://data.delijn.be/stops/304432"], ["https://data.delijn.be/stops/308492", "https://data.delijn.be/stops/308501"], ["https://data.delijn.be/stops/302091", "https://data.delijn.be/stops/302277"], ["https://data.delijn.be/stops/300295", "https://data.delijn.be/stops/300333"], ["https://data.delijn.be/stops/209195", "https://data.delijn.be/stops/209370"], ["https://data.delijn.be/stops/109657", "https://data.delijn.be/stops/406503"], ["https://data.delijn.be/stops/302970", "https://data.delijn.be/stops/302984"], ["https://data.delijn.be/stops/406714", "https://data.delijn.be/stops/408710"], ["https://data.delijn.be/stops/407842", "https://data.delijn.be/stops/408168"], ["https://data.delijn.be/stops/200203", "https://data.delijn.be/stops/203554"], ["https://data.delijn.be/stops/106528", "https://data.delijn.be/stops/106529"], ["https://data.delijn.be/stops/200263", "https://data.delijn.be/stops/202546"], ["https://data.delijn.be/stops/301326", "https://data.delijn.be/stops/306653"], ["https://data.delijn.be/stops/108652", "https://data.delijn.be/stops/306596"], ["https://data.delijn.be/stops/205040", "https://data.delijn.be/stops/205818"], ["https://data.delijn.be/stops/206102", "https://data.delijn.be/stops/207101"], ["https://data.delijn.be/stops/504278", "https://data.delijn.be/stops/504286"], ["https://data.delijn.be/stops/109631", "https://data.delijn.be/stops/109632"], ["https://data.delijn.be/stops/402262", "https://data.delijn.be/stops/402473"], ["https://data.delijn.be/stops/300105", "https://data.delijn.be/stops/306843"], ["https://data.delijn.be/stops/408592", "https://data.delijn.be/stops/408593"], ["https://data.delijn.be/stops/302133", "https://data.delijn.be/stops/302141"], ["https://data.delijn.be/stops/201606", "https://data.delijn.be/stops/201643"], ["https://data.delijn.be/stops/204223", "https://data.delijn.be/stops/204246"], ["https://data.delijn.be/stops/301077", "https://data.delijn.be/stops/301080"], ["https://data.delijn.be/stops/301665", "https://data.delijn.be/stops/301666"], ["https://data.delijn.be/stops/300875", "https://data.delijn.be/stops/300881"], ["https://data.delijn.be/stops/104300", "https://data.delijn.be/stops/108375"], ["https://data.delijn.be/stops/102072", "https://data.delijn.be/stops/106930"], ["https://data.delijn.be/stops/408361", "https://data.delijn.be/stops/408366"], ["https://data.delijn.be/stops/105434", "https://data.delijn.be/stops/109854"], ["https://data.delijn.be/stops/503381", "https://data.delijn.be/stops/509787"], ["https://data.delijn.be/stops/408862", "https://data.delijn.be/stops/408863"], ["https://data.delijn.be/stops/208094", "https://data.delijn.be/stops/209404"], ["https://data.delijn.be/stops/504190", "https://data.delijn.be/stops/504474"], ["https://data.delijn.be/stops/501023", "https://data.delijn.be/stops/506632"], ["https://data.delijn.be/stops/503235", "https://data.delijn.be/stops/503365"], ["https://data.delijn.be/stops/201880", "https://data.delijn.be/stops/203991"], ["https://data.delijn.be/stops/501593", "https://data.delijn.be/stops/504061"], ["https://data.delijn.be/stops/400686", "https://data.delijn.be/stops/406831"], ["https://data.delijn.be/stops/403140", "https://data.delijn.be/stops/410272"], ["https://data.delijn.be/stops/102566", "https://data.delijn.be/stops/103101"], ["https://data.delijn.be/stops/200404", "https://data.delijn.be/stops/201404"], ["https://data.delijn.be/stops/409320", "https://data.delijn.be/stops/410067"], ["https://data.delijn.be/stops/204525", "https://data.delijn.be/stops/205729"], ["https://data.delijn.be/stops/400561", "https://data.delijn.be/stops/403820"], ["https://data.delijn.be/stops/504054", "https://data.delijn.be/stops/504079"], ["https://data.delijn.be/stops/101341", "https://data.delijn.be/stops/104137"], ["https://data.delijn.be/stops/102645", "https://data.delijn.be/stops/105457"], ["https://data.delijn.be/stops/407854", "https://data.delijn.be/stops/408023"], ["https://data.delijn.be/stops/504783", "https://data.delijn.be/stops/508231"], ["https://data.delijn.be/stops/301085", "https://data.delijn.be/stops/301086"], ["https://data.delijn.be/stops/304289", "https://data.delijn.be/stops/305870"], ["https://data.delijn.be/stops/106891", "https://data.delijn.be/stops/107220"], ["https://data.delijn.be/stops/106393", "https://data.delijn.be/stops/109133"], ["https://data.delijn.be/stops/407687", "https://data.delijn.be/stops/409797"], ["https://data.delijn.be/stops/407707", "https://data.delijn.be/stops/409810"], ["https://data.delijn.be/stops/202179", "https://data.delijn.be/stops/203155"], ["https://data.delijn.be/stops/408530", "https://data.delijn.be/stops/408735"], ["https://data.delijn.be/stops/401060", "https://data.delijn.be/stops/401062"], ["https://data.delijn.be/stops/101666", "https://data.delijn.be/stops/106491"], ["https://data.delijn.be/stops/102431", "https://data.delijn.be/stops/109096"], ["https://data.delijn.be/stops/307904", "https://data.delijn.be/stops/308297"], ["https://data.delijn.be/stops/103510", "https://data.delijn.be/stops/104250"], ["https://data.delijn.be/stops/208546", "https://data.delijn.be/stops/208613"], ["https://data.delijn.be/stops/200171", "https://data.delijn.be/stops/201171"], ["https://data.delijn.be/stops/206085", "https://data.delijn.be/stops/206722"], ["https://data.delijn.be/stops/303392", "https://data.delijn.be/stops/308850"], ["https://data.delijn.be/stops/201917", "https://data.delijn.be/stops/206835"], ["https://data.delijn.be/stops/503632", "https://data.delijn.be/stops/505526"], ["https://data.delijn.be/stops/509404", "https://data.delijn.be/stops/509416"], ["https://data.delijn.be/stops/306666", "https://data.delijn.be/stops/306680"], ["https://data.delijn.be/stops/105987", "https://data.delijn.be/stops/109870"], ["https://data.delijn.be/stops/206251", "https://data.delijn.be/stops/207252"], ["https://data.delijn.be/stops/302173", "https://data.delijn.be/stops/302180"], ["https://data.delijn.be/stops/302651", "https://data.delijn.be/stops/302653"], ["https://data.delijn.be/stops/200191", "https://data.delijn.be/stops/200987"], ["https://data.delijn.be/stops/502428", "https://data.delijn.be/stops/507428"], ["https://data.delijn.be/stops/503400", "https://data.delijn.be/stops/503440"], ["https://data.delijn.be/stops/402603", "https://data.delijn.be/stops/402649"], ["https://data.delijn.be/stops/104095", "https://data.delijn.be/stops/105160"], ["https://data.delijn.be/stops/106257", "https://data.delijn.be/stops/106258"], ["https://data.delijn.be/stops/306336", "https://data.delijn.be/stops/306337"], ["https://data.delijn.be/stops/208664", "https://data.delijn.be/stops/209128"], ["https://data.delijn.be/stops/305503", "https://data.delijn.be/stops/307821"], ["https://data.delijn.be/stops/206912", "https://data.delijn.be/stops/206913"], ["https://data.delijn.be/stops/403613", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/401830", "https://data.delijn.be/stops/406333"], ["https://data.delijn.be/stops/300460", "https://data.delijn.be/stops/300466"], ["https://data.delijn.be/stops/307241", "https://data.delijn.be/stops/307243"], ["https://data.delijn.be/stops/105864", "https://data.delijn.be/stops/105866"], ["https://data.delijn.be/stops/101554", "https://data.delijn.be/stops/107302"], ["https://data.delijn.be/stops/305510", "https://data.delijn.be/stops/305511"], ["https://data.delijn.be/stops/302518", "https://data.delijn.be/stops/305874"], ["https://data.delijn.be/stops/406115", "https://data.delijn.be/stops/406129"], ["https://data.delijn.be/stops/200710", "https://data.delijn.be/stops/200723"], ["https://data.delijn.be/stops/407785", "https://data.delijn.be/stops/307447"], ["https://data.delijn.be/stops/402173", "https://data.delijn.be/stops/402220"], ["https://data.delijn.be/stops/201162", "https://data.delijn.be/stops/201384"], ["https://data.delijn.be/stops/302776", "https://data.delijn.be/stops/302779"], ["https://data.delijn.be/stops/201416", "https://data.delijn.be/stops/201552"], ["https://data.delijn.be/stops/407830", "https://data.delijn.be/stops/407839"], ["https://data.delijn.be/stops/503351", "https://data.delijn.be/stops/503649"], ["https://data.delijn.be/stops/403920", "https://data.delijn.be/stops/405938"], ["https://data.delijn.be/stops/403176", "https://data.delijn.be/stops/403193"], ["https://data.delijn.be/stops/503255", "https://data.delijn.be/stops/508255"], ["https://data.delijn.be/stops/301145", "https://data.delijn.be/stops/304447"], ["https://data.delijn.be/stops/107607", "https://data.delijn.be/stops/107609"], ["https://data.delijn.be/stops/106585", "https://data.delijn.be/stops/106587"], ["https://data.delijn.be/stops/204422", "https://data.delijn.be/stops/205421"], ["https://data.delijn.be/stops/502758", "https://data.delijn.be/stops/507757"], ["https://data.delijn.be/stops/308015", "https://data.delijn.be/stops/308017"], ["https://data.delijn.be/stops/301429", "https://data.delijn.be/stops/301447"], ["https://data.delijn.be/stops/202613", "https://data.delijn.be/stops/203614"], ["https://data.delijn.be/stops/108233", "https://data.delijn.be/stops/108234"], ["https://data.delijn.be/stops/303580", "https://data.delijn.be/stops/303583"], ["https://data.delijn.be/stops/202720", "https://data.delijn.be/stops/203270"], ["https://data.delijn.be/stops/201275", "https://data.delijn.be/stops/201372"], ["https://data.delijn.be/stops/400091", "https://data.delijn.be/stops/400137"], ["https://data.delijn.be/stops/204030", "https://data.delijn.be/stops/205030"], ["https://data.delijn.be/stops/102458", "https://data.delijn.be/stops/406861"], ["https://data.delijn.be/stops/301793", "https://data.delijn.be/stops/301794"], ["https://data.delijn.be/stops/107820", "https://data.delijn.be/stops/108295"], ["https://data.delijn.be/stops/401979", "https://data.delijn.be/stops/401987"], ["https://data.delijn.be/stops/302832", "https://data.delijn.be/stops/302838"], ["https://data.delijn.be/stops/101770", "https://data.delijn.be/stops/108375"], ["https://data.delijn.be/stops/201827", "https://data.delijn.be/stops/208276"], ["https://data.delijn.be/stops/202502", "https://data.delijn.be/stops/203211"], ["https://data.delijn.be/stops/200931", "https://data.delijn.be/stops/203236"], ["https://data.delijn.be/stops/501402", "https://data.delijn.be/stops/501568"], ["https://data.delijn.be/stops/405517", "https://data.delijn.be/stops/407781"], ["https://data.delijn.be/stops/107538", "https://data.delijn.be/stops/303881"], ["https://data.delijn.be/stops/103596", "https://data.delijn.be/stops/109401"], ["https://data.delijn.be/stops/402419", "https://data.delijn.be/stops/404439"], ["https://data.delijn.be/stops/202727", "https://data.delijn.be/stops/203671"], ["https://data.delijn.be/stops/300720", "https://data.delijn.be/stops/300723"], ["https://data.delijn.be/stops/501310", "https://data.delijn.be/stops/506223"], ["https://data.delijn.be/stops/108261", "https://data.delijn.be/stops/109338"], ["https://data.delijn.be/stops/300410", "https://data.delijn.be/stops/304636"], ["https://data.delijn.be/stops/504867", "https://data.delijn.be/stops/505091"], ["https://data.delijn.be/stops/504095", "https://data.delijn.be/stops/504097"], ["https://data.delijn.be/stops/501681", "https://data.delijn.be/stops/506228"], ["https://data.delijn.be/stops/203180", "https://data.delijn.be/stops/204077"], ["https://data.delijn.be/stops/501483", "https://data.delijn.be/stops/509811"], ["https://data.delijn.be/stops/402262", "https://data.delijn.be/stops/402400"], ["https://data.delijn.be/stops/403430", "https://data.delijn.be/stops/403435"], ["https://data.delijn.be/stops/503447", "https://data.delijn.be/stops/503460"], ["https://data.delijn.be/stops/105204", "https://data.delijn.be/stops/108358"], ["https://data.delijn.be/stops/405640", "https://data.delijn.be/stops/410338"], ["https://data.delijn.be/stops/202622", "https://data.delijn.be/stops/203621"], ["https://data.delijn.be/stops/409446", "https://data.delijn.be/stops/409449"], ["https://data.delijn.be/stops/503313", "https://data.delijn.be/stops/504780"], ["https://data.delijn.be/stops/505283", "https://data.delijn.be/stops/505284"], ["https://data.delijn.be/stops/501142", "https://data.delijn.be/stops/506142"], ["https://data.delijn.be/stops/302798", "https://data.delijn.be/stops/307835"], ["https://data.delijn.be/stops/208206", "https://data.delijn.be/stops/209207"], ["https://data.delijn.be/stops/506270", "https://data.delijn.be/stops/506783"], ["https://data.delijn.be/stops/204693", "https://data.delijn.be/stops/205634"], ["https://data.delijn.be/stops/503204", "https://data.delijn.be/stops/505978"], ["https://data.delijn.be/stops/208067", "https://data.delijn.be/stops/209066"], ["https://data.delijn.be/stops/307146", "https://data.delijn.be/stops/307473"], ["https://data.delijn.be/stops/409080", "https://data.delijn.be/stops/409115"], ["https://data.delijn.be/stops/301844", "https://data.delijn.be/stops/302767"], ["https://data.delijn.be/stops/209201", "https://data.delijn.be/stops/209206"], ["https://data.delijn.be/stops/101888", "https://data.delijn.be/stops/109993"], ["https://data.delijn.be/stops/509736", "https://data.delijn.be/stops/509740"], ["https://data.delijn.be/stops/405956", "https://data.delijn.be/stops/405957"], ["https://data.delijn.be/stops/400400", "https://data.delijn.be/stops/400920"], ["https://data.delijn.be/stops/301757", "https://data.delijn.be/stops/308894"], ["https://data.delijn.be/stops/306775", "https://data.delijn.be/stops/306776"], ["https://data.delijn.be/stops/301799", "https://data.delijn.be/stops/304919"], ["https://data.delijn.be/stops/200347", "https://data.delijn.be/stops/201349"], ["https://data.delijn.be/stops/306797", "https://data.delijn.be/stops/307729"], ["https://data.delijn.be/stops/508880", "https://data.delijn.be/stops/508884"], ["https://data.delijn.be/stops/505256", "https://data.delijn.be/stops/508670"], ["https://data.delijn.be/stops/106267", "https://data.delijn.be/stops/106342"], ["https://data.delijn.be/stops/502089", "https://data.delijn.be/stops/507089"], ["https://data.delijn.be/stops/207799", "https://data.delijn.be/stops/209191"], ["https://data.delijn.be/stops/103205", "https://data.delijn.be/stops/106437"], ["https://data.delijn.be/stops/202345", "https://data.delijn.be/stops/205975"], ["https://data.delijn.be/stops/503808", "https://data.delijn.be/stops/508808"], ["https://data.delijn.be/stops/303105", "https://data.delijn.be/stops/303111"], ["https://data.delijn.be/stops/205243", "https://data.delijn.be/stops/207320"], ["https://data.delijn.be/stops/200677", "https://data.delijn.be/stops/200678"], ["https://data.delijn.be/stops/200823", "https://data.delijn.be/stops/200865"], ["https://data.delijn.be/stops/507570", "https://data.delijn.be/stops/507571"], ["https://data.delijn.be/stops/500001", "https://data.delijn.be/stops/507099"], ["https://data.delijn.be/stops/404253", "https://data.delijn.be/stops/404309"], ["https://data.delijn.be/stops/205820", "https://data.delijn.be/stops/205821"], ["https://data.delijn.be/stops/106088", "https://data.delijn.be/stops/106089"], ["https://data.delijn.be/stops/300828", "https://data.delijn.be/stops/300831"], ["https://data.delijn.be/stops/101211", "https://data.delijn.be/stops/102647"], ["https://data.delijn.be/stops/108527", "https://data.delijn.be/stops/108529"], ["https://data.delijn.be/stops/402266", "https://data.delijn.be/stops/402267"], ["https://data.delijn.be/stops/303066", "https://data.delijn.be/stops/303093"], ["https://data.delijn.be/stops/300002", "https://data.delijn.be/stops/302527"], ["https://data.delijn.be/stops/405209", "https://data.delijn.be/stops/405289"], ["https://data.delijn.be/stops/403103", "https://data.delijn.be/stops/403117"], ["https://data.delijn.be/stops/102865", "https://data.delijn.be/stops/103586"], ["https://data.delijn.be/stops/200397", "https://data.delijn.be/stops/208331"], ["https://data.delijn.be/stops/503789", "https://data.delijn.be/stops/508850"], ["https://data.delijn.be/stops/106141", "https://data.delijn.be/stops/106143"], ["https://data.delijn.be/stops/301990", "https://data.delijn.be/stops/303172"], ["https://data.delijn.be/stops/208453", "https://data.delijn.be/stops/209445"], ["https://data.delijn.be/stops/104466", "https://data.delijn.be/stops/106293"], ["https://data.delijn.be/stops/405118", "https://data.delijn.be/stops/408154"], ["https://data.delijn.be/stops/403986", "https://data.delijn.be/stops/404019"], ["https://data.delijn.be/stops/407455", "https://data.delijn.be/stops/407457"], ["https://data.delijn.be/stops/202723", "https://data.delijn.be/stops/202724"], ["https://data.delijn.be/stops/106580", "https://data.delijn.be/stops/108440"], ["https://data.delijn.be/stops/105193", "https://data.delijn.be/stops/105194"], ["https://data.delijn.be/stops/503116", "https://data.delijn.be/stops/505105"], ["https://data.delijn.be/stops/101344", "https://data.delijn.be/stops/108366"], ["https://data.delijn.be/stops/502044", "https://data.delijn.be/stops/502591"], ["https://data.delijn.be/stops/206490", "https://data.delijn.be/stops/207490"], ["https://data.delijn.be/stops/102251", "https://data.delijn.be/stops/109033"], ["https://data.delijn.be/stops/208192", "https://data.delijn.be/stops/208406"], ["https://data.delijn.be/stops/303573", "https://data.delijn.be/stops/306398"], ["https://data.delijn.be/stops/303995", "https://data.delijn.be/stops/306188"], ["https://data.delijn.be/stops/306614", "https://data.delijn.be/stops/306624"], ["https://data.delijn.be/stops/300514", "https://data.delijn.be/stops/302788"], ["https://data.delijn.be/stops/405531", "https://data.delijn.be/stops/409457"], ["https://data.delijn.be/stops/106200", "https://data.delijn.be/stops/106203"], ["https://data.delijn.be/stops/302996", "https://data.delijn.be/stops/303042"], ["https://data.delijn.be/stops/108516", "https://data.delijn.be/stops/108518"], ["https://data.delijn.be/stops/405910", "https://data.delijn.be/stops/405977"], ["https://data.delijn.be/stops/502397", "https://data.delijn.be/stops/507413"], ["https://data.delijn.be/stops/404249", "https://data.delijn.be/stops/404311"], ["https://data.delijn.be/stops/301310", "https://data.delijn.be/stops/301311"], ["https://data.delijn.be/stops/102935", "https://data.delijn.be/stops/104363"], ["https://data.delijn.be/stops/409089", "https://data.delijn.be/stops/409210"], ["https://data.delijn.be/stops/504025", "https://data.delijn.be/stops/504394"], ["https://data.delijn.be/stops/404612", "https://data.delijn.be/stops/404996"], ["https://data.delijn.be/stops/501264", "https://data.delijn.be/stops/501568"], ["https://data.delijn.be/stops/206284", "https://data.delijn.be/stops/207285"], ["https://data.delijn.be/stops/201840", "https://data.delijn.be/stops/203321"], ["https://data.delijn.be/stops/200436", "https://data.delijn.be/stops/200437"], ["https://data.delijn.be/stops/506284", "https://data.delijn.be/stops/506349"], ["https://data.delijn.be/stops/306699", "https://data.delijn.be/stops/306701"], ["https://data.delijn.be/stops/409509", "https://data.delijn.be/stops/409511"], ["https://data.delijn.be/stops/108415", "https://data.delijn.be/stops/108420"], ["https://data.delijn.be/stops/202751", "https://data.delijn.be/stops/202758"], ["https://data.delijn.be/stops/302874", "https://data.delijn.be/stops/306402"], ["https://data.delijn.be/stops/405737", "https://data.delijn.be/stops/410143"], ["https://data.delijn.be/stops/202788", "https://data.delijn.be/stops/203787"], ["https://data.delijn.be/stops/503219", "https://data.delijn.be/stops/508219"], ["https://data.delijn.be/stops/204026", "https://data.delijn.be/stops/205025"], ["https://data.delijn.be/stops/506435", "https://data.delijn.be/stops/506671"], ["https://data.delijn.be/stops/206742", "https://data.delijn.be/stops/207986"], ["https://data.delijn.be/stops/106649", "https://data.delijn.be/stops/106655"], ["https://data.delijn.be/stops/104422", "https://data.delijn.be/stops/205823"], ["https://data.delijn.be/stops/507019", "https://data.delijn.be/stops/507154"], ["https://data.delijn.be/stops/102166", "https://data.delijn.be/stops/105809"], ["https://data.delijn.be/stops/104338", "https://data.delijn.be/stops/105799"], ["https://data.delijn.be/stops/406128", "https://data.delijn.be/stops/406983"], ["https://data.delijn.be/stops/301445", "https://data.delijn.be/stops/307608"], ["https://data.delijn.be/stops/201034", "https://data.delijn.be/stops/211094"], ["https://data.delijn.be/stops/507244", "https://data.delijn.be/stops/507246"], ["https://data.delijn.be/stops/500943", "https://data.delijn.be/stops/503987"], ["https://data.delijn.be/stops/300019", "https://data.delijn.be/stops/306092"], ["https://data.delijn.be/stops/503363", "https://data.delijn.be/stops/509771"], ["https://data.delijn.be/stops/305499", "https://data.delijn.be/stops/307989"], ["https://data.delijn.be/stops/501551", "https://data.delijn.be/stops/502222"], ["https://data.delijn.be/stops/201523", "https://data.delijn.be/stops/210131"], ["https://data.delijn.be/stops/502607", "https://data.delijn.be/stops/507607"], ["https://data.delijn.be/stops/202639", "https://data.delijn.be/stops/214016"], ["https://data.delijn.be/stops/202951", "https://data.delijn.be/stops/203952"], ["https://data.delijn.be/stops/206061", "https://data.delijn.be/stops/206500"], ["https://data.delijn.be/stops/206204", "https://data.delijn.be/stops/206205"], ["https://data.delijn.be/stops/503612", "https://data.delijn.be/stops/508602"], ["https://data.delijn.be/stops/408195", "https://data.delijn.be/stops/408196"], ["https://data.delijn.be/stops/202923", "https://data.delijn.be/stops/208694"], ["https://data.delijn.be/stops/400648", "https://data.delijn.be/stops/402539"], ["https://data.delijn.be/stops/306632", "https://data.delijn.be/stops/306633"], ["https://data.delijn.be/stops/301522", "https://data.delijn.be/stops/301524"], ["https://data.delijn.be/stops/205134", "https://data.delijn.be/stops/205135"], ["https://data.delijn.be/stops/305304", "https://data.delijn.be/stops/305311"], ["https://data.delijn.be/stops/206091", "https://data.delijn.be/stops/207094"], ["https://data.delijn.be/stops/107274", "https://data.delijn.be/stops/107392"], ["https://data.delijn.be/stops/305424", "https://data.delijn.be/stops/305434"], ["https://data.delijn.be/stops/107823", "https://data.delijn.be/stops/107827"], ["https://data.delijn.be/stops/208395", "https://data.delijn.be/stops/208421"], ["https://data.delijn.be/stops/200338", "https://data.delijn.be/stops/201281"], ["https://data.delijn.be/stops/202714", "https://data.delijn.be/stops/203065"], ["https://data.delijn.be/stops/305743", "https://data.delijn.be/stops/305747"], ["https://data.delijn.be/stops/204055", "https://data.delijn.be/stops/205057"], ["https://data.delijn.be/stops/204351", "https://data.delijn.be/stops/205706"], ["https://data.delijn.be/stops/502190", "https://data.delijn.be/stops/505982"], ["https://data.delijn.be/stops/300759", "https://data.delijn.be/stops/300760"], ["https://data.delijn.be/stops/105374", "https://data.delijn.be/stops/107501"], ["https://data.delijn.be/stops/206984", "https://data.delijn.be/stops/207983"], ["https://data.delijn.be/stops/201774", "https://data.delijn.be/stops/208304"], ["https://data.delijn.be/stops/108810", "https://data.delijn.be/stops/108812"], ["https://data.delijn.be/stops/108268", "https://data.delijn.be/stops/109371"], ["https://data.delijn.be/stops/408922", "https://data.delijn.be/stops/408926"], ["https://data.delijn.be/stops/503670", "https://data.delijn.be/stops/508674"], ["https://data.delijn.be/stops/102834", "https://data.delijn.be/stops/102837"], ["https://data.delijn.be/stops/400855", "https://data.delijn.be/stops/409651"], ["https://data.delijn.be/stops/204073", "https://data.delijn.be/stops/204235"], ["https://data.delijn.be/stops/104866", "https://data.delijn.be/stops/107852"], ["https://data.delijn.be/stops/505254", "https://data.delijn.be/stops/508056"], ["https://data.delijn.be/stops/200156", "https://data.delijn.be/stops/200545"], ["https://data.delijn.be/stops/201569", "https://data.delijn.be/stops/201960"], ["https://data.delijn.be/stops/200007", "https://data.delijn.be/stops/200008"], ["https://data.delijn.be/stops/408004", "https://data.delijn.be/stops/408005"], ["https://data.delijn.be/stops/201239", "https://data.delijn.be/stops/202241"], ["https://data.delijn.be/stops/403297", "https://data.delijn.be/stops/403309"], ["https://data.delijn.be/stops/503608", "https://data.delijn.be/stops/504992"], ["https://data.delijn.be/stops/404380", "https://data.delijn.be/stops/404381"], ["https://data.delijn.be/stops/300499", "https://data.delijn.be/stops/300514"], ["https://data.delijn.be/stops/206436", "https://data.delijn.be/stops/209688"], ["https://data.delijn.be/stops/408095", "https://data.delijn.be/stops/409109"], ["https://data.delijn.be/stops/501031", "https://data.delijn.be/stops/501038"], ["https://data.delijn.be/stops/402330", "https://data.delijn.be/stops/402766"], ["https://data.delijn.be/stops/204433", "https://data.delijn.be/stops/205433"], ["https://data.delijn.be/stops/503778", "https://data.delijn.be/stops/503780"], ["https://data.delijn.be/stops/200443", "https://data.delijn.be/stops/203134"], ["https://data.delijn.be/stops/300656", "https://data.delijn.be/stops/301917"], ["https://data.delijn.be/stops/304400", "https://data.delijn.be/stops/307414"], ["https://data.delijn.be/stops/204429", "https://data.delijn.be/stops/204443"], ["https://data.delijn.be/stops/402765", "https://data.delijn.be/stops/402792"], ["https://data.delijn.be/stops/403296", "https://data.delijn.be/stops/403308"], ["https://data.delijn.be/stops/304976", "https://data.delijn.be/stops/308034"], ["https://data.delijn.be/stops/403714", "https://data.delijn.be/stops/403719"], ["https://data.delijn.be/stops/502554", "https://data.delijn.be/stops/507554"], ["https://data.delijn.be/stops/103688", "https://data.delijn.be/stops/109433"], ["https://data.delijn.be/stops/408684", "https://data.delijn.be/stops/408687"], ["https://data.delijn.be/stops/106108", "https://data.delijn.be/stops/106109"], ["https://data.delijn.be/stops/504632", "https://data.delijn.be/stops/509335"], ["https://data.delijn.be/stops/202292", "https://data.delijn.be/stops/202294"], ["https://data.delijn.be/stops/209082", "https://data.delijn.be/stops/209701"], ["https://data.delijn.be/stops/209199", "https://data.delijn.be/stops/209200"], ["https://data.delijn.be/stops/407624", "https://data.delijn.be/stops/409879"], ["https://data.delijn.be/stops/105665", "https://data.delijn.be/stops/105670"], ["https://data.delijn.be/stops/301953", "https://data.delijn.be/stops/304183"], ["https://data.delijn.be/stops/105664", "https://data.delijn.be/stops/105667"], ["https://data.delijn.be/stops/408228", "https://data.delijn.be/stops/408412"], ["https://data.delijn.be/stops/501140", "https://data.delijn.be/stops/501512"], ["https://data.delijn.be/stops/200902", "https://data.delijn.be/stops/505602"], ["https://data.delijn.be/stops/102062", "https://data.delijn.be/stops/102066"], ["https://data.delijn.be/stops/104307", "https://data.delijn.be/stops/109746"], ["https://data.delijn.be/stops/204150", "https://data.delijn.be/stops/205150"], ["https://data.delijn.be/stops/400254", "https://data.delijn.be/stops/405579"], ["https://data.delijn.be/stops/302204", "https://data.delijn.be/stops/302207"], ["https://data.delijn.be/stops/206920", "https://data.delijn.be/stops/207381"], ["https://data.delijn.be/stops/204919", "https://data.delijn.be/stops/205912"], ["https://data.delijn.be/stops/200618", "https://data.delijn.be/stops/209738"], ["https://data.delijn.be/stops/202086", "https://data.delijn.be/stops/203087"], ["https://data.delijn.be/stops/503435", "https://data.delijn.be/stops/508535"], ["https://data.delijn.be/stops/503003", "https://data.delijn.be/stops/508003"], ["https://data.delijn.be/stops/502288", "https://data.delijn.be/stops/507529"], ["https://data.delijn.be/stops/101173", "https://data.delijn.be/stops/102305"], ["https://data.delijn.be/stops/501238", "https://data.delijn.be/stops/501244"], ["https://data.delijn.be/stops/405465", "https://data.delijn.be/stops/408570"], ["https://data.delijn.be/stops/101066", "https://data.delijn.be/stops/105963"], ["https://data.delijn.be/stops/402206", "https://data.delijn.be/stops/402480"], ["https://data.delijn.be/stops/408672", "https://data.delijn.be/stops/408752"], ["https://data.delijn.be/stops/201948", "https://data.delijn.be/stops/202464"], ["https://data.delijn.be/stops/403532", "https://data.delijn.be/stops/405328"], ["https://data.delijn.be/stops/303168", "https://data.delijn.be/stops/303173"], ["https://data.delijn.be/stops/300179", "https://data.delijn.be/stops/300211"], ["https://data.delijn.be/stops/301848", "https://data.delijn.be/stops/301849"], ["https://data.delijn.be/stops/402469", "https://data.delijn.be/stops/410073"], ["https://data.delijn.be/stops/208014", "https://data.delijn.be/stops/209014"], ["https://data.delijn.be/stops/503898", "https://data.delijn.be/stops/505644"], ["https://data.delijn.be/stops/401827", "https://data.delijn.be/stops/406019"], ["https://data.delijn.be/stops/504155", "https://data.delijn.be/stops/504522"], ["https://data.delijn.be/stops/305236", "https://data.delijn.be/stops/305237"], ["https://data.delijn.be/stops/406210", "https://data.delijn.be/stops/406213"], ["https://data.delijn.be/stops/210054", "https://data.delijn.be/stops/211054"], ["https://data.delijn.be/stops/106268", "https://data.delijn.be/stops/106342"], ["https://data.delijn.be/stops/104365", "https://data.delijn.be/stops/104370"], ["https://data.delijn.be/stops/107695", "https://data.delijn.be/stops/108935"], ["https://data.delijn.be/stops/205070", "https://data.delijn.be/stops/205071"], ["https://data.delijn.be/stops/206218", "https://data.delijn.be/stops/207489"], ["https://data.delijn.be/stops/209211", "https://data.delijn.be/stops/209429"], ["https://data.delijn.be/stops/203052", "https://data.delijn.be/stops/203053"], ["https://data.delijn.be/stops/301956", "https://data.delijn.be/stops/301958"], ["https://data.delijn.be/stops/101831", "https://data.delijn.be/stops/102423"], ["https://data.delijn.be/stops/202746", "https://data.delijn.be/stops/206569"], ["https://data.delijn.be/stops/407160", "https://data.delijn.be/stops/407192"], ["https://data.delijn.be/stops/206628", "https://data.delijn.be/stops/208572"], ["https://data.delijn.be/stops/202596", "https://data.delijn.be/stops/203595"], ["https://data.delijn.be/stops/102594", "https://data.delijn.be/stops/107812"], ["https://data.delijn.be/stops/201847", "https://data.delijn.be/stops/202653"], ["https://data.delijn.be/stops/109054", "https://data.delijn.be/stops/109066"], ["https://data.delijn.be/stops/209278", "https://data.delijn.be/stops/209494"], ["https://data.delijn.be/stops/206726", "https://data.delijn.be/stops/207992"], ["https://data.delijn.be/stops/101804", "https://data.delijn.be/stops/104647"], ["https://data.delijn.be/stops/206125", "https://data.delijn.be/stops/207639"], ["https://data.delijn.be/stops/203112", "https://data.delijn.be/stops/205797"], ["https://data.delijn.be/stops/204137", "https://data.delijn.be/stops/204138"], ["https://data.delijn.be/stops/201109", "https://data.delijn.be/stops/203645"], ["https://data.delijn.be/stops/202065", "https://data.delijn.be/stops/203065"], ["https://data.delijn.be/stops/300565", "https://data.delijn.be/stops/300566"], ["https://data.delijn.be/stops/206861", "https://data.delijn.be/stops/207646"], ["https://data.delijn.be/stops/301443", "https://data.delijn.be/stops/301445"], ["https://data.delijn.be/stops/405298", "https://data.delijn.be/stops/410165"], ["https://data.delijn.be/stops/404782", "https://data.delijn.be/stops/409572"], ["https://data.delijn.be/stops/106495", "https://data.delijn.be/stops/106497"], ["https://data.delijn.be/stops/300424", "https://data.delijn.be/stops/308063"], ["https://data.delijn.be/stops/408387", "https://data.delijn.be/stops/408388"], ["https://data.delijn.be/stops/204242", "https://data.delijn.be/stops/204458"], ["https://data.delijn.be/stops/406555", "https://data.delijn.be/stops/406631"], ["https://data.delijn.be/stops/205564", "https://data.delijn.be/stops/205565"], ["https://data.delijn.be/stops/300414", "https://data.delijn.be/stops/307892"], ["https://data.delijn.be/stops/503865", "https://data.delijn.be/stops/508963"], ["https://data.delijn.be/stops/300575", "https://data.delijn.be/stops/300589"], ["https://data.delijn.be/stops/108371", "https://data.delijn.be/stops/108462"], ["https://data.delijn.be/stops/505591", "https://data.delijn.be/stops/505825"], ["https://data.delijn.be/stops/202744", "https://data.delijn.be/stops/206937"], ["https://data.delijn.be/stops/201374", "https://data.delijn.be/stops/201548"], ["https://data.delijn.be/stops/402369", "https://data.delijn.be/stops/405572"], ["https://data.delijn.be/stops/401150", "https://data.delijn.be/stops/406299"], ["https://data.delijn.be/stops/409287", "https://data.delijn.be/stops/409318"], ["https://data.delijn.be/stops/401769", "https://data.delijn.be/stops/401832"], ["https://data.delijn.be/stops/208089", "https://data.delijn.be/stops/208304"], ["https://data.delijn.be/stops/501552", "https://data.delijn.be/stops/506261"], ["https://data.delijn.be/stops/402510", "https://data.delijn.be/stops/402512"], ["https://data.delijn.be/stops/102842", "https://data.delijn.be/stops/103048"], ["https://data.delijn.be/stops/207176", "https://data.delijn.be/stops/207447"], ["https://data.delijn.be/stops/204370", "https://data.delijn.be/stops/205760"], ["https://data.delijn.be/stops/210092", "https://data.delijn.be/stops/210093"], ["https://data.delijn.be/stops/403939", "https://data.delijn.be/stops/404030"], ["https://data.delijn.be/stops/206526", "https://data.delijn.be/stops/216006"], ["https://data.delijn.be/stops/403946", "https://data.delijn.be/stops/403991"], ["https://data.delijn.be/stops/404592", "https://data.delijn.be/stops/404594"], ["https://data.delijn.be/stops/305646", "https://data.delijn.be/stops/307102"], ["https://data.delijn.be/stops/505935", "https://data.delijn.be/stops/508433"], ["https://data.delijn.be/stops/501627", "https://data.delijn.be/stops/505541"], ["https://data.delijn.be/stops/403521", "https://data.delijn.be/stops/403522"], ["https://data.delijn.be/stops/304994", "https://data.delijn.be/stops/305034"], ["https://data.delijn.be/stops/300430", "https://data.delijn.be/stops/307409"], ["https://data.delijn.be/stops/405530", "https://data.delijn.be/stops/407275"], ["https://data.delijn.be/stops/208777", "https://data.delijn.be/stops/209499"], ["https://data.delijn.be/stops/409045", "https://data.delijn.be/stops/409443"], ["https://data.delijn.be/stops/204558", "https://data.delijn.be/stops/205247"], ["https://data.delijn.be/stops/304116", "https://data.delijn.be/stops/305340"], ["https://data.delijn.be/stops/405683", "https://data.delijn.be/stops/405866"], ["https://data.delijn.be/stops/505416", "https://data.delijn.be/stops/507369"], ["https://data.delijn.be/stops/109998", "https://data.delijn.be/stops/406833"], ["https://data.delijn.be/stops/204132", "https://data.delijn.be/stops/205132"], ["https://data.delijn.be/stops/400654", "https://data.delijn.be/stops/400948"], ["https://data.delijn.be/stops/209838", "https://data.delijn.be/stops/219015"], ["https://data.delijn.be/stops/201136", "https://data.delijn.be/stops/201137"], ["https://data.delijn.be/stops/108744", "https://data.delijn.be/stops/109708"], ["https://data.delijn.be/stops/504642", "https://data.delijn.be/stops/509648"], ["https://data.delijn.be/stops/301930", "https://data.delijn.be/stops/304524"], ["https://data.delijn.be/stops/106248", "https://data.delijn.be/stops/106249"], ["https://data.delijn.be/stops/402408", "https://data.delijn.be/stops/402431"], ["https://data.delijn.be/stops/102738", "https://data.delijn.be/stops/105523"], ["https://data.delijn.be/stops/502640", "https://data.delijn.be/stops/502793"], ["https://data.delijn.be/stops/109501", "https://data.delijn.be/stops/109708"], ["https://data.delijn.be/stops/203744", "https://data.delijn.be/stops/203812"], ["https://data.delijn.be/stops/103600", "https://data.delijn.be/stops/103601"], ["https://data.delijn.be/stops/406361", "https://data.delijn.be/stops/407031"], ["https://data.delijn.be/stops/405678", "https://data.delijn.be/stops/405685"], ["https://data.delijn.be/stops/305687", "https://data.delijn.be/stops/305711"], ["https://data.delijn.be/stops/301827", "https://data.delijn.be/stops/308601"], ["https://data.delijn.be/stops/201692", "https://data.delijn.be/stops/201886"], ["https://data.delijn.be/stops/206675", "https://data.delijn.be/stops/209162"], ["https://data.delijn.be/stops/305445", "https://data.delijn.be/stops/306702"], ["https://data.delijn.be/stops/106518", "https://data.delijn.be/stops/106519"], ["https://data.delijn.be/stops/508302", "https://data.delijn.be/stops/509908"], ["https://data.delijn.be/stops/404702", "https://data.delijn.be/stops/404829"], ["https://data.delijn.be/stops/501166", "https://data.delijn.be/stops/509837"], ["https://data.delijn.be/stops/200638", "https://data.delijn.be/stops/211054"], ["https://data.delijn.be/stops/307650", "https://data.delijn.be/stops/307692"], ["https://data.delijn.be/stops/404262", "https://data.delijn.be/stops/409343"], ["https://data.delijn.be/stops/201936", "https://data.delijn.be/stops/207408"], ["https://data.delijn.be/stops/302689", "https://data.delijn.be/stops/302690"], ["https://data.delijn.be/stops/108465", "https://data.delijn.be/stops/109881"], ["https://data.delijn.be/stops/507372", "https://data.delijn.be/stops/507555"], ["https://data.delijn.be/stops/202835", "https://data.delijn.be/stops/203836"], ["https://data.delijn.be/stops/408519", "https://data.delijn.be/stops/408524"], ["https://data.delijn.be/stops/405101", "https://data.delijn.be/stops/408257"], ["https://data.delijn.be/stops/208581", "https://data.delijn.be/stops/307326"], ["https://data.delijn.be/stops/103528", "https://data.delijn.be/stops/103529"], ["https://data.delijn.be/stops/304635", "https://data.delijn.be/stops/304636"], ["https://data.delijn.be/stops/401870", "https://data.delijn.be/stops/406123"], ["https://data.delijn.be/stops/408529", "https://data.delijn.be/stops/408792"], ["https://data.delijn.be/stops/507050", "https://data.delijn.be/stops/507591"], ["https://data.delijn.be/stops/200867", "https://data.delijn.be/stops/202337"], ["https://data.delijn.be/stops/101970", "https://data.delijn.be/stops/107120"], ["https://data.delijn.be/stops/208479", "https://data.delijn.be/stops/208501"], ["https://data.delijn.be/stops/410256", "https://data.delijn.be/stops/410257"], ["https://data.delijn.be/stops/206026", "https://data.delijn.be/stops/217002"], ["https://data.delijn.be/stops/407190", "https://data.delijn.be/stops/407191"], ["https://data.delijn.be/stops/106991", "https://data.delijn.be/stops/106992"], ["https://data.delijn.be/stops/200578", "https://data.delijn.be/stops/201578"], ["https://data.delijn.be/stops/200374", "https://data.delijn.be/stops/201275"], ["https://data.delijn.be/stops/106637", "https://data.delijn.be/stops/106639"], ["https://data.delijn.be/stops/404772", "https://data.delijn.be/stops/404945"], ["https://data.delijn.be/stops/102131", "https://data.delijn.be/stops/105722"], ["https://data.delijn.be/stops/400037", "https://data.delijn.be/stops/402791"], ["https://data.delijn.be/stops/403085", "https://data.delijn.be/stops/403411"], ["https://data.delijn.be/stops/403073", "https://data.delijn.be/stops/403457"], ["https://data.delijn.be/stops/103185", "https://data.delijn.be/stops/103186"], ["https://data.delijn.be/stops/105742", "https://data.delijn.be/stops/305791"], ["https://data.delijn.be/stops/400259", "https://data.delijn.be/stops/405537"], ["https://data.delijn.be/stops/202170", "https://data.delijn.be/stops/211043"], ["https://data.delijn.be/stops/501108", "https://data.delijn.be/stops/501493"], ["https://data.delijn.be/stops/104698", "https://data.delijn.be/stops/107359"], ["https://data.delijn.be/stops/501187", "https://data.delijn.be/stops/505747"], ["https://data.delijn.be/stops/300351", "https://data.delijn.be/stops/304694"], ["https://data.delijn.be/stops/305426", "https://data.delijn.be/stops/305427"], ["https://data.delijn.be/stops/201255", "https://data.delijn.be/stops/201258"], ["https://data.delijn.be/stops/109871", "https://data.delijn.be/stops/109872"], ["https://data.delijn.be/stops/108300", "https://data.delijn.be/stops/108310"], ["https://data.delijn.be/stops/203220", "https://data.delijn.be/stops/204795"], ["https://data.delijn.be/stops/208430", "https://data.delijn.be/stops/209430"], ["https://data.delijn.be/stops/505428", "https://data.delijn.be/stops/509022"], ["https://data.delijn.be/stops/301814", "https://data.delijn.be/stops/308829"], ["https://data.delijn.be/stops/105277", "https://data.delijn.be/stops/105711"], ["https://data.delijn.be/stops/406295", "https://data.delijn.be/stops/410359"], ["https://data.delijn.be/stops/200921", "https://data.delijn.be/stops/200945"], ["https://data.delijn.be/stops/108967", "https://data.delijn.be/stops/401933"], ["https://data.delijn.be/stops/304135", "https://data.delijn.be/stops/304136"], ["https://data.delijn.be/stops/200002", "https://data.delijn.be/stops/211857"], ["https://data.delijn.be/stops/207796", "https://data.delijn.be/stops/208757"], ["https://data.delijn.be/stops/206495", "https://data.delijn.be/stops/207496"], ["https://data.delijn.be/stops/207776", "https://data.delijn.be/stops/208186"], ["https://data.delijn.be/stops/202866", "https://data.delijn.be/stops/203865"], ["https://data.delijn.be/stops/206290", "https://data.delijn.be/stops/207258"], ["https://data.delijn.be/stops/403148", "https://data.delijn.be/stops/403316"], ["https://data.delijn.be/stops/505672", "https://data.delijn.be/stops/507353"], ["https://data.delijn.be/stops/406623", "https://data.delijn.be/stops/406684"], ["https://data.delijn.be/stops/301909", "https://data.delijn.be/stops/306257"], ["https://data.delijn.be/stops/102932", "https://data.delijn.be/stops/106059"], ["https://data.delijn.be/stops/403458", "https://data.delijn.be/stops/410068"], ["https://data.delijn.be/stops/402433", "https://data.delijn.be/stops/402434"], ["https://data.delijn.be/stops/402076", "https://data.delijn.be/stops/402112"], ["https://data.delijn.be/stops/205306", "https://data.delijn.be/stops/205307"], ["https://data.delijn.be/stops/503187", "https://data.delijn.be/stops/508190"], ["https://data.delijn.be/stops/409696", "https://data.delijn.be/stops/409700"], ["https://data.delijn.be/stops/104005", "https://data.delijn.be/stops/107285"], ["https://data.delijn.be/stops/106483", "https://data.delijn.be/stops/106485"], ["https://data.delijn.be/stops/102513", "https://data.delijn.be/stops/405607"], ["https://data.delijn.be/stops/102662", "https://data.delijn.be/stops/108774"], ["https://data.delijn.be/stops/402738", "https://data.delijn.be/stops/407298"], ["https://data.delijn.be/stops/408239", "https://data.delijn.be/stops/408248"], ["https://data.delijn.be/stops/301718", "https://data.delijn.be/stops/301753"], ["https://data.delijn.be/stops/404972", "https://data.delijn.be/stops/406887"], ["https://data.delijn.be/stops/301659", "https://data.delijn.be/stops/306301"], ["https://data.delijn.be/stops/303552", "https://data.delijn.be/stops/303558"], ["https://data.delijn.be/stops/201282", "https://data.delijn.be/stops/202192"], ["https://data.delijn.be/stops/204639", "https://data.delijn.be/stops/205638"], ["https://data.delijn.be/stops/407145", "https://data.delijn.be/stops/410199"], ["https://data.delijn.be/stops/408325", "https://data.delijn.be/stops/408327"], ["https://data.delijn.be/stops/208661", "https://data.delijn.be/stops/208691"], ["https://data.delijn.be/stops/409062", "https://data.delijn.be/stops/409072"], ["https://data.delijn.be/stops/202130", "https://data.delijn.be/stops/203418"], ["https://data.delijn.be/stops/200923", "https://data.delijn.be/stops/202723"], ["https://data.delijn.be/stops/408028", "https://data.delijn.be/stops/408029"], ["https://data.delijn.be/stops/207878", "https://data.delijn.be/stops/207900"], ["https://data.delijn.be/stops/400511", "https://data.delijn.be/stops/403898"], ["https://data.delijn.be/stops/501630", "https://data.delijn.be/stops/501658"], ["https://data.delijn.be/stops/502115", "https://data.delijn.be/stops/507115"], ["https://data.delijn.be/stops/105290", "https://data.delijn.be/stops/109880"], ["https://data.delijn.be/stops/403212", "https://data.delijn.be/stops/403442"], ["https://data.delijn.be/stops/102310", "https://data.delijn.be/stops/109133"], ["https://data.delijn.be/stops/405556", "https://data.delijn.be/stops/405573"], ["https://data.delijn.be/stops/300417", "https://data.delijn.be/stops/300425"], ["https://data.delijn.be/stops/102581", "https://data.delijn.be/stops/105070"], ["https://data.delijn.be/stops/400240", "https://data.delijn.be/stops/400241"], ["https://data.delijn.be/stops/408650", "https://data.delijn.be/stops/408815"], ["https://data.delijn.be/stops/404360", "https://data.delijn.be/stops/404393"], ["https://data.delijn.be/stops/407644", "https://data.delijn.be/stops/407735"], ["https://data.delijn.be/stops/400605", "https://data.delijn.be/stops/400620"], ["https://data.delijn.be/stops/106638", "https://data.delijn.be/stops/106640"], ["https://data.delijn.be/stops/505954", "https://data.delijn.be/stops/508285"], ["https://data.delijn.be/stops/302494", "https://data.delijn.be/stops/308834"], ["https://data.delijn.be/stops/103068", "https://data.delijn.be/stops/109825"], ["https://data.delijn.be/stops/200387", "https://data.delijn.be/stops/200466"], ["https://data.delijn.be/stops/407838", "https://data.delijn.be/stops/407846"], ["https://data.delijn.be/stops/503055", "https://data.delijn.be/stops/508055"], ["https://data.delijn.be/stops/208410", "https://data.delijn.be/stops/208411"], ["https://data.delijn.be/stops/503999", "https://data.delijn.be/stops/508609"], ["https://data.delijn.be/stops/501416", "https://data.delijn.be/stops/501419"], ["https://data.delijn.be/stops/206022", "https://data.delijn.be/stops/207024"], ["https://data.delijn.be/stops/404909", "https://data.delijn.be/stops/404911"], ["https://data.delijn.be/stops/202679", "https://data.delijn.be/stops/203680"], ["https://data.delijn.be/stops/301599", "https://data.delijn.be/stops/301625"], ["https://data.delijn.be/stops/208399", "https://data.delijn.be/stops/209360"], ["https://data.delijn.be/stops/402207", "https://data.delijn.be/stops/402370"], ["https://data.delijn.be/stops/504495", "https://data.delijn.be/stops/509495"], ["https://data.delijn.be/stops/304543", "https://data.delijn.be/stops/304545"], ["https://data.delijn.be/stops/404006", "https://data.delijn.be/stops/404008"], ["https://data.delijn.be/stops/203365", "https://data.delijn.be/stops/203994"], ["https://data.delijn.be/stops/202037", "https://data.delijn.be/stops/202985"], ["https://data.delijn.be/stops/304869", "https://data.delijn.be/stops/305596"], ["https://data.delijn.be/stops/102937", "https://data.delijn.be/stops/109050"], ["https://data.delijn.be/stops/103673", "https://data.delijn.be/stops/106253"], ["https://data.delijn.be/stops/406075", "https://data.delijn.be/stops/407169"], ["https://data.delijn.be/stops/504723", "https://data.delijn.be/stops/509489"], ["https://data.delijn.be/stops/103963", "https://data.delijn.be/stops/405012"], ["https://data.delijn.be/stops/503613", "https://data.delijn.be/stops/508561"], ["https://data.delijn.be/stops/107570", "https://data.delijn.be/stops/107741"], ["https://data.delijn.be/stops/500956", "https://data.delijn.be/stops/508280"], ["https://data.delijn.be/stops/210116", "https://data.delijn.be/stops/210117"], ["https://data.delijn.be/stops/502548", "https://data.delijn.be/stops/507006"], ["https://data.delijn.be/stops/207139", "https://data.delijn.be/stops/207140"], ["https://data.delijn.be/stops/301679", "https://data.delijn.be/stops/301687"], ["https://data.delijn.be/stops/307296", "https://data.delijn.be/stops/307322"], ["https://data.delijn.be/stops/108402", "https://data.delijn.be/stops/108407"], ["https://data.delijn.be/stops/300328", "https://data.delijn.be/stops/300329"], ["https://data.delijn.be/stops/106689", "https://data.delijn.be/stops/106692"], ["https://data.delijn.be/stops/403633", "https://data.delijn.be/stops/403641"], ["https://data.delijn.be/stops/109179", "https://data.delijn.be/stops/109252"], ["https://data.delijn.be/stops/302490", "https://data.delijn.be/stops/302494"], ["https://data.delijn.be/stops/408098", "https://data.delijn.be/stops/408101"], ["https://data.delijn.be/stops/103234", "https://data.delijn.be/stops/106296"], ["https://data.delijn.be/stops/208329", "https://data.delijn.be/stops/210048"], ["https://data.delijn.be/stops/106104", "https://data.delijn.be/stops/106161"], ["https://data.delijn.be/stops/306798", "https://data.delijn.be/stops/307732"], ["https://data.delijn.be/stops/507942", "https://data.delijn.be/stops/507952"], ["https://data.delijn.be/stops/208392", "https://data.delijn.be/stops/208743"], ["https://data.delijn.be/stops/505101", "https://data.delijn.be/stops/509192"], ["https://data.delijn.be/stops/104854", "https://data.delijn.be/stops/107886"], ["https://data.delijn.be/stops/205728", "https://data.delijn.be/stops/205729"], ["https://data.delijn.be/stops/508914", "https://data.delijn.be/stops/509822"], ["https://data.delijn.be/stops/203740", "https://data.delijn.be/stops/207431"], ["https://data.delijn.be/stops/101533", "https://data.delijn.be/stops/108787"], ["https://data.delijn.be/stops/202673", "https://data.delijn.be/stops/202674"], ["https://data.delijn.be/stops/102651", "https://data.delijn.be/stops/103059"], ["https://data.delijn.be/stops/303269", "https://data.delijn.be/stops/303307"], ["https://data.delijn.be/stops/304781", "https://data.delijn.be/stops/304793"], ["https://data.delijn.be/stops/305714", "https://data.delijn.be/stops/305715"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/501176"], ["https://data.delijn.be/stops/501411", "https://data.delijn.be/stops/501417"], ["https://data.delijn.be/stops/503317", "https://data.delijn.be/stops/508317"], ["https://data.delijn.be/stops/503176", "https://data.delijn.be/stops/508162"], ["https://data.delijn.be/stops/402203", "https://data.delijn.be/stops/402438"], ["https://data.delijn.be/stops/202687", "https://data.delijn.be/stops/203688"], ["https://data.delijn.be/stops/302311", "https://data.delijn.be/stops/304061"], ["https://data.delijn.be/stops/504154", "https://data.delijn.be/stops/504182"], ["https://data.delijn.be/stops/407745", "https://data.delijn.be/stops/409780"], ["https://data.delijn.be/stops/103343", "https://data.delijn.be/stops/103389"], ["https://data.delijn.be/stops/205662", "https://data.delijn.be/stops/205663"], ["https://data.delijn.be/stops/206590", "https://data.delijn.be/stops/207573"], ["https://data.delijn.be/stops/203843", "https://data.delijn.be/stops/218001"], ["https://data.delijn.be/stops/501001", "https://data.delijn.be/stops/501003"], ["https://data.delijn.be/stops/304985", "https://data.delijn.be/stops/308028"], ["https://data.delijn.be/stops/400339", "https://data.delijn.be/stops/400443"], ["https://data.delijn.be/stops/503219", "https://data.delijn.be/stops/505260"], ["https://data.delijn.be/stops/308815", "https://data.delijn.be/stops/308816"], ["https://data.delijn.be/stops/106396", "https://data.delijn.be/stops/106397"], ["https://data.delijn.be/stops/400332", "https://data.delijn.be/stops/400357"], ["https://data.delijn.be/stops/403747", "https://data.delijn.be/stops/403748"], ["https://data.delijn.be/stops/105289", "https://data.delijn.be/stops/106495"], ["https://data.delijn.be/stops/304375", "https://data.delijn.be/stops/305993"], ["https://data.delijn.be/stops/300953", "https://data.delijn.be/stops/305913"], ["https://data.delijn.be/stops/503240", "https://data.delijn.be/stops/503248"], ["https://data.delijn.be/stops/300754", "https://data.delijn.be/stops/307832"], ["https://data.delijn.be/stops/405891", "https://data.delijn.be/stops/407258"], ["https://data.delijn.be/stops/402283", "https://data.delijn.be/stops/405019"], ["https://data.delijn.be/stops/209348", "https://data.delijn.be/stops/209349"], ["https://data.delijn.be/stops/302162", "https://data.delijn.be/stops/302446"], ["https://data.delijn.be/stops/402754", "https://data.delijn.be/stops/402773"], ["https://data.delijn.be/stops/304241", "https://data.delijn.be/stops/306107"], ["https://data.delijn.be/stops/501176", "https://data.delijn.be/stops/501259"], ["https://data.delijn.be/stops/102887", "https://data.delijn.be/stops/103670"], ["https://data.delijn.be/stops/104904", "https://data.delijn.be/stops/106597"], ["https://data.delijn.be/stops/402822", "https://data.delijn.be/stops/402823"], ["https://data.delijn.be/stops/306327", "https://data.delijn.be/stops/307092"], ["https://data.delijn.be/stops/102675", "https://data.delijn.be/stops/102700"], ["https://data.delijn.be/stops/206744", "https://data.delijn.be/stops/207744"], ["https://data.delijn.be/stops/509063", "https://data.delijn.be/stops/509066"], ["https://data.delijn.be/stops/102161", "https://data.delijn.be/stops/108962"], ["https://data.delijn.be/stops/405899", "https://data.delijn.be/stops/409485"], ["https://data.delijn.be/stops/300962", "https://data.delijn.be/stops/307853"], ["https://data.delijn.be/stops/300749", "https://data.delijn.be/stops/300782"], ["https://data.delijn.be/stops/109790", "https://data.delijn.be/stops/401956"], ["https://data.delijn.be/stops/502587", "https://data.delijn.be/stops/505672"], ["https://data.delijn.be/stops/404997", "https://data.delijn.be/stops/409444"], ["https://data.delijn.be/stops/505962", "https://data.delijn.be/stops/508790"], ["https://data.delijn.be/stops/200193", "https://data.delijn.be/stops/201193"], ["https://data.delijn.be/stops/400573", "https://data.delijn.be/stops/403195"], ["https://data.delijn.be/stops/300577", "https://data.delijn.be/stops/300582"], ["https://data.delijn.be/stops/204114", "https://data.delijn.be/stops/205113"], ["https://data.delijn.be/stops/107356", "https://data.delijn.be/stops/107361"], ["https://data.delijn.be/stops/303541", "https://data.delijn.be/stops/303563"], ["https://data.delijn.be/stops/204763", "https://data.delijn.be/stops/205388"], ["https://data.delijn.be/stops/103850", "https://data.delijn.be/stops/105260"], ["https://data.delijn.be/stops/103558", "https://data.delijn.be/stops/103595"], ["https://data.delijn.be/stops/503670", "https://data.delijn.be/stops/505258"], ["https://data.delijn.be/stops/300489", "https://data.delijn.be/stops/300492"], ["https://data.delijn.be/stops/101385", "https://data.delijn.be/stops/105895"], ["https://data.delijn.be/stops/303806", "https://data.delijn.be/stops/307031"], ["https://data.delijn.be/stops/108323", "https://data.delijn.be/stops/108324"], ["https://data.delijn.be/stops/208615", "https://data.delijn.be/stops/307743"], ["https://data.delijn.be/stops/101969", "https://data.delijn.be/stops/108209"], ["https://data.delijn.be/stops/101577", "https://data.delijn.be/stops/103981"], ["https://data.delijn.be/stops/109283", "https://data.delijn.be/stops/109736"], ["https://data.delijn.be/stops/308753", "https://data.delijn.be/stops/308755"], ["https://data.delijn.be/stops/401390", "https://data.delijn.be/stops/401391"], ["https://data.delijn.be/stops/301917", "https://data.delijn.be/stops/306746"], ["https://data.delijn.be/stops/101854", "https://data.delijn.be/stops/109458"], ["https://data.delijn.be/stops/401511", "https://data.delijn.be/stops/402824"], ["https://data.delijn.be/stops/304819", "https://data.delijn.be/stops/304826"], ["https://data.delijn.be/stops/106590", "https://data.delijn.be/stops/107281"], ["https://data.delijn.be/stops/108698", "https://data.delijn.be/stops/108707"], ["https://data.delijn.be/stops/302868", "https://data.delijn.be/stops/302916"], ["https://data.delijn.be/stops/200546", "https://data.delijn.be/stops/209862"], ["https://data.delijn.be/stops/505568", "https://data.delijn.be/stops/508549"], ["https://data.delijn.be/stops/502439", "https://data.delijn.be/stops/505180"], ["https://data.delijn.be/stops/303248", "https://data.delijn.be/stops/307004"], ["https://data.delijn.be/stops/501145", "https://data.delijn.be/stops/506150"], ["https://data.delijn.be/stops/407771", "https://data.delijn.be/stops/307453"], ["https://data.delijn.be/stops/108686", "https://data.delijn.be/stops/108897"], ["https://data.delijn.be/stops/104077", "https://data.delijn.be/stops/105699"], ["https://data.delijn.be/stops/300156", "https://data.delijn.be/stops/306697"], ["https://data.delijn.be/stops/101924", "https://data.delijn.be/stops/107067"], ["https://data.delijn.be/stops/502170", "https://data.delijn.be/stops/506729"], ["https://data.delijn.be/stops/203825", "https://data.delijn.be/stops/208263"], ["https://data.delijn.be/stops/108088", "https://data.delijn.be/stops/108089"], ["https://data.delijn.be/stops/208551", "https://data.delijn.be/stops/209558"], ["https://data.delijn.be/stops/204754", "https://data.delijn.be/stops/205247"], ["https://data.delijn.be/stops/302793", "https://data.delijn.be/stops/305429"], ["https://data.delijn.be/stops/402596", "https://data.delijn.be/stops/402639"], ["https://data.delijn.be/stops/401083", "https://data.delijn.be/stops/401162"], ["https://data.delijn.be/stops/303115", "https://data.delijn.be/stops/304223"], ["https://data.delijn.be/stops/300602", "https://data.delijn.be/stops/300614"], ["https://data.delijn.be/stops/205723", "https://data.delijn.be/stops/205724"], ["https://data.delijn.be/stops/300321", "https://data.delijn.be/stops/308108"], ["https://data.delijn.be/stops/107694", "https://data.delijn.be/stops/400438"], ["https://data.delijn.be/stops/204388", "https://data.delijn.be/stops/205764"], ["https://data.delijn.be/stops/400129", "https://data.delijn.be/stops/403312"], ["https://data.delijn.be/stops/401280", "https://data.delijn.be/stops/406686"], ["https://data.delijn.be/stops/102204", "https://data.delijn.be/stops/105641"], ["https://data.delijn.be/stops/508175", "https://data.delijn.be/stops/508999"], ["https://data.delijn.be/stops/404819", "https://data.delijn.be/stops/406064"], ["https://data.delijn.be/stops/101900", "https://data.delijn.be/stops/107900"], ["https://data.delijn.be/stops/206480", "https://data.delijn.be/stops/207479"], ["https://data.delijn.be/stops/401386", "https://data.delijn.be/stops/410177"], ["https://data.delijn.be/stops/403954", "https://data.delijn.be/stops/403991"], ["https://data.delijn.be/stops/503283", "https://data.delijn.be/stops/508288"], ["https://data.delijn.be/stops/206065", "https://data.delijn.be/stops/207064"], ["https://data.delijn.be/stops/205817", "https://data.delijn.be/stops/205818"], ["https://data.delijn.be/stops/205463", "https://data.delijn.be/stops/215017"], ["https://data.delijn.be/stops/202140", "https://data.delijn.be/stops/203154"], ["https://data.delijn.be/stops/504633", "https://data.delijn.be/stops/509209"], ["https://data.delijn.be/stops/304522", "https://data.delijn.be/stops/305602"], ["https://data.delijn.be/stops/406882", "https://data.delijn.be/stops/409759"], ["https://data.delijn.be/stops/406879", "https://data.delijn.be/stops/409413"], ["https://data.delijn.be/stops/406076", "https://data.delijn.be/stops/406084"], ["https://data.delijn.be/stops/300514", "https://data.delijn.be/stops/308593"], ["https://data.delijn.be/stops/208048", "https://data.delijn.be/stops/209485"], ["https://data.delijn.be/stops/301368", "https://data.delijn.be/stops/303279"], ["https://data.delijn.be/stops/408518", "https://data.delijn.be/stops/408773"], ["https://data.delijn.be/stops/106650", "https://data.delijn.be/stops/109752"], ["https://data.delijn.be/stops/404785", "https://data.delijn.be/stops/410051"], ["https://data.delijn.be/stops/504034", "https://data.delijn.be/stops/509034"], ["https://data.delijn.be/stops/208528", "https://data.delijn.be/stops/209710"], ["https://data.delijn.be/stops/409067", "https://data.delijn.be/stops/409157"], ["https://data.delijn.be/stops/504197", "https://data.delijn.be/stops/508658"], ["https://data.delijn.be/stops/303677", "https://data.delijn.be/stops/307017"], ["https://data.delijn.be/stops/501258", "https://data.delijn.be/stops/506258"], ["https://data.delijn.be/stops/109173", "https://data.delijn.be/stops/109174"], ["https://data.delijn.be/stops/305459", "https://data.delijn.be/stops/305460"], ["https://data.delijn.be/stops/204128", "https://data.delijn.be/stops/205146"], ["https://data.delijn.be/stops/103261", "https://data.delijn.be/stops/105854"], ["https://data.delijn.be/stops/202295", "https://data.delijn.be/stops/202335"], ["https://data.delijn.be/stops/403997", "https://data.delijn.be/stops/404081"], ["https://data.delijn.be/stops/201844", "https://data.delijn.be/stops/209325"], ["https://data.delijn.be/stops/101722", "https://data.delijn.be/stops/109975"], ["https://data.delijn.be/stops/407388", "https://data.delijn.be/stops/407566"], ["https://data.delijn.be/stops/200751", "https://data.delijn.be/stops/209318"], ["https://data.delijn.be/stops/303020", "https://data.delijn.be/stops/303063"], ["https://data.delijn.be/stops/300239", "https://data.delijn.be/stops/302412"], ["https://data.delijn.be/stops/304414", "https://data.delijn.be/stops/307355"], ["https://data.delijn.be/stops/301905", "https://data.delijn.be/stops/301907"], ["https://data.delijn.be/stops/104051", "https://data.delijn.be/stops/108396"], ["https://data.delijn.be/stops/401512", "https://data.delijn.be/stops/401513"], ["https://data.delijn.be/stops/206755", "https://data.delijn.be/stops/208530"], ["https://data.delijn.be/stops/402364", "https://data.delijn.be/stops/402463"], ["https://data.delijn.be/stops/308418", "https://data.delijn.be/stops/308708"], ["https://data.delijn.be/stops/402529", "https://data.delijn.be/stops/408964"], ["https://data.delijn.be/stops/305801", "https://data.delijn.be/stops/305803"], ["https://data.delijn.be/stops/403520", "https://data.delijn.be/stops/403589"], ["https://data.delijn.be/stops/303511", "https://data.delijn.be/stops/307891"], ["https://data.delijn.be/stops/301279", "https://data.delijn.be/stops/301337"], ["https://data.delijn.be/stops/206845", "https://data.delijn.be/stops/207845"], ["https://data.delijn.be/stops/303853", "https://data.delijn.be/stops/307017"], ["https://data.delijn.be/stops/102633", "https://data.delijn.be/stops/107848"], ["https://data.delijn.be/stops/404680", "https://data.delijn.be/stops/404682"], ["https://data.delijn.be/stops/208571", "https://data.delijn.be/stops/209553"], ["https://data.delijn.be/stops/502317", "https://data.delijn.be/stops/507283"], ["https://data.delijn.be/stops/305543", "https://data.delijn.be/stops/307089"], ["https://data.delijn.be/stops/201522", "https://data.delijn.be/stops/211131"], ["https://data.delijn.be/stops/103934", "https://data.delijn.be/stops/107407"], ["https://data.delijn.be/stops/207406", "https://data.delijn.be/stops/207592"], ["https://data.delijn.be/stops/208674", "https://data.delijn.be/stops/209438"], ["https://data.delijn.be/stops/404119", "https://data.delijn.be/stops/404182"], ["https://data.delijn.be/stops/305215", "https://data.delijn.be/stops/305216"], ["https://data.delijn.be/stops/402429", "https://data.delijn.be/stops/402458"], ["https://data.delijn.be/stops/305712", "https://data.delijn.be/stops/306331"], ["https://data.delijn.be/stops/304896", "https://data.delijn.be/stops/304897"], ["https://data.delijn.be/stops/109235", "https://data.delijn.be/stops/109236"], ["https://data.delijn.be/stops/401778", "https://data.delijn.be/stops/406001"], ["https://data.delijn.be/stops/503233", "https://data.delijn.be/stops/503241"], ["https://data.delijn.be/stops/206937", "https://data.delijn.be/stops/208713"], ["https://data.delijn.be/stops/204211", "https://data.delijn.be/stops/207309"], ["https://data.delijn.be/stops/405128", "https://data.delijn.be/stops/405404"], ["https://data.delijn.be/stops/101036", "https://data.delijn.be/stops/204565"], ["https://data.delijn.be/stops/200805", "https://data.delijn.be/stops/200809"], ["https://data.delijn.be/stops/504372", "https://data.delijn.be/stops/509611"], ["https://data.delijn.be/stops/501061", "https://data.delijn.be/stops/507646"], ["https://data.delijn.be/stops/502747", "https://data.delijn.be/stops/505247"], ["https://data.delijn.be/stops/302155", "https://data.delijn.be/stops/302201"], ["https://data.delijn.be/stops/410100", "https://data.delijn.be/stops/410101"], ["https://data.delijn.be/stops/301974", "https://data.delijn.be/stops/304563"], ["https://data.delijn.be/stops/507945", "https://data.delijn.be/stops/507953"], ["https://data.delijn.be/stops/404511", "https://data.delijn.be/stops/406929"], ["https://data.delijn.be/stops/405390", "https://data.delijn.be/stops/405391"], ["https://data.delijn.be/stops/407133", "https://data.delijn.be/stops/407304"], ["https://data.delijn.be/stops/410000", "https://data.delijn.be/stops/410001"], ["https://data.delijn.be/stops/200457", "https://data.delijn.be/stops/200458"], ["https://data.delijn.be/stops/109979", "https://data.delijn.be/stops/109980"], ["https://data.delijn.be/stops/504796", "https://data.delijn.be/stops/504800"], ["https://data.delijn.be/stops/304216", "https://data.delijn.be/stops/306647"], ["https://data.delijn.be/stops/303542", "https://data.delijn.be/stops/303553"], ["https://data.delijn.be/stops/207958", "https://data.delijn.be/stops/308574"], ["https://data.delijn.be/stops/202873", "https://data.delijn.be/stops/209713"], ["https://data.delijn.be/stops/306829", "https://data.delijn.be/stops/306830"], ["https://data.delijn.be/stops/303173", "https://data.delijn.be/stops/303175"], ["https://data.delijn.be/stops/502103", "https://data.delijn.be/stops/507421"], ["https://data.delijn.be/stops/407814", "https://data.delijn.be/stops/407943"], ["https://data.delijn.be/stops/408964", "https://data.delijn.be/stops/408965"], ["https://data.delijn.be/stops/200257", "https://data.delijn.be/stops/200722"], ["https://data.delijn.be/stops/509454", "https://data.delijn.be/stops/509456"], ["https://data.delijn.be/stops/207713", "https://data.delijn.be/stops/207715"], ["https://data.delijn.be/stops/103474", "https://data.delijn.be/stops/109164"], ["https://data.delijn.be/stops/407450", "https://data.delijn.be/stops/407458"], ["https://data.delijn.be/stops/207946", "https://data.delijn.be/stops/209071"], ["https://data.delijn.be/stops/404940", "https://data.delijn.be/stops/405649"], ["https://data.delijn.be/stops/300488", "https://data.delijn.be/stops/300510"], ["https://data.delijn.be/stops/305306", "https://data.delijn.be/stops/306342"], ["https://data.delijn.be/stops/103317", "https://data.delijn.be/stops/105790"], ["https://data.delijn.be/stops/108401", "https://data.delijn.be/stops/108402"], ["https://data.delijn.be/stops/501519", "https://data.delijn.be/stops/501520"], ["https://data.delijn.be/stops/201877", "https://data.delijn.be/stops/202415"], ["https://data.delijn.be/stops/102583", "https://data.delijn.be/stops/109111"], ["https://data.delijn.be/stops/206079", "https://data.delijn.be/stops/207738"], ["https://data.delijn.be/stops/502256", "https://data.delijn.be/stops/507703"], ["https://data.delijn.be/stops/403104", "https://data.delijn.be/stops/403444"], ["https://data.delijn.be/stops/501497", "https://data.delijn.be/stops/501636"], ["https://data.delijn.be/stops/101045", "https://data.delijn.be/stops/102395"], ["https://data.delijn.be/stops/504618", "https://data.delijn.be/stops/504776"], ["https://data.delijn.be/stops/103098", "https://data.delijn.be/stops/104408"], ["https://data.delijn.be/stops/504133", "https://data.delijn.be/stops/509133"], ["https://data.delijn.be/stops/303652", "https://data.delijn.be/stops/304912"], ["https://data.delijn.be/stops/302636", "https://data.delijn.be/stops/308937"], ["https://data.delijn.be/stops/501512", "https://data.delijn.be/stops/506408"], ["https://data.delijn.be/stops/304249", "https://data.delijn.be/stops/304254"], ["https://data.delijn.be/stops/200574", "https://data.delijn.be/stops/201574"], ["https://data.delijn.be/stops/400471", "https://data.delijn.be/stops/407642"], ["https://data.delijn.be/stops/207231", "https://data.delijn.be/stops/300152"], ["https://data.delijn.be/stops/102408", "https://data.delijn.be/stops/109037"], ["https://data.delijn.be/stops/204656", "https://data.delijn.be/stops/205657"], ["https://data.delijn.be/stops/302033", "https://data.delijn.be/stops/306380"], ["https://data.delijn.be/stops/202337", "https://data.delijn.be/stops/203330"], ["https://data.delijn.be/stops/108281", "https://data.delijn.be/stops/109365"], ["https://data.delijn.be/stops/504118", "https://data.delijn.be/stops/509718"], ["https://data.delijn.be/stops/200136", "https://data.delijn.be/stops/200408"], ["https://data.delijn.be/stops/200868", "https://data.delijn.be/stops/200869"], ["https://data.delijn.be/stops/503075", "https://data.delijn.be/stops/508076"], ["https://data.delijn.be/stops/201012", "https://data.delijn.be/stops/201847"], ["https://data.delijn.be/stops/106206", "https://data.delijn.be/stops/109905"], ["https://data.delijn.be/stops/501192", "https://data.delijn.be/stops/501196"], ["https://data.delijn.be/stops/402737", "https://data.delijn.be/stops/405957"], ["https://data.delijn.be/stops/204369", "https://data.delijn.be/stops/205369"], ["https://data.delijn.be/stops/102479", "https://data.delijn.be/stops/400435"], ["https://data.delijn.be/stops/404845", "https://data.delijn.be/stops/407707"], ["https://data.delijn.be/stops/502307", "https://data.delijn.be/stops/502314"], ["https://data.delijn.be/stops/300061", "https://data.delijn.be/stops/300408"], ["https://data.delijn.be/stops/105532", "https://data.delijn.be/stops/106834"], ["https://data.delijn.be/stops/406009", "https://data.delijn.be/stops/406045"], ["https://data.delijn.be/stops/200652", "https://data.delijn.be/stops/201662"], ["https://data.delijn.be/stops/406504", "https://data.delijn.be/stops/406505"], ["https://data.delijn.be/stops/301045", "https://data.delijn.be/stops/304787"], ["https://data.delijn.be/stops/403679", "https://data.delijn.be/stops/403680"], ["https://data.delijn.be/stops/505145", "https://data.delijn.be/stops/505236"], ["https://data.delijn.be/stops/101373", "https://data.delijn.be/stops/101406"], ["https://data.delijn.be/stops/104931", "https://data.delijn.be/stops/205098"], ["https://data.delijn.be/stops/206797", "https://data.delijn.be/stops/208541"], ["https://data.delijn.be/stops/103319", "https://data.delijn.be/stops/105730"], ["https://data.delijn.be/stops/501738", "https://data.delijn.be/stops/506250"], ["https://data.delijn.be/stops/405499", "https://data.delijn.be/stops/407848"], ["https://data.delijn.be/stops/404461", "https://data.delijn.be/stops/409193"], ["https://data.delijn.be/stops/211014", "https://data.delijn.be/stops/502292"], ["https://data.delijn.be/stops/509586", "https://data.delijn.be/stops/509589"], ["https://data.delijn.be/stops/101828", "https://data.delijn.be/stops/107106"], ["https://data.delijn.be/stops/305001", "https://data.delijn.be/stops/305002"], ["https://data.delijn.be/stops/502202", "https://data.delijn.be/stops/508948"], ["https://data.delijn.be/stops/507130", "https://data.delijn.be/stops/507149"], ["https://data.delijn.be/stops/207868", "https://data.delijn.be/stops/209748"], ["https://data.delijn.be/stops/204341", "https://data.delijn.be/stops/205304"], ["https://data.delijn.be/stops/302310", "https://data.delijn.be/stops/302328"], ["https://data.delijn.be/stops/400551", "https://data.delijn.be/stops/406988"], ["https://data.delijn.be/stops/405805", "https://data.delijn.be/stops/409428"], ["https://data.delijn.be/stops/102389", "https://data.delijn.be/stops/107028"], ["https://data.delijn.be/stops/402986", "https://data.delijn.be/stops/410054"], ["https://data.delijn.be/stops/403910", "https://data.delijn.be/stops/403939"], ["https://data.delijn.be/stops/304666", "https://data.delijn.be/stops/304667"], ["https://data.delijn.be/stops/103592", "https://data.delijn.be/stops/103593"], ["https://data.delijn.be/stops/502194", "https://data.delijn.be/stops/507194"], ["https://data.delijn.be/stops/400115", "https://data.delijn.be/stops/407393"], ["https://data.delijn.be/stops/400786", "https://data.delijn.be/stops/410047"], ["https://data.delijn.be/stops/300266", "https://data.delijn.be/stops/300271"], ["https://data.delijn.be/stops/503301", "https://data.delijn.be/stops/505990"], ["https://data.delijn.be/stops/303723", "https://data.delijn.be/stops/303770"], ["https://data.delijn.be/stops/107971", "https://data.delijn.be/stops/108428"], ["https://data.delijn.be/stops/402970", "https://data.delijn.be/stops/402972"], ["https://data.delijn.be/stops/300870", "https://data.delijn.be/stops/300871"], ["https://data.delijn.be/stops/507956", "https://data.delijn.be/stops/507957"], ["https://data.delijn.be/stops/403596", "https://data.delijn.be/stops/403603"], ["https://data.delijn.be/stops/504175", "https://data.delijn.be/stops/509165"], ["https://data.delijn.be/stops/204544", "https://data.delijn.be/stops/205497"], ["https://data.delijn.be/stops/506245", "https://data.delijn.be/stops/506247"], ["https://data.delijn.be/stops/208363", "https://data.delijn.be/stops/208776"], ["https://data.delijn.be/stops/302444", "https://data.delijn.be/stops/308105"], ["https://data.delijn.be/stops/307722", "https://data.delijn.be/stops/307725"], ["https://data.delijn.be/stops/202686", "https://data.delijn.be/stops/203730"], ["https://data.delijn.be/stops/208154", "https://data.delijn.be/stops/209154"], ["https://data.delijn.be/stops/200319", "https://data.delijn.be/stops/201587"], ["https://data.delijn.be/stops/505638", "https://data.delijn.be/stops/505639"], ["https://data.delijn.be/stops/303696", "https://data.delijn.be/stops/303697"], ["https://data.delijn.be/stops/107347", "https://data.delijn.be/stops/107348"], ["https://data.delijn.be/stops/308586", "https://data.delijn.be/stops/308587"], ["https://data.delijn.be/stops/102608", "https://data.delijn.be/stops/105527"], ["https://data.delijn.be/stops/301950", "https://data.delijn.be/stops/307778"], ["https://data.delijn.be/stops/408229", "https://data.delijn.be/stops/408388"], ["https://data.delijn.be/stops/405819", "https://data.delijn.be/stops/409412"], ["https://data.delijn.be/stops/103502", "https://data.delijn.be/stops/106316"], ["https://data.delijn.be/stops/206453", "https://data.delijn.be/stops/207453"], ["https://data.delijn.be/stops/409053", "https://data.delijn.be/stops/409083"], ["https://data.delijn.be/stops/505286", "https://data.delijn.be/stops/505816"], ["https://data.delijn.be/stops/409515", "https://data.delijn.be/stops/409877"], ["https://data.delijn.be/stops/109316", "https://data.delijn.be/stops/109350"], ["https://data.delijn.be/stops/102766", "https://data.delijn.be/stops/107407"], ["https://data.delijn.be/stops/305714", "https://data.delijn.be/stops/307927"], ["https://data.delijn.be/stops/202392", "https://data.delijn.be/stops/203391"], ["https://data.delijn.be/stops/504792", "https://data.delijn.be/stops/508474"], ["https://data.delijn.be/stops/305084", "https://data.delijn.be/stops/305086"], ["https://data.delijn.be/stops/202741", "https://data.delijn.be/stops/204975"], ["https://data.delijn.be/stops/106207", "https://data.delijn.be/stops/106209"], ["https://data.delijn.be/stops/204992", "https://data.delijn.be/stops/208117"], ["https://data.delijn.be/stops/303620", "https://data.delijn.be/stops/306703"], ["https://data.delijn.be/stops/504375", "https://data.delijn.be/stops/508610"], ["https://data.delijn.be/stops/305067", "https://data.delijn.be/stops/306957"], ["https://data.delijn.be/stops/302191", "https://data.delijn.be/stops/305457"], ["https://data.delijn.be/stops/104943", "https://data.delijn.be/stops/106497"], ["https://data.delijn.be/stops/200551", "https://data.delijn.be/stops/200782"], ["https://data.delijn.be/stops/300116", "https://data.delijn.be/stops/307734"], ["https://data.delijn.be/stops/503081", "https://data.delijn.be/stops/508507"], ["https://data.delijn.be/stops/207299", "https://data.delijn.be/stops/207859"], ["https://data.delijn.be/stops/402122", "https://data.delijn.be/stops/402125"], ["https://data.delijn.be/stops/502391", "https://data.delijn.be/stops/507391"], ["https://data.delijn.be/stops/200144", "https://data.delijn.be/stops/201283"], ["https://data.delijn.be/stops/302715", "https://data.delijn.be/stops/302726"], ["https://data.delijn.be/stops/302923", "https://data.delijn.be/stops/307228"], ["https://data.delijn.be/stops/300847", "https://data.delijn.be/stops/300848"], ["https://data.delijn.be/stops/400327", "https://data.delijn.be/stops/400397"], ["https://data.delijn.be/stops/401638", "https://data.delijn.be/stops/308211"], ["https://data.delijn.be/stops/304311", "https://data.delijn.be/stops/304329"], ["https://data.delijn.be/stops/403996", "https://data.delijn.be/stops/405937"], ["https://data.delijn.be/stops/407005", "https://data.delijn.be/stops/407014"], ["https://data.delijn.be/stops/502302", "https://data.delijn.be/stops/502310"], ["https://data.delijn.be/stops/208452", "https://data.delijn.be/stops/209698"], ["https://data.delijn.be/stops/208675", "https://data.delijn.be/stops/208684"], ["https://data.delijn.be/stops/308109", "https://data.delijn.be/stops/308111"], ["https://data.delijn.be/stops/207742", "https://data.delijn.be/stops/308799"], ["https://data.delijn.be/stops/107015", "https://data.delijn.be/stops/107020"], ["https://data.delijn.be/stops/203009", "https://data.delijn.be/stops/203653"], ["https://data.delijn.be/stops/302569", "https://data.delijn.be/stops/303299"], ["https://data.delijn.be/stops/300527", "https://data.delijn.be/stops/302340"], ["https://data.delijn.be/stops/504577", "https://data.delijn.be/stops/509577"], ["https://data.delijn.be/stops/507508", "https://data.delijn.be/stops/507535"], ["https://data.delijn.be/stops/101822", "https://data.delijn.be/stops/107024"], ["https://data.delijn.be/stops/501265", "https://data.delijn.be/stops/501312"], ["https://data.delijn.be/stops/502185", "https://data.delijn.be/stops/502187"], ["https://data.delijn.be/stops/104165", "https://data.delijn.be/stops/108330"], ["https://data.delijn.be/stops/500933", "https://data.delijn.be/stops/505793"], ["https://data.delijn.be/stops/509355", "https://data.delijn.be/stops/509360"], ["https://data.delijn.be/stops/400580", "https://data.delijn.be/stops/400635"], ["https://data.delijn.be/stops/106275", "https://data.delijn.be/stops/109632"], ["https://data.delijn.be/stops/502183", "https://data.delijn.be/stops/502185"], ["https://data.delijn.be/stops/501405", "https://data.delijn.be/stops/501485"], ["https://data.delijn.be/stops/202844", "https://data.delijn.be/stops/211070"], ["https://data.delijn.be/stops/404472", "https://data.delijn.be/stops/404533"], ["https://data.delijn.be/stops/301195", "https://data.delijn.be/stops/307614"], ["https://data.delijn.be/stops/505521", "https://data.delijn.be/stops/505621"], ["https://data.delijn.be/stops/300063", "https://data.delijn.be/stops/300064"], ["https://data.delijn.be/stops/304019", "https://data.delijn.be/stops/304865"], ["https://data.delijn.be/stops/208841", "https://data.delijn.be/stops/209697"], ["https://data.delijn.be/stops/504140", "https://data.delijn.be/stops/509136"], ["https://data.delijn.be/stops/305597", "https://data.delijn.be/stops/306269"], ["https://data.delijn.be/stops/206385", "https://data.delijn.be/stops/207013"], ["https://data.delijn.be/stops/407144", "https://data.delijn.be/stops/407297"], ["https://data.delijn.be/stops/504259", "https://data.delijn.be/stops/504263"], ["https://data.delijn.be/stops/104625", "https://data.delijn.be/stops/105135"], ["https://data.delijn.be/stops/200646", "https://data.delijn.be/stops/201605"], ["https://data.delijn.be/stops/303535", "https://data.delijn.be/stops/303573"], ["https://data.delijn.be/stops/505575", "https://data.delijn.be/stops/507321"], ["https://data.delijn.be/stops/400912", "https://data.delijn.be/stops/400922"], ["https://data.delijn.be/stops/406297", "https://data.delijn.be/stops/406423"], ["https://data.delijn.be/stops/304577", "https://data.delijn.be/stops/304654"], ["https://data.delijn.be/stops/304972", "https://data.delijn.be/stops/304975"], ["https://data.delijn.be/stops/503501", "https://data.delijn.be/stops/508499"], ["https://data.delijn.be/stops/304979", "https://data.delijn.be/stops/305013"], ["https://data.delijn.be/stops/202865", "https://data.delijn.be/stops/203886"], ["https://data.delijn.be/stops/504775", "https://data.delijn.be/stops/509414"], ["https://data.delijn.be/stops/508354", "https://data.delijn.be/stops/508374"], ["https://data.delijn.be/stops/109153", "https://data.delijn.be/stops/109154"], ["https://data.delijn.be/stops/200459", "https://data.delijn.be/stops/201662"], ["https://data.delijn.be/stops/501460", "https://data.delijn.be/stops/506461"], ["https://data.delijn.be/stops/304766", "https://data.delijn.be/stops/308701"], ["https://data.delijn.be/stops/207802", "https://data.delijn.be/stops/300161"], ["https://data.delijn.be/stops/409422", "https://data.delijn.be/stops/409676"], ["https://data.delijn.be/stops/209540", "https://data.delijn.be/stops/218029"], ["https://data.delijn.be/stops/501412", "https://data.delijn.be/stops/506412"], ["https://data.delijn.be/stops/202110", "https://data.delijn.be/stops/205069"], ["https://data.delijn.be/stops/206174", "https://data.delijn.be/stops/207067"], ["https://data.delijn.be/stops/108774", "https://data.delijn.be/stops/108777"], ["https://data.delijn.be/stops/102581", "https://data.delijn.be/stops/105370"], ["https://data.delijn.be/stops/302210", "https://data.delijn.be/stops/302233"], ["https://data.delijn.be/stops/407306", "https://data.delijn.be/stops/409499"], ["https://data.delijn.be/stops/305249", "https://data.delijn.be/stops/305259"], ["https://data.delijn.be/stops/208678", "https://data.delijn.be/stops/208803"], ["https://data.delijn.be/stops/503744", "https://data.delijn.be/stops/508747"], ["https://data.delijn.be/stops/301634", "https://data.delijn.be/stops/301643"], ["https://data.delijn.be/stops/106054", "https://data.delijn.be/stops/109946"], ["https://data.delijn.be/stops/104496", "https://data.delijn.be/stops/107487"], ["https://data.delijn.be/stops/101136", "https://data.delijn.be/stops/105210"], ["https://data.delijn.be/stops/207667", "https://data.delijn.be/stops/209521"], ["https://data.delijn.be/stops/504386", "https://data.delijn.be/stops/505977"], ["https://data.delijn.be/stops/400161", "https://data.delijn.be/stops/403297"], ["https://data.delijn.be/stops/200760", "https://data.delijn.be/stops/208307"], ["https://data.delijn.be/stops/408093", "https://data.delijn.be/stops/408158"], ["https://data.delijn.be/stops/104003", "https://data.delijn.be/stops/106565"], ["https://data.delijn.be/stops/104337", "https://data.delijn.be/stops/104342"], ["https://data.delijn.be/stops/501003", "https://data.delijn.be/stops/506506"], ["https://data.delijn.be/stops/303572", "https://data.delijn.be/stops/303573"], ["https://data.delijn.be/stops/500005", "https://data.delijn.be/stops/505398"], ["https://data.delijn.be/stops/103633", "https://data.delijn.be/stops/107563"], ["https://data.delijn.be/stops/401030", "https://data.delijn.be/stops/409220"], ["https://data.delijn.be/stops/502303", "https://data.delijn.be/stops/507303"], ["https://data.delijn.be/stops/504205", "https://data.delijn.be/stops/509205"], ["https://data.delijn.be/stops/308180", "https://data.delijn.be/stops/308182"], ["https://data.delijn.be/stops/504773", "https://data.delijn.be/stops/508809"], ["https://data.delijn.be/stops/502512", "https://data.delijn.be/stops/505628"], ["https://data.delijn.be/stops/405789", "https://data.delijn.be/stops/409414"], ["https://data.delijn.be/stops/200913", "https://data.delijn.be/stops/203689"], ["https://data.delijn.be/stops/406301", "https://data.delijn.be/stops/406305"], ["https://data.delijn.be/stops/403438", "https://data.delijn.be/stops/403525"], ["https://data.delijn.be/stops/403018", "https://data.delijn.be/stops/403588"], ["https://data.delijn.be/stops/503064", "https://data.delijn.be/stops/509949"], ["https://data.delijn.be/stops/206506", "https://data.delijn.be/stops/207498"], ["https://data.delijn.be/stops/504208", "https://data.delijn.be/stops/504210"], ["https://data.delijn.be/stops/407964", "https://data.delijn.be/stops/407966"], ["https://data.delijn.be/stops/400039", "https://data.delijn.be/stops/400350"], ["https://data.delijn.be/stops/307012", "https://data.delijn.be/stops/307013"], ["https://data.delijn.be/stops/106123", "https://data.delijn.be/stops/106124"], ["https://data.delijn.be/stops/304130", "https://data.delijn.be/stops/305845"], ["https://data.delijn.be/stops/305819", "https://data.delijn.be/stops/305820"], ["https://data.delijn.be/stops/209665", "https://data.delijn.be/stops/209666"], ["https://data.delijn.be/stops/503152", "https://data.delijn.be/stops/504840"], ["https://data.delijn.be/stops/502066", "https://data.delijn.be/stops/507066"], ["https://data.delijn.be/stops/202033", "https://data.delijn.be/stops/203031"], ["https://data.delijn.be/stops/400691", "https://data.delijn.be/stops/400843"], ["https://data.delijn.be/stops/401280", "https://data.delijn.be/stops/404558"], ["https://data.delijn.be/stops/503099", "https://data.delijn.be/stops/504174"], ["https://data.delijn.be/stops/504570", "https://data.delijn.be/stops/509079"], ["https://data.delijn.be/stops/200276", "https://data.delijn.be/stops/201276"], ["https://data.delijn.be/stops/407135", "https://data.delijn.be/stops/407304"], ["https://data.delijn.be/stops/206372", "https://data.delijn.be/stops/207221"], ["https://data.delijn.be/stops/401209", "https://data.delijn.be/stops/401275"], ["https://data.delijn.be/stops/206830", "https://data.delijn.be/stops/207565"], ["https://data.delijn.be/stops/303812", "https://data.delijn.be/stops/303813"], ["https://data.delijn.be/stops/109039", "https://data.delijn.be/stops/300113"], ["https://data.delijn.be/stops/506196", "https://data.delijn.be/stops/506379"], ["https://data.delijn.be/stops/102323", "https://data.delijn.be/stops/105349"], ["https://data.delijn.be/stops/300573", "https://data.delijn.be/stops/300585"], ["https://data.delijn.be/stops/301693", "https://data.delijn.be/stops/301777"], ["https://data.delijn.be/stops/403724", "https://data.delijn.be/stops/406889"], ["https://data.delijn.be/stops/204768", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/304146", "https://data.delijn.be/stops/304147"], ["https://data.delijn.be/stops/200658", "https://data.delijn.be/stops/201658"], ["https://data.delijn.be/stops/407538", "https://data.delijn.be/stops/407544"], ["https://data.delijn.be/stops/108947", "https://data.delijn.be/stops/108949"], ["https://data.delijn.be/stops/201777", "https://data.delijn.be/stops/201820"], ["https://data.delijn.be/stops/400732", "https://data.delijn.be/stops/400735"], ["https://data.delijn.be/stops/504480", "https://data.delijn.be/stops/504725"], ["https://data.delijn.be/stops/105506", "https://data.delijn.be/stops/105783"], ["https://data.delijn.be/stops/210039", "https://data.delijn.be/stops/211038"], ["https://data.delijn.be/stops/300506", "https://data.delijn.be/stops/302335"], ["https://data.delijn.be/stops/404400", "https://data.delijn.be/stops/404401"], ["https://data.delijn.be/stops/206398", "https://data.delijn.be/stops/206399"], ["https://data.delijn.be/stops/304445", "https://data.delijn.be/stops/306409"], ["https://data.delijn.be/stops/504242", "https://data.delijn.be/stops/509639"], ["https://data.delijn.be/stops/503375", "https://data.delijn.be/stops/508375"], ["https://data.delijn.be/stops/104783", "https://data.delijn.be/stops/109620"], ["https://data.delijn.be/stops/507290", "https://data.delijn.be/stops/507293"], ["https://data.delijn.be/stops/304513", "https://data.delijn.be/stops/304520"], ["https://data.delijn.be/stops/203648", "https://data.delijn.be/stops/209948"], ["https://data.delijn.be/stops/403199", "https://data.delijn.be/stops/403200"], ["https://data.delijn.be/stops/205043", "https://data.delijn.be/stops/205408"], ["https://data.delijn.be/stops/306699", "https://data.delijn.be/stops/307933"], ["https://data.delijn.be/stops/300283", "https://data.delijn.be/stops/303893"], ["https://data.delijn.be/stops/505549", "https://data.delijn.be/stops/509943"], ["https://data.delijn.be/stops/405902", "https://data.delijn.be/stops/405992"], ["https://data.delijn.be/stops/403348", "https://data.delijn.be/stops/410276"], ["https://data.delijn.be/stops/107372", "https://data.delijn.be/stops/107376"], ["https://data.delijn.be/stops/400133", "https://data.delijn.be/stops/400152"], ["https://data.delijn.be/stops/501224", "https://data.delijn.be/stops/505330"], ["https://data.delijn.be/stops/203975", "https://data.delijn.be/stops/206398"], ["https://data.delijn.be/stops/200880", "https://data.delijn.be/stops/202060"], ["https://data.delijn.be/stops/504438", "https://data.delijn.be/stops/509438"], ["https://data.delijn.be/stops/200242", "https://data.delijn.be/stops/201615"], ["https://data.delijn.be/stops/108803", "https://data.delijn.be/stops/109899"], ["https://data.delijn.be/stops/202227", "https://data.delijn.be/stops/203051"], ["https://data.delijn.be/stops/302454", "https://data.delijn.be/stops/302455"], ["https://data.delijn.be/stops/201355", "https://data.delijn.be/stops/201501"], ["https://data.delijn.be/stops/508487", "https://data.delijn.be/stops/508490"], ["https://data.delijn.be/stops/401194", "https://data.delijn.be/stops/401196"], ["https://data.delijn.be/stops/405272", "https://data.delijn.be/stops/405273"], ["https://data.delijn.be/stops/408233", "https://data.delijn.be/stops/408308"], ["https://data.delijn.be/stops/401246", "https://data.delijn.be/stops/401270"], ["https://data.delijn.be/stops/202532", "https://data.delijn.be/stops/203532"], ["https://data.delijn.be/stops/103610", "https://data.delijn.be/stops/108490"], ["https://data.delijn.be/stops/201691", "https://data.delijn.be/stops/203139"], ["https://data.delijn.be/stops/503639", "https://data.delijn.be/stops/508639"], ["https://data.delijn.be/stops/203926", "https://data.delijn.be/stops/211022"], ["https://data.delijn.be/stops/408013", "https://data.delijn.be/stops/408149"], ["https://data.delijn.be/stops/303485", "https://data.delijn.be/stops/303486"], ["https://data.delijn.be/stops/404156", "https://data.delijn.be/stops/404157"], ["https://data.delijn.be/stops/303497", "https://data.delijn.be/stops/303504"], ["https://data.delijn.be/stops/303093", "https://data.delijn.be/stops/304244"], ["https://data.delijn.be/stops/101587", "https://data.delijn.be/stops/105448"], ["https://data.delijn.be/stops/406557", "https://data.delijn.be/stops/407380"], ["https://data.delijn.be/stops/407497", "https://data.delijn.be/stops/410255"], ["https://data.delijn.be/stops/403485", "https://data.delijn.be/stops/405633"], ["https://data.delijn.be/stops/208024", "https://data.delijn.be/stops/208759"], ["https://data.delijn.be/stops/207592", "https://data.delijn.be/stops/207949"], ["https://data.delijn.be/stops/306314", "https://data.delijn.be/stops/307193"], ["https://data.delijn.be/stops/504405", "https://data.delijn.be/stops/504835"], ["https://data.delijn.be/stops/402834", "https://data.delijn.be/stops/402838"], ["https://data.delijn.be/stops/300518", "https://data.delijn.be/stops/300526"], ["https://data.delijn.be/stops/107716", "https://data.delijn.be/stops/107738"], ["https://data.delijn.be/stops/101944", "https://data.delijn.be/stops/108788"], ["https://data.delijn.be/stops/408881", "https://data.delijn.be/stops/408922"], ["https://data.delijn.be/stops/301929", "https://data.delijn.be/stops/304530"], ["https://data.delijn.be/stops/308061", "https://data.delijn.be/stops/308297"], ["https://data.delijn.be/stops/300957", "https://data.delijn.be/stops/300969"], ["https://data.delijn.be/stops/107688", "https://data.delijn.be/stops/107689"], ["https://data.delijn.be/stops/405748", "https://data.delijn.be/stops/409422"], ["https://data.delijn.be/stops/301758", "https://data.delijn.be/stops/305947"], ["https://data.delijn.be/stops/203499", "https://data.delijn.be/stops/203500"], ["https://data.delijn.be/stops/206738", "https://data.delijn.be/stops/207991"], ["https://data.delijn.be/stops/409105", "https://data.delijn.be/stops/409109"], ["https://data.delijn.be/stops/107574", "https://data.delijn.be/stops/107746"], ["https://data.delijn.be/stops/106735", "https://data.delijn.be/stops/106774"], ["https://data.delijn.be/stops/405738", "https://data.delijn.be/stops/405739"], ["https://data.delijn.be/stops/502583", "https://data.delijn.be/stops/507212"], ["https://data.delijn.be/stops/406395", "https://data.delijn.be/stops/302827"], ["https://data.delijn.be/stops/202092", "https://data.delijn.be/stops/211291"], ["https://data.delijn.be/stops/203230", "https://data.delijn.be/stops/219505"], ["https://data.delijn.be/stops/505161", "https://data.delijn.be/stops/508643"], ["https://data.delijn.be/stops/107730", "https://data.delijn.be/stops/108555"], ["https://data.delijn.be/stops/104041", "https://data.delijn.be/stops/108521"], ["https://data.delijn.be/stops/304293", "https://data.delijn.be/stops/304297"], ["https://data.delijn.be/stops/505645", "https://data.delijn.be/stops/509172"], ["https://data.delijn.be/stops/200005", "https://data.delijn.be/stops/201994"], ["https://data.delijn.be/stops/208527", "https://data.delijn.be/stops/209527"], ["https://data.delijn.be/stops/300092", "https://data.delijn.be/stops/306862"], ["https://data.delijn.be/stops/200415", "https://data.delijn.be/stops/201415"], ["https://data.delijn.be/stops/208810", "https://data.delijn.be/stops/209197"], ["https://data.delijn.be/stops/302654", "https://data.delijn.be/stops/302656"], ["https://data.delijn.be/stops/504141", "https://data.delijn.be/stops/505980"], ["https://data.delijn.be/stops/405319", "https://data.delijn.be/stops/409320"], ["https://data.delijn.be/stops/201423", "https://data.delijn.be/stops/202826"], ["https://data.delijn.be/stops/204421", "https://data.delijn.be/stops/205421"], ["https://data.delijn.be/stops/103758", "https://data.delijn.be/stops/104210"], ["https://data.delijn.be/stops/202525", "https://data.delijn.be/stops/203520"], ["https://data.delijn.be/stops/202525", "https://data.delijn.be/stops/202526"], ["https://data.delijn.be/stops/503344", "https://data.delijn.be/stops/503345"], ["https://data.delijn.be/stops/404554", "https://data.delijn.be/stops/407237"], ["https://data.delijn.be/stops/403029", "https://data.delijn.be/stops/410329"], ["https://data.delijn.be/stops/102513", "https://data.delijn.be/stops/406515"], ["https://data.delijn.be/stops/507201", "https://data.delijn.be/stops/508338"], ["https://data.delijn.be/stops/200234", "https://data.delijn.be/stops/211051"], ["https://data.delijn.be/stops/105138", "https://data.delijn.be/stops/108804"], ["https://data.delijn.be/stops/200958", "https://data.delijn.be/stops/203469"], ["https://data.delijn.be/stops/201983", "https://data.delijn.be/stops/203850"], ["https://data.delijn.be/stops/503252", "https://data.delijn.be/stops/508255"], ["https://data.delijn.be/stops/304044", "https://data.delijn.be/stops/304046"], ["https://data.delijn.be/stops/504095", "https://data.delijn.be/stops/505194"], ["https://data.delijn.be/stops/204637", "https://data.delijn.be/stops/204638"], ["https://data.delijn.be/stops/302630", "https://data.delijn.be/stops/308114"], ["https://data.delijn.be/stops/102742", "https://data.delijn.be/stops/103039"], ["https://data.delijn.be/stops/101004", "https://data.delijn.be/stops/104881"], ["https://data.delijn.be/stops/409077", "https://data.delijn.be/stops/410049"], ["https://data.delijn.be/stops/101512", "https://data.delijn.be/stops/300109"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/209067"], ["https://data.delijn.be/stops/504015", "https://data.delijn.be/stops/504267"], ["https://data.delijn.be/stops/404242", "https://data.delijn.be/stops/404243"], ["https://data.delijn.be/stops/404136", "https://data.delijn.be/stops/404153"], ["https://data.delijn.be/stops/503512", "https://data.delijn.be/stops/505297"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/501250"], ["https://data.delijn.be/stops/503902", "https://data.delijn.be/stops/504845"], ["https://data.delijn.be/stops/101136", "https://data.delijn.be/stops/103330"], ["https://data.delijn.be/stops/402755", "https://data.delijn.be/stops/402756"], ["https://data.delijn.be/stops/505979", "https://data.delijn.be/stops/508667"], ["https://data.delijn.be/stops/200198", "https://data.delijn.be/stops/201189"], ["https://data.delijn.be/stops/403214", "https://data.delijn.be/stops/403215"], ["https://data.delijn.be/stops/200444", "https://data.delijn.be/stops/201444"], ["https://data.delijn.be/stops/206719", "https://data.delijn.be/stops/207655"], ["https://data.delijn.be/stops/206954", "https://data.delijn.be/stops/300167"], ["https://data.delijn.be/stops/301325", "https://data.delijn.be/stops/305920"], ["https://data.delijn.be/stops/107036", "https://data.delijn.be/stops/107038"], ["https://data.delijn.be/stops/402587", "https://data.delijn.be/stops/408173"], ["https://data.delijn.be/stops/301870", "https://data.delijn.be/stops/304334"], ["https://data.delijn.be/stops/204683", "https://data.delijn.be/stops/205678"], ["https://data.delijn.be/stops/402150", "https://data.delijn.be/stops/402151"], ["https://data.delijn.be/stops/307775", "https://data.delijn.be/stops/307776"], ["https://data.delijn.be/stops/304886", "https://data.delijn.be/stops/304887"], ["https://data.delijn.be/stops/400065", "https://data.delijn.be/stops/400172"], ["https://data.delijn.be/stops/502014", "https://data.delijn.be/stops/502056"], ["https://data.delijn.be/stops/109844", "https://data.delijn.be/stops/109845"], ["https://data.delijn.be/stops/401303", "https://data.delijn.be/stops/401321"], ["https://data.delijn.be/stops/308449", "https://data.delijn.be/stops/308691"], ["https://data.delijn.be/stops/202976", "https://data.delijn.be/stops/202977"], ["https://data.delijn.be/stops/502296", "https://data.delijn.be/stops/507294"], ["https://data.delijn.be/stops/300353", "https://data.delijn.be/stops/304063"], ["https://data.delijn.be/stops/303383", "https://data.delijn.be/stops/303672"], ["https://data.delijn.be/stops/109309", "https://data.delijn.be/stops/109311"], ["https://data.delijn.be/stops/407669", "https://data.delijn.be/stops/407672"], ["https://data.delijn.be/stops/402973", "https://data.delijn.be/stops/402977"], ["https://data.delijn.be/stops/104514", "https://data.delijn.be/stops/107789"], ["https://data.delijn.be/stops/403711", "https://data.delijn.be/stops/403722"], ["https://data.delijn.be/stops/201157", "https://data.delijn.be/stops/201545"], ["https://data.delijn.be/stops/402106", "https://data.delijn.be/stops/402195"], ["https://data.delijn.be/stops/505667", "https://data.delijn.be/stops/508110"], ["https://data.delijn.be/stops/509738", "https://data.delijn.be/stops/509740"], ["https://data.delijn.be/stops/300108", "https://data.delijn.be/stops/300115"], ["https://data.delijn.be/stops/302187", "https://data.delijn.be/stops/305068"], ["https://data.delijn.be/stops/408316", "https://data.delijn.be/stops/408399"], ["https://data.delijn.be/stops/405838", "https://data.delijn.be/stops/409755"], ["https://data.delijn.be/stops/402709", "https://data.delijn.be/stops/402946"], ["https://data.delijn.be/stops/408428", "https://data.delijn.be/stops/408747"], ["https://data.delijn.be/stops/204062", "https://data.delijn.be/stops/205711"], ["https://data.delijn.be/stops/502466", "https://data.delijn.be/stops/507466"], ["https://data.delijn.be/stops/406733", "https://data.delijn.be/stops/408873"], ["https://data.delijn.be/stops/104343", "https://data.delijn.be/stops/105911"], ["https://data.delijn.be/stops/503455", "https://data.delijn.be/stops/508455"], ["https://data.delijn.be/stops/305149", "https://data.delijn.be/stops/307086"], ["https://data.delijn.be/stops/104280", "https://data.delijn.be/stops/105840"], ["https://data.delijn.be/stops/201877", "https://data.delijn.be/stops/203275"], ["https://data.delijn.be/stops/304405", "https://data.delijn.be/stops/306874"], ["https://data.delijn.be/stops/300023", "https://data.delijn.be/stops/307490"], ["https://data.delijn.be/stops/307596", "https://data.delijn.be/stops/307740"], ["https://data.delijn.be/stops/202700", "https://data.delijn.be/stops/203700"], ["https://data.delijn.be/stops/104699", "https://data.delijn.be/stops/108179"], ["https://data.delijn.be/stops/509532", "https://data.delijn.be/stops/509533"], ["https://data.delijn.be/stops/206410", "https://data.delijn.be/stops/207084"], ["https://data.delijn.be/stops/504692", "https://data.delijn.be/stops/509077"], ["https://data.delijn.be/stops/401039", "https://data.delijn.be/stops/401095"], ["https://data.delijn.be/stops/506448", "https://data.delijn.be/stops/506453"], ["https://data.delijn.be/stops/405761", "https://data.delijn.be/stops/302843"], ["https://data.delijn.be/stops/303310", "https://data.delijn.be/stops/303315"], ["https://data.delijn.be/stops/200390", "https://data.delijn.be/stops/201396"], ["https://data.delijn.be/stops/107841", "https://data.delijn.be/stops/107843"], ["https://data.delijn.be/stops/206942", "https://data.delijn.be/stops/208101"], ["https://data.delijn.be/stops/505173", "https://data.delijn.be/stops/505581"], ["https://data.delijn.be/stops/200988", "https://data.delijn.be/stops/204951"], ["https://data.delijn.be/stops/204231", "https://data.delijn.be/stops/205231"], ["https://data.delijn.be/stops/404715", "https://data.delijn.be/stops/404769"], ["https://data.delijn.be/stops/501769", "https://data.delijn.be/stops/502530"], ["https://data.delijn.be/stops/204215", "https://data.delijn.be/stops/205213"], ["https://data.delijn.be/stops/101150", "https://data.delijn.be/stops/105490"], ["https://data.delijn.be/stops/504783", "https://data.delijn.be/stops/504784"], ["https://data.delijn.be/stops/202821", "https://data.delijn.be/stops/203912"], ["https://data.delijn.be/stops/508253", "https://data.delijn.be/stops/508750"], ["https://data.delijn.be/stops/202042", "https://data.delijn.be/stops/203225"], ["https://data.delijn.be/stops/501450", "https://data.delijn.be/stops/506451"], ["https://data.delijn.be/stops/503154", "https://data.delijn.be/stops/506001"], ["https://data.delijn.be/stops/307645", "https://data.delijn.be/stops/307687"], ["https://data.delijn.be/stops/201459", "https://data.delijn.be/stops/201737"], ["https://data.delijn.be/stops/204539", "https://data.delijn.be/stops/205299"], ["https://data.delijn.be/stops/405740", "https://data.delijn.be/stops/405744"], ["https://data.delijn.be/stops/404407", "https://data.delijn.be/stops/404420"], ["https://data.delijn.be/stops/504598", "https://data.delijn.be/stops/504605"], ["https://data.delijn.be/stops/405073", "https://data.delijn.be/stops/405888"], ["https://data.delijn.be/stops/303959", "https://data.delijn.be/stops/303973"], ["https://data.delijn.be/stops/504033", "https://data.delijn.be/stops/504035"], ["https://data.delijn.be/stops/103259", "https://data.delijn.be/stops/105856"], ["https://data.delijn.be/stops/302294", "https://data.delijn.be/stops/303494"], ["https://data.delijn.be/stops/304954", "https://data.delijn.be/stops/304955"], ["https://data.delijn.be/stops/510026", "https://data.delijn.be/stops/510027"], ["https://data.delijn.be/stops/505659", "https://data.delijn.be/stops/508506"], ["https://data.delijn.be/stops/200841", "https://data.delijn.be/stops/202312"], ["https://data.delijn.be/stops/302238", "https://data.delijn.be/stops/302928"], ["https://data.delijn.be/stops/505074", "https://data.delijn.be/stops/505740"], ["https://data.delijn.be/stops/401814", "https://data.delijn.be/stops/406895"], ["https://data.delijn.be/stops/505665", "https://data.delijn.be/stops/507473"], ["https://data.delijn.be/stops/301154", "https://data.delijn.be/stops/302226"], ["https://data.delijn.be/stops/404960", "https://data.delijn.be/stops/409526"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/408972"], ["https://data.delijn.be/stops/304147", "https://data.delijn.be/stops/304170"], ["https://data.delijn.be/stops/101938", "https://data.delijn.be/stops/109342"], ["https://data.delijn.be/stops/401160", "https://data.delijn.be/stops/401161"], ["https://data.delijn.be/stops/208175", "https://data.delijn.be/stops/208177"], ["https://data.delijn.be/stops/203981", "https://data.delijn.be/stops/203982"], ["https://data.delijn.be/stops/503551", "https://data.delijn.be/stops/503555"], ["https://data.delijn.be/stops/300085", "https://data.delijn.be/stops/300107"], ["https://data.delijn.be/stops/505398", "https://data.delijn.be/stops/506658"], ["https://data.delijn.be/stops/208568", "https://data.delijn.be/stops/208569"], ["https://data.delijn.be/stops/104393", "https://data.delijn.be/stops/104397"], ["https://data.delijn.be/stops/503234", "https://data.delijn.be/stops/503965"], ["https://data.delijn.be/stops/207111", "https://data.delijn.be/stops/207419"], ["https://data.delijn.be/stops/106494", "https://data.delijn.be/stops/106495"], ["https://data.delijn.be/stops/102061", "https://data.delijn.be/stops/106533"], ["https://data.delijn.be/stops/403766", "https://data.delijn.be/stops/408184"], ["https://data.delijn.be/stops/202367", "https://data.delijn.be/stops/203395"], ["https://data.delijn.be/stops/101983", "https://data.delijn.be/stops/109049"], ["https://data.delijn.be/stops/101414", "https://data.delijn.be/stops/102067"], ["https://data.delijn.be/stops/206904", "https://data.delijn.be/stops/207905"], ["https://data.delijn.be/stops/307967", "https://data.delijn.be/stops/307968"], ["https://data.delijn.be/stops/205247", "https://data.delijn.be/stops/205753"], ["https://data.delijn.be/stops/101460", "https://data.delijn.be/stops/101757"], ["https://data.delijn.be/stops/304978", "https://data.delijn.be/stops/305021"], ["https://data.delijn.be/stops/202180", "https://data.delijn.be/stops/205080"], ["https://data.delijn.be/stops/303439", "https://data.delijn.be/stops/303451"], ["https://data.delijn.be/stops/204099", "https://data.delijn.be/stops/206240"], ["https://data.delijn.be/stops/507369", "https://data.delijn.be/stops/507768"], ["https://data.delijn.be/stops/206965", "https://data.delijn.be/stops/207965"], ["https://data.delijn.be/stops/206691", "https://data.delijn.be/stops/207954"], ["https://data.delijn.be/stops/407351", "https://data.delijn.be/stops/409435"], ["https://data.delijn.be/stops/102019", "https://data.delijn.be/stops/102093"], ["https://data.delijn.be/stops/302184", "https://data.delijn.be/stops/305080"], ["https://data.delijn.be/stops/401448", "https://data.delijn.be/stops/401449"], ["https://data.delijn.be/stops/201699", "https://data.delijn.be/stops/208641"], ["https://data.delijn.be/stops/107841", "https://data.delijn.be/stops/109652"], ["https://data.delijn.be/stops/407608", "https://data.delijn.be/stops/407609"], ["https://data.delijn.be/stops/301234", "https://data.delijn.be/stops/307850"], ["https://data.delijn.be/stops/105085", "https://data.delijn.be/stops/105100"], ["https://data.delijn.be/stops/201684", "https://data.delijn.be/stops/202316"], ["https://data.delijn.be/stops/308750", "https://data.delijn.be/stops/308751"], ["https://data.delijn.be/stops/106454", "https://data.delijn.be/stops/106455"], ["https://data.delijn.be/stops/502505", "https://data.delijn.be/stops/505599"], ["https://data.delijn.be/stops/407866", "https://data.delijn.be/stops/407891"], ["https://data.delijn.be/stops/503703", "https://data.delijn.be/stops/508266"], ["https://data.delijn.be/stops/408603", "https://data.delijn.be/stops/408611"], ["https://data.delijn.be/stops/302200", "https://data.delijn.be/stops/302441"], ["https://data.delijn.be/stops/200585", "https://data.delijn.be/stops/201583"], ["https://data.delijn.be/stops/102917", "https://data.delijn.be/stops/102919"], ["https://data.delijn.be/stops/101704", "https://data.delijn.be/stops/103348"], ["https://data.delijn.be/stops/305928", "https://data.delijn.be/stops/306968"], ["https://data.delijn.be/stops/101223", "https://data.delijn.be/stops/107791"], ["https://data.delijn.be/stops/410003", "https://data.delijn.be/stops/410005"], ["https://data.delijn.be/stops/503730", "https://data.delijn.be/stops/508756"], ["https://data.delijn.be/stops/300409", "https://data.delijn.be/stops/308963"], ["https://data.delijn.be/stops/201005", "https://data.delijn.be/stops/202517"], ["https://data.delijn.be/stops/101888", "https://data.delijn.be/stops/103152"], ["https://data.delijn.be/stops/109280", "https://data.delijn.be/stops/109285"], ["https://data.delijn.be/stops/503766", "https://data.delijn.be/stops/503966"], ["https://data.delijn.be/stops/300323", "https://data.delijn.be/stops/304862"], ["https://data.delijn.be/stops/109795", "https://data.delijn.be/stops/109797"], ["https://data.delijn.be/stops/407972", "https://data.delijn.be/stops/303890"], ["https://data.delijn.be/stops/503636", "https://data.delijn.be/stops/508636"], ["https://data.delijn.be/stops/509598", "https://data.delijn.be/stops/509600"], ["https://data.delijn.be/stops/407627", "https://data.delijn.be/stops/407671"], ["https://data.delijn.be/stops/405456", "https://data.delijn.be/stops/405655"], ["https://data.delijn.be/stops/403645", "https://data.delijn.be/stops/407515"], ["https://data.delijn.be/stops/205049", "https://data.delijn.be/stops/205705"], ["https://data.delijn.be/stops/301392", "https://data.delijn.be/stops/306137"], ["https://data.delijn.be/stops/208305", "https://data.delijn.be/stops/209306"], ["https://data.delijn.be/stops/304191", "https://data.delijn.be/stops/305495"], ["https://data.delijn.be/stops/305150", "https://data.delijn.be/stops/305151"], ["https://data.delijn.be/stops/501157", "https://data.delijn.be/stops/506157"], ["https://data.delijn.be/stops/108853", "https://data.delijn.be/stops/108854"], ["https://data.delijn.be/stops/301080", "https://data.delijn.be/stops/302479"], ["https://data.delijn.be/stops/303695", "https://data.delijn.be/stops/303734"], ["https://data.delijn.be/stops/200777", "https://data.delijn.be/stops/209309"], ["https://data.delijn.be/stops/504831", "https://data.delijn.be/stops/508963"], ["https://data.delijn.be/stops/103128", "https://data.delijn.be/stops/106785"], ["https://data.delijn.be/stops/405540", "https://data.delijn.be/stops/405620"], ["https://data.delijn.be/stops/202016", "https://data.delijn.be/stops/203015"], ["https://data.delijn.be/stops/308146", "https://data.delijn.be/stops/308157"], ["https://data.delijn.be/stops/206970", "https://data.delijn.be/stops/207970"], ["https://data.delijn.be/stops/503556", "https://data.delijn.be/stops/503573"], ["https://data.delijn.be/stops/300567", "https://data.delijn.be/stops/307864"], ["https://data.delijn.be/stops/503933", "https://data.delijn.be/stops/509041"], ["https://data.delijn.be/stops/208474", "https://data.delijn.be/stops/208475"], ["https://data.delijn.be/stops/407224", "https://data.delijn.be/stops/407241"], ["https://data.delijn.be/stops/304510", "https://data.delijn.be/stops/306344"], ["https://data.delijn.be/stops/304473", "https://data.delijn.be/stops/307568"], ["https://data.delijn.be/stops/505951", "https://data.delijn.be/stops/508288"], ["https://data.delijn.be/stops/202721", "https://data.delijn.be/stops/203722"], ["https://data.delijn.be/stops/107346", "https://data.delijn.be/stops/108159"], ["https://data.delijn.be/stops/503830", "https://data.delijn.be/stops/508830"], ["https://data.delijn.be/stops/204419", "https://data.delijn.be/stops/204474"], ["https://data.delijn.be/stops/206766", "https://data.delijn.be/stops/208559"], ["https://data.delijn.be/stops/201083", "https://data.delijn.be/stops/201370"], ["https://data.delijn.be/stops/502444", "https://data.delijn.be/stops/507444"], ["https://data.delijn.be/stops/307356", "https://data.delijn.be/stops/307366"], ["https://data.delijn.be/stops/503372", "https://data.delijn.be/stops/503403"], ["https://data.delijn.be/stops/207440", "https://data.delijn.be/stops/209465"], ["https://data.delijn.be/stops/107822", "https://data.delijn.be/stops/107884"], ["https://data.delijn.be/stops/107549", "https://data.delijn.be/stops/107552"], ["https://data.delijn.be/stops/303189", "https://data.delijn.be/stops/303200"], ["https://data.delijn.be/stops/302272", "https://data.delijn.be/stops/302279"], ["https://data.delijn.be/stops/105635", "https://data.delijn.be/stops/105910"], ["https://data.delijn.be/stops/302570", "https://data.delijn.be/stops/302579"], ["https://data.delijn.be/stops/101378", "https://data.delijn.be/stops/109715"], ["https://data.delijn.be/stops/400594", "https://data.delijn.be/stops/400604"], ["https://data.delijn.be/stops/409350", "https://data.delijn.be/stops/409351"], ["https://data.delijn.be/stops/507607", "https://data.delijn.be/stops/507608"], ["https://data.delijn.be/stops/208699", "https://data.delijn.be/stops/208700"], ["https://data.delijn.be/stops/304303", "https://data.delijn.be/stops/304351"], ["https://data.delijn.be/stops/409431", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/102577", "https://data.delijn.be/stops/102578"], ["https://data.delijn.be/stops/207888", "https://data.delijn.be/stops/207893"], ["https://data.delijn.be/stops/502173", "https://data.delijn.be/stops/505814"], ["https://data.delijn.be/stops/509829", "https://data.delijn.be/stops/509830"], ["https://data.delijn.be/stops/501305", "https://data.delijn.be/stops/506353"], ["https://data.delijn.be/stops/202823", "https://data.delijn.be/stops/203925"], ["https://data.delijn.be/stops/503223", "https://data.delijn.be/stops/508220"], ["https://data.delijn.be/stops/505586", "https://data.delijn.be/stops/505764"], ["https://data.delijn.be/stops/301439", "https://data.delijn.be/stops/307799"], ["https://data.delijn.be/stops/500116", "https://data.delijn.be/stops/502272"], ["https://data.delijn.be/stops/204546", "https://data.delijn.be/stops/205333"], ["https://data.delijn.be/stops/504820", "https://data.delijn.be/stops/508208"], ["https://data.delijn.be/stops/305408", "https://data.delijn.be/stops/305415"], ["https://data.delijn.be/stops/407627", "https://data.delijn.be/stops/408448"], ["https://data.delijn.be/stops/300745", "https://data.delijn.be/stops/304774"], ["https://data.delijn.be/stops/408776", "https://data.delijn.be/stops/408777"], ["https://data.delijn.be/stops/508647", "https://data.delijn.be/stops/509750"], ["https://data.delijn.be/stops/404562", "https://data.delijn.be/stops/404563"], ["https://data.delijn.be/stops/203862", "https://data.delijn.be/stops/208705"], ["https://data.delijn.be/stops/305216", "https://data.delijn.be/stops/308049"], ["https://data.delijn.be/stops/201751", "https://data.delijn.be/stops/209280"], ["https://data.delijn.be/stops/107110", "https://data.delijn.be/stops/109040"], ["https://data.delijn.be/stops/106365", "https://data.delijn.be/stops/106367"], ["https://data.delijn.be/stops/504434", "https://data.delijn.be/stops/509412"], ["https://data.delijn.be/stops/503494", "https://data.delijn.be/stops/508494"], ["https://data.delijn.be/stops/204225", "https://data.delijn.be/stops/204599"], ["https://data.delijn.be/stops/303792", "https://data.delijn.be/stops/303797"], ["https://data.delijn.be/stops/102458", "https://data.delijn.be/stops/102462"], ["https://data.delijn.be/stops/104042", "https://data.delijn.be/stops/109761"], ["https://data.delijn.be/stops/208351", "https://data.delijn.be/stops/208780"], ["https://data.delijn.be/stops/502682", "https://data.delijn.be/stops/507682"], ["https://data.delijn.be/stops/206482", "https://data.delijn.be/stops/207482"], ["https://data.delijn.be/stops/405220", "https://data.delijn.be/stops/405235"], ["https://data.delijn.be/stops/301440", "https://data.delijn.be/stops/302128"], ["https://data.delijn.be/stops/103114", "https://data.delijn.be/stops/106815"], ["https://data.delijn.be/stops/400403", "https://data.delijn.be/stops/405864"], ["https://data.delijn.be/stops/403283", "https://data.delijn.be/stops/403372"], ["https://data.delijn.be/stops/102293", "https://data.delijn.be/stops/107981"], ["https://data.delijn.be/stops/502083", "https://data.delijn.be/stops/502668"], ["https://data.delijn.be/stops/503829", "https://data.delijn.be/stops/505994"], ["https://data.delijn.be/stops/103169", "https://data.delijn.be/stops/109837"], ["https://data.delijn.be/stops/503517", "https://data.delijn.be/stops/508517"], ["https://data.delijn.be/stops/205258", "https://data.delijn.be/stops/205260"], ["https://data.delijn.be/stops/201139", "https://data.delijn.be/stops/201223"], ["https://data.delijn.be/stops/404200", "https://data.delijn.be/stops/404215"], ["https://data.delijn.be/stops/202776", "https://data.delijn.be/stops/203776"], ["https://data.delijn.be/stops/201511", "https://data.delijn.be/stops/201551"], ["https://data.delijn.be/stops/501678", "https://data.delijn.be/stops/506145"], ["https://data.delijn.be/stops/405304", "https://data.delijn.be/stops/408444"], ["https://data.delijn.be/stops/108238", "https://data.delijn.be/stops/108241"], ["https://data.delijn.be/stops/304956", "https://data.delijn.be/stops/304969"], ["https://data.delijn.be/stops/307351", "https://data.delijn.be/stops/307440"], ["https://data.delijn.be/stops/403613", "https://data.delijn.be/stops/403648"], ["https://data.delijn.be/stops/305162", "https://data.delijn.be/stops/305183"], ["https://data.delijn.be/stops/101203", "https://data.delijn.be/stops/205662"], ["https://data.delijn.be/stops/204170", "https://data.delijn.be/stops/205170"], ["https://data.delijn.be/stops/400295", "https://data.delijn.be/stops/400366"], ["https://data.delijn.be/stops/101076", "https://data.delijn.be/stops/107152"], ["https://data.delijn.be/stops/104696", "https://data.delijn.be/stops/107352"], ["https://data.delijn.be/stops/108198", "https://data.delijn.be/stops/108202"], ["https://data.delijn.be/stops/209081", "https://data.delijn.be/stops/209792"], ["https://data.delijn.be/stops/400076", "https://data.delijn.be/stops/400077"], ["https://data.delijn.be/stops/406466", "https://data.delijn.be/stops/407513"], ["https://data.delijn.be/stops/501520", "https://data.delijn.be/stops/501521"], ["https://data.delijn.be/stops/503877", "https://data.delijn.be/stops/508877"], ["https://data.delijn.be/stops/404317", "https://data.delijn.be/stops/409659"], ["https://data.delijn.be/stops/104904", "https://data.delijn.be/stops/104906"], ["https://data.delijn.be/stops/504981", "https://data.delijn.be/stops/508903"], ["https://data.delijn.be/stops/408569", "https://data.delijn.be/stops/408572"], ["https://data.delijn.be/stops/504236", "https://data.delijn.be/stops/505842"], ["https://data.delijn.be/stops/201455", "https://data.delijn.be/stops/203320"], ["https://data.delijn.be/stops/103003", "https://data.delijn.be/stops/105824"], ["https://data.delijn.be/stops/400761", "https://data.delijn.be/stops/400805"], ["https://data.delijn.be/stops/206764", "https://data.delijn.be/stops/307314"], ["https://data.delijn.be/stops/103481", "https://data.delijn.be/stops/109162"], ["https://data.delijn.be/stops/505981", "https://data.delijn.be/stops/508345"], ["https://data.delijn.be/stops/407833", "https://data.delijn.be/stops/407909"], ["https://data.delijn.be/stops/101394", "https://data.delijn.be/stops/106516"], ["https://data.delijn.be/stops/400785", "https://data.delijn.be/stops/409536"], ["https://data.delijn.be/stops/200001", "https://data.delijn.be/stops/210008"], ["https://data.delijn.be/stops/402323", "https://data.delijn.be/stops/405581"], ["https://data.delijn.be/stops/208446", "https://data.delijn.be/stops/209447"], ["https://data.delijn.be/stops/201918", "https://data.delijn.be/stops/207567"], ["https://data.delijn.be/stops/501299", "https://data.delijn.be/stops/506330"], ["https://data.delijn.be/stops/208158", "https://data.delijn.be/stops/209157"], ["https://data.delijn.be/stops/300156", "https://data.delijn.be/stops/308700"], ["https://data.delijn.be/stops/400532", "https://data.delijn.be/stops/400533"], ["https://data.delijn.be/stops/406929", "https://data.delijn.be/stops/407422"], ["https://data.delijn.be/stops/405646", "https://data.delijn.be/stops/408643"], ["https://data.delijn.be/stops/304151", "https://data.delijn.be/stops/305450"], ["https://data.delijn.be/stops/403908", "https://data.delijn.be/stops/403911"], ["https://data.delijn.be/stops/105194", "https://data.delijn.be/stops/108884"], ["https://data.delijn.be/stops/101982", "https://data.delijn.be/stops/300042"], ["https://data.delijn.be/stops/208525", "https://data.delijn.be/stops/209082"], ["https://data.delijn.be/stops/204387", "https://data.delijn.be/stops/205389"], ["https://data.delijn.be/stops/300352", "https://data.delijn.be/stops/304859"], ["https://data.delijn.be/stops/201938", "https://data.delijn.be/stops/207966"], ["https://data.delijn.be/stops/301046", "https://data.delijn.be/stops/301047"], ["https://data.delijn.be/stops/400264", "https://data.delijn.be/stops/400400"], ["https://data.delijn.be/stops/106401", "https://data.delijn.be/stops/107407"], ["https://data.delijn.be/stops/203331", "https://data.delijn.be/stops/203337"], ["https://data.delijn.be/stops/502080", "https://data.delijn.be/stops/502082"], ["https://data.delijn.be/stops/201667", "https://data.delijn.be/stops/201808"], ["https://data.delijn.be/stops/107379", "https://data.delijn.be/stops/109594"], ["https://data.delijn.be/stops/206007", "https://data.delijn.be/stops/207079"], ["https://data.delijn.be/stops/403481", "https://data.delijn.be/stops/403483"], ["https://data.delijn.be/stops/300462", "https://data.delijn.be/stops/308061"], ["https://data.delijn.be/stops/407633", "https://data.delijn.be/stops/407656"], ["https://data.delijn.be/stops/403509", "https://data.delijn.be/stops/410282"], ["https://data.delijn.be/stops/200696", "https://data.delijn.be/stops/208646"], ["https://data.delijn.be/stops/304999", "https://data.delijn.be/stops/305009"], ["https://data.delijn.be/stops/201314", "https://data.delijn.be/stops/201591"], ["https://data.delijn.be/stops/101584", "https://data.delijn.be/stops/105451"], ["https://data.delijn.be/stops/502744", "https://data.delijn.be/stops/505654"], ["https://data.delijn.be/stops/402336", "https://data.delijn.be/stops/402337"], ["https://data.delijn.be/stops/102427", "https://data.delijn.be/stops/103592"], ["https://data.delijn.be/stops/401426", "https://data.delijn.be/stops/401427"], ["https://data.delijn.be/stops/406212", "https://data.delijn.be/stops/406230"], ["https://data.delijn.be/stops/403096", "https://data.delijn.be/stops/403247"], ["https://data.delijn.be/stops/405447", "https://data.delijn.be/stops/409292"], ["https://data.delijn.be/stops/105414", "https://data.delijn.be/stops/105416"], ["https://data.delijn.be/stops/406642", "https://data.delijn.be/stops/406643"], ["https://data.delijn.be/stops/104954", "https://data.delijn.be/stops/109728"], ["https://data.delijn.be/stops/106698", "https://data.delijn.be/stops/106702"], ["https://data.delijn.be/stops/107881", "https://data.delijn.be/stops/107883"], ["https://data.delijn.be/stops/407330", "https://data.delijn.be/stops/407331"], ["https://data.delijn.be/stops/303077", "https://data.delijn.be/stops/307049"], ["https://data.delijn.be/stops/308772", "https://data.delijn.be/stops/308776"], ["https://data.delijn.be/stops/105014", "https://data.delijn.be/stops/105016"], ["https://data.delijn.be/stops/303347", "https://data.delijn.be/stops/305121"], ["https://data.delijn.be/stops/300725", "https://data.delijn.be/stops/300732"], ["https://data.delijn.be/stops/208248", "https://data.delijn.be/stops/209248"], ["https://data.delijn.be/stops/204252", "https://data.delijn.be/stops/205734"], ["https://data.delijn.be/stops/502576", "https://data.delijn.be/stops/507166"], ["https://data.delijn.be/stops/401765", "https://data.delijn.be/stops/401799"], ["https://data.delijn.be/stops/504109", "https://data.delijn.be/stops/509107"], ["https://data.delijn.be/stops/405258", "https://data.delijn.be/stops/410087"], ["https://data.delijn.be/stops/104794", "https://data.delijn.be/stops/107704"], ["https://data.delijn.be/stops/206041", "https://data.delijn.be/stops/206056"], ["https://data.delijn.be/stops/503517", "https://data.delijn.be/stops/504791"], ["https://data.delijn.be/stops/503473", "https://data.delijn.be/stops/508970"], ["https://data.delijn.be/stops/304024", "https://data.delijn.be/stops/304025"], ["https://data.delijn.be/stops/304997", "https://data.delijn.be/stops/305018"], ["https://data.delijn.be/stops/408568", "https://data.delijn.be/stops/408815"], ["https://data.delijn.be/stops/302320", "https://data.delijn.be/stops/304176"], ["https://data.delijn.be/stops/203870", "https://data.delijn.be/stops/209713"], ["https://data.delijn.be/stops/101452", "https://data.delijn.be/stops/102631"], ["https://data.delijn.be/stops/209046", "https://data.delijn.be/stops/209562"], ["https://data.delijn.be/stops/301677", "https://data.delijn.be/stops/301680"], ["https://data.delijn.be/stops/301925", "https://data.delijn.be/stops/301927"], ["https://data.delijn.be/stops/503751", "https://data.delijn.be/stops/505566"], ["https://data.delijn.be/stops/303576", "https://data.delijn.be/stops/303585"], ["https://data.delijn.be/stops/105290", "https://data.delijn.be/stops/105292"], ["https://data.delijn.be/stops/305831", "https://data.delijn.be/stops/305833"], ["https://data.delijn.be/stops/407295", "https://data.delijn.be/stops/408131"], ["https://data.delijn.be/stops/305077", "https://data.delijn.be/stops/307944"], ["https://data.delijn.be/stops/408972", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/102555", "https://data.delijn.be/stops/102635"], ["https://data.delijn.be/stops/108832", "https://data.delijn.be/stops/108834"], ["https://data.delijn.be/stops/405549", "https://data.delijn.be/stops/405552"], ["https://data.delijn.be/stops/101995", "https://data.delijn.be/stops/104719"], ["https://data.delijn.be/stops/202137", "https://data.delijn.be/stops/203137"], ["https://data.delijn.be/stops/208007", "https://data.delijn.be/stops/208079"], ["https://data.delijn.be/stops/501086", "https://data.delijn.be/stops/501088"], ["https://data.delijn.be/stops/505690", "https://data.delijn.be/stops/505705"], ["https://data.delijn.be/stops/506102", "https://data.delijn.be/stops/590334"], ["https://data.delijn.be/stops/209585", "https://data.delijn.be/stops/209793"], ["https://data.delijn.be/stops/502910", "https://data.delijn.be/stops/507247"], ["https://data.delijn.be/stops/301962", "https://data.delijn.be/stops/301964"], ["https://data.delijn.be/stops/301287", "https://data.delijn.be/stops/306145"], ["https://data.delijn.be/stops/204693", "https://data.delijn.be/stops/205446"], ["https://data.delijn.be/stops/302705", "https://data.delijn.be/stops/302735"], ["https://data.delijn.be/stops/204978", "https://data.delijn.be/stops/208854"], ["https://data.delijn.be/stops/303892", "https://data.delijn.be/stops/305577"], ["https://data.delijn.be/stops/306072", "https://data.delijn.be/stops/306727"], ["https://data.delijn.be/stops/202817", "https://data.delijn.be/stops/203817"], ["https://data.delijn.be/stops/205208", "https://data.delijn.be/stops/205469"], ["https://data.delijn.be/stops/400742", "https://data.delijn.be/stops/400903"], ["https://data.delijn.be/stops/405780", "https://data.delijn.be/stops/405781"], ["https://data.delijn.be/stops/200456", "https://data.delijn.be/stops/201684"], ["https://data.delijn.be/stops/301146", "https://data.delijn.be/stops/304447"], ["https://data.delijn.be/stops/204698", "https://data.delijn.be/stops/205698"], ["https://data.delijn.be/stops/300728", "https://data.delijn.be/stops/308110"], ["https://data.delijn.be/stops/401798", "https://data.delijn.be/stops/401819"], ["https://data.delijn.be/stops/201873", "https://data.delijn.be/stops/203349"], ["https://data.delijn.be/stops/406285", "https://data.delijn.be/stops/410167"], ["https://data.delijn.be/stops/403241", "https://data.delijn.be/stops/408516"], ["https://data.delijn.be/stops/400785", "https://data.delijn.be/stops/400835"], ["https://data.delijn.be/stops/503547", "https://data.delijn.be/stops/505846"], ["https://data.delijn.be/stops/204983", "https://data.delijn.be/stops/207209"], ["https://data.delijn.be/stops/502351", "https://data.delijn.be/stops/505672"], ["https://data.delijn.be/stops/208451", "https://data.delijn.be/stops/218015"], ["https://data.delijn.be/stops/405171", "https://data.delijn.be/stops/405231"], ["https://data.delijn.be/stops/502326", "https://data.delijn.be/stops/505009"], ["https://data.delijn.be/stops/201288", "https://data.delijn.be/stops/201381"], ["https://data.delijn.be/stops/206941", "https://data.delijn.be/stops/208564"], ["https://data.delijn.be/stops/300297", "https://data.delijn.be/stops/301900"], ["https://data.delijn.be/stops/305894", "https://data.delijn.be/stops/307330"], ["https://data.delijn.be/stops/404497", "https://data.delijn.be/stops/410155"], ["https://data.delijn.be/stops/301238", "https://data.delijn.be/stops/307907"], ["https://data.delijn.be/stops/200386", "https://data.delijn.be/stops/200475"], ["https://data.delijn.be/stops/301098", "https://data.delijn.be/stops/301230"], ["https://data.delijn.be/stops/305541", "https://data.delijn.be/stops/305559"], ["https://data.delijn.be/stops/208002", "https://data.delijn.be/stops/208098"], ["https://data.delijn.be/stops/505734", "https://data.delijn.be/stops/507609"], ["https://data.delijn.be/stops/503731", "https://data.delijn.be/stops/508445"], ["https://data.delijn.be/stops/101375", "https://data.delijn.be/stops/101985"], ["https://data.delijn.be/stops/402805", "https://data.delijn.be/stops/406002"], ["https://data.delijn.be/stops/101162", "https://data.delijn.be/stops/105976"], ["https://data.delijn.be/stops/105518", "https://data.delijn.be/stops/105519"], ["https://data.delijn.be/stops/301659", "https://data.delijn.be/stops/301891"], ["https://data.delijn.be/stops/403067", "https://data.delijn.be/stops/410329"], ["https://data.delijn.be/stops/204739", "https://data.delijn.be/stops/204766"], ["https://data.delijn.be/stops/106797", "https://data.delijn.be/stops/106800"], ["https://data.delijn.be/stops/301452", "https://data.delijn.be/stops/302518"], ["https://data.delijn.be/stops/206346", "https://data.delijn.be/stops/207346"], ["https://data.delijn.be/stops/102174", "https://data.delijn.be/stops/109368"], ["https://data.delijn.be/stops/308519", "https://data.delijn.be/stops/308520"], ["https://data.delijn.be/stops/304831", "https://data.delijn.be/stops/304886"], ["https://data.delijn.be/stops/104880", "https://data.delijn.be/stops/108565"], ["https://data.delijn.be/stops/202854", "https://data.delijn.be/stops/202855"], ["https://data.delijn.be/stops/402503", "https://data.delijn.be/stops/404062"], ["https://data.delijn.be/stops/503686", "https://data.delijn.be/stops/508689"], ["https://data.delijn.be/stops/501006", "https://data.delijn.be/stops/506504"], ["https://data.delijn.be/stops/305087", "https://data.delijn.be/stops/305089"], ["https://data.delijn.be/stops/403730", "https://data.delijn.be/stops/403875"], ["https://data.delijn.be/stops/301830", "https://data.delijn.be/stops/301842"], ["https://data.delijn.be/stops/502323", "https://data.delijn.be/stops/507317"], ["https://data.delijn.be/stops/501467", "https://data.delijn.be/stops/505032"], ["https://data.delijn.be/stops/305743", "https://data.delijn.be/stops/306333"], ["https://data.delijn.be/stops/107290", "https://data.delijn.be/stops/108905"], ["https://data.delijn.be/stops/208483", "https://data.delijn.be/stops/209484"], ["https://data.delijn.be/stops/108838", "https://data.delijn.be/stops/108851"], ["https://data.delijn.be/stops/407258", "https://data.delijn.be/stops/409771"], ["https://data.delijn.be/stops/102766", "https://data.delijn.be/stops/107401"], ["https://data.delijn.be/stops/204979", "https://data.delijn.be/stops/208424"], ["https://data.delijn.be/stops/103623", "https://data.delijn.be/stops/107736"], ["https://data.delijn.be/stops/102500", "https://data.delijn.be/stops/104280"], ["https://data.delijn.be/stops/102247", "https://data.delijn.be/stops/102863"], ["https://data.delijn.be/stops/503746", "https://data.delijn.be/stops/508744"], ["https://data.delijn.be/stops/404883", "https://data.delijn.be/stops/404958"], ["https://data.delijn.be/stops/408002", "https://data.delijn.be/stops/408003"], ["https://data.delijn.be/stops/301623", "https://data.delijn.be/stops/301624"], ["https://data.delijn.be/stops/102741", "https://data.delijn.be/stops/103039"], ["https://data.delijn.be/stops/404738", "https://data.delijn.be/stops/404945"], ["https://data.delijn.be/stops/202611", "https://data.delijn.be/stops/203613"], ["https://data.delijn.be/stops/101515", "https://data.delijn.be/stops/102056"], ["https://data.delijn.be/stops/201638", "https://data.delijn.be/stops/201896"], ["https://data.delijn.be/stops/200009", "https://data.delijn.be/stops/201009"], ["https://data.delijn.be/stops/204788", "https://data.delijn.be/stops/205791"], ["https://data.delijn.be/stops/101685", "https://data.delijn.be/stops/107395"], ["https://data.delijn.be/stops/208032", "https://data.delijn.be/stops/209033"], ["https://data.delijn.be/stops/103995", "https://data.delijn.be/stops/104275"], ["https://data.delijn.be/stops/401900", "https://data.delijn.be/stops/403576"], ["https://data.delijn.be/stops/500028", "https://data.delijn.be/stops/503121"], ["https://data.delijn.be/stops/505036", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/103022", "https://data.delijn.be/stops/109677"], ["https://data.delijn.be/stops/102912", "https://data.delijn.be/stops/106711"], ["https://data.delijn.be/stops/503191", "https://data.delijn.be/stops/508191"], ["https://data.delijn.be/stops/302612", "https://data.delijn.be/stops/302655"], ["https://data.delijn.be/stops/208364", "https://data.delijn.be/stops/208776"], ["https://data.delijn.be/stops/302719", "https://data.delijn.be/stops/308597"], ["https://data.delijn.be/stops/502354", "https://data.delijn.be/stops/505016"], ["https://data.delijn.be/stops/400548", "https://data.delijn.be/stops/404061"], ["https://data.delijn.be/stops/300305", "https://data.delijn.be/stops/301281"], ["https://data.delijn.be/stops/101892", "https://data.delijn.be/stops/103964"], ["https://data.delijn.be/stops/404169", "https://data.delijn.be/stops/410185"], ["https://data.delijn.be/stops/408530", "https://data.delijn.be/stops/408755"], ["https://data.delijn.be/stops/405065", "https://data.delijn.be/stops/406548"], ["https://data.delijn.be/stops/202093", "https://data.delijn.be/stops/202094"], ["https://data.delijn.be/stops/503108", "https://data.delijn.be/stops/509631"], ["https://data.delijn.be/stops/105565", "https://data.delijn.be/stops/105570"], ["https://data.delijn.be/stops/503463", "https://data.delijn.be/stops/508463"], ["https://data.delijn.be/stops/403275", "https://data.delijn.be/stops/403497"], ["https://data.delijn.be/stops/202381", "https://data.delijn.be/stops/202382"], ["https://data.delijn.be/stops/106315", "https://data.delijn.be/stops/109139"], ["https://data.delijn.be/stops/105963", "https://data.delijn.be/stops/105964"], ["https://data.delijn.be/stops/206118", "https://data.delijn.be/stops/207118"], ["https://data.delijn.be/stops/502237", "https://data.delijn.be/stops/505754"], ["https://data.delijn.be/stops/305769", "https://data.delijn.be/stops/305771"], ["https://data.delijn.be/stops/403336", "https://data.delijn.be/stops/403337"], ["https://data.delijn.be/stops/206114", "https://data.delijn.be/stops/206115"], ["https://data.delijn.be/stops/508256", "https://data.delijn.be/stops/508446"], ["https://data.delijn.be/stops/102178", "https://data.delijn.be/stops/103895"], ["https://data.delijn.be/stops/505847", "https://data.delijn.be/stops/508973"], ["https://data.delijn.be/stops/407088", "https://data.delijn.be/stops/409498"], ["https://data.delijn.be/stops/402459", "https://data.delijn.be/stops/402462"], ["https://data.delijn.be/stops/405079", "https://data.delijn.be/stops/405108"], ["https://data.delijn.be/stops/501190", "https://data.delijn.be/stops/506190"], ["https://data.delijn.be/stops/303732", "https://data.delijn.be/stops/303749"], ["https://data.delijn.be/stops/304265", "https://data.delijn.be/stops/304266"], ["https://data.delijn.be/stops/503413", "https://data.delijn.be/stops/505856"], ["https://data.delijn.be/stops/408271", "https://data.delijn.be/stops/408305"], ["https://data.delijn.be/stops/200914", "https://data.delijn.be/stops/202087"], ["https://data.delijn.be/stops/501023", "https://data.delijn.be/stops/501028"], ["https://data.delijn.be/stops/400657", "https://data.delijn.be/stops/401250"], ["https://data.delijn.be/stops/208336", "https://data.delijn.be/stops/208790"], ["https://data.delijn.be/stops/404104", "https://data.delijn.be/stops/408738"], ["https://data.delijn.be/stops/303595", "https://data.delijn.be/stops/308604"], ["https://data.delijn.be/stops/209240", "https://data.delijn.be/stops/209716"], ["https://data.delijn.be/stops/300131", "https://data.delijn.be/stops/306808"], ["https://data.delijn.be/stops/207724", "https://data.delijn.be/stops/207727"], ["https://data.delijn.be/stops/208115", "https://data.delijn.be/stops/208116"], ["https://data.delijn.be/stops/303656", "https://data.delijn.be/stops/307800"], ["https://data.delijn.be/stops/200384", "https://data.delijn.be/stops/204929"], ["https://data.delijn.be/stops/501389", "https://data.delijn.be/stops/505561"], ["https://data.delijn.be/stops/105513", "https://data.delijn.be/stops/105516"], ["https://data.delijn.be/stops/306809", "https://data.delijn.be/stops/306810"], ["https://data.delijn.be/stops/102217", "https://data.delijn.be/stops/105537"], ["https://data.delijn.be/stops/205566", "https://data.delijn.be/stops/303379"], ["https://data.delijn.be/stops/502256", "https://data.delijn.be/stops/502261"], ["https://data.delijn.be/stops/408928", "https://data.delijn.be/stops/408948"], ["https://data.delijn.be/stops/104108", "https://data.delijn.be/stops/205606"], ["https://data.delijn.be/stops/101063", "https://data.delijn.be/stops/106004"], ["https://data.delijn.be/stops/106199", "https://data.delijn.be/stops/106307"], ["https://data.delijn.be/stops/208379", "https://data.delijn.be/stops/209378"], ["https://data.delijn.be/stops/401502", "https://data.delijn.be/stops/401509"], ["https://data.delijn.be/stops/504725", "https://data.delijn.be/stops/509482"], ["https://data.delijn.be/stops/302915", "https://data.delijn.be/stops/302930"], ["https://data.delijn.be/stops/206956", "https://data.delijn.be/stops/207191"], ["https://data.delijn.be/stops/202381", "https://data.delijn.be/stops/203382"], ["https://data.delijn.be/stops/107932", "https://data.delijn.be/stops/204563"], ["https://data.delijn.be/stops/301724", "https://data.delijn.be/stops/301760"], ["https://data.delijn.be/stops/104097", "https://data.delijn.be/stops/107860"], ["https://data.delijn.be/stops/403892", "https://data.delijn.be/stops/405543"], ["https://data.delijn.be/stops/200811", "https://data.delijn.be/stops/200899"], ["https://data.delijn.be/stops/400064", "https://data.delijn.be/stops/409163"], ["https://data.delijn.be/stops/205350", "https://data.delijn.be/stops/205445"], ["https://data.delijn.be/stops/501334", "https://data.delijn.be/stops/506335"], ["https://data.delijn.be/stops/505816", "https://data.delijn.be/stops/508328"], ["https://data.delijn.be/stops/502249", "https://data.delijn.be/stops/509797"], ["https://data.delijn.be/stops/502188", "https://data.delijn.be/stops/505053"], ["https://data.delijn.be/stops/400473", "https://data.delijn.be/stops/400481"], ["https://data.delijn.be/stops/406939", "https://data.delijn.be/stops/407297"], ["https://data.delijn.be/stops/106752", "https://data.delijn.be/stops/109700"], ["https://data.delijn.be/stops/507474", "https://data.delijn.be/stops/507691"], ["https://data.delijn.be/stops/406522", "https://data.delijn.be/stops/406646"], ["https://data.delijn.be/stops/503262", "https://data.delijn.be/stops/508239"], ["https://data.delijn.be/stops/203821", "https://data.delijn.be/stops/203913"], ["https://data.delijn.be/stops/300639", "https://data.delijn.be/stops/300645"], ["https://data.delijn.be/stops/506261", "https://data.delijn.be/stops/506738"], ["https://data.delijn.be/stops/202363", "https://data.delijn.be/stops/202364"], ["https://data.delijn.be/stops/402567", "https://data.delijn.be/stops/407804"], ["https://data.delijn.be/stops/201950", "https://data.delijn.be/stops/202938"], ["https://data.delijn.be/stops/200462", "https://data.delijn.be/stops/201462"], ["https://data.delijn.be/stops/402935", "https://data.delijn.be/stops/403961"], ["https://data.delijn.be/stops/206767", "https://data.delijn.be/stops/206788"], ["https://data.delijn.be/stops/104626", "https://data.delijn.be/stops/105745"], ["https://data.delijn.be/stops/102653", "https://data.delijn.be/stops/107786"], ["https://data.delijn.be/stops/405862", "https://data.delijn.be/stops/408154"], ["https://data.delijn.be/stops/408417", "https://data.delijn.be/stops/409345"], ["https://data.delijn.be/stops/200647", "https://data.delijn.be/stops/202860"], ["https://data.delijn.be/stops/401135", "https://data.delijn.be/stops/401151"], ["https://data.delijn.be/stops/304019", "https://data.delijn.be/stops/304075"], ["https://data.delijn.be/stops/303934", "https://data.delijn.be/stops/304594"], ["https://data.delijn.be/stops/401210", "https://data.delijn.be/stops/401257"], ["https://data.delijn.be/stops/301400", "https://data.delijn.be/stops/303230"], ["https://data.delijn.be/stops/204587", "https://data.delijn.be/stops/204588"], ["https://data.delijn.be/stops/104974", "https://data.delijn.be/stops/109724"], ["https://data.delijn.be/stops/403090", "https://data.delijn.be/stops/409574"], ["https://data.delijn.be/stops/407601", "https://data.delijn.be/stops/407745"], ["https://data.delijn.be/stops/401300", "https://data.delijn.be/stops/401316"], ["https://data.delijn.be/stops/102394", "https://data.delijn.be/stops/108184"], ["https://data.delijn.be/stops/401989", "https://data.delijn.be/stops/404977"], ["https://data.delijn.be/stops/109191", "https://data.delijn.be/stops/109193"], ["https://data.delijn.be/stops/103096", "https://data.delijn.be/stops/109272"], ["https://data.delijn.be/stops/408242", "https://data.delijn.be/stops/308219"], ["https://data.delijn.be/stops/103250", "https://data.delijn.be/stops/103255"], ["https://data.delijn.be/stops/302147", "https://data.delijn.be/stops/303634"], ["https://data.delijn.be/stops/101343", "https://data.delijn.be/stops/108100"], ["https://data.delijn.be/stops/408084", "https://data.delijn.be/stops/408085"], ["https://data.delijn.be/stops/208168", "https://data.delijn.be/stops/208169"], ["https://data.delijn.be/stops/502347", "https://data.delijn.be/stops/505310"], ["https://data.delijn.be/stops/502539", "https://data.delijn.be/stops/502748"], ["https://data.delijn.be/stops/408110", "https://data.delijn.be/stops/408111"], ["https://data.delijn.be/stops/206451", "https://data.delijn.be/stops/206452"], ["https://data.delijn.be/stops/200166", "https://data.delijn.be/stops/202152"], ["https://data.delijn.be/stops/206865", "https://data.delijn.be/stops/209620"], ["https://data.delijn.be/stops/402701", "https://data.delijn.be/stops/405997"], ["https://data.delijn.be/stops/304310", "https://data.delijn.be/stops/304329"], ["https://data.delijn.be/stops/204072", "https://data.delijn.be/stops/204185"], ["https://data.delijn.be/stops/404772", "https://data.delijn.be/stops/408948"], ["https://data.delijn.be/stops/206492", "https://data.delijn.be/stops/207492"], ["https://data.delijn.be/stops/301029", "https://data.delijn.be/stops/301114"], ["https://data.delijn.be/stops/401401", "https://data.delijn.be/stops/300925"], ["https://data.delijn.be/stops/206542", "https://data.delijn.be/stops/206543"], ["https://data.delijn.be/stops/304623", "https://data.delijn.be/stops/304716"], ["https://data.delijn.be/stops/406976", "https://data.delijn.be/stops/409483"], ["https://data.delijn.be/stops/302622", "https://data.delijn.be/stops/302624"], ["https://data.delijn.be/stops/502797", "https://data.delijn.be/stops/507332"], ["https://data.delijn.be/stops/103466", "https://data.delijn.be/stops/106685"], ["https://data.delijn.be/stops/307471", "https://data.delijn.be/stops/307780"], ["https://data.delijn.be/stops/303412", "https://data.delijn.be/stops/303418"], ["https://data.delijn.be/stops/504776", "https://data.delijn.be/stops/509037"], ["https://data.delijn.be/stops/505504", "https://data.delijn.be/stops/505605"], ["https://data.delijn.be/stops/403044", "https://data.delijn.be/stops/403067"], ["https://data.delijn.be/stops/206829", "https://data.delijn.be/stops/207929"], ["https://data.delijn.be/stops/408021", "https://data.delijn.be/stops/408433"], ["https://data.delijn.be/stops/305690", "https://data.delijn.be/stops/305693"], ["https://data.delijn.be/stops/206625", "https://data.delijn.be/stops/206764"], ["https://data.delijn.be/stops/307111", "https://data.delijn.be/stops/308814"], ["https://data.delijn.be/stops/504054", "https://data.delijn.be/stops/509054"], ["https://data.delijn.be/stops/208392", "https://data.delijn.be/stops/209392"], ["https://data.delijn.be/stops/206599", "https://data.delijn.be/stops/207599"], ["https://data.delijn.be/stops/300560", "https://data.delijn.be/stops/307859"], ["https://data.delijn.be/stops/201911", "https://data.delijn.be/stops/203528"], ["https://data.delijn.be/stops/305053", "https://data.delijn.be/stops/307278"], ["https://data.delijn.be/stops/208423", "https://data.delijn.be/stops/209459"], ["https://data.delijn.be/stops/408258", "https://data.delijn.be/stops/408344"], ["https://data.delijn.be/stops/206323", "https://data.delijn.be/stops/206861"], ["https://data.delijn.be/stops/206487", "https://data.delijn.be/stops/206647"], ["https://data.delijn.be/stops/102894", "https://data.delijn.be/stops/103106"], ["https://data.delijn.be/stops/308156", "https://data.delijn.be/stops/308157"], ["https://data.delijn.be/stops/403491", "https://data.delijn.be/stops/403492"], ["https://data.delijn.be/stops/407731", "https://data.delijn.be/stops/407735"], ["https://data.delijn.be/stops/201061", "https://data.delijn.be/stops/211059"], ["https://data.delijn.be/stops/106042", "https://data.delijn.be/stops/106059"], ["https://data.delijn.be/stops/207110", "https://data.delijn.be/stops/207112"], ["https://data.delijn.be/stops/407580", "https://data.delijn.be/stops/409314"], ["https://data.delijn.be/stops/200264", "https://data.delijn.be/stops/201433"], ["https://data.delijn.be/stops/502803", "https://data.delijn.be/stops/507487"], ["https://data.delijn.be/stops/200698", "https://data.delijn.be/stops/210108"], ["https://data.delijn.be/stops/407254", "https://data.delijn.be/stops/407314"], ["https://data.delijn.be/stops/405215", "https://data.delijn.be/stops/405293"], ["https://data.delijn.be/stops/307781", "https://data.delijn.be/stops/308859"], ["https://data.delijn.be/stops/401388", "https://data.delijn.be/stops/401460"], ["https://data.delijn.be/stops/400102", "https://data.delijn.be/stops/404884"], ["https://data.delijn.be/stops/503351", "https://data.delijn.be/stops/508419"], ["https://data.delijn.be/stops/300858", "https://data.delijn.be/stops/305516"], ["https://data.delijn.be/stops/304408", "https://data.delijn.be/stops/307416"], ["https://data.delijn.be/stops/204167", "https://data.delijn.be/stops/204581"], ["https://data.delijn.be/stops/204629", "https://data.delijn.be/stops/205629"], ["https://data.delijn.be/stops/204078", "https://data.delijn.be/stops/204205"], ["https://data.delijn.be/stops/401724", "https://data.delijn.be/stops/405453"], ["https://data.delijn.be/stops/405490", "https://data.delijn.be/stops/409270"], ["https://data.delijn.be/stops/107039", "https://data.delijn.be/stops/108246"], ["https://data.delijn.be/stops/101145", "https://data.delijn.be/stops/105490"], ["https://data.delijn.be/stops/102292", "https://data.delijn.be/stops/109363"], ["https://data.delijn.be/stops/301506", "https://data.delijn.be/stops/301524"], ["https://data.delijn.be/stops/200967", "https://data.delijn.be/stops/208663"], ["https://data.delijn.be/stops/305181", "https://data.delijn.be/stops/305207"], ["https://data.delijn.be/stops/407239", "https://data.delijn.be/stops/407469"], ["https://data.delijn.be/stops/303116", "https://data.delijn.be/stops/306826"], ["https://data.delijn.be/stops/206246", "https://data.delijn.be/stops/206247"], ["https://data.delijn.be/stops/200637", "https://data.delijn.be/stops/201637"], ["https://data.delijn.be/stops/106892", "https://data.delijn.be/stops/107220"], ["https://data.delijn.be/stops/208353", "https://data.delijn.be/stops/209353"], ["https://data.delijn.be/stops/403311", "https://data.delijn.be/stops/403344"], ["https://data.delijn.be/stops/106223", "https://data.delijn.be/stops/106336"], ["https://data.delijn.be/stops/303628", "https://data.delijn.be/stops/303629"], ["https://data.delijn.be/stops/204648", "https://data.delijn.be/stops/205647"], ["https://data.delijn.be/stops/201908", "https://data.delijn.be/stops/201909"], ["https://data.delijn.be/stops/101311", "https://data.delijn.be/stops/101312"], ["https://data.delijn.be/stops/108767", "https://data.delijn.be/stops/109119"], ["https://data.delijn.be/stops/108817", "https://data.delijn.be/stops/108818"], ["https://data.delijn.be/stops/208091", "https://data.delijn.be/stops/209091"], ["https://data.delijn.be/stops/101462", "https://data.delijn.be/stops/101464"], ["https://data.delijn.be/stops/206442", "https://data.delijn.be/stops/207442"], ["https://data.delijn.be/stops/101500", "https://data.delijn.be/stops/104891"], ["https://data.delijn.be/stops/402433", "https://data.delijn.be/stops/404498"], ["https://data.delijn.be/stops/108626", "https://data.delijn.be/stops/301837"], ["https://data.delijn.be/stops/103629", "https://data.delijn.be/stops/107737"], ["https://data.delijn.be/stops/403486", "https://data.delijn.be/stops/409296"], ["https://data.delijn.be/stops/103281", "https://data.delijn.be/stops/105470"], ["https://data.delijn.be/stops/304296", "https://data.delijn.be/stops/304506"], ["https://data.delijn.be/stops/300095", "https://data.delijn.be/stops/300117"], ["https://data.delijn.be/stops/408508", "https://data.delijn.be/stops/408617"], ["https://data.delijn.be/stops/503527", "https://data.delijn.be/stops/503532"], ["https://data.delijn.be/stops/302123", "https://data.delijn.be/stops/302125"], ["https://data.delijn.be/stops/206973", "https://data.delijn.be/stops/207973"], ["https://data.delijn.be/stops/206812", "https://data.delijn.be/stops/207877"], ["https://data.delijn.be/stops/404928", "https://data.delijn.be/stops/409628"], ["https://data.delijn.be/stops/101986", "https://data.delijn.be/stops/107062"], ["https://data.delijn.be/stops/206801", "https://data.delijn.be/stops/209488"], ["https://data.delijn.be/stops/509335", "https://data.delijn.be/stops/509633"], ["https://data.delijn.be/stops/108419", "https://data.delijn.be/stops/109568"], ["https://data.delijn.be/stops/301845", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/105867", "https://data.delijn.be/stops/105872"], ["https://data.delijn.be/stops/502142", "https://data.delijn.be/stops/507680"], ["https://data.delijn.be/stops/107701", "https://data.delijn.be/stops/107711"], ["https://data.delijn.be/stops/302896", "https://data.delijn.be/stops/302897"], ["https://data.delijn.be/stops/103685", "https://data.delijn.be/stops/109005"], ["https://data.delijn.be/stops/307632", "https://data.delijn.be/stops/308272"], ["https://data.delijn.be/stops/303271", "https://data.delijn.be/stops/305729"], ["https://data.delijn.be/stops/201903", "https://data.delijn.be/stops/203514"], ["https://data.delijn.be/stops/204450", "https://data.delijn.be/stops/205337"], ["https://data.delijn.be/stops/408578", "https://data.delijn.be/stops/408579"], ["https://data.delijn.be/stops/102478", "https://data.delijn.be/stops/400177"], ["https://data.delijn.be/stops/102684", "https://data.delijn.be/stops/107336"], ["https://data.delijn.be/stops/201165", "https://data.delijn.be/stops/202152"], ["https://data.delijn.be/stops/108840", "https://data.delijn.be/stops/108841"], ["https://data.delijn.be/stops/300747", "https://data.delijn.be/stops/300748"], ["https://data.delijn.be/stops/208773", "https://data.delijn.be/stops/209773"], ["https://data.delijn.be/stops/502279", "https://data.delijn.be/stops/507278"], ["https://data.delijn.be/stops/503483", "https://data.delijn.be/stops/503491"], ["https://data.delijn.be/stops/301949", "https://data.delijn.be/stops/303287"], ["https://data.delijn.be/stops/105231", "https://data.delijn.be/stops/105234"], ["https://data.delijn.be/stops/405124", "https://data.delijn.be/stops/405375"], ["https://data.delijn.be/stops/101869", "https://data.delijn.be/stops/101871"], ["https://data.delijn.be/stops/301542", "https://data.delijn.be/stops/301544"], ["https://data.delijn.be/stops/407792", "https://data.delijn.be/stops/307448"], ["https://data.delijn.be/stops/303998", "https://data.delijn.be/stops/304045"], ["https://data.delijn.be/stops/305698", "https://data.delijn.be/stops/305743"], ["https://data.delijn.be/stops/408379", "https://data.delijn.be/stops/408380"], ["https://data.delijn.be/stops/402136", "https://data.delijn.be/stops/402142"], ["https://data.delijn.be/stops/207034", "https://data.delijn.be/stops/207904"], ["https://data.delijn.be/stops/502083", "https://data.delijn.be/stops/507909"], ["https://data.delijn.be/stops/302707", "https://data.delijn.be/stops/302720"], ["https://data.delijn.be/stops/402938", "https://data.delijn.be/stops/404039"], ["https://data.delijn.be/stops/401618", "https://data.delijn.be/stops/308211"], ["https://data.delijn.be/stops/107123", "https://data.delijn.be/stops/109649"], ["https://data.delijn.be/stops/105832", "https://data.delijn.be/stops/107422"], ["https://data.delijn.be/stops/407902", "https://data.delijn.be/stops/407903"], ["https://data.delijn.be/stops/105276", "https://data.delijn.be/stops/109605"], ["https://data.delijn.be/stops/109184", "https://data.delijn.be/stops/109877"], ["https://data.delijn.be/stops/403600", "https://data.delijn.be/stops/410037"], ["https://data.delijn.be/stops/106716", "https://data.delijn.be/stops/106719"], ["https://data.delijn.be/stops/202906", "https://data.delijn.be/stops/202907"], ["https://data.delijn.be/stops/304723", "https://data.delijn.be/stops/304724"], ["https://data.delijn.be/stops/304423", "https://data.delijn.be/stops/307394"], ["https://data.delijn.be/stops/103610", "https://data.delijn.be/stops/104275"], ["https://data.delijn.be/stops/501511", "https://data.delijn.be/stops/506511"], ["https://data.delijn.be/stops/106786", "https://data.delijn.be/stops/106787"], ["https://data.delijn.be/stops/408948", "https://data.delijn.be/stops/409036"], ["https://data.delijn.be/stops/305102", "https://data.delijn.be/stops/305121"], ["https://data.delijn.be/stops/407872", "https://data.delijn.be/stops/408166"], ["https://data.delijn.be/stops/401649", "https://data.delijn.be/stops/401710"], ["https://data.delijn.be/stops/410182", "https://data.delijn.be/stops/410208"], ["https://data.delijn.be/stops/404794", "https://data.delijn.be/stops/404795"], ["https://data.delijn.be/stops/302070", "https://data.delijn.be/stops/305636"], ["https://data.delijn.be/stops/200845", "https://data.delijn.be/stops/211005"], ["https://data.delijn.be/stops/208007", "https://data.delijn.be/stops/209007"], ["https://data.delijn.be/stops/101571", "https://data.delijn.be/stops/105464"], ["https://data.delijn.be/stops/208343", "https://data.delijn.be/stops/208344"], ["https://data.delijn.be/stops/302022", "https://data.delijn.be/stops/306341"], ["https://data.delijn.be/stops/200762", "https://data.delijn.be/stops/200774"], ["https://data.delijn.be/stops/206698", "https://data.delijn.be/stops/207365"], ["https://data.delijn.be/stops/203705", "https://data.delijn.be/stops/203706"], ["https://data.delijn.be/stops/307762", "https://data.delijn.be/stops/307763"], ["https://data.delijn.be/stops/204222", "https://data.delijn.be/stops/205222"], ["https://data.delijn.be/stops/209979", "https://data.delijn.be/stops/211076"], ["https://data.delijn.be/stops/406639", "https://data.delijn.be/stops/406641"], ["https://data.delijn.be/stops/400195", "https://data.delijn.be/stops/401083"], ["https://data.delijn.be/stops/300525", "https://data.delijn.be/stops/300526"], ["https://data.delijn.be/stops/408125", "https://data.delijn.be/stops/408414"], ["https://data.delijn.be/stops/206133", "https://data.delijn.be/stops/206135"], ["https://data.delijn.be/stops/403682", "https://data.delijn.be/stops/403684"], ["https://data.delijn.be/stops/502553", "https://data.delijn.be/stops/507550"], ["https://data.delijn.be/stops/508116", "https://data.delijn.be/stops/508653"], ["https://data.delijn.be/stops/105257", "https://data.delijn.be/stops/105258"], ["https://data.delijn.be/stops/501423", "https://data.delijn.be/stops/505530"], ["https://data.delijn.be/stops/101522", "https://data.delijn.be/stops/109643"], ["https://data.delijn.be/stops/103266", "https://data.delijn.be/stops/104627"], ["https://data.delijn.be/stops/105427", "https://data.delijn.be/stops/105436"], ["https://data.delijn.be/stops/102934", "https://data.delijn.be/stops/106042"], ["https://data.delijn.be/stops/302220", "https://data.delijn.be/stops/302221"], ["https://data.delijn.be/stops/107028", "https://data.delijn.be/stops/107029"], ["https://data.delijn.be/stops/101445", "https://data.delijn.be/stops/104540"], ["https://data.delijn.be/stops/206056", "https://data.delijn.be/stops/216003"], ["https://data.delijn.be/stops/308154", "https://data.delijn.be/stops/308172"], ["https://data.delijn.be/stops/402197", "https://data.delijn.be/stops/402372"], ["https://data.delijn.be/stops/405414", "https://data.delijn.be/stops/306774"], ["https://data.delijn.be/stops/201725", "https://data.delijn.be/stops/203981"], ["https://data.delijn.be/stops/308549", "https://data.delijn.be/stops/308550"], ["https://data.delijn.be/stops/203545", "https://data.delijn.be/stops/203546"], ["https://data.delijn.be/stops/105369", "https://data.delijn.be/stops/107504"], ["https://data.delijn.be/stops/502595", "https://data.delijn.be/stops/502631"], ["https://data.delijn.be/stops/407835", "https://data.delijn.be/stops/407909"], ["https://data.delijn.be/stops/207667", "https://data.delijn.be/stops/208660"], ["https://data.delijn.be/stops/503836", "https://data.delijn.be/stops/505945"], ["https://data.delijn.be/stops/403055", "https://data.delijn.be/stops/407650"], ["https://data.delijn.be/stops/300049", "https://data.delijn.be/stops/300050"], ["https://data.delijn.be/stops/502388", "https://data.delijn.be/stops/507578"], ["https://data.delijn.be/stops/204539", "https://data.delijn.be/stops/205514"], ["https://data.delijn.be/stops/400892", "https://data.delijn.be/stops/402769"], ["https://data.delijn.be/stops/504087", "https://data.delijn.be/stops/508474"], ["https://data.delijn.be/stops/305112", "https://data.delijn.be/stops/307873"], ["https://data.delijn.be/stops/403065", "https://data.delijn.be/stops/403093"], ["https://data.delijn.be/stops/503473", "https://data.delijn.be/stops/507814"], ["https://data.delijn.be/stops/204319", "https://data.delijn.be/stops/204696"], ["https://data.delijn.be/stops/304152", "https://data.delijn.be/stops/304160"], ["https://data.delijn.be/stops/404601", "https://data.delijn.be/stops/406901"], ["https://data.delijn.be/stops/403254", "https://data.delijn.be/stops/403861"], ["https://data.delijn.be/stops/501166", "https://data.delijn.be/stops/506166"], ["https://data.delijn.be/stops/306596", "https://data.delijn.be/stops/306597"], ["https://data.delijn.be/stops/509512", "https://data.delijn.be/stops/509962"], ["https://data.delijn.be/stops/410041", "https://data.delijn.be/stops/410042"], ["https://data.delijn.be/stops/107499", "https://data.delijn.be/stops/107523"], ["https://data.delijn.be/stops/409193", "https://data.delijn.be/stops/410156"], ["https://data.delijn.be/stops/505297", "https://data.delijn.be/stops/508631"], ["https://data.delijn.be/stops/501545", "https://data.delijn.be/stops/505397"], ["https://data.delijn.be/stops/108627", "https://data.delijn.be/stops/301843"], ["https://data.delijn.be/stops/504979", "https://data.delijn.be/stops/509091"], ["https://data.delijn.be/stops/208188", "https://data.delijn.be/stops/208189"], ["https://data.delijn.be/stops/503201", "https://data.delijn.be/stops/508201"], ["https://data.delijn.be/stops/504535", "https://data.delijn.be/stops/508742"], ["https://data.delijn.be/stops/402096", "https://data.delijn.be/stops/402236"], ["https://data.delijn.be/stops/401000", "https://data.delijn.be/stops/401002"], ["https://data.delijn.be/stops/200138", "https://data.delijn.be/stops/201783"], ["https://data.delijn.be/stops/103999", "https://data.delijn.be/stops/106886"], ["https://data.delijn.be/stops/401951", "https://data.delijn.be/stops/407549"], ["https://data.delijn.be/stops/302955", "https://data.delijn.be/stops/302959"], ["https://data.delijn.be/stops/402979", "https://data.delijn.be/stops/404699"], ["https://data.delijn.be/stops/401809", "https://data.delijn.be/stops/406349"], ["https://data.delijn.be/stops/504383", "https://data.delijn.be/stops/509382"], ["https://data.delijn.be/stops/403294", "https://data.delijn.be/stops/403295"], ["https://data.delijn.be/stops/104093", "https://data.delijn.be/stops/109740"], ["https://data.delijn.be/stops/307425", "https://data.delijn.be/stops/307426"], ["https://data.delijn.be/stops/405607", "https://data.delijn.be/stops/405708"], ["https://data.delijn.be/stops/300089", "https://data.delijn.be/stops/300116"], ["https://data.delijn.be/stops/303496", "https://data.delijn.be/stops/303499"], ["https://data.delijn.be/stops/400957", "https://data.delijn.be/stops/407401"], ["https://data.delijn.be/stops/503333", "https://data.delijn.be/stops/508749"], ["https://data.delijn.be/stops/303256", "https://data.delijn.be/stops/303265"], ["https://data.delijn.be/stops/409306", "https://data.delijn.be/stops/409330"], ["https://data.delijn.be/stops/504202", "https://data.delijn.be/stops/505301"], ["https://data.delijn.be/stops/201767", "https://data.delijn.be/stops/201768"], ["https://data.delijn.be/stops/305646", "https://data.delijn.be/stops/305748"], ["https://data.delijn.be/stops/207118", "https://data.delijn.be/stops/207119"], ["https://data.delijn.be/stops/303317", "https://data.delijn.be/stops/307117"], ["https://data.delijn.be/stops/207530", "https://data.delijn.be/stops/207822"], ["https://data.delijn.be/stops/404431", "https://data.delijn.be/stops/404515"], ["https://data.delijn.be/stops/504419", "https://data.delijn.be/stops/509428"], ["https://data.delijn.be/stops/503701", "https://data.delijn.be/stops/508701"], ["https://data.delijn.be/stops/406916", "https://data.delijn.be/stops/409465"], ["https://data.delijn.be/stops/108735", "https://data.delijn.be/stops/109135"], ["https://data.delijn.be/stops/502192", "https://data.delijn.be/stops/507192"], ["https://data.delijn.be/stops/201269", "https://data.delijn.be/stops/203928"], ["https://data.delijn.be/stops/109447", "https://data.delijn.be/stops/109450"], ["https://data.delijn.be/stops/403412", "https://data.delijn.be/stops/410398"], ["https://data.delijn.be/stops/400614", "https://data.delijn.be/stops/404294"], ["https://data.delijn.be/stops/107583", "https://data.delijn.be/stops/107719"], ["https://data.delijn.be/stops/303420", "https://data.delijn.be/stops/308067"], ["https://data.delijn.be/stops/504022", "https://data.delijn.be/stops/509008"], ["https://data.delijn.be/stops/402714", "https://data.delijn.be/stops/301277"], ["https://data.delijn.be/stops/207755", "https://data.delijn.be/stops/207771"], ["https://data.delijn.be/stops/206371", "https://data.delijn.be/stops/207370"], ["https://data.delijn.be/stops/501240", "https://data.delijn.be/stops/501246"], ["https://data.delijn.be/stops/200354", "https://data.delijn.be/stops/201018"], ["https://data.delijn.be/stops/200413", "https://data.delijn.be/stops/201414"], ["https://data.delijn.be/stops/307160", "https://data.delijn.be/stops/307893"], ["https://data.delijn.be/stops/301647", "https://data.delijn.be/stops/302110"], ["https://data.delijn.be/stops/102643", "https://data.delijn.be/stops/107866"], ["https://data.delijn.be/stops/102730", "https://data.delijn.be/stops/109795"], ["https://data.delijn.be/stops/103628", "https://data.delijn.be/stops/103629"], ["https://data.delijn.be/stops/200985", "https://data.delijn.be/stops/201985"], ["https://data.delijn.be/stops/400459", "https://data.delijn.be/stops/400497"], ["https://data.delijn.be/stops/208737", "https://data.delijn.be/stops/208738"], ["https://data.delijn.be/stops/504395", "https://data.delijn.be/stops/509397"], ["https://data.delijn.be/stops/403334", "https://data.delijn.be/stops/407075"], ["https://data.delijn.be/stops/306861", "https://data.delijn.be/stops/306862"], ["https://data.delijn.be/stops/208131", "https://data.delijn.be/stops/209851"], ["https://data.delijn.be/stops/407456", "https://data.delijn.be/stops/407468"], ["https://data.delijn.be/stops/203173", "https://data.delijn.be/stops/203495"], ["https://data.delijn.be/stops/109349", "https://data.delijn.be/stops/109351"], ["https://data.delijn.be/stops/504470", "https://data.delijn.be/stops/505837"], ["https://data.delijn.be/stops/501506", "https://data.delijn.be/stops/506504"], ["https://data.delijn.be/stops/204992", "https://data.delijn.be/stops/208336"], ["https://data.delijn.be/stops/503413", "https://data.delijn.be/stops/508402"], ["https://data.delijn.be/stops/409271", "https://data.delijn.be/stops/409298"], ["https://data.delijn.be/stops/105528", "https://data.delijn.be/stops/105531"], ["https://data.delijn.be/stops/306147", "https://data.delijn.be/stops/306149"], ["https://data.delijn.be/stops/207894", "https://data.delijn.be/stops/209912"], ["https://data.delijn.be/stops/501228", "https://data.delijn.be/stops/506228"], ["https://data.delijn.be/stops/305303", "https://data.delijn.be/stops/306091"], ["https://data.delijn.be/stops/206087", "https://data.delijn.be/stops/206987"], ["https://data.delijn.be/stops/402297", "https://data.delijn.be/stops/405551"], ["https://data.delijn.be/stops/503260", "https://data.delijn.be/stops/503965"], ["https://data.delijn.be/stops/301358", "https://data.delijn.be/stops/301968"], ["https://data.delijn.be/stops/201707", "https://data.delijn.be/stops/202444"], ["https://data.delijn.be/stops/300281", "https://data.delijn.be/stops/300945"], ["https://data.delijn.be/stops/406729", "https://data.delijn.be/stops/407098"], ["https://data.delijn.be/stops/102549", "https://data.delijn.be/stops/408155"], ["https://data.delijn.be/stops/407274", "https://data.delijn.be/stops/407275"], ["https://data.delijn.be/stops/502537", "https://data.delijn.be/stops/502541"], ["https://data.delijn.be/stops/302052", "https://data.delijn.be/stops/302053"], ["https://data.delijn.be/stops/103082", "https://data.delijn.be/stops/104677"], ["https://data.delijn.be/stops/208215", "https://data.delijn.be/stops/209211"], ["https://data.delijn.be/stops/205159", "https://data.delijn.be/stops/205165"], ["https://data.delijn.be/stops/501445", "https://data.delijn.be/stops/501557"], ["https://data.delijn.be/stops/207803", "https://data.delijn.be/stops/207863"], ["https://data.delijn.be/stops/505214", "https://data.delijn.be/stops/590007"], ["https://data.delijn.be/stops/210117", "https://data.delijn.be/stops/210118"], ["https://data.delijn.be/stops/502103", "https://data.delijn.be/stops/507141"], ["https://data.delijn.be/stops/104875", "https://data.delijn.be/stops/108145"], ["https://data.delijn.be/stops/506130", "https://data.delijn.be/stops/506140"], ["https://data.delijn.be/stops/308782", "https://data.delijn.be/stops/308783"], ["https://data.delijn.be/stops/507798", "https://data.delijn.be/stops/508814"], ["https://data.delijn.be/stops/504172", "https://data.delijn.be/stops/505645"], ["https://data.delijn.be/stops/200977", "https://data.delijn.be/stops/203905"], ["https://data.delijn.be/stops/302088", "https://data.delijn.be/stops/302089"], ["https://data.delijn.be/stops/104052", "https://data.delijn.be/stops/104053"], ["https://data.delijn.be/stops/206019", "https://data.delijn.be/stops/207077"], ["https://data.delijn.be/stops/407331", "https://data.delijn.be/stops/408472"], ["https://data.delijn.be/stops/102159", "https://data.delijn.be/stops/108380"], ["https://data.delijn.be/stops/207667", "https://data.delijn.be/stops/208060"], ["https://data.delijn.be/stops/302707", "https://data.delijn.be/stops/308594"], ["https://data.delijn.be/stops/408524", "https://data.delijn.be/stops/410249"], ["https://data.delijn.be/stops/304100", "https://data.delijn.be/stops/304101"], ["https://data.delijn.be/stops/204546", "https://data.delijn.be/stops/205545"], ["https://data.delijn.be/stops/301416", "https://data.delijn.be/stops/301417"], ["https://data.delijn.be/stops/302878", "https://data.delijn.be/stops/303032"], ["https://data.delijn.be/stops/204064", "https://data.delijn.be/stops/205770"], ["https://data.delijn.be/stops/106049", "https://data.delijn.be/stops/109875"], ["https://data.delijn.be/stops/304476", "https://data.delijn.be/stops/304508"], ["https://data.delijn.be/stops/502119", "https://data.delijn.be/stops/502142"], ["https://data.delijn.be/stops/407899", "https://data.delijn.be/stops/407987"], ["https://data.delijn.be/stops/204510", "https://data.delijn.be/stops/204535"], ["https://data.delijn.be/stops/205239", "https://data.delijn.be/stops/207897"], ["https://data.delijn.be/stops/210037", "https://data.delijn.be/stops/211035"], ["https://data.delijn.be/stops/101474", "https://data.delijn.be/stops/109247"], ["https://data.delijn.be/stops/502074", "https://data.delijn.be/stops/505155"], ["https://data.delijn.be/stops/207473", "https://data.delijn.be/stops/207474"], ["https://data.delijn.be/stops/504792", "https://data.delijn.be/stops/505202"], ["https://data.delijn.be/stops/101947", "https://data.delijn.be/stops/108752"], ["https://data.delijn.be/stops/207527", "https://data.delijn.be/stops/216006"], ["https://data.delijn.be/stops/102995", "https://data.delijn.be/stops/103000"], ["https://data.delijn.be/stops/508234", "https://data.delijn.be/stops/508246"], ["https://data.delijn.be/stops/504585", "https://data.delijn.be/stops/504589"], ["https://data.delijn.be/stops/304468", "https://data.delijn.be/stops/304469"], ["https://data.delijn.be/stops/200421", "https://data.delijn.be/stops/201420"], ["https://data.delijn.be/stops/504252", "https://data.delijn.be/stops/509252"], ["https://data.delijn.be/stops/306314", "https://data.delijn.be/stops/306315"], ["https://data.delijn.be/stops/200582", "https://data.delijn.be/stops/200583"], ["https://data.delijn.be/stops/201684", "https://data.delijn.be/stops/203317"], ["https://data.delijn.be/stops/503581", "https://data.delijn.be/stops/508558"], ["https://data.delijn.be/stops/200580", "https://data.delijn.be/stops/200581"], ["https://data.delijn.be/stops/400474", "https://data.delijn.be/stops/408697"], ["https://data.delijn.be/stops/108097", "https://data.delijn.be/stops/108098"], ["https://data.delijn.be/stops/103773", "https://data.delijn.be/stops/106435"], ["https://data.delijn.be/stops/108391", "https://data.delijn.be/stops/108392"], ["https://data.delijn.be/stops/106337", "https://data.delijn.be/stops/106338"], ["https://data.delijn.be/stops/307306", "https://data.delijn.be/stops/307307"], ["https://data.delijn.be/stops/102077", "https://data.delijn.be/stops/105993"], ["https://data.delijn.be/stops/301466", "https://data.delijn.be/stops/308070"], ["https://data.delijn.be/stops/505146", "https://data.delijn.be/stops/507822"], ["https://data.delijn.be/stops/301115", "https://data.delijn.be/stops/301131"], ["https://data.delijn.be/stops/407672", "https://data.delijn.be/stops/407673"], ["https://data.delijn.be/stops/106007", "https://data.delijn.be/stops/106009"], ["https://data.delijn.be/stops/108438", "https://data.delijn.be/stops/108468"], ["https://data.delijn.be/stops/208888", "https://data.delijn.be/stops/211853"], ["https://data.delijn.be/stops/307961", "https://data.delijn.be/stops/308073"], ["https://data.delijn.be/stops/401074", "https://data.delijn.be/stops/401163"], ["https://data.delijn.be/stops/408943", "https://data.delijn.be/stops/409242"], ["https://data.delijn.be/stops/102980", "https://data.delijn.be/stops/104250"], ["https://data.delijn.be/stops/202314", "https://data.delijn.be/stops/203313"], ["https://data.delijn.be/stops/106134", "https://data.delijn.be/stops/109560"], ["https://data.delijn.be/stops/306900", "https://data.delijn.be/stops/307002"], ["https://data.delijn.be/stops/407010", "https://data.delijn.be/stops/407068"], ["https://data.delijn.be/stops/302344", "https://data.delijn.be/stops/306180"], ["https://data.delijn.be/stops/405530", "https://data.delijn.be/stops/407871"], ["https://data.delijn.be/stops/406110", "https://data.delijn.be/stops/406131"], ["https://data.delijn.be/stops/103467", "https://data.delijn.be/stops/106688"], ["https://data.delijn.be/stops/302287", "https://data.delijn.be/stops/306791"], ["https://data.delijn.be/stops/304382", "https://data.delijn.be/stops/304392"], ["https://data.delijn.be/stops/207587", "https://data.delijn.be/stops/216019"], ["https://data.delijn.be/stops/300373", "https://data.delijn.be/stops/300405"], ["https://data.delijn.be/stops/201008", "https://data.delijn.be/stops/201009"], ["https://data.delijn.be/stops/503114", "https://data.delijn.be/stops/504865"], ["https://data.delijn.be/stops/204088", "https://data.delijn.be/stops/205087"], ["https://data.delijn.be/stops/403619", "https://data.delijn.be/stops/403628"], ["https://data.delijn.be/stops/305528", "https://data.delijn.be/stops/305530"], ["https://data.delijn.be/stops/101422", "https://data.delijn.be/stops/106961"], ["https://data.delijn.be/stops/304399", "https://data.delijn.be/stops/307401"], ["https://data.delijn.be/stops/407237", "https://data.delijn.be/stops/407354"], ["https://data.delijn.be/stops/504525", "https://data.delijn.be/stops/504528"], ["https://data.delijn.be/stops/300777", "https://data.delijn.be/stops/301478"], ["https://data.delijn.be/stops/207765", "https://data.delijn.be/stops/209838"], ["https://data.delijn.be/stops/401650", "https://data.delijn.be/stops/405335"], ["https://data.delijn.be/stops/202981", "https://data.delijn.be/stops/203982"], ["https://data.delijn.be/stops/301513", "https://data.delijn.be/stops/301514"], ["https://data.delijn.be/stops/305961", "https://data.delijn.be/stops/306744"], ["https://data.delijn.be/stops/503786", "https://data.delijn.be/stops/505272"], ["https://data.delijn.be/stops/402370", "https://data.delijn.be/stops/402398"], ["https://data.delijn.be/stops/206744", "https://data.delijn.be/stops/207711"], ["https://data.delijn.be/stops/204070", "https://data.delijn.be/stops/204223"], ["https://data.delijn.be/stops/505291", "https://data.delijn.be/stops/509360"], ["https://data.delijn.be/stops/402812", "https://data.delijn.be/stops/407316"], ["https://data.delijn.be/stops/403140", "https://data.delijn.be/stops/403143"], ["https://data.delijn.be/stops/203966", "https://data.delijn.be/stops/205173"], ["https://data.delijn.be/stops/507350", "https://data.delijn.be/stops/507351"], ["https://data.delijn.be/stops/501038", "https://data.delijn.be/stops/506038"], ["https://data.delijn.be/stops/302713", "https://data.delijn.be/stops/302731"], ["https://data.delijn.be/stops/101482", "https://data.delijn.be/stops/101969"], ["https://data.delijn.be/stops/208484", "https://data.delijn.be/stops/209485"], ["https://data.delijn.be/stops/208207", "https://data.delijn.be/stops/209121"], ["https://data.delijn.be/stops/402068", "https://data.delijn.be/stops/402208"], ["https://data.delijn.be/stops/407866", "https://data.delijn.be/stops/408188"], ["https://data.delijn.be/stops/102842", "https://data.delijn.be/stops/106564"], ["https://data.delijn.be/stops/502608", "https://data.delijn.be/stops/507608"], ["https://data.delijn.be/stops/304684", "https://data.delijn.be/stops/304685"], ["https://data.delijn.be/stops/209718", "https://data.delijn.be/stops/209719"], ["https://data.delijn.be/stops/200062", "https://data.delijn.be/stops/201062"], ["https://data.delijn.be/stops/301596", "https://data.delijn.be/stops/301620"], ["https://data.delijn.be/stops/203082", "https://data.delijn.be/stops/211039"], ["https://data.delijn.be/stops/502584", "https://data.delijn.be/stops/507821"], ["https://data.delijn.be/stops/209715", "https://data.delijn.be/stops/211004"], ["https://data.delijn.be/stops/501133", "https://data.delijn.be/stops/506133"], ["https://data.delijn.be/stops/504501", "https://data.delijn.be/stops/509501"], ["https://data.delijn.be/stops/204074", "https://data.delijn.be/stops/205236"], ["https://data.delijn.be/stops/403212", "https://data.delijn.be/stops/403559"], ["https://data.delijn.be/stops/201783", "https://data.delijn.be/stops/209987"], ["https://data.delijn.be/stops/101378", "https://data.delijn.be/stops/106940"], ["https://data.delijn.be/stops/200248", "https://data.delijn.be/stops/201601"], ["https://data.delijn.be/stops/103592", "https://data.delijn.be/stops/109127"], ["https://data.delijn.be/stops/200660", "https://data.delijn.be/stops/211123"], ["https://data.delijn.be/stops/204709", "https://data.delijn.be/stops/205709"], ["https://data.delijn.be/stops/108334", "https://data.delijn.be/stops/109333"], ["https://data.delijn.be/stops/104941", "https://data.delijn.be/stops/400430"], ["https://data.delijn.be/stops/401458", "https://data.delijn.be/stops/401578"], ["https://data.delijn.be/stops/505044", "https://data.delijn.be/stops/509840"], ["https://data.delijn.be/stops/504458", "https://data.delijn.be/stops/504679"], ["https://data.delijn.be/stops/106923", "https://data.delijn.be/stops/106924"], ["https://data.delijn.be/stops/300691", "https://data.delijn.be/stops/302530"], ["https://data.delijn.be/stops/400642", "https://data.delijn.be/stops/400909"], ["https://data.delijn.be/stops/303693", "https://data.delijn.be/stops/303699"], ["https://data.delijn.be/stops/501177", "https://data.delijn.be/stops/501182"], ["https://data.delijn.be/stops/301949", "https://data.delijn.be/stops/308938"], ["https://data.delijn.be/stops/504141", "https://data.delijn.be/stops/509141"], ["https://data.delijn.be/stops/201907", "https://data.delijn.be/stops/209867"], ["https://data.delijn.be/stops/301617", "https://data.delijn.be/stops/307028"], ["https://data.delijn.be/stops/404619", "https://data.delijn.be/stops/410125"], ["https://data.delijn.be/stops/304930", "https://data.delijn.be/stops/304962"], ["https://data.delijn.be/stops/403344", "https://data.delijn.be/stops/403480"], ["https://data.delijn.be/stops/207066", "https://data.delijn.be/stops/207067"], ["https://data.delijn.be/stops/200269", "https://data.delijn.be/stops/201065"], ["https://data.delijn.be/stops/409560", "https://data.delijn.be/stops/409604"], ["https://data.delijn.be/stops/204588", "https://data.delijn.be/stops/205169"], ["https://data.delijn.be/stops/104844", "https://data.delijn.be/stops/105748"], ["https://data.delijn.be/stops/503458", "https://data.delijn.be/stops/508453"], ["https://data.delijn.be/stops/208462", "https://data.delijn.be/stops/209461"], ["https://data.delijn.be/stops/102762", "https://data.delijn.be/stops/105586"], ["https://data.delijn.be/stops/402975", "https://data.delijn.be/stops/405985"], ["https://data.delijn.be/stops/206209", "https://data.delijn.be/stops/207209"], ["https://data.delijn.be/stops/206449", "https://data.delijn.be/stops/207161"], ["https://data.delijn.be/stops/307631", "https://data.delijn.be/stops/307906"], ["https://data.delijn.be/stops/304219", "https://data.delijn.be/stops/304290"], ["https://data.delijn.be/stops/403253", "https://data.delijn.be/stops/408959"], ["https://data.delijn.be/stops/505826", "https://data.delijn.be/stops/508315"], ["https://data.delijn.be/stops/104974", "https://data.delijn.be/stops/109520"], ["https://data.delijn.be/stops/206885", "https://data.delijn.be/stops/207354"], ["https://data.delijn.be/stops/303430", "https://data.delijn.be/stops/303432"], ["https://data.delijn.be/stops/300263", "https://data.delijn.be/stops/300264"], ["https://data.delijn.be/stops/301159", "https://data.delijn.be/stops/301403"], ["https://data.delijn.be/stops/208217", "https://data.delijn.be/stops/209787"], ["https://data.delijn.be/stops/404697", "https://data.delijn.be/stops/405515"], ["https://data.delijn.be/stops/101809", "https://data.delijn.be/stops/102123"], ["https://data.delijn.be/stops/201206", "https://data.delijn.be/stops/201656"], ["https://data.delijn.be/stops/502513", "https://data.delijn.be/stops/509726"], ["https://data.delijn.be/stops/104416", "https://data.delijn.be/stops/104417"], ["https://data.delijn.be/stops/402105", "https://data.delijn.be/stops/402423"], ["https://data.delijn.be/stops/305126", "https://data.delijn.be/stops/305127"], ["https://data.delijn.be/stops/103007", "https://data.delijn.be/stops/106557"], ["https://data.delijn.be/stops/200855", "https://data.delijn.be/stops/505646"], ["https://data.delijn.be/stops/302267", "https://data.delijn.be/stops/303213"], ["https://data.delijn.be/stops/409723", "https://data.delijn.be/stops/409725"], ["https://data.delijn.be/stops/408854", "https://data.delijn.be/stops/408857"], ["https://data.delijn.be/stops/106197", "https://data.delijn.be/stops/109275"], ["https://data.delijn.be/stops/109495", "https://data.delijn.be/stops/305836"], ["https://data.delijn.be/stops/205425", "https://data.delijn.be/stops/205436"], ["https://data.delijn.be/stops/202872", "https://data.delijn.be/stops/202873"], ["https://data.delijn.be/stops/505038", "https://data.delijn.be/stops/505221"], ["https://data.delijn.be/stops/106684", "https://data.delijn.be/stops/106685"], ["https://data.delijn.be/stops/504287", "https://data.delijn.be/stops/504625"], ["https://data.delijn.be/stops/207872", "https://data.delijn.be/stops/209639"], ["https://data.delijn.be/stops/104572", "https://data.delijn.be/stops/107469"], ["https://data.delijn.be/stops/403174", "https://data.delijn.be/stops/403292"], ["https://data.delijn.be/stops/104548", "https://data.delijn.be/stops/104553"], ["https://data.delijn.be/stops/202162", "https://data.delijn.be/stops/204092"], ["https://data.delijn.be/stops/206129", "https://data.delijn.be/stops/207128"], ["https://data.delijn.be/stops/202706", "https://data.delijn.be/stops/203707"], ["https://data.delijn.be/stops/503722", "https://data.delijn.be/stops/503774"], ["https://data.delijn.be/stops/301289", "https://data.delijn.be/stops/307254"], ["https://data.delijn.be/stops/208118", "https://data.delijn.be/stops/209117"], ["https://data.delijn.be/stops/206606", "https://data.delijn.be/stops/207606"], ["https://data.delijn.be/stops/200395", "https://data.delijn.be/stops/208703"], ["https://data.delijn.be/stops/109890", "https://data.delijn.be/stops/109891"], ["https://data.delijn.be/stops/405705", "https://data.delijn.be/stops/405706"], ["https://data.delijn.be/stops/307616", "https://data.delijn.be/stops/307907"], ["https://data.delijn.be/stops/101204", "https://data.delijn.be/stops/205541"], ["https://data.delijn.be/stops/103116", "https://data.delijn.be/stops/107368"], ["https://data.delijn.be/stops/107901", "https://data.delijn.be/stops/107907"], ["https://data.delijn.be/stops/502474", "https://data.delijn.be/stops/505802"], ["https://data.delijn.be/stops/401651", "https://data.delijn.be/stops/305950"], ["https://data.delijn.be/stops/200495", "https://data.delijn.be/stops/201494"], ["https://data.delijn.be/stops/503112", "https://data.delijn.be/stops/503113"], ["https://data.delijn.be/stops/200143", "https://data.delijn.be/stops/200568"], ["https://data.delijn.be/stops/105731", "https://data.delijn.be/stops/105732"], ["https://data.delijn.be/stops/209610", "https://data.delijn.be/stops/305236"], ["https://data.delijn.be/stops/402580", "https://data.delijn.be/stops/402583"], ["https://data.delijn.be/stops/304589", "https://data.delijn.be/stops/304653"], ["https://data.delijn.be/stops/407837", "https://data.delijn.be/stops/409561"], ["https://data.delijn.be/stops/102976", "https://data.delijn.be/stops/106770"], ["https://data.delijn.be/stops/304027", "https://data.delijn.be/stops/304030"], ["https://data.delijn.be/stops/501047", "https://data.delijn.be/stops/507732"], ["https://data.delijn.be/stops/409680", "https://data.delijn.be/stops/409681"], ["https://data.delijn.be/stops/202950", "https://data.delijn.be/stops/202951"], ["https://data.delijn.be/stops/101368", "https://data.delijn.be/stops/101369"], ["https://data.delijn.be/stops/404286", "https://data.delijn.be/stops/407292"], ["https://data.delijn.be/stops/301365", "https://data.delijn.be/stops/304798"], ["https://data.delijn.be/stops/200633", "https://data.delijn.be/stops/201637"], ["https://data.delijn.be/stops/108050", "https://data.delijn.be/stops/307903"], ["https://data.delijn.be/stops/202179", "https://data.delijn.be/stops/203179"], ["https://data.delijn.be/stops/503082", "https://data.delijn.be/stops/508507"], ["https://data.delijn.be/stops/301283", "https://data.delijn.be/stops/306249"], ["https://data.delijn.be/stops/400124", "https://data.delijn.be/stops/403312"], ["https://data.delijn.be/stops/105744", "https://data.delijn.be/stops/109950"], ["https://data.delijn.be/stops/107602", "https://data.delijn.be/stops/107689"], ["https://data.delijn.be/stops/501098", "https://data.delijn.be/stops/507208"], ["https://data.delijn.be/stops/301885", "https://data.delijn.be/stops/301886"], ["https://data.delijn.be/stops/302157", "https://data.delijn.be/stops/302167"], ["https://data.delijn.be/stops/400330", "https://data.delijn.be/stops/400332"], ["https://data.delijn.be/stops/205688", "https://data.delijn.be/stops/205689"], ["https://data.delijn.be/stops/400134", "https://data.delijn.be/stops/400135"], ["https://data.delijn.be/stops/404567", "https://data.delijn.be/stops/404568"], ["https://data.delijn.be/stops/301007", "https://data.delijn.be/stops/301008"], ["https://data.delijn.be/stops/303001", "https://data.delijn.be/stops/306281"], ["https://data.delijn.be/stops/205314", "https://data.delijn.be/stops/205338"], ["https://data.delijn.be/stops/206835", "https://data.delijn.be/stops/207939"], ["https://data.delijn.be/stops/502359", "https://data.delijn.be/stops/502531"], ["https://data.delijn.be/stops/305483", "https://data.delijn.be/stops/308552"], ["https://data.delijn.be/stops/402044", "https://data.delijn.be/stops/402468"], ["https://data.delijn.be/stops/401487", "https://data.delijn.be/stops/401505"], ["https://data.delijn.be/stops/204791", "https://data.delijn.be/stops/205238"], ["https://data.delijn.be/stops/502338", "https://data.delijn.be/stops/507329"], ["https://data.delijn.be/stops/302791", "https://data.delijn.be/stops/307703"], ["https://data.delijn.be/stops/301090", "https://data.delijn.be/stops/304253"], ["https://data.delijn.be/stops/404106", "https://data.delijn.be/stops/404126"], ["https://data.delijn.be/stops/202552", "https://data.delijn.be/stops/203552"], ["https://data.delijn.be/stops/304237", "https://data.delijn.be/stops/304247"], ["https://data.delijn.be/stops/404833", "https://data.delijn.be/stops/408926"], ["https://data.delijn.be/stops/307544", "https://data.delijn.be/stops/307753"], ["https://data.delijn.be/stops/406416", "https://data.delijn.be/stops/409349"], ["https://data.delijn.be/stops/105318", "https://data.delijn.be/stops/105326"], ["https://data.delijn.be/stops/205137", "https://data.delijn.be/stops/207896"], ["https://data.delijn.be/stops/200539", "https://data.delijn.be/stops/201538"], ["https://data.delijn.be/stops/406122", "https://data.delijn.be/stops/406123"], ["https://data.delijn.be/stops/308516", "https://data.delijn.be/stops/308539"], ["https://data.delijn.be/stops/209545", "https://data.delijn.be/stops/209546"], ["https://data.delijn.be/stops/406564", "https://data.delijn.be/stops/406565"], ["https://data.delijn.be/stops/402128", "https://data.delijn.be/stops/410290"], ["https://data.delijn.be/stops/102990", "https://data.delijn.be/stops/102991"], ["https://data.delijn.be/stops/508649", "https://data.delijn.be/stops/508650"], ["https://data.delijn.be/stops/101886", "https://data.delijn.be/stops/104468"], ["https://data.delijn.be/stops/400596", "https://data.delijn.be/stops/400618"], ["https://data.delijn.be/stops/305830", "https://data.delijn.be/stops/305954"], ["https://data.delijn.be/stops/408584", "https://data.delijn.be/stops/408585"], ["https://data.delijn.be/stops/101614", "https://data.delijn.be/stops/101616"], ["https://data.delijn.be/stops/401409", "https://data.delijn.be/stops/305165"], ["https://data.delijn.be/stops/102253", "https://data.delijn.be/stops/108292"], ["https://data.delijn.be/stops/300861", "https://data.delijn.be/stops/301055"], ["https://data.delijn.be/stops/503168", "https://data.delijn.be/stops/508168"], ["https://data.delijn.be/stops/301190", "https://data.delijn.be/stops/308558"], ["https://data.delijn.be/stops/500927", "https://data.delijn.be/stops/504674"], ["https://data.delijn.be/stops/300331", "https://data.delijn.be/stops/304444"], ["https://data.delijn.be/stops/204054", "https://data.delijn.be/stops/204316"], ["https://data.delijn.be/stops/300176", "https://data.delijn.be/stops/300193"], ["https://data.delijn.be/stops/502134", "https://data.delijn.be/stops/507134"], ["https://data.delijn.be/stops/307555", "https://data.delijn.be/stops/307557"], ["https://data.delijn.be/stops/302663", "https://data.delijn.be/stops/302665"], ["https://data.delijn.be/stops/401394", "https://data.delijn.be/stops/408419"], ["https://data.delijn.be/stops/504882", "https://data.delijn.be/stops/505626"], ["https://data.delijn.be/stops/301020", "https://data.delijn.be/stops/305916"], ["https://data.delijn.be/stops/505207", "https://data.delijn.be/stops/509550"], ["https://data.delijn.be/stops/404490", "https://data.delijn.be/stops/404491"], ["https://data.delijn.be/stops/201925", "https://data.delijn.be/stops/216019"], ["https://data.delijn.be/stops/305381", "https://data.delijn.be/stops/305386"], ["https://data.delijn.be/stops/403028", "https://data.delijn.be/stops/403029"], ["https://data.delijn.be/stops/305417", "https://data.delijn.be/stops/305418"], ["https://data.delijn.be/stops/200920", "https://data.delijn.be/stops/202275"], ["https://data.delijn.be/stops/304380", "https://data.delijn.be/stops/307070"], ["https://data.delijn.be/stops/503824", "https://data.delijn.be/stops/505740"], ["https://data.delijn.be/stops/500052", "https://data.delijn.be/stops/501010"], ["https://data.delijn.be/stops/303577", "https://data.delijn.be/stops/305225"], ["https://data.delijn.be/stops/503502", "https://data.delijn.be/stops/508496"], ["https://data.delijn.be/stops/406207", "https://data.delijn.be/stops/406744"], ["https://data.delijn.be/stops/406224", "https://data.delijn.be/stops/406229"], ["https://data.delijn.be/stops/502800", "https://data.delijn.be/stops/504179"], ["https://data.delijn.be/stops/302710", "https://data.delijn.be/stops/302736"], ["https://data.delijn.be/stops/107348", "https://data.delijn.be/stops/108173"], ["https://data.delijn.be/stops/506036", "https://data.delijn.be/stops/506056"], ["https://data.delijn.be/stops/501246", "https://data.delijn.be/stops/501249"], ["https://data.delijn.be/stops/505772", "https://data.delijn.be/stops/507679"], ["https://data.delijn.be/stops/300171", "https://data.delijn.be/stops/300172"], ["https://data.delijn.be/stops/101087", "https://data.delijn.be/stops/101089"], ["https://data.delijn.be/stops/201946", "https://data.delijn.be/stops/201947"], ["https://data.delijn.be/stops/400897", "https://data.delijn.be/stops/409641"], ["https://data.delijn.be/stops/503454", "https://data.delijn.be/stops/503469"], ["https://data.delijn.be/stops/206533", "https://data.delijn.be/stops/207533"], ["https://data.delijn.be/stops/200562", "https://data.delijn.be/stops/201563"], ["https://data.delijn.be/stops/403133", "https://data.delijn.be/stops/410130"], ["https://data.delijn.be/stops/208015", "https://data.delijn.be/stops/208020"], ["https://data.delijn.be/stops/301631", "https://data.delijn.be/stops/303662"], ["https://data.delijn.be/stops/200734", "https://data.delijn.be/stops/202124"], ["https://data.delijn.be/stops/504373", "https://data.delijn.be/stops/504776"], ["https://data.delijn.be/stops/107059", "https://data.delijn.be/stops/108219"], ["https://data.delijn.be/stops/405903", "https://data.delijn.be/stops/405971"], ["https://data.delijn.be/stops/106195", "https://data.delijn.be/stops/106196"], ["https://data.delijn.be/stops/304225", "https://data.delijn.be/stops/304226"], ["https://data.delijn.be/stops/208360", "https://data.delijn.be/stops/209360"], ["https://data.delijn.be/stops/304334", "https://data.delijn.be/stops/305986"], ["https://data.delijn.be/stops/506248", "https://data.delijn.be/stops/506769"], ["https://data.delijn.be/stops/407009", "https://data.delijn.be/stops/407068"], ["https://data.delijn.be/stops/305346", "https://data.delijn.be/stops/305350"], ["https://data.delijn.be/stops/201771", "https://data.delijn.be/stops/208284"], ["https://data.delijn.be/stops/402137", "https://data.delijn.be/stops/402142"], ["https://data.delijn.be/stops/400584", "https://data.delijn.be/stops/400614"], ["https://data.delijn.be/stops/300644", "https://data.delijn.be/stops/300663"], ["https://data.delijn.be/stops/302192", "https://data.delijn.be/stops/308105"], ["https://data.delijn.be/stops/104907", "https://data.delijn.be/stops/107847"], ["https://data.delijn.be/stops/206128", "https://data.delijn.be/stops/206651"], ["https://data.delijn.be/stops/204098", "https://data.delijn.be/stops/205223"], ["https://data.delijn.be/stops/405289", "https://data.delijn.be/stops/405291"], ["https://data.delijn.be/stops/509054", "https://data.delijn.be/stops/509057"], ["https://data.delijn.be/stops/400565", "https://data.delijn.be/stops/403165"], ["https://data.delijn.be/stops/301981", "https://data.delijn.be/stops/303615"], ["https://data.delijn.be/stops/206121", "https://data.delijn.be/stops/207140"], ["https://data.delijn.be/stops/404714", "https://data.delijn.be/stops/404715"], ["https://data.delijn.be/stops/206459", "https://data.delijn.be/stops/207459"], ["https://data.delijn.be/stops/505644", "https://data.delijn.be/stops/509884"], ["https://data.delijn.be/stops/104270", "https://data.delijn.be/stops/104307"], ["https://data.delijn.be/stops/106220", "https://data.delijn.be/stops/106221"], ["https://data.delijn.be/stops/101476", "https://data.delijn.be/stops/108733"], ["https://data.delijn.be/stops/203004", "https://data.delijn.be/stops/203765"], ["https://data.delijn.be/stops/201811", "https://data.delijn.be/stops/201812"], ["https://data.delijn.be/stops/500566", "https://data.delijn.be/stops/500567"], ["https://data.delijn.be/stops/503923", "https://data.delijn.be/stops/508923"], ["https://data.delijn.be/stops/507505", "https://data.delijn.be/stops/507514"], ["https://data.delijn.be/stops/404909", "https://data.delijn.be/stops/404984"], ["https://data.delijn.be/stops/209238", "https://data.delijn.be/stops/209592"], ["https://data.delijn.be/stops/308470", "https://data.delijn.be/stops/308471"], ["https://data.delijn.be/stops/505791", "https://data.delijn.be/stops/505975"], ["https://data.delijn.be/stops/205174", "https://data.delijn.be/stops/205243"], ["https://data.delijn.be/stops/407834", "https://data.delijn.be/stops/407949"], ["https://data.delijn.be/stops/206120", "https://data.delijn.be/stops/207415"], ["https://data.delijn.be/stops/200208", "https://data.delijn.be/stops/203144"], ["https://data.delijn.be/stops/208233", "https://data.delijn.be/stops/208234"], ["https://data.delijn.be/stops/107868", "https://data.delijn.be/stops/107869"], ["https://data.delijn.be/stops/307065", "https://data.delijn.be/stops/307066"], ["https://data.delijn.be/stops/303562", "https://data.delijn.be/stops/303563"], ["https://data.delijn.be/stops/508019", "https://data.delijn.be/stops/508020"], ["https://data.delijn.be/stops/300647", "https://data.delijn.be/stops/300648"], ["https://data.delijn.be/stops/203821", "https://data.delijn.be/stops/203822"], ["https://data.delijn.be/stops/505387", "https://data.delijn.be/stops/505847"], ["https://data.delijn.be/stops/503027", "https://data.delijn.be/stops/503671"], ["https://data.delijn.be/stops/206745", "https://data.delijn.be/stops/207744"], ["https://data.delijn.be/stops/202393", "https://data.delijn.be/stops/203392"], ["https://data.delijn.be/stops/204414", "https://data.delijn.be/stops/205404"], ["https://data.delijn.be/stops/202393", "https://data.delijn.be/stops/202394"], ["https://data.delijn.be/stops/203979", "https://data.delijn.be/stops/203980"], ["https://data.delijn.be/stops/102192", "https://data.delijn.be/stops/105929"], ["https://data.delijn.be/stops/202228", "https://data.delijn.be/stops/203228"], ["https://data.delijn.be/stops/304238", "https://data.delijn.be/stops/304247"], ["https://data.delijn.be/stops/203459", "https://data.delijn.be/stops/203460"], ["https://data.delijn.be/stops/102843", "https://data.delijn.be/stops/106564"], ["https://data.delijn.be/stops/504506", "https://data.delijn.be/stops/509506"], ["https://data.delijn.be/stops/302415", "https://data.delijn.be/stops/302429"], ["https://data.delijn.be/stops/404608", "https://data.delijn.be/stops/404996"], ["https://data.delijn.be/stops/401586", "https://data.delijn.be/stops/402129"], ["https://data.delijn.be/stops/405696", "https://data.delijn.be/stops/405930"], ["https://data.delijn.be/stops/104899", "https://data.delijn.be/stops/109593"], ["https://data.delijn.be/stops/504086", "https://data.delijn.be/stops/505000"], ["https://data.delijn.be/stops/206399", "https://data.delijn.be/stops/207399"], ["https://data.delijn.be/stops/201882", "https://data.delijn.be/stops/202276"], ["https://data.delijn.be/stops/305219", "https://data.delijn.be/stops/305987"], ["https://data.delijn.be/stops/501468", "https://data.delijn.be/stops/505397"], ["https://data.delijn.be/stops/503752", "https://data.delijn.be/stops/504260"], ["https://data.delijn.be/stops/202688", "https://data.delijn.be/stops/203688"], ["https://data.delijn.be/stops/308056", "https://data.delijn.be/stops/308058"], ["https://data.delijn.be/stops/206945", "https://data.delijn.be/stops/207945"], ["https://data.delijn.be/stops/109720", "https://data.delijn.be/stops/109721"], ["https://data.delijn.be/stops/204671", "https://data.delijn.be/stops/205259"], ["https://data.delijn.be/stops/503913", "https://data.delijn.be/stops/503933"], ["https://data.delijn.be/stops/402065", "https://data.delijn.be/stops/405189"], ["https://data.delijn.be/stops/302972", "https://data.delijn.be/stops/302973"], ["https://data.delijn.be/stops/107228", "https://data.delijn.be/stops/107229"], ["https://data.delijn.be/stops/502018", "https://data.delijn.be/stops/507018"], ["https://data.delijn.be/stops/302583", "https://data.delijn.be/stops/302584"], ["https://data.delijn.be/stops/103136", "https://data.delijn.be/stops/106516"], ["https://data.delijn.be/stops/203531", "https://data.delijn.be/stops/206827"], ["https://data.delijn.be/stops/300937", "https://data.delijn.be/stops/301006"], ["https://data.delijn.be/stops/405013", "https://data.delijn.be/stops/408155"], ["https://data.delijn.be/stops/303995", "https://data.delijn.be/stops/306293"], ["https://data.delijn.be/stops/409777", "https://data.delijn.be/stops/409778"], ["https://data.delijn.be/stops/500561", "https://data.delijn.be/stops/500562"], ["https://data.delijn.be/stops/302646", "https://data.delijn.be/stops/302654"], ["https://data.delijn.be/stops/104337", "https://data.delijn.be/stops/105912"], ["https://data.delijn.be/stops/204423", "https://data.delijn.be/stops/204424"], ["https://data.delijn.be/stops/206165", "https://data.delijn.be/stops/308901"], ["https://data.delijn.be/stops/202426", "https://data.delijn.be/stops/203425"], ["https://data.delijn.be/stops/504664", "https://data.delijn.be/stops/509016"], ["https://data.delijn.be/stops/404249", "https://data.delijn.be/stops/404318"], ["https://data.delijn.be/stops/405233", "https://data.delijn.be/stops/405287"], ["https://data.delijn.be/stops/300356", "https://data.delijn.be/stops/300362"], ["https://data.delijn.be/stops/401772", "https://data.delijn.be/stops/406346"], ["https://data.delijn.be/stops/403255", "https://data.delijn.be/stops/403471"], ["https://data.delijn.be/stops/502150", "https://data.delijn.be/stops/507150"], ["https://data.delijn.be/stops/503281", "https://data.delijn.be/stops/504713"], ["https://data.delijn.be/stops/102198", "https://data.delijn.be/stops/105266"], ["https://data.delijn.be/stops/300734", "https://data.delijn.be/stops/302199"], ["https://data.delijn.be/stops/504160", "https://data.delijn.be/stops/509170"], ["https://data.delijn.be/stops/200489", "https://data.delijn.be/stops/203453"], ["https://data.delijn.be/stops/303148", "https://data.delijn.be/stops/307331"], ["https://data.delijn.be/stops/304378", "https://data.delijn.be/stops/304426"], ["https://data.delijn.be/stops/200952", "https://data.delijn.be/stops/203251"], ["https://data.delijn.be/stops/504444", "https://data.delijn.be/stops/509550"], ["https://data.delijn.be/stops/103257", "https://data.delijn.be/stops/105440"], ["https://data.delijn.be/stops/206976", "https://data.delijn.be/stops/207601"], ["https://data.delijn.be/stops/403040", "https://data.delijn.be/stops/403666"], ["https://data.delijn.be/stops/408851", "https://data.delijn.be/stops/408918"], ["https://data.delijn.be/stops/406947", "https://data.delijn.be/stops/406977"], ["https://data.delijn.be/stops/503255", "https://data.delijn.be/stops/503399"], ["https://data.delijn.be/stops/405660", "https://data.delijn.be/stops/302964"], ["https://data.delijn.be/stops/502245", "https://data.delijn.be/stops/507245"], ["https://data.delijn.be/stops/202301", "https://data.delijn.be/stops/203303"], ["https://data.delijn.be/stops/209674", "https://data.delijn.be/stops/209684"], ["https://data.delijn.be/stops/401419", "https://data.delijn.be/stops/305495"], ["https://data.delijn.be/stops/401110", "https://data.delijn.be/stops/410049"], ["https://data.delijn.be/stops/300465", "https://data.delijn.be/stops/300466"], ["https://data.delijn.be/stops/406392", "https://data.delijn.be/stops/406393"], ["https://data.delijn.be/stops/506254", "https://data.delijn.be/stops/506424"], ["https://data.delijn.be/stops/500935", "https://data.delijn.be/stops/500936"], ["https://data.delijn.be/stops/403321", "https://data.delijn.be/stops/403326"], ["https://data.delijn.be/stops/202877", "https://data.delijn.be/stops/203877"], ["https://data.delijn.be/stops/501115", "https://data.delijn.be/stops/506142"], ["https://data.delijn.be/stops/206599", "https://data.delijn.be/stops/207512"], ["https://data.delijn.be/stops/509407", "https://data.delijn.be/stops/509440"], ["https://data.delijn.be/stops/200241", "https://data.delijn.be/stops/201204"], ["https://data.delijn.be/stops/104551", "https://data.delijn.be/stops/108565"], ["https://data.delijn.be/stops/503649", "https://data.delijn.be/stops/508351"], ["https://data.delijn.be/stops/106581", "https://data.delijn.be/stops/107393"], ["https://data.delijn.be/stops/204133", "https://data.delijn.be/stops/205132"], ["https://data.delijn.be/stops/200906", "https://data.delijn.be/stops/202253"], ["https://data.delijn.be/stops/501449", "https://data.delijn.be/stops/506502"], ["https://data.delijn.be/stops/504867", "https://data.delijn.be/stops/504884"], ["https://data.delijn.be/stops/301717", "https://data.delijn.be/stops/301718"], ["https://data.delijn.be/stops/302387", "https://data.delijn.be/stops/304817"], ["https://data.delijn.be/stops/108282", "https://data.delijn.be/stops/109308"], ["https://data.delijn.be/stops/105698", "https://data.delijn.be/stops/105699"], ["https://data.delijn.be/stops/503834", "https://data.delijn.be/stops/508834"], ["https://data.delijn.be/stops/404182", "https://data.delijn.be/stops/404183"], ["https://data.delijn.be/stops/305213", "https://data.delijn.be/stops/305214"], ["https://data.delijn.be/stops/400205", "https://data.delijn.be/stops/400215"], ["https://data.delijn.be/stops/304172", "https://data.delijn.be/stops/304227"], ["https://data.delijn.be/stops/504156", "https://data.delijn.be/stops/509189"], ["https://data.delijn.be/stops/300259", "https://data.delijn.be/stops/300260"], ["https://data.delijn.be/stops/305280", "https://data.delijn.be/stops/305281"], ["https://data.delijn.be/stops/502680", "https://data.delijn.be/stops/507063"], ["https://data.delijn.be/stops/407792", "https://data.delijn.be/stops/308274"], ["https://data.delijn.be/stops/202104", "https://data.delijn.be/stops/203104"], ["https://data.delijn.be/stops/405428", "https://data.delijn.be/stops/302854"], ["https://data.delijn.be/stops/206984", "https://data.delijn.be/stops/207984"], ["https://data.delijn.be/stops/201650", "https://data.delijn.be/stops/211112"], ["https://data.delijn.be/stops/201850", "https://data.delijn.be/stops/201869"], ["https://data.delijn.be/stops/101344", "https://data.delijn.be/stops/108062"], ["https://data.delijn.be/stops/205447", "https://data.delijn.be/stops/205648"], ["https://data.delijn.be/stops/102885", "https://data.delijn.be/stops/104835"], ["https://data.delijn.be/stops/103958", "https://data.delijn.be/stops/105115"], ["https://data.delijn.be/stops/202101", "https://data.delijn.be/stops/203101"], ["https://data.delijn.be/stops/400098", "https://data.delijn.be/stops/403311"], ["https://data.delijn.be/stops/304306", "https://data.delijn.be/stops/304313"], ["https://data.delijn.be/stops/502138", "https://data.delijn.be/stops/507136"], ["https://data.delijn.be/stops/307284", "https://data.delijn.be/stops/307285"], ["https://data.delijn.be/stops/403132", "https://data.delijn.be/stops/403133"], ["https://data.delijn.be/stops/303462", "https://data.delijn.be/stops/304987"], ["https://data.delijn.be/stops/504807", "https://data.delijn.be/stops/504809"], ["https://data.delijn.be/stops/208660", "https://data.delijn.be/stops/209521"], ["https://data.delijn.be/stops/207270", "https://data.delijn.be/stops/207271"], ["https://data.delijn.be/stops/307586", "https://data.delijn.be/stops/307587"], ["https://data.delijn.be/stops/504664", "https://data.delijn.be/stops/509506"], ["https://data.delijn.be/stops/200945", "https://data.delijn.be/stops/202699"], ["https://data.delijn.be/stops/408572", "https://data.delijn.be/stops/408573"], ["https://data.delijn.be/stops/207774", "https://data.delijn.be/stops/207776"], ["https://data.delijn.be/stops/301044", "https://data.delijn.be/stops/304809"], ["https://data.delijn.be/stops/505630", "https://data.delijn.be/stops/508335"], ["https://data.delijn.be/stops/101372", "https://data.delijn.be/stops/101373"], ["https://data.delijn.be/stops/403435", "https://data.delijn.be/stops/403436"], ["https://data.delijn.be/stops/505757", "https://data.delijn.be/stops/509795"], ["https://data.delijn.be/stops/307349", "https://data.delijn.be/stops/307433"], ["https://data.delijn.be/stops/408836", "https://data.delijn.be/stops/408846"], ["https://data.delijn.be/stops/104776", "https://data.delijn.be/stops/104778"], ["https://data.delijn.be/stops/302494", "https://data.delijn.be/stops/302718"], ["https://data.delijn.be/stops/301179", "https://data.delijn.be/stops/305645"], ["https://data.delijn.be/stops/106334", "https://data.delijn.be/stops/106336"], ["https://data.delijn.be/stops/304020", "https://data.delijn.be/stops/304065"], ["https://data.delijn.be/stops/301295", "https://data.delijn.be/stops/308952"], ["https://data.delijn.be/stops/400663", "https://data.delijn.be/stops/400665"], ["https://data.delijn.be/stops/206998", "https://data.delijn.be/stops/207567"], ["https://data.delijn.be/stops/204998", "https://data.delijn.be/stops/208120"], ["https://data.delijn.be/stops/202659", "https://data.delijn.be/stops/211659"], ["https://data.delijn.be/stops/404465", "https://data.delijn.be/stops/404467"], ["https://data.delijn.be/stops/301313", "https://data.delijn.be/stops/306252"], ["https://data.delijn.be/stops/306180", "https://data.delijn.be/stops/306181"], ["https://data.delijn.be/stops/108210", "https://data.delijn.be/stops/109120"], ["https://data.delijn.be/stops/102513", "https://data.delijn.be/stops/406499"], ["https://data.delijn.be/stops/502426", "https://data.delijn.be/stops/507309"], ["https://data.delijn.be/stops/204392", "https://data.delijn.be/stops/204393"], ["https://data.delijn.be/stops/302021", "https://data.delijn.be/stops/307284"], ["https://data.delijn.be/stops/106064", "https://data.delijn.be/stops/109875"], ["https://data.delijn.be/stops/405932", "https://data.delijn.be/stops/405989"], ["https://data.delijn.be/stops/102516", "https://data.delijn.be/stops/405607"], ["https://data.delijn.be/stops/202630", "https://data.delijn.be/stops/203630"], ["https://data.delijn.be/stops/101474", "https://data.delijn.be/stops/109176"], ["https://data.delijn.be/stops/304361", "https://data.delijn.be/stops/304369"], ["https://data.delijn.be/stops/106815", "https://data.delijn.be/stops/106816"], ["https://data.delijn.be/stops/300198", "https://data.delijn.be/stops/300208"], ["https://data.delijn.be/stops/300102", "https://data.delijn.be/stops/306851"], ["https://data.delijn.be/stops/400593", "https://data.delijn.be/stops/405919"], ["https://data.delijn.be/stops/403986", "https://data.delijn.be/stops/403994"], ["https://data.delijn.be/stops/206778", "https://data.delijn.be/stops/206797"], ["https://data.delijn.be/stops/101533", "https://data.delijn.be/stops/109117"], ["https://data.delijn.be/stops/205128", "https://data.delijn.be/stops/205129"], ["https://data.delijn.be/stops/306065", "https://data.delijn.be/stops/306066"], ["https://data.delijn.be/stops/403961", "https://data.delijn.be/stops/403971"], ["https://data.delijn.be/stops/203396", "https://data.delijn.be/stops/211038"], ["https://data.delijn.be/stops/300212", "https://data.delijn.be/stops/303735"], ["https://data.delijn.be/stops/201736", "https://data.delijn.be/stops/203784"], ["https://data.delijn.be/stops/503079", "https://data.delijn.be/stops/508081"], ["https://data.delijn.be/stops/200543", "https://data.delijn.be/stops/205929"], ["https://data.delijn.be/stops/208066", "https://data.delijn.be/stops/209194"], ["https://data.delijn.be/stops/206536", "https://data.delijn.be/stops/209741"], ["https://data.delijn.be/stops/501283", "https://data.delijn.be/stops/506328"], ["https://data.delijn.be/stops/209600", "https://data.delijn.be/stops/307601"], ["https://data.delijn.be/stops/304267", "https://data.delijn.be/stops/304278"], ["https://data.delijn.be/stops/302593", "https://data.delijn.be/stops/302678"], ["https://data.delijn.be/stops/209202", "https://data.delijn.be/stops/209781"], ["https://data.delijn.be/stops/406470", "https://data.delijn.be/stops/406492"], ["https://data.delijn.be/stops/505774", "https://data.delijn.be/stops/509825"], ["https://data.delijn.be/stops/308046", "https://data.delijn.be/stops/308446"], ["https://data.delijn.be/stops/502691", "https://data.delijn.be/stops/507477"], ["https://data.delijn.be/stops/408621", "https://data.delijn.be/stops/408807"], ["https://data.delijn.be/stops/504031", "https://data.delijn.be/stops/504032"], ["https://data.delijn.be/stops/300543", "https://data.delijn.be/stops/303525"], ["https://data.delijn.be/stops/504143", "https://data.delijn.be/stops/509143"], ["https://data.delijn.be/stops/403664", "https://data.delijn.be/stops/409262"], ["https://data.delijn.be/stops/105561", "https://data.delijn.be/stops/106292"], ["https://data.delijn.be/stops/204179", "https://data.delijn.be/stops/207393"], ["https://data.delijn.be/stops/108134", "https://data.delijn.be/stops/108843"], ["https://data.delijn.be/stops/301116", "https://data.delijn.be/stops/302244"], ["https://data.delijn.be/stops/301528", "https://data.delijn.be/stops/308084"], ["https://data.delijn.be/stops/400788", "https://data.delijn.be/stops/409596"], ["https://data.delijn.be/stops/101798", "https://data.delijn.be/stops/300642"], ["https://data.delijn.be/stops/302454", "https://data.delijn.be/stops/302497"], ["https://data.delijn.be/stops/109063", "https://data.delijn.be/stops/307369"], ["https://data.delijn.be/stops/302453", "https://data.delijn.be/stops/302467"], ["https://data.delijn.be/stops/402678", "https://data.delijn.be/stops/402737"], ["https://data.delijn.be/stops/203629", "https://data.delijn.be/stops/205068"], ["https://data.delijn.be/stops/304608", "https://data.delijn.be/stops/304626"], ["https://data.delijn.be/stops/504719", "https://data.delijn.be/stops/508529"], ["https://data.delijn.be/stops/405808", "https://data.delijn.be/stops/409414"], ["https://data.delijn.be/stops/304926", "https://data.delijn.be/stops/306111"], ["https://data.delijn.be/stops/503722", "https://data.delijn.be/stops/509938"], ["https://data.delijn.be/stops/200897", "https://data.delijn.be/stops/202053"], ["https://data.delijn.be/stops/102844", "https://data.delijn.be/stops/107365"], ["https://data.delijn.be/stops/103163", "https://data.delijn.be/stops/109932"], ["https://data.delijn.be/stops/407200", "https://data.delijn.be/stops/407207"], ["https://data.delijn.be/stops/402838", "https://data.delijn.be/stops/409015"], ["https://data.delijn.be/stops/207304", "https://data.delijn.be/stops/207738"], ["https://data.delijn.be/stops/200136", "https://data.delijn.be/stops/201308"], ["https://data.delijn.be/stops/103141", "https://data.delijn.be/stops/106511"], ["https://data.delijn.be/stops/507197", "https://data.delijn.be/stops/507631"], ["https://data.delijn.be/stops/107564", "https://data.delijn.be/stops/107568"], ["https://data.delijn.be/stops/408624", "https://data.delijn.be/stops/408625"], ["https://data.delijn.be/stops/500938", "https://data.delijn.be/stops/509885"], ["https://data.delijn.be/stops/102345", "https://data.delijn.be/stops/103675"], ["https://data.delijn.be/stops/503998", "https://data.delijn.be/stops/508914"], ["https://data.delijn.be/stops/406272", "https://data.delijn.be/stops/406273"], ["https://data.delijn.be/stops/303540", "https://data.delijn.be/stops/303569"], ["https://data.delijn.be/stops/204579", "https://data.delijn.be/stops/204589"], ["https://data.delijn.be/stops/403075", "https://data.delijn.be/stops/410285"], ["https://data.delijn.be/stops/302176", "https://data.delijn.be/stops/308104"], ["https://data.delijn.be/stops/408890", "https://data.delijn.be/stops/408907"], ["https://data.delijn.be/stops/107336", "https://data.delijn.be/stops/107338"], ["https://data.delijn.be/stops/302154", "https://data.delijn.be/stops/302182"], ["https://data.delijn.be/stops/105779", "https://data.delijn.be/stops/105781"], ["https://data.delijn.be/stops/503760", "https://data.delijn.be/stops/508624"], ["https://data.delijn.be/stops/303541", "https://data.delijn.be/stops/305897"], ["https://data.delijn.be/stops/104512", "https://data.delijn.be/stops/107787"], ["https://data.delijn.be/stops/508417", "https://data.delijn.be/stops/508951"], ["https://data.delijn.be/stops/301221", "https://data.delijn.be/stops/301222"], ["https://data.delijn.be/stops/207663", "https://data.delijn.be/stops/207664"], ["https://data.delijn.be/stops/503982", "https://data.delijn.be/stops/508519"], ["https://data.delijn.be/stops/106028", "https://data.delijn.be/stops/106031"], ["https://data.delijn.be/stops/106985", "https://data.delijn.be/stops/106987"], ["https://data.delijn.be/stops/102073", "https://data.delijn.be/stops/107304"], ["https://data.delijn.be/stops/406157", "https://data.delijn.be/stops/406253"], ["https://data.delijn.be/stops/304388", "https://data.delijn.be/stops/306870"], ["https://data.delijn.be/stops/505906", "https://data.delijn.be/stops/508631"], ["https://data.delijn.be/stops/301267", "https://data.delijn.be/stops/305042"], ["https://data.delijn.be/stops/207668", "https://data.delijn.be/stops/208506"], ["https://data.delijn.be/stops/107375", "https://data.delijn.be/stops/107585"], ["https://data.delijn.be/stops/402337", "https://data.delijn.be/stops/402443"], ["https://data.delijn.be/stops/408426", "https://data.delijn.be/stops/408427"], ["https://data.delijn.be/stops/208669", "https://data.delijn.be/stops/208671"], ["https://data.delijn.be/stops/209647", "https://data.delijn.be/stops/211111"], ["https://data.delijn.be/stops/207895", "https://data.delijn.be/stops/207896"], ["https://data.delijn.be/stops/209591", "https://data.delijn.be/stops/307529"], ["https://data.delijn.be/stops/407941", "https://data.delijn.be/stops/408433"], ["https://data.delijn.be/stops/202533", "https://data.delijn.be/stops/205174"], ["https://data.delijn.be/stops/408549", "https://data.delijn.be/stops/408675"], ["https://data.delijn.be/stops/206700", "https://data.delijn.be/stops/207700"], ["https://data.delijn.be/stops/408505", "https://data.delijn.be/stops/408508"], ["https://data.delijn.be/stops/102180", "https://data.delijn.be/stops/102183"], ["https://data.delijn.be/stops/105373", "https://data.delijn.be/stops/105374"], ["https://data.delijn.be/stops/404904", "https://data.delijn.be/stops/405648"], ["https://data.delijn.be/stops/303335", "https://data.delijn.be/stops/307117"], ["https://data.delijn.be/stops/409194", "https://data.delijn.be/stops/409199"], ["https://data.delijn.be/stops/304428", "https://data.delijn.be/stops/304430"], ["https://data.delijn.be/stops/200802", "https://data.delijn.be/stops/202543"], ["https://data.delijn.be/stops/104419", "https://data.delijn.be/stops/205287"], ["https://data.delijn.be/stops/509118", "https://data.delijn.be/stops/509718"], ["https://data.delijn.be/stops/300306", "https://data.delijn.be/stops/300307"], ["https://data.delijn.be/stops/305060", "https://data.delijn.be/stops/306921"], ["https://data.delijn.be/stops/104519", "https://data.delijn.be/stops/107934"], ["https://data.delijn.be/stops/200892", "https://data.delijn.be/stops/505684"], ["https://data.delijn.be/stops/204652", "https://data.delijn.be/stops/205260"], ["https://data.delijn.be/stops/408559", "https://data.delijn.be/stops/408562"], ["https://data.delijn.be/stops/305562", "https://data.delijn.be/stops/308552"], ["https://data.delijn.be/stops/202624", "https://data.delijn.be/stops/203624"], ["https://data.delijn.be/stops/301587", "https://data.delijn.be/stops/304960"], ["https://data.delijn.be/stops/102211", "https://data.delijn.be/stops/106122"], ["https://data.delijn.be/stops/405565", "https://data.delijn.be/stops/405575"], ["https://data.delijn.be/stops/201964", "https://data.delijn.be/stops/209034"], ["https://data.delijn.be/stops/302358", "https://data.delijn.be/stops/302362"], ["https://data.delijn.be/stops/207199", "https://data.delijn.be/stops/207815"], ["https://data.delijn.be/stops/405305", "https://data.delijn.be/stops/302829"], ["https://data.delijn.be/stops/101778", "https://data.delijn.be/stops/104261"], ["https://data.delijn.be/stops/501120", "https://data.delijn.be/stops/501397"], ["https://data.delijn.be/stops/202645", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/504829", "https://data.delijn.be/stops/509886"], ["https://data.delijn.be/stops/502688", "https://data.delijn.be/stops/502689"], ["https://data.delijn.be/stops/210133", "https://data.delijn.be/stops/211133"], ["https://data.delijn.be/stops/200160", "https://data.delijn.be/stops/200310"], ["https://data.delijn.be/stops/406167", "https://data.delijn.be/stops/406427"], ["https://data.delijn.be/stops/404774", "https://data.delijn.be/stops/410051"], ["https://data.delijn.be/stops/304337", "https://data.delijn.be/stops/304707"], ["https://data.delijn.be/stops/106646", "https://data.delijn.be/stops/106648"], ["https://data.delijn.be/stops/503055", "https://data.delijn.be/stops/503057"], ["https://data.delijn.be/stops/205228", "https://data.delijn.be/stops/205229"], ["https://data.delijn.be/stops/308509", "https://data.delijn.be/stops/308511"], ["https://data.delijn.be/stops/104583", "https://data.delijn.be/stops/104587"], ["https://data.delijn.be/stops/104379", "https://data.delijn.be/stops/104382"], ["https://data.delijn.be/stops/207378", "https://data.delijn.be/stops/207380"], ["https://data.delijn.be/stops/102900", "https://data.delijn.be/stops/102977"], ["https://data.delijn.be/stops/500558", "https://data.delijn.be/stops/501044"], ["https://data.delijn.be/stops/403689", "https://data.delijn.be/stops/409274"], ["https://data.delijn.be/stops/308287", "https://data.delijn.be/stops/308292"], ["https://data.delijn.be/stops/200472", "https://data.delijn.be/stops/201890"], ["https://data.delijn.be/stops/209292", "https://data.delijn.be/stops/211065"], ["https://data.delijn.be/stops/101399", "https://data.delijn.be/stops/101402"], ["https://data.delijn.be/stops/109095", "https://data.delijn.be/stops/109100"], ["https://data.delijn.be/stops/503841", "https://data.delijn.be/stops/503860"], ["https://data.delijn.be/stops/104857", "https://data.delijn.be/stops/107469"], ["https://data.delijn.be/stops/400590", "https://data.delijn.be/stops/404293"], ["https://data.delijn.be/stops/504145", "https://data.delijn.be/stops/504583"], ["https://data.delijn.be/stops/502539", "https://data.delijn.be/stops/508823"], ["https://data.delijn.be/stops/107799", "https://data.delijn.be/stops/107801"], ["https://data.delijn.be/stops/101515", "https://data.delijn.be/stops/101520"], ["https://data.delijn.be/stops/502452", "https://data.delijn.be/stops/502461"], ["https://data.delijn.be/stops/109074", "https://data.delijn.be/stops/300109"], ["https://data.delijn.be/stops/200235", "https://data.delijn.be/stops/200249"], ["https://data.delijn.be/stops/504871", "https://data.delijn.be/stops/509448"], ["https://data.delijn.be/stops/404475", "https://data.delijn.be/stops/407249"], ["https://data.delijn.be/stops/207179", "https://data.delijn.be/stops/207180"], ["https://data.delijn.be/stops/503373", "https://data.delijn.be/stops/503384"], ["https://data.delijn.be/stops/200905", "https://data.delijn.be/stops/210006"], ["https://data.delijn.be/stops/401505", "https://data.delijn.be/stops/401887"], ["https://data.delijn.be/stops/202580", "https://data.delijn.be/stops/203580"], ["https://data.delijn.be/stops/502340", "https://data.delijn.be/stops/502342"], ["https://data.delijn.be/stops/410353", "https://data.delijn.be/stops/410359"], ["https://data.delijn.be/stops/400016", "https://data.delijn.be/stops/400430"], ["https://data.delijn.be/stops/106478", "https://data.delijn.be/stops/106479"], ["https://data.delijn.be/stops/307447", "https://data.delijn.be/stops/307448"], ["https://data.delijn.be/stops/200709", "https://data.delijn.be/stops/200710"], ["https://data.delijn.be/stops/208295", "https://data.delijn.be/stops/208330"], ["https://data.delijn.be/stops/409055", "https://data.delijn.be/stops/409060"], ["https://data.delijn.be/stops/208052", "https://data.delijn.be/stops/208658"], ["https://data.delijn.be/stops/104396", "https://data.delijn.be/stops/104397"], ["https://data.delijn.be/stops/502141", "https://data.delijn.be/stops/507141"], ["https://data.delijn.be/stops/400545", "https://data.delijn.be/stops/404281"], ["https://data.delijn.be/stops/104667", "https://data.delijn.be/stops/205629"], ["https://data.delijn.be/stops/302960", "https://data.delijn.be/stops/302980"], ["https://data.delijn.be/stops/204083", "https://data.delijn.be/stops/205083"], ["https://data.delijn.be/stops/407247", "https://data.delijn.be/stops/407457"], ["https://data.delijn.be/stops/102216", "https://data.delijn.be/stops/106250"], ["https://data.delijn.be/stops/102854", "https://data.delijn.be/stops/104402"], ["https://data.delijn.be/stops/102590", "https://data.delijn.be/stops/104280"], ["https://data.delijn.be/stops/104605", "https://data.delijn.be/stops/109584"], ["https://data.delijn.be/stops/509947", "https://data.delijn.be/stops/509951"], ["https://data.delijn.be/stops/300615", "https://data.delijn.be/stops/307981"], ["https://data.delijn.be/stops/108632", "https://data.delijn.be/stops/108633"], ["https://data.delijn.be/stops/300014", "https://data.delijn.be/stops/300389"], ["https://data.delijn.be/stops/103964", "https://data.delijn.be/stops/107526"], ["https://data.delijn.be/stops/508999", "https://data.delijn.be/stops/509752"], ["https://data.delijn.be/stops/306068", "https://data.delijn.be/stops/307204"], ["https://data.delijn.be/stops/205048", "https://data.delijn.be/stops/205302"], ["https://data.delijn.be/stops/104990", "https://data.delijn.be/stops/105000"], ["https://data.delijn.be/stops/401285", "https://data.delijn.be/stops/401379"], ["https://data.delijn.be/stops/108385", "https://data.delijn.be/stops/108387"], ["https://data.delijn.be/stops/507035", "https://data.delijn.be/stops/507604"], ["https://data.delijn.be/stops/402446", "https://data.delijn.be/stops/402447"], ["https://data.delijn.be/stops/302710", "https://data.delijn.be/stops/302711"], ["https://data.delijn.be/stops/408276", "https://data.delijn.be/stops/408277"], ["https://data.delijn.be/stops/206407", "https://data.delijn.be/stops/207407"], ["https://data.delijn.be/stops/104597", "https://data.delijn.be/stops/105117"], ["https://data.delijn.be/stops/301608", "https://data.delijn.be/stops/301611"], ["https://data.delijn.be/stops/304363", "https://data.delijn.be/stops/304429"], ["https://data.delijn.be/stops/301605", "https://data.delijn.be/stops/301613"], ["https://data.delijn.be/stops/206321", "https://data.delijn.be/stops/206506"], ["https://data.delijn.be/stops/404350", "https://data.delijn.be/stops/404384"], ["https://data.delijn.be/stops/102171", "https://data.delijn.be/stops/102443"], ["https://data.delijn.be/stops/504503", "https://data.delijn.be/stops/504510"], ["https://data.delijn.be/stops/406268", "https://data.delijn.be/stops/406424"], ["https://data.delijn.be/stops/408238", "https://data.delijn.be/stops/408239"], ["https://data.delijn.be/stops/102445", "https://data.delijn.be/stops/107620"], ["https://data.delijn.be/stops/200181", "https://data.delijn.be/stops/200195"], ["https://data.delijn.be/stops/202008", "https://data.delijn.be/stops/203009"], ["https://data.delijn.be/stops/302947", "https://data.delijn.be/stops/302997"], ["https://data.delijn.be/stops/504944", "https://data.delijn.be/stops/505549"], ["https://data.delijn.be/stops/403437", "https://data.delijn.be/stops/410130"], ["https://data.delijn.be/stops/305052", "https://data.delijn.be/stops/307278"], ["https://data.delijn.be/stops/303994", "https://data.delijn.be/stops/307017"], ["https://data.delijn.be/stops/204035", "https://data.delijn.be/stops/205036"], ["https://data.delijn.be/stops/405263", "https://data.delijn.be/stops/405270"], ["https://data.delijn.be/stops/404715", "https://data.delijn.be/stops/404718"], ["https://data.delijn.be/stops/202586", "https://data.delijn.be/stops/203586"], ["https://data.delijn.be/stops/101831", "https://data.delijn.be/stops/107004"], ["https://data.delijn.be/stops/208058", "https://data.delijn.be/stops/217004"], ["https://data.delijn.be/stops/105145", "https://data.delijn.be/stops/105755"], ["https://data.delijn.be/stops/402180", "https://data.delijn.be/stops/402495"], ["https://data.delijn.be/stops/306899", "https://data.delijn.be/stops/308094"], ["https://data.delijn.be/stops/504245", "https://data.delijn.be/stops/504247"], ["https://data.delijn.be/stops/206519", "https://data.delijn.be/stops/207525"], ["https://data.delijn.be/stops/101377", "https://data.delijn.be/stops/101398"], ["https://data.delijn.be/stops/505195", "https://data.delijn.be/stops/508149"], ["https://data.delijn.be/stops/208543", "https://data.delijn.be/stops/209544"], ["https://data.delijn.be/stops/108869", "https://data.delijn.be/stops/109511"], ["https://data.delijn.be/stops/102042", "https://data.delijn.be/stops/206899"], ["https://data.delijn.be/stops/208076", "https://data.delijn.be/stops/209540"], ["https://data.delijn.be/stops/106638", "https://data.delijn.be/stops/106649"], ["https://data.delijn.be/stops/201804", "https://data.delijn.be/stops/201816"], ["https://data.delijn.be/stops/206232", "https://data.delijn.be/stops/300152"], ["https://data.delijn.be/stops/201962", "https://data.delijn.be/stops/202399"], ["https://data.delijn.be/stops/407917", "https://data.delijn.be/stops/407973"], ["https://data.delijn.be/stops/304156", "https://data.delijn.be/stops/307758"], ["https://data.delijn.be/stops/103681", "https://data.delijn.be/stops/104513"], ["https://data.delijn.be/stops/101776", "https://data.delijn.be/stops/107696"], ["https://data.delijn.be/stops/301633", "https://data.delijn.be/stops/301636"], ["https://data.delijn.be/stops/402121", "https://data.delijn.be/stops/402261"], ["https://data.delijn.be/stops/505943", "https://data.delijn.be/stops/508223"], ["https://data.delijn.be/stops/104017", "https://data.delijn.be/stops/109884"], ["https://data.delijn.be/stops/107714", "https://data.delijn.be/stops/107716"], ["https://data.delijn.be/stops/200156", "https://data.delijn.be/stops/203359"], ["https://data.delijn.be/stops/204346", "https://data.delijn.be/stops/205101"], ["https://data.delijn.be/stops/404226", "https://data.delijn.be/stops/404247"], ["https://data.delijn.be/stops/505723", "https://data.delijn.be/stops/507286"], ["https://data.delijn.be/stops/104039", "https://data.delijn.be/stops/108511"], ["https://data.delijn.be/stops/301775", "https://data.delijn.be/stops/301785"], ["https://data.delijn.be/stops/404451", "https://data.delijn.be/stops/406740"], ["https://data.delijn.be/stops/205286", "https://data.delijn.be/stops/205535"], ["https://data.delijn.be/stops/301193", "https://data.delijn.be/stops/307615"], ["https://data.delijn.be/stops/104098", "https://data.delijn.be/stops/104099"], ["https://data.delijn.be/stops/502354", "https://data.delijn.be/stops/505171"], ["https://data.delijn.be/stops/106754", "https://data.delijn.be/stops/109528"], ["https://data.delijn.be/stops/308548", "https://data.delijn.be/stops/308549"], ["https://data.delijn.be/stops/203883", "https://data.delijn.be/stops/207938"], ["https://data.delijn.be/stops/302073", "https://data.delijn.be/stops/305637"], ["https://data.delijn.be/stops/205922", "https://data.delijn.be/stops/205923"], ["https://data.delijn.be/stops/305771", "https://data.delijn.be/stops/305788"], ["https://data.delijn.be/stops/106101", "https://data.delijn.be/stops/106118"], ["https://data.delijn.be/stops/502197", "https://data.delijn.be/stops/505981"], ["https://data.delijn.be/stops/300741", "https://data.delijn.be/stops/300742"], ["https://data.delijn.be/stops/401986", "https://data.delijn.be/stops/402024"], ["https://data.delijn.be/stops/406427", "https://data.delijn.be/stops/406452"], ["https://data.delijn.be/stops/504065", "https://data.delijn.be/stops/504067"], ["https://data.delijn.be/stops/104582", "https://data.delijn.be/stops/308632"], ["https://data.delijn.be/stops/402968", "https://data.delijn.be/stops/402970"], ["https://data.delijn.be/stops/105478", "https://data.delijn.be/stops/109949"], ["https://data.delijn.be/stops/200421", "https://data.delijn.be/stops/202011"], ["https://data.delijn.be/stops/408510", "https://data.delijn.be/stops/408511"], ["https://data.delijn.be/stops/207026", "https://data.delijn.be/stops/217002"], ["https://data.delijn.be/stops/301354", "https://data.delijn.be/stops/306132"], ["https://data.delijn.be/stops/106229", "https://data.delijn.be/stops/106232"], ["https://data.delijn.be/stops/301556", "https://data.delijn.be/stops/308086"], ["https://data.delijn.be/stops/301045", "https://data.delijn.be/stops/306687"], ["https://data.delijn.be/stops/504433", "https://data.delijn.be/stops/509433"], ["https://data.delijn.be/stops/207882", "https://data.delijn.be/stops/207912"], ["https://data.delijn.be/stops/202429", "https://data.delijn.be/stops/203717"], ["https://data.delijn.be/stops/304456", "https://data.delijn.be/stops/304462"], ["https://data.delijn.be/stops/300546", "https://data.delijn.be/stops/307861"], ["https://data.delijn.be/stops/303381", "https://data.delijn.be/stops/303384"], ["https://data.delijn.be/stops/501662", "https://data.delijn.be/stops/501663"], ["https://data.delijn.be/stops/409190", "https://data.delijn.be/stops/409191"], ["https://data.delijn.be/stops/509775", "https://data.delijn.be/stops/509776"], ["https://data.delijn.be/stops/502591", "https://data.delijn.be/stops/507081"], ["https://data.delijn.be/stops/109595", "https://data.delijn.be/stops/109596"], ["https://data.delijn.be/stops/400627", "https://data.delijn.be/stops/407519"], ["https://data.delijn.be/stops/209390", "https://data.delijn.be/stops/503835"], ["https://data.delijn.be/stops/101511", "https://data.delijn.be/stops/300110"], ["https://data.delijn.be/stops/206720", "https://data.delijn.be/stops/207617"], ["https://data.delijn.be/stops/204238", "https://data.delijn.be/stops/205793"], ["https://data.delijn.be/stops/501454", "https://data.delijn.be/stops/506502"], ["https://data.delijn.be/stops/503049", "https://data.delijn.be/stops/508049"], ["https://data.delijn.be/stops/206244", "https://data.delijn.be/stops/207243"], ["https://data.delijn.be/stops/402965", "https://data.delijn.be/stops/410059"], ["https://data.delijn.be/stops/504387", "https://data.delijn.be/stops/505717"], ["https://data.delijn.be/stops/404302", "https://data.delijn.be/stops/410082"], ["https://data.delijn.be/stops/104482", "https://data.delijn.be/stops/307523"], ["https://data.delijn.be/stops/201423", "https://data.delijn.be/stops/203827"], ["https://data.delijn.be/stops/307145", "https://data.delijn.be/stops/307894"], ["https://data.delijn.be/stops/306123", "https://data.delijn.be/stops/307213"], ["https://data.delijn.be/stops/503919", "https://data.delijn.be/stops/505920"], ["https://data.delijn.be/stops/507090", "https://data.delijn.be/stops/507095"], ["https://data.delijn.be/stops/503042", "https://data.delijn.be/stops/504205"], ["https://data.delijn.be/stops/306958", "https://data.delijn.be/stops/306960"], ["https://data.delijn.be/stops/402714", "https://data.delijn.be/stops/402717"], ["https://data.delijn.be/stops/301453", "https://data.delijn.be/stops/307913"], ["https://data.delijn.be/stops/404405", "https://data.delijn.be/stops/404417"], ["https://data.delijn.be/stops/306001", "https://data.delijn.be/stops/307852"], ["https://data.delijn.be/stops/503496", "https://data.delijn.be/stops/508496"], ["https://data.delijn.be/stops/508261", "https://data.delijn.be/stops/509766"], ["https://data.delijn.be/stops/107363", "https://data.delijn.be/stops/107366"], ["https://data.delijn.be/stops/505404", "https://data.delijn.be/stops/506081"], ["https://data.delijn.be/stops/200852", "https://data.delijn.be/stops/202302"], ["https://data.delijn.be/stops/102573", "https://data.delijn.be/stops/109162"], ["https://data.delijn.be/stops/401257", "https://data.delijn.be/stops/401259"], ["https://data.delijn.be/stops/406170", "https://data.delijn.be/stops/406172"], ["https://data.delijn.be/stops/301319", "https://data.delijn.be/stops/301321"], ["https://data.delijn.be/stops/401582", "https://data.delijn.be/stops/401904"], ["https://data.delijn.be/stops/303320", "https://data.delijn.be/stops/307294"], ["https://data.delijn.be/stops/305243", "https://data.delijn.be/stops/308642"], ["https://data.delijn.be/stops/503819", "https://data.delijn.be/stops/503821"], ["https://data.delijn.be/stops/400054", "https://data.delijn.be/stops/400055"], ["https://data.delijn.be/stops/102489", "https://data.delijn.be/stops/400349"], ["https://data.delijn.be/stops/508387", "https://data.delijn.be/stops/508430"], ["https://data.delijn.be/stops/503420", "https://data.delijn.be/stops/508212"], ["https://data.delijn.be/stops/401492", "https://data.delijn.be/stops/401493"], ["https://data.delijn.be/stops/108053", "https://data.delijn.be/stops/307903"], ["https://data.delijn.be/stops/505378", "https://data.delijn.be/stops/508536"], ["https://data.delijn.be/stops/200388", "https://data.delijn.be/stops/209240"], ["https://data.delijn.be/stops/304719", "https://data.delijn.be/stops/304720"], ["https://data.delijn.be/stops/400527", "https://data.delijn.be/stops/405919"], ["https://data.delijn.be/stops/103821", "https://data.delijn.be/stops/104260"], ["https://data.delijn.be/stops/203173", "https://data.delijn.be/stops/203174"], ["https://data.delijn.be/stops/106958", "https://data.delijn.be/stops/106959"], ["https://data.delijn.be/stops/407230", "https://data.delijn.be/stops/408585"], ["https://data.delijn.be/stops/308464", "https://data.delijn.be/stops/308690"], ["https://data.delijn.be/stops/201157", "https://data.delijn.be/stops/201411"], ["https://data.delijn.be/stops/203400", "https://data.delijn.be/stops/203401"], ["https://data.delijn.be/stops/401966", "https://data.delijn.be/stops/409317"], ["https://data.delijn.be/stops/200819", "https://data.delijn.be/stops/200854"], ["https://data.delijn.be/stops/105044", "https://data.delijn.be/stops/105046"], ["https://data.delijn.be/stops/402566", "https://data.delijn.be/stops/402570"], ["https://data.delijn.be/stops/502009", "https://data.delijn.be/stops/507741"], ["https://data.delijn.be/stops/405861", "https://data.delijn.be/stops/409732"], ["https://data.delijn.be/stops/101183", "https://data.delijn.be/stops/205646"], ["https://data.delijn.be/stops/207773", "https://data.delijn.be/stops/208188"], ["https://data.delijn.be/stops/102178", "https://data.delijn.be/stops/102909"], ["https://data.delijn.be/stops/501490", "https://data.delijn.be/stops/506038"], ["https://data.delijn.be/stops/205152", "https://data.delijn.be/stops/205153"], ["https://data.delijn.be/stops/406072", "https://data.delijn.be/stops/407489"], ["https://data.delijn.be/stops/403309", "https://data.delijn.be/stops/410164"], ["https://data.delijn.be/stops/301669", "https://data.delijn.be/stops/304180"], ["https://data.delijn.be/stops/206461", "https://data.delijn.be/stops/207459"], ["https://data.delijn.be/stops/106263", "https://data.delijn.be/stops/106339"], ["https://data.delijn.be/stops/404393", "https://data.delijn.be/stops/408796"], ["https://data.delijn.be/stops/201382", "https://data.delijn.be/stops/203002"], ["https://data.delijn.be/stops/303384", "https://data.delijn.be/stops/303672"], ["https://data.delijn.be/stops/109667", "https://data.delijn.be/stops/401931"], ["https://data.delijn.be/stops/301888", "https://data.delijn.be/stops/301890"], ["https://data.delijn.be/stops/105707", "https://data.delijn.be/stops/105714"], ["https://data.delijn.be/stops/206673", "https://data.delijn.be/stops/208011"], ["https://data.delijn.be/stops/406402", "https://data.delijn.be/stops/406403"], ["https://data.delijn.be/stops/209688", "https://data.delijn.be/stops/209689"], ["https://data.delijn.be/stops/105304", "https://data.delijn.be/stops/105363"], ["https://data.delijn.be/stops/400896", "https://data.delijn.be/stops/400897"], ["https://data.delijn.be/stops/202038", "https://data.delijn.be/stops/203038"], ["https://data.delijn.be/stops/202503", "https://data.delijn.be/stops/203503"], ["https://data.delijn.be/stops/404307", "https://data.delijn.be/stops/404313"], ["https://data.delijn.be/stops/201726", "https://data.delijn.be/stops/202978"], ["https://data.delijn.be/stops/407861", "https://data.delijn.be/stops/305683"], ["https://data.delijn.be/stops/208634", "https://data.delijn.be/stops/209510"], ["https://data.delijn.be/stops/102989", "https://data.delijn.be/stops/103141"], ["https://data.delijn.be/stops/404062", "https://data.delijn.be/stops/405136"], ["https://data.delijn.be/stops/202739", "https://data.delijn.be/stops/203739"], ["https://data.delijn.be/stops/202218", "https://data.delijn.be/stops/203217"], ["https://data.delijn.be/stops/303624", "https://data.delijn.be/stops/306828"], ["https://data.delijn.be/stops/404407", "https://data.delijn.be/stops/404449"], ["https://data.delijn.be/stops/301473", "https://data.delijn.be/stops/301501"], ["https://data.delijn.be/stops/404354", "https://data.delijn.be/stops/404366"], ["https://data.delijn.be/stops/107075", "https://data.delijn.be/stops/107079"], ["https://data.delijn.be/stops/109695", "https://data.delijn.be/stops/109697"], ["https://data.delijn.be/stops/503846", "https://data.delijn.be/stops/508846"], ["https://data.delijn.be/stops/508894", "https://data.delijn.be/stops/509942"], ["https://data.delijn.be/stops/406320", "https://data.delijn.be/stops/406410"], ["https://data.delijn.be/stops/302961", "https://data.delijn.be/stops/306299"], ["https://data.delijn.be/stops/407979", "https://data.delijn.be/stops/408340"], ["https://data.delijn.be/stops/501609", "https://data.delijn.be/stops/506606"], ["https://data.delijn.be/stops/400817", "https://data.delijn.be/stops/403582"], ["https://data.delijn.be/stops/204432", "https://data.delijn.be/stops/205431"], ["https://data.delijn.be/stops/101660", "https://data.delijn.be/stops/107807"], ["https://data.delijn.be/stops/400746", "https://data.delijn.be/stops/407659"], ["https://data.delijn.be/stops/204182", "https://data.delijn.be/stops/205182"], ["https://data.delijn.be/stops/406172", "https://data.delijn.be/stops/406452"], ["https://data.delijn.be/stops/305264", "https://data.delijn.be/stops/305271"], ["https://data.delijn.be/stops/101419", "https://data.delijn.be/stops/106958"], ["https://data.delijn.be/stops/103558", "https://data.delijn.be/stops/109395"], ["https://data.delijn.be/stops/404457", "https://data.delijn.be/stops/404465"], ["https://data.delijn.be/stops/208294", "https://data.delijn.be/stops/209725"], ["https://data.delijn.be/stops/502029", "https://data.delijn.be/stops/502058"], ["https://data.delijn.be/stops/405246", "https://data.delijn.be/stops/405247"], ["https://data.delijn.be/stops/502535", "https://data.delijn.be/stops/507535"], ["https://data.delijn.be/stops/208536", "https://data.delijn.be/stops/209085"], ["https://data.delijn.be/stops/502475", "https://data.delijn.be/stops/508326"], ["https://data.delijn.be/stops/204685", "https://data.delijn.be/stops/204696"], ["https://data.delijn.be/stops/104053", "https://data.delijn.be/stops/108102"], ["https://data.delijn.be/stops/503047", "https://data.delijn.be/stops/508624"], ["https://data.delijn.be/stops/406932", "https://data.delijn.be/stops/406950"], ["https://data.delijn.be/stops/504545", "https://data.delijn.be/stops/504548"], ["https://data.delijn.be/stops/501501", "https://data.delijn.be/stops/506501"], ["https://data.delijn.be/stops/500008", "https://data.delijn.be/stops/502112"], ["https://data.delijn.be/stops/206365", "https://data.delijn.be/stops/207333"], ["https://data.delijn.be/stops/205177", "https://data.delijn.be/stops/205215"], ["https://data.delijn.be/stops/204551", "https://data.delijn.be/stops/205761"], ["https://data.delijn.be/stops/208524", "https://data.delijn.be/stops/209081"], ["https://data.delijn.be/stops/300640", "https://data.delijn.be/stops/305813"], ["https://data.delijn.be/stops/400568", "https://data.delijn.be/stops/403186"], ["https://data.delijn.be/stops/307132", "https://data.delijn.be/stops/308446"], ["https://data.delijn.be/stops/303197", "https://data.delijn.be/stops/303212"], ["https://data.delijn.be/stops/501004", "https://data.delijn.be/stops/506505"], ["https://data.delijn.be/stops/304342", "https://data.delijn.be/stops/304348"], ["https://data.delijn.be/stops/408280", "https://data.delijn.be/stops/408403"], ["https://data.delijn.be/stops/200735", "https://data.delijn.be/stops/202572"], ["https://data.delijn.be/stops/402986", "https://data.delijn.be/stops/402991"], ["https://data.delijn.be/stops/505351", "https://data.delijn.be/stops/505417"], ["https://data.delijn.be/stops/105494", "https://data.delijn.be/stops/105504"], ["https://data.delijn.be/stops/108300", "https://data.delijn.be/stops/108485"], ["https://data.delijn.be/stops/300316", "https://data.delijn.be/stops/300623"], ["https://data.delijn.be/stops/407066", "https://data.delijn.be/stops/407067"], ["https://data.delijn.be/stops/302413", "https://data.delijn.be/stops/302428"], ["https://data.delijn.be/stops/103088", "https://data.delijn.be/stops/107517"], ["https://data.delijn.be/stops/504480", "https://data.delijn.be/stops/505342"], ["https://data.delijn.be/stops/403601", "https://data.delijn.be/stops/407525"], ["https://data.delijn.be/stops/105526", "https://data.delijn.be/stops/105527"], ["https://data.delijn.be/stops/204139", "https://data.delijn.be/stops/207894"], ["https://data.delijn.be/stops/200934", "https://data.delijn.be/stops/203988"], ["https://data.delijn.be/stops/305919", "https://data.delijn.be/stops/305920"], ["https://data.delijn.be/stops/204734", "https://data.delijn.be/stops/205735"], ["https://data.delijn.be/stops/504169", "https://data.delijn.be/stops/509151"], ["https://data.delijn.be/stops/105058", "https://data.delijn.be/stops/105825"], ["https://data.delijn.be/stops/403332", "https://data.delijn.be/stops/403340"], ["https://data.delijn.be/stops/503298", "https://data.delijn.be/stops/505990"], ["https://data.delijn.be/stops/303068", "https://data.delijn.be/stops/303156"], ["https://data.delijn.be/stops/405187", "https://data.delijn.be/stops/405248"], ["https://data.delijn.be/stops/102194", "https://data.delijn.be/stops/104306"], ["https://data.delijn.be/stops/202711", "https://data.delijn.be/stops/203710"], ["https://data.delijn.be/stops/405941", "https://data.delijn.be/stops/405945"], ["https://data.delijn.be/stops/405862", "https://data.delijn.be/stops/405863"], ["https://data.delijn.be/stops/502260", "https://data.delijn.be/stops/507260"], ["https://data.delijn.be/stops/204511", "https://data.delijn.be/stops/205499"], ["https://data.delijn.be/stops/200795", "https://data.delijn.be/stops/210044"], ["https://data.delijn.be/stops/104949", "https://data.delijn.be/stops/406833"], ["https://data.delijn.be/stops/105781", "https://data.delijn.be/stops/105782"], ["https://data.delijn.be/stops/404564", "https://data.delijn.be/stops/410155"], ["https://data.delijn.be/stops/502189", "https://data.delijn.be/stops/502713"], ["https://data.delijn.be/stops/305775", "https://data.delijn.be/stops/305796"], ["https://data.delijn.be/stops/206048", "https://data.delijn.be/stops/207050"], ["https://data.delijn.be/stops/301836", "https://data.delijn.be/stops/301837"], ["https://data.delijn.be/stops/505175", "https://data.delijn.be/stops/509644"], ["https://data.delijn.be/stops/501487", "https://data.delijn.be/stops/501673"], ["https://data.delijn.be/stops/206872", "https://data.delijn.be/stops/208403"], ["https://data.delijn.be/stops/300302", "https://data.delijn.be/stops/307475"], ["https://data.delijn.be/stops/407818", "https://data.delijn.be/stops/407923"], ["https://data.delijn.be/stops/206795", "https://data.delijn.be/stops/209048"], ["https://data.delijn.be/stops/200436", "https://data.delijn.be/stops/201307"], ["https://data.delijn.be/stops/204251", "https://data.delijn.be/stops/204732"], ["https://data.delijn.be/stops/502148", "https://data.delijn.be/stops/507103"], ["https://data.delijn.be/stops/306902", "https://data.delijn.be/stops/306904"], ["https://data.delijn.be/stops/502440", "https://data.delijn.be/stops/507417"], ["https://data.delijn.be/stops/503225", "https://data.delijn.be/stops/503227"], ["https://data.delijn.be/stops/406284", "https://data.delijn.be/stops/406285"], ["https://data.delijn.be/stops/502317", "https://data.delijn.be/stops/507326"], ["https://data.delijn.be/stops/206201", "https://data.delijn.be/stops/207809"], ["https://data.delijn.be/stops/208428", "https://data.delijn.be/stops/208801"], ["https://data.delijn.be/stops/200492", "https://data.delijn.be/stops/201491"], ["https://data.delijn.be/stops/201257", "https://data.delijn.be/stops/203450"], ["https://data.delijn.be/stops/405190", "https://data.delijn.be/stops/406411"], ["https://data.delijn.be/stops/501204", "https://data.delijn.be/stops/501289"], ["https://data.delijn.be/stops/502110", "https://data.delijn.be/stops/507135"], ["https://data.delijn.be/stops/305112", "https://data.delijn.be/stops/306881"], ["https://data.delijn.be/stops/107366", "https://data.delijn.be/stops/107367"], ["https://data.delijn.be/stops/101719", "https://data.delijn.be/stops/109566"], ["https://data.delijn.be/stops/103097", "https://data.delijn.be/stops/103318"], ["https://data.delijn.be/stops/401949", "https://data.delijn.be/stops/403598"], ["https://data.delijn.be/stops/103233", "https://data.delijn.be/stops/107136"], ["https://data.delijn.be/stops/501769", "https://data.delijn.be/stops/507704"], ["https://data.delijn.be/stops/401043", "https://data.delijn.be/stops/409141"], ["https://data.delijn.be/stops/202480", "https://data.delijn.be/stops/203954"], ["https://data.delijn.be/stops/402379", "https://data.delijn.be/stops/402396"], ["https://data.delijn.be/stops/307404", "https://data.delijn.be/stops/307411"], ["https://data.delijn.be/stops/302522", "https://data.delijn.be/stops/307870"], ["https://data.delijn.be/stops/408111", "https://data.delijn.be/stops/408161"], ["https://data.delijn.be/stops/305383", "https://data.delijn.be/stops/305387"], ["https://data.delijn.be/stops/301827", "https://data.delijn.be/stops/301834"], ["https://data.delijn.be/stops/208148", "https://data.delijn.be/stops/209148"], ["https://data.delijn.be/stops/300802", "https://data.delijn.be/stops/302406"], ["https://data.delijn.be/stops/403320", "https://data.delijn.be/stops/403326"], ["https://data.delijn.be/stops/504351", "https://data.delijn.be/stops/509351"], ["https://data.delijn.be/stops/208533", "https://data.delijn.be/stops/209527"], ["https://data.delijn.be/stops/304736", "https://data.delijn.be/stops/304758"], ["https://data.delijn.be/stops/201618", "https://data.delijn.be/stops/209737"], ["https://data.delijn.be/stops/208691", "https://data.delijn.be/stops/208705"], ["https://data.delijn.be/stops/505806", "https://data.delijn.be/stops/508226"], ["https://data.delijn.be/stops/307148", "https://data.delijn.be/stops/307152"], ["https://data.delijn.be/stops/201205", "https://data.delijn.be/stops/201615"], ["https://data.delijn.be/stops/109212", "https://data.delijn.be/stops/109712"], ["https://data.delijn.be/stops/504359", "https://data.delijn.be/stops/504845"], ["https://data.delijn.be/stops/403458", "https://data.delijn.be/stops/403459"], ["https://data.delijn.be/stops/204160", "https://data.delijn.be/stops/204580"], ["https://data.delijn.be/stops/302466", "https://data.delijn.be/stops/302468"], ["https://data.delijn.be/stops/200154", "https://data.delijn.be/stops/202359"], ["https://data.delijn.be/stops/306312", "https://data.delijn.be/stops/307003"], ["https://data.delijn.be/stops/101886", "https://data.delijn.be/stops/107476"], ["https://data.delijn.be/stops/503576", "https://data.delijn.be/stops/505196"], ["https://data.delijn.be/stops/204383", "https://data.delijn.be/stops/205384"], ["https://data.delijn.be/stops/108633", "https://data.delijn.be/stops/109668"], ["https://data.delijn.be/stops/204676", "https://data.delijn.be/stops/205677"], ["https://data.delijn.be/stops/409104", "https://data.delijn.be/stops/409105"], ["https://data.delijn.be/stops/106504", "https://data.delijn.be/stops/106505"], ["https://data.delijn.be/stops/404249", "https://data.delijn.be/stops/406816"], ["https://data.delijn.be/stops/401628", "https://data.delijn.be/stops/308246"], ["https://data.delijn.be/stops/208289", "https://data.delijn.be/stops/209289"], ["https://data.delijn.be/stops/102375", "https://data.delijn.be/stops/104627"], ["https://data.delijn.be/stops/303252", "https://data.delijn.be/stops/303265"], ["https://data.delijn.be/stops/401924", "https://data.delijn.be/stops/405841"], ["https://data.delijn.be/stops/210107", "https://data.delijn.be/stops/211107"], ["https://data.delijn.be/stops/500053", "https://data.delijn.be/stops/502818"], ["https://data.delijn.be/stops/208420", "https://data.delijn.be/stops/209389"], ["https://data.delijn.be/stops/501453", "https://data.delijn.be/stops/506453"], ["https://data.delijn.be/stops/106631", "https://data.delijn.be/stops/106675"], ["https://data.delijn.be/stops/504189", "https://data.delijn.be/stops/509159"], ["https://data.delijn.be/stops/407364", "https://data.delijn.be/stops/407442"], ["https://data.delijn.be/stops/300335", "https://data.delijn.be/stops/304453"], ["https://data.delijn.be/stops/201677", "https://data.delijn.be/stops/203772"], ["https://data.delijn.be/stops/303254", "https://data.delijn.be/stops/303344"], ["https://data.delijn.be/stops/305648", "https://data.delijn.be/stops/305655"], ["https://data.delijn.be/stops/210126", "https://data.delijn.be/stops/211126"], ["https://data.delijn.be/stops/304993", "https://data.delijn.be/stops/305026"], ["https://data.delijn.be/stops/301730", "https://data.delijn.be/stops/301785"], ["https://data.delijn.be/stops/407860", "https://data.delijn.be/stops/407893"], ["https://data.delijn.be/stops/202128", "https://data.delijn.be/stops/202582"], ["https://data.delijn.be/stops/302562", "https://data.delijn.be/stops/302771"], ["https://data.delijn.be/stops/206643", "https://data.delijn.be/stops/207644"], ["https://data.delijn.be/stops/103927", "https://data.delijn.be/stops/107246"], ["https://data.delijn.be/stops/408088", "https://data.delijn.be/stops/408133"], ["https://data.delijn.be/stops/200277", "https://data.delijn.be/stops/201650"], ["https://data.delijn.be/stops/109088", "https://data.delijn.be/stops/109092"], ["https://data.delijn.be/stops/107784", "https://data.delijn.be/stops/207334"], ["https://data.delijn.be/stops/200175", "https://data.delijn.be/stops/201175"], ["https://data.delijn.be/stops/304104", "https://data.delijn.be/stops/304165"], ["https://data.delijn.be/stops/301991", "https://data.delijn.be/stops/307169"], ["https://data.delijn.be/stops/301217", "https://data.delijn.be/stops/301218"], ["https://data.delijn.be/stops/107459", "https://data.delijn.be/stops/107462"], ["https://data.delijn.be/stops/200131", "https://data.delijn.be/stops/200492"], ["https://data.delijn.be/stops/105394", "https://data.delijn.be/stops/105396"], ["https://data.delijn.be/stops/101007", "https://data.delijn.be/stops/107670"], ["https://data.delijn.be/stops/306967", "https://data.delijn.be/stops/308905"], ["https://data.delijn.be/stops/504273", "https://data.delijn.be/stops/509275"], ["https://data.delijn.be/stops/305831", "https://data.delijn.be/stops/305834"], ["https://data.delijn.be/stops/300274", "https://data.delijn.be/stops/306661"], ["https://data.delijn.be/stops/409571", "https://data.delijn.be/stops/409574"], ["https://data.delijn.be/stops/109186", "https://data.delijn.be/stops/109274"], ["https://data.delijn.be/stops/200135", "https://data.delijn.be/stops/200409"], ["https://data.delijn.be/stops/202461", "https://data.delijn.be/stops/202462"], ["https://data.delijn.be/stops/509636", "https://data.delijn.be/stops/509638"], ["https://data.delijn.be/stops/305685", "https://data.delijn.be/stops/305723"], ["https://data.delijn.be/stops/102541", "https://data.delijn.be/stops/405089"], ["https://data.delijn.be/stops/406176", "https://data.delijn.be/stops/406198"], ["https://data.delijn.be/stops/304689", "https://data.delijn.be/stops/309670"], ["https://data.delijn.be/stops/503801", "https://data.delijn.be/stops/505639"], ["https://data.delijn.be/stops/206156", "https://data.delijn.be/stops/206639"], ["https://data.delijn.be/stops/300476", "https://data.delijn.be/stops/306288"], ["https://data.delijn.be/stops/406995", "https://data.delijn.be/stops/409735"], ["https://data.delijn.be/stops/304467", "https://data.delijn.be/stops/304469"], ["https://data.delijn.be/stops/204245", "https://data.delijn.be/stops/204248"], ["https://data.delijn.be/stops/301476", "https://data.delijn.be/stops/301482"], ["https://data.delijn.be/stops/302246", "https://data.delijn.be/stops/303998"], ["https://data.delijn.be/stops/203311", "https://data.delijn.be/stops/203312"], ["https://data.delijn.be/stops/208565", "https://data.delijn.be/stops/208618"], ["https://data.delijn.be/stops/204034", "https://data.delijn.be/stops/204035"], ["https://data.delijn.be/stops/405184", "https://data.delijn.be/stops/405205"], ["https://data.delijn.be/stops/106245", "https://data.delijn.be/stops/106247"], ["https://data.delijn.be/stops/101279", "https://data.delijn.be/stops/205489"], ["https://data.delijn.be/stops/105643", "https://data.delijn.be/stops/105644"], ["https://data.delijn.be/stops/102395", "https://data.delijn.be/stops/105425"], ["https://data.delijn.be/stops/102187", "https://data.delijn.be/stops/104348"], ["https://data.delijn.be/stops/107319", "https://data.delijn.be/stops/108818"], ["https://data.delijn.be/stops/402049", "https://data.delijn.be/stops/402090"], ["https://data.delijn.be/stops/204565", "https://data.delijn.be/stops/205566"], ["https://data.delijn.be/stops/302228", "https://data.delijn.be/stops/302229"], ["https://data.delijn.be/stops/203699", "https://data.delijn.be/stops/203700"], ["https://data.delijn.be/stops/106423", "https://data.delijn.be/stops/106560"], ["https://data.delijn.be/stops/302752", "https://data.delijn.be/stops/302772"], ["https://data.delijn.be/stops/407202", "https://data.delijn.be/stops/407203"], ["https://data.delijn.be/stops/103761", "https://data.delijn.be/stops/105780"], ["https://data.delijn.be/stops/501418", "https://data.delijn.be/stops/501419"], ["https://data.delijn.be/stops/108307", "https://data.delijn.be/stops/108308"], ["https://data.delijn.be/stops/510030", "https://data.delijn.be/stops/590006"], ["https://data.delijn.be/stops/302463", "https://data.delijn.be/stops/302471"], ["https://data.delijn.be/stops/101928", "https://data.delijn.be/stops/108204"], ["https://data.delijn.be/stops/208798", "https://data.delijn.be/stops/208799"], ["https://data.delijn.be/stops/105419", "https://data.delijn.be/stops/109979"], ["https://data.delijn.be/stops/503783", "https://data.delijn.be/stops/508784"], ["https://data.delijn.be/stops/406522", "https://data.delijn.be/stops/406523"], ["https://data.delijn.be/stops/106142", "https://data.delijn.be/stops/106143"], ["https://data.delijn.be/stops/503642", "https://data.delijn.be/stops/508642"], ["https://data.delijn.be/stops/201912", "https://data.delijn.be/stops/204063"], ["https://data.delijn.be/stops/304410", "https://data.delijn.be/stops/304414"], ["https://data.delijn.be/stops/104003", "https://data.delijn.be/stops/107835"], ["https://data.delijn.be/stops/504089", "https://data.delijn.be/stops/509089"], ["https://data.delijn.be/stops/405088", "https://data.delijn.be/stops/406547"], ["https://data.delijn.be/stops/203161", "https://data.delijn.be/stops/203500"], ["https://data.delijn.be/stops/504534", "https://data.delijn.be/stops/509534"], ["https://data.delijn.be/stops/206880", "https://data.delijn.be/stops/207308"], ["https://data.delijn.be/stops/305160", "https://data.delijn.be/stops/305197"], ["https://data.delijn.be/stops/502212", "https://data.delijn.be/stops/507213"], ["https://data.delijn.be/stops/508346", "https://data.delijn.be/stops/508356"], ["https://data.delijn.be/stops/502647", "https://data.delijn.be/stops/509944"], ["https://data.delijn.be/stops/109317", "https://data.delijn.be/stops/109866"], ["https://data.delijn.be/stops/405517", "https://data.delijn.be/stops/407310"], ["https://data.delijn.be/stops/401394", "https://data.delijn.be/stops/401452"], ["https://data.delijn.be/stops/510008", "https://data.delijn.be/stops/510009"], ["https://data.delijn.be/stops/308179", "https://data.delijn.be/stops/308180"], ["https://data.delijn.be/stops/204207", "https://data.delijn.be/stops/205207"], ["https://data.delijn.be/stops/107970", "https://data.delijn.be/stops/107973"], ["https://data.delijn.be/stops/506635", "https://data.delijn.be/stops/506774"], ["https://data.delijn.be/stops/400704", "https://data.delijn.be/stops/400714"], ["https://data.delijn.be/stops/203455", "https://data.delijn.be/stops/203456"], ["https://data.delijn.be/stops/202903", "https://data.delijn.be/stops/202904"], ["https://data.delijn.be/stops/305539", "https://data.delijn.be/stops/307187"], ["https://data.delijn.be/stops/503611", "https://data.delijn.be/stops/505196"], ["https://data.delijn.be/stops/300887", "https://data.delijn.be/stops/308856"], ["https://data.delijn.be/stops/303681", "https://data.delijn.be/stops/308640"], ["https://data.delijn.be/stops/504332", "https://data.delijn.be/stops/509338"], ["https://data.delijn.be/stops/302637", "https://data.delijn.be/stops/302638"], ["https://data.delijn.be/stops/302553", "https://data.delijn.be/stops/302555"], ["https://data.delijn.be/stops/304318", "https://data.delijn.be/stops/304324"], ["https://data.delijn.be/stops/400949", "https://data.delijn.be/stops/400975"], ["https://data.delijn.be/stops/301948", "https://data.delijn.be/stops/307080"], ["https://data.delijn.be/stops/301696", "https://data.delijn.be/stops/301702"], ["https://data.delijn.be/stops/106428", "https://data.delijn.be/stops/106431"], ["https://data.delijn.be/stops/208742", "https://data.delijn.be/stops/208743"], ["https://data.delijn.be/stops/302715", "https://data.delijn.be/stops/302776"], ["https://data.delijn.be/stops/204190", "https://data.delijn.be/stops/205189"], ["https://data.delijn.be/stops/400269", "https://data.delijn.be/stops/400954"], ["https://data.delijn.be/stops/503168", "https://data.delijn.be/stops/508264"], ["https://data.delijn.be/stops/504103", "https://data.delijn.be/stops/504109"], ["https://data.delijn.be/stops/408517", "https://data.delijn.be/stops/408523"], ["https://data.delijn.be/stops/302730", "https://data.delijn.be/stops/305634"], ["https://data.delijn.be/stops/101406", "https://data.delijn.be/stops/106523"], ["https://data.delijn.be/stops/303010", "https://data.delijn.be/stops/306102"], ["https://data.delijn.be/stops/206953", "https://data.delijn.be/stops/300173"], ["https://data.delijn.be/stops/208590", "https://data.delijn.be/stops/307533"], ["https://data.delijn.be/stops/200187", "https://data.delijn.be/stops/200193"], ["https://data.delijn.be/stops/407712", "https://data.delijn.be/stops/409775"], ["https://data.delijn.be/stops/501264", "https://data.delijn.be/stops/506286"], ["https://data.delijn.be/stops/505133", "https://data.delijn.be/stops/505137"], ["https://data.delijn.be/stops/501330", "https://data.delijn.be/stops/506330"], ["https://data.delijn.be/stops/203767", "https://data.delijn.be/stops/203778"], ["https://data.delijn.be/stops/506435", "https://data.delijn.be/stops/506456"], ["https://data.delijn.be/stops/502574", "https://data.delijn.be/stops/505704"], ["https://data.delijn.be/stops/505584", "https://data.delijn.be/stops/505777"], ["https://data.delijn.be/stops/402344", "https://data.delijn.be/stops/402414"], ["https://data.delijn.be/stops/304944", "https://data.delijn.be/stops/308020"], ["https://data.delijn.be/stops/101836", "https://data.delijn.be/stops/108203"], ["https://data.delijn.be/stops/303993", "https://data.delijn.be/stops/304739"], ["https://data.delijn.be/stops/409252", "https://data.delijn.be/stops/409253"], ["https://data.delijn.be/stops/304010", "https://data.delijn.be/stops/304011"], ["https://data.delijn.be/stops/405296", "https://data.delijn.be/stops/410165"], ["https://data.delijn.be/stops/102961", "https://data.delijn.be/stops/106592"], ["https://data.delijn.be/stops/109527", "https://data.delijn.be/stops/109529"], ["https://data.delijn.be/stops/207343", "https://data.delijn.be/stops/207366"], ["https://data.delijn.be/stops/503508", "https://data.delijn.be/stops/508506"], ["https://data.delijn.be/stops/106018", "https://data.delijn.be/stops/107437"], ["https://data.delijn.be/stops/109318", "https://data.delijn.be/stops/109321"], ["https://data.delijn.be/stops/401793", "https://data.delijn.be/stops/401814"], ["https://data.delijn.be/stops/305081", "https://data.delijn.be/stops/307944"], ["https://data.delijn.be/stops/105678", "https://data.delijn.be/stops/106049"], ["https://data.delijn.be/stops/302831", "https://data.delijn.be/stops/302838"], ["https://data.delijn.be/stops/406542", "https://data.delijn.be/stops/407444"], ["https://data.delijn.be/stops/206501", "https://data.delijn.be/stops/207501"], ["https://data.delijn.be/stops/202397", "https://data.delijn.be/stops/203397"], ["https://data.delijn.be/stops/204147", "https://data.delijn.be/stops/205137"], ["https://data.delijn.be/stops/202901", "https://data.delijn.be/stops/219953"], ["https://data.delijn.be/stops/101411", "https://data.delijn.be/stops/106922"], ["https://data.delijn.be/stops/106167", "https://data.delijn.be/stops/106171"], ["https://data.delijn.be/stops/101200", "https://data.delijn.be/stops/101565"], ["https://data.delijn.be/stops/503050", "https://data.delijn.be/stops/508052"], ["https://data.delijn.be/stops/302033", "https://data.delijn.be/stops/304632"], ["https://data.delijn.be/stops/408062", "https://data.delijn.be/stops/408063"], ["https://data.delijn.be/stops/502422", "https://data.delijn.be/stops/502440"], ["https://data.delijn.be/stops/502708", "https://data.delijn.be/stops/507708"], ["https://data.delijn.be/stops/104655", "https://data.delijn.be/stops/104660"], ["https://data.delijn.be/stops/305284", "https://data.delijn.be/stops/305286"], ["https://data.delijn.be/stops/405553", "https://data.delijn.be/stops/410053"], ["https://data.delijn.be/stops/504701", "https://data.delijn.be/stops/509549"], ["https://data.delijn.be/stops/502368", "https://data.delijn.be/stops/507368"], ["https://data.delijn.be/stops/306664", "https://data.delijn.be/stops/306682"], ["https://data.delijn.be/stops/208773", "https://data.delijn.be/stops/209316"], ["https://data.delijn.be/stops/504280", "https://data.delijn.be/stops/509280"], ["https://data.delijn.be/stops/206543", "https://data.delijn.be/stops/206544"], ["https://data.delijn.be/stops/208195", "https://data.delijn.be/stops/208520"], ["https://data.delijn.be/stops/204068", "https://data.delijn.be/stops/205196"], ["https://data.delijn.be/stops/106203", "https://data.delijn.be/stops/107459"], ["https://data.delijn.be/stops/206771", "https://data.delijn.be/stops/208614"], ["https://data.delijn.be/stops/400429", "https://data.delijn.be/stops/406473"], ["https://data.delijn.be/stops/504063", "https://data.delijn.be/stops/504068"], ["https://data.delijn.be/stops/503043", "https://data.delijn.be/stops/503045"], ["https://data.delijn.be/stops/301840", "https://data.delijn.be/stops/308601"], ["https://data.delijn.be/stops/301301", "https://data.delijn.be/stops/308673"], ["https://data.delijn.be/stops/203888", "https://data.delijn.be/stops/206426"], ["https://data.delijn.be/stops/204105", "https://data.delijn.be/stops/205015"], ["https://data.delijn.be/stops/302504", "https://data.delijn.be/stops/302517"], ["https://data.delijn.be/stops/503744", "https://data.delijn.be/stops/508744"], ["https://data.delijn.be/stops/101086", "https://data.delijn.be/stops/105981"], ["https://data.delijn.be/stops/300856", "https://data.delijn.be/stops/300859"], ["https://data.delijn.be/stops/101643", "https://data.delijn.be/stops/109055"], ["https://data.delijn.be/stops/405952", "https://data.delijn.be/stops/405953"], ["https://data.delijn.be/stops/108706", "https://data.delijn.be/stops/108707"], ["https://data.delijn.be/stops/504002", "https://data.delijn.be/stops/508494"], ["https://data.delijn.be/stops/206543", "https://data.delijn.be/stops/209749"], ["https://data.delijn.be/stops/208073", "https://data.delijn.be/stops/209074"], ["https://data.delijn.be/stops/505689", "https://data.delijn.be/stops/507062"], ["https://data.delijn.be/stops/109268", "https://data.delijn.be/stops/109271"], ["https://data.delijn.be/stops/201639", "https://data.delijn.be/stops/203942"], ["https://data.delijn.be/stops/101175", "https://data.delijn.be/stops/102972"], ["https://data.delijn.be/stops/107035", "https://data.delijn.be/stops/107845"], ["https://data.delijn.be/stops/407098", "https://data.delijn.be/stops/407261"], ["https://data.delijn.be/stops/202534", "https://data.delijn.be/stops/205173"], ["https://data.delijn.be/stops/301093", "https://data.delijn.be/stops/304259"], ["https://data.delijn.be/stops/300087", "https://data.delijn.be/stops/307098"], ["https://data.delijn.be/stops/302074", "https://data.delijn.be/stops/302098"], ["https://data.delijn.be/stops/101551", "https://data.delijn.be/stops/107919"], ["https://data.delijn.be/stops/201197", "https://data.delijn.be/stops/201720"], ["https://data.delijn.be/stops/202277", "https://data.delijn.be/stops/203278"], ["https://data.delijn.be/stops/504005", "https://data.delijn.be/stops/509009"], ["https://data.delijn.be/stops/504294", "https://data.delijn.be/stops/504307"], ["https://data.delijn.be/stops/500925", "https://data.delijn.be/stops/503179"], ["https://data.delijn.be/stops/109065", "https://data.delijn.be/stops/307363"], ["https://data.delijn.be/stops/106605", "https://data.delijn.be/stops/106606"], ["https://data.delijn.be/stops/204679", "https://data.delijn.be/stops/205679"], ["https://data.delijn.be/stops/503358", "https://data.delijn.be/stops/503669"], ["https://data.delijn.be/stops/202767", "https://data.delijn.be/stops/202768"], ["https://data.delijn.be/stops/101592", "https://data.delijn.be/stops/101730"], ["https://data.delijn.be/stops/304457", "https://data.delijn.be/stops/306409"], ["https://data.delijn.be/stops/105106", "https://data.delijn.be/stops/109506"], ["https://data.delijn.be/stops/106492", "https://data.delijn.be/stops/106494"], ["https://data.delijn.be/stops/200894", "https://data.delijn.be/stops/202448"], ["https://data.delijn.be/stops/400549", "https://data.delijn.be/stops/400551"], ["https://data.delijn.be/stops/505103", "https://data.delijn.be/stops/509356"], ["https://data.delijn.be/stops/206139", "https://data.delijn.be/stops/207139"], ["https://data.delijn.be/stops/109176", "https://data.delijn.be/stops/109227"], ["https://data.delijn.be/stops/205712", "https://data.delijn.be/stops/205721"], ["https://data.delijn.be/stops/501013", "https://data.delijn.be/stops/506013"], ["https://data.delijn.be/stops/505708", "https://data.delijn.be/stops/509224"], ["https://data.delijn.be/stops/307381", "https://data.delijn.be/stops/308277"], ["https://data.delijn.be/stops/105861", "https://data.delijn.be/stops/105862"], ["https://data.delijn.be/stops/405839", "https://data.delijn.be/stops/409755"], ["https://data.delijn.be/stops/402571", "https://data.delijn.be/stops/408177"], ["https://data.delijn.be/stops/204615", "https://data.delijn.be/stops/204616"], ["https://data.delijn.be/stops/407686", "https://data.delijn.be/stops/407690"], ["https://data.delijn.be/stops/102965", "https://data.delijn.be/stops/104300"], ["https://data.delijn.be/stops/502534", "https://data.delijn.be/stops/505741"], ["https://data.delijn.be/stops/203282", "https://data.delijn.be/stops/205067"], ["https://data.delijn.be/stops/103326", "https://data.delijn.be/stops/105097"], ["https://data.delijn.be/stops/204706", "https://data.delijn.be/stops/205708"], ["https://data.delijn.be/stops/105712", "https://data.delijn.be/stops/106075"], ["https://data.delijn.be/stops/503321", "https://data.delijn.be/stops/508321"], ["https://data.delijn.be/stops/406420", "https://data.delijn.be/stops/407875"], ["https://data.delijn.be/stops/106696", "https://data.delijn.be/stops/106702"], ["https://data.delijn.be/stops/306141", "https://data.delijn.be/stops/306645"], ["https://data.delijn.be/stops/304439", "https://data.delijn.be/stops/304440"], ["https://data.delijn.be/stops/503768", "https://data.delijn.be/stops/503822"], ["https://data.delijn.be/stops/206865", "https://data.delijn.be/stops/208747"], ["https://data.delijn.be/stops/503651", "https://data.delijn.be/stops/504997"], ["https://data.delijn.be/stops/200400", "https://data.delijn.be/stops/201189"], ["https://data.delijn.be/stops/305612", "https://data.delijn.be/stops/305613"], ["https://data.delijn.be/stops/300112", "https://data.delijn.be/stops/306854"], ["https://data.delijn.be/stops/305460", "https://data.delijn.be/stops/307896"], ["https://data.delijn.be/stops/301067", "https://data.delijn.be/stops/301070"], ["https://data.delijn.be/stops/207786", "https://data.delijn.be/stops/209370"], ["https://data.delijn.be/stops/208539", "https://data.delijn.be/stops/209037"], ["https://data.delijn.be/stops/505325", "https://data.delijn.be/stops/505337"], ["https://data.delijn.be/stops/504113", "https://data.delijn.be/stops/504699"], ["https://data.delijn.be/stops/504024", "https://data.delijn.be/stops/504101"], ["https://data.delijn.be/stops/208221", "https://data.delijn.be/stops/209221"], ["https://data.delijn.be/stops/401048", "https://data.delijn.be/stops/406549"], ["https://data.delijn.be/stops/106915", "https://data.delijn.be/stops/107267"], ["https://data.delijn.be/stops/502918", "https://data.delijn.be/stops/507475"], ["https://data.delijn.be/stops/405902", "https://data.delijn.be/stops/405935"], ["https://data.delijn.be/stops/408549", "https://data.delijn.be/stops/410090"], ["https://data.delijn.be/stops/201494", "https://data.delijn.be/stops/203938"], ["https://data.delijn.be/stops/301355", "https://data.delijn.be/stops/304529"], ["https://data.delijn.be/stops/202489", "https://data.delijn.be/stops/203488"], ["https://data.delijn.be/stops/302812", "https://data.delijn.be/stops/305496"], ["https://data.delijn.be/stops/208364", "https://data.delijn.be/stops/209365"], ["https://data.delijn.be/stops/205167", "https://data.delijn.be/stops/205580"], ["https://data.delijn.be/stops/407840", "https://data.delijn.be/stops/407907"], ["https://data.delijn.be/stops/301745", "https://data.delijn.be/stops/305876"], ["https://data.delijn.be/stops/501458", "https://data.delijn.be/stops/506459"], ["https://data.delijn.be/stops/301547", "https://data.delijn.be/stops/301551"], ["https://data.delijn.be/stops/407891", "https://data.delijn.be/stops/408188"], ["https://data.delijn.be/stops/206603", "https://data.delijn.be/stops/207602"], ["https://data.delijn.be/stops/401320", "https://data.delijn.be/stops/406657"], ["https://data.delijn.be/stops/304097", "https://data.delijn.be/stops/305999"], ["https://data.delijn.be/stops/304723", "https://data.delijn.be/stops/305558"], ["https://data.delijn.be/stops/507669", "https://data.delijn.be/stops/507670"], ["https://data.delijn.be/stops/404617", "https://data.delijn.be/stops/409453"], ["https://data.delijn.be/stops/104869", "https://data.delijn.be/stops/107961"], ["https://data.delijn.be/stops/400602", "https://data.delijn.be/stops/400611"], ["https://data.delijn.be/stops/504832", "https://data.delijn.be/stops/509097"], ["https://data.delijn.be/stops/304023", "https://data.delijn.be/stops/304145"], ["https://data.delijn.be/stops/208630", "https://data.delijn.be/stops/208631"], ["https://data.delijn.be/stops/205145", "https://data.delijn.be/stops/207048"], ["https://data.delijn.be/stops/101508", "https://data.delijn.be/stops/101509"], ["https://data.delijn.be/stops/301597", "https://data.delijn.be/stops/301601"], ["https://data.delijn.be/stops/205239", "https://data.delijn.be/stops/206897"], ["https://data.delijn.be/stops/205048", "https://data.delijn.be/stops/205705"], ["https://data.delijn.be/stops/105137", "https://data.delijn.be/stops/105139"], ["https://data.delijn.be/stops/503896", "https://data.delijn.be/stops/505643"], ["https://data.delijn.be/stops/201420", "https://data.delijn.be/stops/203013"], ["https://data.delijn.be/stops/108366", "https://data.delijn.be/stops/304920"], ["https://data.delijn.be/stops/201081", "https://data.delijn.be/stops/211855"], ["https://data.delijn.be/stops/401431", "https://data.delijn.be/stops/402085"], ["https://data.delijn.be/stops/305119", "https://data.delijn.be/stops/305123"], ["https://data.delijn.be/stops/506080", "https://data.delijn.be/stops/506645"], ["https://data.delijn.be/stops/201689", "https://data.delijn.be/stops/201690"], ["https://data.delijn.be/stops/400081", "https://data.delijn.be/stops/403299"], ["https://data.delijn.be/stops/400470", "https://data.delijn.be/stops/400471"], ["https://data.delijn.be/stops/300157", "https://data.delijn.be/stops/300158"], ["https://data.delijn.be/stops/202212", "https://data.delijn.be/stops/202213"], ["https://data.delijn.be/stops/307721", "https://data.delijn.be/stops/307737"], ["https://data.delijn.be/stops/106770", "https://data.delijn.be/stops/106771"], ["https://data.delijn.be/stops/102733", "https://data.delijn.be/stops/103505"], ["https://data.delijn.be/stops/206129", "https://data.delijn.be/stops/206722"], ["https://data.delijn.be/stops/403756", "https://data.delijn.be/stops/403757"], ["https://data.delijn.be/stops/203897", "https://data.delijn.be/stops/211126"], ["https://data.delijn.be/stops/104860", "https://data.delijn.be/stops/105200"], ["https://data.delijn.be/stops/102202", "https://data.delijn.be/stops/105939"], ["https://data.delijn.be/stops/102780", "https://data.delijn.be/stops/104035"], ["https://data.delijn.be/stops/303318", "https://data.delijn.be/stops/303319"], ["https://data.delijn.be/stops/403052", "https://data.delijn.be/stops/403315"], ["https://data.delijn.be/stops/300387", "https://data.delijn.be/stops/307000"], ["https://data.delijn.be/stops/401216", "https://data.delijn.be/stops/401225"], ["https://data.delijn.be/stops/407733", "https://data.delijn.be/stops/409785"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/107031"], ["https://data.delijn.be/stops/501376", "https://data.delijn.be/stops/509203"], ["https://data.delijn.be/stops/206027", "https://data.delijn.be/stops/207206"], ["https://data.delijn.be/stops/505819", "https://data.delijn.be/stops/509267"], ["https://data.delijn.be/stops/503932", "https://data.delijn.be/stops/505920"], ["https://data.delijn.be/stops/103074", "https://data.delijn.be/stops/103076"], ["https://data.delijn.be/stops/403705", "https://data.delijn.be/stops/403731"], ["https://data.delijn.be/stops/203156", "https://data.delijn.be/stops/205068"], ["https://data.delijn.be/stops/403311", "https://data.delijn.be/stops/403463"], ["https://data.delijn.be/stops/106820", "https://data.delijn.be/stops/106822"], ["https://data.delijn.be/stops/509576", "https://data.delijn.be/stops/509577"], ["https://data.delijn.be/stops/203887", "https://data.delijn.be/stops/207938"], ["https://data.delijn.be/stops/102997", "https://data.delijn.be/stops/109447"], ["https://data.delijn.be/stops/403272", "https://data.delijn.be/stops/403398"], ["https://data.delijn.be/stops/206704", "https://data.delijn.be/stops/301665"], ["https://data.delijn.be/stops/101641", "https://data.delijn.be/stops/106199"], ["https://data.delijn.be/stops/407922", "https://data.delijn.be/stops/407923"], ["https://data.delijn.be/stops/501242", "https://data.delijn.be/stops/506246"], ["https://data.delijn.be/stops/102966", "https://data.delijn.be/stops/108642"], ["https://data.delijn.be/stops/108247", "https://data.delijn.be/stops/108248"], ["https://data.delijn.be/stops/201846", "https://data.delijn.be/stops/202305"], ["https://data.delijn.be/stops/101645", "https://data.delijn.be/stops/104258"], ["https://data.delijn.be/stops/109498", "https://data.delijn.be/stops/306810"], ["https://data.delijn.be/stops/400901", "https://data.delijn.be/stops/400961"], ["https://data.delijn.be/stops/101809", "https://data.delijn.be/stops/104139"], ["https://data.delijn.be/stops/303464", "https://data.delijn.be/stops/303465"], ["https://data.delijn.be/stops/102035", "https://data.delijn.be/stops/102040"], ["https://data.delijn.be/stops/403228", "https://data.delijn.be/stops/403270"], ["https://data.delijn.be/stops/504811", "https://data.delijn.be/stops/508970"], ["https://data.delijn.be/stops/403922", "https://data.delijn.be/stops/404433"], ["https://data.delijn.be/stops/505573", "https://data.delijn.be/stops/509483"], ["https://data.delijn.be/stops/406223", "https://data.delijn.be/stops/406238"], ["https://data.delijn.be/stops/202007", "https://data.delijn.be/stops/203007"], ["https://data.delijn.be/stops/503675", "https://data.delijn.be/stops/505260"], ["https://data.delijn.be/stops/204235", "https://data.delijn.be/stops/204237"], ["https://data.delijn.be/stops/216014", "https://data.delijn.be/stops/306729"], ["https://data.delijn.be/stops/108550", "https://data.delijn.be/stops/108555"], ["https://data.delijn.be/stops/103959", "https://data.delijn.be/stops/109578"], ["https://data.delijn.be/stops/202261", "https://data.delijn.be/stops/203260"], ["https://data.delijn.be/stops/202017", "https://data.delijn.be/stops/203656"], ["https://data.delijn.be/stops/305738", "https://data.delijn.be/stops/305744"], ["https://data.delijn.be/stops/507688", "https://data.delijn.be/stops/508520"], ["https://data.delijn.be/stops/405132", "https://data.delijn.be/stops/408809"], ["https://data.delijn.be/stops/503069", "https://data.delijn.be/stops/503530"], ["https://data.delijn.be/stops/508717", "https://data.delijn.be/stops/508720"], ["https://data.delijn.be/stops/102582", "https://data.delijn.be/stops/105835"], ["https://data.delijn.be/stops/200745", "https://data.delijn.be/stops/203004"], ["https://data.delijn.be/stops/502309", "https://data.delijn.be/stops/502815"], ["https://data.delijn.be/stops/502244", "https://data.delijn.be/stops/502911"], ["https://data.delijn.be/stops/305555", "https://data.delijn.be/stops/305562"], ["https://data.delijn.be/stops/202742", "https://data.delijn.be/stops/203865"], ["https://data.delijn.be/stops/108728", "https://data.delijn.be/stops/108732"], ["https://data.delijn.be/stops/505550", "https://data.delijn.be/stops/507686"], ["https://data.delijn.be/stops/306922", "https://data.delijn.be/stops/308728"], ["https://data.delijn.be/stops/101298", "https://data.delijn.be/stops/105503"], ["https://data.delijn.be/stops/403029", "https://data.delijn.be/stops/403569"], ["https://data.delijn.be/stops/300449", "https://data.delijn.be/stops/300450"], ["https://data.delijn.be/stops/206149", "https://data.delijn.be/stops/207908"], ["https://data.delijn.be/stops/402366", "https://data.delijn.be/stops/409599"], ["https://data.delijn.be/stops/206186", "https://data.delijn.be/stops/206692"], ["https://data.delijn.be/stops/504639", "https://data.delijn.be/stops/509639"], ["https://data.delijn.be/stops/107048", "https://data.delijn.be/stops/107049"], ["https://data.delijn.be/stops/202721", "https://data.delijn.be/stops/203087"], ["https://data.delijn.be/stops/305076", "https://data.delijn.be/stops/307944"], ["https://data.delijn.be/stops/104877", "https://data.delijn.be/stops/105310"], ["https://data.delijn.be/stops/400561", "https://data.delijn.be/stops/405151"], ["https://data.delijn.be/stops/102985", "https://data.delijn.be/stops/104685"], ["https://data.delijn.be/stops/303019", "https://data.delijn.be/stops/303108"], ["https://data.delijn.be/stops/200576", "https://data.delijn.be/stops/201601"], ["https://data.delijn.be/stops/400065", "https://data.delijn.be/stops/400144"], ["https://data.delijn.be/stops/202416", "https://data.delijn.be/stops/211033"], ["https://data.delijn.be/stops/106349", "https://data.delijn.be/stops/106350"], ["https://data.delijn.be/stops/402385", "https://data.delijn.be/stops/402455"], ["https://data.delijn.be/stops/505519", "https://data.delijn.be/stops/506436"], ["https://data.delijn.be/stops/505586", "https://data.delijn.be/stops/507741"], ["https://data.delijn.be/stops/102854", "https://data.delijn.be/stops/204622"], ["https://data.delijn.be/stops/406665", "https://data.delijn.be/stops/406683"], ["https://data.delijn.be/stops/504327", "https://data.delijn.be/stops/505375"], ["https://data.delijn.be/stops/301338", "https://data.delijn.be/stops/306119"], ["https://data.delijn.be/stops/200162", "https://data.delijn.be/stops/200979"], ["https://data.delijn.be/stops/402450", "https://data.delijn.be/stops/406884"], ["https://data.delijn.be/stops/503009", "https://data.delijn.be/stops/503015"], ["https://data.delijn.be/stops/402076", "https://data.delijn.be/stops/402210"], ["https://data.delijn.be/stops/503113", "https://data.delijn.be/stops/505945"], ["https://data.delijn.be/stops/306702", "https://data.delijn.be/stops/307933"], ["https://data.delijn.be/stops/408749", "https://data.delijn.be/stops/410150"], ["https://data.delijn.be/stops/401338", "https://data.delijn.be/stops/401339"], ["https://data.delijn.be/stops/203863", "https://data.delijn.be/stops/203879"], ["https://data.delijn.be/stops/201663", "https://data.delijn.be/stops/203322"], ["https://data.delijn.be/stops/103616", "https://data.delijn.be/stops/106309"], ["https://data.delijn.be/stops/305452", "https://data.delijn.be/stops/307776"], ["https://data.delijn.be/stops/504641", "https://data.delijn.be/stops/509641"], ["https://data.delijn.be/stops/206661", "https://data.delijn.be/stops/207662"], ["https://data.delijn.be/stops/302981", "https://data.delijn.be/stops/306296"], ["https://data.delijn.be/stops/301218", "https://data.delijn.be/stops/301222"], ["https://data.delijn.be/stops/200079", "https://data.delijn.be/stops/201546"], ["https://data.delijn.be/stops/300257", "https://data.delijn.be/stops/303826"], ["https://data.delijn.be/stops/403075", "https://data.delijn.be/stops/403457"], ["https://data.delijn.be/stops/401843", "https://data.delijn.be/stops/401855"], ["https://data.delijn.be/stops/302172", "https://data.delijn.be/stops/302174"], ["https://data.delijn.be/stops/202880", "https://data.delijn.be/stops/208528"], ["https://data.delijn.be/stops/200902", "https://data.delijn.be/stops/200904"], ["https://data.delijn.be/stops/104724", "https://data.delijn.be/stops/105405"], ["https://data.delijn.be/stops/101315", "https://data.delijn.be/stops/104111"], ["https://data.delijn.be/stops/508671", "https://data.delijn.be/stops/508673"], ["https://data.delijn.be/stops/502767", "https://data.delijn.be/stops/507143"], ["https://data.delijn.be/stops/406197", "https://data.delijn.be/stops/406899"], ["https://data.delijn.be/stops/104861", "https://data.delijn.be/stops/107883"], ["https://data.delijn.be/stops/102785", "https://data.delijn.be/stops/103125"], ["https://data.delijn.be/stops/103329", "https://data.delijn.be/stops/109294"], ["https://data.delijn.be/stops/400348", "https://data.delijn.be/stops/406866"], ["https://data.delijn.be/stops/506270", "https://data.delijn.be/stops/506317"], ["https://data.delijn.be/stops/300564", "https://data.delijn.be/stops/303525"], ["https://data.delijn.be/stops/408452", "https://data.delijn.be/stops/410062"], ["https://data.delijn.be/stops/305894", "https://data.delijn.be/stops/308156"], ["https://data.delijn.be/stops/201775", "https://data.delijn.be/stops/208123"], ["https://data.delijn.be/stops/407773", "https://data.delijn.be/stops/304368"], ["https://data.delijn.be/stops/204418", "https://data.delijn.be/stops/205387"], ["https://data.delijn.be/stops/408504", "https://data.delijn.be/stops/408505"], ["https://data.delijn.be/stops/202179", "https://data.delijn.be/stops/209867"], ["https://data.delijn.be/stops/501390", "https://data.delijn.be/stops/506391"], ["https://data.delijn.be/stops/202504", "https://data.delijn.be/stops/203504"], ["https://data.delijn.be/stops/102543", "https://data.delijn.be/stops/102544"], ["https://data.delijn.be/stops/108156", "https://data.delijn.be/stops/108904"], ["https://data.delijn.be/stops/408503", "https://data.delijn.be/stops/408547"], ["https://data.delijn.be/stops/403057", "https://data.delijn.be/stops/410361"], ["https://data.delijn.be/stops/204411", "https://data.delijn.be/stops/205769"], ["https://data.delijn.be/stops/403131", "https://data.delijn.be/stops/403147"], ["https://data.delijn.be/stops/407896", "https://data.delijn.be/stops/407941"], ["https://data.delijn.be/stops/307393", "https://data.delijn.be/stops/307395"], ["https://data.delijn.be/stops/302281", "https://data.delijn.be/stops/302291"], ["https://data.delijn.be/stops/501267", "https://data.delijn.be/stops/501315"], ["https://data.delijn.be/stops/508719", "https://data.delijn.be/stops/509968"], ["https://data.delijn.be/stops/103228", "https://data.delijn.be/stops/103604"], ["https://data.delijn.be/stops/404677", "https://data.delijn.be/stops/410136"], ["https://data.delijn.be/stops/206339", "https://data.delijn.be/stops/207340"], ["https://data.delijn.be/stops/205758", "https://data.delijn.be/stops/205759"], ["https://data.delijn.be/stops/300870", "https://data.delijn.be/stops/302217"], ["https://data.delijn.be/stops/301191", "https://data.delijn.be/stops/301254"], ["https://data.delijn.be/stops/204654", "https://data.delijn.be/stops/205670"], ["https://data.delijn.be/stops/106301", "https://data.delijn.be/stops/106303"], ["https://data.delijn.be/stops/302307", "https://data.delijn.be/stops/302316"], ["https://data.delijn.be/stops/303373", "https://data.delijn.be/stops/303381"], ["https://data.delijn.be/stops/104894", "https://data.delijn.be/stops/109617"], ["https://data.delijn.be/stops/406318", "https://data.delijn.be/stops/406350"], ["https://data.delijn.be/stops/303417", "https://data.delijn.be/stops/303421"], ["https://data.delijn.be/stops/202371", "https://data.delijn.be/stops/202372"], ["https://data.delijn.be/stops/401409", "https://data.delijn.be/stops/401411"], ["https://data.delijn.be/stops/505528", "https://data.delijn.be/stops/506423"], ["https://data.delijn.be/stops/408994", "https://data.delijn.be/stops/409001"], ["https://data.delijn.be/stops/105989", "https://data.delijn.be/stops/107957"], ["https://data.delijn.be/stops/206988", "https://data.delijn.be/stops/207988"], ["https://data.delijn.be/stops/302452", "https://data.delijn.be/stops/302497"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/202630"], ["https://data.delijn.be/stops/409571", "https://data.delijn.be/stops/410222"], ["https://data.delijn.be/stops/505814", "https://data.delijn.be/stops/508137"], ["https://data.delijn.be/stops/400684", "https://data.delijn.be/stops/404429"], ["https://data.delijn.be/stops/503228", "https://data.delijn.be/stops/508775"], ["https://data.delijn.be/stops/208425", "https://data.delijn.be/stops/209426"], ["https://data.delijn.be/stops/109394", "https://data.delijn.be/stops/109395"], ["https://data.delijn.be/stops/406066", "https://data.delijn.be/stops/407862"], ["https://data.delijn.be/stops/404406", "https://data.delijn.be/stops/404413"], ["https://data.delijn.be/stops/206776", "https://data.delijn.be/stops/208482"], ["https://data.delijn.be/stops/308415", "https://data.delijn.be/stops/308422"], ["https://data.delijn.be/stops/201601", "https://data.delijn.be/stops/203757"], ["https://data.delijn.be/stops/109846", "https://data.delijn.be/stops/109847"], ["https://data.delijn.be/stops/301697", "https://data.delijn.be/stops/301744"], ["https://data.delijn.be/stops/507054", "https://data.delijn.be/stops/507642"], ["https://data.delijn.be/stops/400964", "https://data.delijn.be/stops/401249"], ["https://data.delijn.be/stops/206689", "https://data.delijn.be/stops/207715"], ["https://data.delijn.be/stops/208402", "https://data.delijn.be/stops/209413"], ["https://data.delijn.be/stops/508235", "https://data.delijn.be/stops/508238"], ["https://data.delijn.be/stops/202667", "https://data.delijn.be/stops/203666"], ["https://data.delijn.be/stops/409092", "https://data.delijn.be/stops/410049"], ["https://data.delijn.be/stops/200319", "https://data.delijn.be/stops/211850"], ["https://data.delijn.be/stops/107487", "https://data.delijn.be/stops/305801"], ["https://data.delijn.be/stops/504665", "https://data.delijn.be/stops/506241"], ["https://data.delijn.be/stops/101435", "https://data.delijn.be/stops/107291"], ["https://data.delijn.be/stops/109028", "https://data.delijn.be/stops/109032"], ["https://data.delijn.be/stops/108858", "https://data.delijn.be/stops/108859"], ["https://data.delijn.be/stops/101483", "https://data.delijn.be/stops/101957"], ["https://data.delijn.be/stops/406083", "https://data.delijn.be/stops/406139"], ["https://data.delijn.be/stops/204175", "https://data.delijn.be/stops/205176"], ["https://data.delijn.be/stops/406896", "https://data.delijn.be/stops/406897"], ["https://data.delijn.be/stops/301381", "https://data.delijn.be/stops/303795"], ["https://data.delijn.be/stops/202912", "https://data.delijn.be/stops/203912"], ["https://data.delijn.be/stops/102980", "https://data.delijn.be/stops/104030"], ["https://data.delijn.be/stops/102617", "https://data.delijn.be/stops/108206"], ["https://data.delijn.be/stops/208770", "https://data.delijn.be/stops/209788"], ["https://data.delijn.be/stops/208692", "https://data.delijn.be/stops/208705"], ["https://data.delijn.be/stops/304605", "https://data.delijn.be/stops/304606"], ["https://data.delijn.be/stops/200689", "https://data.delijn.be/stops/201683"], ["https://data.delijn.be/stops/201726", "https://data.delijn.be/stops/203373"], ["https://data.delijn.be/stops/509765", "https://data.delijn.be/stops/509766"], ["https://data.delijn.be/stops/403501", "https://data.delijn.be/stops/403502"], ["https://data.delijn.be/stops/508597", "https://data.delijn.be/stops/508598"], ["https://data.delijn.be/stops/405515", "https://data.delijn.be/stops/407781"], ["https://data.delijn.be/stops/101522", "https://data.delijn.be/stops/101942"], ["https://data.delijn.be/stops/101788", "https://data.delijn.be/stops/105357"], ["https://data.delijn.be/stops/102280", "https://data.delijn.be/stops/107465"], ["https://data.delijn.be/stops/407646", "https://data.delijn.be/stops/407729"], ["https://data.delijn.be/stops/204362", "https://data.delijn.be/stops/205362"], ["https://data.delijn.be/stops/506777", "https://data.delijn.be/stops/506778"], ["https://data.delijn.be/stops/300737", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/400468", "https://data.delijn.be/stops/404843"], ["https://data.delijn.be/stops/400883", "https://data.delijn.be/stops/403576"], ["https://data.delijn.be/stops/503495", "https://data.delijn.be/stops/508270"], ["https://data.delijn.be/stops/204695", "https://data.delijn.be/stops/205102"], ["https://data.delijn.be/stops/407436", "https://data.delijn.be/stops/407486"], ["https://data.delijn.be/stops/210115", "https://data.delijn.be/stops/210117"], ["https://data.delijn.be/stops/305946", "https://data.delijn.be/stops/308417"], ["https://data.delijn.be/stops/504088", "https://data.delijn.be/stops/504978"], ["https://data.delijn.be/stops/503635", "https://data.delijn.be/stops/505935"], ["https://data.delijn.be/stops/304942", "https://data.delijn.be/stops/308019"], ["https://data.delijn.be/stops/401498", "https://data.delijn.be/stops/408635"], ["https://data.delijn.be/stops/409676", "https://data.delijn.be/stops/409705"], ["https://data.delijn.be/stops/206604", "https://data.delijn.be/stops/217020"], ["https://data.delijn.be/stops/305320", "https://data.delijn.be/stops/305893"], ["https://data.delijn.be/stops/300172", "https://data.delijn.be/stops/301219"], ["https://data.delijn.be/stops/200976", "https://data.delijn.be/stops/206851"], ["https://data.delijn.be/stops/300381", "https://data.delijn.be/stops/300469"], ["https://data.delijn.be/stops/201470", "https://data.delijn.be/stops/201891"], ["https://data.delijn.be/stops/105773", "https://data.delijn.be/stops/105783"], ["https://data.delijn.be/stops/101440", "https://data.delijn.be/stops/102145"], ["https://data.delijn.be/stops/402816", "https://data.delijn.be/stops/409018"], ["https://data.delijn.be/stops/405907", "https://data.delijn.be/stops/405929"], ["https://data.delijn.be/stops/204424", "https://data.delijn.be/stops/205745"], ["https://data.delijn.be/stops/202628", "https://data.delijn.be/stops/203628"], ["https://data.delijn.be/stops/404652", "https://data.delijn.be/stops/404655"], ["https://data.delijn.be/stops/503848", "https://data.delijn.be/stops/504379"], ["https://data.delijn.be/stops/401847", "https://data.delijn.be/stops/406239"], ["https://data.delijn.be/stops/200266", "https://data.delijn.be/stops/203543"], ["https://data.delijn.be/stops/407400", "https://data.delijn.be/stops/407482"], ["https://data.delijn.be/stops/400112", "https://data.delijn.be/stops/409066"], ["https://data.delijn.be/stops/102061", "https://data.delijn.be/stops/102073"], ["https://data.delijn.be/stops/301705", "https://data.delijn.be/stops/301756"], ["https://data.delijn.be/stops/203870", "https://data.delijn.be/stops/203881"], ["https://data.delijn.be/stops/206140", "https://data.delijn.be/stops/207139"], ["https://data.delijn.be/stops/202653", "https://data.delijn.be/stops/203653"], ["https://data.delijn.be/stops/106235", "https://data.delijn.be/stops/106681"], ["https://data.delijn.be/stops/405049", "https://data.delijn.be/stops/405769"], ["https://data.delijn.be/stops/106324", "https://data.delijn.be/stops/106326"], ["https://data.delijn.be/stops/400882", "https://data.delijn.be/stops/409343"], ["https://data.delijn.be/stops/204376", "https://data.delijn.be/stops/205375"], ["https://data.delijn.be/stops/406244", "https://data.delijn.be/stops/406253"], ["https://data.delijn.be/stops/202322", "https://data.delijn.be/stops/203322"], ["https://data.delijn.be/stops/501043", "https://data.delijn.be/stops/506037"], ["https://data.delijn.be/stops/405632", "https://data.delijn.be/stops/407774"], ["https://data.delijn.be/stops/306616", "https://data.delijn.be/stops/306627"], ["https://data.delijn.be/stops/409315", "https://data.delijn.be/stops/410396"], ["https://data.delijn.be/stops/207803", "https://data.delijn.be/stops/300196"], ["https://data.delijn.be/stops/204257", "https://data.delijn.be/stops/205823"], ["https://data.delijn.be/stops/102240", "https://data.delijn.be/stops/104580"], ["https://data.delijn.be/stops/205209", "https://data.delijn.be/stops/205348"], ["https://data.delijn.be/stops/505951", "https://data.delijn.be/stops/505966"], ["https://data.delijn.be/stops/105936", "https://data.delijn.be/stops/105938"], ["https://data.delijn.be/stops/408584", "https://data.delijn.be/stops/408591"], ["https://data.delijn.be/stops/101016", "https://data.delijn.be/stops/102815"], ["https://data.delijn.be/stops/304135", "https://data.delijn.be/stops/307583"], ["https://data.delijn.be/stops/201021", "https://data.delijn.be/stops/201111"], ["https://data.delijn.be/stops/403379", "https://data.delijn.be/stops/410212"], ["https://data.delijn.be/stops/403124", "https://data.delijn.be/stops/403673"], ["https://data.delijn.be/stops/208722", "https://data.delijn.be/stops/209722"], ["https://data.delijn.be/stops/502653", "https://data.delijn.be/stops/505019"], ["https://data.delijn.be/stops/405330", "https://data.delijn.be/stops/409294"], ["https://data.delijn.be/stops/403273", "https://data.delijn.be/stops/403398"], ["https://data.delijn.be/stops/106245", "https://data.delijn.be/stops/106730"], ["https://data.delijn.be/stops/103328", "https://data.delijn.be/stops/105102"], ["https://data.delijn.be/stops/106402", "https://data.delijn.be/stops/106575"], ["https://data.delijn.be/stops/307410", "https://data.delijn.be/stops/307413"], ["https://data.delijn.be/stops/302325", "https://data.delijn.be/stops/302985"], ["https://data.delijn.be/stops/400789", "https://data.delijn.be/stops/409560"], ["https://data.delijn.be/stops/102024", "https://data.delijn.be/stops/105746"], ["https://data.delijn.be/stops/302874", "https://data.delijn.be/stops/307008"], ["https://data.delijn.be/stops/304753", "https://data.delijn.be/stops/304768"], ["https://data.delijn.be/stops/410018", "https://data.delijn.be/stops/306775"], ["https://data.delijn.be/stops/504151", "https://data.delijn.be/stops/504164"], ["https://data.delijn.be/stops/403597", "https://data.delijn.be/stops/403608"], ["https://data.delijn.be/stops/400764", "https://data.delijn.be/stops/400773"], ["https://data.delijn.be/stops/301008", "https://data.delijn.be/stops/301012"], ["https://data.delijn.be/stops/302336", "https://data.delijn.be/stops/306180"], ["https://data.delijn.be/stops/106273", "https://data.delijn.be/stops/109627"], ["https://data.delijn.be/stops/204704", "https://data.delijn.be/stops/205053"], ["https://data.delijn.be/stops/102301", "https://data.delijn.be/stops/105106"], ["https://data.delijn.be/stops/507275", "https://data.delijn.be/stops/507276"], ["https://data.delijn.be/stops/302014", "https://data.delijn.be/stops/302034"], ["https://data.delijn.be/stops/107700", "https://data.delijn.be/stops/107897"], ["https://data.delijn.be/stops/506193", "https://data.delijn.be/stops/506197"], ["https://data.delijn.be/stops/208134", "https://data.delijn.be/stops/209137"], ["https://data.delijn.be/stops/502704", "https://data.delijn.be/stops/507426"], ["https://data.delijn.be/stops/402006", "https://data.delijn.be/stops/405175"], ["https://data.delijn.be/stops/103244", "https://data.delijn.be/stops/108126"], ["https://data.delijn.be/stops/105608", "https://data.delijn.be/stops/105609"], ["https://data.delijn.be/stops/103502", "https://data.delijn.be/stops/103503"], ["https://data.delijn.be/stops/109181", "https://data.delijn.be/stops/109713"], ["https://data.delijn.be/stops/200136", "https://data.delijn.be/stops/200137"], ["https://data.delijn.be/stops/502043", "https://data.delijn.be/stops/507043"], ["https://data.delijn.be/stops/106651", "https://data.delijn.be/stops/109752"], ["https://data.delijn.be/stops/305567", "https://data.delijn.be/stops/305568"], ["https://data.delijn.be/stops/109216", "https://data.delijn.be/stops/109219"], ["https://data.delijn.be/stops/406299", "https://data.delijn.be/stops/409080"], ["https://data.delijn.be/stops/307841", "https://data.delijn.be/stops/307842"], ["https://data.delijn.be/stops/106793", "https://data.delijn.be/stops/106794"], ["https://data.delijn.be/stops/105072", "https://data.delijn.be/stops/108227"], ["https://data.delijn.be/stops/204143", "https://data.delijn.be/stops/205143"], ["https://data.delijn.be/stops/503454", "https://data.delijn.be/stops/508454"], ["https://data.delijn.be/stops/102580", "https://data.delijn.be/stops/108789"], ["https://data.delijn.be/stops/104771", "https://data.delijn.be/stops/108149"], ["https://data.delijn.be/stops/402837", "https://data.delijn.be/stops/409006"], ["https://data.delijn.be/stops/302910", "https://data.delijn.be/stops/303080"], ["https://data.delijn.be/stops/200718", "https://data.delijn.be/stops/215003"], ["https://data.delijn.be/stops/504095", "https://data.delijn.be/stops/509097"], ["https://data.delijn.be/stops/300994", "https://data.delijn.be/stops/308355"], ["https://data.delijn.be/stops/300300", "https://data.delijn.be/stops/301768"], ["https://data.delijn.be/stops/208213", "https://data.delijn.be/stops/208800"], ["https://data.delijn.be/stops/404367", "https://data.delijn.be/stops/404756"], ["https://data.delijn.be/stops/204145", "https://data.delijn.be/stops/206636"], ["https://data.delijn.be/stops/307388", "https://data.delijn.be/stops/307394"], ["https://data.delijn.be/stops/304736", "https://data.delijn.be/stops/305292"], ["https://data.delijn.be/stops/504303", "https://data.delijn.be/stops/509949"], ["https://data.delijn.be/stops/107429", "https://data.delijn.be/stops/107703"], ["https://data.delijn.be/stops/201867", "https://data.delijn.be/stops/203082"], ["https://data.delijn.be/stops/504510", "https://data.delijn.be/stops/505165"], ["https://data.delijn.be/stops/302010", "https://data.delijn.be/stops/302011"], ["https://data.delijn.be/stops/507948", "https://data.delijn.be/stops/507956"], ["https://data.delijn.be/stops/503214", "https://data.delijn.be/stops/508187"], ["https://data.delijn.be/stops/502821", "https://data.delijn.be/stops/507456"], ["https://data.delijn.be/stops/200636", "https://data.delijn.be/stops/200637"], ["https://data.delijn.be/stops/407059", "https://data.delijn.be/stops/407069"], ["https://data.delijn.be/stops/204558", "https://data.delijn.be/stops/205030"], ["https://data.delijn.be/stops/408078", "https://data.delijn.be/stops/305689"], ["https://data.delijn.be/stops/401047", "https://data.delijn.be/stops/401127"], ["https://data.delijn.be/stops/304466", "https://data.delijn.be/stops/304526"], ["https://data.delijn.be/stops/303441", "https://data.delijn.be/stops/306370"], ["https://data.delijn.be/stops/105688", "https://data.delijn.be/stops/105690"], ["https://data.delijn.be/stops/505213", "https://data.delijn.be/stops/509598"], ["https://data.delijn.be/stops/105127", "https://data.delijn.be/stops/105129"], ["https://data.delijn.be/stops/208459", "https://data.delijn.be/stops/209470"], ["https://data.delijn.be/stops/108815", "https://data.delijn.be/stops/109060"], ["https://data.delijn.be/stops/406247", "https://data.delijn.be/stops/406291"], ["https://data.delijn.be/stops/407643", "https://data.delijn.be/stops/410319"], ["https://data.delijn.be/stops/402120", "https://data.delijn.be/stops/402257"], ["https://data.delijn.be/stops/202885", "https://data.delijn.be/stops/202887"], ["https://data.delijn.be/stops/206280", "https://data.delijn.be/stops/206281"], ["https://data.delijn.be/stops/104904", "https://data.delijn.be/stops/106595"], ["https://data.delijn.be/stops/507716", "https://data.delijn.be/stops/508462"], ["https://data.delijn.be/stops/102799", "https://data.delijn.be/stops/103695"], ["https://data.delijn.be/stops/403746", "https://data.delijn.be/stops/403747"], ["https://data.delijn.be/stops/201005", "https://data.delijn.be/stops/201921"], ["https://data.delijn.be/stops/208051", "https://data.delijn.be/stops/208658"], ["https://data.delijn.be/stops/201817", "https://data.delijn.be/stops/208253"], ["https://data.delijn.be/stops/404316", "https://data.delijn.be/stops/409690"], ["https://data.delijn.be/stops/405456", "https://data.delijn.be/stops/405472"], ["https://data.delijn.be/stops/504263", "https://data.delijn.be/stops/504683"], ["https://data.delijn.be/stops/503728", "https://data.delijn.be/stops/508704"], ["https://data.delijn.be/stops/101973", "https://data.delijn.be/stops/109293"], ["https://data.delijn.be/stops/101748", "https://data.delijn.be/stops/101749"], ["https://data.delijn.be/stops/408664", "https://data.delijn.be/stops/408665"], ["https://data.delijn.be/stops/301935", "https://data.delijn.be/stops/302901"], ["https://data.delijn.be/stops/301728", "https://data.delijn.be/stops/301739"], ["https://data.delijn.be/stops/202436", "https://data.delijn.be/stops/210087"], ["https://data.delijn.be/stops/406812", "https://data.delijn.be/stops/406950"], ["https://data.delijn.be/stops/403925", "https://data.delijn.be/stops/410257"], ["https://data.delijn.be/stops/302083", "https://data.delijn.be/stops/306379"], ["https://data.delijn.be/stops/200749", "https://data.delijn.be/stops/202149"], ["https://data.delijn.be/stops/406803", "https://data.delijn.be/stops/407151"], ["https://data.delijn.be/stops/501487", "https://data.delijn.be/stops/506487"], ["https://data.delijn.be/stops/307616", "https://data.delijn.be/stops/308759"], ["https://data.delijn.be/stops/504076", "https://data.delijn.be/stops/504692"], ["https://data.delijn.be/stops/501227", "https://data.delijn.be/stops/506418"], ["https://data.delijn.be/stops/209527", "https://data.delijn.be/stops/219016"], ["https://data.delijn.be/stops/208077", "https://data.delijn.be/stops/209077"], ["https://data.delijn.be/stops/405271", "https://data.delijn.be/stops/405272"], ["https://data.delijn.be/stops/506307", "https://data.delijn.be/stops/510001"], ["https://data.delijn.be/stops/209600", "https://data.delijn.be/stops/306368"], ["https://data.delijn.be/stops/500158", "https://data.delijn.be/stops/504995"], ["https://data.delijn.be/stops/305079", "https://data.delijn.be/stops/306952"], ["https://data.delijn.be/stops/403726", "https://data.delijn.be/stops/403784"], ["https://data.delijn.be/stops/200523", "https://data.delijn.be/stops/201523"], ["https://data.delijn.be/stops/101366", "https://data.delijn.be/stops/101367"], ["https://data.delijn.be/stops/304801", "https://data.delijn.be/stops/304802"], ["https://data.delijn.be/stops/206964", "https://data.delijn.be/stops/207040"], ["https://data.delijn.be/stops/103995", "https://data.delijn.be/stops/107610"], ["https://data.delijn.be/stops/307852", "https://data.delijn.be/stops/307853"], ["https://data.delijn.be/stops/302891", "https://data.delijn.be/stops/302892"], ["https://data.delijn.be/stops/304248", "https://data.delijn.be/stops/304268"], ["https://data.delijn.be/stops/302229", "https://data.delijn.be/stops/302239"], ["https://data.delijn.be/stops/308605", "https://data.delijn.be/stops/308632"], ["https://data.delijn.be/stops/504411", "https://data.delijn.be/stops/509411"], ["https://data.delijn.be/stops/304590", "https://data.delijn.be/stops/304662"], ["https://data.delijn.be/stops/308408", "https://data.delijn.be/stops/308410"], ["https://data.delijn.be/stops/207760", "https://data.delijn.be/stops/207773"], ["https://data.delijn.be/stops/406880", "https://data.delijn.be/stops/409770"], ["https://data.delijn.be/stops/404491", "https://data.delijn.be/stops/404538"], ["https://data.delijn.be/stops/407033", "https://data.delijn.be/stops/407036"], ["https://data.delijn.be/stops/105149", "https://data.delijn.be/stops/109522"], ["https://data.delijn.be/stops/402814", "https://data.delijn.be/stops/402815"], ["https://data.delijn.be/stops/305550", "https://data.delijn.be/stops/305562"], ["https://data.delijn.be/stops/109027", "https://data.delijn.be/stops/109078"], ["https://data.delijn.be/stops/103245", "https://data.delijn.be/stops/103255"], ["https://data.delijn.be/stops/101463", "https://data.delijn.be/stops/101475"], ["https://data.delijn.be/stops/202720", "https://data.delijn.be/stops/203720"], ["https://data.delijn.be/stops/201594", "https://data.delijn.be/stops/210132"], ["https://data.delijn.be/stops/508212", "https://data.delijn.be/stops/508390"], ["https://data.delijn.be/stops/101412", "https://data.delijn.be/stops/101433"], ["https://data.delijn.be/stops/301052", "https://data.delijn.be/stops/301062"], ["https://data.delijn.be/stops/207205", "https://data.delijn.be/stops/207206"], ["https://data.delijn.be/stops/104966", "https://data.delijn.be/stops/109216"], ["https://data.delijn.be/stops/101250", "https://data.delijn.be/stops/101255"], ["https://data.delijn.be/stops/104843", "https://data.delijn.be/stops/109965"], ["https://data.delijn.be/stops/306867", "https://data.delijn.be/stops/307425"], ["https://data.delijn.be/stops/303760", "https://data.delijn.be/stops/303762"], ["https://data.delijn.be/stops/502194", "https://data.delijn.be/stops/509312"], ["https://data.delijn.be/stops/303377", "https://data.delijn.be/stops/303396"], ["https://data.delijn.be/stops/509250", "https://data.delijn.be/stops/509596"], ["https://data.delijn.be/stops/105281", "https://data.delijn.be/stops/105282"], ["https://data.delijn.be/stops/104446", "https://data.delijn.be/stops/303877"], ["https://data.delijn.be/stops/204340", "https://data.delijn.be/stops/205535"], ["https://data.delijn.be/stops/506308", "https://data.delijn.be/stops/506511"], ["https://data.delijn.be/stops/201780", "https://data.delijn.be/stops/208855"], ["https://data.delijn.be/stops/300199", "https://data.delijn.be/stops/302114"], ["https://data.delijn.be/stops/104016", "https://data.delijn.be/stops/104019"], ["https://data.delijn.be/stops/304567", "https://data.delijn.be/stops/304648"], ["https://data.delijn.be/stops/106725", "https://data.delijn.be/stops/106728"], ["https://data.delijn.be/stops/505548", "https://data.delijn.be/stops/505578"], ["https://data.delijn.be/stops/208446", "https://data.delijn.be/stops/208447"], ["https://data.delijn.be/stops/501601", "https://data.delijn.be/stops/505165"], ["https://data.delijn.be/stops/508134", "https://data.delijn.be/stops/508138"], ["https://data.delijn.be/stops/504633", "https://data.delijn.be/stops/509335"], ["https://data.delijn.be/stops/505149", "https://data.delijn.be/stops/505327"], ["https://data.delijn.be/stops/202587", "https://data.delijn.be/stops/203372"], ["https://data.delijn.be/stops/504544", "https://data.delijn.be/stops/505212"], ["https://data.delijn.be/stops/403928", "https://data.delijn.be/stops/405968"], ["https://data.delijn.be/stops/307081", "https://data.delijn.be/stops/307082"], ["https://data.delijn.be/stops/301121", "https://data.delijn.be/stops/301133"], ["https://data.delijn.be/stops/303001", "https://data.delijn.be/stops/303002"], ["https://data.delijn.be/stops/206437", "https://data.delijn.be/stops/207641"], ["https://data.delijn.be/stops/101850", "https://data.delijn.be/stops/102841"], ["https://data.delijn.be/stops/106247", "https://data.delijn.be/stops/106248"], ["https://data.delijn.be/stops/302910", "https://data.delijn.be/stops/302911"], ["https://data.delijn.be/stops/301571", "https://data.delijn.be/stops/301574"], ["https://data.delijn.be/stops/304059", "https://data.delijn.be/stops/304085"], ["https://data.delijn.be/stops/101227", "https://data.delijn.be/stops/101547"], ["https://data.delijn.be/stops/502531", "https://data.delijn.be/stops/507531"], ["https://data.delijn.be/stops/508220", "https://data.delijn.be/stops/508224"], ["https://data.delijn.be/stops/303531", "https://data.delijn.be/stops/303541"], ["https://data.delijn.be/stops/401583", "https://data.delijn.be/stops/406243"], ["https://data.delijn.be/stops/408648", "https://data.delijn.be/stops/410150"], ["https://data.delijn.be/stops/401440", "https://data.delijn.be/stops/408311"], ["https://data.delijn.be/stops/405531", "https://data.delijn.be/stops/406897"], ["https://data.delijn.be/stops/590330", "https://data.delijn.be/stops/590333"], ["https://data.delijn.be/stops/200827", "https://data.delijn.be/stops/502069"], ["https://data.delijn.be/stops/109808", "https://data.delijn.be/stops/109811"], ["https://data.delijn.be/stops/206153", "https://data.delijn.be/stops/207154"], ["https://data.delijn.be/stops/403729", "https://data.delijn.be/stops/403822"], ["https://data.delijn.be/stops/406158", "https://data.delijn.be/stops/406443"], ["https://data.delijn.be/stops/408681", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/307625", "https://data.delijn.be/stops/308265"], ["https://data.delijn.be/stops/301439", "https://data.delijn.be/stops/301674"], ["https://data.delijn.be/stops/506082", "https://data.delijn.be/stops/507731"], ["https://data.delijn.be/stops/101657", "https://data.delijn.be/stops/102748"], ["https://data.delijn.be/stops/201136", "https://data.delijn.be/stops/202134"], ["https://data.delijn.be/stops/201705", "https://data.delijn.be/stops/202381"], ["https://data.delijn.be/stops/302782", "https://data.delijn.be/stops/302783"], ["https://data.delijn.be/stops/304879", "https://data.delijn.be/stops/304885"], ["https://data.delijn.be/stops/208355", "https://data.delijn.be/stops/208357"], ["https://data.delijn.be/stops/502573", "https://data.delijn.be/stops/506729"], ["https://data.delijn.be/stops/202507", "https://data.delijn.be/stops/203507"], ["https://data.delijn.be/stops/407024", "https://data.delijn.be/stops/407025"], ["https://data.delijn.be/stops/306899", "https://data.delijn.be/stops/306901"], ["https://data.delijn.be/stops/400508", "https://data.delijn.be/stops/400510"], ["https://data.delijn.be/stops/106032", "https://data.delijn.be/stops/106034"], ["https://data.delijn.be/stops/307983", "https://data.delijn.be/stops/307984"], ["https://data.delijn.be/stops/300435", "https://data.delijn.be/stops/301276"], ["https://data.delijn.be/stops/106531", "https://data.delijn.be/stops/107306"], ["https://data.delijn.be/stops/206722", "https://data.delijn.be/stops/207088"], ["https://data.delijn.be/stops/504943", "https://data.delijn.be/stops/508657"], ["https://data.delijn.be/stops/206534", "https://data.delijn.be/stops/207645"], ["https://data.delijn.be/stops/303396", "https://data.delijn.be/stops/303672"], ["https://data.delijn.be/stops/403680", "https://data.delijn.be/stops/403682"], ["https://data.delijn.be/stops/102506", "https://data.delijn.be/stops/400022"], ["https://data.delijn.be/stops/507943", "https://data.delijn.be/stops/507955"], ["https://data.delijn.be/stops/407918", "https://data.delijn.be/stops/306059"], ["https://data.delijn.be/stops/400110", "https://data.delijn.be/stops/409199"], ["https://data.delijn.be/stops/200073", "https://data.delijn.be/stops/201073"], ["https://data.delijn.be/stops/503790", "https://data.delijn.be/stops/508790"], ["https://data.delijn.be/stops/201053", "https://data.delijn.be/stops/210086"], ["https://data.delijn.be/stops/505922", "https://data.delijn.be/stops/505981"], ["https://data.delijn.be/stops/502043", "https://data.delijn.be/stops/507642"], ["https://data.delijn.be/stops/405628", "https://data.delijn.be/stops/407799"], ["https://data.delijn.be/stops/404993", "https://data.delijn.be/stops/406969"], ["https://data.delijn.be/stops/301783", "https://data.delijn.be/stops/306879"], ["https://data.delijn.be/stops/303493", "https://data.delijn.be/stops/303495"], ["https://data.delijn.be/stops/503699", "https://data.delijn.be/stops/508916"], ["https://data.delijn.be/stops/303044", "https://data.delijn.be/stops/303999"], ["https://data.delijn.be/stops/506113", "https://data.delijn.be/stops/506641"], ["https://data.delijn.be/stops/105422", "https://data.delijn.be/stops/105426"], ["https://data.delijn.be/stops/207197", "https://data.delijn.be/stops/207856"], ["https://data.delijn.be/stops/410220", "https://data.delijn.be/stops/410338"], ["https://data.delijn.be/stops/504877", "https://data.delijn.be/stops/509927"], ["https://data.delijn.be/stops/301623", "https://data.delijn.be/stops/303662"], ["https://data.delijn.be/stops/201858", "https://data.delijn.be/stops/210025"], ["https://data.delijn.be/stops/102471", "https://data.delijn.be/stops/406849"], ["https://data.delijn.be/stops/505285", "https://data.delijn.be/stops/508544"], ["https://data.delijn.be/stops/103961", "https://data.delijn.be/stops/107339"], ["https://data.delijn.be/stops/504586", "https://data.delijn.be/stops/509586"], ["https://data.delijn.be/stops/508621", "https://data.delijn.be/stops/508624"], ["https://data.delijn.be/stops/501536", "https://data.delijn.be/stops/506658"], ["https://data.delijn.be/stops/407830", "https://data.delijn.be/stops/407831"], ["https://data.delijn.be/stops/301267", "https://data.delijn.be/stops/308027"], ["https://data.delijn.be/stops/403176", "https://data.delijn.be/stops/403177"], ["https://data.delijn.be/stops/208278", "https://data.delijn.be/stops/208280"], ["https://data.delijn.be/stops/405911", "https://data.delijn.be/stops/409700"], ["https://data.delijn.be/stops/300541", "https://data.delijn.be/stops/304908"], ["https://data.delijn.be/stops/206143", "https://data.delijn.be/stops/207143"], ["https://data.delijn.be/stops/405710", "https://data.delijn.be/stops/405713"], ["https://data.delijn.be/stops/205378", "https://data.delijn.be/stops/205764"], ["https://data.delijn.be/stops/101657", "https://data.delijn.be/stops/104907"], ["https://data.delijn.be/stops/208138", "https://data.delijn.be/stops/208815"], ["https://data.delijn.be/stops/206866", "https://data.delijn.be/stops/207866"], ["https://data.delijn.be/stops/504984", "https://data.delijn.be/stops/508906"], ["https://data.delijn.be/stops/303304", "https://data.delijn.be/stops/307294"], ["https://data.delijn.be/stops/207998", "https://data.delijn.be/stops/306679"], ["https://data.delijn.be/stops/106870", "https://data.delijn.be/stops/106871"], ["https://data.delijn.be/stops/505673", "https://data.delijn.be/stops/507300"], ["https://data.delijn.be/stops/302957", "https://data.delijn.be/stops/303443"], ["https://data.delijn.be/stops/200921", "https://data.delijn.be/stops/202699"], ["https://data.delijn.be/stops/204916", "https://data.delijn.be/stops/204919"], ["https://data.delijn.be/stops/503615", "https://data.delijn.be/stops/508615"], ["https://data.delijn.be/stops/501776", "https://data.delijn.be/stops/506427"], ["https://data.delijn.be/stops/206585", "https://data.delijn.be/stops/207585"], ["https://data.delijn.be/stops/406152", "https://data.delijn.be/stops/406210"], ["https://data.delijn.be/stops/502581", "https://data.delijn.be/stops/507581"], ["https://data.delijn.be/stops/303993", "https://data.delijn.be/stops/304850"], ["https://data.delijn.be/stops/503201", "https://data.delijn.be/stops/504946"], ["https://data.delijn.be/stops/202535", "https://data.delijn.be/stops/203535"], ["https://data.delijn.be/stops/401752", "https://data.delijn.be/stops/401753"], ["https://data.delijn.be/stops/206235", "https://data.delijn.be/stops/207234"], ["https://data.delijn.be/stops/409054", "https://data.delijn.be/stops/409071"], ["https://data.delijn.be/stops/101452", "https://data.delijn.be/stops/102618"], ["https://data.delijn.be/stops/204080", "https://data.delijn.be/stops/204201"], ["https://data.delijn.be/stops/211014", "https://data.delijn.be/stops/211015"], ["https://data.delijn.be/stops/305713", "https://data.delijn.be/stops/305715"], ["https://data.delijn.be/stops/301180", "https://data.delijn.be/stops/301259"], ["https://data.delijn.be/stops/108558", "https://data.delijn.be/stops/109094"], ["https://data.delijn.be/stops/402082", "https://data.delijn.be/stops/402083"], ["https://data.delijn.be/stops/204985", "https://data.delijn.be/stops/209350"], ["https://data.delijn.be/stops/305123", "https://data.delijn.be/stops/308093"], ["https://data.delijn.be/stops/200216", "https://data.delijn.be/stops/201216"], ["https://data.delijn.be/stops/109663", "https://data.delijn.be/stops/109669"], ["https://data.delijn.be/stops/400790", "https://data.delijn.be/stops/400888"], ["https://data.delijn.be/stops/301564", "https://data.delijn.be/stops/301568"], ["https://data.delijn.be/stops/402513", "https://data.delijn.be/stops/402630"], ["https://data.delijn.be/stops/401003", "https://data.delijn.be/stops/401086"], ["https://data.delijn.be/stops/504421", "https://data.delijn.be/stops/509421"], ["https://data.delijn.be/stops/202898", "https://data.delijn.be/stops/211125"], ["https://data.delijn.be/stops/208673", "https://data.delijn.be/stops/209445"], ["https://data.delijn.be/stops/202797", "https://data.delijn.be/stops/203797"], ["https://data.delijn.be/stops/200561", "https://data.delijn.be/stops/201561"], ["https://data.delijn.be/stops/402512", "https://data.delijn.be/stops/402513"], ["https://data.delijn.be/stops/400219", "https://data.delijn.be/stops/407193"], ["https://data.delijn.be/stops/502093", "https://data.delijn.be/stops/502168"], ["https://data.delijn.be/stops/401264", "https://data.delijn.be/stops/401267"], ["https://data.delijn.be/stops/409858", "https://data.delijn.be/stops/409859"], ["https://data.delijn.be/stops/503952", "https://data.delijn.be/stops/508128"], ["https://data.delijn.be/stops/504037", "https://data.delijn.be/stops/509044"], ["https://data.delijn.be/stops/101798", "https://data.delijn.be/stops/101799"], ["https://data.delijn.be/stops/503687", "https://data.delijn.be/stops/504453"], ["https://data.delijn.be/stops/500929", "https://data.delijn.be/stops/508132"], ["https://data.delijn.be/stops/104639", "https://data.delijn.be/stops/107973"], ["https://data.delijn.be/stops/103371", "https://data.delijn.be/stops/104990"], ["https://data.delijn.be/stops/302566", "https://data.delijn.be/stops/302771"], ["https://data.delijn.be/stops/203886", "https://data.delijn.be/stops/208712"], ["https://data.delijn.be/stops/401642", "https://data.delijn.be/stops/408652"], ["https://data.delijn.be/stops/106450", "https://data.delijn.be/stops/106451"], ["https://data.delijn.be/stops/503875", "https://data.delijn.be/stops/508878"], ["https://data.delijn.be/stops/208441", "https://data.delijn.be/stops/209441"], ["https://data.delijn.be/stops/504815", "https://data.delijn.be/stops/509815"], ["https://data.delijn.be/stops/306954", "https://data.delijn.be/stops/306955"], ["https://data.delijn.be/stops/102253", "https://data.delijn.be/stops/102409"], ["https://data.delijn.be/stops/103004", "https://data.delijn.be/stops/104936"], ["https://data.delijn.be/stops/404288", "https://data.delijn.be/stops/405786"], ["https://data.delijn.be/stops/402780", "https://data.delijn.be/stops/405581"], ["https://data.delijn.be/stops/202012", "https://data.delijn.be/stops/202013"], ["https://data.delijn.be/stops/200030", "https://data.delijn.be/stops/201030"], ["https://data.delijn.be/stops/204216", "https://data.delijn.be/stops/205215"], ["https://data.delijn.be/stops/204724", "https://data.delijn.be/stops/214013"], ["https://data.delijn.be/stops/406622", "https://data.delijn.be/stops/406699"], ["https://data.delijn.be/stops/204022", "https://data.delijn.be/stops/206282"], ["https://data.delijn.be/stops/206400", "https://data.delijn.be/stops/207400"], ["https://data.delijn.be/stops/407582", "https://data.delijn.be/stops/408885"], ["https://data.delijn.be/stops/306602", "https://data.delijn.be/stops/306603"], ["https://data.delijn.be/stops/200421", "https://data.delijn.be/stops/210405"], ["https://data.delijn.be/stops/105679", "https://data.delijn.be/stops/105682"], ["https://data.delijn.be/stops/501401", "https://data.delijn.be/stops/506083"], ["https://data.delijn.be/stops/105893", "https://data.delijn.be/stops/105894"], ["https://data.delijn.be/stops/508501", "https://data.delijn.be/stops/509454"], ["https://data.delijn.be/stops/502119", "https://data.delijn.be/stops/502627"], ["https://data.delijn.be/stops/503145", "https://data.delijn.be/stops/508145"], ["https://data.delijn.be/stops/201724", "https://data.delijn.be/stops/203378"], ["https://data.delijn.be/stops/204982", "https://data.delijn.be/stops/209166"], ["https://data.delijn.be/stops/303934", "https://data.delijn.be/stops/304573"], ["https://data.delijn.be/stops/106930", "https://data.delijn.be/stops/106931"], ["https://data.delijn.be/stops/207458", "https://data.delijn.be/stops/207824"], ["https://data.delijn.be/stops/506036", "https://data.delijn.be/stops/506323"], ["https://data.delijn.be/stops/303463", "https://data.delijn.be/stops/303510"], ["https://data.delijn.be/stops/402595", "https://data.delijn.be/stops/403263"], ["https://data.delijn.be/stops/405774", "https://data.delijn.be/stops/409737"], ["https://data.delijn.be/stops/207283", "https://data.delijn.be/stops/207284"], ["https://data.delijn.be/stops/208214", "https://data.delijn.be/stops/208215"], ["https://data.delijn.be/stops/101200", "https://data.delijn.be/stops/105840"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/209508"], ["https://data.delijn.be/stops/204480", "https://data.delijn.be/stops/205765"], ["https://data.delijn.be/stops/504680", "https://data.delijn.be/stops/509351"], ["https://data.delijn.be/stops/301535", "https://data.delijn.be/stops/301552"], ["https://data.delijn.be/stops/105488", "https://data.delijn.be/stops/105491"], ["https://data.delijn.be/stops/104908", "https://data.delijn.be/stops/107848"], ["https://data.delijn.be/stops/203810", "https://data.delijn.be/stops/203840"], ["https://data.delijn.be/stops/304442", "https://data.delijn.be/stops/304445"], ["https://data.delijn.be/stops/502078", "https://data.delijn.be/stops/502080"], ["https://data.delijn.be/stops/504456", "https://data.delijn.be/stops/509454"], ["https://data.delijn.be/stops/510007", "https://data.delijn.be/stops/510008"], ["https://data.delijn.be/stops/505806", "https://data.delijn.be/stops/508596"], ["https://data.delijn.be/stops/207721", "https://data.delijn.be/stops/207724"], ["https://data.delijn.be/stops/503624", "https://data.delijn.be/stops/508621"], ["https://data.delijn.be/stops/410163", "https://data.delijn.be/stops/410346"], ["https://data.delijn.be/stops/501179", "https://data.delijn.be/stops/506071"], ["https://data.delijn.be/stops/503758", "https://data.delijn.be/stops/508766"], ["https://data.delijn.be/stops/108962", "https://data.delijn.be/stops/108966"], ["https://data.delijn.be/stops/504851", "https://data.delijn.be/stops/509271"], ["https://data.delijn.be/stops/500940", "https://data.delijn.be/stops/503894"], ["https://data.delijn.be/stops/307205", "https://data.delijn.be/stops/307555"], ["https://data.delijn.be/stops/200054", "https://data.delijn.be/stops/201054"], ["https://data.delijn.be/stops/108733", "https://data.delijn.be/stops/109284"], ["https://data.delijn.be/stops/103354", "https://data.delijn.be/stops/107485"], ["https://data.delijn.be/stops/303851", "https://data.delijn.be/stops/303852"], ["https://data.delijn.be/stops/200166", "https://data.delijn.be/stops/202197"], ["https://data.delijn.be/stops/202633", "https://data.delijn.be/stops/203633"], ["https://data.delijn.be/stops/301236", "https://data.delijn.be/stops/308134"], ["https://data.delijn.be/stops/201367", "https://data.delijn.be/stops/201607"], ["https://data.delijn.be/stops/204307", "https://data.delijn.be/stops/205307"], ["https://data.delijn.be/stops/105544", "https://data.delijn.be/stops/105546"], ["https://data.delijn.be/stops/203309", "https://data.delijn.be/stops/502759"], ["https://data.delijn.be/stops/107569", "https://data.delijn.be/stops/107573"], ["https://data.delijn.be/stops/202860", "https://data.delijn.be/stops/202861"], ["https://data.delijn.be/stops/101075", "https://data.delijn.be/stops/103040"], ["https://data.delijn.be/stops/406194", "https://data.delijn.be/stops/406220"], ["https://data.delijn.be/stops/105885", "https://data.delijn.be/stops/109135"], ["https://data.delijn.be/stops/204732", "https://data.delijn.be/stops/205732"], ["https://data.delijn.be/stops/201960", "https://data.delijn.be/stops/202193"], ["https://data.delijn.be/stops/206113", "https://data.delijn.be/stops/207114"], ["https://data.delijn.be/stops/206209", "https://data.delijn.be/stops/206818"], ["https://data.delijn.be/stops/203703", "https://data.delijn.be/stops/203704"], ["https://data.delijn.be/stops/102566", "https://data.delijn.be/stops/105847"], ["https://data.delijn.be/stops/107905", "https://data.delijn.be/stops/108435"], ["https://data.delijn.be/stops/102166", "https://data.delijn.be/stops/104396"], ["https://data.delijn.be/stops/503711", "https://data.delijn.be/stops/503734"], ["https://data.delijn.be/stops/501004", "https://data.delijn.be/stops/505403"], ["https://data.delijn.be/stops/400040", "https://data.delijn.be/stops/400253"], ["https://data.delijn.be/stops/303094", "https://data.delijn.be/stops/303098"], ["https://data.delijn.be/stops/202861", "https://data.delijn.be/stops/208700"], ["https://data.delijn.be/stops/405022", "https://data.delijn.be/stops/405071"], ["https://data.delijn.be/stops/305544", "https://data.delijn.be/stops/305546"], ["https://data.delijn.be/stops/205989", "https://data.delijn.be/stops/208556"], ["https://data.delijn.be/stops/506010", "https://data.delijn.be/stops/506505"], ["https://data.delijn.be/stops/206061", "https://data.delijn.be/stops/207519"], ["https://data.delijn.be/stops/109510", "https://data.delijn.be/stops/109512"], ["https://data.delijn.be/stops/102470", "https://data.delijn.be/stops/103650"], ["https://data.delijn.be/stops/102945", "https://data.delijn.be/stops/105065"], ["https://data.delijn.be/stops/303242", "https://data.delijn.be/stops/303243"], ["https://data.delijn.be/stops/207515", "https://data.delijn.be/stops/207851"], ["https://data.delijn.be/stops/101860", "https://data.delijn.be/stops/104980"], ["https://data.delijn.be/stops/308223", "https://data.delijn.be/stops/308289"], ["https://data.delijn.be/stops/208273", "https://data.delijn.be/stops/209273"], ["https://data.delijn.be/stops/200554", "https://data.delijn.be/stops/201670"], ["https://data.delijn.be/stops/301346", "https://data.delijn.be/stops/301347"], ["https://data.delijn.be/stops/205319", "https://data.delijn.be/stops/205320"], ["https://data.delijn.be/stops/508650", "https://data.delijn.be/stops/509767"], ["https://data.delijn.be/stops/104559", "https://data.delijn.be/stops/107481"], ["https://data.delijn.be/stops/106105", "https://data.delijn.be/stops/106166"], ["https://data.delijn.be/stops/206897", "https://data.delijn.be/stops/207897"], ["https://data.delijn.be/stops/108972", "https://data.delijn.be/stops/109692"], ["https://data.delijn.be/stops/204730", "https://data.delijn.be/stops/205731"], ["https://data.delijn.be/stops/102725", "https://data.delijn.be/stops/103002"], ["https://data.delijn.be/stops/300673", "https://data.delijn.be/stops/308977"], ["https://data.delijn.be/stops/201747", "https://data.delijn.be/stops/202159"], ["https://data.delijn.be/stops/502068", "https://data.delijn.be/stops/507068"], ["https://data.delijn.be/stops/103718", "https://data.delijn.be/stops/109733"], ["https://data.delijn.be/stops/502736", "https://data.delijn.be/stops/507118"], ["https://data.delijn.be/stops/203949", "https://data.delijn.be/stops/203962"], ["https://data.delijn.be/stops/502369", "https://data.delijn.be/stops/505437"], ["https://data.delijn.be/stops/101722", "https://data.delijn.be/stops/101723"], ["https://data.delijn.be/stops/307316", "https://data.delijn.be/stops/307317"], ["https://data.delijn.be/stops/208792", "https://data.delijn.be/stops/208793"], ["https://data.delijn.be/stops/401724", "https://data.delijn.be/stops/405460"], ["https://data.delijn.be/stops/204734", "https://data.delijn.be/stops/204735"], ["https://data.delijn.be/stops/502427", "https://data.delijn.be/stops/507439"], ["https://data.delijn.be/stops/502127", "https://data.delijn.be/stops/502584"], ["https://data.delijn.be/stops/102235", "https://data.delijn.be/stops/104785"], ["https://data.delijn.be/stops/106329", "https://data.delijn.be/stops/109390"], ["https://data.delijn.be/stops/101372", "https://data.delijn.be/stops/101406"], ["https://data.delijn.be/stops/307939", "https://data.delijn.be/stops/308777"], ["https://data.delijn.be/stops/103223", "https://data.delijn.be/stops/105385"], ["https://data.delijn.be/stops/103715", "https://data.delijn.be/stops/104140"], ["https://data.delijn.be/stops/201509", "https://data.delijn.be/stops/202358"], ["https://data.delijn.be/stops/304689", "https://data.delijn.be/stops/306685"], ["https://data.delijn.be/stops/204241", "https://data.delijn.be/stops/204345"], ["https://data.delijn.be/stops/301282", "https://data.delijn.be/stops/301908"], ["https://data.delijn.be/stops/200345", "https://data.delijn.be/stops/201380"], ["https://data.delijn.be/stops/300797", "https://data.delijn.be/stops/304775"], ["https://data.delijn.be/stops/500601", "https://data.delijn.be/stops/501535"], ["https://data.delijn.be/stops/304020", "https://data.delijn.be/stops/304031"], ["https://data.delijn.be/stops/406571", "https://data.delijn.be/stops/406574"], ["https://data.delijn.be/stops/300421", "https://data.delijn.be/stops/300422"], ["https://data.delijn.be/stops/201704", "https://data.delijn.be/stops/202602"], ["https://data.delijn.be/stops/204066", "https://data.delijn.be/stops/204072"], ["https://data.delijn.be/stops/204769", "https://data.delijn.be/stops/205403"], ["https://data.delijn.be/stops/105380", "https://data.delijn.be/stops/108490"], ["https://data.delijn.be/stops/502074", "https://data.delijn.be/stops/507073"], ["https://data.delijn.be/stops/304619", "https://data.delijn.be/stops/304621"], ["https://data.delijn.be/stops/103130", "https://data.delijn.be/stops/104905"], ["https://data.delijn.be/stops/407234", "https://data.delijn.be/stops/407508"], ["https://data.delijn.be/stops/108087", "https://data.delijn.be/stops/108088"], ["https://data.delijn.be/stops/404653", "https://data.delijn.be/stops/404677"], ["https://data.delijn.be/stops/206646", "https://data.delijn.be/stops/207488"], ["https://data.delijn.be/stops/406904", "https://data.delijn.be/stops/406905"], ["https://data.delijn.be/stops/404465", "https://data.delijn.be/stops/404505"], ["https://data.delijn.be/stops/101851", "https://data.delijn.be/stops/107231"], ["https://data.delijn.be/stops/302296", "https://data.delijn.be/stops/302299"], ["https://data.delijn.be/stops/400304", "https://data.delijn.be/stops/400958"], ["https://data.delijn.be/stops/105496", "https://data.delijn.be/stops/105504"], ["https://data.delijn.be/stops/208419", "https://data.delijn.be/stops/209386"], ["https://data.delijn.be/stops/405808", "https://data.delijn.be/stops/409692"], ["https://data.delijn.be/stops/402173", "https://data.delijn.be/stops/402484"], ["https://data.delijn.be/stops/105357", "https://data.delijn.be/stops/105608"], ["https://data.delijn.be/stops/202575", "https://data.delijn.be/stops/202576"], ["https://data.delijn.be/stops/106379", "https://data.delijn.be/stops/106380"], ["https://data.delijn.be/stops/101939", "https://data.delijn.be/stops/103751"], ["https://data.delijn.be/stops/200408", "https://data.delijn.be/stops/200436"], ["https://data.delijn.be/stops/503190", "https://data.delijn.be/stops/509746"], ["https://data.delijn.be/stops/204014", "https://data.delijn.be/stops/205686"], ["https://data.delijn.be/stops/407256", "https://data.delijn.be/stops/409492"], ["https://data.delijn.be/stops/206855", "https://data.delijn.be/stops/207855"], ["https://data.delijn.be/stops/504841", "https://data.delijn.be/stops/508263"], ["https://data.delijn.be/stops/103731", "https://data.delijn.be/stops/106219"], ["https://data.delijn.be/stops/200433", "https://data.delijn.be/stops/201433"], ["https://data.delijn.be/stops/404762", "https://data.delijn.be/stops/404811"], ["https://data.delijn.be/stops/404118", "https://data.delijn.be/stops/404171"], ["https://data.delijn.be/stops/300811", "https://data.delijn.be/stops/300831"], ["https://data.delijn.be/stops/203362", "https://data.delijn.be/stops/203990"], ["https://data.delijn.be/stops/302199", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/302885", "https://data.delijn.be/stops/303079"], ["https://data.delijn.be/stops/206420", "https://data.delijn.be/stops/306731"], ["https://data.delijn.be/stops/200272", "https://data.delijn.be/stops/201272"], ["https://data.delijn.be/stops/304549", "https://data.delijn.be/stops/309669"], ["https://data.delijn.be/stops/508717", "https://data.delijn.be/stops/508726"], ["https://data.delijn.be/stops/205367", "https://data.delijn.be/stops/214012"], ["https://data.delijn.be/stops/206430", "https://data.delijn.be/stops/209692"], ["https://data.delijn.be/stops/300525", "https://data.delijn.be/stops/303264"], ["https://data.delijn.be/stops/502596", "https://data.delijn.be/stops/505724"], ["https://data.delijn.be/stops/204409", "https://data.delijn.be/stops/204410"], ["https://data.delijn.be/stops/505285", "https://data.delijn.be/stops/505816"], ["https://data.delijn.be/stops/208368", "https://data.delijn.be/stops/209193"], ["https://data.delijn.be/stops/402002", "https://data.delijn.be/stops/406143"], ["https://data.delijn.be/stops/300862", "https://data.delijn.be/stops/301057"], ["https://data.delijn.be/stops/408492", "https://data.delijn.be/stops/408951"], ["https://data.delijn.be/stops/304352", "https://data.delijn.be/stops/304358"], ["https://data.delijn.be/stops/302822", "https://data.delijn.be/stops/302823"], ["https://data.delijn.be/stops/402888", "https://data.delijn.be/stops/402890"], ["https://data.delijn.be/stops/300748", "https://data.delijn.be/stops/303223"], ["https://data.delijn.be/stops/109391", "https://data.delijn.be/stops/405883"], ["https://data.delijn.be/stops/302400", "https://data.delijn.be/stops/302401"], ["https://data.delijn.be/stops/107224", "https://data.delijn.be/stops/107225"], ["https://data.delijn.be/stops/308450", "https://data.delijn.be/stops/308451"], ["https://data.delijn.be/stops/508191", "https://data.delijn.be/stops/508193"], ["https://data.delijn.be/stops/204111", "https://data.delijn.be/stops/204685"], ["https://data.delijn.be/stops/202872", "https://data.delijn.be/stops/204975"], ["https://data.delijn.be/stops/303668", "https://data.delijn.be/stops/308902"], ["https://data.delijn.be/stops/301725", "https://data.delijn.be/stops/308430"], ["https://data.delijn.be/stops/409416", "https://data.delijn.be/stops/409418"], ["https://data.delijn.be/stops/305220", "https://data.delijn.be/stops/305991"], ["https://data.delijn.be/stops/504025", "https://data.delijn.be/stops/508996"], ["https://data.delijn.be/stops/401287", "https://data.delijn.be/stops/401326"], ["https://data.delijn.be/stops/300815", "https://data.delijn.be/stops/300816"], ["https://data.delijn.be/stops/303645", "https://data.delijn.be/stops/305559"], ["https://data.delijn.be/stops/308214", "https://data.delijn.be/stops/308233"], ["https://data.delijn.be/stops/406578", "https://data.delijn.be/stops/410202"], ["https://data.delijn.be/stops/400718", "https://data.delijn.be/stops/407120"], ["https://data.delijn.be/stops/400705", "https://data.delijn.be/stops/401919"], ["https://data.delijn.be/stops/303273", "https://data.delijn.be/stops/303276"], ["https://data.delijn.be/stops/206323", "https://data.delijn.be/stops/207484"], ["https://data.delijn.be/stops/303638", "https://data.delijn.be/stops/304521"], ["https://data.delijn.be/stops/101047", "https://data.delijn.be/stops/105988"], ["https://data.delijn.be/stops/302303", "https://data.delijn.be/stops/302307"], ["https://data.delijn.be/stops/401432", "https://data.delijn.be/stops/401494"], ["https://data.delijn.be/stops/303546", "https://data.delijn.be/stops/303548"], ["https://data.delijn.be/stops/407588", "https://data.delijn.be/stops/407680"], ["https://data.delijn.be/stops/203085", "https://data.delijn.be/stops/203086"], ["https://data.delijn.be/stops/201412", "https://data.delijn.be/stops/203360"], ["https://data.delijn.be/stops/104884", "https://data.delijn.be/stops/205629"], ["https://data.delijn.be/stops/104625", "https://data.delijn.be/stops/104890"], ["https://data.delijn.be/stops/301971", "https://data.delijn.be/stops/301998"], ["https://data.delijn.be/stops/304173", "https://data.delijn.be/stops/304174"], ["https://data.delijn.be/stops/218008", "https://data.delijn.be/stops/218009"], ["https://data.delijn.be/stops/501487", "https://data.delijn.be/stops/506733"], ["https://data.delijn.be/stops/502140", "https://data.delijn.be/stops/502643"], ["https://data.delijn.be/stops/400267", "https://data.delijn.be/stops/408363"], ["https://data.delijn.be/stops/404642", "https://data.delijn.be/stops/404996"], ["https://data.delijn.be/stops/406668", "https://data.delijn.be/stops/406987"], ["https://data.delijn.be/stops/108301", "https://data.delijn.be/stops/109305"], ["https://data.delijn.be/stops/405146", "https://data.delijn.be/stops/405287"], ["https://data.delijn.be/stops/300006", "https://data.delijn.be/stops/300007"], ["https://data.delijn.be/stops/505640", "https://data.delijn.be/stops/508964"], ["https://data.delijn.be/stops/504018", "https://data.delijn.be/stops/504507"], ["https://data.delijn.be/stops/200062", "https://data.delijn.be/stops/201444"], ["https://data.delijn.be/stops/509484", "https://data.delijn.be/stops/509487"], ["https://data.delijn.be/stops/300962", "https://data.delijn.be/stops/301156"], ["https://data.delijn.be/stops/204292", "https://data.delijn.be/stops/204547"], ["https://data.delijn.be/stops/302379", "https://data.delijn.be/stops/307842"], ["https://data.delijn.be/stops/408497", "https://data.delijn.be/stops/408609"], ["https://data.delijn.be/stops/406033", "https://data.delijn.be/stops/406081"], ["https://data.delijn.be/stops/400036", "https://data.delijn.be/stops/400318"], ["https://data.delijn.be/stops/305226", "https://data.delijn.be/stops/305281"], ["https://data.delijn.be/stops/502282", "https://data.delijn.be/stops/505338"], ["https://data.delijn.be/stops/406046", "https://data.delijn.be/stops/406047"], ["https://data.delijn.be/stops/106139", "https://data.delijn.be/stops/106141"], ["https://data.delijn.be/stops/200512", "https://data.delijn.be/stops/201513"], ["https://data.delijn.be/stops/502681", "https://data.delijn.be/stops/507084"], ["https://data.delijn.be/stops/301368", "https://data.delijn.be/stops/306135"], ["https://data.delijn.be/stops/106022", "https://data.delijn.be/stops/106191"], ["https://data.delijn.be/stops/101061", "https://data.delijn.be/stops/106750"], ["https://data.delijn.be/stops/503995", "https://data.delijn.be/stops/508409"], ["https://data.delijn.be/stops/108071", "https://data.delijn.be/stops/108461"], ["https://data.delijn.be/stops/400792", "https://data.delijn.be/stops/409545"], ["https://data.delijn.be/stops/206756", "https://data.delijn.be/stops/207849"], ["https://data.delijn.be/stops/504584", "https://data.delijn.be/stops/509588"], ["https://data.delijn.be/stops/305773", "https://data.delijn.be/stops/305774"], ["https://data.delijn.be/stops/405372", "https://data.delijn.be/stops/405385"], ["https://data.delijn.be/stops/504422", "https://data.delijn.be/stops/509422"], ["https://data.delijn.be/stops/102491", "https://data.delijn.be/stops/400042"], ["https://data.delijn.be/stops/106083", "https://data.delijn.be/stops/106135"], ["https://data.delijn.be/stops/505338", "https://data.delijn.be/stops/505560"], ["https://data.delijn.be/stops/109108", "https://data.delijn.be/stops/109109"], ["https://data.delijn.be/stops/201933", "https://data.delijn.be/stops/207569"], ["https://data.delijn.be/stops/503985", "https://data.delijn.be/stops/507709"], ["https://data.delijn.be/stops/200842", "https://data.delijn.be/stops/202308"], ["https://data.delijn.be/stops/201670", "https://data.delijn.be/stops/203321"], ["https://data.delijn.be/stops/301716", "https://data.delijn.be/stops/308876"], ["https://data.delijn.be/stops/206048", "https://data.delijn.be/stops/206049"], ["https://data.delijn.be/stops/204595", "https://data.delijn.be/stops/204799"], ["https://data.delijn.be/stops/401085", "https://data.delijn.be/stops/409058"], ["https://data.delijn.be/stops/301842", "https://data.delijn.be/stops/301847"], ["https://data.delijn.be/stops/509512", "https://data.delijn.be/stops/509947"], ["https://data.delijn.be/stops/403134", "https://data.delijn.be/stops/410351"], ["https://data.delijn.be/stops/404767", "https://data.delijn.be/stops/404791"], ["https://data.delijn.be/stops/404729", "https://data.delijn.be/stops/404801"], ["https://data.delijn.be/stops/403599", "https://data.delijn.be/stops/408482"], ["https://data.delijn.be/stops/204681", "https://data.delijn.be/stops/205680"], ["https://data.delijn.be/stops/207710", "https://data.delijn.be/stops/304080"], ["https://data.delijn.be/stops/301462", "https://data.delijn.be/stops/308071"], ["https://data.delijn.be/stops/301027", "https://data.delijn.be/stops/301035"], ["https://data.delijn.be/stops/301502", "https://data.delijn.be/stops/301509"], ["https://data.delijn.be/stops/300366", "https://data.delijn.be/stops/307720"], ["https://data.delijn.be/stops/202588", "https://data.delijn.be/stops/203435"], ["https://data.delijn.be/stops/501119", "https://data.delijn.be/stops/506125"], ["https://data.delijn.be/stops/107229", "https://data.delijn.be/stops/107231"], ["https://data.delijn.be/stops/202743", "https://data.delijn.be/stops/208713"], ["https://data.delijn.be/stops/404227", "https://data.delijn.be/stops/404409"], ["https://data.delijn.be/stops/200433", "https://data.delijn.be/stops/201549"], ["https://data.delijn.be/stops/404081", "https://data.delijn.be/stops/404084"], ["https://data.delijn.be/stops/108650", "https://data.delijn.be/stops/108950"], ["https://data.delijn.be/stops/404494", "https://data.delijn.be/stops/405623"], ["https://data.delijn.be/stops/305654", "https://data.delijn.be/stops/305656"], ["https://data.delijn.be/stops/304226", "https://data.delijn.be/stops/307064"], ["https://data.delijn.be/stops/201850", "https://data.delijn.be/stops/203015"], ["https://data.delijn.be/stops/206616", "https://data.delijn.be/stops/206681"], ["https://data.delijn.be/stops/503374", "https://data.delijn.be/stops/503380"], ["https://data.delijn.be/stops/302313", "https://data.delijn.be/stops/302318"], ["https://data.delijn.be/stops/304070", "https://data.delijn.be/stops/304113"], ["https://data.delijn.be/stops/102648", "https://data.delijn.be/stops/102657"], ["https://data.delijn.be/stops/201165", "https://data.delijn.be/stops/202174"], ["https://data.delijn.be/stops/304248", "https://data.delijn.be/stops/306826"], ["https://data.delijn.be/stops/204585", "https://data.delijn.be/stops/204594"], ["https://data.delijn.be/stops/206429", "https://data.delijn.be/stops/208752"], ["https://data.delijn.be/stops/306707", "https://data.delijn.be/stops/306713"], ["https://data.delijn.be/stops/300134", "https://data.delijn.be/stops/300144"], ["https://data.delijn.be/stops/109576", "https://data.delijn.be/stops/109578"], ["https://data.delijn.be/stops/503118", "https://data.delijn.be/stops/508121"], ["https://data.delijn.be/stops/209085", "https://data.delijn.be/stops/209696"], ["https://data.delijn.be/stops/101292", "https://data.delijn.be/stops/105396"], ["https://data.delijn.be/stops/405158", "https://data.delijn.be/stops/405231"], ["https://data.delijn.be/stops/306371", "https://data.delijn.be/stops/306972"], ["https://data.delijn.be/stops/301271", "https://data.delijn.be/stops/301278"], ["https://data.delijn.be/stops/307724", "https://data.delijn.be/stops/307726"], ["https://data.delijn.be/stops/106699", "https://data.delijn.be/stops/106701"], ["https://data.delijn.be/stops/505568", "https://data.delijn.be/stops/508797"], ["https://data.delijn.be/stops/203003", "https://data.delijn.be/stops/203023"], ["https://data.delijn.be/stops/105481", "https://data.delijn.be/stops/105482"], ["https://data.delijn.be/stops/505996", "https://data.delijn.be/stops/509936"], ["https://data.delijn.be/stops/406527", "https://data.delijn.be/stops/409260"], ["https://data.delijn.be/stops/107173", "https://data.delijn.be/stops/107176"], ["https://data.delijn.be/stops/400765", "https://data.delijn.be/stops/400773"], ["https://data.delijn.be/stops/206005", "https://data.delijn.be/stops/207007"], ["https://data.delijn.be/stops/301944", "https://data.delijn.be/stops/307792"], ["https://data.delijn.be/stops/400093", "https://data.delijn.be/stops/400165"], ["https://data.delijn.be/stops/503907", "https://data.delijn.be/stops/508907"], ["https://data.delijn.be/stops/302995", "https://data.delijn.be/stops/303142"], ["https://data.delijn.be/stops/507385", "https://data.delijn.be/stops/507670"], ["https://data.delijn.be/stops/204449", "https://data.delijn.be/stops/205311"], ["https://data.delijn.be/stops/101001", "https://data.delijn.be/stops/105671"], ["https://data.delijn.be/stops/408612", "https://data.delijn.be/stops/408750"], ["https://data.delijn.be/stops/400583", "https://data.delijn.be/stops/400624"], ["https://data.delijn.be/stops/502485", "https://data.delijn.be/stops/505340"], ["https://data.delijn.be/stops/200026", "https://data.delijn.be/stops/201447"], ["https://data.delijn.be/stops/104018", "https://data.delijn.be/stops/104019"], ["https://data.delijn.be/stops/204641", "https://data.delijn.be/stops/205641"], ["https://data.delijn.be/stops/200214", "https://data.delijn.be/stops/203546"], ["https://data.delijn.be/stops/405458", "https://data.delijn.be/stops/405459"], ["https://data.delijn.be/stops/200507", "https://data.delijn.be/stops/201406"], ["https://data.delijn.be/stops/300821", "https://data.delijn.be/stops/300876"], ["https://data.delijn.be/stops/303021", "https://data.delijn.be/stops/303022"], ["https://data.delijn.be/stops/103267", "https://data.delijn.be/stops/103268"], ["https://data.delijn.be/stops/203451", "https://data.delijn.be/stops/210095"], ["https://data.delijn.be/stops/504864", "https://data.delijn.be/stops/505629"], ["https://data.delijn.be/stops/406204", "https://data.delijn.be/stops/406295"], ["https://data.delijn.be/stops/508648", "https://data.delijn.be/stops/508949"], ["https://data.delijn.be/stops/408973", "https://data.delijn.be/stops/408976"], ["https://data.delijn.be/stops/302346", "https://data.delijn.be/stops/302347"], ["https://data.delijn.be/stops/505438", "https://data.delijn.be/stops/507288"], ["https://data.delijn.be/stops/303652", "https://data.delijn.be/stops/308956"], ["https://data.delijn.be/stops/202531", "https://data.delijn.be/stops/203531"], ["https://data.delijn.be/stops/105236", "https://data.delijn.be/stops/105238"], ["https://data.delijn.be/stops/207680", "https://data.delijn.be/stops/208142"], ["https://data.delijn.be/stops/302846", "https://data.delijn.be/stops/303326"], ["https://data.delijn.be/stops/403109", "https://data.delijn.be/stops/403176"], ["https://data.delijn.be/stops/306900", "https://data.delijn.be/stops/308095"], ["https://data.delijn.be/stops/502643", "https://data.delijn.be/stops/502729"], ["https://data.delijn.be/stops/204609", "https://data.delijn.be/stops/205610"], ["https://data.delijn.be/stops/405208", "https://data.delijn.be/stops/405209"], ["https://data.delijn.be/stops/502565", "https://data.delijn.be/stops/502582"], ["https://data.delijn.be/stops/300367", "https://data.delijn.be/stops/300369"], ["https://data.delijn.be/stops/407802", "https://data.delijn.be/stops/407852"], ["https://data.delijn.be/stops/401345", "https://data.delijn.be/stops/404777"], ["https://data.delijn.be/stops/400577", "https://data.delijn.be/stops/404136"], ["https://data.delijn.be/stops/308213", "https://data.delijn.be/stops/308216"], ["https://data.delijn.be/stops/409264", "https://data.delijn.be/stops/409284"], ["https://data.delijn.be/stops/200103", "https://data.delijn.be/stops/211001"], ["https://data.delijn.be/stops/301675", "https://data.delijn.be/stops/301688"], ["https://data.delijn.be/stops/104898", "https://data.delijn.be/stops/108957"], ["https://data.delijn.be/stops/503929", "https://data.delijn.be/stops/508918"], ["https://data.delijn.be/stops/303136", "https://data.delijn.be/stops/308757"], ["https://data.delijn.be/stops/302467", "https://data.delijn.be/stops/306744"], ["https://data.delijn.be/stops/407724", "https://data.delijn.be/stops/409779"], ["https://data.delijn.be/stops/105689", "https://data.delijn.be/stops/105690"], ["https://data.delijn.be/stops/300780", "https://data.delijn.be/stops/300833"], ["https://data.delijn.be/stops/303428", "https://data.delijn.be/stops/307951"], ["https://data.delijn.be/stops/102818", "https://data.delijn.be/stops/102822"], ["https://data.delijn.be/stops/304481", "https://data.delijn.be/stops/304483"], ["https://data.delijn.be/stops/103545", "https://data.delijn.be/stops/104660"], ["https://data.delijn.be/stops/503372", "https://data.delijn.be/stops/503416"], ["https://data.delijn.be/stops/202419", "https://data.delijn.be/stops/203419"], ["https://data.delijn.be/stops/401845", "https://data.delijn.be/stops/406347"], ["https://data.delijn.be/stops/503362", "https://data.delijn.be/stops/503694"], ["https://data.delijn.be/stops/200114", "https://data.delijn.be/stops/202059"], ["https://data.delijn.be/stops/301459", "https://data.delijn.be/stops/305665"], ["https://data.delijn.be/stops/206241", "https://data.delijn.be/stops/206406"], ["https://data.delijn.be/stops/106629", "https://data.delijn.be/stops/106630"], ["https://data.delijn.be/stops/202792", "https://data.delijn.be/stops/202793"], ["https://data.delijn.be/stops/503886", "https://data.delijn.be/stops/508116"], ["https://data.delijn.be/stops/200246", "https://data.delijn.be/stops/201246"], ["https://data.delijn.be/stops/105433", "https://data.delijn.be/stops/109839"], ["https://data.delijn.be/stops/204061", "https://data.delijn.be/stops/205322"], ["https://data.delijn.be/stops/404636", "https://data.delijn.be/stops/406962"], ["https://data.delijn.be/stops/305722", "https://data.delijn.be/stops/305724"], ["https://data.delijn.be/stops/404108", "https://data.delijn.be/stops/404204"], ["https://data.delijn.be/stops/200093", "https://data.delijn.be/stops/201094"], ["https://data.delijn.be/stops/204752", "https://data.delijn.be/stops/205106"], ["https://data.delijn.be/stops/303536", "https://data.delijn.be/stops/303877"], ["https://data.delijn.be/stops/303653", "https://data.delijn.be/stops/308528"], ["https://data.delijn.be/stops/200873", "https://data.delijn.be/stops/202310"], ["https://data.delijn.be/stops/402080", "https://data.delijn.be/stops/402447"], ["https://data.delijn.be/stops/101683", "https://data.delijn.be/stops/103696"], ["https://data.delijn.be/stops/505558", "https://data.delijn.be/stops/507266"], ["https://data.delijn.be/stops/201863", "https://data.delijn.be/stops/202298"], ["https://data.delijn.be/stops/402577", "https://data.delijn.be/stops/402580"], ["https://data.delijn.be/stops/211011", "https://data.delijn.be/stops/507276"], ["https://data.delijn.be/stops/502721", "https://data.delijn.be/stops/507645"], ["https://data.delijn.be/stops/202267", "https://data.delijn.be/stops/202268"], ["https://data.delijn.be/stops/106085", "https://data.delijn.be/stops/106086"], ["https://data.delijn.be/stops/305594", "https://data.delijn.be/stops/305608"], ["https://data.delijn.be/stops/200661", "https://data.delijn.be/stops/200675"], ["https://data.delijn.be/stops/306154", "https://data.delijn.be/stops/306155"], ["https://data.delijn.be/stops/305104", "https://data.delijn.be/stops/305126"], ["https://data.delijn.be/stops/202044", "https://data.delijn.be/stops/210122"], ["https://data.delijn.be/stops/206043", "https://data.delijn.be/stops/207538"], ["https://data.delijn.be/stops/201412", "https://data.delijn.be/stops/201453"], ["https://data.delijn.be/stops/501538", "https://data.delijn.be/stops/502719"], ["https://data.delijn.be/stops/205654", "https://data.delijn.be/stops/214001"], ["https://data.delijn.be/stops/403064", "https://data.delijn.be/stops/403121"], ["https://data.delijn.be/stops/301919", "https://data.delijn.be/stops/303178"], ["https://data.delijn.be/stops/205708", "https://data.delijn.be/stops/205709"], ["https://data.delijn.be/stops/507942", "https://data.delijn.be/stops/507943"], ["https://data.delijn.be/stops/101933", "https://data.delijn.be/stops/101934"], ["https://data.delijn.be/stops/208625", "https://data.delijn.be/stops/219020"], ["https://data.delijn.be/stops/303385", "https://data.delijn.be/stops/303386"], ["https://data.delijn.be/stops/201352", "https://data.delijn.be/stops/201573"], ["https://data.delijn.be/stops/305305", "https://data.delijn.be/stops/305324"], ["https://data.delijn.be/stops/105552", "https://data.delijn.be/stops/105553"], ["https://data.delijn.be/stops/408710", "https://data.delijn.be/stops/408714"], ["https://data.delijn.be/stops/500874", "https://data.delijn.be/stops/505798"], ["https://data.delijn.be/stops/101783", "https://data.delijn.be/stops/107875"], ["https://data.delijn.be/stops/200047", "https://data.delijn.be/stops/200141"], ["https://data.delijn.be/stops/101865", "https://data.delijn.be/stops/105445"], ["https://data.delijn.be/stops/301045", "https://data.delijn.be/stops/306688"], ["https://data.delijn.be/stops/106456", "https://data.delijn.be/stops/106457"], ["https://data.delijn.be/stops/102725", "https://data.delijn.be/stops/105176"], ["https://data.delijn.be/stops/501662", "https://data.delijn.be/stops/501732"], ["https://data.delijn.be/stops/405025", "https://data.delijn.be/stops/405091"], ["https://data.delijn.be/stops/505937", "https://data.delijn.be/stops/505999"], ["https://data.delijn.be/stops/201757", "https://data.delijn.be/stops/201782"], ["https://data.delijn.be/stops/302162", "https://data.delijn.be/stops/307805"], ["https://data.delijn.be/stops/305426", "https://data.delijn.be/stops/305434"], ["https://data.delijn.be/stops/505157", "https://data.delijn.be/stops/505945"], ["https://data.delijn.be/stops/108297", "https://data.delijn.be/stops/108299"], ["https://data.delijn.be/stops/208554", "https://data.delijn.be/stops/209552"], ["https://data.delijn.be/stops/404918", "https://data.delijn.be/stops/404919"], ["https://data.delijn.be/stops/200645", "https://data.delijn.be/stops/203777"], ["https://data.delijn.be/stops/302080", "https://data.delijn.be/stops/302081"], ["https://data.delijn.be/stops/305118", "https://data.delijn.be/stops/305123"], ["https://data.delijn.be/stops/106280", "https://data.delijn.be/stops/106343"], ["https://data.delijn.be/stops/201584", "https://data.delijn.be/stops/204920"], ["https://data.delijn.be/stops/502411", "https://data.delijn.be/stops/507385"], ["https://data.delijn.be/stops/200188", "https://data.delijn.be/stops/201188"], ["https://data.delijn.be/stops/302890", "https://data.delijn.be/stops/302894"], ["https://data.delijn.be/stops/104466", "https://data.delijn.be/stops/107956"], ["https://data.delijn.be/stops/401766", "https://data.delijn.be/stops/401832"], ["https://data.delijn.be/stops/108242", "https://data.delijn.be/stops/108243"], ["https://data.delijn.be/stops/102832", "https://data.delijn.be/stops/108920"], ["https://data.delijn.be/stops/204057", "https://data.delijn.be/stops/205725"], ["https://data.delijn.be/stops/303619", "https://data.delijn.be/stops/303621"], ["https://data.delijn.be/stops/400352", "https://data.delijn.be/stops/400404"], ["https://data.delijn.be/stops/305066", "https://data.delijn.be/stops/305074"], ["https://data.delijn.be/stops/508192", "https://data.delijn.be/stops/508205"], ["https://data.delijn.be/stops/400934", "https://data.delijn.be/stops/400935"], ["https://data.delijn.be/stops/103737", "https://data.delijn.be/stops/109462"], ["https://data.delijn.be/stops/306729", "https://data.delijn.be/stops/306730"], ["https://data.delijn.be/stops/104469", "https://data.delijn.be/stops/104573"], ["https://data.delijn.be/stops/105897", "https://data.delijn.be/stops/105934"], ["https://data.delijn.be/stops/105592", "https://data.delijn.be/stops/105594"], ["https://data.delijn.be/stops/507036", "https://data.delijn.be/stops/507308"], ["https://data.delijn.be/stops/306254", "https://data.delijn.be/stops/306256"], ["https://data.delijn.be/stops/404101", "https://data.delijn.be/stops/404102"], ["https://data.delijn.be/stops/208343", "https://data.delijn.be/stops/209343"], ["https://data.delijn.be/stops/307255", "https://data.delijn.be/stops/307467"], ["https://data.delijn.be/stops/206041", "https://data.delijn.be/stops/207297"], ["https://data.delijn.be/stops/504718", "https://data.delijn.be/stops/509718"], ["https://data.delijn.be/stops/105744", "https://data.delijn.be/stops/109833"], ["https://data.delijn.be/stops/403140", "https://data.delijn.be/stops/403215"], ["https://data.delijn.be/stops/109143", "https://data.delijn.be/stops/109146"], ["https://data.delijn.be/stops/208152", "https://data.delijn.be/stops/208660"], ["https://data.delijn.be/stops/404524", "https://data.delijn.be/stops/407237"], ["https://data.delijn.be/stops/503302", "https://data.delijn.be/stops/503307"], ["https://data.delijn.be/stops/404708", "https://data.delijn.be/stops/404789"], ["https://data.delijn.be/stops/306260", "https://data.delijn.be/stops/306301"], ["https://data.delijn.be/stops/103238", "https://data.delijn.be/stops/107854"], ["https://data.delijn.be/stops/208584", "https://data.delijn.be/stops/209584"], ["https://data.delijn.be/stops/106266", "https://data.delijn.be/stops/106272"], ["https://data.delijn.be/stops/205999", "https://data.delijn.be/stops/206012"], ["https://data.delijn.be/stops/206858", "https://data.delijn.be/stops/207858"], ["https://data.delijn.be/stops/302297", "https://data.delijn.be/stops/303298"], ["https://data.delijn.be/stops/301596", "https://data.delijn.be/stops/301597"], ["https://data.delijn.be/stops/206702", "https://data.delijn.be/stops/206731"], ["https://data.delijn.be/stops/403912", "https://data.delijn.be/stops/403913"], ["https://data.delijn.be/stops/200142", "https://data.delijn.be/stops/211094"], ["https://data.delijn.be/stops/301189", "https://data.delijn.be/stops/301191"], ["https://data.delijn.be/stops/300631", "https://data.delijn.be/stops/304132"], ["https://data.delijn.be/stops/206276", "https://data.delijn.be/stops/207962"], ["https://data.delijn.be/stops/107887", "https://data.delijn.be/stops/107889"], ["https://data.delijn.be/stops/305688", "https://data.delijn.be/stops/305711"], ["https://data.delijn.be/stops/503021", "https://data.delijn.be/stops/505285"], ["https://data.delijn.be/stops/201279", "https://data.delijn.be/stops/208736"], ["https://data.delijn.be/stops/201489", "https://data.delijn.be/stops/201490"], ["https://data.delijn.be/stops/206606", "https://data.delijn.be/stops/206702"], ["https://data.delijn.be/stops/401112", "https://data.delijn.be/stops/401129"], ["https://data.delijn.be/stops/404861", "https://data.delijn.be/stops/404863"], ["https://data.delijn.be/stops/107907", "https://data.delijn.be/stops/107909"], ["https://data.delijn.be/stops/403932", "https://data.delijn.be/stops/403939"], ["https://data.delijn.be/stops/405706", "https://data.delijn.be/stops/405741"], ["https://data.delijn.be/stops/202188", "https://data.delijn.be/stops/203188"], ["https://data.delijn.be/stops/204755", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/504654", "https://data.delijn.be/stops/509237"], ["https://data.delijn.be/stops/406231", "https://data.delijn.be/stops/406236"], ["https://data.delijn.be/stops/503836", "https://data.delijn.be/stops/508836"], ["https://data.delijn.be/stops/303878", "https://data.delijn.be/stops/303879"], ["https://data.delijn.be/stops/308236", "https://data.delijn.be/stops/308237"], ["https://data.delijn.be/stops/109083", "https://data.delijn.be/stops/109086"], ["https://data.delijn.be/stops/104284", "https://data.delijn.be/stops/105902"], ["https://data.delijn.be/stops/201518", "https://data.delijn.be/stops/205924"], ["https://data.delijn.be/stops/504299", "https://data.delijn.be/stops/509317"], ["https://data.delijn.be/stops/401373", "https://data.delijn.be/stops/401377"], ["https://data.delijn.be/stops/208393", "https://data.delijn.be/stops/208394"], ["https://data.delijn.be/stops/401401", "https://data.delijn.be/stops/301037"], ["https://data.delijn.be/stops/301097", "https://data.delijn.be/stops/306678"], ["https://data.delijn.be/stops/204031", "https://data.delijn.be/stops/205029"], ["https://data.delijn.be/stops/103318", "https://data.delijn.be/stops/107185"], ["https://data.delijn.be/stops/503925", "https://data.delijn.be/stops/508915"], ["https://data.delijn.be/stops/202369", "https://data.delijn.be/stops/203368"], ["https://data.delijn.be/stops/206381", "https://data.delijn.be/stops/207382"], ["https://data.delijn.be/stops/504244", "https://data.delijn.be/stops/504596"], ["https://data.delijn.be/stops/101456", "https://data.delijn.be/stops/102623"], ["https://data.delijn.be/stops/504546", "https://data.delijn.be/stops/504549"], ["https://data.delijn.be/stops/204519", "https://data.delijn.be/stops/205521"], ["https://data.delijn.be/stops/504875", "https://data.delijn.be/stops/505945"], ["https://data.delijn.be/stops/206864", "https://data.delijn.be/stops/207232"], ["https://data.delijn.be/stops/408502", "https://data.delijn.be/stops/408524"], ["https://data.delijn.be/stops/300602", "https://data.delijn.be/stops/300603"], ["https://data.delijn.be/stops/201226", "https://data.delijn.be/stops/201267"], ["https://data.delijn.be/stops/302378", "https://data.delijn.be/stops/307841"], ["https://data.delijn.be/stops/407399", "https://data.delijn.be/stops/408482"], ["https://data.delijn.be/stops/503101", "https://data.delijn.be/stops/503974"], ["https://data.delijn.be/stops/304838", "https://data.delijn.be/stops/308542"], ["https://data.delijn.be/stops/401549", "https://data.delijn.be/stops/401661"], ["https://data.delijn.be/stops/302396", "https://data.delijn.be/stops/308555"], ["https://data.delijn.be/stops/204365", "https://data.delijn.be/stops/204718"], ["https://data.delijn.be/stops/106648", "https://data.delijn.be/stops/106649"], ["https://data.delijn.be/stops/202825", "https://data.delijn.be/stops/202826"], ["https://data.delijn.be/stops/102778", "https://data.delijn.be/stops/102953"], ["https://data.delijn.be/stops/303809", "https://data.delijn.be/stops/307031"], ["https://data.delijn.be/stops/300646", "https://data.delijn.be/stops/300663"], ["https://data.delijn.be/stops/304371", "https://data.delijn.be/stops/305993"], ["https://data.delijn.be/stops/206205", "https://data.delijn.be/stops/207687"], ["https://data.delijn.be/stops/101506", "https://data.delijn.be/stops/101507"], ["https://data.delijn.be/stops/304395", "https://data.delijn.be/stops/304396"], ["https://data.delijn.be/stops/108988", "https://data.delijn.be/stops/109089"], ["https://data.delijn.be/stops/200144", "https://data.delijn.be/stops/205358"], ["https://data.delijn.be/stops/301915", "https://data.delijn.be/stops/301916"], ["https://data.delijn.be/stops/105825", "https://data.delijn.be/stops/305835"], ["https://data.delijn.be/stops/304369", "https://data.delijn.be/stops/304414"], ["https://data.delijn.be/stops/106886", "https://data.delijn.be/stops/109901"], ["https://data.delijn.be/stops/202279", "https://data.delijn.be/stops/203186"], ["https://data.delijn.be/stops/304783", "https://data.delijn.be/stops/308788"], ["https://data.delijn.be/stops/102742", "https://data.delijn.be/stops/102744"], ["https://data.delijn.be/stops/505845", "https://data.delijn.be/stops/508952"], ["https://data.delijn.be/stops/102894", "https://data.delijn.be/stops/102926"], ["https://data.delijn.be/stops/300246", "https://data.delijn.be/stops/300255"], ["https://data.delijn.be/stops/208381", "https://data.delijn.be/stops/209295"], ["https://data.delijn.be/stops/106027", "https://data.delijn.be/stops/106028"], ["https://data.delijn.be/stops/407229", "https://data.delijn.be/stops/407506"], ["https://data.delijn.be/stops/208369", "https://data.delijn.be/stops/209454"], ["https://data.delijn.be/stops/102289", "https://data.delijn.be/stops/108019"], ["https://data.delijn.be/stops/200726", "https://data.delijn.be/stops/203593"], ["https://data.delijn.be/stops/102407", "https://data.delijn.be/stops/402018"], ["https://data.delijn.be/stops/502183", "https://data.delijn.be/stops/507183"], ["https://data.delijn.be/stops/307536", "https://data.delijn.be/stops/307537"], ["https://data.delijn.be/stops/109151", "https://data.delijn.be/stops/109192"], ["https://data.delijn.be/stops/208403", "https://data.delijn.be/stops/209335"], ["https://data.delijn.be/stops/305268", "https://data.delijn.be/stops/305287"], ["https://data.delijn.be/stops/106183", "https://data.delijn.be/stops/107436"], ["https://data.delijn.be/stops/402578", "https://data.delijn.be/stops/408447"], ["https://data.delijn.be/stops/203049", "https://data.delijn.be/stops/203436"], ["https://data.delijn.be/stops/501011", "https://data.delijn.be/stops/505824"], ["https://data.delijn.be/stops/204670", "https://data.delijn.be/stops/204830"], ["https://data.delijn.be/stops/200226", "https://data.delijn.be/stops/201223"], ["https://data.delijn.be/stops/308067", "https://data.delijn.be/stops/308068"], ["https://data.delijn.be/stops/408096", "https://data.delijn.be/stops/408106"], ["https://data.delijn.be/stops/502362", "https://data.delijn.be/stops/505014"], ["https://data.delijn.be/stops/204714", "https://data.delijn.be/stops/205714"], ["https://data.delijn.be/stops/102229", "https://data.delijn.be/stops/102231"], ["https://data.delijn.be/stops/505825", "https://data.delijn.be/stops/509890"], ["https://data.delijn.be/stops/200834", "https://data.delijn.be/stops/201883"], ["https://data.delijn.be/stops/402170", "https://data.delijn.be/stops/402171"], ["https://data.delijn.be/stops/300955", "https://data.delijn.be/stops/300969"], ["https://data.delijn.be/stops/400769", "https://data.delijn.be/stops/405276"], ["https://data.delijn.be/stops/505526", "https://data.delijn.be/stops/508656"], ["https://data.delijn.be/stops/302804", "https://data.delijn.be/stops/308867"], ["https://data.delijn.be/stops/503412", "https://data.delijn.be/stops/508986"], ["https://data.delijn.be/stops/308080", "https://data.delijn.be/stops/308081"], ["https://data.delijn.be/stops/109391", "https://data.delijn.be/stops/406386"], ["https://data.delijn.be/stops/206398", "https://data.delijn.be/stops/207398"], ["https://data.delijn.be/stops/303565", "https://data.delijn.be/stops/303571"], ["https://data.delijn.be/stops/102072", "https://data.delijn.be/stops/108696"], ["https://data.delijn.be/stops/101189", "https://data.delijn.be/stops/205651"], ["https://data.delijn.be/stops/505912", "https://data.delijn.be/stops/509110"], ["https://data.delijn.be/stops/408852", "https://data.delijn.be/stops/408861"], ["https://data.delijn.be/stops/405131", "https://data.delijn.be/stops/405196"], ["https://data.delijn.be/stops/504783", "https://data.delijn.be/stops/508982"], ["https://data.delijn.be/stops/102169", "https://data.delijn.be/stops/103582"], ["https://data.delijn.be/stops/409769", "https://data.delijn.be/stops/409771"], ["https://data.delijn.be/stops/301723", "https://data.delijn.be/stops/308429"], ["https://data.delijn.be/stops/500604", "https://data.delijn.be/stops/501547"], ["https://data.delijn.be/stops/501068", "https://data.delijn.be/stops/501641"], ["https://data.delijn.be/stops/301389", "https://data.delijn.be/stops/306152"], ["https://data.delijn.be/stops/206685", "https://data.delijn.be/stops/207423"], ["https://data.delijn.be/stops/201880", "https://data.delijn.be/stops/210851"], ["https://data.delijn.be/stops/408694", "https://data.delijn.be/stops/408695"], ["https://data.delijn.be/stops/204832", "https://data.delijn.be/stops/205078"], ["https://data.delijn.be/stops/400547", "https://data.delijn.be/stops/400962"], ["https://data.delijn.be/stops/305153", "https://data.delijn.be/stops/306954"], ["https://data.delijn.be/stops/101596", "https://data.delijn.be/stops/106587"], ["https://data.delijn.be/stops/205925", "https://data.delijn.be/stops/218935"], ["https://data.delijn.be/stops/402115", "https://data.delijn.be/stops/405490"], ["https://data.delijn.be/stops/403388", "https://data.delijn.be/stops/405328"], ["https://data.delijn.be/stops/103033", "https://data.delijn.be/stops/109776"], ["https://data.delijn.be/stops/508279", "https://data.delijn.be/stops/508289"], ["https://data.delijn.be/stops/201259", "https://data.delijn.be/stops/201302"], ["https://data.delijn.be/stops/502655", "https://data.delijn.be/stops/507664"], ["https://data.delijn.be/stops/103490", "https://data.delijn.be/stops/103494"], ["https://data.delijn.be/stops/207977", "https://data.delijn.be/stops/207988"], ["https://data.delijn.be/stops/204102", "https://data.delijn.be/stops/204586"], ["https://data.delijn.be/stops/200867", "https://data.delijn.be/stops/200869"], ["https://data.delijn.be/stops/504666", "https://data.delijn.be/stops/504668"], ["https://data.delijn.be/stops/207946", "https://data.delijn.be/stops/208072"], ["https://data.delijn.be/stops/206111", "https://data.delijn.be/stops/207111"], ["https://data.delijn.be/stops/302209", "https://data.delijn.be/stops/308103"], ["https://data.delijn.be/stops/502025", "https://data.delijn.be/stops/502049"], ["https://data.delijn.be/stops/507383", "https://data.delijn.be/stops/507909"], ["https://data.delijn.be/stops/305356", "https://data.delijn.be/stops/307972"], ["https://data.delijn.be/stops/106745", "https://data.delijn.be/stops/106746"], ["https://data.delijn.be/stops/208498", "https://data.delijn.be/stops/209498"], ["https://data.delijn.be/stops/403794", "https://data.delijn.be/stops/403812"], ["https://data.delijn.be/stops/206188", "https://data.delijn.be/stops/207188"], ["https://data.delijn.be/stops/405607", "https://data.delijn.be/stops/405692"], ["https://data.delijn.be/stops/308219", "https://data.delijn.be/stops/308222"], ["https://data.delijn.be/stops/102058", "https://data.delijn.be/stops/106865"], ["https://data.delijn.be/stops/505339", "https://data.delijn.be/stops/508008"], ["https://data.delijn.be/stops/201850", "https://data.delijn.be/stops/202407"], ["https://data.delijn.be/stops/502707", "https://data.delijn.be/stops/507707"], ["https://data.delijn.be/stops/301282", "https://data.delijn.be/stops/306253"], ["https://data.delijn.be/stops/405796", "https://data.delijn.be/stops/407351"], ["https://data.delijn.be/stops/205159", "https://data.delijn.be/stops/206396"], ["https://data.delijn.be/stops/503524", "https://data.delijn.be/stops/504794"], ["https://data.delijn.be/stops/108849", "https://data.delijn.be/stops/108851"], ["https://data.delijn.be/stops/509115", "https://data.delijn.be/stops/509116"], ["https://data.delijn.be/stops/504074", "https://data.delijn.be/stops/504689"], ["https://data.delijn.be/stops/105797", "https://data.delijn.be/stops/105942"], ["https://data.delijn.be/stops/105012", "https://data.delijn.be/stops/105013"], ["https://data.delijn.be/stops/208494", "https://data.delijn.be/stops/209638"], ["https://data.delijn.be/stops/502451", "https://data.delijn.be/stops/502452"], ["https://data.delijn.be/stops/401018", "https://data.delijn.be/stops/401145"], ["https://data.delijn.be/stops/204447", "https://data.delijn.be/stops/205350"], ["https://data.delijn.be/stops/308515", "https://data.delijn.be/stops/308517"], ["https://data.delijn.be/stops/403418", "https://data.delijn.be/stops/403518"], ["https://data.delijn.be/stops/400146", "https://data.delijn.be/stops/400147"], ["https://data.delijn.be/stops/104667", "https://data.delijn.be/stops/104889"], ["https://data.delijn.be/stops/101658", "https://data.delijn.be/stops/107809"], ["https://data.delijn.be/stops/208610", "https://data.delijn.be/stops/208614"], ["https://data.delijn.be/stops/201909", "https://data.delijn.be/stops/201910"], ["https://data.delijn.be/stops/410183", "https://data.delijn.be/stops/410207"], ["https://data.delijn.be/stops/404768", "https://data.delijn.be/stops/404775"], ["https://data.delijn.be/stops/300193", "https://data.delijn.be/stops/300221"], ["https://data.delijn.be/stops/400353", "https://data.delijn.be/stops/400396"], ["https://data.delijn.be/stops/501387", "https://data.delijn.be/stops/501389"], ["https://data.delijn.be/stops/305286", "https://data.delijn.be/stops/305288"], ["https://data.delijn.be/stops/208616", "https://data.delijn.be/stops/209655"], ["https://data.delijn.be/stops/403292", "https://data.delijn.be/stops/410029"], ["https://data.delijn.be/stops/400482", "https://data.delijn.be/stops/400484"], ["https://data.delijn.be/stops/200164", "https://data.delijn.be/stops/201164"], ["https://data.delijn.be/stops/401226", "https://data.delijn.be/stops/401228"], ["https://data.delijn.be/stops/201044", "https://data.delijn.be/stops/202456"], ["https://data.delijn.be/stops/402779", "https://data.delijn.be/stops/402783"], ["https://data.delijn.be/stops/402157", "https://data.delijn.be/stops/402327"], ["https://data.delijn.be/stops/304119", "https://data.delijn.be/stops/307546"], ["https://data.delijn.be/stops/501469", "https://data.delijn.be/stops/505034"], ["https://data.delijn.be/stops/200726", "https://data.delijn.be/stops/200729"], ["https://data.delijn.be/stops/503856", "https://data.delijn.be/stops/505993"], ["https://data.delijn.be/stops/407226", "https://data.delijn.be/stops/407227"], ["https://data.delijn.be/stops/304549", "https://data.delijn.be/stops/304550"], ["https://data.delijn.be/stops/208582", "https://data.delijn.be/stops/209083"], ["https://data.delijn.be/stops/102955", "https://data.delijn.be/stops/105870"], ["https://data.delijn.be/stops/409410", "https://data.delijn.be/stops/409767"], ["https://data.delijn.be/stops/405783", "https://data.delijn.be/stops/405787"], ["https://data.delijn.be/stops/505900", "https://data.delijn.be/stops/505947"], ["https://data.delijn.be/stops/208001", "https://data.delijn.be/stops/209001"], ["https://data.delijn.be/stops/501742", "https://data.delijn.be/stops/509501"], ["https://data.delijn.be/stops/407986", "https://data.delijn.be/stops/407990"], ["https://data.delijn.be/stops/509872", "https://data.delijn.be/stops/509970"], ["https://data.delijn.be/stops/301487", "https://data.delijn.be/stops/307959"], ["https://data.delijn.be/stops/101677", "https://data.delijn.be/stops/103699"], ["https://data.delijn.be/stops/102171", "https://data.delijn.be/stops/103744"], ["https://data.delijn.be/stops/105536", "https://data.delijn.be/stops/106250"], ["https://data.delijn.be/stops/402468", "https://data.delijn.be/stops/402469"], ["https://data.delijn.be/stops/203161", "https://data.delijn.be/stops/203162"], ["https://data.delijn.be/stops/400132", "https://data.delijn.be/stops/409199"], ["https://data.delijn.be/stops/208007", "https://data.delijn.be/stops/208012"], ["https://data.delijn.be/stops/302931", "https://data.delijn.be/stops/304504"], ["https://data.delijn.be/stops/102420", "https://data.delijn.be/stops/102425"], ["https://data.delijn.be/stops/303790", "https://data.delijn.be/stops/303875"], ["https://data.delijn.be/stops/105305", "https://data.delijn.be/stops/105310"], ["https://data.delijn.be/stops/403048", "https://data.delijn.be/stops/403067"], ["https://data.delijn.be/stops/109038", "https://data.delijn.be/stops/109042"], ["https://data.delijn.be/stops/402242", "https://data.delijn.be/stops/402337"], ["https://data.delijn.be/stops/200090", "https://data.delijn.be/stops/210072"], ["https://data.delijn.be/stops/209699", "https://data.delijn.be/stops/209792"], ["https://data.delijn.be/stops/400499", "https://data.delijn.be/stops/400949"], ["https://data.delijn.be/stops/205404", "https://data.delijn.be/stops/205405"], ["https://data.delijn.be/stops/300592", "https://data.delijn.be/stops/300596"], ["https://data.delijn.be/stops/501127", "https://data.delijn.be/stops/501138"], ["https://data.delijn.be/stops/102927", "https://data.delijn.be/stops/109420"], ["https://data.delijn.be/stops/104554", "https://data.delijn.be/stops/104558"], ["https://data.delijn.be/stops/109368", "https://data.delijn.be/stops/109370"], ["https://data.delijn.be/stops/407245", "https://data.delijn.be/stops/407249"], ["https://data.delijn.be/stops/204341", "https://data.delijn.be/stops/205296"], ["https://data.delijn.be/stops/403588", "https://data.delijn.be/stops/408198"], ["https://data.delijn.be/stops/102989", "https://data.delijn.be/stops/106511"], ["https://data.delijn.be/stops/201676", "https://data.delijn.be/stops/208262"], ["https://data.delijn.be/stops/402299", "https://data.delijn.be/stops/402470"], ["https://data.delijn.be/stops/400622", "https://data.delijn.be/stops/404290"], ["https://data.delijn.be/stops/402713", "https://data.delijn.be/stops/402737"], ["https://data.delijn.be/stops/408533", "https://data.delijn.be/stops/408750"], ["https://data.delijn.be/stops/302438", "https://data.delijn.be/stops/308104"], ["https://data.delijn.be/stops/407670", "https://data.delijn.be/stops/407679"], ["https://data.delijn.be/stops/200054", "https://data.delijn.be/stops/211002"], ["https://data.delijn.be/stops/204229", "https://data.delijn.be/stops/204230"], ["https://data.delijn.be/stops/204118", "https://data.delijn.be/stops/204690"], ["https://data.delijn.be/stops/201202", "https://data.delijn.be/stops/201624"], ["https://data.delijn.be/stops/505838", "https://data.delijn.be/stops/507254"], ["https://data.delijn.be/stops/103235", "https://data.delijn.be/stops/103240"], ["https://data.delijn.be/stops/401301", "https://data.delijn.be/stops/401311"], ["https://data.delijn.be/stops/503625", "https://data.delijn.be/stops/508619"], ["https://data.delijn.be/stops/503015", "https://data.delijn.be/stops/508010"], ["https://data.delijn.be/stops/203092", "https://data.delijn.be/stops/211291"], ["https://data.delijn.be/stops/402260", "https://data.delijn.be/stops/402472"], ["https://data.delijn.be/stops/204414", "https://data.delijn.be/stops/205413"], ["https://data.delijn.be/stops/106845", "https://data.delijn.be/stops/106985"], ["https://data.delijn.be/stops/106319", "https://data.delijn.be/stops/106320"], ["https://data.delijn.be/stops/201932", "https://data.delijn.be/stops/203511"], ["https://data.delijn.be/stops/403525", "https://data.delijn.be/stops/404227"], ["https://data.delijn.be/stops/402159", "https://data.delijn.be/stops/402286"], ["https://data.delijn.be/stops/400199", "https://data.delijn.be/stops/406469"], ["https://data.delijn.be/stops/307778", "https://data.delijn.be/stops/307893"], ["https://data.delijn.be/stops/107699", "https://data.delijn.be/stops/107715"], ["https://data.delijn.be/stops/508629", "https://data.delijn.be/stops/508633"], ["https://data.delijn.be/stops/305789", "https://data.delijn.be/stops/305791"], ["https://data.delijn.be/stops/507736", "https://data.delijn.be/stops/508848"], ["https://data.delijn.be/stops/105909", "https://data.delijn.be/stops/105912"], ["https://data.delijn.be/stops/105258", "https://data.delijn.be/stops/105259"], ["https://data.delijn.be/stops/401507", "https://data.delijn.be/stops/404927"], ["https://data.delijn.be/stops/106174", "https://data.delijn.be/stops/109103"], ["https://data.delijn.be/stops/504426", "https://data.delijn.be/stops/504427"], ["https://data.delijn.be/stops/301730", "https://data.delijn.be/stops/308430"], ["https://data.delijn.be/stops/206372", "https://data.delijn.be/stops/207372"], ["https://data.delijn.be/stops/400555", "https://data.delijn.be/stops/400557"], ["https://data.delijn.be/stops/208017", "https://data.delijn.be/stops/209029"], ["https://data.delijn.be/stops/504461", "https://data.delijn.be/stops/505435"], ["https://data.delijn.be/stops/200518", "https://data.delijn.be/stops/204925"], ["https://data.delijn.be/stops/501082", "https://data.delijn.be/stops/506077"], ["https://data.delijn.be/stops/108074", "https://data.delijn.be/stops/108444"], ["https://data.delijn.be/stops/405615", "https://data.delijn.be/stops/407161"], ["https://data.delijn.be/stops/104992", "https://data.delijn.be/stops/109991"], ["https://data.delijn.be/stops/409373", "https://data.delijn.be/stops/409390"], ["https://data.delijn.be/stops/303484", "https://data.delijn.be/stops/303486"], ["https://data.delijn.be/stops/503692", "https://data.delijn.be/stops/508266"], ["https://data.delijn.be/stops/202421", "https://data.delijn.be/stops/203421"], ["https://data.delijn.be/stops/407815", "https://data.delijn.be/stops/407942"], ["https://data.delijn.be/stops/202965", "https://data.delijn.be/stops/204063"], ["https://data.delijn.be/stops/103156", "https://data.delijn.be/stops/107663"], ["https://data.delijn.be/stops/406712", "https://data.delijn.be/stops/408743"], ["https://data.delijn.be/stops/301213", "https://data.delijn.be/stops/302984"], ["https://data.delijn.be/stops/301511", "https://data.delijn.be/stops/308747"], ["https://data.delijn.be/stops/200691", "https://data.delijn.be/stops/210041"], ["https://data.delijn.be/stops/302342", "https://data.delijn.be/stops/302343"], ["https://data.delijn.be/stops/306726", "https://data.delijn.be/stops/306729"], ["https://data.delijn.be/stops/406281", "https://data.delijn.be/stops/406893"], ["https://data.delijn.be/stops/109697", "https://data.delijn.be/stops/400391"], ["https://data.delijn.be/stops/507227", "https://data.delijn.be/stops/507234"], ["https://data.delijn.be/stops/104497", "https://data.delijn.be/stops/104498"], ["https://data.delijn.be/stops/200803", "https://data.delijn.be/stops/200804"], ["https://data.delijn.be/stops/103074", "https://data.delijn.be/stops/105028"], ["https://data.delijn.be/stops/300746", "https://data.delijn.be/stops/300759"], ["https://data.delijn.be/stops/207685", "https://data.delijn.be/stops/207801"], ["https://data.delijn.be/stops/503154", "https://data.delijn.be/stops/505185"], ["https://data.delijn.be/stops/408263", "https://data.delijn.be/stops/408293"], ["https://data.delijn.be/stops/108456", "https://data.delijn.be/stops/304920"], ["https://data.delijn.be/stops/204345", "https://data.delijn.be/stops/205240"], ["https://data.delijn.be/stops/201954", "https://data.delijn.be/stops/210123"], ["https://data.delijn.be/stops/405787", "https://data.delijn.be/stops/409770"], ["https://data.delijn.be/stops/206997", "https://data.delijn.be/stops/207564"], ["https://data.delijn.be/stops/202537", "https://data.delijn.be/stops/203042"], ["https://data.delijn.be/stops/504977", "https://data.delijn.be/stops/509639"], ["https://data.delijn.be/stops/405814", "https://data.delijn.be/stops/409426"], ["https://data.delijn.be/stops/104347", "https://data.delijn.be/stops/105918"], ["https://data.delijn.be/stops/206664", "https://data.delijn.be/stops/206706"], ["https://data.delijn.be/stops/101946", "https://data.delijn.be/stops/109707"], ["https://data.delijn.be/stops/302599", "https://data.delijn.be/stops/302641"], ["https://data.delijn.be/stops/405449", "https://data.delijn.be/stops/308824"], ["https://data.delijn.be/stops/402652", "https://data.delijn.be/stops/408447"], ["https://data.delijn.be/stops/202882", "https://data.delijn.be/stops/207938"], ["https://data.delijn.be/stops/101655", "https://data.delijn.be/stops/101656"], ["https://data.delijn.be/stops/206949", "https://data.delijn.be/stops/207949"], ["https://data.delijn.be/stops/303178", "https://data.delijn.be/stops/303179"], ["https://data.delijn.be/stops/404661", "https://data.delijn.be/stops/404663"], ["https://data.delijn.be/stops/302926", "https://data.delijn.be/stops/306401"], ["https://data.delijn.be/stops/101007", "https://data.delijn.be/stops/108630"], ["https://data.delijn.be/stops/300061", "https://data.delijn.be/stops/300062"], ["https://data.delijn.be/stops/508038", "https://data.delijn.be/stops/508187"], ["https://data.delijn.be/stops/200019", "https://data.delijn.be/stops/211045"], ["https://data.delijn.be/stops/301665", "https://data.delijn.be/stops/304179"], ["https://data.delijn.be/stops/501016", "https://data.delijn.be/stops/501018"], ["https://data.delijn.be/stops/106137", "https://data.delijn.be/stops/106139"], ["https://data.delijn.be/stops/407548", "https://data.delijn.be/stops/407556"], ["https://data.delijn.be/stops/506645", "https://data.delijn.be/stops/506658"], ["https://data.delijn.be/stops/102473", "https://data.delijn.be/stops/400364"], ["https://data.delijn.be/stops/408564", "https://data.delijn.be/stops/408675"], ["https://data.delijn.be/stops/105969", "https://data.delijn.be/stops/105973"], ["https://data.delijn.be/stops/102323", "https://data.delijn.be/stops/505602"], ["https://data.delijn.be/stops/101188", "https://data.delijn.be/stops/205650"], ["https://data.delijn.be/stops/204551", "https://data.delijn.be/stops/205498"], ["https://data.delijn.be/stops/304004", "https://data.delijn.be/stops/304005"], ["https://data.delijn.be/stops/101064", "https://data.delijn.be/stops/102284"], ["https://data.delijn.be/stops/200736", "https://data.delijn.be/stops/200737"], ["https://data.delijn.be/stops/108850", "https://data.delijn.be/stops/108851"], ["https://data.delijn.be/stops/302424", "https://data.delijn.be/stops/302428"], ["https://data.delijn.be/stops/301314", "https://data.delijn.be/stops/301323"], ["https://data.delijn.be/stops/501385", "https://data.delijn.be/stops/506392"], ["https://data.delijn.be/stops/401635", "https://data.delijn.be/stops/308215"], ["https://data.delijn.be/stops/300669", "https://data.delijn.be/stops/300670"], ["https://data.delijn.be/stops/304815", "https://data.delijn.be/stops/304816"], ["https://data.delijn.be/stops/109164", "https://data.delijn.be/stops/109165"], ["https://data.delijn.be/stops/207038", "https://data.delijn.be/stops/207039"], ["https://data.delijn.be/stops/302573", "https://data.delijn.be/stops/302771"], ["https://data.delijn.be/stops/402525", "https://data.delijn.be/stops/404098"], ["https://data.delijn.be/stops/504236", "https://data.delijn.be/stops/505362"], ["https://data.delijn.be/stops/208120", "https://data.delijn.be/stops/209120"], ["https://data.delijn.be/stops/505630", "https://data.delijn.be/stops/508344"], ["https://data.delijn.be/stops/200557", "https://data.delijn.be/stops/200607"], ["https://data.delijn.be/stops/505357", "https://data.delijn.be/stops/505438"], ["https://data.delijn.be/stops/205971", "https://data.delijn.be/stops/207067"], ["https://data.delijn.be/stops/204477", "https://data.delijn.be/stops/205241"], ["https://data.delijn.be/stops/408038", "https://data.delijn.be/stops/408405"], ["https://data.delijn.be/stops/207763", "https://data.delijn.be/stops/208371"], ["https://data.delijn.be/stops/502303", "https://data.delijn.be/stops/507311"], ["https://data.delijn.be/stops/306705", "https://data.delijn.be/stops/306708"], ["https://data.delijn.be/stops/209735", "https://data.delijn.be/stops/219025"], ["https://data.delijn.be/stops/404003", "https://data.delijn.be/stops/410256"], ["https://data.delijn.be/stops/501682", "https://data.delijn.be/stops/509658"], ["https://data.delijn.be/stops/401436", "https://data.delijn.be/stops/410109"], ["https://data.delijn.be/stops/101597", "https://data.delijn.be/stops/106585"], ["https://data.delijn.be/stops/501560", "https://data.delijn.be/stops/506099"], ["https://data.delijn.be/stops/303617", "https://data.delijn.be/stops/303624"], ["https://data.delijn.be/stops/305799", "https://data.delijn.be/stops/305801"], ["https://data.delijn.be/stops/302733", "https://data.delijn.be/stops/308860"], ["https://data.delijn.be/stops/207086", "https://data.delijn.be/stops/207087"], ["https://data.delijn.be/stops/201030", "https://data.delijn.be/stops/210113"], ["https://data.delijn.be/stops/203339", "https://data.delijn.be/stops/203948"], ["https://data.delijn.be/stops/300125", "https://data.delijn.be/stops/306831"], ["https://data.delijn.be/stops/403964", "https://data.delijn.be/stops/403965"], ["https://data.delijn.be/stops/206506", "https://data.delijn.be/stops/207506"], ["https://data.delijn.be/stops/301558", "https://data.delijn.be/stops/301562"], ["https://data.delijn.be/stops/107542", "https://data.delijn.be/stops/109596"], ["https://data.delijn.be/stops/506636", "https://data.delijn.be/stops/506671"], ["https://data.delijn.be/stops/107814", "https://data.delijn.be/stops/107815"], ["https://data.delijn.be/stops/500563", "https://data.delijn.be/stops/500564"], ["https://data.delijn.be/stops/501483", "https://data.delijn.be/stops/506090"], ["https://data.delijn.be/stops/200685", "https://data.delijn.be/stops/201712"], ["https://data.delijn.be/stops/505369", "https://data.delijn.be/stops/508150"], ["https://data.delijn.be/stops/401059", "https://data.delijn.be/stops/401062"], ["https://data.delijn.be/stops/206602", "https://data.delijn.be/stops/206738"], ["https://data.delijn.be/stops/208057", "https://data.delijn.be/stops/209057"], ["https://data.delijn.be/stops/307844", "https://data.delijn.be/stops/307909"], ["https://data.delijn.be/stops/503183", "https://data.delijn.be/stops/503187"], ["https://data.delijn.be/stops/409232", "https://data.delijn.be/stops/409236"], ["https://data.delijn.be/stops/404874", "https://data.delijn.be/stops/404958"], ["https://data.delijn.be/stops/206418", "https://data.delijn.be/stops/206658"], ["https://data.delijn.be/stops/301498", "https://data.delijn.be/stops/301499"], ["https://data.delijn.be/stops/205376", "https://data.delijn.be/stops/205764"], ["https://data.delijn.be/stops/404957", "https://data.delijn.be/stops/404965"], ["https://data.delijn.be/stops/102256", "https://data.delijn.be/stops/108304"], ["https://data.delijn.be/stops/403956", "https://data.delijn.be/stops/403957"], ["https://data.delijn.be/stops/102131", "https://data.delijn.be/stops/106419"], ["https://data.delijn.be/stops/303812", "https://data.delijn.be/stops/303821"], ["https://data.delijn.be/stops/502798", "https://data.delijn.be/stops/507534"], ["https://data.delijn.be/stops/408652", "https://data.delijn.be/stops/408653"], ["https://data.delijn.be/stops/402354", "https://data.delijn.be/stops/402355"], ["https://data.delijn.be/stops/408153", "https://data.delijn.be/stops/408167"], ["https://data.delijn.be/stops/101591", "https://data.delijn.be/stops/101592"], ["https://data.delijn.be/stops/505154", "https://data.delijn.be/stops/505156"], ["https://data.delijn.be/stops/300573", "https://data.delijn.be/stops/300576"], ["https://data.delijn.be/stops/300581", "https://data.delijn.be/stops/308896"], ["https://data.delijn.be/stops/302742", "https://data.delijn.be/stops/302783"], ["https://data.delijn.be/stops/102610", "https://data.delijn.be/stops/106085"], ["https://data.delijn.be/stops/405304", "https://data.delijn.be/stops/302829"], ["https://data.delijn.be/stops/205546", "https://data.delijn.be/stops/205823"], ["https://data.delijn.be/stops/405525", "https://data.delijn.be/stops/407274"], ["https://data.delijn.be/stops/204068", "https://data.delijn.be/stops/204196"], ["https://data.delijn.be/stops/302428", "https://data.delijn.be/stops/307002"], ["https://data.delijn.be/stops/504543", "https://data.delijn.be/stops/505375"], ["https://data.delijn.be/stops/201777", "https://data.delijn.be/stops/201778"], ["https://data.delijn.be/stops/204073", "https://data.delijn.be/stops/205797"], ["https://data.delijn.be/stops/406054", "https://data.delijn.be/stops/406143"], ["https://data.delijn.be/stops/101992", "https://data.delijn.be/stops/102560"], ["https://data.delijn.be/stops/503398", "https://data.delijn.be/stops/503399"], ["https://data.delijn.be/stops/406623", "https://data.delijn.be/stops/406640"], ["https://data.delijn.be/stops/206191", "https://data.delijn.be/stops/206956"], ["https://data.delijn.be/stops/103074", "https://data.delijn.be/stops/105172"], ["https://data.delijn.be/stops/400171", "https://data.delijn.be/stops/407423"], ["https://data.delijn.be/stops/200233", "https://data.delijn.be/stops/201233"], ["https://data.delijn.be/stops/504838", "https://data.delijn.be/stops/505967"], ["https://data.delijn.be/stops/307642", "https://data.delijn.be/stops/307648"], ["https://data.delijn.be/stops/302988", "https://data.delijn.be/stops/303032"], ["https://data.delijn.be/stops/408058", "https://data.delijn.be/stops/408438"], ["https://data.delijn.be/stops/300328", "https://data.delijn.be/stops/306816"], ["https://data.delijn.be/stops/206145", "https://data.delijn.be/stops/206506"], ["https://data.delijn.be/stops/201929", "https://data.delijn.be/stops/203476"], ["https://data.delijn.be/stops/206628", "https://data.delijn.be/stops/207628"], ["https://data.delijn.be/stops/400491", "https://data.delijn.be/stops/407212"], ["https://data.delijn.be/stops/201319", "https://data.delijn.be/stops/203191"], ["https://data.delijn.be/stops/108571", "https://data.delijn.be/stops/108998"], ["https://data.delijn.be/stops/404144", "https://data.delijn.be/stops/410184"], ["https://data.delijn.be/stops/510003", "https://data.delijn.be/stops/510011"], ["https://data.delijn.be/stops/304936", "https://data.delijn.be/stops/304937"], ["https://data.delijn.be/stops/504330", "https://data.delijn.be/stops/509329"], ["https://data.delijn.be/stops/304877", "https://data.delijn.be/stops/308544"], ["https://data.delijn.be/stops/501091", "https://data.delijn.be/stops/506091"], ["https://data.delijn.be/stops/407538", "https://data.delijn.be/stops/408482"], ["https://data.delijn.be/stops/204424", "https://data.delijn.be/stops/205423"], ["https://data.delijn.be/stops/300231", "https://data.delijn.be/stops/300238"], ["https://data.delijn.be/stops/105811", "https://data.delijn.be/stops/105813"], ["https://data.delijn.be/stops/304795", "https://data.delijn.be/stops/304796"], ["https://data.delijn.be/stops/205513", "https://data.delijn.be/stops/205554"], ["https://data.delijn.be/stops/302359", "https://data.delijn.be/stops/306289"], ["https://data.delijn.be/stops/103575", "https://data.delijn.be/stops/103645"], ["https://data.delijn.be/stops/101665", "https://data.delijn.be/stops/104627"], ["https://data.delijn.be/stops/408823", "https://data.delijn.be/stops/408824"], ["https://data.delijn.be/stops/201877", "https://data.delijn.be/stops/203424"], ["https://data.delijn.be/stops/204650", "https://data.delijn.be/stops/205650"], ["https://data.delijn.be/stops/109043", "https://data.delijn.be/stops/109086"], ["https://data.delijn.be/stops/206434", "https://data.delijn.be/stops/207434"], ["https://data.delijn.be/stops/405146", "https://data.delijn.be/stops/405228"], ["https://data.delijn.be/stops/104476", "https://data.delijn.be/stops/308608"], ["https://data.delijn.be/stops/500126", "https://data.delijn.be/stops/508003"], ["https://data.delijn.be/stops/106770", "https://data.delijn.be/stops/106802"], ["https://data.delijn.be/stops/304326", "https://data.delijn.be/stops/304327"], ["https://data.delijn.be/stops/403679", "https://data.delijn.be/stops/405319"], ["https://data.delijn.be/stops/200776", "https://data.delijn.be/stops/208089"], ["https://data.delijn.be/stops/402551", "https://data.delijn.be/stops/402581"], ["https://data.delijn.be/stops/106351", "https://data.delijn.be/stops/106379"], ["https://data.delijn.be/stops/202233", "https://data.delijn.be/stops/203232"], ["https://data.delijn.be/stops/107464", "https://data.delijn.be/stops/107526"], ["https://data.delijn.be/stops/405767", "https://data.delijn.be/stops/406882"], ["https://data.delijn.be/stops/303281", "https://data.delijn.be/stops/308952"], ["https://data.delijn.be/stops/303180", "https://data.delijn.be/stops/304869"], ["https://data.delijn.be/stops/400727", "https://data.delijn.be/stops/409375"], ["https://data.delijn.be/stops/202113", "https://data.delijn.be/stops/205597"], ["https://data.delijn.be/stops/403904", "https://data.delijn.be/stops/404073"], ["https://data.delijn.be/stops/409586", "https://data.delijn.be/stops/409587"], ["https://data.delijn.be/stops/400767", "https://data.delijn.be/stops/409662"], ["https://data.delijn.be/stops/206023", "https://data.delijn.be/stops/207023"], ["https://data.delijn.be/stops/207146", "https://data.delijn.be/stops/207148"], ["https://data.delijn.be/stops/504667", "https://data.delijn.be/stops/509206"], ["https://data.delijn.be/stops/508626", "https://data.delijn.be/stops/590009"], ["https://data.delijn.be/stops/200418", "https://data.delijn.be/stops/202654"], ["https://data.delijn.be/stops/302097", "https://data.delijn.be/stops/302103"], ["https://data.delijn.be/stops/304732", "https://data.delijn.be/stops/304733"], ["https://data.delijn.be/stops/108755", "https://data.delijn.be/stops/108760"], ["https://data.delijn.be/stops/208561", "https://data.delijn.be/stops/209846"], ["https://data.delijn.be/stops/305802", "https://data.delijn.be/stops/305803"], ["https://data.delijn.be/stops/407760", "https://data.delijn.be/stops/407761"], ["https://data.delijn.be/stops/202120", "https://data.delijn.be/stops/203637"], ["https://data.delijn.be/stops/209613", "https://data.delijn.be/stops/209614"], ["https://data.delijn.be/stops/301444", "https://data.delijn.be/stops/301445"], ["https://data.delijn.be/stops/206774", "https://data.delijn.be/stops/208037"], ["https://data.delijn.be/stops/503583", "https://data.delijn.be/stops/503606"], ["https://data.delijn.be/stops/102517", "https://data.delijn.be/stops/406509"], ["https://data.delijn.be/stops/402855", "https://data.delijn.be/stops/409881"], ["https://data.delijn.be/stops/306035", "https://data.delijn.be/stops/306036"], ["https://data.delijn.be/stops/303619", "https://data.delijn.be/stops/304923"], ["https://data.delijn.be/stops/403145", "https://data.delijn.be/stops/407584"], ["https://data.delijn.be/stops/410002", "https://data.delijn.be/stops/410005"], ["https://data.delijn.be/stops/407523", "https://data.delijn.be/stops/407557"], ["https://data.delijn.be/stops/208016", "https://data.delijn.be/stops/209021"], ["https://data.delijn.be/stops/206768", "https://data.delijn.be/stops/209565"], ["https://data.delijn.be/stops/505596", "https://data.delijn.be/stops/507734"], ["https://data.delijn.be/stops/301703", "https://data.delijn.be/stops/305325"], ["https://data.delijn.be/stops/301448", "https://data.delijn.be/stops/307270"], ["https://data.delijn.be/stops/407464", "https://data.delijn.be/stops/410286"], ["https://data.delijn.be/stops/505768", "https://data.delijn.be/stops/507622"], ["https://data.delijn.be/stops/506301", "https://data.delijn.be/stops/506332"], ["https://data.delijn.be/stops/406903", "https://data.delijn.be/stops/406913"], ["https://data.delijn.be/stops/401477", "https://data.delijn.be/stops/401563"], ["https://data.delijn.be/stops/105734", "https://data.delijn.be/stops/109941"], ["https://data.delijn.be/stops/106632", "https://data.delijn.be/stops/107162"], ["https://data.delijn.be/stops/106896", "https://data.delijn.be/stops/106897"], ["https://data.delijn.be/stops/400205", "https://data.delijn.be/stops/400239"], ["https://data.delijn.be/stops/305400", "https://data.delijn.be/stops/305402"], ["https://data.delijn.be/stops/304917", "https://data.delijn.be/stops/308118"], ["https://data.delijn.be/stops/302885", "https://data.delijn.be/stops/302886"], ["https://data.delijn.be/stops/103593", "https://data.delijn.be/stops/109126"], ["https://data.delijn.be/stops/200098", "https://data.delijn.be/stops/201098"], ["https://data.delijn.be/stops/304945", "https://data.delijn.be/stops/308021"], ["https://data.delijn.be/stops/306665", "https://data.delijn.be/stops/306682"], ["https://data.delijn.be/stops/409296", "https://data.delijn.be/stops/410326"], ["https://data.delijn.be/stops/102283", "https://data.delijn.be/stops/104847"], ["https://data.delijn.be/stops/103185", "https://data.delijn.be/stops/103225"], ["https://data.delijn.be/stops/202822", "https://data.delijn.be/stops/203822"], ["https://data.delijn.be/stops/208213", "https://data.delijn.be/stops/209212"], ["https://data.delijn.be/stops/402410", "https://data.delijn.be/stops/402414"], ["https://data.delijn.be/stops/304348", "https://data.delijn.be/stops/304352"], ["https://data.delijn.be/stops/204128", "https://data.delijn.be/stops/204132"], ["https://data.delijn.be/stops/400551", "https://data.delijn.be/stops/403858"], ["https://data.delijn.be/stops/406064", "https://data.delijn.be/stops/410045"], ["https://data.delijn.be/stops/301540", "https://data.delijn.be/stops/305136"], ["https://data.delijn.be/stops/302495", "https://data.delijn.be/stops/302500"], ["https://data.delijn.be/stops/502101", "https://data.delijn.be/stops/502633"], ["https://data.delijn.be/stops/401045", "https://data.delijn.be/stops/401137"], ["https://data.delijn.be/stops/206787", "https://data.delijn.be/stops/209541"], ["https://data.delijn.be/stops/506184", "https://data.delijn.be/stops/506779"], ["https://data.delijn.be/stops/204241", "https://data.delijn.be/stops/205452"], ["https://data.delijn.be/stops/403966", "https://data.delijn.be/stops/403974"], ["https://data.delijn.be/stops/103467", "https://data.delijn.be/stops/106325"], ["https://data.delijn.be/stops/109887", "https://data.delijn.be/stops/109889"], ["https://data.delijn.be/stops/403412", "https://data.delijn.be/stops/410288"], ["https://data.delijn.be/stops/406141", "https://data.delijn.be/stops/406378"], ["https://data.delijn.be/stops/102752", "https://data.delijn.be/stops/102753"], ["https://data.delijn.be/stops/205013", "https://data.delijn.be/stops/205014"], ["https://data.delijn.be/stops/207674", "https://data.delijn.be/stops/209136"], ["https://data.delijn.be/stops/204970", "https://data.delijn.be/stops/217002"], ["https://data.delijn.be/stops/503303", "https://data.delijn.be/stops/505934"], ["https://data.delijn.be/stops/201132", "https://data.delijn.be/stops/211086"], ["https://data.delijn.be/stops/103610", "https://data.delijn.be/stops/103615"], ["https://data.delijn.be/stops/305282", "https://data.delijn.be/stops/308712"], ["https://data.delijn.be/stops/300946", "https://data.delijn.be/stops/305385"], ["https://data.delijn.be/stops/201065", "https://data.delijn.be/stops/201269"], ["https://data.delijn.be/stops/403930", "https://data.delijn.be/stops/403944"], ["https://data.delijn.be/stops/300511", "https://data.delijn.be/stops/300514"], ["https://data.delijn.be/stops/106751", "https://data.delijn.be/stops/106752"], ["https://data.delijn.be/stops/408740", "https://data.delijn.be/stops/408742"], ["https://data.delijn.be/stops/402887", "https://data.delijn.be/stops/402888"], ["https://data.delijn.be/stops/202817", "https://data.delijn.be/stops/202818"], ["https://data.delijn.be/stops/204022", "https://data.delijn.be/stops/206811"], ["https://data.delijn.be/stops/401338", "https://data.delijn.be/stops/401388"], ["https://data.delijn.be/stops/408898", "https://data.delijn.be/stops/408910"], ["https://data.delijn.be/stops/502027", "https://data.delijn.be/stops/502059"], ["https://data.delijn.be/stops/403084", "https://data.delijn.be/stops/410130"], ["https://data.delijn.be/stops/106240", "https://data.delijn.be/stops/106241"], ["https://data.delijn.be/stops/304450", "https://data.delijn.be/stops/304451"], ["https://data.delijn.be/stops/301410", "https://data.delijn.be/stops/305605"], ["https://data.delijn.be/stops/206260", "https://data.delijn.be/stops/207260"], ["https://data.delijn.be/stops/200185", "https://data.delijn.be/stops/201185"], ["https://data.delijn.be/stops/204242", "https://data.delijn.be/stops/204243"], ["https://data.delijn.be/stops/206231", "https://data.delijn.be/stops/207231"], ["https://data.delijn.be/stops/304464", "https://data.delijn.be/stops/304465"], ["https://data.delijn.be/stops/205970", "https://data.delijn.be/stops/217002"], ["https://data.delijn.be/stops/107275", "https://data.delijn.be/stops/108435"], ["https://data.delijn.be/stops/202517", "https://data.delijn.be/stops/203518"], ["https://data.delijn.be/stops/108445", "https://data.delijn.be/stops/108446"], ["https://data.delijn.be/stops/305591", "https://data.delijn.be/stops/305619"], ["https://data.delijn.be/stops/502173", "https://data.delijn.be/stops/504369"], ["https://data.delijn.be/stops/405796", "https://data.delijn.be/stops/409434"], ["https://data.delijn.be/stops/201907", "https://data.delijn.be/stops/201909"], ["https://data.delijn.be/stops/210124", "https://data.delijn.be/stops/211053"], ["https://data.delijn.be/stops/105517", "https://data.delijn.be/stops/105518"], ["https://data.delijn.be/stops/301461", "https://data.delijn.be/stops/301490"], ["https://data.delijn.be/stops/302347", "https://data.delijn.be/stops/302358"], ["https://data.delijn.be/stops/506149", "https://data.delijn.be/stops/506165"], ["https://data.delijn.be/stops/302064", "https://data.delijn.be/stops/308600"], ["https://data.delijn.be/stops/105306", "https://data.delijn.be/stops/105363"], ["https://data.delijn.be/stops/300274", "https://data.delijn.be/stops/307479"], ["https://data.delijn.be/stops/103659", "https://data.delijn.be/stops/103661"], ["https://data.delijn.be/stops/207586", "https://data.delijn.be/stops/207842"], ["https://data.delijn.be/stops/201717", "https://data.delijn.be/stops/202578"], ["https://data.delijn.be/stops/508357", "https://data.delijn.be/stops/508951"], ["https://data.delijn.be/stops/304983", "https://data.delijn.be/stops/308015"], ["https://data.delijn.be/stops/404637", "https://data.delijn.be/stops/404638"], ["https://data.delijn.be/stops/404456", "https://data.delijn.be/stops/404481"], ["https://data.delijn.be/stops/202660", "https://data.delijn.be/stops/203661"], ["https://data.delijn.be/stops/105739", "https://data.delijn.be/stops/105744"], ["https://data.delijn.be/stops/301421", "https://data.delijn.be/stops/301422"], ["https://data.delijn.be/stops/503496", "https://data.delijn.be/stops/509003"], ["https://data.delijn.be/stops/206655", "https://data.delijn.be/stops/207656"], ["https://data.delijn.be/stops/304818", "https://data.delijn.be/stops/307975"], ["https://data.delijn.be/stops/504613", "https://data.delijn.be/stops/509615"], ["https://data.delijn.be/stops/201383", "https://data.delijn.be/stops/208731"], ["https://data.delijn.be/stops/400720", "https://data.delijn.be/stops/400721"], ["https://data.delijn.be/stops/104988", "https://data.delijn.be/stops/109480"], ["https://data.delijn.be/stops/403143", "https://data.delijn.be/stops/410272"], ["https://data.delijn.be/stops/308237", "https://data.delijn.be/stops/308244"], ["https://data.delijn.be/stops/200163", "https://data.delijn.be/stops/200419"], ["https://data.delijn.be/stops/101631", "https://data.delijn.be/stops/104347"], ["https://data.delijn.be/stops/301239", "https://data.delijn.be/stops/308257"], ["https://data.delijn.be/stops/502664", "https://data.delijn.be/stops/507664"], ["https://data.delijn.be/stops/406083", "https://data.delijn.be/stops/409406"], ["https://data.delijn.be/stops/300448", "https://data.delijn.be/stops/300453"], ["https://data.delijn.be/stops/101660", "https://data.delijn.be/stops/102634"], ["https://data.delijn.be/stops/101250", "https://data.delijn.be/stops/105265"], ["https://data.delijn.be/stops/502573", "https://data.delijn.be/stops/507573"], ["https://data.delijn.be/stops/507061", "https://data.delijn.be/stops/507070"], ["https://data.delijn.be/stops/508066", "https://data.delijn.be/stops/508696"], ["https://data.delijn.be/stops/205136", "https://data.delijn.be/stops/205147"], ["https://data.delijn.be/stops/201771", "https://data.delijn.be/stops/201827"], ["https://data.delijn.be/stops/102186", "https://data.delijn.be/stops/102191"], ["https://data.delijn.be/stops/407242", "https://data.delijn.be/stops/407467"], ["https://data.delijn.be/stops/501620", "https://data.delijn.be/stops/506614"], ["https://data.delijn.be/stops/307365", "https://data.delijn.be/stops/307370"], ["https://data.delijn.be/stops/500158", "https://data.delijn.be/stops/510026"], ["https://data.delijn.be/stops/307324", "https://data.delijn.be/stops/308675"], ["https://data.delijn.be/stops/300590", "https://data.delijn.be/stops/300621"], ["https://data.delijn.be/stops/404106", "https://data.delijn.be/stops/408739"], ["https://data.delijn.be/stops/106645", "https://data.delijn.be/stops/106676"], ["https://data.delijn.be/stops/200176", "https://data.delijn.be/stops/211112"], ["https://data.delijn.be/stops/501490", "https://data.delijn.be/stops/501491"], ["https://data.delijn.be/stops/106274", "https://data.delijn.be/stops/106276"], ["https://data.delijn.be/stops/504496", "https://data.delijn.be/stops/504663"], ["https://data.delijn.be/stops/405197", "https://data.delijn.be/stops/405199"], ["https://data.delijn.be/stops/303835", "https://data.delijn.be/stops/305896"], ["https://data.delijn.be/stops/501051", "https://data.delijn.be/stops/506051"], ["https://data.delijn.be/stops/208457", "https://data.delijn.be/stops/209676"], ["https://data.delijn.be/stops/408187", "https://data.delijn.be/stops/408188"], ["https://data.delijn.be/stops/408036", "https://data.delijn.be/stops/408199"], ["https://data.delijn.be/stops/503444", "https://data.delijn.be/stops/503966"], ["https://data.delijn.be/stops/504644", "https://data.delijn.be/stops/504648"], ["https://data.delijn.be/stops/208764", "https://data.delijn.be/stops/219015"], ["https://data.delijn.be/stops/405038", "https://data.delijn.be/stops/406548"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/208511"], ["https://data.delijn.be/stops/403612", "https://data.delijn.be/stops/406729"], ["https://data.delijn.be/stops/106485", "https://data.delijn.be/stops/106487"], ["https://data.delijn.be/stops/106008", "https://data.delijn.be/stops/106011"], ["https://data.delijn.be/stops/501003", "https://data.delijn.be/stops/505403"], ["https://data.delijn.be/stops/302520", "https://data.delijn.be/stops/302528"], ["https://data.delijn.be/stops/102899", "https://data.delijn.be/stops/107071"], ["https://data.delijn.be/stops/102385", "https://data.delijn.be/stops/102894"], ["https://data.delijn.be/stops/509775", "https://data.delijn.be/stops/509783"], ["https://data.delijn.be/stops/304978", "https://data.delijn.be/stops/305013"], ["https://data.delijn.be/stops/503898", "https://data.delijn.be/stops/505994"], ["https://data.delijn.be/stops/102195", "https://data.delijn.be/stops/102425"], ["https://data.delijn.be/stops/206588", "https://data.delijn.be/stops/207573"], ["https://data.delijn.be/stops/506642", "https://data.delijn.be/stops/506661"], ["https://data.delijn.be/stops/208749", "https://data.delijn.be/stops/209661"], ["https://data.delijn.be/stops/109353", "https://data.delijn.be/stops/307437"], ["https://data.delijn.be/stops/509071", "https://data.delijn.be/stops/509072"], ["https://data.delijn.be/stops/303309", "https://data.delijn.be/stops/303310"], ["https://data.delijn.be/stops/403163", "https://data.delijn.be/stops/403455"], ["https://data.delijn.be/stops/304819", "https://data.delijn.be/stops/306405"], ["https://data.delijn.be/stops/400558", "https://data.delijn.be/stops/403820"], ["https://data.delijn.be/stops/504209", "https://data.delijn.be/stops/509209"], ["https://data.delijn.be/stops/403459", "https://data.delijn.be/stops/410328"], ["https://data.delijn.be/stops/206131", "https://data.delijn.be/stops/206715"], ["https://data.delijn.be/stops/106917", "https://data.delijn.be/stops/106918"], ["https://data.delijn.be/stops/106448", "https://data.delijn.be/stops/106449"], ["https://data.delijn.be/stops/502471", "https://data.delijn.be/stops/507476"], ["https://data.delijn.be/stops/402609", "https://data.delijn.be/stops/402644"], ["https://data.delijn.be/stops/403066", "https://data.delijn.be/stops/403569"], ["https://data.delijn.be/stops/206983", "https://data.delijn.be/stops/207983"], ["https://data.delijn.be/stops/209153", "https://data.delijn.be/stops/209521"], ["https://data.delijn.be/stops/103994", "https://data.delijn.be/stops/108392"], ["https://data.delijn.be/stops/504112", "https://data.delijn.be/stops/509112"], ["https://data.delijn.be/stops/301351", "https://data.delijn.be/stops/303640"], ["https://data.delijn.be/stops/208097", "https://data.delijn.be/stops/208161"], ["https://data.delijn.be/stops/201923", "https://data.delijn.be/stops/206405"], ["https://data.delijn.be/stops/301043", "https://data.delijn.be/stops/307252"], ["https://data.delijn.be/stops/204095", "https://data.delijn.be/stops/204599"], ["https://data.delijn.be/stops/400418", "https://data.delijn.be/stops/406866"], ["https://data.delijn.be/stops/503023", "https://data.delijn.be/stops/508023"], ["https://data.delijn.be/stops/103110", "https://data.delijn.be/stops/104690"], ["https://data.delijn.be/stops/303227", "https://data.delijn.be/stops/307055"], ["https://data.delijn.be/stops/305318", "https://data.delijn.be/stops/305319"], ["https://data.delijn.be/stops/402880", "https://data.delijn.be/stops/402881"], ["https://data.delijn.be/stops/504846", "https://data.delijn.be/stops/509092"], ["https://data.delijn.be/stops/503566", "https://data.delijn.be/stops/508566"], ["https://data.delijn.be/stops/200414", "https://data.delijn.be/stops/201506"], ["https://data.delijn.be/stops/304806", "https://data.delijn.be/stops/307882"], ["https://data.delijn.be/stops/301303", "https://data.delijn.be/stops/306258"], ["https://data.delijn.be/stops/403438", "https://data.delijn.be/stops/403658"], ["https://data.delijn.be/stops/201915", "https://data.delijn.be/stops/207425"], ["https://data.delijn.be/stops/204393", "https://data.delijn.be/stops/205391"], ["https://data.delijn.be/stops/200494", "https://data.delijn.be/stops/201630"], ["https://data.delijn.be/stops/402817", "https://data.delijn.be/stops/402818"], ["https://data.delijn.be/stops/408590", "https://data.delijn.be/stops/408593"], ["https://data.delijn.be/stops/101571", "https://data.delijn.be/stops/101576"], ["https://data.delijn.be/stops/501484", "https://data.delijn.be/stops/501600"], ["https://data.delijn.be/stops/101877", "https://data.delijn.be/stops/104817"], ["https://data.delijn.be/stops/206433", "https://data.delijn.be/stops/209689"], ["https://data.delijn.be/stops/204633", "https://data.delijn.be/stops/205528"], ["https://data.delijn.be/stops/102616", "https://data.delijn.be/stops/102618"], ["https://data.delijn.be/stops/505147", "https://data.delijn.be/stops/505236"], ["https://data.delijn.be/stops/107126", "https://data.delijn.be/stops/107128"], ["https://data.delijn.be/stops/200585", "https://data.delijn.be/stops/211078"], ["https://data.delijn.be/stops/105337", "https://data.delijn.be/stops/105341"], ["https://data.delijn.be/stops/208149", "https://data.delijn.be/stops/208150"], ["https://data.delijn.be/stops/107382", "https://data.delijn.be/stops/109600"], ["https://data.delijn.be/stops/303704", "https://data.delijn.be/stops/303709"], ["https://data.delijn.be/stops/308239", "https://data.delijn.be/stops/308241"], ["https://data.delijn.be/stops/305150", "https://data.delijn.be/stops/305175"], ["https://data.delijn.be/stops/201026", "https://data.delijn.be/stops/201069"], ["https://data.delijn.be/stops/400095", "https://data.delijn.be/stops/401976"], ["https://data.delijn.be/stops/103926", "https://data.delijn.be/stops/106901"], ["https://data.delijn.be/stops/107926", "https://data.delijn.be/stops/107927"], ["https://data.delijn.be/stops/205106", "https://data.delijn.be/stops/205482"], ["https://data.delijn.be/stops/307213", "https://data.delijn.be/stops/307726"], ["https://data.delijn.be/stops/401820", "https://data.delijn.be/stops/410356"], ["https://data.delijn.be/stops/303894", "https://data.delijn.be/stops/308654"], ["https://data.delijn.be/stops/306165", "https://data.delijn.be/stops/308586"], ["https://data.delijn.be/stops/207031", "https://data.delijn.be/stops/207032"], ["https://data.delijn.be/stops/400465", "https://data.delijn.be/stops/408833"], ["https://data.delijn.be/stops/302111", "https://data.delijn.be/stops/304144"], ["https://data.delijn.be/stops/301569", "https://data.delijn.be/stops/306100"], ["https://data.delijn.be/stops/103931", "https://data.delijn.be/stops/103932"], ["https://data.delijn.be/stops/104781", "https://data.delijn.be/stops/109620"], ["https://data.delijn.be/stops/304387", "https://data.delijn.be/stops/306873"], ["https://data.delijn.be/stops/305464", "https://data.delijn.be/stops/305858"], ["https://data.delijn.be/stops/201810", "https://data.delijn.be/stops/208325"], ["https://data.delijn.be/stops/508291", "https://data.delijn.be/stops/509936"], ["https://data.delijn.be/stops/400643", "https://data.delijn.be/stops/400909"], ["https://data.delijn.be/stops/201172", "https://data.delijn.be/stops/201550"], ["https://data.delijn.be/stops/105741", "https://data.delijn.be/stops/109950"], ["https://data.delijn.be/stops/208034", "https://data.delijn.be/stops/209033"], ["https://data.delijn.be/stops/300704", "https://data.delijn.be/stops/308067"], ["https://data.delijn.be/stops/104022", "https://data.delijn.be/stops/107232"], ["https://data.delijn.be/stops/205499", "https://data.delijn.be/stops/205544"], ["https://data.delijn.be/stops/201928", "https://data.delijn.be/stops/203522"], ["https://data.delijn.be/stops/502266", "https://data.delijn.be/stops/507263"], ["https://data.delijn.be/stops/404216", "https://data.delijn.be/stops/404219"], ["https://data.delijn.be/stops/103473", "https://data.delijn.be/stops/108268"], ["https://data.delijn.be/stops/202961", "https://data.delijn.be/stops/206409"], ["https://data.delijn.be/stops/502047", "https://data.delijn.be/stops/502617"], ["https://data.delijn.be/stops/205102", "https://data.delijn.be/stops/205702"], ["https://data.delijn.be/stops/406739", "https://data.delijn.be/stops/407502"], ["https://data.delijn.be/stops/505095", "https://data.delijn.be/stops/505098"], ["https://data.delijn.be/stops/407758", "https://data.delijn.be/stops/409744"], ["https://data.delijn.be/stops/300395", "https://data.delijn.be/stops/301098"], ["https://data.delijn.be/stops/502182", "https://data.delijn.be/stops/507180"], ["https://data.delijn.be/stops/400052", "https://data.delijn.be/stops/409163"], ["https://data.delijn.be/stops/105476", "https://data.delijn.be/stops/105478"], ["https://data.delijn.be/stops/508306", "https://data.delijn.be/stops/508968"], ["https://data.delijn.be/stops/101782", "https://data.delijn.be/stops/103364"], ["https://data.delijn.be/stops/300581", "https://data.delijn.be/stops/300588"], ["https://data.delijn.be/stops/306164", "https://data.delijn.be/stops/306166"], ["https://data.delijn.be/stops/108165", "https://data.delijn.be/stops/108170"], ["https://data.delijn.be/stops/300243", "https://data.delijn.be/stops/304625"], ["https://data.delijn.be/stops/200899", "https://data.delijn.be/stops/202052"], ["https://data.delijn.be/stops/308486", "https://data.delijn.be/stops/308487"], ["https://data.delijn.be/stops/104039", "https://data.delijn.be/stops/108372"], ["https://data.delijn.be/stops/505549", "https://data.delijn.be/stops/509153"], ["https://data.delijn.be/stops/408140", "https://data.delijn.be/stops/408194"], ["https://data.delijn.be/stops/407205", "https://data.delijn.be/stops/408811"], ["https://data.delijn.be/stops/101576", "https://data.delijn.be/stops/105464"], ["https://data.delijn.be/stops/306619", "https://data.delijn.be/stops/308479"], ["https://data.delijn.be/stops/102604", "https://data.delijn.be/stops/105517"], ["https://data.delijn.be/stops/202827", "https://data.delijn.be/stops/203837"], ["https://data.delijn.be/stops/504667", "https://data.delijn.be/stops/508042"], ["https://data.delijn.be/stops/301953", "https://data.delijn.be/stops/301954"], ["https://data.delijn.be/stops/304797", "https://data.delijn.be/stops/306645"], ["https://data.delijn.be/stops/205181", "https://data.delijn.be/stops/205368"], ["https://data.delijn.be/stops/505737", "https://data.delijn.be/stops/507324"], ["https://data.delijn.be/stops/101087", "https://data.delijn.be/stops/105973"], ["https://data.delijn.be/stops/401864", "https://data.delijn.be/stops/401865"], ["https://data.delijn.be/stops/307613", "https://data.delijn.be/stops/307907"], ["https://data.delijn.be/stops/201919", "https://data.delijn.be/stops/206835"], ["https://data.delijn.be/stops/407682", "https://data.delijn.be/stops/407695"], ["https://data.delijn.be/stops/407602", "https://data.delijn.be/stops/407610"], ["https://data.delijn.be/stops/208070", "https://data.delijn.be/stops/208087"], ["https://data.delijn.be/stops/106956", "https://data.delijn.be/stops/109734"], ["https://data.delijn.be/stops/202695", "https://data.delijn.be/stops/203695"], ["https://data.delijn.be/stops/201886", "https://data.delijn.be/stops/203978"], ["https://data.delijn.be/stops/108064", "https://data.delijn.be/stops/108067"], ["https://data.delijn.be/stops/105366", "https://data.delijn.be/stops/105367"], ["https://data.delijn.be/stops/206105", "https://data.delijn.be/stops/306724"], ["https://data.delijn.be/stops/302226", "https://data.delijn.be/stops/307716"], ["https://data.delijn.be/stops/404220", "https://data.delijn.be/stops/405547"], ["https://data.delijn.be/stops/103573", "https://data.delijn.be/stops/103574"], ["https://data.delijn.be/stops/405904", "https://data.delijn.be/stops/405972"], ["https://data.delijn.be/stops/405161", "https://data.delijn.be/stops/405278"], ["https://data.delijn.be/stops/504630", "https://data.delijn.be/stops/509629"], ["https://data.delijn.be/stops/503210", "https://data.delijn.be/stops/507764"], ["https://data.delijn.be/stops/401783", "https://data.delijn.be/stops/401806"], ["https://data.delijn.be/stops/107493", "https://data.delijn.be/stops/305794"], ["https://data.delijn.be/stops/503463", "https://data.delijn.be/stops/508192"], ["https://data.delijn.be/stops/105464", "https://data.delijn.be/stops/105663"], ["https://data.delijn.be/stops/207040", "https://data.delijn.be/stops/207297"], ["https://data.delijn.be/stops/405031", "https://data.delijn.be/stops/405032"], ["https://data.delijn.be/stops/300613", "https://data.delijn.be/stops/300614"], ["https://data.delijn.be/stops/103364", "https://data.delijn.be/stops/103393"], ["https://data.delijn.be/stops/400992", "https://data.delijn.be/stops/401033"], ["https://data.delijn.be/stops/503494", "https://data.delijn.be/stops/508502"], ["https://data.delijn.be/stops/106356", "https://data.delijn.be/stops/106357"], ["https://data.delijn.be/stops/300933", "https://data.delijn.be/stops/305887"], ["https://data.delijn.be/stops/503242", "https://data.delijn.be/stops/503253"], ["https://data.delijn.be/stops/408278", "https://data.delijn.be/stops/408279"], ["https://data.delijn.be/stops/108382", "https://data.delijn.be/stops/108383"], ["https://data.delijn.be/stops/400552", "https://data.delijn.be/stops/403194"], ["https://data.delijn.be/stops/401589", "https://data.delijn.be/stops/402125"], ["https://data.delijn.be/stops/101235", "https://data.delijn.be/stops/101240"], ["https://data.delijn.be/stops/507525", "https://data.delijn.be/stops/507808"], ["https://data.delijn.be/stops/107622", "https://data.delijn.be/stops/107624"], ["https://data.delijn.be/stops/302387", "https://data.delijn.be/stops/302390"], ["https://data.delijn.be/stops/204460", "https://data.delijn.be/stops/205118"], ["https://data.delijn.be/stops/106622", "https://data.delijn.be/stops/108016"], ["https://data.delijn.be/stops/504423", "https://data.delijn.be/stops/504825"], ["https://data.delijn.be/stops/501082", "https://data.delijn.be/stops/501083"], ["https://data.delijn.be/stops/200203", "https://data.delijn.be/stops/202555"], ["https://data.delijn.be/stops/505257", "https://data.delijn.be/stops/505259"], ["https://data.delijn.be/stops/101366", "https://data.delijn.be/stops/103242"], ["https://data.delijn.be/stops/301020", "https://data.delijn.be/stops/301752"], ["https://data.delijn.be/stops/501441", "https://data.delijn.be/stops/590334"], ["https://data.delijn.be/stops/208240", "https://data.delijn.be/stops/208717"], ["https://data.delijn.be/stops/501197", "https://data.delijn.be/stops/506197"], ["https://data.delijn.be/stops/300515", "https://data.delijn.be/stops/300518"], ["https://data.delijn.be/stops/300541", "https://data.delijn.be/stops/303220"], ["https://data.delijn.be/stops/201068", "https://data.delijn.be/stops/201189"], ["https://data.delijn.be/stops/410132", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/206867", "https://data.delijn.be/stops/208811"], ["https://data.delijn.be/stops/403997", "https://data.delijn.be/stops/404010"], ["https://data.delijn.be/stops/400339", "https://data.delijn.be/stops/400400"], ["https://data.delijn.be/stops/205664", "https://data.delijn.be/stops/205687"], ["https://data.delijn.be/stops/104706", "https://data.delijn.be/stops/108173"], ["https://data.delijn.be/stops/503179", "https://data.delijn.be/stops/505637"], ["https://data.delijn.be/stops/304279", "https://data.delijn.be/stops/304280"], ["https://data.delijn.be/stops/305000", "https://data.delijn.be/stops/305020"], ["https://data.delijn.be/stops/204061", "https://data.delijn.be/stops/204062"], ["https://data.delijn.be/stops/206460", "https://data.delijn.be/stops/206861"], ["https://data.delijn.be/stops/101082", "https://data.delijn.be/stops/101084"], ["https://data.delijn.be/stops/108937", "https://data.delijn.be/stops/108938"], ["https://data.delijn.be/stops/202961", "https://data.delijn.be/stops/203961"], ["https://data.delijn.be/stops/205695", "https://data.delijn.be/stops/205730"], ["https://data.delijn.be/stops/407841", "https://data.delijn.be/stops/407993"], ["https://data.delijn.be/stops/501381", "https://data.delijn.be/stops/506381"], ["https://data.delijn.be/stops/403270", "https://data.delijn.be/stops/410325"], ["https://data.delijn.be/stops/206077", "https://data.delijn.be/stops/207077"], ["https://data.delijn.be/stops/305527", "https://data.delijn.be/stops/305528"], ["https://data.delijn.be/stops/108647", "https://data.delijn.be/stops/109677"], ["https://data.delijn.be/stops/302720", "https://data.delijn.be/stops/308835"], ["https://data.delijn.be/stops/503756", "https://data.delijn.be/stops/508322"], ["https://data.delijn.be/stops/502343", "https://data.delijn.be/stops/507343"], ["https://data.delijn.be/stops/503437", "https://data.delijn.be/stops/508100"], ["https://data.delijn.be/stops/403421", "https://data.delijn.be/stops/409147"], ["https://data.delijn.be/stops/303285", "https://data.delijn.be/stops/303310"], ["https://data.delijn.be/stops/504249", "https://data.delijn.be/stops/504449"], ["https://data.delijn.be/stops/202258", "https://data.delijn.be/stops/203100"], ["https://data.delijn.be/stops/404758", "https://data.delijn.be/stops/404791"], ["https://data.delijn.be/stops/504718", "https://data.delijn.be/stops/505841"], ["https://data.delijn.be/stops/103210", "https://data.delijn.be/stops/106285"], ["https://data.delijn.be/stops/403853", "https://data.delijn.be/stops/403858"], ["https://data.delijn.be/stops/404168", "https://data.delijn.be/stops/410185"], ["https://data.delijn.be/stops/403049", "https://data.delijn.be/stops/403067"], ["https://data.delijn.be/stops/208414", "https://data.delijn.be/stops/208748"], ["https://data.delijn.be/stops/507688", "https://data.delijn.be/stops/508764"], ["https://data.delijn.be/stops/200593", "https://data.delijn.be/stops/201592"], ["https://data.delijn.be/stops/403820", "https://data.delijn.be/stops/407042"], ["https://data.delijn.be/stops/400965", "https://data.delijn.be/stops/401249"], ["https://data.delijn.be/stops/505327", "https://data.delijn.be/stops/505721"], ["https://data.delijn.be/stops/405823", "https://data.delijn.be/stops/409416"], ["https://data.delijn.be/stops/503837", "https://data.delijn.be/stops/508779"], ["https://data.delijn.be/stops/401561", "https://data.delijn.be/stops/401741"], ["https://data.delijn.be/stops/301359", "https://data.delijn.be/stops/301397"], ["https://data.delijn.be/stops/507689", "https://data.delijn.be/stops/509740"], ["https://data.delijn.be/stops/102203", "https://data.delijn.be/stops/102204"], ["https://data.delijn.be/stops/402495", "https://data.delijn.be/stops/402497"], ["https://data.delijn.be/stops/206863", "https://data.delijn.be/stops/206923"], ["https://data.delijn.be/stops/101672", "https://data.delijn.be/stops/103156"], ["https://data.delijn.be/stops/300007", "https://data.delijn.be/stops/304682"], ["https://data.delijn.be/stops/108907", "https://data.delijn.be/stops/108909"], ["https://data.delijn.be/stops/106764", "https://data.delijn.be/stops/106765"], ["https://data.delijn.be/stops/305439", "https://data.delijn.be/stops/305506"], ["https://data.delijn.be/stops/502734", "https://data.delijn.be/stops/507734"], ["https://data.delijn.be/stops/406955", "https://data.delijn.be/stops/406959"], ["https://data.delijn.be/stops/102399", "https://data.delijn.be/stops/108140"], ["https://data.delijn.be/stops/200094", "https://data.delijn.be/stops/202132"], ["https://data.delijn.be/stops/204662", "https://data.delijn.be/stops/205661"], ["https://data.delijn.be/stops/206772", "https://data.delijn.be/stops/209031"], ["https://data.delijn.be/stops/107004", "https://data.delijn.be/stops/107006"], ["https://data.delijn.be/stops/106887", "https://data.delijn.be/stops/106888"], ["https://data.delijn.be/stops/201233", "https://data.delijn.be/stops/203353"], ["https://data.delijn.be/stops/506682", "https://data.delijn.be/stops/509658"], ["https://data.delijn.be/stops/301582", "https://data.delijn.be/stops/304960"], ["https://data.delijn.be/stops/206779", "https://data.delijn.be/stops/209046"], ["https://data.delijn.be/stops/207676", "https://data.delijn.be/stops/209134"], ["https://data.delijn.be/stops/504418", "https://data.delijn.be/stops/509418"], ["https://data.delijn.be/stops/200334", "https://data.delijn.be/stops/202399"], ["https://data.delijn.be/stops/200239", "https://data.delijn.be/stops/200275"], ["https://data.delijn.be/stops/401828", "https://data.delijn.be/stops/406031"], ["https://data.delijn.be/stops/506771", "https://data.delijn.be/stops/506774"], ["https://data.delijn.be/stops/402855", "https://data.delijn.be/stops/408970"], ["https://data.delijn.be/stops/402313", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/400091", "https://data.delijn.be/stops/400104"], ["https://data.delijn.be/stops/304480", "https://data.delijn.be/stops/304483"], ["https://data.delijn.be/stops/400582", "https://data.delijn.be/stops/400600"], ["https://data.delijn.be/stops/107358", "https://data.delijn.be/stops/107359"], ["https://data.delijn.be/stops/501462", "https://data.delijn.be/stops/501536"], ["https://data.delijn.be/stops/200449", "https://data.delijn.be/stops/201450"], ["https://data.delijn.be/stops/200137", "https://data.delijn.be/stops/201137"], ["https://data.delijn.be/stops/303623", "https://data.delijn.be/stops/304272"], ["https://data.delijn.be/stops/302376", "https://data.delijn.be/stops/302383"], ["https://data.delijn.be/stops/400052", "https://data.delijn.be/stops/400064"], ["https://data.delijn.be/stops/400737", "https://data.delijn.be/stops/405667"], ["https://data.delijn.be/stops/200357", "https://data.delijn.be/stops/203651"], ["https://data.delijn.be/stops/108193", "https://data.delijn.be/stops/108196"], ["https://data.delijn.be/stops/406160", "https://data.delijn.be/stops/406161"], ["https://data.delijn.be/stops/301876", "https://data.delijn.be/stops/304326"], ["https://data.delijn.be/stops/101367", "https://data.delijn.be/stops/102746"], ["https://data.delijn.be/stops/109893", "https://data.delijn.be/stops/109895"], ["https://data.delijn.be/stops/400165", "https://data.delijn.be/stops/400169"], ["https://data.delijn.be/stops/201916", "https://data.delijn.be/stops/201917"], ["https://data.delijn.be/stops/218021", "https://data.delijn.be/stops/219021"], ["https://data.delijn.be/stops/504179", "https://data.delijn.be/stops/504182"], ["https://data.delijn.be/stops/403025", "https://data.delijn.be/stops/403410"], ["https://data.delijn.be/stops/206617", "https://data.delijn.be/stops/206619"], ["https://data.delijn.be/stops/201213", "https://data.delijn.be/stops/203554"], ["https://data.delijn.be/stops/105415", "https://data.delijn.be/stops/105435"], ["https://data.delijn.be/stops/507176", "https://data.delijn.be/stops/508699"], ["https://data.delijn.be/stops/400410", "https://data.delijn.be/stops/406858"], ["https://data.delijn.be/stops/502034", "https://data.delijn.be/stops/507029"], ["https://data.delijn.be/stops/400028", "https://data.delijn.be/stops/400429"], ["https://data.delijn.be/stops/302004", "https://data.delijn.be/stops/302053"], ["https://data.delijn.be/stops/504704", "https://data.delijn.be/stops/509026"], ["https://data.delijn.be/stops/101722", "https://data.delijn.be/stops/105261"], ["https://data.delijn.be/stops/106633", "https://data.delijn.be/stops/106634"], ["https://data.delijn.be/stops/206479", "https://data.delijn.be/stops/206480"], ["https://data.delijn.be/stops/402800", "https://data.delijn.be/stops/409048"], ["https://data.delijn.be/stops/402842", "https://data.delijn.be/stops/409228"], ["https://data.delijn.be/stops/101494", "https://data.delijn.be/stops/108304"], ["https://data.delijn.be/stops/101022", "https://data.delijn.be/stops/105130"], ["https://data.delijn.be/stops/204363", "https://data.delijn.be/stops/205015"], ["https://data.delijn.be/stops/200060", "https://data.delijn.be/stops/201060"], ["https://data.delijn.be/stops/308776", "https://data.delijn.be/stops/308779"], ["https://data.delijn.be/stops/405449", "https://data.delijn.be/stops/407901"], ["https://data.delijn.be/stops/503908", "https://data.delijn.be/stops/507068"], ["https://data.delijn.be/stops/204124", "https://data.delijn.be/stops/205127"], ["https://data.delijn.be/stops/509381", "https://data.delijn.be/stops/509534"], ["https://data.delijn.be/stops/307695", "https://data.delijn.be/stops/307698"], ["https://data.delijn.be/stops/504123", "https://data.delijn.be/stops/509123"], ["https://data.delijn.be/stops/401239", "https://data.delijn.be/stops/401267"], ["https://data.delijn.be/stops/301830", "https://data.delijn.be/stops/305860"], ["https://data.delijn.be/stops/404710", "https://data.delijn.be/stops/404711"], ["https://data.delijn.be/stops/200225", "https://data.delijn.be/stops/201225"], ["https://data.delijn.be/stops/204983", "https://data.delijn.be/stops/207199"], ["https://data.delijn.be/stops/101019", "https://data.delijn.be/stops/105635"], ["https://data.delijn.be/stops/202921", "https://data.delijn.be/stops/203922"], ["https://data.delijn.be/stops/106762", "https://data.delijn.be/stops/106857"], ["https://data.delijn.be/stops/203906", "https://data.delijn.be/stops/203907"], ["https://data.delijn.be/stops/207518", "https://data.delijn.be/stops/209686"], ["https://data.delijn.be/stops/300669", "https://data.delijn.be/stops/305964"], ["https://data.delijn.be/stops/201923", "https://data.delijn.be/stops/205979"], ["https://data.delijn.be/stops/502931", "https://data.delijn.be/stops/502932"], ["https://data.delijn.be/stops/201578", "https://data.delijn.be/stops/202756"], ["https://data.delijn.be/stops/305261", "https://data.delijn.be/stops/305298"], ["https://data.delijn.be/stops/104964", "https://data.delijn.be/stops/109460"], ["https://data.delijn.be/stops/107654", "https://data.delijn.be/stops/406770"], ["https://data.delijn.be/stops/501665", "https://data.delijn.be/stops/506671"], ["https://data.delijn.be/stops/104540", "https://data.delijn.be/stops/109005"], ["https://data.delijn.be/stops/407854", "https://data.delijn.be/stops/407856"], ["https://data.delijn.be/stops/206839", "https://data.delijn.be/stops/206840"], ["https://data.delijn.be/stops/207750", "https://data.delijn.be/stops/207929"], ["https://data.delijn.be/stops/402264", "https://data.delijn.be/stops/402422"], ["https://data.delijn.be/stops/302733", "https://data.delijn.be/stops/308594"], ["https://data.delijn.be/stops/205990", "https://data.delijn.be/stops/208778"], ["https://data.delijn.be/stops/503363", "https://data.delijn.be/stops/508363"], ["https://data.delijn.be/stops/101752", "https://data.delijn.be/stops/105753"], ["https://data.delijn.be/stops/302073", "https://data.delijn.be/stops/306350"], ["https://data.delijn.be/stops/109461", "https://data.delijn.be/stops/109462"], ["https://data.delijn.be/stops/503994", "https://data.delijn.be/stops/505832"], ["https://data.delijn.be/stops/400106", "https://data.delijn.be/stops/410339"], ["https://data.delijn.be/stops/300012", "https://data.delijn.be/stops/300758"], ["https://data.delijn.be/stops/101641", "https://data.delijn.be/stops/109755"], ["https://data.delijn.be/stops/300761", "https://data.delijn.be/stops/300783"], ["https://data.delijn.be/stops/404285", "https://data.delijn.be/stops/407260"], ["https://data.delijn.be/stops/103121", "https://data.delijn.be/stops/103127"], ["https://data.delijn.be/stops/502352", "https://data.delijn.be/stops/505054"], ["https://data.delijn.be/stops/401765", "https://data.delijn.be/stops/406319"], ["https://data.delijn.be/stops/200809", "https://data.delijn.be/stops/200888"], ["https://data.delijn.be/stops/503331", "https://data.delijn.be/stops/505268"], ["https://data.delijn.be/stops/407537", "https://data.delijn.be/stops/409109"], ["https://data.delijn.be/stops/501413", "https://data.delijn.be/stops/506414"], ["https://data.delijn.be/stops/303284", "https://data.delijn.be/stops/303317"], ["https://data.delijn.be/stops/502452", "https://data.delijn.be/stops/507451"], ["https://data.delijn.be/stops/401243", "https://data.delijn.be/stops/401268"], ["https://data.delijn.be/stops/106295", "https://data.delijn.be/stops/106296"], ["https://data.delijn.be/stops/309670", "https://data.delijn.be/stops/309671"], ["https://data.delijn.be/stops/109087", "https://data.delijn.be/stops/109315"], ["https://data.delijn.be/stops/200817", "https://data.delijn.be/stops/201734"], ["https://data.delijn.be/stops/200204", "https://data.delijn.be/stops/202555"], ["https://data.delijn.be/stops/402245", "https://data.delijn.be/stops/402255"], ["https://data.delijn.be/stops/305623", "https://data.delijn.be/stops/308377"], ["https://data.delijn.be/stops/104683", "https://data.delijn.be/stops/104696"], ["https://data.delijn.be/stops/406116", "https://data.delijn.be/stops/406117"], ["https://data.delijn.be/stops/206898", "https://data.delijn.be/stops/206899"], ["https://data.delijn.be/stops/403772", "https://data.delijn.be/stops/403775"], ["https://data.delijn.be/stops/208279", "https://data.delijn.be/stops/208398"], ["https://data.delijn.be/stops/301261", "https://data.delijn.be/stops/307409"], ["https://data.delijn.be/stops/101951", "https://data.delijn.be/stops/108797"], ["https://data.delijn.be/stops/107378", "https://data.delijn.be/stops/107379"], ["https://data.delijn.be/stops/301771", "https://data.delijn.be/stops/301772"], ["https://data.delijn.be/stops/508634", "https://data.delijn.be/stops/508981"], ["https://data.delijn.be/stops/202158", "https://data.delijn.be/stops/202159"], ["https://data.delijn.be/stops/105569", "https://data.delijn.be/stops/105571"], ["https://data.delijn.be/stops/304725", "https://data.delijn.be/stops/305558"], ["https://data.delijn.be/stops/201957", "https://data.delijn.be/stops/203261"], ["https://data.delijn.be/stops/202730", "https://data.delijn.be/stops/203225"], ["https://data.delijn.be/stops/401776", "https://data.delijn.be/stops/406144"], ["https://data.delijn.be/stops/106347", "https://data.delijn.be/stops/106349"], ["https://data.delijn.be/stops/204230", "https://data.delijn.be/stops/204232"], ["https://data.delijn.be/stops/300123", "https://data.delijn.be/stops/306868"], ["https://data.delijn.be/stops/505588", "https://data.delijn.be/stops/507501"], ["https://data.delijn.be/stops/503532", "https://data.delijn.be/stops/504760"], ["https://data.delijn.be/stops/400032", "https://data.delijn.be/stops/400045"], ["https://data.delijn.be/stops/101590", "https://data.delijn.be/stops/109135"], ["https://data.delijn.be/stops/101856", "https://data.delijn.be/stops/102950"], ["https://data.delijn.be/stops/403874", "https://data.delijn.be/stops/408184"], ["https://data.delijn.be/stops/102912", "https://data.delijn.be/stops/106703"], ["https://data.delijn.be/stops/502599", "https://data.delijn.be/stops/507769"], ["https://data.delijn.be/stops/101195", "https://data.delijn.be/stops/103357"], ["https://data.delijn.be/stops/506945", "https://data.delijn.be/stops/508135"], ["https://data.delijn.be/stops/208426", "https://data.delijn.be/stops/208680"], ["https://data.delijn.be/stops/106222", "https://data.delijn.be/stops/106336"], ["https://data.delijn.be/stops/103532", "https://data.delijn.be/stops/106337"], ["https://data.delijn.be/stops/202065", "https://data.delijn.be/stops/202729"], ["https://data.delijn.be/stops/107122", "https://data.delijn.be/stops/107126"], ["https://data.delijn.be/stops/308235", "https://data.delijn.be/stops/308239"], ["https://data.delijn.be/stops/206664", "https://data.delijn.be/stops/206712"], ["https://data.delijn.be/stops/503629", "https://data.delijn.be/stops/590009"], ["https://data.delijn.be/stops/108094", "https://data.delijn.be/stops/108095"], ["https://data.delijn.be/stops/104054", "https://data.delijn.be/stops/108141"], ["https://data.delijn.be/stops/400955", "https://data.delijn.be/stops/407487"], ["https://data.delijn.be/stops/303867", "https://data.delijn.be/stops/303868"], ["https://data.delijn.be/stops/402118", "https://data.delijn.be/stops/402126"], ["https://data.delijn.be/stops/501016", "https://data.delijn.be/stops/501534"], ["https://data.delijn.be/stops/102947", "https://data.delijn.be/stops/106239"], ["https://data.delijn.be/stops/306815", "https://data.delijn.be/stops/308505"], ["https://data.delijn.be/stops/503177", "https://data.delijn.be/stops/508177"], ["https://data.delijn.be/stops/208369", "https://data.delijn.be/stops/209195"], ["https://data.delijn.be/stops/201673", "https://data.delijn.be/stops/203206"], ["https://data.delijn.be/stops/204501", "https://data.delijn.be/stops/205531"], ["https://data.delijn.be/stops/501355", "https://data.delijn.be/stops/501546"], ["https://data.delijn.be/stops/404522", "https://data.delijn.be/stops/404538"], ["https://data.delijn.be/stops/206006", "https://data.delijn.be/stops/207006"], ["https://data.delijn.be/stops/302790", "https://data.delijn.be/stops/307455"], ["https://data.delijn.be/stops/201229", "https://data.delijn.be/stops/211047"], ["https://data.delijn.be/stops/204069", "https://data.delijn.be/stops/204187"], ["https://data.delijn.be/stops/106166", "https://data.delijn.be/stops/106170"], ["https://data.delijn.be/stops/302764", "https://data.delijn.be/stops/307471"], ["https://data.delijn.be/stops/202343", "https://data.delijn.be/stops/203951"], ["https://data.delijn.be/stops/505078", "https://data.delijn.be/stops/505802"], ["https://data.delijn.be/stops/207680", "https://data.delijn.be/stops/208194"], ["https://data.delijn.be/stops/202234", "https://data.delijn.be/stops/203235"], ["https://data.delijn.be/stops/300608", "https://data.delijn.be/stops/300611"], ["https://data.delijn.be/stops/106874", "https://data.delijn.be/stops/106876"], ["https://data.delijn.be/stops/204471", "https://data.delijn.be/stops/205472"], ["https://data.delijn.be/stops/102208", "https://data.delijn.be/stops/106124"], ["https://data.delijn.be/stops/108952", "https://data.delijn.be/stops/109218"], ["https://data.delijn.be/stops/202949", "https://data.delijn.be/stops/203950"], ["https://data.delijn.be/stops/201696", "https://data.delijn.be/stops/203384"], ["https://data.delijn.be/stops/406827", "https://data.delijn.be/stops/409688"], ["https://data.delijn.be/stops/409263", "https://data.delijn.be/stops/409309"], ["https://data.delijn.be/stops/505289", "https://data.delijn.be/stops/505926"], ["https://data.delijn.be/stops/502814", "https://data.delijn.be/stops/505931"], ["https://data.delijn.be/stops/501744", "https://data.delijn.be/stops/504128"], ["https://data.delijn.be/stops/105452", "https://data.delijn.be/stops/109936"], ["https://data.delijn.be/stops/507200", "https://data.delijn.be/stops/509312"], ["https://data.delijn.be/stops/504668", "https://data.delijn.be/stops/508316"], ["https://data.delijn.be/stops/102011", "https://data.delijn.be/stops/109869"], ["https://data.delijn.be/stops/503032", "https://data.delijn.be/stops/507767"], ["https://data.delijn.be/stops/510004", "https://data.delijn.be/stops/510005"], ["https://data.delijn.be/stops/107512", "https://data.delijn.be/stops/107513"], ["https://data.delijn.be/stops/502550", "https://data.delijn.be/stops/507655"], ["https://data.delijn.be/stops/502590", "https://data.delijn.be/stops/507595"], ["https://data.delijn.be/stops/109578", "https://data.delijn.be/stops/109579"], ["https://data.delijn.be/stops/200688", "https://data.delijn.be/stops/200693"], ["https://data.delijn.be/stops/108218", "https://data.delijn.be/stops/108223"], ["https://data.delijn.be/stops/200860", "https://data.delijn.be/stops/202286"], ["https://data.delijn.be/stops/300613", "https://data.delijn.be/stops/307864"], ["https://data.delijn.be/stops/301337", "https://data.delijn.be/stops/301339"], ["https://data.delijn.be/stops/201582", "https://data.delijn.be/stops/211078"], ["https://data.delijn.be/stops/108296", "https://data.delijn.be/stops/109735"], ["https://data.delijn.be/stops/509139", "https://data.delijn.be/stops/509685"], ["https://data.delijn.be/stops/407369", "https://data.delijn.be/stops/407407"], ["https://data.delijn.be/stops/304851", "https://data.delijn.be/stops/308649"], ["https://data.delijn.be/stops/302074", "https://data.delijn.be/stops/302075"], ["https://data.delijn.be/stops/203345", "https://data.delijn.be/stops/205975"], ["https://data.delijn.be/stops/401135", "https://data.delijn.be/stops/401138"], ["https://data.delijn.be/stops/303692", "https://data.delijn.be/stops/303695"], ["https://data.delijn.be/stops/503354", "https://data.delijn.be/stops/508420"], ["https://data.delijn.be/stops/105413", "https://data.delijn.be/stops/109849"], ["https://data.delijn.be/stops/400611", "https://data.delijn.be/stops/400627"], ["https://data.delijn.be/stops/505424", "https://data.delijn.be/stops/505787"], ["https://data.delijn.be/stops/208136", "https://data.delijn.be/stops/208137"], ["https://data.delijn.be/stops/204522", "https://data.delijn.be/stops/205726"], ["https://data.delijn.be/stops/303185", "https://data.delijn.be/stops/307074"], ["https://data.delijn.be/stops/104584", "https://data.delijn.be/stops/104586"], ["https://data.delijn.be/stops/502387", "https://data.delijn.be/stops/502389"], ["https://data.delijn.be/stops/502692", "https://data.delijn.be/stops/505318"], ["https://data.delijn.be/stops/501002", "https://data.delijn.be/stops/501216"], ["https://data.delijn.be/stops/207424", "https://data.delijn.be/stops/207568"], ["https://data.delijn.be/stops/405783", "https://data.delijn.be/stops/409764"], ["https://data.delijn.be/stops/101870", "https://data.delijn.be/stops/102930"], ["https://data.delijn.be/stops/200168", "https://data.delijn.be/stops/202623"], ["https://data.delijn.be/stops/403739", "https://data.delijn.be/stops/403815"], ["https://data.delijn.be/stops/107537", "https://data.delijn.be/stops/303881"], ["https://data.delijn.be/stops/107454", "https://data.delijn.be/stops/107455"], ["https://data.delijn.be/stops/301258", "https://data.delijn.be/stops/301260"], ["https://data.delijn.be/stops/202538", "https://data.delijn.be/stops/209722"], ["https://data.delijn.be/stops/405385", "https://data.delijn.be/stops/405496"], ["https://data.delijn.be/stops/101468", "https://data.delijn.be/stops/109266"], ["https://data.delijn.be/stops/403804", "https://data.delijn.be/stops/403805"], ["https://data.delijn.be/stops/208075", "https://data.delijn.be/stops/208076"], ["https://data.delijn.be/stops/403652", "https://data.delijn.be/stops/407344"], ["https://data.delijn.be/stops/101658", "https://data.delijn.be/stops/104449"], ["https://data.delijn.be/stops/207872", "https://data.delijn.be/stops/208403"], ["https://data.delijn.be/stops/103334", "https://data.delijn.be/stops/103337"], ["https://data.delijn.be/stops/200062", "https://data.delijn.be/stops/200064"], ["https://data.delijn.be/stops/200068", "https://data.delijn.be/stops/200186"], ["https://data.delijn.be/stops/502472", "https://data.delijn.be/stops/507479"], ["https://data.delijn.be/stops/102610", "https://data.delijn.be/stops/106100"], ["https://data.delijn.be/stops/207941", "https://data.delijn.be/stops/219012"], ["https://data.delijn.be/stops/200720", "https://data.delijn.be/stops/210043"], ["https://data.delijn.be/stops/302225", "https://data.delijn.be/stops/304912"], ["https://data.delijn.be/stops/103042", "https://data.delijn.be/stops/107522"], ["https://data.delijn.be/stops/408059", "https://data.delijn.be/stops/303263"], ["https://data.delijn.be/stops/202197", "https://data.delijn.be/stops/203169"], ["https://data.delijn.be/stops/300525", "https://data.delijn.be/stops/302788"], ["https://data.delijn.be/stops/404795", "https://data.delijn.be/stops/404812"], ["https://data.delijn.be/stops/507113", "https://data.delijn.be/stops/507164"], ["https://data.delijn.be/stops/400901", "https://data.delijn.be/stops/408473"], ["https://data.delijn.be/stops/305612", "https://data.delijn.be/stops/305618"], ["https://data.delijn.be/stops/101953", "https://data.delijn.be/stops/108793"], ["https://data.delijn.be/stops/302669", "https://data.delijn.be/stops/307905"], ["https://data.delijn.be/stops/108949", "https://data.delijn.be/stops/108952"], ["https://data.delijn.be/stops/201851", "https://data.delijn.be/stops/201874"], ["https://data.delijn.be/stops/405614", "https://data.delijn.be/stops/407161"], ["https://data.delijn.be/stops/403250", "https://data.delijn.be/stops/403290"], ["https://data.delijn.be/stops/504412", "https://data.delijn.be/stops/509412"], ["https://data.delijn.be/stops/407623", "https://data.delijn.be/stops/407706"], ["https://data.delijn.be/stops/400063", "https://data.delijn.be/stops/400138"], ["https://data.delijn.be/stops/304306", "https://data.delijn.be/stops/307006"], ["https://data.delijn.be/stops/109058", "https://data.delijn.be/stops/405050"], ["https://data.delijn.be/stops/503597", "https://data.delijn.be/stops/508596"], ["https://data.delijn.be/stops/303839", "https://data.delijn.be/stops/303862"], ["https://data.delijn.be/stops/208657", "https://data.delijn.be/stops/209657"], ["https://data.delijn.be/stops/503428", "https://data.delijn.be/stops/505369"], ["https://data.delijn.be/stops/503368", "https://data.delijn.be/stops/508438"], ["https://data.delijn.be/stops/505338", "https://data.delijn.be/stops/507334"], ["https://data.delijn.be/stops/204229", "https://data.delijn.be/stops/205228"], ["https://data.delijn.be/stops/406998", "https://data.delijn.be/stops/407144"], ["https://data.delijn.be/stops/307158", "https://data.delijn.be/stops/307162"], ["https://data.delijn.be/stops/302324", "https://data.delijn.be/stops/303447"], ["https://data.delijn.be/stops/102722", "https://data.delijn.be/stops/108309"], ["https://data.delijn.be/stops/303745", "https://data.delijn.be/stops/303752"], ["https://data.delijn.be/stops/402547", "https://data.delijn.be/stops/402588"], ["https://data.delijn.be/stops/401637", "https://data.delijn.be/stops/308208"], ["https://data.delijn.be/stops/303243", "https://data.delijn.be/stops/304650"], ["https://data.delijn.be/stops/508808", "https://data.delijn.be/stops/508810"], ["https://data.delijn.be/stops/404156", "https://data.delijn.be/stops/404177"], ["https://data.delijn.be/stops/400039", "https://data.delijn.be/stops/400041"], ["https://data.delijn.be/stops/500948", "https://data.delijn.be/stops/509207"], ["https://data.delijn.be/stops/308464", "https://data.delijn.be/stops/308466"], ["https://data.delijn.be/stops/302709", "https://data.delijn.be/stops/302747"], ["https://data.delijn.be/stops/508040", "https://data.delijn.be/stops/508045"], ["https://data.delijn.be/stops/505076", "https://data.delijn.be/stops/507478"], ["https://data.delijn.be/stops/103993", "https://data.delijn.be/stops/105317"], ["https://data.delijn.be/stops/206566", "https://data.delijn.be/stops/207997"], ["https://data.delijn.be/stops/400942", "https://data.delijn.be/stops/400943"], ["https://data.delijn.be/stops/307972", "https://data.delijn.be/stops/307973"], ["https://data.delijn.be/stops/101148", "https://data.delijn.be/stops/106857"], ["https://data.delijn.be/stops/106899", "https://data.delijn.be/stops/106900"], ["https://data.delijn.be/stops/200422", "https://data.delijn.be/stops/200451"], ["https://data.delijn.be/stops/407055", "https://data.delijn.be/stops/410015"], ["https://data.delijn.be/stops/507211", "https://data.delijn.be/stops/507212"], ["https://data.delijn.be/stops/501409", "https://data.delijn.be/stops/501413"], ["https://data.delijn.be/stops/204918", "https://data.delijn.be/stops/205910"], ["https://data.delijn.be/stops/407298", "https://data.delijn.be/stops/303647"], ["https://data.delijn.be/stops/409068", "https://data.delijn.be/stops/409069"], ["https://data.delijn.be/stops/206030", "https://data.delijn.be/stops/207901"], ["https://data.delijn.be/stops/503141", "https://data.delijn.be/stops/509884"], ["https://data.delijn.be/stops/102922", "https://data.delijn.be/stops/104492"], ["https://data.delijn.be/stops/501298", "https://data.delijn.be/stops/506298"], ["https://data.delijn.be/stops/501324", "https://data.delijn.be/stops/506294"], ["https://data.delijn.be/stops/206479", "https://data.delijn.be/stops/207479"], ["https://data.delijn.be/stops/208281", "https://data.delijn.be/stops/209280"], ["https://data.delijn.be/stops/404103", "https://data.delijn.be/stops/404126"], ["https://data.delijn.be/stops/202927", "https://data.delijn.be/stops/203927"], ["https://data.delijn.be/stops/304866", "https://data.delijn.be/stops/306224"], ["https://data.delijn.be/stops/302203", "https://data.delijn.be/stops/308645"], ["https://data.delijn.be/stops/200459", "https://data.delijn.be/stops/201459"], ["https://data.delijn.be/stops/202637", "https://data.delijn.be/stops/203120"], ["https://data.delijn.be/stops/208240", "https://data.delijn.be/stops/209240"], ["https://data.delijn.be/stops/207275", "https://data.delijn.be/stops/207968"], ["https://data.delijn.be/stops/502229", "https://data.delijn.be/stops/507240"], ["https://data.delijn.be/stops/205997", "https://data.delijn.be/stops/508642"], ["https://data.delijn.be/stops/301274", "https://data.delijn.be/stops/307614"], ["https://data.delijn.be/stops/400757", "https://data.delijn.be/stops/407663"], ["https://data.delijn.be/stops/305698", "https://data.delijn.be/stops/305752"], ["https://data.delijn.be/stops/304460", "https://data.delijn.be/stops/304461"], ["https://data.delijn.be/stops/206341", "https://data.delijn.be/stops/207713"], ["https://data.delijn.be/stops/403257", "https://data.delijn.be/stops/410212"], ["https://data.delijn.be/stops/205523", "https://data.delijn.be/stops/205727"], ["https://data.delijn.be/stops/302667", "https://data.delijn.be/stops/302684"], ["https://data.delijn.be/stops/103945", "https://data.delijn.be/stops/109709"], ["https://data.delijn.be/stops/204171", "https://data.delijn.be/stops/205170"], ["https://data.delijn.be/stops/202888", "https://data.delijn.be/stops/203889"], ["https://data.delijn.be/stops/505187", "https://data.delijn.be/stops/509560"], ["https://data.delijn.be/stops/502918", "https://data.delijn.be/stops/505316"], ["https://data.delijn.be/stops/305915", "https://data.delijn.be/stops/305916"], ["https://data.delijn.be/stops/202827", "https://data.delijn.be/stops/202835"], ["https://data.delijn.be/stops/105350", "https://data.delijn.be/stops/105351"], ["https://data.delijn.be/stops/107247", "https://data.delijn.be/stops/107248"], ["https://data.delijn.be/stops/503261", "https://data.delijn.be/stops/508261"], ["https://data.delijn.be/stops/405852", "https://data.delijn.be/stops/405853"], ["https://data.delijn.be/stops/408475", "https://data.delijn.be/stops/410070"], ["https://data.delijn.be/stops/509233", "https://data.delijn.be/stops/509240"], ["https://data.delijn.be/stops/301586", "https://data.delijn.be/stops/308084"], ["https://data.delijn.be/stops/301495", "https://data.delijn.be/stops/301496"], ["https://data.delijn.be/stops/504135", "https://data.delijn.be/stops/509653"], ["https://data.delijn.be/stops/206628", "https://data.delijn.be/stops/209573"], ["https://data.delijn.be/stops/308471", "https://data.delijn.be/stops/308472"], ["https://data.delijn.be/stops/108706", "https://data.delijn.be/stops/108855"], ["https://data.delijn.be/stops/305083", "https://data.delijn.be/stops/306955"], ["https://data.delijn.be/stops/503229", "https://data.delijn.be/stops/505272"], ["https://data.delijn.be/stops/408538", "https://data.delijn.be/stops/408564"], ["https://data.delijn.be/stops/200725", "https://data.delijn.be/stops/210256"], ["https://data.delijn.be/stops/300977", "https://data.delijn.be/stops/300981"], ["https://data.delijn.be/stops/507310", "https://data.delijn.be/stops/507311"], ["https://data.delijn.be/stops/401095", "https://data.delijn.be/stops/401097"], ["https://data.delijn.be/stops/208607", "https://data.delijn.be/stops/209607"], ["https://data.delijn.be/stops/300708", "https://data.delijn.be/stops/303422"], ["https://data.delijn.be/stops/204503", "https://data.delijn.be/stops/205502"], ["https://data.delijn.be/stops/102501", "https://data.delijn.be/stops/400020"], ["https://data.delijn.be/stops/407641", "https://data.delijn.be/stops/407764"], ["https://data.delijn.be/stops/409355", "https://data.delijn.be/stops/409375"], ["https://data.delijn.be/stops/409427", "https://data.delijn.be/stops/409438"], ["https://data.delijn.be/stops/404995", "https://data.delijn.be/stops/404996"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/504418"], ["https://data.delijn.be/stops/208585", "https://data.delijn.be/stops/208586"], ["https://data.delijn.be/stops/502038", "https://data.delijn.be/stops/507049"], ["https://data.delijn.be/stops/106756", "https://data.delijn.be/stops/106759"], ["https://data.delijn.be/stops/504008", "https://data.delijn.be/stops/509008"], ["https://data.delijn.be/stops/102966", "https://data.delijn.be/stops/103737"], ["https://data.delijn.be/stops/505268", "https://data.delijn.be/stops/508048"], ["https://data.delijn.be/stops/503623", "https://data.delijn.be/stops/505291"], ["https://data.delijn.be/stops/402821", "https://data.delijn.be/stops/406568"], ["https://data.delijn.be/stops/103963", "https://data.delijn.be/stops/108999"], ["https://data.delijn.be/stops/400673", "https://data.delijn.be/stops/410264"], ["https://data.delijn.be/stops/404183", "https://data.delijn.be/stops/404281"], ["https://data.delijn.be/stops/200306", "https://data.delijn.be/stops/203199"], ["https://data.delijn.be/stops/405623", "https://data.delijn.be/stops/405624"], ["https://data.delijn.be/stops/107539", "https://data.delijn.be/stops/109613"], ["https://data.delijn.be/stops/202587", "https://data.delijn.be/stops/203587"], ["https://data.delijn.be/stops/201696", "https://data.delijn.be/stops/202391"], ["https://data.delijn.be/stops/102247", "https://data.delijn.be/stops/105865"], ["https://data.delijn.be/stops/402421", "https://data.delijn.be/stops/404498"], ["https://data.delijn.be/stops/302457", "https://data.delijn.be/stops/302458"], ["https://data.delijn.be/stops/403298", "https://data.delijn.be/stops/403544"], ["https://data.delijn.be/stops/404469", "https://data.delijn.be/stops/404533"], ["https://data.delijn.be/stops/302896", "https://data.delijn.be/stops/302905"], ["https://data.delijn.be/stops/404493", "https://data.delijn.be/stops/406979"], ["https://data.delijn.be/stops/403925", "https://data.delijn.be/stops/403960"], ["https://data.delijn.be/stops/503362", "https://data.delijn.be/stops/508362"], ["https://data.delijn.be/stops/409215", "https://data.delijn.be/stops/409224"], ["https://data.delijn.be/stops/502178", "https://data.delijn.be/stops/507921"], ["https://data.delijn.be/stops/406460", "https://data.delijn.be/stops/410246"], ["https://data.delijn.be/stops/205430", "https://data.delijn.be/stops/205766"], ["https://data.delijn.be/stops/403960", "https://data.delijn.be/stops/403966"], ["https://data.delijn.be/stops/503268", "https://data.delijn.be/stops/503275"], ["https://data.delijn.be/stops/407909", "https://data.delijn.be/stops/407949"], ["https://data.delijn.be/stops/502390", "https://data.delijn.be/stops/507909"], ["https://data.delijn.be/stops/403243", "https://data.delijn.be/stops/403861"], ["https://data.delijn.be/stops/404355", "https://data.delijn.be/stops/404899"], ["https://data.delijn.be/stops/405144", "https://data.delijn.be/stops/405217"], ["https://data.delijn.be/stops/204139", "https://data.delijn.be/stops/209912"], ["https://data.delijn.be/stops/300409", "https://data.delijn.be/stops/304636"], ["https://data.delijn.be/stops/505970", "https://data.delijn.be/stops/509408"], ["https://data.delijn.be/stops/402587", "https://data.delijn.be/stops/408126"], ["https://data.delijn.be/stops/301049", "https://data.delijn.be/stops/305916"], ["https://data.delijn.be/stops/506299", "https://data.delijn.be/stops/506353"], ["https://data.delijn.be/stops/509245", "https://data.delijn.be/stops/509247"], ["https://data.delijn.be/stops/502344", "https://data.delijn.be/stops/502345"], ["https://data.delijn.be/stops/404848", "https://data.delijn.be/stops/409628"], ["https://data.delijn.be/stops/408920", "https://data.delijn.be/stops/408921"], ["https://data.delijn.be/stops/302804", "https://data.delijn.be/stops/302805"], ["https://data.delijn.be/stops/104939", "https://data.delijn.be/stops/107852"], ["https://data.delijn.be/stops/502634", "https://data.delijn.be/stops/507067"], ["https://data.delijn.be/stops/305880", "https://data.delijn.be/stops/307276"], ["https://data.delijn.be/stops/202085", "https://data.delijn.be/stops/203086"], ["https://data.delijn.be/stops/107857", "https://data.delijn.be/stops/107858"], ["https://data.delijn.be/stops/102646", "https://data.delijn.be/stops/205799"], ["https://data.delijn.be/stops/200132", "https://data.delijn.be/stops/200133"], ["https://data.delijn.be/stops/403409", "https://data.delijn.be/stops/405127"], ["https://data.delijn.be/stops/101078", "https://data.delijn.be/stops/101082"], ["https://data.delijn.be/stops/406797", "https://data.delijn.be/stops/410101"], ["https://data.delijn.be/stops/300435", "https://data.delijn.be/stops/300436"], ["https://data.delijn.be/stops/502109", "https://data.delijn.be/stops/507109"], ["https://data.delijn.be/stops/106803", "https://data.delijn.be/stops/106870"], ["https://data.delijn.be/stops/305797", "https://data.delijn.be/stops/305798"], ["https://data.delijn.be/stops/503788", "https://data.delijn.be/stops/508777"], ["https://data.delijn.be/stops/208020", "https://data.delijn.be/stops/209015"], ["https://data.delijn.be/stops/304803", "https://data.delijn.be/stops/304810"], ["https://data.delijn.be/stops/200632", "https://data.delijn.be/stops/201632"], ["https://data.delijn.be/stops/406101", "https://data.delijn.be/stops/407145"], ["https://data.delijn.be/stops/400716", "https://data.delijn.be/stops/400774"], ["https://data.delijn.be/stops/106743", "https://data.delijn.be/stops/106744"], ["https://data.delijn.be/stops/200087", "https://data.delijn.be/stops/202209"], ["https://data.delijn.be/stops/304233", "https://data.delijn.be/stops/304290"], ["https://data.delijn.be/stops/106074", "https://data.delijn.be/stops/106075"], ["https://data.delijn.be/stops/504509", "https://data.delijn.be/stops/509500"], ["https://data.delijn.be/stops/206199", "https://data.delijn.be/stops/207199"], ["https://data.delijn.be/stops/303819", "https://data.delijn.be/stops/307496"], ["https://data.delijn.be/stops/409190", "https://data.delijn.be/stops/410259"], ["https://data.delijn.be/stops/502008", "https://data.delijn.be/stops/505771"], ["https://data.delijn.be/stops/303082", "https://data.delijn.be/stops/308757"], ["https://data.delijn.be/stops/204521", "https://data.delijn.be/stops/205521"], ["https://data.delijn.be/stops/503660", "https://data.delijn.be/stops/503666"], ["https://data.delijn.be/stops/503034", "https://data.delijn.be/stops/503037"], ["https://data.delijn.be/stops/206337", "https://data.delijn.be/stops/206361"], ["https://data.delijn.be/stops/201577", "https://data.delijn.be/stops/201578"], ["https://data.delijn.be/stops/105427", "https://data.delijn.be/stops/105428"], ["https://data.delijn.be/stops/407302", "https://data.delijn.be/stops/407303"], ["https://data.delijn.be/stops/200500", "https://data.delijn.be/stops/201651"], ["https://data.delijn.be/stops/200977", "https://data.delijn.be/stops/202907"], ["https://data.delijn.be/stops/304038", "https://data.delijn.be/stops/304039"], ["https://data.delijn.be/stops/102672", "https://data.delijn.be/stops/102673"], ["https://data.delijn.be/stops/304994", "https://data.delijn.be/stops/304995"], ["https://data.delijn.be/stops/204631", "https://data.delijn.be/stops/205632"], ["https://data.delijn.be/stops/206870", "https://data.delijn.be/stops/206939"], ["https://data.delijn.be/stops/408333", "https://data.delijn.be/stops/408340"], ["https://data.delijn.be/stops/204688", "https://data.delijn.be/stops/204689"], ["https://data.delijn.be/stops/404882", "https://data.delijn.be/stops/404883"], ["https://data.delijn.be/stops/201701", "https://data.delijn.be/stops/203559"], ["https://data.delijn.be/stops/103771", "https://data.delijn.be/stops/106507"], ["https://data.delijn.be/stops/305048", "https://data.delijn.be/stops/305051"], ["https://data.delijn.be/stops/204288", "https://data.delijn.be/stops/205546"], ["https://data.delijn.be/stops/302336", "https://data.delijn.be/stops/304895"], ["https://data.delijn.be/stops/300956", "https://data.delijn.be/stops/300962"], ["https://data.delijn.be/stops/204506", "https://data.delijn.be/stops/205821"], ["https://data.delijn.be/stops/503277", "https://data.delijn.be/stops/503587"], ["https://data.delijn.be/stops/101046", "https://data.delijn.be/stops/105978"], ["https://data.delijn.be/stops/402506", "https://data.delijn.be/stops/402628"], ["https://data.delijn.be/stops/206421", "https://data.delijn.be/stops/207965"], ["https://data.delijn.be/stops/503835", "https://data.delijn.be/stops/509816"], ["https://data.delijn.be/stops/305098", "https://data.delijn.be/stops/305127"], ["https://data.delijn.be/stops/204503", "https://data.delijn.be/stops/205332"], ["https://data.delijn.be/stops/105154", "https://data.delijn.be/stops/105157"], ["https://data.delijn.be/stops/301854", "https://data.delijn.be/stops/302097"], ["https://data.delijn.be/stops/303616", "https://data.delijn.be/stops/304651"], ["https://data.delijn.be/stops/104893", "https://data.delijn.be/stops/105444"], ["https://data.delijn.be/stops/308161", "https://data.delijn.be/stops/308195"], ["https://data.delijn.be/stops/301984", "https://data.delijn.be/stops/306314"], ["https://data.delijn.be/stops/201712", "https://data.delijn.be/stops/201723"], ["https://data.delijn.be/stops/208471", "https://data.delijn.be/stops/209673"], ["https://data.delijn.be/stops/400444", "https://data.delijn.be/stops/401264"], ["https://data.delijn.be/stops/101800", "https://data.delijn.be/stops/101806"], ["https://data.delijn.be/stops/300079", "https://data.delijn.be/stops/307344"], ["https://data.delijn.be/stops/203397", "https://data.delijn.be/stops/203610"], ["https://data.delijn.be/stops/406222", "https://data.delijn.be/stops/406223"], ["https://data.delijn.be/stops/101151", "https://data.delijn.be/stops/101152"], ["https://data.delijn.be/stops/408206", "https://data.delijn.be/stops/408207"], ["https://data.delijn.be/stops/302263", "https://data.delijn.be/stops/302969"], ["https://data.delijn.be/stops/505949", "https://data.delijn.be/stops/508314"], ["https://data.delijn.be/stops/405894", "https://data.delijn.be/stops/308277"], ["https://data.delijn.be/stops/200488", "https://data.delijn.be/stops/201488"], ["https://data.delijn.be/stops/401346", "https://data.delijn.be/stops/401347"], ["https://data.delijn.be/stops/504559", "https://data.delijn.be/stops/509558"], ["https://data.delijn.be/stops/304157", "https://data.delijn.be/stops/307543"], ["https://data.delijn.be/stops/502506", "https://data.delijn.be/stops/505630"], ["https://data.delijn.be/stops/200996", "https://data.delijn.be/stops/201996"], ["https://data.delijn.be/stops/206060", "https://data.delijn.be/stops/206446"], ["https://data.delijn.be/stops/503365", "https://data.delijn.be/stops/508365"], ["https://data.delijn.be/stops/303256", "https://data.delijn.be/stops/303257"], ["https://data.delijn.be/stops/403977", "https://data.delijn.be/stops/408709"], ["https://data.delijn.be/stops/402544", "https://data.delijn.be/stops/402545"], ["https://data.delijn.be/stops/206594", "https://data.delijn.be/stops/207594"], ["https://data.delijn.be/stops/408901", "https://data.delijn.be/stops/408903"], ["https://data.delijn.be/stops/407630", "https://data.delijn.be/stops/407657"], ["https://data.delijn.be/stops/102655", "https://data.delijn.be/stops/107900"], ["https://data.delijn.be/stops/402644", "https://data.delijn.be/stops/402645"], ["https://data.delijn.be/stops/504403", "https://data.delijn.be/stops/504415"], ["https://data.delijn.be/stops/402310", "https://data.delijn.be/stops/402311"], ["https://data.delijn.be/stops/400176", "https://data.delijn.be/stops/400276"], ["https://data.delijn.be/stops/105574", "https://data.delijn.be/stops/106358"], ["https://data.delijn.be/stops/504419", "https://data.delijn.be/stops/509401"], ["https://data.delijn.be/stops/405033", "https://data.delijn.be/stops/405118"], ["https://data.delijn.be/stops/501292", "https://data.delijn.be/stops/501323"], ["https://data.delijn.be/stops/106427", "https://data.delijn.be/stops/106558"], ["https://data.delijn.be/stops/203225", "https://data.delijn.be/stops/203730"], ["https://data.delijn.be/stops/408804", "https://data.delijn.be/stops/408810"], ["https://data.delijn.be/stops/202733", "https://data.delijn.be/stops/203733"], ["https://data.delijn.be/stops/206078", "https://data.delijn.be/stops/207078"], ["https://data.delijn.be/stops/204341", "https://data.delijn.be/stops/205449"], ["https://data.delijn.be/stops/104044", "https://data.delijn.be/stops/104046"], ["https://data.delijn.be/stops/503907", "https://data.delijn.be/stops/504981"], ["https://data.delijn.be/stops/306873", "https://data.delijn.be/stops/307954"], ["https://data.delijn.be/stops/106727", "https://data.delijn.be/stops/107747"], ["https://data.delijn.be/stops/400044", "https://data.delijn.be/stops/400325"], ["https://data.delijn.be/stops/102292", "https://data.delijn.be/stops/108293"], ["https://data.delijn.be/stops/207959", "https://data.delijn.be/stops/216016"], ["https://data.delijn.be/stops/503946", "https://data.delijn.be/stops/508160"], ["https://data.delijn.be/stops/300969", "https://data.delijn.be/stops/301102"], ["https://data.delijn.be/stops/209073", "https://data.delijn.be/stops/209074"], ["https://data.delijn.be/stops/301995", "https://data.delijn.be/stops/306315"], ["https://data.delijn.be/stops/407622", "https://data.delijn.be/stops/407623"], ["https://data.delijn.be/stops/307935", "https://data.delijn.be/stops/307936"], ["https://data.delijn.be/stops/208461", "https://data.delijn.be/stops/209467"], ["https://data.delijn.be/stops/400473", "https://data.delijn.be/stops/404663"], ["https://data.delijn.be/stops/206517", "https://data.delijn.be/stops/207517"], ["https://data.delijn.be/stops/503263", "https://data.delijn.be/stops/509867"], ["https://data.delijn.be/stops/106738", "https://data.delijn.be/stops/107197"], ["https://data.delijn.be/stops/504992", "https://data.delijn.be/stops/505120"], ["https://data.delijn.be/stops/204393", "https://data.delijn.be/stops/205393"], ["https://data.delijn.be/stops/102949", "https://data.delijn.be/stops/102961"], ["https://data.delijn.be/stops/501695", "https://data.delijn.be/stops/505675"], ["https://data.delijn.be/stops/504574", "https://data.delijn.be/stops/509463"], ["https://data.delijn.be/stops/401523", "https://data.delijn.be/stops/401744"], ["https://data.delijn.be/stops/202848", "https://data.delijn.be/stops/211022"], ["https://data.delijn.be/stops/200402", "https://data.delijn.be/stops/202365"], ["https://data.delijn.be/stops/408543", "https://data.delijn.be/stops/408614"], ["https://data.delijn.be/stops/502414", "https://data.delijn.be/stops/507431"], ["https://data.delijn.be/stops/200079", "https://data.delijn.be/stops/201079"], ["https://data.delijn.be/stops/202237", "https://data.delijn.be/stops/203238"], ["https://data.delijn.be/stops/501506", "https://data.delijn.be/stops/506513"], ["https://data.delijn.be/stops/401015", "https://data.delijn.be/stops/401149"], ["https://data.delijn.be/stops/500138", "https://data.delijn.be/stops/590332"], ["https://data.delijn.be/stops/108843", "https://data.delijn.be/stops/108845"], ["https://data.delijn.be/stops/404364", "https://data.delijn.be/stops/404369"], ["https://data.delijn.be/stops/407290", "https://data.delijn.be/stops/407311"], ["https://data.delijn.be/stops/200374", "https://data.delijn.be/stops/201374"], ["https://data.delijn.be/stops/102467", "https://data.delijn.be/stops/400145"], ["https://data.delijn.be/stops/505929", "https://data.delijn.be/stops/508294"], ["https://data.delijn.be/stops/208375", "https://data.delijn.be/stops/209375"], ["https://data.delijn.be/stops/305894", "https://data.delijn.be/stops/308136"], ["https://data.delijn.be/stops/302157", "https://data.delijn.be/stops/307114"], ["https://data.delijn.be/stops/208127", "https://data.delijn.be/stops/209128"], ["https://data.delijn.be/stops/307373", "https://data.delijn.be/stops/307374"], ["https://data.delijn.be/stops/403474", "https://data.delijn.be/stops/403475"], ["https://data.delijn.be/stops/501247", "https://data.delijn.be/stops/501254"], ["https://data.delijn.be/stops/302036", "https://data.delijn.be/stops/303894"], ["https://data.delijn.be/stops/505089", "https://data.delijn.be/stops/507344"], ["https://data.delijn.be/stops/500120", "https://data.delijn.be/stops/509830"], ["https://data.delijn.be/stops/207832", "https://data.delijn.be/stops/207833"], ["https://data.delijn.be/stops/204002", "https://data.delijn.be/stops/205002"], ["https://data.delijn.be/stops/401290", "https://data.delijn.be/stops/401315"], ["https://data.delijn.be/stops/407644", "https://data.delijn.be/stops/407656"], ["https://data.delijn.be/stops/502060", "https://data.delijn.be/stops/507060"], ["https://data.delijn.be/stops/202652", "https://data.delijn.be/stops/203652"], ["https://data.delijn.be/stops/503964", "https://data.delijn.be/stops/504626"], ["https://data.delijn.be/stops/107620", "https://data.delijn.be/stops/107625"], ["https://data.delijn.be/stops/408517", "https://data.delijn.be/stops/408788"], ["https://data.delijn.be/stops/305103", "https://data.delijn.be/stops/305129"], ["https://data.delijn.be/stops/300006", "https://data.delijn.be/stops/306201"], ["https://data.delijn.be/stops/502448", "https://data.delijn.be/stops/502466"], ["https://data.delijn.be/stops/208459", "https://data.delijn.be/stops/208513"], ["https://data.delijn.be/stops/103541", "https://data.delijn.be/stops/106727"], ["https://data.delijn.be/stops/203277", "https://data.delijn.be/stops/203662"], ["https://data.delijn.be/stops/405308", "https://data.delijn.be/stops/405474"], ["https://data.delijn.be/stops/200442", "https://data.delijn.be/stops/201443"], ["https://data.delijn.be/stops/105431", "https://data.delijn.be/stops/105433"], ["https://data.delijn.be/stops/304373", "https://data.delijn.be/stops/305992"], ["https://data.delijn.be/stops/402306", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/503497", "https://data.delijn.be/stops/503503"], ["https://data.delijn.be/stops/107026", "https://data.delijn.be/stops/107028"], ["https://data.delijn.be/stops/403962", "https://data.delijn.be/stops/403973"], ["https://data.delijn.be/stops/403145", "https://data.delijn.be/stops/403156"], ["https://data.delijn.be/stops/200196", "https://data.delijn.be/stops/201429"], ["https://data.delijn.be/stops/408252", "https://data.delijn.be/stops/408352"], ["https://data.delijn.be/stops/105106", "https://data.delijn.be/stops/106969"], ["https://data.delijn.be/stops/305777", "https://data.delijn.be/stops/305780"], ["https://data.delijn.be/stops/305856", "https://data.delijn.be/stops/305857"], ["https://data.delijn.be/stops/108538", "https://data.delijn.be/stops/108616"], ["https://data.delijn.be/stops/107427", "https://data.delijn.be/stops/107503"], ["https://data.delijn.be/stops/405904", "https://data.delijn.be/stops/405905"], ["https://data.delijn.be/stops/107258", "https://data.delijn.be/stops/107261"], ["https://data.delijn.be/stops/305514", "https://data.delijn.be/stops/305518"], ["https://data.delijn.be/stops/401783", "https://data.delijn.be/stops/401874"], ["https://data.delijn.be/stops/404810", "https://data.delijn.be/stops/406109"], ["https://data.delijn.be/stops/208575", "https://data.delijn.be/stops/306270"], ["https://data.delijn.be/stops/101870", "https://data.delijn.be/stops/103520"], ["https://data.delijn.be/stops/101374", "https://data.delijn.be/stops/101378"], ["https://data.delijn.be/stops/103085", "https://data.delijn.be/stops/104256"], ["https://data.delijn.be/stops/303396", "https://data.delijn.be/stops/307137"], ["https://data.delijn.be/stops/400446", "https://data.delijn.be/stops/401270"], ["https://data.delijn.be/stops/507422", "https://data.delijn.be/stops/507440"], ["https://data.delijn.be/stops/101922", "https://data.delijn.be/stops/109946"], ["https://data.delijn.be/stops/200368", "https://data.delijn.be/stops/209265"], ["https://data.delijn.be/stops/202290", "https://data.delijn.be/stops/203292"], ["https://data.delijn.be/stops/201769", "https://data.delijn.be/stops/201770"], ["https://data.delijn.be/stops/505967", "https://data.delijn.be/stops/509008"], ["https://data.delijn.be/stops/204384", "https://data.delijn.be/stops/205186"], ["https://data.delijn.be/stops/504691", "https://data.delijn.be/stops/504868"], ["https://data.delijn.be/stops/200233", "https://data.delijn.be/stops/210051"], ["https://data.delijn.be/stops/200145", "https://data.delijn.be/stops/201023"], ["https://data.delijn.be/stops/304565", "https://data.delijn.be/stops/304601"], ["https://data.delijn.be/stops/405894", "https://data.delijn.be/stops/405895"], ["https://data.delijn.be/stops/208227", "https://data.delijn.be/stops/209796"], ["https://data.delijn.be/stops/301424", "https://data.delijn.be/stops/306267"], ["https://data.delijn.be/stops/206362", "https://data.delijn.be/stops/207376"], ["https://data.delijn.be/stops/408222", "https://data.delijn.be/stops/408223"], ["https://data.delijn.be/stops/304893", "https://data.delijn.be/stops/304904"], ["https://data.delijn.be/stops/402525", "https://data.delijn.be/stops/402643"], ["https://data.delijn.be/stops/503164", "https://data.delijn.be/stops/508609"], ["https://data.delijn.be/stops/208534", "https://data.delijn.be/stops/209517"], ["https://data.delijn.be/stops/305169", "https://data.delijn.be/stops/305188"], ["https://data.delijn.be/stops/103059", "https://data.delijn.be/stops/303877"], ["https://data.delijn.be/stops/509774", "https://data.delijn.be/stops/509784"], ["https://data.delijn.be/stops/500136", "https://data.delijn.be/stops/502074"], ["https://data.delijn.be/stops/201752", "https://data.delijn.be/stops/201753"], ["https://data.delijn.be/stops/108453", "https://data.delijn.be/stops/304920"], ["https://data.delijn.be/stops/102913", "https://data.delijn.be/stops/106703"], ["https://data.delijn.be/stops/500041", "https://data.delijn.be/stops/500048"], ["https://data.delijn.be/stops/206737", "https://data.delijn.be/stops/207991"], ["https://data.delijn.be/stops/104995", "https://data.delijn.be/stops/105395"], ["https://data.delijn.be/stops/205418", "https://data.delijn.be/stops/205429"], ["https://data.delijn.be/stops/203092", "https://data.delijn.be/stops/203720"], ["https://data.delijn.be/stops/300320", "https://data.delijn.be/stops/300872"], ["https://data.delijn.be/stops/403040", "https://data.delijn.be/stops/403430"], ["https://data.delijn.be/stops/303370", "https://data.delijn.be/stops/303371"], ["https://data.delijn.be/stops/206627", "https://data.delijn.be/stops/208573"], ["https://data.delijn.be/stops/201079", "https://data.delijn.be/stops/203895"], ["https://data.delijn.be/stops/508865", "https://data.delijn.be/stops/508963"], ["https://data.delijn.be/stops/505515", "https://data.delijn.be/stops/505612"], ["https://data.delijn.be/stops/106804", "https://data.delijn.be/stops/106870"], ["https://data.delijn.be/stops/301339", "https://data.delijn.be/stops/301345"], ["https://data.delijn.be/stops/502510", "https://data.delijn.be/stops/507506"], ["https://data.delijn.be/stops/108336", "https://data.delijn.be/stops/109334"], ["https://data.delijn.be/stops/407984", "https://data.delijn.be/stops/408020"], ["https://data.delijn.be/stops/300847", "https://data.delijn.be/stops/308926"], ["https://data.delijn.be/stops/208815", "https://data.delijn.be/stops/209131"], ["https://data.delijn.be/stops/106016", "https://data.delijn.be/stops/106854"], ["https://data.delijn.be/stops/208314", "https://data.delijn.be/stops/209769"], ["https://data.delijn.be/stops/206412", "https://data.delijn.be/stops/206455"], ["https://data.delijn.be/stops/105674", "https://data.delijn.be/stops/106755"], ["https://data.delijn.be/stops/407581", "https://data.delijn.be/stops/408911"], ["https://data.delijn.be/stops/206519", "https://data.delijn.be/stops/216006"], ["https://data.delijn.be/stops/302348", "https://data.delijn.be/stops/302365"], ["https://data.delijn.be/stops/403209", "https://data.delijn.be/stops/403220"], ["https://data.delijn.be/stops/406127", "https://data.delijn.be/stops/408926"], ["https://data.delijn.be/stops/301379", "https://data.delijn.be/stops/306150"], ["https://data.delijn.be/stops/205985", "https://data.delijn.be/stops/207564"], ["https://data.delijn.be/stops/200694", "https://data.delijn.be/stops/203788"], ["https://data.delijn.be/stops/207519", "https://data.delijn.be/stops/216008"], ["https://data.delijn.be/stops/307870", "https://data.delijn.be/stops/307871"], ["https://data.delijn.be/stops/501338", "https://data.delijn.be/stops/501772"], ["https://data.delijn.be/stops/303206", "https://data.delijn.be/stops/304323"], ["https://data.delijn.be/stops/200937", "https://data.delijn.be/stops/202435"], ["https://data.delijn.be/stops/304545", "https://data.delijn.be/stops/304546"], ["https://data.delijn.be/stops/408067", "https://data.delijn.be/stops/408069"], ["https://data.delijn.be/stops/501309", "https://data.delijn.be/stops/506345"], ["https://data.delijn.be/stops/508033", "https://data.delijn.be/stops/508372"], ["https://data.delijn.be/stops/106676", "https://data.delijn.be/stops/106679"], ["https://data.delijn.be/stops/402116", "https://data.delijn.be/stops/402139"], ["https://data.delijn.be/stops/506332", "https://data.delijn.be/stops/506474"], ["https://data.delijn.be/stops/407216", "https://data.delijn.be/stops/407217"], ["https://data.delijn.be/stops/201115", "https://data.delijn.be/stops/201116"], ["https://data.delijn.be/stops/400033", "https://data.delijn.be/stops/400035"], ["https://data.delijn.be/stops/105137", "https://data.delijn.be/stops/305826"], ["https://data.delijn.be/stops/504619", "https://data.delijn.be/stops/504627"], ["https://data.delijn.be/stops/408255", "https://data.delijn.be/stops/408393"], ["https://data.delijn.be/stops/101908", "https://data.delijn.be/stops/101917"], ["https://data.delijn.be/stops/408552", "https://data.delijn.be/stops/408660"], ["https://data.delijn.be/stops/401892", "https://data.delijn.be/stops/402030"], ["https://data.delijn.be/stops/207766", "https://data.delijn.be/stops/208191"], ["https://data.delijn.be/stops/401919", "https://data.delijn.be/stops/404374"], ["https://data.delijn.be/stops/302868", "https://data.delijn.be/stops/302893"], ["https://data.delijn.be/stops/401380", "https://data.delijn.be/stops/410175"], ["https://data.delijn.be/stops/106914", "https://data.delijn.be/stops/106916"], ["https://data.delijn.be/stops/103493", "https://data.delijn.be/stops/109143"], ["https://data.delijn.be/stops/501291", "https://data.delijn.be/stops/501546"], ["https://data.delijn.be/stops/106182", "https://data.delijn.be/stops/106187"], ["https://data.delijn.be/stops/206489", "https://data.delijn.be/stops/206490"], ["https://data.delijn.be/stops/201922", "https://data.delijn.be/stops/203240"], ["https://data.delijn.be/stops/303362", "https://data.delijn.be/stops/303397"], ["https://data.delijn.be/stops/201060", "https://data.delijn.be/stops/210059"], ["https://data.delijn.be/stops/302609", "https://data.delijn.be/stops/308820"], ["https://data.delijn.be/stops/301091", "https://data.delijn.be/stops/306173"], ["https://data.delijn.be/stops/409560", "https://data.delijn.be/stops/409592"], ["https://data.delijn.be/stops/502100", "https://data.delijn.be/stops/502633"], ["https://data.delijn.be/stops/401832", "https://data.delijn.be/stops/401841"], ["https://data.delijn.be/stops/503629", "https://data.delijn.be/stops/508629"], ["https://data.delijn.be/stops/303170", "https://data.delijn.be/stops/303173"], ["https://data.delijn.be/stops/503839", "https://data.delijn.be/stops/505378"], ["https://data.delijn.be/stops/505981", "https://data.delijn.be/stops/507199"], ["https://data.delijn.be/stops/307437", "https://data.delijn.be/stops/307439"], ["https://data.delijn.be/stops/102330", "https://data.delijn.be/stops/103341"], ["https://data.delijn.be/stops/204575", "https://data.delijn.be/stops/205129"], ["https://data.delijn.be/stops/503181", "https://data.delijn.be/stops/505640"], ["https://data.delijn.be/stops/300692", "https://data.delijn.be/stops/308133"], ["https://data.delijn.be/stops/504969", "https://data.delijn.be/stops/508445"], ["https://data.delijn.be/stops/505826", "https://data.delijn.be/stops/508307"], ["https://data.delijn.be/stops/504263", "https://data.delijn.be/stops/505113"], ["https://data.delijn.be/stops/101872", "https://data.delijn.be/stops/106875"], ["https://data.delijn.be/stops/105553", "https://data.delijn.be/stops/106028"], ["https://data.delijn.be/stops/108277", "https://data.delijn.be/stops/108278"], ["https://data.delijn.be/stops/204177", "https://data.delijn.be/stops/205178"], ["https://data.delijn.be/stops/402690", "https://data.delijn.be/stops/402867"], ["https://data.delijn.be/stops/207536", "https://data.delijn.be/stops/209689"], ["https://data.delijn.be/stops/401509", "https://data.delijn.be/stops/401559"], ["https://data.delijn.be/stops/301492", "https://data.delijn.be/stops/301493"], ["https://data.delijn.be/stops/408596", "https://data.delijn.be/stops/408745"], ["https://data.delijn.be/stops/305857", "https://data.delijn.be/stops/305858"], ["https://data.delijn.be/stops/400348", "https://data.delijn.be/stops/400349"], ["https://data.delijn.be/stops/502222", "https://data.delijn.be/stops/507222"], ["https://data.delijn.be/stops/300675", "https://data.delijn.be/stops/300676"], ["https://data.delijn.be/stops/400591", "https://data.delijn.be/stops/404293"], ["https://data.delijn.be/stops/503006", "https://data.delijn.be/stops/507685"], ["https://data.delijn.be/stops/206117", "https://data.delijn.be/stops/206120"], ["https://data.delijn.be/stops/205025", "https://data.delijn.be/stops/205819"], ["https://data.delijn.be/stops/307755", "https://data.delijn.be/stops/307756"], ["https://data.delijn.be/stops/402854", "https://data.delijn.be/stops/402855"], ["https://data.delijn.be/stops/304447", "https://data.delijn.be/stops/307714"], ["https://data.delijn.be/stops/204174", "https://data.delijn.be/stops/205389"], ["https://data.delijn.be/stops/200071", "https://data.delijn.be/stops/208842"], ["https://data.delijn.be/stops/504635", "https://data.delijn.be/stops/509514"], ["https://data.delijn.be/stops/209442", "https://data.delijn.be/stops/209516"], ["https://data.delijn.be/stops/103146", "https://data.delijn.be/stops/109441"], ["https://data.delijn.be/stops/107280", "https://data.delijn.be/stops/108435"], ["https://data.delijn.be/stops/205929", "https://data.delijn.be/stops/205931"], ["https://data.delijn.be/stops/304978", "https://data.delijn.be/stops/304979"], ["https://data.delijn.be/stops/205398", "https://data.delijn.be/stops/205443"], ["https://data.delijn.be/stops/106658", "https://data.delijn.be/stops/106662"], ["https://data.delijn.be/stops/402749", "https://data.delijn.be/stops/405180"], ["https://data.delijn.be/stops/206154", "https://data.delijn.be/stops/207118"], ["https://data.delijn.be/stops/204303", "https://data.delijn.be/stops/205303"], ["https://data.delijn.be/stops/408096", "https://data.delijn.be/stops/408141"], ["https://data.delijn.be/stops/208528", "https://data.delijn.be/stops/209533"], ["https://data.delijn.be/stops/404008", "https://data.delijn.be/stops/404010"], ["https://data.delijn.be/stops/208658", "https://data.delijn.be/stops/209658"], ["https://data.delijn.be/stops/302283", "https://data.delijn.be/stops/302298"], ["https://data.delijn.be/stops/408255", "https://data.delijn.be/stops/409644"], ["https://data.delijn.be/stops/209150", "https://data.delijn.be/stops/209194"], ["https://data.delijn.be/stops/504156", "https://data.delijn.be/stops/504189"], ["https://data.delijn.be/stops/403886", "https://data.delijn.be/stops/406856"], ["https://data.delijn.be/stops/404538", "https://data.delijn.be/stops/404539"], ["https://data.delijn.be/stops/105297", "https://data.delijn.be/stops/105298"], ["https://data.delijn.be/stops/403920", "https://data.delijn.be/stops/403922"], ["https://data.delijn.be/stops/200909", "https://data.delijn.be/stops/202228"], ["https://data.delijn.be/stops/505281", "https://data.delijn.be/stops/509936"], ["https://data.delijn.be/stops/304424", "https://data.delijn.be/stops/307394"], ["https://data.delijn.be/stops/306697", "https://data.delijn.be/stops/308700"], ["https://data.delijn.be/stops/208002", "https://data.delijn.be/stops/209098"], ["https://data.delijn.be/stops/400575", "https://data.delijn.be/stops/403005"], ["https://data.delijn.be/stops/505586", "https://data.delijn.be/stops/507536"], ["https://data.delijn.be/stops/400718", "https://data.delijn.be/stops/401919"], ["https://data.delijn.be/stops/504396", "https://data.delijn.be/stops/509396"], ["https://data.delijn.be/stops/206335", "https://data.delijn.be/stops/207335"], ["https://data.delijn.be/stops/504645", "https://data.delijn.be/stops/509190"], ["https://data.delijn.be/stops/204071", "https://data.delijn.be/stops/205184"], ["https://data.delijn.be/stops/106736", "https://data.delijn.be/stops/106738"], ["https://data.delijn.be/stops/401794", "https://data.delijn.be/stops/401808"], ["https://data.delijn.be/stops/101081", "https://data.delijn.be/stops/101082"], ["https://data.delijn.be/stops/200325", "https://data.delijn.be/stops/200339"], ["https://data.delijn.be/stops/104338", "https://data.delijn.be/stops/104341"], ["https://data.delijn.be/stops/200665", "https://data.delijn.be/stops/200667"], ["https://data.delijn.be/stops/104403", "https://data.delijn.be/stops/204493"], ["https://data.delijn.be/stops/406127", "https://data.delijn.be/stops/406806"], ["https://data.delijn.be/stops/300371", "https://data.delijn.be/stops/307723"], ["https://data.delijn.be/stops/202361", "https://data.delijn.be/stops/203360"], ["https://data.delijn.be/stops/504029", "https://data.delijn.be/stops/504102"], ["https://data.delijn.be/stops/304535", "https://data.delijn.be/stops/306001"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/208154"], ["https://data.delijn.be/stops/106037", "https://data.delijn.be/stops/106052"], ["https://data.delijn.be/stops/204483", "https://data.delijn.be/stops/204516"], ["https://data.delijn.be/stops/400329", "https://data.delijn.be/stops/400356"], ["https://data.delijn.be/stops/402159", "https://data.delijn.be/stops/402167"], ["https://data.delijn.be/stops/209076", "https://data.delijn.be/stops/209540"], ["https://data.delijn.be/stops/302810", "https://data.delijn.be/stops/306176"], ["https://data.delijn.be/stops/102807", "https://data.delijn.be/stops/103900"], ["https://data.delijn.be/stops/107288", "https://data.delijn.be/stops/107291"], ["https://data.delijn.be/stops/300579", "https://data.delijn.be/stops/307043"], ["https://data.delijn.be/stops/500138", "https://data.delijn.be/stops/507739"], ["https://data.delijn.be/stops/304039", "https://data.delijn.be/stops/305437"], ["https://data.delijn.be/stops/208282", "https://data.delijn.be/stops/209281"], ["https://data.delijn.be/stops/301324", "https://data.delijn.be/stops/301913"], ["https://data.delijn.be/stops/304237", "https://data.delijn.be/stops/304238"], ["https://data.delijn.be/stops/302084", "https://data.delijn.be/stops/302087"], ["https://data.delijn.be/stops/503863", "https://data.delijn.be/stops/590007"], ["https://data.delijn.be/stops/505376", "https://data.delijn.be/stops/508949"], ["https://data.delijn.be/stops/203531", "https://data.delijn.be/stops/203532"], ["https://data.delijn.be/stops/207835", "https://data.delijn.be/stops/207939"], ["https://data.delijn.be/stops/208488", "https://data.delijn.be/stops/208621"], ["https://data.delijn.be/stops/402494", "https://data.delijn.be/stops/402495"], ["https://data.delijn.be/stops/501312", "https://data.delijn.be/stops/501322"], ["https://data.delijn.be/stops/508316", "https://data.delijn.be/stops/508676"], ["https://data.delijn.be/stops/208852", "https://data.delijn.be/stops/505623"], ["https://data.delijn.be/stops/103246", "https://data.delijn.be/stops/109771"], ["https://data.delijn.be/stops/102856", "https://data.delijn.be/stops/104402"], ["https://data.delijn.be/stops/307267", "https://data.delijn.be/stops/307767"], ["https://data.delijn.be/stops/403398", "https://data.delijn.be/stops/404976"], ["https://data.delijn.be/stops/508927", "https://data.delijn.be/stops/508931"], ["https://data.delijn.be/stops/407210", "https://data.delijn.be/stops/407211"], ["https://data.delijn.be/stops/203323", "https://data.delijn.be/stops/210044"], ["https://data.delijn.be/stops/108902", "https://data.delijn.be/stops/108903"], ["https://data.delijn.be/stops/406649", "https://data.delijn.be/stops/406654"], ["https://data.delijn.be/stops/200849", "https://data.delijn.be/stops/209656"], ["https://data.delijn.be/stops/206155", "https://data.delijn.be/stops/207737"], ["https://data.delijn.be/stops/306869", "https://data.delijn.be/stops/306870"], ["https://data.delijn.be/stops/104335", "https://data.delijn.be/stops/105565"], ["https://data.delijn.be/stops/301233", "https://data.delijn.be/stops/307850"], ["https://data.delijn.be/stops/502485", "https://data.delijn.be/stops/502803"], ["https://data.delijn.be/stops/304509", "https://data.delijn.be/stops/304517"], ["https://data.delijn.be/stops/300983", "https://data.delijn.be/stops/300996"], ["https://data.delijn.be/stops/106706", "https://data.delijn.be/stops/106708"], ["https://data.delijn.be/stops/204777", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/501345", "https://data.delijn.be/stops/506348"], ["https://data.delijn.be/stops/203991", "https://data.delijn.be/stops/210850"], ["https://data.delijn.be/stops/308484", "https://data.delijn.be/stops/308491"], ["https://data.delijn.be/stops/301290", "https://data.delijn.be/stops/301294"], ["https://data.delijn.be/stops/402528", "https://data.delijn.be/stops/404092"], ["https://data.delijn.be/stops/505118", "https://data.delijn.be/stops/509477"], ["https://data.delijn.be/stops/200242", "https://data.delijn.be/stops/201298"], ["https://data.delijn.be/stops/208387", "https://data.delijn.be/stops/209110"], ["https://data.delijn.be/stops/503772", "https://data.delijn.be/stops/503775"], ["https://data.delijn.be/stops/405147", "https://data.delijn.be/stops/405193"], ["https://data.delijn.be/stops/200466", "https://data.delijn.be/stops/209956"], ["https://data.delijn.be/stops/201698", "https://data.delijn.be/stops/202387"], ["https://data.delijn.be/stops/302743", "https://data.delijn.be/stops/307846"], ["https://data.delijn.be/stops/303133", "https://data.delijn.be/stops/303245"], ["https://data.delijn.be/stops/303251", "https://data.delijn.be/stops/303295"], ["https://data.delijn.be/stops/106580", "https://data.delijn.be/stops/106581"], ["https://data.delijn.be/stops/208342", "https://data.delijn.be/stops/209342"], ["https://data.delijn.be/stops/104368", "https://data.delijn.be/stops/205602"], ["https://data.delijn.be/stops/502020", "https://data.delijn.be/stops/502914"], ["https://data.delijn.be/stops/500935", "https://data.delijn.be/stops/503123"], ["https://data.delijn.be/stops/101527", "https://data.delijn.be/stops/102287"], ["https://data.delijn.be/stops/408087", "https://data.delijn.be/stops/408120"], ["https://data.delijn.be/stops/107624", "https://data.delijn.be/stops/108526"], ["https://data.delijn.be/stops/300247", "https://data.delijn.be/stops/300256"], ["https://data.delijn.be/stops/104757", "https://data.delijn.be/stops/104759"], ["https://data.delijn.be/stops/503451", "https://data.delijn.be/stops/508469"], ["https://data.delijn.be/stops/104113", "https://data.delijn.be/stops/107879"], ["https://data.delijn.be/stops/208598", "https://data.delijn.be/stops/307600"], ["https://data.delijn.be/stops/102427", "https://data.delijn.be/stops/109128"], ["https://data.delijn.be/stops/204431", "https://data.delijn.be/stops/204443"], ["https://data.delijn.be/stops/201229", "https://data.delijn.be/stops/210119"], ["https://data.delijn.be/stops/107878", "https://data.delijn.be/stops/107883"], ["https://data.delijn.be/stops/202249", "https://data.delijn.be/stops/203248"], ["https://data.delijn.be/stops/501261", "https://data.delijn.be/stops/506253"], ["https://data.delijn.be/stops/305691", "https://data.delijn.be/stops/305704"], ["https://data.delijn.be/stops/302096", "https://data.delijn.be/stops/308600"], ["https://data.delijn.be/stops/401504", "https://data.delijn.be/stops/401505"], ["https://data.delijn.be/stops/302361", "https://data.delijn.be/stops/302364"], ["https://data.delijn.be/stops/307566", "https://data.delijn.be/stops/307567"], ["https://data.delijn.be/stops/305580", "https://data.delijn.be/stops/308548"], ["https://data.delijn.be/stops/202722", "https://data.delijn.be/stops/203086"], ["https://data.delijn.be/stops/201495", "https://data.delijn.be/stops/210052"], ["https://data.delijn.be/stops/303371", "https://data.delijn.be/stops/303802"], ["https://data.delijn.be/stops/500119", "https://data.delijn.be/stops/502270"], ["https://data.delijn.be/stops/400266", "https://data.delijn.be/stops/405537"], ["https://data.delijn.be/stops/505039", "https://data.delijn.be/stops/506119"], ["https://data.delijn.be/stops/304971", "https://data.delijn.be/stops/304973"], ["https://data.delijn.be/stops/204760", "https://data.delijn.be/stops/205759"], ["https://data.delijn.be/stops/209215", "https://data.delijn.be/stops/209785"], ["https://data.delijn.be/stops/300556", "https://data.delijn.be/stops/307859"], ["https://data.delijn.be/stops/103729", "https://data.delijn.be/stops/108533"], ["https://data.delijn.be/stops/106893", "https://data.delijn.be/stops/106894"], ["https://data.delijn.be/stops/401160", "https://data.delijn.be/stops/408107"], ["https://data.delijn.be/stops/504559", "https://data.delijn.be/stops/505185"], ["https://data.delijn.be/stops/505535", "https://data.delijn.be/stops/509586"], ["https://data.delijn.be/stops/503203", "https://data.delijn.be/stops/508199"], ["https://data.delijn.be/stops/503206", "https://data.delijn.be/stops/508206"], ["https://data.delijn.be/stops/104596", "https://data.delijn.be/stops/106840"], ["https://data.delijn.be/stops/200870", "https://data.delijn.be/stops/203287"], ["https://data.delijn.be/stops/101872", "https://data.delijn.be/stops/101873"], ["https://data.delijn.be/stops/101589", "https://data.delijn.be/stops/102600"], ["https://data.delijn.be/stops/204467", "https://data.delijn.be/stops/204782"], ["https://data.delijn.be/stops/403958", "https://data.delijn.be/stops/403959"], ["https://data.delijn.be/stops/105421", "https://data.delijn.be/stops/105851"], ["https://data.delijn.be/stops/210090", "https://data.delijn.be/stops/211090"], ["https://data.delijn.be/stops/505502", "https://data.delijn.be/stops/505505"], ["https://data.delijn.be/stops/301947", "https://data.delijn.be/stops/303322"], ["https://data.delijn.be/stops/501123", "https://data.delijn.be/stops/506126"], ["https://data.delijn.be/stops/402947", "https://data.delijn.be/stops/306020"], ["https://data.delijn.be/stops/501308", "https://data.delijn.be/stops/501334"], ["https://data.delijn.be/stops/404888", "https://data.delijn.be/stops/404901"], ["https://data.delijn.be/stops/504266", "https://data.delijn.be/stops/509268"], ["https://data.delijn.be/stops/200717", "https://data.delijn.be/stops/202126"], ["https://data.delijn.be/stops/405702", "https://data.delijn.be/stops/405740"], ["https://data.delijn.be/stops/301181", "https://data.delijn.be/stops/301255"], ["https://data.delijn.be/stops/308085", "https://data.delijn.be/stops/308106"], ["https://data.delijn.be/stops/201775", "https://data.delijn.be/stops/209225"], ["https://data.delijn.be/stops/104742", "https://data.delijn.be/stops/104759"], ["https://data.delijn.be/stops/502196", "https://data.delijn.be/stops/502198"], ["https://data.delijn.be/stops/303762", "https://data.delijn.be/stops/303765"], ["https://data.delijn.be/stops/207887", "https://data.delijn.be/stops/207895"], ["https://data.delijn.be/stops/401086", "https://data.delijn.be/stops/409980"], ["https://data.delijn.be/stops/202772", "https://data.delijn.be/stops/203772"], ["https://data.delijn.be/stops/201262", "https://data.delijn.be/stops/203547"], ["https://data.delijn.be/stops/504259", "https://data.delijn.be/stops/505301"], ["https://data.delijn.be/stops/503374", "https://data.delijn.be/stops/505856"], ["https://data.delijn.be/stops/502478", "https://data.delijn.be/stops/505319"], ["https://data.delijn.be/stops/302610", "https://data.delijn.be/stops/302617"], ["https://data.delijn.be/stops/101500", "https://data.delijn.be/stops/109349"], ["https://data.delijn.be/stops/504091", "https://data.delijn.be/stops/505915"], ["https://data.delijn.be/stops/404928", "https://data.delijn.be/stops/409774"], ["https://data.delijn.be/stops/302317", "https://data.delijn.be/stops/302329"], ["https://data.delijn.be/stops/503114", "https://data.delijn.be/stops/505962"], ["https://data.delijn.be/stops/101832", "https://data.delijn.be/stops/108183"], ["https://data.delijn.be/stops/404762", "https://data.delijn.be/stops/404763"], ["https://data.delijn.be/stops/307381", "https://data.delijn.be/stops/308203"], ["https://data.delijn.be/stops/208350", "https://data.delijn.be/stops/209348"], ["https://data.delijn.be/stops/302905", "https://data.delijn.be/stops/303228"], ["https://data.delijn.be/stops/402487", "https://data.delijn.be/stops/402488"], ["https://data.delijn.be/stops/500944", "https://data.delijn.be/stops/504619"], ["https://data.delijn.be/stops/402235", "https://data.delijn.be/stops/407328"], ["https://data.delijn.be/stops/501680", "https://data.delijn.be/stops/504126"], ["https://data.delijn.be/stops/203869", "https://data.delijn.be/stops/206968"], ["https://data.delijn.be/stops/502406", "https://data.delijn.be/stops/507406"], ["https://data.delijn.be/stops/407000", "https://data.delijn.be/stops/301519"], ["https://data.delijn.be/stops/301831", "https://data.delijn.be/stops/306984"], ["https://data.delijn.be/stops/502397", "https://data.delijn.be/stops/507386"], ["https://data.delijn.be/stops/208052", "https://data.delijn.be/stops/208053"], ["https://data.delijn.be/stops/505565", "https://data.delijn.be/stops/508616"], ["https://data.delijn.be/stops/109719", "https://data.delijn.be/stops/109995"], ["https://data.delijn.be/stops/204295", "https://data.delijn.be/stops/204495"], ["https://data.delijn.be/stops/404261", "https://data.delijn.be/stops/405667"], ["https://data.delijn.be/stops/305513", "https://data.delijn.be/stops/305514"], ["https://data.delijn.be/stops/204676", "https://data.delijn.be/stops/204677"], ["https://data.delijn.be/stops/501094", "https://data.delijn.be/stops/501560"], ["https://data.delijn.be/stops/406339", "https://data.delijn.be/stops/406403"], ["https://data.delijn.be/stops/405856", "https://data.delijn.be/stops/409423"], ["https://data.delijn.be/stops/400409", "https://data.delijn.be/stops/400423"], ["https://data.delijn.be/stops/102321", "https://data.delijn.be/stops/107525"], ["https://data.delijn.be/stops/305747", "https://data.delijn.be/stops/305749"], ["https://data.delijn.be/stops/504954", "https://data.delijn.be/stops/509976"], ["https://data.delijn.be/stops/501349", "https://data.delijn.be/stops/506335"], ["https://data.delijn.be/stops/207668", "https://data.delijn.be/stops/208056"], ["https://data.delijn.be/stops/400991", "https://data.delijn.be/stops/409059"], ["https://data.delijn.be/stops/301030", "https://data.delijn.be/stops/301033"], ["https://data.delijn.be/stops/502586", "https://data.delijn.be/stops/505054"], ["https://data.delijn.be/stops/306152", "https://data.delijn.be/stops/306153"], ["https://data.delijn.be/stops/307024", "https://data.delijn.be/stops/307533"], ["https://data.delijn.be/stops/202977", "https://data.delijn.be/stops/203976"], ["https://data.delijn.be/stops/205738", "https://data.delijn.be/stops/205747"], ["https://data.delijn.be/stops/206417", "https://data.delijn.be/stops/206517"], ["https://data.delijn.be/stops/502690", "https://data.delijn.be/stops/508822"], ["https://data.delijn.be/stops/509716", "https://data.delijn.be/stops/509747"], ["https://data.delijn.be/stops/400682", "https://data.delijn.be/stops/408972"], ["https://data.delijn.be/stops/402834", "https://data.delijn.be/stops/409026"], ["https://data.delijn.be/stops/308052", "https://data.delijn.be/stops/308053"], ["https://data.delijn.be/stops/408004", "https://data.delijn.be/stops/408285"], ["https://data.delijn.be/stops/504110", "https://data.delijn.be/stops/504113"], ["https://data.delijn.be/stops/401349", "https://data.delijn.be/stops/401366"], ["https://data.delijn.be/stops/101482", "https://data.delijn.be/stops/109291"], ["https://data.delijn.be/stops/400085", "https://data.delijn.be/stops/400119"], ["https://data.delijn.be/stops/503378", "https://data.delijn.be/stops/508378"], ["https://data.delijn.be/stops/402047", "https://data.delijn.be/stops/410073"], ["https://data.delijn.be/stops/106957", "https://data.delijn.be/stops/106958"], ["https://data.delijn.be/stops/205046", "https://data.delijn.be/stops/205301"], ["https://data.delijn.be/stops/101523", "https://data.delijn.be/stops/109643"], ["https://data.delijn.be/stops/501213", "https://data.delijn.be/stops/501220"], ["https://data.delijn.be/stops/304493", "https://data.delijn.be/stops/307564"], ["https://data.delijn.be/stops/408827", "https://data.delijn.be/stops/408871"], ["https://data.delijn.be/stops/202875", "https://data.delijn.be/stops/202877"], ["https://data.delijn.be/stops/504945", "https://data.delijn.be/stops/509945"], ["https://data.delijn.be/stops/405929", "https://data.delijn.be/stops/405932"], ["https://data.delijn.be/stops/404667", "https://data.delijn.be/stops/404671"], ["https://data.delijn.be/stops/306000", "https://data.delijn.be/stops/308046"], ["https://data.delijn.be/stops/300922", "https://data.delijn.be/stops/300923"], ["https://data.delijn.be/stops/105901", "https://data.delijn.be/stops/105903"], ["https://data.delijn.be/stops/302015", "https://data.delijn.be/stops/308753"], ["https://data.delijn.be/stops/104029", "https://data.delijn.be/stops/106939"], ["https://data.delijn.be/stops/507540", "https://data.delijn.be/stops/507582"], ["https://data.delijn.be/stops/400828", "https://data.delijn.be/stops/400829"], ["https://data.delijn.be/stops/501095", "https://data.delijn.be/stops/505528"], ["https://data.delijn.be/stops/101534", "https://data.delijn.be/stops/108774"], ["https://data.delijn.be/stops/501015", "https://data.delijn.be/stops/506015"], ["https://data.delijn.be/stops/201530", "https://data.delijn.be/stops/210079"], ["https://data.delijn.be/stops/501687", "https://data.delijn.be/stops/506612"], ["https://data.delijn.be/stops/400423", "https://data.delijn.be/stops/409724"], ["https://data.delijn.be/stops/108694", "https://data.delijn.be/stops/108697"], ["https://data.delijn.be/stops/201643", "https://data.delijn.be/stops/203777"], ["https://data.delijn.be/stops/407123", "https://data.delijn.be/stops/407127"], ["https://data.delijn.be/stops/105567", "https://data.delijn.be/stops/105568"], ["https://data.delijn.be/stops/501403", "https://data.delijn.be/stops/506418"], ["https://data.delijn.be/stops/508270", "https://data.delijn.be/stops/508495"], ["https://data.delijn.be/stops/408512", "https://data.delijn.be/stops/408675"], ["https://data.delijn.be/stops/207388", "https://data.delijn.be/stops/207723"], ["https://data.delijn.be/stops/400495", "https://data.delijn.be/stops/407213"], ["https://data.delijn.be/stops/204299", "https://data.delijn.be/stops/205299"], ["https://data.delijn.be/stops/300977", "https://data.delijn.be/stops/301082"], ["https://data.delijn.be/stops/101110", "https://data.delijn.be/stops/102911"], ["https://data.delijn.be/stops/402400", "https://data.delijn.be/stops/402489"], ["https://data.delijn.be/stops/300707", "https://data.delijn.be/stops/306946"], ["https://data.delijn.be/stops/102040", "https://data.delijn.be/stops/103630"], ["https://data.delijn.be/stops/504475", "https://data.delijn.be/stops/505118"], ["https://data.delijn.be/stops/504192", "https://data.delijn.be/stops/509167"], ["https://data.delijn.be/stops/206417", "https://data.delijn.be/stops/207418"], ["https://data.delijn.be/stops/505440", "https://data.delijn.be/stops/505634"], ["https://data.delijn.be/stops/504659", "https://data.delijn.be/stops/509044"], ["https://data.delijn.be/stops/206831", "https://data.delijn.be/stops/207425"], ["https://data.delijn.be/stops/406215", "https://data.delijn.be/stops/406223"], ["https://data.delijn.be/stops/204591", "https://data.delijn.be/stops/211067"], ["https://data.delijn.be/stops/107959", "https://data.delijn.be/stops/109584"], ["https://data.delijn.be/stops/404192", "https://data.delijn.be/stops/405933"], ["https://data.delijn.be/stops/201904", "https://data.delijn.be/stops/201905"], ["https://data.delijn.be/stops/204392", "https://data.delijn.be/stops/204401"], ["https://data.delijn.be/stops/200515", "https://data.delijn.be/stops/201515"], ["https://data.delijn.be/stops/208570", "https://data.delijn.be/stops/209552"], ["https://data.delijn.be/stops/103097", "https://data.delijn.be/stops/103973"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/509608"], ["https://data.delijn.be/stops/504555", "https://data.delijn.be/stops/504561"], ["https://data.delijn.be/stops/504137", "https://data.delijn.be/stops/504143"], ["https://data.delijn.be/stops/405247", "https://data.delijn.be/stops/407313"], ["https://data.delijn.be/stops/209492", "https://data.delijn.be/stops/209736"], ["https://data.delijn.be/stops/108917", "https://data.delijn.be/stops/108918"], ["https://data.delijn.be/stops/504086", "https://data.delijn.be/stops/504978"], ["https://data.delijn.be/stops/403804", "https://data.delijn.be/stops/406302"], ["https://data.delijn.be/stops/208292", "https://data.delijn.be/stops/209790"], ["https://data.delijn.be/stops/502608", "https://data.delijn.be/stops/504881"], ["https://data.delijn.be/stops/102468", "https://data.delijn.be/stops/400413"], ["https://data.delijn.be/stops/206653", "https://data.delijn.be/stops/206715"], ["https://data.delijn.be/stops/407108", "https://data.delijn.be/stops/409780"], ["https://data.delijn.be/stops/401476", "https://data.delijn.be/stops/401749"], ["https://data.delijn.be/stops/301084", "https://data.delijn.be/stops/307877"], ["https://data.delijn.be/stops/505274", "https://data.delijn.be/stops/508013"], ["https://data.delijn.be/stops/101995", "https://data.delijn.be/stops/103725"], ["https://data.delijn.be/stops/204673", "https://data.delijn.be/stops/205676"], ["https://data.delijn.be/stops/200072", "https://data.delijn.be/stops/201233"], ["https://data.delijn.be/stops/502500", "https://data.delijn.be/stops/507515"], ["https://data.delijn.be/stops/504335", "https://data.delijn.be/stops/509335"], ["https://data.delijn.be/stops/300269", "https://data.delijn.be/stops/302148"], ["https://data.delijn.be/stops/209600", "https://data.delijn.be/stops/307591"], ["https://data.delijn.be/stops/507431", "https://data.delijn.be/stops/507432"], ["https://data.delijn.be/stops/508561", "https://data.delijn.be/stops/508607"], ["https://data.delijn.be/stops/206300", "https://data.delijn.be/stops/206465"], ["https://data.delijn.be/stops/106882", "https://data.delijn.be/stops/106884"], ["https://data.delijn.be/stops/300066", "https://data.delijn.be/stops/300069"], ["https://data.delijn.be/stops/300691", "https://data.delijn.be/stops/303517"], ["https://data.delijn.be/stops/106225", "https://data.delijn.be/stops/106334"], ["https://data.delijn.be/stops/407761", "https://data.delijn.be/stops/409744"], ["https://data.delijn.be/stops/303270", "https://data.delijn.be/stops/303272"], ["https://data.delijn.be/stops/204152", "https://data.delijn.be/stops/205145"], ["https://data.delijn.be/stops/502444", "https://data.delijn.be/stops/502461"], ["https://data.delijn.be/stops/301622", "https://data.delijn.be/stops/301672"], ["https://data.delijn.be/stops/102289", "https://data.delijn.be/stops/103528"], ["https://data.delijn.be/stops/303694", "https://data.delijn.be/stops/303697"], ["https://data.delijn.be/stops/507057", "https://data.delijn.be/stops/507642"], ["https://data.delijn.be/stops/102717", "https://data.delijn.be/stops/103001"], ["https://data.delijn.be/stops/101701", "https://data.delijn.be/stops/103690"], ["https://data.delijn.be/stops/502383", "https://data.delijn.be/stops/507621"], ["https://data.delijn.be/stops/505510", "https://data.delijn.be/stops/509702"], ["https://data.delijn.be/stops/204759", "https://data.delijn.be/stops/204798"], ["https://data.delijn.be/stops/400335", "https://data.delijn.be/stops/400385"], ["https://data.delijn.be/stops/403664", "https://data.delijn.be/stops/409254"], ["https://data.delijn.be/stops/101517", "https://data.delijn.be/stops/109026"], ["https://data.delijn.be/stops/105268", "https://data.delijn.be/stops/109956"], ["https://data.delijn.be/stops/208275", "https://data.delijn.be/stops/208276"], ["https://data.delijn.be/stops/405671", "https://data.delijn.be/stops/406968"], ["https://data.delijn.be/stops/306089", "https://data.delijn.be/stops/306156"], ["https://data.delijn.be/stops/401479", "https://data.delijn.be/stops/401515"], ["https://data.delijn.be/stops/305494", "https://data.delijn.be/stops/307987"], ["https://data.delijn.be/stops/109163", "https://data.delijn.be/stops/109165"], ["https://data.delijn.be/stops/400289", "https://data.delijn.be/stops/400332"], ["https://data.delijn.be/stops/305106", "https://data.delijn.be/stops/308122"], ["https://data.delijn.be/stops/302453", "https://data.delijn.be/stops/302459"], ["https://data.delijn.be/stops/301679", "https://data.delijn.be/stops/302387"], ["https://data.delijn.be/stops/105124", "https://data.delijn.be/stops/105193"], ["https://data.delijn.be/stops/105132", "https://data.delijn.be/stops/105133"], ["https://data.delijn.be/stops/304501", "https://data.delijn.be/stops/307466"], ["https://data.delijn.be/stops/105232", "https://data.delijn.be/stops/109956"], ["https://data.delijn.be/stops/201274", "https://data.delijn.be/stops/201275"], ["https://data.delijn.be/stops/301613", "https://data.delijn.be/stops/303622"], ["https://data.delijn.be/stops/501332", "https://data.delijn.be/stops/506332"], ["https://data.delijn.be/stops/404365", "https://data.delijn.be/stops/404367"], ["https://data.delijn.be/stops/304496", "https://data.delijn.be/stops/304497"], ["https://data.delijn.be/stops/506289", "https://data.delijn.be/stops/506290"], ["https://data.delijn.be/stops/305409", "https://data.delijn.be/stops/305414"], ["https://data.delijn.be/stops/307377", "https://data.delijn.be/stops/307384"], ["https://data.delijn.be/stops/106131", "https://data.delijn.be/stops/109372"], ["https://data.delijn.be/stops/504526", "https://data.delijn.be/stops/504530"], ["https://data.delijn.be/stops/204312", "https://data.delijn.be/stops/204708"], ["https://data.delijn.be/stops/504985", "https://data.delijn.be/stops/509022"], ["https://data.delijn.be/stops/403334", "https://data.delijn.be/stops/403346"], ["https://data.delijn.be/stops/202042", "https://data.delijn.be/stops/203042"], ["https://data.delijn.be/stops/505543", "https://data.delijn.be/stops/509581"], ["https://data.delijn.be/stops/105019", "https://data.delijn.be/stops/105086"], ["https://data.delijn.be/stops/201380", "https://data.delijn.be/stops/208829"], ["https://data.delijn.be/stops/101036", "https://data.delijn.be/stops/205563"], ["https://data.delijn.be/stops/206439", "https://data.delijn.be/stops/209560"], ["https://data.delijn.be/stops/308452", "https://data.delijn.be/stops/308692"], ["https://data.delijn.be/stops/303702", "https://data.delijn.be/stops/305377"], ["https://data.delijn.be/stops/500115", "https://data.delijn.be/stops/500119"], ["https://data.delijn.be/stops/106016", "https://data.delijn.be/stops/107910"], ["https://data.delijn.be/stops/203036", "https://data.delijn.be/stops/203985"], ["https://data.delijn.be/stops/207443", "https://data.delijn.be/stops/207444"], ["https://data.delijn.be/stops/303225", "https://data.delijn.be/stops/303226"], ["https://data.delijn.be/stops/300451", "https://data.delijn.be/stops/308055"], ["https://data.delijn.be/stops/505562", "https://data.delijn.be/stops/505567"], ["https://data.delijn.be/stops/202574", "https://data.delijn.be/stops/203573"], ["https://data.delijn.be/stops/301550", "https://data.delijn.be/stops/306963"], ["https://data.delijn.be/stops/206046", "https://data.delijn.be/stops/207880"], ["https://data.delijn.be/stops/101845", "https://data.delijn.be/stops/103131"], ["https://data.delijn.be/stops/401922", "https://data.delijn.be/stops/407230"], ["https://data.delijn.be/stops/101753", "https://data.delijn.be/stops/109820"], ["https://data.delijn.be/stops/404130", "https://data.delijn.be/stops/404195"], ["https://data.delijn.be/stops/202396", "https://data.delijn.be/stops/202730"], ["https://data.delijn.be/stops/103618", "https://data.delijn.be/stops/106306"], ["https://data.delijn.be/stops/105568", "https://data.delijn.be/stops/105572"], ["https://data.delijn.be/stops/102295", "https://data.delijn.be/stops/107445"], ["https://data.delijn.be/stops/102073", "https://data.delijn.be/stops/109716"], ["https://data.delijn.be/stops/206513", "https://data.delijn.be/stops/206718"], ["https://data.delijn.be/stops/404326", "https://data.delijn.be/stops/408668"], ["https://data.delijn.be/stops/300972", "https://data.delijn.be/stops/300973"], ["https://data.delijn.be/stops/301454", "https://data.delijn.be/stops/301467"], ["https://data.delijn.be/stops/402579", "https://data.delijn.be/stops/410390"], ["https://data.delijn.be/stops/402064", "https://data.delijn.be/stops/405554"], ["https://data.delijn.be/stops/400826", "https://data.delijn.be/stops/401900"], ["https://data.delijn.be/stops/505905", "https://data.delijn.be/stops/508959"], ["https://data.delijn.be/stops/501699", "https://data.delijn.be/stops/506194"], ["https://data.delijn.be/stops/404439", "https://data.delijn.be/stops/404569"], ["https://data.delijn.be/stops/503109", "https://data.delijn.be/stops/508376"], ["https://data.delijn.be/stops/206009", "https://data.delijn.be/stops/207010"], ["https://data.delijn.be/stops/102715", "https://data.delijn.be/stops/102874"], ["https://data.delijn.be/stops/105472", "https://data.delijn.be/stops/105669"], ["https://data.delijn.be/stops/300060", "https://data.delijn.be/stops/306801"], ["https://data.delijn.be/stops/201895", "https://data.delijn.be/stops/201983"], ["https://data.delijn.be/stops/401587", "https://data.delijn.be/stops/401589"], ["https://data.delijn.be/stops/105029", "https://data.delijn.be/stops/105172"], ["https://data.delijn.be/stops/504395", "https://data.delijn.be/stops/509119"], ["https://data.delijn.be/stops/105151", "https://data.delijn.be/stops/105154"], ["https://data.delijn.be/stops/101778", "https://data.delijn.be/stops/104246"], ["https://data.delijn.be/stops/502351", "https://data.delijn.be/stops/502587"], ["https://data.delijn.be/stops/206943", "https://data.delijn.be/stops/207944"], ["https://data.delijn.be/stops/304127", "https://data.delijn.be/stops/308819"], ["https://data.delijn.be/stops/502192", "https://data.delijn.be/stops/502198"], ["https://data.delijn.be/stops/500159", "https://data.delijn.be/stops/503541"], ["https://data.delijn.be/stops/503803", "https://data.delijn.be/stops/505537"], ["https://data.delijn.be/stops/302212", "https://data.delijn.be/stops/302214"], ["https://data.delijn.be/stops/502591", "https://data.delijn.be/stops/502751"], ["https://data.delijn.be/stops/302352", "https://data.delijn.be/stops/307521"], ["https://data.delijn.be/stops/209104", "https://data.delijn.be/stops/209105"], ["https://data.delijn.be/stops/300840", "https://data.delijn.be/stops/300842"], ["https://data.delijn.be/stops/505147", "https://data.delijn.be/stops/507917"], ["https://data.delijn.be/stops/105076", "https://data.delijn.be/stops/108881"], ["https://data.delijn.be/stops/504877", "https://data.delijn.be/stops/509700"], ["https://data.delijn.be/stops/101197", "https://data.delijn.be/stops/204614"], ["https://data.delijn.be/stops/203869", "https://data.delijn.be/stops/203878"], ["https://data.delijn.be/stops/307629", "https://data.delijn.be/stops/308262"], ["https://data.delijn.be/stops/300426", "https://data.delijn.be/stops/300445"], ["https://data.delijn.be/stops/206565", "https://data.delijn.be/stops/207837"], ["https://data.delijn.be/stops/202465", "https://data.delijn.be/stops/203462"], ["https://data.delijn.be/stops/407262", "https://data.delijn.be/stops/409496"], ["https://data.delijn.be/stops/406097", "https://data.delijn.be/stops/406807"], ["https://data.delijn.be/stops/304595", "https://data.delijn.be/stops/304637"], ["https://data.delijn.be/stops/406332", "https://data.delijn.be/stops/406363"], ["https://data.delijn.be/stops/200341", "https://data.delijn.be/stops/201335"], ["https://data.delijn.be/stops/108236", "https://data.delijn.be/stops/108238"], ["https://data.delijn.be/stops/403487", "https://data.delijn.be/stops/403489"], ["https://data.delijn.be/stops/308195", "https://data.delijn.be/stops/308227"], ["https://data.delijn.be/stops/301031", "https://data.delijn.be/stops/305466"], ["https://data.delijn.be/stops/301025", "https://data.delijn.be/stops/306647"], ["https://data.delijn.be/stops/206341", "https://data.delijn.be/stops/207341"], ["https://data.delijn.be/stops/202030", "https://data.delijn.be/stops/203028"], ["https://data.delijn.be/stops/301625", "https://data.delijn.be/stops/301633"], ["https://data.delijn.be/stops/202490", "https://data.delijn.be/stops/203001"], ["https://data.delijn.be/stops/102586", "https://data.delijn.be/stops/108562"], ["https://data.delijn.be/stops/109132", "https://data.delijn.be/stops/109134"], ["https://data.delijn.be/stops/208156", "https://data.delijn.be/stops/209156"], ["https://data.delijn.be/stops/105061", "https://data.delijn.be/stops/105824"], ["https://data.delijn.be/stops/202376", "https://data.delijn.be/stops/203376"], ["https://data.delijn.be/stops/200920", "https://data.delijn.be/stops/203261"], ["https://data.delijn.be/stops/206473", "https://data.delijn.be/stops/207477"], ["https://data.delijn.be/stops/306334", "https://data.delijn.be/stops/306337"], ["https://data.delijn.be/stops/303288", "https://data.delijn.be/stops/303343"], ["https://data.delijn.be/stops/200518", "https://data.delijn.be/stops/201533"], ["https://data.delijn.be/stops/505660", "https://data.delijn.be/stops/508047"], ["https://data.delijn.be/stops/200709", "https://data.delijn.be/stops/200718"], ["https://data.delijn.be/stops/109124", "https://data.delijn.be/stops/109395"], ["https://data.delijn.be/stops/404197", "https://data.delijn.be/stops/404199"], ["https://data.delijn.be/stops/408611", "https://data.delijn.be/stops/408692"], ["https://data.delijn.be/stops/404313", "https://data.delijn.be/stops/404648"], ["https://data.delijn.be/stops/201780", "https://data.delijn.be/stops/208247"], ["https://data.delijn.be/stops/301832", "https://data.delijn.be/stops/301873"], ["https://data.delijn.be/stops/402303", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/102321", "https://data.delijn.be/stops/104128"], ["https://data.delijn.be/stops/502668", "https://data.delijn.be/stops/502669"], ["https://data.delijn.be/stops/401221", "https://data.delijn.be/stops/410124"], ["https://data.delijn.be/stops/103964", "https://data.delijn.be/stops/107545"], ["https://data.delijn.be/stops/301699", "https://data.delijn.be/stops/301741"], ["https://data.delijn.be/stops/505972", "https://data.delijn.be/stops/507736"], ["https://data.delijn.be/stops/106382", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/401878", "https://data.delijn.be/stops/402280"], ["https://data.delijn.be/stops/404429", "https://data.delijn.be/stops/404524"], ["https://data.delijn.be/stops/502655", "https://data.delijn.be/stops/502665"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/201716"], ["https://data.delijn.be/stops/208109", "https://data.delijn.be/stops/208342"], ["https://data.delijn.be/stops/300138", "https://data.delijn.be/stops/306807"], ["https://data.delijn.be/stops/102578", "https://data.delijn.be/stops/107712"], ["https://data.delijn.be/stops/109044", "https://data.delijn.be/stops/307947"], ["https://data.delijn.be/stops/206114", "https://data.delijn.be/stops/207115"], ["https://data.delijn.be/stops/104861", "https://data.delijn.be/stops/107819"], ["https://data.delijn.be/stops/202631", "https://data.delijn.be/stops/202632"], ["https://data.delijn.be/stops/108379", "https://data.delijn.be/stops/109764"], ["https://data.delijn.be/stops/201548", "https://data.delijn.be/stops/203002"], ["https://data.delijn.be/stops/403991", "https://data.delijn.be/stops/407054"], ["https://data.delijn.be/stops/404511", "https://data.delijn.be/stops/407423"], ["https://data.delijn.be/stops/302898", "https://data.delijn.be/stops/302899"], ["https://data.delijn.be/stops/409413", "https://data.delijn.be/stops/409666"], ["https://data.delijn.be/stops/501508", "https://data.delijn.be/stops/505824"], ["https://data.delijn.be/stops/306821", "https://data.delijn.be/stops/306822"], ["https://data.delijn.be/stops/306686", "https://data.delijn.be/stops/306688"], ["https://data.delijn.be/stops/301457", "https://data.delijn.be/stops/307956"], ["https://data.delijn.be/stops/404298", "https://data.delijn.be/stops/308077"], ["https://data.delijn.be/stops/102126", "https://data.delijn.be/stops/105059"], ["https://data.delijn.be/stops/503969", "https://data.delijn.be/stops/509813"], ["https://data.delijn.be/stops/406262", "https://data.delijn.be/stops/407307"], ["https://data.delijn.be/stops/103945", "https://data.delijn.be/stops/104050"], ["https://data.delijn.be/stops/208389", "https://data.delijn.be/stops/208745"], ["https://data.delijn.be/stops/200450", "https://data.delijn.be/stops/203947"], ["https://data.delijn.be/stops/308517", "https://data.delijn.be/stops/308539"], ["https://data.delijn.be/stops/106265", "https://data.delijn.be/stops/106266"], ["https://data.delijn.be/stops/206887", "https://data.delijn.be/stops/206888"], ["https://data.delijn.be/stops/301661", "https://data.delijn.be/stops/301664"], ["https://data.delijn.be/stops/101365", "https://data.delijn.be/stops/104075"], ["https://data.delijn.be/stops/505348", "https://data.delijn.be/stops/507368"], ["https://data.delijn.be/stops/405738", "https://data.delijn.be/stops/410137"], ["https://data.delijn.be/stops/505358", "https://data.delijn.be/stops/505438"], ["https://data.delijn.be/stops/107975", "https://data.delijn.be/stops/107980"], ["https://data.delijn.be/stops/206737", "https://data.delijn.be/stops/207602"], ["https://data.delijn.be/stops/306911", "https://data.delijn.be/stops/308875"], ["https://data.delijn.be/stops/301092", "https://data.delijn.be/stops/304259"], ["https://data.delijn.be/stops/101383", "https://data.delijn.be/stops/106996"], ["https://data.delijn.be/stops/404889", "https://data.delijn.be/stops/404904"], ["https://data.delijn.be/stops/105329", "https://data.delijn.be/stops/204023"], ["https://data.delijn.be/stops/504875", "https://data.delijn.be/stops/509875"], ["https://data.delijn.be/stops/201928", "https://data.delijn.be/stops/202477"], ["https://data.delijn.be/stops/305602", "https://data.delijn.be/stops/305603"], ["https://data.delijn.be/stops/405723", "https://data.delijn.be/stops/405750"], ["https://data.delijn.be/stops/102762", "https://data.delijn.be/stops/102763"], ["https://data.delijn.be/stops/108316", "https://data.delijn.be/stops/108756"], ["https://data.delijn.be/stops/108845", "https://data.delijn.be/stops/108859"], ["https://data.delijn.be/stops/207816", "https://data.delijn.be/stops/207817"], ["https://data.delijn.be/stops/204915", "https://data.delijn.be/stops/204917"], ["https://data.delijn.be/stops/200581", "https://data.delijn.be/stops/210607"], ["https://data.delijn.be/stops/406051", "https://data.delijn.be/stops/407779"], ["https://data.delijn.be/stops/202046", "https://data.delijn.be/stops/202137"], ["https://data.delijn.be/stops/304147", "https://data.delijn.be/stops/304171"], ["https://data.delijn.be/stops/107083", "https://data.delijn.be/stops/107086"], ["https://data.delijn.be/stops/300741", "https://data.delijn.be/stops/300750"], ["https://data.delijn.be/stops/206118", "https://data.delijn.be/stops/206119"], ["https://data.delijn.be/stops/302131", "https://data.delijn.be/stops/307527"], ["https://data.delijn.be/stops/104719", "https://data.delijn.be/stops/104722"], ["https://data.delijn.be/stops/107213", "https://data.delijn.be/stops/107217"], ["https://data.delijn.be/stops/207761", "https://data.delijn.be/stops/208189"], ["https://data.delijn.be/stops/101565", "https://data.delijn.be/stops/102505"], ["https://data.delijn.be/stops/204318", "https://data.delijn.be/stops/204321"], ["https://data.delijn.be/stops/205700", "https://data.delijn.be/stops/205701"], ["https://data.delijn.be/stops/108654", "https://data.delijn.be/stops/304303"], ["https://data.delijn.be/stops/107163", "https://data.delijn.be/stops/107164"], ["https://data.delijn.be/stops/203486", "https://data.delijn.be/stops/203489"], ["https://data.delijn.be/stops/404231", "https://data.delijn.be/stops/404243"], ["https://data.delijn.be/stops/304126", "https://data.delijn.be/stops/304151"], ["https://data.delijn.be/stops/503980", "https://data.delijn.be/stops/508328"], ["https://data.delijn.be/stops/406748", "https://data.delijn.be/stops/409454"], ["https://data.delijn.be/stops/501209", "https://data.delijn.be/stops/505038"], ["https://data.delijn.be/stops/503285", "https://data.delijn.be/stops/508285"], ["https://data.delijn.be/stops/503162", "https://data.delijn.be/stops/503174"], ["https://data.delijn.be/stops/206104", "https://data.delijn.be/stops/306724"], ["https://data.delijn.be/stops/408205", "https://data.delijn.be/stops/408310"], ["https://data.delijn.be/stops/401846", "https://data.delijn.be/stops/406232"], ["https://data.delijn.be/stops/207010", "https://data.delijn.be/stops/207174"], ["https://data.delijn.be/stops/306849", "https://data.delijn.be/stops/306852"], ["https://data.delijn.be/stops/501684", "https://data.delijn.be/stops/506684"], ["https://data.delijn.be/stops/503970", "https://data.delijn.be/stops/504811"], ["https://data.delijn.be/stops/104946", "https://data.delijn.be/stops/107310"], ["https://data.delijn.be/stops/102804", "https://data.delijn.be/stops/103143"], ["https://data.delijn.be/stops/105547", "https://data.delijn.be/stops/109624"], ["https://data.delijn.be/stops/201350", "https://data.delijn.be/stops/201392"], ["https://data.delijn.be/stops/200422", "https://data.delijn.be/stops/211405"], ["https://data.delijn.be/stops/303024", "https://data.delijn.be/stops/308655"], ["https://data.delijn.be/stops/206750", "https://data.delijn.be/stops/209475"], ["https://data.delijn.be/stops/200690", "https://data.delijn.be/stops/210081"], ["https://data.delijn.be/stops/102253", "https://data.delijn.be/stops/109654"], ["https://data.delijn.be/stops/405524", "https://data.delijn.be/stops/407311"], ["https://data.delijn.be/stops/408220", "https://data.delijn.be/stops/408224"], ["https://data.delijn.be/stops/200188", "https://data.delijn.be/stops/201068"], ["https://data.delijn.be/stops/504472", "https://data.delijn.be/stops/509472"], ["https://data.delijn.be/stops/300018", "https://data.delijn.be/stops/307636"], ["https://data.delijn.be/stops/302189", "https://data.delijn.be/stops/305457"], ["https://data.delijn.be/stops/207689", "https://data.delijn.be/stops/207727"], ["https://data.delijn.be/stops/204111", "https://data.delijn.be/stops/205111"], ["https://data.delijn.be/stops/400876", "https://data.delijn.be/stops/403582"], ["https://data.delijn.be/stops/404488", "https://data.delijn.be/stops/404528"], ["https://data.delijn.be/stops/209092", "https://data.delijn.be/stops/209629"], ["https://data.delijn.be/stops/206539", "https://data.delijn.be/stops/206559"], ["https://data.delijn.be/stops/503864", "https://data.delijn.be/stops/507949"], ["https://data.delijn.be/stops/402727", "https://data.delijn.be/stops/402737"], ["https://data.delijn.be/stops/304495", "https://data.delijn.be/stops/304499"], ["https://data.delijn.be/stops/300686", "https://data.delijn.be/stops/300687"], ["https://data.delijn.be/stops/301649", "https://data.delijn.be/stops/307766"], ["https://data.delijn.be/stops/301706", "https://data.delijn.be/stops/301714"], ["https://data.delijn.be/stops/301521", "https://data.delijn.be/stops/308740"], ["https://data.delijn.be/stops/404443", "https://data.delijn.be/stops/409663"], ["https://data.delijn.be/stops/402086", "https://data.delijn.be/stops/402088"], ["https://data.delijn.be/stops/505151", "https://data.delijn.be/stops/505153"], ["https://data.delijn.be/stops/301065", "https://data.delijn.be/stops/307789"], ["https://data.delijn.be/stops/304289", "https://data.delijn.be/stops/304296"], ["https://data.delijn.be/stops/208304", "https://data.delijn.be/stops/209304"], ["https://data.delijn.be/stops/503918", "https://data.delijn.be/stops/505254"], ["https://data.delijn.be/stops/105038", "https://data.delijn.be/stops/105124"], ["https://data.delijn.be/stops/504347", "https://data.delijn.be/stops/509351"], ["https://data.delijn.be/stops/204032", "https://data.delijn.be/stops/204557"], ["https://data.delijn.be/stops/405282", "https://data.delijn.be/stops/405283"], ["https://data.delijn.be/stops/507230", "https://data.delijn.be/stops/507699"], ["https://data.delijn.be/stops/503625", "https://data.delijn.be/stops/505526"], ["https://data.delijn.be/stops/400816", "https://data.delijn.be/stops/406836"], ["https://data.delijn.be/stops/208271", "https://data.delijn.be/stops/219006"], ["https://data.delijn.be/stops/503880", "https://data.delijn.be/stops/508662"], ["https://data.delijn.be/stops/108489", "https://data.delijn.be/stops/306593"], ["https://data.delijn.be/stops/401431", "https://data.delijn.be/stops/402216"], ["https://data.delijn.be/stops/408632", "https://data.delijn.be/stops/410192"], ["https://data.delijn.be/stops/304000", "https://data.delijn.be/stops/304001"], ["https://data.delijn.be/stops/504741", "https://data.delijn.be/stops/509741"], ["https://data.delijn.be/stops/302153", "https://data.delijn.be/stops/308573"], ["https://data.delijn.be/stops/502767", "https://data.delijn.be/stops/507383"], ["https://data.delijn.be/stops/504596", "https://data.delijn.be/stops/509250"], ["https://data.delijn.be/stops/208273", "https://data.delijn.be/stops/208738"], ["https://data.delijn.be/stops/403678", "https://data.delijn.be/stops/409320"], ["https://data.delijn.be/stops/303190", "https://data.delijn.be/stops/303191"], ["https://data.delijn.be/stops/403908", "https://data.delijn.be/stops/403973"], ["https://data.delijn.be/stops/103604", "https://data.delijn.be/stops/103605"], ["https://data.delijn.be/stops/204109", "https://data.delijn.be/stops/205108"], ["https://data.delijn.be/stops/103152", "https://data.delijn.be/stops/410162"], ["https://data.delijn.be/stops/407120", "https://data.delijn.be/stops/409509"], ["https://data.delijn.be/stops/204194", "https://data.delijn.be/stops/205194"], ["https://data.delijn.be/stops/404304", "https://data.delijn.be/stops/404305"], ["https://data.delijn.be/stops/201828", "https://data.delijn.be/stops/208282"], ["https://data.delijn.be/stops/206103", "https://data.delijn.be/stops/206123"], ["https://data.delijn.be/stops/400548", "https://data.delijn.be/stops/400549"], ["https://data.delijn.be/stops/405048", "https://data.delijn.be/stops/405066"], ["https://data.delijn.be/stops/504316", "https://data.delijn.be/stops/509451"], ["https://data.delijn.be/stops/503969", "https://data.delijn.be/stops/505640"], ["https://data.delijn.be/stops/104607", "https://data.delijn.be/stops/108841"], ["https://data.delijn.be/stops/408275", "https://data.delijn.be/stops/408397"], ["https://data.delijn.be/stops/208056", "https://data.delijn.be/stops/209056"], ["https://data.delijn.be/stops/400587", "https://data.delijn.be/stops/400607"], ["https://data.delijn.be/stops/300490", "https://data.delijn.be/stops/300498"], ["https://data.delijn.be/stops/502046", "https://data.delijn.be/stops/507046"], ["https://data.delijn.be/stops/301332", "https://data.delijn.be/stops/301335"], ["https://data.delijn.be/stops/406561", "https://data.delijn.be/stops/406563"], ["https://data.delijn.be/stops/503707", "https://data.delijn.be/stops/508707"], ["https://data.delijn.be/stops/504115", "https://data.delijn.be/stops/504643"], ["https://data.delijn.be/stops/407680", "https://data.delijn.be/stops/408699"], ["https://data.delijn.be/stops/205987", "https://data.delijn.be/stops/208222"], ["https://data.delijn.be/stops/403927", "https://data.delijn.be/stops/404030"], ["https://data.delijn.be/stops/105874", "https://data.delijn.be/stops/105886"], ["https://data.delijn.be/stops/406739", "https://data.delijn.be/stops/407564"], ["https://data.delijn.be/stops/204983", "https://data.delijn.be/stops/206210"], ["https://data.delijn.be/stops/206983", "https://data.delijn.be/stops/206984"], ["https://data.delijn.be/stops/502032", "https://data.delijn.be/stops/507447"], ["https://data.delijn.be/stops/106303", "https://data.delijn.be/stops/106305"], ["https://data.delijn.be/stops/407397", "https://data.delijn.be/stops/407547"], ["https://data.delijn.be/stops/304250", "https://data.delijn.be/stops/304254"], ["https://data.delijn.be/stops/303625", "https://data.delijn.be/stops/304924"], ["https://data.delijn.be/stops/203184", "https://data.delijn.be/stops/204235"], ["https://data.delijn.be/stops/105076", "https://data.delijn.be/stops/105191"], ["https://data.delijn.be/stops/403052", "https://data.delijn.be/stops/409571"], ["https://data.delijn.be/stops/208334", "https://data.delijn.be/stops/208335"], ["https://data.delijn.be/stops/300777", "https://data.delijn.be/stops/302409"], ["https://data.delijn.be/stops/201379", "https://data.delijn.be/stops/201538"], ["https://data.delijn.be/stops/306149", "https://data.delijn.be/stops/306151"], ["https://data.delijn.be/stops/101923", "https://data.delijn.be/stops/107023"], ["https://data.delijn.be/stops/408625", "https://data.delijn.be/stops/408780"], ["https://data.delijn.be/stops/407839", "https://data.delijn.be/stops/407904"], ["https://data.delijn.be/stops/305264", "https://data.delijn.be/stops/305280"], ["https://data.delijn.be/stops/402096", "https://data.delijn.be/stops/402317"], ["https://data.delijn.be/stops/106557", "https://data.delijn.be/stops/106559"], ["https://data.delijn.be/stops/204406", "https://data.delijn.be/stops/205205"], ["https://data.delijn.be/stops/101516", "https://data.delijn.be/stops/109021"], ["https://data.delijn.be/stops/206308", "https://data.delijn.be/stops/207309"], ["https://data.delijn.be/stops/102868", "https://data.delijn.be/stops/106508"], ["https://data.delijn.be/stops/107712", "https://data.delijn.be/stops/107713"], ["https://data.delijn.be/stops/300781", "https://data.delijn.be/stops/301048"], ["https://data.delijn.be/stops/303820", "https://data.delijn.be/stops/303823"], ["https://data.delijn.be/stops/505649", "https://data.delijn.be/stops/507754"], ["https://data.delijn.be/stops/502400", "https://data.delijn.be/stops/507393"], ["https://data.delijn.be/stops/200974", "https://data.delijn.be/stops/206760"], ["https://data.delijn.be/stops/108730", "https://data.delijn.be/stops/109725"], ["https://data.delijn.be/stops/503099", "https://data.delijn.be/stops/505260"], ["https://data.delijn.be/stops/104662", "https://data.delijn.be/stops/306606"], ["https://data.delijn.be/stops/200262", "https://data.delijn.be/stops/202546"], ["https://data.delijn.be/stops/304482", "https://data.delijn.be/stops/304517"], ["https://data.delijn.be/stops/506767", "https://data.delijn.be/stops/506768"], ["https://data.delijn.be/stops/101055", "https://data.delijn.be/stops/108550"], ["https://data.delijn.be/stops/308742", "https://data.delijn.be/stops/308747"], ["https://data.delijn.be/stops/400533", "https://data.delijn.be/stops/405328"], ["https://data.delijn.be/stops/102494", "https://data.delijn.be/stops/400300"], ["https://data.delijn.be/stops/200180", "https://data.delijn.be/stops/201186"], ["https://data.delijn.be/stops/108472", "https://data.delijn.be/stops/108803"], ["https://data.delijn.be/stops/304573", "https://data.delijn.be/stops/304575"], ["https://data.delijn.be/stops/300478", "https://data.delijn.be/stops/302082"], ["https://data.delijn.be/stops/400403", "https://data.delijn.be/stops/405834"], ["https://data.delijn.be/stops/204693", "https://data.delijn.be/stops/205350"], ["https://data.delijn.be/stops/105494", "https://data.delijn.be/stops/105496"], ["https://data.delijn.be/stops/404258", "https://data.delijn.be/stops/405389"], ["https://data.delijn.be/stops/300332", "https://data.delijn.be/stops/307479"], ["https://data.delijn.be/stops/502555", "https://data.delijn.be/stops/505345"], ["https://data.delijn.be/stops/200547", "https://data.delijn.be/stops/208682"], ["https://data.delijn.be/stops/102700", "https://data.delijn.be/stops/104220"], ["https://data.delijn.be/stops/104723", "https://data.delijn.be/stops/105405"], ["https://data.delijn.be/stops/504962", "https://data.delijn.be/stops/505368"], ["https://data.delijn.be/stops/508713", "https://data.delijn.be/stops/508755"], ["https://data.delijn.be/stops/206388", "https://data.delijn.be/stops/207387"], ["https://data.delijn.be/stops/208117", "https://data.delijn.be/stops/209797"], ["https://data.delijn.be/stops/503220", "https://data.delijn.be/stops/508220"], ["https://data.delijn.be/stops/403662", "https://data.delijn.be/stops/403708"], ["https://data.delijn.be/stops/101906", "https://data.delijn.be/stops/107111"], ["https://data.delijn.be/stops/101788", "https://data.delijn.be/stops/105611"], ["https://data.delijn.be/stops/201475", "https://data.delijn.be/stops/210061"], ["https://data.delijn.be/stops/105003", "https://data.delijn.be/stops/105192"], ["https://data.delijn.be/stops/501150", "https://data.delijn.be/stops/506150"], ["https://data.delijn.be/stops/204408", "https://data.delijn.be/stops/205408"], ["https://data.delijn.be/stops/208209", "https://data.delijn.be/stops/209209"], ["https://data.delijn.be/stops/503658", "https://data.delijn.be/stops/508697"], ["https://data.delijn.be/stops/304934", "https://data.delijn.be/stops/304935"], ["https://data.delijn.be/stops/109270", "https://data.delijn.be/stops/109271"], ["https://data.delijn.be/stops/102592", "https://data.delijn.be/stops/109001"], ["https://data.delijn.be/stops/406674", "https://data.delijn.be/stops/406675"], ["https://data.delijn.be/stops/107202", "https://data.delijn.be/stops/406792"], ["https://data.delijn.be/stops/405265", "https://data.delijn.be/stops/408367"], ["https://data.delijn.be/stops/404934", "https://data.delijn.be/stops/404966"], ["https://data.delijn.be/stops/505355", "https://data.delijn.be/stops/506222"], ["https://data.delijn.be/stops/300764", "https://data.delijn.be/stops/300787"], ["https://data.delijn.be/stops/503301", "https://data.delijn.be/stops/508309"], ["https://data.delijn.be/stops/206443", "https://data.delijn.be/stops/209682"], ["https://data.delijn.be/stops/202236", "https://data.delijn.be/stops/202237"], ["https://data.delijn.be/stops/207928", "https://data.delijn.be/stops/207929"], ["https://data.delijn.be/stops/400492", "https://data.delijn.be/stops/400493"], ["https://data.delijn.be/stops/108436", "https://data.delijn.be/stops/108438"], ["https://data.delijn.be/stops/400931", "https://data.delijn.be/stops/406977"], ["https://data.delijn.be/stops/504266", "https://data.delijn.be/stops/505829"], ["https://data.delijn.be/stops/204757", "https://data.delijn.be/stops/205756"], ["https://data.delijn.be/stops/504058", "https://data.delijn.be/stops/504638"], ["https://data.delijn.be/stops/300459", "https://data.delijn.be/stops/304979"], ["https://data.delijn.be/stops/503283", "https://data.delijn.be/stops/505951"], ["https://data.delijn.be/stops/200548", "https://data.delijn.be/stops/210528"], ["https://data.delijn.be/stops/301153", "https://data.delijn.be/stops/301154"], ["https://data.delijn.be/stops/208009", "https://data.delijn.be/stops/209009"], ["https://data.delijn.be/stops/103622", "https://data.delijn.be/stops/106198"], ["https://data.delijn.be/stops/108636", "https://data.delijn.be/stops/406505"], ["https://data.delijn.be/stops/410221", "https://data.delijn.be/stops/410338"], ["https://data.delijn.be/stops/403564", "https://data.delijn.be/stops/410287"], ["https://data.delijn.be/stops/200504", "https://data.delijn.be/stops/201155"], ["https://data.delijn.be/stops/206575", "https://data.delijn.be/stops/207561"], ["https://data.delijn.be/stops/404128", "https://data.delijn.be/stops/404131"], ["https://data.delijn.be/stops/102178", "https://data.delijn.be/stops/102799"], ["https://data.delijn.be/stops/405267", "https://data.delijn.be/stops/405273"], ["https://data.delijn.be/stops/304657", "https://data.delijn.be/stops/306170"], ["https://data.delijn.be/stops/304529", "https://data.delijn.be/stops/304531"], ["https://data.delijn.be/stops/401764", "https://data.delijn.be/stops/406343"], ["https://data.delijn.be/stops/108562", "https://data.delijn.be/stops/409531"], ["https://data.delijn.be/stops/106919", "https://data.delijn.be/stops/107282"], ["https://data.delijn.be/stops/104813", "https://data.delijn.be/stops/104814"], ["https://data.delijn.be/stops/305383", "https://data.delijn.be/stops/305397"], ["https://data.delijn.be/stops/506035", "https://data.delijn.be/stops/506632"], ["https://data.delijn.be/stops/109206", "https://data.delijn.be/stops/109207"], ["https://data.delijn.be/stops/503536", "https://data.delijn.be/stops/505159"], ["https://data.delijn.be/stops/202270", "https://data.delijn.be/stops/203270"], ["https://data.delijn.be/stops/502557", "https://data.delijn.be/stops/507673"], ["https://data.delijn.be/stops/501013", "https://data.delijn.be/stops/501607"], ["https://data.delijn.be/stops/305583", "https://data.delijn.be/stops/307824"], ["https://data.delijn.be/stops/106764", "https://data.delijn.be/stops/106865"], ["https://data.delijn.be/stops/102721", "https://data.delijn.be/stops/102735"], ["https://data.delijn.be/stops/204165", "https://data.delijn.be/stops/204166"], ["https://data.delijn.be/stops/300127", "https://data.delijn.be/stops/300128"], ["https://data.delijn.be/stops/405624", "https://data.delijn.be/stops/405754"], ["https://data.delijn.be/stops/103675", "https://data.delijn.be/stops/103680"], ["https://data.delijn.be/stops/504479", "https://data.delijn.be/stops/509157"], ["https://data.delijn.be/stops/402562", "https://data.delijn.be/stops/402571"], ["https://data.delijn.be/stops/104383", "https://data.delijn.be/stops/104387"], ["https://data.delijn.be/stops/101724", "https://data.delijn.be/stops/106806"], ["https://data.delijn.be/stops/504113", "https://data.delijn.be/stops/504469"], ["https://data.delijn.be/stops/304235", "https://data.delijn.be/stops/304686"], ["https://data.delijn.be/stops/207732", "https://data.delijn.be/stops/303872"], ["https://data.delijn.be/stops/301701", "https://data.delijn.be/stops/301702"], ["https://data.delijn.be/stops/107342", "https://data.delijn.be/stops/108163"], ["https://data.delijn.be/stops/400763", "https://data.delijn.be/stops/405269"], ["https://data.delijn.be/stops/306951", "https://data.delijn.be/stops/306952"], ["https://data.delijn.be/stops/304544", "https://data.delijn.be/stops/304545"], ["https://data.delijn.be/stops/305522", "https://data.delijn.be/stops/305571"], ["https://data.delijn.be/stops/301837", "https://data.delijn.be/stops/301853"], ["https://data.delijn.be/stops/504430", "https://data.delijn.be/stops/504438"], ["https://data.delijn.be/stops/503777", "https://data.delijn.be/stops/503788"], ["https://data.delijn.be/stops/409742", "https://data.delijn.be/stops/409747"], ["https://data.delijn.be/stops/103147", "https://data.delijn.be/stops/103287"], ["https://data.delijn.be/stops/201714", "https://data.delijn.be/stops/203380"], ["https://data.delijn.be/stops/301591", "https://data.delijn.be/stops/308088"], ["https://data.delijn.be/stops/200534", "https://data.delijn.be/stops/211091"], ["https://data.delijn.be/stops/500195", "https://data.delijn.be/stops/509794"], ["https://data.delijn.be/stops/102093", "https://data.delijn.be/stops/109813"], ["https://data.delijn.be/stops/103610", "https://data.delijn.be/stops/108905"], ["https://data.delijn.be/stops/200339", "https://data.delijn.be/stops/200544"], ["https://data.delijn.be/stops/105391", "https://data.delijn.be/stops/105393"], ["https://data.delijn.be/stops/305961", "https://data.delijn.be/stops/305963"], ["https://data.delijn.be/stops/400589", "https://data.delijn.be/stops/400611"], ["https://data.delijn.be/stops/502165", "https://data.delijn.be/stops/507165"], ["https://data.delijn.be/stops/101887", "https://data.delijn.be/stops/101888"], ["https://data.delijn.be/stops/207653", "https://data.delijn.be/stops/207654"], ["https://data.delijn.be/stops/505017", "https://data.delijn.be/stops/505021"], ["https://data.delijn.be/stops/504343", "https://data.delijn.be/stops/509342"], ["https://data.delijn.be/stops/209046", "https://data.delijn.be/stops/209596"], ["https://data.delijn.be/stops/302946", "https://data.delijn.be/stops/308656"], ["https://data.delijn.be/stops/505018", "https://data.delijn.be/stops/507666"], ["https://data.delijn.be/stops/305183", "https://data.delijn.be/stops/305184"], ["https://data.delijn.be/stops/503984", "https://data.delijn.be/stops/508213"], ["https://data.delijn.be/stops/503750", "https://data.delijn.be/stops/508155"], ["https://data.delijn.be/stops/206182", "https://data.delijn.be/stops/206219"], ["https://data.delijn.be/stops/502732", "https://data.delijn.be/stops/507732"], ["https://data.delijn.be/stops/401814", "https://data.delijn.be/stops/401816"], ["https://data.delijn.be/stops/407700", "https://data.delijn.be/stops/407701"], ["https://data.delijn.be/stops/406364", "https://data.delijn.be/stops/406410"], ["https://data.delijn.be/stops/503475", "https://data.delijn.be/stops/504808"], ["https://data.delijn.be/stops/109855", "https://data.delijn.be/stops/109953"], ["https://data.delijn.be/stops/208080", "https://data.delijn.be/stops/208125"], ["https://data.delijn.be/stops/400815", "https://data.delijn.be/stops/403570"], ["https://data.delijn.be/stops/408493", "https://data.delijn.be/stops/408950"], ["https://data.delijn.be/stops/202573", "https://data.delijn.be/stops/202607"], ["https://data.delijn.be/stops/402502", "https://data.delijn.be/stops/402504"], ["https://data.delijn.be/stops/507627", "https://data.delijn.be/stops/507680"], ["https://data.delijn.be/stops/503766", "https://data.delijn.be/stops/508766"], ["https://data.delijn.be/stops/505157", "https://data.delijn.be/stops/508113"], ["https://data.delijn.be/stops/306689", "https://data.delijn.be/stops/308784"], ["https://data.delijn.be/stops/300167", "https://data.delijn.be/stops/300173"], ["https://data.delijn.be/stops/103740", "https://data.delijn.be/stops/105595"], ["https://data.delijn.be/stops/406209", "https://data.delijn.be/stops/406213"], ["https://data.delijn.be/stops/400915", "https://data.delijn.be/stops/406875"], ["https://data.delijn.be/stops/200900", "https://data.delijn.be/stops/204994"], ["https://data.delijn.be/stops/107393", "https://data.delijn.be/stops/107396"], ["https://data.delijn.be/stops/500047", "https://data.delijn.be/stops/500050"], ["https://data.delijn.be/stops/405684", "https://data.delijn.be/stops/406476"], ["https://data.delijn.be/stops/107975", "https://data.delijn.be/stops/109095"], ["https://data.delijn.be/stops/107819", "https://data.delijn.be/stops/107821"], ["https://data.delijn.be/stops/300349", "https://data.delijn.be/stops/308991"], ["https://data.delijn.be/stops/502357", "https://data.delijn.be/stops/502531"], ["https://data.delijn.be/stops/503471", "https://data.delijn.be/stops/504795"], ["https://data.delijn.be/stops/106109", "https://data.delijn.be/stops/106110"], ["https://data.delijn.be/stops/304857", "https://data.delijn.be/stops/307831"], ["https://data.delijn.be/stops/509204", "https://data.delijn.be/stops/509206"], ["https://data.delijn.be/stops/403910", "https://data.delijn.be/stops/403958"], ["https://data.delijn.be/stops/303070", "https://data.delijn.be/stops/303134"], ["https://data.delijn.be/stops/108187", "https://data.delijn.be/stops/108356"], ["https://data.delijn.be/stops/105214", "https://data.delijn.be/stops/107234"], ["https://data.delijn.be/stops/206907", "https://data.delijn.be/stops/207907"], ["https://data.delijn.be/stops/407450", "https://data.delijn.be/stops/407466"], ["https://data.delijn.be/stops/302653", "https://data.delijn.be/stops/302656"], ["https://data.delijn.be/stops/504981", "https://data.delijn.be/stops/509092"], ["https://data.delijn.be/stops/206995", "https://data.delijn.be/stops/207977"], ["https://data.delijn.be/stops/108752", "https://data.delijn.be/stops/108753"], ["https://data.delijn.be/stops/104677", "https://data.delijn.be/stops/104681"], ["https://data.delijn.be/stops/503562", "https://data.delijn.be/stops/503569"], ["https://data.delijn.be/stops/503036", "https://data.delijn.be/stops/508036"], ["https://data.delijn.be/stops/503820", "https://data.delijn.be/stops/508820"], ["https://data.delijn.be/stops/403056", "https://data.delijn.be/stops/410360"], ["https://data.delijn.be/stops/300628", "https://data.delijn.be/stops/307860"], ["https://data.delijn.be/stops/105139", "https://data.delijn.be/stops/108504"], ["https://data.delijn.be/stops/502526", "https://data.delijn.be/stops/505019"], ["https://data.delijn.be/stops/403104", "https://data.delijn.be/stops/403113"], ["https://data.delijn.be/stops/105203", "https://data.delijn.be/stops/105205"], ["https://data.delijn.be/stops/108037", "https://data.delijn.be/stops/108039"], ["https://data.delijn.be/stops/407167", "https://data.delijn.be/stops/407171"], ["https://data.delijn.be/stops/400121", "https://data.delijn.be/stops/400167"], ["https://data.delijn.be/stops/303300", "https://data.delijn.be/stops/304713"], ["https://data.delijn.be/stops/503015", "https://data.delijn.be/stops/508015"], ["https://data.delijn.be/stops/101000", "https://data.delijn.be/stops/101005"], ["https://data.delijn.be/stops/101055", "https://data.delijn.be/stops/103047"], ["https://data.delijn.be/stops/201776", "https://data.delijn.be/stops/209854"], ["https://data.delijn.be/stops/504355", "https://data.delijn.be/stops/504356"], ["https://data.delijn.be/stops/204070", "https://data.delijn.be/stops/204180"], ["https://data.delijn.be/stops/206252", "https://data.delijn.be/stops/207252"], ["https://data.delijn.be/stops/101011", "https://data.delijn.be/stops/101649"], ["https://data.delijn.be/stops/400098", "https://data.delijn.be/stops/400126"], ["https://data.delijn.be/stops/501003", "https://data.delijn.be/stops/501011"], ["https://data.delijn.be/stops/204427", "https://data.delijn.be/stops/205427"], ["https://data.delijn.be/stops/208650", "https://data.delijn.be/stops/209651"], ["https://data.delijn.be/stops/503068", "https://data.delijn.be/stops/503076"], ["https://data.delijn.be/stops/204028", "https://data.delijn.be/stops/205028"], ["https://data.delijn.be/stops/208121", "https://data.delijn.be/stops/208206"], ["https://data.delijn.be/stops/509642", "https://data.delijn.be/stops/509648"], ["https://data.delijn.be/stops/409053", "https://data.delijn.be/stops/409082"], ["https://data.delijn.be/stops/105673", "https://data.delijn.be/stops/105676"], ["https://data.delijn.be/stops/408323", "https://data.delijn.be/stops/408350"], ["https://data.delijn.be/stops/105715", "https://data.delijn.be/stops/105730"], ["https://data.delijn.be/stops/407564", "https://data.delijn.be/stops/407565"], ["https://data.delijn.be/stops/204750", "https://data.delijn.be/stops/205750"], ["https://data.delijn.be/stops/401308", "https://data.delijn.be/stops/401309"], ["https://data.delijn.be/stops/400514", "https://data.delijn.be/stops/400515"], ["https://data.delijn.be/stops/206157", "https://data.delijn.be/stops/206158"], ["https://data.delijn.be/stops/103341", "https://data.delijn.be/stops/104363"], ["https://data.delijn.be/stops/107331", "https://data.delijn.be/stops/107334"], ["https://data.delijn.be/stops/404059", "https://data.delijn.be/stops/404543"], ["https://data.delijn.be/stops/504423", "https://data.delijn.be/stops/509423"], ["https://data.delijn.be/stops/202099", "https://data.delijn.be/stops/203257"], ["https://data.delijn.be/stops/109112", "https://data.delijn.be/stops/109116"], ["https://data.delijn.be/stops/102201", "https://data.delijn.be/stops/105939"], ["https://data.delijn.be/stops/504838", "https://data.delijn.be/stops/504984"], ["https://data.delijn.be/stops/505703", "https://data.delijn.be/stops/507537"], ["https://data.delijn.be/stops/107322", "https://data.delijn.be/stops/108821"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/505362"], ["https://data.delijn.be/stops/109027", "https://data.delijn.be/stops/109029"], ["https://data.delijn.be/stops/305944", "https://data.delijn.be/stops/305945"], ["https://data.delijn.be/stops/206540", "https://data.delijn.be/stops/207533"], ["https://data.delijn.be/stops/108786", "https://data.delijn.be/stops/108787"], ["https://data.delijn.be/stops/109071", "https://data.delijn.be/stops/109073"], ["https://data.delijn.be/stops/301304", "https://data.delijn.be/stops/306007"], ["https://data.delijn.be/stops/407141", "https://data.delijn.be/stops/407296"], ["https://data.delijn.be/stops/502558", "https://data.delijn.be/stops/507557"], ["https://data.delijn.be/stops/101046", "https://data.delijn.be/stops/102011"], ["https://data.delijn.be/stops/303170", "https://data.delijn.be/stops/305526"], ["https://data.delijn.be/stops/403318", "https://data.delijn.be/stops/403325"], ["https://data.delijn.be/stops/210048", "https://data.delijn.be/stops/210107"], ["https://data.delijn.be/stops/400314", "https://data.delijn.be/stops/402791"], ["https://data.delijn.be/stops/405282", "https://data.delijn.be/stops/409662"], ["https://data.delijn.be/stops/104476", "https://data.delijn.be/stops/109751"], ["https://data.delijn.be/stops/107579", "https://data.delijn.be/stops/109430"], ["https://data.delijn.be/stops/402087", "https://data.delijn.be/stops/402089"], ["https://data.delijn.be/stops/106598", "https://data.delijn.be/stops/107208"], ["https://data.delijn.be/stops/202025", "https://data.delijn.be/stops/203026"], ["https://data.delijn.be/stops/400631", "https://data.delijn.be/stops/400634"], ["https://data.delijn.be/stops/202146", "https://data.delijn.be/stops/203188"], ["https://data.delijn.be/stops/308474", "https://data.delijn.be/stops/308486"], ["https://data.delijn.be/stops/504025", "https://data.delijn.be/stops/509025"], ["https://data.delijn.be/stops/301634", "https://data.delijn.be/stops/306154"], ["https://data.delijn.be/stops/205107", "https://data.delijn.be/stops/205115"], ["https://data.delijn.be/stops/403328", "https://data.delijn.be/stops/403347"], ["https://data.delijn.be/stops/202856", "https://data.delijn.be/stops/203922"], ["https://data.delijn.be/stops/204580", "https://data.delijn.be/stops/204774"], ["https://data.delijn.be/stops/401592", "https://data.delijn.be/stops/401593"], ["https://data.delijn.be/stops/404067", "https://data.delijn.be/stops/408447"], ["https://data.delijn.be/stops/102408", "https://data.delijn.be/stops/109081"], ["https://data.delijn.be/stops/406912", "https://data.delijn.be/stops/406913"], ["https://data.delijn.be/stops/201698", "https://data.delijn.be/stops/203447"], ["https://data.delijn.be/stops/218017", "https://data.delijn.be/stops/219017"], ["https://data.delijn.be/stops/502481", "https://data.delijn.be/stops/507470"], ["https://data.delijn.be/stops/404773", "https://data.delijn.be/stops/404776"], ["https://data.delijn.be/stops/206800", "https://data.delijn.be/stops/209553"], ["https://data.delijn.be/stops/102090", "https://data.delijn.be/stops/104480"], ["https://data.delijn.be/stops/103011", "https://data.delijn.be/stops/104094"], ["https://data.delijn.be/stops/302955", "https://data.delijn.be/stops/307077"], ["https://data.delijn.be/stops/202459", "https://data.delijn.be/stops/203506"], ["https://data.delijn.be/stops/406069", "https://data.delijn.be/stops/406378"], ["https://data.delijn.be/stops/107105", "https://data.delijn.be/stops/107590"], ["https://data.delijn.be/stops/305065", "https://data.delijn.be/stops/306918"], ["https://data.delijn.be/stops/504622", "https://data.delijn.be/stops/509621"], ["https://data.delijn.be/stops/404507", "https://data.delijn.be/stops/404545"], ["https://data.delijn.be/stops/501628", "https://data.delijn.be/stops/505714"], ["https://data.delijn.be/stops/404638", "https://data.delijn.be/stops/406956"], ["https://data.delijn.be/stops/405033", "https://data.delijn.be/stops/408147"], ["https://data.delijn.be/stops/106829", "https://data.delijn.be/stops/107408"], ["https://data.delijn.be/stops/109552", "https://data.delijn.be/stops/300052"], ["https://data.delijn.be/stops/109931", "https://data.delijn.be/stops/109952"], ["https://data.delijn.be/stops/304982", "https://data.delijn.be/stops/308029"], ["https://data.delijn.be/stops/406427", "https://data.delijn.be/stops/409396"], ["https://data.delijn.be/stops/404349", "https://data.delijn.be/stops/404949"], ["https://data.delijn.be/stops/503453", "https://data.delijn.be/stops/503475"], ["https://data.delijn.be/stops/501460", "https://data.delijn.be/stops/506460"], ["https://data.delijn.be/stops/401825", "https://data.delijn.be/stops/401830"], ["https://data.delijn.be/stops/300345", "https://data.delijn.be/stops/300346"], ["https://data.delijn.be/stops/505190", "https://data.delijn.be/stops/509097"], ["https://data.delijn.be/stops/404109", "https://data.delijn.be/stops/404112"], ["https://data.delijn.be/stops/207528", "https://data.delijn.be/stops/207556"], ["https://data.delijn.be/stops/307211", "https://data.delijn.be/stops/307212"], ["https://data.delijn.be/stops/200549", "https://data.delijn.be/stops/200985"], ["https://data.delijn.be/stops/204655", "https://data.delijn.be/stops/205655"], ["https://data.delijn.be/stops/204245", "https://data.delijn.be/stops/205244"], ["https://data.delijn.be/stops/302504", "https://data.delijn.be/stops/302509"], ["https://data.delijn.be/stops/203864", "https://data.delijn.be/stops/208712"], ["https://data.delijn.be/stops/400840", "https://data.delijn.be/stops/400841"], ["https://data.delijn.be/stops/502260", "https://data.delijn.be/stops/505704"], ["https://data.delijn.be/stops/109807", "https://data.delijn.be/stops/109809"], ["https://data.delijn.be/stops/303030", "https://data.delijn.be/stops/307725"], ["https://data.delijn.be/stops/103205", "https://data.delijn.be/stops/106508"], ["https://data.delijn.be/stops/104301", "https://data.delijn.be/stops/105928"], ["https://data.delijn.be/stops/206597", "https://data.delijn.be/stops/206661"], ["https://data.delijn.be/stops/304642", "https://data.delijn.be/stops/307792"], ["https://data.delijn.be/stops/201930", "https://data.delijn.be/stops/202470"], ["https://data.delijn.be/stops/302004", "https://data.delijn.be/stops/308959"], ["https://data.delijn.be/stops/202952", "https://data.delijn.be/stops/203951"], ["https://data.delijn.be/stops/304879", "https://data.delijn.be/stops/306178"], ["https://data.delijn.be/stops/400226", "https://data.delijn.be/stops/400235"], ["https://data.delijn.be/stops/400696", "https://data.delijn.be/stops/409536"], ["https://data.delijn.be/stops/200604", "https://data.delijn.be/stops/201940"], ["https://data.delijn.be/stops/505817", "https://data.delijn.be/stops/505911"], ["https://data.delijn.be/stops/401848", "https://data.delijn.be/stops/406230"], ["https://data.delijn.be/stops/403094", "https://data.delijn.be/stops/403095"], ["https://data.delijn.be/stops/200953", "https://data.delijn.be/stops/203436"], ["https://data.delijn.be/stops/402307", "https://data.delijn.be/stops/402308"], ["https://data.delijn.be/stops/303272", "https://data.delijn.be/stops/305725"], ["https://data.delijn.be/stops/304398", "https://data.delijn.be/stops/307409"], ["https://data.delijn.be/stops/107164", "https://data.delijn.be/stops/107165"], ["https://data.delijn.be/stops/302914", "https://data.delijn.be/stops/302915"], ["https://data.delijn.be/stops/507306", "https://data.delijn.be/stops/507598"], ["https://data.delijn.be/stops/103262", "https://data.delijn.be/stops/103263"], ["https://data.delijn.be/stops/202412", "https://data.delijn.be/stops/203420"], ["https://data.delijn.be/stops/103036", "https://data.delijn.be/stops/106403"], ["https://data.delijn.be/stops/204312", "https://data.delijn.be/stops/204313"], ["https://data.delijn.be/stops/304126", "https://data.delijn.be/stops/305450"], ["https://data.delijn.be/stops/107457", "https://data.delijn.be/stops/107459"], ["https://data.delijn.be/stops/301595", "https://data.delijn.be/stops/308093"], ["https://data.delijn.be/stops/107244", "https://data.delijn.be/stops/107246"], ["https://data.delijn.be/stops/402809", "https://data.delijn.be/stops/404619"], ["https://data.delijn.be/stops/204593", "https://data.delijn.be/stops/205162"], ["https://data.delijn.be/stops/304542", "https://data.delijn.be/stops/307764"], ["https://data.delijn.be/stops/200012", "https://data.delijn.be/stops/201013"], ["https://data.delijn.be/stops/502544", "https://data.delijn.be/stops/502638"], ["https://data.delijn.be/stops/104867", "https://data.delijn.be/stops/107856"], ["https://data.delijn.be/stops/102915", "https://data.delijn.be/stops/103389"], ["https://data.delijn.be/stops/305707", "https://data.delijn.be/stops/307927"], ["https://data.delijn.be/stops/206001", "https://data.delijn.be/stops/207062"], ["https://data.delijn.be/stops/408614", "https://data.delijn.be/stops/410191"], ["https://data.delijn.be/stops/101305", "https://data.delijn.be/stops/101310"], ["https://data.delijn.be/stops/208084", "https://data.delijn.be/stops/209700"], ["https://data.delijn.be/stops/408581", "https://data.delijn.be/stops/307055"], ["https://data.delijn.be/stops/509223", "https://data.delijn.be/stops/509523"], ["https://data.delijn.be/stops/106228", "https://data.delijn.be/stops/106326"], ["https://data.delijn.be/stops/103682", "https://data.delijn.be/stops/106196"], ["https://data.delijn.be/stops/103679", "https://data.delijn.be/stops/106198"], ["https://data.delijn.be/stops/504562", "https://data.delijn.be/stops/509562"], ["https://data.delijn.be/stops/502239", "https://data.delijn.be/stops/507239"], ["https://data.delijn.be/stops/102313", "https://data.delijn.be/stops/107490"], ["https://data.delijn.be/stops/200777", "https://data.delijn.be/stops/201806"], ["https://data.delijn.be/stops/203560", "https://data.delijn.be/stops/203608"], ["https://data.delijn.be/stops/300421", "https://data.delijn.be/stops/307100"], ["https://data.delijn.be/stops/109435", "https://data.delijn.be/stops/109436"], ["https://data.delijn.be/stops/502817", "https://data.delijn.be/stops/502818"], ["https://data.delijn.be/stops/101049", "https://data.delijn.be/stops/104368"], ["https://data.delijn.be/stops/207797", "https://data.delijn.be/stops/208767"], ["https://data.delijn.be/stops/103634", "https://data.delijn.be/stops/103638"], ["https://data.delijn.be/stops/302679", "https://data.delijn.be/stops/303611"], ["https://data.delijn.be/stops/201047", "https://data.delijn.be/stops/201930"], ["https://data.delijn.be/stops/109433", "https://data.delijn.be/stops/109434"], ["https://data.delijn.be/stops/501268", "https://data.delijn.be/stops/501511"], ["https://data.delijn.be/stops/102924", "https://data.delijn.be/stops/108974"], ["https://data.delijn.be/stops/402793", "https://data.delijn.be/stops/402794"], ["https://data.delijn.be/stops/202296", "https://data.delijn.be/stops/211298"], ["https://data.delijn.be/stops/203182", "https://data.delijn.be/stops/205235"], ["https://data.delijn.be/stops/501009", "https://data.delijn.be/stops/501467"], ["https://data.delijn.be/stops/304089", "https://data.delijn.be/stops/308529"], ["https://data.delijn.be/stops/401776", "https://data.delijn.be/stops/401789"], ["https://data.delijn.be/stops/304338", "https://data.delijn.be/stops/304707"], ["https://data.delijn.be/stops/201664", "https://data.delijn.be/stops/201688"], ["https://data.delijn.be/stops/108761", "https://data.delijn.be/stops/305784"], ["https://data.delijn.be/stops/200466", "https://data.delijn.be/stops/208955"], ["https://data.delijn.be/stops/304470", "https://data.delijn.be/stops/304672"], ["https://data.delijn.be/stops/206793", "https://data.delijn.be/stops/209091"], ["https://data.delijn.be/stops/404100", "https://data.delijn.be/stops/409296"], ["https://data.delijn.be/stops/305235", "https://data.delijn.be/stops/305311"], ["https://data.delijn.be/stops/300040", "https://data.delijn.be/stops/300042"], ["https://data.delijn.be/stops/105036", "https://data.delijn.be/stops/105169"], ["https://data.delijn.be/stops/201154", "https://data.delijn.be/stops/201175"], ["https://data.delijn.be/stops/104488", "https://data.delijn.be/stops/104558"], ["https://data.delijn.be/stops/105395", "https://data.delijn.be/stops/105400"], ["https://data.delijn.be/stops/204323", "https://data.delijn.be/stops/205062"], ["https://data.delijn.be/stops/200390", "https://data.delijn.be/stops/208720"], ["https://data.delijn.be/stops/308079", "https://data.delijn.be/stops/308742"], ["https://data.delijn.be/stops/501636", "https://data.delijn.be/stops/506374"], ["https://data.delijn.be/stops/209520", "https://data.delijn.be/stops/218017"], ["https://data.delijn.be/stops/109023", "https://data.delijn.be/stops/109077"], ["https://data.delijn.be/stops/503163", "https://data.delijn.be/stops/504293"], ["https://data.delijn.be/stops/204168", "https://data.delijn.be/stops/204588"], ["https://data.delijn.be/stops/402837", "https://data.delijn.be/stops/402845"], ["https://data.delijn.be/stops/109257", "https://data.delijn.be/stops/109259"], ["https://data.delijn.be/stops/302279", "https://data.delijn.be/stops/302296"], ["https://data.delijn.be/stops/404009", "https://data.delijn.be/stops/404013"], ["https://data.delijn.be/stops/200140", "https://data.delijn.be/stops/201140"], ["https://data.delijn.be/stops/305530", "https://data.delijn.be/stops/308980"], ["https://data.delijn.be/stops/504141", "https://data.delijn.be/stops/504942"], ["https://data.delijn.be/stops/106652", "https://data.delijn.be/stops/109753"], ["https://data.delijn.be/stops/207920", "https://data.delijn.be/stops/207921"], ["https://data.delijn.be/stops/504081", "https://data.delijn.be/stops/509084"], ["https://data.delijn.be/stops/507342", "https://data.delijn.be/stops/507484"], ["https://data.delijn.be/stops/208059", "https://data.delijn.be/stops/209058"], ["https://data.delijn.be/stops/200106", "https://data.delijn.be/stops/201106"], ["https://data.delijn.be/stops/302021", "https://data.delijn.be/stops/302055"], ["https://data.delijn.be/stops/104987", "https://data.delijn.be/stops/104988"], ["https://data.delijn.be/stops/204120", "https://data.delijn.be/stops/205119"], ["https://data.delijn.be/stops/202044", "https://data.delijn.be/stops/202045"], ["https://data.delijn.be/stops/102687", "https://data.delijn.be/stops/104805"], ["https://data.delijn.be/stops/106486", "https://data.delijn.be/stops/109212"], ["https://data.delijn.be/stops/300491", "https://data.delijn.be/stops/300495"], ["https://data.delijn.be/stops/400128", "https://data.delijn.be/stops/400129"], ["https://data.delijn.be/stops/407354", "https://data.delijn.be/stops/409858"], ["https://data.delijn.be/stops/407271", "https://data.delijn.be/stops/407515"], ["https://data.delijn.be/stops/206433", "https://data.delijn.be/stops/206537"], ["https://data.delijn.be/stops/202680", "https://data.delijn.be/stops/203693"], ["https://data.delijn.be/stops/502269", "https://data.delijn.be/stops/507655"], ["https://data.delijn.be/stops/200224", "https://data.delijn.be/stops/200444"], ["https://data.delijn.be/stops/103326", "https://data.delijn.be/stops/107704"], ["https://data.delijn.be/stops/500025", "https://data.delijn.be/stops/507342"], ["https://data.delijn.be/stops/504221", "https://data.delijn.be/stops/509217"], ["https://data.delijn.be/stops/405270", "https://data.delijn.be/stops/405271"], ["https://data.delijn.be/stops/206853", "https://data.delijn.be/stops/207853"], ["https://data.delijn.be/stops/502208", "https://data.delijn.be/stops/505244"], ["https://data.delijn.be/stops/407615", "https://data.delijn.be/stops/410090"], ["https://data.delijn.be/stops/300934", "https://data.delijn.be/stops/300996"], ["https://data.delijn.be/stops/206997", "https://data.delijn.be/stops/209749"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/107023"], ["https://data.delijn.be/stops/206555", "https://data.delijn.be/stops/207526"], ["https://data.delijn.be/stops/501346", "https://data.delijn.be/stops/506402"], ["https://data.delijn.be/stops/208658", "https://data.delijn.be/stops/208659"], ["https://data.delijn.be/stops/209124", "https://data.delijn.be/stops/209540"], ["https://data.delijn.be/stops/102411", "https://data.delijn.be/stops/103254"], ["https://data.delijn.be/stops/101538", "https://data.delijn.be/stops/104602"], ["https://data.delijn.be/stops/406108", "https://data.delijn.be/stops/406117"], ["https://data.delijn.be/stops/206886", "https://data.delijn.be/stops/206916"], ["https://data.delijn.be/stops/202154", "https://data.delijn.be/stops/203153"], ["https://data.delijn.be/stops/204166", "https://data.delijn.be/stops/204589"], ["https://data.delijn.be/stops/206149", "https://data.delijn.be/stops/206907"], ["https://data.delijn.be/stops/307303", "https://data.delijn.be/stops/307315"], ["https://data.delijn.be/stops/404949", "https://data.delijn.be/stops/404953"], ["https://data.delijn.be/stops/501410", "https://data.delijn.be/stops/506416"], ["https://data.delijn.be/stops/303757", "https://data.delijn.be/stops/303876"], ["https://data.delijn.be/stops/308793", "https://data.delijn.be/stops/308965"], ["https://data.delijn.be/stops/103475", "https://data.delijn.be/stops/103500"], ["https://data.delijn.be/stops/400212", "https://data.delijn.be/stops/400219"], ["https://data.delijn.be/stops/409130", "https://data.delijn.be/stops/409137"], ["https://data.delijn.be/stops/204337", "https://data.delijn.be/stops/205337"], ["https://data.delijn.be/stops/304268", "https://data.delijn.be/stops/304271"], ["https://data.delijn.be/stops/407361", "https://data.delijn.be/stops/409423"], ["https://data.delijn.be/stops/101904", "https://data.delijn.be/stops/103322"], ["https://data.delijn.be/stops/504749", "https://data.delijn.be/stops/508661"], ["https://data.delijn.be/stops/505058", "https://data.delijn.be/stops/505238"], ["https://data.delijn.be/stops/402440", "https://data.delijn.be/stops/402441"], ["https://data.delijn.be/stops/201419", "https://data.delijn.be/stops/203012"], ["https://data.delijn.be/stops/300086", "https://data.delijn.be/stops/306855"], ["https://data.delijn.be/stops/200425", "https://data.delijn.be/stops/201246"], ["https://data.delijn.be/stops/204032", "https://data.delijn.be/stops/205247"], ["https://data.delijn.be/stops/203314", "https://data.delijn.be/stops/203315"], ["https://data.delijn.be/stops/200306", "https://data.delijn.be/stops/201843"], ["https://data.delijn.be/stops/502749", "https://data.delijn.be/stops/507749"], ["https://data.delijn.be/stops/214010", "https://data.delijn.be/stops/215011"], ["https://data.delijn.be/stops/305215", "https://data.delijn.be/stops/308049"], ["https://data.delijn.be/stops/204228", "https://data.delijn.be/stops/205227"], ["https://data.delijn.be/stops/302427", "https://data.delijn.be/stops/302443"], ["https://data.delijn.be/stops/303443", "https://data.delijn.be/stops/304226"], ["https://data.delijn.be/stops/207444", "https://data.delijn.be/stops/209681"], ["https://data.delijn.be/stops/509196", "https://data.delijn.be/stops/509529"], ["https://data.delijn.be/stops/307086", "https://data.delijn.be/stops/308050"], ["https://data.delijn.be/stops/404464", "https://data.delijn.be/stops/404482"], ["https://data.delijn.be/stops/103648", "https://data.delijn.be/stops/107174"], ["https://data.delijn.be/stops/103069", "https://data.delijn.be/stops/105757"], ["https://data.delijn.be/stops/407120", "https://data.delijn.be/stops/407328"], ["https://data.delijn.be/stops/201317", "https://data.delijn.be/stops/201585"], ["https://data.delijn.be/stops/401508", "https://data.delijn.be/stops/401509"], ["https://data.delijn.be/stops/206802", "https://data.delijn.be/stops/208034"], ["https://data.delijn.be/stops/101524", "https://data.delijn.be/stops/101943"], ["https://data.delijn.be/stops/303584", "https://data.delijn.be/stops/305893"], ["https://data.delijn.be/stops/502747", "https://data.delijn.be/stops/505056"], ["https://data.delijn.be/stops/204047", "https://data.delijn.be/stops/205047"], ["https://data.delijn.be/stops/202785", "https://data.delijn.be/stops/203784"], ["https://data.delijn.be/stops/403250", "https://data.delijn.be/stops/410326"], ["https://data.delijn.be/stops/402525", "https://data.delijn.be/stops/402601"], ["https://data.delijn.be/stops/401102", "https://data.delijn.be/stops/401151"], ["https://data.delijn.be/stops/102529", "https://data.delijn.be/stops/102531"], ["https://data.delijn.be/stops/404897", "https://data.delijn.be/stops/404901"], ["https://data.delijn.be/stops/202853", "https://data.delijn.be/stops/203858"], ["https://data.delijn.be/stops/505231", "https://data.delijn.be/stops/505561"], ["https://data.delijn.be/stops/406615", "https://data.delijn.be/stops/406640"], ["https://data.delijn.be/stops/509527", "https://data.delijn.be/stops/509599"], ["https://data.delijn.be/stops/300611", "https://data.delijn.be/stops/307892"], ["https://data.delijn.be/stops/204192", "https://data.delijn.be/stops/205195"], ["https://data.delijn.be/stops/504205", "https://data.delijn.be/stops/508041"], ["https://data.delijn.be/stops/303708", "https://data.delijn.be/stops/303709"], ["https://data.delijn.be/stops/204635", "https://data.delijn.be/stops/204636"], ["https://data.delijn.be/stops/504663", "https://data.delijn.be/stops/504724"], ["https://data.delijn.be/stops/405032", "https://data.delijn.be/stops/405050"], ["https://data.delijn.be/stops/508073", "https://data.delijn.be/stops/508074"], ["https://data.delijn.be/stops/302360", "https://data.delijn.be/stops/302364"], ["https://data.delijn.be/stops/106175", "https://data.delijn.be/stops/106179"], ["https://data.delijn.be/stops/304006", "https://data.delijn.be/stops/304007"], ["https://data.delijn.be/stops/503007", "https://data.delijn.be/stops/505316"], ["https://data.delijn.be/stops/503779", "https://data.delijn.be/stops/508778"], ["https://data.delijn.be/stops/308222", "https://data.delijn.be/stops/308289"], ["https://data.delijn.be/stops/206120", "https://data.delijn.be/stops/206810"], ["https://data.delijn.be/stops/208768", "https://data.delijn.be/stops/209121"], ["https://data.delijn.be/stops/208872", "https://data.delijn.be/stops/218014"], ["https://data.delijn.be/stops/202439", "https://data.delijn.be/stops/203439"], ["https://data.delijn.be/stops/501210", "https://data.delijn.be/stops/506210"], ["https://data.delijn.be/stops/304608", "https://data.delijn.be/stops/304657"], ["https://data.delijn.be/stops/402176", "https://data.delijn.be/stops/402243"], ["https://data.delijn.be/stops/105117", "https://data.delijn.be/stops/105827"], ["https://data.delijn.be/stops/300432", "https://data.delijn.be/stops/302696"], ["https://data.delijn.be/stops/303250", "https://data.delijn.be/stops/303258"], ["https://data.delijn.be/stops/400387", "https://data.delijn.be/stops/400398"], ["https://data.delijn.be/stops/305712", "https://data.delijn.be/stops/305713"], ["https://data.delijn.be/stops/200011", "https://data.delijn.be/stops/201011"], ["https://data.delijn.be/stops/503782", "https://data.delijn.be/stops/505271"], ["https://data.delijn.be/stops/307550", "https://data.delijn.be/stops/307554"], ["https://data.delijn.be/stops/203153", "https://data.delijn.be/stops/203190"], ["https://data.delijn.be/stops/204971", "https://data.delijn.be/stops/204972"], ["https://data.delijn.be/stops/303394", "https://data.delijn.be/stops/308893"], ["https://data.delijn.be/stops/402390", "https://data.delijn.be/stops/402391"], ["https://data.delijn.be/stops/300032", "https://data.delijn.be/stops/303323"], ["https://data.delijn.be/stops/504225", "https://data.delijn.be/stops/509225"], ["https://data.delijn.be/stops/105469", "https://data.delijn.be/stops/105669"], ["https://data.delijn.be/stops/503108", "https://data.delijn.be/stops/503963"], ["https://data.delijn.be/stops/107708", "https://data.delijn.be/stops/109752"], ["https://data.delijn.be/stops/101342", "https://data.delijn.be/stops/108141"], ["https://data.delijn.be/stops/502240", "https://data.delijn.be/stops/507645"], ["https://data.delijn.be/stops/206497", "https://data.delijn.be/stops/207497"], ["https://data.delijn.be/stops/208224", "https://data.delijn.be/stops/209223"], ["https://data.delijn.be/stops/308822", "https://data.delijn.be/stops/308823"], ["https://data.delijn.be/stops/107576", "https://data.delijn.be/stops/107577"], ["https://data.delijn.be/stops/502612", "https://data.delijn.be/stops/502623"], ["https://data.delijn.be/stops/302923", "https://data.delijn.be/stops/303042"], ["https://data.delijn.be/stops/504303", "https://data.delijn.be/stops/509303"], ["https://data.delijn.be/stops/200094", "https://data.delijn.be/stops/201094"], ["https://data.delijn.be/stops/106233", "https://data.delijn.be/stops/109396"], ["https://data.delijn.be/stops/306300", "https://data.delijn.be/stops/306373"], ["https://data.delijn.be/stops/503800", "https://data.delijn.be/stops/505389"], ["https://data.delijn.be/stops/401326", "https://data.delijn.be/stops/401328"], ["https://data.delijn.be/stops/406972", "https://data.delijn.be/stops/409471"], ["https://data.delijn.be/stops/107192", "https://data.delijn.be/stops/107734"], ["https://data.delijn.be/stops/503530", "https://data.delijn.be/stops/503531"], ["https://data.delijn.be/stops/502451", "https://data.delijn.be/stops/502634"], ["https://data.delijn.be/stops/206217", "https://data.delijn.be/stops/207314"], ["https://data.delijn.be/stops/106433", "https://data.delijn.be/stops/106434"], ["https://data.delijn.be/stops/206687", "https://data.delijn.be/stops/207378"], ["https://data.delijn.be/stops/200376", "https://data.delijn.be/stops/210089"], ["https://data.delijn.be/stops/403263", "https://data.delijn.be/stops/410212"], ["https://data.delijn.be/stops/202499", "https://data.delijn.be/stops/202500"], ["https://data.delijn.be/stops/107725", "https://data.delijn.be/stops/109040"], ["https://data.delijn.be/stops/202969", "https://data.delijn.be/stops/203968"], ["https://data.delijn.be/stops/401841", "https://data.delijn.be/stops/406019"], ["https://data.delijn.be/stops/509367", "https://data.delijn.be/stops/509371"], ["https://data.delijn.be/stops/407078", "https://data.delijn.be/stops/407084"], ["https://data.delijn.be/stops/302088", "https://data.delijn.be/stops/302093"], ["https://data.delijn.be/stops/502524", "https://data.delijn.be/stops/507526"], ["https://data.delijn.be/stops/302726", "https://data.delijn.be/stops/302778"], ["https://data.delijn.be/stops/106413", "https://data.delijn.be/stops/109876"], ["https://data.delijn.be/stops/507406", "https://data.delijn.be/stops/507725"], ["https://data.delijn.be/stops/109632", "https://data.delijn.be/stops/109634"], ["https://data.delijn.be/stops/501267", "https://data.delijn.be/stops/501325"], ["https://data.delijn.be/stops/202644", "https://data.delijn.be/stops/202690"], ["https://data.delijn.be/stops/503585", "https://data.delijn.be/stops/507916"], ["https://data.delijn.be/stops/302887", "https://data.delijn.be/stops/302888"], ["https://data.delijn.be/stops/202724", "https://data.delijn.be/stops/203675"], ["https://data.delijn.be/stops/106589", "https://data.delijn.be/stops/106591"], ["https://data.delijn.be/stops/302932", "https://data.delijn.be/stops/308439"], ["https://data.delijn.be/stops/505104", "https://data.delijn.be/stops/508879"], ["https://data.delijn.be/stops/401524", "https://data.delijn.be/stops/402514"], ["https://data.delijn.be/stops/104382", "https://data.delijn.be/stops/105415"], ["https://data.delijn.be/stops/206296", "https://data.delijn.be/stops/206447"], ["https://data.delijn.be/stops/206334", "https://data.delijn.be/stops/207334"], ["https://data.delijn.be/stops/503559", "https://data.delijn.be/stops/508553"], ["https://data.delijn.be/stops/505694", "https://data.delijn.be/stops/507539"], ["https://data.delijn.be/stops/106460", "https://data.delijn.be/stops/106461"], ["https://data.delijn.be/stops/200355", "https://data.delijn.be/stops/203647"], ["https://data.delijn.be/stops/502302", "https://data.delijn.be/stops/507302"], ["https://data.delijn.be/stops/206275", "https://data.delijn.be/stops/207274"], ["https://data.delijn.be/stops/202189", "https://data.delijn.be/stops/202242"], ["https://data.delijn.be/stops/301697", "https://data.delijn.be/stops/304571"], ["https://data.delijn.be/stops/201857", "https://data.delijn.be/stops/203664"], ["https://data.delijn.be/stops/304787", "https://data.delijn.be/stops/306689"], ["https://data.delijn.be/stops/304928", "https://data.delijn.be/stops/306109"], ["https://data.delijn.be/stops/101071", "https://data.delijn.be/stops/109773"], ["https://data.delijn.be/stops/407379", "https://data.delijn.be/stops/407411"], ["https://data.delijn.be/stops/102442", "https://data.delijn.be/stops/102639"], ["https://data.delijn.be/stops/504105", "https://data.delijn.be/stops/509546"], ["https://data.delijn.be/stops/206152", "https://data.delijn.be/stops/207151"], ["https://data.delijn.be/stops/204640", "https://data.delijn.be/stops/204731"], ["https://data.delijn.be/stops/208337", "https://data.delijn.be/stops/209336"], ["https://data.delijn.be/stops/407913", "https://data.delijn.be/stops/408052"], ["https://data.delijn.be/stops/103227", "https://data.delijn.be/stops/108914"], ["https://data.delijn.be/stops/202484", "https://data.delijn.be/stops/203484"], ["https://data.delijn.be/stops/102907", "https://data.delijn.be/stops/109748"], ["https://data.delijn.be/stops/201906", "https://data.delijn.be/stops/203516"], ["https://data.delijn.be/stops/401154", "https://data.delijn.be/stops/401155"], ["https://data.delijn.be/stops/204756", "https://data.delijn.be/stops/204757"], ["https://data.delijn.be/stops/302418", "https://data.delijn.be/stops/308814"], ["https://data.delijn.be/stops/400856", "https://data.delijn.be/stops/409526"], ["https://data.delijn.be/stops/108351", "https://data.delijn.be/stops/108352"], ["https://data.delijn.be/stops/108971", "https://data.delijn.be/stops/401936"], ["https://data.delijn.be/stops/208192", "https://data.delijn.be/stops/218013"], ["https://data.delijn.be/stops/410180", "https://data.delijn.be/stops/410181"], ["https://data.delijn.be/stops/200054", "https://data.delijn.be/stops/201478"], ["https://data.delijn.be/stops/501302", "https://data.delijn.be/stops/506302"], ["https://data.delijn.be/stops/404008", "https://data.delijn.be/stops/404353"], ["https://data.delijn.be/stops/206630", "https://data.delijn.be/stops/206792"], ["https://data.delijn.be/stops/301721", "https://data.delijn.be/stops/304188"], ["https://data.delijn.be/stops/308149", "https://data.delijn.be/stops/308174"], ["https://data.delijn.be/stops/304042", "https://data.delijn.be/stops/306810"], ["https://data.delijn.be/stops/209509", "https://data.delijn.be/stops/209633"], ["https://data.delijn.be/stops/507170", "https://data.delijn.be/stops/507248"], ["https://data.delijn.be/stops/200271", "https://data.delijn.be/stops/201272"], ["https://data.delijn.be/stops/200797", "https://data.delijn.be/stops/211063"], ["https://data.delijn.be/stops/503299", "https://data.delijn.be/stops/505949"], ["https://data.delijn.be/stops/102381", "https://data.delijn.be/stops/106355"], ["https://data.delijn.be/stops/503361", "https://data.delijn.be/stops/503405"], ["https://data.delijn.be/stops/203554", "https://data.delijn.be/stops/203556"], ["https://data.delijn.be/stops/201843", "https://data.delijn.be/stops/203194"], ["https://data.delijn.be/stops/300735", "https://data.delijn.be/stops/302187"], ["https://data.delijn.be/stops/402724", "https://data.delijn.be/stops/405941"], ["https://data.delijn.be/stops/508416", "https://data.delijn.be/stops/509920"], ["https://data.delijn.be/stops/506734", "https://data.delijn.be/stops/509897"], ["https://data.delijn.be/stops/204163", "https://data.delijn.be/stops/206274"], ["https://data.delijn.be/stops/102528", "https://data.delijn.be/stops/405083"], ["https://data.delijn.be/stops/301031", "https://data.delijn.be/stops/301034"], ["https://data.delijn.be/stops/204213", "https://data.delijn.be/stops/205002"], ["https://data.delijn.be/stops/103971", "https://data.delijn.be/stops/106444"], ["https://data.delijn.be/stops/501392", "https://data.delijn.be/stops/506464"], ["https://data.delijn.be/stops/401214", "https://data.delijn.be/stops/401270"], ["https://data.delijn.be/stops/404864", "https://data.delijn.be/stops/404893"], ["https://data.delijn.be/stops/407436", "https://data.delijn.be/stops/407469"], ["https://data.delijn.be/stops/409210", "https://data.delijn.be/stops/409211"], ["https://data.delijn.be/stops/404726", "https://data.delijn.be/stops/408948"], ["https://data.delijn.be/stops/405558", "https://data.delijn.be/stops/405561"], ["https://data.delijn.be/stops/201181", "https://data.delijn.be/stops/201187"], ["https://data.delijn.be/stops/505683", "https://data.delijn.be/stops/505684"], ["https://data.delijn.be/stops/303012", "https://data.delijn.be/stops/303141"], ["https://data.delijn.be/stops/106603", "https://data.delijn.be/stops/107208"], ["https://data.delijn.be/stops/301600", "https://data.delijn.be/stops/301610"], ["https://data.delijn.be/stops/206667", "https://data.delijn.be/stops/206730"], ["https://data.delijn.be/stops/306842", "https://data.delijn.be/stops/307354"], ["https://data.delijn.be/stops/504106", "https://data.delijn.be/stops/504107"], ["https://data.delijn.be/stops/208537", "https://data.delijn.be/stops/208752"], ["https://data.delijn.be/stops/208582", "https://data.delijn.be/stops/209700"], ["https://data.delijn.be/stops/304046", "https://data.delijn.be/stops/304800"], ["https://data.delijn.be/stops/305108", "https://data.delijn.be/stops/305110"], ["https://data.delijn.be/stops/206955", "https://data.delijn.be/stops/207368"], ["https://data.delijn.be/stops/501456", "https://data.delijn.be/stops/506457"], ["https://data.delijn.be/stops/502430", "https://data.delijn.be/stops/507124"], ["https://data.delijn.be/stops/205348", "https://data.delijn.be/stops/205707"], ["https://data.delijn.be/stops/402827", "https://data.delijn.be/stops/409011"], ["https://data.delijn.be/stops/504240", "https://data.delijn.be/stops/509240"], ["https://data.delijn.be/stops/501433", "https://data.delijn.be/stops/501644"], ["https://data.delijn.be/stops/103023", "https://data.delijn.be/stops/109669"], ["https://data.delijn.be/stops/101820", "https://data.delijn.be/stops/103339"], ["https://data.delijn.be/stops/101871", "https://data.delijn.be/stops/105256"], ["https://data.delijn.be/stops/208521", "https://data.delijn.be/stops/209521"], ["https://data.delijn.be/stops/506249", "https://data.delijn.be/stops/506767"], ["https://data.delijn.be/stops/308057", "https://data.delijn.be/stops/308758"], ["https://data.delijn.be/stops/206140", "https://data.delijn.be/stops/207130"], ["https://data.delijn.be/stops/304102", "https://data.delijn.be/stops/308046"], ["https://data.delijn.be/stops/206592", "https://data.delijn.be/stops/206948"], ["https://data.delijn.be/stops/202930", "https://data.delijn.be/stops/203490"], ["https://data.delijn.be/stops/502084", "https://data.delijn.be/stops/507084"], ["https://data.delijn.be/stops/500011", "https://data.delijn.be/stops/502332"], ["https://data.delijn.be/stops/304667", "https://data.delijn.be/stops/304685"], ["https://data.delijn.be/stops/402956", "https://data.delijn.be/stops/408440"], ["https://data.delijn.be/stops/206591", "https://data.delijn.be/stops/206930"], ["https://data.delijn.be/stops/304442", "https://data.delijn.be/stops/307213"], ["https://data.delijn.be/stops/108074", "https://data.delijn.be/stops/108077"], ["https://data.delijn.be/stops/400266", "https://data.delijn.be/stops/408363"], ["https://data.delijn.be/stops/502436", "https://data.delijn.be/stops/507025"], ["https://data.delijn.be/stops/404266", "https://data.delijn.be/stops/405604"], ["https://data.delijn.be/stops/405290", "https://data.delijn.be/stops/406312"], ["https://data.delijn.be/stops/504650", "https://data.delijn.be/stops/509044"], ["https://data.delijn.be/stops/504753", "https://data.delijn.be/stops/509754"], ["https://data.delijn.be/stops/403089", "https://data.delijn.be/stops/403507"], ["https://data.delijn.be/stops/303174", "https://data.delijn.be/stops/303189"], ["https://data.delijn.be/stops/101845", "https://data.delijn.be/stops/102837"], ["https://data.delijn.be/stops/305502", "https://data.delijn.be/stops/307820"], ["https://data.delijn.be/stops/401201", "https://data.delijn.be/stops/401266"], ["https://data.delijn.be/stops/507105", "https://data.delijn.be/stops/507680"], ["https://data.delijn.be/stops/306703", "https://data.delijn.be/stops/306704"], ["https://data.delijn.be/stops/218003", "https://data.delijn.be/stops/219003"], ["https://data.delijn.be/stops/206674", "https://data.delijn.be/stops/209171"], ["https://data.delijn.be/stops/503071", "https://data.delijn.be/stops/508877"], ["https://data.delijn.be/stops/503764", "https://data.delijn.be/stops/509364"], ["https://data.delijn.be/stops/202231", "https://data.delijn.be/stops/202232"], ["https://data.delijn.be/stops/107518", "https://data.delijn.be/stops/107521"], ["https://data.delijn.be/stops/207250", "https://data.delijn.be/stops/217019"], ["https://data.delijn.be/stops/207734", "https://data.delijn.be/stops/207748"], ["https://data.delijn.be/stops/204484", "https://data.delijn.be/stops/204739"], ["https://data.delijn.be/stops/502692", "https://data.delijn.be/stops/507339"], ["https://data.delijn.be/stops/303346", "https://data.delijn.be/stops/304712"], ["https://data.delijn.be/stops/302158", "https://data.delijn.be/stops/302162"], ["https://data.delijn.be/stops/500002", "https://data.delijn.be/stops/503668"], ["https://data.delijn.be/stops/504341", "https://data.delijn.be/stops/504633"], ["https://data.delijn.be/stops/209539", "https://data.delijn.be/stops/209543"], ["https://data.delijn.be/stops/503080", "https://data.delijn.be/stops/504873"], ["https://data.delijn.be/stops/106171", "https://data.delijn.be/stops/106464"], ["https://data.delijn.be/stops/302949", "https://data.delijn.be/stops/302994"], ["https://data.delijn.be/stops/200442", "https://data.delijn.be/stops/202134"], ["https://data.delijn.be/stops/504455", "https://data.delijn.be/stops/504561"], ["https://data.delijn.be/stops/406968", "https://data.delijn.be/stops/406969"], ["https://data.delijn.be/stops/503828", "https://data.delijn.be/stops/504201"], ["https://data.delijn.be/stops/208061", "https://data.delijn.be/stops/208062"], ["https://data.delijn.be/stops/101400", "https://data.delijn.be/stops/106530"], ["https://data.delijn.be/stops/506238", "https://data.delijn.be/stops/506242"], ["https://data.delijn.be/stops/405190", "https://data.delijn.be/stops/405191"], ["https://data.delijn.be/stops/407316", "https://data.delijn.be/stops/409041"], ["https://data.delijn.be/stops/404586", "https://data.delijn.be/stops/406903"], ["https://data.delijn.be/stops/302978", "https://data.delijn.be/stops/302988"], ["https://data.delijn.be/stops/405720", "https://data.delijn.be/stops/405741"], ["https://data.delijn.be/stops/102386", "https://data.delijn.be/stops/103502"], ["https://data.delijn.be/stops/105093", "https://data.delijn.be/stops/109505"], ["https://data.delijn.be/stops/101374", "https://data.delijn.be/stops/101398"], ["https://data.delijn.be/stops/205421", "https://data.delijn.be/stops/205422"], ["https://data.delijn.be/stops/109798", "https://data.delijn.be/stops/305765"], ["https://data.delijn.be/stops/206392", "https://data.delijn.be/stops/207392"], ["https://data.delijn.be/stops/202923", "https://data.delijn.be/stops/203922"], ["https://data.delijn.be/stops/209267", "https://data.delijn.be/stops/209268"], ["https://data.delijn.be/stops/106486", "https://data.delijn.be/stops/109712"], ["https://data.delijn.be/stops/206922", "https://data.delijn.be/stops/207213"], ["https://data.delijn.be/stops/405220", "https://data.delijn.be/stops/405286"], ["https://data.delijn.be/stops/503958", "https://data.delijn.be/stops/503959"], ["https://data.delijn.be/stops/204639", "https://data.delijn.be/stops/204640"], ["https://data.delijn.be/stops/200763", "https://data.delijn.be/stops/208301"], ["https://data.delijn.be/stops/304750", "https://data.delijn.be/stops/304751"], ["https://data.delijn.be/stops/101526", "https://data.delijn.be/stops/101941"], ["https://data.delijn.be/stops/105034", "https://data.delijn.be/stops/105036"], ["https://data.delijn.be/stops/501357", "https://data.delijn.be/stops/506357"], ["https://data.delijn.be/stops/302836", "https://data.delijn.be/stops/308825"], ["https://data.delijn.be/stops/302617", "https://data.delijn.be/stops/302618"], ["https://data.delijn.be/stops/202173", "https://data.delijn.be/stops/203173"], ["https://data.delijn.be/stops/401647", "https://data.delijn.be/stops/408722"], ["https://data.delijn.be/stops/403415", "https://data.delijn.be/stops/410164"], ["https://data.delijn.be/stops/505063", "https://data.delijn.be/stops/505064"], ["https://data.delijn.be/stops/305325", "https://data.delijn.be/stops/305891"], ["https://data.delijn.be/stops/300140", "https://data.delijn.be/stops/300146"], ["https://data.delijn.be/stops/505342", "https://data.delijn.be/stops/509515"], ["https://data.delijn.be/stops/403022", "https://data.delijn.be/stops/404229"], ["https://data.delijn.be/stops/300515", "https://data.delijn.be/stops/300527"], ["https://data.delijn.be/stops/201894", "https://data.delijn.be/stops/211127"], ["https://data.delijn.be/stops/102253", "https://data.delijn.be/stops/109082"], ["https://data.delijn.be/stops/205739", "https://data.delijn.be/stops/205746"], ["https://data.delijn.be/stops/208541", "https://data.delijn.be/stops/209541"], ["https://data.delijn.be/stops/200895", "https://data.delijn.be/stops/203336"], ["https://data.delijn.be/stops/407153", "https://data.delijn.be/stops/407183"], ["https://data.delijn.be/stops/201135", "https://data.delijn.be/stops/201231"], ["https://data.delijn.be/stops/200954", "https://data.delijn.be/stops/201202"], ["https://data.delijn.be/stops/408581", "https://data.delijn.be/stops/408638"], ["https://data.delijn.be/stops/304811", "https://data.delijn.be/stops/307885"], ["https://data.delijn.be/stops/201311", "https://data.delijn.be/stops/201537"], ["https://data.delijn.be/stops/102072", "https://data.delijn.be/stops/108694"], ["https://data.delijn.be/stops/107703", "https://data.delijn.be/stops/109239"], ["https://data.delijn.be/stops/502929", "https://data.delijn.be/stops/507015"], ["https://data.delijn.be/stops/106412", "https://data.delijn.be/stops/109876"], ["https://data.delijn.be/stops/303475", "https://data.delijn.be/stops/308132"], ["https://data.delijn.be/stops/206045", "https://data.delijn.be/stops/207920"], ["https://data.delijn.be/stops/500874", "https://data.delijn.be/stops/503934"], ["https://data.delijn.be/stops/302707", "https://data.delijn.be/stops/308835"], ["https://data.delijn.be/stops/204157", "https://data.delijn.be/stops/211067"], ["https://data.delijn.be/stops/504074", "https://data.delijn.be/stops/505573"], ["https://data.delijn.be/stops/401110", "https://data.delijn.be/stops/406719"], ["https://data.delijn.be/stops/507753", "https://data.delijn.be/stops/508822"], ["https://data.delijn.be/stops/204233", "https://data.delijn.be/stops/205233"], ["https://data.delijn.be/stops/504752", "https://data.delijn.be/stops/509753"], ["https://data.delijn.be/stops/505074", "https://data.delijn.be/stops/507476"], ["https://data.delijn.be/stops/201689", "https://data.delijn.be/stops/203998"], ["https://data.delijn.be/stops/408963", "https://data.delijn.be/stops/408982"], ["https://data.delijn.be/stops/502372", "https://data.delijn.be/stops/507372"], ["https://data.delijn.be/stops/202910", "https://data.delijn.be/stops/203916"], ["https://data.delijn.be/stops/301935", "https://data.delijn.be/stops/302909"], ["https://data.delijn.be/stops/107581", "https://data.delijn.be/stops/107582"], ["https://data.delijn.be/stops/307338", "https://data.delijn.be/stops/307339"], ["https://data.delijn.be/stops/405646", "https://data.delijn.be/stops/408621"], ["https://data.delijn.be/stops/404409", "https://data.delijn.be/stops/404414"], ["https://data.delijn.be/stops/204736", "https://data.delijn.be/stops/205737"], ["https://data.delijn.be/stops/207156", "https://data.delijn.be/stops/207229"], ["https://data.delijn.be/stops/404374", "https://data.delijn.be/stops/404383"], ["https://data.delijn.be/stops/504988", "https://data.delijn.be/stops/505118"], ["https://data.delijn.be/stops/402735", "https://data.delijn.be/stops/410056"], ["https://data.delijn.be/stops/103310", "https://data.delijn.be/stops/103340"], ["https://data.delijn.be/stops/106060", "https://data.delijn.be/stops/205611"], ["https://data.delijn.be/stops/300096", "https://data.delijn.be/stops/306852"], ["https://data.delijn.be/stops/206289", "https://data.delijn.be/stops/207289"], ["https://data.delijn.be/stops/303500", "https://data.delijn.be/stops/303503"], ["https://data.delijn.be/stops/501432", "https://data.delijn.be/stops/501678"], ["https://data.delijn.be/stops/202824", "https://data.delijn.be/stops/203823"], ["https://data.delijn.be/stops/505743", "https://data.delijn.be/stops/505749"], ["https://data.delijn.be/stops/300611", "https://data.delijn.be/stops/303517"], ["https://data.delijn.be/stops/207792", "https://data.delijn.be/stops/218014"], ["https://data.delijn.be/stops/206550", "https://data.delijn.be/stops/206551"], ["https://data.delijn.be/stops/503417", "https://data.delijn.be/stops/508951"], ["https://data.delijn.be/stops/401516", "https://data.delijn.be/stops/401738"], ["https://data.delijn.be/stops/400315", "https://data.delijn.be/stops/402791"], ["https://data.delijn.be/stops/207854", "https://data.delijn.be/stops/207855"], ["https://data.delijn.be/stops/505560", "https://data.delijn.be/stops/507282"], ["https://data.delijn.be/stops/305664", "https://data.delijn.be/stops/305667"], ["https://data.delijn.be/stops/403778", "https://data.delijn.be/stops/404264"], ["https://data.delijn.be/stops/505381", "https://data.delijn.be/stops/508103"], ["https://data.delijn.be/stops/501329", "https://data.delijn.be/stops/506329"], ["https://data.delijn.be/stops/501113", "https://data.delijn.be/stops/506638"], ["https://data.delijn.be/stops/505348", "https://data.delijn.be/stops/505416"], ["https://data.delijn.be/stops/407296", "https://data.delijn.be/stops/407325"], ["https://data.delijn.be/stops/200362", "https://data.delijn.be/stops/211006"], ["https://data.delijn.be/stops/101589", "https://data.delijn.be/stops/101593"], ["https://data.delijn.be/stops/202147", "https://data.delijn.be/stops/203189"], ["https://data.delijn.be/stops/102957", "https://data.delijn.be/stops/106884"], ["https://data.delijn.be/stops/406948", "https://data.delijn.be/stops/407306"], ["https://data.delijn.be/stops/304530", "https://data.delijn.be/stops/305603"], ["https://data.delijn.be/stops/405855", "https://data.delijn.be/stops/409705"], ["https://data.delijn.be/stops/200720", "https://data.delijn.be/stops/201168"], ["https://data.delijn.be/stops/407860", "https://data.delijn.be/stops/407861"], ["https://data.delijn.be/stops/208110", "https://data.delijn.be/stops/209111"], ["https://data.delijn.be/stops/204704", "https://data.delijn.be/stops/204710"], ["https://data.delijn.be/stops/104747", "https://data.delijn.be/stops/107331"], ["https://data.delijn.be/stops/406786", "https://data.delijn.be/stops/406805"], ["https://data.delijn.be/stops/101975", "https://data.delijn.be/stops/103775"], ["https://data.delijn.be/stops/103632", "https://data.delijn.be/stops/107171"], ["https://data.delijn.be/stops/401775", "https://data.delijn.be/stops/401870"], ["https://data.delijn.be/stops/202488", "https://data.delijn.be/stops/203488"], ["https://data.delijn.be/stops/505659", "https://data.delijn.be/stops/505660"], ["https://data.delijn.be/stops/104974", "https://data.delijn.be/stops/109444"], ["https://data.delijn.be/stops/300474", "https://data.delijn.be/stops/300475"], ["https://data.delijn.be/stops/200695", "https://data.delijn.be/stops/203788"], ["https://data.delijn.be/stops/208363", "https://data.delijn.be/stops/208366"], ["https://data.delijn.be/stops/106104", "https://data.delijn.be/stops/106106"], ["https://data.delijn.be/stops/504881", "https://data.delijn.be/stops/505748"], ["https://data.delijn.be/stops/103021", "https://data.delijn.be/stops/109889"], ["https://data.delijn.be/stops/406735", "https://data.delijn.be/stops/407623"], ["https://data.delijn.be/stops/304159", "https://data.delijn.be/stops/307542"], ["https://data.delijn.be/stops/501221", "https://data.delijn.be/stops/506221"], ["https://data.delijn.be/stops/301677", "https://data.delijn.be/stops/301679"], ["https://data.delijn.be/stops/303035", "https://data.delijn.be/stops/303101"], ["https://data.delijn.be/stops/102291", "https://data.delijn.be/stops/106345"], ["https://data.delijn.be/stops/503882", "https://data.delijn.be/stops/504999"], ["https://data.delijn.be/stops/304431", "https://data.delijn.be/stops/304449"], ["https://data.delijn.be/stops/101680", "https://data.delijn.be/stops/102520"], ["https://data.delijn.be/stops/208659", "https://data.delijn.be/stops/209659"], ["https://data.delijn.be/stops/106358", "https://data.delijn.be/stops/109639"], ["https://data.delijn.be/stops/103279", "https://data.delijn.be/stops/109040"], ["https://data.delijn.be/stops/206961", "https://data.delijn.be/stops/306072"], ["https://data.delijn.be/stops/200310", "https://data.delijn.be/stops/201378"], ["https://data.delijn.be/stops/101489", "https://data.delijn.be/stops/101947"], ["https://data.delijn.be/stops/200957", "https://data.delijn.be/stops/202683"], ["https://data.delijn.be/stops/405361", "https://data.delijn.be/stops/406298"], ["https://data.delijn.be/stops/102693", "https://data.delijn.be/stops/102890"], ["https://data.delijn.be/stops/201055", "https://data.delijn.be/stops/201183"], ["https://data.delijn.be/stops/307742", "https://data.delijn.be/stops/307744"], ["https://data.delijn.be/stops/105048", "https://data.delijn.be/stops/106702"], ["https://data.delijn.be/stops/401895", "https://data.delijn.be/stops/401897"], ["https://data.delijn.be/stops/305706", "https://data.delijn.be/stops/305752"], ["https://data.delijn.be/stops/208359", "https://data.delijn.be/stops/208955"], ["https://data.delijn.be/stops/503228", "https://data.delijn.be/stops/508229"], ["https://data.delijn.be/stops/505153", "https://data.delijn.be/stops/506085"], ["https://data.delijn.be/stops/506674", "https://data.delijn.be/stops/506675"], ["https://data.delijn.be/stops/102416", "https://data.delijn.be/stops/108423"], ["https://data.delijn.be/stops/208206", "https://data.delijn.be/stops/209121"], ["https://data.delijn.be/stops/405626", "https://data.delijn.be/stops/407389"], ["https://data.delijn.be/stops/300281", "https://data.delijn.be/stops/300282"], ["https://data.delijn.be/stops/504508", "https://data.delijn.be/stops/504733"], ["https://data.delijn.be/stops/101312", "https://data.delijn.be/stops/106046"], ["https://data.delijn.be/stops/408575", "https://data.delijn.be/stops/408815"], ["https://data.delijn.be/stops/105049", "https://data.delijn.be/stops/304042"], ["https://data.delijn.be/stops/202335", "https://data.delijn.be/stops/203295"], ["https://data.delijn.be/stops/401905", "https://data.delijn.be/stops/408329"], ["https://data.delijn.be/stops/300289", "https://data.delijn.be/stops/306285"], ["https://data.delijn.be/stops/103095", "https://data.delijn.be/stops/103357"], ["https://data.delijn.be/stops/302079", "https://data.delijn.be/stops/302090"], ["https://data.delijn.be/stops/504114", "https://data.delijn.be/stops/505912"], ["https://data.delijn.be/stops/108573", "https://data.delijn.be/stops/109686"], ["https://data.delijn.be/stops/304726", "https://data.delijn.be/stops/308649"], ["https://data.delijn.be/stops/207427", "https://data.delijn.be/stops/209536"], ["https://data.delijn.be/stops/304393", "https://data.delijn.be/stops/307398"], ["https://data.delijn.be/stops/206957", "https://data.delijn.be/stops/207696"], ["https://data.delijn.be/stops/106179", "https://data.delijn.be/stops/107442"], ["https://data.delijn.be/stops/403885", "https://data.delijn.be/stops/403887"], ["https://data.delijn.be/stops/400473", "https://data.delijn.be/stops/407647"], ["https://data.delijn.be/stops/301411", "https://data.delijn.be/stops/307207"], ["https://data.delijn.be/stops/504733", "https://data.delijn.be/stops/509508"], ["https://data.delijn.be/stops/505281", "https://data.delijn.be/stops/509982"], ["https://data.delijn.be/stops/505227", "https://data.delijn.be/stops/505577"], ["https://data.delijn.be/stops/504035", "https://data.delijn.be/stops/509035"], ["https://data.delijn.be/stops/108165", "https://data.delijn.be/stops/108330"], ["https://data.delijn.be/stops/408315", "https://data.delijn.be/stops/408355"], ["https://data.delijn.be/stops/308180", "https://data.delijn.be/stops/308291"], ["https://data.delijn.be/stops/106279", "https://data.delijn.be/stops/106343"], ["https://data.delijn.be/stops/209854", "https://data.delijn.be/stops/209855"], ["https://data.delijn.be/stops/204495", "https://data.delijn.be/stops/205327"], ["https://data.delijn.be/stops/107594", "https://data.delijn.be/stops/107691"], ["https://data.delijn.be/stops/200557", "https://data.delijn.be/stops/504771"], ["https://data.delijn.be/stops/102179", "https://data.delijn.be/stops/102938"], ["https://data.delijn.be/stops/409304", "https://data.delijn.be/stops/409305"], ["https://data.delijn.be/stops/502755", "https://data.delijn.be/stops/505649"], ["https://data.delijn.be/stops/403104", "https://data.delijn.be/stops/403187"], ["https://data.delijn.be/stops/101240", "https://data.delijn.be/stops/105800"], ["https://data.delijn.be/stops/102180", "https://data.delijn.be/stops/107131"], ["https://data.delijn.be/stops/405922", "https://data.delijn.be/stops/405923"], ["https://data.delijn.be/stops/504532", "https://data.delijn.be/stops/509290"], ["https://data.delijn.be/stops/106522", "https://data.delijn.be/stops/107098"], ["https://data.delijn.be/stops/200277", "https://data.delijn.be/stops/201277"], ["https://data.delijn.be/stops/502453", "https://data.delijn.be/stops/507660"], ["https://data.delijn.be/stops/405676", "https://data.delijn.be/stops/406989"], ["https://data.delijn.be/stops/107916", "https://data.delijn.be/stops/308799"], ["https://data.delijn.be/stops/407464", "https://data.delijn.be/stops/409309"], ["https://data.delijn.be/stops/504881", "https://data.delijn.be/stops/507062"], ["https://data.delijn.be/stops/308199", "https://data.delijn.be/stops/308222"], ["https://data.delijn.be/stops/201180", "https://data.delijn.be/stops/201195"], ["https://data.delijn.be/stops/104039", "https://data.delijn.be/stops/304920"], ["https://data.delijn.be/stops/403573", "https://data.delijn.be/stops/403574"], ["https://data.delijn.be/stops/204286", "https://data.delijn.be/stops/204287"], ["https://data.delijn.be/stops/404960", "https://data.delijn.be/stops/406836"], ["https://data.delijn.be/stops/407725", "https://data.delijn.be/stops/407726"], ["https://data.delijn.be/stops/505143", "https://data.delijn.be/stops/507229"], ["https://data.delijn.be/stops/406253", "https://data.delijn.be/stops/406254"], ["https://data.delijn.be/stops/301698", "https://data.delijn.be/stops/301722"], ["https://data.delijn.be/stops/102283", "https://data.delijn.be/stops/102284"], ["https://data.delijn.be/stops/501212", "https://data.delijn.be/stops/501633"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/209241"], ["https://data.delijn.be/stops/501467", "https://data.delijn.be/stops/505036"], ["https://data.delijn.be/stops/205379", "https://data.delijn.be/stops/205418"], ["https://data.delijn.be/stops/503795", "https://data.delijn.be/stops/508795"], ["https://data.delijn.be/stops/405615", "https://data.delijn.be/stops/407191"], ["https://data.delijn.be/stops/105977", "https://data.delijn.be/stops/105981"], ["https://data.delijn.be/stops/102081", "https://data.delijn.be/stops/105412"], ["https://data.delijn.be/stops/401988", "https://data.delijn.be/stops/403274"], ["https://data.delijn.be/stops/507535", "https://data.delijn.be/stops/507746"], ["https://data.delijn.be/stops/300279", "https://data.delijn.be/stops/300282"], ["https://data.delijn.be/stops/202342", "https://data.delijn.be/stops/203342"], ["https://data.delijn.be/stops/508893", "https://data.delijn.be/stops/508895"], ["https://data.delijn.be/stops/505316", "https://data.delijn.be/stops/508007"], ["https://data.delijn.be/stops/201405", "https://data.delijn.be/stops/201742"], ["https://data.delijn.be/stops/304474", "https://data.delijn.be/stops/304475"], ["https://data.delijn.be/stops/107659", "https://data.delijn.be/stops/107661"], ["https://data.delijn.be/stops/407849", "https://data.delijn.be/stops/408064"], ["https://data.delijn.be/stops/108428", "https://data.delijn.be/stops/108429"], ["https://data.delijn.be/stops/405322", "https://data.delijn.be/stops/305058"], ["https://data.delijn.be/stops/405976", "https://data.delijn.be/stops/405990"], ["https://data.delijn.be/stops/401187", "https://data.delijn.be/stops/401287"], ["https://data.delijn.be/stops/304569", "https://data.delijn.be/stops/304622"], ["https://data.delijn.be/stops/101950", "https://data.delijn.be/stops/104135"], ["https://data.delijn.be/stops/400042", "https://data.delijn.be/stops/400382"], ["https://data.delijn.be/stops/302755", "https://data.delijn.be/stops/307046"], ["https://data.delijn.be/stops/407825", "https://data.delijn.be/stops/408172"], ["https://data.delijn.be/stops/503573", "https://data.delijn.be/stops/503574"], ["https://data.delijn.be/stops/408685", "https://data.delijn.be/stops/410083"], ["https://data.delijn.be/stops/403817", "https://data.delijn.be/stops/403818"], ["https://data.delijn.be/stops/301825", "https://data.delijn.be/stops/301829"], ["https://data.delijn.be/stops/204289", "https://data.delijn.be/stops/205498"], ["https://data.delijn.be/stops/105480", "https://data.delijn.be/stops/105481"], ["https://data.delijn.be/stops/404320", "https://data.delijn.be/stops/404323"], ["https://data.delijn.be/stops/408318", "https://data.delijn.be/stops/408320"], ["https://data.delijn.be/stops/208087", "https://data.delijn.be/stops/209087"], ["https://data.delijn.be/stops/202762", "https://data.delijn.be/stops/203751"], ["https://data.delijn.be/stops/410214", "https://data.delijn.be/stops/410282"], ["https://data.delijn.be/stops/501733", "https://data.delijn.be/stops/506599"], ["https://data.delijn.be/stops/400602", "https://data.delijn.be/stops/405950"], ["https://data.delijn.be/stops/200812", "https://data.delijn.be/stops/200883"], ["https://data.delijn.be/stops/504223", "https://data.delijn.be/stops/509223"], ["https://data.delijn.be/stops/307564", "https://data.delijn.be/stops/307566"], ["https://data.delijn.be/stops/501120", "https://data.delijn.be/stops/509796"], ["https://data.delijn.be/stops/301985", "https://data.delijn.be/stops/306314"], ["https://data.delijn.be/stops/406680", "https://data.delijn.be/stops/406681"], ["https://data.delijn.be/stops/206421", "https://data.delijn.be/stops/206567"], ["https://data.delijn.be/stops/402608", "https://data.delijn.be/stops/405474"], ["https://data.delijn.be/stops/501433", "https://data.delijn.be/stops/506433"], ["https://data.delijn.be/stops/305537", "https://data.delijn.be/stops/305562"], ["https://data.delijn.be/stops/301084", "https://data.delijn.be/stops/301928"], ["https://data.delijn.be/stops/102231", "https://data.delijn.be/stops/102738"], ["https://data.delijn.be/stops/408076", "https://data.delijn.be/stops/408080"], ["https://data.delijn.be/stops/200859", "https://data.delijn.be/stops/200860"], ["https://data.delijn.be/stops/204738", "https://data.delijn.be/stops/205738"], ["https://data.delijn.be/stops/206323", "https://data.delijn.be/stops/206485"], ["https://data.delijn.be/stops/301641", "https://data.delijn.be/stops/307546"], ["https://data.delijn.be/stops/503704", "https://data.delijn.be/stops/508704"], ["https://data.delijn.be/stops/200310", "https://data.delijn.be/stops/201537"], ["https://data.delijn.be/stops/206064", "https://data.delijn.be/stops/207119"], ["https://data.delijn.be/stops/105625", "https://data.delijn.be/stops/108355"], ["https://data.delijn.be/stops/404750", "https://data.delijn.be/stops/404945"], ["https://data.delijn.be/stops/305188", "https://data.delijn.be/stops/307104"], ["https://data.delijn.be/stops/303414", "https://data.delijn.be/stops/303428"], ["https://data.delijn.be/stops/305263", "https://data.delijn.be/stops/305314"], ["https://data.delijn.be/stops/101676", "https://data.delijn.be/stops/103133"], ["https://data.delijn.be/stops/501424", "https://data.delijn.be/stops/505530"], ["https://data.delijn.be/stops/408968", "https://data.delijn.be/stops/408979"], ["https://data.delijn.be/stops/409861", "https://data.delijn.be/stops/409873"], ["https://data.delijn.be/stops/505846", "https://data.delijn.be/stops/509277"], ["https://data.delijn.be/stops/302262", "https://data.delijn.be/stops/302267"], ["https://data.delijn.be/stops/503860", "https://data.delijn.be/stops/508856"], ["https://data.delijn.be/stops/204317", "https://data.delijn.be/stops/205362"], ["https://data.delijn.be/stops/200556", "https://data.delijn.be/stops/505668"], ["https://data.delijn.be/stops/503319", "https://data.delijn.be/stops/503321"], ["https://data.delijn.be/stops/304345", "https://data.delijn.be/stops/304357"], ["https://data.delijn.be/stops/405873", "https://data.delijn.be/stops/409426"], ["https://data.delijn.be/stops/208753", "https://data.delijn.be/stops/209383"], ["https://data.delijn.be/stops/101135", "https://data.delijn.be/stops/103353"], ["https://data.delijn.be/stops/102748", "https://data.delijn.be/stops/107801"], ["https://data.delijn.be/stops/103969", "https://data.delijn.be/stops/106756"], ["https://data.delijn.be/stops/102389", "https://data.delijn.be/stops/107082"], ["https://data.delijn.be/stops/201674", "https://data.delijn.be/stops/202205"], ["https://data.delijn.be/stops/210014", "https://data.delijn.be/stops/507277"], ["https://data.delijn.be/stops/308413", "https://data.delijn.be/stops/308414"], ["https://data.delijn.be/stops/202377", "https://data.delijn.be/stops/202378"], ["https://data.delijn.be/stops/104463", "https://data.delijn.be/stops/107187"], ["https://data.delijn.be/stops/202366", "https://data.delijn.be/stops/203366"], ["https://data.delijn.be/stops/206582", "https://data.delijn.be/stops/207530"], ["https://data.delijn.be/stops/303877", "https://data.delijn.be/stops/303878"], ["https://data.delijn.be/stops/300591", "https://data.delijn.be/stops/300592"], ["https://data.delijn.be/stops/204045", "https://data.delijn.be/stops/205517"], ["https://data.delijn.be/stops/407582", "https://data.delijn.be/stops/408875"], ["https://data.delijn.be/stops/409275", "https://data.delijn.be/stops/409310"], ["https://data.delijn.be/stops/207766", "https://data.delijn.be/stops/207782"], ["https://data.delijn.be/stops/502310", "https://data.delijn.be/stops/505677"], ["https://data.delijn.be/stops/302462", "https://data.delijn.be/stops/302473"], ["https://data.delijn.be/stops/103073", "https://data.delijn.be/stops/106924"], ["https://data.delijn.be/stops/202689", "https://data.delijn.be/stops/203689"], ["https://data.delijn.be/stops/306770", "https://data.delijn.be/stops/306822"], ["https://data.delijn.be/stops/403969", "https://data.delijn.be/stops/403975"], ["https://data.delijn.be/stops/206281", "https://data.delijn.be/stops/207398"], ["https://data.delijn.be/stops/406464", "https://data.delijn.be/stops/406498"], ["https://data.delijn.be/stops/203219", "https://data.delijn.be/stops/205795"], ["https://data.delijn.be/stops/501542", "https://data.delijn.be/stops/505404"], ["https://data.delijn.be/stops/206725", "https://data.delijn.be/stops/206994"], ["https://data.delijn.be/stops/301618", "https://data.delijn.be/stops/301619"], ["https://data.delijn.be/stops/401435", "https://data.delijn.be/stops/410291"], ["https://data.delijn.be/stops/400880", "https://data.delijn.be/stops/409609"], ["https://data.delijn.be/stops/101387", "https://data.delijn.be/stops/101388"], ["https://data.delijn.be/stops/303463", "https://data.delijn.be/stops/303469"], ["https://data.delijn.be/stops/201690", "https://data.delijn.be/stops/201720"], ["https://data.delijn.be/stops/107787", "https://data.delijn.be/stops/207706"], ["https://data.delijn.be/stops/408859", "https://data.delijn.be/stops/408862"], ["https://data.delijn.be/stops/107161", "https://data.delijn.be/stops/107162"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/302953"], ["https://data.delijn.be/stops/204107", "https://data.delijn.be/stops/204108"], ["https://data.delijn.be/stops/207021", "https://data.delijn.be/stops/207162"], ["https://data.delijn.be/stops/403956", "https://data.delijn.be/stops/407778"], ["https://data.delijn.be/stops/404012", "https://data.delijn.be/stops/404015"], ["https://data.delijn.be/stops/101838", "https://data.delijn.be/stops/101839"], ["https://data.delijn.be/stops/308770", "https://data.delijn.be/stops/308781"], ["https://data.delijn.be/stops/502063", "https://data.delijn.be/stops/505783"], ["https://data.delijn.be/stops/305260", "https://data.delijn.be/stops/305278"], ["https://data.delijn.be/stops/200391", "https://data.delijn.be/stops/201395"], ["https://data.delijn.be/stops/302124", "https://data.delijn.be/stops/304034"], ["https://data.delijn.be/stops/202541", "https://data.delijn.be/stops/203136"], ["https://data.delijn.be/stops/105324", "https://data.delijn.be/stops/105326"], ["https://data.delijn.be/stops/201070", "https://data.delijn.be/stops/201145"], ["https://data.delijn.be/stops/301349", "https://data.delijn.be/stops/306135"], ["https://data.delijn.be/stops/104497", "https://data.delijn.be/stops/107491"], ["https://data.delijn.be/stops/300290", "https://data.delijn.be/stops/300305"], ["https://data.delijn.be/stops/202389", "https://data.delijn.be/stops/203389"], ["https://data.delijn.be/stops/302595", "https://data.delijn.be/stops/302602"], ["https://data.delijn.be/stops/201415", "https://data.delijn.be/stops/201506"], ["https://data.delijn.be/stops/106697", "https://data.delijn.be/stops/109390"], ["https://data.delijn.be/stops/203677", "https://data.delijn.be/stops/203678"], ["https://data.delijn.be/stops/307495", "https://data.delijn.be/stops/307497"], ["https://data.delijn.be/stops/204350", "https://data.delijn.be/stops/205015"], ["https://data.delijn.be/stops/106333", "https://data.delijn.be/stops/106699"], ["https://data.delijn.be/stops/503624", "https://data.delijn.be/stops/508629"], ["https://data.delijn.be/stops/501633", "https://data.delijn.be/stops/506773"], ["https://data.delijn.be/stops/403052", "https://data.delijn.be/stops/403053"], ["https://data.delijn.be/stops/106196", "https://data.delijn.be/stops/109186"], ["https://data.delijn.be/stops/403407", "https://data.delijn.be/stops/403409"], ["https://data.delijn.be/stops/201931", "https://data.delijn.be/stops/207966"], ["https://data.delijn.be/stops/405711", "https://data.delijn.be/stops/410145"], ["https://data.delijn.be/stops/404765", "https://data.delijn.be/stops/404786"], ["https://data.delijn.be/stops/206368", "https://data.delijn.be/stops/206955"], ["https://data.delijn.be/stops/208345", "https://data.delijn.be/stops/209344"], ["https://data.delijn.be/stops/502439", "https://data.delijn.be/stops/502653"], ["https://data.delijn.be/stops/301501", "https://data.delijn.be/stops/308074"], ["https://data.delijn.be/stops/402202", "https://data.delijn.be/stops/402437"], ["https://data.delijn.be/stops/301834", "https://data.delijn.be/stops/308603"], ["https://data.delijn.be/stops/205605", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/105746", "https://data.delijn.be/stops/109828"], ["https://data.delijn.be/stops/409305", "https://data.delijn.be/stops/409331"], ["https://data.delijn.be/stops/305255", "https://data.delijn.be/stops/305273"], ["https://data.delijn.be/stops/504456", "https://data.delijn.be/stops/504828"], ["https://data.delijn.be/stops/109243", "https://data.delijn.be/stops/109257"], ["https://data.delijn.be/stops/401427", "https://data.delijn.be/stops/410290"], ["https://data.delijn.be/stops/502113", "https://data.delijn.be/stops/507113"], ["https://data.delijn.be/stops/505338", "https://data.delijn.be/stops/507327"], ["https://data.delijn.be/stops/202987", "https://data.delijn.be/stops/203034"], ["https://data.delijn.be/stops/301284", "https://data.delijn.be/stops/304692"], ["https://data.delijn.be/stops/400648", "https://data.delijn.be/stops/410264"], ["https://data.delijn.be/stops/504542", "https://data.delijn.be/stops/509345"], ["https://data.delijn.be/stops/306281", "https://data.delijn.be/stops/306282"], ["https://data.delijn.be/stops/304385", "https://data.delijn.be/stops/304388"], ["https://data.delijn.be/stops/204976", "https://data.delijn.be/stops/209246"], ["https://data.delijn.be/stops/503473", "https://data.delijn.be/stops/508473"], ["https://data.delijn.be/stops/405960", "https://data.delijn.be/stops/308169"], ["https://data.delijn.be/stops/208023", "https://data.delijn.be/stops/208024"], ["https://data.delijn.be/stops/303149", "https://data.delijn.be/stops/303150"], ["https://data.delijn.be/stops/504429", "https://data.delijn.be/stops/509429"], ["https://data.delijn.be/stops/505278", "https://data.delijn.be/stops/508015"], ["https://data.delijn.be/stops/104947", "https://data.delijn.be/stops/406504"], ["https://data.delijn.be/stops/101678", "https://data.delijn.be/stops/101679"], ["https://data.delijn.be/stops/107275", "https://data.delijn.be/stops/107280"], ["https://data.delijn.be/stops/102579", "https://data.delijn.be/stops/109111"], ["https://data.delijn.be/stops/101821", "https://data.delijn.be/stops/107023"], ["https://data.delijn.be/stops/200703", "https://data.delijn.be/stops/203429"], ["https://data.delijn.be/stops/501271", "https://data.delijn.be/stops/506271"], ["https://data.delijn.be/stops/307142", "https://data.delijn.be/stops/307251"], ["https://data.delijn.be/stops/206813", "https://data.delijn.be/stops/207813"], ["https://data.delijn.be/stops/301410", "https://data.delijn.be/stops/308410"], ["https://data.delijn.be/stops/403525", "https://data.delijn.be/stops/403630"], ["https://data.delijn.be/stops/502012", "https://data.delijn.be/stops/502345"], ["https://data.delijn.be/stops/505692", "https://data.delijn.be/stops/507623"], ["https://data.delijn.be/stops/304693", "https://data.delijn.be/stops/306249"], ["https://data.delijn.be/stops/502095", "https://data.delijn.be/stops/507167"], ["https://data.delijn.be/stops/503296", "https://data.delijn.be/stops/508323"], ["https://data.delijn.be/stops/303980", "https://data.delijn.be/stops/305220"], ["https://data.delijn.be/stops/108419", "https://data.delijn.be/stops/108421"], ["https://data.delijn.be/stops/101079", "https://data.delijn.be/stops/102718"], ["https://data.delijn.be/stops/406806", "https://data.delijn.be/stops/406807"], ["https://data.delijn.be/stops/201282", "https://data.delijn.be/stops/203192"], ["https://data.delijn.be/stops/404727", "https://data.delijn.be/stops/404834"], ["https://data.delijn.be/stops/300517", "https://data.delijn.be/stops/300527"], ["https://data.delijn.be/stops/307552", "https://data.delijn.be/stops/307553"], ["https://data.delijn.be/stops/106568", "https://data.delijn.be/stops/106569"], ["https://data.delijn.be/stops/202349", "https://data.delijn.be/stops/203349"], ["https://data.delijn.be/stops/207699", "https://data.delijn.be/stops/207748"], ["https://data.delijn.be/stops/502369", "https://data.delijn.be/stops/502370"], ["https://data.delijn.be/stops/103590", "https://data.delijn.be/stops/108918"], ["https://data.delijn.be/stops/109016", "https://data.delijn.be/stops/109017"], ["https://data.delijn.be/stops/308755", "https://data.delijn.be/stops/308756"], ["https://data.delijn.be/stops/203716", "https://data.delijn.be/stops/203717"], ["https://data.delijn.be/stops/303087", "https://data.delijn.be/stops/303088"], ["https://data.delijn.be/stops/504956", "https://data.delijn.be/stops/509979"], ["https://data.delijn.be/stops/407127", "https://data.delijn.be/stops/407277"], ["https://data.delijn.be/stops/502203", "https://data.delijn.be/stops/507203"], ["https://data.delijn.be/stops/109681", "https://data.delijn.be/stops/109686"], ["https://data.delijn.be/stops/406157", "https://data.delijn.be/stops/406229"], ["https://data.delijn.be/stops/202739", "https://data.delijn.be/stops/207431"], ["https://data.delijn.be/stops/502273", "https://data.delijn.be/stops/507518"], ["https://data.delijn.be/stops/405258", "https://data.delijn.be/stops/405264"], ["https://data.delijn.be/stops/501103", "https://data.delijn.be/stops/501368"], ["https://data.delijn.be/stops/303377", "https://data.delijn.be/stops/308715"], ["https://data.delijn.be/stops/301547", "https://data.delijn.be/stops/305133"], ["https://data.delijn.be/stops/206687", "https://data.delijn.be/stops/207722"], ["https://data.delijn.be/stops/507619", "https://data.delijn.be/stops/507740"], ["https://data.delijn.be/stops/302036", "https://data.delijn.be/stops/308755"], ["https://data.delijn.be/stops/403664", "https://data.delijn.be/stops/408198"], ["https://data.delijn.be/stops/104028", "https://data.delijn.be/stops/106990"], ["https://data.delijn.be/stops/305339", "https://data.delijn.be/stops/305353"], ["https://data.delijn.be/stops/401890", "https://data.delijn.be/stops/401892"], ["https://data.delijn.be/stops/101424", "https://data.delijn.be/stops/109723"], ["https://data.delijn.be/stops/505519", "https://data.delijn.be/stops/506156"], ["https://data.delijn.be/stops/206523", "https://data.delijn.be/stops/216008"], ["https://data.delijn.be/stops/504022", "https://data.delijn.be/stops/504985"], ["https://data.delijn.be/stops/504519", "https://data.delijn.be/stops/509519"], ["https://data.delijn.be/stops/206705", "https://data.delijn.be/stops/207972"], ["https://data.delijn.be/stops/402954", "https://data.delijn.be/stops/404901"], ["https://data.delijn.be/stops/503593", "https://data.delijn.be/stops/508593"], ["https://data.delijn.be/stops/208123", "https://data.delijn.be/stops/209123"], ["https://data.delijn.be/stops/502524", "https://data.delijn.be/stops/507808"], ["https://data.delijn.be/stops/402528", "https://data.delijn.be/stops/402539"], ["https://data.delijn.be/stops/203348", "https://data.delijn.be/stops/208443"], ["https://data.delijn.be/stops/301764", "https://data.delijn.be/stops/306878"], ["https://data.delijn.be/stops/405168", "https://data.delijn.be/stops/405169"], ["https://data.delijn.be/stops/204189", "https://data.delijn.be/stops/205188"], ["https://data.delijn.be/stops/209462", "https://data.delijn.be/stops/209463"], ["https://data.delijn.be/stops/305092", "https://data.delijn.be/stops/308100"], ["https://data.delijn.be/stops/406106", "https://data.delijn.be/stops/406107"], ["https://data.delijn.be/stops/501050", "https://data.delijn.be/stops/505030"], ["https://data.delijn.be/stops/401497", "https://data.delijn.be/stops/403885"], ["https://data.delijn.be/stops/408034", "https://data.delijn.be/stops/408062"], ["https://data.delijn.be/stops/200396", "https://data.delijn.be/stops/201389"], ["https://data.delijn.be/stops/402662", "https://data.delijn.be/stops/402734"], ["https://data.delijn.be/stops/502703", "https://data.delijn.be/stops/502807"], ["https://data.delijn.be/stops/101918", "https://data.delijn.be/stops/107001"], ["https://data.delijn.be/stops/107927", "https://data.delijn.be/stops/107928"], ["https://data.delijn.be/stops/200088", "https://data.delijn.be/stops/203961"], ["https://data.delijn.be/stops/108196", "https://data.delijn.be/stops/108202"], ["https://data.delijn.be/stops/108383", "https://data.delijn.be/stops/108384"], ["https://data.delijn.be/stops/407460", "https://data.delijn.be/stops/407466"], ["https://data.delijn.be/stops/204114", "https://data.delijn.be/stops/205690"], ["https://data.delijn.be/stops/407042", "https://data.delijn.be/stops/407043"], ["https://data.delijn.be/stops/503080", "https://data.delijn.be/stops/508701"], ["https://data.delijn.be/stops/406426", "https://data.delijn.be/stops/409396"], ["https://data.delijn.be/stops/203098", "https://data.delijn.be/stops/203259"], ["https://data.delijn.be/stops/401130", "https://data.delijn.be/stops/401132"], ["https://data.delijn.be/stops/104103", "https://data.delijn.be/stops/104107"], ["https://data.delijn.be/stops/202346", "https://data.delijn.be/stops/202737"], ["https://data.delijn.be/stops/208351", "https://data.delijn.be/stops/209351"], ["https://data.delijn.be/stops/204771", "https://data.delijn.be/stops/205771"], ["https://data.delijn.be/stops/200096", "https://data.delijn.be/stops/201062"], ["https://data.delijn.be/stops/406313", "https://data.delijn.be/stops/406407"], ["https://data.delijn.be/stops/201595", "https://data.delijn.be/stops/205922"], ["https://data.delijn.be/stops/208193", "https://data.delijn.be/stops/209147"], ["https://data.delijn.be/stops/301504", "https://data.delijn.be/stops/305668"], ["https://data.delijn.be/stops/200460", "https://data.delijn.be/stops/201460"], ["https://data.delijn.be/stops/302537", "https://data.delijn.be/stops/308714"], ["https://data.delijn.be/stops/403786", "https://data.delijn.be/stops/403787"], ["https://data.delijn.be/stops/208146", "https://data.delijn.be/stops/208147"], ["https://data.delijn.be/stops/308101", "https://data.delijn.be/stops/308102"], ["https://data.delijn.be/stops/206312", "https://data.delijn.be/stops/207312"], ["https://data.delijn.be/stops/108069", "https://data.delijn.be/stops/108458"], ["https://data.delijn.be/stops/204780", "https://data.delijn.be/stops/204785"], ["https://data.delijn.be/stops/204464", "https://data.delijn.be/stops/205464"], ["https://data.delijn.be/stops/504398", "https://data.delijn.be/stops/509550"], ["https://data.delijn.be/stops/209602", "https://data.delijn.be/stops/306367"], ["https://data.delijn.be/stops/501742", "https://data.delijn.be/stops/504492"], ["https://data.delijn.be/stops/501468", "https://data.delijn.be/stops/506198"], ["https://data.delijn.be/stops/202275", "https://data.delijn.be/stops/211023"], ["https://data.delijn.be/stops/402692", "https://data.delijn.be/stops/402875"], ["https://data.delijn.be/stops/502394", "https://data.delijn.be/stops/507394"], ["https://data.delijn.be/stops/503450", "https://data.delijn.be/stops/503975"], ["https://data.delijn.be/stops/302258", "https://data.delijn.be/stops/302270"], ["https://data.delijn.be/stops/107154", "https://data.delijn.be/stops/107187"], ["https://data.delijn.be/stops/508754", "https://data.delijn.be/stops/508762"], ["https://data.delijn.be/stops/405792", "https://data.delijn.be/stops/405867"], ["https://data.delijn.be/stops/301271", "https://data.delijn.be/stops/307034"], ["https://data.delijn.be/stops/200011", "https://data.delijn.be/stops/211021"], ["https://data.delijn.be/stops/506077", "https://data.delijn.be/stops/507731"], ["https://data.delijn.be/stops/409234", "https://data.delijn.be/stops/409239"], ["https://data.delijn.be/stops/504703", "https://data.delijn.be/stops/509595"], ["https://data.delijn.be/stops/301331", "https://data.delijn.be/stops/301387"], ["https://data.delijn.be/stops/301452", "https://data.delijn.be/stops/305874"], ["https://data.delijn.be/stops/407169", "https://data.delijn.be/stops/407489"], ["https://data.delijn.be/stops/400349", "https://data.delijn.be/stops/400383"], ["https://data.delijn.be/stops/403087", "https://data.delijn.be/stops/403684"], ["https://data.delijn.be/stops/102158", "https://data.delijn.be/stops/107429"], ["https://data.delijn.be/stops/204580", "https://data.delijn.be/stops/204596"], ["https://data.delijn.be/stops/503269", "https://data.delijn.be/stops/508269"], ["https://data.delijn.be/stops/501065", "https://data.delijn.be/stops/506133"], ["https://data.delijn.be/stops/104880", "https://data.delijn.be/stops/205528"], ["https://data.delijn.be/stops/402304", "https://data.delijn.be/stops/402306"], ["https://data.delijn.be/stops/105802", "https://data.delijn.be/stops/107499"], ["https://data.delijn.be/stops/303947", "https://data.delijn.be/stops/303956"], ["https://data.delijn.be/stops/300349", "https://data.delijn.be/stops/300367"], ["https://data.delijn.be/stops/102296", "https://data.delijn.be/stops/106581"], ["https://data.delijn.be/stops/205199", "https://data.delijn.be/stops/205205"], ["https://data.delijn.be/stops/504220", "https://data.delijn.be/stops/504633"], ["https://data.delijn.be/stops/107879", "https://data.delijn.be/stops/107883"], ["https://data.delijn.be/stops/202386", "https://data.delijn.be/stops/203386"], ["https://data.delijn.be/stops/206619", "https://data.delijn.be/stops/207619"], ["https://data.delijn.be/stops/502324", "https://data.delijn.be/stops/507319"], ["https://data.delijn.be/stops/202473", "https://data.delijn.be/stops/203473"], ["https://data.delijn.be/stops/200938", "https://data.delijn.be/stops/202041"], ["https://data.delijn.be/stops/308215", "https://data.delijn.be/stops/308247"], ["https://data.delijn.be/stops/404421", "https://data.delijn.be/stops/407245"], ["https://data.delijn.be/stops/305403", "https://data.delijn.be/stops/305422"], ["https://data.delijn.be/stops/108255", "https://data.delijn.be/stops/108730"], ["https://data.delijn.be/stops/109911", "https://data.delijn.be/stops/109913"], ["https://data.delijn.be/stops/201806", "https://data.delijn.be/stops/208326"], ["https://data.delijn.be/stops/400038", "https://data.delijn.be/stops/400175"], ["https://data.delijn.be/stops/206504", "https://data.delijn.be/stops/206505"], ["https://data.delijn.be/stops/201818", "https://data.delijn.be/stops/204987"], ["https://data.delijn.be/stops/105843", "https://data.delijn.be/stops/105844"], ["https://data.delijn.be/stops/403175", "https://data.delijn.be/stops/403397"], ["https://data.delijn.be/stops/202094", "https://data.delijn.be/stops/203094"], ["https://data.delijn.be/stops/106964", "https://data.delijn.be/stops/109508"], ["https://data.delijn.be/stops/409119", "https://data.delijn.be/stops/409215"], ["https://data.delijn.be/stops/503484", "https://data.delijn.be/stops/503489"], ["https://data.delijn.be/stops/505312", "https://data.delijn.be/stops/507917"], ["https://data.delijn.be/stops/406197", "https://data.delijn.be/stops/406818"], ["https://data.delijn.be/stops/102607", "https://data.delijn.be/stops/105529"], ["https://data.delijn.be/stops/303632", "https://data.delijn.be/stops/307241"], ["https://data.delijn.be/stops/206891", "https://data.delijn.be/stops/207892"], ["https://data.delijn.be/stops/106962", "https://data.delijn.be/stops/109510"], ["https://data.delijn.be/stops/401063", "https://data.delijn.be/stops/407103"], ["https://data.delijn.be/stops/502311", "https://data.delijn.be/stops/505678"], ["https://data.delijn.be/stops/206593", "https://data.delijn.be/stops/207593"], ["https://data.delijn.be/stops/107124", "https://data.delijn.be/stops/109122"], ["https://data.delijn.be/stops/401462", "https://data.delijn.be/stops/401463"], ["https://data.delijn.be/stops/300026", "https://data.delijn.be/stops/300050"], ["https://data.delijn.be/stops/503091", "https://data.delijn.be/stops/508091"], ["https://data.delijn.be/stops/402160", "https://data.delijn.be/stops/410041"], ["https://data.delijn.be/stops/408003", "https://data.delijn.be/stops/308199"], ["https://data.delijn.be/stops/303262", "https://data.delijn.be/stops/303889"], ["https://data.delijn.be/stops/503023", "https://data.delijn.be/stops/503679"], ["https://data.delijn.be/stops/400914", "https://data.delijn.be/stops/406876"], ["https://data.delijn.be/stops/402860", "https://data.delijn.be/stops/406578"], ["https://data.delijn.be/stops/202451", "https://data.delijn.be/stops/211108"], ["https://data.delijn.be/stops/408521", "https://data.delijn.be/stops/408795"], ["https://data.delijn.be/stops/307743", "https://data.delijn.be/stops/307745"], ["https://data.delijn.be/stops/401666", "https://data.delijn.be/stops/308278"], ["https://data.delijn.be/stops/408897", "https://data.delijn.be/stops/408900"], ["https://data.delijn.be/stops/202215", "https://data.delijn.be/stops/203215"], ["https://data.delijn.be/stops/206213", "https://data.delijn.be/stops/207818"], ["https://data.delijn.be/stops/402408", "https://data.delijn.be/stops/402412"], ["https://data.delijn.be/stops/102302", "https://data.delijn.be/stops/109508"], ["https://data.delijn.be/stops/503111", "https://data.delijn.be/stops/505084"], ["https://data.delijn.be/stops/301041", "https://data.delijn.be/stops/301057"], ["https://data.delijn.be/stops/106275", "https://data.delijn.be/stops/106276"], ["https://data.delijn.be/stops/210013", "https://data.delijn.be/stops/211012"], ["https://data.delijn.be/stops/102301", "https://data.delijn.be/stops/106967"], ["https://data.delijn.be/stops/206194", "https://data.delijn.be/stops/207809"], ["https://data.delijn.be/stops/302779", "https://data.delijn.be/stops/302784"], ["https://data.delijn.be/stops/206888", "https://data.delijn.be/stops/206892"], ["https://data.delijn.be/stops/106961", "https://data.delijn.be/stops/106964"], ["https://data.delijn.be/stops/408376", "https://data.delijn.be/stops/308208"], ["https://data.delijn.be/stops/200912", "https://data.delijn.be/stops/203259"], ["https://data.delijn.be/stops/403275", "https://data.delijn.be/stops/410336"], ["https://data.delijn.be/stops/101409", "https://data.delijn.be/stops/107289"], ["https://data.delijn.be/stops/208317", "https://data.delijn.be/stops/208318"], ["https://data.delijn.be/stops/108703", "https://data.delijn.be/stops/108704"], ["https://data.delijn.be/stops/106660", "https://data.delijn.be/stops/106662"], ["https://data.delijn.be/stops/101355", "https://data.delijn.be/stops/101360"], ["https://data.delijn.be/stops/304849", "https://data.delijn.be/stops/304864"], ["https://data.delijn.be/stops/208478", "https://data.delijn.be/stops/208480"], ["https://data.delijn.be/stops/401533", "https://data.delijn.be/stops/406014"], ["https://data.delijn.be/stops/101472", "https://data.delijn.be/stops/109612"], ["https://data.delijn.be/stops/404114", "https://data.delijn.be/stops/404117"], ["https://data.delijn.be/stops/202663", "https://data.delijn.be/stops/203278"], ["https://data.delijn.be/stops/508145", "https://data.delijn.be/stops/509885"], ["https://data.delijn.be/stops/410246", "https://data.delijn.be/stops/410251"], ["https://data.delijn.be/stops/206348", "https://data.delijn.be/stops/207349"], ["https://data.delijn.be/stops/200864", "https://data.delijn.be/stops/210017"], ["https://data.delijn.be/stops/204292", "https://data.delijn.be/stops/205761"], ["https://data.delijn.be/stops/400563", "https://data.delijn.be/stops/403853"], ["https://data.delijn.be/stops/402717", "https://data.delijn.be/stops/402721"], ["https://data.delijn.be/stops/403042", "https://data.delijn.be/stops/403091"], ["https://data.delijn.be/stops/102857", "https://data.delijn.be/stops/204625"], ["https://data.delijn.be/stops/303225", "https://data.delijn.be/stops/304660"], ["https://data.delijn.be/stops/402420", "https://data.delijn.be/stops/402421"], ["https://data.delijn.be/stops/308493", "https://data.delijn.be/stops/308495"], ["https://data.delijn.be/stops/102860", "https://data.delijn.be/stops/104575"], ["https://data.delijn.be/stops/508357", "https://data.delijn.be/stops/509939"], ["https://data.delijn.be/stops/106037", "https://data.delijn.be/stops/107735"], ["https://data.delijn.be/stops/400259", "https://data.delijn.be/stops/405557"], ["https://data.delijn.be/stops/101669", "https://data.delijn.be/stops/101671"], ["https://data.delijn.be/stops/409288", "https://data.delijn.be/stops/409289"], ["https://data.delijn.be/stops/401839", "https://data.delijn.be/stops/406031"], ["https://data.delijn.be/stops/303084", "https://data.delijn.be/stops/305159"], ["https://data.delijn.be/stops/305840", "https://data.delijn.be/stops/308620"], ["https://data.delijn.be/stops/404734", "https://data.delijn.be/stops/404750"], ["https://data.delijn.be/stops/206584", "https://data.delijn.be/stops/207927"], ["https://data.delijn.be/stops/201147", "https://data.delijn.be/stops/210119"], ["https://data.delijn.be/stops/304605", "https://data.delijn.be/stops/304660"], ["https://data.delijn.be/stops/206191", "https://data.delijn.be/stops/207222"], ["https://data.delijn.be/stops/301699", "https://data.delijn.be/stops/305876"], ["https://data.delijn.be/stops/102414", "https://data.delijn.be/stops/103895"], ["https://data.delijn.be/stops/201397", "https://data.delijn.be/stops/209702"], ["https://data.delijn.be/stops/201497", "https://data.delijn.be/stops/201954"], ["https://data.delijn.be/stops/304941", "https://data.delijn.be/stops/304991"], ["https://data.delijn.be/stops/501627", "https://data.delijn.be/stops/504847"], ["https://data.delijn.be/stops/502114", "https://data.delijn.be/stops/502122"], ["https://data.delijn.be/stops/301383", "https://data.delijn.be/stops/304797"], ["https://data.delijn.be/stops/401816", "https://data.delijn.be/stops/406073"], ["https://data.delijn.be/stops/205554", "https://data.delijn.be/stops/205619"], ["https://data.delijn.be/stops/206307", "https://data.delijn.be/stops/207390"], ["https://data.delijn.be/stops/103924", "https://data.delijn.be/stops/107246"], ["https://data.delijn.be/stops/200925", "https://data.delijn.be/stops/200942"], ["https://data.delijn.be/stops/403805", "https://data.delijn.be/stops/407230"], ["https://data.delijn.be/stops/503570", "https://data.delijn.be/stops/508559"], ["https://data.delijn.be/stops/302346", "https://data.delijn.be/stops/302355"], ["https://data.delijn.be/stops/200027", "https://data.delijn.be/stops/201027"], ["https://data.delijn.be/stops/407665", "https://data.delijn.be/stops/407679"], ["https://data.delijn.be/stops/205348", "https://data.delijn.be/stops/205667"], ["https://data.delijn.be/stops/206085", "https://data.delijn.be/stops/207085"], ["https://data.delijn.be/stops/201304", "https://data.delijn.be/stops/201600"], ["https://data.delijn.be/stops/207761", "https://data.delijn.be/stops/209190"], ["https://data.delijn.be/stops/301600", "https://data.delijn.be/stops/305492"], ["https://data.delijn.be/stops/503039", "https://data.delijn.be/stops/503043"], ["https://data.delijn.be/stops/403819", "https://data.delijn.be/stops/403877"], ["https://data.delijn.be/stops/202943", "https://data.delijn.be/stops/203943"], ["https://data.delijn.be/stops/104289", "https://data.delijn.be/stops/105859"], ["https://data.delijn.be/stops/205099", "https://data.delijn.be/stops/205896"], ["https://data.delijn.be/stops/305379", "https://data.delijn.be/stops/305417"], ["https://data.delijn.be/stops/101221", "https://data.delijn.be/stops/107826"], ["https://data.delijn.be/stops/402659", "https://data.delijn.be/stops/407298"], ["https://data.delijn.be/stops/304443", "https://data.delijn.be/stops/304462"], ["https://data.delijn.be/stops/206461", "https://data.delijn.be/stops/206861"], ["https://data.delijn.be/stops/401930", "https://data.delijn.be/stops/401958"], ["https://data.delijn.be/stops/103046", "https://data.delijn.be/stops/107730"], ["https://data.delijn.be/stops/503065", "https://data.delijn.be/stops/509948"], ["https://data.delijn.be/stops/406043", "https://data.delijn.be/stops/406062"], ["https://data.delijn.be/stops/103743", "https://data.delijn.be/stops/105635"], ["https://data.delijn.be/stops/302545", "https://data.delijn.be/stops/305855"], ["https://data.delijn.be/stops/201718", "https://data.delijn.be/stops/203375"], ["https://data.delijn.be/stops/102247", "https://data.delijn.be/stops/103259"], ["https://data.delijn.be/stops/409052", "https://data.delijn.be/stops/409098"], ["https://data.delijn.be/stops/105591", "https://data.delijn.be/stops/105593"], ["https://data.delijn.be/stops/304822", "https://data.delijn.be/stops/304826"], ["https://data.delijn.be/stops/109194", "https://data.delijn.be/stops/109196"], ["https://data.delijn.be/stops/407037", "https://data.delijn.be/stops/408000"], ["https://data.delijn.be/stops/509290", "https://data.delijn.be/stops/509532"], ["https://data.delijn.be/stops/407021", "https://data.delijn.be/stops/308741"], ["https://data.delijn.be/stops/106883", "https://data.delijn.be/stops/109750"], ["https://data.delijn.be/stops/200813", "https://data.delijn.be/stops/200882"], ["https://data.delijn.be/stops/404360", "https://data.delijn.be/stops/404366"], ["https://data.delijn.be/stops/503680", "https://data.delijn.be/stops/508680"], ["https://data.delijn.be/stops/304471", "https://data.delijn.be/stops/304673"], ["https://data.delijn.be/stops/306695", "https://data.delijn.be/stops/308782"], ["https://data.delijn.be/stops/502746", "https://data.delijn.be/stops/505070"], ["https://data.delijn.be/stops/408828", "https://data.delijn.be/stops/408830"], ["https://data.delijn.be/stops/403292", "https://data.delijn.be/stops/403406"], ["https://data.delijn.be/stops/504382", "https://data.delijn.be/stops/509382"], ["https://data.delijn.be/stops/409361", "https://data.delijn.be/stops/409441"], ["https://data.delijn.be/stops/301022", "https://data.delijn.be/stops/301048"], ["https://data.delijn.be/stops/103284", "https://data.delijn.be/stops/106128"], ["https://data.delijn.be/stops/301459", "https://data.delijn.be/stops/305657"], ["https://data.delijn.be/stops/307041", "https://data.delijn.be/stops/307042"], ["https://data.delijn.be/stops/300645", "https://data.delijn.be/stops/306747"], ["https://data.delijn.be/stops/208243", "https://data.delijn.be/stops/208244"], ["https://data.delijn.be/stops/301328", "https://data.delijn.be/stops/301329"], ["https://data.delijn.be/stops/409309", "https://data.delijn.be/stops/410286"], ["https://data.delijn.be/stops/502252", "https://data.delijn.be/stops/507250"], ["https://data.delijn.be/stops/201327", "https://data.delijn.be/stops/202201"], ["https://data.delijn.be/stops/101186", "https://data.delijn.be/stops/103763"], ["https://data.delijn.be/stops/202636", "https://data.delijn.be/stops/203636"], ["https://data.delijn.be/stops/401676", "https://data.delijn.be/stops/308168"], ["https://data.delijn.be/stops/104369", "https://data.delijn.be/stops/204604"], ["https://data.delijn.be/stops/406523", "https://data.delijn.be/stops/406629"], ["https://data.delijn.be/stops/207667", "https://data.delijn.be/stops/208063"], ["https://data.delijn.be/stops/401967", "https://data.delijn.be/stops/409160"], ["https://data.delijn.be/stops/504612", "https://data.delijn.be/stops/505422"], ["https://data.delijn.be/stops/206026", "https://data.delijn.be/stops/207026"], ["https://data.delijn.be/stops/408602", "https://data.delijn.be/stops/408769"], ["https://data.delijn.be/stops/202664", "https://data.delijn.be/stops/203664"], ["https://data.delijn.be/stops/200103", "https://data.delijn.be/stops/201103"], ["https://data.delijn.be/stops/208265", "https://data.delijn.be/stops/209265"], ["https://data.delijn.be/stops/506103", "https://data.delijn.be/stops/506225"], ["https://data.delijn.be/stops/400809", "https://data.delijn.be/stops/409621"], ["https://data.delijn.be/stops/208467", "https://data.delijn.be/stops/209467"], ["https://data.delijn.be/stops/403957", "https://data.delijn.be/stops/407775"], ["https://data.delijn.be/stops/304372", "https://data.delijn.be/stops/306870"], ["https://data.delijn.be/stops/304916", "https://data.delijn.be/stops/308121"], ["https://data.delijn.be/stops/204771", "https://data.delijn.be/stops/205170"], ["https://data.delijn.be/stops/109138", "https://data.delijn.be/stops/109139"], ["https://data.delijn.be/stops/206993", "https://data.delijn.be/stops/207607"], ["https://data.delijn.be/stops/302977", "https://data.delijn.be/stops/303004"], ["https://data.delijn.be/stops/102897", "https://data.delijn.be/stops/109002"], ["https://data.delijn.be/stops/405628", "https://data.delijn.be/stops/407381"], ["https://data.delijn.be/stops/200227", "https://data.delijn.be/stops/201140"], ["https://data.delijn.be/stops/108922", "https://data.delijn.be/stops/108924"], ["https://data.delijn.be/stops/200087", "https://data.delijn.be/stops/201087"], ["https://data.delijn.be/stops/101865", "https://data.delijn.be/stops/105455"], ["https://data.delijn.be/stops/106161", "https://data.delijn.be/stops/106162"], ["https://data.delijn.be/stops/308489", "https://data.delijn.be/stops/308523"], ["https://data.delijn.be/stops/401996", "https://data.delijn.be/stops/401997"], ["https://data.delijn.be/stops/104947", "https://data.delijn.be/stops/401956"], ["https://data.delijn.be/stops/505933", "https://data.delijn.be/stops/507916"], ["https://data.delijn.be/stops/502435", "https://data.delijn.be/stops/502721"], ["https://data.delijn.be/stops/502033", "https://data.delijn.be/stops/507033"], ["https://data.delijn.be/stops/404766", "https://data.delijn.be/stops/404791"], ["https://data.delijn.be/stops/206469", "https://data.delijn.be/stops/206510"], ["https://data.delijn.be/stops/300880", "https://data.delijn.be/stops/301812"], ["https://data.delijn.be/stops/502292", "https://data.delijn.be/stops/507292"], ["https://data.delijn.be/stops/204768", "https://data.delijn.be/stops/205399"], ["https://data.delijn.be/stops/108654", "https://data.delijn.be/stops/108657"], ["https://data.delijn.be/stops/509395", "https://data.delijn.be/stops/509397"], ["https://data.delijn.be/stops/101083", "https://data.delijn.be/stops/101086"], ["https://data.delijn.be/stops/303358", "https://data.delijn.be/stops/307136"], ["https://data.delijn.be/stops/406792", "https://data.delijn.be/stops/406795"], ["https://data.delijn.be/stops/503496", "https://data.delijn.be/stops/509451"], ["https://data.delijn.be/stops/502447", "https://data.delijn.be/stops/507662"], ["https://data.delijn.be/stops/107129", "https://data.delijn.be/stops/107132"], ["https://data.delijn.be/stops/202208", "https://data.delijn.be/stops/203504"], ["https://data.delijn.be/stops/406274", "https://data.delijn.be/stops/406275"], ["https://data.delijn.be/stops/204590", "https://data.delijn.be/stops/204591"], ["https://data.delijn.be/stops/501416", "https://data.delijn.be/stops/506415"], ["https://data.delijn.be/stops/206644", "https://data.delijn.be/stops/207644"], ["https://data.delijn.be/stops/106520", "https://data.delijn.be/stops/106522"], ["https://data.delijn.be/stops/401766", "https://data.delijn.be/stops/401824"], ["https://data.delijn.be/stops/105001", "https://data.delijn.be/stops/106837"], ["https://data.delijn.be/stops/303396", "https://data.delijn.be/stops/308716"], ["https://data.delijn.be/stops/507555", "https://data.delijn.be/stops/509892"], ["https://data.delijn.be/stops/503166", "https://data.delijn.be/stops/503946"], ["https://data.delijn.be/stops/105170", "https://data.delijn.be/stops/107215"], ["https://data.delijn.be/stops/503720", "https://data.delijn.be/stops/508766"], ["https://data.delijn.be/stops/108366", "https://data.delijn.be/stops/108368"], ["https://data.delijn.be/stops/200739", "https://data.delijn.be/stops/202601"], ["https://data.delijn.be/stops/200820", "https://data.delijn.be/stops/200854"], ["https://data.delijn.be/stops/109572", "https://data.delijn.be/stops/109576"], ["https://data.delijn.be/stops/200325", "https://data.delijn.be/stops/200543"], ["https://data.delijn.be/stops/406457", "https://data.delijn.be/stops/406479"], ["https://data.delijn.be/stops/200647", "https://data.delijn.be/stops/201972"], ["https://data.delijn.be/stops/507698", "https://data.delijn.be/stops/508914"], ["https://data.delijn.be/stops/207666", "https://data.delijn.be/stops/209055"], ["https://data.delijn.be/stops/203831", "https://data.delijn.be/stops/203832"], ["https://data.delijn.be/stops/304040", "https://data.delijn.be/stops/304041"], ["https://data.delijn.be/stops/503082", "https://data.delijn.be/stops/508079"], ["https://data.delijn.be/stops/107556", "https://data.delijn.be/stops/109380"], ["https://data.delijn.be/stops/307732", "https://data.delijn.be/stops/307812"], ["https://data.delijn.be/stops/302670", "https://data.delijn.be/stops/302673"], ["https://data.delijn.be/stops/206900", "https://data.delijn.be/stops/207423"], ["https://data.delijn.be/stops/400856", "https://data.delijn.be/stops/403572"], ["https://data.delijn.be/stops/102224", "https://data.delijn.be/stops/102227"], ["https://data.delijn.be/stops/108625", "https://data.delijn.be/stops/108630"], ["https://data.delijn.be/stops/200778", "https://data.delijn.be/stops/203235"], ["https://data.delijn.be/stops/305116", "https://data.delijn.be/stops/305120"], ["https://data.delijn.be/stops/402309", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/307922", "https://data.delijn.be/stops/308854"], ["https://data.delijn.be/stops/504065", "https://data.delijn.be/stops/505109"], ["https://data.delijn.be/stops/105533", "https://data.delijn.be/stops/106731"], ["https://data.delijn.be/stops/503296", "https://data.delijn.be/stops/505239"], ["https://data.delijn.be/stops/303133", "https://data.delijn.be/stops/306749"], ["https://data.delijn.be/stops/305115", "https://data.delijn.be/stops/305128"], ["https://data.delijn.be/stops/201924", "https://data.delijn.be/stops/207591"], ["https://data.delijn.be/stops/203493", "https://data.delijn.be/stops/203607"], ["https://data.delijn.be/stops/106099", "https://data.delijn.be/stops/106148"], ["https://data.delijn.be/stops/108074", "https://data.delijn.be/stops/108841"], ["https://data.delijn.be/stops/200272", "https://data.delijn.be/stops/202002"], ["https://data.delijn.be/stops/204670", "https://data.delijn.be/stops/205259"], ["https://data.delijn.be/stops/107587", "https://data.delijn.be/stops/109430"], ["https://data.delijn.be/stops/301426", "https://data.delijn.be/stops/308935"], ["https://data.delijn.be/stops/406740", "https://data.delijn.be/stops/406742"], ["https://data.delijn.be/stops/404886", "https://data.delijn.be/stops/408647"], ["https://data.delijn.be/stops/406694", "https://data.delijn.be/stops/409762"], ["https://data.delijn.be/stops/204905", "https://data.delijn.be/stops/205242"], ["https://data.delijn.be/stops/302969", "https://data.delijn.be/stops/307096"], ["https://data.delijn.be/stops/200019", "https://data.delijn.be/stops/201021"], ["https://data.delijn.be/stops/402706", "https://data.delijn.be/stops/306021"], ["https://data.delijn.be/stops/504544", "https://data.delijn.be/stops/509551"], ["https://data.delijn.be/stops/104691", "https://data.delijn.be/stops/108131"], ["https://data.delijn.be/stops/101086", "https://data.delijn.be/stops/104459"], ["https://data.delijn.be/stops/304106", "https://data.delijn.be/stops/307050"], ["https://data.delijn.be/stops/204041", "https://data.delijn.be/stops/205041"], ["https://data.delijn.be/stops/304885", "https://data.delijn.be/stops/306160"], ["https://data.delijn.be/stops/105885", "https://data.delijn.be/stops/108135"], ["https://data.delijn.be/stops/208012", "https://data.delijn.be/stops/209010"], ["https://data.delijn.be/stops/503178", "https://data.delijn.be/stops/508265"], ["https://data.delijn.be/stops/204432", "https://data.delijn.be/stops/205767"], ["https://data.delijn.be/stops/307981", "https://data.delijn.be/stops/307983"], ["https://data.delijn.be/stops/300324", "https://data.delijn.be/stops/300325"], ["https://data.delijn.be/stops/105334", "https://data.delijn.be/stops/105336"], ["https://data.delijn.be/stops/504056", "https://data.delijn.be/stops/509055"], ["https://data.delijn.be/stops/103496", "https://data.delijn.be/stops/103501"], ["https://data.delijn.be/stops/202467", "https://data.delijn.be/stops/202468"], ["https://data.delijn.be/stops/504368", "https://data.delijn.be/stops/505131"], ["https://data.delijn.be/stops/101602", "https://data.delijn.be/stops/106028"], ["https://data.delijn.be/stops/105608", "https://data.delijn.be/stops/109737"], ["https://data.delijn.be/stops/403456", "https://data.delijn.be/stops/403457"], ["https://data.delijn.be/stops/502933", "https://data.delijn.be/stops/507014"], ["https://data.delijn.be/stops/504367", "https://data.delijn.be/stops/509366"], ["https://data.delijn.be/stops/503431", "https://data.delijn.be/stops/508420"], ["https://data.delijn.be/stops/300415", "https://data.delijn.be/stops/300438"], ["https://data.delijn.be/stops/201111", "https://data.delijn.be/stops/203647"], ["https://data.delijn.be/stops/105061", "https://data.delijn.be/stops/109516"], ["https://data.delijn.be/stops/208630", "https://data.delijn.be/stops/209631"], ["https://data.delijn.be/stops/204202", "https://data.delijn.be/stops/204203"], ["https://data.delijn.be/stops/405319", "https://data.delijn.be/stops/405375"], ["https://data.delijn.be/stops/508287", "https://data.delijn.be/stops/508606"], ["https://data.delijn.be/stops/206333", "https://data.delijn.be/stops/207333"], ["https://data.delijn.be/stops/404176", "https://data.delijn.be/stops/404177"], ["https://data.delijn.be/stops/504657", "https://data.delijn.be/stops/505916"], ["https://data.delijn.be/stops/500195", "https://data.delijn.be/stops/505047"], ["https://data.delijn.be/stops/207670", "https://data.delijn.be/stops/209481"], ["https://data.delijn.be/stops/304051", "https://data.delijn.be/stops/304115"], ["https://data.delijn.be/stops/301424", "https://data.delijn.be/stops/301434"], ["https://data.delijn.be/stops/200631", "https://data.delijn.be/stops/203850"], ["https://data.delijn.be/stops/204150", "https://data.delijn.be/stops/204151"], ["https://data.delijn.be/stops/400504", "https://data.delijn.be/stops/400517"], ["https://data.delijn.be/stops/102851", "https://data.delijn.be/stops/106775"], ["https://data.delijn.be/stops/308263", "https://data.delijn.be/stops/308264"], ["https://data.delijn.be/stops/405701", "https://data.delijn.be/stops/405705"], ["https://data.delijn.be/stops/307207", "https://data.delijn.be/stops/307210"], ["https://data.delijn.be/stops/201906", "https://data.delijn.be/stops/202517"], ["https://data.delijn.be/stops/206001", "https://data.delijn.be/stops/206521"], ["https://data.delijn.be/stops/502587", "https://data.delijn.be/stops/507574"], ["https://data.delijn.be/stops/400218", "https://data.delijn.be/stops/400219"], ["https://data.delijn.be/stops/305744", "https://data.delijn.be/stops/305745"], ["https://data.delijn.be/stops/204304", "https://data.delijn.be/stops/204552"], ["https://data.delijn.be/stops/405091", "https://data.delijn.be/stops/405092"], ["https://data.delijn.be/stops/304342", "https://data.delijn.be/stops/306882"], ["https://data.delijn.be/stops/403967", "https://data.delijn.be/stops/403974"], ["https://data.delijn.be/stops/206612", "https://data.delijn.be/stops/207612"], ["https://data.delijn.be/stops/301635", "https://data.delijn.be/stops/301638"], ["https://data.delijn.be/stops/400053", "https://data.delijn.be/stops/409158"], ["https://data.delijn.be/stops/404914", "https://data.delijn.be/stops/404926"], ["https://data.delijn.be/stops/405132", "https://data.delijn.be/stops/407109"], ["https://data.delijn.be/stops/101360", "https://data.delijn.be/stops/106332"], ["https://data.delijn.be/stops/403161", "https://data.delijn.be/stops/403407"], ["https://data.delijn.be/stops/502362", "https://data.delijn.be/stops/507362"], ["https://data.delijn.be/stops/301585", "https://data.delijn.be/stops/301590"], ["https://data.delijn.be/stops/206266", "https://data.delijn.be/stops/209080"], ["https://data.delijn.be/stops/404838", "https://data.delijn.be/stops/409348"], ["https://data.delijn.be/stops/304697", "https://data.delijn.be/stops/307155"], ["https://data.delijn.be/stops/103152", "https://data.delijn.be/stops/103272"], ["https://data.delijn.be/stops/501680", "https://data.delijn.be/stops/505363"], ["https://data.delijn.be/stops/105198", "https://data.delijn.be/stops/105199"], ["https://data.delijn.be/stops/201090", "https://data.delijn.be/stops/203888"], ["https://data.delijn.be/stops/102632", "https://data.delijn.be/stops/107048"], ["https://data.delijn.be/stops/204705", "https://data.delijn.be/stops/205706"], ["https://data.delijn.be/stops/303764", "https://data.delijn.be/stops/303765"], ["https://data.delijn.be/stops/404772", "https://data.delijn.be/stops/410051"], ["https://data.delijn.be/stops/306367", "https://data.delijn.be/stops/307591"], ["https://data.delijn.be/stops/203748", "https://data.delijn.be/stops/207424"], ["https://data.delijn.be/stops/105978", "https://data.delijn.be/stops/105981"], ["https://data.delijn.be/stops/204260", "https://data.delijn.be/stops/205476"], ["https://data.delijn.be/stops/303460", "https://data.delijn.be/stops/303487"], ["https://data.delijn.be/stops/307200", "https://data.delijn.be/stops/307599"], ["https://data.delijn.be/stops/406170", "https://data.delijn.be/stops/406452"], ["https://data.delijn.be/stops/406692", "https://data.delijn.be/stops/406693"], ["https://data.delijn.be/stops/504021", "https://data.delijn.be/stops/504838"], ["https://data.delijn.be/stops/407916", "https://data.delijn.be/stops/306061"], ["https://data.delijn.be/stops/504054", "https://data.delijn.be/stops/504057"], ["https://data.delijn.be/stops/204243", "https://data.delijn.be/stops/205458"], ["https://data.delijn.be/stops/201342", "https://data.delijn.be/stops/201343"], ["https://data.delijn.be/stops/400915", "https://data.delijn.be/stops/400965"], ["https://data.delijn.be/stops/106058", "https://data.delijn.be/stops/106059"], ["https://data.delijn.be/stops/208462", "https://data.delijn.be/stops/208463"], ["https://data.delijn.be/stops/503687", "https://data.delijn.be/stops/508685"], ["https://data.delijn.be/stops/204082", "https://data.delijn.be/stops/205082"], ["https://data.delijn.be/stops/103251", "https://data.delijn.be/stops/103252"], ["https://data.delijn.be/stops/504575", "https://data.delijn.be/stops/509575"], ["https://data.delijn.be/stops/405885", "https://data.delijn.be/stops/409688"], ["https://data.delijn.be/stops/201573", "https://data.delijn.be/stops/202399"], ["https://data.delijn.be/stops/301089", "https://data.delijn.be/stops/308871"], ["https://data.delijn.be/stops/400330", "https://data.delijn.be/stops/400356"], ["https://data.delijn.be/stops/103056", "https://data.delijn.be/stops/103644"], ["https://data.delijn.be/stops/304383", "https://data.delijn.be/stops/304389"], ["https://data.delijn.be/stops/200265", "https://data.delijn.be/stops/201434"], ["https://data.delijn.be/stops/107459", "https://data.delijn.be/stops/109195"], ["https://data.delijn.be/stops/101200", "https://data.delijn.be/stops/102590"], ["https://data.delijn.be/stops/107564", "https://data.delijn.be/stops/109434"], ["https://data.delijn.be/stops/401012", "https://data.delijn.be/stops/401013"], ["https://data.delijn.be/stops/306820", "https://data.delijn.be/stops/306821"], ["https://data.delijn.be/stops/301190", "https://data.delijn.be/stops/301252"], ["https://data.delijn.be/stops/304995", "https://data.delijn.be/stops/305024"], ["https://data.delijn.be/stops/410117", "https://data.delijn.be/stops/410327"], ["https://data.delijn.be/stops/306387", "https://data.delijn.be/stops/307198"], ["https://data.delijn.be/stops/101414", "https://data.delijn.be/stops/101428"], ["https://data.delijn.be/stops/301014", "https://data.delijn.be/stops/301019"], ["https://data.delijn.be/stops/109077", "https://data.delijn.be/stops/109078"], ["https://data.delijn.be/stops/303354", "https://data.delijn.be/stops/303355"], ["https://data.delijn.be/stops/106117", "https://data.delijn.be/stops/106119"], ["https://data.delijn.be/stops/501054", "https://data.delijn.be/stops/507646"], ["https://data.delijn.be/stops/202303", "https://data.delijn.be/stops/203303"], ["https://data.delijn.be/stops/502494", "https://data.delijn.be/stops/507490"], ["https://data.delijn.be/stops/200755", "https://data.delijn.be/stops/505278"], ["https://data.delijn.be/stops/300552", "https://data.delijn.be/stops/300562"], ["https://data.delijn.be/stops/200236", "https://data.delijn.be/stops/205924"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/103571"], ["https://data.delijn.be/stops/301098", "https://data.delijn.be/stops/306065"], ["https://data.delijn.be/stops/108029", "https://data.delijn.be/stops/108032"], ["https://data.delijn.be/stops/201746", "https://data.delijn.be/stops/208253"], ["https://data.delijn.be/stops/206426", "https://data.delijn.be/stops/207426"], ["https://data.delijn.be/stops/304359", "https://data.delijn.be/stops/304360"], ["https://data.delijn.be/stops/504424", "https://data.delijn.be/stops/509424"], ["https://data.delijn.be/stops/106656", "https://data.delijn.be/stops/106658"], ["https://data.delijn.be/stops/307646", "https://data.delijn.be/stops/307648"], ["https://data.delijn.be/stops/201124", "https://data.delijn.be/stops/509781"], ["https://data.delijn.be/stops/400195", "https://data.delijn.be/stops/408186"], ["https://data.delijn.be/stops/104847", "https://data.delijn.be/stops/106794"], ["https://data.delijn.be/stops/208634", "https://data.delijn.be/stops/209635"], ["https://data.delijn.be/stops/301607", "https://data.delijn.be/stops/307675"], ["https://data.delijn.be/stops/204134", "https://data.delijn.be/stops/205133"], ["https://data.delijn.be/stops/302620", "https://data.delijn.be/stops/303261"], ["https://data.delijn.be/stops/402337", "https://data.delijn.be/stops/410078"], ["https://data.delijn.be/stops/108009", "https://data.delijn.be/stops/109330"], ["https://data.delijn.be/stops/402818", "https://data.delijn.be/stops/402819"], ["https://data.delijn.be/stops/207341", "https://data.delijn.be/stops/207342"], ["https://data.delijn.be/stops/402377", "https://data.delijn.be/stops/410098"], ["https://data.delijn.be/stops/509386", "https://data.delijn.be/stops/509391"], ["https://data.delijn.be/stops/104953", "https://data.delijn.be/stops/109721"], ["https://data.delijn.be/stops/207435", "https://data.delijn.be/stops/209691"], ["https://data.delijn.be/stops/502354", "https://data.delijn.be/stops/504879"], ["https://data.delijn.be/stops/303676", "https://data.delijn.be/stops/306023"], ["https://data.delijn.be/stops/502151", "https://data.delijn.be/stops/507165"], ["https://data.delijn.be/stops/103609", "https://data.delijn.be/stops/103614"], ["https://data.delijn.be/stops/300120", "https://data.delijn.be/stops/300133"], ["https://data.delijn.be/stops/206673", "https://data.delijn.be/stops/208172"], ["https://data.delijn.be/stops/302710", "https://data.delijn.be/stops/302721"], ["https://data.delijn.be/stops/201897", "https://data.delijn.be/stops/203150"], ["https://data.delijn.be/stops/505101", "https://data.delijn.be/stops/505916"], ["https://data.delijn.be/stops/301056", "https://data.delijn.be/stops/303832"], ["https://data.delijn.be/stops/103286", "https://data.delijn.be/stops/106124"], ["https://data.delijn.be/stops/201719", "https://data.delijn.be/stops/203994"], ["https://data.delijn.be/stops/108565", "https://data.delijn.be/stops/205528"], ["https://data.delijn.be/stops/206881", "https://data.delijn.be/stops/207738"], ["https://data.delijn.be/stops/206572", "https://data.delijn.be/stops/207839"], ["https://data.delijn.be/stops/202572", "https://data.delijn.be/stops/211033"], ["https://data.delijn.be/stops/106607", "https://data.delijn.be/stops/107123"], ["https://data.delijn.be/stops/104280", "https://data.delijn.be/stops/104940"], ["https://data.delijn.be/stops/203109", "https://data.delijn.be/stops/204079"], ["https://data.delijn.be/stops/502365", "https://data.delijn.be/stops/503979"], ["https://data.delijn.be/stops/503928", "https://data.delijn.be/stops/508918"], ["https://data.delijn.be/stops/206866", "https://data.delijn.be/stops/208747"], ["https://data.delijn.be/stops/401749", "https://data.delijn.be/stops/401751"], ["https://data.delijn.be/stops/208475", "https://data.delijn.be/stops/209474"], ["https://data.delijn.be/stops/200249", "https://data.delijn.be/stops/201522"], ["https://data.delijn.be/stops/303415", "https://data.delijn.be/stops/303428"], ["https://data.delijn.be/stops/407959", "https://data.delijn.be/stops/408014"], ["https://data.delijn.be/stops/302133", "https://data.delijn.be/stops/307082"], ["https://data.delijn.be/stops/300476", "https://data.delijn.be/stops/305032"], ["https://data.delijn.be/stops/405179", "https://data.delijn.be/stops/409375"], ["https://data.delijn.be/stops/405903", "https://data.delijn.be/stops/405970"], ["https://data.delijn.be/stops/406940", "https://data.delijn.be/stops/409483"], ["https://data.delijn.be/stops/102580", "https://data.delijn.be/stops/109110"], ["https://data.delijn.be/stops/303983", "https://data.delijn.be/stops/304297"], ["https://data.delijn.be/stops/203963", "https://data.delijn.be/stops/204164"], ["https://data.delijn.be/stops/200540", "https://data.delijn.be/stops/201527"], ["https://data.delijn.be/stops/400378", "https://data.delijn.be/stops/406774"], ["https://data.delijn.be/stops/400808", "https://data.delijn.be/stops/400809"], ["https://data.delijn.be/stops/301528", "https://data.delijn.be/stops/301556"], ["https://data.delijn.be/stops/301541", "https://data.delijn.be/stops/301543"], ["https://data.delijn.be/stops/200955", "https://data.delijn.be/stops/201948"], ["https://data.delijn.be/stops/105388", "https://data.delijn.be/stops/105389"], ["https://data.delijn.be/stops/301378", "https://data.delijn.be/stops/306138"], ["https://data.delijn.be/stops/403371", "https://data.delijn.be/stops/410281"], ["https://data.delijn.be/stops/109579", "https://data.delijn.be/stops/109583"], ["https://data.delijn.be/stops/403141", "https://data.delijn.be/stops/410010"], ["https://data.delijn.be/stops/403831", "https://data.delijn.be/stops/410116"], ["https://data.delijn.be/stops/103486", "https://data.delijn.be/stops/109143"], ["https://data.delijn.be/stops/101365", "https://data.delijn.be/stops/102585"], ["https://data.delijn.be/stops/102245", "https://data.delijn.be/stops/105809"], ["https://data.delijn.be/stops/301592", "https://data.delijn.be/stops/305046"], ["https://data.delijn.be/stops/107481", "https://data.delijn.be/stops/107482"], ["https://data.delijn.be/stops/204983", "https://data.delijn.be/stops/206815"], ["https://data.delijn.be/stops/401484", "https://data.delijn.be/stops/403895"], ["https://data.delijn.be/stops/501768", "https://data.delijn.be/stops/505317"], ["https://data.delijn.be/stops/302310", "https://data.delijn.be/stops/302311"], ["https://data.delijn.be/stops/401648", "https://data.delijn.be/stops/408798"], ["https://data.delijn.be/stops/404440", "https://data.delijn.be/stops/404465"], ["https://data.delijn.be/stops/202921", "https://data.delijn.be/stops/203854"], ["https://data.delijn.be/stops/508252", "https://data.delijn.be/stops/508430"], ["https://data.delijn.be/stops/204986", "https://data.delijn.be/stops/209390"], ["https://data.delijn.be/stops/103678", "https://data.delijn.be/stops/107953"], ["https://data.delijn.be/stops/305553", "https://data.delijn.be/stops/305554"], ["https://data.delijn.be/stops/302794", "https://data.delijn.be/stops/306560"], ["https://data.delijn.be/stops/409300", "https://data.delijn.be/stops/409311"], ["https://data.delijn.be/stops/105367", "https://data.delijn.be/stops/105394"], ["https://data.delijn.be/stops/501218", "https://data.delijn.be/stops/506422"], ["https://data.delijn.be/stops/109136", "https://data.delijn.be/stops/109139"], ["https://data.delijn.be/stops/400032", "https://data.delijn.be/stops/400316"], ["https://data.delijn.be/stops/502533", "https://data.delijn.be/stops/502534"], ["https://data.delijn.be/stops/503297", "https://data.delijn.be/stops/505946"], ["https://data.delijn.be/stops/202428", "https://data.delijn.be/stops/211018"], ["https://data.delijn.be/stops/301555", "https://data.delijn.be/stops/301577"], ["https://data.delijn.be/stops/300215", "https://data.delijn.be/stops/303795"], ["https://data.delijn.be/stops/404358", "https://data.delijn.be/stops/404359"], ["https://data.delijn.be/stops/303165", "https://data.delijn.be/stops/303179"], ["https://data.delijn.be/stops/405828", "https://data.delijn.be/stops/405830"], ["https://data.delijn.be/stops/201603", "https://data.delijn.be/stops/201605"], ["https://data.delijn.be/stops/204395", "https://data.delijn.be/stops/205394"], ["https://data.delijn.be/stops/305271", "https://data.delijn.be/stops/308642"], ["https://data.delijn.be/stops/206447", "https://data.delijn.be/stops/207176"], ["https://data.delijn.be/stops/502796", "https://data.delijn.be/stops/503344"], ["https://data.delijn.be/stops/101423", "https://data.delijn.be/stops/109723"], ["https://data.delijn.be/stops/109286", "https://data.delijn.be/stops/109287"], ["https://data.delijn.be/stops/500195", "https://data.delijn.be/stops/500196"], ["https://data.delijn.be/stops/401576", "https://data.delijn.be/stops/402216"], ["https://data.delijn.be/stops/504129", "https://data.delijn.be/stops/509257"], ["https://data.delijn.be/stops/307952", "https://data.delijn.be/stops/307953"], ["https://data.delijn.be/stops/308422", "https://data.delijn.be/stops/308423"], ["https://data.delijn.be/stops/107037", "https://data.delijn.be/stops/107038"], ["https://data.delijn.be/stops/208217", "https://data.delijn.be/stops/208592"], ["https://data.delijn.be/stops/300318", "https://data.delijn.be/stops/300730"], ["https://data.delijn.be/stops/206185", "https://data.delijn.be/stops/206700"], ["https://data.delijn.be/stops/501051", "https://data.delijn.be/stops/507239"], ["https://data.delijn.be/stops/405552", "https://data.delijn.be/stops/405553"], ["https://data.delijn.be/stops/303648", "https://data.delijn.be/stops/306968"], ["https://data.delijn.be/stops/301711", "https://data.delijn.be/stops/305228"], ["https://data.delijn.be/stops/402718", "https://data.delijn.be/stops/402724"], ["https://data.delijn.be/stops/505128", "https://data.delijn.be/stops/505292"], ["https://data.delijn.be/stops/402616", "https://data.delijn.be/stops/402654"], ["https://data.delijn.be/stops/403739", "https://data.delijn.be/stops/403742"], ["https://data.delijn.be/stops/200149", "https://data.delijn.be/stops/201149"], ["https://data.delijn.be/stops/304125", "https://data.delijn.be/stops/305879"], ["https://data.delijn.be/stops/407658", "https://data.delijn.be/stops/407661"], ["https://data.delijn.be/stops/408640", "https://data.delijn.be/stops/408641"], ["https://data.delijn.be/stops/105882", "https://data.delijn.be/stops/105884"], ["https://data.delijn.be/stops/207641", "https://data.delijn.be/stops/209688"], ["https://data.delijn.be/stops/106593", "https://data.delijn.be/stops/106594"], ["https://data.delijn.be/stops/107741", "https://data.delijn.be/stops/107742"], ["https://data.delijn.be/stops/101331", "https://data.delijn.be/stops/106633"], ["https://data.delijn.be/stops/301730", "https://data.delijn.be/stops/308422"], ["https://data.delijn.be/stops/302063", "https://data.delijn.be/stops/308813"], ["https://data.delijn.be/stops/302517", "https://data.delijn.be/stops/305803"], ["https://data.delijn.be/stops/101484", "https://data.delijn.be/stops/101487"], ["https://data.delijn.be/stops/404118", "https://data.delijn.be/stops/404119"], ["https://data.delijn.be/stops/202740", "https://data.delijn.be/stops/206432"], ["https://data.delijn.be/stops/108065", "https://data.delijn.be/stops/108870"], ["https://data.delijn.be/stops/107174", "https://data.delijn.be/stops/107181"], ["https://data.delijn.be/stops/301192", "https://data.delijn.be/stops/301251"], ["https://data.delijn.be/stops/400206", "https://data.delijn.be/stops/400207"], ["https://data.delijn.be/stops/103319", "https://data.delijn.be/stops/103958"], ["https://data.delijn.be/stops/406599", "https://data.delijn.be/stops/406608"], ["https://data.delijn.be/stops/504799", "https://data.delijn.be/stops/504800"], ["https://data.delijn.be/stops/502588", "https://data.delijn.be/stops/502589"], ["https://data.delijn.be/stops/502246", "https://data.delijn.be/stops/507910"], ["https://data.delijn.be/stops/109295", "https://data.delijn.be/stops/109296"], ["https://data.delijn.be/stops/408329", "https://data.delijn.be/stops/408337"], ["https://data.delijn.be/stops/302303", "https://data.delijn.be/stops/303468"], ["https://data.delijn.be/stops/409373", "https://data.delijn.be/stops/409378"], ["https://data.delijn.be/stops/401528", "https://data.delijn.be/stops/401529"], ["https://data.delijn.be/stops/109194", "https://data.delijn.be/stops/109227"], ["https://data.delijn.be/stops/407197", "https://data.delijn.be/stops/407250"], ["https://data.delijn.be/stops/204572", "https://data.delijn.be/stops/303393"], ["https://data.delijn.be/stops/106614", "https://data.delijn.be/stops/106692"], ["https://data.delijn.be/stops/104578", "https://data.delijn.be/stops/107893"], ["https://data.delijn.be/stops/304756", "https://data.delijn.be/stops/305588"], ["https://data.delijn.be/stops/501683", "https://data.delijn.be/stops/506256"], ["https://data.delijn.be/stops/504949", "https://data.delijn.be/stops/505558"], ["https://data.delijn.be/stops/103158", "https://data.delijn.be/stops/109045"], ["https://data.delijn.be/stops/301168", "https://data.delijn.be/stops/307681"], ["https://data.delijn.be/stops/208023", "https://data.delijn.be/stops/209018"], ["https://data.delijn.be/stops/108079", "https://data.delijn.be/stops/108450"], ["https://data.delijn.be/stops/506779", "https://data.delijn.be/stops/506780"], ["https://data.delijn.be/stops/400604", "https://data.delijn.be/stops/400605"], ["https://data.delijn.be/stops/200246", "https://data.delijn.be/stops/200425"], ["https://data.delijn.be/stops/203999", "https://data.delijn.be/stops/210104"], ["https://data.delijn.be/stops/205385", "https://data.delijn.be/stops/205762"], ["https://data.delijn.be/stops/405856", "https://data.delijn.be/stops/409433"], ["https://data.delijn.be/stops/300904", "https://data.delijn.be/stops/308819"], ["https://data.delijn.be/stops/505192", "https://data.delijn.be/stops/505919"], ["https://data.delijn.be/stops/204007", "https://data.delijn.be/stops/204692"], ["https://data.delijn.be/stops/105638", "https://data.delijn.be/stops/105815"], ["https://data.delijn.be/stops/108613", "https://data.delijn.be/stops/108614"], ["https://data.delijn.be/stops/102757", "https://data.delijn.be/stops/109665"], ["https://data.delijn.be/stops/101781", "https://data.delijn.be/stops/105435"], ["https://data.delijn.be/stops/106231", "https://data.delijn.be/stops/109801"], ["https://data.delijn.be/stops/508526", "https://data.delijn.be/stops/509774"], ["https://data.delijn.be/stops/405386", "https://data.delijn.be/stops/405390"], ["https://data.delijn.be/stops/105849", "https://data.delijn.be/stops/105851"], ["https://data.delijn.be/stops/102139", "https://data.delijn.be/stops/108055"], ["https://data.delijn.be/stops/101952", "https://data.delijn.be/stops/108792"], ["https://data.delijn.be/stops/305745", "https://data.delijn.be/stops/306330"], ["https://data.delijn.be/stops/302464", "https://data.delijn.be/stops/308600"], ["https://data.delijn.be/stops/300612", "https://data.delijn.be/stops/300620"], ["https://data.delijn.be/stops/503595", "https://data.delijn.be/stops/505806"], ["https://data.delijn.be/stops/504066", "https://data.delijn.be/stops/509066"], ["https://data.delijn.be/stops/203787", "https://data.delijn.be/stops/203788"], ["https://data.delijn.be/stops/302793", "https://data.delijn.be/stops/304030"], ["https://data.delijn.be/stops/505314", "https://data.delijn.be/stops/507225"], ["https://data.delijn.be/stops/105580", "https://data.delijn.be/stops/105582"], ["https://data.delijn.be/stops/102417", "https://data.delijn.be/stops/105589"], ["https://data.delijn.be/stops/204458", "https://data.delijn.be/stops/205477"], ["https://data.delijn.be/stops/101004", "https://data.delijn.be/stops/103491"], ["https://data.delijn.be/stops/202235", "https://data.delijn.be/stops/203235"], ["https://data.delijn.be/stops/200060", "https://data.delijn.be/stops/211086"], ["https://data.delijn.be/stops/302511", "https://data.delijn.be/stops/302517"], ["https://data.delijn.be/stops/101141", "https://data.delijn.be/stops/103625"], ["https://data.delijn.be/stops/304940", "https://data.delijn.be/stops/304998"], ["https://data.delijn.be/stops/204336", "https://data.delijn.be/stops/205336"], ["https://data.delijn.be/stops/505059", "https://data.delijn.be/stops/505071"], ["https://data.delijn.be/stops/306858", "https://data.delijn.be/stops/307355"], ["https://data.delijn.be/stops/303268", "https://data.delijn.be/stops/308920"], ["https://data.delijn.be/stops/306921", "https://data.delijn.be/stops/306924"], ["https://data.delijn.be/stops/401931", "https://data.delijn.be/stops/401934"], ["https://data.delijn.be/stops/400735", "https://data.delijn.be/stops/400872"], ["https://data.delijn.be/stops/404741", "https://data.delijn.be/stops/404749"], ["https://data.delijn.be/stops/508749", "https://data.delijn.be/stops/509735"], ["https://data.delijn.be/stops/503382", "https://data.delijn.be/stops/508429"], ["https://data.delijn.be/stops/408842", "https://data.delijn.be/stops/408926"], ["https://data.delijn.be/stops/400529", "https://data.delijn.be/stops/400574"], ["https://data.delijn.be/stops/504086", "https://data.delijn.be/stops/504088"], ["https://data.delijn.be/stops/400552", "https://data.delijn.be/stops/403425"], ["https://data.delijn.be/stops/300583", "https://data.delijn.be/stops/300584"], ["https://data.delijn.be/stops/206874", "https://data.delijn.be/stops/206904"], ["https://data.delijn.be/stops/201238", "https://data.delijn.be/stops/218935"], ["https://data.delijn.be/stops/108137", "https://data.delijn.be/stops/108842"], ["https://data.delijn.be/stops/106515", "https://data.delijn.be/stops/106518"], ["https://data.delijn.be/stops/506181", "https://data.delijn.be/stops/506782"], ["https://data.delijn.be/stops/200338", "https://data.delijn.be/stops/201336"], ["https://data.delijn.be/stops/301296", "https://data.delijn.be/stops/304694"], ["https://data.delijn.be/stops/507464", "https://data.delijn.be/stops/507660"], ["https://data.delijn.be/stops/504237", "https://data.delijn.be/stops/504239"], ["https://data.delijn.be/stops/404315", "https://data.delijn.be/stops/404352"], ["https://data.delijn.be/stops/105476", "https://data.delijn.be/stops/109949"], ["https://data.delijn.be/stops/201861", "https://data.delijn.be/stops/203891"], ["https://data.delijn.be/stops/409092", "https://data.delijn.be/stops/409094"], ["https://data.delijn.be/stops/304266", "https://data.delijn.be/stops/304285"], ["https://data.delijn.be/stops/406595", "https://data.delijn.be/stops/406639"], ["https://data.delijn.be/stops/201951", "https://data.delijn.be/stops/203463"], ["https://data.delijn.be/stops/502470", "https://data.delijn.be/stops/507757"], ["https://data.delijn.be/stops/408613", "https://data.delijn.be/stops/408783"], ["https://data.delijn.be/stops/409266", "https://data.delijn.be/stops/409282"], ["https://data.delijn.be/stops/304606", "https://data.delijn.be/stops/304663"], ["https://data.delijn.be/stops/509401", "https://data.delijn.be/stops/509719"], ["https://data.delijn.be/stops/505839", "https://data.delijn.be/stops/506047"], ["https://data.delijn.be/stops/509200", "https://data.delijn.be/stops/509347"], ["https://data.delijn.be/stops/200337", "https://data.delijn.be/stops/203196"], ["https://data.delijn.be/stops/503434", "https://data.delijn.be/stops/508411"], ["https://data.delijn.be/stops/405258", "https://data.delijn.be/stops/405274"], ["https://data.delijn.be/stops/401825", "https://data.delijn.be/stops/406333"], ["https://data.delijn.be/stops/104784", "https://data.delijn.be/stops/109584"], ["https://data.delijn.be/stops/408136", "https://data.delijn.be/stops/408166"], ["https://data.delijn.be/stops/206398", "https://data.delijn.be/stops/207280"], ["https://data.delijn.be/stops/202677", "https://data.delijn.be/stops/203722"], ["https://data.delijn.be/stops/404838", "https://data.delijn.be/stops/405235"], ["https://data.delijn.be/stops/502457", "https://data.delijn.be/stops/507466"], ["https://data.delijn.be/stops/406707", "https://data.delijn.be/stops/407911"], ["https://data.delijn.be/stops/405343", "https://data.delijn.be/stops/405345"], ["https://data.delijn.be/stops/102517", "https://data.delijn.be/stops/406498"], ["https://data.delijn.be/stops/102387", "https://data.delijn.be/stops/102388"], ["https://data.delijn.be/stops/202227", "https://data.delijn.be/stops/202228"], ["https://data.delijn.be/stops/303590", "https://data.delijn.be/stops/305895"], ["https://data.delijn.be/stops/301363", "https://data.delijn.be/stops/306127"], ["https://data.delijn.be/stops/502132", "https://data.delijn.be/stops/507113"], ["https://data.delijn.be/stops/504576", "https://data.delijn.be/stops/509572"], ["https://data.delijn.be/stops/408620", "https://data.delijn.be/stops/408748"], ["https://data.delijn.be/stops/501401", "https://data.delijn.be/stops/506198"], ["https://data.delijn.be/stops/403478", "https://data.delijn.be/stops/403481"], ["https://data.delijn.be/stops/108266", "https://data.delijn.be/stops/109337"], ["https://data.delijn.be/stops/409069", "https://data.delijn.be/stops/409081"], ["https://data.delijn.be/stops/306326", "https://data.delijn.be/stops/307625"], ["https://data.delijn.be/stops/200251", "https://data.delijn.be/stops/200577"], ["https://data.delijn.be/stops/101174", "https://data.delijn.be/stops/104030"], ["https://data.delijn.be/stops/506636", "https://data.delijn.be/stops/506646"], ["https://data.delijn.be/stops/501353", "https://data.delijn.be/stops/506353"], ["https://data.delijn.be/stops/400244", "https://data.delijn.be/stops/400946"], ["https://data.delijn.be/stops/102189", "https://data.delijn.be/stops/105917"], ["https://data.delijn.be/stops/201766", "https://data.delijn.be/stops/209265"], ["https://data.delijn.be/stops/200685", "https://data.delijn.be/stops/201723"], ["https://data.delijn.be/stops/501100", "https://data.delijn.be/stops/505244"], ["https://data.delijn.be/stops/308179", "https://data.delijn.be/stops/308291"], ["https://data.delijn.be/stops/201674", "https://data.delijn.be/stops/208662"], ["https://data.delijn.be/stops/403043", "https://data.delijn.be/stops/403289"], ["https://data.delijn.be/stops/300198", "https://data.delijn.be/stops/300225"], ["https://data.delijn.be/stops/503664", "https://data.delijn.be/stops/508664"], ["https://data.delijn.be/stops/206524", "https://data.delijn.be/stops/206525"], ["https://data.delijn.be/stops/404298", "https://data.delijn.be/stops/301469"], ["https://data.delijn.be/stops/503190", "https://data.delijn.be/stops/503196"], ["https://data.delijn.be/stops/204394", "https://data.delijn.be/stops/204769"], ["https://data.delijn.be/stops/302134", "https://data.delijn.be/stops/302135"], ["https://data.delijn.be/stops/402354", "https://data.delijn.be/stops/402365"], ["https://data.delijn.be/stops/302944", "https://data.delijn.be/stops/303130"], ["https://data.delijn.be/stops/505113", "https://data.delijn.be/stops/505121"], ["https://data.delijn.be/stops/301356", "https://data.delijn.be/stops/307264"], ["https://data.delijn.be/stops/403912", "https://data.delijn.be/stops/403980"], ["https://data.delijn.be/stops/302971", "https://data.delijn.be/stops/306281"], ["https://data.delijn.be/stops/206300", "https://data.delijn.be/stops/206458"], ["https://data.delijn.be/stops/505774", "https://data.delijn.be/stops/505924"], ["https://data.delijn.be/stops/101746", "https://data.delijn.be/stops/101748"], ["https://data.delijn.be/stops/302213", "https://data.delijn.be/stops/302226"], ["https://data.delijn.be/stops/407761", "https://data.delijn.be/stops/409793"], ["https://data.delijn.be/stops/308506", "https://data.delijn.be/stops/308509"], ["https://data.delijn.be/stops/207254", "https://data.delijn.be/stops/207828"], ["https://data.delijn.be/stops/301610", "https://data.delijn.be/stops/304258"], ["https://data.delijn.be/stops/102169", "https://data.delijn.be/stops/108913"], ["https://data.delijn.be/stops/204607", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/302352", "https://data.delijn.be/stops/302369"], ["https://data.delijn.be/stops/502643", "https://data.delijn.be/stops/507140"], ["https://data.delijn.be/stops/408492", "https://data.delijn.be/stops/408979"], ["https://data.delijn.be/stops/308567", "https://data.delijn.be/stops/308569"], ["https://data.delijn.be/stops/404021", "https://data.delijn.be/stops/404022"], ["https://data.delijn.be/stops/300037", "https://data.delijn.be/stops/306838"], ["https://data.delijn.be/stops/301570", "https://data.delijn.be/stops/301574"], ["https://data.delijn.be/stops/402358", "https://data.delijn.be/stops/402461"], ["https://data.delijn.be/stops/300235", "https://data.delijn.be/stops/306654"], ["https://data.delijn.be/stops/202211", "https://data.delijn.be/stops/203774"], ["https://data.delijn.be/stops/204208", "https://data.delijn.be/stops/204471"], ["https://data.delijn.be/stops/108734", "https://data.delijn.be/stops/109282"], ["https://data.delijn.be/stops/303317", "https://data.delijn.be/stops/303318"], ["https://data.delijn.be/stops/200443", "https://data.delijn.be/stops/201444"], ["https://data.delijn.be/stops/201137", "https://data.delijn.be/stops/201223"], ["https://data.delijn.be/stops/208612", "https://data.delijn.be/stops/208613"], ["https://data.delijn.be/stops/405902", "https://data.delijn.be/stops/405975"], ["https://data.delijn.be/stops/103283", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/504340", "https://data.delijn.be/stops/509076"], ["https://data.delijn.be/stops/503318", "https://data.delijn.be/stops/503962"], ["https://data.delijn.be/stops/303964", "https://data.delijn.be/stops/303972"], ["https://data.delijn.be/stops/401424", "https://data.delijn.be/stops/401576"], ["https://data.delijn.be/stops/304155", "https://data.delijn.be/stops/304537"], ["https://data.delijn.be/stops/101364", "https://data.delijn.be/stops/101397"], ["https://data.delijn.be/stops/306917", "https://data.delijn.be/stops/306920"], ["https://data.delijn.be/stops/206589", "https://data.delijn.be/stops/206590"], ["https://data.delijn.be/stops/410274", "https://data.delijn.be/stops/410275"], ["https://data.delijn.be/stops/103167", "https://data.delijn.be/stops/103168"], ["https://data.delijn.be/stops/303585", "https://data.delijn.be/stops/305280"], ["https://data.delijn.be/stops/505158", "https://data.delijn.be/stops/505296"], ["https://data.delijn.be/stops/302453", "https://data.delijn.be/stops/302493"], ["https://data.delijn.be/stops/502122", "https://data.delijn.be/stops/502129"], ["https://data.delijn.be/stops/307855", "https://data.delijn.be/stops/307857"], ["https://data.delijn.be/stops/300951", "https://data.delijn.be/stops/301944"], ["https://data.delijn.be/stops/301991", "https://data.delijn.be/stops/305977"], ["https://data.delijn.be/stops/104893", "https://data.delijn.be/stops/104896"], ["https://data.delijn.be/stops/501426", "https://data.delijn.be/stops/505032"], ["https://data.delijn.be/stops/102136", "https://data.delijn.be/stops/103481"], ["https://data.delijn.be/stops/304372", "https://data.delijn.be/stops/305993"], ["https://data.delijn.be/stops/406222", "https://data.delijn.be/stops/409407"], ["https://data.delijn.be/stops/500001", "https://data.delijn.be/stops/505358"], ["https://data.delijn.be/stops/503344", "https://data.delijn.be/stops/508344"], ["https://data.delijn.be/stops/102697", "https://data.delijn.be/stops/105910"], ["https://data.delijn.be/stops/403114", "https://data.delijn.be/stops/403116"], ["https://data.delijn.be/stops/206572", "https://data.delijn.be/stops/207573"], ["https://data.delijn.be/stops/105205", "https://data.delijn.be/stops/108061"], ["https://data.delijn.be/stops/501384", "https://data.delijn.be/stops/506380"], ["https://data.delijn.be/stops/406214", "https://data.delijn.be/stops/406215"], ["https://data.delijn.be/stops/504071", "https://data.delijn.be/stops/509071"], ["https://data.delijn.be/stops/106684", "https://data.delijn.be/stops/107122"], ["https://data.delijn.be/stops/202439", "https://data.delijn.be/stops/202482"], ["https://data.delijn.be/stops/403901", "https://data.delijn.be/stops/404027"], ["https://data.delijn.be/stops/300033", "https://data.delijn.be/stops/300379"], ["https://data.delijn.be/stops/304925", "https://data.delijn.be/stops/304926"], ["https://data.delijn.be/stops/109803", "https://data.delijn.be/stops/109804"], ["https://data.delijn.be/stops/403334", "https://data.delijn.be/stops/403335"], ["https://data.delijn.be/stops/202167", "https://data.delijn.be/stops/203167"], ["https://data.delijn.be/stops/504269", "https://data.delijn.be/stops/504273"], ["https://data.delijn.be/stops/201250", "https://data.delijn.be/stops/208939"], ["https://data.delijn.be/stops/208566", "https://data.delijn.be/stops/209566"], ["https://data.delijn.be/stops/408858", "https://data.delijn.be/stops/408859"], ["https://data.delijn.be/stops/208378", "https://data.delijn.be/stops/208794"], ["https://data.delijn.be/stops/404168", "https://data.delijn.be/stops/404239"], ["https://data.delijn.be/stops/102474", "https://data.delijn.be/stops/406835"], ["https://data.delijn.be/stops/303082", "https://data.delijn.be/stops/308660"], ["https://data.delijn.be/stops/503745", "https://data.delijn.be/stops/509782"], ["https://data.delijn.be/stops/102340", "https://data.delijn.be/stops/104255"], ["https://data.delijn.be/stops/507099", "https://data.delijn.be/stops/507299"], ["https://data.delijn.be/stops/407254", "https://data.delijn.be/stops/407255"], ["https://data.delijn.be/stops/200389", "https://data.delijn.be/stops/201389"], ["https://data.delijn.be/stops/407213", "https://data.delijn.be/stops/407217"], ["https://data.delijn.be/stops/204099", "https://data.delijn.be/stops/210009"], ["https://data.delijn.be/stops/105323", "https://data.delijn.be/stops/105324"], ["https://data.delijn.be/stops/109247", "https://data.delijn.be/stops/109266"], ["https://data.delijn.be/stops/200532", "https://data.delijn.be/stops/211109"], ["https://data.delijn.be/stops/505173", "https://data.delijn.be/stops/505240"], ["https://data.delijn.be/stops/206841", "https://data.delijn.be/stops/207841"], ["https://data.delijn.be/stops/501535", "https://data.delijn.be/stops/501536"], ["https://data.delijn.be/stops/405916", "https://data.delijn.be/stops/405971"], ["https://data.delijn.be/stops/404321", "https://data.delijn.be/stops/404352"], ["https://data.delijn.be/stops/404466", "https://data.delijn.be/stops/404508"], ["https://data.delijn.be/stops/505673", "https://data.delijn.be/stops/505676"], ["https://data.delijn.be/stops/409801", "https://data.delijn.be/stops/409802"], ["https://data.delijn.be/stops/300835", "https://data.delijn.be/stops/304937"], ["https://data.delijn.be/stops/104412", "https://data.delijn.be/stops/204489"], ["https://data.delijn.be/stops/202637", "https://data.delijn.be/stops/203637"], ["https://data.delijn.be/stops/101006", "https://data.delijn.be/stops/101007"], ["https://data.delijn.be/stops/400466", "https://data.delijn.be/stops/400468"], ["https://data.delijn.be/stops/506183", "https://data.delijn.be/stops/509495"], ["https://data.delijn.be/stops/206886", "https://data.delijn.be/stops/206887"], ["https://data.delijn.be/stops/204313", "https://data.delijn.be/stops/205314"], ["https://data.delijn.be/stops/503179", "https://data.delijn.be/stops/590010"], ["https://data.delijn.be/stops/101921", "https://data.delijn.be/stops/101922"], ["https://data.delijn.be/stops/403996", "https://data.delijn.be/stops/403997"], ["https://data.delijn.be/stops/403767", "https://data.delijn.be/stops/406973"], ["https://data.delijn.be/stops/401800", "https://data.delijn.be/stops/402004"], ["https://data.delijn.be/stops/506108", "https://data.delijn.be/stops/506109"], ["https://data.delijn.be/stops/204741", "https://data.delijn.be/stops/205741"], ["https://data.delijn.be/stops/107442", "https://data.delijn.be/stops/107443"], ["https://data.delijn.be/stops/109829", "https://data.delijn.be/stops/109831"], ["https://data.delijn.be/stops/208666", "https://data.delijn.be/stops/208668"], ["https://data.delijn.be/stops/102652", "https://data.delijn.be/stops/104582"], ["https://data.delijn.be/stops/308245", "https://data.delijn.be/stops/308247"], ["https://data.delijn.be/stops/305037", "https://data.delijn.be/stops/308034"], ["https://data.delijn.be/stops/301985", "https://data.delijn.be/stops/307194"], ["https://data.delijn.be/stops/209090", "https://data.delijn.be/stops/209568"], ["https://data.delijn.be/stops/505995", "https://data.delijn.be/stops/509580"], ["https://data.delijn.be/stops/405213", "https://data.delijn.be/stops/405218"], ["https://data.delijn.be/stops/401820", "https://data.delijn.be/stops/401821"], ["https://data.delijn.be/stops/106971", "https://data.delijn.be/stops/107633"], ["https://data.delijn.be/stops/307211", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/101976", "https://data.delijn.be/stops/109062"], ["https://data.delijn.be/stops/300101", "https://data.delijn.be/stops/300102"], ["https://data.delijn.be/stops/207170", "https://data.delijn.be/stops/303850"], ["https://data.delijn.be/stops/305578", "https://data.delijn.be/stops/307824"], ["https://data.delijn.be/stops/405344", "https://data.delijn.be/stops/307002"], ["https://data.delijn.be/stops/208596", "https://data.delijn.be/stops/209596"], ["https://data.delijn.be/stops/304104", "https://data.delijn.be/stops/304793"], ["https://data.delijn.be/stops/102799", "https://data.delijn.be/stops/105765"], ["https://data.delijn.be/stops/201671", "https://data.delijn.be/stops/201677"], ["https://data.delijn.be/stops/504233", "https://data.delijn.be/stops/509233"], ["https://data.delijn.be/stops/502278", "https://data.delijn.be/stops/502332"], ["https://data.delijn.be/stops/200234", "https://data.delijn.be/stops/203353"], ["https://data.delijn.be/stops/409559", "https://data.delijn.be/stops/409570"], ["https://data.delijn.be/stops/302076", "https://data.delijn.be/stops/302099"], ["https://data.delijn.be/stops/404227", "https://data.delijn.be/stops/404504"], ["https://data.delijn.be/stops/402859", "https://data.delijn.be/stops/410203"], ["https://data.delijn.be/stops/504067", "https://data.delijn.be/stops/509067"], ["https://data.delijn.be/stops/200660", "https://data.delijn.be/stops/201940"], ["https://data.delijn.be/stops/305400", "https://data.delijn.be/stops/305413"], ["https://data.delijn.be/stops/306637", "https://data.delijn.be/stops/306638"], ["https://data.delijn.be/stops/403297", "https://data.delijn.be/stops/409173"], ["https://data.delijn.be/stops/107120", "https://data.delijn.be/stops/108865"], ["https://data.delijn.be/stops/401026", "https://data.delijn.be/stops/404964"], ["https://data.delijn.be/stops/406634", "https://data.delijn.be/stops/407442"], ["https://data.delijn.be/stops/303355", "https://data.delijn.be/stops/303359"], ["https://data.delijn.be/stops/504104", "https://data.delijn.be/stops/504446"], ["https://data.delijn.be/stops/201382", "https://data.delijn.be/stops/201548"], ["https://data.delijn.be/stops/400725", "https://data.delijn.be/stops/400846"], ["https://data.delijn.be/stops/207945", "https://data.delijn.be/stops/208552"], ["https://data.delijn.be/stops/304376", "https://data.delijn.be/stops/306870"], ["https://data.delijn.be/stops/403681", "https://data.delijn.be/stops/403683"], ["https://data.delijn.be/stops/406897", "https://data.delijn.be/stops/408475"], ["https://data.delijn.be/stops/404612", "https://data.delijn.be/stops/406831"], ["https://data.delijn.be/stops/302937", "https://data.delijn.be/stops/303146"], ["https://data.delijn.be/stops/501389", "https://data.delijn.be/stops/506389"], ["https://data.delijn.be/stops/308778", "https://data.delijn.be/stops/308779"], ["https://data.delijn.be/stops/404230", "https://data.delijn.be/stops/404231"], ["https://data.delijn.be/stops/403590", "https://data.delijn.be/stops/410012"], ["https://data.delijn.be/stops/200720", "https://data.delijn.be/stops/203576"], ["https://data.delijn.be/stops/505703", "https://data.delijn.be/stops/507638"], ["https://data.delijn.be/stops/302318", "https://data.delijn.be/stops/306693"], ["https://data.delijn.be/stops/400142", "https://data.delijn.be/stops/410220"], ["https://data.delijn.be/stops/102063", "https://data.delijn.be/stops/109532"], ["https://data.delijn.be/stops/102756", "https://data.delijn.be/stops/102915"], ["https://data.delijn.be/stops/504149", "https://data.delijn.be/stops/509149"], ["https://data.delijn.be/stops/507200", "https://data.delijn.be/stops/509944"], ["https://data.delijn.be/stops/208781", "https://data.delijn.be/stops/208789"], ["https://data.delijn.be/stops/302064", "https://data.delijn.be/stops/302096"], ["https://data.delijn.be/stops/504663", "https://data.delijn.be/stops/504682"], ["https://data.delijn.be/stops/505578", "https://data.delijn.be/stops/508634"], ["https://data.delijn.be/stops/200885", "https://data.delijn.be/stops/505684"], ["https://data.delijn.be/stops/204112", "https://data.delijn.be/stops/205684"], ["https://data.delijn.be/stops/200545", "https://data.delijn.be/stops/201411"], ["https://data.delijn.be/stops/102862", "https://data.delijn.be/stops/103650"], ["https://data.delijn.be/stops/502180", "https://data.delijn.be/stops/507182"], ["https://data.delijn.be/stops/109451", "https://data.delijn.be/stops/109452"], ["https://data.delijn.be/stops/405800", "https://data.delijn.be/stops/405801"], ["https://data.delijn.be/stops/203211", "https://data.delijn.be/stops/203502"], ["https://data.delijn.be/stops/508502", "https://data.delijn.be/stops/508868"], ["https://data.delijn.be/stops/406585", "https://data.delijn.be/stops/406589"], ["https://data.delijn.be/stops/403398", "https://data.delijn.be/stops/410294"], ["https://data.delijn.be/stops/306140", "https://data.delijn.be/stops/308766"], ["https://data.delijn.be/stops/218002", "https://data.delijn.be/stops/219002"], ["https://data.delijn.be/stops/201307", "https://data.delijn.be/stops/201308"], ["https://data.delijn.be/stops/201959", "https://data.delijn.be/stops/202195"], ["https://data.delijn.be/stops/102540", "https://data.delijn.be/stops/105800"], ["https://data.delijn.be/stops/300615", "https://data.delijn.be/stops/307982"], ["https://data.delijn.be/stops/503358", "https://data.delijn.be/stops/505135"], ["https://data.delijn.be/stops/105603", "https://data.delijn.be/stops/109737"], ["https://data.delijn.be/stops/504486", "https://data.delijn.be/stops/509489"], ["https://data.delijn.be/stops/206098", "https://data.delijn.be/stops/207998"], ["https://data.delijn.be/stops/206238", "https://data.delijn.be/stops/207238"], ["https://data.delijn.be/stops/407505", "https://data.delijn.be/stops/409858"], ["https://data.delijn.be/stops/109158", "https://data.delijn.be/stops/109159"], ["https://data.delijn.be/stops/106496", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/301968", "https://data.delijn.be/stops/303281"], ["https://data.delijn.be/stops/200049", "https://data.delijn.be/stops/201192"], ["https://data.delijn.be/stops/503927", "https://data.delijn.be/stops/508916"], ["https://data.delijn.be/stops/406646", "https://data.delijn.be/stops/406647"], ["https://data.delijn.be/stops/209487", "https://data.delijn.be/stops/209488"], ["https://data.delijn.be/stops/101930", "https://data.delijn.be/stops/101989"], ["https://data.delijn.be/stops/107828", "https://data.delijn.be/stops/107831"], ["https://data.delijn.be/stops/202958", "https://data.delijn.be/stops/203958"], ["https://data.delijn.be/stops/104416", "https://data.delijn.be/stops/205337"], ["https://data.delijn.be/stops/305094", "https://data.delijn.be/stops/305095"], ["https://data.delijn.be/stops/307636", "https://data.delijn.be/stops/307637"], ["https://data.delijn.be/stops/503584", "https://data.delijn.be/stops/508584"], ["https://data.delijn.be/stops/402792", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/209313", "https://data.delijn.be/stops/209787"], ["https://data.delijn.be/stops/205691", "https://data.delijn.be/stops/205699"], ["https://data.delijn.be/stops/305019", "https://data.delijn.be/stops/305020"], ["https://data.delijn.be/stops/202853", "https://data.delijn.be/stops/202858"], ["https://data.delijn.be/stops/200062", "https://data.delijn.be/stops/201272"], ["https://data.delijn.be/stops/407280", "https://data.delijn.be/stops/407781"], ["https://data.delijn.be/stops/206727", "https://data.delijn.be/stops/206984"], ["https://data.delijn.be/stops/305894", "https://data.delijn.be/stops/308179"], ["https://data.delijn.be/stops/403085", "https://data.delijn.be/stops/403131"], ["https://data.delijn.be/stops/500928", "https://data.delijn.be/stops/501686"], ["https://data.delijn.be/stops/409061", "https://data.delijn.be/stops/409137"], ["https://data.delijn.be/stops/402701", "https://data.delijn.be/stops/402719"], ["https://data.delijn.be/stops/504084", "https://data.delijn.be/stops/505424"], ["https://data.delijn.be/stops/308163", "https://data.delijn.be/stops/308195"], ["https://data.delijn.be/stops/201764", "https://data.delijn.be/stops/208274"], ["https://data.delijn.be/stops/205759", "https://data.delijn.be/stops/205760"], ["https://data.delijn.be/stops/101179", "https://data.delijn.be/stops/106789"], ["https://data.delijn.be/stops/403041", "https://data.delijn.be/stops/403404"], ["https://data.delijn.be/stops/303960", "https://data.delijn.be/stops/304927"], ["https://data.delijn.be/stops/503325", "https://data.delijn.be/stops/508325"], ["https://data.delijn.be/stops/108388", "https://data.delijn.be/stops/108389"], ["https://data.delijn.be/stops/204404", "https://data.delijn.be/stops/205404"], ["https://data.delijn.be/stops/408525", "https://data.delijn.be/stops/410249"], ["https://data.delijn.be/stops/206928", "https://data.delijn.be/stops/206939"], ["https://data.delijn.be/stops/501253", "https://data.delijn.be/stops/501256"], ["https://data.delijn.be/stops/306786", "https://data.delijn.be/stops/306791"], ["https://data.delijn.be/stops/200053", "https://data.delijn.be/stops/200477"], ["https://data.delijn.be/stops/501164", "https://data.delijn.be/stops/506164"], ["https://data.delijn.be/stops/105356", "https://data.delijn.be/stops/108908"], ["https://data.delijn.be/stops/101529", "https://data.delijn.be/stops/101953"], ["https://data.delijn.be/stops/202212", "https://data.delijn.be/stops/211117"], ["https://data.delijn.be/stops/503952", "https://data.delijn.be/stops/509277"], ["https://data.delijn.be/stops/200009", "https://data.delijn.be/stops/200417"], ["https://data.delijn.be/stops/501443", "https://data.delijn.be/stops/506442"], ["https://data.delijn.be/stops/502550", "https://data.delijn.be/stops/507550"], ["https://data.delijn.be/stops/306608", "https://data.delijn.be/stops/306619"], ["https://data.delijn.be/stops/103244", "https://data.delijn.be/stops/104784"], ["https://data.delijn.be/stops/501048", "https://data.delijn.be/stops/506198"], ["https://data.delijn.be/stops/106285", "https://data.delijn.be/stops/106288"], ["https://data.delijn.be/stops/402700", "https://data.delijn.be/stops/405997"], ["https://data.delijn.be/stops/408668", "https://data.delijn.be/stops/408669"], ["https://data.delijn.be/stops/106260", "https://data.delijn.be/stops/106262"], ["https://data.delijn.be/stops/105158", "https://data.delijn.be/stops/105161"], ["https://data.delijn.be/stops/201447", "https://data.delijn.be/stops/210113"], ["https://data.delijn.be/stops/304202", "https://data.delijn.be/stops/306003"], ["https://data.delijn.be/stops/105724", "https://data.delijn.be/stops/105726"], ["https://data.delijn.be/stops/104814", "https://data.delijn.be/stops/104816"], ["https://data.delijn.be/stops/308482", "https://data.delijn.be/stops/308483"], ["https://data.delijn.be/stops/107259", "https://data.delijn.be/stops/107261"], ["https://data.delijn.be/stops/200450", "https://data.delijn.be/stops/211065"], ["https://data.delijn.be/stops/206517", "https://data.delijn.be/stops/206718"], ["https://data.delijn.be/stops/503613", "https://data.delijn.be/stops/508615"], ["https://data.delijn.be/stops/101138", "https://data.delijn.be/stops/108420"], ["https://data.delijn.be/stops/302230", "https://data.delijn.be/stops/302237"], ["https://data.delijn.be/stops/207322", "https://data.delijn.be/stops/207882"], ["https://data.delijn.be/stops/200926", "https://data.delijn.be/stops/203047"], ["https://data.delijn.be/stops/206183", "https://data.delijn.be/stops/207690"], ["https://data.delijn.be/stops/200013", "https://data.delijn.be/stops/201013"], ["https://data.delijn.be/stops/202572", "https://data.delijn.be/stops/203570"], ["https://data.delijn.be/stops/200733", "https://data.delijn.be/stops/203572"], ["https://data.delijn.be/stops/204354", "https://data.delijn.be/stops/205312"], ["https://data.delijn.be/stops/106298", "https://data.delijn.be/stops/106470"], ["https://data.delijn.be/stops/302321", "https://data.delijn.be/stops/303451"], ["https://data.delijn.be/stops/404010", "https://data.delijn.be/stops/404081"], ["https://data.delijn.be/stops/202985", "https://data.delijn.be/stops/202988"], ["https://data.delijn.be/stops/204312", "https://data.delijn.be/stops/205351"], ["https://data.delijn.be/stops/400979", "https://data.delijn.be/stops/404845"], ["https://data.delijn.be/stops/108761", "https://data.delijn.be/stops/109795"], ["https://data.delijn.be/stops/402800", "https://data.delijn.be/stops/402801"], ["https://data.delijn.be/stops/502756", "https://data.delijn.be/stops/505648"], ["https://data.delijn.be/stops/502669", "https://data.delijn.be/stops/502670"], ["https://data.delijn.be/stops/200982", "https://data.delijn.be/stops/202921"], ["https://data.delijn.be/stops/103529", "https://data.delijn.be/stops/109636"], ["https://data.delijn.be/stops/504990", "https://data.delijn.be/stops/505108"], ["https://data.delijn.be/stops/203739", "https://data.delijn.be/stops/207430"], ["https://data.delijn.be/stops/301636", "https://data.delijn.be/stops/301637"], ["https://data.delijn.be/stops/107686", "https://data.delijn.be/stops/107689"], ["https://data.delijn.be/stops/107082", "https://data.delijn.be/stops/107084"], ["https://data.delijn.be/stops/402722", "https://data.delijn.be/stops/402724"], ["https://data.delijn.be/stops/106991", "https://data.delijn.be/stops/107098"], ["https://data.delijn.be/stops/206222", "https://data.delijn.be/stops/207193"], ["https://data.delijn.be/stops/303125", "https://data.delijn.be/stops/304656"], ["https://data.delijn.be/stops/506463", "https://data.delijn.be/stops/506659"], ["https://data.delijn.be/stops/206193", "https://data.delijn.be/stops/207193"], ["https://data.delijn.be/stops/301107", "https://data.delijn.be/stops/301117"], ["https://data.delijn.be/stops/209444", "https://data.delijn.be/stops/209453"], ["https://data.delijn.be/stops/409364", "https://data.delijn.be/stops/409388"], ["https://data.delijn.be/stops/202388", "https://data.delijn.be/stops/203078"], ["https://data.delijn.be/stops/304402", "https://data.delijn.be/stops/308058"], ["https://data.delijn.be/stops/206770", "https://data.delijn.be/stops/206787"], ["https://data.delijn.be/stops/304110", "https://data.delijn.be/stops/304819"], ["https://data.delijn.be/stops/108330", "https://data.delijn.be/stops/108335"], ["https://data.delijn.be/stops/206649", "https://data.delijn.be/stops/206681"], ["https://data.delijn.be/stops/407011", "https://data.delijn.be/stops/407037"], ["https://data.delijn.be/stops/305532", "https://data.delijn.be/stops/305539"], ["https://data.delijn.be/stops/203145", "https://data.delijn.be/stops/203187"], ["https://data.delijn.be/stops/102607", "https://data.delijn.be/stops/106973"], ["https://data.delijn.be/stops/305298", "https://data.delijn.be/stops/305334"], ["https://data.delijn.be/stops/403830", "https://data.delijn.be/stops/403831"], ["https://data.delijn.be/stops/501530", "https://data.delijn.be/stops/506199"], ["https://data.delijn.be/stops/403786", "https://data.delijn.be/stops/406709"], ["https://data.delijn.be/stops/506166", "https://data.delijn.be/stops/509836"], ["https://data.delijn.be/stops/503499", "https://data.delijn.be/stops/508878"], ["https://data.delijn.be/stops/405611", "https://data.delijn.be/stops/407179"], ["https://data.delijn.be/stops/202559", "https://data.delijn.be/stops/203560"], ["https://data.delijn.be/stops/200978", "https://data.delijn.be/stops/208045"], ["https://data.delijn.be/stops/102474", "https://data.delijn.be/stops/400178"], ["https://data.delijn.be/stops/102551", "https://data.delijn.be/stops/102552"], ["https://data.delijn.be/stops/107661", "https://data.delijn.be/stops/109861"], ["https://data.delijn.be/stops/303465", "https://data.delijn.be/stops/303469"], ["https://data.delijn.be/stops/500005", "https://data.delijn.be/stops/500006"], ["https://data.delijn.be/stops/102713", "https://data.delijn.be/stops/109588"], ["https://data.delijn.be/stops/304071", "https://data.delijn.be/stops/304072"], ["https://data.delijn.be/stops/405346", "https://data.delijn.be/stops/405347"], ["https://data.delijn.be/stops/504971", "https://data.delijn.be/stops/508635"], ["https://data.delijn.be/stops/201803", "https://data.delijn.be/stops/204987"], ["https://data.delijn.be/stops/503730", "https://data.delijn.be/stops/508739"], ["https://data.delijn.be/stops/206357", "https://data.delijn.be/stops/207688"], ["https://data.delijn.be/stops/101834", "https://data.delijn.be/stops/108236"], ["https://data.delijn.be/stops/300107", "https://data.delijn.be/stops/300108"], ["https://data.delijn.be/stops/303351", "https://data.delijn.be/stops/303367"], ["https://data.delijn.be/stops/200330", "https://data.delijn.be/stops/203196"], ["https://data.delijn.be/stops/105897", "https://data.delijn.be/stops/105898"], ["https://data.delijn.be/stops/102525", "https://data.delijn.be/stops/102526"], ["https://data.delijn.be/stops/105990", "https://data.delijn.be/stops/107957"], ["https://data.delijn.be/stops/502220", "https://data.delijn.be/stops/507221"], ["https://data.delijn.be/stops/102186", "https://data.delijn.be/stops/104291"], ["https://data.delijn.be/stops/502690", "https://data.delijn.be/stops/507476"], ["https://data.delijn.be/stops/109552", "https://data.delijn.be/stops/307435"], ["https://data.delijn.be/stops/200972", "https://data.delijn.be/stops/202862"], ["https://data.delijn.be/stops/101424", "https://data.delijn.be/stops/106965"], ["https://data.delijn.be/stops/503810", "https://data.delijn.be/stops/505540"], ["https://data.delijn.be/stops/404588", "https://data.delijn.be/stops/404644"], ["https://data.delijn.be/stops/302900", "https://data.delijn.be/stops/302901"], ["https://data.delijn.be/stops/409357", "https://data.delijn.be/stops/409440"], ["https://data.delijn.be/stops/204103", "https://data.delijn.be/stops/204583"], ["https://data.delijn.be/stops/402513", "https://data.delijn.be/stops/405663"], ["https://data.delijn.be/stops/502329", "https://data.delijn.be/stops/502338"], ["https://data.delijn.be/stops/201859", "https://data.delijn.be/stops/211035"], ["https://data.delijn.be/stops/200619", "https://data.delijn.be/stops/201516"], ["https://data.delijn.be/stops/200819", "https://data.delijn.be/stops/200853"], ["https://data.delijn.be/stops/201867", "https://data.delijn.be/stops/211038"], ["https://data.delijn.be/stops/304230", "https://data.delijn.be/stops/308772"], ["https://data.delijn.be/stops/507186", "https://data.delijn.be/stops/507187"], ["https://data.delijn.be/stops/408103", "https://data.delijn.be/stops/408141"], ["https://data.delijn.be/stops/509065", "https://data.delijn.be/stops/509067"], ["https://data.delijn.be/stops/404833", "https://data.delijn.be/stops/404834"], ["https://data.delijn.be/stops/300775", "https://data.delijn.be/stops/300776"], ["https://data.delijn.be/stops/508520", "https://data.delijn.be/stops/508774"], ["https://data.delijn.be/stops/200699", "https://data.delijn.be/stops/203788"], ["https://data.delijn.be/stops/308096", "https://data.delijn.be/stops/308097"], ["https://data.delijn.be/stops/301307", "https://data.delijn.be/stops/306648"], ["https://data.delijn.be/stops/303826", "https://data.delijn.be/stops/303829"], ["https://data.delijn.be/stops/405127", "https://data.delijn.be/stops/410215"], ["https://data.delijn.be/stops/204322", "https://data.delijn.be/stops/205322"], ["https://data.delijn.be/stops/502102", "https://data.delijn.be/stops/507101"], ["https://data.delijn.be/stops/508032", "https://data.delijn.be/stops/508679"], ["https://data.delijn.be/stops/506241", "https://data.delijn.be/stops/506371"], ["https://data.delijn.be/stops/505933", "https://data.delijn.be/stops/508134"], ["https://data.delijn.be/stops/306940", "https://data.delijn.be/stops/308064"], ["https://data.delijn.be/stops/406797", "https://data.delijn.be/stops/406804"], ["https://data.delijn.be/stops/208424", "https://data.delijn.be/stops/209424"], ["https://data.delijn.be/stops/304880", "https://data.delijn.be/stops/304881"], ["https://data.delijn.be/stops/503676", "https://data.delijn.be/stops/508654"], ["https://data.delijn.be/stops/202005", "https://data.delijn.be/stops/203005"], ["https://data.delijn.be/stops/105016", "https://data.delijn.be/stops/105113"], ["https://data.delijn.be/stops/503212", "https://data.delijn.be/stops/503420"], ["https://data.delijn.be/stops/503780", "https://data.delijn.be/stops/503837"], ["https://data.delijn.be/stops/505921", "https://data.delijn.be/stops/509115"], ["https://data.delijn.be/stops/302685", "https://data.delijn.be/stops/302691"], ["https://data.delijn.be/stops/508291", "https://data.delijn.be/stops/508294"], ["https://data.delijn.be/stops/102162", "https://data.delijn.be/stops/102163"], ["https://data.delijn.be/stops/501409", "https://data.delijn.be/stops/506410"], ["https://data.delijn.be/stops/202986", "https://data.delijn.be/stops/203987"], ["https://data.delijn.be/stops/502485", "https://data.delijn.be/stops/509700"], ["https://data.delijn.be/stops/500942", "https://data.delijn.be/stops/508179"], ["https://data.delijn.be/stops/409350", "https://data.delijn.be/stops/409371"], ["https://data.delijn.be/stops/303089", "https://data.delijn.be/stops/308655"], ["https://data.delijn.be/stops/208355", "https://data.delijn.be/stops/209184"], ["https://data.delijn.be/stops/408140", "https://data.delijn.be/stops/408166"], ["https://data.delijn.be/stops/107548", "https://data.delijn.be/stops/107613"], ["https://data.delijn.be/stops/403655", "https://data.delijn.be/stops/407344"], ["https://data.delijn.be/stops/304007", "https://data.delijn.be/stops/304049"], ["https://data.delijn.be/stops/200082", "https://data.delijn.be/stops/205804"], ["https://data.delijn.be/stops/104575", "https://data.delijn.be/stops/105180"], ["https://data.delijn.be/stops/401933", "https://data.delijn.be/stops/401935"], ["https://data.delijn.be/stops/208481", "https://data.delijn.be/stops/209480"], ["https://data.delijn.be/stops/305652", "https://data.delijn.be/stops/308130"], ["https://data.delijn.be/stops/503046", "https://data.delijn.be/stops/503763"], ["https://data.delijn.be/stops/505063", "https://data.delijn.be/stops/505652"], ["https://data.delijn.be/stops/102216", "https://data.delijn.be/stops/105537"], ["https://data.delijn.be/stops/201929", "https://data.delijn.be/stops/202482"], ["https://data.delijn.be/stops/507193", "https://data.delijn.be/stops/507631"], ["https://data.delijn.be/stops/308406", "https://data.delijn.be/stops/308408"], ["https://data.delijn.be/stops/207364", "https://data.delijn.be/stops/207708"], ["https://data.delijn.be/stops/208267", "https://data.delijn.be/stops/209266"], ["https://data.delijn.be/stops/406067", "https://data.delijn.be/stops/406071"], ["https://data.delijn.be/stops/201775", "https://data.delijn.be/stops/219004"], ["https://data.delijn.be/stops/208161", "https://data.delijn.be/stops/209008"], ["https://data.delijn.be/stops/502072", "https://data.delijn.be/stops/507072"], ["https://data.delijn.be/stops/406246", "https://data.delijn.be/stops/406255"], ["https://data.delijn.be/stops/504630", "https://data.delijn.be/stops/509621"], ["https://data.delijn.be/stops/402812", "https://data.delijn.be/stops/402813"], ["https://data.delijn.be/stops/106478", "https://data.delijn.be/stops/107456"], ["https://data.delijn.be/stops/304295", "https://data.delijn.be/stops/304474"], ["https://data.delijn.be/stops/105153", "https://data.delijn.be/stops/105157"], ["https://data.delijn.be/stops/207046", "https://data.delijn.be/stops/207999"], ["https://data.delijn.be/stops/401132", "https://data.delijn.be/stops/406549"], ["https://data.delijn.be/stops/407067", "https://data.delijn.be/stops/410014"], ["https://data.delijn.be/stops/505318", "https://data.delijn.be/stops/505802"], ["https://data.delijn.be/stops/202547", "https://data.delijn.be/stops/203547"], ["https://data.delijn.be/stops/202045", "https://data.delijn.be/stops/202249"], ["https://data.delijn.be/stops/304519", "https://data.delijn.be/stops/304520"], ["https://data.delijn.be/stops/301025", "https://data.delijn.be/stops/301026"], ["https://data.delijn.be/stops/200193", "https://data.delijn.be/stops/202756"], ["https://data.delijn.be/stops/102171", "https://data.delijn.be/stops/104117"], ["https://data.delijn.be/stops/200567", "https://data.delijn.be/stops/201567"], ["https://data.delijn.be/stops/207533", "https://data.delijn.be/stops/207540"], ["https://data.delijn.be/stops/305681", "https://data.delijn.be/stops/305697"], ["https://data.delijn.be/stops/106894", "https://data.delijn.be/stops/107219"], ["https://data.delijn.be/stops/101664", "https://data.delijn.be/stops/106487"], ["https://data.delijn.be/stops/106885", "https://data.delijn.be/stops/109750"], ["https://data.delijn.be/stops/204376", "https://data.delijn.be/stops/205762"], ["https://data.delijn.be/stops/306881", "https://data.delijn.be/stops/307873"], ["https://data.delijn.be/stops/109052", "https://data.delijn.be/stops/109070"], ["https://data.delijn.be/stops/507518", "https://data.delijn.be/stops/509795"], ["https://data.delijn.be/stops/400208", "https://data.delijn.be/stops/400239"], ["https://data.delijn.be/stops/208688", "https://data.delijn.be/stops/208710"], ["https://data.delijn.be/stops/302542", "https://data.delijn.be/stops/307810"], ["https://data.delijn.be/stops/300344", "https://data.delijn.be/stops/304860"], ["https://data.delijn.be/stops/107180", "https://data.delijn.be/stops/107185"], ["https://data.delijn.be/stops/503616", "https://data.delijn.be/stops/508752"], ["https://data.delijn.be/stops/104784", "https://data.delijn.be/stops/108123"], ["https://data.delijn.be/stops/400992", "https://data.delijn.be/stops/406589"], ["https://data.delijn.be/stops/300825", "https://data.delijn.be/stops/301055"], ["https://data.delijn.be/stops/504012", "https://data.delijn.be/stops/505817"], ["https://data.delijn.be/stops/504214", "https://data.delijn.be/stops/504217"], ["https://data.delijn.be/stops/102194", "https://data.delijn.be/stops/104271"], ["https://data.delijn.be/stops/200538", "https://data.delijn.be/stops/201538"], ["https://data.delijn.be/stops/104470", "https://data.delijn.be/stops/104719"], ["https://data.delijn.be/stops/201730", "https://data.delijn.be/stops/210855"], ["https://data.delijn.be/stops/301446", "https://data.delijn.be/stops/301447"], ["https://data.delijn.be/stops/105195", "https://data.delijn.be/stops/105200"], ["https://data.delijn.be/stops/405805", "https://data.delijn.be/stops/409735"], ["https://data.delijn.be/stops/405489", "https://data.delijn.be/stops/409287"], ["https://data.delijn.be/stops/206708", "https://data.delijn.be/stops/207606"], ["https://data.delijn.be/stops/505834", "https://data.delijn.be/stops/505835"], ["https://data.delijn.be/stops/200925", "https://data.delijn.be/stops/203247"], ["https://data.delijn.be/stops/503547", "https://data.delijn.be/stops/509277"], ["https://data.delijn.be/stops/208353", "https://data.delijn.be/stops/208799"], ["https://data.delijn.be/stops/300679", "https://data.delijn.be/stops/305965"], ["https://data.delijn.be/stops/106112", "https://data.delijn.be/stops/106113"], ["https://data.delijn.be/stops/204751", "https://data.delijn.be/stops/205247"], ["https://data.delijn.be/stops/300232", "https://data.delijn.be/stops/300233"], ["https://data.delijn.be/stops/204162", "https://data.delijn.be/stops/206399"], ["https://data.delijn.be/stops/402807", "https://data.delijn.be/stops/406972"], ["https://data.delijn.be/stops/303076", "https://data.delijn.be/stops/303077"], ["https://data.delijn.be/stops/109071", "https://data.delijn.be/stops/109559"], ["https://data.delijn.be/stops/207988", "https://data.delijn.be/stops/217011"], ["https://data.delijn.be/stops/503553", "https://data.delijn.be/stops/503993"], ["https://data.delijn.be/stops/400150", "https://data.delijn.be/stops/410031"], ["https://data.delijn.be/stops/504290", "https://data.delijn.be/stops/509290"], ["https://data.delijn.be/stops/405282", "https://data.delijn.be/stops/407742"], ["https://data.delijn.be/stops/503823", "https://data.delijn.be/stops/508823"], ["https://data.delijn.be/stops/502432", "https://data.delijn.be/stops/507697"], ["https://data.delijn.be/stops/501210", "https://data.delijn.be/stops/505757"], ["https://data.delijn.be/stops/200910", "https://data.delijn.be/stops/203253"], ["https://data.delijn.be/stops/503897", "https://data.delijn.be/stops/504146"], ["https://data.delijn.be/stops/501130", "https://data.delijn.be/stops/506133"], ["https://data.delijn.be/stops/107829", "https://data.delijn.be/stops/107831"], ["https://data.delijn.be/stops/300009", "https://data.delijn.be/stops/304682"], ["https://data.delijn.be/stops/206252", "https://data.delijn.be/stops/207583"], ["https://data.delijn.be/stops/501431", "https://data.delijn.be/stops/506432"], ["https://data.delijn.be/stops/209120", "https://data.delijn.be/stops/218009"], ["https://data.delijn.be/stops/501149", "https://data.delijn.be/stops/506156"], ["https://data.delijn.be/stops/407895", "https://data.delijn.be/stops/301841"], ["https://data.delijn.be/stops/207157", "https://data.delijn.be/stops/207673"], ["https://data.delijn.be/stops/406844", "https://data.delijn.be/stops/408629"], ["https://data.delijn.be/stops/300018", "https://data.delijn.be/stops/301133"], ["https://data.delijn.be/stops/202900", "https://data.delijn.be/stops/202903"], ["https://data.delijn.be/stops/407873", "https://data.delijn.be/stops/408055"], ["https://data.delijn.be/stops/403572", "https://data.delijn.be/stops/404960"], ["https://data.delijn.be/stops/106109", "https://data.delijn.be/stops/109183"], ["https://data.delijn.be/stops/204917", "https://data.delijn.be/stops/204919"], ["https://data.delijn.be/stops/407978", "https://data.delijn.be/stops/407995"], ["https://data.delijn.be/stops/400374", "https://data.delijn.be/stops/406843"], ["https://data.delijn.be/stops/105276", "https://data.delijn.be/stops/105296"], ["https://data.delijn.be/stops/106290", "https://data.delijn.be/stops/106312"], ["https://data.delijn.be/stops/501617", "https://data.delijn.be/stops/501618"], ["https://data.delijn.be/stops/503301", "https://data.delijn.be/stops/503302"], ["https://data.delijn.be/stops/503948", "https://data.delijn.be/stops/505541"], ["https://data.delijn.be/stops/206337", "https://data.delijn.be/stops/207336"], ["https://data.delijn.be/stops/105738", "https://data.delijn.be/stops/109857"], ["https://data.delijn.be/stops/105997", "https://data.delijn.be/stops/105998"], ["https://data.delijn.be/stops/209318", "https://data.delijn.be/stops/209319"], ["https://data.delijn.be/stops/405832", "https://data.delijn.be/stops/405867"], ["https://data.delijn.be/stops/408235", "https://data.delijn.be/stops/408376"], ["https://data.delijn.be/stops/502436", "https://data.delijn.be/stops/507429"], ["https://data.delijn.be/stops/303427", "https://data.delijn.be/stops/303430"], ["https://data.delijn.be/stops/204383", "https://data.delijn.be/stops/205383"], ["https://data.delijn.be/stops/304307", "https://data.delijn.be/stops/304308"], ["https://data.delijn.be/stops/502452", "https://data.delijn.be/stops/502634"], ["https://data.delijn.be/stops/104383", "https://data.delijn.be/stops/104399"], ["https://data.delijn.be/stops/303881", "https://data.delijn.be/stops/303882"], ["https://data.delijn.be/stops/200590", "https://data.delijn.be/stops/201241"], ["https://data.delijn.be/stops/302269", "https://data.delijn.be/stops/302270"], ["https://data.delijn.be/stops/502816", "https://data.delijn.be/stops/502818"], ["https://data.delijn.be/stops/305633", "https://data.delijn.be/stops/308407"], ["https://data.delijn.be/stops/408886", "https://data.delijn.be/stops/408918"], ["https://data.delijn.be/stops/501209", "https://data.delijn.be/stops/506209"], ["https://data.delijn.be/stops/402219", "https://data.delijn.be/stops/410052"], ["https://data.delijn.be/stops/201378", "https://data.delijn.be/stops/210049"], ["https://data.delijn.be/stops/106656", "https://data.delijn.be/stops/106664"], ["https://data.delijn.be/stops/300414", "https://data.delijn.be/stops/300611"], ["https://data.delijn.be/stops/401179", "https://data.delijn.be/stops/401189"], ["https://data.delijn.be/stops/203967", "https://data.delijn.be/stops/205092"], ["https://data.delijn.be/stops/106589", "https://data.delijn.be/stops/107387"], ["https://data.delijn.be/stops/208234", "https://data.delijn.be/stops/209234"], ["https://data.delijn.be/stops/306704", "https://data.delijn.be/stops/307933"], ["https://data.delijn.be/stops/402572", "https://data.delijn.be/stops/402655"], ["https://data.delijn.be/stops/109291", "https://data.delijn.be/stops/109292"], ["https://data.delijn.be/stops/504327", "https://data.delijn.be/stops/504694"], ["https://data.delijn.be/stops/400536", "https://data.delijn.be/stops/400554"], ["https://data.delijn.be/stops/205181", "https://data.delijn.be/stops/205217"], ["https://data.delijn.be/stops/510002", "https://data.delijn.be/stops/510003"], ["https://data.delijn.be/stops/205581", "https://data.delijn.be/stops/214007"], ["https://data.delijn.be/stops/408526", "https://data.delijn.be/stops/408527"], ["https://data.delijn.be/stops/407000", "https://data.delijn.be/stops/407001"], ["https://data.delijn.be/stops/302475", "https://data.delijn.be/stops/302476"], ["https://data.delijn.be/stops/303425", "https://data.delijn.be/stops/305042"], ["https://data.delijn.be/stops/407662", "https://data.delijn.be/stops/407663"], ["https://data.delijn.be/stops/203284", "https://data.delijn.be/stops/203285"], ["https://data.delijn.be/stops/401094", "https://data.delijn.be/stops/401095"], ["https://data.delijn.be/stops/400052", "https://data.delijn.be/stops/400096"], ["https://data.delijn.be/stops/404448", "https://data.delijn.be/stops/404449"], ["https://data.delijn.be/stops/404793", "https://data.delijn.be/stops/404794"], ["https://data.delijn.be/stops/207954", "https://data.delijn.be/stops/207955"], ["https://data.delijn.be/stops/208392", "https://data.delijn.be/stops/208393"], ["https://data.delijn.be/stops/200412", "https://data.delijn.be/stops/201410"], ["https://data.delijn.be/stops/106513", "https://data.delijn.be/stops/106515"], ["https://data.delijn.be/stops/502631", "https://data.delijn.be/stops/507410"], ["https://data.delijn.be/stops/503715", "https://data.delijn.be/stops/508713"], ["https://data.delijn.be/stops/201138", "https://data.delijn.be/stops/209450"], ["https://data.delijn.be/stops/206342", "https://data.delijn.be/stops/207343"], ["https://data.delijn.be/stops/308500", "https://data.delijn.be/stops/308502"], ["https://data.delijn.be/stops/302072", "https://data.delijn.be/stops/303515"], ["https://data.delijn.be/stops/505833", "https://data.delijn.be/stops/507223"], ["https://data.delijn.be/stops/407959", "https://data.delijn.be/stops/408070"], ["https://data.delijn.be/stops/109350", "https://data.delijn.be/stops/109357"], ["https://data.delijn.be/stops/300235", "https://data.delijn.be/stops/300293"], ["https://data.delijn.be/stops/103752", "https://data.delijn.be/stops/103925"], ["https://data.delijn.be/stops/200434", "https://data.delijn.be/stops/200435"], ["https://data.delijn.be/stops/205380", "https://data.delijn.be/stops/205391"], ["https://data.delijn.be/stops/406719", "https://data.delijn.be/stops/410049"], ["https://data.delijn.be/stops/304116", "https://data.delijn.be/stops/308447"], ["https://data.delijn.be/stops/402656", "https://data.delijn.be/stops/306391"], ["https://data.delijn.be/stops/208395", "https://data.delijn.be/stops/208742"], ["https://data.delijn.be/stops/202620", "https://data.delijn.be/stops/203620"], ["https://data.delijn.be/stops/203714", "https://data.delijn.be/stops/203729"], ["https://data.delijn.be/stops/105444", "https://data.delijn.be/stops/109617"], ["https://data.delijn.be/stops/403953", "https://data.delijn.be/stops/403954"], ["https://data.delijn.be/stops/305070", "https://data.delijn.be/stops/307295"], ["https://data.delijn.be/stops/303326", "https://data.delijn.be/stops/303327"], ["https://data.delijn.be/stops/502612", "https://data.delijn.be/stops/507623"], ["https://data.delijn.be/stops/302121", "https://data.delijn.be/stops/302141"], ["https://data.delijn.be/stops/107587", "https://data.delijn.be/stops/107588"], ["https://data.delijn.be/stops/502910", "https://data.delijn.be/stops/507154"], ["https://data.delijn.be/stops/207535", "https://data.delijn.be/stops/209739"], ["https://data.delijn.be/stops/206301", "https://data.delijn.be/stops/207302"], ["https://data.delijn.be/stops/403521", "https://data.delijn.be/stops/410276"], ["https://data.delijn.be/stops/106470", "https://data.delijn.be/stops/106472"], ["https://data.delijn.be/stops/308732", "https://data.delijn.be/stops/308734"], ["https://data.delijn.be/stops/506109", "https://data.delijn.be/stops/506111"], ["https://data.delijn.be/stops/408523", "https://data.delijn.be/stops/408571"], ["https://data.delijn.be/stops/501428", "https://data.delijn.be/stops/501671"], ["https://data.delijn.be/stops/502731", "https://data.delijn.be/stops/507730"], ["https://data.delijn.be/stops/300286", "https://data.delijn.be/stops/300289"], ["https://data.delijn.be/stops/504479", "https://data.delijn.be/stops/509479"], ["https://data.delijn.be/stops/504231", "https://data.delijn.be/stops/509231"], ["https://data.delijn.be/stops/109854", "https://data.delijn.be/stops/109981"], ["https://data.delijn.be/stops/205095", "https://data.delijn.be/stops/205467"], ["https://data.delijn.be/stops/300251", "https://data.delijn.be/stops/304656"], ["https://data.delijn.be/stops/102926", "https://data.delijn.be/stops/103105"], ["https://data.delijn.be/stops/505651", "https://data.delijn.be/stops/507918"], ["https://data.delijn.be/stops/102150", "https://data.delijn.be/stops/102446"], ["https://data.delijn.be/stops/502642", "https://data.delijn.be/stops/507642"], ["https://data.delijn.be/stops/408770", "https://data.delijn.be/stops/408771"], ["https://data.delijn.be/stops/106251", "https://data.delijn.be/stops/106680"], ["https://data.delijn.be/stops/401525", "https://data.delijn.be/stops/403814"], ["https://data.delijn.be/stops/303796", "https://data.delijn.be/stops/308900"], ["https://data.delijn.be/stops/106282", "https://data.delijn.be/stops/106284"], ["https://data.delijn.be/stops/407403", "https://data.delijn.be/stops/409496"], ["https://data.delijn.be/stops/203748", "https://data.delijn.be/stops/207594"], ["https://data.delijn.be/stops/103101", "https://data.delijn.be/stops/105851"], ["https://data.delijn.be/stops/109241", "https://data.delijn.be/stops/109246"], ["https://data.delijn.be/stops/507685", "https://data.delijn.be/stops/508002"], ["https://data.delijn.be/stops/200157", "https://data.delijn.be/stops/206243"], ["https://data.delijn.be/stops/407944", "https://data.delijn.be/stops/408065"], ["https://data.delijn.be/stops/201065", "https://data.delijn.be/stops/201393"], ["https://data.delijn.be/stops/302368", "https://data.delijn.be/stops/306195"], ["https://data.delijn.be/stops/301795", "https://data.delijn.be/stops/301802"], ["https://data.delijn.be/stops/402240", "https://data.delijn.be/stops/404568"], ["https://data.delijn.be/stops/307856", "https://data.delijn.be/stops/307858"], ["https://data.delijn.be/stops/108933", "https://data.delijn.be/stops/108936"], ["https://data.delijn.be/stops/207751", "https://data.delijn.be/stops/207769"], ["https://data.delijn.be/stops/107603", "https://data.delijn.be/stops/406792"], ["https://data.delijn.be/stops/205189", "https://data.delijn.be/stops/205230"], ["https://data.delijn.be/stops/403337", "https://data.delijn.be/stops/403349"], ["https://data.delijn.be/stops/400729", "https://data.delijn.be/stops/400938"], ["https://data.delijn.be/stops/407396", "https://data.delijn.be/stops/408482"], ["https://data.delijn.be/stops/105989", "https://data.delijn.be/stops/109870"], ["https://data.delijn.be/stops/301760", "https://data.delijn.be/stops/304572"], ["https://data.delijn.be/stops/402345", "https://data.delijn.be/stops/402416"], ["https://data.delijn.be/stops/109061", "https://data.delijn.be/stops/405804"], ["https://data.delijn.be/stops/504239", "https://data.delijn.be/stops/504654"], ["https://data.delijn.be/stops/501732", "https://data.delijn.be/stops/506662"], ["https://data.delijn.be/stops/201776", "https://data.delijn.be/stops/209855"], ["https://data.delijn.be/stops/106082", "https://data.delijn.be/stops/108729"], ["https://data.delijn.be/stops/404336", "https://data.delijn.be/stops/404341"], ["https://data.delijn.be/stops/201305", "https://data.delijn.be/stops/202762"], ["https://data.delijn.be/stops/504388", "https://data.delijn.be/stops/509712"], ["https://data.delijn.be/stops/211078", "https://data.delijn.be/stops/211200"], ["https://data.delijn.be/stops/401774", "https://data.delijn.be/stops/401775"], ["https://data.delijn.be/stops/208159", "https://data.delijn.be/stops/209001"], ["https://data.delijn.be/stops/405701", "https://data.delijn.be/stops/407201"], ["https://data.delijn.be/stops/505945", "https://data.delijn.be/stops/508836"], ["https://data.delijn.be/stops/200877", "https://data.delijn.be/stops/203062"], ["https://data.delijn.be/stops/200691", "https://data.delijn.be/stops/201681"], ["https://data.delijn.be/stops/301727", "https://data.delijn.be/stops/301728"], ["https://data.delijn.be/stops/304403", "https://data.delijn.be/stops/308827"], ["https://data.delijn.be/stops/208598", "https://data.delijn.be/stops/307335"], ["https://data.delijn.be/stops/405375", "https://data.delijn.be/stops/409285"], ["https://data.delijn.be/stops/204318", "https://data.delijn.be/stops/205059"], ["https://data.delijn.be/stops/404971", "https://data.delijn.be/stops/404973"], ["https://data.delijn.be/stops/405014", "https://data.delijn.be/stops/408155"], ["https://data.delijn.be/stops/105743", "https://data.delijn.be/stops/109953"], ["https://data.delijn.be/stops/401507", "https://data.delijn.be/stops/404949"], ["https://data.delijn.be/stops/503382", "https://data.delijn.be/stops/509907"], ["https://data.delijn.be/stops/204466", "https://data.delijn.be/stops/204474"], ["https://data.delijn.be/stops/402363", "https://data.delijn.be/stops/410072"], ["https://data.delijn.be/stops/301293", "https://data.delijn.be/stops/307324"], ["https://data.delijn.be/stops/304486", "https://data.delijn.be/stops/304516"], ["https://data.delijn.be/stops/107434", "https://data.delijn.be/stops/107539"], ["https://data.delijn.be/stops/304022", "https://data.delijn.be/stops/305443"], ["https://data.delijn.be/stops/401046", "https://data.delijn.be/stops/401131"], ["https://data.delijn.be/stops/502674", "https://data.delijn.be/stops/507655"], ["https://data.delijn.be/stops/404975", "https://data.delijn.be/stops/404977"], ["https://data.delijn.be/stops/400781", "https://data.delijn.be/stops/409343"], ["https://data.delijn.be/stops/208601", "https://data.delijn.be/stops/307592"], ["https://data.delijn.be/stops/206059", "https://data.delijn.be/stops/207059"], ["https://data.delijn.be/stops/204530", "https://data.delijn.be/stops/205536"], ["https://data.delijn.be/stops/407830", "https://data.delijn.be/stops/407903"], ["https://data.delijn.be/stops/206496", "https://data.delijn.be/stops/207507"], ["https://data.delijn.be/stops/401801", "https://data.delijn.be/stops/401804"], ["https://data.delijn.be/stops/302282", "https://data.delijn.be/stops/302298"], ["https://data.delijn.be/stops/403863", "https://data.delijn.be/stops/403866"], ["https://data.delijn.be/stops/502149", "https://data.delijn.be/stops/507138"], ["https://data.delijn.be/stops/500958", "https://data.delijn.be/stops/503286"], ["https://data.delijn.be/stops/201941", "https://data.delijn.be/stops/202943"], ["https://data.delijn.be/stops/508560", "https://data.delijn.be/stops/509891"], ["https://data.delijn.be/stops/504133", "https://data.delijn.be/stops/504976"], ["https://data.delijn.be/stops/303656", "https://data.delijn.be/stops/308611"], ["https://data.delijn.be/stops/300945", "https://data.delijn.be/stops/301015"], ["https://data.delijn.be/stops/400782", "https://data.delijn.be/stops/409647"], ["https://data.delijn.be/stops/501256", "https://data.delijn.be/stops/506250"], ["https://data.delijn.be/stops/501388", "https://data.delijn.be/stops/506500"], ["https://data.delijn.be/stops/304423", "https://data.delijn.be/stops/304424"], ["https://data.delijn.be/stops/502757", "https://data.delijn.be/stops/503326"], ["https://data.delijn.be/stops/400032", "https://data.delijn.be/stops/400037"], ["https://data.delijn.be/stops/501050", "https://data.delijn.be/stops/502728"], ["https://data.delijn.be/stops/407514", "https://data.delijn.be/stops/407515"], ["https://data.delijn.be/stops/106733", "https://data.delijn.be/stops/106773"], ["https://data.delijn.be/stops/106858", "https://data.delijn.be/stops/109621"], ["https://data.delijn.be/stops/503440", "https://data.delijn.be/stops/503442"], ["https://data.delijn.be/stops/101856", "https://data.delijn.be/stops/101860"], ["https://data.delijn.be/stops/201874", "https://data.delijn.be/stops/201876"], ["https://data.delijn.be/stops/401270", "https://data.delijn.be/stops/401273"], ["https://data.delijn.be/stops/210116", "https://data.delijn.be/stops/211115"], ["https://data.delijn.be/stops/105687", "https://data.delijn.be/stops/105689"], ["https://data.delijn.be/stops/200851", "https://data.delijn.be/stops/200893"], ["https://data.delijn.be/stops/503541", "https://data.delijn.be/stops/503580"], ["https://data.delijn.be/stops/503170", "https://data.delijn.be/stops/508172"], ["https://data.delijn.be/stops/508402", "https://data.delijn.be/stops/510019"], ["https://data.delijn.be/stops/105668", "https://data.delijn.be/stops/106044"], ["https://data.delijn.be/stops/108753", "https://data.delijn.be/stops/108754"], ["https://data.delijn.be/stops/104046", "https://data.delijn.be/stops/306589"], ["https://data.delijn.be/stops/503120", "https://data.delijn.be/stops/504996"], ["https://data.delijn.be/stops/306201", "https://data.delijn.be/stops/306202"], ["https://data.delijn.be/stops/202843", "https://data.delijn.be/stops/208425"], ["https://data.delijn.be/stops/200205", "https://data.delijn.be/stops/201255"], ["https://data.delijn.be/stops/204452", "https://data.delijn.be/stops/205344"], ["https://data.delijn.be/stops/308108", "https://data.delijn.be/stops/308111"], ["https://data.delijn.be/stops/204399", "https://data.delijn.be/stops/204768"], ["https://data.delijn.be/stops/300596", "https://data.delijn.be/stops/303021"], ["https://data.delijn.be/stops/106106", "https://data.delijn.be/stops/106124"], ["https://data.delijn.be/stops/301231", "https://data.delijn.be/stops/306325"], ["https://data.delijn.be/stops/302798", "https://data.delijn.be/stops/302799"], ["https://data.delijn.be/stops/302214", "https://data.delijn.be/stops/302245"], ["https://data.delijn.be/stops/307651", "https://data.delijn.be/stops/307694"], ["https://data.delijn.be/stops/408800", "https://data.delijn.be/stops/408829"], ["https://data.delijn.be/stops/408073", "https://data.delijn.be/stops/410129"], ["https://data.delijn.be/stops/302462", "https://data.delijn.be/stops/308830"], ["https://data.delijn.be/stops/207585", "https://data.delijn.be/stops/207841"], ["https://data.delijn.be/stops/200214", "https://data.delijn.be/stops/201266"], ["https://data.delijn.be/stops/209585", "https://data.delijn.be/stops/209677"], ["https://data.delijn.be/stops/106152", "https://data.delijn.be/stops/106153"], ["https://data.delijn.be/stops/103727", "https://data.delijn.be/stops/103728"], ["https://data.delijn.be/stops/109038", "https://data.delijn.be/stops/109079"], ["https://data.delijn.be/stops/304164", "https://data.delijn.be/stops/307558"], ["https://data.delijn.be/stops/101877", "https://data.delijn.be/stops/305624"], ["https://data.delijn.be/stops/405037", "https://data.delijn.be/stops/405055"], ["https://data.delijn.be/stops/504333", "https://data.delijn.be/stops/504341"], ["https://data.delijn.be/stops/201477", "https://data.delijn.be/stops/210057"], ["https://data.delijn.be/stops/104588", "https://data.delijn.be/stops/106413"], ["https://data.delijn.be/stops/505550", "https://data.delijn.be/stops/507175"], ["https://data.delijn.be/stops/502796", "https://data.delijn.be/stops/508344"], ["https://data.delijn.be/stops/401166", "https://data.delijn.be/stops/401167"], ["https://data.delijn.be/stops/205986", "https://data.delijn.be/stops/206003"], ["https://data.delijn.be/stops/302142", "https://data.delijn.be/stops/306272"], ["https://data.delijn.be/stops/108982", "https://data.delijn.be/stops/109689"], ["https://data.delijn.be/stops/405323", "https://data.delijn.be/stops/405325"], ["https://data.delijn.be/stops/305197", "https://data.delijn.be/stops/308048"], ["https://data.delijn.be/stops/101828", "https://data.delijn.be/stops/106997"], ["https://data.delijn.be/stops/202755", "https://data.delijn.be/stops/203311"], ["https://data.delijn.be/stops/301978", "https://data.delijn.be/stops/301979"], ["https://data.delijn.be/stops/204722", "https://data.delijn.be/stops/205721"], ["https://data.delijn.be/stops/307622", "https://data.delijn.be/stops/307623"], ["https://data.delijn.be/stops/108333", "https://data.delijn.be/stops/109333"], ["https://data.delijn.be/stops/508259", "https://data.delijn.be/stops/508749"], ["https://data.delijn.be/stops/104713", "https://data.delijn.be/stops/108168"], ["https://data.delijn.be/stops/504276", "https://data.delijn.be/stops/508952"], ["https://data.delijn.be/stops/406576", "https://data.delijn.be/stops/406577"], ["https://data.delijn.be/stops/209552", "https://data.delijn.be/stops/209553"], ["https://data.delijn.be/stops/209116", "https://data.delijn.be/stops/209336"], ["https://data.delijn.be/stops/404141", "https://data.delijn.be/stops/405915"], ["https://data.delijn.be/stops/509121", "https://data.delijn.be/stops/509124"], ["https://data.delijn.be/stops/303719", "https://data.delijn.be/stops/303721"], ["https://data.delijn.be/stops/207985", "https://data.delijn.be/stops/207986"], ["https://data.delijn.be/stops/208526", "https://data.delijn.be/stops/209082"], ["https://data.delijn.be/stops/204436", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/207671", "https://data.delijn.be/stops/209618"], ["https://data.delijn.be/stops/202468", "https://data.delijn.be/stops/203468"], ["https://data.delijn.be/stops/207212", "https://data.delijn.be/stops/207213"], ["https://data.delijn.be/stops/409387", "https://data.delijn.be/stops/410167"], ["https://data.delijn.be/stops/206209", "https://data.delijn.be/stops/207818"], ["https://data.delijn.be/stops/403964", "https://data.delijn.be/stops/403979"], ["https://data.delijn.be/stops/201088", "https://data.delijn.be/stops/203961"], ["https://data.delijn.be/stops/204920", "https://data.delijn.be/stops/205920"], ["https://data.delijn.be/stops/208040", "https://data.delijn.be/stops/208046"], ["https://data.delijn.be/stops/105971", "https://data.delijn.be/stops/107140"], ["https://data.delijn.be/stops/506088", "https://data.delijn.be/stops/507739"], ["https://data.delijn.be/stops/406270", "https://data.delijn.be/stops/406271"], ["https://data.delijn.be/stops/404330", "https://data.delijn.be/stops/404331"], ["https://data.delijn.be/stops/301456", "https://data.delijn.be/stops/308076"], ["https://data.delijn.be/stops/302810", "https://data.delijn.be/stops/304030"], ["https://data.delijn.be/stops/109005", "https://data.delijn.be/stops/109010"], ["https://data.delijn.be/stops/502493", "https://data.delijn.be/stops/505744"], ["https://data.delijn.be/stops/204388", "https://data.delijn.be/stops/205388"], ["https://data.delijn.be/stops/502271", "https://data.delijn.be/stops/507271"], ["https://data.delijn.be/stops/106188", "https://data.delijn.be/stops/107439"], ["https://data.delijn.be/stops/406964", "https://data.delijn.be/stops/406966"], ["https://data.delijn.be/stops/301684", "https://data.delijn.be/stops/306294"], ["https://data.delijn.be/stops/108667", "https://data.delijn.be/stops/306631"], ["https://data.delijn.be/stops/504245", "https://data.delijn.be/stops/509245"], ["https://data.delijn.be/stops/502057", "https://data.delijn.be/stops/507050"], ["https://data.delijn.be/stops/202115", "https://data.delijn.be/stops/204773"], ["https://data.delijn.be/stops/208583", "https://data.delijn.be/stops/208841"], ["https://data.delijn.be/stops/300954", "https://data.delijn.be/stops/308854"], ["https://data.delijn.be/stops/202176", "https://data.delijn.be/stops/202179"], ["https://data.delijn.be/stops/504664", "https://data.delijn.be/stops/505307"], ["https://data.delijn.be/stops/204541", "https://data.delijn.be/stops/205668"], ["https://data.delijn.be/stops/106428", "https://data.delijn.be/stops/106562"], ["https://data.delijn.be/stops/301351", "https://data.delijn.be/stops/307886"], ["https://data.delijn.be/stops/402260", "https://data.delijn.be/stops/402261"], ["https://data.delijn.be/stops/102441", "https://data.delijn.be/stops/102601"], ["https://data.delijn.be/stops/102399", "https://data.delijn.be/stops/107855"], ["https://data.delijn.be/stops/201893", "https://data.delijn.be/stops/211113"], ["https://data.delijn.be/stops/106191", "https://data.delijn.be/stops/107441"], ["https://data.delijn.be/stops/103677", "https://data.delijn.be/stops/103731"], ["https://data.delijn.be/stops/105041", "https://data.delijn.be/stops/105042"], ["https://data.delijn.be/stops/503764", "https://data.delijn.be/stops/508774"], ["https://data.delijn.be/stops/201104", "https://data.delijn.be/stops/201360"], ["https://data.delijn.be/stops/202341", "https://data.delijn.be/stops/203448"], ["https://data.delijn.be/stops/305547", "https://data.delijn.be/stops/307184"], ["https://data.delijn.be/stops/102071", "https://data.delijn.be/stops/106535"], ["https://data.delijn.be/stops/406186", "https://data.delijn.be/stops/406452"], ["https://data.delijn.be/stops/307833", "https://data.delijn.be/stops/308278"], ["https://data.delijn.be/stops/202420", "https://data.delijn.be/stops/203418"], ["https://data.delijn.be/stops/101177", "https://data.delijn.be/stops/106784"], ["https://data.delijn.be/stops/504752", "https://data.delijn.be/stops/508171"], ["https://data.delijn.be/stops/101932", "https://data.delijn.be/stops/106252"], ["https://data.delijn.be/stops/201925", "https://data.delijn.be/stops/206589"], ["https://data.delijn.be/stops/101528", "https://data.delijn.be/stops/101953"], ["https://data.delijn.be/stops/401899", "https://data.delijn.be/stops/401904"], ["https://data.delijn.be/stops/506411", "https://data.delijn.be/stops/506416"], ["https://data.delijn.be/stops/404586", "https://data.delijn.be/stops/407869"], ["https://data.delijn.be/stops/505845", "https://data.delijn.be/stops/505846"], ["https://data.delijn.be/stops/404145", "https://data.delijn.be/stops/404169"], ["https://data.delijn.be/stops/504644", "https://data.delijn.be/stops/509644"], ["https://data.delijn.be/stops/308513", "https://data.delijn.be/stops/308690"], ["https://data.delijn.be/stops/404225", "https://data.delijn.be/stops/404231"], ["https://data.delijn.be/stops/106942", "https://data.delijn.be/stops/108697"], ["https://data.delijn.be/stops/107222", "https://data.delijn.be/stops/107223"], ["https://data.delijn.be/stops/200451", "https://data.delijn.be/stops/201451"], ["https://data.delijn.be/stops/308448", "https://data.delijn.be/stops/308449"], ["https://data.delijn.be/stops/306717", "https://data.delijn.be/stops/306719"], ["https://data.delijn.be/stops/205586", "https://data.delijn.be/stops/205597"], ["https://data.delijn.be/stops/506329", "https://data.delijn.be/stops/506351"], ["https://data.delijn.be/stops/305424", "https://data.delijn.be/stops/305508"], ["https://data.delijn.be/stops/403025", "https://data.delijn.be/stops/403133"], ["https://data.delijn.be/stops/204912", "https://data.delijn.be/stops/205912"], ["https://data.delijn.be/stops/206462", "https://data.delijn.be/stops/207462"], ["https://data.delijn.be/stops/209118", "https://data.delijn.be/stops/218008"], ["https://data.delijn.be/stops/502404", "https://data.delijn.be/stops/507404"], ["https://data.delijn.be/stops/507620", "https://data.delijn.be/stops/508089"], ["https://data.delijn.be/stops/202722", "https://data.delijn.be/stops/203722"], ["https://data.delijn.be/stops/300314", "https://data.delijn.be/stops/301689"], ["https://data.delijn.be/stops/401049", "https://data.delijn.be/stops/401134"], ["https://data.delijn.be/stops/400489", "https://data.delijn.be/stops/400948"], ["https://data.delijn.be/stops/406719", "https://data.delijn.be/stops/407796"], ["https://data.delijn.be/stops/405826", "https://data.delijn.be/stops/409422"], ["https://data.delijn.be/stops/210092", "https://data.delijn.be/stops/211092"], ["https://data.delijn.be/stops/304488", "https://data.delijn.be/stops/304491"], ["https://data.delijn.be/stops/504168", "https://data.delijn.be/stops/509194"], ["https://data.delijn.be/stops/405801", "https://data.delijn.be/stops/406995"], ["https://data.delijn.be/stops/205334", "https://data.delijn.be/stops/205817"], ["https://data.delijn.be/stops/106768", "https://data.delijn.be/stops/107519"], ["https://data.delijn.be/stops/407337", "https://data.delijn.be/stops/407761"], ["https://data.delijn.be/stops/102411", "https://data.delijn.be/stops/103304"], ["https://data.delijn.be/stops/106689", "https://data.delijn.be/stops/109390"], ["https://data.delijn.be/stops/504690", "https://data.delijn.be/stops/504692"], ["https://data.delijn.be/stops/301506", "https://data.delijn.be/stops/301508"], ["https://data.delijn.be/stops/301547", "https://data.delijn.be/stops/305166"], ["https://data.delijn.be/stops/402938", "https://data.delijn.be/stops/405905"], ["https://data.delijn.be/stops/103298", "https://data.delijn.be/stops/105086"], ["https://data.delijn.be/stops/200014", "https://data.delijn.be/stops/201016"], ["https://data.delijn.be/stops/304637", "https://data.delijn.be/stops/305978"], ["https://data.delijn.be/stops/109934", "https://data.delijn.be/stops/109935"], ["https://data.delijn.be/stops/302878", "https://data.delijn.be/stops/307056"], ["https://data.delijn.be/stops/302895", "https://data.delijn.be/stops/306098"], ["https://data.delijn.be/stops/200385", "https://data.delijn.be/stops/209958"], ["https://data.delijn.be/stops/206829", "https://data.delijn.be/stops/207250"], ["https://data.delijn.be/stops/502524", "https://data.delijn.be/stops/502526"], ["https://data.delijn.be/stops/105966", "https://data.delijn.be/stops/105968"], ["https://data.delijn.be/stops/405775", "https://data.delijn.be/stops/409735"], ["https://data.delijn.be/stops/104502", "https://data.delijn.be/stops/107931"], ["https://data.delijn.be/stops/208299", "https://data.delijn.be/stops/208317"], ["https://data.delijn.be/stops/208091", "https://data.delijn.be/stops/209040"], ["https://data.delijn.be/stops/200368", "https://data.delijn.be/stops/200452"], ["https://data.delijn.be/stops/300125", "https://data.delijn.be/stops/306867"], ["https://data.delijn.be/stops/206680", "https://data.delijn.be/stops/208102"], ["https://data.delijn.be/stops/103263", "https://data.delijn.be/stops/205631"], ["https://data.delijn.be/stops/502079", "https://data.delijn.be/stops/507076"], ["https://data.delijn.be/stops/108831", "https://data.delijn.be/stops/108832"], ["https://data.delijn.be/stops/101080", "https://data.delijn.be/stops/105105"], ["https://data.delijn.be/stops/502426", "https://data.delijn.be/stops/507367"], ["https://data.delijn.be/stops/401441", "https://data.delijn.be/stops/404282"], ["https://data.delijn.be/stops/408586", "https://data.delijn.be/stops/408587"], ["https://data.delijn.be/stops/302427", "https://data.delijn.be/stops/302451"], ["https://data.delijn.be/stops/201693", "https://data.delijn.be/stops/203980"], ["https://data.delijn.be/stops/104936", "https://data.delijn.be/stops/104937"], ["https://data.delijn.be/stops/502417", "https://data.delijn.be/stops/502418"], ["https://data.delijn.be/stops/102898", "https://data.delijn.be/stops/106758"], ["https://data.delijn.be/stops/208184", "https://data.delijn.be/stops/209184"], ["https://data.delijn.be/stops/407746", "https://data.delijn.be/stops/407757"], ["https://data.delijn.be/stops/108807", "https://data.delijn.be/stops/109664"], ["https://data.delijn.be/stops/505385", "https://data.delijn.be/stops/505847"], ["https://data.delijn.be/stops/104741", "https://data.delijn.be/stops/104759"], ["https://data.delijn.be/stops/201868", "https://data.delijn.be/stops/202016"], ["https://data.delijn.be/stops/505786", "https://data.delijn.be/stops/509458"], ["https://data.delijn.be/stops/407130", "https://data.delijn.be/stops/407327"], ["https://data.delijn.be/stops/202915", "https://data.delijn.be/stops/218503"], ["https://data.delijn.be/stops/102412", "https://data.delijn.be/stops/104129"], ["https://data.delijn.be/stops/501028", "https://data.delijn.be/stops/506058"], ["https://data.delijn.be/stops/400743", "https://data.delijn.be/stops/400938"], ["https://data.delijn.be/stops/405531", "https://data.delijn.be/stops/405534"], ["https://data.delijn.be/stops/303613", "https://data.delijn.be/stops/307194"], ["https://data.delijn.be/stops/504158", "https://data.delijn.be/stops/504180"], ["https://data.delijn.be/stops/408108", "https://data.delijn.be/stops/408109"], ["https://data.delijn.be/stops/305736", "https://data.delijn.be/stops/306329"], ["https://data.delijn.be/stops/201762", "https://data.delijn.be/stops/208847"], ["https://data.delijn.be/stops/103145", "https://data.delijn.be/stops/109442"], ["https://data.delijn.be/stops/503057", "https://data.delijn.be/stops/509846"], ["https://data.delijn.be/stops/207756", "https://data.delijn.be/stops/207795"], ["https://data.delijn.be/stops/505284", "https://data.delijn.be/stops/508436"], ["https://data.delijn.be/stops/502656", "https://data.delijn.be/stops/507663"], ["https://data.delijn.be/stops/105001", "https://data.delijn.be/stops/105057"], ["https://data.delijn.be/stops/406063", "https://data.delijn.be/stops/406089"], ["https://data.delijn.be/stops/304763", "https://data.delijn.be/stops/305250"], ["https://data.delijn.be/stops/508601", "https://data.delijn.be/stops/508864"], ["https://data.delijn.be/stops/102201", "https://data.delijn.be/stops/102248"], ["https://data.delijn.be/stops/102528", "https://data.delijn.be/stops/405710"], ["https://data.delijn.be/stops/105162", "https://data.delijn.be/stops/105163"], ["https://data.delijn.be/stops/103340", "https://data.delijn.be/stops/105809"], ["https://data.delijn.be/stops/507421", "https://data.delijn.be/stops/507644"], ["https://data.delijn.be/stops/400768", "https://data.delijn.be/stops/405258"], ["https://data.delijn.be/stops/405142", "https://data.delijn.be/stops/410165"], ["https://data.delijn.be/stops/200965", "https://data.delijn.be/stops/201269"], ["https://data.delijn.be/stops/208209", "https://data.delijn.be/stops/208838"], ["https://data.delijn.be/stops/404164", "https://data.delijn.be/stops/404172"], ["https://data.delijn.be/stops/209077", "https://data.delijn.be/stops/218029"], ["https://data.delijn.be/stops/502219", "https://data.delijn.be/stops/507216"], ["https://data.delijn.be/stops/106143", "https://data.delijn.be/stops/106145"], ["https://data.delijn.be/stops/501068", "https://data.delijn.be/stops/505355"], ["https://data.delijn.be/stops/304588", "https://data.delijn.be/stops/304613"], ["https://data.delijn.be/stops/204095", "https://data.delijn.be/stops/204208"], ["https://data.delijn.be/stops/307012", "https://data.delijn.be/stops/308358"], ["https://data.delijn.be/stops/504075", "https://data.delijn.be/stops/505573"], ["https://data.delijn.be/stops/201964", "https://data.delijn.be/stops/206787"], ["https://data.delijn.be/stops/305154", "https://data.delijn.be/stops/306881"], ["https://data.delijn.be/stops/108023", "https://data.delijn.be/stops/108024"], ["https://data.delijn.be/stops/205748", "https://data.delijn.be/stops/205757"], ["https://data.delijn.be/stops/502461", "https://data.delijn.be/stops/507461"], ["https://data.delijn.be/stops/408537", "https://data.delijn.be/stops/408817"], ["https://data.delijn.be/stops/101833", "https://data.delijn.be/stops/107089"], ["https://data.delijn.be/stops/201522", "https://data.delijn.be/stops/210131"], ["https://data.delijn.be/stops/400387", "https://data.delijn.be/stops/400404"], ["https://data.delijn.be/stops/507357", "https://data.delijn.be/stops/507675"], ["https://data.delijn.be/stops/502270", "https://data.delijn.be/stops/507270"], ["https://data.delijn.be/stops/201343", "https://data.delijn.be/stops/210106"], ["https://data.delijn.be/stops/504509", "https://data.delijn.be/stops/509509"], ["https://data.delijn.be/stops/304968", "https://data.delijn.be/stops/304973"], ["https://data.delijn.be/stops/204338", "https://data.delijn.be/stops/205300"], ["https://data.delijn.be/stops/503404", "https://data.delijn.be/stops/503534"], ["https://data.delijn.be/stops/508293", "https://data.delijn.be/stops/508436"], ["https://data.delijn.be/stops/105557", "https://data.delijn.be/stops/105559"], ["https://data.delijn.be/stops/405201", "https://data.delijn.be/stops/405221"], ["https://data.delijn.be/stops/407612", "https://data.delijn.be/stops/407689"], ["https://data.delijn.be/stops/207441", "https://data.delijn.be/stops/207442"], ["https://data.delijn.be/stops/305423", "https://data.delijn.be/stops/305434"], ["https://data.delijn.be/stops/402171", "https://data.delijn.be/stops/402224"], ["https://data.delijn.be/stops/301676", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/502301", "https://data.delijn.be/stops/505680"], ["https://data.delijn.be/stops/401507", "https://data.delijn.be/stops/401893"], ["https://data.delijn.be/stops/105327", "https://data.delijn.be/stops/105328"], ["https://data.delijn.be/stops/407694", "https://data.delijn.be/stops/407695"], ["https://data.delijn.be/stops/302626", "https://data.delijn.be/stops/302632"], ["https://data.delijn.be/stops/202240", "https://data.delijn.be/stops/206870"], ["https://data.delijn.be/stops/300563", "https://data.delijn.be/stops/307857"], ["https://data.delijn.be/stops/503833", "https://data.delijn.be/stops/508830"], ["https://data.delijn.be/stops/402759", "https://data.delijn.be/stops/402768"], ["https://data.delijn.be/stops/201862", "https://data.delijn.be/stops/210034"], ["https://data.delijn.be/stops/207010", "https://data.delijn.be/stops/216001"], ["https://data.delijn.be/stops/105739", "https://data.delijn.be/stops/109835"], ["https://data.delijn.be/stops/204631", "https://data.delijn.be/stops/205614"], ["https://data.delijn.be/stops/106526", "https://data.delijn.be/stops/107098"], ["https://data.delijn.be/stops/207776", "https://data.delijn.be/stops/207778"], ["https://data.delijn.be/stops/200683", "https://data.delijn.be/stops/209651"], ["https://data.delijn.be/stops/205597", "https://data.delijn.be/stops/205797"], ["https://data.delijn.be/stops/206379", "https://data.delijn.be/stops/207380"], ["https://data.delijn.be/stops/105476", "https://data.delijn.be/stops/105682"], ["https://data.delijn.be/stops/108338", "https://data.delijn.be/stops/108341"], ["https://data.delijn.be/stops/501450", "https://data.delijn.be/stops/501452"], ["https://data.delijn.be/stops/101652", "https://data.delijn.be/stops/105501"], ["https://data.delijn.be/stops/407112", "https://data.delijn.be/stops/407277"], ["https://data.delijn.be/stops/301654", "https://data.delijn.be/stops/307754"], ["https://data.delijn.be/stops/206242", "https://data.delijn.be/stops/207405"], ["https://data.delijn.be/stops/404418", "https://data.delijn.be/stops/404419"], ["https://data.delijn.be/stops/102212", "https://data.delijn.be/stops/102224"], ["https://data.delijn.be/stops/408668", "https://data.delijn.be/stops/408762"], ["https://data.delijn.be/stops/206146", "https://data.delijn.be/stops/207092"], ["https://data.delijn.be/stops/206127", "https://data.delijn.be/stops/207084"], ["https://data.delijn.be/stops/201625", "https://data.delijn.be/stops/204984"], ["https://data.delijn.be/stops/206120", "https://data.delijn.be/stops/207068"], ["https://data.delijn.be/stops/502816", "https://data.delijn.be/stops/507681"], ["https://data.delijn.be/stops/401578", "https://data.delijn.be/stops/402280"], ["https://data.delijn.be/stops/502199", "https://data.delijn.be/stops/507199"], ["https://data.delijn.be/stops/402894", "https://data.delijn.be/stops/402896"], ["https://data.delijn.be/stops/504546", "https://data.delijn.be/stops/504701"], ["https://data.delijn.be/stops/300033", "https://data.delijn.be/stops/306089"], ["https://data.delijn.be/stops/301191", "https://data.delijn.be/stops/301265"], ["https://data.delijn.be/stops/301871", "https://data.delijn.be/stops/301875"], ["https://data.delijn.be/stops/401423", "https://data.delijn.be/stops/401596"], ["https://data.delijn.be/stops/504846", "https://data.delijn.be/stops/505107"], ["https://data.delijn.be/stops/106176", "https://data.delijn.be/stops/106178"], ["https://data.delijn.be/stops/505427", "https://data.delijn.be/stops/509474"], ["https://data.delijn.be/stops/403571", "https://data.delijn.be/stops/403572"], ["https://data.delijn.be/stops/402208", "https://data.delijn.be/stops/402331"], ["https://data.delijn.be/stops/101797", "https://data.delijn.be/stops/301915"], ["https://data.delijn.be/stops/303200", "https://data.delijn.be/stops/303202"], ["https://data.delijn.be/stops/300380", "https://data.delijn.be/stops/300381"], ["https://data.delijn.be/stops/405274", "https://data.delijn.be/stops/405275"], ["https://data.delijn.be/stops/206704", "https://data.delijn.be/stops/206993"], ["https://data.delijn.be/stops/102760", "https://data.delijn.be/stops/102813"], ["https://data.delijn.be/stops/304992", "https://data.delijn.be/stops/305008"], ["https://data.delijn.be/stops/203859", "https://data.delijn.be/stops/208714"], ["https://data.delijn.be/stops/303560", "https://data.delijn.be/stops/308618"], ["https://data.delijn.be/stops/302104", "https://data.delijn.be/stops/303515"], ["https://data.delijn.be/stops/200460", "https://data.delijn.be/stops/200678"], ["https://data.delijn.be/stops/405564", "https://data.delijn.be/stops/405566"], ["https://data.delijn.be/stops/102643", "https://data.delijn.be/stops/205650"], ["https://data.delijn.be/stops/404316", "https://data.delijn.be/stops/404317"], ["https://data.delijn.be/stops/103757", "https://data.delijn.be/stops/109673"], ["https://data.delijn.be/stops/206366", "https://data.delijn.be/stops/207338"], ["https://data.delijn.be/stops/104346", "https://data.delijn.be/stops/105800"], ["https://data.delijn.be/stops/301697", "https://data.delijn.be/stops/301722"], ["https://data.delijn.be/stops/400369", "https://data.delijn.be/stops/400416"], ["https://data.delijn.be/stops/400094", "https://data.delijn.be/stops/401976"], ["https://data.delijn.be/stops/300661", "https://data.delijn.be/stops/301917"], ["https://data.delijn.be/stops/201182", "https://data.delijn.be/stops/203323"], ["https://data.delijn.be/stops/103493", "https://data.delijn.be/stops/103499"], ["https://data.delijn.be/stops/503989", "https://data.delijn.be/stops/505713"], ["https://data.delijn.be/stops/307521", "https://data.delijn.be/stops/307854"], ["https://data.delijn.be/stops/105128", "https://data.delijn.be/stops/105196"], ["https://data.delijn.be/stops/104601", "https://data.delijn.be/stops/106823"], ["https://data.delijn.be/stops/400256", "https://data.delijn.be/stops/404827"], ["https://data.delijn.be/stops/502312", "https://data.delijn.be/stops/502316"], ["https://data.delijn.be/stops/300890", "https://data.delijn.be/stops/303648"], ["https://data.delijn.be/stops/406993", "https://data.delijn.be/stops/409024"], ["https://data.delijn.be/stops/501684", "https://data.delijn.be/stops/509499"], ["https://data.delijn.be/stops/502670", "https://data.delijn.be/stops/507385"], ["https://data.delijn.be/stops/208180", "https://data.delijn.be/stops/209180"], ["https://data.delijn.be/stops/307939", "https://data.delijn.be/stops/307940"], ["https://data.delijn.be/stops/406153", "https://data.delijn.be/stops/406270"], ["https://data.delijn.be/stops/202435", "https://data.delijn.be/stops/210434"], ["https://data.delijn.be/stops/103041", "https://data.delijn.be/stops/107070"], ["https://data.delijn.be/stops/200927", "https://data.delijn.be/stops/219505"], ["https://data.delijn.be/stops/302309", "https://data.delijn.be/stops/302331"], ["https://data.delijn.be/stops/502136", "https://data.delijn.be/stops/507136"], ["https://data.delijn.be/stops/303536", "https://data.delijn.be/stops/307800"], ["https://data.delijn.be/stops/208325", "https://data.delijn.be/stops/507949"], ["https://data.delijn.be/stops/401540", "https://data.delijn.be/stops/407150"], ["https://data.delijn.be/stops/400650", "https://data.delijn.be/stops/400652"], ["https://data.delijn.be/stops/206996", "https://data.delijn.be/stops/207255"], ["https://data.delijn.be/stops/501006", "https://data.delijn.be/stops/501505"], ["https://data.delijn.be/stops/101920", "https://data.delijn.be/stops/102125"], ["https://data.delijn.be/stops/101048", "https://data.delijn.be/stops/205606"], ["https://data.delijn.be/stops/206344", "https://data.delijn.be/stops/207366"], ["https://data.delijn.be/stops/105891", "https://data.delijn.be/stops/105907"], ["https://data.delijn.be/stops/302018", "https://data.delijn.be/stops/302023"], ["https://data.delijn.be/stops/201663", "https://data.delijn.be/stops/202319"], ["https://data.delijn.be/stops/303344", "https://data.delijn.be/stops/303345"], ["https://data.delijn.be/stops/204393", "https://data.delijn.be/stops/205401"], ["https://data.delijn.be/stops/503248", "https://data.delijn.be/stops/503518"], ["https://data.delijn.be/stops/201734", "https://data.delijn.be/stops/210103"], ["https://data.delijn.be/stops/504436", "https://data.delijn.be/stops/505791"], ["https://data.delijn.be/stops/103142", "https://data.delijn.be/stops/103728"], ["https://data.delijn.be/stops/302921", "https://data.delijn.be/stops/304563"], ["https://data.delijn.be/stops/301898", "https://data.delijn.be/stops/301899"], ["https://data.delijn.be/stops/103146", "https://data.delijn.be/stops/106295"], ["https://data.delijn.be/stops/506017", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/405264", "https://data.delijn.be/stops/410087"], ["https://data.delijn.be/stops/403909", "https://data.delijn.be/stops/403973"], ["https://data.delijn.be/stops/501530", "https://data.delijn.be/stops/501545"], ["https://data.delijn.be/stops/102660", "https://data.delijn.be/stops/109795"], ["https://data.delijn.be/stops/402114", "https://data.delijn.be/stops/406810"], ["https://data.delijn.be/stops/305726", "https://data.delijn.be/stops/305728"], ["https://data.delijn.be/stops/206306", "https://data.delijn.be/stops/206880"], ["https://data.delijn.be/stops/508427", "https://data.delijn.be/stops/509939"], ["https://data.delijn.be/stops/400076", "https://data.delijn.be/stops/408423"], ["https://data.delijn.be/stops/208370", "https://data.delijn.be/stops/209369"], ["https://data.delijn.be/stops/401467", "https://data.delijn.be/stops/401487"], ["https://data.delijn.be/stops/407400", "https://data.delijn.be/stops/407499"], ["https://data.delijn.be/stops/301868", "https://data.delijn.be/stops/301876"], ["https://data.delijn.be/stops/305242", "https://data.delijn.be/stops/305609"], ["https://data.delijn.be/stops/500117", "https://data.delijn.be/stops/505671"], ["https://data.delijn.be/stops/404649", "https://data.delijn.be/stops/409556"], ["https://data.delijn.be/stops/300869", "https://data.delijn.be/stops/302241"], ["https://data.delijn.be/stops/301658", "https://data.delijn.be/stops/306260"], ["https://data.delijn.be/stops/403831", "https://data.delijn.be/stops/403844"], ["https://data.delijn.be/stops/207680", "https://data.delijn.be/stops/208817"], ["https://data.delijn.be/stops/407458", "https://data.delijn.be/stops/407460"], ["https://data.delijn.be/stops/108250", "https://data.delijn.be/stops/108255"], ["https://data.delijn.be/stops/405870", "https://data.delijn.be/stops/409423"], ["https://data.delijn.be/stops/504406", "https://data.delijn.be/stops/509434"], ["https://data.delijn.be/stops/106099", "https://data.delijn.be/stops/106112"], ["https://data.delijn.be/stops/306665", "https://data.delijn.be/stops/306666"], ["https://data.delijn.be/stops/400930", "https://data.delijn.be/stops/400931"], ["https://data.delijn.be/stops/405048", "https://data.delijn.be/stops/405049"], ["https://data.delijn.be/stops/202979", "https://data.delijn.be/stops/203979"], ["https://data.delijn.be/stops/302971", "https://data.delijn.be/stops/307096"], ["https://data.delijn.be/stops/101519", "https://data.delijn.be/stops/109053"], ["https://data.delijn.be/stops/304667", "https://data.delijn.be/stops/304676"], ["https://data.delijn.be/stops/503655", "https://data.delijn.be/stops/508953"], ["https://data.delijn.be/stops/204335", "https://data.delijn.be/stops/204446"], ["https://data.delijn.be/stops/101191", "https://data.delijn.be/stops/205651"], ["https://data.delijn.be/stops/208583", "https://data.delijn.be/stops/209583"], ["https://data.delijn.be/stops/105983", "https://data.delijn.be/stops/105985"], ["https://data.delijn.be/stops/502278", "https://data.delijn.be/stops/507281"], ["https://data.delijn.be/stops/201896", "https://data.delijn.be/stops/211018"], ["https://data.delijn.be/stops/101076", "https://data.delijn.be/stops/101077"], ["https://data.delijn.be/stops/304481", "https://data.delijn.be/stops/304517"], ["https://data.delijn.be/stops/404861", "https://data.delijn.be/stops/404913"], ["https://data.delijn.be/stops/502454", "https://data.delijn.be/stops/509829"], ["https://data.delijn.be/stops/104093", "https://data.delijn.be/stops/406386"], ["https://data.delijn.be/stops/401290", "https://data.delijn.be/stops/401328"], ["https://data.delijn.be/stops/502746", "https://data.delijn.be/stops/505064"], ["https://data.delijn.be/stops/305652", "https://data.delijn.be/stops/307103"], ["https://data.delijn.be/stops/106629", "https://data.delijn.be/stops/106671"], ["https://data.delijn.be/stops/400700", "https://data.delijn.be/stops/400724"], ["https://data.delijn.be/stops/106967", "https://data.delijn.be/stops/106981"], ["https://data.delijn.be/stops/206737", "https://data.delijn.be/stops/207082"], ["https://data.delijn.be/stops/106604", "https://data.delijn.be/stops/106684"], ["https://data.delijn.be/stops/505296", "https://data.delijn.be/stops/505378"], ["https://data.delijn.be/stops/403834", "https://data.delijn.be/stops/405633"], ["https://data.delijn.be/stops/504786", "https://data.delijn.be/stops/505966"], ["https://data.delijn.be/stops/108562", "https://data.delijn.be/stops/109094"], ["https://data.delijn.be/stops/106468", "https://data.delijn.be/stops/106471"], ["https://data.delijn.be/stops/301283", "https://data.delijn.be/stops/301291"], ["https://data.delijn.be/stops/105709", "https://data.delijn.be/stops/105714"], ["https://data.delijn.be/stops/306764", "https://data.delijn.be/stops/306765"], ["https://data.delijn.be/stops/105703", "https://data.delijn.be/stops/106073"], ["https://data.delijn.be/stops/205634", "https://data.delijn.be/stops/205635"], ["https://data.delijn.be/stops/402596", "https://data.delijn.be/stops/402597"], ["https://data.delijn.be/stops/204572", "https://data.delijn.be/stops/205572"], ["https://data.delijn.be/stops/103068", "https://data.delijn.be/stops/105758"], ["https://data.delijn.be/stops/200217", "https://data.delijn.be/stops/201302"], ["https://data.delijn.be/stops/202306", "https://data.delijn.be/stops/203307"], ["https://data.delijn.be/stops/501368", "https://data.delijn.be/stops/506438"], ["https://data.delijn.be/stops/407979", "https://data.delijn.be/stops/408242"], ["https://data.delijn.be/stops/404106", "https://data.delijn.be/stops/408554"], ["https://data.delijn.be/stops/109675", "https://data.delijn.be/stops/109677"], ["https://data.delijn.be/stops/101427", "https://data.delijn.be/stops/101554"], ["https://data.delijn.be/stops/108264", "https://data.delijn.be/stops/108268"], ["https://data.delijn.be/stops/408577", "https://data.delijn.be/stops/408747"], ["https://data.delijn.be/stops/300729", "https://data.delijn.be/stops/302293"], ["https://data.delijn.be/stops/407967", "https://data.delijn.be/stops/408424"], ["https://data.delijn.be/stops/108654", "https://data.delijn.be/stops/306630"], ["https://data.delijn.be/stops/409764", "https://data.delijn.be/stops/409766"], ["https://data.delijn.be/stops/208391", "https://data.delijn.be/stops/208392"], ["https://data.delijn.be/stops/101686", "https://data.delijn.be/stops/101689"], ["https://data.delijn.be/stops/501387", "https://data.delijn.be/stops/506390"], ["https://data.delijn.be/stops/207090", "https://data.delijn.be/stops/207091"], ["https://data.delijn.be/stops/503148", "https://data.delijn.be/stops/504770"], ["https://data.delijn.be/stops/200497", "https://data.delijn.be/stops/211055"], ["https://data.delijn.be/stops/301801", "https://data.delijn.be/stops/301807"], ["https://data.delijn.be/stops/303724", "https://data.delijn.be/stops/303732"], ["https://data.delijn.be/stops/105028", "https://data.delijn.be/stops/105172"], ["https://data.delijn.be/stops/504394", "https://data.delijn.be/stops/509119"], ["https://data.delijn.be/stops/204327", "https://data.delijn.be/stops/205533"], ["https://data.delijn.be/stops/202367", "https://data.delijn.be/stops/203366"], ["https://data.delijn.be/stops/201385", "https://data.delijn.be/stops/202007"], ["https://data.delijn.be/stops/102725", "https://data.delijn.be/stops/105149"], ["https://data.delijn.be/stops/105216", "https://data.delijn.be/stops/109395"], ["https://data.delijn.be/stops/301325", "https://data.delijn.be/stops/301911"], ["https://data.delijn.be/stops/401988", "https://data.delijn.be/stops/403081"], ["https://data.delijn.be/stops/505356", "https://data.delijn.be/stops/507646"], ["https://data.delijn.be/stops/509380", "https://data.delijn.be/stops/509383"], ["https://data.delijn.be/stops/109084", "https://data.delijn.be/stops/109086"], ["https://data.delijn.be/stops/306714", "https://data.delijn.be/stops/306715"], ["https://data.delijn.be/stops/101298", "https://data.delijn.be/stops/105773"], ["https://data.delijn.be/stops/209416", "https://data.delijn.be/stops/209417"], ["https://data.delijn.be/stops/101187", "https://data.delijn.be/stops/102848"], ["https://data.delijn.be/stops/208534", "https://data.delijn.be/stops/209534"], ["https://data.delijn.be/stops/406624", "https://data.delijn.be/stops/406683"], ["https://data.delijn.be/stops/503879", "https://data.delijn.be/stops/508879"], ["https://data.delijn.be/stops/204084", "https://data.delijn.be/stops/205084"], ["https://data.delijn.be/stops/200388", "https://data.delijn.be/stops/201397"], ["https://data.delijn.be/stops/408232", "https://data.delijn.be/stops/408234"], ["https://data.delijn.be/stops/101176", "https://data.delijn.be/stops/101178"], ["https://data.delijn.be/stops/402876", "https://data.delijn.be/stops/306306"], ["https://data.delijn.be/stops/308261", "https://data.delijn.be/stops/308262"], ["https://data.delijn.be/stops/405154", "https://data.delijn.be/stops/405155"], ["https://data.delijn.be/stops/300088", "https://data.delijn.be/stops/306837"], ["https://data.delijn.be/stops/305722", "https://data.delijn.be/stops/305755"], ["https://data.delijn.be/stops/208590", "https://data.delijn.be/stops/305223"], ["https://data.delijn.be/stops/503921", "https://data.delijn.be/stops/508933"], ["https://data.delijn.be/stops/301538", "https://data.delijn.be/stops/301545"], ["https://data.delijn.be/stops/400111", "https://data.delijn.be/stops/400172"], ["https://data.delijn.be/stops/104760", "https://data.delijn.be/stops/105460"], ["https://data.delijn.be/stops/504238", "https://data.delijn.be/stops/508092"], ["https://data.delijn.be/stops/508996", "https://data.delijn.be/stops/509029"], ["https://data.delijn.be/stops/401321", "https://data.delijn.be/stops/406657"], ["https://data.delijn.be/stops/505778", "https://data.delijn.be/stops/508181"], ["https://data.delijn.be/stops/401593", "https://data.delijn.be/stops/401594"], ["https://data.delijn.be/stops/504780", "https://data.delijn.be/stops/504783"], ["https://data.delijn.be/stops/201982", "https://data.delijn.be/stops/202929"], ["https://data.delijn.be/stops/303308", "https://data.delijn.be/stops/303309"], ["https://data.delijn.be/stops/308728", "https://data.delijn.be/stops/308730"], ["https://data.delijn.be/stops/207943", "https://data.delijn.be/stops/208554"], ["https://data.delijn.be/stops/301692", "https://data.delijn.be/stops/303715"], ["https://data.delijn.be/stops/401837", "https://data.delijn.be/stops/406018"], ["https://data.delijn.be/stops/107784", "https://data.delijn.be/stops/207706"], ["https://data.delijn.be/stops/300634", "https://data.delijn.be/stops/306625"], ["https://data.delijn.be/stops/105261", "https://data.delijn.be/stops/105262"], ["https://data.delijn.be/stops/408749", "https://data.delijn.be/stops/408792"], ["https://data.delijn.be/stops/106189", "https://data.delijn.be/stops/107438"], ["https://data.delijn.be/stops/301322", "https://data.delijn.be/stops/306189"], ["https://data.delijn.be/stops/501051", "https://data.delijn.be/stops/507654"], ["https://data.delijn.be/stops/200185", "https://data.delijn.be/stops/201193"], ["https://data.delijn.be/stops/207804", "https://data.delijn.be/stops/208348"], ["https://data.delijn.be/stops/403039", "https://data.delijn.be/stops/404755"], ["https://data.delijn.be/stops/106920", "https://data.delijn.be/stops/107284"], ["https://data.delijn.be/stops/305623", "https://data.delijn.be/stops/305641"], ["https://data.delijn.be/stops/108986", "https://data.delijn.be/stops/108988"], ["https://data.delijn.be/stops/200928", "https://data.delijn.be/stops/203138"], ["https://data.delijn.be/stops/106956", "https://data.delijn.be/stops/107270"], ["https://data.delijn.be/stops/206175", "https://data.delijn.be/stops/206481"], ["https://data.delijn.be/stops/200110", "https://data.delijn.be/stops/202647"], ["https://data.delijn.be/stops/202858", "https://data.delijn.be/stops/208714"], ["https://data.delijn.be/stops/505528", "https://data.delijn.be/stops/505530"], ["https://data.delijn.be/stops/207310", "https://data.delijn.be/stops/207311"], ["https://data.delijn.be/stops/400648", "https://data.delijn.be/stops/400660"], ["https://data.delijn.be/stops/404374", "https://data.delijn.be/stops/404396"], ["https://data.delijn.be/stops/306326", "https://data.delijn.be/stops/308671"], ["https://data.delijn.be/stops/400697", "https://data.delijn.be/stops/409536"], ["https://data.delijn.be/stops/102390", "https://data.delijn.be/stops/103875"], ["https://data.delijn.be/stops/209606", "https://data.delijn.be/stops/209609"], ["https://data.delijn.be/stops/207542", "https://data.delijn.be/stops/209756"], ["https://data.delijn.be/stops/208811", "https://data.delijn.be/stops/208954"], ["https://data.delijn.be/stops/104121", "https://data.delijn.be/stops/106394"], ["https://data.delijn.be/stops/405860", "https://data.delijn.be/stops/409735"], ["https://data.delijn.be/stops/408518", "https://data.delijn.be/stops/408519"], ["https://data.delijn.be/stops/109196", "https://data.delijn.be/stops/109208"], ["https://data.delijn.be/stops/504448", "https://data.delijn.be/stops/504967"], ["https://data.delijn.be/stops/404356", "https://data.delijn.be/stops/404357"], ["https://data.delijn.be/stops/400500", "https://data.delijn.be/stops/400501"], ["https://data.delijn.be/stops/200223", "https://data.delijn.be/stops/201224"], ["https://data.delijn.be/stops/208192", "https://data.delijn.be/stops/208740"], ["https://data.delijn.be/stops/208667", "https://data.delijn.be/stops/209445"], ["https://data.delijn.be/stops/302142", "https://data.delijn.be/stops/305597"], ["https://data.delijn.be/stops/503081", "https://data.delijn.be/stops/508081"], ["https://data.delijn.be/stops/204657", "https://data.delijn.be/stops/204679"], ["https://data.delijn.be/stops/203521", "https://data.delijn.be/stops/203526"], ["https://data.delijn.be/stops/404813", "https://data.delijn.be/stops/404836"], ["https://data.delijn.be/stops/400752", "https://data.delijn.be/stops/400757"], ["https://data.delijn.be/stops/509565", "https://data.delijn.be/stops/509978"], ["https://data.delijn.be/stops/409084", "https://data.delijn.be/stops/409087"], ["https://data.delijn.be/stops/106596", "https://data.delijn.be/stops/107246"], ["https://data.delijn.be/stops/306164", "https://data.delijn.be/stops/307046"], ["https://data.delijn.be/stops/207300", "https://data.delijn.be/stops/207860"], ["https://data.delijn.be/stops/301091", "https://data.delijn.be/stops/306163"], ["https://data.delijn.be/stops/105892", "https://data.delijn.be/stops/105894"], ["https://data.delijn.be/stops/506217", "https://data.delijn.be/stops/506219"], ["https://data.delijn.be/stops/200371", "https://data.delijn.be/stops/201371"], ["https://data.delijn.be/stops/102979", "https://data.delijn.be/stops/106831"], ["https://data.delijn.be/stops/301241", "https://data.delijn.be/stops/301243"], ["https://data.delijn.be/stops/206381", "https://data.delijn.be/stops/207356"], ["https://data.delijn.be/stops/407742", "https://data.delijn.be/stops/407743"], ["https://data.delijn.be/stops/106783", "https://data.delijn.be/stops/106784"], ["https://data.delijn.be/stops/403548", "https://data.delijn.be/stops/403662"], ["https://data.delijn.be/stops/202156", "https://data.delijn.be/stops/203643"], ["https://data.delijn.be/stops/407713", "https://data.delijn.be/stops/407743"], ["https://data.delijn.be/stops/108353", "https://data.delijn.be/stops/108354"], ["https://data.delijn.be/stops/501460", "https://data.delijn.be/stops/501461"], ["https://data.delijn.be/stops/403754", "https://data.delijn.be/stops/403757"], ["https://data.delijn.be/stops/303377", "https://data.delijn.be/stops/303378"], ["https://data.delijn.be/stops/108316", "https://data.delijn.be/stops/108317"], ["https://data.delijn.be/stops/301086", "https://data.delijn.be/stops/306159"], ["https://data.delijn.be/stops/300264", "https://data.delijn.be/stops/303816"], ["https://data.delijn.be/stops/201434", "https://data.delijn.be/stops/201435"], ["https://data.delijn.be/stops/107649", "https://data.delijn.be/stops/108956"], ["https://data.delijn.be/stops/101641", "https://data.delijn.be/stops/107444"], ["https://data.delijn.be/stops/201871", "https://data.delijn.be/stops/203666"], ["https://data.delijn.be/stops/304607", "https://data.delijn.be/stops/304608"], ["https://data.delijn.be/stops/201595", "https://data.delijn.be/stops/201598"], ["https://data.delijn.be/stops/303334", "https://data.delijn.be/stops/307117"], ["https://data.delijn.be/stops/406316", "https://data.delijn.be/stops/406392"], ["https://data.delijn.be/stops/102555", "https://data.delijn.be/stops/104690"], ["https://data.delijn.be/stops/203894", "https://data.delijn.be/stops/208284"], ["https://data.delijn.be/stops/307845", "https://data.delijn.be/stops/307846"], ["https://data.delijn.be/stops/404845", "https://data.delijn.be/stops/409626"], ["https://data.delijn.be/stops/102687", "https://data.delijn.be/stops/102688"], ["https://data.delijn.be/stops/407616", "https://data.delijn.be/stops/407680"], ["https://data.delijn.be/stops/103865", "https://data.delijn.be/stops/105525"], ["https://data.delijn.be/stops/409552", "https://data.delijn.be/stops/409606"], ["https://data.delijn.be/stops/502231", "https://data.delijn.be/stops/505088"], ["https://data.delijn.be/stops/104386", "https://data.delijn.be/stops/104388"], ["https://data.delijn.be/stops/501490", "https://data.delijn.be/stops/506490"], ["https://data.delijn.be/stops/304802", "https://data.delijn.be/stops/307882"], ["https://data.delijn.be/stops/302931", "https://data.delijn.be/stops/304476"], ["https://data.delijn.be/stops/400684", "https://data.delijn.be/stops/406634"], ["https://data.delijn.be/stops/304252", "https://data.delijn.be/stops/304475"], ["https://data.delijn.be/stops/405394", "https://data.delijn.be/stops/409036"], ["https://data.delijn.be/stops/503362", "https://data.delijn.be/stops/508347"], ["https://data.delijn.be/stops/102599", "https://data.delijn.be/stops/109918"], ["https://data.delijn.be/stops/503504", "https://data.delijn.be/stops/508511"], ["https://data.delijn.be/stops/106853", "https://data.delijn.be/stops/109527"], ["https://data.delijn.be/stops/505517", "https://data.delijn.be/stops/505618"], ["https://data.delijn.be/stops/502368", "https://data.delijn.be/stops/502370"], ["https://data.delijn.be/stops/206215", "https://data.delijn.be/stops/207821"], ["https://data.delijn.be/stops/504316", "https://data.delijn.be/stops/509003"], ["https://data.delijn.be/stops/304066", "https://data.delijn.be/stops/308529"], ["https://data.delijn.be/stops/406606", "https://data.delijn.be/stops/406619"], ["https://data.delijn.be/stops/501097", "https://data.delijn.be/stops/502218"], ["https://data.delijn.be/stops/502273", "https://data.delijn.be/stops/507272"], ["https://data.delijn.be/stops/505695", "https://data.delijn.be/stops/505696"], ["https://data.delijn.be/stops/200372", "https://data.delijn.be/stops/201446"], ["https://data.delijn.be/stops/204506", "https://data.delijn.be/stops/205506"], ["https://data.delijn.be/stops/107831", "https://data.delijn.be/stops/107832"], ["https://data.delijn.be/stops/303513", "https://data.delijn.be/stops/303514"], ["https://data.delijn.be/stops/500042", "https://data.delijn.be/stops/502662"], ["https://data.delijn.be/stops/404104", "https://data.delijn.be/stops/404105"], ["https://data.delijn.be/stops/405257", "https://data.delijn.be/stops/408367"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/504558"], ["https://data.delijn.be/stops/208244", "https://data.delijn.be/stops/208854"], ["https://data.delijn.be/stops/107728", "https://data.delijn.be/stops/107729"], ["https://data.delijn.be/stops/404435", "https://data.delijn.be/stops/404552"], ["https://data.delijn.be/stops/406621", "https://data.delijn.be/stops/406631"], ["https://data.delijn.be/stops/200881", "https://data.delijn.be/stops/203284"], ["https://data.delijn.be/stops/301504", "https://data.delijn.be/stops/301507"], ["https://data.delijn.be/stops/503648", "https://data.delijn.be/stops/503665"], ["https://data.delijn.be/stops/507206", "https://data.delijn.be/stops/507208"], ["https://data.delijn.be/stops/405445", "https://data.delijn.be/stops/408705"], ["https://data.delijn.be/stops/204025", "https://data.delijn.be/stops/205025"], ["https://data.delijn.be/stops/202507", "https://data.delijn.be/stops/203490"], ["https://data.delijn.be/stops/104338", "https://data.delijn.be/stops/105909"], ["https://data.delijn.be/stops/208472", "https://data.delijn.be/stops/209471"], ["https://data.delijn.be/stops/503727", "https://data.delijn.be/stops/504873"], ["https://data.delijn.be/stops/206304", "https://data.delijn.be/stops/207305"], ["https://data.delijn.be/stops/503060", "https://data.delijn.be/stops/509957"], ["https://data.delijn.be/stops/200503", "https://data.delijn.be/stops/201453"], ["https://data.delijn.be/stops/202900", "https://data.delijn.be/stops/203903"], ["https://data.delijn.be/stops/203431", "https://data.delijn.be/stops/204559"], ["https://data.delijn.be/stops/501255", "https://data.delijn.be/stops/506255"], ["https://data.delijn.be/stops/209536", "https://data.delijn.be/stops/209537"], ["https://data.delijn.be/stops/301887", "https://data.delijn.be/stops/305973"], ["https://data.delijn.be/stops/102625", "https://data.delijn.be/stops/102909"], ["https://data.delijn.be/stops/105804", "https://data.delijn.be/stops/107424"], ["https://data.delijn.be/stops/104418", "https://data.delijn.be/stops/205337"], ["https://data.delijn.be/stops/300012", "https://data.delijn.be/stops/300739"], ["https://data.delijn.be/stops/307156", "https://data.delijn.be/stops/307158"], ["https://data.delijn.be/stops/400599", "https://data.delijn.be/stops/404543"], ["https://data.delijn.be/stops/402758", "https://data.delijn.be/stops/402764"], ["https://data.delijn.be/stops/502215", "https://data.delijn.be/stops/502508"], ["https://data.delijn.be/stops/101719", "https://data.delijn.be/stops/108971"], ["https://data.delijn.be/stops/503463", "https://data.delijn.be/stops/508970"], ["https://data.delijn.be/stops/401451", "https://data.delijn.be/stops/402038"], ["https://data.delijn.be/stops/405759", "https://data.delijn.be/stops/302842"], ["https://data.delijn.be/stops/207833", "https://data.delijn.be/stops/207965"], ["https://data.delijn.be/stops/501770", "https://data.delijn.be/stops/502222"], ["https://data.delijn.be/stops/407328", "https://data.delijn.be/stops/409512"], ["https://data.delijn.be/stops/204227", "https://data.delijn.be/stops/205227"], ["https://data.delijn.be/stops/504047", "https://data.delijn.be/stops/509049"], ["https://data.delijn.be/stops/208664", "https://data.delijn.be/stops/209129"], ["https://data.delijn.be/stops/201117", "https://data.delijn.be/stops/201118"], ["https://data.delijn.be/stops/505426", "https://data.delijn.be/stops/508150"], ["https://data.delijn.be/stops/103731", "https://data.delijn.be/stops/103732"], ["https://data.delijn.be/stops/504774", "https://data.delijn.be/stops/508566"], ["https://data.delijn.be/stops/308516", "https://data.delijn.be/stops/308520"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/204089"], ["https://data.delijn.be/stops/307225", "https://data.delijn.be/stops/307226"], ["https://data.delijn.be/stops/401768", "https://data.delijn.be/stops/401834"], ["https://data.delijn.be/stops/107093", "https://data.delijn.be/stops/108184"], ["https://data.delijn.be/stops/306781", "https://data.delijn.be/stops/306782"], ["https://data.delijn.be/stops/504646", "https://data.delijn.be/stops/509645"], ["https://data.delijn.be/stops/102169", "https://data.delijn.be/stops/107124"], ["https://data.delijn.be/stops/106636", "https://data.delijn.be/stops/106661"], ["https://data.delijn.be/stops/502578", "https://data.delijn.be/stops/507578"], ["https://data.delijn.be/stops/405288", "https://data.delijn.be/stops/406277"], ["https://data.delijn.be/stops/403920", "https://data.delijn.be/stops/405947"], ["https://data.delijn.be/stops/209298", "https://data.delijn.be/stops/209299"], ["https://data.delijn.be/stops/207190", "https://data.delijn.be/stops/207693"], ["https://data.delijn.be/stops/501220", "https://data.delijn.be/stops/506221"], ["https://data.delijn.be/stops/305298", "https://data.delijn.be/stops/307605"], ["https://data.delijn.be/stops/503681", "https://data.delijn.be/stops/504453"], ["https://data.delijn.be/stops/102109", "https://data.delijn.be/stops/106682"], ["https://data.delijn.be/stops/301740", "https://data.delijn.be/stops/305907"], ["https://data.delijn.be/stops/204422", "https://data.delijn.be/stops/205422"], ["https://data.delijn.be/stops/406498", "https://data.delijn.be/stops/406499"], ["https://data.delijn.be/stops/401025", "https://data.delijn.be/stops/401102"], ["https://data.delijn.be/stops/209260", "https://data.delijn.be/stops/209261"], ["https://data.delijn.be/stops/400807", "https://data.delijn.be/stops/400872"], ["https://data.delijn.be/stops/102463", "https://data.delijn.be/stops/405537"], ["https://data.delijn.be/stops/102502", "https://data.delijn.be/stops/400010"], ["https://data.delijn.be/stops/404904", "https://data.delijn.be/stops/404906"], ["https://data.delijn.be/stops/405568", "https://data.delijn.be/stops/405569"], ["https://data.delijn.be/stops/506284", "https://data.delijn.be/stops/506490"], ["https://data.delijn.be/stops/303032", "https://data.delijn.be/stops/303894"], ["https://data.delijn.be/stops/502256", "https://data.delijn.be/stops/507261"], ["https://data.delijn.be/stops/206210", "https://data.delijn.be/stops/206814"], ["https://data.delijn.be/stops/500568", "https://data.delijn.be/stops/506031"], ["https://data.delijn.be/stops/403926", "https://data.delijn.be/stops/404030"], ["https://data.delijn.be/stops/304056", "https://data.delijn.be/stops/304085"], ["https://data.delijn.be/stops/503597", "https://data.delijn.be/stops/505806"], ["https://data.delijn.be/stops/405835", "https://data.delijn.be/stops/409425"], ["https://data.delijn.be/stops/201656", "https://data.delijn.be/stops/203614"], ["https://data.delijn.be/stops/301474", "https://data.delijn.be/stops/301475"], ["https://data.delijn.be/stops/201261", "https://data.delijn.be/stops/201947"], ["https://data.delijn.be/stops/505325", "https://data.delijn.be/stops/505599"], ["https://data.delijn.be/stops/402210", "https://data.delijn.be/stops/405189"], ["https://data.delijn.be/stops/505668", "https://data.delijn.be/stops/509878"], ["https://data.delijn.be/stops/304484", "https://data.delijn.be/stops/304531"], ["https://data.delijn.be/stops/206998", "https://data.delijn.be/stops/207997"], ["https://data.delijn.be/stops/202759", "https://data.delijn.be/stops/203759"], ["https://data.delijn.be/stops/407966", "https://data.delijn.be/stops/408424"], ["https://data.delijn.be/stops/200481", "https://data.delijn.be/stops/203132"], ["https://data.delijn.be/stops/202284", "https://data.delijn.be/stops/208964"], ["https://data.delijn.be/stops/307928", "https://data.delijn.be/stops/307929"], ["https://data.delijn.be/stops/302442", "https://data.delijn.be/stops/302450"], ["https://data.delijn.be/stops/307221", "https://data.delijn.be/stops/307223"], ["https://data.delijn.be/stops/407038", "https://data.delijn.be/stops/410033"], ["https://data.delijn.be/stops/201827", "https://data.delijn.be/stops/208275"], ["https://data.delijn.be/stops/304140", "https://data.delijn.be/stops/304144"], ["https://data.delijn.be/stops/203681", "https://data.delijn.be/stops/203693"], ["https://data.delijn.be/stops/406159", "https://data.delijn.be/stops/409409"], ["https://data.delijn.be/stops/509285", "https://data.delijn.be/stops/509343"], ["https://data.delijn.be/stops/301719", "https://data.delijn.be/stops/301823"], ["https://data.delijn.be/stops/102852", "https://data.delijn.be/stops/104416"], ["https://data.delijn.be/stops/401989", "https://data.delijn.be/stops/403384"], ["https://data.delijn.be/stops/101502", "https://data.delijn.be/stops/109345"], ["https://data.delijn.be/stops/109306", "https://data.delijn.be/stops/109307"], ["https://data.delijn.be/stops/501012", "https://data.delijn.be/stops/506012"], ["https://data.delijn.be/stops/105787", "https://data.delijn.be/stops/105788"], ["https://data.delijn.be/stops/401600", "https://data.delijn.be/stops/409434"], ["https://data.delijn.be/stops/303095", "https://data.delijn.be/stops/303113"], ["https://data.delijn.be/stops/500023", "https://data.delijn.be/stops/501197"], ["https://data.delijn.be/stops/101132", "https://data.delijn.be/stops/104459"], ["https://data.delijn.be/stops/200956", "https://data.delijn.be/stops/202395"], ["https://data.delijn.be/stops/308747", "https://data.delijn.be/stops/308750"], ["https://data.delijn.be/stops/406294", "https://data.delijn.be/stops/406448"], ["https://data.delijn.be/stops/405335", "https://data.delijn.be/stops/405430"], ["https://data.delijn.be/stops/407618", "https://data.delijn.be/stops/407619"], ["https://data.delijn.be/stops/302274", "https://data.delijn.be/stops/303436"], ["https://data.delijn.be/stops/405676", "https://data.delijn.be/stops/408206"], ["https://data.delijn.be/stops/201982", "https://data.delijn.be/stops/203917"], ["https://data.delijn.be/stops/302437", "https://data.delijn.be/stops/302445"], ["https://data.delijn.be/stops/409080", "https://data.delijn.be/stops/409123"], ["https://data.delijn.be/stops/207663", "https://data.delijn.be/stops/208506"], ["https://data.delijn.be/stops/104886", "https://data.delijn.be/stops/104887"], ["https://data.delijn.be/stops/200399", "https://data.delijn.be/stops/201399"], ["https://data.delijn.be/stops/505550", "https://data.delijn.be/stops/507177"], ["https://data.delijn.be/stops/106963", "https://data.delijn.be/stops/106977"], ["https://data.delijn.be/stops/210065", "https://data.delijn.be/stops/211048"], ["https://data.delijn.be/stops/103043", "https://data.delijn.be/stops/106905"], ["https://data.delijn.be/stops/301309", "https://data.delijn.be/stops/301337"], ["https://data.delijn.be/stops/302833", "https://data.delijn.be/stops/306778"], ["https://data.delijn.be/stops/503821", "https://data.delijn.be/stops/508819"], ["https://data.delijn.be/stops/303051", "https://data.delijn.be/stops/304532"], ["https://data.delijn.be/stops/407604", "https://data.delijn.be/stops/407606"], ["https://data.delijn.be/stops/400324", "https://data.delijn.be/stops/400439"], ["https://data.delijn.be/stops/508101", "https://data.delijn.be/stops/508882"], ["https://data.delijn.be/stops/505256", "https://data.delijn.be/stops/508675"], ["https://data.delijn.be/stops/300557", "https://data.delijn.be/stops/307864"], ["https://data.delijn.be/stops/401642", "https://data.delijn.be/stops/408657"], ["https://data.delijn.be/stops/102378", "https://data.delijn.be/stops/109391"], ["https://data.delijn.be/stops/407177", "https://data.delijn.be/stops/409857"], ["https://data.delijn.be/stops/503900", "https://data.delijn.be/stops/504982"], ["https://data.delijn.be/stops/503056", "https://data.delijn.be/stops/508056"], ["https://data.delijn.be/stops/200657", "https://data.delijn.be/stops/201527"], ["https://data.delijn.be/stops/302570", "https://data.delijn.be/stops/305102"], ["https://data.delijn.be/stops/102136", "https://data.delijn.be/stops/109164"], ["https://data.delijn.be/stops/103161", "https://data.delijn.be/stops/103163"], ["https://data.delijn.be/stops/400561", "https://data.delijn.be/stops/403638"], ["https://data.delijn.be/stops/201472", "https://data.delijn.be/stops/201890"], ["https://data.delijn.be/stops/304152", "https://data.delijn.be/stops/307539"], ["https://data.delijn.be/stops/108337", "https://data.delijn.be/stops/109334"], ["https://data.delijn.be/stops/306186", "https://data.delijn.be/stops/306289"], ["https://data.delijn.be/stops/103033", "https://data.delijn.be/stops/106749"], ["https://data.delijn.be/stops/208100", "https://data.delijn.be/stops/209100"], ["https://data.delijn.be/stops/502224", "https://data.delijn.be/stops/507224"], ["https://data.delijn.be/stops/409366", "https://data.delijn.be/stops/409369"], ["https://data.delijn.be/stops/102499", "https://data.delijn.be/stops/102502"], ["https://data.delijn.be/stops/206373", "https://data.delijn.be/stops/207373"], ["https://data.delijn.be/stops/201011", "https://data.delijn.be/stops/211021"], ["https://data.delijn.be/stops/206698", "https://data.delijn.be/stops/206699"], ["https://data.delijn.be/stops/106079", "https://data.delijn.be/stops/106080"], ["https://data.delijn.be/stops/503876", "https://data.delijn.be/stops/508689"], ["https://data.delijn.be/stops/101955", "https://data.delijn.be/stops/103055"], ["https://data.delijn.be/stops/503059", "https://data.delijn.be/stops/508119"], ["https://data.delijn.be/stops/304883", "https://data.delijn.be/stops/308525"], ["https://data.delijn.be/stops/204048", "https://data.delijn.be/stops/205049"], ["https://data.delijn.be/stops/200385", "https://data.delijn.be/stops/201081"], ["https://data.delijn.be/stops/104974", "https://data.delijn.be/stops/109784"], ["https://data.delijn.be/stops/401139", "https://data.delijn.be/stops/410049"], ["https://data.delijn.be/stops/402069", "https://data.delijn.be/stops/402374"], ["https://data.delijn.be/stops/505540", "https://data.delijn.be/stops/508808"], ["https://data.delijn.be/stops/505226", "https://data.delijn.be/stops/508856"], ["https://data.delijn.be/stops/302610", "https://data.delijn.be/stops/302625"], ["https://data.delijn.be/stops/204746", "https://data.delijn.be/stops/205741"], ["https://data.delijn.be/stops/204338", "https://data.delijn.be/stops/204449"], ["https://data.delijn.be/stops/404792", "https://data.delijn.be/stops/404798"], ["https://data.delijn.be/stops/302938", "https://data.delijn.be/stops/302957"], ["https://data.delijn.be/stops/504758", "https://data.delijn.be/stops/507017"], ["https://data.delijn.be/stops/304534", "https://data.delijn.be/stops/307576"], ["https://data.delijn.be/stops/105882", "https://data.delijn.be/stops/105934"], ["https://data.delijn.be/stops/202832", "https://data.delijn.be/stops/203831"], ["https://data.delijn.be/stops/408616", "https://data.delijn.be/stops/408770"], ["https://data.delijn.be/stops/504265", "https://data.delijn.be/stops/505829"], ["https://data.delijn.be/stops/304795", "https://data.delijn.be/stops/306687"], ["https://data.delijn.be/stops/404706", "https://data.delijn.be/stops/404714"], ["https://data.delijn.be/stops/201665", "https://data.delijn.be/stops/210121"], ["https://data.delijn.be/stops/208270", "https://data.delijn.be/stops/209270"], ["https://data.delijn.be/stops/104352", "https://data.delijn.be/stops/104353"], ["https://data.delijn.be/stops/407399", "https://data.delijn.be/stops/407426"], ["https://data.delijn.be/stops/204218", "https://data.delijn.be/stops/205218"], ["https://data.delijn.be/stops/404788", "https://data.delijn.be/stops/404811"], ["https://data.delijn.be/stops/409468", "https://data.delijn.be/stops/409471"], ["https://data.delijn.be/stops/102936", "https://data.delijn.be/stops/103130"], ["https://data.delijn.be/stops/502171", "https://data.delijn.be/stops/505418"], ["https://data.delijn.be/stops/504865", "https://data.delijn.be/stops/505379"], ["https://data.delijn.be/stops/505290", "https://data.delijn.be/stops/508902"], ["https://data.delijn.be/stops/104781", "https://data.delijn.be/stops/108121"], ["https://data.delijn.be/stops/106403", "https://data.delijn.be/stops/106405"], ["https://data.delijn.be/stops/203297", "https://data.delijn.be/stops/210856"], ["https://data.delijn.be/stops/101779", "https://data.delijn.be/stops/107747"], ["https://data.delijn.be/stops/503525", "https://data.delijn.be/stops/508072"], ["https://data.delijn.be/stops/407060", "https://data.delijn.be/stops/407075"], ["https://data.delijn.be/stops/301865", "https://data.delijn.be/stops/306989"], ["https://data.delijn.be/stops/409796", "https://data.delijn.be/stops/409797"], ["https://data.delijn.be/stops/200973", "https://data.delijn.be/stops/206760"], ["https://data.delijn.be/stops/501109", "https://data.delijn.be/stops/506225"], ["https://data.delijn.be/stops/108867", "https://data.delijn.be/stops/108869"], ["https://data.delijn.be/stops/502397", "https://data.delijn.be/stops/507397"], ["https://data.delijn.be/stops/101226", "https://data.delijn.be/stops/101657"], ["https://data.delijn.be/stops/406954", "https://data.delijn.be/stops/406955"], ["https://data.delijn.be/stops/201478", "https://data.delijn.be/stops/210069"], ["https://data.delijn.be/stops/405414", "https://data.delijn.be/stops/302834"], ["https://data.delijn.be/stops/503981", "https://data.delijn.be/stops/505935"], ["https://data.delijn.be/stops/301421", "https://data.delijn.be/stops/307081"], ["https://data.delijn.be/stops/503756", "https://data.delijn.be/stops/508730"], ["https://data.delijn.be/stops/205613", "https://data.delijn.be/stops/205695"], ["https://data.delijn.be/stops/206901", "https://data.delijn.be/stops/207874"], ["https://data.delijn.be/stops/202118", "https://data.delijn.be/stops/204171"], ["https://data.delijn.be/stops/208280", "https://data.delijn.be/stops/209278"], ["https://data.delijn.be/stops/504626", "https://data.delijn.be/stops/509623"], ["https://data.delijn.be/stops/503398", "https://data.delijn.be/stops/508387"], ["https://data.delijn.be/stops/408574", "https://data.delijn.be/stops/408575"], ["https://data.delijn.be/stops/107734", "https://data.delijn.be/stops/107737"], ["https://data.delijn.be/stops/106834", "https://data.delijn.be/stops/106972"], ["https://data.delijn.be/stops/102566", "https://data.delijn.be/stops/104334"], ["https://data.delijn.be/stops/410173", "https://data.delijn.be/stops/410176"], ["https://data.delijn.be/stops/502010", "https://data.delijn.be/stops/505222"], ["https://data.delijn.be/stops/205738", "https://data.delijn.be/stops/205739"], ["https://data.delijn.be/stops/401183", "https://data.delijn.be/stops/401220"], ["https://data.delijn.be/stops/101822", "https://data.delijn.be/stops/107069"], ["https://data.delijn.be/stops/107642", "https://data.delijn.be/stops/308377"], ["https://data.delijn.be/stops/301666", "https://data.delijn.be/stops/304180"], ["https://data.delijn.be/stops/503154", "https://data.delijn.be/stops/503421"], ["https://data.delijn.be/stops/504211", "https://data.delijn.be/stops/504223"], ["https://data.delijn.be/stops/102566", "https://data.delijn.be/stops/105848"], ["https://data.delijn.be/stops/101383", "https://data.delijn.be/stops/102422"], ["https://data.delijn.be/stops/408582", "https://data.delijn.be/stops/408591"], ["https://data.delijn.be/stops/400580", "https://data.delijn.be/stops/400581"], ["https://data.delijn.be/stops/204413", "https://data.delijn.be/stops/204441"], ["https://data.delijn.be/stops/108642", "https://data.delijn.be/stops/109686"], ["https://data.delijn.be/stops/401349", "https://data.delijn.be/stops/401355"], ["https://data.delijn.be/stops/102204", "https://data.delijn.be/stops/102671"], ["https://data.delijn.be/stops/108372", "https://data.delijn.be/stops/108518"], ["https://data.delijn.be/stops/301170", "https://data.delijn.be/stops/303194"], ["https://data.delijn.be/stops/303069", "https://data.delijn.be/stops/303156"], ["https://data.delijn.be/stops/503896", "https://data.delijn.be/stops/505540"], ["https://data.delijn.be/stops/200858", "https://data.delijn.be/stops/202305"], ["https://data.delijn.be/stops/102394", "https://data.delijn.be/stops/107093"], ["https://data.delijn.be/stops/402447", "https://data.delijn.be/stops/409359"], ["https://data.delijn.be/stops/102827", "https://data.delijn.be/stops/106233"], ["https://data.delijn.be/stops/106926", "https://data.delijn.be/stops/106942"], ["https://data.delijn.be/stops/206733", "https://data.delijn.be/stops/306679"], ["https://data.delijn.be/stops/402803", "https://data.delijn.be/stops/407316"], ["https://data.delijn.be/stops/505410", "https://data.delijn.be/stops/505994"], ["https://data.delijn.be/stops/405028", "https://data.delijn.be/stops/405029"], ["https://data.delijn.be/stops/207260", "https://data.delijn.be/stops/207261"], ["https://data.delijn.be/stops/503184", "https://data.delijn.be/stops/509820"], ["https://data.delijn.be/stops/202336", "https://data.delijn.be/stops/203330"], ["https://data.delijn.be/stops/503662", "https://data.delijn.be/stops/503880"], ["https://data.delijn.be/stops/410338", "https://data.delijn.be/stops/410339"], ["https://data.delijn.be/stops/103923", "https://data.delijn.be/stops/107250"], ["https://data.delijn.be/stops/305509", "https://data.delijn.be/stops/305520"], ["https://data.delijn.be/stops/501079", "https://data.delijn.be/stops/504371"], ["https://data.delijn.be/stops/103251", "https://data.delijn.be/stops/107705"], ["https://data.delijn.be/stops/107251", "https://data.delijn.be/stops/107282"], ["https://data.delijn.be/stops/200923", "https://data.delijn.be/stops/203084"], ["https://data.delijn.be/stops/108469", "https://data.delijn.be/stops/108483"], ["https://data.delijn.be/stops/402235", "https://data.delijn.be/stops/407533"], ["https://data.delijn.be/stops/301044", "https://data.delijn.be/stops/301045"], ["https://data.delijn.be/stops/300143", "https://data.delijn.be/stops/300146"], ["https://data.delijn.be/stops/500120", "https://data.delijn.be/stops/507446"], ["https://data.delijn.be/stops/502138", "https://data.delijn.be/stops/507110"], ["https://data.delijn.be/stops/200179", "https://data.delijn.be/stops/201337"], ["https://data.delijn.be/stops/104457", "https://data.delijn.be/stops/106742"], ["https://data.delijn.be/stops/400592", "https://data.delijn.be/stops/400594"], ["https://data.delijn.be/stops/108501", "https://data.delijn.be/stops/108502"], ["https://data.delijn.be/stops/204077", "https://data.delijn.be/stops/205080"], ["https://data.delijn.be/stops/204507", "https://data.delijn.be/stops/205820"], ["https://data.delijn.be/stops/508404", "https://data.delijn.be/stops/508405"], ["https://data.delijn.be/stops/208559", "https://data.delijn.be/stops/209544"], ["https://data.delijn.be/stops/200803", "https://data.delijn.be/stops/201885"], ["https://data.delijn.be/stops/508362", "https://data.delijn.be/stops/508405"], ["https://data.delijn.be/stops/501069", "https://data.delijn.be/stops/501381"], ["https://data.delijn.be/stops/408900", "https://data.delijn.be/stops/408901"], ["https://data.delijn.be/stops/404850", "https://data.delijn.be/stops/405546"]] \ No newline at end of file diff --git a/src/analytics/footpaths/mivb_pairs.json b/src/analytics/footpaths/mivb_pairs.json new file mode 100644 index 00000000..229b6777 --- /dev/null +++ b/src/analytics/footpaths/mivb_pairs.json @@ -0,0 +1 @@ +[["https://mivb.openplanner.team/stops/4165", "https://mivb.openplanner.team/stops/4168"], ["https://mivb.openplanner.team/stops/0900268", "https://mivb.openplanner.team/stops/9996"], ["https://mivb.openplanner.team/stops/1935", "https://mivb.openplanner.team/stops/1955"], ["https://mivb.openplanner.team/stops/1919", "https://mivb.openplanner.team/stops/5255F"], ["https://mivb.openplanner.team/stops/1570", "https://mivb.openplanner.team/stops/6017"], ["https://mivb.openplanner.team/stops/1814B", "https://mivb.openplanner.team/stops/1815"], ["https://mivb.openplanner.team/stops/0610363", "https://mivb.openplanner.team/stops/0626"], ["https://mivb.openplanner.team/stops/3404", "https://mivb.openplanner.team/stops/3458"], ["https://mivb.openplanner.team/stops/2828", "https://mivb.openplanner.team/stops/2838"], ["https://mivb.openplanner.team/stops/3459", "https://mivb.openplanner.team/stops/3766"], ["https://mivb.openplanner.team/stops/1125", "https://mivb.openplanner.team/stops/3006"], ["https://mivb.openplanner.team/stops/2522", "https://mivb.openplanner.team/stops/2579"], ["https://mivb.openplanner.team/stops/8042", "https://mivb.openplanner.team/stops/0040418"], ["https://mivb.openplanner.team/stops/1453", "https://mivb.openplanner.team/stops/5420F"], ["https://mivb.openplanner.team/stops/2117B", "https://mivb.openplanner.team/stops/2144"], ["https://mivb.openplanner.team/stops/4318", "https://mivb.openplanner.team/stops/4345"], ["https://mivb.openplanner.team/stops/1753", "https://mivb.openplanner.team/stops/37"], ["https://mivb.openplanner.team/stops/6202", "https://mivb.openplanner.team/stops/6418F"], ["https://mivb.openplanner.team/stops/0511", "https://mivb.openplanner.team/stops/1988"], ["https://mivb.openplanner.team/stops/1883", "https://mivb.openplanner.team/stops/3120"], ["https://mivb.openplanner.team/stops/2604F", "https://mivb.openplanner.team/stops/2667F"], ["https://mivb.openplanner.team/stops/5426", "https://mivb.openplanner.team/stops/5427"], ["https://mivb.openplanner.team/stops/5027", "https://mivb.openplanner.team/stops/5028"], ["https://mivb.openplanner.team/stops/3114", "https://mivb.openplanner.team/stops/6017"], ["https://mivb.openplanner.team/stops/2869", "https://mivb.openplanner.team/stops/6501"], ["https://mivb.openplanner.team/stops/2038", "https://mivb.openplanner.team/stops/2042"], ["https://mivb.openplanner.team/stops/4264B", "https://mivb.openplanner.team/stops/7820353"], ["https://mivb.openplanner.team/stops/2872", "https://mivb.openplanner.team/stops/4250"], ["https://mivb.openplanner.team/stops/2566B", "https://mivb.openplanner.team/stops/3239"], ["https://mivb.openplanner.team/stops/7650210", "https://mivb.openplanner.team/stops/9655"], ["https://mivb.openplanner.team/stops/4228", "https://mivb.openplanner.team/stops/8833"], ["https://mivb.openplanner.team/stops/1801", "https://mivb.openplanner.team/stops/2418"], ["https://mivb.openplanner.team/stops/1302", "https://mivb.openplanner.team/stops/5512"], ["https://mivb.openplanner.team/stops/4957", "https://mivb.openplanner.team/stops/5082"], ["https://mivb.openplanner.team/stops/5220F", "https://mivb.openplanner.team/stops/9986F"], ["https://mivb.openplanner.team/stops/2217", "https://mivb.openplanner.team/stops/2260"], ["https://mivb.openplanner.team/stops/1250", "https://mivb.openplanner.team/stops/1920"], ["https://mivb.openplanner.team/stops/2504", "https://mivb.openplanner.team/stops/2586"], ["https://mivb.openplanner.team/stops/8692", "https://mivb.openplanner.team/stops/6"], ["https://mivb.openplanner.team/stops/3549", "https://mivb.openplanner.team/stops/8251"], ["https://mivb.openplanner.team/stops/5735", "https://mivb.openplanner.team/stops/6359"], ["https://mivb.openplanner.team/stops/1851", "https://mivb.openplanner.team/stops/5553"], ["https://mivb.openplanner.team/stops/5270F", "https://mivb.openplanner.team/stops/5283F"], ["https://mivb.openplanner.team/stops/1172", "https://mivb.openplanner.team/stops/7750260"], ["https://mivb.openplanner.team/stops/5849", "https://mivb.openplanner.team/stops/5857F"], ["https://mivb.openplanner.team/stops/4116", "https://mivb.openplanner.team/stops/0470251"], ["https://mivb.openplanner.team/stops/0616", "https://mivb.openplanner.team/stops/2181"], ["https://mivb.openplanner.team/stops/1493", "https://mivb.openplanner.team/stops/1541"], ["https://mivb.openplanner.team/stops/0526", "https://mivb.openplanner.team/stops/1646F"], ["https://mivb.openplanner.team/stops/2323", "https://mivb.openplanner.team/stops/6857"], ["https://mivb.openplanner.team/stops/1931", "https://mivb.openplanner.team/stops/1937"], ["https://mivb.openplanner.team/stops/5210", "https://mivb.openplanner.team/stops/5255F"], ["https://mivb.openplanner.team/stops/0707", "https://mivb.openplanner.team/stops/2957"], ["https://mivb.openplanner.team/stops/3261", "https://mivb.openplanner.team/stops/0270414"], ["https://mivb.openplanner.team/stops/2137", "https://mivb.openplanner.team/stops/2717"], ["https://mivb.openplanner.team/stops/2553", "https://mivb.openplanner.team/stops/5757"], ["https://mivb.openplanner.team/stops/6481", "https://mivb.openplanner.team/stops/53"], ["https://mivb.openplanner.team/stops/5414F", "https://mivb.openplanner.team/stops/6550"], ["https://mivb.openplanner.team/stops/5860", "https://mivb.openplanner.team/stops/5916F"], ["https://mivb.openplanner.team/stops/1684F", "https://mivb.openplanner.team/stops/1722"], ["https://mivb.openplanner.team/stops/2411B", "https://mivb.openplanner.team/stops/2954B"], ["https://mivb.openplanner.team/stops/1242", "https://mivb.openplanner.team/stops/3228"], ["https://mivb.openplanner.team/stops/1938", "https://mivb.openplanner.team/stops/2168"], ["https://mivb.openplanner.team/stops/0230334", "https://mivb.openplanner.team/stops/0230434"], ["https://mivb.openplanner.team/stops/1857", "https://mivb.openplanner.team/stops/5272F"], ["https://mivb.openplanner.team/stops/5350G", "https://mivb.openplanner.team/stops/7246"], ["https://mivb.openplanner.team/stops/1964", "https://mivb.openplanner.team/stops/2770"], ["https://mivb.openplanner.team/stops/2352", "https://mivb.openplanner.team/stops/3001B"], ["https://mivb.openplanner.team/stops/5413F", "https://mivb.openplanner.team/stops/5458"], ["https://mivb.openplanner.team/stops/3808", "https://mivb.openplanner.team/stops/3856"], ["https://mivb.openplanner.team/stops/2326", "https://mivb.openplanner.team/stops/6103F"], ["https://mivb.openplanner.team/stops/5025", "https://mivb.openplanner.team/stops/5059"], ["https://mivb.openplanner.team/stops/3802", "https://mivb.openplanner.team/stops/6808G"], ["https://mivb.openplanner.team/stops/6024", "https://mivb.openplanner.team/stops/0070121"], ["https://mivb.openplanner.team/stops/3921", "https://mivb.openplanner.team/stops/3922"], ["https://mivb.openplanner.team/stops/1534", "https://mivb.openplanner.team/stops/3661"], ["https://mivb.openplanner.team/stops/4348", "https://mivb.openplanner.team/stops/5420F"], ["https://mivb.openplanner.team/stops/1096", "https://mivb.openplanner.team/stops/2568"], ["https://mivb.openplanner.team/stops/1148C", "https://mivb.openplanner.team/stops/3399"], ["https://mivb.openplanner.team/stops/2314", "https://mivb.openplanner.team/stops/2827"], ["https://mivb.openplanner.team/stops/0670167", "https://mivb.openplanner.team/stops/5859"], ["https://mivb.openplanner.team/stops/2237", "https://mivb.openplanner.team/stops/6103"], ["https://mivb.openplanner.team/stops/1639", "https://mivb.openplanner.team/stops/0130127"], ["https://mivb.openplanner.team/stops/1544", "https://mivb.openplanner.team/stops/5562"], ["https://mivb.openplanner.team/stops/1116", "https://mivb.openplanner.team/stops/1194"], ["https://mivb.openplanner.team/stops/2311", "https://mivb.openplanner.team/stops/2364"], ["https://mivb.openplanner.team/stops/1384", "https://mivb.openplanner.team/stops/0120226"], ["https://mivb.openplanner.team/stops/4122", "https://mivb.openplanner.team/stops/7790356"], ["https://mivb.openplanner.team/stops/2104", "https://mivb.openplanner.team/stops/2156"], ["https://mivb.openplanner.team/stops/2463F", "https://mivb.openplanner.team/stops/6165"], ["https://mivb.openplanner.team/stops/2209", "https://mivb.openplanner.team/stops/2837"], ["https://mivb.openplanner.team/stops/0826", "https://mivb.openplanner.team/stops/0820170"], ["https://mivb.openplanner.team/stops/1824", "https://mivb.openplanner.team/stops/6433"], ["https://mivb.openplanner.team/stops/3899", "https://mivb.openplanner.team/stops/3900"], ["https://mivb.openplanner.team/stops/7720403", "https://mivb.openplanner.team/stops/8722"], ["https://mivb.openplanner.team/stops/3468", "https://mivb.openplanner.team/stops/3762"], ["https://mivb.openplanner.team/stops/1182", "https://mivb.openplanner.team/stops/5165"], ["https://mivb.openplanner.team/stops/1910", "https://mivb.openplanner.team/stops/3121"], ["https://mivb.openplanner.team/stops/1682F", "https://mivb.openplanner.team/stops/1743"], ["https://mivb.openplanner.team/stops/9727", "https://mivb.openplanner.team/stops/9728"], ["https://mivb.openplanner.team/stops/3129", "https://mivb.openplanner.team/stops/3279"], ["https://mivb.openplanner.team/stops/4271", "https://mivb.openplanner.team/stops/7780157"], ["https://mivb.openplanner.team/stops/2050", "https://mivb.openplanner.team/stops/0260137"], ["https://mivb.openplanner.team/stops/1626", "https://mivb.openplanner.team/stops/1792"], ["https://mivb.openplanner.team/stops/2522", "https://mivb.openplanner.team/stops/4601"], ["https://mivb.openplanner.team/stops/1962F", "https://mivb.openplanner.team/stops/2701"], ["https://mivb.openplanner.team/stops/1211B", "https://mivb.openplanner.team/stops/7720403"], ["https://mivb.openplanner.team/stops/5611", "https://mivb.openplanner.team/stops/6120"], ["https://mivb.openplanner.team/stops/3514", "https://mivb.openplanner.team/stops/4307"], ["https://mivb.openplanner.team/stops/1339", "https://mivb.openplanner.team/stops/2041"], ["https://mivb.openplanner.team/stops/1811", "https://mivb.openplanner.team/stops/1864"], ["https://mivb.openplanner.team/stops/4502F", "https://mivb.openplanner.team/stops/5724"], ["https://mivb.openplanner.team/stops/1676F", "https://mivb.openplanner.team/stops/1747"], ["https://mivb.openplanner.team/stops/2460", "https://mivb.openplanner.team/stops/2935"], ["https://mivb.openplanner.team/stops/1679F", "https://mivb.openplanner.team/stops/1681F"], ["https://mivb.openplanner.team/stops/5021", "https://mivb.openplanner.team/stops/5063"], ["https://mivb.openplanner.team/stops/8642", "https://mivb.openplanner.team/stops/7640311"], ["https://mivb.openplanner.team/stops/4213", "https://mivb.openplanner.team/stops/8461"], ["https://mivb.openplanner.team/stops/5740", "https://mivb.openplanner.team/stops/6461"], ["https://mivb.openplanner.team/stops/4319", "https://mivb.openplanner.team/stops/9059"], ["https://mivb.openplanner.team/stops/2376", "https://mivb.openplanner.team/stops/5705"], ["https://mivb.openplanner.team/stops/2511", "https://mivb.openplanner.team/stops/2568"], ["https://mivb.openplanner.team/stops/0610463", "https://mivb.openplanner.team/stops/6602P"], ["https://mivb.openplanner.team/stops/1490", "https://mivb.openplanner.team/stops/8682"], ["https://mivb.openplanner.team/stops/2813", "https://mivb.openplanner.team/stops/2857B"], ["https://mivb.openplanner.team/stops/0270314", "https://mivb.openplanner.team/stops/0270414"], ["https://mivb.openplanner.team/stops/1515", "https://mivb.openplanner.team/stops/6056"], ["https://mivb.openplanner.team/stops/1835", "https://mivb.openplanner.team/stops/5532"], ["https://mivb.openplanner.team/stops/0270514", "https://mivb.openplanner.team/stops/0270614"], ["https://mivb.openplanner.team/stops/6652", "https://mivb.openplanner.team/stops/0270514"], ["https://mivb.openplanner.team/stops/1124", "https://mivb.openplanner.team/stops/8302"], ["https://mivb.openplanner.team/stops/6860G", "https://mivb.openplanner.team/stops/0360139"], ["https://mivb.openplanner.team/stops/2667", "https://mivb.openplanner.team/stops/2667F"], ["https://mivb.openplanner.team/stops/1931", "https://mivb.openplanner.team/stops/1932"], ["https://mivb.openplanner.team/stops/2801", "https://mivb.openplanner.team/stops/6800F"], ["https://mivb.openplanner.team/stops/6443", "https://mivb.openplanner.team/stops/6444"], ["https://mivb.openplanner.team/stops/1467", "https://mivb.openplanner.team/stops/4250"], ["https://mivb.openplanner.team/stops/1938", "https://mivb.openplanner.team/stops/1958B"], ["https://mivb.openplanner.team/stops/5712F", "https://mivb.openplanner.team/stops/6363"], ["https://mivb.openplanner.team/stops/3961", "https://mivb.openplanner.team/stops/4505"], ["https://mivb.openplanner.team/stops/2759", "https://mivb.openplanner.team/stops/5459F"], ["https://mivb.openplanner.team/stops/0660266", "https://mivb.openplanner.team/stops/2336G"], ["https://mivb.openplanner.team/stops/3113", "https://mivb.openplanner.team/stops/3163"], ["https://mivb.openplanner.team/stops/0330242", "https://mivb.openplanner.team/stops/0330342"], ["https://mivb.openplanner.team/stops/1640B", "https://mivb.openplanner.team/stops/0130227"], ["https://mivb.openplanner.team/stops/3562", "https://mivb.openplanner.team/stops/5208"], ["https://mivb.openplanner.team/stops/4005F", "https://mivb.openplanner.team/stops/4602"], ["https://mivb.openplanner.team/stops/1510", "https://mivb.openplanner.team/stops/1569B"], ["https://mivb.openplanner.team/stops/3911", "https://mivb.openplanner.team/stops/4550"], ["https://mivb.openplanner.team/stops/2498", "https://mivb.openplanner.team/stops/2805F"], ["https://mivb.openplanner.team/stops/3449", "https://mivb.openplanner.team/stops/3470"], ["https://mivb.openplanner.team/stops/1964", "https://mivb.openplanner.team/stops/2709F"], ["https://mivb.openplanner.team/stops/1736", "https://mivb.openplanner.team/stops/5029"], ["https://mivb.openplanner.team/stops/1406", "https://mivb.openplanner.team/stops/0070521"], ["https://mivb.openplanner.team/stops/1043", "https://mivb.openplanner.team/stops/9853"], ["https://mivb.openplanner.team/stops/4308", "https://mivb.openplanner.team/stops/6550"], ["https://mivb.openplanner.team/stops/5041F", "https://mivb.openplanner.team/stops/5042"], ["https://mivb.openplanner.team/stops/8251", "https://mivb.openplanner.team/stops/8252"], ["https://mivb.openplanner.team/stops/2604", "https://mivb.openplanner.team/stops/2604F"], ["https://mivb.openplanner.team/stops/3005", "https://mivb.openplanner.team/stops/3061"], ["https://mivb.openplanner.team/stops/1090", "https://mivb.openplanner.team/stops/5908"], ["https://mivb.openplanner.team/stops/1884", "https://mivb.openplanner.team/stops/1909"], ["https://mivb.openplanner.team/stops/4357", "https://mivb.openplanner.team/stops/4402"], ["https://mivb.openplanner.team/stops/1824", "https://mivb.openplanner.team/stops/0300145"], ["https://mivb.openplanner.team/stops/0725", "https://mivb.openplanner.team/stops/0340341"], ["https://mivb.openplanner.team/stops/5415F", "https://mivb.openplanner.team/stops/5459F"], ["https://mivb.openplanner.team/stops/6482", "https://mivb.openplanner.team/stops/8823"], ["https://mivb.openplanner.team/stops/6253", "https://mivb.openplanner.team/stops/6424F"], ["https://mivb.openplanner.team/stops/3104", "https://mivb.openplanner.team/stops/5913"], ["https://mivb.openplanner.team/stops/1116", "https://mivb.openplanner.team/stops/4599"], ["https://mivb.openplanner.team/stops/2928", "https://mivb.openplanner.team/stops/5610"], ["https://mivb.openplanner.team/stops/1831", "https://mivb.openplanner.team/stops/8131"], ["https://mivb.openplanner.team/stops/3174", "https://mivb.openplanner.team/stops/5872"], ["https://mivb.openplanner.team/stops/1931", "https://mivb.openplanner.team/stops/5823"], ["https://mivb.openplanner.team/stops/1304", "https://mivb.openplanner.team/stops/4153"], ["https://mivb.openplanner.team/stops/1798", "https://mivb.openplanner.team/stops/5469"], ["https://mivb.openplanner.team/stops/2567", "https://mivb.openplanner.team/stops/4054G"], ["https://mivb.openplanner.team/stops/1131B", "https://mivb.openplanner.team/stops/1162C"], ["https://mivb.openplanner.team/stops/2316", "https://mivb.openplanner.team/stops/2359"], ["https://mivb.openplanner.team/stops/1685F", "https://mivb.openplanner.team/stops/1744"], ["https://mivb.openplanner.team/stops/3313", "https://mivb.openplanner.team/stops/0420147"], ["https://mivb.openplanner.team/stops/1528", "https://mivb.openplanner.team/stops/2015"], ["https://mivb.openplanner.team/stops/1455", "https://mivb.openplanner.team/stops/5419"], ["https://mivb.openplanner.team/stops/7640111", "https://mivb.openplanner.team/stops/7640211"], ["https://mivb.openplanner.team/stops/1958B", "https://mivb.openplanner.team/stops/1959"], ["https://mivb.openplanner.team/stops/1317", "https://mivb.openplanner.team/stops/1402B"], ["https://mivb.openplanner.team/stops/2567", "https://mivb.openplanner.team/stops/3232"], ["https://mivb.openplanner.team/stops/5100B", "https://mivb.openplanner.team/stops/5159"], ["https://mivb.openplanner.team/stops/1840", "https://mivb.openplanner.team/stops/6475F"], ["https://mivb.openplanner.team/stops/1614B", "https://mivb.openplanner.team/stops/5516"], ["https://mivb.openplanner.team/stops/5264F", "https://mivb.openplanner.team/stops/5468"], ["https://mivb.openplanner.team/stops/1642F", "https://mivb.openplanner.team/stops/2238"], ["https://mivb.openplanner.team/stops/6806F", "https://mivb.openplanner.team/stops/9979B"], ["https://mivb.openplanner.team/stops/2803", "https://mivb.openplanner.team/stops/2873"], ["https://mivb.openplanner.team/stops/2903", "https://mivb.openplanner.team/stops/2903F"], ["https://mivb.openplanner.team/stops/1616", "https://mivb.openplanner.team/stops/1635"], ["https://mivb.openplanner.team/stops/1138", "https://mivb.openplanner.team/stops/1458"], ["https://mivb.openplanner.team/stops/1631", "https://mivb.openplanner.team/stops/5518"], ["https://mivb.openplanner.team/stops/7740201", "https://mivb.openplanner.team/stops/60"], ["https://mivb.openplanner.team/stops/2319", "https://mivb.openplanner.team/stops/6811"], ["https://mivb.openplanner.team/stops/1159", "https://mivb.openplanner.team/stops/1402B"], ["https://mivb.openplanner.team/stops/6502", "https://mivb.openplanner.team/stops/6869G"], ["https://mivb.openplanner.team/stops/8753", "https://mivb.openplanner.team/stops/7750260"], ["https://mivb.openplanner.team/stops/1910", "https://mivb.openplanner.team/stops/1980"], ["https://mivb.openplanner.team/stops/1968", "https://mivb.openplanner.team/stops/4856B"], ["https://mivb.openplanner.team/stops/7670108", "https://mivb.openplanner.team/stops/8672"], ["https://mivb.openplanner.team/stops/2327", "https://mivb.openplanner.team/stops/5959"], ["https://mivb.openplanner.team/stops/2086", "https://mivb.openplanner.team/stops/6469"], ["https://mivb.openplanner.team/stops/5082", "https://mivb.openplanner.team/stops/8814"], ["https://mivb.openplanner.team/stops/1539", "https://mivb.openplanner.team/stops/1558"], ["https://mivb.openplanner.team/stops/2532", "https://mivb.openplanner.team/stops/8702"], ["https://mivb.openplanner.team/stops/2762", "https://mivb.openplanner.team/stops/6440"], ["https://mivb.openplanner.team/stops/3165", "https://mivb.openplanner.team/stops/6363"], ["https://mivb.openplanner.team/stops/1673", "https://mivb.openplanner.team/stops/2078"], ["https://mivb.openplanner.team/stops/2867", "https://mivb.openplanner.team/stops/5403"], ["https://mivb.openplanner.team/stops/4308", "https://mivb.openplanner.team/stops/4359"], ["https://mivb.openplanner.team/stops/3214", "https://mivb.openplanner.team/stops/5042"], ["https://mivb.openplanner.team/stops/1421", "https://mivb.openplanner.team/stops/1529"], ["https://mivb.openplanner.team/stops/2548", "https://mivb.openplanner.team/stops/5757F"], ["https://mivb.openplanner.team/stops/2859", "https://mivb.openplanner.team/stops/2877"], ["https://mivb.openplanner.team/stops/5312", "https://mivb.openplanner.team/stops/5352"], ["https://mivb.openplanner.team/stops/0621", "https://mivb.openplanner.team/stops/1225"], ["https://mivb.openplanner.team/stops/2665F", "https://mivb.openplanner.team/stops/5720F"], ["https://mivb.openplanner.team/stops/6008", "https://mivb.openplanner.team/stops/6153"], ["https://mivb.openplanner.team/stops/1857", "https://mivb.openplanner.team/stops/5281"], ["https://mivb.openplanner.team/stops/4221", "https://mivb.openplanner.team/stops/4260"], ["https://mivb.openplanner.team/stops/1629", "https://mivb.openplanner.team/stops/9578"], ["https://mivb.openplanner.team/stops/8051", "https://mivb.openplanner.team/stops/0050419"], ["https://mivb.openplanner.team/stops/3450", "https://mivb.openplanner.team/stops/3458"], ["https://mivb.openplanner.team/stops/7780157", "https://mivb.openplanner.team/stops/58"], ["https://mivb.openplanner.team/stops/3177", "https://mivb.openplanner.team/stops/5359"], ["https://mivb.openplanner.team/stops/1315", "https://mivb.openplanner.team/stops/3280"], ["https://mivb.openplanner.team/stops/2665F", "https://mivb.openplanner.team/stops/9920F"], ["https://mivb.openplanner.team/stops/1290", "https://mivb.openplanner.team/stops/5400"], ["https://mivb.openplanner.team/stops/1259", "https://mivb.openplanner.team/stops/1482"], ["https://mivb.openplanner.team/stops/1334", "https://mivb.openplanner.team/stops/1687F"], ["https://mivb.openplanner.team/stops/1918", "https://mivb.openplanner.team/stops/5211"], ["https://mivb.openplanner.team/stops/1826", "https://mivb.openplanner.team/stops/5655"], ["https://mivb.openplanner.team/stops/2138B", "https://mivb.openplanner.team/stops/2760B"], ["https://mivb.openplanner.team/stops/2869", "https://mivb.openplanner.team/stops/5080"], ["https://mivb.openplanner.team/stops/1258G", "https://mivb.openplanner.team/stops/5953F"], ["https://mivb.openplanner.team/stops/4313", "https://mivb.openplanner.team/stops/4355"], ["https://mivb.openplanner.team/stops/6421F", "https://mivb.openplanner.team/stops/6423F"], ["https://mivb.openplanner.team/stops/2545", "https://mivb.openplanner.team/stops/2811"], ["https://mivb.openplanner.team/stops/1657", "https://mivb.openplanner.team/stops/5518"], ["https://mivb.openplanner.team/stops/5605", "https://mivb.openplanner.team/stops/5655"], ["https://mivb.openplanner.team/stops/1707", "https://mivb.openplanner.team/stops/2264"], ["https://mivb.openplanner.team/stops/2221", "https://mivb.openplanner.team/stops/3351"], ["https://mivb.openplanner.team/stops/2916", "https://mivb.openplanner.team/stops/5306G"], ["https://mivb.openplanner.team/stops/2299", "https://mivb.openplanner.team/stops/2377"], ["https://mivb.openplanner.team/stops/2470", "https://mivb.openplanner.team/stops/7369"], ["https://mivb.openplanner.team/stops/5856", "https://mivb.openplanner.team/stops/5856F"], ["https://mivb.openplanner.team/stops/2296", "https://mivb.openplanner.team/stops/4324"], ["https://mivb.openplanner.team/stops/2971F", "https://mivb.openplanner.team/stops/5404"], ["https://mivb.openplanner.team/stops/3362", "https://mivb.openplanner.team/stops/5045"], ["https://mivb.openplanner.team/stops/5009", "https://mivb.openplanner.team/stops/5076F"], ["https://mivb.openplanner.team/stops/6465", "https://mivb.openplanner.team/stops/19"], ["https://mivb.openplanner.team/stops/2283", "https://mivb.openplanner.team/stops/0080122"], ["https://mivb.openplanner.team/stops/1527", "https://mivb.openplanner.team/stops/1531"], ["https://mivb.openplanner.team/stops/6800", "https://mivb.openplanner.team/stops/6803F"], ["https://mivb.openplanner.team/stops/1456", "https://mivb.openplanner.team/stops/1546"], ["https://mivb.openplanner.team/stops/3004", "https://mivb.openplanner.team/stops/6657"], ["https://mivb.openplanner.team/stops/2355", "https://mivb.openplanner.team/stops/4076"], ["https://mivb.openplanner.team/stops/0620164", "https://mivb.openplanner.team/stops/0626"], ["https://mivb.openplanner.team/stops/4290", "https://mivb.openplanner.team/stops/9059"], ["https://mivb.openplanner.team/stops/2769", "https://mivb.openplanner.team/stops/5027"], ["https://mivb.openplanner.team/stops/5758F", "https://mivb.openplanner.team/stops/5761"], ["https://mivb.openplanner.team/stops/1970", "https://mivb.openplanner.team/stops/4854C"], ["https://mivb.openplanner.team/stops/2528", "https://mivb.openplanner.team/stops/3800"], ["https://mivb.openplanner.team/stops/9754B", "https://mivb.openplanner.team/stops/9755"], ["https://mivb.openplanner.team/stops/2216", "https://mivb.openplanner.team/stops/2260F"], ["https://mivb.openplanner.team/stops/3201", "https://mivb.openplanner.team/stops/9725"], ["https://mivb.openplanner.team/stops/0506", "https://mivb.openplanner.team/stops/0010315"], ["https://mivb.openplanner.team/stops/3609F", "https://mivb.openplanner.team/stops/3612F"], ["https://mivb.openplanner.team/stops/3624B", "https://mivb.openplanner.team/stops/5068F"], ["https://mivb.openplanner.team/stops/5062", "https://mivb.openplanner.team/stops/5219F"], ["https://mivb.openplanner.team/stops/0670267", "https://mivb.openplanner.team/stops/2334F"], ["https://mivb.openplanner.team/stops/1855", "https://mivb.openplanner.team/stops/6602P"], ["https://mivb.openplanner.team/stops/6811", "https://mivb.openplanner.team/stops/6856"], ["https://mivb.openplanner.team/stops/1115", "https://mivb.openplanner.team/stops/1244"], ["https://mivb.openplanner.team/stops/0470251", "https://mivb.openplanner.team/stops/7770258"], ["https://mivb.openplanner.team/stops/3562", "https://mivb.openplanner.team/stops/3570"], ["https://mivb.openplanner.team/stops/4213", "https://mivb.openplanner.team/stops/6755"], ["https://mivb.openplanner.team/stops/2018", "https://mivb.openplanner.team/stops/5424"], ["https://mivb.openplanner.team/stops/5967", "https://mivb.openplanner.team/stops/5968"], ["https://mivb.openplanner.team/stops/6353F", "https://mivb.openplanner.team/stops/0320443"], ["https://mivb.openplanner.team/stops/3553", "https://mivb.openplanner.team/stops/4296"], ["https://mivb.openplanner.team/stops/1094F", "https://mivb.openplanner.team/stops/1236"], ["https://mivb.openplanner.team/stops/2256F", "https://mivb.openplanner.team/stops/2550"], ["https://mivb.openplanner.team/stops/1289", "https://mivb.openplanner.team/stops/7830252"], ["https://mivb.openplanner.team/stops/3760", "https://mivb.openplanner.team/stops/7720203"], ["https://mivb.openplanner.team/stops/2912", "https://mivb.openplanner.team/stops/7268"], ["https://mivb.openplanner.team/stops/4014", "https://mivb.openplanner.team/stops/60"], ["https://mivb.openplanner.team/stops/3906", "https://mivb.openplanner.team/stops/3952"], ["https://mivb.openplanner.team/stops/8372", "https://mivb.openplanner.team/stops/0370338"], ["https://mivb.openplanner.team/stops/0650265", "https://mivb.openplanner.team/stops/6428"], ["https://mivb.openplanner.team/stops/1935", "https://mivb.openplanner.team/stops/1954"], ["https://mivb.openplanner.team/stops/2243F", "https://mivb.openplanner.team/stops/2244F"], ["https://mivb.openplanner.team/stops/4106", "https://mivb.openplanner.team/stops/5172F"], ["https://mivb.openplanner.team/stops/1230", "https://mivb.openplanner.team/stops/2546"], ["https://mivb.openplanner.team/stops/2828", "https://mivb.openplanner.team/stops/2830"], ["https://mivb.openplanner.team/stops/6014", "https://mivb.openplanner.team/stops/6359"], ["https://mivb.openplanner.team/stops/2117B", "https://mivb.openplanner.team/stops/2143B"], ["https://mivb.openplanner.team/stops/1196", "https://mivb.openplanner.team/stops/4002G"], ["https://mivb.openplanner.team/stops/1095", "https://mivb.openplanner.team/stops/4656"], ["https://mivb.openplanner.team/stops/6202", "https://mivb.openplanner.team/stops/6419F"], ["https://mivb.openplanner.team/stops/1683F", "https://mivb.openplanner.team/stops/1684F"], ["https://mivb.openplanner.team/stops/1073", "https://mivb.openplanner.team/stops/6124"], ["https://mivb.openplanner.team/stops/0810169", "https://mivb.openplanner.team/stops/0810269"], ["https://mivb.openplanner.team/stops/1741", "https://mivb.openplanner.team/stops/5031F"], ["https://mivb.openplanner.team/stops/5018F", "https://mivb.openplanner.team/stops/5469"], ["https://mivb.openplanner.team/stops/8311", "https://mivb.openplanner.team/stops/44"], ["https://mivb.openplanner.team/stops/1734", "https://mivb.openplanner.team/stops/1824"], ["https://mivb.openplanner.team/stops/2702", "https://mivb.openplanner.team/stops/2771"], ["https://mivb.openplanner.team/stops/6606", "https://mivb.openplanner.team/stops/6651"], ["https://mivb.openplanner.team/stops/3321", "https://mivb.openplanner.team/stops/9311"], ["https://mivb.openplanner.team/stops/2261", "https://mivb.openplanner.team/stops/4595"], ["https://mivb.openplanner.team/stops/1403", "https://mivb.openplanner.team/stops/6055"], ["https://mivb.openplanner.team/stops/8342", "https://mivb.openplanner.team/stops/0340241"], ["https://mivb.openplanner.team/stops/1733", "https://mivb.openplanner.team/stops/1880"], ["https://mivb.openplanner.team/stops/1754", "https://mivb.openplanner.team/stops/2046"], ["https://mivb.openplanner.team/stops/2509", "https://mivb.openplanner.team/stops/5108"], ["https://mivb.openplanner.team/stops/3233", "https://mivb.openplanner.team/stops/3238"], ["https://mivb.openplanner.team/stops/2903", "https://mivb.openplanner.team/stops/3420"], ["https://mivb.openplanner.team/stops/2728", "https://mivb.openplanner.team/stops/5507"], ["https://mivb.openplanner.team/stops/4071", "https://mivb.openplanner.team/stops/4223"], ["https://mivb.openplanner.team/stops/3285", "https://mivb.openplanner.team/stops/3286B"], ["https://mivb.openplanner.team/stops/6806", "https://mivb.openplanner.team/stops/0350640"], ["https://mivb.openplanner.team/stops/2308", "https://mivb.openplanner.team/stops/5707"], ["https://mivb.openplanner.team/stops/3505", "https://mivb.openplanner.team/stops/0310444"], ["https://mivb.openplanner.team/stops/3176", "https://mivb.openplanner.team/stops/3182"], ["https://mivb.openplanner.team/stops/2138B", "https://mivb.openplanner.team/stops/6440"], ["https://mivb.openplanner.team/stops/2217", "https://mivb.openplanner.team/stops/2259F"], ["https://mivb.openplanner.team/stops/3506", "https://mivb.openplanner.team/stops/5469"], ["https://mivb.openplanner.team/stops/1639", "https://mivb.openplanner.team/stops/2039"], ["https://mivb.openplanner.team/stops/3355", "https://mivb.openplanner.team/stops/46"], ["https://mivb.openplanner.team/stops/1846", "https://mivb.openplanner.team/stops/5553"], ["https://mivb.openplanner.team/stops/5102F", "https://mivb.openplanner.team/stops/5174"], ["https://mivb.openplanner.team/stops/1516", "https://mivb.openplanner.team/stops/3251"], ["https://mivb.openplanner.team/stops/5735", "https://mivb.openplanner.team/stops/6359F"], ["https://mivb.openplanner.team/stops/3325", "https://mivb.openplanner.team/stops/6412F"], ["https://mivb.openplanner.team/stops/1736", "https://mivb.openplanner.team/stops/2153"], ["https://mivb.openplanner.team/stops/2835", "https://mivb.openplanner.team/stops/0440249"], ["https://mivb.openplanner.team/stops/3351", "https://mivb.openplanner.team/stops/3353"], ["https://mivb.openplanner.team/stops/5270F", "https://mivb.openplanner.team/stops/5282F"], ["https://mivb.openplanner.team/stops/3313", "https://mivb.openplanner.team/stops/9023"], ["https://mivb.openplanner.team/stops/3532", "https://mivb.openplanner.team/stops/6355"], ["https://mivb.openplanner.team/stops/1209", "https://mivb.openplanner.team/stops/5105"], ["https://mivb.openplanner.team/stops/5509", "https://mivb.openplanner.team/stops/5554"], ["https://mivb.openplanner.team/stops/1985G", "https://mivb.openplanner.team/stops/5816G"], ["https://mivb.openplanner.team/stops/1983", "https://mivb.openplanner.team/stops/2928"], ["https://mivb.openplanner.team/stops/2715", "https://mivb.openplanner.team/stops/6439"], ["https://mivb.openplanner.team/stops/5210", "https://mivb.openplanner.team/stops/5256"], ["https://mivb.openplanner.team/stops/1855", "https://mivb.openplanner.team/stops/2263"], ["https://mivb.openplanner.team/stops/3261", "https://mivb.openplanner.team/stops/0270314"], ["https://mivb.openplanner.team/stops/1747", "https://mivb.openplanner.team/stops/2507"], ["https://mivb.openplanner.team/stops/1962F", "https://mivb.openplanner.team/stops/5817F"], ["https://mivb.openplanner.team/stops/2237", "https://mivb.openplanner.team/stops/5288"], ["https://mivb.openplanner.team/stops/2503", "https://mivb.openplanner.team/stops/7780157"], ["https://mivb.openplanner.team/stops/1758B", "https://mivb.openplanner.team/stops/3547"], ["https://mivb.openplanner.team/stops/1820", "https://mivb.openplanner.team/stops/0010415"], ["https://mivb.openplanner.team/stops/1382", "https://mivb.openplanner.team/stops/0120626"], ["https://mivb.openplanner.team/stops/1500", "https://mivb.openplanner.team/stops/5287"], ["https://mivb.openplanner.team/stops/1497B", "https://mivb.openplanner.team/stops/0050219"], ["https://mivb.openplanner.team/stops/1242", "https://mivb.openplanner.team/stops/3228F"], ["https://mivb.openplanner.team/stops/2015", "https://mivb.openplanner.team/stops/9876"], ["https://mivb.openplanner.team/stops/1421", "https://mivb.openplanner.team/stops/1449"], ["https://mivb.openplanner.team/stops/5350G", "https://mivb.openplanner.team/stops/7252B"], ["https://mivb.openplanner.team/stops/5281", "https://mivb.openplanner.team/stops/5281G"], ["https://mivb.openplanner.team/stops/1964", "https://mivb.openplanner.team/stops/2771"], ["https://mivb.openplanner.team/stops/1322", "https://mivb.openplanner.team/stops/5222F"], ["https://mivb.openplanner.team/stops/6808G", "https://mivb.openplanner.team/stops/6860G"], ["https://mivb.openplanner.team/stops/1260", "https://mivb.openplanner.team/stops/1261"], ["https://mivb.openplanner.team/stops/2376", "https://mivb.openplanner.team/stops/2377"], ["https://mivb.openplanner.team/stops/1089", "https://mivb.openplanner.team/stops/2361"], ["https://mivb.openplanner.team/stops/3230", "https://mivb.openplanner.team/stops/3230F"], ["https://mivb.openplanner.team/stops/6361", "https://mivb.openplanner.team/stops/0370543"], ["https://mivb.openplanner.team/stops/0725", "https://mivb.openplanner.team/stops/8342"], ["https://mivb.openplanner.team/stops/1211B", "https://mivb.openplanner.team/stops/6005"], ["https://mivb.openplanner.team/stops/6416F", "https://mivb.openplanner.team/stops/6418"], ["https://mivb.openplanner.team/stops/1516", "https://mivb.openplanner.team/stops/6454"], ["https://mivb.openplanner.team/stops/2917", "https://mivb.openplanner.team/stops/6204"], ["https://mivb.openplanner.team/stops/2997", "https://mivb.openplanner.team/stops/3470"], ["https://mivb.openplanner.team/stops/5076", "https://mivb.openplanner.team/stops/5076F"], ["https://mivb.openplanner.team/stops/2508", "https://mivb.openplanner.team/stops/5166"], ["https://mivb.openplanner.team/stops/0430448", "https://mivb.openplanner.team/stops/0430648"], ["https://mivb.openplanner.team/stops/0330142", "https://mivb.openplanner.team/stops/0330242"], ["https://mivb.openplanner.team/stops/2215", "https://mivb.openplanner.team/stops/2262"], ["https://mivb.openplanner.team/stops/0631", "https://mivb.openplanner.team/stops/0726"], ["https://mivb.openplanner.team/stops/5720", "https://mivb.openplanner.team/stops/5720F"], ["https://mivb.openplanner.team/stops/1116", "https://mivb.openplanner.team/stops/1195"], ["https://mivb.openplanner.team/stops/8112", "https://mivb.openplanner.team/stops/0110325"], ["https://mivb.openplanner.team/stops/3101", "https://mivb.openplanner.team/stops/9292"], ["https://mivb.openplanner.team/stops/2252", "https://mivb.openplanner.team/stops/6483B"], ["https://mivb.openplanner.team/stops/2574", "https://mivb.openplanner.team/stops/2586"], ["https://mivb.openplanner.team/stops/2414", "https://mivb.openplanner.team/stops/2415"], ["https://mivb.openplanner.team/stops/2548F", "https://mivb.openplanner.team/stops/5116"], ["https://mivb.openplanner.team/stops/1626", "https://mivb.openplanner.team/stops/7770258"], ["https://mivb.openplanner.team/stops/4122", "https://mivb.openplanner.team/stops/7790256"], ["https://mivb.openplanner.team/stops/2513", "https://mivb.openplanner.team/stops/3239"], ["https://mivb.openplanner.team/stops/2218F", "https://mivb.openplanner.team/stops/6858C"], ["https://mivb.openplanner.team/stops/1348", "https://mivb.openplanner.team/stops/4217"], ["https://mivb.openplanner.team/stops/5213", "https://mivb.openplanner.team/stops/5222F"], ["https://mivb.openplanner.team/stops/1739", "https://mivb.openplanner.team/stops/2153"], ["https://mivb.openplanner.team/stops/1202", "https://mivb.openplanner.team/stops/1244"], ["https://mivb.openplanner.team/stops/1818", "https://mivb.openplanner.team/stops/5507"], ["https://mivb.openplanner.team/stops/5916F", "https://mivb.openplanner.team/stops/5953"], ["https://mivb.openplanner.team/stops/5087", "https://mivb.openplanner.team/stops/9052"], ["https://mivb.openplanner.team/stops/4273F", "https://mivb.openplanner.team/stops/9802"], ["https://mivb.openplanner.team/stops/1779", "https://mivb.openplanner.team/stops/5267"], ["https://mivb.openplanner.team/stops/0070221", "https://mivb.openplanner.team/stops/0070521"], ["https://mivb.openplanner.team/stops/1560", "https://mivb.openplanner.team/stops/3904"], ["https://mivb.openplanner.team/stops/0626", "https://mivb.openplanner.team/stops/1168"], ["https://mivb.openplanner.team/stops/0521", "https://mivb.openplanner.team/stops/1900"], ["https://mivb.openplanner.team/stops/1718B", "https://mivb.openplanner.team/stops/3551"], ["https://mivb.openplanner.team/stops/8742", "https://mivb.openplanner.team/stops/8743"], ["https://mivb.openplanner.team/stops/1211B", "https://mivb.openplanner.team/stops/7720303"], ["https://mivb.openplanner.team/stops/2608F", "https://mivb.openplanner.team/stops/2663"], ["https://mivb.openplanner.team/stops/1933B", "https://mivb.openplanner.team/stops/1963"], ["https://mivb.openplanner.team/stops/2962", "https://mivb.openplanner.team/stops/5610"], ["https://mivb.openplanner.team/stops/1729", "https://mivb.openplanner.team/stops/1983"], ["https://mivb.openplanner.team/stops/4502F", "https://mivb.openplanner.team/stops/5725"], ["https://mivb.openplanner.team/stops/1962F", "https://mivb.openplanner.team/stops/1965"], ["https://mivb.openplanner.team/stops/2940F", "https://mivb.openplanner.team/stops/5610"], ["https://mivb.openplanner.team/stops/1679F", "https://mivb.openplanner.team/stops/1682F"], ["https://mivb.openplanner.team/stops/0704", "https://mivb.openplanner.team/stops/0724"], ["https://mivb.openplanner.team/stops/1463", "https://mivb.openplanner.team/stops/6022B"], ["https://mivb.openplanner.team/stops/8261", "https://mivb.openplanner.team/stops/0260137"], ["https://mivb.openplanner.team/stops/1613", "https://mivb.openplanner.team/stops/1616"], ["https://mivb.openplanner.team/stops/2511", "https://mivb.openplanner.team/stops/2567"], ["https://mivb.openplanner.team/stops/2926", "https://mivb.openplanner.team/stops/2990"], ["https://mivb.openplanner.team/stops/2813", "https://mivb.openplanner.team/stops/2856B"], ["https://mivb.openplanner.team/stops/1206", "https://mivb.openplanner.team/stops/1207"], ["https://mivb.openplanner.team/stops/5121F", "https://mivb.openplanner.team/stops/5915"], ["https://mivb.openplanner.team/stops/4266", "https://mivb.openplanner.team/stops/4267"], ["https://mivb.openplanner.team/stops/9959F", "https://mivb.openplanner.team/stops/9986F"], ["https://mivb.openplanner.team/stops/5604", "https://mivb.openplanner.team/stops/9551"], ["https://mivb.openplanner.team/stops/2109B", "https://mivb.openplanner.team/stops/6440"], ["https://mivb.openplanner.team/stops/2365", "https://mivb.openplanner.team/stops/2822"], ["https://mivb.openplanner.team/stops/4599", "https://mivb.openplanner.team/stops/9801"], ["https://mivb.openplanner.team/stops/3058", "https://mivb.openplanner.team/stops/5958C"], ["https://mivb.openplanner.team/stops/5525", "https://mivb.openplanner.team/stops/5532"], ["https://mivb.openplanner.team/stops/1965", "https://mivb.openplanner.team/stops/5860"], ["https://mivb.openplanner.team/stops/1985G", "https://mivb.openplanner.team/stops/5815"], ["https://mivb.openplanner.team/stops/4253", "https://mivb.openplanner.team/stops/8281"], ["https://mivb.openplanner.team/stops/3713", "https://mivb.openplanner.team/stops/3755"], ["https://mivb.openplanner.team/stops/5221F", "https://mivb.openplanner.team/stops/9986F"], ["https://mivb.openplanner.team/stops/1467", "https://mivb.openplanner.team/stops/4251"], ["https://mivb.openplanner.team/stops/2463", "https://mivb.openplanner.team/stops/2463F"], ["https://mivb.openplanner.team/stops/3014", "https://mivb.openplanner.team/stops/5965"], ["https://mivb.openplanner.team/stops/8783", "https://mivb.openplanner.team/stops/9027"], ["https://mivb.openplanner.team/stops/4125", "https://mivb.openplanner.team/stops/4130F"], ["https://mivb.openplanner.team/stops/1598", "https://mivb.openplanner.team/stops/1716"], ["https://mivb.openplanner.team/stops/1599", "https://mivb.openplanner.team/stops/4072"], ["https://mivb.openplanner.team/stops/2216", "https://mivb.openplanner.team/stops/6808G"], ["https://mivb.openplanner.team/stops/9702", "https://mivb.openplanner.team/stops/9778"], ["https://mivb.openplanner.team/stops/1938", "https://mivb.openplanner.team/stops/1944"], ["https://mivb.openplanner.team/stops/4205", "https://mivb.openplanner.team/stops/4228"], ["https://mivb.openplanner.team/stops/8271", "https://mivb.openplanner.team/stops/0270114"], ["https://mivb.openplanner.team/stops/1085", "https://mivb.openplanner.team/stops/2523"], ["https://mivb.openplanner.team/stops/2289", "https://mivb.openplanner.team/stops/8081"], ["https://mivb.openplanner.team/stops/2108", "https://mivb.openplanner.team/stops/6931B"], ["https://mivb.openplanner.team/stops/2352", "https://mivb.openplanner.team/stops/2856B"], ["https://mivb.openplanner.team/stops/1640B", "https://mivb.openplanner.team/stops/0130127"], ["https://mivb.openplanner.team/stops/5520F", "https://mivb.openplanner.team/stops/7501"], ["https://mivb.openplanner.team/stops/1626", "https://mivb.openplanner.team/stops/5074"], ["https://mivb.openplanner.team/stops/2586", "https://mivb.openplanner.team/stops/6800"], ["https://mivb.openplanner.team/stops/6608G", "https://mivb.openplanner.team/stops/6650G"], ["https://mivb.openplanner.team/stops/0636", "https://mivb.openplanner.team/stops/0726"], ["https://mivb.openplanner.team/stops/1043", "https://mivb.openplanner.team/stops/9851"], ["https://mivb.openplanner.team/stops/1380", "https://mivb.openplanner.team/stops/1381"], ["https://mivb.openplanner.team/stops/6014", "https://mivb.openplanner.team/stops/8421"], ["https://mivb.openplanner.team/stops/2824", "https://mivb.openplanner.team/stops/5700G"], ["https://mivb.openplanner.team/stops/1915", "https://mivb.openplanner.team/stops/5210"], ["https://mivb.openplanner.team/stops/1236", "https://mivb.openplanner.team/stops/4055G"], ["https://mivb.openplanner.team/stops/4230", "https://mivb.openplanner.team/stops/7810254"], ["https://mivb.openplanner.team/stops/0725", "https://mivb.openplanner.team/stops/0340441"], ["https://mivb.openplanner.team/stops/5415F", "https://mivb.openplanner.team/stops/5459"], ["https://mivb.openplanner.team/stops/3100", "https://mivb.openplanner.team/stops/6018"], ["https://mivb.openplanner.team/stops/4294", "https://mivb.openplanner.team/stops/4456"], ["https://mivb.openplanner.team/stops/6411", "https://mivb.openplanner.team/stops/6412F"], ["https://mivb.openplanner.team/stops/1683F", "https://mivb.openplanner.team/stops/1743"], ["https://mivb.openplanner.team/stops/4217", "https://mivb.openplanner.team/stops/4258"], ["https://mivb.openplanner.team/stops/4116", "https://mivb.openplanner.team/stops/0470659"], ["https://mivb.openplanner.team/stops/3309F", "https://mivb.openplanner.team/stops/3414"], ["https://mivb.openplanner.team/stops/6061", "https://mivb.openplanner.team/stops/6369"], ["https://mivb.openplanner.team/stops/6705F", "https://mivb.openplanner.team/stops/6806"], ["https://mivb.openplanner.team/stops/1642F", "https://mivb.openplanner.team/stops/5762"], ["https://mivb.openplanner.team/stops/1719", "https://mivb.openplanner.team/stops/1812"], ["https://mivb.openplanner.team/stops/8794", "https://mivb.openplanner.team/stops/7790156"], ["https://mivb.openplanner.team/stops/1723B", "https://mivb.openplanner.team/stops/1725"], ["https://mivb.openplanner.team/stops/2316", "https://mivb.openplanner.team/stops/2358"], ["https://mivb.openplanner.team/stops/5223F", "https://mivb.openplanner.team/stops/5226F"], ["https://mivb.openplanner.team/stops/8062", "https://mivb.openplanner.team/stops/0060420"], ["https://mivb.openplanner.team/stops/1678F", "https://mivb.openplanner.team/stops/4159"], ["https://mivb.openplanner.team/stops/1917", "https://mivb.openplanner.team/stops/1973"], ["https://mivb.openplanner.team/stops/7529", "https://mivb.openplanner.team/stops/0310244"], ["https://mivb.openplanner.team/stops/1901", "https://mivb.openplanner.team/stops/2221"], ["https://mivb.openplanner.team/stops/6204", "https://mivb.openplanner.team/stops/6258"], ["https://mivb.openplanner.team/stops/5100B", "https://mivb.openplanner.team/stops/5159F"], ["https://mivb.openplanner.team/stops/1929", "https://mivb.openplanner.team/stops/1949"], ["https://mivb.openplanner.team/stops/2252", "https://mivb.openplanner.team/stops/7690206"], ["https://mivb.openplanner.team/stops/1422", "https://mivb.openplanner.team/stops/5223F"], ["https://mivb.openplanner.team/stops/2291B", "https://mivb.openplanner.team/stops/8221"], ["https://mivb.openplanner.team/stops/4274", "https://mivb.openplanner.team/stops/55"], ["https://mivb.openplanner.team/stops/2803", "https://mivb.openplanner.team/stops/2872"], ["https://mivb.openplanner.team/stops/1064", "https://mivb.openplanner.team/stops/5172F"], ["https://mivb.openplanner.team/stops/1781", "https://mivb.openplanner.team/stops/4323"], ["https://mivb.openplanner.team/stops/3608", "https://mivb.openplanner.team/stops/3756"], ["https://mivb.openplanner.team/stops/2817", "https://mivb.openplanner.team/stops/2827"], ["https://mivb.openplanner.team/stops/3099", "https://mivb.openplanner.team/stops/3171"], ["https://mivb.openplanner.team/stops/8041", "https://mivb.openplanner.team/stops/8402"], ["https://mivb.openplanner.team/stops/1713", "https://mivb.openplanner.team/stops/6155F"], ["https://mivb.openplanner.team/stops/2954B", "https://mivb.openplanner.team/stops/5814"], ["https://mivb.openplanner.team/stops/3203", "https://mivb.openplanner.team/stops/3204"], ["https://mivb.openplanner.team/stops/1776", "https://mivb.openplanner.team/stops/8042"], ["https://mivb.openplanner.team/stops/1703", "https://mivb.openplanner.team/stops/1800"], ["https://mivb.openplanner.team/stops/2828", "https://mivb.openplanner.team/stops/0430348"], ["https://mivb.openplanner.team/stops/1010", "https://mivb.openplanner.team/stops/6867F"], ["https://mivb.openplanner.team/stops/6171", "https://mivb.openplanner.team/stops/8794"], ["https://mivb.openplanner.team/stops/5554", "https://mivb.openplanner.team/stops/5659"], ["https://mivb.openplanner.team/stops/1278", "https://mivb.openplanner.team/stops/5261"], ["https://mivb.openplanner.team/stops/5813", "https://mivb.openplanner.team/stops/5814"], ["https://mivb.openplanner.team/stops/1910", "https://mivb.openplanner.team/stops/1981"], ["https://mivb.openplanner.team/stops/3904", "https://mivb.openplanner.team/stops/3961"], ["https://mivb.openplanner.team/stops/7660109", "https://mivb.openplanner.team/stops/8662"], ["https://mivb.openplanner.team/stops/1008", "https://mivb.openplanner.team/stops/1067"], ["https://mivb.openplanner.team/stops/2875", "https://mivb.openplanner.team/stops/5087"], ["https://mivb.openplanner.team/stops/4005F", "https://mivb.openplanner.team/stops/4055G"], ["https://mivb.openplanner.team/stops/2805F", "https://mivb.openplanner.team/stops/6502"], ["https://mivb.openplanner.team/stops/2528", "https://mivb.openplanner.team/stops/2544"], ["https://mivb.openplanner.team/stops/0040218", "https://mivb.openplanner.team/stops/0040518"], ["https://mivb.openplanner.team/stops/3200", "https://mivb.openplanner.team/stops/3207"], ["https://mivb.openplanner.team/stops/1466", "https://mivb.openplanner.team/stops/1768"], ["https://mivb.openplanner.team/stops/2408", "https://mivb.openplanner.team/stops/2463"], ["https://mivb.openplanner.team/stops/1765", "https://mivb.openplanner.team/stops/4158"], ["https://mivb.openplanner.team/stops/2661", "https://mivb.openplanner.team/stops/5922"], ["https://mivb.openplanner.team/stops/2148", "https://mivb.openplanner.team/stops/2150"], ["https://mivb.openplanner.team/stops/2762", "https://mivb.openplanner.team/stops/6439"], ["https://mivb.openplanner.team/stops/3448B", "https://mivb.openplanner.team/stops/4556"], ["https://mivb.openplanner.team/stops/3506", "https://mivb.openplanner.team/stops/3518B"], ["https://mivb.openplanner.team/stops/3800", "https://mivb.openplanner.team/stops/0360139"], ["https://mivb.openplanner.team/stops/1809", "https://mivb.openplanner.team/stops/1810"], ["https://mivb.openplanner.team/stops/2143B", "https://mivb.openplanner.team/stops/2718"], ["https://mivb.openplanner.team/stops/6436", "https://mivb.openplanner.team/stops/6437F"], ["https://mivb.openplanner.team/stops/1077", "https://mivb.openplanner.team/stops/2810"], ["https://mivb.openplanner.team/stops/2548", "https://mivb.openplanner.team/stops/5757"], ["https://mivb.openplanner.team/stops/1169", "https://mivb.openplanner.team/stops/3006"], ["https://mivb.openplanner.team/stops/1099", "https://mivb.openplanner.team/stops/1142"], ["https://mivb.openplanner.team/stops/0811", "https://mivb.openplanner.team/stops/69"], ["https://mivb.openplanner.team/stops/6022B", "https://mivb.openplanner.team/stops/6054B"], ["https://mivb.openplanner.team/stops/1706", "https://mivb.openplanner.team/stops/1983"], ["https://mivb.openplanner.team/stops/0600462", "https://mivb.openplanner.team/stops/0600962"], ["https://mivb.openplanner.team/stops/1866", "https://mivb.openplanner.team/stops/0200231"], ["https://mivb.openplanner.team/stops/3802", "https://mivb.openplanner.team/stops/3804B"], ["https://mivb.openplanner.team/stops/1995", "https://mivb.openplanner.team/stops/2702"], ["https://mivb.openplanner.team/stops/3123", "https://mivb.openplanner.team/stops/4366"], ["https://mivb.openplanner.team/stops/9052", "https://mivb.openplanner.team/stops/9056F"], ["https://mivb.openplanner.team/stops/8051", "https://mivb.openplanner.team/stops/0050319"], ["https://mivb.openplanner.team/stops/2924", "https://mivb.openplanner.team/stops/3306"], ["https://mivb.openplanner.team/stops/9164", "https://mivb.openplanner.team/stops/9553"], ["https://mivb.openplanner.team/stops/3109", "https://mivb.openplanner.team/stops/7484"], ["https://mivb.openplanner.team/stops/1056", "https://mivb.openplanner.team/stops/5072"], ["https://mivb.openplanner.team/stops/8022", "https://mivb.openplanner.team/stops/0020616"], ["https://mivb.openplanner.team/stops/0650265", "https://mivb.openplanner.team/stops/6162"], ["https://mivb.openplanner.team/stops/1646F", "https://mivb.openplanner.team/stops/6201F"], ["https://mivb.openplanner.team/stops/4074B", "https://mivb.openplanner.team/stops/8292"], ["https://mivb.openplanner.team/stops/1904", "https://mivb.openplanner.team/stops/8432"], ["https://mivb.openplanner.team/stops/6359F", "https://mivb.openplanner.team/stops/6411"], ["https://mivb.openplanner.team/stops/1018", "https://mivb.openplanner.team/stops/3610G"], ["https://mivb.openplanner.team/stops/1334", "https://mivb.openplanner.team/stops/1686F"], ["https://mivb.openplanner.team/stops/2835", "https://mivb.openplanner.team/stops/2837"], ["https://mivb.openplanner.team/stops/2248", "https://mivb.openplanner.team/stops/2250"], ["https://mivb.openplanner.team/stops/6421F", "https://mivb.openplanner.team/stops/6422F"], ["https://mivb.openplanner.team/stops/2916", "https://mivb.openplanner.team/stops/5307G"], ["https://mivb.openplanner.team/stops/2299", "https://mivb.openplanner.team/stops/2376"], ["https://mivb.openplanner.team/stops/6214", "https://mivb.openplanner.team/stops/6258"], ["https://mivb.openplanner.team/stops/1951", "https://mivb.openplanner.team/stops/4075"], ["https://mivb.openplanner.team/stops/1479", "https://mivb.openplanner.team/stops/1498"], ["https://mivb.openplanner.team/stops/1103", "https://mivb.openplanner.team/stops/1680F"], ["https://mivb.openplanner.team/stops/1731", "https://mivb.openplanner.team/stops/5284F"], ["https://mivb.openplanner.team/stops/2234", "https://mivb.openplanner.team/stops/3630"], ["https://mivb.openplanner.team/stops/5107B", "https://mivb.openplanner.team/stops/5116"], ["https://mivb.openplanner.team/stops/2283", "https://mivb.openplanner.team/stops/8082"], ["https://mivb.openplanner.team/stops/3613F", "https://mivb.openplanner.team/stops/8"], ["https://mivb.openplanner.team/stops/3409", "https://mivb.openplanner.team/stops/5357"], ["https://mivb.openplanner.team/stops/4254B", "https://mivb.openplanner.team/stops/4271"], ["https://mivb.openplanner.team/stops/0040318", "https://mivb.openplanner.team/stops/8402"], ["https://mivb.openplanner.team/stops/3905", "https://mivb.openplanner.team/stops/3961"], ["https://mivb.openplanner.team/stops/1376B", "https://mivb.openplanner.team/stops/1703"], ["https://mivb.openplanner.team/stops/1201", "https://mivb.openplanner.team/stops/1260"], ["https://mivb.openplanner.team/stops/0010215", "https://mivb.openplanner.team/stops/0010415"], ["https://mivb.openplanner.team/stops/0826", "https://mivb.openplanner.team/stops/6448"], ["https://mivb.openplanner.team/stops/1520", "https://mivb.openplanner.team/stops/3908"], ["https://mivb.openplanner.team/stops/2216", "https://mivb.openplanner.team/stops/2261"], ["https://mivb.openplanner.team/stops/1141", "https://mivb.openplanner.team/stops/1152"], ["https://mivb.openplanner.team/stops/1578", "https://mivb.openplanner.team/stops/3899"], ["https://mivb.openplanner.team/stops/1928", "https://mivb.openplanner.team/stops/2771"], ["https://mivb.openplanner.team/stops/0820270", "https://mivb.openplanner.team/stops/1563"], ["https://mivb.openplanner.team/stops/1855", "https://mivb.openplanner.team/stops/6603"], ["https://mivb.openplanner.team/stops/6811", "https://mivb.openplanner.team/stops/6812"], ["https://mivb.openplanner.team/stops/1712", "https://mivb.openplanner.team/stops/6113F"], ["https://mivb.openplanner.team/stops/1066", "https://mivb.openplanner.team/stops/6800F"], ["https://mivb.openplanner.team/stops/0470F", "https://mivb.openplanner.team/stops/0470751"], ["https://mivb.openplanner.team/stops/1042", "https://mivb.openplanner.team/stops/0080522"], ["https://mivb.openplanner.team/stops/2152", "https://mivb.openplanner.team/stops/2714"], ["https://mivb.openplanner.team/stops/1102", "https://mivb.openplanner.team/stops/4599"], ["https://mivb.openplanner.team/stops/2546", "https://mivb.openplanner.team/stops/5123"], ["https://mivb.openplanner.team/stops/6799F", "https://mivb.openplanner.team/stops/7670208"], ["https://mivb.openplanner.team/stops/2910", "https://mivb.openplanner.team/stops/2982"], ["https://mivb.openplanner.team/stops/2029", "https://mivb.openplanner.team/stops/2087"], ["https://mivb.openplanner.team/stops/2014", "https://mivb.openplanner.team/stops/2086"], ["https://mivb.openplanner.team/stops/0670267", "https://mivb.openplanner.team/stops/1220"], ["https://mivb.openplanner.team/stops/1479", "https://mivb.openplanner.team/stops/3853"], ["https://mivb.openplanner.team/stops/1752", "https://mivb.openplanner.team/stops/3530"], ["https://mivb.openplanner.team/stops/6166", "https://mivb.openplanner.team/stops/0350740"], ["https://mivb.openplanner.team/stops/1726", "https://mivb.openplanner.team/stops/0320443"], ["https://mivb.openplanner.team/stops/1801", "https://mivb.openplanner.team/stops/0340141"], ["https://mivb.openplanner.team/stops/2824", "https://mivb.openplanner.team/stops/2857B"], ["https://mivb.openplanner.team/stops/1714", "https://mivb.openplanner.team/stops/5267"], ["https://mivb.openplanner.team/stops/2407", "https://mivb.openplanner.team/stops/5151"], ["https://mivb.openplanner.team/stops/8372", "https://mivb.openplanner.team/stops/0370138"], ["https://mivb.openplanner.team/stops/3682", "https://mivb.openplanner.team/stops/3856"], ["https://mivb.openplanner.team/stops/2037", "https://mivb.openplanner.team/stops/0130127"], ["https://mivb.openplanner.team/stops/1280B", "https://mivb.openplanner.team/stops/3508F"], ["https://mivb.openplanner.team/stops/1077", "https://mivb.openplanner.team/stops/6174F"], ["https://mivb.openplanner.team/stops/2672", "https://mivb.openplanner.team/stops/5115F"], ["https://mivb.openplanner.team/stops/2117B", "https://mivb.openplanner.team/stops/2146"], ["https://mivb.openplanner.team/stops/5560", "https://mivb.openplanner.team/stops/0100324"], ["https://mivb.openplanner.team/stops/1723B", "https://mivb.openplanner.team/stops/2086"], ["https://mivb.openplanner.team/stops/6016", "https://mivb.openplanner.team/stops/9023"], ["https://mivb.openplanner.team/stops/1099", "https://mivb.openplanner.team/stops/4011"], ["https://mivb.openplanner.team/stops/4010", "https://mivb.openplanner.team/stops/4165"], ["https://mivb.openplanner.team/stops/1511", "https://mivb.openplanner.team/stops/6082"], ["https://mivb.openplanner.team/stops/2609", "https://mivb.openplanner.team/stops/5963"], ["https://mivb.openplanner.team/stops/2314", "https://mivb.openplanner.team/stops/2329"], ["https://mivb.openplanner.team/stops/2859", "https://mivb.openplanner.team/stops/5010"], ["https://mivb.openplanner.team/stops/1321", "https://mivb.openplanner.team/stops/1528"], ["https://mivb.openplanner.team/stops/1489", "https://mivb.openplanner.team/stops/2319"], ["https://mivb.openplanner.team/stops/8342", "https://mivb.openplanner.team/stops/0340141"], ["https://mivb.openplanner.team/stops/0040418", "https://mivb.openplanner.team/stops/0300245"], ["https://mivb.openplanner.team/stops/3233", "https://mivb.openplanner.team/stops/3239"], ["https://mivb.openplanner.team/stops/2214", "https://mivb.openplanner.team/stops/6655"], ["https://mivb.openplanner.team/stops/4264B", "https://mivb.openplanner.team/stops/7820153"], ["https://mivb.openplanner.team/stops/4111", "https://mivb.openplanner.team/stops/0290112"], ["https://mivb.openplanner.team/stops/1376B", "https://mivb.openplanner.team/stops/1800"], ["https://mivb.openplanner.team/stops/2837", "https://mivb.openplanner.team/stops/0430348"], ["https://mivb.openplanner.team/stops/1815", "https://mivb.openplanner.team/stops/5271F"], ["https://mivb.openplanner.team/stops/1598", "https://mivb.openplanner.team/stops/3515"], ["https://mivb.openplanner.team/stops/2138B", "https://mivb.openplanner.team/stops/6439"], ["https://mivb.openplanner.team/stops/6484B", "https://mivb.openplanner.team/stops/6811"], ["https://mivb.openplanner.team/stops/2456", "https://mivb.openplanner.team/stops/5813"], ["https://mivb.openplanner.team/stops/6433", "https://mivb.openplanner.team/stops/0300245"], ["https://mivb.openplanner.team/stops/2217", "https://mivb.openplanner.team/stops/2259"], ["https://mivb.openplanner.team/stops/9729", "https://mivb.openplanner.team/stops/9753"], ["https://mivb.openplanner.team/stops/2256B", "https://mivb.openplanner.team/stops/7700205"], ["https://mivb.openplanner.team/stops/3761", "https://mivb.openplanner.team/stops/5307G"], ["https://mivb.openplanner.team/stops/1348", "https://mivb.openplanner.team/stops/1356"], ["https://mivb.openplanner.team/stops/0240135", "https://mivb.openplanner.team/stops/0240235"], ["https://mivb.openplanner.team/stops/1782", "https://mivb.openplanner.team/stops/4116"], ["https://mivb.openplanner.team/stops/1818", "https://mivb.openplanner.team/stops/1819"], ["https://mivb.openplanner.team/stops/3114", "https://mivb.openplanner.team/stops/6061"], ["https://mivb.openplanner.team/stops/1138", "https://mivb.openplanner.team/stops/1521"], ["https://mivb.openplanner.team/stops/1206", "https://mivb.openplanner.team/stops/1257"], ["https://mivb.openplanner.team/stops/3549", "https://mivb.openplanner.team/stops/0250136"], ["https://mivb.openplanner.team/stops/5040", "https://mivb.openplanner.team/stops/6081"], ["https://mivb.openplanner.team/stops/1077", "https://mivb.openplanner.team/stops/2200F"], ["https://mivb.openplanner.team/stops/1209", "https://mivb.openplanner.team/stops/5105F"], ["https://mivb.openplanner.team/stops/6314", "https://mivb.openplanner.team/stops/0370543"], ["https://mivb.openplanner.team/stops/1920", "https://mivb.openplanner.team/stops/1970"], ["https://mivb.openplanner.team/stops/6437F", "https://mivb.openplanner.team/stops/6438"], ["https://mivb.openplanner.team/stops/8241", "https://mivb.openplanner.team/stops/35"], ["https://mivb.openplanner.team/stops/3957", "https://mivb.openplanner.team/stops/4505"], ["https://mivb.openplanner.team/stops/1855", "https://mivb.openplanner.team/stops/2264"], ["https://mivb.openplanner.team/stops/2137", "https://mivb.openplanner.team/stops/6934F"], ["https://mivb.openplanner.team/stops/1134", "https://mivb.openplanner.team/stops/1159"], ["https://mivb.openplanner.team/stops/1938", "https://mivb.openplanner.team/stops/1963"], ["https://mivb.openplanner.team/stops/1758B", "https://mivb.openplanner.team/stops/3546"], ["https://mivb.openplanner.team/stops/2167", "https://mivb.openplanner.team/stops/2704"], ["https://mivb.openplanner.team/stops/1482", "https://mivb.openplanner.team/stops/2319"], ["https://mivb.openplanner.team/stops/2260", "https://mivb.openplanner.team/stops/2260F"], ["https://mivb.openplanner.team/stops/2760B", "https://mivb.openplanner.team/stops/6439"], ["https://mivb.openplanner.team/stops/4293", "https://mivb.openplanner.team/stops/4299"], ["https://mivb.openplanner.team/stops/4152", "https://mivb.openplanner.team/stops/0470659"], ["https://mivb.openplanner.team/stops/1964", "https://mivb.openplanner.team/stops/2765"], ["https://mivb.openplanner.team/stops/2296", "https://mivb.openplanner.team/stops/3347"], ["https://mivb.openplanner.team/stops/5826", "https://mivb.openplanner.team/stops/5860"], ["https://mivb.openplanner.team/stops/1674F", "https://mivb.openplanner.team/stops/1747"], ["https://mivb.openplanner.team/stops/1089", "https://mivb.openplanner.team/stops/2360"], ["https://mivb.openplanner.team/stops/9551", "https://mivb.openplanner.team/stops/9578"], ["https://mivb.openplanner.team/stops/6313", "https://mivb.openplanner.team/stops/8321"], ["https://mivb.openplanner.team/stops/4857B", "https://mivb.openplanner.team/stops/6931B"], ["https://mivb.openplanner.team/stops/5724", "https://mivb.openplanner.team/stops/5725"], ["https://mivb.openplanner.team/stops/2996", "https://mivb.openplanner.team/stops/3470"], ["https://mivb.openplanner.team/stops/6172", "https://mivb.openplanner.team/stops/9027"], ["https://mivb.openplanner.team/stops/0430448", "https://mivb.openplanner.team/stops/0430548"], ["https://mivb.openplanner.team/stops/5700G", "https://mivb.openplanner.team/stops/5806"], ["https://mivb.openplanner.team/stops/2462", "https://mivb.openplanner.team/stops/6106"], ["https://mivb.openplanner.team/stops/1381", "https://mivb.openplanner.team/stops/9561"], ["https://mivb.openplanner.team/stops/2215", "https://mivb.openplanner.team/stops/2261"], ["https://mivb.openplanner.team/stops/1640B", "https://mivb.openplanner.team/stops/27"], ["https://mivb.openplanner.team/stops/8071", "https://mivb.openplanner.team/stops/0070421"], ["https://mivb.openplanner.team/stops/2263", "https://mivb.openplanner.team/stops/6655"], ["https://mivb.openplanner.team/stops/2548F", "https://mivb.openplanner.team/stops/5111B"], ["https://mivb.openplanner.team/stops/2872", "https://mivb.openplanner.team/stops/2873"], ["https://mivb.openplanner.team/stops/2513", "https://mivb.openplanner.team/stops/3238"], ["https://mivb.openplanner.team/stops/1327", "https://mivb.openplanner.team/stops/2550"], ["https://mivb.openplanner.team/stops/0070421", "https://mivb.openplanner.team/stops/21"], ["https://mivb.openplanner.team/stops/1160", "https://mivb.openplanner.team/stops/0050419"], ["https://mivb.openplanner.team/stops/9682", "https://mivb.openplanner.team/stops/9685"], ["https://mivb.openplanner.team/stops/1167", "https://mivb.openplanner.team/stops/2245"], ["https://mivb.openplanner.team/stops/0230434", "https://mivb.openplanner.team/stops/34"], ["https://mivb.openplanner.team/stops/1874", "https://mivb.openplanner.team/stops/8102"], ["https://mivb.openplanner.team/stops/5916F", "https://mivb.openplanner.team/stops/5952F"], ["https://mivb.openplanner.team/stops/6806F", "https://mivb.openplanner.team/stops/0350640"], ["https://mivb.openplanner.team/stops/1521", "https://mivb.openplanner.team/stops/1558"], ["https://mivb.openplanner.team/stops/1620B", "https://mivb.openplanner.team/stops/5518"], ["https://mivb.openplanner.team/stops/4273F", "https://mivb.openplanner.team/stops/9825F"], ["https://mivb.openplanner.team/stops/5963", "https://mivb.openplanner.team/stops/9686"], ["https://mivb.openplanner.team/stops/4344", "https://mivb.openplanner.team/stops/4408"], ["https://mivb.openplanner.team/stops/3608", "https://mivb.openplanner.team/stops/7670108"], ["https://mivb.openplanner.team/stops/5519", "https://mivb.openplanner.team/stops/5528F"], ["https://mivb.openplanner.team/stops/2314", "https://mivb.openplanner.team/stops/3005"], ["https://mivb.openplanner.team/stops/3158B", "https://mivb.openplanner.team/stops/3921"], ["https://mivb.openplanner.team/stops/2938", "https://mivb.openplanner.team/stops/2953"], ["https://mivb.openplanner.team/stops/2608F", "https://mivb.openplanner.team/stops/2663G"], ["https://mivb.openplanner.team/stops/1734", "https://mivb.openplanner.team/stops/0300145"], ["https://mivb.openplanner.team/stops/2801", "https://mivb.openplanner.team/stops/2803"], ["https://mivb.openplanner.team/stops/4260", "https://mivb.openplanner.team/stops/4261"], ["https://mivb.openplanner.team/stops/3210B", "https://mivb.openplanner.team/stops/3765"], ["https://mivb.openplanner.team/stops/1239", "https://mivb.openplanner.team/stops/2604F"], ["https://mivb.openplanner.team/stops/2301", "https://mivb.openplanner.team/stops/8012"], ["https://mivb.openplanner.team/stops/8642", "https://mivb.openplanner.team/stops/7640111"], ["https://mivb.openplanner.team/stops/2503", "https://mivb.openplanner.team/stops/2577"], ["https://mivb.openplanner.team/stops/1463", "https://mivb.openplanner.team/stops/6023"], ["https://mivb.openplanner.team/stops/2221", "https://mivb.openplanner.team/stops/0430548"], ["https://mivb.openplanner.team/stops/2535B", "https://mivb.openplanner.team/stops/8702"], ["https://mivb.openplanner.team/stops/2262", "https://mivb.openplanner.team/stops/6068"], ["https://mivb.openplanner.team/stops/4598", "https://mivb.openplanner.team/stops/5102F"], ["https://mivb.openplanner.team/stops/5404", "https://mivb.openplanner.team/stops/5467"], ["https://mivb.openplanner.team/stops/1125", "https://mivb.openplanner.team/stops/2470"], ["https://mivb.openplanner.team/stops/4075", "https://mivb.openplanner.team/stops/4076"], ["https://mivb.openplanner.team/stops/0600962", "https://mivb.openplanner.team/stops/0606"], ["https://mivb.openplanner.team/stops/0470F", "https://mivb.openplanner.team/stops/0473F"], ["https://mivb.openplanner.team/stops/6474F", "https://mivb.openplanner.team/stops/8161"], ["https://mivb.openplanner.team/stops/1206", "https://mivb.openplanner.team/stops/2536"], ["https://mivb.openplanner.team/stops/1541", "https://mivb.openplanner.team/stops/7670108"], ["https://mivb.openplanner.team/stops/8221", "https://mivb.openplanner.team/stops/0220233"], ["https://mivb.openplanner.team/stops/8271", "https://mivb.openplanner.team/stops/0270314"], ["https://mivb.openplanner.team/stops/2991", "https://mivb.openplanner.team/stops/9777"], ["https://mivb.openplanner.team/stops/5028", "https://mivb.openplanner.team/stops/5057"], ["https://mivb.openplanner.team/stops/2710G", "https://mivb.openplanner.team/stops/2764G"], ["https://mivb.openplanner.team/stops/1056", "https://mivb.openplanner.team/stops/5089"], ["https://mivb.openplanner.team/stops/5041F", "https://mivb.openplanner.team/stops/5045"], ["https://mivb.openplanner.team/stops/1024", "https://mivb.openplanner.team/stops/1082"], ["https://mivb.openplanner.team/stops/8251", "https://mivb.openplanner.team/stops/0250236"], ["https://mivb.openplanner.team/stops/1707", "https://mivb.openplanner.team/stops/2245"], ["https://mivb.openplanner.team/stops/1320", "https://mivb.openplanner.team/stops/3284"], ["https://mivb.openplanner.team/stops/1915", "https://mivb.openplanner.team/stops/5211"], ["https://mivb.openplanner.team/stops/0703", "https://mivb.openplanner.team/stops/0340441"], ["https://mivb.openplanner.team/stops/5551", "https://mivb.openplanner.team/stops/5553"], ["https://mivb.openplanner.team/stops/2124", "https://mivb.openplanner.team/stops/2133"], ["https://mivb.openplanner.team/stops/3410", "https://mivb.openplanner.team/stops/3451"], ["https://mivb.openplanner.team/stops/4232", "https://mivb.openplanner.team/stops/7790456"], ["https://mivb.openplanner.team/stops/1099", "https://mivb.openplanner.team/stops/4273F"], ["https://mivb.openplanner.team/stops/6008", "https://mivb.openplanner.team/stops/6009"], ["https://mivb.openplanner.team/stops/3129", "https://mivb.openplanner.team/stops/5038"], ["https://mivb.openplanner.team/stops/3552", "https://mivb.openplanner.team/stops/4296"], ["https://mivb.openplanner.team/stops/1110", "https://mivb.openplanner.team/stops/1955"], ["https://mivb.openplanner.team/stops/1509", "https://mivb.openplanner.team/stops/1582"], ["https://mivb.openplanner.team/stops/1538B", "https://mivb.openplanner.team/stops/3273"], ["https://mivb.openplanner.team/stops/3504", "https://mivb.openplanner.team/stops/3505"], ["https://mivb.openplanner.team/stops/8062", "https://mivb.openplanner.team/stops/0060120"], ["https://mivb.openplanner.team/stops/3125", "https://mivb.openplanner.team/stops/3480"], ["https://mivb.openplanner.team/stops/4126", "https://mivb.openplanner.team/stops/4126F"], ["https://mivb.openplanner.team/stops/1467", "https://mivb.openplanner.team/stops/9047"], ["https://mivb.openplanner.team/stops/6309F", "https://mivb.openplanner.team/stops/6356F"], ["https://mivb.openplanner.team/stops/1816", "https://mivb.openplanner.team/stops/1859"], ["https://mivb.openplanner.team/stops/1408", "https://mivb.openplanner.team/stops/1458"], ["https://mivb.openplanner.team/stops/0600262", "https://mivb.openplanner.team/stops/8012"], ["https://mivb.openplanner.team/stops/2567", "https://mivb.openplanner.team/stops/3239"], ["https://mivb.openplanner.team/stops/9626", "https://mivb.openplanner.team/stops/9707"], ["https://mivb.openplanner.team/stops/4344", "https://mivb.openplanner.team/stops/4348"], ["https://mivb.openplanner.team/stops/1826", "https://mivb.openplanner.team/stops/1851"], ["https://mivb.openplanner.team/stops/1727", "https://mivb.openplanner.team/stops/4160"], ["https://mivb.openplanner.team/stops/1736", "https://mivb.openplanner.team/stops/1739"], ["https://mivb.openplanner.team/stops/1747", "https://mivb.openplanner.team/stops/9103"], ["https://mivb.openplanner.team/stops/2803", "https://mivb.openplanner.team/stops/2871"], ["https://mivb.openplanner.team/stops/5822F", "https://mivb.openplanner.team/stops/5823"], ["https://mivb.openplanner.team/stops/1822", "https://mivb.openplanner.team/stops/1823"], ["https://mivb.openplanner.team/stops/3709", "https://mivb.openplanner.team/stops/8711"], ["https://mivb.openplanner.team/stops/2218F", "https://mivb.openplanner.team/stops/3805"], ["https://mivb.openplanner.team/stops/2319", "https://mivb.openplanner.team/stops/6856"], ["https://mivb.openplanner.team/stops/2671", "https://mivb.openplanner.team/stops/6106"], ["https://mivb.openplanner.team/stops/2831", "https://mivb.openplanner.team/stops/2835"], ["https://mivb.openplanner.team/stops/1402B", "https://mivb.openplanner.team/stops/3218"], ["https://mivb.openplanner.team/stops/5813", "https://mivb.openplanner.team/stops/5813F"], ["https://mivb.openplanner.team/stops/1710", "https://mivb.openplanner.team/stops/4158"], ["https://mivb.openplanner.team/stops/3904", "https://mivb.openplanner.team/stops/3957"], ["https://mivb.openplanner.team/stops/3232", "https://mivb.openplanner.team/stops/6004"], ["https://mivb.openplanner.team/stops/2927", "https://mivb.openplanner.team/stops/0050119"], ["https://mivb.openplanner.team/stops/4601", "https://mivb.openplanner.team/stops/4653"], ["https://mivb.openplanner.team/stops/2528", "https://mivb.openplanner.team/stops/2541"], ["https://mivb.openplanner.team/stops/0040218", "https://mivb.openplanner.team/stops/0040618"], ["https://mivb.openplanner.team/stops/1765", "https://mivb.openplanner.team/stops/4157"], ["https://mivb.openplanner.team/stops/1043", "https://mivb.openplanner.team/stops/2028"], ["https://mivb.openplanner.team/stops/5905", "https://mivb.openplanner.team/stops/5906"], ["https://mivb.openplanner.team/stops/2608", "https://mivb.openplanner.team/stops/2952B"], ["https://mivb.openplanner.team/stops/9851", "https://mivb.openplanner.team/stops/9853"], ["https://mivb.openplanner.team/stops/4308", "https://mivb.openplanner.team/stops/4362"], ["https://mivb.openplanner.team/stops/9607", "https://mivb.openplanner.team/stops/9631"], ["https://mivb.openplanner.team/stops/3199", "https://mivb.openplanner.team/stops/3201"], ["https://mivb.openplanner.team/stops/1995", "https://mivb.openplanner.team/stops/2701"], ["https://mivb.openplanner.team/stops/8051", "https://mivb.openplanner.team/stops/0050219"], ["https://mivb.openplanner.team/stops/3226F", "https://mivb.openplanner.team/stops/3263F"], ["https://mivb.openplanner.team/stops/0470151", "https://mivb.openplanner.team/stops/0470251"], ["https://mivb.openplanner.team/stops/2721", "https://mivb.openplanner.team/stops/2759"], ["https://mivb.openplanner.team/stops/3313", "https://mivb.openplanner.team/stops/3332"], ["https://mivb.openplanner.team/stops/2397", "https://mivb.openplanner.team/stops/5200F"], ["https://mivb.openplanner.team/stops/2218F", "https://mivb.openplanner.team/stops/7710104"], ["https://mivb.openplanner.team/stops/6359F", "https://mivb.openplanner.team/stops/6412F"], ["https://mivb.openplanner.team/stops/1098", "https://mivb.openplanner.team/stops/1182"], ["https://mivb.openplanner.team/stops/3240", "https://mivb.openplanner.team/stops/3459"], ["https://mivb.openplanner.team/stops/3403", "https://mivb.openplanner.team/stops/3450"], ["https://mivb.openplanner.team/stops/6365", "https://mivb.openplanner.team/stops/7762"], ["https://mivb.openplanner.team/stops/2412", "https://mivb.openplanner.team/stops/5855F"], ["https://mivb.openplanner.team/stops/5228F", "https://mivb.openplanner.team/stops/5229F"], ["https://mivb.openplanner.team/stops/3546", "https://mivb.openplanner.team/stops/33"], ["https://mivb.openplanner.team/stops/1567", "https://mivb.openplanner.team/stops/6059"], ["https://mivb.openplanner.team/stops/3403", "https://mivb.openplanner.team/stops/3404"], ["https://mivb.openplanner.team/stops/8641", "https://mivb.openplanner.team/stops/7640311"], ["https://mivb.openplanner.team/stops/2248", "https://mivb.openplanner.team/stops/2249"], ["https://mivb.openplanner.team/stops/0610163", "https://mivb.openplanner.team/stops/0610663"], ["https://mivb.openplanner.team/stops/5076", "https://mivb.openplanner.team/stops/8773"], ["https://mivb.openplanner.team/stops/1703", "https://mivb.openplanner.team/stops/3630"], ["https://mivb.openplanner.team/stops/1479", "https://mivb.openplanner.team/stops/1499"], ["https://mivb.openplanner.team/stops/5911", "https://mivb.openplanner.team/stops/5958C"], ["https://mivb.openplanner.team/stops/1132", "https://mivb.openplanner.team/stops/1262B"], ["https://mivb.openplanner.team/stops/1138", "https://mivb.openplanner.team/stops/1141"], ["https://mivb.openplanner.team/stops/1201", "https://mivb.openplanner.team/stops/2579"], ["https://mivb.openplanner.team/stops/7650110", "https://mivb.openplanner.team/stops/8652"], ["https://mivb.openplanner.team/stops/6463F", "https://mivb.openplanner.team/stops/0070621"], ["https://mivb.openplanner.team/stops/1913", "https://mivb.openplanner.team/stops/5466"], ["https://mivb.openplanner.team/stops/1046G", "https://mivb.openplanner.team/stops/5208"], ["https://mivb.openplanner.team/stops/6409F", "https://mivb.openplanner.team/stops/6419F"], ["https://mivb.openplanner.team/stops/4305", "https://mivb.openplanner.team/stops/5205"], ["https://mivb.openplanner.team/stops/3629", "https://mivb.openplanner.team/stops/6313"], ["https://mivb.openplanner.team/stops/1232", "https://mivb.openplanner.team/stops/2936"], ["https://mivb.openplanner.team/stops/3409", "https://mivb.openplanner.team/stops/5356"], ["https://mivb.openplanner.team/stops/0670167", "https://mivb.openplanner.team/stops/2408"], ["https://mivb.openplanner.team/stops/1098", "https://mivb.openplanner.team/stops/7750160"], ["https://mivb.openplanner.team/stops/3232", "https://mivb.openplanner.team/stops/3252"], ["https://mivb.openplanner.team/stops/1201", "https://mivb.openplanner.team/stops/1261"], ["https://mivb.openplanner.team/stops/1970", "https://mivb.openplanner.team/stops/4857B"], ["https://mivb.openplanner.team/stops/2220", "https://mivb.openplanner.team/stops/2220F"], ["https://mivb.openplanner.team/stops/2545", "https://mivb.openplanner.team/stops/2861"], ["https://mivb.openplanner.team/stops/3218", "https://mivb.openplanner.team/stops/6056"], ["https://mivb.openplanner.team/stops/1252", "https://mivb.openplanner.team/stops/5551"], ["https://mivb.openplanner.team/stops/5009", "https://mivb.openplanner.team/stops/7770158"], ["https://mivb.openplanner.team/stops/1105", "https://mivb.openplanner.team/stops/4066F"], ["https://mivb.openplanner.team/stops/7640211", "https://mivb.openplanner.team/stops/9655"], ["https://mivb.openplanner.team/stops/1465", "https://mivb.openplanner.team/stops/2282"], ["https://mivb.openplanner.team/stops/0810369", "https://mivb.openplanner.team/stops/1561"], ["https://mivb.openplanner.team/stops/4003G", "https://mivb.openplanner.team/stops/4058F"], ["https://mivb.openplanner.team/stops/3107", "https://mivb.openplanner.team/stops/5315"], ["https://mivb.openplanner.team/stops/1822", "https://mivb.openplanner.team/stops/5659"], ["https://mivb.openplanner.team/stops/1111", "https://mivb.openplanner.team/stops/4110"], ["https://mivb.openplanner.team/stops/2152", "https://mivb.openplanner.team/stops/2715"], ["https://mivb.openplanner.team/stops/4402", "https://mivb.openplanner.team/stops/4454"], ["https://mivb.openplanner.team/stops/1227", "https://mivb.openplanner.team/stops/6656"], ["https://mivb.openplanner.team/stops/1841", "https://mivb.openplanner.team/stops/1856"], ["https://mivb.openplanner.team/stops/1479", "https://mivb.openplanner.team/stops/3850"], ["https://mivb.openplanner.team/stops/3334F", "https://mivb.openplanner.team/stops/9600B"], ["https://mivb.openplanner.team/stops/2402", "https://mivb.openplanner.team/stops/2467"], ["https://mivb.openplanner.team/stops/6809", "https://mivb.openplanner.team/stops/7710104"], ["https://mivb.openplanner.team/stops/1030", "https://mivb.openplanner.team/stops/1083"], ["https://mivb.openplanner.team/stops/5306G", "https://mivb.openplanner.team/stops/5356"], ["https://mivb.openplanner.team/stops/3064", "https://mivb.openplanner.team/stops/9634"], ["https://mivb.openplanner.team/stops/1714", "https://mivb.openplanner.team/stops/5266F"], ["https://mivb.openplanner.team/stops/1326", "https://mivb.openplanner.team/stops/2556"], ["https://mivb.openplanner.team/stops/5362", "https://mivb.openplanner.team/stops/5362F"], ["https://mivb.openplanner.team/stops/1935", "https://mivb.openplanner.team/stops/1936"], ["https://mivb.openplanner.team/stops/5908", "https://mivb.openplanner.team/stops/5910"], ["https://mivb.openplanner.team/stops/0100224", "https://mivb.openplanner.team/stops/0100324"], ["https://mivb.openplanner.team/stops/3459", "https://mivb.openplanner.team/stops/3460"], ["https://mivb.openplanner.team/stops/4277", "https://mivb.openplanner.team/stops/6482"], ["https://mivb.openplanner.team/stops/2221", "https://mivb.openplanner.team/stops/2301"], ["https://mivb.openplanner.team/stops/2828", "https://mivb.openplanner.team/stops/2833"], ["https://mivb.openplanner.team/stops/1683F", "https://mivb.openplanner.team/stops/1722"], ["https://mivb.openplanner.team/stops/6469", "https://mivb.openplanner.team/stops/0250536"], ["https://mivb.openplanner.team/stops/5003", "https://mivb.openplanner.team/stops/5082"], ["https://mivb.openplanner.team/stops/5001F", "https://mivb.openplanner.team/stops/5701"], ["https://mivb.openplanner.team/stops/2109B", "https://mivb.openplanner.team/stops/2152"], ["https://mivb.openplanner.team/stops/8042", "https://mivb.openplanner.team/stops/0040318"], ["https://mivb.openplanner.team/stops/1196", "https://mivb.openplanner.team/stops/4004"], ["https://mivb.openplanner.team/stops/3410", "https://mivb.openplanner.team/stops/7484"], ["https://mivb.openplanner.team/stops/4212B", "https://mivb.openplanner.team/stops/5011"], ["https://mivb.openplanner.team/stops/1869", "https://mivb.openplanner.team/stops/5267"], ["https://mivb.openplanner.team/stops/2503", "https://mivb.openplanner.team/stops/6552"], ["https://mivb.openplanner.team/stops/6012G", "https://mivb.openplanner.team/stops/6413F"], ["https://mivb.openplanner.team/stops/1131B", "https://mivb.openplanner.team/stops/1262B"], ["https://mivb.openplanner.team/stops/1402B", "https://mivb.openplanner.team/stops/1417B"], ["https://mivb.openplanner.team/stops/8342", "https://mivb.openplanner.team/stops/0340441"], ["https://mivb.openplanner.team/stops/3853", "https://mivb.openplanner.team/stops/3860"], ["https://mivb.openplanner.team/stops/2728", "https://mivb.openplanner.team/stops/5556"], ["https://mivb.openplanner.team/stops/2566B", "https://mivb.openplanner.team/stops/3235"], ["https://mivb.openplanner.team/stops/6310F", "https://mivb.openplanner.team/stops/0310444"], ["https://mivb.openplanner.team/stops/4501F", "https://mivb.openplanner.team/stops/5920H"], ["https://mivb.openplanner.team/stops/1089", "https://mivb.openplanner.team/stops/1090"], ["https://mivb.openplanner.team/stops/4106", "https://mivb.openplanner.team/stops/4107"], ["https://mivb.openplanner.team/stops/4309", "https://mivb.openplanner.team/stops/4359"], ["https://mivb.openplanner.team/stops/2124", "https://mivb.openplanner.team/stops/5222F"], ["https://mivb.openplanner.team/stops/1984G", "https://mivb.openplanner.team/stops/5816G"], ["https://mivb.openplanner.team/stops/1159", "https://mivb.openplanner.team/stops/6009"], ["https://mivb.openplanner.team/stops/9729", "https://mivb.openplanner.team/stops/9751"], ["https://mivb.openplanner.team/stops/1944", "https://mivb.openplanner.team/stops/2168"], ["https://mivb.openplanner.team/stops/1178", "https://mivb.openplanner.team/stops/8371"], ["https://mivb.openplanner.team/stops/5315", "https://mivb.openplanner.team/stops/5320"], ["https://mivb.openplanner.team/stops/3761", "https://mivb.openplanner.team/stops/5308"], ["https://mivb.openplanner.team/stops/6806", "https://mivb.openplanner.team/stops/6806F"], ["https://mivb.openplanner.team/stops/1713", "https://mivb.openplanner.team/stops/6114F"], ["https://mivb.openplanner.team/stops/0621", "https://mivb.openplanner.team/stops/3004"], ["https://mivb.openplanner.team/stops/1197", "https://mivb.openplanner.team/stops/2510"], ["https://mivb.openplanner.team/stops/3114", "https://mivb.openplanner.team/stops/6060"], ["https://mivb.openplanner.team/stops/1138", "https://mivb.openplanner.team/stops/1520"], ["https://mivb.openplanner.team/stops/5517", "https://mivb.openplanner.team/stops/5522"], ["https://mivb.openplanner.team/stops/1788", "https://mivb.openplanner.team/stops/6552"], ["https://mivb.openplanner.team/stops/1314", "https://mivb.openplanner.team/stops/5109"], ["https://mivb.openplanner.team/stops/1510", "https://mivb.openplanner.team/stops/2970"], ["https://mivb.openplanner.team/stops/3549", "https://mivb.openplanner.team/stops/0250236"], ["https://mivb.openplanner.team/stops/2992", "https://mivb.openplanner.team/stops/3182"], ["https://mivb.openplanner.team/stops/6117", "https://mivb.openplanner.team/stops/6153"], ["https://mivb.openplanner.team/stops/0601262", "https://mivb.openplanner.team/stops/2303"], ["https://mivb.openplanner.team/stops/5504", "https://mivb.openplanner.team/stops/5559"], ["https://mivb.openplanner.team/stops/4705", "https://mivb.openplanner.team/stops/6453"], ["https://mivb.openplanner.team/stops/2262", "https://mivb.openplanner.team/stops/6650G"], ["https://mivb.openplanner.team/stops/1678F", "https://mivb.openplanner.team/stops/1710"], ["https://mivb.openplanner.team/stops/6314", "https://mivb.openplanner.team/stops/0320243"], ["https://mivb.openplanner.team/stops/2546", "https://mivb.openplanner.team/stops/5718"], ["https://mivb.openplanner.team/stops/2769", "https://mivb.openplanner.team/stops/9972F"], ["https://mivb.openplanner.team/stops/2577", "https://mivb.openplanner.team/stops/6504"], ["https://mivb.openplanner.team/stops/1712", "https://mivb.openplanner.team/stops/1871B"], ["https://mivb.openplanner.team/stops/1162C", "https://mivb.openplanner.team/stops/4367B"], ["https://mivb.openplanner.team/stops/2207", "https://mivb.openplanner.team/stops/9025"], ["https://mivb.openplanner.team/stops/5813F", "https://mivb.openplanner.team/stops/5856"], ["https://mivb.openplanner.team/stops/2167", "https://mivb.openplanner.team/stops/2703"], ["https://mivb.openplanner.team/stops/1497B", "https://mivb.openplanner.team/stops/0050419"], ["https://mivb.openplanner.team/stops/3177", "https://mivb.openplanner.team/stops/5315"], ["https://mivb.openplanner.team/stops/4293", "https://mivb.openplanner.team/stops/4298"], ["https://mivb.openplanner.team/stops/2214", "https://mivb.openplanner.team/stops/2263"], ["https://mivb.openplanner.team/stops/0900268", "https://mivb.openplanner.team/stops/0900368"], ["https://mivb.openplanner.team/stops/1085", "https://mivb.openplanner.team/stops/2551"], ["https://mivb.openplanner.team/stops/3113", "https://mivb.openplanner.team/stops/3309F"], ["https://mivb.openplanner.team/stops/1251", "https://mivb.openplanner.team/stops/1969"], ["https://mivb.openplanner.team/stops/0089", "https://mivb.openplanner.team/stops/0080122"], ["https://mivb.openplanner.team/stops/1793", "https://mivb.openplanner.team/stops/0290212"], ["https://mivb.openplanner.team/stops/2971", "https://mivb.openplanner.team/stops/2972"], ["https://mivb.openplanner.team/stops/9631", "https://mivb.openplanner.team/stops/9756"], ["https://mivb.openplanner.team/stops/1770", "https://mivb.openplanner.team/stops/0310544"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/1725"], ["https://mivb.openplanner.team/stops/1090", "https://mivb.openplanner.team/stops/3005"], ["https://mivb.openplanner.team/stops/5413F", "https://mivb.openplanner.team/stops/5460F"], ["https://mivb.openplanner.team/stops/1162C", "https://mivb.openplanner.team/stops/1233"], ["https://mivb.openplanner.team/stops/3126", "https://mivb.openplanner.team/stops/3176"], ["https://mivb.openplanner.team/stops/1587", "https://mivb.openplanner.team/stops/1846"], ["https://mivb.openplanner.team/stops/6361", "https://mivb.openplanner.team/stops/0320343"], ["https://mivb.openplanner.team/stops/3403", "https://mivb.openplanner.team/stops/3702"], ["https://mivb.openplanner.team/stops/0350240", "https://mivb.openplanner.team/stops/9979B"], ["https://mivb.openplanner.team/stops/1098", "https://mivb.openplanner.team/stops/1314"], ["https://mivb.openplanner.team/stops/5751", "https://mivb.openplanner.team/stops/5922"], ["https://mivb.openplanner.team/stops/4265", "https://mivb.openplanner.team/stops/8823"], ["https://mivb.openplanner.team/stops/2414", "https://mivb.openplanner.team/stops/2452"], ["https://mivb.openplanner.team/stops/2022", "https://mivb.openplanner.team/stops/2028"], ["https://mivb.openplanner.team/stops/2823B", "https://mivb.openplanner.team/stops/2827"], ["https://mivb.openplanner.team/stops/2513", "https://mivb.openplanner.team/stops/3236"], ["https://mivb.openplanner.team/stops/3102", "https://mivb.openplanner.team/stops/3173"], ["https://mivb.openplanner.team/stops/2672", "https://mivb.openplanner.team/stops/6099"], ["https://mivb.openplanner.team/stops/5757", "https://mivb.openplanner.team/stops/5757F"], ["https://mivb.openplanner.team/stops/1782", "https://mivb.openplanner.team/stops/5008F"], ["https://mivb.openplanner.team/stops/1725", "https://mivb.openplanner.team/stops/1752"], ["https://mivb.openplanner.team/stops/2905", "https://mivb.openplanner.team/stops/2986B"], ["https://mivb.openplanner.team/stops/1739", "https://mivb.openplanner.team/stops/6956B"], ["https://mivb.openplanner.team/stops/1306F", "https://mivb.openplanner.team/stops/1307"], ["https://mivb.openplanner.team/stops/2268", "https://mivb.openplanner.team/stops/3012"], ["https://mivb.openplanner.team/stops/3158B", "https://mivb.openplanner.team/stops/3953"], ["https://mivb.openplanner.team/stops/2938", "https://mivb.openplanner.team/stops/2952B"], ["https://mivb.openplanner.team/stops/1901", "https://mivb.openplanner.team/stops/6308F"], ["https://mivb.openplanner.team/stops/8712", "https://mivb.openplanner.team/stops/7720203"], ["https://mivb.openplanner.team/stops/0600262", "https://mivb.openplanner.team/stops/1820"], ["https://mivb.openplanner.team/stops/4804B", "https://mivb.openplanner.team/stops/4853"], ["https://mivb.openplanner.team/stops/1679F", "https://mivb.openplanner.team/stops/1680F"], ["https://mivb.openplanner.team/stops/1165", "https://mivb.openplanner.team/stops/2268"], ["https://mivb.openplanner.team/stops/5081F", "https://mivb.openplanner.team/stops/5471"], ["https://mivb.openplanner.team/stops/3203", "https://mivb.openplanner.team/stops/3280"], ["https://mivb.openplanner.team/stops/1095", "https://mivb.openplanner.team/stops/1307F"], ["https://mivb.openplanner.team/stops/3317", "https://mivb.openplanner.team/stops/5038"], ["https://mivb.openplanner.team/stops/2518", "https://mivb.openplanner.team/stops/2532"], ["https://mivb.openplanner.team/stops/2504", "https://mivb.openplanner.team/stops/2515B"], ["https://mivb.openplanner.team/stops/5078F", "https://mivb.openplanner.team/stops/6501"], ["https://mivb.openplanner.team/stops/1463", "https://mivb.openplanner.team/stops/6024"], ["https://mivb.openplanner.team/stops/2292B", "https://mivb.openplanner.team/stops/3130"], ["https://mivb.openplanner.team/stops/6020", "https://mivb.openplanner.team/stops/6210"], ["https://mivb.openplanner.team/stops/2325", "https://mivb.openplanner.team/stops/5291F"], ["https://mivb.openplanner.team/stops/5101B", "https://mivb.openplanner.team/stops/5123"], ["https://mivb.openplanner.team/stops/0610163", "https://mivb.openplanner.team/stops/2245"], ["https://mivb.openplanner.team/stops/3130", "https://mivb.openplanner.team/stops/3179"], ["https://mivb.openplanner.team/stops/3252", "https://mivb.openplanner.team/stops/3281"], ["https://mivb.openplanner.team/stops/1852", "https://mivb.openplanner.team/stops/5603"], ["https://mivb.openplanner.team/stops/3800", "https://mivb.openplanner.team/stops/6860G"], ["https://mivb.openplanner.team/stops/2132", "https://mivb.openplanner.team/stops/5253"], ["https://mivb.openplanner.team/stops/8662", "https://mivb.openplanner.team/stops/9"], ["https://mivb.openplanner.team/stops/2365", "https://mivb.openplanner.team/stops/2817"], ["https://mivb.openplanner.team/stops/0820270", "https://mivb.openplanner.team/stops/1516"], ["https://mivb.openplanner.team/stops/5510", "https://mivb.openplanner.team/stops/5553"], ["https://mivb.openplanner.team/stops/5532", "https://mivb.openplanner.team/stops/5533"], ["https://mivb.openplanner.team/stops/2103", "https://mivb.openplanner.team/stops/2156"], ["https://mivb.openplanner.team/stops/3502", "https://mivb.openplanner.team/stops/3567"], ["https://mivb.openplanner.team/stops/6474F", "https://mivb.openplanner.team/stops/0160130"], ["https://mivb.openplanner.team/stops/6359F", "https://mivb.openplanner.team/stops/9064"], ["https://mivb.openplanner.team/stops/3014", "https://mivb.openplanner.team/stops/5913"], ["https://mivb.openplanner.team/stops/2203", "https://mivb.openplanner.team/stops/6103F"], ["https://mivb.openplanner.team/stops/1415", "https://mivb.openplanner.team/stops/1423"], ["https://mivb.openplanner.team/stops/0020316", "https://mivb.openplanner.team/stops/0020516"], ["https://mivb.openplanner.team/stops/3961", "https://mivb.openplanner.team/stops/4500"], ["https://mivb.openplanner.team/stops/2239", "https://mivb.openplanner.team/stops/5765F"], ["https://mivb.openplanner.team/stops/1804", "https://mivb.openplanner.team/stops/1871B"], ["https://mivb.openplanner.team/stops/1955", "https://mivb.openplanner.team/stops/1963"], ["https://mivb.openplanner.team/stops/0270614", "https://mivb.openplanner.team/stops/0440449"], ["https://mivb.openplanner.team/stops/2586", "https://mivb.openplanner.team/stops/6803F"], ["https://mivb.openplanner.team/stops/2181", "https://mivb.openplanner.team/stops/63"], ["https://mivb.openplanner.team/stops/6354B", "https://mivb.openplanner.team/stops/0310344"], ["https://mivb.openplanner.team/stops/7720303", "https://mivb.openplanner.team/stops/7730602"], ["https://mivb.openplanner.team/stops/1884", "https://mivb.openplanner.team/stops/1910"], ["https://mivb.openplanner.team/stops/1313", "https://mivb.openplanner.team/stops/2570"], ["https://mivb.openplanner.team/stops/0703", "https://mivb.openplanner.team/stops/0340341"], ["https://mivb.openplanner.team/stops/2124", "https://mivb.openplanner.team/stops/2132"], ["https://mivb.openplanner.team/stops/2810", "https://mivb.openplanner.team/stops/2875"], ["https://mivb.openplanner.team/stops/2237", "https://mivb.openplanner.team/stops/6178"], ["https://mivb.openplanner.team/stops/5916", "https://mivb.openplanner.team/stops/5953"], ["https://mivb.openplanner.team/stops/5707", "https://mivb.openplanner.team/stops/5770F"], ["https://mivb.openplanner.team/stops/3525", "https://mivb.openplanner.team/stops/3558"], ["https://mivb.openplanner.team/stops/1354", "https://mivb.openplanner.team/stops/3572"], ["https://mivb.openplanner.team/stops/1368", "https://mivb.openplanner.team/stops/1679F"], ["https://mivb.openplanner.team/stops/1875", "https://mivb.openplanner.team/stops/5502"], ["https://mivb.openplanner.team/stops/0726", "https://mivb.openplanner.team/stops/2531"], ["https://mivb.openplanner.team/stops/8743", "https://mivb.openplanner.team/stops/7740101"], ["https://mivb.openplanner.team/stops/2996", "https://mivb.openplanner.team/stops/3411"], ["https://mivb.openplanner.team/stops/1135", "https://mivb.openplanner.team/stops/6024"], ["https://mivb.openplanner.team/stops/2319", "https://mivb.openplanner.team/stops/2375"], ["https://mivb.openplanner.team/stops/1208", "https://mivb.openplanner.team/stops/2534"], ["https://mivb.openplanner.team/stops/1046G", "https://mivb.openplanner.team/stops/1059"], ["https://mivb.openplanner.team/stops/2504", "https://mivb.openplanner.team/stops/5077"], ["https://mivb.openplanner.team/stops/5917", "https://mivb.openplanner.team/stops/5952"], ["https://mivb.openplanner.team/stops/6204", "https://mivb.openplanner.team/stops/6214"], ["https://mivb.openplanner.team/stops/3017", "https://mivb.openplanner.team/stops/3321"], ["https://mivb.openplanner.team/stops/2861", "https://mivb.openplanner.team/stops/2875"], ["https://mivb.openplanner.team/stops/2507", "https://mivb.openplanner.team/stops/2519"], ["https://mivb.openplanner.team/stops/3681", "https://mivb.openplanner.team/stops/3859"], ["https://mivb.openplanner.team/stops/0670267", "https://mivb.openplanner.team/stops/2957"], ["https://mivb.openplanner.team/stops/2318G", "https://mivb.openplanner.team/stops/5772"], ["https://mivb.openplanner.team/stops/2260", "https://mivb.openplanner.team/stops/8371"], ["https://mivb.openplanner.team/stops/1826", "https://mivb.openplanner.team/stops/1850"], ["https://mivb.openplanner.team/stops/2291B", "https://mivb.openplanner.team/stops/0220133"], ["https://mivb.openplanner.team/stops/0250336", "https://mivb.openplanner.team/stops/0250436"], ["https://mivb.openplanner.team/stops/1644F", "https://mivb.openplanner.team/stops/5714"], ["https://mivb.openplanner.team/stops/2257B", "https://mivb.openplanner.team/stops/3709"], ["https://mivb.openplanner.team/stops/2312", "https://mivb.openplanner.team/stops/2363"], ["https://mivb.openplanner.team/stops/3709", "https://mivb.openplanner.team/stops/7710104"], ["https://mivb.openplanner.team/stops/2817", "https://mivb.openplanner.team/stops/2823B"], ["https://mivb.openplanner.team/stops/3099", "https://mivb.openplanner.team/stops/3177"], ["https://mivb.openplanner.team/stops/0703", "https://mivb.openplanner.team/stops/2402"], ["https://mivb.openplanner.team/stops/2828", "https://mivb.openplanner.team/stops/0430548"], ["https://mivb.openplanner.team/stops/3228F", "https://mivb.openplanner.team/stops/6648"], ["https://mivb.openplanner.team/stops/8311", "https://mivb.openplanner.team/stops/0310344"], ["https://mivb.openplanner.team/stops/8111", "https://mivb.openplanner.team/stops/0110325"], ["https://mivb.openplanner.team/stops/1918", "https://mivb.openplanner.team/stops/1919"], ["https://mivb.openplanner.team/stops/2831", "https://mivb.openplanner.team/stops/2837"], ["https://mivb.openplanner.team/stops/2042", "https://mivb.openplanner.team/stops/8142"], ["https://mivb.openplanner.team/stops/4116", "https://mivb.openplanner.team/stops/0470751"], ["https://mivb.openplanner.team/stops/4131B", "https://mivb.openplanner.team/stops/7790556"], ["https://mivb.openplanner.team/stops/7660109", "https://mivb.openplanner.team/stops/7670108"], ["https://mivb.openplanner.team/stops/3207", "https://mivb.openplanner.team/stops/3274"], ["https://mivb.openplanner.team/stops/1835", "https://mivb.openplanner.team/stops/5515"], ["https://mivb.openplanner.team/stops/4601", "https://mivb.openplanner.team/stops/4655"], ["https://mivb.openplanner.team/stops/3860", "https://mivb.openplanner.team/stops/5719"], ["https://mivb.openplanner.team/stops/5854", "https://mivb.openplanner.team/stops/5855"], ["https://mivb.openplanner.team/stops/2900F", "https://mivb.openplanner.team/stops/7271"], ["https://mivb.openplanner.team/stops/1511", "https://mivb.openplanner.team/stops/1568"], ["https://mivb.openplanner.team/stops/1375", "https://mivb.openplanner.team/stops/1659"], ["https://mivb.openplanner.team/stops/1528", "https://mivb.openplanner.team/stops/1552"], ["https://mivb.openplanner.team/stops/1687F", "https://mivb.openplanner.team/stops/1745"], ["https://mivb.openplanner.team/stops/1942", "https://mivb.openplanner.team/stops/5059"], ["https://mivb.openplanner.team/stops/3112", "https://mivb.openplanner.team/stops/6418F"], ["https://mivb.openplanner.team/stops/0900468", "https://mivb.openplanner.team/stops/5501"], ["https://mivb.openplanner.team/stops/1914", "https://mivb.openplanner.team/stops/5212"], ["https://mivb.openplanner.team/stops/9607", "https://mivb.openplanner.team/stops/9632"], ["https://mivb.openplanner.team/stops/7501", "https://mivb.openplanner.team/stops/9557"], ["https://mivb.openplanner.team/stops/1207", "https://mivb.openplanner.team/stops/2564"], ["https://mivb.openplanner.team/stops/0440449", "https://mivb.openplanner.team/stops/0440649"], ["https://mivb.openplanner.team/stops/3167", "https://mivb.openplanner.team/stops/5303"], ["https://mivb.openplanner.team/stops/9751", "https://mivb.openplanner.team/stops/9753"], ["https://mivb.openplanner.team/stops/3001B", "https://mivb.openplanner.team/stops/9635"], ["https://mivb.openplanner.team/stops/3226F", "https://mivb.openplanner.team/stops/3263B"], ["https://mivb.openplanner.team/stops/1412", "https://mivb.openplanner.team/stops/5228F"], ["https://mivb.openplanner.team/stops/1525", "https://mivb.openplanner.team/stops/1551"], ["https://mivb.openplanner.team/stops/5408", "https://mivb.openplanner.team/stops/5466"], ["https://mivb.openplanner.team/stops/6856", "https://mivb.openplanner.team/stops/8682"], ["https://mivb.openplanner.team/stops/2509", "https://mivb.openplanner.team/stops/2570"], ["https://mivb.openplanner.team/stops/1626", "https://mivb.openplanner.team/stops/0460150"], ["https://mivb.openplanner.team/stops/2358", "https://mivb.openplanner.team/stops/9608"], ["https://mivb.openplanner.team/stops/5865", "https://mivb.openplanner.team/stops/7484"], ["https://mivb.openplanner.team/stops/3402", "https://mivb.openplanner.team/stops/3459"], ["https://mivb.openplanner.team/stops/4115", "https://mivb.openplanner.team/stops/4168"], ["https://mivb.openplanner.team/stops/3358", "https://mivb.openplanner.team/stops/6308F"], ["https://mivb.openplanner.team/stops/3522", "https://mivb.openplanner.team/stops/5602"], ["https://mivb.openplanner.team/stops/0706", "https://mivb.openplanner.team/stops/0722"], ["https://mivb.openplanner.team/stops/1567", "https://mivb.openplanner.team/stops/6058"], ["https://mivb.openplanner.team/stops/1410", "https://mivb.openplanner.team/stops/1449"], ["https://mivb.openplanner.team/stops/4500", "https://mivb.openplanner.team/stops/4550"], ["https://mivb.openplanner.team/stops/0610163", "https://mivb.openplanner.team/stops/0616"], ["https://mivb.openplanner.team/stops/6421F", "https://mivb.openplanner.team/stops/6424F"], ["https://mivb.openplanner.team/stops/2221", "https://mivb.openplanner.team/stops/3353"], ["https://mivb.openplanner.team/stops/4010", "https://mivb.openplanner.team/stops/4059F"], ["https://mivb.openplanner.team/stops/4655", "https://mivb.openplanner.team/stops/4656"], ["https://mivb.openplanner.team/stops/2895", "https://mivb.openplanner.team/stops/3199"], ["https://mivb.openplanner.team/stops/1203", "https://mivb.openplanner.team/stops/1483"], ["https://mivb.openplanner.team/stops/1599", "https://mivb.openplanner.team/stops/1711"], ["https://mivb.openplanner.team/stops/1804", "https://mivb.openplanner.team/stops/6009"], ["https://mivb.openplanner.team/stops/3125", "https://mivb.openplanner.team/stops/3131"], ["https://mivb.openplanner.team/stops/5296B", "https://mivb.openplanner.team/stops/8682"], ["https://mivb.openplanner.team/stops/6800", "https://mivb.openplanner.team/stops/6800F"], ["https://mivb.openplanner.team/stops/3681", "https://mivb.openplanner.team/stops/3682"], ["https://mivb.openplanner.team/stops/3223B", "https://mivb.openplanner.team/stops/6653F"], ["https://mivb.openplanner.team/stops/0050319", "https://mivb.openplanner.team/stops/19"], ["https://mivb.openplanner.team/stops/8321", "https://mivb.openplanner.team/stops/0330242"], ["https://mivb.openplanner.team/stops/1236", "https://mivb.openplanner.team/stops/1236F"], ["https://mivb.openplanner.team/stops/2152", "https://mivb.openplanner.team/stops/5054F"], ["https://mivb.openplanner.team/stops/5952", "https://mivb.openplanner.team/stops/5952F"], ["https://mivb.openplanner.team/stops/1455", "https://mivb.openplanner.team/stops/4357"], ["https://mivb.openplanner.team/stops/1520", "https://mivb.openplanner.team/stops/3954"], ["https://mivb.openplanner.team/stops/4804B", "https://mivb.openplanner.team/stops/5056"], ["https://mivb.openplanner.team/stops/1942", "https://mivb.openplanner.team/stops/1951"], ["https://mivb.openplanner.team/stops/1098", "https://mivb.openplanner.team/stops/7750260"], ["https://mivb.openplanner.team/stops/1686F", "https://mivb.openplanner.team/stops/4071"], ["https://mivb.openplanner.team/stops/2545", "https://mivb.openplanner.team/stops/2860"], ["https://mivb.openplanner.team/stops/4006G", "https://mivb.openplanner.team/stops/4055G"], ["https://mivb.openplanner.team/stops/0472", "https://mivb.openplanner.team/stops/0470659"], ["https://mivb.openplanner.team/stops/3905", "https://mivb.openplanner.team/stops/3906"], ["https://mivb.openplanner.team/stops/1199F", "https://mivb.openplanner.team/stops/4055G"], ["https://mivb.openplanner.team/stops/3612F", "https://mivb.openplanner.team/stops/3712"], ["https://mivb.openplanner.team/stops/2835", "https://mivb.openplanner.team/stops/0440149"], ["https://mivb.openplanner.team/stops/1048F", "https://mivb.openplanner.team/stops/1049F"], ["https://mivb.openplanner.team/stops/1142", "https://mivb.openplanner.team/stops/5170"], ["https://mivb.openplanner.team/stops/1077", "https://mivb.openplanner.team/stops/2318G"], ["https://mivb.openplanner.team/stops/1042", "https://mivb.openplanner.team/stops/8081"], ["https://mivb.openplanner.team/stops/1139", "https://mivb.openplanner.team/stops/1153"], ["https://mivb.openplanner.team/stops/1490", "https://mivb.openplanner.team/stops/6856"], ["https://mivb.openplanner.team/stops/8332", "https://mivb.openplanner.team/stops/0330442"], ["https://mivb.openplanner.team/stops/3760", "https://mivb.openplanner.team/stops/8712"], ["https://mivb.openplanner.team/stops/3504", "https://mivb.openplanner.team/stops/4952"], ["https://mivb.openplanner.team/stops/2402", "https://mivb.openplanner.team/stops/2470"], ["https://mivb.openplanner.team/stops/3353", "https://mivb.openplanner.team/stops/0040218"], ["https://mivb.openplanner.team/stops/4998", "https://mivb.openplanner.team/stops/7800455"], ["https://mivb.openplanner.team/stops/5306G", "https://mivb.openplanner.team/stops/5355"], ["https://mivb.openplanner.team/stops/6018", "https://mivb.openplanner.team/stops/6060"], ["https://mivb.openplanner.team/stops/2902", "https://mivb.openplanner.team/stops/7271"], ["https://mivb.openplanner.team/stops/1554", "https://mivb.openplanner.team/stops/0120426"], ["https://mivb.openplanner.team/stops/8372", "https://mivb.openplanner.team/stops/0370438"], ["https://mivb.openplanner.team/stops/3682", "https://mivb.openplanner.team/stops/3859"], ["https://mivb.openplanner.team/stops/1758B", "https://mivb.openplanner.team/stops/0220133"], ["https://mivb.openplanner.team/stops/1108", "https://mivb.openplanner.team/stops/4107"], ["https://mivb.openplanner.team/stops/2140", "https://mivb.openplanner.team/stops/2150"], ["https://mivb.openplanner.team/stops/5471", "https://mivb.openplanner.team/stops/8813"], ["https://mivb.openplanner.team/stops/9291", "https://mivb.openplanner.team/stops/9296"], ["https://mivb.openplanner.team/stops/1551", "https://mivb.openplanner.team/stops/1553"], ["https://mivb.openplanner.team/stops/6310F", "https://mivb.openplanner.team/stops/6355F"], ["https://mivb.openplanner.team/stops/1453", "https://mivb.openplanner.team/stops/1455"], ["https://mivb.openplanner.team/stops/2576", "https://mivb.openplanner.team/stops/5077"], ["https://mivb.openplanner.team/stops/0702", "https://mivb.openplanner.team/stops/40"], ["https://mivb.openplanner.team/stops/1321", "https://mivb.openplanner.team/stops/1531"], ["https://mivb.openplanner.team/stops/1402B", "https://mivb.openplanner.team/stops/1418B"], ["https://mivb.openplanner.team/stops/0040418", "https://mivb.openplanner.team/stops/8402"], ["https://mivb.openplanner.team/stops/1486B", "https://mivb.openplanner.team/stops/1487"], ["https://mivb.openplanner.team/stops/2863", "https://mivb.openplanner.team/stops/9027"], ["https://mivb.openplanner.team/stops/2345", "https://mivb.openplanner.team/stops/5305G"], ["https://mivb.openplanner.team/stops/4111", "https://mivb.openplanner.team/stops/8291"], ["https://mivb.openplanner.team/stops/5917", "https://mivb.openplanner.team/stops/5917F"], ["https://mivb.openplanner.team/stops/2292B", "https://mivb.openplanner.team/stops/2294B"], ["https://mivb.openplanner.team/stops/2610", "https://mivb.openplanner.team/stops/5729"], ["https://mivb.openplanner.team/stops/5121F", "https://mivb.openplanner.team/stops/5161F"], ["https://mivb.openplanner.team/stops/1906", "https://mivb.openplanner.team/stops/1981"], ["https://mivb.openplanner.team/stops/2410", "https://mivb.openplanner.team/stops/5812"], ["https://mivb.openplanner.team/stops/5705", "https://mivb.openplanner.team/stops/5772"], ["https://mivb.openplanner.team/stops/1903", "https://mivb.openplanner.team/stops/7604"], ["https://mivb.openplanner.team/stops/3257", "https://mivb.openplanner.team/stops/0370438"], ["https://mivb.openplanner.team/stops/3280", "https://mivb.openplanner.team/stops/3321"], ["https://mivb.openplanner.team/stops/1915", "https://mivb.openplanner.team/stops/1916"], ["https://mivb.openplanner.team/stops/1713", "https://mivb.openplanner.team/stops/6115F"], ["https://mivb.openplanner.team/stops/1558", "https://mivb.openplanner.team/stops/3902"], ["https://mivb.openplanner.team/stops/6312", "https://mivb.openplanner.team/stops/6353F"], ["https://mivb.openplanner.team/stops/1639", "https://mivb.openplanner.team/stops/2038"], ["https://mivb.openplanner.team/stops/1616", "https://mivb.openplanner.team/stops/1625"], ["https://mivb.openplanner.team/stops/1278", "https://mivb.openplanner.team/stops/4305"], ["https://mivb.openplanner.team/stops/6303", "https://mivb.openplanner.team/stops/6365"], ["https://mivb.openplanner.team/stops/0350240", "https://mivb.openplanner.team/stops/0350640"], ["https://mivb.openplanner.team/stops/1535", "https://mivb.openplanner.team/stops/3460"], ["https://mivb.openplanner.team/stops/9969F", "https://mivb.openplanner.team/stops/9986F"], ["https://mivb.openplanner.team/stops/8231", "https://mivb.openplanner.team/stops/34"], ["https://mivb.openplanner.team/stops/1415", "https://mivb.openplanner.team/stops/1841"], ["https://mivb.openplanner.team/stops/6314", "https://mivb.openplanner.team/stops/0320343"], ["https://mivb.openplanner.team/stops/3121", "https://mivb.openplanner.team/stops/3123"], ["https://mivb.openplanner.team/stops/2577", "https://mivb.openplanner.team/stops/6505"], ["https://mivb.openplanner.team/stops/1869", "https://mivb.openplanner.team/stops/6153"], ["https://mivb.openplanner.team/stops/1861", "https://mivb.openplanner.team/stops/1862"], ["https://mivb.openplanner.team/stops/4257", "https://mivb.openplanner.team/stops/5402"], ["https://mivb.openplanner.team/stops/1868", "https://mivb.openplanner.team/stops/8201"], ["https://mivb.openplanner.team/stops/5813F", "https://mivb.openplanner.team/stops/5856F"], ["https://mivb.openplanner.team/stops/2167", "https://mivb.openplanner.team/stops/2702"], ["https://mivb.openplanner.team/stops/6450", "https://mivb.openplanner.team/stops/6451"], ["https://mivb.openplanner.team/stops/3354", "https://mivb.openplanner.team/stops/6357"], ["https://mivb.openplanner.team/stops/2577", "https://mivb.openplanner.team/stops/2863"], ["https://mivb.openplanner.team/stops/1322", "https://mivb.openplanner.team/stops/5212"], ["https://mivb.openplanner.team/stops/0626", "https://mivb.openplanner.team/stops/3004"], ["https://mivb.openplanner.team/stops/4306", "https://mivb.openplanner.team/stops/4307"], ["https://mivb.openplanner.team/stops/5413F", "https://mivb.openplanner.team/stops/5461F"], ["https://mivb.openplanner.team/stops/4165", "https://mivb.openplanner.team/stops/4270F"], ["https://mivb.openplanner.team/stops/2971F", "https://mivb.openplanner.team/stops/7527"], ["https://mivb.openplanner.team/stops/1816", "https://mivb.openplanner.team/stops/5504"], ["https://mivb.openplanner.team/stops/1512", "https://mivb.openplanner.team/stops/6082"], ["https://mivb.openplanner.team/stops/0516", "https://mivb.openplanner.team/stops/1988"], ["https://mivb.openplanner.team/stops/3503", "https://mivb.openplanner.team/stops/6310F"], ["https://mivb.openplanner.team/stops/6313", "https://mivb.openplanner.team/stops/0370543"], ["https://mivb.openplanner.team/stops/5415F", "https://mivb.openplanner.team/stops/5451F"], ["https://mivb.openplanner.team/stops/1859", "https://mivb.openplanner.team/stops/5224F"], ["https://mivb.openplanner.team/stops/4006G", "https://mivb.openplanner.team/stops/4659"], ["https://mivb.openplanner.team/stops/1076", "https://mivb.openplanner.team/stops/1077"], ["https://mivb.openplanner.team/stops/0801", "https://mivb.openplanner.team/stops/0806"], ["https://mivb.openplanner.team/stops/3125", "https://mivb.openplanner.team/stops/4364"], ["https://mivb.openplanner.team/stops/2455", "https://mivb.openplanner.team/stops/2953"], ["https://mivb.openplanner.team/stops/2314", "https://mivb.openplanner.team/stops/2359"], ["https://mivb.openplanner.team/stops/2801", "https://mivb.openplanner.team/stops/4250"], ["https://mivb.openplanner.team/stops/2513", "https://mivb.openplanner.team/stops/3235"], ["https://mivb.openplanner.team/stops/4956", "https://mivb.openplanner.team/stops/5082"], ["https://mivb.openplanner.team/stops/5120", "https://mivb.openplanner.team/stops/5155"], ["https://mivb.openplanner.team/stops/1713", "https://mivb.openplanner.team/stops/5480"], ["https://mivb.openplanner.team/stops/1566", "https://mivb.openplanner.team/stops/6190"], ["https://mivb.openplanner.team/stops/5721", "https://mivb.openplanner.team/stops/5721G"], ["https://mivb.openplanner.team/stops/2860", "https://mivb.openplanner.team/stops/6122"], ["https://mivb.openplanner.team/stops/5291F", "https://mivb.openplanner.team/stops/6168"], ["https://mivb.openplanner.team/stops/2965", "https://mivb.openplanner.team/stops/5021"], ["https://mivb.openplanner.team/stops/2977", "https://mivb.openplanner.team/stops/5307G"], ["https://mivb.openplanner.team/stops/5804G", "https://mivb.openplanner.team/stops/7998"], ["https://mivb.openplanner.team/stops/2962", "https://mivb.openplanner.team/stops/5406"], ["https://mivb.openplanner.team/stops/8742", "https://mivb.openplanner.team/stops/8744"], ["https://mivb.openplanner.team/stops/6119F", "https://mivb.openplanner.team/stops/6120"], ["https://mivb.openplanner.team/stops/4289", "https://mivb.openplanner.team/stops/4340"], ["https://mivb.openplanner.team/stops/5508", "https://mivb.openplanner.team/stops/5555"], ["https://mivb.openplanner.team/stops/1919", "https://mivb.openplanner.team/stops/1970"], ["https://mivb.openplanner.team/stops/1239", "https://mivb.openplanner.team/stops/2603"], ["https://mivb.openplanner.team/stops/4298", "https://mivb.openplanner.team/stops/4299"], ["https://mivb.openplanner.team/stops/0080322", "https://mivb.openplanner.team/stops/0080422"], ["https://mivb.openplanner.team/stops/0620164", "https://mivb.openplanner.team/stops/6601"], ["https://mivb.openplanner.team/stops/2805F", "https://mivb.openplanner.team/stops/5079"], ["https://mivb.openplanner.team/stops/3230F", "https://mivb.openplanner.team/stops/8382"], ["https://mivb.openplanner.team/stops/3130", "https://mivb.openplanner.team/stops/3203"], ["https://mivb.openplanner.team/stops/4069", "https://mivb.openplanner.team/stops/4261"], ["https://mivb.openplanner.team/stops/1544", "https://mivb.openplanner.team/stops/1865"], ["https://mivb.openplanner.team/stops/1852", "https://mivb.openplanner.team/stops/5602"], ["https://mivb.openplanner.team/stops/5284F", "https://mivb.openplanner.team/stops/5426"], ["https://mivb.openplanner.team/stops/2046", "https://mivb.openplanner.team/stops/0260237"], ["https://mivb.openplanner.team/stops/2025", "https://mivb.openplanner.team/stops/2029"], ["https://mivb.openplanner.team/stops/2103", "https://mivb.openplanner.team/stops/2157"], ["https://mivb.openplanner.team/stops/3567", "https://mivb.openplanner.team/stops/6354"], ["https://mivb.openplanner.team/stops/2108", "https://mivb.openplanner.team/stops/2152"], ["https://mivb.openplanner.team/stops/1533", "https://mivb.openplanner.team/stops/3284"], ["https://mivb.openplanner.team/stops/1127", "https://mivb.openplanner.team/stops/3629"], ["https://mivb.openplanner.team/stops/4292", "https://mivb.openplanner.team/stops/4342"], ["https://mivb.openplanner.team/stops/6654F", "https://mivb.openplanner.team/stops/13"], ["https://mivb.openplanner.team/stops/2358", "https://mivb.openplanner.team/stops/3002"], ["https://mivb.openplanner.team/stops/6607", "https://mivb.openplanner.team/stops/0440649"], ["https://mivb.openplanner.team/stops/1733", "https://mivb.openplanner.team/stops/3953"], ["https://mivb.openplanner.team/stops/3610G", "https://mivb.openplanner.team/stops/3611F"], ["https://mivb.openplanner.team/stops/4599", "https://mivb.openplanner.team/stops/4600"], ["https://mivb.openplanner.team/stops/3014", "https://mivb.openplanner.team/stops/3059"], ["https://mivb.openplanner.team/stops/2871", "https://mivb.openplanner.team/stops/6800F"], ["https://mivb.openplanner.team/stops/1935", "https://mivb.openplanner.team/stops/2146"], ["https://mivb.openplanner.team/stops/1804", "https://mivb.openplanner.team/stops/1870"], ["https://mivb.openplanner.team/stops/1486B", "https://mivb.openplanner.team/stops/3610G"], ["https://mivb.openplanner.team/stops/3412", "https://mivb.openplanner.team/stops/7484"], ["https://mivb.openplanner.team/stops/1546", "https://mivb.openplanner.team/stops/1815"], ["https://mivb.openplanner.team/stops/1654", "https://mivb.openplanner.team/stops/1734"], ["https://mivb.openplanner.team/stops/1513", "https://mivb.openplanner.team/stops/6021"], ["https://mivb.openplanner.team/stops/5225F", "https://mivb.openplanner.team/stops/5228F"], ["https://mivb.openplanner.team/stops/1943", "https://mivb.openplanner.team/stops/4804B"], ["https://mivb.openplanner.team/stops/2138B", "https://mivb.openplanner.team/stops/2140"], ["https://mivb.openplanner.team/stops/6354B", "https://mivb.openplanner.team/stops/0310444"], ["https://mivb.openplanner.team/stops/2404", "https://mivb.openplanner.team/stops/2404F"], ["https://mivb.openplanner.team/stops/5062", "https://mivb.openplanner.team/stops/6253"], ["https://mivb.openplanner.team/stops/4230", "https://mivb.openplanner.team/stops/7810154"], ["https://mivb.openplanner.team/stops/4232", "https://mivb.openplanner.team/stops/8803"], ["https://mivb.openplanner.team/stops/4307", "https://mivb.openplanner.team/stops/5261"], ["https://mivb.openplanner.team/stops/2539F", "https://mivb.openplanner.team/stops/6099"], ["https://mivb.openplanner.team/stops/0901", "https://mivb.openplanner.team/stops/1866"], ["https://mivb.openplanner.team/stops/3402", "https://mivb.openplanner.team/stops/3765"], ["https://mivb.openplanner.team/stops/2237", "https://mivb.openplanner.team/stops/6177"], ["https://mivb.openplanner.team/stops/0636", "https://mivb.openplanner.team/stops/2500"], ["https://mivb.openplanner.team/stops/4250", "https://mivb.openplanner.team/stops/4251"], ["https://mivb.openplanner.team/stops/2661", "https://mivb.openplanner.team/stops/2664"], ["https://mivb.openplanner.team/stops/1252", "https://mivb.openplanner.team/stops/1847"], ["https://mivb.openplanner.team/stops/1368", "https://mivb.openplanner.team/stops/1680F"], ["https://mivb.openplanner.team/stops/2939B", "https://mivb.openplanner.team/stops/5719H"], ["https://mivb.openplanner.team/stops/2311", "https://mivb.openplanner.team/stops/2852"], ["https://mivb.openplanner.team/stops/5811", "https://mivb.openplanner.team/stops/5849"], ["https://mivb.openplanner.team/stops/6435", "https://mivb.openplanner.team/stops/0420147"], ["https://mivb.openplanner.team/stops/1962", "https://mivb.openplanner.team/stops/2701"], ["https://mivb.openplanner.team/stops/6004", "https://mivb.openplanner.team/stops/8743"], ["https://mivb.openplanner.team/stops/2209", "https://mivb.openplanner.team/stops/2269"], ["https://mivb.openplanner.team/stops/7640111", "https://mivb.openplanner.team/stops/7650210"], ["https://mivb.openplanner.team/stops/1208", "https://mivb.openplanner.team/stops/2533"], ["https://mivb.openplanner.team/stops/2076", "https://mivb.openplanner.team/stops/2107"], ["https://mivb.openplanner.team/stops/2909", "https://mivb.openplanner.team/stops/7271"], ["https://mivb.openplanner.team/stops/5917", "https://mivb.openplanner.team/stops/5952F"], ["https://mivb.openplanner.team/stops/2935", "https://mivb.openplanner.team/stops/2951"], ["https://mivb.openplanner.team/stops/7660209", "https://mivb.openplanner.team/stops/9651"], ["https://mivb.openplanner.team/stops/2134", "https://mivb.openplanner.team/stops/5219F"], ["https://mivb.openplanner.team/stops/4007G", "https://mivb.openplanner.team/stops/4053G"], ["https://mivb.openplanner.team/stops/2262", "https://mivb.openplanner.team/stops/9979B"], ["https://mivb.openplanner.team/stops/1944", "https://mivb.openplanner.team/stops/1963"], ["https://mivb.openplanner.team/stops/0810469", "https://mivb.openplanner.team/stops/1459"], ["https://mivb.openplanner.team/stops/2899", "https://mivb.openplanner.team/stops/5968"], ["https://mivb.openplanner.team/stops/2551", "https://mivb.openplanner.team/stops/3805"], ["https://mivb.openplanner.team/stops/9651", "https://mivb.openplanner.team/stops/9682"], ["https://mivb.openplanner.team/stops/1160", "https://mivb.openplanner.team/stops/1497B"], ["https://mivb.openplanner.team/stops/8471", "https://mivb.openplanner.team/stops/0470251"], ["https://mivb.openplanner.team/stops/2803", "https://mivb.openplanner.team/stops/2867"], ["https://mivb.openplanner.team/stops/2312", "https://mivb.openplanner.team/stops/2362B"], ["https://mivb.openplanner.team/stops/2869", "https://mivb.openplanner.team/stops/2877"], ["https://mivb.openplanner.team/stops/5740", "https://mivb.openplanner.team/stops/6365"], ["https://mivb.openplanner.team/stops/5230F", "https://mivb.openplanner.team/stops/0120226"], ["https://mivb.openplanner.team/stops/2264", "https://mivb.openplanner.team/stops/63"], ["https://mivb.openplanner.team/stops/3228F", "https://mivb.openplanner.team/stops/6608G"], ["https://mivb.openplanner.team/stops/8311", "https://mivb.openplanner.team/stops/0310244"], ["https://mivb.openplanner.team/stops/2960F", "https://mivb.openplanner.team/stops/7520"], ["https://mivb.openplanner.team/stops/1417B", "https://mivb.openplanner.team/stops/1873"], ["https://mivb.openplanner.team/stops/8111", "https://mivb.openplanner.team/stops/0110425"], ["https://mivb.openplanner.team/stops/4598", "https://mivb.openplanner.team/stops/4661B"], ["https://mivb.openplanner.team/stops/5303", "https://mivb.openplanner.team/stops/5865"], ["https://mivb.openplanner.team/stops/1008", "https://mivb.openplanner.team/stops/1066"], ["https://mivb.openplanner.team/stops/5854", "https://mivb.openplanner.team/stops/5855F"], ["https://mivb.openplanner.team/stops/2986B", "https://mivb.openplanner.team/stops/9946"], ["https://mivb.openplanner.team/stops/1765", "https://mivb.openplanner.team/stops/4153"], ["https://mivb.openplanner.team/stops/2334F", "https://mivb.openplanner.team/stops/2336G"], ["https://mivb.openplanner.team/stops/4011", "https://mivb.openplanner.team/stops/4273F"], ["https://mivb.openplanner.team/stops/0473F", "https://mivb.openplanner.team/stops/8763"], ["https://mivb.openplanner.team/stops/1135", "https://mivb.openplanner.team/stops/1157"], ["https://mivb.openplanner.team/stops/6706", "https://mivb.openplanner.team/stops/0290212"], ["https://mivb.openplanner.team/stops/3059", "https://mivb.openplanner.team/stops/5911"], ["https://mivb.openplanner.team/stops/1302", "https://mivb.openplanner.team/stops/6475F"], ["https://mivb.openplanner.team/stops/3508F", "https://mivb.openplanner.team/stops/6112"], ["https://mivb.openplanner.team/stops/1942", "https://mivb.openplanner.team/stops/5060"], ["https://mivb.openplanner.team/stops/5727F", "https://mivb.openplanner.team/stops/9685"], ["https://mivb.openplanner.team/stops/1714", "https://mivb.openplanner.team/stops/1715"], ["https://mivb.openplanner.team/stops/5735", "https://mivb.openplanner.team/stops/47"], ["https://mivb.openplanner.team/stops/1606", "https://mivb.openplanner.team/stops/1680F"], ["https://mivb.openplanner.team/stops/2912", "https://mivb.openplanner.team/stops/5872"], ["https://mivb.openplanner.team/stops/4348", "https://mivb.openplanner.team/stops/4355"], ["https://mivb.openplanner.team/stops/3132", "https://mivb.openplanner.team/stops/3176"], ["https://mivb.openplanner.team/stops/1733", "https://mivb.openplanner.team/stops/3160"], ["https://mivb.openplanner.team/stops/2663", "https://mivb.openplanner.team/stops/5756"], ["https://mivb.openplanner.team/stops/1716", "https://mivb.openplanner.team/stops/5267"], ["https://mivb.openplanner.team/stops/9164", "https://mivb.openplanner.team/stops/9552"], ["https://mivb.openplanner.team/stops/1587", "https://mivb.openplanner.team/stops/1829"], ["https://mivb.openplanner.team/stops/6856", "https://mivb.openplanner.team/stops/7690206"], ["https://mivb.openplanner.team/stops/2509", "https://mivb.openplanner.team/stops/2569"], ["https://mivb.openplanner.team/stops/2375", "https://mivb.openplanner.team/stops/6811"], ["https://mivb.openplanner.team/stops/2292B", "https://mivb.openplanner.team/stops/5961"], ["https://mivb.openplanner.team/stops/1098", "https://mivb.openplanner.team/stops/1184"], ["https://mivb.openplanner.team/stops/2315", "https://mivb.openplanner.team/stops/2316"], ["https://mivb.openplanner.team/stops/3402", "https://mivb.openplanner.team/stops/3460"], ["https://mivb.openplanner.team/stops/6436", "https://mivb.openplanner.team/stops/0410346"], ["https://mivb.openplanner.team/stops/5722", "https://mivb.openplanner.team/stops/5722F"], ["https://mivb.openplanner.team/stops/4228", "https://mivb.openplanner.team/stops/4268"], ["https://mivb.openplanner.team/stops/3522", "https://mivb.openplanner.team/stops/5601"], ["https://mivb.openplanner.team/stops/2670F", "https://mivb.openplanner.team/stops/6175"], ["https://mivb.openplanner.team/stops/8302", "https://mivb.openplanner.team/stops/0300145"], ["https://mivb.openplanner.team/stops/1480", "https://mivb.openplanner.team/stops/7"], ["https://mivb.openplanner.team/stops/1860", "https://mivb.openplanner.team/stops/5503"], ["https://mivb.openplanner.team/stops/0610163", "https://mivb.openplanner.team/stops/0610263"], ["https://mivb.openplanner.team/stops/1657", "https://mivb.openplanner.team/stops/5522"], ["https://mivb.openplanner.team/stops/4212B", "https://mivb.openplanner.team/stops/5074F"], ["https://mivb.openplanner.team/stops/0516", "https://mivb.openplanner.team/stops/0539"], ["https://mivb.openplanner.team/stops/2322", "https://mivb.openplanner.team/stops/2413"], ["https://mivb.openplanner.team/stops/5060", "https://mivb.openplanner.team/stops/5858"], ["https://mivb.openplanner.team/stops/6468", "https://mivb.openplanner.team/stops/8252"], ["https://mivb.openplanner.team/stops/3132", "https://mivb.openplanner.team/stops/5039"], ["https://mivb.openplanner.team/stops/1377", "https://mivb.openplanner.team/stops/1381"], ["https://mivb.openplanner.team/stops/2221", "https://mivb.openplanner.team/stops/6308F"], ["https://mivb.openplanner.team/stops/0340341", "https://mivb.openplanner.team/stops/0350740"], ["https://mivb.openplanner.team/stops/1854", "https://mivb.openplanner.team/stops/5509"], ["https://mivb.openplanner.team/stops/9651", "https://mivb.openplanner.team/stops/9652"], ["https://mivb.openplanner.team/stops/4804B", "https://mivb.openplanner.team/stops/5057"], ["https://mivb.openplanner.team/stops/2997", "https://mivb.openplanner.team/stops/5274F"], ["https://mivb.openplanner.team/stops/1056", "https://mivb.openplanner.team/stops/4212B"], ["https://mivb.openplanner.team/stops/5531", "https://mivb.openplanner.team/stops/5562"], ["https://mivb.openplanner.team/stops/1095", "https://mivb.openplanner.team/stops/1190"], ["https://mivb.openplanner.team/stops/2325", "https://mivb.openplanner.team/stops/6097B"], ["https://mivb.openplanner.team/stops/1767", "https://mivb.openplanner.team/stops/2574"], ["https://mivb.openplanner.team/stops/1586", "https://mivb.openplanner.team/stops/1638B"], ["https://mivb.openplanner.team/stops/2725", "https://mivb.openplanner.team/stops/0260237"], ["https://mivb.openplanner.team/stops/3414", "https://mivb.openplanner.team/stops/3451"], ["https://mivb.openplanner.team/stops/2142", "https://mivb.openplanner.team/stops/2717"], ["https://mivb.openplanner.team/stops/3612F", "https://mivb.openplanner.team/stops/9"], ["https://mivb.openplanner.team/stops/2285G", "https://mivb.openplanner.team/stops/9996"], ["https://mivb.openplanner.team/stops/1142", "https://mivb.openplanner.team/stops/5174F"], ["https://mivb.openplanner.team/stops/6476", "https://mivb.openplanner.team/stops/0110125"], ["https://mivb.openplanner.team/stops/2147B", "https://mivb.openplanner.team/stops/2157"], ["https://mivb.openplanner.team/stops/1283", "https://mivb.openplanner.team/stops/2908"], ["https://mivb.openplanner.team/stops/1134", "https://mivb.openplanner.team/stops/1402B"], ["https://mivb.openplanner.team/stops/1159", "https://mivb.openplanner.team/stops/1871B"], ["https://mivb.openplanner.team/stops/1139", "https://mivb.openplanner.team/stops/1154"], ["https://mivb.openplanner.team/stops/4105", "https://mivb.openplanner.team/stops/4157"], ["https://mivb.openplanner.team/stops/1042", "https://mivb.openplanner.team/stops/8082"], ["https://mivb.openplanner.team/stops/1975", "https://mivb.openplanner.team/stops/5210"], ["https://mivb.openplanner.team/stops/1508", "https://mivb.openplanner.team/stops/1571"], ["https://mivb.openplanner.team/stops/2553", "https://mivb.openplanner.team/stops/5718"], ["https://mivb.openplanner.team/stops/8332", "https://mivb.openplanner.team/stops/0330342"], ["https://mivb.openplanner.team/stops/1042", "https://mivb.openplanner.team/stops/1113"], ["https://mivb.openplanner.team/stops/0350140", "https://mivb.openplanner.team/stops/0350240"], ["https://mivb.openplanner.team/stops/0724", "https://mivb.openplanner.team/stops/2331F"], ["https://mivb.openplanner.team/stops/1270B", "https://mivb.openplanner.team/stops/1318"], ["https://mivb.openplanner.team/stops/1861", "https://mivb.openplanner.team/stops/1875"], ["https://mivb.openplanner.team/stops/6100", "https://mivb.openplanner.team/stops/6122"], ["https://mivb.openplanner.team/stops/2023", "https://mivb.openplanner.team/stops/5115F"], ["https://mivb.openplanner.team/stops/1289", "https://mivb.openplanner.team/stops/5472"], ["https://mivb.openplanner.team/stops/3611F", "https://mivb.openplanner.team/stops/3751"], ["https://mivb.openplanner.team/stops/5418", "https://mivb.openplanner.team/stops/5424"], ["https://mivb.openplanner.team/stops/5858", "https://mivb.openplanner.team/stops/6424F"], ["https://mivb.openplanner.team/stops/3064", "https://mivb.openplanner.team/stops/9608"], ["https://mivb.openplanner.team/stops/6018", "https://mivb.openplanner.team/stops/6059"], ["https://mivb.openplanner.team/stops/3712", "https://mivb.openplanner.team/stops/3756"], ["https://mivb.openplanner.team/stops/1767", "https://mivb.openplanner.team/stops/6864F"], ["https://mivb.openplanner.team/stops/2524", "https://mivb.openplanner.team/stops/5151"], ["https://mivb.openplanner.team/stops/0100224", "https://mivb.openplanner.team/stops/0100524"], ["https://mivb.openplanner.team/stops/1830", "https://mivb.openplanner.team/stops/1831"], ["https://mivb.openplanner.team/stops/1203", "https://mivb.openplanner.team/stops/1261"], ["https://mivb.openplanner.team/stops/2924", "https://mivb.openplanner.team/stops/2982"], ["https://mivb.openplanner.team/stops/2203", "https://mivb.openplanner.team/stops/2207"], ["https://mivb.openplanner.team/stops/3526", "https://mivb.openplanner.team/stops/3530"], ["https://mivb.openplanner.team/stops/4007G", "https://mivb.openplanner.team/stops/6071"], ["https://mivb.openplanner.team/stops/1985G", "https://mivb.openplanner.team/stops/2764G"], ["https://mivb.openplanner.team/stops/1598", "https://mivb.openplanner.team/stops/0230234"], ["https://mivb.openplanner.team/stops/2015", "https://mivb.openplanner.team/stops/2025"], ["https://mivb.openplanner.team/stops/3177", "https://mivb.openplanner.team/stops/3180"], ["https://mivb.openplanner.team/stops/3156", "https://mivb.openplanner.team/stops/4303"], ["https://mivb.openplanner.team/stops/2988", "https://mivb.openplanner.team/stops/5967"], ["https://mivb.openplanner.team/stops/1760", "https://mivb.openplanner.team/stops/32"], ["https://mivb.openplanner.team/stops/0230234", "https://mivb.openplanner.team/stops/0230434"], ["https://mivb.openplanner.team/stops/6097B", "https://mivb.openplanner.team/stops/6100"], ["https://mivb.openplanner.team/stops/1356", "https://mivb.openplanner.team/stops/2304"], ["https://mivb.openplanner.team/stops/1720B", "https://mivb.openplanner.team/stops/2009"], ["https://mivb.openplanner.team/stops/3552", "https://mivb.openplanner.team/stops/3553"], ["https://mivb.openplanner.team/stops/3920", "https://mivb.openplanner.team/stops/3959"], ["https://mivb.openplanner.team/stops/1198", "https://mivb.openplanner.team/stops/1304"], ["https://mivb.openplanner.team/stops/8281", "https://mivb.openplanner.team/stops/0280113"], ["https://mivb.openplanner.team/stops/8814", "https://mivb.openplanner.team/stops/9052"], ["https://mivb.openplanner.team/stops/6354", "https://mivb.openplanner.team/stops/6354B"], ["https://mivb.openplanner.team/stops/3233", "https://mivb.openplanner.team/stops/3252"], ["https://mivb.openplanner.team/stops/2810", "https://mivb.openplanner.team/stops/6174B"], ["https://mivb.openplanner.team/stops/1682F", "https://mivb.openplanner.team/stops/1732"], ["https://mivb.openplanner.team/stops/0821", "https://mivb.openplanner.team/stops/6449"], ["https://mivb.openplanner.team/stops/1204", "https://mivb.openplanner.team/stops/2319"], ["https://mivb.openplanner.team/stops/2214", "https://mivb.openplanner.team/stops/6650G"], ["https://mivb.openplanner.team/stops/4364", "https://mivb.openplanner.team/stops/6114F"], ["https://mivb.openplanner.team/stops/5121F", "https://mivb.openplanner.team/stops/5161"], ["https://mivb.openplanner.team/stops/2410", "https://mivb.openplanner.team/stops/5812F"], ["https://mivb.openplanner.team/stops/1828", "https://mivb.openplanner.team/stops/5530"], ["https://mivb.openplanner.team/stops/1094F", "https://mivb.openplanner.team/stops/4055G"], ["https://mivb.openplanner.team/stops/1125", "https://mivb.openplanner.team/stops/1126"], ["https://mivb.openplanner.team/stops/3257", "https://mivb.openplanner.team/stops/0370338"], ["https://mivb.openplanner.team/stops/1538B", "https://mivb.openplanner.team/stops/3661"], ["https://mivb.openplanner.team/stops/1334", "https://mivb.openplanner.team/stops/4071"], ["https://mivb.openplanner.team/stops/3317", "https://mivb.openplanner.team/stops/5044"], ["https://mivb.openplanner.team/stops/4127", "https://mivb.openplanner.team/stops/4252"], ["https://mivb.openplanner.team/stops/2119", "https://mivb.openplanner.team/stops/2145"], ["https://mivb.openplanner.team/stops/3101", "https://mivb.openplanner.team/stops/5872"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/9553"], ["https://mivb.openplanner.team/stops/1988", "https://mivb.openplanner.team/stops/0430648"], ["https://mivb.openplanner.team/stops/2407", "https://mivb.openplanner.team/stops/2460"], ["https://mivb.openplanner.team/stops/1975", "https://mivb.openplanner.team/stops/5409"], ["https://mivb.openplanner.team/stops/4104", "https://mivb.openplanner.team/stops/4109"], ["https://mivb.openplanner.team/stops/1463", "https://mivb.openplanner.team/stops/3217"], ["https://mivb.openplanner.team/stops/1869", "https://mivb.openplanner.team/stops/6117"], ["https://mivb.openplanner.team/stops/2853", "https://mivb.openplanner.team/stops/5771"], ["https://mivb.openplanner.team/stops/1570", "https://mivb.openplanner.team/stops/1582"], ["https://mivb.openplanner.team/stops/0220233", "https://mivb.openplanner.team/stops/33"], ["https://mivb.openplanner.team/stops/4257", "https://mivb.openplanner.team/stops/5400"], ["https://mivb.openplanner.team/stops/1938", "https://mivb.openplanner.team/stops/1959"], ["https://mivb.openplanner.team/stops/4854C", "https://mivb.openplanner.team/stops/4856B"], ["https://mivb.openplanner.team/stops/3419", "https://mivb.openplanner.team/stops/3448B"], ["https://mivb.openplanner.team/stops/1500", "https://mivb.openplanner.team/stops/5273F"], ["https://mivb.openplanner.team/stops/2727", "https://mivb.openplanner.team/stops/3526"], ["https://mivb.openplanner.team/stops/1085", "https://mivb.openplanner.team/stops/2555"], ["https://mivb.openplanner.team/stops/1654", "https://mivb.openplanner.team/stops/1770"], ["https://mivb.openplanner.team/stops/6359", "https://mivb.openplanner.team/stops/9023"], ["https://mivb.openplanner.team/stops/2586", "https://mivb.openplanner.team/stops/6867F"], ["https://mivb.openplanner.team/stops/2816", "https://mivb.openplanner.team/stops/2853"], ["https://mivb.openplanner.team/stops/0516", "https://mivb.openplanner.team/stops/0430748"], ["https://mivb.openplanner.team/stops/1322", "https://mivb.openplanner.team/stops/5213"], ["https://mivb.openplanner.team/stops/5413F", "https://mivb.openplanner.team/stops/5462F"], ["https://mivb.openplanner.team/stops/3562", "https://mivb.openplanner.team/stops/5409"], ["https://mivb.openplanner.team/stops/9552", "https://mivb.openplanner.team/stops/9575"], ["https://mivb.openplanner.team/stops/1257", "https://mivb.openplanner.team/stops/2564"], ["https://mivb.openplanner.team/stops/5706", "https://mivb.openplanner.team/stops/5707"], ["https://mivb.openplanner.team/stops/6024", "https://mivb.openplanner.team/stops/0070421"], ["https://mivb.openplanner.team/stops/6014", "https://mivb.openplanner.team/stops/6434F"], ["https://mivb.openplanner.team/stops/1076", "https://mivb.openplanner.team/stops/1076B"], ["https://mivb.openplanner.team/stops/5040", "https://mivb.openplanner.team/stops/5048"], ["https://mivb.openplanner.team/stops/3125", "https://mivb.openplanner.team/stops/4365"], ["https://mivb.openplanner.team/stops/5059", "https://mivb.openplanner.team/stops/5813F"], ["https://mivb.openplanner.team/stops/3121", "https://mivb.openplanner.team/stops/6158"], ["https://mivb.openplanner.team/stops/6177", "https://mivb.openplanner.team/stops/6179"], ["https://mivb.openplanner.team/stops/2263", "https://mivb.openplanner.team/stops/6659F"], ["https://mivb.openplanner.team/stops/2801", "https://mivb.openplanner.team/stops/4251"], ["https://mivb.openplanner.team/stops/1821", "https://mivb.openplanner.team/stops/1853"], ["https://mivb.openplanner.team/stops/1211B", "https://mivb.openplanner.team/stops/3760"], ["https://mivb.openplanner.team/stops/3260", "https://mivb.openplanner.team/stops/3633B"], ["https://mivb.openplanner.team/stops/1715", "https://mivb.openplanner.team/stops/1779"], ["https://mivb.openplanner.team/stops/1327", "https://mivb.openplanner.team/stops/3856"], ["https://mivb.openplanner.team/stops/1065", "https://mivb.openplanner.team/stops/6803F"], ["https://mivb.openplanner.team/stops/3611F", "https://mivb.openplanner.team/stops/8651"], ["https://mivb.openplanner.team/stops/2337F", "https://mivb.openplanner.team/stops/2338F"], ["https://mivb.openplanner.team/stops/2370", "https://mivb.openplanner.team/stops/4252"], ["https://mivb.openplanner.team/stops/4295", "https://mivb.openplanner.team/stops/4402"], ["https://mivb.openplanner.team/stops/8011", "https://mivb.openplanner.team/stops/8012"], ["https://mivb.openplanner.team/stops/3462", "https://mivb.openplanner.team/stops/3920"], ["https://mivb.openplanner.team/stops/3012", "https://mivb.openplanner.team/stops/6447"], ["https://mivb.openplanner.team/stops/2718", "https://mivb.openplanner.team/stops/5415F"], ["https://mivb.openplanner.team/stops/6804F", "https://mivb.openplanner.team/stops/6866F"], ["https://mivb.openplanner.team/stops/1019", "https://mivb.openplanner.team/stops/1350"], ["https://mivb.openplanner.team/stops/1961B", "https://mivb.openplanner.team/stops/5825"], ["https://mivb.openplanner.team/stops/2977", "https://mivb.openplanner.team/stops/5306G"], ["https://mivb.openplanner.team/stops/5519", "https://mivb.openplanner.team/stops/5521"], ["https://mivb.openplanner.team/stops/3810", "https://mivb.openplanner.team/stops/3815"], ["https://mivb.openplanner.team/stops/1830", "https://mivb.openplanner.team/stops/5510"], ["https://mivb.openplanner.team/stops/0660166", "https://mivb.openplanner.team/stops/0660266"], ["https://mivb.openplanner.team/stops/4223", "https://mivb.openplanner.team/stops/7830352"], ["https://mivb.openplanner.team/stops/1289", "https://mivb.openplanner.team/stops/4229"], ["https://mivb.openplanner.team/stops/3118", "https://mivb.openplanner.team/stops/6060"], ["https://mivb.openplanner.team/stops/1479", "https://mivb.openplanner.team/stops/7670208"], ["https://mivb.openplanner.team/stops/1821", "https://mivb.openplanner.team/stops/5509"], ["https://mivb.openplanner.team/stops/1049F", "https://mivb.openplanner.team/stops/1059"], ["https://mivb.openplanner.team/stops/4207", "https://mivb.openplanner.team/stops/9047"], ["https://mivb.openplanner.team/stops/2243F", "https://mivb.openplanner.team/stops/5308F"], ["https://mivb.openplanner.team/stops/0100524", "https://mivb.openplanner.team/stops/9983"], ["https://mivb.openplanner.team/stops/4069", "https://mivb.openplanner.team/stops/4260"], ["https://mivb.openplanner.team/stops/0089", "https://mivb.openplanner.team/stops/5531"], ["https://mivb.openplanner.team/stops/2046", "https://mivb.openplanner.team/stops/8261"], ["https://mivb.openplanner.team/stops/2927", "https://mivb.openplanner.team/stops/0060120"], ["https://mivb.openplanner.team/stops/1835", "https://mivb.openplanner.team/stops/5525"], ["https://mivb.openplanner.team/stops/1706", "https://mivb.openplanner.team/stops/1769"], ["https://mivb.openplanner.team/stops/1456", "https://mivb.openplanner.team/stops/6477"], ["https://mivb.openplanner.team/stops/2900", "https://mivb.openplanner.team/stops/3304"], ["https://mivb.openplanner.team/stops/3158", "https://mivb.openplanner.team/stops/3953"], ["https://mivb.openplanner.team/stops/3334F", "https://mivb.openplanner.team/stops/9727"], ["https://mivb.openplanner.team/stops/1352", "https://mivb.openplanner.team/stops/3562"], ["https://mivb.openplanner.team/stops/2910", "https://mivb.openplanner.team/stops/5801"], ["https://mivb.openplanner.team/stops/6607", "https://mivb.openplanner.team/stops/0440549"], ["https://mivb.openplanner.team/stops/8271", "https://mivb.openplanner.team/stops/0270614"], ["https://mivb.openplanner.team/stops/2916", "https://mivb.openplanner.team/stops/2976"], ["https://mivb.openplanner.team/stops/1513", "https://mivb.openplanner.team/stops/6190"], ["https://mivb.openplanner.team/stops/1288", "https://mivb.openplanner.team/stops/8472"], ["https://mivb.openplanner.team/stops/1348", "https://mivb.openplanner.team/stops/2371"], ["https://mivb.openplanner.team/stops/2148", "https://mivb.openplanner.team/stops/6934F"], ["https://mivb.openplanner.team/stops/3223B", "https://mivb.openplanner.team/stops/3259B"], ["https://mivb.openplanner.team/stops/2928", "https://mivb.openplanner.team/stops/2962"], ["https://mivb.openplanner.team/stops/4351", "https://mivb.openplanner.team/stops/5452"], ["https://mivb.openplanner.team/stops/2079", "https://mivb.openplanner.team/stops/4309"], ["https://mivb.openplanner.team/stops/1307F", "https://mivb.openplanner.team/stops/4003G"], ["https://mivb.openplanner.team/stops/2415", "https://mivb.openplanner.team/stops/5855F"], ["https://mivb.openplanner.team/stops/1914", "https://mivb.openplanner.team/stops/5409"], ["https://mivb.openplanner.team/stops/2856B", "https://mivb.openplanner.team/stops/2857B"], ["https://mivb.openplanner.team/stops/5299", "https://mivb.openplanner.team/stops/5363"], ["https://mivb.openplanner.team/stops/8211", "https://mivb.openplanner.team/stops/0210232"], ["https://mivb.openplanner.team/stops/2522", "https://mivb.openplanner.team/stops/2564"], ["https://mivb.openplanner.team/stops/1642F", "https://mivb.openplanner.team/stops/6419F"], ["https://mivb.openplanner.team/stops/1140", "https://mivb.openplanner.team/stops/23"], ["https://mivb.openplanner.team/stops/0501", "https://mivb.openplanner.team/stops/0506"], ["https://mivb.openplanner.team/stops/2457", "https://mivb.openplanner.team/stops/5812F"], ["https://mivb.openplanner.team/stops/4129", "https://mivb.openplanner.team/stops/7790356"], ["https://mivb.openplanner.team/stops/4452", "https://mivb.openplanner.team/stops/0250136"], ["https://mivb.openplanner.team/stops/2218", "https://mivb.openplanner.team/stops/3858"], ["https://mivb.openplanner.team/stops/1831", "https://mivb.openplanner.team/stops/0130227"], ["https://mivb.openplanner.team/stops/7830152", "https://mivb.openplanner.team/stops/7830252"], ["https://mivb.openplanner.team/stops/6445", "https://mivb.openplanner.team/stops/6447"], ["https://mivb.openplanner.team/stops/1928F", "https://mivb.openplanner.team/stops/1995"], ["https://mivb.openplanner.team/stops/3221", "https://mivb.openplanner.team/stops/6604F"], ["https://mivb.openplanner.team/stops/1599", "https://mivb.openplanner.team/stops/1755"], ["https://mivb.openplanner.team/stops/1737", "https://mivb.openplanner.team/stops/5028"], ["https://mivb.openplanner.team/stops/2721", "https://mivb.openplanner.team/stops/5414F"], ["https://mivb.openplanner.team/stops/1014F", "https://mivb.openplanner.team/stops/6864F"], ["https://mivb.openplanner.team/stops/7252B", "https://mivb.openplanner.team/stops/7998"], ["https://mivb.openplanner.team/stops/2935", "https://mivb.openplanner.team/stops/2956"], ["https://mivb.openplanner.team/stops/2351", "https://mivb.openplanner.team/stops/2351F"], ["https://mivb.openplanner.team/stops/2856B", "https://mivb.openplanner.team/stops/5001F"], ["https://mivb.openplanner.team/stops/3681", "https://mivb.openplanner.team/stops/3856"], ["https://mivb.openplanner.team/stops/3106", "https://mivb.openplanner.team/stops/6456F"], ["https://mivb.openplanner.team/stops/3550", "https://mivb.openplanner.team/stops/4296"], ["https://mivb.openplanner.team/stops/1802", "https://mivb.openplanner.team/stops/3158B"], ["https://mivb.openplanner.team/stops/4290", "https://mivb.openplanner.team/stops/5453"], ["https://mivb.openplanner.team/stops/3164", "https://mivb.openplanner.team/stops/6203"], ["https://mivb.openplanner.team/stops/1917", "https://mivb.openplanner.team/stops/5254"], ["https://mivb.openplanner.team/stops/2608", "https://mivb.openplanner.team/stops/2663"], ["https://mivb.openplanner.team/stops/2831", "https://mivb.openplanner.team/stops/2833"], ["https://mivb.openplanner.team/stops/0660166", "https://mivb.openplanner.team/stops/2336G"], ["https://mivb.openplanner.team/stops/1932", "https://mivb.openplanner.team/stops/1958B"], ["https://mivb.openplanner.team/stops/3299", "https://mivb.openplanner.team/stops/3360F"], ["https://mivb.openplanner.team/stops/1828", "https://mivb.openplanner.team/stops/1847"], ["https://mivb.openplanner.team/stops/3214", "https://mivb.openplanner.team/stops/5362F"], ["https://mivb.openplanner.team/stops/4952", "https://mivb.openplanner.team/stops/0310544"], ["https://mivb.openplanner.team/stops/3628", "https://mivb.openplanner.team/stops/0320143"], ["https://mivb.openplanner.team/stops/5082", "https://mivb.openplanner.team/stops/7800355"], ["https://mivb.openplanner.team/stops/0610563", "https://mivb.openplanner.team/stops/0610663"], ["https://mivb.openplanner.team/stops/5103", "https://mivb.openplanner.team/stops/5170"], ["https://mivb.openplanner.team/stops/1539", "https://mivb.openplanner.team/stops/1557"], ["https://mivb.openplanner.team/stops/1288", "https://mivb.openplanner.team/stops/8764"], ["https://mivb.openplanner.team/stops/2252", "https://mivb.openplanner.team/stops/2254"], ["https://mivb.openplanner.team/stops/3408", "https://mivb.openplanner.team/stops/3409"], ["https://mivb.openplanner.team/stops/1977", "https://mivb.openplanner.team/stops/7604"], ["https://mivb.openplanner.team/stops/0621", "https://mivb.openplanner.team/stops/6657"], ["https://mivb.openplanner.team/stops/6428F", "https://mivb.openplanner.team/stops/6430"], ["https://mivb.openplanner.team/stops/6706", "https://mivb.openplanner.team/stops/0290112"], ["https://mivb.openplanner.team/stops/1232", "https://mivb.openplanner.team/stops/5155"], ["https://mivb.openplanner.team/stops/1493", "https://mivb.openplanner.team/stops/8672"], ["https://mivb.openplanner.team/stops/5295", "https://mivb.openplanner.team/stops/6173"], ["https://mivb.openplanner.team/stops/3412", "https://mivb.openplanner.team/stops/3414"], ["https://mivb.openplanner.team/stops/2257B", "https://mivb.openplanner.team/stops/2257G"], ["https://mivb.openplanner.team/stops/2313", "https://mivb.openplanner.team/stops/2365"], ["https://mivb.openplanner.team/stops/1738", "https://mivb.openplanner.team/stops/2104"], ["https://mivb.openplanner.team/stops/4998", "https://mivb.openplanner.team/stops/9052"], ["https://mivb.openplanner.team/stops/8711", "https://mivb.openplanner.team/stops/7710204"], ["https://mivb.openplanner.team/stops/1475", "https://mivb.openplanner.team/stops/7660109"], ["https://mivb.openplanner.team/stops/2515B", "https://mivb.openplanner.team/stops/5006"], ["https://mivb.openplanner.team/stops/4124", "https://mivb.openplanner.team/stops/7790256"], ["https://mivb.openplanner.team/stops/1207", "https://mivb.openplanner.team/stops/2561"], ["https://mivb.openplanner.team/stops/3228", "https://mivb.openplanner.team/stops/6648"], ["https://mivb.openplanner.team/stops/6313", "https://mivb.openplanner.team/stops/6352"], ["https://mivb.openplanner.team/stops/4306", "https://mivb.openplanner.team/stops/5264F"], ["https://mivb.openplanner.team/stops/2560", "https://mivb.openplanner.team/stops/2562B"], ["https://mivb.openplanner.team/stops/9164", "https://mivb.openplanner.team/stops/9575"], ["https://mivb.openplanner.team/stops/3633B", "https://mivb.openplanner.team/stops/6649F"], ["https://mivb.openplanner.team/stops/1587", "https://mivb.openplanner.team/stops/1828"], ["https://mivb.openplanner.team/stops/1983", "https://mivb.openplanner.team/stops/4367B"], ["https://mivb.openplanner.team/stops/2971", "https://mivb.openplanner.team/stops/5475"], ["https://mivb.openplanner.team/stops/1605", "https://mivb.openplanner.team/stops/5516"], ["https://mivb.openplanner.team/stops/2225", "https://mivb.openplanner.team/stops/2226"], ["https://mivb.openplanner.team/stops/1354", "https://mivb.openplanner.team/stops/3122"], ["https://mivb.openplanner.team/stops/1584", "https://mivb.openplanner.team/stops/1833B"], ["https://mivb.openplanner.team/stops/3274", "https://mivb.openplanner.team/stops/3661"], ["https://mivb.openplanner.team/stops/2225", "https://mivb.openplanner.team/stops/2550"], ["https://mivb.openplanner.team/stops/3299", "https://mivb.openplanner.team/stops/5356"], ["https://mivb.openplanner.team/stops/1321", "https://mivb.openplanner.team/stops/1540"], ["https://mivb.openplanner.team/stops/2322", "https://mivb.openplanner.team/stops/2412"], ["https://mivb.openplanner.team/stops/6468", "https://mivb.openplanner.team/stops/0250336"], ["https://mivb.openplanner.team/stops/2854", "https://mivb.openplanner.team/stops/2856B"], ["https://mivb.openplanner.team/stops/3309", "https://mivb.openplanner.team/stops/3309F"], ["https://mivb.openplanner.team/stops/6023", "https://mivb.openplanner.team/stops/6055"], ["https://mivb.openplanner.team/stops/2927", "https://mivb.openplanner.team/stops/6465"], ["https://mivb.openplanner.team/stops/5016F", "https://mivb.openplanner.team/stops/5017"], ["https://mivb.openplanner.team/stops/1253B", "https://mivb.openplanner.team/stops/8722"], ["https://mivb.openplanner.team/stops/2023", "https://mivb.openplanner.team/stops/2459"], ["https://mivb.openplanner.team/stops/3508F", "https://mivb.openplanner.team/stops/9952G"], ["https://mivb.openplanner.team/stops/5071", "https://mivb.openplanner.team/stops/0280213"], ["https://mivb.openplanner.team/stops/3232", "https://mivb.openplanner.team/stops/3239"], ["https://mivb.openplanner.team/stops/1951", "https://mivb.openplanner.team/stops/5025"], ["https://mivb.openplanner.team/stops/0601262", "https://mivb.openplanner.team/stops/1820"], ["https://mivb.openplanner.team/stops/3218", "https://mivb.openplanner.team/stops/6021"], ["https://mivb.openplanner.team/stops/0040318", "https://mivb.openplanner.team/stops/0040518"], ["https://mivb.openplanner.team/stops/1802", "https://mivb.openplanner.team/stops/1872B"], ["https://mivb.openplanner.team/stops/1510", "https://mivb.openplanner.team/stops/3100"], ["https://mivb.openplanner.team/stops/1586", "https://mivb.openplanner.team/stops/1639"], ["https://mivb.openplanner.team/stops/3284", "https://mivb.openplanner.team/stops/3286B"], ["https://mivb.openplanner.team/stops/3518B", "https://mivb.openplanner.team/stops/7529"], ["https://mivb.openplanner.team/stops/3219", "https://mivb.openplanner.team/stops/8061"], ["https://mivb.openplanner.team/stops/3309", "https://mivb.openplanner.team/stops/3414"], ["https://mivb.openplanner.team/stops/5406", "https://mivb.openplanner.team/stops/7520"], ["https://mivb.openplanner.team/stops/5119", "https://mivb.openplanner.team/stops/5155"], ["https://mivb.openplanner.team/stops/2334F", "https://mivb.openplanner.team/stops/2463"], ["https://mivb.openplanner.team/stops/2900", "https://mivb.openplanner.team/stops/2903"], ["https://mivb.openplanner.team/stops/8012", "https://mivb.openplanner.team/stops/0010115"], ["https://mivb.openplanner.team/stops/4105", "https://mivb.openplanner.team/stops/4158"], ["https://mivb.openplanner.team/stops/2017", "https://mivb.openplanner.team/stops/2025"], ["https://mivb.openplanner.team/stops/1508", "https://mivb.openplanner.team/stops/1570"], ["https://mivb.openplanner.team/stops/1406", "https://mivb.openplanner.team/stops/1462"], ["https://mivb.openplanner.team/stops/5361", "https://mivb.openplanner.team/stops/5362F"], ["https://mivb.openplanner.team/stops/1111", "https://mivb.openplanner.team/stops/4153"], ["https://mivb.openplanner.team/stops/2539F", "https://mivb.openplanner.team/stops/2671"], ["https://mivb.openplanner.team/stops/1510", "https://mivb.openplanner.team/stops/0050419"], ["https://mivb.openplanner.team/stops/1205", "https://mivb.openplanner.team/stops/1259"], ["https://mivb.openplanner.team/stops/1289", "https://mivb.openplanner.team/stops/5474"], ["https://mivb.openplanner.team/stops/1133", "https://mivb.openplanner.team/stops/1728"], ["https://mivb.openplanner.team/stops/2912", "https://mivb.openplanner.team/stops/5801"], ["https://mivb.openplanner.team/stops/2402", "https://mivb.openplanner.team/stops/2465"], ["https://mivb.openplanner.team/stops/1467", "https://mivb.openplanner.team/stops/2801"], ["https://mivb.openplanner.team/stops/5116", "https://mivb.openplanner.team/stops/5175"], ["https://mivb.openplanner.team/stops/1099", "https://mivb.openplanner.team/stops/1196"], ["https://mivb.openplanner.team/stops/0470351", "https://mivb.openplanner.team/stops/0470659"], ["https://mivb.openplanner.team/stops/2287", "https://mivb.openplanner.team/stops/9996"], ["https://mivb.openplanner.team/stops/1554", "https://mivb.openplanner.team/stops/0120226"], ["https://mivb.openplanner.team/stops/5038", "https://mivb.openplanner.team/stops/5044"], ["https://mivb.openplanner.team/stops/2143B", "https://mivb.openplanner.team/stops/2148"], ["https://mivb.openplanner.team/stops/2960", "https://mivb.openplanner.team/stops/5469"], ["https://mivb.openplanner.team/stops/1716", "https://mivb.openplanner.team/stops/5312"], ["https://mivb.openplanner.team/stops/4340", "https://mivb.openplanner.team/stops/5422"], ["https://mivb.openplanner.team/stops/1257", "https://mivb.openplanner.team/stops/2522"], ["https://mivb.openplanner.team/stops/1830", "https://mivb.openplanner.team/stops/1832"], ["https://mivb.openplanner.team/stops/3103", "https://mivb.openplanner.team/stops/5802"], ["https://mivb.openplanner.team/stops/0050219", "https://mivb.openplanner.team/stops/0050419"], ["https://mivb.openplanner.team/stops/0610363", "https://mivb.openplanner.team/stops/0610563"], ["https://mivb.openplanner.team/stops/2203", "https://mivb.openplanner.team/stops/2204"], ["https://mivb.openplanner.team/stops/5003", "https://mivb.openplanner.team/stops/5081F"], ["https://mivb.openplanner.team/stops/2669", "https://mivb.openplanner.team/stops/2669F"], ["https://mivb.openplanner.team/stops/5258", "https://mivb.openplanner.team/stops/5407"], ["https://mivb.openplanner.team/stops/1514", "https://mivb.openplanner.team/stops/2974"], ["https://mivb.openplanner.team/stops/3306", "https://mivb.openplanner.team/stops/3420"], ["https://mivb.openplanner.team/stops/6005", "https://mivb.openplanner.team/stops/7720303"], ["https://mivb.openplanner.team/stops/2932", "https://mivb.openplanner.team/stops/6408"], ["https://mivb.openplanner.team/stops/1711", "https://mivb.openplanner.team/stops/4259"], ["https://mivb.openplanner.team/stops/1968", "https://mivb.openplanner.team/stops/2125"], ["https://mivb.openplanner.team/stops/1805", "https://mivb.openplanner.team/stops/1870"], ["https://mivb.openplanner.team/stops/1201", "https://mivb.openplanner.team/stops/2536"], ["https://mivb.openplanner.team/stops/4059F", "https://mivb.openplanner.team/stops/4165"], ["https://mivb.openplanner.team/stops/6418", "https://mivb.openplanner.team/stops/6419F"], ["https://mivb.openplanner.team/stops/3132", "https://mivb.openplanner.team/stops/5038"], ["https://mivb.openplanner.team/stops/8071", "https://mivb.openplanner.team/stops/21"], ["https://mivb.openplanner.team/stops/1080", "https://mivb.openplanner.team/stops/1103"], ["https://mivb.openplanner.team/stops/2903F", "https://mivb.openplanner.team/stops/3420"], ["https://mivb.openplanner.team/stops/8091", "https://mivb.openplanner.team/stops/23"], ["https://mivb.openplanner.team/stops/1957B", "https://mivb.openplanner.team/stops/1963"], ["https://mivb.openplanner.team/stops/3222", "https://mivb.openplanner.team/stops/6654F"], ["https://mivb.openplanner.team/stops/1067", "https://mivb.openplanner.team/stops/2801"], ["https://mivb.openplanner.team/stops/1933B", "https://mivb.openplanner.team/stops/1957B"], ["https://mivb.openplanner.team/stops/3257", "https://mivb.openplanner.team/stops/0370138"], ["https://mivb.openplanner.team/stops/1024", "https://mivb.openplanner.team/stops/9026"], ["https://mivb.openplanner.team/stops/1912", "https://mivb.openplanner.team/stops/7604"], ["https://mivb.openplanner.team/stops/3399", "https://mivb.openplanner.team/stops/0060420"], ["https://mivb.openplanner.team/stops/5823", "https://mivb.openplanner.team/stops/5824"], ["https://mivb.openplanner.team/stops/2119", "https://mivb.openplanner.team/stops/2144"], ["https://mivb.openplanner.team/stops/1308G", "https://mivb.openplanner.team/stops/4066F"], ["https://mivb.openplanner.team/stops/3524", "https://mivb.openplanner.team/stops/37"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/9552"], ["https://mivb.openplanner.team/stops/1184", "https://mivb.openplanner.team/stops/7750260"], ["https://mivb.openplanner.team/stops/6314", "https://mivb.openplanner.team/stops/0320143"], ["https://mivb.openplanner.team/stops/1202", "https://mivb.openplanner.team/stops/8753"], ["https://mivb.openplanner.team/stops/1463", "https://mivb.openplanner.team/stops/3218"], ["https://mivb.openplanner.team/stops/3401", "https://mivb.openplanner.team/stops/3661"], ["https://mivb.openplanner.team/stops/2926", "https://mivb.openplanner.team/stops/3470"], ["https://mivb.openplanner.team/stops/4854C", "https://mivb.openplanner.team/stops/4857B"], ["https://mivb.openplanner.team/stops/1868", "https://mivb.openplanner.team/stops/0200131"], ["https://mivb.openplanner.team/stops/3804B", "https://mivb.openplanner.team/stops/3852"], ["https://mivb.openplanner.team/stops/1733", "https://mivb.openplanner.team/stops/6113F"], ["https://mivb.openplanner.team/stops/2214", "https://mivb.openplanner.team/stops/2262"], ["https://mivb.openplanner.team/stops/2377", "https://mivb.openplanner.team/stops/5771"], ["https://mivb.openplanner.team/stops/3408", "https://mivb.openplanner.team/stops/3454"], ["https://mivb.openplanner.team/stops/5405", "https://mivb.openplanner.team/stops/5470"], ["https://mivb.openplanner.team/stops/2816", "https://mivb.openplanner.team/stops/2854"], ["https://mivb.openplanner.team/stops/2971", "https://mivb.openplanner.team/stops/2971F"], ["https://mivb.openplanner.team/stops/3231", "https://mivb.openplanner.team/stops/3281"], ["https://mivb.openplanner.team/stops/2303", "https://mivb.openplanner.team/stops/0270114"], ["https://mivb.openplanner.team/stops/6313", "https://mivb.openplanner.team/stops/0320343"], ["https://mivb.openplanner.team/stops/1326", "https://mivb.openplanner.team/stops/2257G"], ["https://mivb.openplanner.team/stops/1144", "https://mivb.openplanner.team/stops/0020616"], ["https://mivb.openplanner.team/stops/1327", "https://mivb.openplanner.team/stops/2220"], ["https://mivb.openplanner.team/stops/1381", "https://mivb.openplanner.team/stops/9600B"], ["https://mivb.openplanner.team/stops/2109B", "https://mivb.openplanner.team/stops/2110B"], ["https://mivb.openplanner.team/stops/3481", "https://mivb.openplanner.team/stops/3510"], ["https://mivb.openplanner.team/stops/2960", "https://mivb.openplanner.team/stops/2960F"], ["https://mivb.openplanner.team/stops/8382", "https://mivb.openplanner.team/stops/8732"], ["https://mivb.openplanner.team/stops/6012G", "https://mivb.openplanner.team/stops/6066G"], ["https://mivb.openplanner.team/stops/1953", "https://mivb.openplanner.team/stops/2099"], ["https://mivb.openplanner.team/stops/2833", "https://mivb.openplanner.team/stops/0440149"], ["https://mivb.openplanner.team/stops/5024", "https://mivb.openplanner.team/stops/5059"], ["https://mivb.openplanner.team/stops/1821", "https://mivb.openplanner.team/stops/1854"], ["https://mivb.openplanner.team/stops/1781", "https://mivb.openplanner.team/stops/2279"], ["https://mivb.openplanner.team/stops/2217", "https://mivb.openplanner.team/stops/3852"], ["https://mivb.openplanner.team/stops/0660166", "https://mivb.openplanner.team/stops/6109"], ["https://mivb.openplanner.team/stops/3611F", "https://mivb.openplanner.team/stops/7650110"], ["https://mivb.openplanner.team/stops/6410", "https://mivb.openplanner.team/stops/6412F"], ["https://mivb.openplanner.team/stops/2512", "https://mivb.openplanner.team/stops/2566B"], ["https://mivb.openplanner.team/stops/8011", "https://mivb.openplanner.team/stops/0010115"], ["https://mivb.openplanner.team/stops/2221", "https://mivb.openplanner.team/stops/6442"], ["https://mivb.openplanner.team/stops/2038", "https://mivb.openplanner.team/stops/2039"], ["https://mivb.openplanner.team/stops/6804F", "https://mivb.openplanner.team/stops/6865F"], ["https://mivb.openplanner.team/stops/2728", "https://mivb.openplanner.team/stops/5601"], ["https://mivb.openplanner.team/stops/2976", "https://mivb.openplanner.team/stops/5355"], ["https://mivb.openplanner.team/stops/1121", "https://mivb.openplanner.team/stops/9753"], ["https://mivb.openplanner.team/stops/1466", "https://mivb.openplanner.team/stops/9047"], ["https://mivb.openplanner.team/stops/2579", "https://mivb.openplanner.team/stops/4600"], ["https://mivb.openplanner.team/stops/5530", "https://mivb.openplanner.team/stops/0160230"], ["https://mivb.openplanner.team/stops/8742", "https://mivb.openplanner.team/stops/7740101"], ["https://mivb.openplanner.team/stops/3810", "https://mivb.openplanner.team/stops/3850"], ["https://mivb.openplanner.team/stops/1111", "https://mivb.openplanner.team/stops/2569"], ["https://mivb.openplanner.team/stops/1776", "https://mivb.openplanner.team/stops/0300245"], ["https://mivb.openplanner.team/stops/1145", "https://mivb.openplanner.team/stops/3253"], ["https://mivb.openplanner.team/stops/1861", "https://mivb.openplanner.team/stops/5561F"], ["https://mivb.openplanner.team/stops/1983", "https://mivb.openplanner.team/stops/3620B"], ["https://mivb.openplanner.team/stops/1821", "https://mivb.openplanner.team/stops/5510"], ["https://mivb.openplanner.team/stops/3532", "https://mivb.openplanner.team/stops/0310444"], ["https://mivb.openplanner.team/stops/1571", "https://mivb.openplanner.team/stops/0410446"], ["https://mivb.openplanner.team/stops/5102F", "https://mivb.openplanner.team/stops/5105"], ["https://mivb.openplanner.team/stops/1231", "https://mivb.openplanner.team/stops/5119"], ["https://mivb.openplanner.team/stops/8141", "https://mivb.openplanner.team/stops/8142"], ["https://mivb.openplanner.team/stops/3354", "https://mivb.openplanner.team/stops/8411"], ["https://mivb.openplanner.team/stops/5658", "https://mivb.openplanner.team/stops/5659"], ["https://mivb.openplanner.team/stops/5813", "https://mivb.openplanner.team/stops/5856F"], ["https://mivb.openplanner.team/stops/2365", "https://mivb.openplanner.team/stops/2827"], ["https://mivb.openplanner.team/stops/2209", "https://mivb.openplanner.team/stops/0440249"], ["https://mivb.openplanner.team/stops/1456", "https://mivb.openplanner.team/stops/6476"], ["https://mivb.openplanner.team/stops/2250", "https://mivb.openplanner.team/stops/3216"], ["https://mivb.openplanner.team/stops/3713", "https://mivb.openplanner.team/stops/3756"], ["https://mivb.openplanner.team/stops/1928", "https://mivb.openplanner.team/stops/1928F"], ["https://mivb.openplanner.team/stops/3105", "https://mivb.openplanner.team/stops/3171"], ["https://mivb.openplanner.team/stops/3158", "https://mivb.openplanner.team/stops/3921"], ["https://mivb.openplanner.team/stops/2217", "https://mivb.openplanner.team/stops/2217F"], ["https://mivb.openplanner.team/stops/2928", "https://mivb.openplanner.team/stops/3506"], ["https://mivb.openplanner.team/stops/5512", "https://mivb.openplanner.team/stops/6475F"], ["https://mivb.openplanner.team/stops/9702", "https://mivb.openplanner.team/stops/9726"], ["https://mivb.openplanner.team/stops/4109", "https://mivb.openplanner.team/stops/4115"], ["https://mivb.openplanner.team/stops/1193", "https://mivb.openplanner.team/stops/5103"], ["https://mivb.openplanner.team/stops/1482", "https://mivb.openplanner.team/stops/2373"], ["https://mivb.openplanner.team/stops/4014", "https://mivb.openplanner.team/stops/7740101"], ["https://mivb.openplanner.team/stops/2329", "https://mivb.openplanner.team/stops/3064"], ["https://mivb.openplanner.team/stops/2050", "https://mivb.openplanner.team/stops/5427"], ["https://mivb.openplanner.team/stops/1018", "https://mivb.openplanner.team/stops/9801"], ["https://mivb.openplanner.team/stops/5225F", "https://mivb.openplanner.team/stops/5226F"], ["https://mivb.openplanner.team/stops/0110125", "https://mivb.openplanner.team/stops/0110225"], ["https://mivb.openplanner.team/stops/3763", "https://mivb.openplanner.team/stops/4555"], ["https://mivb.openplanner.team/stops/5416", "https://mivb.openplanner.team/stops/5451F"], ["https://mivb.openplanner.team/stops/2076", "https://mivb.openplanner.team/stops/5419"], ["https://mivb.openplanner.team/stops/1716", "https://mivb.openplanner.team/stops/1760"], ["https://mivb.openplanner.team/stops/4230", "https://mivb.openplanner.team/stops/8813"], ["https://mivb.openplanner.team/stops/1108", "https://mivb.openplanner.team/stops/4006G"], ["https://mivb.openplanner.team/stops/4156", "https://mivb.openplanner.team/stops/5172F"], ["https://mivb.openplanner.team/stops/2247", "https://mivb.openplanner.team/stops/3266"], ["https://mivb.openplanner.team/stops/4129", "https://mivb.openplanner.team/stops/7790456"], ["https://mivb.openplanner.team/stops/5910", "https://mivb.openplanner.team/stops/5959"], ["https://mivb.openplanner.team/stops/1208", "https://mivb.openplanner.team/stops/7710204"], ["https://mivb.openplanner.team/stops/2237", "https://mivb.openplanner.team/stops/6179"], ["https://mivb.openplanner.team/stops/1776", "https://mivb.openplanner.team/stops/3620B"], ["https://mivb.openplanner.team/stops/8131", "https://mivb.openplanner.team/stops/27"], ["https://mivb.openplanner.team/stops/2122", "https://mivb.openplanner.team/stops/5021"], ["https://mivb.openplanner.team/stops/1875", "https://mivb.openplanner.team/stops/5560"], ["https://mivb.openplanner.team/stops/2809", "https://mivb.openplanner.team/stops/4232"], ["https://mivb.openplanner.team/stops/1320", "https://mivb.openplanner.team/stops/3463"], ["https://mivb.openplanner.team/stops/3549", "https://mivb.openplanner.team/stops/4407"], ["https://mivb.openplanner.team/stops/3171", "https://mivb.openplanner.team/stops/5958C"], ["https://mivb.openplanner.team/stops/4126", "https://mivb.openplanner.team/stops/4130F"], ["https://mivb.openplanner.team/stops/5042", "https://mivb.openplanner.team/stops/5048"], ["https://mivb.openplanner.team/stops/2977", "https://mivb.openplanner.team/stops/3454"], ["https://mivb.openplanner.team/stops/1129", "https://mivb.openplanner.team/stops/6354"], ["https://mivb.openplanner.team/stops/3017", "https://mivb.openplanner.team/stops/3328"], ["https://mivb.openplanner.team/stops/0040518", "https://mivb.openplanner.team/stops/8401"], ["https://mivb.openplanner.team/stops/1515", "https://mivb.openplanner.team/stops/1565"], ["https://mivb.openplanner.team/stops/1614B", "https://mivb.openplanner.team/stops/1615"], ["https://mivb.openplanner.team/stops/3106", "https://mivb.openplanner.team/stops/6457F"], ["https://mivb.openplanner.team/stops/5761", "https://mivb.openplanner.team/stops/5770F"], ["https://mivb.openplanner.team/stops/2760B", "https://mivb.openplanner.team/stops/5458"], ["https://mivb.openplanner.team/stops/5812", "https://mivb.openplanner.team/stops/5813"], ["https://mivb.openplanner.team/stops/5074", "https://mivb.openplanner.team/stops/7770258"], ["https://mivb.openplanner.team/stops/3609F", "https://mivb.openplanner.team/stops/3712"], ["https://mivb.openplanner.team/stops/5610", "https://mivb.openplanner.team/stops/5611"], ["https://mivb.openplanner.team/stops/2608", "https://mivb.openplanner.team/stops/2665"], ["https://mivb.openplanner.team/stops/1932", "https://mivb.openplanner.team/stops/1957B"], ["https://mivb.openplanner.team/stops/2080", "https://mivb.openplanner.team/stops/2115"], ["https://mivb.openplanner.team/stops/8121", "https://mivb.openplanner.team/stops/0120126"], ["https://mivb.openplanner.team/stops/3214", "https://mivb.openplanner.team/stops/5363"], ["https://mivb.openplanner.team/stops/1857", "https://mivb.openplanner.team/stops/5556"], ["https://mivb.openplanner.team/stops/1620B", "https://mivb.openplanner.team/stops/1629"], ["https://mivb.openplanner.team/stops/2514", "https://mivb.openplanner.team/stops/4653"], ["https://mivb.openplanner.team/stops/4252", "https://mivb.openplanner.team/stops/6097B"], ["https://mivb.openplanner.team/stops/1912", "https://mivb.openplanner.team/stops/5467"], ["https://mivb.openplanner.team/stops/1511", "https://mivb.openplanner.team/stops/1567"], ["https://mivb.openplanner.team/stops/2337F", "https://mivb.openplanner.team/stops/5740"], ["https://mivb.openplanner.team/stops/1049F", "https://mivb.openplanner.team/stops/5255F"], ["https://mivb.openplanner.team/stops/2608", "https://mivb.openplanner.team/stops/2939B"], ["https://mivb.openplanner.team/stops/1493", "https://mivb.openplanner.team/stops/7670208"], ["https://mivb.openplanner.team/stops/3236", "https://mivb.openplanner.team/stops/4055G"], ["https://mivb.openplanner.team/stops/1712", "https://mivb.openplanner.team/stops/3953"], ["https://mivb.openplanner.team/stops/4365", "https://mivb.openplanner.team/stops/6156F"], ["https://mivb.openplanner.team/stops/8711", "https://mivb.openplanner.team/stops/7710104"], ["https://mivb.openplanner.team/stops/3214", "https://mivb.openplanner.team/stops/5041B"], ["https://mivb.openplanner.team/stops/4124", "https://mivb.openplanner.team/stops/7790156"], ["https://mivb.openplanner.team/stops/7501", "https://mivb.openplanner.team/stops/9600B"], ["https://mivb.openplanner.team/stops/3331", "https://mivb.openplanner.team/stops/6356F"], ["https://mivb.openplanner.team/stops/0440449", "https://mivb.openplanner.team/stops/0440549"], ["https://mivb.openplanner.team/stops/1758B", "https://mivb.openplanner.team/stops/2291B"], ["https://mivb.openplanner.team/stops/1881", "https://mivb.openplanner.team/stops/1981"], ["https://mivb.openplanner.team/stops/1326", "https://mivb.openplanner.team/stops/6858G"], ["https://mivb.openplanner.team/stops/3132", "https://mivb.openplanner.team/stops/3179"], ["https://mivb.openplanner.team/stops/0090123", "https://mivb.openplanner.team/stops/0090323"], ["https://mivb.openplanner.team/stops/2285G", "https://mivb.openplanner.team/stops/6463F"], ["https://mivb.openplanner.team/stops/2877", "https://mivb.openplanner.team/stops/6501"], ["https://mivb.openplanner.team/stops/5529", "https://mivb.openplanner.team/stops/8161"], ["https://mivb.openplanner.team/stops/8472", "https://mivb.openplanner.team/stops/8764"], ["https://mivb.openplanner.team/stops/5067", "https://mivb.openplanner.team/stops/5405"], ["https://mivb.openplanner.team/stops/3403", "https://mivb.openplanner.team/stops/3459"], ["https://mivb.openplanner.team/stops/0020316", "https://mivb.openplanner.team/stops/0020416"], ["https://mivb.openplanner.team/stops/1117", "https://mivb.openplanner.team/stops/1178"], ["https://mivb.openplanner.team/stops/3625B", "https://mivb.openplanner.team/stops/6427F"], ["https://mivb.openplanner.team/stops/1910", "https://mivb.openplanner.team/stops/5611"], ["https://mivb.openplanner.team/stops/4500", "https://mivb.openplanner.team/stops/4558"], ["https://mivb.openplanner.team/stops/6209", "https://mivb.openplanner.team/stops/6253"], ["https://mivb.openplanner.team/stops/3279", "https://mivb.openplanner.team/stops/5038"], ["https://mivb.openplanner.team/stops/1578", "https://mivb.openplanner.team/stops/8112"], ["https://mivb.openplanner.team/stops/5521", "https://mivb.openplanner.team/stops/9561"], ["https://mivb.openplanner.team/stops/2545", "https://mivb.openplanner.team/stops/2809"], ["https://mivb.openplanner.team/stops/5802", "https://mivb.openplanner.team/stops/7268"], ["https://mivb.openplanner.team/stops/1237", "https://mivb.openplanner.team/stops/1242"], ["https://mivb.openplanner.team/stops/6103", "https://mivb.openplanner.team/stops/6178"], ["https://mivb.openplanner.team/stops/2009", "https://mivb.openplanner.team/stops/5269F"], ["https://mivb.openplanner.team/stops/5501", "https://mivb.openplanner.team/stops/0080222"], ["https://mivb.openplanner.team/stops/5060", "https://mivb.openplanner.team/stops/5857"], ["https://mivb.openplanner.team/stops/3132", "https://mivb.openplanner.team/stops/5041B"], ["https://mivb.openplanner.team/stops/2452", "https://mivb.openplanner.team/stops/5916F"], ["https://mivb.openplanner.team/stops/2902", "https://mivb.openplanner.team/stops/5362F"], ["https://mivb.openplanner.team/stops/3502", "https://mivb.openplanner.team/stops/0020516"], ["https://mivb.openplanner.team/stops/1377", "https://mivb.openplanner.team/stops/1387"], ["https://mivb.openplanner.team/stops/0601162", "https://mivb.openplanner.team/stops/0606"], ["https://mivb.openplanner.team/stops/1782", "https://mivb.openplanner.team/stops/5077"], ["https://mivb.openplanner.team/stops/8361", "https://mivb.openplanner.team/stops/39"], ["https://mivb.openplanner.team/stops/1614B", "https://mivb.openplanner.team/stops/1669"], ["https://mivb.openplanner.team/stops/1668", "https://mivb.openplanner.team/stops/9578"], ["https://mivb.openplanner.team/stops/4254B", "https://mivb.openplanner.team/stops/4258"], ["https://mivb.openplanner.team/stops/2765", "https://mivb.openplanner.team/stops/2770"], ["https://mivb.openplanner.team/stops/0040318", "https://mivb.openplanner.team/stops/0410146"], ["https://mivb.openplanner.team/stops/1756B", "https://mivb.openplanner.team/stops/1813"], ["https://mivb.openplanner.team/stops/2912", "https://mivb.openplanner.team/stops/2924"], ["https://mivb.openplanner.team/stops/3624B", "https://mivb.openplanner.team/stops/5017"], ["https://mivb.openplanner.team/stops/2301", "https://mivb.openplanner.team/stops/2838"], ["https://mivb.openplanner.team/stops/1788", "https://mivb.openplanner.team/stops/5295"], ["https://mivb.openplanner.team/stops/1841", "https://mivb.openplanner.team/stops/5508"], ["https://mivb.openplanner.team/stops/5801", "https://mivb.openplanner.team/stops/5872"], ["https://mivb.openplanner.team/stops/6357", "https://mivb.openplanner.team/stops/6437F"], ["https://mivb.openplanner.team/stops/2299", "https://mivb.openplanner.team/stops/5771"], ["https://mivb.openplanner.team/stops/4058F", "https://mivb.openplanner.team/stops/4162"], ["https://mivb.openplanner.team/stops/0600762", "https://mivb.openplanner.team/stops/62"], ["https://mivb.openplanner.team/stops/5406", "https://mivb.openplanner.team/stops/7544"], ["https://mivb.openplanner.team/stops/8834", "https://mivb.openplanner.team/stops/9707"], ["https://mivb.openplanner.team/stops/3460", "https://mivb.openplanner.team/stops/4558"], ["https://mivb.openplanner.team/stops/1835", "https://mivb.openplanner.team/stops/5655"], ["https://mivb.openplanner.team/stops/2900", "https://mivb.openplanner.team/stops/2903F"], ["https://mivb.openplanner.team/stops/5603", "https://mivb.openplanner.team/stops/5604"], ["https://mivb.openplanner.team/stops/1920", "https://mivb.openplanner.team/stops/2131"], ["https://mivb.openplanner.team/stops/1526", "https://mivb.openplanner.team/stops/1551"], ["https://mivb.openplanner.team/stops/4506", "https://mivb.openplanner.team/stops/5923"], ["https://mivb.openplanner.team/stops/1406", "https://mivb.openplanner.team/stops/1460"], ["https://mivb.openplanner.team/stops/2505", "https://mivb.openplanner.team/stops/2586"], ["https://mivb.openplanner.team/stops/0820170", "https://mivb.openplanner.team/stops/1460"], ["https://mivb.openplanner.team/stops/0470351", "https://mivb.openplanner.team/stops/0470459"], ["https://mivb.openplanner.team/stops/2824", "https://mivb.openplanner.team/stops/2875"], ["https://mivb.openplanner.team/stops/3712", "https://mivb.openplanner.team/stops/3752"], ["https://mivb.openplanner.team/stops/2608F", "https://mivb.openplanner.team/stops/5721G"], ["https://mivb.openplanner.team/stops/7700105", "https://mivb.openplanner.team/stops/8702"], ["https://mivb.openplanner.team/stops/9649", "https://mivb.openplanner.team/stops/9651"], ["https://mivb.openplanner.team/stops/3176", "https://mivb.openplanner.team/stops/7271"], ["https://mivb.openplanner.team/stops/4340", "https://mivb.openplanner.team/stops/5423"], ["https://mivb.openplanner.team/stops/1370", "https://mivb.openplanner.team/stops/40"], ["https://mivb.openplanner.team/stops/0050219", "https://mivb.openplanner.team/stops/0050519"], ["https://mivb.openplanner.team/stops/4958F", "https://mivb.openplanner.team/stops/7800155"], ["https://mivb.openplanner.team/stops/0610363", "https://mivb.openplanner.team/stops/0610463"], ["https://mivb.openplanner.team/stops/2026", "https://mivb.openplanner.team/stops/4408"], ["https://mivb.openplanner.team/stops/1321", "https://mivb.openplanner.team/stops/3288"], ["https://mivb.openplanner.team/stops/5008F", "https://mivb.openplanner.team/stops/7770258"], ["https://mivb.openplanner.team/stops/1242", "https://mivb.openplanner.team/stops/6648"], ["https://mivb.openplanner.team/stops/4341", "https://mivb.openplanner.team/stops/4342"], ["https://mivb.openplanner.team/stops/1150", "https://mivb.openplanner.team/stops/0110125"], ["https://mivb.openplanner.team/stops/1099", "https://mivb.openplanner.team/stops/4004"], ["https://mivb.openplanner.team/stops/1179", "https://mivb.openplanner.team/stops/1793"], ["https://mivb.openplanner.team/stops/9656", "https://mivb.openplanner.team/stops/9677"], ["https://mivb.openplanner.team/stops/5414F", "https://mivb.openplanner.team/stops/5458"], ["https://mivb.openplanner.team/stops/6310F", "https://mivb.openplanner.team/stops/6355"], ["https://mivb.openplanner.team/stops/8421", "https://mivb.openplanner.team/stops/47"], ["https://mivb.openplanner.team/stops/3920", "https://mivb.openplanner.team/stops/3962"], ["https://mivb.openplanner.team/stops/1326", "https://mivb.openplanner.team/stops/3805"], ["https://mivb.openplanner.team/stops/5467", "https://mivb.openplanner.team/stops/6120"], ["https://mivb.openplanner.team/stops/5087", "https://mivb.openplanner.team/stops/5701"], ["https://mivb.openplanner.team/stops/6103", "https://mivb.openplanner.team/stops/6123"], ["https://mivb.openplanner.team/stops/0040418", "https://mivb.openplanner.team/stops/8401"], ["https://mivb.openplanner.team/stops/1968", "https://mivb.openplanner.team/stops/2124"], ["https://mivb.openplanner.team/stops/4022", "https://mivb.openplanner.team/stops/8743"], ["https://mivb.openplanner.team/stops/3313", "https://mivb.openplanner.team/stops/6436"], ["https://mivb.openplanner.team/stops/6418", "https://mivb.openplanner.team/stops/6418F"], ["https://mivb.openplanner.team/stops/1141", "https://mivb.openplanner.team/stops/1559"], ["https://mivb.openplanner.team/stops/3410", "https://mivb.openplanner.team/stops/5350G"], ["https://mivb.openplanner.team/stops/2226", "https://mivb.openplanner.team/stops/2252"], ["https://mivb.openplanner.team/stops/6754", "https://mivb.openplanner.team/stops/6755"], ["https://mivb.openplanner.team/stops/1854", "https://mivb.openplanner.team/stops/5554"], ["https://mivb.openplanner.team/stops/0821", "https://mivb.openplanner.team/stops/0820170"], ["https://mivb.openplanner.team/stops/2940F", "https://mivb.openplanner.team/stops/5404"], ["https://mivb.openplanner.team/stops/1090", "https://mivb.openplanner.team/stops/2360"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/9551"], ["https://mivb.openplanner.team/stops/1810", "https://mivb.openplanner.team/stops/0220333"], ["https://mivb.openplanner.team/stops/2262", "https://mivb.openplanner.team/stops/6608G"], ["https://mivb.openplanner.team/stops/2830", "https://mivb.openplanner.team/stops/0431148"], ["https://mivb.openplanner.team/stops/1182", "https://mivb.openplanner.team/stops/2569"], ["https://mivb.openplanner.team/stops/1043", "https://mivb.openplanner.team/stops/2084"], ["https://mivb.openplanner.team/stops/2661", "https://mivb.openplanner.team/stops/5963"], ["https://mivb.openplanner.team/stops/1675F", "https://mivb.openplanner.team/stops/1747"], ["https://mivb.openplanner.team/stops/2317", "https://mivb.openplanner.team/stops/3003"], ["https://mivb.openplanner.team/stops/1462", "https://mivb.openplanner.team/stops/1516"], ["https://mivb.openplanner.team/stops/1204", "https://mivb.openplanner.team/stops/1260"], ["https://mivb.openplanner.team/stops/2409", "https://mivb.openplanner.team/stops/5810"], ["https://mivb.openplanner.team/stops/0670267", "https://mivb.openplanner.team/stops/0707"], ["https://mivb.openplanner.team/stops/9702", "https://mivb.openplanner.team/stops/9703"], ["https://mivb.openplanner.team/stops/2714", "https://mivb.openplanner.team/stops/2763"], ["https://mivb.openplanner.team/stops/1165", "https://mivb.openplanner.team/stops/6312"], ["https://mivb.openplanner.team/stops/2970", "https://mivb.openplanner.team/stops/0050319"], ["https://mivb.openplanner.team/stops/2076", "https://mivb.openplanner.team/stops/4311"], ["https://mivb.openplanner.team/stops/7770158", "https://mivb.openplanner.team/stops/58"], ["https://mivb.openplanner.team/stops/4293", "https://mivb.openplanner.team/stops/4294"], ["https://mivb.openplanner.team/stops/3171", "https://mivb.openplanner.team/stops/3172"], ["https://mivb.openplanner.team/stops/8351", "https://mivb.openplanner.team/stops/0350740"], ["https://mivb.openplanner.team/stops/2586", "https://mivb.openplanner.team/stops/6869G"], ["https://mivb.openplanner.team/stops/0516", "https://mivb.openplanner.team/stops/0430948"], ["https://mivb.openplanner.team/stops/0089", "https://mivb.openplanner.team/stops/0080522"], ["https://mivb.openplanner.team/stops/4127", "https://mivb.openplanner.team/stops/6097B"], ["https://mivb.openplanner.team/stops/4341", "https://mivb.openplanner.team/stops/5421"], ["https://mivb.openplanner.team/stops/1816", "https://mivb.openplanner.team/stops/5271F"], ["https://mivb.openplanner.team/stops/2079", "https://mivb.openplanner.team/stops/4359"], ["https://mivb.openplanner.team/stops/1066", "https://mivb.openplanner.team/stops/1368"], ["https://mivb.openplanner.team/stops/1350", "https://mivb.openplanner.team/stops/5071"], ["https://mivb.openplanner.team/stops/9552", "https://mivb.openplanner.team/stops/9557"], ["https://mivb.openplanner.team/stops/6172", "https://mivb.openplanner.team/stops/7790456"], ["https://mivb.openplanner.team/stops/1641", "https://mivb.openplanner.team/stops/2028"], ["https://mivb.openplanner.team/stops/2997", "https://mivb.openplanner.team/stops/3467B"], ["https://mivb.openplanner.team/stops/1133", "https://mivb.openplanner.team/stops/0060120"], ["https://mivb.openplanner.team/stops/1566", "https://mivb.openplanner.team/stops/2918"], ["https://mivb.openplanner.team/stops/4600", "https://mivb.openplanner.team/stops/4655"], ["https://mivb.openplanner.team/stops/1829", "https://mivb.openplanner.team/stops/1830"], ["https://mivb.openplanner.team/stops/2362B", "https://mivb.openplanner.team/stops/3059"], ["https://mivb.openplanner.team/stops/5759F", "https://mivb.openplanner.team/stops/5770F"], ["https://mivb.openplanner.team/stops/5024", "https://mivb.openplanner.team/stops/5812"], ["https://mivb.openplanner.team/stops/5407", "https://mivb.openplanner.team/stops/5462F"], ["https://mivb.openplanner.team/stops/1806", "https://mivb.openplanner.team/stops/1869"], ["https://mivb.openplanner.team/stops/1766", "https://mivb.openplanner.team/stops/2574"], ["https://mivb.openplanner.team/stops/2147B", "https://mivb.openplanner.team/stops/5053G"], ["https://mivb.openplanner.team/stops/4010", "https://mivb.openplanner.team/stops/4270F"], ["https://mivb.openplanner.team/stops/5920H", "https://mivb.openplanner.team/stops/5925"], ["https://mivb.openplanner.team/stops/1926B", "https://mivb.openplanner.team/stops/2415"], ["https://mivb.openplanner.team/stops/5024", "https://mivb.openplanner.team/stops/5060"], ["https://mivb.openplanner.team/stops/1781", "https://mivb.openplanner.team/stops/2278"], ["https://mivb.openplanner.team/stops/9776", "https://mivb.openplanner.team/stops/9777"], ["https://mivb.openplanner.team/stops/1179", "https://mivb.openplanner.team/stops/0470351"], ["https://mivb.openplanner.team/stops/3125", "https://mivb.openplanner.team/stops/4304"], ["https://mivb.openplanner.team/stops/2523", "https://mivb.openplanner.team/stops/2551"], ["https://mivb.openplanner.team/stops/5120", "https://mivb.openplanner.team/stops/5151"], ["https://mivb.openplanner.team/stops/1538B", "https://mivb.openplanner.team/stops/3210B"], ["https://mivb.openplanner.team/stops/8731", "https://mivb.openplanner.team/stops/7730502"], ["https://mivb.openplanner.team/stops/6410", "https://mivb.openplanner.team/stops/6411"], ["https://mivb.openplanner.team/stops/2512", "https://mivb.openplanner.team/stops/2567"], ["https://mivb.openplanner.team/stops/1971", "https://mivb.openplanner.team/stops/2714"], ["https://mivb.openplanner.team/stops/4014", "https://mivb.openplanner.team/stops/4022"], ["https://mivb.openplanner.team/stops/1560", "https://mivb.openplanner.team/stops/3906"], ["https://mivb.openplanner.team/stops/5013B", "https://mivb.openplanner.team/stops/5072"], ["https://mivb.openplanner.team/stops/9728", "https://mivb.openplanner.team/stops/9784B"], ["https://mivb.openplanner.team/stops/1928F", "https://mivb.openplanner.team/stops/5917F"], ["https://mivb.openplanner.team/stops/3810", "https://mivb.openplanner.team/stops/3851"], ["https://mivb.openplanner.team/stops/3222", "https://mivb.openplanner.team/stops/6604F"], ["https://mivb.openplanner.team/stops/1870", "https://mivb.openplanner.team/stops/5480"], ["https://mivb.openplanner.team/stops/3514", "https://mivb.openplanner.team/stops/4360"], ["https://mivb.openplanner.team/stops/0529", "https://mivb.openplanner.team/stops/1901"], ["https://mivb.openplanner.team/stops/2363", "https://mivb.openplanner.team/stops/2822"], ["https://mivb.openplanner.team/stops/2502", "https://mivb.openplanner.team/stops/2503"], ["https://mivb.openplanner.team/stops/2950", "https://mivb.openplanner.team/stops/6209"], ["https://mivb.openplanner.team/stops/1983", "https://mivb.openplanner.team/stops/3623B"], ["https://mivb.openplanner.team/stops/0670167", "https://mivb.openplanner.team/stops/2957"], ["https://mivb.openplanner.team/stops/1195", "https://mivb.openplanner.team/stops/5103"], ["https://mivb.openplanner.team/stops/2805F", "https://mivb.openplanner.team/stops/5080"], ["https://mivb.openplanner.team/stops/8361", "https://mivb.openplanner.team/stops/0360139"], ["https://mivb.openplanner.team/stops/2226", "https://mivb.openplanner.team/stops/2550"], ["https://mivb.openplanner.team/stops/2110B", "https://mivb.openplanner.team/stops/5032B"], ["https://mivb.openplanner.team/stops/2814", "https://mivb.openplanner.team/stops/2855"], ["https://mivb.openplanner.team/stops/5076F", "https://mivb.openplanner.team/stops/7770258"], ["https://mivb.openplanner.team/stops/5284F", "https://mivb.openplanner.team/stops/5427"], ["https://mivb.openplanner.team/stops/4003G", "https://mivb.openplanner.team/stops/4162"], ["https://mivb.openplanner.team/stops/1019", "https://mivb.openplanner.team/stops/4217"], ["https://mivb.openplanner.team/stops/1352", "https://mivb.openplanner.team/stops/3570"], ["https://mivb.openplanner.team/stops/1375", "https://mivb.openplanner.team/stops/1615"], ["https://mivb.openplanner.team/stops/1085", "https://mivb.openplanner.team/stops/1239"], ["https://mivb.openplanner.team/stops/1289", "https://mivb.openplanner.team/stops/7830152"], ["https://mivb.openplanner.team/stops/6014", "https://mivb.openplanner.team/stops/9023"], ["https://mivb.openplanner.team/stops/1382", "https://mivb.openplanner.team/stops/0120126"], ["https://mivb.openplanner.team/stops/1482", "https://mivb.openplanner.team/stops/2375"], ["https://mivb.openplanner.team/stops/4014", "https://mivb.openplanner.team/stops/7740201"], ["https://mivb.openplanner.team/stops/2950", "https://mivb.openplanner.team/stops/2965"], ["https://mivb.openplanner.team/stops/4005F", "https://mivb.openplanner.team/stops/4658"], ["https://mivb.openplanner.team/stops/2415", "https://mivb.openplanner.team/stops/5815F"], ["https://mivb.openplanner.team/stops/2397", "https://mivb.openplanner.team/stops/5258"], ["https://mivb.openplanner.team/stops/5299", "https://mivb.openplanner.team/stops/5362"], ["https://mivb.openplanner.team/stops/2553", "https://mivb.openplanner.team/stops/3858"], ["https://mivb.openplanner.team/stops/8813", "https://mivb.openplanner.team/stops/7810154"], ["https://mivb.openplanner.team/stops/6021", "https://mivb.openplanner.team/stops/6190"], ["https://mivb.openplanner.team/stops/0801", "https://mivb.openplanner.team/stops/0900468"], ["https://mivb.openplanner.team/stops/4265", "https://mivb.openplanner.team/stops/53"], ["https://mivb.openplanner.team/stops/2728", "https://mivb.openplanner.team/stops/5270F"], ["https://mivb.openplanner.team/stops/4661B", "https://mivb.openplanner.team/stops/5102F"], ["https://mivb.openplanner.team/stops/2110B", "https://mivb.openplanner.team/stops/2138B"], ["https://mivb.openplanner.team/stops/5910", "https://mivb.openplanner.team/stops/5961"], ["https://mivb.openplanner.team/stops/1597", "https://mivb.openplanner.team/stops/0230234"], ["https://mivb.openplanner.team/stops/0080122", "https://mivb.openplanner.team/stops/0080522"], ["https://mivb.openplanner.team/stops/1776", "https://mivb.openplanner.team/stops/3623B"], ["https://mivb.openplanner.team/stops/3530", "https://mivb.openplanner.team/stops/5601"], ["https://mivb.openplanner.team/stops/1710", "https://mivb.openplanner.team/stops/1765"], ["https://mivb.openplanner.team/stops/4058F", "https://mivb.openplanner.team/stops/5105"], ["https://mivb.openplanner.team/stops/4405", "https://mivb.openplanner.team/stops/4452"], ["https://mivb.openplanner.team/stops/2568", "https://mivb.openplanner.team/stops/4054G"], ["https://mivb.openplanner.team/stops/3506", "https://mivb.openplanner.team/stops/7529"], ["https://mivb.openplanner.team/stops/1229", "https://mivb.openplanner.team/stops/5120"], ["https://mivb.openplanner.team/stops/1410", "https://mivb.openplanner.team/stops/0110325"], ["https://mivb.openplanner.team/stops/4305", "https://mivb.openplanner.team/stops/5261"], ["https://mivb.openplanner.team/stops/9626", "https://mivb.openplanner.team/stops/9631"], ["https://mivb.openplanner.team/stops/1833B", "https://mivb.openplanner.team/stops/8131"], ["https://mivb.openplanner.team/stops/3129", "https://mivb.openplanner.team/stops/3204"], ["https://mivb.openplanner.team/stops/0901", "https://mivb.openplanner.team/stops/0900168"], ["https://mivb.openplanner.team/stops/3702", "https://mivb.openplanner.team/stops/5046"], ["https://mivb.openplanner.team/stops/9651", "https://mivb.openplanner.team/stops/9660"], ["https://mivb.openplanner.team/stops/5308", "https://mivb.openplanner.team/stops/5354H"], ["https://mivb.openplanner.team/stops/1094", "https://mivb.openplanner.team/stops/4169"], ["https://mivb.openplanner.team/stops/5812", "https://mivb.openplanner.team/stops/5812F"], ["https://mivb.openplanner.team/stops/0536", "https://mivb.openplanner.team/stops/1900"], ["https://mivb.openplanner.team/stops/1727", "https://mivb.openplanner.team/stops/4115"], ["https://mivb.openplanner.team/stops/2903F", "https://mivb.openplanner.team/stops/2910"], ["https://mivb.openplanner.team/stops/9754B", "https://mivb.openplanner.team/stops/9788"], ["https://mivb.openplanner.team/stops/5230F", "https://mivb.openplanner.team/stops/0120326"], ["https://mivb.openplanner.team/stops/2856B", "https://mivb.openplanner.team/stops/5776"], ["https://mivb.openplanner.team/stops/0821", "https://mivb.openplanner.team/stops/1406"], ["https://mivb.openplanner.team/stops/0471", "https://mivb.openplanner.team/stops/0472"], ["https://mivb.openplanner.team/stops/3361", "https://mivb.openplanner.team/stops/3425"], ["https://mivb.openplanner.team/stops/2917", "https://mivb.openplanner.team/stops/2975"], ["https://mivb.openplanner.team/stops/3910", "https://mivb.openplanner.team/stops/8112"], ["https://mivb.openplanner.team/stops/3521", "https://mivb.openplanner.team/stops/3546"], ["https://mivb.openplanner.team/stops/1498", "https://mivb.openplanner.team/stops/2226"], ["https://mivb.openplanner.team/stops/1303", "https://mivb.openplanner.team/stops/6805F"], ["https://mivb.openplanner.team/stops/9627", "https://mivb.openplanner.team/stops/9788"], ["https://mivb.openplanner.team/stops/2863", "https://mivb.openplanner.team/stops/6172"], ["https://mivb.openplanner.team/stops/1620B", "https://mivb.openplanner.team/stops/1631"], ["https://mivb.openplanner.team/stops/5766", "https://mivb.openplanner.team/stops/6461"], ["https://mivb.openplanner.team/stops/4005F", "https://mivb.openplanner.team/stops/4066F"], ["https://mivb.openplanner.team/stops/2544", "https://mivb.openplanner.team/stops/2672F"], ["https://mivb.openplanner.team/stops/1586", "https://mivb.openplanner.team/stops/2039"], ["https://mivb.openplanner.team/stops/5082", "https://mivb.openplanner.team/stops/8813"], ["https://mivb.openplanner.team/stops/0610563", "https://mivb.openplanner.team/stops/0610263"], ["https://mivb.openplanner.team/stops/2609", "https://mivb.openplanner.team/stops/2611"], ["https://mivb.openplanner.team/stops/1043", "https://mivb.openplanner.team/stops/2022"], ["https://mivb.openplanner.team/stops/1793", "https://mivb.openplanner.team/stops/6471"], ["https://mivb.openplanner.team/stops/2029", "https://mivb.openplanner.team/stops/2078"], ["https://mivb.openplanner.team/stops/3460", "https://mivb.openplanner.team/stops/3898"], ["https://mivb.openplanner.team/stops/1475", "https://mivb.openplanner.team/stops/8662"], ["https://mivb.openplanner.team/stops/9678", "https://mivb.openplanner.team/stops/9679"], ["https://mivb.openplanner.team/stops/1726", "https://mivb.openplanner.team/stops/0310244"], ["https://mivb.openplanner.team/stops/6357F", "https://mivb.openplanner.team/stops/6437F"], ["https://mivb.openplanner.team/stops/3331", "https://mivb.openplanner.team/stops/6356"], ["https://mivb.openplanner.team/stops/2665F", "https://mivb.openplanner.team/stops/5720"], ["https://mivb.openplanner.team/stops/2753", "https://mivb.openplanner.team/stops/0260237"], ["https://mivb.openplanner.team/stops/5857", "https://mivb.openplanner.team/stops/5857F"], ["https://mivb.openplanner.team/stops/9164", "https://mivb.openplanner.team/stops/9557"], ["https://mivb.openplanner.team/stops/2877", "https://mivb.openplanner.team/stops/6502"], ["https://mivb.openplanner.team/stops/5451F", "https://mivb.openplanner.team/stops/5459"], ["https://mivb.openplanner.team/stops/3177", "https://mivb.openplanner.team/stops/5320"], ["https://mivb.openplanner.team/stops/1646F", "https://mivb.openplanner.team/stops/6260F"], ["https://mivb.openplanner.team/stops/1244", "https://mivb.openplanner.team/stops/6706"], ["https://mivb.openplanner.team/stops/1421", "https://mivb.openplanner.team/stops/0120626"], ["https://mivb.openplanner.team/stops/1112", "https://mivb.openplanner.team/stops/1286"], ["https://mivb.openplanner.team/stops/5105F", "https://mivb.openplanner.team/stops/5168"], ["https://mivb.openplanner.team/stops/5848", "https://mivb.openplanner.team/stops/5849"], ["https://mivb.openplanner.team/stops/0220233", "https://mivb.openplanner.team/stops/0230234"], ["https://mivb.openplanner.team/stops/0240235", "https://mivb.openplanner.team/stops/0240535"], ["https://mivb.openplanner.team/stops/3410", "https://mivb.openplanner.team/stops/7998"], ["https://mivb.openplanner.team/stops/1552", "https://mivb.openplanner.team/stops/9851"], ["https://mivb.openplanner.team/stops/4207", "https://mivb.openplanner.team/stops/4261"], ["https://mivb.openplanner.team/stops/2244F", "https://mivb.openplanner.team/stops/2247"], ["https://mivb.openplanner.team/stops/6202", "https://mivb.openplanner.team/stops/6203"], ["https://mivb.openplanner.team/stops/1661", "https://mivb.openplanner.team/stops/2078"], ["https://mivb.openplanner.team/stops/2807", "https://mivb.openplanner.team/stops/6172"], ["https://mivb.openplanner.team/stops/1133", "https://mivb.openplanner.team/stops/3921"], ["https://mivb.openplanner.team/stops/5802", "https://mivb.openplanner.team/stops/7269"], ["https://mivb.openplanner.team/stops/5066F", "https://mivb.openplanner.team/stops/8321"], ["https://mivb.openplanner.team/stops/5923", "https://mivb.openplanner.team/stops/5925"], ["https://mivb.openplanner.team/stops/3006", "https://mivb.openplanner.team/stops/7369"], ["https://mivb.openplanner.team/stops/2452", "https://mivb.openplanner.team/stops/5916"], ["https://mivb.openplanner.team/stops/1483", "https://mivb.openplanner.team/stops/1486B"], ["https://mivb.openplanner.team/stops/3502", "https://mivb.openplanner.team/stops/0020616"], ["https://mivb.openplanner.team/stops/0601162", "https://mivb.openplanner.team/stops/0601262"], ["https://mivb.openplanner.team/stops/2283", "https://mivb.openplanner.team/stops/0080222"], ["https://mivb.openplanner.team/stops/5082", "https://mivb.openplanner.team/stops/6173"], ["https://mivb.openplanner.team/stops/1614B", "https://mivb.openplanner.team/stops/1660B"], ["https://mivb.openplanner.team/stops/0520161", "https://mivb.openplanner.team/stops/1083"], ["https://mivb.openplanner.team/stops/1015", "https://mivb.openplanner.team/stops/5121"], ["https://mivb.openplanner.team/stops/2278", "https://mivb.openplanner.team/stops/2279"], ["https://mivb.openplanner.team/stops/1253B", "https://mivb.openplanner.team/stops/7720303"], ["https://mivb.openplanner.team/stops/0820270", "https://mivb.openplanner.team/stops/4550"], ["https://mivb.openplanner.team/stops/1676F", "https://mivb.openplanner.team/stops/1677F"], ["https://mivb.openplanner.team/stops/1926B", "https://mivb.openplanner.team/stops/5853G"], ["https://mivb.openplanner.team/stops/3505", "https://mivb.openplanner.team/stops/44"], ["https://mivb.openplanner.team/stops/2528", "https://mivb.openplanner.team/stops/3802"], ["https://mivb.openplanner.team/stops/3305", "https://mivb.openplanner.team/stops/5277F"], ["https://mivb.openplanner.team/stops/2397", "https://mivb.openplanner.team/stops/3480"], ["https://mivb.openplanner.team/stops/2292B", "https://mivb.openplanner.team/stops/2988"], ["https://mivb.openplanner.team/stops/3521", "https://mivb.openplanner.team/stops/4297"], ["https://mivb.openplanner.team/stops/0089", "https://mivb.openplanner.team/stops/5562"], ["https://mivb.openplanner.team/stops/6357", "https://mivb.openplanner.team/stops/6436"], ["https://mivb.openplanner.team/stops/3612F", "https://mivb.openplanner.team/stops/3751"], ["https://mivb.openplanner.team/stops/5714", "https://mivb.openplanner.team/stops/6177"], ["https://mivb.openplanner.team/stops/5074", "https://mivb.openplanner.team/stops/5089"], ["https://mivb.openplanner.team/stops/5815", "https://mivb.openplanner.team/stops/5816G"], ["https://mivb.openplanner.team/stops/5208", "https://mivb.openplanner.team/stops/5258"], ["https://mivb.openplanner.team/stops/4132B", "https://mivb.openplanner.team/stops/8793"], ["https://mivb.openplanner.team/stops/1256", "https://mivb.openplanner.team/stops/2561"], ["https://mivb.openplanner.team/stops/3210B", "https://mivb.openplanner.team/stops/3401"], ["https://mivb.openplanner.team/stops/2017", "https://mivb.openplanner.team/stops/2027"], ["https://mivb.openplanner.team/stops/2145", "https://mivb.openplanner.team/stops/5420F"], ["https://mivb.openplanner.team/stops/1599", "https://mivb.openplanner.team/stops/4259"], ["https://mivb.openplanner.team/stops/2313", "https://mivb.openplanner.team/stops/3014"], ["https://mivb.openplanner.team/stops/1980", "https://mivb.openplanner.team/stops/6112"], ["https://mivb.openplanner.team/stops/1237", "https://mivb.openplanner.team/stops/3228F"], ["https://mivb.openplanner.team/stops/1499", "https://mivb.openplanner.team/stops/3850"], ["https://mivb.openplanner.team/stops/6356", "https://mivb.openplanner.team/stops/6356F"], ["https://mivb.openplanner.team/stops/3064", "https://mivb.openplanner.team/stops/9609"], ["https://mivb.openplanner.team/stops/1462", "https://mivb.openplanner.team/stops/3251"], ["https://mivb.openplanner.team/stops/5817F", "https://mivb.openplanner.team/stops/5860"], ["https://mivb.openplanner.team/stops/2940F", "https://mivb.openplanner.team/stops/2962"], ["https://mivb.openplanner.team/stops/1707", "https://mivb.openplanner.team/stops/3261"], ["https://mivb.openplanner.team/stops/0526", "https://mivb.openplanner.team/stops/6012G"], ["https://mivb.openplanner.team/stops/1552", "https://mivb.openplanner.team/stops/2015"], ["https://mivb.openplanner.team/stops/1534", "https://mivb.openplanner.team/stops/3285"], ["https://mivb.openplanner.team/stops/1203", "https://mivb.openplanner.team/stops/1260"], ["https://mivb.openplanner.team/stops/3216", "https://mivb.openplanner.team/stops/3266"], ["https://mivb.openplanner.team/stops/3559", "https://mivb.openplanner.team/stops/5407"], ["https://mivb.openplanner.team/stops/5920C", "https://mivb.openplanner.team/stops/5921B"], ["https://mivb.openplanner.team/stops/6858C", "https://mivb.openplanner.team/stops/6858G"], ["https://mivb.openplanner.team/stops/0900168", "https://mivb.openplanner.team/stops/0900568"], ["https://mivb.openplanner.team/stops/4341", "https://mivb.openplanner.team/stops/4347"], ["https://mivb.openplanner.team/stops/2541", "https://mivb.openplanner.team/stops/3800"], ["https://mivb.openplanner.team/stops/1150", "https://mivb.openplanner.team/stops/0110225"], ["https://mivb.openplanner.team/stops/2931", "https://mivb.openplanner.team/stops/6408"], ["https://mivb.openplanner.team/stops/6005", "https://mivb.openplanner.team/stops/7730602"], ["https://mivb.openplanner.team/stops/2915", "https://mivb.openplanner.team/stops/5355"], ["https://mivb.openplanner.team/stops/1953", "https://mivb.openplanner.team/stops/2157"], ["https://mivb.openplanner.team/stops/3504", "https://mivb.openplanner.team/stops/3532"], ["https://mivb.openplanner.team/stops/1942", "https://mivb.openplanner.team/stops/2709F"], ["https://mivb.openplanner.team/stops/2151", "https://mivb.openplanner.team/stops/2153"], ["https://mivb.openplanner.team/stops/2498", "https://mivb.openplanner.team/stops/6502"], ["https://mivb.openplanner.team/stops/2810", "https://mivb.openplanner.team/stops/6174F"], ["https://mivb.openplanner.team/stops/1903", "https://mivb.openplanner.team/stops/6120"], ["https://mivb.openplanner.team/stops/3853", "https://mivb.openplanner.team/stops/3859"], ["https://mivb.openplanner.team/stops/3762", "https://mivb.openplanner.team/stops/5279F"], ["https://mivb.openplanner.team/stops/1488", "https://mivb.openplanner.team/stops/3717"], ["https://mivb.openplanner.team/stops/3167", "https://mivb.openplanner.team/stops/7484"], ["https://mivb.openplanner.team/stops/3263F", "https://mivb.openplanner.team/stops/0370438"], ["https://mivb.openplanner.team/stops/1602", "https://mivb.openplanner.team/stops/5523"], ["https://mivb.openplanner.team/stops/1051", "https://mivb.openplanner.team/stops/9025"], ["https://mivb.openplanner.team/stops/0310144", "https://mivb.openplanner.team/stops/0310644"], ["https://mivb.openplanner.team/stops/2855", "https://mivb.openplanner.team/stops/5773"], ["https://mivb.openplanner.team/stops/6304", "https://mivb.openplanner.team/stops/6419F"], ["https://mivb.openplanner.team/stops/3451", "https://mivb.openplanner.team/stops/5356"], ["https://mivb.openplanner.team/stops/6122", "https://mivb.openplanner.team/stops/6174B"], ["https://mivb.openplanner.team/stops/4296", "https://mivb.openplanner.team/stops/4405"], ["https://mivb.openplanner.team/stops/3201", "https://mivb.openplanner.team/stops/3334F"], ["https://mivb.openplanner.team/stops/1303", "https://mivb.openplanner.team/stops/5165"], ["https://mivb.openplanner.team/stops/4595", "https://mivb.openplanner.team/stops/6706"], ["https://mivb.openplanner.team/stops/4123", "https://mivb.openplanner.team/stops/4127"], ["https://mivb.openplanner.team/stops/2562B", "https://mivb.openplanner.team/stops/8702"], ["https://mivb.openplanner.team/stops/1753", "https://mivb.openplanner.team/stops/3524"], ["https://mivb.openplanner.team/stops/1415", "https://mivb.openplanner.team/stops/1833B"], ["https://mivb.openplanner.team/stops/1965", "https://mivb.openplanner.team/stops/5817F"], ["https://mivb.openplanner.team/stops/4366", "https://mivb.openplanner.team/stops/6113F"], ["https://mivb.openplanner.team/stops/4229", "https://mivb.openplanner.team/stops/4277"], ["https://mivb.openplanner.team/stops/3207", "https://mivb.openplanner.team/stops/3401"], ["https://mivb.openplanner.team/stops/2360", "https://mivb.openplanner.team/stops/2361"], ["https://mivb.openplanner.team/stops/6017", "https://mivb.openplanner.team/stops/6060"], ["https://mivb.openplanner.team/stops/1182", "https://mivb.openplanner.team/stops/2570"], ["https://mivb.openplanner.team/stops/1202", "https://mivb.openplanner.team/stops/7740201"], ["https://mivb.openplanner.team/stops/3002", "https://mivb.openplanner.team/stops/3064"], ["https://mivb.openplanner.team/stops/1204", "https://mivb.openplanner.team/stops/1259"], ["https://mivb.openplanner.team/stops/1548B", "https://mivb.openplanner.team/stops/0060520"], ["https://mivb.openplanner.team/stops/0670267", "https://mivb.openplanner.team/stops/0722"], ["https://mivb.openplanner.team/stops/3281", "https://mivb.openplanner.team/stops/6004"], ["https://mivb.openplanner.team/stops/1404", "https://mivb.openplanner.team/stops/6053"], ["https://mivb.openplanner.team/stops/0600762", "https://mivb.openplanner.team/stops/2245"], ["https://mivb.openplanner.team/stops/1820", "https://mivb.openplanner.team/stops/0010115"], ["https://mivb.openplanner.team/stops/1486B", "https://mivb.openplanner.team/stops/3751"], ["https://mivb.openplanner.team/stops/4229", "https://mivb.openplanner.team/stops/5474"], ["https://mivb.openplanner.team/stops/6651", "https://mivb.openplanner.team/stops/0270614"], ["https://mivb.openplanner.team/stops/4130", "https://mivb.openplanner.team/stops/4130F"], ["https://mivb.openplanner.team/stops/2115", "https://mivb.openplanner.team/stops/4357"], ["https://mivb.openplanner.team/stops/2110B", "https://mivb.openplanner.team/stops/6440"], ["https://mivb.openplanner.team/stops/1823", "https://mivb.openplanner.team/stops/1825"], ["https://mivb.openplanner.team/stops/5121", "https://mivb.openplanner.team/stops/5121F"], ["https://mivb.openplanner.team/stops/1261", "https://mivb.openplanner.team/stops/4215"], ["https://mivb.openplanner.team/stops/1152", "https://mivb.openplanner.team/stops/0100524"], ["https://mivb.openplanner.team/stops/3808", "https://mivb.openplanner.team/stops/3812"], ["https://mivb.openplanner.team/stops/1512", "https://mivb.openplanner.team/stops/6058"], ["https://mivb.openplanner.team/stops/4293", "https://mivb.openplanner.team/stops/4358"], ["https://mivb.openplanner.team/stops/3900", "https://mivb.openplanner.team/stops/3909"], ["https://mivb.openplanner.team/stops/6313", "https://mivb.openplanner.team/stops/0330242"], ["https://mivb.openplanner.team/stops/9703", "https://mivb.openplanner.team/stops/9778"], ["https://mivb.openplanner.team/stops/1286", "https://mivb.openplanner.team/stops/8472"], ["https://mivb.openplanner.team/stops/2544F", "https://mivb.openplanner.team/stops/6099"], ["https://mivb.openplanner.team/stops/3513", "https://mivb.openplanner.team/stops/3525"], ["https://mivb.openplanner.team/stops/3168", "https://mivb.openplanner.team/stops/5766"], ["https://mivb.openplanner.team/stops/1833B", "https://mivb.openplanner.team/stops/1834"], ["https://mivb.openplanner.team/stops/1152", "https://mivb.openplanner.team/stops/1519"], ["https://mivb.openplanner.team/stops/2285G", "https://mivb.openplanner.team/stops/2287"], ["https://mivb.openplanner.team/stops/8021", "https://mivb.openplanner.team/stops/0020116"], ["https://mivb.openplanner.team/stops/3174", "https://mivb.openplanner.team/stops/5802"], ["https://mivb.openplanner.team/stops/2026", "https://mivb.openplanner.team/stops/5423"], ["https://mivb.openplanner.team/stops/3323", "https://mivb.openplanner.team/stops/3347"], ["https://mivb.openplanner.team/stops/1256", "https://mivb.openplanner.team/stops/3252"], ["https://mivb.openplanner.team/stops/5961", "https://mivb.openplanner.team/stops/5967"], ["https://mivb.openplanner.team/stops/2009", "https://mivb.openplanner.team/stops/5283F"], ["https://mivb.openplanner.team/stops/5076", "https://mivb.openplanner.team/stops/7770258"], ["https://mivb.openplanner.team/stops/1913", "https://mivb.openplanner.team/stops/4705"], ["https://mivb.openplanner.team/stops/3112", "https://mivb.openplanner.team/stops/3113"], ["https://mivb.openplanner.team/stops/1278", "https://mivb.openplanner.team/stops/6115F"], ["https://mivb.openplanner.team/stops/4297", "https://mivb.openplanner.team/stops/0240535"], ["https://mivb.openplanner.team/stops/2523", "https://mivb.openplanner.team/stops/2556"], ["https://mivb.openplanner.team/stops/2259", "https://mivb.openplanner.team/stops/3852"], ["https://mivb.openplanner.team/stops/6114F", "https://mivb.openplanner.team/stops/6155F"], ["https://mivb.openplanner.team/stops/1560", "https://mivb.openplanner.team/stops/3908"], ["https://mivb.openplanner.team/stops/5422", "https://mivb.openplanner.team/stops/5452"], ["https://mivb.openplanner.team/stops/7730102", "https://mivb.openplanner.team/stops/7730502"], ["https://mivb.openplanner.team/stops/3261", "https://mivb.openplanner.team/stops/3320B"], ["https://mivb.openplanner.team/stops/4267", "https://mivb.openplanner.team/stops/9027"], ["https://mivb.openplanner.team/stops/1121", "https://mivb.openplanner.team/stops/9729"], ["https://mivb.openplanner.team/stops/5501", "https://mivb.openplanner.team/stops/5562"], ["https://mivb.openplanner.team/stops/2150", "https://mivb.openplanner.team/stops/5032B"], ["https://mivb.openplanner.team/stops/5074", "https://mivb.openplanner.team/stops/58"], ["https://mivb.openplanner.team/stops/5474", "https://mivb.openplanner.team/stops/6482"], ["https://mivb.openplanner.team/stops/0529", "https://mivb.openplanner.team/stops/1900"], ["https://mivb.openplanner.team/stops/2363", "https://mivb.openplanner.team/stops/2819"], ["https://mivb.openplanner.team/stops/1133", "https://mivb.openplanner.team/stops/3117"], ["https://mivb.openplanner.team/stops/2905", "https://mivb.openplanner.team/stops/9946"], ["https://mivb.openplanner.team/stops/8361", "https://mivb.openplanner.team/stops/0360239"], ["https://mivb.openplanner.team/stops/7820253", "https://mivb.openplanner.team/stops/7820453"], ["https://mivb.openplanner.team/stops/1203", "https://mivb.openplanner.team/stops/4215"], ["https://mivb.openplanner.team/stops/1307F", "https://mivb.openplanner.team/stops/1310"], ["https://mivb.openplanner.team/stops/2814", "https://mivb.openplanner.team/stops/2856B"], ["https://mivb.openplanner.team/stops/1544", "https://mivb.openplanner.team/stops/1861"], ["https://mivb.openplanner.team/stops/4598", "https://mivb.openplanner.team/stops/5105"], ["https://mivb.openplanner.team/stops/1102", "https://mivb.openplanner.team/stops/5102"], ["https://mivb.openplanner.team/stops/4268", "https://mivb.openplanner.team/stops/8834"], ["https://mivb.openplanner.team/stops/1909", "https://mivb.openplanner.team/stops/1910"], ["https://mivb.openplanner.team/stops/1493", "https://mivb.openplanner.team/stops/1499"], ["https://mivb.openplanner.team/stops/4268", "https://mivb.openplanner.team/stops/7830352"], ["https://mivb.openplanner.team/stops/1758B", "https://mivb.openplanner.team/stops/1811"], ["https://mivb.openplanner.team/stops/4109", "https://mivb.openplanner.team/stops/4169"], ["https://mivb.openplanner.team/stops/1096", "https://mivb.openplanner.team/stops/4006G"], ["https://mivb.openplanner.team/stops/1307F", "https://mivb.openplanner.team/stops/5168"], ["https://mivb.openplanner.team/stops/2544F", "https://mivb.openplanner.team/stops/2670"], ["https://mivb.openplanner.team/stops/6053", "https://mivb.openplanner.team/stops/0070521"], ["https://mivb.openplanner.team/stops/4014", "https://mivb.openplanner.team/stops/8744"], ["https://mivb.openplanner.team/stops/8151", "https://mivb.openplanner.team/stops/0150129"], ["https://mivb.openplanner.team/stops/3274", "https://mivb.openplanner.team/stops/3401"], ["https://mivb.openplanner.team/stops/2415", "https://mivb.openplanner.team/stops/5815"], ["https://mivb.openplanner.team/stops/6608G", "https://mivb.openplanner.team/stops/6653F"], ["https://mivb.openplanner.team/stops/1018", "https://mivb.openplanner.team/stops/9825F"], ["https://mivb.openplanner.team/stops/2325", "https://mivb.openplanner.team/stops/2326"], ["https://mivb.openplanner.team/stops/1233", "https://mivb.openplanner.team/stops/4367B"], ["https://mivb.openplanner.team/stops/3763", "https://mivb.openplanner.team/stops/4558"], ["https://mivb.openplanner.team/stops/4289", "https://mivb.openplanner.team/stops/4292"], ["https://mivb.openplanner.team/stops/0410446", "https://mivb.openplanner.team/stops/9060"], ["https://mivb.openplanner.team/stops/8091", "https://mivb.openplanner.team/stops/0090223"], ["https://mivb.openplanner.team/stops/5299", "https://mivb.openplanner.team/stops/5361F"], ["https://mivb.openplanner.team/stops/4357", "https://mivb.openplanner.team/stops/4455"], ["https://mivb.openplanner.team/stops/8813", "https://mivb.openplanner.team/stops/8814"], ["https://mivb.openplanner.team/stops/6021", "https://mivb.openplanner.team/stops/6191"], ["https://mivb.openplanner.team/stops/2038", "https://mivb.openplanner.team/stops/0140128"], ["https://mivb.openplanner.team/stops/2901", "https://mivb.openplanner.team/stops/3176"], ["https://mivb.openplanner.team/stops/1356", "https://mivb.openplanner.team/stops/2371"], ["https://mivb.openplanner.team/stops/5916", "https://mivb.openplanner.team/stops/5953F"], ["https://mivb.openplanner.team/stops/0650165", "https://mivb.openplanner.team/stops/2465"], ["https://mivb.openplanner.team/stops/0906", "https://mivb.openplanner.team/stops/0900568"], ["https://mivb.openplanner.team/stops/3347", "https://mivb.openplanner.team/stops/4324"], ["https://mivb.openplanner.team/stops/1242", "https://mivb.openplanner.team/stops/1245"], ["https://mivb.openplanner.team/stops/4022", "https://mivb.openplanner.team/stops/6004"], ["https://mivb.openplanner.team/stops/3506", "https://mivb.openplanner.team/stops/7544"], ["https://mivb.openplanner.team/stops/2932", "https://mivb.openplanner.team/stops/5064"], ["https://mivb.openplanner.team/stops/2971F", "https://mivb.openplanner.team/stops/5475"], ["https://mivb.openplanner.team/stops/2829B", "https://mivb.openplanner.team/stops/3001B"], ["https://mivb.openplanner.team/stops/2304", "https://mivb.openplanner.team/stops/2305"], ["https://mivb.openplanner.team/stops/4126", "https://mivb.openplanner.team/stops/4129"], ["https://mivb.openplanner.team/stops/2259", "https://mivb.openplanner.team/stops/3858"], ["https://mivb.openplanner.team/stops/1076", "https://mivb.openplanner.team/stops/6174F"], ["https://mivb.openplanner.team/stops/2935", "https://mivb.openplanner.team/stops/2955"], ["https://mivb.openplanner.team/stops/0722", "https://mivb.openplanner.team/stops/2950"], ["https://mivb.openplanner.team/stops/1706", "https://mivb.openplanner.team/stops/4367B"], ["https://mivb.openplanner.team/stops/5721", "https://mivb.openplanner.team/stops/5756"], ["https://mivb.openplanner.team/stops/9626", "https://mivb.openplanner.team/stops/9627"], ["https://mivb.openplanner.team/stops/1462", "https://mivb.openplanner.team/stops/6053"], ["https://mivb.openplanner.team/stops/1826", "https://mivb.openplanner.team/stops/1840"], ["https://mivb.openplanner.team/stops/1831", "https://mivb.openplanner.team/stops/1833B"], ["https://mivb.openplanner.team/stops/2152", "https://mivb.openplanner.team/stops/5031F"], ["https://mivb.openplanner.team/stops/2548", "https://mivb.openplanner.team/stops/2672F"], ["https://mivb.openplanner.team/stops/0901", "https://mivb.openplanner.team/stops/0900268"], ["https://mivb.openplanner.team/stops/1352", "https://mivb.openplanner.team/stops/5466"], ["https://mivb.openplanner.team/stops/1080", "https://mivb.openplanner.team/stops/1328"], ["https://mivb.openplanner.team/stops/2901", "https://mivb.openplanner.team/stops/7271"], ["https://mivb.openplanner.team/stops/3760", "https://mivb.openplanner.team/stops/6005"], ["https://mivb.openplanner.team/stops/3351", "https://mivb.openplanner.team/stops/6356F"], ["https://mivb.openplanner.team/stops/8732", "https://mivb.openplanner.team/stops/8733"], ["https://mivb.openplanner.team/stops/1376B", "https://mivb.openplanner.team/stops/6353"], ["https://mivb.openplanner.team/stops/3099", "https://mivb.openplanner.team/stops/3181"], ["https://mivb.openplanner.team/stops/1568", "https://mivb.openplanner.team/stops/3100"], ["https://mivb.openplanner.team/stops/2408", "https://mivb.openplanner.team/stops/2934"], ["https://mivb.openplanner.team/stops/1746", "https://mivb.openplanner.team/stops/1768"], ["https://mivb.openplanner.team/stops/1102", "https://mivb.openplanner.team/stops/1116"], ["https://mivb.openplanner.team/stops/2917", "https://mivb.openplanner.team/stops/2974"], ["https://mivb.openplanner.team/stops/3521", "https://mivb.openplanner.team/stops/3547"], ["https://mivb.openplanner.team/stops/1528", "https://mivb.openplanner.team/stops/3328"], ["https://mivb.openplanner.team/stops/4131B", "https://mivb.openplanner.team/stops/7790456"], ["https://mivb.openplanner.team/stops/3201", "https://mivb.openplanner.team/stops/9946"], ["https://mivb.openplanner.team/stops/4103", "https://mivb.openplanner.team/stops/4104"], ["https://mivb.openplanner.team/stops/8834", "https://mivb.openplanner.team/stops/7830252"], ["https://mivb.openplanner.team/stops/9959F", "https://mivb.openplanner.team/stops/9963F"], ["https://mivb.openplanner.team/stops/4705", "https://mivb.openplanner.team/stops/5404"], ["https://mivb.openplanner.team/stops/1685F", "https://mivb.openplanner.team/stops/4115"], ["https://mivb.openplanner.team/stops/1828", "https://mivb.openplanner.team/stops/1846"], ["https://mivb.openplanner.team/stops/2514", "https://mivb.openplanner.team/stops/4601"], ["https://mivb.openplanner.team/stops/2544", "https://mivb.openplanner.team/stops/2672"], ["https://mivb.openplanner.team/stops/0430348", "https://mivb.openplanner.team/stops/0431148"], ["https://mivb.openplanner.team/stops/5103", "https://mivb.openplanner.team/stops/5174F"], ["https://mivb.openplanner.team/stops/1094F", "https://mivb.openplanner.team/stops/1199F"], ["https://mivb.openplanner.team/stops/2609", "https://mivb.openplanner.team/stops/2610"], ["https://mivb.openplanner.team/stops/2931", "https://mivb.openplanner.team/stops/2960F"], ["https://mivb.openplanner.team/stops/6437F", "https://mivb.openplanner.team/stops/8421"], ["https://mivb.openplanner.team/stops/3225F", "https://mivb.openplanner.team/stops/0370138"], ["https://mivb.openplanner.team/stops/8803", "https://mivb.openplanner.team/stops/7800255"], ["https://mivb.openplanner.team/stops/0501", "https://mivb.openplanner.team/stops/0010215"], ["https://mivb.openplanner.team/stops/3259B", "https://mivb.openplanner.team/stops/6649F"], ["https://mivb.openplanner.team/stops/3305", "https://mivb.openplanner.team/stops/3361"], ["https://mivb.openplanner.team/stops/9678", "https://mivb.openplanner.team/stops/9680"], ["https://mivb.openplanner.team/stops/4205", "https://mivb.openplanner.team/stops/9047"], ["https://mivb.openplanner.team/stops/2123", "https://mivb.openplanner.team/stops/2133"], ["https://mivb.openplanner.team/stops/1733", "https://mivb.openplanner.team/stops/3156"], ["https://mivb.openplanner.team/stops/5857", "https://mivb.openplanner.team/stops/5858"], ["https://mivb.openplanner.team/stops/1014F", "https://mivb.openplanner.team/stops/1767"], ["https://mivb.openplanner.team/stops/5115F", "https://mivb.openplanner.team/stops/6099"], ["https://mivb.openplanner.team/stops/2311", "https://mivb.openplanner.team/stops/3007"], ["https://mivb.openplanner.team/stops/3012", "https://mivb.openplanner.team/stops/3630"], ["https://mivb.openplanner.team/stops/1319", "https://mivb.openplanner.team/stops/3159"], ["https://mivb.openplanner.team/stops/1869", "https://mivb.openplanner.team/stops/6008"], ["https://mivb.openplanner.team/stops/5529", "https://mivb.openplanner.team/stops/0160230"], ["https://mivb.openplanner.team/stops/2292B", "https://mivb.openplanner.team/stops/5967"], ["https://mivb.openplanner.team/stops/1260", "https://mivb.openplanner.team/stops/2536"], ["https://mivb.openplanner.team/stops/0070321", "https://mivb.openplanner.team/stops/21"], ["https://mivb.openplanner.team/stops/1724", "https://mivb.openplanner.team/stops/3530"], ["https://mivb.openplanner.team/stops/3361", "https://mivb.openplanner.team/stops/5275F"], ["https://mivb.openplanner.team/stops/6436", "https://mivb.openplanner.team/stops/0420147"], ["https://mivb.openplanner.team/stops/3111", "https://mivb.openplanner.team/stops/6304"], ["https://mivb.openplanner.team/stops/3403", "https://mivb.openplanner.team/stops/3467B"], ["https://mivb.openplanner.team/stops/5105F", "https://mivb.openplanner.team/stops/5168F"], ["https://mivb.openplanner.team/stops/3263B", "https://mivb.openplanner.team/stops/3263F"], ["https://mivb.openplanner.team/stops/2807", "https://mivb.openplanner.team/stops/6173"], ["https://mivb.openplanner.team/stops/2221", "https://mivb.openplanner.team/stops/3331"], ["https://mivb.openplanner.team/stops/1354", "https://mivb.openplanner.team/stops/3508"], ["https://mivb.openplanner.team/stops/2705", "https://mivb.openplanner.team/stops/5027"], ["https://mivb.openplanner.team/stops/1290", "https://mivb.openplanner.team/stops/4277"], ["https://mivb.openplanner.team/stops/3704", "https://mivb.openplanner.team/stops/3762"], ["https://mivb.openplanner.team/stops/1483", "https://mivb.openplanner.team/stops/1484"], ["https://mivb.openplanner.team/stops/3709", "https://mivb.openplanner.team/stops/6809"], ["https://mivb.openplanner.team/stops/2214", "https://mivb.openplanner.team/stops/6603"], ["https://mivb.openplanner.team/stops/5107B", "https://mivb.openplanner.team/stops/5111B"], ["https://mivb.openplanner.team/stops/2099", "https://mivb.openplanner.team/stops/2168"], ["https://mivb.openplanner.team/stops/5723B", "https://mivb.openplanner.team/stops/5921G"], ["https://mivb.openplanner.team/stops/6800", "https://mivb.openplanner.team/stops/6869G"], ["https://mivb.openplanner.team/stops/2708G", "https://mivb.openplanner.team/stops/2709F"], ["https://mivb.openplanner.team/stops/1417B", "https://mivb.openplanner.team/stops/1548B"], ["https://mivb.openplanner.team/stops/2671F", "https://mivb.openplanner.team/stops/6106"], ["https://mivb.openplanner.team/stops/1253B", "https://mivb.openplanner.team/stops/7720403"], ["https://mivb.openplanner.team/stops/8122", "https://mivb.openplanner.team/stops/0120126"], ["https://mivb.openplanner.team/stops/1926B", "https://mivb.openplanner.team/stops/5853B"], ["https://mivb.openplanner.team/stops/3231", "https://mivb.openplanner.team/stops/6004"], ["https://mivb.openplanner.team/stops/2727", "https://mivb.openplanner.team/stops/2728"], ["https://mivb.openplanner.team/stops/2397", "https://mivb.openplanner.team/stops/3481"], ["https://mivb.openplanner.team/stops/4059", "https://mivb.openplanner.team/stops/4165"], ["https://mivb.openplanner.team/stops/4276", "https://mivb.openplanner.team/stops/7810154"], ["https://mivb.openplanner.team/stops/1168", "https://mivb.openplanner.team/stops/1169"], ["https://mivb.openplanner.team/stops/3521", "https://mivb.openplanner.team/stops/4294"], ["https://mivb.openplanner.team/stops/1110", "https://mivb.openplanner.team/stops/5727F"], ["https://mivb.openplanner.team/stops/3612F", "https://mivb.openplanner.team/stops/3718"], ["https://mivb.openplanner.team/stops/2290B", "https://mivb.openplanner.team/stops/8221"], ["https://mivb.openplanner.team/stops/1769", "https://mivb.openplanner.team/stops/1881"], ["https://mivb.openplanner.team/stops/5815", "https://mivb.openplanner.team/stops/5816B"], ["https://mivb.openplanner.team/stops/4132B", "https://mivb.openplanner.team/stops/8794"], ["https://mivb.openplanner.team/stops/1066", "https://mivb.openplanner.team/stops/6803F"], ["https://mivb.openplanner.team/stops/2704", "https://mivb.openplanner.team/stops/2708G"], ["https://mivb.openplanner.team/stops/2972", "https://mivb.openplanner.team/stops/6453"], ["https://mivb.openplanner.team/stops/5817", "https://mivb.openplanner.team/stops/5917F"], ["https://mivb.openplanner.team/stops/1776", "https://mivb.openplanner.team/stops/6433"], ["https://mivb.openplanner.team/stops/2959", "https://mivb.openplanner.team/stops/5020"], ["https://mivb.openplanner.team/stops/1728", "https://mivb.openplanner.team/stops/3921"], ["https://mivb.openplanner.team/stops/4122", "https://mivb.openplanner.team/stops/4130F"], ["https://mivb.openplanner.team/stops/8381", "https://mivb.openplanner.team/stops/8382"], ["https://mivb.openplanner.team/stops/9787", "https://mivb.openplanner.team/stops/9788"], ["https://mivb.openplanner.team/stops/4405", "https://mivb.openplanner.team/stops/0250136"], ["https://mivb.openplanner.team/stops/4955F", "https://mivb.openplanner.team/stops/7800255"], ["https://mivb.openplanner.team/stops/3712", "https://mivb.openplanner.team/stops/3718"], ["https://mivb.openplanner.team/stops/1569B", "https://mivb.openplanner.team/stops/1582"], ["https://mivb.openplanner.team/stops/1084", "https://mivb.openplanner.team/stops/5291F"], ["https://mivb.openplanner.team/stops/1116", "https://mivb.openplanner.team/stops/5103"], ["https://mivb.openplanner.team/stops/6862", "https://mivb.openplanner.team/stops/7621"], ["https://mivb.openplanner.team/stops/9600B", "https://mivb.openplanner.team/stops/9784B"], ["https://mivb.openplanner.team/stops/3111", "https://mivb.openplanner.team/stops/6203"], ["https://mivb.openplanner.team/stops/2909", "https://mivb.openplanner.team/stops/2992"], ["https://mivb.openplanner.team/stops/5027", "https://mivb.openplanner.team/stops/9972F"], ["https://mivb.openplanner.team/stops/6016", "https://mivb.openplanner.team/stops/9060"], ["https://mivb.openplanner.team/stops/5059", "https://mivb.openplanner.team/stops/5856"], ["https://mivb.openplanner.team/stops/1450", "https://mivb.openplanner.team/stops/5225F"], ["https://mivb.openplanner.team/stops/3230", "https://mivb.openplanner.team/stops/8733"], ["https://mivb.openplanner.team/stops/2503", "https://mivb.openplanner.team/stops/6505"], ["https://mivb.openplanner.team/stops/2506B", "https://mivb.openplanner.team/stops/6804F"], ["https://mivb.openplanner.team/stops/3180", "https://mivb.openplanner.team/stops/5804G"], ["https://mivb.openplanner.team/stops/3286B", "https://mivb.openplanner.team/stops/3288"], ["https://mivb.openplanner.team/stops/1121", "https://mivb.openplanner.team/stops/3042"], ["https://mivb.openplanner.team/stops/1720B", "https://mivb.openplanner.team/stops/1813"], ["https://mivb.openplanner.team/stops/5710F", "https://mivb.openplanner.team/stops/5766"], ["https://mivb.openplanner.team/stops/5811", "https://mivb.openplanner.team/stops/5858"], ["https://mivb.openplanner.team/stops/1455", "https://mivb.openplanner.team/stops/5454F"], ["https://mivb.openplanner.team/stops/0636", "https://mivb.openplanner.team/stops/3211"], ["https://mivb.openplanner.team/stops/3100", "https://mivb.openplanner.team/stops/3118"], ["https://mivb.openplanner.team/stops/8331", "https://mivb.openplanner.team/stops/8332"], ["https://mivb.openplanner.team/stops/4111", "https://mivb.openplanner.team/stops/0290212"], ["https://mivb.openplanner.team/stops/1674F", "https://mivb.openplanner.team/stops/2507"], ["https://mivb.openplanner.team/stops/1488", "https://mivb.openplanner.team/stops/3713"], ["https://mivb.openplanner.team/stops/1602", "https://mivb.openplanner.team/stops/5524"], ["https://mivb.openplanner.team/stops/1913", "https://mivb.openplanner.team/stops/5409"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/3522"], ["https://mivb.openplanner.team/stops/1756B", "https://mivb.openplanner.team/stops/1863"], ["https://mivb.openplanner.team/stops/0610663", "https://mivb.openplanner.team/stops/63"], ["https://mivb.openplanner.team/stops/3286B", "https://mivb.openplanner.team/stops/3462"], ["https://mivb.openplanner.team/stops/1722", "https://mivb.openplanner.team/stops/1732"], ["https://mivb.openplanner.team/stops/1024", "https://mivb.openplanner.team/stops/9025"], ["https://mivb.openplanner.team/stops/3006", "https://mivb.openplanner.team/stops/8342"], ["https://mivb.openplanner.team/stops/1499", "https://mivb.openplanner.team/stops/5964"], ["https://mivb.openplanner.team/stops/6122", "https://mivb.openplanner.team/stops/6174F"], ["https://mivb.openplanner.team/stops/2535F", "https://mivb.openplanner.team/stops/6857"], ["https://mivb.openplanner.team/stops/4123", "https://mivb.openplanner.team/stops/4125"], ["https://mivb.openplanner.team/stops/5610", "https://mivb.openplanner.team/stops/6120"], ["https://mivb.openplanner.team/stops/6165", "https://mivb.openplanner.team/stops/0340341"], ["https://mivb.openplanner.team/stops/2404F", "https://mivb.openplanner.team/stops/6165"], ["https://mivb.openplanner.team/stops/2262", "https://mivb.openplanner.team/stops/6602"], ["https://mivb.openplanner.team/stops/3163", "https://mivb.openplanner.team/stops/6061"], ["https://mivb.openplanner.team/stops/2667", "https://mivb.openplanner.team/stops/2952B"], ["https://mivb.openplanner.team/stops/6604F", "https://mivb.openplanner.team/stops/6652"], ["https://mivb.openplanner.team/stops/5810", "https://mivb.openplanner.team/stops/6253"], ["https://mivb.openplanner.team/stops/9702", "https://mivb.openplanner.team/stops/9725"], ["https://mivb.openplanner.team/stops/1404", "https://mivb.openplanner.team/stops/6054B"], ["https://mivb.openplanner.team/stops/2965", "https://mivb.openplanner.team/stops/6209"], ["https://mivb.openplanner.team/stops/6014", "https://mivb.openplanner.team/stops/47"], ["https://mivb.openplanner.team/stops/4292", "https://mivb.openplanner.team/stops/5453"], ["https://mivb.openplanner.team/stops/2037", "https://mivb.openplanner.team/stops/2084"], ["https://mivb.openplanner.team/stops/0511", "https://mivb.openplanner.team/stops/0430848"], ["https://mivb.openplanner.team/stops/2217F", "https://mivb.openplanner.team/stops/8371"], ["https://mivb.openplanner.team/stops/0100124", "https://mivb.openplanner.team/stops/0100324"], ["https://mivb.openplanner.team/stops/1124", "https://mivb.openplanner.team/stops/6355"], ["https://mivb.openplanner.team/stops/4127", "https://mivb.openplanner.team/stops/6100"], ["https://mivb.openplanner.team/stops/2854", "https://mivb.openplanner.team/stops/5705"], ["https://mivb.openplanner.team/stops/6099", "https://mivb.openplanner.team/stops/6175"], ["https://mivb.openplanner.team/stops/1082", "https://mivb.openplanner.team/stops/2271"], ["https://mivb.openplanner.team/stops/9551", "https://mivb.openplanner.team/stops/9577"], ["https://mivb.openplanner.team/stops/2331F", "https://mivb.openplanner.team/stops/2333F"], ["https://mivb.openplanner.team/stops/1477B", "https://mivb.openplanner.team/stops/3854B"], ["https://mivb.openplanner.team/stops/5724", "https://mivb.openplanner.team/stops/5753F"], ["https://mivb.openplanner.team/stops/1141", "https://mivb.openplanner.team/stops/9983"], ["https://mivb.openplanner.team/stops/9703", "https://mivb.openplanner.team/stops/9777"], ["https://mivb.openplanner.team/stops/1912", "https://mivb.openplanner.team/stops/1977"], ["https://mivb.openplanner.team/stops/1286", "https://mivb.openplanner.team/stops/0470151"], ["https://mivb.openplanner.team/stops/4294", "https://mivb.openplanner.team/stops/4358"], ["https://mivb.openplanner.team/stops/3306", "https://mivb.openplanner.team/stops/3361"], ["https://mivb.openplanner.team/stops/2810", "https://mivb.openplanner.team/stops/2824"], ["https://mivb.openplanner.team/stops/1833B", "https://mivb.openplanner.team/stops/1841"], ["https://mivb.openplanner.team/stops/2107", "https://mivb.openplanner.team/stops/4309"], ["https://mivb.openplanner.team/stops/5258", "https://mivb.openplanner.team/stops/5468"], ["https://mivb.openplanner.team/stops/8021", "https://mivb.openplanner.team/stops/0020216"], ["https://mivb.openplanner.team/stops/5507", "https://mivb.openplanner.team/stops/5556"], ["https://mivb.openplanner.team/stops/2813", "https://mivb.openplanner.team/stops/5086F"], ["https://mivb.openplanner.team/stops/4594", "https://mivb.openplanner.team/stops/0370438"], ["https://mivb.openplanner.team/stops/5076", "https://mivb.openplanner.team/stops/7770158"], ["https://mivb.openplanner.team/stops/6754", "https://mivb.openplanner.team/stops/0280113"], ["https://mivb.openplanner.team/stops/1198", "https://mivb.openplanner.team/stops/5172F"], ["https://mivb.openplanner.team/stops/2123", "https://mivb.openplanner.team/stops/5213"], ["https://mivb.openplanner.team/stops/6114F", "https://mivb.openplanner.team/stops/6156F"], ["https://mivb.openplanner.team/stops/1828", "https://mivb.openplanner.team/stops/0160230"], ["https://mivb.openplanner.team/stops/7730102", "https://mivb.openplanner.team/stops/7730602"], ["https://mivb.openplanner.team/stops/5805", "https://mivb.openplanner.team/stops/5865"], ["https://mivb.openplanner.team/stops/4360", "https://mivb.openplanner.team/stops/6550"], ["https://mivb.openplanner.team/stops/3810", "https://mivb.openplanner.team/stops/3853"], ["https://mivb.openplanner.team/stops/2715", "https://mivb.openplanner.team/stops/5458"], ["https://mivb.openplanner.team/stops/2271", "https://mivb.openplanner.team/stops/5714"], ["https://mivb.openplanner.team/stops/2014", "https://mivb.openplanner.team/stops/4408"], ["https://mivb.openplanner.team/stops/2995", "https://mivb.openplanner.team/stops/3420"], ["https://mivb.openplanner.team/stops/4205", "https://mivb.openplanner.team/stops/5472"], ["https://mivb.openplanner.team/stops/1919", "https://mivb.openplanner.team/stops/1971"], ["https://mivb.openplanner.team/stops/1613", "https://mivb.openplanner.team/stops/1635"], ["https://mivb.openplanner.team/stops/2352", "https://mivb.openplanner.team/stops/2823B"], ["https://mivb.openplanner.team/stops/1425", "https://mivb.openplanner.team/stops/1464"], ["https://mivb.openplanner.team/stops/2838", "https://mivb.openplanner.team/stops/0010215"], ["https://mivb.openplanner.team/stops/2757C", "https://mivb.openplanner.team/stops/5451F"], ["https://mivb.openplanner.team/stops/1571", "https://mivb.openplanner.team/stops/0410146"], ["https://mivb.openplanner.team/stops/4209", "https://mivb.openplanner.team/stops/8813"], ["https://mivb.openplanner.team/stops/3410", "https://mivb.openplanner.team/stops/5305G"], ["https://mivb.openplanner.team/stops/1102", "https://mivb.openplanner.team/stops/5102F"], ["https://mivb.openplanner.team/stops/3424", "https://mivb.openplanner.team/stops/3425"], ["https://mivb.openplanner.team/stops/1758B", "https://mivb.openplanner.team/stops/1810"], ["https://mivb.openplanner.team/stops/1085", "https://mivb.openplanner.team/stops/1231"], ["https://mivb.openplanner.team/stops/1096", "https://mivb.openplanner.team/stops/4007G"], ["https://mivb.openplanner.team/stops/1382", "https://mivb.openplanner.team/stops/8121"], ["https://mivb.openplanner.team/stops/2544F", "https://mivb.openplanner.team/stops/2670F"], ["https://mivb.openplanner.team/stops/2584", "https://mivb.openplanner.team/stops/6869G"], ["https://mivb.openplanner.team/stops/2764G", "https://mivb.openplanner.team/stops/4076"], ["https://mivb.openplanner.team/stops/5406", "https://mivb.openplanner.team/stops/5475"], ["https://mivb.openplanner.team/stops/1860", "https://mivb.openplanner.team/stops/1875"], ["https://mivb.openplanner.team/stops/1339", "https://mivb.openplanner.team/stops/1587"], ["https://mivb.openplanner.team/stops/2575", "https://mivb.openplanner.team/stops/5007F"], ["https://mivb.openplanner.team/stops/3008", "https://mivb.openplanner.team/stops/5770F"], ["https://mivb.openplanner.team/stops/1943", "https://mivb.openplanner.team/stops/5057"], ["https://mivb.openplanner.team/stops/1475", "https://mivb.openplanner.team/stops/1477B"], ["https://mivb.openplanner.team/stops/5416", "https://mivb.openplanner.team/stops/5424"], ["https://mivb.openplanner.team/stops/8091", "https://mivb.openplanner.team/stops/0090323"], ["https://mivb.openplanner.team/stops/5959", "https://mivb.openplanner.team/stops/5965"], ["https://mivb.openplanner.team/stops/3459", "https://mivb.openplanner.team/stops/3702"], ["https://mivb.openplanner.team/stops/4357", "https://mivb.openplanner.team/stops/4456"], ["https://mivb.openplanner.team/stops/3240", "https://mivb.openplanner.team/stops/3763"], ["https://mivb.openplanner.team/stops/3612F", "https://mivb.openplanner.team/stops/7650110"], ["https://mivb.openplanner.team/stops/2315", "https://mivb.openplanner.team/stops/3063"], ["https://mivb.openplanner.team/stops/1516", "https://mivb.openplanner.team/stops/1563"], ["https://mivb.openplanner.team/stops/2807", "https://mivb.openplanner.team/stops/6504"], ["https://mivb.openplanner.team/stops/1937", "https://mivb.openplanner.team/stops/5860"], ["https://mivb.openplanner.team/stops/3166", "https://mivb.openplanner.team/stops/3412"], ["https://mivb.openplanner.team/stops/1584", "https://mivb.openplanner.team/stops/2028"], ["https://mivb.openplanner.team/stops/2249", "https://mivb.openplanner.team/stops/2250"], ["https://mivb.openplanner.team/stops/5722F", "https://mivb.openplanner.team/stops/5756"], ["https://mivb.openplanner.team/stops/1719", "https://mivb.openplanner.team/stops/3553"], ["https://mivb.openplanner.team/stops/3298", "https://mivb.openplanner.team/stops/6258"], ["https://mivb.openplanner.team/stops/2076", "https://mivb.openplanner.team/stops/2115"], ["https://mivb.openplanner.team/stops/1208", "https://mivb.openplanner.team/stops/2532"], ["https://mivb.openplanner.team/stops/1404", "https://mivb.openplanner.team/stops/3251"], ["https://mivb.openplanner.team/stops/1169", "https://mivb.openplanner.team/stops/8341"], ["https://mivb.openplanner.team/stops/1328", "https://mivb.openplanner.team/stops/1685F"], ["https://mivb.openplanner.team/stops/0040518", "https://mivb.openplanner.team/stops/8402"], ["https://mivb.openplanner.team/stops/3181", "https://mivb.openplanner.team/stops/5867F"], ["https://mivb.openplanner.team/stops/1826", "https://mivb.openplanner.team/stops/1835"], ["https://mivb.openplanner.team/stops/1831", "https://mivb.openplanner.team/stops/1832"], ["https://mivb.openplanner.team/stops/1080", "https://mivb.openplanner.team/stops/1334"], ["https://mivb.openplanner.team/stops/3122", "https://mivb.openplanner.team/stops/3572"], ["https://mivb.openplanner.team/stops/1714", "https://mivb.openplanner.team/stops/1869"], ["https://mivb.openplanner.team/stops/0230234", "https://mivb.openplanner.team/stops/33"], ["https://mivb.openplanner.team/stops/5812", "https://mivb.openplanner.team/stops/5813F"], ["https://mivb.openplanner.team/stops/3608", "https://mivb.openplanner.team/stops/3613F"], ["https://mivb.openplanner.team/stops/3099", "https://mivb.openplanner.team/stops/3180"], ["https://mivb.openplanner.team/stops/1009", "https://mivb.openplanner.team/stops/1066"], ["https://mivb.openplanner.team/stops/1230", "https://mivb.openplanner.team/stops/5175"], ["https://mivb.openplanner.team/stops/2508", "https://mivb.openplanner.team/stops/2519"], ["https://mivb.openplanner.team/stops/1383", "https://mivb.openplanner.team/stops/0120126"], ["https://mivb.openplanner.team/stops/2016", "https://mivb.openplanner.team/stops/2107"], ["https://mivb.openplanner.team/stops/4131B", "https://mivb.openplanner.team/stops/7790356"], ["https://mivb.openplanner.team/stops/1278", "https://mivb.openplanner.team/stops/1762"], ["https://mivb.openplanner.team/stops/8834", "https://mivb.openplanner.team/stops/7830352"], ["https://mivb.openplanner.team/stops/2080", "https://mivb.openplanner.team/stops/2107"], ["https://mivb.openplanner.team/stops/8121", "https://mivb.openplanner.team/stops/8122"], ["https://mivb.openplanner.team/stops/9959F", "https://mivb.openplanner.team/stops/9969F"], ["https://mivb.openplanner.team/stops/2514", "https://mivb.openplanner.team/stops/4602"], ["https://mivb.openplanner.team/stops/4123", "https://mivb.openplanner.team/stops/6171"], ["https://mivb.openplanner.team/stops/1954", "https://mivb.openplanner.team/stops/1963"], ["https://mivb.openplanner.team/stops/0473F", "https://mivb.openplanner.team/stops/0470459"], ["https://mivb.openplanner.team/stops/2337F", "https://mivb.openplanner.team/stops/5759F"], ["https://mivb.openplanner.team/stops/1002", "https://mivb.openplanner.team/stops/0300145"], ["https://mivb.openplanner.team/stops/1616", "https://mivb.openplanner.team/stops/5524"], ["https://mivb.openplanner.team/stops/8803", "https://mivb.openplanner.team/stops/7800155"], ["https://mivb.openplanner.team/stops/1487", "https://mivb.openplanner.team/stops/3751"], ["https://mivb.openplanner.team/stops/2974", "https://mivb.openplanner.team/stops/6204"], ["https://mivb.openplanner.team/stops/1731", "https://mivb.openplanner.team/stops/1751"], ["https://mivb.openplanner.team/stops/1193", "https://mivb.openplanner.team/stops/5174F"], ["https://mivb.openplanner.team/stops/2407", "https://mivb.openplanner.team/stops/5107B"], ["https://mivb.openplanner.team/stops/0810169", "https://mivb.openplanner.team/stops/1406"], ["https://mivb.openplanner.team/stops/1339", "https://mivb.openplanner.team/stops/1638B"], ["https://mivb.openplanner.team/stops/2136", "https://mivb.openplanner.team/stops/2148"], ["https://mivb.openplanner.team/stops/2112", "https://mivb.openplanner.team/stops/2156"], ["https://mivb.openplanner.team/stops/6606", "https://mivb.openplanner.team/stops/0270614"], ["https://mivb.openplanner.team/stops/1404", "https://mivb.openplanner.team/stops/1462"], ["https://mivb.openplanner.team/stops/1733", "https://mivb.openplanner.team/stops/3158"], ["https://mivb.openplanner.team/stops/2415", "https://mivb.openplanner.team/stops/5816B"], ["https://mivb.openplanner.team/stops/0090123", "https://mivb.openplanner.team/stops/0090223"], ["https://mivb.openplanner.team/stops/1720B", "https://mivb.openplanner.team/stops/1751"], ["https://mivb.openplanner.team/stops/4403", "https://mivb.openplanner.team/stops/4454"], ["https://mivb.openplanner.team/stops/1384", "https://mivb.openplanner.team/stops/1385"], ["https://mivb.openplanner.team/stops/5013F", "https://mivb.openplanner.team/stops/5072"], ["https://mivb.openplanner.team/stops/2955", "https://mivb.openplanner.team/stops/5848"], ["https://mivb.openplanner.team/stops/1732", "https://mivb.openplanner.team/stops/4159"], ["https://mivb.openplanner.team/stops/1030", "https://mivb.openplanner.team/stops/2271"], ["https://mivb.openplanner.team/stops/1674F", "https://mivb.openplanner.team/stops/6804F"], ["https://mivb.openplanner.team/stops/2705", "https://mivb.openplanner.team/stops/2769"], ["https://mivb.openplanner.team/stops/2518", "https://mivb.openplanner.team/stops/8702"], ["https://mivb.openplanner.team/stops/1766", "https://mivb.openplanner.team/stops/2504"], ["https://mivb.openplanner.team/stops/2539F", "https://mivb.openplanner.team/stops/6175"], ["https://mivb.openplanner.team/stops/1552", "https://mivb.openplanner.team/stops/9876"], ["https://mivb.openplanner.team/stops/1641", "https://mivb.openplanner.team/stops/1833B"], ["https://mivb.openplanner.team/stops/2936", "https://mivb.openplanner.team/stops/2937B"], ["https://mivb.openplanner.team/stops/4071", "https://mivb.openplanner.team/stops/8834"], ["https://mivb.openplanner.team/stops/1578", "https://mivb.openplanner.team/stops/0110325"], ["https://mivb.openplanner.team/stops/1862", "https://mivb.openplanner.team/stops/1864"], ["https://mivb.openplanner.team/stops/1354", "https://mivb.openplanner.team/stops/3508F"], ["https://mivb.openplanner.team/stops/5200F", "https://mivb.openplanner.team/stops/5264F"], ["https://mivb.openplanner.team/stops/2705", "https://mivb.openplanner.team/stops/5028"], ["https://mivb.openplanner.team/stops/2965", "https://mivb.openplanner.team/stops/5063"], ["https://mivb.openplanner.team/stops/1290", "https://mivb.openplanner.team/stops/4276"], ["https://mivb.openplanner.team/stops/1738", "https://mivb.openplanner.team/stops/5056"], ["https://mivb.openplanner.team/stops/2902", "https://mivb.openplanner.team/stops/5361"], ["https://mivb.openplanner.team/stops/2099", "https://mivb.openplanner.team/stops/2167"], ["https://mivb.openplanner.team/stops/5723B", "https://mivb.openplanner.team/stops/5921B"], ["https://mivb.openplanner.team/stops/0150129", "https://mivb.openplanner.team/stops/29"], ["https://mivb.openplanner.team/stops/1916", "https://mivb.openplanner.team/stops/5255F"], ["https://mivb.openplanner.team/stops/1302", "https://mivb.openplanner.team/stops/5551"], ["https://mivb.openplanner.team/stops/1083", "https://mivb.openplanner.team/stops/2269"], ["https://mivb.openplanner.team/stops/1550", "https://mivb.openplanner.team/stops/1554"], ["https://mivb.openplanner.team/stops/2940F", "https://mivb.openplanner.team/stops/5467"], ["https://mivb.openplanner.team/stops/2355", "https://mivb.openplanner.team/stops/4075"], ["https://mivb.openplanner.team/stops/0610663", "https://mivb.openplanner.team/stops/0610263"], ["https://mivb.openplanner.team/stops/4276", "https://mivb.openplanner.team/stops/7810254"], ["https://mivb.openplanner.team/stops/1726", "https://mivb.openplanner.team/stops/3624B"], ["https://mivb.openplanner.team/stops/1456", "https://mivb.openplanner.team/stops/0110425"], ["https://mivb.openplanner.team/stops/1829", "https://mivb.openplanner.team/stops/5510"], ["https://mivb.openplanner.team/stops/0130127", "https://mivb.openplanner.team/stops/0130227"], ["https://mivb.openplanner.team/stops/1019", "https://mivb.openplanner.team/stops/4258"], ["https://mivb.openplanner.team/stops/2704", "https://mivb.openplanner.team/stops/2705"], ["https://mivb.openplanner.team/stops/3331", "https://mivb.openplanner.team/stops/8031"], ["https://mivb.openplanner.team/stops/6021", "https://mivb.openplanner.team/stops/6056"], ["https://mivb.openplanner.team/stops/2018", "https://mivb.openplanner.team/stops/5455"], ["https://mivb.openplanner.team/stops/1256", "https://mivb.openplanner.team/stops/2564"], ["https://mivb.openplanner.team/stops/2665", "https://mivb.openplanner.team/stops/5720"], ["https://mivb.openplanner.team/stops/1765", "https://mivb.openplanner.team/stops/4063"], ["https://mivb.openplanner.team/stops/1526", "https://mivb.openplanner.team/stops/1531"], ["https://mivb.openplanner.team/stops/1728", "https://mivb.openplanner.team/stops/3922"], ["https://mivb.openplanner.team/stops/2017", "https://mivb.openplanner.team/stops/2029"], ["https://mivb.openplanner.team/stops/0704", "https://mivb.openplanner.team/stops/8331"], ["https://mivb.openplanner.team/stops/4122", "https://mivb.openplanner.team/stops/4130"], ["https://mivb.openplanner.team/stops/1492", "https://mivb.openplanner.team/stops/1498"], ["https://mivb.openplanner.team/stops/6302", "https://mivb.openplanner.team/stops/6364"], ["https://mivb.openplanner.team/stops/2939B", "https://mivb.openplanner.team/stops/9920F"], ["https://mivb.openplanner.team/stops/1160", "https://mivb.openplanner.team/stops/2927"], ["https://mivb.openplanner.team/stops/4955F", "https://mivb.openplanner.team/stops/7800355"], ["https://mivb.openplanner.team/stops/0900368", "https://mivb.openplanner.team/stops/9996"], ["https://mivb.openplanner.team/stops/2919", "https://mivb.openplanner.team/stops/6021"], ["https://mivb.openplanner.team/stops/0706", "https://mivb.openplanner.team/stops/6209"], ["https://mivb.openplanner.team/stops/7700105", "https://mivb.openplanner.team/stops/7700205"], ["https://mivb.openplanner.team/stops/2143B", "https://mivb.openplanner.team/stops/2144"], ["https://mivb.openplanner.team/stops/5529", "https://mivb.openplanner.team/stops/5530"], ["https://mivb.openplanner.team/stops/1758B", "https://mivb.openplanner.team/stops/0220333"], ["https://mivb.openplanner.team/stops/1453", "https://mivb.openplanner.team/stops/4348"], ["https://mivb.openplanner.team/stops/2247", "https://mivb.openplanner.team/stops/2248"], ["https://mivb.openplanner.team/stops/1859", "https://mivb.openplanner.team/stops/5504"], ["https://mivb.openplanner.team/stops/1726", "https://mivb.openplanner.team/stops/5068F"], ["https://mivb.openplanner.team/stops/2507", "https://mivb.openplanner.team/stops/4063"], ["https://mivb.openplanner.team/stops/1512", "https://mivb.openplanner.team/stops/1567"], ["https://mivb.openplanner.team/stops/0521", "https://mivb.openplanner.team/stops/0536"], ["https://mivb.openplanner.team/stops/1094", "https://mivb.openplanner.team/stops/1199F"], ["https://mivb.openplanner.team/stops/3207", "https://mivb.openplanner.team/stops/5046"], ["https://mivb.openplanner.team/stops/3556", "https://mivb.openplanner.team/stops/34"], ["https://mivb.openplanner.team/stops/2988", "https://mivb.openplanner.team/stops/5968"], ["https://mivb.openplanner.team/stops/0600962", "https://mivb.openplanner.team/stops/3320B"], ["https://mivb.openplanner.team/stops/1450", "https://mivb.openplanner.team/stops/5226F"], ["https://mivb.openplanner.team/stops/6005", "https://mivb.openplanner.team/stops/7730102"], ["https://mivb.openplanner.team/stops/2670F", "https://mivb.openplanner.team/stops/6099"], ["https://mivb.openplanner.team/stops/6191", "https://mivb.openplanner.team/stops/9291"], ["https://mivb.openplanner.team/stops/3625B", "https://mivb.openplanner.team/stops/6425F"], ["https://mivb.openplanner.team/stops/6432", "https://mivb.openplanner.team/stops/6433"], ["https://mivb.openplanner.team/stops/0536", "https://mivb.openplanner.team/stops/1030"], ["https://mivb.openplanner.team/stops/3180", "https://mivb.openplanner.team/stops/5803G"], ["https://mivb.openplanner.team/stops/1125", "https://mivb.openplanner.team/stops/7369"], ["https://mivb.openplanner.team/stops/1328", "https://mivb.openplanner.team/stops/1334"], ["https://mivb.openplanner.team/stops/1205", "https://mivb.openplanner.team/stops/2373"], ["https://mivb.openplanner.team/stops/1674F", "https://mivb.openplanner.team/stops/2506B"], ["https://mivb.openplanner.team/stops/1739", "https://mivb.openplanner.team/stops/6931G"], ["https://mivb.openplanner.team/stops/1519", "https://mivb.openplanner.team/stops/1561"], ["https://mivb.openplanner.team/stops/4501F", "https://mivb.openplanner.team/stops/5925"], ["https://mivb.openplanner.team/stops/3810", "https://mivb.openplanner.team/stops/3860"], ["https://mivb.openplanner.team/stops/5022", "https://mivb.openplanner.team/stops/6424F"], ["https://mivb.openplanner.team/stops/2351", "https://mivb.openplanner.team/stops/3480"], ["https://mivb.openplanner.team/stops/1010", "https://mivb.openplanner.team/stops/1065"], ["https://mivb.openplanner.team/stops/5045", "https://mivb.openplanner.team/stops/6081"], ["https://mivb.openplanner.team/stops/4126F", "https://mivb.openplanner.team/stops/7790356"], ["https://mivb.openplanner.team/stops/3236", "https://mivb.openplanner.team/stops/4659"], ["https://mivb.openplanner.team/stops/3280", "https://mivb.openplanner.team/stops/3338F"], ["https://mivb.openplanner.team/stops/1304", "https://mivb.openplanner.team/stops/2510"], ["https://mivb.openplanner.team/stops/9609", "https://mivb.openplanner.team/stops/9635"], ["https://mivb.openplanner.team/stops/3761", "https://mivb.openplanner.team/stops/5274F"], ["https://mivb.openplanner.team/stops/3109", "https://mivb.openplanner.team/stops/3166"], ["https://mivb.openplanner.team/stops/8211", "https://mivb.openplanner.team/stops/32"], ["https://mivb.openplanner.team/stops/4296", "https://mivb.openplanner.team/stops/4402"], ["https://mivb.openplanner.team/stops/1140", "https://mivb.openplanner.team/stops/1153"], ["https://mivb.openplanner.team/stops/3403", "https://mivb.openplanner.team/stops/4556"], ["https://mivb.openplanner.team/stops/3814", "https://mivb.openplanner.team/stops/5720F"], ["https://mivb.openplanner.team/stops/5776", "https://mivb.openplanner.team/stops/7820253"], ["https://mivb.openplanner.team/stops/2504", "https://mivb.openplanner.team/stops/2574"], ["https://mivb.openplanner.team/stops/4209", "https://mivb.openplanner.team/stops/4276"], ["https://mivb.openplanner.team/stops/4127", "https://mivb.openplanner.team/stops/4217"], ["https://mivb.openplanner.team/stops/1544", "https://mivb.openplanner.team/stops/1811"], ["https://mivb.openplanner.team/stops/6353", "https://mivb.openplanner.team/stops/6353F"], ["https://mivb.openplanner.team/stops/1710", "https://mivb.openplanner.team/stops/9103"], ["https://mivb.openplanner.team/stops/2002", "https://mivb.openplanner.team/stops/5053G"], ["https://mivb.openplanner.team/stops/2718", "https://mivb.openplanner.team/stops/2759"], ["https://mivb.openplanner.team/stops/2161", "https://mivb.openplanner.team/stops/2167"], ["https://mivb.openplanner.team/stops/3313", "https://mivb.openplanner.team/stops/9060"], ["https://mivb.openplanner.team/stops/2404F", "https://mivb.openplanner.team/stops/6166"], ["https://mivb.openplanner.team/stops/2819", "https://mivb.openplanner.team/stops/2852"], ["https://mivb.openplanner.team/stops/5803G", "https://mivb.openplanner.team/stops/5867F"], ["https://mivb.openplanner.team/stops/6443", "https://mivb.openplanner.team/stops/0020616"], ["https://mivb.openplanner.team/stops/1387", "https://mivb.openplanner.team/stops/9600B"], ["https://mivb.openplanner.team/stops/2215", "https://mivb.openplanner.team/stops/9979B"], ["https://mivb.openplanner.team/stops/3163", "https://mivb.openplanner.team/stops/6060"], ["https://mivb.openplanner.team/stops/8441", "https://mivb.openplanner.team/stops/0440349"], ["https://mivb.openplanner.team/stops/1273", "https://mivb.openplanner.team/stops/1318"], ["https://mivb.openplanner.team/stops/2714", "https://mivb.openplanner.team/stops/2715"], ["https://mivb.openplanner.team/stops/0270114", "https://mivb.openplanner.team/stops/0270314"], ["https://mivb.openplanner.team/stops/2260F", "https://mivb.openplanner.team/stops/6808G"], ["https://mivb.openplanner.team/stops/4341", "https://mivb.openplanner.team/stops/5422"], ["https://mivb.openplanner.team/stops/0089", "https://mivb.openplanner.team/stops/1113"], ["https://mivb.openplanner.team/stops/0420147", "https://mivb.openplanner.team/stops/9023"], ["https://mivb.openplanner.team/stops/5048", "https://mivb.openplanner.team/stops/5362F"], ["https://mivb.openplanner.team/stops/5515", "https://mivb.openplanner.team/stops/5524"], ["https://mivb.openplanner.team/stops/4107", "https://mivb.openplanner.team/stops/4156"], ["https://mivb.openplanner.team/stops/1082", "https://mivb.openplanner.team/stops/2269"], ["https://mivb.openplanner.team/stops/1165", "https://mivb.openplanner.team/stops/1166"], ["https://mivb.openplanner.team/stops/2331F", "https://mivb.openplanner.team/stops/6121F"], ["https://mivb.openplanner.team/stops/3517", "https://mivb.openplanner.team/stops/6158"], ["https://mivb.openplanner.team/stops/3113", "https://mivb.openplanner.team/stops/6019"], ["https://mivb.openplanner.team/stops/1912", "https://mivb.openplanner.team/stops/1976"], ["https://mivb.openplanner.team/stops/2309C", "https://mivb.openplanner.team/stops/3008"], ["https://mivb.openplanner.team/stops/3558", "https://mivb.openplanner.team/stops/4306"], ["https://mivb.openplanner.team/stops/5258", "https://mivb.openplanner.team/stops/5462F"], ["https://mivb.openplanner.team/stops/5407", "https://mivb.openplanner.team/stops/5468"], ["https://mivb.openplanner.team/stops/6202", "https://mivb.openplanner.team/stops/6304"], ["https://mivb.openplanner.team/stops/5040", "https://mivb.openplanner.team/stops/5041F"], ["https://mivb.openplanner.team/stops/1424", "https://mivb.openplanner.team/stops/1459"], ["https://mivb.openplanner.team/stops/6097B", "https://mivb.openplanner.team/stops/6174F"], ["https://mivb.openplanner.team/stops/1929", "https://mivb.openplanner.team/stops/2702"], ["https://mivb.openplanner.team/stops/5066", "https://mivb.openplanner.team/stops/5066F"], ["https://mivb.openplanner.team/stops/4004", "https://mivb.openplanner.team/stops/4273F"], ["https://mivb.openplanner.team/stops/4058F", "https://mivb.openplanner.team/stops/5168"], ["https://mivb.openplanner.team/stops/2080", "https://mivb.openplanner.team/stops/4309"], ["https://mivb.openplanner.team/stops/5507", "https://mivb.openplanner.team/stops/5555"], ["https://mivb.openplanner.team/stops/0070521", "https://mivb.openplanner.team/stops/0070621"], ["https://mivb.openplanner.team/stops/0473F", "https://mivb.openplanner.team/stops/0470351"], ["https://mivb.openplanner.team/stops/6602", "https://mivb.openplanner.team/stops/6656"], ["https://mivb.openplanner.team/stops/0410246", "https://mivb.openplanner.team/stops/0410346"], ["https://mivb.openplanner.team/stops/1245", "https://mivb.openplanner.team/stops/6608G"], ["https://mivb.openplanner.team/stops/1654", "https://mivb.openplanner.team/stops/3532"], ["https://mivb.openplanner.team/stops/6649F", "https://mivb.openplanner.team/stops/6754"], ["https://mivb.openplanner.team/stops/0240435", "https://mivb.openplanner.team/stops/35"], ["https://mivb.openplanner.team/stops/1316", "https://mivb.openplanner.team/stops/3317"], ["https://mivb.openplanner.team/stops/8731", "https://mivb.openplanner.team/stops/7730602"], ["https://mivb.openplanner.team/stops/4213", "https://mivb.openplanner.team/stops/4253"], ["https://mivb.openplanner.team/stops/1064", "https://mivb.openplanner.team/stops/4107"], ["https://mivb.openplanner.team/stops/6442", "https://mivb.openplanner.team/stops/8021"], ["https://mivb.openplanner.team/stops/0610663", "https://mivb.openplanner.team/stops/2264"], ["https://mivb.openplanner.team/stops/0620164", "https://mivb.openplanner.team/stops/1225"], ["https://mivb.openplanner.team/stops/3572", "https://mivb.openplanner.team/stops/3572F"], ["https://mivb.openplanner.team/stops/3226B", "https://mivb.openplanner.team/stops/3263F"], ["https://mivb.openplanner.team/stops/6465", "https://mivb.openplanner.team/stops/0050319"], ["https://mivb.openplanner.team/stops/5227F", "https://mivb.openplanner.team/stops/0120326"], ["https://mivb.openplanner.team/stops/2579", "https://mivb.openplanner.team/stops/4655"], ["https://mivb.openplanner.team/stops/3156", "https://mivb.openplanner.team/stops/6157F"], ["https://mivb.openplanner.team/stops/5762", "https://mivb.openplanner.team/stops/6177"], ["https://mivb.openplanner.team/stops/1125", "https://mivb.openplanner.team/stops/1168"], ["https://mivb.openplanner.team/stops/6474F", "https://mivb.openplanner.team/stops/6475F"], ["https://mivb.openplanner.team/stops/1919", "https://mivb.openplanner.team/stops/1972"], ["https://mivb.openplanner.team/stops/2895", "https://mivb.openplanner.team/stops/9946"], ["https://mivb.openplanner.team/stops/6308F", "https://mivb.openplanner.team/stops/6357"], ["https://mivb.openplanner.team/stops/0821", "https://mivb.openplanner.team/stops/1460"], ["https://mivb.openplanner.team/stops/1535", "https://mivb.openplanner.team/stops/3273"], ["https://mivb.openplanner.team/stops/1818", "https://mivb.openplanner.team/stops/1857"], ["https://mivb.openplanner.team/stops/1492", "https://mivb.openplanner.team/stops/7"], ["https://mivb.openplanner.team/stops/3908", "https://mivb.openplanner.team/stops/3954"], ["https://mivb.openplanner.team/stops/1972", "https://mivb.openplanner.team/stops/1973"], ["https://mivb.openplanner.team/stops/0810369", "https://mivb.openplanner.team/stops/1424"], ["https://mivb.openplanner.team/stops/5405", "https://mivb.openplanner.team/stops/7529"], ["https://mivb.openplanner.team/stops/9652", "https://mivb.openplanner.team/stops/9682"], ["https://mivb.openplanner.team/stops/5076F", "https://mivb.openplanner.team/stops/7770158"], ["https://mivb.openplanner.team/stops/2250", "https://mivb.openplanner.team/stops/3266"], ["https://mivb.openplanner.team/stops/9655", "https://mivb.openplanner.team/stops/9679"], ["https://mivb.openplanner.team/stops/8102", "https://mivb.openplanner.team/stops/0100224"], ["https://mivb.openplanner.team/stops/2209", "https://mivb.openplanner.team/stops/0440649"], ["https://mivb.openplanner.team/stops/2935", "https://mivb.openplanner.team/stops/5848"], ["https://mivb.openplanner.team/stops/1260", "https://mivb.openplanner.team/stops/1488"], ["https://mivb.openplanner.team/stops/3210B", "https://mivb.openplanner.team/stops/3273"], ["https://mivb.openplanner.team/stops/0636", "https://mivb.openplanner.team/stops/6862"], ["https://mivb.openplanner.team/stops/1197", "https://mivb.openplanner.team/stops/4053G"], ["https://mivb.openplanner.team/stops/2145", "https://mivb.openplanner.team/stops/5418"], ["https://mivb.openplanner.team/stops/5815F", "https://mivb.openplanner.team/stops/5854"], ["https://mivb.openplanner.team/stops/4205", "https://mivb.openplanner.team/stops/4207"], ["https://mivb.openplanner.team/stops/7820353", "https://mivb.openplanner.team/stops/9051F"], ["https://mivb.openplanner.team/stops/0539", "https://mivb.openplanner.team/stops/0430748"], ["https://mivb.openplanner.team/stops/2122", "https://mivb.openplanner.team/stops/6408"], ["https://mivb.openplanner.team/stops/5711F", "https://mivb.openplanner.team/stops/5765F"], ["https://mivb.openplanner.team/stops/4212B", "https://mivb.openplanner.team/stops/7780157"], ["https://mivb.openplanner.team/stops/4127", "https://mivb.openplanner.team/stops/6171"], ["https://mivb.openplanner.team/stops/6062", "https://mivb.openplanner.team/stops/6359"], ["https://mivb.openplanner.team/stops/2900", "https://mivb.openplanner.team/stops/7271"], ["https://mivb.openplanner.team/stops/5968", "https://mivb.openplanner.team/stops/9776"], ["https://mivb.openplanner.team/stops/3164", "https://mivb.openplanner.team/stops/3414"], ["https://mivb.openplanner.team/stops/2279", "https://mivb.openplanner.team/stops/8012"], ["https://mivb.openplanner.team/stops/0070621", "https://mivb.openplanner.team/stops/8201"], ["https://mivb.openplanner.team/stops/8813", "https://mivb.openplanner.team/stops/7810254"], ["https://mivb.openplanner.team/stops/0600762", "https://mivb.openplanner.team/stops/4323"], ["https://mivb.openplanner.team/stops/2927", "https://mivb.openplanner.team/stops/19"], ["https://mivb.openplanner.team/stops/3513", "https://mivb.openplanner.team/stops/3558"], ["https://mivb.openplanner.team/stops/5152", "https://mivb.openplanner.team/stops/5915"], ["https://mivb.openplanner.team/stops/2807", "https://mivb.openplanner.team/stops/6505"], ["https://mivb.openplanner.team/stops/2752", "https://mivb.openplanner.team/stops/3524"], ["https://mivb.openplanner.team/stops/2728", "https://mivb.openplanner.team/stops/5271F"], ["https://mivb.openplanner.team/stops/2110B", "https://mivb.openplanner.team/stops/2140"], ["https://mivb.openplanner.team/stops/1132", "https://mivb.openplanner.team/stops/1729"], ["https://mivb.openplanner.team/stops/4253", "https://mivb.openplanner.team/stops/13"], ["https://mivb.openplanner.team/stops/6808G", "https://mivb.openplanner.team/stops/8361"], ["https://mivb.openplanner.team/stops/4217", "https://mivb.openplanner.team/stops/4267"], ["https://mivb.openplanner.team/stops/0650165", "https://mivb.openplanner.team/stops/2470"], ["https://mivb.openplanner.team/stops/2267", "https://mivb.openplanner.team/stops/8442"], ["https://mivb.openplanner.team/stops/2725", "https://mivb.openplanner.team/stops/37"], ["https://mivb.openplanner.team/stops/3253", "https://mivb.openplanner.team/stops/8382"], ["https://mivb.openplanner.team/stops/1110", "https://mivb.openplanner.team/stops/1939"], ["https://mivb.openplanner.team/stops/0230134", "https://mivb.openplanner.team/stops/0230334"], ["https://mivb.openplanner.team/stops/1527", "https://mivb.openplanner.team/stops/2028"], ["https://mivb.openplanner.team/stops/6078", "https://mivb.openplanner.team/stops/6109"], ["https://mivb.openplanner.team/stops/2244F", "https://mivb.openplanner.team/stops/3762"], ["https://mivb.openplanner.team/stops/1465", "https://mivb.openplanner.team/stops/0010415"], ["https://mivb.openplanner.team/stops/1317", "https://mivb.openplanner.team/stops/1418B"], ["https://mivb.openplanner.team/stops/2294B", "https://mivb.openplanner.team/stops/2895"], ["https://mivb.openplanner.team/stops/2359", "https://mivb.openplanner.team/stops/3002"], ["https://mivb.openplanner.team/stops/0160130", "https://mivb.openplanner.team/stops/8162"], ["https://mivb.openplanner.team/stops/1328", "https://mivb.openplanner.team/stops/1686F"], ["https://mivb.openplanner.team/stops/5727F", "https://mivb.openplanner.team/stops/5731F"], ["https://mivb.openplanner.team/stops/1527", "https://mivb.openplanner.team/stops/1552"], ["https://mivb.openplanner.team/stops/4315", "https://mivb.openplanner.team/stops/5423"], ["https://mivb.openplanner.team/stops/1601", "https://mivb.openplanner.team/stops/5533"], ["https://mivb.openplanner.team/stops/1598", "https://mivb.openplanner.team/stops/4299"], ["https://mivb.openplanner.team/stops/0702", "https://mivb.openplanner.team/stops/8351"], ["https://mivb.openplanner.team/stops/2962", "https://mivb.openplanner.team/stops/5475"], ["https://mivb.openplanner.team/stops/0901", "https://mivb.openplanner.team/stops/0906"], ["https://mivb.openplanner.team/stops/8833", "https://mivb.openplanner.team/stops/8834"], ["https://mivb.openplanner.team/stops/3122", "https://mivb.openplanner.team/stops/3572F"], ["https://mivb.openplanner.team/stops/1514", "https://mivb.openplanner.team/stops/6056"], ["https://mivb.openplanner.team/stops/0650265", "https://mivb.openplanner.team/stops/5018F"], ["https://mivb.openplanner.team/stops/5018F", "https://mivb.openplanner.team/stops/6430F"], ["https://mivb.openplanner.team/stops/1153", "https://mivb.openplanner.team/stops/0090123"], ["https://mivb.openplanner.team/stops/1625", "https://mivb.openplanner.team/stops/1660B"], ["https://mivb.openplanner.team/stops/1841", "https://mivb.openplanner.team/stops/5555"], ["https://mivb.openplanner.team/stops/9754B", "https://mivb.openplanner.team/stops/9787"], ["https://mivb.openplanner.team/stops/1009", "https://mivb.openplanner.team/stops/1065"], ["https://mivb.openplanner.team/stops/8651", "https://mivb.openplanner.team/stops/7650210"], ["https://mivb.openplanner.team/stops/1861", "https://mivb.openplanner.team/stops/5502"], ["https://mivb.openplanner.team/stops/6312", "https://mivb.openplanner.team/stops/0310244"], ["https://mivb.openplanner.team/stops/8221", "https://mivb.openplanner.team/stops/33"], ["https://mivb.openplanner.team/stops/6171", "https://mivb.openplanner.team/stops/7790556"], ["https://mivb.openplanner.team/stops/2079", "https://mivb.openplanner.team/stops/4299"], ["https://mivb.openplanner.team/stops/2539", "https://mivb.openplanner.team/stops/2540"], ["https://mivb.openplanner.team/stops/1271B", "https://mivb.openplanner.team/stops/1476"], ["https://mivb.openplanner.team/stops/1255", "https://mivb.openplanner.team/stops/3760"], ["https://mivb.openplanner.team/stops/4003G", "https://mivb.openplanner.team/stops/4101"], ["https://mivb.openplanner.team/stops/3207", "https://mivb.openplanner.team/stops/3276"], ["https://mivb.openplanner.team/stops/3628", "https://mivb.openplanner.team/stops/0320443"], ["https://mivb.openplanner.team/stops/9169", "https://mivb.openplanner.team/stops/9600B"], ["https://mivb.openplanner.team/stops/5058", "https://mivb.openplanner.team/stops/5058F"], ["https://mivb.openplanner.team/stops/2715", "https://mivb.openplanner.team/stops/5258"], ["https://mivb.openplanner.team/stops/4110", "https://mivb.openplanner.team/stops/5166"], ["https://mivb.openplanner.team/stops/2910", "https://mivb.openplanner.team/stops/5872"], ["https://mivb.openplanner.team/stops/1871B", "https://mivb.openplanner.team/stops/6009"], ["https://mivb.openplanner.team/stops/2313", "https://mivb.openplanner.team/stops/2822"], ["https://mivb.openplanner.team/stops/0010115", "https://mivb.openplanner.team/stops/0010415"], ["https://mivb.openplanner.team/stops/1002", "https://mivb.openplanner.team/stops/8302"], ["https://mivb.openplanner.team/stops/1487", "https://mivb.openplanner.team/stops/3752"], ["https://mivb.openplanner.team/stops/1270B", "https://mivb.openplanner.team/stops/1418B"], ["https://mivb.openplanner.team/stops/4308", "https://mivb.openplanner.team/stops/4309"], ["https://mivb.openplanner.team/stops/6464", "https://mivb.openplanner.team/stops/0050319"], ["https://mivb.openplanner.team/stops/1546", "https://mivb.openplanner.team/stops/6476"], ["https://mivb.openplanner.team/stops/0350640", "https://mivb.openplanner.team/stops/9979B"], ["https://mivb.openplanner.team/stops/4311", "https://mivb.openplanner.team/stops/4357"], ["https://mivb.openplanner.team/stops/2112", "https://mivb.openplanner.team/stops/2157"], ["https://mivb.openplanner.team/stops/1757", "https://mivb.openplanner.team/stops/3550"], ["https://mivb.openplanner.team/stops/5102", "https://mivb.openplanner.team/stops/5174"], ["https://mivb.openplanner.team/stops/1534", "https://mivb.openplanner.team/stops/3902"], ["https://mivb.openplanner.team/stops/3558", "https://mivb.openplanner.team/stops/5264F"], ["https://mivb.openplanner.team/stops/1729", "https://mivb.openplanner.team/stops/1776"], ["https://mivb.openplanner.team/stops/2939B", "https://mivb.openplanner.team/stops/2952B"], ["https://mivb.openplanner.team/stops/1258G", "https://mivb.openplanner.team/stops/5723B"], ["https://mivb.openplanner.team/stops/1328", "https://mivb.openplanner.team/stops/9825F"], ["https://mivb.openplanner.team/stops/4314", "https://mivb.openplanner.team/stops/5452"], ["https://mivb.openplanner.team/stops/4126F", "https://mivb.openplanner.team/stops/4129"], ["https://mivb.openplanner.team/stops/0040618", "https://mivb.openplanner.team/stops/8401"], ["https://mivb.openplanner.team/stops/8411", "https://mivb.openplanner.team/stops/0410446"], ["https://mivb.openplanner.team/stops/5220F", "https://mivb.openplanner.team/stops/5222F"], ["https://mivb.openplanner.team/stops/1553", "https://mivb.openplanner.team/stops/1554"], ["https://mivb.openplanner.team/stops/1258G", "https://mivb.openplanner.team/stops/5722"], ["https://mivb.openplanner.team/stops/1114B", "https://mivb.openplanner.team/stops/8471"], ["https://mivb.openplanner.team/stops/2217F", "https://mivb.openplanner.team/stops/7720103"], ["https://mivb.openplanner.team/stops/1738", "https://mivb.openplanner.team/stops/5057"], ["https://mivb.openplanner.team/stops/1370", "https://mivb.openplanner.team/stops/6862"], ["https://mivb.openplanner.team/stops/3112", "https://mivb.openplanner.team/stops/3309F"], ["https://mivb.openplanner.team/stops/2099", "https://mivb.openplanner.team/stops/2161"], ["https://mivb.openplanner.team/stops/6201F", "https://mivb.openplanner.team/stops/6413F"], ["https://mivb.openplanner.team/stops/2329", "https://mivb.openplanner.team/stops/9635"], ["https://mivb.openplanner.team/stops/2181", "https://mivb.openplanner.team/stops/2264"], ["https://mivb.openplanner.team/stops/6409F", "https://mivb.openplanner.team/stops/6410"], ["https://mivb.openplanner.team/stops/2023", "https://mivb.openplanner.team/stops/2460"], ["https://mivb.openplanner.team/stops/1095", "https://mivb.openplanner.team/stops/1209"], ["https://mivb.openplanner.team/stops/1995", "https://mivb.openplanner.team/stops/5917F"], ["https://mivb.openplanner.team/stops/1056", "https://mivb.openplanner.team/stops/4253"], ["https://mivb.openplanner.team/stops/4006G", "https://mivb.openplanner.team/stops/4054G"], ["https://mivb.openplanner.team/stops/9801", "https://mivb.openplanner.team/stops/9825F"], ["https://mivb.openplanner.team/stops/1154", "https://mivb.openplanner.team/stops/1424"], ["https://mivb.openplanner.team/stops/3328", "https://mivb.openplanner.team/stops/3334F"], ["https://mivb.openplanner.team/stops/5816G", "https://mivb.openplanner.team/stops/5853G"], ["https://mivb.openplanner.team/stops/1578", "https://mivb.openplanner.team/stops/3910"], ["https://mivb.openplanner.team/stops/6484B", "https://mivb.openplanner.team/stops/7690106"], ["https://mivb.openplanner.team/stops/2937B", "https://mivb.openplanner.team/stops/2954B"], ["https://mivb.openplanner.team/stops/1456", "https://mivb.openplanner.team/stops/0110325"], ["https://mivb.openplanner.team/stops/3347", "https://mivb.openplanner.team/stops/6445"], ["https://mivb.openplanner.team/stops/1909", "https://mivb.openplanner.team/stops/1981"], ["https://mivb.openplanner.team/stops/5815", "https://mivb.openplanner.team/stops/5815F"], ["https://mivb.openplanner.team/stops/1710", "https://mivb.openplanner.team/stops/4063"], ["https://mivb.openplanner.team/stops/3467B", "https://mivb.openplanner.team/stops/3763"], ["https://mivb.openplanner.team/stops/2960F", "https://mivb.openplanner.team/stops/2972"], ["https://mivb.openplanner.team/stops/4007G", "https://mivb.openplanner.team/stops/6004"], ["https://mivb.openplanner.team/stops/2018", "https://mivb.openplanner.team/stops/5456"], ["https://mivb.openplanner.team/stops/1912", "https://mivb.openplanner.team/stops/5408"], ["https://mivb.openplanner.team/stops/4506", "https://mivb.openplanner.team/stops/5920H"], ["https://mivb.openplanner.team/stops/8252", "https://mivb.openplanner.team/stops/0250436"], ["https://mivb.openplanner.team/stops/2014", "https://mivb.openplanner.team/stops/2026"], ["https://mivb.openplanner.team/stops/1500", "https://mivb.openplanner.team/stops/5272F"], ["https://mivb.openplanner.team/stops/6302", "https://mivb.openplanner.team/stops/6365"], ["https://mivb.openplanner.team/stops/2146", "https://mivb.openplanner.team/stops/2157"], ["https://mivb.openplanner.team/stops/5418", "https://mivb.openplanner.team/stops/5456"], ["https://mivb.openplanner.team/stops/3524", "https://mivb.openplanner.team/stops/3526"], ["https://mivb.openplanner.team/stops/4955F", "https://mivb.openplanner.team/stops/7800455"], ["https://mivb.openplanner.team/stops/5111B", "https://mivb.openplanner.team/stops/5158"], ["https://mivb.openplanner.team/stops/9607", "https://mivb.openplanner.team/stops/9756"], ["https://mivb.openplanner.team/stops/5038", "https://mivb.openplanner.team/stops/5039"], ["https://mivb.openplanner.team/stops/1766", "https://mivb.openplanner.team/stops/1782"], ["https://mivb.openplanner.team/stops/5013B", "https://mivb.openplanner.team/stops/0460250"], ["https://mivb.openplanner.team/stops/4340", "https://mivb.openplanner.team/stops/5430"], ["https://mivb.openplanner.team/stops/0610363", "https://mivb.openplanner.team/stops/0610263"], ["https://mivb.openplanner.team/stops/1713", "https://mivb.openplanner.team/stops/1870"], ["https://mivb.openplanner.team/stops/1972", "https://mivb.openplanner.team/stops/5254"], ["https://mivb.openplanner.team/stops/0521", "https://mivb.openplanner.team/stops/0520161"], ["https://mivb.openplanner.team/stops/2226", "https://mivb.openplanner.team/stops/7690206"], ["https://mivb.openplanner.team/stops/5920C", "https://mivb.openplanner.team/stops/5920H"], ["https://mivb.openplanner.team/stops/2362B", "https://mivb.openplanner.team/stops/2364"], ["https://mivb.openplanner.team/stops/8461", "https://mivb.openplanner.team/stops/8462"], ["https://mivb.openplanner.team/stops/0080422", "https://mivb.openplanner.team/stops/9996"], ["https://mivb.openplanner.team/stops/1458", "https://mivb.openplanner.team/stops/8102"], ["https://mivb.openplanner.team/stops/6202", "https://mivb.openplanner.team/stops/6418"], ["https://mivb.openplanner.team/stops/1450", "https://mivb.openplanner.team/stops/5223F"], ["https://mivb.openplanner.team/stops/1105", "https://mivb.openplanner.team/stops/4601"], ["https://mivb.openplanner.team/stops/1095", "https://mivb.openplanner.team/stops/4655"], ["https://mivb.openplanner.team/stops/0601262", "https://mivb.openplanner.team/stops/0606"], ["https://mivb.openplanner.team/stops/5026", "https://mivb.openplanner.team/stops/5854"], ["https://mivb.openplanner.team/stops/1942", "https://mivb.openplanner.team/stops/2708G"], ["https://mivb.openplanner.team/stops/6173", "https://mivb.openplanner.team/stops/7800255"], ["https://mivb.openplanner.team/stops/2564", "https://mivb.openplanner.team/stops/4601"], ["https://mivb.openplanner.team/stops/6103", "https://mivb.openplanner.team/stops/6103F"], ["https://mivb.openplanner.team/stops/5811", "https://mivb.openplanner.team/stops/5857"], ["https://mivb.openplanner.team/stops/1514", "https://mivb.openplanner.team/stops/6214"], ["https://mivb.openplanner.team/stops/1539", "https://mivb.openplanner.team/stops/3920"], ["https://mivb.openplanner.team/stops/1370", "https://mivb.openplanner.team/stops/7621"], ["https://mivb.openplanner.team/stops/4349", "https://mivb.openplanner.team/stops/5422"], ["https://mivb.openplanner.team/stops/1903", "https://mivb.openplanner.team/stops/6119F"], ["https://mivb.openplanner.team/stops/1812", "https://mivb.openplanner.team/stops/1863"], ["https://mivb.openplanner.team/stops/1131B", "https://mivb.openplanner.team/stops/1769"], ["https://mivb.openplanner.team/stops/1322", "https://mivb.openplanner.team/stops/9986F"], ["https://mivb.openplanner.team/stops/1519", "https://mivb.openplanner.team/stops/1560"], ["https://mivb.openplanner.team/stops/3410", "https://mivb.openplanner.team/stops/5356"], ["https://mivb.openplanner.team/stops/1815", "https://mivb.openplanner.team/stops/5282F"], ["https://mivb.openplanner.team/stops/2333F", "https://mivb.openplanner.team/stops/2334F"], ["https://mivb.openplanner.team/stops/2351", "https://mivb.openplanner.team/stops/3481"], ["https://mivb.openplanner.team/stops/6055", "https://mivb.openplanner.team/stops/6056"], ["https://mivb.openplanner.team/stops/1531", "https://mivb.openplanner.team/stops/1551"], ["https://mivb.openplanner.team/stops/3236", "https://mivb.openplanner.team/stops/4658"], ["https://mivb.openplanner.team/stops/6434F", "https://mivb.openplanner.team/stops/6435"], ["https://mivb.openplanner.team/stops/1386", "https://mivb.openplanner.team/stops/0120526"], ["https://mivb.openplanner.team/stops/3109", "https://mivb.openplanner.team/stops/3167"], ["https://mivb.openplanner.team/stops/7810154", "https://mivb.openplanner.team/stops/7810254"], ["https://mivb.openplanner.team/stops/2990", "https://mivb.openplanner.team/stops/3454"], ["https://mivb.openplanner.team/stops/1140", "https://mivb.openplanner.team/stops/1152"], ["https://mivb.openplanner.team/stops/6604F", "https://mivb.openplanner.team/stops/0270514"], ["https://mivb.openplanner.team/stops/4958F", "https://mivb.openplanner.team/stops/4998"], ["https://mivb.openplanner.team/stops/4069", "https://mivb.openplanner.team/stops/4206"], ["https://mivb.openplanner.team/stops/4123", "https://mivb.openplanner.team/stops/4130F"], ["https://mivb.openplanner.team/stops/2504", "https://mivb.openplanner.team/stops/2575"], ["https://mivb.openplanner.team/stops/1252", "https://mivb.openplanner.team/stops/1302"], ["https://mivb.openplanner.team/stops/2562B", "https://mivb.openplanner.team/stops/7700205"], ["https://mivb.openplanner.team/stops/1258B", "https://mivb.openplanner.team/stops/5921B"], ["https://mivb.openplanner.team/stops/8041", "https://mivb.openplanner.team/stops/8042"], ["https://mivb.openplanner.team/stops/2002", "https://mivb.openplanner.team/stops/5053B"], ["https://mivb.openplanner.team/stops/2718", "https://mivb.openplanner.team/stops/2757C"], ["https://mivb.openplanner.team/stops/2671F", "https://mivb.openplanner.team/stops/0350240"], ["https://mivb.openplanner.team/stops/1988", "https://mivb.openplanner.team/stops/8432"], ["https://mivb.openplanner.team/stops/2573B", "https://mivb.openplanner.team/stops/6865F"], ["https://mivb.openplanner.team/stops/5803G", "https://mivb.openplanner.team/stops/5866"], ["https://mivb.openplanner.team/stops/2209", "https://mivb.openplanner.team/stops/0430848"], ["https://mivb.openplanner.team/stops/8322", "https://mivb.openplanner.team/stops/0370543"], ["https://mivb.openplanner.team/stops/1202", "https://mivb.openplanner.team/stops/7750260"], ["https://mivb.openplanner.team/stops/1352", "https://mivb.openplanner.team/stops/3517"], ["https://mivb.openplanner.team/stops/8441", "https://mivb.openplanner.team/stops/0440249"], ["https://mivb.openplanner.team/stops/6604F", "https://mivb.openplanner.team/stops/6654F"], ["https://mivb.openplanner.team/stops/1148C", "https://mivb.openplanner.team/stops/1474B"], ["https://mivb.openplanner.team/stops/3281", "https://mivb.openplanner.team/stops/6005"], ["https://mivb.openplanner.team/stops/5858", "https://mivb.openplanner.team/stops/6253"], ["https://mivb.openplanner.team/stops/1205", "https://mivb.openplanner.team/stops/1206"], ["https://mivb.openplanner.team/stops/2727", "https://mivb.openplanner.team/stops/3530"], ["https://mivb.openplanner.team/stops/2871", "https://mivb.openplanner.team/stops/6869G"], ["https://mivb.openplanner.team/stops/1251", "https://mivb.openplanner.team/stops/2131"], ["https://mivb.openplanner.team/stops/3008", "https://mivb.openplanner.team/stops/5320"], ["https://mivb.openplanner.team/stops/1775", "https://mivb.openplanner.team/stops/6804F"], ["https://mivb.openplanner.team/stops/0511", "https://mivb.openplanner.team/stops/0431048"], ["https://mivb.openplanner.team/stops/0100124", "https://mivb.openplanner.team/stops/0100524"], ["https://mivb.openplanner.team/stops/0440149", "https://mivb.openplanner.team/stops/0440349"], ["https://mivb.openplanner.team/stops/5855", "https://mivb.openplanner.team/stops/5855F"], ["https://mivb.openplanner.team/stops/1477B", "https://mivb.openplanner.team/stops/9"], ["https://mivb.openplanner.team/stops/1881", "https://mivb.openplanner.team/stops/1884"], ["https://mivb.openplanner.team/stops/1024", "https://mivb.openplanner.team/stops/1051"], ["https://mivb.openplanner.team/stops/0631", "https://mivb.openplanner.team/stops/6862"], ["https://mivb.openplanner.team/stops/1318", "https://mivb.openplanner.team/stops/1425"], ["https://mivb.openplanner.team/stops/5515", "https://mivb.openplanner.team/stops/5525"], ["https://mivb.openplanner.team/stops/3503", "https://mivb.openplanner.team/stops/6354"], ["https://mivb.openplanner.team/stops/1152", "https://mivb.openplanner.team/stops/9983"], ["https://mivb.openplanner.team/stops/2540", "https://mivb.openplanner.team/stops/0350240"], ["https://mivb.openplanner.team/stops/2026", "https://mivb.openplanner.team/stops/4314"], ["https://mivb.openplanner.team/stops/0600462", "https://mivb.openplanner.team/stops/5286"], ["https://mivb.openplanner.team/stops/1286", "https://mivb.openplanner.team/stops/8471"], ["https://mivb.openplanner.team/stops/4348", "https://mivb.openplanner.team/stops/5453"], ["https://mivb.openplanner.team/stops/5922", "https://mivb.openplanner.team/stops/5923"], ["https://mivb.openplanner.team/stops/2285G", "https://mivb.openplanner.team/stops/2286G"], ["https://mivb.openplanner.team/stops/2510", "https://mivb.openplanner.team/stops/2569"], ["https://mivb.openplanner.team/stops/0722", "https://mivb.openplanner.team/stops/6077F"], ["https://mivb.openplanner.team/stops/1921", "https://mivb.openplanner.team/stops/4856B"], ["https://mivb.openplanner.team/stops/8021", "https://mivb.openplanner.team/stops/8022"], ["https://mivb.openplanner.team/stops/1929", "https://mivb.openplanner.team/stops/2701"], ["https://mivb.openplanner.team/stops/0529", "https://mivb.openplanner.team/stops/0430748"], ["https://mivb.openplanner.team/stops/2215", "https://mivb.openplanner.team/stops/8361"], ["https://mivb.openplanner.team/stops/3360F", "https://mivb.openplanner.team/stops/6210"], ["https://mivb.openplanner.team/stops/2080", "https://mivb.openplanner.team/stops/4310"], ["https://mivb.openplanner.team/stops/3123", "https://mivb.openplanner.team/stops/6158"], ["https://mivb.openplanner.team/stops/3466", "https://mivb.openplanner.team/stops/4556"], ["https://mivb.openplanner.team/stops/2009", "https://mivb.openplanner.team/stops/5282F"], ["https://mivb.openplanner.team/stops/1245", "https://mivb.openplanner.team/stops/6648"], ["https://mivb.openplanner.team/stops/1135", "https://mivb.openplanner.team/stops/6008"], ["https://mivb.openplanner.team/stops/2303", "https://mivb.openplanner.team/stops/3320B"], ["https://mivb.openplanner.team/stops/6425F", "https://mivb.openplanner.team/stops/6430F"], ["https://mivb.openplanner.team/stops/1208", "https://mivb.openplanner.team/stops/2561"], ["https://mivb.openplanner.team/stops/2028", "https://mivb.openplanner.team/stops/8131"], ["https://mivb.openplanner.team/stops/2717", "https://mivb.openplanner.team/stops/2760B"], ["https://mivb.openplanner.team/stops/1221", "https://mivb.openplanner.team/stops/5859"], ["https://mivb.openplanner.team/stops/1716", "https://mivb.openplanner.team/stops/32"], ["https://mivb.openplanner.team/stops/0620164", "https://mivb.openplanner.team/stops/1227"], ["https://mivb.openplanner.team/stops/2319", "https://mivb.openplanner.team/stops/3755"], ["https://mivb.openplanner.team/stops/7730102", "https://mivb.openplanner.team/stops/8733"], ["https://mivb.openplanner.team/stops/3276", "https://mivb.openplanner.team/stops/9311"], ["https://mivb.openplanner.team/stops/3911", "https://mivb.openplanner.team/stops/3952"], ["https://mivb.openplanner.team/stops/5227F", "https://mivb.openplanner.team/stops/0120426"], ["https://mivb.openplanner.team/stops/8432", "https://mivb.openplanner.team/stops/0430648"], ["https://mivb.openplanner.team/stops/5041B", "https://mivb.openplanner.team/stops/5042"], ["https://mivb.openplanner.team/stops/8351", "https://mivb.openplanner.team/stops/40"], ["https://mivb.openplanner.team/stops/0470151", "https://mivb.openplanner.team/stops/8763"], ["https://mivb.openplanner.team/stops/1125", "https://mivb.openplanner.team/stops/1169"], ["https://mivb.openplanner.team/stops/0100324", "https://mivb.openplanner.team/stops/0100524"], ["https://mivb.openplanner.team/stops/1408", "https://mivb.openplanner.team/stops/8102"], ["https://mivb.openplanner.team/stops/5508", "https://mivb.openplanner.team/stops/5554"], ["https://mivb.openplanner.team/stops/1095", "https://mivb.openplanner.team/stops/1105"], ["https://mivb.openplanner.team/stops/6800F", "https://mivb.openplanner.team/stops/6869G"], ["https://mivb.openplanner.team/stops/6308F", "https://mivb.openplanner.team/stops/6357F"], ["https://mivb.openplanner.team/stops/1124", "https://mivb.openplanner.team/stops/17"], ["https://mivb.openplanner.team/stops/1475", "https://mivb.openplanner.team/stops/3854B"], ["https://mivb.openplanner.team/stops/2898", "https://mivb.openplanner.team/stops/7762"], ["https://mivb.openplanner.team/stops/1535", "https://mivb.openplanner.team/stops/3272"], ["https://mivb.openplanner.team/stops/1818", "https://mivb.openplanner.team/stops/1856"], ["https://mivb.openplanner.team/stops/2248", "https://mivb.openplanner.team/stops/5308F"], ["https://mivb.openplanner.team/stops/2215", "https://mivb.openplanner.team/stops/4595"], ["https://mivb.openplanner.team/stops/4957", "https://mivb.openplanner.team/stops/7800355"], ["https://mivb.openplanner.team/stops/1064", "https://mivb.openplanner.team/stops/1108"], ["https://mivb.openplanner.team/stops/6124", "https://mivb.openplanner.team/stops/6174F"], ["https://mivb.openplanner.team/stops/1024", "https://mivb.openplanner.team/stops/2209"], ["https://mivb.openplanner.team/stops/5298F", "https://mivb.openplanner.team/stops/5299"], ["https://mivb.openplanner.team/stops/9780", "https://mivb.openplanner.team/stops/9786"], ["https://mivb.openplanner.team/stops/4209", "https://mivb.openplanner.team/stops/7810154"], ["https://mivb.openplanner.team/stops/1476", "https://mivb.openplanner.team/stops/8062"], ["https://mivb.openplanner.team/stops/4268", "https://mivb.openplanner.team/stops/8833"], ["https://mivb.openplanner.team/stops/5859", "https://mivb.openplanner.team/stops/6253"], ["https://mivb.openplanner.team/stops/8102", "https://mivb.openplanner.team/stops/0100324"], ["https://mivb.openplanner.team/stops/1236F", "https://mivb.openplanner.team/stops/4066F"], ["https://mivb.openplanner.team/stops/6603", "https://mivb.openplanner.team/stops/6655"], ["https://mivb.openplanner.team/stops/9051F", "https://mivb.openplanner.team/stops/9056F"], ["https://mivb.openplanner.team/stops/1204", "https://mivb.openplanner.team/stops/1206"], ["https://mivb.openplanner.team/stops/2857B", "https://mivb.openplanner.team/stops/5773"], ["https://mivb.openplanner.team/stops/1097", "https://mivb.openplanner.team/stops/4053G"], ["https://mivb.openplanner.team/stops/5068F", "https://mivb.openplanner.team/stops/5470"], ["https://mivb.openplanner.team/stops/2145", "https://mivb.openplanner.team/stops/5419"], ["https://mivb.openplanner.team/stops/2313", "https://mivb.openplanner.team/stops/2314"], ["https://mivb.openplanner.team/stops/2514", "https://mivb.openplanner.team/stops/2565"], ["https://mivb.openplanner.team/stops/1172", "https://mivb.openplanner.team/stops/1184"], ["https://mivb.openplanner.team/stops/0820170", "https://mivb.openplanner.team/stops/4550"], ["https://mivb.openplanner.team/stops/5296B", "https://mivb.openplanner.team/stops/7"], ["https://mivb.openplanner.team/stops/1515", "https://mivb.openplanner.team/stops/2241G"], ["https://mivb.openplanner.team/stops/4014", "https://mivb.openplanner.team/stops/7750160"], ["https://mivb.openplanner.team/stops/3008", "https://mivb.openplanner.team/stops/5958C"], ["https://mivb.openplanner.team/stops/1464", "https://mivb.openplanner.team/stops/3218"], ["https://mivb.openplanner.team/stops/4221", "https://mivb.openplanner.team/stops/4223"], ["https://mivb.openplanner.team/stops/7790356", "https://mivb.openplanner.team/stops/7790456"], ["https://mivb.openplanner.team/stops/5168", "https://mivb.openplanner.team/stops/5168F"], ["https://mivb.openplanner.team/stops/1302", "https://mivb.openplanner.team/stops/0160130"], ["https://mivb.openplanner.team/stops/1718B", "https://mivb.openplanner.team/stops/1811"], ["https://mivb.openplanner.team/stops/3562", "https://mivb.openplanner.team/stops/5466"], ["https://mivb.openplanner.team/stops/0707", "https://mivb.openplanner.team/stops/1220"], ["https://mivb.openplanner.team/stops/6178", "https://mivb.openplanner.team/stops/6179"], ["https://mivb.openplanner.team/stops/4958F", "https://mivb.openplanner.team/stops/55"], ["https://mivb.openplanner.team/stops/2326", "https://mivb.openplanner.team/stops/6168"], ["https://mivb.openplanner.team/stops/6435", "https://mivb.openplanner.team/stops/6436"], ["https://mivb.openplanner.team/stops/3240", "https://mivb.openplanner.team/stops/3766"], ["https://mivb.openplanner.team/stops/2710G", "https://mivb.openplanner.team/stops/4076"], ["https://mivb.openplanner.team/stops/1167", "https://mivb.openplanner.team/stops/3629"], ["https://mivb.openplanner.team/stops/1734", "https://mivb.openplanner.team/stops/1842"], ["https://mivb.openplanner.team/stops/4217", "https://mivb.openplanner.team/stops/4266"], ["https://mivb.openplanner.team/stops/4297", "https://mivb.openplanner.team/stops/4456"], ["https://mivb.openplanner.team/stops/1775", "https://mivb.openplanner.team/stops/2505"], ["https://mivb.openplanner.team/stops/0600262", "https://mivb.openplanner.team/stops/0601262"], ["https://mivb.openplanner.team/stops/2122", "https://mivb.openplanner.team/stops/5020"], ["https://mivb.openplanner.team/stops/0230134", "https://mivb.openplanner.team/stops/0230434"], ["https://mivb.openplanner.team/stops/2659", "https://mivb.openplanner.team/stops/9686"], ["https://mivb.openplanner.team/stops/1720B", "https://mivb.openplanner.team/stops/0250436"], ["https://mivb.openplanner.team/stops/2317", "https://mivb.openplanner.team/stops/5905"], ["https://mivb.openplanner.team/stops/3125", "https://mivb.openplanner.team/stops/3510"], ["https://mivb.openplanner.team/stops/1150", "https://mivb.openplanner.team/stops/1408"], ["https://mivb.openplanner.team/stops/1522", "https://mivb.openplanner.team/stops/8112"], ["https://mivb.openplanner.team/stops/1454", "https://mivb.openplanner.team/stops/5228F"], ["https://mivb.openplanner.team/stops/1229", "https://mivb.openplanner.team/stops/5151"], ["https://mivb.openplanner.team/stops/1779", "https://mivb.openplanner.team/stops/5311"], ["https://mivb.openplanner.team/stops/2294B", "https://mivb.openplanner.team/stops/3130"], ["https://mivb.openplanner.team/stops/2364", "https://mivb.openplanner.team/stops/3059"], ["https://mivb.openplanner.team/stops/1133", "https://mivb.openplanner.team/stops/2927"], ["https://mivb.openplanner.team/stops/5502", "https://mivb.openplanner.team/stops/5561F"], ["https://mivb.openplanner.team/stops/2042", "https://mivb.openplanner.team/stops/2084"], ["https://mivb.openplanner.team/stops/5029", "https://mivb.openplanner.team/stops/6956B"], ["https://mivb.openplanner.team/stops/1135", "https://mivb.openplanner.team/stops/6153"], ["https://mivb.openplanner.team/stops/1538B", "https://mivb.openplanner.team/stops/3461"], ["https://mivb.openplanner.team/stops/3063", "https://mivb.openplanner.team/stops/5908"], ["https://mivb.openplanner.team/stops/1375", "https://mivb.openplanner.team/stops/5522"], ["https://mivb.openplanner.team/stops/2660", "https://mivb.openplanner.team/stops/9683"], ["https://mivb.openplanner.team/stops/2050", "https://mivb.openplanner.team/stops/2086"], ["https://mivb.openplanner.team/stops/2218F", "https://mivb.openplanner.team/stops/7720203"], ["https://mivb.openplanner.team/stops/8651", "https://mivb.openplanner.team/stops/8652"], ["https://mivb.openplanner.team/stops/1250", "https://mivb.openplanner.team/stops/1970"], ["https://mivb.openplanner.team/stops/2319", "https://mivb.openplanner.team/stops/6792F"], ["https://mivb.openplanner.team/stops/4253", "https://mivb.openplanner.team/stops/5071"], ["https://mivb.openplanner.team/stops/2970", "https://mivb.openplanner.team/stops/6464"], ["https://mivb.openplanner.team/stops/5271F", "https://mivb.openplanner.team/stops/5556"], ["https://mivb.openplanner.team/stops/2539", "https://mivb.openplanner.team/stops/2539F"], ["https://mivb.openplanner.team/stops/1569B", "https://mivb.openplanner.team/stops/3118"], ["https://mivb.openplanner.team/stops/5426", "https://mivb.openplanner.team/stops/0260237"], ["https://mivb.openplanner.team/stops/1528", "https://mivb.openplanner.team/stops/3334F"], ["https://mivb.openplanner.team/stops/5058F", "https://mivb.openplanner.team/stops/5855"], ["https://mivb.openplanner.team/stops/0431048", "https://mivb.openplanner.team/stops/0431148"], ["https://mivb.openplanner.team/stops/3228", "https://mivb.openplanner.team/stops/3228F"], ["https://mivb.openplanner.team/stops/6355", "https://mivb.openplanner.team/stops/6355F"], ["https://mivb.openplanner.team/stops/2500", "https://mivb.openplanner.team/stops/3211"], ["https://mivb.openplanner.team/stops/3628", "https://mivb.openplanner.team/stops/0320343"], ["https://mivb.openplanner.team/stops/1668", "https://mivb.openplanner.team/stops/1835"], ["https://mivb.openplanner.team/stops/5502", "https://mivb.openplanner.team/stops/0090323"], ["https://mivb.openplanner.team/stops/1551", "https://mivb.openplanner.team/stops/2028"], ["https://mivb.openplanner.team/stops/2226", "https://mivb.openplanner.team/stops/3812"], ["https://mivb.openplanner.team/stops/2931", "https://mivb.openplanner.team/stops/2960"], ["https://mivb.openplanner.team/stops/1975", "https://mivb.openplanner.team/stops/5256F"], ["https://mivb.openplanner.team/stops/1148C", "https://mivb.openplanner.team/stops/1548B"], ["https://mivb.openplanner.team/stops/2203", "https://mivb.openplanner.team/stops/2326"], ["https://mivb.openplanner.team/stops/1381", "https://mivb.openplanner.team/stops/1387"], ["https://mivb.openplanner.team/stops/3259B", "https://mivb.openplanner.team/stops/6650G"], ["https://mivb.openplanner.team/stops/3766", "https://mivb.openplanner.team/stops/4558"], ["https://mivb.openplanner.team/stops/4153", "https://mivb.openplanner.team/stops/5172F"], ["https://mivb.openplanner.team/stops/4124", "https://mivb.openplanner.team/stops/8794"], ["https://mivb.openplanner.team/stops/1183", "https://mivb.openplanner.team/stops/1288"], ["https://mivb.openplanner.team/stops/1168", "https://mivb.openplanner.team/stops/3004"], ["https://mivb.openplanner.team/stops/9751", "https://mivb.openplanner.team/stops/9780"], ["https://mivb.openplanner.team/stops/2112", "https://mivb.openplanner.team/stops/2161"], ["https://mivb.openplanner.team/stops/1732", "https://mivb.openplanner.team/stops/4104"], ["https://mivb.openplanner.team/stops/3682", "https://mivb.openplanner.team/stops/3808"], ["https://mivb.openplanner.team/stops/4403", "https://mivb.openplanner.team/stops/4449"], ["https://mivb.openplanner.team/stops/5102", "https://mivb.openplanner.team/stops/5174F"], ["https://mivb.openplanner.team/stops/5724", "https://mivb.openplanner.team/stops/5824"], ["https://mivb.openplanner.team/stops/3061", "https://mivb.openplanner.team/stops/5959"], ["https://mivb.openplanner.team/stops/7800155", "https://mivb.openplanner.team/stops/55"], ["https://mivb.openplanner.team/stops/3529", "https://mivb.openplanner.team/stops/5601"], ["https://mivb.openplanner.team/stops/1810", "https://mivb.openplanner.team/stops/1811"], ["https://mivb.openplanner.team/stops/1850", "https://mivb.openplanner.team/stops/5551"], ["https://mivb.openplanner.team/stops/4288", "https://mivb.openplanner.team/stops/5453"], ["https://mivb.openplanner.team/stops/1777B", "https://mivb.openplanner.team/stops/3922"], ["https://mivb.openplanner.team/stops/2117B", "https://mivb.openplanner.team/stops/2119"], ["https://mivb.openplanner.team/stops/7670208", "https://mivb.openplanner.team/stops/8672"], ["https://mivb.openplanner.team/stops/1339", "https://mivb.openplanner.team/stops/0150129"], ["https://mivb.openplanner.team/stops/1540", "https://mivb.openplanner.team/stops/1550"], ["https://mivb.openplanner.team/stops/1748", "https://mivb.openplanner.team/stops/4159"], ["https://mivb.openplanner.team/stops/1410", "https://mivb.openplanner.team/stops/5559"], ["https://mivb.openplanner.team/stops/2532", "https://mivb.openplanner.team/stops/2561"], ["https://mivb.openplanner.team/stops/1321", "https://mivb.openplanner.team/stops/1550"], ["https://mivb.openplanner.team/stops/2285G", "https://mivb.openplanner.team/stops/8201"], ["https://mivb.openplanner.team/stops/2504", "https://mivb.openplanner.team/stops/5007F"], ["https://mivb.openplanner.team/stops/1568", "https://mivb.openplanner.team/stops/6018"], ["https://mivb.openplanner.team/stops/2940F", "https://mivb.openplanner.team/stops/7527"], ["https://mivb.openplanner.team/stops/3125", "https://mivb.openplanner.team/stops/3570"], ["https://mivb.openplanner.team/stops/1617", "https://mivb.openplanner.team/stops/5517"], ["https://mivb.openplanner.team/stops/1980", "https://mivb.openplanner.team/stops/5611"], ["https://mivb.openplanner.team/stops/2940F", "https://mivb.openplanner.team/stops/6120"], ["https://mivb.openplanner.team/stops/5107B", "https://mivb.openplanner.team/stops/5158"], ["https://mivb.openplanner.team/stops/1141", "https://mivb.openplanner.team/stops/1520"], ["https://mivb.openplanner.team/stops/0610163", "https://mivb.openplanner.team/stops/63"], ["https://mivb.openplanner.team/stops/2116B", "https://mivb.openplanner.team/stops/2156"], ["https://mivb.openplanner.team/stops/2023", "https://mivb.openplanner.team/stops/2462"], ["https://mivb.openplanner.team/stops/2241G", "https://mivb.openplanner.team/stops/2249"], ["https://mivb.openplanner.team/stops/4345", "https://mivb.openplanner.team/stops/5430"], ["https://mivb.openplanner.team/stops/1211B", "https://mivb.openplanner.team/stops/3"], ["https://mivb.openplanner.team/stops/2418", "https://mivb.openplanner.team/stops/7621"], ["https://mivb.openplanner.team/stops/3624B", "https://mivb.openplanner.team/stops/5016F"], ["https://mivb.openplanner.team/stops/9801", "https://mivb.openplanner.team/stops/9802"], ["https://mivb.openplanner.team/stops/3425", "https://mivb.openplanner.team/stops/5874F"], ["https://mivb.openplanner.team/stops/0811", "https://mivb.openplanner.team/stops/1459"], ["https://mivb.openplanner.team/stops/5517", "https://mivb.openplanner.team/stops/5523"], ["https://mivb.openplanner.team/stops/0430148", "https://mivb.openplanner.team/stops/0431048"], ["https://mivb.openplanner.team/stops/0506", "https://mivb.openplanner.team/stops/0010215"], ["https://mivb.openplanner.team/stops/5740", "https://mivb.openplanner.team/stops/7762"], ["https://mivb.openplanner.team/stops/2290B", "https://mivb.openplanner.team/stops/0220233"], ["https://mivb.openplanner.team/stops/5317G", "https://mivb.openplanner.team/stops/5350G"], ["https://mivb.openplanner.team/stops/0810369", "https://mivb.openplanner.team/stops/1518"], ["https://mivb.openplanner.team/stops/3347", "https://mivb.openplanner.team/stops/6447"], ["https://mivb.openplanner.team/stops/1283", "https://mivb.openplanner.team/stops/3132"], ["https://mivb.openplanner.team/stops/2418", "https://mivb.openplanner.team/stops/0340341"], ["https://mivb.openplanner.team/stops/1019", "https://mivb.openplanner.team/stops/4254B"], ["https://mivb.openplanner.team/stops/1629", "https://mivb.openplanner.team/stops/1631"], ["https://mivb.openplanner.team/stops/3331", "https://mivb.openplanner.team/stops/0020516"], ["https://mivb.openplanner.team/stops/1406", "https://mivb.openplanner.team/stops/6449"], ["https://mivb.openplanner.team/stops/2459", "https://mivb.openplanner.team/stops/2462"], ["https://mivb.openplanner.team/stops/6443", "https://mivb.openplanner.team/stops/0020116"], ["https://mivb.openplanner.team/stops/1721", "https://mivb.openplanner.team/stops/1744"], ["https://mivb.openplanner.team/stops/2513", "https://mivb.openplanner.team/stops/2566B"], ["https://mivb.openplanner.team/stops/2358", "https://mivb.openplanner.team/stops/3063"], ["https://mivb.openplanner.team/stops/3532", "https://mivb.openplanner.team/stops/4952"], ["https://mivb.openplanner.team/stops/1764", "https://mivb.openplanner.team/stops/6114F"], ["https://mivb.openplanner.team/stops/2900", "https://mivb.openplanner.team/stops/3175B"], ["https://mivb.openplanner.team/stops/2145", "https://mivb.openplanner.team/stops/5424"], ["https://mivb.openplanner.team/stops/1706", "https://mivb.openplanner.team/stops/1906"], ["https://mivb.openplanner.team/stops/1712", "https://mivb.openplanner.team/stops/1804"], ["https://mivb.openplanner.team/stops/1259", "https://mivb.openplanner.team/stops/2373"], ["https://mivb.openplanner.team/stops/8252", "https://mivb.openplanner.team/stops/0250536"], ["https://mivb.openplanner.team/stops/8202", "https://mivb.openplanner.team/stops/0200231"], ["https://mivb.openplanner.team/stops/3259B", "https://mivb.openplanner.team/stops/6608G"], ["https://mivb.openplanner.team/stops/0600762", "https://mivb.openplanner.team/stops/3320B"], ["https://mivb.openplanner.team/stops/2518", "https://mivb.openplanner.team/stops/6811"], ["https://mivb.openplanner.team/stops/1926B", "https://mivb.openplanner.team/stops/1985G"], ["https://mivb.openplanner.team/stops/1552", "https://mivb.openplanner.team/stops/2022"], ["https://mivb.openplanner.team/stops/9726", "https://mivb.openplanner.team/stops/9727"], ["https://mivb.openplanner.team/stops/2143B", "https://mivb.openplanner.team/stops/2146"], ["https://mivb.openplanner.team/stops/2243F", "https://mivb.openplanner.team/stops/2247"], ["https://mivb.openplanner.team/stops/1162C", "https://mivb.openplanner.team/stops/1262B"], ["https://mivb.openplanner.team/stops/2247", "https://mivb.openplanner.team/stops/2250"], ["https://mivb.openplanner.team/stops/2463", "https://mivb.openplanner.team/stops/2934"], ["https://mivb.openplanner.team/stops/2996", "https://mivb.openplanner.team/stops/3419"], ["https://mivb.openplanner.team/stops/1985B", "https://mivb.openplanner.team/stops/1985G"], ["https://mivb.openplanner.team/stops/0521", "https://mivb.openplanner.team/stops/0531"], ["https://mivb.openplanner.team/stops/2919", "https://mivb.openplanner.team/stops/6082"], ["https://mivb.openplanner.team/stops/6016", "https://mivb.openplanner.team/stops/9064"], ["https://mivb.openplanner.team/stops/9656", "https://mivb.openplanner.team/stops/9678"], ["https://mivb.openplanner.team/stops/3480", "https://mivb.openplanner.team/stops/3510"], ["https://mivb.openplanner.team/stops/1105", "https://mivb.openplanner.team/stops/4602"], ["https://mivb.openplanner.team/stops/3230", "https://mivb.openplanner.team/stops/8732"], ["https://mivb.openplanner.team/stops/1010", "https://mivb.openplanner.team/stops/1675F"], ["https://mivb.openplanner.team/stops/3003", "https://mivb.openplanner.team/stops/5908"], ["https://mivb.openplanner.team/stops/5414F", "https://mivb.openplanner.team/stops/5460F"], ["https://mivb.openplanner.team/stops/1190", "https://mivb.openplanner.team/stops/4066F"], ["https://mivb.openplanner.team/stops/6173", "https://mivb.openplanner.team/stops/7800355"], ["https://mivb.openplanner.team/stops/6657", "https://mivb.openplanner.team/stops/6862"], ["https://mivb.openplanner.team/stops/5811", "https://mivb.openplanner.team/stops/5857F"], ["https://mivb.openplanner.team/stops/6416", "https://mivb.openplanner.team/stops/6419F"], ["https://mivb.openplanner.team/stops/1669", "https://mivb.openplanner.team/stops/5516"], ["https://mivb.openplanner.team/stops/2509", "https://mivb.openplanner.team/stops/5166"], ["https://mivb.openplanner.team/stops/1661", "https://mivb.openplanner.team/stops/1673"], ["https://mivb.openplanner.team/stops/3217", "https://mivb.openplanner.team/stops/6055"], ["https://mivb.openplanner.team/stops/3273", "https://mivb.openplanner.team/stops/3461"], ["https://mivb.openplanner.team/stops/1807", "https://mivb.openplanner.team/stops/1869"], ["https://mivb.openplanner.team/stops/1638B", "https://mivb.openplanner.team/stops/29"], ["https://mivb.openplanner.team/stops/2359", "https://mivb.openplanner.team/stops/2361"], ["https://mivb.openplanner.team/stops/0370138", "https://mivb.openplanner.team/stops/0370338"], ["https://mivb.openplanner.team/stops/1129", "https://mivb.openplanner.team/stops/0310244"], ["https://mivb.openplanner.team/stops/2333F", "https://mivb.openplanner.team/stops/2336G"], ["https://mivb.openplanner.team/stops/3004", "https://mivb.openplanner.team/stops/7621"], ["https://mivb.openplanner.team/stops/5022", "https://mivb.openplanner.team/stops/6422F"], ["https://mivb.openplanner.team/stops/1183", "https://mivb.openplanner.team/stops/8763"], ["https://mivb.openplanner.team/stops/2456", "https://mivb.openplanner.team/stops/5812"], ["https://mivb.openplanner.team/stops/6433", "https://mivb.openplanner.team/stops/8302"], ["https://mivb.openplanner.team/stops/1819", "https://mivb.openplanner.team/stops/5555"], ["https://mivb.openplanner.team/stops/6434F", "https://mivb.openplanner.team/stops/6438"], ["https://mivb.openplanner.team/stops/5754", "https://mivb.openplanner.team/stops/5916F"], ["https://mivb.openplanner.team/stops/9729", "https://mivb.openplanner.team/stops/9784B"], ["https://mivb.openplanner.team/stops/1386", "https://mivb.openplanner.team/stops/0120626"], ["https://mivb.openplanner.team/stops/4274", "https://mivb.openplanner.team/stops/8803"], ["https://mivb.openplanner.team/stops/1919", "https://mivb.openplanner.team/stops/1920"], ["https://mivb.openplanner.team/stops/6477", "https://mivb.openplanner.team/stops/0110425"], ["https://mivb.openplanner.team/stops/2204", "https://mivb.openplanner.team/stops/5714"], ["https://mivb.openplanner.team/stops/3201", "https://mivb.openplanner.team/stops/3338F"], ["https://mivb.openplanner.team/stops/2325", "https://mivb.openplanner.team/stops/6174F"], ["https://mivb.openplanner.team/stops/1535", "https://mivb.openplanner.team/stops/3898"], ["https://mivb.openplanner.team/stops/3226B", "https://mivb.openplanner.team/stops/6706"], ["https://mivb.openplanner.team/stops/1209", "https://mivb.openplanner.team/stops/4598"], ["https://mivb.openplanner.team/stops/2671F", "https://mivb.openplanner.team/stops/0350140"], ["https://mivb.openplanner.team/stops/5115F", "https://mivb.openplanner.team/stops/5158"], ["https://mivb.openplanner.team/stops/3532", "https://mivb.openplanner.team/stops/6310F"], ["https://mivb.openplanner.team/stops/8431", "https://mivb.openplanner.team/stops/0431048"], ["https://mivb.openplanner.team/stops/3121", "https://mivb.openplanner.team/stops/3155"], ["https://mivb.openplanner.team/stops/1965", "https://mivb.openplanner.team/stops/5825"], ["https://mivb.openplanner.team/stops/1985G", "https://mivb.openplanner.team/stops/5853B"], ["https://mivb.openplanner.team/stops/2418", "https://mivb.openplanner.team/stops/8341"], ["https://mivb.openplanner.team/stops/4062", "https://mivb.openplanner.team/stops/4162"], ["https://mivb.openplanner.team/stops/1142", "https://mivb.openplanner.team/stops/5103"], ["https://mivb.openplanner.team/stops/2877", "https://mivb.openplanner.team/stops/5080"], ["https://mivb.openplanner.team/stops/1928", "https://mivb.openplanner.team/stops/1964"], ["https://mivb.openplanner.team/stops/8322", "https://mivb.openplanner.team/stops/0320243"], ["https://mivb.openplanner.team/stops/1661", "https://mivb.openplanner.team/stops/5525"], ["https://mivb.openplanner.team/stops/1112", "https://mivb.openplanner.team/stops/0470459"], ["https://mivb.openplanner.team/stops/1731", "https://mivb.openplanner.team/stops/2009"], ["https://mivb.openplanner.team/stops/1052", "https://mivb.openplanner.team/stops/9025"], ["https://mivb.openplanner.team/stops/6053", "https://mivb.openplanner.team/stops/6054B"], ["https://mivb.openplanner.team/stops/0600662", "https://mivb.openplanner.team/stops/5286"], ["https://mivb.openplanner.team/stops/1465", "https://mivb.openplanner.team/stops/1820"], ["https://mivb.openplanner.team/stops/3007", "https://mivb.openplanner.team/stops/5911"], ["https://mivb.openplanner.team/stops/5116", "https://mivb.openplanner.team/stops/5718"], ["https://mivb.openplanner.team/stops/2103", "https://mivb.openplanner.team/stops/2116B"], ["https://mivb.openplanner.team/stops/1066", "https://mivb.openplanner.team/stops/1067"], ["https://mivb.openplanner.team/stops/1726", "https://mivb.openplanner.team/stops/7529"], ["https://mivb.openplanner.team/stops/3276", "https://mivb.openplanner.team/stops/3285"], ["https://mivb.openplanner.team/stops/1598", "https://mivb.openplanner.team/stops/1760"], ["https://mivb.openplanner.team/stops/1805", "https://mivb.openplanner.team/stops/6115F"], ["https://mivb.openplanner.team/stops/1165", "https://mivb.openplanner.team/stops/6354"], ["https://mivb.openplanner.team/stops/0724", "https://mivb.openplanner.team/stops/2465"], ["https://mivb.openplanner.team/stops/2970", "https://mivb.openplanner.team/stops/8061"], ["https://mivb.openplanner.team/stops/2133", "https://mivb.openplanner.team/stops/5213"], ["https://mivb.openplanner.team/stops/1792", "https://mivb.openplanner.team/stops/4214"], ["https://mivb.openplanner.team/stops/1205", "https://mivb.openplanner.team/stops/1207"], ["https://mivb.openplanner.team/stops/0610463", "https://mivb.openplanner.team/stops/0626"], ["https://mivb.openplanner.team/stops/4101", "https://mivb.openplanner.team/stops/4162"], ["https://mivb.openplanner.team/stops/0526", "https://mivb.openplanner.team/stops/0536"], ["https://mivb.openplanner.team/stops/3263B", "https://mivb.openplanner.team/stops/4594"], ["https://mivb.openplanner.team/stops/0511", "https://mivb.openplanner.team/stops/0430948"], ["https://mivb.openplanner.team/stops/0100124", "https://mivb.openplanner.team/stops/0100424"], ["https://mivb.openplanner.team/stops/0440149", "https://mivb.openplanner.team/stops/0440249"], ["https://mivb.openplanner.team/stops/5855", "https://mivb.openplanner.team/stops/5856"], ["https://mivb.openplanner.team/stops/6602P", "https://mivb.openplanner.team/stops/6659F"], ["https://mivb.openplanner.team/stops/5046", "https://mivb.openplanner.team/stops/9311"], ["https://mivb.openplanner.team/stops/3504", "https://mivb.openplanner.team/stops/0310444"], ["https://mivb.openplanner.team/stops/2326", "https://mivb.openplanner.team/stops/2370"], ["https://mivb.openplanner.team/stops/5765F", "https://mivb.openplanner.team/stops/6365"], ["https://mivb.openplanner.team/stops/1881", "https://mivb.openplanner.team/stops/1883"], ["https://mivb.openplanner.team/stops/5014", "https://mivb.openplanner.team/stops/6652"], ["https://mivb.openplanner.team/stops/1024", "https://mivb.openplanner.team/stops/1052"], ["https://mivb.openplanner.team/stops/2456", "https://mivb.openplanner.team/stops/2936"], ["https://mivb.openplanner.team/stops/2604", "https://mivb.openplanner.team/stops/2667F"], ["https://mivb.openplanner.team/stops/2326", "https://mivb.openplanner.team/stops/6097B"], ["https://mivb.openplanner.team/stops/5724", "https://mivb.openplanner.team/stops/5754"], ["https://mivb.openplanner.team/stops/3559", "https://mivb.openplanner.team/stops/5462F"], ["https://mivb.openplanner.team/stops/2026", "https://mivb.openplanner.team/stops/4315"], ["https://mivb.openplanner.team/stops/1820", "https://mivb.openplanner.team/stops/2303"], ["https://mivb.openplanner.team/stops/1605", "https://mivb.openplanner.team/stops/1669"], ["https://mivb.openplanner.team/stops/2539F", "https://mivb.openplanner.team/stops/6106"], ["https://mivb.openplanner.team/stops/0610263", "https://mivb.openplanner.team/stops/1167"], ["https://mivb.openplanner.team/stops/1307", "https://mivb.openplanner.team/stops/1308G"], ["https://mivb.openplanner.team/stops/2215", "https://mivb.openplanner.team/stops/0360239"], ["https://mivb.openplanner.team/stops/6012G", "https://mivb.openplanner.team/stops/6260F"], ["https://mivb.openplanner.team/stops/3272", "https://mivb.openplanner.team/stops/3273"], ["https://mivb.openplanner.team/stops/5032G", "https://mivb.openplanner.team/stops/5053G"], ["https://mivb.openplanner.team/stops/1103", "https://mivb.openplanner.team/stops/1606"], ["https://mivb.openplanner.team/stops/6602", "https://mivb.openplanner.team/stops/6659F"], ["https://mivb.openplanner.team/stops/6058", "https://mivb.openplanner.team/stops/6210"], ["https://mivb.openplanner.team/stops/1096", "https://mivb.openplanner.team/stops/1304"], ["https://mivb.openplanner.team/stops/6657", "https://mivb.openplanner.team/stops/7621"], ["https://mivb.openplanner.team/stops/7621", "https://mivb.openplanner.team/stops/0350740"], ["https://mivb.openplanner.team/stops/8301", "https://mivb.openplanner.team/stops/0300145"], ["https://mivb.openplanner.team/stops/1208", "https://mivb.openplanner.team/stops/2560"], ["https://mivb.openplanner.team/stops/1317", "https://mivb.openplanner.team/stops/1425"], ["https://mivb.openplanner.team/stops/3800", "https://mivb.openplanner.team/stops/39"], ["https://mivb.openplanner.team/stops/3805", "https://mivb.openplanner.team/stops/3858"], ["https://mivb.openplanner.team/stops/6465", "https://mivb.openplanner.team/stops/0050119"], ["https://mivb.openplanner.team/stops/5921B", "https://mivb.openplanner.team/stops/5921G"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/2117B"], ["https://mivb.openplanner.team/stops/5205", "https://mivb.openplanner.team/stops/5261"], ["https://mivb.openplanner.team/stops/5017", "https://mivb.openplanner.team/stops/8321"], ["https://mivb.openplanner.team/stops/3226F", "https://mivb.openplanner.team/stops/6706"], ["https://mivb.openplanner.team/stops/1271B", "https://mivb.openplanner.team/stops/0060520"], ["https://mivb.openplanner.team/stops/7710204", "https://mivb.openplanner.team/stops/8712"], ["https://mivb.openplanner.team/stops/0100324", "https://mivb.openplanner.team/stops/0100424"], ["https://mivb.openplanner.team/stops/1727", "https://mivb.openplanner.team/stops/4103"], ["https://mivb.openplanner.team/stops/2292B", "https://mivb.openplanner.team/stops/2908"], ["https://mivb.openplanner.team/stops/2922", "https://mivb.openplanner.team/stops/8051"], ["https://mivb.openplanner.team/stops/7820253", "https://mivb.openplanner.team/stops/9056F"], ["https://mivb.openplanner.team/stops/0531", "https://mivb.openplanner.team/stops/1083"], ["https://mivb.openplanner.team/stops/1770", "https://mivb.openplanner.team/stops/4952"], ["https://mivb.openplanner.team/stops/1230", "https://mivb.openplanner.team/stops/5116"], ["https://mivb.openplanner.team/stops/2243F", "https://mivb.openplanner.team/stops/5308"], ["https://mivb.openplanner.team/stops/5101B", "https://mivb.openplanner.team/stops/5159F"], ["https://mivb.openplanner.team/stops/9780", "https://mivb.openplanner.team/stops/9784B"], ["https://mivb.openplanner.team/stops/4103", "https://mivb.openplanner.team/stops/4115"], ["https://mivb.openplanner.team/stops/1932", "https://mivb.openplanner.team/stops/1959"], ["https://mivb.openplanner.team/stops/8291", "https://mivb.openplanner.team/stops/0290212"], ["https://mivb.openplanner.team/stops/1866", "https://mivb.openplanner.team/stops/5352"], ["https://mivb.openplanner.team/stops/1476", "https://mivb.openplanner.team/stops/0060120"], ["https://mivb.openplanner.team/stops/1770", "https://mivb.openplanner.team/stops/3532"], ["https://mivb.openplanner.team/stops/3529", "https://mivb.openplanner.team/stops/3530"], ["https://mivb.openplanner.team/stops/5079", "https://mivb.openplanner.team/stops/5080"], ["https://mivb.openplanner.team/stops/5308F", "https://mivb.openplanner.team/stops/5354H"], ["https://mivb.openplanner.team/stops/3200", "https://mivb.openplanner.team/stops/3285"], ["https://mivb.openplanner.team/stops/1900", "https://mivb.openplanner.team/stops/6411"], ["https://mivb.openplanner.team/stops/0810269", "https://mivb.openplanner.team/stops/1518"], ["https://mivb.openplanner.team/stops/1584", "https://mivb.openplanner.team/stops/5227F"], ["https://mivb.openplanner.team/stops/3214", "https://mivb.openplanner.team/stops/5299"], ["https://mivb.openplanner.team/stops/3359", "https://mivb.openplanner.team/stops/17"], ["https://mivb.openplanner.team/stops/3460", "https://mivb.openplanner.team/stops/3766"], ["https://mivb.openplanner.team/stops/1903", "https://mivb.openplanner.team/stops/3517"], ["https://mivb.openplanner.team/stops/4506", "https://mivb.openplanner.team/stops/5925"], ["https://mivb.openplanner.team/stops/8271", "https://mivb.openplanner.team/stops/8272"], ["https://mivb.openplanner.team/stops/6481", "https://mivb.openplanner.team/stops/8834"], ["https://mivb.openplanner.team/stops/0539", "https://mivb.openplanner.team/stops/0430948"], ["https://mivb.openplanner.team/stops/2544F", "https://mivb.openplanner.team/stops/2672"], ["https://mivb.openplanner.team/stops/2241G", "https://mivb.openplanner.team/stops/5308F"], ["https://mivb.openplanner.team/stops/6053", "https://mivb.openplanner.team/stops/0070121"], ["https://mivb.openplanner.team/stops/4365", "https://mivb.openplanner.team/stops/4366"], ["https://mivb.openplanner.team/stops/1251", "https://mivb.openplanner.team/stops/1920"], ["https://mivb.openplanner.team/stops/1139", "https://mivb.openplanner.team/stops/1424"], ["https://mivb.openplanner.team/stops/3008", "https://mivb.openplanner.team/stops/5760"], ["https://mivb.openplanner.team/stops/1172", "https://mivb.openplanner.team/stops/5109"], ["https://mivb.openplanner.team/stops/5959", "https://mivb.openplanner.team/stops/9292"], ["https://mivb.openplanner.team/stops/2512", "https://mivb.openplanner.team/stops/4006G"], ["https://mivb.openplanner.team/stops/1476", "https://mivb.openplanner.team/stops/3159"], ["https://mivb.openplanner.team/stops/5853B", "https://mivb.openplanner.team/stops/5853G"], ["https://mivb.openplanner.team/stops/2523", "https://mivb.openplanner.team/stops/3859"], ["https://mivb.openplanner.team/stops/1901", "https://mivb.openplanner.team/stops/5735"], ["https://mivb.openplanner.team/stops/1865", "https://mivb.openplanner.team/stops/5501"], ["https://mivb.openplanner.team/stops/6435", "https://mivb.openplanner.team/stops/6437F"], ["https://mivb.openplanner.team/stops/1615", "https://mivb.openplanner.team/stops/1659"], ["https://mivb.openplanner.team/stops/3355", "https://mivb.openplanner.team/stops/0410246"], ["https://mivb.openplanner.team/stops/9605", "https://mivb.openplanner.team/stops/9707"], ["https://mivb.openplanner.team/stops/3018", "https://mivb.openplanner.team/stops/3338F"], ["https://mivb.openplanner.team/stops/2752", "https://mivb.openplanner.team/stops/3526"], ["https://mivb.openplanner.team/stops/2810", "https://mivb.openplanner.team/stops/2860"], ["https://mivb.openplanner.team/stops/1237", "https://mivb.openplanner.team/stops/4595"], ["https://mivb.openplanner.team/stops/2824", "https://mivb.openplanner.team/stops/5086F"], ["https://mivb.openplanner.team/stops/1112", "https://mivb.openplanner.team/stops/1114B"], ["https://mivb.openplanner.team/stops/2562B", "https://mivb.openplanner.team/stops/3709"], ["https://mivb.openplanner.team/stops/4349", "https://mivb.openplanner.team/stops/4351"], ["https://mivb.openplanner.team/stops/0600262", "https://mivb.openplanner.team/stops/0606"], ["https://mivb.openplanner.team/stops/0600762", "https://mivb.openplanner.team/stops/5286"], ["https://mivb.openplanner.team/stops/2976", "https://mivb.openplanner.team/stops/5307G"], ["https://mivb.openplanner.team/stops/0473F", "https://mivb.openplanner.team/stops/1288"], ["https://mivb.openplanner.team/stops/2046", "https://mivb.openplanner.team/stops/2050"], ["https://mivb.openplanner.team/stops/3180", "https://mivb.openplanner.team/stops/5359"], ["https://mivb.openplanner.team/stops/4456", "https://mivb.openplanner.team/stops/0240535"], ["https://mivb.openplanner.team/stops/1096", "https://mivb.openplanner.team/stops/1097"], ["https://mivb.openplanner.team/stops/5100B", "https://mivb.openplanner.team/stops/5175"], ["https://mivb.openplanner.team/stops/1959", "https://mivb.openplanner.team/stops/2702"], ["https://mivb.openplanner.team/stops/2239", "https://mivb.openplanner.team/stops/2318G"], ["https://mivb.openplanner.team/stops/2608F", "https://mivb.openplanner.team/stops/2669"], ["https://mivb.openplanner.team/stops/3518B", "https://mivb.openplanner.team/stops/0310244"], ["https://mivb.openplanner.team/stops/5502", "https://mivb.openplanner.team/stops/5562"], ["https://mivb.openplanner.team/stops/3360F", "https://mivb.openplanner.team/stops/9296"], ["https://mivb.openplanner.team/stops/2042", "https://mivb.openplanner.team/stops/2085"], ["https://mivb.openplanner.team/stops/1741", "https://mivb.openplanner.team/stops/6931G"], ["https://mivb.openplanner.team/stops/9654", "https://mivb.openplanner.team/stops/9685"], ["https://mivb.openplanner.team/stops/3006", "https://mivb.openplanner.team/stops/0340441"], ["https://mivb.openplanner.team/stops/9677", "https://mivb.openplanner.team/stops/9678"], ["https://mivb.openplanner.team/stops/1250", "https://mivb.openplanner.team/stops/1969"], ["https://mivb.openplanner.team/stops/3860", "https://mivb.openplanner.team/stops/5152"], ["https://mivb.openplanner.team/stops/9679", "https://mivb.openplanner.team/stops/9680"], ["https://mivb.openplanner.team/stops/5009F", "https://mivb.openplanner.team/stops/5074"], ["https://mivb.openplanner.team/stops/4303", "https://mivb.openplanner.team/stops/6157F"], ["https://mivb.openplanner.team/stops/5426", "https://mivb.openplanner.team/stops/0260137"], ["https://mivb.openplanner.team/stops/3106", "https://mivb.openplanner.team/stops/5760"], ["https://mivb.openplanner.team/stops/1711", "https://mivb.openplanner.team/stops/1746"], ["https://mivb.openplanner.team/stops/4853", "https://mivb.openplanner.team/stops/5029"], ["https://mivb.openplanner.team/stops/3214", "https://mivb.openplanner.team/stops/5362"], ["https://mivb.openplanner.team/stops/0020416", "https://mivb.openplanner.team/stops/0020616"], ["https://mivb.openplanner.team/stops/2544", "https://mivb.openplanner.team/stops/2670"], ["https://mivb.openplanner.team/stops/3114", "https://mivb.openplanner.team/stops/3163"], ["https://mivb.openplanner.team/stops/1968", "https://mivb.openplanner.team/stops/5221F"], ["https://mivb.openplanner.team/stops/3334G", "https://mivb.openplanner.team/stops/3335F"], ["https://mivb.openplanner.team/stops/2609", "https://mivb.openplanner.team/stops/2661"], ["https://mivb.openplanner.team/stops/1813", "https://mivb.openplanner.team/stops/1863"], ["https://mivb.openplanner.team/stops/1975", "https://mivb.openplanner.team/stops/5256"], ["https://mivb.openplanner.team/stops/2337F", "https://mivb.openplanner.team/stops/5758F"], ["https://mivb.openplanner.team/stops/0631", "https://mivb.openplanner.team/stops/2531"], ["https://mivb.openplanner.team/stops/1868", "https://mivb.openplanner.team/stops/0070621"], ["https://mivb.openplanner.team/stops/1049F", "https://mivb.openplanner.team/stops/5256F"], ["https://mivb.openplanner.team/stops/1232", "https://mivb.openplanner.team/stops/5120"], ["https://mivb.openplanner.team/stops/4506", "https://mivb.openplanner.team/stops/5725"], ["https://mivb.openplanner.team/stops/3259B", "https://mivb.openplanner.team/stops/6653F"], ["https://mivb.openplanner.team/stops/2854", "https://mivb.openplanner.team/stops/5772"], ["https://mivb.openplanner.team/stops/3103", "https://mivb.openplanner.team/stops/3173"], ["https://mivb.openplanner.team/stops/1008", "https://mivb.openplanner.team/stops/1368"], ["https://mivb.openplanner.team/stops/3214", "https://mivb.openplanner.team/stops/5048"], ["https://mivb.openplanner.team/stops/4124", "https://mivb.openplanner.team/stops/8793"], ["https://mivb.openplanner.team/stops/0616", "https://mivb.openplanner.team/stops/63"], ["https://mivb.openplanner.team/stops/2015", "https://mivb.openplanner.team/stops/9600B"], ["https://mivb.openplanner.team/stops/3610G", "https://mivb.openplanner.team/stops/7650210"], ["https://mivb.openplanner.team/stops/1732", "https://mivb.openplanner.team/stops/4103"], ["https://mivb.openplanner.team/stops/1757", "https://mivb.openplanner.team/stops/3552"], ["https://mivb.openplanner.team/stops/4403", "https://mivb.openplanner.team/stops/4408"], ["https://mivb.openplanner.team/stops/1806", "https://mivb.openplanner.team/stops/6009"], ["https://mivb.openplanner.team/stops/8042", "https://mivb.openplanner.team/stops/0300245"], ["https://mivb.openplanner.team/stops/1230", "https://mivb.openplanner.team/stops/2524"], ["https://mivb.openplanner.team/stops/1063", "https://mivb.openplanner.team/stops/3012"], ["https://mivb.openplanner.team/stops/1094", "https://mivb.openplanner.team/stops/1236F"], ["https://mivb.openplanner.team/stops/1350", "https://mivb.openplanner.team/stops/5014"], ["https://mivb.openplanner.team/stops/2117B", "https://mivb.openplanner.team/stops/2118"], ["https://mivb.openplanner.team/stops/1615", "https://mivb.openplanner.team/stops/1669"], ["https://mivb.openplanner.team/stops/0810169", "https://mivb.openplanner.team/stops/0070521"], ["https://mivb.openplanner.team/stops/4296", "https://mivb.openplanner.team/stops/0240435"], ["https://mivb.openplanner.team/stops/3168", "https://mivb.openplanner.team/stops/5710F"], ["https://mivb.openplanner.team/stops/1748", "https://mivb.openplanner.team/stops/4158"], ["https://mivb.openplanner.team/stops/3131", "https://mivb.openplanner.team/stops/3570"], ["https://mivb.openplanner.team/stops/1512", "https://mivb.openplanner.team/stops/2919"], ["https://mivb.openplanner.team/stops/3180", "https://mivb.openplanner.team/stops/5866"], ["https://mivb.openplanner.team/stops/1321", "https://mivb.openplanner.team/stops/1553"], ["https://mivb.openplanner.team/stops/1096", "https://mivb.openplanner.team/stops/1198"], ["https://mivb.openplanner.team/stops/0610163", "https://mivb.openplanner.team/stops/1167"], ["https://mivb.openplanner.team/stops/4314", "https://mivb.openplanner.team/stops/4318"], ["https://mivb.openplanner.team/stops/1042", "https://mivb.openplanner.team/stops/2289"], ["https://mivb.openplanner.team/stops/2664", "https://mivb.openplanner.team/stops/5963"], ["https://mivb.openplanner.team/stops/1970", "https://mivb.openplanner.team/stops/6931B"], ["https://mivb.openplanner.team/stops/1642F", "https://mivb.openplanner.team/stops/1643F"], ["https://mivb.openplanner.team/stops/2022", "https://mivb.openplanner.team/stops/9853"], ["https://mivb.openplanner.team/stops/1768", "https://mivb.openplanner.team/stops/2801"], ["https://mivb.openplanner.team/stops/2855", "https://mivb.openplanner.team/stops/2856B"], ["https://mivb.openplanner.team/stops/5461F", "https://mivb.openplanner.team/stops/5462F"], ["https://mivb.openplanner.team/stops/2079", "https://mivb.openplanner.team/stops/2080"], ["https://mivb.openplanner.team/stops/1913", "https://mivb.openplanner.team/stops/6453"], ["https://mivb.openplanner.team/stops/2294B", "https://mivb.openplanner.team/stops/3199"], ["https://mivb.openplanner.team/stops/3129", "https://mivb.openplanner.team/stops/3130"], ["https://mivb.openplanner.team/stops/8321", "https://mivb.openplanner.team/stops/8322"], ["https://mivb.openplanner.team/stops/9783", "https://mivb.openplanner.team/stops/9786"], ["https://mivb.openplanner.team/stops/2116B", "https://mivb.openplanner.team/stops/2157"], ["https://mivb.openplanner.team/stops/1639", "https://mivb.openplanner.team/stops/1829"], ["https://mivb.openplanner.team/stops/1673", "https://mivb.openplanner.team/stops/5529"], ["https://mivb.openplanner.team/stops/2241G", "https://mivb.openplanner.team/stops/2250"], ["https://mivb.openplanner.team/stops/8833", "https://mivb.openplanner.team/stops/7830252"], ["https://mivb.openplanner.team/stops/3905", "https://mivb.openplanner.team/stops/3952"], ["https://mivb.openplanner.team/stops/3912", "https://mivb.openplanner.team/stops/3953"], ["https://mivb.openplanner.team/stops/1964", "https://mivb.openplanner.team/stops/5917F"], ["https://mivb.openplanner.team/stops/0801", "https://mivb.openplanner.team/stops/2289"], ["https://mivb.openplanner.team/stops/6656", "https://mivb.openplanner.team/stops/6705F"], ["https://mivb.openplanner.team/stops/2311", "https://mivb.openplanner.team/stops/5706"], ["https://mivb.openplanner.team/stops/3284", "https://mivb.openplanner.team/stops/3288"], ["https://mivb.openplanner.team/stops/2237", "https://mivb.openplanner.team/stops/5742B"], ["https://mivb.openplanner.team/stops/2290B", "https://mivb.openplanner.team/stops/0220333"], ["https://mivb.openplanner.team/stops/1465", "https://mivb.openplanner.team/stops/2303"], ["https://mivb.openplanner.team/stops/1156T", "https://mivb.openplanner.team/stops/21"], ["https://mivb.openplanner.team/stops/2167", "https://mivb.openplanner.team/stops/2168"], ["https://mivb.openplanner.team/stops/4310", "https://mivb.openplanner.team/stops/4358"], ["https://mivb.openplanner.team/stops/2260F", "https://mivb.openplanner.team/stops/8372"], ["https://mivb.openplanner.team/stops/1931", "https://mivb.openplanner.team/stops/1959"], ["https://mivb.openplanner.team/stops/2459", "https://mivb.openplanner.team/stops/2460"], ["https://mivb.openplanner.team/stops/2513", "https://mivb.openplanner.team/stops/2565"], ["https://mivb.openplanner.team/stops/2811", "https://mivb.openplanner.team/stops/2875"], ["https://mivb.openplanner.team/stops/1813", "https://mivb.openplanner.team/stops/1815"], ["https://mivb.openplanner.team/stops/4122", "https://mivb.openplanner.team/stops/4126F"], ["https://mivb.openplanner.team/stops/2256F", "https://mivb.openplanner.team/stops/2535F"], ["https://mivb.openplanner.team/stops/3860", "https://mivb.openplanner.team/stops/5915"], ["https://mivb.openplanner.team/stops/0900168", "https://mivb.openplanner.team/stops/1866"], ["https://mivb.openplanner.team/stops/1715", "https://mivb.openplanner.team/stops/5265F"], ["https://mivb.openplanner.team/stops/1675F", "https://mivb.openplanner.team/stops/6804F"], ["https://mivb.openplanner.team/stops/5320", "https://mivb.openplanner.team/stops/5958C"], ["https://mivb.openplanner.team/stops/2411B", "https://mivb.openplanner.team/stops/2936"], ["https://mivb.openplanner.team/stops/6166", "https://mivb.openplanner.team/stops/0340341"], ["https://mivb.openplanner.team/stops/2146", "https://mivb.openplanner.team/stops/2148"], ["https://mivb.openplanner.team/stops/2329", "https://mivb.openplanner.team/stops/3002"], ["https://mivb.openplanner.team/stops/3852", "https://mivb.openplanner.team/stops/3858"], ["https://mivb.openplanner.team/stops/3557", "https://mivb.openplanner.team/stops/5266F"], ["https://mivb.openplanner.team/stops/2241G", "https://mivb.openplanner.team/stops/5354H"], ["https://mivb.openplanner.team/stops/1483", "https://mivb.openplanner.team/stops/3717"], ["https://mivb.openplanner.team/stops/2518", "https://mivb.openplanner.team/stops/6812"], ["https://mivb.openplanner.team/stops/5121", "https://mivb.openplanner.team/stops/5161"], ["https://mivb.openplanner.team/stops/1166", "https://mivb.openplanner.team/stops/2268"], ["https://mivb.openplanner.team/stops/1475", "https://mivb.openplanner.team/stops/1541"], ["https://mivb.openplanner.team/stops/0670167", "https://mivb.openplanner.team/stops/0707"], ["https://mivb.openplanner.team/stops/1453", "https://mivb.openplanner.team/stops/4355"], ["https://mivb.openplanner.team/stops/2243F", "https://mivb.openplanner.team/stops/2248"], ["https://mivb.openplanner.team/stops/9606", "https://mivb.openplanner.team/stops/9631"], ["https://mivb.openplanner.team/stops/5152", "https://mivb.openplanner.team/stops/5719"], ["https://mivb.openplanner.team/stops/7720103", "https://mivb.openplanner.team/stops/3"], ["https://mivb.openplanner.team/stops/2701", "https://mivb.openplanner.team/stops/2702"], ["https://mivb.openplanner.team/stops/0370338", "https://mivb.openplanner.team/stops/0370438"], ["https://mivb.openplanner.team/stops/1466", "https://mivb.openplanner.team/stops/4207"], ["https://mivb.openplanner.team/stops/2412", "https://mivb.openplanner.team/stops/5814"], ["https://mivb.openplanner.team/stops/9656", "https://mivb.openplanner.team/stops/9679"], ["https://mivb.openplanner.team/stops/1105", "https://mivb.openplanner.team/stops/4653"], ["https://mivb.openplanner.team/stops/3230", "https://mivb.openplanner.team/stops/7730102"], ["https://mivb.openplanner.team/stops/5115", "https://mivb.openplanner.team/stops/5115F"], ["https://mivb.openplanner.team/stops/1874", "https://mivb.openplanner.team/stops/5503"], ["https://mivb.openplanner.team/stops/2131", "https://mivb.openplanner.team/stops/5212"], ["https://mivb.openplanner.team/stops/5722F", "https://mivb.openplanner.team/stops/5920H"], ["https://mivb.openplanner.team/stops/3003", "https://mivb.openplanner.team/stops/5906"], ["https://mivb.openplanner.team/stops/5414F", "https://mivb.openplanner.team/stops/5459F"], ["https://mivb.openplanner.team/stops/6459F", "https://mivb.openplanner.team/stops/6461F"], ["https://mivb.openplanner.team/stops/1010", "https://mivb.openplanner.team/stops/1676F"], ["https://mivb.openplanner.team/stops/1942", "https://mivb.openplanner.team/stops/9972F"], ["https://mivb.openplanner.team/stops/4002B", "https://mivb.openplanner.team/stops/5105"], ["https://mivb.openplanner.team/stops/1455", "https://mivb.openplanner.team/stops/5420F"], ["https://mivb.openplanner.team/stops/5108", "https://mivb.openplanner.team/stops/5166"], ["https://mivb.openplanner.team/stops/8331", "https://mivb.openplanner.team/stops/0330442"], ["https://mivb.openplanner.team/stops/3272", "https://mivb.openplanner.team/stops/3461"], ["https://mivb.openplanner.team/stops/8401", "https://mivb.openplanner.team/stops/8402"], ["https://mivb.openplanner.team/stops/3217", "https://mivb.openplanner.team/stops/6056"], ["https://mivb.openplanner.team/stops/0210132", "https://mivb.openplanner.team/stops/32"], ["https://mivb.openplanner.team/stops/8051", "https://mivb.openplanner.team/stops/19"], ["https://mivb.openplanner.team/stops/1073", "https://mivb.openplanner.team/stops/1084"], ["https://mivb.openplanner.team/stops/2359", "https://mivb.openplanner.team/stops/2360"], ["https://mivb.openplanner.team/stops/5804G", "https://mivb.openplanner.team/stops/7246"], ["https://mivb.openplanner.team/stops/2301", "https://mivb.openplanner.team/stops/0430548"], ["https://mivb.openplanner.team/stops/1129", "https://mivb.openplanner.team/stops/0310344"], ["https://mivb.openplanner.team/stops/3222", "https://mivb.openplanner.team/stops/6649F"], ["https://mivb.openplanner.team/stops/1901", "https://mivb.openplanner.team/stops/6357F"], ["https://mivb.openplanner.team/stops/5060", "https://mivb.openplanner.team/stops/5219F"], ["https://mivb.openplanner.team/stops/6017", "https://mivb.openplanner.team/stops/9060"], ["https://mivb.openplanner.team/stops/1933B", "https://mivb.openplanner.team/stops/1939"], ["https://mivb.openplanner.team/stops/5656", "https://mivb.openplanner.team/stops/9551"], ["https://mivb.openplanner.team/stops/6434F", "https://mivb.openplanner.team/stops/6437F"], ["https://mivb.openplanner.team/stops/3956", "https://mivb.openplanner.team/stops/4550"], ["https://mivb.openplanner.team/stops/9609", "https://mivb.openplanner.team/stops/9634"], ["https://mivb.openplanner.team/stops/1722", "https://mivb.openplanner.team/stops/1727"], ["https://mivb.openplanner.team/stops/3106", "https://mivb.openplanner.team/stops/5315"], ["https://mivb.openplanner.team/stops/3201", "https://mivb.openplanner.team/stops/3334G"], ["https://mivb.openplanner.team/stops/1943", "https://mivb.openplanner.team/stops/9972F"], ["https://mivb.openplanner.team/stops/1846", "https://mivb.openplanner.team/stops/5510"], ["https://mivb.openplanner.team/stops/1258B", "https://mivb.openplanner.team/stops/5920C"], ["https://mivb.openplanner.team/stops/8764", "https://mivb.openplanner.team/stops/0470459"], ["https://mivb.openplanner.team/stops/4360", "https://mivb.openplanner.team/stops/5413F"], ["https://mivb.openplanner.team/stops/2577", "https://mivb.openplanner.team/stops/2808"], ["https://mivb.openplanner.team/stops/2917", "https://mivb.openplanner.team/stops/3360F"], ["https://mivb.openplanner.team/stops/4213", "https://mivb.openplanner.team/stops/5013F"], ["https://mivb.openplanner.team/stops/3515", "https://mivb.openplanner.team/stops/4307"], ["https://mivb.openplanner.team/stops/1725", "https://mivb.openplanner.team/stops/3522"], ["https://mivb.openplanner.team/stops/2151", "https://mivb.openplanner.team/stops/5056"], ["https://mivb.openplanner.team/stops/8441", "https://mivb.openplanner.team/stops/8442"], ["https://mivb.openplanner.team/stops/4258", "https://mivb.openplanner.team/stops/4271"], ["https://mivb.openplanner.team/stops/1404", "https://mivb.openplanner.team/stops/6022B"], ["https://mivb.openplanner.team/stops/6601", "https://mivb.openplanner.team/stops/6705F"], ["https://mivb.openplanner.team/stops/1715", "https://mivb.openplanner.team/stops/5311"], ["https://mivb.openplanner.team/stops/7820353", "https://mivb.openplanner.team/stops/7820453"], ["https://mivb.openplanner.team/stops/1063", "https://mivb.openplanner.team/stops/2278"], ["https://mivb.openplanner.team/stops/1167", "https://mivb.openplanner.team/stops/6352"], ["https://mivb.openplanner.team/stops/8462", "https://mivb.openplanner.team/stops/0460150"], ["https://mivb.openplanner.team/stops/0270114", "https://mivb.openplanner.team/stops/0270614"], ["https://mivb.openplanner.team/stops/2550", "https://mivb.openplanner.team/stops/3808"], ["https://mivb.openplanner.team/stops/3112", "https://mivb.openplanner.team/stops/6203"], ["https://mivb.openplanner.team/stops/1419", "https://mivb.openplanner.team/stops/6023"], ["https://mivb.openplanner.team/stops/5921G", "https://mivb.openplanner.team/stops/5953"], ["https://mivb.openplanner.team/stops/2200F", "https://mivb.openplanner.team/stops/5742B"], ["https://mivb.openplanner.team/stops/5014", "https://mivb.openplanner.team/stops/6651"], ["https://mivb.openplanner.team/stops/1194", "https://mivb.openplanner.team/stops/5170"], ["https://mivb.openplanner.team/stops/4107", "https://mivb.openplanner.team/stops/4159"], ["https://mivb.openplanner.team/stops/2604", "https://mivb.openplanner.team/stops/2667"], ["https://mivb.openplanner.team/stops/2267", "https://mivb.openplanner.team/stops/0010215"], ["https://mivb.openplanner.team/stops/0650265", "https://mivb.openplanner.team/stops/8331"], ["https://mivb.openplanner.team/stops/3180", "https://mivb.openplanner.team/stops/5303"], ["https://mivb.openplanner.team/stops/5255F", "https://mivb.openplanner.team/stops/5256F"], ["https://mivb.openplanner.team/stops/5014", "https://mivb.openplanner.team/stops/5071"], ["https://mivb.openplanner.team/stops/4124", "https://mivb.openplanner.team/stops/4130"], ["https://mivb.openplanner.team/stops/3558", "https://mivb.openplanner.team/stops/4307"], ["https://mivb.openplanner.team/stops/1310", "https://mivb.openplanner.team/stops/4101"], ["https://mivb.openplanner.team/stops/1846", "https://mivb.openplanner.team/stops/1847"], ["https://mivb.openplanner.team/stops/2212", "https://mivb.openplanner.team/stops/3261"], ["https://mivb.openplanner.team/stops/5282F", "https://mivb.openplanner.team/stops/5283F"], ["https://mivb.openplanner.team/stops/7790456", "https://mivb.openplanner.team/stops/7790556"], ["https://mivb.openplanner.team/stops/1258G", "https://mivb.openplanner.team/stops/5920H"], ["https://mivb.openplanner.team/stops/1307", "https://mivb.openplanner.team/stops/1307F"], ["https://mivb.openplanner.team/stops/1959", "https://mivb.openplanner.team/stops/1961B"], ["https://mivb.openplanner.team/stops/3106", "https://mivb.openplanner.team/stops/3107"], ["https://mivb.openplanner.team/stops/0529", "https://mivb.openplanner.team/stops/0430948"], ["https://mivb.openplanner.team/stops/2584", "https://mivb.openplanner.team/stops/2805F"], ["https://mivb.openplanner.team/stops/0610563", "https://mivb.openplanner.team/stops/2264"], ["https://mivb.openplanner.team/stops/5072", "https://mivb.openplanner.team/stops/8462"], ["https://mivb.openplanner.team/stops/0660166", "https://mivb.openplanner.team/stops/6078"], ["https://mivb.openplanner.team/stops/2304", "https://mivb.openplanner.team/stops/2371"], ["https://mivb.openplanner.team/stops/1449", "https://mivb.openplanner.team/stops/1859"], ["https://mivb.openplanner.team/stops/5020", "https://mivb.openplanner.team/stops/5063"], ["https://mivb.openplanner.team/stops/8301", "https://mivb.openplanner.team/stops/8302"], ["https://mivb.openplanner.team/stops/4295", "https://mivb.openplanner.team/stops/4455"], ["https://mivb.openplanner.team/stops/6410", "https://mivb.openplanner.team/stops/6413F"], ["https://mivb.openplanner.team/stops/1540", "https://mivb.openplanner.team/stops/0120626"], ["https://mivb.openplanner.team/stops/1830", "https://mivb.openplanner.team/stops/0130127"], ["https://mivb.openplanner.team/stops/4344", "https://mivb.openplanner.team/stops/4403"], ["https://mivb.openplanner.team/stops/1529", "https://mivb.openplanner.team/stops/0120626"], ["https://mivb.openplanner.team/stops/1792", "https://mivb.openplanner.team/stops/6755"], ["https://mivb.openplanner.team/stops/2986B", "https://mivb.openplanner.team/stops/5968"], ["https://mivb.openplanner.team/stops/1121", "https://mivb.openplanner.team/stops/9779"], ["https://mivb.openplanner.team/stops/0811", "https://mivb.openplanner.team/stops/0810369"], ["https://mivb.openplanner.team/stops/5562", "https://mivb.openplanner.team/stops/0090123"], ["https://mivb.openplanner.team/stops/3175B", "https://mivb.openplanner.team/stops/9292"], ["https://mivb.openplanner.team/stops/9577", "https://mivb.openplanner.team/stops/9578"], ["https://mivb.openplanner.team/stops/2010", "https://mivb.openplanner.team/stops/5053G"], ["https://mivb.openplanner.team/stops/2502", "https://mivb.openplanner.team/stops/9027"], ["https://mivb.openplanner.team/stops/6649F", "https://mivb.openplanner.team/stops/0280113"], ["https://mivb.openplanner.team/stops/3608", "https://mivb.openplanner.team/stops/3609F"], ["https://mivb.openplanner.team/stops/1252", "https://mivb.openplanner.team/stops/0160230"], ["https://mivb.openplanner.team/stops/2548", "https://mivb.openplanner.team/stops/3804B"], ["https://mivb.openplanner.team/stops/2814", "https://mivb.openplanner.team/stops/2857B"], ["https://mivb.openplanner.team/stops/5312", "https://mivb.openplanner.team/stops/0200231"], ["https://mivb.openplanner.team/stops/2728", "https://mivb.openplanner.team/stops/3530"], ["https://mivb.openplanner.team/stops/1678F", "https://mivb.openplanner.team/stops/1748"], ["https://mivb.openplanner.team/stops/1466", "https://mivb.openplanner.team/stops/1711"], ["https://mivb.openplanner.team/stops/2408", "https://mivb.openplanner.team/stops/2409"], ["https://mivb.openplanner.team/stops/3713", "https://mivb.openplanner.team/stops/3717"], ["https://mivb.openplanner.team/stops/1019", "https://mivb.openplanner.team/stops/4253"], ["https://mivb.openplanner.team/stops/1495", "https://mivb.openplanner.team/stops/6856"], ["https://mivb.openplanner.team/stops/0636", "https://mivb.openplanner.team/stops/6862F"], ["https://mivb.openplanner.team/stops/5221F", "https://mivb.openplanner.team/stops/9969F"], ["https://mivb.openplanner.team/stops/4109", "https://mivb.openplanner.team/stops/4168"], ["https://mivb.openplanner.team/stops/1150", "https://mivb.openplanner.team/stops/3919"], ["https://mivb.openplanner.team/stops/3257F", "https://mivb.openplanner.team/stops/7740201"], ["https://mivb.openplanner.team/stops/1913", "https://mivb.openplanner.team/stops/1914"], ["https://mivb.openplanner.team/stops/6481", "https://mivb.openplanner.team/stops/7830152"], ["https://mivb.openplanner.team/stops/3610G", "https://mivb.openplanner.team/stops/3751"], ["https://mivb.openplanner.team/stops/1145", "https://mivb.openplanner.team/stops/8382"], ["https://mivb.openplanner.team/stops/1684F", "https://mivb.openplanner.team/stops/1744"], ["https://mivb.openplanner.team/stops/1015", "https://mivb.openplanner.team/stops/3859"], ["https://mivb.openplanner.team/stops/3411", "https://mivb.openplanner.team/stops/3470"], ["https://mivb.openplanner.team/stops/2545", "https://mivb.openplanner.team/stops/6100"], ["https://mivb.openplanner.team/stops/2604F", "https://mivb.openplanner.team/stops/5121"], ["https://mivb.openplanner.team/stops/1117", "https://mivb.openplanner.team/stops/8731"], ["https://mivb.openplanner.team/stops/3207", "https://mivb.openplanner.team/stops/3765"], ["https://mivb.openplanner.team/stops/1834", "https://mivb.openplanner.team/stops/1841"], ["https://mivb.openplanner.team/stops/4212B", "https://mivb.openplanner.team/stops/58"], ["https://mivb.openplanner.team/stops/3008", "https://mivb.openplanner.team/stops/5761"], ["https://mivb.openplanner.team/stops/6931B", "https://mivb.openplanner.team/stops/6956B"], ["https://mivb.openplanner.team/stops/2415", "https://mivb.openplanner.team/stops/5917F"], ["https://mivb.openplanner.team/stops/1584", "https://mivb.openplanner.team/stops/1641"], ["https://mivb.openplanner.team/stops/5731F", "https://mivb.openplanner.team/stops/5753F"], ["https://mivb.openplanner.team/stops/3612F", "https://mivb.openplanner.team/stops/7660109"], ["https://mivb.openplanner.team/stops/2909", "https://mivb.openplanner.team/stops/3175B"], ["https://mivb.openplanner.team/stops/1117", "https://mivb.openplanner.team/stops/1145"], ["https://mivb.openplanner.team/stops/2305", "https://mivb.openplanner.team/stops/2370"], ["https://mivb.openplanner.team/stops/3018", "https://mivb.openplanner.team/stops/3337F"], ["https://mivb.openplanner.team/stops/2922", "https://mivb.openplanner.team/stops/2970"], ["https://mivb.openplanner.team/stops/1015", "https://mivb.openplanner.team/stops/1072"], ["https://mivb.openplanner.team/stops/2990", "https://mivb.openplanner.team/stops/5307G"], ["https://mivb.openplanner.team/stops/1425", "https://mivb.openplanner.team/stops/2920"], ["https://mivb.openplanner.team/stops/2267", "https://mivb.openplanner.team/stops/8441"], ["https://mivb.openplanner.team/stops/4129", "https://mivb.openplanner.team/stops/4266"], ["https://mivb.openplanner.team/stops/1110", "https://mivb.openplanner.team/stops/1933B"], ["https://mivb.openplanner.team/stops/1635", "https://mivb.openplanner.team/stops/9600B"], ["https://mivb.openplanner.team/stops/2373", "https://mivb.openplanner.team/stops/6811"], ["https://mivb.openplanner.team/stops/4002G", "https://mivb.openplanner.team/stops/5105"], ["https://mivb.openplanner.team/stops/3814", "https://mivb.openplanner.team/stops/3850"], ["https://mivb.openplanner.team/stops/1262B", "https://mivb.openplanner.team/stops/1729"], ["https://mivb.openplanner.team/stops/1522", "https://mivb.openplanner.team/stops/0110225"], ["https://mivb.openplanner.team/stops/1842", "https://mivb.openplanner.team/stops/3506"], ["https://mivb.openplanner.team/stops/0900568", "https://mivb.openplanner.team/stops/1809"], ["https://mivb.openplanner.team/stops/0650165", "https://mivb.openplanner.team/stops/0724"], ["https://mivb.openplanner.team/stops/2608F", "https://mivb.openplanner.team/stops/2669F"], ["https://mivb.openplanner.team/stops/4267", "https://mivb.openplanner.team/stops/8784"], ["https://mivb.openplanner.team/stops/1323", "https://mivb.openplanner.team/stops/9986F"], ["https://mivb.openplanner.team/stops/2217", "https://mivb.openplanner.team/stops/7720103"], ["https://mivb.openplanner.team/stops/2987", "https://mivb.openplanner.team/stops/2988"], ["https://mivb.openplanner.team/stops/1134", "https://mivb.openplanner.team/stops/1873"], ["https://mivb.openplanner.team/stops/3228F", "https://mivb.openplanner.team/stops/4595"], ["https://mivb.openplanner.team/stops/3760", "https://mivb.openplanner.team/stops/7710204"], ["https://mivb.openplanner.team/stops/5015", "https://mivb.openplanner.team/stops/8462"], ["https://mivb.openplanner.team/stops/1855", "https://mivb.openplanner.team/stops/6659F"], ["https://mivb.openplanner.team/stops/0020416", "https://mivb.openplanner.team/stops/0020516"], ["https://mivb.openplanner.team/stops/1102", "https://mivb.openplanner.team/stops/5174F"], ["https://mivb.openplanner.team/stops/0430348", "https://mivb.openplanner.team/stops/0430848"], ["https://mivb.openplanner.team/stops/3114", "https://mivb.openplanner.team/stops/3162"], ["https://mivb.openplanner.team/stops/2226", "https://mivb.openplanner.team/stops/3808"], ["https://mivb.openplanner.team/stops/5080", "https://mivb.openplanner.team/stops/6553"], ["https://mivb.openplanner.team/stops/1813", "https://mivb.openplanner.team/stops/1862"], ["https://mivb.openplanner.team/stops/2313", "https://mivb.openplanner.team/stops/2827"], ["https://mivb.openplanner.team/stops/5009F", "https://mivb.openplanner.team/stops/7770158"], ["https://mivb.openplanner.team/stops/0473F", "https://mivb.openplanner.team/stops/8764"], ["https://mivb.openplanner.team/stops/1652", "https://mivb.openplanner.team/stops/1741"], ["https://mivb.openplanner.team/stops/1232", "https://mivb.openplanner.team/stops/5119"], ["https://mivb.openplanner.team/stops/2665", "https://mivb.openplanner.team/stops/9920F"], ["https://mivb.openplanner.team/stops/6464", "https://mivb.openplanner.team/stops/0060120"], ["https://mivb.openplanner.team/stops/3221", "https://mivb.openplanner.team/stops/3261"], ["https://mivb.openplanner.team/stops/1866", "https://mivb.openplanner.team/stops/0210232"], ["https://mivb.openplanner.team/stops/9680", "https://mivb.openplanner.team/stops/9685"], ["https://mivb.openplanner.team/stops/9751", "https://mivb.openplanner.team/stops/9784B"], ["https://mivb.openplanner.team/stops/1326", "https://mivb.openplanner.team/stops/6809"], ["https://mivb.openplanner.team/stops/3558", "https://mivb.openplanner.team/stops/5468"], ["https://mivb.openplanner.team/stops/3042", "https://mivb.openplanner.team/stops/9779"], ["https://mivb.openplanner.team/stops/1757", "https://mivb.openplanner.team/stops/3553"], ["https://mivb.openplanner.team/stops/1059", "https://mivb.openplanner.team/stops/5409"], ["https://mivb.openplanner.team/stops/5756", "https://mivb.openplanner.team/stops/5756F"], ["https://mivb.openplanner.team/stops/5724", "https://mivb.openplanner.team/stops/5826"], ["https://mivb.openplanner.team/stops/5361F", "https://mivb.openplanner.team/stops/5362"], ["https://mivb.openplanner.team/stops/3251", "https://mivb.openplanner.team/stops/3266"], ["https://mivb.openplanner.team/stops/1419", "https://mivb.openplanner.team/stops/1463"], ["https://mivb.openplanner.team/stops/6203", "https://mivb.openplanner.team/stops/6304"], ["https://mivb.openplanner.team/stops/1642F", "https://mivb.openplanner.team/stops/6201F"], ["https://mivb.openplanner.team/stops/1380", "https://mivb.openplanner.team/stops/5518"], ["https://mivb.openplanner.team/stops/6505", "https://mivb.openplanner.team/stops/6552"], ["https://mivb.openplanner.team/stops/1339", "https://mivb.openplanner.team/stops/8151"], ["https://mivb.openplanner.team/stops/0260137", "https://mivb.openplanner.team/stops/0260237"], ["https://mivb.openplanner.team/stops/4207", "https://mivb.openplanner.team/stops/4259"], ["https://mivb.openplanner.team/stops/1729", "https://mivb.openplanner.team/stops/8042"], ["https://mivb.openplanner.team/stops/2237", "https://mivb.openplanner.team/stops/2238"], ["https://mivb.openplanner.team/stops/1368", "https://mivb.openplanner.team/stops/1606"], ["https://mivb.openplanner.team/stops/1410", "https://mivb.openplanner.team/stops/1578"], ["https://mivb.openplanner.team/stops/1711", "https://mivb.openplanner.team/stops/4207"], ["https://mivb.openplanner.team/stops/8411", "https://mivb.openplanner.team/stops/0410146"], ["https://mivb.openplanner.team/stops/2360", "https://mivb.openplanner.team/stops/3063"], ["https://mivb.openplanner.team/stops/2518", "https://mivb.openplanner.team/stops/5"], ["https://mivb.openplanner.team/stops/2132", "https://mivb.openplanner.team/stops/2133"], ["https://mivb.openplanner.team/stops/2664", "https://mivb.openplanner.team/stops/5964"], ["https://mivb.openplanner.team/stops/2038", "https://mivb.openplanner.team/stops/2085"], ["https://mivb.openplanner.team/stops/3125", "https://mivb.openplanner.team/stops/3562"], ["https://mivb.openplanner.team/stops/1483", "https://mivb.openplanner.team/stops/1488"], ["https://mivb.openplanner.team/stops/2296", "https://mivb.openplanner.team/stops/8012"], ["https://mivb.openplanner.team/stops/2022", "https://mivb.openplanner.team/stops/9851"], ["https://mivb.openplanner.team/stops/1477B", "https://mivb.openplanner.team/stops/8662"], ["https://mivb.openplanner.team/stops/5100B", "https://mivb.openplanner.team/stops/5101B"], ["https://mivb.openplanner.team/stops/6409F", "https://mivb.openplanner.team/stops/6413F"], ["https://mivb.openplanner.team/stops/1582", "https://mivb.openplanner.team/stops/3118"], ["https://mivb.openplanner.team/stops/2125", "https://mivb.openplanner.team/stops/2132"], ["https://mivb.openplanner.team/stops/1419", "https://mivb.openplanner.team/stops/3217"], ["https://mivb.openplanner.team/stops/9783", "https://mivb.openplanner.team/stops/9787"], ["https://mivb.openplanner.team/stops/6481", "https://mivb.openplanner.team/stops/6482"], ["https://mivb.openplanner.team/stops/1673", "https://mivb.openplanner.team/stops/5530"], ["https://mivb.openplanner.team/stops/2264", "https://mivb.openplanner.team/stops/3259B"], ["https://mivb.openplanner.team/stops/4408", "https://mivb.openplanner.team/stops/4449"], ["https://mivb.openplanner.team/stops/3210B", "https://mivb.openplanner.team/stops/3661"], ["https://mivb.openplanner.team/stops/1984B", "https://mivb.openplanner.team/stops/1985G"], ["https://mivb.openplanner.team/stops/5041B", "https://mivb.openplanner.team/stops/5363"], ["https://mivb.openplanner.team/stops/1724", "https://mivb.openplanner.team/stops/1725"], ["https://mivb.openplanner.team/stops/2312", "https://mivb.openplanner.team/stops/2819"], ["https://mivb.openplanner.team/stops/0705", "https://mivb.openplanner.team/stops/0723"], ["https://mivb.openplanner.team/stops/2572", "https://mivb.openplanner.team/stops/2573B"], ["https://mivb.openplanner.team/stops/2016", "https://mivb.openplanner.team/stops/2018"], ["https://mivb.openplanner.team/stops/3407", "https://mivb.openplanner.team/stops/5803G"], ["https://mivb.openplanner.team/stops/2917", "https://mivb.openplanner.team/stops/3299"], ["https://mivb.openplanner.team/stops/2418", "https://mivb.openplanner.team/stops/0340141"], ["https://mivb.openplanner.team/stops/0526", "https://mivb.openplanner.team/stops/1644F"], ["https://mivb.openplanner.team/stops/6162", "https://mivb.openplanner.team/stops/6428"], ["https://mivb.openplanner.team/stops/4310", "https://mivb.openplanner.team/stops/4357"], ["https://mivb.openplanner.team/stops/2260F", "https://mivb.openplanner.team/stops/8371"], ["https://mivb.openplanner.team/stops/1931", "https://mivb.openplanner.team/stops/1961B"], ["https://mivb.openplanner.team/stops/5359", "https://mivb.openplanner.team/stops/7762"], ["https://mivb.openplanner.team/stops/3204", "https://mivb.openplanner.team/stops/3317"], ["https://mivb.openplanner.team/stops/1415", "https://mivb.openplanner.team/stops/1584"], ["https://mivb.openplanner.team/stops/2603", "https://mivb.openplanner.team/stops/2667"], ["https://mivb.openplanner.team/stops/2459", "https://mivb.openplanner.team/stops/2463"], ["https://mivb.openplanner.team/stops/3401", "https://mivb.openplanner.team/stops/3765"], ["https://mivb.openplanner.team/stops/2308", "https://mivb.openplanner.team/stops/2337F"], ["https://mivb.openplanner.team/stops/2017", "https://mivb.openplanner.team/stops/2041"], ["https://mivb.openplanner.team/stops/4122", "https://mivb.openplanner.team/stops/4126"], ["https://mivb.openplanner.team/stops/1675F", "https://mivb.openplanner.team/stops/6867F"], ["https://mivb.openplanner.team/stops/1002", "https://mivb.openplanner.team/stops/1124"], ["https://mivb.openplanner.team/stops/5271F", "https://mivb.openplanner.team/stops/5281G"], ["https://mivb.openplanner.team/stops/2410", "https://mivb.openplanner.team/stops/2936"], ["https://mivb.openplanner.team/stops/6314", "https://mivb.openplanner.team/stops/6361"], ["https://mivb.openplanner.team/stops/0020116", "https://mivb.openplanner.team/stops/0020616"], ["https://mivb.openplanner.team/stops/1673", "https://mivb.openplanner.team/stops/2017"], ["https://mivb.openplanner.team/stops/3282", "https://mivb.openplanner.team/stops/6005"], ["https://mivb.openplanner.team/stops/2146", "https://mivb.openplanner.team/stops/2147B"], ["https://mivb.openplanner.team/stops/5418", "https://mivb.openplanner.team/stops/5455"], ["https://mivb.openplanner.team/stops/7750160", "https://mivb.openplanner.team/stops/60"], ["https://mivb.openplanner.team/stops/2115", "https://mivb.openplanner.team/stops/4311"], ["https://mivb.openplanner.team/stops/1853", "https://mivb.openplanner.team/stops/5659"], ["https://mivb.openplanner.team/stops/1322", "https://mivb.openplanner.team/stops/5253"], ["https://mivb.openplanner.team/stops/2575", "https://mivb.openplanner.team/stops/5078F"], ["https://mivb.openplanner.team/stops/1906", "https://mivb.openplanner.team/stops/5611"], ["https://mivb.openplanner.team/stops/4318", "https://mivb.openplanner.team/stops/5422"], ["https://mivb.openplanner.team/stops/2531", "https://mivb.openplanner.team/stops/0350140"], ["https://mivb.openplanner.team/stops/1943", "https://mivb.openplanner.team/stops/5060"], ["https://mivb.openplanner.team/stops/3218", "https://mivb.openplanner.team/stops/6082"], ["https://mivb.openplanner.team/stops/5152", "https://mivb.openplanner.team/stops/5719H"], ["https://mivb.openplanner.team/stops/1627", "https://mivb.openplanner.team/stops/1631"], ["https://mivb.openplanner.team/stops/0900268", "https://mivb.openplanner.team/stops/2285G"], ["https://mivb.openplanner.team/stops/3613F", "https://mivb.openplanner.team/stops/6799F"], ["https://mivb.openplanner.team/stops/3763", "https://mivb.openplanner.team/stops/3766"], ["https://mivb.openplanner.team/stops/1097", "https://mivb.openplanner.team/stops/1197"], ["https://mivb.openplanner.team/stops/1465", "https://mivb.openplanner.team/stops/0270114"], ["https://mivb.openplanner.team/stops/1937", "https://mivb.openplanner.team/stops/5825"], ["https://mivb.openplanner.team/stops/3450", "https://mivb.openplanner.team/stops/4556"], ["https://mivb.openplanner.team/stops/8112", "https://mivb.openplanner.team/stops/0110225"], ["https://mivb.openplanner.team/stops/3263F", "https://mivb.openplanner.team/stops/4595"], ["https://mivb.openplanner.team/stops/6005", "https://mivb.openplanner.team/stops/8733"], ["https://mivb.openplanner.team/stops/3235", "https://mivb.openplanner.team/stops/4659"], ["https://mivb.openplanner.team/stops/1105", "https://mivb.openplanner.team/stops/4655"], ["https://mivb.openplanner.team/stops/2144", "https://mivb.openplanner.team/stops/2718"], ["https://mivb.openplanner.team/stops/1303", "https://mivb.openplanner.team/stops/2508"], ["https://mivb.openplanner.team/stops/2285G", "https://mivb.openplanner.team/stops/0070621"], ["https://mivb.openplanner.team/stops/5414F", "https://mivb.openplanner.team/stops/5459"], ["https://mivb.openplanner.team/stops/1180", "https://mivb.openplanner.team/stops/1626"], ["https://mivb.openplanner.team/stops/1777B", "https://mivb.openplanner.team/stops/3160"], ["https://mivb.openplanner.team/stops/4257", "https://mivb.openplanner.team/stops/4276"], ["https://mivb.openplanner.team/stops/1514", "https://mivb.openplanner.team/stops/6204"], ["https://mivb.openplanner.team/stops/3240", "https://mivb.openplanner.team/stops/3403"], ["https://mivb.openplanner.team/stops/0040118", "https://mivb.openplanner.team/stops/0300245"], ["https://mivb.openplanner.team/stops/1539", "https://mivb.openplanner.team/stops/3959"], ["https://mivb.openplanner.team/stops/4022", "https://mivb.openplanner.team/stops/7740101"], ["https://mivb.openplanner.team/stops/1682F", "https://mivb.openplanner.team/stops/1722"], ["https://mivb.openplanner.team/stops/3233", "https://mivb.openplanner.team/stops/3234"], ["https://mivb.openplanner.team/stops/4602", "https://mivb.openplanner.team/stops/4653"], ["https://mivb.openplanner.team/stops/2664", "https://mivb.openplanner.team/stops/5720F"], ["https://mivb.openplanner.team/stops/2294B", "https://mivb.openplanner.team/stops/3280"], ["https://mivb.openplanner.team/stops/1258B", "https://mivb.openplanner.team/stops/1258G"], ["https://mivb.openplanner.team/stops/3226B", "https://mivb.openplanner.team/stops/3226F"], ["https://mivb.openplanner.team/stops/5804G", "https://mivb.openplanner.team/stops/7252B"], ["https://mivb.openplanner.team/stops/1018", "https://mivb.openplanner.team/stops/1201"], ["https://mivb.openplanner.team/stops/1387", "https://mivb.openplanner.team/stops/1635"], ["https://mivb.openplanner.team/stops/1602", "https://mivb.openplanner.team/stops/5517"], ["https://mivb.openplanner.team/stops/1598", "https://mivb.openplanner.team/stops/3557"], ["https://mivb.openplanner.team/stops/5022", "https://mivb.openplanner.team/stops/6420G"], ["https://mivb.openplanner.team/stops/1751", "https://mivb.openplanner.team/stops/6468"], ["https://mivb.openplanner.team/stops/4053G", "https://mivb.openplanner.team/stops/6071"], ["https://mivb.openplanner.team/stops/1639", "https://mivb.openplanner.team/stops/1830"], ["https://mivb.openplanner.team/stops/6456F", "https://mivb.openplanner.team/stops/6459"], ["https://mivb.openplanner.team/stops/1822", "https://mivb.openplanner.team/stops/1853"], ["https://mivb.openplanner.team/stops/1159", "https://mivb.openplanner.team/stops/6024"], ["https://mivb.openplanner.team/stops/3814", "https://mivb.openplanner.team/stops/5964"], ["https://mivb.openplanner.team/stops/1348", "https://mivb.openplanner.team/stops/1350"], ["https://mivb.openplanner.team/stops/2898", "https://mivb.openplanner.team/stops/6461"], ["https://mivb.openplanner.team/stops/1725", "https://mivb.openplanner.team/stops/2086"], ["https://mivb.openplanner.team/stops/3201", "https://mivb.openplanner.team/stops/3335F"], ["https://mivb.openplanner.team/stops/1314", "https://mivb.openplanner.team/stops/5165"], ["https://mivb.openplanner.team/stops/2325", "https://mivb.openplanner.team/stops/6168"], ["https://mivb.openplanner.team/stops/4123", "https://mivb.openplanner.team/stops/4130"], ["https://mivb.openplanner.team/stops/2373", "https://mivb.openplanner.team/stops/2518"], ["https://mivb.openplanner.team/stops/1258B", "https://mivb.openplanner.team/stops/5920H"], ["https://mivb.openplanner.team/stops/1166", "https://mivb.openplanner.team/stops/1376B"], ["https://mivb.openplanner.team/stops/1620B", "https://mivb.openplanner.team/stops/1657"], ["https://mivb.openplanner.team/stops/1124", "https://mivb.openplanner.team/stops/0300245"], ["https://mivb.openplanner.team/stops/5776", "https://mivb.openplanner.team/stops/9056F"], ["https://mivb.openplanner.team/stops/3200", "https://mivb.openplanner.team/stops/3276"], ["https://mivb.openplanner.team/stops/3515", "https://mivb.openplanner.team/stops/4308"], ["https://mivb.openplanner.team/stops/4062", "https://mivb.openplanner.team/stops/4165"], ["https://mivb.openplanner.team/stops/0160230", "https://mivb.openplanner.team/stops/8162"], ["https://mivb.openplanner.team/stops/5905", "https://mivb.openplanner.team/stops/5968"], ["https://mivb.openplanner.team/stops/2667", "https://mivb.openplanner.team/stops/2938"], ["https://mivb.openplanner.team/stops/5011", "https://mivb.openplanner.team/stops/5074"], ["https://mivb.openplanner.team/stops/6019", "https://mivb.openplanner.team/stops/6060"], ["https://mivb.openplanner.team/stops/2103", "https://mivb.openplanner.team/stops/2112"], ["https://mivb.openplanner.team/stops/2074", "https://mivb.openplanner.team/stops/4309"], ["https://mivb.openplanner.team/stops/8101", "https://mivb.openplanner.team/stops/0100324"], ["https://mivb.openplanner.team/stops/0724", "https://mivb.openplanner.team/stops/2470"], ["https://mivb.openplanner.team/stops/4347", "https://mivb.openplanner.team/stops/5421"], ["https://mivb.openplanner.team/stops/1063", "https://mivb.openplanner.team/stops/2279"], ["https://mivb.openplanner.team/stops/2926", "https://mivb.openplanner.team/stops/5274F"], ["https://mivb.openplanner.team/stops/8783", "https://mivb.openplanner.team/stops/7780157"], ["https://mivb.openplanner.team/stops/1753", "https://mivb.openplanner.team/stops/2086"], ["https://mivb.openplanner.team/stops/2534", "https://mivb.openplanner.team/stops/7710204"], ["https://mivb.openplanner.team/stops/1144", "https://mivb.openplanner.team/stops/1165"], ["https://mivb.openplanner.team/stops/2920", "https://mivb.openplanner.team/stops/6082"], ["https://mivb.openplanner.team/stops/1534", "https://mivb.openplanner.team/stops/3200"], ["https://mivb.openplanner.team/stops/6602P", "https://mivb.openplanner.team/stops/6656"], ["https://mivb.openplanner.team/stops/1449", "https://mivb.openplanner.team/stops/5224F"], ["https://mivb.openplanner.team/stops/0610463", "https://mivb.openplanner.team/stops/2264"], ["https://mivb.openplanner.team/stops/4287", "https://mivb.openplanner.team/stops/4340"], ["https://mivb.openplanner.team/stops/1563", "https://mivb.openplanner.team/stops/2247"], ["https://mivb.openplanner.team/stops/2824", "https://mivb.openplanner.team/stops/5773"], ["https://mivb.openplanner.team/stops/1915", "https://mivb.openplanner.team/stops/5254"], ["https://mivb.openplanner.team/stops/1113", "https://mivb.openplanner.team/stops/0080522"], ["https://mivb.openplanner.team/stops/3126", "https://mivb.openplanner.team/stops/3182"], ["https://mivb.openplanner.team/stops/1016", "https://mivb.openplanner.team/stops/1349"], ["https://mivb.openplanner.team/stops/0650265", "https://mivb.openplanner.team/stops/8332"], ["https://mivb.openplanner.team/stops/9556", "https://mivb.openplanner.team/stops/9557"], ["https://mivb.openplanner.team/stops/5255F", "https://mivb.openplanner.team/stops/5256"], ["https://mivb.openplanner.team/stops/1829", "https://mivb.openplanner.team/stops/1846"], ["https://mivb.openplanner.team/stops/2813", "https://mivb.openplanner.team/stops/5700G"], ["https://mivb.openplanner.team/stops/2362B", "https://mivb.openplanner.team/stops/3014"], ["https://mivb.openplanner.team/stops/5519", "https://mivb.openplanner.team/stops/7501"], ["https://mivb.openplanner.team/stops/5459", "https://mivb.openplanner.team/stops/6550"], ["https://mivb.openplanner.team/stops/1318", "https://mivb.openplanner.team/stops/8061"], ["https://mivb.openplanner.team/stops/1132", "https://mivb.openplanner.team/stops/1133"], ["https://mivb.openplanner.team/stops/4152", "https://mivb.openplanner.team/stops/6805F"], ["https://mivb.openplanner.team/stops/3017", "https://mivb.openplanner.team/stops/3018"], ["https://mivb.openplanner.team/stops/2717", "https://mivb.openplanner.team/stops/2759"], ["https://mivb.openplanner.team/stops/1349", "https://mivb.openplanner.team/stops/1356"], ["https://mivb.openplanner.team/stops/1830", "https://mivb.openplanner.team/stops/0130227"], ["https://mivb.openplanner.team/stops/4602", "https://mivb.openplanner.team/stops/4658"], ["https://mivb.openplanner.team/stops/6442", "https://mivb.openplanner.team/stops/0020316"], ["https://mivb.openplanner.team/stops/4212B", "https://mivb.openplanner.team/stops/4271"], ["https://mivb.openplanner.team/stops/5022", "https://mivb.openplanner.team/stops/6253"], ["https://mivb.openplanner.team/stops/0600762", "https://mivb.openplanner.team/stops/0600962"], ["https://mivb.openplanner.team/stops/3172", "https://mivb.openplanner.team/stops/5911"], ["https://mivb.openplanner.team/stops/5041B", "https://mivb.openplanner.team/stops/5041F"], ["https://mivb.openplanner.team/stops/3514", "https://mivb.openplanner.team/stops/4362"], ["https://mivb.openplanner.team/stops/0811", "https://mivb.openplanner.team/stops/0810469"], ["https://mivb.openplanner.team/stops/0801", "https://mivb.openplanner.team/stops/0080222"], ["https://mivb.openplanner.team/stops/1018", "https://mivb.openplanner.team/stops/1486B"], ["https://mivb.openplanner.team/stops/1098", "https://mivb.openplanner.team/stops/4022"], ["https://mivb.openplanner.team/stops/0100424", "https://mivb.openplanner.team/stops/23"], ["https://mivb.openplanner.team/stops/4289", "https://mivb.openplanner.team/stops/4342"], ["https://mivb.openplanner.team/stops/3956", "https://mivb.openplanner.team/stops/4500"], ["https://mivb.openplanner.team/stops/1167", "https://mivb.openplanner.team/stops/1168"], ["https://mivb.openplanner.team/stops/4063", "https://mivb.openplanner.team/stops/4110"], ["https://mivb.openplanner.team/stops/1781", "https://mivb.openplanner.team/stops/5286"], ["https://mivb.openplanner.team/stops/1540", "https://mivb.openplanner.team/stops/3899"], ["https://mivb.openplanner.team/stops/2402", "https://mivb.openplanner.team/stops/6165"], ["https://mivb.openplanner.team/stops/2709F", "https://mivb.openplanner.team/stops/2765"], ["https://mivb.openplanner.team/stops/1252", "https://mivb.openplanner.team/stops/0160130"], ["https://mivb.openplanner.team/stops/7820253", "https://mivb.openplanner.team/stops/53"], ["https://mivb.openplanner.team/stops/0430648", "https://mivb.openplanner.team/stops/0430748"], ["https://mivb.openplanner.team/stops/3629", "https://mivb.openplanner.team/stops/0320443"], ["https://mivb.openplanner.team/stops/2548", "https://mivb.openplanner.team/stops/3802"], ["https://mivb.openplanner.team/stops/5312", "https://mivb.openplanner.team/stops/8211"], ["https://mivb.openplanner.team/stops/3765", "https://mivb.openplanner.team/stops/5046"], ["https://mivb.openplanner.team/stops/3572F", "https://mivb.openplanner.team/stops/6112"], ["https://mivb.openplanner.team/stops/6172", "https://mivb.openplanner.team/stops/6504"], ["https://mivb.openplanner.team/stops/3919", "https://mivb.openplanner.team/stops/0110225"], ["https://mivb.openplanner.team/stops/4076", "https://mivb.openplanner.team/stops/5058"], ["https://mivb.openplanner.team/stops/5058F", "https://mivb.openplanner.team/stops/5854"], ["https://mivb.openplanner.team/stops/1900", "https://mivb.openplanner.team/stops/6413F"], ["https://mivb.openplanner.team/stops/8733", "https://mivb.openplanner.team/stops/8741"], ["https://mivb.openplanner.team/stops/5359", "https://mivb.openplanner.team/stops/6457F"], ["https://mivb.openplanner.team/stops/4109", "https://mivb.openplanner.team/stops/4165"], ["https://mivb.openplanner.team/stops/6603", "https://mivb.openplanner.team/stops/6650G"], ["https://mivb.openplanner.team/stops/5281", "https://mivb.openplanner.team/stops/5556"], ["https://mivb.openplanner.team/stops/1250", "https://mivb.openplanner.team/stops/1251"], ["https://mivb.openplanner.team/stops/1970", "https://mivb.openplanner.team/stops/2152"], ["https://mivb.openplanner.team/stops/2514", "https://mivb.openplanner.team/stops/2564"], ["https://mivb.openplanner.team/stops/6016", "https://mivb.openplanner.team/stops/6369"], ["https://mivb.openplanner.team/stops/1684F", "https://mivb.openplanner.team/stops/1743"], ["https://mivb.openplanner.team/stops/0130227", "https://mivb.openplanner.team/stops/27"], ["https://mivb.openplanner.team/stops/2241G", "https://mivb.openplanner.team/stops/5307G"], ["https://mivb.openplanner.team/stops/5159", "https://mivb.openplanner.team/stops/5175"], ["https://mivb.openplanner.team/stops/1113", "https://mivb.openplanner.team/stops/2289"], ["https://mivb.openplanner.team/stops/1587", "https://mivb.openplanner.team/stops/29"], ["https://mivb.openplanner.team/stops/1117", "https://mivb.openplanner.team/stops/8722"], ["https://mivb.openplanner.team/stops/1807", "https://mivb.openplanner.team/stops/6472"], ["https://mivb.openplanner.team/stops/8793", "https://mivb.openplanner.team/stops/7790356"], ["https://mivb.openplanner.team/stops/1115", "https://mivb.openplanner.team/stops/0290212"], ["https://mivb.openplanner.team/stops/5413F", "https://mivb.openplanner.team/stops/5414F"], ["https://mivb.openplanner.team/stops/4209", "https://mivb.openplanner.team/stops/5471"], ["https://mivb.openplanner.team/stops/2415", "https://mivb.openplanner.team/stops/5917"], ["https://mivb.openplanner.team/stops/1534", "https://mivb.openplanner.team/stops/3462"], ["https://mivb.openplanner.team/stops/1679F", "https://mivb.openplanner.team/stops/4159"], ["https://mivb.openplanner.team/stops/7640211", "https://mivb.openplanner.team/stops/7640311"], ["https://mivb.openplanner.team/stops/5731F", "https://mivb.openplanner.team/stops/5751"], ["https://mivb.openplanner.team/stops/3355", "https://mivb.openplanner.team/stops/0410446"], ["https://mivb.openplanner.team/stops/2305", "https://mivb.openplanner.team/stops/2371"], ["https://mivb.openplanner.team/stops/8371", "https://mivb.openplanner.team/stops/8372"], ["https://mivb.openplanner.team/stops/3018", "https://mivb.openplanner.team/stops/3335F"], ["https://mivb.openplanner.team/stops/2138B", "https://mivb.openplanner.team/stops/2717"], ["https://mivb.openplanner.team/stops/2212", "https://mivb.openplanner.team/stops/3320B"], ["https://mivb.openplanner.team/stops/1158", "https://mivb.openplanner.team/stops/1417B"], ["https://mivb.openplanner.team/stops/3125", "https://mivb.openplanner.team/stops/4366"], ["https://mivb.openplanner.team/stops/4129", "https://mivb.openplanner.team/stops/4267"], ["https://mivb.openplanner.team/stops/1110", "https://mivb.openplanner.team/stops/1935"], ["https://mivb.openplanner.team/stops/3101", "https://mivb.openplanner.team/stops/3175B"], ["https://mivb.openplanner.team/stops/4214", "https://mivb.openplanner.team/stops/8461"], ["https://mivb.openplanner.team/stops/3298", "https://mivb.openplanner.team/stops/6204"], ["https://mivb.openplanner.team/stops/1128", "https://mivb.openplanner.team/stops/6353"], ["https://mivb.openplanner.team/stops/3272", "https://mivb.openplanner.team/stops/3898"], ["https://mivb.openplanner.team/stops/1728", "https://mivb.openplanner.team/stops/1769"], ["https://mivb.openplanner.team/stops/1229", "https://mivb.openplanner.team/stops/5155"], ["https://mivb.openplanner.team/stops/0900568", "https://mivb.openplanner.team/stops/1810"], ["https://mivb.openplanner.team/stops/1129", "https://mivb.openplanner.team/stops/6311"], ["https://mivb.openplanner.team/stops/4315", "https://mivb.openplanner.team/stops/5430"], ["https://mivb.openplanner.team/stops/1712", "https://mivb.openplanner.team/stops/1764"], ["https://mivb.openplanner.team/stops/1614B", "https://mivb.openplanner.team/stops/1659"], ["https://mivb.openplanner.team/stops/2725", "https://mivb.openplanner.team/stops/5270F"], ["https://mivb.openplanner.team/stops/6420G", "https://mivb.openplanner.team/stops/6424F"], ["https://mivb.openplanner.team/stops/0810469", "https://mivb.openplanner.team/stops/1424"], ["https://mivb.openplanner.team/stops/1072", "https://mivb.openplanner.team/stops/1085"], ["https://mivb.openplanner.team/stops/6428", "https://mivb.openplanner.team/stops/6430"], ["https://mivb.openplanner.team/stops/1766", "https://mivb.openplanner.team/stops/1767"], ["https://mivb.openplanner.team/stops/3006", "https://mivb.openplanner.team/stops/0340241"], ["https://mivb.openplanner.team/stops/5298", "https://mivb.openplanner.team/stops/5361F"], ["https://mivb.openplanner.team/stops/1143", "https://mivb.openplanner.team/stops/9779"], ["https://mivb.openplanner.team/stops/6171", "https://mivb.openplanner.team/stops/7790156"], ["https://mivb.openplanner.team/stops/5015", "https://mivb.openplanner.team/stops/0460150"], ["https://mivb.openplanner.team/stops/1197", "https://mivb.openplanner.team/stops/2569"], ["https://mivb.openplanner.team/stops/6406", "https://mivb.openplanner.team/stops/6453"], ["https://mivb.openplanner.team/stops/9169", "https://mivb.openplanner.team/stops/9561"], ["https://mivb.openplanner.team/stops/2972", "https://mivb.openplanner.team/stops/4705"], ["https://mivb.openplanner.team/stops/1008", "https://mivb.openplanner.team/stops/1755"], ["https://mivb.openplanner.team/stops/5810", "https://mivb.openplanner.team/stops/5859"], ["https://mivb.openplanner.team/stops/1067", "https://mivb.openplanner.team/stops/1768"], ["https://mivb.openplanner.team/stops/1202", "https://mivb.openplanner.team/stops/60"], ["https://mivb.openplanner.team/stops/5082", "https://mivb.openplanner.team/stops/5295"], ["https://mivb.openplanner.team/stops/5866", "https://mivb.openplanner.team/stops/7246"], ["https://mivb.openplanner.team/stops/2313", "https://mivb.openplanner.team/stops/2362B"], ["https://mivb.openplanner.team/stops/2078", "https://mivb.openplanner.team/stops/2087"], ["https://mivb.openplanner.team/stops/1056", "https://mivb.openplanner.team/stops/5011"], ["https://mivb.openplanner.team/stops/2498", "https://mivb.openplanner.team/stops/2584"], ["https://mivb.openplanner.team/stops/4205", "https://mivb.openplanner.team/stops/7830252"], ["https://mivb.openplanner.team/stops/1767", "https://mivb.openplanner.team/stops/6804F"], ["https://mivb.openplanner.team/stops/3411", "https://mivb.openplanner.team/stops/3449"], ["https://mivb.openplanner.team/stops/2975", "https://mivb.openplanner.team/stops/3298"], ["https://mivb.openplanner.team/stops/1629", "https://mivb.openplanner.team/stops/9164"], ["https://mivb.openplanner.team/stops/3514", "https://mivb.openplanner.team/stops/3558"], ["https://mivb.openplanner.team/stops/4306", "https://mivb.openplanner.team/stops/5261"], ["https://mivb.openplanner.team/stops/1166", "https://mivb.openplanner.team/stops/6353"], ["https://mivb.openplanner.team/stops/0330342", "https://mivb.openplanner.team/stops/0330442"], ["https://mivb.openplanner.team/stops/1720B", "https://mivb.openplanner.team/stops/1756B"], ["https://mivb.openplanner.team/stops/5028", "https://mivb.openplanner.team/stops/9972F"], ["https://mivb.openplanner.team/stops/5531", "https://mivb.openplanner.team/stops/0080122"], ["https://mivb.openplanner.team/stops/4305", "https://mivb.openplanner.team/stops/6155F"], ["https://mivb.openplanner.team/stops/3042", "https://mivb.openplanner.team/stops/9702"], ["https://mivb.openplanner.team/stops/6408", "https://mivb.openplanner.team/stops/6453"], ["https://mivb.openplanner.team/stops/1643F", "https://mivb.openplanner.team/stops/1645F"], ["https://mivb.openplanner.team/stops/1605", "https://mivb.openplanner.team/stops/5523"], ["https://mivb.openplanner.team/stops/1850", "https://mivb.openplanner.team/stops/5553"], ["https://mivb.openplanner.team/stops/1918", "https://mivb.openplanner.team/stops/5255F"], ["https://mivb.openplanner.team/stops/2362B", "https://mivb.openplanner.team/stops/2822"], ["https://mivb.openplanner.team/stops/1015", "https://mivb.openplanner.team/stops/1085"], ["https://mivb.openplanner.team/stops/7720103", "https://mivb.openplanner.team/stops/8722"], ["https://mivb.openplanner.team/stops/2116B", "https://mivb.openplanner.team/stops/5053G"], ["https://mivb.openplanner.team/stops/8231", "https://mivb.openplanner.team/stops/0230334"], ["https://mivb.openplanner.team/stops/1935", "https://mivb.openplanner.team/stops/9659"], ["https://mivb.openplanner.team/stops/2408", "https://mivb.openplanner.team/stops/5810"], ["https://mivb.openplanner.team/stops/4298", "https://mivb.openplanner.team/stops/0230234"], ["https://mivb.openplanner.team/stops/1114B", "https://mivb.openplanner.team/stops/0470351"], ["https://mivb.openplanner.team/stops/2217F", "https://mivb.openplanner.team/stops/8722"], ["https://mivb.openplanner.team/stops/6103", "https://mivb.openplanner.team/stops/6168F"], ["https://mivb.openplanner.team/stops/2982", "https://mivb.openplanner.team/stops/5801"], ["https://mivb.openplanner.team/stops/1779", "https://mivb.openplanner.team/stops/4369"], ["https://mivb.openplanner.team/stops/6355", "https://mivb.openplanner.team/stops/17"], ["https://mivb.openplanner.team/stops/1617", "https://mivb.openplanner.team/stops/5522"], ["https://mivb.openplanner.team/stops/1483", "https://mivb.openplanner.team/stops/1487"], ["https://mivb.openplanner.team/stops/3299", "https://mivb.openplanner.team/stops/5306G"], ["https://mivb.openplanner.team/stops/3550", "https://mivb.openplanner.team/stops/3552"], ["https://mivb.openplanner.team/stops/6472", "https://mivb.openplanner.team/stops/6473"], ["https://mivb.openplanner.team/stops/4364", "https://mivb.openplanner.team/stops/6155F"], ["https://mivb.openplanner.team/stops/6201F", "https://mivb.openplanner.team/stops/6409F"], ["https://mivb.openplanner.team/stops/1144", "https://mivb.openplanner.team/stops/3012"], ["https://mivb.openplanner.team/stops/3503", "https://mivb.openplanner.team/stops/3567"], ["https://mivb.openplanner.team/stops/5501", "https://mivb.openplanner.team/stops/5531"], ["https://mivb.openplanner.team/stops/6409F", "https://mivb.openplanner.team/stops/6416"], ["https://mivb.openplanner.team/stops/3129", "https://mivb.openplanner.team/stops/3132"], ["https://mivb.openplanner.team/stops/2116B", "https://mivb.openplanner.team/stops/2153"], ["https://mivb.openplanner.team/stops/1559", "https://mivb.openplanner.team/stops/3908"], ["https://mivb.openplanner.team/stops/2241G", "https://mivb.openplanner.team/stops/2248"], ["https://mivb.openplanner.team/stops/8241", "https://mivb.openplanner.team/stops/0240135"], ["https://mivb.openplanner.team/stops/4408", "https://mivb.openplanner.team/stops/4452"], ["https://mivb.openplanner.team/stops/1094", "https://mivb.openplanner.team/stops/4101"], ["https://mivb.openplanner.team/stops/1124", "https://mivb.openplanner.team/stops/1734"], ["https://mivb.openplanner.team/stops/3231", "https://mivb.openplanner.team/stops/6070"], ["https://mivb.openplanner.team/stops/0430148", "https://mivb.openplanner.team/stops/0430548"], ["https://mivb.openplanner.team/stops/2974", "https://mivb.openplanner.team/stops/9296"], ["https://mivb.openplanner.team/stops/4069", "https://mivb.openplanner.team/stops/4221"], ["https://mivb.openplanner.team/stops/1143", "https://mivb.openplanner.team/stops/9786"], ["https://mivb.openplanner.team/stops/1250", "https://mivb.openplanner.team/stops/1921"], ["https://mivb.openplanner.team/stops/0703", "https://mivb.openplanner.team/stops/0725"], ["https://mivb.openplanner.team/stops/1382", "https://mivb.openplanner.team/stops/1386"], ["https://mivb.openplanner.team/stops/1148C", "https://mivb.openplanner.team/stops/0060520"], ["https://mivb.openplanner.team/stops/0705", "https://mivb.openplanner.team/stops/0722"], ["https://mivb.openplanner.team/stops/5074", "https://mivb.openplanner.team/stops/5074F"], ["https://mivb.openplanner.team/stops/5303", "https://mivb.openplanner.team/stops/7998"], ["https://mivb.openplanner.team/stops/2917", "https://mivb.openplanner.team/stops/3298"], ["https://mivb.openplanner.team/stops/4062", "https://mivb.openplanner.team/stops/4109"], ["https://mivb.openplanner.team/stops/6162", "https://mivb.openplanner.team/stops/6427F"], ["https://mivb.openplanner.team/stops/1529", "https://mivb.openplanner.team/stops/1578"], ["https://mivb.openplanner.team/stops/6121F", "https://mivb.openplanner.team/stops/6165"], ["https://mivb.openplanner.team/stops/1737", "https://mivb.openplanner.team/stops/2112"], ["https://mivb.openplanner.team/stops/3113", "https://mivb.openplanner.team/stops/6418F"], ["https://mivb.openplanner.team/stops/2603", "https://mivb.openplanner.team/stops/2667F"], ["https://mivb.openplanner.team/stops/0810269", "https://mivb.openplanner.team/stops/1460"], ["https://mivb.openplanner.team/stops/1675F", "https://mivb.openplanner.team/stops/1676F"], ["https://mivb.openplanner.team/stops/1715", "https://mivb.openplanner.team/stops/5267"], ["https://mivb.openplanner.team/stops/5271F", "https://mivb.openplanner.team/stops/5282F"], ["https://mivb.openplanner.team/stops/3461", "https://mivb.openplanner.team/stops/3898"], ["https://mivb.openplanner.team/stops/3110", "https://mivb.openplanner.team/stops/6364"], ["https://mivb.openplanner.team/stops/3419", "https://mivb.openplanner.team/stops/3470"], ["https://mivb.openplanner.team/stops/8202", "https://mivb.openplanner.team/stops/0200131"], ["https://mivb.openplanner.team/stops/1782", "https://mivb.openplanner.team/stops/6864F"], ["https://mivb.openplanner.team/stops/5018F", "https://mivb.openplanner.team/stops/5066F"], ["https://mivb.openplanner.team/stops/3411", "https://mivb.openplanner.team/stops/7269"], ["https://mivb.openplanner.team/stops/2115", "https://mivb.openplanner.team/stops/4310"], ["https://mivb.openplanner.team/stops/5711F", "https://mivb.openplanner.team/stops/6365"], ["https://mivb.openplanner.team/stops/5014", "https://mivb.openplanner.team/stops/6607"], ["https://mivb.openplanner.team/stops/1777B", "https://mivb.openplanner.team/stops/1880"], ["https://mivb.openplanner.team/stops/1568", "https://mivb.openplanner.team/stops/6059"], ["https://mivb.openplanner.team/stops/3570", "https://mivb.openplanner.team/stops/6158"], ["https://mivb.openplanner.team/stops/1627", "https://mivb.openplanner.team/stops/1629"], ["https://mivb.openplanner.team/stops/4355", "https://mivb.openplanner.team/stops/4454"], ["https://mivb.openplanner.team/stops/1134", "https://mivb.openplanner.team/stops/3912"], ["https://mivb.openplanner.team/stops/2997", "https://mivb.openplanner.team/stops/3448B"], ["https://mivb.openplanner.team/stops/6651", "https://mivb.openplanner.team/stops/6652"], ["https://mivb.openplanner.team/stops/1937", "https://mivb.openplanner.team/stops/5824"], ["https://mivb.openplanner.team/stops/2604F", "https://mivb.openplanner.team/stops/2939B"], ["https://mivb.openplanner.team/stops/0810469", "https://mivb.openplanner.team/stops/2285G"], ["https://mivb.openplanner.team/stops/2524", "https://mivb.openplanner.team/stops/3858"], ["https://mivb.openplanner.team/stops/8741", "https://mivb.openplanner.team/stops/8744"], ["https://mivb.openplanner.team/stops/5025", "https://mivb.openplanner.team/stops/5855"], ["https://mivb.openplanner.team/stops/3502", "https://mivb.openplanner.team/stops/6310F"], ["https://mivb.openplanner.team/stops/1278", "https://mivb.openplanner.team/stops/6155F"], ["https://mivb.openplanner.team/stops/1751", "https://mivb.openplanner.team/stops/0250336"], ["https://mivb.openplanner.team/stops/5725", "https://mivb.openplanner.team/stops/5751"], ["https://mivb.openplanner.team/stops/4314", "https://mivb.openplanner.team/stops/4408"], ["https://mivb.openplanner.team/stops/1769", "https://mivb.openplanner.team/stops/4367B"], ["https://mivb.openplanner.team/stops/2662B", "https://mivb.openplanner.team/stops/2664"], ["https://mivb.openplanner.team/stops/1462", "https://mivb.openplanner.team/stops/6454"], ["https://mivb.openplanner.team/stops/1669", "https://mivb.openplanner.team/stops/5517"], ["https://mivb.openplanner.team/stops/8082", "https://mivb.openplanner.team/stops/0080522"], ["https://mivb.openplanner.team/stops/3238", "https://mivb.openplanner.team/stops/3239"], ["https://mivb.openplanner.team/stops/1073", "https://mivb.openplanner.team/stops/1076"], ["https://mivb.openplanner.team/stops/0040418", "https://mivb.openplanner.team/stops/0040618"], ["https://mivb.openplanner.team/stops/1126", "https://mivb.openplanner.team/stops/0330442"], ["https://mivb.openplanner.team/stops/4288", "https://mivb.openplanner.team/stops/4290"], ["https://mivb.openplanner.team/stops/6353", "https://mivb.openplanner.team/stops/0320443"], ["https://mivb.openplanner.team/stops/0626", "https://mivb.openplanner.team/stops/1227"], ["https://mivb.openplanner.team/stops/2306", "https://mivb.openplanner.team/stops/2413"], ["https://mivb.openplanner.team/stops/7484", "https://mivb.openplanner.team/stops/7998"], ["https://mivb.openplanner.team/stops/5044", "https://mivb.openplanner.team/stops/5046"], ["https://mivb.openplanner.team/stops/1811", "https://mivb.openplanner.team/stops/1861"], ["https://mivb.openplanner.team/stops/6433", "https://mivb.openplanner.team/stops/8301"], ["https://mivb.openplanner.team/stops/6456F", "https://mivb.openplanner.team/stops/6457F"], ["https://mivb.openplanner.team/stops/1511", "https://mivb.openplanner.team/stops/3219"], ["https://mivb.openplanner.team/stops/1822", "https://mivb.openplanner.team/stops/1852"], ["https://mivb.openplanner.team/stops/2460", "https://mivb.openplanner.team/stops/2955"], ["https://mivb.openplanner.team/stops/1408", "https://mivb.openplanner.team/stops/0110125"], ["https://mivb.openplanner.team/stops/1348", "https://mivb.openplanner.team/stops/1349"], ["https://mivb.openplanner.team/stops/3467B", "https://mivb.openplanner.team/stops/4556"], ["https://mivb.openplanner.team/stops/2898", "https://mivb.openplanner.team/stops/6457F"], ["https://mivb.openplanner.team/stops/3624B", "https://mivb.openplanner.team/stops/0320243"], ["https://mivb.openplanner.team/stops/3805", "https://mivb.openplanner.team/stops/6858C"], ["https://mivb.openplanner.team/stops/6068", "https://mivb.openplanner.team/stops/6705F"], ["https://mivb.openplanner.team/stops/3166", "https://mivb.openplanner.team/stops/6364"], ["https://mivb.openplanner.team/stops/6803F", "https://mivb.openplanner.team/stops/6867F"], ["https://mivb.openplanner.team/stops/0670267", "https://mivb.openplanner.team/stops/2463"], ["https://mivb.openplanner.team/stops/4127", "https://mivb.openplanner.team/stops/4266"], ["https://mivb.openplanner.team/stops/3522", "https://mivb.openplanner.team/stops/9551"], ["https://mivb.openplanner.team/stops/1136", "https://mivb.openplanner.team/stops/21"], ["https://mivb.openplanner.team/stops/0820270", "https://mivb.openplanner.team/stops/6448"], ["https://mivb.openplanner.team/stops/2991", "https://mivb.openplanner.team/stops/9703"], ["https://mivb.openplanner.team/stops/3200", "https://mivb.openplanner.team/stops/3274"], ["https://mivb.openplanner.team/stops/6406", "https://mivb.openplanner.team/stops/6408"], ["https://mivb.openplanner.team/stops/8652", "https://mivb.openplanner.team/stops/9660"], ["https://mivb.openplanner.team/stops/1570", "https://mivb.openplanner.team/stops/1571"], ["https://mivb.openplanner.team/stops/2463", "https://mivb.openplanner.team/stops/6165"], ["https://mivb.openplanner.team/stops/8101", "https://mivb.openplanner.team/stops/0100224"], ["https://mivb.openplanner.team/stops/2960", "https://mivb.openplanner.team/stops/7520"], ["https://mivb.openplanner.team/stops/1526", "https://mivb.openplanner.team/stops/2028"], ["https://mivb.openplanner.team/stops/8783", "https://mivb.openplanner.team/stops/8784"], ["https://mivb.openplanner.team/stops/1813", "https://mivb.openplanner.team/stops/2009"], ["https://mivb.openplanner.team/stops/2467", "https://mivb.openplanner.team/stops/7369"], ["https://mivb.openplanner.team/stops/1323", "https://mivb.openplanner.team/stops/6408"], ["https://mivb.openplanner.team/stops/1775", "https://mivb.openplanner.team/stops/6866F"], ["https://mivb.openplanner.team/stops/0270414", "https://mivb.openplanner.team/stops/0270614"], ["https://mivb.openplanner.team/stops/2252", "https://mivb.openplanner.team/stops/6"], ["https://mivb.openplanner.team/stops/4408", "https://mivb.openplanner.team/stops/6469"], ["https://mivb.openplanner.team/stops/3103", "https://mivb.openplanner.team/stops/5965"], ["https://mivb.openplanner.team/stops/3231", "https://mivb.openplanner.team/stops/3282"], ["https://mivb.openplanner.team/stops/4276", "https://mivb.openplanner.team/stops/4277"], ["https://mivb.openplanner.team/stops/8251", "https://mivb.openplanner.team/stops/0250536"], ["https://mivb.openplanner.team/stops/1113", "https://mivb.openplanner.team/stops/0080422"], ["https://mivb.openplanner.team/stops/2824", "https://mivb.openplanner.team/stops/5772"], ["https://mivb.openplanner.team/stops/5872", "https://mivb.openplanner.team/stops/7268"], ["https://mivb.openplanner.team/stops/4159", "https://mivb.openplanner.team/stops/4163"], ["https://mivb.openplanner.team/stops/1059", "https://mivb.openplanner.team/stops/5208"], ["https://mivb.openplanner.team/stops/6103F", "https://mivb.openplanner.team/stops/6123"], ["https://mivb.openplanner.team/stops/3402", "https://mivb.openplanner.team/stops/3702"], ["https://mivb.openplanner.team/stops/2506B", "https://mivb.openplanner.team/stops/2573B"], ["https://mivb.openplanner.team/stops/5040", "https://mivb.openplanner.team/stops/5045"], ["https://mivb.openplanner.team/stops/1307", "https://mivb.openplanner.team/stops/1310"], ["https://mivb.openplanner.team/stops/1423", "https://mivb.openplanner.team/stops/1818"], ["https://mivb.openplanner.team/stops/0650165", "https://mivb.openplanner.team/stops/2402"], ["https://mivb.openplanner.team/stops/8823", "https://mivb.openplanner.team/stops/53"], ["https://mivb.openplanner.team/stops/4004", "https://mivb.openplanner.team/stops/4270F"], ["https://mivb.openplanner.team/stops/2665", "https://mivb.openplanner.team/stops/2669F"], ["https://mivb.openplanner.team/stops/1318", "https://mivb.openplanner.team/stops/8062"], ["https://mivb.openplanner.team/stops/9660", "https://mivb.openplanner.team/stops/9685"], ["https://mivb.openplanner.team/stops/5032G", "https://mivb.openplanner.team/stops/5053B"], ["https://mivb.openplanner.team/stops/2535F", "https://mivb.openplanner.team/stops/5"], ["https://mivb.openplanner.team/stops/2351F", "https://mivb.openplanner.team/stops/3481"], ["https://mivb.openplanner.team/stops/1642F", "https://mivb.openplanner.team/stops/5712F"], ["https://mivb.openplanner.team/stops/0030117", "https://mivb.openplanner.team/stops/17"], ["https://mivb.openplanner.team/stops/6425F", "https://mivb.openplanner.team/stops/6427F"], ["https://mivb.openplanner.team/stops/1317", "https://mivb.openplanner.team/stops/1464"], ["https://mivb.openplanner.team/stops/8814", "https://mivb.openplanner.team/stops/7810254"], ["https://mivb.openplanner.team/stops/4130", "https://mivb.openplanner.team/stops/7790256"], ["https://mivb.openplanner.team/stops/2200F", "https://mivb.openplanner.team/stops/2237"], ["https://mivb.openplanner.team/stops/1098", "https://mivb.openplanner.team/stops/5165"], ["https://mivb.openplanner.team/stops/1751", "https://mivb.openplanner.team/stops/2009"], ["https://mivb.openplanner.team/stops/4550", "https://mivb.openplanner.team/stops/6448"], ["https://mivb.openplanner.team/stops/2905", "https://mivb.openplanner.team/stops/2991"], ["https://mivb.openplanner.team/stops/8142", "https://mivb.openplanner.team/stops/0140228"], ["https://mivb.openplanner.team/stops/6444", "https://mivb.openplanner.team/stops/0020616"], ["https://mivb.openplanner.team/stops/0901", "https://mivb.openplanner.team/stops/0900568"], ["https://mivb.openplanner.team/stops/0801", "https://mivb.openplanner.team/stops/0080322"], ["https://mivb.openplanner.team/stops/5469", "https://mivb.openplanner.team/stops/7520"], ["https://mivb.openplanner.team/stops/6755", "https://mivb.openplanner.team/stops/0280113"], ["https://mivb.openplanner.team/stops/1136", "https://mivb.openplanner.team/stops/0070621"], ["https://mivb.openplanner.team/stops/2972", "https://mivb.openplanner.team/stops/5475"], ["https://mivb.openplanner.team/stops/6649F", "https://mivb.openplanner.team/stops/8281"], ["https://mivb.openplanner.team/stops/3852", "https://mivb.openplanner.team/stops/5757F"], ["https://mivb.openplanner.team/stops/1540", "https://mivb.openplanner.team/stops/3900"], ["https://mivb.openplanner.team/stops/2220F", "https://mivb.openplanner.team/stops/2257B"], ["https://mivb.openplanner.team/stops/1064", "https://mivb.openplanner.team/stops/1198"], ["https://mivb.openplanner.team/stops/1571", "https://mivb.openplanner.team/stops/8411"], ["https://mivb.openplanner.team/stops/3354", "https://mivb.openplanner.team/stops/3358"], ["https://mivb.openplanner.team/stops/5735", "https://mivb.openplanner.team/stops/6411"], ["https://mivb.openplanner.team/stops/4076", "https://mivb.openplanner.team/stops/5058F"], ["https://mivb.openplanner.team/stops/2867", "https://mivb.openplanner.team/stops/2871"], ["https://mivb.openplanner.team/stops/9963F", "https://mivb.openplanner.team/stops/9986F"], ["https://mivb.openplanner.team/stops/6484B", "https://mivb.openplanner.team/stops/6"], ["https://mivb.openplanner.team/stops/5221F", "https://mivb.openplanner.team/stops/9959F"], ["https://mivb.openplanner.team/stops/3331", "https://mivb.openplanner.team/stops/3351"], ["https://mivb.openplanner.team/stops/2519", "https://mivb.openplanner.team/stops/2571"], ["https://mivb.openplanner.team/stops/3468", "https://mivb.openplanner.team/stops/5279F"], ["https://mivb.openplanner.team/stops/3506", "https://mivb.openplanner.team/stops/3620B"], ["https://mivb.openplanner.team/stops/5860", "https://mivb.openplanner.team/stops/5952F"], ["https://mivb.openplanner.team/stops/1270B", "https://mivb.openplanner.team/stops/1474B"], ["https://mivb.openplanner.team/stops/0310344", "https://mivb.openplanner.team/stops/44"], ["https://mivb.openplanner.team/stops/2541", "https://mivb.openplanner.team/stops/0350240"], ["https://mivb.openplanner.team/stops/5420F", "https://mivb.openplanner.team/stops/5453"], ["https://mivb.openplanner.team/stops/3448B", "https://mivb.openplanner.team/stops/5278F"], ["https://mivb.openplanner.team/stops/1807", "https://mivb.openplanner.team/stops/6473"], ["https://mivb.openplanner.team/stops/1196", "https://mivb.openplanner.team/stops/5102F"], ["https://mivb.openplanner.team/stops/3017", "https://mivb.openplanner.team/stops/9311"], ["https://mivb.openplanner.team/stops/2016", "https://mivb.openplanner.team/stops/4309"], ["https://mivb.openplanner.team/stops/2908", "https://mivb.openplanner.team/stops/5961"], ["https://mivb.openplanner.team/stops/2824", "https://mivb.openplanner.team/stops/5704F"], ["https://mivb.openplanner.team/stops/1926B", "https://mivb.openplanner.team/stops/1964"], ["https://mivb.openplanner.team/stops/3450", "https://mivb.openplanner.team/stops/5275F"], ["https://mivb.openplanner.team/stops/3306", "https://mivb.openplanner.team/stops/3307"], ["https://mivb.openplanner.team/stops/3547", "https://mivb.openplanner.team/stops/8241"], ["https://mivb.openplanner.team/stops/4261", "https://mivb.openplanner.team/stops/7830352"], ["https://mivb.openplanner.team/stops/5048", "https://mivb.openplanner.team/stops/6081"], ["https://mivb.openplanner.team/stops/1571", "https://mivb.openplanner.team/stops/6017"], ["https://mivb.openplanner.team/stops/6808G", "https://mivb.openplanner.team/stops/0360239"], ["https://mivb.openplanner.team/stops/1423", "https://mivb.openplanner.team/stops/1856"], ["https://mivb.openplanner.team/stops/3253", "https://mivb.openplanner.team/stops/8381"], ["https://mivb.openplanner.team/stops/6705F", "https://mivb.openplanner.team/stops/6862"], ["https://mivb.openplanner.team/stops/3101", "https://mivb.openplanner.team/stops/3174"], ["https://mivb.openplanner.team/stops/1719", "https://mivb.openplanner.team/stops/3551"], ["https://mivb.openplanner.team/stops/2500", "https://mivb.openplanner.team/stops/0350640"], ["https://mivb.openplanner.team/stops/4314", "https://mivb.openplanner.team/stops/4344"], ["https://mivb.openplanner.team/stops/1587", "https://mivb.openplanner.team/stops/1673"], ["https://mivb.openplanner.team/stops/5911", "https://mivb.openplanner.team/stops/5913"], ["https://mivb.openplanner.team/stops/2286G", "https://mivb.openplanner.team/stops/2287"], ["https://mivb.openplanner.team/stops/1150", "https://mivb.openplanner.team/stops/1458"], ["https://mivb.openplanner.team/stops/2014", "https://mivb.openplanner.team/stops/6469"], ["https://mivb.openplanner.team/stops/2404F", "https://mivb.openplanner.team/stops/2462"], ["https://mivb.openplanner.team/stops/2513", "https://mivb.openplanner.team/stops/4659"], ["https://mivb.openplanner.team/stops/3952", "https://mivb.openplanner.team/stops/3956"], ["https://mivb.openplanner.team/stops/6123", "https://mivb.openplanner.team/stops/6179"], ["https://mivb.openplanner.team/stops/3518B", "https://mivb.openplanner.team/stops/0310544"], ["https://mivb.openplanner.team/stops/2671F", "https://mivb.openplanner.team/stops/6166"], ["https://mivb.openplanner.team/stops/1831", "https://mivb.openplanner.team/stops/1834"], ["https://mivb.openplanner.team/stops/1915", "https://mivb.openplanner.team/stops/1975"], ["https://mivb.openplanner.team/stops/5754", "https://mivb.openplanner.team/stops/5953"], ["https://mivb.openplanner.team/stops/5018F", "https://mivb.openplanner.team/stops/6428"], ["https://mivb.openplanner.team/stops/6428", "https://mivb.openplanner.team/stops/6428F"], ["https://mivb.openplanner.team/stops/1741", "https://mivb.openplanner.team/stops/6931B"], ["https://mivb.openplanner.team/stops/1313", "https://mivb.openplanner.team/stops/5165"], ["https://mivb.openplanner.team/stops/5016F", "https://mivb.openplanner.team/stops/5067"], ["https://mivb.openplanner.team/stops/5256", "https://mivb.openplanner.team/stops/5256F"], ["https://mivb.openplanner.team/stops/2990", "https://mivb.openplanner.team/stops/3761"], ["https://mivb.openplanner.team/stops/2972", "https://mivb.openplanner.team/stops/5404"], ["https://mivb.openplanner.team/stops/1143", "https://mivb.openplanner.team/stops/9780"], ["https://mivb.openplanner.team/stops/3609F", "https://mivb.openplanner.team/stops/3756"], ["https://mivb.openplanner.team/stops/1195", "https://mivb.openplanner.team/stops/5170"], ["https://mivb.openplanner.team/stops/3325", "https://mivb.openplanner.team/stops/6359F"], ["https://mivb.openplanner.team/stops/5460F", "https://mivb.openplanner.team/stops/6550"], ["https://mivb.openplanner.team/stops/1283", "https://mivb.openplanner.team/stops/3182"], ["https://mivb.openplanner.team/stops/2269", "https://mivb.openplanner.team/stops/0430848"], ["https://mivb.openplanner.team/stops/2519", "https://mivb.openplanner.team/stops/4110"], ["https://mivb.openplanner.team/stops/2863", "https://mivb.openplanner.team/stops/6504"], ["https://mivb.openplanner.team/stops/3103", "https://mivb.openplanner.team/stops/3104"], ["https://mivb.openplanner.team/stops/5810", "https://mivb.openplanner.team/stops/5858"], ["https://mivb.openplanner.team/stops/1975", "https://mivb.openplanner.team/stops/5254"], ["https://mivb.openplanner.team/stops/1519", "https://mivb.openplanner.team/stops/3906"], ["https://mivb.openplanner.team/stops/3547", "https://mivb.openplanner.team/stops/3551"], ["https://mivb.openplanner.team/stops/0726", "https://mivb.openplanner.team/stops/3211"], ["https://mivb.openplanner.team/stops/1487", "https://mivb.openplanner.team/stops/3717"], ["https://mivb.openplanner.team/stops/0806", "https://mivb.openplanner.team/stops/2289"], ["https://mivb.openplanner.team/stops/0650265", "https://mivb.openplanner.team/stops/0660166"], ["https://mivb.openplanner.team/stops/1493", "https://mivb.openplanner.team/stops/7670108"], ["https://mivb.openplanner.team/stops/6464", "https://mivb.openplanner.team/stops/8061"], ["https://mivb.openplanner.team/stops/7640311", "https://mivb.openplanner.team/stops/9657"], ["https://mivb.openplanner.team/stops/1903", "https://mivb.openplanner.team/stops/1977"], ["https://mivb.openplanner.team/stops/1823", "https://mivb.openplanner.team/stops/1851"], ["https://mivb.openplanner.team/stops/2217F", "https://mivb.openplanner.team/stops/2260"], ["https://mivb.openplanner.team/stops/2808", "https://mivb.openplanner.team/stops/6504"], ["https://mivb.openplanner.team/stops/1225", "https://mivb.openplanner.team/stops/6601"], ["https://mivb.openplanner.team/stops/3633B", "https://mivb.openplanner.team/stops/6604F"], ["https://mivb.openplanner.team/stops/3851", "https://mivb.openplanner.team/stops/3860"], ["https://mivb.openplanner.team/stops/2982", "https://mivb.openplanner.team/stops/2995"], ["https://mivb.openplanner.team/stops/1513", "https://mivb.openplanner.team/stops/2974"], ["https://mivb.openplanner.team/stops/2813", "https://mivb.openplanner.team/stops/5806"], ["https://mivb.openplanner.team/stops/4594", "https://mivb.openplanner.team/stops/6706"], ["https://mivb.openplanner.team/stops/1315", "https://mivb.openplanner.team/stops/3317"], ["https://mivb.openplanner.team/stops/1724", "https://mivb.openplanner.team/stops/3529"], ["https://mivb.openplanner.team/stops/1260", "https://mivb.openplanner.team/stops/3713"], ["https://mivb.openplanner.team/stops/1125", "https://mivb.openplanner.team/stops/0330442"], ["https://mivb.openplanner.team/stops/2540", "https://mivb.openplanner.team/stops/2541"], ["https://mivb.openplanner.team/stops/4274", "https://mivb.openplanner.team/stops/4958F"], ["https://mivb.openplanner.team/stops/2924", "https://mivb.openplanner.team/stops/3420"], ["https://mivb.openplanner.team/stops/8682", "https://mivb.openplanner.team/stops/7"], ["https://mivb.openplanner.team/stops/1567", "https://mivb.openplanner.team/stops/6082"], ["https://mivb.openplanner.team/stops/2506B", "https://mivb.openplanner.team/stops/6865F"], ["https://mivb.openplanner.team/stops/1935", "https://mivb.openplanner.team/stops/9658"], ["https://mivb.openplanner.team/stops/2122", "https://mivb.openplanner.team/stops/5063"], ["https://mivb.openplanner.team/stops/1321", "https://mivb.openplanner.team/stops/1554"], ["https://mivb.openplanner.team/stops/2603", "https://mivb.openplanner.team/stops/2953"], ["https://mivb.openplanner.team/stops/2604", "https://mivb.openplanner.team/stops/2952B"], ["https://mivb.openplanner.team/stops/5068F", "https://mivb.openplanner.team/stops/7529"], ["https://mivb.openplanner.team/stops/7246", "https://mivb.openplanner.team/stops/7252B"], ["https://mivb.openplanner.team/stops/6473", "https://mivb.openplanner.team/stops/0200231"], ["https://mivb.openplanner.team/stops/2039", "https://mivb.openplanner.team/stops/2041"], ["https://mivb.openplanner.team/stops/2364", "https://mivb.openplanner.team/stops/2819"], ["https://mivb.openplanner.team/stops/5107B", "https://mivb.openplanner.team/stops/5151"], ["https://mivb.openplanner.team/stops/4364", "https://mivb.openplanner.team/stops/6156F"], ["https://mivb.openplanner.team/stops/3513", "https://mivb.openplanner.team/stops/5407"], ["https://mivb.openplanner.team/stops/1018", "https://mivb.openplanner.team/stops/1261"], ["https://mivb.openplanner.team/stops/3180", "https://mivb.openplanner.team/stops/3181"], ["https://mivb.openplanner.team/stops/6409F", "https://mivb.openplanner.team/stops/6416F"], ["https://mivb.openplanner.team/stops/3305", "https://mivb.openplanner.team/stops/5874F"], ["https://mivb.openplanner.team/stops/8321", "https://mivb.openplanner.team/stops/0370543"], ["https://mivb.openplanner.team/stops/1815", "https://mivb.openplanner.team/stops/5503"], ["https://mivb.openplanner.team/stops/4214", "https://mivb.openplanner.team/stops/6755"], ["https://mivb.openplanner.team/stops/0040118", "https://mivb.openplanner.team/stops/17"], ["https://mivb.openplanner.team/stops/2301", "https://mivb.openplanner.team/stops/2828"], ["https://mivb.openplanner.team/stops/3174", "https://mivb.openplanner.team/stops/9292"], ["https://mivb.openplanner.team/stops/0430148", "https://mivb.openplanner.team/stops/0430648"], ["https://mivb.openplanner.team/stops/1143", "https://mivb.openplanner.team/stops/9787"], ["https://mivb.openplanner.team/stops/3510", "https://mivb.openplanner.team/stops/5258"], ["https://mivb.openplanner.team/stops/1184", "https://mivb.openplanner.team/stops/1314"], ["https://mivb.openplanner.team/stops/1283", "https://mivb.openplanner.team/stops/3126"], ["https://mivb.openplanner.team/stops/6483B", "https://mivb.openplanner.team/stops/6812"], ["https://mivb.openplanner.team/stops/5057", "https://mivb.openplanner.team/stops/9972F"], ["https://mivb.openplanner.team/stops/2603", "https://mivb.openplanner.team/stops/2668"], ["https://mivb.openplanner.team/stops/2318G", "https://mivb.openplanner.team/stops/2338F"], ["https://mivb.openplanner.team/stops/2146", "https://mivb.openplanner.team/stops/2150"], ["https://mivb.openplanner.team/stops/3098", "https://mivb.openplanner.team/stops/3171"], ["https://mivb.openplanner.team/stops/2329", "https://mivb.openplanner.team/stops/3001B"], ["https://mivb.openplanner.team/stops/1422", "https://mivb.openplanner.team/stops/1818"], ["https://mivb.openplanner.team/stops/3411", "https://mivb.openplanner.team/stops/7268"], ["https://mivb.openplanner.team/stops/2908", "https://mivb.openplanner.team/stops/3130"], ["https://mivb.openplanner.team/stops/1798", "https://mivb.openplanner.team/stops/3506"], ["https://mivb.openplanner.team/stops/4955F", "https://mivb.openplanner.team/stops/7800155"], ["https://mivb.openplanner.team/stops/3557", "https://mivb.openplanner.team/stops/5265F"], ["https://mivb.openplanner.team/stops/3550", "https://mivb.openplanner.team/stops/4407"], ["https://mivb.openplanner.team/stops/9631", "https://mivb.openplanner.team/stops/9755"], ["https://mivb.openplanner.team/stops/1152", "https://mivb.openplanner.team/stops/0100124"], ["https://mivb.openplanner.team/stops/5729", "https://mivb.openplanner.team/stops/5751"], ["https://mivb.openplanner.team/stops/2531", "https://mivb.openplanner.team/stops/8351"], ["https://mivb.openplanner.team/stops/5102", "https://mivb.openplanner.team/stops/5102F"], ["https://mivb.openplanner.team/stops/2996", "https://mivb.openplanner.team/stops/3448B"], ["https://mivb.openplanner.team/stops/2508", "https://mivb.openplanner.team/stops/5108"], ["https://mivb.openplanner.team/stops/3903", "https://mivb.openplanner.team/stops/3904"], ["https://mivb.openplanner.team/stops/1327", "https://mivb.openplanner.team/stops/2256F"], ["https://mivb.openplanner.team/stops/1615", "https://mivb.openplanner.team/stops/5522"], ["https://mivb.openplanner.team/stops/0470F", "https://mivb.openplanner.team/stops/4116"], ["https://mivb.openplanner.team/stops/1492", "https://mivb.openplanner.team/stops/5296B"], ["https://mivb.openplanner.team/stops/1370", "https://mivb.openplanner.team/stops/0350740"], ["https://mivb.openplanner.team/stops/1926B", "https://mivb.openplanner.team/stops/2764G"], ["https://mivb.openplanner.team/stops/0220233", "https://mivb.openplanner.team/stops/0220333"], ["https://mivb.openplanner.team/stops/1529", "https://mivb.openplanner.team/stops/3899"], ["https://mivb.openplanner.team/stops/8741", "https://mivb.openplanner.team/stops/7740201"], ["https://mivb.openplanner.team/stops/4122", "https://mivb.openplanner.team/stops/8793"], ["https://mivb.openplanner.team/stops/3409", "https://mivb.openplanner.team/stops/5306G"], ["https://mivb.openplanner.team/stops/1157", "https://mivb.openplanner.team/stops/1159"], ["https://mivb.openplanner.team/stops/6173", "https://mivb.openplanner.team/stops/8803"], ["https://mivb.openplanner.team/stops/1984B", "https://mivb.openplanner.team/stops/5816G"], ["https://mivb.openplanner.team/stops/2238", "https://mivb.openplanner.team/stops/5762"], ["https://mivb.openplanner.team/stops/5003", "https://mivb.openplanner.team/stops/5471"], ["https://mivb.openplanner.team/stops/5725", "https://mivb.openplanner.team/stops/5753F"], ["https://mivb.openplanner.team/stops/3902", "https://mivb.openplanner.team/stops/3958"], ["https://mivb.openplanner.team/stops/1539", "https://mivb.openplanner.team/stops/3962"], ["https://mivb.openplanner.team/stops/4250", "https://mivb.openplanner.team/stops/9047"], ["https://mivb.openplanner.team/stops/2974", "https://mivb.openplanner.team/stops/3360F"], ["https://mivb.openplanner.team/stops/2545", "https://mivb.openplanner.team/stops/4232"], ["https://mivb.openplanner.team/stops/1073", "https://mivb.openplanner.team/stops/1076B"], ["https://mivb.openplanner.team/stops/1016", "https://mivb.openplanner.team/stops/2304"], ["https://mivb.openplanner.team/stops/5272F", "https://mivb.openplanner.team/stops/5281"], ["https://mivb.openplanner.team/stops/2145", "https://mivb.openplanner.team/stops/2718"], ["https://mivb.openplanner.team/stops/1943", "https://mivb.openplanner.team/stops/1968"], ["https://mivb.openplanner.team/stops/2238", "https://mivb.openplanner.team/stops/5711F"], ["https://mivb.openplanner.team/stops/2701", "https://mivb.openplanner.team/stops/5817"], ["https://mivb.openplanner.team/stops/3167", "https://mivb.openplanner.team/stops/7762"], ["https://mivb.openplanner.team/stops/5758F", "https://mivb.openplanner.team/stops/6461"], ["https://mivb.openplanner.team/stops/1602", "https://mivb.openplanner.team/stops/5515"], ["https://mivb.openplanner.team/stops/3321", "https://mivb.openplanner.team/stops/3338F"], ["https://mivb.openplanner.team/stops/4288", "https://mivb.openplanner.team/stops/4289"], ["https://mivb.openplanner.team/stops/2207", "https://mivb.openplanner.team/stops/2305"], ["https://mivb.openplanner.team/stops/3282", "https://mivb.openplanner.team/stops/6070"], ["https://mivb.openplanner.team/stops/6702", "https://mivb.openplanner.team/stops/6706"], ["https://mivb.openplanner.team/stops/0626", "https://mivb.openplanner.team/stops/1225"], ["https://mivb.openplanner.team/stops/2899", "https://mivb.openplanner.team/stops/9776"], ["https://mivb.openplanner.team/stops/1386", "https://mivb.openplanner.team/stops/8121"], ["https://mivb.openplanner.team/stops/0120226", "https://mivb.openplanner.team/stops/0120426"], ["https://mivb.openplanner.team/stops/1822", "https://mivb.openplanner.team/stops/1851"], ["https://mivb.openplanner.team/stops/3525", "https://mivb.openplanner.team/stops/5468"], ["https://mivb.openplanner.team/stops/0601162", "https://mivb.openplanner.team/stops/2303"], ["https://mivb.openplanner.team/stops/3713", "https://mivb.openplanner.team/stops/6799F"], ["https://mivb.openplanner.team/stops/1558", "https://mivb.openplanner.team/stops/3959"], ["https://mivb.openplanner.team/stops/3467B", "https://mivb.openplanner.team/stops/4555"], ["https://mivb.openplanner.team/stops/3279", "https://mivb.openplanner.team/stops/3317"], ["https://mivb.openplanner.team/stops/2898", "https://mivb.openplanner.team/stops/6459"], ["https://mivb.openplanner.team/stops/3805", "https://mivb.openplanner.team/stops/6858G"], ["https://mivb.openplanner.team/stops/2026", "https://mivb.openplanner.team/stops/2077"], ["https://mivb.openplanner.team/stops/0600662", "https://mivb.openplanner.team/stops/0600762"], ["https://mivb.openplanner.team/stops/1724", "https://mivb.openplanner.team/stops/1752"], ["https://mivb.openplanner.team/stops/2992", "https://mivb.openplanner.team/stops/3176"], ["https://mivb.openplanner.team/stops/4299", "https://mivb.openplanner.team/stops/4359"], ["https://mivb.openplanner.team/stops/1988", "https://mivb.openplanner.team/stops/0430948"], ["https://mivb.openplanner.team/stops/2209", "https://mivb.openplanner.team/stops/8442"], ["https://mivb.openplanner.team/stops/6809", "https://mivb.openplanner.team/stops/6858C"], ["https://mivb.openplanner.team/stops/4062", "https://mivb.openplanner.team/stops/4169"], ["https://mivb.openplanner.team/stops/0090323", "https://mivb.openplanner.team/stops/23"], ["https://mivb.openplanner.team/stops/4290", "https://mivb.openplanner.team/stops/4319"], ["https://mivb.openplanner.team/stops/1112", "https://mivb.openplanner.team/stops/8764"], ["https://mivb.openplanner.team/stops/2528", "https://mivb.openplanner.team/stops/2672F"], ["https://mivb.openplanner.team/stops/4152", "https://mivb.openplanner.team/stops/5165"], ["https://mivb.openplanner.team/stops/2323", "https://mivb.openplanner.team/stops/2518"], ["https://mivb.openplanner.team/stops/5910", "https://mivb.openplanner.team/stops/9292"], ["https://mivb.openplanner.team/stops/3305", "https://mivb.openplanner.team/stops/3420"], ["https://mivb.openplanner.team/stops/6601", "https://mivb.openplanner.team/stops/6657"], ["https://mivb.openplanner.team/stops/0060420", "https://mivb.openplanner.team/stops/0060520"], ["https://mivb.openplanner.team/stops/2338F", "https://mivb.openplanner.team/stops/5772"], ["https://mivb.openplanner.team/stops/4101", "https://mivb.openplanner.team/stops/4169"], ["https://mivb.openplanner.team/stops/2534", "https://mivb.openplanner.team/stops/8711"], ["https://mivb.openplanner.team/stops/1323", "https://mivb.openplanner.team/stops/6406"], ["https://mivb.openplanner.team/stops/2898", "https://mivb.openplanner.team/stops/5766"], ["https://mivb.openplanner.team/stops/4319", "https://mivb.openplanner.team/stops/5420F"], ["https://mivb.openplanner.team/stops/2916", "https://mivb.openplanner.team/stops/5355"], ["https://mivb.openplanner.team/stops/1416", "https://mivb.openplanner.team/stops/3158B"], ["https://mivb.openplanner.team/stops/1350", "https://mivb.openplanner.team/stops/0440649"], ["https://mivb.openplanner.team/stops/1152", "https://mivb.openplanner.team/stops/23"], ["https://mivb.openplanner.team/stops/3304", "https://mivb.openplanner.team/stops/5048"], ["https://mivb.openplanner.team/stops/8251", "https://mivb.openplanner.team/stops/0250436"], ["https://mivb.openplanner.team/stops/1566", "https://mivb.openplanner.team/stops/9291"], ["https://mivb.openplanner.team/stops/2076", "https://mivb.openplanner.team/stops/5455"], ["https://mivb.openplanner.team/stops/2027", "https://mivb.openplanner.team/stops/2041"], ["https://mivb.openplanner.team/stops/1825", "https://mivb.openplanner.team/stops/1826"], ["https://mivb.openplanner.team/stops/2345", "https://mivb.openplanner.team/stops/3409"], ["https://mivb.openplanner.team/stops/3253F", "https://mivb.openplanner.team/stops/8381"], ["https://mivb.openplanner.team/stops/1016", "https://mivb.openplanner.team/stops/1351"], ["https://mivb.openplanner.team/stops/0430448", "https://mivb.openplanner.team/stops/0430748"], ["https://mivb.openplanner.team/stops/4363", "https://mivb.openplanner.team/stops/5205"], ["https://mivb.openplanner.team/stops/0722", "https://mivb.openplanner.team/stops/2334F"], ["https://mivb.openplanner.team/stops/0631", "https://mivb.openplanner.team/stops/0702"], ["https://mivb.openplanner.team/stops/1162C", "https://mivb.openplanner.team/stops/1769"], ["https://mivb.openplanner.team/stops/2665", "https://mivb.openplanner.team/stops/2669"], ["https://mivb.openplanner.team/stops/1256", "https://mivb.openplanner.team/stops/3233"], ["https://mivb.openplanner.team/stops/1096", "https://mivb.openplanner.team/stops/1108"], ["https://mivb.openplanner.team/stops/6352", "https://mivb.openplanner.team/stops/0330242"], ["https://mivb.openplanner.team/stops/2351F", "https://mivb.openplanner.team/stops/3480"], ["https://mivb.openplanner.team/stops/5072", "https://mivb.openplanner.team/stops/8461"], ["https://mivb.openplanner.team/stops/3503", "https://mivb.openplanner.team/stops/0310444"], ["https://mivb.openplanner.team/stops/0660166", "https://mivb.openplanner.team/stops/6077F"], ["https://mivb.openplanner.team/stops/6425F", "https://mivb.openplanner.team/stops/6430"], ["https://mivb.openplanner.team/stops/5020", "https://mivb.openplanner.team/stops/5064"], ["https://mivb.openplanner.team/stops/1402B", "https://mivb.openplanner.team/stops/1474B"], ["https://mivb.openplanner.team/stops/1986", "https://mivb.openplanner.team/stops/9952G"], ["https://mivb.openplanner.team/stops/2504", "https://mivb.openplanner.team/stops/5078F"], ["https://mivb.openplanner.team/stops/3257", "https://mivb.openplanner.team/stops/4594"], ["https://mivb.openplanner.team/stops/3017", "https://mivb.openplanner.team/stops/3285"], ["https://mivb.openplanner.team/stops/1131B", "https://mivb.openplanner.team/stops/1728"], ["https://mivb.openplanner.team/stops/4002B", "https://mivb.openplanner.team/stops/4002G"], ["https://mivb.openplanner.team/stops/3517", "https://mivb.openplanner.team/stops/3570"], ["https://mivb.openplanner.team/stops/8142", "https://mivb.openplanner.team/stops/0140128"], ["https://mivb.openplanner.team/stops/2608F", "https://mivb.openplanner.team/stops/2662B"], ["https://mivb.openplanner.team/stops/3234", "https://mivb.openplanner.team/stops/3238"], ["https://mivb.openplanner.team/stops/4277", "https://mivb.openplanner.team/stops/5474"], ["https://mivb.openplanner.team/stops/3182", "https://mivb.openplanner.team/stops/5910"], ["https://mivb.openplanner.team/stops/1080", "https://mivb.openplanner.team/stops/1687F"], ["https://mivb.openplanner.team/stops/2534", "https://mivb.openplanner.team/stops/3709"], ["https://mivb.openplanner.team/stops/2220F", "https://mivb.openplanner.team/stops/2257G"], ["https://mivb.openplanner.team/stops/2042", "https://mivb.openplanner.team/stops/0140128"], ["https://mivb.openplanner.team/stops/3284", "https://mivb.openplanner.team/stops/3463"], ["https://mivb.openplanner.team/stops/0670367", "https://mivb.openplanner.team/stops/0722"], ["https://mivb.openplanner.team/stops/5520F", "https://mivb.openplanner.team/stops/9557"], ["https://mivb.openplanner.team/stops/3354", "https://mivb.openplanner.team/stops/0410146"], ["https://mivb.openplanner.team/stops/2327", "https://mivb.openplanner.team/stops/5965"], ["https://mivb.openplanner.team/stops/2306", "https://mivb.openplanner.team/stops/2938"], ["https://mivb.openplanner.team/stops/8834", "https://mivb.openplanner.team/stops/7830152"], ["https://mivb.openplanner.team/stops/0529", "https://mivb.openplanner.team/stops/0531"], ["https://mivb.openplanner.team/stops/1124", "https://mivb.openplanner.team/stops/0040118"], ["https://mivb.openplanner.team/stops/2084", "https://mivb.openplanner.team/stops/9876"], ["https://mivb.openplanner.team/stops/3098", "https://mivb.openplanner.team/stops/5867F"], ["https://mivb.openplanner.team/stops/2809", "https://mivb.openplanner.team/stops/7790556"], ["https://mivb.openplanner.team/stops/1138", "https://mivb.openplanner.team/stops/9983"], ["https://mivb.openplanner.team/stops/1914", "https://mivb.openplanner.team/stops/5254"], ["https://mivb.openplanner.team/stops/5228F", "https://mivb.openplanner.team/stops/0120526"], ["https://mivb.openplanner.team/stops/3008", "https://mivb.openplanner.team/stops/5707"], ["https://mivb.openplanner.team/stops/7780157", "https://mivb.openplanner.team/stops/9027"], ["https://mivb.openplanner.team/stops/1809", "https://mivb.openplanner.team/stops/0210232"], ["https://mivb.openplanner.team/stops/1559", "https://mivb.openplanner.team/stops/1560"], ["https://mivb.openplanner.team/stops/9553", "https://mivb.openplanner.team/stops/9575"], ["https://mivb.openplanner.team/stops/2239", "https://mivb.openplanner.team/stops/5742B"], ["https://mivb.openplanner.team/stops/5420F", "https://mivb.openplanner.team/stops/5454F"], ["https://mivb.openplanner.team/stops/1339", "https://mivb.openplanner.team/stops/1673"], ["https://mivb.openplanner.team/stops/1117", "https://mivb.openplanner.team/stops/7720303"], ["https://mivb.openplanner.team/stops/1986", "https://mivb.openplanner.team/stops/6119F"], ["https://mivb.openplanner.team/stops/1043", "https://mivb.openplanner.team/stops/27"], ["https://mivb.openplanner.team/stops/1718B", "https://mivb.openplanner.team/stops/1812"], ["https://mivb.openplanner.team/stops/5115F", "https://mivb.openplanner.team/stops/6106"], ["https://mivb.openplanner.team/stops/4063", "https://mivb.openplanner.team/stops/9103"], ["https://mivb.openplanner.team/stops/6099", "https://mivb.openplanner.team/stops/6106"], ["https://mivb.openplanner.team/stops/1270B", "https://mivb.openplanner.team/stops/8062"], ["https://mivb.openplanner.team/stops/2216", "https://mivb.openplanner.team/stops/0360239"], ["https://mivb.openplanner.team/stops/2225", "https://mivb.openplanner.team/stops/2252"], ["https://mivb.openplanner.team/stops/0310144", "https://mivb.openplanner.team/stops/44"], ["https://mivb.openplanner.team/stops/5212", "https://mivb.openplanner.team/stops/5253"], ["https://mivb.openplanner.team/stops/3612F", "https://mivb.openplanner.team/stops/7660209"], ["https://mivb.openplanner.team/stops/9605", "https://mivb.openplanner.team/stops/9609"], ["https://mivb.openplanner.team/stops/5722", "https://mivb.openplanner.team/stops/5756F"], ["https://mivb.openplanner.team/stops/1936", "https://mivb.openplanner.team/stops/1954"], ["https://mivb.openplanner.team/stops/3547", "https://mivb.openplanner.team/stops/0240235"], ["https://mivb.openplanner.team/stops/1824", "https://mivb.openplanner.team/stops/1842"], ["https://mivb.openplanner.team/stops/6432", "https://mivb.openplanner.team/stops/0300145"], ["https://mivb.openplanner.team/stops/6808G", "https://mivb.openplanner.team/stops/0360139"], ["https://mivb.openplanner.team/stops/1180", "https://mivb.openplanner.team/stops/6471"], ["https://mivb.openplanner.team/stops/5021", "https://mivb.openplanner.team/stops/6253"], ["https://mivb.openplanner.team/stops/2752", "https://mivb.openplanner.team/stops/5270F"], ["https://mivb.openplanner.team/stops/5720F", "https://mivb.openplanner.team/stops/5964"], ["https://mivb.openplanner.team/stops/6705F", "https://mivb.openplanner.team/stops/6862F"], ["https://mivb.openplanner.team/stops/0900268", "https://mivb.openplanner.team/stops/1866"], ["https://mivb.openplanner.team/stops/2500", "https://mivb.openplanner.team/stops/0350240"], ["https://mivb.openplanner.team/stops/4314", "https://mivb.openplanner.team/stops/4345"], ["https://mivb.openplanner.team/stops/2317", "https://mivb.openplanner.team/stops/9607"], ["https://mivb.openplanner.team/stops/4214", "https://mivb.openplanner.team/stops/0460150"], ["https://mivb.openplanner.team/stops/3281", "https://mivb.openplanner.team/stops/3282"], ["https://mivb.openplanner.team/stops/8062", "https://mivb.openplanner.team/stops/0060520"], ["https://mivb.openplanner.team/stops/6812", "https://mivb.openplanner.team/stops/7690106"], ["https://mivb.openplanner.team/stops/1327", "https://mivb.openplanner.team/stops/3681"], ["https://mivb.openplanner.team/stops/3171", "https://mivb.openplanner.team/stops/5911"], ["https://mivb.openplanner.team/stops/3814", "https://mivb.openplanner.team/stops/3815"], ["https://mivb.openplanner.team/stops/2267", "https://mivb.openplanner.team/stops/2838"], ["https://mivb.openplanner.team/stops/2467", "https://mivb.openplanner.team/stops/2470"], ["https://mivb.openplanner.team/stops/0806", "https://mivb.openplanner.team/stops/0080222"], ["https://mivb.openplanner.team/stops/1454", "https://mivb.openplanner.team/stops/5223F"], ["https://mivb.openplanner.team/stops/2962", "https://mivb.openplanner.team/stops/7527"], ["https://mivb.openplanner.team/stops/3353", "https://mivb.openplanner.team/stops/17"], ["https://mivb.openplanner.team/stops/2513", "https://mivb.openplanner.team/stops/4658"], ["https://mivb.openplanner.team/stops/1601", "https://mivb.openplanner.team/stops/5525"], ["https://mivb.openplanner.team/stops/8773", "https://mivb.openplanner.team/stops/58"], ["https://mivb.openplanner.team/stops/6123", "https://mivb.openplanner.team/stops/6178"], ["https://mivb.openplanner.team/stops/2216", "https://mivb.openplanner.team/stops/3263F"], ["https://mivb.openplanner.team/stops/2318G", "https://mivb.openplanner.team/stops/5742B"], ["https://mivb.openplanner.team/stops/6420G", "https://mivb.openplanner.team/stops/6422F"], ["https://mivb.openplanner.team/stops/1518", "https://mivb.openplanner.team/stops/1561"], ["https://mivb.openplanner.team/stops/2939B", "https://mivb.openplanner.team/stops/5161"], ["https://mivb.openplanner.team/stops/2959", "https://mivb.openplanner.team/stops/6109"], ["https://mivb.openplanner.team/stops/9654", "https://mivb.openplanner.team/stops/9679"], ["https://mivb.openplanner.team/stops/1906", "https://mivb.openplanner.team/stops/1910"], ["https://mivb.openplanner.team/stops/9754B", "https://mivb.openplanner.team/stops/9778"], ["https://mivb.openplanner.team/stops/1616", "https://mivb.openplanner.team/stops/1660B"], ["https://mivb.openplanner.team/stops/1926B", "https://mivb.openplanner.team/stops/5917F"], ["https://mivb.openplanner.team/stops/1144", "https://mivb.openplanner.team/stops/2268"], ["https://mivb.openplanner.team/stops/1529", "https://mivb.openplanner.team/stops/1540"], ["https://mivb.openplanner.team/stops/1143", "https://mivb.openplanner.team/stops/9783"], ["https://mivb.openplanner.team/stops/2903F", "https://mivb.openplanner.team/stops/3175B"], ["https://mivb.openplanner.team/stops/1739", "https://mivb.openplanner.team/stops/5029"], ["https://mivb.openplanner.team/stops/1252", "https://mivb.openplanner.team/stops/8162"], ["https://mivb.openplanner.team/stops/2412", "https://mivb.openplanner.team/stops/2413"], ["https://mivb.openplanner.team/stops/1258B", "https://mivb.openplanner.team/stops/5723B"], ["https://mivb.openplanner.team/stops/2715", "https://mivb.openplanner.team/stops/5208"], ["https://mivb.openplanner.team/stops/6471", "https://mivb.openplanner.team/stops/0290112"], ["https://mivb.openplanner.team/stops/0810369", "https://mivb.openplanner.team/stops/1139"], ["https://mivb.openplanner.team/stops/1244", "https://mivb.openplanner.team/stops/3257F"], ["https://mivb.openplanner.team/stops/2269", "https://mivb.openplanner.team/stops/0430948"], ["https://mivb.openplanner.team/stops/1715", "https://mivb.openplanner.team/stops/4369"], ["https://mivb.openplanner.team/stops/2924", "https://mivb.openplanner.team/stops/5801"], ["https://mivb.openplanner.team/stops/5009F", "https://mivb.openplanner.team/stops/7770258"], ["https://mivb.openplanner.team/stops/2936", "https://mivb.openplanner.team/stops/5120"], ["https://mivb.openplanner.team/stops/1652", "https://mivb.openplanner.team/stops/1739"], ["https://mivb.openplanner.team/stops/3110", "https://mivb.openplanner.team/stops/6303"], ["https://mivb.openplanner.team/stops/2413", "https://mivb.openplanner.team/stops/2415"], ["https://mivb.openplanner.team/stops/1983", "https://mivb.openplanner.team/stops/5610"], ["https://mivb.openplanner.team/stops/1803B", "https://mivb.openplanner.team/stops/3912"], ["https://mivb.openplanner.team/stops/4116", "https://mivb.openplanner.team/stops/4152"], ["https://mivb.openplanner.team/stops/1056", "https://mivb.openplanner.team/stops/5013B"], ["https://mivb.openplanner.team/stops/7640311", "https://mivb.openplanner.team/stops/9656"], ["https://mivb.openplanner.team/stops/5731F", "https://mivb.openplanner.team/stops/9652"], ["https://mivb.openplanner.team/stops/1823", "https://mivb.openplanner.team/stops/1852"], ["https://mivb.openplanner.team/stops/1824", "https://mivb.openplanner.team/stops/3506"], ["https://mivb.openplanner.team/stops/0810169", "https://mivb.openplanner.team/stops/1460"], ["https://mivb.openplanner.team/stops/6369", "https://mivb.openplanner.team/stops/6416F"], ["https://mivb.openplanner.team/stops/5521", "https://mivb.openplanner.team/stops/7501"], ["https://mivb.openplanner.team/stops/6606", "https://mivb.openplanner.team/stops/0270514"], ["https://mivb.openplanner.team/stops/5105", "https://mivb.openplanner.team/stops/5105F"], ["https://mivb.openplanner.team/stops/3042", "https://mivb.openplanner.team/stops/9778"], ["https://mivb.openplanner.team/stops/2027", "https://mivb.openplanner.team/stops/2071"], ["https://mivb.openplanner.team/stops/1970", "https://mivb.openplanner.team/stops/2714"], ["https://mivb.openplanner.team/stops/1525", "https://mivb.openplanner.team/stops/1554"], ["https://mivb.openplanner.team/stops/1871B", "https://mivb.openplanner.team/stops/3912"], ["https://mivb.openplanner.team/stops/5816B", "https://mivb.openplanner.team/stops/5853G"], ["https://mivb.openplanner.team/stops/1818", "https://mivb.openplanner.team/stops/5223F"], ["https://mivb.openplanner.team/stops/1380", "https://mivb.openplanner.team/stops/5521"], ["https://mivb.openplanner.team/stops/5419", "https://mivb.openplanner.team/stops/5455"], ["https://mivb.openplanner.team/stops/4221", "https://mivb.openplanner.team/stops/7830352"], ["https://mivb.openplanner.team/stops/1810", "https://mivb.openplanner.team/stops/32"], ["https://mivb.openplanner.team/stops/1182", "https://mivb.openplanner.team/stops/1313"], ["https://mivb.openplanner.team/stops/1917", "https://mivb.openplanner.team/stops/2131"], ["https://mivb.openplanner.team/stops/2936", "https://mivb.openplanner.team/stops/2955"], ["https://mivb.openplanner.team/stops/1748", "https://mivb.openplanner.team/stops/4163"], ["https://mivb.openplanner.team/stops/4298", "https://mivb.openplanner.team/stops/0230434"], ["https://mivb.openplanner.team/stops/2122", "https://mivb.openplanner.team/stops/5062"], ["https://mivb.openplanner.team/stops/8411", "https://mivb.openplanner.team/stops/0410246"], ["https://mivb.openplanner.team/stops/1144", "https://mivb.openplanner.team/stops/3567"], ["https://mivb.openplanner.team/stops/6657", "https://mivb.openplanner.team/stops/6705F"], ["https://mivb.openplanner.team/stops/1479", "https://mivb.openplanner.team/stops/1480"], ["https://mivb.openplanner.team/stops/5719", "https://mivb.openplanner.team/stops/9920F"], ["https://mivb.openplanner.team/stops/0110325", "https://mivb.openplanner.team/stops/0110425"], ["https://mivb.openplanner.team/stops/1059", "https://mivb.openplanner.team/stops/3562"], ["https://mivb.openplanner.team/stops/1685F", "https://mivb.openplanner.team/stops/1721"], ["https://mivb.openplanner.team/stops/5013B", "https://mivb.openplanner.team/stops/5013F"], ["https://mivb.openplanner.team/stops/4305", "https://mivb.openplanner.team/stops/4363"], ["https://mivb.openplanner.team/stops/2125", "https://mivb.openplanner.team/stops/2131"], ["https://mivb.openplanner.team/stops/3522", "https://mivb.openplanner.team/stops/3529"], ["https://mivb.openplanner.team/stops/2346", "https://mivb.openplanner.team/stops/5357"], ["https://mivb.openplanner.team/stops/1942", "https://mivb.openplanner.team/stops/1943"], ["https://mivb.openplanner.team/stops/5081F", "https://mivb.openplanner.team/stops/5403"], ["https://mivb.openplanner.team/stops/1094", "https://mivb.openplanner.team/stops/4104"], ["https://mivb.openplanner.team/stops/0240135", "https://mivb.openplanner.team/stops/0240535"], ["https://mivb.openplanner.team/stops/1099", "https://mivb.openplanner.team/stops/5102F"], ["https://mivb.openplanner.team/stops/1456", "https://mivb.openplanner.team/stops/5559"], ["https://mivb.openplanner.team/stops/3158", "https://mivb.openplanner.team/stops/3160"], ["https://mivb.openplanner.team/stops/1048F", "https://mivb.openplanner.team/stops/5255F"], ["https://mivb.openplanner.team/stops/2323", "https://mivb.openplanner.team/stops/2535F"], ["https://mivb.openplanner.team/stops/1918", "https://mivb.openplanner.team/stops/1972"], ["https://mivb.openplanner.team/stops/5317G", "https://mivb.openplanner.team/stops/5357"], ["https://mivb.openplanner.team/stops/1382", "https://mivb.openplanner.team/stops/1384"], ["https://mivb.openplanner.team/stops/2137", "https://mivb.openplanner.team/stops/2138B"], ["https://mivb.openplanner.team/stops/1533", "https://mivb.openplanner.team/stops/3900"], ["https://mivb.openplanner.team/stops/2975", "https://mivb.openplanner.team/stops/6258"], ["https://mivb.openplanner.team/stops/6504", "https://mivb.openplanner.team/stops/6505"], ["https://mivb.openplanner.team/stops/2262", "https://mivb.openplanner.team/stops/6705F"], ["https://mivb.openplanner.team/stops/6062", "https://mivb.openplanner.team/stops/9023"], ["https://mivb.openplanner.team/stops/8231", "https://mivb.openplanner.team/stops/33"], ["https://mivb.openplanner.team/stops/1166", "https://mivb.openplanner.team/stops/1703"], ["https://mivb.openplanner.team/stops/9657", "https://mivb.openplanner.team/stops/9659"], ["https://mivb.openplanner.team/stops/2569", "https://mivb.openplanner.team/stops/2570"], ["https://mivb.openplanner.team/stops/2959", "https://mivb.openplanner.team/stops/5064"], ["https://mivb.openplanner.team/stops/2459", "https://mivb.openplanner.team/stops/2463F"], ["https://mivb.openplanner.team/stops/2898", "https://mivb.openplanner.team/stops/3168"], ["https://mivb.openplanner.team/stops/2200F", "https://mivb.openplanner.team/stops/5288"], ["https://mivb.openplanner.team/stops/2546", "https://mivb.openplanner.team/stops/5101B"], ["https://mivb.openplanner.team/stops/2815B", "https://mivb.openplanner.team/stops/5704F"], ["https://mivb.openplanner.team/stops/4104", "https://mivb.openplanner.team/stops/4169"], ["https://mivb.openplanner.team/stops/1675F", "https://mivb.openplanner.team/stops/6866F"], ["https://mivb.openplanner.team/stops/5824", "https://mivb.openplanner.team/stops/5826"], ["https://mivb.openplanner.team/stops/3098", "https://mivb.openplanner.team/stops/3172"], ["https://mivb.openplanner.team/stops/3162", "https://mivb.openplanner.team/stops/6017"], ["https://mivb.openplanner.team/stops/3354", "https://mivb.openplanner.team/stops/6308F"], ["https://mivb.openplanner.team/stops/2511", "https://mivb.openplanner.team/stops/4054G"], ["https://mivb.openplanner.team/stops/4304", "https://mivb.openplanner.team/stops/4365"], ["https://mivb.openplanner.team/stops/3012", "https://mivb.openplanner.team/stops/4324"], ["https://mivb.openplanner.team/stops/3331", "https://mivb.openplanner.team/stops/6442"], ["https://mivb.openplanner.team/stops/5711F", "https://mivb.openplanner.team/stops/6363"], ["https://mivb.openplanner.team/stops/3550", "https://mivb.openplanner.team/stops/4405"], ["https://mivb.openplanner.team/stops/2084", "https://mivb.openplanner.team/stops/2085"], ["https://mivb.openplanner.team/stops/1552", "https://mivb.openplanner.team/stops/2028"], ["https://mivb.openplanner.team/stops/9725", "https://mivb.openplanner.team/stops/9946"], ["https://mivb.openplanner.team/stops/5014", "https://mivb.openplanner.team/stops/6604F"], ["https://mivb.openplanner.team/stops/1318", "https://mivb.openplanner.team/stops/1418B"], ["https://mivb.openplanner.team/stops/2455", "https://mivb.openplanner.team/stops/2668"], ["https://mivb.openplanner.team/stops/0810469", "https://mivb.openplanner.team/stops/69"], ["https://mivb.openplanner.team/stops/5267", "https://mivb.openplanner.team/stops/5311"], ["https://mivb.openplanner.team/stops/1654", "https://mivb.openplanner.team/stops/1842"], ["https://mivb.openplanner.team/stops/4355", "https://mivb.openplanner.team/stops/4403"], ["https://mivb.openplanner.team/stops/5604", "https://mivb.openplanner.team/stops/5657"], ["https://mivb.openplanner.team/stops/4294", "https://mivb.openplanner.team/stops/4310"], ["https://mivb.openplanner.team/stops/5029", "https://mivb.openplanner.team/stops/5056"], ["https://mivb.openplanner.team/stops/5722", "https://mivb.openplanner.team/stops/5920H"], ["https://mivb.openplanner.team/stops/1327", "https://mivb.openplanner.team/stops/2256B"], ["https://mivb.openplanner.team/stops/4956", "https://mivb.openplanner.team/stops/9052"], ["https://mivb.openplanner.team/stops/1310", "https://mivb.openplanner.team/stops/4003G"], ["https://mivb.openplanner.team/stops/1937", "https://mivb.openplanner.team/stops/5826"], ["https://mivb.openplanner.team/stops/7660109", "https://mivb.openplanner.team/stops/9"], ["https://mivb.openplanner.team/stops/2455", "https://mivb.openplanner.team/stops/2954B"], ["https://mivb.openplanner.team/stops/8442", "https://mivb.openplanner.team/stops/0440449"], ["https://mivb.openplanner.team/stops/2408", "https://mivb.openplanner.team/stops/5859"], ["https://mivb.openplanner.team/stops/5017", "https://mivb.openplanner.team/stops/5066"], ["https://mivb.openplanner.team/stops/5722F", "https://mivb.openplanner.team/stops/5923"], ["https://mivb.openplanner.team/stops/3409", "https://mivb.openplanner.team/stops/5305G"], ["https://mivb.openplanner.team/stops/4074B", "https://mivb.openplanner.team/stops/6702"], ["https://mivb.openplanner.team/stops/1166", "https://mivb.openplanner.team/stops/3630"], ["https://mivb.openplanner.team/stops/1498", "https://mivb.openplanner.team/stops/5296B"], ["https://mivb.openplanner.team/stops/5025", "https://mivb.openplanner.team/stops/5856"], ["https://mivb.openplanner.team/stops/3902", "https://mivb.openplanner.team/stops/3959"], ["https://mivb.openplanner.team/stops/0900568", "https://mivb.openplanner.team/stops/1865"], ["https://mivb.openplanner.team/stops/4022", "https://mivb.openplanner.team/stops/7750160"], ["https://mivb.openplanner.team/stops/6468", "https://mivb.openplanner.team/stops/6469"], ["https://mivb.openplanner.team/stops/5352", "https://mivb.openplanner.team/stops/0200231"], ["https://mivb.openplanner.team/stops/8711", "https://mivb.openplanner.team/stops/8712"], ["https://mivb.openplanner.team/stops/1126", "https://mivb.openplanner.team/stops/0330242"], ["https://mivb.openplanner.team/stops/2238", "https://mivb.openplanner.team/stops/5712F"], ["https://mivb.openplanner.team/stops/1602", "https://mivb.openplanner.team/stops/5516"], ["https://mivb.openplanner.team/stops/6117", "https://mivb.openplanner.team/stops/0070621"], ["https://mivb.openplanner.team/stops/1762", "https://mivb.openplanner.team/stops/1806"], ["https://mivb.openplanner.team/stops/1386", "https://mivb.openplanner.team/stops/8122"], ["https://mivb.openplanner.team/stops/0120226", "https://mivb.openplanner.team/stops/0120326"], ["https://mivb.openplanner.team/stops/4205", "https://mivb.openplanner.team/stops/5402"], ["https://mivb.openplanner.team/stops/5508", "https://mivb.openplanner.team/stops/5659"], ["https://mivb.openplanner.team/stops/4059", "https://mivb.openplanner.team/stops/4059F"], ["https://mivb.openplanner.team/stops/2567", "https://mivb.openplanner.team/stops/2568"], ["https://mivb.openplanner.team/stops/1348", "https://mivb.openplanner.team/stops/1351"], ["https://mivb.openplanner.team/stops/0670167", "https://mivb.openplanner.team/stops/2934"], ["https://mivb.openplanner.team/stops/4276", "https://mivb.openplanner.team/stops/9056F"], ["https://mivb.openplanner.team/stops/2412", "https://mivb.openplanner.team/stops/2455"], ["https://mivb.openplanner.team/stops/1271B", "https://mivb.openplanner.team/stops/1548B"], ["https://mivb.openplanner.team/stops/2992", "https://mivb.openplanner.team/stops/3175B"], ["https://mivb.openplanner.team/stops/2299", "https://mivb.openplanner.team/stops/5705"], ["https://mivb.openplanner.team/stops/3449", "https://mivb.openplanner.team/stops/7269"], ["https://mivb.openplanner.team/stops/2977", "https://mivb.openplanner.team/stops/5355"], ["https://mivb.openplanner.team/stops/1620B", "https://mivb.openplanner.team/stops/1656B"], ["https://mivb.openplanner.team/stops/1382", "https://mivb.openplanner.team/stops/1540"], ["https://mivb.openplanner.team/stops/2539", "https://mivb.openplanner.team/stops/2671F"], ["https://mivb.openplanner.team/stops/4299", "https://mivb.openplanner.team/stops/4358"], ["https://mivb.openplanner.team/stops/3177", "https://mivb.openplanner.team/stops/6457F"], ["https://mivb.openplanner.team/stops/2991", "https://mivb.openplanner.team/stops/9725"], ["https://mivb.openplanner.team/stops/1323", "https://mivb.openplanner.team/stops/2134"], ["https://mivb.openplanner.team/stops/3309", "https://mivb.openplanner.team/stops/6203"], ["https://mivb.openplanner.team/stops/3414", "https://mivb.openplanner.team/stops/6210"], ["https://mivb.openplanner.team/stops/6809", "https://mivb.openplanner.team/stops/6858G"], ["https://mivb.openplanner.team/stops/2704", "https://mivb.openplanner.team/stops/2769"], ["https://mivb.openplanner.team/stops/0470F", "https://mivb.openplanner.team/stops/0470351"], ["https://mivb.openplanner.team/stops/6019", "https://mivb.openplanner.team/stops/6059"], ["https://mivb.openplanner.team/stops/2833", "https://mivb.openplanner.team/stops/2837"], ["https://mivb.openplanner.team/stops/4258", "https://mivb.openplanner.team/stops/4267"], ["https://mivb.openplanner.team/stops/8101", "https://mivb.openplanner.team/stops/8102"], ["https://mivb.openplanner.team/stops/6601", "https://mivb.openplanner.team/stops/6656"], ["https://mivb.openplanner.team/stops/1303", "https://mivb.openplanner.team/stops/1313"], ["https://mivb.openplanner.team/stops/2397", "https://mivb.openplanner.team/stops/5468"], ["https://mivb.openplanner.team/stops/1515", "https://mivb.openplanner.team/stops/3251"], ["https://mivb.openplanner.team/stops/1727", "https://mivb.openplanner.team/stops/1732"], ["https://mivb.openplanner.team/stops/5077", "https://mivb.openplanner.team/stops/7780157"], ["https://mivb.openplanner.team/stops/1419", "https://mivb.openplanner.team/stops/6055"], ["https://mivb.openplanner.team/stops/5729", "https://mivb.openplanner.team/stops/5922"], ["https://mivb.openplanner.team/stops/2576", "https://mivb.openplanner.team/stops/7780157"], ["https://mivb.openplanner.team/stops/5826", "https://mivb.openplanner.team/stops/5916F"], ["https://mivb.openplanner.team/stops/4306", "https://mivb.openplanner.team/stops/4363"], ["https://mivb.openplanner.team/stops/8131", "https://mivb.openplanner.team/stops/0130227"], ["https://mivb.openplanner.team/stops/1942", "https://mivb.openplanner.team/stops/4075"], ["https://mivb.openplanner.team/stops/2027", "https://mivb.openplanner.team/stops/2039"], ["https://mivb.openplanner.team/stops/2345", "https://mivb.openplanner.team/stops/3410"], ["https://mivb.openplanner.team/stops/1569B", "https://mivb.openplanner.team/stops/0050419"], ["https://mivb.openplanner.team/stops/0650265", "https://mivb.openplanner.team/stops/0330342"], ["https://mivb.openplanner.team/stops/6866F", "https://mivb.openplanner.team/stops/6867F"], ["https://mivb.openplanner.team/stops/1884", "https://mivb.openplanner.team/stops/3155"], ["https://mivb.openplanner.team/stops/1544", "https://mivb.openplanner.team/stops/5501"], ["https://mivb.openplanner.team/stops/2901", "https://mivb.openplanner.team/stops/3132"], ["https://mivb.openplanner.team/stops/1208", "https://mivb.openplanner.team/stops/1256"], ["https://mivb.openplanner.team/stops/2990", "https://mivb.openplanner.team/stops/5274F"], ["https://mivb.openplanner.team/stops/5040", "https://mivb.openplanner.team/stops/5042"], ["https://mivb.openplanner.team/stops/4217", "https://mivb.openplanner.team/stops/4252"], ["https://mivb.openplanner.team/stops/1256", "https://mivb.openplanner.team/stops/3234"], ["https://mivb.openplanner.team/stops/1418B", "https://mivb.openplanner.team/stops/1474B"], ["https://mivb.openplanner.team/stops/9660", "https://mivb.openplanner.team/stops/9682"], ["https://mivb.openplanner.team/stops/1126", "https://mivb.openplanner.team/stops/6352"], ["https://mivb.openplanner.team/stops/2805", "https://mivb.openplanner.team/stops/2805F"], ["https://mivb.openplanner.team/stops/5277F", "https://mivb.openplanner.team/stops/5874F"], ["https://mivb.openplanner.team/stops/6425F", "https://mivb.openplanner.team/stops/6428F"], ["https://mivb.openplanner.team/stops/4276", "https://mivb.openplanner.team/stops/5400"], ["https://mivb.openplanner.team/stops/2302", "https://mivb.openplanner.team/stops/0010415"], ["https://mivb.openplanner.team/stops/5009", "https://mivb.openplanner.team/stops/5009F"], ["https://mivb.openplanner.team/stops/3017", "https://mivb.openplanner.team/stops/3286B"], ["https://mivb.openplanner.team/stops/2900F", "https://mivb.openplanner.team/stops/2909"], ["https://mivb.openplanner.team/stops/6442", "https://mivb.openplanner.team/stops/0020216"], ["https://mivb.openplanner.team/stops/5963", "https://mivb.openplanner.team/stops/9649"], ["https://mivb.openplanner.team/stops/5814", "https://mivb.openplanner.team/stops/5855F"], ["https://mivb.openplanner.team/stops/1110", "https://mivb.openplanner.team/stops/9685"], ["https://mivb.openplanner.team/stops/5261", "https://mivb.openplanner.team/stops/5266F"], ["https://mivb.openplanner.team/stops/1792", "https://mivb.openplanner.team/stops/6702"], ["https://mivb.openplanner.team/stops/1538B", "https://mivb.openplanner.team/stops/3957"], ["https://mivb.openplanner.team/stops/1656B", "https://mivb.openplanner.team/stops/9578"], ["https://mivb.openplanner.team/stops/3332", "https://mivb.openplanner.team/stops/3355"], ["https://mivb.openplanner.team/stops/3309F", "https://mivb.openplanner.team/stops/6210"], ["https://mivb.openplanner.team/stops/3304", "https://mivb.openplanner.team/stops/3420"], ["https://mivb.openplanner.team/stops/3625B", "https://mivb.openplanner.team/stops/5064"], ["https://mivb.openplanner.team/stops/1825", "https://mivb.openplanner.team/stops/5655"], ["https://mivb.openplanner.team/stops/5480", "https://mivb.openplanner.team/stops/6115F"], ["https://mivb.openplanner.team/stops/3629", "https://mivb.openplanner.team/stops/0320343"], ["https://mivb.openplanner.team/stops/3304", "https://mivb.openplanner.team/stops/3362"], ["https://mivb.openplanner.team/stops/0220133", "https://mivb.openplanner.team/stops/33"], ["https://mivb.openplanner.team/stops/2042", "https://mivb.openplanner.team/stops/0140228"], ["https://mivb.openplanner.team/stops/3284", "https://mivb.openplanner.team/stops/3462"], ["https://mivb.openplanner.team/stops/3332", "https://mivb.openplanner.team/stops/0410246"], ["https://mivb.openplanner.team/stops/5312", "https://mivb.openplanner.team/stops/0210232"], ["https://mivb.openplanner.team/stops/1937", "https://mivb.openplanner.team/stops/1965"], ["https://mivb.openplanner.team/stops/9655", "https://mivb.openplanner.team/stops/9656"], ["https://mivb.openplanner.team/stops/2009", "https://mivb.openplanner.team/stops/2058"], ["https://mivb.openplanner.team/stops/0529", "https://mivb.openplanner.team/stops/0539"], ["https://mivb.openplanner.team/stops/2565", "https://mivb.openplanner.team/stops/3238"], ["https://mivb.openplanner.team/stops/8652", "https://mivb.openplanner.team/stops/9654"], ["https://mivb.openplanner.team/stops/1652", "https://mivb.openplanner.team/stops/6931G"], ["https://mivb.openplanner.team/stops/2318G", "https://mivb.openplanner.team/stops/2824"], ["https://mivb.openplanner.team/stops/3850", "https://mivb.openplanner.team/stops/5964"], ["https://mivb.openplanner.team/stops/1073", "https://mivb.openplanner.team/stops/2325"], ["https://mivb.openplanner.team/stops/2672", "https://mivb.openplanner.team/stops/2672F"], ["https://mivb.openplanner.team/stops/9553", "https://mivb.openplanner.team/stops/9577"], ["https://mivb.openplanner.team/stops/2239", "https://mivb.openplanner.team/stops/5741"], ["https://mivb.openplanner.team/stops/1762", "https://mivb.openplanner.team/stops/5266F"], ["https://mivb.openplanner.team/stops/2109B", "https://mivb.openplanner.team/stops/2762"], ["https://mivb.openplanner.team/stops/5007F", "https://mivb.openplanner.team/stops/5077"], ["https://mivb.openplanner.team/stops/1453", "https://mivb.openplanner.team/stops/4402"], ["https://mivb.openplanner.team/stops/1964", "https://mivb.openplanner.team/stops/2764G"], ["https://mivb.openplanner.team/stops/1196", "https://mivb.openplanner.team/stops/5105"], ["https://mivb.openplanner.team/stops/3103", "https://mivb.openplanner.team/stops/5868"], ["https://mivb.openplanner.team/stops/2610", "https://mivb.openplanner.team/stops/2661"], ["https://mivb.openplanner.team/stops/8793", "https://mivb.openplanner.team/stops/7790256"], ["https://mivb.openplanner.team/stops/1707", "https://mivb.openplanner.team/stops/2212"], ["https://mivb.openplanner.team/stops/3120", "https://mivb.openplanner.team/stops/3156"], ["https://mivb.openplanner.team/stops/2404", "https://mivb.openplanner.team/stops/2459"], ["https://mivb.openplanner.team/stops/1403", "https://mivb.openplanner.team/stops/1515"], ["https://mivb.openplanner.team/stops/5212", "https://mivb.openplanner.team/stops/5254"], ["https://mivb.openplanner.team/stops/3612F", "https://mivb.openplanner.team/stops/7670108"], ["https://mivb.openplanner.team/stops/2322", "https://mivb.openplanner.team/stops/2953"], ["https://mivb.openplanner.team/stops/9605", "https://mivb.openplanner.team/stops/9626"], ["https://mivb.openplanner.team/stops/2218", "https://mivb.openplanner.team/stops/3805"], ["https://mivb.openplanner.team/stops/3547", "https://mivb.openplanner.team/stops/0240135"], ["https://mivb.openplanner.team/stops/1179", "https://mivb.openplanner.team/stops/6471"], ["https://mivb.openplanner.team/stops/4265", "https://mivb.openplanner.team/stops/9056F"], ["https://mivb.openplanner.team/stops/2803", "https://mivb.openplanner.team/stops/6800F"], ["https://mivb.openplanner.team/stops/0040618", "https://mivb.openplanner.team/stops/0300245"], ["https://mivb.openplanner.team/stops/5512", "https://mivb.openplanner.team/stops/5551"], ["https://mivb.openplanner.team/stops/1016", "https://mivb.openplanner.team/stops/2209"], ["https://mivb.openplanner.team/stops/2317", "https://mivb.openplanner.team/stops/9608"], ["https://mivb.openplanner.team/stops/4214", "https://mivb.openplanner.team/stops/8462"], ["https://mivb.openplanner.team/stops/1128", "https://mivb.openplanner.team/stops/6353F"], ["https://mivb.openplanner.team/stops/1545", "https://mivb.openplanner.team/stops/5503"], ["https://mivb.openplanner.team/stops/5741", "https://mivb.openplanner.team/stops/6365"], ["https://mivb.openplanner.team/stops/1205", "https://mivb.openplanner.team/stops/2518"], ["https://mivb.openplanner.team/stops/1142", "https://mivb.openplanner.team/stops/9802"], ["https://mivb.openplanner.team/stops/1240", "https://mivb.openplanner.team/stops/2937B"], ["https://mivb.openplanner.team/stops/2452", "https://mivb.openplanner.team/stops/5953F"], ["https://mivb.openplanner.team/stops/2536", "https://mivb.openplanner.team/stops/2579"], ["https://mivb.openplanner.team/stops/1512", "https://mivb.openplanner.team/stops/9291"], ["https://mivb.openplanner.team/stops/1205", "https://mivb.openplanner.team/stops/2532"], ["https://mivb.openplanner.team/stops/3110", "https://mivb.openplanner.team/stops/3165"], ["https://mivb.openplanner.team/stops/6123", "https://mivb.openplanner.team/stops/6177"], ["https://mivb.openplanner.team/stops/3518B", "https://mivb.openplanner.team/stops/8311"], ["https://mivb.openplanner.team/stops/3005", "https://mivb.openplanner.team/stops/5910"], ["https://mivb.openplanner.team/stops/2282", "https://mivb.openplanner.team/stops/2303"], ["https://mivb.openplanner.team/stops/2566B", "https://mivb.openplanner.team/stops/2567"], ["https://mivb.openplanner.team/stops/6005", "https://mivb.openplanner.team/stops/6070"], ["https://mivb.openplanner.team/stops/9651", "https://mivb.openplanner.team/stops/9683"], ["https://mivb.openplanner.team/stops/0360139", "https://mivb.openplanner.team/stops/39"], ["https://mivb.openplanner.team/stops/8292", "https://mivb.openplanner.team/stops/0290112"], ["https://mivb.openplanner.team/stops/1514", "https://mivb.openplanner.team/stops/6021"], ["https://mivb.openplanner.team/stops/1995", "https://mivb.openplanner.team/stops/5817"], ["https://mivb.openplanner.team/stops/2161", "https://mivb.openplanner.team/stops/2704"], ["https://mivb.openplanner.team/stops/1094", "https://mivb.openplanner.team/stops/4159"], ["https://mivb.openplanner.team/stops/9654", "https://mivb.openplanner.team/stops/9680"], ["https://mivb.openplanner.team/stops/5812F", "https://mivb.openplanner.team/stops/5857"], ["https://mivb.openplanner.team/stops/2972", "https://mivb.openplanner.team/stops/5406"], ["https://mivb.openplanner.team/stops/1051", "https://mivb.openplanner.team/stops/2207"], ["https://mivb.openplanner.team/stops/0070321", "https://mivb.openplanner.team/stops/0070621"], ["https://mivb.openplanner.team/stops/1211B", "https://mivb.openplanner.team/stops/1253B"], ["https://mivb.openplanner.team/stops/1760", "https://mivb.openplanner.team/stops/0220233"], ["https://mivb.openplanner.team/stops/2131", "https://mivb.openplanner.team/stops/2132"], ["https://mivb.openplanner.team/stops/6311", "https://mivb.openplanner.team/stops/6312"], ["https://mivb.openplanner.team/stops/1063", "https://mivb.openplanner.team/stops/1127"], ["https://mivb.openplanner.team/stops/2118", "https://mivb.openplanner.team/stops/4319"], ["https://mivb.openplanner.team/stops/2370", "https://mivb.openplanner.team/stops/6097B"], ["https://mivb.openplanner.team/stops/6471", "https://mivb.openplanner.team/stops/8292"], ["https://mivb.openplanner.team/stops/0702", "https://mivb.openplanner.team/stops/1370"], ["https://mivb.openplanner.team/stops/1190", "https://mivb.openplanner.team/stops/1307F"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/5423"], ["https://mivb.openplanner.team/stops/1954", "https://mivb.openplanner.team/stops/1955"], ["https://mivb.openplanner.team/stops/1273", "https://mivb.openplanner.team/stops/1425"], ["https://mivb.openplanner.team/stops/1067", "https://mivb.openplanner.team/stops/1746"], ["https://mivb.openplanner.team/stops/2463", "https://mivb.openplanner.team/stops/6121F"], ["https://mivb.openplanner.team/stops/4232", "https://mivb.openplanner.team/stops/6172"], ["https://mivb.openplanner.team/stops/4277", "https://mivb.openplanner.team/stops/8823"], ["https://mivb.openplanner.team/stops/2167", "https://mivb.openplanner.team/stops/2771"], ["https://mivb.openplanner.team/stops/2413", "https://mivb.openplanner.team/stops/2414"], ["https://mivb.openplanner.team/stops/6311", "https://mivb.openplanner.team/stops/0310244"], ["https://mivb.openplanner.team/stops/7640311", "https://mivb.openplanner.team/stops/9655"], ["https://mivb.openplanner.team/stops/1016", "https://mivb.openplanner.team/stops/1051"], ["https://mivb.openplanner.team/stops/3628", "https://mivb.openplanner.team/stops/6314"], ["https://mivb.openplanner.team/stops/5211", "https://mivb.openplanner.team/stops/5255F"], ["https://mivb.openplanner.team/stops/2975", "https://mivb.openplanner.team/stops/3299"], ["https://mivb.openplanner.team/stops/1121", "https://mivb.openplanner.team/stops/1143"], ["https://mivb.openplanner.team/stops/1166", "https://mivb.openplanner.team/stops/6312"], ["https://mivb.openplanner.team/stops/3558", "https://mivb.openplanner.team/stops/5461F"], ["https://mivb.openplanner.team/stops/3610G", "https://mivb.openplanner.team/stops/7640111"], ["https://mivb.openplanner.team/stops/6476", "https://mivb.openplanner.team/stops/6477"], ["https://mivb.openplanner.team/stops/5908", "https://mivb.openplanner.team/stops/5961"], ["https://mivb.openplanner.team/stops/3251", "https://mivb.openplanner.team/stops/3707"], ["https://mivb.openplanner.team/stops/5413F", "https://mivb.openplanner.team/stops/6550"], ["https://mivb.openplanner.team/stops/1525", "https://mivb.openplanner.team/stops/1553"], ["https://mivb.openplanner.team/stops/1319", "https://mivb.openplanner.team/stops/3158B"], ["https://mivb.openplanner.team/stops/3164", "https://mivb.openplanner.team/stops/3309"], ["https://mivb.openplanner.team/stops/3042", "https://mivb.openplanner.team/stops/9701"], ["https://mivb.openplanner.team/stops/3404", "https://mivb.openplanner.team/stops/3425"], ["https://mivb.openplanner.team/stops/1094", "https://mivb.openplanner.team/stops/1236"], ["https://mivb.openplanner.team/stops/6469", "https://mivb.openplanner.team/stops/8252"], ["https://mivb.openplanner.team/stops/2015", "https://mivb.openplanner.team/stops/2071"], ["https://mivb.openplanner.team/stops/1386", "https://mivb.openplanner.team/stops/5229F"], ["https://mivb.openplanner.team/stops/5419", "https://mivb.openplanner.team/stops/5454F"], ["https://mivb.openplanner.team/stops/9605", "https://mivb.openplanner.team/stops/9606"], ["https://mivb.openplanner.team/stops/3167", "https://mivb.openplanner.team/stops/5359"], ["https://mivb.openplanner.team/stops/3313", "https://mivb.openplanner.team/stops/6016"], ["https://mivb.openplanner.team/stops/1178", "https://mivb.openplanner.team/stops/3225F"], ["https://mivb.openplanner.team/stops/4956", "https://mivb.openplanner.team/stops/8814"], ["https://mivb.openplanner.team/stops/1498", "https://mivb.openplanner.team/stops/3853"], ["https://mivb.openplanner.team/stops/1563", "https://mivb.openplanner.team/stops/3251"], ["https://mivb.openplanner.team/stops/2932", "https://mivb.openplanner.team/stops/6425F"], ["https://mivb.openplanner.team/stops/8231", "https://mivb.openplanner.team/stops/0230234"], ["https://mivb.openplanner.team/stops/2535B", "https://mivb.openplanner.team/stops/2535F"], ["https://mivb.openplanner.team/stops/2225", "https://mivb.openplanner.team/stops/2535F"], ["https://mivb.openplanner.team/stops/1368", "https://mivb.openplanner.team/stops/1599"], ["https://mivb.openplanner.team/stops/2603", "https://mivb.openplanner.team/stops/2938"], ["https://mivb.openplanner.team/stops/2267", "https://mivb.openplanner.team/stops/0270614"], ["https://mivb.openplanner.team/stops/2308", "https://mivb.openplanner.team/stops/5770F"], ["https://mivb.openplanner.team/stops/2551", "https://mivb.openplanner.team/stops/2555"], ["https://mivb.openplanner.team/stops/2915", "https://mivb.openplanner.team/stops/2977"], ["https://mivb.openplanner.team/stops/1635", "https://mivb.openplanner.team/stops/2087"], ["https://mivb.openplanner.team/stops/2452", "https://mivb.openplanner.team/stops/5917"], ["https://mivb.openplanner.team/stops/2662B", "https://mivb.openplanner.team/stops/2669"], ["https://mivb.openplanner.team/stops/4305", "https://mivb.openplanner.team/stops/4364"], ["https://mivb.openplanner.team/stops/7680107", "https://mivb.openplanner.team/stops/8682"], ["https://mivb.openplanner.team/stops/1328", "https://mivb.openplanner.team/stops/1743"], ["https://mivb.openplanner.team/stops/0020516", "https://mivb.openplanner.team/stops/0020616"], ["https://mivb.openplanner.team/stops/5402", "https://mivb.openplanner.team/stops/5472"], ["https://mivb.openplanner.team/stops/6463F", "https://mivb.openplanner.team/stops/0070521"], ["https://mivb.openplanner.team/stops/1986", "https://mivb.openplanner.team/stops/3517"], ["https://mivb.openplanner.team/stops/2116B", "https://mivb.openplanner.team/stops/2147B"], ["https://mivb.openplanner.team/stops/1280B", "https://mivb.openplanner.team/stops/6158"], ["https://mivb.openplanner.team/stops/4059", "https://mivb.openplanner.team/stops/4062"], ["https://mivb.openplanner.team/stops/1856", "https://mivb.openplanner.team/stops/5555"], ["https://mivb.openplanner.team/stops/2306", "https://mivb.openplanner.team/stops/2322"], ["https://mivb.openplanner.team/stops/0430148", "https://mivb.openplanner.team/stops/0430448"], ["https://mivb.openplanner.team/stops/2279", "https://mivb.openplanner.team/stops/2296"], ["https://mivb.openplanner.team/stops/3549", "https://mivb.openplanner.team/stops/0250536"], ["https://mivb.openplanner.team/stops/1140", "https://mivb.openplanner.team/stops/0090223"], ["https://mivb.openplanner.team/stops/2709F", "https://mivb.openplanner.team/stops/2764G"], ["https://mivb.openplanner.team/stops/1230", "https://mivb.openplanner.team/stops/5100B"], ["https://mivb.openplanner.team/stops/1802", "https://mivb.openplanner.team/stops/1873"], ["https://mivb.openplanner.team/stops/2254", "https://mivb.openplanner.team/stops/6483B"], ["https://mivb.openplanner.team/stops/4360", "https://mivb.openplanner.team/stops/5461F"], ["https://mivb.openplanner.team/stops/1769", "https://mivb.openplanner.team/stops/1906"], ["https://mivb.openplanner.team/stops/2137", "https://mivb.openplanner.team/stops/2140"], ["https://mivb.openplanner.team/stops/1271B", "https://mivb.openplanner.team/stops/1417B"], ["https://mivb.openplanner.team/stops/1245", "https://mivb.openplanner.team/stops/3223B"], ["https://mivb.openplanner.team/stops/4853", "https://mivb.openplanner.team/stops/4857B"], ["https://mivb.openplanner.team/stops/1415", "https://mivb.openplanner.team/stops/1856"], ["https://mivb.openplanner.team/stops/1255", "https://mivb.openplanner.team/stops/3252"], ["https://mivb.openplanner.team/stops/2317", "https://mivb.openplanner.team/stops/3063"], ["https://mivb.openplanner.team/stops/1255", "https://mivb.openplanner.team/stops/3281"], ["https://mivb.openplanner.team/stops/0430848", "https://mivb.openplanner.team/stops/0430948"], ["https://mivb.openplanner.team/stops/1227", "https://mivb.openplanner.team/stops/6602P"], ["https://mivb.openplanner.team/stops/2120", "https://mivb.openplanner.team/stops/2136"], ["https://mivb.openplanner.team/stops/0320143", "https://mivb.openplanner.team/stops/0320243"], ["https://mivb.openplanner.team/stops/1229", "https://mivb.openplanner.team/stops/2555"], ["https://mivb.openplanner.team/stops/8252", "https://mivb.openplanner.team/stops/0250336"], ["https://mivb.openplanner.team/stops/1673", "https://mivb.openplanner.team/stops/2041"], ["https://mivb.openplanner.team/stops/3305", "https://mivb.openplanner.team/stops/3306"], ["https://mivb.openplanner.team/stops/1063", "https://mivb.openplanner.team/stops/2245"], ["https://mivb.openplanner.team/stops/1668", "https://mivb.openplanner.team/stops/5515"], ["https://mivb.openplanner.team/stops/4304", "https://mivb.openplanner.team/stops/4364"], ["https://mivb.openplanner.team/stops/5018F", "https://mivb.openplanner.team/stops/5066"], ["https://mivb.openplanner.team/stops/3317", "https://mivb.openplanner.team/stops/9311"], ["https://mivb.openplanner.team/stops/2287", "https://mivb.openplanner.team/stops/0080422"], ["https://mivb.openplanner.team/stops/9606", "https://mivb.openplanner.team/stops/9607"], ["https://mivb.openplanner.team/stops/1204", "https://mivb.openplanner.team/stops/1489"], ["https://mivb.openplanner.team/stops/4355", "https://mivb.openplanner.team/stops/4402"], ["https://mivb.openplanner.team/stops/5604", "https://mivb.openplanner.team/stops/5656"], ["https://mivb.openplanner.team/stops/5121", "https://mivb.openplanner.team/stops/5915"], ["https://mivb.openplanner.team/stops/2409", "https://mivb.openplanner.team/stops/2459"], ["https://mivb.openplanner.team/stops/1315", "https://mivb.openplanner.team/stops/3321"], ["https://mivb.openplanner.team/stops/4363", "https://mivb.openplanner.team/stops/5264F"], ["https://mivb.openplanner.team/stops/6444", "https://mivb.openplanner.team/stops/0020116"], ["https://mivb.openplanner.team/stops/8741", "https://mivb.openplanner.team/stops/8743"], ["https://mivb.openplanner.team/stops/5017", "https://mivb.openplanner.team/stops/5066F"], ["https://mivb.openplanner.team/stops/1959", "https://mivb.openplanner.team/stops/2167"], ["https://mivb.openplanner.team/stops/1498", "https://mivb.openplanner.team/stops/5297B"], ["https://mivb.openplanner.team/stops/1416", "https://mivb.openplanner.team/stops/1476"], ["https://mivb.openplanner.team/stops/1917", "https://mivb.openplanner.team/stops/1920"], ["https://mivb.openplanner.team/stops/3304", "https://mivb.openplanner.team/stops/6081"], ["https://mivb.openplanner.team/stops/1643F", "https://mivb.openplanner.team/stops/5762"], ["https://mivb.openplanner.team/stops/2086", "https://mivb.openplanner.team/stops/37"], ["https://mivb.openplanner.team/stops/0430248", "https://mivb.openplanner.team/stops/0430348"], ["https://mivb.openplanner.team/stops/5272F", "https://mivb.openplanner.team/stops/5273F"], ["https://mivb.openplanner.team/stops/1133", "https://mivb.openplanner.team/stops/3159"], ["https://mivb.openplanner.team/stops/1840", "https://mivb.openplanner.team/stops/5512"], ["https://mivb.openplanner.team/stops/5031F", "https://mivb.openplanner.team/stops/5054F"], ["https://mivb.openplanner.team/stops/1126", "https://mivb.openplanner.team/stops/0330142"], ["https://mivb.openplanner.team/stops/2856B", "https://mivb.openplanner.team/stops/5086F"], ["https://mivb.openplanner.team/stops/4288", "https://mivb.openplanner.team/stops/4292"], ["https://mivb.openplanner.team/stops/0080322", "https://mivb.openplanner.team/stops/9996"], ["https://mivb.openplanner.team/stops/1811", "https://mivb.openplanner.team/stops/1862"], ["https://mivb.openplanner.team/stops/0821", "https://mivb.openplanner.team/stops/0826"], ["https://mivb.openplanner.team/stops/4804B", "https://mivb.openplanner.team/stops/4857B"], ["https://mivb.openplanner.team/stops/3253F", "https://mivb.openplanner.team/stops/8741"], ["https://mivb.openplanner.team/stops/1929", "https://mivb.openplanner.team/stops/5825"], ["https://mivb.openplanner.team/stops/3624B", "https://mivb.openplanner.team/stops/8321"], ["https://mivb.openplanner.team/stops/2763", "https://mivb.openplanner.team/stops/5255F"], ["https://mivb.openplanner.team/stops/3424", "https://mivb.openplanner.team/stops/5046"], ["https://mivb.openplanner.team/stops/5602", "https://mivb.openplanner.team/stops/5603"], ["https://mivb.openplanner.team/stops/9627", "https://mivb.openplanner.team/stops/9707"], ["https://mivb.openplanner.team/stops/6755", "https://mivb.openplanner.team/stops/8461"], ["https://mivb.openplanner.team/stops/1180", "https://mivb.openplanner.team/stops/4074B"], ["https://mivb.openplanner.team/stops/1127", "https://mivb.openplanner.team/stops/3012"], ["https://mivb.openplanner.team/stops/7730502", "https://mivb.openplanner.team/stops/7730602"], ["https://mivb.openplanner.team/stops/2670", "https://mivb.openplanner.team/stops/2670F"], ["https://mivb.openplanner.team/stops/2539", "https://mivb.openplanner.team/stops/2671"], ["https://mivb.openplanner.team/stops/3467B", "https://mivb.openplanner.team/stops/3468"], ["https://mivb.openplanner.team/stops/2467", "https://mivb.openplanner.team/stops/0340441"], ["https://mivb.openplanner.team/stops/8431", "https://mivb.openplanner.team/stops/8432"], ["https://mivb.openplanner.team/stops/1988", "https://mivb.openplanner.team/stops/0430748"], ["https://mivb.openplanner.team/stops/1229", "https://mivb.openplanner.team/stops/1231"], ["https://mivb.openplanner.team/stops/1712", "https://mivb.openplanner.team/stops/6156F"], ["https://mivb.openplanner.team/stops/5116", "https://mivb.openplanner.team/stops/5757"], ["https://mivb.openplanner.team/stops/0470251", "https://mivb.openplanner.team/stops/8763"], ["https://mivb.openplanner.team/stops/2704", "https://mivb.openplanner.team/stops/2765"], ["https://mivb.openplanner.team/stops/1822", "https://mivb.openplanner.team/stops/5553"], ["https://mivb.openplanner.team/stops/2972", "https://mivb.openplanner.team/stops/7520"], ["https://mivb.openplanner.team/stops/2833", "https://mivb.openplanner.team/stops/2835"], ["https://mivb.openplanner.team/stops/2541", "https://mivb.openplanner.team/stops/6175"], ["https://mivb.openplanner.team/stops/0670267", "https://mivb.openplanner.team/stops/0670367"], ["https://mivb.openplanner.team/stops/3305", "https://mivb.openplanner.team/stops/3425"], ["https://mivb.openplanner.team/stops/1949", "https://mivb.openplanner.team/stops/2702"], ["https://mivb.openplanner.team/stops/2725", "https://mivb.openplanner.team/stops/3524"], ["https://mivb.openplanner.team/stops/6168", "https://mivb.openplanner.team/stops/6168F"], ["https://mivb.openplanner.team/stops/0610463", "https://mivb.openplanner.team/stops/0610563"], ["https://mivb.openplanner.team/stops/6450", "https://mivb.openplanner.team/stops/6454"], ["https://mivb.openplanner.team/stops/1775", "https://mivb.openplanner.team/stops/6867F"], ["https://mivb.openplanner.team/stops/0270414", "https://mivb.openplanner.team/stops/0270514"], ["https://mivb.openplanner.team/stops/1127", "https://mivb.openplanner.team/stops/1800"], ["https://mivb.openplanner.team/stops/2015", "https://mivb.openplanner.team/stops/3334F"], ["https://mivb.openplanner.team/stops/4341", "https://mivb.openplanner.team/stops/5452"], ["https://mivb.openplanner.team/stops/1737", "https://mivb.openplanner.team/stops/2705"], ["https://mivb.openplanner.team/stops/6459", "https://mivb.openplanner.team/stops/6461"], ["https://mivb.openplanner.team/stops/2027", "https://mivb.openplanner.team/stops/2038"], ["https://mivb.openplanner.team/stops/3503", "https://mivb.openplanner.team/stops/6354B"], ["https://mivb.openplanner.team/stops/1236", "https://mivb.openplanner.team/stops/4005F"], ["https://mivb.openplanner.team/stops/1936", "https://mivb.openplanner.team/stops/2157"], ["https://mivb.openplanner.team/stops/1756B", "https://mivb.openplanner.team/stops/4407"], ["https://mivb.openplanner.team/stops/0511", "https://mivb.openplanner.team/stops/1904"], ["https://mivb.openplanner.team/stops/2810", "https://mivb.openplanner.team/stops/2811"], ["https://mivb.openplanner.team/stops/3221", "https://mivb.openplanner.team/stops/3633B"], ["https://mivb.openplanner.team/stops/5086F", "https://mivb.openplanner.team/stops/5700G"], ["https://mivb.openplanner.team/stops/1319", "https://mivb.openplanner.team/stops/3117"], ["https://mivb.openplanner.team/stops/2506B", "https://mivb.openplanner.team/stops/2572"], ["https://mivb.openplanner.team/stops/1415", "https://mivb.openplanner.team/stops/5227F"], ["https://mivb.openplanner.team/stops/5059", "https://mivb.openplanner.team/stops/5812"], ["https://mivb.openplanner.team/stops/2267", "https://mivb.openplanner.team/stops/0440449"], ["https://mivb.openplanner.team/stops/3273", "https://mivb.openplanner.team/stops/3402"], ["https://mivb.openplanner.team/stops/1182", "https://mivb.openplanner.team/stops/1197"], ["https://mivb.openplanner.team/stops/3360F", "https://mivb.openplanner.team/stops/6058"], ["https://mivb.openplanner.team/stops/5507", "https://mivb.openplanner.team/stops/5508"], ["https://mivb.openplanner.team/stops/4071", "https://mivb.openplanner.team/stops/9707"], ["https://mivb.openplanner.team/stops/3308F", "https://mivb.openplanner.team/stops/6210"], ["https://mivb.openplanner.team/stops/6442", "https://mivb.openplanner.team/stops/0020516"], ["https://mivb.openplanner.team/stops/6355F", "https://mivb.openplanner.team/stops/8031"], ["https://mivb.openplanner.team/stops/3762", "https://mivb.openplanner.team/stops/4500"], ["https://mivb.openplanner.team/stops/2823B", "https://mivb.openplanner.team/stops/2853"], ["https://mivb.openplanner.team/stops/3417", "https://mivb.openplanner.team/stops/3458"], ["https://mivb.openplanner.team/stops/2302", "https://mivb.openplanner.team/stops/0010315"], ["https://mivb.openplanner.team/stops/5723B", "https://mivb.openplanner.team/stops/5953"], ["https://mivb.openplanner.team/stops/3017", "https://mivb.openplanner.team/stops/3288"], ["https://mivb.openplanner.team/stops/5963", "https://mivb.openplanner.team/stops/9651"], ["https://mivb.openplanner.team/stops/1712", "https://mivb.openplanner.team/stops/1733"], ["https://mivb.openplanner.team/stops/5814", "https://mivb.openplanner.team/stops/5855"], ["https://mivb.openplanner.team/stops/1110", "https://mivb.openplanner.team/stops/9680"], ["https://mivb.openplanner.team/stops/1823", "https://mivb.openplanner.team/stops/5657"], ["https://mivb.openplanner.team/stops/6472", "https://mivb.openplanner.team/stops/8202"], ["https://mivb.openplanner.team/stops/1538B", "https://mivb.openplanner.team/stops/3958"], ["https://mivb.openplanner.team/stops/9561", "https://mivb.openplanner.team/stops/9600B"], ["https://mivb.openplanner.team/stops/2912", "https://mivb.openplanner.team/stops/3307"], ["https://mivb.openplanner.team/stops/1679F", "https://mivb.openplanner.team/stops/1732"], ["https://mivb.openplanner.team/stops/1714", "https://mivb.openplanner.team/stops/1806"], ["https://mivb.openplanner.team/stops/0230234", "https://mivb.openplanner.team/stops/34"], ["https://mivb.openplanner.team/stops/5469", "https://mivb.openplanner.team/stops/7544"], ["https://mivb.openplanner.team/stops/1719", "https://mivb.openplanner.team/stops/1757"], ["https://mivb.openplanner.team/stops/1239", "https://mivb.openplanner.team/stops/2667F"], ["https://mivb.openplanner.team/stops/0090223", "https://mivb.openplanner.team/stops/23"], ["https://mivb.openplanner.team/stops/6357", "https://mivb.openplanner.team/stops/6357F"], ["https://mivb.openplanner.team/stops/1825", "https://mivb.openplanner.team/stops/5656"], ["https://mivb.openplanner.team/stops/1917", "https://mivb.openplanner.team/stops/5212"], ["https://mivb.openplanner.team/stops/4598", "https://mivb.openplanner.team/stops/4599"], ["https://mivb.openplanner.team/stops/1278", "https://mivb.openplanner.team/stops/5266F"], ["https://mivb.openplanner.team/stops/3332", "https://mivb.openplanner.team/stops/0410346"], ["https://mivb.openplanner.team/stops/3354", "https://mivb.openplanner.team/stops/0410346"], ["https://mivb.openplanner.team/stops/5859", "https://mivb.openplanner.team/stops/6209"], ["https://mivb.openplanner.team/stops/8784", "https://mivb.openplanner.team/stops/7780157"], ["https://mivb.openplanner.team/stops/1315", "https://mivb.openplanner.team/stops/1316"], ["https://mivb.openplanner.team/stops/1408", "https://mivb.openplanner.team/stops/6476"], ["https://mivb.openplanner.team/stops/1236F", "https://mivb.openplanner.team/stops/4101"], ["https://mivb.openplanner.team/stops/2919", "https://mivb.openplanner.team/stops/9291"], ["https://mivb.openplanner.team/stops/2084", "https://mivb.openplanner.team/stops/9851"], ["https://mivb.openplanner.team/stops/3107", "https://mivb.openplanner.team/stops/5320"], ["https://mivb.openplanner.team/stops/6100", "https://mivb.openplanner.team/stops/6171"], ["https://mivb.openplanner.team/stops/1980", "https://mivb.openplanner.team/stops/6158"], ["https://mivb.openplanner.team/stops/5760", "https://mivb.openplanner.team/stops/6459F"], ["https://mivb.openplanner.team/stops/5727F", "https://mivb.openplanner.team/stops/9682"], ["https://mivb.openplanner.team/stops/2611", "https://mivb.openplanner.team/stops/5963"], ["https://mivb.openplanner.team/stops/1015", "https://mivb.openplanner.team/stops/3860"], ["https://mivb.openplanner.team/stops/0600462", "https://mivb.openplanner.team/stops/0600662"], ["https://mivb.openplanner.team/stops/1942", "https://mivb.openplanner.team/stops/5024"], ["https://mivb.openplanner.team/stops/6449", "https://mivb.openplanner.team/stops/6450"], ["https://mivb.openplanner.team/stops/1629", "https://mivb.openplanner.team/stops/9553"], ["https://mivb.openplanner.team/stops/2996", "https://mivb.openplanner.team/stops/5275F"], ["https://mivb.openplanner.team/stops/1124", "https://mivb.openplanner.team/stops/3532"], ["https://mivb.openplanner.team/stops/1814B", "https://mivb.openplanner.team/stops/1862"], ["https://mivb.openplanner.team/stops/6651", "https://mivb.openplanner.team/stops/0440549"], ["https://mivb.openplanner.team/stops/1270B", "https://mivb.openplanner.team/stops/0060420"], ["https://mivb.openplanner.team/stops/6174B", "https://mivb.openplanner.team/stops/6174F"], ["https://mivb.openplanner.team/stops/3508", "https://mivb.openplanner.team/stops/6112"], ["https://mivb.openplanner.team/stops/4857B", "https://mivb.openplanner.team/stops/6956B"], ["https://mivb.openplanner.team/stops/3104", "https://mivb.openplanner.team/stops/5965"], ["https://mivb.openplanner.team/stops/9605", "https://mivb.openplanner.team/stops/9607"], ["https://mivb.openplanner.team/stops/1166", "https://mivb.openplanner.team/stops/2234"], ["https://mivb.openplanner.team/stops/3522", "https://mivb.openplanner.team/stops/5658"], ["https://mivb.openplanner.team/stops/1172", "https://mivb.openplanner.team/stops/0470351"], ["https://mivb.openplanner.team/stops/6115F", "https://mivb.openplanner.team/stops/6155F"], ["https://mivb.openplanner.team/stops/6432", "https://mivb.openplanner.team/stops/8301"], ["https://mivb.openplanner.team/stops/2660", "https://mivb.openplanner.team/stops/5731F"], ["https://mivb.openplanner.team/stops/3132", "https://mivb.openplanner.team/stops/5299"], ["https://mivb.openplanner.team/stops/2664", "https://mivb.openplanner.team/stops/5922"], ["https://mivb.openplanner.team/stops/2118", "https://mivb.openplanner.team/stops/2145"], ["https://mivb.openplanner.team/stops/2218", "https://mivb.openplanner.team/stops/2218F"], ["https://mivb.openplanner.team/stops/1728", "https://mivb.openplanner.team/stops/1777B"], ["https://mivb.openplanner.team/stops/2861", "https://mivb.openplanner.team/stops/4274"], ["https://mivb.openplanner.team/stops/3181", "https://mivb.openplanner.team/stops/5803G"], ["https://mivb.openplanner.team/stops/3117", "https://mivb.openplanner.team/stops/3158B"], ["https://mivb.openplanner.team/stops/2118", "https://mivb.openplanner.team/stops/2119"], ["https://mivb.openplanner.team/stops/2962", "https://mivb.openplanner.team/stops/7544"], ["https://mivb.openplanner.team/stops/1169", "https://mivb.openplanner.team/stops/0340241"], ["https://mivb.openplanner.team/stops/1172", "https://mivb.openplanner.team/stops/4152"], ["https://mivb.openplanner.team/stops/1767", "https://mivb.openplanner.team/stops/1782"], ["https://mivb.openplanner.team/stops/1009", "https://mivb.openplanner.team/stops/1368"], ["https://mivb.openplanner.team/stops/1497B", "https://mivb.openplanner.team/stops/19"], ["https://mivb.openplanner.team/stops/2122", "https://mivb.openplanner.team/stops/2932"], ["https://mivb.openplanner.team/stops/2220", "https://mivb.openplanner.team/stops/2256B"], ["https://mivb.openplanner.team/stops/2161", "https://mivb.openplanner.team/stops/2705"], ["https://mivb.openplanner.team/stops/5812F", "https://mivb.openplanner.team/stops/5857F"], ["https://mivb.openplanner.team/stops/2312", "https://mivb.openplanner.team/stops/2364"], ["https://mivb.openplanner.team/stops/1135", "https://mivb.openplanner.team/stops/6117"], ["https://mivb.openplanner.team/stops/6811", "https://mivb.openplanner.team/stops/7690206"], ["https://mivb.openplanner.team/stops/1760", "https://mivb.openplanner.team/stops/0220333"], ["https://mivb.openplanner.team/stops/3325", "https://mivb.openplanner.team/stops/6369"], ["https://mivb.openplanner.team/stops/3201", "https://mivb.openplanner.team/stops/9726"], ["https://mivb.openplanner.team/stops/1283", "https://mivb.openplanner.team/stops/3179"], ["https://mivb.openplanner.team/stops/6471", "https://mivb.openplanner.team/stops/8291"], ["https://mivb.openplanner.team/stops/5761", "https://mivb.openplanner.team/stops/6461F"], ["https://mivb.openplanner.team/stops/2514", "https://mivb.openplanner.team/stops/4658"], ["https://mivb.openplanner.team/stops/2058", "https://mivb.openplanner.team/stops/2753"], ["https://mivb.openplanner.team/stops/2462", "https://mivb.openplanner.team/stops/5115F"], ["https://mivb.openplanner.team/stops/3904", "https://mivb.openplanner.team/stops/3906"], ["https://mivb.openplanner.team/stops/1135", "https://mivb.openplanner.team/stops/1159"], ["https://mivb.openplanner.team/stops/5655", "https://mivb.openplanner.team/stops/5656"], ["https://mivb.openplanner.team/stops/2257B", "https://mivb.openplanner.team/stops/6809"], ["https://mivb.openplanner.team/stops/1921", "https://mivb.openplanner.team/stops/2125"], ["https://mivb.openplanner.team/stops/2167", "https://mivb.openplanner.team/stops/2770"], ["https://mivb.openplanner.team/stops/4365", "https://mivb.openplanner.team/stops/6113F"], ["https://mivb.openplanner.team/stops/2122", "https://mivb.openplanner.team/stops/2134"], ["https://mivb.openplanner.team/stops/1233", "https://mivb.openplanner.team/stops/1729"], ["https://mivb.openplanner.team/stops/5727F", "https://mivb.openplanner.team/stops/9652"], ["https://mivb.openplanner.team/stops/1853", "https://mivb.openplanner.team/stops/5553"], ["https://mivb.openplanner.team/stops/9649", "https://mivb.openplanner.team/stops/9686"], ["https://mivb.openplanner.team/stops/1128", "https://mivb.openplanner.team/stops/1166"], ["https://mivb.openplanner.team/stops/1002", "https://mivb.openplanner.team/stops/1734"], ["https://mivb.openplanner.team/stops/3358", "https://mivb.openplanner.team/stops/0040518"], ["https://mivb.openplanner.team/stops/1015", "https://mivb.openplanner.team/stops/2604F"], ["https://mivb.openplanner.team/stops/1480", "https://mivb.openplanner.team/stops/1492"], ["https://mivb.openplanner.team/stops/1545", "https://mivb.openplanner.team/stops/1860"], ["https://mivb.openplanner.team/stops/1871B", "https://mivb.openplanner.team/stops/3953"], ["https://mivb.openplanner.team/stops/2327", "https://mivb.openplanner.team/stops/3014"], ["https://mivb.openplanner.team/stops/1125", "https://mivb.openplanner.team/stops/8331"], ["https://mivb.openplanner.team/stops/4004", "https://mivb.openplanner.team/stops/4059F"], ["https://mivb.openplanner.team/stops/5953", "https://mivb.openplanner.team/stops/5953F"], ["https://mivb.openplanner.team/stops/3466", "https://mivb.openplanner.team/stops/5278F"], ["https://mivb.openplanner.team/stops/5714", "https://mivb.openplanner.team/stops/5762"], ["https://mivb.openplanner.team/stops/3707", "https://mivb.openplanner.team/stops/6022B"], ["https://mivb.openplanner.team/stops/2515B", "https://mivb.openplanner.team/stops/6869G"], ["https://mivb.openplanner.team/stops/2915", "https://mivb.openplanner.team/stops/2976"], ["https://mivb.openplanner.team/stops/1539", "https://mivb.openplanner.team/stops/3900"], ["https://mivb.openplanner.team/stops/4956", "https://mivb.openplanner.team/stops/4957"], ["https://mivb.openplanner.team/stops/1500", "https://mivb.openplanner.team/stops/1859"], ["https://mivb.openplanner.team/stops/1328", "https://mivb.openplanner.team/stops/1744"], ["https://mivb.openplanner.team/stops/3551", "https://mivb.openplanner.team/stops/3553"], ["https://mivb.openplanner.team/stops/0020516", "https://mivb.openplanner.team/stops/8031"], ["https://mivb.openplanner.team/stops/5170", "https://mivb.openplanner.team/stops/9802"], ["https://mivb.openplanner.team/stops/6357", "https://mivb.openplanner.team/stops/0410346"], ["https://mivb.openplanner.team/stops/2709F", "https://mivb.openplanner.team/stops/4075"], ["https://mivb.openplanner.team/stops/6109", "https://mivb.openplanner.team/stops/6162"], ["https://mivb.openplanner.team/stops/8341", "https://mivb.openplanner.team/stops/8342"], ["https://mivb.openplanner.team/stops/1565", "https://mivb.openplanner.team/stops/6214"], ["https://mivb.openplanner.team/stops/1236F", "https://mivb.openplanner.team/stops/1308G"], ["https://mivb.openplanner.team/stops/1080", "https://mivb.openplanner.team/stops/1682F"], ["https://mivb.openplanner.team/stops/1484", "https://mivb.openplanner.team/stops/1487"], ["https://mivb.openplanner.team/stops/1111", "https://mivb.openplanner.team/stops/2509"], ["https://mivb.openplanner.team/stops/3131", "https://mivb.openplanner.team/stops/6158"], ["https://mivb.openplanner.team/stops/3130", "https://mivb.openplanner.team/stops/3204"], ["https://mivb.openplanner.team/stops/1140", "https://mivb.openplanner.team/stops/0090123"], ["https://mivb.openplanner.team/stops/1385", "https://mivb.openplanner.team/stops/0120226"], ["https://mivb.openplanner.team/stops/2137", "https://mivb.openplanner.team/stops/2142"], ["https://mivb.openplanner.team/stops/1271B", "https://mivb.openplanner.team/stops/1416"], ["https://mivb.openplanner.team/stops/1172", "https://mivb.openplanner.team/stops/0470659"], ["https://mivb.openplanner.team/stops/3425", "https://mivb.openplanner.team/stops/5275F"], ["https://mivb.openplanner.team/stops/5303", "https://mivb.openplanner.team/stops/5805"], ["https://mivb.openplanner.team/stops/2815B", "https://mivb.openplanner.team/stops/5772"], ["https://mivb.openplanner.team/stops/6062", "https://mivb.openplanner.team/stops/9064"], ["https://mivb.openplanner.team/stops/1320", "https://mivb.openplanner.team/stops/1321"], ["https://mivb.openplanner.team/stops/1135", "https://mivb.openplanner.team/stops/0070421"], ["https://mivb.openplanner.team/stops/2286G", "https://mivb.openplanner.team/stops/9996"], ["https://mivb.openplanner.team/stops/9657", "https://mivb.openplanner.team/stops/9677"], ["https://mivb.openplanner.team/stops/3003", "https://mivb.openplanner.team/stops/3063"], ["https://mivb.openplanner.team/stops/6019", "https://mivb.openplanner.team/stops/6210"], ["https://mivb.openplanner.team/stops/3159", "https://mivb.openplanner.team/stops/0060120"], ["https://mivb.openplanner.team/stops/9755", "https://mivb.openplanner.team/stops/9756"], ["https://mivb.openplanner.team/stops/5271F", "https://mivb.openplanner.team/stops/5287"], ["https://mivb.openplanner.team/stops/0601162", "https://mivb.openplanner.team/stops/3320B"], ["https://mivb.openplanner.team/stops/2279", "https://mivb.openplanner.team/stops/4324"], ["https://mivb.openplanner.team/stops/1976", "https://mivb.openplanner.team/stops/5466"], ["https://mivb.openplanner.team/stops/1354", "https://mivb.openplanner.team/stops/1986"], ["https://mivb.openplanner.team/stops/5006", "https://mivb.openplanner.team/stops/5079"], ["https://mivb.openplanner.team/stops/6359", "https://mivb.openplanner.team/stops/9064"], ["https://mivb.openplanner.team/stops/5159", "https://mivb.openplanner.team/stops/5718"], ["https://mivb.openplanner.team/stops/1114B", "https://mivb.openplanner.team/stops/1179"], ["https://mivb.openplanner.team/stops/1677F", "https://mivb.openplanner.team/stops/1678F"], ["https://mivb.openplanner.team/stops/0526", "https://mivb.openplanner.team/stops/5714"], ["https://mivb.openplanner.team/stops/1384", "https://mivb.openplanner.team/stops/1554"], ["https://mivb.openplanner.team/stops/2997", "https://mivb.openplanner.team/stops/3419"], ["https://mivb.openplanner.team/stops/4363", "https://mivb.openplanner.team/stops/5261"], ["https://mivb.openplanner.team/stops/5735", "https://mivb.openplanner.team/stops/6014"], ["https://mivb.openplanner.team/stops/1652", "https://mivb.openplanner.team/stops/5053G"], ["https://mivb.openplanner.team/stops/1316", "https://mivb.openplanner.team/stops/9311"], ["https://mivb.openplanner.team/stops/8442", "https://mivb.openplanner.team/stops/0440249"], ["https://mivb.openplanner.team/stops/8741", "https://mivb.openplanner.team/stops/8742"], ["https://mivb.openplanner.team/stops/2080", "https://mivb.openplanner.team/stops/4358"], ["https://mivb.openplanner.team/stops/5017", "https://mivb.openplanner.team/stops/5067"], ["https://mivb.openplanner.team/stops/2975", "https://mivb.openplanner.team/stops/5306G"], ["https://mivb.openplanner.team/stops/5704F", "https://mivb.openplanner.team/stops/5772"], ["https://mivb.openplanner.team/stops/1599", "https://mivb.openplanner.team/stops/1606"], ["https://mivb.openplanner.team/stops/5219F", "https://mivb.openplanner.team/stops/9986F"], ["https://mivb.openplanner.team/stops/3899", "https://mivb.openplanner.team/stops/3909"], ["https://mivb.openplanner.team/stops/2900F", "https://mivb.openplanner.team/stops/3175B"], ["https://mivb.openplanner.team/stops/6434F", "https://mivb.openplanner.team/stops/8421"], ["https://mivb.openplanner.team/stops/1731", "https://mivb.openplanner.team/stops/5269F"], ["https://mivb.openplanner.team/stops/1645F", "https://mivb.openplanner.team/stops/1646F"], ["https://mivb.openplanner.team/stops/2576", "https://mivb.openplanner.team/stops/6552"], ["https://mivb.openplanner.team/stops/4349", "https://mivb.openplanner.team/stops/5452"], ["https://mivb.openplanner.team/stops/2220F", "https://mivb.openplanner.team/stops/3709"], ["https://mivb.openplanner.team/stops/8082", "https://mivb.openplanner.team/stops/0080122"], ["https://mivb.openplanner.team/stops/1150", "https://mivb.openplanner.team/stops/1521"], ["https://mivb.openplanner.team/stops/2728", "https://mivb.openplanner.team/stops/5659"], ["https://mivb.openplanner.team/stops/2710G", "https://mivb.openplanner.team/stops/5815"], ["https://mivb.openplanner.team/stops/1807", "https://mivb.openplanner.team/stops/1868"], ["https://mivb.openplanner.team/stops/3513", "https://mivb.openplanner.team/stops/5461F"], ["https://mivb.openplanner.team/stops/5758F", "https://mivb.openplanner.team/stops/6461F"], ["https://mivb.openplanner.team/stops/2912", "https://mivb.openplanner.team/stops/3411"], ["https://mivb.openplanner.team/stops/6702", "https://mivb.openplanner.team/stops/6754"], ["https://mivb.openplanner.team/stops/2899", "https://mivb.openplanner.team/stops/9777"], ["https://mivb.openplanner.team/stops/1383", "https://mivb.openplanner.team/stops/1384"], ["https://mivb.openplanner.team/stops/2306", "https://mivb.openplanner.team/stops/2452"], ["https://mivb.openplanner.team/stops/2010", "https://mivb.openplanner.team/stops/5031F"], ["https://mivb.openplanner.team/stops/2922", "https://mivb.openplanner.team/stops/0050419"], ["https://mivb.openplanner.team/stops/7820153", "https://mivb.openplanner.team/stops/7820353"], ["https://mivb.openplanner.team/stops/5470", "https://mivb.openplanner.team/stops/7529"], ["https://mivb.openplanner.team/stops/2503", "https://mivb.openplanner.team/stops/2576"], ["https://mivb.openplanner.team/stops/2261", "https://mivb.openplanner.team/stops/0360239"], ["https://mivb.openplanner.team/stops/5072", "https://mivb.openplanner.team/stops/5089"], ["https://mivb.openplanner.team/stops/1870", "https://mivb.openplanner.team/stops/6009"], ["https://mivb.openplanner.team/stops/1204", "https://mivb.openplanner.team/stops/3713"], ["https://mivb.openplanner.team/stops/4058F", "https://mivb.openplanner.team/stops/4062"], ["https://mivb.openplanner.team/stops/0506", "https://mivb.openplanner.team/stops/2838"], ["https://mivb.openplanner.team/stops/6604F", "https://mivb.openplanner.team/stops/0280213"], ["https://mivb.openplanner.team/stops/9025", "https://mivb.openplanner.team/stops/9026"], ["https://mivb.openplanner.team/stops/4287", "https://mivb.openplanner.team/stops/4289"], ["https://mivb.openplanner.team/stops/5284F", "https://mivb.openplanner.team/stops/6468"], ["https://mivb.openplanner.team/stops/8431", "https://mivb.openplanner.team/stops/0430148"], ["https://mivb.openplanner.team/stops/3515", "https://mivb.openplanner.team/stops/4362"], ["https://mivb.openplanner.team/stops/1169", "https://mivb.openplanner.team/stops/2418"], ["https://mivb.openplanner.team/stops/1043", "https://mivb.openplanner.team/stops/2043"], ["https://mivb.openplanner.team/stops/3285", "https://mivb.openplanner.team/stops/9311"], ["https://mivb.openplanner.team/stops/0529", "https://mivb.openplanner.team/stops/1083"], ["https://mivb.openplanner.team/stops/2926", "https://mivb.openplanner.team/stops/3449"], ["https://mivb.openplanner.team/stops/2203", "https://mivb.openplanner.team/stops/6123"], ["https://mivb.openplanner.team/stops/3705", "https://mivb.openplanner.team/stops/5279F"], ["https://mivb.openplanner.team/stops/5711F", "https://mivb.openplanner.team/stops/5742B"], ["https://mivb.openplanner.team/stops/4292", "https://mivb.openplanner.team/stops/5421"], ["https://mivb.openplanner.team/stops/8381", "https://mivb.openplanner.team/stops/8732"], ["https://mivb.openplanner.team/stops/1971", "https://mivb.openplanner.team/stops/5255F"], ["https://mivb.openplanner.team/stops/0511", "https://mivb.openplanner.team/stops/0430248"], ["https://mivb.openplanner.team/stops/5350G", "https://mivb.openplanner.team/stops/7998"], ["https://mivb.openplanner.team/stops/2986B", "https://mivb.openplanner.team/stops/2988"], ["https://mivb.openplanner.team/stops/0600262", "https://mivb.openplanner.team/stops/1781"], ["https://mivb.openplanner.team/stops/4287", "https://mivb.openplanner.team/stops/4319"], ["https://mivb.openplanner.team/stops/5022", "https://mivb.openplanner.team/stops/5062"], ["https://mivb.openplanner.team/stops/3122", "https://mivb.openplanner.team/stops/6119F"], ["https://mivb.openplanner.team/stops/6459", "https://mivb.openplanner.team/stops/6459F"], ["https://mivb.openplanner.team/stops/2331F", "https://mivb.openplanner.team/stops/2334F"], ["https://mivb.openplanner.team/stops/4323", "https://mivb.openplanner.team/stops/5286"], ["https://mivb.openplanner.team/stops/5067", "https://mivb.openplanner.team/stops/5470"], ["https://mivb.openplanner.team/stops/4295", "https://mivb.openplanner.team/stops/4296"], ["https://mivb.openplanner.team/stops/3403", "https://mivb.openplanner.team/stops/3763"], ["https://mivb.openplanner.team/stops/1152", "https://mivb.openplanner.team/stops/1560"], ["https://mivb.openplanner.team/stops/3625B", "https://mivb.openplanner.team/stops/6162"], ["https://mivb.openplanner.team/stops/1410", "https://mivb.openplanner.team/stops/1529"], ["https://mivb.openplanner.team/stops/5916", "https://mivb.openplanner.team/stops/5916F"], ["https://mivb.openplanner.team/stops/0631", "https://mivb.openplanner.team/stops/0636"], ["https://mivb.openplanner.team/stops/1901", "https://mivb.openplanner.team/stops/47"], ["https://mivb.openplanner.team/stops/2104", "https://mivb.openplanner.team/stops/2116B"], ["https://mivb.openplanner.team/stops/1387", "https://mivb.openplanner.team/stops/5522"], ["https://mivb.openplanner.team/stops/3407", "https://mivb.openplanner.team/stops/7246"], ["https://mivb.openplanner.team/stops/9701", "https://mivb.openplanner.team/stops/9727"], ["https://mivb.openplanner.team/stops/2122", "https://mivb.openplanner.team/stops/5219F"], ["https://mivb.openplanner.team/stops/2665", "https://mivb.openplanner.team/stops/2939B"], ["https://mivb.openplanner.team/stops/3549", "https://mivb.openplanner.team/stops/4408"], ["https://mivb.openplanner.team/stops/2823B", "https://mivb.openplanner.team/stops/2854"], ["https://mivb.openplanner.team/stops/3008", "https://mivb.openplanner.team/stops/3058"], ["https://mivb.openplanner.team/stops/4297", "https://mivb.openplanner.team/stops/0240235"], ["https://mivb.openplanner.team/stops/1014F", "https://mivb.openplanner.team/stops/6804F"], ["https://mivb.openplanner.team/stops/2860", "https://mivb.openplanner.team/stops/6100"], ["https://mivb.openplanner.team/stops/2717", "https://mivb.openplanner.team/stops/2721"], ["https://mivb.openplanner.team/stops/3461", "https://mivb.openplanner.team/stops/4505"], ["https://mivb.openplanner.team/stops/1129", "https://mivb.openplanner.team/stops/6354B"], ["https://mivb.openplanner.team/stops/1349", "https://mivb.openplanner.team/stops/1351"], ["https://mivb.openplanner.team/stops/1627", "https://mivb.openplanner.team/stops/5528F"], ["https://mivb.openplanner.team/stops/4212B", "https://mivb.openplanner.team/stops/4254B"], ["https://mivb.openplanner.team/stops/3481", "https://mivb.openplanner.team/stops/5258"], ["https://mivb.openplanner.team/stops/5814", "https://mivb.openplanner.team/stops/5856F"], ["https://mivb.openplanner.team/stops/6472", "https://mivb.openplanner.team/stops/0200131"], ["https://mivb.openplanner.team/stops/2221", "https://mivb.openplanner.team/stops/8021"], ["https://mivb.openplanner.team/stops/4002B", "https://mivb.openplanner.team/stops/4058F"], ["https://mivb.openplanner.team/stops/9728", "https://mivb.openplanner.team/stops/9729"], ["https://mivb.openplanner.team/stops/3909", "https://mivb.openplanner.team/stops/3910"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/2118"], ["https://mivb.openplanner.team/stops/0090223", "https://mivb.openplanner.team/stops/0090323"], ["https://mivb.openplanner.team/stops/2932", "https://mivb.openplanner.team/stops/3625B"], ["https://mivb.openplanner.team/stops/3172", "https://mivb.openplanner.team/stops/5868"], ["https://mivb.openplanner.team/stops/2220", "https://mivb.openplanner.team/stops/2257G"], ["https://mivb.openplanner.team/stops/5562", "https://mivb.openplanner.team/stops/0090323"], ["https://mivb.openplanner.team/stops/1261", "https://mivb.openplanner.team/stops/1486B"], ["https://mivb.openplanner.team/stops/3717", "https://mivb.openplanner.team/stops/3756"], ["https://mivb.openplanner.team/stops/1625", "https://mivb.openplanner.team/stops/1659"], ["https://mivb.openplanner.team/stops/3167", "https://mivb.openplanner.team/stops/6302"], ["https://mivb.openplanner.team/stops/2867", "https://mivb.openplanner.team/stops/4250"], ["https://mivb.openplanner.team/stops/1156", "https://mivb.openplanner.team/stops/8071"], ["https://mivb.openplanner.team/stops/1901", "https://mivb.openplanner.team/stops/0430448"], ["https://mivb.openplanner.team/stops/9784B", "https://mivb.openplanner.team/stops/9786"], ["https://mivb.openplanner.team/stops/6800F", "https://mivb.openplanner.team/stops/6803F"], ["https://mivb.openplanner.team/stops/1239", "https://mivb.openplanner.team/stops/2668"], ["https://mivb.openplanner.team/stops/1638B", "https://mivb.openplanner.team/stops/2041"], ["https://mivb.openplanner.team/stops/1404", "https://mivb.openplanner.team/stops/3707"], ["https://mivb.openplanner.team/stops/1825", "https://mivb.openplanner.team/stops/5657"], ["https://mivb.openplanner.team/stops/3201", "https://mivb.openplanner.team/stops/3280"], ["https://mivb.openplanner.team/stops/2120", "https://mivb.openplanner.team/stops/2718"], ["https://mivb.openplanner.team/stops/4853", "https://mivb.openplanner.team/stops/5056"], ["https://mivb.openplanner.team/stops/4131B", "https://mivb.openplanner.team/stops/4132B"], ["https://mivb.openplanner.team/stops/0470751", "https://mivb.openplanner.team/stops/0470659"], ["https://mivb.openplanner.team/stops/3354", "https://mivb.openplanner.team/stops/0410246"], ["https://mivb.openplanner.team/stops/2306", "https://mivb.openplanner.team/stops/2952B"], ["https://mivb.openplanner.team/stops/4303", "https://mivb.openplanner.team/stops/4366"], ["https://mivb.openplanner.team/stops/8161", "https://mivb.openplanner.team/stops/8162"], ["https://mivb.openplanner.team/stops/1014F", "https://mivb.openplanner.team/stops/2573B"], ["https://mivb.openplanner.team/stops/3898", "https://mivb.openplanner.team/stops/4505"], ["https://mivb.openplanner.team/stops/1375", "https://mivb.openplanner.team/stops/1625"], ["https://mivb.openplanner.team/stops/2809", "https://mivb.openplanner.team/stops/7790456"], ["https://mivb.openplanner.team/stops/9851", "https://mivb.openplanner.team/stops/9876"], ["https://mivb.openplanner.team/stops/1142", "https://mivb.openplanner.team/stops/4273F"], ["https://mivb.openplanner.team/stops/1096", "https://mivb.openplanner.team/stops/4054G"], ["https://mivb.openplanner.team/stops/6190", "https://mivb.openplanner.team/stops/9291"], ["https://mivb.openplanner.team/stops/3468", "https://mivb.openplanner.team/stops/5274F"], ["https://mivb.openplanner.team/stops/3236", "https://mivb.openplanner.team/stops/4005F"], ["https://mivb.openplanner.team/stops/1815", "https://mivb.openplanner.team/stops/1816"], ["https://mivb.openplanner.team/stops/1809", "https://mivb.openplanner.team/stops/8211"], ["https://mivb.openplanner.team/stops/6792F", "https://mivb.openplanner.team/stops/6799F"], ["https://mivb.openplanner.team/stops/5159", "https://mivb.openplanner.team/stops/5159F"], ["https://mivb.openplanner.team/stops/1942", "https://mivb.openplanner.team/stops/5025"], ["https://mivb.openplanner.team/stops/3099", "https://mivb.openplanner.team/stops/5320"], ["https://mivb.openplanner.team/stops/6449", "https://mivb.openplanner.team/stops/6451"], ["https://mivb.openplanner.team/stops/8803", "https://mivb.openplanner.team/stops/55"], ["https://mivb.openplanner.team/stops/7750160", "https://mivb.openplanner.team/stops/7750260"], ["https://mivb.openplanner.team/stops/5039", "https://mivb.openplanner.team/stops/5041B"], ["https://mivb.openplanner.team/stops/6651", "https://mivb.openplanner.team/stops/0440449"], ["https://mivb.openplanner.team/stops/2512", "https://mivb.openplanner.team/stops/4054G"], ["https://mivb.openplanner.team/stops/2296", "https://mivb.openplanner.team/stops/2301"], ["https://mivb.openplanner.team/stops/2404", "https://mivb.openplanner.team/stops/2462"], ["https://mivb.openplanner.team/stops/1943", "https://mivb.openplanner.team/stops/5219F"], ["https://mivb.openplanner.team/stops/2225", "https://mivb.openplanner.team/stops/2256F"], ["https://mivb.openplanner.team/stops/1349", "https://mivb.openplanner.team/stops/2304"], ["https://mivb.openplanner.team/stops/3761", "https://mivb.openplanner.team/stops/3762"], ["https://mivb.openplanner.team/stops/2457", "https://mivb.openplanner.team/stops/5849"], ["https://mivb.openplanner.team/stops/2309C", "https://mivb.openplanner.team/stops/3058"], ["https://mivb.openplanner.team/stops/8371", "https://mivb.openplanner.team/stops/0370138"], ["https://mivb.openplanner.team/stops/1936", "https://mivb.openplanner.team/stops/1953"], ["https://mivb.openplanner.team/stops/2660", "https://mivb.openplanner.team/stops/5729"], ["https://mivb.openplanner.team/stops/2309C", "https://mivb.openplanner.team/stops/2311"], ["https://mivb.openplanner.team/stops/1710", "https://mivb.openplanner.team/stops/1748"], ["https://mivb.openplanner.team/stops/0906", "https://mivb.openplanner.team/stops/0900268"], ["https://mivb.openplanner.team/stops/2920", "https://mivb.openplanner.team/stops/3219"], ["https://mivb.openplanner.team/stops/5060", "https://mivb.openplanner.team/stops/6424F"], ["https://mivb.openplanner.team/stops/2519", "https://mivb.openplanner.team/stops/5166"], ["https://mivb.openplanner.team/stops/3132", "https://mivb.openplanner.team/stops/5298F"], ["https://mivb.openplanner.team/stops/2028", "https://mivb.openplanner.team/stops/0120426"], ["https://mivb.openplanner.team/stops/1128", "https://mivb.openplanner.team/stops/6312"], ["https://mivb.openplanner.team/stops/1738", "https://mivb.openplanner.team/stops/5028"], ["https://mivb.openplanner.team/stops/2721", "https://mivb.openplanner.team/stops/5458"], ["https://mivb.openplanner.team/stops/2498", "https://mivb.openplanner.team/stops/6869G"], ["https://mivb.openplanner.team/stops/2545", "https://mivb.openplanner.team/stops/4274"], ["https://mivb.openplanner.team/stops/1587", "https://mivb.openplanner.team/stops/5530"], ["https://mivb.openplanner.team/stops/0806", "https://mivb.openplanner.team/stops/8081"], ["https://mivb.openplanner.team/stops/1500", "https://mivb.openplanner.team/stops/1816"], ["https://mivb.openplanner.team/stops/3117", "https://mivb.openplanner.team/stops/3159"], ["https://mivb.openplanner.team/stops/1602", "https://mivb.openplanner.team/stops/1617"], ["https://mivb.openplanner.team/stops/2859", "https://mivb.openplanner.team/stops/5403"], ["https://mivb.openplanner.team/stops/1512", "https://mivb.openplanner.team/stops/9296"], ["https://mivb.openplanner.team/stops/2134", "https://mivb.openplanner.team/stops/6408"], ["https://mivb.openplanner.team/stops/1745", "https://mivb.openplanner.team/stops/4223"], ["https://mivb.openplanner.team/stops/4501F", "https://mivb.openplanner.team/stops/4506"], ["https://mivb.openplanner.team/stops/1601", "https://mivb.openplanner.team/stops/5532"], ["https://mivb.openplanner.team/stops/2859", "https://mivb.openplanner.team/stops/6502"], ["https://mivb.openplanner.team/stops/1916", "https://mivb.openplanner.team/stops/5211"], ["https://mivb.openplanner.team/stops/1567", "https://mivb.openplanner.team/stops/1568"], ["https://mivb.openplanner.team/stops/3518B", "https://mivb.openplanner.team/stops/0310144"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/2026"], ["https://mivb.openplanner.team/stops/6420G", "https://mivb.openplanner.team/stops/6421F"], ["https://mivb.openplanner.team/stops/8341", "https://mivb.openplanner.team/stops/0340141"], ["https://mivb.openplanner.team/stops/8773", "https://mivb.openplanner.team/stops/7780157"], ["https://mivb.openplanner.team/stops/5475", "https://mivb.openplanner.team/stops/7527"], ["https://mivb.openplanner.team/stops/6811", "https://mivb.openplanner.team/stops/7690106"], ["https://mivb.openplanner.team/stops/0531", "https://mivb.openplanner.team/stops/0520161"], ["https://mivb.openplanner.team/stops/1110", "https://mivb.openplanner.team/stops/5822F"], ["https://mivb.openplanner.team/stops/1015", "https://mivb.openplanner.team/stops/5915"], ["https://mivb.openplanner.team/stops/1711", "https://mivb.openplanner.team/stops/1755"], ["https://mivb.openplanner.team/stops/3201", "https://mivb.openplanner.team/stops/9727"], ["https://mivb.openplanner.team/stops/1304", "https://mivb.openplanner.team/stops/5172F"], ["https://mivb.openplanner.team/stops/9627", "https://mivb.openplanner.team/stops/9754B"], ["https://mivb.openplanner.team/stops/5303", "https://mivb.openplanner.team/stops/7484"], ["https://mivb.openplanner.team/stops/1158", "https://mivb.openplanner.team/stops/1873"], ["https://mivb.openplanner.team/stops/1546", "https://mivb.openplanner.team/stops/5559"], ["https://mivb.openplanner.team/stops/3284", "https://mivb.openplanner.team/stops/3920"], ["https://mivb.openplanner.team/stops/2861", "https://mivb.openplanner.team/stops/4998"], ["https://mivb.openplanner.team/stops/2462", "https://mivb.openplanner.team/stops/5115"], ["https://mivb.openplanner.team/stops/3109", "https://mivb.openplanner.team/stops/3412"], ["https://mivb.openplanner.team/stops/0900168", "https://mivb.openplanner.team/stops/1809"], ["https://mivb.openplanner.team/stops/3904", "https://mivb.openplanner.team/stops/3908"], ["https://mivb.openplanner.team/stops/0724", "https://mivb.openplanner.team/stops/2336G"], ["https://mivb.openplanner.team/stops/0806", "https://mivb.openplanner.team/stops/2283"], ["https://mivb.openplanner.team/stops/1921", "https://mivb.openplanner.team/stops/2131"], ["https://mivb.openplanner.team/stops/2226", "https://mivb.openplanner.team/stops/5297B"], ["https://mivb.openplanner.team/stops/1289", "https://mivb.openplanner.team/stops/5400"], ["https://mivb.openplanner.team/stops/1868", "https://mivb.openplanner.team/stops/6472"], ["https://mivb.openplanner.team/stops/2244F", "https://mivb.openplanner.team/stops/4550"], ["https://mivb.openplanner.team/stops/5721G", "https://mivb.openplanner.team/stops/5722F"], ["https://mivb.openplanner.team/stops/1570", "https://mivb.openplanner.team/stops/8042"], ["https://mivb.openplanner.team/stops/5211", "https://mivb.openplanner.team/stops/5254"], ["https://mivb.openplanner.team/stops/5077", "https://mivb.openplanner.team/stops/8773"], ["https://mivb.openplanner.team/stops/1853", "https://mivb.openplanner.team/stops/5554"], ["https://mivb.openplanner.team/stops/3358", "https://mivb.openplanner.team/stops/0410146"], ["https://mivb.openplanner.team/stops/4112", "https://mivb.openplanner.team/stops/4163"], ["https://mivb.openplanner.team/stops/1090", "https://mivb.openplanner.team/stops/3063"], ["https://mivb.openplanner.team/stops/6369", "https://mivb.openplanner.team/stops/6412F"], ["https://mivb.openplanner.team/stops/3551", "https://mivb.openplanner.team/stops/0240335"], ["https://mivb.openplanner.team/stops/2136", "https://mivb.openplanner.team/stops/2142"], ["https://mivb.openplanner.team/stops/2074", "https://mivb.openplanner.team/stops/5451F"], ["https://mivb.openplanner.team/stops/6482", "https://mivb.openplanner.team/stops/53"], ["https://mivb.openplanner.team/stops/2584", "https://mivb.openplanner.team/stops/5079"], ["https://mivb.openplanner.team/stops/4022", "https://mivb.openplanner.team/stops/4053G"], ["https://mivb.openplanner.team/stops/5531", "https://mivb.openplanner.team/stops/0080222"], ["https://mivb.openplanner.team/stops/5403", "https://mivb.openplanner.team/stops/5471"], ["https://mivb.openplanner.team/stops/1490", "https://mivb.openplanner.team/stops/7"], ["https://mivb.openplanner.team/stops/8042", "https://mivb.openplanner.team/stops/0050419"], ["https://mivb.openplanner.team/stops/8201", "https://mivb.openplanner.team/stops/0200131"], ["https://mivb.openplanner.team/stops/2245", "https://mivb.openplanner.team/stops/4323"], ["https://mivb.openplanner.team/stops/1237", "https://mivb.openplanner.team/stops/6706"], ["https://mivb.openplanner.team/stops/2931", "https://mivb.openplanner.team/stops/6425F"], ["https://mivb.openplanner.team/stops/6097B", "https://mivb.openplanner.team/stops/6122"], ["https://mivb.openplanner.team/stops/1498", "https://mivb.openplanner.team/stops/3812"], ["https://mivb.openplanner.team/stops/7720103", "https://mivb.openplanner.team/stops/7720203"], ["https://mivb.openplanner.team/stops/4956", "https://mivb.openplanner.team/stops/7800455"], ["https://mivb.openplanner.team/stops/1169", "https://mivb.openplanner.team/stops/7621"], ["https://mivb.openplanner.team/stops/6444", "https://mivb.openplanner.team/stops/6445"], ["https://mivb.openplanner.team/stops/0724", "https://mivb.openplanner.team/stops/8331"], ["https://mivb.openplanner.team/stops/4110", "https://mivb.openplanner.team/stops/4153"], ["https://mivb.openplanner.team/stops/1613", "https://mivb.openplanner.team/stops/5515"], ["https://mivb.openplanner.team/stops/4157", "https://mivb.openplanner.team/stops/5172F"], ["https://mivb.openplanner.team/stops/2604", "https://mivb.openplanner.team/stops/2939B"], ["https://mivb.openplanner.team/stops/1951", "https://mivb.openplanner.team/stops/2355"], ["https://mivb.openplanner.team/stops/3898", "https://mivb.openplanner.team/stops/3961"], ["https://mivb.openplanner.team/stops/2932", "https://mivb.openplanner.team/stops/5020"], ["https://mivb.openplanner.team/stops/1545", "https://mivb.openplanner.team/stops/5560"], ["https://mivb.openplanner.team/stops/1805", "https://mivb.openplanner.team/stops/1806"], ["https://mivb.openplanner.team/stops/1423", "https://mivb.openplanner.team/stops/1451"], ["https://mivb.openplanner.team/stops/1840", "https://mivb.openplanner.team/stops/5551"], ["https://mivb.openplanner.team/stops/3905", "https://mivb.openplanner.team/stops/4500"], ["https://mivb.openplanner.team/stops/3129", "https://mivb.openplanner.team/stops/3179"], ["https://mivb.openplanner.team/stops/1063", "https://mivb.openplanner.team/stops/1781"], ["https://mivb.openplanner.team/stops/1522", "https://mivb.openplanner.team/stops/3909"], ["https://mivb.openplanner.team/stops/1236F", "https://mivb.openplanner.team/stops/1310"], ["https://mivb.openplanner.team/stops/1535", "https://mivb.openplanner.team/stops/3402"], ["https://mivb.openplanner.team/stops/6106", "https://mivb.openplanner.team/stops/6166"], ["https://mivb.openplanner.team/stops/6862F", "https://mivb.openplanner.team/stops/0350640"], ["https://mivb.openplanner.team/stops/5520F", "https://mivb.openplanner.team/stops/5528F"], ["https://mivb.openplanner.team/stops/3553", "https://mivb.openplanner.team/stops/0240335"], ["https://mivb.openplanner.team/stops/0440549", "https://mivb.openplanner.team/stops/0440649"], ["https://mivb.openplanner.team/stops/2352", "https://mivb.openplanner.team/stops/9609"], ["https://mivb.openplanner.team/stops/2317", "https://mivb.openplanner.team/stops/2358"], ["https://mivb.openplanner.team/stops/7520", "https://mivb.openplanner.team/stops/7544"], ["https://mivb.openplanner.team/stops/1382", "https://mivb.openplanner.team/stops/1383"], ["https://mivb.openplanner.team/stops/2544", "https://mivb.openplanner.team/stops/2544F"], ["https://mivb.openplanner.team/stops/4407", "https://mivb.openplanner.team/stops/0250136"], ["https://mivb.openplanner.team/stops/5303", "https://mivb.openplanner.team/stops/5804G"], ["https://mivb.openplanner.team/stops/1678F", "https://mivb.openplanner.team/stops/1679F"], ["https://mivb.openplanner.team/stops/9707", "https://mivb.openplanner.team/stops/9788"], ["https://mivb.openplanner.team/stops/7700205", "https://mivb.openplanner.team/stops/8702"], ["https://mivb.openplanner.team/stops/8012", "https://mivb.openplanner.team/stops/0010315"], ["https://mivb.openplanner.team/stops/2962", "https://mivb.openplanner.team/stops/3506"], ["https://mivb.openplanner.team/stops/2811", "https://mivb.openplanner.team/stops/2860"], ["https://mivb.openplanner.team/stops/2145", "https://mivb.openplanner.team/stops/5454F"], ["https://mivb.openplanner.team/stops/2970", "https://mivb.openplanner.team/stops/3219"], ["https://mivb.openplanner.team/stops/2548F", "https://mivb.openplanner.team/stops/2672"], ["https://mivb.openplanner.team/stops/1154", "https://mivb.openplanner.team/stops/2285G"], ["https://mivb.openplanner.team/stops/1227", "https://mivb.openplanner.team/stops/6601"], ["https://mivb.openplanner.team/stops/6356", "https://mivb.openplanner.team/stops/8031"], ["https://mivb.openplanner.team/stops/9755", "https://mivb.openplanner.team/stops/9778"], ["https://mivb.openplanner.team/stops/1976", "https://mivb.openplanner.team/stops/5467"], ["https://mivb.openplanner.team/stops/2411B", "https://mivb.openplanner.team/stops/2937B"], ["https://mivb.openplanner.team/stops/3557", "https://mivb.openplanner.team/stops/4369"], ["https://mivb.openplanner.team/stops/1875", "https://mivb.openplanner.team/stops/0100424"], ["https://mivb.openplanner.team/stops/5006", "https://mivb.openplanner.team/stops/5078F"], ["https://mivb.openplanner.team/stops/4340", "https://mivb.openplanner.team/stops/4345"], ["https://mivb.openplanner.team/stops/3162", "https://mivb.openplanner.team/stops/6016"], ["https://mivb.openplanner.team/stops/2899", "https://mivb.openplanner.team/stops/2986B"], ["https://mivb.openplanner.team/stops/1499", "https://mivb.openplanner.team/stops/3854B"], ["https://mivb.openplanner.team/stops/1114B", "https://mivb.openplanner.team/stops/1180"], ["https://mivb.openplanner.team/stops/3520", "https://mivb.openplanner.team/stops/3521"], ["https://mivb.openplanner.team/stops/9552", "https://mivb.openplanner.team/stops/9556"], ["https://mivb.openplanner.team/stops/1412", "https://mivb.openplanner.team/stops/1454"], ["https://mivb.openplanner.team/stops/4342", "https://mivb.openplanner.team/stops/5421"], ["https://mivb.openplanner.team/stops/1807", "https://mivb.openplanner.team/stops/5312"], ["https://mivb.openplanner.team/stops/5267", "https://mivb.openplanner.team/stops/5312"], ["https://mivb.openplanner.team/stops/4958F", "https://mivb.openplanner.team/stops/7800455"], ["https://mivb.openplanner.team/stops/1642F", "https://mivb.openplanner.team/stops/6304"], ["https://mivb.openplanner.team/stops/1601", "https://mivb.openplanner.team/stops/1661"], ["https://mivb.openplanner.team/stops/5219F", "https://mivb.openplanner.team/stops/5221F"], ["https://mivb.openplanner.team/stops/2346", "https://mivb.openplanner.team/stops/3409"], ["https://mivb.openplanner.team/stops/4311", "https://mivb.openplanner.team/stops/5419"], ["https://mivb.openplanner.team/stops/2919", "https://mivb.openplanner.team/stops/6191"], ["https://mivb.openplanner.team/stops/0610363", "https://mivb.openplanner.team/stops/1168"], ["https://mivb.openplanner.team/stops/4318", "https://mivb.openplanner.team/stops/4340"], ["https://mivb.openplanner.team/stops/2470", "https://mivb.openplanner.team/stops/8331"], ["https://mivb.openplanner.team/stops/2046", "https://mivb.openplanner.team/stops/37"], ["https://mivb.openplanner.team/stops/2895", "https://mivb.openplanner.team/stops/2988"], ["https://mivb.openplanner.team/stops/1741", "https://mivb.openplanner.team/stops/5054F"], ["https://mivb.openplanner.team/stops/0610463", "https://mivb.openplanner.team/stops/1855"], ["https://mivb.openplanner.team/stops/3480", "https://mivb.openplanner.team/stops/3481"], ["https://mivb.openplanner.team/stops/2290B", "https://mivb.openplanner.team/stops/2291B"], ["https://mivb.openplanner.team/stops/5704F", "https://mivb.openplanner.team/stops/5773"], ["https://mivb.openplanner.team/stops/0100124", "https://mivb.openplanner.team/stops/23"], ["https://mivb.openplanner.team/stops/3362", "https://mivb.openplanner.team/stops/3424"], ["https://mivb.openplanner.team/stops/1132", "https://mivb.openplanner.team/stops/1160"], ["https://mivb.openplanner.team/stops/1821", "https://mivb.openplanner.team/stops/1831"], ["https://mivb.openplanner.team/stops/3899", "https://mivb.openplanner.team/stops/3910"], ["https://mivb.openplanner.team/stops/3854B", "https://mivb.openplanner.team/stops/7660209"], ["https://mivb.openplanner.team/stops/1095", "https://mivb.openplanner.team/stops/5168F"], ["https://mivb.openplanner.team/stops/2002", "https://mivb.openplanner.team/stops/2109B"], ["https://mivb.openplanner.team/stops/2238", "https://mivb.openplanner.team/stops/5742B"], ["https://mivb.openplanner.team/stops/5727F", "https://mivb.openplanner.team/stops/5823"], ["https://mivb.openplanner.team/stops/1627", "https://mivb.openplanner.team/stops/5521"], ["https://mivb.openplanner.team/stops/2355", "https://mivb.openplanner.team/stops/5058F"], ["https://mivb.openplanner.team/stops/1306F", "https://mivb.openplanner.team/stops/1307F"], ["https://mivb.openplanner.team/stops/3513", "https://mivb.openplanner.team/stops/5462F"], ["https://mivb.openplanner.team/stops/0210132", "https://mivb.openplanner.team/stops/0220333"], ["https://mivb.openplanner.team/stops/3424", "https://mivb.openplanner.team/stops/5277F"], ["https://mivb.openplanner.team/stops/2922", "https://mivb.openplanner.team/stops/0050319"], ["https://mivb.openplanner.team/stops/1009", "https://mivb.openplanner.team/stops/1679F"], ["https://mivb.openplanner.team/stops/0704", "https://mivb.openplanner.team/stops/0660166"], ["https://mivb.openplanner.team/stops/3320B", "https://mivb.openplanner.team/stops/0270114"], ["https://mivb.openplanner.team/stops/1558", "https://mivb.openplanner.team/stops/3954"], ["https://mivb.openplanner.team/stops/7820153", "https://mivb.openplanner.team/stops/7820253"], ["https://mivb.openplanner.team/stops/5427", "https://mivb.openplanner.team/stops/0260137"], ["https://mivb.openplanner.team/stops/1725", "https://mivb.openplanner.team/stops/2077"], ["https://mivb.openplanner.team/stops/3624B", "https://mivb.openplanner.team/stops/0320143"], ["https://mivb.openplanner.team/stops/1511", "https://mivb.openplanner.team/stops/2920"], ["https://mivb.openplanner.team/stops/3480", "https://mivb.openplanner.team/stops/5200F"], ["https://mivb.openplanner.team/stops/4296", "https://mivb.openplanner.team/stops/4452"], ["https://mivb.openplanner.team/stops/2926", "https://mivb.openplanner.team/stops/2997"], ["https://mivb.openplanner.team/stops/2306", "https://mivb.openplanner.team/stops/2663"], ["https://mivb.openplanner.team/stops/1788", "https://mivb.openplanner.team/stops/5010"], ["https://mivb.openplanner.team/stops/4309", "https://mivb.openplanner.team/stops/5451F"], ["https://mivb.openplanner.team/stops/4123", "https://mivb.openplanner.team/stops/4124"], ["https://mivb.openplanner.team/stops/4103", "https://mivb.openplanner.team/stops/4160"], ["https://mivb.openplanner.team/stops/1976", "https://mivb.openplanner.team/stops/4705"], ["https://mivb.openplanner.team/stops/1339", "https://mivb.openplanner.team/stops/29"], ["https://mivb.openplanner.team/stops/4287", "https://mivb.openplanner.team/stops/4290"], ["https://mivb.openplanner.team/stops/0820270", "https://mivb.openplanner.team/stops/6451"], ["https://mivb.openplanner.team/stops/2704", "https://mivb.openplanner.team/stops/2770"], ["https://mivb.openplanner.team/stops/4599", "https://mivb.openplanner.team/stops/4661B"], ["https://mivb.openplanner.team/stops/2833", "https://mivb.openplanner.team/stops/2838"], ["https://mivb.openplanner.team/stops/1102", "https://mivb.openplanner.team/stops/4661B"], ["https://mivb.openplanner.team/stops/2926", "https://mivb.openplanner.team/stops/3454"], ["https://mivb.openplanner.team/stops/1105", "https://mivb.openplanner.team/stops/1190"], ["https://mivb.openplanner.team/stops/1165", "https://mivb.openplanner.team/stops/6311"], ["https://mivb.openplanner.team/stops/5712F", "https://mivb.openplanner.team/stops/6304"], ["https://mivb.openplanner.team/stops/0430548", "https://mivb.openplanner.team/stops/0431048"], ["https://mivb.openplanner.team/stops/2037", "https://mivb.openplanner.team/stops/2042"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/4319"], ["https://mivb.openplanner.team/stops/8022", "https://mivb.openplanner.team/stops/0020216"], ["https://mivb.openplanner.team/stops/9658", "https://mivb.openplanner.team/stops/9659"], ["https://mivb.openplanner.team/stops/2662B", "https://mivb.openplanner.team/stops/5923"], ["https://mivb.openplanner.team/stops/8641", "https://mivb.openplanner.team/stops/9658"], ["https://mivb.openplanner.team/stops/1518", "https://mivb.openplanner.team/stops/4550"], ["https://mivb.openplanner.team/stops/1718B", "https://mivb.openplanner.team/stops/1864"], ["https://mivb.openplanner.team/stops/5420F", "https://mivb.openplanner.team/stops/9059"], ["https://mivb.openplanner.team/stops/5222F", "https://mivb.openplanner.team/stops/9959F"], ["https://mivb.openplanner.team/stops/7720303", "https://mivb.openplanner.team/stops/8731"], ["https://mivb.openplanner.team/stops/2331F", "https://mivb.openplanner.team/stops/2336G"], ["https://mivb.openplanner.team/stops/6482", "https://mivb.openplanner.team/stops/7830152"], ["https://mivb.openplanner.team/stops/3104", "https://mivb.openplanner.team/stops/5868"], ["https://mivb.openplanner.team/stops/3558", "https://mivb.openplanner.team/stops/4360"], ["https://mivb.openplanner.team/stops/1152", "https://mivb.openplanner.team/stops/1559"], ["https://mivb.openplanner.team/stops/1563", "https://mivb.openplanner.team/stops/3266"], ["https://mivb.openplanner.team/stops/3903", "https://mivb.openplanner.team/stops/3958"], ["https://mivb.openplanner.team/stops/5174", "https://mivb.openplanner.team/stops/5174F"], ["https://mivb.openplanner.team/stops/1518", "https://mivb.openplanner.team/stops/3911"], ["https://mivb.openplanner.team/stops/3102", "https://mivb.openplanner.team/stops/3103"], ["https://mivb.openplanner.team/stops/5805", "https://mivb.openplanner.team/stops/7484"], ["https://mivb.openplanner.team/stops/3407", "https://mivb.openplanner.team/stops/7269"], ["https://mivb.openplanner.team/stops/5725", "https://mivb.openplanner.team/stops/5922"], ["https://mivb.openplanner.team/stops/9701", "https://mivb.openplanner.team/stops/9726"], ["https://mivb.openplanner.team/stops/6355F", "https://mivb.openplanner.team/stops/0020516"], ["https://mivb.openplanner.team/stops/1159", "https://mivb.openplanner.team/stops/3912"], ["https://mivb.openplanner.team/stops/2317", "https://mivb.openplanner.team/stops/5906"], ["https://mivb.openplanner.team/stops/2302", "https://mivb.openplanner.team/stops/0010115"], ["https://mivb.openplanner.team/stops/3851", "https://mivb.openplanner.team/stops/5720F"], ["https://mivb.openplanner.team/stops/0120326", "https://mivb.openplanner.team/stops/0120426"], ["https://mivb.openplanner.team/stops/1602", "https://mivb.openplanner.team/stops/1668"], ["https://mivb.openplanner.team/stops/5867F", "https://mivb.openplanner.team/stops/5868"], ["https://mivb.openplanner.team/stops/3546", "https://mivb.openplanner.team/stops/8231"], ["https://mivb.openplanner.team/stops/2535F", "https://mivb.openplanner.team/stops/7700205"], ["https://mivb.openplanner.team/stops/5814", "https://mivb.openplanner.team/stops/5856"], ["https://mivb.openplanner.team/stops/4305", "https://mivb.openplanner.team/stops/5264F"], ["https://mivb.openplanner.team/stops/1110", "https://mivb.openplanner.team/stops/9678"], ["https://mivb.openplanner.team/stops/3518B", "https://mivb.openplanner.team/stops/0310644"], ["https://mivb.openplanner.team/stops/2411B", "https://mivb.openplanner.team/stops/2456"], ["https://mivb.openplanner.team/stops/4153", "https://mivb.openplanner.team/stops/4157"], ["https://mivb.openplanner.team/stops/5256F", "https://mivb.openplanner.team/stops/5409"], ["https://mivb.openplanner.team/stops/1538B", "https://mivb.openplanner.team/stops/3902"], ["https://mivb.openplanner.team/stops/2817", "https://mivb.openplanner.team/stops/2852"], ["https://mivb.openplanner.team/stops/6475F", "https://mivb.openplanner.team/stops/0160130"], ["https://mivb.openplanner.team/stops/2660", "https://mivb.openplanner.team/stops/9652"], ["https://mivb.openplanner.team/stops/1638B", "https://mivb.openplanner.team/stops/8151"], ["https://mivb.openplanner.team/stops/1638B", "https://mivb.openplanner.team/stops/2039"], ["https://mivb.openplanner.team/stops/2703", "https://mivb.openplanner.team/stops/2770"], ["https://mivb.openplanner.team/stops/4259", "https://mivb.openplanner.team/stops/4261"], ["https://mivb.openplanner.team/stops/5227F", "https://mivb.openplanner.team/stops/5228F"], ["https://mivb.openplanner.team/stops/8111", "https://mivb.openplanner.team/stops/8112"], ["https://mivb.openplanner.team/stops/6357F", "https://mivb.openplanner.team/stops/47"], ["https://mivb.openplanner.team/stops/2242F", "https://mivb.openplanner.team/stops/2248"], ["https://mivb.openplanner.team/stops/2533", "https://mivb.openplanner.team/stops/2560"], ["https://mivb.openplanner.team/stops/2807", "https://mivb.openplanner.team/stops/5295"], ["https://mivb.openplanner.team/stops/4952", "https://mivb.openplanner.team/stops/0310644"], ["https://mivb.openplanner.team/stops/1962", "https://mivb.openplanner.team/stops/5817F"], ["https://mivb.openplanner.team/stops/0900368", "https://mivb.openplanner.team/stops/0080322"], ["https://mivb.openplanner.team/stops/8161", "https://mivb.openplanner.team/stops/0160230"], ["https://mivb.openplanner.team/stops/1014F", "https://mivb.openplanner.team/stops/2572"], ["https://mivb.openplanner.team/stops/1921", "https://mivb.openplanner.team/stops/1968"], ["https://mivb.openplanner.team/stops/2663", "https://mivb.openplanner.team/stops/2952B"], ["https://mivb.openplanner.team/stops/1584", "https://mivb.openplanner.team/stops/0120426"], ["https://mivb.openplanner.team/stops/1306F", "https://mivb.openplanner.team/stops/4066F"], ["https://mivb.openplanner.team/stops/1977", "https://mivb.openplanner.team/stops/5408"], ["https://mivb.openplanner.team/stops/1097", "https://mivb.openplanner.team/stops/4007G"], ["https://mivb.openplanner.team/stops/1148C", "https://mivb.openplanner.team/stops/1417B"], ["https://mivb.openplanner.team/stops/4257", "https://mivb.openplanner.team/stops/5472"], ["https://mivb.openplanner.team/stops/1875", "https://mivb.openplanner.team/stops/23"], ["https://mivb.openplanner.team/stops/2916", "https://mivb.openplanner.team/stops/2975"], ["https://mivb.openplanner.team/stops/1515", "https://mivb.openplanner.team/stops/2250"], ["https://mivb.openplanner.team/stops/3325", "https://mivb.openplanner.team/stops/9064"], ["https://mivb.openplanner.team/stops/5105", "https://mivb.openplanner.team/stops/5168"], ["https://mivb.openplanner.team/stops/4308", "https://mivb.openplanner.team/stops/5459"], ["https://mivb.openplanner.team/stops/2898", "https://mivb.openplanner.team/stops/5359"], ["https://mivb.openplanner.team/stops/2610", "https://mivb.openplanner.team/stops/2660"], ["https://mivb.openplanner.team/stops/5039", "https://mivb.openplanner.team/stops/5041F"], ["https://mivb.openplanner.team/stops/1814B", "https://mivb.openplanner.team/stops/1860"], ["https://mivb.openplanner.team/stops/2330", "https://mivb.openplanner.team/stops/3001B"], ["https://mivb.openplanner.team/stops/1626", "https://mivb.openplanner.team/stops/0470251"], ["https://mivb.openplanner.team/stops/9605", "https://mivb.openplanner.team/stops/9632"], ["https://mivb.openplanner.team/stops/1798", "https://mivb.openplanner.team/stops/5066"], ["https://mivb.openplanner.team/stops/1936", "https://mivb.openplanner.team/stops/1944"], ["https://mivb.openplanner.team/stops/1162C", "https://mivb.openplanner.team/stops/1729"], ["https://mivb.openplanner.team/stops/1935", "https://mivb.openplanner.team/stops/9657"], ["https://mivb.openplanner.team/stops/5521", "https://mivb.openplanner.team/stops/9169"], ["https://mivb.openplanner.team/stops/1829", "https://mivb.openplanner.team/stops/29"], ["https://mivb.openplanner.team/stops/1571", "https://mivb.openplanner.team/stops/9060"], ["https://mivb.openplanner.team/stops/1980", "https://mivb.openplanner.team/stops/3121"], ["https://mivb.openplanner.team/stops/7670208", "https://mivb.openplanner.team/stops/7"], ["https://mivb.openplanner.team/stops/3608", "https://mivb.openplanner.team/stops/8"], ["https://mivb.openplanner.team/stops/4405", "https://mivb.openplanner.team/stops/4407"], ["https://mivb.openplanner.team/stops/8472", "https://mivb.openplanner.team/stops/0470151"], ["https://mivb.openplanner.team/stops/5060", "https://mivb.openplanner.team/stops/6423F"], ["https://mivb.openplanner.team/stops/4314", "https://mivb.openplanner.team/stops/4351"], ["https://mivb.openplanner.team/stops/1014F", "https://mivb.openplanner.team/stops/6865F"], ["https://mivb.openplanner.team/stops/2452", "https://mivb.openplanner.team/stops/5952"], ["https://mivb.openplanner.team/stops/1316", "https://mivb.openplanner.team/stops/3321"], ["https://mivb.openplanner.team/stops/5727F", "https://mivb.openplanner.team/stops/5753F"], ["https://mivb.openplanner.team/stops/3110", "https://mivb.openplanner.team/stops/3166"], ["https://mivb.openplanner.team/stops/8672", "https://mivb.openplanner.team/stops/8"], ["https://mivb.openplanner.team/stops/2505", "https://mivb.openplanner.team/stops/6867F"], ["https://mivb.openplanner.team/stops/1916", "https://mivb.openplanner.team/stops/5210"], ["https://mivb.openplanner.team/stops/8341", "https://mivb.openplanner.team/stops/0340241"], ["https://mivb.openplanner.team/stops/8031", "https://mivb.openplanner.team/stops/17"], ["https://mivb.openplanner.team/stops/1557", "https://mivb.openplanner.team/stops/3909"], ["https://mivb.openplanner.team/stops/0900468", "https://mivb.openplanner.team/stops/0080322"], ["https://mivb.openplanner.team/stops/0050119", "https://mivb.openplanner.team/stops/0060120"], ["https://mivb.openplanner.team/stops/2817", "https://mivb.openplanner.team/stops/2853"], ["https://mivb.openplanner.team/stops/1957B", "https://mivb.openplanner.team/stops/5822F"], ["https://mivb.openplanner.team/stops/3105", "https://mivb.openplanner.team/stops/5958C"], ["https://mivb.openplanner.team/stops/1283", "https://mivb.openplanner.team/stops/3176"], ["https://mivb.openplanner.team/stops/9627", "https://mivb.openplanner.team/stops/9755"], ["https://mivb.openplanner.team/stops/5761", "https://mivb.openplanner.team/stops/6459F"], ["https://mivb.openplanner.team/stops/4310", "https://mivb.openplanner.team/stops/4456"], ["https://mivb.openplanner.team/stops/2018", "https://mivb.openplanner.team/stops/5416"], ["https://mivb.openplanner.team/stops/1646F", "https://mivb.openplanner.team/stops/6012G"], ["https://mivb.openplanner.team/stops/1416", "https://mivb.openplanner.team/stops/1802"], ["https://mivb.openplanner.team/stops/5518", "https://mivb.openplanner.team/stops/5522"], ["https://mivb.openplanner.team/stops/2546", "https://mivb.openplanner.team/stops/5159F"], ["https://mivb.openplanner.team/stops/1738", "https://mivb.openplanner.team/stops/2151"], ["https://mivb.openplanner.team/stops/4232", "https://mivb.openplanner.team/stops/6173"], ["https://mivb.openplanner.team/stops/1500", "https://mivb.openplanner.team/stops/5224F"], ["https://mivb.openplanner.team/stops/3253", "https://mivb.openplanner.team/stops/3253F"], ["https://mivb.openplanner.team/stops/1085", "https://mivb.openplanner.team/stops/2604F"], ["https://mivb.openplanner.team/stops/6464", "https://mivb.openplanner.team/stops/0050119"], ["https://mivb.openplanner.team/stops/4112", "https://mivb.openplanner.team/stops/4159"], ["https://mivb.openplanner.team/stops/9649", "https://mivb.openplanner.team/stops/9683"], ["https://mivb.openplanner.team/stops/3800", "https://mivb.openplanner.team/stops/3802"], ["https://mivb.openplanner.team/stops/1322", "https://mivb.openplanner.team/stops/6406"], ["https://mivb.openplanner.team/stops/1807", "https://mivb.openplanner.team/stops/5267"], ["https://mivb.openplanner.team/stops/6931B", "https://mivb.openplanner.team/stops/6931G"], ["https://mivb.openplanner.team/stops/0600662", "https://mivb.openplanner.team/stops/62"], ["https://mivb.openplanner.team/stops/3404", "https://mivb.openplanner.team/stops/3424"], ["https://mivb.openplanner.team/stops/2015", "https://mivb.openplanner.team/stops/2029"], ["https://mivb.openplanner.team/stops/3018", "https://mivb.openplanner.team/stops/3201"], ["https://mivb.openplanner.team/stops/2672", "https://mivb.openplanner.team/stops/5158"], ["https://mivb.openplanner.team/stops/1386", "https://mivb.openplanner.team/stops/5228F"], ["https://mivb.openplanner.team/stops/5816B", "https://mivb.openplanner.team/stops/5816G"], ["https://mivb.openplanner.team/stops/8201", "https://mivb.openplanner.team/stops/8202"], ["https://mivb.openplanner.team/stops/7268", "https://mivb.openplanner.team/stops/7269"], ["https://mivb.openplanner.team/stops/3359", "https://mivb.openplanner.team/stops/0030117"], ["https://mivb.openplanner.team/stops/5086F", "https://mivb.openplanner.team/stops/5806"], ["https://mivb.openplanner.team/stops/5006", "https://mivb.openplanner.team/stops/6501"], ["https://mivb.openplanner.team/stops/1048F", "https://mivb.openplanner.team/stops/2763"], ["https://mivb.openplanner.team/stops/2545", "https://mivb.openplanner.team/stops/7790556"], ["https://mivb.openplanner.team/stops/1065", "https://mivb.openplanner.team/stops/1678F"], ["https://mivb.openplanner.team/stops/6309F", "https://mivb.openplanner.team/stops/0030117"], ["https://mivb.openplanner.team/stops/2252", "https://mivb.openplanner.team/stops/6857"], ["https://mivb.openplanner.team/stops/3466", "https://mivb.openplanner.team/stops/5275F"], ["https://mivb.openplanner.team/stops/1862", "https://mivb.openplanner.team/stops/1863"], ["https://mivb.openplanner.team/stops/0040118", "https://mivb.openplanner.team/stops/0040618"], ["https://mivb.openplanner.team/stops/1252", "https://mivb.openplanner.team/stops/1828"], ["https://mivb.openplanner.team/stops/1047F", "https://mivb.openplanner.team/stops/1059"], ["https://mivb.openplanner.team/stops/5710F", "https://mivb.openplanner.team/stops/5740"], ["https://mivb.openplanner.team/stops/2346", "https://mivb.openplanner.team/stops/7246"], ["https://mivb.openplanner.team/stops/1617", "https://mivb.openplanner.team/stops/1657"], ["https://mivb.openplanner.team/stops/4265", "https://mivb.openplanner.team/stops/4277"], ["https://mivb.openplanner.team/stops/5741", "https://mivb.openplanner.team/stops/5765F"], ["https://mivb.openplanner.team/stops/2241G", "https://mivb.openplanner.team/stops/2242F"], ["https://mivb.openplanner.team/stops/1178", "https://mivb.openplanner.team/stops/0370138"], ["https://mivb.openplanner.team/stops/1522", "https://mivb.openplanner.team/stops/3910"], ["https://mivb.openplanner.team/stops/6806", "https://mivb.openplanner.team/stops/6862F"], ["https://mivb.openplanner.team/stops/2539", "https://mivb.openplanner.team/stops/0350240"], ["https://mivb.openplanner.team/stops/7740201", "https://mivb.openplanner.team/stops/8744"], ["https://mivb.openplanner.team/stops/3328", "https://mivb.openplanner.team/stops/3335F"], ["https://mivb.openplanner.team/stops/4295", "https://mivb.openplanner.team/stops/8241"], ["https://mivb.openplanner.team/stops/5032B", "https://mivb.openplanner.team/stops/5032G"], ["https://mivb.openplanner.team/stops/0706", "https://mivb.openplanner.team/stops/5859"], ["https://mivb.openplanner.team/stops/6484B", "https://mivb.openplanner.team/stops/8692"], ["https://mivb.openplanner.team/stops/3553", "https://mivb.openplanner.team/stops/0240435"], ["https://mivb.openplanner.team/stops/4253", "https://mivb.openplanner.team/stops/0280213"], ["https://mivb.openplanner.team/stops/1385", "https://mivb.openplanner.team/stops/8122"], ["https://mivb.openplanner.team/stops/0705", "https://mivb.openplanner.team/stops/0660266"], ["https://mivb.openplanner.team/stops/1381", "https://mivb.openplanner.team/stops/5518"], ["https://mivb.openplanner.team/stops/2262", "https://mivb.openplanner.team/stops/6656"], ["https://mivb.openplanner.team/stops/1685F", "https://mivb.openplanner.team/stops/4270F"], ["https://mivb.openplanner.team/stops/3613F", "https://mivb.openplanner.team/stops/3713"], ["https://mivb.openplanner.team/stops/2323", "https://mivb.openplanner.team/stops/6812"], ["https://mivb.openplanner.team/stops/4104", "https://mivb.openplanner.team/stops/4115"], ["https://mivb.openplanner.team/stops/5603", "https://mivb.openplanner.team/stops/5657"], ["https://mivb.openplanner.team/stops/3102", "https://mivb.openplanner.team/stops/5802"], ["https://mivb.openplanner.team/stops/2811", "https://mivb.openplanner.team/stops/2861"], ["https://mivb.openplanner.team/stops/3468", "https://mivb.openplanner.team/stops/4555"], ["https://mivb.openplanner.team/stops/2145", "https://mivb.openplanner.team/stops/5455"], ["https://mivb.openplanner.team/stops/2548F", "https://mivb.openplanner.team/stops/2672F"], ["https://mivb.openplanner.team/stops/1134", "https://mivb.openplanner.team/stops/1158"], ["https://mivb.openplanner.team/stops/9755", "https://mivb.openplanner.team/stops/9777"], ["https://mivb.openplanner.team/stops/0600762", "https://mivb.openplanner.team/stops/2212"], ["https://mivb.openplanner.team/stops/1019", "https://mivb.openplanner.team/stops/5071"], ["https://mivb.openplanner.team/stops/2505", "https://mivb.openplanner.team/stops/2574"], ["https://mivb.openplanner.team/stops/6481", "https://mivb.openplanner.team/stops/9707"], ["https://mivb.openplanner.team/stops/7690106", "https://mivb.openplanner.team/stops/8692"], ["https://mivb.openplanner.team/stops/2611", "https://mivb.openplanner.team/stops/9686"], ["https://mivb.openplanner.team/stops/4069", "https://mivb.openplanner.team/stops/7830352"], ["https://mivb.openplanner.team/stops/5111B", "https://mivb.openplanner.team/stops/5116"], ["https://mivb.openplanner.team/stops/1421", "https://mivb.openplanner.team/stops/5223F"], ["https://mivb.openplanner.team/stops/1240", "https://mivb.openplanner.team/stops/2668"], ["https://mivb.openplanner.team/stops/5529", "https://mivb.openplanner.team/stops/5533"], ["https://mivb.openplanner.team/stops/9552", "https://mivb.openplanner.team/stops/9553"], ["https://mivb.openplanner.team/stops/1906", "https://mivb.openplanner.team/stops/5610"], ["https://mivb.openplanner.team/stops/1819", "https://mivb.openplanner.team/stops/1856"], ["https://mivb.openplanner.team/stops/4107", "https://mivb.openplanner.team/stops/4112"], ["https://mivb.openplanner.team/stops/4342", "https://mivb.openplanner.team/stops/5422"], ["https://mivb.openplanner.team/stops/0631", "https://mivb.openplanner.team/stops/1370"], ["https://mivb.openplanner.team/stops/1474B", "https://mivb.openplanner.team/stops/0060420"], ["https://mivb.openplanner.team/stops/2311", "https://mivb.openplanner.team/stops/3058"], ["https://mivb.openplanner.team/stops/1985G", "https://mivb.openplanner.team/stops/2710G"], ["https://mivb.openplanner.team/stops/3903", "https://mivb.openplanner.team/stops/3908"], ["https://mivb.openplanner.team/stops/2346", "https://mivb.openplanner.team/stops/3408"], ["https://mivb.openplanner.team/stops/1242", "https://mivb.openplanner.team/stops/6706"], ["https://mivb.openplanner.team/stops/1615", "https://mivb.openplanner.team/stops/5517"], ["https://mivb.openplanner.team/stops/0610363", "https://mivb.openplanner.team/stops/1167"], ["https://mivb.openplanner.team/stops/2859", "https://mivb.openplanner.team/stops/5081F"], ["https://mivb.openplanner.team/stops/2873", "https://mivb.openplanner.team/stops/4250"], ["https://mivb.openplanner.team/stops/1520", "https://mivb.openplanner.team/stops/1521"], ["https://mivb.openplanner.team/stops/3546", "https://mivb.openplanner.team/stops/3547"], ["https://mivb.openplanner.team/stops/2980", "https://mivb.openplanner.team/stops/3307"], ["https://mivb.openplanner.team/stops/2895", "https://mivb.openplanner.team/stops/2987"], ["https://mivb.openplanner.team/stops/1303", "https://mivb.openplanner.team/stops/2519"], ["https://mivb.openplanner.team/stops/5297B", "https://mivb.openplanner.team/stops/6856"], ["https://mivb.openplanner.team/stops/5507", "https://mivb.openplanner.team/stops/5659"], ["https://mivb.openplanner.team/stops/3261", "https://mivb.openplanner.team/stops/3633B"], ["https://mivb.openplanner.team/stops/1096", "https://mivb.openplanner.team/stops/2510"], ["https://mivb.openplanner.team/stops/5066", "https://mivb.openplanner.team/stops/5469"], ["https://mivb.openplanner.team/stops/3556", "https://mivb.openplanner.team/stops/8231"], ["https://mivb.openplanner.team/stops/5159F", "https://mivb.openplanner.team/stops/5718"], ["https://mivb.openplanner.team/stops/3362", "https://mivb.openplanner.team/stops/3420"], ["https://mivb.openplanner.team/stops/5905", "https://mivb.openplanner.team/stops/9776"], ["https://mivb.openplanner.team/stops/3462", "https://mivb.openplanner.team/stops/3902"], ["https://mivb.openplanner.team/stops/1095", "https://mivb.openplanner.team/stops/5168"], ["https://mivb.openplanner.team/stops/1244", "https://mivb.openplanner.team/stops/4594"], ["https://mivb.openplanner.team/stops/2058", "https://mivb.openplanner.team/stops/5283F"], ["https://mivb.openplanner.team/stops/6434F", "https://mivb.openplanner.team/stops/0420147"], ["https://mivb.openplanner.team/stops/1669", "https://mivb.openplanner.team/stops/5523"], ["https://mivb.openplanner.team/stops/0320343", "https://mivb.openplanner.team/stops/0370543"], ["https://mivb.openplanner.team/stops/1939", "https://mivb.openplanner.team/stops/1955"], ["https://mivb.openplanner.team/stops/3308F", "https://mivb.openplanner.team/stops/5356"], ["https://mivb.openplanner.team/stops/1835", "https://mivb.openplanner.team/stops/6475F"], ["https://mivb.openplanner.team/stops/5727F", "https://mivb.openplanner.team/stops/5822F"], ["https://mivb.openplanner.team/stops/0430248", "https://mivb.openplanner.team/stops/0430848"], ["https://mivb.openplanner.team/stops/5352", "https://mivb.openplanner.team/stops/0210232"], ["https://mivb.openplanner.team/stops/2220", "https://mivb.openplanner.team/stops/2562B"], ["https://mivb.openplanner.team/stops/1306F", "https://mivb.openplanner.team/stops/1308G"], ["https://mivb.openplanner.team/stops/2701", "https://mivb.openplanner.team/stops/5825"], ["https://mivb.openplanner.team/stops/6070", "https://mivb.openplanner.team/stops/8741"], ["https://mivb.openplanner.team/stops/5656", "https://mivb.openplanner.team/stops/9578"], ["https://mivb.openplanner.team/stops/6456F", "https://mivb.openplanner.team/stops/6459F"], ["https://mivb.openplanner.team/stops/5220F", "https://mivb.openplanner.team/stops/9963F"], ["https://mivb.openplanner.team/stops/4804B", "https://mivb.openplanner.team/stops/4856B"], ["https://mivb.openplanner.team/stops/9777", "https://mivb.openplanner.team/stops/9778"], ["https://mivb.openplanner.team/stops/8281", "https://mivb.openplanner.team/stops/13"], ["https://mivb.openplanner.team/stops/3123", "https://mivb.openplanner.team/stops/4303"], ["https://mivb.openplanner.team/stops/3320B", "https://mivb.openplanner.team/stops/0270314"], ["https://mivb.openplanner.team/stops/0706", "https://mivb.openplanner.team/stops/2950"], ["https://mivb.openplanner.team/stops/7650110", "https://mivb.openplanner.team/stops/9660"], ["https://mivb.openplanner.team/stops/3624B", "https://mivb.openplanner.team/stops/8322"], ["https://mivb.openplanner.team/stops/1134", "https://mivb.openplanner.team/stops/1802"], ["https://mivb.openplanner.team/stops/4296", "https://mivb.openplanner.team/stops/4454"], ["https://mivb.openplanner.team/stops/2254", "https://mivb.openplanner.team/stops/6812"], ["https://mivb.openplanner.team/stops/1099", "https://mivb.openplanner.team/stops/5174F"], ["https://mivb.openplanner.team/stops/3299", "https://mivb.openplanner.team/stops/3308F"], ["https://mivb.openplanner.team/stops/0616", "https://mivb.openplanner.team/stops/2245"], ["https://mivb.openplanner.team/stops/4366", "https://mivb.openplanner.team/stops/6157F"], ["https://mivb.openplanner.team/stops/3515", "https://mivb.openplanner.team/stops/4359"], ["https://mivb.openplanner.team/stops/8753", "https://mivb.openplanner.team/stops/60"], ["https://mivb.openplanner.team/stops/1914", "https://mivb.openplanner.team/stops/6453"], ["https://mivb.openplanner.team/stops/5011", "https://mivb.openplanner.team/stops/5074F"], ["https://mivb.openplanner.team/stops/2313", "https://mivb.openplanner.team/stops/2327"], ["https://mivb.openplanner.team/stops/2299", "https://mivb.openplanner.team/stops/2853"], ["https://mivb.openplanner.team/stops/3353", "https://mivb.openplanner.team/stops/3359"], ["https://mivb.openplanner.team/stops/1194", "https://mivb.openplanner.team/stops/1195"], ["https://mivb.openplanner.team/stops/1513", "https://mivb.openplanner.team/stops/1566"], ["https://mivb.openplanner.team/stops/2037", "https://mivb.openplanner.team/stops/2043"], ["https://mivb.openplanner.team/stops/1677F", "https://mivb.openplanner.team/stops/9103"], ["https://mivb.openplanner.team/stops/8381", "https://mivb.openplanner.team/stops/8741"], ["https://mivb.openplanner.team/stops/1857", "https://mivb.openplanner.team/stops/5223F"], ["https://mivb.openplanner.team/stops/4072", "https://mivb.openplanner.team/stops/4223"], ["https://mivb.openplanner.team/stops/1557", "https://mivb.openplanner.team/stops/1558"], ["https://mivb.openplanner.team/stops/8022", "https://mivb.openplanner.team/stops/0020116"], ["https://mivb.openplanner.team/stops/1425", "https://mivb.openplanner.team/stops/6082"], ["https://mivb.openplanner.team/stops/2662B", "https://mivb.openplanner.team/stops/5922"], ["https://mivb.openplanner.team/stops/1677F", "https://mivb.openplanner.team/stops/1747"], ["https://mivb.openplanner.team/stops/6706", "https://mivb.openplanner.team/stops/6754"], ["https://mivb.openplanner.team/stops/1881", "https://mivb.openplanner.team/stops/1909"], ["https://mivb.openplanner.team/stops/3309F", "https://mivb.openplanner.team/stops/6019"], ["https://mivb.openplanner.team/stops/8042", "https://mivb.openplanner.team/stops/0410146"], ["https://mivb.openplanner.team/stops/2338F", "https://mivb.openplanner.team/stops/5705"], ["https://mivb.openplanner.team/stops/1076B", "https://mivb.openplanner.team/stops/1077"], ["https://mivb.openplanner.team/stops/6459", "https://mivb.openplanner.team/stops/6461F"], ["https://mivb.openplanner.team/stops/1377", "https://mivb.openplanner.team/stops/5518"], ["https://mivb.openplanner.team/stops/4022", "https://mivb.openplanner.team/stops/6071"], ["https://mivb.openplanner.team/stops/2397", "https://mivb.openplanner.team/stops/5264F"], ["https://mivb.openplanner.team/stops/1545", "https://mivb.openplanner.team/stops/1874"], ["https://mivb.openplanner.team/stops/2315", "https://mivb.openplanner.team/stops/2358"], ["https://mivb.openplanner.team/stops/2026", "https://mivb.openplanner.team/stops/4345"], ["https://mivb.openplanner.team/stops/3903", "https://mivb.openplanner.team/stops/3957"], ["https://mivb.openplanner.team/stops/2327", "https://mivb.openplanner.team/stops/3061"], ["https://mivb.openplanner.team/stops/1585", "https://mivb.openplanner.team/stops/27"], ["https://mivb.openplanner.team/stops/2267", "https://mivb.openplanner.team/stops/0440349"], ["https://mivb.openplanner.team/stops/3132", "https://mivb.openplanner.team/stops/5363"], ["https://mivb.openplanner.team/stops/1835", "https://mivb.openplanner.team/stops/1840"], ["https://mivb.openplanner.team/stops/3122", "https://mivb.openplanner.team/stops/5611"], ["https://mivb.openplanner.team/stops/5725", "https://mivb.openplanner.team/stops/5923"], ["https://mivb.openplanner.team/stops/2568", "https://mivb.openplanner.team/stops/4007G"], ["https://mivb.openplanner.team/stops/9701", "https://mivb.openplanner.team/stops/9729"], ["https://mivb.openplanner.team/stops/1289", "https://mivb.openplanner.team/stops/1290"], ["https://mivb.openplanner.team/stops/1245", "https://mivb.openplanner.team/stops/6653F"], ["https://mivb.openplanner.team/stops/5467", "https://mivb.openplanner.team/stops/7604"], ["https://mivb.openplanner.team/stops/2302", "https://mivb.openplanner.team/stops/8012"], ["https://mivb.openplanner.team/stops/0810169", "https://mivb.openplanner.team/stops/6463F"], ["https://mivb.openplanner.team/stops/0670267", "https://mivb.openplanner.team/stops/2934"], ["https://mivb.openplanner.team/stops/1328", "https://mivb.openplanner.team/stops/1684F"], ["https://mivb.openplanner.team/stops/2524", "https://mivb.openplanner.team/stops/2546"], ["https://mivb.openplanner.team/stops/1261", "https://mivb.openplanner.team/stops/1483"], ["https://mivb.openplanner.team/stops/0820170", "https://mivb.openplanner.team/stops/6448"], ["https://mivb.openplanner.team/stops/3221", "https://mivb.openplanner.team/stops/0270514"], ["https://mivb.openplanner.team/stops/1538B", "https://mivb.openplanner.team/stops/3903"], ["https://mivb.openplanner.team/stops/5754", "https://mivb.openplanner.team/stops/5826"], ["https://mivb.openplanner.team/stops/1156", "https://mivb.openplanner.team/stops/0070121"], ["https://mivb.openplanner.team/stops/5802", "https://mivb.openplanner.team/stops/5868"], ["https://mivb.openplanner.team/stops/3309F", "https://mivb.openplanner.team/stops/6203"], ["https://mivb.openplanner.team/stops/2134", "https://mivb.openplanner.team/stops/9986F"], ["https://mivb.openplanner.team/stops/5003", "https://mivb.openplanner.team/stops/8813"], ["https://mivb.openplanner.team/stops/5516", "https://mivb.openplanner.team/stops/5524"], ["https://mivb.openplanner.team/stops/5010", "https://mivb.openplanner.team/stops/6501"], ["https://mivb.openplanner.team/stops/2703", "https://mivb.openplanner.team/stops/2771"], ["https://mivb.openplanner.team/stops/4259", "https://mivb.openplanner.team/stops/4260"], ["https://mivb.openplanner.team/stops/2814", "https://mivb.openplanner.team/stops/5773"], ["https://mivb.openplanner.team/stops/8272", "https://mivb.openplanner.team/stops/0270314"], ["https://mivb.openplanner.team/stops/1825", "https://mivb.openplanner.team/stops/5604"], ["https://mivb.openplanner.team/stops/2951", "https://mivb.openplanner.team/stops/2956"], ["https://mivb.openplanner.team/stops/5227F", "https://mivb.openplanner.team/stops/5229F"], ["https://mivb.openplanner.team/stops/8111", "https://mivb.openplanner.team/stops/0110125"], ["https://mivb.openplanner.team/stops/7820153", "https://mivb.openplanner.team/stops/53"], ["https://mivb.openplanner.team/stops/4253", "https://mivb.openplanner.team/stops/0460250"], ["https://mivb.openplanner.team/stops/2132", "https://mivb.openplanner.team/stops/5212"], ["https://mivb.openplanner.team/stops/2877", "https://mivb.openplanner.team/stops/5010"], ["https://mivb.openplanner.team/stops/2728", "https://mivb.openplanner.team/stops/2752"], ["https://mivb.openplanner.team/stops/1962", "https://mivb.openplanner.team/stops/5817"], ["https://mivb.openplanner.team/stops/1280B", "https://mivb.openplanner.team/stops/9952G"], ["https://mivb.openplanner.team/stops/8161", "https://mivb.openplanner.team/stops/0160130"], ["https://mivb.openplanner.team/stops/7720203", "https://mivb.openplanner.team/stops/3"], ["https://mivb.openplanner.team/stops/1921", "https://mivb.openplanner.team/stops/1969"], ["https://mivb.openplanner.team/stops/4998", "https://mivb.openplanner.team/stops/5087"], ["https://mivb.openplanner.team/stops/1680F", "https://mivb.openplanner.team/stops/1681F"], ["https://mivb.openplanner.team/stops/2901", "https://mivb.openplanner.team/stops/5298F"], ["https://mivb.openplanner.team/stops/0705", "https://mivb.openplanner.team/stops/6077F"], ["https://mivb.openplanner.team/stops/4257", "https://mivb.openplanner.team/stops/5471"], ["https://mivb.openplanner.team/stops/5760", "https://mivb.openplanner.team/stops/6456F"], ["https://mivb.openplanner.team/stops/1016", "https://mivb.openplanner.team/stops/1024"], ["https://mivb.openplanner.team/stops/3458", "https://mivb.openplanner.team/stops/5275F"], ["https://mivb.openplanner.team/stops/3448B", "https://mivb.openplanner.team/stops/5275F"], ["https://mivb.openplanner.team/stops/2109B", "https://mivb.openplanner.team/stops/2715"], ["https://mivb.openplanner.team/stops/1626", "https://mivb.openplanner.team/stops/5089"], ["https://mivb.openplanner.team/stops/3001B", "https://mivb.openplanner.team/stops/9609"], ["https://mivb.openplanner.team/stops/0820170", "https://mivb.openplanner.team/stops/1518"], ["https://mivb.openplanner.team/stops/1814B", "https://mivb.openplanner.team/stops/1861"], ["https://mivb.openplanner.team/stops/1798", "https://mivb.openplanner.team/stops/5017"], ["https://mivb.openplanner.team/stops/1943", "https://mivb.openplanner.team/stops/5221F"], ["https://mivb.openplanner.team/stops/1810", "https://mivb.openplanner.team/stops/1865"], ["https://mivb.openplanner.team/stops/0410446", "https://mivb.openplanner.team/stops/46"], ["https://mivb.openplanner.team/stops/3403", "https://mivb.openplanner.team/stops/3417"], ["https://mivb.openplanner.team/stops/9605", "https://mivb.openplanner.team/stops/9634"], ["https://mivb.openplanner.team/stops/3125", "https://mivb.openplanner.team/stops/5264F"], ["https://mivb.openplanner.team/stops/1094", "https://mivb.openplanner.team/stops/1094F"], ["https://mivb.openplanner.team/stops/5013F", "https://mivb.openplanner.team/stops/0460250"], ["https://mivb.openplanner.team/stops/1904", "https://mivb.openplanner.team/stops/1988"], ["https://mivb.openplanner.team/stops/0706", "https://mivb.openplanner.team/stops/0670367"], ["https://mivb.openplanner.team/stops/8302", "https://mivb.openplanner.team/stops/0300245"], ["https://mivb.openplanner.team/stops/2715", "https://mivb.openplanner.team/stops/2763"], ["https://mivb.openplanner.team/stops/5021", "https://mivb.openplanner.team/stops/6209"], ["https://mivb.openplanner.team/stops/0906", "https://mivb.openplanner.team/stops/0900468"], ["https://mivb.openplanner.team/stops/5060", "https://mivb.openplanner.team/stops/6422F"], ["https://mivb.openplanner.team/stops/2956", "https://mivb.openplanner.team/stops/5849"], ["https://mivb.openplanner.team/stops/1303", "https://mivb.openplanner.team/stops/2571"], ["https://mivb.openplanner.team/stops/2267", "https://mivb.openplanner.team/stops/2833"], ["https://mivb.openplanner.team/stops/1499", "https://mivb.openplanner.team/stops/1541"], ["https://mivb.openplanner.team/stops/0726", "https://mivb.openplanner.team/stops/0350140"], ["https://mivb.openplanner.team/stops/1156T", "https://mivb.openplanner.team/stops/0070521"], ["https://mivb.openplanner.team/stops/3232", "https://mivb.openplanner.team/stops/4007G"], ["https://mivb.openplanner.team/stops/1582", "https://mivb.openplanner.team/stops/6017"], ["https://mivb.openplanner.team/stops/2541", "https://mivb.openplanner.team/stops/2544"], ["https://mivb.openplanner.team/stops/1201", "https://mivb.openplanner.team/stops/9801"], ["https://mivb.openplanner.team/stops/2043", "https://mivb.openplanner.team/stops/0130127"], ["https://mivb.openplanner.team/stops/2663", "https://mivb.openplanner.team/stops/2663G"], ["https://mivb.openplanner.team/stops/1627", "https://mivb.openplanner.team/stops/9164"], ["https://mivb.openplanner.team/stops/1232", "https://mivb.openplanner.team/stops/2937B"], ["https://mivb.openplanner.team/stops/5298", "https://mivb.openplanner.team/stops/5299"], ["https://mivb.openplanner.team/stops/3009", "https://mivb.openplanner.team/stops/6755"], ["https://mivb.openplanner.team/stops/1379", "https://mivb.openplanner.team/stops/1385"], ["https://mivb.openplanner.team/stops/6428", "https://mivb.openplanner.team/stops/6430F"], ["https://mivb.openplanner.team/stops/9654", "https://mivb.openplanner.team/stops/9660"], ["https://mivb.openplanner.team/stops/0900468", "https://mivb.openplanner.team/stops/0080222"], ["https://mivb.openplanner.team/stops/9754B", "https://mivb.openplanner.team/stops/9779"], ["https://mivb.openplanner.team/stops/0050119", "https://mivb.openplanner.team/stops/0050319"], ["https://mivb.openplanner.team/stops/3263B", "https://mivb.openplanner.team/stops/0370438"], ["https://mivb.openplanner.team/stops/8651", "https://mivb.openplanner.team/stops/7650110"], ["https://mivb.openplanner.team/stops/1134", "https://mivb.openplanner.team/stops/1872B"], ["https://mivb.openplanner.team/stops/3308F", "https://mivb.openplanner.team/stops/3451"], ["https://mivb.openplanner.team/stops/1656B", "https://mivb.openplanner.team/stops/1668"], ["https://mivb.openplanner.team/stops/2137", "https://mivb.openplanner.team/stops/2150"], ["https://mivb.openplanner.team/stops/1533", "https://mivb.openplanner.team/stops/3962"], ["https://mivb.openplanner.team/stops/2016", "https://mivb.openplanner.team/stops/2076"], ["https://mivb.openplanner.team/stops/1855", "https://mivb.openplanner.team/stops/6650G"], ["https://mivb.openplanner.team/stops/4295", "https://mivb.openplanner.team/stops/35"], ["https://mivb.openplanner.team/stops/1201", "https://mivb.openplanner.team/stops/4599"], ["https://mivb.openplanner.team/stops/1379", "https://mivb.openplanner.team/stops/0120126"], ["https://mivb.openplanner.team/stops/2260F", "https://mivb.openplanner.team/stops/0370438"], ["https://mivb.openplanner.team/stops/2528", "https://mivb.openplanner.team/stops/2548"], ["https://mivb.openplanner.team/stops/5518", "https://mivb.openplanner.team/stops/5521"], ["https://mivb.openplanner.team/stops/3007", "https://mivb.openplanner.team/stops/5958C"], ["https://mivb.openplanner.team/stops/1351", "https://mivb.openplanner.team/stops/0440649"], ["https://mivb.openplanner.team/stops/2330", "https://mivb.openplanner.team/stops/2823B"], ["https://mivb.openplanner.team/stops/1626", "https://mivb.openplanner.team/stops/4074B"], ["https://mivb.openplanner.team/stops/1112", "https://mivb.openplanner.team/stops/0470351"], ["https://mivb.openplanner.team/stops/3904", "https://mivb.openplanner.team/stops/3905"], ["https://mivb.openplanner.team/stops/1984G", "https://mivb.openplanner.team/stops/1985B"], ["https://mivb.openplanner.team/stops/4129", "https://mivb.openplanner.team/stops/6172"], ["https://mivb.openplanner.team/stops/5529", "https://mivb.openplanner.team/stops/6474F"], ["https://mivb.openplanner.team/stops/1051", "https://mivb.openplanner.team/stops/2304"], ["https://mivb.openplanner.team/stops/3323", "https://mivb.openplanner.team/stops/0020116"], ["https://mivb.openplanner.team/stops/1809", "https://mivb.openplanner.team/stops/1866"], ["https://mivb.openplanner.team/stops/1528", "https://mivb.openplanner.team/stops/1531"], ["https://mivb.openplanner.team/stops/6483B", "https://mivb.openplanner.team/stops/7690106"], ["https://mivb.openplanner.team/stops/1875", "https://mivb.openplanner.team/stops/0090323"], ["https://mivb.openplanner.team/stops/1117", "https://mivb.openplanner.team/stops/2217F"], ["https://mivb.openplanner.team/stops/2859", "https://mivb.openplanner.team/stops/2871"], ["https://mivb.openplanner.team/stops/5711F", "https://mivb.openplanner.team/stops/6303"], ["https://mivb.openplanner.team/stops/3712", "https://mivb.openplanner.team/stops/3717"], ["https://mivb.openplanner.team/stops/2910", "https://mivb.openplanner.team/stops/3175B"], ["https://mivb.openplanner.team/stops/6369", "https://mivb.openplanner.team/stops/6410"], ["https://mivb.openplanner.team/stops/5409", "https://mivb.openplanner.team/stops/5466"], ["https://mivb.openplanner.team/stops/3682", "https://mivb.openplanner.team/stops/3812"], ["https://mivb.openplanner.team/stops/3358", "https://mivb.openplanner.team/stops/0040218"], ["https://mivb.openplanner.team/stops/2323", "https://mivb.openplanner.team/stops/5"], ["https://mivb.openplanner.team/stops/3404", "https://mivb.openplanner.team/stops/3417"], ["https://mivb.openplanner.team/stops/5008F", "https://mivb.openplanner.team/stops/8773"], ["https://mivb.openplanner.team/stops/1881", "https://mivb.openplanner.team/stops/3120"], ["https://mivb.openplanner.team/stops/1077", "https://mivb.openplanner.team/stops/5291F"], ["https://mivb.openplanner.team/stops/5258", "https://mivb.openplanner.team/stops/5413F"], ["https://mivb.openplanner.team/stops/7690206", "https://mivb.openplanner.team/stops/6"], ["https://mivb.openplanner.team/stops/2955", "https://mivb.openplanner.team/stops/5120"], ["https://mivb.openplanner.team/stops/1065", "https://mivb.openplanner.team/stops/1679F"], ["https://mivb.openplanner.team/stops/6606", "https://mivb.openplanner.team/stops/6652"], ["https://mivb.openplanner.team/stops/3225F", "https://mivb.openplanner.team/stops/3257F"], ["https://mivb.openplanner.team/stops/4344", "https://mivb.openplanner.team/stops/5452"], ["https://mivb.openplanner.team/stops/2869", "https://mivb.openplanner.team/stops/6553"], ["https://mivb.openplanner.team/stops/1788", "https://mivb.openplanner.team/stops/2859"], ["https://mivb.openplanner.team/stops/2267", "https://mivb.openplanner.team/stops/0270114"], ["https://mivb.openplanner.team/stops/6473", "https://mivb.openplanner.team/stops/8202"], ["https://mivb.openplanner.team/stops/2050", "https://mivb.openplanner.team/stops/37"], ["https://mivb.openplanner.team/stops/6201F", "https://mivb.openplanner.team/stops/6419F"], ["https://mivb.openplanner.team/stops/2329", "https://mivb.openplanner.team/stops/2330"], ["https://mivb.openplanner.team/stops/4265", "https://mivb.openplanner.team/stops/4276"], ["https://mivb.openplanner.team/stops/9778", "https://mivb.openplanner.team/stops/9779"], ["https://mivb.openplanner.team/stops/3117", "https://mivb.openplanner.team/stops/3921"], ["https://mivb.openplanner.team/stops/2960F", "https://mivb.openplanner.team/stops/6408"], ["https://mivb.openplanner.team/stops/2346", "https://mivb.openplanner.team/stops/5350G"], ["https://mivb.openplanner.team/stops/1508", "https://mivb.openplanner.team/stops/8042"], ["https://mivb.openplanner.team/stops/5288", "https://mivb.openplanner.team/stops/6168"], ["https://mivb.openplanner.team/stops/3328", "https://mivb.openplanner.team/stops/3337F"], ["https://mivb.openplanner.team/stops/1280B", "https://mivb.openplanner.team/stops/1980"], ["https://mivb.openplanner.team/stops/3111", "https://mivb.openplanner.team/stops/3164"], ["https://mivb.openplanner.team/stops/1484", "https://mivb.openplanner.team/stops/1486B"], ["https://mivb.openplanner.team/stops/1872B", "https://mivb.openplanner.team/stops/3953"], ["https://mivb.openplanner.team/stops/1111", "https://mivb.openplanner.team/stops/2510"], ["https://mivb.openplanner.team/stops/3104", "https://mivb.openplanner.team/stops/3172"], ["https://mivb.openplanner.team/stops/1973", "https://mivb.openplanner.team/stops/5254"], ["https://mivb.openplanner.team/stops/1043", "https://mivb.openplanner.team/stops/0130127"], ["https://mivb.openplanner.team/stops/1781", "https://mivb.openplanner.team/stops/8012"], ["https://mivb.openplanner.team/stops/2875", "https://mivb.openplanner.team/stops/5001F"], ["https://mivb.openplanner.team/stops/0130127", "https://mivb.openplanner.team/stops/0140228"], ["https://mivb.openplanner.team/stops/5305G", "https://mivb.openplanner.team/stops/5356"], ["https://mivb.openplanner.team/stops/2151", "https://mivb.openplanner.team/stops/5029"], ["https://mivb.openplanner.team/stops/6439", "https://mivb.openplanner.team/stops/6440"], ["https://mivb.openplanner.team/stops/3155", "https://mivb.openplanner.team/stops/3156"], ["https://mivb.openplanner.team/stops/1154", "https://mivb.openplanner.team/stops/2287"], ["https://mivb.openplanner.team/stops/6356", "https://mivb.openplanner.team/stops/0030117"], ["https://mivb.openplanner.team/stops/3323", "https://mivb.openplanner.team/stops/6444"], ["https://mivb.openplanner.team/stops/3304", "https://mivb.openplanner.team/stops/5362F"], ["https://mivb.openplanner.team/stops/2928", "https://mivb.openplanner.team/stops/3620B"], ["https://mivb.openplanner.team/stops/5006", "https://mivb.openplanner.team/stops/5080"], ["https://mivb.openplanner.team/stops/0600962", "https://mivb.openplanner.team/stops/62"], ["https://mivb.openplanner.team/stops/4340", "https://mivb.openplanner.team/stops/4342"], ["https://mivb.openplanner.team/stops/0089", "https://mivb.openplanner.team/stops/0090123"], ["https://mivb.openplanner.team/stops/1421", "https://mivb.openplanner.team/stops/5224F"], ["https://mivb.openplanner.team/stops/1453", "https://mivb.openplanner.team/stops/4357"], ["https://mivb.openplanner.team/stops/1454", "https://mivb.openplanner.team/stops/0120626"], ["https://mivb.openplanner.team/stops/1065", "https://mivb.openplanner.team/stops/1066"], ["https://mivb.openplanner.team/stops/5003", "https://mivb.openplanner.team/stops/5295"], ["https://mivb.openplanner.team/stops/2901", "https://mivb.openplanner.team/stops/5361"], ["https://mivb.openplanner.team/stops/9600B", "https://mivb.openplanner.team/stops/9728"], ["https://mivb.openplanner.team/stops/1936", "https://mivb.openplanner.team/stops/2146"], ["https://mivb.openplanner.team/stops/1646F", "https://mivb.openplanner.team/stops/6066G"], ["https://mivb.openplanner.team/stops/1754", "https://mivb.openplanner.team/stops/0260237"], ["https://mivb.openplanner.team/stops/2971", "https://mivb.openplanner.team/stops/5404"], ["https://mivb.openplanner.team/stops/2346", "https://mivb.openplanner.team/stops/3407"], ["https://mivb.openplanner.team/stops/3854B", "https://mivb.openplanner.team/stops/9"], ["https://mivb.openplanner.team/stops/1242", "https://mivb.openplanner.team/stops/6754"], ["https://mivb.openplanner.team/stops/2362B", "https://mivb.openplanner.team/stops/2363"], ["https://mivb.openplanner.team/stops/6422F", "https://mivb.openplanner.team/stops/6423F"], ["https://mivb.openplanner.team/stops/1117", "https://mivb.openplanner.team/stops/1253B"], ["https://mivb.openplanner.team/stops/2895", "https://mivb.openplanner.team/stops/2986B"], ["https://mivb.openplanner.team/stops/1968", "https://mivb.openplanner.team/stops/9959F"], ["https://mivb.openplanner.team/stops/7670108", "https://mivb.openplanner.team/stops/8"], ["https://mivb.openplanner.team/stops/1719", "https://mivb.openplanner.team/stops/1863"], ["https://mivb.openplanner.team/stops/1495", "https://mivb.openplanner.team/stops/2319"], ["https://mivb.openplanner.team/stops/1010", "https://mivb.openplanner.team/stops/1677F"], ["https://mivb.openplanner.team/stops/3003", "https://mivb.openplanner.team/stops/5967"], ["https://mivb.openplanner.team/stops/5740", "https://mivb.openplanner.team/stops/5741"], ["https://mivb.openplanner.team/stops/3762", "https://mivb.openplanner.team/stops/4558"], ["https://mivb.openplanner.team/stops/5905", "https://mivb.openplanner.team/stops/9756"], ["https://mivb.openplanner.team/stops/2241G", "https://mivb.openplanner.team/stops/6214"], ["https://mivb.openplanner.team/stops/3468", "https://mivb.openplanner.team/stops/3704"], ["https://mivb.openplanner.team/stops/0040518", "https://mivb.openplanner.team/stops/0040618"], ["https://mivb.openplanner.team/stops/1402B", "https://mivb.openplanner.team/stops/1463"], ["https://mivb.openplanner.team/stops/0320343", "https://mivb.openplanner.team/stops/0320443"], ["https://mivb.openplanner.team/stops/2810", "https://mivb.openplanner.team/stops/6122"], ["https://mivb.openplanner.team/stops/5015", "https://mivb.openplanner.team/stops/5089"], ["https://mivb.openplanner.team/stops/1835", "https://mivb.openplanner.team/stops/6474F"], ["https://mivb.openplanner.team/stops/1627", "https://mivb.openplanner.team/stops/5519"], ["https://mivb.openplanner.team/stops/5272F", "https://mivb.openplanner.team/stops/5287"], ["https://mivb.openplanner.team/stops/5308", "https://mivb.openplanner.team/stops/5308F"], ["https://mivb.openplanner.team/stops/5274F", "https://mivb.openplanner.team/stops/5279F"], ["https://mivb.openplanner.team/stops/6070", "https://mivb.openplanner.team/stops/8733"], ["https://mivb.openplanner.team/stops/1156", "https://mivb.openplanner.team/stops/1156T"], ["https://mivb.openplanner.team/stops/1211B", "https://mivb.openplanner.team/stops/7720203"], ["https://mivb.openplanner.team/stops/5611", "https://mivb.openplanner.team/stops/6112"], ["https://mivb.openplanner.team/stops/2410", "https://mivb.openplanner.team/stops/5848"], ["https://mivb.openplanner.team/stops/2306", "https://mivb.openplanner.team/stops/2414"], ["https://mivb.openplanner.team/stops/1145", "https://mivb.openplanner.team/stops/3230F"], ["https://mivb.openplanner.team/stops/5220F", "https://mivb.openplanner.team/stops/9959F"], ["https://mivb.openplanner.team/stops/1136", "https://mivb.openplanner.team/stops/0070521"], ["https://mivb.openplanner.team/stops/5754", "https://mivb.openplanner.team/stops/5921G"], ["https://mivb.openplanner.team/stops/0704", "https://mivb.openplanner.team/stops/0650265"], ["https://mivb.openplanner.team/stops/1510", "https://mivb.openplanner.team/stops/2922"], ["https://mivb.openplanner.team/stops/1514", "https://mivb.openplanner.team/stops/1565"], ["https://mivb.openplanner.team/stops/1949", "https://mivb.openplanner.team/stops/1961B"], ["https://mivb.openplanner.team/stops/1769", "https://mivb.openplanner.team/stops/1981"], ["https://mivb.openplanner.team/stops/1099", "https://mivb.openplanner.team/stops/5174"], ["https://mivb.openplanner.team/stops/1204", "https://mivb.openplanner.team/stops/3755"], ["https://mivb.openplanner.team/stops/1852", "https://mivb.openplanner.team/stops/5659"], ["https://mivb.openplanner.team/stops/2002", "https://mivb.openplanner.team/stops/5032G"], ["https://mivb.openplanner.team/stops/4287", "https://mivb.openplanner.team/stops/4288"], ["https://mivb.openplanner.team/stops/5284F", "https://mivb.openplanner.team/stops/6469"], ["https://mivb.openplanner.team/stops/5711F", "https://mivb.openplanner.team/stops/5712F"], ["https://mivb.openplanner.team/stops/2409", "https://mivb.openplanner.team/stops/5849"], ["https://mivb.openplanner.team/stops/9979B", "https://mivb.openplanner.team/stops/39"], ["https://mivb.openplanner.team/stops/1319", "https://mivb.openplanner.team/stops/1476"], ["https://mivb.openplanner.team/stops/2556", "https://mivb.openplanner.team/stops/3681"], ["https://mivb.openplanner.team/stops/8381", "https://mivb.openplanner.team/stops/8733"], ["https://mivb.openplanner.team/stops/1857", "https://mivb.openplanner.team/stops/5224F"], ["https://mivb.openplanner.team/stops/4072", "https://mivb.openplanner.team/stops/4221"], ["https://mivb.openplanner.team/stops/8022", "https://mivb.openplanner.team/stops/0020416"], ["https://mivb.openplanner.team/stops/1816", "https://mivb.openplanner.team/stops/5287"], ["https://mivb.openplanner.team/stops/2259F", "https://mivb.openplanner.team/stops/7720203"], ["https://mivb.openplanner.team/stops/3304", "https://mivb.openplanner.team/stops/5045"], ["https://mivb.openplanner.team/stops/0704", "https://mivb.openplanner.team/stops/2336G"], ["https://mivb.openplanner.team/stops/5001F", "https://mivb.openplanner.team/stops/5776"], ["https://mivb.openplanner.team/stops/5776", "https://mivb.openplanner.team/stops/6481"], ["https://mivb.openplanner.team/stops/3122", "https://mivb.openplanner.team/stops/6112"], ["https://mivb.openplanner.team/stops/1515", "https://mivb.openplanner.team/stops/3707"], ["https://mivb.openplanner.team/stops/3408", "https://mivb.openplanner.team/stops/5306G"], ["https://mivb.openplanner.team/stops/5315", "https://mivb.openplanner.team/stops/6457F"], ["https://mivb.openplanner.team/stops/2315", "https://mivb.openplanner.team/stops/2359"], ["https://mivb.openplanner.team/stops/1820", "https://mivb.openplanner.team/stops/2282"], ["https://mivb.openplanner.team/stops/2371", "https://mivb.openplanner.team/stops/4252"], ["https://mivb.openplanner.team/stops/3125", "https://mivb.openplanner.team/stops/5200F"], ["https://mivb.openplanner.team/stops/1522", "https://mivb.openplanner.team/stops/1557"], ["https://mivb.openplanner.team/stops/6805F", "https://mivb.openplanner.team/stops/6864F"], ["https://mivb.openplanner.team/stops/1208", "https://mivb.openplanner.team/stops/1255"], ["https://mivb.openplanner.team/stops/1144", "https://mivb.openplanner.team/stops/6447"], ["https://mivb.openplanner.team/stops/1707", "https://mivb.openplanner.team/stops/3633B"], ["https://mivb.openplanner.team/stops/5421", "https://mivb.openplanner.team/stops/5453"], ["https://mivb.openplanner.team/stops/3520", "https://mivb.openplanner.team/stops/0230434"], ["https://mivb.openplanner.team/stops/2980", "https://mivb.openplanner.team/stops/3411"], ["https://mivb.openplanner.team/stops/2725", "https://mivb.openplanner.team/stops/2753"], ["https://mivb.openplanner.team/stops/1117", "https://mivb.openplanner.team/stops/8371"], ["https://mivb.openplanner.team/stops/1278", "https://mivb.openplanner.team/stops/1806"], ["https://mivb.openplanner.team/stops/6705F", "https://mivb.openplanner.team/stops/6806F"], ["https://mivb.openplanner.team/stops/6012G", "https://mivb.openplanner.team/stops/6201F"], ["https://mivb.openplanner.team/stops/2659", "https://mivb.openplanner.team/stops/9649"], ["https://mivb.openplanner.team/stops/1533", "https://mivb.openplanner.team/stops/1539"], ["https://mivb.openplanner.team/stops/9701", "https://mivb.openplanner.team/stops/9728"], ["https://mivb.openplanner.team/stops/1160", "https://mivb.openplanner.team/stops/8042"], ["https://mivb.openplanner.team/stops/0660266", "https://mivb.openplanner.team/stops/0723"], ["https://mivb.openplanner.team/stops/2302", "https://mivb.openplanner.team/stops/8011"], ["https://mivb.openplanner.team/stops/2452", "https://mivb.openplanner.team/stops/5756"], ["https://mivb.openplanner.team/stops/2123", "https://mivb.openplanner.team/stops/5253"], ["https://mivb.openplanner.team/stops/1853", "https://mivb.openplanner.team/stops/1854"], ["https://mivb.openplanner.team/stops/1051", "https://mivb.openplanner.team/stops/1052"], ["https://mivb.openplanner.team/stops/1018", "https://mivb.openplanner.team/stops/8641"], ["https://mivb.openplanner.team/stops/0040518", "https://mivb.openplanner.team/stops/0410146"], ["https://mivb.openplanner.team/stops/1687F", "https://mivb.openplanner.team/stops/4071"], ["https://mivb.openplanner.team/stops/5100B", "https://mivb.openplanner.team/stops/5123"], ["https://mivb.openplanner.team/stops/2252", "https://mivb.openplanner.team/stops/8692"], ["https://mivb.openplanner.team/stops/0440249", "https://mivb.openplanner.team/stops/0440349"], ["https://mivb.openplanner.team/stops/4002B", "https://mivb.openplanner.team/stops/4059"], ["https://mivb.openplanner.team/stops/0520161", "https://mivb.openplanner.team/stops/1030"], ["https://mivb.openplanner.team/stops/1687F", "https://mivb.openplanner.team/stops/4223"], ["https://mivb.openplanner.team/stops/4502F", "https://mivb.openplanner.team/stops/5920C"], ["https://mivb.openplanner.team/stops/3172", "https://mivb.openplanner.team/stops/5867F"], ["https://mivb.openplanner.team/stops/1625", "https://mivb.openplanner.team/stops/1635"], ["https://mivb.openplanner.team/stops/3221", "https://mivb.openplanner.team/stops/0270414"], ["https://mivb.openplanner.team/stops/2243F", "https://mivb.openplanner.team/stops/3761"], ["https://mivb.openplanner.team/stops/2660", "https://mivb.openplanner.team/stops/9649"], ["https://mivb.openplanner.team/stops/5516", "https://mivb.openplanner.team/stops/5523"], ["https://mivb.openplanner.team/stops/2256B", "https://mivb.openplanner.team/stops/2256F"], ["https://mivb.openplanner.team/stops/2309C", "https://mivb.openplanner.team/stops/5707"], ["https://mivb.openplanner.team/stops/2950", "https://mivb.openplanner.team/stops/6077F"], ["https://mivb.openplanner.team/stops/5016F", "https://mivb.openplanner.team/stops/5470"], ["https://mivb.openplanner.team/stops/8272", "https://mivb.openplanner.team/stops/0270114"], ["https://mivb.openplanner.team/stops/6024", "https://mivb.openplanner.team/stops/6054B"], ["https://mivb.openplanner.team/stops/2254", "https://mivb.openplanner.team/stops/6857"], ["https://mivb.openplanner.team/stops/5227F", "https://mivb.openplanner.team/stops/5230F"], ["https://mivb.openplanner.team/stops/8111", "https://mivb.openplanner.team/stops/0110225"], ["https://mivb.openplanner.team/stops/2153", "https://mivb.openplanner.team/stops/5053G"], ["https://mivb.openplanner.team/stops/1199F", "https://mivb.openplanner.team/stops/4159"], ["https://mivb.openplanner.team/stops/2533", "https://mivb.openplanner.team/stops/2562B"], ["https://mivb.openplanner.team/stops/1652", "https://mivb.openplanner.team/stops/2153"], ["https://mivb.openplanner.team/stops/1476", "https://mivb.openplanner.team/stops/0060520"], ["https://mivb.openplanner.team/stops/2220F", "https://mivb.openplanner.team/stops/2562B"], ["https://mivb.openplanner.team/stops/0810369", "https://mivb.openplanner.team/stops/1153"], ["https://mivb.openplanner.team/stops/2867", "https://mivb.openplanner.team/stops/2872"], ["https://mivb.openplanner.team/stops/2043", "https://mivb.openplanner.team/stops/2084"], ["https://mivb.openplanner.team/stops/2565", "https://mivb.openplanner.team/stops/3234"], ["https://mivb.openplanner.team/stops/1764", "https://mivb.openplanner.team/stops/6156F"], ["https://mivb.openplanner.team/stops/1585", "https://mivb.openplanner.team/stops/1640B"], ["https://mivb.openplanner.team/stops/3118", "https://mivb.openplanner.team/stops/6018"], ["https://mivb.openplanner.team/stops/1466", "https://mivb.openplanner.team/stops/1467"], ["https://mivb.openplanner.team/stops/3222", "https://mivb.openplanner.team/stops/3260"], ["https://mivb.openplanner.team/stops/2965", "https://mivb.openplanner.team/stops/6109"], ["https://mivb.openplanner.team/stops/1738", "https://mivb.openplanner.team/stops/2112"], ["https://mivb.openplanner.team/stops/2539F", "https://mivb.openplanner.team/stops/2541"], ["https://mivb.openplanner.team/stops/3751", "https://mivb.openplanner.team/stops/3752"], ["https://mivb.openplanner.team/stops/5402", "https://mivb.openplanner.team/stops/9047"], ["https://mivb.openplanner.team/stops/1756B", "https://mivb.openplanner.team/stops/1757"], ["https://mivb.openplanner.team/stops/3449", "https://mivb.openplanner.team/stops/3454"], ["https://mivb.openplanner.team/stops/2610", "https://mivb.openplanner.team/stops/2611"], ["https://mivb.openplanner.team/stops/5039", "https://mivb.openplanner.team/stops/5044"], ["https://mivb.openplanner.team/stops/3211", "https://mivb.openplanner.team/stops/0350240"], ["https://mivb.openplanner.team/stops/3520", "https://mivb.openplanner.team/stops/4298"], ["https://mivb.openplanner.team/stops/2822", "https://mivb.openplanner.team/stops/2852"], ["https://mivb.openplanner.team/stops/1881", "https://mivb.openplanner.team/stops/3156"], ["https://mivb.openplanner.team/stops/1928F", "https://mivb.openplanner.team/stops/1964"], ["https://mivb.openplanner.team/stops/5053B", "https://mivb.openplanner.team/stops/5053G"], ["https://mivb.openplanner.team/stops/2457", "https://mivb.openplanner.team/stops/5848"], ["https://mivb.openplanner.team/stops/3235", "https://mivb.openplanner.team/stops/4006G"], ["https://mivb.openplanner.team/stops/1798", "https://mivb.openplanner.team/stops/5067"], ["https://mivb.openplanner.team/stops/2715", "https://mivb.openplanner.team/stops/2762"], ["https://mivb.openplanner.team/stops/5701", "https://mivb.openplanner.team/stops/5776"], ["https://mivb.openplanner.team/stops/1467", "https://mivb.openplanner.team/stops/1768"], ["https://mivb.openplanner.team/stops/1900", "https://mivb.openplanner.team/stops/1901"], ["https://mivb.openplanner.team/stops/2204", "https://mivb.openplanner.team/stops/2207"], ["https://mivb.openplanner.team/stops/0906", "https://mivb.openplanner.team/stops/0900368"], ["https://mivb.openplanner.team/stops/1737", "https://mivb.openplanner.team/stops/1738"], ["https://mivb.openplanner.team/stops/2058", "https://mivb.openplanner.team/stops/5269F"], ["https://mivb.openplanner.team/stops/6068", "https://mivb.openplanner.team/stops/9979B"], ["https://mivb.openplanner.team/stops/5528F", "https://mivb.openplanner.team/stops/9164"], ["https://mivb.openplanner.team/stops/3239", "https://mivb.openplanner.team/stops/3252"], ["https://mivb.openplanner.team/stops/0806", "https://mivb.openplanner.team/stops/8082"], ["https://mivb.openplanner.team/stops/2271", "https://mivb.openplanner.team/stops/9026"], ["https://mivb.openplanner.team/stops/3182", "https://mivb.openplanner.team/stops/9292"], ["https://mivb.openplanner.team/stops/1422", "https://mivb.openplanner.team/stops/1451"], ["https://mivb.openplanner.team/stops/1863", "https://mivb.openplanner.team/stops/1864"], ["https://mivb.openplanner.team/stops/5298", "https://mivb.openplanner.team/stops/5298F"], ["https://mivb.openplanner.team/stops/1745", "https://mivb.openplanner.team/stops/4072"], ["https://mivb.openplanner.team/stops/6117", "https://mivb.openplanner.team/stops/0070321"], ["https://mivb.openplanner.team/stops/2939B", "https://mivb.openplanner.team/stops/5152"], ["https://mivb.openplanner.team/stops/6423F", "https://mivb.openplanner.team/stops/6424F"], ["https://mivb.openplanner.team/stops/3009", "https://mivb.openplanner.team/stops/6754"], ["https://mivb.openplanner.team/stops/1379", "https://mivb.openplanner.team/stops/1384"], ["https://mivb.openplanner.team/stops/1834", "https://mivb.openplanner.team/stops/5554"], ["https://mivb.openplanner.team/stops/3105", "https://mivb.openplanner.team/stops/5320"], ["https://mivb.openplanner.team/stops/2345", "https://mivb.openplanner.team/stops/5357"], ["https://mivb.openplanner.team/stops/1746", "https://mivb.openplanner.team/stops/1755"], ["https://mivb.openplanner.team/stops/1143", "https://mivb.openplanner.team/stops/9751"], ["https://mivb.openplanner.team/stops/1080", "https://mivb.openplanner.team/stops/1743"], ["https://mivb.openplanner.team/stops/5776", "https://mivb.openplanner.team/stops/9707"], ["https://mivb.openplanner.team/stops/1303", "https://mivb.openplanner.team/stops/6864F"], ["https://mivb.openplanner.team/stops/1201", "https://mivb.openplanner.team/stops/4600"], ["https://mivb.openplanner.team/stops/2918", "https://mivb.openplanner.team/stops/2974"], ["https://mivb.openplanner.team/stops/4857B", "https://mivb.openplanner.team/stops/5029"], ["https://mivb.openplanner.team/stops/8784", "https://mivb.openplanner.team/stops/9027"], ["https://mivb.openplanner.team/stops/2900", "https://mivb.openplanner.team/stops/2900F"], ["https://mivb.openplanner.team/stops/2018", "https://mivb.openplanner.team/stops/5418"], ["https://mivb.openplanner.team/stops/3225F", "https://mivb.openplanner.team/stops/7740201"], ["https://mivb.openplanner.team/stops/4449", "https://mivb.openplanner.team/stops/4454"], ["https://mivb.openplanner.team/stops/1108", "https://mivb.openplanner.team/stops/1199F"], ["https://mivb.openplanner.team/stops/0350140", "https://mivb.openplanner.team/stops/0350740"], ["https://mivb.openplanner.team/stops/0501", "https://mivb.openplanner.team/stops/0010415"], ["https://mivb.openplanner.team/stops/3611F", "https://mivb.openplanner.team/stops/3612F"], ["https://mivb.openplanner.team/stops/1606", "https://mivb.openplanner.team/stops/1745"], ["https://mivb.openplanner.team/stops/1803B", "https://mivb.openplanner.team/stops/3953"], ["https://mivb.openplanner.team/stops/5175", "https://mivb.openplanner.team/stops/5718"], ["https://mivb.openplanner.team/stops/1561", "https://mivb.openplanner.team/stops/3952"], ["https://mivb.openplanner.team/stops/1868", "https://mivb.openplanner.team/stops/6117"], ["https://mivb.openplanner.team/stops/4112", "https://mivb.openplanner.team/stops/4157"], ["https://mivb.openplanner.team/stops/6369", "https://mivb.openplanner.team/stops/6409F"], ["https://mivb.openplanner.team/stops/3610G", "https://mivb.openplanner.team/stops/8651"], ["https://mivb.openplanner.team/stops/1825", "https://mivb.openplanner.team/stops/1851"], ["https://mivb.openplanner.team/stops/4258", "https://mivb.openplanner.team/stops/8784"], ["https://mivb.openplanner.team/stops/1239", "https://mivb.openplanner.team/stops/1240"], ["https://mivb.openplanner.team/stops/3163", "https://mivb.openplanner.team/stops/6019"], ["https://mivb.openplanner.team/stops/1972", "https://mivb.openplanner.team/stops/5211"], ["https://mivb.openplanner.team/stops/1180", "https://mivb.openplanner.team/stops/8471"], ["https://mivb.openplanner.team/stops/4408", "https://mivb.openplanner.team/stops/0250536"], ["https://mivb.openplanner.team/stops/1077", "https://mivb.openplanner.team/stops/5288"], ["https://mivb.openplanner.team/stops/3705", "https://mivb.openplanner.team/stops/3761"], ["https://mivb.openplanner.team/stops/3334F", "https://mivb.openplanner.team/stops/3335F"], ["https://mivb.openplanner.team/stops/1544", "https://mivb.openplanner.team/stops/5502"], ["https://mivb.openplanner.team/stops/1734", "https://mivb.openplanner.team/stops/3532"], ["https://mivb.openplanner.team/stops/1953", "https://mivb.openplanner.team/stops/2161"], ["https://mivb.openplanner.team/stops/7820453", "https://mivb.openplanner.team/stops/9051F"], ["https://mivb.openplanner.team/stops/1659", "https://mivb.openplanner.team/stops/1660B"], ["https://mivb.openplanner.team/stops/2181", "https://mivb.openplanner.team/stops/2245"], ["https://mivb.openplanner.team/stops/3225F", "https://mivb.openplanner.team/stops/3257"], ["https://mivb.openplanner.team/stops/5056", "https://mivb.openplanner.team/stops/5057"], ["https://mivb.openplanner.team/stops/2002", "https://mivb.openplanner.team/stops/2010"], ["https://mivb.openplanner.team/stops/5165", "https://mivb.openplanner.team/stops/6805F"], ["https://mivb.openplanner.team/stops/0473F", "https://mivb.openplanner.team/stops/1183"], ["https://mivb.openplanner.team/stops/3288", "https://mivb.openplanner.team/stops/3328"], ["https://mivb.openplanner.team/stops/1685F", "https://mivb.openplanner.team/stops/1727"], ["https://mivb.openplanner.team/stops/6451", "https://mivb.openplanner.team/stops/6454"], ["https://mivb.openplanner.team/stops/2296", "https://mivb.openplanner.team/stops/8021"], ["https://mivb.openplanner.team/stops/6018", "https://mivb.openplanner.team/stops/6019"], ["https://mivb.openplanner.team/stops/1733", "https://mivb.openplanner.team/stops/1777B"], ["https://mivb.openplanner.team/stops/2402", "https://mivb.openplanner.team/stops/0340341"], ["https://mivb.openplanner.team/stops/3273", "https://mivb.openplanner.team/stops/3765"], ["https://mivb.openplanner.team/stops/8031", "https://mivb.openplanner.team/stops/0030117"], ["https://mivb.openplanner.team/stops/1115", "https://mivb.openplanner.team/stops/1793"], ["https://mivb.openplanner.team/stops/1126", "https://mivb.openplanner.team/stops/1168"], ["https://mivb.openplanner.team/stops/0471", "https://mivb.openplanner.team/stops/0470751"], ["https://mivb.openplanner.team/stops/5288", "https://mivb.openplanner.team/stops/6168F"], ["https://mivb.openplanner.team/stops/1240", "https://mivb.openplanner.team/stops/5119"], ["https://mivb.openplanner.team/stops/3111", "https://mivb.openplanner.team/stops/3165"], ["https://mivb.openplanner.team/stops/4295", "https://mivb.openplanner.team/stops/0240535"], ["https://mivb.openplanner.team/stops/3399", "https://mivb.openplanner.team/stops/0060520"], ["https://mivb.openplanner.team/stops/6068", "https://mivb.openplanner.team/stops/6806F"], ["https://mivb.openplanner.team/stops/9802", "https://mivb.openplanner.team/stops/9825F"], ["https://mivb.openplanner.team/stops/4309", "https://mivb.openplanner.team/stops/5459"], ["https://mivb.openplanner.team/stops/3407", "https://mivb.openplanner.team/stops/5867F"], ["https://mivb.openplanner.team/stops/1736", "https://mivb.openplanner.team/stops/2151"], ["https://mivb.openplanner.team/stops/2234", "https://mivb.openplanner.team/stops/2268"], ["https://mivb.openplanner.team/stops/2753", "https://mivb.openplanner.team/stops/5270F"], ["https://mivb.openplanner.team/stops/4407", "https://mivb.openplanner.team/stops/0250236"], ["https://mivb.openplanner.team/stops/2262", "https://mivb.openplanner.team/stops/6659F"], ["https://mivb.openplanner.team/stops/2418", "https://mivb.openplanner.team/stops/0350740"], ["https://mivb.openplanner.team/stops/9707", "https://mivb.openplanner.team/stops/9787"], ["https://mivb.openplanner.team/stops/4152", "https://mivb.openplanner.team/stops/5109"], ["https://mivb.openplanner.team/stops/1723B", "https://mivb.openplanner.team/stops/3524"], ["https://mivb.openplanner.team/stops/2856B", "https://mivb.openplanner.team/stops/9609"], ["https://mivb.openplanner.team/stops/1526", "https://mivb.openplanner.team/stops/1527"], ["https://mivb.openplanner.team/stops/1449", "https://mivb.openplanner.team/stops/1529"], ["https://mivb.openplanner.team/stops/2017", "https://mivb.openplanner.team/stops/2071"], ["https://mivb.openplanner.team/stops/3323", "https://mivb.openplanner.team/stops/6445"], ["https://mivb.openplanner.team/stops/5913", "https://mivb.openplanner.team/stops/5965"], ["https://mivb.openplanner.team/stops/1051", "https://mivb.openplanner.team/stops/2305"], ["https://mivb.openplanner.team/stops/2515B", "https://mivb.openplanner.team/stops/5079"], ["https://mivb.openplanner.team/stops/1726", "https://mivb.openplanner.team/stops/6312"], ["https://mivb.openplanner.team/stops/1684F", "https://mivb.openplanner.team/stops/1727"], ["https://mivb.openplanner.team/stops/2330", "https://mivb.openplanner.team/stops/2352"], ["https://mivb.openplanner.team/stops/2338F", "https://mivb.openplanner.team/stops/5740"], ["https://mivb.openplanner.team/stops/1875", "https://mivb.openplanner.team/stops/0100324"], ["https://mivb.openplanner.team/stops/1089", "https://mivb.openplanner.team/stops/3005"], ["https://mivb.openplanner.team/stops/5116", "https://mivb.openplanner.team/stops/5151"], ["https://mivb.openplanner.team/stops/2514", "https://mivb.openplanner.team/stops/3234"], ["https://mivb.openplanner.team/stops/5706", "https://mivb.openplanner.team/stops/5771"], ["https://mivb.openplanner.team/stops/5817F", "https://mivb.openplanner.team/stops/5917F"], ["https://mivb.openplanner.team/stops/3199", "https://mivb.openplanner.team/stops/3280"], ["https://mivb.openplanner.team/stops/9725", "https://mivb.openplanner.team/stops/9726"], ["https://mivb.openplanner.team/stops/5729", "https://mivb.openplanner.team/stops/5731F"], ["https://mivb.openplanner.team/stops/1454", "https://mivb.openplanner.team/stops/0120526"], ["https://mivb.openplanner.team/stops/1384", "https://mivb.openplanner.team/stops/1550"], ["https://mivb.openplanner.team/stops/9600B", "https://mivb.openplanner.team/stops/9727"], ["https://mivb.openplanner.team/stops/1754", "https://mivb.openplanner.team/stops/0260137"], ["https://mivb.openplanner.team/stops/4408", "https://mivb.openplanner.team/stops/0250136"], ["https://mivb.openplanner.team/stops/5759F", "https://mivb.openplanner.team/stops/5761"], ["https://mivb.openplanner.team/stops/6103F", "https://mivb.openplanner.team/stops/6168F"], ["https://mivb.openplanner.team/stops/1874", "https://mivb.openplanner.team/stops/6476"], ["https://mivb.openplanner.team/stops/1113", "https://mivb.openplanner.team/stops/1139"], ["https://mivb.openplanner.team/stops/5805", "https://mivb.openplanner.team/stops/7998"], ["https://mivb.openplanner.team/stops/5601", "https://mivb.openplanner.team/stops/5658"], ["https://mivb.openplanner.team/stops/8442", "https://mivb.openplanner.team/stops/0440649"], ["https://mivb.openplanner.team/stops/1250", "https://mivb.openplanner.team/stops/4856B"], ["https://mivb.openplanner.team/stops/1962", "https://mivb.openplanner.team/stops/1962F"], ["https://mivb.openplanner.team/stops/1874", "https://mivb.openplanner.team/stops/5560"], ["https://mivb.openplanner.team/stops/1010", "https://mivb.openplanner.team/stops/1678F"], ["https://mivb.openplanner.team/stops/4307", "https://mivb.openplanner.team/stops/4362"], ["https://mivb.openplanner.team/stops/1244", "https://mivb.openplanner.team/stops/0290212"], ["https://mivb.openplanner.team/stops/2104", "https://mivb.openplanner.team/stops/2151"], ["https://mivb.openplanner.team/stops/1821", "https://mivb.openplanner.team/stops/1834"], ["https://mivb.openplanner.team/stops/1674F", "https://mivb.openplanner.team/stops/2572"], ["https://mivb.openplanner.team/stops/1144", "https://mivb.openplanner.team/stops/3502"], ["https://mivb.openplanner.team/stops/1402B", "https://mivb.openplanner.team/stops/1464"], ["https://mivb.openplanner.team/stops/1065", "https://mivb.openplanner.team/stops/6867F"], ["https://mivb.openplanner.team/stops/0430248", "https://mivb.openplanner.team/stops/0431048"], ["https://mivb.openplanner.team/stops/2145", "https://mivb.openplanner.team/stops/2757C"], ["https://mivb.openplanner.team/stops/1110", "https://mivb.openplanner.team/stops/9657"], ["https://mivb.openplanner.team/stops/1129", "https://mivb.openplanner.team/stops/1165"], ["https://mivb.openplanner.team/stops/6070", "https://mivb.openplanner.team/stops/8743"], ["https://mivb.openplanner.team/stops/8061", "https://mivb.openplanner.team/stops/8062"], ["https://mivb.openplanner.team/stops/1403", "https://mivb.openplanner.team/stops/3707"], ["https://mivb.openplanner.team/stops/2363", "https://mivb.openplanner.team/stops/2852"], ["https://mivb.openplanner.team/stops/0472", "https://mivb.openplanner.team/stops/0470351"], ["https://mivb.openplanner.team/stops/4502F", "https://mivb.openplanner.team/stops/5754"], ["https://mivb.openplanner.team/stops/1136", "https://mivb.openplanner.team/stops/0070221"], ["https://mivb.openplanner.team/stops/1586", "https://mivb.openplanner.team/stops/29"], ["https://mivb.openplanner.team/stops/2109B", "https://mivb.openplanner.team/stops/5032B"], ["https://mivb.openplanner.team/stops/1558", "https://mivb.openplanner.team/stops/3958"], ["https://mivb.openplanner.team/stops/4213", "https://mivb.openplanner.team/stops/0460250"], ["https://mivb.openplanner.team/stops/3954", "https://mivb.openplanner.team/stops/3958"], ["https://mivb.openplanner.team/stops/5312", "https://mivb.openplanner.team/stops/32"], ["https://mivb.openplanner.team/stops/3257F", "https://mivb.openplanner.team/stops/4594"], ["https://mivb.openplanner.team/stops/1949", "https://mivb.openplanner.team/stops/1959"], ["https://mivb.openplanner.team/stops/3515", "https://mivb.openplanner.team/stops/3557"], ["https://mivb.openplanner.team/stops/1273", "https://mivb.openplanner.team/stops/8061"], ["https://mivb.openplanner.team/stops/1760", "https://mivb.openplanner.team/stops/0230234"], ["https://mivb.openplanner.team/stops/1320", "https://mivb.openplanner.team/stops/1540"], ["https://mivb.openplanner.team/stops/1852", "https://mivb.openplanner.team/stops/5658"], ["https://mivb.openplanner.team/stops/0320243", "https://mivb.openplanner.team/stops/0370543"], ["https://mivb.openplanner.team/stops/8041", "https://mivb.openplanner.team/stops/0040418"], ["https://mivb.openplanner.team/stops/2002", "https://mivb.openplanner.team/stops/5032B"], ["https://mivb.openplanner.team/stops/8141", "https://mivb.openplanner.team/stops/0140128"], ["https://mivb.openplanner.team/stops/1585", "https://mivb.openplanner.team/stops/0130227"], ["https://mivb.openplanner.team/stops/2140", "https://mivb.openplanner.team/stops/5032B"], ["https://mivb.openplanner.team/stops/4253", "https://mivb.openplanner.team/stops/5013B"], ["https://mivb.openplanner.team/stops/5074F", "https://mivb.openplanner.team/stops/58"], ["https://mivb.openplanner.team/stops/3567", "https://mivb.openplanner.team/stops/6310F"], ["https://mivb.openplanner.team/stops/0470F", "https://mivb.openplanner.team/stops/0472"], ["https://mivb.openplanner.team/stops/0506", "https://mivb.openplanner.team/stops/2301"], ["https://mivb.openplanner.team/stops/3460", "https://mivb.openplanner.team/stops/3961"], ["https://mivb.openplanner.team/stops/0610463", "https://mivb.openplanner.team/stops/1227"], ["https://mivb.openplanner.team/stops/8221", "https://mivb.openplanner.team/stops/0220133"], ["https://mivb.openplanner.team/stops/3961", "https://mivb.openplanner.team/stops/4558"], ["https://mivb.openplanner.team/stops/1792", "https://mivb.openplanner.team/stops/4074B"], ["https://mivb.openplanner.team/stops/3705", "https://mivb.openplanner.team/stops/5274F"], ["https://mivb.openplanner.team/stops/2550", "https://mivb.openplanner.team/stops/3856"], ["https://mivb.openplanner.team/stops/5721G", "https://mivb.openplanner.team/stops/5923"], ["https://mivb.openplanner.team/stops/1668", "https://mivb.openplanner.team/stops/5655"], ["https://mivb.openplanner.team/stops/3173", "https://mivb.openplanner.team/stops/5802"], ["https://mivb.openplanner.team/stops/2817", "https://mivb.openplanner.team/stops/5771"], ["https://mivb.openplanner.team/stops/2259F", "https://mivb.openplanner.team/stops/7720103"], ["https://mivb.openplanner.team/stops/3755", "https://mivb.openplanner.team/stops/6799F"], ["https://mivb.openplanner.team/stops/3230F", "https://mivb.openplanner.team/stops/8731"], ["https://mivb.openplanner.team/stops/3061", "https://mivb.openplanner.team/stops/5910"], ["https://mivb.openplanner.team/stops/1410", "https://mivb.openplanner.team/stops/1859"], ["https://mivb.openplanner.team/stops/1257", "https://mivb.openplanner.team/stops/2579"], ["https://mivb.openplanner.team/stops/3463", "https://mivb.openplanner.team/stops/3900"], ["https://mivb.openplanner.team/stops/0536", "https://mivb.openplanner.team/stops/5714"], ["https://mivb.openplanner.team/stops/6158", "https://mivb.openplanner.team/stops/9952G"], ["https://mivb.openplanner.team/stops/6190", "https://mivb.openplanner.team/stops/6191"], ["https://mivb.openplanner.team/stops/2315", "https://mivb.openplanner.team/stops/2360"], ["https://mivb.openplanner.team/stops/2071", "https://mivb.openplanner.team/stops/2085"], ["https://mivb.openplanner.team/stops/5024", "https://mivb.openplanner.team/stops/5857"], ["https://mivb.openplanner.team/stops/2553", "https://mivb.openplanner.team/stops/3852"], ["https://mivb.openplanner.team/stops/3104", "https://mivb.openplanner.team/stops/5911"], ["https://mivb.openplanner.team/stops/3513", "https://mivb.openplanner.team/stops/3559"], ["https://mivb.openplanner.team/stops/1144", "https://mivb.openplanner.team/stops/6445"], ["https://mivb.openplanner.team/stops/3903", "https://mivb.openplanner.team/stops/3954"], ["https://mivb.openplanner.team/stops/0310544", "https://mivb.openplanner.team/stops/0310644"], ["https://mivb.openplanner.team/stops/2725", "https://mivb.openplanner.team/stops/2752"], ["https://mivb.openplanner.team/stops/1387", "https://mivb.openplanner.team/stops/5518"], ["https://mivb.openplanner.team/stops/4116", "https://mivb.openplanner.team/stops/8763"], ["https://mivb.openplanner.team/stops/1278", "https://mivb.openplanner.team/stops/1805"], ["https://mivb.openplanner.team/stops/2283", "https://mivb.openplanner.team/stops/5531"], ["https://mivb.openplanner.team/stops/6702", "https://mivb.openplanner.team/stops/0290112"], ["https://mivb.openplanner.team/stops/2351F", "https://mivb.openplanner.team/stops/3510"], ["https://mivb.openplanner.team/stops/3417", "https://mivb.openplanner.team/stops/3450"], ["https://mivb.openplanner.team/stops/0310244", "https://mivb.openplanner.team/stops/0310344"], ["https://mivb.openplanner.team/stops/3851", "https://mivb.openplanner.team/stops/5719"], ["https://mivb.openplanner.team/stops/3111", "https://mivb.openplanner.team/stops/3414"], ["https://mivb.openplanner.team/stops/2902", "https://mivb.openplanner.team/stops/3304"], ["https://mivb.openplanner.team/stops/1818", "https://mivb.openplanner.team/stops/5556"], ["https://mivb.openplanner.team/stops/1874", "https://mivb.openplanner.team/stops/0100324"], ["https://mivb.openplanner.team/stops/5265F", "https://mivb.openplanner.team/stops/5266F"], ["https://mivb.openplanner.team/stops/6201F", "https://mivb.openplanner.team/stops/6260F"], ["https://mivb.openplanner.team/stops/9608", "https://mivb.openplanner.team/stops/9634"], ["https://mivb.openplanner.team/stops/4228", "https://mivb.openplanner.team/stops/7830352"], ["https://mivb.openplanner.team/stops/4344", "https://mivb.openplanner.team/stops/4347"], ["https://mivb.openplanner.team/stops/1110", "https://mivb.openplanner.team/stops/9677"], ["https://mivb.openplanner.team/stops/1614B", "https://mivb.openplanner.team/stops/1616"], ["https://mivb.openplanner.team/stops/0280213", "https://mivb.openplanner.team/stops/13"], ["https://mivb.openplanner.team/stops/6077F", "https://mivb.openplanner.team/stops/6078"], ["https://mivb.openplanner.team/stops/4502F", "https://mivb.openplanner.team/stops/5920H"], ["https://mivb.openplanner.team/stops/2207", "https://mivb.openplanner.team/stops/2271"], ["https://mivb.openplanner.team/stops/3156", "https://mivb.openplanner.team/stops/6113F"], ["https://mivb.openplanner.team/stops/1313", "https://mivb.openplanner.team/stops/5108"], ["https://mivb.openplanner.team/stops/2855", "https://mivb.openplanner.team/stops/5704F"], ["https://mivb.openplanner.team/stops/2142", "https://mivb.openplanner.team/stops/2148"], ["https://mivb.openplanner.team/stops/3525", "https://mivb.openplanner.team/stops/5407"], ["https://mivb.openplanner.team/stops/2243F", "https://mivb.openplanner.team/stops/3762"], ["https://mivb.openplanner.team/stops/2608", "https://mivb.openplanner.team/stops/2669F"], ["https://mivb.openplanner.team/stops/2950", "https://mivb.openplanner.team/stops/6078"], ["https://mivb.openplanner.team/stops/2309C", "https://mivb.openplanner.team/stops/5706"], ["https://mivb.openplanner.team/stops/6024", "https://mivb.openplanner.team/stops/6053"], ["https://mivb.openplanner.team/stops/2200F", "https://mivb.openplanner.team/stops/2318G"], ["https://mivb.openplanner.team/stops/3332", "https://mivb.openplanner.team/stops/0410446"], ["https://mivb.openplanner.team/stops/2242F", "https://mivb.openplanner.team/stops/2249"], ["https://mivb.openplanner.team/stops/1209", "https://mivb.openplanner.team/stops/4656"], ["https://mivb.openplanner.team/stops/1968", "https://mivb.openplanner.team/stops/4804B"], ["https://mivb.openplanner.team/stops/2204", "https://mivb.openplanner.team/stops/6123"], ["https://mivb.openplanner.team/stops/1803B", "https://mivb.openplanner.team/stops/1872B"], ["https://mivb.openplanner.team/stops/0050419", "https://mivb.openplanner.team/stops/0050519"], ["https://mivb.openplanner.team/stops/5288", "https://mivb.openplanner.team/stops/5291F"], ["https://mivb.openplanner.team/stops/1326", "https://mivb.openplanner.team/stops/1327"], ["https://mivb.openplanner.team/stops/5295", "https://mivb.openplanner.team/stops/6505"], ["https://mivb.openplanner.team/stops/3854B", "https://mivb.openplanner.team/stops/5963"], ["https://mivb.openplanner.team/stops/6302", "https://mivb.openplanner.team/stops/7762"], ["https://mivb.openplanner.team/stops/2203", "https://mivb.openplanner.team/stops/2305"], ["https://mivb.openplanner.team/stops/3163", "https://mivb.openplanner.team/stops/6369"], ["https://mivb.openplanner.team/stops/0100224", "https://mivb.openplanner.team/stops/9983"], ["https://mivb.openplanner.team/stops/3118", "https://mivb.openplanner.team/stops/6017"], ["https://mivb.openplanner.team/stops/3102", "https://mivb.openplanner.team/stops/5965"], ["https://mivb.openplanner.team/stops/4360", "https://mivb.openplanner.team/stops/4362"], ["https://mivb.openplanner.team/stops/2318G", "https://mivb.openplanner.team/stops/2810"], ["https://mivb.openplanner.team/stops/4002G", "https://mivb.openplanner.team/stops/4059"], ["https://mivb.openplanner.team/stops/7640311", "https://mivb.openplanner.team/stops/9677"], ["https://mivb.openplanner.team/stops/3107", "https://mivb.openplanner.team/stops/5760"], ["https://mivb.openplanner.team/stops/6022B", "https://mivb.openplanner.team/stops/6024"], ["https://mivb.openplanner.team/stops/5281G", "https://mivb.openplanner.team/stops/5556"], ["https://mivb.openplanner.team/stops/1629", "https://mivb.openplanner.team/stops/9577"], ["https://mivb.openplanner.team/stops/4221", "https://mivb.openplanner.team/stops/4259"], ["https://mivb.openplanner.team/stops/2415", "https://mivb.openplanner.team/stops/5854"], ["https://mivb.openplanner.team/stops/1674F", "https://mivb.openplanner.team/stops/1675F"], ["https://mivb.openplanner.team/stops/8722", "https://mivb.openplanner.team/stops/3"], ["https://mivb.openplanner.team/stops/0723", "https://mivb.openplanner.team/stops/6077F"], ["https://mivb.openplanner.team/stops/5039", "https://mivb.openplanner.team/stops/5045"], ["https://mivb.openplanner.team/stops/2721", "https://mivb.openplanner.team/stops/2760B"], ["https://mivb.openplanner.team/stops/2331F", "https://mivb.openplanner.team/stops/2465"], ["https://mivb.openplanner.team/stops/3211", "https://mivb.openplanner.team/stops/0350140"], ["https://mivb.openplanner.team/stops/1707", "https://mivb.openplanner.team/stops/2181"], ["https://mivb.openplanner.team/stops/2992", "https://mivb.openplanner.team/stops/9292"], ["https://mivb.openplanner.team/stops/4129", "https://mivb.openplanner.team/stops/9027"], ["https://mivb.openplanner.team/stops/1881", "https://mivb.openplanner.team/stops/3155"], ["https://mivb.openplanner.team/stops/1904", "https://mivb.openplanner.team/stops/0431048"], ["https://mivb.openplanner.team/stops/2535B", "https://mivb.openplanner.team/stops/5"], ["https://mivb.openplanner.team/stops/2322", "https://mivb.openplanner.team/stops/2938"], ["https://mivb.openplanner.team/stops/9605", "https://mivb.openplanner.team/stops/9631"], ["https://mivb.openplanner.team/stops/1258G", "https://mivb.openplanner.team/stops/5756F"], ["https://mivb.openplanner.team/stops/1158", "https://mivb.openplanner.team/stops/1402B"], ["https://mivb.openplanner.team/stops/2977", "https://mivb.openplanner.team/stops/2990"], ["https://mivb.openplanner.team/stops/3304", "https://mivb.openplanner.team/stops/7271"], ["https://mivb.openplanner.team/stops/3556", "https://mivb.openplanner.team/stops/0230434"], ["https://mivb.openplanner.team/stops/2018", "https://mivb.openplanner.team/stops/2074"], ["https://mivb.openplanner.team/stops/2071", "https://mivb.openplanner.team/stops/9876"], ["https://mivb.openplanner.team/stops/6120", "https://mivb.openplanner.team/stops/7604"], ["https://mivb.openplanner.team/stops/1723B", "https://mivb.openplanner.team/stops/1752"], ["https://mivb.openplanner.team/stops/2611", "https://mivb.openplanner.team/stops/2660"], ["https://mivb.openplanner.team/stops/1103", "https://mivb.openplanner.team/stops/1682F"], ["https://mivb.openplanner.team/stops/1131B", "https://mivb.openplanner.team/stops/1133"], ["https://mivb.openplanner.team/stops/1255", "https://mivb.openplanner.team/stops/6005"], ["https://mivb.openplanner.team/stops/5229F", "https://mivb.openplanner.team/stops/5230F"], ["https://mivb.openplanner.team/stops/1635", "https://mivb.openplanner.team/stops/2078"], ["https://mivb.openplanner.team/stops/5297B", "https://mivb.openplanner.team/stops/7690206"], ["https://mivb.openplanner.team/stops/2108", "https://mivb.openplanner.team/stops/5054F"], ["https://mivb.openplanner.team/stops/4206", "https://mivb.openplanner.team/stops/4260"], ["https://mivb.openplanner.team/stops/5721", "https://mivb.openplanner.team/stops/5722F"], ["https://mivb.openplanner.team/stops/1525", "https://mivb.openplanner.team/stops/2028"], ["https://mivb.openplanner.team/stops/1422", "https://mivb.openplanner.team/stops/1450"], ["https://mivb.openplanner.team/stops/1557", "https://mivb.openplanner.team/stops/3919"], ["https://mivb.openplanner.team/stops/1868", "https://mivb.openplanner.team/stops/1869"], ["https://mivb.openplanner.team/stops/2502", "https://mivb.openplanner.team/stops/2577"], ["https://mivb.openplanner.team/stops/2023", "https://mivb.openplanner.team/stops/2407"], ["https://mivb.openplanner.team/stops/8773", "https://mivb.openplanner.team/stops/7770158"], ["https://mivb.openplanner.team/stops/6117", "https://mivb.openplanner.team/stops/0070421"], ["https://mivb.openplanner.team/stops/1834", "https://mivb.openplanner.team/stops/5508"], ["https://mivb.openplanner.team/stops/3351", "https://mivb.openplanner.team/stops/6309F"], ["https://mivb.openplanner.team/stops/2912", "https://mivb.openplanner.team/stops/2980"], ["https://mivb.openplanner.team/stops/2345", "https://mivb.openplanner.team/stops/5317G"], ["https://mivb.openplanner.team/stops/1199F", "https://mivb.openplanner.team/stops/4006G"], ["https://mivb.openplanner.team/stops/3155", "https://mivb.openplanner.team/stops/4303"], ["https://mivb.openplanner.team/stops/1097", "https://mivb.openplanner.team/stops/2510"], ["https://mivb.openplanner.team/stops/1143", "https://mivb.openplanner.team/stops/9753"], ["https://mivb.openplanner.team/stops/1482", "https://mivb.openplanner.team/stops/1489"], ["https://mivb.openplanner.team/stops/5089", "https://mivb.openplanner.team/stops/0460150"], ["https://mivb.openplanner.team/stops/3467B", "https://mivb.openplanner.team/stops/5274F"], ["https://mivb.openplanner.team/stops/9779", "https://mivb.openplanner.team/stops/9787"], ["https://mivb.openplanner.team/stops/2142", "https://mivb.openplanner.team/stops/2759"], ["https://mivb.openplanner.team/stops/4132B", "https://mivb.openplanner.team/stops/7790356"], ["https://mivb.openplanner.team/stops/1354", "https://mivb.openplanner.team/stops/6119F"], ["https://mivb.openplanner.team/stops/1533", "https://mivb.openplanner.team/stops/3463"], ["https://mivb.openplanner.team/stops/1190", "https://mivb.openplanner.team/stops/1306F"], ["https://mivb.openplanner.team/stops/3204", "https://mivb.openplanner.team/stops/3279"], ["https://mivb.openplanner.team/stops/3222", "https://mivb.openplanner.team/stops/13"], ["https://mivb.openplanner.team/stops/4449", "https://mivb.openplanner.team/stops/4452"], ["https://mivb.openplanner.team/stops/4402", "https://mivb.openplanner.team/stops/4455"], ["https://mivb.openplanner.team/stops/1928", "https://mivb.openplanner.team/stops/1995"], ["https://mivb.openplanner.team/stops/2330", "https://mivb.openplanner.team/stops/2827"], ["https://mivb.openplanner.team/stops/1156T", "https://mivb.openplanner.team/stops/6053"], ["https://mivb.openplanner.team/stops/1850", "https://mivb.openplanner.team/stops/1851"], ["https://mivb.openplanner.team/stops/3323", "https://mivb.openplanner.team/stops/8021"], ["https://mivb.openplanner.team/stops/1738", "https://mivb.openplanner.team/stops/2156"], ["https://mivb.openplanner.team/stops/2014", "https://mivb.openplanner.team/stops/2077"], ["https://mivb.openplanner.team/stops/2023", "https://mivb.openplanner.team/stops/5158"], ["https://mivb.openplanner.team/stops/1914", "https://mivb.openplanner.team/stops/6406"], ["https://mivb.openplanner.team/stops/0501", "https://mivb.openplanner.team/stops/0010315"], ["https://mivb.openplanner.team/stops/1815", "https://mivb.openplanner.team/stops/1860"], ["https://mivb.openplanner.team/stops/1024", "https://mivb.openplanner.team/stops/2269"], ["https://mivb.openplanner.team/stops/1903", "https://mivb.openplanner.team/stops/1986"], ["https://mivb.openplanner.team/stops/1083", "https://mivb.openplanner.team/stops/0430948"], ["https://mivb.openplanner.team/stops/2859", "https://mivb.openplanner.team/stops/2867"], ["https://mivb.openplanner.team/stops/3551", "https://mivb.openplanner.team/stops/8241"], ["https://mivb.openplanner.team/stops/1728", "https://mivb.openplanner.team/stops/1880"], ["https://mivb.openplanner.team/stops/1406", "https://mivb.openplanner.team/stops/6053"], ["https://mivb.openplanner.team/stops/4258", "https://mivb.openplanner.team/stops/7780157"], ["https://mivb.openplanner.team/stops/2910", "https://mivb.openplanner.team/stops/3420"], ["https://mivb.openplanner.team/stops/2924", "https://mivb.openplanner.team/stops/2995"], ["https://mivb.openplanner.team/stops/2672", "https://mivb.openplanner.team/stops/5111B"], ["https://mivb.openplanner.team/stops/0670167", "https://mivb.openplanner.team/stops/1221"], ["https://mivb.openplanner.team/stops/3705", "https://mivb.openplanner.team/stops/3762"], ["https://mivb.openplanner.team/stops/4318", "https://mivb.openplanner.team/stops/4351"], ["https://mivb.openplanner.team/stops/3334F", "https://mivb.openplanner.team/stops/3334G"], ["https://mivb.openplanner.team/stops/1113", "https://mivb.openplanner.team/stops/1154"], ["https://mivb.openplanner.team/stops/1048F", "https://mivb.openplanner.team/stops/2715"], ["https://mivb.openplanner.team/stops/2225", "https://mivb.openplanner.team/stops/6857"], ["https://mivb.openplanner.team/stops/0705", "https://mivb.openplanner.team/stops/2336G"], ["https://mivb.openplanner.team/stops/1748", "https://mivb.openplanner.team/stops/4112"], ["https://mivb.openplanner.team/stops/1410", "https://mivb.openplanner.team/stops/5504"], ["https://mivb.openplanner.team/stops/3225F", "https://mivb.openplanner.team/stops/3253F"], ["https://mivb.openplanner.team/stops/2916", "https://mivb.openplanner.team/stops/6214"], ["https://mivb.openplanner.team/stops/2992", "https://mivb.openplanner.team/stops/7271"], ["https://mivb.openplanner.team/stops/9632", "https://mivb.openplanner.team/stops/9634"], ["https://mivb.openplanner.team/stops/4162", "https://mivb.openplanner.team/stops/4169"], ["https://mivb.openplanner.team/stops/3165", "https://mivb.openplanner.team/stops/3166"], ["https://mivb.openplanner.team/stops/1751", "https://mivb.openplanner.team/stops/0250436"], ["https://mivb.openplanner.team/stops/2308", "https://mivb.openplanner.team/stops/5759F"], ["https://mivb.openplanner.team/stops/1127", "https://mivb.openplanner.team/stops/1167"], ["https://mivb.openplanner.team/stops/2815B", "https://mivb.openplanner.team/stops/2854"], ["https://mivb.openplanner.team/stops/5719", "https://mivb.openplanner.team/stops/5719H"], ["https://mivb.openplanner.team/stops/1157", "https://mivb.openplanner.team/stops/6024"], ["https://mivb.openplanner.team/stops/1812", "https://mivb.openplanner.team/stops/1864"], ["https://mivb.openplanner.team/stops/1220", "https://mivb.openplanner.team/stops/1221"], ["https://mivb.openplanner.team/stops/2402", "https://mivb.openplanner.team/stops/0340441"], ["https://mivb.openplanner.team/stops/4002B", "https://mivb.openplanner.team/stops/4062"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/2146"], ["https://mivb.openplanner.team/stops/1957B", "https://mivb.openplanner.team/stops/1958B"], ["https://mivb.openplanner.team/stops/2571", "https://mivb.openplanner.team/stops/2572"], ["https://mivb.openplanner.team/stops/4369", "https://mivb.openplanner.team/stops/5267"], ["https://mivb.openplanner.team/stops/4304", "https://mivb.openplanner.team/stops/6156F"], ["https://mivb.openplanner.team/stops/1182", "https://mivb.openplanner.team/stops/4022"], ["https://mivb.openplanner.team/stops/1126", "https://mivb.openplanner.team/stops/1167"], ["https://mivb.openplanner.team/stops/0472", "https://mivb.openplanner.team/stops/0470751"], ["https://mivb.openplanner.team/stops/6113F", "https://mivb.openplanner.team/stops/6157F"], ["https://mivb.openplanner.team/stops/2346", "https://mivb.openplanner.team/stops/5317G"], ["https://mivb.openplanner.team/stops/0900268", "https://mivb.openplanner.team/stops/0200231"], ["https://mivb.openplanner.team/stops/4295", "https://mivb.openplanner.team/stops/0240435"], ["https://mivb.openplanner.team/stops/1872B", "https://mivb.openplanner.team/stops/3912"], ["https://mivb.openplanner.team/stops/5018F", "https://mivb.openplanner.team/stops/0330342"], ["https://mivb.openplanner.team/stops/0070321", "https://mivb.openplanner.team/stops/0070421"], ["https://mivb.openplanner.team/stops/2325", "https://mivb.openplanner.team/stops/6124"], ["https://mivb.openplanner.team/stops/3702", "https://mivb.openplanner.team/stops/3765"], ["https://mivb.openplanner.team/stops/2852", "https://mivb.openplanner.team/stops/5771"], ["https://mivb.openplanner.team/stops/1043", "https://mivb.openplanner.team/stops/8131"], ["https://mivb.openplanner.team/stops/3200", "https://mivb.openplanner.team/stops/3661"], ["https://mivb.openplanner.team/stops/1741", "https://mivb.openplanner.team/stops/2010"], ["https://mivb.openplanner.team/stops/1928", "https://mivb.openplanner.team/stops/2702"], ["https://mivb.openplanner.team/stops/6016", "https://mivb.openplanner.team/stops/6017"], ["https://mivb.openplanner.team/stops/3517", "https://mivb.openplanner.team/stops/9952G"], ["https://mivb.openplanner.team/stops/2753", "https://mivb.openplanner.team/stops/5269F"], ["https://mivb.openplanner.team/stops/1685F", "https://mivb.openplanner.team/stops/4273F"], ["https://mivb.openplanner.team/stops/1920", "https://mivb.openplanner.team/stops/1972"], ["https://mivb.openplanner.team/stops/2215", "https://mivb.openplanner.team/stops/39"], ["https://mivb.openplanner.team/stops/3704", "https://mivb.openplanner.team/stops/4558"], ["https://mivb.openplanner.team/stops/2377", "https://mivb.openplanner.team/stops/5707"], ["https://mivb.openplanner.team/stops/1800", "https://mivb.openplanner.team/stops/3630"], ["https://mivb.openplanner.team/stops/5307G", "https://mivb.openplanner.team/stops/6214"], ["https://mivb.openplanner.team/stops/2515B", "https://mivb.openplanner.team/stops/5078F"], ["https://mivb.openplanner.team/stops/2410", "https://mivb.openplanner.team/stops/2955"], ["https://mivb.openplanner.team/stops/5001F", "https://mivb.openplanner.team/stops/5087"], ["https://mivb.openplanner.team/stops/6501", "https://mivb.openplanner.team/stops/6552"], ["https://mivb.openplanner.team/stops/1497B", "https://mivb.openplanner.team/stops/8051"], ["https://mivb.openplanner.team/stops/3002", "https://mivb.openplanner.team/stops/9608"], ["https://mivb.openplanner.team/stops/5161F", "https://mivb.openplanner.team/stops/5915"], ["https://mivb.openplanner.team/stops/1644F", "https://mivb.openplanner.team/stops/1646F"], ["https://mivb.openplanner.team/stops/0600462", "https://mivb.openplanner.team/stops/62"], ["https://mivb.openplanner.team/stops/8351", "https://mivb.openplanner.team/stops/0350140"], ["https://mivb.openplanner.team/stops/2899", "https://mivb.openplanner.team/stops/2991"], ["https://mivb.openplanner.team/stops/1884", "https://mivb.openplanner.team/stops/3121"], ["https://mivb.openplanner.team/stops/5281", "https://mivb.openplanner.team/stops/5287"], ["https://mivb.openplanner.team/stops/2296", "https://mivb.openplanner.team/stops/3323"], ["https://mivb.openplanner.team/stops/9551", "https://mivb.openplanner.team/stops/9553"], ["https://mivb.openplanner.team/stops/3359", "https://mivb.openplanner.team/stops/6309F"], ["https://mivb.openplanner.team/stops/0706", "https://mivb.openplanner.team/stops/1221"], ["https://mivb.openplanner.team/stops/5026", "https://mivb.openplanner.team/stops/5058"], ["https://mivb.openplanner.team/stops/1513", "https://mivb.openplanner.team/stops/2918"], ["https://mivb.openplanner.team/stops/6021", "https://mivb.openplanner.team/stops/6082"], ["https://mivb.openplanner.team/stops/6103F", "https://mivb.openplanner.team/stops/6168"], ["https://mivb.openplanner.team/stops/2533", "https://mivb.openplanner.team/stops/8702"], ["https://mivb.openplanner.team/stops/1567", "https://mivb.openplanner.team/stops/6020"], ["https://mivb.openplanner.team/stops/1639", "https://mivb.openplanner.team/stops/0140128"], ["https://mivb.openplanner.team/stops/5601", "https://mivb.openplanner.team/stops/5659"], ["https://mivb.openplanner.team/stops/1250", "https://mivb.openplanner.team/stops/4854C"], ["https://mivb.openplanner.team/stops/3812", "https://mivb.openplanner.team/stops/3859"], ["https://mivb.openplanner.team/stops/2665", "https://mivb.openplanner.team/stops/2665F"], ["https://mivb.openplanner.team/stops/3102", "https://mivb.openplanner.team/stops/3174"], ["https://mivb.openplanner.team/stops/2238", "https://mivb.openplanner.team/stops/6177"], ["https://mivb.openplanner.team/stops/1348", "https://mivb.openplanner.team/stops/4252"], ["https://mivb.openplanner.team/stops/1019", "https://mivb.openplanner.team/stops/1056"], ["https://mivb.openplanner.team/stops/2996", "https://mivb.openplanner.team/stops/3307"], ["https://mivb.openplanner.team/stops/1368", "https://mivb.openplanner.team/stops/1755"], ["https://mivb.openplanner.team/stops/2515B", "https://mivb.openplanner.team/stops/2586"], ["https://mivb.openplanner.team/stops/2670", "https://mivb.openplanner.team/stops/6175"], ["https://mivb.openplanner.team/stops/1317", "https://mivb.openplanner.team/stops/1318"], ["https://mivb.openplanner.team/stops/1598", "https://mivb.openplanner.team/stops/4359"], ["https://mivb.openplanner.team/stops/2576", "https://mivb.openplanner.team/stops/6501"], ["https://mivb.openplanner.team/stops/0810469", "https://mivb.openplanner.team/stops/6463F"], ["https://mivb.openplanner.team/stops/1207", "https://mivb.openplanner.team/stops/1256"], ["https://mivb.openplanner.team/stops/3424", "https://mivb.openplanner.team/stops/5874F"], ["https://mivb.openplanner.team/stops/1380", "https://mivb.openplanner.team/stops/9561"], ["https://mivb.openplanner.team/stops/1063", "https://mivb.openplanner.team/stops/4323"], ["https://mivb.openplanner.team/stops/8061", "https://mivb.openplanner.team/stops/0060120"], ["https://mivb.openplanner.team/stops/3508", "https://mivb.openplanner.team/stops/3572F"], ["https://mivb.openplanner.team/stops/1417B", "https://mivb.openplanner.team/stops/1474B"], ["https://mivb.openplanner.team/stops/0660166", "https://mivb.openplanner.team/stops/0723"], ["https://mivb.openplanner.team/stops/2259", "https://mivb.openplanner.team/stops/2259F"], ["https://mivb.openplanner.team/stops/1136", "https://mivb.openplanner.team/stops/0070321"], ["https://mivb.openplanner.team/stops/5917F", "https://mivb.openplanner.team/stops/5952F"], ["https://mivb.openplanner.team/stops/1541", "https://mivb.openplanner.team/stops/3854B"], ["https://mivb.openplanner.team/stops/1782", "https://mivb.openplanner.team/stops/7770258"], ["https://mivb.openplanner.team/stops/3007", "https://mivb.openplanner.team/stops/3058"], ["https://mivb.openplanner.team/stops/1056", "https://mivb.openplanner.team/stops/4254B"], ["https://mivb.openplanner.team/stops/1073", "https://mivb.openplanner.team/stops/5291F"], ["https://mivb.openplanner.team/stops/1145", "https://mivb.openplanner.team/stops/3253F"], ["https://mivb.openplanner.team/stops/0636", "https://mivb.openplanner.team/stops/0350640"], ["https://mivb.openplanner.team/stops/1105", "https://mivb.openplanner.team/stops/4005F"], ["https://mivb.openplanner.team/stops/1798", "https://mivb.openplanner.team/stops/7529"], ["https://mivb.openplanner.team/stops/0810369", "https://mivb.openplanner.team/stops/1459"], ["https://mivb.openplanner.team/stops/2757C", "https://mivb.openplanner.team/stops/5424"], ["https://mivb.openplanner.team/stops/6004", "https://mivb.openplanner.team/stops/6071"], ["https://mivb.openplanner.team/stops/2903", "https://mivb.openplanner.team/stops/3304"], ["https://mivb.openplanner.team/stops/7800455", "https://mivb.openplanner.team/stops/9052"], ["https://mivb.openplanner.team/stops/2535B", "https://mivb.openplanner.team/stops/7700105"], ["https://mivb.openplanner.team/stops/6356F", "https://mivb.openplanner.team/stops/0030117"], ["https://mivb.openplanner.team/stops/1852", "https://mivb.openplanner.team/stops/5657"], ["https://mivb.openplanner.team/stops/8041", "https://mivb.openplanner.team/stops/0040318"], ["https://mivb.openplanner.team/stops/8141", "https://mivb.openplanner.team/stops/0140228"], ["https://mivb.openplanner.team/stops/2002", "https://mivb.openplanner.team/stops/5031F"], ["https://mivb.openplanner.team/stops/8431", "https://mivb.openplanner.team/stops/0430648"], ["https://mivb.openplanner.team/stops/9756", "https://mivb.openplanner.team/stops/9776"], ["https://mivb.openplanner.team/stops/0600962", "https://mivb.openplanner.team/stops/0601162"], ["https://mivb.openplanner.team/stops/1685F", "https://mivb.openplanner.team/stops/4165"], ["https://mivb.openplanner.team/stops/1236F", "https://mivb.openplanner.team/stops/4005F"], ["https://mivb.openplanner.team/stops/5776", "https://mivb.openplanner.team/stops/53"], ["https://mivb.openplanner.team/stops/0470F", "https://mivb.openplanner.team/stops/0471"], ["https://mivb.openplanner.team/stops/4599", "https://mivb.openplanner.team/stops/4656"], ["https://mivb.openplanner.team/stops/4125", "https://mivb.openplanner.team/stops/4126"], ["https://mivb.openplanner.team/stops/2216", "https://mivb.openplanner.team/stops/4595"], ["https://mivb.openplanner.team/stops/2289", "https://mivb.openplanner.team/stops/0080422"], ["https://mivb.openplanner.team/stops/7820353", "https://mivb.openplanner.team/stops/9056F"], ["https://mivb.openplanner.team/stops/4347", "https://mivb.openplanner.team/stops/5453"], ["https://mivb.openplanner.team/stops/1720B", "https://mivb.openplanner.team/stops/4407"], ["https://mivb.openplanner.team/stops/1976", "https://mivb.openplanner.team/stops/5408"], ["https://mivb.openplanner.team/stops/3353", "https://mivb.openplanner.team/stops/3358"], ["https://mivb.openplanner.team/stops/3557", "https://mivb.openplanner.team/stops/4307"], ["https://mivb.openplanner.team/stops/0810269", "https://mivb.openplanner.team/stops/69"], ["https://mivb.openplanner.team/stops/0631", "https://mivb.openplanner.team/stops/8351"], ["https://mivb.openplanner.team/stops/1016", "https://mivb.openplanner.team/stops/0440649"], ["https://mivb.openplanner.team/stops/1668", "https://mivb.openplanner.team/stops/5605"], ["https://mivb.openplanner.team/stops/7810254", "https://mivb.openplanner.team/stops/9052"], ["https://mivb.openplanner.team/stops/2074", "https://mivb.openplanner.team/stops/5416"], ["https://mivb.openplanner.team/stops/1964", "https://mivb.openplanner.team/stops/2703"], ["https://mivb.openplanner.team/stops/3755", "https://mivb.openplanner.team/stops/6792F"], ["https://mivb.openplanner.team/stops/0110125", "https://mivb.openplanner.team/stops/0110425"], ["https://mivb.openplanner.team/stops/0310344", "https://mivb.openplanner.team/stops/0310444"], ["https://mivb.openplanner.team/stops/1816", "https://mivb.openplanner.team/stops/5559"], ["https://mivb.openplanner.team/stops/1545", "https://mivb.openplanner.team/stops/1875"], ["https://mivb.openplanner.team/stops/3410", "https://mivb.openplanner.team/stops/3412"], ["https://mivb.openplanner.team/stops/3517", "https://mivb.openplanner.team/stops/5408"], ["https://mivb.openplanner.team/stops/3168", "https://mivb.openplanner.team/stops/5740"], ["https://mivb.openplanner.team/stops/1315", "https://mivb.openplanner.team/stops/3203"], ["https://mivb.openplanner.team/stops/1144", "https://mivb.openplanner.team/stops/6444"], ["https://mivb.openplanner.team/stops/5008F", "https://mivb.openplanner.team/stops/5077"], ["https://mivb.openplanner.team/stops/2663G", "https://mivb.openplanner.team/stops/5721G"], ["https://mivb.openplanner.team/stops/3812", "https://mivb.openplanner.team/stops/3853"], ["https://mivb.openplanner.team/stops/5804G", "https://mivb.openplanner.team/stops/5866"], ["https://mivb.openplanner.team/stops/2833", "https://mivb.openplanner.team/stops/0440349"], ["https://mivb.openplanner.team/stops/1290", "https://mivb.openplanner.team/stops/4229"], ["https://mivb.openplanner.team/stops/6702", "https://mivb.openplanner.team/stops/8292"], ["https://mivb.openplanner.team/stops/3313", "https://mivb.openplanner.team/stops/0410346"], ["https://mivb.openplanner.team/stops/2413", "https://mivb.openplanner.team/stops/5855F"], ["https://mivb.openplanner.team/stops/8702", "https://mivb.openplanner.team/stops/5"], ["https://mivb.openplanner.team/stops/1602", "https://mivb.openplanner.team/stops/1657"], ["https://mivb.openplanner.team/stops/1111", "https://mivb.openplanner.team/stops/1304"], ["https://mivb.openplanner.team/stops/3420", "https://mivb.openplanner.team/stops/5277F"], ["https://mivb.openplanner.team/stops/1156", "https://mivb.openplanner.team/stops/21"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/4287"], ["https://mivb.openplanner.team/stops/7660209", "https://mivb.openplanner.team/stops/9660"], ["https://mivb.openplanner.team/stops/1018", "https://mivb.openplanner.team/stops/7640111"], ["https://mivb.openplanner.team/stops/9608", "https://mivb.openplanner.team/stops/9632"], ["https://mivb.openplanner.team/stops/3017", "https://mivb.openplanner.team/stops/3337F"], ["https://mivb.openplanner.team/stops/2239", "https://mivb.openplanner.team/stops/2338F"], ["https://mivb.openplanner.team/stops/3859", "https://mivb.openplanner.team/stops/3860"], ["https://mivb.openplanner.team/stops/3546", "https://mivb.openplanner.team/stops/0230334"], ["https://mivb.openplanner.team/stops/1716", "https://mivb.openplanner.team/stops/3557"], ["https://mivb.openplanner.team/stops/0020216", "https://mivb.openplanner.team/stops/0020416"], ["https://mivb.openplanner.team/stops/4502F", "https://mivb.openplanner.team/stops/5921B"], ["https://mivb.openplanner.team/stops/2715", "https://mivb.openplanner.team/stops/5413F"], ["https://mivb.openplanner.team/stops/1145", "https://mivb.openplanner.team/stops/3225F"], ["https://mivb.openplanner.team/stops/1540", "https://mivb.openplanner.team/stops/3463"], ["https://mivb.openplanner.team/stops/2817", "https://mivb.openplanner.team/stops/2822"], ["https://mivb.openplanner.team/stops/2997", "https://mivb.openplanner.team/stops/4556"], ["https://mivb.openplanner.team/stops/1901", "https://mivb.openplanner.team/stops/0430748"], ["https://mivb.openplanner.team/stops/5427", "https://mivb.openplanner.team/stops/6469"], ["https://mivb.openplanner.team/stops/1159", "https://mivb.openplanner.team/stops/1463"], ["https://mivb.openplanner.team/stops/1985B", "https://mivb.openplanner.team/stops/5853B"], ["https://mivb.openplanner.team/stops/1613", "https://mivb.openplanner.team/stops/1661"], ["https://mivb.openplanner.team/stops/1508", "https://mivb.openplanner.team/stops/0410146"], ["https://mivb.openplanner.team/stops/2753", "https://mivb.openplanner.team/stops/5284F"], ["https://mivb.openplanner.team/stops/1209", "https://mivb.openplanner.team/stops/4657"], ["https://mivb.openplanner.team/stops/4076", "https://mivb.openplanner.team/stops/5026"], ["https://mivb.openplanner.team/stops/0810169", "https://mivb.openplanner.team/stops/69"], ["https://mivb.openplanner.team/stops/2264", "https://mivb.openplanner.team/stops/3633B"], ["https://mivb.openplanner.team/stops/2407", "https://mivb.openplanner.team/stops/2955"], ["https://mivb.openplanner.team/stops/3854B", "https://mivb.openplanner.team/stops/5964"], ["https://mivb.openplanner.team/stops/1375", "https://mivb.openplanner.team/stops/1635"], ["https://mivb.openplanner.team/stops/5810", "https://mivb.openplanner.team/stops/5849"], ["https://mivb.openplanner.team/stops/3174", "https://mivb.openplanner.team/stops/7268"], ["https://mivb.openplanner.team/stops/1718B", "https://mivb.openplanner.team/stops/1719"], ["https://mivb.openplanner.team/stops/5224F", "https://mivb.openplanner.team/stops/5272F"], ["https://mivb.openplanner.team/stops/3761", "https://mivb.openplanner.team/stops/5354H"], ["https://mivb.openplanner.team/stops/2816", "https://mivb.openplanner.team/stops/5705"], ["https://mivb.openplanner.team/stops/2759", "https://mivb.openplanner.team/stops/5414F"], ["https://mivb.openplanner.team/stops/6022B", "https://mivb.openplanner.team/stops/6023"], ["https://mivb.openplanner.team/stops/2370", "https://mivb.openplanner.team/stops/2371"], ["https://mivb.openplanner.team/stops/2415", "https://mivb.openplanner.team/stops/5853G"], ["https://mivb.openplanner.team/stops/6799F", "https://mivb.openplanner.team/stops/7"], ["https://mivb.openplanner.team/stops/1183", "https://mivb.openplanner.team/stops/0470151"], ["https://mivb.openplanner.team/stops/5281G", "https://mivb.openplanner.team/stops/5287"], ["https://mivb.openplanner.team/stops/1412", "https://mivb.openplanner.team/stops/5225F"], ["https://mivb.openplanner.team/stops/5039", "https://mivb.openplanner.team/stops/5046"], ["https://mivb.openplanner.team/stops/1240", "https://mivb.openplanner.team/stops/2455"], ["https://mivb.openplanner.team/stops/5025", "https://mivb.openplanner.team/stops/5058F"], ["https://mivb.openplanner.team/stops/5296B", "https://mivb.openplanner.team/stops/5297B"], ["https://mivb.openplanner.team/stops/3109", "https://mivb.openplanner.team/stops/6302"], ["https://mivb.openplanner.team/stops/2404", "https://mivb.openplanner.team/stops/2463F"], ["https://mivb.openplanner.team/stops/2564", "https://mivb.openplanner.team/stops/3234"], ["https://mivb.openplanner.team/stops/0526", "https://mivb.openplanner.team/stops/6413F"], ["https://mivb.openplanner.team/stops/2931", "https://mivb.openplanner.team/stops/6430F"], ["https://mivb.openplanner.team/stops/7800155", "https://mivb.openplanner.team/stops/7800255"], ["https://mivb.openplanner.team/stops/8641", "https://mivb.openplanner.team/stops/7640111"], ["https://mivb.openplanner.team/stops/5269F", "https://mivb.openplanner.team/stops/5284F"], ["https://mivb.openplanner.team/stops/2046", "https://mivb.openplanner.team/stops/2725"], ["https://mivb.openplanner.team/stops/3556", "https://mivb.openplanner.team/stops/0230334"], ["https://mivb.openplanner.team/stops/1132", "https://mivb.openplanner.team/stops/8042"], ["https://mivb.openplanner.team/stops/2611", "https://mivb.openplanner.team/stops/2659"], ["https://mivb.openplanner.team/stops/2956", "https://mivb.openplanner.team/stops/5848"], ["https://mivb.openplanner.team/stops/1103", "https://mivb.openplanner.team/stops/1681F"], ["https://mivb.openplanner.team/stops/0900468", "https://mivb.openplanner.team/stops/1865"], ["https://mivb.openplanner.team/stops/0660166", "https://mivb.openplanner.team/stops/6162"], ["https://mivb.openplanner.team/stops/2507", "https://mivb.openplanner.team/stops/2572"], ["https://mivb.openplanner.team/stops/1076", "https://mivb.openplanner.team/stops/6124"], ["https://mivb.openplanner.team/stops/0600762", "https://mivb.openplanner.team/stops/1707"], ["https://mivb.openplanner.team/stops/1156T", "https://mivb.openplanner.team/stops/0070221"], ["https://mivb.openplanner.team/stops/1145", "https://mivb.openplanner.team/stops/8731"], ["https://mivb.openplanner.team/stops/5297B", "https://mivb.openplanner.team/stops/8682"], ["https://mivb.openplanner.team/stops/6462F", "https://mivb.openplanner.team/stops/6463F"], ["https://mivb.openplanner.team/stops/5296B", "https://mivb.openplanner.team/stops/7680107"], ["https://mivb.openplanner.team/stops/1813", "https://mivb.openplanner.team/stops/5282F"], ["https://mivb.openplanner.team/stops/4206", "https://mivb.openplanner.team/stops/4261"], ["https://mivb.openplanner.team/stops/1614B", "https://mivb.openplanner.team/stops/5524"], ["https://mivb.openplanner.team/stops/4213", "https://mivb.openplanner.team/stops/0280113"], ["https://mivb.openplanner.team/stops/2551", "https://mivb.openplanner.team/stops/3858"], ["https://mivb.openplanner.team/stops/2805", "https://mivb.openplanner.team/stops/5080"], ["https://mivb.openplanner.team/stops/9654", "https://mivb.openplanner.team/stops/9655"], ["https://mivb.openplanner.team/stops/1834", "https://mivb.openplanner.team/stops/5509"], ["https://mivb.openplanner.team/stops/0826", "https://mivb.openplanner.team/stops/6449"], ["https://mivb.openplanner.team/stops/1102", "https://mivb.openplanner.team/stops/1193"], ["https://mivb.openplanner.team/stops/1760", "https://mivb.openplanner.team/stops/0210132"], ["https://mivb.openplanner.team/stops/1080", "https://mivb.openplanner.team/stops/1745"], ["https://mivb.openplanner.team/stops/2260F", "https://mivb.openplanner.team/stops/3804B"], ["https://mivb.openplanner.team/stops/1681F", "https://mivb.openplanner.team/stops/1682F"], ["https://mivb.openplanner.team/stops/5089", "https://mivb.openplanner.team/stops/8462"], ["https://mivb.openplanner.team/stops/2757C", "https://mivb.openplanner.team/stops/5416"], ["https://mivb.openplanner.team/stops/1533", "https://mivb.openplanner.team/stops/3920"], ["https://mivb.openplanner.team/stops/1528", "https://mivb.openplanner.team/stops/3288"], ["https://mivb.openplanner.team/stops/2016", "https://mivb.openplanner.team/stops/2074"], ["https://mivb.openplanner.team/stops/4347", "https://mivb.openplanner.team/stops/4348"], ["https://mivb.openplanner.team/stops/6476", "https://mivb.openplanner.team/stops/8102"], ["https://mivb.openplanner.team/stops/1067", "https://mivb.openplanner.team/stops/1755"], ["https://mivb.openplanner.team/stops/1847", "https://mivb.openplanner.team/stops/5553"], ["https://mivb.openplanner.team/stops/1108", "https://mivb.openplanner.team/stops/1198"], ["https://mivb.openplanner.team/stops/1565", "https://mivb.openplanner.team/stops/6056"], ["https://mivb.openplanner.team/stops/5320", "https://mivb.openplanner.team/stops/5760"], ["https://mivb.openplanner.team/stops/5453", "https://mivb.openplanner.team/stops/9059"], ["https://mivb.openplanner.team/stops/3165", "https://mivb.openplanner.team/stops/6304"], ["https://mivb.openplanner.team/stops/5009F", "https://mivb.openplanner.team/stops/58"], ["https://mivb.openplanner.team/stops/4205", "https://mivb.openplanner.team/stops/4261"], ["https://mivb.openplanner.team/stops/1764", "https://mivb.openplanner.team/stops/1804"], ["https://mivb.openplanner.team/stops/6016", "https://mivb.openplanner.team/stops/6061"], ["https://mivb.openplanner.team/stops/3620B", "https://mivb.openplanner.team/stops/6433"], ["https://mivb.openplanner.team/stops/7501", "https://mivb.openplanner.team/stops/9169"], ["https://mivb.openplanner.team/stops/1385", "https://mivb.openplanner.team/stops/5230F"], ["https://mivb.openplanner.team/stops/3162", "https://mivb.openplanner.team/stops/6061"], ["https://mivb.openplanner.team/stops/1561", "https://mivb.openplanner.team/stops/3911"], ["https://mivb.openplanner.team/stops/1860", "https://mivb.openplanner.team/stops/1861"], ["https://mivb.openplanner.team/stops/1728", "https://mivb.openplanner.team/stops/1881"], ["https://mivb.openplanner.team/stops/0010315", "https://mivb.openplanner.team/stops/0010415"], ["https://mivb.openplanner.team/stops/1453", "https://mivb.openplanner.team/stops/4313"], ["https://mivb.openplanner.team/stops/3042", "https://mivb.openplanner.team/stops/9729"], ["https://mivb.openplanner.team/stops/2027", "https://mivb.openplanner.team/stops/2085"], ["https://mivb.openplanner.team/stops/0600262", "https://mivb.openplanner.team/stops/5286"], ["https://mivb.openplanner.team/stops/1322", "https://mivb.openplanner.team/stops/1323"], ["https://mivb.openplanner.team/stops/2828", "https://mivb.openplanner.team/stops/2837"], ["https://mivb.openplanner.team/stops/2980", "https://mivb.openplanner.team/stops/2996"], ["https://mivb.openplanner.team/stops/3521", "https://mivb.openplanner.team/stops/0230134"], ["https://mivb.openplanner.team/stops/1597", "https://mivb.openplanner.team/stops/1598"], ["https://mivb.openplanner.team/stops/0670167", "https://mivb.openplanner.team/stops/1220"], ["https://mivb.openplanner.team/stops/1113", "https://mivb.openplanner.team/stops/1153"], ["https://mivb.openplanner.team/stops/2805", "https://mivb.openplanner.team/stops/2877"], ["https://mivb.openplanner.team/stops/1258G", "https://mivb.openplanner.team/stops/5756"], ["https://mivb.openplanner.team/stops/5963", "https://mivb.openplanner.team/stops/7660209"], ["https://mivb.openplanner.team/stops/1111", "https://mivb.openplanner.team/stops/5166"], ["https://mivb.openplanner.team/stops/1953", "https://mivb.openplanner.team/stops/2168"], ["https://mivb.openplanner.team/stops/0705", "https://mivb.openplanner.team/stops/2334F"], ["https://mivb.openplanner.team/stops/3551", "https://mivb.openplanner.team/stops/35"], ["https://mivb.openplanner.team/stops/1932", "https://mivb.openplanner.team/stops/5823"], ["https://mivb.openplanner.team/stops/2532", "https://mivb.openplanner.team/stops/2533"], ["https://mivb.openplanner.team/stops/0040118", "https://mivb.openplanner.team/stops/0040218"], ["https://mivb.openplanner.team/stops/5740", "https://mivb.openplanner.team/stops/5758F"], ["https://mivb.openplanner.team/stops/1047F", "https://mivb.openplanner.team/stops/1049F"], ["https://mivb.openplanner.team/stops/6858C", "https://mivb.openplanner.team/stops/7710104"], ["https://mivb.openplanner.team/stops/7670208", "https://mivb.openplanner.team/stops/8"], ["https://mivb.openplanner.team/stops/0350740", "https://mivb.openplanner.team/stops/40"], ["https://mivb.openplanner.team/stops/1403", "https://mivb.openplanner.team/stops/6023"], ["https://mivb.openplanner.team/stops/0040218", "https://mivb.openplanner.team/stops/17"], ["https://mivb.openplanner.team/stops/2294B", "https://mivb.openplanner.team/stops/2988"], ["https://mivb.openplanner.team/stops/1939", "https://mivb.openplanner.team/stops/1963"], ["https://mivb.openplanner.team/stops/1138", "https://mivb.openplanner.team/stops/1150"], ["https://mivb.openplanner.team/stops/1451", "https://mivb.openplanner.team/stops/5225F"], ["https://mivb.openplanner.team/stops/2214", "https://mivb.openplanner.team/stops/6659F"], ["https://mivb.openplanner.team/stops/2837", "https://mivb.openplanner.team/stops/0430848"], ["https://mivb.openplanner.team/stops/1906", "https://mivb.openplanner.team/stops/1983"], ["https://mivb.openplanner.team/stops/1067", "https://mivb.openplanner.team/stops/6800F"], ["https://mivb.openplanner.team/stops/1182", "https://mivb.openplanner.team/stops/4053G"], ["https://mivb.openplanner.team/stops/1673", "https://mivb.openplanner.team/stops/5533"], ["https://mivb.openplanner.team/stops/6113F", "https://mivb.openplanner.team/stops/6156F"], ["https://mivb.openplanner.team/stops/1725", "https://mivb.openplanner.team/stops/2014"], ["https://mivb.openplanner.team/stops/1644F", "https://mivb.openplanner.team/stops/5762"], ["https://mivb.openplanner.team/stops/5109", "https://mivb.openplanner.team/stops/5165"], ["https://mivb.openplanner.team/stops/1417B", "https://mivb.openplanner.team/stops/1802"], ["https://mivb.openplanner.team/stops/3504", "https://mivb.openplanner.team/stops/44"], ["https://mivb.openplanner.team/stops/0526", "https://mivb.openplanner.team/stops/1900"], ["https://mivb.openplanner.team/stops/6165", "https://mivb.openplanner.team/stops/6166"], ["https://mivb.openplanner.team/stops/2918", "https://mivb.openplanner.team/stops/9296"], ["https://mivb.openplanner.team/stops/6303", "https://mivb.openplanner.team/stops/6364"], ["https://mivb.openplanner.team/stops/1729", "https://mivb.openplanner.team/stops/3623B"], ["https://mivb.openplanner.team/stops/5303", "https://mivb.openplanner.team/stops/5359"], ["https://mivb.openplanner.team/stops/1465", "https://mivb.openplanner.team/stops/2267"], ["https://mivb.openplanner.team/stops/1115", "https://mivb.openplanner.team/stops/1172"], ["https://mivb.openplanner.team/stops/1831", "https://mivb.openplanner.team/stops/5510"], ["https://mivb.openplanner.team/stops/1063", "https://mivb.openplanner.team/stops/1167"], ["https://mivb.openplanner.team/stops/3351", "https://mivb.openplanner.team/stops/3359"], ["https://mivb.openplanner.team/stops/2404F", "https://mivb.openplanner.team/stops/6106"], ["https://mivb.openplanner.team/stops/5849", "https://mivb.openplanner.team/stops/5858"], ["https://mivb.openplanner.team/stops/1810", "https://mivb.openplanner.team/stops/0210132"], ["https://mivb.openplanner.team/stops/3547", "https://mivb.openplanner.team/stops/4297"], ["https://mivb.openplanner.team/stops/1115", "https://mivb.openplanner.team/stops/1202"], ["https://mivb.openplanner.team/stops/2830", "https://mivb.openplanner.team/stops/0430548"], ["https://mivb.openplanner.team/stops/1153", "https://mivb.openplanner.team/stops/1519"], ["https://mivb.openplanner.team/stops/1208", "https://mivb.openplanner.team/stops/3252"], ["https://mivb.openplanner.team/stops/2534", "https://mivb.openplanner.team/stops/2562B"], ["https://mivb.openplanner.team/stops/1194", "https://mivb.openplanner.team/stops/9802"], ["https://mivb.openplanner.team/stops/3113", "https://mivb.openplanner.team/stops/6416F"], ["https://mivb.openplanner.team/stops/2377", "https://mivb.openplanner.team/stops/5706"], ["https://mivb.openplanner.team/stops/1723B", "https://mivb.openplanner.team/stops/3526"], ["https://mivb.openplanner.team/stops/1206", "https://mivb.openplanner.team/stops/2579"], ["https://mivb.openplanner.team/stops/5605", "https://mivb.openplanner.team/stops/9578"], ["https://mivb.openplanner.team/stops/1684F", "https://mivb.openplanner.team/stops/1721"], ["https://mivb.openplanner.team/stops/1726", "https://mivb.openplanner.team/stops/6353F"], ["https://mivb.openplanner.team/stops/5001F", "https://mivb.openplanner.team/stops/5086F"], ["https://mivb.openplanner.team/stops/6501", "https://mivb.openplanner.team/stops/6553"], ["https://mivb.openplanner.team/stops/5307G", "https://mivb.openplanner.team/stops/5354H"], ["https://mivb.openplanner.team/stops/2264", "https://mivb.openplanner.team/stops/6650G"], ["https://mivb.openplanner.team/stops/1644F", "https://mivb.openplanner.team/stops/1645F"], ["https://mivb.openplanner.team/stops/3098", "https://mivb.openplanner.team/stops/3181"], ["https://mivb.openplanner.team/stops/1421", "https://mivb.openplanner.team/stops/1454"], ["https://mivb.openplanner.team/stops/2908", "https://mivb.openplanner.team/stops/3179"], ["https://mivb.openplanner.team/stops/1384", "https://mivb.openplanner.team/stops/1540"], ["https://mivb.openplanner.team/stops/5026", "https://mivb.openplanner.team/stops/5058F"], ["https://mivb.openplanner.team/stops/1601", "https://mivb.openplanner.team/stops/1673"], ["https://mivb.openplanner.team/stops/1754", "https://mivb.openplanner.team/stops/8261"], ["https://mivb.openplanner.team/stops/0310644", "https://mivb.openplanner.team/stops/44"], ["https://mivb.openplanner.team/stops/2576", "https://mivb.openplanner.team/stops/5007F"], ["https://mivb.openplanner.team/stops/1639", "https://mivb.openplanner.team/stops/0140228"], ["https://mivb.openplanner.team/stops/1114B", "https://mivb.openplanner.team/stops/6471"], ["https://mivb.openplanner.team/stops/4265", "https://mivb.openplanner.team/stops/7820153"], ["https://mivb.openplanner.team/stops/2455", "https://mivb.openplanner.team/stops/2937B"], ["https://mivb.openplanner.team/stops/8071", "https://mivb.openplanner.team/stops/0070121"], ["https://mivb.openplanner.team/stops/2824", "https://mivb.openplanner.team/stops/5001F"], ["https://mivb.openplanner.team/stops/4071", "https://mivb.openplanner.team/stops/7830352"], ["https://mivb.openplanner.team/stops/2104", "https://mivb.openplanner.team/stops/2153"], ["https://mivb.openplanner.team/stops/1824", "https://mivb.openplanner.team/stops/6432"], ["https://mivb.openplanner.team/stops/3762", "https://mivb.openplanner.team/stops/4550"], ["https://mivb.openplanner.team/stops/2256F", "https://mivb.openplanner.team/stops/7700205"], ["https://mivb.openplanner.team/stops/2515B", "https://mivb.openplanner.team/stops/2584"], ["https://mivb.openplanner.team/stops/2329", "https://mivb.openplanner.team/stops/2359"], ["https://mivb.openplanner.team/stops/1971", "https://mivb.openplanner.team/stops/2763"], ["https://mivb.openplanner.team/stops/2671", "https://mivb.openplanner.team/stops/2671F"], ["https://mivb.openplanner.team/stops/1207", "https://mivb.openplanner.team/stops/1257"], ["https://mivb.openplanner.team/stops/1063", "https://mivb.openplanner.team/stops/4324"], ["https://mivb.openplanner.team/stops/2669", "https://mivb.openplanner.team/stops/5720"], ["https://mivb.openplanner.team/stops/3508", "https://mivb.openplanner.team/stops/3572"], ["https://mivb.openplanner.team/stops/4264B", "https://mivb.openplanner.team/stops/4265"], ["https://mivb.openplanner.team/stops/1531", "https://mivb.openplanner.team/stops/1553"], ["https://mivb.openplanner.team/stops/4556", "https://mivb.openplanner.team/stops/5278F"], ["https://mivb.openplanner.team/stops/2301", "https://mivb.openplanner.team/stops/0010315"], ["https://mivb.openplanner.team/stops/2338F", "https://mivb.openplanner.team/stops/2376"], ["https://mivb.openplanner.team/stops/9627", "https://mivb.openplanner.team/stops/9631"], ["https://mivb.openplanner.team/stops/2352", "https://mivb.openplanner.team/stops/2829B"], ["https://mivb.openplanner.team/stops/6462F", "https://mivb.openplanner.team/stops/0070521"], ["https://mivb.openplanner.team/stops/6004", "https://mivb.openplanner.team/stops/6070"], ["https://mivb.openplanner.team/stops/9652", "https://mivb.openplanner.team/stops/9683"], ["https://mivb.openplanner.team/stops/2535B", "https://mivb.openplanner.team/stops/7700205"], ["https://mivb.openplanner.team/stops/2671F", "https://mivb.openplanner.team/stops/0350740"], ["https://mivb.openplanner.team/stops/2659", "https://mivb.openplanner.team/stops/2660"], ["https://mivb.openplanner.team/stops/2412", "https://mivb.openplanner.team/stops/2953"], ["https://mivb.openplanner.team/stops/9756", "https://mivb.openplanner.team/stops/9777"], ["https://mivb.openplanner.team/stops/1652", "https://mivb.openplanner.team/stops/2010"], ["https://mivb.openplanner.team/stops/1685F", "https://mivb.openplanner.team/stops/4168"], ["https://mivb.openplanner.team/stops/1725", "https://mivb.openplanner.team/stops/3529"], ["https://mivb.openplanner.team/stops/4599", "https://mivb.openplanner.team/stops/4657"], ["https://mivb.openplanner.team/stops/2136", "https://mivb.openplanner.team/stops/2759"], ["https://mivb.openplanner.team/stops/1319", "https://mivb.openplanner.team/stops/1416"], ["https://mivb.openplanner.team/stops/2965", "https://mivb.openplanner.team/stops/6078"], ["https://mivb.openplanner.team/stops/1515", "https://mivb.openplanner.team/stops/3216"], ["https://mivb.openplanner.team/stops/2289", "https://mivb.openplanner.team/stops/0080322"], ["https://mivb.openplanner.team/stops/0430548", "https://mivb.openplanner.team/stops/0431148"], ["https://mivb.openplanner.team/stops/4347", "https://mivb.openplanner.team/stops/5452"], ["https://mivb.openplanner.team/stops/0810369", "https://mivb.openplanner.team/stops/69"], ["https://mivb.openplanner.team/stops/3168", "https://mivb.openplanner.team/stops/7762"], ["https://mivb.openplanner.team/stops/8081", "https://mivb.openplanner.team/stops/8082"], ["https://mivb.openplanner.team/stops/4287", "https://mivb.openplanner.team/stops/5423"], ["https://mivb.openplanner.team/stops/2663", "https://mivb.openplanner.team/stops/5721"], ["https://mivb.openplanner.team/stops/1546", "https://mivb.openplanner.team/stops/1816"], ["https://mivb.openplanner.team/stops/7810254", "https://mivb.openplanner.team/stops/9056F"], ["https://mivb.openplanner.team/stops/2124", "https://mivb.openplanner.team/stops/9959F"], ["https://mivb.openplanner.team/stops/2257G", "https://mivb.openplanner.team/stops/6809"], ["https://mivb.openplanner.team/stops/2577", "https://mivb.openplanner.team/stops/9027"], ["https://mivb.openplanner.team/stops/3230F", "https://mivb.openplanner.team/stops/7730502"], ["https://mivb.openplanner.team/stops/1076B", "https://mivb.openplanner.team/stops/1084"], ["https://mivb.openplanner.team/stops/1133", "https://mivb.openplanner.team/stops/1262B"], ["https://mivb.openplanner.team/stops/2216", "https://mivb.openplanner.team/stops/0370438"], ["https://mivb.openplanner.team/stops/1320", "https://mivb.openplanner.team/stops/3288"], ["https://mivb.openplanner.team/stops/3226B", "https://mivb.openplanner.team/stops/4595"], ["https://mivb.openplanner.team/stops/1090", "https://mivb.openplanner.team/stops/5910"], ["https://mivb.openplanner.team/stops/2546", "https://mivb.openplanner.team/stops/2553"], ["https://mivb.openplanner.team/stops/5701", "https://mivb.openplanner.team/stops/9056F"], ["https://mivb.openplanner.team/stops/5532", "https://mivb.openplanner.team/stops/6474F"], ["https://mivb.openplanner.team/stops/3257", "https://mivb.openplanner.team/stops/3257F"], ["https://mivb.openplanner.team/stops/2124", "https://mivb.openplanner.team/stops/2125"], ["https://mivb.openplanner.team/stops/1350", "https://mivb.openplanner.team/stops/6607"], ["https://mivb.openplanner.team/stops/1931", "https://mivb.openplanner.team/stops/5824"], ["https://mivb.openplanner.team/stops/1376B", "https://mivb.openplanner.team/stops/3629"], ["https://mivb.openplanner.team/stops/3520", "https://mivb.openplanner.team/stops/0230134"], ["https://mivb.openplanner.team/stops/2467", "https://mivb.openplanner.team/stops/3006"], ["https://mivb.openplanner.team/stops/2663G", "https://mivb.openplanner.team/stops/5721"], ["https://mivb.openplanner.team/stops/8794", "https://mivb.openplanner.team/stops/7790556"], ["https://mivb.openplanner.team/stops/3362", "https://mivb.openplanner.team/stops/5277F"], ["https://mivb.openplanner.team/stops/1245", "https://mivb.openplanner.team/stops/6649F"], ["https://mivb.openplanner.team/stops/2262", "https://mivb.openplanner.team/stops/3228F"], ["https://mivb.openplanner.team/stops/1654", "https://mivb.openplanner.team/stops/3506"], ["https://mivb.openplanner.team/stops/5723B", "https://mivb.openplanner.team/stops/5953F"], ["https://mivb.openplanner.team/stops/1308G", "https://mivb.openplanner.team/stops/1310"], ["https://mivb.openplanner.team/stops/3017", "https://mivb.openplanner.team/stops/3338F"], ["https://mivb.openplanner.team/stops/1127", "https://mivb.openplanner.team/stops/1376B"], ["https://mivb.openplanner.team/stops/5719H", "https://mivb.openplanner.team/stops/9920F"], ["https://mivb.openplanner.team/stops/2329", "https://mivb.openplanner.team/stops/2827"], ["https://mivb.openplanner.team/stops/2524", "https://mivb.openplanner.team/stops/2551"], ["https://mivb.openplanner.team/stops/2541", "https://mivb.openplanner.team/stops/9979B"], ["https://mivb.openplanner.team/stops/0020216", "https://mivb.openplanner.team/stops/0020316"], ["https://mivb.openplanner.team/stops/2291B", "https://mivb.openplanner.team/stops/0220333"], ["https://mivb.openplanner.team/stops/4502F", "https://mivb.openplanner.team/stops/5921G"], ["https://mivb.openplanner.team/stops/2801", "https://mivb.openplanner.team/stops/2873"], ["https://mivb.openplanner.team/stops/8471", "https://mivb.openplanner.team/stops/0470151"], ["https://mivb.openplanner.team/stops/3717", "https://mivb.openplanner.team/stops/3752"], ["https://mivb.openplanner.team/stops/4315", "https://mivb.openplanner.team/stops/4345"], ["https://mivb.openplanner.team/stops/1289", "https://mivb.openplanner.team/stops/4205"], ["https://mivb.openplanner.team/stops/6304", "https://mivb.openplanner.team/stops/6363"], ["https://mivb.openplanner.team/stops/2572", "https://mivb.openplanner.team/stops/6864F"], ["https://mivb.openplanner.team/stops/1631", "https://mivb.openplanner.team/stops/5521"], ["https://mivb.openplanner.team/stops/8311", "https://mivb.openplanner.team/stops/0310144"], ["https://mivb.openplanner.team/stops/6020", "https://mivb.openplanner.team/stops/6059"], ["https://mivb.openplanner.team/stops/1522", "https://mivb.openplanner.team/stops/3919"], ["https://mivb.openplanner.team/stops/2608", "https://mivb.openplanner.team/stops/2608F"], ["https://mivb.openplanner.team/stops/8753", "https://mivb.openplanner.team/stops/7750160"], ["https://mivb.openplanner.team/stops/2753", "https://mivb.openplanner.team/stops/5283F"], ["https://mivb.openplanner.team/stops/1711", "https://mivb.openplanner.team/stops/1768"], ["https://mivb.openplanner.team/stops/0470F", "https://mivb.openplanner.team/stops/8763"], ["https://mivb.openplanner.team/stops/5503", "https://mivb.openplanner.team/stops/6476"], ["https://mivb.openplanner.team/stops/1969", "https://mivb.openplanner.team/stops/2131"], ["https://mivb.openplanner.team/stops/5284F", "https://mivb.openplanner.team/stops/0260237"], ["https://mivb.openplanner.team/stops/2025", "https://mivb.openplanner.team/stops/2071"], ["https://mivb.openplanner.team/stops/6172", "https://mivb.openplanner.team/stops/6173"], ["https://mivb.openplanner.team/stops/1782", "https://mivb.openplanner.team/stops/0470251"], ["https://mivb.openplanner.team/stops/2408", "https://mivb.openplanner.team/stops/2459"], ["https://mivb.openplanner.team/stops/6427F", "https://mivb.openplanner.team/stops/6428"], ["https://mivb.openplanner.team/stops/5295", "https://mivb.openplanner.team/stops/6552"], ["https://mivb.openplanner.team/stops/2346", "https://mivb.openplanner.team/stops/3454"], ["https://mivb.openplanner.team/stops/5458", "https://mivb.openplanner.team/stops/6439"], ["https://mivb.openplanner.team/stops/2910", "https://mivb.openplanner.team/stops/3101"], ["https://mivb.openplanner.team/stops/6355", "https://mivb.openplanner.team/stops/8031"], ["https://mivb.openplanner.team/stops/3059", "https://mivb.openplanner.team/stops/5913"], ["https://mivb.openplanner.team/stops/3260", "https://mivb.openplanner.team/stops/6604F"], ["https://mivb.openplanner.team/stops/2539F", "https://mivb.openplanner.team/stops/2540"], ["https://mivb.openplanner.team/stops/7640311", "https://mivb.openplanner.team/stops/9659"], ["https://mivb.openplanner.team/stops/2899", "https://mivb.openplanner.team/stops/2905"], ["https://mivb.openplanner.team/stops/0600462", "https://mivb.openplanner.team/stops/0606"], ["https://mivb.openplanner.team/stops/5817F", "https://mivb.openplanner.team/stops/5952F"], ["https://mivb.openplanner.team/stops/4270F", "https://mivb.openplanner.team/stops/4273F"], ["https://mivb.openplanner.team/stops/2410", "https://mivb.openplanner.team/stops/2456"], ["https://mivb.openplanner.team/stops/2145", "https://mivb.openplanner.team/stops/4319"], ["https://mivb.openplanner.team/stops/1561", "https://mivb.openplanner.team/stops/3906"], ["https://mivb.openplanner.team/stops/1716", "https://mivb.openplanner.team/stops/4369"], ["https://mivb.openplanner.team/stops/1183", "https://mivb.openplanner.team/stops/8472"], ["https://mivb.openplanner.team/stops/1049F", "https://mivb.openplanner.team/stops/5409"], ["https://mivb.openplanner.team/stops/1412", "https://mivb.openplanner.team/stops/5226F"], ["https://mivb.openplanner.team/stops/3353", "https://mivb.openplanner.team/stops/6308F"], ["https://mivb.openplanner.team/stops/2457", "https://mivb.openplanner.team/stops/5857F"], ["https://mivb.openplanner.team/stops/1626", "https://mivb.openplanner.team/stops/8471"], ["https://mivb.openplanner.team/stops/3815", "https://mivb.openplanner.team/stops/3851"], ["https://mivb.openplanner.team/stops/2523", "https://mivb.openplanner.team/stops/3805"], ["https://mivb.openplanner.team/stops/1792", "https://mivb.openplanner.team/stops/3009"], ["https://mivb.openplanner.team/stops/2465", "https://mivb.openplanner.team/stops/6121F"], ["https://mivb.openplanner.team/stops/7640211", "https://mivb.openplanner.team/stops/7650210"], ["https://mivb.openplanner.team/stops/2977", "https://mivb.openplanner.team/stops/3408"], ["https://mivb.openplanner.team/stops/3517", "https://mivb.openplanner.team/stops/5466"], ["https://mivb.openplanner.team/stops/3522", "https://mivb.openplanner.team/stops/5604"], ["https://mivb.openplanner.team/stops/3174", "https://mivb.openplanner.team/stops/5959"], ["https://mivb.openplanner.team/stops/1410", "https://mivb.openplanner.team/stops/1456"], ["https://mivb.openplanner.team/stops/0725", "https://mivb.openplanner.team/stops/1801"], ["https://mivb.openplanner.team/stops/8641", "https://mivb.openplanner.team/stops/8642"], ["https://mivb.openplanner.team/stops/2218", "https://mivb.openplanner.team/stops/2259F"], ["https://mivb.openplanner.team/stops/5722F", "https://mivb.openplanner.team/stops/5925"], ["https://mivb.openplanner.team/stops/5760", "https://mivb.openplanner.team/stops/5761"], ["https://mivb.openplanner.team/stops/1350", "https://mivb.openplanner.team/stops/1351"], ["https://mivb.openplanner.team/stops/6461", "https://mivb.openplanner.team/stops/6461F"], ["https://mivb.openplanner.team/stops/5605", "https://mivb.openplanner.team/stops/5656"], ["https://mivb.openplanner.team/stops/7660209", "https://mivb.openplanner.team/stops/9"], ["https://mivb.openplanner.team/stops/5066F", "https://mivb.openplanner.team/stops/0330242"], ["https://mivb.openplanner.team/stops/1767", "https://mivb.openplanner.team/stops/1775"], ["https://mivb.openplanner.team/stops/1720B", "https://mivb.openplanner.team/stops/0250236"], ["https://mivb.openplanner.team/stops/4364", "https://mivb.openplanner.team/stops/5264F"], ["https://mivb.openplanner.team/stops/1479", "https://mivb.openplanner.team/stops/1492"], ["https://mivb.openplanner.team/stops/1682F", "https://mivb.openplanner.team/stops/1683F"], ["https://mivb.openplanner.team/stops/2087", "https://mivb.openplanner.team/stops/9600B"], ["https://mivb.openplanner.team/stops/2507", "https://mivb.openplanner.team/stops/2571"], ["https://mivb.openplanner.team/stops/1046G", "https://mivb.openplanner.team/stops/1047F"], ["https://mivb.openplanner.team/stops/1156T", "https://mivb.openplanner.team/stops/0070121"], ["https://mivb.openplanner.team/stops/2080", "https://mivb.openplanner.team/stops/4299"], ["https://mivb.openplanner.team/stops/1064", "https://mivb.openplanner.team/stops/4156"], ["https://mivb.openplanner.team/stops/1929", "https://mivb.openplanner.team/stops/1961B"], ["https://mivb.openplanner.team/stops/3099", "https://mivb.openplanner.team/stops/3105"], ["https://mivb.openplanner.team/stops/1766", "https://mivb.openplanner.team/stops/5077"], ["https://mivb.openplanner.team/stops/3308F", "https://mivb.openplanner.team/stops/3360F"], ["https://mivb.openplanner.team/stops/3629", "https://mivb.openplanner.team/stops/6352"], ["https://mivb.openplanner.team/stops/1455", "https://mivb.openplanner.team/stops/4311"], ["https://mivb.openplanner.team/stops/3905", "https://mivb.openplanner.team/stops/3956"], ["https://mivb.openplanner.team/stops/3009", "https://mivb.openplanner.team/stops/6702"], ["https://mivb.openplanner.team/stops/1951", "https://mivb.openplanner.team/stops/5058F"], ["https://mivb.openplanner.team/stops/5288", "https://mivb.openplanner.team/stops/6103"], ["https://mivb.openplanner.team/stops/2727", "https://mivb.openplanner.team/stops/2752"], ["https://mivb.openplanner.team/stops/1563", "https://mivb.openplanner.team/stops/4550"], ["https://mivb.openplanner.team/stops/1757", "https://mivb.openplanner.team/stops/1863"], ["https://mivb.openplanner.team/stops/2345", "https://mivb.openplanner.team/stops/5350G"], ["https://mivb.openplanner.team/stops/2260F", "https://mivb.openplanner.team/stops/3802"], ["https://mivb.openplanner.team/stops/1880", "https://mivb.openplanner.team/stops/1883"], ["https://mivb.openplanner.team/stops/1656B", "https://mivb.openplanner.team/stops/1657"], ["https://mivb.openplanner.team/stops/3130", "https://mivb.openplanner.team/stops/3280"], ["https://mivb.openplanner.team/stops/4132B", "https://mivb.openplanner.team/stops/7790556"], ["https://mivb.openplanner.team/stops/1048F", "https://mivb.openplanner.team/stops/5208"], ["https://mivb.openplanner.team/stops/3123", "https://mivb.openplanner.team/stops/3155"], ["https://mivb.openplanner.team/stops/1629", "https://mivb.openplanner.team/stops/1656B"], ["https://mivb.openplanner.team/stops/4401", "https://mivb.openplanner.team/stops/4456"], ["https://mivb.openplanner.team/stops/3815", "https://mivb.openplanner.team/stops/5720F"], ["https://mivb.openplanner.team/stops/1490", "https://mivb.openplanner.team/stops/6799F"], ["https://mivb.openplanner.team/stops/7650210", "https://mivb.openplanner.team/stops/8652"], ["https://mivb.openplanner.team/stops/2330", "https://mivb.openplanner.team/stops/2829B"], ["https://mivb.openplanner.team/stops/1586", "https://mivb.openplanner.team/stops/1829"], ["https://mivb.openplanner.team/stops/1112", "https://mivb.openplanner.team/stops/8471"], ["https://mivb.openplanner.team/stops/2215", "https://mivb.openplanner.team/stops/3228F"], ["https://mivb.openplanner.team/stops/2867", "https://mivb.openplanner.team/stops/9047"], ["https://mivb.openplanner.team/stops/5710F", "https://mivb.openplanner.team/stops/6461"], ["https://mivb.openplanner.team/stops/3165", "https://mivb.openplanner.team/stops/6303"], ["https://mivb.openplanner.team/stops/2016", "https://mivb.openplanner.team/stops/5455"], ["https://mivb.openplanner.team/stops/2867", "https://mivb.openplanner.team/stops/5402"], ["https://mivb.openplanner.team/stops/2664", "https://mivb.openplanner.team/stops/2669"], ["https://mivb.openplanner.team/stops/1782", "https://mivb.openplanner.team/stops/6805F"], ["https://mivb.openplanner.team/stops/2086", "https://mivb.openplanner.team/stops/5427"], ["https://mivb.openplanner.team/stops/1815", "https://mivb.openplanner.team/stops/1862"], ["https://mivb.openplanner.team/stops/1385", "https://mivb.openplanner.team/stops/5229F"], ["https://mivb.openplanner.team/stops/3064", "https://mivb.openplanner.team/stops/9635"], ["https://mivb.openplanner.team/stops/1714", "https://mivb.openplanner.team/stops/1762"], ["https://mivb.openplanner.team/stops/2556", "https://mivb.openplanner.team/stops/3859"], ["https://mivb.openplanner.team/stops/2407", "https://mivb.openplanner.team/stops/5158"], ["https://mivb.openplanner.team/stops/1728", "https://mivb.openplanner.team/stops/1883"], ["https://mivb.openplanner.team/stops/5803G", "https://mivb.openplanner.team/stops/7246"], ["https://mivb.openplanner.team/stops/2455", "https://mivb.openplanner.team/stops/2603"], ["https://mivb.openplanner.team/stops/4856B", "https://mivb.openplanner.team/stops/4857B"], ["https://mivb.openplanner.team/stops/3042", "https://mivb.openplanner.team/stops/9726"], ["https://mivb.openplanner.team/stops/5756", "https://mivb.openplanner.team/stops/5953F"], ["https://mivb.openplanner.team/stops/5423", "https://mivb.openplanner.team/stops/5430"], ["https://mivb.openplanner.team/stops/1806", "https://mivb.openplanner.team/stops/6008"], ["https://mivb.openplanner.team/stops/1115", "https://mivb.openplanner.team/stops/0470351"], ["https://mivb.openplanner.team/stops/1686F", "https://mivb.openplanner.team/stops/9707"], ["https://mivb.openplanner.team/stops/2546", "https://mivb.openplanner.team/stops/3858"], ["https://mivb.openplanner.team/stops/2204", "https://mivb.openplanner.team/stops/2271"], ["https://mivb.openplanner.team/stops/5022", "https://mivb.openplanner.team/stops/5219F"], ["https://mivb.openplanner.team/stops/1643F", "https://mivb.openplanner.team/stops/1644F"], ["https://mivb.openplanner.team/stops/3506", "https://mivb.openplanner.team/stops/0310544"], ["https://mivb.openplanner.team/stops/1196", "https://mivb.openplanner.team/stops/4059F"], ["https://mivb.openplanner.team/stops/1654", "https://mivb.openplanner.team/stops/0310544"], ["https://mivb.openplanner.team/stops/4004", "https://mivb.openplanner.team/stops/4010"], ["https://mivb.openplanner.team/stops/1525", "https://mivb.openplanner.team/stops/0120426"], ["https://mivb.openplanner.team/stops/2955", "https://mivb.openplanner.team/stops/5151"], ["https://mivb.openplanner.team/stops/1932", "https://mivb.openplanner.team/stops/5822F"], ["https://mivb.openplanner.team/stops/2916", "https://mivb.openplanner.team/stops/6258"], ["https://mivb.openplanner.team/stops/1613", "https://mivb.openplanner.team/stops/5525"], ["https://mivb.openplanner.team/stops/1047F", "https://mivb.openplanner.team/stops/1048F"], ["https://mivb.openplanner.team/stops/1403", "https://mivb.openplanner.team/stops/6022B"], ["https://mivb.openplanner.team/stops/2815B", "https://mivb.openplanner.team/stops/2856B"], ["https://mivb.openplanner.team/stops/6416", "https://mivb.openplanner.team/stops/6418"], ["https://mivb.openplanner.team/stops/1914", "https://mivb.openplanner.team/stops/1975"], ["https://mivb.openplanner.team/stops/2294B", "https://mivb.openplanner.team/stops/2987"], ["https://mivb.openplanner.team/stops/5020", "https://mivb.openplanner.team/stops/6109"], ["https://mivb.openplanner.team/stops/1451", "https://mivb.openplanner.team/stops/5228F"], ["https://mivb.openplanner.team/stops/1642F", "https://mivb.openplanner.team/stops/1646F"], ["https://mivb.openplanner.team/stops/3505", "https://mivb.openplanner.team/stops/0310344"], ["https://mivb.openplanner.team/stops/4369", "https://mivb.openplanner.team/stops/5265F"], ["https://mivb.openplanner.team/stops/2548", "https://mivb.openplanner.team/stops/2548F"], ["https://mivb.openplanner.team/stops/2119", "https://mivb.openplanner.team/stops/2718"], ["https://mivb.openplanner.team/stops/1568", "https://mivb.openplanner.team/stops/3219"], ["https://mivb.openplanner.team/stops/1984G", "https://mivb.openplanner.team/stops/5853B"], ["https://mivb.openplanner.team/stops/4106", "https://mivb.openplanner.team/stops/4157"], ["https://mivb.openplanner.team/stops/4294", "https://mivb.openplanner.team/stops/4297"], ["https://mivb.openplanner.team/stops/0900268", "https://mivb.openplanner.team/stops/8202"], ["https://mivb.openplanner.team/stops/0900468", "https://mivb.openplanner.team/stops/0900568"], ["https://mivb.openplanner.team/stops/6649F", "https://mivb.openplanner.team/stops/13"], ["https://mivb.openplanner.team/stops/2107", "https://mivb.openplanner.team/stops/2115"], ["https://mivb.openplanner.team/stops/1206", "https://mivb.openplanner.team/stops/1260"], ["https://mivb.openplanner.team/stops/6303", "https://mivb.openplanner.team/stops/6363"], ["https://mivb.openplanner.team/stops/1840", "https://mivb.openplanner.team/stops/1850"], ["https://mivb.openplanner.team/stops/0670367", "https://mivb.openplanner.team/stops/1221"], ["https://mivb.openplanner.team/stops/3407", "https://mivb.openplanner.team/stops/5868"], ["https://mivb.openplanner.team/stops/1136", "https://mivb.openplanner.team/stops/1156T"], ["https://mivb.openplanner.team/stops/2459", "https://mivb.openplanner.team/stops/2935"], ["https://mivb.openplanner.team/stops/1244", "https://mivb.openplanner.team/stops/7740201"], ["https://mivb.openplanner.team/stops/3704", "https://mivb.openplanner.team/stops/4555"], ["https://mivb.openplanner.team/stops/3113", "https://mivb.openplanner.team/stops/6418"], ["https://mivb.openplanner.team/stops/1140", "https://mivb.openplanner.team/stops/1519"], ["https://mivb.openplanner.team/stops/1721", "https://mivb.openplanner.team/stops/1727"], ["https://mivb.openplanner.team/stops/2308", "https://mivb.openplanner.team/stops/2376"], ["https://mivb.openplanner.team/stops/2207", "https://mivb.openplanner.team/stops/9026"], ["https://mivb.openplanner.team/stops/5014", "https://mivb.openplanner.team/stops/0280213"], ["https://mivb.openplanner.team/stops/2338F", "https://mivb.openplanner.team/stops/5741"], ["https://mivb.openplanner.team/stops/2871", "https://mivb.openplanner.team/stops/6502"], ["https://mivb.openplanner.team/stops/2960", "https://mivb.openplanner.team/stops/5018F"], ["https://mivb.openplanner.team/stops/2264", "https://mivb.openplanner.team/stops/6649F"], ["https://mivb.openplanner.team/stops/3407", "https://mivb.openplanner.team/stops/3449"], ["https://mivb.openplanner.team/stops/5044", "https://mivb.openplanner.team/stops/9311"], ["https://mivb.openplanner.team/stops/4656", "https://mivb.openplanner.team/stops/4657"], ["https://mivb.openplanner.team/stops/1685F", "https://mivb.openplanner.team/stops/9825F"], ["https://mivb.openplanner.team/stops/2908", "https://mivb.openplanner.team/stops/3182"], ["https://mivb.openplanner.team/stops/1793", "https://mivb.openplanner.team/stops/8291"], ["https://mivb.openplanner.team/stops/3718", "https://mivb.openplanner.team/stops/3751"], ["https://mivb.openplanner.team/stops/1733", "https://mivb.openplanner.team/stops/3120"], ["https://mivb.openplanner.team/stops/1184", "https://mivb.openplanner.team/stops/5109"], ["https://mivb.openplanner.team/stops/1082", "https://mivb.openplanner.team/stops/9026"], ["https://mivb.openplanner.team/stops/1273", "https://mivb.openplanner.team/stops/2920"], ["https://mivb.openplanner.team/stops/6024", "https://mivb.openplanner.team/stops/8071"], ["https://mivb.openplanner.team/stops/0330142", "https://mivb.openplanner.team/stops/0330342"], ["https://mivb.openplanner.team/stops/5400", "https://mivb.openplanner.team/stops/5472"], ["https://mivb.openplanner.team/stops/1565", "https://mivb.openplanner.team/stops/2241G"], ["https://mivb.openplanner.team/stops/1082", "https://mivb.openplanner.team/stops/1083"], ["https://mivb.openplanner.team/stops/6931G", "https://mivb.openplanner.team/stops/6956B"], ["https://mivb.openplanner.team/stops/1639", "https://mivb.openplanner.team/stops/8141"], ["https://mivb.openplanner.team/stops/1520", "https://mivb.openplanner.team/stops/1558"], ["https://mivb.openplanner.team/stops/4955F", "https://mivb.openplanner.team/stops/4956"], ["https://mivb.openplanner.team/stops/2306", "https://mivb.openplanner.team/stops/5756"], ["https://mivb.openplanner.team/stops/2314", "https://mivb.openplanner.team/stops/2361"], ["https://mivb.openplanner.team/stops/3904", "https://mivb.openplanner.team/stops/4505"], ["https://mivb.openplanner.team/stops/2665F", "https://mivb.openplanner.team/stops/3851"], ["https://mivb.openplanner.team/stops/1327", "https://mivb.openplanner.team/stops/2556"], ["https://mivb.openplanner.team/stops/3003", "https://mivb.openplanner.team/stops/5961"], ["https://mivb.openplanner.team/stops/1748", "https://mivb.openplanner.team/stops/4105"], ["https://mivb.openplanner.team/stops/1103", "https://mivb.openplanner.team/stops/1745"], ["https://mivb.openplanner.team/stops/5026", "https://mivb.openplanner.team/stops/5815"], ["https://mivb.openplanner.team/stops/5152", "https://mivb.openplanner.team/stops/5161"], ["https://mivb.openplanner.team/stops/1043", "https://mivb.openplanner.team/stops/1640B"], ["https://mivb.openplanner.team/stops/1462", "https://mivb.openplanner.team/stops/6450"], ["https://mivb.openplanner.team/stops/4295", "https://mivb.openplanner.team/stops/4401"], ["https://mivb.openplanner.team/stops/3462", "https://mivb.openplanner.team/stops/3959"], ["https://mivb.openplanner.team/stops/3165", "https://mivb.openplanner.team/stops/3414"], ["https://mivb.openplanner.team/stops/2541", "https://mivb.openplanner.team/stops/2670"], ["https://mivb.openplanner.team/stops/2256B", "https://mivb.openplanner.team/stops/2562B"], ["https://mivb.openplanner.team/stops/0430248", "https://mivb.openplanner.team/stops/0431148"], ["https://mivb.openplanner.team/stops/3332", "https://mivb.openplanner.team/stops/9060"], ["https://mivb.openplanner.team/stops/2050", "https://mivb.openplanner.team/stops/8261"], ["https://mivb.openplanner.team/stops/1718B", "https://mivb.openplanner.team/stops/3547"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/2077"], ["https://mivb.openplanner.team/stops/3911", "https://mivb.openplanner.team/stops/3956"], ["https://mivb.openplanner.team/stops/2364", "https://mivb.openplanner.team/stops/3007"], ["https://mivb.openplanner.team/stops/4502F", "https://mivb.openplanner.team/stops/4506"], ["https://mivb.openplanner.team/stops/2669", "https://mivb.openplanner.team/stops/5720F"], ["https://mivb.openplanner.team/stops/2708G", "https://mivb.openplanner.team/stops/2769"], ["https://mivb.openplanner.team/stops/6812", "https://mivb.openplanner.team/stops/6857"], ["https://mivb.openplanner.team/stops/3620B", "https://mivb.openplanner.team/stops/3623B"], ["https://mivb.openplanner.team/stops/4111", "https://mivb.openplanner.team/stops/6471"], ["https://mivb.openplanner.team/stops/7820253", "https://mivb.openplanner.team/stops/9051F"], ["https://mivb.openplanner.team/stops/7820153", "https://mivb.openplanner.team/stops/7820453"], ["https://mivb.openplanner.team/stops/5602", "https://mivb.openplanner.team/stops/5658"], ["https://mivb.openplanner.team/stops/2502", "https://mivb.openplanner.team/stops/7780157"], ["https://mivb.openplanner.team/stops/2376", "https://mivb.openplanner.team/stops/5707"], ["https://mivb.openplanner.team/stops/1199F", "https://mivb.openplanner.team/stops/4107"], ["https://mivb.openplanner.team/stops/2311", "https://mivb.openplanner.team/stops/5771"], ["https://mivb.openplanner.team/stops/1116", "https://mivb.openplanner.team/stops/9802"], ["https://mivb.openplanner.team/stops/1788", "https://mivb.openplanner.team/stops/5003"], ["https://mivb.openplanner.team/stops/1231", "https://mivb.openplanner.team/stops/5155"], ["https://mivb.openplanner.team/stops/4599", "https://mivb.openplanner.team/stops/9802"], ["https://mivb.openplanner.team/stops/1375", "https://mivb.openplanner.team/stops/1387"], ["https://mivb.openplanner.team/stops/0820270", "https://mivb.openplanner.team/stops/6454"], ["https://mivb.openplanner.team/stops/5229F", "https://mivb.openplanner.team/stops/8122"], ["https://mivb.openplanner.team/stops/2861", "https://mivb.openplanner.team/stops/5087"], ["https://mivb.openplanner.team/stops/5011", "https://mivb.openplanner.team/stops/5089"], ["https://mivb.openplanner.team/stops/1718B", "https://mivb.openplanner.team/stops/1758B"], ["https://mivb.openplanner.team/stops/4125", "https://mivb.openplanner.team/stops/4127"], ["https://mivb.openplanner.team/stops/1541", "https://mivb.openplanner.team/stops/7660109"], ["https://mivb.openplanner.team/stops/2203", "https://mivb.openplanner.team/stops/2370"], ["https://mivb.openplanner.team/stops/2316", "https://mivb.openplanner.team/stops/3002"], ["https://mivb.openplanner.team/stops/1415", "https://mivb.openplanner.team/stops/1451"], ["https://mivb.openplanner.team/stops/5404", "https://mivb.openplanner.team/stops/7527"], ["https://mivb.openplanner.team/stops/2764G", "https://mivb.openplanner.team/stops/4075"], ["https://mivb.openplanner.team/stops/1970", "https://mivb.openplanner.team/stops/2108"], ["https://mivb.openplanner.team/stops/1913", "https://mivb.openplanner.team/stops/1976"], ["https://mivb.openplanner.team/stops/6608G", "https://mivb.openplanner.team/stops/6648"], ["https://mivb.openplanner.team/stops/4205", "https://mivb.openplanner.team/stops/8833"], ["https://mivb.openplanner.team/stops/3450", "https://mivb.openplanner.team/stops/3466"], ["https://mivb.openplanner.team/stops/3504", "https://mivb.openplanner.team/stops/0310644"], ["https://mivb.openplanner.team/stops/6438", "https://mivb.openplanner.team/stops/8421"], ["https://mivb.openplanner.team/stops/3230F", "https://mivb.openplanner.team/stops/7730102"], ["https://mivb.openplanner.team/stops/5701", "https://mivb.openplanner.team/stops/9052"], ["https://mivb.openplanner.team/stops/2071", "https://mivb.openplanner.team/stops/2084"], ["https://mivb.openplanner.team/stops/0725", "https://mivb.openplanner.team/stops/0340141"], ["https://mivb.openplanner.team/stops/5528F", "https://mivb.openplanner.team/stops/7501"], ["https://mivb.openplanner.team/stops/6411", "https://mivb.openplanner.team/stops/6413F"], ["https://mivb.openplanner.team/stops/4600", "https://mivb.openplanner.team/stops/4656"], ["https://mivb.openplanner.team/stops/1931", "https://mivb.openplanner.team/stops/5825"], ["https://mivb.openplanner.team/stops/2299", "https://mivb.openplanner.team/stops/2816"], ["https://mivb.openplanner.team/stops/0606", "https://mivb.openplanner.team/stops/5286"], ["https://mivb.openplanner.team/stops/2147B", "https://mivb.openplanner.team/stops/5032B"], ["https://mivb.openplanner.team/stops/5008F", "https://mivb.openplanner.team/stops/5076"], ["https://mivb.openplanner.team/stops/3100", "https://mivb.openplanner.team/stops/3219"], ["https://mivb.openplanner.team/stops/2567", "https://mivb.openplanner.team/stops/4007G"], ["https://mivb.openplanner.team/stops/7710104", "https://mivb.openplanner.team/stops/7720203"], ["https://mivb.openplanner.team/stops/1509", "https://mivb.openplanner.team/stops/1569B"], ["https://mivb.openplanner.team/stops/2934", "https://mivb.openplanner.team/stops/2957"], ["https://mivb.openplanner.team/stops/1245", "https://mivb.openplanner.team/stops/6754"], ["https://mivb.openplanner.team/stops/2710G", "https://mivb.openplanner.team/stops/5026"], ["https://mivb.openplanner.team/stops/1480", "https://mivb.openplanner.team/stops/7670208"], ["https://mivb.openplanner.team/stops/1135", "https://mivb.openplanner.team/stops/6009"], ["https://mivb.openplanner.team/stops/2002", "https://mivb.openplanner.team/stops/2152"], ["https://mivb.openplanner.team/stops/6457F", "https://mivb.openplanner.team/stops/6459"], ["https://mivb.openplanner.team/stops/1046G", "https://mivb.openplanner.team/stops/1048F"], ["https://mivb.openplanner.team/stops/3800", "https://mivb.openplanner.team/stops/9979B"], ["https://mivb.openplanner.team/stops/3546", "https://mivb.openplanner.team/stops/0230134"], ["https://mivb.openplanner.team/stops/5906", "https://mivb.openplanner.team/stops/5967"], ["https://mivb.openplanner.team/stops/3232", "https://mivb.openplanner.team/stops/3281"], ["https://mivb.openplanner.team/stops/1638B", "https://mivb.openplanner.team/stops/0150129"], ["https://mivb.openplanner.team/stops/5010", "https://mivb.openplanner.team/stops/6552"], ["https://mivb.openplanner.team/stops/1230", "https://mivb.openplanner.team/stops/5151"], ["https://mivb.openplanner.team/stops/5161", "https://mivb.openplanner.team/stops/5161F"], ["https://mivb.openplanner.team/stops/6020", "https://mivb.openplanner.team/stops/6058"], ["https://mivb.openplanner.team/stops/1115", "https://mivb.openplanner.team/stops/7750260"], ["https://mivb.openplanner.team/stops/6359", "https://mivb.openplanner.team/stops/6359F"], ["https://mivb.openplanner.team/stops/5459", "https://mivb.openplanner.team/stops/5459F"], ["https://mivb.openplanner.team/stops/0120526", "https://mivb.openplanner.team/stops/0120626"], ["https://mivb.openplanner.team/stops/1597", "https://mivb.openplanner.team/stops/4298"], ["https://mivb.openplanner.team/stops/1800", "https://mivb.openplanner.team/stops/3012"], ["https://mivb.openplanner.team/stops/2150", "https://mivb.openplanner.team/stops/6934F"], ["https://mivb.openplanner.team/stops/5520F", "https://mivb.openplanner.team/stops/9164"], ["https://mivb.openplanner.team/stops/1741", "https://mivb.openplanner.team/stops/2108"], ["https://mivb.openplanner.team/stops/1546", "https://mivb.openplanner.team/stops/5503"], ["https://mivb.openplanner.team/stops/2857B", "https://mivb.openplanner.team/stops/5700G"], ["https://mivb.openplanner.team/stops/1154", "https://mivb.openplanner.team/stops/0080422"], ["https://mivb.openplanner.team/stops/6427F", "https://mivb.openplanner.team/stops/6428F"], ["https://mivb.openplanner.team/stops/1495", "https://mivb.openplanner.team/stops/6792F"], ["https://mivb.openplanner.team/stops/4125", "https://mivb.openplanner.team/stops/4266"], ["https://mivb.openplanner.team/stops/1513", "https://mivb.openplanner.team/stops/1514"], ["https://mivb.openplanner.team/stops/2571", "https://mivb.openplanner.team/stops/6864F"], ["https://mivb.openplanner.team/stops/5298F", "https://mivb.openplanner.team/stops/5361"], ["https://mivb.openplanner.team/stops/3412", "https://mivb.openplanner.team/stops/3451"], ["https://mivb.openplanner.team/stops/3236", "https://mivb.openplanner.team/stops/4006G"], ["https://mivb.openplanner.team/stops/2970", "https://mivb.openplanner.team/stops/3100"], ["https://mivb.openplanner.team/stops/9607", "https://mivb.openplanner.team/stops/9608"], ["https://mivb.openplanner.team/stops/7640311", "https://mivb.openplanner.team/stops/9658"], ["https://mivb.openplanner.team/stops/1072", "https://mivb.openplanner.team/stops/2523"], ["https://mivb.openplanner.team/stops/2915", "https://mivb.openplanner.team/stops/5307G"], ["https://mivb.openplanner.team/stops/1853", "https://mivb.openplanner.team/stops/5510"], ["https://mivb.openplanner.team/stops/1231", "https://mivb.openplanner.team/stops/1239"], ["https://mivb.openplanner.team/stops/2410", "https://mivb.openplanner.team/stops/2457"], ["https://mivb.openplanner.team/stops/2924", "https://mivb.openplanner.team/stops/3307"], ["https://mivb.openplanner.team/stops/5007F", "https://mivb.openplanner.team/stops/5078F"], ["https://mivb.openplanner.team/stops/1412", "https://mivb.openplanner.team/stops/5223F"], ["https://mivb.openplanner.team/stops/2334F", "https://mivb.openplanner.team/stops/6121F"], ["https://mivb.openplanner.team/stops/3520", "https://mivb.openplanner.team/stops/4294"], ["https://mivb.openplanner.team/stops/1678F", "https://mivb.openplanner.team/stops/9103"], ["https://mivb.openplanner.team/stops/3815", "https://mivb.openplanner.team/stops/3850"], ["https://mivb.openplanner.team/stops/3012", "https://mivb.openplanner.team/stops/3347"], ["https://mivb.openplanner.team/stops/3403", "https://mivb.openplanner.team/stops/3424"], ["https://mivb.openplanner.team/stops/1259", "https://mivb.openplanner.team/stops/1489"], ["https://mivb.openplanner.team/stops/3522", "https://mivb.openplanner.team/stops/5603"], ["https://mivb.openplanner.team/stops/5013F", "https://mivb.openplanner.team/stops/8461"], ["https://mivb.openplanner.team/stops/7800155", "https://mivb.openplanner.team/stops/7800455"], ["https://mivb.openplanner.team/stops/0290112", "https://mivb.openplanner.team/stops/0290212"], ["https://mivb.openplanner.team/stops/2218", "https://mivb.openplanner.team/stops/2259"], ["https://mivb.openplanner.team/stops/2901", "https://mivb.openplanner.team/stops/2902"], ["https://mivb.openplanner.team/stops/1798", "https://mivb.openplanner.team/stops/5405"], ["https://mivb.openplanner.team/stops/5963", "https://mivb.openplanner.team/stops/5964"], ["https://mivb.openplanner.team/stops/5722F", "https://mivb.openplanner.team/stops/5756F"], ["https://mivb.openplanner.team/stops/1723B", "https://mivb.openplanner.team/stops/1753"], ["https://mivb.openplanner.team/stops/1479", "https://mivb.openplanner.team/stops/1493"], ["https://mivb.openplanner.team/stops/5753F", "https://mivb.openplanner.team/stops/5824"], ["https://mivb.openplanner.team/stops/1965", "https://mivb.openplanner.team/stops/2701"], ["https://mivb.openplanner.team/stops/1490", "https://mivb.openplanner.team/stops/1495"], ["https://mivb.openplanner.team/stops/2404F", "https://mivb.openplanner.team/stops/2463F"], ["https://mivb.openplanner.team/stops/1527", "https://mivb.openplanner.team/stops/1528"], ["https://mivb.openplanner.team/stops/2317", "https://mivb.openplanner.team/stops/9756"], ["https://mivb.openplanner.team/stops/1944", "https://mivb.openplanner.team/stops/1953"], ["https://mivb.openplanner.team/stops/3629", "https://mivb.openplanner.team/stops/6353"], ["https://mivb.openplanner.team/stops/5812", "https://mivb.openplanner.team/stops/5857"], ["https://mivb.openplanner.team/stops/4213", "https://mivb.openplanner.team/stops/8281"], ["https://mivb.openplanner.team/stops/2314", "https://mivb.openplanner.team/stops/3061"], ["https://mivb.openplanner.team/stops/2939B", "https://mivb.openplanner.team/stops/5121"], ["https://mivb.openplanner.team/stops/5758F", "https://mivb.openplanner.team/stops/5759F"], ["https://mivb.openplanner.team/stops/2959", "https://mivb.openplanner.team/stops/6162"], ["https://mivb.openplanner.team/stops/2218", "https://mivb.openplanner.team/stops/7720203"], ["https://mivb.openplanner.team/stops/5016F", "https://mivb.openplanner.team/stops/5068F"], ["https://mivb.openplanner.team/stops/2867", "https://mivb.openplanner.team/stops/4257"], ["https://mivb.openplanner.team/stops/0826", "https://mivb.openplanner.team/stops/6451"], ["https://mivb.openplanner.team/stops/1984B", "https://mivb.openplanner.team/stops/1985B"], ["https://mivb.openplanner.team/stops/2565", "https://mivb.openplanner.team/stops/4658"], ["https://mivb.openplanner.team/stops/2409", "https://mivb.openplanner.team/stops/2956"], ["https://mivb.openplanner.team/stops/3160", "https://mivb.openplanner.team/stops/3922"], ["https://mivb.openplanner.team/stops/3308F", "https://mivb.openplanner.team/stops/3414"], ["https://mivb.openplanner.team/stops/1569B", "https://mivb.openplanner.team/stops/3100"], ["https://mivb.openplanner.team/stops/5776", "https://mivb.openplanner.team/stops/9609"], ["https://mivb.openplanner.team/stops/1855", "https://mivb.openplanner.team/stops/6655"], ["https://mivb.openplanner.team/stops/2459", "https://mivb.openplanner.team/stops/2951"], ["https://mivb.openplanner.team/stops/2905", "https://mivb.openplanner.team/stops/9725"], ["https://mivb.openplanner.team/stops/1379", "https://mivb.openplanner.team/stops/8122"], ["https://mivb.openplanner.team/stops/4401", "https://mivb.openplanner.team/stops/4455"], ["https://mivb.openplanner.team/stops/3225F", "https://mivb.openplanner.team/stops/8741"], ["https://mivb.openplanner.team/stops/1490", "https://mivb.openplanner.team/stops/6792F"], ["https://mivb.openplanner.team/stops/2931", "https://mivb.openplanner.team/stops/2932"], ["https://mivb.openplanner.team/stops/1112", "https://mivb.openplanner.team/stops/8472"], ["https://mivb.openplanner.team/stops/5361", "https://mivb.openplanner.team/stops/5362"], ["https://mivb.openplanner.team/stops/1641", "https://mivb.openplanner.team/stops/8131"], ["https://mivb.openplanner.team/stops/0531", "https://mivb.openplanner.team/stops/1900"], ["https://mivb.openplanner.team/stops/1479", "https://mivb.openplanner.team/stops/3810"], ["https://mivb.openplanner.team/stops/1483", "https://mivb.openplanner.team/stops/4215"], ["https://mivb.openplanner.team/stops/1460", "https://mivb.openplanner.team/stops/1518"], ["https://mivb.openplanner.team/stops/3461", "https://mivb.openplanner.team/stops/3957"], ["https://mivb.openplanner.team/stops/1726", "https://mivb.openplanner.team/stops/0320143"], ["https://mivb.openplanner.team/stops/1145", "https://mivb.openplanner.team/stops/1178"], ["https://mivb.openplanner.team/stops/5063", "https://mivb.openplanner.team/stops/6109"], ["https://mivb.openplanner.team/stops/6607", "https://mivb.openplanner.team/stops/6651"], ["https://mivb.openplanner.team/stops/1077", "https://mivb.openplanner.team/stops/1084"], ["https://mivb.openplanner.team/stops/1497B", "https://mivb.openplanner.team/stops/2927"], ["https://mivb.openplanner.team/stops/1313", "https://mivb.openplanner.team/stops/2508"], ["https://mivb.openplanner.team/stops/9703", "https://mivb.openplanner.team/stops/9725"], ["https://mivb.openplanner.team/stops/2037", "https://mivb.openplanner.team/stops/0140228"], ["https://mivb.openplanner.team/stops/1832", "https://mivb.openplanner.team/stops/0130227"], ["https://mivb.openplanner.team/stops/3802", "https://mivb.openplanner.team/stops/6860G"], ["https://mivb.openplanner.team/stops/1713", "https://mivb.openplanner.team/stops/1804"], ["https://mivb.openplanner.team/stops/0410246", "https://mivb.openplanner.team/stops/46"], ["https://mivb.openplanner.team/stops/4318", "https://mivb.openplanner.team/stops/4349"], ["https://mivb.openplanner.team/stops/1196", "https://mivb.openplanner.team/stops/4059"], ["https://mivb.openplanner.team/stops/0810169", "https://mivb.openplanner.team/stops/0810469"], ["https://mivb.openplanner.team/stops/4274", "https://mivb.openplanner.team/stops/4998"], ["https://mivb.openplanner.team/stops/4004", "https://mivb.openplanner.team/stops/4011"], ["https://mivb.openplanner.team/stops/5006", "https://mivb.openplanner.team/stops/6553"], ["https://mivb.openplanner.team/stops/5751", "https://mivb.openplanner.team/stops/5753F"], ["https://mivb.openplanner.team/stops/4074B", "https://mivb.openplanner.team/stops/6471"], ["https://mivb.openplanner.team/stops/3613F", "https://mivb.openplanner.team/stops/7670208"], ["https://mivb.openplanner.team/stops/2361", "https://mivb.openplanner.team/stops/3005"], ["https://mivb.openplanner.team/stops/2576", "https://mivb.openplanner.team/stops/5078F"], ["https://mivb.openplanner.team/stops/2314", "https://mivb.openplanner.team/stops/2327"], ["https://mivb.openplanner.team/stops/1613", "https://mivb.openplanner.team/stops/5524"], ["https://mivb.openplanner.team/stops/2815B", "https://mivb.openplanner.team/stops/2855"], ["https://mivb.openplanner.team/stops/6416", "https://mivb.openplanner.team/stops/6416F"], ["https://mivb.openplanner.team/stops/1451", "https://mivb.openplanner.team/stops/5227F"], ["https://mivb.openplanner.team/stops/3425", "https://mivb.openplanner.team/stops/3458"], ["https://mivb.openplanner.team/stops/1642F", "https://mivb.openplanner.team/stops/1645F"], ["https://mivb.openplanner.team/stops/7800255", "https://mivb.openplanner.team/stops/7800355"], ["https://mivb.openplanner.team/stops/7650210", "https://mivb.openplanner.team/stops/9654"], ["https://mivb.openplanner.team/stops/0520161", "https://mivb.openplanner.team/stops/0536"], ["https://mivb.openplanner.team/stops/4232", "https://mivb.openplanner.team/stops/4274"], ["https://mivb.openplanner.team/stops/2142", "https://mivb.openplanner.team/stops/6934F"], ["https://mivb.openplanner.team/stops/4106", "https://mivb.openplanner.team/stops/4112"], ["https://mivb.openplanner.team/stops/4123", "https://mivb.openplanner.team/stops/7790156"], ["https://mivb.openplanner.team/stops/1758B", "https://mivb.openplanner.team/stops/33"], ["https://mivb.openplanner.team/stops/1819", "https://mivb.openplanner.team/stops/5507"], ["https://mivb.openplanner.team/stops/8241", "https://mivb.openplanner.team/stops/0240535"], ["https://mivb.openplanner.team/stops/1280B", "https://mivb.openplanner.team/stops/6112"], ["https://mivb.openplanner.team/stops/2124", "https://mivb.openplanner.team/stops/5213"], ["https://mivb.openplanner.team/stops/2217", "https://mivb.openplanner.team/stops/2260F"], ["https://mivb.openplanner.team/stops/1984G", "https://mivb.openplanner.team/stops/5853G"], ["https://mivb.openplanner.team/stops/4106", "https://mivb.openplanner.team/stops/4156"], ["https://mivb.openplanner.team/stops/4294", "https://mivb.openplanner.team/stops/4298"], ["https://mivb.openplanner.team/stops/3851", "https://mivb.openplanner.team/stops/9920F"], ["https://mivb.openplanner.team/stops/3182", "https://mivb.openplanner.team/stops/5961"], ["https://mivb.openplanner.team/stops/0900268", "https://mivb.openplanner.team/stops/8201"], ["https://mivb.openplanner.team/stops/5533", "https://mivb.openplanner.team/stops/6474F"], ["https://mivb.openplanner.team/stops/5018F", "https://mivb.openplanner.team/stops/0330242"], ["https://mivb.openplanner.team/stops/5275F", "https://mivb.openplanner.team/stops/5278F"], ["https://mivb.openplanner.team/stops/9786", "https://mivb.openplanner.team/stops/9787"], ["https://mivb.openplanner.team/stops/2918", "https://mivb.openplanner.team/stops/9291"], ["https://mivb.openplanner.team/stops/1206", "https://mivb.openplanner.team/stops/1259"], ["https://mivb.openplanner.team/stops/3158", "https://mivb.openplanner.team/stops/3158B"], ["https://mivb.openplanner.team/stops/0670367", "https://mivb.openplanner.team/stops/1220"], ["https://mivb.openplanner.team/stops/2373", "https://mivb.openplanner.team/stops/2375"], ["https://mivb.openplanner.team/stops/5714", "https://mivb.openplanner.team/stops/6123"], ["https://mivb.openplanner.team/stops/5212", "https://mivb.openplanner.team/stops/6406"], ["https://mivb.openplanner.team/stops/1115", "https://mivb.openplanner.team/stops/1179"], ["https://mivb.openplanner.team/stops/3207", "https://mivb.openplanner.team/stops/9311"], ["https://mivb.openplanner.team/stops/1810", "https://mivb.openplanner.team/stops/8211"], ["https://mivb.openplanner.team/stops/5776", "https://mivb.openplanner.team/stops/9605"], ["https://mivb.openplanner.team/stops/1920", "https://mivb.openplanner.team/stops/1973"], ["https://mivb.openplanner.team/stops/3613F", "https://mivb.openplanner.team/stops/3756"], ["https://mivb.openplanner.team/stops/2830", "https://mivb.openplanner.team/stops/0430348"], ["https://mivb.openplanner.team/stops/1153", "https://mivb.openplanner.team/stops/1561"], ["https://mivb.openplanner.team/stops/2534", "https://mivb.openplanner.team/stops/2560"], ["https://mivb.openplanner.team/stops/4105", "https://mivb.openplanner.team/stops/4112"], ["https://mivb.openplanner.team/stops/1765", "https://mivb.openplanner.team/stops/4110"], ["https://mivb.openplanner.team/stops/2017", "https://mivb.openplanner.team/stops/2078"], ["https://mivb.openplanner.team/stops/2553", "https://mivb.openplanner.team/stops/5757F"], ["https://mivb.openplanner.team/stops/1255", "https://mivb.openplanner.team/stops/7710204"], ["https://mivb.openplanner.team/stops/3163", "https://mivb.openplanner.team/stops/6416F"], ["https://mivb.openplanner.team/stops/4104", "https://mivb.openplanner.team/stops/4159"], ["https://mivb.openplanner.team/stops/2120", "https://mivb.openplanner.team/stops/2143B"], ["https://mivb.openplanner.team/stops/6066G", "https://mivb.openplanner.team/stops/6260F"], ["https://mivb.openplanner.team/stops/2910", "https://mivb.openplanner.team/stops/2995"], ["https://mivb.openplanner.team/stops/2133", "https://mivb.openplanner.team/stops/5253"], ["https://mivb.openplanner.team/stops/1599", "https://mivb.openplanner.team/stops/4221"], ["https://mivb.openplanner.team/stops/1938", "https://mivb.openplanner.team/stops/2167"], ["https://mivb.openplanner.team/stops/3407", "https://mivb.openplanner.team/stops/3454"], ["https://mivb.openplanner.team/stops/1824", "https://mivb.openplanner.team/stops/3620B"], ["https://mivb.openplanner.team/stops/3171", "https://mivb.openplanner.team/stops/3181"], ["https://mivb.openplanner.team/stops/0810269", "https://mivb.openplanner.team/stops/0810369"], ["https://mivb.openplanner.team/stops/1322", "https://mivb.openplanner.team/stops/5220F"], ["https://mivb.openplanner.team/stops/1326", "https://mivb.openplanner.team/stops/2523"], ["https://mivb.openplanner.team/stops/5424", "https://mivb.openplanner.team/stops/5456"], ["https://mivb.openplanner.team/stops/3718", "https://mivb.openplanner.team/stops/3752"], ["https://mivb.openplanner.team/stops/3307", "https://mivb.openplanner.team/stops/5275F"], ["https://mivb.openplanner.team/stops/2507", "https://mivb.openplanner.team/stops/4110"], ["https://mivb.openplanner.team/stops/0330142", "https://mivb.openplanner.team/stops/0330442"], ["https://mivb.openplanner.team/stops/2708G", "https://mivb.openplanner.team/stops/9972F"], ["https://mivb.openplanner.team/stops/1520", "https://mivb.openplanner.team/stops/1559"], ["https://mivb.openplanner.team/stops/1116", "https://mivb.openplanner.team/stops/1193"], ["https://mivb.openplanner.team/stops/4955F", "https://mivb.openplanner.team/stops/4957"], ["https://mivb.openplanner.team/stops/1327", "https://mivb.openplanner.team/stops/2257G"], ["https://mivb.openplanner.team/stops/4265", "https://mivb.openplanner.team/stops/7820353"], ["https://mivb.openplanner.team/stops/1875", "https://mivb.openplanner.team/stops/5561F"], ["https://mivb.openplanner.team/stops/1165", "https://mivb.openplanner.team/stops/3567"], ["https://mivb.openplanner.team/stops/2512", "https://mivb.openplanner.team/stops/3235"], ["https://mivb.openplanner.team/stops/1953", "https://mivb.openplanner.team/stops/2112"], ["https://mivb.openplanner.team/stops/2209", "https://mivb.openplanner.team/stops/2835"], ["https://mivb.openplanner.team/stops/0826", "https://mivb.openplanner.team/stops/0820270"], ["https://mivb.openplanner.team/stops/5026", "https://mivb.openplanner.team/stops/5815F"], ["https://mivb.openplanner.team/stops/2337F", "https://mivb.openplanner.team/stops/2376"], ["https://mivb.openplanner.team/stops/2217", "https://mivb.openplanner.team/stops/3804B"], ["https://mivb.openplanner.team/stops/3226F", "https://mivb.openplanner.team/stops/4594"], ["https://mivb.openplanner.team/stops/3502", "https://mivb.openplanner.team/stops/6355F"], ["https://mivb.openplanner.team/stops/5868", "https://mivb.openplanner.team/stops/7269"], ["https://mivb.openplanner.team/stops/2808", "https://mivb.openplanner.team/stops/2863"], ["https://mivb.openplanner.team/stops/5152", "https://mivb.openplanner.team/stops/5161F"], ["https://mivb.openplanner.team/stops/1462", "https://mivb.openplanner.team/stops/6449"], ["https://mivb.openplanner.team/stops/5916F", "https://mivb.openplanner.team/stops/5952"], ["https://mivb.openplanner.team/stops/2610", "https://mivb.openplanner.team/stops/5922"], ["https://mivb.openplanner.team/stops/1521", "https://mivb.openplanner.team/stops/1557"], ["https://mivb.openplanner.team/stops/3165", "https://mivb.openplanner.team/stops/3412"], ["https://mivb.openplanner.team/stops/1150", "https://mivb.openplanner.team/stops/1557"], ["https://mivb.openplanner.team/stops/1019", "https://mivb.openplanner.team/stops/1348"], ["https://mivb.openplanner.team/stops/4452", "https://mivb.openplanner.team/stops/4454"], ["https://mivb.openplanner.team/stops/1289", "https://mivb.openplanner.team/stops/6482"], ["https://mivb.openplanner.team/stops/1802", "https://mivb.openplanner.team/stops/3953"], ["https://mivb.openplanner.team/stops/3804B", "https://mivb.openplanner.team/stops/5757F"], ["https://mivb.openplanner.team/stops/2522", "https://mivb.openplanner.team/stops/4655"], ["https://mivb.openplanner.team/stops/3199", "https://mivb.openplanner.team/stops/9946"], ["https://mivb.openplanner.team/stops/8432", "https://mivb.openplanner.team/stops/0431048"], ["https://mivb.openplanner.team/stops/1211B", "https://mivb.openplanner.team/stops/8722"], ["https://mivb.openplanner.team/stops/2708G", "https://mivb.openplanner.team/stops/2765"], ["https://mivb.openplanner.team/stops/5611", "https://mivb.openplanner.team/stops/6119F"], ["https://mivb.openplanner.team/stops/0250236", "https://mivb.openplanner.team/stops/0250436"], ["https://mivb.openplanner.team/stops/1811", "https://mivb.openplanner.team/stops/1865"], ["https://mivb.openplanner.team/stops/1767", "https://mivb.openplanner.team/stops/2505"], ["https://mivb.openplanner.team/stops/2234", "https://mivb.openplanner.team/stops/3012"], ["https://mivb.openplanner.team/stops/2415", "https://mivb.openplanner.team/stops/2452"], ["https://mivb.openplanner.team/stops/3007", "https://mivb.openplanner.team/stops/3059"], ["https://mivb.openplanner.team/stops/4003G", "https://mivb.openplanner.team/stops/5168"], ["https://mivb.openplanner.team/stops/5021", "https://mivb.openplanner.team/stops/5062"], ["https://mivb.openplanner.team/stops/2301", "https://mivb.openplanner.team/stops/8021"], ["https://mivb.openplanner.team/stops/8642", "https://mivb.openplanner.team/stops/7640211"], ["https://mivb.openplanner.team/stops/6477", "https://mivb.openplanner.team/stops/0110125"], ["https://mivb.openplanner.team/stops/1463", "https://mivb.openplanner.team/stops/6056"], ["https://mivb.openplanner.team/stops/1805", "https://mivb.openplanner.team/stops/5480"], ["https://mivb.openplanner.team/stops/2221", "https://mivb.openplanner.team/stops/0430448"], ["https://mivb.openplanner.team/stops/4209", "https://mivb.openplanner.team/stops/4257"], ["https://mivb.openplanner.team/stops/1515", "https://mivb.openplanner.team/stops/6055"], ["https://mivb.openplanner.team/stops/4705", "https://mivb.openplanner.team/stops/5467"], ["https://mivb.openplanner.team/stops/3510", "https://mivb.openplanner.team/stops/5208"], ["https://mivb.openplanner.team/stops/1209", "https://mivb.openplanner.team/stops/5168F"], ["https://mivb.openplanner.team/stops/1474B", "https://mivb.openplanner.team/stops/3399"], ["https://mivb.openplanner.team/stops/1132", "https://mivb.openplanner.team/stops/2927"], ["https://mivb.openplanner.team/stops/1085", "https://mivb.openplanner.team/stops/1229"], ["https://mivb.openplanner.team/stops/5045", "https://mivb.openplanner.team/stops/5046"], ["https://mivb.openplanner.team/stops/1751", "https://mivb.openplanner.team/stops/5284F"], ["https://mivb.openplanner.team/stops/4125", "https://mivb.openplanner.team/stops/4129"], ["https://mivb.openplanner.team/stops/4257", "https://mivb.openplanner.team/stops/5403"], ["https://mivb.openplanner.team/stops/8271", "https://mivb.openplanner.team/stops/0270414"], ["https://mivb.openplanner.team/stops/3260", "https://mivb.openplanner.team/stops/6649F"], ["https://mivb.openplanner.team/stops/1938", "https://mivb.openplanner.team/stops/1957B"], ["https://mivb.openplanner.team/stops/5312", "https://mivb.openplanner.team/stops/6473"], ["https://mivb.openplanner.team/stops/2570", "https://mivb.openplanner.team/stops/5108"], ["https://mivb.openplanner.team/stops/2352", "https://mivb.openplanner.team/stops/2854"], ["https://mivb.openplanner.team/stops/2239", "https://mivb.openplanner.team/stops/5711F"], ["https://mivb.openplanner.team/stops/1232", "https://mivb.openplanner.team/stops/1240"], ["https://mivb.openplanner.team/stops/6014", "https://mivb.openplanner.team/stops/0420147"], ["https://mivb.openplanner.team/stops/1015", "https://mivb.openplanner.team/stops/2523"], ["https://mivb.openplanner.team/stops/3230F", "https://mivb.openplanner.team/stops/8732"], ["https://mivb.openplanner.team/stops/2456", "https://mivb.openplanner.team/stops/2954B"], ["https://mivb.openplanner.team/stops/1563", "https://mivb.openplanner.team/stops/2244F"], ["https://mivb.openplanner.team/stops/1113", "https://mivb.openplanner.team/stops/0090123"], ["https://mivb.openplanner.team/stops/6203", "https://mivb.openplanner.team/stops/6418F"], ["https://mivb.openplanner.team/stops/3109", "https://mivb.openplanner.team/stops/6364"], ["https://mivb.openplanner.team/stops/2267", "https://mivb.openplanner.team/stops/0010415"], ["https://mivb.openplanner.team/stops/0240335", "https://mivb.openplanner.team/stops/35"], ["https://mivb.openplanner.team/stops/3131", "https://mivb.openplanner.team/stops/4366"], ["https://mivb.openplanner.team/stops/4357", "https://mivb.openplanner.team/stops/4401"], ["https://mivb.openplanner.team/stops/1425", "https://mivb.openplanner.team/stops/3218"], ["https://mivb.openplanner.team/stops/4307", "https://mivb.openplanner.team/stops/5266F"], ["https://mivb.openplanner.team/stops/1273", "https://mivb.openplanner.team/stops/3219"], ["https://mivb.openplanner.team/stops/5718", "https://mivb.openplanner.team/stops/5757"], ["https://mivb.openplanner.team/stops/2147B", "https://mivb.openplanner.team/stops/5032G"], ["https://mivb.openplanner.team/stops/1110", "https://mivb.openplanner.team/stops/1957B"], ["https://mivb.openplanner.team/stops/7710104", "https://mivb.openplanner.team/stops/8712"], ["https://mivb.openplanner.team/stops/2311", "https://mivb.openplanner.team/stops/2819"], ["https://mivb.openplanner.team/stops/1509", "https://mivb.openplanner.team/stops/1570"], ["https://mivb.openplanner.team/stops/5273F", "https://mivb.openplanner.team/stops/5287"], ["https://mivb.openplanner.team/stops/5223F", "https://mivb.openplanner.team/stops/5224F"], ["https://mivb.openplanner.team/stops/1416", "https://mivb.openplanner.team/stops/1417B"], ["https://mivb.openplanner.team/stops/6602", "https://mivb.openplanner.team/stops/6602P"], ["https://mivb.openplanner.team/stops/3510", "https://mivb.openplanner.team/stops/3562"], ["https://mivb.openplanner.team/stops/6437F", "https://mivb.openplanner.team/stops/47"], ["https://mivb.openplanner.team/stops/1602", "https://mivb.openplanner.team/stops/1656B"], ["https://mivb.openplanner.team/stops/0600262", "https://mivb.openplanner.team/stops/0010115"], ["https://mivb.openplanner.team/stops/2718", "https://mivb.openplanner.team/stops/5459F"], ["https://mivb.openplanner.team/stops/2455", "https://mivb.openplanner.team/stops/5814"], ["https://mivb.openplanner.team/stops/6811", "https://mivb.openplanner.team/stops/6"], ["https://mivb.openplanner.team/stops/4344", "https://mivb.openplanner.team/stops/4355"], ["https://mivb.openplanner.team/stops/1422", "https://mivb.openplanner.team/stops/5225F"], ["https://mivb.openplanner.team/stops/5906", "https://mivb.openplanner.team/stops/5968"], ["https://mivb.openplanner.team/stops/2931", "https://mivb.openplanner.team/stops/5018F"], ["https://mivb.openplanner.team/stops/2524", "https://mivb.openplanner.team/stops/2555"], ["https://mivb.openplanner.team/stops/1534", "https://mivb.openplanner.team/stops/1538B"], ["https://mivb.openplanner.team/stops/3508", "https://mivb.openplanner.team/stops/3508F"], ["https://mivb.openplanner.team/stops/1805", "https://mivb.openplanner.team/stops/6009"], ["https://mivb.openplanner.team/stops/1233", "https://mivb.openplanner.team/stops/1983"], ["https://mivb.openplanner.team/stops/1880", "https://mivb.openplanner.team/stops/3120"], ["https://mivb.openplanner.team/stops/1788", "https://mivb.openplanner.team/stops/5081F"], ["https://mivb.openplanner.team/stops/4116", "https://mivb.openplanner.team/stops/6805F"], ["https://mivb.openplanner.team/stops/6430", "https://mivb.openplanner.team/stops/6430F"], ["https://mivb.openplanner.team/stops/3403", "https://mivb.openplanner.team/stops/5046"], ["https://mivb.openplanner.team/stops/2954B", "https://mivb.openplanner.team/stops/5813"], ["https://mivb.openplanner.team/stops/1322", "https://mivb.openplanner.team/stops/2123"], ["https://mivb.openplanner.team/stops/1756B", "https://mivb.openplanner.team/stops/3550"], ["https://mivb.openplanner.team/stops/2853", "https://mivb.openplanner.team/stops/2854"], ["https://mivb.openplanner.team/stops/1747", "https://mivb.openplanner.team/stops/4063"], ["https://mivb.openplanner.team/stops/2402", "https://mivb.openplanner.team/stops/6121F"], ["https://mivb.openplanner.team/stops/1230", "https://mivb.openplanner.team/stops/5123"], ["https://mivb.openplanner.team/stops/4598", "https://mivb.openplanner.team/stops/4657"], ["https://mivb.openplanner.team/stops/1597", "https://mivb.openplanner.team/stops/4299"], ["https://mivb.openplanner.team/stops/2120", "https://mivb.openplanner.team/stops/2759"], ["https://mivb.openplanner.team/stops/3307", "https://mivb.openplanner.team/stops/3361"], ["https://mivb.openplanner.team/stops/0536", "https://mivb.openplanner.team/stops/2271"], ["https://mivb.openplanner.team/stops/8411", "https://mivb.openplanner.team/stops/46"], ["https://mivb.openplanner.team/stops/3102", "https://mivb.openplanner.team/stops/5959"], ["https://mivb.openplanner.team/stops/5298F", "https://mivb.openplanner.team/stops/5361F"], ["https://mivb.openplanner.team/stops/1900", "https://mivb.openplanner.team/stops/5735"], ["https://mivb.openplanner.team/stops/4308", "https://mivb.openplanner.team/stops/4360"], ["https://mivb.openplanner.team/stops/1570", "https://mivb.openplanner.team/stops/0050419"], ["https://mivb.openplanner.team/stops/1169", "https://mivb.openplanner.team/stops/3004"], ["https://mivb.openplanner.team/stops/1231", "https://mivb.openplanner.team/stops/1240"], ["https://mivb.openplanner.team/stops/8051", "https://mivb.openplanner.team/stops/0050519"], ["https://mivb.openplanner.team/stops/8641", "https://mivb.openplanner.team/stops/9825F"], ["https://mivb.openplanner.team/stops/8793", "https://mivb.openplanner.team/stops/8794"], ["https://mivb.openplanner.team/stops/1509", "https://mivb.openplanner.team/stops/0050419"], ["https://mivb.openplanner.team/stops/6862", "https://mivb.openplanner.team/stops/6862F"], ["https://mivb.openplanner.team/stops/2805", "https://mivb.openplanner.team/stops/6502"], ["https://mivb.openplanner.team/stops/1354", "https://mivb.openplanner.team/stops/9952G"], ["https://mivb.openplanner.team/stops/2015", "https://mivb.openplanner.team/stops/2087"], ["https://mivb.openplanner.team/stops/1903", "https://mivb.openplanner.team/stops/5408"], ["https://mivb.openplanner.team/stops/3216", "https://mivb.openplanner.team/stops/3251"], ["https://mivb.openplanner.team/stops/4115", "https://mivb.openplanner.team/stops/4160"], ["https://mivb.openplanner.team/stops/4228", "https://mivb.openplanner.team/stops/4261"], ["https://mivb.openplanner.team/stops/3018", "https://mivb.openplanner.team/stops/3328"], ["https://mivb.openplanner.team/stops/1315", "https://mivb.openplanner.team/stops/3204"], ["https://mivb.openplanner.team/stops/2728", "https://mivb.openplanner.team/stops/5282F"], ["https://mivb.openplanner.team/stops/1713", "https://mivb.openplanner.team/stops/1764"], ["https://mivb.openplanner.team/stops/4313", "https://mivb.openplanner.team/stops/4348"], ["https://mivb.openplanner.team/stops/1203", "https://mivb.openplanner.team/stops/1488"], ["https://mivb.openplanner.team/stops/6369", "https://mivb.openplanner.team/stops/9064"], ["https://mivb.openplanner.team/stops/5753F", "https://mivb.openplanner.team/stops/5823"], ["https://mivb.openplanner.team/stops/7650110", "https://mivb.openplanner.team/stops/7660209"], ["https://mivb.openplanner.team/stops/3704", "https://mivb.openplanner.team/stops/3763"], ["https://mivb.openplanner.team/stops/3362", "https://mivb.openplanner.team/stops/5046"], ["https://mivb.openplanner.team/stops/2548F", "https://mivb.openplanner.team/stops/5757"], ["https://mivb.openplanner.team/stops/5297B", "https://mivb.openplanner.team/stops/7680107"], ["https://mivb.openplanner.team/stops/3223B", "https://mivb.openplanner.team/stops/6649F"], ["https://mivb.openplanner.team/stops/1944", "https://mivb.openplanner.team/stops/1954"], ["https://mivb.openplanner.team/stops/1422", "https://mivb.openplanner.team/stops/1423"], ["https://mivb.openplanner.team/stops/3285", "https://mivb.openplanner.team/stops/3462"], ["https://mivb.openplanner.team/stops/8102", "https://mivb.openplanner.team/stops/9983"], ["https://mivb.openplanner.team/stops/1458", "https://mivb.openplanner.team/stops/9983"], ["https://mivb.openplanner.team/stops/1606", "https://mivb.openplanner.team/stops/4072"], ["https://mivb.openplanner.team/stops/1379", "https://mivb.openplanner.team/stops/1383"], ["https://mivb.openplanner.team/stops/0810469", "https://mivb.openplanner.team/stops/1154"], ["https://mivb.openplanner.team/stops/6100", "https://mivb.openplanner.team/stops/7790556"], ["https://mivb.openplanner.team/stops/1557", "https://mivb.openplanner.team/stops/3900"], ["https://mivb.openplanner.team/stops/5009", "https://mivb.openplanner.team/stops/7770258"], ["https://mivb.openplanner.team/stops/6019", "https://mivb.openplanner.team/stops/6020"], ["https://mivb.openplanner.team/stops/1984B", "https://mivb.openplanner.team/stops/1984G"], ["https://mivb.openplanner.team/stops/6462F", "https://mivb.openplanner.team/stops/0070621"], ["https://mivb.openplanner.team/stops/6058", "https://mivb.openplanner.team/stops/9296"], ["https://mivb.openplanner.team/stops/0240335", "https://mivb.openplanner.team/stops/0240435"], ["https://mivb.openplanner.team/stops/1726", "https://mivb.openplanner.team/stops/3628"], ["https://mivb.openplanner.team/stops/2409", "https://mivb.openplanner.team/stops/2951"], ["https://mivb.openplanner.team/stops/3160", "https://mivb.openplanner.team/stops/3921"], ["https://mivb.openplanner.team/stops/2960F", "https://mivb.openplanner.team/stops/6453"], ["https://mivb.openplanner.team/stops/2757C", "https://mivb.openplanner.team/stops/5415F"], ["https://mivb.openplanner.team/stops/4401", "https://mivb.openplanner.team/stops/0240535"], ["https://mivb.openplanner.team/stops/1225", "https://mivb.openplanner.team/stops/3004"], ["https://mivb.openplanner.team/stops/3123", "https://mivb.openplanner.team/stops/3131"], ["https://mivb.openplanner.team/stops/7740101", "https://mivb.openplanner.team/stops/8744"], ["https://mivb.openplanner.team/stops/2147B", "https://mivb.openplanner.team/stops/2150"], ["https://mivb.openplanner.team/stops/4157", "https://mivb.openplanner.team/stops/4158"], ["https://mivb.openplanner.team/stops/3609F", "https://mivb.openplanner.team/stops/7670108"], ["https://mivb.openplanner.team/stops/1847", "https://mivb.openplanner.team/stops/5551"], ["https://mivb.openplanner.team/stops/0621", "https://mivb.openplanner.team/stops/6601"], ["https://mivb.openplanner.team/stops/5361", "https://mivb.openplanner.team/stops/5361F"], ["https://mivb.openplanner.team/stops/2120", "https://mivb.openplanner.team/stops/2148"], ["https://mivb.openplanner.team/stops/1737", "https://mivb.openplanner.team/stops/2161"], ["https://mivb.openplanner.team/stops/5817", "https://mivb.openplanner.team/stops/5817F"], ["https://mivb.openplanner.team/stops/1229", "https://mivb.openplanner.team/stops/2524"], ["https://mivb.openplanner.team/stops/0900368", "https://mivb.openplanner.team/stops/0900468"], ["https://mivb.openplanner.team/stops/6483B", "https://mivb.openplanner.team/stops/8692"], ["https://mivb.openplanner.team/stops/1626", "https://mivb.openplanner.team/stops/4214"], ["https://mivb.openplanner.team/stops/6302", "https://mivb.openplanner.team/stops/6303"], ["https://mivb.openplanner.team/stops/2023", "https://mivb.openplanner.team/stops/5115"], ["https://mivb.openplanner.team/stops/2662B", "https://mivb.openplanner.team/stops/5721G"], ["https://mivb.openplanner.team/stops/1752", "https://mivb.openplanner.team/stops/3526"], ["https://mivb.openplanner.team/stops/6016", "https://mivb.openplanner.team/stops/6062"], ["https://mivb.openplanner.team/stops/2959", "https://mivb.openplanner.team/stops/3625B"], ["https://mivb.openplanner.team/stops/1635", "https://mivb.openplanner.team/stops/1661"], ["https://mivb.openplanner.team/stops/1207", "https://mivb.openplanner.team/stops/2532"], ["https://mivb.openplanner.team/stops/5219F", "https://mivb.openplanner.team/stops/6422F"], ["https://mivb.openplanner.team/stops/1030", "https://mivb.openplanner.team/stops/1082"], ["https://mivb.openplanner.team/stops/1801", "https://mivb.openplanner.team/stops/0340341"], ["https://mivb.openplanner.team/stops/1714", "https://mivb.openplanner.team/stops/5265F"], ["https://mivb.openplanner.team/stops/1970", "https://mivb.openplanner.team/stops/1971"], ["https://mivb.openplanner.team/stops/6654F", "https://mivb.openplanner.team/stops/0280213"]] \ No newline at end of file diff --git a/src/analytics/footpaths/nmbs_pairs.json b/src/analytics/footpaths/nmbs_pairs.json new file mode 100644 index 00000000..0f423df7 --- /dev/null +++ b/src/analytics/footpaths/nmbs_pairs.json @@ -0,0 +1 @@ +[["http://irail.be/stations/NMBS/008892205", "http://irail.be/stations/NMBS/008892254"], ["http://irail.be/stations/NMBS/008811155", "http://irail.be/stations/NMBS/008811213"], ["http://irail.be/stations/NMBS/008010316", "http://irail.be/stations/NMBS/008832664"], ["http://irail.be/stations/NMBS/008811205", "http://irail.be/stations/NMBS/008811437"], ["http://irail.be/stations/NMBS/008895208", "http://irail.be/stations/NMBS/008895570"], ["http://irail.be/stations/NMBS/008811254", "http://irail.be/stations/NMBS/008811510"], ["http://irail.be/stations/NMBS/008886041", "http://irail.be/stations/NMBS/008886058"], ["http://irail.be/stations/NMBS/008881463", "http://irail.be/stations/NMBS/008883220"], ["http://irail.be/stations/NMBS/007015440", "http://irail.be/stations/NMBS/008731388"], ["http://irail.be/stations/NMBS/008200130", "http://irail.be/stations/NMBS/008866001"], ["http://irail.be/stations/NMBS/008895778", "http://irail.be/stations/NMBS/008895844"], ["http://irail.be/stations/NMBS/008844321", "http://irail.be/stations/NMBS/008844339"], ["http://irail.be/stations/NMBS/008832433", "http://irail.be/stations/NMBS/008833274"], ["http://irail.be/stations/NMBS/008842051", "http://irail.be/stations/NMBS/008842648"], ["http://irail.be/stations/NMBS/008814456", "http://irail.be/stations/NMBS/008814472"], ["http://irail.be/stations/NMBS/008864501", "http://irail.be/stations/NMBS/008864915"], ["http://irail.be/stations/NMBS/008891702", "http://irail.be/stations/NMBS/008892338"], ["http://irail.be/stations/NMBS/008811304", "http://irail.be/stations/NMBS/008813037"], ["http://irail.be/stations/NMBS/008200134", "http://irail.be/stations/NMBS/008844628"], ["http://irail.be/stations/NMBS/008864337", "http://irail.be/stations/NMBS/008865227"], ["http://irail.be/stations/NMBS/008821824", "http://irail.be/stations/NMBS/008822475"], ["http://irail.be/stations/NMBS/008777320", "http://irail.be/stations/NMBS/008778100"], ["http://irail.be/stations/NMBS/008863354", "http://irail.be/stations/NMBS/008863461"], ["http://irail.be/stations/NMBS/008728671", "http://irail.be/stations/NMBS/008728683"], ["http://irail.be/stations/NMBS/008811544", "http://irail.be/stations/NMBS/008811817"], ["http://irail.be/stations/NMBS/008895208", "http://irail.be/stations/NMBS/008895232"], ["http://irail.be/stations/NMBS/008886009", "http://irail.be/stations/NMBS/008886041"], ["http://irail.be/stations/NMBS/008842663", "http://irail.be/stations/NMBS/008843224"], ["http://irail.be/stations/NMBS/008892403", "http://irail.be/stations/NMBS/008896396"], ["http://irail.be/stations/NMBS/008728686", "http://irail.be/stations/NMBS/008728710"], ["http://irail.be/stations/NMBS/008811247", "http://irail.be/stations/NMBS/008811510"], ["http://irail.be/stations/NMBS/008841467", "http://irail.be/stations/NMBS/008843240"], ["http://irail.be/stations/NMBS/008831039", "http://irail.be/stations/NMBS/008841442"], ["http://irail.be/stations/NMBS/008821022", "http://irail.be/stations/NMBS/008821246"], ["http://irail.be/stations/NMBS/008010053", "http://irail.be/stations/NMBS/008032572"], ["http://irail.be/stations/NMBS/008864436", "http://irail.be/stations/NMBS/008865003"], ["http://irail.be/stations/NMBS/008728671", "http://irail.be/stations/NMBS/008728685"], ["http://irail.be/stations/NMBS/008811205", "http://irail.be/stations/NMBS/008811221"], ["http://irail.be/stations/NMBS/008822533", "http://irail.be/stations/NMBS/008833175"], ["http://irail.be/stations/NMBS/008774176", "http://irail.be/stations/NMBS/008774179"], ["http://irail.be/stations/NMBS/008892007", "http://irail.be/stations/NMBS/008893179"], ["http://irail.be/stations/NMBS/008811247", "http://irail.be/stations/NMBS/008811254"], ["http://irail.be/stations/NMBS/008891173", "http://irail.be/stations/NMBS/008891405"], ["http://irail.be/stations/NMBS/008844008", "http://irail.be/stations/NMBS/008849064"], ["http://irail.be/stations/NMBS/008821717", "http://irail.be/stations/NMBS/008832458"], ["http://irail.be/stations/NMBS/008812062", "http://irail.be/stations/NMBS/008812120"], ["http://irail.be/stations/NMBS/008883006", "http://irail.be/stations/NMBS/008883113"], ["http://irail.be/stations/NMBS/008814134", "http://irail.be/stations/NMBS/008814431"], ["http://irail.be/stations/NMBS/008814167", "http://irail.be/stations/NMBS/008814423"], ["http://irail.be/stations/NMBS/008841202", "http://irail.be/stations/NMBS/008841731"], ["http://irail.be/stations/NMBS/008871415", "http://irail.be/stations/NMBS/008871829"], ["http://irail.be/stations/NMBS/008863818", "http://irail.be/stations/NMBS/008875002"], ["http://irail.be/stations/NMBS/008893518", "http://irail.be/stations/NMBS/008893526"], ["http://irail.be/stations/NMBS/008777320", "http://irail.be/stations/NMBS/008778127"], ["http://irail.be/stations/NMBS/008774164", "http://irail.be/stations/NMBS/008774176"], ["http://irail.be/stations/NMBS/008883311", "http://irail.be/stations/NMBS/008883808"], ["http://irail.be/stations/NMBS/008812260", "http://irail.be/stations/NMBS/008895778"], ["http://irail.be/stations/NMBS/008814340", "http://irail.be/stations/NMBS/008814415"], ["http://irail.be/stations/NMBS/008841525", "http://irail.be/stations/NMBS/008841673"], ["http://irail.be/stations/NMBS/008881570", "http://irail.be/stations/NMBS/008884004"], ["http://irail.be/stations/NMBS/008822137", "http://irail.be/stations/NMBS/008822715"], ["http://irail.be/stations/NMBS/008892007", "http://irail.be/stations/NMBS/008893013"], ["http://irail.be/stations/NMBS/008881158", "http://irail.be/stations/NMBS/008886058"], ["http://irail.be/stations/NMBS/008871688", "http://irail.be/stations/NMBS/008873320"], ["http://irail.be/stations/NMBS/008874609", "http://irail.be/stations/NMBS/008874724"], ["http://irail.be/stations/NMBS/008861119", "http://irail.be/stations/NMBS/008861127"], ["http://irail.be/stations/NMBS/008822269", "http://irail.be/stations/NMBS/008822277"], ["http://irail.be/stations/NMBS/008200940", "http://irail.be/stations/NMBS/008869054"], ["http://irail.be/stations/NMBS/008865649", "http://irail.be/stations/NMBS/008875002"], ["http://irail.be/stations/NMBS/008812229", "http://irail.be/stations/NMBS/008815040"], ["http://irail.be/stations/NMBS/008811304", "http://irail.be/stations/NMBS/008811916"], ["http://irail.be/stations/NMBS/008811007", "http://irail.be/stations/NMBS/008811130"], ["http://irail.be/stations/NMBS/008811536", "http://irail.be/stations/NMBS/008811726"], ["http://irail.be/stations/NMBS/008831112", "http://irail.be/stations/NMBS/008832375"], ["http://irail.be/stations/NMBS/007015440", "http://irail.be/stations/NMBS/008727100"], ["http://irail.be/stations/NMBS/008812245", "http://irail.be/stations/NMBS/008814340"], ["http://irail.be/stations/NMBS/008873320", "http://irail.be/stations/NMBS/008873387"], ["http://irail.be/stations/NMBS/008814209", "http://irail.be/stations/NMBS/008883022"], ["http://irail.be/stations/NMBS/008774177", "http://irail.be/stations/NMBS/008775605"], ["http://irail.be/stations/NMBS/008822772", "http://irail.be/stations/NMBS/008894672"], ["http://irail.be/stations/NMBS/008895836", "http://irail.be/stations/NMBS/008895844"], ["http://irail.be/stations/NMBS/008822228", "http://irail.be/stations/NMBS/008822814"], ["http://irail.be/stations/NMBS/008893401", "http://irail.be/stations/NMBS/008894433"], ["http://irail.be/stations/NMBS/008811916", "http://irail.be/stations/NMBS/008813045"], ["http://irail.be/stations/NMBS/008871605", "http://irail.be/stations/NMBS/008882362"], ["http://irail.be/stations/NMBS/008895737", "http://irail.be/stations/NMBS/008895745"], ["http://irail.be/stations/NMBS/008011068", "http://irail.be/stations/NMBS/008775605"], ["http://irail.be/stations/NMBS/008883006", "http://irail.be/stations/NMBS/008883212"], ["http://irail.be/stations/NMBS/008842002", "http://irail.be/stations/NMBS/008842630"], ["http://irail.be/stations/NMBS/008812229", "http://irail.be/stations/NMBS/008814373"], ["http://irail.be/stations/NMBS/008844628", "http://irail.be/stations/NMBS/008845229"], ["http://irail.be/stations/NMBS/008833050", "http://irail.be/stations/NMBS/008833233"], ["http://irail.be/stations/NMBS/008871514", "http://irail.be/stations/NMBS/008871829"], ["http://irail.be/stations/NMBS/008841665", "http://irail.be/stations/NMBS/008846201"], ["http://irail.be/stations/NMBS/008811262", "http://irail.be/stations/NMBS/008833159"], ["http://irail.be/stations/NMBS/008811759", "http://irail.be/stations/NMBS/008833159"], ["http://irail.be/stations/NMBS/008774172", "http://irail.be/stations/NMBS/008774176"], ["http://irail.be/stations/NMBS/008812211", "http://irail.be/stations/NMBS/008812229"], ["http://irail.be/stations/NMBS/008863545", "http://irail.be/stations/NMBS/008863818"], ["http://irail.be/stations/NMBS/008841608", "http://irail.be/stations/NMBS/008844271"], ["http://irail.be/stations/NMBS/008896115", "http://irail.be/stations/NMBS/008896149"], ["http://irail.be/stations/NMBS/008811197", "http://irail.be/stations/NMBS/008811916"], ["http://irail.be/stations/NMBS/008822228", "http://irail.be/stations/NMBS/008822426"], ["http://irail.be/stations/NMBS/008200136", "http://irail.be/stations/NMBS/008865128"], ["http://irail.be/stations/NMBS/008871688", "http://irail.be/stations/NMBS/008871712"], ["http://irail.be/stations/NMBS/008400280", "http://irail.be/stations/NMBS/008400561"], ["http://irail.be/stations/NMBS/008895760", "http://irail.be/stations/NMBS/008895778"], ["http://irail.be/stations/NMBS/008872413", "http://irail.be/stations/NMBS/008874567"], ["http://irail.be/stations/NMBS/008812252", "http://irail.be/stations/NMBS/008883311"], ["http://irail.be/stations/NMBS/008864931", "http://irail.be/stations/NMBS/008864949"], ["http://irail.be/stations/NMBS/008861119", "http://irail.be/stations/NMBS/008863115"], ["http://irail.be/stations/NMBS/007015440", "http://irail.be/stations/NMBS/008891405"], ["http://irail.be/stations/NMBS/008400526", "http://irail.be/stations/NMBS/008821105"], ["http://irail.be/stations/NMBS/008722326", "http://irail.be/stations/NMBS/008728600"], ["http://irail.be/stations/NMBS/008843307", "http://irail.be/stations/NMBS/008843406"], ["http://irail.be/stations/NMBS/008200101", "http://irail.be/stations/NMBS/008721222"], ["http://irail.be/stations/NMBS/008896008", "http://irail.be/stations/NMBS/008896115"], ["http://irail.be/stations/NMBS/008821311", "http://irail.be/stations/NMBS/008821337"], ["http://irail.be/stations/NMBS/008811734", "http://irail.be/stations/NMBS/008811775"], ["http://irail.be/stations/NMBS/008200130", "http://irail.be/stations/NMBS/008200132"], ["http://irail.be/stations/NMBS/008893401", "http://irail.be/stations/NMBS/008893443"], ["http://irail.be/stations/NMBS/008884632", "http://irail.be/stations/NMBS/008886058"], ["http://irail.be/stations/NMBS/008814126", "http://irail.be/stations/NMBS/008814134"], ["http://irail.be/stations/NMBS/008891033", "http://irail.be/stations/NMBS/008891405"], ["http://irail.be/stations/NMBS/008892338", "http://irail.be/stations/NMBS/008896735"], ["http://irail.be/stations/NMBS/008821022", "http://irail.be/stations/NMBS/008821147"], ["http://irail.be/stations/NMBS/008842853", "http://irail.be/stations/NMBS/008843331"], ["http://irail.be/stations/NMBS/008821071", "http://irail.be/stations/NMBS/008821089"], ["http://irail.be/stations/NMBS/008821600", "http://irail.be/stations/NMBS/008822228"], ["http://irail.be/stations/NMBS/008718201", "http://irail.be/stations/NMBS/008719203"], ["http://irail.be/stations/NMBS/008895000", "http://irail.be/stations/NMBS/008895125"], ["http://irail.be/stations/NMBS/008822277", "http://irail.be/stations/NMBS/008822459"], ["http://irail.be/stations/NMBS/008831088", "http://irail.be/stations/NMBS/008831401"], ["http://irail.be/stations/NMBS/008861143", "http://irail.be/stations/NMBS/008874724"], ["http://irail.be/stations/NMBS/008812146", "http://irail.be/stations/NMBS/008822137"], ["http://irail.be/stations/NMBS/008863446", "http://irail.be/stations/NMBS/008863453"], ["http://irail.be/stations/NMBS/008861333", "http://irail.be/stations/NMBS/008874724"], ["http://irail.be/stations/NMBS/008400280", "http://irail.be/stations/NMBS/008893708"], ["http://irail.be/stations/NMBS/008814308", "http://irail.be/stations/NMBS/008814415"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821667"], ["http://irail.be/stations/NMBS/008821147", "http://irail.be/stations/NMBS/008821154"], ["http://irail.be/stations/NMBS/008861333", "http://irail.be/stations/NMBS/008861515"], ["http://irail.be/stations/NMBS/008894235", "http://irail.be/stations/NMBS/008894425"], ["http://irail.be/stations/NMBS/008832045", "http://irail.be/stations/NMBS/008832565"], ["http://irail.be/stations/NMBS/008812245", "http://irail.be/stations/NMBS/008812252"], ["http://irail.be/stations/NMBS/008861515", "http://irail.be/stations/NMBS/008872520"], ["http://irail.be/stations/NMBS/008811528", "http://irail.be/stations/NMBS/008833159"], ["http://irail.be/stations/NMBS/008718206", "http://irail.be/stations/NMBS/008776290"], ["http://irail.be/stations/NMBS/008811759", "http://irail.be/stations/NMBS/008861515"], ["http://irail.be/stations/NMBS/008831112", "http://irail.be/stations/NMBS/008831138"], ["http://irail.be/stations/NMBS/008871183", "http://irail.be/stations/NMBS/008874054"], ["http://irail.be/stations/NMBS/008865300", "http://irail.be/stations/NMBS/008866845"], ["http://irail.be/stations/NMBS/008831765", "http://irail.be/stations/NMBS/008831781"], ["http://irail.be/stations/NMBS/008821006", "http://irail.be/stations/NMBS/008821196"], ["http://irail.be/stations/NMBS/007015440", "http://irail.be/stations/NMBS/008892338"], ["http://irail.be/stations/NMBS/008821063", "http://irail.be/stations/NMBS/008821089"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821451"], ["http://irail.be/stations/NMBS/008731388", "http://irail.be/stations/NMBS/008884889"], ["http://irail.be/stations/NMBS/008893815", "http://irail.be/stations/NMBS/008894425"], ["http://irail.be/stations/NMBS/008861416", "http://irail.be/stations/NMBS/008861424"], ["http://irail.be/stations/NMBS/008883436", "http://irail.be/stations/NMBS/008895646"], ["http://irail.be/stations/NMBS/008832045", "http://irail.be/stations/NMBS/008832227"], ["http://irail.be/stations/NMBS/008824158", "http://irail.be/stations/NMBS/008824224"], ["http://irail.be/stations/NMBS/008895620", "http://irail.be/stations/NMBS/008895737"], ["http://irail.be/stations/NMBS/008821121", "http://irail.be/stations/NMBS/008821154"], ["http://irail.be/stations/NMBS/008719203", "http://irail.be/stations/NMBS/008772319"], ["http://irail.be/stations/NMBS/008896388", "http://irail.be/stations/NMBS/008896909"], ["http://irail.be/stations/NMBS/008893039", "http://irail.be/stations/NMBS/008893179"], ["http://irail.be/stations/NMBS/008893260", "http://irail.be/stations/NMBS/008893815"], ["http://irail.be/stations/NMBS/008814357", "http://irail.be/stations/NMBS/008814415"], ["http://irail.be/stations/NMBS/008841558", "http://irail.be/stations/NMBS/008841673"], ["http://irail.be/stations/NMBS/008812070", "http://irail.be/stations/NMBS/008812252"], ["http://irail.be/stations/NMBS/008832409", "http://irail.be/stations/NMBS/008832433"], ["http://irail.be/stations/NMBS/008842648", "http://irail.be/stations/NMBS/008842663"], ["http://irail.be/stations/NMBS/008400526", "http://irail.be/stations/NMBS/008821436"], ["http://irail.be/stations/NMBS/008728606", "http://irail.be/stations/NMBS/008728710"], ["http://irail.be/stations/NMBS/008822517", "http://irail.be/stations/NMBS/008822525"], ["http://irail.be/stations/NMBS/008871225", "http://irail.be/stations/NMBS/008871365"], ["http://irail.be/stations/NMBS/008895091", "http://irail.be/stations/NMBS/008895869"], ["http://irail.be/stations/NMBS/008731896", "http://irail.be/stations/NMBS/008731901"], ["http://irail.be/stations/NMBS/008822715", "http://irail.be/stations/NMBS/008822772"], ["http://irail.be/stations/NMBS/008895422", "http://irail.be/stations/NMBS/008895430"], ["http://irail.be/stations/NMBS/008822111", "http://irail.be/stations/NMBS/008822137"], ["http://irail.be/stations/NMBS/008842754", "http://irail.be/stations/NMBS/008844347"], ["http://irail.be/stations/NMBS/008811544", "http://irail.be/stations/NMBS/008811635"], ["http://irail.be/stations/NMBS/008863156", "http://irail.be/stations/NMBS/008864956"], ["http://irail.be/stations/NMBS/008872520", "http://irail.be/stations/NMBS/008872553"], ["http://irail.be/stations/NMBS/008882107", "http://irail.be/stations/NMBS/008883220"], ["http://irail.be/stations/NMBS/008811221", "http://irail.be/stations/NMBS/008811445"], ["http://irail.be/stations/NMBS/008861333", "http://irail.be/stations/NMBS/008872520"], ["http://irail.be/stations/NMBS/008400530", "http://irail.be/stations/NMBS/008400561"], ["http://irail.be/stations/NMBS/008871415", "http://irail.be/stations/NMBS/008882248"], ["http://irail.be/stations/NMBS/008844255", "http://irail.be/stations/NMBS/008844271"], ["http://irail.be/stations/NMBS/008885704", "http://irail.be/stations/NMBS/008889011"], ["http://irail.be/stations/NMBS/008862018", "http://irail.be/stations/NMBS/008866662"], ["http://irail.be/stations/NMBS/008871605", "http://irail.be/stations/NMBS/008871647"], ["http://irail.be/stations/NMBS/008892031", "http://irail.be/stations/NMBS/008892080"], ["http://irail.be/stations/NMBS/008863115", "http://irail.be/stations/NMBS/008863362"], ["http://irail.be/stations/NMBS/008843208", "http://irail.be/stations/NMBS/008843240"], ["http://irail.be/stations/NMBS/008885522", "http://irail.be/stations/NMBS/008886348"], ["http://irail.be/stations/NMBS/008811759", "http://irail.be/stations/NMBS/008811775"], ["http://irail.be/stations/NMBS/008842754", "http://irail.be/stations/NMBS/008845203"], ["http://irail.be/stations/NMBS/008841459", "http://irail.be/stations/NMBS/008841467"], ["http://irail.be/stations/NMBS/008008094", "http://irail.be/stations/NMBS/008015345"], ["http://irail.be/stations/NMBS/008822137", "http://irail.be/stations/NMBS/008822145"], ["http://irail.be/stations/NMBS/008400058", "http://irail.be/stations/NMBS/008400131"], ["http://irail.be/stations/NMBS/008894425", "http://irail.be/stations/NMBS/008894433"], ["http://irail.be/stations/NMBS/008881000", "http://irail.be/stations/NMBS/008881125"], ["http://irail.be/stations/NMBS/008775100", "http://irail.be/stations/NMBS/008777500"], ["http://irail.be/stations/NMBS/008811445", "http://irail.be/stations/NMBS/008814175"], ["http://irail.be/stations/NMBS/008883022", "http://irail.be/stations/NMBS/008883311"], ["http://irail.be/stations/NMBS/008892452", "http://irail.be/stations/NMBS/008896503"], ["http://irail.be/stations/NMBS/008015345", "http://irail.be/stations/NMBS/008844628"], ["http://irail.be/stations/NMBS/008871712", "http://irail.be/stations/NMBS/008882362"], ["http://irail.be/stations/NMBS/008844008", "http://irail.be/stations/NMBS/008844321"], ["http://irail.be/stations/NMBS/008811601", "http://irail.be/stations/NMBS/008811635"], ["http://irail.be/stations/NMBS/008892601", "http://irail.be/stations/NMBS/008892692"], ["http://irail.be/stations/NMBS/008895000", "http://irail.be/stations/NMBS/008895869"], ["http://irail.be/stations/NMBS/008728687", "http://irail.be/stations/NMBS/008889045"], ["http://irail.be/stations/NMBS/008891132", "http://irail.be/stations/NMBS/008892254"], ["http://irail.be/stations/NMBS/008831310", "http://irail.be/stations/NMBS/008841467"], ["http://irail.be/stations/NMBS/008886504", "http://irail.be/stations/NMBS/008886587"], ["http://irail.be/stations/NMBS/008832243", "http://irail.be/stations/NMBS/008832250"], ["http://irail.be/stations/NMBS/008863834", "http://irail.be/stations/NMBS/008863867"], ["http://irail.be/stations/NMBS/008893252", "http://irail.be/stations/NMBS/008893260"], ["http://irail.be/stations/NMBS/008863867", "http://irail.be/stations/NMBS/008865649"], ["http://irail.be/stations/NMBS/008832565", "http://irail.be/stations/NMBS/008832573"], ["http://irail.be/stations/NMBS/008881430", "http://irail.be/stations/NMBS/008883113"], ["http://irail.be/stations/NMBS/008400424", "http://irail.be/stations/NMBS/008849064"], ["http://irail.be/stations/NMBS/008400219", "http://irail.be/stations/NMBS/008844057"], ["http://irail.be/stations/NMBS/008866142", "http://irail.be/stations/NMBS/008866258"], ["http://irail.be/stations/NMBS/008832227", "http://irail.be/stations/NMBS/008832235"], ["http://irail.be/stations/NMBS/008822160", "http://irail.be/stations/NMBS/008894508"], ["http://irail.be/stations/NMBS/008895612", "http://irail.be/stations/NMBS/008895729"], ["http://irail.be/stations/NMBS/008893013", "http://irail.be/stations/NMBS/008893062"], ["http://irail.be/stations/NMBS/008861523", "http://irail.be/stations/NMBS/008872553"], ["http://irail.be/stations/NMBS/008875002", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008728685", "http://irail.be/stations/NMBS/008728686"], ["http://irail.be/stations/NMBS/008892031", "http://irail.be/stations/NMBS/008893211"], ["http://irail.be/stations/NMBS/008831401", "http://irail.be/stations/NMBS/008832409"], ["http://irail.be/stations/NMBS/008883436", "http://irail.be/stations/NMBS/008886546"], ["http://irail.be/stations/NMBS/008892692", "http://irail.be/stations/NMBS/008892908"], ["http://irail.be/stations/NMBS/008721222", "http://irail.be/stations/NMBS/008721405"], ["http://irail.be/stations/NMBS/008871712", "http://irail.be/stations/NMBS/008871811"], ["http://irail.be/stations/NMBS/008881315", "http://irail.be/stations/NMBS/008881406"], ["http://irail.be/stations/NMBS/008728654", "http://irail.be/stations/NMBS/008889011"], ["http://irail.be/stations/NMBS/008884004", "http://irail.be/stations/NMBS/008886058"], ["http://irail.be/stations/NMBS/008893013", "http://irail.be/stations/NMBS/008893179"], ["http://irail.be/stations/NMBS/008861168", "http://irail.be/stations/NMBS/008861333"], ["http://irail.be/stations/NMBS/008863842", "http://irail.be/stations/NMBS/008864816"], ["http://irail.be/stations/NMBS/008885001", "http://irail.be/stations/NMBS/008892734"], ["http://irail.be/stations/NMBS/008891124", "http://irail.be/stations/NMBS/008892254"], ["http://irail.be/stations/NMBS/008865300", "http://irail.be/stations/NMBS/008865540"], ["http://irail.be/stations/NMBS/008812252", "http://irail.be/stations/NMBS/008814332"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008829009"], ["http://irail.be/stations/NMBS/008811510", "http://irail.be/stations/NMBS/008814258"], ["http://irail.be/stations/NMBS/008875127", "http://irail.be/stations/NMBS/008879004"], ["http://irail.be/stations/NMBS/008831401", "http://irail.be/stations/NMBS/008833670"], ["http://irail.be/stations/NMBS/008895448", "http://irail.be/stations/NMBS/008895455"], ["http://irail.be/stations/NMBS/008895851", "http://irail.be/stations/NMBS/008895869"], ["http://irail.be/stations/NMBS/008861200", "http://irail.be/stations/NMBS/008861333"], ["http://irail.be/stations/NMBS/008895455", "http://irail.be/stations/NMBS/008895729"], ["http://irail.be/stations/NMBS/008844008", "http://irail.be/stations/NMBS/008844206"], ["http://irail.be/stations/NMBS/008842853", "http://irail.be/stations/NMBS/008864469"], ["http://irail.be/stations/NMBS/008882230", "http://irail.be/stations/NMBS/008882701"], ["http://irail.be/stations/NMBS/008865110", "http://irail.be/stations/NMBS/008866142"], ["http://irail.be/stations/NMBS/008200520", "http://irail.be/stations/NMBS/008200940"], ["http://irail.be/stations/NMBS/008812062", "http://irail.be/stations/NMBS/008812229"], ["http://irail.be/stations/NMBS/008812161", "http://irail.be/stations/NMBS/008893401"], ["http://irail.be/stations/NMBS/008884335", "http://irail.be/stations/NMBS/008884632"], ["http://irail.be/stations/NMBS/008811288", "http://irail.be/stations/NMBS/008833134"], ["http://irail.be/stations/NMBS/008863503", "http://irail.be/stations/NMBS/008864949"], ["http://irail.be/stations/NMBS/008884541", "http://irail.be/stations/NMBS/008884566"], ["http://irail.be/stations/NMBS/008896370", "http://irail.be/stations/NMBS/008896388"], ["http://irail.be/stations/NMBS/008872306", "http://irail.be/stations/NMBS/008874054"], ["http://irail.be/stations/NMBS/008711184", "http://irail.be/stations/NMBS/008866407"], ["http://irail.be/stations/NMBS/008871373", "http://irail.be/stations/NMBS/008871381"], ["http://irail.be/stations/NMBS/008843307", "http://irail.be/stations/NMBS/008864352"], ["http://irail.be/stations/NMBS/008822004", "http://irail.be/stations/NMBS/008822426"], ["http://irail.be/stations/NMBS/008844206", "http://irail.be/stations/NMBS/008846201"], ["http://irail.be/stations/NMBS/008884889", "http://irail.be/stations/NMBS/008885530"], ["http://irail.be/stations/NMBS/008831765", "http://irail.be/stations/NMBS/008832615"], ["http://irail.be/stations/NMBS/008891264", "http://irail.be/stations/NMBS/008892254"], ["http://irail.be/stations/NMBS/008711184", "http://irail.be/stations/NMBS/008731388"], ["http://irail.be/stations/NMBS/008833258", "http://irail.be/stations/NMBS/008833266"], ["http://irail.be/stations/NMBS/008814258", "http://irail.be/stations/NMBS/008814415"], ["http://irail.be/stations/NMBS/008811163", "http://irail.be/stations/NMBS/008811213"], ["http://irail.be/stations/NMBS/008863156", "http://irail.be/stations/NMBS/008863545"], ["http://irail.be/stations/NMBS/008892320", "http://irail.be/stations/NMBS/008892338"], ["http://irail.be/stations/NMBS/008872066", "http://irail.be/stations/NMBS/008872306"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008821543"], ["http://irail.be/stations/NMBS/008873239", "http://irail.be/stations/NMBS/008875002"], ["http://irail.be/stations/NMBS/008811205", "http://irail.be/stations/NMBS/008811445"], ["http://irail.be/stations/NMBS/008896305", "http://irail.be/stations/NMBS/008896396"], ["http://irail.be/stations/NMBS/008811254", "http://irail.be/stations/NMBS/008811528"], ["http://irail.be/stations/NMBS/008886546", "http://irail.be/stations/NMBS/008895505"], ["http://irail.be/stations/NMBS/008831765", "http://irail.be/stations/NMBS/008832573"], ["http://irail.be/stations/NMBS/008891702", "http://irail.be/stations/NMBS/008892403"], ["http://irail.be/stations/NMBS/008871670", "http://irail.be/stations/NMBS/008871688"], ["http://irail.be/stations/NMBS/008772202", "http://irail.be/stations/NMBS/008776302"], ["http://irail.be/stations/NMBS/008811254", "http://irail.be/stations/NMBS/008833159"], ["http://irail.be/stations/NMBS/008811304", "http://irail.be/stations/NMBS/008813045"], ["http://irail.be/stations/NMBS/008728671", "http://irail.be/stations/NMBS/008728673"], ["http://irail.be/stations/NMBS/008814001", "http://irail.be/stations/NMBS/008814449"], ["http://irail.be/stations/NMBS/008811197", "http://irail.be/stations/NMBS/008811221"], ["http://irail.be/stations/NMBS/008895208", "http://irail.be/stations/NMBS/008895422"], ["http://irail.be/stations/NMBS/008891132", "http://irail.be/stations/NMBS/008893708"], ["http://irail.be/stations/NMBS/008892403", "http://irail.be/stations/NMBS/008896412"], ["http://irail.be/stations/NMBS/008891553", "http://irail.be/stations/NMBS/008891611"], ["http://irail.be/stations/NMBS/008871365", "http://irail.be/stations/NMBS/008871373"], ["http://irail.be/stations/NMBS/008728686", "http://irail.be/stations/NMBS/008728687"], ["http://irail.be/stations/NMBS/008871662", "http://irail.be/stations/NMBS/008879004"], ["http://irail.be/stations/NMBS/008811247", "http://irail.be/stations/NMBS/008811460"], ["http://irail.be/stations/NMBS/008728600", "http://irail.be/stations/NMBS/008896503"], ["http://irail.be/stations/NMBS/008861119", "http://irail.be/stations/NMBS/008861440"], ["http://irail.be/stations/NMBS/008892643", "http://irail.be/stations/NMBS/008893070"], ["http://irail.be/stations/NMBS/008010053", "http://irail.be/stations/NMBS/008015588"], ["http://irail.be/stations/NMBS/008015458", "http://irail.be/stations/NMBS/008844628"], ["http://irail.be/stations/NMBS/008811635", "http://irail.be/stations/NMBS/008811676"], ["http://irail.be/stations/NMBS/008864352", "http://irail.be/stations/NMBS/008864436"], ["http://irail.be/stations/NMBS/008863545", "http://irail.be/stations/NMBS/008864949"], ["http://irail.be/stations/NMBS/008812260", "http://irail.be/stations/NMBS/008895836"], ["http://irail.be/stations/NMBS/008811189", "http://irail.be/stations/NMBS/008822053"], ["http://irail.be/stations/NMBS/008865540", "http://irail.be/stations/NMBS/008865565"], ["http://irail.be/stations/NMBS/008811734", "http://irail.be/stations/NMBS/008811742"], ["http://irail.be/stations/NMBS/008822111", "http://irail.be/stations/NMBS/008822715"], ["http://irail.be/stations/NMBS/008811775", "http://irail.be/stations/NMBS/008833159"], ["http://irail.be/stations/NMBS/008892007", "http://irail.be/stations/NMBS/008893120"], ["http://irail.be/stations/NMBS/008871670", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008400219", "http://irail.be/stations/NMBS/008849064"], ["http://irail.be/stations/NMBS/008891173", "http://irail.be/stations/NMBS/008891652"], ["http://irail.be/stations/NMBS/008811437", "http://irail.be/stations/NMBS/008811445"], ["http://irail.be/stations/NMBS/008775500", "http://irail.be/stations/NMBS/008775752"], ["http://irail.be/stations/NMBS/008200510", "http://irail.be/stations/NMBS/008210014"], ["http://irail.be/stations/NMBS/008719100", "http://irail.be/stations/NMBS/008719203"], ["http://irail.be/stations/NMBS/008883006", "http://irail.be/stations/NMBS/008883022"], ["http://irail.be/stations/NMBS/008842002", "http://irail.be/stations/NMBS/008843133"], ["http://irail.be/stations/NMBS/008812021", "http://irail.be/stations/NMBS/008815016"], ["http://irail.be/stations/NMBS/008864337", "http://irail.be/stations/NMBS/008864345"], ["http://irail.be/stations/NMBS/008894235", "http://irail.be/stations/NMBS/008894433"], ["http://irail.be/stations/NMBS/008896008", "http://irail.be/stations/NMBS/008896925"], ["http://irail.be/stations/NMBS/008811205", "http://irail.be/stations/NMBS/008811411"], ["http://irail.be/stations/NMBS/008873312", "http://irail.be/stations/NMBS/008873387"], ["http://irail.be/stations/NMBS/008811254", "http://irail.be/stations/NMBS/008811262"], ["http://irail.be/stations/NMBS/008841327", "http://irail.be/stations/NMBS/008841467"], ["http://irail.be/stations/NMBS/008822137", "http://irail.be/stations/NMBS/008822772"], ["http://irail.be/stations/NMBS/008871829", "http://irail.be/stations/NMBS/008873379"], ["http://irail.be/stations/NMBS/008811304", "http://irail.be/stations/NMBS/008811403"], ["http://irail.be/stations/NMBS/008775544", "http://irail.be/stations/NMBS/008775762"], ["http://irail.be/stations/NMBS/008200940", "http://irail.be/stations/NMBS/008869088"], ["http://irail.be/stations/NMBS/008865649", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008811007", "http://irail.be/stations/NMBS/008811106"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008821071"], ["http://irail.be/stations/NMBS/008811536", "http://irail.be/stations/NMBS/008811718"], ["http://irail.be/stations/NMBS/008893559", "http://irail.be/stations/NMBS/008895448"], ["http://irail.be/stations/NMBS/008822426", "http://irail.be/stations/NMBS/008822459"], ["http://irail.be/stations/NMBS/008821907", "http://irail.be/stations/NMBS/008832433"], ["http://irail.be/stations/NMBS/008812245", "http://irail.be/stations/NMBS/008814357"], ["http://irail.be/stations/NMBS/008812252", "http://irail.be/stations/NMBS/008895778"], ["http://irail.be/stations/NMBS/008841608", "http://irail.be/stations/NMBS/008843901"], ["http://irail.be/stations/NMBS/008832573", "http://irail.be/stations/NMBS/008832615"], ["http://irail.be/stations/NMBS/008863438", "http://irail.be/stations/NMBS/008864923"], ["http://irail.be/stations/NMBS/008866605", "http://irail.be/stations/NMBS/008869047"], ["http://irail.be/stations/NMBS/008864949", "http://irail.be/stations/NMBS/008864956"], ["http://irail.be/stations/NMBS/008778110", "http://irail.be/stations/NMBS/008778127"], ["http://irail.be/stations/NMBS/008895760", "http://irail.be/stations/NMBS/008895877"], ["http://irail.be/stations/NMBS/008831039", "http://irail.be/stations/NMBS/008831807"], ["http://irail.be/stations/NMBS/008844545", "http://irail.be/stations/NMBS/008844628"], ["http://irail.be/stations/NMBS/008833050", "http://irail.be/stations/NMBS/008833209"], ["http://irail.be/stations/NMBS/008814308", "http://irail.be/stations/NMBS/008814332"], ["http://irail.be/stations/NMBS/008871514", "http://irail.be/stations/NMBS/008871837"], ["http://irail.be/stations/NMBS/008811262", "http://irail.be/stations/NMBS/008833134"], ["http://irail.be/stations/NMBS/008863545", "http://irail.be/stations/NMBS/008863560"], ["http://irail.be/stations/NMBS/008775762", "http://irail.be/stations/NMBS/008775767"], ["http://irail.be/stations/NMBS/008895638", "http://irail.be/stations/NMBS/008895646"], ["http://irail.be/stations/NMBS/008719203", "http://irail.be/stations/NMBS/008721222"], ["http://irail.be/stations/NMBS/008864311", "http://irail.be/stations/NMBS/008864337"], ["http://irail.be/stations/NMBS/008822228", "http://irail.be/stations/NMBS/008822459"], ["http://irail.be/stations/NMBS/008841558", "http://irail.be/stations/NMBS/008843174"], ["http://irail.be/stations/NMBS/008811601", "http://irail.be/stations/NMBS/008811817"], ["http://irail.be/stations/NMBS/008871670", "http://irail.be/stations/NMBS/008882362"], ["http://irail.be/stations/NMBS/008811254", "http://irail.be/stations/NMBS/008822459"], ["http://irail.be/stations/NMBS/008891140", "http://irail.be/stations/NMBS/008891157"], ["http://irail.be/stations/NMBS/008874559", "http://irail.be/stations/NMBS/008874583"], ["http://irail.be/stations/NMBS/008872413", "http://irail.be/stations/NMBS/008874583"], ["http://irail.be/stations/NMBS/008893211", "http://irail.be/stations/NMBS/008894151"], ["http://irail.be/stations/NMBS/008833449", "http://irail.be/stations/NMBS/008863461"], ["http://irail.be/stations/NMBS/008833605", "http://irail.be/stations/NMBS/008863404"], ["http://irail.be/stations/NMBS/008812120", "http://irail.be/stations/NMBS/008822137"], ["http://irail.be/stations/NMBS/008891165", "http://irail.be/stations/NMBS/008892056"], ["http://irail.be/stations/NMBS/008895430", "http://irail.be/stations/NMBS/008895711"], ["http://irail.be/stations/NMBS/008871217", "http://irail.be/stations/NMBS/008871514"], ["http://irail.be/stations/NMBS/008893179", "http://irail.be/stations/NMBS/008894151"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821519"], ["http://irail.be/stations/NMBS/008844230", "http://irail.be/stations/NMBS/008846201"], ["http://irail.be/stations/NMBS/008893518", "http://irail.be/stations/NMBS/008895125"], ["http://irail.be/stations/NMBS/008885001", "http://irail.be/stations/NMBS/008896230"], ["http://irail.be/stations/NMBS/008722326", "http://irail.be/stations/NMBS/008728606"], ["http://irail.be/stations/NMBS/008884319", "http://irail.be/stations/NMBS/008884327"], ["http://irail.be/stations/NMBS/008843307", "http://irail.be/stations/NMBS/008843430"], ["http://irail.be/stations/NMBS/008844420", "http://irail.be/stations/NMBS/008845229"], ["http://irail.be/stations/NMBS/008833001", "http://irail.be/stations/NMBS/008833233"], ["http://irail.be/stations/NMBS/008884640", "http://irail.be/stations/NMBS/008884715"], ["http://irail.be/stations/NMBS/008811916", "http://irail.be/stations/NMBS/008812005"], ["http://irail.be/stations/NMBS/008400058", "http://irail.be/stations/NMBS/008400180"], ["http://irail.be/stations/NMBS/008821436", "http://irail.be/stations/NMBS/008821444"], ["http://irail.be/stations/NMBS/008821022", "http://irail.be/stations/NMBS/008821121"], ["http://irail.be/stations/NMBS/008842853", "http://irail.be/stations/NMBS/008843349"], ["http://irail.be/stations/NMBS/008884715", "http://irail.be/stations/NMBS/008884855"], ["http://irail.be/stations/NMBS/008881125", "http://irail.be/stations/NMBS/008884566"], ["http://irail.be/stations/NMBS/008812146", "http://irail.be/stations/NMBS/008822145"], ["http://irail.be/stations/NMBS/008842655", "http://irail.be/stations/NMBS/008843174"], ["http://irail.be/stations/NMBS/008861333", "http://irail.be/stations/NMBS/008861424"], ["http://irail.be/stations/NMBS/008893526", "http://irail.be/stations/NMBS/008895067"], ["http://irail.be/stations/NMBS/008841327", "http://irail.be/stations/NMBS/008843240"], ["http://irail.be/stations/NMBS/008892205", "http://irail.be/stations/NMBS/008896800"], ["http://irail.be/stations/NMBS/008866662", "http://irail.be/stations/NMBS/008869054"], ["http://irail.be/stations/NMBS/008831005", "http://irail.be/stations/NMBS/008831088"], ["http://irail.be/stations/NMBS/008831112", "http://irail.be/stations/NMBS/008831310"], ["http://irail.be/stations/NMBS/008893054", "http://irail.be/stations/NMBS/008893062"], ["http://irail.be/stations/NMBS/008400131", "http://irail.be/stations/NMBS/008821105"], ["http://irail.be/stations/NMBS/008893708", "http://irail.be/stations/NMBS/008893815"], ["http://irail.be/stations/NMBS/008821006", "http://irail.be/stations/NMBS/008821063"], ["http://irail.be/stations/NMBS/008871381", "http://irail.be/stations/NMBS/008882230"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821444"], ["http://irail.be/stations/NMBS/008833274", "http://irail.be/stations/NMBS/008833308"], ["http://irail.be/stations/NMBS/008821725", "http://irail.be/stations/NMBS/008821857"], ["http://irail.be/stations/NMBS/008893567", "http://irail.be/stations/NMBS/008895240"], ["http://irail.be/stations/NMBS/008822608", "http://irail.be/stations/NMBS/008822848"], ["http://irail.be/stations/NMBS/008883436", "http://irail.be/stations/NMBS/008895638"], ["http://irail.be/stations/NMBS/008718206", "http://irail.be/stations/NMBS/008774179"], ["http://irail.be/stations/NMBS/008821121", "http://irail.be/stations/NMBS/008821196"], ["http://irail.be/stations/NMBS/008772319", "http://irail.be/stations/NMBS/008776290"], ["http://irail.be/stations/NMBS/008845146", "http://irail.be/stations/NMBS/008845229"], ["http://irail.be/stations/NMBS/008893260", "http://irail.be/stations/NMBS/008894151"], ["http://irail.be/stations/NMBS/008891652", "http://irail.be/stations/NMBS/008891660"], ["http://irail.be/stations/NMBS/008812070", "http://irail.be/stations/NMBS/008812245"], ["http://irail.be/stations/NMBS/008842648", "http://irail.be/stations/NMBS/008842689"], ["http://irail.be/stations/NMBS/008821436", "http://irail.be/stations/NMBS/008821519"], ["http://irail.be/stations/NMBS/008833126", "http://irail.be/stations/NMBS/008833134"], ["http://irail.be/stations/NMBS/008400526", "http://irail.be/stations/NMBS/008821402"], ["http://irail.be/stations/NMBS/008824158", "http://irail.be/stations/NMBS/008894755"], ["http://irail.be/stations/NMBS/008731388", "http://irail.be/stations/NMBS/008896735"], ["http://irail.be/stations/NMBS/008892080", "http://irail.be/stations/NMBS/008892643"], ["http://irail.be/stations/NMBS/008895091", "http://irail.be/stations/NMBS/008895851"], ["http://irail.be/stations/NMBS/008731388", "http://irail.be/stations/NMBS/008884335"], ["http://irail.be/stations/NMBS/008844347", "http://irail.be/stations/NMBS/008844420"], ["http://irail.be/stations/NMBS/008811759", "http://irail.be/stations/NMBS/008833050"], ["http://irail.be/stations/NMBS/008814365", "http://irail.be/stations/NMBS/008814423"], ["http://irail.be/stations/NMBS/008813003", "http://irail.be/stations/NMBS/008813045"], ["http://irail.be/stations/NMBS/008811254", "http://irail.be/stations/NMBS/008819406"], ["http://irail.be/stations/NMBS/008841400", "http://irail.be/stations/NMBS/008843430"], ["http://irail.be/stations/NMBS/008842754", "http://irail.be/stations/NMBS/008844339"], ["http://irail.be/stations/NMBS/008814332", "http://irail.be/stations/NMBS/008883311"], ["http://irail.be/stations/NMBS/008863156", "http://irail.be/stations/NMBS/008864964"], ["http://irail.be/stations/NMBS/008811270", "http://irail.be/stations/NMBS/008822533"], ["http://irail.be/stations/NMBS/007015400", "http://irail.be/stations/NMBS/008778110"], ["http://irail.be/stations/NMBS/008821071", "http://irail.be/stations/NMBS/008821634"], ["http://irail.be/stations/NMBS/008882107", "http://irail.be/stations/NMBS/008883238"], ["http://irail.be/stations/NMBS/008500010", "http://irail.be/stations/NMBS/008775605"], ["http://irail.be/stations/NMBS/008883022", "http://irail.be/stations/NMBS/008883220"], ["http://irail.be/stations/NMBS/008822772", "http://irail.be/stations/NMBS/008824224"], ["http://irail.be/stations/NMBS/008821196", "http://irail.be/stations/NMBS/008821238"], ["http://irail.be/stations/NMBS/008843208", "http://irail.be/stations/NMBS/008843224"], ["http://irail.be/stations/NMBS/008008094", "http://irail.be/stations/NMBS/008015458"], ["http://irail.be/stations/NMBS/008010316", "http://irail.be/stations/NMBS/008039904"], ["http://irail.be/stations/NMBS/008811247", "http://irail.be/stations/NMBS/008819406"], ["http://irail.be/stations/NMBS/008871217", "http://irail.be/stations/NMBS/008872066"], ["http://irail.be/stations/NMBS/008895802", "http://irail.be/stations/NMBS/008895851"], ["http://irail.be/stations/NMBS/008843430", "http://irail.be/stations/NMBS/008864832"], ["http://irail.be/stations/NMBS/008894714", "http://irail.be/stations/NMBS/008894748"], ["http://irail.be/stations/NMBS/008882206", "http://irail.be/stations/NMBS/008882230"], ["http://irail.be/stations/NMBS/008871852", "http://irail.be/stations/NMBS/008872009"], ["http://irail.be/stations/NMBS/008871332", "http://irail.be/stations/NMBS/008871373"], ["http://irail.be/stations/NMBS/008875127", "http://irail.be/stations/NMBS/008881505"], ["http://irail.be/stations/NMBS/008821147", "http://irail.be/stations/NMBS/008821246"], ["http://irail.be/stations/NMBS/008731896", "http://irail.be/stations/NMBS/008776302"], ["http://irail.be/stations/NMBS/008831401", "http://irail.be/stations/NMBS/008832433"], ["http://irail.be/stations/NMBS/008865615", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008892635", "http://irail.be/stations/NMBS/008892643"], ["http://irail.be/stations/NMBS/008015345", "http://irail.be/stations/NMBS/008844644"], ["http://irail.be/stations/NMBS/008200518", "http://irail.be/stations/NMBS/008200520"], ["http://irail.be/stations/NMBS/008873007", "http://irail.be/stations/NMBS/008873239"], ["http://irail.be/stations/NMBS/008885522", "http://irail.be/stations/NMBS/008885530"], ["http://irail.be/stations/NMBS/008774100", "http://irail.be/stations/NMBS/008774172"], ["http://irail.be/stations/NMBS/008881406", "http://irail.be/stations/NMBS/008883121"], ["http://irail.be/stations/NMBS/008200510", "http://irail.be/stations/NMBS/008719100"], ["http://irail.be/stations/NMBS/008831005", "http://irail.be/stations/NMBS/008832375"], ["http://irail.be/stations/NMBS/008811726", "http://irail.be/stations/NMBS/008811734"], ["http://irail.be/stations/NMBS/008872553", "http://irail.be/stations/NMBS/008872579"], ["http://irail.be/stations/NMBS/008893047", "http://irail.be/stations/NMBS/008893054"], ["http://irail.be/stations/NMBS/008200128", "http://irail.be/stations/NMBS/008200130"], ["http://irail.be/stations/NMBS/008841434", "http://irail.be/stations/NMBS/008841442"], ["http://irail.be/stations/NMBS/008886504", "http://irail.be/stations/NMBS/008886561"], ["http://irail.be/stations/NMBS/008811007", "http://irail.be/stations/NMBS/008812005"], ["http://irail.be/stations/NMBS/008032572", "http://irail.be/stations/NMBS/008721222"], ["http://irail.be/stations/NMBS/008831401", "http://irail.be/stations/NMBS/008832227"], ["http://irail.be/stations/NMBS/008881430", "http://irail.be/stations/NMBS/008883121"], ["http://irail.be/stations/NMBS/008871308", "http://irail.be/stations/NMBS/008871332"], ["http://irail.be/stations/NMBS/008893120", "http://irail.be/stations/NMBS/008893179"], ["http://irail.be/stations/NMBS/008200136", "http://irail.be/stations/NMBS/008844628"], ["http://irail.be/stations/NMBS/008015345", "http://irail.be/stations/NMBS/008849023"], ["http://irail.be/stations/NMBS/008833308", "http://irail.be/stations/NMBS/008833449"], ["http://irail.be/stations/NMBS/008400219", "http://irail.be/stations/NMBS/008844008"], ["http://irail.be/stations/NMBS/008881190", "http://irail.be/stations/NMBS/008886074"], ["http://irail.be/stations/NMBS/008866142", "http://irail.be/stations/NMBS/008866175"], ["http://irail.be/stations/NMBS/008864915", "http://irail.be/stations/NMBS/008864931"], ["http://irail.be/stations/NMBS/008895612", "http://irail.be/stations/NMBS/008895737"], ["http://irail.be/stations/NMBS/008892254", "http://irail.be/stations/NMBS/008896149"], ["http://irail.be/stations/NMBS/008728654", "http://irail.be/stations/NMBS/008728673"], ["http://irail.be/stations/NMBS/008881125", "http://irail.be/stations/NMBS/008881315"], ["http://irail.be/stations/NMBS/008892254", "http://irail.be/stations/NMBS/008892288"], ["http://irail.be/stations/NMBS/008833134", "http://irail.be/stations/NMBS/008833159"], ["http://irail.be/stations/NMBS/008015345", "http://irail.be/stations/NMBS/008039904"], ["http://irail.be/stations/NMBS/008879004", "http://irail.be/stations/NMBS/008881455"], ["http://irail.be/stations/NMBS/008892031", "http://irail.be/stations/NMBS/008893252"], ["http://irail.be/stations/NMBS/008821238", "http://irail.be/stations/NMBS/008822814"], ["http://irail.be/stations/NMBS/008881455", "http://irail.be/stations/NMBS/008883113"], ["http://irail.be/stations/NMBS/008844057", "http://irail.be/stations/NMBS/008844420"], ["http://irail.be/stations/NMBS/008873122", "http://irail.be/stations/NMBS/008873239"], ["http://irail.be/stations/NMBS/008871712", "http://irail.be/stations/NMBS/008871829"], ["http://irail.be/stations/NMBS/008400424", "http://irail.be/stations/NMBS/008831138"], ["http://irail.be/stations/NMBS/008812013", "http://irail.be/stations/NMBS/008815040"], ["http://irail.be/stations/NMBS/008842689", "http://irail.be/stations/NMBS/008842838"], ["http://irail.be/stations/NMBS/008811437", "http://irail.be/stations/NMBS/008814456"], ["http://irail.be/stations/NMBS/008863842", "http://irail.be/stations/NMBS/008864501"], ["http://irail.be/stations/NMBS/008728687", "http://irail.be/stations/NMBS/008885068"], ["http://irail.be/stations/NMBS/008833605", "http://irail.be/stations/NMBS/008841400"], ["http://irail.be/stations/NMBS/008883121", "http://irail.be/stations/NMBS/008883436"], ["http://irail.be/stations/NMBS/008822004", "http://irail.be/stations/NMBS/008822277"], ["http://irail.be/stations/NMBS/008728600", "http://irail.be/stations/NMBS/008731388"], ["http://irail.be/stations/NMBS/008891611", "http://irail.be/stations/NMBS/008891645"], ["http://irail.be/stations/NMBS/008873122", "http://irail.be/stations/NMBS/008874583"], ["http://irail.be/stations/NMBS/008861200", "http://irail.be/stations/NMBS/008861416"], ["http://irail.be/stations/NMBS/008821535", "http://irail.be/stations/NMBS/008821543"], ["http://irail.be/stations/NMBS/008844008", "http://irail.be/stations/NMBS/008844057"], ["http://irail.be/stations/NMBS/008885068", "http://irail.be/stations/NMBS/008889045"], ["http://irail.be/stations/NMBS/008865110", "http://irail.be/stations/NMBS/008866118"], ["http://irail.be/stations/NMBS/008812062", "http://irail.be/stations/NMBS/008812237"], ["http://irail.be/stations/NMBS/008812120", "http://irail.be/stations/NMBS/008812146"], ["http://irail.be/stations/NMBS/008844404", "http://irail.be/stations/NMBS/008844420"], ["http://irail.be/stations/NMBS/008884335", "http://irail.be/stations/NMBS/008884640"], ["http://irail.be/stations/NMBS/008811288", "http://irail.be/stations/NMBS/008833126"], ["http://irail.be/stations/NMBS/008821659", "http://irail.be/stations/NMBS/008821667"], ["http://irail.be/stations/NMBS/008864006", "http://irail.be/stations/NMBS/008864337"], ["http://irail.be/stations/NMBS/008883212", "http://irail.be/stations/NMBS/008883220"], ["http://irail.be/stations/NMBS/008843141", "http://irail.be/stations/NMBS/008843158"], ["http://irail.be/stations/NMBS/008895125", "http://irail.be/stations/NMBS/008895877"], ["http://irail.be/stations/NMBS/008822004", "http://irail.be/stations/NMBS/008822343"], ["http://irail.be/stations/NMBS/008845146", "http://irail.be/stations/NMBS/008865128"], ["http://irail.be/stations/NMBS/008200130", "http://irail.be/stations/NMBS/008865128"], ["http://irail.be/stations/NMBS/008814126", "http://irail.be/stations/NMBS/008814365"], ["http://irail.be/stations/NMBS/008842051", "http://irail.be/stations/NMBS/008842630"], ["http://irail.be/stations/NMBS/008814456", "http://irail.be/stations/NMBS/008814464"], ["http://irail.be/stations/NMBS/008831765", "http://irail.be/stations/NMBS/008832664"], ["http://irail.be/stations/NMBS/008891264", "http://irail.be/stations/NMBS/008892205"], ["http://irail.be/stations/NMBS/008884004", "http://irail.be/stations/NMBS/008884319"], ["http://irail.be/stations/NMBS/008841459", "http://irail.be/stations/NMBS/008843240"], ["http://irail.be/stations/NMBS/008861440", "http://irail.be/stations/NMBS/008863461"], ["http://irail.be/stations/NMBS/008882248", "http://irail.be/stations/NMBS/008882339"], ["http://irail.be/stations/NMBS/008200520", "http://irail.be/stations/NMBS/008866001"], ["http://irail.be/stations/NMBS/008895646", "http://irail.be/stations/NMBS/008895760"], ["http://irail.be/stations/NMBS/008892254", "http://irail.be/stations/NMBS/008896925"], ["http://irail.be/stations/NMBS/008894201", "http://irail.be/stations/NMBS/008894425"], ["http://irail.be/stations/NMBS/008814258", "http://irail.be/stations/NMBS/008814423"], ["http://irail.be/stations/NMBS/008811106", "http://irail.be/stations/NMBS/008811197"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008821436"], ["http://irail.be/stations/NMBS/008894508", "http://irail.be/stations/NMBS/008894714"], ["http://irail.be/stations/NMBS/008873239", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008892056", "http://irail.be/stations/NMBS/008893815"], ["http://irail.be/stations/NMBS/008861143", "http://irail.be/stations/NMBS/008861432"], ["http://irail.be/stations/NMBS/008881455", "http://irail.be/stations/NMBS/008881463"], ["http://irail.be/stations/NMBS/008863503", "http://irail.be/stations/NMBS/008863545"], ["http://irail.be/stations/NMBS/008886546", "http://irail.be/stations/NMBS/008895570"], ["http://irail.be/stations/NMBS/008871605", "http://irail.be/stations/NMBS/008881455"], ["http://irail.be/stations/NMBS/008881158", "http://irail.be/stations/NMBS/008884541"], ["http://irail.be/stations/NMBS/008896412", "http://irail.be/stations/NMBS/008896503"], ["http://irail.be/stations/NMBS/008400219", "http://irail.be/stations/NMBS/008844503"], ["http://irail.be/stations/NMBS/008831765", "http://irail.be/stations/NMBS/008832250"], ["http://irail.be/stations/NMBS/008200102", "http://irail.be/stations/NMBS/008200510"], ["http://irail.be/stations/NMBS/008864501", "http://irail.be/stations/NMBS/008864824"], ["http://irail.be/stations/NMBS/008775500", "http://irail.be/stations/NMBS/008778400"], ["http://irail.be/stations/NMBS/008891702", "http://irail.be/stations/NMBS/008892452"], ["http://irail.be/stations/NMBS/008843166", "http://irail.be/stations/NMBS/008843224"], ["http://irail.be/stations/NMBS/008772202", "http://irail.be/stations/NMBS/008776290"], ["http://irail.be/stations/NMBS/008811288", "http://irail.be/stations/NMBS/008833001"], ["http://irail.be/stations/NMBS/008883311", "http://irail.be/stations/NMBS/008895646"], ["http://irail.be/stations/NMBS/008010053", "http://irail.be/stations/NMBS/008010184"], ["http://irail.be/stations/NMBS/008864006", "http://irail.be/stations/NMBS/008864352"], ["http://irail.be/stations/NMBS/008821824", "http://irail.be/stations/NMBS/008822525"], ["http://irail.be/stations/NMBS/008812112", "http://irail.be/stations/NMBS/008812120"], ["http://irail.be/stations/NMBS/008866001", "http://irail.be/stations/NMBS/008869054"], ["http://irail.be/stations/NMBS/008811403", "http://irail.be/stations/NMBS/008814464"], ["http://irail.be/stations/NMBS/008873239", "http://irail.be/stations/NMBS/008874005"], ["http://irail.be/stations/NMBS/008863362", "http://irail.be/stations/NMBS/008864964"], ["http://irail.be/stations/NMBS/008861150", "http://irail.be/stations/NMBS/008861424"], ["http://irail.be/stations/NMBS/008200110", "http://irail.be/stations/NMBS/008200510"], ["http://irail.be/stations/NMBS/008865615", "http://irail.be/stations/NMBS/008865649"], ["http://irail.be/stations/NMBS/008811817", "http://irail.be/stations/NMBS/008811825"], ["http://irail.be/stations/NMBS/008892403", "http://irail.be/stations/NMBS/008896503"], ["http://irail.be/stations/NMBS/008811189", "http://irail.be/stations/NMBS/008819406"], ["http://irail.be/stations/NMBS/008871662", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008892007", "http://irail.be/stations/NMBS/008893062"], ["http://irail.be/stations/NMBS/008728600", "http://irail.be/stations/NMBS/008896735"], ["http://irail.be/stations/NMBS/008874583", "http://irail.be/stations/NMBS/008874609"], ["http://irail.be/stations/NMBS/008812013", "http://irail.be/stations/NMBS/008813037"], ["http://irail.be/stations/NMBS/008831039", "http://irail.be/stations/NMBS/008841400"], ["http://irail.be/stations/NMBS/008015588", "http://irail.be/stations/NMBS/008200134"], ["http://irail.be/stations/NMBS/008811635", "http://irail.be/stations/NMBS/008811718"], ["http://irail.be/stations/NMBS/008864352", "http://irail.be/stations/NMBS/008864410"], ["http://irail.be/stations/NMBS/008864436", "http://irail.be/stations/NMBS/008865128"], ["http://irail.be/stations/NMBS/008811197", "http://irail.be/stations/NMBS/008811411"], ["http://irail.be/stations/NMBS/008873312", "http://irail.be/stations/NMBS/008873320"], ["http://irail.be/stations/NMBS/008821238", "http://irail.be/stations/NMBS/008821246"], ["http://irail.be/stations/NMBS/008893542", "http://irail.be/stations/NMBS/008893583"], ["http://irail.be/stations/NMBS/008861150", "http://irail.be/stations/NMBS/008861168"], ["http://irail.be/stations/NMBS/008400424", "http://irail.be/stations/NMBS/008832664"], ["http://irail.be/stations/NMBS/008822111", "http://irail.be/stations/NMBS/008822848"], ["http://irail.be/stations/NMBS/008822814", "http://irail.be/stations/NMBS/008824232"], ["http://irail.be/stations/NMBS/008865003", "http://irail.be/stations/NMBS/008865110"], ["http://irail.be/stations/NMBS/008896396", "http://irail.be/stations/NMBS/008896800"], ["http://irail.be/stations/NMBS/008727100", "http://irail.be/stations/NMBS/008731388"], ["http://irail.be/stations/NMBS/008866530", "http://irail.be/stations/NMBS/008869088"], ["http://irail.be/stations/NMBS/008892643", "http://irail.be/stations/NMBS/008892692"], ["http://irail.be/stations/NMBS/008015588", "http://irail.be/stations/NMBS/008200120"], ["http://irail.be/stations/NMBS/008871415", "http://irail.be/stations/NMBS/008871712"], ["http://irail.be/stations/NMBS/008895745", "http://irail.be/stations/NMBS/008895752"], ["http://irail.be/stations/NMBS/008894433", "http://irail.be/stations/NMBS/008894508"], ["http://irail.be/stations/NMBS/008864824", "http://irail.be/stations/NMBS/008864832"], ["http://irail.be/stations/NMBS/008872587", "http://irail.be/stations/NMBS/008872611"], ["http://irail.be/stations/NMBS/008893526", "http://irail.be/stations/NMBS/008893534"], ["http://irail.be/stations/NMBS/008811205", "http://irail.be/stations/NMBS/008811429"], ["http://irail.be/stations/NMBS/008400526", "http://irail.be/stations/NMBS/008400530"], ["http://irail.be/stations/NMBS/008775544", "http://irail.be/stations/NMBS/008775752"], ["http://irail.be/stations/NMBS/008812005", "http://irail.be/stations/NMBS/008815016"], ["http://irail.be/stations/NMBS/008812013", "http://irail.be/stations/NMBS/008814001"], ["http://irail.be/stations/NMBS/007015400", "http://irail.be/stations/NMBS/008400058"], ["http://irail.be/stations/NMBS/008895463", "http://irail.be/stations/NMBS/008895471"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008821063"], ["http://irail.be/stations/NMBS/008842846", "http://irail.be/stations/NMBS/008842853"], ["http://irail.be/stations/NMBS/008893559", "http://irail.be/stations/NMBS/008895430"], ["http://irail.be/stations/NMBS/008774172", "http://irail.be/stations/NMBS/008775544"], ["http://irail.be/stations/NMBS/008812245", "http://irail.be/stations/NMBS/008814308"], ["http://irail.be/stations/NMBS/008893070", "http://irail.be/stations/NMBS/008895232"], ["http://irail.be/stations/NMBS/008832003", "http://irail.be/stations/NMBS/008832227"], ["http://irail.be/stations/NMBS/008824224", "http://irail.be/stations/NMBS/008894755"], ["http://irail.be/stations/NMBS/008200134", "http://irail.be/stations/NMBS/008200136"], ["http://irail.be/stations/NMBS/008863404", "http://irail.be/stations/NMBS/008864923"], ["http://irail.be/stations/NMBS/008778110", "http://irail.be/stations/NMBS/008778400"], ["http://irail.be/stations/NMBS/008727149", "http://irail.be/stations/NMBS/008731388"], ["http://irail.be/stations/NMBS/008861119", "http://irail.be/stations/NMBS/008863362"], ["http://irail.be/stations/NMBS/008842630", "http://irail.be/stations/NMBS/008842655"], ["http://irail.be/stations/NMBS/008814308", "http://irail.be/stations/NMBS/008814340"], ["http://irail.be/stations/NMBS/008842838", "http://irail.be/stations/NMBS/008864469"], ["http://irail.be/stations/NMBS/008833209", "http://irail.be/stations/NMBS/008833233"], ["http://irail.be/stations/NMBS/008821667", "http://irail.be/stations/NMBS/008821816"], ["http://irail.be/stations/NMBS/008811759", "http://irail.be/stations/NMBS/008833126"], ["http://irail.be/stations/NMBS/008884350", "http://irail.be/stations/NMBS/008884632"], ["http://irail.be/stations/NMBS/008728673", "http://irail.be/stations/NMBS/008885753"], ["http://irail.be/stations/NMBS/008844420", "http://irail.be/stations/NMBS/008844545"], ["http://irail.be/stations/NMBS/008833001", "http://irail.be/stations/NMBS/008833175"], ["http://irail.be/stations/NMBS/008884640", "http://irail.be/stations/NMBS/008886041"], ["http://irail.be/stations/NMBS/008811254", "http://irail.be/stations/NMBS/008822475"], ["http://irail.be/stations/NMBS/008727100", "http://irail.be/stations/NMBS/008778100"], ["http://irail.be/stations/NMBS/008400280", "http://irail.be/stations/NMBS/008400526"], ["http://irail.be/stations/NMBS/008200120", "http://irail.be/stations/NMBS/008200520"], ["http://irail.be/stations/NMBS/008874559", "http://irail.be/stations/NMBS/008874567"], ["http://irail.be/stations/NMBS/008400526", "http://irail.be/stations/NMBS/008894714"], ["http://irail.be/stations/NMBS/008886587", "http://irail.be/stations/NMBS/008895570"], ["http://irail.be/stations/NMBS/008842630", "http://irail.be/stations/NMBS/008843174"], ["http://irail.be/stations/NMBS/008895430", "http://irail.be/stations/NMBS/008895729"], ["http://irail.be/stations/NMBS/008811825", "http://irail.be/stations/NMBS/008872611"], ["http://irail.be/stations/NMBS/008200130", "http://irail.be/stations/NMBS/008200134"], ["http://irail.be/stations/NMBS/008871647", "http://irail.be/stations/NMBS/008882362"], ["http://irail.be/stations/NMBS/008871183", "http://irail.be/stations/NMBS/008873379"], ["http://irail.be/stations/NMBS/008811437", "http://irail.be/stations/NMBS/008814167"], ["http://irail.be/stations/NMBS/008718201", "http://irail.be/stations/NMBS/008718213"], ["http://irail.be/stations/NMBS/008865110", "http://irail.be/stations/NMBS/008865128"], ["http://irail.be/stations/NMBS/008861143", "http://irail.be/stations/NMBS/008874609"], ["http://irail.be/stations/NMBS/008831401", "http://irail.be/stations/NMBS/008831807"], ["http://irail.be/stations/NMBS/008891157", "http://irail.be/stations/NMBS/008892106"], ["http://irail.be/stations/NMBS/008200516", "http://irail.be/stations/NMBS/008210014"], ["http://irail.be/stations/NMBS/008821709", "http://irail.be/stations/NMBS/008821865"], ["http://irail.be/stations/NMBS/008821725", "http://irail.be/stations/NMBS/008821824"], ["http://irail.be/stations/NMBS/008871308", "http://irail.be/stations/NMBS/008872579"], ["http://irail.be/stations/NMBS/008727100", "http://irail.be/stations/NMBS/008727149"], ["http://irail.be/stations/NMBS/008892205", "http://irail.be/stations/NMBS/008896909"], ["http://irail.be/stations/NMBS/008864832", "http://irail.be/stations/NMBS/008864915"], ["http://irail.be/stations/NMBS/008842754", "http://irail.be/stations/NMBS/008844271"], ["http://irail.be/stations/NMBS/008843067", "http://irail.be/stations/NMBS/008843174"], ["http://irail.be/stations/NMBS/008831005", "http://irail.be/stations/NMBS/008831039"], ["http://irail.be/stations/NMBS/008871183", "http://irail.be/stations/NMBS/008873387"], ["http://irail.be/stations/NMBS/008886587", "http://irail.be/stations/NMBS/008892908"], ["http://irail.be/stations/NMBS/008812005", "http://irail.be/stations/NMBS/008813003"], ["http://irail.be/stations/NMBS/008812047", "http://irail.be/stations/NMBS/008812062"], ["http://irail.be/stations/NMBS/008865300", "http://irail.be/stations/NMBS/008866258"], ["http://irail.be/stations/NMBS/008871381", "http://irail.be/stations/NMBS/008882248"], ["http://irail.be/stations/NMBS/008821725", "http://irail.be/stations/NMBS/008821832"], ["http://irail.be/stations/NMBS/008893567", "http://irail.be/stations/NMBS/008895257"], ["http://irail.be/stations/NMBS/008822608", "http://irail.be/stations/NMBS/008822814"], ["http://irail.be/stations/NMBS/008883436", "http://irail.be/stations/NMBS/008895620"], ["http://irail.be/stations/NMBS/008864451", "http://irail.be/stations/NMBS/008864469"], ["http://irail.be/stations/NMBS/008893260", "http://irail.be/stations/NMBS/008894201"], ["http://irail.be/stations/NMBS/008812070", "http://irail.be/stations/NMBS/008812237"], ["http://irail.be/stations/NMBS/008832409", "http://irail.be/stations/NMBS/008832565"], ["http://irail.be/stations/NMBS/008812161", "http://irail.be/stations/NMBS/008895091"], ["http://irail.be/stations/NMBS/008833126", "http://irail.be/stations/NMBS/008833159"], ["http://irail.be/stations/NMBS/008821071", "http://irail.be/stations/NMBS/008821543"], ["http://irail.be/stations/NMBS/008824158", "http://irail.be/stations/NMBS/008894821"], ["http://irail.be/stations/NMBS/008011068", "http://irail.be/stations/NMBS/008500010"], ["http://irail.be/stations/NMBS/008811213", "http://irail.be/stations/NMBS/008811221"], ["http://irail.be/stations/NMBS/008892080", "http://irail.be/stations/NMBS/008892650"], ["http://irail.be/stations/NMBS/008895240", "http://irail.be/stations/NMBS/008895422"], ["http://irail.be/stations/NMBS/008833050", "http://irail.be/stations/NMBS/008861416"], ["http://irail.be/stations/NMBS/008775100", "http://irail.be/stations/NMBS/008778400"], ["http://irail.be/stations/NMBS/008892601", "http://irail.be/stations/NMBS/008892627"], ["http://irail.be/stations/NMBS/008873379", "http://irail.be/stations/NMBS/008873387"], ["http://irail.be/stations/NMBS/008843323", "http://irail.be/stations/NMBS/008843349"], ["http://irail.be/stations/NMBS/008812237", "http://irail.be/stations/NMBS/008814365"], ["http://irail.be/stations/NMBS/008822715", "http://irail.be/stations/NMBS/008822848"], ["http://irail.be/stations/NMBS/008814365", "http://irail.be/stations/NMBS/008814431"], ["http://irail.be/stations/NMBS/008813003", "http://irail.be/stations/NMBS/008813037"], ["http://irail.be/stations/NMBS/008862018", "http://irail.be/stations/NMBS/008866530"], ["http://irail.be/stations/NMBS/008841400", "http://irail.be/stations/NMBS/008843406"], ["http://irail.be/stations/NMBS/008831005", "http://irail.be/stations/NMBS/008831112"], ["http://irail.be/stations/NMBS/008863446", "http://irail.be/stations/NMBS/008864931"], ["http://irail.be/stations/NMBS/008881000", "http://irail.be/stations/NMBS/008881562"], ["http://irail.be/stations/NMBS/008891132", "http://irail.be/stations/NMBS/008891140"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821907"], ["http://irail.be/stations/NMBS/008812021", "http://irail.be/stations/NMBS/008812047"], ["http://irail.be/stations/NMBS/008883022", "http://irail.be/stations/NMBS/008883238"], ["http://irail.be/stations/NMBS/008821832", "http://irail.be/stations/NMBS/008821857"], ["http://irail.be/stations/NMBS/008886553", "http://irail.be/stations/NMBS/008886561"], ["http://irail.be/stations/NMBS/008893583", "http://irail.be/stations/NMBS/008895489"], ["http://irail.be/stations/NMBS/008885704", "http://irail.be/stations/NMBS/008896388"], ["http://irail.be/stations/NMBS/008882206", "http://irail.be/stations/NMBS/008882362"], ["http://irail.be/stations/NMBS/008891009", "http://irail.be/stations/NMBS/008891264"], ["http://irail.be/stations/NMBS/008885753", "http://irail.be/stations/NMBS/008896230"], ["http://irail.be/stations/NMBS/008891124", "http://irail.be/stations/NMBS/008891132"], ["http://irail.be/stations/NMBS/008871332", "http://irail.be/stations/NMBS/008871365"], ["http://irail.be/stations/NMBS/008861432", "http://irail.be/stations/NMBS/008861440"], ["http://irail.be/stations/NMBS/008821147", "http://irail.be/stations/NMBS/008821238"], ["http://irail.be/stations/NMBS/008831088", "http://irail.be/stations/NMBS/008832243"], ["http://irail.be/stations/NMBS/008873007", "http://irail.be/stations/NMBS/008873312"], ["http://irail.be/stations/NMBS/008774100", "http://irail.be/stations/NMBS/008774164"], ["http://irail.be/stations/NMBS/008831005", "http://irail.be/stations/NMBS/008832334"], ["http://irail.be/stations/NMBS/008811742", "http://irail.be/stations/NMBS/008861515"], ["http://irail.be/stations/NMBS/008831310", "http://irail.be/stations/NMBS/008841442"], ["http://irail.be/stations/NMBS/008883113", "http://irail.be/stations/NMBS/008883212"], ["http://irail.be/stations/NMBS/008831401", "http://irail.be/stations/NMBS/008832045"], ["http://irail.be/stations/NMBS/008871308", "http://irail.be/stations/NMBS/008871365"], ["http://irail.be/stations/NMBS/008893120", "http://irail.be/stations/NMBS/008893211"], ["http://irail.be/stations/NMBS/008892007", "http://irail.be/stations/NMBS/008892080"], ["http://irail.be/stations/NMBS/008821196", "http://irail.be/stations/NMBS/008824224"], ["http://irail.be/stations/NMBS/008842663", "http://irail.be/stations/NMBS/008842689"], ["http://irail.be/stations/NMBS/008866142", "http://irail.be/stations/NMBS/008866530"], ["http://irail.be/stations/NMBS/008844271", "http://irail.be/stations/NMBS/008846201"], ["http://irail.be/stations/NMBS/008893534", "http://irail.be/stations/NMBS/008893583"], ["http://irail.be/stations/NMBS/008893054", "http://irail.be/stations/NMBS/008895257"], ["http://irail.be/stations/NMBS/008892254", "http://irail.be/stations/NMBS/008896115"], ["http://irail.be/stations/NMBS/008846201", "http://irail.be/stations/NMBS/008849064"], ["http://irail.be/stations/NMBS/008728687", "http://irail.be/stations/NMBS/008884889"], ["http://irail.be/stations/NMBS/008892288", "http://irail.be/stations/NMBS/008896149"], ["http://irail.be/stations/NMBS/008841673", "http://irail.be/stations/NMBS/008841731"], ["http://irail.be/stations/NMBS/008011090", "http://irail.be/stations/NMBS/008721202"], ["http://irail.be/stations/NMBS/008879004", "http://irail.be/stations/NMBS/008881430"], ["http://irail.be/stations/NMBS/008821154", "http://irail.be/stations/NMBS/008821238"], ["http://irail.be/stations/NMBS/008895125", "http://irail.be/stations/NMBS/008895869"], ["http://irail.be/stations/NMBS/008831401", "http://irail.be/stations/NMBS/008833308"], ["http://irail.be/stations/NMBS/008844057", "http://irail.be/stations/NMBS/008844503"], ["http://irail.be/stations/NMBS/008841004", "http://irail.be/stations/NMBS/008843133"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008894755"], ["http://irail.be/stations/NMBS/008812013", "http://irail.be/stations/NMBS/008815016"], ["http://irail.be/stations/NMBS/008863453", "http://irail.be/stations/NMBS/008864931"], ["http://irail.be/stations/NMBS/008811437", "http://irail.be/stations/NMBS/008814464"], ["http://irail.be/stations/NMBS/008895505", "http://irail.be/stations/NMBS/008895711"], ["http://irail.be/stations/NMBS/008728687", "http://irail.be/stations/NMBS/008885522"], ["http://irail.be/stations/NMBS/008821964", "http://irail.be/stations/NMBS/008832433"], ["http://irail.be/stations/NMBS/008500010", "http://irail.be/stations/NMBS/008718206"], ["http://irail.be/stations/NMBS/008200133", "http://irail.be/stations/NMBS/008200136"], ["http://irail.be/stations/NMBS/008863834", "http://irail.be/stations/NMBS/008864931"], ["http://irail.be/stations/NMBS/008821832", "http://irail.be/stations/NMBS/008822525"], ["http://irail.be/stations/NMBS/008881463", "http://irail.be/stations/NMBS/008883113"], ["http://irail.be/stations/NMBS/008891611", "http://irail.be/stations/NMBS/008891629"], ["http://irail.be/stations/NMBS/008718213", "http://irail.be/stations/NMBS/008721202"], ["http://irail.be/stations/NMBS/008871100", "http://irail.be/stations/NMBS/008872009"], ["http://irail.be/stations/NMBS/008811288", "http://irail.be/stations/NMBS/008833175"], ["http://irail.be/stations/NMBS/008895505", "http://irail.be/stations/NMBS/008895570"], ["http://irail.be/stations/NMBS/008864006", "http://irail.be/stations/NMBS/008864311"], ["http://irail.be/stations/NMBS/008881158", "http://irail.be/stations/NMBS/008884004"], ["http://irail.be/stations/NMBS/008812047", "http://irail.be/stations/NMBS/008822111"], ["http://irail.be/stations/NMBS/008831807", "http://irail.be/stations/NMBS/008833670"], ["http://irail.be/stations/NMBS/008881505", "http://irail.be/stations/NMBS/008884327"], ["http://irail.be/stations/NMBS/008871373", "http://irail.be/stations/NMBS/008871514"], ["http://irail.be/stations/NMBS/008863867", "http://irail.be/stations/NMBS/008865615"], ["http://irail.be/stations/NMBS/008728710", "http://irail.be/stations/NMBS/008731388"], ["http://irail.be/stations/NMBS/008865227", "http://irail.be/stations/NMBS/008865540"], ["http://irail.be/stations/NMBS/008822004", "http://irail.be/stations/NMBS/008822608"], ["http://irail.be/stations/NMBS/008843406", "http://irail.be/stations/NMBS/008843430"], ["http://irail.be/stations/NMBS/008814126", "http://irail.be/stations/NMBS/008814373"], ["http://irail.be/stations/NMBS/008892106", "http://irail.be/stations/NMBS/008892734"], ["http://irail.be/stations/NMBS/008861317", "http://irail.be/stations/NMBS/008861416"], ["http://irail.be/stations/NMBS/008821600", "http://irail.be/stations/NMBS/008821816"], ["http://irail.be/stations/NMBS/008895646", "http://irail.be/stations/NMBS/008895752"], ["http://irail.be/stations/NMBS/008844404", "http://irail.be/stations/NMBS/008845229"], ["http://irail.be/stations/NMBS/008200100", "http://irail.be/stations/NMBS/008200510"], ["http://irail.be/stations/NMBS/008894201", "http://irail.be/stations/NMBS/008894235"], ["http://irail.be/stations/NMBS/008843331", "http://irail.be/stations/NMBS/008843349"], ["http://irail.be/stations/NMBS/007015400", "http://irail.be/stations/NMBS/008727100"], ["http://irail.be/stations/NMBS/008863503", "http://irail.be/stations/NMBS/008863834"], ["http://irail.be/stations/NMBS/008010053", "http://irail.be/stations/NMBS/008400058"], ["http://irail.be/stations/NMBS/008863818", "http://irail.be/stations/NMBS/008873122"], ["http://irail.be/stations/NMBS/008864337", "http://irail.be/stations/NMBS/008865615"], ["http://irail.be/stations/NMBS/008896370", "http://irail.be/stations/NMBS/008896800"], ["http://irail.be/stations/NMBS/008895752", "http://irail.be/stations/NMBS/008895877"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008821402"], ["http://irail.be/stations/NMBS/008894508", "http://irail.be/stations/NMBS/008894672"], ["http://irail.be/stations/NMBS/008893443", "http://irail.be/stations/NMBS/008894433"], ["http://irail.be/stations/NMBS/008861549", "http://irail.be/stations/NMBS/008872611"], ["http://irail.be/stations/NMBS/008891116", "http://irail.be/stations/NMBS/008891660"], ["http://irail.be/stations/NMBS/008896305", "http://irail.be/stations/NMBS/008896370"], ["http://irail.be/stations/NMBS/008861143", "http://irail.be/stations/NMBS/008861424"], ["http://irail.be/stations/NMBS/008861150", "http://irail.be/stations/NMBS/008861333"], ["http://irail.be/stations/NMBS/008881463", "http://irail.be/stations/NMBS/008883212"], ["http://irail.be/stations/NMBS/008822053", "http://irail.be/stations/NMBS/008822269"], ["http://irail.be/stations/NMBS/008200130", "http://irail.be/stations/NMBS/008866118"], ["http://irail.be/stations/NMBS/008892403", "http://irail.be/stations/NMBS/008896800"], ["http://irail.be/stations/NMBS/008886546", "http://irail.be/stations/NMBS/008895612"], ["http://irail.be/stations/NMBS/008881158", "http://irail.be/stations/NMBS/008884566"], ["http://irail.be/stations/NMBS/008814142", "http://irail.be/stations/NMBS/008814431"], ["http://irail.be/stations/NMBS/008864501", "http://irail.be/stations/NMBS/008864832"], ["http://irail.be/stations/NMBS/008842838", "http://irail.be/stations/NMBS/008842846"], ["http://irail.be/stations/NMBS/008866258", "http://irail.be/stations/NMBS/008866845"], ["http://irail.be/stations/NMBS/008833449", "http://irail.be/stations/NMBS/008833670"], ["http://irail.be/stations/NMBS/008841202", "http://irail.be/stations/NMBS/008843158"], ["http://irail.be/stations/NMBS/008896503", "http://irail.be/stations/NMBS/008896735"], ["http://irail.be/stations/NMBS/008884327", "http://irail.be/stations/NMBS/008884632"], ["http://irail.be/stations/NMBS/008814258", "http://irail.be/stations/NMBS/008814266"], ["http://irail.be/stations/NMBS/008864006", "http://irail.be/stations/NMBS/008864345"], ["http://irail.be/stations/NMBS/008881166", "http://irail.be/stations/NMBS/008881190"], ["http://irail.be/stations/NMBS/008821824", "http://irail.be/stations/NMBS/008822517"], ["http://irail.be/stations/NMBS/008881174", "http://irail.be/stations/NMBS/008883436"], ["http://irail.be/stations/NMBS/008812146", "http://irail.be/stations/NMBS/008812260"], ["http://irail.be/stations/NMBS/008883220", "http://irail.be/stations/NMBS/008883238"], ["http://irail.be/stations/NMBS/008728105", "http://irail.be/stations/NMBS/008728683"], ["http://irail.be/stations/NMBS/008842705", "http://irail.be/stations/NMBS/008842754"], ["http://irail.be/stations/NMBS/008873239", "http://irail.be/stations/NMBS/008874054"], ["http://irail.be/stations/NMBS/008200110", "http://irail.be/stations/NMBS/008200516"], ["http://irail.be/stations/NMBS/008841442", "http://irail.be/stations/NMBS/008841459"], ["http://irail.be/stations/NMBS/008832250", "http://irail.be/stations/NMBS/008832565"], ["http://irail.be/stations/NMBS/008814142", "http://irail.be/stations/NMBS/008814423"], ["http://irail.be/stations/NMBS/008892304", "http://irail.be/stations/NMBS/008896735"], ["http://irail.be/stations/NMBS/008874005", "http://irail.be/stations/NMBS/008874559"], ["http://irail.be/stations/NMBS/008882339", "http://irail.be/stations/NMBS/008882362"], ["http://irail.be/stations/NMBS/008843174", "http://irail.be/stations/NMBS/008847258"], ["http://irail.be/stations/NMBS/008812047", "http://irail.be/stations/NMBS/008815016"], ["http://irail.be/stations/NMBS/008841202", "http://irail.be/stations/NMBS/008841558"], ["http://irail.be/stations/NMBS/007015400", "http://irail.be/stations/NMBS/007015440"], ["http://irail.be/stations/NMBS/008811460", "http://irail.be/stations/NMBS/008814266"], ["http://irail.be/stations/NMBS/008811536", "http://irail.be/stations/NMBS/008811544"], ["http://irail.be/stations/NMBS/008812146", "http://irail.be/stations/NMBS/008812252"], ["http://irail.be/stations/NMBS/008863461", "http://irail.be/stations/NMBS/008864964"], ["http://irail.be/stations/NMBS/008814209", "http://irail.be/stations/NMBS/008883238"], ["http://irail.be/stations/NMBS/008811734", "http://irail.be/stations/NMBS/008811767"], ["http://irail.be/stations/NMBS/008822814", "http://irail.be/stations/NMBS/008824240"], ["http://irail.be/stations/NMBS/008832433", "http://irail.be/stations/NMBS/008832458"], ["http://irail.be/stations/NMBS/008895125", "http://irail.be/stations/NMBS/008895489"], ["http://irail.be/stations/NMBS/008814209", "http://irail.be/stations/NMBS/008814332"], ["http://irail.be/stations/NMBS/008727100", "http://irail.be/stations/NMBS/008772202"], ["http://irail.be/stations/NMBS/008866530", "http://irail.be/stations/NMBS/008866654"], ["http://irail.be/stations/NMBS/008892643", "http://irail.be/stations/NMBS/008892650"], ["http://irail.be/stations/NMBS/008833449", "http://irail.be/stations/NMBS/008861440"], ["http://irail.be/stations/NMBS/008731901", "http://irail.be/stations/NMBS/008776302"], ["http://irail.be/stations/NMBS/008821865", "http://irail.be/stations/NMBS/008833258"], ["http://irail.be/stations/NMBS/008886348", "http://irail.be/stations/NMBS/008892908"], ["http://irail.be/stations/NMBS/008864337", "http://irail.be/stations/NMBS/008864410"], ["http://irail.be/stations/NMBS/008841442", "http://irail.be/stations/NMBS/008843349"], ["http://irail.be/stations/NMBS/008841525", "http://irail.be/stations/NMBS/008841665"], ["http://irail.be/stations/NMBS/008866654", "http://irail.be/stations/NMBS/008869088"], ["http://irail.be/stations/NMBS/008774177", "http://irail.be/stations/NMBS/008774179"], ["http://irail.be/stations/NMBS/008891140", "http://irail.be/stations/NMBS/008892288"], ["http://irail.be/stations/NMBS/008874005", "http://irail.be/stations/NMBS/008874583"], ["http://irail.be/stations/NMBS/008874609", "http://irail.be/stations/NMBS/008874716"], ["http://irail.be/stations/NMBS/008718201", "http://irail.be/stations/NMBS/008721222"], ["http://irail.be/stations/NMBS/008884715", "http://irail.be/stations/NMBS/008886348"], ["http://irail.be/stations/NMBS/008813037", "http://irail.be/stations/NMBS/008815016"], ["http://irail.be/stations/NMBS/008812013", "http://irail.be/stations/NMBS/008812047"], ["http://irail.be/stations/NMBS/008832458", "http://irail.be/stations/NMBS/008833266"], ["http://irail.be/stations/NMBS/008200940", "http://irail.be/stations/NMBS/008866605"], ["http://irail.be/stations/NMBS/008865128", "http://irail.be/stations/NMBS/008866118"], ["http://irail.be/stations/NMBS/008811007", "http://irail.be/stations/NMBS/008811148"], ["http://irail.be/stations/NMBS/008893518", "http://irail.be/stations/NMBS/008894235"], ["http://irail.be/stations/NMBS/008811676", "http://irail.be/stations/NMBS/008811742"], ["http://irail.be/stations/NMBS/008895745", "http://irail.be/stations/NMBS/008895877"], ["http://irail.be/stations/NMBS/008821907", "http://irail.be/stations/NMBS/008832565"], ["http://irail.be/stations/NMBS/008871225", "http://irail.be/stations/NMBS/008872306"], ["http://irail.be/stations/NMBS/008812245", "http://irail.be/stations/NMBS/008814332"], ["http://irail.be/stations/NMBS/008893526", "http://irail.be/stations/NMBS/008894201"], ["http://irail.be/stations/NMBS/008731388", "http://irail.be/stations/NMBS/008881505"], ["http://irail.be/stations/NMBS/008873320", "http://irail.be/stations/NMBS/008873379"], ["http://irail.be/stations/NMBS/008821311", "http://irail.be/stations/NMBS/008821634"], ["http://irail.be/stations/NMBS/008728600", "http://irail.be/stations/NMBS/008728710"], ["http://irail.be/stations/NMBS/008832003", "http://irail.be/stations/NMBS/008832045"], ["http://irail.be/stations/NMBS/008824224", "http://irail.be/stations/NMBS/008894748"], ["http://irail.be/stations/NMBS/008811148", "http://irail.be/stations/NMBS/008812021"], ["http://irail.be/stations/NMBS/008866605", "http://irail.be/stations/NMBS/008869088"], ["http://irail.be/stations/NMBS/008861127", "http://irail.be/stations/NMBS/008863156"], ["http://irail.be/stations/NMBS/008814159", "http://irail.be/stations/NMBS/008814464"], ["http://irail.be/stations/NMBS/008842630", "http://irail.be/stations/NMBS/008842648"], ["http://irail.be/stations/NMBS/008831781", "http://irail.be/stations/NMBS/008832375"], ["http://irail.be/stations/NMBS/008833050", "http://irail.be/stations/NMBS/008833258"], ["http://irail.be/stations/NMBS/008833209", "http://irail.be/stations/NMBS/008833258"], ["http://irail.be/stations/NMBS/008821667", "http://irail.be/stations/NMBS/008821824"], ["http://irail.be/stations/NMBS/008893518", "http://irail.be/stations/NMBS/008895000"], ["http://irail.be/stations/NMBS/008814423", "http://irail.be/stations/NMBS/008814431"], ["http://irail.be/stations/NMBS/008844420", "http://irail.be/stations/NMBS/008844628"], ["http://irail.be/stations/NMBS/008833001", "http://irail.be/stations/NMBS/008833126"], ["http://irail.be/stations/NMBS/008728673", "http://irail.be/stations/NMBS/008728686"], ["http://irail.be/stations/NMBS/008893401", "http://irail.be/stations/NMBS/008894235"], ["http://irail.be/stations/NMBS/008891033", "http://irail.be/stations/NMBS/008891645"], ["http://irail.be/stations/NMBS/008895760", "http://irail.be/stations/NMBS/008895869"], ["http://irail.be/stations/NMBS/008200120", "http://irail.be/stations/NMBS/008200518"], ["http://irail.be/stations/NMBS/008822160", "http://irail.be/stations/NMBS/008822772"], ["http://irail.be/stations/NMBS/008015588", "http://irail.be/stations/NMBS/008032572"], ["http://irail.be/stations/NMBS/008831039", "http://irail.be/stations/NMBS/008831088"], ["http://irail.be/stations/NMBS/008833449", "http://irail.be/stations/NMBS/008863446"], ["http://irail.be/stations/NMBS/008833605", "http://irail.be/stations/NMBS/008863446"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821543"], ["http://irail.be/stations/NMBS/008200516", "http://irail.be/stations/NMBS/008200520"], ["http://irail.be/stations/NMBS/008722326", "http://irail.be/stations/NMBS/008728105"], ["http://irail.be/stations/NMBS/008841319", "http://irail.be/stations/NMBS/008841327"], ["http://irail.be/stations/NMBS/008010184", "http://irail.be/stations/NMBS/008015458"], ["http://irail.be/stations/NMBS/008896008", "http://irail.be/stations/NMBS/008896388"], ["http://irail.be/stations/NMBS/008863008", "http://irail.be/stations/NMBS/008863115"], ["http://irail.be/stations/NMBS/008893039", "http://irail.be/stations/NMBS/008893567"], ["http://irail.be/stations/NMBS/008811759", "http://irail.be/stations/NMBS/008861416"], ["http://irail.be/stations/NMBS/008845005", "http://irail.be/stations/NMBS/008845146"], ["http://irail.be/stations/NMBS/008822004", "http://irail.be/stations/NMBS/008822053"], ["http://irail.be/stations/NMBS/008812062", "http://irail.be/stations/NMBS/008822111"], ["http://irail.be/stations/NMBS/008861127", "http://irail.be/stations/NMBS/008861135"], ["http://irail.be/stations/NMBS/008863156", "http://irail.be/stations/NMBS/008863560"], ["http://irail.be/stations/NMBS/008811262", "http://irail.be/stations/NMBS/008822475"], ["http://irail.be/stations/NMBS/008200120", "http://irail.be/stations/NMBS/008200130"], ["http://irail.be/stations/NMBS/008821022", "http://irail.be/stations/NMBS/008821089"], ["http://irail.be/stations/NMBS/008811437", "http://irail.be/stations/NMBS/008814175"], ["http://irail.be/stations/NMBS/008892403", "http://irail.be/stations/NMBS/008892452"], ["http://irail.be/stations/NMBS/008822145", "http://irail.be/stations/NMBS/008822160"], ["http://irail.be/stations/NMBS/008822210", "http://irail.be/stations/NMBS/008822814"], ["http://irail.be/stations/NMBS/008871217", "http://irail.be/stations/NMBS/008871225"], ["http://irail.be/stations/NMBS/008861333", "http://irail.be/stations/NMBS/008874716"], ["http://irail.be/stations/NMBS/008400426", "http://irail.be/stations/NMBS/008844503"], ["http://irail.be/stations/NMBS/008811429", "http://irail.be/stations/NMBS/008814456"], ["http://irail.be/stations/NMBS/008200516", "http://irail.be/stations/NMBS/008200940"], ["http://irail.be/stations/NMBS/008821709", "http://irail.be/stations/NMBS/008821725"], ["http://irail.be/stations/NMBS/008844339", "http://irail.be/stations/NMBS/008844347"], ["http://irail.be/stations/NMBS/008822459", "http://irail.be/stations/NMBS/008822475"], ["http://irail.be/stations/NMBS/008861515", "http://irail.be/stations/NMBS/008872553"], ["http://irail.be/stations/NMBS/008895620", "http://irail.be/stations/NMBS/008895638"], ["http://irail.be/stations/NMBS/008893526", "http://irail.be/stations/NMBS/008895125"], ["http://irail.be/stations/NMBS/008814001", "http://irail.be/stations/NMBS/008814118"], ["http://irail.be/stations/NMBS/008811676", "http://irail.be/stations/NMBS/008811817"], ["http://irail.be/stations/NMBS/008842754", "http://irail.be/stations/NMBS/008844255"], ["http://irail.be/stations/NMBS/008843067", "http://irail.be/stations/NMBS/008843166"], ["http://irail.be/stations/NMBS/008015345", "http://irail.be/stations/NMBS/008832664"], ["http://irail.be/stations/NMBS/008728687", "http://irail.be/stations/NMBS/008731388"], ["http://irail.be/stations/NMBS/008831112", "http://irail.be/stations/NMBS/008831765"], ["http://irail.be/stations/NMBS/008811676", "http://irail.be/stations/NMBS/008861549"], ["http://irail.be/stations/NMBS/008871688", "http://irail.be/stations/NMBS/008882362"], ["http://irail.be/stations/NMBS/008871175", "http://irail.be/stations/NMBS/008871837"], ["http://irail.be/stations/NMBS/008861135", "http://irail.be/stations/NMBS/008861143"], ["http://irail.be/stations/NMBS/008812161", "http://irail.be/stations/NMBS/008895000"], ["http://irail.be/stations/NMBS/008871662", "http://irail.be/stations/NMBS/008882362"], ["http://irail.be/stations/NMBS/008811262", "http://irail.be/stations/NMBS/008822517"], ["http://irail.be/stations/NMBS/008895729", "http://irail.be/stations/NMBS/008895737"], ["http://irail.be/stations/NMBS/008872413", "http://irail.be/stations/NMBS/008872520"], ["http://irail.be/stations/NMBS/008842630", "http://irail.be/stations/NMBS/008847258"], ["http://irail.be/stations/NMBS/008882107", "http://irail.be/stations/NMBS/008882206"], ["http://irail.be/stations/NMBS/008812005", "http://irail.be/stations/NMBS/008813037"], ["http://irail.be/stations/NMBS/008812229", "http://irail.be/stations/NMBS/008812237"], ["http://irail.be/stations/NMBS/008891629", "http://irail.be/stations/NMBS/008891645"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821964"], ["http://irail.be/stations/NMBS/008844230", "http://irail.be/stations/NMBS/008844255"], ["http://irail.be/stations/NMBS/008895091", "http://irail.be/stations/NMBS/008895802"], ["http://irail.be/stations/NMBS/008811528", "http://irail.be/stations/NMBS/008814258"], ["http://irail.be/stations/NMBS/008893567", "http://irail.be/stations/NMBS/008895422"], ["http://irail.be/stations/NMBS/008728654", "http://irail.be/stations/NMBS/008896305"], ["http://irail.be/stations/NMBS/008822715", "http://irail.be/stations/NMBS/008824224"], ["http://irail.be/stations/NMBS/008883436", "http://irail.be/stations/NMBS/008895612"], ["http://irail.be/stations/NMBS/008871332", "http://irail.be/stations/NMBS/008872579"], ["http://irail.be/stations/NMBS/008896388", "http://irail.be/stations/NMBS/008896925"], ["http://irail.be/stations/NMBS/008811148", "http://irail.be/stations/NMBS/008811189"], ["http://irail.be/stations/NMBS/008842648", "http://irail.be/stations/NMBS/008842754"], ["http://irail.be/stations/NMBS/008891165", "http://irail.be/stations/NMBS/008893815"], ["http://irail.be/stations/NMBS/008728683", "http://irail.be/stations/NMBS/008728686"], ["http://irail.be/stations/NMBS/008895240", "http://irail.be/stations/NMBS/008895257"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821725"], ["http://irail.be/stations/NMBS/008895091", "http://irail.be/stations/NMBS/008895836"], ["http://irail.be/stations/NMBS/008885704", "http://irail.be/stations/NMBS/008885753"], ["http://irail.be/stations/NMBS/008843323", "http://irail.be/stations/NMBS/008843331"], ["http://irail.be/stations/NMBS/008824224", "http://irail.be/stations/NMBS/008824240"], ["http://irail.be/stations/NMBS/008841608", "http://irail.be/stations/NMBS/008842036"], ["http://irail.be/stations/NMBS/008811148", "http://irail.be/stations/NMBS/008822053"], ["http://irail.be/stations/NMBS/008718206", "http://irail.be/stations/NMBS/008774100"], ["http://irail.be/stations/NMBS/008719203", "http://irail.be/stations/NMBS/008776290"], ["http://irail.be/stations/NMBS/008893583", "http://irail.be/stations/NMBS/008895463"], ["http://irail.be/stations/NMBS/008774100", "http://irail.be/stations/NMBS/008776302"], ["http://irail.be/stations/NMBS/008008094", "http://irail.be/stations/NMBS/008039904"], ["http://irail.be/stations/NMBS/008811148", "http://irail.be/stations/NMBS/008811213"], ["http://irail.be/stations/NMBS/008831138", "http://irail.be/stations/NMBS/008831765"], ["http://irail.be/stations/NMBS/008721202", "http://irail.be/stations/NMBS/008721405"], ["http://irail.be/stations/NMBS/008811270", "http://irail.be/stations/NMBS/008822517"], ["http://irail.be/stations/NMBS/008811288", "http://irail.be/stations/NMBS/008822533"], ["http://irail.be/stations/NMBS/008821444", "http://irail.be/stations/NMBS/008821451"], ["http://irail.be/stations/NMBS/007015400", "http://irail.be/stations/NMBS/008778400"], ["http://irail.be/stations/NMBS/008200132", "http://irail.be/stations/NMBS/008200133"], ["http://irail.be/stations/NMBS/008881000", "http://irail.be/stations/NMBS/008881570"], ["http://irail.be/stations/NMBS/008833605", "http://irail.be/stations/NMBS/008843430"], ["http://irail.be/stations/NMBS/008892080", "http://irail.be/stations/NMBS/008893062"], ["http://irail.be/stations/NMBS/008872009", "http://irail.be/stations/NMBS/008874054"], ["http://irail.be/stations/NMBS/008861515", "http://irail.be/stations/NMBS/008861523"], ["http://irail.be/stations/NMBS/008886504", "http://irail.be/stations/NMBS/008895570"], ["http://irail.be/stations/NMBS/008892031", "http://irail.be/stations/NMBS/008892056"], ["http://irail.be/stations/NMBS/008821154", "http://irail.be/stations/NMBS/008821196"], ["http://irail.be/stations/NMBS/008893583", "http://irail.be/stations/NMBS/008895471"], ["http://irail.be/stations/NMBS/008885704", "http://irail.be/stations/NMBS/008896370"], ["http://irail.be/stations/NMBS/008861127", "http://irail.be/stations/NMBS/008863560"], ["http://irail.be/stations/NMBS/008893534", "http://irail.be/stations/NMBS/008893542"], ["http://irail.be/stations/NMBS/008886058", "http://irail.be/stations/NMBS/008886587"], ["http://irail.be/stations/NMBS/008843430", "http://irail.be/stations/NMBS/008864923"], ["http://irail.be/stations/NMBS/008400526", "http://irail.be/stations/NMBS/008829009"], ["http://irail.be/stations/NMBS/008882206", "http://irail.be/stations/NMBS/008882339"], ["http://irail.be/stations/NMBS/008200128", "http://irail.be/stations/NMBS/008200134"], ["http://irail.be/stations/NMBS/008831088", "http://irail.be/stations/NMBS/008832235"], ["http://irail.be/stations/NMBS/008892635", "http://irail.be/stations/NMBS/008892692"], ["http://irail.be/stations/NMBS/008892007", "http://irail.be/stations/NMBS/008892031"], ["http://irail.be/stations/NMBS/008841004", "http://irail.be/stations/NMBS/008841558"], ["http://irail.be/stations/NMBS/008842663", "http://irail.be/stations/NMBS/008843067"], ["http://irail.be/stations/NMBS/008811130", "http://irail.be/stations/NMBS/008811155"], ["http://irail.be/stations/NMBS/008814118", "http://irail.be/stations/NMBS/008814126"], ["http://irail.be/stations/NMBS/008895612", "http://irail.be/stations/NMBS/008895620"], ["http://irail.be/stations/NMBS/008894672", "http://irail.be/stations/NMBS/008894748"], ["http://irail.be/stations/NMBS/008882206", "http://irail.be/stations/NMBS/008883238"], ["http://irail.be/stations/NMBS/008881125", "http://irail.be/stations/NMBS/008881166"], ["http://irail.be/stations/NMBS/008891009", "http://irail.be/stations/NMBS/008891660"], ["http://irail.be/stations/NMBS/008895711", "http://irail.be/stations/NMBS/008895729"], ["http://irail.be/stations/NMBS/008831310", "http://irail.be/stations/NMBS/008841327"], ["http://irail.be/stations/NMBS/008814159", "http://irail.be/stations/NMBS/008814167"], ["http://irail.be/stations/NMBS/008811007", "http://irail.be/stations/NMBS/008812021"], ["http://irail.be/stations/NMBS/008863834", "http://irail.be/stations/NMBS/008863842"], ["http://irail.be/stations/NMBS/008883113", "http://irail.be/stations/NMBS/008883121"], ["http://irail.be/stations/NMBS/008812237", "http://irail.be/stations/NMBS/008812245"], ["http://irail.be/stations/NMBS/008891645", "http://irail.be/stations/NMBS/008891652"], ["http://irail.be/stations/NMBS/008821196", "http://irail.be/stations/NMBS/008824158"], ["http://irail.be/stations/NMBS/008866142", "http://irail.be/stations/NMBS/008866407"], ["http://irail.be/stations/NMBS/008844313", "http://irail.be/stations/NMBS/008844321"], ["http://irail.be/stations/NMBS/008812070", "http://irail.be/stations/NMBS/008812146"], ["http://irail.be/stations/NMBS/008893013", "http://irail.be/stations/NMBS/008893054"], ["http://irail.be/stations/NMBS/008728687", "http://irail.be/stations/NMBS/008885001"], ["http://irail.be/stations/NMBS/008864345", "http://irail.be/stations/NMBS/008864352"], ["http://irail.be/stations/NMBS/008400180", "http://irail.be/stations/NMBS/008400526"], ["http://irail.be/stations/NMBS/008831310", "http://irail.be/stations/NMBS/008841731"], ["http://irail.be/stations/NMBS/008879004", "http://irail.be/stations/NMBS/008881505"], ["http://irail.be/stations/NMBS/008831401", "http://irail.be/stations/NMBS/008833274"], ["http://irail.be/stations/NMBS/008895232", "http://irail.be/stations/NMBS/008895240"], ["http://irail.be/stations/NMBS/008883436", "http://irail.be/stations/NMBS/008886074"], ["http://irail.be/stations/NMBS/008718213", "http://irail.be/stations/NMBS/008721405"], ["http://irail.be/stations/NMBS/008821402", "http://irail.be/stations/NMBS/008829009"], ["http://irail.be/stations/NMBS/008881406", "http://irail.be/stations/NMBS/008881430"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008894748"], ["http://irail.be/stations/NMBS/008813037", "http://irail.be/stations/NMBS/008814001"], ["http://irail.be/stations/NMBS/008892734", "http://irail.be/stations/NMBS/008892908"], ["http://irail.be/stations/NMBS/008871647", "http://irail.be/stations/NMBS/008871662"], ["http://irail.be/stations/NMBS/008884335", "http://irail.be/stations/NMBS/008884889"], ["http://irail.be/stations/NMBS/008863453", "http://irail.be/stations/NMBS/008864949"], ["http://irail.be/stations/NMBS/008881158", "http://irail.be/stations/NMBS/008881190"], ["http://irail.be/stations/NMBS/008821824", "http://irail.be/stations/NMBS/008821832"], ["http://irail.be/stations/NMBS/008893559", "http://irail.be/stations/NMBS/008893567"], ["http://irail.be/stations/NMBS/008821964", "http://irail.be/stations/NMBS/008832458"], ["http://irail.be/stations/NMBS/008811411", "http://irail.be/stations/NMBS/008814472"], ["http://irail.be/stations/NMBS/008500010", "http://irail.be/stations/NMBS/008718213"], ["http://irail.be/stations/NMBS/008200133", "http://irail.be/stations/NMBS/008200134"], ["http://irail.be/stations/NMBS/008861531", "http://irail.be/stations/NMBS/008872553"], ["http://irail.be/stations/NMBS/008863404", "http://irail.be/stations/NMBS/008863438"], ["http://irail.be/stations/NMBS/008821832", "http://irail.be/stations/NMBS/008822533"], ["http://irail.be/stations/NMBS/008883311", "http://irail.be/stations/NMBS/008895760"], ["http://irail.be/stations/NMBS/008822004", "http://irail.be/stations/NMBS/008822251"], ["http://irail.be/stations/NMBS/008814258", "http://irail.be/stations/NMBS/008872587"], ["http://irail.be/stations/NMBS/008845005", "http://irail.be/stations/NMBS/008849072"], ["http://irail.be/stations/NMBS/008711184", "http://irail.be/stations/NMBS/008727100"], ["http://irail.be/stations/NMBS/008894151", "http://irail.be/stations/NMBS/008894201"], ["http://irail.be/stations/NMBS/008731901", "http://irail.be/stations/NMBS/008775500"], ["http://irail.be/stations/NMBS/008861143", "http://irail.be/stations/NMBS/008863560"], ["http://irail.be/stations/NMBS/008871100", "http://irail.be/stations/NMBS/008871852"], ["http://irail.be/stations/NMBS/008400280", "http://irail.be/stations/NMBS/008891652"], ["http://irail.be/stations/NMBS/008811767", "http://irail.be/stations/NMBS/008811775"], ["http://irail.be/stations/NMBS/008861531", "http://irail.be/stations/NMBS/008861549"], ["http://irail.be/stations/NMBS/008011068", "http://irail.be/stations/NMBS/008011090"], ["http://irail.be/stations/NMBS/008812047", "http://irail.be/stations/NMBS/008822053"], ["http://irail.be/stations/NMBS/008777300", "http://irail.be/stations/NMBS/008777320"], ["http://irail.be/stations/NMBS/008881505", "http://irail.be/stations/NMBS/008884319"], ["http://irail.be/stations/NMBS/008711184", "http://irail.be/stations/NMBS/008866845"], ["http://irail.be/stations/NMBS/008843141", "http://irail.be/stations/NMBS/008843174"], ["http://irail.be/stations/NMBS/008873239", "http://irail.be/stations/NMBS/008874583"], ["http://irail.be/stations/NMBS/008896305", "http://irail.be/stations/NMBS/008896800"], ["http://irail.be/stations/NMBS/008821311", "http://irail.be/stations/NMBS/008822814"], ["http://irail.be/stations/NMBS/008865227", "http://irail.be/stations/NMBS/008865300"], ["http://irail.be/stations/NMBS/008895778", "http://irail.be/stations/NMBS/008895851"], ["http://irail.be/stations/NMBS/008711184", "http://irail.be/stations/NMBS/008727149"], ["http://irail.be/stations/NMBS/008832250", "http://irail.be/stations/NMBS/008832334"], ["http://irail.be/stations/NMBS/008884889", "http://irail.be/stations/NMBS/008885522"], ["http://irail.be/stations/NMBS/008861317", "http://irail.be/stations/NMBS/008861333"], ["http://irail.be/stations/NMBS/008722326", "http://irail.be/stations/NMBS/008896396"], ["http://irail.be/stations/NMBS/008891264", "http://irail.be/stations/NMBS/008891702"], ["http://irail.be/stations/NMBS/008864501", "http://irail.be/stations/NMBS/008864816"], ["http://irail.be/stations/NMBS/008895455", "http://irail.be/stations/NMBS/008895463"], ["http://irail.be/stations/NMBS/008842002", "http://irail.be/stations/NMBS/008843901"], ["http://irail.be/stations/NMBS/008811221", "http://irail.be/stations/NMBS/008819406"], ["http://irail.be/stations/NMBS/008400280", "http://irail.be/stations/NMBS/008891405"], ["http://irail.be/stations/NMBS/008864337", "http://irail.be/stations/NMBS/008865565"], ["http://irail.be/stations/NMBS/008896370", "http://irail.be/stations/NMBS/008896909"], ["http://irail.be/stations/NMBS/008871100", "http://irail.be/stations/NMBS/008871217"], ["http://irail.be/stations/NMBS/008866001", "http://irail.be/stations/NMBS/008866662"], ["http://irail.be/stations/NMBS/008841434", "http://irail.be/stations/NMBS/008843349"], ["http://irail.be/stations/NMBS/008872306", "http://irail.be/stations/NMBS/008872413"], ["http://irail.be/stations/NMBS/008861549", "http://irail.be/stations/NMBS/008872553"], ["http://irail.be/stations/NMBS/008811544", "http://irail.be/stations/NMBS/008811825"], ["http://irail.be/stations/NMBS/008845203", "http://irail.be/stations/NMBS/008864469"], ["http://irail.be/stations/NMBS/008862018", "http://irail.be/stations/NMBS/008865110"], ["http://irail.be/stations/NMBS/008814142", "http://irail.be/stations/NMBS/008814449"], ["http://irail.be/stations/NMBS/008891264", "http://irail.be/stations/NMBS/008891405"], ["http://irail.be/stations/NMBS/008813037", "http://irail.be/stations/NMBS/008814449"], ["http://irail.be/stations/NMBS/008895638", "http://irail.be/stations/NMBS/008895752"], ["http://irail.be/stations/NMBS/008772202", "http://irail.be/stations/NMBS/008777300"], ["http://irail.be/stations/NMBS/008010053", "http://irail.be/stations/NMBS/008011068"], ["http://irail.be/stations/NMBS/008881166", "http://irail.be/stations/NMBS/008881174"], ["http://irail.be/stations/NMBS/008892056", "http://irail.be/stations/NMBS/008892106"], ["http://irail.be/stations/NMBS/008893047", "http://irail.be/stations/NMBS/008895257"], ["http://irail.be/stations/NMBS/008728105", "http://irail.be/stations/NMBS/008728673"], ["http://irail.be/stations/NMBS/008842705", "http://irail.be/stations/NMBS/008842838"], ["http://irail.be/stations/NMBS/008811403", "http://irail.be/stations/NMBS/008814449"], ["http://irail.be/stations/NMBS/008891116", "http://irail.be/stations/NMBS/008891264"], ["http://irail.be/stations/NMBS/008886009", "http://irail.be/stations/NMBS/008886348"], ["http://irail.be/stations/NMBS/008200110", "http://irail.be/stations/NMBS/008200518"], ["http://irail.be/stations/NMBS/008864923", "http://irail.be/stations/NMBS/008864931"], ["http://irail.be/stations/NMBS/008844206", "http://irail.be/stations/NMBS/008844230"], ["http://irail.be/stations/NMBS/008832250", "http://irail.be/stations/NMBS/008832573"], ["http://irail.be/stations/NMBS/008775752", "http://irail.be/stations/NMBS/008775767"], ["http://irail.be/stations/NMBS/008874005", "http://irail.be/stations/NMBS/008874054"], ["http://irail.be/stations/NMBS/008728600", "http://irail.be/stations/NMBS/008896412"], ["http://irail.be/stations/NMBS/008891173", "http://irail.be/stations/NMBS/008891553"], ["http://irail.be/stations/NMBS/008200510", "http://irail.be/stations/NMBS/008200516"], ["http://irail.be/stations/NMBS/008821717", "http://irail.be/stations/NMBS/008833258"], ["http://irail.be/stations/NMBS/008200940", "http://irail.be/stations/NMBS/008210014"], ["http://irail.be/stations/NMBS/008881174", "http://irail.be/stations/NMBS/008881190"], ["http://irail.be/stations/NMBS/008892908", "http://irail.be/stations/NMBS/008895232"], ["http://irail.be/stations/NMBS/008863461", "http://irail.be/stations/NMBS/008864956"], ["http://irail.be/stations/NMBS/008863545", "http://irail.be/stations/NMBS/008864956"], ["http://irail.be/stations/NMBS/008811445", "http://irail.be/stations/NMBS/008814266"], ["http://irail.be/stations/NMBS/008841608", "http://irail.be/stations/NMBS/008846201"], ["http://irail.be/stations/NMBS/008011090", "http://irail.be/stations/NMBS/008032572"], ["http://irail.be/stations/NMBS/008821238", "http://irail.be/stations/NMBS/008821337"], ["http://irail.be/stations/NMBS/008873320", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008400058", "http://irail.be/stations/NMBS/008832664"], ["http://irail.be/stations/NMBS/008843307", "http://irail.be/stations/NMBS/008864832"], ["http://irail.be/stations/NMBS/008200110", "http://irail.be/stations/NMBS/008200120"], ["http://irail.be/stations/NMBS/008865003", "http://irail.be/stations/NMBS/008865227"], ["http://irail.be/stations/NMBS/008881158", "http://irail.be/stations/NMBS/008886066"], ["http://irail.be/stations/NMBS/008891173", "http://irail.be/stations/NMBS/008891645"], ["http://irail.be/stations/NMBS/008728105", "http://irail.be/stations/NMBS/008896396"], ["http://irail.be/stations/NMBS/008882701", "http://irail.be/stations/NMBS/008883238"], ["http://irail.be/stations/NMBS/008885001", "http://irail.be/stations/NMBS/008885522"], ["http://irail.be/stations/NMBS/008812062", "http://irail.be/stations/NMBS/008812211"], ["http://irail.be/stations/NMBS/008814167", "http://irail.be/stations/NMBS/008814464"], ["http://irail.be/stations/NMBS/008811676", "http://irail.be/stations/NMBS/008811726"], ["http://irail.be/stations/NMBS/008812153", "http://irail.be/stations/NMBS/008822160"], ["http://irail.be/stations/NMBS/008812153", "http://irail.be/stations/NMBS/008895091"], ["http://irail.be/stations/NMBS/008864311", "http://irail.be/stations/NMBS/008864345"], ["http://irail.be/stations/NMBS/008821246", "http://irail.be/stations/NMBS/008821634"], ["http://irail.be/stations/NMBS/008811742", "http://irail.be/stations/NMBS/008811767"], ["http://irail.be/stations/NMBS/008824224", "http://irail.be/stations/NMBS/008894672"], ["http://irail.be/stations/NMBS/008822228", "http://irail.be/stations/NMBS/008822608"], ["http://irail.be/stations/NMBS/008871688", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008871837", "http://irail.be/stations/NMBS/008871852"], ["http://irail.be/stations/NMBS/008874005", "http://irail.be/stations/NMBS/008874567"], ["http://irail.be/stations/NMBS/008718201", "http://irail.be/stations/NMBS/008721405"], ["http://irail.be/stations/NMBS/008832334", "http://irail.be/stations/NMBS/008832375"], ["http://irail.be/stations/NMBS/008811544", "http://irail.be/stations/NMBS/008872587"], ["http://irail.be/stations/NMBS/008883006", "http://irail.be/stations/NMBS/008883311"], ["http://irail.be/stations/NMBS/008831039", "http://irail.be/stations/NMBS/008831310"], ["http://irail.be/stations/NMBS/008832458", "http://irail.be/stations/NMBS/008833258"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008821089"], ["http://irail.be/stations/NMBS/008814373", "http://irail.be/stations/NMBS/008815040"], ["http://irail.be/stations/NMBS/008893559", "http://irail.be/stations/NMBS/008895455"], ["http://irail.be/stations/NMBS/008811676", "http://irail.be/stations/NMBS/008811734"], ["http://irail.be/stations/NMBS/008841319", "http://irail.be/stations/NMBS/008843166"], ["http://irail.be/stations/NMBS/008774164", "http://irail.be/stations/NMBS/008774172"], ["http://irail.be/stations/NMBS/008871225", "http://irail.be/stations/NMBS/008872066"], ["http://irail.be/stations/NMBS/008895471", "http://irail.be/stations/NMBS/008895489"], ["http://irail.be/stations/NMBS/008896115", "http://irail.be/stations/NMBS/008896230"], ["http://irail.be/stations/NMBS/008893526", "http://irail.be/stations/NMBS/008894235"], ["http://irail.be/stations/NMBS/008895638", "http://irail.be/stations/NMBS/008895745"], ["http://irail.be/stations/NMBS/008843240", "http://irail.be/stations/NMBS/008843349"], ["http://irail.be/stations/NMBS/008892106", "http://irail.be/stations/NMBS/008892627"], ["http://irail.be/stations/NMBS/008864410", "http://irail.be/stations/NMBS/008865227"], ["http://irail.be/stations/NMBS/008893070", "http://irail.be/stations/NMBS/008895257"], ["http://irail.be/stations/NMBS/008841327", "http://irail.be/stations/NMBS/008843208"], ["http://irail.be/stations/NMBS/008832003", "http://irail.be/stations/NMBS/008832243"], ["http://irail.be/stations/NMBS/008891033", "http://irail.be/stations/NMBS/008891264"], ["http://irail.be/stations/NMBS/008821402", "http://irail.be/stations/NMBS/008821436"], ["http://irail.be/stations/NMBS/008872413", "http://irail.be/stations/NMBS/008874005"], ["http://irail.be/stations/NMBS/008884855", "http://irail.be/stations/NMBS/008884889"], ["http://irail.be/stations/NMBS/008861119", "http://irail.be/stations/NMBS/008863156"], ["http://irail.be/stations/NMBS/008728687", "http://irail.be/stations/NMBS/008728710"], ["http://irail.be/stations/NMBS/008812013", "http://irail.be/stations/NMBS/008812211"], ["http://irail.be/stations/NMBS/008844628", "http://irail.be/stations/NMBS/008844644"], ["http://irail.be/stations/NMBS/008831781", "http://irail.be/stations/NMBS/008832334"], ["http://irail.be/stations/NMBS/008895463", "http://irail.be/stations/NMBS/008895745"], ["http://irail.be/stations/NMBS/008811171", "http://irail.be/stations/NMBS/008811916"], ["http://irail.be/stations/NMBS/008886561", "http://irail.be/stations/NMBS/008886587"], ["http://irail.be/stations/NMBS/008200101", "http://irail.be/stations/NMBS/008719100"], ["http://irail.be/stations/NMBS/008871308", "http://irail.be/stations/NMBS/008872306"], ["http://irail.be/stations/NMBS/008811189", "http://irail.be/stations/NMBS/008822269"], ["http://irail.be/stations/NMBS/008892106", "http://irail.be/stations/NMBS/008892288"], ["http://irail.be/stations/NMBS/008821337", "http://irail.be/stations/NMBS/008822814"], ["http://irail.be/stations/NMBS/008892304", "http://irail.be/stations/NMBS/008892452"], ["http://irail.be/stations/NMBS/008728600", "http://irail.be/stations/NMBS/008728606"], ["http://irail.be/stations/NMBS/008894748", "http://irail.be/stations/NMBS/008894755"], ["http://irail.be/stations/NMBS/008841558", "http://irail.be/stations/NMBS/008843141"], ["http://irail.be/stations/NMBS/008885753", "http://irail.be/stations/NMBS/008889011"], ["http://irail.be/stations/NMBS/008719203", "http://irail.be/stations/NMBS/008866407"], ["http://irail.be/stations/NMBS/008891033", "http://irail.be/stations/NMBS/008891629"], ["http://irail.be/stations/NMBS/008871175", "http://irail.be/stations/NMBS/008874054"], ["http://irail.be/stations/NMBS/008400131", "http://irail.be/stations/NMBS/008832664"], ["http://irail.be/stations/NMBS/008843323", "http://irail.be/stations/NMBS/008864352"], ["http://irail.be/stations/NMBS/008891314", "http://irail.be/stations/NMBS/008892403"], ["http://irail.be/stations/NMBS/008842853", "http://irail.be/stations/NMBS/008843240"], ["http://irail.be/stations/NMBS/008400526", "http://irail.be/stations/NMBS/008894508"], ["http://irail.be/stations/NMBS/008822210", "http://irail.be/stations/NMBS/008822228"], ["http://irail.be/stations/NMBS/008895000", "http://irail.be/stations/NMBS/008895091"], ["http://irail.be/stations/NMBS/008822277", "http://irail.be/stations/NMBS/008822426"], ["http://irail.be/stations/NMBS/008831088", "http://irail.be/stations/NMBS/008831807"], ["http://irail.be/stations/NMBS/008833605", "http://irail.be/stations/NMBS/008863438"], ["http://irail.be/stations/NMBS/008863438", "http://irail.be/stations/NMBS/008863446"], ["http://irail.be/stations/NMBS/008200100", "http://irail.be/stations/NMBS/008719100"], ["http://irail.be/stations/NMBS/008400280", "http://irail.be/stations/NMBS/008894425"], ["http://irail.be/stations/NMBS/008821006", "http://irail.be/stations/NMBS/008821022"], ["http://irail.be/stations/NMBS/008811171", "http://irail.be/stations/NMBS/008812005"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821659"], ["http://irail.be/stations/NMBS/008200516", "http://irail.be/stations/NMBS/008200518"], ["http://irail.be/stations/NMBS/008821816", "http://irail.be/stations/NMBS/008822459"], ["http://irail.be/stations/NMBS/008814175", "http://irail.be/stations/NMBS/008814266"], ["http://irail.be/stations/NMBS/008010184", "http://irail.be/stations/NMBS/008015588"], ["http://irail.be/stations/NMBS/008821311", "http://irail.be/stations/NMBS/008822210"], ["http://irail.be/stations/NMBS/008811726", "http://irail.be/stations/NMBS/008833159"], ["http://irail.be/stations/NMBS/008844503", "http://irail.be/stations/NMBS/008844628"], ["http://irail.be/stations/NMBS/008400424", "http://irail.be/stations/NMBS/008841731"], ["http://irail.be/stations/NMBS/008811759", "http://irail.be/stations/NMBS/008861200"], ["http://irail.be/stations/NMBS/008843067", "http://irail.be/stations/NMBS/008843141"], ["http://irail.be/stations/NMBS/008824232", "http://irail.be/stations/NMBS/008824240"], ["http://irail.be/stations/NMBS/008889011", "http://irail.be/stations/NMBS/008896370"], ["http://irail.be/stations/NMBS/008400058", "http://irail.be/stations/NMBS/008400561"], ["http://irail.be/stations/NMBS/008871183", "http://irail.be/stations/NMBS/008873312"], ["http://irail.be/stations/NMBS/008400131", "http://irail.be/stations/NMBS/008832565"], ["http://irail.be/stations/NMBS/008200120", "http://irail.be/stations/NMBS/008200128"], ["http://irail.be/stations/NMBS/008821022", "http://irail.be/stations/NMBS/008821071"], ["http://irail.be/stations/NMBS/008841400", "http://irail.be/stations/NMBS/008841434"], ["http://irail.be/stations/NMBS/008872520", "http://irail.be/stations/NMBS/008874716"], ["http://irail.be/stations/NMBS/008893708", "http://irail.be/stations/NMBS/008894425"], ["http://irail.be/stations/NMBS/008814241", "http://irail.be/stations/NMBS/008814332"], ["http://irail.be/stations/NMBS/008821006", "http://irail.be/stations/NMBS/008821121"], ["http://irail.be/stations/NMBS/008821709", "http://irail.be/stations/NMBS/008821717"], ["http://irail.be/stations/NMBS/008891660", "http://irail.be/stations/NMBS/008893708"], ["http://irail.be/stations/NMBS/008861333", "http://irail.be/stations/NMBS/008861416"], ["http://irail.be/stations/NMBS/008811403", "http://irail.be/stations/NMBS/008811916"], ["http://irail.be/stations/NMBS/008814001", "http://irail.be/stations/NMBS/008814126"], ["http://irail.be/stations/NMBS/008863008", "http://irail.be/stations/NMBS/008863461"], ["http://irail.be/stations/NMBS/008893542", "http://irail.be/stations/NMBS/008895455"], ["http://irail.be/stations/NMBS/008843067", "http://irail.be/stations/NMBS/008843158"], ["http://irail.be/stations/NMBS/008010316", "http://irail.be/stations/NMBS/008400058"], ["http://irail.be/stations/NMBS/008831112", "http://irail.be/stations/NMBS/008831781"], ["http://irail.be/stations/NMBS/008811676", "http://irail.be/stations/NMBS/008861531"], ["http://irail.be/stations/NMBS/008814142", "http://irail.be/stations/NMBS/008814167"], ["http://irail.be/stations/NMBS/008871175", "http://irail.be/stations/NMBS/008871852"], ["http://irail.be/stations/NMBS/008832615", "http://irail.be/stations/NMBS/008832664"], ["http://irail.be/stations/NMBS/008872413", "http://irail.be/stations/NMBS/008872553"], ["http://irail.be/stations/NMBS/008812005", "http://irail.be/stations/NMBS/008813045"], ["http://irail.be/stations/NMBS/008841665", "http://irail.be/stations/NMBS/008841731"], ["http://irail.be/stations/NMBS/008881000", "http://irail.be/stations/NMBS/008884566"], ["http://irail.be/stations/NMBS/008891132", "http://irail.be/stations/NMBS/008891660"], ["http://irail.be/stations/NMBS/008833050", "http://irail.be/stations/NMBS/008861424"], ["http://irail.be/stations/NMBS/008844230", "http://irail.be/stations/NMBS/008844271"], ["http://irail.be/stations/NMBS/008893567", "http://irail.be/stations/NMBS/008895430"], ["http://irail.be/stations/NMBS/008728654", "http://irail.be/stations/NMBS/008896370"], ["http://irail.be/stations/NMBS/008776302", "http://irail.be/stations/NMBS/008777300"], ["http://irail.be/stations/NMBS/008896149", "http://irail.be/stations/NMBS/008896230"], ["http://irail.be/stations/NMBS/008893039", "http://irail.be/stations/NMBS/008893054"], ["http://irail.be/stations/NMBS/008841400", "http://irail.be/stations/NMBS/008843323"], ["http://irail.be/stations/NMBS/008845146", "http://irail.be/stations/NMBS/008845203"], ["http://irail.be/stations/NMBS/008895422", "http://irail.be/stations/NMBS/008895570"], ["http://irail.be/stations/NMBS/008893260", "http://irail.be/stations/NMBS/008894425"], ["http://irail.be/stations/NMBS/008822053", "http://irail.be/stations/NMBS/008822111"], ["http://irail.be/stations/NMBS/008831138", "http://irail.be/stations/NMBS/008831310"], ["http://irail.be/stations/NMBS/008861135", "http://irail.be/stations/NMBS/008861432"], ["http://irail.be/stations/NMBS/008871183", "http://irail.be/stations/NMBS/008871837"], ["http://irail.be/stations/NMBS/008891165", "http://irail.be/stations/NMBS/008893708"], ["http://irail.be/stations/NMBS/008819406", "http://irail.be/stations/NMBS/008822277"], ["http://irail.be/stations/NMBS/008728606", "http://irail.be/stations/NMBS/008728683"], ["http://irail.be/stations/NMBS/008728683", "http://irail.be/stations/NMBS/008728685"], ["http://irail.be/stations/NMBS/008892627", "http://irail.be/stations/NMBS/008892643"], ["http://irail.be/stations/NMBS/008811221", "http://irail.be/stations/NMBS/008811460"], ["http://irail.be/stations/NMBS/008891157", "http://irail.be/stations/NMBS/008891165"], ["http://irail.be/stations/NMBS/007015440", "http://irail.be/stations/NMBS/008891702"], ["http://irail.be/stations/NMBS/008821030", "http://irail.be/stations/NMBS/008821089"], ["http://irail.be/stations/NMBS/008500010", "http://irail.be/stations/NMBS/008774179"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821717"], ["http://irail.be/stations/NMBS/008844255", "http://irail.be/stations/NMBS/008844339"], ["http://irail.be/stations/NMBS/008821816", "http://irail.be/stations/NMBS/008821824"], ["http://irail.be/stations/NMBS/008844347", "http://irail.be/stations/NMBS/008844404"], ["http://irail.be/stations/NMBS/008824224", "http://irail.be/stations/NMBS/008824232"], ["http://irail.be/stations/NMBS/008841608", "http://irail.be/stations/NMBS/008842051"], ["http://irail.be/stations/NMBS/008774100", "http://irail.be/stations/NMBS/008776290"], ["http://irail.be/stations/NMBS/008895422", "http://irail.be/stations/NMBS/008895711"], ["http://irail.be/stations/NMBS/008721202", "http://irail.be/stations/NMBS/008721222"], ["http://irail.be/stations/NMBS/008811270", "http://irail.be/stations/NMBS/008822525"], ["http://irail.be/stations/NMBS/008778100", "http://irail.be/stations/NMBS/008778127"], ["http://irail.be/stations/NMBS/008882206", "http://irail.be/stations/NMBS/008882701"], ["http://irail.be/stations/NMBS/008895067", "http://irail.be/stations/NMBS/008895489"], ["http://irail.be/stations/NMBS/008892080", "http://irail.be/stations/NMBS/008893070"], ["http://irail.be/stations/NMBS/008891124", "http://irail.be/stations/NMBS/008891660"], ["http://irail.be/stations/NMBS/008831310", "http://irail.be/stations/NMBS/008841319"], ["http://irail.be/stations/NMBS/008822525", "http://irail.be/stations/NMBS/008822533"], ["http://irail.be/stations/NMBS/008811759", "http://irail.be/stations/NMBS/008811767"], ["http://irail.be/stations/NMBS/008775100", "http://irail.be/stations/NMBS/008777320"], ["http://irail.be/stations/NMBS/008863834", "http://irail.be/stations/NMBS/008864501"], ["http://irail.be/stations/NMBS/008718206", "http://irail.be/stations/NMBS/008718213"], ["http://irail.be/stations/NMBS/008883022", "http://irail.be/stations/NMBS/008883212"], ["http://irail.be/stations/NMBS/008814209", "http://irail.be/stations/NMBS/008871332"], ["http://irail.be/stations/NMBS/008200101", "http://irail.be/stations/NMBS/008200110"], ["http://irail.be/stations/NMBS/008812237", "http://irail.be/stations/NMBS/008814357"], ["http://irail.be/stations/NMBS/008842754", "http://irail.be/stations/NMBS/008842838"], ["http://irail.be/stations/NMBS/008885704", "http://irail.be/stations/NMBS/008896008"], ["http://irail.be/stations/NMBS/008842663", "http://irail.be/stations/NMBS/008843208"], ["http://irail.be/stations/NMBS/008008094", "http://irail.be/stations/NMBS/008010184"], ["http://irail.be/stations/NMBS/008811544", "http://irail.be/stations/NMBS/008811601"], ["http://irail.be/stations/NMBS/008886058", "http://irail.be/stations/NMBS/008886561"], ["http://irail.be/stations/NMBS/008843430", "http://irail.be/stations/NMBS/008864915"], ["http://irail.be/stations/NMBS/008843133", "http://irail.be/stations/NMBS/008843174"], ["http://irail.be/stations/NMBS/008200940", "http://irail.be/stations/NMBS/008719100"], ["http://irail.be/stations/NMBS/008891132", "http://irail.be/stations/NMBS/008892288"], ["http://irail.be/stations/NMBS/008400131", "http://irail.be/stations/NMBS/008400180"], ["http://irail.be/stations/NMBS/008832565", "http://irail.be/stations/NMBS/008832615"], ["http://irail.be/stations/NMBS/008865540", "http://irail.be/stations/NMBS/008866845"], ["http://irail.be/stations/NMBS/008778127", "http://irail.be/stations/NMBS/008778400"], ["http://irail.be/stations/NMBS/008884889", "http://irail.be/stations/NMBS/008886348"], ["http://irail.be/stations/NMBS/008841004", "http://irail.be/stations/NMBS/008841525"], ["http://irail.be/stations/NMBS/008811726", "http://irail.be/stations/NMBS/008811775"], ["http://irail.be/stations/NMBS/008842663", "http://irail.be/stations/NMBS/008842838"], ["http://irail.be/stations/NMBS/008844008", "http://irail.be/stations/NMBS/008844420"], ["http://irail.be/stations/NMBS/008811130", "http://irail.be/stations/NMBS/008811148"], ["http://irail.be/stations/NMBS/008822160", "http://irail.be/stations/NMBS/008894672"], ["http://irail.be/stations/NMBS/008841731", "http://irail.be/stations/NMBS/008846201"], ["http://irail.be/stations/NMBS/008831005", "http://irail.be/stations/NMBS/008832243"], ["http://irail.be/stations/NMBS/008812070", "http://irail.be/stations/NMBS/008812112"], ["http://irail.be/stations/NMBS/008811205", "http://irail.be/stations/NMBS/008814472"], ["http://irail.be/stations/NMBS/008872579", "http://irail.be/stations/NMBS/008872587"], ["http://irail.be/stations/NMBS/008863842", "http://irail.be/stations/NMBS/008864006"], ["http://irail.be/stations/NMBS/008881125", "http://irail.be/stations/NMBS/008881158"], ["http://irail.be/stations/NMBS/008811221", "http://irail.be/stations/NMBS/008811247"], ["http://irail.be/stations/NMBS/008812153", "http://irail.be/stations/NMBS/008812161"], ["http://irail.be/stations/NMBS/008872009", "http://irail.be/stations/NMBS/008872306"], ["http://irail.be/stations/NMBS/008863545", "http://irail.be/stations/NMBS/008873122"], ["http://irail.be/stations/NMBS/008893252", "http://irail.be/stations/NMBS/008894151"], ["http://irail.be/stations/NMBS/008011090", "http://irail.be/stations/NMBS/008721222"], ["http://irail.be/stations/NMBS/008833308", "http://irail.be/stations/NMBS/008861440"], ["http://irail.be/stations/NMBS/008842036", "http://irail.be/stations/NMBS/008843901"], ["http://irail.be/stations/NMBS/008895232", "http://irail.be/stations/NMBS/008895570"], ["http://irail.be/stations/NMBS/008814241", "http://irail.be/stations/NMBS/008872579"], ["http://irail.be/stations/NMBS/008881455", "http://irail.be/stations/NMBS/008882362"], ["http://irail.be/stations/NMBS/008831401", "http://irail.be/stations/NMBS/008832235"], ["http://irail.be/stations/NMBS/008845146", "http://irail.be/stations/NMBS/008864451"], ["http://irail.be/stations/NMBS/008814415", "http://irail.be/stations/NMBS/008814423"], ["http://irail.be/stations/NMBS/008873007", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008871662", "http://irail.be/stations/NMBS/008871670"], ["http://irail.be/stations/NMBS/008774100", "http://irail.be/stations/NMBS/008775544"], ["http://irail.be/stations/NMBS/008821519", "http://irail.be/stations/NMBS/008821535"], ["http://irail.be/stations/NMBS/008844008", "http://irail.be/stations/NMBS/008846201"], ["http://irail.be/stations/NMBS/008864915", "http://irail.be/stations/NMBS/008864923"], ["http://irail.be/stations/NMBS/008811148", "http://irail.be/stations/NMBS/008811155"], ["http://irail.be/stations/NMBS/008811007", "http://irail.be/stations/NMBS/008811171"], ["http://irail.be/stations/NMBS/008821634", "http://irail.be/stations/NMBS/008821659"], ["http://irail.be/stations/NMBS/008895067", "http://irail.be/stations/NMBS/008895125"], ["http://irail.be/stations/NMBS/008864345", "http://irail.be/stations/NMBS/008864410"], ["http://irail.be/stations/NMBS/008400180", "http://irail.be/stations/NMBS/008400530"], ["http://irail.be/stations/NMBS/008811411", "http://irail.be/stations/NMBS/008814456"], ["http://irail.be/stations/NMBS/008833266", "http://irail.be/stations/NMBS/008833308"], ["http://irail.be/stations/NMBS/008861143", "http://irail.be/stations/NMBS/008863545"], ["http://irail.be/stations/NMBS/008895232", "http://irail.be/stations/NMBS/008895257"], ["http://irail.be/stations/NMBS/008814241", "http://irail.be/stations/NMBS/008872587"], ["http://irail.be/stations/NMBS/008812161", "http://irail.be/stations/NMBS/008822160"], ["http://irail.be/stations/NMBS/008895448", "http://irail.be/stations/NMBS/008895729"], ["http://irail.be/stations/NMBS/008883436", "http://irail.be/stations/NMBS/008886066"], ["http://irail.be/stations/NMBS/008873122", "http://irail.be/stations/NMBS/008875002"], ["http://irail.be/stations/NMBS/008881406", "http://irail.be/stations/NMBS/008881505"], ["http://irail.be/stations/NMBS/008895455", "http://irail.be/stations/NMBS/008895737"], ["http://irail.be/stations/NMBS/008882230", "http://irail.be/stations/NMBS/008882248"], ["http://irail.be/stations/NMBS/008833258", "http://irail.be/stations/NMBS/008833308"], ["http://irail.be/stations/NMBS/008812161", "http://irail.be/stations/NMBS/008893443"], ["http://irail.be/stations/NMBS/008863453", "http://irail.be/stations/NMBS/008864956"], ["http://irail.be/stations/NMBS/007015400", "http://irail.be/stations/NMBS/008400561"], ["http://irail.be/stations/NMBS/008821659", "http://irail.be/stations/NMBS/008821816"], ["http://irail.be/stations/NMBS/008831807", "http://irail.be/stations/NMBS/008833605"], ["http://irail.be/stations/NMBS/008872306", "http://irail.be/stations/NMBS/008874005"], ["http://irail.be/stations/NMBS/008863834", "http://irail.be/stations/NMBS/008864915"], ["http://irail.be/stations/NMBS/008881430", "http://irail.be/stations/NMBS/008881455"], ["http://irail.be/stations/NMBS/008883311", "http://irail.be/stations/NMBS/008895778"], ["http://irail.be/stations/NMBS/008814126", "http://irail.be/stations/NMBS/008814431"], ["http://irail.be/stations/NMBS/008873122", "http://irail.be/stations/NMBS/008874609"], ["http://irail.be/stations/NMBS/008885530", "http://irail.be/stations/NMBS/008886348"], ["http://irail.be/stations/NMBS/008871811", "http://irail.be/stations/NMBS/008871829"], ["http://irail.be/stations/NMBS/008841459", "http://irail.be/stations/NMBS/008843349"], ["http://irail.be/stations/NMBS/008821600", "http://irail.be/stations/NMBS/008822210"], ["http://irail.be/stations/NMBS/008884004", "http://irail.be/stations/NMBS/008884541"], ["http://irail.be/stations/NMBS/008711184", "http://irail.be/stations/NMBS/008772202"], ["http://irail.be/stations/NMBS/008200520", "http://irail.be/stations/NMBS/008869054"], ["http://irail.be/stations/NMBS/008731901", "http://irail.be/stations/NMBS/008775544"], ["http://irail.be/stations/NMBS/008400280", "http://irail.be/stations/NMBS/008891660"], ["http://irail.be/stations/NMBS/008811429", "http://irail.be/stations/NMBS/008811437"], ["http://irail.be/stations/NMBS/008777300", "http://irail.be/stations/NMBS/008777500"], ["http://irail.be/stations/NMBS/008863156", "http://irail.be/stations/NMBS/008863362"], ["http://irail.be/stations/NMBS/008869047", "http://irail.be/stations/NMBS/008869088"], ["http://irail.be/stations/NMBS/008728105", "http://irail.be/stations/NMBS/008728606"], ["http://irail.be/stations/NMBS/008881505", "http://irail.be/stations/NMBS/008884350"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008821535"], ["http://irail.be/stations/NMBS/008886009", "http://irail.be/stations/NMBS/008886587"], ["http://irail.be/stations/NMBS/008821907", "http://irail.be/stations/NMBS/008821964"], ["http://irail.be/stations/NMBS/008895778", "http://irail.be/stations/NMBS/008895869"], ["http://irail.be/stations/NMBS/008866407", "http://irail.be/stations/NMBS/008866530"], ["http://irail.be/stations/NMBS/008775605", "http://irail.be/stations/NMBS/008775762"], ["http://irail.be/stations/NMBS/008821196", "http://irail.be/stations/NMBS/008822814"], ["http://irail.be/stations/NMBS/008892106", "http://irail.be/stations/NMBS/008892650"], ["http://irail.be/stations/NMBS/008722326", "http://irail.be/stations/NMBS/008896412"], ["http://irail.be/stations/NMBS/008874567", "http://irail.be/stations/NMBS/008874583"], ["http://irail.be/stations/NMBS/008822145", "http://irail.be/stations/NMBS/008822772"], ["http://irail.be/stations/NMBS/008711184", "http://irail.be/stations/NMBS/008772319"], ["http://irail.be/stations/NMBS/008891702", "http://irail.be/stations/NMBS/008892304"], ["http://irail.be/stations/NMBS/008841202", "http://irail.be/stations/NMBS/008843141"], ["http://irail.be/stations/NMBS/008400280", "http://irail.be/stations/NMBS/008891173"], ["http://irail.be/stations/NMBS/008884327", "http://irail.be/stations/NMBS/008884350"], ["http://irail.be/stations/NMBS/008865565", "http://irail.be/stations/NMBS/008865615"], ["http://irail.be/stations/NMBS/008812211", "http://irail.be/stations/NMBS/008815040"], ["http://irail.be/stations/NMBS/008811155", "http://irail.be/stations/NMBS/008811163"], ["http://irail.be/stations/NMBS/008015345", "http://irail.be/stations/NMBS/008400426"], ["http://irail.be/stations/NMBS/008891116", "http://irail.be/stations/NMBS/008891124"], ["http://irail.be/stations/NMBS/008873239", "http://irail.be/stations/NMBS/008873312"], ["http://irail.be/stations/NMBS/008811197", "http://irail.be/stations/NMBS/008811213"], ["http://irail.be/stations/NMBS/008881505", "http://irail.be/stations/NMBS/008884004"], ["http://irail.be/stations/NMBS/008842051", "http://irail.be/stations/NMBS/008842754"], ["http://irail.be/stations/NMBS/008891264", "http://irail.be/stations/NMBS/008891314"], ["http://irail.be/stations/NMBS/008842754", "http://irail.be/stations/NMBS/008864469"], ["http://irail.be/stations/NMBS/008821600", "http://irail.be/stations/NMBS/008821659"], ["http://irail.be/stations/NMBS/008833175", "http://irail.be/stations/NMBS/008833233"], ["http://irail.be/stations/NMBS/008822251", "http://irail.be/stations/NMBS/008822277"], ["http://irail.be/stations/NMBS/008811528", "http://irail.be/stations/NMBS/008872587"], ["http://irail.be/stations/NMBS/008772202", "http://irail.be/stations/NMBS/008778100"], ["http://irail.be/stations/NMBS/008200100", "http://irail.be/stations/NMBS/008200102"], ["http://irail.be/stations/NMBS/008814167", "http://irail.be/stations/NMBS/008814258"], ["http://irail.be/stations/NMBS/008400426", "http://irail.be/stations/NMBS/008832664"], ["http://irail.be/stations/NMBS/008832235", "http://irail.be/stations/NMBS/008832243"], ["http://irail.be/stations/NMBS/008863354", "http://irail.be/stations/NMBS/008863362"], ["http://irail.be/stations/NMBS/008892056", "http://irail.be/stations/NMBS/008892080"], ["http://irail.be/stations/NMBS/008871100", "http://irail.be/stations/NMBS/008871514"], ["http://irail.be/stations/NMBS/008866001", "http://irail.be/stations/NMBS/008866118"], ["http://irail.be/stations/NMBS/008728105", "http://irail.be/stations/NMBS/008728671"], ["http://irail.be/stations/NMBS/008895752", "http://irail.be/stations/NMBS/008895760"], ["http://irail.be/stations/NMBS/008849072", "http://irail.be/stations/NMBS/008865128"], ["http://irail.be/stations/NMBS/008822533", "http://irail.be/stations/NMBS/008833233"], ["http://irail.be/stations/NMBS/008881463", "http://irail.be/stations/NMBS/008882107"], ["http://irail.be/stations/NMBS/008822053", "http://irail.be/stations/NMBS/008822608"], ["http://irail.be/stations/NMBS/008822111", "http://irail.be/stations/NMBS/008822608"], ["http://irail.be/stations/NMBS/008895471", "http://irail.be/stations/NMBS/008895877"], ["http://irail.be/stations/NMBS/008844206", "http://irail.be/stations/NMBS/008844313"], ["http://irail.be/stations/NMBS/008775752", "http://irail.be/stations/NMBS/008775762"], ["http://irail.be/stations/NMBS/008895869", "http://irail.be/stations/NMBS/008895877"], ["http://irail.be/stations/NMBS/008891173", "http://irail.be/stations/NMBS/008891611"], ["http://irail.be/stations/NMBS/008884855", "http://irail.be/stations/NMBS/008886348"], ["http://irail.be/stations/NMBS/008886587", "http://irail.be/stations/NMBS/008895232"], ["http://irail.be/stations/NMBS/008812062", "http://irail.be/stations/NMBS/008812070"], ["http://irail.be/stations/NMBS/008731901", "http://irail.be/stations/NMBS/008777500"], ["http://irail.be/stations/NMBS/008821022", "http://irail.be/stations/NMBS/008821634"], ["http://irail.be/stations/NMBS/008881174", "http://irail.be/stations/NMBS/008881315"], ["http://irail.be/stations/NMBS/008812146", "http://irail.be/stations/NMBS/008812153"], ["http://irail.be/stations/NMBS/008774164", "http://irail.be/stations/NMBS/008774179"], ["http://irail.be/stations/NMBS/008871381", "http://irail.be/stations/NMBS/008871415"], ["http://irail.be/stations/NMBS/008893542", "http://irail.be/stations/NMBS/008894151"], ["http://irail.be/stations/NMBS/008200133", "http://irail.be/stations/NMBS/008865128"], ["http://irail.be/stations/NMBS/008865003", "http://irail.be/stations/NMBS/008865300"], ["http://irail.be/stations/NMBS/008894755", "http://irail.be/stations/NMBS/008894821"], ["http://irail.be/stations/NMBS/008843158", "http://irail.be/stations/NMBS/008843166"], ["http://irail.be/stations/NMBS/008881158", "http://irail.be/stations/NMBS/008886074"], ["http://irail.be/stations/NMBS/008891405", "http://irail.be/stations/NMBS/008891702"], ["http://irail.be/stations/NMBS/008893211", "http://irail.be/stations/NMBS/008893252"], ["http://irail.be/stations/NMBS/008775544", "http://irail.be/stations/NMBS/008776302"], ["http://irail.be/stations/NMBS/008884715", "http://irail.be/stations/NMBS/008886009"], ["http://irail.be/stations/NMBS/008811536", "http://irail.be/stations/NMBS/008872587"], ["http://irail.be/stations/NMBS/008885001", "http://irail.be/stations/NMBS/008885068"], ["http://irail.be/stations/NMBS/008871175", "http://irail.be/stations/NMBS/008871183"], ["http://irail.be/stations/NMBS/008821865", "http://irail.be/stations/NMBS/008833209"], ["http://irail.be/stations/NMBS/008896909", "http://irail.be/stations/NMBS/008896925"], ["http://irail.be/stations/NMBS/008811676", "http://irail.be/stations/NMBS/008811718"], ["http://irail.be/stations/NMBS/008812153", "http://irail.be/stations/NMBS/008822145"], ["http://irail.be/stations/NMBS/008010184", "http://irail.be/stations/NMBS/008400058"], ["http://irail.be/stations/NMBS/008866654", "http://irail.be/stations/NMBS/008869047"], ["http://irail.be/stations/NMBS/008728686", "http://irail.be/stations/NMBS/008885753"], ["http://irail.be/stations/NMBS/008821246", "http://irail.be/stations/NMBS/008821337"], ["http://irail.be/stations/NMBS/008893542", "http://irail.be/stations/NMBS/008893559"], ["http://irail.be/stations/NMBS/008772319", "http://irail.be/stations/NMBS/008866407"], ["http://irail.be/stations/NMBS/008863438", "http://irail.be/stations/NMBS/008864931"], ["http://irail.be/stations/NMBS/008814209", "http://irail.be/stations/NMBS/008882701"], ["http://irail.be/stations/NMBS/008811742", "http://irail.be/stations/NMBS/008811759"], ["http://irail.be/stations/NMBS/008866605", "http://irail.be/stations/NMBS/008866654"], ["http://irail.be/stations/NMBS/008842051", "http://irail.be/stations/NMBS/008844271"], ["http://irail.be/stations/NMBS/008811445", "http://irail.be/stations/NMBS/008811460"], ["http://irail.be/stations/NMBS/008200132", "http://irail.be/stations/NMBS/008865128"], ["http://irail.be/stations/NMBS/008811544", "http://irail.be/stations/NMBS/008872611"], ["http://irail.be/stations/NMBS/008842002", "http://irail.be/stations/NMBS/008842036"], ["http://irail.be/stations/NMBS/008200940", "http://irail.be/stations/NMBS/008866662"], ["http://irail.be/stations/NMBS/008871514", "http://irail.be/stations/NMBS/008871852"], ["http://irail.be/stations/NMBS/008833605", "http://irail.be/stations/NMBS/008833670"], ["http://irail.be/stations/NMBS/008841319", "http://irail.be/stations/NMBS/008843158"], ["http://irail.be/stations/NMBS/008774172", "http://irail.be/stations/NMBS/008775605"], ["http://irail.be/stations/NMBS/008831807", "http://irail.be/stations/NMBS/008841400"], ["http://irail.be/stations/NMBS/008010184", "http://irail.be/stations/NMBS/008010316"], ["http://irail.be/stations/NMBS/008892106", "http://irail.be/stations/NMBS/008892601"], ["http://irail.be/stations/NMBS/008864410", "http://irail.be/stations/NMBS/008865003"], ["http://irail.be/stations/NMBS/008811262", "http://irail.be/stations/NMBS/008811270"], ["http://irail.be/stations/NMBS/008892304", "http://irail.be/stations/NMBS/008892338"], ["http://irail.be/stations/NMBS/008833001", "http://irail.be/stations/NMBS/008833050"], ["http://irail.be/stations/NMBS/008843331", "http://irail.be/stations/NMBS/008864451"], ["http://irail.be/stations/NMBS/008822848", "http://irail.be/stations/NMBS/008824240"], ["http://irail.be/stations/NMBS/008814118", "http://irail.be/stations/NMBS/008814373"], ["http://irail.be/stations/NMBS/008811254", "http://irail.be/stations/NMBS/008822277"], ["http://irail.be/stations/NMBS/008821022", "http://irail.be/stations/NMBS/008821030"], ["http://irail.be/stations/NMBS/008891314", "http://irail.be/stations/NMBS/008892205"], ["http://irail.be/stations/NMBS/008811403", "http://irail.be/stations/NMBS/008811411"], ["http://irail.be/stations/NMBS/008015588", "http://irail.be/stations/NMBS/008200101"], ["http://irail.be/stations/NMBS/008812120", "http://irail.be/stations/NMBS/008822111"], ["http://irail.be/stations/NMBS/008814159", "http://irail.be/stations/NMBS/008814449"], ["http://irail.be/stations/NMBS/008814241", "http://irail.be/stations/NMBS/008814415"], ["http://irail.be/stations/NMBS/008831781", "http://irail.be/stations/NMBS/008832250"], ["http://irail.be/stations/NMBS/008833050", "http://irail.be/stations/NMBS/008833126"], ["http://irail.be/stations/NMBS/008821667", "http://irail.be/stations/NMBS/008821725"], ["http://irail.be/stations/NMBS/008866118", "http://irail.be/stations/NMBS/008866662"], ["http://irail.be/stations/NMBS/008010184", "http://irail.be/stations/NMBS/008039904"], ["http://irail.be/stations/NMBS/008843331", "http://irail.be/stations/NMBS/008864436"], ["http://irail.be/stations/NMBS/008886066", "http://irail.be/stations/NMBS/008886561"], ["http://irail.be/stations/NMBS/008841558", "http://irail.be/stations/NMBS/008843133"], ["http://irail.be/stations/NMBS/008814118", "http://irail.be/stations/NMBS/008815040"], ["http://irail.be/stations/NMBS/008719203", "http://irail.be/stations/NMBS/008866530"], ["http://irail.be/stations/NMBS/008885522", "http://irail.be/stations/NMBS/008892908"], ["http://irail.be/stations/NMBS/008891033", "http://irail.be/stations/NMBS/008891660"], ["http://irail.be/stations/NMBS/008885753", "http://irail.be/stations/NMBS/008889045"], ["http://irail.be/stations/NMBS/008727100", "http://irail.be/stations/NMBS/008778110"], ["http://irail.be/stations/NMBS/008400131", "http://irail.be/stations/NMBS/008832615"], ["http://irail.be/stations/NMBS/008891405", "http://irail.be/stations/NMBS/008891611"], ["http://irail.be/stations/NMBS/008821006", "http://irail.be/stations/NMBS/008821030"], ["http://irail.be/stations/NMBS/008833050", "http://irail.be/stations/NMBS/008833308"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821634"], ["http://irail.be/stations/NMBS/008821816", "http://irail.be/stations/NMBS/008822475"], ["http://irail.be/stations/NMBS/008843307", "http://irail.be/stations/NMBS/008843323"], ["http://irail.be/stations/NMBS/008842655", "http://irail.be/stations/NMBS/008843067"], ["http://irail.be/stations/NMBS/008814175", "http://irail.be/stations/NMBS/008814258"], ["http://irail.be/stations/NMBS/008400424", "http://irail.be/stations/NMBS/008846201"], ["http://irail.be/stations/NMBS/008863008", "http://irail.be/stations/NMBS/008863354"], ["http://irail.be/stations/NMBS/008844503", "http://irail.be/stations/NMBS/008844545"], ["http://irail.be/stations/NMBS/008864451", "http://irail.be/stations/NMBS/008865128"], ["http://irail.be/stations/NMBS/008200130", "http://irail.be/stations/NMBS/008200520"], ["http://irail.be/stations/NMBS/008811130", "http://irail.be/stations/NMBS/008811163"], ["http://irail.be/stations/NMBS/008719203", "http://irail.be/stations/NMBS/008869088"], ["http://irail.be/stations/NMBS/008891405", "http://irail.be/stations/NMBS/008891629"], ["http://irail.be/stations/NMBS/008872520", "http://irail.be/stations/NMBS/008874609"], ["http://irail.be/stations/NMBS/008718201", "http://irail.be/stations/NMBS/008718206"], ["http://irail.be/stations/NMBS/008822343", "http://irail.be/stations/NMBS/008822426"], ["http://irail.be/stations/NMBS/008015588", "http://irail.be/stations/NMBS/008721222"], ["http://irail.be/stations/NMBS/008814241", "http://irail.be/stations/NMBS/008814308"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821436"], ["http://irail.be/stations/NMBS/008844230", "http://irail.be/stations/NMBS/008844321"], ["http://irail.be/stations/NMBS/008842655", "http://irail.be/stations/NMBS/008842663"], ["http://irail.be/stations/NMBS/008841319", "http://irail.be/stations/NMBS/008841731"], ["http://irail.be/stations/NMBS/008893542", "http://irail.be/stations/NMBS/008895463"], ["http://irail.be/stations/NMBS/008844503", "http://irail.be/stations/NMBS/008849023"], ["http://irail.be/stations/NMBS/008814357", "http://irail.be/stations/NMBS/008814365"], ["http://irail.be/stations/NMBS/008811676", "http://irail.be/stations/NMBS/008861523"], ["http://irail.be/stations/NMBS/008871175", "http://irail.be/stations/NMBS/008872009"], ["http://irail.be/stations/NMBS/008863453", "http://irail.be/stations/NMBS/008863461"], ["http://irail.be/stations/NMBS/008872413", "http://irail.be/stations/NMBS/008872579"], ["http://irail.be/stations/NMBS/008881570", "http://irail.be/stations/NMBS/008884566"], ["http://irail.be/stations/NMBS/008863818", "http://irail.be/stations/NMBS/008863867"], ["http://irail.be/stations/NMBS/008841665", "http://irail.be/stations/NMBS/008841673"], ["http://irail.be/stations/NMBS/008861168", "http://irail.be/stations/NMBS/008874724"], ["http://irail.be/stations/NMBS/008871225", "http://irail.be/stations/NMBS/008871308"], ["http://irail.be/stations/NMBS/008821063", "http://irail.be/stations/NMBS/008821196"], ["http://irail.be/stations/NMBS/008871381", "http://irail.be/stations/NMBS/008882701"], ["http://irail.be/stations/NMBS/008844230", "http://irail.be/stations/NMBS/008844313"], ["http://irail.be/stations/NMBS/008821832", "http://irail.be/stations/NMBS/008833233"], ["http://irail.be/stations/NMBS/008814209", "http://irail.be/stations/NMBS/008871381"], ["http://irail.be/stations/NMBS/008822715", "http://irail.be/stations/NMBS/008824240"], ["http://irail.be/stations/NMBS/008843430", "http://irail.be/stations/NMBS/008863404"], ["http://irail.be/stations/NMBS/008862018", "http://irail.be/stations/NMBS/008866142"], ["http://irail.be/stations/NMBS/008893583", "http://irail.be/stations/NMBS/008895067"], ["http://irail.be/stations/NMBS/008893039", "http://irail.be/stations/NMBS/008893047"], ["http://irail.be/stations/NMBS/008881190", "http://irail.be/stations/NMBS/008883436"], ["http://irail.be/stations/NMBS/008844503", "http://irail.be/stations/NMBS/008844644"], ["http://irail.be/stations/NMBS/008841400", "http://irail.be/stations/NMBS/008843307"], ["http://irail.be/stations/NMBS/008811544", "http://irail.be/stations/NMBS/008811718"], ["http://irail.be/stations/NMBS/008861135", "http://irail.be/stations/NMBS/008861440"], ["http://irail.be/stations/NMBS/008819406", "http://irail.be/stations/NMBS/008822269"], ["http://irail.be/stations/NMBS/008893062", "http://irail.be/stations/NMBS/008895257"], ["http://irail.be/stations/NMBS/008728683", "http://irail.be/stations/NMBS/008728710"], ["http://irail.be/stations/NMBS/008821717", "http://irail.be/stations/NMBS/008821964"], ["http://irail.be/stations/NMBS/008011068", "http://irail.be/stations/NMBS/008721202"], ["http://irail.be/stations/NMBS/008892627", "http://irail.be/stations/NMBS/008892635"], ["http://irail.be/stations/NMBS/008822343", "http://irail.be/stations/NMBS/008822608"], ["http://irail.be/stations/NMBS/008893047", "http://irail.be/stations/NMBS/008893567"], ["http://irail.be/stations/NMBS/008896800", "http://irail.be/stations/NMBS/008896909"], ["http://irail.be/stations/NMBS/008861424", "http://irail.be/stations/NMBS/008861432"], ["http://irail.be/stations/NMBS/008844255", "http://irail.be/stations/NMBS/008844321"], ["http://irail.be/stations/NMBS/008865565", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008893120", "http://irail.be/stations/NMBS/008894151"], ["http://irail.be/stations/NMBS/008845203", "http://irail.be/stations/NMBS/008845229"], ["http://irail.be/stations/NMBS/008892692", "http://irail.be/stations/NMBS/008895232"], ["http://irail.be/stations/NMBS/008778100", "http://irail.be/stations/NMBS/008778110"], ["http://irail.be/stations/NMBS/008886058", "http://irail.be/stations/NMBS/008886066"], ["http://irail.be/stations/NMBS/008895802", "http://irail.be/stations/NMBS/008895844"], ["http://irail.be/stations/NMBS/008812005", "http://irail.be/stations/NMBS/008812021"], ["http://irail.be/stations/NMBS/008845005", "http://irail.be/stations/NMBS/008865128"], ["http://irail.be/stations/NMBS/008400280", "http://irail.be/stations/NMBS/008894433"], ["http://irail.be/stations/NMBS/008774179", "http://irail.be/stations/NMBS/008775605"], ["http://irail.be/stations/NMBS/008775100", "http://irail.be/stations/NMBS/008777300"], ["http://irail.be/stations/NMBS/008883022", "http://irail.be/stations/NMBS/008883808"], ["http://irail.be/stations/NMBS/008886009", "http://irail.be/stations/NMBS/008892908"], ["http://irail.be/stations/NMBS/008200101", "http://irail.be/stations/NMBS/008200120"], ["http://irail.be/stations/NMBS/008866175", "http://irail.be/stations/NMBS/008866258"], ["http://irail.be/stations/NMBS/008865003", "http://irail.be/stations/NMBS/008866258"], ["http://irail.be/stations/NMBS/008811213", "http://irail.be/stations/NMBS/008819406"], ["http://irail.be/stations/NMBS/008871712", "http://irail.be/stations/NMBS/008882248"], ["http://irail.be/stations/NMBS/008841004", "http://irail.be/stations/NMBS/008842002"], ["http://irail.be/stations/NMBS/008844008", "http://irail.be/stations/NMBS/008844347"], ["http://irail.be/stations/NMBS/008010316", "http://irail.be/stations/NMBS/008015345"], ["http://irail.be/stations/NMBS/008811718", "http://irail.be/stations/NMBS/008811726"], ["http://irail.be/stations/NMBS/008872553", "http://irail.be/stations/NMBS/008872587"], ["http://irail.be/stations/NMBS/008863842", "http://irail.be/stations/NMBS/008865615"], ["http://irail.be/stations/NMBS/008821717", "http://irail.be/stations/NMBS/008821865"], ["http://irail.be/stations/NMBS/008881000", "http://irail.be/stations/NMBS/008881315"], ["http://irail.be/stations/NMBS/008200940", "http://irail.be/stations/NMBS/008719203"], ["http://irail.be/stations/NMBS/008812153", "http://irail.be/stations/NMBS/008812260"], ["http://irail.be/stations/NMBS/008400424", "http://irail.be/stations/NMBS/008400426"], ["http://irail.be/stations/NMBS/008886504", "http://irail.be/stations/NMBS/008886553"], ["http://irail.be/stations/NMBS/008879004", "http://irail.be/stations/NMBS/008881406"], ["http://irail.be/stations/NMBS/008883113", "http://irail.be/stations/NMBS/008883436"], ["http://irail.be/stations/NMBS/008200101", "http://irail.be/stations/NMBS/008200510"], ["http://irail.be/stations/NMBS/008711184", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008811460", "http://irail.be/stations/NMBS/008811510"], ["http://irail.be/stations/NMBS/008731388", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008842663", "http://irail.be/stations/NMBS/008842846"], ["http://irail.be/stations/NMBS/008893534", "http://irail.be/stations/NMBS/008894201"], ["http://irail.be/stations/NMBS/008892601", "http://irail.be/stations/NMBS/008892734"], ["http://irail.be/stations/NMBS/008863842", "http://irail.be/stations/NMBS/008863867"], ["http://irail.be/stations/NMBS/008811270", "http://irail.be/stations/NMBS/008811288"], ["http://irail.be/stations/NMBS/008872009", "http://irail.be/stations/NMBS/008872066"], ["http://irail.be/stations/NMBS/008895489", "http://irail.be/stations/NMBS/008895877"], ["http://irail.be/stations/NMBS/008015345", "http://irail.be/stations/NMBS/008015458"], ["http://irail.be/stations/NMBS/008833308", "http://irail.be/stations/NMBS/008861432"], ["http://irail.be/stations/NMBS/008892031", "http://irail.be/stations/NMBS/008893260"], ["http://irail.be/stations/NMBS/008845146", "http://irail.be/stations/NMBS/008864469"], ["http://irail.be/stations/NMBS/008883436", "http://irail.be/stations/NMBS/008886561"], ["http://irail.be/stations/NMBS/008866175", "http://irail.be/stations/NMBS/008866845"], ["http://irail.be/stations/NMBS/008821196", "http://irail.be/stations/NMBS/008824232"], ["http://irail.be/stations/NMBS/008821519", "http://irail.be/stations/NMBS/008821543"], ["http://irail.be/stations/NMBS/008843133", "http://irail.be/stations/NMBS/008847258"], ["http://irail.be/stations/NMBS/008842689", "http://irail.be/stations/NMBS/008842754"], ["http://irail.be/stations/NMBS/008811007", "http://irail.be/stations/NMBS/008811163"], ["http://irail.be/stations/NMBS/008895505", "http://irail.be/stations/NMBS/008895612"], ["http://irail.be/stations/NMBS/008011068", "http://irail.be/stations/NMBS/008032572"], ["http://irail.be/stations/NMBS/008864006", "http://irail.be/stations/NMBS/008864832"], ["http://irail.be/stations/NMBS/008842036", "http://irail.be/stations/NMBS/008842630"], ["http://irail.be/stations/NMBS/008863354", "http://irail.be/stations/NMBS/008864964"], ["http://irail.be/stations/NMBS/008400180", "http://irail.be/stations/NMBS/008400561"], ["http://irail.be/stations/NMBS/008865565", "http://irail.be/stations/NMBS/008866845"], ["http://irail.be/stations/NMBS/008891157", "http://irail.be/stations/NMBS/008893708"], ["http://irail.be/stations/NMBS/008811411", "http://irail.be/stations/NMBS/008814464"], ["http://irail.be/stations/NMBS/008833266", "http://irail.be/stations/NMBS/008833274"], ["http://irail.be/stations/NMBS/008831401", "http://irail.be/stations/NMBS/008833449"], ["http://irail.be/stations/NMBS/008895455", "http://irail.be/stations/NMBS/008895745"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008894821"], ["http://irail.be/stations/NMBS/008882230", "http://irail.be/stations/NMBS/008882339"], ["http://irail.be/stations/NMBS/008812161", "http://irail.be/stations/NMBS/008893518"], ["http://irail.be/stations/NMBS/008884335", "http://irail.be/stations/NMBS/008884715"], ["http://irail.be/stations/NMBS/008776290", "http://irail.be/stations/NMBS/008776302"], ["http://irail.be/stations/NMBS/008891009", "http://irail.be/stations/NMBS/008891033"], ["http://irail.be/stations/NMBS/008881158", "http://irail.be/stations/NMBS/008881166"], ["http://irail.be/stations/NMBS/008886041", "http://irail.be/stations/NMBS/008886587"], ["http://irail.be/stations/NMBS/008200136", "http://irail.be/stations/NMBS/008849072"], ["http://irail.be/stations/NMBS/008871605", "http://irail.be/stations/NMBS/008879004"], ["http://irail.be/stations/NMBS/008814126", "http://irail.be/stations/NMBS/008814449"], ["http://irail.be/stations/NMBS/008861200", "http://irail.be/stations/NMBS/008861515"], ["http://irail.be/stations/NMBS/008814241", "http://irail.be/stations/NMBS/008871332"], ["http://irail.be/stations/NMBS/008842838", "http://irail.be/stations/NMBS/008842853"], ["http://irail.be/stations/NMBS/008893534", "http://irail.be/stations/NMBS/008895067"], ["http://irail.be/stations/NMBS/008871100", "http://irail.be/stations/NMBS/008872066"], ["http://irail.be/stations/NMBS/008892254", "http://irail.be/stations/NMBS/008896909"], ["http://irail.be/stations/NMBS/008884335", "http://irail.be/stations/NMBS/008884350"], ["http://irail.be/stations/NMBS/008811106", "http://irail.be/stations/NMBS/008811163"], ["http://irail.be/stations/NMBS/008811163", "http://irail.be/stations/NMBS/008811197"], ["http://irail.be/stations/NMBS/008777300", "http://irail.be/stations/NMBS/008778100"], ["http://irail.be/stations/NMBS/008881505", "http://irail.be/stations/NMBS/008884335"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008821519"], ["http://irail.be/stations/NMBS/008210014", "http://irail.be/stations/NMBS/008719100"], ["http://irail.be/stations/NMBS/008865227", "http://irail.be/stations/NMBS/008865565"], ["http://irail.be/stations/NMBS/008864816", "http://irail.be/stations/NMBS/008864824"], ["http://irail.be/stations/NMBS/008895778", "http://irail.be/stations/NMBS/008895836"], ["http://irail.be/stations/NMBS/008844206", "http://irail.be/stations/NMBS/008844321"], ["http://irail.be/stations/NMBS/008775605", "http://irail.be/stations/NMBS/008775767"], ["http://irail.be/stations/NMBS/008832433", "http://irail.be/stations/NMBS/008833266"], ["http://irail.be/stations/NMBS/008892106", "http://irail.be/stations/NMBS/008892643"], ["http://irail.be/stations/NMBS/008811817", "http://irail.be/stations/NMBS/008861549"], ["http://irail.be/stations/NMBS/008891702", "http://irail.be/stations/NMBS/008892320"], ["http://irail.be/stations/NMBS/008885068", "http://irail.be/stations/NMBS/008885753"], ["http://irail.be/stations/NMBS/008844644", "http://irail.be/stations/NMBS/008849023"], ["http://irail.be/stations/NMBS/008811742", "http://irail.be/stations/NMBS/008861523"], ["http://irail.be/stations/NMBS/008811304", "http://irail.be/stations/NMBS/008813003"], ["http://irail.be/stations/NMBS/008863503", "http://irail.be/stations/NMBS/008863818"], ["http://irail.be/stations/NMBS/008811528", "http://irail.be/stations/NMBS/008811536"], ["http://irail.be/stations/NMBS/008814142", "http://irail.be/stations/NMBS/008814159"], ["http://irail.be/stations/NMBS/008812112", "http://irail.be/stations/NMBS/008812146"], ["http://irail.be/stations/NMBS/008841434", "http://irail.be/stations/NMBS/008843323"], ["http://irail.be/stations/NMBS/008842846", "http://irail.be/stations/NMBS/008843240"], ["http://irail.be/stations/NMBS/008896115", "http://irail.be/stations/NMBS/008896925"], ["http://irail.be/stations/NMBS/008811197", "http://irail.be/stations/NMBS/008811205"], ["http://irail.be/stations/NMBS/008895208", "http://irail.be/stations/NMBS/008895240"], ["http://irail.be/stations/NMBS/008400219", "http://irail.be/stations/NMBS/008400424"], ["http://irail.be/stations/NMBS/008845146", "http://irail.be/stations/NMBS/008849072"], ["http://irail.be/stations/NMBS/008822053", "http://irail.be/stations/NMBS/008822251"], ["http://irail.be/stations/NMBS/008891553", "http://irail.be/stations/NMBS/008891645"], ["http://irail.be/stations/NMBS/008015458", "http://irail.be/stations/NMBS/008015588"], ["http://irail.be/stations/NMBS/008871811", "http://irail.be/stations/NMBS/008873379"], ["http://irail.be/stations/NMBS/008871829", "http://irail.be/stations/NMBS/008871837"], ["http://irail.be/stations/NMBS/008400131", "http://irail.be/stations/NMBS/008821907"], ["http://irail.be/stations/NMBS/008871837", "http://irail.be/stations/NMBS/008873379"], ["http://irail.be/stations/NMBS/008821600", "http://irail.be/stations/NMBS/008821634"], ["http://irail.be/stations/NMBS/008822251", "http://irail.be/stations/NMBS/008822269"], ["http://irail.be/stations/NMBS/008831039", "http://irail.be/stations/NMBS/008841434"], ["http://irail.be/stations/NMBS/008200100", "http://irail.be/stations/NMBS/008200101"], ["http://irail.be/stations/NMBS/008871415", "http://irail.be/stations/NMBS/008871514"], ["http://irail.be/stations/NMBS/008881166", "http://irail.be/stations/NMBS/008881315"], ["http://irail.be/stations/NMBS/008881174", "http://irail.be/stations/NMBS/008883121"], ["http://irail.be/stations/NMBS/008864436", "http://irail.be/stations/NMBS/008865110"], ["http://irail.be/stations/NMBS/008841319", "http://irail.be/stations/NMBS/008843224"], ["http://irail.be/stations/NMBS/008728105", "http://irail.be/stations/NMBS/008728654"], ["http://irail.be/stations/NMBS/007015440", "http://irail.be/stations/NMBS/008400280"], ["http://irail.be/stations/NMBS/008728671", "http://irail.be/stations/NMBS/008728686"], ["http://irail.be/stations/NMBS/008728686", "http://irail.be/stations/NMBS/008889045"], ["http://irail.be/stations/NMBS/008814001", "http://irail.be/stations/NMBS/008815040"], ["http://irail.be/stations/NMBS/008811197", "http://irail.be/stations/NMBS/008811403"], ["http://irail.be/stations/NMBS/008400219", "http://irail.be/stations/NMBS/008400426"], ["http://irail.be/stations/NMBS/008774176", "http://irail.be/stations/NMBS/008774177"], ["http://irail.be/stations/NMBS/008881463", "http://irail.be/stations/NMBS/008882206"], ["http://irail.be/stations/NMBS/008881562", "http://irail.be/stations/NMBS/008884004"], ["http://irail.be/stations/NMBS/008812260", "http://irail.be/stations/NMBS/008895091"], ["http://irail.be/stations/NMBS/008822814", "http://irail.be/stations/NMBS/008822848"], ["http://irail.be/stations/NMBS/008892007", "http://irail.be/stations/NMBS/008893211"], ["http://irail.be/stations/NMBS/008896396", "http://irail.be/stations/NMBS/008896412"], ["http://irail.be/stations/NMBS/008814209", "http://irail.be/stations/NMBS/008814241"], ["http://irail.be/stations/NMBS/008811825", "http://irail.be/stations/NMBS/008861549"], ["http://irail.be/stations/NMBS/008775500", "http://irail.be/stations/NMBS/008775544"], ["http://irail.be/stations/NMBS/008812062", "http://irail.be/stations/NMBS/008812112"], ["http://irail.be/stations/NMBS/008719100", "http://irail.be/stations/NMBS/008721222"], ["http://irail.be/stations/NMBS/008015588", "http://irail.be/stations/NMBS/008200128"], ["http://irail.be/stations/NMBS/008814134", "http://irail.be/stations/NMBS/008814449"], ["http://irail.be/stations/NMBS/008841202", "http://irail.be/stations/NMBS/008841673"], ["http://irail.be/stations/NMBS/008811528", "http://irail.be/stations/NMBS/008811726"], ["http://irail.be/stations/NMBS/008881174", "http://irail.be/stations/NMBS/008881406"], ["http://irail.be/stations/NMBS/008777320", "http://irail.be/stations/NMBS/008778400"], ["http://irail.be/stations/NMBS/008883311", "http://irail.be/stations/NMBS/008883436"], ["http://irail.be/stations/NMBS/008871381", "http://irail.be/stations/NMBS/008871514"], ["http://irail.be/stations/NMBS/008866654", "http://irail.be/stations/NMBS/008866662"], ["http://irail.be/stations/NMBS/008892734", "http://irail.be/stations/NMBS/008896230"], ["http://irail.be/stations/NMBS/008873312", "http://irail.be/stations/NMBS/008874054"], ["http://irail.be/stations/NMBS/008893542", "http://irail.be/stations/NMBS/008894201"], ["http://irail.be/stations/NMBS/008833670", "http://irail.be/stations/NMBS/008863446"], ["http://irail.be/stations/NMBS/008814209", "http://irail.be/stations/NMBS/008883808"], ["http://irail.be/stations/NMBS/008881505", "http://irail.be/stations/NMBS/008881562"], ["http://irail.be/stations/NMBS/008871688", "http://irail.be/stations/NMBS/008873379"], ["http://irail.be/stations/NMBS/008866530", "http://irail.be/stations/NMBS/008866662"], ["http://irail.be/stations/NMBS/008772202", "http://irail.be/stations/NMBS/008772319"], ["http://irail.be/stations/NMBS/008821865", "http://irail.be/stations/NMBS/008833233"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008821196"], ["http://irail.be/stations/NMBS/008842846", "http://irail.be/stations/NMBS/008843208"], ["http://irail.be/stations/NMBS/008885068", "http://irail.be/stations/NMBS/008896230"], ["http://irail.be/stations/NMBS/008774172", "http://irail.be/stations/NMBS/008775762"], ["http://irail.be/stations/NMBS/008841525", "http://irail.be/stations/NMBS/008842002"], ["http://irail.be/stations/NMBS/008891116", "http://irail.be/stations/NMBS/008892254"], ["http://irail.be/stations/NMBS/008892734", "http://irail.be/stations/NMBS/008896149"], ["http://irail.be/stations/NMBS/008832003", "http://irail.be/stations/NMBS/008832250"], ["http://irail.be/stations/NMBS/008881562", "http://irail.be/stations/NMBS/008881570"], ["http://irail.be/stations/NMBS/008886066", "http://irail.be/stations/NMBS/008886074"], ["http://irail.be/stations/NMBS/008866605", "http://irail.be/stations/NMBS/008866662"], ["http://irail.be/stations/NMBS/008891314", "http://irail.be/stations/NMBS/008891702"], ["http://irail.be/stations/NMBS/008874716", "http://irail.be/stations/NMBS/008874724"], ["http://irail.be/stations/NMBS/008831039", "http://irail.be/stations/NMBS/008831112"], ["http://irail.be/stations/NMBS/008812229", "http://irail.be/stations/NMBS/008814365"], ["http://irail.be/stations/NMBS/008864436", "http://irail.be/stations/NMBS/008864451"], ["http://irail.be/stations/NMBS/008821907", "http://irail.be/stations/NMBS/008832409"], ["http://irail.be/stations/NMBS/008841319", "http://irail.be/stations/NMBS/008843208"], ["http://irail.be/stations/NMBS/008774172", "http://irail.be/stations/NMBS/008774177"], ["http://irail.be/stations/NMBS/008811403", "http://irail.be/stations/NMBS/008813037"], ["http://irail.be/stations/NMBS/008814340", "http://irail.be/stations/NMBS/008814357"], ["http://irail.be/stations/NMBS/008841525", "http://irail.be/stations/NMBS/008841558"], ["http://irail.be/stations/NMBS/008895570", "http://irail.be/stations/NMBS/008895711"], ["http://irail.be/stations/NMBS/008821311", "http://irail.be/stations/NMBS/008821600"], ["http://irail.be/stations/NMBS/008892304", "http://irail.be/stations/NMBS/008892320"], ["http://irail.be/stations/NMBS/008884640", "http://irail.be/stations/NMBS/008886009"], ["http://irail.be/stations/NMBS/008822228", "http://irail.be/stations/NMBS/008822343"], ["http://irail.be/stations/NMBS/008871688", "http://irail.be/stations/NMBS/008871811"], ["http://irail.be/stations/NMBS/008400280", "http://irail.be/stations/NMBS/008400530"], ["http://irail.be/stations/NMBS/008893062", "http://irail.be/stations/NMBS/008893070"], ["http://irail.be/stations/NMBS/008861119", "http://irail.be/stations/NMBS/008863008"], ["http://irail.be/stations/NMBS/008841202", "http://irail.be/stations/NMBS/008841319"], ["http://irail.be/stations/NMBS/008891165", "http://irail.be/stations/NMBS/008892106"], ["http://irail.be/stations/NMBS/008844628", "http://irail.be/stations/NMBS/008845146"], ["http://irail.be/stations/NMBS/008814167", "http://irail.be/stations/NMBS/008814175"], ["http://irail.be/stations/NMBS/008863867", "http://irail.be/stations/NMBS/008875002"], ["http://irail.be/stations/NMBS/008731388", "http://irail.be/stations/NMBS/008892338"], ["http://irail.be/stations/NMBS/008728673", "http://irail.be/stations/NMBS/008889011"], ["http://irail.be/stations/NMBS/008893039", "http://irail.be/stations/NMBS/008894151"], ["http://irail.be/stations/NMBS/008891140", "http://irail.be/stations/NMBS/008893708"], ["http://irail.be/stations/NMBS/008832003", "http://irail.be/stations/NMBS/008832565"], ["http://irail.be/stations/NMBS/008200130", "http://irail.be/stations/NMBS/008200133"], ["http://irail.be/stations/NMBS/008893401", "http://irail.be/stations/NMBS/008893518"], ["http://irail.be/stations/NMBS/008884632", "http://irail.be/stations/NMBS/008886041"], ["http://irail.be/stations/NMBS/008811171", "http://irail.be/stations/NMBS/008811197"], ["http://irail.be/stations/NMBS/008891033", "http://irail.be/stations/NMBS/008891652"], ["http://irail.be/stations/NMBS/008843323", "http://irail.be/stations/NMBS/008864436"], ["http://irail.be/stations/NMBS/008821022", "http://irail.be/stations/NMBS/008821154"], ["http://irail.be/stations/NMBS/008821071", "http://irail.be/stations/NMBS/008821105"], ["http://irail.be/stations/NMBS/008863446", "http://irail.be/stations/NMBS/008863461"], ["http://irail.be/stations/NMBS/008895430", "http://irail.be/stations/NMBS/008895448"], ["http://irail.be/stations/NMBS/008871217", "http://irail.be/stations/NMBS/008871373"], ["http://irail.be/stations/NMBS/008814241", "http://irail.be/stations/NMBS/008814258"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821709"], ["http://irail.be/stations/NMBS/008841665", "http://irail.be/stations/NMBS/008843901"], ["http://irail.be/stations/NMBS/008821709", "http://irail.be/stations/NMBS/008821857"], ["http://irail.be/stations/NMBS/008884319", "http://irail.be/stations/NMBS/008884632"], ["http://irail.be/stations/NMBS/008871308", "http://irail.be/stations/NMBS/008872413"], ["http://irail.be/stations/NMBS/008896008", "http://irail.be/stations/NMBS/008896230"], ["http://irail.be/stations/NMBS/008821196", "http://irail.be/stations/NMBS/008894821"], ["http://irail.be/stations/NMBS/008864410", "http://irail.be/stations/NMBS/008864436"], ["http://irail.be/stations/NMBS/008872520", "http://irail.be/stations/NMBS/008874583"], ["http://irail.be/stations/NMBS/008821600", "http://irail.be/stations/NMBS/008822459"], ["http://irail.be/stations/NMBS/008863818", "http://irail.be/stations/NMBS/008863834"], ["http://irail.be/stations/NMBS/008812047", "http://irail.be/stations/NMBS/008812211"], ["http://irail.be/stations/NMBS/008866845", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008861150", "http://irail.be/stations/NMBS/008874724"], ["http://irail.be/stations/NMBS/008822475", "http://irail.be/stations/NMBS/008822517"], ["http://irail.be/stations/NMBS/008841525", "http://irail.be/stations/NMBS/008843901"], ["http://irail.be/stations/NMBS/008895620", "http://irail.be/stations/NMBS/008895745"], ["http://irail.be/stations/NMBS/008863115", "http://irail.be/stations/NMBS/008863354"], ["http://irail.be/stations/NMBS/008814449", "http://irail.be/stations/NMBS/008814464"], ["http://irail.be/stations/NMBS/008814357", "http://irail.be/stations/NMBS/008814423"], ["http://irail.be/stations/NMBS/008811189", "http://irail.be/stations/NMBS/008811213"], ["http://irail.be/stations/NMBS/008861127", "http://irail.be/stations/NMBS/008861440"], ["http://irail.be/stations/NMBS/008842648", "http://irail.be/stations/NMBS/008842655"], ["http://irail.be/stations/NMBS/008821444", "http://irail.be/stations/NMBS/008821519"], ["http://irail.be/stations/NMBS/008881570", "http://irail.be/stations/NMBS/008884541"], ["http://irail.be/stations/NMBS/008861143", "http://irail.be/stations/NMBS/008873122"], ["http://irail.be/stations/NMBS/008891157", "http://irail.be/stations/NMBS/008892288"], ["http://irail.be/stations/NMBS/008844628", "http://irail.be/stations/NMBS/008849072"], ["http://irail.be/stations/NMBS/008871225", "http://irail.be/stations/NMBS/008871373"], ["http://irail.be/stations/NMBS/008400426", "http://irail.be/stations/NMBS/008849023"], ["http://irail.be/stations/NMBS/008811429", "http://irail.be/stations/NMBS/008814472"], ["http://irail.be/stations/NMBS/008728654", "http://irail.be/stations/NMBS/008896396"], ["http://irail.be/stations/NMBS/008832045", "http://irail.be/stations/NMBS/008832409"], ["http://irail.be/stations/NMBS/008814365", "http://irail.be/stations/NMBS/008814373"], ["http://irail.be/stations/NMBS/008841608", "http://irail.be/stations/NMBS/008841665"], ["http://irail.be/stations/NMBS/008862018", "http://irail.be/stations/NMBS/008866118"], ["http://irail.be/stations/NMBS/008776302", "http://irail.be/stations/NMBS/008777500"], ["http://irail.be/stations/NMBS/008842754", "http://irail.be/stations/NMBS/008844404"], ["http://irail.be/stations/NMBS/008814332", "http://irail.be/stations/NMBS/008883808"], ["http://irail.be/stations/NMBS/008884632", "http://irail.be/stations/NMBS/008884640"], ["http://irail.be/stations/NMBS/008863842", "http://irail.be/stations/NMBS/008864824"], ["http://irail.be/stations/NMBS/008892627", "http://irail.be/stations/NMBS/008892692"], ["http://irail.be/stations/NMBS/008814134", "http://irail.be/stations/NMBS/008814142"], ["http://irail.be/stations/NMBS/008821030", "http://irail.be/stations/NMBS/008821063"], ["http://irail.be/stations/NMBS/008200101", "http://irail.be/stations/NMBS/008200102"], ["http://irail.be/stations/NMBS/008811510", "http://irail.be/stations/NMBS/008811528"], ["http://irail.be/stations/NMBS/008718206", "http://irail.be/stations/NMBS/008774164"], ["http://irail.be/stations/NMBS/008871605", "http://irail.be/stations/NMBS/008871662"], ["http://irail.be/stations/NMBS/008821337", "http://irail.be/stations/NMBS/008821634"], ["http://irail.be/stations/NMBS/008811270", "http://irail.be/stations/NMBS/008833134"], ["http://irail.be/stations/NMBS/008842754", "http://irail.be/stations/NMBS/008845229"], ["http://irail.be/stations/NMBS/008892106", "http://irail.be/stations/NMBS/008896149"], ["http://irail.be/stations/NMBS/008821451", "http://irail.be/stations/NMBS/008821519"], ["http://irail.be/stations/NMBS/008895802", "http://irail.be/stations/NMBS/008895836"], ["http://irail.be/stations/NMBS/008864956", "http://irail.be/stations/NMBS/008864964"], ["http://irail.be/stations/NMBS/008891009", "http://irail.be/stations/NMBS/008891116"], ["http://irail.be/stations/NMBS/008885753", "http://irail.be/stations/NMBS/008896008"], ["http://irail.be/stations/NMBS/008400131", "http://irail.be/stations/NMBS/008400526"], ["http://irail.be/stations/NMBS/008400280", "http://irail.be/stations/NMBS/008894508"], ["http://irail.be/stations/NMBS/008718206", "http://irail.be/stations/NMBS/008719203"], ["http://irail.be/stations/NMBS/008814209", "http://irail.be/stations/NMBS/008871373"], ["http://irail.be/stations/NMBS/008866175", "http://irail.be/stations/NMBS/008866407"], ["http://irail.be/stations/NMBS/008892452", "http://irail.be/stations/NMBS/008896735"], ["http://irail.be/stations/NMBS/008873007", "http://irail.be/stations/NMBS/008873320"], ["http://irail.be/stations/NMBS/008871712", "http://irail.be/stations/NMBS/008882339"], ["http://irail.be/stations/NMBS/008842663", "http://irail.be/stations/NMBS/008843166"], ["http://irail.be/stations/NMBS/008844008", "http://irail.be/stations/NMBS/008844339"], ["http://irail.be/stations/NMBS/008829009", "http://irail.be/stations/NMBS/008894748"], ["http://irail.be/stations/NMBS/008811601", "http://irail.be/stations/NMBS/008811676"], ["http://irail.be/stations/NMBS/008872553", "http://irail.be/stations/NMBS/008872611"], ["http://irail.be/stations/NMBS/008881000", "http://irail.be/stations/NMBS/008881406"], ["http://irail.be/stations/NMBS/008831310", "http://irail.be/stations/NMBS/008841459"], ["http://irail.be/stations/NMBS/008775100", "http://irail.be/stations/NMBS/008775500"], ["http://irail.be/stations/NMBS/008812252", "http://irail.be/stations/NMBS/008812260"], ["http://irail.be/stations/NMBS/008886504", "http://irail.be/stations/NMBS/008886546"], ["http://irail.be/stations/NMBS/008832243", "http://irail.be/stations/NMBS/008832334"], ["http://irail.be/stations/NMBS/008731896", "http://irail.be/stations/NMBS/008777500"], ["http://irail.be/stations/NMBS/008821857", "http://irail.be/stations/NMBS/008821865"], ["http://irail.be/stations/NMBS/008883113", "http://irail.be/stations/NMBS/008883311"], ["http://irail.be/stations/NMBS/008886546", "http://irail.be/stations/NMBS/008886553"], ["http://irail.be/stations/NMBS/008832227", "http://irail.be/stations/NMBS/008832243"], ["http://irail.be/stations/NMBS/008822160", "http://irail.be/stations/NMBS/008894433"], ["http://irail.be/stations/NMBS/008829009", "http://irail.be/stations/NMBS/008894714"], ["http://irail.be/stations/NMBS/008895612", "http://irail.be/stations/NMBS/008895711"], ["http://irail.be/stations/NMBS/008894672", "http://irail.be/stations/NMBS/008894714"], ["http://irail.be/stations/NMBS/008892601", "http://irail.be/stations/NMBS/008892908"], ["http://irail.be/stations/NMBS/008863842", "http://irail.be/stations/NMBS/008864337"], ["http://irail.be/stations/NMBS/008812021", "http://irail.be/stations/NMBS/008822053"], ["http://irail.be/stations/NMBS/008833308", "http://irail.be/stations/NMBS/008861424"], ["http://irail.be/stations/NMBS/008892056", "http://irail.be/stations/NMBS/008892650"], ["http://irail.be/stations/NMBS/008883436", "http://irail.be/stations/NMBS/008886553"], ["http://irail.be/stations/NMBS/008844057", "http://irail.be/stations/NMBS/008844545"], ["http://irail.be/stations/NMBS/008831138", "http://irail.be/stations/NMBS/008841731"], ["http://irail.be/stations/NMBS/008821857", "http://irail.be/stations/NMBS/008833233"], ["http://irail.be/stations/NMBS/008881406", "http://irail.be/stations/NMBS/008881562"], ["http://irail.be/stations/NMBS/008842002", "http://irail.be/stations/NMBS/008847258"], ["http://irail.be/stations/NMBS/008842689", "http://irail.be/stations/NMBS/008842705"], ["http://irail.be/stations/NMBS/007015400", "http://irail.be/stations/NMBS/008400280"], ["http://irail.be/stations/NMBS/008895463", "http://irail.be/stations/NMBS/008895877"], ["http://irail.be/stations/NMBS/008861523", "http://irail.be/stations/NMBS/008861531"], ["http://irail.be/stations/NMBS/008864006", "http://irail.be/stations/NMBS/008864824"], ["http://irail.be/stations/NMBS/008885001", "http://irail.be/stations/NMBS/008892908"], ["http://irail.be/stations/NMBS/008893559", "http://irail.be/stations/NMBS/008894151"], ["http://irail.be/stations/NMBS/008842036", "http://irail.be/stations/NMBS/008842051"], ["http://irail.be/stations/NMBS/008811510", "http://irail.be/stations/NMBS/008814266"], ["http://irail.be/stations/NMBS/008866407", "http://irail.be/stations/NMBS/008866845"], ["http://irail.be/stations/NMBS/008895844", "http://irail.be/stations/NMBS/008895851"], ["http://irail.be/stations/NMBS/008015458", "http://irail.be/stations/NMBS/008200134"], ["http://irail.be/stations/NMBS/008892692", "http://irail.be/stations/NMBS/008893070"], ["http://irail.be/stations/NMBS/008861200", "http://irail.be/stations/NMBS/008861317"], ["http://irail.be/stations/NMBS/008400424", "http://irail.be/stations/NMBS/008831765"], ["http://irail.be/stations/NMBS/008842853", "http://irail.be/stations/NMBS/008864451"], ["http://irail.be/stations/NMBS/008861440", "http://irail.be/stations/NMBS/008863008"], ["http://irail.be/stations/NMBS/008822160", "http://irail.be/stations/NMBS/008893443"], ["http://irail.be/stations/NMBS/008893013", "http://irail.be/stations/NMBS/008893039"], ["http://irail.be/stations/NMBS/008884335", "http://irail.be/stations/NMBS/008884855"], ["http://irail.be/stations/NMBS/008863503", "http://irail.be/stations/NMBS/008864931"], ["http://irail.be/stations/NMBS/008864352", "http://irail.be/stations/NMBS/008864832"], ["http://irail.be/stations/NMBS/008892205", "http://irail.be/stations/NMBS/008892403"], ["http://irail.be/stations/NMBS/008500010", "http://irail.be/stations/NMBS/008721202"], ["http://irail.be/stations/NMBS/008893567", "http://irail.be/stations/NMBS/008894151"], ["http://irail.be/stations/NMBS/008892056", "http://irail.be/stations/NMBS/008893260"], ["http://irail.be/stations/NMBS/008861143", "http://irail.be/stations/NMBS/008861150"], ["http://irail.be/stations/NMBS/008881463", "http://irail.be/stations/NMBS/008882362"], ["http://irail.be/stations/NMBS/008884004", "http://irail.be/stations/NMBS/008884632"], ["http://irail.be/stations/NMBS/008865110", "http://irail.be/stations/NMBS/008866258"], ["http://irail.be/stations/NMBS/008731901", "http://irail.be/stations/NMBS/008775100"], ["http://irail.be/stations/NMBS/008811106", "http://irail.be/stations/NMBS/008811171"], ["http://irail.be/stations/NMBS/008861135", "http://irail.be/stations/NMBS/008863560"]] \ No newline at end of file diff --git a/src/analytics/footpaths/tec_pairs.json b/src/analytics/footpaths/tec_pairs.json new file mode 100644 index 00000000..0a4576a1 --- /dev/null +++ b/src/analytics/footpaths/tec_pairs.json @@ -0,0 +1 @@ +[["https://tec.openplanner.team/stops/Lgrbonn3", "https://tec.openplanner.team/stops/Lgrlimi4"], ["https://tec.openplanner.team/stops/LFEmala2", "https://tec.openplanner.team/stops/X597amb"], ["https://tec.openplanner.team/stops/Bosqgar2", "https://tec.openplanner.team/stops/Bosqsam2"], ["https://tec.openplanner.team/stops/LMApape1", "https://tec.openplanner.team/stops/LMAroch4"], ["https://tec.openplanner.team/stops/X793aka", "https://tec.openplanner.team/stops/X793aoa"], ["https://tec.openplanner.team/stops/Ltibord1", "https://tec.openplanner.team/stops/Ltimarr2"], ["https://tec.openplanner.team/stops/H3so166a", "https://tec.openplanner.team/stops/H3so166d"], ["https://tec.openplanner.team/stops/N517add", "https://tec.openplanner.team/stops/NR30aab"], ["https://tec.openplanner.team/stops/Cfmcoro2", "https://tec.openplanner.team/stops/Cfojoli1"], ["https://tec.openplanner.team/stops/Cfoermi1", "https://tec.openplanner.team/stops/Cfometr2"], ["https://tec.openplanner.team/stops/Cmazone1", "https://tec.openplanner.team/stops/Cmmplac3"], ["https://tec.openplanner.team/stops/Ldihusq2", "https://tec.openplanner.team/stops/Ldipl--5"], ["https://tec.openplanner.team/stops/Llgandr2", "https://tec.openplanner.team/stops/Llgbavr1"], ["https://tec.openplanner.team/stops/Bborche1", "https://tec.openplanner.team/stops/Bitrfsc1"], ["https://tec.openplanner.team/stops/N118aia", "https://tec.openplanner.team/stops/N118aib"], ["https://tec.openplanner.team/stops/LESmagr1", "https://tec.openplanner.team/stops/LESmart2"], ["https://tec.openplanner.team/stops/N553aac", "https://tec.openplanner.team/stops/N553aka"], ["https://tec.openplanner.team/stops/LhPhale1", "https://tec.openplanner.team/stops/LhPhale2"], ["https://tec.openplanner.team/stops/Bwavbva1", "https://tec.openplanner.team/stops/Bwavlon1"], ["https://tec.openplanner.team/stops/LVBmonu2", "https://tec.openplanner.team/stops/LVBvill1"], ["https://tec.openplanner.team/stops/Ccppn2", "https://tec.openplanner.team/stops/H2ch110b"], ["https://tec.openplanner.team/stops/H1br123b", "https://tec.openplanner.team/stops/H1vg358b"], ["https://tec.openplanner.team/stops/LEMfort1", "https://tec.openplanner.team/stops/LEMfort2"], ["https://tec.openplanner.team/stops/Lghpero2", "https://tec.openplanner.team/stops/Lghsimo1"], ["https://tec.openplanner.team/stops/LLbvith2", "https://tec.openplanner.team/stops/LrEkais2"], ["https://tec.openplanner.team/stops/LPTgran1", "https://tec.openplanner.team/stops/LPTgran2"], ["https://tec.openplanner.team/stops/X602ara", "https://tec.openplanner.team/stops/X653abb"], ["https://tec.openplanner.team/stops/Lemlacr2", "https://tec.openplanner.team/stops/Lemparc2"], ["https://tec.openplanner.team/stops/LbTkran1", "https://tec.openplanner.team/stops/LbTmons1"], ["https://tec.openplanner.team/stops/LMOchen1", "https://tec.openplanner.team/stops/LMOcorn1"], ["https://tec.openplanner.team/stops/X791aca", "https://tec.openplanner.team/stops/X791acb"], ["https://tec.openplanner.team/stops/H2tr245a", "https://tec.openplanner.team/stops/H2tr247b"], ["https://tec.openplanner.team/stops/N511aaa", "https://tec.openplanner.team/stops/N511aha"], ["https://tec.openplanner.team/stops/X354aia", "https://tec.openplanner.team/stops/X858agb"], ["https://tec.openplanner.team/stops/H2ha129b", "https://tec.openplanner.team/stops/H2ha129c"], ["https://tec.openplanner.team/stops/Cmltemp1", "https://tec.openplanner.team/stops/Cmlvpla1"], ["https://tec.openplanner.team/stops/X727aea", "https://tec.openplanner.team/stops/X746aab"], ["https://tec.openplanner.team/stops/H4bf108a", "https://tec.openplanner.team/stops/H4bn173a"], ["https://tec.openplanner.team/stops/Cctkais1", "https://tec.openplanner.team/stops/Ccurtra1"], ["https://tec.openplanner.team/stops/Crofrio2", "https://tec.openplanner.team/stops/Crorpai1"], ["https://tec.openplanner.team/stops/N152aba", "https://tec.openplanner.team/stops/N152ade"], ["https://tec.openplanner.team/stops/Lcebail2", "https://tec.openplanner.team/stops/Lceembo2"], ["https://tec.openplanner.team/stops/H2fa101b", "https://tec.openplanner.team/stops/H2fa103a"], ["https://tec.openplanner.team/stops/LHMhind1", "https://tec.openplanner.team/stops/LHMhind2"], ["https://tec.openplanner.team/stops/H4va233b", "https://tec.openplanner.team/stops/H4va234b"], ["https://tec.openplanner.team/stops/Cpcathe1", "https://tec.openplanner.team/stops/Cpcathe2"], ["https://tec.openplanner.team/stops/Lagpass1", "https://tec.openplanner.team/stops/Lempass1"], ["https://tec.openplanner.team/stops/X758abb", "https://tec.openplanner.team/stops/X758ajb"], ["https://tec.openplanner.team/stops/H1ms942a", "https://tec.openplanner.team/stops/H1ni321b"], ["https://tec.openplanner.team/stops/LFmlens2", "https://tec.openplanner.team/stops/LTyhapp2"], ["https://tec.openplanner.team/stops/X397aba", "https://tec.openplanner.team/stops/X901aya"], ["https://tec.openplanner.team/stops/N309aab", "https://tec.openplanner.team/stops/N365aca"], ["https://tec.openplanner.team/stops/N127afa", "https://tec.openplanner.team/stops/N134aga"], ["https://tec.openplanner.team/stops/H1gc123b", "https://tec.openplanner.team/stops/H1go174a"], ["https://tec.openplanner.team/stops/Lgrchar2", "https://tec.openplanner.team/stops/Lgrramp1"], ["https://tec.openplanner.team/stops/X547abb", "https://tec.openplanner.team/stops/X547atb"], ["https://tec.openplanner.team/stops/LARauto2", "https://tec.openplanner.team/stops/LRItour1"], ["https://tec.openplanner.team/stops/H5ma181a", "https://tec.openplanner.team/stops/H5ma181b"], ["https://tec.openplanner.team/stops/X734aob", "https://tec.openplanner.team/stops/X734apb"], ["https://tec.openplanner.team/stops/Bbstcoi2", "https://tec.openplanner.team/stops/Bbsthpl1"], ["https://tec.openplanner.team/stops/Lmoboeu4", "https://tec.openplanner.team/stops/Lmogoff2"], ["https://tec.openplanner.team/stops/H4er122a", "https://tec.openplanner.team/stops/H4er123a"], ["https://tec.openplanner.team/stops/LmNha222", "https://tec.openplanner.team/stops/LmNstaa2"], ["https://tec.openplanner.team/stops/LDLheid1", "https://tec.openplanner.team/stops/LLNogne1"], ["https://tec.openplanner.team/stops/X822aab", "https://tec.openplanner.team/stops/X822apb"], ["https://tec.openplanner.team/stops/Bniv4co1", "https://tec.openplanner.team/stops/Bniv4co2"], ["https://tec.openplanner.team/stops/LPbchat2", "https://tec.openplanner.team/stops/LPbover2"], ["https://tec.openplanner.team/stops/N545aaa", "https://tec.openplanner.team/stops/N553ana"], ["https://tec.openplanner.team/stops/X850ada", "https://tec.openplanner.team/stops/X850adb"], ["https://tec.openplanner.team/stops/LSGfoua1", "https://tec.openplanner.team/stops/LSGfoua2"], ["https://tec.openplanner.team/stops/Ccypn1", "https://tec.openplanner.team/stops/Ccypn2"], ["https://tec.openplanner.team/stops/Cmlsana1", "https://tec.openplanner.team/stops/Cmlsana2"], ["https://tec.openplanner.team/stops/Llieg--3", "https://tec.openplanner.team/stops/Lligare1"], ["https://tec.openplanner.team/stops/Llgatla1", "https://tec.openplanner.team/stops/Llgbaya2"], ["https://tec.openplanner.team/stops/Blhufro2", "https://tec.openplanner.team/stops/Blhunys3"], ["https://tec.openplanner.team/stops/Cladura4", "https://tec.openplanner.team/stops/NC23aba"], ["https://tec.openplanner.team/stops/LHGbeur1", "https://tec.openplanner.team/stops/LHGbeur2"], ["https://tec.openplanner.team/stops/H2mg150a", "https://tec.openplanner.team/stops/H2mg151a"], ["https://tec.openplanner.team/stops/LREelse1", "https://tec.openplanner.team/stops/LREsech1"], ["https://tec.openplanner.team/stops/N145aeb", "https://tec.openplanner.team/stops/N145aec"], ["https://tec.openplanner.team/stops/Lflmaxi2", "https://tec.openplanner.team/stops/Lrecroi2"], ["https://tec.openplanner.team/stops/Lrcprin6", "https://tec.openplanner.team/stops/Lvopaqu1"], ["https://tec.openplanner.team/stops/N551ana", "https://tec.openplanner.team/stops/N551apa"], ["https://tec.openplanner.team/stops/Lagrask2", "https://tec.openplanner.team/stops/Lagstre1"], ["https://tec.openplanner.team/stops/N204aja", "https://tec.openplanner.team/stops/N204ajb"], ["https://tec.openplanner.team/stops/H4ae102b", "https://tec.openplanner.team/stops/H4po127a"], ["https://tec.openplanner.team/stops/X911ada", "https://tec.openplanner.team/stops/X911adb"], ["https://tec.openplanner.team/stops/LFMstat1", "https://tec.openplanner.team/stops/LFMstat2"], ["https://tec.openplanner.team/stops/Bnivpso1", "https://tec.openplanner.team/stops/Bnivpso2"], ["https://tec.openplanner.team/stops/X727aba", "https://tec.openplanner.team/stops/X767aga"], ["https://tec.openplanner.team/stops/LeLgrie2", "https://tec.openplanner.team/stops/LkAbahn*"], ["https://tec.openplanner.team/stops/Llgform2", "https://tec.openplanner.team/stops/Llggill2"], ["https://tec.openplanner.team/stops/N218abb", "https://tec.openplanner.team/stops/N331aea"], ["https://tec.openplanner.team/stops/Bgdhcsh2", "https://tec.openplanner.team/stops/Blineco1"], ["https://tec.openplanner.team/stops/X766afa", "https://tec.openplanner.team/stops/X766afb"], ["https://tec.openplanner.team/stops/H1te185a", "https://tec.openplanner.team/stops/H1te185b"], ["https://tec.openplanner.team/stops/LHXmonu2", "https://tec.openplanner.team/stops/LTPcamp2"], ["https://tec.openplanner.team/stops/Ccoconf1", "https://tec.openplanner.team/stops/Ccoconf2"], ["https://tec.openplanner.team/stops/N529abc", "https://tec.openplanner.team/stops/N529abd"], ["https://tec.openplanner.team/stops/LBY4che2", "https://tec.openplanner.team/stops/LHEelva2"], ["https://tec.openplanner.team/stops/LAUbour3", "https://tec.openplanner.team/stops/LAUbour4"], ["https://tec.openplanner.team/stops/LbO52--2", "https://tec.openplanner.team/stops/LdEschw1"], ["https://tec.openplanner.team/stops/LORpave2", "https://tec.openplanner.team/stops/LTychev1"], ["https://tec.openplanner.team/stops/X614aaa", "https://tec.openplanner.team/stops/X614ala"], ["https://tec.openplanner.team/stops/LESchpl1", "https://tec.openplanner.team/stops/LPOeg--2"], ["https://tec.openplanner.team/stops/Baudhde2", "https://tec.openplanner.team/stops/Bwbfeta1"], ["https://tec.openplanner.team/stops/X636aba", "https://tec.openplanner.team/stops/X636aca"], ["https://tec.openplanner.team/stops/H1fr123a", "https://tec.openplanner.team/stops/H1fr128b"], ["https://tec.openplanner.team/stops/H1hh110a", "https://tec.openplanner.team/stops/H1hh113a"], ["https://tec.openplanner.team/stops/H4ve134a", "https://tec.openplanner.team/stops/H4ve136b"], ["https://tec.openplanner.team/stops/X775ahb", "https://tec.openplanner.team/stops/X775aib"], ["https://tec.openplanner.team/stops/LSEcent1", "https://tec.openplanner.team/stops/LSEvill1"], ["https://tec.openplanner.team/stops/LGetroi2", "https://tec.openplanner.team/stops/LVkchap2"], ["https://tec.openplanner.team/stops/Cmehame1", "https://tec.openplanner.team/stops/Cmehame2"], ["https://tec.openplanner.team/stops/X721aoa", "https://tec.openplanner.team/stops/X786aaa"], ["https://tec.openplanner.team/stops/N501dva", "https://tec.openplanner.team/stops/N501kpa"], ["https://tec.openplanner.team/stops/N510aea", "https://tec.openplanner.team/stops/N510aeb"], ["https://tec.openplanner.team/stops/Buccobs2", "https://tec.openplanner.team/stops/Buccptj1"], ["https://tec.openplanner.team/stops/NL76ajb", "https://tec.openplanner.team/stops/NL76ala"], ["https://tec.openplanner.team/stops/LCnvill1", "https://tec.openplanner.team/stops/LLUgend1"], ["https://tec.openplanner.team/stops/X741anb", "https://tec.openplanner.team/stops/X741aoa"], ["https://tec.openplanner.team/stops/LBichen2", "https://tec.openplanner.team/stops/LBivill1"], ["https://tec.openplanner.team/stops/N337afb", "https://tec.openplanner.team/stops/N337aga"], ["https://tec.openplanner.team/stops/LFMvoge*", "https://tec.openplanner.team/stops/LFPho8a1"], ["https://tec.openplanner.team/stops/H2ll192a", "https://tec.openplanner.team/stops/H2ll192b"], ["https://tec.openplanner.team/stops/Llgcfra1", "https://tec.openplanner.team/stops/Llglaur1"], ["https://tec.openplanner.team/stops/Cbctile", "https://tec.openplanner.team/stops/Clfmonu3"], ["https://tec.openplanner.team/stops/N232ayb", "https://tec.openplanner.team/stops/N232boa"], ["https://tec.openplanner.team/stops/Lbhhomv2", "https://tec.openplanner.team/stops/Lbhsion1"], ["https://tec.openplanner.team/stops/LCAeg--1", "https://tec.openplanner.team/stops/LCAwals1"], ["https://tec.openplanner.team/stops/N207aaa", "https://tec.openplanner.team/stops/N207aab"], ["https://tec.openplanner.team/stops/N132aea", "https://tec.openplanner.team/stops/N132aga"], ["https://tec.openplanner.team/stops/LeUbahn2", "https://tec.openplanner.team/stops/LeUbahn5"], ["https://tec.openplanner.team/stops/H1je222a", "https://tec.openplanner.team/stops/H1je222b"], ["https://tec.openplanner.team/stops/N501jca", "https://tec.openplanner.team/stops/N501jcb"], ["https://tec.openplanner.team/stops/Cmlbeau4", "https://tec.openplanner.team/stops/Cmlbrac2"], ["https://tec.openplanner.team/stops/H4ce108b", "https://tec.openplanner.team/stops/H4or115a"], ["https://tec.openplanner.team/stops/X359adb", "https://tec.openplanner.team/stops/X359agb"], ["https://tec.openplanner.team/stops/X619ada", "https://tec.openplanner.team/stops/X619adb"], ["https://tec.openplanner.team/stops/N242aea", "https://tec.openplanner.team/stops/N242aga"], ["https://tec.openplanner.team/stops/X621aab", "https://tec.openplanner.team/stops/X622afb"], ["https://tec.openplanner.team/stops/X879aia", "https://tec.openplanner.team/stops/X879aib"], ["https://tec.openplanner.team/stops/N236aib", "https://tec.openplanner.team/stops/N236ama"], ["https://tec.openplanner.team/stops/X601cna", "https://tec.openplanner.team/stops/X601cub"], ["https://tec.openplanner.team/stops/X725ama", "https://tec.openplanner.team/stops/X725arb"], ["https://tec.openplanner.team/stops/LJedonc3", "https://tec.openplanner.team/stops/LJetrih2"], ["https://tec.openplanner.team/stops/Lmleg--1", "https://tec.openplanner.team/stops/Lmlpech2"], ["https://tec.openplanner.team/stops/Ccopeti2", "https://tec.openplanner.team/stops/Ccostan2"], ["https://tec.openplanner.team/stops/LHEgare1", "https://tec.openplanner.team/stops/LHEhv--2"], ["https://tec.openplanner.team/stops/H1hr121d", "https://tec.openplanner.team/stops/H1hr125a"], ["https://tec.openplanner.team/stops/N519akb", "https://tec.openplanner.team/stops/N519alb"], ["https://tec.openplanner.team/stops/H1ms245a", "https://tec.openplanner.team/stops/H1ms245b"], ["https://tec.openplanner.team/stops/LHApthe1", "https://tec.openplanner.team/stops/LHApthe2"], ["https://tec.openplanner.team/stops/Lansarm2", "https://tec.openplanner.team/stops/Lmomarr1"], ["https://tec.openplanner.team/stops/H4mo164a", "https://tec.openplanner.team/stops/H4mo181b"], ["https://tec.openplanner.team/stops/Lchplai1", "https://tec.openplanner.team/stops/Lchplai2"], ["https://tec.openplanner.team/stops/Bborppa2", "https://tec.openplanner.team/stops/Bfelpmo1"], ["https://tec.openplanner.team/stops/LBaeg--1", "https://tec.openplanner.team/stops/LNEgare*"], ["https://tec.openplanner.team/stops/H4fo116b", "https://tec.openplanner.team/stops/H4fo117b"], ["https://tec.openplanner.team/stops/Bnvmfba1", "https://tec.openplanner.team/stops/N515arb"], ["https://tec.openplanner.team/stops/Lmnrame1", "https://tec.openplanner.team/stops/Lmnrame2"], ["https://tec.openplanner.team/stops/LSNecol3", "https://tec.openplanner.team/stops/LSNmoul1"], ["https://tec.openplanner.team/stops/N155aca", "https://tec.openplanner.team/stops/N155ada"], ["https://tec.openplanner.team/stops/LWeec--1", "https://tec.openplanner.team/stops/LWepost4"], ["https://tec.openplanner.team/stops/Baegegl2", "https://tec.openplanner.team/stops/NR38abb"], ["https://tec.openplanner.team/stops/H1cu120a", "https://tec.openplanner.team/stops/H1cu120b"], ["https://tec.openplanner.team/stops/H4be102a", "https://tec.openplanner.team/stops/H4be102b"], ["https://tec.openplanner.team/stops/X898ada", "https://tec.openplanner.team/stops/X898aob"], ["https://tec.openplanner.team/stops/LAMhopi2", "https://tec.openplanner.team/stops/LAMhopi3"], ["https://tec.openplanner.team/stops/Bleugar1", "https://tec.openplanner.team/stops/Btiegar2"], ["https://tec.openplanner.team/stops/N524aka", "https://tec.openplanner.team/stops/N524ama"], ["https://tec.openplanner.team/stops/LRObarr2", "https://tec.openplanner.team/stops/LWLeg--1"], ["https://tec.openplanner.team/stops/X618aia", "https://tec.openplanner.team/stops/X618akb"], ["https://tec.openplanner.team/stops/Llgvero1", "https://tec.openplanner.team/stops/Llgvero2"], ["https://tec.openplanner.team/stops/Cjucpui1", "https://tec.openplanner.team/stops/Cjucpui2"], ["https://tec.openplanner.team/stops/LHVeg--1", "https://tec.openplanner.team/stops/LHVeg--2"], ["https://tec.openplanner.team/stops/Bwavlav1", "https://tec.openplanner.team/stops/Bwavlav2"], ["https://tec.openplanner.team/stops/LFPloob1", "https://tec.openplanner.team/stops/LSJgrae1"], ["https://tec.openplanner.team/stops/X725afc", "https://tec.openplanner.team/stops/X725bcb"], ["https://tec.openplanner.team/stops/X657afa", "https://tec.openplanner.team/stops/X657alb"], ["https://tec.openplanner.team/stops/X801aha", "https://tec.openplanner.team/stops/X801bpa"], ["https://tec.openplanner.team/stops/Cmygrbr2", "https://tec.openplanner.team/stops/Cmygrbr3"], ["https://tec.openplanner.team/stops/LAnvien2", "https://tec.openplanner.team/stops/LCF2spa1"], ["https://tec.openplanner.team/stops/X728ada", "https://tec.openplanner.team/stops/X729aac"], ["https://tec.openplanner.team/stops/X890aca", "https://tec.openplanner.team/stops/X890aea"], ["https://tec.openplanner.team/stops/LhSheid1", "https://tec.openplanner.team/stops/LhSheid2"], ["https://tec.openplanner.team/stops/N501eea", "https://tec.openplanner.team/stops/N501kjb"], ["https://tec.openplanner.team/stops/LbTgeme2", "https://tec.openplanner.team/stops/LnIschw1"], ["https://tec.openplanner.team/stops/LMOecsp2", "https://tec.openplanner.team/stops/LMOecsp3"], ["https://tec.openplanner.team/stops/H4fr390a", "https://tec.openplanner.team/stops/H4ty348a"], ["https://tec.openplanner.team/stops/X608aya", "https://tec.openplanner.team/stops/X608ayb"], ["https://tec.openplanner.team/stops/Bottgar2", "https://tec.openplanner.team/stops/Bottgar3"], ["https://tec.openplanner.team/stops/Lghmaha2", "https://tec.openplanner.team/stops/Lghmaha3"], ["https://tec.openplanner.team/stops/X954aeb", "https://tec.openplanner.team/stops/X954aha"], ["https://tec.openplanner.team/stops/X741abd", "https://tec.openplanner.team/stops/X758aka"], ["https://tec.openplanner.team/stops/Bjauwar2", "https://tec.openplanner.team/stops/NR21aja"], ["https://tec.openplanner.team/stops/N232aqa", "https://tec.openplanner.team/stops/N232bna"], ["https://tec.openplanner.team/stops/LcRmuhl1", "https://tec.openplanner.team/stops/LwTkabi4"], ["https://tec.openplanner.team/stops/N232asa", "https://tec.openplanner.team/stops/N232asb"], ["https://tec.openplanner.team/stops/X870aga", "https://tec.openplanner.team/stops/X870aha"], ["https://tec.openplanner.team/stops/LVLgotr1", "https://tec.openplanner.team/stops/LVLmart1"], ["https://tec.openplanner.team/stops/Bolgeva1", "https://tec.openplanner.team/stops/Bolgfon2"], ["https://tec.openplanner.team/stops/Blindel3", "https://tec.openplanner.team/stops/Blindel5"], ["https://tec.openplanner.team/stops/N232bxb", "https://tec.openplanner.team/stops/N232byb"], ["https://tec.openplanner.team/stops/H4lp120a", "https://tec.openplanner.team/stops/H4lp120b"], ["https://tec.openplanner.team/stops/H1mv238a", "https://tec.openplanner.team/stops/H1mv240a"], ["https://tec.openplanner.team/stops/H4og213b", "https://tec.openplanner.team/stops/H4og215a"], ["https://tec.openplanner.team/stops/H1do116a", "https://tec.openplanner.team/stops/H1do126a"], ["https://tec.openplanner.team/stops/LSPclai2", "https://tec.openplanner.team/stops/LSPgend1"], ["https://tec.openplanner.team/stops/Cmmcomb1", "https://tec.openplanner.team/stops/Cmmcomb2"], ["https://tec.openplanner.team/stops/LHMhof-1", "https://tec.openplanner.team/stops/LMNswar1"], ["https://tec.openplanner.team/stops/H1hm174a", "https://tec.openplanner.team/stops/H1hm174b"], ["https://tec.openplanner.team/stops/Bsaucre2", "https://tec.openplanner.team/stops/N541aaa"], ["https://tec.openplanner.team/stops/LDAalbe2", "https://tec.openplanner.team/stops/LFethie2"], ["https://tec.openplanner.team/stops/Crsprai4", "https://tec.openplanner.team/stops/Crsrose2"], ["https://tec.openplanner.team/stops/X576aca", "https://tec.openplanner.team/stops/X576ada"], ["https://tec.openplanner.team/stops/N531aka", "https://tec.openplanner.team/stops/N531ana"], ["https://tec.openplanner.team/stops/Bgnvgir1", "https://tec.openplanner.team/stops/Blasren2"], ["https://tec.openplanner.team/stops/Crccarr1", "https://tec.openplanner.team/stops/NH03ada"], ["https://tec.openplanner.team/stops/H1hw125a", "https://tec.openplanner.team/stops/H1ls109b"], ["https://tec.openplanner.team/stops/Clsstpi1", "https://tec.openplanner.team/stops/H1ls107b"], ["https://tec.openplanner.team/stops/N131afb", "https://tec.openplanner.team/stops/N132aab"], ["https://tec.openplanner.team/stops/H5qu139a", "https://tec.openplanner.team/stops/H5qu145b"], ["https://tec.openplanner.team/stops/H1fr127a", "https://tec.openplanner.team/stops/H1fr127b"], ["https://tec.openplanner.team/stops/H5pe131a", "https://tec.openplanner.team/stops/H5pe131b"], ["https://tec.openplanner.team/stops/H1hc150b", "https://tec.openplanner.team/stops/H1hc151b"], ["https://tec.openplanner.team/stops/N501joa", "https://tec.openplanner.team/stops/N521adb"], ["https://tec.openplanner.team/stops/LVbpave1", "https://tec.openplanner.team/stops/NL77ana"], ["https://tec.openplanner.team/stops/X619aaa", "https://tec.openplanner.team/stops/X619amb"], ["https://tec.openplanner.team/stops/Cflecep1", "https://tec.openplanner.team/stops/NC23aab"], ["https://tec.openplanner.team/stops/LMTdeho1", "https://tec.openplanner.team/stops/LXftche1"], ["https://tec.openplanner.team/stops/H3bo103a", "https://tec.openplanner.team/stops/H3th130a"], ["https://tec.openplanner.team/stops/X991ada", "https://tec.openplanner.team/stops/X993aab"], ["https://tec.openplanner.team/stops/H4ty283b", "https://tec.openplanner.team/stops/H4ty312b"], ["https://tec.openplanner.team/stops/Bauddel2", "https://tec.openplanner.team/stops/Bwbfgar1"], ["https://tec.openplanner.team/stops/LMffoot1", "https://tec.openplanner.team/stops/LOtthie2"], ["https://tec.openplanner.team/stops/Bhenfla2", "https://tec.openplanner.team/stops/Brebrha2"], ["https://tec.openplanner.team/stops/X725avb", "https://tec.openplanner.team/stops/X725bba"], ["https://tec.openplanner.team/stops/Bdlmgla2", "https://tec.openplanner.team/stops/Bdlmgla4"], ["https://tec.openplanner.team/stops/H1te175b", "https://tec.openplanner.team/stops/H1te178a"], ["https://tec.openplanner.team/stops/H1cu114a", "https://tec.openplanner.team/stops/H1cu131b"], ["https://tec.openplanner.team/stops/X626agb", "https://tec.openplanner.team/stops/X626aha"], ["https://tec.openplanner.team/stops/Bwspmon4", "https://tec.openplanner.team/stops/Bwsppos1"], ["https://tec.openplanner.team/stops/H1al105a", "https://tec.openplanner.team/stops/H1al107a"], ["https://tec.openplanner.team/stops/Llgauxc2", "https://tec.openplanner.team/stops/Llgtir-1"], ["https://tec.openplanner.team/stops/N533ala", "https://tec.openplanner.team/stops/N533alf"], ["https://tec.openplanner.team/stops/Bbbksth1", "https://tec.openplanner.team/stops/Bhaawdr1"], ["https://tec.openplanner.team/stops/Lmnsech1", "https://tec.openplanner.team/stops/Lsmsech4"], ["https://tec.openplanner.team/stops/Bchgcha1", "https://tec.openplanner.team/stops/Bchgqve4"], ["https://tec.openplanner.team/stops/N501aob", "https://tec.openplanner.team/stops/N501bdb"], ["https://tec.openplanner.team/stops/LmHflor2", "https://tec.openplanner.team/stops/LmHumge1"], ["https://tec.openplanner.team/stops/LMfange1", "https://tec.openplanner.team/stops/LMfange2"], ["https://tec.openplanner.team/stops/Bbealou2", "https://tec.openplanner.team/stops/Bleugar1"], ["https://tec.openplanner.team/stops/N151aaa", "https://tec.openplanner.team/stops/N153aaa"], ["https://tec.openplanner.team/stops/LDpulve1", "https://tec.openplanner.team/stops/LDpzol-1"], ["https://tec.openplanner.team/stops/N539afa", "https://tec.openplanner.team/stops/N539afc"], ["https://tec.openplanner.team/stops/H4ga165b", "https://tec.openplanner.team/stops/H4ga171b"], ["https://tec.openplanner.team/stops/LAibego1", "https://tec.openplanner.team/stops/Lccuner2"], ["https://tec.openplanner.team/stops/LMAcite1", "https://tec.openplanner.team/stops/LMAroch3"], ["https://tec.openplanner.team/stops/Lfhpass2", "https://tec.openplanner.team/stops/Lsemany2"], ["https://tec.openplanner.team/stops/X840acb", "https://tec.openplanner.team/stops/X840ada"], ["https://tec.openplanner.team/stops/LaR1G--1", "https://tec.openplanner.team/stops/LmSluxh1"], ["https://tec.openplanner.team/stops/X982apb", "https://tec.openplanner.team/stops/X982bca"], ["https://tec.openplanner.team/stops/Croheig2", "https://tec.openplanner.team/stops/Crolach1"], ["https://tec.openplanner.team/stops/Cblbaiv1", "https://tec.openplanner.team/stops/Cmcegli1"], ["https://tec.openplanner.team/stops/N206aca", "https://tec.openplanner.team/stops/N206acb"], ["https://tec.openplanner.team/stops/LLagert*", "https://tec.openplanner.team/stops/LWscona1"], ["https://tec.openplanner.team/stops/Bwagpco1", "https://tec.openplanner.team/stops/Bwagpco2"], ["https://tec.openplanner.team/stops/Crolema1", "https://tec.openplanner.team/stops/Crolema2"], ["https://tec.openplanner.team/stops/LATcorn1", "https://tec.openplanner.team/stops/LATcorn2"], ["https://tec.openplanner.team/stops/Cfcbobr2", "https://tec.openplanner.team/stops/Cvrfema1"], ["https://tec.openplanner.team/stops/H2ca106b", "https://tec.openplanner.team/stops/H2ca111a"], ["https://tec.openplanner.team/stops/Brebrog2", "https://tec.openplanner.team/stops/H2pr117b"], ["https://tec.openplanner.team/stops/LsTgren1", "https://tec.openplanner.team/stops/LsTgren2"], ["https://tec.openplanner.team/stops/N124acb", "https://tec.openplanner.team/stops/N149ala"], ["https://tec.openplanner.team/stops/Llgbass2", "https://tec.openplanner.team/stops/Llgomal1"], ["https://tec.openplanner.team/stops/N501hba", "https://tec.openplanner.team/stops/N501hly"], ["https://tec.openplanner.team/stops/Cmastfi1", "https://tec.openplanner.team/stops/Cmocalv4"], ["https://tec.openplanner.team/stops/LAWlonc1", "https://tec.openplanner.team/stops/LAWxhen1"], ["https://tec.openplanner.team/stops/X908aib", "https://tec.openplanner.team/stops/X908aja"], ["https://tec.openplanner.team/stops/X903aea", "https://tec.openplanner.team/stops/X903aeb"], ["https://tec.openplanner.team/stops/LRemorr2", "https://tec.openplanner.team/stops/LRemorr3"], ["https://tec.openplanner.team/stops/Cctbois1", "https://tec.openplanner.team/stops/Cctlimi1"], ["https://tec.openplanner.team/stops/Bjaugar3", "https://tec.openplanner.team/stops/Bjauwar1"], ["https://tec.openplanner.team/stops/LWZeg--2", "https://tec.openplanner.team/stops/X261aab"], ["https://tec.openplanner.team/stops/X640ada", "https://tec.openplanner.team/stops/X640aoa"], ["https://tec.openplanner.team/stops/N101arb", "https://tec.openplanner.team/stops/N153aab"], ["https://tec.openplanner.team/stops/Btlbtbe1", "https://tec.openplanner.team/stops/Btlbtbe3"], ["https://tec.openplanner.team/stops/N201aca", "https://tec.openplanner.team/stops/N201asa"], ["https://tec.openplanner.team/stops/Blingar4", "https://tec.openplanner.team/stops/Bracrpe2"], ["https://tec.openplanner.team/stops/N160acb", "https://tec.openplanner.team/stops/N160aha"], ["https://tec.openplanner.team/stops/H4ir161b", "https://tec.openplanner.team/stops/H4og209a"], ["https://tec.openplanner.team/stops/Balswwe2", "https://tec.openplanner.team/stops/Bwaunou1"], ["https://tec.openplanner.team/stops/Bbldass2", "https://tec.openplanner.team/stops/Bbldmun1"], ["https://tec.openplanner.team/stops/H1do129a", "https://tec.openplanner.team/stops/H1wi153b"], ["https://tec.openplanner.team/stops/Cfmwaut2", "https://tec.openplanner.team/stops/Ctrpn2"], ["https://tec.openplanner.team/stops/LLrlour2", "https://tec.openplanner.team/stops/LLrquar2"], ["https://tec.openplanner.team/stops/H1er105a", "https://tec.openplanner.team/stops/H1er106a"], ["https://tec.openplanner.team/stops/X640aga", "https://tec.openplanner.team/stops/X640ahb"], ["https://tec.openplanner.team/stops/Lceavia2", "https://tec.openplanner.team/stops/Lcebarr1"], ["https://tec.openplanner.team/stops/LCHrhou1", "https://tec.openplanner.team/stops/Ldicorb1"], ["https://tec.openplanner.team/stops/N548afa", "https://tec.openplanner.team/stops/N548aka"], ["https://tec.openplanner.team/stops/H1po137a", "https://tec.openplanner.team/stops/H5gr137b"], ["https://tec.openplanner.team/stops/H4ce104b", "https://tec.openplanner.team/stops/H4ce108a"], ["https://tec.openplanner.team/stops/Lmnfawe2", "https://tec.openplanner.team/stops/Lmnsech1"], ["https://tec.openplanner.team/stops/X345aaa", "https://tec.openplanner.team/stops/X345aab"], ["https://tec.openplanner.team/stops/X822ana", "https://tec.openplanner.team/stops/X822aqa"], ["https://tec.openplanner.team/stops/X850aha", "https://tec.openplanner.team/stops/X850aoa"], ["https://tec.openplanner.team/stops/X608aka", "https://tec.openplanner.team/stops/X608ana"], ["https://tec.openplanner.team/stops/X908ama", "https://tec.openplanner.team/stops/X908anb"], ["https://tec.openplanner.team/stops/LCOcarr2", "https://tec.openplanner.team/stops/LCOcrom2"], ["https://tec.openplanner.team/stops/Cgxdeba1", "https://tec.openplanner.team/stops/Cgxwaut1"], ["https://tec.openplanner.team/stops/N357afa", "https://tec.openplanner.team/stops/X351acb"], ["https://tec.openplanner.team/stops/H1hr118a", "https://tec.openplanner.team/stops/H1hr118d"], ["https://tec.openplanner.team/stops/LCShoux1", "https://tec.openplanner.team/stops/LENengi2"], ["https://tec.openplanner.team/stops/LAMecse*", "https://tec.openplanner.team/stops/LAMpirk1"], ["https://tec.openplanner.team/stops/N323aab", "https://tec.openplanner.team/stops/N323abb"], ["https://tec.openplanner.team/stops/Cgdfoca1", "https://tec.openplanner.team/stops/Cgdrhau2"], ["https://tec.openplanner.team/stops/Bgnpjbe2", "https://tec.openplanner.team/stops/Bvxgegl2"], ["https://tec.openplanner.team/stops/Bbeaap11", "https://tec.openplanner.team/stops/Bmlnpab1"], ["https://tec.openplanner.team/stops/Lfhhosp1", "https://tec.openplanner.team/stops/Ljemeca1"], ["https://tec.openplanner.team/stops/LBlplac1", "https://tec.openplanner.team/stops/LCn4---1"], ["https://tec.openplanner.team/stops/Lpejonc2", "https://tec.openplanner.team/stops/Lpevesd2"], ["https://tec.openplanner.team/stops/N103aea", "https://tec.openplanner.team/stops/N103aeb"], ["https://tec.openplanner.team/stops/Bjodcad1", "https://tec.openplanner.team/stops/NR10aca"], ["https://tec.openplanner.team/stops/N340acb", "https://tec.openplanner.team/stops/N340aeb"], ["https://tec.openplanner.team/stops/Csecroi1", "https://tec.openplanner.team/stops/Csequew2"], ["https://tec.openplanner.team/stops/Llgguer1", "https://tec.openplanner.team/stops/Llgvinc2"], ["https://tec.openplanner.team/stops/LBDcarr1", "https://tec.openplanner.team/stops/LJEchat2"], ["https://tec.openplanner.team/stops/NL77aca", "https://tec.openplanner.team/stops/NL77adb"], ["https://tec.openplanner.team/stops/LSU50--2", "https://tec.openplanner.team/stops/LSUvill2"], ["https://tec.openplanner.team/stops/N534axa", "https://tec.openplanner.team/stops/N534bba"], ["https://tec.openplanner.team/stops/Llgongr1", "https://tec.openplanner.team/stops/Llgoutr1"], ["https://tec.openplanner.team/stops/LSXvill2", "https://tec.openplanner.team/stops/LTHroch1"], ["https://tec.openplanner.team/stops/Bvirbru2", "https://tec.openplanner.team/stops/Bvirpos1"], ["https://tec.openplanner.team/stops/N160aca", "https://tec.openplanner.team/stops/N160aga"], ["https://tec.openplanner.team/stops/Lagcler1", "https://tec.openplanner.team/stops/Lagjado1"], ["https://tec.openplanner.team/stops/Lverogi2", "https://tec.openplanner.team/stops/Lveyser1"], ["https://tec.openplanner.team/stops/LCschen2", "https://tec.openplanner.team/stops/LVBneuv2"], ["https://tec.openplanner.team/stops/NL72aaa", "https://tec.openplanner.team/stops/NL72abb"], ["https://tec.openplanner.team/stops/N214afb", "https://tec.openplanner.team/stops/N225aaa"], ["https://tec.openplanner.team/stops/LSBrouf2", "https://tec.openplanner.team/stops/LSktinc2"], ["https://tec.openplanner.team/stops/H1gi120c", "https://tec.openplanner.team/stops/H1gi120d"], ["https://tec.openplanner.team/stops/X954aea", "https://tec.openplanner.team/stops/X954afa"], ["https://tec.openplanner.team/stops/Csuegli", "https://tec.openplanner.team/stops/Csufrom5"], ["https://tec.openplanner.team/stops/N543bdb", "https://tec.openplanner.team/stops/N543bgc"], ["https://tec.openplanner.team/stops/Bucccal3", "https://tec.openplanner.team/stops/Buccdch2"], ["https://tec.openplanner.team/stops/N538adb", "https://tec.openplanner.team/stops/N542aib"], ["https://tec.openplanner.team/stops/NC14aga", "https://tec.openplanner.team/stops/NC14agb"], ["https://tec.openplanner.team/stops/Bnivrwi1", "https://tec.openplanner.team/stops/Bnivrwi2"], ["https://tec.openplanner.team/stops/X749adb", "https://tec.openplanner.team/stops/X749afb"], ["https://tec.openplanner.team/stops/N539aua", "https://tec.openplanner.team/stops/N539bfb"], ["https://tec.openplanner.team/stops/Ccpbrun2", "https://tec.openplanner.team/stops/H2ch110b"], ["https://tec.openplanner.team/stops/X917aab", "https://tec.openplanner.team/stops/X919aoa"], ["https://tec.openplanner.team/stops/X637aob", "https://tec.openplanner.team/stops/X652aab"], ["https://tec.openplanner.team/stops/LHNcoll2", "https://tec.openplanner.team/stops/LHNcreh1"], ["https://tec.openplanner.team/stops/Cgzcorn2", "https://tec.openplanner.team/stops/Cgzcour1"], ["https://tec.openplanner.team/stops/X342ahb", "https://tec.openplanner.team/stops/X354aab"], ["https://tec.openplanner.team/stops/H1ms270a", "https://tec.openplanner.team/stops/H1ob334a"], ["https://tec.openplanner.team/stops/LsHkirc2", "https://tec.openplanner.team/stops/LsHkreu4"], ["https://tec.openplanner.team/stops/H1qu100c", "https://tec.openplanner.team/stops/H1qu120b"], ["https://tec.openplanner.team/stops/Bbbksth1", "https://tec.openplanner.team/stops/Bhmmcsc1"], ["https://tec.openplanner.team/stops/LHGleje2", "https://tec.openplanner.team/stops/LHGtige1"], ["https://tec.openplanner.team/stops/N351ata", "https://tec.openplanner.team/stops/X351aba"], ["https://tec.openplanner.team/stops/LMschap2", "https://tec.openplanner.team/stops/LMspont1"], ["https://tec.openplanner.team/stops/Cjuecho1", "https://tec.openplanner.team/stops/Cjuhden1"], ["https://tec.openplanner.team/stops/H1he103b", "https://tec.openplanner.team/stops/H1he105a"], ["https://tec.openplanner.team/stops/N121adb", "https://tec.openplanner.team/stops/N121afb"], ["https://tec.openplanner.team/stops/Bgdhbvu2", "https://tec.openplanner.team/stops/LBegare2"], ["https://tec.openplanner.team/stops/X717aba", "https://tec.openplanner.team/stops/X718aab"], ["https://tec.openplanner.team/stops/Bnilcab1", "https://tec.openplanner.team/stops/Bnilpie1"], ["https://tec.openplanner.team/stops/Blimegl1", "https://tec.openplanner.team/stops/Blmlgar2"], ["https://tec.openplanner.team/stops/LTPcarr1", "https://tec.openplanner.team/stops/LTPgare*"], ["https://tec.openplanner.team/stops/X715aqa", "https://tec.openplanner.team/stops/X781aeb"], ["https://tec.openplanner.team/stops/Bmanfbg1", "https://tec.openplanner.team/stops/Bmanfbg2"], ["https://tec.openplanner.team/stops/Bbldvaa2", "https://tec.openplanner.team/stops/Bleugar1"], ["https://tec.openplanner.team/stops/X342acb", "https://tec.openplanner.team/stops/X342ada"], ["https://tec.openplanner.team/stops/Lsnfont2", "https://tec.openplanner.team/stops/Ltithie2"], ["https://tec.openplanner.team/stops/Lcebarr1", "https://tec.openplanner.team/stops/Lceconf2"], ["https://tec.openplanner.team/stops/X614ama", "https://tec.openplanner.team/stops/X614ana"], ["https://tec.openplanner.team/stops/LTowijk1", "https://tec.openplanner.team/stops/LTowijk2"], ["https://tec.openplanner.team/stops/Bsomtnd1", "https://tec.openplanner.team/stops/Bsomtnd2"], ["https://tec.openplanner.team/stops/Bbgelre1", "https://tec.openplanner.team/stops/Bwavbpi1"], ["https://tec.openplanner.team/stops/H4wu420a", "https://tec.openplanner.team/stops/H4wu420b"], ["https://tec.openplanner.team/stops/H4te256a", "https://tec.openplanner.team/stops/H4te256b"], ["https://tec.openplanner.team/stops/Cfcleco2", "https://tec.openplanner.team/stops/Cfcrdpr2"], ["https://tec.openplanner.team/stops/Brebgar2", "https://tec.openplanner.team/stops/Brebhos1"], ["https://tec.openplanner.team/stops/Btsleco1", "https://tec.openplanner.team/stops/Btsllnd2"], ["https://tec.openplanner.team/stops/X721ana", "https://tec.openplanner.team/stops/X721aqb"], ["https://tec.openplanner.team/stops/LATgill1", "https://tec.openplanner.team/stops/LHUmari1"], ["https://tec.openplanner.team/stops/N201aab", "https://tec.openplanner.team/stops/N201aqb"], ["https://tec.openplanner.team/stops/N573apb", "https://tec.openplanner.team/stops/N573ara"], ["https://tec.openplanner.team/stops/H4ag106a", "https://tec.openplanner.team/stops/H4ag107b"], ["https://tec.openplanner.team/stops/Clodrio1", "https://tec.openplanner.team/stops/Clodrio4"], ["https://tec.openplanner.team/stops/X833abb", "https://tec.openplanner.team/stops/X833acb"], ["https://tec.openplanner.team/stops/N308apa", "https://tec.openplanner.team/stops/N308apb"], ["https://tec.openplanner.team/stops/X752aaa", "https://tec.openplanner.team/stops/X752acb"], ["https://tec.openplanner.team/stops/X636ada", "https://tec.openplanner.team/stops/X636bia"], ["https://tec.openplanner.team/stops/X638aab", "https://tec.openplanner.team/stops/X638ajb"], ["https://tec.openplanner.team/stops/H2ll197b", "https://tec.openplanner.team/stops/H2ll267b"], ["https://tec.openplanner.team/stops/Livmoul2", "https://tec.openplanner.team/stops/LRachen2"], ["https://tec.openplanner.team/stops/N513bbc", "https://tec.openplanner.team/stops/N513bbd"], ["https://tec.openplanner.team/stops/X638aha", "https://tec.openplanner.team/stops/X638apb"], ["https://tec.openplanner.team/stops/LJEpaqu1", "https://tec.openplanner.team/stops/LJEverd1"], ["https://tec.openplanner.team/stops/X991aca", "https://tec.openplanner.team/stops/X991acb"], ["https://tec.openplanner.team/stops/H1je220c", "https://tec.openplanner.team/stops/H1je220d"], ["https://tec.openplanner.team/stops/LLbcafe2", "https://tec.openplanner.team/stops/LLbpt--1"], ["https://tec.openplanner.team/stops/X801ahb", "https://tec.openplanner.team/stops/X801bpa"], ["https://tec.openplanner.team/stops/N535aba", "https://tec.openplanner.team/stops/N535abb"], ["https://tec.openplanner.team/stops/Cgyobse1", "https://tec.openplanner.team/stops/Cgyobse2"], ["https://tec.openplanner.team/stops/N585aha", "https://tec.openplanner.team/stops/N585akb"], ["https://tec.openplanner.team/stops/Bbghepi2", "https://tec.openplanner.team/stops/Bbghsar2"], ["https://tec.openplanner.team/stops/X601dca", "https://tec.openplanner.team/stops/X612afb"], ["https://tec.openplanner.team/stops/LoUober2", "https://tec.openplanner.team/stops/LsBzent1"], ["https://tec.openplanner.team/stops/LLRrape2", "https://tec.openplanner.team/stops/LLRvill2"], ["https://tec.openplanner.team/stops/Lhrherm2", "https://tec.openplanner.team/stops/Lmigare1"], ["https://tec.openplanner.team/stops/Lhrbell2", "https://tec.openplanner.team/stops/Lhrpost1"], ["https://tec.openplanner.team/stops/Caiegli1", "https://tec.openplanner.team/stops/Cprcits1"], ["https://tec.openplanner.team/stops/LSLeg--2", "https://tec.openplanner.team/stops/LSLstra2"], ["https://tec.openplanner.team/stops/N531aja", "https://tec.openplanner.team/stops/N531asa"], ["https://tec.openplanner.team/stops/N111adb", "https://tec.openplanner.team/stops/N127aha"], ["https://tec.openplanner.team/stops/Lan14ve1", "https://tec.openplanner.team/stops/Lan14ve2"], ["https://tec.openplanner.team/stops/Lboeg--2", "https://tec.openplanner.team/stops/Lbosart1"], ["https://tec.openplanner.team/stops/H3bi112a", "https://tec.openplanner.team/stops/H3bi118b"], ["https://tec.openplanner.team/stops/LTPplco2", "https://tec.openplanner.team/stops/LTPsalm2"], ["https://tec.openplanner.team/stops/Lbrfune*", "https://tec.openplanner.team/stops/Lbrrobe2"], ["https://tec.openplanner.team/stops/X879aga", "https://tec.openplanner.team/stops/X879aka"], ["https://tec.openplanner.team/stops/X927acb", "https://tec.openplanner.team/stops/X986afa"], ["https://tec.openplanner.team/stops/N501iga", "https://tec.openplanner.team/stops/N501jab"], ["https://tec.openplanner.team/stops/Bhaleur2", "https://tec.openplanner.team/stops/Bhalrat1"], ["https://tec.openplanner.team/stops/LmIvale3", "https://tec.openplanner.team/stops/LmIvale4"], ["https://tec.openplanner.team/stops/H4ka180a", "https://tec.openplanner.team/stops/H4ka195a"], ["https://tec.openplanner.team/stops/X747aha", "https://tec.openplanner.team/stops/X749aaa"], ["https://tec.openplanner.team/stops/LVIacac1", "https://tec.openplanner.team/stops/LVItroi*"], ["https://tec.openplanner.team/stops/N150agb", "https://tec.openplanner.team/stops/N168aab"], ["https://tec.openplanner.team/stops/Lgrcrac2", "https://tec.openplanner.team/stops/Lgrmagd1"], ["https://tec.openplanner.team/stops/X806afb", "https://tec.openplanner.team/stops/X873acb"], ["https://tec.openplanner.team/stops/H1hl122b", "https://tec.openplanner.team/stops/H1ry137b"], ["https://tec.openplanner.team/stops/LOReg--1", "https://tec.openplanner.team/stops/LORlieg1"], ["https://tec.openplanner.team/stops/Bgzdegl4", "https://tec.openplanner.team/stops/Bgzdfpo2"], ["https://tec.openplanner.team/stops/H4hx112a", "https://tec.openplanner.team/stops/H4hx124a"], ["https://tec.openplanner.team/stops/H1ba100b", "https://tec.openplanner.team/stops/H1ba103b"], ["https://tec.openplanner.team/stops/Cbckios2", "https://tec.openplanner.team/stops/H1lo119a"], ["https://tec.openplanner.team/stops/Brebcha1", "https://tec.openplanner.team/stops/Brebraf1"], ["https://tec.openplanner.team/stops/LLebrux1", "https://tec.openplanner.team/stops/LODarbr1"], ["https://tec.openplanner.team/stops/LHoetie2", "https://tec.openplanner.team/stops/LHovill1"], ["https://tec.openplanner.team/stops/Lvearle1", "https://tec.openplanner.team/stops/Lvearle2"], ["https://tec.openplanner.team/stops/LLeec--1", "https://tec.openplanner.team/stops/X547atb"], ["https://tec.openplanner.team/stops/N534aba", "https://tec.openplanner.team/stops/N534caa"], ["https://tec.openplanner.team/stops/X617ada", "https://tec.openplanner.team/stops/X617adb"], ["https://tec.openplanner.team/stops/H4pq114a", "https://tec.openplanner.team/stops/H4pq118a"], ["https://tec.openplanner.team/stops/H4te253a", "https://tec.openplanner.team/stops/H4te253b"], ["https://tec.openplanner.team/stops/Cctberg1", "https://tec.openplanner.team/stops/Cctvill2"], ["https://tec.openplanner.team/stops/H1sd346a", "https://tec.openplanner.team/stops/H1sd347a"], ["https://tec.openplanner.team/stops/N134aac", "https://tec.openplanner.team/stops/N134abb"], ["https://tec.openplanner.team/stops/Lbocime2", "https://tec.openplanner.team/stops/Lboeg--1"], ["https://tec.openplanner.team/stops/Cmmpjou1", "https://tec.openplanner.team/stops/Cmmpjou2"], ["https://tec.openplanner.team/stops/LJSeg--1", "https://tec.openplanner.team/stops/LJSforg2"], ["https://tec.openplanner.team/stops/LAWaube1", "https://tec.openplanner.team/stops/LAWaube2"], ["https://tec.openplanner.team/stops/H1ho123a", "https://tec.openplanner.team/stops/H1wa157a"], ["https://tec.openplanner.team/stops/H1eu102a", "https://tec.openplanner.team/stops/H1eu104b"], ["https://tec.openplanner.team/stops/Cmgpthi1", "https://tec.openplanner.team/stops/Cmgtour2"], ["https://tec.openplanner.team/stops/LPbhaut2", "https://tec.openplanner.team/stops/LPbpeti2"], ["https://tec.openplanner.team/stops/X733aea", "https://tec.openplanner.team/stops/X733afb"], ["https://tec.openplanner.team/stops/Cfmgara1", "https://tec.openplanner.team/stops/Csoforc2"], ["https://tec.openplanner.team/stops/N521agb", "https://tec.openplanner.team/stops/N521aha"], ["https://tec.openplanner.team/stops/Claptcf1", "https://tec.openplanner.team/stops/NC23abb"], ["https://tec.openplanner.team/stops/LMIpatr3", "https://tec.openplanner.team/stops/LMIpatr4"], ["https://tec.openplanner.team/stops/H4ag101a", "https://tec.openplanner.team/stops/H4ag101b"], ["https://tec.openplanner.team/stops/X982aya", "https://tec.openplanner.team/stops/X982azb"], ["https://tec.openplanner.team/stops/NL37aja", "https://tec.openplanner.team/stops/NL37ajb"], ["https://tec.openplanner.team/stops/Bnilhau1", "https://tec.openplanner.team/stops/Bnilhau2"], ["https://tec.openplanner.team/stops/LFsec--2", "https://tec.openplanner.team/stops/LFsguil1"], ["https://tec.openplanner.team/stops/Bitrecu1", "https://tec.openplanner.team/stops/Bitrecu2"], ["https://tec.openplanner.team/stops/Cwfghis2", "https://tec.openplanner.team/stops/Cwfreta1"], ["https://tec.openplanner.team/stops/Ccigill2", "https://tec.openplanner.team/stops/NC02aub"], ["https://tec.openplanner.team/stops/H4ty336a", "https://tec.openplanner.team/stops/H4ty336b"], ["https://tec.openplanner.team/stops/Cgochfe1", "https://tec.openplanner.team/stops/CMfbru2"], ["https://tec.openplanner.team/stops/Csycant1", "https://tec.openplanner.team/stops/Csytouq2"], ["https://tec.openplanner.team/stops/LREaube2", "https://tec.openplanner.team/stops/LREheyd2"], ["https://tec.openplanner.team/stops/Bhakmkr2", "https://tec.openplanner.team/stops/Bneersa2"], ["https://tec.openplanner.team/stops/X901aha", "https://tec.openplanner.team/stops/X901bnb"], ["https://tec.openplanner.team/stops/N501jrb", "https://tec.openplanner.team/stops/N501lmb"], ["https://tec.openplanner.team/stops/Bcrbgro1", "https://tec.openplanner.team/stops/Bcrbtho2"], ["https://tec.openplanner.team/stops/LFTneur*", "https://tec.openplanner.team/stops/LNAbass2"], ["https://tec.openplanner.team/stops/Bcsgcou1", "https://tec.openplanner.team/stops/Bcsgcou2"], ["https://tec.openplanner.team/stops/N543bab", "https://tec.openplanner.team/stops/N543bib"], ["https://tec.openplanner.team/stops/Cmacoll1", "https://tec.openplanner.team/stops/Cmaroya2"], ["https://tec.openplanner.team/stops/N558ama", "https://tec.openplanner.team/stops/N558amc"], ["https://tec.openplanner.team/stops/LWZdtec2", "https://tec.openplanner.team/stops/LWZponh1"], ["https://tec.openplanner.team/stops/LXhmara1", "https://tec.openplanner.team/stops/LXhmara2"], ["https://tec.openplanner.team/stops/X739aha", "https://tec.openplanner.team/stops/X739ahb"], ["https://tec.openplanner.team/stops/H1ba117b", "https://tec.openplanner.team/stops/H1wl126a"], ["https://tec.openplanner.team/stops/Bhancom1", "https://tec.openplanner.team/stops/LHNgend1"], ["https://tec.openplanner.team/stops/X804aua", "https://tec.openplanner.team/stops/X804bgb"], ["https://tec.openplanner.team/stops/LFPdeme2", "https://tec.openplanner.team/stops/LFPzwaa2"], ["https://tec.openplanner.team/stops/X623acb", "https://tec.openplanner.team/stops/X623ajb"], ["https://tec.openplanner.team/stops/N117bab", "https://tec.openplanner.team/stops/N147aca"], ["https://tec.openplanner.team/stops/LlChebs1", "https://tec.openplanner.team/stops/LlChebs2"], ["https://tec.openplanner.team/stops/X739afa", "https://tec.openplanner.team/stops/X739afb"], ["https://tec.openplanner.team/stops/H1wi153a", "https://tec.openplanner.team/stops/H1wi153b"], ["https://tec.openplanner.team/stops/Ccyga3", "https://tec.openplanner.team/stops/Ccyga4"], ["https://tec.openplanner.team/stops/X750aab", "https://tec.openplanner.team/stops/X750aba"], ["https://tec.openplanner.team/stops/Lvefanc1", "https://tec.openplanner.team/stops/Lvehodi4"], ["https://tec.openplanner.team/stops/X986aea", "https://tec.openplanner.team/stops/X986ala"], ["https://tec.openplanner.team/stops/H1fr118a", "https://tec.openplanner.team/stops/H1no141a"], ["https://tec.openplanner.team/stops/N117ajb", "https://tec.openplanner.team/stops/N117akb"], ["https://tec.openplanner.team/stops/Bbstchv1", "https://tec.openplanner.team/stops/Bsmgmas2"], ["https://tec.openplanner.team/stops/Lfhrogn1", "https://tec.openplanner.team/stops/Ljerose4"], ["https://tec.openplanner.team/stops/Cjuheig4", "https://tec.openplanner.team/stops/Cjupier2"], ["https://tec.openplanner.team/stops/Cmofosb2", "https://tec.openplanner.team/stops/Croball2"], ["https://tec.openplanner.team/stops/Llggill3", "https://tec.openplanner.team/stops/Llghaye1"], ["https://tec.openplanner.team/stops/N244adb", "https://tec.openplanner.team/stops/N244aob"], ["https://tec.openplanner.team/stops/H1fr128a", "https://tec.openplanner.team/stops/H1fr128b"], ["https://tec.openplanner.team/stops/H4ru242b", "https://tec.openplanner.team/stops/H4wc373b"], ["https://tec.openplanner.team/stops/Cjuloos2", "https://tec.openplanner.team/stops/Cjumest1"], ["https://tec.openplanner.team/stops/LJAdeho3", "https://tec.openplanner.team/stops/LJAhanq2"], ["https://tec.openplanner.team/stops/Bbchcab1", "https://tec.openplanner.team/stops/Bbchrra2"], ["https://tec.openplanner.team/stops/H2sv212a", "https://tec.openplanner.team/stops/H2sv219b"], ["https://tec.openplanner.team/stops/X757aja", "https://tec.openplanner.team/stops/X757anb"], ["https://tec.openplanner.team/stops/LmTreic2", "https://tec.openplanner.team/stops/LmTzoll2"], ["https://tec.openplanner.team/stops/N569aba", "https://tec.openplanner.team/stops/N569aeb"], ["https://tec.openplanner.team/stops/Bthspha1", "https://tec.openplanner.team/stops/Bwancal2"], ["https://tec.openplanner.team/stops/N254aaa", "https://tec.openplanner.team/stops/N254aab"], ["https://tec.openplanner.team/stops/X658aab", "https://tec.openplanner.team/stops/X659aeb"], ["https://tec.openplanner.team/stops/Lalmitt2", "https://tec.openplanner.team/stops/LAWhein4"], ["https://tec.openplanner.team/stops/LWbboeg1", "https://tec.openplanner.team/stops/LWbboeg2"], ["https://tec.openplanner.team/stops/LaNmuhl2", "https://tec.openplanner.team/stops/LaNmuhl3"], ["https://tec.openplanner.team/stops/N111aea", "https://tec.openplanner.team/stops/N113aba"], ["https://tec.openplanner.team/stops/Lpedeta1", "https://tec.openplanner.team/stops/Lpedeta2"], ["https://tec.openplanner.team/stops/X750aka", "https://tec.openplanner.team/stops/X780aib"], ["https://tec.openplanner.team/stops/LHCbran1", "https://tec.openplanner.team/stops/LHCcroy1"], ["https://tec.openplanner.team/stops/LLncime1", "https://tec.openplanner.team/stops/LPUmer-1"], ["https://tec.openplanner.team/stops/LsVeite1", "https://tec.openplanner.team/stops/LsVprum4"], ["https://tec.openplanner.team/stops/Bwatrte1", "https://tec.openplanner.team/stops/Bwatrte2"], ["https://tec.openplanner.team/stops/H1cu119b", "https://tec.openplanner.team/stops/H1cu128a"], ["https://tec.openplanner.team/stops/Lkiblan1", "https://tec.openplanner.team/stops/Llgstev2"], ["https://tec.openplanner.team/stops/LAieg--3", "https://tec.openplanner.team/stops/LAigrim1"], ["https://tec.openplanner.team/stops/N534aca", "https://tec.openplanner.team/stops/N566ada"], ["https://tec.openplanner.team/stops/H4ty283a", "https://tec.openplanner.team/stops/H4ty283b"], ["https://tec.openplanner.team/stops/X817aeb", "https://tec.openplanner.team/stops/X820aha"], ["https://tec.openplanner.team/stops/Lsnhoco2", "https://tec.openplanner.team/stops/Ltithie2"], ["https://tec.openplanner.team/stops/X601azb", "https://tec.openplanner.team/stops/X601baa"], ["https://tec.openplanner.team/stops/X801asa", "https://tec.openplanner.team/stops/X801cob"], ["https://tec.openplanner.team/stops/LRArami1", "https://tec.openplanner.team/stops/LRArami2"], ["https://tec.openplanner.team/stops/LHrlorc1", "https://tec.openplanner.team/stops/LWbburn2"], ["https://tec.openplanner.team/stops/Lsecris2", "https://tec.openplanner.team/stops/Lsecris3"], ["https://tec.openplanner.team/stops/NL78abb", "https://tec.openplanner.team/stops/NL78acb"], ["https://tec.openplanner.team/stops/LARgare2", "https://tec.openplanner.team/stops/LARgare4"], ["https://tec.openplanner.team/stops/H4mx114a", "https://tec.openplanner.team/stops/H4mx116a"], ["https://tec.openplanner.team/stops/Lagbeno5", "https://tec.openplanner.team/stops/Llgrome1"], ["https://tec.openplanner.team/stops/X672aaa", "https://tec.openplanner.team/stops/X672adb"], ["https://tec.openplanner.team/stops/LrGzent1", "https://tec.openplanner.team/stops/LrGzent2"], ["https://tec.openplanner.team/stops/N260ada", "https://tec.openplanner.team/stops/N260adb"], ["https://tec.openplanner.team/stops/H1cd111b", "https://tec.openplanner.team/stops/H1cd112b"], ["https://tec.openplanner.team/stops/X910aha", "https://tec.openplanner.team/stops/X911akb"], ["https://tec.openplanner.team/stops/Lseaite1", "https://tec.openplanner.team/stops/Lsehaut2"], ["https://tec.openplanner.team/stops/Cctjoue1", "https://tec.openplanner.team/stops/Cctjoue4"], ["https://tec.openplanner.team/stops/Lvtfrai1", "https://tec.openplanner.team/stops/Lvtnico*"], ["https://tec.openplanner.team/stops/N542afb", "https://tec.openplanner.team/stops/N542asa"], ["https://tec.openplanner.team/stops/Cfcecol1", "https://tec.openplanner.team/stops/Cfcrdpr1"], ["https://tec.openplanner.team/stops/LBAcent2", "https://tec.openplanner.team/stops/LBAcere1"], ["https://tec.openplanner.team/stops/H2mm136b", "https://tec.openplanner.team/stops/H2mo131a"], ["https://tec.openplanner.team/stops/X770aca", "https://tec.openplanner.team/stops/X770agb"], ["https://tec.openplanner.team/stops/H4ar103a", "https://tec.openplanner.team/stops/H4ar103b"], ["https://tec.openplanner.team/stops/X318aca", "https://tec.openplanner.team/stops/X361afa"], ["https://tec.openplanner.team/stops/Bhengou2", "https://tec.openplanner.team/stops/Bhenmal2"], ["https://tec.openplanner.team/stops/Bmouegl1", "https://tec.openplanner.team/stops/Bmouegl2"], ["https://tec.openplanner.team/stops/LREairp1", "https://tec.openplanner.team/stops/LREsaul2"], ["https://tec.openplanner.team/stops/LeYloos1", "https://tec.openplanner.team/stops/LeYloos2"], ["https://tec.openplanner.team/stops/NL37aba", "https://tec.openplanner.team/stops/NL37abb"], ["https://tec.openplanner.team/stops/Cmmmarl1", "https://tec.openplanner.team/stops/Cmmmarl2"], ["https://tec.openplanner.team/stops/LSNecol3", "https://tec.openplanner.team/stops/LSNness1"], ["https://tec.openplanner.team/stops/LMIbois1", "https://tec.openplanner.team/stops/LMImc--1"], ["https://tec.openplanner.team/stops/N117aaa", "https://tec.openplanner.team/stops/N117anb"], ["https://tec.openplanner.team/stops/X346afb", "https://tec.openplanner.team/stops/X892aga"], ["https://tec.openplanner.team/stops/X954aba", "https://tec.openplanner.team/stops/X955agb"], ["https://tec.openplanner.team/stops/N202afb", "https://tec.openplanner.team/stops/N202aha"], ["https://tec.openplanner.team/stops/H4bf107a", "https://tec.openplanner.team/stops/H4bn174a"], ["https://tec.openplanner.team/stops/X870adb", "https://tec.openplanner.team/stops/X871aeb"], ["https://tec.openplanner.team/stops/H4fg116a", "https://tec.openplanner.team/stops/H4wn125a"], ["https://tec.openplanner.team/stops/LPLmonu1", "https://tec.openplanner.team/stops/LPLmonu2"], ["https://tec.openplanner.team/stops/LCRabbe2", "https://tec.openplanner.team/stops/LCReg--2"], ["https://tec.openplanner.team/stops/Bbeaap51", "https://tec.openplanner.team/stops/Bbeaegl1"], ["https://tec.openplanner.team/stops/Lenvale1", "https://tec.openplanner.team/stops/Lenvale2"], ["https://tec.openplanner.team/stops/Bnivfle2", "https://tec.openplanner.team/stops/Bnivrec2"], ["https://tec.openplanner.team/stops/Bbchboi1", "https://tec.openplanner.team/stops/Bhtibru2"], ["https://tec.openplanner.team/stops/Blonegl2", "https://tec.openplanner.team/stops/Bptblma2"], ["https://tec.openplanner.team/stops/LEntrix1", "https://tec.openplanner.team/stops/LEntrix2"], ["https://tec.openplanner.team/stops/Bjancha1", "https://tec.openplanner.team/stops/Bolphgr1"], ["https://tec.openplanner.team/stops/LCsfize1", "https://tec.openplanner.team/stops/LCsgend1"], ["https://tec.openplanner.team/stops/LLWcarr2", "https://tec.openplanner.team/stops/LLWmonu1"], ["https://tec.openplanner.team/stops/N501bib", "https://tec.openplanner.team/stops/N501btb"], ["https://tec.openplanner.team/stops/LCIpiet1", "https://tec.openplanner.team/stops/LMXroye1"], ["https://tec.openplanner.team/stops/Lagbeno2", "https://tec.openplanner.team/stops/Lagchen1"], ["https://tec.openplanner.team/stops/LMAhall1", "https://tec.openplanner.team/stops/LMAroch3"], ["https://tec.openplanner.team/stops/Ljugode1", "https://tec.openplanner.team/stops/Ljuplpr2"], ["https://tec.openplanner.team/stops/H4ld129a", "https://tec.openplanner.team/stops/H4ld129b"], ["https://tec.openplanner.team/stops/Lpomart1", "https://tec.openplanner.team/stops/Lpomart2"], ["https://tec.openplanner.team/stops/X925ahb", "https://tec.openplanner.team/stops/X925ata"], ["https://tec.openplanner.team/stops/N501lib", "https://tec.openplanner.team/stops/N501llb"], ["https://tec.openplanner.team/stops/H4bo121a", "https://tec.openplanner.team/stops/H4bo121b"], ["https://tec.openplanner.team/stops/N234abb", "https://tec.openplanner.team/stops/N243adb"], ["https://tec.openplanner.team/stops/H4au144b", "https://tec.openplanner.team/stops/H4og216a"], ["https://tec.openplanner.team/stops/LHUetie*", "https://tec.openplanner.team/stops/LWNwavr2"], ["https://tec.openplanner.team/stops/N165aaa", "https://tec.openplanner.team/stops/N165abb"], ["https://tec.openplanner.team/stops/X601aaa", "https://tec.openplanner.team/stops/X601aca"], ["https://tec.openplanner.team/stops/LBNgarn1", "https://tec.openplanner.team/stops/LMedoum2"], ["https://tec.openplanner.team/stops/N543bfa", "https://tec.openplanner.team/stops/N554afa"], ["https://tec.openplanner.team/stops/LOMtomb2", "https://tec.openplanner.team/stops/LOMware1"], ["https://tec.openplanner.team/stops/LCUthie2", "https://tec.openplanner.team/stops/LSzcoop2"], ["https://tec.openplanner.team/stops/Cgpmoul1", "https://tec.openplanner.team/stops/Cpcha431"], ["https://tec.openplanner.team/stops/X948afb", "https://tec.openplanner.team/stops/X948awa"], ["https://tec.openplanner.team/stops/N209afb", "https://tec.openplanner.team/stops/N209ama"], ["https://tec.openplanner.team/stops/X608aoa", "https://tec.openplanner.team/stops/X608aob"], ["https://tec.openplanner.team/stops/Cmmcver2", "https://tec.openplanner.team/stops/Cmmtomb2"], ["https://tec.openplanner.team/stops/LEN101-1", "https://tec.openplanner.team/stops/LENtour1"], ["https://tec.openplanner.team/stops/Bnivcol1", "https://tec.openplanner.team/stops/Bnivgpl3"], ["https://tec.openplanner.team/stops/Blsmcha3", "https://tec.openplanner.team/stops/Braclin2"], ["https://tec.openplanner.team/stops/Llgcond2", "https://tec.openplanner.team/stops/Llgdesa1"], ["https://tec.openplanner.team/stops/X782ala", "https://tec.openplanner.team/stops/X784aea"], ["https://tec.openplanner.team/stops/H4mo159a", "https://tec.openplanner.team/stops/H4mo192a"], ["https://tec.openplanner.team/stops/Llmbell1", "https://tec.openplanner.team/stops/Lprcite1"], ["https://tec.openplanner.team/stops/X617aeb", "https://tec.openplanner.team/stops/X695aca"], ["https://tec.openplanner.team/stops/Btlbcul2", "https://tec.openplanner.team/stops/Btlbmel1"], ["https://tec.openplanner.team/stops/N120aba", "https://tec.openplanner.team/stops/N120abd"], ["https://tec.openplanner.team/stops/X687aaa", "https://tec.openplanner.team/stops/X687aba"], ["https://tec.openplanner.team/stops/H4mv192a", "https://tec.openplanner.team/stops/H4mv196a"], ["https://tec.openplanner.team/stops/Ctaphaz1", "https://tec.openplanner.team/stops/N543cba"], ["https://tec.openplanner.team/stops/LCelabi1", "https://tec.openplanner.team/stops/LFabraa2"], ["https://tec.openplanner.team/stops/Cjudest3", "https://tec.openplanner.team/stops/Cjudest4"], ["https://tec.openplanner.team/stops/LeLdorf1", "https://tec.openplanner.team/stops/LeLherz2"], ["https://tec.openplanner.team/stops/N241afa", "https://tec.openplanner.team/stops/N585ala"], ["https://tec.openplanner.team/stops/Bnilspe3", "https://tec.openplanner.team/stops/Btsllib1"], ["https://tec.openplanner.team/stops/N501idb", "https://tec.openplanner.team/stops/N501nba"], ["https://tec.openplanner.team/stops/H1mr122a", "https://tec.openplanner.team/stops/H1wi151b"], ["https://tec.openplanner.team/stops/Cplcafp2", "https://tec.openplanner.team/stops/Cplcite2"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X770adb"], ["https://tec.openplanner.team/stops/Llgatel1", "https://tec.openplanner.team/stops/Llggeer3"], ["https://tec.openplanner.team/stops/Cfocorn2", "https://tec.openplanner.team/stops/Cfovent2"], ["https://tec.openplanner.team/stops/H4fr394a", "https://tec.openplanner.team/stops/H4ty325a"], ["https://tec.openplanner.team/stops/N576adb", "https://tec.openplanner.team/stops/N576anb"], ["https://tec.openplanner.team/stops/N501dtb", "https://tec.openplanner.team/stops/N501dza"], ["https://tec.openplanner.team/stops/H4ty327b", "https://tec.openplanner.team/stops/H4ty358b"], ["https://tec.openplanner.team/stops/LPLcent1", "https://tec.openplanner.team/stops/LPLruis2"], ["https://tec.openplanner.team/stops/X659awa", "https://tec.openplanner.team/stops/X659baa"], ["https://tec.openplanner.team/stops/LJEmalg2", "https://tec.openplanner.team/stops/LSkkeri1"], ["https://tec.openplanner.team/stops/X768amb", "https://tec.openplanner.team/stops/X769ajb"], ["https://tec.openplanner.team/stops/H4ce107a", "https://tec.openplanner.team/stops/H4mx115a"], ["https://tec.openplanner.team/stops/N355aca", "https://tec.openplanner.team/stops/N874agb"], ["https://tec.openplanner.team/stops/X542adb", "https://tec.openplanner.team/stops/X542aib"], ["https://tec.openplanner.team/stops/H4he101a", "https://tec.openplanner.team/stops/H4mx116b"], ["https://tec.openplanner.team/stops/H4au144a", "https://tec.openplanner.team/stops/H4og216b"], ["https://tec.openplanner.team/stops/LrAeife2", "https://tec.openplanner.team/stops/LrAwald1"], ["https://tec.openplanner.team/stops/LFsconc1", "https://tec.openplanner.team/stops/LFsherm1"], ["https://tec.openplanner.team/stops/Lagcolo1", "https://tec.openplanner.team/stops/Lagcolo2"], ["https://tec.openplanner.team/stops/X949ahb", "https://tec.openplanner.team/stops/X949ama"], ["https://tec.openplanner.team/stops/N236ama", "https://tec.openplanner.team/stops/N236aob"], ["https://tec.openplanner.team/stops/LVllieg1", "https://tec.openplanner.team/stops/LVlplan1"], ["https://tec.openplanner.team/stops/LVLf10-2", "https://tec.openplanner.team/stops/LVLruis2"], ["https://tec.openplanner.team/stops/Cgzha622", "https://tec.openplanner.team/stops/Ctucamb1"], ["https://tec.openplanner.team/stops/H1lm106a", "https://tec.openplanner.team/stops/H1to155a"], ["https://tec.openplanner.team/stops/LVleg--1", "https://tec.openplanner.team/stops/LVlleme2"], ["https://tec.openplanner.team/stops/LHrchez2", "https://tec.openplanner.team/stops/LHreg--2"], ["https://tec.openplanner.team/stops/N532amb", "https://tec.openplanner.team/stops/N574aga"], ["https://tec.openplanner.team/stops/Lverdep1", "https://tec.openplanner.team/stops/Lverogi2"], ["https://tec.openplanner.team/stops/Bzlufbo2", "https://tec.openplanner.team/stops/Bzluvil2"], ["https://tec.openplanner.team/stops/Lemmusc2", "https://tec.openplanner.team/stops/Lvchaus1"], ["https://tec.openplanner.team/stops/Blincal2", "https://tec.openplanner.team/stops/Blingar3"], ["https://tec.openplanner.team/stops/Ladgron2", "https://tec.openplanner.team/stops/LELhard2"], ["https://tec.openplanner.team/stops/Cctbinc1", "https://tec.openplanner.team/stops/NC44aea"], ["https://tec.openplanner.team/stops/H2ca106a", "https://tec.openplanner.team/stops/H2ml114a"], ["https://tec.openplanner.team/stops/H5pe126a", "https://tec.openplanner.team/stops/H5pe147b"], ["https://tec.openplanner.team/stops/X824aac", "https://tec.openplanner.team/stops/X824aca"], ["https://tec.openplanner.team/stops/LSNbouh3", "https://tec.openplanner.team/stops/LSNfays1"], ["https://tec.openplanner.team/stops/Lmnjeha1", "https://tec.openplanner.team/stops/Lmnjeha2"], ["https://tec.openplanner.team/stops/H1mm122a", "https://tec.openplanner.team/stops/H1mm125c"], ["https://tec.openplanner.team/stops/N526adb", "https://tec.openplanner.team/stops/N574aeb"], ["https://tec.openplanner.team/stops/Cnapair2", "https://tec.openplanner.team/stops/N160afa"], ["https://tec.openplanner.team/stops/H4mo138b", "https://tec.openplanner.team/stops/H4mo169a"], ["https://tec.openplanner.team/stops/LoUpete2", "https://tec.openplanner.team/stops/LsC216-2"], ["https://tec.openplanner.team/stops/Bnivpgr1", "https://tec.openplanner.team/stops/Bnivtra1"], ["https://tec.openplanner.team/stops/H5at116a", "https://tec.openplanner.team/stops/H5at119a"], ["https://tec.openplanner.team/stops/LSPchap2", "https://tec.openplanner.team/stops/LSProya1"], ["https://tec.openplanner.team/stops/H5qu142a", "https://tec.openplanner.team/stops/H5qu146a"], ["https://tec.openplanner.team/stops/LRmrode1", "https://tec.openplanner.team/stops/LRmsmvo2"], ["https://tec.openplanner.team/stops/LCPbell1", "https://tec.openplanner.team/stops/LPOchan2"], ["https://tec.openplanner.team/stops/Bmsgpfo2", "https://tec.openplanner.team/stops/Bmsgstj1"], ["https://tec.openplanner.team/stops/N576ahb", "https://tec.openplanner.team/stops/N576aja"], ["https://tec.openplanner.team/stops/LSzetoi2", "https://tec.openplanner.team/stops/LSznoel2"], ["https://tec.openplanner.team/stops/H2na134a", "https://tec.openplanner.team/stops/H3so185b"], ["https://tec.openplanner.team/stops/H1ba102a", "https://tec.openplanner.team/stops/H1ba114b"], ["https://tec.openplanner.team/stops/X796aab", "https://tec.openplanner.team/stops/X982bna"], ["https://tec.openplanner.team/stops/N501kvb", "https://tec.openplanner.team/stops/N501mfa"], ["https://tec.openplanner.team/stops/Brixcme2", "https://tec.openplanner.team/stops/Brixga11"], ["https://tec.openplanner.team/stops/Bblarbe2", "https://tec.openplanner.team/stops/Bblasse1"], ["https://tec.openplanner.team/stops/H1ho131a", "https://tec.openplanner.team/stops/H1ho143b"], ["https://tec.openplanner.team/stops/Cnacroc2", "https://tec.openplanner.team/stops/Cnaferr2"], ["https://tec.openplanner.team/stops/Cslegli1", "https://tec.openplanner.team/stops/Cvtchap2"], ["https://tec.openplanner.team/stops/LRRemul1", "https://tec.openplanner.team/stops/LRRlimi2"], ["https://tec.openplanner.team/stops/LLYpeup1", "https://tec.openplanner.team/stops/LLYplac1"], ["https://tec.openplanner.team/stops/LGLgare*", "https://tec.openplanner.team/stops/LPAeg--1"], ["https://tec.openplanner.team/stops/X901amb", "https://tec.openplanner.team/stops/X999aqb"], ["https://tec.openplanner.team/stops/LCn4---1", "https://tec.openplanner.team/stops/LCnvill1"], ["https://tec.openplanner.team/stops/LLOchpl1", "https://tec.openplanner.team/stops/LLOcreu2"], ["https://tec.openplanner.team/stops/LBLcalv2", "https://tec.openplanner.team/stops/LBLvici2"], ["https://tec.openplanner.team/stops/Lseivoz1", "https://tec.openplanner.team/stops/Lseivoz2"], ["https://tec.openplanner.team/stops/LETtemp1", "https://tec.openplanner.team/stops/LETtemp2"], ["https://tec.openplanner.team/stops/X801ava", "https://tec.openplanner.team/stops/X801awb"], ["https://tec.openplanner.team/stops/H4he103b", "https://tec.openplanner.team/stops/H4he105b"], ["https://tec.openplanner.team/stops/X948aba", "https://tec.openplanner.team/stops/X948aca"], ["https://tec.openplanner.team/stops/Bitrnus2", "https://tec.openplanner.team/stops/Bosqpco2"], ["https://tec.openplanner.team/stops/H1bb115a", "https://tec.openplanner.team/stops/H1bb119b"], ["https://tec.openplanner.team/stops/X793aia", "https://tec.openplanner.team/stops/X793aib"], ["https://tec.openplanner.team/stops/N585aba", "https://tec.openplanner.team/stops/N585aia"], ["https://tec.openplanner.team/stops/X624aba", "https://tec.openplanner.team/stops/X624ada"], ["https://tec.openplanner.team/stops/Ccpetan2", "https://tec.openplanner.team/stops/Cptccas2"], ["https://tec.openplanner.team/stops/Cjxpris1", "https://tec.openplanner.team/stops/Cjxpris2"], ["https://tec.openplanner.team/stops/X657aeb", "https://tec.openplanner.team/stops/X671aba"], ["https://tec.openplanner.team/stops/Clrmarl2", "https://tec.openplanner.team/stops/Clrmarl3"], ["https://tec.openplanner.team/stops/N501fwa", "https://tec.openplanner.team/stops/N501fwb"], ["https://tec.openplanner.team/stops/H4ta135a", "https://tec.openplanner.team/stops/H4ta135b"], ["https://tec.openplanner.team/stops/LAUpind2", "https://tec.openplanner.team/stops/LAUross1"], ["https://tec.openplanner.team/stops/LLAbure1", "https://tec.openplanner.team/stops/LLAchpl2"], ["https://tec.openplanner.team/stops/H1wa142a", "https://tec.openplanner.team/stops/H1wa147a"], ["https://tec.openplanner.team/stops/LMAgare*", "https://tec.openplanner.team/stops/LMAgare0"], ["https://tec.openplanner.team/stops/H2sb259a", "https://tec.openplanner.team/stops/H3lr132a"], ["https://tec.openplanner.team/stops/Cfocobe2", "https://tec.openplanner.team/stops/Cptberg1"], ["https://tec.openplanner.team/stops/Bborppa2", "https://tec.openplanner.team/stops/Bitrpar1"], ["https://tec.openplanner.team/stops/Cjuphil1", "https://tec.openplanner.team/stops/Cjuphil2"], ["https://tec.openplanner.team/stops/Lvehodi4", "https://tec.openplanner.team/stops/Lveveou1"], ["https://tec.openplanner.team/stops/X879ara", "https://tec.openplanner.team/stops/X879arb"], ["https://tec.openplanner.team/stops/N501hxz", "https://tec.openplanner.team/stops/N501lzy"], ["https://tec.openplanner.team/stops/LVIjacq2", "https://tec.openplanner.team/stops/LVIsacr1"], ["https://tec.openplanner.team/stops/Lprmc--3", "https://tec.openplanner.team/stops/Lprmc--4"], ["https://tec.openplanner.team/stops/X982bea", "https://tec.openplanner.team/stops/X982beb"], ["https://tec.openplanner.team/stops/Blanraa1", "https://tec.openplanner.team/stops/Blanraa2"], ["https://tec.openplanner.team/stops/LHVetoi1", "https://tec.openplanner.team/stops/LHVetoi2"], ["https://tec.openplanner.team/stops/H2ha127a", "https://tec.openplanner.team/stops/H2ha143b"], ["https://tec.openplanner.team/stops/Cjxetri1", "https://tec.openplanner.team/stops/Cjxthom1"], ["https://tec.openplanner.team/stops/N554ada", "https://tec.openplanner.team/stops/N554aeb"], ["https://tec.openplanner.team/stops/Bdonlat2", "https://tec.openplanner.team/stops/Blthbss1"], ["https://tec.openplanner.team/stops/Ljuchap3", "https://tec.openplanner.team/stops/Ljujaur1"], ["https://tec.openplanner.team/stops/H2ch102a", "https://tec.openplanner.team/stops/H2ch112a"], ["https://tec.openplanner.team/stops/LRRbuta2", "https://tec.openplanner.team/stops/LRRrimi2"], ["https://tec.openplanner.team/stops/LEShony1", "https://tec.openplanner.team/stops/LTIptme1"], ["https://tec.openplanner.team/stops/LBSnouw1", "https://tec.openplanner.team/stops/LBSnouw2"], ["https://tec.openplanner.team/stops/Bgnvpap1", "https://tec.openplanner.team/stops/Brixala1"], ["https://tec.openplanner.team/stops/NL57afa", "https://tec.openplanner.team/stops/NL57agb"], ["https://tec.openplanner.team/stops/LGEpt--1", "https://tec.openplanner.team/stops/LGEpt--2"], ["https://tec.openplanner.team/stops/Cdaptca1", "https://tec.openplanner.team/stops/Cdaptca4"], ["https://tec.openplanner.team/stops/LBveg--2", "https://tec.openplanner.team/stops/LBvviem1"], ["https://tec.openplanner.team/stops/LaUkirc*", "https://tec.openplanner.team/stops/LsTgren2"], ["https://tec.openplanner.team/stops/H5bs102b", "https://tec.openplanner.team/stops/H5bs104b"], ["https://tec.openplanner.team/stops/X614aha", "https://tec.openplanner.team/stops/X615anb"], ["https://tec.openplanner.team/stops/H2ec104b", "https://tec.openplanner.team/stops/H2me116a"], ["https://tec.openplanner.team/stops/Clddeve1", "https://tec.openplanner.team/stops/Cmymarb2"], ["https://tec.openplanner.team/stops/LVHtill2", "https://tec.openplanner.team/stops/LVsboug1"], ["https://tec.openplanner.team/stops/Bnetrbr1", "https://tec.openplanner.team/stops/Bnetrbr2"], ["https://tec.openplanner.team/stops/LrApont2", "https://tec.openplanner.team/stops/LrAtitf2"], ["https://tec.openplanner.team/stops/X615ada", "https://tec.openplanner.team/stops/X681aga"], ["https://tec.openplanner.team/stops/X661aoa", "https://tec.openplanner.team/stops/X661bcb"], ["https://tec.openplanner.team/stops/Lseathe2", "https://tec.openplanner.team/stops/Lsebeau2"], ["https://tec.openplanner.team/stops/Bobacar2", "https://tec.openplanner.team/stops/Broscha1"], ["https://tec.openplanner.team/stops/N118aqa", "https://tec.openplanner.team/stops/N118aub"], ["https://tec.openplanner.team/stops/Bgemga12", "https://tec.openplanner.team/stops/N522aja"], ["https://tec.openplanner.team/stops/LrUgeme1", "https://tec.openplanner.team/stops/LrUkult1"], ["https://tec.openplanner.team/stops/X901ama", "https://tec.openplanner.team/stops/X901amb"], ["https://tec.openplanner.team/stops/LkEgds-1", "https://tec.openplanner.team/stops/LkEspor1"], ["https://tec.openplanner.team/stops/LNAdemo2", "https://tec.openplanner.team/stops/LSSfont1"], ["https://tec.openplanner.team/stops/X733aja", "https://tec.openplanner.team/stops/X734aqa"], ["https://tec.openplanner.team/stops/LCsange2", "https://tec.openplanner.team/stops/LCsjone2"], ["https://tec.openplanner.team/stops/X801ajb", "https://tec.openplanner.team/stops/X801alb"], ["https://tec.openplanner.team/stops/X907afa", "https://tec.openplanner.team/stops/X907aha"], ["https://tec.openplanner.team/stops/X601aqa", "https://tec.openplanner.team/stops/X601btb"], ["https://tec.openplanner.team/stops/N501hjb", "https://tec.openplanner.team/stops/N501lcb"], ["https://tec.openplanner.team/stops/N163aaa", "https://tec.openplanner.team/stops/N163abb"], ["https://tec.openplanner.team/stops/N550afb", "https://tec.openplanner.team/stops/N550agb"], ["https://tec.openplanner.team/stops/Lvtchpl1", "https://tec.openplanner.team/stops/Lvtchpl3"], ["https://tec.openplanner.team/stops/H1br123a", "https://tec.openplanner.team/stops/H1vg358b"], ["https://tec.openplanner.team/stops/LAWhein2", "https://tec.openplanner.team/stops/LAWxhen1"], ["https://tec.openplanner.team/stops/LCvneuv4", "https://tec.openplanner.team/stops/LHrlorc1"], ["https://tec.openplanner.team/stops/H1gy113a", "https://tec.openplanner.team/stops/H1og131a"], ["https://tec.openplanner.team/stops/Lvieg--2", "https://tec.openplanner.team/stops/Lvitour2"], ["https://tec.openplanner.team/stops/Bbsivi11", "https://tec.openplanner.team/stops/Bbsivil2"], ["https://tec.openplanner.team/stops/Lmolagu1", "https://tec.openplanner.team/stops/Lmopech1"], ["https://tec.openplanner.team/stops/LLrelec1", "https://tec.openplanner.team/stops/LLrrmaq1"], ["https://tec.openplanner.team/stops/Cchtiro4", "https://tec.openplanner.team/stops/NC01ahb"], ["https://tec.openplanner.team/stops/H4mo164a", "https://tec.openplanner.team/stops/H4rk101a"], ["https://tec.openplanner.team/stops/LeLkalt1", "https://tec.openplanner.team/stops/LwYsour4"], ["https://tec.openplanner.team/stops/H1do109b", "https://tec.openplanner.team/stops/H1do111b"], ["https://tec.openplanner.team/stops/N507aha", "https://tec.openplanner.team/stops/N507amb"], ["https://tec.openplanner.team/stops/Lpeptra2", "https://tec.openplanner.team/stops/LWenouv2"], ["https://tec.openplanner.team/stops/H1be101b", "https://tec.openplanner.team/stops/H1be103a"], ["https://tec.openplanner.team/stops/N515aga", "https://tec.openplanner.team/stops/N515ajb"], ["https://tec.openplanner.team/stops/Bsmgegl1", "https://tec.openplanner.team/stops/Bsmgmar1"], ["https://tec.openplanner.team/stops/Ljhsart4", "https://tec.openplanner.team/stops/Lmnjeha1"], ["https://tec.openplanner.team/stops/N511aqa", "https://tec.openplanner.team/stops/N511ava"], ["https://tec.openplanner.team/stops/Cbwegl1", "https://tec.openplanner.team/stops/Cmg4bra1"], ["https://tec.openplanner.team/stops/X604aba", "https://tec.openplanner.team/stops/X618aab"], ["https://tec.openplanner.team/stops/N219aea", "https://tec.openplanner.team/stops/N219afa"], ["https://tec.openplanner.team/stops/N509awa", "https://tec.openplanner.team/stops/N509bgb"], ["https://tec.openplanner.team/stops/Cmlmatc1", "https://tec.openplanner.team/stops/Cmltomb1"], ["https://tec.openplanner.team/stops/LbOhoff1", "https://tec.openplanner.team/stops/LbOre151"], ["https://tec.openplanner.team/stops/X609aia", "https://tec.openplanner.team/stops/X609ajb"], ["https://tec.openplanner.team/stops/LWechea2", "https://tec.openplanner.team/stops/LWetrib1"], ["https://tec.openplanner.team/stops/H4hx116b", "https://tec.openplanner.team/stops/H4lu126b"], ["https://tec.openplanner.team/stops/Cmygbbo2", "https://tec.openplanner.team/stops/Cmyvert2"], ["https://tec.openplanner.team/stops/Bcbqegl1", "https://tec.openplanner.team/stops/Bcbqgar1"], ["https://tec.openplanner.team/stops/N310abb", "https://tec.openplanner.team/stops/N312aca"], ["https://tec.openplanner.team/stops/X670asa", "https://tec.openplanner.team/stops/X670asb"], ["https://tec.openplanner.team/stops/X766ada", "https://tec.openplanner.team/stops/X766afb"], ["https://tec.openplanner.team/stops/Cselait1", "https://tec.openplanner.team/stops/Csequew2"], ["https://tec.openplanner.team/stops/X354aha", "https://tec.openplanner.team/stops/X354aib"], ["https://tec.openplanner.team/stops/Blhueca2", "https://tec.openplanner.team/stops/Blhutco2"], ["https://tec.openplanner.team/stops/LnIfrie1", "https://tec.openplanner.team/stops/LnIkirc1"], ["https://tec.openplanner.team/stops/H4bo118b", "https://tec.openplanner.team/stops/H4bo122a"], ["https://tec.openplanner.team/stops/Bblamsp2", "https://tec.openplanner.team/stops/Bblamsp3"], ["https://tec.openplanner.team/stops/H1po139a", "https://tec.openplanner.team/stops/H1po154a"], ["https://tec.openplanner.team/stops/H4lz161a", "https://tec.openplanner.team/stops/H4lz161b"], ["https://tec.openplanner.team/stops/NC11anb", "https://tec.openplanner.team/stops/NC11aoa"], ["https://tec.openplanner.team/stops/LMici092", "https://tec.openplanner.team/stops/LMipoti2"], ["https://tec.openplanner.team/stops/H4te248a", "https://tec.openplanner.team/stops/H4te248b"], ["https://tec.openplanner.team/stops/N201aeb", "https://tec.openplanner.team/stops/N201aec"], ["https://tec.openplanner.team/stops/N571aca", "https://tec.openplanner.team/stops/N571aja"], ["https://tec.openplanner.team/stops/LBLgobc2", "https://tec.openplanner.team/stops/LCEeg--2"], ["https://tec.openplanner.team/stops/Bgerd321", "https://tec.openplanner.team/stops/Bgerd322"], ["https://tec.openplanner.team/stops/Bbxltrv2", "https://tec.openplanner.team/stops/Bixlqll1"], ["https://tec.openplanner.team/stops/H2sb223b", "https://tec.openplanner.team/stops/H2sb239c"], ["https://tec.openplanner.team/stops/Bquepos2", "https://tec.openplanner.team/stops/Btubren2"], ["https://tec.openplanner.team/stops/Bronpfe1", "https://tec.openplanner.team/stops/Bronpfe2"], ["https://tec.openplanner.team/stops/X542ahb", "https://tec.openplanner.team/stops/X542aib"], ["https://tec.openplanner.team/stops/Blsmcha3", "https://tec.openplanner.team/stops/Blsmvan2"], ["https://tec.openplanner.team/stops/X811afa", "https://tec.openplanner.team/stops/X811aga"], ["https://tec.openplanner.team/stops/N509asa", "https://tec.openplanner.team/stops/N509ata"], ["https://tec.openplanner.team/stops/H4de112a", "https://tec.openplanner.team/stops/H4ss154b"], ["https://tec.openplanner.team/stops/H4lz124b", "https://tec.openplanner.team/stops/H4lz164a"], ["https://tec.openplanner.team/stops/X872aca", "https://tec.openplanner.team/stops/X872adb"], ["https://tec.openplanner.team/stops/LPUalbe1", "https://tec.openplanner.team/stops/LPUalbe2"], ["https://tec.openplanner.team/stops/LXhcite1", "https://tec.openplanner.team/stops/LXhmara1"], ["https://tec.openplanner.team/stops/Llgbobu6", "https://tec.openplanner.team/stops/Llgdelc2"], ["https://tec.openplanner.team/stops/LTiespe1", "https://tec.openplanner.team/stops/LTiespe4"], ["https://tec.openplanner.team/stops/H4fo117a", "https://tec.openplanner.team/stops/H4fo119b"], ["https://tec.openplanner.team/stops/X607acb", "https://tec.openplanner.team/stops/X621aba"], ["https://tec.openplanner.team/stops/X670adb", "https://tec.openplanner.team/stops/X670aha"], ["https://tec.openplanner.team/stops/LHecime2", "https://tec.openplanner.team/stops/LHSvina1"], ["https://tec.openplanner.team/stops/N222aca", "https://tec.openplanner.team/stops/X222add"], ["https://tec.openplanner.team/stops/H5gr137a", "https://tec.openplanner.team/stops/H5st168a"], ["https://tec.openplanner.team/stops/Bllnein3", "https://tec.openplanner.team/stops/Bllnpsc2"], ["https://tec.openplanner.team/stops/Lmidarc2", "https://tec.openplanner.team/stops/Lmihale2"], ["https://tec.openplanner.team/stops/H2ll260a", "https://tec.openplanner.team/stops/H2ll260b"], ["https://tec.openplanner.team/stops/X723aka", "https://tec.openplanner.team/stops/X723akb"], ["https://tec.openplanner.team/stops/H5qu140a", "https://tec.openplanner.team/stops/H5qu144a"], ["https://tec.openplanner.team/stops/LvA12--3", "https://tec.openplanner.team/stops/LvAkirc3"], ["https://tec.openplanner.team/stops/Cjudelv4", "https://tec.openplanner.team/stops/Cjuepee2"], ["https://tec.openplanner.team/stops/N501dba", "https://tec.openplanner.team/stops/N533aoa"], ["https://tec.openplanner.team/stops/Bbauham2", "https://tec.openplanner.team/stops/Bnivpal1"], ["https://tec.openplanner.team/stops/LCOcrom1", "https://tec.openplanner.team/stops/LSNchen2"], ["https://tec.openplanner.team/stops/Bfelbri3", "https://tec.openplanner.team/stops/Bfelrav1"], ["https://tec.openplanner.team/stops/N571agb", "https://tec.openplanner.team/stops/N571akb"], ["https://tec.openplanner.team/stops/H2le153a", "https://tec.openplanner.team/stops/H2mo122d"], ["https://tec.openplanner.team/stops/LAWdefr1", "https://tec.openplanner.team/stops/LAWhein3"], ["https://tec.openplanner.team/stops/LAIchpl2", "https://tec.openplanner.team/stops/LBzec--2"], ["https://tec.openplanner.team/stops/N501jda", "https://tec.openplanner.team/stops/N501jfb"], ["https://tec.openplanner.team/stops/X363aaa", "https://tec.openplanner.team/stops/X363aab"], ["https://tec.openplanner.team/stops/N355ada", "https://tec.openplanner.team/stops/N874aab"], ["https://tec.openplanner.team/stops/H1fa118b", "https://tec.openplanner.team/stops/H1fa121b"], ["https://tec.openplanner.team/stops/LSMgare2", "https://tec.openplanner.team/stops/LSMlier2"], ["https://tec.openplanner.team/stops/LwAprei2", "https://tec.openplanner.team/stops/LwArabo1"], ["https://tec.openplanner.team/stops/N501fty", "https://tec.openplanner.team/stops/N501fya"], ["https://tec.openplanner.team/stops/X926aba", "https://tec.openplanner.team/stops/X926afa"], ["https://tec.openplanner.team/stops/LCleg--2", "https://tec.openplanner.team/stops/LCltrib2"], ["https://tec.openplanner.team/stops/N561ada", "https://tec.openplanner.team/stops/N561aga"], ["https://tec.openplanner.team/stops/Btubhoq2", "https://tec.openplanner.team/stops/Btubmar2"], ["https://tec.openplanner.team/stops/Cdagoss1", "https://tec.openplanner.team/stops/Cmabegh1"], ["https://tec.openplanner.team/stops/H5rx115a", "https://tec.openplanner.team/stops/H5rx115d"], ["https://tec.openplanner.team/stops/H2hg268c", "https://tec.openplanner.team/stops/H2hg269b"], ["https://tec.openplanner.team/stops/H2hp118a", "https://tec.openplanner.team/stops/H2hp262b"], ["https://tec.openplanner.team/stops/LCSgend2", "https://tec.openplanner.team/stops/LSGmall2"], ["https://tec.openplanner.team/stops/Bbstegl1", "https://tec.openplanner.team/stops/Csdetan1"], ["https://tec.openplanner.team/stops/X877aga", "https://tec.openplanner.team/stops/X995aga"], ["https://tec.openplanner.team/stops/Bgntcbo1", "https://tec.openplanner.team/stops/Bgntcom2"], ["https://tec.openplanner.team/stops/X638aka", "https://tec.openplanner.team/stops/X638akb"], ["https://tec.openplanner.team/stops/X614ala", "https://tec.openplanner.team/stops/X623aab"], ["https://tec.openplanner.team/stops/Lghprea1", "https://tec.openplanner.team/stops/Lghprea3"], ["https://tec.openplanner.team/stops/Cfamonu2", "https://tec.openplanner.team/stops/Cfasamb2"], ["https://tec.openplanner.team/stops/X986adb", "https://tec.openplanner.team/stops/X986ata"], ["https://tec.openplanner.team/stops/H1si164b", "https://tec.openplanner.team/stops/H1si167b"], ["https://tec.openplanner.team/stops/LeUwetz1", "https://tec.openplanner.team/stops/LeUwetz2"], ["https://tec.openplanner.team/stops/LRGchap1", "https://tec.openplanner.team/stops/LRGeg--2"], ["https://tec.openplanner.team/stops/Cchjaur1", "https://tec.openplanner.team/stops/Cchjaur2"], ["https://tec.openplanner.team/stops/Llgcite2", "https://tec.openplanner.team/stops/Llgphol2"], ["https://tec.openplanner.team/stops/H1mm131a", "https://tec.openplanner.team/stops/H1mm131b"], ["https://tec.openplanner.team/stops/LARauto4", "https://tec.openplanner.team/stops/LARgare4"], ["https://tec.openplanner.team/stops/N118afa", "https://tec.openplanner.team/stops/N155aka"], ["https://tec.openplanner.team/stops/H2mg135b", "https://tec.openplanner.team/stops/H2mg144a"], ["https://tec.openplanner.team/stops/LESfoot1", "https://tec.openplanner.team/stops/LESgare1"], ["https://tec.openplanner.team/stops/H4to135a", "https://tec.openplanner.team/stops/H4to137a"], ["https://tec.openplanner.team/stops/H4do108b", "https://tec.openplanner.team/stops/H4do202a"], ["https://tec.openplanner.team/stops/Lveanne1", "https://tec.openplanner.team/stops/Lvecite2"], ["https://tec.openplanner.team/stops/N506bia", "https://tec.openplanner.team/stops/N506blb"], ["https://tec.openplanner.team/stops/Ldifoye2", "https://tec.openplanner.team/stops/Lprorph2"], ["https://tec.openplanner.team/stops/H4oq226b", "https://tec.openplanner.team/stops/H4oq229a"], ["https://tec.openplanner.team/stops/LwYbrkr1", "https://tec.openplanner.team/stops/LwYbruc1"], ["https://tec.openplanner.team/stops/H4er123a", "https://tec.openplanner.team/stops/H4ty331b"], ["https://tec.openplanner.team/stops/H1mk112a", "https://tec.openplanner.team/stops/H1mk112b"], ["https://tec.openplanner.team/stops/X979aea", "https://tec.openplanner.team/stops/X979aeb"], ["https://tec.openplanner.team/stops/Csbsart1", "https://tec.openplanner.team/stops/H1sa114a"], ["https://tec.openplanner.team/stops/Brsgfso1", "https://tec.openplanner.team/stops/Brsgleq1"], ["https://tec.openplanner.team/stops/X345abb", "https://tec.openplanner.team/stops/X363ada"], ["https://tec.openplanner.team/stops/N505aeb", "https://tec.openplanner.team/stops/N505afb"], ["https://tec.openplanner.team/stops/N236ada", "https://tec.openplanner.team/stops/N254aeb"], ["https://tec.openplanner.team/stops/LLmcarr2", "https://tec.openplanner.team/stops/LLmetat1"], ["https://tec.openplanner.team/stops/LFEmala1", "https://tec.openplanner.team/stops/X597amb"], ["https://tec.openplanner.team/stops/N562bka", "https://tec.openplanner.team/stops/N562bkb"], ["https://tec.openplanner.team/stops/N352adb", "https://tec.openplanner.team/stops/N352aeb"], ["https://tec.openplanner.team/stops/Lghgros2", "https://tec.openplanner.team/stops/Lghraul1"], ["https://tec.openplanner.team/stops/LAYambl1", "https://tec.openplanner.team/stops/LAYnias1"], ["https://tec.openplanner.team/stops/H4ty270a", "https://tec.openplanner.team/stops/H4ty290a"], ["https://tec.openplanner.team/stops/N514afb", "https://tec.openplanner.team/stops/N514agb"], ["https://tec.openplanner.team/stops/LGLspor2", "https://tec.openplanner.team/stops/LTolijn*"], ["https://tec.openplanner.team/stops/LmAgruf2", "https://tec.openplanner.team/stops/LtH37c-1"], ["https://tec.openplanner.team/stops/N514ana", "https://tec.openplanner.team/stops/N514aob"], ["https://tec.openplanner.team/stops/X695aaa", "https://tec.openplanner.team/stops/X695aia"], ["https://tec.openplanner.team/stops/N204agb", "https://tec.openplanner.team/stops/N204aka"], ["https://tec.openplanner.team/stops/LFyec--2", "https://tec.openplanner.team/stops/LFyWarc2"], ["https://tec.openplanner.team/stops/LBajean1", "https://tec.openplanner.team/stops/LBajean2"], ["https://tec.openplanner.team/stops/LeUkabe2", "https://tec.openplanner.team/stops/LeUnopr2"], ["https://tec.openplanner.team/stops/X612abb", "https://tec.openplanner.team/stops/X612acb"], ["https://tec.openplanner.team/stops/LVLgotr1", "https://tec.openplanner.team/stops/LVLgrum2"], ["https://tec.openplanner.team/stops/H1ch100a", "https://tec.openplanner.team/stops/H1ch106a"], ["https://tec.openplanner.team/stops/H4ra159b", "https://tec.openplanner.team/stops/H4tp146a"], ["https://tec.openplanner.team/stops/LAMfrai1", "https://tec.openplanner.team/stops/LAMrich1"], ["https://tec.openplanner.team/stops/LSIespe2", "https://tec.openplanner.team/stops/LSInd--2"], ["https://tec.openplanner.team/stops/N521ara", "https://tec.openplanner.team/stops/N521ava"], ["https://tec.openplanner.team/stops/Ccymabo1", "https://tec.openplanner.team/stops/Csrcant1"], ["https://tec.openplanner.team/stops/LCTgare3", "https://tec.openplanner.team/stops/LCTpt--1"], ["https://tec.openplanner.team/stops/X784ada", "https://tec.openplanner.team/stops/X784afa"], ["https://tec.openplanner.team/stops/NR21ahb", "https://tec.openplanner.team/stops/NR21aia"], ["https://tec.openplanner.team/stops/Lflcle-1", "https://tec.openplanner.team/stops/Lflcle-3"], ["https://tec.openplanner.team/stops/H4wa156a", "https://tec.openplanner.team/stops/H4wa156b"], ["https://tec.openplanner.team/stops/LHCandr1", "https://tec.openplanner.team/stops/LHCmonu3"], ["https://tec.openplanner.team/stops/N135bga", "https://tec.openplanner.team/stops/N135bgb"], ["https://tec.openplanner.team/stops/N209ada", "https://tec.openplanner.team/stops/N209aha"], ["https://tec.openplanner.team/stops/X744aab", "https://tec.openplanner.team/stops/X746ahd"], ["https://tec.openplanner.team/stops/H1eo108b", "https://tec.openplanner.team/stops/H1mj128b"], ["https://tec.openplanner.team/stops/Btstbbu1", "https://tec.openplanner.team/stops/N524acb"], ["https://tec.openplanner.team/stops/LMnlogi2", "https://tec.openplanner.team/stops/N222aeb"], ["https://tec.openplanner.team/stops/Cgyrrep2", "https://tec.openplanner.team/stops/Cgystbe2"], ["https://tec.openplanner.team/stops/Llgavoc1", "https://tec.openplanner.team/stops/Llgrame2"], ["https://tec.openplanner.team/stops/Lvegc-1*", "https://tec.openplanner.team/stops/Lvegc--6"], ["https://tec.openplanner.team/stops/LOL6che2", "https://tec.openplanner.team/stops/LOLfoss1"], ["https://tec.openplanner.team/stops/Cchblne1", "https://tec.openplanner.team/stops/Cchplan2"], ["https://tec.openplanner.team/stops/N212aea", "https://tec.openplanner.team/stops/N212akb"], ["https://tec.openplanner.team/stops/X615akb", "https://tec.openplanner.team/stops/X615ana"], ["https://tec.openplanner.team/stops/N534aeb", "https://tec.openplanner.team/stops/N534agb"], ["https://tec.openplanner.team/stops/Cmaprov1", "https://tec.openplanner.team/stops/Cmareun1"], ["https://tec.openplanner.team/stops/Bhaawdr1", "https://tec.openplanner.team/stops/Bhaawdr2"], ["https://tec.openplanner.team/stops/NC02aaa", "https://tec.openplanner.team/stops/NC02aab"], ["https://tec.openplanner.team/stops/LhIfrie1", "https://tec.openplanner.team/stops/LhIkirc*"], ["https://tec.openplanner.team/stops/H1do121a", "https://tec.openplanner.team/stops/H1do124a"], ["https://tec.openplanner.team/stops/N559acb", "https://tec.openplanner.team/stops/NL77aaa"], ["https://tec.openplanner.team/stops/H4ty283b", "https://tec.openplanner.team/stops/H4ty308e"], ["https://tec.openplanner.team/stops/N525ata", "https://tec.openplanner.team/stops/N526aaa"], ["https://tec.openplanner.team/stops/X877acb", "https://tec.openplanner.team/stops/X877aia"], ["https://tec.openplanner.team/stops/X889aab", "https://tec.openplanner.team/stops/X899aja"], ["https://tec.openplanner.team/stops/X672aba", "https://tec.openplanner.team/stops/X672abb"], ["https://tec.openplanner.team/stops/X834aab", "https://tec.openplanner.team/stops/X834abb"], ["https://tec.openplanner.team/stops/Cci22ao1", "https://tec.openplanner.team/stops/Ccicloc1"], ["https://tec.openplanner.team/stops/LSkcomb1", "https://tec.openplanner.team/stops/LSkdouf1"], ["https://tec.openplanner.team/stops/Lthfren2", "https://tec.openplanner.team/stops/LWahott1"], ["https://tec.openplanner.team/stops/X746aea", "https://tec.openplanner.team/stops/X746afa"], ["https://tec.openplanner.team/stops/LFR201-2", "https://tec.openplanner.team/stops/LFRspa-2"], ["https://tec.openplanner.team/stops/H4ma202b", "https://tec.openplanner.team/stops/H4ma398a"], ["https://tec.openplanner.team/stops/LBpcren1", "https://tec.openplanner.team/stops/LLagert*"], ["https://tec.openplanner.team/stops/Llgfoss2", "https://tec.openplanner.team/stops/Llghec-1"], ["https://tec.openplanner.team/stops/Cgyhaie1", "https://tec.openplanner.team/stops/Cmtdepo2"], ["https://tec.openplanner.team/stops/Bhenfer1", "https://tec.openplanner.team/stops/Bhenfla1"], ["https://tec.openplanner.team/stops/N120aaa", "https://tec.openplanner.team/stops/N120abc"], ["https://tec.openplanner.team/stops/N385aca", "https://tec.openplanner.team/stops/N385adb"], ["https://tec.openplanner.team/stops/Cchdagn1", "https://tec.openplanner.team/stops/Ccheden1"], ["https://tec.openplanner.team/stops/H4he104b", "https://tec.openplanner.team/stops/H4he107b"], ["https://tec.openplanner.team/stops/Lsmjalh1", "https://tec.openplanner.team/stops/Lsmjalh2"], ["https://tec.openplanner.team/stops/H1vh136a", "https://tec.openplanner.team/stops/H1vh136c"], ["https://tec.openplanner.team/stops/Blkbbeu1", "https://tec.openplanner.team/stops/Blkbbeu2"], ["https://tec.openplanner.team/stops/LAVcime2", "https://tec.openplanner.team/stops/LAVstat2"], ["https://tec.openplanner.team/stops/H4ab103a", "https://tec.openplanner.team/stops/H5ma180b"], ["https://tec.openplanner.team/stops/Bitrcha2", "https://tec.openplanner.team/stops/Bitreco2"], ["https://tec.openplanner.team/stops/X716aca", "https://tec.openplanner.team/stops/X717agd"], ["https://tec.openplanner.team/stops/H1hq129a", "https://tec.openplanner.team/stops/H1sy148a"], ["https://tec.openplanner.team/stops/X811aca", "https://tec.openplanner.team/stops/X811acb"], ["https://tec.openplanner.team/stops/X727aga", "https://tec.openplanner.team/stops/X747aaa"], ["https://tec.openplanner.team/stops/H4to136a", "https://tec.openplanner.team/stops/H5at135a"], ["https://tec.openplanner.team/stops/Cradest2", "https://tec.openplanner.team/stops/Crajasm3"], ["https://tec.openplanner.team/stops/LsVprum1", "https://tec.openplanner.team/stops/LwSbrei2"], ["https://tec.openplanner.team/stops/LESmich1", "https://tec.openplanner.team/stops/LESmich2"], ["https://tec.openplanner.team/stops/Clgrsoc2", "https://tec.openplanner.team/stops/H1tt106b"], ["https://tec.openplanner.team/stops/Ccogrha2", "https://tec.openplanner.team/stops/Cpceclu1"], ["https://tec.openplanner.team/stops/H4ir166b", "https://tec.openplanner.team/stops/H5at139a"], ["https://tec.openplanner.team/stops/X638aib", "https://tec.openplanner.team/stops/X638aja"], ["https://tec.openplanner.team/stops/H4wu376a", "https://tec.openplanner.team/stops/H4wu376b"], ["https://tec.openplanner.team/stops/H1do131a", "https://tec.openplanner.team/stops/H1do131c"], ["https://tec.openplanner.team/stops/Cjucar02", "https://tec.openplanner.team/stops/CMcarr2"], ["https://tec.openplanner.team/stops/N101ajb", "https://tec.openplanner.team/stops/N151aha"], ["https://tec.openplanner.team/stops/H4wi164a", "https://tec.openplanner.team/stops/H4wi175a"], ["https://tec.openplanner.team/stops/Lbocruc2", "https://tec.openplanner.team/stops/Lbopote1"], ["https://tec.openplanner.team/stops/Bcbqh451", "https://tec.openplanner.team/stops/Bcbqhai1"], ["https://tec.openplanner.team/stops/LBslama1", "https://tec.openplanner.team/stops/LBsoha-2"], ["https://tec.openplanner.team/stops/Loucent1", "https://tec.openplanner.team/stops/Lousite4"], ["https://tec.openplanner.team/stops/N154aaa", "https://tec.openplanner.team/stops/N154acb"], ["https://tec.openplanner.team/stops/Cwgmart2", "https://tec.openplanner.team/stops/Cwgplac2"], ["https://tec.openplanner.team/stops/Cgzdeve1", "https://tec.openplanner.team/stops/Clrwesp1"], ["https://tec.openplanner.team/stops/Bramgar1", "https://tec.openplanner.team/stops/NB33aja"], ["https://tec.openplanner.team/stops/H4bf106a", "https://tec.openplanner.team/stops/H4bf106b"], ["https://tec.openplanner.team/stops/N584awb", "https://tec.openplanner.team/stops/N584axb"], ["https://tec.openplanner.team/stops/N224agc", "https://tec.openplanner.team/stops/X224agb"], ["https://tec.openplanner.team/stops/Bgnvcom1", "https://tec.openplanner.team/stops/Bgnvcom2"], ["https://tec.openplanner.team/stops/Bgemibb2", "https://tec.openplanner.team/stops/Bgemkal2"], ["https://tec.openplanner.team/stops/LBachpl2", "https://tec.openplanner.team/stops/LNEgare*"], ["https://tec.openplanner.team/stops/H4fa126a", "https://tec.openplanner.team/stops/H4fa126c"], ["https://tec.openplanner.team/stops/N501hka", "https://tec.openplanner.team/stops/N501mib"], ["https://tec.openplanner.team/stops/N153aaa", "https://tec.openplanner.team/stops/N153abb"], ["https://tec.openplanner.team/stops/LAVpequ1", "https://tec.openplanner.team/stops/LAVpequ2"], ["https://tec.openplanner.team/stops/Lagcile1", "https://tec.openplanner.team/stops/Lagcile2"], ["https://tec.openplanner.team/stops/Bwavche1", "https://tec.openplanner.team/stops/Bwavche2"], ["https://tec.openplanner.team/stops/Llghaut1", "https://tec.openplanner.team/stops/Llghaut2"], ["https://tec.openplanner.team/stops/Borbode1", "https://tec.openplanner.team/stops/Borborb2"], ["https://tec.openplanner.team/stops/Brixchw1", "https://tec.openplanner.team/stops/Brixwav2"], ["https://tec.openplanner.team/stops/X362aba", "https://tec.openplanner.team/stops/X362aca"], ["https://tec.openplanner.team/stops/LFHjamo1", "https://tec.openplanner.team/stops/LMOfrel2"], ["https://tec.openplanner.team/stops/X801amb", "https://tec.openplanner.team/stops/X899ahb"], ["https://tec.openplanner.team/stops/LJAbois1", "https://tec.openplanner.team/stops/LJAroue1"], ["https://tec.openplanner.team/stops/Bbiepon1", "https://tec.openplanner.team/stops/Bgzdpco2"], ["https://tec.openplanner.team/stops/H1wa162b", "https://tec.openplanner.team/stops/H1wg125a"], ["https://tec.openplanner.team/stops/Ccupomp2", "https://tec.openplanner.team/stops/Cpipost1"], ["https://tec.openplanner.team/stops/LSJ38--1", "https://tec.openplanner.team/stops/LWRferm2"], ["https://tec.openplanner.team/stops/NR21aca", "https://tec.openplanner.team/stops/NR21aga"], ["https://tec.openplanner.team/stops/Llgherm1", "https://tec.openplanner.team/stops/Llgthie1"], ["https://tec.openplanner.team/stops/N357aea", "https://tec.openplanner.team/stops/N357aeb"], ["https://tec.openplanner.team/stops/H1mb131a", "https://tec.openplanner.team/stops/H1mb135a"], ["https://tec.openplanner.team/stops/N136aab", "https://tec.openplanner.team/stops/N138aea"], ["https://tec.openplanner.team/stops/N516aba", "https://tec.openplanner.team/stops/N516amb"], ["https://tec.openplanner.team/stops/X801cha", "https://tec.openplanner.team/stops/X836ahb"], ["https://tec.openplanner.team/stops/X780aha", "https://tec.openplanner.team/stops/X780atb"], ["https://tec.openplanner.team/stops/Buccplj2", "https://tec.openplanner.team/stops/Buccrac1"], ["https://tec.openplanner.team/stops/H2bh107b", "https://tec.openplanner.team/stops/H2jo162b"], ["https://tec.openplanner.team/stops/X394aeb", "https://tec.openplanner.team/stops/X397aac"], ["https://tec.openplanner.team/stops/LkRrauw1", "https://tec.openplanner.team/stops/LmUzent2"], ["https://tec.openplanner.team/stops/X595aia", "https://tec.openplanner.team/stops/X595aib"], ["https://tec.openplanner.team/stops/Bincfer2", "https://tec.openplanner.team/stops/Binclon2"], ["https://tec.openplanner.team/stops/LcRmich1", "https://tec.openplanner.team/stops/LrDkirc2"], ["https://tec.openplanner.team/stops/X673aba", "https://tec.openplanner.team/stops/X673adb"], ["https://tec.openplanner.team/stops/X696aaa", "https://tec.openplanner.team/stops/X696aga"], ["https://tec.openplanner.team/stops/N580aab", "https://tec.openplanner.team/stops/N580adb"], ["https://tec.openplanner.team/stops/X750asa", "https://tec.openplanner.team/stops/X750bab"], ["https://tec.openplanner.team/stops/H4fl179a", "https://tec.openplanner.team/stops/H4mg139a"], ["https://tec.openplanner.team/stops/LEMeg--1", "https://tec.openplanner.team/stops/LEMfort2"], ["https://tec.openplanner.team/stops/LWacime2", "https://tec.openplanner.team/stops/LWacime3"], ["https://tec.openplanner.team/stops/Lvecrot1", "https://tec.openplanner.team/stops/Lveinva1"], ["https://tec.openplanner.team/stops/X561aab", "https://tec.openplanner.team/stops/X576afb"], ["https://tec.openplanner.team/stops/LFOchab2", "https://tec.openplanner.team/stops/LKmmelo2"], ["https://tec.openplanner.team/stops/N351ava", "https://tec.openplanner.team/stops/N351avb"], ["https://tec.openplanner.team/stops/LMNcite2", "https://tec.openplanner.team/stops/LMNheme2"], ["https://tec.openplanner.team/stops/Bnivind1", "https://tec.openplanner.team/stops/Bnivind2"], ["https://tec.openplanner.team/stops/Bbiemse1", "https://tec.openplanner.team/stops/Bgzdcen2"], ["https://tec.openplanner.team/stops/LeYheid2", "https://tec.openplanner.team/stops/LhSheid1"], ["https://tec.openplanner.team/stops/H4ro157b", "https://tec.openplanner.team/stops/H5pe135b"], ["https://tec.openplanner.team/stops/LTieg--2", "https://tec.openplanner.team/stops/LTiforg2"], ["https://tec.openplanner.team/stops/Cauushm1", "https://tec.openplanner.team/stops/N543aza"], ["https://tec.openplanner.team/stops/Cfmchap1", "https://tec.openplanner.team/stops/Cfmgrmo1"], ["https://tec.openplanner.team/stops/LMedoum2", "https://tec.openplanner.team/stops/LMemora2"], ["https://tec.openplanner.team/stops/Lvcreve1", "https://tec.openplanner.team/stops/Lvcvand1"], ["https://tec.openplanner.team/stops/X773aib", "https://tec.openplanner.team/stops/X954ahb"], ["https://tec.openplanner.team/stops/N236ana", "https://tec.openplanner.team/stops/N236aob"], ["https://tec.openplanner.team/stops/N569aab", "https://tec.openplanner.team/stops/N569abb"], ["https://tec.openplanner.team/stops/X362aca", "https://tec.openplanner.team/stops/X362acb"], ["https://tec.openplanner.team/stops/Bwagsta1", "https://tec.openplanner.team/stops/Cwgmell3"], ["https://tec.openplanner.team/stops/X940aba", "https://tec.openplanner.team/stops/X940abb"], ["https://tec.openplanner.team/stops/Bmlncle1", "https://tec.openplanner.team/stops/Bmlncle2"], ["https://tec.openplanner.team/stops/N539ama", "https://tec.openplanner.team/stops/N539amb"], ["https://tec.openplanner.team/stops/LBSvi321", "https://tec.openplanner.team/stops/LBSvi521"], ["https://tec.openplanner.team/stops/LPRmc--1", "https://tec.openplanner.team/stops/LPRmc--4"], ["https://tec.openplanner.team/stops/LRRbonr1", "https://tec.openplanner.team/stops/LRRpost1"], ["https://tec.openplanner.team/stops/Bopplon1", "https://tec.openplanner.team/stops/Bopplon2"], ["https://tec.openplanner.team/stops/X757aia", "https://tec.openplanner.team/stops/X757aib"], ["https://tec.openplanner.team/stops/N135aka", "https://tec.openplanner.team/stops/N135akb"], ["https://tec.openplanner.team/stops/LVLf37-1", "https://tec.openplanner.team/stops/LVLf37-2"], ["https://tec.openplanner.team/stops/Bsdampe1", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/N501ihy", "https://tec.openplanner.team/stops/N501ilb"], ["https://tec.openplanner.team/stops/N136aaa", "https://tec.openplanner.team/stops/N138aja"], ["https://tec.openplanner.team/stops/Lmojans1", "https://tec.openplanner.team/stops/Lmopast1"], ["https://tec.openplanner.team/stops/Cloauln1", "https://tec.openplanner.team/stops/Clooues2"], ["https://tec.openplanner.team/stops/LVBvill1", "https://tec.openplanner.team/stops/LVBvill2"], ["https://tec.openplanner.team/stops/H1fr124a", "https://tec.openplanner.team/stops/H1fr130b"], ["https://tec.openplanner.team/stops/X939aaa", "https://tec.openplanner.team/stops/X939acb"], ["https://tec.openplanner.team/stops/H1ho147a", "https://tec.openplanner.team/stops/H1pd141b"], ["https://tec.openplanner.team/stops/X982aga", "https://tec.openplanner.team/stops/X982bub"], ["https://tec.openplanner.team/stops/H4ld126a", "https://tec.openplanner.team/stops/H4ld128a"], ["https://tec.openplanner.team/stops/N988aaa", "https://tec.openplanner.team/stops/X989aea"], ["https://tec.openplanner.team/stops/X921alb", "https://tec.openplanner.team/stops/X921aoa"], ["https://tec.openplanner.team/stops/H4ln155a", "https://tec.openplanner.team/stops/H4ne148a"], ["https://tec.openplanner.team/stops/Lmaetan*", "https://tec.openplanner.team/stops/Lmapomm2"], ["https://tec.openplanner.team/stops/Bvirpos1", "https://tec.openplanner.team/stops/Bvirpos2"], ["https://tec.openplanner.team/stops/X547acb", "https://tec.openplanner.team/stops/X547adb"], ["https://tec.openplanner.team/stops/Bneesj32", "https://tec.openplanner.team/stops/Bneesjo1"], ["https://tec.openplanner.team/stops/H4ef113b", "https://tec.openplanner.team/stops/H4or114b"], ["https://tec.openplanner.team/stops/LVsboug2", "https://tec.openplanner.team/stops/NL57ajb"], ["https://tec.openplanner.team/stops/Cmlange1", "https://tec.openplanner.team/stops/Cmldeto1"], ["https://tec.openplanner.team/stops/Bolpmre2", "https://tec.openplanner.team/stops/Bpthcai2"], ["https://tec.openplanner.team/stops/X925aga", "https://tec.openplanner.team/stops/X925ala"], ["https://tec.openplanner.team/stops/Cctrjus1", "https://tec.openplanner.team/stops/Cctrjus2"], ["https://tec.openplanner.team/stops/X738aeb", "https://tec.openplanner.team/stops/X754aja"], ["https://tec.openplanner.team/stops/LBachpl1", "https://tec.openplanner.team/stops/LBapeup1"], ["https://tec.openplanner.team/stops/Blemsta2", "https://tec.openplanner.team/stops/Btubcal1"], ["https://tec.openplanner.team/stops/LTEkerk1", "https://tec.openplanner.team/stops/LTEkerk2"], ["https://tec.openplanner.team/stops/X666ala", "https://tec.openplanner.team/stops/X729aca"], ["https://tec.openplanner.team/stops/X911aaa", "https://tec.openplanner.team/stops/X911aab"], ["https://tec.openplanner.team/stops/LAmcorn1", "https://tec.openplanner.team/stops/LAmeg--1"], ["https://tec.openplanner.team/stops/Cfccabi1", "https://tec.openplanner.team/stops/Cfcecol1"], ["https://tec.openplanner.team/stops/Cgrflac1", "https://tec.openplanner.team/stops/NC14aib"], ["https://tec.openplanner.team/stops/X896agb", "https://tec.openplanner.team/stops/X898agb"], ["https://tec.openplanner.team/stops/X811alb", "https://tec.openplanner.team/stops/X811aoa"], ["https://tec.openplanner.team/stops/Bchgrco1", "https://tec.openplanner.team/stops/Bchgvil2"], ["https://tec.openplanner.team/stops/Lanadmi2", "https://tec.openplanner.team/stops/Lloretr1"], ["https://tec.openplanner.team/stops/NH01apa", "https://tec.openplanner.team/stops/NH01aqa"], ["https://tec.openplanner.team/stops/LFCscho1", "https://tec.openplanner.team/stops/LWRvert2"], ["https://tec.openplanner.team/stops/Bniveco1", "https://tec.openplanner.team/stops/Bnivlde1"], ["https://tec.openplanner.team/stops/Caistro1", "https://tec.openplanner.team/stops/Crsrose1"], ["https://tec.openplanner.team/stops/Bolgcsa2", "https://tec.openplanner.team/stops/Bolgrsa1"], ["https://tec.openplanner.team/stops/Blhunys1", "https://tec.openplanner.team/stops/Blhunys3"], ["https://tec.openplanner.team/stops/Ccypetv2", "https://tec.openplanner.team/stops/NH01aha"], ["https://tec.openplanner.team/stops/X801ata", "https://tec.openplanner.team/stops/X836aaa"], ["https://tec.openplanner.team/stops/Cgofleu2", "https://tec.openplanner.team/stops/CMchfl1"], ["https://tec.openplanner.team/stops/H1mj123b", "https://tec.openplanner.team/stops/H1ni316a"], ["https://tec.openplanner.team/stops/H1gr112b", "https://tec.openplanner.team/stops/H1gr123b"], ["https://tec.openplanner.team/stops/Lmncasi2", "https://tec.openplanner.team/stops/Lsmjalh1"], ["https://tec.openplanner.team/stops/LAyfren2", "https://tec.openplanner.team/stops/Lflrhot2"], ["https://tec.openplanner.team/stops/H4ce103b", "https://tec.openplanner.team/stops/H4ce108b"], ["https://tec.openplanner.team/stops/H4ta124a", "https://tec.openplanner.team/stops/H4ta135b"], ["https://tec.openplanner.team/stops/N536aeb", "https://tec.openplanner.team/stops/N580agb"], ["https://tec.openplanner.team/stops/LWRbois1", "https://tec.openplanner.team/stops/LWRchem1"], ["https://tec.openplanner.team/stops/N221abb", "https://tec.openplanner.team/stops/X221aad"], ["https://tec.openplanner.team/stops/Lvehomb2", "https://tec.openplanner.team/stops/Lvesomm1"], ["https://tec.openplanner.team/stops/X636aub", "https://tec.openplanner.team/stops/X636axa"], ["https://tec.openplanner.team/stops/N536aba", "https://tec.openplanner.team/stops/N563aab"], ["https://tec.openplanner.team/stops/N512aia", "https://tec.openplanner.team/stops/N512apb"], ["https://tec.openplanner.team/stops/Cctgaux2", "https://tec.openplanner.team/stops/Cctstro3"], ["https://tec.openplanner.team/stops/LJUmc--2", "https://tec.openplanner.team/stops/LVSpota2"], ["https://tec.openplanner.team/stops/LMsalen2", "https://tec.openplanner.team/stops/LMsviad1"], ["https://tec.openplanner.team/stops/Ljudeme2", "https://tec.openplanner.team/stops/Ljuhava2"], ["https://tec.openplanner.team/stops/X781acb", "https://tec.openplanner.team/stops/X781aeb"], ["https://tec.openplanner.team/stops/H2mi122b", "https://tec.openplanner.team/stops/H2mi125b"], ["https://tec.openplanner.team/stops/H1hl127b", "https://tec.openplanner.team/stops/H1hl128a"], ["https://tec.openplanner.team/stops/N577afa", "https://tec.openplanner.team/stops/N577afb"], ["https://tec.openplanner.team/stops/X662asa", "https://tec.openplanner.team/stops/X662asb"], ["https://tec.openplanner.team/stops/Clrwesp1", "https://tec.openplanner.team/stops/Clrwesp2"], ["https://tec.openplanner.team/stops/H4ft134b", "https://tec.openplanner.team/stops/H4ft136a"], ["https://tec.openplanner.team/stops/H1ro131b", "https://tec.openplanner.team/stops/H1ro134b"], ["https://tec.openplanner.team/stops/H4cr111b", "https://tec.openplanner.team/stops/H4ff120b"], ["https://tec.openplanner.team/stops/H4ma411a", "https://tec.openplanner.team/stops/H4ma417b"], ["https://tec.openplanner.team/stops/LBjflor1", "https://tec.openplanner.team/stops/X575afb"], ["https://tec.openplanner.team/stops/LFmbure1", "https://tec.openplanner.team/stops/LKmdrie1"], ["https://tec.openplanner.team/stops/H1mb166a", "https://tec.openplanner.team/stops/H1mb168b"], ["https://tec.openplanner.team/stops/Ljubois1", "https://tec.openplanner.team/stops/Ljuprev3"], ["https://tec.openplanner.team/stops/N226aaa", "https://tec.openplanner.team/stops/N226aba"], ["https://tec.openplanner.team/stops/Ldichat1", "https://tec.openplanner.team/stops/Ldifoye1"], ["https://tec.openplanner.team/stops/X985afb", "https://tec.openplanner.team/stops/X985aha"], ["https://tec.openplanner.team/stops/Clfpomm1", "https://tec.openplanner.team/stops/Crglyre1"], ["https://tec.openplanner.team/stops/Bpthfus1", "https://tec.openplanner.team/stops/Bwancal3"], ["https://tec.openplanner.team/stops/H1ht128b", "https://tec.openplanner.team/stops/H1vt195b"], ["https://tec.openplanner.team/stops/N509bga", "https://tec.openplanner.team/stops/N509bgb"], ["https://tec.openplanner.team/stops/Bwavlep1", "https://tec.openplanner.team/stops/Bwavlep2"], ["https://tec.openplanner.team/stops/LkTgutl2", "https://tec.openplanner.team/stops/LkTlibe1"], ["https://tec.openplanner.team/stops/LPTblan1", "https://tec.openplanner.team/stops/X750asa"], ["https://tec.openplanner.team/stops/N201aja", "https://tec.openplanner.team/stops/N201ajb"], ["https://tec.openplanner.team/stops/Ccubric1", "https://tec.openplanner.team/stops/Ccuseba2"], ["https://tec.openplanner.team/stops/X609aka", "https://tec.openplanner.team/stops/X609amb"], ["https://tec.openplanner.team/stops/X870adb", "https://tec.openplanner.team/stops/X870ajb"], ["https://tec.openplanner.team/stops/Cjuhame2", "https://tec.openplanner.team/stops/Cjulamb4"], ["https://tec.openplanner.team/stops/Lhr2ave1", "https://tec.openplanner.team/stops/Lhrdelv1"], ["https://tec.openplanner.team/stops/X649abb", "https://tec.openplanner.team/stops/X671aca"], ["https://tec.openplanner.team/stops/N513adb", "https://tec.openplanner.team/stops/N513ala"], ["https://tec.openplanner.team/stops/LrEkirc2", "https://tec.openplanner.team/stops/LrEkreu2"], ["https://tec.openplanner.team/stops/LXoeg--4", "https://tec.openplanner.team/stops/LXomc--3"], ["https://tec.openplanner.team/stops/X908aba", "https://tec.openplanner.team/stops/X908aca"], ["https://tec.openplanner.team/stops/LNHbarr2", "https://tec.openplanner.team/stops/LSeaque1"], ["https://tec.openplanner.team/stops/X633abb", "https://tec.openplanner.team/stops/X633acb"], ["https://tec.openplanner.team/stops/X901aoa", "https://tec.openplanner.team/stops/X901bnb"], ["https://tec.openplanner.team/stops/Cplbbro1", "https://tec.openplanner.team/stops/Cplrmon1"], ["https://tec.openplanner.team/stops/Bcercsa1", "https://tec.openplanner.team/stops/Bcsempl1"], ["https://tec.openplanner.team/stops/N252acd", "https://tec.openplanner.team/stops/N252ada"], ["https://tec.openplanner.team/stops/Louairl2", "https://tec.openplanner.team/stops/Lousite6"], ["https://tec.openplanner.team/stops/LPLheid1", "https://tec.openplanner.team/stops/LPLheid2"], ["https://tec.openplanner.team/stops/Cmgbrou1", "https://tec.openplanner.team/stops/Cmgcabi1"], ["https://tec.openplanner.team/stops/Cgzcorn1", "https://tec.openplanner.team/stops/Cgzplac6"], ["https://tec.openplanner.team/stops/H1qy133a", "https://tec.openplanner.team/stops/H1qy136a"], ["https://tec.openplanner.team/stops/LBNforg2", "https://tec.openplanner.team/stops/LWEbr051"], ["https://tec.openplanner.team/stops/X824agb", "https://tec.openplanner.team/stops/X824aka"], ["https://tec.openplanner.team/stops/N234abb", "https://tec.openplanner.team/stops/N234adb"], ["https://tec.openplanner.team/stops/Baegm501", "https://tec.openplanner.team/stops/NR38adb"], ["https://tec.openplanner.team/stops/LBEabbe2", "https://tec.openplanner.team/stops/LBEnina4"], ["https://tec.openplanner.team/stops/N501bhb", "https://tec.openplanner.team/stops/N501bib"], ["https://tec.openplanner.team/stops/N506atb", "https://tec.openplanner.team/stops/N506ava"], ["https://tec.openplanner.team/stops/X771acb", "https://tec.openplanner.team/stops/X773ala"], ["https://tec.openplanner.team/stops/H2ha135c", "https://tec.openplanner.team/stops/H2ha136a"], ["https://tec.openplanner.team/stops/X992abb", "https://tec.openplanner.team/stops/X992afa"], ["https://tec.openplanner.team/stops/LsVgrun1", "https://tec.openplanner.team/stops/LsVlind*"], ["https://tec.openplanner.team/stops/H5at111b", "https://tec.openplanner.team/stops/H5at141a"], ["https://tec.openplanner.team/stops/Lfhcoop2", "https://tec.openplanner.team/stops/Ljerose3"], ["https://tec.openplanner.team/stops/Cbmvalt2", "https://tec.openplanner.team/stops/H1tt109b"], ["https://tec.openplanner.team/stops/LaHzoll*", "https://tec.openplanner.team/stops/LhBdorf2"], ["https://tec.openplanner.team/stops/LWZdtec1", "https://tec.openplanner.team/stops/LWZeg--1"], ["https://tec.openplanner.team/stops/LAUberg2", "https://tec.openplanner.team/stops/LFdbagu2"], ["https://tec.openplanner.team/stops/H4ma162a", "https://tec.openplanner.team/stops/H4ry129b"], ["https://tec.openplanner.team/stops/Cfbcal1", "https://tec.openplanner.team/stops/Cfcrdpr2"], ["https://tec.openplanner.team/stops/H5el112a", "https://tec.openplanner.team/stops/H5el112b"], ["https://tec.openplanner.team/stops/Cflchap1", "https://tec.openplanner.team/stops/Cflchap3"], ["https://tec.openplanner.team/stops/LFMkrut2", "https://tec.openplanner.team/stops/LFPkerk2"], ["https://tec.openplanner.team/stops/H1he105a", "https://tec.openplanner.team/stops/H1he105b"], ["https://tec.openplanner.team/stops/X877aga", "https://tec.openplanner.team/stops/X878aaa"], ["https://tec.openplanner.team/stops/Chhverr1", "https://tec.openplanner.team/stops/Cmx3arb2"], ["https://tec.openplanner.team/stops/Ccoforr2", "https://tec.openplanner.team/stops/Csoperi1"], ["https://tec.openplanner.team/stops/Lflpaeu1", "https://tec.openplanner.team/stops/Lrecroi2"], ["https://tec.openplanner.team/stops/Cmlcons2", "https://tec.openplanner.team/stops/Cmmbsit2"], ["https://tec.openplanner.team/stops/N125acb", "https://tec.openplanner.team/stops/N149ala"], ["https://tec.openplanner.team/stops/Ldijean2", "https://tec.openplanner.team/stops/Ldipiss2"], ["https://tec.openplanner.team/stops/Bixlaca1", "https://tec.openplanner.team/stops/Bixlozo2"], ["https://tec.openplanner.team/stops/H5el105a", "https://tec.openplanner.team/stops/H5el105b"], ["https://tec.openplanner.team/stops/LHaodei2", "https://tec.openplanner.team/stops/LHarenn1"], ["https://tec.openplanner.team/stops/Lanfran2", "https://tec.openplanner.team/stops/Lanpisc1"], ["https://tec.openplanner.team/stops/X636aza", "https://tec.openplanner.team/stops/X636bcb"], ["https://tec.openplanner.team/stops/Cmcbriq2", "https://tec.openplanner.team/stops/Cmcbriq3"], ["https://tec.openplanner.team/stops/X804ara", "https://tec.openplanner.team/stops/X804arb"], ["https://tec.openplanner.team/stops/N232bna", "https://tec.openplanner.team/stops/N232bnb"], ["https://tec.openplanner.team/stops/H2gy108a", "https://tec.openplanner.team/stops/H2gy108b"], ["https://tec.openplanner.team/stops/H1em110a", "https://tec.openplanner.team/stops/H1em111b"], ["https://tec.openplanner.team/stops/N110aga", "https://tec.openplanner.team/stops/N125aab"], ["https://tec.openplanner.team/stops/LDmdomm1", "https://tec.openplanner.team/stops/LDmdomm2"], ["https://tec.openplanner.team/stops/N537abb", "https://tec.openplanner.team/stops/N537akb"], ["https://tec.openplanner.team/stops/X992aab", "https://tec.openplanner.team/stops/X993aea"], ["https://tec.openplanner.team/stops/N139abb", "https://tec.openplanner.team/stops/N139acb"], ["https://tec.openplanner.team/stops/H4fr140b", "https://tec.openplanner.team/stops/H4ma419a"], ["https://tec.openplanner.team/stops/X788aga", "https://tec.openplanner.team/stops/X788agb"], ["https://tec.openplanner.team/stops/H4ga149b", "https://tec.openplanner.team/stops/H4ga167b"], ["https://tec.openplanner.team/stops/X602aha", "https://tec.openplanner.team/stops/X602aob"], ["https://tec.openplanner.team/stops/Cgxchea1", "https://tec.openplanner.team/stops/Cgxcime2"], ["https://tec.openplanner.team/stops/Bperpla1", "https://tec.openplanner.team/stops/Bperrcr1"], ["https://tec.openplanner.team/stops/H4to137a", "https://tec.openplanner.team/stops/H4to137b"], ["https://tec.openplanner.team/stops/LCvneuf2", "https://tec.openplanner.team/stops/LTBeg--2"], ["https://tec.openplanner.team/stops/H4ty300b", "https://tec.openplanner.team/stops/H4ty350a"], ["https://tec.openplanner.team/stops/X761acb", "https://tec.openplanner.team/stops/X761adb"], ["https://tec.openplanner.team/stops/H4lg103a", "https://tec.openplanner.team/stops/H4rm112b"], ["https://tec.openplanner.team/stops/X669aca", "https://tec.openplanner.team/stops/X669acb"], ["https://tec.openplanner.team/stops/X837aib", "https://tec.openplanner.team/stops/X837alb"], ["https://tec.openplanner.team/stops/LEBmoul1", "https://tec.openplanner.team/stops/LLxnive2"], ["https://tec.openplanner.team/stops/LWabela1", "https://tec.openplanner.team/stops/LWacime1"], ["https://tec.openplanner.team/stops/Cvrchap2", "https://tec.openplanner.team/stops/Cvregl1"], ["https://tec.openplanner.team/stops/LBBcarr2", "https://tec.openplanner.team/stops/LOccarr2"], ["https://tec.openplanner.team/stops/H1mh115b", "https://tec.openplanner.team/stops/H1tl122a"], ["https://tec.openplanner.team/stops/NL76aea", "https://tec.openplanner.team/stops/NL77abb"], ["https://tec.openplanner.team/stops/H2ch106a", "https://tec.openplanner.team/stops/H2ch106b"], ["https://tec.openplanner.team/stops/Bsomtce1", "https://tec.openplanner.team/stops/N584aea"], ["https://tec.openplanner.team/stops/X669aha", "https://tec.openplanner.team/stops/X669ahb"], ["https://tec.openplanner.team/stops/H1ms308c", "https://tec.openplanner.team/stops/H1ms308d"], ["https://tec.openplanner.team/stops/Canjonc1", "https://tec.openplanner.team/stops/Canjonc2"], ["https://tec.openplanner.team/stops/Baudwav1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/N538aya", "https://tec.openplanner.team/stops/N538bab"], ["https://tec.openplanner.team/stops/N121ada", "https://tec.openplanner.team/stops/N121adb"], ["https://tec.openplanner.team/stops/H4ty290b", "https://tec.openplanner.team/stops/H4ty302b"], ["https://tec.openplanner.team/stops/LMXaven1", "https://tec.openplanner.team/stops/LMXempe2"], ["https://tec.openplanner.team/stops/X808aia", "https://tec.openplanner.team/stops/X808ajb"], ["https://tec.openplanner.team/stops/N161aaa", "https://tec.openplanner.team/stops/N161aab"], ["https://tec.openplanner.team/stops/X731ada", "https://tec.openplanner.team/stops/X731aea"], ["https://tec.openplanner.team/stops/Cgycorv1", "https://tec.openplanner.team/stops/Cgycorv4"], ["https://tec.openplanner.team/stops/Bhmmlad2", "https://tec.openplanner.team/stops/Bnetace2"], ["https://tec.openplanner.team/stops/LORpave1", "https://tec.openplanner.team/stops/LORthie1"], ["https://tec.openplanner.team/stops/Lhrpaix2", "https://tec.openplanner.team/stops/Llgcoro4"], ["https://tec.openplanner.team/stops/N383aca", "https://tec.openplanner.team/stops/N383ada"], ["https://tec.openplanner.team/stops/LORgend1", "https://tec.openplanner.team/stops/LORhorp1"], ["https://tec.openplanner.team/stops/Cgomerm1", "https://tec.openplanner.team/stops/Cgomerm4"], ["https://tec.openplanner.team/stops/Bottbou1", "https://tec.openplanner.team/stops/Bottcbp1"], ["https://tec.openplanner.team/stops/N117aba", "https://tec.openplanner.team/stops/N117bdd"], ["https://tec.openplanner.team/stops/LnDkreu1", "https://tec.openplanner.team/stops/LwSbrei1"], ["https://tec.openplanner.team/stops/X358acd", "https://tec.openplanner.team/stops/X993aca"], ["https://tec.openplanner.team/stops/LPlchpl1", "https://tec.openplanner.team/stops/LPldoua4"], ["https://tec.openplanner.team/stops/Csepier1", "https://tec.openplanner.team/stops/N425abb"], ["https://tec.openplanner.team/stops/X982boa", "https://tec.openplanner.team/stops/X982bob"], ["https://tec.openplanner.team/stops/Blhupa11", "https://tec.openplanner.team/stops/Blhupa12"], ["https://tec.openplanner.team/stops/H5rx138a", "https://tec.openplanner.team/stops/H5rx145b"], ["https://tec.openplanner.team/stops/Lhrpont1", "https://tec.openplanner.team/stops/Lhrstev2"], ["https://tec.openplanner.team/stops/N538agb", "https://tec.openplanner.team/stops/N538ajd"], ["https://tec.openplanner.team/stops/Lscgare2", "https://tec.openplanner.team/stops/Lscpamp1"], ["https://tec.openplanner.team/stops/H1ca105a", "https://tec.openplanner.team/stops/H1ne140a"], ["https://tec.openplanner.team/stops/X979ajb", "https://tec.openplanner.team/stops/X979akb"], ["https://tec.openplanner.team/stops/Bgliron1", "https://tec.openplanner.team/stops/Bglitro3"], ["https://tec.openplanner.team/stops/LVPduvi1", "https://tec.openplanner.team/stops/LVPeg--1"], ["https://tec.openplanner.team/stops/X955aba", "https://tec.openplanner.team/stops/X955abb"], ["https://tec.openplanner.team/stops/Bwlhpma2", "https://tec.openplanner.team/stops/Bwlhppg4"], ["https://tec.openplanner.team/stops/LLrdigu1", "https://tec.openplanner.team/stops/LLrgara2"], ["https://tec.openplanner.team/stops/X764aea", "https://tec.openplanner.team/stops/X765aba"], ["https://tec.openplanner.team/stops/X644aab", "https://tec.openplanner.team/stops/X644abb"], ["https://tec.openplanner.team/stops/LPOeg--1", "https://tec.openplanner.team/stops/LPOthom1"], ["https://tec.openplanner.team/stops/N501hqb", "https://tec.openplanner.team/stops/N501ila"], ["https://tec.openplanner.team/stops/H3bi101a", "https://tec.openplanner.team/stops/H3bi101b"], ["https://tec.openplanner.team/stops/LLelava1", "https://tec.openplanner.team/stops/X547aab"], ["https://tec.openplanner.team/stops/LCxcouv1", "https://tec.openplanner.team/stops/LCxfawe1"], ["https://tec.openplanner.team/stops/NC23aaa", "https://tec.openplanner.team/stops/NC23aba"], ["https://tec.openplanner.team/stops/N245acb", "https://tec.openplanner.team/stops/N340aib"], ["https://tec.openplanner.team/stops/Lhrmare1", "https://tec.openplanner.team/stops/Lhrmare4"], ["https://tec.openplanner.team/stops/LeUhaas2", "https://tec.openplanner.team/stops/LeUjuge2"], ["https://tec.openplanner.team/stops/H4os217a", "https://tec.openplanner.team/stops/H4os221a"], ["https://tec.openplanner.team/stops/Lagpn6-1", "https://tec.openplanner.team/stops/LTIpres1"], ["https://tec.openplanner.team/stops/LrDschl2", "https://tec.openplanner.team/stops/LrEdic71"], ["https://tec.openplanner.team/stops/H1mq198b", "https://tec.openplanner.team/stops/H5is170a"], ["https://tec.openplanner.team/stops/X623abb", "https://tec.openplanner.team/stops/X623acb"], ["https://tec.openplanner.team/stops/N540aca", "https://tec.openplanner.team/stops/N540aha"], ["https://tec.openplanner.team/stops/LVPbleh2", "https://tec.openplanner.team/stops/LVPcrok1"], ["https://tec.openplanner.team/stops/H2me115b", "https://tec.openplanner.team/stops/H2me117a"], ["https://tec.openplanner.team/stops/Bettars1", "https://tec.openplanner.team/stops/Bettbue1"], ["https://tec.openplanner.team/stops/X788aha", "https://tec.openplanner.team/stops/X790abb"], ["https://tec.openplanner.team/stops/N538aob", "https://tec.openplanner.team/stops/N538apa"], ["https://tec.openplanner.team/stops/LESgran1", "https://tec.openplanner.team/stops/LESvign1"], ["https://tec.openplanner.team/stops/N351akb", "https://tec.openplanner.team/stops/N351akd"], ["https://tec.openplanner.team/stops/X818asc", "https://tec.openplanner.team/stops/X818awb"], ["https://tec.openplanner.team/stops/Cgogrco2", "https://tec.openplanner.team/stops/Ctmmana1"], ["https://tec.openplanner.team/stops/Lagcile1", "https://tec.openplanner.team/stops/Llgdesa1"], ["https://tec.openplanner.team/stops/LAIrout1", "https://tec.openplanner.team/stops/LVMborl1"], ["https://tec.openplanner.team/stops/Bohnbra2", "https://tec.openplanner.team/stops/Bohnrsc1"], ["https://tec.openplanner.team/stops/LLM4rou1", "https://tec.openplanner.team/stops/LLMeg--2"], ["https://tec.openplanner.team/stops/N136ada", "https://tec.openplanner.team/stops/N136adb"], ["https://tec.openplanner.team/stops/H4wa150a", "https://tec.openplanner.team/stops/H4wa150b"], ["https://tec.openplanner.team/stops/Bblaeur1", "https://tec.openplanner.team/stops/Bblarbe2"], ["https://tec.openplanner.team/stops/NL80ahb", "https://tec.openplanner.team/stops/NL80aia"], ["https://tec.openplanner.team/stops/X759ada", "https://tec.openplanner.team/stops/X759adb"], ["https://tec.openplanner.team/stops/H1as101a", "https://tec.openplanner.team/stops/H1as104a"], ["https://tec.openplanner.team/stops/LVTeg--1", "https://tec.openplanner.team/stops/LVTforg2"], ["https://tec.openplanner.team/stops/H1te184a", "https://tec.openplanner.team/stops/H1te184b"], ["https://tec.openplanner.team/stops/Bneesj31", "https://tec.openplanner.team/stops/Bneesj32"], ["https://tec.openplanner.team/stops/LrAplat2", "https://tec.openplanner.team/stops/LrAputz2"], ["https://tec.openplanner.team/stops/Cchalou1", "https://tec.openplanner.team/stops/Cmtdepo1"], ["https://tec.openplanner.team/stops/NR21aha", "https://tec.openplanner.team/stops/NR38afb"], ["https://tec.openplanner.team/stops/N155aha", "https://tec.openplanner.team/stops/N160aab"], ["https://tec.openplanner.team/stops/Cluberl1", "https://tec.openplanner.team/stops/Clulidl2"], ["https://tec.openplanner.team/stops/Ljubeyn2", "https://tec.openplanner.team/stops/Ljuroch2"], ["https://tec.openplanner.team/stops/H4wn123b", "https://tec.openplanner.team/stops/H4wn138b"], ["https://tec.openplanner.team/stops/Bnivga32", "https://tec.openplanner.team/stops/Bnivga61"], ["https://tec.openplanner.team/stops/LaAburt1", "https://tec.openplanner.team/stops/LaAseba1"], ["https://tec.openplanner.team/stops/N584aub", "https://tec.openplanner.team/stops/N584ayb"], ["https://tec.openplanner.team/stops/LAuchau2", "https://tec.openplanner.team/stops/LBOande1"], ["https://tec.openplanner.team/stops/Bnivmon1", "https://tec.openplanner.team/stops/Bnivsho2"], ["https://tec.openplanner.team/stops/Cmlbeau4", "https://tec.openplanner.team/stops/Cmlcons1"], ["https://tec.openplanner.team/stops/LgRhouf2", "https://tec.openplanner.team/stops/LnUhohe1"], ["https://tec.openplanner.team/stops/LOUchen1", "https://tec.openplanner.team/stops/Lvitomb2"], ["https://tec.openplanner.team/stops/LHNgare1", "https://tec.openplanner.team/stops/LHNwaut1"], ["https://tec.openplanner.team/stops/LAUcarr1", "https://tec.openplanner.team/stops/LFdeg--4"], ["https://tec.openplanner.team/stops/N209aea", "https://tec.openplanner.team/stops/N209aha"], ["https://tec.openplanner.team/stops/X651abb", "https://tec.openplanner.team/stops/X651aca"], ["https://tec.openplanner.team/stops/X761aca", "https://tec.openplanner.team/stops/X762aga"], ["https://tec.openplanner.team/stops/Bvirfpo1", "https://tec.openplanner.team/stops/Bvirfpo2"], ["https://tec.openplanner.team/stops/X754aza", "https://tec.openplanner.team/stops/X754azb"], ["https://tec.openplanner.team/stops/Cfrempe1", "https://tec.openplanner.team/stops/Cfrempe2"], ["https://tec.openplanner.team/stops/LmAgruf2", "https://tec.openplanner.team/stops/LmAkirc2"], ["https://tec.openplanner.team/stops/Brxmcha1", "https://tec.openplanner.team/stops/Brxmhai3"], ["https://tec.openplanner.team/stops/H4bo111b", "https://tec.openplanner.team/stops/H4bo119a"], ["https://tec.openplanner.team/stops/Lseconc1", "https://tec.openplanner.team/stops/Lsecroi2"], ["https://tec.openplanner.team/stops/LVthest1", "https://tec.openplanner.team/stops/LVttarg2"], ["https://tec.openplanner.team/stops/Cdapige2", "https://tec.openplanner.team/stops/CMpige1"], ["https://tec.openplanner.team/stops/LHGtong2", "https://tec.openplanner.team/stops/LHGzoni2"], ["https://tec.openplanner.team/stops/LRRchen1", "https://tec.openplanner.team/stops/LRRroth1"], ["https://tec.openplanner.team/stops/H4ty295d", "https://tec.openplanner.team/stops/H4ty305d"], ["https://tec.openplanner.team/stops/Cdacolu1", "https://tec.openplanner.team/stops/Cdacolu2"], ["https://tec.openplanner.team/stops/H1ms267a", "https://tec.openplanner.team/stops/H1ni322b"], ["https://tec.openplanner.team/stops/Lchsa631", "https://tec.openplanner.team/stops/Lchsaec1"], ["https://tec.openplanner.team/stops/LJUmc--1", "https://tec.openplanner.team/stops/LJUxhen3"], ["https://tec.openplanner.team/stops/Ladhomb1", "https://tec.openplanner.team/stops/Ladhomb2"], ["https://tec.openplanner.team/stops/LBAcarr1", "https://tec.openplanner.team/stops/LBAfort1"], ["https://tec.openplanner.team/stops/Beclbse1", "https://tec.openplanner.team/stops/Beclesp2"], ["https://tec.openplanner.team/stops/LMOford1", "https://tec.openplanner.team/stops/LMOlens3"], ["https://tec.openplanner.team/stops/LBEpier1", "https://tec.openplanner.team/stops/LBEtroo2"], ["https://tec.openplanner.team/stops/LkEbruc1", "https://tec.openplanner.team/stops/LkEsada2"], ["https://tec.openplanner.team/stops/N528ala", "https://tec.openplanner.team/stops/N528alb"], ["https://tec.openplanner.team/stops/Cmlphai1", "https://tec.openplanner.team/stops/Cmlpomm2"], ["https://tec.openplanner.team/stops/N202aaa", "https://tec.openplanner.team/stops/N203adb"], ["https://tec.openplanner.team/stops/H4mo138b", "https://tec.openplanner.team/stops/H4mo140b"], ["https://tec.openplanner.team/stops/X979agb", "https://tec.openplanner.team/stops/X982bwa"], ["https://tec.openplanner.team/stops/Bosqcar1", "https://tec.openplanner.team/stops/Btubren1"], ["https://tec.openplanner.team/stops/H1ms281b", "https://tec.openplanner.team/stops/H1ni322a"], ["https://tec.openplanner.team/stops/LWOruis1", "https://tec.openplanner.team/stops/LWOsass1"], ["https://tec.openplanner.team/stops/N368aeb", "https://tec.openplanner.team/stops/N368afa"], ["https://tec.openplanner.team/stops/Bbghsta1", "https://tec.openplanner.team/stops/Bbghsta2"], ["https://tec.openplanner.team/stops/N501bkb", "https://tec.openplanner.team/stops/N501bma"], ["https://tec.openplanner.team/stops/Brixbai2", "https://tec.openplanner.team/stops/Brixeur5"], ["https://tec.openplanner.team/stops/Cgochfe1", "https://tec.openplanner.team/stops/Cgoetun4"], ["https://tec.openplanner.team/stops/LLrcomb1", "https://tec.openplanner.team/stops/LLrmc--2"], ["https://tec.openplanner.team/stops/X878aba", "https://tec.openplanner.team/stops/X995aga"], ["https://tec.openplanner.team/stops/Bnivbpe2", "https://tec.openplanner.team/stops/Bnivplt1"], ["https://tec.openplanner.team/stops/X730afa", "https://tec.openplanner.team/stops/X730afb"], ["https://tec.openplanner.team/stops/H1mx122a", "https://tec.openplanner.team/stops/H1mx122b"], ["https://tec.openplanner.team/stops/H1bb116b", "https://tec.openplanner.team/stops/H1ho123b"], ["https://tec.openplanner.team/stops/H4do100a", "https://tec.openplanner.team/stops/H4do105a"], ["https://tec.openplanner.team/stops/H1cu127a", "https://tec.openplanner.team/stops/H1cu127b"], ["https://tec.openplanner.team/stops/Llgcour2", "https://tec.openplanner.team/stops/Llgtcha2"], ["https://tec.openplanner.team/stops/Bolgrga1", "https://tec.openplanner.team/stops/Bpelf962"], ["https://tec.openplanner.team/stops/X670aqa", "https://tec.openplanner.team/stops/X670aqb"], ["https://tec.openplanner.team/stops/X938acb", "https://tec.openplanner.team/stops/X938aeb"], ["https://tec.openplanner.team/stops/LSdbote1", "https://tec.openplanner.team/stops/LSdcarr1"], ["https://tec.openplanner.team/stops/N529aaa", "https://tec.openplanner.team/stops/N529aab"], ["https://tec.openplanner.team/stops/LbTathe2", "https://tec.openplanner.team/stops/LbTmuhl2"], ["https://tec.openplanner.team/stops/H1em102b", "https://tec.openplanner.team/stops/H1em111d"], ["https://tec.openplanner.team/stops/LMsalen2", "https://tec.openplanner.team/stops/LPbtene1"], ["https://tec.openplanner.team/stops/N135aeb", "https://tec.openplanner.team/stops/N135aed"], ["https://tec.openplanner.team/stops/LMOc50-1", "https://tec.openplanner.team/stops/LMOeg--1"], ["https://tec.openplanner.team/stops/LrDhind1", "https://tec.openplanner.team/stops/LrDkirc2"], ["https://tec.openplanner.team/stops/LCObouh2", "https://tec.openplanner.team/stops/LCOdrol1"], ["https://tec.openplanner.team/stops/LMgberw2", "https://tec.openplanner.team/stops/LVIferm2"], ["https://tec.openplanner.team/stops/LMAptne2", "https://tec.openplanner.team/stops/LMArave1"], ["https://tec.openplanner.team/stops/H4ta128b", "https://tec.openplanner.team/stops/H4ta130b"], ["https://tec.openplanner.team/stops/X771aca", "https://tec.openplanner.team/stops/X771acb"], ["https://tec.openplanner.team/stops/X898aca", "https://tec.openplanner.team/stops/X898aoa"], ["https://tec.openplanner.team/stops/Lcceclu1", "https://tec.openplanner.team/stops/LRarami2"], ["https://tec.openplanner.team/stops/H1bi103b", "https://tec.openplanner.team/stops/H1lo120b"], ["https://tec.openplanner.team/stops/H4er121b", "https://tec.openplanner.team/stops/H4wu376b"], ["https://tec.openplanner.team/stops/N557aaa", "https://tec.openplanner.team/stops/N557aha"], ["https://tec.openplanner.team/stops/H5pe131b", "https://tec.openplanner.team/stops/H5pe150a"], ["https://tec.openplanner.team/stops/Cfrcoop1", "https://tec.openplanner.team/stops/Cfrplac6"], ["https://tec.openplanner.team/stops/H1pa106a", "https://tec.openplanner.team/stops/H1pa166b"], ["https://tec.openplanner.team/stops/Lgrecpe1", "https://tec.openplanner.team/stops/Lgrlabo2"], ["https://tec.openplanner.team/stops/X654ada", "https://tec.openplanner.team/stops/X654aka"], ["https://tec.openplanner.team/stops/LaMbrei2", "https://tec.openplanner.team/stops/LaMbull1"], ["https://tec.openplanner.team/stops/H4lg101a", "https://tec.openplanner.team/stops/H4ta115b"], ["https://tec.openplanner.team/stops/X731aeb", "https://tec.openplanner.team/stops/X731aka"], ["https://tec.openplanner.team/stops/LkEherg2", "https://tec.openplanner.team/stops/LVAbuss1"], ["https://tec.openplanner.team/stops/LaHzoll*", "https://tec.openplanner.team/stops/LlSzoll2"], ["https://tec.openplanner.team/stops/Lmobrac1", "https://tec.openplanner.team/stops/Lmopans4"], ["https://tec.openplanner.team/stops/H1qu105b", "https://tec.openplanner.team/stops/H1qu111b"], ["https://tec.openplanner.team/stops/LXHbell2", "https://tec.openplanner.team/stops/LXHbois2"], ["https://tec.openplanner.team/stops/H2sv211b", "https://tec.openplanner.team/stops/H2sv215a"], ["https://tec.openplanner.team/stops/Cgrgrce1", "https://tec.openplanner.team/stops/N160afa"], ["https://tec.openplanner.team/stops/H1by101a", "https://tec.openplanner.team/stops/H1by101b"], ["https://tec.openplanner.team/stops/Cjualtr2", "https://tec.openplanner.team/stops/Cjudevo1"], ["https://tec.openplanner.team/stops/LSPcomm2", "https://tec.openplanner.team/stops/LSPtonn2"], ["https://tec.openplanner.team/stops/H1mr125b", "https://tec.openplanner.team/stops/H1mr126a"], ["https://tec.openplanner.team/stops/H1pa105a", "https://tec.openplanner.team/stops/H1pa109a"], ["https://tec.openplanner.team/stops/Cpiegli2", "https://tec.openplanner.team/stops/Cpipost2"], ["https://tec.openplanner.team/stops/H1fr114a", "https://tec.openplanner.team/stops/H1fr114b"], ["https://tec.openplanner.team/stops/NH01aib", "https://tec.openplanner.team/stops/NH01aja"], ["https://tec.openplanner.team/stops/Cgoboll4", "https://tec.openplanner.team/stops/Cgogare1"], ["https://tec.openplanner.team/stops/LPtchpl1", "https://tec.openplanner.team/stops/LPtchpl2"], ["https://tec.openplanner.team/stops/Bblabfo1", "https://tec.openplanner.team/stops/Bblamer1"], ["https://tec.openplanner.team/stops/H1fv101b", "https://tec.openplanner.team/stops/H1fv103b"], ["https://tec.openplanner.team/stops/N351atd", "https://tec.openplanner.team/stops/N390amb"], ["https://tec.openplanner.team/stops/Cfmtrie2", "https://tec.openplanner.team/stops/Cfoperz2"], ["https://tec.openplanner.team/stops/N127bja", "https://tec.openplanner.team/stops/N134aha"], ["https://tec.openplanner.team/stops/H4bn173b", "https://tec.openplanner.team/stops/H4pi136b"], ["https://tec.openplanner.team/stops/Cmyquen2", "https://tec.openplanner.team/stops/Cmysncb2"], ["https://tec.openplanner.team/stops/X626aia", "https://tec.openplanner.team/stops/X626aib"], ["https://tec.openplanner.team/stops/Lagrask1", "https://tec.openplanner.team/stops/Lagrask2"], ["https://tec.openplanner.team/stops/Bsambra1", "https://tec.openplanner.team/stops/Bsambra2"], ["https://tec.openplanner.team/stops/Lpecime1", "https://tec.openplanner.team/stops/Lpetenn2"], ["https://tec.openplanner.team/stops/Blnzcar2", "https://tec.openplanner.team/stops/N576acb"], ["https://tec.openplanner.team/stops/Bbstbxl2", "https://tec.openplanner.team/stops/Bbstpan2"], ["https://tec.openplanner.team/stops/Llgbene1", "https://tec.openplanner.team/stops/Llgtcha1"], ["https://tec.openplanner.team/stops/N110ada", "https://tec.openplanner.team/stops/N123adb"], ["https://tec.openplanner.team/stops/X605afa", "https://tec.openplanner.team/stops/X605agb"], ["https://tec.openplanner.team/stops/Cmmadma2", "https://tec.openplanner.team/stops/Cmmceri1"], ["https://tec.openplanner.team/stops/N540ala", "https://tec.openplanner.team/stops/N540alb"], ["https://tec.openplanner.team/stops/Bixlozo1", "https://tec.openplanner.team/stops/Bixlozo2"], ["https://tec.openplanner.team/stops/Cblcent1", "https://tec.openplanner.team/stops/Cblcent4"], ["https://tec.openplanner.team/stops/Ccyfede2", "https://tec.openplanner.team/stops/Crbegli1"], ["https://tec.openplanner.team/stops/LFRsp1-1", "https://tec.openplanner.team/stops/LWycarr1"], ["https://tec.openplanner.team/stops/LHUdeni1", "https://tec.openplanner.team/stops/LHUpsar1"], ["https://tec.openplanner.team/stops/LBNforg1", "https://tec.openplanner.team/stops/LBNvilv1"], ["https://tec.openplanner.team/stops/LwR140-2", "https://tec.openplanner.team/stops/LwRkirc2"], ["https://tec.openplanner.team/stops/Cgomerm1", "https://tec.openplanner.team/stops/Crachap2"], ["https://tec.openplanner.team/stops/LeYauss1", "https://tec.openplanner.team/stops/LeYfeld2"], ["https://tec.openplanner.team/stops/X661aia", "https://tec.openplanner.team/stops/X661aib"], ["https://tec.openplanner.team/stops/Clrmarl1", "https://tec.openplanner.team/stops/Clrmarl3"], ["https://tec.openplanner.team/stops/N574adb", "https://tec.openplanner.team/stops/N576adb"], ["https://tec.openplanner.team/stops/X804ana", "https://tec.openplanner.team/stops/X804bra"], ["https://tec.openplanner.team/stops/N141ada", "https://tec.openplanner.team/stops/N141aea"], ["https://tec.openplanner.team/stops/Cjugill3", "https://tec.openplanner.team/stops/CMpuis1"], ["https://tec.openplanner.team/stops/LENaout1", "https://tec.openplanner.team/stops/LGlwarf2"], ["https://tec.openplanner.team/stops/LlgPTAV1", "https://tec.openplanner.team/stops/LlgPTAV6"], ["https://tec.openplanner.team/stops/Cfrmoul1", "https://tec.openplanner.team/stops/Cfrmoul2"], ["https://tec.openplanner.team/stops/H5st163b", "https://tec.openplanner.team/stops/H5st166b"], ["https://tec.openplanner.team/stops/X937aab", "https://tec.openplanner.team/stops/X946agb"], ["https://tec.openplanner.team/stops/X641akb", "https://tec.openplanner.team/stops/X641axb"], ["https://tec.openplanner.team/stops/H1fr115a", "https://tec.openplanner.team/stops/H1fr117b"], ["https://tec.openplanner.team/stops/LHUgdpl1", "https://tec.openplanner.team/stops/NL80aha"], ["https://tec.openplanner.team/stops/Bhoemel2", "https://tec.openplanner.team/stops/Blhuibm1"], ["https://tec.openplanner.team/stops/Lemarde1", "https://tec.openplanner.team/stops/Lemfort1"], ["https://tec.openplanner.team/stops/LaAnorm1", "https://tec.openplanner.team/stops/LaAnorm2"], ["https://tec.openplanner.team/stops/H4ty341a", "https://tec.openplanner.team/stops/H4ty341b"], ["https://tec.openplanner.team/stops/N211awa", "https://tec.openplanner.team/stops/N212ada"], ["https://tec.openplanner.team/stops/Cmoecol1", "https://tec.openplanner.team/stops/Cmohame2"], ["https://tec.openplanner.team/stops/LSypesy2", "https://tec.openplanner.team/stops/LWZbeem2"], ["https://tec.openplanner.team/stops/H1br122a", "https://tec.openplanner.team/stops/H1br124a"], ["https://tec.openplanner.team/stops/H4oe150b", "https://tec.openplanner.team/stops/H4oe152b"], ["https://tec.openplanner.team/stops/H4ty268b", "https://tec.openplanner.team/stops/H4ty328b"], ["https://tec.openplanner.team/stops/LTrchar1", "https://tec.openplanner.team/stops/LTrrich2"], ["https://tec.openplanner.team/stops/LPbpl--1", "https://tec.openplanner.team/stops/LPbtene2"], ["https://tec.openplanner.team/stops/Bgnpegl1", "https://tec.openplanner.team/stops/Bgnpegl3"], ["https://tec.openplanner.team/stops/X892aea", "https://tec.openplanner.team/stops/X892agb"], ["https://tec.openplanner.team/stops/Bbeamon1", "https://tec.openplanner.team/stops/Bbeamon2"], ["https://tec.openplanner.team/stops/H1bo101b", "https://tec.openplanner.team/stops/H1bo102b"], ["https://tec.openplanner.team/stops/Bgnvcom2", "https://tec.openplanner.team/stops/Bgnvpco3"], ["https://tec.openplanner.team/stops/LmD181-1", "https://tec.openplanner.team/stops/LmD181-2"], ["https://tec.openplanner.team/stops/Cgrgend1", "https://tec.openplanner.team/stops/NC14amb"], ["https://tec.openplanner.team/stops/N505afa", "https://tec.openplanner.team/stops/N505afb"], ["https://tec.openplanner.team/stops/X947aea", "https://tec.openplanner.team/stops/X947afa"], ["https://tec.openplanner.team/stops/Cmlstgi2", "https://tec.openplanner.team/stops/Cmlvesp2"], ["https://tec.openplanner.team/stops/Cfmchau1", "https://tec.openplanner.team/stops/Cfmcoro1"], ["https://tec.openplanner.team/stops/X658acb", "https://tec.openplanner.team/stops/X658aeb"], ["https://tec.openplanner.team/stops/Bpthcgo1", "https://tec.openplanner.team/stops/Bwanwar2"], ["https://tec.openplanner.team/stops/N120aib", "https://tec.openplanner.team/stops/N120ajb"], ["https://tec.openplanner.team/stops/X986aga", "https://tec.openplanner.team/stops/X986agb"], ["https://tec.openplanner.team/stops/Lsnhoco1", "https://tec.openplanner.team/stops/Lsnhoco2"], ["https://tec.openplanner.team/stops/H2ca112b", "https://tec.openplanner.team/stops/H2ca115b"], ["https://tec.openplanner.team/stops/X822ajb", "https://tec.openplanner.team/stops/X822ara"], ["https://tec.openplanner.team/stops/LOUvign2", "https://tec.openplanner.team/stops/Lvitour2"], ["https://tec.openplanner.team/stops/LhSkape1", "https://tec.openplanner.team/stops/LwAlont1"], ["https://tec.openplanner.team/stops/LChxhav2", "https://tec.openplanner.team/stops/LJA65h-1"], ["https://tec.openplanner.team/stops/LHGtong1", "https://tec.openplanner.team/stops/LXhvina2"], ["https://tec.openplanner.team/stops/LGObeth1", "https://tec.openplanner.team/stops/LGOmonu1"], ["https://tec.openplanner.team/stops/N135aeb", "https://tec.openplanner.team/stops/N143aaa"], ["https://tec.openplanner.team/stops/LBIcarg1", "https://tec.openplanner.team/stops/LBIhann2"], ["https://tec.openplanner.team/stops/N562aga", "https://tec.openplanner.team/stops/N562agb"], ["https://tec.openplanner.team/stops/H2hp119d", "https://tec.openplanner.team/stops/H2jo163c"], ["https://tec.openplanner.team/stops/Cjuhden2", "https://tec.openplanner.team/stops/Cjuhden3"], ["https://tec.openplanner.team/stops/H1hg181a", "https://tec.openplanner.team/stops/H1nv324a"], ["https://tec.openplanner.team/stops/X796aia", "https://tec.openplanner.team/stops/X796aib"], ["https://tec.openplanner.team/stops/LGrfont2", "https://tec.openplanner.team/stops/LLGcarr1"], ["https://tec.openplanner.team/stops/Livcoll1", "https://tec.openplanner.team/stops/Livpost1"], ["https://tec.openplanner.team/stops/Craappa1", "https://tec.openplanner.team/stops/Craappa2"], ["https://tec.openplanner.team/stops/H4ty310b", "https://tec.openplanner.team/stops/H4ty324a"], ["https://tec.openplanner.team/stops/LSeec--2", "https://tec.openplanner.team/stops/LSetrix2"], ["https://tec.openplanner.team/stops/X786acb", "https://tec.openplanner.team/stops/X786aea"], ["https://tec.openplanner.team/stops/X897avb", "https://tec.openplanner.team/stops/X897awa"], ["https://tec.openplanner.team/stops/Crowall1", "https://tec.openplanner.team/stops/Crowall2"], ["https://tec.openplanner.team/stops/H4hx110a", "https://tec.openplanner.team/stops/H4hx117b"], ["https://tec.openplanner.team/stops/LHCandr1", "https://tec.openplanner.team/stops/LHChomb1"], ["https://tec.openplanner.team/stops/Bjodfco1", "https://tec.openplanner.team/stops/Bpiehvi1"], ["https://tec.openplanner.team/stops/LBVplan2", "https://tec.openplanner.team/stops/LRffroi1"], ["https://tec.openplanner.team/stops/X773aia", "https://tec.openplanner.team/stops/X773aoa"], ["https://tec.openplanner.team/stops/Cmlbevu2", "https://tec.openplanner.team/stops/Cmlgoff1"], ["https://tec.openplanner.team/stops/X801bka", "https://tec.openplanner.team/stops/X801cga"], ["https://tec.openplanner.team/stops/Ctrleju2", "https://tec.openplanner.team/stops/Ctrplac1"], ["https://tec.openplanner.team/stops/LHFappe4", "https://tec.openplanner.team/stops/LHFec--1"], ["https://tec.openplanner.team/stops/LRUhama2", "https://tec.openplanner.team/stops/LVleg--1"], ["https://tec.openplanner.team/stops/Ljeegli3", "https://tec.openplanner.team/stops/Ljelamb2"], ["https://tec.openplanner.team/stops/Lagcolo1", "https://tec.openplanner.team/stops/Lemsart1"], ["https://tec.openplanner.team/stops/Bjdscnd2", "https://tec.openplanner.team/stops/Bjodmal1"], ["https://tec.openplanner.team/stops/X922aga", "https://tec.openplanner.team/stops/X922aib"], ["https://tec.openplanner.team/stops/LBrmeiz1", "https://tec.openplanner.team/stops/LBrmeiz2"], ["https://tec.openplanner.team/stops/LAMec--1", "https://tec.openplanner.team/stops/LAMgare2"], ["https://tec.openplanner.team/stops/LHTbonn1", "https://tec.openplanner.team/stops/LHThall2"], ["https://tec.openplanner.team/stops/Cmgarsi1", "https://tec.openplanner.team/stops/Cmghay1"], ["https://tec.openplanner.team/stops/X673abb", "https://tec.openplanner.team/stops/X821aab"], ["https://tec.openplanner.team/stops/N513ata", "https://tec.openplanner.team/stops/N513axb"], ["https://tec.openplanner.team/stops/Bwatali1", "https://tec.openplanner.team/stops/Bwatcrf1"], ["https://tec.openplanner.team/stops/N349aab", "https://tec.openplanner.team/stops/N349aca"], ["https://tec.openplanner.team/stops/LaSneuh1", "https://tec.openplanner.team/stops/LhGlang2"], ["https://tec.openplanner.team/stops/H1ag106a", "https://tec.openplanner.team/stops/H1ag107a"], ["https://tec.openplanner.team/stops/Canpeup1", "https://tec.openplanner.team/stops/Canresi1"], ["https://tec.openplanner.team/stops/N534bya", "https://tec.openplanner.team/stops/N534byb"], ["https://tec.openplanner.team/stops/X714aea", "https://tec.openplanner.team/stops/X715aha"], ["https://tec.openplanner.team/stops/Cmecime1", "https://tec.openplanner.team/stops/Cmecime2"], ["https://tec.openplanner.team/stops/X769aia", "https://tec.openplanner.team/stops/X769alb"], ["https://tec.openplanner.team/stops/LMOlens3", "https://tec.openplanner.team/stops/LTychev2"], ["https://tec.openplanner.team/stops/N501fba", "https://tec.openplanner.team/stops/N501fbb"], ["https://tec.openplanner.team/stops/H4ch120c", "https://tec.openplanner.team/stops/H4ch120d"], ["https://tec.openplanner.team/stops/Bohnpla1", "https://tec.openplanner.team/stops/Bohnpla2"], ["https://tec.openplanner.team/stops/X608agb", "https://tec.openplanner.team/stops/X608ara"], ["https://tec.openplanner.team/stops/H2ca108b", "https://tec.openplanner.team/stops/H2mo127c"], ["https://tec.openplanner.team/stops/Bnstmig2", "https://tec.openplanner.team/stops/H3so187b"], ["https://tec.openplanner.team/stops/LROcham2", "https://tec.openplanner.team/stops/LROmons2"], ["https://tec.openplanner.team/stops/LCPcomb2", "https://tec.openplanner.team/stops/LCPcomp2"], ["https://tec.openplanner.team/stops/LXoharz4", "https://tec.openplanner.team/stops/X599agb"], ["https://tec.openplanner.team/stops/LHrlorc1", "https://tec.openplanner.team/stops/LHseg--3"], ["https://tec.openplanner.team/stops/H1mq200a", "https://tec.openplanner.team/stops/H5me106a"], ["https://tec.openplanner.team/stops/X829aab", "https://tec.openplanner.team/stops/X829aba"], ["https://tec.openplanner.team/stops/LSMcles1", "https://tec.openplanner.team/stops/LSMcles2"], ["https://tec.openplanner.team/stops/X982bkb", "https://tec.openplanner.team/stops/X982bla"], ["https://tec.openplanner.team/stops/NL76akb", "https://tec.openplanner.team/stops/NL76bca"], ["https://tec.openplanner.team/stops/Cctbois2", "https://tec.openplanner.team/stops/Cctgiss2"], ["https://tec.openplanner.team/stops/Cciethi2", "https://tec.openplanner.team/stops/Ccimont1"], ["https://tec.openplanner.team/stops/Crccamp2", "https://tec.openplanner.team/stops/Crclorc1"], ["https://tec.openplanner.team/stops/N248acb", "https://tec.openplanner.team/stops/N248ada"], ["https://tec.openplanner.team/stops/NL80aua", "https://tec.openplanner.team/stops/NL80aub"], ["https://tec.openplanner.team/stops/X718aka", "https://tec.openplanner.team/stops/X719afb"], ["https://tec.openplanner.team/stops/H3bi100a", "https://tec.openplanner.team/stops/H3bi101a"], ["https://tec.openplanner.team/stops/LRRchea3", "https://tec.openplanner.team/stops/LRRmanc2"], ["https://tec.openplanner.team/stops/Bnivjli1", "https://tec.openplanner.team/stops/Bnivjli2"], ["https://tec.openplanner.team/stops/H4hu120a", "https://tec.openplanner.team/stops/H4hu120b"], ["https://tec.openplanner.team/stops/Cgofbru1", "https://tec.openplanner.team/stops/Ctmmath2"], ["https://tec.openplanner.team/stops/H1fr107e", "https://tec.openplanner.team/stops/H1fr152a"], ["https://tec.openplanner.team/stops/Lgrchar1", "https://tec.openplanner.team/stops/Lgrcoll2"], ["https://tec.openplanner.team/stops/Llmcoop1", "https://tec.openplanner.team/stops/Llmeg--*"], ["https://tec.openplanner.team/stops/Broneco1", "https://tec.openplanner.team/stops/Bronrch1"], ["https://tec.openplanner.team/stops/N160aaa", "https://tec.openplanner.team/stops/N160aeb"], ["https://tec.openplanner.team/stops/Llgnaes1", "https://tec.openplanner.team/stops/Llgwesp1"], ["https://tec.openplanner.team/stops/LMAgdfa1", "https://tec.openplanner.team/stops/LMApl--2"], ["https://tec.openplanner.team/stops/N531aja", "https://tec.openplanner.team/stops/N534blg"], ["https://tec.openplanner.team/stops/Ljubrec2", "https://tec.openplanner.team/stops/Ljucano2"], ["https://tec.openplanner.team/stops/LBUmara1", "https://tec.openplanner.team/stops/LHhmohe2"], ["https://tec.openplanner.team/stops/Lsn184-2", "https://tec.openplanner.team/stops/Lsnagne2"], ["https://tec.openplanner.team/stops/X823abb", "https://tec.openplanner.team/stops/X823aga"], ["https://tec.openplanner.team/stops/X818aca", "https://tec.openplanner.team/stops/X818acb"], ["https://tec.openplanner.team/stops/H2bh114b", "https://tec.openplanner.team/stops/H2bh119b"], ["https://tec.openplanner.team/stops/LnEfrie1", "https://tec.openplanner.team/stops/LnEfrie2"], ["https://tec.openplanner.team/stops/X917aaa", "https://tec.openplanner.team/stops/X919aoa"], ["https://tec.openplanner.team/stops/Bvirhsa2", "https://tec.openplanner.team/stops/Bvirpla1"], ["https://tec.openplanner.team/stops/LON21--1", "https://tec.openplanner.team/stops/LONcroi1"], ["https://tec.openplanner.team/stops/Bjodcad2", "https://tec.openplanner.team/stops/NR10acb"], ["https://tec.openplanner.team/stops/X625aab", "https://tec.openplanner.team/stops/X625aba"], ["https://tec.openplanner.team/stops/X398aga", "https://tec.openplanner.team/stops/X398agb"], ["https://tec.openplanner.team/stops/H2ec104a", "https://tec.openplanner.team/stops/H2me116a"], ["https://tec.openplanner.team/stops/LOTsav-1", "https://tec.openplanner.team/stops/LTolijn*"], ["https://tec.openplanner.team/stops/Cbicamp1", "https://tec.openplanner.team/stops/Cbiseur2"], ["https://tec.openplanner.team/stops/X618ajb", "https://tec.openplanner.team/stops/X618aka"], ["https://tec.openplanner.team/stops/X902aea", "https://tec.openplanner.team/stops/X902aeb"], ["https://tec.openplanner.team/stops/X359afa", "https://tec.openplanner.team/stops/X359aha"], ["https://tec.openplanner.team/stops/N207aeb", "https://tec.openplanner.team/stops/N209aaa"], ["https://tec.openplanner.team/stops/N150agb", "https://tec.openplanner.team/stops/N150ajb"], ["https://tec.openplanner.team/stops/Canboni2", "https://tec.openplanner.team/stops/Canplch3"], ["https://tec.openplanner.team/stops/LmTgers1", "https://tec.openplanner.team/stops/LmTschi2"], ["https://tec.openplanner.team/stops/Loucent2", "https://tec.openplanner.team/stops/Lougoff1"], ["https://tec.openplanner.team/stops/Lvcbasi*", "https://tec.openplanner.team/stops/Lvcsapi1"], ["https://tec.openplanner.team/stops/Llxec--2", "https://tec.openplanner.team/stops/Lwakipe1"], ["https://tec.openplanner.team/stops/X685acb", "https://tec.openplanner.team/stops/X685aib"], ["https://tec.openplanner.team/stops/X796ahb", "https://tec.openplanner.team/stops/X986ama"], ["https://tec.openplanner.team/stops/Bplnbal1", "https://tec.openplanner.team/stops/Clpalli2"], ["https://tec.openplanner.team/stops/LSpfond2", "https://tec.openplanner.team/stops/LSpunio1"], ["https://tec.openplanner.team/stops/LLUdeig1", "https://tec.openplanner.team/stops/LLUhotc1"], ["https://tec.openplanner.team/stops/Bohnman1", "https://tec.openplanner.team/stops/Bohnmes2"], ["https://tec.openplanner.team/stops/LJveg--1", "https://tec.openplanner.team/stops/LLLvill1"], ["https://tec.openplanner.team/stops/Cmahotv1", "https://tec.openplanner.team/stops/Cmazsnc1"], ["https://tec.openplanner.team/stops/X660aeb", "https://tec.openplanner.team/stops/X660afb"], ["https://tec.openplanner.team/stops/LLR4bra2", "https://tec.openplanner.team/stops/LLRptma2"], ["https://tec.openplanner.team/stops/H2gy105a", "https://tec.openplanner.team/stops/H2gy107b"], ["https://tec.openplanner.team/stops/X790adb", "https://tec.openplanner.team/stops/X790afb"], ["https://tec.openplanner.team/stops/X896aeb", "https://tec.openplanner.team/stops/X995aca"], ["https://tec.openplanner.team/stops/Lfhtrca2", "https://tec.openplanner.team/stops/Lfhtrxc1"], ["https://tec.openplanner.team/stops/NH01aeb", "https://tec.openplanner.team/stops/NH01ala"], ["https://tec.openplanner.team/stops/X822aca", "https://tec.openplanner.team/stops/X822apb"], ["https://tec.openplanner.team/stops/X620aca", "https://tec.openplanner.team/stops/X620adb"], ["https://tec.openplanner.team/stops/LJelava1", "https://tec.openplanner.team/stops/LReeg--1"], ["https://tec.openplanner.team/stops/LMibouv4", "https://tec.openplanner.team/stops/LMipoti2"], ["https://tec.openplanner.team/stops/H1er106a", "https://tec.openplanner.team/stops/H1er106b"], ["https://tec.openplanner.team/stops/X991agb", "https://tec.openplanner.team/stops/X991agc"], ["https://tec.openplanner.team/stops/Cmggthi1", "https://tec.openplanner.team/stops/Cmgtour1"], ["https://tec.openplanner.team/stops/Bincbbo1", "https://tec.openplanner.team/stops/Bincbbo4"], ["https://tec.openplanner.team/stops/Bblager1", "https://tec.openplanner.team/stops/Bblaniv2"], ["https://tec.openplanner.team/stops/X650aoa", "https://tec.openplanner.team/stops/X650aob"], ["https://tec.openplanner.team/stops/N111aca", "https://tec.openplanner.team/stops/N111afa"], ["https://tec.openplanner.team/stops/X982bda", "https://tec.openplanner.team/stops/X982bjb"], ["https://tec.openplanner.team/stops/N536apa", "https://tec.openplanner.team/stops/N536apb"], ["https://tec.openplanner.team/stops/LFtn6--2", "https://tec.openplanner.team/stops/LRMn58-2"], ["https://tec.openplanner.team/stops/H1qu100c", "https://tec.openplanner.team/stops/H1qu100d"], ["https://tec.openplanner.team/stops/NL76afa", "https://tec.openplanner.team/stops/NL76arb"], ["https://tec.openplanner.team/stops/N501hjd", "https://tec.openplanner.team/stops/N501hlz"], ["https://tec.openplanner.team/stops/Bhevgro1", "https://tec.openplanner.team/stops/Bleunaa1"], ["https://tec.openplanner.team/stops/LSceg--2", "https://tec.openplanner.team/stops/LVTeg--2"], ["https://tec.openplanner.team/stops/LESathe2", "https://tec.openplanner.team/stops/LESmich1"], ["https://tec.openplanner.team/stops/LeYgros2", "https://tec.openplanner.team/stops/LeYmuhl2"], ["https://tec.openplanner.team/stops/Bniltri2", "https://tec.openplanner.team/stops/Bnilwal2"], ["https://tec.openplanner.team/stops/NC14ama", "https://tec.openplanner.team/stops/NC14anb"], ["https://tec.openplanner.team/stops/Btgrpla1", "https://tec.openplanner.team/stops/N584aha"], ["https://tec.openplanner.team/stops/LLM4rou4", "https://tec.openplanner.team/stops/LLMeg--2"], ["https://tec.openplanner.team/stops/H1wa157a", "https://tec.openplanner.team/stops/H1wg125a"], ["https://tec.openplanner.team/stops/LeYberl1", "https://tec.openplanner.team/stops/LlChebs1"], ["https://tec.openplanner.team/stops/N502acb", "https://tec.openplanner.team/stops/N502ada"], ["https://tec.openplanner.team/stops/Bbchdra1", "https://tec.openplanner.team/stops/Bwaucan1"], ["https://tec.openplanner.team/stops/Ljufore1", "https://tec.openplanner.team/stops/Ljufore2"], ["https://tec.openplanner.team/stops/Lcacasi2", "https://tec.openplanner.team/stops/LNipla3"], ["https://tec.openplanner.team/stops/LSeaque2", "https://tec.openplanner.team/stops/LSetrix2"], ["https://tec.openplanner.team/stops/Causncb2", "https://tec.openplanner.team/stops/N543awg"], ["https://tec.openplanner.team/stops/H2na132a", "https://tec.openplanner.team/stops/H2na133b"], ["https://tec.openplanner.team/stops/H1mr122b", "https://tec.openplanner.team/stops/H1mr123b"], ["https://tec.openplanner.team/stops/X721ahb", "https://tec.openplanner.team/stops/X721aib"], ["https://tec.openplanner.team/stops/H3bi102a", "https://tec.openplanner.team/stops/H3bi116b"], ["https://tec.openplanner.team/stops/N503adb", "https://tec.openplanner.team/stops/N503agb"], ["https://tec.openplanner.team/stops/H4eg101c", "https://tec.openplanner.team/stops/H4eg101d"], ["https://tec.openplanner.team/stops/X650afc", "https://tec.openplanner.team/stops/X650ahb"], ["https://tec.openplanner.team/stops/N521aoa", "https://tec.openplanner.team/stops/N521apb"], ["https://tec.openplanner.team/stops/N229asa", "https://tec.openplanner.team/stops/N540ama"], ["https://tec.openplanner.team/stops/Lsebegu1", "https://tec.openplanner.team/stops/Lsebelv1"], ["https://tec.openplanner.team/stops/X991adb", "https://tec.openplanner.team/stops/X993aab"], ["https://tec.openplanner.team/stops/Lhrlalo1", "https://tec.openplanner.team/stops/Lhrlamb2"], ["https://tec.openplanner.team/stops/N351aaa", "https://tec.openplanner.team/stops/N351ajb"], ["https://tec.openplanner.team/stops/Lsepaqu2", "https://tec.openplanner.team/stops/Lseserv4"], ["https://tec.openplanner.team/stops/LSeec--2", "https://tec.openplanner.team/stops/LSeec--3"], ["https://tec.openplanner.team/stops/X641asa", "https://tec.openplanner.team/stops/X641ata"], ["https://tec.openplanner.team/stops/N232bsb", "https://tec.openplanner.team/stops/N232btb"], ["https://tec.openplanner.team/stops/Lkiecol1", "https://tec.openplanner.team/stops/Llgtunn2"], ["https://tec.openplanner.team/stops/N244ana", "https://tec.openplanner.team/stops/N244aoa"], ["https://tec.openplanner.team/stops/X670aaa", "https://tec.openplanner.team/stops/X670aba"], ["https://tec.openplanner.team/stops/LHNhall3", "https://tec.openplanner.team/stops/LHNwaut1"], ["https://tec.openplanner.team/stops/X804afa", "https://tec.openplanner.team/stops/X804baa"], ["https://tec.openplanner.team/stops/N501hxb", "https://tec.openplanner.team/stops/N501hxz"], ["https://tec.openplanner.team/stops/N501ica", "https://tec.openplanner.team/stops/N501ipb"], ["https://tec.openplanner.team/stops/X626aha", "https://tec.openplanner.team/stops/X626aia"], ["https://tec.openplanner.team/stops/H4og213a", "https://tec.openplanner.team/stops/H4og213b"], ["https://tec.openplanner.team/stops/Cgy4bra1", "https://tec.openplanner.team/stops/Cgymetr1"], ["https://tec.openplanner.team/stops/X921acb", "https://tec.openplanner.team/stops/X923aoa"], ["https://tec.openplanner.team/stops/Bhlvvil1", "https://tec.openplanner.team/stops/Bhlvvil3"], ["https://tec.openplanner.team/stops/H1eu102a", "https://tec.openplanner.team/stops/H1pa106a"], ["https://tec.openplanner.team/stops/LOucarr1", "https://tec.openplanner.team/stops/LOucarr4"], ["https://tec.openplanner.team/stops/Llgverg2", "https://tec.openplanner.team/stops/Lrcvill1"], ["https://tec.openplanner.team/stops/H1bi100a", "https://tec.openplanner.team/stops/H1bu143a"], ["https://tec.openplanner.team/stops/LhSschn1", "https://tec.openplanner.team/stops/LhSwind1"], ["https://tec.openplanner.team/stops/H1bl101a", "https://tec.openplanner.team/stops/H1eq116a"], ["https://tec.openplanner.team/stops/LHUgole1", "https://tec.openplanner.team/stops/LHUsauv1"], ["https://tec.openplanner.team/stops/Lghencl2", "https://tec.openplanner.team/stops/Lghflot2"], ["https://tec.openplanner.team/stops/LJAhanq1", "https://tec.openplanner.team/stops/LJAhanq4"], ["https://tec.openplanner.team/stops/X948aic", "https://tec.openplanner.team/stops/X948asb"], ["https://tec.openplanner.team/stops/N110afb", "https://tec.openplanner.team/stops/N113afa"], ["https://tec.openplanner.team/stops/Cgochfe1", "https://tec.openplanner.team/stops/Cgocnor1"], ["https://tec.openplanner.team/stops/Cmybefe2", "https://tec.openplanner.team/stops/Cmyquen2"], ["https://tec.openplanner.team/stops/Candett2", "https://tec.openplanner.team/stops/H1lo120b"], ["https://tec.openplanner.team/stops/X672aca", "https://tec.openplanner.team/stops/X672aga"], ["https://tec.openplanner.team/stops/H4bo120a", "https://tec.openplanner.team/stops/H4bo178a"], ["https://tec.openplanner.team/stops/LCsbors2", "https://tec.openplanner.team/stops/LVBneuv2"], ["https://tec.openplanner.team/stops/H2pr118a", "https://tec.openplanner.team/stops/H3so174a"], ["https://tec.openplanner.team/stops/Llgmart1", "https://tec.openplanner.team/stops/Llgsevr4"], ["https://tec.openplanner.team/stops/Bsdapir2", "https://tec.openplanner.team/stops/Csdpira1"], ["https://tec.openplanner.team/stops/X604aaa", "https://tec.openplanner.team/stops/X605agb"], ["https://tec.openplanner.team/stops/N343aaa", "https://tec.openplanner.team/stops/X344acb"], ["https://tec.openplanner.team/stops/N158aab", "https://tec.openplanner.team/stops/N158abb"], ["https://tec.openplanner.team/stops/Cgpauln2", "https://tec.openplanner.team/stops/H2gy113a"], ["https://tec.openplanner.team/stops/NC24afa", "https://tec.openplanner.team/stops/NC24afb"], ["https://tec.openplanner.team/stops/Cmcegli1", "https://tec.openplanner.team/stops/Cmcegli3"], ["https://tec.openplanner.team/stops/Cfanvmo1", "https://tec.openplanner.team/stops/Cfawain4"], ["https://tec.openplanner.team/stops/Bhensei1", "https://tec.openplanner.team/stops/Bhensei2"], ["https://tec.openplanner.team/stops/X615aza", "https://tec.openplanner.team/stops/X616ajb"], ["https://tec.openplanner.team/stops/Bwavbpi1", "https://tec.openplanner.team/stops/Bwavcui2"], ["https://tec.openplanner.team/stops/H4te254b", "https://tec.openplanner.team/stops/H4te257a"], ["https://tec.openplanner.team/stops/Cjudefi2", "https://tec.openplanner.team/stops/Cjurevo2"], ["https://tec.openplanner.team/stops/LCPlebl*", "https://tec.openplanner.team/stops/LCPlebl1"], ["https://tec.openplanner.team/stops/H4wi166b", "https://tec.openplanner.team/stops/H4wi170a"], ["https://tec.openplanner.team/stops/Brixpje1", "https://tec.openplanner.team/stops/Brsrcha2"], ["https://tec.openplanner.team/stops/LCpegli2", "https://tec.openplanner.team/stops/LCpvill2"], ["https://tec.openplanner.team/stops/Lbhmc--1", "https://tec.openplanner.team/stops/Ljupiet1"], ["https://tec.openplanner.team/stops/LCschri2", "https://tec.openplanner.team/stops/LCsgend2"], ["https://tec.openplanner.team/stops/Cgrflac1", "https://tec.openplanner.team/stops/Cgrflac2"], ["https://tec.openplanner.team/stops/Cvrchap1", "https://tec.openplanner.team/stops/Cvrhab21"], ["https://tec.openplanner.team/stops/N229ajb", "https://tec.openplanner.team/stops/N229akb"], ["https://tec.openplanner.team/stops/X902aoa", "https://tec.openplanner.team/stops/X902aob"], ["https://tec.openplanner.team/stops/LREsech1", "https://tec.openplanner.team/stops/LREsech2"], ["https://tec.openplanner.team/stops/H1gi122b", "https://tec.openplanner.team/stops/H1gi154a"], ["https://tec.openplanner.team/stops/H2ma209a", "https://tec.openplanner.team/stops/H2ma209b"], ["https://tec.openplanner.team/stops/LRRecdu1", "https://tec.openplanner.team/stops/LRReg--2"], ["https://tec.openplanner.team/stops/LHtdros1", "https://tec.openplanner.team/stops/LJAbell1"], ["https://tec.openplanner.team/stops/Bgliopp2", "https://tec.openplanner.team/stops/Bincbbo3"], ["https://tec.openplanner.team/stops/LBIfore1", "https://tec.openplanner.team/stops/Lghfore2"], ["https://tec.openplanner.team/stops/H1bl102a", "https://tec.openplanner.team/stops/H1bl105b"], ["https://tec.openplanner.team/stops/Btancnd1", "https://tec.openplanner.team/stops/Bvlvbth2"], ["https://tec.openplanner.team/stops/Cchriga2", "https://tec.openplanner.team/stops/Cchsud01"], ["https://tec.openplanner.team/stops/N110aab", "https://tec.openplanner.team/stops/N110acb"], ["https://tec.openplanner.team/stops/H1qu100b", "https://tec.openplanner.team/stops/H1qu129b"], ["https://tec.openplanner.team/stops/Bnivga51", "https://tec.openplanner.team/stops/Bnivga61"], ["https://tec.openplanner.team/stops/N117baa", "https://tec.openplanner.team/stops/N147ada"], ["https://tec.openplanner.team/stops/Bove4ko2", "https://tec.openplanner.team/stops/Bovetwe1"], ["https://tec.openplanner.team/stops/H1do115b", "https://tec.openplanner.team/stops/H1do121a"], ["https://tec.openplanner.team/stops/X634aaa", "https://tec.openplanner.team/stops/X654aab"], ["https://tec.openplanner.team/stops/X601ajb", "https://tec.openplanner.team/stops/X601aka"], ["https://tec.openplanner.team/stops/X604ajb", "https://tec.openplanner.team/stops/X604aka"], ["https://tec.openplanner.team/stops/Blhulil2", "https://tec.openplanner.team/stops/Blhuone2"], ["https://tec.openplanner.team/stops/Llgauxc1", "https://tec.openplanner.team/stops/Llgbaya2"], ["https://tec.openplanner.team/stops/N534bub", "https://tec.openplanner.team/stops/N534bva"], ["https://tec.openplanner.team/stops/Bezebru2", "https://tec.openplanner.team/stops/Blanath2"], ["https://tec.openplanner.team/stops/LRRcarr1", "https://tec.openplanner.team/stops/LRRchen1"], ["https://tec.openplanner.team/stops/Cgnpass1", "https://tec.openplanner.team/stops/Clproi1"], ["https://tec.openplanner.team/stops/H1ro133a", "https://tec.openplanner.team/stops/H4ma162a"], ["https://tec.openplanner.team/stops/Canecbr2", "https://tec.openplanner.team/stops/Canmonu5"], ["https://tec.openplanner.team/stops/LGlwarf1", "https://tec.openplanner.team/stops/LSBsere2"], ["https://tec.openplanner.team/stops/X601bya", "https://tec.openplanner.team/stops/X601coa"], ["https://tec.openplanner.team/stops/X663ada", "https://tec.openplanner.team/stops/X663ama"], ["https://tec.openplanner.team/stops/X736aab", "https://tec.openplanner.team/stops/X937aha"], ["https://tec.openplanner.team/stops/X743agb", "https://tec.openplanner.team/stops/X756agb"], ["https://tec.openplanner.team/stops/Bohnrph1", "https://tec.openplanner.team/stops/Bohnrph2"], ["https://tec.openplanner.team/stops/Cgdberl2", "https://tec.openplanner.team/stops/Cgdrhau1"], ["https://tec.openplanner.team/stops/LAWchpl2", "https://tec.openplanner.team/stops/LAWdefu3"], ["https://tec.openplanner.team/stops/H1je218b", "https://tec.openplanner.team/stops/H1ms929a"], ["https://tec.openplanner.team/stops/LLirout2", "https://tec.openplanner.team/stops/LPUlecl2"], ["https://tec.openplanner.team/stops/LWaanto2", "https://tec.openplanner.team/stops/LWagare*"], ["https://tec.openplanner.team/stops/Cjudaxi2", "https://tec.openplanner.team/stops/Cjufrat2"], ["https://tec.openplanner.team/stops/LODarbr1", "https://tec.openplanner.team/stops/X547aaa"], ["https://tec.openplanner.team/stops/Buccbas1", "https://tec.openplanner.team/stops/Buccdho2"], ["https://tec.openplanner.team/stops/H1bu138b", "https://tec.openplanner.team/stops/H1bu139a"], ["https://tec.openplanner.team/stops/H1mj123a", "https://tec.openplanner.team/stops/H1mj129a"], ["https://tec.openplanner.team/stops/X744aca", "https://tec.openplanner.team/stops/X746aha"], ["https://tec.openplanner.team/stops/N229asb", "https://tec.openplanner.team/stops/N230abb"], ["https://tec.openplanner.team/stops/Bspkbeu1", "https://tec.openplanner.team/stops/H1bd102a"], ["https://tec.openplanner.team/stops/Brsgera2", "https://tec.openplanner.team/stops/Buccpes2"], ["https://tec.openplanner.team/stops/Cmlceri1", "https://tec.openplanner.team/stops/Cmlfeba2"], ["https://tec.openplanner.team/stops/LHUgare*", "https://tec.openplanner.team/stops/LHUlieg2"], ["https://tec.openplanner.team/stops/H4bh103a", "https://tec.openplanner.team/stops/H4bh103b"], ["https://tec.openplanner.team/stops/Lflmaxi1", "https://tec.openplanner.team/stops/Lrecroi2"], ["https://tec.openplanner.team/stops/H1vh136c", "https://tec.openplanner.team/stops/H1vh137a"], ["https://tec.openplanner.team/stops/N551aeb", "https://tec.openplanner.team/stops/N551aiy"], ["https://tec.openplanner.team/stops/H5bl115a", "https://tec.openplanner.team/stops/H5bl124b"], ["https://tec.openplanner.team/stops/X346akb", "https://tec.openplanner.team/stops/X369acb"], ["https://tec.openplanner.team/stops/Cmychau1", "https://tec.openplanner.team/stops/Cmypast2"], ["https://tec.openplanner.team/stops/Baudsju2", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/Llgavoc2", "https://tec.openplanner.team/stops/Llgnico5"], ["https://tec.openplanner.team/stops/X919ajc", "https://tec.openplanner.team/stops/X919ala"], ["https://tec.openplanner.team/stops/H4ga153a", "https://tec.openplanner.team/stops/H4ga170b"], ["https://tec.openplanner.team/stops/Lgrbill1", "https://tec.openplanner.team/stops/Lgrclas1"], ["https://tec.openplanner.team/stops/Lsehya-1", "https://tec.openplanner.team/stops/Lsepapi1"], ["https://tec.openplanner.team/stops/LMHcant1", "https://tec.openplanner.team/stops/LMHec--1"], ["https://tec.openplanner.team/stops/Bwaanwi1", "https://tec.openplanner.team/stops/Bwaanwi2"], ["https://tec.openplanner.team/stops/Cctsold1", "https://tec.openplanner.team/stops/Cctsold2"], ["https://tec.openplanner.team/stops/Llgcoro1", "https://tec.openplanner.team/stops/Llgcoro2"], ["https://tec.openplanner.team/stops/X903afb", "https://tec.openplanner.team/stops/X904abb"], ["https://tec.openplanner.team/stops/Bcrnsge1", "https://tec.openplanner.team/stops/Bsgeegl4"], ["https://tec.openplanner.team/stops/X831abb", "https://tec.openplanner.team/stops/X833aca"], ["https://tec.openplanner.team/stops/X725aba", "https://tec.openplanner.team/stops/X725acb"], ["https://tec.openplanner.team/stops/Lhufays1", "https://tec.openplanner.team/stops/LSPcomm1"], ["https://tec.openplanner.team/stops/Ladloup2", "https://tec.openplanner.team/stops/Lvelimi2"], ["https://tec.openplanner.team/stops/LETsaiv1", "https://tec.openplanner.team/stops/LETsaiv2"], ["https://tec.openplanner.team/stops/H4bx108b", "https://tec.openplanner.team/stops/H4ht173b"], ["https://tec.openplanner.team/stops/Csefour1", "https://tec.openplanner.team/stops/Cvtndam3"], ["https://tec.openplanner.team/stops/Bmalwop1", "https://tec.openplanner.team/stops/Boppcen4"], ["https://tec.openplanner.team/stops/Bwatgla1", "https://tec.openplanner.team/stops/Bwatprp2"], ["https://tec.openplanner.team/stops/X724aia", "https://tec.openplanner.team/stops/X768aaa"], ["https://tec.openplanner.team/stops/N522aeb", "https://tec.openplanner.team/stops/N522apb"], ["https://tec.openplanner.team/stops/LENindu1", "https://tec.openplanner.team/stops/LENindu2"], ["https://tec.openplanner.team/stops/X606aba", "https://tec.openplanner.team/stops/X648aaa"], ["https://tec.openplanner.team/stops/N549agb", "https://tec.openplanner.team/stops/N549ahb"], ["https://tec.openplanner.team/stops/Cgualno1", "https://tec.openplanner.team/stops/Cnalava3"], ["https://tec.openplanner.team/stops/H4bl104b", "https://tec.openplanner.team/stops/H4bl106b"], ["https://tec.openplanner.team/stops/Ctuyser1", "https://tec.openplanner.team/stops/NC28aha"], ["https://tec.openplanner.team/stops/Bmrsayw1", "https://tec.openplanner.team/stops/Bmrscsp1"], ["https://tec.openplanner.team/stops/Lrcarse2", "https://tec.openplanner.team/stops/Lrcprin6"], ["https://tec.openplanner.team/stops/X641aoa", "https://tec.openplanner.team/stops/X641aob"], ["https://tec.openplanner.team/stops/H1fa121a", "https://tec.openplanner.team/stops/H1fa121b"], ["https://tec.openplanner.team/stops/NL37aca", "https://tec.openplanner.team/stops/NL37acb"], ["https://tec.openplanner.team/stops/H4he104b", "https://tec.openplanner.team/stops/H4wg121a"], ["https://tec.openplanner.team/stops/H1gi120d", "https://tec.openplanner.team/stops/H1gi154b"], ["https://tec.openplanner.team/stops/Ladlaur1", "https://tec.openplanner.team/stops/Ladlaur2"], ["https://tec.openplanner.team/stops/LMAgare0", "https://tec.openplanner.team/stops/LMAptne2"], ["https://tec.openplanner.team/stops/Lcacasi2", "https://tec.openplanner.team/stops/Lcapisc2"], ["https://tec.openplanner.team/stops/H1qu107b", "https://tec.openplanner.team/stops/H1wl121b"], ["https://tec.openplanner.team/stops/Lbbviad4", "https://tec.openplanner.team/stops/Lgrwill2"], ["https://tec.openplanner.team/stops/X805adb", "https://tec.openplanner.team/stops/X805aeb"], ["https://tec.openplanner.team/stops/LBkcare*", "https://tec.openplanner.team/stops/LBkcarr3"], ["https://tec.openplanner.team/stops/H1hy127a", "https://tec.openplanner.team/stops/H1hy127b"], ["https://tec.openplanner.team/stops/X641atb", "https://tec.openplanner.team/stops/X641aua"], ["https://tec.openplanner.team/stops/N232ana", "https://tec.openplanner.team/stops/N286aab"], ["https://tec.openplanner.team/stops/Cbfchla1", "https://tec.openplanner.team/stops/NC24aja"], ["https://tec.openplanner.team/stops/N214aja", "https://tec.openplanner.team/stops/N214ajb"], ["https://tec.openplanner.team/stops/Btubren1", "https://tec.openplanner.team/stops/Btubren2"], ["https://tec.openplanner.team/stops/LSx309-1", "https://tec.openplanner.team/stops/LSxeg--1"], ["https://tec.openplanner.team/stops/N539aoa", "https://tec.openplanner.team/stops/N539ava"], ["https://tec.openplanner.team/stops/X802abb", "https://tec.openplanner.team/stops/X818ajb"], ["https://tec.openplanner.team/stops/Btlbche1", "https://tec.openplanner.team/stops/Btlbegl2"], ["https://tec.openplanner.team/stops/X637aja", "https://tec.openplanner.team/stops/X637aob"], ["https://tec.openplanner.team/stops/X994aga", "https://tec.openplanner.team/stops/X995afa"], ["https://tec.openplanner.team/stops/Lagcolo1", "https://tec.openplanner.team/stops/Lagpn6-1"], ["https://tec.openplanner.team/stops/X897aga", "https://tec.openplanner.team/stops/X897ara"], ["https://tec.openplanner.team/stops/H1ne142b", "https://tec.openplanner.team/stops/H1ne147a"], ["https://tec.openplanner.team/stops/Bjodcsb1", "https://tec.openplanner.team/stops/Bsrgegl1"], ["https://tec.openplanner.team/stops/LmDgeme1", "https://tec.openplanner.team/stops/LmYeich2"], ["https://tec.openplanner.team/stops/Loujouh1", "https://tec.openplanner.team/stops/Loujouh2"], ["https://tec.openplanner.team/stops/H1bo100b", "https://tec.openplanner.team/stops/H1bo112b"], ["https://tec.openplanner.team/stops/X718aca", "https://tec.openplanner.team/stops/X719ada"], ["https://tec.openplanner.team/stops/LSznoel2", "https://tec.openplanner.team/stops/N506bva"], ["https://tec.openplanner.team/stops/H1qu108a", "https://tec.openplanner.team/stops/H1qu114b"], ["https://tec.openplanner.team/stops/N501ama", "https://tec.openplanner.team/stops/N501bba"], ["https://tec.openplanner.team/stops/X786ada", "https://tec.openplanner.team/stops/X786aja"], ["https://tec.openplanner.team/stops/H4er124b", "https://tec.openplanner.team/stops/H4ty339b"], ["https://tec.openplanner.team/stops/Lhrathe*", "https://tec.openplanner.team/stops/Lhrathe1"], ["https://tec.openplanner.team/stops/N254aab", "https://tec.openplanner.team/stops/N570aca"], ["https://tec.openplanner.team/stops/X829aba", "https://tec.openplanner.team/stops/X829aca"], ["https://tec.openplanner.team/stops/LAo161-2", "https://tec.openplanner.team/stops/LWn24--1"], ["https://tec.openplanner.team/stops/LON02--1", "https://tec.openplanner.team/stops/LON21--1"], ["https://tec.openplanner.team/stops/H1hc125a", "https://tec.openplanner.team/stops/H1hc152b"], ["https://tec.openplanner.team/stops/H1fl136a", "https://tec.openplanner.team/stops/H1fl140b"], ["https://tec.openplanner.team/stops/Lanc14v1", "https://tec.openplanner.team/stops/Lrcvill1"], ["https://tec.openplanner.team/stops/X901aka", "https://tec.openplanner.team/stops/X901apb"], ["https://tec.openplanner.team/stops/H4cw104b", "https://tec.openplanner.team/stops/H4cw107b"], ["https://tec.openplanner.team/stops/LSSfrai2", "https://tec.openplanner.team/stops/LSSjeun1"], ["https://tec.openplanner.team/stops/Cciferr2", "https://tec.openplanner.team/stops/Ccircar2"], ["https://tec.openplanner.team/stops/LFOchab1", "https://tec.openplanner.team/stops/LFOcomb3"], ["https://tec.openplanner.team/stops/X739ada", "https://tec.openplanner.team/stops/X739adb"], ["https://tec.openplanner.team/stops/H1gq153a", "https://tec.openplanner.team/stops/H1sy137c"], ["https://tec.openplanner.team/stops/LLC170-1", "https://tec.openplanner.team/stops/LLCeg--1"], ["https://tec.openplanner.team/stops/X733aha", "https://tec.openplanner.team/stops/X734ara"], ["https://tec.openplanner.team/stops/X812ana", "https://tec.openplanner.team/stops/X812anb"], ["https://tec.openplanner.team/stops/NC02abb", "https://tec.openplanner.team/stops/NC14ahb"], ["https://tec.openplanner.team/stops/LNCmc--1", "https://tec.openplanner.team/stops/LNCmc--2"], ["https://tec.openplanner.team/stops/N501hna", "https://tec.openplanner.team/stops/N521amb"], ["https://tec.openplanner.team/stops/N134afa", "https://tec.openplanner.team/stops/N154aba"], ["https://tec.openplanner.team/stops/H4ty351b", "https://tec.openplanner.team/stops/H4ty416a"], ["https://tec.openplanner.team/stops/H4wn125b", "https://tec.openplanner.team/stops/H4wn127a"], ["https://tec.openplanner.team/stops/H4ty309a", "https://tec.openplanner.team/stops/H4ty332b"], ["https://tec.openplanner.team/stops/H1ht128a", "https://tec.openplanner.team/stops/H1vt193b"], ["https://tec.openplanner.team/stops/H1ma231b", "https://tec.openplanner.team/stops/H1mj124a"], ["https://tec.openplanner.team/stops/N135aba", "https://tec.openplanner.team/stops/N135adc"], ["https://tec.openplanner.team/stops/N165aab", "https://tec.openplanner.team/stops/N165aca"], ["https://tec.openplanner.team/stops/X911aea", "https://tec.openplanner.team/stops/X911afb"], ["https://tec.openplanner.team/stops/X937ala", "https://tec.openplanner.team/stops/X945aea"], ["https://tec.openplanner.team/stops/H4do102a", "https://tec.openplanner.team/stops/H4do107b"], ["https://tec.openplanner.team/stops/N149ala", "https://tec.openplanner.team/stops/N149alb"], ["https://tec.openplanner.team/stops/N506bmb", "https://tec.openplanner.team/stops/N506bqb"], ["https://tec.openplanner.team/stops/Cjurevo1", "https://tec.openplanner.team/stops/Clocroi2"], ["https://tec.openplanner.team/stops/N528agb", "https://tec.openplanner.team/stops/N528ara"], ["https://tec.openplanner.team/stops/LAYcont2", "https://tec.openplanner.team/stops/LAYecol2"], ["https://tec.openplanner.team/stops/X614ada", "https://tec.openplanner.team/stops/X614azb"], ["https://tec.openplanner.team/stops/X996agb", "https://tec.openplanner.team/stops/X996ahb"], ["https://tec.openplanner.team/stops/LFAwale1", "https://tec.openplanner.team/stops/LVBbvin"], ["https://tec.openplanner.team/stops/H1ch105b", "https://tec.openplanner.team/stops/H1ch106b"], ["https://tec.openplanner.team/stops/LNEbo471", "https://tec.openplanner.team/stops/LOLcroi1"], ["https://tec.openplanner.team/stops/Bjodath3", "https://tec.openplanner.team/stops/Bjodcar1"], ["https://tec.openplanner.team/stops/LDoeg--2", "https://tec.openplanner.team/stops/LDomoul2"], ["https://tec.openplanner.team/stops/Cfmcent2", "https://tec.openplanner.team/stops/Cfmsncb2"], ["https://tec.openplanner.team/stops/Bcsgcou1", "https://tec.openplanner.team/stops/Blasbgc2"], ["https://tec.openplanner.team/stops/H1gr118a", "https://tec.openplanner.team/stops/H1to153d"], ["https://tec.openplanner.team/stops/H4do105a", "https://tec.openplanner.team/stops/H4mo192a"], ["https://tec.openplanner.team/stops/Llgcong1", "https://tec.openplanner.team/stops/Llgterr1"], ["https://tec.openplanner.team/stops/Ladchat1", "https://tec.openplanner.team/stops/Ladhomb2"], ["https://tec.openplanner.team/stops/Cli4bra2", "https://tec.openplanner.team/stops/Crebien2"], ["https://tec.openplanner.team/stops/H4fr142a", "https://tec.openplanner.team/stops/H4fr142b"], ["https://tec.openplanner.team/stops/H1ba114c", "https://tec.openplanner.team/stops/H1ba118b"], ["https://tec.openplanner.team/stops/X742aga", "https://tec.openplanner.team/stops/X744aaa"], ["https://tec.openplanner.team/stops/LSkchwa2", "https://tec.openplanner.team/stops/LSkoran2"], ["https://tec.openplanner.team/stops/Bbcocvb2", "https://tec.openplanner.team/stops/Bhptegl1"], ["https://tec.openplanner.team/stops/Lvtcalv1", "https://tec.openplanner.team/stops/Lvtchpl4"], ["https://tec.openplanner.team/stops/Bbsggot1", "https://tec.openplanner.team/stops/Bhmmlad2"], ["https://tec.openplanner.team/stops/Bmrqgar1", "https://tec.openplanner.team/stops/Bspkdon1"], ["https://tec.openplanner.team/stops/X607aaa", "https://tec.openplanner.team/stops/X607abb"], ["https://tec.openplanner.team/stops/H1ms910a", "https://tec.openplanner.team/stops/H1ms911a"], ["https://tec.openplanner.team/stops/N562blb", "https://tec.openplanner.team/stops/N562bra"], ["https://tec.openplanner.team/stops/LWastei1", "https://tec.openplanner.team/stops/LWastei2"], ["https://tec.openplanner.team/stops/LOTmonu2", "https://tec.openplanner.team/stops/LOTtong1"], ["https://tec.openplanner.team/stops/H1fv103a", "https://tec.openplanner.team/stops/H1fv103b"], ["https://tec.openplanner.team/stops/NL74aia", "https://tec.openplanner.team/stops/NL74aib"], ["https://tec.openplanner.team/stops/N131afa", "https://tec.openplanner.team/stops/N131afb"], ["https://tec.openplanner.team/stops/Broncli1", "https://tec.openplanner.team/stops/Bvirmbr2"], ["https://tec.openplanner.team/stops/Bdvmc431", "https://tec.openplanner.team/stops/Bdvmc432"], ["https://tec.openplanner.team/stops/LHFcaqu2", "https://tec.openplanner.team/stops/LHFec--4"], ["https://tec.openplanner.team/stops/Bgzddge1", "https://tec.openplanner.team/stops/Bgzddmo2"], ["https://tec.openplanner.team/stops/Bbalvil1", "https://tec.openplanner.team/stops/Btgrpla1"], ["https://tec.openplanner.team/stops/H1hc125b", "https://tec.openplanner.team/stops/H1hc126a"], ["https://tec.openplanner.team/stops/X999asa", "https://tec.openplanner.team/stops/X999asb"], ["https://tec.openplanner.team/stops/H1fl133a", "https://tec.openplanner.team/stops/H1fl135b"], ["https://tec.openplanner.team/stops/Cdamarc2", "https://tec.openplanner.team/stops/Cdametr1"], ["https://tec.openplanner.team/stops/H1ca100a", "https://tec.openplanner.team/stops/H1th183b"], ["https://tec.openplanner.team/stops/Cmyboci1", "https://tec.openplanner.team/stops/Cmyvesa3"], ["https://tec.openplanner.team/stops/LOReg--2", "https://tec.openplanner.team/stops/LORvill1"], ["https://tec.openplanner.team/stops/X770aaa", "https://tec.openplanner.team/stops/X771ala"], ["https://tec.openplanner.team/stops/N204ada", "https://tec.openplanner.team/stops/N204agb"], ["https://tec.openplanner.team/stops/LbUbutg1", "https://tec.openplanner.team/stops/LbUgend1"], ["https://tec.openplanner.team/stops/LDmhave1", "https://tec.openplanner.team/stops/LSGcarr1"], ["https://tec.openplanner.team/stops/LLMfond1", "https://tec.openplanner.team/stops/LLMfond2"], ["https://tec.openplanner.team/stops/H3br122a", "https://tec.openplanner.team/stops/H3br122b"], ["https://tec.openplanner.team/stops/N501ioa", "https://tec.openplanner.team/stops/N501iob"], ["https://tec.openplanner.team/stops/H1sb146a", "https://tec.openplanner.team/stops/H1sb150a"], ["https://tec.openplanner.team/stops/X757aca", "https://tec.openplanner.team/stops/X757acb"], ["https://tec.openplanner.team/stops/Cfrtry1", "https://tec.openplanner.team/stops/Cfrtry2"], ["https://tec.openplanner.team/stops/Cgyhaie1", "https://tec.openplanner.team/stops/Cgylouv1"], ["https://tec.openplanner.team/stops/N545aaa", "https://tec.openplanner.team/stops/N545aab"], ["https://tec.openplanner.team/stops/X620acb", "https://tec.openplanner.team/stops/X620ada"], ["https://tec.openplanner.team/stops/N501gva", "https://tec.openplanner.team/stops/N501lba"], ["https://tec.openplanner.team/stops/Blhueca1", "https://tec.openplanner.team/stops/Blhupa11"], ["https://tec.openplanner.team/stops/X836aea", "https://tec.openplanner.team/stops/X836aeb"], ["https://tec.openplanner.team/stops/Bsoigar1", "https://tec.openplanner.team/stops/Bsoigar2"], ["https://tec.openplanner.team/stops/Ctm4che2", "https://tec.openplanner.team/stops/Ctmazeb2"], ["https://tec.openplanner.team/stops/H4fo115a", "https://tec.openplanner.team/stops/H4fo115b"], ["https://tec.openplanner.team/stops/LAuchau2", "https://tec.openplanner.team/stops/LAugara1"], ["https://tec.openplanner.team/stops/H4fa125b", "https://tec.openplanner.team/stops/H4hq129b"], ["https://tec.openplanner.team/stops/LFsconc1", "https://tec.openplanner.team/stops/LFsguil2"], ["https://tec.openplanner.team/stops/Bvilcoq1", "https://tec.openplanner.team/stops/Bvilpar1"], ["https://tec.openplanner.team/stops/LeUkehr4", "https://tec.openplanner.team/stops/LeUstad2"], ["https://tec.openplanner.team/stops/N501ahb", "https://tec.openplanner.team/stops/N501mda"], ["https://tec.openplanner.team/stops/X617agb", "https://tec.openplanner.team/stops/X696ala"], ["https://tec.openplanner.team/stops/N501cmc", "https://tec.openplanner.team/stops/N501cua"], ["https://tec.openplanner.team/stops/Cjxvalh1", "https://tec.openplanner.team/stops/Cmyboci1"], ["https://tec.openplanner.team/stops/H4ty301b", "https://tec.openplanner.team/stops/H4ty340a"], ["https://tec.openplanner.team/stops/LbUjost3", "https://tec.openplanner.team/stops/LhUrich1"], ["https://tec.openplanner.team/stops/N202aab", "https://tec.openplanner.team/stops/N204alb"], ["https://tec.openplanner.team/stops/Livjeu-1", "https://tec.openplanner.team/stops/Lseivoz1"], ["https://tec.openplanner.team/stops/LhEbruc1", "https://tec.openplanner.team/stops/LhEbruc2"], ["https://tec.openplanner.team/stops/LkEneus1", "https://tec.openplanner.team/stops/LkEneus2"], ["https://tec.openplanner.team/stops/X805acb", "https://tec.openplanner.team/stops/X805ajb"], ["https://tec.openplanner.team/stops/Lgrbell1", "https://tec.openplanner.team/stops/Lgrspir1"], ["https://tec.openplanner.team/stops/N155aia", "https://tec.openplanner.team/stops/N155aib"], ["https://tec.openplanner.team/stops/LeLkalt2", "https://tec.openplanner.team/stops/LeLsied2"], ["https://tec.openplanner.team/stops/LBNforg2", "https://tec.openplanner.team/stops/LBNhegg2"], ["https://tec.openplanner.team/stops/LmTkirc2", "https://tec.openplanner.team/stops/LmTreic2"], ["https://tec.openplanner.team/stops/N348adb", "https://tec.openplanner.team/stops/N352ajb"], ["https://tec.openplanner.team/stops/LAWchpl1", "https://tec.openplanner.team/stops/LAWcite6"], ["https://tec.openplanner.team/stops/LOUbarr2", "https://tec.openplanner.team/stops/LOUpres2"], ["https://tec.openplanner.team/stops/N554aeb", "https://tec.openplanner.team/stops/N566afa"], ["https://tec.openplanner.team/stops/LVnflox2", "https://tec.openplanner.team/stops/LVnvieg2"], ["https://tec.openplanner.team/stops/LBpecco1", "https://tec.openplanner.team/stops/LGEhosp1"], ["https://tec.openplanner.team/stops/LYegeor3", "https://tec.openplanner.team/stops/LYegeor4"], ["https://tec.openplanner.team/stops/X639aob", "https://tec.openplanner.team/stops/X639ata"], ["https://tec.openplanner.team/stops/X806aga", "https://tec.openplanner.team/stops/X806ahb"], ["https://tec.openplanner.team/stops/N531adb", "https://tec.openplanner.team/stops/N534bra"], ["https://tec.openplanner.team/stops/Cmecime1", "https://tec.openplanner.team/stops/Cvpcour1"], ["https://tec.openplanner.team/stops/X643aba", "https://tec.openplanner.team/stops/X643abb"], ["https://tec.openplanner.team/stops/LLAcalv1", "https://tec.openplanner.team/stops/LLApavi1"], ["https://tec.openplanner.team/stops/Lfhsoux1", "https://tec.openplanner.team/stops/Lpocent2"], ["https://tec.openplanner.team/stops/N118ada", "https://tec.openplanner.team/stops/N118aea"], ["https://tec.openplanner.team/stops/H1mr123a", "https://tec.openplanner.team/stops/H1mr125a"], ["https://tec.openplanner.team/stops/H3so184b", "https://tec.openplanner.team/stops/H3so185b"], ["https://tec.openplanner.team/stops/H4ea131a", "https://tec.openplanner.team/stops/H4wr175b"], ["https://tec.openplanner.team/stops/LBSgeer2", "https://tec.openplanner.team/stops/LBStong2"], ["https://tec.openplanner.team/stops/H1fr113a", "https://tec.openplanner.team/stops/H1lb138b"], ["https://tec.openplanner.team/stops/H4ga153b", "https://tec.openplanner.team/stops/H4ga170b"], ["https://tec.openplanner.team/stops/X813abb", "https://tec.openplanner.team/stops/X813aca"], ["https://tec.openplanner.team/stops/LNCvill1", "https://tec.openplanner.team/stops/LNCvill2"], ["https://tec.openplanner.team/stops/Lsecris1", "https://tec.openplanner.team/stops/Lsecris4"], ["https://tec.openplanner.team/stops/H1mb125a", "https://tec.openplanner.team/stops/H1mb128a"], ["https://tec.openplanner.team/stops/X982bsa", "https://tec.openplanner.team/stops/X982byb"], ["https://tec.openplanner.team/stops/N343ana", "https://tec.openplanner.team/stops/X343aha"], ["https://tec.openplanner.team/stops/LeUgend1", "https://tec.openplanner.team/stops/LeUgend2"], ["https://tec.openplanner.team/stops/LWaatel2", "https://tec.openplanner.team/stops/LWLhagi1"], ["https://tec.openplanner.team/stops/X769ala", "https://tec.openplanner.team/stops/X769alb"], ["https://tec.openplanner.team/stops/Llgstvi1", "https://tec.openplanner.team/stops/Llgstvi3"], ["https://tec.openplanner.team/stops/N101aka", "https://tec.openplanner.team/stops/N101akb"], ["https://tec.openplanner.team/stops/H4lz156b", "https://tec.openplanner.team/stops/H4lz160a"], ["https://tec.openplanner.team/stops/N221aba", "https://tec.openplanner.team/stops/X221aad"], ["https://tec.openplanner.team/stops/LDppana1", "https://tec.openplanner.team/stops/LDpulve1"], ["https://tec.openplanner.team/stops/X644aba", "https://tec.openplanner.team/stops/X644adb"], ["https://tec.openplanner.team/stops/H1bl105a", "https://tec.openplanner.team/stops/H1pd141a"], ["https://tec.openplanner.team/stops/LBRpier1", "https://tec.openplanner.team/stops/LLReg--2"], ["https://tec.openplanner.team/stops/N137aaa", "https://tec.openplanner.team/stops/N137aca"], ["https://tec.openplanner.team/stops/Canbruy2", "https://tec.openplanner.team/stops/Canecbr2"], ["https://tec.openplanner.team/stops/Bwavlep2", "https://tec.openplanner.team/stops/Bwavtpi2"], ["https://tec.openplanner.team/stops/Bobacou1", "https://tec.openplanner.team/stops/Bobacou2"], ["https://tec.openplanner.team/stops/N501dqb", "https://tec.openplanner.team/stops/N501kga"], ["https://tec.openplanner.team/stops/LaAgold1", "https://tec.openplanner.team/stops/LaAjahn2"], ["https://tec.openplanner.team/stops/X638aoa", "https://tec.openplanner.team/stops/X638apa"], ["https://tec.openplanner.team/stops/Bsomjon1", "https://tec.openplanner.team/stops/Bsomwav2"], ["https://tec.openplanner.team/stops/N310aea", "https://tec.openplanner.team/stops/N343aea"], ["https://tec.openplanner.team/stops/Lgrfass1", "https://tec.openplanner.team/stops/Lgrspir2"], ["https://tec.openplanner.team/stops/X839aab", "https://tec.openplanner.team/stops/X839aga"], ["https://tec.openplanner.team/stops/Cmygrbr1", "https://tec.openplanner.team/stops/Cmygrbr4"], ["https://tec.openplanner.team/stops/Cgzoctr2", "https://tec.openplanner.team/stops/Cthrpoi1"], ["https://tec.openplanner.team/stops/Bnivbxl2", "https://tec.openplanner.team/stops/Bnivgpl3"], ["https://tec.openplanner.team/stops/X771aha", "https://tec.openplanner.team/stops/X771ahb"], ["https://tec.openplanner.team/stops/H1mc126b", "https://tec.openplanner.team/stops/H1mc127b"], ["https://tec.openplanner.team/stops/N519aad", "https://tec.openplanner.team/stops/N519ada"], ["https://tec.openplanner.team/stops/X731acc", "https://tec.openplanner.team/stops/X731ama"], ["https://tec.openplanner.team/stops/H1ho143b", "https://tec.openplanner.team/stops/H1sg147a"], ["https://tec.openplanner.team/stops/Cbfbies1", "https://tec.openplanner.team/stops/Cbfbies2"], ["https://tec.openplanner.team/stops/LeUjuge1", "https://tec.openplanner.team/stops/LeUwert2"], ["https://tec.openplanner.team/stops/Louencl2", "https://tec.openplanner.team/stops/Louroos2"], ["https://tec.openplanner.team/stops/LWEfati2", "https://tec.openplanner.team/stops/LWEhosp1"], ["https://tec.openplanner.team/stops/X784aha", "https://tec.openplanner.team/stops/X784aka"], ["https://tec.openplanner.team/stops/H1sp353a", "https://tec.openplanner.team/stops/H1sp357c"], ["https://tec.openplanner.team/stops/LSerout2", "https://tec.openplanner.team/stops/LSetrix1"], ["https://tec.openplanner.team/stops/X779aaa", "https://tec.openplanner.team/stops/X779aab"], ["https://tec.openplanner.team/stops/Chpchea1", "https://tec.openplanner.team/stops/Chpchea2"], ["https://tec.openplanner.team/stops/N538aoa", "https://tec.openplanner.team/stops/N538asb"], ["https://tec.openplanner.team/stops/N501eoa", "https://tec.openplanner.team/stops/N501lqa"], ["https://tec.openplanner.team/stops/LBichen2", "https://tec.openplanner.team/stops/LBieg--4"], ["https://tec.openplanner.team/stops/H4ae100b", "https://tec.openplanner.team/stops/H4ae101b"], ["https://tec.openplanner.team/stops/LDAchau1", "https://tec.openplanner.team/stops/LDArich1"], ["https://tec.openplanner.team/stops/Llgbass2", "https://tec.openplanner.team/stops/Llgwall1"], ["https://tec.openplanner.team/stops/NL68aea", "https://tec.openplanner.team/stops/NL68afb"], ["https://tec.openplanner.team/stops/N501kuc", "https://tec.openplanner.team/stops/N501ljb"], ["https://tec.openplanner.team/stops/LHMsipp2", "https://tec.openplanner.team/stops/LSIroch1"], ["https://tec.openplanner.team/stops/H1to153c", "https://tec.openplanner.team/stops/H1to153d"], ["https://tec.openplanner.team/stops/LLUdeig2", "https://tec.openplanner.team/stops/LREhaut2"], ["https://tec.openplanner.team/stops/Cthathe1", "https://tec.openplanner.team/stops/Cthhvil1"], ["https://tec.openplanner.team/stops/H1mj129b", "https://tec.openplanner.team/stops/H1ml112a"], ["https://tec.openplanner.team/stops/LCHeg--2", "https://tec.openplanner.team/stops/LCHsaul1"], ["https://tec.openplanner.team/stops/N528ajb", "https://tec.openplanner.team/stops/N528aka"], ["https://tec.openplanner.team/stops/Bnivga71", "https://tec.openplanner.team/stops/Bnivrwi2"], ["https://tec.openplanner.team/stops/H4wn131a", "https://tec.openplanner.team/stops/H4wn131b"], ["https://tec.openplanner.team/stops/N534aqa", "https://tec.openplanner.team/stops/N534aqb"], ["https://tec.openplanner.team/stops/H1ms254a", "https://tec.openplanner.team/stops/H1ms254b"], ["https://tec.openplanner.team/stops/Ljhmany1", "https://tec.openplanner.team/stops/Ljhmany2"], ["https://tec.openplanner.team/stops/LeUbahn2", "https://tec.openplanner.team/stops/LeUhook2"], ["https://tec.openplanner.team/stops/LSXbecc1", "https://tec.openplanner.team/stops/LTHchiv2"], ["https://tec.openplanner.team/stops/H4eh104b", "https://tec.openplanner.team/stops/H4po126a"], ["https://tec.openplanner.team/stops/LFPstro2", "https://tec.openplanner.team/stops/LRmsmvo4"], ["https://tec.openplanner.team/stops/X870aab", "https://tec.openplanner.team/stops/X880afb"], ["https://tec.openplanner.team/stops/Lhrcols1", "https://tec.openplanner.team/stops/Lvtauna1"], ["https://tec.openplanner.team/stops/H1je223a", "https://tec.openplanner.team/stops/H1je366b"], ["https://tec.openplanner.team/stops/LHAheml2", "https://tec.openplanner.team/stops/Lvicitw1"], ["https://tec.openplanner.team/stops/X637agc", "https://tec.openplanner.team/stops/X637akb"], ["https://tec.openplanner.team/stops/LRRchea1", "https://tec.openplanner.team/stops/LRRchea2"], ["https://tec.openplanner.team/stops/Cravign2", "https://tec.openplanner.team/stops/Cravign4"], ["https://tec.openplanner.team/stops/H1he100a", "https://tec.openplanner.team/stops/H1qv116b"], ["https://tec.openplanner.team/stops/H4eh101a", "https://tec.openplanner.team/stops/H4wg122b"], ["https://tec.openplanner.team/stops/H4ff118b", "https://tec.openplanner.team/stops/H4ff120b"], ["https://tec.openplanner.team/stops/Bbcoeco1", "https://tec.openplanner.team/stops/Bbcoeco2"], ["https://tec.openplanner.team/stops/Balssvi1", "https://tec.openplanner.team/stops/Brsgfon2"], ["https://tec.openplanner.team/stops/LGegrun1", "https://tec.openplanner.team/stops/LGetroi2"], ["https://tec.openplanner.team/stops/H1ms282a", "https://tec.openplanner.team/stops/H1ss350b"], ["https://tec.openplanner.team/stops/N102abb", "https://tec.openplanner.team/stops/N102acb"], ["https://tec.openplanner.team/stops/X681afa", "https://tec.openplanner.team/stops/X687akb"], ["https://tec.openplanner.team/stops/H1mh112a", "https://tec.openplanner.team/stops/H1tl122a"], ["https://tec.openplanner.team/stops/X982aia", "https://tec.openplanner.team/stops/X982bua"], ["https://tec.openplanner.team/stops/N423aaa", "https://tec.openplanner.team/stops/N423aca"], ["https://tec.openplanner.team/stops/X830aaa", "https://tec.openplanner.team/stops/X830aab"], ["https://tec.openplanner.team/stops/H1nm141b", "https://tec.openplanner.team/stops/H4gr108b"], ["https://tec.openplanner.team/stops/LLrjeho1", "https://tec.openplanner.team/stops/LLrjeho2"], ["https://tec.openplanner.team/stops/LhEauto1", "https://tec.openplanner.team/stops/LhEklos1"], ["https://tec.openplanner.team/stops/N542aab", "https://tec.openplanner.team/stops/N542aoa"], ["https://tec.openplanner.team/stops/Bgoekaz1", "https://tec.openplanner.team/stops/Bgoevli1"], ["https://tec.openplanner.team/stops/N517afa", "https://tec.openplanner.team/stops/N517afb"], ["https://tec.openplanner.team/stops/Chhbiet1", "https://tec.openplanner.team/stops/Chhbiet2"], ["https://tec.openplanner.team/stops/H4ef165a", "https://tec.openplanner.team/stops/H4ef165b"], ["https://tec.openplanner.team/stops/X725asa", "https://tec.openplanner.team/stops/X725asb"], ["https://tec.openplanner.team/stops/LNEec--1", "https://tec.openplanner.team/stops/LNEvand2"], ["https://tec.openplanner.team/stops/LVBcarr1", "https://tec.openplanner.team/stops/LVBeg--2"], ["https://tec.openplanner.team/stops/LAOeg--1", "https://tec.openplanner.team/stops/LCAcruc2"], ["https://tec.openplanner.team/stops/LElgerd4", "https://tec.openplanner.team/stops/LElverl2"], ["https://tec.openplanner.team/stops/Clbbonn2", "https://tec.openplanner.team/stops/H1lo120a"], ["https://tec.openplanner.team/stops/H4pi134b", "https://tec.openplanner.team/stops/H4th141a"], ["https://tec.openplanner.team/stops/H1ms282b", "https://tec.openplanner.team/stops/H1ms302b"], ["https://tec.openplanner.team/stops/N229ana", "https://tec.openplanner.team/stops/N540aqa"], ["https://tec.openplanner.team/stops/Bhlvgar1", "https://tec.openplanner.team/stops/Bhlvvil1"], ["https://tec.openplanner.team/stops/Candett2", "https://tec.openplanner.team/stops/Clbhour2"], ["https://tec.openplanner.team/stops/LHEcruc4", "https://tec.openplanner.team/stops/LHEhv--2"], ["https://tec.openplanner.team/stops/LCsjone2", "https://tec.openplanner.team/stops/LFFcouv2"], ["https://tec.openplanner.team/stops/LWinavi1", "https://tec.openplanner.team/stops/LXhcite1"], ["https://tec.openplanner.team/stops/LSpbawe1", "https://tec.openplanner.team/stops/LSpxhig1"], ["https://tec.openplanner.team/stops/X754aaa", "https://tec.openplanner.team/stops/X754aab"], ["https://tec.openplanner.team/stops/LSyec--1", "https://tec.openplanner.team/stops/LSygerm1"], ["https://tec.openplanner.team/stops/Csecarr1", "https://tec.openplanner.team/stops/Csesabo1"], ["https://tec.openplanner.team/stops/N261aab", "https://tec.openplanner.team/stops/N261ahb"], ["https://tec.openplanner.team/stops/N547aaa", "https://tec.openplanner.team/stops/N547anb"], ["https://tec.openplanner.team/stops/X926ada", "https://tec.openplanner.team/stops/X926adb"], ["https://tec.openplanner.team/stops/Clupcfe2", "https://tec.openplanner.team/stops/Cpcndce2"], ["https://tec.openplanner.team/stops/Creespi1", "https://tec.openplanner.team/stops/Creespi2"], ["https://tec.openplanner.team/stops/X891acb", "https://tec.openplanner.team/stops/X891ada"], ["https://tec.openplanner.team/stops/N207aab", "https://tec.openplanner.team/stops/N207aba"], ["https://tec.openplanner.team/stops/N243aab", "https://tec.openplanner.team/stops/N251ada"], ["https://tec.openplanner.team/stops/Bmrlsau1", "https://tec.openplanner.team/stops/NR21aib"], ["https://tec.openplanner.team/stops/LHrcarr1", "https://tec.openplanner.team/stops/LLEfagn1"], ["https://tec.openplanner.team/stops/LDOprev1", "https://tec.openplanner.team/stops/LDOviad1"], ["https://tec.openplanner.team/stops/LLrlour1", "https://tec.openplanner.team/stops/LLrquar2"], ["https://tec.openplanner.team/stops/Lveyser1", "https://tec.openplanner.team/stops/Lveyser2"], ["https://tec.openplanner.team/stops/Becepon2", "https://tec.openplanner.team/stops/Becepri1"], ["https://tec.openplanner.team/stops/Baudulb1", "https://tec.openplanner.team/stops/Baudwav2"], ["https://tec.openplanner.team/stops/LbTmuhl1", "https://tec.openplanner.team/stops/LbTmuhl2"], ["https://tec.openplanner.team/stops/X547aab", "https://tec.openplanner.team/stops/X547asa"], ["https://tec.openplanner.team/stops/N509aua", "https://tec.openplanner.team/stops/N511anb"], ["https://tec.openplanner.team/stops/NL57agb", "https://tec.openplanner.team/stops/NL57aka"], ["https://tec.openplanner.team/stops/Cflecga2", "https://tec.openplanner.team/stops/Cflspir2"], ["https://tec.openplanner.team/stops/NL74aaa", "https://tec.openplanner.team/stops/NL74abb"], ["https://tec.openplanner.team/stops/Bgntcoo2", "https://tec.openplanner.team/stops/Bgnttma2"], ["https://tec.openplanner.team/stops/LFmceli2", "https://tec.openplanner.team/stops/LFmecli3"], ["https://tec.openplanner.team/stops/Cgpchgo1", "https://tec.openplanner.team/stops/Ctrstro1"], ["https://tec.openplanner.team/stops/N505akb", "https://tec.openplanner.team/stops/N505alb"], ["https://tec.openplanner.team/stops/Clbentr2", "https://tec.openplanner.team/stops/H1lo119a"], ["https://tec.openplanner.team/stops/LLrcour1", "https://tec.openplanner.team/stops/LLrpape2"], ["https://tec.openplanner.team/stops/X608ajb", "https://tec.openplanner.team/stops/X608aka"], ["https://tec.openplanner.team/stops/Ccogera1", "https://tec.openplanner.team/stops/Ccogrbu1"], ["https://tec.openplanner.team/stops/Lvieg--1", "https://tec.openplanner.team/stops/Lvieg--2"], ["https://tec.openplanner.team/stops/H4ga166b", "https://tec.openplanner.team/stops/H4ha168a"], ["https://tec.openplanner.team/stops/LBDfran2", "https://tec.openplanner.team/stops/LBDtill2"], ["https://tec.openplanner.team/stops/X614aua", "https://tec.openplanner.team/stops/X614aub"], ["https://tec.openplanner.team/stops/Bjausan2", "https://tec.openplanner.team/stops/Bjauvch1"], ["https://tec.openplanner.team/stops/N894ada", "https://tec.openplanner.team/stops/N894agc"], ["https://tec.openplanner.team/stops/NL72afa", "https://tec.openplanner.team/stops/NL72afb"], ["https://tec.openplanner.team/stops/Lmagara1", "https://tec.openplanner.team/stops/Lrofont*"], ["https://tec.openplanner.team/stops/X613aaa", "https://tec.openplanner.team/stops/X613aba"], ["https://tec.openplanner.team/stops/Crsprai3", "https://tec.openplanner.team/stops/Crsrose1"], ["https://tec.openplanner.team/stops/LbAhull1", "https://tec.openplanner.team/stops/LbAhull2"], ["https://tec.openplanner.team/stops/N507aaa", "https://tec.openplanner.team/stops/N507aab"], ["https://tec.openplanner.team/stops/X822alb", "https://tec.openplanner.team/stops/X822ara"], ["https://tec.openplanner.team/stops/N539aba", "https://tec.openplanner.team/stops/N539abb"], ["https://tec.openplanner.team/stops/Bbchdev1", "https://tec.openplanner.team/stops/Bbchdev2"], ["https://tec.openplanner.team/stops/N501dpa", "https://tec.openplanner.team/stops/N501klb"], ["https://tec.openplanner.team/stops/X921ada", "https://tec.openplanner.team/stops/X921afb"], ["https://tec.openplanner.team/stops/N521abb", "https://tec.openplanner.team/stops/N521arb"], ["https://tec.openplanner.team/stops/LTPbode1", "https://tec.openplanner.team/stops/LTPhenr1"], ["https://tec.openplanner.team/stops/LeYberl1", "https://tec.openplanner.team/stops/LrAalte1"], ["https://tec.openplanner.team/stops/Caih1631", "https://tec.openplanner.team/stops/Caih1632"], ["https://tec.openplanner.team/stops/H1ho124b", "https://tec.openplanner.team/stops/H1ho139b"], ["https://tec.openplanner.team/stops/X636ana", "https://tec.openplanner.team/stops/X636aob"], ["https://tec.openplanner.team/stops/H4ne136b", "https://tec.openplanner.team/stops/H4te250a"], ["https://tec.openplanner.team/stops/LlgLAMB2", "https://tec.openplanner.team/stops/Llgrege2"], ["https://tec.openplanner.team/stops/LESmecp*", "https://tec.openplanner.team/stops/LSdcent2"], ["https://tec.openplanner.team/stops/LMNgend1", "https://tec.openplanner.team/stops/LMNgend2"], ["https://tec.openplanner.team/stops/LiVdorf1", "https://tec.openplanner.team/stops/LiVdorf2"], ["https://tec.openplanner.team/stops/LWLhagi1", "https://tec.openplanner.team/stops/LWLtamb2"], ["https://tec.openplanner.team/stops/Cctpche1", "https://tec.openplanner.team/stops/Cctpche2"], ["https://tec.openplanner.team/stops/H1by104a", "https://tec.openplanner.team/stops/H1by107b"], ["https://tec.openplanner.team/stops/H1qu108b", "https://tec.openplanner.team/stops/H1qu119b"], ["https://tec.openplanner.team/stops/LMemora1", "https://tec.openplanner.team/stops/LMemora2"], ["https://tec.openplanner.team/stops/X982apb", "https://tec.openplanner.team/stops/X982bra"], ["https://tec.openplanner.team/stops/X897agb", "https://tec.openplanner.team/stops/X897ava"], ["https://tec.openplanner.team/stops/Cbfgare2", "https://tec.openplanner.team/stops/Cctberg2"], ["https://tec.openplanner.team/stops/Cmlcpar2", "https://tec.openplanner.team/stops/Cmlpche1"], ["https://tec.openplanner.team/stops/Blasbh51", "https://tec.openplanner.team/stops/Blasbpr2"], ["https://tec.openplanner.team/stops/Lvicitw1", "https://tec.openplanner.team/stops/Lviweri2"], ["https://tec.openplanner.team/stops/X921ara", "https://tec.openplanner.team/stops/X921arb"], ["https://tec.openplanner.team/stops/Lhrlamb1", "https://tec.openplanner.team/stops/Lhrmine2"], ["https://tec.openplanner.team/stops/X609apa", "https://tec.openplanner.team/stops/X609ara"], ["https://tec.openplanner.team/stops/X877aga", "https://tec.openplanner.team/stops/X989afa"], ["https://tec.openplanner.team/stops/N104aad", "https://tec.openplanner.team/stops/N116abb"], ["https://tec.openplanner.team/stops/X897aja", "https://tec.openplanner.team/stops/X897anb"], ["https://tec.openplanner.team/stops/X911ana", "https://tec.openplanner.team/stops/X911ata"], ["https://tec.openplanner.team/stops/H4ch119b", "https://tec.openplanner.team/stops/H4vx365a"], ["https://tec.openplanner.team/stops/N387abb", "https://tec.openplanner.team/stops/N387acc"], ["https://tec.openplanner.team/stops/H1le118b", "https://tec.openplanner.team/stops/H1ol137a"], ["https://tec.openplanner.team/stops/H1wa137a", "https://tec.openplanner.team/stops/H1wa137b"], ["https://tec.openplanner.team/stops/N141aca", "https://tec.openplanner.team/stops/N141ahb"], ["https://tec.openplanner.team/stops/N534ata", "https://tec.openplanner.team/stops/N534bea"], ["https://tec.openplanner.team/stops/Lbobuil1", "https://tec.openplanner.team/stops/Lbosart2"], ["https://tec.openplanner.team/stops/Bptrpla2", "https://tec.openplanner.team/stops/Brosegl2"], ["https://tec.openplanner.team/stops/LHUtrin1", "https://tec.openplanner.team/stops/NL77aia"], ["https://tec.openplanner.team/stops/Cfrchro2", "https://tec.openplanner.team/stops/Cfrptfe2"], ["https://tec.openplanner.team/stops/LlE02--1", "https://tec.openplanner.team/stops/LlEzoll2"], ["https://tec.openplanner.team/stops/Cbugara1", "https://tec.openplanner.team/stops/Csiegli2"], ["https://tec.openplanner.team/stops/N528aeb", "https://tec.openplanner.team/stops/N528arc"], ["https://tec.openplanner.team/stops/Bfelrav1", "https://tec.openplanner.team/stops/Bfelrav2"], ["https://tec.openplanner.team/stops/LhEtivo1", "https://tec.openplanner.team/stops/LlNsc652"], ["https://tec.openplanner.team/stops/LCFchir2", "https://tec.openplanner.team/stops/LCFeg--2"], ["https://tec.openplanner.team/stops/LkEcoop1", "https://tec.openplanner.team/stops/LkEgend2"], ["https://tec.openplanner.team/stops/N149aga", "https://tec.openplanner.team/stops/N149agb"], ["https://tec.openplanner.team/stops/X654abb", "https://tec.openplanner.team/stops/X654ada"], ["https://tec.openplanner.team/stops/H1ch103b", "https://tec.openplanner.team/stops/H1ch104b"], ["https://tec.openplanner.team/stops/X663asa", "https://tec.openplanner.team/stops/X664arb"], ["https://tec.openplanner.team/stops/H2go116b", "https://tec.openplanner.team/stops/H2go118b"], ["https://tec.openplanner.team/stops/N501hmb", "https://tec.openplanner.team/stops/N501hna"], ["https://tec.openplanner.team/stops/N531aoa", "https://tec.openplanner.team/stops/N531apb"], ["https://tec.openplanner.team/stops/LHUgole1", "https://tec.openplanner.team/stops/LHUhaut1"], ["https://tec.openplanner.team/stops/N515aid", "https://tec.openplanner.team/stops/N515asb"], ["https://tec.openplanner.team/stops/H1vt196a", "https://tec.openplanner.team/stops/H1vt196b"], ["https://tec.openplanner.team/stops/N584bqb", "https://tec.openplanner.team/stops/NC12aab"], ["https://tec.openplanner.team/stops/Bmelmqu2", "https://tec.openplanner.team/stops/Bvilpar1"], ["https://tec.openplanner.team/stops/Bbcopre1", "https://tec.openplanner.team/stops/Bbcoroy2"], ["https://tec.openplanner.team/stops/N244apa", "https://tec.openplanner.team/stops/N244axa"], ["https://tec.openplanner.team/stops/LVIferm1", "https://tec.openplanner.team/stops/LVImons1"], ["https://tec.openplanner.team/stops/Lbhbalt2", "https://tec.openplanner.team/stops/Lroeg--1"], ["https://tec.openplanner.team/stops/H2ha134a", "https://tec.openplanner.team/stops/H2tr247b"], ["https://tec.openplanner.team/stops/LWRbois2", "https://tec.openplanner.team/stops/LWRvert2"], ["https://tec.openplanner.team/stops/X618aka", "https://tec.openplanner.team/stops/X618ana"], ["https://tec.openplanner.team/stops/Lfllapi2", "https://tec.openplanner.team/stops/Lflterm2"], ["https://tec.openplanner.team/stops/LBVplan1", "https://tec.openplanner.team/stops/LBVzand3"], ["https://tec.openplanner.team/stops/LHEecmo1", "https://tec.openplanner.team/stops/LHEepur2"], ["https://tec.openplanner.team/stops/Lfhcoop1", "https://tec.openplanner.team/stops/Ljeheur1"], ["https://tec.openplanner.team/stops/X652aha", "https://tec.openplanner.team/stops/X675aba"], ["https://tec.openplanner.team/stops/Clb4bra1", "https://tec.openplanner.team/stops/Clbecol2"], ["https://tec.openplanner.team/stops/Bblaadm2", "https://tec.openplanner.team/stops/Bblasol1"], ["https://tec.openplanner.team/stops/Bwspcar2", "https://tec.openplanner.team/stops/Bwspmon4"], ["https://tec.openplanner.team/stops/X636arb", "https://tec.openplanner.team/stops/X636ata"], ["https://tec.openplanner.team/stops/Cjubien2", "https://tec.openplanner.team/stops/Cjuplco2"], ["https://tec.openplanner.team/stops/N211ada", "https://tec.openplanner.team/stops/N211adb"], ["https://tec.openplanner.team/stops/H4ty314e", "https://tec.openplanner.team/stops/H4ty379a"], ["https://tec.openplanner.team/stops/LLxcana2", "https://tec.openplanner.team/stops/LLxmonu2"], ["https://tec.openplanner.team/stops/LWEcool1", "https://tec.openplanner.team/stops/LWEpl--1"], ["https://tec.openplanner.team/stops/N501epd", "https://tec.openplanner.team/stops/N501etb"], ["https://tec.openplanner.team/stops/X634aia", "https://tec.openplanner.team/stops/X634ajb"], ["https://tec.openplanner.team/stops/LaSbahn2", "https://tec.openplanner.team/stops/LwAprei2"], ["https://tec.openplanner.team/stops/LHChomb1", "https://tec.openplanner.team/stops/LHCmonu1"], ["https://tec.openplanner.team/stops/Bovesnh1", "https://tec.openplanner.team/stops/Bovesol1"], ["https://tec.openplanner.team/stops/LeUbahn4", "https://tec.openplanner.team/stops/LeUschn2"], ["https://tec.openplanner.team/stops/X850aga", "https://tec.openplanner.team/stops/X850ahb"], ["https://tec.openplanner.team/stops/H1em108a", "https://tec.openplanner.team/stops/H1hl128b"], ["https://tec.openplanner.team/stops/LLNbeau1", "https://tec.openplanner.team/stops/LSpbawe2"], ["https://tec.openplanner.team/stops/H4bi156b", "https://tec.openplanner.team/stops/H4te256a"], ["https://tec.openplanner.team/stops/LVIlore1", "https://tec.openplanner.team/stops/LVIpneu1"], ["https://tec.openplanner.team/stops/H4ty275a", "https://tec.openplanner.team/stops/H4ty276b"], ["https://tec.openplanner.team/stops/Bhoegbr1", "https://tec.openplanner.team/stops/Blhugai1"], ["https://tec.openplanner.team/stops/Lrapays1", "https://tec.openplanner.team/stops/Lrapays2"], ["https://tec.openplanner.team/stops/Bbstmco1", "https://tec.openplanner.team/stops/Cbtlong1"], ["https://tec.openplanner.team/stops/Bhevcur1", "https://tec.openplanner.team/stops/Bvilcha1"], ["https://tec.openplanner.team/stops/NC14aea", "https://tec.openplanner.team/stops/NC14aga"], ["https://tec.openplanner.team/stops/Lceludg1", "https://tec.openplanner.team/stops/Lcesart2"], ["https://tec.openplanner.team/stops/Lsemaqu1", "https://tec.openplanner.team/stops/Lsemyrt1"], ["https://tec.openplanner.team/stops/H1sa113a", "https://tec.openplanner.team/stops/H1sa115a"], ["https://tec.openplanner.team/stops/X633agb", "https://tec.openplanner.team/stops/X633agc"], ["https://tec.openplanner.team/stops/Bsencen1", "https://tec.openplanner.team/stops/Bsencen2"], ["https://tec.openplanner.team/stops/H1ag104a", "https://tec.openplanner.team/stops/H1ag106b"], ["https://tec.openplanner.team/stops/Bottgar4", "https://tec.openplanner.team/stops/Bottgar5"], ["https://tec.openplanner.team/stops/Beclaub2", "https://tec.openplanner.team/stops/Becltri2"], ["https://tec.openplanner.team/stops/X767aac", "https://tec.openplanner.team/stops/X767aba"], ["https://tec.openplanner.team/stops/LMNcite2", "https://tec.openplanner.team/stops/LMNentr2"], ["https://tec.openplanner.team/stops/LAWcite1", "https://tec.openplanner.team/stops/LAWcite6"], ["https://tec.openplanner.team/stops/X912adb", "https://tec.openplanner.team/stops/X912akb"], ["https://tec.openplanner.team/stops/Btslenf1", "https://tec.openplanner.team/stops/Btslpbr2"], ["https://tec.openplanner.team/stops/LsVsage2", "https://tec.openplanner.team/stops/LwSschw2"], ["https://tec.openplanner.team/stops/LAChann2", "https://tec.openplanner.team/stops/N507aeb"], ["https://tec.openplanner.team/stops/N232bjb", "https://tec.openplanner.team/stops/N261afb"], ["https://tec.openplanner.team/stops/Cbblacb1", "https://tec.openplanner.team/stops/Cclbarb1"], ["https://tec.openplanner.team/stops/LHUcomp2", "https://tec.openplanner.team/stops/LHUlebe0"], ["https://tec.openplanner.team/stops/Llggill1", "https://tec.openplanner.team/stops/Llggill2"], ["https://tec.openplanner.team/stops/N532ada", "https://tec.openplanner.team/stops/N532aea"], ["https://tec.openplanner.team/stops/H1mm127a", "https://tec.openplanner.team/stops/H1vb141a"], ["https://tec.openplanner.team/stops/LWapl--2", "https://tec.openplanner.team/stops/LWapl--3"], ["https://tec.openplanner.team/stops/N331aaa", "https://tec.openplanner.team/stops/N331aca"], ["https://tec.openplanner.team/stops/H2mg150b", "https://tec.openplanner.team/stops/H2se113a"], ["https://tec.openplanner.team/stops/X886aga", "https://tec.openplanner.team/stops/X886agb"], ["https://tec.openplanner.team/stops/H1ms278a", "https://tec.openplanner.team/stops/H1ms907a"], ["https://tec.openplanner.team/stops/Brixaug1", "https://tec.openplanner.team/stops/Brixpla1"], ["https://tec.openplanner.team/stops/X902axa", "https://tec.openplanner.team/stops/X943aaa"], ["https://tec.openplanner.team/stops/Bblacar2", "https://tec.openplanner.team/stops/Bwaunop2"], ["https://tec.openplanner.team/stops/X669abc", "https://tec.openplanner.team/stops/X669agb"], ["https://tec.openplanner.team/stops/H2sb224b", "https://tec.openplanner.team/stops/H2sb234a"], ["https://tec.openplanner.team/stops/LAWhein1", "https://tec.openplanner.team/stops/LAWhein2"], ["https://tec.openplanner.team/stops/N166adb", "https://tec.openplanner.team/stops/N166aea"], ["https://tec.openplanner.team/stops/N554ahb", "https://tec.openplanner.team/stops/N573aqa"], ["https://tec.openplanner.team/stops/LOrchau1", "https://tec.openplanner.team/stops/LOrchau2"], ["https://tec.openplanner.team/stops/LHEbeau2", "https://tec.openplanner.team/stops/LHEches2"], ["https://tec.openplanner.team/stops/LHHplac1", "https://tec.openplanner.team/stops/LHHplac2"], ["https://tec.openplanner.team/stops/H1he101a", "https://tec.openplanner.team/stops/H1he105a"], ["https://tec.openplanner.team/stops/Bbchcbl1", "https://tec.openplanner.team/stops/Bbchrra2"], ["https://tec.openplanner.team/stops/LMYlieg1", "https://tec.openplanner.team/stops/X597alb"], ["https://tec.openplanner.team/stops/N390amb", "https://tec.openplanner.team/stops/X358aca"], ["https://tec.openplanner.team/stops/X882aka", "https://tec.openplanner.team/stops/X882amb"], ["https://tec.openplanner.team/stops/X767aca", "https://tec.openplanner.team/stops/X767afa"], ["https://tec.openplanner.team/stops/Bbstmco2", "https://tec.openplanner.team/stops/Bbstrpo2"], ["https://tec.openplanner.team/stops/H4bh101b", "https://tec.openplanner.team/stops/H4bh102b"], ["https://tec.openplanner.team/stops/LOLvill2", "https://tec.openplanner.team/stops/LOLvill4"], ["https://tec.openplanner.team/stops/H4he103a", "https://tec.openplanner.team/stops/H4he103b"], ["https://tec.openplanner.team/stops/LCOdrol1", "https://tec.openplanner.team/stops/LWerola1"], ["https://tec.openplanner.team/stops/Bbsggot1", "https://tec.openplanner.team/stops/Bbsggot2"], ["https://tec.openplanner.team/stops/NL76apb", "https://tec.openplanner.team/stops/NL76aqa"], ["https://tec.openplanner.team/stops/N543bpa", "https://tec.openplanner.team/stops/N543cmb"], ["https://tec.openplanner.team/stops/Bixllep2", "https://tec.openplanner.team/stops/Buccdho2"], ["https://tec.openplanner.team/stops/N170aea", "https://tec.openplanner.team/stops/N170agb"], ["https://tec.openplanner.team/stops/X621abb", "https://tec.openplanner.team/stops/X621acb"], ["https://tec.openplanner.team/stops/N501mxa", "https://tec.openplanner.team/stops/N501mxb"], ["https://tec.openplanner.team/stops/H2mo129a", "https://tec.openplanner.team/stops/H2mo135b"], ["https://tec.openplanner.team/stops/Cflecep1", "https://tec.openplanner.team/stops/Cflecep2"], ["https://tec.openplanner.team/stops/X750aea", "https://tec.openplanner.team/stops/X750aeb"], ["https://tec.openplanner.team/stops/LDoeg--2", "https://tec.openplanner.team/stops/LSChane2"], ["https://tec.openplanner.team/stops/N515agb", "https://tec.openplanner.team/stops/NR27aaa"], ["https://tec.openplanner.team/stops/LLSba4-2", "https://tec.openplanner.team/stops/LLStrid2"], ["https://tec.openplanner.team/stops/N501amb", "https://tec.openplanner.team/stops/N501apa"], ["https://tec.openplanner.team/stops/Canresi1", "https://tec.openplanner.team/stops/H2an104b"], ["https://tec.openplanner.team/stops/H4an107a", "https://tec.openplanner.team/stops/H4ce103a"], ["https://tec.openplanner.team/stops/Canjon2", "https://tec.openplanner.team/stops/Canrobe2"], ["https://tec.openplanner.team/stops/Bboueta2", "https://tec.openplanner.team/stops/Bbougar2"], ["https://tec.openplanner.team/stops/LAMfrai2", "https://tec.openplanner.team/stops/LAMmc--2"], ["https://tec.openplanner.team/stops/LJAmari1", "https://tec.openplanner.team/stops/LJAmari2"], ["https://tec.openplanner.team/stops/LBzec--2", "https://tec.openplanner.team/stops/LBzvill2"], ["https://tec.openplanner.team/stops/LFmeg--2", "https://tec.openplanner.team/stops/LFmroye2"], ["https://tec.openplanner.team/stops/H1ne141a", "https://tec.openplanner.team/stops/H1ne147b"], ["https://tec.openplanner.team/stops/N534awb", "https://tec.openplanner.team/stops/N534caa"], ["https://tec.openplanner.team/stops/N232bfa", "https://tec.openplanner.team/stops/N232bwa"], ["https://tec.openplanner.team/stops/H3so173a", "https://tec.openplanner.team/stops/H3so174a"], ["https://tec.openplanner.team/stops/X725asb", "https://tec.openplanner.team/stops/X725bia"], ["https://tec.openplanner.team/stops/X641aua", "https://tec.openplanner.team/stops/X673aab"], ["https://tec.openplanner.team/stops/X671aab", "https://tec.openplanner.team/stops/X671ada"], ["https://tec.openplanner.team/stops/Ljucomb1", "https://tec.openplanner.team/stops/Ljuhava1"], ["https://tec.openplanner.team/stops/N501cna", "https://tec.openplanner.team/stops/N501mdb"], ["https://tec.openplanner.team/stops/LLUreut1", "https://tec.openplanner.team/stops/LLUvent6"], ["https://tec.openplanner.team/stops/N201atb", "https://tec.openplanner.team/stops/N201aua"], ["https://tec.openplanner.team/stops/X733aga", "https://tec.openplanner.team/stops/X733akb"], ["https://tec.openplanner.team/stops/X804aea", "https://tec.openplanner.team/stops/X804azb"], ["https://tec.openplanner.team/stops/X879aga", "https://tec.openplanner.team/stops/X879asb"], ["https://tec.openplanner.team/stops/N321ada", "https://tec.openplanner.team/stops/N321adb"], ["https://tec.openplanner.team/stops/X601aza", "https://tec.openplanner.team/stops/X601azb"], ["https://tec.openplanner.team/stops/H1me116b", "https://tec.openplanner.team/stops/H1mm127b"], ["https://tec.openplanner.team/stops/LHUdeni3", "https://tec.openplanner.team/stops/LHUdeni4"], ["https://tec.openplanner.team/stops/Clsferr1", "https://tec.openplanner.team/stops/H1ls110b"], ["https://tec.openplanner.team/stops/LeUmeye1", "https://tec.openplanner.team/stops/LHtdros2"], ["https://tec.openplanner.team/stops/X904aaa", "https://tec.openplanner.team/stops/X904aab"], ["https://tec.openplanner.team/stops/H4ta126a", "https://tec.openplanner.team/stops/H4ta126b"], ["https://tec.openplanner.team/stops/Bgliaau1", "https://tec.openplanner.team/stops/Bglitro2"], ["https://tec.openplanner.team/stops/X638amb", "https://tec.openplanner.team/stops/X638ara"], ["https://tec.openplanner.team/stops/X605agb", "https://tec.openplanner.team/stops/X618aab"], ["https://tec.openplanner.team/stops/X945aea", "https://tec.openplanner.team/stops/X946aia"], ["https://tec.openplanner.team/stops/Btubbsc1", "https://tec.openplanner.team/stops/Btubdeh1"], ["https://tec.openplanner.team/stops/Ccunove2", "https://tec.openplanner.team/stops/Ccuplai1"], ["https://tec.openplanner.team/stops/LFmecli3", "https://tec.openplanner.team/stops/LFmeg--2"], ["https://tec.openplanner.team/stops/LVAmaas1", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://tec.openplanner.team/stops/Cmmmarl2", "https://tec.openplanner.team/stops/Cmmramb1"], ["https://tec.openplanner.team/stops/Bgembsg2", "https://tec.openplanner.team/stops/Bgemga07"], ["https://tec.openplanner.team/stops/Lpechin2", "https://tec.openplanner.team/stops/Lpevove2"], ["https://tec.openplanner.team/stops/X886ahb", "https://tec.openplanner.team/stops/X889aaa"], ["https://tec.openplanner.team/stops/N121ada", "https://tec.openplanner.team/stops/N121aia"], ["https://tec.openplanner.team/stops/X763aaa", "https://tec.openplanner.team/stops/X765afb"], ["https://tec.openplanner.team/stops/N565afa", "https://tec.openplanner.team/stops/N565akb"], ["https://tec.openplanner.team/stops/H4ch120b", "https://tec.openplanner.team/stops/H4ch120d"], ["https://tec.openplanner.team/stops/N538aea", "https://tec.openplanner.team/stops/N538ahb"], ["https://tec.openplanner.team/stops/X740aea", "https://tec.openplanner.team/stops/X740afa"], ["https://tec.openplanner.team/stops/LkAsonn1", "https://tec.openplanner.team/stops/LmHperl2"], ["https://tec.openplanner.team/stops/N513awa", "https://tec.openplanner.team/stops/N513axa"], ["https://tec.openplanner.team/stops/N501dqb", "https://tec.openplanner.team/stops/N501drb"], ["https://tec.openplanner.team/stops/Lfhbail1", "https://tec.openplanner.team/stops/Lfhxhor2"], ["https://tec.openplanner.team/stops/Lbrbass1", "https://tec.openplanner.team/stops/Lbrdepo2"], ["https://tec.openplanner.team/stops/Bcsecar2", "https://tec.openplanner.team/stops/Bmoufil1"], ["https://tec.openplanner.team/stops/LMomonc1", "https://tec.openplanner.team/stops/LMomonc2"], ["https://tec.openplanner.team/stops/X804aqa", "https://tec.openplanner.team/stops/X804aqb"], ["https://tec.openplanner.team/stops/Bmarcat1", "https://tec.openplanner.team/stops/Bmaregl2"], ["https://tec.openplanner.team/stops/Cctcoll2", "https://tec.openplanner.team/stops/Cctgaux2"], ["https://tec.openplanner.team/stops/X613aca", "https://tec.openplanner.team/stops/X614bda"], ["https://tec.openplanner.team/stops/H4ne144a", "https://tec.openplanner.team/stops/H4ne144b"], ["https://tec.openplanner.team/stops/Caibino2", "https://tec.openplanner.team/stops/Caiegli1"], ["https://tec.openplanner.team/stops/Lfhrogn1", "https://tec.openplanner.team/stops/Lfhrogn2"], ["https://tec.openplanner.team/stops/N505afb", "https://tec.openplanner.team/stops/N505aib"], ["https://tec.openplanner.team/stops/X911ama", "https://tec.openplanner.team/stops/X911amb"], ["https://tec.openplanner.team/stops/LAnchat1", "https://tec.openplanner.team/stops/LVnroch2"], ["https://tec.openplanner.team/stops/Bnivpeu1", "https://tec.openplanner.team/stops/Bnivpeu2"], ["https://tec.openplanner.team/stops/X601bbb", "https://tec.openplanner.team/stops/X601bqa"], ["https://tec.openplanner.team/stops/N513aua", "https://tec.openplanner.team/stops/N518acd"], ["https://tec.openplanner.team/stops/H1eo103a", "https://tec.openplanner.team/stops/H1eo104b"], ["https://tec.openplanner.team/stops/H1eu101b", "https://tec.openplanner.team/stops/H1eu105a"], ["https://tec.openplanner.team/stops/LLOberl1", "https://tec.openplanner.team/stops/LRRecdu2"], ["https://tec.openplanner.team/stops/N134aea", "https://tec.openplanner.team/stops/N134afb"], ["https://tec.openplanner.team/stops/H1do113a", "https://tec.openplanner.team/stops/H1do124a"], ["https://tec.openplanner.team/stops/NL76aoa", "https://tec.openplanner.team/stops/NL76apb"], ["https://tec.openplanner.team/stops/LFHjamo2", "https://tec.openplanner.team/stops/LFHsucr2"], ["https://tec.openplanner.team/stops/Ccu6bra5", "https://tec.openplanner.team/stops/Ccutrav1"], ["https://tec.openplanner.team/stops/X261aca", "https://tec.openplanner.team/stops/X261ada"], ["https://tec.openplanner.team/stops/Bjodcoi1", "https://tec.openplanner.team/stops/Bjodtpo1"], ["https://tec.openplanner.team/stops/LnN02--1", "https://tec.openplanner.team/stops/LnN02--2"], ["https://tec.openplanner.team/stops/Bohnmon1", "https://tec.openplanner.team/stops/Bohnpla2"], ["https://tec.openplanner.team/stops/H1bl107a", "https://tec.openplanner.team/stops/H1pd143a"], ["https://tec.openplanner.team/stops/H1ms265a", "https://tec.openplanner.team/stops/H1ms272c"], ["https://tec.openplanner.team/stops/Brsgm302", "https://tec.openplanner.team/stops/Bwatcha1"], ["https://tec.openplanner.team/stops/Bjodath1", "https://tec.openplanner.team/stops/NR10aba"], ["https://tec.openplanner.team/stops/Lmovand2", "https://tec.openplanner.team/stops/Lmovand4"], ["https://tec.openplanner.team/stops/LHUcomp1", "https://tec.openplanner.team/stops/LHUcomp2"], ["https://tec.openplanner.team/stops/LCxeg--2", "https://tec.openplanner.team/stops/LCxhame2"], ["https://tec.openplanner.team/stops/Cauglac1", "https://tec.openplanner.team/stops/N530aca"], ["https://tec.openplanner.team/stops/Cwfaldi1", "https://tec.openplanner.team/stops/Cwfghis2"], ["https://tec.openplanner.team/stops/LBbbac-2", "https://tec.openplanner.team/stops/LTPcamp2"], ["https://tec.openplanner.team/stops/X801bza", "https://tec.openplanner.team/stops/X801cba"], ["https://tec.openplanner.team/stops/N536aab", "https://tec.openplanner.team/stops/N536apa"], ["https://tec.openplanner.team/stops/N553ajb", "https://tec.openplanner.team/stops/N553aoa"], ["https://tec.openplanner.team/stops/Ccybouc3", "https://tec.openplanner.team/stops/Ccygara1"], ["https://tec.openplanner.team/stops/H3so171a", "https://tec.openplanner.team/stops/H3so174a"], ["https://tec.openplanner.team/stops/LkRrauw1", "https://tec.openplanner.team/stops/LrOkirc2"], ["https://tec.openplanner.team/stops/Bllnmet1", "https://tec.openplanner.team/stops/Bllnpaf1"], ["https://tec.openplanner.team/stops/X754afb", "https://tec.openplanner.team/stops/X754ana"], ["https://tec.openplanner.team/stops/Lrcprin6", "https://tec.openplanner.team/stops/Lrcvinc1"], ["https://tec.openplanner.team/stops/Llaflot2", "https://tec.openplanner.team/stops/LXhcite1"], ["https://tec.openplanner.team/stops/Lalmitt1", "https://tec.openplanner.team/stops/LXhjupr3"], ["https://tec.openplanner.team/stops/H1bu137b", "https://tec.openplanner.team/stops/H1bu138a"], ["https://tec.openplanner.team/stops/X949ajb", "https://tec.openplanner.team/stops/X949aka"], ["https://tec.openplanner.team/stops/Lhubouq1", "https://tec.openplanner.team/stops/Lhubouq2"], ["https://tec.openplanner.team/stops/N244ada", "https://tec.openplanner.team/stops/N244aob"], ["https://tec.openplanner.team/stops/X818apa", "https://tec.openplanner.team/stops/X820acb"], ["https://tec.openplanner.team/stops/X911ara", "https://tec.openplanner.team/stops/X911asb"], ["https://tec.openplanner.team/stops/Bmonbri2", "https://tec.openplanner.team/stops/Bnivsho2"], ["https://tec.openplanner.team/stops/Lhutill1", "https://tec.openplanner.team/stops/Lvehauz2"], ["https://tec.openplanner.team/stops/Boffegl2", "https://tec.openplanner.team/stops/NR27abb"], ["https://tec.openplanner.team/stops/X822aea", "https://tec.openplanner.team/stops/X822aeb"], ["https://tec.openplanner.team/stops/X660aaa", "https://tec.openplanner.team/stops/X661akb"], ["https://tec.openplanner.team/stops/H2mo125b", "https://tec.openplanner.team/stops/H2mo138b"], ["https://tec.openplanner.team/stops/Lbrrobe1", "https://tec.openplanner.team/stops/Lbrrobe3"], ["https://tec.openplanner.team/stops/X925aga", "https://tec.openplanner.team/stops/X925ahb"], ["https://tec.openplanner.team/stops/H5rx103b", "https://tec.openplanner.team/stops/H5rx110b"], ["https://tec.openplanner.team/stops/H3th134a", "https://tec.openplanner.team/stops/H3th134b"], ["https://tec.openplanner.team/stops/X396adb", "https://tec.openplanner.team/stops/X396aeb"], ["https://tec.openplanner.team/stops/LoEauto2", "https://tec.openplanner.team/stops/LrDhund1"], ["https://tec.openplanner.team/stops/LmIzent1", "https://tec.openplanner.team/stops/LmIzent2"], ["https://tec.openplanner.team/stops/H4wg122a", "https://tec.openplanner.team/stops/H4wg122b"], ["https://tec.openplanner.team/stops/H2ep145b", "https://tec.openplanner.team/stops/H2re168b"], ["https://tec.openplanner.team/stops/Llmvill2", "https://tec.openplanner.team/stops/Lprcite1"], ["https://tec.openplanner.team/stops/X608aia", "https://tec.openplanner.team/stops/X627aab"], ["https://tec.openplanner.team/stops/Lsecris3", "https://tec.openplanner.team/stops/Lseegva1"], ["https://tec.openplanner.team/stops/Lmlbaro1", "https://tec.openplanner.team/stops/Lmlpech1"], ["https://tec.openplanner.team/stops/LaM266-1", "https://tec.openplanner.team/stops/LaMschw1"], ["https://tec.openplanner.team/stops/LGLcour4", "https://tec.openplanner.team/stops/LGLspor1"], ["https://tec.openplanner.team/stops/H4ep130b", "https://tec.openplanner.team/stops/H4la197a"], ["https://tec.openplanner.team/stops/N509aka", "https://tec.openplanner.team/stops/N509akb"], ["https://tec.openplanner.team/stops/X768ada", "https://tec.openplanner.team/stops/X768aeb"], ["https://tec.openplanner.team/stops/H4ty272a", "https://tec.openplanner.team/stops/H4ty344b"], ["https://tec.openplanner.team/stops/H1gy111a", "https://tec.openplanner.team/stops/H1le127a"], ["https://tec.openplanner.team/stops/Lmolama1", "https://tec.openplanner.team/stops/Lmolama2"], ["https://tec.openplanner.team/stops/LhRkirc1", "https://tec.openplanner.team/stops/LsCkirc1"], ["https://tec.openplanner.team/stops/X775ala", "https://tec.openplanner.team/stops/X775ama"], ["https://tec.openplanner.team/stops/X723ahb", "https://tec.openplanner.team/stops/X723aib"], ["https://tec.openplanner.team/stops/X601aab", "https://tec.openplanner.team/stops/X601bga"], ["https://tec.openplanner.team/stops/Cjugend4", "https://tec.openplanner.team/stops/Cjumall2"], ["https://tec.openplanner.team/stops/Cgxprad4", "https://tec.openplanner.team/stops/Cmoecol2"], ["https://tec.openplanner.team/stops/Bchacen2", "https://tec.openplanner.team/stops/Bcrnnca2"], ["https://tec.openplanner.team/stops/X999ajb", "https://tec.openplanner.team/stops/X999aub"], ["https://tec.openplanner.team/stops/H4tp146b", "https://tec.openplanner.team/stops/H4wp148a"], ["https://tec.openplanner.team/stops/N134aja", "https://tec.openplanner.team/stops/N134ajb"], ["https://tec.openplanner.team/stops/Cgyrdid1", "https://tec.openplanner.team/stops/Clojone1"], ["https://tec.openplanner.team/stops/H1bx105a", "https://tec.openplanner.team/stops/H1bx106a"], ["https://tec.openplanner.team/stops/H5at119a", "https://tec.openplanner.team/stops/H5at139a"], ["https://tec.openplanner.team/stops/LrAiter1", "https://tec.openplanner.team/stops/LrAiter2"], ["https://tec.openplanner.team/stops/LeUhook2", "https://tec.openplanner.team/stops/LeUmoor1"], ["https://tec.openplanner.team/stops/H1fr107a", "https://tec.openplanner.team/stops/H1fr107b"], ["https://tec.openplanner.team/stops/Ccogrha2", "https://tec.openplanner.team/stops/Ccoh1212"], ["https://tec.openplanner.team/stops/H4mx114a", "https://tec.openplanner.team/stops/H4mx120a"], ["https://tec.openplanner.team/stops/Livroch1", "https://tec.openplanner.team/stops/LRachen2"], ["https://tec.openplanner.team/stops/Lhrmare3", "https://tec.openplanner.team/stops/Llgchan2"], ["https://tec.openplanner.team/stops/Bohnhan1", "https://tec.openplanner.team/stops/Bohnhan2"], ["https://tec.openplanner.team/stops/N518aaa", "https://tec.openplanner.team/stops/N518aba"], ["https://tec.openplanner.team/stops/Bgoegma1", "https://tec.openplanner.team/stops/Bgoegma2"], ["https://tec.openplanner.team/stops/NC12aaa", "https://tec.openplanner.team/stops/NC12aab"], ["https://tec.openplanner.team/stops/LSeaque2", "https://tec.openplanner.team/stops/LSeaque3"], ["https://tec.openplanner.team/stops/N213aaa", "https://tec.openplanner.team/stops/N348adb"], ["https://tec.openplanner.team/stops/LBEtrix1", "https://tec.openplanner.team/stops/LBEtrix2"], ["https://tec.openplanner.team/stops/X609aaa", "https://tec.openplanner.team/stops/X627aca"], ["https://tec.openplanner.team/stops/LMipoti1", "https://tec.openplanner.team/stops/LMipoti2"], ["https://tec.openplanner.team/stops/N509bea", "https://tec.openplanner.team/stops/N509beb"], ["https://tec.openplanner.team/stops/N543cbb", "https://tec.openplanner.team/stops/N543cca"], ["https://tec.openplanner.team/stops/N229aaa", "https://tec.openplanner.team/stops/N229afb"], ["https://tec.openplanner.team/stops/H4ht173a", "https://tec.openplanner.team/stops/H4te253b"], ["https://tec.openplanner.team/stops/Cgzclef2", "https://tec.openplanner.team/stops/Cgzmarb1"], ["https://tec.openplanner.team/stops/N109aca", "https://tec.openplanner.team/stops/N109aia"], ["https://tec.openplanner.team/stops/H1sp356b", "https://tec.openplanner.team/stops/H1ss352a"], ["https://tec.openplanner.team/stops/H4ta116b", "https://tec.openplanner.team/stops/H4ta119a"], ["https://tec.openplanner.team/stops/Lsnecco3", "https://tec.openplanner.team/stops/Lsnpaqu2"], ["https://tec.openplanner.team/stops/LLrhaut4", "https://tec.openplanner.team/stops/LREhaut2"], ["https://tec.openplanner.team/stops/Bhevcur1", "https://tec.openplanner.team/stops/Bhvltol2"], ["https://tec.openplanner.team/stops/H1ba104a", "https://tec.openplanner.team/stops/H1ba119b"], ["https://tec.openplanner.team/stops/Cbupla2", "https://tec.openplanner.team/stops/Cfnsenz1"], ["https://tec.openplanner.team/stops/Bhalpar2", "https://tec.openplanner.team/stops/Bhalpar3"], ["https://tec.openplanner.team/stops/LVSeg--1", "https://tec.openplanner.team/stops/LVSeg--2"], ["https://tec.openplanner.team/stops/X758aga", "https://tec.openplanner.team/stops/X758agb"], ["https://tec.openplanner.team/stops/H1vb142a", "https://tec.openplanner.team/stops/H1vb142b"], ["https://tec.openplanner.team/stops/N528ada", "https://tec.openplanner.team/stops/N528adb"], ["https://tec.openplanner.team/stops/Cctsncb1", "https://tec.openplanner.team/stops/Cctsncb2"], ["https://tec.openplanner.team/stops/X750aqa", "https://tec.openplanner.team/stops/X750ara"], ["https://tec.openplanner.team/stops/X609aqa", "https://tec.openplanner.team/stops/X609aqb"], ["https://tec.openplanner.team/stops/Brsgepr1", "https://tec.openplanner.team/stops/Brsggol2"], ["https://tec.openplanner.team/stops/H4er124a", "https://tec.openplanner.team/stops/H4er124b"], ["https://tec.openplanner.team/stops/X812axa", "https://tec.openplanner.team/stops/X812aya"], ["https://tec.openplanner.team/stops/Buccpes1", "https://tec.openplanner.team/stops/Buccpes2"], ["https://tec.openplanner.team/stops/N351akc", "https://tec.openplanner.team/stops/N351akd"], ["https://tec.openplanner.team/stops/X625aca", "https://tec.openplanner.team/stops/X625aeb"], ["https://tec.openplanner.team/stops/X801awa", "https://tec.openplanner.team/stops/X801awb"], ["https://tec.openplanner.team/stops/N534brb", "https://tec.openplanner.team/stops/N534bta"], ["https://tec.openplanner.team/stops/H4lz158b", "https://tec.openplanner.team/stops/H4lz160a"], ["https://tec.openplanner.team/stops/Cchalou2", "https://tec.openplanner.team/stops/Cgyrdid1"], ["https://tec.openplanner.team/stops/N207aba", "https://tec.openplanner.team/stops/X210azb"], ["https://tec.openplanner.team/stops/LNCecdo1", "https://tec.openplanner.team/stops/LNCgene2"], ["https://tec.openplanner.team/stops/Ldifoye1", "https://tec.openplanner.team/stops/Lprthie1"], ["https://tec.openplanner.team/stops/H2mo120b", "https://tec.openplanner.team/stops/H2mo138b"], ["https://tec.openplanner.team/stops/Bcseeco1", "https://tec.openplanner.team/stops/Bcsegar2"], ["https://tec.openplanner.team/stops/Ccimont2", "https://tec.openplanner.team/stops/Cmtpblo1"], ["https://tec.openplanner.team/stops/H1ro133a", "https://tec.openplanner.team/stops/H4lg100a"], ["https://tec.openplanner.team/stops/Cgzlera1", "https://tec.openplanner.team/stops/Cmygrbr1"], ["https://tec.openplanner.team/stops/N203aea", "https://tec.openplanner.team/stops/N203aeb"], ["https://tec.openplanner.team/stops/N505adb", "https://tec.openplanner.team/stops/N505anb"], ["https://tec.openplanner.team/stops/N132acb", "https://tec.openplanner.team/stops/N135ata"], ["https://tec.openplanner.team/stops/LTEcamp1", "https://tec.openplanner.team/stops/LTEkl121"], ["https://tec.openplanner.team/stops/X359aia", "https://tec.openplanner.team/stops/X359ala"], ["https://tec.openplanner.team/stops/Bnivlai2", "https://tec.openplanner.team/stops/Bnivpve2"], ["https://tec.openplanner.team/stops/Cflathe2", "https://tec.openplanner.team/stops/Cflfaub1"], ["https://tec.openplanner.team/stops/Llglimb1", "https://tec.openplanner.team/stops/Llglimb2"], ["https://tec.openplanner.team/stops/H2hg267a", "https://tec.openplanner.team/stops/H2ll198b"], ["https://tec.openplanner.team/stops/LsVhunn1", "https://tec.openplanner.team/stops/LsVhunn2"], ["https://tec.openplanner.team/stops/N536aoa", "https://tec.openplanner.team/stops/N536apb"], ["https://tec.openplanner.team/stops/LeYberl1", "https://tec.openplanner.team/stops/LeYraaf2"], ["https://tec.openplanner.team/stops/N308anb", "https://tec.openplanner.team/stops/N312abb"], ["https://tec.openplanner.team/stops/N539bgb", "https://tec.openplanner.team/stops/N540aka"], ["https://tec.openplanner.team/stops/Clbchlo2", "https://tec.openplanner.team/stops/Cthrlef1"], ["https://tec.openplanner.team/stops/H5gr135a", "https://tec.openplanner.team/stops/H5qu143b"], ["https://tec.openplanner.team/stops/N315aaa", "https://tec.openplanner.team/stops/X318aca"], ["https://tec.openplanner.team/stops/LSPec--2", "https://tec.openplanner.team/stops/LSPther2"], ["https://tec.openplanner.team/stops/Loubour1", "https://tec.openplanner.team/stops/Louhauf1"], ["https://tec.openplanner.team/stops/X992adb", "https://tec.openplanner.team/stops/X992akb"], ["https://tec.openplanner.team/stops/N506bla", "https://tec.openplanner.team/stops/N512axa"], ["https://tec.openplanner.team/stops/LaAbush*", "https://tec.openplanner.team/stops/LrTpost2"], ["https://tec.openplanner.team/stops/X720aab", "https://tec.openplanner.team/stops/X721ara"], ["https://tec.openplanner.team/stops/Bitrcan1", "https://tec.openplanner.team/stops/Bvirgar2"], ["https://tec.openplanner.team/stops/Bnivbau2", "https://tec.openplanner.team/stops/Bniveco1"], ["https://tec.openplanner.team/stops/H4mx116b", "https://tec.openplanner.team/stops/H4po129b"], ["https://tec.openplanner.team/stops/H4tu172a", "https://tec.openplanner.team/stops/H4tu172b"], ["https://tec.openplanner.team/stops/LCUmonu1", "https://tec.openplanner.team/stops/LCUmonu2"], ["https://tec.openplanner.team/stops/Cjumest1", "https://tec.openplanner.team/stops/Cjumest2"], ["https://tec.openplanner.team/stops/X576ahb", "https://tec.openplanner.team/stops/X576aib"], ["https://tec.openplanner.team/stops/X784ajb", "https://tec.openplanner.team/stops/X784aka"], ["https://tec.openplanner.team/stops/Cctchea2", "https://tec.openplanner.team/stops/NC11akb"], ["https://tec.openplanner.team/stops/Cgyruis1", "https://tec.openplanner.team/stops/CMsolei2"], ["https://tec.openplanner.team/stops/Bbstbxl2", "https://tec.openplanner.team/stops/Cgnbast2"], ["https://tec.openplanner.team/stops/X949ada", "https://tec.openplanner.team/stops/X949ala"], ["https://tec.openplanner.team/stops/H4ty285b", "https://tec.openplanner.team/stops/H4ty287a"], ["https://tec.openplanner.team/stops/X784aca", "https://tec.openplanner.team/stops/X784ala"], ["https://tec.openplanner.team/stops/Lheloti2", "https://tec.openplanner.team/stops/Lhr4ave2"], ["https://tec.openplanner.team/stops/H2hp119c", "https://tec.openplanner.team/stops/H2hp119d"], ["https://tec.openplanner.team/stops/LNCmele1", "https://tec.openplanner.team/stops/LNCpi331"], ["https://tec.openplanner.team/stops/H2bh109b", "https://tec.openplanner.team/stops/H2lc172a"], ["https://tec.openplanner.team/stops/Crodrai2", "https://tec.openplanner.team/stops/Crolema2"], ["https://tec.openplanner.team/stops/LBNhegg1", "https://tec.openplanner.team/stops/LBNplei1"], ["https://tec.openplanner.team/stops/H4ht172b", "https://tec.openplanner.team/stops/H4la198b"], ["https://tec.openplanner.team/stops/LlgOPER2", "https://tec.openplanner.team/stops/LlgOPER4"], ["https://tec.openplanner.team/stops/Cflpost1", "https://tec.openplanner.team/stops/Cwgrabi2"], ["https://tec.openplanner.team/stops/Bgnvpap1", "https://tec.openplanner.team/stops/Brixpro2"], ["https://tec.openplanner.team/stops/X820aea", "https://tec.openplanner.team/stops/X820amb"], ["https://tec.openplanner.team/stops/LeLdorf1", "https://tec.openplanner.team/stops/LeLherz1"], ["https://tec.openplanner.team/stops/N573aca", "https://tec.openplanner.team/stops/N573aib"], ["https://tec.openplanner.team/stops/LoUober2", "https://tec.openplanner.team/stops/LoUwelc2"], ["https://tec.openplanner.team/stops/H4ft136a", "https://tec.openplanner.team/stops/H4oq229b"], ["https://tec.openplanner.team/stops/LSZchpl1", "https://tec.openplanner.team/stops/LSZeg--1"], ["https://tec.openplanner.team/stops/LBBcamp1", "https://tec.openplanner.team/stops/LBBcamp2"], ["https://tec.openplanner.team/stops/N209aid", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/X801boa", "https://tec.openplanner.team/stops/X801caa"], ["https://tec.openplanner.team/stops/N505aba", "https://tec.openplanner.team/stops/N505abb"], ["https://tec.openplanner.team/stops/Cerrver3", "https://tec.openplanner.team/stops/Cvrhab21"], ["https://tec.openplanner.team/stops/N530aca", "https://tec.openplanner.team/stops/N530aia"], ["https://tec.openplanner.team/stops/LBRbriv2", "https://tec.openplanner.team/stops/LBRgare1"], ["https://tec.openplanner.team/stops/LESpaix1", "https://tec.openplanner.team/stops/LFNhame1"], ["https://tec.openplanner.team/stops/H4ar172b", "https://tec.openplanner.team/stops/H4ar173b"], ["https://tec.openplanner.team/stops/H4ch115b", "https://tec.openplanner.team/stops/H4ty353a"], ["https://tec.openplanner.team/stops/N229aeb", "https://tec.openplanner.team/stops/N539aya"], ["https://tec.openplanner.team/stops/Bbcogar2", "https://tec.openplanner.team/stops/Bbcogpl2"], ["https://tec.openplanner.team/stops/LLreque1", "https://tec.openplanner.team/stops/LLreque2"], ["https://tec.openplanner.team/stops/NL77aaa", "https://tec.openplanner.team/stops/NL77afa"], ["https://tec.openplanner.team/stops/N304abb", "https://tec.openplanner.team/stops/N305aab"], ["https://tec.openplanner.team/stops/X649aba", "https://tec.openplanner.team/stops/X649adb"], ["https://tec.openplanner.team/stops/Bbstcha1", "https://tec.openplanner.team/stops/Bbstcha2"], ["https://tec.openplanner.team/stops/X602aka", "https://tec.openplanner.team/stops/X602ala"], ["https://tec.openplanner.team/stops/LSoeg--1", "https://tec.openplanner.team/stops/LSorobe1"], ["https://tec.openplanner.team/stops/N141aba", "https://tec.openplanner.team/stops/N141ada"], ["https://tec.openplanner.team/stops/H1gh173a", "https://tec.openplanner.team/stops/H1ms936a"], ["https://tec.openplanner.team/stops/LmIkirc1", "https://tec.openplanner.team/stops/LmIvale1"], ["https://tec.openplanner.team/stops/X640asa", "https://tec.openplanner.team/stops/X640atb"], ["https://tec.openplanner.team/stops/LMXaven2", "https://tec.openplanner.team/stops/LMXroye1"], ["https://tec.openplanner.team/stops/X808aib", "https://tec.openplanner.team/stops/X808aka"], ["https://tec.openplanner.team/stops/N213aaa", "https://tec.openplanner.team/stops/N213aab"], ["https://tec.openplanner.team/stops/H1lb137b", "https://tec.openplanner.team/stops/H1pa111b"], ["https://tec.openplanner.team/stops/N501cra", "https://tec.openplanner.team/stops/N501crb"], ["https://tec.openplanner.team/stops/X812asa", "https://tec.openplanner.team/stops/X812aua"], ["https://tec.openplanner.team/stops/X773aca", "https://tec.openplanner.team/stops/X773acb"], ["https://tec.openplanner.team/stops/Cchoues2", "https://tec.openplanner.team/stops/Cchoues3"], ["https://tec.openplanner.team/stops/Cchparc2", "https://tec.openplanner.team/stops/Cchparc3"], ["https://tec.openplanner.team/stops/X616adb", "https://tec.openplanner.team/stops/X624aba"], ["https://tec.openplanner.team/stops/N511aea", "https://tec.openplanner.team/stops/N511ajb"], ["https://tec.openplanner.team/stops/X994afa", "https://tec.openplanner.team/stops/X994aia"], ["https://tec.openplanner.team/stops/N355aca", "https://tec.openplanner.team/stops/N874aab"], ["https://tec.openplanner.team/stops/H1hn205b", "https://tec.openplanner.team/stops/H1hn208b"], ["https://tec.openplanner.team/stops/Lhrmine1", "https://tec.openplanner.team/stops/Lhrpepi1"], ["https://tec.openplanner.team/stops/Bbstchv2", "https://tec.openplanner.team/stops/Btanpla1"], ["https://tec.openplanner.team/stops/X989aeb", "https://tec.openplanner.team/stops/X994ada"], ["https://tec.openplanner.team/stops/LLOnand1", "https://tec.openplanner.team/stops/LTaeg--1"], ["https://tec.openplanner.team/stops/H4va234a", "https://tec.openplanner.team/stops/H4va234b"], ["https://tec.openplanner.team/stops/Bjodrdp2", "https://tec.openplanner.team/stops/Bjodsje2"], ["https://tec.openplanner.team/stops/LGLchap2", "https://tec.openplanner.team/stops/LGLobor1"], ["https://tec.openplanner.team/stops/Lveensi2", "https://tec.openplanner.team/stops/Lverdep2"], ["https://tec.openplanner.team/stops/LBItnt-*", "https://tec.openplanner.team/stops/LVevill2"], ["https://tec.openplanner.team/stops/N501cwb", "https://tec.openplanner.team/stops/N501cxb"], ["https://tec.openplanner.team/stops/H4mx116a", "https://tec.openplanner.team/stops/H4mx120a"], ["https://tec.openplanner.team/stops/Brsrabe2", "https://tec.openplanner.team/stops/Brsrpmo1"], ["https://tec.openplanner.team/stops/Bhmmtou2", "https://tec.openplanner.team/stops/Btlgbro1"], ["https://tec.openplanner.team/stops/Bottbou1", "https://tec.openplanner.team/stops/Bottppa2"], ["https://tec.openplanner.team/stops/LROandr1", "https://tec.openplanner.team/stops/LSoprom1"], ["https://tec.openplanner.team/stops/X639ada", "https://tec.openplanner.team/stops/X639adb"], ["https://tec.openplanner.team/stops/N550ala", "https://tec.openplanner.team/stops/N565ada"], ["https://tec.openplanner.team/stops/X754acb", "https://tec.openplanner.team/stops/X754ada"], ["https://tec.openplanner.team/stops/Ccyga05", "https://tec.openplanner.team/stops/Ccyga1"], ["https://tec.openplanner.team/stops/LhGknip2", "https://tec.openplanner.team/stops/LhGlang1"], ["https://tec.openplanner.team/stops/LScchpl1", "https://tec.openplanner.team/stops/LScdina1"], ["https://tec.openplanner.team/stops/N531asb", "https://tec.openplanner.team/stops/N561aic"], ["https://tec.openplanner.team/stops/LLrfagn2", "https://tec.openplanner.team/stops/LLrpape2"], ["https://tec.openplanner.team/stops/N212adb", "https://tec.openplanner.team/stops/N213abb"], ["https://tec.openplanner.team/stops/Cnaplha1", "https://tec.openplanner.team/stops/Cnathib2"], ["https://tec.openplanner.team/stops/H1si156d", "https://tec.openplanner.team/stops/H4bo179b"], ["https://tec.openplanner.team/stops/Bgligra1", "https://tec.openplanner.team/stops/Bmalwvi2"], ["https://tec.openplanner.team/stops/H4ka178b", "https://tec.openplanner.team/stops/H4mt218a"], ["https://tec.openplanner.team/stops/H5rx100a", "https://tec.openplanner.team/stops/H5rx122b"], ["https://tec.openplanner.team/stops/LBspiet2", "https://tec.openplanner.team/stops/NL72aba"], ["https://tec.openplanner.team/stops/Cbetrie1", "https://tec.openplanner.team/stops/N161abd"], ["https://tec.openplanner.team/stops/X921ana", "https://tec.openplanner.team/stops/X922ahb"], ["https://tec.openplanner.team/stops/LRRchea5", "https://tec.openplanner.team/stops/LRRrimi1"], ["https://tec.openplanner.team/stops/X609aga", "https://tec.openplanner.team/stops/X609aob"], ["https://tec.openplanner.team/stops/NL78aca", "https://tec.openplanner.team/stops/NL78acb"], ["https://tec.openplanner.team/stops/X982caa", "https://tec.openplanner.team/stops/X982cea"], ["https://tec.openplanner.team/stops/Llgbour2", "https://tec.openplanner.team/stops/Lscbour1"], ["https://tec.openplanner.team/stops/Brixcme2", "https://tec.openplanner.team/stops/Brixpje1"], ["https://tec.openplanner.team/stops/Lstphys2", "https://tec.openplanner.team/stops/Lstpoly1"], ["https://tec.openplanner.team/stops/LSNgerm1", "https://tec.openplanner.team/stops/LSNmoul2"], ["https://tec.openplanner.team/stops/Lcceg--1", "https://tec.openplanner.team/stops/LRarami1"], ["https://tec.openplanner.team/stops/LMOf35-1", "https://tec.openplanner.team/stops/LNveg--2"], ["https://tec.openplanner.team/stops/H1vb141a", "https://tec.openplanner.team/stops/H1vb148b"], ["https://tec.openplanner.team/stops/H1bu140b", "https://tec.openplanner.team/stops/H1bu143b"], ["https://tec.openplanner.team/stops/H1wi148a", "https://tec.openplanner.team/stops/H1wi153a"], ["https://tec.openplanner.team/stops/H4ty291a", "https://tec.openplanner.team/stops/H4ty291b"], ["https://tec.openplanner.team/stops/N521aib", "https://tec.openplanner.team/stops/N521aka"], ["https://tec.openplanner.team/stops/LHGbeur1", "https://tec.openplanner.team/stops/LHGtron2"], ["https://tec.openplanner.team/stops/N539bea", "https://tec.openplanner.team/stops/N539bfa"], ["https://tec.openplanner.team/stops/LRUhama1", "https://tec.openplanner.team/stops/LTowijk1"], ["https://tec.openplanner.team/stops/Cwfmoul1", "https://tec.openplanner.team/stops/Cwfmoul2"], ["https://tec.openplanner.team/stops/Lhr1ave2", "https://tec.openplanner.team/stops/Lhrhosp1"], ["https://tec.openplanner.team/stops/LSBdelc2", "https://tec.openplanner.team/stops/LSGfoua2"], ["https://tec.openplanner.team/stops/N351ata", "https://tec.openplanner.team/stops/N390ama"], ["https://tec.openplanner.team/stops/H4mo140a", "https://tec.openplanner.team/stops/H4mo165a"], ["https://tec.openplanner.team/stops/LWEmerm1", "https://tec.openplanner.team/stops/LWEmerm2"], ["https://tec.openplanner.team/stops/H2ll191a", "https://tec.openplanner.team/stops/H2ll193b"], ["https://tec.openplanner.team/stops/N101aka", "https://tec.openplanner.team/stops/N101aqa"], ["https://tec.openplanner.team/stops/LGAbois2", "https://tec.openplanner.team/stops/LWAaxhe2"], ["https://tec.openplanner.team/stops/Lligare2", "https://tec.openplanner.team/stops/Llithon1"], ["https://tec.openplanner.team/stops/H4mo132a", "https://tec.openplanner.team/stops/H4mo157b"], ["https://tec.openplanner.team/stops/N571aga", "https://tec.openplanner.team/stops/N571agb"], ["https://tec.openplanner.team/stops/Lceegli*", "https://tec.openplanner.team/stops/Lceludg1"], ["https://tec.openplanner.team/stops/X601cca", "https://tec.openplanner.team/stops/X601ccc"], ["https://tec.openplanner.team/stops/LVlleme3", "https://tec.openplanner.team/stops/LVlleme4"], ["https://tec.openplanner.team/stops/N534bog", "https://tec.openplanner.team/stops/N534boh"], ["https://tec.openplanner.team/stops/N232aqb", "https://tec.openplanner.team/stops/N232baa"], ["https://tec.openplanner.team/stops/H4be109a", "https://tec.openplanner.team/stops/H4be109b"], ["https://tec.openplanner.team/stops/LVIjacq2", "https://tec.openplanner.team/stops/LVItroi*"], ["https://tec.openplanner.team/stops/Cctbois2", "https://tec.openplanner.team/stops/Cctlimi2"], ["https://tec.openplanner.team/stops/Cbfbies2", "https://tec.openplanner.team/stops/Cbfpoti1"], ["https://tec.openplanner.team/stops/Lpocent1", "https://tec.openplanner.team/stops/Lpocent2"], ["https://tec.openplanner.team/stops/Llgbour2", "https://tec.openplanner.team/stops/Llgcbat1"], ["https://tec.openplanner.team/stops/LTaabba2", "https://tec.openplanner.team/stops/LTatult4"], ["https://tec.openplanner.team/stops/X620aab", "https://tec.openplanner.team/stops/X620ada"], ["https://tec.openplanner.team/stops/Bbcogar1", "https://tec.openplanner.team/stops/H3br110a"], ["https://tec.openplanner.team/stops/N351ala", "https://tec.openplanner.team/stops/N351avb"], ["https://tec.openplanner.team/stops/N390aca", "https://tec.openplanner.team/stops/N390adb"], ["https://tec.openplanner.team/stops/X889ada", "https://tec.openplanner.team/stops/X889adb"], ["https://tec.openplanner.team/stops/X937adb", "https://tec.openplanner.team/stops/X937aeb"], ["https://tec.openplanner.team/stops/H4ft133b", "https://tec.openplanner.team/stops/H4ta118a"], ["https://tec.openplanner.team/stops/Bmargve1", "https://tec.openplanner.team/stops/Bmarmpr2"], ["https://tec.openplanner.team/stops/X919ana", "https://tec.openplanner.team/stops/X919anb"], ["https://tec.openplanner.team/stops/H1cu110a", "https://tec.openplanner.team/stops/H1fr114b"], ["https://tec.openplanner.team/stops/X889aca", "https://tec.openplanner.team/stops/X889acb"], ["https://tec.openplanner.team/stops/X750aya", "https://tec.openplanner.team/stops/X750azb"], ["https://tec.openplanner.team/stops/N501hra", "https://tec.openplanner.team/stops/N501ioa"], ["https://tec.openplanner.team/stops/H1cu123a", "https://tec.openplanner.team/stops/H1cu125b"], ["https://tec.openplanner.team/stops/Cglbras2", "https://tec.openplanner.team/stops/Cglfrom2"], ["https://tec.openplanner.team/stops/X781aaa", "https://tec.openplanner.team/stops/X781aab"], ["https://tec.openplanner.team/stops/H1ls109a", "https://tec.openplanner.team/stops/H1me118a"], ["https://tec.openplanner.team/stops/N508abb", "https://tec.openplanner.team/stops/N508acb"], ["https://tec.openplanner.team/stops/Cgregli2", "https://tec.openplanner.team/stops/NC14aia"], ["https://tec.openplanner.team/stops/Cmlcons1", "https://tec.openplanner.team/stops/Cmlcons2"], ["https://tec.openplanner.team/stops/LSZheid2", "https://tec.openplanner.team/stops/LSZpont1"], ["https://tec.openplanner.team/stops/Bhmmmon2", "https://tec.openplanner.team/stops/Bhmmtou1"], ["https://tec.openplanner.team/stops/N562akb", "https://tec.openplanner.team/stops/N562bma"], ["https://tec.openplanner.team/stops/H1mb127a", "https://tec.openplanner.team/stops/H1mb136a"], ["https://tec.openplanner.team/stops/X548aaa", "https://tec.openplanner.team/stops/X548afa"], ["https://tec.openplanner.team/stops/X390aka", "https://tec.openplanner.team/stops/X998aaa"], ["https://tec.openplanner.team/stops/Bptrmar2", "https://tec.openplanner.team/stops/Bptrpla1"], ["https://tec.openplanner.team/stops/N141aeb", "https://tec.openplanner.team/stops/N141afb"], ["https://tec.openplanner.team/stops/LBSchar3", "https://tec.openplanner.team/stops/LBStec-2"], ["https://tec.openplanner.team/stops/H1ms296c", "https://tec.openplanner.team/stops/H1ms903a"], ["https://tec.openplanner.team/stops/N515alb", "https://tec.openplanner.team/stops/N515asa"], ["https://tec.openplanner.team/stops/NL76aga", "https://tec.openplanner.team/stops/NL77abb"], ["https://tec.openplanner.team/stops/LHDpota2", "https://tec.openplanner.team/stops/LLmetat2"], ["https://tec.openplanner.team/stops/X892aaa", "https://tec.openplanner.team/stops/X892ada"], ["https://tec.openplanner.team/stops/H1ms272a", "https://tec.openplanner.team/stops/H1ss349a"], ["https://tec.openplanner.team/stops/X912afa", "https://tec.openplanner.team/stops/X912afb"], ["https://tec.openplanner.team/stops/H4ty338a", "https://tec.openplanner.team/stops/H4ty338b"], ["https://tec.openplanner.team/stops/H4hu117a", "https://tec.openplanner.team/stops/H4hu117b"], ["https://tec.openplanner.team/stops/LATcorp1", "https://tec.openplanner.team/stops/LHUsaul2"], ["https://tec.openplanner.team/stops/N553aja", "https://tec.openplanner.team/stops/N553aoa"], ["https://tec.openplanner.team/stops/Bhlvgar2", "https://tec.openplanner.team/stops/Bhlvvil1"], ["https://tec.openplanner.team/stops/Lvegc--5", "https://tec.openplanner.team/stops/Lveherl1"], ["https://tec.openplanner.team/stops/H2ha132a", "https://tec.openplanner.team/stops/H2ha139a"], ["https://tec.openplanner.team/stops/Cmaduna2", "https://tec.openplanner.team/stops/Cmmptno1"], ["https://tec.openplanner.team/stops/Cjulamb1", "https://tec.openplanner.team/stops/Cjulamb2"], ["https://tec.openplanner.team/stops/Lsmecol2", "https://tec.openplanner.team/stops/Lsmnico2"], ["https://tec.openplanner.team/stops/Brsrabe2", "https://tec.openplanner.team/stops/Brsrmon3"], ["https://tec.openplanner.team/stops/X358aeb", "https://tec.openplanner.team/stops/X994adb"], ["https://tec.openplanner.team/stops/LMici091", "https://tec.openplanner.team/stops/LMici092"], ["https://tec.openplanner.team/stops/H4bs110b", "https://tec.openplanner.team/stops/H4ca122b"], ["https://tec.openplanner.team/stops/X908aja", "https://tec.openplanner.team/stops/X908ana"], ["https://tec.openplanner.team/stops/X660abb", "https://tec.openplanner.team/stops/X660aea"], ["https://tec.openplanner.team/stops/LCvmonu1", "https://tec.openplanner.team/stops/LHXfont2"], ["https://tec.openplanner.team/stops/Bwatceg1", "https://tec.openplanner.team/stops/Bwatcli2"], ["https://tec.openplanner.team/stops/H4gu110b", "https://tec.openplanner.team/stops/H4gu112a"], ["https://tec.openplanner.team/stops/LFyWarc1", "https://tec.openplanner.team/stops/LWaruth1"], ["https://tec.openplanner.team/stops/LMAalli1", "https://tec.openplanner.team/stops/LMAcomm1"], ["https://tec.openplanner.team/stops/LGAholl2", "https://tec.openplanner.team/stops/LHgeg--1"], ["https://tec.openplanner.team/stops/LEMec--2", "https://tec.openplanner.team/stops/LEMeg--2"], ["https://tec.openplanner.team/stops/N501kwb", "https://tec.openplanner.team/stops/N501lwb"], ["https://tec.openplanner.team/stops/LWAclos2", "https://tec.openplanner.team/stops/LWAmois2"], ["https://tec.openplanner.team/stops/Lalecmo1", "https://tec.openplanner.team/stops/Laltrav2"], ["https://tec.openplanner.team/stops/Bnodeco2", "https://tec.openplanner.team/stops/Bolgcsa1"], ["https://tec.openplanner.team/stops/H1at108b", "https://tec.openplanner.team/stops/H1eq115a"], ["https://tec.openplanner.team/stops/Bnivcom1", "https://tec.openplanner.team/stops/Bnivcom2"], ["https://tec.openplanner.team/stops/Bmrqpla1", "https://tec.openplanner.team/stops/H1mk115a"], ["https://tec.openplanner.team/stops/N230ada", "https://tec.openplanner.team/stops/N230aea"], ["https://tec.openplanner.team/stops/N501daa", "https://tec.openplanner.team/stops/N501deb"], ["https://tec.openplanner.team/stops/X601cwa", "https://tec.openplanner.team/stops/X626aea"], ["https://tec.openplanner.team/stops/LWarema2", "https://tec.openplanner.team/stops/LWathir2"], ["https://tec.openplanner.team/stops/LBgbaga4", "https://tec.openplanner.team/stops/LWahott2"], ["https://tec.openplanner.team/stops/H4ty273a", "https://tec.openplanner.team/stops/H4ty305d"], ["https://tec.openplanner.team/stops/Bblaall1", "https://tec.openplanner.team/stops/Bblagar8"], ["https://tec.openplanner.team/stops/N501atb", "https://tec.openplanner.team/stops/N501beb"], ["https://tec.openplanner.team/stops/Bbrycar2", "https://tec.openplanner.team/stops/Bbryvil2"], ["https://tec.openplanner.team/stops/H1gn147a", "https://tec.openplanner.team/stops/H1gq153a"], ["https://tec.openplanner.team/stops/LChxhav1", "https://tec.openplanner.team/stops/LJAgoff1"], ["https://tec.openplanner.team/stops/X624ada", "https://tec.openplanner.team/stops/X624aka"], ["https://tec.openplanner.team/stops/LmOkape1", "https://tec.openplanner.team/stops/LONcroi2"], ["https://tec.openplanner.team/stops/Cgpplac2", "https://tec.openplanner.team/stops/H2gy109b"], ["https://tec.openplanner.team/stops/N552aba", "https://tec.openplanner.team/stops/N552adb"], ["https://tec.openplanner.team/stops/Lsecroi2", "https://tec.openplanner.team/stops/Lseecol1"], ["https://tec.openplanner.team/stops/H2ec108a", "https://tec.openplanner.team/stops/H2ec108b"], ["https://tec.openplanner.team/stops/N562alc", "https://tec.openplanner.team/stops/N562bfb"], ["https://tec.openplanner.team/stops/H4lp120b", "https://tec.openplanner.team/stops/H4lp122b"], ["https://tec.openplanner.team/stops/N508afb", "https://tec.openplanner.team/stops/N516aab"], ["https://tec.openplanner.team/stops/H1ju119a", "https://tec.openplanner.team/stops/H1mj126b"], ["https://tec.openplanner.team/stops/N145aea", "https://tec.openplanner.team/stops/N153aab"], ["https://tec.openplanner.team/stops/Cfmchap2", "https://tec.openplanner.team/stops/Cfmgrmo2"], ["https://tec.openplanner.team/stops/Cmmecol1", "https://tec.openplanner.team/stops/Cmmecol2"], ["https://tec.openplanner.team/stops/X601cya", "https://tec.openplanner.team/stops/X601dcb"], ["https://tec.openplanner.team/stops/X995aaa", "https://tec.openplanner.team/stops/X995aba"], ["https://tec.openplanner.team/stops/LBAfort1", "https://tec.openplanner.team/stops/LHOgymn2"], ["https://tec.openplanner.team/stops/H4lg103b", "https://tec.openplanner.team/stops/H4rm110a"], ["https://tec.openplanner.team/stops/X921aob", "https://tec.openplanner.team/stops/X979aob"], ["https://tec.openplanner.team/stops/H1ca107b", "https://tec.openplanner.team/stops/H1ca186a"], ["https://tec.openplanner.team/stops/X661asa", "https://tec.openplanner.team/stops/X661bba"], ["https://tec.openplanner.team/stops/Lflfort*", "https://tec.openplanner.team/stops/Lflmaxi3"], ["https://tec.openplanner.team/stops/LOcgdro1", "https://tec.openplanner.team/stops/LOcgdro2"], ["https://tec.openplanner.team/stops/H1mq198b", "https://tec.openplanner.team/stops/H5ar127b"], ["https://tec.openplanner.team/stops/N501gaa", "https://tec.openplanner.team/stops/N501grg"], ["https://tec.openplanner.team/stops/Bnivbos2", "https://tec.openplanner.team/stops/Bnivmat1"], ["https://tec.openplanner.team/stops/LMIeg--1", "https://tec.openplanner.team/stops/LSOgott1"], ["https://tec.openplanner.team/stops/X801aab", "https://tec.openplanner.team/stops/X802aub"], ["https://tec.openplanner.team/stops/Bnilpco2", "https://tec.openplanner.team/stops/Bnilwal2"], ["https://tec.openplanner.team/stops/X768afb", "https://tec.openplanner.team/stops/X769apa"], ["https://tec.openplanner.team/stops/Bwatpro1", "https://tec.openplanner.team/stops/Bwatrte1"], ["https://tec.openplanner.team/stops/LPUalbe1", "https://tec.openplanner.team/stops/LPUmer-1"], ["https://tec.openplanner.team/stops/X923ajb", "https://tec.openplanner.team/stops/X923anb"], ["https://tec.openplanner.team/stops/NL74aga", "https://tec.openplanner.team/stops/NL75aba"], ["https://tec.openplanner.team/stops/LhOholz1", "https://tec.openplanner.team/stops/LhOukat1"], ["https://tec.openplanner.team/stops/X790aia", "https://tec.openplanner.team/stops/X790aja"], ["https://tec.openplanner.team/stops/LJUxhen1", "https://tec.openplanner.team/stops/LJUxhen3"], ["https://tec.openplanner.team/stops/X608ada", "https://tec.openplanner.team/stops/X608aeb"], ["https://tec.openplanner.team/stops/H1hr124b", "https://tec.openplanner.team/stops/H1hr129b"], ["https://tec.openplanner.team/stops/N562asa", "https://tec.openplanner.team/stops/N562bwb"], ["https://tec.openplanner.team/stops/Beclron2", "https://tec.openplanner.team/stops/Becltri2"], ["https://tec.openplanner.team/stops/Bosqcim1", "https://tec.openplanner.team/stops/Bosqgar2"], ["https://tec.openplanner.team/stops/Llgjenn3", "https://tec.openplanner.team/stops/Llgmass1"], ["https://tec.openplanner.team/stops/X768afa", "https://tec.openplanner.team/stops/X768ajb"], ["https://tec.openplanner.team/stops/Berneco1", "https://tec.openplanner.team/stops/Berngrt2"], ["https://tec.openplanner.team/stops/N117agb", "https://tec.openplanner.team/stops/N117ara"], ["https://tec.openplanner.team/stops/Clomari4", "https://tec.openplanner.team/stops/CMmari1"], ["https://tec.openplanner.team/stops/H4bo112b", "https://tec.openplanner.team/stops/H4bo182b"], ["https://tec.openplanner.team/stops/LWAcham1", "https://tec.openplanner.team/stops/LWAlieg1"], ["https://tec.openplanner.team/stops/LFPdeme2", "https://tec.openplanner.team/stops/LVukabi1"], ["https://tec.openplanner.team/stops/LlNlont1", "https://tec.openplanner.team/stops/LlNm%C3%BChl2"], ["https://tec.openplanner.team/stops/Cctsold1", "https://tec.openplanner.team/stops/NC11aib"], ["https://tec.openplanner.team/stops/Bhmmcsc1", "https://tec.openplanner.team/stops/Bhmmvdu2"], ["https://tec.openplanner.team/stops/Crodebr2", "https://tec.openplanner.team/stops/Crodrai1"], ["https://tec.openplanner.team/stops/N874ama", "https://tec.openplanner.team/stops/N874amc"], ["https://tec.openplanner.team/stops/LHFwaut2", "https://tec.openplanner.team/stops/LSChane2"], ["https://tec.openplanner.team/stops/X901afb", "https://tec.openplanner.team/stops/X902baa"], ["https://tec.openplanner.team/stops/Lvehv--1", "https://tec.openplanner.team/stops/Lvehv--2"], ["https://tec.openplanner.team/stops/X766aja", "https://tec.openplanner.team/stops/X766ajb"], ["https://tec.openplanner.team/stops/LrGzent1", "https://tec.openplanner.team/stops/LsEdorf2"], ["https://tec.openplanner.team/stops/N547aeb", "https://tec.openplanner.team/stops/N550ala"], ["https://tec.openplanner.team/stops/LMEwerg2", "https://tec.openplanner.team/stops/LMIterr2"], ["https://tec.openplanner.team/stops/Cstbasc1", "https://tec.openplanner.team/stops/Cstgare1"], ["https://tec.openplanner.team/stops/LGEbern1", "https://tec.openplanner.team/stops/LGEpt--1"], ["https://tec.openplanner.team/stops/N501awa", "https://tec.openplanner.team/stops/N501azb"], ["https://tec.openplanner.team/stops/N241aba", "https://tec.openplanner.team/stops/N241abb"], ["https://tec.openplanner.team/stops/N534abb", "https://tec.openplanner.team/stops/N534caa"], ["https://tec.openplanner.team/stops/N501lca", "https://tec.openplanner.team/stops/N501lcz"], ["https://tec.openplanner.team/stops/LlgPTAV2", "https://tec.openplanner.team/stops/LlgPTAV4"], ["https://tec.openplanner.team/stops/Btubga05", "https://tec.openplanner.team/stops/Btubga06"], ["https://tec.openplanner.team/stops/LOLrafh2", "https://tec.openplanner.team/stops/LSOboeu2"], ["https://tec.openplanner.team/stops/N510aca", "https://tec.openplanner.team/stops/N510acf"], ["https://tec.openplanner.team/stops/LHHecol1", "https://tec.openplanner.team/stops/LHHecol2"], ["https://tec.openplanner.team/stops/H1th181a", "https://tec.openplanner.team/stops/H3so164a"], ["https://tec.openplanner.team/stops/Btsllfp2", "https://tec.openplanner.team/stops/Btstpch1"], ["https://tec.openplanner.team/stops/H2hp118a", "https://tec.openplanner.team/stops/H2hp124b"], ["https://tec.openplanner.team/stops/LNCmada2", "https://tec.openplanner.team/stops/LNCsart1"], ["https://tec.openplanner.team/stops/Cfrtill1", "https://tec.openplanner.team/stops/Cliegli2"], ["https://tec.openplanner.team/stops/LmD163-1", "https://tec.openplanner.team/stops/LmDhoch2"], ["https://tec.openplanner.team/stops/X791aab", "https://tec.openplanner.team/stops/X791aba"], ["https://tec.openplanner.team/stops/LSZcock2", "https://tec.openplanner.team/stops/LSZpiro2"], ["https://tec.openplanner.team/stops/LSOferr3", "https://tec.openplanner.team/stops/LSOferr6"], ["https://tec.openplanner.team/stops/LBvviem3", "https://tec.openplanner.team/stops/LVMchpl2"], ["https://tec.openplanner.team/stops/Clbhour1", "https://tec.openplanner.team/stops/Clbhour2"], ["https://tec.openplanner.team/stops/Cfbcabi2", "https://tec.openplanner.team/stops/Cfbcal2"], ["https://tec.openplanner.team/stops/X801aqa", "https://tec.openplanner.team/stops/X801ckb"], ["https://tec.openplanner.team/stops/X669adb", "https://tec.openplanner.team/stops/X669ahb"], ["https://tec.openplanner.team/stops/N501crd", "https://tec.openplanner.team/stops/N501cub"], ["https://tec.openplanner.team/stops/H4bx167a", "https://tec.openplanner.team/stops/H4te249b"], ["https://tec.openplanner.team/stops/LbUwirt2", "https://tec.openplanner.team/stops/LwR140-2"], ["https://tec.openplanner.team/stops/LMNgare1", "https://tec.openplanner.team/stops/LMsheid2"], ["https://tec.openplanner.team/stops/LmDbw--*", "https://tec.openplanner.team/stops/LsVfeye1"], ["https://tec.openplanner.team/stops/LVLgrum1", "https://tec.openplanner.team/stops/LVLhalb2"], ["https://tec.openplanner.team/stops/N540aoa", "https://tec.openplanner.team/stops/N540arb"], ["https://tec.openplanner.team/stops/Bgoevli1", "https://tec.openplanner.team/stops/Bgoewat1"], ["https://tec.openplanner.team/stops/LOMcabi1", "https://tec.openplanner.team/stops/LOMtomb2"], ["https://tec.openplanner.team/stops/N511alc", "https://tec.openplanner.team/stops/N511asa"], ["https://tec.openplanner.team/stops/LhP25--1", "https://tec.openplanner.team/stops/LmRkreu4"], ["https://tec.openplanner.team/stops/H1ch103b", "https://tec.openplanner.team/stops/H1ch107b"], ["https://tec.openplanner.team/stops/X724aab", "https://tec.openplanner.team/stops/X724aba"], ["https://tec.openplanner.team/stops/H1ms272a", "https://tec.openplanner.team/stops/H1ms272b"], ["https://tec.openplanner.team/stops/N211asa", "https://tec.openplanner.team/stops/N211bba"], ["https://tec.openplanner.team/stops/Lra4bra2", "https://tec.openplanner.team/stops/Lrapays1"], ["https://tec.openplanner.team/stops/Clcfall4", "https://tec.openplanner.team/stops/H1tt106b"], ["https://tec.openplanner.team/stops/H1ch103a", "https://tec.openplanner.team/stops/H1ch107a"], ["https://tec.openplanner.team/stops/LLegern1", "https://tec.openplanner.team/stops/LVRchpl1"], ["https://tec.openplanner.team/stops/Cvlgrta2", "https://tec.openplanner.team/stops/Cvllerm2"], ["https://tec.openplanner.team/stops/H1le124b", "https://tec.openplanner.team/stops/H1le127a"], ["https://tec.openplanner.team/stops/N117bdd", "https://tec.openplanner.team/stops/N145agb"], ["https://tec.openplanner.team/stops/H1ht124a", "https://tec.openplanner.team/stops/H1ht129b"], ["https://tec.openplanner.team/stops/N109adc", "https://tec.openplanner.team/stops/N109aia"], ["https://tec.openplanner.team/stops/LBCtros1", "https://tec.openplanner.team/stops/LMTvill2"], ["https://tec.openplanner.team/stops/X364aaa", "https://tec.openplanner.team/stops/X364aab"], ["https://tec.openplanner.team/stops/Bmlnpab1", "https://tec.openplanner.team/stops/Bmlnpab2"], ["https://tec.openplanner.team/stops/Bmarcha2", "https://tec.openplanner.team/stops/Bwagsta2"], ["https://tec.openplanner.team/stops/H5pe147a", "https://tec.openplanner.team/stops/H5pe147c"], ["https://tec.openplanner.team/stops/H4pe124a", "https://tec.openplanner.team/stops/H4pe124b"], ["https://tec.openplanner.team/stops/Cnacent3", "https://tec.openplanner.team/stops/Cnacent4"], ["https://tec.openplanner.team/stops/X612aab", "https://tec.openplanner.team/stops/X612aea"], ["https://tec.openplanner.team/stops/Bfelfde1", "https://tec.openplanner.team/stops/Bfelfde2"], ["https://tec.openplanner.team/stops/LBVzand2", "https://tec.openplanner.team/stops/LBVzand3"], ["https://tec.openplanner.team/stops/LSHmais2", "https://tec.openplanner.team/stops/LSHries1"], ["https://tec.openplanner.team/stops/LHegame1", "https://tec.openplanner.team/stops/LHegame2"], ["https://tec.openplanner.team/stops/Cbbcrbo1", "https://tec.openplanner.team/stops/Cbmclar1"], ["https://tec.openplanner.team/stops/Bgntcbo2", "https://tec.openplanner.team/stops/Bsomjon2"], ["https://tec.openplanner.team/stops/H4ta117b", "https://tec.openplanner.team/stops/H4ta124a"], ["https://tec.openplanner.team/stops/Llgandr1", "https://tec.openplanner.team/stops/Llgandr2"], ["https://tec.openplanner.team/stops/H5rx114a", "https://tec.openplanner.team/stops/H5rx136b"], ["https://tec.openplanner.team/stops/Bvirdco2", "https://tec.openplanner.team/stops/Bvirduj2"], ["https://tec.openplanner.team/stops/Cgyrdid1", "https://tec.openplanner.team/stops/Cjuecha1"], ["https://tec.openplanner.team/stops/Bcsebea3", "https://tec.openplanner.team/stops/Bcsen252"], ["https://tec.openplanner.team/stops/Crs74em1", "https://tec.openplanner.team/stops/Crseuro1"], ["https://tec.openplanner.team/stops/X725aob", "https://tec.openplanner.team/stops/X725apb"], ["https://tec.openplanner.team/stops/Cgyduss4", "https://tec.openplanner.team/stops/Cgymast2"], ["https://tec.openplanner.team/stops/LAbbass2", "https://tec.openplanner.team/stops/LSevitu2"], ["https://tec.openplanner.team/stops/H1do121b", "https://tec.openplanner.team/stops/H1wi147b"], ["https://tec.openplanner.team/stops/N513axa", "https://tec.openplanner.team/stops/N513axb"], ["https://tec.openplanner.team/stops/N539bab", "https://tec.openplanner.team/stops/N539bbb"], ["https://tec.openplanner.team/stops/LkOzoll1", "https://tec.openplanner.team/stops/LlCauto2"], ["https://tec.openplanner.team/stops/H4ka185a", "https://tec.openplanner.team/stops/H4ka186a"], ["https://tec.openplanner.team/stops/Bfledpi1", "https://tec.openplanner.team/stops/Cflcarr1"], ["https://tec.openplanner.team/stops/N501hrb", "https://tec.openplanner.team/stops/N501ifa"], ["https://tec.openplanner.team/stops/LKmdani1", "https://tec.openplanner.team/stops/LKmdani2"], ["https://tec.openplanner.team/stops/N562aga", "https://tec.openplanner.team/stops/N562bkb"], ["https://tec.openplanner.team/stops/LLmcarr1", "https://tec.openplanner.team/stops/LLmwaut1"], ["https://tec.openplanner.team/stops/X824aed", "https://tec.openplanner.team/stops/X824ahb"], ["https://tec.openplanner.team/stops/X921aka", "https://tec.openplanner.team/stops/X979aab"], ["https://tec.openplanner.team/stops/LWZponb1", "https://tec.openplanner.team/stops/X261aba"], ["https://tec.openplanner.team/stops/Blsmvan2", "https://tec.openplanner.team/stops/Bpelegl2"], ["https://tec.openplanner.team/stops/LTreg--1", "https://tec.openplanner.team/stops/LTrmaro1"], ["https://tec.openplanner.team/stops/N506azb", "https://tec.openplanner.team/stops/N506bma"], ["https://tec.openplanner.team/stops/H1lm105a", "https://tec.openplanner.team/stops/H1lm107b"], ["https://tec.openplanner.team/stops/Llgptlo3", "https://tec.openplanner.team/stops/Llgptlo4"], ["https://tec.openplanner.team/stops/X359aaa", "https://tec.openplanner.team/stops/X359aab"], ["https://tec.openplanner.team/stops/Ccocorb1", "https://tec.openplanner.team/stops/Ccoha601"], ["https://tec.openplanner.team/stops/N209ada", "https://tec.openplanner.team/stops/N209aka"], ["https://tec.openplanner.team/stops/Boffegl1", "https://tec.openplanner.team/stops/NR27abb"], ["https://tec.openplanner.team/stops/LJA65h-2", "https://tec.openplanner.team/stops/LJAfawe2"], ["https://tec.openplanner.team/stops/X659aua", "https://tec.openplanner.team/stops/X741aid"], ["https://tec.openplanner.team/stops/H2fa101a", "https://tec.openplanner.team/stops/H2fa112a"], ["https://tec.openplanner.team/stops/H4ss155a", "https://tec.openplanner.team/stops/H5rx115a"], ["https://tec.openplanner.team/stops/N103aia", "https://tec.openplanner.team/stops/N104aba"], ["https://tec.openplanner.team/stops/Brebrog1", "https://tec.openplanner.team/stops/H2pr115a"], ["https://tec.openplanner.team/stops/Lkiecol1", "https://tec.openplanner.team/stops/Lkiecol2"], ["https://tec.openplanner.team/stops/H1ls106b", "https://tec.openplanner.team/stops/H1ls107b"], ["https://tec.openplanner.team/stops/LPOpass1", "https://tec.openplanner.team/stops/LPOthom2"], ["https://tec.openplanner.team/stops/LkEhatt1", "https://tec.openplanner.team/stops/LkEsouf1"], ["https://tec.openplanner.team/stops/X818asb", "https://tec.openplanner.team/stops/X818ava"], ["https://tec.openplanner.team/stops/H1ba117a", "https://tec.openplanner.team/stops/H1ba119d"], ["https://tec.openplanner.team/stops/N501dtc", "https://tec.openplanner.team/stops/N501kjb"], ["https://tec.openplanner.team/stops/Bnivga21", "https://tec.openplanner.team/stops/Bnivsse1"], ["https://tec.openplanner.team/stops/Cbmmafr2", "https://tec.openplanner.team/stops/Cbmpopr1"], ["https://tec.openplanner.team/stops/X663aab", "https://tec.openplanner.team/stops/X663abb"], ["https://tec.openplanner.team/stops/LLbmalm1", "https://tec.openplanner.team/stops/LLbvith1"], ["https://tec.openplanner.team/stops/Bfelpla2", "https://tec.openplanner.team/stops/Bfelpmo2"], ["https://tec.openplanner.team/stops/Lgrlimi2", "https://tec.openplanner.team/stops/Llgguer1"], ["https://tec.openplanner.team/stops/Bjdscnd2", "https://tec.openplanner.team/stops/Bjdssta2"], ["https://tec.openplanner.team/stops/N122acb", "https://tec.openplanner.team/stops/N122ada"], ["https://tec.openplanner.team/stops/Cchoues4", "https://tec.openplanner.team/stops/CMpige2"], ["https://tec.openplanner.team/stops/H1gh150b", "https://tec.openplanner.team/stops/H1gh151b"], ["https://tec.openplanner.team/stops/X750ara", "https://tec.openplanner.team/stops/X750beb"], ["https://tec.openplanner.team/stops/Ctisar1", "https://tec.openplanner.team/stops/Ctisart1"], ["https://tec.openplanner.team/stops/H1br120b", "https://tec.openplanner.team/stops/H1ev112a"], ["https://tec.openplanner.team/stops/Bbsiabb1", "https://tec.openplanner.team/stops/Bbsimpl2"], ["https://tec.openplanner.team/stops/LSXbecc2", "https://tec.openplanner.team/stops/LTHturo2"], ["https://tec.openplanner.team/stops/X989aba", "https://tec.openplanner.team/stops/X994aga"], ["https://tec.openplanner.team/stops/Cmohame2", "https://tec.openplanner.team/stops/Cmychau2"], ["https://tec.openplanner.team/stops/X725bda", "https://tec.openplanner.team/stops/X725bdb"], ["https://tec.openplanner.team/stops/N562ayb", "https://tec.openplanner.team/stops/N562azb"], ["https://tec.openplanner.team/stops/X808aaa", "https://tec.openplanner.team/stops/X808aac"], ["https://tec.openplanner.team/stops/H3so161b", "https://tec.openplanner.team/stops/H3so163b"], ["https://tec.openplanner.team/stops/LWRferm1", "https://tec.openplanner.team/stops/LWRheyd1"], ["https://tec.openplanner.team/stops/X923agb", "https://tec.openplanner.team/stops/X923aia"], ["https://tec.openplanner.team/stops/Lsecroi2", "https://tec.openplanner.team/stops/Lsetroq1"], ["https://tec.openplanner.team/stops/Bwav4sa1", "https://tec.openplanner.team/stops/Bwavbva2"], ["https://tec.openplanner.team/stops/Lpebier2", "https://tec.openplanner.team/stops/Lpepano1"], ["https://tec.openplanner.team/stops/Cfcbosq2", "https://tec.openplanner.team/stops/Cfcchen1"], ["https://tec.openplanner.team/stops/LCxross1", "https://tec.openplanner.team/stops/LCxross2"], ["https://tec.openplanner.team/stops/H4oq225b", "https://tec.openplanner.team/stops/H4wu375a"], ["https://tec.openplanner.team/stops/Cluchbl4", "https://tec.openplanner.team/stops/Cpccoss2"], ["https://tec.openplanner.team/stops/Bkrabhu1", "https://tec.openplanner.team/stops/Bkrabhu2"], ["https://tec.openplanner.team/stops/Ljuauto2", "https://tec.openplanner.team/stops/Ljufore2"], ["https://tec.openplanner.team/stops/N145ada", "https://tec.openplanner.team/stops/N149aba"], ["https://tec.openplanner.team/stops/N543boa", "https://tec.openplanner.team/stops/N543cmb"], ["https://tec.openplanner.team/stops/LLUhotc1", "https://tec.openplanner.team/stops/LREfloh1"], ["https://tec.openplanner.team/stops/LENcroi1", "https://tec.openplanner.team/stops/LENgend2"], ["https://tec.openplanner.team/stops/X858aea", "https://tec.openplanner.team/stops/X858afb"], ["https://tec.openplanner.team/stops/X926aca", "https://tec.openplanner.team/stops/X926aea"], ["https://tec.openplanner.team/stops/H2pe162b", "https://tec.openplanner.team/stops/H3bi115b"], ["https://tec.openplanner.team/stops/X943abb", "https://tec.openplanner.team/stops/X943aha"], ["https://tec.openplanner.team/stops/X604aka", "https://tec.openplanner.team/stops/X604alb"], ["https://tec.openplanner.team/stops/X652aaa", "https://tec.openplanner.team/stops/X652aab"], ["https://tec.openplanner.team/stops/X820aba", "https://tec.openplanner.team/stops/X820afa"], ["https://tec.openplanner.team/stops/LBdmarr2", "https://tec.openplanner.team/stops/LLrcour1"], ["https://tec.openplanner.team/stops/X871aaa", "https://tec.openplanner.team/stops/X876afa"], ["https://tec.openplanner.team/stops/Cwgdeba1", "https://tec.openplanner.team/stops/Cwgpatr2"], ["https://tec.openplanner.team/stops/H5at129a", "https://tec.openplanner.team/stops/H5at141a"], ["https://tec.openplanner.team/stops/LCxcham1", "https://tec.openplanner.team/stops/LCxcham2"], ["https://tec.openplanner.team/stops/X877afb", "https://tec.openplanner.team/stops/X878aaa"], ["https://tec.openplanner.team/stops/LHmcite1", "https://tec.openplanner.team/stops/LMAgare0"], ["https://tec.openplanner.team/stops/Bwategl2", "https://tec.openplanner.team/stops/Bwatras1"], ["https://tec.openplanner.team/stops/N224agc", "https://tec.openplanner.team/stops/X224aab"], ["https://tec.openplanner.team/stops/H1mb137a", "https://tec.openplanner.team/stops/H1mb166b"], ["https://tec.openplanner.team/stops/N383aba", "https://tec.openplanner.team/stops/N383afa"], ["https://tec.openplanner.team/stops/N331aib", "https://tec.openplanner.team/stops/N331ajb"], ["https://tec.openplanner.team/stops/LMEeg--1", "https://tec.openplanner.team/stops/LMEpech2"], ["https://tec.openplanner.team/stops/LMastat3", "https://tec.openplanner.team/stops/LMastat4"], ["https://tec.openplanner.team/stops/X779aea", "https://tec.openplanner.team/stops/X779aeb"], ["https://tec.openplanner.team/stops/Ljubrec2", "https://tec.openplanner.team/stops/Ljujaur2"], ["https://tec.openplanner.team/stops/X609aoa", "https://tec.openplanner.team/stops/X609aob"], ["https://tec.openplanner.team/stops/X672ala", "https://tec.openplanner.team/stops/X672alb"], ["https://tec.openplanner.team/stops/LCPconf1", "https://tec.openplanner.team/stops/LCPvign2"], ["https://tec.openplanner.team/stops/X941aga", "https://tec.openplanner.team/stops/X948aoa"], ["https://tec.openplanner.team/stops/LmNelis2", "https://tec.openplanner.team/stops/LmNkirc2"], ["https://tec.openplanner.team/stops/Bsomh671", "https://tec.openplanner.team/stops/Bsomh672"], ["https://tec.openplanner.team/stops/LGecime2", "https://tec.openplanner.team/stops/LVkinst1"], ["https://tec.openplanner.team/stops/N501bwa", "https://tec.openplanner.team/stops/N501hka"], ["https://tec.openplanner.team/stops/H1eu101a", "https://tec.openplanner.team/stops/H1eu101b"], ["https://tec.openplanner.team/stops/Louroos2", "https://tec.openplanner.team/stops/Louroos3"], ["https://tec.openplanner.team/stops/H4co103a", "https://tec.openplanner.team/stops/H4co105a"], ["https://tec.openplanner.team/stops/X664aoa", "https://tec.openplanner.team/stops/X664apb"], ["https://tec.openplanner.team/stops/LHFec--4", "https://tec.openplanner.team/stops/LHFwaut1"], ["https://tec.openplanner.team/stops/X730adb", "https://tec.openplanner.team/stops/X730aeb"], ["https://tec.openplanner.team/stops/X877aha", "https://tec.openplanner.team/stops/X880acb"], ["https://tec.openplanner.team/stops/H1bo101a", "https://tec.openplanner.team/stops/H1bo102a"], ["https://tec.openplanner.team/stops/Cmlbruy1", "https://tec.openplanner.team/stops/Cmymoha2"], ["https://tec.openplanner.team/stops/H4ld127a", "https://tec.openplanner.team/stops/H4to138a"], ["https://tec.openplanner.team/stops/X626aaa", "https://tec.openplanner.team/stops/X626anb"], ["https://tec.openplanner.team/stops/LSMpoin1", "https://tec.openplanner.team/stops/LSMpoin2"], ["https://tec.openplanner.team/stops/Lalparc2", "https://tec.openplanner.team/stops/Laltrap2"], ["https://tec.openplanner.team/stops/X921akb", "https://tec.openplanner.team/stops/X979aaa"], ["https://tec.openplanner.team/stops/H4wi166a", "https://tec.openplanner.team/stops/H4wi166b"], ["https://tec.openplanner.team/stops/H4mx116b", "https://tec.openplanner.team/stops/H4mx120b"], ["https://tec.openplanner.team/stops/LwYboui1", "https://tec.openplanner.team/stops/LwYcafe2"], ["https://tec.openplanner.team/stops/N117arb", "https://tec.openplanner.team/stops/N117asa"], ["https://tec.openplanner.team/stops/N511aia", "https://tec.openplanner.team/stops/N512awb"], ["https://tec.openplanner.team/stops/X773ala", "https://tec.openplanner.team/stops/X773ana"], ["https://tec.openplanner.team/stops/H1gq153b", "https://tec.openplanner.team/stops/H1mq200a"], ["https://tec.openplanner.team/stops/H1og132b", "https://tec.openplanner.team/stops/H1og135b"], ["https://tec.openplanner.team/stops/Bfelequ1", "https://tec.openplanner.team/stops/Bfelpmo1"], ["https://tec.openplanner.team/stops/N554acb", "https://tec.openplanner.team/stops/N554acc"], ["https://tec.openplanner.team/stops/N521aba", "https://tec.openplanner.team/stops/N521abb"], ["https://tec.openplanner.team/stops/LWAaxhe2", "https://tec.openplanner.team/stops/LWAlong1"], ["https://tec.openplanner.team/stops/LPbpeti2", "https://tec.openplanner.team/stops/LPbtene2"], ["https://tec.openplanner.team/stops/H4do101a", "https://tec.openplanner.team/stops/H4do107c"], ["https://tec.openplanner.team/stops/X926aaa", "https://tec.openplanner.team/stops/X926aba"], ["https://tec.openplanner.team/stops/X650aba", "https://tec.openplanner.team/stops/X650ahb"], ["https://tec.openplanner.team/stops/H3br103a", "https://tec.openplanner.team/stops/H3br122a"], ["https://tec.openplanner.team/stops/Bronfou1", "https://tec.openplanner.team/stops/Bvirvol1"], ["https://tec.openplanner.team/stops/X605aab", "https://tec.openplanner.team/stops/X605acb"], ["https://tec.openplanner.team/stops/LTicime1", "https://tec.openplanner.team/stops/LTicime2"], ["https://tec.openplanner.team/stops/Bmlngch1", "https://tec.openplanner.team/stops/Bmlngvi1"], ["https://tec.openplanner.team/stops/N501coa", "https://tec.openplanner.team/stops/N501cob"], ["https://tec.openplanner.team/stops/Llghaye2", "https://tec.openplanner.team/stops/Llgsnap5"], ["https://tec.openplanner.team/stops/H4er122b", "https://tec.openplanner.team/stops/H4ty300a"], ["https://tec.openplanner.team/stops/LHMec--2", "https://tec.openplanner.team/stops/LRmkast*"], ["https://tec.openplanner.team/stops/X811adb", "https://tec.openplanner.team/stops/X811aja"], ["https://tec.openplanner.team/stops/Btubfab1", "https://tec.openplanner.team/stops/Btubnco1"], ["https://tec.openplanner.team/stops/H2hg271a", "https://tec.openplanner.team/stops/H2hg271b"], ["https://tec.openplanner.team/stops/LHumoul1", "https://tec.openplanner.team/stops/LMfange2"], ["https://tec.openplanner.team/stops/N511aub", "https://tec.openplanner.team/stops/N511ava"], ["https://tec.openplanner.team/stops/X734abb", "https://tec.openplanner.team/stops/X734adb"], ["https://tec.openplanner.team/stops/N557abb", "https://tec.openplanner.team/stops/N557aga"], ["https://tec.openplanner.team/stops/X369aca", "https://tec.openplanner.team/stops/X370ada"], ["https://tec.openplanner.team/stops/H4bc102a", "https://tec.openplanner.team/stops/H4wr174b"], ["https://tec.openplanner.team/stops/N874ana", "https://tec.openplanner.team/stops/N874anb"], ["https://tec.openplanner.team/stops/Cthbeff1", "https://tec.openplanner.team/stops/Cthvbas1"], ["https://tec.openplanner.team/stops/X758aja", "https://tec.openplanner.team/stops/X758akb"], ["https://tec.openplanner.team/stops/LeUmeye2", "https://tec.openplanner.team/stops/LrApark1"], ["https://tec.openplanner.team/stops/LBEhaye2", "https://tec.openplanner.team/stops/LBEtrix1"], ["https://tec.openplanner.team/stops/Ctipoui2", "https://tec.openplanner.team/stops/Ctisart2"], ["https://tec.openplanner.team/stops/N514aga", "https://tec.openplanner.team/stops/N514ajb"], ["https://tec.openplanner.team/stops/X601aqb", "https://tec.openplanner.team/stops/X601bgb"], ["https://tec.openplanner.team/stops/NL67aaa", "https://tec.openplanner.team/stops/NL67aca"], ["https://tec.openplanner.team/stops/N528alb", "https://tec.openplanner.team/stops/N577aha"], ["https://tec.openplanner.team/stops/N308acb", "https://tec.openplanner.team/stops/N308bab"], ["https://tec.openplanner.team/stops/N584aea", "https://tec.openplanner.team/stops/N584ana"], ["https://tec.openplanner.team/stops/Blemkap2", "https://tec.openplanner.team/stops/Blemmar2"], ["https://tec.openplanner.team/stops/Bmoucnd2", "https://tec.openplanner.team/stops/Bmouegl1"], ["https://tec.openplanner.team/stops/LSG111-1", "https://tec.openplanner.team/stops/LSkrena2"], ["https://tec.openplanner.team/stops/Bwavnam2", "https://tec.openplanner.team/stops/Bwavpao2"], ["https://tec.openplanner.team/stops/Lsehya-2", "https://tec.openplanner.team/stops/Lsehya-4"], ["https://tec.openplanner.team/stops/X614apb", "https://tec.openplanner.team/stops/X614asa"], ["https://tec.openplanner.team/stops/LGEcent1", "https://tec.openplanner.team/stops/LGEvill2"], ["https://tec.openplanner.team/stops/N513alb", "https://tec.openplanner.team/stops/N516aob"], ["https://tec.openplanner.team/stops/X738aba", "https://tec.openplanner.team/stops/X738abb"], ["https://tec.openplanner.team/stops/Ccybouc1", "https://tec.openplanner.team/stops/Ccybouc2"], ["https://tec.openplanner.team/stops/X754alb", "https://tec.openplanner.team/stops/X754ama"], ["https://tec.openplanner.team/stops/Cforpet1", "https://tec.openplanner.team/stops/Cforpet2"], ["https://tec.openplanner.team/stops/N531ada", "https://tec.openplanner.team/stops/N531amb"], ["https://tec.openplanner.team/stops/H2sb224a", "https://tec.openplanner.team/stops/H2sb236c"], ["https://tec.openplanner.team/stops/X354aca", "https://tec.openplanner.team/stops/X354ada"], ["https://tec.openplanner.team/stops/H1ca102a", "https://tec.openplanner.team/stops/H1ca102b"], ["https://tec.openplanner.team/stops/N232aib", "https://tec.openplanner.team/stops/N232anb"], ["https://tec.openplanner.team/stops/LTRfend1", "https://tec.openplanner.team/stops/LTRgare0"], ["https://tec.openplanner.team/stops/N542ala", "https://tec.openplanner.team/stops/N542ara"], ["https://tec.openplanner.team/stops/Bzluvil1", "https://tec.openplanner.team/stops/Bzluvil2"], ["https://tec.openplanner.team/stops/X663ava", "https://tec.openplanner.team/stops/X663aya"], ["https://tec.openplanner.team/stops/LSNbouh4", "https://tec.openplanner.team/stops/LSNmoul3"], ["https://tec.openplanner.team/stops/X633ala", "https://tec.openplanner.team/stops/X633ama"], ["https://tec.openplanner.team/stops/LeUclou2", "https://tec.openplanner.team/stops/LeUmeye1"], ["https://tec.openplanner.team/stops/X721apa", "https://tec.openplanner.team/stops/X786aab"], ["https://tec.openplanner.team/stops/X991adb", "https://tec.openplanner.team/stops/X991agb"], ["https://tec.openplanner.team/stops/LbUbisc1", "https://tec.openplanner.team/stops/LbUhons2"], ["https://tec.openplanner.team/stops/Ctrecol1", "https://tec.openplanner.team/stops/Ctrecol5"], ["https://tec.openplanner.team/stops/Bsmgegl2", "https://tec.openplanner.team/stops/Bsmgpla1"], ["https://tec.openplanner.team/stops/H1mj122a", "https://tec.openplanner.team/stops/H1mj123a"], ["https://tec.openplanner.team/stops/N564aaa", "https://tec.openplanner.team/stops/N564aeb"], ["https://tec.openplanner.team/stops/X919abb", "https://tec.openplanner.team/stops/X919acb"], ["https://tec.openplanner.team/stops/N425aea", "https://tec.openplanner.team/stops/N425afa"], ["https://tec.openplanner.team/stops/X664afa", "https://tec.openplanner.team/stops/X667aab"], ["https://tec.openplanner.team/stops/Cvpcime2", "https://tec.openplanner.team/stops/Cvpcour2"], ["https://tec.openplanner.team/stops/Cjuspin1", "https://tec.openplanner.team/stops/Cjuvign2"], ["https://tec.openplanner.team/stops/N558adb", "https://tec.openplanner.team/stops/N558aeb"], ["https://tec.openplanner.team/stops/Bplncsd1", "https://tec.openplanner.team/stops/Clpnapo2"], ["https://tec.openplanner.team/stops/X818atb", "https://tec.openplanner.team/stops/X827aab"], ["https://tec.openplanner.team/stops/Lsehosp2", "https://tec.openplanner.team/stops/Lselibe2"], ["https://tec.openplanner.team/stops/H2ca106a", "https://tec.openplanner.team/stops/H2ca109a"], ["https://tec.openplanner.team/stops/Lbhhomv1", "https://tec.openplanner.team/stops/Lvcchev2"], ["https://tec.openplanner.team/stops/LFEland2", "https://tec.openplanner.team/stops/LMYlieg2"], ["https://tec.openplanner.team/stops/Bleunaa1", "https://tec.openplanner.team/stops/Bleunaa2"], ["https://tec.openplanner.team/stops/NL78ahb", "https://tec.openplanner.team/stops/NL78ahc"], ["https://tec.openplanner.team/stops/Lhrhome1", "https://tec.openplanner.team/stops/Lhrhosp2"], ["https://tec.openplanner.team/stops/Bwavbmo1", "https://tec.openplanner.team/stops/Bwavnam4"], ["https://tec.openplanner.team/stops/Becesbo2", "https://tec.openplanner.team/stops/H2ec100b"], ["https://tec.openplanner.team/stops/LHZbren2", "https://tec.openplanner.team/stops/LHZcime1"], ["https://tec.openplanner.team/stops/X767aab", "https://tec.openplanner.team/stops/X767aac"], ["https://tec.openplanner.team/stops/N506bpa", "https://tec.openplanner.team/stops/N537aka"], ["https://tec.openplanner.team/stops/H4mo145b", "https://tec.openplanner.team/stops/H4mo165a"], ["https://tec.openplanner.team/stops/Cgxcime1", "https://tec.openplanner.team/stops/Cgxcime2"], ["https://tec.openplanner.team/stops/X595ada", "https://tec.openplanner.team/stops/X595aga"], ["https://tec.openplanner.team/stops/X608afb", "https://tec.openplanner.team/stops/X608avb"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Lanpast1"], ["https://tec.openplanner.team/stops/LDLgran1", "https://tec.openplanner.team/stops/LHYnoid2"], ["https://tec.openplanner.team/stops/X730aea", "https://tec.openplanner.team/stops/X730aeb"], ["https://tec.openplanner.team/stops/Ctynamu2", "https://tec.openplanner.team/stops/N137aha"], ["https://tec.openplanner.team/stops/Bniveco1", "https://tec.openplanner.team/stops/Bnivpar1"], ["https://tec.openplanner.team/stops/X955aaa", "https://tec.openplanner.team/stops/X955ada"], ["https://tec.openplanner.team/stops/LHUhsar1", "https://tec.openplanner.team/stops/LTiespe4"], ["https://tec.openplanner.team/stops/N244aka", "https://tec.openplanner.team/stops/N252acd"], ["https://tec.openplanner.team/stops/Cmqchap1", "https://tec.openplanner.team/stops/Cmqegl2"], ["https://tec.openplanner.team/stops/N534bda", "https://tec.openplanner.team/stops/N534bdb"], ["https://tec.openplanner.team/stops/LCFmoul1", "https://tec.openplanner.team/stops/LCFmoul2"], ["https://tec.openplanner.team/stops/Ctrrpla2", "https://tec.openplanner.team/stops/Ctrvert2"], ["https://tec.openplanner.team/stops/X659agb", "https://tec.openplanner.team/stops/X659aza"], ["https://tec.openplanner.team/stops/X904afa", "https://tec.openplanner.team/stops/X904aib"], ["https://tec.openplanner.team/stops/H4bq100a", "https://tec.openplanner.team/stops/H4bq100b"], ["https://tec.openplanner.team/stops/Cfcecol2", "https://tec.openplanner.team/stops/Cfcpla1"], ["https://tec.openplanner.team/stops/N565ajb", "https://tec.openplanner.team/stops/N565alb"], ["https://tec.openplanner.team/stops/Bbiehpo1", "https://tec.openplanner.team/stops/Bbiesbi2"], ["https://tec.openplanner.team/stops/H3lr109b", "https://tec.openplanner.team/stops/H3lr121a"], ["https://tec.openplanner.team/stops/X804acb", "https://tec.openplanner.team/stops/X804apa"], ["https://tec.openplanner.team/stops/X613ada", "https://tec.openplanner.team/stops/X626akb"], ["https://tec.openplanner.team/stops/LMedoum1", "https://tec.openplanner.team/stops/LMemora1"], ["https://tec.openplanner.team/stops/Bblafra3", "https://tec.openplanner.team/stops/Bblapet1"], ["https://tec.openplanner.team/stops/X945aea", "https://tec.openplanner.team/stops/X948aqa"], ["https://tec.openplanner.team/stops/Lmlchev2", "https://tec.openplanner.team/stops/Lpoprie2"], ["https://tec.openplanner.team/stops/Cgorobe2", "https://tec.openplanner.team/stops/Ctmmonu2"], ["https://tec.openplanner.team/stops/LHUchin*", "https://tec.openplanner.team/stops/LHUloui1"], ["https://tec.openplanner.team/stops/Lghbonn1", "https://tec.openplanner.team/stops/Lghflot4"], ["https://tec.openplanner.team/stops/H2ca108b", "https://tec.openplanner.team/stops/H2ca116b"], ["https://tec.openplanner.team/stops/X619ajb", "https://tec.openplanner.team/stops/X620aba"], ["https://tec.openplanner.team/stops/X820acb", "https://tec.openplanner.team/stops/X820amb"], ["https://tec.openplanner.team/stops/N501arc", "https://tec.openplanner.team/stops/N501bab"], ["https://tec.openplanner.team/stops/LAMcloc1", "https://tec.openplanner.team/stops/LAMec--2"], ["https://tec.openplanner.team/stops/H2sb243a", "https://tec.openplanner.team/stops/H2sb243d"], ["https://tec.openplanner.team/stops/N511ata", "https://tec.openplanner.team/stops/N511atb"], ["https://tec.openplanner.team/stops/X807aaa", "https://tec.openplanner.team/stops/X807aca"], ["https://tec.openplanner.team/stops/H2mi124b", "https://tec.openplanner.team/stops/H2mi125b"], ["https://tec.openplanner.team/stops/X730aca", "https://tec.openplanner.team/stops/X730ada"], ["https://tec.openplanner.team/stops/N525aec", "https://tec.openplanner.team/stops/N525aga"], ["https://tec.openplanner.team/stops/X744aba", "https://tec.openplanner.team/stops/X744abb"], ["https://tec.openplanner.team/stops/X756aha", "https://tec.openplanner.team/stops/X757ama"], ["https://tec.openplanner.team/stops/X948anb", "https://tec.openplanner.team/stops/X948bba"], ["https://tec.openplanner.team/stops/LbUhons1", "https://tec.openplanner.team/stops/LbUpost1"], ["https://tec.openplanner.team/stops/Ltibure1", "https://tec.openplanner.team/stops/Lticime1"], ["https://tec.openplanner.team/stops/N535amc", "https://tec.openplanner.team/stops/N535anb"], ["https://tec.openplanner.team/stops/H1ne143a", "https://tec.openplanner.team/stops/H1ne143b"], ["https://tec.openplanner.team/stops/X766aaa", "https://tec.openplanner.team/stops/X768akb"], ["https://tec.openplanner.team/stops/H1au101b", "https://tec.openplanner.team/stops/H1bx108a"], ["https://tec.openplanner.team/stops/LLrgara2", "https://tec.openplanner.team/stops/LSPmart4"], ["https://tec.openplanner.team/stops/H1cu112a", "https://tec.openplanner.team/stops/H1cu121a"], ["https://tec.openplanner.team/stops/Bhaltre1", "https://tec.openplanner.team/stops/Bhalvla2"], ["https://tec.openplanner.team/stops/Cgocalv4", "https://tec.openplanner.team/stops/Cgocitn1"], ["https://tec.openplanner.team/stops/H3so155b", "https://tec.openplanner.team/stops/H3so175b"], ["https://tec.openplanner.team/stops/N110aab", "https://tec.openplanner.team/stops/N114aab"], ["https://tec.openplanner.team/stops/N101akb", "https://tec.openplanner.team/stops/N101aqb"], ["https://tec.openplanner.team/stops/LBBpech1", "https://tec.openplanner.team/stops/LBBpech2"], ["https://tec.openplanner.team/stops/Ccubric1", "https://tec.openplanner.team/stops/Ccubric2"], ["https://tec.openplanner.team/stops/X801ama", "https://tec.openplanner.team/stops/X889aab"], ["https://tec.openplanner.team/stops/H4co104a", "https://tec.openplanner.team/stops/H4co157b"], ["https://tec.openplanner.team/stops/N118aqb", "https://tec.openplanner.team/stops/N118bab"], ["https://tec.openplanner.team/stops/N224aba", "https://tec.openplanner.team/stops/N349aea"], ["https://tec.openplanner.team/stops/H4mo153d", "https://tec.openplanner.team/stops/H4mo178a"], ["https://tec.openplanner.team/stops/N521aka", "https://tec.openplanner.team/stops/N521akb"], ["https://tec.openplanner.team/stops/Bbealon3", "https://tec.openplanner.team/stops/Bbeardu1"], ["https://tec.openplanner.team/stops/X745adb", "https://tec.openplanner.team/stops/X745aea"], ["https://tec.openplanner.team/stops/LWargeu1", "https://tec.openplanner.team/stops/LWaruth2"], ["https://tec.openplanner.team/stops/Lbrfusi1", "https://tec.openplanner.team/stops/Lbrrobe3"], ["https://tec.openplanner.team/stops/H1ba103b", "https://tec.openplanner.team/stops/H1ba118a"], ["https://tec.openplanner.team/stops/Clupcfe1", "https://tec.openplanner.team/stops/Cvvpotv1"], ["https://tec.openplanner.team/stops/Cflbrun1", "https://tec.openplanner.team/stops/Cflbrun2"], ["https://tec.openplanner.team/stops/H1ms304a", "https://tec.openplanner.team/stops/H1ms309a"], ["https://tec.openplanner.team/stops/LESgare*", "https://tec.openplanner.team/stops/LESgare1"], ["https://tec.openplanner.team/stops/N301aha", "https://tec.openplanner.team/stops/N301aia"], ["https://tec.openplanner.team/stops/LrAbotz2", "https://tec.openplanner.team/stops/LrAmuhl2"], ["https://tec.openplanner.team/stops/X804bea", "https://tec.openplanner.team/stops/X804bzb"], ["https://tec.openplanner.team/stops/Lcceg--2", "https://tec.openplanner.team/stops/Lfhhoul1"], ["https://tec.openplanner.team/stops/LwMzoll1", "https://tec.openplanner.team/stops/X761aab"], ["https://tec.openplanner.team/stops/X654aia", "https://tec.openplanner.team/stops/X670arb"], ["https://tec.openplanner.team/stops/Bitrcro2", "https://tec.openplanner.team/stops/Bitrh%C3%BBl2"], ["https://tec.openplanner.team/stops/LJueg--1", "https://tec.openplanner.team/stops/LMolone2"], ["https://tec.openplanner.team/stops/LSSvill1", "https://tec.openplanner.team/stops/LSSvill2"], ["https://tec.openplanner.team/stops/N520aba", "https://tec.openplanner.team/stops/N520aja"], ["https://tec.openplanner.team/stops/Bsamlon1", "https://tec.openplanner.team/stops/Bwagmco2"], ["https://tec.openplanner.team/stops/H4ka187b", "https://tec.openplanner.team/stops/H4ty349b"], ["https://tec.openplanner.team/stops/X788adb", "https://tec.openplanner.team/stops/X789ahb"], ["https://tec.openplanner.team/stops/LBGcent1", "https://tec.openplanner.team/stops/LBGgeer2"], ["https://tec.openplanner.team/stops/Llgpbay1", "https://tec.openplanner.team/stops/Llgpbay2"], ["https://tec.openplanner.team/stops/X880ada", "https://tec.openplanner.team/stops/X880aeb"], ["https://tec.openplanner.team/stops/X650afe", "https://tec.openplanner.team/stops/X671afa"], ["https://tec.openplanner.team/stops/N155aec", "https://tec.openplanner.team/stops/N155ahb"], ["https://tec.openplanner.team/stops/N513bfa", "https://tec.openplanner.team/stops/N513bfb"], ["https://tec.openplanner.team/stops/Lmobras1", "https://tec.openplanner.team/stops/Lmobras2"], ["https://tec.openplanner.team/stops/Cgymara1", "https://tec.openplanner.team/stops/Cgymara2"], ["https://tec.openplanner.team/stops/Cblcent4", "https://tec.openplanner.team/stops/Cmbcime4"], ["https://tec.openplanner.team/stops/H4au144a", "https://tec.openplanner.team/stops/H4og210a"], ["https://tec.openplanner.team/stops/H1nm139a", "https://tec.openplanner.team/stops/H1si164a"], ["https://tec.openplanner.team/stops/LHUanth1", "https://tec.openplanner.team/stops/LHUtfal2"], ["https://tec.openplanner.team/stops/H1eo104b", "https://tec.openplanner.team/stops/H1eo107b"], ["https://tec.openplanner.team/stops/Lprsher1", "https://tec.openplanner.team/stops/Lprthie1"], ["https://tec.openplanner.team/stops/Bmartil2", "https://tec.openplanner.team/stops/Bsdabja2"], ["https://tec.openplanner.team/stops/H4lg102a", "https://tec.openplanner.team/stops/H4lg105a"], ["https://tec.openplanner.team/stops/Lglmoul2", "https://tec.openplanner.team/stops/Lmochar1"], ["https://tec.openplanner.team/stops/X757alb", "https://tec.openplanner.team/stops/X779aaa"], ["https://tec.openplanner.team/stops/H1ho129a", "https://tec.openplanner.team/stops/H1ho137a"], ["https://tec.openplanner.team/stops/Lbocime2", "https://tec.openplanner.team/stops/Lbomc--6"], ["https://tec.openplanner.team/stops/N261aea", "https://tec.openplanner.team/stops/N261aha"], ["https://tec.openplanner.team/stops/N501eib", "https://tec.openplanner.team/stops/N501jrb"], ["https://tec.openplanner.team/stops/Cluchbl1", "https://tec.openplanner.team/stops/Cluplve4"], ["https://tec.openplanner.team/stops/X804aaa", "https://tec.openplanner.team/stops/X804cbb"], ["https://tec.openplanner.team/stops/H1vg358a", "https://tec.openplanner.team/stops/H1vg359a"], ["https://tec.openplanner.team/stops/LSNchen2", "https://tec.openplanner.team/stops/LSNfays2"], ["https://tec.openplanner.team/stops/X601dcb", "https://tec.openplanner.team/stops/X612afa"], ["https://tec.openplanner.team/stops/Csabrun1", "https://tec.openplanner.team/stops/Cvpcime1"], ["https://tec.openplanner.team/stops/LVNcoop1", "https://tec.openplanner.team/stops/LVNwanz1"], ["https://tec.openplanner.team/stops/X717abb", "https://tec.openplanner.team/stops/X782apb"], ["https://tec.openplanner.team/stops/Cgrchas1", "https://tec.openplanner.team/stops/Cgrflac1"], ["https://tec.openplanner.team/stops/Bborppa1", "https://tec.openplanner.team/stops/Bitrmon1"], ["https://tec.openplanner.team/stops/N135aza", "https://tec.openplanner.team/stops/N135azb"], ["https://tec.openplanner.team/stops/X836aia", "https://tec.openplanner.team/stops/X836aib"], ["https://tec.openplanner.team/stops/H4mt214a", "https://tec.openplanner.team/stops/H4mt216b"], ["https://tec.openplanner.team/stops/LSkchwa1", "https://tec.openplanner.team/stops/LSkchwa2"], ["https://tec.openplanner.team/stops/Bobacar3", "https://tec.openplanner.team/stops/Bptrmar1"], ["https://tec.openplanner.team/stops/LAieg--2", "https://tec.openplanner.team/stops/LENparc1"], ["https://tec.openplanner.team/stops/LVMfoli2", "https://tec.openplanner.team/stops/LVMrout1"], ["https://tec.openplanner.team/stops/Clgpavi1", "https://tec.openplanner.team/stops/Clgrsoc1"], ["https://tec.openplanner.team/stops/X664aea", "https://tec.openplanner.team/stops/X664afa"], ["https://tec.openplanner.team/stops/Cjuaero1", "https://tec.openplanner.team/stops/Cjuaero4"], ["https://tec.openplanner.team/stops/LLnec--2", "https://tec.openplanner.team/stops/LOeelbe1"], ["https://tec.openplanner.team/stops/N204ada", "https://tec.openplanner.team/stops/N205abb"], ["https://tec.openplanner.team/stops/H3lr121a", "https://tec.openplanner.team/stops/H3lr121b"], ["https://tec.openplanner.team/stops/H1cu108b", "https://tec.openplanner.team/stops/H1cu126b"], ["https://tec.openplanner.team/stops/X747aca", "https://tec.openplanner.team/stops/X747adb"], ["https://tec.openplanner.team/stops/X608ama", "https://tec.openplanner.team/stops/X608aoa"], ["https://tec.openplanner.team/stops/LGAholl1", "https://tec.openplanner.team/stops/LGAholl2"], ["https://tec.openplanner.team/stops/H4lp121b", "https://tec.openplanner.team/stops/H4mg139b"], ["https://tec.openplanner.team/stops/Lstchu-*", "https://tec.openplanner.team/stops/Lstchu-1"], ["https://tec.openplanner.team/stops/H4bu108a", "https://tec.openplanner.team/stops/H4hg158a"], ["https://tec.openplanner.team/stops/LHocroi1", "https://tec.openplanner.team/stops/LHoetie1"], ["https://tec.openplanner.team/stops/Cnating2", "https://tec.openplanner.team/stops/N160afa"], ["https://tec.openplanner.team/stops/Ljecocc1", "https://tec.openplanner.team/stops/Ljecoqu2"], ["https://tec.openplanner.team/stops/H4oe148a", "https://tec.openplanner.team/stops/H4oe148b"], ["https://tec.openplanner.team/stops/X738aca", "https://tec.openplanner.team/stops/X739alb"], ["https://tec.openplanner.team/stops/Caccera2", "https://tec.openplanner.team/stops/Cbfchla2"], ["https://tec.openplanner.team/stops/X869ada", "https://tec.openplanner.team/stops/X870adb"], ["https://tec.openplanner.team/stops/Broncan1", "https://tec.openplanner.team/stops/Bronrch2"], ["https://tec.openplanner.team/stops/N113abb", "https://tec.openplanner.team/stops/N139abb"], ["https://tec.openplanner.team/stops/LMfeg--2", "https://tec.openplanner.team/stops/LMfsart1"], ["https://tec.openplanner.team/stops/H1ht124b", "https://tec.openplanner.team/stops/H1ht132b"], ["https://tec.openplanner.team/stops/H4mo192a", "https://tec.openplanner.team/stops/H4mo195a"], ["https://tec.openplanner.team/stops/LSCeg--1", "https://tec.openplanner.team/stops/LSCeg--3"], ["https://tec.openplanner.team/stops/LAWjaur1", "https://tec.openplanner.team/stops/LAWmc--4"], ["https://tec.openplanner.team/stops/H5rx132a", "https://tec.openplanner.team/stops/H5rx132b"], ["https://tec.openplanner.team/stops/Bwatcha1", "https://tec.openplanner.team/stops/Bwatcha2"], ["https://tec.openplanner.team/stops/N569ama", "https://tec.openplanner.team/stops/N569anb"], ["https://tec.openplanner.team/stops/Berncim1", "https://tec.openplanner.team/stops/Berncim4"], ["https://tec.openplanner.team/stops/X999agb", "https://tec.openplanner.team/stops/X999aja"], ["https://tec.openplanner.team/stops/LREsp302", "https://tec.openplanner.team/stops/LREsp901"], ["https://tec.openplanner.team/stops/Crcgare2", "https://tec.openplanner.team/stops/NH03afa"], ["https://tec.openplanner.team/stops/H5at118b", "https://tec.openplanner.team/stops/H5at134a"], ["https://tec.openplanner.team/stops/LnDrund2", "https://tec.openplanner.team/stops/LnDthel2"], ["https://tec.openplanner.team/stops/Lghfore1", "https://tec.openplanner.team/stops/Lghfore3"], ["https://tec.openplanner.team/stops/H1ha195a", "https://tec.openplanner.team/stops/H1ha195b"], ["https://tec.openplanner.team/stops/Bbchgod1", "https://tec.openplanner.team/stops/Bbchume2"], ["https://tec.openplanner.team/stops/H2hg147a", "https://tec.openplanner.team/stops/H2hg156b"], ["https://tec.openplanner.team/stops/X601bea", "https://tec.openplanner.team/stops/X601cza"], ["https://tec.openplanner.team/stops/X820afa", "https://tec.openplanner.team/stops/X820afb"], ["https://tec.openplanner.team/stops/Cmmplac2", "https://tec.openplanner.team/stops/Cmmplac3"], ["https://tec.openplanner.team/stops/X725aba", "https://tec.openplanner.team/stops/X754axb"], ["https://tec.openplanner.team/stops/LCxcham2", "https://tec.openplanner.team/stops/LCxhall1"], ["https://tec.openplanner.team/stops/Cstmarz2", "https://tec.openplanner.team/stops/H1tt104b"], ["https://tec.openplanner.team/stops/Lvtbocl1", "https://tec.openplanner.team/stops/Lvtlomb4"], ["https://tec.openplanner.team/stops/LHUmess1", "https://tec.openplanner.team/stops/LTicime1"], ["https://tec.openplanner.team/stops/N118anb", "https://tec.openplanner.team/stops/N118aob"], ["https://tec.openplanner.team/stops/NC14aaa", "https://tec.openplanner.team/stops/NC44aha"], ["https://tec.openplanner.team/stops/Lbopote2", "https://tec.openplanner.team/stops/Lsefore2"], ["https://tec.openplanner.team/stops/H1ro131a", "https://tec.openplanner.team/stops/H1ro131b"], ["https://tec.openplanner.team/stops/X659aaa", "https://tec.openplanner.team/stops/X659aab"], ["https://tec.openplanner.team/stops/NH01akb", "https://tec.openplanner.team/stops/NH01alb"], ["https://tec.openplanner.team/stops/LNCloui1", "https://tec.openplanner.team/stops/LNCneuv1"], ["https://tec.openplanner.team/stops/Lhr2ave2", "https://tec.openplanner.team/stops/Lhr4ave1"], ["https://tec.openplanner.team/stops/Lligare1", "https://tec.openplanner.team/stops/Llivina1"], ["https://tec.openplanner.team/stops/NL76aib", "https://tec.openplanner.team/stops/NL76ala"], ["https://tec.openplanner.team/stops/X762aea", "https://tec.openplanner.team/stops/X762aeb"], ["https://tec.openplanner.team/stops/Cdacolu2", "https://tec.openplanner.team/stops/Cdamare2"], ["https://tec.openplanner.team/stops/Llgnico1", "https://tec.openplanner.team/stops/Llgsnap1"], ["https://tec.openplanner.team/stops/H1bn113b", "https://tec.openplanner.team/stops/H1qy133b"], ["https://tec.openplanner.team/stops/X601cgb", "https://tec.openplanner.team/stops/X662aia"], ["https://tec.openplanner.team/stops/LTHroch1", "https://tec.openplanner.team/stops/LTHroch2"], ["https://tec.openplanner.team/stops/LBVcent1", "https://tec.openplanner.team/stops/LBVcent2"], ["https://tec.openplanner.team/stops/H5rx138a", "https://tec.openplanner.team/stops/H5rx151a"], ["https://tec.openplanner.team/stops/Bettlha1", "https://tec.openplanner.team/stops/Bettlha2"], ["https://tec.openplanner.team/stops/N135aed", "https://tec.openplanner.team/stops/N135aoa"], ["https://tec.openplanner.team/stops/N225aeb", "https://tec.openplanner.team/stops/N225aha"], ["https://tec.openplanner.team/stops/LMfeg--1", "https://tec.openplanner.team/stops/LMfsart1"], ["https://tec.openplanner.team/stops/Cfanvmo2", "https://tec.openplanner.team/stops/Cpibois2"], ["https://tec.openplanner.team/stops/N209aic", "https://tec.openplanner.team/stops/N209aid"], ["https://tec.openplanner.team/stops/X837afa", "https://tec.openplanner.team/stops/X837ala"], ["https://tec.openplanner.team/stops/N151abb", "https://tec.openplanner.team/stops/N151aka"], ["https://tec.openplanner.team/stops/Ccycont1", "https://tec.openplanner.team/stops/Cfcchas2"], ["https://tec.openplanner.team/stops/Lvecote2", "https://tec.openplanner.team/stops/Lvepris1"], ["https://tec.openplanner.team/stops/N501lpa", "https://tec.openplanner.team/stops/N501lqb"], ["https://tec.openplanner.team/stops/N204aea", "https://tec.openplanner.team/stops/N204afa"], ["https://tec.openplanner.team/stops/N337aia", "https://tec.openplanner.team/stops/N337aib"], ["https://tec.openplanner.team/stops/H4ff115a", "https://tec.openplanner.team/stops/H4ff121b"], ["https://tec.openplanner.team/stops/X724aea", "https://tec.openplanner.team/stops/X724aib"], ["https://tec.openplanner.team/stops/LAIrout1", "https://tec.openplanner.team/stops/LAIrout2"], ["https://tec.openplanner.team/stops/Becepon1", "https://tec.openplanner.team/stops/H2ec112a"], ["https://tec.openplanner.team/stops/Canecbr1", "https://tec.openplanner.team/stops/Canvane2"], ["https://tec.openplanner.team/stops/X663aub", "https://tec.openplanner.team/stops/X664asa"], ["https://tec.openplanner.team/stops/H1ba105b", "https://tec.openplanner.team/stops/H1ba118a"], ["https://tec.openplanner.team/stops/N543baa", "https://tec.openplanner.team/stops/N543bia"], ["https://tec.openplanner.team/stops/X788aaa", "https://tec.openplanner.team/stops/X788abc"], ["https://tec.openplanner.team/stops/Lanhoud2", "https://tec.openplanner.team/stops/Lannico2"], ["https://tec.openplanner.team/stops/LVSpn--2", "https://tec.openplanner.team/stops/LVStige2"], ["https://tec.openplanner.team/stops/LeUmalm1", "https://tec.openplanner.team/stops/LeUwais1"], ["https://tec.openplanner.team/stops/X769apb", "https://tec.openplanner.team/stops/X769aqb"], ["https://tec.openplanner.team/stops/Loubiez1", "https://tec.openplanner.team/stops/Louvira1"], ["https://tec.openplanner.team/stops/Lsecris1", "https://tec.openplanner.team/stops/Lsepudd2"], ["https://tec.openplanner.team/stops/Lalbout2", "https://tec.openplanner.team/stops/Lalhomb1"], ["https://tec.openplanner.team/stops/N368aea", "https://tec.openplanner.team/stops/N368afa"], ["https://tec.openplanner.team/stops/N101aab", "https://tec.openplanner.team/stops/N101aba"], ["https://tec.openplanner.team/stops/CMmoul1", "https://tec.openplanner.team/stops/Cmomoul6"], ["https://tec.openplanner.team/stops/Lsnlhon1", "https://tec.openplanner.team/stops/Lsnlhon2"], ["https://tec.openplanner.team/stops/LPOeg--2", "https://tec.openplanner.team/stops/LPOthom1"], ["https://tec.openplanner.team/stops/LHVetoi2", "https://tec.openplanner.team/stops/LHVgoro2"], ["https://tec.openplanner.team/stops/LLrchat2", "https://tec.openplanner.team/stops/LLrmeno2"], ["https://tec.openplanner.team/stops/LCUjonc2", "https://tec.openplanner.team/stops/LCUmora2"], ["https://tec.openplanner.team/stops/X633ajc", "https://tec.openplanner.team/stops/X654aib"], ["https://tec.openplanner.team/stops/LPAmosa1", "https://tec.openplanner.team/stops/LPAvill1"], ["https://tec.openplanner.team/stops/H4rx175a", "https://tec.openplanner.team/stops/H4rx175b"], ["https://tec.openplanner.team/stops/Cnanoir2", "https://tec.openplanner.team/stops/Cnaplha1"], ["https://tec.openplanner.team/stops/X899aea", "https://tec.openplanner.team/stops/X899aeb"], ["https://tec.openplanner.team/stops/N229ala", "https://tec.openplanner.team/stops/N229ama"], ["https://tec.openplanner.team/stops/H4ro154b", "https://tec.openplanner.team/stops/H4ro155a"], ["https://tec.openplanner.team/stops/H1pa104a", "https://tec.openplanner.team/stops/H1pa116b"], ["https://tec.openplanner.team/stops/Cgzchen2", "https://tec.openplanner.team/stops/Cthha502"], ["https://tec.openplanner.team/stops/N301ajb", "https://tec.openplanner.team/stops/N302aba"], ["https://tec.openplanner.team/stops/H4mv192a", "https://tec.openplanner.team/stops/H4oe150a"], ["https://tec.openplanner.team/stops/X993aaa", "https://tec.openplanner.team/stops/X993aha"], ["https://tec.openplanner.team/stops/Cbmpopr1", "https://tec.openplanner.team/stops/H1bt100a"], ["https://tec.openplanner.team/stops/Bboseco1", "https://tec.openplanner.team/stops/Bbosgar2"], ["https://tec.openplanner.team/stops/LTPabat2", "https://tec.openplanner.team/stops/LTPbode1"], ["https://tec.openplanner.team/stops/Cmypela2", "https://tec.openplanner.team/stops/Cmyvesa3"], ["https://tec.openplanner.team/stops/Bgdhlai2", "https://tec.openplanner.team/stops/Bthspha1"], ["https://tec.openplanner.team/stops/Bcrbgro2", "https://tec.openplanner.team/stops/Bcrbros1"], ["https://tec.openplanner.team/stops/N501dhb", "https://tec.openplanner.team/stops/N501leb"], ["https://tec.openplanner.team/stops/N514aaa", "https://tec.openplanner.team/stops/N514aoa"], ["https://tec.openplanner.team/stops/H1ma234a", "https://tec.openplanner.team/stops/H1mj124b"], ["https://tec.openplanner.team/stops/N260aba", "https://tec.openplanner.team/stops/N270aaa"], ["https://tec.openplanner.team/stops/Bzluegl2", "https://tec.openplanner.team/stops/Bzluqga2"], ["https://tec.openplanner.team/stops/N507afb", "https://tec.openplanner.team/stops/N507ajb"], ["https://tec.openplanner.team/stops/LBNplei1", "https://tec.openplanner.team/stops/LBNvill1"], ["https://tec.openplanner.team/stops/N548amb", "https://tec.openplanner.team/stops/N548asb"], ["https://tec.openplanner.team/stops/N537aia", "https://tec.openplanner.team/stops/N537ala"], ["https://tec.openplanner.team/stops/LWabela2", "https://tec.openplanner.team/stops/LWargeu2"], ["https://tec.openplanner.team/stops/X618aaa", "https://tec.openplanner.team/stops/X625afb"], ["https://tec.openplanner.team/stops/X770aaa", "https://tec.openplanner.team/stops/X770aab"], ["https://tec.openplanner.team/stops/Cfoermi1", "https://tec.openplanner.team/stops/Cfogaul1"], ["https://tec.openplanner.team/stops/N351aka", "https://tec.openplanner.team/stops/N351ala"], ["https://tec.openplanner.team/stops/LMgbatt2", "https://tec.openplanner.team/stops/LMgkrui1"], ["https://tec.openplanner.team/stops/X639abb", "https://tec.openplanner.team/stops/X639aca"], ["https://tec.openplanner.team/stops/Bthsset1", "https://tec.openplanner.team/stops/NL37aja"], ["https://tec.openplanner.team/stops/Btlbgla1", "https://tec.openplanner.team/stops/Btlbgla2"], ["https://tec.openplanner.team/stops/LBrneli1", "https://tec.openplanner.team/stops/LMApape2"], ["https://tec.openplanner.team/stops/H1ob330b", "https://tec.openplanner.team/stops/H1ob339b"], ["https://tec.openplanner.team/stops/N232ceb", "https://tec.openplanner.team/stops/N260acb"], ["https://tec.openplanner.team/stops/Cfmchap1", "https://tec.openplanner.team/stops/Cptberg1"], ["https://tec.openplanner.team/stops/Bmrlhan3", "https://tec.openplanner.team/stops/Bmrlnce1"], ["https://tec.openplanner.team/stops/N235adb", "https://tec.openplanner.team/stops/N235afb"], ["https://tec.openplanner.team/stops/N512aea", "https://tec.openplanner.team/stops/N512afb"], ["https://tec.openplanner.team/stops/LPUchpl2", "https://tec.openplanner.team/stops/LPUmang2"], ["https://tec.openplanner.team/stops/H1sb149b", "https://tec.openplanner.team/stops/H1sb151b"], ["https://tec.openplanner.team/stops/Beclpla2", "https://tec.openplanner.team/stops/H2ec102a"], ["https://tec.openplanner.team/stops/Ccppn2", "https://tec.openplanner.team/stops/H2ch125a"], ["https://tec.openplanner.team/stops/Cmmami1", "https://tec.openplanner.team/stops/Cmmn1171"], ["https://tec.openplanner.team/stops/N569aia", "https://tec.openplanner.team/stops/N571afb"], ["https://tec.openplanner.team/stops/LWDbure1", "https://tec.openplanner.team/stops/LWDbure2"], ["https://tec.openplanner.team/stops/X802aqa", "https://tec.openplanner.team/stops/X802aub"], ["https://tec.openplanner.team/stops/Bcbqcoi2", "https://tec.openplanner.team/stops/Bcbqrog1"], ["https://tec.openplanner.team/stops/LWalyce2", "https://tec.openplanner.team/stops/LWapl--1"], ["https://tec.openplanner.team/stops/N308aba", "https://tec.openplanner.team/stops/N308bfb"], ["https://tec.openplanner.team/stops/LHMbami1", "https://tec.openplanner.team/stops/LSIespe1"], ["https://tec.openplanner.team/stops/LNEolne1", "https://tec.openplanner.team/stops/LNEtonv2"], ["https://tec.openplanner.team/stops/Bboupde1", "https://tec.openplanner.team/stops/Bcsemar2"], ["https://tec.openplanner.team/stops/H1be102a", "https://tec.openplanner.team/stops/H1be103a"], ["https://tec.openplanner.team/stops/N331ada", "https://tec.openplanner.team/stops/N331adb"], ["https://tec.openplanner.team/stops/H4ga165a", "https://tec.openplanner.team/stops/H4ga165b"], ["https://tec.openplanner.team/stops/LLGramk1", "https://tec.openplanner.team/stops/LLGramk2"], ["https://tec.openplanner.team/stops/LPLg90-2", "https://tec.openplanner.team/stops/LPLroth2"], ["https://tec.openplanner.team/stops/N202aab", "https://tec.openplanner.team/stops/N203ada"], ["https://tec.openplanner.team/stops/H1ho142a", "https://tec.openplanner.team/stops/H1wg127a"], ["https://tec.openplanner.team/stops/H1fl136b", "https://tec.openplanner.team/stops/H1fl142b"], ["https://tec.openplanner.team/stops/H4mx116a", "https://tec.openplanner.team/stops/H4po129b"], ["https://tec.openplanner.team/stops/X602abb", "https://tec.openplanner.team/stops/X602adb"], ["https://tec.openplanner.team/stops/X768aea", "https://tec.openplanner.team/stops/X768aeb"], ["https://tec.openplanner.team/stops/Cfcrerp1", "https://tec.openplanner.team/stops/N103aeb"], ["https://tec.openplanner.team/stops/Lvegc--6", "https://tec.openplanner.team/stops/Lvegc--7"], ["https://tec.openplanner.team/stops/N562afb", "https://tec.openplanner.team/stops/N562bha"], ["https://tec.openplanner.team/stops/LRuegli1", "https://tec.openplanner.team/stops/LRuegli2"], ["https://tec.openplanner.team/stops/X666aka", "https://tec.openplanner.team/stops/X729aab"], ["https://tec.openplanner.team/stops/N531ala", "https://tec.openplanner.team/stops/N531arb"], ["https://tec.openplanner.team/stops/H2ha129e", "https://tec.openplanner.team/stops/H2ha137b"], ["https://tec.openplanner.team/stops/Bincfer2", "https://tec.openplanner.team/stops/Bptbmco2"], ["https://tec.openplanner.team/stops/Lbrbass1", "https://tec.openplanner.team/stops/Lgrspir1"], ["https://tec.openplanner.team/stops/LkEherg1", "https://tec.openplanner.team/stops/LVAgemm1"], ["https://tec.openplanner.team/stops/X820aaa", "https://tec.openplanner.team/stops/X822ama"], ["https://tec.openplanner.team/stops/LeYdepo2", "https://tec.openplanner.team/stops/LeYfeld1"], ["https://tec.openplanner.team/stops/Bbougbl1", "https://tec.openplanner.team/stops/Bbougbl2"], ["https://tec.openplanner.team/stops/Lvoeg--1", "https://tec.openplanner.team/stops/Lvoeg--2"], ["https://tec.openplanner.team/stops/NL77alb", "https://tec.openplanner.team/stops/NL78akb"], ["https://tec.openplanner.team/stops/LThbatt1", "https://tec.openplanner.team/stops/LThchar2"], ["https://tec.openplanner.team/stops/X773aka", "https://tec.openplanner.team/stops/X773alb"], ["https://tec.openplanner.team/stops/Cfcecol4", "https://tec.openplanner.team/stops/Cvretan2"], ["https://tec.openplanner.team/stops/N230aga", "https://tec.openplanner.team/stops/N230aja"], ["https://tec.openplanner.team/stops/Bnivn971", "https://tec.openplanner.team/stops/Bnivn972"], ["https://tec.openplanner.team/stops/X601bca", "https://tec.openplanner.team/stops/X601bcb"], ["https://tec.openplanner.team/stops/N132aaa", "https://tec.openplanner.team/stops/N132aab"], ["https://tec.openplanner.team/stops/X813aca", "https://tec.openplanner.team/stops/X813acb"], ["https://tec.openplanner.team/stops/LNCvill2", "https://tec.openplanner.team/stops/LNCvill3"], ["https://tec.openplanner.team/stops/LkAbahn*", "https://tec.openplanner.team/stops/LkAmess1"], ["https://tec.openplanner.team/stops/Llgbavi4", "https://tec.openplanner.team/stops/Llgphol3"], ["https://tec.openplanner.team/stops/N501bkb", "https://tec.openplanner.team/stops/N501bqb"], ["https://tec.openplanner.team/stops/Cci28ju1", "https://tec.openplanner.team/stops/Cci28ju2"], ["https://tec.openplanner.team/stops/N512anb", "https://tec.openplanner.team/stops/N512aob"], ["https://tec.openplanner.team/stops/Lbrboul1", "https://tec.openplanner.team/stops/Lbrcard1"], ["https://tec.openplanner.team/stops/H1fr113b", "https://tec.openplanner.team/stops/H1fr130a"], ["https://tec.openplanner.team/stops/Llieg--3", "https://tec.openplanner.team/stops/Llivina1"], ["https://tec.openplanner.team/stops/H4co106a", "https://tec.openplanner.team/stops/H4co106d"], ["https://tec.openplanner.team/stops/LtH28a-1", "https://tec.openplanner.team/stops/LtH28a-2"], ["https://tec.openplanner.team/stops/H1sg142a", "https://tec.openplanner.team/stops/H1sg150a"], ["https://tec.openplanner.team/stops/Bhmmhde1", "https://tec.openplanner.team/stops/Bhmmjco1"], ["https://tec.openplanner.team/stops/X818agb", "https://tec.openplanner.team/stops/X818aha"], ["https://tec.openplanner.team/stops/N515aia", "https://tec.openplanner.team/stops/N515aib"], ["https://tec.openplanner.team/stops/N150afa", "https://tec.openplanner.team/stops/N150aja"], ["https://tec.openplanner.team/stops/Llgjoie3", "https://tec.openplanner.team/stops/Llgjoie4"], ["https://tec.openplanner.team/stops/Ceqmeti1", "https://tec.openplanner.team/stops/H1er105a"], ["https://tec.openplanner.team/stops/X824ajb", "https://tec.openplanner.team/stops/X825aga"], ["https://tec.openplanner.team/stops/N528ara", "https://tec.openplanner.team/stops/N528arb"], ["https://tec.openplanner.team/stops/H1fl138a", "https://tec.openplanner.team/stops/H1fl142a"], ["https://tec.openplanner.team/stops/X991aea", "https://tec.openplanner.team/stops/X991aka"], ["https://tec.openplanner.team/stops/LLrscie1", "https://tec.openplanner.team/stops/LLrscie2"], ["https://tec.openplanner.team/stops/LAUbour3", "https://tec.openplanner.team/stops/LAUcose2"], ["https://tec.openplanner.team/stops/X801agb", "https://tec.openplanner.team/stops/X801aha"], ["https://tec.openplanner.team/stops/Bmlnbpr1", "https://tec.openplanner.team/stops/Bmlnsmv1"], ["https://tec.openplanner.team/stops/H4bi100a", "https://tec.openplanner.team/stops/H4bi100b"], ["https://tec.openplanner.team/stops/H3so168a", "https://tec.openplanner.team/stops/H3so174b"], ["https://tec.openplanner.team/stops/Cdapige1", "https://tec.openplanner.team/stops/Cdapige2"], ["https://tec.openplanner.team/stops/H2mm136a", "https://tec.openplanner.team/stops/H2mo123a"], ["https://tec.openplanner.team/stops/H4te254a", "https://tec.openplanner.team/stops/H4te254b"], ["https://tec.openplanner.team/stops/Btgrdoc1", "https://tec.openplanner.team/stops/N584caa"], ["https://tec.openplanner.team/stops/LVRchpl1", "https://tec.openplanner.team/stops/X782afa"], ["https://tec.openplanner.team/stops/LaAmise2", "https://tec.openplanner.team/stops/LVAbuss1"], ["https://tec.openplanner.team/stops/N509aca", "https://tec.openplanner.team/stops/N509aqb"], ["https://tec.openplanner.team/stops/LOmmer-1", "https://tec.openplanner.team/stops/LOmrela1"], ["https://tec.openplanner.team/stops/Cjugill6", "https://tec.openplanner.team/stops/Cjupui02"], ["https://tec.openplanner.team/stops/Bhoealt1", "https://tec.openplanner.team/stops/Bpiesta2"], ["https://tec.openplanner.team/stops/Bclgbvi1", "https://tec.openplanner.team/stops/Bwavdmo1"], ["https://tec.openplanner.team/stops/H4mt214a", "https://tec.openplanner.team/stops/H4ru235a"], ["https://tec.openplanner.team/stops/N229aha", "https://tec.openplanner.team/stops/N229aob"], ["https://tec.openplanner.team/stops/Lfhbott2", "https://tec.openplanner.team/stops/Lfhcime1"], ["https://tec.openplanner.team/stops/Benimar2", "https://tec.openplanner.team/stops/Bmrlsau1"], ["https://tec.openplanner.team/stops/NL78adb", "https://tec.openplanner.team/stops/NL78aeb"], ["https://tec.openplanner.team/stops/Lseresi1", "https://tec.openplanner.team/stops/Lseresi2"], ["https://tec.openplanner.team/stops/Cjualtr2", "https://tec.openplanner.team/stops/Cjutrou1"], ["https://tec.openplanner.team/stops/LLevaux2", "https://tec.openplanner.team/stops/X547adb"], ["https://tec.openplanner.team/stops/LWEfati2", "https://tec.openplanner.team/stops/LWEwilc2"], ["https://tec.openplanner.team/stops/LCFeg--1", "https://tec.openplanner.team/stops/LHaxhig1"], ["https://tec.openplanner.team/stops/LkEgss-2", "https://tec.openplanner.team/stops/LkEsada1"], ["https://tec.openplanner.team/stops/H1gh149b", "https://tec.openplanner.team/stops/H1gh365a"], ["https://tec.openplanner.team/stops/X734aka", "https://tec.openplanner.team/stops/X734anc"], ["https://tec.openplanner.team/stops/Lalverr1", "https://tec.openplanner.team/stops/Llabrou1"], ["https://tec.openplanner.team/stops/X736abb", "https://tec.openplanner.team/stops/X952acb"], ["https://tec.openplanner.team/stops/H1qu100a", "https://tec.openplanner.team/stops/H1qu100c"], ["https://tec.openplanner.team/stops/X725aaa", "https://tec.openplanner.team/stops/X725aab"], ["https://tec.openplanner.team/stops/X877aaa", "https://tec.openplanner.team/stops/X877aea"], ["https://tec.openplanner.team/stops/Bqueblo1", "https://tec.openplanner.team/stops/Bquepos1"], ["https://tec.openplanner.team/stops/X788abe", "https://tec.openplanner.team/stops/X789ahd"], ["https://tec.openplanner.team/stops/H2pr114b", "https://tec.openplanner.team/stops/H2pr118b"], ["https://tec.openplanner.team/stops/Lpeprev1", "https://tec.openplanner.team/stops/Lpesart1"], ["https://tec.openplanner.team/stops/Lbhhomv2", "https://tec.openplanner.team/stops/Lbhmc--1"], ["https://tec.openplanner.team/stops/X633acb", "https://tec.openplanner.team/stops/X633akb"], ["https://tec.openplanner.team/stops/H1mj132b", "https://tec.openplanner.team/stops/H1ni319a"], ["https://tec.openplanner.team/stops/LLVfour1", "https://tec.openplanner.team/stops/X575afb"], ["https://tec.openplanner.team/stops/X371aaa", "https://tec.openplanner.team/stops/X371aba"], ["https://tec.openplanner.team/stops/NH01aia", "https://tec.openplanner.team/stops/NH01aua"], ["https://tec.openplanner.team/stops/X725ama", "https://tec.openplanner.team/stops/X725ana"], ["https://tec.openplanner.team/stops/Lsetrav1", "https://tec.openplanner.team/stops/Lsetrav2"], ["https://tec.openplanner.team/stops/X858aaa", "https://tec.openplanner.team/stops/X858aab"], ["https://tec.openplanner.team/stops/LHEgare1", "https://tec.openplanner.team/stops/LHEgare2"], ["https://tec.openplanner.team/stops/H2le146a", "https://tec.openplanner.team/stops/H2le148a"], ["https://tec.openplanner.team/stops/X760aeb", "https://tec.openplanner.team/stops/X762ada"], ["https://tec.openplanner.team/stops/N529ada", "https://tec.openplanner.team/stops/N529aia"], ["https://tec.openplanner.team/stops/X857aba", "https://tec.openplanner.team/stops/X857abb"], ["https://tec.openplanner.team/stops/LBNgarn1", "https://tec.openplanner.team/stops/LeUcamp2"], ["https://tec.openplanner.team/stops/H4ne132a", "https://tec.openplanner.team/stops/H4ne132b"], ["https://tec.openplanner.team/stops/LFMveur1", "https://tec.openplanner.team/stops/LFPkape4"], ["https://tec.openplanner.team/stops/Cplcite2", "https://tec.openplanner.team/stops/Cpllimi5"], ["https://tec.openplanner.team/stops/N230alb", "https://tec.openplanner.team/stops/N549aib"], ["https://tec.openplanner.team/stops/LPctrog1", "https://tec.openplanner.team/stops/LVPbleh2"], ["https://tec.openplanner.team/stops/LBNruns1", "https://tec.openplanner.team/stops/LMemaza2"], ["https://tec.openplanner.team/stops/H1ms257b", "https://tec.openplanner.team/stops/H1ms279b"], ["https://tec.openplanner.team/stops/N309aac", "https://tec.openplanner.team/stops/N309abb"], ["https://tec.openplanner.team/stops/Cnadepo1", "https://tec.openplanner.team/stops/Cnafont1"], ["https://tec.openplanner.team/stops/LAascie2", "https://tec.openplanner.team/stops/LBoegli1"], ["https://tec.openplanner.team/stops/N348ada", "https://tec.openplanner.team/stops/N352abb"], ["https://tec.openplanner.team/stops/Bgemgjo1", "https://tec.openplanner.team/stops/N522bvc"], ["https://tec.openplanner.team/stops/X754afa", "https://tec.openplanner.team/stops/X754aga"], ["https://tec.openplanner.team/stops/Blhumpo3", "https://tec.openplanner.team/stops/Blhumpo4"], ["https://tec.openplanner.team/stops/Bbiefon1", "https://tec.openplanner.team/stops/Bbsggot2"], ["https://tec.openplanner.team/stops/LPRbayb1", "https://tec.openplanner.team/stops/LPRbayb2"], ["https://tec.openplanner.team/stops/Bmlncle2", "https://tec.openplanner.team/stops/Bmlnsms1"], ["https://tec.openplanner.team/stops/H4mo138a", "https://tec.openplanner.team/stops/H4mo169a"], ["https://tec.openplanner.team/stops/H1ca102a", "https://tec.openplanner.team/stops/H3so153a"], ["https://tec.openplanner.team/stops/H1bi104b", "https://tec.openplanner.team/stops/H1bu139a"], ["https://tec.openplanner.team/stops/LVlleme2", "https://tec.openplanner.team/stops/LVlroua4"], ["https://tec.openplanner.team/stops/N501cza", "https://tec.openplanner.team/stops/N528aga"], ["https://tec.openplanner.team/stops/Bllngar2", "https://tec.openplanner.team/stops/Bllngar6"], ["https://tec.openplanner.team/stops/LaAmise2", "https://tec.openplanner.team/stops/LaAseba2"], ["https://tec.openplanner.team/stops/Cclchap1", "https://tec.openplanner.team/stops/Ctuplac2"], ["https://tec.openplanner.team/stops/Cnacroc1", "https://tec.openplanner.team/stops/Cnacroc2"], ["https://tec.openplanner.team/stops/X942aaa", "https://tec.openplanner.team/stops/X943aeb"], ["https://tec.openplanner.team/stops/Cmyedpa1", "https://tec.openplanner.team/stops/Cmyland4"], ["https://tec.openplanner.team/stops/N532aaa", "https://tec.openplanner.team/stops/N532aba"], ["https://tec.openplanner.team/stops/LbUwhon2", "https://tec.openplanner.team/stops/LhDkreu4"], ["https://tec.openplanner.team/stops/H1hl126a", "https://tec.openplanner.team/stops/H1vs146b"], ["https://tec.openplanner.team/stops/H4mo148a", "https://tec.openplanner.team/stops/H4mo205a"], ["https://tec.openplanner.team/stops/Crajasm2", "https://tec.openplanner.team/stops/Crapaep1"], ["https://tec.openplanner.team/stops/LHYdogn2", "https://tec.openplanner.team/stops/LSEquar1"], ["https://tec.openplanner.team/stops/H4ca121a", "https://tec.openplanner.team/stops/H4ca121b"], ["https://tec.openplanner.team/stops/H4ch120c", "https://tec.openplanner.team/stops/H4vx364c"], ["https://tec.openplanner.team/stops/LeLbutg1", "https://tec.openplanner.team/stops/LeLbutg3"], ["https://tec.openplanner.team/stops/N506bja", "https://tec.openplanner.team/stops/N506bka"], ["https://tec.openplanner.team/stops/X982cea", "https://tec.openplanner.team/stops/X996ada"], ["https://tec.openplanner.team/stops/X605aba", "https://tec.openplanner.team/stops/X605ala"], ["https://tec.openplanner.team/stops/N531agb", "https://tec.openplanner.team/stops/N531aia"], ["https://tec.openplanner.team/stops/H1mh115b", "https://tec.openplanner.team/stops/H1po132b"], ["https://tec.openplanner.team/stops/Bflcneu1", "https://tec.openplanner.team/stops/N515afa"], ["https://tec.openplanner.team/stops/Llgbavr1", "https://tec.openplanner.team/stops/Llgbruy1"], ["https://tec.openplanner.team/stops/Blasbpr2", "https://tec.openplanner.team/stops/Blasvil1"], ["https://tec.openplanner.team/stops/N121aga", "https://tec.openplanner.team/stops/N121agb"], ["https://tec.openplanner.team/stops/Bhptcha1", "https://tec.openplanner.team/stops/Broncli1"], ["https://tec.openplanner.team/stops/X725awa", "https://tec.openplanner.team/stops/X725aza"], ["https://tec.openplanner.team/stops/H4ft132a", "https://tec.openplanner.team/stops/H4ft133b"], ["https://tec.openplanner.team/stops/X542aha", "https://tec.openplanner.team/stops/X777abb"], ["https://tec.openplanner.team/stops/X609aqa", "https://tec.openplanner.team/stops/X631aca"], ["https://tec.openplanner.team/stops/LNCsera2", "https://tec.openplanner.team/stops/LNCspor2"], ["https://tec.openplanner.team/stops/N143aaa", "https://tec.openplanner.team/stops/N143aab"], ["https://tec.openplanner.team/stops/Cgzabau3", "https://tec.openplanner.team/stops/Cgzoctr1"], ["https://tec.openplanner.team/stops/X750axa", "https://tec.openplanner.team/stops/X750bia"], ["https://tec.openplanner.team/stops/Lengran1", "https://tec.openplanner.team/stops/Lveoctr1"], ["https://tec.openplanner.team/stops/Lcalaro1", "https://tec.openplanner.team/stops/Lrofont1"], ["https://tec.openplanner.team/stops/X641ama", "https://tec.openplanner.team/stops/X641amb"], ["https://tec.openplanner.team/stops/N506agb", "https://tec.openplanner.team/stops/N506ala"], ["https://tec.openplanner.team/stops/H4os223a", "https://tec.openplanner.team/stops/H5at129b"], ["https://tec.openplanner.team/stops/H1hr118b", "https://tec.openplanner.team/stops/H3so156a"], ["https://tec.openplanner.team/stops/LCocasc2", "https://tec.openplanner.team/stops/LTPlegr2"], ["https://tec.openplanner.team/stops/N501iua", "https://tec.openplanner.team/stops/N501iub"], ["https://tec.openplanner.team/stops/H4to134b", "https://tec.openplanner.team/stops/H4to138b"], ["https://tec.openplanner.team/stops/Cfabaty4", "https://tec.openplanner.team/stops/Cflmart2"], ["https://tec.openplanner.team/stops/H4ga147a", "https://tec.openplanner.team/stops/H4ga152a"], ["https://tec.openplanner.team/stops/X602aia", "https://tec.openplanner.team/stops/X602ajb"], ["https://tec.openplanner.team/stops/NL74aac", "https://tec.openplanner.team/stops/NL74aad"], ["https://tec.openplanner.team/stops/H1cu126b", "https://tec.openplanner.team/stops/H1cu131a"], ["https://tec.openplanner.team/stops/LaSkape2", "https://tec.openplanner.team/stops/LlNm%C3%BChl1"], ["https://tec.openplanner.team/stops/LFTec--1", "https://tec.openplanner.team/stops/LFTec--3"], ["https://tec.openplanner.team/stops/LCTmonu1", "https://tec.openplanner.team/stops/LCTmonu2"], ["https://tec.openplanner.team/stops/Cjxdesc2", "https://tec.openplanner.team/stops/Cnapetr1"], ["https://tec.openplanner.team/stops/N207aea", "https://tec.openplanner.team/stops/N207aeb"], ["https://tec.openplanner.team/stops/N229atb", "https://tec.openplanner.team/stops/N540apb"], ["https://tec.openplanner.team/stops/Canchbr2", "https://tec.openplanner.team/stops/Canjonc1"], ["https://tec.openplanner.team/stops/Bcrbbou2", "https://tec.openplanner.team/stops/Bcrbhir1"], ["https://tec.openplanner.team/stops/LbTcarm2", "https://tec.openplanner.team/stops/LbTdoma2"], ["https://tec.openplanner.team/stops/X390aib", "https://tec.openplanner.team/stops/X390apa"], ["https://tec.openplanner.team/stops/X624aea", "https://tec.openplanner.team/stops/X624afa"], ["https://tec.openplanner.team/stops/LSSeg--2", "https://tec.openplanner.team/stops/LYEphar2"], ["https://tec.openplanner.team/stops/X982apb", "https://tec.openplanner.team/stops/X982axb"], ["https://tec.openplanner.team/stops/N201aha", "https://tec.openplanner.team/stops/N201aqb"], ["https://tec.openplanner.team/stops/H5wo134a", "https://tec.openplanner.team/stops/H5wo134b"], ["https://tec.openplanner.team/stops/LFPkast1", "https://tec.openplanner.team/stops/LFPkast2"], ["https://tec.openplanner.team/stops/Cgyruis1", "https://tec.openplanner.team/stops/Cgyruis2"], ["https://tec.openplanner.team/stops/Chhplbe1", "https://tec.openplanner.team/stops/Chhthui1"], ["https://tec.openplanner.team/stops/X902ana", "https://tec.openplanner.team/stops/X902apa"], ["https://tec.openplanner.team/stops/Bvlvbth1", "https://tec.openplanner.team/stops/Bvlvpco1"], ["https://tec.openplanner.team/stops/Bbosdra1", "https://tec.openplanner.team/stops/Btiegoo1"], ["https://tec.openplanner.team/stops/LbUhons2", "https://tec.openplanner.team/stops/LbUkrei*"], ["https://tec.openplanner.team/stops/N505aha", "https://tec.openplanner.team/stops/N505ahb"], ["https://tec.openplanner.team/stops/LThhoul2", "https://tec.openplanner.team/stops/LThsere1"], ["https://tec.openplanner.team/stops/H4ty322a", "https://tec.openplanner.team/stops/H4ty322b"], ["https://tec.openplanner.team/stops/N301abd", "https://tec.openplanner.team/stops/N301aca"], ["https://tec.openplanner.team/stops/Cjubert1", "https://tec.openplanner.team/stops/Cjubert2"], ["https://tec.openplanner.team/stops/H1gr122a", "https://tec.openplanner.team/stops/H1mk116b"], ["https://tec.openplanner.team/stops/X994ama", "https://tec.openplanner.team/stops/X994amb"], ["https://tec.openplanner.team/stops/H1fl137a", "https://tec.openplanner.team/stops/H1fl137b"], ["https://tec.openplanner.team/stops/Bbiehss2", "https://tec.openplanner.team/stops/Bptbsar2"], ["https://tec.openplanner.team/stops/X618afb", "https://tec.openplanner.team/stops/X696ada"], ["https://tec.openplanner.team/stops/Cfocobe1", "https://tec.openplanner.team/stops/Cfocobe2"], ["https://tec.openplanner.team/stops/X921afb", "https://tec.openplanner.team/stops/X921agb"], ["https://tec.openplanner.team/stops/N524aab", "https://tec.openplanner.team/stops/N525ajb"], ["https://tec.openplanner.team/stops/LBiberg1", "https://tec.openplanner.team/stops/LDOgare1"], ["https://tec.openplanner.team/stops/H1mk113a", "https://tec.openplanner.team/stops/H1mk113b"], ["https://tec.openplanner.team/stops/X979afa", "https://tec.openplanner.team/stops/X979afb"], ["https://tec.openplanner.team/stops/LtEnach1", "https://tec.openplanner.team/stops/LtEnach2"], ["https://tec.openplanner.team/stops/H1cu129a", "https://tec.openplanner.team/stops/H1fr151b"], ["https://tec.openplanner.team/stops/X822aib", "https://tec.openplanner.team/stops/X836afb"], ["https://tec.openplanner.team/stops/Bucccre1", "https://tec.openplanner.team/stops/Bucccre2"], ["https://tec.openplanner.team/stops/H1ro133a", "https://tec.openplanner.team/stops/H1ro140a"], ["https://tec.openplanner.team/stops/Lbrchur1", "https://tec.openplanner.team/stops/Lbrchur2"], ["https://tec.openplanner.team/stops/H3lr111a", "https://tec.openplanner.team/stops/H3lr117a"], ["https://tec.openplanner.team/stops/Bwatmch2", "https://tec.openplanner.team/stops/Bwatpct1"], ["https://tec.openplanner.team/stops/LVlfooz1", "https://tec.openplanner.team/stops/LVlledo2"], ["https://tec.openplanner.team/stops/H4tp145a", "https://tec.openplanner.team/stops/H4tp145b"], ["https://tec.openplanner.team/stops/N530aga", "https://tec.openplanner.team/stops/N561aea"], ["https://tec.openplanner.team/stops/Llgdoth2", "https://tec.openplanner.team/stops/Llghopo1"], ["https://tec.openplanner.team/stops/X982bub", "https://tec.openplanner.team/stops/X982bxb"], ["https://tec.openplanner.team/stops/X777acb", "https://tec.openplanner.team/stops/X784aab"], ["https://tec.openplanner.team/stops/X715adb", "https://tec.openplanner.team/stops/X715ala"], ["https://tec.openplanner.team/stops/LOmlime1", "https://tec.openplanner.team/stops/LOmvill3"], ["https://tec.openplanner.team/stops/H4cr110a", "https://tec.openplanner.team/stops/H4ff120a"], ["https://tec.openplanner.team/stops/X889acb", "https://tec.openplanner.team/stops/X889adb"], ["https://tec.openplanner.team/stops/N166aba", "https://tec.openplanner.team/stops/N166acb"], ["https://tec.openplanner.team/stops/Lsedavy1", "https://tec.openplanner.team/stops/Lsevico2"], ["https://tec.openplanner.team/stops/Lstchim2", "https://tec.openplanner.team/stops/Lstphys1"], ["https://tec.openplanner.team/stops/LAUcarr2", "https://tec.openplanner.team/stops/LAUross1"], ["https://tec.openplanner.team/stops/Ladfoot1", "https://tec.openplanner.team/stops/Ladhomb2"], ["https://tec.openplanner.team/stops/LSNnoul1", "https://tec.openplanner.team/stops/LSNretr1"], ["https://tec.openplanner.team/stops/Btlbtho2", "https://tec.openplanner.team/stops/NB33aeb"], ["https://tec.openplanner.team/stops/N205ada", "https://tec.openplanner.team/stops/N219aba"], ["https://tec.openplanner.team/stops/H4lz118b", "https://tec.openplanner.team/stops/H4lz157a"], ["https://tec.openplanner.team/stops/Cdahtvi2", "https://tec.openplanner.team/stops/Clolidl1"], ["https://tec.openplanner.team/stops/LHUneuv1", "https://tec.openplanner.team/stops/LHUneuv2"], ["https://tec.openplanner.team/stops/LFRhock3", "https://tec.openplanner.team/stops/LHcbaro1"], ["https://tec.openplanner.team/stops/H1ni318a", "https://tec.openplanner.team/stops/H1ni321a"], ["https://tec.openplanner.team/stops/N235aaa", "https://tec.openplanner.team/stops/N235aab"], ["https://tec.openplanner.team/stops/LAx17--1", "https://tec.openplanner.team/stops/LAx17--2"], ["https://tec.openplanner.team/stops/N501gma", "https://tec.openplanner.team/stops/N501gva"], ["https://tec.openplanner.team/stops/N423aea", "https://tec.openplanner.team/stops/NH01abc"], ["https://tec.openplanner.team/stops/X824adb", "https://tec.openplanner.team/stops/X824aed"], ["https://tec.openplanner.team/stops/H1ev114b", "https://tec.openplanner.team/stops/H1ev115b"], ["https://tec.openplanner.team/stops/N122aab", "https://tec.openplanner.team/stops/N122acb"], ["https://tec.openplanner.team/stops/Barqbar1", "https://tec.openplanner.team/stops/Barqbco2"], ["https://tec.openplanner.team/stops/Clbhvil1", "https://tec.openplanner.team/stops/H1lo119a"], ["https://tec.openplanner.team/stops/H4mo151a", "https://tec.openplanner.team/stops/H4mo190b"], ["https://tec.openplanner.team/stops/Cfrbrin1", "https://tec.openplanner.team/stops/Cfrcoop4"], ["https://tec.openplanner.team/stops/Llgongr1", "https://tec.openplanner.team/stops/Llgongr3"], ["https://tec.openplanner.team/stops/Cfcbobr2", "https://tec.openplanner.team/stops/Cfcbosq2"], ["https://tec.openplanner.team/stops/H4bf107b", "https://tec.openplanner.team/stops/H4bs114a"], ["https://tec.openplanner.team/stops/Ccybeau1", "https://tec.openplanner.team/stops/Ccyrmon1"], ["https://tec.openplanner.team/stops/H1pd145a", "https://tec.openplanner.team/stops/H1wa159a"], ["https://tec.openplanner.team/stops/H1ha184a", "https://tec.openplanner.team/stops/H1ha187a"], ["https://tec.openplanner.team/stops/Bhalath1", "https://tec.openplanner.team/stops/Blkbavo2"], ["https://tec.openplanner.team/stops/Lstbold1", "https://tec.openplanner.team/stops/Lstvill2"], ["https://tec.openplanner.team/stops/LrApley1", "https://tec.openplanner.team/stops/LrAtitf1"], ["https://tec.openplanner.team/stops/H1ca106b", "https://tec.openplanner.team/stops/H1th183a"], ["https://tec.openplanner.team/stops/H5is169b", "https://tec.openplanner.team/stops/H5la177a"], ["https://tec.openplanner.team/stops/Cmcgoch2", "https://tec.openplanner.team/stops/Cmgpla2"], ["https://tec.openplanner.team/stops/LLR4bra2", "https://tec.openplanner.team/stops/LLRvill2"], ["https://tec.openplanner.team/stops/H4ne143b", "https://tec.openplanner.team/stops/H4wa159b"], ["https://tec.openplanner.team/stops/Cctpche1", "https://tec.openplanner.team/stops/NC44aea"], ["https://tec.openplanner.team/stops/H4er122b", "https://tec.openplanner.team/stops/H4ty329a"], ["https://tec.openplanner.team/stops/Bhercsj1", "https://tec.openplanner.team/stops/Bpiesta1"], ["https://tec.openplanner.team/stops/H2be101a", "https://tec.openplanner.team/stops/H2fy122a"], ["https://tec.openplanner.team/stops/X888aba", "https://tec.openplanner.team/stops/X888aga"], ["https://tec.openplanner.team/stops/LTPbode2", "https://tec.openplanner.team/stops/LTPhenr2"], ["https://tec.openplanner.team/stops/H4pp122a", "https://tec.openplanner.team/stops/H4pp122b"], ["https://tec.openplanner.team/stops/Cvp3til1", "https://tec.openplanner.team/stops/Cvpplan1"], ["https://tec.openplanner.team/stops/H1me112b", "https://tec.openplanner.team/stops/H1me113b"], ["https://tec.openplanner.team/stops/LiVkreu2", "https://tec.openplanner.team/stops/LiVkreu4"], ["https://tec.openplanner.team/stops/LhGfrie1", "https://tec.openplanner.team/stops/LkEhatt2"], ["https://tec.openplanner.team/stops/LaAburt2", "https://tec.openplanner.team/stops/LaAkapi1"], ["https://tec.openplanner.team/stops/LHAclin2", "https://tec.openplanner.team/stops/LVIvert1"], ["https://tec.openplanner.team/stops/LLrpape3", "https://tec.openplanner.team/stops/LLrpape4"], ["https://tec.openplanner.team/stops/H1hn207b", "https://tec.openplanner.team/stops/H1sp355a"], ["https://tec.openplanner.team/stops/X901beb", "https://tec.openplanner.team/stops/X901bja"], ["https://tec.openplanner.team/stops/H4ty265a", "https://tec.openplanner.team/stops/H4ty354a"], ["https://tec.openplanner.team/stops/LMschap2", "https://tec.openplanner.team/stops/LMsgara1"], ["https://tec.openplanner.team/stops/Lenclar1", "https://tec.openplanner.team/stops/Llmbell1"], ["https://tec.openplanner.team/stops/X614aba", "https://tec.openplanner.team/stops/X614amb"], ["https://tec.openplanner.team/stops/LaMades2", "https://tec.openplanner.team/stops/LmYeich1"], ["https://tec.openplanner.team/stops/X673ada", "https://tec.openplanner.team/stops/X673aea"], ["https://tec.openplanner.team/stops/Cplrond2", "https://tec.openplanner.team/stops/Cplstfa2"], ["https://tec.openplanner.team/stops/H1fr119a", "https://tec.openplanner.team/stops/H1fr131a"], ["https://tec.openplanner.team/stops/X908aha", "https://tec.openplanner.team/stops/X908apb"], ["https://tec.openplanner.team/stops/Bbsifmo2", "https://tec.openplanner.team/stops/Bbsihau2"], ["https://tec.openplanner.team/stops/H4mo156a", "https://tec.openplanner.team/stops/H4mo156b"], ["https://tec.openplanner.team/stops/Lflmc--1", "https://tec.openplanner.team/stops/Lflterm1"], ["https://tec.openplanner.team/stops/H4bh103a", "https://tec.openplanner.team/stops/H4ry141b"], ["https://tec.openplanner.team/stops/LMOpiss1", "https://tec.openplanner.team/stops/LMOpiss2"], ["https://tec.openplanner.team/stops/X804aza", "https://tec.openplanner.team/stops/X804azb"], ["https://tec.openplanner.team/stops/LHUeuro2", "https://tec.openplanner.team/stops/LHUeuro4"], ["https://tec.openplanner.team/stops/Bwatlbr1", "https://tec.openplanner.team/stops/Bwatlbr2"], ["https://tec.openplanner.team/stops/H5el112b", "https://tec.openplanner.team/stops/H5el116a"], ["https://tec.openplanner.team/stops/LThchar1", "https://tec.openplanner.team/stops/LThnouv1"], ["https://tec.openplanner.team/stops/LBUmara3", "https://tec.openplanner.team/stops/LBUrout1"], ["https://tec.openplanner.team/stops/Clbchar1", "https://tec.openplanner.team/stops/Clbhour2"], ["https://tec.openplanner.team/stops/LBvviem2", "https://tec.openplanner.team/stops/LBvviem3"], ["https://tec.openplanner.team/stops/LtHkirc3", "https://tec.openplanner.team/stops/LtHkirc4"], ["https://tec.openplanner.team/stops/H1mb130a", "https://tec.openplanner.team/stops/H1mb136a"], ["https://tec.openplanner.team/stops/LHDchar4", "https://tec.openplanner.team/stops/LLmeg--1"], ["https://tec.openplanner.team/stops/LBoegli1", "https://tec.openplanner.team/stops/X223acb"], ["https://tec.openplanner.team/stops/LWRcruc2", "https://tec.openplanner.team/stops/LWRpl--2"], ["https://tec.openplanner.team/stops/N103adb", "https://tec.openplanner.team/stops/N106afa"], ["https://tec.openplanner.team/stops/H1wa154a", "https://tec.openplanner.team/stops/H1wa158a"], ["https://tec.openplanner.team/stops/LPLcarr3", "https://tec.openplanner.team/stops/LPLcroi2"], ["https://tec.openplanner.team/stops/LBKmoes1", "https://tec.openplanner.team/stops/LOehart1"], ["https://tec.openplanner.team/stops/N243aaa", "https://tec.openplanner.team/stops/N243aea"], ["https://tec.openplanner.team/stops/LSCc39-2", "https://tec.openplanner.team/stops/LSCeg--2"], ["https://tec.openplanner.team/stops/LEMgren*", "https://tec.openplanner.team/stops/LPleclu2"], ["https://tec.openplanner.team/stops/X638aha", "https://tec.openplanner.team/stops/X638akb"], ["https://tec.openplanner.team/stops/LMAcime1", "https://tec.openplanner.team/stops/LMAptne2"], ["https://tec.openplanner.team/stops/N510ada", "https://tec.openplanner.team/stops/N510adb"], ["https://tec.openplanner.team/stops/Bsenbmc1", "https://tec.openplanner.team/stops/H2mg135a"], ["https://tec.openplanner.team/stops/H1eu102a", "https://tec.openplanner.team/stops/H1pa166b"], ["https://tec.openplanner.team/stops/Bplnfpa1", "https://tec.openplanner.team/stops/Clpalli1"], ["https://tec.openplanner.team/stops/H1bn113b", "https://tec.openplanner.team/stops/H1qg138c"], ["https://tec.openplanner.team/stops/Cbiferm2", "https://tec.openplanner.team/stops/Cbimonu2"], ["https://tec.openplanner.team/stops/LTEkl122", "https://tec.openplanner.team/stops/LTEziho1"], ["https://tec.openplanner.team/stops/Cjxegli2", "https://tec.openplanner.team/stops/Cjxthom2"], ["https://tec.openplanner.team/stops/X673aaa", "https://tec.openplanner.team/stops/X673abb"], ["https://tec.openplanner.team/stops/Bolgegl1", "https://tec.openplanner.team/stops/Bolgsha1"], ["https://tec.openplanner.team/stops/X773aja", "https://tec.openplanner.team/stops/X773ajb"], ["https://tec.openplanner.team/stops/N530ahb", "https://tec.openplanner.team/stops/N561aea"], ["https://tec.openplanner.team/stops/Cbfchla1", "https://tec.openplanner.team/stops/Cbfchla2"], ["https://tec.openplanner.team/stops/Llxec--1", "https://tec.openplanner.team/stops/LSAvieu1"], ["https://tec.openplanner.team/stops/N513atb", "https://tec.openplanner.team/stops/N513avb"], ["https://tec.openplanner.team/stops/Cctptsa1", "https://tec.openplanner.team/stops/Ccu6bra5"], ["https://tec.openplanner.team/stops/H1je216a", "https://tec.openplanner.team/stops/H1qu112b"], ["https://tec.openplanner.team/stops/H1je213b", "https://tec.openplanner.team/stops/H1je222b"], ["https://tec.openplanner.team/stops/H1og135a", "https://tec.openplanner.team/stops/H5wo124a"], ["https://tec.openplanner.team/stops/N531aja", "https://tec.openplanner.team/stops/N531aoa"], ["https://tec.openplanner.team/stops/H2sv215a", "https://tec.openplanner.team/stops/H2sv220b"], ["https://tec.openplanner.team/stops/LPReg--1", "https://tec.openplanner.team/stops/Lrofont*"], ["https://tec.openplanner.team/stops/N528acb", "https://tec.openplanner.team/stops/N528ada"], ["https://tec.openplanner.team/stops/H4am113a", "https://tec.openplanner.team/stops/H4an112b"], ["https://tec.openplanner.team/stops/Cmadeli2", "https://tec.openplanner.team/stops/Cmastfi2"], ["https://tec.openplanner.team/stops/Lchpniv1", "https://tec.openplanner.team/stops/Lchstat*"], ["https://tec.openplanner.team/stops/N535apa", "https://tec.openplanner.team/stops/N535apb"], ["https://tec.openplanner.team/stops/X801aya", "https://tec.openplanner.team/stops/X801ayb"], ["https://tec.openplanner.team/stops/Lpeprev2", "https://tec.openplanner.team/stops/Lpesart1"], ["https://tec.openplanner.team/stops/H1so135b", "https://tec.openplanner.team/stops/H1so135c"], ["https://tec.openplanner.team/stops/Ccivill1", "https://tec.openplanner.team/stops/Ccivill2"], ["https://tec.openplanner.team/stops/LHUdeni3", "https://tec.openplanner.team/stops/LHUfonc2"], ["https://tec.openplanner.team/stops/N510abb", "https://tec.openplanner.team/stops/N510acb"], ["https://tec.openplanner.team/stops/Bhengri2", "https://tec.openplanner.team/stops/Bvircsj1"], ["https://tec.openplanner.team/stops/Cgonvro1", "https://tec.openplanner.team/stops/Cgonvro3"], ["https://tec.openplanner.team/stops/X801cgb", "https://tec.openplanner.team/stops/X801cja"], ["https://tec.openplanner.team/stops/X747acb", "https://tec.openplanner.team/stops/X747afb"], ["https://tec.openplanner.team/stops/LOReg--1", "https://tec.openplanner.team/stops/LOReg--2"], ["https://tec.openplanner.team/stops/LaFbruc1", "https://tec.openplanner.team/stops/LhMwing2"], ["https://tec.openplanner.team/stops/H4pl117a", "https://tec.openplanner.team/stops/H4pl135a"], ["https://tec.openplanner.team/stops/Bbstfch1", "https://tec.openplanner.team/stops/Bbstfch2"], ["https://tec.openplanner.team/stops/X663ara", "https://tec.openplanner.team/stops/X664arb"], ["https://tec.openplanner.team/stops/X623aib", "https://tec.openplanner.team/stops/X624aab"], ["https://tec.openplanner.team/stops/Bgrmfga2", "https://tec.openplanner.team/stops/Bgrmpsn2"], ["https://tec.openplanner.team/stops/Cfaterg3", "https://tec.openplanner.team/stops/Crs74em4"], ["https://tec.openplanner.team/stops/N565afa", "https://tec.openplanner.team/stops/N565aka"], ["https://tec.openplanner.team/stops/Cpibois1", "https://tec.openplanner.team/stops/Cpictra1"], ["https://tec.openplanner.team/stops/LNEtonv1", "https://tec.openplanner.team/stops/LOLfoss2"], ["https://tec.openplanner.team/stops/N573acb", "https://tec.openplanner.team/stops/N573adb"], ["https://tec.openplanner.team/stops/Bjcljau1", "https://tec.openplanner.team/stops/Bjdsbro1"], ["https://tec.openplanner.team/stops/N543cqa", "https://tec.openplanner.team/stops/N543cqb"], ["https://tec.openplanner.team/stops/X608arb", "https://tec.openplanner.team/stops/X608asb"], ["https://tec.openplanner.team/stops/Lghberl1", "https://tec.openplanner.team/stops/Ljecocc1"], ["https://tec.openplanner.team/stops/H4ar100b", "https://tec.openplanner.team/stops/H4ar173a"], ["https://tec.openplanner.team/stops/LbTaral2", "https://tec.openplanner.team/stops/LbTgeme2"], ["https://tec.openplanner.team/stops/LAumari1", "https://tec.openplanner.team/stops/LWRtroi1"], ["https://tec.openplanner.team/stops/LSZclem1", "https://tec.openplanner.team/stops/LSZnive2"], ["https://tec.openplanner.team/stops/LAWaube1", "https://tec.openplanner.team/stops/LAWcite2"], ["https://tec.openplanner.team/stops/LkAsonn2", "https://tec.openplanner.team/stops/LmHperl2"], ["https://tec.openplanner.team/stops/H3so159a", "https://tec.openplanner.team/stops/H3so159b"], ["https://tec.openplanner.team/stops/H1bo108a", "https://tec.openplanner.team/stops/H1bo112a"], ["https://tec.openplanner.team/stops/LVEdTEC1", "https://tec.openplanner.team/stops/LVEdTEC2"], ["https://tec.openplanner.team/stops/Becepon1", "https://tec.openplanner.team/stops/Becepon2"], ["https://tec.openplanner.team/stops/H2ca101a", "https://tec.openplanner.team/stops/H2ca101b"], ["https://tec.openplanner.team/stops/N515akb", "https://tec.openplanner.team/stops/N515akc"], ["https://tec.openplanner.team/stops/LHrbast2", "https://tec.openplanner.team/stops/LHrchez2"], ["https://tec.openplanner.team/stops/X775aia", "https://tec.openplanner.team/stops/X775aib"], ["https://tec.openplanner.team/stops/N162aab", "https://tec.openplanner.team/stops/NC28agb"], ["https://tec.openplanner.team/stops/H4co110b", "https://tec.openplanner.team/stops/H4co141a"], ["https://tec.openplanner.team/stops/LSoeg--2", "https://tec.openplanner.team/stops/LtEnach1"], ["https://tec.openplanner.team/stops/LbThau11", "https://tec.openplanner.team/stops/LsHfrie2"], ["https://tec.openplanner.team/stops/Bmsgaxp2", "https://tec.openplanner.team/stops/Bmsgrco1"], ["https://tec.openplanner.team/stops/H4do106a", "https://tec.openplanner.team/stops/H4mo195b"], ["https://tec.openplanner.team/stops/Cgocalv1", "https://tec.openplanner.team/stops/Cgocalv6"], ["https://tec.openplanner.team/stops/LlgCATH1", "https://tec.openplanner.team/stops/LlgPTAV4"], ["https://tec.openplanner.team/stops/Llgbois2", "https://tec.openplanner.team/stops/Llgverg1"], ["https://tec.openplanner.team/stops/LRRcarr1", "https://tec.openplanner.team/stops/LRRlimi2"], ["https://tec.openplanner.team/stops/H4bc102a", "https://tec.openplanner.team/stops/H4wr175a"], ["https://tec.openplanner.team/stops/Cwfghis2", "https://tec.openplanner.team/stops/Cwfmonu2"], ["https://tec.openplanner.team/stops/LMOcorn4", "https://tec.openplanner.team/stops/LMOf35-1"], ["https://tec.openplanner.team/stops/Cmgbrou2", "https://tec.openplanner.team/stops/Cmghay1"], ["https://tec.openplanner.team/stops/N230aba", "https://tec.openplanner.team/stops/N230abb"], ["https://tec.openplanner.team/stops/LCSfagn1", "https://tec.openplanner.team/stops/LCShoux1"], ["https://tec.openplanner.team/stops/Cobcent1", "https://tec.openplanner.team/stops/Cobmven1"], ["https://tec.openplanner.team/stops/Ltichif2", "https://tec.openplanner.team/stops/Ltipass1"], ["https://tec.openplanner.team/stops/H4er122a", "https://tec.openplanner.team/stops/H4gu109a"], ["https://tec.openplanner.team/stops/LMYchpl2", "https://tec.openplanner.team/stops/LMYlieg2"], ["https://tec.openplanner.team/stops/Bcrbgro1", "https://tec.openplanner.team/stops/Bcrbgro2"], ["https://tec.openplanner.team/stops/N543bab", "https://tec.openplanner.team/stops/N543bbc"], ["https://tec.openplanner.team/stops/Cmacoll1", "https://tec.openplanner.team/stops/Cmapeet1"], ["https://tec.openplanner.team/stops/Bvirfpo2", "https://tec.openplanner.team/stops/Bvirgar1"], ["https://tec.openplanner.team/stops/Cjudaxi2", "https://tec.openplanner.team/stops/Cjudefi2"], ["https://tec.openplanner.team/stops/N521asd", "https://tec.openplanner.team/stops/N521ava"], ["https://tec.openplanner.team/stops/Bmrshan2", "https://tec.openplanner.team/stops/Bmrswag2"], ["https://tec.openplanner.team/stops/LOltill1", "https://tec.openplanner.team/stops/LOlvill2"], ["https://tec.openplanner.team/stops/N509aja", "https://tec.openplanner.team/stops/N509bda"], ["https://tec.openplanner.team/stops/Bsrgm101", "https://tec.openplanner.team/stops/Bsrgm102"], ["https://tec.openplanner.team/stops/LFslign1", "https://tec.openplanner.team/stops/LFsphar1"], ["https://tec.openplanner.team/stops/LSLhale1", "https://tec.openplanner.team/stops/LSLvaux1"], ["https://tec.openplanner.team/stops/N524aaa", "https://tec.openplanner.team/stops/N525aja"], ["https://tec.openplanner.team/stops/H1gh148a", "https://tec.openplanner.team/stops/H1gh165c"], ["https://tec.openplanner.team/stops/X636aia", "https://tec.openplanner.team/stops/X636bab"], ["https://tec.openplanner.team/stops/N519ala", "https://tec.openplanner.team/stops/N519alb"], ["https://tec.openplanner.team/stops/LmDkirc1", "https://tec.openplanner.team/stops/LmDwei32"], ["https://tec.openplanner.team/stops/Bwavfol1", "https://tec.openplanner.team/stops/Bwavlep1"], ["https://tec.openplanner.team/stops/Cflchap2", "https://tec.openplanner.team/stops/Cflchap3"], ["https://tec.openplanner.team/stops/Ccpblpo2", "https://tec.openplanner.team/stops/H2ch112b"], ["https://tec.openplanner.team/stops/X999ama", "https://tec.openplanner.team/stops/X999amb"], ["https://tec.openplanner.team/stops/Cjuchli1", "https://tec.openplanner.team/stops/Cjumall2"], ["https://tec.openplanner.team/stops/N511aib", "https://tec.openplanner.team/stops/N511alc"], ["https://tec.openplanner.team/stops/LWAor--2", "https://tec.openplanner.team/stops/LWAvand1"], ["https://tec.openplanner.team/stops/H1bo145b", "https://tec.openplanner.team/stops/H1ho123b"], ["https://tec.openplanner.team/stops/Bjodppe1", "https://tec.openplanner.team/stops/Bjodpvi1"], ["https://tec.openplanner.team/stops/LEHhaut1", "https://tec.openplanner.team/stops/LEHmarc1"], ["https://tec.openplanner.team/stops/LOdcris1", "https://tec.openplanner.team/stops/LVleg--1"], ["https://tec.openplanner.team/stops/H1mv241a", "https://tec.openplanner.team/stops/H1nv325b"], ["https://tec.openplanner.team/stops/H1nm138b", "https://tec.openplanner.team/stops/H1si157b"], ["https://tec.openplanner.team/stops/Bitrcha1", "https://tec.openplanner.team/stops/Bitrgnt1"], ["https://tec.openplanner.team/stops/Cbupla2", "https://tec.openplanner.team/stops/Cbuplac3"], ["https://tec.openplanner.team/stops/LSTcomm1", "https://tec.openplanner.team/stops/LSTcomm2"], ["https://tec.openplanner.team/stops/X601dba", "https://tec.openplanner.team/stops/X626abb"], ["https://tec.openplanner.team/stops/X911aia", "https://tec.openplanner.team/stops/X911arb"], ["https://tec.openplanner.team/stops/Crewaba2", "https://tec.openplanner.team/stops/Crewaha2"], ["https://tec.openplanner.team/stops/Lmogerm1", "https://tec.openplanner.team/stops/Lmolama1"], ["https://tec.openplanner.team/stops/Ljuplpr1", "https://tec.openplanner.team/stops/Ljuplpr2"], ["https://tec.openplanner.team/stops/X774ahb", "https://tec.openplanner.team/stops/X775aia"], ["https://tec.openplanner.team/stops/N501kba", "https://tec.openplanner.team/stops/N501kbb"], ["https://tec.openplanner.team/stops/Crchutt2", "https://tec.openplanner.team/stops/Crcrwas2"], ["https://tec.openplanner.team/stops/LATlena1", "https://tec.openplanner.team/stops/LATlena2"], ["https://tec.openplanner.team/stops/X615awb", "https://tec.openplanner.team/stops/X615bgb"], ["https://tec.openplanner.team/stops/LeI39--3", "https://tec.openplanner.team/stops/LeIkirr1"], ["https://tec.openplanner.team/stops/Canfief2", "https://tec.openplanner.team/stops/Canjonc1"], ["https://tec.openplanner.team/stops/Borbode1", "https://tec.openplanner.team/stops/Btslpic5"], ["https://tec.openplanner.team/stops/X615aha", "https://tec.openplanner.team/stops/X615aib"], ["https://tec.openplanner.team/stops/Bwatbce2", "https://tec.openplanner.team/stops/Bwatclo1"], ["https://tec.openplanner.team/stops/Lbrfune*", "https://tec.openplanner.team/stops/Ljulieg1"], ["https://tec.openplanner.team/stops/Bgercen2", "https://tec.openplanner.team/stops/NB33afa"], ["https://tec.openplanner.team/stops/Ctrstro1", "https://tec.openplanner.team/stops/Ctrterm2"], ["https://tec.openplanner.team/stops/X601bcb", "https://tec.openplanner.team/stops/X601bea"], ["https://tec.openplanner.team/stops/N340acc", "https://tec.openplanner.team/stops/N340adb"], ["https://tec.openplanner.team/stops/H2ha136a", "https://tec.openplanner.team/stops/H2ha136c"], ["https://tec.openplanner.team/stops/N522aha", "https://tec.openplanner.team/stops/N522aia"], ["https://tec.openplanner.team/stops/X765afa", "https://tec.openplanner.team/stops/X765aga"], ["https://tec.openplanner.team/stops/H4fl113a", "https://tec.openplanner.team/stops/H4fl114a"], ["https://tec.openplanner.team/stops/NL78abb", "https://tec.openplanner.team/stops/NL78ahb"], ["https://tec.openplanner.team/stops/LSOcime1", "https://tec.openplanner.team/stops/LSOferr6"], ["https://tec.openplanner.team/stops/X634aca", "https://tec.openplanner.team/stops/X634ala"], ["https://tec.openplanner.team/stops/Bbeabme2", "https://tec.openplanner.team/stops/Bbeaneu4"], ["https://tec.openplanner.team/stops/LaAbush*", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://tec.openplanner.team/stops/LGMvoue1", "https://tec.openplanner.team/stops/LGMvoue2"], ["https://tec.openplanner.team/stops/N232afa", "https://tec.openplanner.team/stops/N232aga"], ["https://tec.openplanner.team/stops/X818aga", "https://tec.openplanner.team/stops/X822ama"], ["https://tec.openplanner.team/stops/Canrtth1", "https://tec.openplanner.team/stops/Canrtth2"], ["https://tec.openplanner.team/stops/H1mb130b", "https://tec.openplanner.team/stops/H1mb136a"], ["https://tec.openplanner.team/stops/X768aba", "https://tec.openplanner.team/stops/X768acb"], ["https://tec.openplanner.team/stops/LPLc49-1", "https://tec.openplanner.team/stops/LPLc65-1"], ["https://tec.openplanner.team/stops/Llmdeba1", "https://tec.openplanner.team/stops/Lpecroi1"], ["https://tec.openplanner.team/stops/H2an109a", "https://tec.openplanner.team/stops/H2ml110a"], ["https://tec.openplanner.team/stops/Bbsicul1", "https://tec.openplanner.team/stops/Bbsihau2"], ["https://tec.openplanner.team/stops/Ljerobi1", "https://tec.openplanner.team/stops/Ljerobi2"], ["https://tec.openplanner.team/stops/Louhauf1", "https://tec.openplanner.team/stops/Louhauf2"], ["https://tec.openplanner.team/stops/H4av103a", "https://tec.openplanner.team/stops/H4av105b"], ["https://tec.openplanner.team/stops/Llglefe2", "https://tec.openplanner.team/stops/Llgwild6"], ["https://tec.openplanner.team/stops/Blanath1", "https://tec.openplanner.team/stops/Btiegma1"], ["https://tec.openplanner.team/stops/Blsmvan1", "https://tec.openplanner.team/stops/Bracrpe2"], ["https://tec.openplanner.team/stops/LHChoek4", "https://tec.openplanner.team/stops/LHChoof3"], ["https://tec.openplanner.team/stops/H1hc126b", "https://tec.openplanner.team/stops/H1po137a"], ["https://tec.openplanner.team/stops/H5rx114b", "https://tec.openplanner.team/stops/H5rx115a"], ["https://tec.openplanner.team/stops/N106aga", "https://tec.openplanner.team/stops/N106agb"], ["https://tec.openplanner.team/stops/X806aha", "https://tec.openplanner.team/stops/X806ahb"], ["https://tec.openplanner.team/stops/LrEkreu1", "https://tec.openplanner.team/stops/LrErauw2"], ["https://tec.openplanner.team/stops/LREairp1", "https://tec.openplanner.team/stops/LREraph1"], ["https://tec.openplanner.team/stops/H1by101b", "https://tec.openplanner.team/stops/H1by102a"], ["https://tec.openplanner.team/stops/X948apa", "https://tec.openplanner.team/stops/X948apb"], ["https://tec.openplanner.team/stops/Bhaless2", "https://tec.openplanner.team/stops/Bhalomo2"], ["https://tec.openplanner.team/stops/LSHfief2", "https://tec.openplanner.team/stops/LTRcarr1"], ["https://tec.openplanner.team/stops/H4ch113a", "https://tec.openplanner.team/stops/H4vx363b"], ["https://tec.openplanner.team/stops/H1pa105b", "https://tec.openplanner.team/stops/H1qu108b"], ["https://tec.openplanner.team/stops/LHTeg--1", "https://tec.openplanner.team/stops/LHTeg--2"], ["https://tec.openplanner.team/stops/X903aea", "https://tec.openplanner.team/stops/X943aaa"], ["https://tec.openplanner.team/stops/Bhalkrk1", "https://tec.openplanner.team/stops/Blkbbeu2"], ["https://tec.openplanner.team/stops/LBVclig2", "https://tec.openplanner.team/stops/LBVronx2"], ["https://tec.openplanner.team/stops/H4ss155a", "https://tec.openplanner.team/stops/H4ss158a"], ["https://tec.openplanner.team/stops/H4ga156a", "https://tec.openplanner.team/stops/H4ga414a"], ["https://tec.openplanner.team/stops/X652afb", "https://tec.openplanner.team/stops/X652aja"], ["https://tec.openplanner.team/stops/N141ahb", "https://tec.openplanner.team/stops/N141aib"], ["https://tec.openplanner.team/stops/Cflchel3", "https://tec.openplanner.team/stops/Cflchel5"], ["https://tec.openplanner.team/stops/N501ixd", "https://tec.openplanner.team/stops/N501jfa"], ["https://tec.openplanner.team/stops/NC02abb", "https://tec.openplanner.team/stops/NC24aib"], ["https://tec.openplanner.team/stops/Ldicorb2", "https://tec.openplanner.team/stops/Ldidefo2"], ["https://tec.openplanner.team/stops/H1pe130b", "https://tec.openplanner.team/stops/H1ry134b"], ["https://tec.openplanner.team/stops/LlNkirc1", "https://tec.openplanner.team/stops/LlNlont2"], ["https://tec.openplanner.team/stops/Bbonbcr2", "https://tec.openplanner.team/stops/Bboncha1"], ["https://tec.openplanner.team/stops/H4mt221a", "https://tec.openplanner.team/stops/H4mt222a"], ["https://tec.openplanner.team/stops/Bjancha1", "https://tec.openplanner.team/stops/Bolppsn1"], ["https://tec.openplanner.team/stops/LBoegli1", "https://tec.openplanner.team/stops/LOCerzy2"], ["https://tec.openplanner.team/stops/X636aoa", "https://tec.openplanner.team/stops/X636apa"], ["https://tec.openplanner.team/stops/N232cab", "https://tec.openplanner.team/stops/N232cda"], ["https://tec.openplanner.team/stops/X633ada", "https://tec.openplanner.team/stops/X633ala"], ["https://tec.openplanner.team/stops/Bglicsm1", "https://tec.openplanner.team/stops/Bglicsm2"], ["https://tec.openplanner.team/stops/X754abb", "https://tec.openplanner.team/stops/X754aca"], ["https://tec.openplanner.team/stops/LTB105-1", "https://tec.openplanner.team/stops/X714acb"], ["https://tec.openplanner.team/stops/H1ha190a", "https://tec.openplanner.team/stops/H1ha192b"], ["https://tec.openplanner.team/stops/LAYathe1", "https://tec.openplanner.team/stops/LAYpl--3"], ["https://tec.openplanner.team/stops/X783aba", "https://tec.openplanner.team/stops/X783aca"], ["https://tec.openplanner.team/stops/X925ahb", "https://tec.openplanner.team/stops/X925ala"], ["https://tec.openplanner.team/stops/Bbaucba2", "https://tec.openplanner.team/stops/Bnivpri2"], ["https://tec.openplanner.team/stops/Caih1632", "https://tec.openplanner.team/stops/Cairous1"], ["https://tec.openplanner.team/stops/H4do105a", "https://tec.openplanner.team/stops/H4do106b"], ["https://tec.openplanner.team/stops/N538acb", "https://tec.openplanner.team/stops/N538apb"], ["https://tec.openplanner.team/stops/X880aga", "https://tec.openplanner.team/stops/X880aha"], ["https://tec.openplanner.team/stops/Lprmoin2", "https://tec.openplanner.team/stops/Lprorem1"], ["https://tec.openplanner.team/stops/H1ch107a", "https://tec.openplanner.team/stops/H4ld123a"], ["https://tec.openplanner.team/stops/Crebien1", "https://tec.openplanner.team/stops/Crebien3"], ["https://tec.openplanner.team/stops/Bpercsp2", "https://tec.openplanner.team/stops/Bpermon4"], ["https://tec.openplanner.team/stops/LOnec--2", "https://tec.openplanner.team/stops/LXopier2"], ["https://tec.openplanner.team/stops/Blthbss2", "https://tec.openplanner.team/stops/Bmlnmbo1"], ["https://tec.openplanner.team/stops/N507aac", "https://tec.openplanner.team/stops/N507abb"], ["https://tec.openplanner.team/stops/LMgberw2", "https://tec.openplanner.team/stops/LVItcm-1"], ["https://tec.openplanner.team/stops/LJedonc2", "https://tec.openplanner.team/stops/LJedonc4"], ["https://tec.openplanner.team/stops/Blhusor1", "https://tec.openplanner.team/stops/Brsrfen2"], ["https://tec.openplanner.team/stops/X608aoa", "https://tec.openplanner.team/stops/X608ata"], ["https://tec.openplanner.team/stops/NC14ana", "https://tec.openplanner.team/stops/NC14anb"], ["https://tec.openplanner.team/stops/Cmlcazi1", "https://tec.openplanner.team/stops/Cmlcazi2"], ["https://tec.openplanner.team/stops/Cpthaud1", "https://tec.openplanner.team/stops/Cpthaud2"], ["https://tec.openplanner.team/stops/LBPunic2", "https://tec.openplanner.team/stops/LGLc12-3"], ["https://tec.openplanner.team/stops/N125aaa", "https://tec.openplanner.team/stops/N125aac"], ["https://tec.openplanner.team/stops/N505amb", "https://tec.openplanner.team/stops/N512aua"], ["https://tec.openplanner.team/stops/Ccurtra1", "https://tec.openplanner.team/stops/Ccurtra2"], ["https://tec.openplanner.team/stops/Cgrchea2", "https://tec.openplanner.team/stops/Cjochap1"], ["https://tec.openplanner.team/stops/N501aay", "https://tec.openplanner.team/stops/N501esb"], ["https://tec.openplanner.team/stops/X937aeb", "https://tec.openplanner.team/stops/X937akb"], ["https://tec.openplanner.team/stops/H1hr121b", "https://tec.openplanner.team/stops/H1hr121d"], ["https://tec.openplanner.team/stops/X730aaa", "https://tec.openplanner.team/stops/X731aia"], ["https://tec.openplanner.team/stops/Chhlori1", "https://tec.openplanner.team/stops/Cmx3arb1"], ["https://tec.openplanner.team/stops/X659ada", "https://tec.openplanner.team/stops/X659adc"], ["https://tec.openplanner.team/stops/X943ada", "https://tec.openplanner.team/stops/X943aea"], ["https://tec.openplanner.team/stops/LRGchap2", "https://tec.openplanner.team/stops/LRGmoul1"], ["https://tec.openplanner.team/stops/X750bja", "https://tec.openplanner.team/stops/X750bkb"], ["https://tec.openplanner.team/stops/Bgnvpap1", "https://tec.openplanner.team/stops/Brsrpar1"], ["https://tec.openplanner.team/stops/N534awc", "https://tec.openplanner.team/stops/N534cbh"], ["https://tec.openplanner.team/stops/X630abb", "https://tec.openplanner.team/stops/X631ada"], ["https://tec.openplanner.team/stops/N343aoa", "https://tec.openplanner.team/stops/N343aob"], ["https://tec.openplanner.team/stops/Bblaeur1", "https://tec.openplanner.team/stops/Bblamsj3"], ["https://tec.openplanner.team/stops/Bbougbl2", "https://tec.openplanner.team/stops/Btancre2"], ["https://tec.openplanner.team/stops/LBHhuyn1", "https://tec.openplanner.team/stops/LBHinva1"], ["https://tec.openplanner.team/stops/N553aka", "https://tec.openplanner.team/stops/N553ala"], ["https://tec.openplanner.team/stops/Bmlnegl4", "https://tec.openplanner.team/stops/Bmlngvi2"], ["https://tec.openplanner.team/stops/N141aha", "https://tec.openplanner.team/stops/N141ama"], ["https://tec.openplanner.team/stops/H2hp123d", "https://tec.openplanner.team/stops/H2hp261a"], ["https://tec.openplanner.team/stops/X801apb", "https://tec.openplanner.team/stops/X801avb"], ["https://tec.openplanner.team/stops/Cgxmorg1", "https://tec.openplanner.team/stops/Cgxptt1"], ["https://tec.openplanner.team/stops/Cgyhaie1", "https://tec.openplanner.team/stops/Cgymest2"], ["https://tec.openplanner.team/stops/LSGcolo2", "https://tec.openplanner.team/stops/LSkwarf4"], ["https://tec.openplanner.team/stops/H3bo101a", "https://tec.openplanner.team/stops/H3bo102b"], ["https://tec.openplanner.team/stops/LmD27--2", "https://tec.openplanner.team/stops/LwLkirc2"], ["https://tec.openplanner.team/stops/LaMhe421", "https://tec.openplanner.team/stops/LaMpost1"], ["https://tec.openplanner.team/stops/Lgrclas2", "https://tec.openplanner.team/stops/Lgrlimi4"], ["https://tec.openplanner.team/stops/LeUoe542", "https://tec.openplanner.team/stops/LeUwais2"], ["https://tec.openplanner.team/stops/H4ep130a", "https://tec.openplanner.team/stops/H4ep130b"], ["https://tec.openplanner.team/stops/N106aja", "https://tec.openplanner.team/stops/N106ajb"], ["https://tec.openplanner.team/stops/X713aha", "https://tec.openplanner.team/stops/X713ahb"], ["https://tec.openplanner.team/stops/N501lzb", "https://tec.openplanner.team/stops/N501lzy"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lhubouq1"], ["https://tec.openplanner.team/stops/X937abb", "https://tec.openplanner.team/stops/X938ada"], ["https://tec.openplanner.team/stops/LLrhest2", "https://tec.openplanner.team/stops/LTHturo4"], ["https://tec.openplanner.team/stops/H3th130b", "https://tec.openplanner.team/stops/H3th133a"], ["https://tec.openplanner.team/stops/H4mo146b", "https://tec.openplanner.team/stops/H4mo157a"], ["https://tec.openplanner.team/stops/Bmrleco1", "https://tec.openplanner.team/stops/Bmrlhan1"], ["https://tec.openplanner.team/stops/H1po154a", "https://tec.openplanner.team/stops/H1tl120b"], ["https://tec.openplanner.team/stops/H4hx115a", "https://tec.openplanner.team/stops/H4wa155a"], ["https://tec.openplanner.team/stops/N343acb", "https://tec.openplanner.team/stops/N343ala"], ["https://tec.openplanner.team/stops/N501ihb", "https://tec.openplanner.team/stops/N501ihy"], ["https://tec.openplanner.team/stops/N524abb", "https://tec.openplanner.team/stops/N524afb"], ["https://tec.openplanner.team/stops/LaUkirc*", "https://tec.openplanner.team/stops/LaUn1--3"], ["https://tec.openplanner.team/stops/H4og208a", "https://tec.openplanner.team/stops/H4og213a"], ["https://tec.openplanner.team/stops/Clb4bra2", "https://tec.openplanner.team/stops/Clbecol2"], ["https://tec.openplanner.team/stops/X664aia", "https://tec.openplanner.team/stops/X664akb"], ["https://tec.openplanner.team/stops/LAUvdab1", "https://tec.openplanner.team/stops/LWRtroi1"], ["https://tec.openplanner.team/stops/X318aca", "https://tec.openplanner.team/stops/X318ada"], ["https://tec.openplanner.team/stops/LBImili2", "https://tec.openplanner.team/stops/LBItnt-*"], ["https://tec.openplanner.team/stops/Cgdcent2", "https://tec.openplanner.team/stops/H1be103a"], ["https://tec.openplanner.team/stops/X721anb", "https://tec.openplanner.team/stops/X721atb"], ["https://tec.openplanner.team/stops/LVleg--1", "https://tec.openplanner.team/stops/LVleg--3"], ["https://tec.openplanner.team/stops/Lpeeg--1", "https://tec.openplanner.team/stops/Lpevesd2"], ["https://tec.openplanner.team/stops/Cgycorv1", "https://tec.openplanner.team/stops/Cgywaut2"], ["https://tec.openplanner.team/stops/X882aba", "https://tec.openplanner.team/stops/X882amd"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LCxchal1"], ["https://tec.openplanner.team/stops/Bhmmtou1", "https://tec.openplanner.team/stops/Btlgbro1"], ["https://tec.openplanner.team/stops/X811amb", "https://tec.openplanner.team/stops/X811aqb"], ["https://tec.openplanner.team/stops/LBPboir1", "https://tec.openplanner.team/stops/LBPboir2"], ["https://tec.openplanner.team/stops/H4av107b", "https://tec.openplanner.team/stops/H4ss154a"], ["https://tec.openplanner.team/stops/Bcerpco1", "https://tec.openplanner.team/stops/Bcerpco2"], ["https://tec.openplanner.team/stops/LeLzost1", "https://tec.openplanner.team/stops/LnIfrie1"], ["https://tec.openplanner.team/stops/H2bh109a", "https://tec.openplanner.team/stops/H2bh109b"], ["https://tec.openplanner.team/stops/LtHfrie2", "https://tec.openplanner.team/stops/LtHkreu4"], ["https://tec.openplanner.team/stops/Louduna*", "https://tec.openplanner.team/stops/Louhauf1"], ["https://tec.openplanner.team/stops/Cgxcite1", "https://tec.openplanner.team/stops/Cgxcite2"], ["https://tec.openplanner.team/stops/X912abb", "https://tec.openplanner.team/stops/X912akb"], ["https://tec.openplanner.team/stops/Blingar1", "https://tec.openplanner.team/stops/Bracrpe1"], ["https://tec.openplanner.team/stops/H1tt106a", "https://tec.openplanner.team/stops/H1tt109a"], ["https://tec.openplanner.team/stops/LOuouff1", "https://tec.openplanner.team/stops/X982ada"], ["https://tec.openplanner.team/stops/LBTxhen4", "https://tec.openplanner.team/stops/LHEelva2"], ["https://tec.openplanner.team/stops/Btslpbr1", "https://tec.openplanner.team/stops/Btslpbr2"], ["https://tec.openplanner.team/stops/LnUhohe1", "https://tec.openplanner.team/stops/LnUhohe2"], ["https://tec.openplanner.team/stops/H4ty274a", "https://tec.openplanner.team/stops/H4ty306a"], ["https://tec.openplanner.team/stops/Baudvdr1", "https://tec.openplanner.team/stops/Baudvdr2"], ["https://tec.openplanner.team/stops/X951acb", "https://tec.openplanner.team/stops/X985aab"], ["https://tec.openplanner.team/stops/LHdfays2", "https://tec.openplanner.team/stops/LVthest4"], ["https://tec.openplanner.team/stops/H2le151a", "https://tec.openplanner.team/stops/H2le176b"], ["https://tec.openplanner.team/stops/N338aab", "https://tec.openplanner.team/stops/N338aeb"], ["https://tec.openplanner.team/stops/H4ty272b", "https://tec.openplanner.team/stops/H4ty313b"], ["https://tec.openplanner.team/stops/N501izb", "https://tec.openplanner.team/stops/N501jca"], ["https://tec.openplanner.team/stops/LHUdeni4", "https://tec.openplanner.team/stops/LHUgodi1"], ["https://tec.openplanner.team/stops/LFocent2", "https://tec.openplanner.team/stops/LJAverv2"], ["https://tec.openplanner.team/stops/H1au100a", "https://tec.openplanner.team/stops/H1au100b"], ["https://tec.openplanner.team/stops/Lra4bra1", "https://tec.openplanner.team/stops/Lra4bra2"], ["https://tec.openplanner.team/stops/N368aab", "https://tec.openplanner.team/stops/N368afb"], ["https://tec.openplanner.team/stops/LMOchpl1", "https://tec.openplanner.team/stops/LMOcorn1"], ["https://tec.openplanner.team/stops/Lalmakr1", "https://tec.openplanner.team/stops/Lanyser1"], ["https://tec.openplanner.team/stops/LVLchem1", "https://tec.openplanner.team/stops/LVLhalb3"], ["https://tec.openplanner.team/stops/LATdieu1", "https://tec.openplanner.team/stops/LHUfali4"], ["https://tec.openplanner.team/stops/Bcharce1", "https://tec.openplanner.team/stops/Bvilcim1"], ["https://tec.openplanner.team/stops/H5pe153b", "https://tec.openplanner.team/stops/H5pe176a"], ["https://tec.openplanner.team/stops/Ccyga4", "https://tec.openplanner.team/stops/Ccygara1"], ["https://tec.openplanner.team/stops/Bitreco1", "https://tec.openplanner.team/stops/Bitrmon2"], ["https://tec.openplanner.team/stops/Ljumesa1", "https://tec.openplanner.team/stops/Ljupiet2"], ["https://tec.openplanner.team/stops/LbTgeme2", "https://tec.openplanner.team/stops/LwYboui2"], ["https://tec.openplanner.team/stops/Ladjaur1", "https://tec.openplanner.team/stops/Ladpire2"], ["https://tec.openplanner.team/stops/N529aja", "https://tec.openplanner.team/stops/N529aka"], ["https://tec.openplanner.team/stops/H1wa145b", "https://tec.openplanner.team/stops/H1wa153a"], ["https://tec.openplanner.team/stops/LoDmuhl1", "https://tec.openplanner.team/stops/LoDschu1"], ["https://tec.openplanner.team/stops/Brebblo2", "https://tec.openplanner.team/stops/Brebpca2"], ["https://tec.openplanner.team/stops/LSGec--2", "https://tec.openplanner.team/stops/LSGeg--2"], ["https://tec.openplanner.team/stops/LHNland2", "https://tec.openplanner.team/stops/LHNtonn1"], ["https://tec.openplanner.team/stops/LBNeu711", "https://tec.openplanner.team/stops/LBNover1"], ["https://tec.openplanner.team/stops/N538aca", "https://tec.openplanner.team/stops/N538aia"], ["https://tec.openplanner.team/stops/N519acb", "https://tec.openplanner.team/stops/N519agb"], ["https://tec.openplanner.team/stops/N353afb", "https://tec.openplanner.team/stops/N353afc"], ["https://tec.openplanner.team/stops/H1ho122b", "https://tec.openplanner.team/stops/H1ho136b"], ["https://tec.openplanner.team/stops/Cctbois3", "https://tec.openplanner.team/stops/Cctlimi1"], ["https://tec.openplanner.team/stops/Llgjoie3", "https://tec.openplanner.team/stops/Llgrain2"], ["https://tec.openplanner.team/stops/LgRha212", "https://tec.openplanner.team/stops/LgRzent2"], ["https://tec.openplanner.team/stops/Lhrgall1", "https://tec.openplanner.team/stops/Lhrgall2"], ["https://tec.openplanner.team/stops/X910acb", "https://tec.openplanner.team/stops/X910aeb"], ["https://tec.openplanner.team/stops/Bmlnbpr1", "https://tec.openplanner.team/stops/Bmlnmbo1"], ["https://tec.openplanner.team/stops/Cdacolu1", "https://tec.openplanner.team/stops/CMsacm1"], ["https://tec.openplanner.team/stops/Cctbinc2", "https://tec.openplanner.team/stops/NC44aea"], ["https://tec.openplanner.team/stops/X718agb", "https://tec.openplanner.team/stops/X718aha"], ["https://tec.openplanner.team/stops/LmNha151", "https://tec.openplanner.team/stops/LmNha222"], ["https://tec.openplanner.team/stops/N527afa", "https://tec.openplanner.team/stops/N527afb"], ["https://tec.openplanner.team/stops/X822aia", "https://tec.openplanner.team/stops/X822aib"], ["https://tec.openplanner.team/stops/X757aic", "https://tec.openplanner.team/stops/X757akb"], ["https://tec.openplanner.team/stops/H1si169b", "https://tec.openplanner.team/stops/H1vt196a"], ["https://tec.openplanner.team/stops/Clbbonn3", "https://tec.openplanner.team/stops/Clbbonn4"], ["https://tec.openplanner.team/stops/Canegbr1", "https://tec.openplanner.team/stops/Canlemo1"], ["https://tec.openplanner.team/stops/LjeGRPMA", "https://tec.openplanner.team/stops/Ljelamb2"], ["https://tec.openplanner.team/stops/Brixaug2", "https://tec.openplanner.team/stops/Brixwav3"], ["https://tec.openplanner.team/stops/LAmsart2", "https://tec.openplanner.team/stops/LAmvent2"], ["https://tec.openplanner.team/stops/X681aca", "https://tec.openplanner.team/stops/X695aea"], ["https://tec.openplanner.team/stops/N529afb", "https://tec.openplanner.team/stops/N576amb"], ["https://tec.openplanner.team/stops/Btubind2", "https://tec.openplanner.team/stops/Btubmon1"], ["https://tec.openplanner.team/stops/Brsrber2", "https://tec.openplanner.team/stops/Brsrpch2"], ["https://tec.openplanner.team/stops/X897aab", "https://tec.openplanner.team/stops/X898ahb"], ["https://tec.openplanner.team/stops/Cculgeo1", "https://tec.openplanner.team/stops/Ccuwil1"], ["https://tec.openplanner.team/stops/LLMcouv2", "https://tec.openplanner.team/stops/LThpoli2"], ["https://tec.openplanner.team/stops/X882aab", "https://tec.openplanner.team/stops/X882adb"], ["https://tec.openplanner.team/stops/Cragill1", "https://tec.openplanner.team/stops/Crajasm2"], ["https://tec.openplanner.team/stops/H1ro130a", "https://tec.openplanner.team/stops/H1ro135b"], ["https://tec.openplanner.team/stops/Bhalvel1", "https://tec.openplanner.team/stops/Bhalvel2"], ["https://tec.openplanner.team/stops/N505aja", "https://tec.openplanner.team/stops/N505aka"], ["https://tec.openplanner.team/stops/X728adb", "https://tec.openplanner.team/stops/X729ada"], ["https://tec.openplanner.team/stops/N521ajb", "https://tec.openplanner.team/stops/N521akb"], ["https://tec.openplanner.team/stops/N147aca", "https://tec.openplanner.team/stops/N147ada"], ["https://tec.openplanner.team/stops/X654akb", "https://tec.openplanner.team/stops/X654alb"], ["https://tec.openplanner.team/stops/H4rm111a", "https://tec.openplanner.team/stops/H4rm111b"], ["https://tec.openplanner.team/stops/Cfaecmo2", "https://tec.openplanner.team/stops/Cfaetoi1"], ["https://tec.openplanner.team/stops/LhGkirc1", "https://tec.openplanner.team/stops/LhGkirc4"], ["https://tec.openplanner.team/stops/LCsange2", "https://tec.openplanner.team/stops/LCsfize1"], ["https://tec.openplanner.team/stops/X922aka", "https://tec.openplanner.team/stops/X942afb"], ["https://tec.openplanner.team/stops/Cbfcham2", "https://tec.openplanner.team/stops/Cbfcham4"], ["https://tec.openplanner.team/stops/X724afa", "https://tec.openplanner.team/stops/X724afb"], ["https://tec.openplanner.team/stops/NL37aka", "https://tec.openplanner.team/stops/NL37alb"], ["https://tec.openplanner.team/stops/H1og130b", "https://tec.openplanner.team/stops/H4os217a"], ["https://tec.openplanner.team/stops/LLOnand1", "https://tec.openplanner.team/stops/LTatult3"], ["https://tec.openplanner.team/stops/Ljucano2", "https://tec.openplanner.team/stops/Ljujaur2"], ["https://tec.openplanner.team/stops/Bitregl2", "https://tec.openplanner.team/stops/Bitrgnt1"], ["https://tec.openplanner.team/stops/H1gn149b", "https://tec.openplanner.team/stops/H1gn152a"], ["https://tec.openplanner.team/stops/N562bfa", "https://tec.openplanner.team/stops/N570aab"], ["https://tec.openplanner.team/stops/LFLcent2", "https://tec.openplanner.team/stops/LFLcher2"], ["https://tec.openplanner.team/stops/LbOkalv1", "https://tec.openplanner.team/stops/LbOlier1"], ["https://tec.openplanner.team/stops/X674aab", "https://tec.openplanner.team/stops/X675aaa"], ["https://tec.openplanner.team/stops/Cbfplch1", "https://tec.openplanner.team/stops/Cbfplch2"], ["https://tec.openplanner.team/stops/Lsebrun3", "https://tec.openplanner.team/stops/Lseruis1"], ["https://tec.openplanner.team/stops/N310acb", "https://tec.openplanner.team/stops/N350ada"], ["https://tec.openplanner.team/stops/Cacscav1", "https://tec.openplanner.team/stops/NC24aab"], ["https://tec.openplanner.team/stops/N207add", "https://tec.openplanner.team/stops/N210aab"], ["https://tec.openplanner.team/stops/LBItnt-*", "https://tec.openplanner.team/stops/Lmlcrot1"], ["https://tec.openplanner.team/stops/Bgntcbo1", "https://tec.openplanner.team/stops/Bsomh671"], ["https://tec.openplanner.team/stops/Lghgend1", "https://tec.openplanner.team/stops/Ljerose3"], ["https://tec.openplanner.team/stops/X982afa", "https://tec.openplanner.team/stops/X982bxa"], ["https://tec.openplanner.team/stops/Btslcel2", "https://tec.openplanner.team/stops/Btsllfp1"], ["https://tec.openplanner.team/stops/H1by108b", "https://tec.openplanner.team/stops/H1sy143d"], ["https://tec.openplanner.team/stops/LHUecte2", "https://tec.openplanner.team/stops/NL80ahb"], ["https://tec.openplanner.team/stops/LBTwauc1", "https://tec.openplanner.team/stops/LCHeg--2"], ["https://tec.openplanner.team/stops/H2hl112a", "https://tec.openplanner.team/stops/H2hl112b"], ["https://tec.openplanner.team/stops/H1ht128a", "https://tec.openplanner.team/stops/H1ht135b"], ["https://tec.openplanner.team/stops/LmS11--1", "https://tec.openplanner.team/stops/LmSluxh1"], ["https://tec.openplanner.team/stops/N152aaf", "https://tec.openplanner.team/stops/N152aba"], ["https://tec.openplanner.team/stops/X634aaa", "https://tec.openplanner.team/stops/X634abb"], ["https://tec.openplanner.team/stops/LCF2spa1", "https://tec.openplanner.team/stops/LCFmoul1"], ["https://tec.openplanner.team/stops/LWalibo1", "https://tec.openplanner.team/stops/LWapl--4"], ["https://tec.openplanner.team/stops/X902afb", "https://tec.openplanner.team/stops/X999aia"], ["https://tec.openplanner.team/stops/Lghhaut1", "https://tec.openplanner.team/stops/Lghpara1"], ["https://tec.openplanner.team/stops/Cmlceri2", "https://tec.openplanner.team/stops/Cmmami2"], ["https://tec.openplanner.team/stops/X888ada", "https://tec.openplanner.team/stops/X888adb"], ["https://tec.openplanner.team/stops/X780aba", "https://tec.openplanner.team/stops/X790aaa"], ["https://tec.openplanner.team/stops/NL77aia", "https://tec.openplanner.team/stops/NL77aja"], ["https://tec.openplanner.team/stops/Crcegli1", "https://tec.openplanner.team/stops/Crcegli2"], ["https://tec.openplanner.team/stops/Bcbqegl1", "https://tec.openplanner.team/stops/Bcbqpon1"], ["https://tec.openplanner.team/stops/H4ld127b", "https://tec.openplanner.team/stops/H4ld130a"], ["https://tec.openplanner.team/stops/Lcceg--1", "https://tec.openplanner.team/stops/LRaplac1"], ["https://tec.openplanner.team/stops/Cslbhau2", "https://tec.openplanner.team/stops/Cvtegli1"], ["https://tec.openplanner.team/stops/LFethie1", "https://tec.openplanner.team/stops/LFethie2"], ["https://tec.openplanner.team/stops/Lfllapi5", "https://tec.openplanner.team/stops/Lflterm2"], ["https://tec.openplanner.team/stops/H4bo118b", "https://tec.openplanner.team/stops/H4bo118c"], ["https://tec.openplanner.team/stops/Crebien3", "https://tec.openplanner.team/stops/Crewath2"], ["https://tec.openplanner.team/stops/LNAanne2", "https://tec.openplanner.team/stops/LNAbois1"], ["https://tec.openplanner.team/stops/Cmlsart1", "https://tec.openplanner.team/stops/Cmlsart2"], ["https://tec.openplanner.team/stops/N106aaa", "https://tec.openplanner.team/stops/N137adb"], ["https://tec.openplanner.team/stops/Llgchar1", "https://tec.openplanner.team/stops/Llgfusc1"], ["https://tec.openplanner.team/stops/X784aeb", "https://tec.openplanner.team/stops/X784afa"], ["https://tec.openplanner.team/stops/H4hx115b", "https://tec.openplanner.team/stops/H4wa161a"], ["https://tec.openplanner.team/stops/N139aba", "https://tec.openplanner.team/stops/X317aba"], ["https://tec.openplanner.team/stops/N121aca", "https://tec.openplanner.team/stops/N121ajc"], ["https://tec.openplanner.team/stops/LHvvill*", "https://tec.openplanner.team/stops/LPT97--2"], ["https://tec.openplanner.team/stops/H1je211b", "https://tec.openplanner.team/stops/H1je225b"], ["https://tec.openplanner.team/stops/H2mg141a", "https://tec.openplanner.team/stops/H2mg141b"], ["https://tec.openplanner.team/stops/Bhtihau2", "https://tec.openplanner.team/stops/Bhtipir3"], ["https://tec.openplanner.team/stops/Lougoff1", "https://tec.openplanner.team/stops/Louwuid2"], ["https://tec.openplanner.team/stops/Cjuvpla1", "https://tec.openplanner.team/stops/Cjuvpla2"], ["https://tec.openplanner.team/stops/H1do116b", "https://tec.openplanner.team/stops/H1ho144a"], ["https://tec.openplanner.team/stops/Bblagar9", "https://tec.openplanner.team/stops/Bblapje2"], ["https://tec.openplanner.team/stops/LCAcruc2", "https://tec.openplanner.team/stops/LCAeg--1"], ["https://tec.openplanner.team/stops/LTEzinn1", "https://tec.openplanner.team/stops/LTEzinn2"], ["https://tec.openplanner.team/stops/H4al100a", "https://tec.openplanner.team/stops/H4al100b"], ["https://tec.openplanner.team/stops/N501fqa", "https://tec.openplanner.team/stops/N501fqb"], ["https://tec.openplanner.team/stops/H1sp354a", "https://tec.openplanner.team/stops/H1sp354b"], ["https://tec.openplanner.team/stops/X897axa", "https://tec.openplanner.team/stops/X904afb"], ["https://tec.openplanner.team/stops/Cgoetun1", "https://tec.openplanner.team/stops/Cgoetun4"], ["https://tec.openplanner.team/stops/Bllnjpa2", "https://tec.openplanner.team/stops/Bllnlb11"], ["https://tec.openplanner.team/stops/Cjuapca2", "https://tec.openplanner.team/stops/Cjudefi2"], ["https://tec.openplanner.team/stops/Cgoobse1", "https://tec.openplanner.team/stops/CMleop2"], ["https://tec.openplanner.team/stops/H4bq102b", "https://tec.openplanner.team/stops/H4bq154a"], ["https://tec.openplanner.team/stops/H1em111c", "https://tec.openplanner.team/stops/H1em111d"], ["https://tec.openplanner.team/stops/Bwatms10", "https://tec.openplanner.team/stops/Bwatmsj5"], ["https://tec.openplanner.team/stops/Lsnfont1", "https://tec.openplanner.team/stops/Lsnvand1"], ["https://tec.openplanner.team/stops/Bwatath3", "https://tec.openplanner.team/stops/Bwatfia1"], ["https://tec.openplanner.team/stops/H4ga154b", "https://tec.openplanner.team/stops/H4ty311a"], ["https://tec.openplanner.team/stops/H4mo155a", "https://tec.openplanner.team/stops/H4rx142a"], ["https://tec.openplanner.team/stops/Cmcgoch2", "https://tec.openplanner.team/stops/Csyplac1"], ["https://tec.openplanner.team/stops/H4mo133a", "https://tec.openplanner.team/stops/H4mo133b"], ["https://tec.openplanner.team/stops/Bbea3he1", "https://tec.openplanner.team/stops/Bbeagae1"], ["https://tec.openplanner.team/stops/X996aab", "https://tec.openplanner.team/stops/X996aba"], ["https://tec.openplanner.team/stops/N103aca", "https://tec.openplanner.team/stops/N103acc"], ["https://tec.openplanner.team/stops/Becepco2", "https://tec.openplanner.team/stops/Becesbo2"], ["https://tec.openplanner.team/stops/H4ty319a", "https://tec.openplanner.team/stops/H4ty345b"], ["https://tec.openplanner.team/stops/LFAplan2", "https://tec.openplanner.team/stops/LFAscie1"], ["https://tec.openplanner.team/stops/Crecouc1", "https://tec.openplanner.team/stops/Creshau2"], ["https://tec.openplanner.team/stops/H2bh106b", "https://tec.openplanner.team/stops/H2bh110b"], ["https://tec.openplanner.team/stops/X986ada", "https://tec.openplanner.team/stops/X986adb"], ["https://tec.openplanner.team/stops/LTaabba1", "https://tec.openplanner.team/stops/LTaabba2"], ["https://tec.openplanner.team/stops/N988aab", "https://tec.openplanner.team/stops/N988aba"], ["https://tec.openplanner.team/stops/H4lz125a", "https://tec.openplanner.team/stops/H4lz161a"], ["https://tec.openplanner.team/stops/N212aba", "https://tec.openplanner.team/stops/N213aba"], ["https://tec.openplanner.team/stops/LLVerri1", "https://tec.openplanner.team/stops/X575adb"], ["https://tec.openplanner.team/stops/LLrgobe2", "https://tec.openplanner.team/stops/LLrjeho1"], ["https://tec.openplanner.team/stops/H1gc122b", "https://tec.openplanner.team/stops/H1go118a"], ["https://tec.openplanner.team/stops/N534aub", "https://tec.openplanner.team/stops/N534bya"], ["https://tec.openplanner.team/stops/N501kuc", "https://tec.openplanner.team/stops/N501kvb"], ["https://tec.openplanner.team/stops/Lvehauz3", "https://tec.openplanner.team/stops/Lvehopi5"], ["https://tec.openplanner.team/stops/X818ara", "https://tec.openplanner.team/stops/X818arb"], ["https://tec.openplanner.team/stops/LeUolen1", "https://tec.openplanner.team/stops/LeUolen2"], ["https://tec.openplanner.team/stops/X948aea", "https://tec.openplanner.team/stops/X948afb"], ["https://tec.openplanner.team/stops/H2ll181b", "https://tec.openplanner.team/stops/H2ll189c"], ["https://tec.openplanner.team/stops/N230aha", "https://tec.openplanner.team/stops/N231adb"], ["https://tec.openplanner.team/stops/Cbflong2", "https://tec.openplanner.team/stops/NC02aaa"], ["https://tec.openplanner.team/stops/LHCauwe4", "https://tec.openplanner.team/stops/LHCponc4"], ["https://tec.openplanner.team/stops/LVEhali1", "https://tec.openplanner.team/stops/LVEtomb1"], ["https://tec.openplanner.team/stops/Csoperi2", "https://tec.openplanner.team/stops/Csoplac2"], ["https://tec.openplanner.team/stops/Bwagsta1", "https://tec.openplanner.team/stops/Csachas1"], ["https://tec.openplanner.team/stops/Llgbago1", "https://tec.openplanner.team/stops/Llgbert2"], ["https://tec.openplanner.team/stops/X729aca", "https://tec.openplanner.team/stops/X769arb"], ["https://tec.openplanner.team/stops/N424aaa", "https://tec.openplanner.team/stops/N424aba"], ["https://tec.openplanner.team/stops/Ljuinte1", "https://tec.openplanner.team/stops/Ljuprev2"], ["https://tec.openplanner.team/stops/Bblabos2", "https://tec.openplanner.team/stops/Bbsivi11"], ["https://tec.openplanner.team/stops/X659afa", "https://tec.openplanner.team/stops/X659ata"], ["https://tec.openplanner.team/stops/N106aea", "https://tec.openplanner.team/stops/N137aga"], ["https://tec.openplanner.team/stops/Brsga151", "https://tec.openplanner.team/stops/Brsgfbl1"], ["https://tec.openplanner.team/stops/X902ada", "https://tec.openplanner.team/stops/X999aga"], ["https://tec.openplanner.team/stops/Ccuoise1", "https://tec.openplanner.team/stops/Ccurtra1"], ["https://tec.openplanner.team/stops/LNIdoma2", "https://tec.openplanner.team/stops/LSPmari1"], ["https://tec.openplanner.team/stops/H4ry140a", "https://tec.openplanner.team/stops/H4ry140b"], ["https://tec.openplanner.team/stops/Bgdhmet1", "https://tec.openplanner.team/stops/Blinhue2"], ["https://tec.openplanner.team/stops/X771aea", "https://tec.openplanner.team/stops/X771afa"], ["https://tec.openplanner.team/stops/N510afa", "https://tec.openplanner.team/stops/N513acb"], ["https://tec.openplanner.team/stops/H4es108b", "https://tec.openplanner.team/stops/H4ev125b"], ["https://tec.openplanner.team/stops/LGogare2", "https://tec.openplanner.team/stops/LGorysa2"], ["https://tec.openplanner.team/stops/LSZcock1", "https://tec.openplanner.team/stops/LSZcock2"], ["https://tec.openplanner.team/stops/Baudwav1", "https://tec.openplanner.team/stops/Baudwav2"], ["https://tec.openplanner.team/stops/H1le118b", "https://tec.openplanner.team/stops/H1ol143b"], ["https://tec.openplanner.team/stops/N301adb", "https://tec.openplanner.team/stops/N302aab"], ["https://tec.openplanner.team/stops/LMIlac-1", "https://tec.openplanner.team/stops/LMIlac-2"], ["https://tec.openplanner.team/stops/LdE179-1", "https://tec.openplanner.team/stops/LdE179-2"], ["https://tec.openplanner.team/stops/Lsehya-3", "https://tec.openplanner.team/stops/Lsemaqu1"], ["https://tec.openplanner.team/stops/Cfrchro2", "https://tec.openplanner.team/stops/Cfrmonu2"], ["https://tec.openplanner.team/stops/Bitrgnt1", "https://tec.openplanner.team/stops/Bitrgnt2"], ["https://tec.openplanner.team/stops/N564abb", "https://tec.openplanner.team/stops/N564ada"], ["https://tec.openplanner.team/stops/N321aea", "https://tec.openplanner.team/stops/N321afb"], ["https://tec.openplanner.team/stops/LbO52--1", "https://tec.openplanner.team/stops/LbO52--2"], ["https://tec.openplanner.team/stops/LSsaxhe1", "https://tec.openplanner.team/stops/N512agc"], ["https://tec.openplanner.team/stops/LDAwich1", "https://tec.openplanner.team/stops/LDAwich2"], ["https://tec.openplanner.team/stops/Ccicent3", "https://tec.openplanner.team/stops/Cmtstan2"], ["https://tec.openplanner.team/stops/X663asa", "https://tec.openplanner.team/stops/X663axa"], ["https://tec.openplanner.team/stops/H2ha139b", "https://tec.openplanner.team/stops/H2sb235b"], ["https://tec.openplanner.team/stops/Cvtegli1", "https://tec.openplanner.team/stops/Cvtegli2"], ["https://tec.openplanner.team/stops/X921ajc", "https://tec.openplanner.team/stops/X921ajd"], ["https://tec.openplanner.team/stops/LNCfawe1", "https://tec.openplanner.team/stops/LRRchea2"], ["https://tec.openplanner.team/stops/X901asb", "https://tec.openplanner.team/stops/X902bfa"], ["https://tec.openplanner.team/stops/X636aqb", "https://tec.openplanner.team/stops/X636aqd"], ["https://tec.openplanner.team/stops/X662abb", "https://tec.openplanner.team/stops/X662arb"], ["https://tec.openplanner.team/stops/X891aaa", "https://tec.openplanner.team/stops/X891aba"], ["https://tec.openplanner.team/stops/H1do129a", "https://tec.openplanner.team/stops/H1wi147a"], ["https://tec.openplanner.team/stops/Caih1631", "https://tec.openplanner.team/stops/Ctafran2"], ["https://tec.openplanner.team/stops/N501gbb", "https://tec.openplanner.team/stops/N501lxb"], ["https://tec.openplanner.team/stops/LaAgold2", "https://tec.openplanner.team/stops/LhGscha*"], ["https://tec.openplanner.team/stops/H1mj123b", "https://tec.openplanner.team/stops/H1mj132b"], ["https://tec.openplanner.team/stops/H2sb242a", "https://tec.openplanner.team/stops/H2sb242b"], ["https://tec.openplanner.team/stops/N501lqa", "https://tec.openplanner.team/stops/N501lqb"], ["https://tec.openplanner.team/stops/Ctipoui2", "https://tec.openplanner.team/stops/H1tt107b"], ["https://tec.openplanner.team/stops/LAYambl1", "https://tec.openplanner.team/stops/LAYthir2"], ["https://tec.openplanner.team/stops/LJveg--1", "https://tec.openplanner.team/stops/X576aca"], ["https://tec.openplanner.team/stops/Bnivbne1", "https://tec.openplanner.team/stops/Bnivhut1"], ["https://tec.openplanner.team/stops/Bitrfsc1", "https://tec.openplanner.team/stops/Bitrmon1"], ["https://tec.openplanner.team/stops/N118aoa", "https://tec.openplanner.team/stops/N118ata"], ["https://tec.openplanner.team/stops/Caircen2", "https://tec.openplanner.team/stops/Crsrose1"], ["https://tec.openplanner.team/stops/LSochal2", "https://tec.openplanner.team/stops/LSogite2"], ["https://tec.openplanner.team/stops/Cfrbrin2", "https://tec.openplanner.team/stops/Cfrmoul2"], ["https://tec.openplanner.team/stops/LJAcham1", "https://tec.openplanner.team/stops/LSUvill2"], ["https://tec.openplanner.team/stops/N503ada", "https://tec.openplanner.team/stops/N503adb"], ["https://tec.openplanner.team/stops/LVsboug1", "https://tec.openplanner.team/stops/LVsbrux2"], ["https://tec.openplanner.team/stops/Bgnvbsi2", "https://tec.openplanner.team/stops/Bgnvcom1"], ["https://tec.openplanner.team/stops/LeUbahn4", "https://tec.openplanner.team/stops/LeUwert1"], ["https://tec.openplanner.team/stops/N167add", "https://tec.openplanner.team/stops/N167aga"], ["https://tec.openplanner.team/stops/Bwlhpmt2", "https://tec.openplanner.team/stops/Bwspbbo2"], ["https://tec.openplanner.team/stops/LAMfrai1", "https://tec.openplanner.team/stops/LAMmc--1"], ["https://tec.openplanner.team/stops/Ccobinc2", "https://tec.openplanner.team/stops/Ccopeti1"], ["https://tec.openplanner.team/stops/Lousite3", "https://tec.openplanner.team/stops/Lousite7"], ["https://tec.openplanner.team/stops/H4hx111b", "https://tec.openplanner.team/stops/H4wa150a"], ["https://tec.openplanner.team/stops/X638aca", "https://tec.openplanner.team/stops/X638afa"], ["https://tec.openplanner.team/stops/X766aca", "https://tec.openplanner.team/stops/X766aea"], ["https://tec.openplanner.team/stops/N352afb", "https://tec.openplanner.team/stops/N367adb"], ["https://tec.openplanner.team/stops/LDoeg--2", "https://tec.openplanner.team/stops/LLiforg1"], ["https://tec.openplanner.team/stops/X344aea", "https://tec.openplanner.team/stops/X344aeb"], ["https://tec.openplanner.team/stops/N120agb", "https://tec.openplanner.team/stops/N248aea"], ["https://tec.openplanner.team/stops/Bmrlcch2", "https://tec.openplanner.team/stops/Bmrllgr2"], ["https://tec.openplanner.team/stops/N507ala", "https://tec.openplanner.team/stops/N507ald"], ["https://tec.openplanner.team/stops/X886acb", "https://tec.openplanner.team/stops/X886afb"], ["https://tec.openplanner.team/stops/N244abb", "https://tec.openplanner.team/stops/N244afb"], ["https://tec.openplanner.team/stops/LAYcher2", "https://tec.openplanner.team/stops/LAYecol2"], ["https://tec.openplanner.team/stops/LPLphar1", "https://tec.openplanner.team/stops/LPLruis1"], ["https://tec.openplanner.team/stops/Cgzgrru1", "https://tec.openplanner.team/stops/Cgzgrru2"], ["https://tec.openplanner.team/stops/Bmrlhan1", "https://tec.openplanner.team/stops/Bmrlnce1"], ["https://tec.openplanner.team/stops/H1so143a", "https://tec.openplanner.team/stops/H1so146b"], ["https://tec.openplanner.team/stops/X623ajb", "https://tec.openplanner.team/stops/X624ajb"], ["https://tec.openplanner.team/stops/N533ana", "https://tec.openplanner.team/stops/N533apa"], ["https://tec.openplanner.team/stops/Ckevela1", "https://tec.openplanner.team/stops/Cwfronc1"], ["https://tec.openplanner.team/stops/N571aba", "https://tec.openplanner.team/stops/N571abb"], ["https://tec.openplanner.team/stops/LCRecmo1", "https://tec.openplanner.team/stops/LCRecmo2"], ["https://tec.openplanner.team/stops/N224agc", "https://tec.openplanner.team/stops/X398aha"], ["https://tec.openplanner.team/stops/LHXn47-4", "https://tec.openplanner.team/stops/LSMcles1"], ["https://tec.openplanner.team/stops/LeUhaag2", "https://tec.openplanner.team/stops/LeUschu1"], ["https://tec.openplanner.team/stops/N512aba", "https://tec.openplanner.team/stops/N512afa"], ["https://tec.openplanner.team/stops/X714aca", "https://tec.openplanner.team/stops/X714adb"], ["https://tec.openplanner.team/stops/H1mc127b", "https://tec.openplanner.team/stops/H1mc129a"], ["https://tec.openplanner.team/stops/LCFcafe1", "https://tec.openplanner.team/stops/LCFcarr2"], ["https://tec.openplanner.team/stops/Llggill1", "https://tec.openplanner.team/stops/Llghenr1"], ["https://tec.openplanner.team/stops/Lbemc--1", "https://tec.openplanner.team/stops/Llxeg--1"], ["https://tec.openplanner.team/stops/X877acb", "https://tec.openplanner.team/stops/X877ada"], ["https://tec.openplanner.team/stops/Cwfcast1", "https://tec.openplanner.team/stops/NC23aaa"], ["https://tec.openplanner.team/stops/Lsehcoc1", "https://tec.openplanner.team/stops/Lsehcoc2"], ["https://tec.openplanner.team/stops/LwYsour1", "https://tec.openplanner.team/stops/LwYsour3"], ["https://tec.openplanner.team/stops/H4fr146b", "https://tec.openplanner.team/stops/H4ty327a"], ["https://tec.openplanner.team/stops/N501hwb", "https://tec.openplanner.team/stops/N501iaa"], ["https://tec.openplanner.team/stops/H1te179a", "https://tec.openplanner.team/stops/H1te179b"], ["https://tec.openplanner.team/stops/LSGmall1", "https://tec.openplanner.team/stops/LSGmall2"], ["https://tec.openplanner.team/stops/Bbcoben1", "https://tec.openplanner.team/stops/Bbcocou2"], ["https://tec.openplanner.team/stops/N539akb", "https://tec.openplanner.team/stops/N539ama"], ["https://tec.openplanner.team/stops/Cjxdesc1", "https://tec.openplanner.team/stops/Cjxplac2"], ["https://tec.openplanner.team/stops/Bmalcar1", "https://tec.openplanner.team/stops/Bmalsme1"], ["https://tec.openplanner.team/stops/LTNcarr4", "https://tec.openplanner.team/stops/LTNcarr6"], ["https://tec.openplanner.team/stops/Loudela1", "https://tec.openplanner.team/stops/Lseserv1"], ["https://tec.openplanner.team/stops/H4ff117b", "https://tec.openplanner.team/stops/H4ff121b"], ["https://tec.openplanner.team/stops/LCn4---2", "https://tec.openplanner.team/stops/LSpshin2"], ["https://tec.openplanner.team/stops/H1hr127b", "https://tec.openplanner.team/stops/H1to153d"], ["https://tec.openplanner.team/stops/LaNdord1", "https://tec.openplanner.team/stops/LeMnr11"], ["https://tec.openplanner.team/stops/LPT97--1", "https://tec.openplanner.team/stops/X792aba"], ["https://tec.openplanner.team/stops/N534aya", "https://tec.openplanner.team/stops/N534bda"], ["https://tec.openplanner.team/stops/N425aca", "https://tec.openplanner.team/stops/N425acb"], ["https://tec.openplanner.team/stops/LPOleli2", "https://tec.openplanner.team/stops/LSdbvue2"], ["https://tec.openplanner.team/stops/X626afb", "https://tec.openplanner.team/stops/X688abb"], ["https://tec.openplanner.team/stops/H1gr119a", "https://tec.openplanner.team/stops/H1to153d"], ["https://tec.openplanner.team/stops/Ccuoise2", "https://tec.openplanner.team/stops/Ccurtra2"], ["https://tec.openplanner.team/stops/H1po139a", "https://tec.openplanner.team/stops/H1si151b"], ["https://tec.openplanner.team/stops/X661axa", "https://tec.openplanner.team/stops/X822ala"], ["https://tec.openplanner.team/stops/X949aia", "https://tec.openplanner.team/stops/X949ama"], ["https://tec.openplanner.team/stops/N117abb", "https://tec.openplanner.team/stops/N117aca"], ["https://tec.openplanner.team/stops/H2tr247a", "https://tec.openplanner.team/stops/H2tr255b"], ["https://tec.openplanner.team/stops/LSTchal1", "https://tec.openplanner.team/stops/LSTrema2"], ["https://tec.openplanner.team/stops/N551aba", "https://tec.openplanner.team/stops/N551akb"], ["https://tec.openplanner.team/stops/X825adb", "https://tec.openplanner.team/stops/X825aeb"], ["https://tec.openplanner.team/stops/N232ava", "https://tec.openplanner.team/stops/N232cbb"], ["https://tec.openplanner.team/stops/LwYcafe1", "https://tec.openplanner.team/stops/LwYcafe2"], ["https://tec.openplanner.team/stops/LHUlebe0", "https://tec.openplanner.team/stops/LHUlieg1"], ["https://tec.openplanner.team/stops/Bbea3he2", "https://tec.openplanner.team/stops/Bmlnmbo2"], ["https://tec.openplanner.team/stops/N549aea", "https://tec.openplanner.team/stops/N577aab"], ["https://tec.openplanner.team/stops/LARparc1", "https://tec.openplanner.team/stops/LRIcent1"], ["https://tec.openplanner.team/stops/LSZnive2", "https://tec.openplanner.team/stops/LSZpont2"], ["https://tec.openplanner.team/stops/H1ms902a", "https://tec.openplanner.team/stops/H1ms915b"], ["https://tec.openplanner.team/stops/H4pq112a", "https://tec.openplanner.team/stops/H4pq118a"], ["https://tec.openplanner.team/stops/N509asb", "https://tec.openplanner.team/stops/N509aub"], ["https://tec.openplanner.team/stops/N501jba", "https://tec.openplanner.team/stops/N501jma"], ["https://tec.openplanner.team/stops/Cpcbrig1", "https://tec.openplanner.team/stops/Cpceclu2"], ["https://tec.openplanner.team/stops/X870afb", "https://tec.openplanner.team/stops/X870ajb"], ["https://tec.openplanner.team/stops/NL57adc", "https://tec.openplanner.team/stops/NL57ajb"], ["https://tec.openplanner.team/stops/X947aab", "https://tec.openplanner.team/stops/X947aeb"], ["https://tec.openplanner.team/stops/LHmcite1", "https://tec.openplanner.team/stops/LMAgdfa1"], ["https://tec.openplanner.team/stops/N515aqc", "https://tec.openplanner.team/stops/N515ara"], ["https://tec.openplanner.team/stops/H4ne131b", "https://tec.openplanner.team/stops/H4ne142a"], ["https://tec.openplanner.team/stops/Bbautri2", "https://tec.openplanner.team/stops/Bnivpri2"], ["https://tec.openplanner.team/stops/LBNvilv1", "https://tec.openplanner.team/stops/LGOmous1"], ["https://tec.openplanner.team/stops/H1ha186b", "https://tec.openplanner.team/stops/H1ha198a"], ["https://tec.openplanner.team/stops/LHgpost1", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://tec.openplanner.team/stops/LSPbass1", "https://tec.openplanner.team/stops/LSPcomm2"], ["https://tec.openplanner.team/stops/LeUhutt1", "https://tec.openplanner.team/stops/LHthest2"], ["https://tec.openplanner.team/stops/N573aha", "https://tec.openplanner.team/stops/N573ahb"], ["https://tec.openplanner.team/stops/Baudsta2", "https://tec.openplanner.team/stops/Bhoegbr2"], ["https://tec.openplanner.team/stops/Llgdoth2", "https://tec.openplanner.team/stops/Llgfred1"], ["https://tec.openplanner.team/stops/LBWbatt1", "https://tec.openplanner.team/stops/LBWbatt2"], ["https://tec.openplanner.team/stops/Ccupomp2", "https://tec.openplanner.team/stops/Cpibois1"], ["https://tec.openplanner.team/stops/H1ch107a", "https://tec.openplanner.team/stops/H1ch141b"], ["https://tec.openplanner.team/stops/LBEmich2", "https://tec.openplanner.team/stops/LGMhadr2"], ["https://tec.openplanner.team/stops/Cgxprad4", "https://tec.openplanner.team/stops/CMleer2"], ["https://tec.openplanner.team/stops/H1gi120a", "https://tec.openplanner.team/stops/H1gi122a"], ["https://tec.openplanner.team/stops/H2na132b", "https://tec.openplanner.team/stops/H2na135b"], ["https://tec.openplanner.team/stops/H1bu137a", "https://tec.openplanner.team/stops/H3bi113a"], ["https://tec.openplanner.team/stops/N149acb", "https://tec.openplanner.team/stops/N149ada"], ["https://tec.openplanner.team/stops/X713ahb", "https://tec.openplanner.team/stops/X713amb"], ["https://tec.openplanner.team/stops/X982bta", "https://tec.openplanner.team/stops/X982btb"], ["https://tec.openplanner.team/stops/LwR140-1", "https://tec.openplanner.team/stops/LwRkirc1"], ["https://tec.openplanner.team/stops/Lenabat2", "https://tec.openplanner.team/stops/Lengran2"], ["https://tec.openplanner.team/stops/H1bo101a", "https://tec.openplanner.team/stops/H1bo102b"], ["https://tec.openplanner.team/stops/H4to134a", "https://tec.openplanner.team/stops/H4to139b"], ["https://tec.openplanner.team/stops/LGLobor2", "https://tec.openplanner.team/stops/LWidepo2"], ["https://tec.openplanner.team/stops/H4oq225b", "https://tec.openplanner.team/stops/H4oq228b"], ["https://tec.openplanner.team/stops/Bmrqgar2", "https://tec.openplanner.team/stops/Bspkdon2"], ["https://tec.openplanner.team/stops/X667abb", "https://tec.openplanner.team/stops/X667acb"], ["https://tec.openplanner.team/stops/H1qu107a", "https://tec.openplanner.team/stops/H1qu109b"], ["https://tec.openplanner.team/stops/LORec--*", "https://tec.openplanner.team/stops/LORroma1"], ["https://tec.openplanner.team/stops/LMastat4", "https://tec.openplanner.team/stops/LTEnuro1"], ["https://tec.openplanner.team/stops/N874aab", "https://tec.openplanner.team/stops/N894age"], ["https://tec.openplanner.team/stops/X394aeb", "https://tec.openplanner.team/stops/X398acb"], ["https://tec.openplanner.team/stops/LMEense2", "https://tec.openplanner.team/stops/LMIpast2"], ["https://tec.openplanner.team/stops/Bwavcar1", "https://tec.openplanner.team/stops/Bwavrij2"], ["https://tec.openplanner.team/stops/LOCloup1", "https://tec.openplanner.team/stops/NL35aga"], ["https://tec.openplanner.team/stops/Btsllfp1", "https://tec.openplanner.team/stops/Btsllfp2"], ["https://tec.openplanner.team/stops/N230aia", "https://tec.openplanner.team/stops/N230aja"], ["https://tec.openplanner.team/stops/Bhenasc1", "https://tec.openplanner.team/stops/Bhenpla2"], ["https://tec.openplanner.team/stops/H2tr257a", "https://tec.openplanner.team/stops/H2tr257b"], ["https://tec.openplanner.team/stops/X664aob", "https://tec.openplanner.team/stops/X664apb"], ["https://tec.openplanner.team/stops/LAncoup2", "https://tec.openplanner.team/stops/LVncarr1"], ["https://tec.openplanner.team/stops/LFFeg--2", "https://tec.openplanner.team/stops/LFFruel2"], ["https://tec.openplanner.team/stops/X888afb", "https://tec.openplanner.team/stops/X897aga"], ["https://tec.openplanner.team/stops/Lsemaha1", "https://tec.openplanner.team/stops/Lseverh2"], ["https://tec.openplanner.team/stops/X604acb", "https://tec.openplanner.team/stops/X604aeb"], ["https://tec.openplanner.team/stops/Cthalli1", "https://tec.openplanner.team/stops/Cthathe1"], ["https://tec.openplanner.team/stops/LBNpleg1", "https://tec.openplanner.team/stops/LBNpleg2"], ["https://tec.openplanner.team/stops/Brsg7fo2", "https://tec.openplanner.team/stops/Brsgfon2"], ["https://tec.openplanner.team/stops/LFEague1", "https://tec.openplanner.team/stops/X597aob"], ["https://tec.openplanner.team/stops/Bcbqcha1", "https://tec.openplanner.team/stops/Bhalomo2"], ["https://tec.openplanner.team/stops/Ladneuv1", "https://tec.openplanner.team/stops/Ladwooz2"], ["https://tec.openplanner.team/stops/Lpecime2", "https://tec.openplanner.team/stops/Lpetenn1"], ["https://tec.openplanner.team/stops/Lflcle-*", "https://tec.openplanner.team/stops/Lflfort*"], ["https://tec.openplanner.team/stops/H1ms256a", "https://tec.openplanner.team/stops/H1ms921a"], ["https://tec.openplanner.team/stops/Lcejobe2", "https://tec.openplanner.team/stops/Lgrgoff1"], ["https://tec.openplanner.team/stops/LHAprei1", "https://tec.openplanner.team/stops/LVIpneu2"], ["https://tec.openplanner.team/stops/Lemacac2", "https://tec.openplanner.team/stops/Lemdupo2"], ["https://tec.openplanner.team/stops/X662afb", "https://tec.openplanner.team/stops/X662aoa"], ["https://tec.openplanner.team/stops/Bchgflo2", "https://tec.openplanner.team/stops/Btslpic5"], ["https://tec.openplanner.team/stops/N511ala", "https://tec.openplanner.team/stops/N511alb"], ["https://tec.openplanner.team/stops/H1gr116b", "https://tec.openplanner.team/stops/H1gr122b"], ["https://tec.openplanner.team/stops/H1po133a", "https://tec.openplanner.team/stops/H1po133b"], ["https://tec.openplanner.team/stops/H5bl115b", "https://tec.openplanner.team/stops/H5bl124b"], ["https://tec.openplanner.team/stops/Cfrcoop3", "https://tec.openplanner.team/stops/Cfrsour2"], ["https://tec.openplanner.team/stops/Lalmakr1", "https://tec.openplanner.team/stops/Lalmakr2"], ["https://tec.openplanner.team/stops/X633afa", "https://tec.openplanner.team/stops/X633afb"], ["https://tec.openplanner.team/stops/Bsenbmc1", "https://tec.openplanner.team/stops/Bsenbmc2"], ["https://tec.openplanner.team/stops/N232bya", "https://tec.openplanner.team/stops/N232caa"], ["https://tec.openplanner.team/stops/Clfbarr1", "https://tec.openplanner.team/stops/Crglyre1"], ["https://tec.openplanner.team/stops/H1gh171b", "https://tec.openplanner.team/stops/H1je225a"], ["https://tec.openplanner.team/stops/H1si155b", "https://tec.openplanner.team/stops/H1si157a"], ["https://tec.openplanner.team/stops/LBPrueg1", "https://tec.openplanner.team/stops/LBPrueg2"], ["https://tec.openplanner.team/stops/N509ana", "https://tec.openplanner.team/stops/N510aca"], ["https://tec.openplanner.team/stops/Lprcite2", "https://tec.openplanner.team/stops/Lprdavi2"], ["https://tec.openplanner.team/stops/Cci4bra1", "https://tec.openplanner.team/stops/Cci4bra3"], ["https://tec.openplanner.team/stops/N313abb", "https://tec.openplanner.team/stops/N350adb"], ["https://tec.openplanner.team/stops/LMOcorn1", "https://tec.openplanner.team/stops/LMOcorn3"], ["https://tec.openplanner.team/stops/LrcarsT1", "https://tec.openplanner.team/stops/Lrclant1"], ["https://tec.openplanner.team/stops/Bquevel2", "https://tec.openplanner.team/stops/Btubren1"], ["https://tec.openplanner.team/stops/Clbhvil1", "https://tec.openplanner.team/stops/Cthpano1"], ["https://tec.openplanner.team/stops/X773afa", "https://tec.openplanner.team/stops/X773aga"], ["https://tec.openplanner.team/stops/X809aca", "https://tec.openplanner.team/stops/X811aaa"], ["https://tec.openplanner.team/stops/H4ir165a", "https://tec.openplanner.team/stops/H4ir166a"], ["https://tec.openplanner.team/stops/Bjodrrg2", "https://tec.openplanner.team/stops/Bsrgm101"], ["https://tec.openplanner.team/stops/X614ahb", "https://tec.openplanner.team/stops/X614aya"], ["https://tec.openplanner.team/stops/LSEvill1", "https://tec.openplanner.team/stops/LSEvill2"], ["https://tec.openplanner.team/stops/Blhusor1", "https://tec.openplanner.team/stops/Bovevri2"], ["https://tec.openplanner.team/stops/N521acb", "https://tec.openplanner.team/stops/N523aab"], ["https://tec.openplanner.team/stops/Blhucmo2", "https://tec.openplanner.team/stops/Blhunys2"], ["https://tec.openplanner.team/stops/Lmodeja1", "https://tec.openplanner.team/stops/Lmomarr2"], ["https://tec.openplanner.team/stops/LLEfagn1", "https://tec.openplanner.team/stops/LLEfagn2"], ["https://tec.openplanner.team/stops/LLTther1", "https://tec.openplanner.team/stops/LLTther2"], ["https://tec.openplanner.team/stops/X903aab", "https://tec.openplanner.team/stops/X903acb"], ["https://tec.openplanner.team/stops/H1cu115a", "https://tec.openplanner.team/stops/H1je360b"], ["https://tec.openplanner.team/stops/LAmeclu1", "https://tec.openplanner.team/stops/LAmeclu2"], ["https://tec.openplanner.team/stops/X902aaa", "https://tec.openplanner.team/stops/X902aeb"], ["https://tec.openplanner.team/stops/Cjugill1", "https://tec.openplanner.team/stops/CMchag1"], ["https://tec.openplanner.team/stops/N545aab", "https://tec.openplanner.team/stops/N552aba"], ["https://tec.openplanner.team/stops/X982ara", "https://tec.openplanner.team/stops/X982asa"], ["https://tec.openplanner.team/stops/X993aea", "https://tec.openplanner.team/stops/X993ahb"], ["https://tec.openplanner.team/stops/H5qu148b", "https://tec.openplanner.team/stops/H5qu149b"], ["https://tec.openplanner.team/stops/LaMahof1", "https://tec.openplanner.team/stops/LeIjoha1"], ["https://tec.openplanner.team/stops/LaTcolo2", "https://tec.openplanner.team/stops/LsEdorf2"], ["https://tec.openplanner.team/stops/Lmlbaro1", "https://tec.openplanner.team/stops/Lmlchev2"], ["https://tec.openplanner.team/stops/N511ava", "https://tec.openplanner.team/stops/N511avb"], ["https://tec.openplanner.team/stops/LBYwez-2", "https://tec.openplanner.team/stops/LHEvign1"], ["https://tec.openplanner.team/stops/Lousite6", "https://tec.openplanner.team/stops/Lsttech1"], ["https://tec.openplanner.team/stops/X661abb", "https://tec.openplanner.team/stops/X661acb"], ["https://tec.openplanner.team/stops/LkTraer1", "https://tec.openplanner.team/stops/LkTweih2"], ["https://tec.openplanner.team/stops/Loudela1", "https://tec.openplanner.team/stops/Louoran2"], ["https://tec.openplanner.team/stops/N551aia", "https://tec.openplanner.team/stops/N551aiz"], ["https://tec.openplanner.team/stops/X721aab", "https://tec.openplanner.team/stops/X723aka"], ["https://tec.openplanner.team/stops/H1mr125a", "https://tec.openplanner.team/stops/H1mr125b"], ["https://tec.openplanner.team/stops/Bbougbl2", "https://tec.openplanner.team/stops/Bbounci1"], ["https://tec.openplanner.team/stops/N547ana", "https://tec.openplanner.team/stops/N547anb"], ["https://tec.openplanner.team/stops/Caimeno3", "https://tec.openplanner.team/stops/N543cnb"], ["https://tec.openplanner.team/stops/LHUfali1", "https://tec.openplanner.team/stops/LHUsaul1"], ["https://tec.openplanner.team/stops/N534blg", "https://tec.openplanner.team/stops/N534brb"], ["https://tec.openplanner.team/stops/H5at115b", "https://tec.openplanner.team/stops/H5at141a"], ["https://tec.openplanner.team/stops/LTB105-1", "https://tec.openplanner.team/stops/X715aka"], ["https://tec.openplanner.team/stops/Bperqui1", "https://tec.openplanner.team/stops/N519aba"], ["https://tec.openplanner.team/stops/Bnivhut1", "https://tec.openplanner.team/stops/Bnivsci2"], ["https://tec.openplanner.team/stops/N579aab", "https://tec.openplanner.team/stops/N580aab"], ["https://tec.openplanner.team/stops/Lcacris2", "https://tec.openplanner.team/stops/Lemboul2"], ["https://tec.openplanner.team/stops/X347aab", "https://tec.openplanner.team/stops/X370ada"], ["https://tec.openplanner.team/stops/Lvehomb2", "https://tec.openplanner.team/stops/Lverema2"], ["https://tec.openplanner.team/stops/LAYcorn2", "https://tec.openplanner.team/stops/LFLcarr1"], ["https://tec.openplanner.team/stops/X601cpa", "https://tec.openplanner.team/stops/X601cqa"], ["https://tec.openplanner.team/stops/X615ata", "https://tec.openplanner.team/stops/X681aga"], ["https://tec.openplanner.team/stops/Lhr4ave1", "https://tec.openplanner.team/stops/Lhrmeta1"], ["https://tec.openplanner.team/stops/LhZkape1", "https://tec.openplanner.team/stops/LwEdorf1"], ["https://tec.openplanner.team/stops/LHHcite1", "https://tec.openplanner.team/stops/LSG172-2"], ["https://tec.openplanner.team/stops/Lceprog2", "https://tec.openplanner.team/stops/Lgrbell1"], ["https://tec.openplanner.team/stops/N205abb", "https://tec.openplanner.team/stops/N205adb"], ["https://tec.openplanner.team/stops/H4bc101b", "https://tec.openplanner.team/stops/H5bs103b"], ["https://tec.openplanner.team/stops/X919acb", "https://tec.openplanner.team/stops/X919adb"], ["https://tec.openplanner.team/stops/X719aaa", "https://tec.openplanner.team/stops/X719aab"], ["https://tec.openplanner.team/stops/X993aca", "https://tec.openplanner.team/stops/X994ala"], ["https://tec.openplanner.team/stops/N506aob", "https://tec.openplanner.team/stops/N506apb"], ["https://tec.openplanner.team/stops/X725aca", "https://tec.openplanner.team/stops/X725ada"], ["https://tec.openplanner.team/stops/H4mv194a", "https://tec.openplanner.team/stops/H4mv197b"], ["https://tec.openplanner.team/stops/Ltigare2", "https://tec.openplanner.team/stops/Ltinico2"], ["https://tec.openplanner.team/stops/X908afa", "https://tec.openplanner.team/stops/X908ala"], ["https://tec.openplanner.team/stops/X619ajb", "https://tec.openplanner.team/stops/X622aea"], ["https://tec.openplanner.team/stops/LHUlebe3", "https://tec.openplanner.team/stops/LHUlebe8"], ["https://tec.openplanner.team/stops/H1gq153b", "https://tec.openplanner.team/stops/H1lm105b"], ["https://tec.openplanner.team/stops/Bgnpjbe2", "https://tec.openplanner.team/stops/Blpgvil1"], ["https://tec.openplanner.team/stops/H1bo112b", "https://tec.openplanner.team/stops/H1ho128b"], ["https://tec.openplanner.team/stops/N501mha", "https://tec.openplanner.team/stops/N501msa"], ["https://tec.openplanner.team/stops/LAMcloc1", "https://tec.openplanner.team/stops/LAMmc--2"], ["https://tec.openplanner.team/stops/Bglarha1", "https://tec.openplanner.team/stops/Bmrswag1"], ["https://tec.openplanner.team/stops/Bcbqgar2", "https://tec.openplanner.team/stops/Btubdeh2"], ["https://tec.openplanner.team/stops/Bhoegbr1", "https://tec.openplanner.team/stops/Bhoegbr2"], ["https://tec.openplanner.team/stops/NH01aob", "https://tec.openplanner.team/stops/NH01aod"], ["https://tec.openplanner.team/stops/Lcebarr2", "https://tec.openplanner.team/stops/Lceviei2"], ["https://tec.openplanner.team/stops/Ldichat1", "https://tec.openplanner.team/stops/Ldilyce*"], ["https://tec.openplanner.team/stops/LPUalbe2", "https://tec.openplanner.team/stops/LPUlecl2"], ["https://tec.openplanner.team/stops/LVSeg--1", "https://tec.openplanner.team/stops/LVStige1"], ["https://tec.openplanner.team/stops/LHUpala1", "https://tec.openplanner.team/stops/LHUresi3"], ["https://tec.openplanner.team/stops/H1cd112b", "https://tec.openplanner.team/stops/H1hr127b"], ["https://tec.openplanner.team/stops/H2bh111b", "https://tec.openplanner.team/stops/H2mg135b"], ["https://tec.openplanner.team/stops/Cculpre1", "https://tec.openplanner.team/stops/Ccuphai4"], ["https://tec.openplanner.team/stops/Cjupn3", "https://tec.openplanner.team/stops/Cjupn4"], ["https://tec.openplanner.team/stops/Bbsgfva1", "https://tec.openplanner.team/stops/Bgzdsta2"], ["https://tec.openplanner.team/stops/H4og206b", "https://tec.openplanner.team/stops/H4og213b"], ["https://tec.openplanner.team/stops/Btubbot1", "https://tec.openplanner.team/stops/Btubpir2"], ["https://tec.openplanner.team/stops/H3bo103a", "https://tec.openplanner.team/stops/H3bo103b"], ["https://tec.openplanner.team/stops/Bottcco1", "https://tec.openplanner.team/stops/Bottcco2"], ["https://tec.openplanner.team/stops/Bblavhu2", "https://tec.openplanner.team/stops/Bwateco1"], ["https://tec.openplanner.team/stops/Baudsta2", "https://tec.openplanner.team/stops/Bovejei1"], ["https://tec.openplanner.team/stops/X879ada", "https://tec.openplanner.team/stops/X879adb"], ["https://tec.openplanner.team/stops/X804aga", "https://tec.openplanner.team/stops/X804bga"], ["https://tec.openplanner.team/stops/X903aeb", "https://tec.openplanner.team/stops/X903afb"], ["https://tec.openplanner.team/stops/X948afa", "https://tec.openplanner.team/stops/X948awa"], ["https://tec.openplanner.team/stops/LREfloh1", "https://tec.openplanner.team/stops/LREfloh2"], ["https://tec.openplanner.team/stops/X897ara", "https://tec.openplanner.team/stops/X897aua"], ["https://tec.openplanner.team/stops/H4we136a", "https://tec.openplanner.team/stops/H4we136b"], ["https://tec.openplanner.team/stops/X739aaa", "https://tec.openplanner.team/stops/X739acb"], ["https://tec.openplanner.team/stops/Lpegole2", "https://tec.openplanner.team/stops/Lpeprev2"], ["https://tec.openplanner.team/stops/X982awa", "https://tec.openplanner.team/stops/X982ayb"], ["https://tec.openplanner.team/stops/LTIcime2", "https://tec.openplanner.team/stops/LTIsupe2"], ["https://tec.openplanner.team/stops/Cmlhaie1", "https://tec.openplanner.team/stops/Cmlrang1"], ["https://tec.openplanner.team/stops/Llghugo1", "https://tec.openplanner.team/stops/Llgplat2"], ["https://tec.openplanner.team/stops/X615bda", "https://tec.openplanner.team/stops/X615beb"], ["https://tec.openplanner.team/stops/LBVzand3", "https://tec.openplanner.team/stops/LLscent1"], ["https://tec.openplanner.team/stops/Cpclarm2", "https://tec.openplanner.team/stops/Cpcndce2"], ["https://tec.openplanner.team/stops/H4ty268a", "https://tec.openplanner.team/stops/H4ty327a"], ["https://tec.openplanner.team/stops/N524aca", "https://tec.openplanner.team/stops/N524acb"], ["https://tec.openplanner.team/stops/LbOre152", "https://tec.openplanner.team/stops/LbOre3b2"], ["https://tec.openplanner.team/stops/X952aaa", "https://tec.openplanner.team/stops/X952ajb"], ["https://tec.openplanner.team/stops/LCRabbe1", "https://tec.openplanner.team/stops/LCRchpl1"], ["https://tec.openplanner.team/stops/LMNjard1", "https://tec.openplanner.team/stops/LPbtene1"], ["https://tec.openplanner.team/stops/X897aca", "https://tec.openplanner.team/stops/X897aeb"], ["https://tec.openplanner.team/stops/Bwaunce2", "https://tec.openplanner.team/stops/Bwaunop2"], ["https://tec.openplanner.team/stops/Lourose3", "https://tec.openplanner.team/stops/Lousite3"], ["https://tec.openplanner.team/stops/LAOeg--1", "https://tec.openplanner.team/stops/LLRgdma1"], ["https://tec.openplanner.team/stops/Bneeblo1", "https://tec.openplanner.team/stops/Bneeblo2"], ["https://tec.openplanner.team/stops/LGlwarf1", "https://tec.openplanner.team/stops/LGlwarf2"], ["https://tec.openplanner.team/stops/Cladura3", "https://tec.openplanner.team/stops/Cladura5"], ["https://tec.openplanner.team/stops/LVEhali2", "https://tec.openplanner.team/stops/LVErtt-1"], ["https://tec.openplanner.team/stops/X921aib", "https://tec.openplanner.team/stops/X921ajb"], ["https://tec.openplanner.team/stops/Bbonbcr1", "https://tec.openplanner.team/stops/Bbonbcr2"], ["https://tec.openplanner.team/stops/H1fa120b", "https://tec.openplanner.team/stops/H1hl128b"], ["https://tec.openplanner.team/stops/N543baa", "https://tec.openplanner.team/stops/N543cpa"], ["https://tec.openplanner.team/stops/H1gh155b", "https://tec.openplanner.team/stops/H1gh159b"], ["https://tec.openplanner.team/stops/Cvregl1", "https://tec.openplanner.team/stops/Cvrhaie2"], ["https://tec.openplanner.team/stops/LBVlamo1", "https://tec.openplanner.team/stops/LLocruc2"], ["https://tec.openplanner.team/stops/LFehaut1", "https://tec.openplanner.team/stops/LFehaut2"], ["https://tec.openplanner.team/stops/Bneecha3", "https://tec.openplanner.team/stops/Bneedia1"], ["https://tec.openplanner.team/stops/H4pi132a", "https://tec.openplanner.team/stops/H4wp153a"], ["https://tec.openplanner.team/stops/Boveker2", "https://tec.openplanner.team/stops/Bovesnh1"], ["https://tec.openplanner.team/stops/H2mo119a", "https://tec.openplanner.team/stops/H2mo126a"], ["https://tec.openplanner.team/stops/X741aja", "https://tec.openplanner.team/stops/X741aoa"], ["https://tec.openplanner.team/stops/N117aka", "https://tec.openplanner.team/stops/N117ara"], ["https://tec.openplanner.team/stops/N579ada", "https://tec.openplanner.team/stops/N579aea"], ["https://tec.openplanner.team/stops/X719aea", "https://tec.openplanner.team/stops/X719afb"], ["https://tec.openplanner.team/stops/Lrapays1", "https://tec.openplanner.team/stops/LSAchef2"], ["https://tec.openplanner.team/stops/LTRferm1", "https://tec.openplanner.team/stops/LTRthie2"], ["https://tec.openplanner.team/stops/N503agb", "https://tec.openplanner.team/stops/N535ada"], ["https://tec.openplanner.team/stops/H2ch100a", "https://tec.openplanner.team/stops/H2ch107a"], ["https://tec.openplanner.team/stops/X653aca", "https://tec.openplanner.team/stops/X663axb"], ["https://tec.openplanner.team/stops/LHCcoul1", "https://tec.openplanner.team/stops/LSubass1"], ["https://tec.openplanner.team/stops/N512aka", "https://tec.openplanner.team/stops/N512asb"], ["https://tec.openplanner.team/stops/H1do108c", "https://tec.openplanner.team/stops/H1do109a"], ["https://tec.openplanner.team/stops/Cgzhour3", "https://tec.openplanner.team/stops/Cgzoctr1"], ["https://tec.openplanner.team/stops/N553aib", "https://tec.openplanner.team/stops/N553aja"], ["https://tec.openplanner.team/stops/Bixlaca1", "https://tec.openplanner.team/stops/Bixlaca2"], ["https://tec.openplanner.team/stops/LHGbeur3", "https://tec.openplanner.team/stops/LHGtong1"], ["https://tec.openplanner.team/stops/H1do108a", "https://tec.openplanner.team/stops/H1do111a"], ["https://tec.openplanner.team/stops/H2ca111a", "https://tec.openplanner.team/stops/H2ca111b"], ["https://tec.openplanner.team/stops/X636aza", "https://tec.openplanner.team/stops/X636bgb"], ["https://tec.openplanner.team/stops/N423afb", "https://tec.openplanner.team/stops/N423agb"], ["https://tec.openplanner.team/stops/Llgandr2", "https://tec.openplanner.team/stops/Llgbruy1"], ["https://tec.openplanner.team/stops/LSoeg--1", "https://tec.openplanner.team/stops/LSokrin2"], ["https://tec.openplanner.team/stops/LTychev1", "https://tec.openplanner.team/stops/LTyhall2"], ["https://tec.openplanner.team/stops/N221aaa", "https://tec.openplanner.team/stops/X394aca"], ["https://tec.openplanner.team/stops/LDOchev1", "https://tec.openplanner.team/stops/LHVetoi1"], ["https://tec.openplanner.team/stops/H5st161a", "https://tec.openplanner.team/stops/H5st164b"], ["https://tec.openplanner.team/stops/Bottath1", "https://tec.openplanner.team/stops/Bottcli2"], ["https://tec.openplanner.team/stops/Lvtlomb2", "https://tec.openplanner.team/stops/Lvtlomb4"], ["https://tec.openplanner.team/stops/Bbrlpar1", "https://tec.openplanner.team/stops/Bbrlpar2"], ["https://tec.openplanner.team/stops/N539afb", "https://tec.openplanner.team/stops/N540agb"], ["https://tec.openplanner.team/stops/H4ga149b", "https://tec.openplanner.team/stops/H4ga171b"], ["https://tec.openplanner.team/stops/H4ho119a", "https://tec.openplanner.team/stops/H4ho119b"], ["https://tec.openplanner.team/stops/X801ata", "https://tec.openplanner.team/stops/X801aua"], ["https://tec.openplanner.team/stops/X616aab", "https://tec.openplanner.team/stops/X695aia"], ["https://tec.openplanner.team/stops/H2hl111a", "https://tec.openplanner.team/stops/H2pe155a"], ["https://tec.openplanner.team/stops/Lfh-sci1", "https://tec.openplanner.team/stops/Lfh-sci2"], ["https://tec.openplanner.team/stops/Llghenr2", "https://tec.openplanner.team/stops/Llgrosa2"], ["https://tec.openplanner.team/stops/H1et101a", "https://tec.openplanner.team/stops/H1ju119a"], ["https://tec.openplanner.team/stops/N531aha", "https://tec.openplanner.team/stops/N576aja"], ["https://tec.openplanner.team/stops/Lagjado5", "https://tec.openplanner.team/stops/Lagjado6"], ["https://tec.openplanner.team/stops/Blhugai1", "https://tec.openplanner.team/stops/Bohngai2"], ["https://tec.openplanner.team/stops/N537aba", "https://tec.openplanner.team/stops/N537abb"], ["https://tec.openplanner.team/stops/Barcast2", "https://tec.openplanner.team/stops/Barcbav1"], ["https://tec.openplanner.team/stops/LGecite2", "https://tec.openplanner.team/stops/LGegrun1"], ["https://tec.openplanner.team/stops/X670aca", "https://tec.openplanner.team/stops/X670aib"], ["https://tec.openplanner.team/stops/Ljemont2", "https://tec.openplanner.team/stops/Lmomine1"], ["https://tec.openplanner.team/stops/N230adb", "https://tec.openplanner.team/stops/N233aab"], ["https://tec.openplanner.team/stops/LBPxhav1", "https://tec.openplanner.team/stops/LRGmoul2"], ["https://tec.openplanner.team/stops/X804bja", "https://tec.openplanner.team/stops/X804bjb"], ["https://tec.openplanner.team/stops/H4ae102b", "https://tec.openplanner.team/stops/H5rx136a"], ["https://tec.openplanner.team/stops/Lmochpl2", "https://tec.openplanner.team/stops/Lmogoff1"], ["https://tec.openplanner.team/stops/X764abb", "https://tec.openplanner.team/stops/X764ada"], ["https://tec.openplanner.team/stops/LbThau11", "https://tec.openplanner.team/stops/LbTkreu1"], ["https://tec.openplanner.team/stops/LBgbaga1", "https://tec.openplanner.team/stops/LBgbaga2"], ["https://tec.openplanner.team/stops/Bblafra2", "https://tec.openplanner.team/stops/Bblafra3"], ["https://tec.openplanner.team/stops/LFsherm1", "https://tec.openplanner.team/stops/LFsherm2"], ["https://tec.openplanner.team/stops/Bohnmes2", "https://tec.openplanner.team/stops/Bohnmes3"], ["https://tec.openplanner.team/stops/X643aaa", "https://tec.openplanner.team/stops/X644aab"], ["https://tec.openplanner.team/stops/X358acd", "https://tec.openplanner.team/stops/X358adb"], ["https://tec.openplanner.team/stops/Llgbatt2", "https://tec.openplanner.team/stops/Llghoch1"], ["https://tec.openplanner.team/stops/LvAkirc2", "https://tec.openplanner.team/stops/LvAkirc4"], ["https://tec.openplanner.team/stops/H1ms267a", "https://tec.openplanner.team/stops/H1ms290a"], ["https://tec.openplanner.team/stops/N211agb", "https://tec.openplanner.team/stops/N211ava"], ["https://tec.openplanner.team/stops/Brixpla1", "https://tec.openplanner.team/stops/Brixpro2"], ["https://tec.openplanner.team/stops/Bottcro1", "https://tec.openplanner.team/stops/Bottvtc2"], ["https://tec.openplanner.team/stops/Cjufour3", "https://tec.openplanner.team/stops/CMchag1"], ["https://tec.openplanner.team/stops/X607adb", "https://tec.openplanner.team/stops/X607aeb"], ["https://tec.openplanner.team/stops/LbUhons1", "https://tec.openplanner.team/stops/LbUhuge1"], ["https://tec.openplanner.team/stops/Bllnchv1", "https://tec.openplanner.team/stops/Bllnfeq1"], ["https://tec.openplanner.team/stops/Lenptsa1", "https://tec.openplanner.team/stops/Lenvale1"], ["https://tec.openplanner.team/stops/LFochap1", "https://tec.openplanner.team/stops/LGOdelv2"], ["https://tec.openplanner.team/stops/LBahome1", "https://tec.openplanner.team/stops/LBalacr1"], ["https://tec.openplanner.team/stops/LeYteeh2", "https://tec.openplanner.team/stops/LhSwind2"], ["https://tec.openplanner.team/stops/LOTawan1", "https://tec.openplanner.team/stops/LOTjacq1"], ["https://tec.openplanner.team/stops/X390anb", "https://tec.openplanner.team/stops/X991aeb"], ["https://tec.openplanner.team/stops/LSMlier1", "https://tec.openplanner.team/stops/LSMtarg2"], ["https://tec.openplanner.team/stops/X949aha", "https://tec.openplanner.team/stops/X949ama"], ["https://tec.openplanner.team/stops/N323aaa", "https://tec.openplanner.team/stops/N368afa"], ["https://tec.openplanner.team/stops/Cgregli2", "https://tec.openplanner.team/stops/Cgrflac2"], ["https://tec.openplanner.team/stops/H5rx106b", "https://tec.openplanner.team/stops/H5rx122a"], ["https://tec.openplanner.team/stops/N534aga", "https://tec.openplanner.team/stops/N534agb"], ["https://tec.openplanner.team/stops/Lhrlaix1", "https://tec.openplanner.team/stops/Lhrlalo2"], ["https://tec.openplanner.team/stops/H2ll196a", "https://tec.openplanner.team/stops/H2ll257b"], ["https://tec.openplanner.team/stops/LSOvoie4", "https://tec.openplanner.team/stops/LXHbell2"], ["https://tec.openplanner.team/stops/LFRspa-1", "https://tec.openplanner.team/stops/LFRspa-2"], ["https://tec.openplanner.team/stops/LMEeg--2", "https://tec.openplanner.team/stops/LMEgare1"], ["https://tec.openplanner.team/stops/X994aka", "https://tec.openplanner.team/stops/X995ade"], ["https://tec.openplanner.team/stops/N251ada", "https://tec.openplanner.team/stops/N251adb"], ["https://tec.openplanner.team/stops/Lhehoux1", "https://tec.openplanner.team/stops/Lheneuv2"], ["https://tec.openplanner.team/stops/X811ada", "https://tec.openplanner.team/stops/X811afb"], ["https://tec.openplanner.team/stops/H1cu108b", "https://tec.openplanner.team/stops/H1ms922a"], ["https://tec.openplanner.team/stops/H1ca105a", "https://tec.openplanner.team/stops/H1ne144a"], ["https://tec.openplanner.team/stops/Lvoeg--2", "https://tec.openplanner.team/stops/Lvopaqu2"], ["https://tec.openplanner.team/stops/Blpgeco2", "https://tec.openplanner.team/stops/Blpgvil1"], ["https://tec.openplanner.team/stops/Cchjaur2", "https://tec.openplanner.team/stops/Cchplan2"], ["https://tec.openplanner.team/stops/X342aaa", "https://tec.openplanner.team/stops/X342abb"], ["https://tec.openplanner.team/stops/H1fr113b", "https://tec.openplanner.team/stops/H1lb136b"], ["https://tec.openplanner.team/stops/Bitrbvo2", "https://tec.openplanner.team/stops/Bosqpqu1"], ["https://tec.openplanner.team/stops/N235abb", "https://tec.openplanner.team/stops/N235ahb"], ["https://tec.openplanner.team/stops/LWHwaas1", "https://tec.openplanner.team/stops/LWHwaas4"], ["https://tec.openplanner.team/stops/LSAmous1", "https://tec.openplanner.team/stops/LSAtrih1"], ["https://tec.openplanner.team/stops/Bgrhcen2", "https://tec.openplanner.team/stops/Bgrhpos1"], ["https://tec.openplanner.team/stops/LAx17--2", "https://tec.openplanner.team/stops/LFsbasc1"], ["https://tec.openplanner.team/stops/H2jo162b", "https://tec.openplanner.team/stops/H2jo163b"], ["https://tec.openplanner.team/stops/LSPjoli2", "https://tec.openplanner.team/stops/LSZdepo1"], ["https://tec.openplanner.team/stops/Bhen5ma1", "https://tec.openplanner.team/stops/Bhenfla1"], ["https://tec.openplanner.team/stops/X624aba", "https://tec.openplanner.team/stops/X624aka"], ["https://tec.openplanner.team/stops/Cmmlong2", "https://tec.openplanner.team/stops/Cmmphai2"], ["https://tec.openplanner.team/stops/N351ajb", "https://tec.openplanner.team/stops/N351ajc"], ["https://tec.openplanner.team/stops/X669aaa", "https://tec.openplanner.team/stops/X669ada"], ["https://tec.openplanner.team/stops/Bosqsam2", "https://tec.openplanner.team/stops/Bvirdco1"], ["https://tec.openplanner.team/stops/X354ada", "https://tec.openplanner.team/stops/X354aga"], ["https://tec.openplanner.team/stops/X650aaa", "https://tec.openplanner.team/stops/X650aab"], ["https://tec.openplanner.team/stops/N101ala", "https://tec.openplanner.team/stops/N153aaa"], ["https://tec.openplanner.team/stops/H1gi123a", "https://tec.openplanner.team/stops/H1hy128a"], ["https://tec.openplanner.team/stops/N501jjb", "https://tec.openplanner.team/stops/N501jpa"], ["https://tec.openplanner.team/stops/LBrneli1", "https://tec.openplanner.team/stops/LBrneli2"], ["https://tec.openplanner.team/stops/X721aea", "https://tec.openplanner.team/stops/X721ala"], ["https://tec.openplanner.team/stops/LCaalou2", "https://tec.openplanner.team/stops/Lfhmarn2"], ["https://tec.openplanner.team/stops/LLrchat2", "https://tec.openplanner.team/stops/LLreque2"], ["https://tec.openplanner.team/stops/Cgpchen1", "https://tec.openplanner.team/stops/Cgplhoi1"], ["https://tec.openplanner.team/stops/Buccvoi1", "https://tec.openplanner.team/stops/Buccvoi2"], ["https://tec.openplanner.team/stops/X804adb", "https://tec.openplanner.team/stops/X804bzb"], ["https://tec.openplanner.team/stops/Bchgegl2", "https://tec.openplanner.team/stops/Bchgrco2"], ["https://tec.openplanner.team/stops/H1ms253a", "https://tec.openplanner.team/stops/H1ms907a"], ["https://tec.openplanner.team/stops/Bquebth1", "https://tec.openplanner.team/stops/Bquecar2"], ["https://tec.openplanner.team/stops/X902ada", "https://tec.openplanner.team/stops/X902ala"], ["https://tec.openplanner.team/stops/H1gr123b", "https://tec.openplanner.team/stops/H1gr123d"], ["https://tec.openplanner.team/stops/Lbbviad1", "https://tec.openplanner.team/stops/Lbbviad3"], ["https://tec.openplanner.team/stops/X822ala", "https://tec.openplanner.team/stops/X822aqa"], ["https://tec.openplanner.team/stops/N531aab", "https://tec.openplanner.team/stops/N531aba"], ["https://tec.openplanner.team/stops/LVPbleh2", "https://tec.openplanner.team/stops/LVPgrot3"], ["https://tec.openplanner.team/stops/Lfhcime1", "https://tec.openplanner.team/stops/Lfhncha2"], ["https://tec.openplanner.team/stops/Bettars1", "https://tec.openplanner.team/stops/Bettlha1"], ["https://tec.openplanner.team/stops/H2ch123c", "https://tec.openplanner.team/stops/H2ch125a"], ["https://tec.openplanner.team/stops/X982bea", "https://tec.openplanner.team/stops/X982bqa"], ["https://tec.openplanner.team/stops/H5at112a", "https://tec.openplanner.team/stops/H5at137b"], ["https://tec.openplanner.team/stops/Bbounci2", "https://tec.openplanner.team/stops/Bsmgpon1"], ["https://tec.openplanner.team/stops/Bsmgmou2", "https://tec.openplanner.team/stops/Bsmgsuz2"], ["https://tec.openplanner.team/stops/Bsmgmou1", "https://tec.openplanner.team/stops/Bsmgsuz1"], ["https://tec.openplanner.team/stops/X818asc", "https://tec.openplanner.team/stops/X818asd"], ["https://tec.openplanner.team/stops/X829ada", "https://tec.openplanner.team/stops/X829adb"], ["https://tec.openplanner.team/stops/Lprceri2", "https://tec.openplanner.team/stops/Lprspra2"], ["https://tec.openplanner.team/stops/LDObell2", "https://tec.openplanner.team/stops/LSubass2"], ["https://tec.openplanner.team/stops/X780aga", "https://tec.openplanner.team/stops/X780aha"], ["https://tec.openplanner.team/stops/X767aaa", "https://tec.openplanner.team/stops/X768aab"], ["https://tec.openplanner.team/stops/X942afb", "https://tec.openplanner.team/stops/X943afb"], ["https://tec.openplanner.team/stops/X661abb", "https://tec.openplanner.team/stops/X822aja"], ["https://tec.openplanner.team/stops/LLGec--*", "https://tec.openplanner.team/stops/LORthie1"], ["https://tec.openplanner.team/stops/Bbeaech2", "https://tec.openplanner.team/stops/Bbeagae2"], ["https://tec.openplanner.team/stops/Ccogrbu2", "https://tec.openplanner.team/stops/Csoforr3"], ["https://tec.openplanner.team/stops/Lhrmeta2", "https://tec.openplanner.team/stops/Lhrspi-1"], ["https://tec.openplanner.team/stops/X954afa", "https://tec.openplanner.team/stops/X954aha"], ["https://tec.openplanner.team/stops/N509aab", "https://tec.openplanner.team/stops/N510adb"], ["https://tec.openplanner.team/stops/X681aca", "https://tec.openplanner.team/stops/X696aga"], ["https://tec.openplanner.team/stops/H1ha186a", "https://tec.openplanner.team/stops/H1ha186b"], ["https://tec.openplanner.team/stops/Bhandub1", "https://tec.openplanner.team/stops/LHNtonn2"], ["https://tec.openplanner.team/stops/X941aca", "https://tec.openplanner.team/stops/X941aeb"], ["https://tec.openplanner.team/stops/H1mb127a", "https://tec.openplanner.team/stops/H1mb128b"], ["https://tec.openplanner.team/stops/X606aaa", "https://tec.openplanner.team/stops/X648abb"], ["https://tec.openplanner.team/stops/LWRbomb3", "https://tec.openplanner.team/stops/LWRgare2"], ["https://tec.openplanner.team/stops/N562akb", "https://tec.openplanner.team/stops/N562bra"], ["https://tec.openplanner.team/stops/Cwfdame2", "https://tec.openplanner.team/stops/Cwfdupo1"], ["https://tec.openplanner.team/stops/X917adb", "https://tec.openplanner.team/stops/X917afb"], ["https://tec.openplanner.team/stops/N501gpa", "https://tec.openplanner.team/stops/N501mtd"], ["https://tec.openplanner.team/stops/LVLpane1", "https://tec.openplanner.team/stops/LVLpane2"], ["https://tec.openplanner.team/stops/N230afb", "https://tec.openplanner.team/stops/N242agb"], ["https://tec.openplanner.team/stops/H1fl134b", "https://tec.openplanner.team/stops/H1qu112b"], ["https://tec.openplanner.team/stops/LSkbo831", "https://tec.openplanner.team/stops/LSkmarq1"], ["https://tec.openplanner.team/stops/X818asa", "https://tec.openplanner.team/stops/X818asc"], ["https://tec.openplanner.team/stops/N513awb", "https://tec.openplanner.team/stops/N513axb"], ["https://tec.openplanner.team/stops/LAUcarr1", "https://tec.openplanner.team/stops/LFdbruy2"], ["https://tec.openplanner.team/stops/Bbcopre2", "https://tec.openplanner.team/stops/H3br107b"], ["https://tec.openplanner.team/stops/LMgkrui1", "https://tec.openplanner.team/stops/LMgwith1"], ["https://tec.openplanner.team/stops/LBivill1", "https://tec.openplanner.team/stops/LBivill2"], ["https://tec.openplanner.team/stops/X912acb", "https://tec.openplanner.team/stops/X912afb"], ["https://tec.openplanner.team/stops/Lcefoxh1", "https://tec.openplanner.team/stops/Lceleje2"], ["https://tec.openplanner.team/stops/Louense1", "https://tec.openplanner.team/stops/Loutras1"], ["https://tec.openplanner.team/stops/LATdame2", "https://tec.openplanner.team/stops/LWzeg--*"], ["https://tec.openplanner.team/stops/Cbtlong1", "https://tec.openplanner.team/stops/Cwsegli1"], ["https://tec.openplanner.team/stops/LSeaque1", "https://tec.openplanner.team/stops/LSeec--1"], ["https://tec.openplanner.team/stops/LEMfort1", "https://tec.openplanner.team/stops/LPleclu2"], ["https://tec.openplanner.team/stops/Cgocalv6", "https://tec.openplanner.team/stops/Cgocapu2"], ["https://tec.openplanner.team/stops/LHCmonu4", "https://tec.openplanner.team/stops/LHMhof-1"], ["https://tec.openplanner.team/stops/H1gi119b", "https://tec.openplanner.team/stops/H1gi119c"], ["https://tec.openplanner.team/stops/X793aoa", "https://tec.openplanner.team/stops/X793aob"], ["https://tec.openplanner.team/stops/H4wp151a", "https://tec.openplanner.team/stops/H4wp153a"], ["https://tec.openplanner.team/stops/Crbreve2", "https://tec.openplanner.team/stops/Cslbhau2"], ["https://tec.openplanner.team/stops/N535ajb", "https://tec.openplanner.team/stops/N535asb"], ["https://tec.openplanner.team/stops/LmD27--1", "https://tec.openplanner.team/stops/LmDwei32"], ["https://tec.openplanner.team/stops/H1br124b", "https://tec.openplanner.team/stops/H2ma202a"], ["https://tec.openplanner.team/stops/X756agd", "https://tec.openplanner.team/stops/X756aka"], ["https://tec.openplanner.team/stops/X808ama", "https://tec.openplanner.team/stops/X808amb"], ["https://tec.openplanner.team/stops/X734aga", "https://tec.openplanner.team/stops/X734agb"], ["https://tec.openplanner.team/stops/Llglaha2", "https://tec.openplanner.team/stops/Llgpere2"], ["https://tec.openplanner.team/stops/Cbwmato1", "https://tec.openplanner.team/stops/Cmqcend2"], ["https://tec.openplanner.team/stops/N557ahb", "https://tec.openplanner.team/stops/N557ajb"], ["https://tec.openplanner.team/stops/X604afc", "https://tec.openplanner.team/stops/X633acb"], ["https://tec.openplanner.team/stops/H1ms271a", "https://tec.openplanner.team/stops/H1ms271b"], ["https://tec.openplanner.team/stops/H1sg144b", "https://tec.openplanner.team/stops/H1te177a"], ["https://tec.openplanner.team/stops/Btlbmel1", "https://tec.openplanner.team/stops/Btlbtbe4"], ["https://tec.openplanner.team/stops/LWecorn2", "https://tec.openplanner.team/stops/LWerola1"], ["https://tec.openplanner.team/stops/LBscasi2", "https://tec.openplanner.team/stops/LBsfer-2"], ["https://tec.openplanner.team/stops/Cmasncb2", "https://tec.openplanner.team/stops/Cmastfi1"], ["https://tec.openplanner.team/stops/N547aba", "https://tec.openplanner.team/stops/N565alb"], ["https://tec.openplanner.team/stops/X605aca", "https://tec.openplanner.team/stops/X605adb"], ["https://tec.openplanner.team/stops/LLOhest1", "https://tec.openplanner.team/stops/LVtvalu1"], ["https://tec.openplanner.team/stops/Lcacasi1", "https://tec.openplanner.team/stops/Lcacasi2"], ["https://tec.openplanner.team/stops/H4wa155a", "https://tec.openplanner.team/stops/H4wa161a"], ["https://tec.openplanner.team/stops/Bcercsa2", "https://tec.openplanner.team/stops/Bcsempl1"], ["https://tec.openplanner.team/stops/Cnacent1", "https://tec.openplanner.team/stops/Cnacent2"], ["https://tec.openplanner.team/stops/LWechea2", "https://tec.openplanner.team/stops/LWechpl2"], ["https://tec.openplanner.team/stops/X921aia", "https://tec.openplanner.team/stops/X921arb"], ["https://tec.openplanner.team/stops/LhGfrie2", "https://tec.openplanner.team/stops/LhGlang2"], ["https://tec.openplanner.team/stops/LSTchen1", "https://tec.openplanner.team/stops/LSTdero2"], ["https://tec.openplanner.team/stops/N525aca", "https://tec.openplanner.team/stops/N525aob"], ["https://tec.openplanner.team/stops/LhPhale1", "https://tec.openplanner.team/stops/LmImirf2"], ["https://tec.openplanner.team/stops/Bstecal1", "https://tec.openplanner.team/stops/Bstetre1"], ["https://tec.openplanner.team/stops/N137aca", "https://tec.openplanner.team/stops/N137adb"], ["https://tec.openplanner.team/stops/H4do100a", "https://tec.openplanner.team/stops/H4do101a"], ["https://tec.openplanner.team/stops/Cvregl2", "https://tec.openplanner.team/stops/NH03ada"], ["https://tec.openplanner.team/stops/Bbghepi1", "https://tec.openplanner.team/stops/Bquebre2"], ["https://tec.openplanner.team/stops/Livjeu-2", "https://tec.openplanner.team/stops/Livmoul2"], ["https://tec.openplanner.team/stops/LRRecsc*", "https://tec.openplanner.team/stops/LRRelec1"], ["https://tec.openplanner.team/stops/H2ll257a", "https://tec.openplanner.team/stops/H2ll257b"], ["https://tec.openplanner.team/stops/Lsmrwan1", "https://tec.openplanner.team/stops/Lsmrwan2"], ["https://tec.openplanner.team/stops/N311aaa", "https://tec.openplanner.team/stops/N311aab"], ["https://tec.openplanner.team/stops/H1vb143a", "https://tec.openplanner.team/stops/H1wz173a"], ["https://tec.openplanner.team/stops/Cctecol2", "https://tec.openplanner.team/stops/Cctptsa1"], ["https://tec.openplanner.team/stops/H4bd107b", "https://tec.openplanner.team/stops/H4bd112b"], ["https://tec.openplanner.team/stops/LSInd--1", "https://tec.openplanner.team/stops/LSIvieu1"], ["https://tec.openplanner.team/stops/N222ada", "https://tec.openplanner.team/stops/X222aza"], ["https://tec.openplanner.team/stops/Cmabegh1", "https://tec.openplanner.team/stops/Cmachau2"], ["https://tec.openplanner.team/stops/Csecout1", "https://tec.openplanner.team/stops/Csepost1"], ["https://tec.openplanner.team/stops/Cgrchfe1", "https://tec.openplanner.team/stops/Clvmesa2"], ["https://tec.openplanner.team/stops/LGAbois1", "https://tec.openplanner.team/stops/LGAbois2"], ["https://tec.openplanner.team/stops/X746afa", "https://tec.openplanner.team/stops/X746agb"], ["https://tec.openplanner.team/stops/Cpclarm1", "https://tec.openplanner.team/stops/Cpclibe3"], ["https://tec.openplanner.team/stops/H4bc101b", "https://tec.openplanner.team/stops/H4bc102b"], ["https://tec.openplanner.team/stops/Bbstbou2", "https://tec.openplanner.team/stops/Bbstfch1"], ["https://tec.openplanner.team/stops/N215abb", "https://tec.openplanner.team/stops/N261agb"], ["https://tec.openplanner.team/stops/Blmlcar1", "https://tec.openplanner.team/stops/Blmlcim1"], ["https://tec.openplanner.team/stops/H2an100b", "https://tec.openplanner.team/stops/H2an104b"], ["https://tec.openplanner.team/stops/H4hx121a", "https://tec.openplanner.team/stops/H4hx124a"], ["https://tec.openplanner.team/stops/X758ada", "https://tec.openplanner.team/stops/X758afb"], ["https://tec.openplanner.team/stops/N501gaa", "https://tec.openplanner.team/stops/N501gfb"], ["https://tec.openplanner.team/stops/LTymahr1", "https://tec.openplanner.team/stops/LTymahr2"], ["https://tec.openplanner.team/stops/H4ry131a", "https://tec.openplanner.team/stops/H4ry140b"], ["https://tec.openplanner.team/stops/Cwfnamu2", "https://tec.openplanner.team/stops/N543bma"], ["https://tec.openplanner.team/stops/X624aab", "https://tec.openplanner.team/stops/X624abb"], ["https://tec.openplanner.team/stops/X765aea", "https://tec.openplanner.team/stops/X765aeb"], ["https://tec.openplanner.team/stops/H1bo145b", "https://tec.openplanner.team/stops/H1bo150b"], ["https://tec.openplanner.team/stops/X601bub", "https://tec.openplanner.team/stops/X601ceb"], ["https://tec.openplanner.team/stops/H2sb258b", "https://tec.openplanner.team/stops/H3lr108a"], ["https://tec.openplanner.team/stops/Barcsta2", "https://tec.openplanner.team/stops/Bgzddge1"], ["https://tec.openplanner.team/stops/H4ir163b", "https://tec.openplanner.team/stops/H4ir163c"], ["https://tec.openplanner.team/stops/X608ada", "https://tec.openplanner.team/stops/X608aob"], ["https://tec.openplanner.team/stops/X640aha", "https://tec.openplanner.team/stops/X640ajb"], ["https://tec.openplanner.team/stops/N538alb", "https://tec.openplanner.team/stops/N538ara"], ["https://tec.openplanner.team/stops/NL76aob", "https://tec.openplanner.team/stops/NL76asa"], ["https://tec.openplanner.team/stops/NL78adb", "https://tec.openplanner.team/stops/NL81aeb"], ["https://tec.openplanner.team/stops/LAUnico2", "https://tec.openplanner.team/stops/LAUvict3"], ["https://tec.openplanner.team/stops/N507aga", "https://tec.openplanner.team/stops/N508aca"], ["https://tec.openplanner.team/stops/X602afa", "https://tec.openplanner.team/stops/X602aha"], ["https://tec.openplanner.team/stops/Lpefler2", "https://tec.openplanner.team/stops/Lpelouh2"], ["https://tec.openplanner.team/stops/NH01aib", "https://tec.openplanner.team/stops/NH01ana"], ["https://tec.openplanner.team/stops/N501hra", "https://tec.openplanner.team/stops/N501hrb"], ["https://tec.openplanner.team/stops/X608aaa", "https://tec.openplanner.team/stops/X608abb"], ["https://tec.openplanner.team/stops/LCUgale1", "https://tec.openplanner.team/stops/NL57ala"], ["https://tec.openplanner.team/stops/Bnivga41", "https://tec.openplanner.team/stops/Bnivga51"], ["https://tec.openplanner.team/stops/H1ms276a", "https://tec.openplanner.team/stops/H1ms912a"], ["https://tec.openplanner.team/stops/LCOcarr2", "https://tec.openplanner.team/stops/Lpelouh2"], ["https://tec.openplanner.team/stops/X912aab", "https://tec.openplanner.team/stops/X912aka"], ["https://tec.openplanner.team/stops/LHAclin2", "https://tec.openplanner.team/stops/LVIdeva1"], ["https://tec.openplanner.team/stops/LTaouch1", "https://tec.openplanner.team/stops/LTaouch2"], ["https://tec.openplanner.team/stops/N539aia", "https://tec.openplanner.team/stops/N539aib"], ["https://tec.openplanner.team/stops/X604ala", "https://tec.openplanner.team/stops/X604alb"], ["https://tec.openplanner.team/stops/LRRbuta1", "https://tec.openplanner.team/stops/LRRrimi1"], ["https://tec.openplanner.team/stops/N201ama", "https://tec.openplanner.team/stops/N201amb"], ["https://tec.openplanner.team/stops/X733agb", "https://tec.openplanner.team/stops/X733akb"], ["https://tec.openplanner.team/stops/Bsambra1", "https://tec.openplanner.team/stops/Bsamlon2"], ["https://tec.openplanner.team/stops/X747afa", "https://tec.openplanner.team/stops/X747aha"], ["https://tec.openplanner.team/stops/Lvecite2", "https://tec.openplanner.team/stops/Lvewall2"], ["https://tec.openplanner.team/stops/X917afb", "https://tec.openplanner.team/stops/X917ahb"], ["https://tec.openplanner.team/stops/LsVgore2", "https://tec.openplanner.team/stops/LsVlind*"], ["https://tec.openplanner.team/stops/N155aed", "https://tec.openplanner.team/stops/N155ahb"], ["https://tec.openplanner.team/stops/N167abb", "https://tec.openplanner.team/stops/N244axa"], ["https://tec.openplanner.team/stops/Cvssncv2", "https://tec.openplanner.team/stops/N530ada"], ["https://tec.openplanner.team/stops/N501jga", "https://tec.openplanner.team/stops/N501jja"], ["https://tec.openplanner.team/stops/Llgfred1", "https://tec.openplanner.team/stops/Llgqmar2"], ["https://tec.openplanner.team/stops/N308aba", "https://tec.openplanner.team/stops/N385adb"], ["https://tec.openplanner.team/stops/LGeduc-2", "https://tec.openplanner.team/stops/LGepeck2"], ["https://tec.openplanner.team/stops/LTAbran1", "https://tec.openplanner.team/stops/LTAbran2"], ["https://tec.openplanner.team/stops/LHEgare1", "https://tec.openplanner.team/stops/LHEoutr2"], ["https://tec.openplanner.team/stops/LJvmart1", "https://tec.openplanner.team/stops/X576ahb"], ["https://tec.openplanner.team/stops/H4ka187a", "https://tec.openplanner.team/stops/H4ka399a"], ["https://tec.openplanner.team/stops/X948aia", "https://tec.openplanner.team/stops/X948aja"], ["https://tec.openplanner.team/stops/Lfllapi3", "https://tec.openplanner.team/stops/Lfllapi4"], ["https://tec.openplanner.team/stops/H1mq199a", "https://tec.openplanner.team/stops/H5is170a"], ["https://tec.openplanner.team/stops/H4ar103a", "https://tec.openplanner.team/stops/H4ho120a"], ["https://tec.openplanner.team/stops/H5pe132a", "https://tec.openplanner.team/stops/H5pe149b"], ["https://tec.openplanner.team/stops/LlEzoll2", "https://tec.openplanner.team/stops/LmLbeil1"], ["https://tec.openplanner.team/stops/X801bfa", "https://tec.openplanner.team/stops/X801cfb"], ["https://tec.openplanner.team/stops/Lcegare1", "https://tec.openplanner.team/stops/Lcegare2"], ["https://tec.openplanner.team/stops/X660adb", "https://tec.openplanner.team/stops/X660afb"], ["https://tec.openplanner.team/stops/LMHeg--2", "https://tec.openplanner.team/stops/LMHtill1"], ["https://tec.openplanner.team/stops/X769aea", "https://tec.openplanner.team/stops/X769asa"], ["https://tec.openplanner.team/stops/NC14apb", "https://tec.openplanner.team/stops/NC14aua"], ["https://tec.openplanner.team/stops/Bbsimpl1", "https://tec.openplanner.team/stops/Bnivlpa1"], ["https://tec.openplanner.team/stops/H1hn203a", "https://tec.openplanner.team/stops/H1ms312b"], ["https://tec.openplanner.team/stops/H1bl103a", "https://tec.openplanner.team/stops/H1pd146a"], ["https://tec.openplanner.team/stops/Cfaamio4", "https://tec.openplanner.team/stops/Cfasamb2"], ["https://tec.openplanner.team/stops/H4be145a", "https://tec.openplanner.team/stops/H5bl122b"], ["https://tec.openplanner.team/stops/Lseblan*", "https://tec.openplanner.team/stops/Lsemyrt2"], ["https://tec.openplanner.team/stops/Bhenpla1", "https://tec.openplanner.team/stops/Bhenpla2"], ["https://tec.openplanner.team/stops/LHUfonc2", "https://tec.openplanner.team/stops/LTimalv2"], ["https://tec.openplanner.team/stops/LcRkirc1", "https://tec.openplanner.team/stops/LcRkirc2"], ["https://tec.openplanner.team/stops/X948aaa", "https://tec.openplanner.team/stops/X948arb"], ["https://tec.openplanner.team/stops/LnDkreu2", "https://tec.openplanner.team/stops/LnDthel2"], ["https://tec.openplanner.team/stops/X741afb", "https://tec.openplanner.team/stops/X741aib"], ["https://tec.openplanner.team/stops/X789aba", "https://tec.openplanner.team/stops/X789aja"], ["https://tec.openplanner.team/stops/H4tf147a", "https://tec.openplanner.team/stops/H4wa155b"], ["https://tec.openplanner.team/stops/H2ll179a", "https://tec.openplanner.team/stops/H2ll197b"], ["https://tec.openplanner.team/stops/Bnivall1", "https://tec.openplanner.team/stops/Bnivite2"], ["https://tec.openplanner.team/stops/Llgbour1", "https://tec.openplanner.team/stops/Llgjasm2"], ["https://tec.openplanner.team/stops/X802ara", "https://tec.openplanner.team/stops/X802aub"], ["https://tec.openplanner.team/stops/Cvsduve1", "https://tec.openplanner.team/stops/Cvsduve2"], ["https://tec.openplanner.team/stops/X993aga", "https://tec.openplanner.team/stops/X993agb"], ["https://tec.openplanner.team/stops/H4ru243a", "https://tec.openplanner.team/stops/H4ru243b"], ["https://tec.openplanner.team/stops/LnEkirc1", "https://tec.openplanner.team/stops/LnEkirc2"], ["https://tec.openplanner.team/stops/Lflcime1", "https://tec.openplanner.team/stops/Lflterm1"], ["https://tec.openplanner.team/stops/LLbrecu1", "https://tec.openplanner.team/stops/LLbrecu2"], ["https://tec.openplanner.team/stops/LLUmc--1", "https://tec.openplanner.team/stops/LLUmc--2"], ["https://tec.openplanner.team/stops/H3so167a", "https://tec.openplanner.team/stops/H3so175b"], ["https://tec.openplanner.team/stops/Cflcarr1", "https://tec.openplanner.team/stops/Cflchmo2"], ["https://tec.openplanner.team/stops/H4ty335a", "https://tec.openplanner.team/stops/H4ty340a"], ["https://tec.openplanner.team/stops/Ccabois1", "https://tec.openplanner.team/stops/N162abb"], ["https://tec.openplanner.team/stops/N308adb", "https://tec.openplanner.team/stops/N308ayb"], ["https://tec.openplanner.team/stops/N894aea", "https://tec.openplanner.team/stops/X891aaa"], ["https://tec.openplanner.team/stops/N103aeb", "https://tec.openplanner.team/stops/N103agb"], ["https://tec.openplanner.team/stops/LMgbatt1", "https://tec.openplanner.team/stops/LMgbern2"], ["https://tec.openplanner.team/stops/Cbbcrbo1", "https://tec.openplanner.team/stops/Cbmviv1"], ["https://tec.openplanner.team/stops/X610adb", "https://tec.openplanner.team/stops/X610aea"], ["https://tec.openplanner.team/stops/Bbcocou1", "https://tec.openplanner.team/stops/H3br108d"], ["https://tec.openplanner.team/stops/Csdfboi1", "https://tec.openplanner.team/stops/Csdfboi2"], ["https://tec.openplanner.team/stops/N152abc", "https://tec.openplanner.team/stops/N152abd"], ["https://tec.openplanner.team/stops/Lghgros2", "https://tec.openplanner.team/stops/Lghhaut1"], ["https://tec.openplanner.team/stops/X756abb", "https://tec.openplanner.team/stops/X756akb"], ["https://tec.openplanner.team/stops/LYechpl1", "https://tec.openplanner.team/stops/LYechpl2"], ["https://tec.openplanner.team/stops/LFsgend1", "https://tec.openplanner.team/stops/Llithon1"], ["https://tec.openplanner.team/stops/Lougros2", "https://tec.openplanner.team/stops/Lstvill2"], ["https://tec.openplanner.team/stops/LFCkett1", "https://tec.openplanner.team/stops/LFCvoge3"], ["https://tec.openplanner.team/stops/Lstchim1", "https://tec.openplanner.team/stops/Lstpoly1"], ["https://tec.openplanner.team/stops/LElcent1", "https://tec.openplanner.team/stops/LFTeg--1"], ["https://tec.openplanner.team/stops/LmHflor2", "https://tec.openplanner.team/stops/LrTpost2"], ["https://tec.openplanner.team/stops/H4lg103a", "https://tec.openplanner.team/stops/H4lg106a"], ["https://tec.openplanner.team/stops/Cfrbrin2", "https://tec.openplanner.team/stops/Cfrtry2"], ["https://tec.openplanner.team/stops/LkEherg2", "https://tec.openplanner.team/stops/LkEschi1"], ["https://tec.openplanner.team/stops/Bbsgbos2", "https://tec.openplanner.team/stops/Bbsgbos3"], ["https://tec.openplanner.team/stops/H5fl102b", "https://tec.openplanner.team/stops/H5fl102c"], ["https://tec.openplanner.team/stops/Bixlozo1", "https://tec.openplanner.team/stops/Buccham2"], ["https://tec.openplanner.team/stops/Laltrap2", "https://tec.openplanner.team/stops/Llaeg--1"], ["https://tec.openplanner.team/stops/LNOpt--2", "https://tec.openplanner.team/stops/LREchif1"], ["https://tec.openplanner.team/stops/X746abb", "https://tec.openplanner.team/stops/X747ajb"], ["https://tec.openplanner.team/stops/LLrdrev1", "https://tec.openplanner.team/stops/LREhaut2"], ["https://tec.openplanner.team/stops/H1gh153b", "https://tec.openplanner.team/stops/H1gh163a"], ["https://tec.openplanner.team/stops/X850aba", "https://tec.openplanner.team/stops/X850ajb"], ["https://tec.openplanner.team/stops/Cmacart1", "https://tec.openplanner.team/stops/Cmamarc2"], ["https://tec.openplanner.team/stops/LMXempe1", "https://tec.openplanner.team/stops/NL37aob"], ["https://tec.openplanner.team/stops/X872aab", "https://tec.openplanner.team/stops/X872acb"], ["https://tec.openplanner.team/stops/Lsefoot2", "https://tec.openplanner.team/stops/Lsestap4"], ["https://tec.openplanner.team/stops/H2pe157b", "https://tec.openplanner.team/stops/H2pe158b"], ["https://tec.openplanner.team/stops/X923aaa", "https://tec.openplanner.team/stops/X923aha"], ["https://tec.openplanner.team/stops/X542aha", "https://tec.openplanner.team/stops/X542aib"], ["https://tec.openplanner.team/stops/N132adb", "https://tec.openplanner.team/stops/N132aeb"], ["https://tec.openplanner.team/stops/H4ka193b", "https://tec.openplanner.team/stops/H4ty270a"], ["https://tec.openplanner.team/stops/LFLcent1", "https://tec.openplanner.team/stops/LFLcent2"], ["https://tec.openplanner.team/stops/LTRchpl1", "https://tec.openplanner.team/stops/LTRfend2"], ["https://tec.openplanner.team/stops/H4er121a", "https://tec.openplanner.team/stops/H4oq223a"], ["https://tec.openplanner.team/stops/X773aia", "https://tec.openplanner.team/stops/X773aka"], ["https://tec.openplanner.team/stops/Bdoncen2", "https://tec.openplanner.team/stops/Bdonlat1"], ["https://tec.openplanner.team/stops/LVBchau1", "https://tec.openplanner.team/stops/LVBchau2"], ["https://tec.openplanner.team/stops/N514ajb", "https://tec.openplanner.team/stops/N514akb"], ["https://tec.openplanner.team/stops/LHUremy1", "https://tec.openplanner.team/stops/LHUremy2"], ["https://tec.openplanner.team/stops/LlCgren1", "https://tec.openplanner.team/stops/LpEzoll*"], ["https://tec.openplanner.team/stops/N244alb", "https://tec.openplanner.team/stops/N244arb"], ["https://tec.openplanner.team/stops/X911aua", "https://tec.openplanner.team/stops/X985aac"], ["https://tec.openplanner.team/stops/H1ms292a", "https://tec.openplanner.team/stops/H1ms912a"], ["https://tec.openplanner.team/stops/Btanbth2", "https://tec.openplanner.team/stops/Btanpla3"], ["https://tec.openplanner.team/stops/Cwfcast2", "https://tec.openplanner.team/stops/NC23agb"], ["https://tec.openplanner.team/stops/LGmloti1", "https://tec.openplanner.team/stops/LMAbijo1"], ["https://tec.openplanner.team/stops/N113adb", "https://tec.openplanner.team/stops/N113afb"], ["https://tec.openplanner.team/stops/N506aza", "https://tec.openplanner.team/stops/N506azb"], ["https://tec.openplanner.team/stops/X659abb", "https://tec.openplanner.team/stops/X659acb"], ["https://tec.openplanner.team/stops/N557adb", "https://tec.openplanner.team/stops/N557aja"], ["https://tec.openplanner.team/stops/Bwatgar3", "https://tec.openplanner.team/stops/Bwatgar5"], ["https://tec.openplanner.team/stops/N525anb", "https://tec.openplanner.team/stops/N525aoa"], ["https://tec.openplanner.team/stops/Cbfdufa2", "https://tec.openplanner.team/stops/Cbfstry2"], ["https://tec.openplanner.team/stops/N501aqa", "https://tec.openplanner.team/stops/N501aqb"], ["https://tec.openplanner.team/stops/Lansarm1", "https://tec.openplanner.team/stops/Lanyser2"], ["https://tec.openplanner.team/stops/LHTbonn1", "https://tec.openplanner.team/stops/LHTmc--1"], ["https://tec.openplanner.team/stops/LRmha262", "https://tec.openplanner.team/stops/LRmsmvo1"], ["https://tec.openplanner.team/stops/X636ava", "https://tec.openplanner.team/stops/X636bha"], ["https://tec.openplanner.team/stops/Chpplac2", "https://tec.openplanner.team/stops/Cmesafi1"], ["https://tec.openplanner.team/stops/LwYkirc1", "https://tec.openplanner.team/stops/LwYneue1"], ["https://tec.openplanner.team/stops/X817aaa", "https://tec.openplanner.team/stops/X822aca"], ["https://tec.openplanner.team/stops/LeUarno2", "https://tec.openplanner.team/stops/LeUvoss1"], ["https://tec.openplanner.team/stops/Crcrlf1", "https://tec.openplanner.team/stops/Csufrom5"], ["https://tec.openplanner.team/stops/X901awb", "https://tec.openplanner.team/stops/X902bfa"], ["https://tec.openplanner.team/stops/Ccabois1", "https://tec.openplanner.team/stops/NC28agb"], ["https://tec.openplanner.team/stops/H4ct111a", "https://tec.openplanner.team/stops/H5pe151a"], ["https://tec.openplanner.team/stops/X361aab", "https://tec.openplanner.team/stops/X371afb"], ["https://tec.openplanner.team/stops/LBWviad2", "https://tec.openplanner.team/stops/LMgbern2"], ["https://tec.openplanner.team/stops/Bbstpan1", "https://tec.openplanner.team/stops/Cbtstac1"], ["https://tec.openplanner.team/stops/LVHcent1", "https://tec.openplanner.team/stops/LVHcent2"], ["https://tec.openplanner.team/stops/LaMfuss1", "https://tec.openplanner.team/stops/LaMhe421"], ["https://tec.openplanner.team/stops/H4bd110b", "https://tec.openplanner.team/stops/H4te255b"], ["https://tec.openplanner.team/stops/Cbwdoua1", "https://tec.openplanner.team/stops/Cbweco1"], ["https://tec.openplanner.team/stops/X696aia", "https://tec.openplanner.team/stops/X696aka"], ["https://tec.openplanner.team/stops/N150acb", "https://tec.openplanner.team/stops/N150adb"], ["https://tec.openplanner.team/stops/N117aza", "https://tec.openplanner.team/stops/N147adb"], ["https://tec.openplanner.team/stops/LBQmaye2", "https://tec.openplanner.team/stops/LBQplac2"], ["https://tec.openplanner.team/stops/N520ahb", "https://tec.openplanner.team/stops/N520aib"], ["https://tec.openplanner.team/stops/N351akd", "https://tec.openplanner.team/stops/N351asa"], ["https://tec.openplanner.team/stops/LJOchar1", "https://tec.openplanner.team/stops/LMEgare2"], ["https://tec.openplanner.team/stops/X662aca", "https://tec.openplanner.team/stops/X662acb"], ["https://tec.openplanner.team/stops/X659afb", "https://tec.openplanner.team/stops/X659ata"], ["https://tec.openplanner.team/stops/Brixpje2", "https://tec.openplanner.team/stops/Brsrcha2"], ["https://tec.openplanner.team/stops/Bwavgar2", "https://tec.openplanner.team/stops/Bwavgar3"], ["https://tec.openplanner.team/stops/Beclbar1", "https://tec.openplanner.team/stops/Beclfde2"], ["https://tec.openplanner.team/stops/Bnodlce2", "https://tec.openplanner.team/stops/Bolgmpl1"], ["https://tec.openplanner.team/stops/Lagtenn1", "https://tec.openplanner.team/stops/Lagtenn2"], ["https://tec.openplanner.team/stops/LGDgdou1", "https://tec.openplanner.team/stops/LWahott2"], ["https://tec.openplanner.team/stops/LWNberg1", "https://tec.openplanner.team/stops/NL72afa"], ["https://tec.openplanner.team/stops/LBVcent2", "https://tec.openplanner.team/stops/LBVronx2"], ["https://tec.openplanner.team/stops/H1bo145a", "https://tec.openplanner.team/stops/H1bo145b"], ["https://tec.openplanner.team/stops/X757ada", "https://tec.openplanner.team/stops/X757afa"], ["https://tec.openplanner.team/stops/LGmeg--1", "https://tec.openplanner.team/stops/LGmloti2"], ["https://tec.openplanner.team/stops/H3bi100a", "https://tec.openplanner.team/stops/H3bi106b"], ["https://tec.openplanner.team/stops/X718aka", "https://tec.openplanner.team/stops/X719aaa"], ["https://tec.openplanner.team/stops/H1ml109b", "https://tec.openplanner.team/stops/H1ml110b"], ["https://tec.openplanner.team/stops/H1sb144b", "https://tec.openplanner.team/stops/H1sb145b"], ["https://tec.openplanner.team/stops/Bettlha2", "https://tec.openplanner.team/stops/Bixlfla2"], ["https://tec.openplanner.team/stops/LGLecol2", "https://tec.openplanner.team/stops/LGLeg--2"], ["https://tec.openplanner.team/stops/Bquepla2", "https://tec.openplanner.team/stops/Bquereb1"], ["https://tec.openplanner.team/stops/LHUdelc3", "https://tec.openplanner.team/stops/LHUgdpl1"], ["https://tec.openplanner.team/stops/Btubga03", "https://tec.openplanner.team/stops/Btubga04"], ["https://tec.openplanner.team/stops/LgRha211", "https://tec.openplanner.team/stops/LgRhouf1"], ["https://tec.openplanner.team/stops/H4rx143b", "https://tec.openplanner.team/stops/H4rx176b"], ["https://tec.openplanner.team/stops/N508apb", "https://tec.openplanner.team/stops/N516aba"], ["https://tec.openplanner.team/stops/X897ada", "https://tec.openplanner.team/stops/X897aeb"], ["https://tec.openplanner.team/stops/Ccigene1", "https://tec.openplanner.team/stops/Cciqueu2"], ["https://tec.openplanner.team/stops/N501hmb", "https://tec.openplanner.team/stops/N501ima"], ["https://tec.openplanner.team/stops/Bgemgjo2", "https://tec.openplanner.team/stops/N522bvf"], ["https://tec.openplanner.team/stops/H1qu119b", "https://tec.openplanner.team/stops/H1wa142a"], ["https://tec.openplanner.team/stops/Cmosaba1", "https://tec.openplanner.team/stops/Cmosaba2"], ["https://tec.openplanner.team/stops/H1by107b", "https://tec.openplanner.team/stops/H1by109a"], ["https://tec.openplanner.team/stops/X950adb", "https://tec.openplanner.team/stops/X955abb"], ["https://tec.openplanner.team/stops/LHUneuv2", "https://tec.openplanner.team/stops/LHUpost4"], ["https://tec.openplanner.team/stops/LJAbois1", "https://tec.openplanner.team/stops/Ljhsart4"], ["https://tec.openplanner.team/stops/X601cia", "https://tec.openplanner.team/stops/X662aja"], ["https://tec.openplanner.team/stops/X636bba", "https://tec.openplanner.team/stops/X636bea"], ["https://tec.openplanner.team/stops/H1by103a", "https://tec.openplanner.team/stops/H1sy143d"], ["https://tec.openplanner.team/stops/H4jm117b", "https://tec.openplanner.team/stops/H4we139a"], ["https://tec.openplanner.team/stops/N501dfa", "https://tec.openplanner.team/stops/N501myb"], ["https://tec.openplanner.team/stops/Cgncail2", "https://tec.openplanner.team/stops/Cgnpass2"], ["https://tec.openplanner.team/stops/X625aab", "https://tec.openplanner.team/stops/X625afb"], ["https://tec.openplanner.team/stops/N516alb", "https://tec.openplanner.team/stops/N516amb"], ["https://tec.openplanner.team/stops/LbUkrin2", "https://tec.openplanner.team/stops/LlSzoll2"], ["https://tec.openplanner.team/stops/LTheg--1", "https://tec.openplanner.team/stops/LThelse2"], ["https://tec.openplanner.team/stops/H3br100b", "https://tec.openplanner.team/stops/H3br101b"], ["https://tec.openplanner.team/stops/X622acb", "https://tec.openplanner.team/stops/X622adb"], ["https://tec.openplanner.team/stops/LWn24--1", "https://tec.openplanner.team/stops/LWn24--2"], ["https://tec.openplanner.team/stops/N134ada", "https://tec.openplanner.team/stops/N134aeb"], ["https://tec.openplanner.team/stops/LWecarr2", "https://tec.openplanner.team/stops/LWegdry2"], ["https://tec.openplanner.team/stops/H4ne137b", "https://tec.openplanner.team/stops/H4ne145b"], ["https://tec.openplanner.team/stops/Cluchbl2", "https://tec.openplanner.team/stops/Cluplve4"], ["https://tec.openplanner.team/stops/LPLecco2", "https://tec.openplanner.team/stops/LPLg90-1"], ["https://tec.openplanner.team/stops/LaHzoll*", "https://tec.openplanner.team/stops/X685aib"], ["https://tec.openplanner.team/stops/H1by103a", "https://tec.openplanner.team/stops/H1by108b"], ["https://tec.openplanner.team/stops/LSdbvue1", "https://tec.openplanner.team/stops/LSdcent1"], ["https://tec.openplanner.team/stops/N501ebb", "https://tec.openplanner.team/stops/N501eby"], ["https://tec.openplanner.team/stops/H4ef111a", "https://tec.openplanner.team/stops/H4po127a"], ["https://tec.openplanner.team/stops/X886ada", "https://tec.openplanner.team/stops/X897afa"], ["https://tec.openplanner.team/stops/X640aia", "https://tec.openplanner.team/stops/X640aja"], ["https://tec.openplanner.team/stops/Cfanvmo2", "https://tec.openplanner.team/stops/Cfapiro2"], ["https://tec.openplanner.team/stops/LENarde2", "https://tec.openplanner.team/stops/LENecol1"], ["https://tec.openplanner.team/stops/X661aya", "https://tec.openplanner.team/stops/X661ayb"], ["https://tec.openplanner.team/stops/H1og136a", "https://tec.openplanner.team/stops/H5fl101a"], ["https://tec.openplanner.team/stops/Lhrbrou1", "https://tec.openplanner.team/stops/Lhrlaix2"], ["https://tec.openplanner.team/stops/N506aab", "https://tec.openplanner.team/stops/N506bob"], ["https://tec.openplanner.team/stops/Clusncb1", "https://tec.openplanner.team/stops/Clusncb4"], ["https://tec.openplanner.team/stops/X801bxa", "https://tec.openplanner.team/stops/X801bzb"], ["https://tec.openplanner.team/stops/H4mo158a", "https://tec.openplanner.team/stops/H4mo158b"], ["https://tec.openplanner.team/stops/Bniv4co2", "https://tec.openplanner.team/stops/Bnivcma1"], ["https://tec.openplanner.team/stops/Lghalli2", "https://tec.openplanner.team/stops/Lghremy1"], ["https://tec.openplanner.team/stops/LMforba1", "https://tec.openplanner.team/stops/LMfsart1"], ["https://tec.openplanner.team/stops/LmImirf1", "https://tec.openplanner.team/stops/LmRh%C3%B6811"], ["https://tec.openplanner.team/stops/Cchlamb1", "https://tec.openplanner.team/stops/Clodupr1"], ["https://tec.openplanner.team/stops/Bblaall2", "https://tec.openplanner.team/stops/Bblasse1"], ["https://tec.openplanner.team/stops/X601bda", "https://tec.openplanner.team/stops/X601bhb"], ["https://tec.openplanner.team/stops/LHrprie1", "https://tec.openplanner.team/stops/LHseg--3"], ["https://tec.openplanner.team/stops/X681agb", "https://tec.openplanner.team/stops/X687aka"], ["https://tec.openplanner.team/stops/X946ada", "https://tec.openplanner.team/stops/X948ada"], ["https://tec.openplanner.team/stops/X629abb", "https://tec.openplanner.team/stops/X629acb"], ["https://tec.openplanner.team/stops/N308bcb", "https://tec.openplanner.team/stops/N308bia"], ["https://tec.openplanner.team/stops/LdUespe2", "https://tec.openplanner.team/stops/LoDulf-1"], ["https://tec.openplanner.team/stops/LESgare*", "https://tec.openplanner.team/stops/LFNhame1"], ["https://tec.openplanner.team/stops/Bquegen1", "https://tec.openplanner.team/stops/Bquegen2"], ["https://tec.openplanner.team/stops/LSPchap3", "https://tec.openplanner.team/stops/LSPClem1"], ["https://tec.openplanner.team/stops/X622aaa", "https://tec.openplanner.team/stops/X622aba"], ["https://tec.openplanner.team/stops/LVIcarm1", "https://tec.openplanner.team/stops/LVIdepo2"], ["https://tec.openplanner.team/stops/LFAwale1", "https://tec.openplanner.team/stops/LLWcarr2"], ["https://tec.openplanner.team/stops/Lbrdepo1", "https://tec.openplanner.team/stops/Lbrdepo2"], ["https://tec.openplanner.team/stops/X897aia", "https://tec.openplanner.team/stops/X897aib"], ["https://tec.openplanner.team/stops/LMOelva4", "https://tec.openplanner.team/stops/LMOs45-2"], ["https://tec.openplanner.team/stops/Bmrsmco1", "https://tec.openplanner.team/stops/Bmrspel1"], ["https://tec.openplanner.team/stops/LeUath2", "https://tec.openplanner.team/stops/LeUath%C3%A41"], ["https://tec.openplanner.team/stops/LWapl--1", "https://tec.openplanner.team/stops/LWapl--3"], ["https://tec.openplanner.team/stops/LAnfall1", "https://tec.openplanner.team/stops/LVthest4"], ["https://tec.openplanner.team/stops/LSG111-1", "https://tec.openplanner.team/stops/LSkdouf2"], ["https://tec.openplanner.team/stops/Bhen5ma2", "https://tec.openplanner.team/stops/Bhenfer1"], ["https://tec.openplanner.team/stops/X982aac", "https://tec.openplanner.team/stops/X982byb"], ["https://tec.openplanner.team/stops/Bgzddub1", "https://tec.openplanner.team/stops/Bgzdpco1"], ["https://tec.openplanner.team/stops/LLecarr3", "https://tec.openplanner.team/stops/X547anb"], ["https://tec.openplanner.team/stops/Bbchndb1", "https://tec.openplanner.team/stops/Bbchndb2"], ["https://tec.openplanner.team/stops/LAYchal1", "https://tec.openplanner.team/stops/LAYchal2"], ["https://tec.openplanner.team/stops/Llgbonn2", "https://tec.openplanner.team/stops/Llggosw1"], ["https://tec.openplanner.team/stops/X638apa", "https://tec.openplanner.team/stops/X638aqb"], ["https://tec.openplanner.team/stops/H4bv145a", "https://tec.openplanner.team/stops/H4os222b"], ["https://tec.openplanner.team/stops/N543bxb", "https://tec.openplanner.team/stops/N543byb"], ["https://tec.openplanner.team/stops/N531ada", "https://tec.openplanner.team/stops/N531aea"], ["https://tec.openplanner.team/stops/X608awa", "https://tec.openplanner.team/stops/X608axa"], ["https://tec.openplanner.team/stops/Bwatgib2", "https://tec.openplanner.team/stops/Bwatnrs2"], ["https://tec.openplanner.team/stops/Lcheg--2", "https://tec.openplanner.team/stops/Lchpniv2"], ["https://tec.openplanner.team/stops/H1ho123a", "https://tec.openplanner.team/stops/H1ho141a"], ["https://tec.openplanner.team/stops/LBRmc--3", "https://tec.openplanner.team/stops/LBRpt--1"], ["https://tec.openplanner.team/stops/LSNbouh4", "https://tec.openplanner.team/stops/LSNecol4"], ["https://tec.openplanner.team/stops/H3bi113b", "https://tec.openplanner.team/stops/H3bi119b"], ["https://tec.openplanner.team/stops/Bclglbu1", "https://tec.openplanner.team/stops/Bclgvmo1"], ["https://tec.openplanner.team/stops/LeUroll1", "https://tec.openplanner.team/stops/LeUvoul1"], ["https://tec.openplanner.team/stops/H1si155a", "https://tec.openplanner.team/stops/H1si155b"], ["https://tec.openplanner.team/stops/N558aea", "https://tec.openplanner.team/stops/N558ama"], ["https://tec.openplanner.team/stops/Caccent1", "https://tec.openplanner.team/stops/Cacragu2"], ["https://tec.openplanner.team/stops/H4mo188a", "https://tec.openplanner.team/stops/H4mo208b"], ["https://tec.openplanner.team/stops/Cbtgemi2", "https://tec.openplanner.team/stops/Cfrfede1"], ["https://tec.openplanner.team/stops/X616aaa", "https://tec.openplanner.team/stops/X617aeb"], ["https://tec.openplanner.team/stops/LHHronh1", "https://tec.openplanner.team/stops/LHHronh2"], ["https://tec.openplanner.team/stops/H4to131b", "https://tec.openplanner.team/stops/H4to138b"], ["https://tec.openplanner.team/stops/H4or114b", "https://tec.openplanner.team/stops/H4or116a"], ["https://tec.openplanner.team/stops/H4ty275a", "https://tec.openplanner.team/stops/H4wc372a"], ["https://tec.openplanner.team/stops/LSIcour2", "https://tec.openplanner.team/stops/LSIters1"], ["https://tec.openplanner.team/stops/LkAbahn*", "https://tec.openplanner.team/stops/LSogare2"], ["https://tec.openplanner.team/stops/H4mv187b", "https://tec.openplanner.team/stops/H4mv188b"], ["https://tec.openplanner.team/stops/H1mv240b", "https://tec.openplanner.team/stops/H1mv242b"], ["https://tec.openplanner.team/stops/Cdostco2", "https://tec.openplanner.team/stops/Ctuecol1"], ["https://tec.openplanner.team/stops/Bjodint2", "https://tec.openplanner.team/stops/NR10aab"], ["https://tec.openplanner.team/stops/LhSfrep1", "https://tec.openplanner.team/stops/LhSgete1"], ["https://tec.openplanner.team/stops/H1si151a", "https://tec.openplanner.team/stops/H1si151b"], ["https://tec.openplanner.team/stops/LFRfagn2", "https://tec.openplanner.team/stops/LSxeg--2"], ["https://tec.openplanner.team/stops/X999acb", "https://tec.openplanner.team/stops/X999amb"], ["https://tec.openplanner.team/stops/H4av100b", "https://tec.openplanner.team/stops/H4av103a"], ["https://tec.openplanner.team/stops/LFdbagu2", "https://tec.openplanner.team/stops/LFdbruy1"], ["https://tec.openplanner.team/stops/H4my123a", "https://tec.openplanner.team/stops/H4pe126b"], ["https://tec.openplanner.team/stops/LSBrouf1", "https://tec.openplanner.team/stops/LSBrouf2"], ["https://tec.openplanner.team/stops/Bgnvdep1", "https://tec.openplanner.team/stops/Bgnvvol2"], ["https://tec.openplanner.team/stops/Cgzhour3", "https://tec.openplanner.team/stops/Cthrlef2"], ["https://tec.openplanner.team/stops/LFAec--2", "https://tec.openplanner.team/stops/LFAscie2"], ["https://tec.openplanner.team/stops/X639ama", "https://tec.openplanner.team/stops/X675aba"], ["https://tec.openplanner.team/stops/H1th183a", "https://tec.openplanner.team/stops/H1th183b"], ["https://tec.openplanner.team/stops/X805agb", "https://tec.openplanner.team/stops/X807aba"], ["https://tec.openplanner.team/stops/Lagmair5", "https://tec.openplanner.team/stops/Lagpera1"], ["https://tec.openplanner.team/stops/X633aea", "https://tec.openplanner.team/stops/X633afa"], ["https://tec.openplanner.team/stops/X901ata", "https://tec.openplanner.team/stops/X901bpa"], ["https://tec.openplanner.team/stops/LHOmc--1", "https://tec.openplanner.team/stops/LSRbouh1"], ["https://tec.openplanner.team/stops/LGLc12-3", "https://tec.openplanner.team/stops/LGLlaur2"], ["https://tec.openplanner.team/stops/Ladclem1", "https://tec.openplanner.team/stops/Ldipost1"], ["https://tec.openplanner.team/stops/LCUgale2", "https://tec.openplanner.team/stops/LCUmars2"], ["https://tec.openplanner.team/stops/Lmlboul1", "https://tec.openplanner.team/stops/Lmlcite*"], ["https://tec.openplanner.team/stops/LVIpneu1", "https://tec.openplanner.team/stops/LVIsouv3"], ["https://tec.openplanner.team/stops/H1bb120b", "https://tec.openplanner.team/stops/H1do127a"], ["https://tec.openplanner.team/stops/LNCneuv1", "https://tec.openplanner.team/stops/LRachen2"], ["https://tec.openplanner.team/stops/Lrcvill1", "https://tec.openplanner.team/stops/Lrcvill4"], ["https://tec.openplanner.team/stops/LVLmabi2", "https://tec.openplanner.team/stops/LVLpane1"], ["https://tec.openplanner.team/stops/H1ca184a", "https://tec.openplanner.team/stops/H1ca184b"], ["https://tec.openplanner.team/stops/X672aca", "https://tec.openplanner.team/stops/X672aka"], ["https://tec.openplanner.team/stops/H1ni320a", "https://tec.openplanner.team/stops/H1ni321a"], ["https://tec.openplanner.team/stops/H1bd102a", "https://tec.openplanner.team/stops/H1by109b"], ["https://tec.openplanner.team/stops/N205ada", "https://tec.openplanner.team/stops/N205adb"], ["https://tec.openplanner.team/stops/Lrcchpl1", "https://tec.openplanner.team/stops/Lvtpepi2"], ["https://tec.openplanner.team/stops/Bnivite2", "https://tec.openplanner.team/stops/Bnivspi1"], ["https://tec.openplanner.team/stops/Lceprog2", "https://tec.openplanner.team/stops/Lgrjobe2"], ["https://tec.openplanner.team/stops/LLUdoya2", "https://tec.openplanner.team/stops/LLUtill4"], ["https://tec.openplanner.team/stops/X548abb", "https://tec.openplanner.team/stops/X784aga"], ["https://tec.openplanner.team/stops/LTaeg--2", "https://tec.openplanner.team/stops/LTatult4"], ["https://tec.openplanner.team/stops/N235acb", "https://tec.openplanner.team/stops/N235afa"], ["https://tec.openplanner.team/stops/N501dga", "https://tec.openplanner.team/stops/N501dja"], ["https://tec.openplanner.team/stops/Cflgazo1", "https://tec.openplanner.team/stops/Cflgazo2"], ["https://tec.openplanner.team/stops/X750aha", "https://tec.openplanner.team/stops/X750ahb"], ["https://tec.openplanner.team/stops/X636aka", "https://tec.openplanner.team/stops/X636beb"], ["https://tec.openplanner.team/stops/X604ahb", "https://tec.openplanner.team/stops/X618aaa"], ["https://tec.openplanner.team/stops/LBbbac-1", "https://tec.openplanner.team/stops/LLVfoss1"], ["https://tec.openplanner.team/stops/Bwavbpi1", "https://tec.openplanner.team/stops/Bwavlca2"], ["https://tec.openplanner.team/stops/Cbuplac3", "https://tec.openplanner.team/stops/Cfnsenz1"], ["https://tec.openplanner.team/stops/Cradado2", "https://tec.openplanner.team/stops/Craferr1"], ["https://tec.openplanner.team/stops/Beclesp2", "https://tec.openplanner.team/stops/H2ec105a"], ["https://tec.openplanner.team/stops/Bwspcar1", "https://tec.openplanner.team/stops/Bwspcar2"], ["https://tec.openplanner.team/stops/H4wi161a", "https://tec.openplanner.team/stops/H4wi170a"], ["https://tec.openplanner.team/stops/Cvrchap1", "https://tec.openplanner.team/stops/Cvregl1"], ["https://tec.openplanner.team/stops/LHHcite2", "https://tec.openplanner.team/stops/LHHtill2"], ["https://tec.openplanner.team/stops/Ljubois1", "https://tec.openplanner.team/stops/Ljujaur1"], ["https://tec.openplanner.team/stops/H4ty293a", "https://tec.openplanner.team/stops/H4ty303a"], ["https://tec.openplanner.team/stops/N502aab", "https://tec.openplanner.team/stops/N502acb"], ["https://tec.openplanner.team/stops/X902aza", "https://tec.openplanner.team/stops/X902azb"], ["https://tec.openplanner.team/stops/N155aib", "https://tec.openplanner.team/stops/N170acb"], ["https://tec.openplanner.team/stops/LSZdepo1", "https://tec.openplanner.team/stops/LTgsous1"], ["https://tec.openplanner.team/stops/Lagfour1", "https://tec.openplanner.team/stops/Llgpont2"], ["https://tec.openplanner.team/stops/LrDneun2", "https://tec.openplanner.team/stops/LrDrose3"], ["https://tec.openplanner.team/stops/LeUnisp1", "https://tec.openplanner.team/stops/LkTtal-1"], ["https://tec.openplanner.team/stops/N138aha", "https://tec.openplanner.team/stops/N426afb"], ["https://tec.openplanner.team/stops/LmSkape2", "https://tec.openplanner.team/stops/LnDdorf1"], ["https://tec.openplanner.team/stops/Bgnpgen1", "https://tec.openplanner.team/stops/Bgnpjbe1"], ["https://tec.openplanner.team/stops/Berneco2", "https://tec.openplanner.team/stops/Bgemibb1"], ["https://tec.openplanner.team/stops/Bbgnpla1", "https://tec.openplanner.team/stops/N584alb"], ["https://tec.openplanner.team/stops/Bblmcel2", "https://tec.openplanner.team/stops/Bchamco1"], ["https://tec.openplanner.team/stops/H4bv146b", "https://tec.openplanner.team/stops/H4os223a"], ["https://tec.openplanner.team/stops/N534bma", "https://tec.openplanner.team/stops/N534bmb"], ["https://tec.openplanner.team/stops/Cmlgche1", "https://tec.openplanner.team/stops/Cmltemp3"], ["https://tec.openplanner.team/stops/Bspkdon2", "https://tec.openplanner.team/stops/H1mk115a"], ["https://tec.openplanner.team/stops/LSceg--3", "https://tec.openplanner.team/stops/LTNegli1"], ["https://tec.openplanner.team/stops/N234aea", "https://tec.openplanner.team/stops/N234afb"], ["https://tec.openplanner.team/stops/Bgzdgpa1", "https://tec.openplanner.team/stops/Bwavlon1"], ["https://tec.openplanner.team/stops/H4mo153d", "https://tec.openplanner.team/stops/H4mo169a"], ["https://tec.openplanner.team/stops/Blemmar2", "https://tec.openplanner.team/stops/Btubhoq2"], ["https://tec.openplanner.team/stops/N106anb", "https://tec.openplanner.team/stops/N106apa"], ["https://tec.openplanner.team/stops/Bsamlon1", "https://tec.openplanner.team/stops/Cwgmell4"], ["https://tec.openplanner.team/stops/Csyjumo1", "https://tec.openplanner.team/stops/Csyjumo2"], ["https://tec.openplanner.team/stops/Cgnquer1", "https://tec.openplanner.team/stops/Cgnquer2"], ["https://tec.openplanner.team/stops/X731aia", "https://tec.openplanner.team/stops/X731aib"], ["https://tec.openplanner.team/stops/N508aja", "https://tec.openplanner.team/stops/N508ajb"], ["https://tec.openplanner.team/stops/X983aab", "https://tec.openplanner.team/stops/X986abb"], ["https://tec.openplanner.team/stops/H1bg110b", "https://tec.openplanner.team/stops/H1hy130a"], ["https://tec.openplanner.team/stops/H1be104a", "https://tec.openplanner.team/stops/H1er108a"], ["https://tec.openplanner.team/stops/Llmbell2", "https://tec.openplanner.team/stops/Llmdavi1"], ["https://tec.openplanner.team/stops/LHaeg--1", "https://tec.openplanner.team/stops/X982aha"], ["https://tec.openplanner.team/stops/X261acb", "https://tec.openplanner.team/stops/X982aad"], ["https://tec.openplanner.team/stops/Bgoegma2", "https://tec.openplanner.team/stops/Bgoesch4"], ["https://tec.openplanner.team/stops/H1fr125a", "https://tec.openplanner.team/stops/H1lb138b"], ["https://tec.openplanner.team/stops/H2me116b", "https://tec.openplanner.team/stops/H2me117b"], ["https://tec.openplanner.team/stops/LBLplas1", "https://tec.openplanner.team/stops/LMotrem1"], ["https://tec.openplanner.team/stops/LOunebl2", "https://tec.openplanner.team/stops/LOuplac3"], ["https://tec.openplanner.team/stops/Buccbas1", "https://tec.openplanner.team/stops/Buccchu2"], ["https://tec.openplanner.team/stops/X636akb", "https://tec.openplanner.team/stops/X636beb"], ["https://tec.openplanner.team/stops/H4wa149a", "https://tec.openplanner.team/stops/H4wa153a"], ["https://tec.openplanner.team/stops/X653adb", "https://tec.openplanner.team/stops/X653add"], ["https://tec.openplanner.team/stops/X601bna", "https://tec.openplanner.team/stops/X601cab"], ["https://tec.openplanner.team/stops/N513ara", "https://tec.openplanner.team/stops/N513asa"], ["https://tec.openplanner.team/stops/Btlgast2", "https://tec.openplanner.team/stops/Btlgreg2"], ["https://tec.openplanner.team/stops/X713aib", "https://tec.openplanner.team/stops/X713ajb"], ["https://tec.openplanner.team/stops/H4te253b", "https://tec.openplanner.team/stops/H4te260b"], ["https://tec.openplanner.team/stops/H2jo164a", "https://tec.openplanner.team/stops/H2ll260b"], ["https://tec.openplanner.team/stops/X613aba", "https://tec.openplanner.team/stops/X613adb"], ["https://tec.openplanner.team/stops/LAWbrou1", "https://tec.openplanner.team/stops/Lghlogi2"], ["https://tec.openplanner.team/stops/N522asb", "https://tec.openplanner.team/stops/N522ata"], ["https://tec.openplanner.team/stops/Llgcrgu2", "https://tec.openplanner.team/stops/Llghopo1"], ["https://tec.openplanner.team/stops/H1gr115b", "https://tec.openplanner.team/stops/H1mk111a"], ["https://tec.openplanner.team/stops/Lhurfay2", "https://tec.openplanner.team/stops/LSXvill2"], ["https://tec.openplanner.team/stops/LeYroth2", "https://tec.openplanner.team/stops/LhSwind1"], ["https://tec.openplanner.team/stops/Lgrbill1", "https://tec.openplanner.team/stops/Lgrbill2"], ["https://tec.openplanner.team/stops/Buccpes2", "https://tec.openplanner.team/stops/Buccpin2"], ["https://tec.openplanner.team/stops/Bsmgpon2", "https://tec.openplanner.team/stops/Btanpla3"], ["https://tec.openplanner.team/stops/LeUbael1", "https://tec.openplanner.team/stops/LhEtivo1"], ["https://tec.openplanner.team/stops/LOTjacq2", "https://tec.openplanner.team/stops/LOTmonu2"], ["https://tec.openplanner.team/stops/N519ara", "https://tec.openplanner.team/stops/N519arb"], ["https://tec.openplanner.team/stops/X601cfa", "https://tec.openplanner.team/stops/X601cpa"], ["https://tec.openplanner.team/stops/N542aha", "https://tec.openplanner.team/stops/N542akb"], ["https://tec.openplanner.team/stops/N532aeb", "https://tec.openplanner.team/stops/N532ana"], ["https://tec.openplanner.team/stops/Bwatdmo1", "https://tec.openplanner.team/stops/Bwategl1"], ["https://tec.openplanner.team/stops/H4bd107a", "https://tec.openplanner.team/stops/H4bd110b"], ["https://tec.openplanner.team/stops/N425afa", "https://tec.openplanner.team/stops/N426aca"], ["https://tec.openplanner.team/stops/Bbst4br4", "https://tec.openplanner.team/stops/Cbtbras2"], ["https://tec.openplanner.team/stops/Bquecja1", "https://tec.openplanner.team/stops/Bquepbr1"], ["https://tec.openplanner.team/stops/LaSkape1", "https://tec.openplanner.team/stops/LaSneuh2"], ["https://tec.openplanner.team/stops/Bblamsj2", "https://tec.openplanner.team/stops/Bblavba1"], ["https://tec.openplanner.team/stops/LWAalou1", "https://tec.openplanner.team/stops/LWAwegg1"], ["https://tec.openplanner.team/stops/N232acb", "https://tec.openplanner.team/stops/N287aaa"], ["https://tec.openplanner.team/stops/X982bca", "https://tec.openplanner.team/stops/X982cab"], ["https://tec.openplanner.team/stops/N578abb", "https://tec.openplanner.team/stops/N578acb"], ["https://tec.openplanner.team/stops/Lemboul2", "https://tec.openplanner.team/stops/Lemmusc1"], ["https://tec.openplanner.team/stops/Chhdubr1", "https://tec.openplanner.team/stops/Chhegli2"], ["https://tec.openplanner.team/stops/H4eg101b", "https://tec.openplanner.team/stops/H4eg102a"], ["https://tec.openplanner.team/stops/Cfocmed1", "https://tec.openplanner.team/stops/Cforepo2"], ["https://tec.openplanner.team/stops/LmSdorf1", "https://tec.openplanner.team/stops/LmSluxh1"], ["https://tec.openplanner.team/stops/H1bb120b", "https://tec.openplanner.team/stops/H1ho133a"], ["https://tec.openplanner.team/stops/Ctrepin1", "https://tec.openplanner.team/stops/Ctrepin2"], ["https://tec.openplanner.team/stops/LMNcite1", "https://tec.openplanner.team/stops/LMNentr2"], ["https://tec.openplanner.team/stops/Bwatric1", "https://tec.openplanner.team/stops/Bwatvco2"], ["https://tec.openplanner.team/stops/Cgocat2", "https://tec.openplanner.team/stops/Cgosoux1"], ["https://tec.openplanner.team/stops/LCOdrol2", "https://tec.openplanner.team/stops/Lpevesd1"], ["https://tec.openplanner.team/stops/LREairp2", "https://tec.openplanner.team/stops/LREprea2"], ["https://tec.openplanner.team/stops/N343aeb", "https://tec.openplanner.team/stops/N343aia"], ["https://tec.openplanner.team/stops/X637aja", "https://tec.openplanner.team/stops/X637ajb"], ["https://tec.openplanner.team/stops/X746adb", "https://tec.openplanner.team/stops/X746afa"], ["https://tec.openplanner.team/stops/Cbbcent2", "https://tec.openplanner.team/stops/Cbbcrbo1"], ["https://tec.openplanner.team/stops/X725ala", "https://tec.openplanner.team/stops/X725ana"], ["https://tec.openplanner.team/stops/LSParca1", "https://tec.openplanner.team/stops/LSPxhou2"], ["https://tec.openplanner.team/stops/Bllnpsc2", "https://tec.openplanner.team/stops/Bllnrge2"], ["https://tec.openplanner.team/stops/N166aaa", "https://tec.openplanner.team/stops/N166aab"], ["https://tec.openplanner.team/stops/H1bo104b", "https://tec.openplanner.team/stops/H1bo150a"], ["https://tec.openplanner.team/stops/H2fy121a", "https://tec.openplanner.team/stops/H2lh131b"], ["https://tec.openplanner.team/stops/LGlbour1", "https://tec.openplanner.team/stops/LGlwarf2"], ["https://tec.openplanner.team/stops/LSUroyo1", "https://tec.openplanner.team/stops/LTgcime2"], ["https://tec.openplanner.team/stops/LAMfroi2", "https://tec.openplanner.team/stops/LAMjaur1"], ["https://tec.openplanner.team/stops/N554acb", "https://tec.openplanner.team/stops/N573aoa"], ["https://tec.openplanner.team/stops/Cmchai1", "https://tec.openplanner.team/stops/Cmcwir2"], ["https://tec.openplanner.team/stops/N161aaa", "https://tec.openplanner.team/stops/N162afb"], ["https://tec.openplanner.team/stops/N123abb", "https://tec.openplanner.team/stops/N123acb"], ["https://tec.openplanner.team/stops/X922aib", "https://tec.openplanner.team/stops/X942afb"], ["https://tec.openplanner.team/stops/X947abb", "https://tec.openplanner.team/stops/X948agb"], ["https://tec.openplanner.team/stops/Bottcco2", "https://tec.openplanner.team/stops/Bottpma2"], ["https://tec.openplanner.team/stops/Cmmmarl1", "https://tec.openplanner.team/stops/Cmmramb1"], ["https://tec.openplanner.team/stops/N501aqb", "https://tec.openplanner.team/stops/N501mbb"], ["https://tec.openplanner.team/stops/Ladabot1", "https://tec.openplanner.team/stops/Ladgron2"], ["https://tec.openplanner.team/stops/Bgrmver1", "https://tec.openplanner.team/stops/Bgrmver3"], ["https://tec.openplanner.team/stops/Cmyedpa2", "https://tec.openplanner.team/stops/Cmyedpa4"], ["https://tec.openplanner.team/stops/LrAneus1", "https://tec.openplanner.team/stops/LrAneus2"], ["https://tec.openplanner.team/stops/X753abd", "https://tec.openplanner.team/stops/X753aca"], ["https://tec.openplanner.team/stops/LLiforg1", "https://tec.openplanner.team/stops/LLiforg2"], ["https://tec.openplanner.team/stops/LLmpt--1", "https://tec.openplanner.team/stops/LLmwaut1"], ["https://tec.openplanner.team/stops/Lvoec--3", "https://tec.openplanner.team/stops/Lvoeg--1"], ["https://tec.openplanner.team/stops/N291aca", "https://tec.openplanner.team/stops/N291acb"], ["https://tec.openplanner.team/stops/H4ir164a", "https://tec.openplanner.team/stops/H4ir164b"], ["https://tec.openplanner.team/stops/H1ms261a", "https://tec.openplanner.team/stops/H1ms265a"], ["https://tec.openplanner.team/stops/LOTcloe1", "https://tec.openplanner.team/stops/LOTferm1"], ["https://tec.openplanner.team/stops/N153aba", "https://tec.openplanner.team/stops/N153afb"], ["https://tec.openplanner.team/stops/H4ne140b", "https://tec.openplanner.team/stops/H4ne148a"], ["https://tec.openplanner.team/stops/LHUlebo1", "https://tec.openplanner.team/stops/NL80afa"], ["https://tec.openplanner.team/stops/LMalune4", "https://tec.openplanner.team/stops/LMapark3"], ["https://tec.openplanner.team/stops/N203aca", "https://tec.openplanner.team/stops/N203afa"], ["https://tec.openplanner.team/stops/Lhr2ave1", "https://tec.openplanner.team/stops/Lhr2ave2"], ["https://tec.openplanner.team/stops/N134afa", "https://tec.openplanner.team/stops/N153ada"], ["https://tec.openplanner.team/stops/N347aea", "https://tec.openplanner.team/stops/N347afa"], ["https://tec.openplanner.team/stops/H1qu103b", "https://tec.openplanner.team/stops/H1qu112a"], ["https://tec.openplanner.team/stops/X788afb", "https://tec.openplanner.team/stops/X788agb"], ["https://tec.openplanner.team/stops/Cplbbro2", "https://tec.openplanner.team/stops/Crspair2"], ["https://tec.openplanner.team/stops/LHXn47-3", "https://tec.openplanner.team/stops/LLVfoss1"], ["https://tec.openplanner.team/stops/LCxhall1", "https://tec.openplanner.team/stops/LCxhame1"], ["https://tec.openplanner.team/stops/Lghmeun3", "https://tec.openplanner.team/stops/Lghmeun4"], ["https://tec.openplanner.team/stops/X773aha", "https://tec.openplanner.team/stops/X773aib"], ["https://tec.openplanner.team/stops/Cgonvro2", "https://tec.openplanner.team/stops/Cgorobe1"], ["https://tec.openplanner.team/stops/X659aja", "https://tec.openplanner.team/stops/X659aza"], ["https://tec.openplanner.team/stops/H1ba105b", "https://tec.openplanner.team/stops/H1ba111b"], ["https://tec.openplanner.team/stops/Cmadeli1", "https://tec.openplanner.team/stops/Cmamons1"], ["https://tec.openplanner.team/stops/Cfmcent2", "https://tec.openplanner.team/stops/Cfmmart2"], ["https://tec.openplanner.team/stops/N242aeb", "https://tec.openplanner.team/stops/N251aba"], ["https://tec.openplanner.team/stops/H1hr117a", "https://tec.openplanner.team/stops/H1hr117b"], ["https://tec.openplanner.team/stops/X824aga", "https://tec.openplanner.team/stops/X824aha"], ["https://tec.openplanner.team/stops/LSzetoi1", "https://tec.openplanner.team/stops/LSznoel2"], ["https://tec.openplanner.team/stops/Bhaldbo1", "https://tec.openplanner.team/stops/Bstecal2"], ["https://tec.openplanner.team/stops/Bmarlor2", "https://tec.openplanner.team/stops/Bmarvil2"], ["https://tec.openplanner.team/stops/H4br108b", "https://tec.openplanner.team/stops/H4cl113a"], ["https://tec.openplanner.team/stops/X696aba", "https://tec.openplanner.team/stops/X696aca"], ["https://tec.openplanner.team/stops/H2bh117a", "https://tec.openplanner.team/stops/H2bh117b"], ["https://tec.openplanner.team/stops/N101aab", "https://tec.openplanner.team/stops/N101ama"], ["https://tec.openplanner.team/stops/H4be109b", "https://tec.openplanner.team/stops/H4be112b"], ["https://tec.openplanner.team/stops/H1by102a", "https://tec.openplanner.team/stops/H1by106a"], ["https://tec.openplanner.team/stops/N501edb", "https://tec.openplanner.team/stops/N501gta"], ["https://tec.openplanner.team/stops/LLOnand1", "https://tec.openplanner.team/stops/LRRandr2"], ["https://tec.openplanner.team/stops/Bcrntru1", "https://tec.openplanner.team/stops/Bernpla1"], ["https://tec.openplanner.team/stops/LVlfooz4", "https://tec.openplanner.team/stops/LVlleno1"], ["https://tec.openplanner.team/stops/NL57aka", "https://tec.openplanner.team/stops/NL57akb"], ["https://tec.openplanner.team/stops/N501hcb", "https://tec.openplanner.team/stops/N501hcc"], ["https://tec.openplanner.team/stops/Bblacea1", "https://tec.openplanner.team/stops/Bwatali1"], ["https://tec.openplanner.team/stops/X733afa", "https://tec.openplanner.team/stops/X733agb"], ["https://tec.openplanner.team/stops/Lmaelhe1", "https://tec.openplanner.team/stops/Lrofont*"], ["https://tec.openplanner.team/stops/LOLbout1", "https://tec.openplanner.team/stops/LOLbout4"], ["https://tec.openplanner.team/stops/Lbbviad1", "https://tec.openplanner.team/stops/Lbhfaye2"], ["https://tec.openplanner.team/stops/LFyanto2", "https://tec.openplanner.team/stops/LFypfei2"], ["https://tec.openplanner.team/stops/Ladchat2", "https://tec.openplanner.team/stops/Ladstat2"], ["https://tec.openplanner.team/stops/Cjuplho1", "https://tec.openplanner.team/stops/Cjurevo1"], ["https://tec.openplanner.team/stops/X982bla", "https://tec.openplanner.team/stops/X982blc"], ["https://tec.openplanner.team/stops/X796ahb", "https://tec.openplanner.team/stops/X796aib"], ["https://tec.openplanner.team/stops/H2hg266a", "https://tec.openplanner.team/stops/H2hg267a"], ["https://tec.openplanner.team/stops/Llggram2", "https://tec.openplanner.team/stops/Llgrome2"], ["https://tec.openplanner.team/stops/Bgntalt2", "https://tec.openplanner.team/stops/Bgnttma2"], ["https://tec.openplanner.team/stops/LMEense1", "https://tec.openplanner.team/stops/LMIpast2"], ["https://tec.openplanner.team/stops/Bpergar2", "https://tec.openplanner.team/stops/Bpermon3"], ["https://tec.openplanner.team/stops/X782aga", "https://tec.openplanner.team/stops/X782aia"], ["https://tec.openplanner.team/stops/Ccoacar1", "https://tec.openplanner.team/stops/Ccotrie1"], ["https://tec.openplanner.team/stops/LLbbons1", "https://tec.openplanner.team/stops/LPtchpl2"], ["https://tec.openplanner.team/stops/H4te250a", "https://tec.openplanner.team/stops/H4te255a"], ["https://tec.openplanner.team/stops/X641apa", "https://tec.openplanner.team/stops/X641apb"], ["https://tec.openplanner.team/stops/N260aba", "https://tec.openplanner.team/stops/N260abb"], ["https://tec.openplanner.team/stops/H1fl133a", "https://tec.openplanner.team/stops/H1fl133b"], ["https://tec.openplanner.team/stops/X639ara", "https://tec.openplanner.team/stops/X639asa"], ["https://tec.openplanner.team/stops/Cmyboci1", "https://tec.openplanner.team/stops/Cmyrens2"], ["https://tec.openplanner.team/stops/H4be108a", "https://tec.openplanner.team/stops/H4be110a"], ["https://tec.openplanner.team/stops/H2hp123d", "https://tec.openplanner.team/stops/H2le153b"], ["https://tec.openplanner.team/stops/H2an110a", "https://tec.openplanner.team/stops/H2ca101b"], ["https://tec.openplanner.team/stops/H5rx103a", "https://tec.openplanner.team/stops/H5rx103b"], ["https://tec.openplanner.team/stops/X653aea", "https://tec.openplanner.team/stops/X653aeb"], ["https://tec.openplanner.team/stops/LOuhalb1", "https://tec.openplanner.team/stops/LOuilc-*"], ["https://tec.openplanner.team/stops/Bcsebea4", "https://tec.openplanner.team/stops/Bcsen251"], ["https://tec.openplanner.team/stops/X995aab", "https://tec.openplanner.team/stops/X995aca"], ["https://tec.openplanner.team/stops/H1ho142a", "https://tec.openplanner.team/stops/H1ho144b"], ["https://tec.openplanner.team/stops/X982aca", "https://tec.openplanner.team/stops/X982btb"], ["https://tec.openplanner.team/stops/H1gh173a", "https://tec.openplanner.team/stops/H1ms297b"], ["https://tec.openplanner.team/stops/LSGcarr2", "https://tec.openplanner.team/stops/LYegeor4"], ["https://tec.openplanner.team/stops/H4hx114b", "https://tec.openplanner.team/stops/H4wa153b"], ["https://tec.openplanner.team/stops/Bwolrod1", "https://tec.openplanner.team/stops/Bwolvan1"], ["https://tec.openplanner.team/stops/LCdchod1", "https://tec.openplanner.team/stops/LMAbijo2"], ["https://tec.openplanner.team/stops/Lagtenn2", "https://tec.openplanner.team/stops/Lkigare2"], ["https://tec.openplanner.team/stops/LNEgaul2", "https://tec.openplanner.team/stops/LNEolne1"], ["https://tec.openplanner.team/stops/Ccuseba2", "https://tec.openplanner.team/stops/Ccuwain2"], ["https://tec.openplanner.team/stops/H3lr107a", "https://tec.openplanner.team/stops/H3lr116b"], ["https://tec.openplanner.team/stops/LaTcolo1", "https://tec.openplanner.team/stops/LsEdorf2"], ["https://tec.openplanner.team/stops/X789abb", "https://tec.openplanner.team/stops/X789aja"], ["https://tec.openplanner.team/stops/Cjxcoll2", "https://tec.openplanner.team/stops/Cjxvalh2"], ["https://tec.openplanner.team/stops/H1ms264b", "https://tec.openplanner.team/stops/H1ms269a"], ["https://tec.openplanner.team/stops/N121agb", "https://tec.openplanner.team/stops/N121aha"], ["https://tec.openplanner.team/stops/N505aea", "https://tec.openplanner.team/stops/N505aha"], ["https://tec.openplanner.team/stops/X750aaa", "https://tec.openplanner.team/stops/X780ata"], ["https://tec.openplanner.team/stops/Lsmdepo1", "https://tec.openplanner.team/stops/Lveinva2"], ["https://tec.openplanner.team/stops/N513arb", "https://tec.openplanner.team/stops/N513ata"], ["https://tec.openplanner.team/stops/Bnivjli2", "https://tec.openplanner.team/stops/Bnivrsh1"], ["https://tec.openplanner.team/stops/LCPcomb1", "https://tec.openplanner.team/stops/LCPcomm1"], ["https://tec.openplanner.team/stops/LLUhotc1", "https://tec.openplanner.team/stops/LREhaut2"], ["https://tec.openplanner.team/stops/X897abb", "https://tec.openplanner.team/stops/X897anb"], ["https://tec.openplanner.team/stops/H1em102a", "https://tec.openplanner.team/stops/H1em110b"], ["https://tec.openplanner.team/stops/H4ty301b", "https://tec.openplanner.team/stops/H4ty335a"], ["https://tec.openplanner.team/stops/LRuegli2", "https://tec.openplanner.team/stops/LSegott2"], ["https://tec.openplanner.team/stops/Lghmeun1", "https://tec.openplanner.team/stops/Ljerouy2"], ["https://tec.openplanner.team/stops/Cfabnat2", "https://tec.openplanner.team/stops/Cfarcam1"], ["https://tec.openplanner.team/stops/H1fl136c", "https://tec.openplanner.team/stops/H1fl137b"], ["https://tec.openplanner.team/stops/H3lr112b", "https://tec.openplanner.team/stops/H3lr117a"], ["https://tec.openplanner.team/stops/X640acb", "https://tec.openplanner.team/stops/X640aha"], ["https://tec.openplanner.team/stops/Ladandr2", "https://tec.openplanner.team/stops/Ladboti2"], ["https://tec.openplanner.team/stops/Cgxcite2", "https://tec.openplanner.team/stops/Cgxptt2"], ["https://tec.openplanner.team/stops/N424aab", "https://tec.openplanner.team/stops/N424aba"], ["https://tec.openplanner.team/stops/X805acb", "https://tec.openplanner.team/stops/X805aea"], ["https://tec.openplanner.team/stops/Cchblne2", "https://tec.openplanner.team/stops/Cchdrai2"], ["https://tec.openplanner.team/stops/N549aea", "https://tec.openplanner.team/stops/N550anb"], ["https://tec.openplanner.team/stops/LAUjean1", "https://tec.openplanner.team/stops/LAUscha1"], ["https://tec.openplanner.team/stops/LeUcamp1", "https://tec.openplanner.team/stops/LHthest1"], ["https://tec.openplanner.team/stops/N558ana", "https://tec.openplanner.team/stops/NL72aca"], ["https://tec.openplanner.team/stops/Cldplac1", "https://tec.openplanner.team/stops/Cmyjaci2"], ["https://tec.openplanner.team/stops/H1ha193a", "https://tec.openplanner.team/stops/H1ha201a"], ["https://tec.openplanner.team/stops/NC14aaa", "https://tec.openplanner.team/stops/NC14aab"], ["https://tec.openplanner.team/stops/LOmmer-2", "https://tec.openplanner.team/stops/LRuegli1"], ["https://tec.openplanner.team/stops/X619ahb", "https://tec.openplanner.team/stops/X619aia"], ["https://tec.openplanner.team/stops/X760abb", "https://tec.openplanner.team/stops/X789aga"], ["https://tec.openplanner.team/stops/Cgzclef1", "https://tec.openplanner.team/stops/Cgzmarb1"], ["https://tec.openplanner.team/stops/Bhmmcge1", "https://tec.openplanner.team/stops/Bhmmcge2"], ["https://tec.openplanner.team/stops/Lbbgare2", "https://tec.openplanner.team/stops/Lbbremy2"], ["https://tec.openplanner.team/stops/H1eu107b", "https://tec.openplanner.team/stops/H1lb152b"], ["https://tec.openplanner.team/stops/Cmaduna1", "https://tec.openplanner.team/stops/Cmysncb2"], ["https://tec.openplanner.team/stops/X793akb", "https://tec.openplanner.team/stops/X793anb"], ["https://tec.openplanner.team/stops/H1sg144b", "https://tec.openplanner.team/stops/H1te198b"], ["https://tec.openplanner.team/stops/Lrogene2", "https://tec.openplanner.team/stops/Lromerl1"], ["https://tec.openplanner.team/stops/X768ala", "https://tec.openplanner.team/stops/X768alb"], ["https://tec.openplanner.team/stops/Cjupui02", "https://tec.openplanner.team/stops/CMpuis1"], ["https://tec.openplanner.team/stops/Cnaplbu2", "https://tec.openplanner.team/stops/NC14aeb"], ["https://tec.openplanner.team/stops/X925ada", "https://tec.openplanner.team/stops/X925afa"], ["https://tec.openplanner.team/stops/Brsga811", "https://tec.openplanner.team/stops/Brsggea2"], ["https://tec.openplanner.team/stops/Lsnlibe1", "https://tec.openplanner.team/stops/Lsnlibe2"], ["https://tec.openplanner.team/stops/H4fr144a", "https://tec.openplanner.team/stops/H4fr386a"], ["https://tec.openplanner.team/stops/Bblmcel1", "https://tec.openplanner.team/stops/Bmsgrco2"], ["https://tec.openplanner.team/stops/LkEbran1", "https://tec.openplanner.team/stops/LkEwolf1"], ["https://tec.openplanner.team/stops/LHCkoul2", "https://tec.openplanner.team/stops/LHCmonu4"], ["https://tec.openplanner.team/stops/LpEbins1", "https://tec.openplanner.team/stops/LpEzoll*"], ["https://tec.openplanner.team/stops/NL37aib", "https://tec.openplanner.team/stops/NL37aka"], ["https://tec.openplanner.team/stops/N101ama", "https://tec.openplanner.team/stops/N101apb"], ["https://tec.openplanner.team/stops/Bpielon1", "https://tec.openplanner.team/stops/Bpiepla1"], ["https://tec.openplanner.team/stops/X614aqb", "https://tec.openplanner.team/stops/X614asb"], ["https://tec.openplanner.team/stops/Bjanfer1", "https://tec.openplanner.team/stops/Bjanfer2"], ["https://tec.openplanner.team/stops/LDLboul1", "https://tec.openplanner.team/stops/LDLboul2"], ["https://tec.openplanner.team/stops/LFRfagn1", "https://tec.openplanner.team/stops/LFRrohe2"], ["https://tec.openplanner.team/stops/H4hq131b", "https://tec.openplanner.team/stops/H4th141a"], ["https://tec.openplanner.team/stops/N543aea", "https://tec.openplanner.team/stops/N543bxb"], ["https://tec.openplanner.team/stops/Cgzmira1", "https://tec.openplanner.team/stops/Cgzoctr3"], ["https://tec.openplanner.team/stops/Bhmmhde1", "https://tec.openplanner.team/stops/Bhmmsca1"], ["https://tec.openplanner.team/stops/H4li179c", "https://tec.openplanner.team/stops/H4mb202a"], ["https://tec.openplanner.team/stops/N166aba", "https://tec.openplanner.team/stops/N565afb"], ["https://tec.openplanner.team/stops/X995add", "https://tec.openplanner.team/stops/X995ade"], ["https://tec.openplanner.team/stops/X615aca", "https://tec.openplanner.team/stops/X681aca"], ["https://tec.openplanner.team/stops/X723aea", "https://tec.openplanner.team/stops/X766afb"], ["https://tec.openplanner.team/stops/N501lsb", "https://tec.openplanner.team/stops/N501maa"], ["https://tec.openplanner.team/stops/Cnaha562", "https://tec.openplanner.team/stops/Cnating2"], ["https://tec.openplanner.team/stops/LSoboul2", "https://tec.openplanner.team/stops/LSopost2"], ["https://tec.openplanner.team/stops/Chppack1", "https://tec.openplanner.team/stops/Cwgtill1"], ["https://tec.openplanner.team/stops/Cdaptca2", "https://tec.openplanner.team/stops/Cmlthym1"], ["https://tec.openplanner.team/stops/Craappa1", "https://tec.openplanner.team/stops/Cravold1"], ["https://tec.openplanner.team/stops/H4ty312a", "https://tec.openplanner.team/stops/H4ty312b"], ["https://tec.openplanner.team/stops/Lemeg--1", "https://tec.openplanner.team/stops/Lemparc1"], ["https://tec.openplanner.team/stops/X857aab", "https://tec.openplanner.team/stops/X858aea"], ["https://tec.openplanner.team/stops/H4wu375a", "https://tec.openplanner.team/stops/H4wu376a"], ["https://tec.openplanner.team/stops/H1do126a", "https://tec.openplanner.team/stops/H1do129a"], ["https://tec.openplanner.team/stops/H1bu141b", "https://tec.openplanner.team/stops/H2le147b"], ["https://tec.openplanner.team/stops/N217aca", "https://tec.openplanner.team/stops/N218afb"], ["https://tec.openplanner.team/stops/Btilgar1", "https://tec.openplanner.team/stops/Btilhti1"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Lghsimo3"], ["https://tec.openplanner.team/stops/LXopier1", "https://tec.openplanner.team/stops/LXopier2"], ["https://tec.openplanner.team/stops/LkEbruc1", "https://tec.openplanner.team/stops/LkEkric2"], ["https://tec.openplanner.team/stops/LFFmagr2", "https://tec.openplanner.team/stops/LFFruel1"], ["https://tec.openplanner.team/stops/X659aqa", "https://tec.openplanner.team/stops/X659arb"], ["https://tec.openplanner.team/stops/X839aab", "https://tec.openplanner.team/stops/X839aca"], ["https://tec.openplanner.team/stops/LAWdefu3", "https://tec.openplanner.team/stops/LAWvold1"], ["https://tec.openplanner.team/stops/Llgbatt1", "https://tec.openplanner.team/stops/Llghoch1"], ["https://tec.openplanner.team/stops/Bvirhsa1", "https://tec.openplanner.team/stops/Bvirpla2"], ["https://tec.openplanner.team/stops/Cmldupu1", "https://tec.openplanner.team/stops/Cmldupu2"], ["https://tec.openplanner.team/stops/Cmxpleg1", "https://tec.openplanner.team/stops/Cmxpleg2"], ["https://tec.openplanner.team/stops/NL77ama", "https://tec.openplanner.team/stops/NL77amb"], ["https://tec.openplanner.team/stops/LPbhaut1", "https://tec.openplanner.team/stops/LPbpeti1"], ["https://tec.openplanner.team/stops/LDLbeau2", "https://tec.openplanner.team/stops/LHYdogn1"], ["https://tec.openplanner.team/stops/LAuvici1", "https://tec.openplanner.team/stops/LAuvill1"], ["https://tec.openplanner.team/stops/Cssgare1", "https://tec.openplanner.team/stops/Cssgare2"], ["https://tec.openplanner.team/stops/X607acb", "https://tec.openplanner.team/stops/X607ada"], ["https://tec.openplanner.team/stops/N287abb", "https://tec.openplanner.team/stops/N287adb"], ["https://tec.openplanner.team/stops/LHNgend3", "https://tec.openplanner.team/stops/LVPcoeu2"], ["https://tec.openplanner.team/stops/Cgy3012", "https://tec.openplanner.team/stops/Cmtstth2"], ["https://tec.openplanner.team/stops/Ljhjeha*", "https://tec.openplanner.team/stops/Ljhmany2"], ["https://tec.openplanner.team/stops/H1sp353a", "https://tec.openplanner.team/stops/H1sp353b"], ["https://tec.openplanner.team/stops/X949aga", "https://tec.openplanner.team/stops/X949aja"], ["https://tec.openplanner.team/stops/X371aba", "https://tec.openplanner.team/stops/X371aca"], ["https://tec.openplanner.team/stops/N538aoa", "https://tec.openplanner.team/stops/N538aob"], ["https://tec.openplanner.team/stops/X804akb", "https://tec.openplanner.team/stops/X804aqb"], ["https://tec.openplanner.team/stops/N549ada", "https://tec.openplanner.team/stops/N577aab"], ["https://tec.openplanner.team/stops/Cgoboll4", "https://tec.openplanner.team/stops/Craplac3"], ["https://tec.openplanner.team/stops/Bwancal1", "https://tec.openplanner.team/stops/Bwanwar2"], ["https://tec.openplanner.team/stops/H1by100c", "https://tec.openplanner.team/stops/H1by100d"], ["https://tec.openplanner.team/stops/N136aea", "https://tec.openplanner.team/stops/N138aea"], ["https://tec.openplanner.team/stops/Bmsgbur1", "https://tec.openplanner.team/stops/Bmsgcap2"], ["https://tec.openplanner.team/stops/Ccofayt2", "https://tec.openplanner.team/stops/Ccomiau1"], ["https://tec.openplanner.team/stops/H1ch101a", "https://tec.openplanner.team/stops/H1ch102a"], ["https://tec.openplanner.team/stops/X661ata", "https://tec.openplanner.team/stops/X672abb"], ["https://tec.openplanner.team/stops/N343aab", "https://tec.openplanner.team/stops/X343ahb"], ["https://tec.openplanner.team/stops/LAWeg--1", "https://tec.openplanner.team/stops/LAWmc--2"], ["https://tec.openplanner.team/stops/N222ada", "https://tec.openplanner.team/stops/X919ana"], ["https://tec.openplanner.team/stops/Cchdrai2", "https://tec.openplanner.team/stops/CMwate1"], ["https://tec.openplanner.team/stops/N321aba", "https://tec.openplanner.team/stops/N321afa"], ["https://tec.openplanner.team/stops/Ltiecch1", "https://tec.openplanner.team/stops/Ltiecch2"], ["https://tec.openplanner.team/stops/LnUcamp2", "https://tec.openplanner.team/stops/LnUneun2"], ["https://tec.openplanner.team/stops/N308aba", "https://tec.openplanner.team/stops/N339acb"], ["https://tec.openplanner.team/stops/LFPho8a1", "https://tec.openplanner.team/stops/LWRferm2"], ["https://tec.openplanner.team/stops/Lbrcygn1", "https://tec.openplanner.team/stops/Lbrfune*"], ["https://tec.openplanner.team/stops/X857aba", "https://tec.openplanner.team/stops/X858afb"], ["https://tec.openplanner.team/stops/LCEhayo2", "https://tec.openplanner.team/stops/LETmagn1"], ["https://tec.openplanner.team/stops/H4bl105b", "https://tec.openplanner.team/stops/H4ha169b"], ["https://tec.openplanner.team/stops/H1sb145a", "https://tec.openplanner.team/stops/H1sb145b"], ["https://tec.openplanner.team/stops/Bneesan2", "https://tec.openplanner.team/stops/Bneesj31"], ["https://tec.openplanner.team/stops/LFFchal1", "https://tec.openplanner.team/stops/LFFchal2"], ["https://tec.openplanner.team/stops/Bquepos1", "https://tec.openplanner.team/stops/Bquesta1"], ["https://tec.openplanner.team/stops/Bsdacab1", "https://tec.openplanner.team/stops/Bsdafra1"], ["https://tec.openplanner.team/stops/X996aba", "https://tec.openplanner.team/stops/X996abb"], ["https://tec.openplanner.team/stops/Crolema2", "https://tec.openplanner.team/stops/Crowilb2"], ["https://tec.openplanner.team/stops/LHTcarr2", "https://tec.openplanner.team/stops/LHTmonu1"], ["https://tec.openplanner.team/stops/Cplcite2", "https://tec.openplanner.team/stops/Cplstfa3"], ["https://tec.openplanner.team/stops/Bnivind2", "https://tec.openplanner.team/stops/Bnivtra1"], ["https://tec.openplanner.team/stops/Bincfer1", "https://tec.openplanner.team/stops/Brxmcha2"], ["https://tec.openplanner.team/stops/Lghjans2", "https://tec.openplanner.team/stops/Lghviad2"], ["https://tec.openplanner.team/stops/Ljecoqu2", "https://tec.openplanner.team/stops/Ljehotv1"], ["https://tec.openplanner.team/stops/H1bd100a", "https://tec.openplanner.team/stops/H1le121b"], ["https://tec.openplanner.team/stops/X639aoc", "https://tec.openplanner.team/stops/X639aqa"], ["https://tec.openplanner.team/stops/LENchem1", "https://tec.openplanner.team/stops/LENecol1"], ["https://tec.openplanner.team/stops/Lhrferr1", "https://tec.openplanner.team/stops/Lhrjaur2"], ["https://tec.openplanner.team/stops/Lghfors1", "https://tec.openplanner.team/stops/Lghgend1"], ["https://tec.openplanner.team/stops/X719ada", "https://tec.openplanner.team/stops/X719aeb"], ["https://tec.openplanner.team/stops/Cgzrust1", "https://tec.openplanner.team/stops/Cmx3arb1"], ["https://tec.openplanner.team/stops/H4bn101b", "https://tec.openplanner.team/stops/H4pi133a"], ["https://tec.openplanner.team/stops/LhEauto1", "https://tec.openplanner.team/stops/LhEherb1"], ["https://tec.openplanner.team/stops/N501fra", "https://tec.openplanner.team/stops/N501lcb"], ["https://tec.openplanner.team/stops/X639ana", "https://tec.openplanner.team/stops/X640abb"], ["https://tec.openplanner.team/stops/LERboss2", "https://tec.openplanner.team/stops/LERdeho2"], ["https://tec.openplanner.team/stops/LLUmc--1", "https://tec.openplanner.team/stops/LLUreut2"], ["https://tec.openplanner.team/stops/X542aeb", "https://tec.openplanner.team/stops/X542ahb"], ["https://tec.openplanner.team/stops/LHrchat2", "https://tec.openplanner.team/stops/LHreg--2"], ["https://tec.openplanner.team/stops/N120afb", "https://tec.openplanner.team/stops/N120anb"], ["https://tec.openplanner.team/stops/LSTchen1", "https://tec.openplanner.team/stops/LSTchen2"], ["https://tec.openplanner.team/stops/Llgdelc*", "https://tec.openplanner.team/stops/Llgdelc1"], ["https://tec.openplanner.team/stops/LCPoneu2", "https://tec.openplanner.team/stops/LCPpech2"], ["https://tec.openplanner.team/stops/H4mo138a", "https://tec.openplanner.team/stops/H4mo178a"], ["https://tec.openplanner.team/stops/N553aca", "https://tec.openplanner.team/stops/N553ada"], ["https://tec.openplanner.team/stops/Bracgar1", "https://tec.openplanner.team/stops/Brach121"], ["https://tec.openplanner.team/stops/X826aea", "https://tec.openplanner.team/stops/X826afa"], ["https://tec.openplanner.team/stops/X618aka", "https://tec.openplanner.team/stops/X625adb"], ["https://tec.openplanner.team/stops/Cmllait2", "https://tec.openplanner.team/stops/Cmlm2412"], ["https://tec.openplanner.team/stops/Bgnpgar1", "https://tec.openplanner.team/stops/Bgnpjbe2"], ["https://tec.openplanner.team/stops/H1qv113b", "https://tec.openplanner.team/stops/H1qv114b"], ["https://tec.openplanner.team/stops/N535amb", "https://tec.openplanner.team/stops/N535amd"], ["https://tec.openplanner.team/stops/X615asa", "https://tec.openplanner.team/stops/X615asb"], ["https://tec.openplanner.team/stops/X899afa", "https://tec.openplanner.team/stops/X899afb"], ["https://tec.openplanner.team/stops/X907aba", "https://tec.openplanner.team/stops/X908asa"], ["https://tec.openplanner.team/stops/H4ne138a", "https://tec.openplanner.team/stops/H4ne138b"], ["https://tec.openplanner.team/stops/LBGcent1", "https://tec.openplanner.team/stops/LGrchpl2"], ["https://tec.openplanner.team/stops/Bmangar1", "https://tec.openplanner.team/stops/H2mg140b"], ["https://tec.openplanner.team/stops/LScd45-2", "https://tec.openplanner.team/stops/LSevitu4"], ["https://tec.openplanner.team/stops/Cwgcamp1", "https://tec.openplanner.team/stops/Cwgdeba1"], ["https://tec.openplanner.team/stops/LSPentr1", "https://tec.openplanner.team/stops/LSPpomp1"], ["https://tec.openplanner.team/stops/X659ava", "https://tec.openplanner.team/stops/X659awb"], ["https://tec.openplanner.team/stops/LAMceri2", "https://tec.openplanner.team/stops/LOmpont1"], ["https://tec.openplanner.team/stops/N558aaa", "https://tec.openplanner.team/stops/N558aab"], ["https://tec.openplanner.team/stops/Bclgegl1", "https://tec.openplanner.team/stops/Bclgegl2"], ["https://tec.openplanner.team/stops/LTyhall2", "https://tec.openplanner.team/stops/LTywaut2"], ["https://tec.openplanner.team/stops/H5at130a", "https://tec.openplanner.team/stops/H5at131a"], ["https://tec.openplanner.team/stops/LeUhaas4", "https://tec.openplanner.team/stops/LeUkehr4"], ["https://tec.openplanner.team/stops/Cbfusin1", "https://tec.openplanner.team/stops/NC11aka"], ["https://tec.openplanner.team/stops/N141aib", "https://tec.openplanner.team/stops/N141amc"], ["https://tec.openplanner.team/stops/X804asa", "https://tec.openplanner.team/stops/X828aab"], ["https://tec.openplanner.team/stops/H2hp119d", "https://tec.openplanner.team/stops/H2lh126b"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N312adb"], ["https://tec.openplanner.team/stops/Llmdeba1", "https://tec.openplanner.team/stops/Llmdeba2"], ["https://tec.openplanner.team/stops/H4eh101a", "https://tec.openplanner.team/stops/H4eh101b"], ["https://tec.openplanner.team/stops/Llgparc1", "https://tec.openplanner.team/stops/Llgrome2"], ["https://tec.openplanner.team/stops/H4ch114a", "https://tec.openplanner.team/stops/H4ch116a"], ["https://tec.openplanner.team/stops/LmNha152", "https://tec.openplanner.team/stops/LmNpost2"], ["https://tec.openplanner.team/stops/LGMforg2", "https://tec.openplanner.team/stops/LTRryta2"], ["https://tec.openplanner.team/stops/X640arb", "https://tec.openplanner.team/stops/X640aub"], ["https://tec.openplanner.team/stops/Bmoucnd1", "https://tec.openplanner.team/stops/Bmoufil1"], ["https://tec.openplanner.team/stops/H4ty267a", "https://tec.openplanner.team/stops/H4ty285a"], ["https://tec.openplanner.team/stops/H4ef110b", "https://tec.openplanner.team/stops/H4or114a"], ["https://tec.openplanner.team/stops/LFAec--2", "https://tec.openplanner.team/stops/LLTfall2"], ["https://tec.openplanner.team/stops/LLUtill1", "https://tec.openplanner.team/stops/LLUvent6"], ["https://tec.openplanner.team/stops/NC44abb", "https://tec.openplanner.team/stops/NC44aga"], ["https://tec.openplanner.team/stops/N562bja", "https://tec.openplanner.team/stops/N562bjb"], ["https://tec.openplanner.team/stops/X897arb", "https://tec.openplanner.team/stops/X897aua"], ["https://tec.openplanner.team/stops/LPtrefa1", "https://tec.openplanner.team/stops/LPtrefa2"], ["https://tec.openplanner.team/stops/N536afb", "https://tec.openplanner.team/stops/N536agb"], ["https://tec.openplanner.team/stops/H4eg102b", "https://tec.openplanner.team/stops/H4eg103b"], ["https://tec.openplanner.team/stops/H4bf106a", "https://tec.openplanner.team/stops/H4by119a"], ["https://tec.openplanner.team/stops/X601dga", "https://tec.openplanner.team/stops/X602aha"], ["https://tec.openplanner.team/stops/Lmohomv1", "https://tec.openplanner.team/stops/Lmopast1"], ["https://tec.openplanner.team/stops/X717agc", "https://tec.openplanner.team/stops/X717agd"], ["https://tec.openplanner.team/stops/N234aab", "https://tec.openplanner.team/stops/N252acd"], ["https://tec.openplanner.team/stops/Cchparc1", "https://tec.openplanner.team/stops/Cchparc2"], ["https://tec.openplanner.team/stops/LJOvill1", "https://tec.openplanner.team/stops/LXHbois1"], ["https://tec.openplanner.team/stops/H2lh125b", "https://tec.openplanner.team/stops/H2lh129a"], ["https://tec.openplanner.team/stops/LHurobi1", "https://tec.openplanner.team/stops/LHurobi2"], ["https://tec.openplanner.team/stops/X982aja", "https://tec.openplanner.team/stops/X982bzb"], ["https://tec.openplanner.team/stops/Bnivfhu2", "https://tec.openplanner.team/stops/Bnivfra2"], ["https://tec.openplanner.team/stops/LFRgode1", "https://tec.openplanner.team/stops/LFRspa-1"], ["https://tec.openplanner.team/stops/LNAbras5", "https://tec.openplanner.team/stops/LTNsarl1"], ["https://tec.openplanner.team/stops/Bbiemse1", "https://tec.openplanner.team/stops/Bbiemse2"], ["https://tec.openplanner.team/stops/LBEairp2", "https://tec.openplanner.team/stops/LBEairp3"], ["https://tec.openplanner.team/stops/Llgauxc1", "https://tec.openplanner.team/stops/Llginte2"], ["https://tec.openplanner.team/stops/LTPbode1", "https://tec.openplanner.team/stops/LTPbode2"], ["https://tec.openplanner.team/stops/N533adb", "https://tec.openplanner.team/stops/N551ajb"], ["https://tec.openplanner.team/stops/N145akb", "https://tec.openplanner.team/stops/N150aka"], ["https://tec.openplanner.team/stops/Bbeardu2", "https://tec.openplanner.team/stops/Bbearwa2"], ["https://tec.openplanner.team/stops/H1te175b", "https://tec.openplanner.team/stops/H1te186a"], ["https://tec.openplanner.team/stops/X926abb", "https://tec.openplanner.team/stops/X927ada"], ["https://tec.openplanner.team/stops/H1wz169a", "https://tec.openplanner.team/stops/H1wz171b"], ["https://tec.openplanner.team/stops/LGEcent2", "https://tec.openplanner.team/stops/LGEhosp1"], ["https://tec.openplanner.team/stops/LGrfont2", "https://tec.openplanner.team/stops/LORherl1"], ["https://tec.openplanner.team/stops/Bengvma2", "https://tec.openplanner.team/stops/Bptemch1"], ["https://tec.openplanner.team/stops/H1ju120a", "https://tec.openplanner.team/stops/H1ju120b"], ["https://tec.openplanner.team/stops/X999aia", "https://tec.openplanner.team/stops/X999aib"], ["https://tec.openplanner.team/stops/X836afb", "https://tec.openplanner.team/stops/X836aia"], ["https://tec.openplanner.team/stops/Cvlgrta1", "https://tec.openplanner.team/stops/Cvllerm1"], ["https://tec.openplanner.team/stops/Cmychpl2", "https://tec.openplanner.team/stops/Cmycime2"], ["https://tec.openplanner.team/stops/X626ada", "https://tec.openplanner.team/stops/X626afa"], ["https://tec.openplanner.team/stops/LeUath2", "https://tec.openplanner.team/stops/LeUnopr2"], ["https://tec.openplanner.team/stops/N231ada", "https://tec.openplanner.team/stops/N231adb"], ["https://tec.openplanner.team/stops/H4ka175b", "https://tec.openplanner.team/stops/H4ka195a"], ["https://tec.openplanner.team/stops/X939ada", "https://tec.openplanner.team/stops/X939afb"], ["https://tec.openplanner.team/stops/Bbcogar1", "https://tec.openplanner.team/stops/Bbcoubo2"], ["https://tec.openplanner.team/stops/Csemacq4", "https://tec.openplanner.team/stops/Csepote1"], ["https://tec.openplanner.team/stops/X750bha", "https://tec.openplanner.team/stops/X750bib"], ["https://tec.openplanner.team/stops/LsVprum2", "https://tec.openplanner.team/stops/LwSbrei2"], ["https://tec.openplanner.team/stops/Landolh2", "https://tec.openplanner.team/stops/Lanlona2"], ["https://tec.openplanner.team/stops/Lghcoqs2", "https://tec.openplanner.team/stops/Lghleon1"], ["https://tec.openplanner.team/stops/LhUdenk2", "https://tec.openplanner.team/stops/LhUkape1"], ["https://tec.openplanner.team/stops/H4ta115b", "https://tec.openplanner.team/stops/H4ta120b"], ["https://tec.openplanner.team/stops/X760acb", "https://tec.openplanner.team/stops/X760aeb"], ["https://tec.openplanner.team/stops/Bmarcha1", "https://tec.openplanner.team/stops/Bwagsta1"], ["https://tec.openplanner.team/stops/Creha762", "https://tec.openplanner.team/stops/Crerevi1"], ["https://tec.openplanner.team/stops/H4bv145c", "https://tec.openplanner.team/stops/H4re225b"], ["https://tec.openplanner.team/stops/Cjxcoll2", "https://tec.openplanner.team/stops/Cmyboci1"], ["https://tec.openplanner.team/stops/X661axa", "https://tec.openplanner.team/stops/X822aja"], ["https://tec.openplanner.team/stops/Bgoemgr2", "https://tec.openplanner.team/stops/Boplsma4"], ["https://tec.openplanner.team/stops/H1ci106a", "https://tec.openplanner.team/stops/H1mv240b"], ["https://tec.openplanner.team/stops/H4lz126b", "https://tec.openplanner.team/stops/H4th140b"], ["https://tec.openplanner.team/stops/X807acb", "https://tec.openplanner.team/stops/X808afa"], ["https://tec.openplanner.team/stops/N525aga", "https://tec.openplanner.team/stops/N525agb"], ["https://tec.openplanner.team/stops/Bsgihmo1", "https://tec.openplanner.team/stops/Bsgihmo2"], ["https://tec.openplanner.team/stops/Brsga151", "https://tec.openplanner.team/stops/Brsgman2"], ["https://tec.openplanner.team/stops/Blmlfau1", "https://tec.openplanner.team/stops/Blmlvex1"], ["https://tec.openplanner.team/stops/N505aha", "https://tec.openplanner.team/stops/N506aoa"], ["https://tec.openplanner.team/stops/N534bmb", "https://tec.openplanner.team/stops/N534bra"], ["https://tec.openplanner.team/stops/LaNmuhl1", "https://tec.openplanner.team/stops/LeMnr11"], ["https://tec.openplanner.team/stops/X921ajd", "https://tec.openplanner.team/stops/X921aka"], ["https://tec.openplanner.team/stops/Bnivaba1", "https://tec.openplanner.team/stops/Bnivaba2"], ["https://tec.openplanner.team/stops/LFsherm2", "https://tec.openplanner.team/stops/LSLabba1"], ["https://tec.openplanner.team/stops/X663aba", "https://tec.openplanner.team/stops/X663aca"], ["https://tec.openplanner.team/stops/LSkyern1", "https://tec.openplanner.team/stops/LYegeor2"], ["https://tec.openplanner.team/stops/Lsccdor1", "https://tec.openplanner.team/stops/Lsccime1"], ["https://tec.openplanner.team/stops/H2go114b", "https://tec.openplanner.team/stops/H2go119a"], ["https://tec.openplanner.team/stops/H4av102a", "https://tec.openplanner.team/stops/H4av107b"], ["https://tec.openplanner.team/stops/Lbrmour2", "https://tec.openplanner.team/stops/Llgplai2"], ["https://tec.openplanner.team/stops/Cbfegch2", "https://tec.openplanner.team/stops/Cbfgare2"], ["https://tec.openplanner.team/stops/N525aka", "https://tec.openplanner.team/stops/N525akb"], ["https://tec.openplanner.team/stops/X999afb", "https://tec.openplanner.team/stops/X999aga"], ["https://tec.openplanner.team/stops/Lcegeor2", "https://tec.openplanner.team/stops/Lvc4bra1"], ["https://tec.openplanner.team/stops/H1hr120a", "https://tec.openplanner.team/stops/H1hr120b"], ["https://tec.openplanner.team/stops/H4ne140b", "https://tec.openplanner.team/stops/H4te413a"], ["https://tec.openplanner.team/stops/N501hfa", "https://tec.openplanner.team/stops/N501hfb"], ["https://tec.openplanner.team/stops/Ccychba2", "https://tec.openplanner.team/stops/Crbecol1"], ["https://tec.openplanner.team/stops/LJEniho2", "https://tec.openplanner.team/stops/LVLsabl4"], ["https://tec.openplanner.team/stops/X982bva", "https://tec.openplanner.team/stops/X982bvb"], ["https://tec.openplanner.team/stops/Lsmh3021", "https://tec.openplanner.team/stops/Lsmh3022"], ["https://tec.openplanner.team/stops/Bsmgmar2", "https://tec.openplanner.team/stops/Bsmgpla1"], ["https://tec.openplanner.team/stops/Lgrchar1", "https://tec.openplanner.team/stops/Lgrrein1"], ["https://tec.openplanner.team/stops/H4ty295b", "https://tec.openplanner.team/stops/H4ty359a"], ["https://tec.openplanner.team/stops/X659axb", "https://tec.openplanner.team/stops/X659ayb"], ["https://tec.openplanner.team/stops/Cfaplma2", "https://tec.openplanner.team/stops/Cfaysle2"], ["https://tec.openplanner.team/stops/X925apa", "https://tec.openplanner.team/stops/X926aaa"], ["https://tec.openplanner.team/stops/X939acb", "https://tec.openplanner.team/stops/X940aea"], ["https://tec.openplanner.team/stops/Cfrcoqu2", "https://tec.openplanner.team/stops/Cfrcoqu3"], ["https://tec.openplanner.team/stops/Lsccdor2", "https://tec.openplanner.team/stops/Lscpamp2"], ["https://tec.openplanner.team/stops/X911afa", "https://tec.openplanner.team/stops/X911arb"], ["https://tec.openplanner.team/stops/Bcer4br1", "https://tec.openplanner.team/stops/Bottpin2"], ["https://tec.openplanner.team/stops/LrOn14-1", "https://tec.openplanner.team/stops/LrOtria2"], ["https://tec.openplanner.team/stops/LETsaiv1", "https://tec.openplanner.team/stops/LSAmous1"], ["https://tec.openplanner.team/stops/LBseg--1", "https://tec.openplanner.team/stops/NL72aab"], ["https://tec.openplanner.team/stops/H4ty291b", "https://tec.openplanner.team/stops/H4ty317b"], ["https://tec.openplanner.team/stops/N501fby", "https://tec.openplanner.team/stops/N501fmb"], ["https://tec.openplanner.team/stops/LWRbois2", "https://tec.openplanner.team/stops/LWRheyd2"], ["https://tec.openplanner.team/stops/LHEecmo1", "https://tec.openplanner.team/stops/LHEecmo2"], ["https://tec.openplanner.team/stops/Lve-isi1", "https://tec.openplanner.team/stops/Lvepris1"], ["https://tec.openplanner.team/stops/LBichen1", "https://tec.openplanner.team/stops/LDOprev2"], ["https://tec.openplanner.team/stops/N501dzb", "https://tec.openplanner.team/stops/N501kqb"], ["https://tec.openplanner.team/stops/NL75aaa", "https://tec.openplanner.team/stops/NL75aab"], ["https://tec.openplanner.team/stops/Bjodeco1", "https://tec.openplanner.team/stops/Bjodeco2"], ["https://tec.openplanner.team/stops/Clrpast1", "https://tec.openplanner.team/stops/Clrpast2"], ["https://tec.openplanner.team/stops/N538abb", "https://tec.openplanner.team/stops/N538aeb"], ["https://tec.openplanner.team/stops/N120aaa", "https://tec.openplanner.team/stops/N302ada"], ["https://tec.openplanner.team/stops/LAicarr1", "https://tec.openplanner.team/stops/LAigrim1"], ["https://tec.openplanner.team/stops/H4lz118b", "https://tec.openplanner.team/stops/H4lz126b"], ["https://tec.openplanner.team/stops/N501bsb", "https://tec.openplanner.team/stops/N999aab"], ["https://tec.openplanner.team/stops/Cbfpauc1", "https://tec.openplanner.team/stops/Cbfusin1"], ["https://tec.openplanner.team/stops/X822aaa", "https://tec.openplanner.team/stops/X822aob"], ["https://tec.openplanner.team/stops/N506bla", "https://tec.openplanner.team/stops/N506blb"], ["https://tec.openplanner.team/stops/N513abb", "https://tec.openplanner.team/stops/N513bfa"], ["https://tec.openplanner.team/stops/Bcbqa361", "https://tec.openplanner.team/stops/Bcbqtub1"], ["https://tec.openplanner.team/stops/H4es111a", "https://tec.openplanner.team/stops/H4ln128b"], ["https://tec.openplanner.team/stops/X756aeb", "https://tec.openplanner.team/stops/X756aed"], ["https://tec.openplanner.team/stops/X824adb", "https://tec.openplanner.team/stops/X824aia"], ["https://tec.openplanner.team/stops/LNCmoul1", "https://tec.openplanner.team/stops/LNCsart1"], ["https://tec.openplanner.team/stops/X986aja", "https://tec.openplanner.team/stops/X986alc"], ["https://tec.openplanner.team/stops/N122aab", "https://tec.openplanner.team/stops/N122aia"], ["https://tec.openplanner.team/stops/X637adb", "https://tec.openplanner.team/stops/X637aea"], ["https://tec.openplanner.team/stops/Cfccol1", "https://tec.openplanner.team/stops/Cvlstan1"], ["https://tec.openplanner.team/stops/Cjuhopi1", "https://tec.openplanner.team/stops/CMcarr1"], ["https://tec.openplanner.team/stops/N553aaa", "https://tec.openplanner.team/stops/N553ajb"], ["https://tec.openplanner.team/stops/Cfnsenz1", "https://tec.openplanner.team/stops/Cfnsenz2"], ["https://tec.openplanner.team/stops/LbUjost4", "https://tec.openplanner.team/stops/LhUrich1"], ["https://tec.openplanner.team/stops/H1hm174b", "https://tec.openplanner.team/stops/H1vg359b"], ["https://tec.openplanner.team/stops/X721aqa", "https://tec.openplanner.team/stops/X721asa"], ["https://tec.openplanner.team/stops/X948akb", "https://tec.openplanner.team/stops/X948baa"], ["https://tec.openplanner.team/stops/Bclglbu1", "https://tec.openplanner.team/stops/Bmsggra2"], ["https://tec.openplanner.team/stops/H2ca104a", "https://tec.openplanner.team/stops/H2ca112a"], ["https://tec.openplanner.team/stops/Bvirbru2", "https://tec.openplanner.team/stops/Bvirpos2"], ["https://tec.openplanner.team/stops/H1cd114b", "https://tec.openplanner.team/stops/H1ml112a"], ["https://tec.openplanner.team/stops/X911abb", "https://tec.openplanner.team/stops/X911aoa"], ["https://tec.openplanner.team/stops/H4ws159b", "https://tec.openplanner.team/stops/H4ws160a"], ["https://tec.openplanner.team/stops/X615bgb", "https://tec.openplanner.team/stops/X615bhb"], ["https://tec.openplanner.team/stops/X602alb", "https://tec.openplanner.team/stops/X602ama"], ["https://tec.openplanner.team/stops/Bohngai1", "https://tec.openplanner.team/stops/Bohngai2"], ["https://tec.openplanner.team/stops/Lceludg1", "https://tec.openplanner.team/stops/Lcewilm2"], ["https://tec.openplanner.team/stops/H1pw121b", "https://tec.openplanner.team/stops/H1pw123b"], ["https://tec.openplanner.team/stops/Lheloti2", "https://tec.openplanner.team/stops/LOUsorb1"], ["https://tec.openplanner.team/stops/X642aac", "https://tec.openplanner.team/stops/X646ada"], ["https://tec.openplanner.team/stops/Cptberg2", "https://tec.openplanner.team/stops/Cptcamb1"], ["https://tec.openplanner.team/stops/H5qu139a", "https://tec.openplanner.team/stops/H5qu154a"], ["https://tec.openplanner.team/stops/LLR4bra2", "https://tec.openplanner.team/stops/LLReg--1"], ["https://tec.openplanner.team/stops/H1qu102b", "https://tec.openplanner.team/stops/H1wl125a"], ["https://tec.openplanner.team/stops/H1fy118a", "https://tec.openplanner.team/stops/H1fy120a"], ["https://tec.openplanner.team/stops/LBCaube2", "https://tec.openplanner.team/stops/LBJchau*"], ["https://tec.openplanner.team/stops/X634ala", "https://tec.openplanner.team/stops/X654aeb"], ["https://tec.openplanner.team/stops/N501dva", "https://tec.openplanner.team/stops/N501exa"], ["https://tec.openplanner.team/stops/H2gy107a", "https://tec.openplanner.team/stops/H2tz117a"], ["https://tec.openplanner.team/stops/LBLghuy2", "https://tec.openplanner.team/stops/LBLgobc1"], ["https://tec.openplanner.team/stops/LmD27--2", "https://tec.openplanner.team/stops/LmDkirc2"], ["https://tec.openplanner.team/stops/H4hx116a", "https://tec.openplanner.team/stops/H4hx117b"], ["https://tec.openplanner.team/stops/LrEgend1", "https://tec.openplanner.team/stops/LrEmeil1"], ["https://tec.openplanner.team/stops/Btslpbr1", "https://tec.openplanner.team/stops/Bwspspa1"], ["https://tec.openplanner.team/stops/H1ma231b", "https://tec.openplanner.team/stops/H1ma234b"], ["https://tec.openplanner.team/stops/Bglache1", "https://tec.openplanner.team/stops/Bglarha1"], ["https://tec.openplanner.team/stops/X804aeb", "https://tec.openplanner.team/stops/X804baa"], ["https://tec.openplanner.team/stops/X773ahb", "https://tec.openplanner.team/stops/X773aob"], ["https://tec.openplanner.team/stops/Llgbruy1", "https://tec.openplanner.team/stops/Llgcmes2"], ["https://tec.openplanner.team/stops/Lagorch1", "https://tec.openplanner.team/stops/Lsteg--1"], ["https://tec.openplanner.team/stops/N501mba", "https://tec.openplanner.team/stops/N501mbb"], ["https://tec.openplanner.team/stops/H4be103b", "https://tec.openplanner.team/stops/H4be109a"], ["https://tec.openplanner.team/stops/X669abc", "https://tec.openplanner.team/stops/X669acb"], ["https://tec.openplanner.team/stops/LATmale1", "https://tec.openplanner.team/stops/LWNfani1"], ["https://tec.openplanner.team/stops/H4hg157a", "https://tec.openplanner.team/stops/H4hg158a"], ["https://tec.openplanner.team/stops/Borbtre2", "https://tec.openplanner.team/stops/Btstpch1"], ["https://tec.openplanner.team/stops/Bbgelre2", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://tec.openplanner.team/stops/LTPcarr1", "https://tec.openplanner.team/stops/LTPsalm1"], ["https://tec.openplanner.team/stops/LBHgile1", "https://tec.openplanner.team/stops/LGObeth1"], ["https://tec.openplanner.team/stops/N539aaa", "https://tec.openplanner.team/stops/N539aeb"], ["https://tec.openplanner.team/stops/X604aha", "https://tec.openplanner.team/stops/X604aja"], ["https://tec.openplanner.team/stops/H1gy115b", "https://tec.openplanner.team/stops/H5el100a"], ["https://tec.openplanner.team/stops/X759afa", "https://tec.openplanner.team/stops/X759aga"], ["https://tec.openplanner.team/stops/H4bo115a", "https://tec.openplanner.team/stops/H4bo115b"], ["https://tec.openplanner.team/stops/N424aab", "https://tec.openplanner.team/stops/NH01atb"], ["https://tec.openplanner.team/stops/H3lr109a", "https://tec.openplanner.team/stops/H3lr110b"], ["https://tec.openplanner.team/stops/Lghviad1", "https://tec.openplanner.team/stops/Lghviad2"], ["https://tec.openplanner.team/stops/N501bhb", "https://tec.openplanner.team/stops/N501hka"], ["https://tec.openplanner.team/stops/Csubosa1", "https://tec.openplanner.team/stops/Csurela4"], ["https://tec.openplanner.team/stops/N106aea", "https://tec.openplanner.team/stops/N106aeb"], ["https://tec.openplanner.team/stops/Ccoha602", "https://tec.openplanner.team/stops/H2tz120a"], ["https://tec.openplanner.team/stops/H1ag105b", "https://tec.openplanner.team/stops/H1an100b"], ["https://tec.openplanner.team/stops/H1mk110b", "https://tec.openplanner.team/stops/H1mk113b"], ["https://tec.openplanner.team/stops/H1hr116a", "https://tec.openplanner.team/stops/H1hr129a"], ["https://tec.openplanner.team/stops/N209aha", "https://tec.openplanner.team/stops/N209aja"], ["https://tec.openplanner.team/stops/H4wr173a", "https://tec.openplanner.team/stops/H4wr173b"], ["https://tec.openplanner.team/stops/Cmmadma1", "https://tec.openplanner.team/stops/Cmmegli1"], ["https://tec.openplanner.team/stops/Cobbuze1", "https://tec.openplanner.team/stops/Cobbuze2"], ["https://tec.openplanner.team/stops/H1bd100b", "https://tec.openplanner.team/stops/H1le121b"], ["https://tec.openplanner.team/stops/X720aea", "https://tec.openplanner.team/stops/X721aea"], ["https://tec.openplanner.team/stops/Ltibord2", "https://tec.openplanner.team/stops/Ltithie1"], ["https://tec.openplanner.team/stops/LsVhupp1", "https://tec.openplanner.team/stops/LsVthom2"], ["https://tec.openplanner.team/stops/Bincfer2", "https://tec.openplanner.team/stops/Bsrbbas1"], ["https://tec.openplanner.team/stops/H4hq130b", "https://tec.openplanner.team/stops/H4hs137b"], ["https://tec.openplanner.team/stops/Bdlmflo1", "https://tec.openplanner.team/stops/Bdlmgla3"], ["https://tec.openplanner.team/stops/LLSba4-2", "https://tec.openplanner.team/stops/LLSbajo2"], ["https://tec.openplanner.team/stops/N540aob", "https://tec.openplanner.team/stops/N540ara"], ["https://tec.openplanner.team/stops/H1hm175b", "https://tec.openplanner.team/stops/H1hm177a"], ["https://tec.openplanner.team/stops/LENalun2", "https://tec.openplanner.team/stops/LENparc2"], ["https://tec.openplanner.team/stops/X923apa", "https://tec.openplanner.team/stops/X923apb"], ["https://tec.openplanner.team/stops/LSWscie2", "https://tec.openplanner.team/stops/LSZroqu2"], ["https://tec.openplanner.team/stops/LSAeg--1", "https://tec.openplanner.team/stops/LSAeg--2"], ["https://tec.openplanner.team/stops/X743afa", "https://tec.openplanner.team/stops/X743afb"], ["https://tec.openplanner.team/stops/NL57aga", "https://tec.openplanner.team/stops/NL57agb"], ["https://tec.openplanner.team/stops/H5el100a", "https://tec.openplanner.team/stops/H5rx131a"], ["https://tec.openplanner.team/stops/N343ada", "https://tec.openplanner.team/stops/X344aca"], ["https://tec.openplanner.team/stops/Bnodlce1", "https://tec.openplanner.team/stops/Bolgmpl1"], ["https://tec.openplanner.team/stops/LaAhaup1", "https://tec.openplanner.team/stops/LaAnorm1"], ["https://tec.openplanner.team/stops/X811aga", "https://tec.openplanner.team/stops/X811ahb"], ["https://tec.openplanner.team/stops/N508ala", "https://tec.openplanner.team/stops/N508ama"], ["https://tec.openplanner.team/stops/NC28aea", "https://tec.openplanner.team/stops/NC28aha"], ["https://tec.openplanner.team/stops/LBBpech2", "https://tec.openplanner.team/stops/X222azb"], ["https://tec.openplanner.team/stops/LAxchpl1", "https://tec.openplanner.team/stops/Llianix3"], ["https://tec.openplanner.team/stops/Bllncbr2", "https://tec.openplanner.team/stops/Bmsgbur2"], ["https://tec.openplanner.team/stops/N561aba", "https://tec.openplanner.team/stops/N561aga"], ["https://tec.openplanner.team/stops/X773aja", "https://tec.openplanner.team/stops/X773ana"], ["https://tec.openplanner.team/stops/X879ahb", "https://tec.openplanner.team/stops/X879ana"], ["https://tec.openplanner.team/stops/LMucarr1", "https://tec.openplanner.team/stops/LMuvill2"], ["https://tec.openplanner.team/stops/H4ft136a", "https://tec.openplanner.team/stops/H4ma204b"], ["https://tec.openplanner.team/stops/Cmbcime3", "https://tec.openplanner.team/stops/Csysans2"], ["https://tec.openplanner.team/stops/X663aca", "https://tec.openplanner.team/stops/X663acb"], ["https://tec.openplanner.team/stops/LTyh24-2", "https://tec.openplanner.team/stops/LTyh51-2"], ["https://tec.openplanner.team/stops/N507aeb", "https://tec.openplanner.team/stops/NL74aea"], ["https://tec.openplanner.team/stops/Barqhpe2", "https://tec.openplanner.team/stops/Barqres2"], ["https://tec.openplanner.team/stops/LHHplac2", "https://tec.openplanner.team/stops/LHHronh1"], ["https://tec.openplanner.team/stops/Btlbegl2", "https://tec.openplanner.team/stops/Btlbegl4"], ["https://tec.openplanner.team/stops/LSPClem2", "https://tec.openplanner.team/stops/LSPvigi2"], ["https://tec.openplanner.team/stops/LHUmala1", "https://tec.openplanner.team/stops/LHUtfal1"], ["https://tec.openplanner.team/stops/Bcrncen1", "https://tec.openplanner.team/stops/Bcrnpla3"], ["https://tec.openplanner.team/stops/LeYauto1", "https://tec.openplanner.team/stops/LeYmosc2"], ["https://tec.openplanner.team/stops/LnDkreu2", "https://tec.openplanner.team/stops/LwSbrei2"], ["https://tec.openplanner.team/stops/LaNdorf2", "https://tec.openplanner.team/stops/LhRandl2"], ["https://tec.openplanner.team/stops/LHbcent1", "https://tec.openplanner.team/stops/LJAherb3"], ["https://tec.openplanner.team/stops/LTPtroi1", "https://tec.openplanner.team/stops/LWn24--2"], ["https://tec.openplanner.team/stops/LLUreut1", "https://tec.openplanner.team/stops/LLUtill2"], ["https://tec.openplanner.team/stops/X937aja", "https://tec.openplanner.team/stops/X952adb"], ["https://tec.openplanner.team/stops/H1pa109b", "https://tec.openplanner.team/stops/H1pa109c"], ["https://tec.openplanner.team/stops/LTPwann1", "https://tec.openplanner.team/stops/LTPwann2"], ["https://tec.openplanner.team/stops/LSkcoin1", "https://tec.openplanner.team/stops/LSkdouf1"], ["https://tec.openplanner.team/stops/X733aga", "https://tec.openplanner.team/stops/X733agb"], ["https://tec.openplanner.team/stops/LDOchev1", "https://tec.openplanner.team/stops/LDOviad1"], ["https://tec.openplanner.team/stops/H4ne141b", "https://tec.openplanner.team/stops/H4te260a"], ["https://tec.openplanner.team/stops/H4hq129b", "https://tec.openplanner.team/stops/H4hs135a"], ["https://tec.openplanner.team/stops/X754aub", "https://tec.openplanner.team/stops/X779ada"], ["https://tec.openplanner.team/stops/LMoelno1", "https://tec.openplanner.team/stops/LMovich1"], ["https://tec.openplanner.team/stops/H2bh120b", "https://tec.openplanner.team/stops/H2mg142a"], ["https://tec.openplanner.team/stops/X614aeb", "https://tec.openplanner.team/stops/X614aga"], ["https://tec.openplanner.team/stops/N508adb", "https://tec.openplanner.team/stops/N508aeb"], ["https://tec.openplanner.team/stops/H2go115b", "https://tec.openplanner.team/stops/H2go118a"], ["https://tec.openplanner.team/stops/LAtaube1", "https://tec.openplanner.team/stops/LOcchat1"], ["https://tec.openplanner.team/stops/X989aga", "https://tec.openplanner.team/stops/X989agb"], ["https://tec.openplanner.team/stops/N217acd", "https://tec.openplanner.team/stops/N337aea"], ["https://tec.openplanner.team/stops/X364acb", "https://tec.openplanner.team/stops/X371aaa"], ["https://tec.openplanner.team/stops/N115acb", "https://tec.openplanner.team/stops/N155aib"], ["https://tec.openplanner.team/stops/X390alb", "https://tec.openplanner.team/stops/X991aea"], ["https://tec.openplanner.team/stops/X671afa", "https://tec.openplanner.team/stops/X671agb"], ["https://tec.openplanner.team/stops/X618aca", "https://tec.openplanner.team/stops/X618acb"], ["https://tec.openplanner.team/stops/Cradest1", "https://tec.openplanner.team/stops/Cradest2"], ["https://tec.openplanner.team/stops/LSIgera1", "https://tec.openplanner.team/stops/LSIters2"], ["https://tec.openplanner.team/stops/LEScarr1", "https://tec.openplanner.team/stops/LEScham1"], ["https://tec.openplanner.team/stops/X638aaa", "https://tec.openplanner.team/stops/X638aab"], ["https://tec.openplanner.team/stops/H4wr174b", "https://tec.openplanner.team/stops/H4wr175a"], ["https://tec.openplanner.team/stops/LSTec--1", "https://tec.openplanner.team/stops/LSTrema1"], ["https://tec.openplanner.team/stops/N501cpa", "https://tec.openplanner.team/stops/N501cpb"], ["https://tec.openplanner.team/stops/Bjodath1", "https://tec.openplanner.team/stops/Bjodath3"], ["https://tec.openplanner.team/stops/X938aaa", "https://tec.openplanner.team/stops/X939acb"], ["https://tec.openplanner.team/stops/N501hfb", "https://tec.openplanner.team/stops/N501mwb"], ["https://tec.openplanner.team/stops/X618aja", "https://tec.openplanner.team/stops/X618ajb"], ["https://tec.openplanner.team/stops/Cpcchau", "https://tec.openplanner.team/stops/Cpceclu2"], ["https://tec.openplanner.team/stops/NL76aqb", "https://tec.openplanner.team/stops/NL80ava"], ["https://tec.openplanner.team/stops/N360aab", "https://tec.openplanner.team/stops/N368ada"], ["https://tec.openplanner.team/stops/LSJ38--1", "https://tec.openplanner.team/stops/LSJeg--2"], ["https://tec.openplanner.team/stops/LTHcent1", "https://tec.openplanner.team/stops/LTHcime1"], ["https://tec.openplanner.team/stops/H4by117a", "https://tec.openplanner.team/stops/H4by119a"], ["https://tec.openplanner.team/stops/Blanmde1", "https://tec.openplanner.team/stops/Bwaanwi1"], ["https://tec.openplanner.team/stops/X342aea", "https://tec.openplanner.team/stops/X342aga"], ["https://tec.openplanner.team/stops/LBJapol1", "https://tec.openplanner.team/stops/LBJlieg1"], ["https://tec.openplanner.team/stops/H4pi135a", "https://tec.openplanner.team/stops/H4pi135b"], ["https://tec.openplanner.team/stops/LlCgren1", "https://tec.openplanner.team/stops/LrAgier2"], ["https://tec.openplanner.team/stops/H2mo133a", "https://tec.openplanner.team/stops/H2mo135a"], ["https://tec.openplanner.team/stops/Bnivpeu1", "https://tec.openplanner.team/stops/Bnivzep2"], ["https://tec.openplanner.team/stops/N511alb", "https://tec.openplanner.team/stops/N511alc"], ["https://tec.openplanner.team/stops/Llgdfra1", "https://tec.openplanner.team/stops/Llgschm1"], ["https://tec.openplanner.team/stops/LFNecpr*", "https://tec.openplanner.team/stops/LFNmonu2"], ["https://tec.openplanner.team/stops/H1eo103a", "https://tec.openplanner.team/stops/H1eo108b"], ["https://tec.openplanner.team/stops/N516amb", "https://tec.openplanner.team/stops/N516apa"], ["https://tec.openplanner.team/stops/Lligare*", "https://tec.openplanner.team/stops/Lmitech2"], ["https://tec.openplanner.team/stops/Bjodtpo1", "https://tec.openplanner.team/stops/Bjodtpo2"], ["https://tec.openplanner.team/stops/Ldihote2", "https://tec.openplanner.team/stops/Ldimeun2"], ["https://tec.openplanner.team/stops/N120aab", "https://tec.openplanner.team/stops/N121ahb"], ["https://tec.openplanner.team/stops/Lgrgoff1", "https://tec.openplanner.team/stops/Lgrgoff2"], ["https://tec.openplanner.team/stops/LWEcomp2", "https://tec.openplanner.team/stops/LWEfati1"], ["https://tec.openplanner.team/stops/H4ar172a", "https://tec.openplanner.team/stops/H4ar178b"], ["https://tec.openplanner.team/stops/Bcrncce2", "https://tec.openplanner.team/stops/Bsgeqpb1"], ["https://tec.openplanner.team/stops/H1ca103a", "https://tec.openplanner.team/stops/H1ca103b"], ["https://tec.openplanner.team/stops/Cacecol2", "https://tec.openplanner.team/stops/Cacgare2"], ["https://tec.openplanner.team/stops/N214aca", "https://tec.openplanner.team/stops/N236aib"], ["https://tec.openplanner.team/stops/X761aba", "https://tec.openplanner.team/stops/X762aga"], ["https://tec.openplanner.team/stops/Bblaniv2", "https://tec.openplanner.team/stops/Bwatmgo4"], ["https://tec.openplanner.team/stops/H4te251a", "https://tec.openplanner.team/stops/H4te251b"], ["https://tec.openplanner.team/stops/Bsamc7d1", "https://tec.openplanner.team/stops/Bsammon1"], ["https://tec.openplanner.team/stops/Llgdepo5", "https://tec.openplanner.team/stops/Llgkurt1"], ["https://tec.openplanner.team/stops/Cjualed1", "https://tec.openplanner.team/stops/Cjuregi2"], ["https://tec.openplanner.team/stops/LRGgend2", "https://tec.openplanner.team/stops/LRGpt5-3"], ["https://tec.openplanner.team/stops/X601bna", "https://tec.openplanner.team/stops/X601bnb"], ["https://tec.openplanner.team/stops/N535ahb", "https://tec.openplanner.team/stops/N535amd"], ["https://tec.openplanner.team/stops/N552aca", "https://tec.openplanner.team/stops/N568adb"], ["https://tec.openplanner.team/stops/H1gh148a", "https://tec.openplanner.team/stops/H1gh365a"], ["https://tec.openplanner.team/stops/X823aab", "https://tec.openplanner.team/stops/X824aka"], ["https://tec.openplanner.team/stops/Bdoncar1", "https://tec.openplanner.team/stops/Bdoncar2"], ["https://tec.openplanner.team/stops/Ltiplat1", "https://tec.openplanner.team/stops/Ltiplat2"], ["https://tec.openplanner.team/stops/LbTathe1", "https://tec.openplanner.team/stops/LbTathe2"], ["https://tec.openplanner.team/stops/Lmlprie1", "https://tec.openplanner.team/stops/Lmlprie2"], ["https://tec.openplanner.team/stops/Bgembhe2", "https://tec.openplanner.team/stops/N576anb"], ["https://tec.openplanner.team/stops/NL80aub", "https://tec.openplanner.team/stops/NL80ava"], ["https://tec.openplanner.team/stops/X784ahb", "https://tec.openplanner.team/stops/X784aib"], ["https://tec.openplanner.team/stops/LLegern1", "https://tec.openplanner.team/stops/X548abb"], ["https://tec.openplanner.team/stops/N540aeb", "https://tec.openplanner.team/stops/N542alb"], ["https://tec.openplanner.team/stops/H2sb234a", "https://tec.openplanner.team/stops/H2sb242a"], ["https://tec.openplanner.team/stops/N548ada", "https://tec.openplanner.team/stops/N548asb"], ["https://tec.openplanner.team/stops/H1ho140b", "https://tec.openplanner.team/stops/H1wa157a"], ["https://tec.openplanner.team/stops/Cjupui01", "https://tec.openplanner.team/stops/Cjurogi1"], ["https://tec.openplanner.team/stops/LTIdjal1", "https://tec.openplanner.team/stops/LTIp%C3%A9pi1"], ["https://tec.openplanner.team/stops/LTychev2", "https://tec.openplanner.team/stops/LTyhapp4"], ["https://tec.openplanner.team/stops/X645aaa", "https://tec.openplanner.team/stops/X645aab"], ["https://tec.openplanner.team/stops/X874apb", "https://tec.openplanner.team/stops/X876aaa"], ["https://tec.openplanner.team/stops/Cbckios2", "https://tec.openplanner.team/stops/Cbctile"], ["https://tec.openplanner.team/stops/N118aua", "https://tec.openplanner.team/stops/N118axb"], ["https://tec.openplanner.team/stops/X604afc", "https://tec.openplanner.team/stops/X604afd"], ["https://tec.openplanner.team/stops/Bgnvpap1", "https://tec.openplanner.team/stops/Bgnvpos2"], ["https://tec.openplanner.team/stops/X396aba", "https://tec.openplanner.team/stops/X397aba"], ["https://tec.openplanner.team/stops/Bbeaneu4", "https://tec.openplanner.team/stops/Btlgmee2"], ["https://tec.openplanner.team/stops/LGAholl2", "https://tec.openplanner.team/stops/LGAnovi2"], ["https://tec.openplanner.team/stops/Cmldeto1", "https://tec.openplanner.team/stops/NC01afb"], ["https://tec.openplanner.team/stops/N501hna", "https://tec.openplanner.team/stops/N501jua"], ["https://tec.openplanner.team/stops/LATcham*", "https://tec.openplanner.team/stops/LVLpane2"], ["https://tec.openplanner.team/stops/Cmlaili2", "https://tec.openplanner.team/stops/Cmlange2"], ["https://tec.openplanner.team/stops/Cmycime2", "https://tec.openplanner.team/stops/Cmypost2"], ["https://tec.openplanner.team/stops/LPtrefa2", "https://tec.openplanner.team/stops/LRfcent1"], ["https://tec.openplanner.team/stops/N509aka", "https://tec.openplanner.team/stops/N509bea"], ["https://tec.openplanner.team/stops/LHhmohe1", "https://tec.openplanner.team/stops/NL68afb"], ["https://tec.openplanner.team/stops/X896adb", "https://tec.openplanner.team/stops/X995acb"], ["https://tec.openplanner.team/stops/Blasclo1", "https://tec.openplanner.team/stops/Blascsl2"], ["https://tec.openplanner.team/stops/N501bxb", "https://tec.openplanner.team/stops/N501mwa"], ["https://tec.openplanner.team/stops/Lsebico1", "https://tec.openplanner.team/stops/Lseptsa1"], ["https://tec.openplanner.team/stops/LCLgend2", "https://tec.openplanner.team/stops/LCLstat2"], ["https://tec.openplanner.team/stops/LFyec--1", "https://tec.openplanner.team/stops/LFymare3"], ["https://tec.openplanner.team/stops/Baudhan2", "https://tec.openplanner.team/stops/Baudsju1"], ["https://tec.openplanner.team/stops/H2ll189c", "https://tec.openplanner.team/stops/H2ll197a"], ["https://tec.openplanner.team/stops/N101aha", "https://tec.openplanner.team/stops/N101apb"], ["https://tec.openplanner.team/stops/X769afa", "https://tec.openplanner.team/stops/X769ahb"], ["https://tec.openplanner.team/stops/X801asa", "https://tec.openplanner.team/stops/X801coa"], ["https://tec.openplanner.team/stops/LBEcomm2", "https://tec.openplanner.team/stops/LBEnina6"], ["https://tec.openplanner.team/stops/Lflprev1", "https://tec.openplanner.team/stops/Lrovand1"], ["https://tec.openplanner.team/stops/N353afd", "https://tec.openplanner.team/stops/N357ada"], ["https://tec.openplanner.team/stops/N343acb", "https://tec.openplanner.team/stops/X343ama"], ["https://tec.openplanner.team/stops/X607aea", "https://tec.openplanner.team/stops/X607aib"], ["https://tec.openplanner.team/stops/Bvirduj2", "https://tec.openplanner.team/stops/Bvirhsa2"], ["https://tec.openplanner.team/stops/H4eh101b", "https://tec.openplanner.team/stops/H4eh102a"], ["https://tec.openplanner.team/stops/N534aua", "https://tec.openplanner.team/stops/N534auc"], ["https://tec.openplanner.team/stops/Lvtlomb4", "https://tec.openplanner.team/stops/Lvtnico1"], ["https://tec.openplanner.team/stops/LAVeg--1", "https://tec.openplanner.team/stops/LAVpequ2"], ["https://tec.openplanner.team/stops/N229aaa", "https://tec.openplanner.team/stops/N229aab"], ["https://tec.openplanner.team/stops/Bhlvgar2", "https://tec.openplanner.team/stops/Bnivfdu2"], ["https://tec.openplanner.team/stops/Cvlcen2", "https://tec.openplanner.team/stops/NH21aca"], ["https://tec.openplanner.team/stops/X615bga", "https://tec.openplanner.team/stops/X615bhb"], ["https://tec.openplanner.team/stops/H5fl102a", "https://tec.openplanner.team/stops/H5fl102b"], ["https://tec.openplanner.team/stops/N254afa", "https://tec.openplanner.team/stops/N254afb"], ["https://tec.openplanner.team/stops/H1si162b", "https://tec.openplanner.team/stops/H1si169a"], ["https://tec.openplanner.team/stops/LAmbach1", "https://tec.openplanner.team/stops/LAmvent2"], ["https://tec.openplanner.team/stops/Lrocort2", "https://tec.openplanner.team/stops/Lroeg--3"], ["https://tec.openplanner.team/stops/Clrrhau2", "https://tec.openplanner.team/stops/CMpetr1"], ["https://tec.openplanner.team/stops/N103aha", "https://tec.openplanner.team/stops/N103aia"], ["https://tec.openplanner.team/stops/X618aja", "https://tec.openplanner.team/stops/X625ada"], ["https://tec.openplanner.team/stops/Llglonh2", "https://tec.openplanner.team/stops/LlgPTAV1"], ["https://tec.openplanner.team/stops/Bnivga12", "https://tec.openplanner.team/stops/Bnivga41"], ["https://tec.openplanner.team/stops/X880aca", "https://tec.openplanner.team/stops/X880adb"], ["https://tec.openplanner.team/stops/H2re168a", "https://tec.openplanner.team/stops/H2re168b"], ["https://tec.openplanner.team/stops/LSOtrou1", "https://tec.openplanner.team/stops/LSOtrou2"], ["https://tec.openplanner.team/stops/X746aia", "https://tec.openplanner.team/stops/X746aib"], ["https://tec.openplanner.team/stops/Cbflong1", "https://tec.openplanner.team/stops/NC02aab"], ["https://tec.openplanner.team/stops/N123aaa", "https://tec.openplanner.team/stops/N150aca"], ["https://tec.openplanner.team/stops/X659aaa", "https://tec.openplanner.team/stops/X659axb"], ["https://tec.openplanner.team/stops/LMheg--1", "https://tec.openplanner.team/stops/LMhvina2"], ["https://tec.openplanner.team/stops/H2ll190b", "https://tec.openplanner.team/stops/H2ll257d"], ["https://tec.openplanner.team/stops/LBJapol1", "https://tec.openplanner.team/stops/LBJplan2"], ["https://tec.openplanner.team/stops/LCHfond2", "https://tec.openplanner.team/stops/Lprmerc*"], ["https://tec.openplanner.team/stops/H4ka179a", "https://tec.openplanner.team/stops/H4ka179b"], ["https://tec.openplanner.team/stops/Blemmar2", "https://tec.openplanner.team/stops/Blemwob2"], ["https://tec.openplanner.team/stops/Lvcchev2", "https://tec.openplanner.team/stops/Lvcsapi1"], ["https://tec.openplanner.team/stops/N542aac", "https://tec.openplanner.team/stops/N542aqa"], ["https://tec.openplanner.team/stops/Cflchel3", "https://tec.openplanner.team/stops/Cflecep2"], ["https://tec.openplanner.team/stops/LENarde1", "https://tec.openplanner.team/stops/LENecol2"], ["https://tec.openplanner.team/stops/X669afa", "https://tec.openplanner.team/stops/X669afb"], ["https://tec.openplanner.team/stops/Llgcouv1", "https://tec.openplanner.team/stops/Llgcouv2"], ["https://tec.openplanner.team/stops/Brsrpar2", "https://tec.openplanner.team/stops/Brsrrcu1"], ["https://tec.openplanner.team/stops/Cthegli1", "https://tec.openplanner.team/stops/Cthegli2"], ["https://tec.openplanner.team/stops/X661aaa", "https://tec.openplanner.team/stops/X661aba"], ["https://tec.openplanner.team/stops/H4he105a", "https://tec.openplanner.team/stops/H4pq118a"], ["https://tec.openplanner.team/stops/X826abb", "https://tec.openplanner.team/stops/X826aha"], ["https://tec.openplanner.team/stops/LMAgb--1", "https://tec.openplanner.team/stops/LMArave2"], ["https://tec.openplanner.team/stops/Bnivbpe2", "https://tec.openplanner.team/stops/Bptrvil1"], ["https://tec.openplanner.team/stops/N254aea", "https://tec.openplanner.team/stops/N254afa"], ["https://tec.openplanner.team/stops/Bcercsa1", "https://tec.openplanner.team/stops/Bcsegal2"], ["https://tec.openplanner.team/stops/Ccosart1", "https://tec.openplanner.team/stops/Crocpai2"], ["https://tec.openplanner.team/stops/H2sb224b", "https://tec.openplanner.team/stops/H3th134a"], ["https://tec.openplanner.team/stops/Llgdelb2", "https://tec.openplanner.team/stops/Llgnati1"], ["https://tec.openplanner.team/stops/LSOgott1", "https://tec.openplanner.team/stops/LSOgott2"], ["https://tec.openplanner.team/stops/Canecbr1", "https://tec.openplanner.team/stops/Canecbr2"], ["https://tec.openplanner.team/stops/X992ada", "https://tec.openplanner.team/stops/X992adb"], ["https://tec.openplanner.team/stops/N508aoa", "https://tec.openplanner.team/stops/N513bib"], ["https://tec.openplanner.team/stops/H2ll195a", "https://tec.openplanner.team/stops/H2sv218b"], ["https://tec.openplanner.team/stops/X982bga", "https://tec.openplanner.team/stops/X982bka"], ["https://tec.openplanner.team/stops/LvAschw1", "https://tec.openplanner.team/stops/LvAschw2"], ["https://tec.openplanner.team/stops/LARauto3", "https://tec.openplanner.team/stops/LARgare3"], ["https://tec.openplanner.team/stops/LGMstin1", "https://tec.openplanner.team/stops/LLUlieg2"], ["https://tec.openplanner.team/stops/Lcavign1", "https://tec.openplanner.team/stops/Lvchenn2"], ["https://tec.openplanner.team/stops/Lghgoll2", "https://tec.openplanner.team/stops/Lghprea2"], ["https://tec.openplanner.team/stops/Lendonh2", "https://tec.openplanner.team/stops/Lenhouc1"], ["https://tec.openplanner.team/stops/Bsauvmo1", "https://tec.openplanner.team/stops/N541aea"], ["https://tec.openplanner.team/stops/X224ada", "https://tec.openplanner.team/stops/X224ahb"], ["https://tec.openplanner.team/stops/Bwatric2", "https://tec.openplanner.team/stops/Bwatzod1"], ["https://tec.openplanner.team/stops/H4ga148d", "https://tec.openplanner.team/stops/H4ga171a"], ["https://tec.openplanner.team/stops/N149ahc", "https://tec.openplanner.team/stops/N154aca"], ["https://tec.openplanner.team/stops/NR21aaa", "https://tec.openplanner.team/stops/NR21aea"], ["https://tec.openplanner.team/stops/X831aaa", "https://tec.openplanner.team/stops/X831adb"], ["https://tec.openplanner.team/stops/X907ada", "https://tec.openplanner.team/stops/X907aeb"], ["https://tec.openplanner.team/stops/NL77aib", "https://tec.openplanner.team/stops/NL77aja"], ["https://tec.openplanner.team/stops/LhOholz2", "https://tec.openplanner.team/stops/LhUkape1"], ["https://tec.openplanner.team/stops/LeMdorf1", "https://tec.openplanner.team/stops/LeMdorf2"], ["https://tec.openplanner.team/stops/X837aaa", "https://tec.openplanner.team/stops/X839agb"], ["https://tec.openplanner.team/stops/X601dfa", "https://tec.openplanner.team/stops/X623aaa"], ["https://tec.openplanner.team/stops/Blmldmi1", "https://tec.openplanner.team/stops/Bottbou2"], ["https://tec.openplanner.team/stops/X730aaa", "https://tec.openplanner.team/stops/X736afa"], ["https://tec.openplanner.team/stops/Cfoermi2", "https://tec.openplanner.team/stops/Cfomays1"], ["https://tec.openplanner.team/stops/LLUgend1", "https://tec.openplanner.team/stops/LLUgend2"], ["https://tec.openplanner.team/stops/X730afb", "https://tec.openplanner.team/stops/X730agb"], ["https://tec.openplanner.team/stops/LESamos1", "https://tec.openplanner.team/stops/LEScham1"], ["https://tec.openplanner.team/stops/H4pq114b", "https://tec.openplanner.team/stops/H4pq120a"], ["https://tec.openplanner.team/stops/H4ty302b", "https://tec.openplanner.team/stops/H4ty330b"], ["https://tec.openplanner.team/stops/LSPcomm2", "https://tec.openplanner.team/stops/LSPpomp1"], ["https://tec.openplanner.team/stops/X601acb", "https://tec.openplanner.team/stops/X601aqa"], ["https://tec.openplanner.team/stops/H1an100b", "https://tec.openplanner.team/stops/H1on128d"], ["https://tec.openplanner.team/stops/Bgzdast2", "https://tec.openplanner.team/stops/Bgzdpos3"], ["https://tec.openplanner.team/stops/Ladpire1", "https://tec.openplanner.team/stops/Ladpire3"], ["https://tec.openplanner.team/stops/N542agb", "https://tec.openplanner.team/stops/N542ara"], ["https://tec.openplanner.team/stops/Brixeur5", "https://tec.openplanner.team/stops/Brixpla1"], ["https://tec.openplanner.team/stops/X840aba", "https://tec.openplanner.team/stops/X840abb"], ["https://tec.openplanner.team/stops/H4mo145a", "https://tec.openplanner.team/stops/H4mo165a"], ["https://tec.openplanner.team/stops/NL75adb", "https://tec.openplanner.team/stops/NR30aba"], ["https://tec.openplanner.team/stops/LWabela2", "https://tec.openplanner.team/stops/LWacime4"], ["https://tec.openplanner.team/stops/N214ajb", "https://tec.openplanner.team/stops/N236abb"], ["https://tec.openplanner.team/stops/Bsdapir1", "https://tec.openplanner.team/stops/Csdpira1"], ["https://tec.openplanner.team/stops/N562aoa", "https://tec.openplanner.team/stops/N562aob"], ["https://tec.openplanner.team/stops/N540aba", "https://tec.openplanner.team/stops/N540aea"], ["https://tec.openplanner.team/stops/LTPbeau2", "https://tec.openplanner.team/stops/LTPpreh2"], ["https://tec.openplanner.team/stops/H5st162b", "https://tec.openplanner.team/stops/H5st168a"], ["https://tec.openplanner.team/stops/H1ca104b", "https://tec.openplanner.team/stops/H1ca109b"], ["https://tec.openplanner.team/stops/H5rx149a", "https://tec.openplanner.team/stops/H5rx150a"], ["https://tec.openplanner.team/stops/X660aia", "https://tec.openplanner.team/stops/X660aib"], ["https://tec.openplanner.team/stops/X390alb", "https://tec.openplanner.team/stops/X390anb"], ["https://tec.openplanner.team/stops/X805ajb", "https://tec.openplanner.team/stops/X831aab"], ["https://tec.openplanner.team/stops/Bottgar6", "https://tec.openplanner.team/stops/Bottgar8"], ["https://tec.openplanner.team/stops/X986aeb", "https://tec.openplanner.team/stops/X986agb"], ["https://tec.openplanner.team/stops/H1sy138b", "https://tec.openplanner.team/stops/H1sy144d"], ["https://tec.openplanner.team/stops/X879ana", "https://tec.openplanner.team/stops/X879aqa"], ["https://tec.openplanner.team/stops/X818aha", "https://tec.openplanner.team/stops/X818aja"], ["https://tec.openplanner.team/stops/Bwatlbr2", "https://tec.openplanner.team/stops/Bwatle32"], ["https://tec.openplanner.team/stops/H1ba119c", "https://tec.openplanner.team/stops/H1ba119d"], ["https://tec.openplanner.team/stops/LNCdoma2", "https://tec.openplanner.team/stops/LNCdoma4"], ["https://tec.openplanner.team/stops/N584abb", "https://tec.openplanner.team/stops/N584cac"], ["https://tec.openplanner.team/stops/X941afa", "https://tec.openplanner.team/stops/X941afb"], ["https://tec.openplanner.team/stops/N101aab", "https://tec.openplanner.team/stops/N147aba"], ["https://tec.openplanner.team/stops/Bitrnus2", "https://tec.openplanner.team/stops/Bitrpri2"], ["https://tec.openplanner.team/stops/N343acb", "https://tec.openplanner.team/stops/N343ada"], ["https://tec.openplanner.team/stops/LhSgete1", "https://tec.openplanner.team/stops/LhSkirc1"], ["https://tec.openplanner.team/stops/Lsesabl1", "https://tec.openplanner.team/stops/Lsevill2"], ["https://tec.openplanner.team/stops/LLSba6-2", "https://tec.openplanner.team/stops/LTOplac1"], ["https://tec.openplanner.team/stops/LNIdoma1", "https://tec.openplanner.team/stops/LSPmari1"], ["https://tec.openplanner.team/stops/N501jsa", "https://tec.openplanner.team/stops/N501jsb"], ["https://tec.openplanner.team/stops/Bblafra2", "https://tec.openplanner.team/stops/Bblapet1"], ["https://tec.openplanner.team/stops/X879aeb", "https://tec.openplanner.team/stops/X879apb"], ["https://tec.openplanner.team/stops/LAMdelh*", "https://tec.openplanner.team/stops/LAMdelh3"], ["https://tec.openplanner.team/stops/X757alb", "https://tec.openplanner.team/stops/X758aha"], ["https://tec.openplanner.team/stops/H4mx116a", "https://tec.openplanner.team/stops/H4mx116b"], ["https://tec.openplanner.team/stops/LSXvill1", "https://tec.openplanner.team/stops/LSXvill2"], ["https://tec.openplanner.team/stops/NL81aeb", "https://tec.openplanner.team/stops/NL81ahb"], ["https://tec.openplanner.team/stops/Cnachcu1", "https://tec.openplanner.team/stops/Cnachcu2"], ["https://tec.openplanner.team/stops/Cgycorv1", "https://tec.openplanner.team/stops/Cgyplst2"], ["https://tec.openplanner.team/stops/Barcsta2", "https://tec.openplanner.team/stops/Bpecvme2"], ["https://tec.openplanner.team/stops/X739aca", "https://tec.openplanner.team/stops/X739alb"], ["https://tec.openplanner.team/stops/X902atb", "https://tec.openplanner.team/stops/X902bbb"], ["https://tec.openplanner.team/stops/Bclgeco2", "https://tec.openplanner.team/stops/Bclgegl2"], ["https://tec.openplanner.team/stops/LWahetr2", "https://tec.openplanner.team/stops/LWalibo2"], ["https://tec.openplanner.team/stops/Llgcham4", "https://tec.openplanner.team/stops/Llgmulh1"], ["https://tec.openplanner.team/stops/X512aia", "https://tec.openplanner.team/stops/X595aab"], ["https://tec.openplanner.team/stops/H1ms294c", "https://tec.openplanner.team/stops/H1ms308b"], ["https://tec.openplanner.team/stops/X754acb", "https://tec.openplanner.team/stops/X754aqa"], ["https://tec.openplanner.team/stops/Cprvsar1", "https://tec.openplanner.team/stops/NC11arb"], ["https://tec.openplanner.team/stops/H4bn101b", "https://tec.openplanner.team/stops/H4ws158a"], ["https://tec.openplanner.team/stops/X790aca", "https://tec.openplanner.team/stops/X790ada"], ["https://tec.openplanner.team/stops/N501bza", "https://tec.openplanner.team/stops/N501bzb"], ["https://tec.openplanner.team/stops/H1gy112a", "https://tec.openplanner.team/stops/H1gy112b"], ["https://tec.openplanner.team/stops/LHrbast1", "https://tec.openplanner.team/stops/X512aib"], ["https://tec.openplanner.team/stops/LElgerd5", "https://tec.openplanner.team/stops/LElgerd6"], ["https://tec.openplanner.team/stops/X773acb", "https://tec.openplanner.team/stops/X773afa"], ["https://tec.openplanner.team/stops/X754axa", "https://tec.openplanner.team/stops/X754axb"], ["https://tec.openplanner.team/stops/Cfrcoqu3", "https://tec.openplanner.team/stops/Cfrcoqu4"], ["https://tec.openplanner.team/stops/H4co149a", "https://tec.openplanner.team/stops/H4co149b"], ["https://tec.openplanner.team/stops/Cgocalv3", "https://tec.openplanner.team/stops/Cgocalv4"], ["https://tec.openplanner.team/stops/Cfrcoop4", "https://tec.openplanner.team/stops/Cfrtry2"], ["https://tec.openplanner.team/stops/X661ara", "https://tec.openplanner.team/stops/X661ata"], ["https://tec.openplanner.team/stops/X657ada", "https://tec.openplanner.team/stops/X657ala"], ["https://tec.openplanner.team/stops/H3bi112b", "https://tec.openplanner.team/stops/H3bi118b"], ["https://tec.openplanner.team/stops/N547aab", "https://tec.openplanner.team/stops/N547aba"], ["https://tec.openplanner.team/stops/LCeterm1", "https://tec.openplanner.team/stops/LCeterm2"], ["https://tec.openplanner.team/stops/X989abb", "https://tec.openplanner.team/stops/X994adb"], ["https://tec.openplanner.team/stops/Louazot1", "https://tec.openplanner.team/stops/Loureno1"], ["https://tec.openplanner.team/stops/LAVpequ1", "https://tec.openplanner.team/stops/LBRbriv1"], ["https://tec.openplanner.team/stops/N235aba", "https://tec.openplanner.team/stops/N235ahb"], ["https://tec.openplanner.team/stops/Ladverv2", "https://tec.openplanner.team/stops/Ldipiss1"], ["https://tec.openplanner.team/stops/LHaeg--1", "https://tec.openplanner.team/stops/LHanest1"], ["https://tec.openplanner.team/stops/X937aga", "https://tec.openplanner.team/stops/X937akb"], ["https://tec.openplanner.team/stops/H1bn113a", "https://tec.openplanner.team/stops/H1qy131a"], ["https://tec.openplanner.team/stops/LFTec--1", "https://tec.openplanner.team/stops/LSygerm1"], ["https://tec.openplanner.team/stops/LXhhaka1", "https://tec.openplanner.team/stops/LXhjupr3"], ["https://tec.openplanner.team/stops/LXoeg--3", "https://tec.openplanner.team/stops/LXopier1"], ["https://tec.openplanner.team/stops/LHCmonu3", "https://tec.openplanner.team/stops/LHCmonu4"], ["https://tec.openplanner.team/stops/Bbalvil1", "https://tec.openplanner.team/stops/N530aga"], ["https://tec.openplanner.team/stops/N501zba", "https://tec.openplanner.team/stops/N501zea"], ["https://tec.openplanner.team/stops/Brsgfbl1", "https://tec.openplanner.team/stops/Brsgfbl2"], ["https://tec.openplanner.team/stops/Bgzddfh2", "https://tec.openplanner.team/stops/Bgzdegl3"], ["https://tec.openplanner.team/stops/Ccoha602", "https://tec.openplanner.team/stops/Cgpchgo1"], ["https://tec.openplanner.team/stops/LrAgier2", "https://tec.openplanner.team/stops/LrAputz2"], ["https://tec.openplanner.team/stops/N302aab", "https://tec.openplanner.team/stops/N302aea"], ["https://tec.openplanner.team/stops/Bbstasa1", "https://tec.openplanner.team/stops/Bbstcha1"], ["https://tec.openplanner.team/stops/X718aea", "https://tec.openplanner.team/stops/X718aib"], ["https://tec.openplanner.team/stops/H4do108a", "https://tec.openplanner.team/stops/H4eh100a"], ["https://tec.openplanner.team/stops/X601cba", "https://tec.openplanner.team/stops/X601cbb"], ["https://tec.openplanner.team/stops/H2hg147b", "https://tec.openplanner.team/stops/H2hg157c"], ["https://tec.openplanner.team/stops/N543bbc", "https://tec.openplanner.team/stops/N554afa"], ["https://tec.openplanner.team/stops/Braccen1", "https://tec.openplanner.team/stops/Bracrpe1"], ["https://tec.openplanner.team/stops/LBNauto1", "https://tec.openplanner.team/stops/LWElanc1"], ["https://tec.openplanner.team/stops/LRIhous1", "https://tec.openplanner.team/stops/LVIpneu1"], ["https://tec.openplanner.team/stops/LCPecli2", "https://tec.openplanner.team/stops/LMttrou1"], ["https://tec.openplanner.team/stops/LSBdelc2", "https://tec.openplanner.team/stops/LSGcolo2"], ["https://tec.openplanner.team/stops/Brsreco2", "https://tec.openplanner.team/stops/Brsregl2"], ["https://tec.openplanner.team/stops/LESflag1", "https://tec.openplanner.team/stops/LESfont2"], ["https://tec.openplanner.team/stops/Bmrllgr2", "https://tec.openplanner.team/stops/Bpiehte1"], ["https://tec.openplanner.team/stops/Brebblo2", "https://tec.openplanner.team/stops/Brebras1"], ["https://tec.openplanner.team/stops/X347aja", "https://tec.openplanner.team/stops/X890aeb"], ["https://tec.openplanner.team/stops/N535alb", "https://tec.openplanner.team/stops/N538aza"], ["https://tec.openplanner.team/stops/LkRrauw2", "https://tec.openplanner.team/stops/LwR129-1"], ["https://tec.openplanner.team/stops/N150akb", "https://tec.openplanner.team/stops/N165acb"], ["https://tec.openplanner.team/stops/H1ms254b", "https://tec.openplanner.team/stops/H1ms260b"], ["https://tec.openplanner.team/stops/N232bja", "https://tec.openplanner.team/stops/N261adb"], ["https://tec.openplanner.team/stops/Bbghsar1", "https://tec.openplanner.team/stops/Bbghsar2"], ["https://tec.openplanner.team/stops/LmDkoel1", "https://tec.openplanner.team/stops/LmDwei31"], ["https://tec.openplanner.team/stops/Bboutry1", "https://tec.openplanner.team/stops/Bbstchn2"], ["https://tec.openplanner.team/stops/Llgbrab2", "https://tec.openplanner.team/stops/Llghoub2"], ["https://tec.openplanner.team/stops/Brsgleq2", "https://tec.openplanner.team/stops/Buccpes2"], ["https://tec.openplanner.team/stops/N501jba", "https://tec.openplanner.team/stops/N999aab"], ["https://tec.openplanner.team/stops/N581aab", "https://tec.openplanner.team/stops/NL74ahd"], ["https://tec.openplanner.team/stops/LSGeg--4", "https://tec.openplanner.team/stops/LYechpl1"], ["https://tec.openplanner.team/stops/N539acb", "https://tec.openplanner.team/stops/N539ajb"], ["https://tec.openplanner.team/stops/NL74aca", "https://tec.openplanner.team/stops/NL74aea"], ["https://tec.openplanner.team/stops/LBkbamb1", "https://tec.openplanner.team/stops/LkEl3252"], ["https://tec.openplanner.team/stops/Chpatel1", "https://tec.openplanner.team/stops/Chpfoli5"], ["https://tec.openplanner.team/stops/Bjodrrg1", "https://tec.openplanner.team/stops/Bjodrrg2"], ["https://tec.openplanner.team/stops/NL76aha", "https://tec.openplanner.team/stops/NL76ahb"], ["https://tec.openplanner.team/stops/X659aea", "https://tec.openplanner.team/stops/X659afb"], ["https://tec.openplanner.team/stops/Lticoq-1", "https://tec.openplanner.team/stops/Ltiplat2"], ["https://tec.openplanner.team/stops/Cmonvci1", "https://tec.openplanner.team/stops/Cmoprov1"], ["https://tec.openplanner.team/stops/H1au113a", "https://tec.openplanner.team/stops/H1au113b"], ["https://tec.openplanner.team/stops/H4hn113b", "https://tec.openplanner.team/stops/H4hn114a"], ["https://tec.openplanner.team/stops/Cjufauv2", "https://tec.openplanner.team/stops/Cjuheig4"], ["https://tec.openplanner.team/stops/LAmarbo1", "https://tec.openplanner.team/stops/LAmcorn1"], ["https://tec.openplanner.team/stops/N501cxb", "https://tec.openplanner.team/stops/N528aia"], ["https://tec.openplanner.team/stops/Bnetrbr2", "https://tec.openplanner.team/stops/Bnettir1"], ["https://tec.openplanner.team/stops/N513atb", "https://tec.openplanner.team/stops/N520ahb"], ["https://tec.openplanner.team/stops/H1ca100a", "https://tec.openplanner.team/stops/H1sd342a"], ["https://tec.openplanner.team/stops/H1cu123a", "https://tec.openplanner.team/stops/H1cu129a"], ["https://tec.openplanner.team/stops/LhOokat2", "https://tec.openplanner.team/stops/LhZkape2"], ["https://tec.openplanner.team/stops/X808aab", "https://tec.openplanner.team/stops/X808ama"], ["https://tec.openplanner.team/stops/H4oe147a", "https://tec.openplanner.team/stops/H4oe147b"], ["https://tec.openplanner.team/stops/N118aya", "https://tec.openplanner.team/stops/N155aka"], ["https://tec.openplanner.team/stops/N337aeb", "https://tec.openplanner.team/stops/N385ada"], ["https://tec.openplanner.team/stops/X919aab", "https://tec.openplanner.team/stops/X921adb"], ["https://tec.openplanner.team/stops/H4hq130a", "https://tec.openplanner.team/stops/H4hq130b"], ["https://tec.openplanner.team/stops/X878aba", "https://tec.openplanner.team/stops/X878abb"], ["https://tec.openplanner.team/stops/H4be145b", "https://tec.openplanner.team/stops/H5bl124a"], ["https://tec.openplanner.team/stops/N331adb", "https://tec.openplanner.team/stops/N331afd"], ["https://tec.openplanner.team/stops/Bgnppra1", "https://tec.openplanner.team/stops/Bwaypon1"], ["https://tec.openplanner.team/stops/N562akb", "https://tec.openplanner.team/stops/N562ama"], ["https://tec.openplanner.team/stops/H4fl114b", "https://tec.openplanner.team/stops/H4fl179b"], ["https://tec.openplanner.team/stops/Bcrnrpc2", "https://tec.openplanner.team/stops/Bcrntru2"], ["https://tec.openplanner.team/stops/N528aka", "https://tec.openplanner.team/stops/N528akb"], ["https://tec.openplanner.team/stops/H1hr118c", "https://tec.openplanner.team/stops/H1hr122a"], ["https://tec.openplanner.team/stops/Llgcorn2", "https://tec.openplanner.team/stops/Llgnyst2"], ["https://tec.openplanner.team/stops/N509aoa", "https://tec.openplanner.team/stops/N512ama"], ["https://tec.openplanner.team/stops/H4be107b", "https://tec.openplanner.team/stops/H4be145a"], ["https://tec.openplanner.team/stops/H4ga162a", "https://tec.openplanner.team/stops/H4ga165a"], ["https://tec.openplanner.team/stops/Bwatfia2", "https://tec.openplanner.team/stops/Bwattri1"], ["https://tec.openplanner.team/stops/N573aba", "https://tec.openplanner.team/stops/N573aca"], ["https://tec.openplanner.team/stops/LBAtign1", "https://tec.openplanner.team/stops/LSAchef1"], ["https://tec.openplanner.team/stops/LnUcamp2", "https://tec.openplanner.team/stops/LoDscha2"], ["https://tec.openplanner.team/stops/H4oe147b", "https://tec.openplanner.team/stops/H4oe151b"], ["https://tec.openplanner.team/stops/Bbxlmid4", "https://tec.openplanner.team/stops/Bspkbeu2"], ["https://tec.openplanner.team/stops/Bgdhbvu2", "https://tec.openplanner.team/stops/Bhantui2"], ["https://tec.openplanner.team/stops/N501dsa", "https://tec.openplanner.team/stops/N501dza"], ["https://tec.openplanner.team/stops/LCx728-1", "https://tec.openplanner.team/stops/LCxcham1"], ["https://tec.openplanner.team/stops/LDpzol-2", "https://tec.openplanner.team/stops/LFMrijk2"], ["https://tec.openplanner.team/stops/N501hpa", "https://tec.openplanner.team/stops/N501ima"], ["https://tec.openplanner.team/stops/N387aca", "https://tec.openplanner.team/stops/N387aha"], ["https://tec.openplanner.team/stops/Bwateco1", "https://tec.openplanner.team/stops/Bwatpai1"], ["https://tec.openplanner.team/stops/Bhevhha2", "https://tec.openplanner.team/stops/Bleugar1"], ["https://tec.openplanner.team/stops/LBItnt-*", "https://tec.openplanner.team/stops/Lmlrosa2"], ["https://tec.openplanner.team/stops/Cmehame2", "https://tec.openplanner.team/stops/Cmeloti2"], ["https://tec.openplanner.team/stops/Cflsncb2", "https://tec.openplanner.team/stops/Cflstan1"], ["https://tec.openplanner.team/stops/N211aga", "https://tec.openplanner.team/stops/N212aeb"], ["https://tec.openplanner.team/stops/Bmsgbay1", "https://tec.openplanner.team/stops/Bmsgmon1"], ["https://tec.openplanner.team/stops/Cmmplac1", "https://tec.openplanner.team/stops/Cmmplac3"], ["https://tec.openplanner.team/stops/H1bb118b", "https://tec.openplanner.team/stops/H1bo107b"], ["https://tec.openplanner.team/stops/H4bq100c", "https://tec.openplanner.team/stops/H4og211a"], ["https://tec.openplanner.team/stops/Ljekess1", "https://tec.openplanner.team/stops/Ljelexh2"], ["https://tec.openplanner.team/stops/H1gr112a", "https://tec.openplanner.team/stops/H1gr123a"], ["https://tec.openplanner.team/stops/X760aaa", "https://tec.openplanner.team/stops/X786ajb"], ["https://tec.openplanner.team/stops/H4ga147b", "https://tec.openplanner.team/stops/H4ga161a"], ["https://tec.openplanner.team/stops/Llghenr1", "https://tec.openplanner.team/stops/Llgrain1"], ["https://tec.openplanner.team/stops/NH01aja", "https://tec.openplanner.team/stops/NH01ana"], ["https://tec.openplanner.team/stops/H1so135c", "https://tec.openplanner.team/stops/H1so146b"], ["https://tec.openplanner.team/stops/LCOeg--2", "https://tec.openplanner.team/stops/Lpebier2"], ["https://tec.openplanner.team/stops/X825ada", "https://tec.openplanner.team/stops/X826afa"], ["https://tec.openplanner.team/stops/H4lz121a", "https://tec.openplanner.team/stops/H4lz123a"], ["https://tec.openplanner.team/stops/Cmazone1", "https://tec.openplanner.team/stops/Cmazone2"], ["https://tec.openplanner.team/stops/X811apa", "https://tec.openplanner.team/stops/X811aqa"], ["https://tec.openplanner.team/stops/N509aob", "https://tec.openplanner.team/stops/N509ara"], ["https://tec.openplanner.team/stops/H4ty335a", "https://tec.openplanner.team/stops/H4ty384b"], ["https://tec.openplanner.team/stops/Cbecarr2", "https://tec.openplanner.team/stops/N161afa"], ["https://tec.openplanner.team/stops/LNClila2", "https://tec.openplanner.team/stops/LNCspor1"], ["https://tec.openplanner.team/stops/N501atb", "https://tec.openplanner.team/stops/N501baa"], ["https://tec.openplanner.team/stops/Blhueca2", "https://tec.openplanner.team/stops/Blhuone1"], ["https://tec.openplanner.team/stops/H4an105a", "https://tec.openplanner.team/stops/H4rs117b"], ["https://tec.openplanner.team/stops/LWNwavr1", "https://tec.openplanner.team/stops/LWNwavr3"], ["https://tec.openplanner.team/stops/NL80aaa", "https://tec.openplanner.team/stops/NL80aba"], ["https://tec.openplanner.team/stops/Bettcha1", "https://tec.openplanner.team/stops/Bettgar1"], ["https://tec.openplanner.team/stops/LrEborn2", "https://tec.openplanner.team/stops/LrEkais2"], ["https://tec.openplanner.team/stops/N517aea", "https://tec.openplanner.team/stops/N517aeb"], ["https://tec.openplanner.team/stops/H4ar107b", "https://tec.openplanner.team/stops/H4ar177b"], ["https://tec.openplanner.team/stops/H4tp146a", "https://tec.openplanner.team/stops/H4tp147b"], ["https://tec.openplanner.team/stops/H4fg116b", "https://tec.openplanner.team/stops/H4wn123b"], ["https://tec.openplanner.team/stops/H2lh128b", "https://tec.openplanner.team/stops/H2mm140a"], ["https://tec.openplanner.team/stops/N145aea", "https://tec.openplanner.team/stops/N153aeb"], ["https://tec.openplanner.team/stops/LBahaut2", "https://tec.openplanner.team/stops/LBavive1"], ["https://tec.openplanner.team/stops/Cgyrjau1", "https://tec.openplanner.team/stops/Cgyrjau2"], ["https://tec.openplanner.team/stops/LCxbeau2", "https://tec.openplanner.team/stops/LCxhame2"], ["https://tec.openplanner.team/stops/LLNcruc2", "https://tec.openplanner.team/stops/LLNeg--2"], ["https://tec.openplanner.team/stops/H1ms258b", "https://tec.openplanner.team/stops/H1ms288b"], ["https://tec.openplanner.team/stops/H1ci104b", "https://tec.openplanner.team/stops/H1mv243b"], ["https://tec.openplanner.team/stops/LmDgeme1", "https://tec.openplanner.team/stops/LmDkape2"], ["https://tec.openplanner.team/stops/Lhrecol1", "https://tec.openplanner.team/stops/Lhrtunn2"], ["https://tec.openplanner.team/stops/H1et100a", "https://tec.openplanner.team/stops/H1hh116a"], ["https://tec.openplanner.team/stops/X639apa", "https://tec.openplanner.team/stops/X639asa"], ["https://tec.openplanner.team/stops/Lgdhura1", "https://tec.openplanner.team/stops/Lprtour2"], ["https://tec.openplanner.team/stops/LHNvill1", "https://tec.openplanner.team/stops/LMXempe1"], ["https://tec.openplanner.team/stops/Crspair2", "https://tec.openplanner.team/stops/Crsstem2"], ["https://tec.openplanner.team/stops/Bohnrpl2", "https://tec.openplanner.team/stops/Bwatric2"], ["https://tec.openplanner.team/stops/LFPdeme1", "https://tec.openplanner.team/stops/LFPzwaa1"], ["https://tec.openplanner.team/stops/X659aqa", "https://tec.openplanner.team/stops/X660aga"], ["https://tec.openplanner.team/stops/LBTchai1", "https://tec.openplanner.team/stops/LBTxhen4"], ["https://tec.openplanner.team/stops/Ladandr1", "https://tec.openplanner.team/stops/Ladandr2"], ["https://tec.openplanner.team/stops/N210aaa", "https://tec.openplanner.team/stops/N210aab"], ["https://tec.openplanner.team/stops/LhOholz1", "https://tec.openplanner.team/stops/LhOholz2"], ["https://tec.openplanner.team/stops/Cstcent1", "https://tec.openplanner.team/stops/Cstdona6"], ["https://tec.openplanner.team/stops/LLUtrol1", "https://tec.openplanner.team/stops/LLUvent2"], ["https://tec.openplanner.team/stops/X604alb", "https://tec.openplanner.team/stops/X604ama"], ["https://tec.openplanner.team/stops/Lsebove1", "https://tec.openplanner.team/stops/Lseecol1"], ["https://tec.openplanner.team/stops/N529aea", "https://tec.openplanner.team/stops/N576amb"], ["https://tec.openplanner.team/stops/X716afa", "https://tec.openplanner.team/stops/X716afb"], ["https://tec.openplanner.team/stops/LDmhave2", "https://tec.openplanner.team/stops/LSGcarr1"], ["https://tec.openplanner.team/stops/N501grf", "https://tec.openplanner.team/stops/N501zaa"], ["https://tec.openplanner.team/stops/Bpiehvi1", "https://tec.openplanner.team/stops/Bpielon2"], ["https://tec.openplanner.team/stops/X720ada", "https://tec.openplanner.team/stops/X720aea"], ["https://tec.openplanner.team/stops/N521abb", "https://tec.openplanner.team/stops/N521asb"], ["https://tec.openplanner.team/stops/Lgrramp1", "https://tec.openplanner.team/stops/Llgdelb1"], ["https://tec.openplanner.team/stops/LAwec--1", "https://tec.openplanner.team/stops/LMvgare1"], ["https://tec.openplanner.team/stops/LFTec--2", "https://tec.openplanner.team/stops/LFTec--3"], ["https://tec.openplanner.team/stops/Bosqpco2", "https://tec.openplanner.team/stops/Btubois2"], ["https://tec.openplanner.team/stops/Bwaakap1", "https://tec.openplanner.team/stops/Bwaanwi1"], ["https://tec.openplanner.team/stops/X901aja", "https://tec.openplanner.team/stops/X901aqb"], ["https://tec.openplanner.team/stops/X687ada", "https://tec.openplanner.team/stops/X687aea"], ["https://tec.openplanner.team/stops/N117agb", "https://tec.openplanner.team/stops/N117akb"], ["https://tec.openplanner.team/stops/Cbmind2", "https://tec.openplanner.team/stops/Cbmind3"], ["https://tec.openplanner.team/stops/NC44afc", "https://tec.openplanner.team/stops/NC44ahb"], ["https://tec.openplanner.team/stops/Ldineuf1", "https://tec.openplanner.team/stops/Ldineuf2"], ["https://tec.openplanner.team/stops/H4ta129a", "https://tec.openplanner.team/stops/H4ta129b"], ["https://tec.openplanner.team/stops/X888acb", "https://tec.openplanner.team/stops/X899ajb"], ["https://tec.openplanner.team/stops/X784afa", "https://tec.openplanner.team/stops/X784aga"], ["https://tec.openplanner.team/stops/Cgrbert1", "https://tec.openplanner.team/stops/Cnaplan2"], ["https://tec.openplanner.team/stops/Bquecro1", "https://tec.openplanner.team/stops/Bquereb2"], ["https://tec.openplanner.team/stops/X840aea", "https://tec.openplanner.team/stops/X840afa"], ["https://tec.openplanner.team/stops/X948asa", "https://tec.openplanner.team/stops/X948aua"], ["https://tec.openplanner.team/stops/X644aca", "https://tec.openplanner.team/stops/X644acb"], ["https://tec.openplanner.team/stops/Bnivari1", "https://tec.openplanner.team/stops/Bnivpgr2"], ["https://tec.openplanner.team/stops/N145ahb", "https://tec.openplanner.team/stops/N145aib"], ["https://tec.openplanner.team/stops/LAMcloc2", "https://tec.openplanner.team/stops/LAMwall1"], ["https://tec.openplanner.team/stops/H5el105b", "https://tec.openplanner.team/stops/H5el112c"], ["https://tec.openplanner.team/stops/N528aba", "https://tec.openplanner.team/stops/N528abb"], ["https://tec.openplanner.team/stops/Bgoemgr1", "https://tec.openplanner.team/stops/Bhakmkr1"], ["https://tec.openplanner.team/stops/Bsgihmo1", "https://tec.openplanner.team/stops/Bsgipha2"], ["https://tec.openplanner.team/stops/H1pa103a", "https://tec.openplanner.team/stops/H1wa151a"], ["https://tec.openplanner.team/stops/LnDrund1", "https://tec.openplanner.team/stops/LnDthel1"], ["https://tec.openplanner.team/stops/Ccychap1", "https://tec.openplanner.team/stops/Cvlcalv2"], ["https://tec.openplanner.team/stops/Csochea1", "https://tec.openplanner.team/stops/Csoforc1"], ["https://tec.openplanner.team/stops/X911anb", "https://tec.openplanner.team/stops/X912aka"], ["https://tec.openplanner.team/stops/H1bl104b", "https://tec.openplanner.team/stops/H1bl105a"], ["https://tec.openplanner.team/stops/H1ms262a", "https://tec.openplanner.team/stops/H1ms302a"], ["https://tec.openplanner.team/stops/Cobmven2", "https://tec.openplanner.team/stops/Cpcarse2"], ["https://tec.openplanner.team/stops/Llgpire2", "https://tec.openplanner.team/stops/Llgwesp1"], ["https://tec.openplanner.team/stops/Cchcase2", "https://tec.openplanner.team/stops/Cchparc4"], ["https://tec.openplanner.team/stops/X750ala", "https://tec.openplanner.team/stops/X750ava"], ["https://tec.openplanner.team/stops/H4wi168a", "https://tec.openplanner.team/stops/H4wi175a"], ["https://tec.openplanner.team/stops/N543bkb", "https://tec.openplanner.team/stops/N543cbc"], ["https://tec.openplanner.team/stops/Lmoboeu3", "https://tec.openplanner.team/stops/Lmochpl2"], ["https://tec.openplanner.team/stops/H2lc145b", "https://tec.openplanner.team/stops/H2lc168b"], ["https://tec.openplanner.team/stops/H1vt193a", "https://tec.openplanner.team/stops/H1vt194a"], ["https://tec.openplanner.team/stops/H1ms308a", "https://tec.openplanner.team/stops/H1ms308d"], ["https://tec.openplanner.team/stops/X872afb", "https://tec.openplanner.team/stops/X872agb"], ["https://tec.openplanner.team/stops/N501cfb", "https://tec.openplanner.team/stops/N501ckz"], ["https://tec.openplanner.team/stops/LHegame2", "https://tec.openplanner.team/stops/LHexhav1"], ["https://tec.openplanner.team/stops/LLTtour2", "https://tec.openplanner.team/stops/LTOplac1"], ["https://tec.openplanner.team/stops/H1be100b", "https://tec.openplanner.team/stops/H1hw118a"], ["https://tec.openplanner.team/stops/LeYloos1", "https://tec.openplanner.team/stops/LrAbe962"], ["https://tec.openplanner.team/stops/Cflglav1", "https://tec.openplanner.team/stops/Cflvxca2"], ["https://tec.openplanner.team/stops/LFUgare2", "https://tec.openplanner.team/stops/LHurobi1"], ["https://tec.openplanner.team/stops/Csbsart1", "https://tec.openplanner.team/stops/H1ls129a"], ["https://tec.openplanner.team/stops/H1hc127c", "https://tec.openplanner.team/stops/H5bl120b"], ["https://tec.openplanner.team/stops/N577aca", "https://tec.openplanner.team/stops/N577acb"], ["https://tec.openplanner.team/stops/Bgemibb1", "https://tec.openplanner.team/stops/Bgemibb2"], ["https://tec.openplanner.team/stops/N117bdd", "https://tec.openplanner.team/stops/N145acb"], ["https://tec.openplanner.team/stops/LmI36--1", "https://tec.openplanner.team/stops/LmImirf2"], ["https://tec.openplanner.team/stops/X773acb", "https://tec.openplanner.team/stops/X954acb"], ["https://tec.openplanner.team/stops/Lsccdor2", "https://tec.openplanner.team/stops/Lscferr1"], ["https://tec.openplanner.team/stops/Bcseaba1", "https://tec.openplanner.team/stops/Bcseche1"], ["https://tec.openplanner.team/stops/H1hn207b", "https://tec.openplanner.team/stops/H1mv241b"], ["https://tec.openplanner.team/stops/H1ma233c", "https://tec.openplanner.team/stops/H1mj125b"], ["https://tec.openplanner.team/stops/X630aaa", "https://tec.openplanner.team/stops/X638aab"], ["https://tec.openplanner.team/stops/H4oe149b", "https://tec.openplanner.team/stops/H4os223b"], ["https://tec.openplanner.team/stops/LHaxhig2", "https://tec.openplanner.team/stops/LHaxhor2"], ["https://tec.openplanner.team/stops/Cml5ave1", "https://tec.openplanner.team/stops/Cnachcu1"], ["https://tec.openplanner.team/stops/LWRvert1", "https://tec.openplanner.team/stops/LWRvert2"], ["https://tec.openplanner.team/stops/H4ty268a", "https://tec.openplanner.team/stops/H4ty348a"], ["https://tec.openplanner.team/stops/Lghgros2", "https://tec.openplanner.team/stops/Lghpier2"], ["https://tec.openplanner.team/stops/Crs74em1", "https://tec.openplanner.team/stops/Crsprai4"], ["https://tec.openplanner.team/stops/X652aeb", "https://tec.openplanner.team/stops/X652aga"], ["https://tec.openplanner.team/stops/X750ata", "https://tec.openplanner.team/stops/X750avb"], ["https://tec.openplanner.team/stops/Cchbrou2", "https://tec.openplanner.team/stops/Cchmamb2"], ["https://tec.openplanner.team/stops/Ljeespe1", "https://tec.openplanner.team/stops/Ljemeca1"], ["https://tec.openplanner.team/stops/N513axa", "https://tec.openplanner.team/stops/N513bfb"], ["https://tec.openplanner.team/stops/N116aad", "https://tec.openplanner.team/stops/N116abb"], ["https://tec.openplanner.team/stops/Lhrjaur1", "https://tec.openplanner.team/stops/Lhrpepi2"], ["https://tec.openplanner.team/stops/N214adb", "https://tec.openplanner.team/stops/N228aeb"], ["https://tec.openplanner.team/stops/LElgerd2", "https://tec.openplanner.team/stops/LWZponb2"], ["https://tec.openplanner.team/stops/X886abc", "https://tec.openplanner.team/stops/X886aha"], ["https://tec.openplanner.team/stops/LESchac1", "https://tec.openplanner.team/stops/LFNlato1"], ["https://tec.openplanner.team/stops/H2ch106a", "https://tec.openplanner.team/stops/H2go115b"], ["https://tec.openplanner.team/stops/Loufleu1", "https://tec.openplanner.team/stops/Lourose3"], ["https://tec.openplanner.team/stops/Clvchen2", "https://tec.openplanner.team/stops/Clvndam2"], ["https://tec.openplanner.team/stops/Bbgever1", "https://tec.openplanner.team/stops/Bwavbar2"], ["https://tec.openplanner.team/stops/N167ahb", "https://tec.openplanner.team/stops/N244aqa"], ["https://tec.openplanner.team/stops/LMOelva3", "https://tec.openplanner.team/stops/LMOf21-2"], ["https://tec.openplanner.team/stops/H1og136b", "https://tec.openplanner.team/stops/H5wo124a"], ["https://tec.openplanner.team/stops/H4ty267a", "https://tec.openplanner.team/stops/H4ty335b"], ["https://tec.openplanner.team/stops/LFebas-2", "https://tec.openplanner.team/stops/LFemoul1"], ["https://tec.openplanner.team/stops/Cgoathe1", "https://tec.openplanner.team/stops/Cgofabr2"], ["https://tec.openplanner.team/stops/N506azb", "https://tec.openplanner.team/stops/N506baa"], ["https://tec.openplanner.team/stops/N102aba", "https://tec.openplanner.team/stops/N102acb"], ["https://tec.openplanner.team/stops/LSW26--1", "https://tec.openplanner.team/stops/LSWeg--3"], ["https://tec.openplanner.team/stops/N310abb", "https://tec.openplanner.team/stops/X892agb"], ["https://tec.openplanner.team/stops/Bovetwe1", "https://tec.openplanner.team/stops/Bovetwe2"], ["https://tec.openplanner.team/stops/X713aeb", "https://tec.openplanner.team/stops/X713aga"], ["https://tec.openplanner.team/stops/LBSchpl1", "https://tec.openplanner.team/stops/LRGcana2"], ["https://tec.openplanner.team/stops/H4te255b", "https://tec.openplanner.team/stops/H4te258b"], ["https://tec.openplanner.team/stops/H4mo155a", "https://tec.openplanner.team/stops/H4tg163a"], ["https://tec.openplanner.team/stops/LdE179-2", "https://tec.openplanner.team/stops/LdEschw1"], ["https://tec.openplanner.team/stops/X398agb", "https://tec.openplanner.team/stops/X999acb"], ["https://tec.openplanner.team/stops/X940acb", "https://tec.openplanner.team/stops/X940afa"], ["https://tec.openplanner.team/stops/X774aac", "https://tec.openplanner.team/stops/X774aad"], ["https://tec.openplanner.team/stops/H1ro140b", "https://tec.openplanner.team/stops/H1ro141a"], ["https://tec.openplanner.team/stops/LMAbell2", "https://tec.openplanner.team/stops/LMAbijo1"], ["https://tec.openplanner.team/stops/Lpebeco2", "https://tec.openplanner.team/stops/Lpedeta2"], ["https://tec.openplanner.team/stops/N503aga", "https://tec.openplanner.team/stops/N503agb"], ["https://tec.openplanner.team/stops/LMIgare2", "https://tec.openplanner.team/stops/LMImc--1"], ["https://tec.openplanner.team/stops/Cgymest2", "https://tec.openplanner.team/stops/Cgyralb1"], ["https://tec.openplanner.team/stops/H1wl123a", "https://tec.openplanner.team/stops/H1wl126a"], ["https://tec.openplanner.team/stops/Bcrnpla2", "https://tec.openplanner.team/stops/Bcrnpla4"], ["https://tec.openplanner.team/stops/N579acb", "https://tec.openplanner.team/stops/N579adb"], ["https://tec.openplanner.team/stops/Cvretan2", "https://tec.openplanner.team/stops/Cvrhab21"], ["https://tec.openplanner.team/stops/H4wp150a", "https://tec.openplanner.team/stops/H4wp152b"], ["https://tec.openplanner.team/stops/Chthttr2", "https://tec.openplanner.team/stops/Cthbifu2"], ["https://tec.openplanner.team/stops/X903ada", "https://tec.openplanner.team/stops/X903afb"], ["https://tec.openplanner.team/stops/H4bn100b", "https://tec.openplanner.team/stops/H4pi135b"], ["https://tec.openplanner.team/stops/Caujonc1", "https://tec.openplanner.team/stops/Cauushm1"], ["https://tec.openplanner.team/stops/H4ga163a", "https://tec.openplanner.team/stops/H4ga163b"], ["https://tec.openplanner.team/stops/LLscent2", "https://tec.openplanner.team/stops/LRffroi1"], ["https://tec.openplanner.team/stops/X993aja", "https://tec.openplanner.team/stops/X993ajb"], ["https://tec.openplanner.team/stops/Loucorn2", "https://tec.openplanner.team/stops/Lousimo2"], ["https://tec.openplanner.team/stops/H1si152b", "https://tec.openplanner.team/stops/H1si152c"], ["https://tec.openplanner.team/stops/X662acb", "https://tec.openplanner.team/stops/X662aea"], ["https://tec.openplanner.team/stops/LFPzwaa1", "https://tec.openplanner.team/stops/LWRferm2"], ["https://tec.openplanner.team/stops/X780aea", "https://tec.openplanner.team/stops/X780aga"], ["https://tec.openplanner.team/stops/H4pl120a", "https://tec.openplanner.team/stops/H4pl132a"], ["https://tec.openplanner.team/stops/H1br130b", "https://tec.openplanner.team/stops/H2ma202a"], ["https://tec.openplanner.team/stops/H4ct111a", "https://tec.openplanner.team/stops/H5pe130b"], ["https://tec.openplanner.team/stops/X398aaa", "https://tec.openplanner.team/stops/X398aab"], ["https://tec.openplanner.team/stops/Bbchume2", "https://tec.openplanner.team/stops/Bcbqa361"], ["https://tec.openplanner.team/stops/N313aca", "https://tec.openplanner.team/stops/N313acb"], ["https://tec.openplanner.team/stops/LROchap1", "https://tec.openplanner.team/stops/LROchap2"], ["https://tec.openplanner.team/stops/X811ahb", "https://tec.openplanner.team/stops/X811aob"], ["https://tec.openplanner.team/stops/LENcroi1", "https://tec.openplanner.team/stops/LENcroi2"], ["https://tec.openplanner.team/stops/N214aga", "https://tec.openplanner.team/stops/N214aha"], ["https://tec.openplanner.team/stops/X811aca", "https://tec.openplanner.team/stops/X811akb"], ["https://tec.openplanner.team/stops/X714aaa", "https://tec.openplanner.team/stops/X714abb"], ["https://tec.openplanner.team/stops/LESmich1", "https://tec.openplanner.team/stops/LESslmo1"], ["https://tec.openplanner.team/stops/X663aqa", "https://tec.openplanner.team/stops/X663aqc"], ["https://tec.openplanner.team/stops/X769ama", "https://tec.openplanner.team/stops/X769aoa"], ["https://tec.openplanner.team/stops/LFFchab1", "https://tec.openplanner.team/stops/LFFchab2"], ["https://tec.openplanner.team/stops/Lcehipp2", "https://tec.openplanner.team/stops/Lcemalv3"], ["https://tec.openplanner.team/stops/LHUchh-2", "https://tec.openplanner.team/stops/LHUloui1"], ["https://tec.openplanner.team/stops/Ccutrav4", "https://tec.openplanner.team/stops/Ccuwil1"], ["https://tec.openplanner.team/stops/LBdmarr2", "https://tec.openplanner.team/stops/LLrc1651"], ["https://tec.openplanner.team/stops/LBveg--1", "https://tec.openplanner.team/stops/LBvviem1"], ["https://tec.openplanner.team/stops/X757ada", "https://tec.openplanner.team/stops/X757aoa"], ["https://tec.openplanner.team/stops/X896aea", "https://tec.openplanner.team/stops/X896aeb"], ["https://tec.openplanner.team/stops/X939aea", "https://tec.openplanner.team/stops/X939aeb"], ["https://tec.openplanner.team/stops/H5el100a", "https://tec.openplanner.team/stops/H5el100b"], ["https://tec.openplanner.team/stops/X641aea", "https://tec.openplanner.team/stops/X641afa"], ["https://tec.openplanner.team/stops/Lghgend2", "https://tec.openplanner.team/stops/Ljerose3"], ["https://tec.openplanner.team/stops/Brsgcfl1", "https://tec.openplanner.team/stops/Brsgcfl2"], ["https://tec.openplanner.team/stops/Bbsifml2", "https://tec.openplanner.team/stops/Bnivlpa1"], ["https://tec.openplanner.team/stops/LeUmeie1", "https://tec.openplanner.team/stops/LeUwetz2"], ["https://tec.openplanner.team/stops/LSdsa451", "https://tec.openplanner.team/stops/LSdsa452"], ["https://tec.openplanner.team/stops/X802ata", "https://tec.openplanner.team/stops/X802aua"], ["https://tec.openplanner.team/stops/X627aba", "https://tec.openplanner.team/stops/X627aca"], ["https://tec.openplanner.team/stops/Bsammon2", "https://tec.openplanner.team/stops/Bsammon4"], ["https://tec.openplanner.team/stops/Llgglai2", "https://tec.openplanner.team/stops/Llgpere1"], ["https://tec.openplanner.team/stops/X637ada", "https://tec.openplanner.team/stops/X637adb"], ["https://tec.openplanner.team/stops/Bclgapi2", "https://tec.openplanner.team/stops/Bdlmflo1"], ["https://tec.openplanner.team/stops/Bstmpla1", "https://tec.openplanner.team/stops/Bstmpla2"], ["https://tec.openplanner.team/stops/X620aea", "https://tec.openplanner.team/stops/X620aha"], ["https://tec.openplanner.team/stops/H1bi100a", "https://tec.openplanner.team/stops/H1bi104a"], ["https://tec.openplanner.team/stops/H1bb121b", "https://tec.openplanner.team/stops/H1hi124b"], ["https://tec.openplanner.team/stops/X639aea", "https://tec.openplanner.team/stops/X644acb"], ["https://tec.openplanner.team/stops/Ccucorb2", "https://tec.openplanner.team/stops/Cgycorv1"], ["https://tec.openplanner.team/stops/N533aca", "https://tec.openplanner.team/stops/N533acb"], ["https://tec.openplanner.team/stops/Cgxvkho1", "https://tec.openplanner.team/stops/Cgxvkho2"], ["https://tec.openplanner.team/stops/LBjvill2", "https://tec.openplanner.team/stops/LBjvill3"], ["https://tec.openplanner.team/stops/Lveharm1", "https://tec.openplanner.team/stops/Lveharm2"], ["https://tec.openplanner.team/stops/LBRpt--1", "https://tec.openplanner.team/stops/LBRpt--2"], ["https://tec.openplanner.team/stops/LTPec--1", "https://tec.openplanner.team/stops/LTPec--2"], ["https://tec.openplanner.team/stops/N365aaa", "https://tec.openplanner.team/stops/N365aab"], ["https://tec.openplanner.team/stops/Bcrnnpl1", "https://tec.openplanner.team/stops/Bcrnnpl2"], ["https://tec.openplanner.team/stops/Cfrcham1", "https://tec.openplanner.team/stops/Cvpplan1"], ["https://tec.openplanner.team/stops/Bndbpco1", "https://tec.openplanner.team/stops/Bndbpco2"], ["https://tec.openplanner.team/stops/Cgogb2", "https://tec.openplanner.team/stops/CMcarr2"], ["https://tec.openplanner.team/stops/N506aha", "https://tec.openplanner.team/stops/N506asb"], ["https://tec.openplanner.team/stops/LWEchat1", "https://tec.openplanner.team/stops/LWEfati2"], ["https://tec.openplanner.team/stops/N147aaa", "https://tec.openplanner.team/stops/N147aeb"], ["https://tec.openplanner.team/stops/N230aeb", "https://tec.openplanner.team/stops/N233aab"], ["https://tec.openplanner.team/stops/N506bhb", "https://tec.openplanner.team/stops/N506bla"], ["https://tec.openplanner.team/stops/LVParal2", "https://tec.openplanner.team/stops/LVPcoeu1"], ["https://tec.openplanner.team/stops/LHEelva1", "https://tec.openplanner.team/stops/LHEepur1"], ["https://tec.openplanner.team/stops/H5ar100a", "https://tec.openplanner.team/stops/H5ar103a"], ["https://tec.openplanner.team/stops/Bnivpri2", "https://tec.openplanner.team/stops/Bnivros1"], ["https://tec.openplanner.team/stops/X790aba", "https://tec.openplanner.team/stops/X790agb"], ["https://tec.openplanner.team/stops/Lmihale2", "https://tec.openplanner.team/stops/Lmimili4"], ["https://tec.openplanner.team/stops/Bgrhcro2", "https://tec.openplanner.team/stops/N519ahb"], ["https://tec.openplanner.team/stops/Lhr2ave1", "https://tec.openplanner.team/stops/Lvitomb2"], ["https://tec.openplanner.team/stops/N243ada", "https://tec.openplanner.team/stops/N243adb"], ["https://tec.openplanner.team/stops/LLrbecc1", "https://tec.openplanner.team/stops/LTHmont1"], ["https://tec.openplanner.team/stops/X901ana", "https://tec.openplanner.team/stops/X901anb"], ["https://tec.openplanner.team/stops/Csemacq2", "https://tec.openplanner.team/stops/Csemacq4"], ["https://tec.openplanner.team/stops/X994afb", "https://tec.openplanner.team/stops/X994amb"], ["https://tec.openplanner.team/stops/H4po124a", "https://tec.openplanner.team/stops/H4po126a"], ["https://tec.openplanner.team/stops/H1lb139b", "https://tec.openplanner.team/stops/H1lb152a"], ["https://tec.openplanner.team/stops/X757aab", "https://tec.openplanner.team/stops/X757aba"], ["https://tec.openplanner.team/stops/LgRhouf1", "https://tec.openplanner.team/stops/LtH28a-1"], ["https://tec.openplanner.team/stops/N502abb", "https://tec.openplanner.team/stops/N510aba"], ["https://tec.openplanner.team/stops/LClberw2", "https://tec.openplanner.team/stops/LLC170-1"], ["https://tec.openplanner.team/stops/Bmrlhan1", "https://tec.openplanner.team/stops/Bmrlhau1"], ["https://tec.openplanner.team/stops/Llojeme1", "https://tec.openplanner.team/stops/Llojeme4"], ["https://tec.openplanner.team/stops/LBiberg1", "https://tec.openplanner.team/stops/LBiroch2"], ["https://tec.openplanner.team/stops/H4pl112b", "https://tec.openplanner.team/stops/H4pl121b"], ["https://tec.openplanner.team/stops/LBBmc--2", "https://tec.openplanner.team/stops/X222azb"], ["https://tec.openplanner.team/stops/H4tp143b", "https://tec.openplanner.team/stops/H4tp147a"], ["https://tec.openplanner.team/stops/LkTdorf1", "https://tec.openplanner.team/stops/LkTtal-1"], ["https://tec.openplanner.team/stops/H4fo116a", "https://tec.openplanner.team/stops/H4fo117d"], ["https://tec.openplanner.team/stops/X940afb", "https://tec.openplanner.team/stops/X940agb"], ["https://tec.openplanner.team/stops/Lsebeau*", "https://tec.openplanner.team/stops/Lsebeau2"], ["https://tec.openplanner.team/stops/Cmygrbr3", "https://tec.openplanner.team/stops/Cmyoasi2"], ["https://tec.openplanner.team/stops/X601aeb", "https://tec.openplanner.team/stops/X601ala"], ["https://tec.openplanner.team/stops/H2na131a", "https://tec.openplanner.team/stops/H3go101a"], ["https://tec.openplanner.team/stops/Llojeme3", "https://tec.openplanner.team/stops/Lloretr2"], ["https://tec.openplanner.team/stops/N578aab", "https://tec.openplanner.team/stops/N578aba"], ["https://tec.openplanner.team/stops/Blasbpr1", "https://tec.openplanner.team/stops/Blaspch1"], ["https://tec.openplanner.team/stops/Barqpwa2", "https://tec.openplanner.team/stops/Barqres2"], ["https://tec.openplanner.team/stops/H4fl115a", "https://tec.openplanner.team/stops/H4lp119b"], ["https://tec.openplanner.team/stops/LXHeg--1", "https://tec.openplanner.team/stops/LXHfalh1"], ["https://tec.openplanner.team/stops/X908ahb", "https://tec.openplanner.team/stops/X910aab"], ["https://tec.openplanner.team/stops/N251abb", "https://tec.openplanner.team/stops/N251adb"], ["https://tec.openplanner.team/stops/X878aca", "https://tec.openplanner.team/stops/X878ada"], ["https://tec.openplanner.team/stops/N526adb", "https://tec.openplanner.team/stops/N532ada"], ["https://tec.openplanner.team/stops/N323acb", "https://tec.openplanner.team/stops/N355ada"], ["https://tec.openplanner.team/stops/Bgnpgen2", "https://tec.openplanner.team/stops/Bgnppem1"], ["https://tec.openplanner.team/stops/Cmmgadi2", "https://tec.openplanner.team/stops/Cmmmarl2"], ["https://tec.openplanner.team/stops/H1ms256a", "https://tec.openplanner.team/stops/H1ms360a"], ["https://tec.openplanner.team/stops/LSTgran2", "https://tec.openplanner.team/stops/LTPtroi2"], ["https://tec.openplanner.team/stops/X606aaa", "https://tec.openplanner.team/stops/X606abb"], ["https://tec.openplanner.team/stops/H4co142a", "https://tec.openplanner.team/stops/H4rx142a"], ["https://tec.openplanner.team/stops/Cclrgiv1", "https://tec.openplanner.team/stops/NC28agb"], ["https://tec.openplanner.team/stops/H1qy137a", "https://tec.openplanner.team/stops/H1qy137b"], ["https://tec.openplanner.team/stops/X769aca", "https://tec.openplanner.team/stops/X769aeb"], ["https://tec.openplanner.team/stops/X660aga", "https://tec.openplanner.team/stops/X672ahb"], ["https://tec.openplanner.team/stops/Lagbeno5", "https://tec.openplanner.team/stops/Lkiecol1"], ["https://tec.openplanner.team/stops/LESathe2", "https://tec.openplanner.team/stops/LESpont3"], ["https://tec.openplanner.team/stops/H2fa100a", "https://tec.openplanner.team/stops/H2fa108b"], ["https://tec.openplanner.team/stops/N120aea", "https://tec.openplanner.team/stops/N120agb"], ["https://tec.openplanner.team/stops/Cna6che2", "https://tec.openplanner.team/stops/Cnapetr2"], ["https://tec.openplanner.team/stops/X925aoa", "https://tec.openplanner.team/stops/X925aob"], ["https://tec.openplanner.team/stops/X663avb", "https://tec.openplanner.team/stops/X663axb"], ["https://tec.openplanner.team/stops/X783aab", "https://tec.openplanner.team/stops/X789aia"], ["https://tec.openplanner.team/stops/X670aab", "https://tec.openplanner.team/stops/X670acb"], ["https://tec.openplanner.team/stops/N501dta", "https://tec.openplanner.team/stops/N501dza"], ["https://tec.openplanner.team/stops/Csochea2", "https://tec.openplanner.team/stops/Csograf1"], ["https://tec.openplanner.team/stops/LaMades1", "https://tec.openplanner.team/stops/LmYeich1"], ["https://tec.openplanner.team/stops/H4lu128a", "https://tec.openplanner.team/stops/H4mo206b"], ["https://tec.openplanner.team/stops/LMheg--2", "https://tec.openplanner.team/stops/LMhvina2"], ["https://tec.openplanner.team/stops/N501mtb", "https://tec.openplanner.team/stops/N501mtc"], ["https://tec.openplanner.team/stops/N232aib", "https://tec.openplanner.team/stops/N232arb"], ["https://tec.openplanner.team/stops/H1vg358b", "https://tec.openplanner.team/stops/H1vs146a"], ["https://tec.openplanner.team/stops/N528aea", "https://tec.openplanner.team/stops/N551aaa"], ["https://tec.openplanner.team/stops/LPLec131", "https://tec.openplanner.team/stops/LPLstri2"], ["https://tec.openplanner.team/stops/LwAlont4", "https://tec.openplanner.team/stops/LwAschu1"], ["https://tec.openplanner.team/stops/LbUbisc1", "https://tec.openplanner.team/stops/LbUbisc2"], ["https://tec.openplanner.team/stops/X948ahb", "https://tec.openplanner.team/stops/X948aia"], ["https://tec.openplanner.team/stops/LhSfrep2", "https://tec.openplanner.team/stops/LkOaugu2"], ["https://tec.openplanner.team/stops/LBPboir2", "https://tec.openplanner.team/stops/LBPeg--1"], ["https://tec.openplanner.team/stops/Cgygazo1", "https://tec.openplanner.team/stops/Cgyhaie1"], ["https://tec.openplanner.team/stops/Cgynoir1", "https://tec.openplanner.team/stops/Cgyplst1"], ["https://tec.openplanner.team/stops/Llgform1", "https://tec.openplanner.team/stops/Llggill1"], ["https://tec.openplanner.team/stops/Cjucpui2", "https://tec.openplanner.team/stops/Cjumarc1"], ["https://tec.openplanner.team/stops/X952alb", "https://tec.openplanner.team/stops/X952ama"], ["https://tec.openplanner.team/stops/LlNlimb1", "https://tec.openplanner.team/stops/LlNlimb2"], ["https://tec.openplanner.team/stops/H1by107a", "https://tec.openplanner.team/stops/H1by107b"], ["https://tec.openplanner.team/stops/H4mo145b", "https://tec.openplanner.team/stops/H4mo158b"], ["https://tec.openplanner.team/stops/N536aob", "https://tec.openplanner.team/stops/N562bnb"], ["https://tec.openplanner.team/stops/H1en102a", "https://tec.openplanner.team/stops/H1en103a"], ["https://tec.openplanner.team/stops/X760adb", "https://tec.openplanner.team/stops/X788aea"], ["https://tec.openplanner.team/stops/Lsntvbi3", "https://tec.openplanner.team/stops/Ltibalt2"], ["https://tec.openplanner.team/stops/Lsecast1", "https://tec.openplanner.team/stops/Lseconc2"], ["https://tec.openplanner.team/stops/Lfhbail2", "https://tec.openplanner.team/stops/Lsecris3"], ["https://tec.openplanner.team/stops/Cctptsa1", "https://tec.openplanner.team/stops/Cctvict1"], ["https://tec.openplanner.team/stops/X663aac", "https://tec.openplanner.team/stops/X663aca"], ["https://tec.openplanner.team/stops/Lqbchat1", "https://tec.openplanner.team/stops/LSAhaye1"], ["https://tec.openplanner.team/stops/X983aba", "https://tec.openplanner.team/stops/X983acb"], ["https://tec.openplanner.team/stops/H4mo147a", "https://tec.openplanner.team/stops/H4mo188b"], ["https://tec.openplanner.team/stops/H1mc126a", "https://tec.openplanner.team/stops/H1mc126b"], ["https://tec.openplanner.team/stops/X902axa", "https://tec.openplanner.team/stops/X903aaa"], ["https://tec.openplanner.team/stops/X839aaa", "https://tec.openplanner.team/stops/X839agb"], ["https://tec.openplanner.team/stops/LHdkenn3", "https://tec.openplanner.team/stops/LVnetan1"], ["https://tec.openplanner.team/stops/Lbobuil2", "https://tec.openplanner.team/stops/Lbocorn2"], ["https://tec.openplanner.team/stops/H1lb138a", "https://tec.openplanner.team/stops/H1lb152a"], ["https://tec.openplanner.team/stops/X615acb", "https://tec.openplanner.team/stops/X615anb"], ["https://tec.openplanner.team/stops/H2ll201a", "https://tec.openplanner.team/stops/H2ll201b"], ["https://tec.openplanner.team/stops/X812ata", "https://tec.openplanner.team/stops/X812ava"], ["https://tec.openplanner.team/stops/X947adb", "https://tec.openplanner.team/stops/X948ama"], ["https://tec.openplanner.team/stops/Cgzhour2", "https://tec.openplanner.team/stops/Cthrlef2"], ["https://tec.openplanner.team/stops/LAascie2", "https://tec.openplanner.team/stops/LOCerzy2"], ["https://tec.openplanner.team/stops/Bbougar1", "https://tec.openplanner.team/stops/Bbstbou2"], ["https://tec.openplanner.team/stops/Bblmwma1", "https://tec.openplanner.team/stops/Bwlhpec2"], ["https://tec.openplanner.team/stops/X804aoa", "https://tec.openplanner.team/stops/X804bua"], ["https://tec.openplanner.team/stops/Cmgpla1", "https://tec.openplanner.team/stops/Cmgpn1"], ["https://tec.openplanner.team/stops/LLgcent2", "https://tec.openplanner.team/stops/LLgmini1"], ["https://tec.openplanner.team/stops/H2hg145a", "https://tec.openplanner.team/stops/H2hg160b"], ["https://tec.openplanner.team/stops/N536aba", "https://tec.openplanner.team/stops/N564afa"], ["https://tec.openplanner.team/stops/Bclgvmo1", "https://tec.openplanner.team/stops/Bnilcim1"], ["https://tec.openplanner.team/stops/N562bma", "https://tec.openplanner.team/stops/N562bmb"], ["https://tec.openplanner.team/stops/LlNbruc1", "https://tec.openplanner.team/stops/LlNbruc2"], ["https://tec.openplanner.team/stops/Cmlvpla1", "https://tec.openplanner.team/stops/Cmlvpla2"], ["https://tec.openplanner.team/stops/X756aib", "https://tec.openplanner.team/stops/X756aja"], ["https://tec.openplanner.team/stops/N522aub", "https://tec.openplanner.team/stops/N529aea"], ["https://tec.openplanner.team/stops/LTrgibe2", "https://tec.openplanner.team/stops/LTrmaro1"], ["https://tec.openplanner.team/stops/Bcsgres1", "https://tec.openplanner.team/stops/Bmrsefr1"], ["https://tec.openplanner.team/stops/X942abe", "https://tec.openplanner.team/stops/X942agb"], ["https://tec.openplanner.team/stops/Cgysarr2", "https://tec.openplanner.team/stops/Cracave1"], ["https://tec.openplanner.team/stops/H4to136b", "https://tec.openplanner.team/stops/H4to139b"], ["https://tec.openplanner.team/stops/LAibego2", "https://tec.openplanner.team/stops/LGlcarr1"], ["https://tec.openplanner.team/stops/H2mg136b", "https://tec.openplanner.team/stops/H2mg137a"], ["https://tec.openplanner.team/stops/Bwatle31", "https://tec.openplanner.team/stops/Bwatmlo2"], ["https://tec.openplanner.team/stops/N149aab", "https://tec.openplanner.team/stops/N149abb"], ["https://tec.openplanner.team/stops/H1so135a", "https://tec.openplanner.team/stops/H1so145a"], ["https://tec.openplanner.team/stops/H4po127a", "https://tec.openplanner.team/stops/H4po129b"], ["https://tec.openplanner.team/stops/Bhancre1", "https://tec.openplanner.team/stops/NL37aca"], ["https://tec.openplanner.team/stops/LmI82--1", "https://tec.openplanner.team/stops/LmIcafe1"], ["https://tec.openplanner.team/stops/H1gg145a", "https://tec.openplanner.team/stops/H1gg146a"], ["https://tec.openplanner.team/stops/N311aea", "https://tec.openplanner.team/stops/N368abb"], ["https://tec.openplanner.team/stops/Croheig1", "https://tec.openplanner.team/stops/Crojume1"], ["https://tec.openplanner.team/stops/H1el134b", "https://tec.openplanner.team/stops/H1el137b"], ["https://tec.openplanner.team/stops/Lvepala7", "https://tec.openplanner.team/stops/Lvevert1"], ["https://tec.openplanner.team/stops/N534aba", "https://tec.openplanner.team/stops/N534ada"], ["https://tec.openplanner.team/stops/LRIcite1", "https://tec.openplanner.team/stops/LVIlore2"], ["https://tec.openplanner.team/stops/X742aca", "https://tec.openplanner.team/stops/X742aea"], ["https://tec.openplanner.team/stops/Crolach1", "https://tec.openplanner.team/stops/Crowall2"], ["https://tec.openplanner.team/stops/LBVlamo1", "https://tec.openplanner.team/stops/LBVzand4"], ["https://tec.openplanner.team/stops/LaMahof1", "https://tec.openplanner.team/stops/LaMahof2"], ["https://tec.openplanner.team/stops/Bbeaap52", "https://tec.openplanner.team/stops/Bbeacha1"], ["https://tec.openplanner.team/stops/X731aca", "https://tec.openplanner.team/stops/X731acc"], ["https://tec.openplanner.team/stops/LHexhav1", "https://tec.openplanner.team/stops/LHexhav2"], ["https://tec.openplanner.team/stops/Loucent1", "https://tec.openplanner.team/stops/Loucent2"], ["https://tec.openplanner.team/stops/LeUgeme1", "https://tec.openplanner.team/stops/LeUindu1"], ["https://tec.openplanner.team/stops/X796aba", "https://tec.openplanner.team/stops/X796abb"], ["https://tec.openplanner.team/stops/Cliegli1", "https://tec.openplanner.team/stops/Cliegli2"], ["https://tec.openplanner.team/stops/Cgythio1", "https://tec.openplanner.team/stops/Cgytrie1"], ["https://tec.openplanner.team/stops/Lseecol1", "https://tec.openplanner.team/stops/Lsevecq1"], ["https://tec.openplanner.team/stops/Cculpre1", "https://tec.openplanner.team/stops/Ccupbro1"], ["https://tec.openplanner.team/stops/Cfamate2", "https://tec.openplanner.team/stops/Cpictra2"], ["https://tec.openplanner.team/stops/Cfaamio1", "https://tec.openplanner.team/stops/Cfachap2"], ["https://tec.openplanner.team/stops/X982acb", "https://tec.openplanner.team/stops/X982bza"], ["https://tec.openplanner.team/stops/LTIsain1", "https://tec.openplanner.team/stops/LTIsain2"], ["https://tec.openplanner.team/stops/H4mb202b", "https://tec.openplanner.team/stops/H4va231b"], ["https://tec.openplanner.team/stops/X721aaa", "https://tec.openplanner.team/stops/X723aka"], ["https://tec.openplanner.team/stops/LVNbale2", "https://tec.openplanner.team/stops/LVNcoop1"], ["https://tec.openplanner.team/stops/X601ama", "https://tec.openplanner.team/stops/X601cda"], ["https://tec.openplanner.team/stops/Llghugo2", "https://tec.openplanner.team/stops/Llglimb1"], ["https://tec.openplanner.team/stops/LGevygh1", "https://tec.openplanner.team/stops/LGevygh2"], ["https://tec.openplanner.team/stops/Bbealon3", "https://tec.openplanner.team/stops/Bbealou1"], ["https://tec.openplanner.team/stops/Lrccime3", "https://tec.openplanner.team/stops/Lvoec--3"], ["https://tec.openplanner.team/stops/N115abb", "https://tec.openplanner.team/stops/N115adb"], ["https://tec.openplanner.team/stops/N101acb", "https://tec.openplanner.team/stops/N101ada"], ["https://tec.openplanner.team/stops/Lhrchar3", "https://tec.openplanner.team/stops/Llghori2"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X775aia"], ["https://tec.openplanner.team/stops/Bjodcoi1", "https://tec.openplanner.team/stops/Bjodint1"], ["https://tec.openplanner.team/stops/NL81aea", "https://tec.openplanner.team/stops/NL81aeb"], ["https://tec.openplanner.team/stops/Cmypast1", "https://tec.openplanner.team/stops/Cmypast2"], ["https://tec.openplanner.team/stops/X746aeb", "https://tec.openplanner.team/stops/X746afa"], ["https://tec.openplanner.team/stops/N524aja", "https://tec.openplanner.team/stops/N525aka"], ["https://tec.openplanner.team/stops/LLEgare2", "https://tec.openplanner.team/stops/LQacabi2"], ["https://tec.openplanner.team/stops/Ccumasu1", "https://tec.openplanner.team/stops/Cpicite2"], ["https://tec.openplanner.team/stops/LGemari1", "https://tec.openplanner.team/stops/LGesent1"], ["https://tec.openplanner.team/stops/N501aja", "https://tec.openplanner.team/stops/N501aka"], ["https://tec.openplanner.team/stops/Lgdblom1", "https://tec.openplanner.team/stops/LSNgerm2"], ["https://tec.openplanner.team/stops/H1el133a", "https://tec.openplanner.team/stops/H1el133b"], ["https://tec.openplanner.team/stops/X927acb", "https://tec.openplanner.team/stops/X927ada"], ["https://tec.openplanner.team/stops/X983aga", "https://tec.openplanner.team/stops/X983agb"], ["https://tec.openplanner.team/stops/Bettbue1", "https://tec.openplanner.team/stops/Bettcha3"], ["https://tec.openplanner.team/stops/LDmcruc2", "https://tec.openplanner.team/stops/LDmhave2"], ["https://tec.openplanner.team/stops/N520aba", "https://tec.openplanner.team/stops/N520ada"], ["https://tec.openplanner.team/stops/N507ada", "https://tec.openplanner.team/stops/N507aeb"], ["https://tec.openplanner.team/stops/X725bfb", "https://tec.openplanner.team/stops/X768aab"], ["https://tec.openplanner.team/stops/LHUgare*", "https://tec.openplanner.team/stops/LHUmala1"], ["https://tec.openplanner.team/stops/X823aab", "https://tec.openplanner.team/stops/X830aaa"], ["https://tec.openplanner.team/stops/Lcebarr1", "https://tec.openplanner.team/stops/Lcepont2"], ["https://tec.openplanner.team/stops/Cptrebe1", "https://tec.openplanner.team/stops/Cptsncb1"], ["https://tec.openplanner.team/stops/LLOnand1", "https://tec.openplanner.team/stops/LRRoser2"], ["https://tec.openplanner.team/stops/X804asa", "https://tec.openplanner.team/stops/X804bea"], ["https://tec.openplanner.team/stops/LLTgole2", "https://tec.openplanner.team/stops/LTOplac2"], ["https://tec.openplanner.team/stops/H4ga153a", "https://tec.openplanner.team/stops/H4ga153b"], ["https://tec.openplanner.team/stops/N528afb", "https://tec.openplanner.team/stops/N528afc"], ["https://tec.openplanner.team/stops/H1hr121c", "https://tec.openplanner.team/stops/H1hr121d"], ["https://tec.openplanner.team/stops/LsVgrun1", "https://tec.openplanner.team/stops/LsVviel1"], ["https://tec.openplanner.team/stops/X636ama", "https://tec.openplanner.team/stops/X636bda"], ["https://tec.openplanner.team/stops/Lghmeun1", "https://tec.openplanner.team/stops/Lghmeun2"], ["https://tec.openplanner.team/stops/Lmocalv1", "https://tec.openplanner.team/stops/Lmopeup2"], ["https://tec.openplanner.team/stops/N146ada", "https://tec.openplanner.team/stops/N146afa"], ["https://tec.openplanner.team/stops/X638akb", "https://tec.openplanner.team/stops/X638apb"], ["https://tec.openplanner.team/stops/Bovecha2", "https://tec.openplanner.team/stops/Bovetsa1"], ["https://tec.openplanner.team/stops/LaAdiep1", "https://tec.openplanner.team/stops/LaAdiep2"], ["https://tec.openplanner.team/stops/LDmeg--1", "https://tec.openplanner.team/stops/LDmeg--2"], ["https://tec.openplanner.team/stops/LROandr1", "https://tec.openplanner.team/stops/LROhaie1"], ["https://tec.openplanner.team/stops/X786ahb", "https://tec.openplanner.team/stops/X789afa"], ["https://tec.openplanner.team/stops/X811aga", "https://tec.openplanner.team/stops/X834acb"], ["https://tec.openplanner.team/stops/H2ll176c", "https://tec.openplanner.team/stops/H2ll195a"], ["https://tec.openplanner.team/stops/Blhurcl1", "https://tec.openplanner.team/stops/Bovehst2"], ["https://tec.openplanner.team/stops/LMisour2", "https://tec.openplanner.team/stops/LSTmeiz2"], ["https://tec.openplanner.team/stops/H4mt214a", "https://tec.openplanner.team/stops/H4mt220b"], ["https://tec.openplanner.team/stops/X805aea", "https://tec.openplanner.team/stops/X805ajb"], ["https://tec.openplanner.team/stops/Ladplen*", "https://tec.openplanner.team/stops/Ladstat1"], ["https://tec.openplanner.team/stops/H4bc104b", "https://tec.openplanner.team/stops/H5bl142a"], ["https://tec.openplanner.team/stops/H2hg267b", "https://tec.openplanner.team/stops/H2hg271b"], ["https://tec.openplanner.team/stops/LLUadze1", "https://tec.openplanner.team/stops/LLUdeig1"], ["https://tec.openplanner.team/stops/Llgoeil1", "https://tec.openplanner.team/stops/Llgpere1"], ["https://tec.openplanner.team/stops/LODamco1", "https://tec.openplanner.team/stops/LODvill1"], ["https://tec.openplanner.team/stops/H1mq199b", "https://tec.openplanner.team/stops/H4ab100b"], ["https://tec.openplanner.team/stops/X660aab", "https://tec.openplanner.team/stops/X660abb"], ["https://tec.openplanner.team/stops/LMNentr1", "https://tec.openplanner.team/stops/LMNjard1"], ["https://tec.openplanner.team/stops/Bbghepi1", "https://tec.openplanner.team/stops/Bbghsar2"], ["https://tec.openplanner.team/stops/N558aab", "https://tec.openplanner.team/stops/N558aga"], ["https://tec.openplanner.team/stops/Bgoesch1", "https://tec.openplanner.team/stops/Bgoewat1"], ["https://tec.openplanner.team/stops/LBBlaga1", "https://tec.openplanner.team/stops/LBBpech1"], ["https://tec.openplanner.team/stops/Caccent1", "https://tec.openplanner.team/stops/NC24afa"], ["https://tec.openplanner.team/stops/Lfhgara1", "https://tec.openplanner.team/stops/Lmlguis1"], ["https://tec.openplanner.team/stops/N235aca", "https://tec.openplanner.team/stops/N235ada"], ["https://tec.openplanner.team/stops/X614awa", "https://tec.openplanner.team/stops/X614axa"], ["https://tec.openplanner.team/stops/Lsebico1", "https://tec.openplanner.team/stops/Lsehaut1"], ["https://tec.openplanner.team/stops/Lroeg--2", "https://tec.openplanner.team/stops/Lromc--1"], ["https://tec.openplanner.team/stops/LLelava3", "https://tec.openplanner.team/stops/X547aaa"], ["https://tec.openplanner.team/stops/N261ada", "https://tec.openplanner.team/stops/N261afb"], ["https://tec.openplanner.team/stops/LWAcost2", "https://tec.openplanner.team/stops/LWAperv1"], ["https://tec.openplanner.team/stops/N540amb", "https://tec.openplanner.team/stops/N540ana"], ["https://tec.openplanner.team/stops/N301asa", "https://tec.openplanner.team/stops/X301ara"], ["https://tec.openplanner.team/stops/Cbfstry1", "https://tec.openplanner.team/stops/NC02abb"], ["https://tec.openplanner.team/stops/LBTcarr2", "https://tec.openplanner.team/stops/LHEbeau1"], ["https://tec.openplanner.team/stops/H5el110a", "https://tec.openplanner.team/stops/H5el110b"], ["https://tec.openplanner.team/stops/LBEssab1", "https://tec.openplanner.team/stops/LBEtroo2"], ["https://tec.openplanner.team/stops/H1cr100a", "https://tec.openplanner.team/stops/H1hl124b"], ["https://tec.openplanner.team/stops/LHumoul2", "https://tec.openplanner.team/stops/LMfbacu1"], ["https://tec.openplanner.team/stops/N503aka", "https://tec.openplanner.team/stops/N580afb"], ["https://tec.openplanner.team/stops/Cflcent2", "https://tec.openplanner.team/stops/Cflstan1"], ["https://tec.openplanner.team/stops/LWabela1", "https://tec.openplanner.team/stops/LWamass2"], ["https://tec.openplanner.team/stops/Bnivcol3", "https://tec.openplanner.team/stops/Bnivh%C3%B4p1"], ["https://tec.openplanner.team/stops/X657aka", "https://tec.openplanner.team/stops/X657ana"], ["https://tec.openplanner.team/stops/X826aha", "https://tec.openplanner.team/stops/X826ahb"], ["https://tec.openplanner.team/stops/Lseivoz2", "https://tec.openplanner.team/stops/Lsevico1"], ["https://tec.openplanner.team/stops/Lfhborg2", "https://tec.openplanner.team/stops/Lfhdone2"], ["https://tec.openplanner.team/stops/Bnil3fo2", "https://tec.openplanner.team/stops/Bnilpie1"], ["https://tec.openplanner.team/stops/N204aia", "https://tec.openplanner.team/stops/N204aib"], ["https://tec.openplanner.team/stops/X949afa", "https://tec.openplanner.team/stops/X949afb"], ["https://tec.openplanner.team/stops/N874aba", "https://tec.openplanner.team/stops/N874aha"], ["https://tec.openplanner.team/stops/N229aaa", "https://tec.openplanner.team/stops/N232asb"], ["https://tec.openplanner.team/stops/H4my120a", "https://tec.openplanner.team/stops/H4my122a"], ["https://tec.openplanner.team/stops/Bnivbpe1", "https://tec.openplanner.team/stops/Bnivfle1"], ["https://tec.openplanner.team/stops/N149aaa", "https://tec.openplanner.team/stops/N149akb"], ["https://tec.openplanner.team/stops/Bbch4br2", "https://tec.openplanner.team/stops/Bbchpil1"], ["https://tec.openplanner.team/stops/N311acb", "https://tec.openplanner.team/stops/N368ada"], ["https://tec.openplanner.team/stops/H2hg147a", "https://tec.openplanner.team/stops/H2hg153b"], ["https://tec.openplanner.team/stops/X684aab", "https://tec.openplanner.team/stops/X685afb"], ["https://tec.openplanner.team/stops/LAYsupe2", "https://tec.openplanner.team/stops/LREraph3"], ["https://tec.openplanner.team/stops/Bwagmco2", "https://tec.openplanner.team/stops/Bwagpco1"], ["https://tec.openplanner.team/stops/X653aeb", "https://tec.openplanner.team/stops/X653afa"], ["https://tec.openplanner.team/stops/Lfhrogn1", "https://tec.openplanner.team/stops/Lghfors2"], ["https://tec.openplanner.team/stops/Lsephar2", "https://tec.openplanner.team/stops/Lsepuit1"], ["https://tec.openplanner.team/stops/LCsange1", "https://tec.openplanner.team/stops/LCseg--1"], ["https://tec.openplanner.team/stops/Bsoigar1", "https://tec.openplanner.team/stops/H3so172a"], ["https://tec.openplanner.team/stops/LBSneuv1", "https://tec.openplanner.team/stops/LBSneuv2"], ["https://tec.openplanner.team/stops/N537acb", "https://tec.openplanner.team/stops/N562bia"], ["https://tec.openplanner.team/stops/N521aca", "https://tec.openplanner.team/stops/N521aeb"], ["https://tec.openplanner.team/stops/N228aba", "https://tec.openplanner.team/stops/N228aea"], ["https://tec.openplanner.team/stops/H4bo116b", "https://tec.openplanner.team/stops/H4bo118d"], ["https://tec.openplanner.team/stops/H4mo135a", "https://tec.openplanner.team/stops/H4tg163a"], ["https://tec.openplanner.team/stops/N101ajb", "https://tec.openplanner.team/stops/N116aac"], ["https://tec.openplanner.team/stops/Lanlona1", "https://tec.openplanner.team/stops/Lantonn2"], ["https://tec.openplanner.team/stops/X354aga", "https://tec.openplanner.team/stops/X354aha"], ["https://tec.openplanner.team/stops/Bmalsmc2", "https://tec.openplanner.team/stops/Bmalsme2"], ["https://tec.openplanner.team/stops/H1ms293a", "https://tec.openplanner.team/stops/H1ms312a"], ["https://tec.openplanner.team/stops/N522ajb", "https://tec.openplanner.team/stops/N522apb"], ["https://tec.openplanner.team/stops/LLrscie1", "https://tec.openplanner.team/stops/LTHturo2"], ["https://tec.openplanner.team/stops/LHUchin*", "https://tec.openplanner.team/stops/NL80apa"], ["https://tec.openplanner.team/stops/Buccdho2", "https://tec.openplanner.team/stops/Buccplj2"], ["https://tec.openplanner.team/stops/LHEcoll2", "https://tec.openplanner.team/stops/LHEepur1"], ["https://tec.openplanner.team/stops/Bblager1", "https://tec.openplanner.team/stops/Clpsola1"], ["https://tec.openplanner.team/stops/X672ada", "https://tec.openplanner.team/stops/X672apa"], ["https://tec.openplanner.team/stops/Brixga13", "https://tec.openplanner.team/stops/Brixpje2"], ["https://tec.openplanner.team/stops/LOehart1", "https://tec.openplanner.team/stops/LOehart2"], ["https://tec.openplanner.team/stops/X824acb", "https://tec.openplanner.team/stops/X824ada"], ["https://tec.openplanner.team/stops/H1el140c", "https://tec.openplanner.team/stops/H1wi151a"], ["https://tec.openplanner.team/stops/Brsgtou1", "https://tec.openplanner.team/stops/Brsgtou2"], ["https://tec.openplanner.team/stops/Lfhchaf1", "https://tec.openplanner.team/stops/Lfhchaf2"], ["https://tec.openplanner.team/stops/N516ada", "https://tec.openplanner.team/stops/N516aoa"], ["https://tec.openplanner.team/stops/H4vx362b", "https://tec.openplanner.team/stops/H4vx365a"], ["https://tec.openplanner.team/stops/N501fwz", "https://tec.openplanner.team/stops/N501giy"], ["https://tec.openplanner.team/stops/H4ty273a", "https://tec.openplanner.team/stops/H4ty273c"], ["https://tec.openplanner.team/stops/Cflchel2", "https://tec.openplanner.team/stops/Cflhano2"], ["https://tec.openplanner.team/stops/Cchalou1", "https://tec.openplanner.team/stops/Cgystbe1"], ["https://tec.openplanner.team/stops/LAwec--2", "https://tec.openplanner.team/stops/LAwfans2"], ["https://tec.openplanner.team/stops/X616afa", "https://tec.openplanner.team/stops/X616ahb"], ["https://tec.openplanner.team/stops/H2mg137a", "https://tec.openplanner.team/stops/H2mg151a"], ["https://tec.openplanner.team/stops/X317aba", "https://tec.openplanner.team/stops/X611aca"], ["https://tec.openplanner.team/stops/LEnchan2", "https://tec.openplanner.team/stops/LEntrix1"], ["https://tec.openplanner.team/stops/N558amd", "https://tec.openplanner.team/stops/N559aaa"], ["https://tec.openplanner.team/stops/H2tr249a", "https://tec.openplanner.team/stops/H2tr251b"], ["https://tec.openplanner.team/stops/X901bcb", "https://tec.openplanner.team/stops/X943aba"], ["https://tec.openplanner.team/stops/H2hg150a", "https://tec.openplanner.team/stops/H2hg150b"], ["https://tec.openplanner.team/stops/H1gr116b", "https://tec.openplanner.team/stops/H1hr126a"], ["https://tec.openplanner.team/stops/X754aoa", "https://tec.openplanner.team/stops/X754avb"], ["https://tec.openplanner.team/stops/N874ana", "https://tec.openplanner.team/stops/X874apa"], ["https://tec.openplanner.team/stops/X637agd", "https://tec.openplanner.team/stops/X637amb"], ["https://tec.openplanner.team/stops/H4wi167b", "https://tec.openplanner.team/stops/H5pe146b"], ["https://tec.openplanner.team/stops/X762adb", "https://tec.openplanner.team/stops/X764aga"], ["https://tec.openplanner.team/stops/Cthathe1", "https://tec.openplanner.team/stops/Cthathe2"], ["https://tec.openplanner.team/stops/LmNkirc2", "https://tec.openplanner.team/stops/LmNpost2"], ["https://tec.openplanner.team/stops/LHUzoni3", "https://tec.openplanner.team/stops/LTieg--1"], ["https://tec.openplanner.team/stops/X576acb", "https://tec.openplanner.team/stops/X576aga"], ["https://tec.openplanner.team/stops/N501grd", "https://tec.openplanner.team/stops/N501zda"], ["https://tec.openplanner.team/stops/X725aee", "https://tec.openplanner.team/stops/X725aza"], ["https://tec.openplanner.team/stops/H2hp123c", "https://tec.openplanner.team/stops/H2hp262b"], ["https://tec.openplanner.team/stops/X608ahb", "https://tec.openplanner.team/stops/X608aza"], ["https://tec.openplanner.team/stops/NL37aia", "https://tec.openplanner.team/stops/NL74ajb"], ["https://tec.openplanner.team/stops/X882acb", "https://tec.openplanner.team/stops/X882ada"], ["https://tec.openplanner.team/stops/LkTraer2", "https://tec.openplanner.team/stops/LwAstum1"], ["https://tec.openplanner.team/stops/Bosqgar1", "https://tec.openplanner.team/stops/Bosqpco1"], ["https://tec.openplanner.team/stops/LAUbirv1", "https://tec.openplanner.team/stops/LHCcroy2"], ["https://tec.openplanner.team/stops/X717aha", "https://tec.openplanner.team/stops/X782afa"], ["https://tec.openplanner.team/stops/LCvmonu1", "https://tec.openplanner.team/stops/LLVcent1"], ["https://tec.openplanner.team/stops/LmHbahn2", "https://tec.openplanner.team/stops/LmHflor1"], ["https://tec.openplanner.team/stops/H1ht121b", "https://tec.openplanner.team/stops/H1po154a"], ["https://tec.openplanner.team/stops/N232bxb", "https://tec.openplanner.team/stops/N291acb"], ["https://tec.openplanner.team/stops/Bbchume1", "https://tec.openplanner.team/stops/Bbchume2"], ["https://tec.openplanner.team/stops/LHTbaud2", "https://tec.openplanner.team/stops/LHTmala4"], ["https://tec.openplanner.team/stops/Bbaualz1", "https://tec.openplanner.team/stops/Bbautri2"], ["https://tec.openplanner.team/stops/N235aea", "https://tec.openplanner.team/stops/N270aab"], ["https://tec.openplanner.team/stops/N132ada", "https://tec.openplanner.team/stops/N132aga"], ["https://tec.openplanner.team/stops/H1em111a", "https://tec.openplanner.team/stops/H1hl128b"], ["https://tec.openplanner.team/stops/LWAalou2", "https://tec.openplanner.team/stops/LWAwila1"], ["https://tec.openplanner.team/stops/X804bob", "https://tec.openplanner.team/stops/X804bpa"], ["https://tec.openplanner.team/stops/N155aaa", "https://tec.openplanner.team/stops/N155aca"], ["https://tec.openplanner.team/stops/X223acb", "https://tec.openplanner.team/stops/X919ada"], ["https://tec.openplanner.team/stops/Llglibo3", "https://tec.openplanner.team/stops/Llgm%C3%A9di1"], ["https://tec.openplanner.team/stops/N115aca", "https://tec.openplanner.team/stops/N118akb"], ["https://tec.openplanner.team/stops/H1er108a", "https://tec.openplanner.team/stops/H1gg117b"], ["https://tec.openplanner.team/stops/H1ms312a", "https://tec.openplanner.team/stops/H1ms921a"], ["https://tec.openplanner.team/stops/H4be146a", "https://tec.openplanner.team/stops/H5bl117c"], ["https://tec.openplanner.team/stops/LTPabat2", "https://tec.openplanner.team/stops/LTPreco2"], ["https://tec.openplanner.team/stops/Cjugill4", "https://tec.openplanner.team/stops/CMchag2"], ["https://tec.openplanner.team/stops/N146aaa", "https://tec.openplanner.team/stops/N146aea"], ["https://tec.openplanner.team/stops/X354aea", "https://tec.openplanner.team/stops/X354aeb"], ["https://tec.openplanner.team/stops/N562acb", "https://tec.openplanner.team/stops/N562azb"], ["https://tec.openplanner.team/stops/H1do114a", "https://tec.openplanner.team/stops/H1do121b"], ["https://tec.openplanner.team/stops/LBapepi5", "https://tec.openplanner.team/stops/LBapepi6"], ["https://tec.openplanner.team/stops/Louazot1", "https://tec.openplanner.team/stops/Lscgare1"], ["https://tec.openplanner.team/stops/X837aka", "https://tec.openplanner.team/stops/X886abb"], ["https://tec.openplanner.team/stops/H4wg121b", "https://tec.openplanner.team/stops/H4wg122b"], ["https://tec.openplanner.team/stops/H1wz173b", "https://tec.openplanner.team/stops/H2pe161b"], ["https://tec.openplanner.team/stops/H4ss153a", "https://tec.openplanner.team/stops/H5rx104b"], ["https://tec.openplanner.team/stops/N512aua", "https://tec.openplanner.team/stops/N512aub"], ["https://tec.openplanner.team/stops/N525ana", "https://tec.openplanner.team/stops/N527aaa"], ["https://tec.openplanner.team/stops/N301aca", "https://tec.openplanner.team/stops/N301apa"], ["https://tec.openplanner.team/stops/N528asa", "https://tec.openplanner.team/stops/N542apa"], ["https://tec.openplanner.team/stops/N233aaa", "https://tec.openplanner.team/stops/N233abb"], ["https://tec.openplanner.team/stops/H1ob330b", "https://tec.openplanner.team/stops/H1ob333b"], ["https://tec.openplanner.team/stops/H4lz122b", "https://tec.openplanner.team/stops/H4lz160a"], ["https://tec.openplanner.team/stops/Clrmarl3", "https://tec.openplanner.team/stops/Clrplac1"], ["https://tec.openplanner.team/stops/Llgamer4", "https://tec.openplanner.team/stops/Llgoutr3"], ["https://tec.openplanner.team/stops/X617aea", "https://tec.openplanner.team/stops/X617aeb"], ["https://tec.openplanner.team/stops/H1ms254a", "https://tec.openplanner.team/stops/H1ms367a"], ["https://tec.openplanner.team/stops/X904afb", "https://tec.openplanner.team/stops/X904aja"], ["https://tec.openplanner.team/stops/LFyanto2", "https://tec.openplanner.team/stops/LwYsarl1"], ["https://tec.openplanner.team/stops/H1bd102a", "https://tec.openplanner.team/stops/H1hq127b"], ["https://tec.openplanner.team/stops/Bhancom2", "https://tec.openplanner.team/stops/LVPcoeu1"], ["https://tec.openplanner.team/stops/LCschri1", "https://tec.openplanner.team/stops/LCseg--1"], ["https://tec.openplanner.team/stops/Lanclon1", "https://tec.openplanner.team/stops/Lanclon2"], ["https://tec.openplanner.team/stops/Cprgran2", "https://tec.openplanner.team/stops/NC11aob"], ["https://tec.openplanner.team/stops/Cgylouv1", "https://tec.openplanner.team/stops/Cgymest1"], ["https://tec.openplanner.team/stops/Ljeespe2", "https://tec.openplanner.team/stops/Lsetroq2"], ["https://tec.openplanner.team/stops/H1fr117a", "https://tec.openplanner.team/stops/H1fr119b"], ["https://tec.openplanner.team/stops/X358aca", "https://tec.openplanner.team/stops/X358adb"], ["https://tec.openplanner.team/stops/Bmanati2", "https://tec.openplanner.team/stops/Bmangen2"], ["https://tec.openplanner.team/stops/N225aba", "https://tec.openplanner.team/stops/N225aha"], ["https://tec.openplanner.team/stops/H1ms280a", "https://tec.openplanner.team/stops/H1ms936a"], ["https://tec.openplanner.team/stops/Crofrio2", "https://tec.openplanner.team/stops/Crolema3"], ["https://tec.openplanner.team/stops/Cgyhstj2", "https://tec.openplanner.team/stops/Cgystjo3"], ["https://tec.openplanner.team/stops/N232aia", "https://tec.openplanner.team/stops/N232aob"], ["https://tec.openplanner.team/stops/H1fr129b", "https://tec.openplanner.team/stops/H1fr152a"], ["https://tec.openplanner.team/stops/LmNelis1", "https://tec.openplanner.team/stops/LmNkess2"], ["https://tec.openplanner.team/stops/H2sb231d", "https://tec.openplanner.team/stops/H2sb266a"], ["https://tec.openplanner.team/stops/LSPmart2", "https://tec.openplanner.team/stops/LWMchpl1"], ["https://tec.openplanner.team/stops/H3th130a", "https://tec.openplanner.team/stops/H3th130b"], ["https://tec.openplanner.team/stops/H4mx116a", "https://tec.openplanner.team/stops/H4po125b"], ["https://tec.openplanner.team/stops/Bwavlav2", "https://tec.openplanner.team/stops/Bwavnep1"], ["https://tec.openplanner.team/stops/H4ty350b", "https://tec.openplanner.team/stops/H4ty358b"], ["https://tec.openplanner.team/stops/Btstcar1", "https://tec.openplanner.team/stops/Btstw752"], ["https://tec.openplanner.team/stops/LTNsarl1", "https://tec.openplanner.team/stops/LTNsarl2"], ["https://tec.openplanner.team/stops/H1wa136a", "https://tec.openplanner.team/stops/H1wa136b"], ["https://tec.openplanner.team/stops/X652acb", "https://tec.openplanner.team/stops/X652acd"], ["https://tec.openplanner.team/stops/NL76amb", "https://tec.openplanner.team/stops/NL76apa"], ["https://tec.openplanner.team/stops/Cmtpblo2", "https://tec.openplanner.team/stops/Cmtplac4"], ["https://tec.openplanner.team/stops/X715aea", "https://tec.openplanner.team/stops/X715afb"], ["https://tec.openplanner.team/stops/N229asa", "https://tec.openplanner.team/stops/N230abb"], ["https://tec.openplanner.team/stops/LFsec--1", "https://tec.openplanner.team/stops/LSLhale1"], ["https://tec.openplanner.team/stops/NL75aab", "https://tec.openplanner.team/stops/NR30aaa"], ["https://tec.openplanner.team/stops/Lchchau1", "https://tec.openplanner.team/stops/Lchchau2"], ["https://tec.openplanner.team/stops/Lalecmo1", "https://tec.openplanner.team/stops/Laleg--1"], ["https://tec.openplanner.team/stops/Lhehoux2", "https://tec.openplanner.team/stops/Lheterm*"], ["https://tec.openplanner.team/stops/X811apb", "https://tec.openplanner.team/stops/X811aqa"], ["https://tec.openplanner.team/stops/X741acb", "https://tec.openplanner.team/stops/X741aeb"], ["https://tec.openplanner.team/stops/Cmlhauc2", "https://tec.openplanner.team/stops/Cmlhauc3"], ["https://tec.openplanner.team/stops/LLelans2", "https://tec.openplanner.team/stops/X576afa"], ["https://tec.openplanner.team/stops/Bblacha2", "https://tec.openplanner.team/stops/Bblavol2"], ["https://tec.openplanner.team/stops/Cnacent1", "https://tec.openplanner.team/stops/Cnaha561"], ["https://tec.openplanner.team/stops/H4hg154b", "https://tec.openplanner.team/stops/H4mv189a"], ["https://tec.openplanner.team/stops/X633aja", "https://tec.openplanner.team/stops/X654aab"], ["https://tec.openplanner.team/stops/LCsraws1", "https://tec.openplanner.team/stops/LFFmagr2"], ["https://tec.openplanner.team/stops/LlgLAMB3", "https://tec.openplanner.team/stops/LlgLAMB7"], ["https://tec.openplanner.team/stops/Bblacha1", "https://tec.openplanner.team/stops/Bblacha2"], ["https://tec.openplanner.team/stops/Cchba04", "https://tec.openplanner.team/stops/Cchfort1"], ["https://tec.openplanner.team/stops/H4mo142d", "https://tec.openplanner.team/stops/H4mo160a"], ["https://tec.openplanner.team/stops/N206aab", "https://tec.openplanner.team/stops/N206abb"], ["https://tec.openplanner.team/stops/Lhrbass1", "https://tec.openplanner.team/stops/Lhrpaix1"], ["https://tec.openplanner.team/stops/N522agb", "https://tec.openplanner.team/stops/N522ama"], ["https://tec.openplanner.team/stops/Lchplai2", "https://tec.openplanner.team/stops/Lchsaeg2"], ["https://tec.openplanner.team/stops/LRtmame2", "https://tec.openplanner.team/stops/LSebott2"], ["https://tec.openplanner.team/stops/H1mb127b", "https://tec.openplanner.team/stops/H1mb168a"], ["https://tec.openplanner.team/stops/X896abb", "https://tec.openplanner.team/stops/X995acb"], ["https://tec.openplanner.team/stops/N117aab", "https://tec.openplanner.team/stops/N117abb"], ["https://tec.openplanner.team/stops/H4mo177a", "https://tec.openplanner.team/stops/H4mo179a"], ["https://tec.openplanner.team/stops/X836afa", "https://tec.openplanner.team/stops/X836ahb"], ["https://tec.openplanner.team/stops/H1qg138a", "https://tec.openplanner.team/stops/H1qg138d"], ["https://tec.openplanner.team/stops/Cmlthym2", "https://tec.openplanner.team/stops/Cmmbsit2"], ["https://tec.openplanner.team/stops/Craferr1", "https://tec.openplanner.team/stops/Crajasm4"], ["https://tec.openplanner.team/stops/Lcepass2", "https://tec.openplanner.team/stops/Lvc4bra1"], ["https://tec.openplanner.team/stops/LsC216-1", "https://tec.openplanner.team/stops/LsC216-2"], ["https://tec.openplanner.team/stops/X802aga", "https://tec.openplanner.team/stops/X818aia"], ["https://tec.openplanner.team/stops/LWDfuma1", "https://tec.openplanner.team/stops/LWDmass2"], ["https://tec.openplanner.team/stops/Llg20ao1", "https://tec.openplanner.team/stops/Llgcock2"], ["https://tec.openplanner.team/stops/LlCauto2", "https://tec.openplanner.team/stops/LlCgren1"], ["https://tec.openplanner.team/stops/X870aeb", "https://tec.openplanner.team/stops/X879apb"], ["https://tec.openplanner.team/stops/Bnivmfr1", "https://tec.openplanner.team/stops/Bptrlux1"], ["https://tec.openplanner.team/stops/Cbfegch2", "https://tec.openplanner.team/stops/Cctlimi2"], ["https://tec.openplanner.team/stops/H4fa126b", "https://tec.openplanner.team/stops/H4fa167b"], ["https://tec.openplanner.team/stops/Cmygrbr1", "https://tec.openplanner.team/stops/Cmyrays2"], ["https://tec.openplanner.team/stops/H1hg180a", "https://tec.openplanner.team/stops/H1hg181a"], ["https://tec.openplanner.team/stops/H2fy122b", "https://tec.openplanner.team/stops/H2lh131b"], ["https://tec.openplanner.team/stops/H4ce102a", "https://tec.openplanner.team/stops/H4ce105b"], ["https://tec.openplanner.team/stops/LNCmada1", "https://tec.openplanner.team/stops/LNCmoul1"], ["https://tec.openplanner.team/stops/X639aeb", "https://tec.openplanner.team/stops/X643aaa"], ["https://tec.openplanner.team/stops/N580aca", "https://tec.openplanner.team/stops/N580afa"], ["https://tec.openplanner.team/stops/Balssvi1", "https://tec.openplanner.team/stops/Balswin3"], ["https://tec.openplanner.team/stops/Cjualtr2", "https://tec.openplanner.team/stops/Cjucopp1"], ["https://tec.openplanner.team/stops/Bflccav1", "https://tec.openplanner.team/stops/NR21aja"], ["https://tec.openplanner.team/stops/H2be101a", "https://tec.openplanner.team/stops/H2lh128b"], ["https://tec.openplanner.team/stops/LmDelek2", "https://tec.openplanner.team/stops/LmYkirc2"], ["https://tec.openplanner.team/stops/X979aaa", "https://tec.openplanner.team/stops/X979aka"], ["https://tec.openplanner.team/stops/Cthvbas1", "https://tec.openplanner.team/stops/Cthvbas4"], ["https://tec.openplanner.team/stops/LkEgss-2", "https://tec.openplanner.team/stops/LkEwolf2"], ["https://tec.openplanner.team/stops/N528acb", "https://tec.openplanner.team/stops/N528arc"], ["https://tec.openplanner.team/stops/H4br107a", "https://tec.openplanner.team/stops/H4br111b"], ["https://tec.openplanner.team/stops/N248abb", "https://tec.openplanner.team/stops/N248aea"], ["https://tec.openplanner.team/stops/X823aba", "https://tec.openplanner.team/stops/X823aga"], ["https://tec.openplanner.team/stops/N506ala", "https://tec.openplanner.team/stops/N506awa"], ["https://tec.openplanner.team/stops/Creluth2", "https://tec.openplanner.team/stops/Crestan2"], ["https://tec.openplanner.team/stops/Bpermon4", "https://tec.openplanner.team/stops/Bperrcr1"], ["https://tec.openplanner.team/stops/Bblacar1", "https://tec.openplanner.team/stops/Bblapin2"], ["https://tec.openplanner.team/stops/Bcrnncb2", "https://tec.openplanner.team/stops/Bcrnnpl2"], ["https://tec.openplanner.team/stops/H1wa138a", "https://tec.openplanner.team/stops/H1wa163a"], ["https://tec.openplanner.team/stops/N531aca", "https://tec.openplanner.team/stops/N531amb"], ["https://tec.openplanner.team/stops/H2tr253b", "https://tec.openplanner.team/stops/H2tr255a"], ["https://tec.openplanner.team/stops/X801aeb", "https://tec.openplanner.team/stops/X801afb"], ["https://tec.openplanner.team/stops/Clomari2", "https://tec.openplanner.team/stops/Clomari4"], ["https://tec.openplanner.team/stops/H1lb137a", "https://tec.openplanner.team/stops/H1lb137b"], ["https://tec.openplanner.team/stops/Bbiemor1", "https://tec.openplanner.team/stops/Bbiemor2"], ["https://tec.openplanner.team/stops/LBEabbe2", "https://tec.openplanner.team/stops/LBEairp1"], ["https://tec.openplanner.team/stops/H2le146a", "https://tec.openplanner.team/stops/H2le152a"], ["https://tec.openplanner.team/stops/Btsllfp2", "https://tec.openplanner.team/stops/Btsllsc1"], ["https://tec.openplanner.team/stops/LHGtron1", "https://tec.openplanner.team/stops/LHGvill1"], ["https://tec.openplanner.team/stops/LFFcouv2", "https://tec.openplanner.team/stops/LFFruel2"], ["https://tec.openplanner.team/stops/N232bha", "https://tec.openplanner.team/stops/N232blb"], ["https://tec.openplanner.team/stops/Ljuargi1", "https://tec.openplanner.team/stops/Ljucomb1"], ["https://tec.openplanner.team/stops/H4bo113b", "https://tec.openplanner.team/stops/H4bo117a"], ["https://tec.openplanner.team/stops/X342aga", "https://tec.openplanner.team/stops/X354aca"], ["https://tec.openplanner.team/stops/LClsacr1", "https://tec.openplanner.team/stops/LThnouv2"], ["https://tec.openplanner.team/stops/X609ada", "https://tec.openplanner.team/stops/X609ana"], ["https://tec.openplanner.team/stops/Ccabois2", "https://tec.openplanner.team/stops/Cclrgiv2"], ["https://tec.openplanner.team/stops/LBEoblu1", "https://tec.openplanner.team/stops/LTIsain2"], ["https://tec.openplanner.team/stops/LlE02--1", "https://tec.openplanner.team/stops/LlE02--2"], ["https://tec.openplanner.team/stops/N501hfa", "https://tec.openplanner.team/stops/N501lcb"], ["https://tec.openplanner.team/stops/LkEbran2", "https://tec.openplanner.team/stops/LMspont1"], ["https://tec.openplanner.team/stops/H4lz164a", "https://tec.openplanner.team/stops/H4tp147a"], ["https://tec.openplanner.team/stops/LeUmeye2", "https://tec.openplanner.team/stops/LtEnatu2"], ["https://tec.openplanner.team/stops/X858abb", "https://tec.openplanner.team/stops/X858agb"], ["https://tec.openplanner.team/stops/X342abb", "https://tec.openplanner.team/stops/X342acb"], ["https://tec.openplanner.team/stops/X833aba", "https://tec.openplanner.team/stops/X833aca"], ["https://tec.openplanner.team/stops/H2le148a", "https://tec.openplanner.team/stops/H2le149a"], ["https://tec.openplanner.team/stops/H2ch101b", "https://tec.openplanner.team/stops/H2ch103a"], ["https://tec.openplanner.team/stops/LBHhuyn2", "https://tec.openplanner.team/stops/LMemaza2"], ["https://tec.openplanner.team/stops/Cgycvie1", "https://tec.openplanner.team/stops/Cgyduss1"], ["https://tec.openplanner.team/stops/X788aea", "https://tec.openplanner.team/stops/X788afa"], ["https://tec.openplanner.team/stops/N562atb", "https://tec.openplanner.team/stops/N562bsa"], ["https://tec.openplanner.team/stops/N505afa", "https://tec.openplanner.team/stops/N505ama"], ["https://tec.openplanner.team/stops/H5pe147a", "https://tec.openplanner.team/stops/H5pe176a"], ["https://tec.openplanner.team/stops/LAUhost1", "https://tec.openplanner.team/stops/LAUhost2"], ["https://tec.openplanner.team/stops/N101aia", "https://tec.openplanner.team/stops/N101aib"], ["https://tec.openplanner.team/stops/H1hw119a", "https://tec.openplanner.team/stops/H1ls108a"], ["https://tec.openplanner.team/stops/LBJapol1", "https://tec.openplanner.team/stops/LMAstei1"], ["https://tec.openplanner.team/stops/LVLmabi1", "https://tec.openplanner.team/stops/LVLpane1"], ["https://tec.openplanner.team/stops/H4lh161a", "https://tec.openplanner.team/stops/H5wo127b"], ["https://tec.openplanner.team/stops/H4bs114a", "https://tec.openplanner.team/stops/H5pe139b"], ["https://tec.openplanner.team/stops/LCLstat1", "https://tec.openplanner.team/stops/LCLstat2"], ["https://tec.openplanner.team/stops/N134ala", "https://tec.openplanner.team/stops/N135azb"], ["https://tec.openplanner.team/stops/H1br129a", "https://tec.openplanner.team/stops/H3bo100d"], ["https://tec.openplanner.team/stops/Lprhodi2", "https://tec.openplanner.team/stops/Lprorem1"], ["https://tec.openplanner.team/stops/NL77ana", "https://tec.openplanner.team/stops/NL78aha"], ["https://tec.openplanner.team/stops/N304aba", "https://tec.openplanner.team/stops/N304abb"], ["https://tec.openplanner.team/stops/Binclib1", "https://tec.openplanner.team/stops/Binclon1"], ["https://tec.openplanner.team/stops/LEScham1", "https://tec.openplanner.team/stops/LESsouv1"], ["https://tec.openplanner.team/stops/LAMcime2", "https://tec.openplanner.team/stops/LAMjaur1"], ["https://tec.openplanner.team/stops/LRcjard1", "https://tec.openplanner.team/stops/LRcjard2"], ["https://tec.openplanner.team/stops/Borborb1", "https://tec.openplanner.team/stops/Borborb2"], ["https://tec.openplanner.team/stops/X902aca", "https://tec.openplanner.team/stops/X902acb"], ["https://tec.openplanner.team/stops/X608aha", "https://tec.openplanner.team/stops/X608ahb"], ["https://tec.openplanner.team/stops/Ljuathe1", "https://tec.openplanner.team/stops/Ljujaur1"], ["https://tec.openplanner.team/stops/Bneesjo1", "https://tec.openplanner.team/stops/Bneesjo2"], ["https://tec.openplanner.team/stops/X923afa", "https://tec.openplanner.team/stops/X923afb"], ["https://tec.openplanner.team/stops/Bnetegl1", "https://tec.openplanner.team/stops/Bnetegl4"], ["https://tec.openplanner.team/stops/Bneecha2", "https://tec.openplanner.team/stops/Boplham1"], ["https://tec.openplanner.team/stops/X547aja", "https://tec.openplanner.team/stops/X547anb"], ["https://tec.openplanner.team/stops/H1hg181a", "https://tec.openplanner.team/stops/H1nv324b"], ["https://tec.openplanner.team/stops/N223aaa", "https://tec.openplanner.team/stops/X222adc"], ["https://tec.openplanner.team/stops/Cmacart1", "https://tec.openplanner.team/stops/Cmadeli1"], ["https://tec.openplanner.team/stops/LEntrix2", "https://tec.openplanner.team/stops/NL67aca"], ["https://tec.openplanner.team/stops/Bgliopp3", "https://tec.openplanner.team/stops/Bgliopp4"], ["https://tec.openplanner.team/stops/LTatult3", "https://tec.openplanner.team/stops/LTatult4"], ["https://tec.openplanner.team/stops/H4ty267a", "https://tec.openplanner.team/stops/H4ty301a"], ["https://tec.openplanner.team/stops/X994aeb", "https://tec.openplanner.team/stops/X994afa"], ["https://tec.openplanner.team/stops/N270adb", "https://tec.openplanner.team/stops/N270aec"], ["https://tec.openplanner.team/stops/Blasbpr2", "https://tec.openplanner.team/stops/Blascsl1"], ["https://tec.openplanner.team/stops/LKmcite1", "https://tec.openplanner.team/stops/LKmcite2"], ["https://tec.openplanner.team/stops/Bnivlde1", "https://tec.openplanner.team/stops/Bnivsse1"], ["https://tec.openplanner.team/stops/X812aka", "https://tec.openplanner.team/stops/X812aoa"], ["https://tec.openplanner.team/stops/X624aga", "https://tec.openplanner.team/stops/X624ahb"], ["https://tec.openplanner.team/stops/Cpcgout1", "https://tec.openplanner.team/stops/Cpcha432"], ["https://tec.openplanner.team/stops/X808aac", "https://tec.openplanner.team/stops/X808ajb"], ["https://tec.openplanner.team/stops/Llgplop1", "https://tec.openplanner.team/stops/Lvtfrai1"], ["https://tec.openplanner.team/stops/Ccymabo2", "https://tec.openplanner.team/stops/Csrcarr2"], ["https://tec.openplanner.team/stops/H4gu112a", "https://tec.openplanner.team/stops/H4gu112b"], ["https://tec.openplanner.team/stops/N534blh", "https://tec.openplanner.team/stops/N534boh"], ["https://tec.openplanner.team/stops/Bincfer1", "https://tec.openplanner.team/stops/Binclon2"], ["https://tec.openplanner.team/stops/N543bba", "https://tec.openplanner.team/stops/N554aab"], ["https://tec.openplanner.team/stops/X750axa", "https://tec.openplanner.team/stops/X750bea"], ["https://tec.openplanner.team/stops/LhEauto1", "https://tec.openplanner.team/stops/LhEauto2"], ["https://tec.openplanner.team/stops/LMsviad1", "https://tec.openplanner.team/stops/LMsviad2"], ["https://tec.openplanner.team/stops/LHVgoro1", "https://tec.openplanner.team/stops/Lsmh3022"], ["https://tec.openplanner.team/stops/N236aeb", "https://tec.openplanner.team/stops/N254aeb"], ["https://tec.openplanner.team/stops/LXomc--3", "https://tec.openplanner.team/stops/LXomc--4"], ["https://tec.openplanner.team/stops/Lenclar2", "https://tec.openplanner.team/stops/Lvehout2"], ["https://tec.openplanner.team/stops/Lbhsion1", "https://tec.openplanner.team/stops/Lvcdumo2"], ["https://tec.openplanner.team/stops/Bnstgar1", "https://tec.openplanner.team/stops/H2na133a"], ["https://tec.openplanner.team/stops/Bviravi1", "https://tec.openplanner.team/stops/Bvircen2"], ["https://tec.openplanner.team/stops/X641aka", "https://tec.openplanner.team/stops/X641akb"], ["https://tec.openplanner.team/stops/Cfabaty4", "https://tec.openplanner.team/stops/Cflspir1"], ["https://tec.openplanner.team/stops/Lhuwaid1", "https://tec.openplanner.team/stops/Lhuwaid2"], ["https://tec.openplanner.team/stops/X817aaa", "https://tec.openplanner.team/stops/X817abb"], ["https://tec.openplanner.team/stops/Cmecime1", "https://tec.openplanner.team/stops/Cmerdby2"], ["https://tec.openplanner.team/stops/LBRgare2", "https://tec.openplanner.team/stops/LBRpt--1"], ["https://tec.openplanner.team/stops/Llgdfra1", "https://tec.openplanner.team/stops/Llgmass2"], ["https://tec.openplanner.team/stops/LbTcarm2", "https://tec.openplanner.team/stops/LbTschw2"], ["https://tec.openplanner.team/stops/Cprsapv2", "https://tec.openplanner.team/stops/NC11ana"], ["https://tec.openplanner.team/stops/X870aha", "https://tec.openplanner.team/stops/X870ahb"], ["https://tec.openplanner.team/stops/X912aaa", "https://tec.openplanner.team/stops/X912aba"], ["https://tec.openplanner.team/stops/Cmqcend1", "https://tec.openplanner.team/stops/Cmqchap1"], ["https://tec.openplanner.team/stops/Lhuferm2", "https://tec.openplanner.team/stops/Lhujonc2"], ["https://tec.openplanner.team/stops/Blmlcim2", "https://tec.openplanner.team/stops/Blmlqlo1"], ["https://tec.openplanner.team/stops/X902agb", "https://tec.openplanner.team/stops/X902aka"], ["https://tec.openplanner.team/stops/X561aba", "https://tec.openplanner.team/stops/X561abc"], ["https://tec.openplanner.team/stops/LHEches2", "https://tec.openplanner.team/stops/LHEches4"], ["https://tec.openplanner.team/stops/X777aaa", "https://tec.openplanner.team/stops/X784aib"], ["https://tec.openplanner.team/stops/H4am101a", "https://tec.openplanner.team/stops/H4am102c"], ["https://tec.openplanner.team/stops/LBLvici1", "https://tec.openplanner.team/stops/LBLvici3"], ["https://tec.openplanner.team/stops/LCPcomb2", "https://tec.openplanner.team/stops/LCPlebl2"], ["https://tec.openplanner.team/stops/Lrcarse1", "https://tec.openplanner.team/stops/Lrcastr1"], ["https://tec.openplanner.team/stops/LkTkabi1", "https://tec.openplanner.team/stops/LkTlibe2"], ["https://tec.openplanner.team/stops/Cgyhstj1", "https://tec.openplanner.team/stops/Cgyobse1"], ["https://tec.openplanner.team/stops/N539awa", "https://tec.openplanner.team/stops/N539axb"], ["https://tec.openplanner.team/stops/H1bb113a", "https://tec.openplanner.team/stops/H1ho133b"], ["https://tec.openplanner.team/stops/X717adb", "https://tec.openplanner.team/stops/X782afb"], ["https://tec.openplanner.team/stops/Btlbcha1", "https://tec.openplanner.team/stops/Btlbcha2"], ["https://tec.openplanner.team/stops/LOLbout4", "https://tec.openplanner.team/stops/LXHadam2"], ["https://tec.openplanner.team/stops/LCPaube1", "https://tec.openplanner.team/stops/LLNcruc2"], ["https://tec.openplanner.team/stops/Lvecite1", "https://tec.openplanner.team/stops/Lvemahe2"], ["https://tec.openplanner.team/stops/LMAcomm1", "https://tec.openplanner.team/stops/LMAgdfa1"], ["https://tec.openplanner.team/stops/X739adb", "https://tec.openplanner.team/stops/X739afa"], ["https://tec.openplanner.team/stops/Lalchar2", "https://tec.openplanner.team/stops/Lloauto2"], ["https://tec.openplanner.team/stops/N570aaa", "https://tec.openplanner.team/stops/N570aab"], ["https://tec.openplanner.team/stops/H1qp141a", "https://tec.openplanner.team/stops/H1qp150a"], ["https://tec.openplanner.team/stops/N537aga", "https://tec.openplanner.team/stops/N537aia"], ["https://tec.openplanner.team/stops/N110abb", "https://tec.openplanner.team/stops/N110aca"], ["https://tec.openplanner.team/stops/Cflpost2", "https://tec.openplanner.team/stops/Cwgcamp2"], ["https://tec.openplanner.team/stops/Btubga02", "https://tec.openplanner.team/stops/Btubga05"], ["https://tec.openplanner.team/stops/Llglema3", "https://tec.openplanner.team/stops/Llgtill1"], ["https://tec.openplanner.team/stops/Cauglac2", "https://tec.openplanner.team/stops/N530aca"], ["https://tec.openplanner.team/stops/Lsepair2", "https://tec.openplanner.team/stops/Lsepair3"], ["https://tec.openplanner.team/stops/N532aja", "https://tec.openplanner.team/stops/N533ada"], ["https://tec.openplanner.team/stops/X948amb", "https://tec.openplanner.team/stops/X948amc"], ["https://tec.openplanner.team/stops/N141aga", "https://tec.openplanner.team/stops/N141aha"], ["https://tec.openplanner.team/stops/X659asa", "https://tec.openplanner.team/stops/X742aab"], ["https://tec.openplanner.team/stops/LAMdelh2", "https://tec.openplanner.team/stops/LAMweha2"], ["https://tec.openplanner.team/stops/LFPkape1", "https://tec.openplanner.team/stops/LFPkape3"], ["https://tec.openplanner.team/stops/LjedTEC1", "https://tec.openplanner.team/stops/LjedTEC2"], ["https://tec.openplanner.team/stops/X618acb", "https://tec.openplanner.team/stops/X618alb"], ["https://tec.openplanner.team/stops/Blaneli1", "https://tec.openplanner.team/stops/Blangar1"], ["https://tec.openplanner.team/stops/X801bha", "https://tec.openplanner.team/stops/X801bja"], ["https://tec.openplanner.team/stops/X601bma", "https://tec.openplanner.team/stops/X601caa"], ["https://tec.openplanner.team/stops/Bwatfon1", "https://tec.openplanner.team/stops/Bwatmlo2"], ["https://tec.openplanner.team/stops/Bhlvvil3", "https://tec.openplanner.team/stops/Blpghou2"], ["https://tec.openplanner.team/stops/X879aca", "https://tec.openplanner.team/stops/X879afb"], ["https://tec.openplanner.team/stops/N521aja", "https://tec.openplanner.team/stops/N521ama"], ["https://tec.openplanner.team/stops/X685aia", "https://tec.openplanner.team/stops/X687aba"], ["https://tec.openplanner.team/stops/Lsebrun1", "https://tec.openplanner.team/stops/Lseruis1"], ["https://tec.openplanner.team/stops/H4ga149a", "https://tec.openplanner.team/stops/H4ha170b"], ["https://tec.openplanner.team/stops/Blthvil1", "https://tec.openplanner.team/stops/Blthwav2"], ["https://tec.openplanner.team/stops/Llgddef2", "https://tec.openplanner.team/stops/Llgrass2"], ["https://tec.openplanner.team/stops/X917aca", "https://tec.openplanner.team/stops/X917acb"], ["https://tec.openplanner.team/stops/LRObruy2", "https://tec.openplanner.team/stops/LRObruy3"], ["https://tec.openplanner.team/stops/Bnivga61", "https://tec.openplanner.team/stops/Bnivga62"], ["https://tec.openplanner.team/stops/LhGgeme2", "https://tec.openplanner.team/stops/LhGkirc2"], ["https://tec.openplanner.team/stops/Bottpar2", "https://tec.openplanner.team/stops/Bottvtc1"], ["https://tec.openplanner.team/stops/N228aeb", "https://tec.openplanner.team/stops/N235aea"], ["https://tec.openplanner.team/stops/N106aob", "https://tec.openplanner.team/stops/N106apa"], ["https://tec.openplanner.team/stops/Cml3fon1", "https://tec.openplanner.team/stops/Cml3fon2"], ["https://tec.openplanner.team/stops/H4do107c", "https://tec.openplanner.team/stops/H4do107d"], ["https://tec.openplanner.team/stops/Btubga04", "https://tec.openplanner.team/stops/Btubnav2"], ["https://tec.openplanner.team/stops/X653aaa", "https://tec.openplanner.team/stops/X667ada"], ["https://tec.openplanner.team/stops/H1ho134a", "https://tec.openplanner.team/stops/H1ho138a"], ["https://tec.openplanner.team/stops/Bboseco2", "https://tec.openplanner.team/stops/Bhoealt1"], ["https://tec.openplanner.team/stops/X926aaa", "https://tec.openplanner.team/stops/X927aaa"], ["https://tec.openplanner.team/stops/Blpglon1", "https://tec.openplanner.team/stops/Bvxgpro2"], ["https://tec.openplanner.team/stops/LFCotte2", "https://tec.openplanner.team/stops/LFCvoer2"], ["https://tec.openplanner.team/stops/H1so133b", "https://tec.openplanner.team/stops/H1so139c"], ["https://tec.openplanner.team/stops/N543bqb", "https://tec.openplanner.team/stops/N543cia"], ["https://tec.openplanner.team/stops/Baisbar1", "https://tec.openplanner.team/stops/N519asb"], ["https://tec.openplanner.team/stops/Bgnvgir1", "https://tec.openplanner.team/stops/Bgnvoha4"], ["https://tec.openplanner.team/stops/LVSslin1", "https://tec.openplanner.team/stops/LVStige2"], ["https://tec.openplanner.team/stops/X224ahb", "https://tec.openplanner.team/stops/X394aaa"], ["https://tec.openplanner.team/stops/H4ne143b", "https://tec.openplanner.team/stops/H4wa151b"], ["https://tec.openplanner.team/stops/H1ms252c", "https://tec.openplanner.team/stops/H1ms294c"], ["https://tec.openplanner.team/stops/Buccpes1", "https://tec.openplanner.team/stops/Buccvbe1"], ["https://tec.openplanner.team/stops/LBkcarr2", "https://tec.openplanner.team/stops/LWEcomp1"], ["https://tec.openplanner.team/stops/LREfloh2", "https://tec.openplanner.team/stops/LREsech2"], ["https://tec.openplanner.team/stops/Lwakipe1", "https://tec.openplanner.team/stops/Lwapont2"], ["https://tec.openplanner.team/stops/LMolone1", "https://tec.openplanner.team/stops/LMolone2"], ["https://tec.openplanner.team/stops/X804alc", "https://tec.openplanner.team/stops/X804ald"], ["https://tec.openplanner.team/stops/X979akb", "https://tec.openplanner.team/stops/X982bsb"], ["https://tec.openplanner.team/stops/X921aja", "https://tec.openplanner.team/stops/X921ajd"], ["https://tec.openplanner.team/stops/H4mo157b", "https://tec.openplanner.team/stops/H4mo187a"], ["https://tec.openplanner.team/stops/Bfelrav1", "https://tec.openplanner.team/stops/Bsengma2"], ["https://tec.openplanner.team/stops/Cvp3til1", "https://tec.openplanner.team/stops/Cvpcdec1"], ["https://tec.openplanner.team/stops/N532adb", "https://tec.openplanner.team/stops/N532aea"], ["https://tec.openplanner.team/stops/H1ss348b", "https://tec.openplanner.team/stops/H1vg359b"], ["https://tec.openplanner.team/stops/H2hp261b", "https://tec.openplanner.team/stops/H2mo122d"], ["https://tec.openplanner.team/stops/Louencl1", "https://tec.openplanner.team/stops/Louroos3"], ["https://tec.openplanner.team/stops/LeYteeh1", "https://tec.openplanner.team/stops/LeYteeh2"], ["https://tec.openplanner.team/stops/X342ahb", "https://tec.openplanner.team/stops/X346alb"], ["https://tec.openplanner.team/stops/X896aca", "https://tec.openplanner.team/stops/X898aga"], ["https://tec.openplanner.team/stops/LSzeg--2", "https://tec.openplanner.team/stops/N506bvb"], ["https://tec.openplanner.team/stops/LLNbeau2", "https://tec.openplanner.team/stops/LSpcarr1"], ["https://tec.openplanner.team/stops/X670agb", "https://tec.openplanner.team/stops/X670ana"], ["https://tec.openplanner.team/stops/N201ana", "https://tec.openplanner.team/stops/N202aib"], ["https://tec.openplanner.team/stops/X804bma", "https://tec.openplanner.team/stops/X804bpb"], ["https://tec.openplanner.team/stops/H1ma231a", "https://tec.openplanner.team/stops/H1ni323a"], ["https://tec.openplanner.team/stops/Ccicent3", "https://tec.openplanner.team/stops/Ccivill1"], ["https://tec.openplanner.team/stops/LcRmich1", "https://tec.openplanner.team/stops/LcRmich2"], ["https://tec.openplanner.team/stops/Bhenpln1", "https://tec.openplanner.team/stops/Bhenpln2"], ["https://tec.openplanner.team/stops/Bwavcen1", "https://tec.openplanner.team/stops/Bwavfbe1"], ["https://tec.openplanner.team/stops/X651acd", "https://tec.openplanner.team/stops/X651adb"], ["https://tec.openplanner.team/stops/H4bq100a", "https://tec.openplanner.team/stops/H4ea132c"], ["https://tec.openplanner.team/stops/H4wp148b", "https://tec.openplanner.team/stops/H4wp150c"], ["https://tec.openplanner.team/stops/N232baa", "https://tec.openplanner.team/stops/N232bra"], ["https://tec.openplanner.team/stops/LWRferm1", "https://tec.openplanner.team/stops/LWRferm2"], ["https://tec.openplanner.team/stops/LElverl2", "https://tec.openplanner.team/stops/LTaxhos1"], ["https://tec.openplanner.team/stops/N565abb", "https://tec.openplanner.team/stops/N565aca"], ["https://tec.openplanner.team/stops/N501hza", "https://tec.openplanner.team/stops/N501ipa"], ["https://tec.openplanner.team/stops/Bwavnep1", "https://tec.openplanner.team/stops/Bwavpar1"], ["https://tec.openplanner.team/stops/LJEchat4", "https://tec.openplanner.team/stops/LJEverd1"], ["https://tec.openplanner.team/stops/Lsecoop1", "https://tec.openplanner.team/stops/Lsecoop2"], ["https://tec.openplanner.team/stops/LFR201-1", "https://tec.openplanner.team/stops/LFRspa-1"], ["https://tec.openplanner.team/stops/N217aea", "https://tec.openplanner.team/stops/N217aeb"], ["https://tec.openplanner.team/stops/LCEboll2", "https://tec.openplanner.team/stops/LCEec--2"], ["https://tec.openplanner.team/stops/X660ahb", "https://tec.openplanner.team/stops/X660aja"], ["https://tec.openplanner.team/stops/H4ba103a", "https://tec.openplanner.team/stops/H4pi136b"], ["https://tec.openplanner.team/stops/Causncb2", "https://tec.openplanner.team/stops/N543aja"], ["https://tec.openplanner.team/stops/Laghetr2", "https://tec.openplanner.team/stops/Lkigare2"], ["https://tec.openplanner.team/stops/LLagert*", "https://tec.openplanner.team/stops/LWHzave1"], ["https://tec.openplanner.team/stops/LEHmarc2", "https://tec.openplanner.team/stops/LNCvill1"], ["https://tec.openplanner.team/stops/N229asa", "https://tec.openplanner.team/stops/N540alb"], ["https://tec.openplanner.team/stops/N570aba", "https://tec.openplanner.team/stops/N570abb"], ["https://tec.openplanner.team/stops/Bernegl3", "https://tec.openplanner.team/stops/Bernegl4"], ["https://tec.openplanner.team/stops/LnErech1", "https://tec.openplanner.team/stops/LoEauto1"], ["https://tec.openplanner.team/stops/LWerola1", "https://tec.openplanner.team/stops/LWerola2"], ["https://tec.openplanner.team/stops/H1ba105a", "https://tec.openplanner.team/stops/H1te173b"], ["https://tec.openplanner.team/stops/Bnivpro2", "https://tec.openplanner.team/stops/Bnivsho1"], ["https://tec.openplanner.team/stops/LBThaut1", "https://tec.openplanner.team/stops/LBThaut2"], ["https://tec.openplanner.team/stops/Bdvminc1", "https://tec.openplanner.team/stops/Bdvminc2"], ["https://tec.openplanner.team/stops/X650ama", "https://tec.openplanner.team/stops/X650amb"], ["https://tec.openplanner.team/stops/LPLcarr3", "https://tec.openplanner.team/stops/LPLcent2"], ["https://tec.openplanner.team/stops/H4te249b", "https://tec.openplanner.team/stops/H4te413b"], ["https://tec.openplanner.team/stops/H4ty327a", "https://tec.openplanner.team/stops/H4ty348b"], ["https://tec.openplanner.team/stops/H1ha199a", "https://tec.openplanner.team/stops/H1ha199b"], ["https://tec.openplanner.team/stops/Bfelcsa2", "https://tec.openplanner.team/stops/H2fa103b"], ["https://tec.openplanner.team/stops/X979aca", "https://tec.openplanner.team/stops/X979acb"], ["https://tec.openplanner.team/stops/LNAbass1", "https://tec.openplanner.team/stops/LNAmart1"], ["https://tec.openplanner.team/stops/N568aab", "https://tec.openplanner.team/stops/N568ada"], ["https://tec.openplanner.team/stops/Lstpole1", "https://tec.openplanner.team/stops/Lstscie2"], ["https://tec.openplanner.team/stops/Cci4bra4", "https://tec.openplanner.team/stops/NC02apa"], ["https://tec.openplanner.team/stops/N219afa", "https://tec.openplanner.team/stops/N219afb"], ["https://tec.openplanner.team/stops/Lbofrai2", "https://tec.openplanner.team/stops/Lbotige2"], ["https://tec.openplanner.team/stops/Bllncyc1", "https://tec.openplanner.team/stops/Bllnfla3"], ["https://tec.openplanner.team/stops/Bbeubos1", "https://tec.openplanner.team/stops/N524adb"], ["https://tec.openplanner.team/stops/Llxec--1", "https://tec.openplanner.team/stops/LSAeg--2"], ["https://tec.openplanner.team/stops/Cgyhaie2", "https://tec.openplanner.team/stops/Cgystbe2"], ["https://tec.openplanner.team/stops/LJesole1", "https://tec.openplanner.team/stops/LMOstat1"], ["https://tec.openplanner.team/stops/N543bgd", "https://tec.openplanner.team/stops/N543bta"], ["https://tec.openplanner.team/stops/N531aja", "https://tec.openplanner.team/stops/N531aka"], ["https://tec.openplanner.team/stops/Lmnchal1", "https://tec.openplanner.team/stops/Lmnsech2"], ["https://tec.openplanner.team/stops/Bmarmpr1", "https://tec.openplanner.team/stops/Bvlvmar2"], ["https://tec.openplanner.team/stops/H1br131b", "https://tec.openplanner.team/stops/H1br132a"], ["https://tec.openplanner.team/stops/X747ada", "https://tec.openplanner.team/stops/X747akb"], ["https://tec.openplanner.team/stops/Baudvdr1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/X746agc", "https://tec.openplanner.team/stops/X746agd"], ["https://tec.openplanner.team/stops/LPOchan1", "https://tec.openplanner.team/stops/LPOecol1"], ["https://tec.openplanner.team/stops/LGesent1", "https://tec.openplanner.team/stops/LGesent2"], ["https://tec.openplanner.team/stops/LMHtill1", "https://tec.openplanner.team/stops/LMHtill2"], ["https://tec.openplanner.team/stops/H2pr118a", "https://tec.openplanner.team/stops/H3so187a"], ["https://tec.openplanner.team/stops/LeUhook2", "https://tec.openplanner.team/stops/LeUwert2"], ["https://tec.openplanner.team/stops/Cchsud04", "https://tec.openplanner.team/stops/Cchsud13"], ["https://tec.openplanner.team/stops/Lbocond2", "https://tec.openplanner.team/stops/LPLcite2"], ["https://tec.openplanner.team/stops/Lcehipp1", "https://tec.openplanner.team/stops/Lcesart1"], ["https://tec.openplanner.team/stops/X636ata", "https://tec.openplanner.team/stops/X636atb"], ["https://tec.openplanner.team/stops/X733ahb", "https://tec.openplanner.team/stops/X733aib"], ["https://tec.openplanner.team/stops/H1cu117b", "https://tec.openplanner.team/stops/H1cu117c"], ["https://tec.openplanner.team/stops/X638adb", "https://tec.openplanner.team/stops/X638afa"], ["https://tec.openplanner.team/stops/H1hn210a", "https://tec.openplanner.team/stops/H1hn210b"], ["https://tec.openplanner.team/stops/N501fna", "https://tec.openplanner.team/stops/N501fpa"], ["https://tec.openplanner.team/stops/N539aeb", "https://tec.openplanner.team/stops/N539ana"], ["https://tec.openplanner.team/stops/H4ir165b", "https://tec.openplanner.team/stops/H5at139a"], ["https://tec.openplanner.team/stops/Cjudefi2", "https://tec.openplanner.team/stops/Cjuplho1"], ["https://tec.openplanner.team/stops/H4wi166b", "https://tec.openplanner.team/stops/H4wi170b"], ["https://tec.openplanner.team/stops/X820abb", "https://tec.openplanner.team/stops/X820afa"], ["https://tec.openplanner.team/stops/Bpieh171", "https://tec.openplanner.team/stops/Bpiehvi2"], ["https://tec.openplanner.team/stops/LBUvall1", "https://tec.openplanner.team/stops/NL30afa"], ["https://tec.openplanner.team/stops/H1wa145a", "https://tec.openplanner.team/stops/H1wa149b"], ["https://tec.openplanner.team/stops/LhGkirc6", "https://tec.openplanner.team/stops/LhGrote1"], ["https://tec.openplanner.team/stops/N508ama", "https://tec.openplanner.team/stops/N508aoa"], ["https://tec.openplanner.team/stops/LAWaube1", "https://tec.openplanner.team/stops/LAWdefr2"], ["https://tec.openplanner.team/stops/Bbwacol1", "https://tec.openplanner.team/stops/Bwavbwa1"], ["https://tec.openplanner.team/stops/X663adb", "https://tec.openplanner.team/stops/X663afb"], ["https://tec.openplanner.team/stops/H3so159a", "https://tec.openplanner.team/stops/H3so163b"], ["https://tec.openplanner.team/stops/H1bo108a", "https://tec.openplanner.team/stops/H1bo108c"], ["https://tec.openplanner.team/stops/Cfcchen2", "https://tec.openplanner.team/stops/Cfccuch2"], ["https://tec.openplanner.team/stops/LHUchin*", "https://tec.openplanner.team/stops/NL76aqb"], ["https://tec.openplanner.team/stops/X760aba", "https://tec.openplanner.team/stops/X789aga"], ["https://tec.openplanner.team/stops/Chhegli3", "https://tec.openplanner.team/stops/Cmx4che1"], ["https://tec.openplanner.team/stops/H1mj124b", "https://tec.openplanner.team/stops/H1mj130a"], ["https://tec.openplanner.team/stops/H4bs112a", "https://tec.openplanner.team/stops/H4ca122b"], ["https://tec.openplanner.team/stops/X609aib", "https://tec.openplanner.team/stops/X609aja"], ["https://tec.openplanner.team/stops/N229ana", "https://tec.openplanner.team/stops/N229anb"], ["https://tec.openplanner.team/stops/Blascim2", "https://tec.openplanner.team/stops/Blasvil1"], ["https://tec.openplanner.team/stops/Bottrfa1", "https://tec.openplanner.team/stops/Bottrfa4"], ["https://tec.openplanner.team/stops/Llgauxc1", "https://tec.openplanner.team/stops/Llgborg2"], ["https://tec.openplanner.team/stops/Cfbcabi1", "https://tec.openplanner.team/stops/Cvrfcho2"], ["https://tec.openplanner.team/stops/N539aab", "https://tec.openplanner.team/stops/N539aca"], ["https://tec.openplanner.team/stops/N531ahb", "https://tec.openplanner.team/stops/N576aja"], ["https://tec.openplanner.team/stops/Crcgmah1", "https://tec.openplanner.team/stops/NH03aea"], ["https://tec.openplanner.team/stops/LESfont2", "https://tec.openplanner.team/stops/LESvign1"], ["https://tec.openplanner.team/stops/LLz21--1", "https://tec.openplanner.team/stops/LRfbeau2"], ["https://tec.openplanner.team/stops/N236ala", "https://tec.openplanner.team/stops/N236apa"], ["https://tec.openplanner.team/stops/Bjodeco2", "https://tec.openplanner.team/stops/Bjodgar1"], ["https://tec.openplanner.team/stops/H4ab100b", "https://tec.openplanner.team/stops/H5ar100a"], ["https://tec.openplanner.team/stops/H4mx118a", "https://tec.openplanner.team/stops/H4mx120b"], ["https://tec.openplanner.team/stops/X394adb", "https://tec.openplanner.team/stops/X394afb"], ["https://tec.openplanner.team/stops/N138aea", "https://tec.openplanner.team/stops/N138afa"], ["https://tec.openplanner.team/stops/Ctyhame1", "https://tec.openplanner.team/stops/Ctynamu2"], ["https://tec.openplanner.team/stops/N383aeb", "https://tec.openplanner.team/stops/N874aga"], ["https://tec.openplanner.team/stops/H4mo152a", "https://tec.openplanner.team/stops/H4mo177a"], ["https://tec.openplanner.team/stops/X662afb", "https://tec.openplanner.team/stops/X662ana"], ["https://tec.openplanner.team/stops/H4mo157a", "https://tec.openplanner.team/stops/H4mo157b"], ["https://tec.openplanner.team/stops/Buccrac2", "https://tec.openplanner.team/stops/Buccvoi2"], ["https://tec.openplanner.team/stops/Lanplat1", "https://tec.openplanner.team/stops/Lanpont2"], ["https://tec.openplanner.team/stops/LODarbr1", "https://tec.openplanner.team/stops/X547ara"], ["https://tec.openplanner.team/stops/X937aca", "https://tec.openplanner.team/stops/X945aeb"], ["https://tec.openplanner.team/stops/Lbrcygn2", "https://tec.openplanner.team/stops/Lbrmour2"], ["https://tec.openplanner.team/stops/N509aja", "https://tec.openplanner.team/stops/N509ajb"], ["https://tec.openplanner.team/stops/X804aua", "https://tec.openplanner.team/stops/X804avb"], ["https://tec.openplanner.team/stops/N261ahb", "https://tec.openplanner.team/stops/N338aia"], ["https://tec.openplanner.team/stops/Clb4bra2", "https://tec.openplanner.team/stops/H1lo120b"], ["https://tec.openplanner.team/stops/Bgisber2", "https://tec.openplanner.team/stops/Bgisman2"], ["https://tec.openplanner.team/stops/N515ara", "https://tec.openplanner.team/stops/N515asa"], ["https://tec.openplanner.team/stops/LHFec--2", "https://tec.openplanner.team/stops/LHFec--4"], ["https://tec.openplanner.team/stops/N519ala", "https://tec.openplanner.team/stops/N519arb"], ["https://tec.openplanner.team/stops/H1gh147b", "https://tec.openplanner.team/stops/H1gh167b"], ["https://tec.openplanner.team/stops/NH01ana", "https://tec.openplanner.team/stops/NH01asb"], ["https://tec.openplanner.team/stops/Bsrgm101", "https://tec.openplanner.team/stops/Bzlucam2"], ["https://tec.openplanner.team/stops/H1fl133c", "https://tec.openplanner.team/stops/H1fl135b"], ["https://tec.openplanner.team/stops/LwPdorf1", "https://tec.openplanner.team/stops/LwPdorf2"], ["https://tec.openplanner.team/stops/Lalmitt1", "https://tec.openplanner.team/stops/LXhnouv1"], ["https://tec.openplanner.team/stops/Llgcadr3", "https://tec.openplanner.team/stops/Llgcadr6"], ["https://tec.openplanner.team/stops/X925alb", "https://tec.openplanner.team/stops/X925amb"], ["https://tec.openplanner.team/stops/H4lz126a", "https://tec.openplanner.team/stops/H4lz158a"], ["https://tec.openplanner.team/stops/N138aac", "https://tec.openplanner.team/stops/N138aea"], ["https://tec.openplanner.team/stops/LBUrout1", "https://tec.openplanner.team/stops/LBUrout2"], ["https://tec.openplanner.team/stops/H1nm138b", "https://tec.openplanner.team/stops/H1si167b"], ["https://tec.openplanner.team/stops/LAufech1", "https://tec.openplanner.team/stops/LSDgris1"], ["https://tec.openplanner.team/stops/Csrcarr1", "https://tec.openplanner.team/stops/Csregli2"], ["https://tec.openplanner.team/stops/X804aaa", "https://tec.openplanner.team/stops/X804aba"], ["https://tec.openplanner.team/stops/H5pe125a", "https://tec.openplanner.team/stops/H5pe125b"], ["https://tec.openplanner.team/stops/N141aob", "https://tec.openplanner.team/stops/N146aea"], ["https://tec.openplanner.team/stops/Lronamo1", "https://tec.openplanner.team/stops/Lronamo2"], ["https://tec.openplanner.team/stops/Bbchcab1", "https://tec.openplanner.team/stops/Bbchdev1"], ["https://tec.openplanner.team/stops/H1bl104c", "https://tec.openplanner.team/stops/H1pd144b"], ["https://tec.openplanner.team/stops/LCaalou1", "https://tec.openplanner.team/stops/LCaresi1"], ["https://tec.openplanner.team/stops/Cfmgara1", "https://tec.openplanner.team/stops/Cfmrrou1"], ["https://tec.openplanner.team/stops/Lemcort1", "https://tec.openplanner.team/stops/Lemeg--1"], ["https://tec.openplanner.team/stops/N229agb", "https://tec.openplanner.team/stops/N229aoa"], ["https://tec.openplanner.team/stops/H1he104b", "https://tec.openplanner.team/stops/H1he111b"], ["https://tec.openplanner.team/stops/LPLc65-1", "https://tec.openplanner.team/stops/LPLc65-2"], ["https://tec.openplanner.team/stops/N542ama", "https://tec.openplanner.team/stops/N542amb"], ["https://tec.openplanner.team/stops/H4by119b", "https://tec.openplanner.team/stops/H4ro154a"], ["https://tec.openplanner.team/stops/LBY4che2", "https://tec.openplanner.team/stops/LMhvina1"], ["https://tec.openplanner.team/stops/Lagvern1", "https://tec.openplanner.team/stops/Llgcond2"], ["https://tec.openplanner.team/stops/X750ada", "https://tec.openplanner.team/stops/X750aeb"], ["https://tec.openplanner.team/stops/X762aba", "https://tec.openplanner.team/stops/X762abb"], ["https://tec.openplanner.team/stops/H4hu116b", "https://tec.openplanner.team/stops/H4ld127b"], ["https://tec.openplanner.team/stops/Ccodubo2", "https://tec.openplanner.team/stops/Ccovies1"], ["https://tec.openplanner.team/stops/Bclgpch2", "https://tec.openplanner.team/stops/Bwavvpr1"], ["https://tec.openplanner.team/stops/Cbmclar1", "https://tec.openplanner.team/stops/Cbmgrav2"], ["https://tec.openplanner.team/stops/X746ama", "https://tec.openplanner.team/stops/X746amb"], ["https://tec.openplanner.team/stops/N516aib", "https://tec.openplanner.team/stops/N581abb"], ["https://tec.openplanner.team/stops/LHMsipp1", "https://tec.openplanner.team/stops/LSIroch1"], ["https://tec.openplanner.team/stops/Blascvi1", "https://tec.openplanner.team/stops/Bohnpla2"], ["https://tec.openplanner.team/stops/Bohncha2", "https://tec.openplanner.team/stops/Bohngen1"], ["https://tec.openplanner.team/stops/LHThall2", "https://tec.openplanner.team/stops/LHThall4"], ["https://tec.openplanner.team/stops/LNAanne1", "https://tec.openplanner.team/stops/LNAbouh1"], ["https://tec.openplanner.team/stops/LlNbusc2", "https://tec.openplanner.team/stops/LlNsc652"], ["https://tec.openplanner.team/stops/N557aba", "https://tec.openplanner.team/stops/N557abb"], ["https://tec.openplanner.team/stops/Cjuaero2", "https://tec.openplanner.team/stops/Cjuaero4"], ["https://tec.openplanner.team/stops/Bgoestu1", "https://tec.openplanner.team/stops/Bgoewat2"], ["https://tec.openplanner.team/stops/LTyh24-1", "https://tec.openplanner.team/stops/LTywaut2"], ["https://tec.openplanner.team/stops/Bcsebea1", "https://tec.openplanner.team/stops/Bottbru2"], ["https://tec.openplanner.team/stops/X986afa", "https://tec.openplanner.team/stops/X986afb"], ["https://tec.openplanner.team/stops/X796adb", "https://tec.openplanner.team/stops/X796aeb"], ["https://tec.openplanner.team/stops/Bvirduj2", "https://tec.openplanner.team/stops/Bvirhsa1"], ["https://tec.openplanner.team/stops/Blhutco1", "https://tec.openplanner.team/stops/Blhutco3"], ["https://tec.openplanner.team/stops/X941afa", "https://tec.openplanner.team/stops/X941ahb"], ["https://tec.openplanner.team/stops/LBgbaga2", "https://tec.openplanner.team/stops/LBgbaga4"], ["https://tec.openplanner.team/stops/LFsherm2", "https://tec.openplanner.team/stops/LFslign2"], ["https://tec.openplanner.team/stops/Lagindu2", "https://tec.openplanner.team/stops/Lagorch2"], ["https://tec.openplanner.team/stops/X614aca", "https://tec.openplanner.team/stops/X614aob"], ["https://tec.openplanner.team/stops/Bmarfjo1", "https://tec.openplanner.team/stops/Bmargve2"], ["https://tec.openplanner.team/stops/X654adb", "https://tec.openplanner.team/stops/X654aka"], ["https://tec.openplanner.team/stops/X850agb", "https://tec.openplanner.team/stops/X850ala"], ["https://tec.openplanner.team/stops/Louhauf1", "https://tec.openplanner.team/stops/Loumair1"], ["https://tec.openplanner.team/stops/LBLtroi1", "https://tec.openplanner.team/stops/LBLtroi2"], ["https://tec.openplanner.team/stops/Bbsicul1", "https://tec.openplanner.team/stops/Bbsicul2"], ["https://tec.openplanner.team/stops/LBAbooz1", "https://tec.openplanner.team/stops/LCEplac2"], ["https://tec.openplanner.team/stops/X947ada", "https://tec.openplanner.team/stops/X947afa"], ["https://tec.openplanner.team/stops/N562bia", "https://tec.openplanner.team/stops/N562bib"], ["https://tec.openplanner.team/stops/Lgrbell2", "https://tec.openplanner.team/stops/Lgrdefr2"], ["https://tec.openplanner.team/stops/Lqbecco1", "https://tec.openplanner.team/stops/LSAtrih2"], ["https://tec.openplanner.team/stops/LaMbull1", "https://tec.openplanner.team/stops/LaMbull2"], ["https://tec.openplanner.team/stops/Lvcfogu1", "https://tec.openplanner.team/stops/Lvcreve2"], ["https://tec.openplanner.team/stops/Cgoathe1", "https://tec.openplanner.team/stops/Cgoathe2"], ["https://tec.openplanner.team/stops/Cctchav1", "https://tec.openplanner.team/stops/Cctjoue5"], ["https://tec.openplanner.team/stops/X982aka", "https://tec.openplanner.team/stops/X982akb"], ["https://tec.openplanner.team/stops/LOVhetr1", "https://tec.openplanner.team/stops/LSopost1"], ["https://tec.openplanner.team/stops/Louaout1", "https://tec.openplanner.team/stops/Loufleu1"], ["https://tec.openplanner.team/stops/Bbstegl2", "https://tec.openplanner.team/stops/Bbstpan2"], ["https://tec.openplanner.team/stops/Bhaless2", "https://tec.openplanner.team/stops/Bhalvel1"], ["https://tec.openplanner.team/stops/H2bh103b", "https://tec.openplanner.team/stops/H2bh103c"], ["https://tec.openplanner.team/stops/Ctrchat2", "https://tec.openplanner.team/stops/Ctrterm2"], ["https://tec.openplanner.team/stops/Balsbeg1", "https://tec.openplanner.team/stops/Brsgrol1"], ["https://tec.openplanner.team/stops/LWNbeto2", "https://tec.openplanner.team/stops/LWNcime1"], ["https://tec.openplanner.team/stops/Lvealbe1", "https://tec.openplanner.team/stops/Lvevert4"], ["https://tec.openplanner.team/stops/H1le118a", "https://tec.openplanner.team/stops/H1ol140a"], ["https://tec.openplanner.team/stops/H4eg104b", "https://tec.openplanner.team/stops/H4eg106a"], ["https://tec.openplanner.team/stops/H4sl154a", "https://tec.openplanner.team/stops/H4sl154b"], ["https://tec.openplanner.team/stops/NR38aeb", "https://tec.openplanner.team/stops/NR38afb"], ["https://tec.openplanner.team/stops/Blineco2", "https://tec.openplanner.team/stops/Blingar2"], ["https://tec.openplanner.team/stops/H1wa136b", "https://tec.openplanner.team/stops/H1wa140a"], ["https://tec.openplanner.team/stops/H4pe126a", "https://tec.openplanner.team/stops/H4pe126b"], ["https://tec.openplanner.team/stops/Brixfro3", "https://tec.openplanner.team/stops/Brixmar3"], ["https://tec.openplanner.team/stops/LBLfoxh2", "https://tec.openplanner.team/stops/LMEeg--1"], ["https://tec.openplanner.team/stops/LSJeg--1", "https://tec.openplanner.team/stops/LWRtroi2"], ["https://tec.openplanner.team/stops/H4do102a", "https://tec.openplanner.team/stops/H4do107a"], ["https://tec.openplanner.team/stops/LwL100-2", "https://tec.openplanner.team/stops/LwLfuss2"], ["https://tec.openplanner.team/stops/LFLcarr2", "https://tec.openplanner.team/stops/LFLgara1"], ["https://tec.openplanner.team/stops/LeUfuss1", "https://tec.openplanner.team/stops/LeUkehr3"], ["https://tec.openplanner.team/stops/N134aaa", "https://tec.openplanner.team/stops/N134aac"], ["https://tec.openplanner.team/stops/N501iwb", "https://tec.openplanner.team/stops/N521ahb"], ["https://tec.openplanner.team/stops/N548aca", "https://tec.openplanner.team/stops/N548acc"], ["https://tec.openplanner.team/stops/Crspana3", "https://tec.openplanner.team/stops/Crsstem2"], ["https://tec.openplanner.team/stops/Blemsta1", "https://tec.openplanner.team/stops/Blemwro1"], ["https://tec.openplanner.team/stops/H4by115a", "https://tec.openplanner.team/stops/H4by115d"], ["https://tec.openplanner.team/stops/X663ana", "https://tec.openplanner.team/stops/X663arb"], ["https://tec.openplanner.team/stops/Lseaven1", "https://tec.openplanner.team/stops/Lsecoll2"], ["https://tec.openplanner.team/stops/Lcejobe1", "https://tec.openplanner.team/stops/Lgrgoff1"], ["https://tec.openplanner.team/stops/Bcsgcou1", "https://tec.openplanner.team/stops/Blaspch1"], ["https://tec.openplanner.team/stops/LSZsolw1", "https://tec.openplanner.team/stops/LSZsolw2"], ["https://tec.openplanner.team/stops/H1gr123c", "https://tec.openplanner.team/stops/H1gr123d"], ["https://tec.openplanner.team/stops/LSPmalc1", "https://tec.openplanner.team/stops/LWycarr1"], ["https://tec.openplanner.team/stops/H4fr142a", "https://tec.openplanner.team/stops/H4fr390a"], ["https://tec.openplanner.team/stops/N562bna", "https://tec.openplanner.team/stops/N562bwb"], ["https://tec.openplanner.team/stops/Caibino1", "https://tec.openplanner.team/stops/N543bba"], ["https://tec.openplanner.team/stops/X601ayb", "https://tec.openplanner.team/stops/X601dfa"], ["https://tec.openplanner.team/stops/H4rx141b", "https://tec.openplanner.team/stops/H4rx143a"], ["https://tec.openplanner.team/stops/LPclaro2", "https://tec.openplanner.team/stops/LPctrog1"], ["https://tec.openplanner.team/stops/LBjpech2", "https://tec.openplanner.team/stops/X575aea"], ["https://tec.openplanner.team/stops/Bclgmev1", "https://tec.openplanner.team/stops/Bclgpla2"], ["https://tec.openplanner.team/stops/LOdcris1", "https://tec.openplanner.team/stops/LOdmonu3"], ["https://tec.openplanner.team/stops/H1ha188a", "https://tec.openplanner.team/stops/H1ha188b"], ["https://tec.openplanner.team/stops/Brsggde2", "https://tec.openplanner.team/stops/Brsgpbo2"], ["https://tec.openplanner.team/stops/X811aoa", "https://tec.openplanner.team/stops/X811aob"], ["https://tec.openplanner.team/stops/LeYraaf1", "https://tec.openplanner.team/stops/LeYvoge2"], ["https://tec.openplanner.team/stops/H3so184a", "https://tec.openplanner.team/stops/H3so185a"], ["https://tec.openplanner.team/stops/H4wn124a", "https://tec.openplanner.team/stops/H4wn128b"], ["https://tec.openplanner.team/stops/N525aeb", "https://tec.openplanner.team/stops/N525aed"], ["https://tec.openplanner.team/stops/Bsaumlk2", "https://tec.openplanner.team/stops/Bsaumlp1"], ["https://tec.openplanner.team/stops/X601acb", "https://tec.openplanner.team/stops/X601bga"], ["https://tec.openplanner.team/stops/X812aza", "https://tec.openplanner.team/stops/X812bba"], ["https://tec.openplanner.team/stops/X625abb", "https://tec.openplanner.team/stops/X625acb"], ["https://tec.openplanner.team/stops/Bptemch1", "https://tec.openplanner.team/stops/H1hv135a"], ["https://tec.openplanner.team/stops/LlSzoll1", "https://tec.openplanner.team/stops/LlZkirc2"], ["https://tec.openplanner.team/stops/Lmlprie2", "https://tec.openplanner.team/stops/Lmlscie2"], ["https://tec.openplanner.team/stops/LhZkape1", "https://tec.openplanner.team/stops/LhZkape2"], ["https://tec.openplanner.team/stops/Bnivfhu1", "https://tec.openplanner.team/stops/Bnivzon1"], ["https://tec.openplanner.team/stops/Bwaypon1", "https://tec.openplanner.team/stops/Bwaypon2"], ["https://tec.openplanner.team/stops/X801apb", "https://tec.openplanner.team/stops/X801aqa"], ["https://tec.openplanner.team/stops/Lmnhorl1", "https://tec.openplanner.team/stops/Lmnhorl2"], ["https://tec.openplanner.team/stops/Ccosart4", "https://tec.openplanner.team/stops/Csograf1"], ["https://tec.openplanner.team/stops/NL74adb", "https://tec.openplanner.team/stops/NL74aga"], ["https://tec.openplanner.team/stops/Cgzcour2", "https://tec.openplanner.team/stops/Cgzpjeu1"], ["https://tec.openplanner.team/stops/LaMhe421", "https://tec.openplanner.team/stops/LaMmark1"], ["https://tec.openplanner.team/stops/LBzvill1", "https://tec.openplanner.team/stops/LBzvill2"], ["https://tec.openplanner.team/stops/N530aia", "https://tec.openplanner.team/stops/N530aja"], ["https://tec.openplanner.team/stops/H1fl133e", "https://tec.openplanner.team/stops/H1je369b"], ["https://tec.openplanner.team/stops/X663aaa", "https://tec.openplanner.team/stops/X664aoa"], ["https://tec.openplanner.team/stops/Clrcomb1", "https://tec.openplanner.team/stops/Clrcomb2"], ["https://tec.openplanner.team/stops/H4pl122a", "https://tec.openplanner.team/stops/H4pl136a"], ["https://tec.openplanner.team/stops/X736agb", "https://tec.openplanner.team/stops/X753aab"], ["https://tec.openplanner.team/stops/Bitrcan2", "https://tec.openplanner.team/stops/Bitrsar2"], ["https://tec.openplanner.team/stops/X817afa", "https://tec.openplanner.team/stops/X817agb"], ["https://tec.openplanner.team/stops/X948alb", "https://tec.openplanner.team/stops/X948amb"], ["https://tec.openplanner.team/stops/H4hg158b", "https://tec.openplanner.team/stops/H4hg160b"], ["https://tec.openplanner.team/stops/H2ll187c", "https://tec.openplanner.team/stops/H2ll199a"], ["https://tec.openplanner.team/stops/H2lc169d", "https://tec.openplanner.team/stops/H2lc170b"], ["https://tec.openplanner.team/stops/H4ta115a", "https://tec.openplanner.team/stops/H4ta115b"], ["https://tec.openplanner.team/stops/LBImili2", "https://tec.openplanner.team/stops/LBIvill4"], ["https://tec.openplanner.team/stops/X595aba", "https://tec.openplanner.team/stops/X713anb"], ["https://tec.openplanner.team/stops/Blsmvan1", "https://tec.openplanner.team/stops/Bpelegl3"], ["https://tec.openplanner.team/stops/LBStec-2", "https://tec.openplanner.team/stops/LHSheur1"], ["https://tec.openplanner.team/stops/LBSgeer1", "https://tec.openplanner.team/stops/LBSkann2"], ["https://tec.openplanner.team/stops/Ljucaba2", "https://tec.openplanner.team/stops/Ljuroch1"], ["https://tec.openplanner.team/stops/Cmggthi2", "https://tec.openplanner.team/stops/Cmgtour1"], ["https://tec.openplanner.team/stops/X609aba", "https://tec.openplanner.team/stops/X609aea"], ["https://tec.openplanner.team/stops/Bhalgja1", "https://tec.openplanner.team/stops/Blemwro1"], ["https://tec.openplanner.team/stops/H4or113a", "https://tec.openplanner.team/stops/H4or115b"], ["https://tec.openplanner.team/stops/LDLbois1", "https://tec.openplanner.team/stops/LDLheid1"], ["https://tec.openplanner.team/stops/LVvboma2", "https://tec.openplanner.team/stops/X982bfb"], ["https://tec.openplanner.team/stops/Bdvmccu2", "https://tec.openplanner.team/stops/Bdvmsar2"], ["https://tec.openplanner.team/stops/N539aya", "https://tec.openplanner.team/stops/N539ayb"], ["https://tec.openplanner.team/stops/N501eaa", "https://tec.openplanner.team/stops/N501eab"], ["https://tec.openplanner.team/stops/LBNforg2", "https://tec.openplanner.team/stops/LBNvilv1"], ["https://tec.openplanner.team/stops/Lveherl1", "https://tec.openplanner.team/stops/Lveherl2"], ["https://tec.openplanner.team/stops/H1pa117b", "https://tec.openplanner.team/stops/H1pa120b"], ["https://tec.openplanner.team/stops/N501kwb", "https://tec.openplanner.team/stops/N501kxb"], ["https://tec.openplanner.team/stops/Lanrois1", "https://tec.openplanner.team/stops/Lantonn1"], ["https://tec.openplanner.team/stops/Cgrgend2", "https://tec.openplanner.team/stops/Cjojonc1"], ["https://tec.openplanner.team/stops/LBRruel1", "https://tec.openplanner.team/stops/LBRtrag1"], ["https://tec.openplanner.team/stops/N543apa", "https://tec.openplanner.team/stops/N543axb"], ["https://tec.openplanner.team/stops/H2re166a", "https://tec.openplanner.team/stops/H2re166b"], ["https://tec.openplanner.team/stops/N544adb", "https://tec.openplanner.team/stops/N577aab"], ["https://tec.openplanner.team/stops/Brsgecu2", "https://tec.openplanner.team/stops/Brsgpbo1"], ["https://tec.openplanner.team/stops/LMIcamp1", "https://tec.openplanner.team/stops/LMIcamp2"], ["https://tec.openplanner.team/stops/H4es112b", "https://tec.openplanner.team/stops/H4es117a"], ["https://tec.openplanner.team/stops/Bramcom2", "https://tec.openplanner.team/stops/NR27aba"], ["https://tec.openplanner.team/stops/LELeg--2", "https://tec.openplanner.team/stops/LELhard2"], ["https://tec.openplanner.team/stops/LRGgrov2", "https://tec.openplanner.team/stops/LRGmoul1"], ["https://tec.openplanner.team/stops/H1mb135b", "https://tec.openplanner.team/stops/H1mb166b"], ["https://tec.openplanner.team/stops/LGAbois2", "https://tec.openplanner.team/stops/LGAnovi1"], ["https://tec.openplanner.team/stops/X608akb", "https://tec.openplanner.team/stops/X608ana"], ["https://tec.openplanner.team/stops/LBLcalv2", "https://tec.openplanner.team/stops/LBLghuy3"], ["https://tec.openplanner.team/stops/Ctupont2", "https://tec.openplanner.team/stops/Cturoge2"], ["https://tec.openplanner.team/stops/Lghlieg1", "https://tec.openplanner.team/stops/Lghterm*"], ["https://tec.openplanner.team/stops/N539ada", "https://tec.openplanner.team/stops/N539aqb"], ["https://tec.openplanner.team/stops/Lreclou1", "https://tec.openplanner.team/stops/Lreec--1"], ["https://tec.openplanner.team/stops/X788aaa", "https://tec.openplanner.team/stops/X789ahd"], ["https://tec.openplanner.team/stops/Blmlcle1", "https://tec.openplanner.team/stops/Blmldmi1"], ["https://tec.openplanner.team/stops/LnUcamp1", "https://tec.openplanner.team/stops/LnUneun3"], ["https://tec.openplanner.team/stops/X715akb", "https://tec.openplanner.team/stops/X715aqa"], ["https://tec.openplanner.team/stops/H4ga153b", "https://tec.openplanner.team/stops/H4ha171b"], ["https://tec.openplanner.team/stops/Lhrlalo2", "https://tec.openplanner.team/stops/Lhrmare8"], ["https://tec.openplanner.team/stops/N532aga", "https://tec.openplanner.team/stops/N532aja"], ["https://tec.openplanner.team/stops/Bjodfco2", "https://tec.openplanner.team/stops/Bpiehvi2"], ["https://tec.openplanner.team/stops/H1pa112b", "https://tec.openplanner.team/stops/H1pd145a"], ["https://tec.openplanner.team/stops/X746aaa", "https://tec.openplanner.team/stops/X746aab"], ["https://tec.openplanner.team/stops/Cfawain1", "https://tec.openplanner.team/stops/Cfawain2"], ["https://tec.openplanner.team/stops/LVLhalb2", "https://tec.openplanner.team/stops/LVLpane2"], ["https://tec.openplanner.team/stops/LMsec--1", "https://tec.openplanner.team/stops/LMspont1"], ["https://tec.openplanner.team/stops/H4we137a", "https://tec.openplanner.team/stops/H4we138b"], ["https://tec.openplanner.team/stops/Llgbaya4", "https://tec.openplanner.team/stops/Llgbonn2"], ["https://tec.openplanner.team/stops/X725ata", "https://tec.openplanner.team/stops/X725atb"], ["https://tec.openplanner.team/stops/H4ka190b", "https://tec.openplanner.team/stops/H4ka195a"], ["https://tec.openplanner.team/stops/H4wa150b", "https://tec.openplanner.team/stops/H4wa161a"], ["https://tec.openplanner.team/stops/LFEhoup1", "https://tec.openplanner.team/stops/X595afb"], ["https://tec.openplanner.team/stops/X640ama", "https://tec.openplanner.team/stops/X640ava"], ["https://tec.openplanner.team/stops/LoDcorn2", "https://tec.openplanner.team/stops/LoDscha2"], ["https://tec.openplanner.team/stops/H2na131a", "https://tec.openplanner.team/stops/H2na133b"], ["https://tec.openplanner.team/stops/LDLbeau2", "https://tec.openplanner.team/stops/LHYnoid2"], ["https://tec.openplanner.team/stops/H4am100a", "https://tec.openplanner.team/stops/H4an110b"], ["https://tec.openplanner.team/stops/X822aha", "https://tec.openplanner.team/stops/X822ahb"], ["https://tec.openplanner.team/stops/H5at124a", "https://tec.openplanner.team/stops/H5at137a"], ["https://tec.openplanner.team/stops/LLxalle1", "https://tec.openplanner.team/stops/LLxcana1"], ["https://tec.openplanner.team/stops/H5wo125a", "https://tec.openplanner.team/stops/H5wo133b"], ["https://tec.openplanner.team/stops/H4av100a", "https://tec.openplanner.team/stops/H4av100b"], ["https://tec.openplanner.team/stops/NB33aja", "https://tec.openplanner.team/stops/NB59akb"], ["https://tec.openplanner.team/stops/N132acb", "https://tec.openplanner.team/stops/N152abc"], ["https://tec.openplanner.team/stops/N511apa", "https://tec.openplanner.team/stops/N511aua"], ["https://tec.openplanner.team/stops/LBVronx2", "https://tec.openplanner.team/stops/LRffroi1"], ["https://tec.openplanner.team/stops/N424abb", "https://tec.openplanner.team/stops/NH01atb"], ["https://tec.openplanner.team/stops/LFsbasc2", "https://tec.openplanner.team/stops/LSLeg--1"], ["https://tec.openplanner.team/stops/Bohnbra1", "https://tec.openplanner.team/stops/Bohnegl2"], ["https://tec.openplanner.team/stops/Bnivfhu1", "https://tec.openplanner.team/stops/Bnivfhu2"], ["https://tec.openplanner.team/stops/Cchwate1", "https://tec.openplanner.team/stops/Cchwate4"], ["https://tec.openplanner.team/stops/LFmpoin1", "https://tec.openplanner.team/stops/LTyhapp2"], ["https://tec.openplanner.team/stops/X601aba", "https://tec.openplanner.team/stops/X601abb"], ["https://tec.openplanner.team/stops/N104abb", "https://tec.openplanner.team/stops/N104ada"], ["https://tec.openplanner.team/stops/N507aad", "https://tec.openplanner.team/stops/NL68adc"], ["https://tec.openplanner.team/stops/NH21acb", "https://tec.openplanner.team/stops/NH21ada"], ["https://tec.openplanner.team/stops/N127bha", "https://tec.openplanner.team/stops/N134aga"], ["https://tec.openplanner.team/stops/X747aba", "https://tec.openplanner.team/stops/X747abb"], ["https://tec.openplanner.team/stops/X746aib", "https://tec.openplanner.team/stops/X746aja"], ["https://tec.openplanner.team/stops/Lflcime2", "https://tec.openplanner.team/stops/Lflgare1"], ["https://tec.openplanner.team/stops/X729aaa", "https://tec.openplanner.team/stops/X745aca"], ["https://tec.openplanner.team/stops/Cfccol1", "https://tec.openplanner.team/stops/Cfccol2"], ["https://tec.openplanner.team/stops/Ljelexh2", "https://tec.openplanner.team/stops/Ljeorda1"], ["https://tec.openplanner.team/stops/Cfcgrat1", "https://tec.openplanner.team/stops/Cfcgrat2"], ["https://tec.openplanner.team/stops/H5bl141a", "https://tec.openplanner.team/stops/H5bl144b"], ["https://tec.openplanner.team/stops/LFEn6--1", "https://tec.openplanner.team/stops/LRMeg--2"], ["https://tec.openplanner.team/stops/Lsehtsa2", "https://tec.openplanner.team/stops/Lserena1"], ["https://tec.openplanner.team/stops/X782afa", "https://tec.openplanner.team/stops/X782aja"], ["https://tec.openplanner.team/stops/NH01aia", "https://tec.openplanner.team/stops/NH01alb"], ["https://tec.openplanner.team/stops/Cgxbeau2", "https://tec.openplanner.team/stops/Cgxdeba2"], ["https://tec.openplanner.team/stops/N117aya", "https://tec.openplanner.team/stops/N117aza"], ["https://tec.openplanner.team/stops/H4ry131b", "https://tec.openplanner.team/stops/H4ry132b"], ["https://tec.openplanner.team/stops/LWbregn1", "https://tec.openplanner.team/stops/X512abb"], ["https://tec.openplanner.team/stops/Cchcaya2", "https://tec.openplanner.team/stops/Cchdelf1"], ["https://tec.openplanner.team/stops/H3go102a", "https://tec.openplanner.team/stops/H3go102b"], ["https://tec.openplanner.team/stops/X721apa", "https://tec.openplanner.team/stops/X721apb"], ["https://tec.openplanner.team/stops/H4bi100b", "https://tec.openplanner.team/stops/H4pq114b"], ["https://tec.openplanner.team/stops/Bbgever1", "https://tec.openplanner.team/stops/Brsregl2"], ["https://tec.openplanner.team/stops/LeMdorf1", "https://tec.openplanner.team/stops/LhRandl2"], ["https://tec.openplanner.team/stops/X747aeb", "https://tec.openplanner.team/stops/X747akb"], ["https://tec.openplanner.team/stops/LbOkalv1", "https://tec.openplanner.team/stops/LbOvith2"], ["https://tec.openplanner.team/stops/N543cba", "https://tec.openplanner.team/stops/N543cbc"], ["https://tec.openplanner.team/stops/LSLfler1", "https://tec.openplanner.team/stops/LSLprov2"], ["https://tec.openplanner.team/stops/X833aca", "https://tec.openplanner.team/stops/X833acb"], ["https://tec.openplanner.team/stops/X601agb", "https://tec.openplanner.team/stops/X662asa"], ["https://tec.openplanner.team/stops/N501azb", "https://tec.openplanner.team/stops/N501cdc"], ["https://tec.openplanner.team/stops/N104aea", "https://tec.openplanner.team/stops/N118bba"], ["https://tec.openplanner.team/stops/LhPhale2", "https://tec.openplanner.team/stops/LvA30--1"], ["https://tec.openplanner.team/stops/Bdoncen2", "https://tec.openplanner.team/stops/Bjdsbro1"], ["https://tec.openplanner.team/stops/N211aga", "https://tec.openplanner.team/stops/N211agb"], ["https://tec.openplanner.team/stops/H4ch117a", "https://tec.openplanner.team/stops/H4ch118b"], ["https://tec.openplanner.team/stops/Cwgrans1", "https://tec.openplanner.team/stops/Cwgrans2"], ["https://tec.openplanner.team/stops/LmIvale1", "https://tec.openplanner.team/stops/LmIvale3"], ["https://tec.openplanner.team/stops/Barqhro1", "https://tec.openplanner.team/stops/Bfelada2"], ["https://tec.openplanner.team/stops/Bovecha1", "https://tec.openplanner.team/stops/Bwavcin1"], ["https://tec.openplanner.team/stops/Bcrngat1", "https://tec.openplanner.team/stops/Bcrnpla3"], ["https://tec.openplanner.team/stops/LFebas-2", "https://tec.openplanner.team/stops/LRIcent2"], ["https://tec.openplanner.team/stops/X801alb", "https://tec.openplanner.team/stops/X801cka"], ["https://tec.openplanner.team/stops/Bllncbr2", "https://tec.openplanner.team/stops/Bllnfeq1"], ["https://tec.openplanner.team/stops/Causart2", "https://tec.openplanner.team/stops/N543cqb"], ["https://tec.openplanner.team/stops/Llglys-1", "https://tec.openplanner.team/stops/Llgnaim2"], ["https://tec.openplanner.team/stops/N243aeb", "https://tec.openplanner.team/stops/N252aaa"], ["https://tec.openplanner.team/stops/LhSkape1", "https://tec.openplanner.team/stops/LhSkape2"], ["https://tec.openplanner.team/stops/Chhbiet1", "https://tec.openplanner.team/stops/Chhverr1"], ["https://tec.openplanner.team/stops/LBIpost1", "https://tec.openplanner.team/stops/Lghwass1"], ["https://tec.openplanner.team/stops/N118axa", "https://tec.openplanner.team/stops/N118bba"], ["https://tec.openplanner.team/stops/N538afb", "https://tec.openplanner.team/stops/N538awb"], ["https://tec.openplanner.team/stops/Bsoihci2", "https://tec.openplanner.team/stops/H3so175a"], ["https://tec.openplanner.team/stops/NL80aib", "https://tec.openplanner.team/stops/NL80aua"], ["https://tec.openplanner.team/stops/LHYec--2", "https://tec.openplanner.team/stops/LHYlinc2"], ["https://tec.openplanner.team/stops/Cchviad2", "https://tec.openplanner.team/stops/CMpige2"], ["https://tec.openplanner.team/stops/Bbsgbos3", "https://tec.openplanner.team/stops/Bbsgfva2"], ["https://tec.openplanner.team/stops/H5pe139b", "https://tec.openplanner.team/stops/H5pe152a"], ["https://tec.openplanner.team/stops/X801bja", "https://tec.openplanner.team/stops/X801cja"], ["https://tec.openplanner.team/stops/H2ll178a", "https://tec.openplanner.team/stops/H2ll187c"], ["https://tec.openplanner.team/stops/Lsmeg--1", "https://tec.openplanner.team/stops/Lsmpost1"], ["https://tec.openplanner.team/stops/Brsgfbl3", "https://tec.openplanner.team/stops/Brsgfbl4"], ["https://tec.openplanner.team/stops/H4mv188a", "https://tec.openplanner.team/stops/H4mv188b"], ["https://tec.openplanner.team/stops/Lhracec1", "https://tec.openplanner.team/stops/Lhrwigi2"], ["https://tec.openplanner.team/stops/H4ga149a", "https://tec.openplanner.team/stops/H4ga155a"], ["https://tec.openplanner.team/stops/LmAaldr2", "https://tec.openplanner.team/stops/X792abb"], ["https://tec.openplanner.team/stops/H1do111a", "https://tec.openplanner.team/stops/H1do114b"], ["https://tec.openplanner.team/stops/LVNleco1", "https://tec.openplanner.team/stops/LWDplac2"], ["https://tec.openplanner.team/stops/N501gma", "https://tec.openplanner.team/stops/N501lca"], ["https://tec.openplanner.team/stops/LmNelis1", "https://tec.openplanner.team/stops/LsC216-2"], ["https://tec.openplanner.team/stops/Creespi1", "https://tec.openplanner.team/stops/Crewaha1"], ["https://tec.openplanner.team/stops/H5bs104b", "https://tec.openplanner.team/stops/H5pe145b"], ["https://tec.openplanner.team/stops/H1fa118a", "https://tec.openplanner.team/stops/H1pe132a"], ["https://tec.openplanner.team/stops/Lhr1ave2", "https://tec.openplanner.team/stops/Lhrrhee*"], ["https://tec.openplanner.team/stops/Bcbqcht1", "https://tec.openplanner.team/stops/Bcbqh451"], ["https://tec.openplanner.team/stops/LAmeclu2", "https://tec.openplanner.team/stops/LHUzoni3"], ["https://tec.openplanner.team/stops/LHGvill1", "https://tec.openplanner.team/stops/LVllieg1"], ["https://tec.openplanner.team/stops/N543anh", "https://tec.openplanner.team/stops/N543avg"], ["https://tec.openplanner.team/stops/X342afb", "https://tec.openplanner.team/stops/X361aaa"], ["https://tec.openplanner.team/stops/N513asa", "https://tec.openplanner.team/stops/N514aja"], ["https://tec.openplanner.team/stops/Lgrdeni2", "https://tec.openplanner.team/stops/Lgrside2"], ["https://tec.openplanner.team/stops/H4th139a", "https://tec.openplanner.team/stops/H4th140a"], ["https://tec.openplanner.team/stops/Botteco2", "https://tec.openplanner.team/stops/Bottvtc2"], ["https://tec.openplanner.team/stops/Bettars1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/LSogare1", "https://tec.openplanner.team/stops/LSokrin1"], ["https://tec.openplanner.team/stops/Lghwass1", "https://tec.openplanner.team/stops/Lghwass2"], ["https://tec.openplanner.team/stops/Bperrsr1", "https://tec.openplanner.team/stops/Bperrsr2"], ["https://tec.openplanner.team/stops/Lfhborg1", "https://tec.openplanner.team/stops/Lfhborg2"], ["https://tec.openplanner.team/stops/Bnil3fo1", "https://tec.openplanner.team/stops/Bnil3fo2"], ["https://tec.openplanner.team/stops/N513aab", "https://tec.openplanner.team/stops/N521ata"], ["https://tec.openplanner.team/stops/N516ahb", "https://tec.openplanner.team/stops/N516apa"], ["https://tec.openplanner.team/stops/N311ada", "https://tec.openplanner.team/stops/N311afb"], ["https://tec.openplanner.team/stops/Cchlefe2", "https://tec.openplanner.team/stops/CMsama1"], ["https://tec.openplanner.team/stops/LFHsucr2", "https://tec.openplanner.team/stops/LNvrout1"], ["https://tec.openplanner.team/stops/H1hr115a", "https://tec.openplanner.team/stops/H1hr128c"], ["https://tec.openplanner.team/stops/Cchparc1", "https://tec.openplanner.team/stops/Cchprun2"], ["https://tec.openplanner.team/stops/H4wn126a", "https://tec.openplanner.team/stops/H4wn129a"], ["https://tec.openplanner.team/stops/H4pp122a", "https://tec.openplanner.team/stops/H4ve134b"], ["https://tec.openplanner.team/stops/H4lz118a", "https://tec.openplanner.team/stops/H4pi131a"], ["https://tec.openplanner.team/stops/LCleg--1", "https://tec.openplanner.team/stops/LThnouv2"], ["https://tec.openplanner.team/stops/Cmmegli3", "https://tec.openplanner.team/stops/Cmmplac3"], ["https://tec.openplanner.team/stops/Cgxmorg2", "https://tec.openplanner.team/stops/Cmoecol2"], ["https://tec.openplanner.team/stops/Crecouc1", "https://tec.openplanner.team/stops/Crehout2"], ["https://tec.openplanner.team/stops/X768aca", "https://tec.openplanner.team/stops/X769aqa"], ["https://tec.openplanner.team/stops/X784abb", "https://tec.openplanner.team/stops/X784aja"], ["https://tec.openplanner.team/stops/Brebhos1", "https://tec.openplanner.team/stops/Brebvic1"], ["https://tec.openplanner.team/stops/H2ll192a", "https://tec.openplanner.team/stops/H2ll267a"], ["https://tec.openplanner.team/stops/LBmbara1", "https://tec.openplanner.team/stops/LHcaube1"], ["https://tec.openplanner.team/stops/Lghhaut2", "https://tec.openplanner.team/stops/Lghlogi1"], ["https://tec.openplanner.team/stops/H4gu108a", "https://tec.openplanner.team/stops/H4gu108b"], ["https://tec.openplanner.team/stops/X649acb", "https://tec.openplanner.team/stops/X671agb"], ["https://tec.openplanner.team/stops/X615acb", "https://tec.openplanner.team/stops/X681aca"], ["https://tec.openplanner.team/stops/Bdonlat1", "https://tec.openplanner.team/stops/Blthvil1"], ["https://tec.openplanner.team/stops/N109ada", "https://tec.openplanner.team/stops/N109adc"], ["https://tec.openplanner.team/stops/X896aba", "https://tec.openplanner.team/stops/X896abb"], ["https://tec.openplanner.team/stops/Landolh2", "https://tec.openplanner.team/stops/Lanhoud2"], ["https://tec.openplanner.team/stops/Cchvil21", "https://tec.openplanner.team/stops/Cchvil22"], ["https://tec.openplanner.team/stops/X922aka", "https://tec.openplanner.team/stops/X922ala"], ["https://tec.openplanner.team/stops/X764aab", "https://tec.openplanner.team/stops/X764agb"], ["https://tec.openplanner.team/stops/N145ada", "https://tec.openplanner.team/stops/N145aec"], ["https://tec.openplanner.team/stops/N501hqa", "https://tec.openplanner.team/stops/N501ifa"], ["https://tec.openplanner.team/stops/LOLrafh2", "https://tec.openplanner.team/stops/LSOtrou1"], ["https://tec.openplanner.team/stops/X659afa", "https://tec.openplanner.team/stops/X659ana"], ["https://tec.openplanner.team/stops/LHHecol1", "https://tec.openplanner.team/stops/LHHtill1"], ["https://tec.openplanner.team/stops/LMoeg--1", "https://tec.openplanner.team/stops/LMovieu1"], ["https://tec.openplanner.team/stops/Cjugohi1", "https://tec.openplanner.team/stops/Cjugohi4"], ["https://tec.openplanner.team/stops/Cauglac1", "https://tec.openplanner.team/stops/N543cbc"], ["https://tec.openplanner.team/stops/Bpechos1", "https://tec.openplanner.team/stops/Bpecvme1"], ["https://tec.openplanner.team/stops/Bnivpar1", "https://tec.openplanner.team/stops/Bnivpba2"], ["https://tec.openplanner.team/stops/Cobhaut1", "https://tec.openplanner.team/stops/Cobhaut2"], ["https://tec.openplanner.team/stops/X601bfa", "https://tec.openplanner.team/stops/X601bga"], ["https://tec.openplanner.team/stops/Cjupllo2", "https://tec.openplanner.team/stops/Clostan2"], ["https://tec.openplanner.team/stops/Cmchai1", "https://tec.openplanner.team/stops/Cmivert2"], ["https://tec.openplanner.team/stops/Llgsnap3", "https://tec.openplanner.team/stops/Llgsnap5"], ["https://tec.openplanner.team/stops/X750apa", "https://tec.openplanner.team/stops/X750apb"], ["https://tec.openplanner.team/stops/LTIchev1", "https://tec.openplanner.team/stops/LTIsain2"], ["https://tec.openplanner.team/stops/Bgembhe1", "https://tec.openplanner.team/stops/N541acb"], ["https://tec.openplanner.team/stops/LFMveur1", "https://tec.openplanner.team/stops/LFMveur2"], ["https://tec.openplanner.team/stops/LGDgdou1", "https://tec.openplanner.team/stops/LWLhagi2"], ["https://tec.openplanner.team/stops/N584aca", "https://tec.openplanner.team/stops/N584aqa"], ["https://tec.openplanner.team/stops/Lghsimo2", "https://tec.openplanner.team/stops/Lmolagu2"], ["https://tec.openplanner.team/stops/LPLcarr2", "https://tec.openplanner.team/stops/LPLcroi2"], ["https://tec.openplanner.team/stops/H4ae101a", "https://tec.openplanner.team/stops/H4ef113a"], ["https://tec.openplanner.team/stops/H4og207a", "https://tec.openplanner.team/stops/H4vd230b"], ["https://tec.openplanner.team/stops/X597anb", "https://tec.openplanner.team/stops/X597aob"], ["https://tec.openplanner.team/stops/Bspkker1", "https://tec.openplanner.team/stops/H1mk110b"], ["https://tec.openplanner.team/stops/Lbemc--2", "https://tec.openplanner.team/stops/Lsweg--1"], ["https://tec.openplanner.team/stops/X661aib", "https://tec.openplanner.team/stops/X661ara"], ["https://tec.openplanner.team/stops/X801apa", "https://tec.openplanner.team/stops/X801cka"], ["https://tec.openplanner.team/stops/N230aga", "https://tec.openplanner.team/stops/N540abb"], ["https://tec.openplanner.team/stops/Cflglav2", "https://tec.openplanner.team/stops/Cflpost1"], ["https://tec.openplanner.team/stops/Cmosaba2", "https://tec.openplanner.team/stops/Cmosaba4"], ["https://tec.openplanner.team/stops/X898agb", "https://tec.openplanner.team/stops/X898aha"], ["https://tec.openplanner.team/stops/LLrbuis1", "https://tec.openplanner.team/stops/LLrfagn1"], ["https://tec.openplanner.team/stops/Bincegl1", "https://tec.openplanner.team/stops/Binclib1"], ["https://tec.openplanner.team/stops/Cdaptca1", "https://tec.openplanner.team/stops/CMdamp1"], ["https://tec.openplanner.team/stops/LWAmouh1", "https://tec.openplanner.team/stops/LWAmouh2"], ["https://tec.openplanner.team/stops/N501fra", "https://tec.openplanner.team/stops/N501hfb"], ["https://tec.openplanner.team/stops/Cbzfrom1", "https://tec.openplanner.team/stops/Creoudo2"], ["https://tec.openplanner.team/stops/X663asa", "https://tec.openplanner.team/stops/X663ata"], ["https://tec.openplanner.team/stops/N506awa", "https://tec.openplanner.team/stops/N506bod"], ["https://tec.openplanner.team/stops/LSAchef1", "https://tec.openplanner.team/stops/LSAmous1"], ["https://tec.openplanner.team/stops/X666agb", "https://tec.openplanner.team/stops/X666ahb"], ["https://tec.openplanner.team/stops/X873aaa", "https://tec.openplanner.team/stops/X873aab"], ["https://tec.openplanner.team/stops/Cpcwaut1", "https://tec.openplanner.team/stops/Cpcwaut2"], ["https://tec.openplanner.team/stops/N201aca", "https://tec.openplanner.team/stops/N201ada"], ["https://tec.openplanner.team/stops/LlOpfar1", "https://tec.openplanner.team/stops/LsTgren2"], ["https://tec.openplanner.team/stops/X605abb", "https://tec.openplanner.team/stops/X605aga"], ["https://tec.openplanner.team/stops/Bhmmbog1", "https://tec.openplanner.team/stops/Btlgmee1"], ["https://tec.openplanner.team/stops/X618ada", "https://tec.openplanner.team/stops/X618alb"], ["https://tec.openplanner.team/stops/Bcbqcim1", "https://tec.openplanner.team/stops/Bcbqp252"], ["https://tec.openplanner.team/stops/H2bh108b", "https://tec.openplanner.team/stops/H2bh118a"], ["https://tec.openplanner.team/stops/LBiroch1", "https://tec.openplanner.team/stops/LDOviad2"], ["https://tec.openplanner.team/stops/Cfrcoqu2", "https://tec.openplanner.team/stops/Cfrfede2"], ["https://tec.openplanner.team/stops/H4lp121a", "https://tec.openplanner.team/stops/H4lp123a"], ["https://tec.openplanner.team/stops/H1cu108a", "https://tec.openplanner.team/stops/H1ms247b"], ["https://tec.openplanner.team/stops/H2ep144a", "https://tec.openplanner.team/stops/H2re168a"], ["https://tec.openplanner.team/stops/H4br107a", "https://tec.openplanner.team/stops/H4br107b"], ["https://tec.openplanner.team/stops/LWAgare*", "https://tec.openplanner.team/stops/LWAlong5"], ["https://tec.openplanner.team/stops/LlA43--2", "https://tec.openplanner.team/stops/LlAdorf1"], ["https://tec.openplanner.team/stops/N510acf", "https://tec.openplanner.team/stops/N513acb"], ["https://tec.openplanner.team/stops/N538afa", "https://tec.openplanner.team/stops/N538afb"], ["https://tec.openplanner.team/stops/Cmcbriq1", "https://tec.openplanner.team/stops/Cmcbriq2"], ["https://tec.openplanner.team/stops/N560aaa", "https://tec.openplanner.team/stops/N560aab"], ["https://tec.openplanner.team/stops/Cmcegli2", "https://tec.openplanner.team/stops/Csysans2"], ["https://tec.openplanner.team/stops/LClange1", "https://tec.openplanner.team/stops/LFdbruy1"], ["https://tec.openplanner.team/stops/LAivill1", "https://tec.openplanner.team/stops/LENgend1"], ["https://tec.openplanner.team/stops/X791aaa", "https://tec.openplanner.team/stops/X791aab"], ["https://tec.openplanner.team/stops/Bixleix1", "https://tec.openplanner.team/stops/Bixleix2"], ["https://tec.openplanner.team/stops/LMIterr1", "https://tec.openplanner.team/stops/LMIterr2"], ["https://tec.openplanner.team/stops/Ldimeun1", "https://tec.openplanner.team/stops/Ldimeun2"], ["https://tec.openplanner.team/stops/N506ava", "https://tec.openplanner.team/stops/N506bab"], ["https://tec.openplanner.team/stops/Lougros2", "https://tec.openplanner.team/stops/Lstbold2"], ["https://tec.openplanner.team/stops/Lcalaro1", "https://tec.openplanner.team/stops/Lcapisc2"], ["https://tec.openplanner.team/stops/Brebcha2", "https://tec.openplanner.team/stops/Brebras1"], ["https://tec.openplanner.team/stops/Bjodpvi1", "https://tec.openplanner.team/stops/Bjodsje2"], ["https://tec.openplanner.team/stops/LCPgare1", "https://tec.openplanner.team/stops/LCPpech2"], ["https://tec.openplanner.team/stops/LBDtill2", "https://tec.openplanner.team/stops/LVEbors2"], ["https://tec.openplanner.team/stops/X613ada", "https://tec.openplanner.team/stops/X614bda"], ["https://tec.openplanner.team/stops/Cmamons1", "https://tec.openplanner.team/stops/Cmareun2"], ["https://tec.openplanner.team/stops/X880agb", "https://tec.openplanner.team/stops/X880agd"], ["https://tec.openplanner.team/stops/Cradado1", "https://tec.openplanner.team/stops/Cradado2"], ["https://tec.openplanner.team/stops/Lchsa631", "https://tec.openplanner.team/stops/Lrahoig2"], ["https://tec.openplanner.team/stops/N423aea", "https://tec.openplanner.team/stops/NH21aea"], ["https://tec.openplanner.team/stops/X752aca", "https://tec.openplanner.team/stops/X758aga"], ["https://tec.openplanner.team/stops/LBPeg--2", "https://tec.openplanner.team/stops/LBPxhav2"], ["https://tec.openplanner.team/stops/N310aaa", "https://tec.openplanner.team/stops/N312adb"], ["https://tec.openplanner.team/stops/Bmasegl2", "https://tec.openplanner.team/stops/NB33ahb"], ["https://tec.openplanner.team/stops/N501bmb", "https://tec.openplanner.team/stops/N501bub"], ["https://tec.openplanner.team/stops/Bhlvgar2", "https://tec.openplanner.team/stops/Blpghou2"], ["https://tec.openplanner.team/stops/N894aab", "https://tec.openplanner.team/stops/N894aca"], ["https://tec.openplanner.team/stops/X982asb", "https://tec.openplanner.team/stops/X982awa"], ["https://tec.openplanner.team/stops/Ccunove1", "https://tec.openplanner.team/stops/Ccupres1"], ["https://tec.openplanner.team/stops/X869aab", "https://tec.openplanner.team/stops/X869aba"], ["https://tec.openplanner.team/stops/Lbrcard2", "https://tec.openplanner.team/stops/Lbrfusi2"], ["https://tec.openplanner.team/stops/N548aaa", "https://tec.openplanner.team/stops/N548acb"], ["https://tec.openplanner.team/stops/X926aeb", "https://tec.openplanner.team/stops/X926afa"], ["https://tec.openplanner.team/stops/H4ce103a", "https://tec.openplanner.team/stops/H4ve140a"], ["https://tec.openplanner.team/stops/X758ahb", "https://tec.openplanner.team/stops/X840acb"], ["https://tec.openplanner.team/stops/Loucoti2", "https://tec.openplanner.team/stops/Louvira2"], ["https://tec.openplanner.team/stops/LGLeg--2", "https://tec.openplanner.team/stops/LGLgare*"], ["https://tec.openplanner.team/stops/H1al107a", "https://tec.openplanner.team/stops/H1bs111a"], ["https://tec.openplanner.team/stops/N343ajb", "https://tec.openplanner.team/stops/N343aoa"], ["https://tec.openplanner.team/stops/LHgroso2", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://tec.openplanner.team/stops/X640aea", "https://tec.openplanner.team/stops/X640aeb"], ["https://tec.openplanner.team/stops/H1eq115b", "https://tec.openplanner.team/stops/H1eq116a"], ["https://tec.openplanner.team/stops/Ladandr1", "https://tec.openplanner.team/stops/Ladjaur2"], ["https://tec.openplanner.team/stops/Lsemaqu1", "https://tec.openplanner.team/stops/Lsepcha4"], ["https://tec.openplanner.team/stops/LCRecmo1", "https://tec.openplanner.team/stops/LCRfize2"], ["https://tec.openplanner.team/stops/N110aca", "https://tec.openplanner.team/stops/N110ada"], ["https://tec.openplanner.team/stops/H1te183b", "https://tec.openplanner.team/stops/H1te188b"], ["https://tec.openplanner.team/stops/H4fl114a", "https://tec.openplanner.team/stops/H4wi175a"], ["https://tec.openplanner.team/stops/LOumaro1", "https://tec.openplanner.team/stops/LTaabba1"], ["https://tec.openplanner.team/stops/H4ef110b", "https://tec.openplanner.team/stops/H4ef112a"], ["https://tec.openplanner.team/stops/Ccojaur1", "https://tec.openplanner.team/stops/Ccotrie4"], ["https://tec.openplanner.team/stops/LSImewi1", "https://tec.openplanner.team/stops/LSIroch2"], ["https://tec.openplanner.team/stops/Btslcel1", "https://tec.openplanner.team/stops/Bwlhcsr1"], ["https://tec.openplanner.team/stops/H2lh125b", "https://tec.openplanner.team/stops/H2mm144b"], ["https://tec.openplanner.team/stops/LTRoasi1", "https://tec.openplanner.team/stops/LTRthie2"], ["https://tec.openplanner.team/stops/LWNbeto1", "https://tec.openplanner.team/stops/LWNfani2"], ["https://tec.openplanner.team/stops/N536abb", "https://tec.openplanner.team/stops/N536aea"], ["https://tec.openplanner.team/stops/H1em110a", "https://tec.openplanner.team/stops/H1hl123b"], ["https://tec.openplanner.team/stops/Cjudelv4", "https://tec.openplanner.team/stops/Cjumade4"], ["https://tec.openplanner.team/stops/LVPcrok1", "https://tec.openplanner.team/stops/LVPgrot4"], ["https://tec.openplanner.team/stops/Ljudeme4", "https://tec.openplanner.team/stops/Llgchan2"], ["https://tec.openplanner.team/stops/N577afb", "https://tec.openplanner.team/stops/N577akb"], ["https://tec.openplanner.team/stops/H1mj125a", "https://tec.openplanner.team/stops/H1mj129b"], ["https://tec.openplanner.team/stops/Lghcfer2", "https://tec.openplanner.team/stops/Lghviad2"], ["https://tec.openplanner.team/stops/Cjxdesc1", "https://tec.openplanner.team/stops/Cjxdesc2"], ["https://tec.openplanner.team/stops/H2hg269b", "https://tec.openplanner.team/stops/H2mi123b"], ["https://tec.openplanner.team/stops/N426afa", "https://tec.openplanner.team/stops/N426afb"], ["https://tec.openplanner.team/stops/Bmartil1", "https://tec.openplanner.team/stops/Csachas2"], ["https://tec.openplanner.team/stops/N535acc", "https://tec.openplanner.team/stops/N535afa"], ["https://tec.openplanner.team/stops/Cthha501", "https://tec.openplanner.team/stops/Cthrpoi1"], ["https://tec.openplanner.team/stops/N501kjb", "https://tec.openplanner.team/stops/N538aqa"], ["https://tec.openplanner.team/stops/Bwatali1", "https://tec.openplanner.team/stops/Bwatpas2"], ["https://tec.openplanner.team/stops/H1gh143b", "https://tec.openplanner.team/stops/H1gh171a"], ["https://tec.openplanner.team/stops/H1vt192a", "https://tec.openplanner.team/stops/H1vt193a"], ["https://tec.openplanner.team/stops/NR38aca", "https://tec.openplanner.team/stops/NR38afa"], ["https://tec.openplanner.team/stops/Bsamegl2", "https://tec.openplanner.team/stops/NC12aab"], ["https://tec.openplanner.team/stops/LVMchpl1", "https://tec.openplanner.team/stops/LVMfoli1"], ["https://tec.openplanner.team/stops/X921agb", "https://tec.openplanner.team/stops/X921ajc"], ["https://tec.openplanner.team/stops/Ccuoise2", "https://tec.openplanner.team/stops/Ccuphai4"], ["https://tec.openplanner.team/stops/X616ada", "https://tec.openplanner.team/stops/X616aea"], ["https://tec.openplanner.team/stops/N526aea", "https://tec.openplanner.team/stops/N527aba"], ["https://tec.openplanner.team/stops/Bwatnrs1", "https://tec.openplanner.team/stops/Bwatppa2"], ["https://tec.openplanner.team/stops/Cfacamp1", "https://tec.openplanner.team/stops/Cfaheni1"], ["https://tec.openplanner.team/stops/H1ms273a", "https://tec.openplanner.team/stops/H1ms285a"], ["https://tec.openplanner.team/stops/Lhrathe1", "https://tec.openplanner.team/stops/Lhrathe2"], ["https://tec.openplanner.team/stops/X902ana", "https://tec.openplanner.team/stops/X902anb"], ["https://tec.openplanner.team/stops/LWaccom2", "https://tec.openplanner.team/stops/LWLtamb1"], ["https://tec.openplanner.team/stops/LCAwals1", "https://tec.openplanner.team/stops/LCAwals2"], ["https://tec.openplanner.team/stops/N117asa", "https://tec.openplanner.team/stops/N117asb"], ["https://tec.openplanner.team/stops/Cjuchli1", "https://tec.openplanner.team/stops/Cjuchli3"], ["https://tec.openplanner.team/stops/N539aha", "https://tec.openplanner.team/stops/N539asb"], ["https://tec.openplanner.team/stops/Cfocobe2", "https://tec.openplanner.team/stops/Cforpet1"], ["https://tec.openplanner.team/stops/LMomonc2", "https://tec.openplanner.team/stops/LMoviel1"], ["https://tec.openplanner.team/stops/X882aca", "https://tec.openplanner.team/stops/X882ahb"], ["https://tec.openplanner.team/stops/LGeduc-1", "https://tec.openplanner.team/stops/LGepeck2"], ["https://tec.openplanner.team/stops/X747aab", "https://tec.openplanner.team/stops/X754aka"], ["https://tec.openplanner.team/stops/Cjumade0", "https://tec.openplanner.team/stops/CMcarr1"], ["https://tec.openplanner.team/stops/LORruis1", "https://tec.openplanner.team/stops/LORvill2"], ["https://tec.openplanner.team/stops/LHUlebe0", "https://tec.openplanner.team/stops/LHUlebe8"], ["https://tec.openplanner.team/stops/H1ms271b", "https://tec.openplanner.team/stops/H1ms313a"], ["https://tec.openplanner.team/stops/Bbsicen2", "https://tec.openplanner.team/stops/Bnivlpa1"], ["https://tec.openplanner.team/stops/H4er121a", "https://tec.openplanner.team/stops/H4er125a"], ["https://tec.openplanner.team/stops/LHDchar3", "https://tec.openplanner.team/stops/LLmvict1"], ["https://tec.openplanner.team/stops/N501hfb", "https://tec.openplanner.team/stops/N501lcb"], ["https://tec.openplanner.team/stops/N501hub", "https://tec.openplanner.team/stops/N501hya"], ["https://tec.openplanner.team/stops/H4ta128a", "https://tec.openplanner.team/stops/H4ta133b"], ["https://tec.openplanner.team/stops/LESgran1", "https://tec.openplanner.team/stops/LFNfo161"], ["https://tec.openplanner.team/stops/X746aca", "https://tec.openplanner.team/stops/X746adb"], ["https://tec.openplanner.team/stops/H4fl114a", "https://tec.openplanner.team/stops/H4mg139b"], ["https://tec.openplanner.team/stops/H5st166b", "https://tec.openplanner.team/stops/H5st167b"], ["https://tec.openplanner.team/stops/H1bn113b", "https://tec.openplanner.team/stops/H1bn114a"], ["https://tec.openplanner.team/stops/H4bo179b", "https://tec.openplanner.team/stops/H4gr110a"], ["https://tec.openplanner.team/stops/LTHcime2", "https://tec.openplanner.team/stops/LTHmont1"], ["https://tec.openplanner.team/stops/Chpchea1", "https://tec.openplanner.team/stops/Cwgplac2"], ["https://tec.openplanner.team/stops/LHolexh1", "https://tec.openplanner.team/stops/LHovill1"], ["https://tec.openplanner.team/stops/H2ha128a", "https://tec.openplanner.team/stops/H2hg146a"], ["https://tec.openplanner.team/stops/Cflmarc2", "https://tec.openplanner.team/stops/Cflpost1"], ["https://tec.openplanner.team/stops/N505aab", "https://tec.openplanner.team/stops/N505ada"], ["https://tec.openplanner.team/stops/H4do102b", "https://tec.openplanner.team/stops/H4do107c"], ["https://tec.openplanner.team/stops/N143aca", "https://tec.openplanner.team/stops/N143acb"], ["https://tec.openplanner.team/stops/X910aab", "https://tec.openplanner.team/stops/X910aba"], ["https://tec.openplanner.team/stops/LeLgrie1", "https://tec.openplanner.team/stops/LnIfrie1"], ["https://tec.openplanner.team/stops/Cmmschw1", "https://tec.openplanner.team/stops/Cmmserv2"], ["https://tec.openplanner.team/stops/Lhuderu2", "https://tec.openplanner.team/stops/Lhutill1"], ["https://tec.openplanner.team/stops/N124aaa", "https://tec.openplanner.team/stops/N124acb"], ["https://tec.openplanner.team/stops/H4wt159b", "https://tec.openplanner.team/stops/H5rx103b"], ["https://tec.openplanner.team/stops/LBWbatt1", "https://tec.openplanner.team/stops/LBWviad2"], ["https://tec.openplanner.team/stops/N517aab", "https://tec.openplanner.team/stops/N517aga"], ["https://tec.openplanner.team/stops/NL76ada", "https://tec.openplanner.team/stops/NL76asa"], ["https://tec.openplanner.team/stops/H5at128a", "https://tec.openplanner.team/stops/H5ma186b"], ["https://tec.openplanner.team/stops/LWAlong3", "https://tec.openplanner.team/stops/LWAlong5"], ["https://tec.openplanner.team/stops/Bmarpla2", "https://tec.openplanner.team/stops/Bvlvmar2"], ["https://tec.openplanner.team/stops/LbAhenk2", "https://tec.openplanner.team/stops/LmNsied2"], ["https://tec.openplanner.team/stops/N245aca", "https://tec.openplanner.team/stops/N287ada"], ["https://tec.openplanner.team/stops/N519aga", "https://tec.openplanner.team/stops/N519aob"], ["https://tec.openplanner.team/stops/X880aea", "https://tec.openplanner.team/stops/X880afb"], ["https://tec.openplanner.team/stops/N501imb", "https://tec.openplanner.team/stops/N501nbb"], ["https://tec.openplanner.team/stops/H4to134a", "https://tec.openplanner.team/stops/H4to135b"], ["https://tec.openplanner.team/stops/N501gra", "https://tec.openplanner.team/stops/N501grb"], ["https://tec.openplanner.team/stops/LPOthom2", "https://tec.openplanner.team/stops/LSdbvue2"], ["https://tec.openplanner.team/stops/Lpeptle1", "https://tec.openplanner.team/stops/Lpeptle2"], ["https://tec.openplanner.team/stops/Lsebrun1", "https://tec.openplanner.team/stops/Lsebrun2"], ["https://tec.openplanner.team/stops/LCxeg--1", "https://tec.openplanner.team/stops/LCxfawe2"], ["https://tec.openplanner.team/stops/Cnathib1", "https://tec.openplanner.team/stops/Cnathib2"], ["https://tec.openplanner.team/stops/LLOcreu1", "https://tec.openplanner.team/stops/LLOcreu2"], ["https://tec.openplanner.team/stops/N217acd", "https://tec.openplanner.team/stops/N337aib"], ["https://tec.openplanner.team/stops/X762afa", "https://tec.openplanner.team/stops/X764afb"], ["https://tec.openplanner.team/stops/X780adb", "https://tec.openplanner.team/stops/X780akb"], ["https://tec.openplanner.team/stops/H2bh110a", "https://tec.openplanner.team/stops/H2bh118b"], ["https://tec.openplanner.team/stops/LFTcroi3", "https://tec.openplanner.team/stops/LFTeg--1"], ["https://tec.openplanner.team/stops/H4ty269a", "https://tec.openplanner.team/stops/H4ty382b"], ["https://tec.openplanner.team/stops/LmI129-1", "https://tec.openplanner.team/stops/LmRmuhl1"], ["https://tec.openplanner.team/stops/LORec--*", "https://tec.openplanner.team/stops/LORhorp1"], ["https://tec.openplanner.team/stops/H1cd110a", "https://tec.openplanner.team/stops/H1ne145b"], ["https://tec.openplanner.team/stops/LBRgare1", "https://tec.openplanner.team/stops/LBRpt--1"], ["https://tec.openplanner.team/stops/X663ara", "https://tec.openplanner.team/stops/X663awb"], ["https://tec.openplanner.team/stops/H1bb118a", "https://tec.openplanner.team/stops/H1bb118b"], ["https://tec.openplanner.team/stops/H4we134b", "https://tec.openplanner.team/stops/H4we138a"], ["https://tec.openplanner.team/stops/N501bzb", "https://tec.openplanner.team/stops/N521aua"], ["https://tec.openplanner.team/stops/X658aeb", "https://tec.openplanner.team/stops/X658ahb"], ["https://tec.openplanner.team/stops/Bkrapri2", "https://tec.openplanner.team/stops/Bwolkra1"], ["https://tec.openplanner.team/stops/LFHjamo2", "https://tec.openplanner.team/stops/LVGeg--2"], ["https://tec.openplanner.team/stops/LmNkirc1", "https://tec.openplanner.team/stops/LmNstaa1"], ["https://tec.openplanner.team/stops/LHUbail1", "https://tec.openplanner.team/stops/LHUhsar1"], ["https://tec.openplanner.team/stops/Lagcler1", "https://tec.openplanner.team/stops/Lagstre1"], ["https://tec.openplanner.team/stops/N576aca", "https://tec.openplanner.team/stops/N576akd"], ["https://tec.openplanner.team/stops/X804aqa", "https://tec.openplanner.team/stops/X804bab"], ["https://tec.openplanner.team/stops/Cmmcver1", "https://tec.openplanner.team/stops/Cmmecol2"], ["https://tec.openplanner.team/stops/LBiberg1", "https://tec.openplanner.team/stops/LBivi--2"], ["https://tec.openplanner.team/stops/X561aab", "https://tec.openplanner.team/stops/X561aeb"], ["https://tec.openplanner.team/stops/H4an107a", "https://tec.openplanner.team/stops/H4an107b"], ["https://tec.openplanner.team/stops/Cjuheig1", "https://tec.openplanner.team/stops/Crowall2"], ["https://tec.openplanner.team/stops/N501fdc", "https://tec.openplanner.team/stops/N501fdd"], ["https://tec.openplanner.team/stops/Clooues1", "https://tec.openplanner.team/stops/Clooues2"], ["https://tec.openplanner.team/stops/X608acb", "https://tec.openplanner.team/stops/X608ada"], ["https://tec.openplanner.team/stops/H1ba120b", "https://tec.openplanner.team/stops/H1gh371b"], ["https://tec.openplanner.team/stops/LBNpleg1", "https://tec.openplanner.team/stops/LBNvill6"], ["https://tec.openplanner.team/stops/Bbiemse1", "https://tec.openplanner.team/stops/Bgzdfpo2"], ["https://tec.openplanner.team/stops/X822akb", "https://tec.openplanner.team/stops/X822arb"], ["https://tec.openplanner.team/stops/LHUhsar2", "https://tec.openplanner.team/stops/NL76bca"], ["https://tec.openplanner.team/stops/NL30afa", "https://tec.openplanner.team/stops/NL30afb"], ["https://tec.openplanner.team/stops/X614ana", "https://tec.openplanner.team/stops/X614anb"], ["https://tec.openplanner.team/stops/LLz21--1", "https://tec.openplanner.team/stops/LSTchen1"], ["https://tec.openplanner.team/stops/Beclpma1", "https://tec.openplanner.team/stops/H2ec106b"], ["https://tec.openplanner.team/stops/Bhmmbog1", "https://tec.openplanner.team/stops/Bhmmsca1"], ["https://tec.openplanner.team/stops/X904aba", "https://tec.openplanner.team/stops/X943agb"], ["https://tec.openplanner.team/stops/LHCponc3", "https://tec.openplanner.team/stops/LHCponc4"], ["https://tec.openplanner.team/stops/LWDhous1", "https://tec.openplanner.team/stops/LWDsieg2"], ["https://tec.openplanner.team/stops/LAOeg--2", "https://tec.openplanner.team/stops/LLStrid1"], ["https://tec.openplanner.team/stops/LLYpeup2", "https://tec.openplanner.team/stops/LLYplac1"], ["https://tec.openplanner.team/stops/LTgjalh1", "https://tec.openplanner.team/stops/LTgjalh2"], ["https://tec.openplanner.team/stops/Lcacaps2", "https://tec.openplanner.team/stops/Lcacasi1"], ["https://tec.openplanner.team/stops/H4rc231a", "https://tec.openplanner.team/stops/H4rc231c"], ["https://tec.openplanner.team/stops/H4bf106b", "https://tec.openplanner.team/stops/H4bf108b"], ["https://tec.openplanner.team/stops/X925aia", "https://tec.openplanner.team/stops/X925aib"], ["https://tec.openplanner.team/stops/LPAbour1", "https://tec.openplanner.team/stops/LPAmosa2"], ["https://tec.openplanner.team/stops/Lsechan1", "https://tec.openplanner.team/stops/Lsemaqu2"], ["https://tec.openplanner.team/stops/Lgdblom2", "https://tec.openplanner.team/stops/Lgdrena1"], ["https://tec.openplanner.team/stops/H4to139c", "https://tec.openplanner.team/stops/H4to139d"], ["https://tec.openplanner.team/stops/Bnivpba1", "https://tec.openplanner.team/stops/Bnivpba2"], ["https://tec.openplanner.team/stops/LLrbano2", "https://tec.openplanner.team/stops/LLrpape3"], ["https://tec.openplanner.team/stops/LTIp%C3%A9pi1", "https://tec.openplanner.team/stops/LTIp%C3%A9pi2"], ["https://tec.openplanner.team/stops/Bheneco2", "https://tec.openplanner.team/stops/Bhenron1"], ["https://tec.openplanner.team/stops/Cobcent2", "https://tec.openplanner.team/stops/Cobobjo2"], ["https://tec.openplanner.team/stops/LAMcime1", "https://tec.openplanner.team/stops/LAMfroi2"], ["https://tec.openplanner.team/stops/Bcrntru2", "https://tec.openplanner.team/stops/N529abb"], ["https://tec.openplanner.team/stops/Cmmami2", "https://tec.openplanner.team/stops/Cmmn1172"], ["https://tec.openplanner.team/stops/Blthbss2", "https://tec.openplanner.team/stops/Blthvil1"], ["https://tec.openplanner.team/stops/N501cyb", "https://tec.openplanner.team/stops/N528aga"], ["https://tec.openplanner.team/stops/Cclbarb1", "https://tec.openplanner.team/stops/Cstvape1"], ["https://tec.openplanner.team/stops/Bpergar3", "https://tec.openplanner.team/stops/Bperrma2"], ["https://tec.openplanner.team/stops/X602ala", "https://tec.openplanner.team/stops/X602ana"], ["https://tec.openplanner.team/stops/LLycent*", "https://tec.openplanner.team/stops/LXflong2"], ["https://tec.openplanner.team/stops/LKmcite2", "https://tec.openplanner.team/stops/LKmmelo1"], ["https://tec.openplanner.team/stops/Lmabott1", "https://tec.openplanner.team/stops/Lmabott2"], ["https://tec.openplanner.team/stops/N153aab", "https://tec.openplanner.team/stops/N153aea"], ["https://tec.openplanner.team/stops/N214aha", "https://tec.openplanner.team/stops/N214aia"], ["https://tec.openplanner.team/stops/X727afa", "https://tec.openplanner.team/stops/X748aca"], ["https://tec.openplanner.team/stops/Cmofosb2", "https://tec.openplanner.team/stops/Crorogn2"], ["https://tec.openplanner.team/stops/LhDkreu1", "https://tec.openplanner.team/stops/LmRh%C3%B6811"], ["https://tec.openplanner.team/stops/Cjucpui2", "https://tec.openplanner.team/stops/Cjugohi3"], ["https://tec.openplanner.team/stops/N519aka", "https://tec.openplanner.team/stops/N519akb"], ["https://tec.openplanner.team/stops/LBkjenn1", "https://tec.openplanner.team/stops/LWEfati1"], ["https://tec.openplanner.team/stops/H1eo105a", "https://tec.openplanner.team/stops/H1eo108b"], ["https://tec.openplanner.team/stops/LHdkenn1", "https://tec.openplanner.team/stops/LHdkenn3"], ["https://tec.openplanner.team/stops/Cfrmoul1", "https://tec.openplanner.team/stops/Cliegli2"], ["https://tec.openplanner.team/stops/LkEbran2", "https://tec.openplanner.team/stops/LMsbusc1"], ["https://tec.openplanner.team/stops/H4fa167a", "https://tec.openplanner.team/stops/H4fa167b"], ["https://tec.openplanner.team/stops/LTHcent2", "https://tec.openplanner.team/stops/LTHmaka2"], ["https://tec.openplanner.team/stops/H4ty319b", "https://tec.openplanner.team/stops/H4ty382a"], ["https://tec.openplanner.team/stops/LrAknop1", "https://tec.openplanner.team/stops/LrAknop2"], ["https://tec.openplanner.team/stops/N538aaa", "https://tec.openplanner.team/stops/N538ada"], ["https://tec.openplanner.team/stops/Lenvale1", "https://tec.openplanner.team/stops/Llmdavi2"], ["https://tec.openplanner.team/stops/LHFhard2", "https://tec.openplanner.team/stops/LJedonc1"], ["https://tec.openplanner.team/stops/H5wo127a", "https://tec.openplanner.team/stops/H5wo129b"], ["https://tec.openplanner.team/stops/X624ahb", "https://tec.openplanner.team/stops/X624ajb"], ["https://tec.openplanner.team/stops/LBBpech1", "https://tec.openplanner.team/stops/LCLscie2"], ["https://tec.openplanner.team/stops/LAMgreg1", "https://tec.openplanner.team/stops/LAMgreg2"], ["https://tec.openplanner.team/stops/Cfccabi1", "https://tec.openplanner.team/stops/Cfcpla1"], ["https://tec.openplanner.team/stops/H1fl141a", "https://tec.openplanner.team/stops/H1je221b"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Lanpont2"], ["https://tec.openplanner.team/stops/H1wa151a", "https://tec.openplanner.team/stops/H1wa155d"], ["https://tec.openplanner.team/stops/LCIcent1", "https://tec.openplanner.team/stops/LLtwanz2"], ["https://tec.openplanner.team/stops/Cmlpche2", "https://tec.openplanner.team/stops/Cmlpomm1"], ["https://tec.openplanner.team/stops/H1ob328b", "https://tec.openplanner.team/stops/H1ob336a"], ["https://tec.openplanner.team/stops/Cfmcoro2", "https://tec.openplanner.team/stops/Cfmpui82"], ["https://tec.openplanner.team/stops/N533amb", "https://tec.openplanner.team/stops/N533aoa"], ["https://tec.openplanner.team/stops/LFCscho1", "https://tec.openplanner.team/stops/LWRchem2"], ["https://tec.openplanner.team/stops/Ccugail1", "https://tec.openplanner.team/stops/Ccuwain2"], ["https://tec.openplanner.team/stops/NH01aab", "https://tec.openplanner.team/stops/NH01aba"], ["https://tec.openplanner.team/stops/Lchec--1", "https://tec.openplanner.team/stops/Lcheg--2"], ["https://tec.openplanner.team/stops/Cjxpris2", "https://tec.openplanner.team/stops/Cna4che2"], ["https://tec.openplanner.team/stops/LoDcorn1", "https://tec.openplanner.team/stops/LoDscha2"], ["https://tec.openplanner.team/stops/N576aaa", "https://tec.openplanner.team/stops/N576agb"], ["https://tec.openplanner.team/stops/H4rx176b", "https://tec.openplanner.team/stops/H4tf147a"], ["https://tec.openplanner.team/stops/LHUchpl1", "https://tec.openplanner.team/stops/LHUeuro1"], ["https://tec.openplanner.team/stops/Cmogrbu1", "https://tec.openplanner.team/stops/Cmonvci2"], ["https://tec.openplanner.team/stops/X725atb", "https://tec.openplanner.team/stops/X767aca"], ["https://tec.openplanner.team/stops/H4bo112a", "https://tec.openplanner.team/stops/H4bo118b"], ["https://tec.openplanner.team/stops/Clvorle1", "https://tec.openplanner.team/stops/Cmlbulp3"], ["https://tec.openplanner.team/stops/H2bh114a", "https://tec.openplanner.team/stops/H2bh114b"], ["https://tec.openplanner.team/stops/X601aoa", "https://tec.openplanner.team/stops/X601cea"], ["https://tec.openplanner.team/stops/Ljudeme2", "https://tec.openplanner.team/stops/Ljudeme4"], ["https://tec.openplanner.team/stops/Lghecol*", "https://tec.openplanner.team/stops/Lghpara1"], ["https://tec.openplanner.team/stops/X719aaa", "https://tec.openplanner.team/stops/X720aaa"], ["https://tec.openplanner.team/stops/Boveklo1", "https://tec.openplanner.team/stops/Bovepla2"], ["https://tec.openplanner.team/stops/H4de114b", "https://tec.openplanner.team/stops/H5rx125b"], ["https://tec.openplanner.team/stops/LCPgare1", "https://tec.openplanner.team/stops/LOncar-*"], ["https://tec.openplanner.team/stops/LREchal1", "https://tec.openplanner.team/stops/LREchal2"], ["https://tec.openplanner.team/stops/Lmohomv2", "https://tec.openplanner.team/stops/Lmojoan2"], ["https://tec.openplanner.team/stops/NL78ajb", "https://tec.openplanner.team/stops/NL78akb"], ["https://tec.openplanner.team/stops/Cchsud03", "https://tec.openplanner.team/stops/Cmlgoff2"], ["https://tec.openplanner.team/stops/LCObouh1", "https://tec.openplanner.team/stops/LCOeg--2"], ["https://tec.openplanner.team/stops/N201awb", "https://tec.openplanner.team/stops/N202acb"], ["https://tec.openplanner.team/stops/Lmabott1", "https://tec.openplanner.team/stops/Lmagara2"], ["https://tec.openplanner.team/stops/LGrchpl1", "https://tec.openplanner.team/stops/LGreg--2"], ["https://tec.openplanner.team/stops/X716aea", "https://tec.openplanner.team/stops/X716aeb"], ["https://tec.openplanner.team/stops/H2hg152a", "https://tec.openplanner.team/stops/H2hg152b"], ["https://tec.openplanner.team/stops/N211aza", "https://tec.openplanner.team/stops/N211bab"], ["https://tec.openplanner.team/stops/X750aqa", "https://tec.openplanner.team/stops/X750bdb"], ["https://tec.openplanner.team/stops/LRccent2", "https://tec.openplanner.team/stops/LRcsilo1"], ["https://tec.openplanner.team/stops/Lghferr2", "https://tec.openplanner.team/stops/Lghmont2"], ["https://tec.openplanner.team/stops/X721abb", "https://tec.openplanner.team/stops/X721aca"], ["https://tec.openplanner.team/stops/Lgrfass2", "https://tec.openplanner.team/stops/Lgrjobe2"], ["https://tec.openplanner.team/stops/Blsmvan1", "https://tec.openplanner.team/stops/Blsmvan2"], ["https://tec.openplanner.team/stops/X618aea", "https://tec.openplanner.team/stops/X618ama"], ["https://tec.openplanner.team/stops/Cculpre1", "https://tec.openplanner.team/stops/Ccuwil1"], ["https://tec.openplanner.team/stops/LSsaxhe1", "https://tec.openplanner.team/stops/N506bcb"], ["https://tec.openplanner.team/stops/H4og206b", "https://tec.openplanner.team/stops/H4og209b"], ["https://tec.openplanner.team/stops/Lsefori2", "https://tec.openplanner.team/stops/Lsemaha1"], ["https://tec.openplanner.team/stops/N385aaa", "https://tec.openplanner.team/stops/N385abb"], ["https://tec.openplanner.team/stops/X948afa", "https://tec.openplanner.team/stops/X948asa"], ["https://tec.openplanner.team/stops/Lhecarc1", "https://tec.openplanner.team/stops/Lheneuv1"], ["https://tec.openplanner.team/stops/LHbcent2", "https://tec.openplanner.team/stops/LJAcent2"], ["https://tec.openplanner.team/stops/Bsaubbo1", "https://tec.openplanner.team/stops/Bwspbos2"], ["https://tec.openplanner.team/stops/X344adb", "https://tec.openplanner.team/stops/X362ada"], ["https://tec.openplanner.team/stops/H1to151b", "https://tec.openplanner.team/stops/H1to154b"], ["https://tec.openplanner.team/stops/N132acb", "https://tec.openplanner.team/stops/N135bfb"], ["https://tec.openplanner.team/stops/Cbicamp1", "https://tec.openplanner.team/stops/Ctupont2"], ["https://tec.openplanner.team/stops/X717acb", "https://tec.openplanner.team/stops/X717ada"], ["https://tec.openplanner.team/stops/X615afa", "https://tec.openplanner.team/stops/X615afb"], ["https://tec.openplanner.team/stops/X802apa", "https://tec.openplanner.team/stops/X802ara"], ["https://tec.openplanner.team/stops/H2ep145a", "https://tec.openplanner.team/stops/H2ep145b"], ["https://tec.openplanner.team/stops/X850ahb", "https://tec.openplanner.team/stops/X850aoa"], ["https://tec.openplanner.team/stops/LmR90--2", "https://tec.openplanner.team/stops/LsHfrie2"], ["https://tec.openplanner.team/stops/Lemjoba2", "https://tec.openplanner.team/stops/Lemlami1"], ["https://tec.openplanner.team/stops/Lmnbass2", "https://tec.openplanner.team/stops/Lmndeso1"], ["https://tec.openplanner.team/stops/H1qu109a", "https://tec.openplanner.team/stops/H1qu114a"], ["https://tec.openplanner.team/stops/N135aja", "https://tec.openplanner.team/stops/N135ajb"], ["https://tec.openplanner.team/stops/X946aca", "https://tec.openplanner.team/stops/X948aeb"], ["https://tec.openplanner.team/stops/Lhrchar4", "https://tec.openplanner.team/stops/Lhrpaep2"], ["https://tec.openplanner.team/stops/H4bh102a", "https://tec.openplanner.team/stops/H4bh104a"], ["https://tec.openplanner.team/stops/LDpulve1", "https://tec.openplanner.team/stops/LFMkrin1"], ["https://tec.openplanner.team/stops/H5bl116a", "https://tec.openplanner.team/stops/H5bl142a"], ["https://tec.openplanner.team/stops/N501hua", "https://tec.openplanner.team/stops/N501hub"], ["https://tec.openplanner.team/stops/N170aab", "https://tec.openplanner.team/stops/N170abb"], ["https://tec.openplanner.team/stops/X617ahb", "https://tec.openplanner.team/stops/X617aib"], ["https://tec.openplanner.team/stops/NH03ada", "https://tec.openplanner.team/stops/NH03aeb"], ["https://tec.openplanner.team/stops/N104aab", "https://tec.openplanner.team/stops/N104aba"], ["https://tec.openplanner.team/stops/N501ivb", "https://tec.openplanner.team/stops/N521ama"], ["https://tec.openplanner.team/stops/Cchsud03", "https://tec.openplanner.team/stops/Cchsud18"], ["https://tec.openplanner.team/stops/N351ajc", "https://tec.openplanner.team/stops/N351ajd"], ["https://tec.openplanner.team/stops/H4ba101b", "https://tec.openplanner.team/stops/H4vz367a"], ["https://tec.openplanner.team/stops/LWZbeem1", "https://tec.openplanner.team/stops/LWZbeem2"], ["https://tec.openplanner.team/stops/N301aaa", "https://tec.openplanner.team/stops/N301aoa"], ["https://tec.openplanner.team/stops/X741aja", "https://tec.openplanner.team/stops/X741ajb"], ["https://tec.openplanner.team/stops/Cdaviol1", "https://tec.openplanner.team/stops/Cdaviol2"], ["https://tec.openplanner.team/stops/N117aka", "https://tec.openplanner.team/stops/N117akb"], ["https://tec.openplanner.team/stops/H1fv100a", "https://tec.openplanner.team/stops/H1fv100b"], ["https://tec.openplanner.team/stops/LGEwalk2", "https://tec.openplanner.team/stops/LLSba9-1"], ["https://tec.openplanner.team/stops/X672agb", "https://tec.openplanner.team/stops/X672akb"], ["https://tec.openplanner.team/stops/LBTwauc2", "https://tec.openplanner.team/stops/LCxchal2"], ["https://tec.openplanner.team/stops/Llgoeil2", "https://tec.openplanner.team/stops/Llgpere2"], ["https://tec.openplanner.team/stops/Ccobinc1", "https://tec.openplanner.team/stops/Ccoconf2"], ["https://tec.openplanner.team/stops/Blhugmo2", "https://tec.openplanner.team/stops/Blhutco4"], ["https://tec.openplanner.team/stops/LAUabat2", "https://tec.openplanner.team/stops/LAUbour4"], ["https://tec.openplanner.team/stops/LBRruel2", "https://tec.openplanner.team/stops/LBRtrag1"], ["https://tec.openplanner.team/stops/X608ana", "https://tec.openplanner.team/stops/X609aka"], ["https://tec.openplanner.team/stops/H2fy120d", "https://tec.openplanner.team/stops/H2mg137a"], ["https://tec.openplanner.team/stops/LAUcent1", "https://tec.openplanner.team/stops/LRmhage7"], ["https://tec.openplanner.team/stops/LPTblan1", "https://tec.openplanner.team/stops/X794aab"], ["https://tec.openplanner.team/stops/NC44aba", "https://tec.openplanner.team/stops/NC44acb"], ["https://tec.openplanner.team/stops/LVlroua2", "https://tec.openplanner.team/stops/LVltige2"], ["https://tec.openplanner.team/stops/LPbec--1", "https://tec.openplanner.team/stops/LPbeg--2"], ["https://tec.openplanner.team/stops/H1hr128c", "https://tec.openplanner.team/stops/H1hr128d"], ["https://tec.openplanner.team/stops/H4lz118a", "https://tec.openplanner.team/stops/H4lz118b"], ["https://tec.openplanner.team/stops/N501hna", "https://tec.openplanner.team/stops/N501hnb"], ["https://tec.openplanner.team/stops/Baegd741", "https://tec.openplanner.team/stops/Bramcar1"], ["https://tec.openplanner.team/stops/Lvehv--4", "https://tec.openplanner.team/stops/Lverain1"], ["https://tec.openplanner.team/stops/H4hu118a", "https://tec.openplanner.team/stops/H4hu121b"], ["https://tec.openplanner.team/stops/Lgrclos2", "https://tec.openplanner.team/stops/Lgrside2"], ["https://tec.openplanner.team/stops/N229akb", "https://tec.openplanner.team/stops/N231acb"], ["https://tec.openplanner.team/stops/LHMbach4", "https://tec.openplanner.team/stops/LHMchev2"], ["https://tec.openplanner.team/stops/Bsgipha1", "https://tec.openplanner.team/stops/Bsgipmo2"], ["https://tec.openplanner.team/stops/X890aba", "https://tec.openplanner.team/stops/X890aca"], ["https://tec.openplanner.team/stops/N141aba", "https://tec.openplanner.team/stops/N141amc"], ["https://tec.openplanner.team/stops/X939ahb", "https://tec.openplanner.team/stops/X946ahb"], ["https://tec.openplanner.team/stops/Bhmmcha1", "https://tec.openplanner.team/stops/Bndbnod2"], ["https://tec.openplanner.team/stops/H1em104b", "https://tec.openplanner.team/stops/H1em108a"], ["https://tec.openplanner.team/stops/N534bpa", "https://tec.openplanner.team/stops/N534bpb"], ["https://tec.openplanner.team/stops/H2pe156a", "https://tec.openplanner.team/stops/H2pe156b"], ["https://tec.openplanner.team/stops/LkEzoll1", "https://tec.openplanner.team/stops/LkEzoll2"], ["https://tec.openplanner.team/stops/H4ft135a", "https://tec.openplanner.team/stops/H4ft137b"], ["https://tec.openplanner.team/stops/X609ara", "https://tec.openplanner.team/stops/X611aaa"], ["https://tec.openplanner.team/stops/H1gr110b", "https://tec.openplanner.team/stops/H1gr119b"], ["https://tec.openplanner.team/stops/LFLcher1", "https://tec.openplanner.team/stops/LSpunio2"], ["https://tec.openplanner.team/stops/X614bba", "https://tec.openplanner.team/stops/X614brb"], ["https://tec.openplanner.team/stops/X758aca", "https://tec.openplanner.team/stops/X758amb"], ["https://tec.openplanner.team/stops/Bronrch2", "https://tec.openplanner.team/stops/Bvirflu1"], ["https://tec.openplanner.team/stops/Beclbar2", "https://tec.openplanner.team/stops/H2fa102b"], ["https://tec.openplanner.team/stops/Beclbar1", "https://tec.openplanner.team/stops/Broneco2"], ["https://tec.openplanner.team/stops/Bgzdfpo2", "https://tec.openplanner.team/stops/Bgzdgpa2"], ["https://tec.openplanner.team/stops/Chhclde1", "https://tec.openplanner.team/stops/Cjxdesc2"], ["https://tec.openplanner.team/stops/X886ada", "https://tec.openplanner.team/stops/X888acb"], ["https://tec.openplanner.team/stops/H4co109a", "https://tec.openplanner.team/stops/H4co144a"], ["https://tec.openplanner.team/stops/H1ol140b", "https://tec.openplanner.team/stops/H1ol144b"], ["https://tec.openplanner.team/stops/N423aba", "https://tec.openplanner.team/stops/N423aca"], ["https://tec.openplanner.team/stops/X766abb", "https://tec.openplanner.team/stops/X768ama"], ["https://tec.openplanner.team/stops/LWLeg--2", "https://tec.openplanner.team/stops/LWLtamb1"], ["https://tec.openplanner.team/stops/H2ll176b", "https://tec.openplanner.team/stops/H2ll186a"], ["https://tec.openplanner.team/stops/Lhrmare4", "https://tec.openplanner.team/stops/Lhrpost1"], ["https://tec.openplanner.team/stops/X891aca", "https://tec.openplanner.team/stops/X891acb"], ["https://tec.openplanner.team/stops/X801abb", "https://tec.openplanner.team/stops/X899abb"], ["https://tec.openplanner.team/stops/Lsefoot1", "https://tec.openplanner.team/stops/Lsemyrt1"], ["https://tec.openplanner.team/stops/Bllnchv1", "https://tec.openplanner.team/stops/Bllngar2"], ["https://tec.openplanner.team/stops/LOTawan1", "https://tec.openplanner.team/stops/LOTcarr2"], ["https://tec.openplanner.team/stops/Llgnaim1", "https://tec.openplanner.team/stops/Llgnani1"], ["https://tec.openplanner.team/stops/Brixpbs2", "https://tec.openplanner.team/stops/Brsrmon1"], ["https://tec.openplanner.team/stops/H1qu116c", "https://tec.openplanner.team/stops/H1qu129a"], ["https://tec.openplanner.team/stops/H5bl144a", "https://tec.openplanner.team/stops/H5bl144b"], ["https://tec.openplanner.team/stops/N212ata", "https://tec.openplanner.team/stops/N212atb"], ["https://tec.openplanner.team/stops/H1as102a", "https://tec.openplanner.team/stops/H1as104a"], ["https://tec.openplanner.team/stops/H1eo108a", "https://tec.openplanner.team/stops/H1mj132a"], ["https://tec.openplanner.team/stops/Bgercen1", "https://tec.openplanner.team/stops/Bgrhcro1"], ["https://tec.openplanner.team/stops/LBQplac2", "https://tec.openplanner.team/stops/X919ajb"], ["https://tec.openplanner.team/stops/LAMjeha2", "https://tec.openplanner.team/stops/LAMrich1"], ["https://tec.openplanner.team/stops/X945abc", "https://tec.openplanner.team/stops/X947aaa"], ["https://tec.openplanner.team/stops/Lhucime1", "https://tec.openplanner.team/stops/Lhueg--1"], ["https://tec.openplanner.team/stops/N539beb", "https://tec.openplanner.team/stops/N540ara"], ["https://tec.openplanner.team/stops/Bjausan1", "https://tec.openplanner.team/stops/Bmrlnce1"], ["https://tec.openplanner.team/stops/LATfont2", "https://tec.openplanner.team/stops/LATphar2"], ["https://tec.openplanner.team/stops/X659asa", "https://tec.openplanner.team/stops/X659aua"], ["https://tec.openplanner.team/stops/X609aga", "https://tec.openplanner.team/stops/X609agb"], ["https://tec.openplanner.team/stops/H1tt109a", "https://tec.openplanner.team/stops/H1tt109b"], ["https://tec.openplanner.team/stops/Lmihale2", "https://tec.openplanner.team/stops/Lvtvici2"], ["https://tec.openplanner.team/stops/H1ba116a", "https://tec.openplanner.team/stops/H1ba116b"], ["https://tec.openplanner.team/stops/X758aib", "https://tec.openplanner.team/stops/X758aja"], ["https://tec.openplanner.team/stops/H4pp121a", "https://tec.openplanner.team/stops/H4pp122b"], ["https://tec.openplanner.team/stops/Bstecal1", "https://tec.openplanner.team/stops/Btubbai1"], ["https://tec.openplanner.team/stops/Bbstasa1", "https://tec.openplanner.team/stops/Bbstdpa2"], ["https://tec.openplanner.team/stops/Lthfagn2", "https://tec.openplanner.team/stops/Lthgros2"], ["https://tec.openplanner.team/stops/H2le149b", "https://tec.openplanner.team/stops/H2ml110b"], ["https://tec.openplanner.team/stops/Lseaven1", "https://tec.openplanner.team/stops/Lsekubo2"], ["https://tec.openplanner.team/stops/X807abb", "https://tec.openplanner.team/stops/X807ada"], ["https://tec.openplanner.team/stops/X948aha", "https://tec.openplanner.team/stops/X948ahb"], ["https://tec.openplanner.team/stops/H1gi120d", "https://tec.openplanner.team/stops/H1vs145b"], ["https://tec.openplanner.team/stops/X824akb", "https://tec.openplanner.team/stops/X830aaa"], ["https://tec.openplanner.team/stops/LERboss1", "https://tec.openplanner.team/stops/X512aib"], ["https://tec.openplanner.team/stops/X715ahb", "https://tec.openplanner.team/stops/X715alb"], ["https://tec.openplanner.team/stops/H2ll194b", "https://tec.openplanner.team/stops/H2ll201b"], ["https://tec.openplanner.team/stops/X672aic", "https://tec.openplanner.team/stops/X672aka"], ["https://tec.openplanner.team/stops/H4ba101b", "https://tec.openplanner.team/stops/H4ws160b"], ["https://tec.openplanner.team/stops/LHAarge1", "https://tec.openplanner.team/stops/LHTlieg1"], ["https://tec.openplanner.team/stops/X902ada", "https://tec.openplanner.team/stops/X902agb"], ["https://tec.openplanner.team/stops/N501ddb", "https://tec.openplanner.team/stops/N501deb"], ["https://tec.openplanner.team/stops/H4ty333a", "https://tec.openplanner.team/stops/H4ty359b"], ["https://tec.openplanner.team/stops/N244aea", "https://tec.openplanner.team/stops/N248aaa"], ["https://tec.openplanner.team/stops/H1nv324a", "https://tec.openplanner.team/stops/H1nv325b"], ["https://tec.openplanner.team/stops/LrApark2", "https://tec.openplanner.team/stops/LrAwald2"], ["https://tec.openplanner.team/stops/LBajean2", "https://tec.openplanner.team/stops/LBapeup1"], ["https://tec.openplanner.team/stops/Ltiferb2", "https://tec.openplanner.team/stops/Ltimarr1"], ["https://tec.openplanner.team/stops/N521aub", "https://tec.openplanner.team/stops/N521ava"], ["https://tec.openplanner.team/stops/H2ha127a", "https://tec.openplanner.team/stops/H2ha127b"], ["https://tec.openplanner.team/stops/H1sp353b", "https://tec.openplanner.team/stops/H1sp354b"], ["https://tec.openplanner.team/stops/Llgfont1", "https://tec.openplanner.team/stops/Llgnaim1"], ["https://tec.openplanner.team/stops/LLgmini2", "https://tec.openplanner.team/stops/LSPmalc1"], ["https://tec.openplanner.team/stops/N501eby", "https://tec.openplanner.team/stops/N501edb"], ["https://tec.openplanner.team/stops/LeYwess1", "https://tec.openplanner.team/stops/LeYwess2"], ["https://tec.openplanner.team/stops/X743aea", "https://tec.openplanner.team/stops/X743aeb"], ["https://tec.openplanner.team/stops/N201aia", "https://tec.openplanner.team/stops/N201aub"], ["https://tec.openplanner.team/stops/N229aja", "https://tec.openplanner.team/stops/N229aob"], ["https://tec.openplanner.team/stops/Bhmmcam1", "https://tec.openplanner.team/stops/Bhmmcor1"], ["https://tec.openplanner.team/stops/X618aoa", "https://tec.openplanner.team/stops/X619amb"], ["https://tec.openplanner.team/stops/H2hg146a", "https://tec.openplanner.team/stops/H2hg150a"], ["https://tec.openplanner.team/stops/LFOmc--1", "https://tec.openplanner.team/stops/LFOmc--2"], ["https://tec.openplanner.team/stops/H1en101b", "https://tec.openplanner.team/stops/H1mk112a"], ["https://tec.openplanner.team/stops/H4gr108a", "https://tec.openplanner.team/stops/H4ld124b"], ["https://tec.openplanner.team/stops/H1me114a", "https://tec.openplanner.team/stops/H1me114b"], ["https://tec.openplanner.team/stops/H2na136a", "https://tec.openplanner.team/stops/H3so187b"], ["https://tec.openplanner.team/stops/Cprrvil1", "https://tec.openplanner.team/stops/NC11amb"], ["https://tec.openplanner.team/stops/LFUfonc1", "https://tec.openplanner.team/stops/LHurobi1"], ["https://tec.openplanner.team/stops/LSsaxhe1", "https://tec.openplanner.team/stops/LSznoel1"], ["https://tec.openplanner.team/stops/Bnilcha2", "https://tec.openplanner.team/stops/Bwlhpmt3"], ["https://tec.openplanner.team/stops/LRAgrot2", "https://tec.openplanner.team/stops/LRArami2"], ["https://tec.openplanner.team/stops/Cculgeo1", "https://tec.openplanner.team/stops/Cculgeo2"], ["https://tec.openplanner.team/stops/Lhurouh1", "https://tec.openplanner.team/stops/Lmnrame1"], ["https://tec.openplanner.team/stops/X652adb", "https://tec.openplanner.team/stops/X652aeb"], ["https://tec.openplanner.team/stops/LLGramk2", "https://tec.openplanner.team/stops/LLGramk3"], ["https://tec.openplanner.team/stops/Llgmulh1", "https://tec.openplanner.team/stops/Llgmulh2"], ["https://tec.openplanner.team/stops/X663abb", "https://tec.openplanner.team/stops/X663apa"], ["https://tec.openplanner.team/stops/H1ge117a", "https://tec.openplanner.team/stops/H1qp140b"], ["https://tec.openplanner.team/stops/H4ar102b", "https://tec.openplanner.team/stops/H4ar107a"], ["https://tec.openplanner.team/stops/LCPaywa1", "https://tec.openplanner.team/stops/LCPaywa2"], ["https://tec.openplanner.team/stops/Crachap1", "https://tec.openplanner.team/stops/Cradest1"], ["https://tec.openplanner.team/stops/Bhalalb2", "https://tec.openplanner.team/stops/Bhalrat2"], ["https://tec.openplanner.team/stops/Cbfdufa1", "https://tec.openplanner.team/stops/Cbflong2"], ["https://tec.openplanner.team/stops/X896ada", "https://tec.openplanner.team/stops/X898aga"], ["https://tec.openplanner.team/stops/Crcrlf1", "https://tec.openplanner.team/stops/Crcrlf2"], ["https://tec.openplanner.team/stops/X615awa", "https://tec.openplanner.team/stops/X615awb"], ["https://tec.openplanner.team/stops/LNOning1", "https://tec.openplanner.team/stops/LNOning2"], ["https://tec.openplanner.team/stops/LhPkirc2", "https://tec.openplanner.team/stops/LhPprum1"], ["https://tec.openplanner.team/stops/N544ada", "https://tec.openplanner.team/stops/N549aea"], ["https://tec.openplanner.team/stops/X923abb", "https://tec.openplanner.team/stops/X923acb"], ["https://tec.openplanner.team/stops/H2pe159b", "https://tec.openplanner.team/stops/H2re166a"], ["https://tec.openplanner.team/stops/H4ch114b", "https://tec.openplanner.team/stops/H4ch117a"], ["https://tec.openplanner.team/stops/X397abb", "https://tec.openplanner.team/stops/X398aab"], ["https://tec.openplanner.team/stops/X801bzb", "https://tec.openplanner.team/stops/X801cba"], ["https://tec.openplanner.team/stops/Cprcalv2", "https://tec.openplanner.team/stops/Cprlpre2"], ["https://tec.openplanner.team/stops/LwEdorf1", "https://tec.openplanner.team/stops/LwEdorf2"], ["https://tec.openplanner.team/stops/Llgvero2", "https://tec.openplanner.team/stops/Llgvero4"], ["https://tec.openplanner.team/stops/Lvebiol2", "https://tec.openplanner.team/stops/Lvewall1"], ["https://tec.openplanner.team/stops/LFOcomb3", "https://tec.openplanner.team/stops/LFOmc--1"], ["https://tec.openplanner.team/stops/LVthest1", "https://tec.openplanner.team/stops/LVthest4"], ["https://tec.openplanner.team/stops/Llgcham6", "https://tec.openplanner.team/stops/Llgcham8"], ["https://tec.openplanner.team/stops/H4bd107a", "https://tec.openplanner.team/stops/H4te257a"], ["https://tec.openplanner.team/stops/Bbgeegl1", "https://tec.openplanner.team/stops/Bbgepau2"], ["https://tec.openplanner.team/stops/X713adb", "https://tec.openplanner.team/stops/X713anb"], ["https://tec.openplanner.team/stops/H1ge179a", "https://tec.openplanner.team/stops/H1no143a"], ["https://tec.openplanner.team/stops/X636bfa", "https://tec.openplanner.team/stops/X649aca"], ["https://tec.openplanner.team/stops/H1an103a", "https://tec.openplanner.team/stops/H1an103b"], ["https://tec.openplanner.team/stops/Lrecite1", "https://tec.openplanner.team/stops/Lrecite2"], ["https://tec.openplanner.team/stops/X638ara", "https://tec.openplanner.team/stops/X639aab"], ["https://tec.openplanner.team/stops/H1be101b", "https://tec.openplanner.team/stops/H1be104b"], ["https://tec.openplanner.team/stops/N501cqa", "https://tec.openplanner.team/stops/N501ctb"], ["https://tec.openplanner.team/stops/LCPbell2", "https://tec.openplanner.team/stops/LCPone91"], ["https://tec.openplanner.team/stops/LJEerno1", "https://tec.openplanner.team/stops/LJEverd2"], ["https://tec.openplanner.team/stops/LBEbelf2", "https://tec.openplanner.team/stops/Lcacris1"], ["https://tec.openplanner.team/stops/X771aab", "https://tec.openplanner.team/stops/X773afb"], ["https://tec.openplanner.team/stops/LBAcent1", "https://tec.openplanner.team/stops/LBAtign1"], ["https://tec.openplanner.team/stops/Bwatcci1", "https://tec.openplanner.team/stops/Bwatcci2"], ["https://tec.openplanner.team/stops/Llmcomb1", "https://tec.openplanner.team/stops/Lprcite1"], ["https://tec.openplanner.team/stops/NC14aaa", "https://tec.openplanner.team/stops/NC44aab"], ["https://tec.openplanner.team/stops/N530aab", "https://tec.openplanner.team/stops/N530aha"], ["https://tec.openplanner.team/stops/X898ada", "https://tec.openplanner.team/stops/X898adb"], ["https://tec.openplanner.team/stops/Crseuro1", "https://tec.openplanner.team/stops/Crseuro2"], ["https://tec.openplanner.team/stops/H4to131a", "https://tec.openplanner.team/stops/H4to139a"], ["https://tec.openplanner.team/stops/X823aeb", "https://tec.openplanner.team/stops/X823aff"], ["https://tec.openplanner.team/stops/LGogare1", "https://tec.openplanner.team/stops/Lpebeco2"], ["https://tec.openplanner.team/stops/Brsrcha1", "https://tec.openplanner.team/stops/Brsrrcu1"], ["https://tec.openplanner.team/stops/LBbhupp1", "https://tec.openplanner.team/stops/LTPhenr1"], ["https://tec.openplanner.team/stops/Ccupetp1", "https://tec.openplanner.team/stops/Ccupetp2"], ["https://tec.openplanner.team/stops/Llgfran1", "https://tec.openplanner.team/stops/Llgfran2"], ["https://tec.openplanner.team/stops/LElcent2", "https://tec.openplanner.team/stops/LElgerd1"], ["https://tec.openplanner.team/stops/LOTcarr2", "https://tec.openplanner.team/stops/LOTdelv2"], ["https://tec.openplanner.team/stops/X786aib", "https://tec.openplanner.team/stops/X789aia"], ["https://tec.openplanner.team/stops/Cfaecwa2", "https://tec.openplanner.team/stops/Cfawain1"], ["https://tec.openplanner.team/stops/Bmelsab1", "https://tec.openplanner.team/stops/Bmelsab2"], ["https://tec.openplanner.team/stops/H1qv114a", "https://tec.openplanner.team/stops/H1qv114b"], ["https://tec.openplanner.team/stops/H1ma231b", "https://tec.openplanner.team/stops/H1ni315a"], ["https://tec.openplanner.team/stops/H4eg104b", "https://tec.openplanner.team/stops/H4sl154b"], ["https://tec.openplanner.team/stops/Lvcreve2", "https://tec.openplanner.team/stops/Lvcvand1"], ["https://tec.openplanner.team/stops/X780ada", "https://tec.openplanner.team/stops/X780adb"], ["https://tec.openplanner.team/stops/N525aca", "https://tec.openplanner.team/stops/N525bab"], ["https://tec.openplanner.team/stops/H4bi156a", "https://tec.openplanner.team/stops/H4bi156b"], ["https://tec.openplanner.team/stops/H1an100a", "https://tec.openplanner.team/stops/H1an101a"], ["https://tec.openplanner.team/stops/Bvilcoq2", "https://tec.openplanner.team/stops/Bvilvil4"], ["https://tec.openplanner.team/stops/Ctachst1", "https://tec.openplanner.team/stops/N543cfb"], ["https://tec.openplanner.team/stops/H4ty296a", "https://tec.openplanner.team/stops/H4ty310b"], ["https://tec.openplanner.team/stops/Cchdagn2", "https://tec.openplanner.team/stops/Cchpala2"], ["https://tec.openplanner.team/stops/X630aaa", "https://tec.openplanner.team/stops/X630abb"], ["https://tec.openplanner.team/stops/N365aca", "https://tec.openplanner.team/stops/X344ada"], ["https://tec.openplanner.team/stops/N512aoa", "https://tec.openplanner.team/stops/N512aob"], ["https://tec.openplanner.team/stops/Clbchba2", "https://tec.openplanner.team/stops/Clbptno1"], ["https://tec.openplanner.team/stops/LHScite2", "https://tec.openplanner.team/stops/LRGbett3"], ["https://tec.openplanner.team/stops/H4rm107c", "https://tec.openplanner.team/stops/H4rm108a"], ["https://tec.openplanner.team/stops/X740abd", "https://tec.openplanner.team/stops/X985aeb"], ["https://tec.openplanner.team/stops/Brsgsan1", "https://tec.openplanner.team/stops/Brsgsan2"], ["https://tec.openplanner.team/stops/X954abb", "https://tec.openplanner.team/stops/X954aeb"], ["https://tec.openplanner.team/stops/LThbatt2", "https://tec.openplanner.team/stops/LThelse2"], ["https://tec.openplanner.team/stops/LMsvill1", "https://tec.openplanner.team/stops/LMsvill2"], ["https://tec.openplanner.team/stops/H2sb223b", "https://tec.openplanner.team/stops/H2sb243c"], ["https://tec.openplanner.team/stops/NL76aca", "https://tec.openplanner.team/stops/NL76acb"], ["https://tec.openplanner.team/stops/Lgrcral2", "https://tec.openplanner.team/stops/Lgrdefr1"], ["https://tec.openplanner.team/stops/X634agb", "https://tec.openplanner.team/stops/X634aia"], ["https://tec.openplanner.team/stops/X661asa", "https://tec.openplanner.team/stops/X661ata"], ["https://tec.openplanner.team/stops/N557aeb", "https://tec.openplanner.team/stops/N557ajb"], ["https://tec.openplanner.team/stops/X952aca", "https://tec.openplanner.team/stops/X952acb"], ["https://tec.openplanner.team/stops/H4bs111a", "https://tec.openplanner.team/stops/H4ws159a"], ["https://tec.openplanner.team/stops/X789aea", "https://tec.openplanner.team/stops/X789afa"], ["https://tec.openplanner.team/stops/Cmmjami2", "https://tec.openplanner.team/stops/Cmmjami4"], ["https://tec.openplanner.team/stops/N507aba", "https://tec.openplanner.team/stops/N507abb"], ["https://tec.openplanner.team/stops/X542ada", "https://tec.openplanner.team/stops/X542aga"], ["https://tec.openplanner.team/stops/X607aga", "https://tec.openplanner.team/stops/X620agb"], ["https://tec.openplanner.team/stops/LlNbene2", "https://tec.openplanner.team/stops/LlNlimb1"], ["https://tec.openplanner.team/stops/N501cba", "https://tec.openplanner.team/stops/N501cgb"], ["https://tec.openplanner.team/stops/Bnetegl2", "https://tec.openplanner.team/stops/Bnetrec2"], ["https://tec.openplanner.team/stops/N109aia", "https://tec.openplanner.team/stops/N114aab"], ["https://tec.openplanner.team/stops/H4fa128b", "https://tec.openplanner.team/stops/H4ms146b"], ["https://tec.openplanner.team/stops/LBkwind2", "https://tec.openplanner.team/stops/LHCmais1"], ["https://tec.openplanner.team/stops/LHSfexh2", "https://tec.openplanner.team/stops/LHSlava1"], ["https://tec.openplanner.team/stops/X361acb", "https://tec.openplanner.team/stops/X371ajb"], ["https://tec.openplanner.team/stops/X943aaa", "https://tec.openplanner.team/stops/X943aab"], ["https://tec.openplanner.team/stops/LnNzent2", "https://tec.openplanner.team/stops/LsVlust1"], ["https://tec.openplanner.team/stops/N145aec", "https://tec.openplanner.team/stops/N145aed"], ["https://tec.openplanner.team/stops/Ccupdes1", "https://tec.openplanner.team/stops/Ccutill2"], ["https://tec.openplanner.team/stops/Bjaufca2", "https://tec.openplanner.team/stops/NR30aab"], ["https://tec.openplanner.team/stops/X659aoa", "https://tec.openplanner.team/stops/X741aka"], ["https://tec.openplanner.team/stops/Bosqpco2", "https://tec.openplanner.team/stops/Btubois1"], ["https://tec.openplanner.team/stops/Beclpma1", "https://tec.openplanner.team/stops/H2me115a"], ["https://tec.openplanner.team/stops/Cmyfoym2", "https://tec.openplanner.team/stops/Cmymaco1"], ["https://tec.openplanner.team/stops/LSGmall1", "https://tec.openplanner.team/stops/LSkoran2"], ["https://tec.openplanner.team/stops/Lvecase1", "https://tec.openplanner.team/stops/Lvecite1"], ["https://tec.openplanner.team/stops/H2mo124b", "https://tec.openplanner.team/stops/H2mo138b"], ["https://tec.openplanner.team/stops/H1ha190b", "https://tec.openplanner.team/stops/H3go100b"], ["https://tec.openplanner.team/stops/X713acb", "https://tec.openplanner.team/stops/X986ala"], ["https://tec.openplanner.team/stops/Ctilobb1", "https://tec.openplanner.team/stops/Ctilobb2"], ["https://tec.openplanner.team/stops/X908ana", "https://tec.openplanner.team/stops/X908anb"], ["https://tec.openplanner.team/stops/N121afa", "https://tec.openplanner.team/stops/N121afb"], ["https://tec.openplanner.team/stops/LlNlont1", "https://tec.openplanner.team/stops/LlNm%C3%BChl1"], ["https://tec.openplanner.team/stops/H4th139b", "https://tec.openplanner.team/stops/H4th142b"], ["https://tec.openplanner.team/stops/N569aaa", "https://tec.openplanner.team/stops/N569afa"], ["https://tec.openplanner.team/stops/LXobaty1", "https://tec.openplanner.team/stops/LXopeti2"], ["https://tec.openplanner.team/stops/Cfmltas2", "https://tec.openplanner.team/stops/Cptcamb2"], ["https://tec.openplanner.team/stops/N569acb", "https://tec.openplanner.team/stops/N569aeb"], ["https://tec.openplanner.team/stops/H1br124b", "https://tec.openplanner.team/stops/H1br126a"], ["https://tec.openplanner.team/stops/N235aab", "https://tec.openplanner.team/stops/N236aib"], ["https://tec.openplanner.team/stops/H1ho141b", "https://tec.openplanner.team/stops/H1ho142a"], ["https://tec.openplanner.team/stops/Bcrncjo2", "https://tec.openplanner.team/stops/N529aab"], ["https://tec.openplanner.team/stops/Bgnpjbe2", "https://tec.openplanner.team/stops/Cgnbast1"], ["https://tec.openplanner.team/stops/H1br124a", "https://tec.openplanner.team/stops/H1br126b"], ["https://tec.openplanner.team/stops/N230ama", "https://tec.openplanner.team/stops/N549abb"], ["https://tec.openplanner.team/stops/Cfvplac1", "https://tec.openplanner.team/stops/H1fv101b"], ["https://tec.openplanner.team/stops/X793aab", "https://tec.openplanner.team/stops/X793aga"], ["https://tec.openplanner.team/stops/Btubga05", "https://tec.openplanner.team/stops/Btubpla1"], ["https://tec.openplanner.team/stops/NC14anb", "https://tec.openplanner.team/stops/NC14apb"], ["https://tec.openplanner.team/stops/Bboupde1", "https://tec.openplanner.team/stops/Bcerldo2"], ["https://tec.openplanner.team/stops/N120aca", "https://tec.openplanner.team/stops/N120aeb"], ["https://tec.openplanner.team/stops/N504aab", "https://tec.openplanner.team/stops/N511afb"], ["https://tec.openplanner.team/stops/LBlchin1", "https://tec.openplanner.team/stops/LBlplac1"], ["https://tec.openplanner.team/stops/H1ms267b", "https://tec.openplanner.team/stops/H1ms290a"], ["https://tec.openplanner.team/stops/H1gh154b", "https://tec.openplanner.team/stops/H1gh167b"], ["https://tec.openplanner.team/stops/N547alb", "https://tec.openplanner.team/stops/N547alc"], ["https://tec.openplanner.team/stops/Lbrptbr1", "https://tec.openplanner.team/stops/Lbrptbr5"], ["https://tec.openplanner.team/stops/N141apb", "https://tec.openplanner.team/stops/N141aqa"], ["https://tec.openplanner.team/stops/Bottcba1", "https://tec.openplanner.team/stops/Bottcba2"], ["https://tec.openplanner.team/stops/N151aia", "https://tec.openplanner.team/stops/N153aaa"], ["https://tec.openplanner.team/stops/Cgzchab2", "https://tec.openplanner.team/stops/Cgzfarc2"], ["https://tec.openplanner.team/stops/LAIrout1", "https://tec.openplanner.team/stops/LBzec--2"], ["https://tec.openplanner.team/stops/X793ahb", "https://tec.openplanner.team/stops/X793aia"], ["https://tec.openplanner.team/stops/H1ms285a", "https://tec.openplanner.team/stops/H1ms914a"], ["https://tec.openplanner.team/stops/Cfaamio4", "https://tec.openplanner.team/stops/Cfaysle1"], ["https://tec.openplanner.team/stops/Llgmass2", "https://tec.openplanner.team/stops/Llgschm1"], ["https://tec.openplanner.team/stops/Chhplbe2", "https://tec.openplanner.team/stops/Chhverr1"], ["https://tec.openplanner.team/stops/Cbfbies2", "https://tec.openplanner.team/stops/Cctvict1"], ["https://tec.openplanner.team/stops/N131aea", "https://tec.openplanner.team/stops/N131afb"], ["https://tec.openplanner.team/stops/Clbentr1", "https://tec.openplanner.team/stops/Clbentr2"], ["https://tec.openplanner.team/stops/N118acb", "https://tec.openplanner.team/stops/N118acd"], ["https://tec.openplanner.team/stops/LBNover2", "https://tec.openplanner.team/stops/LhEherb2"], ["https://tec.openplanner.team/stops/LLVcent1", "https://tec.openplanner.team/stops/LLVfour1"], ["https://tec.openplanner.team/stops/H4pl115a", "https://tec.openplanner.team/stops/H4pl122a"], ["https://tec.openplanner.team/stops/H2ll182a", "https://tec.openplanner.team/stops/H2ll200a"], ["https://tec.openplanner.team/stops/X823aea", "https://tec.openplanner.team/stops/X824aea"], ["https://tec.openplanner.team/stops/N501dha", "https://tec.openplanner.team/stops/N501gcb"], ["https://tec.openplanner.team/stops/LwYbrkr1", "https://tec.openplanner.team/stops/LwYsour3"], ["https://tec.openplanner.team/stops/N348ada", "https://tec.openplanner.team/stops/N353awa"], ["https://tec.openplanner.team/stops/Clbecol2", "https://tec.openplanner.team/stops/H1lo120b"], ["https://tec.openplanner.team/stops/Cflmart2", "https://tec.openplanner.team/stops/Clafaub1"], ["https://tec.openplanner.team/stops/LNEec--1", "https://tec.openplanner.team/stops/LNEmoul2"], ["https://tec.openplanner.team/stops/H2na134a", "https://tec.openplanner.team/stops/H2na134b"], ["https://tec.openplanner.team/stops/X601aea", "https://tec.openplanner.team/stops/X601bta"], ["https://tec.openplanner.team/stops/LMNjard2", "https://tec.openplanner.team/stops/LPbec--1"], ["https://tec.openplanner.team/stops/X804bda", "https://tec.openplanner.team/stops/X804bdb"], ["https://tec.openplanner.team/stops/N543cbc", "https://tec.openplanner.team/stops/N543cfa"], ["https://tec.openplanner.team/stops/H4ka189a", "https://tec.openplanner.team/stops/H4ka189b"], ["https://tec.openplanner.team/stops/LmNkrew1", "https://tec.openplanner.team/stops/LmNkrew2"], ["https://tec.openplanner.team/stops/NL76aia", "https://tec.openplanner.team/stops/NL76aib"], ["https://tec.openplanner.team/stops/Bjodsje1", "https://tec.openplanner.team/stops/Bjodsje2"], ["https://tec.openplanner.team/stops/N557agb", "https://tec.openplanner.team/stops/N557aja"], ["https://tec.openplanner.team/stops/N534bbb", "https://tec.openplanner.team/stops/N534bfb"], ["https://tec.openplanner.team/stops/X922ajb", "https://tec.openplanner.team/stops/X942afa"], ["https://tec.openplanner.team/stops/LMEcour1", "https://tec.openplanner.team/stops/LMIcamp1"], ["https://tec.openplanner.team/stops/N543aia", "https://tec.openplanner.team/stops/N543cka"], ["https://tec.openplanner.team/stops/Boveklo2", "https://tec.openplanner.team/stops/Bovesol1"], ["https://tec.openplanner.team/stops/H4eg101a", "https://tec.openplanner.team/stops/H4eg103b"], ["https://tec.openplanner.team/stops/Cmyvesa1", "https://tec.openplanner.team/stops/Cmyvesa2"], ["https://tec.openplanner.team/stops/LbTweyn1", "https://tec.openplanner.team/stops/LbTweyn2"], ["https://tec.openplanner.team/stops/H4ha170b", "https://tec.openplanner.team/stops/H4me211b"], ["https://tec.openplanner.team/stops/LCShoux1", "https://tec.openplanner.team/stops/LCSmagn1"], ["https://tec.openplanner.team/stops/N501hrb", "https://tec.openplanner.team/stops/N501iob"], ["https://tec.openplanner.team/stops/LeUcamp2", "https://tec.openplanner.team/stops/LeUoe542"], ["https://tec.openplanner.team/stops/Cmaegli1", "https://tec.openplanner.team/stops/Cmastch1"], ["https://tec.openplanner.team/stops/Bmlnsms2", "https://tec.openplanner.team/stops/Bptbbie2"], ["https://tec.openplanner.team/stops/N368adb", "https://tec.openplanner.team/stops/N368aeb"], ["https://tec.openplanner.team/stops/LAyheid1", "https://tec.openplanner.team/stops/LPRfour1"], ["https://tec.openplanner.team/stops/H1ca108b", "https://tec.openplanner.team/stops/H1ne144a"], ["https://tec.openplanner.team/stops/Bblmpro1", "https://tec.openplanner.team/stops/Bblmwma1"], ["https://tec.openplanner.team/stops/N501lza", "https://tec.openplanner.team/stops/N501lzy"], ["https://tec.openplanner.team/stops/H1ho132b", "https://tec.openplanner.team/stops/H1ho141a"], ["https://tec.openplanner.team/stops/LVLf10-1", "https://tec.openplanner.team/stops/LVLf37-1"], ["https://tec.openplanner.team/stops/N201aea", "https://tec.openplanner.team/stops/N201aef"], ["https://tec.openplanner.team/stops/Ladgath1", "https://tec.openplanner.team/stops/Ladlimi1"], ["https://tec.openplanner.team/stops/LmYwall2", "https://tec.openplanner.team/stops/LsVprum3"], ["https://tec.openplanner.team/stops/H5at122b", "https://tec.openplanner.team/stops/H5la177b"], ["https://tec.openplanner.team/stops/LTRchpl1", "https://tec.openplanner.team/stops/LTRchpl2"], ["https://tec.openplanner.team/stops/X734apb", "https://tec.openplanner.team/stops/X734aqb"], ["https://tec.openplanner.team/stops/H1qv110b", "https://tec.openplanner.team/stops/H1qv114b"], ["https://tec.openplanner.team/stops/N501eta", "https://tec.openplanner.team/stops/N501etd"], ["https://tec.openplanner.team/stops/X782alb", "https://tec.openplanner.team/stops/X782anb"], ["https://tec.openplanner.team/stops/LBLghuy3", "https://tec.openplanner.team/stops/LBLgobc1"], ["https://tec.openplanner.team/stops/LLelava1", "https://tec.openplanner.team/stops/LVRchpl1"], ["https://tec.openplanner.team/stops/LrAknop2", "https://tec.openplanner.team/stops/LrAneud1"], ["https://tec.openplanner.team/stops/Btubegy1", "https://tec.openplanner.team/stops/Btubpir2"], ["https://tec.openplanner.team/stops/Lcemc--1", "https://tec.openplanner.team/stops/Lcepont6"], ["https://tec.openplanner.team/stops/LbHzent2", "https://tec.openplanner.team/stops/LsFcafe2"], ["https://tec.openplanner.team/stops/X917aba", "https://tec.openplanner.team/stops/X917abb"], ["https://tec.openplanner.team/stops/X640aca", "https://tec.openplanner.team/stops/X640ada"], ["https://tec.openplanner.team/stops/H1hg179b", "https://tec.openplanner.team/stops/H1hg180b"], ["https://tec.openplanner.team/stops/Csychap4", "https://tec.openplanner.team/stops/Csystan1"], ["https://tec.openplanner.team/stops/X982ama", "https://tec.openplanner.team/stops/X982ana"], ["https://tec.openplanner.team/stops/H2bh118a", "https://tec.openplanner.team/stops/H2bh121a"], ["https://tec.openplanner.team/stops/H4cw104b", "https://tec.openplanner.team/stops/H4lz161b"], ["https://tec.openplanner.team/stops/H5rx101a", "https://tec.openplanner.team/stops/H5rx114a"], ["https://tec.openplanner.team/stops/Cbfdufa2", "https://tec.openplanner.team/stops/Cbflong2"], ["https://tec.openplanner.team/stops/LNCneuv2", "https://tec.openplanner.team/stops/LNCneuv3"], ["https://tec.openplanner.team/stops/N360aaa", "https://tec.openplanner.team/stops/N360adb"], ["https://tec.openplanner.team/stops/LbOre3b1", "https://tec.openplanner.team/stops/LnErech2"], ["https://tec.openplanner.team/stops/N574aca", "https://tec.openplanner.team/stops/N576alb"], ["https://tec.openplanner.team/stops/H4pi132b", "https://tec.openplanner.team/stops/H4wp151b"], ["https://tec.openplanner.team/stops/X601dbb", "https://tec.openplanner.team/stops/X626akb"], ["https://tec.openplanner.team/stops/N114aab", "https://tec.openplanner.team/stops/N304abb"], ["https://tec.openplanner.team/stops/LeYwald1", "https://tec.openplanner.team/stops/LkOgren1"], ["https://tec.openplanner.team/stops/LROhael2", "https://tec.openplanner.team/stops/LWargeu2"], ["https://tec.openplanner.team/stops/H5at133a", "https://tec.openplanner.team/stops/H5at133b"], ["https://tec.openplanner.team/stops/Blascvi1", "https://tec.openplanner.team/stops/Blasvil1"], ["https://tec.openplanner.team/stops/Llgdfra1", "https://tec.openplanner.team/stops/Llgomal1"], ["https://tec.openplanner.team/stops/Ljubord2", "https://tec.openplanner.team/stops/Ljubruy2"], ["https://tec.openplanner.team/stops/LEHpech2", "https://tec.openplanner.team/stops/LRRmeta1"], ["https://tec.openplanner.team/stops/Cchmonu2", "https://tec.openplanner.team/stops/Cchmonu4"], ["https://tec.openplanner.team/stops/H1ci106a", "https://tec.openplanner.team/stops/H1no142a"], ["https://tec.openplanner.team/stops/N425aab", "https://tec.openplanner.team/stops/N425aha"], ["https://tec.openplanner.team/stops/H5at114a", "https://tec.openplanner.team/stops/H5at133a"], ["https://tec.openplanner.team/stops/Canlemo2", "https://tec.openplanner.team/stops/Clbhour1"], ["https://tec.openplanner.team/stops/N101adb", "https://tec.openplanner.team/stops/N101ama"], ["https://tec.openplanner.team/stops/LCdchod1", "https://tec.openplanner.team/stops/LCdchod2"], ["https://tec.openplanner.team/stops/Lhuleke2", "https://tec.openplanner.team/stops/Lvegend1"], ["https://tec.openplanner.team/stops/LMfbuck2", "https://tec.openplanner.team/stops/LMfpral1"], ["https://tec.openplanner.team/stops/Beclbar1", "https://tec.openplanner.team/stops/Becltri2"], ["https://tec.openplanner.team/stops/N232bgb", "https://tec.openplanner.team/stops/N232bhb"], ["https://tec.openplanner.team/stops/H1qv116a", "https://tec.openplanner.team/stops/H1qv116b"], ["https://tec.openplanner.team/stops/H1ms271b", "https://tec.openplanner.team/stops/H1ms288a"], ["https://tec.openplanner.team/stops/NL76akb", "https://tec.openplanner.team/stops/NL76alc"], ["https://tec.openplanner.team/stops/X760aga", "https://tec.openplanner.team/stops/X760agb"], ["https://tec.openplanner.team/stops/NR21abb", "https://tec.openplanner.team/stops/NR21afb"], ["https://tec.openplanner.team/stops/N503ahb", "https://tec.openplanner.team/stops/N503aia"], ["https://tec.openplanner.team/stops/Bbgncnd1", "https://tec.openplanner.team/stops/Bbgncnd2"], ["https://tec.openplanner.team/stops/LAVcime1", "https://tec.openplanner.team/stops/LAVstat1"], ["https://tec.openplanner.team/stops/H1ms908a", "https://tec.openplanner.team/stops/H1ms910a"], ["https://tec.openplanner.team/stops/LJuhaie1", "https://tec.openplanner.team/stops/LSDgris2"], ["https://tec.openplanner.team/stops/X823aca", "https://tec.openplanner.team/stops/X823acb"], ["https://tec.openplanner.team/stops/X640ada", "https://tec.openplanner.team/stops/X673aeb"], ["https://tec.openplanner.team/stops/Lfhlons2", "https://tec.openplanner.team/stops/Lfhweri2"], ["https://tec.openplanner.team/stops/LSUroyo2", "https://tec.openplanner.team/stops/LSZeg--1"], ["https://tec.openplanner.team/stops/LGEcons2", "https://tec.openplanner.team/stops/LGEpt--1"], ["https://tec.openplanner.team/stops/X947abc", "https://tec.openplanner.team/stops/X947aca"], ["https://tec.openplanner.team/stops/Blsmbfe1", "https://tec.openplanner.team/stops/Bneeace1"], ["https://tec.openplanner.team/stops/LWHkape2", "https://tec.openplanner.team/stops/LWHwaas4"], ["https://tec.openplanner.team/stops/Bovetsa2", "https://tec.openplanner.team/stops/Bwavtrt2"], ["https://tec.openplanner.team/stops/Bjodcoi2", "https://tec.openplanner.team/stops/Bpiejus1"], ["https://tec.openplanner.team/stops/H1sg146b", "https://tec.openplanner.team/stops/H1sg150c"], ["https://tec.openplanner.team/stops/Bhmmjco1", "https://tec.openplanner.team/stops/Bhmmsca1"], ["https://tec.openplanner.team/stops/LChvill*", "https://tec.openplanner.team/stops/LSUroyo2"], ["https://tec.openplanner.team/stops/LCeanne1", "https://tec.openplanner.team/stops/LGAbois1"], ["https://tec.openplanner.team/stops/LWAgare*", "https://tec.openplanner.team/stops/LWApr%C3%A9s3"], ["https://tec.openplanner.team/stops/Buccham2", "https://tec.openplanner.team/stops/Buccvoi1"], ["https://tec.openplanner.team/stops/Cfobriq1", "https://tec.openplanner.team/stops/Cfoperz1"], ["https://tec.openplanner.team/stops/Bnivath1", "https://tec.openplanner.team/stops/Bnivath2"], ["https://tec.openplanner.team/stops/LAUbirv2", "https://tec.openplanner.team/stops/LHMcruc2"], ["https://tec.openplanner.team/stops/Chpceri2", "https://tec.openplanner.team/stops/Chpchea2"], ["https://tec.openplanner.team/stops/Bcseaba1", "https://tec.openplanner.team/stops/Bottpar2"], ["https://tec.openplanner.team/stops/X991agc", "https://tec.openplanner.team/stops/X991aja"], ["https://tec.openplanner.team/stops/LBGcent1", "https://tec.openplanner.team/stops/LHDpota3"], ["https://tec.openplanner.team/stops/LlA43--2", "https://tec.openplanner.team/stops/LrUoudl1"], ["https://tec.openplanner.team/stops/N516alb", "https://tec.openplanner.team/stops/N516apb"], ["https://tec.openplanner.team/stops/H2pe162a", "https://tec.openplanner.team/stops/H2sv217a"], ["https://tec.openplanner.team/stops/X627aab", "https://tec.openplanner.team/stops/X627aba"], ["https://tec.openplanner.team/stops/N136aab", "https://tec.openplanner.team/stops/N138ajb"], ["https://tec.openplanner.team/stops/LTheg--1", "https://tec.openplanner.team/stops/LThgare2"], ["https://tec.openplanner.team/stops/LaFbruc1", "https://tec.openplanner.team/stops/LaFbruc2"], ["https://tec.openplanner.team/stops/Bmonbor1", "https://tec.openplanner.team/stops/Bmonbri1"], ["https://tec.openplanner.team/stops/Cjxdesc2", "https://tec.openplanner.team/stops/Cjxvalh2"], ["https://tec.openplanner.team/stops/Bjodath2", "https://tec.openplanner.team/stops/Bjodath3"], ["https://tec.openplanner.team/stops/LDoeg--1", "https://tec.openplanner.team/stops/LDoeg--2"], ["https://tec.openplanner.team/stops/X601ata", "https://tec.openplanner.team/stops/X601aud"], ["https://tec.openplanner.team/stops/H4am101b", "https://tec.openplanner.team/stops/H4rs118b"], ["https://tec.openplanner.team/stops/X782aaa", "https://tec.openplanner.team/stops/X782ada"], ["https://tec.openplanner.team/stops/N539aca", "https://tec.openplanner.team/stops/N542arb"], ["https://tec.openplanner.team/stops/Bllnfle2", "https://tec.openplanner.team/stops/Bllnlb51"], ["https://tec.openplanner.team/stops/H1bi104a", "https://tec.openplanner.team/stops/H1bi104b"], ["https://tec.openplanner.team/stops/Ccyga4", "https://tec.openplanner.team/stops/Cvlcalv2"], ["https://tec.openplanner.team/stops/X896aaa", "https://tec.openplanner.team/stops/X898aob"], ["https://tec.openplanner.team/stops/X615apa", "https://tec.openplanner.team/stops/X615aqb"], ["https://tec.openplanner.team/stops/H2ma204b", "https://tec.openplanner.team/stops/H3th131a"], ["https://tec.openplanner.team/stops/H1by103a", "https://tec.openplanner.team/stops/H1by103b"], ["https://tec.openplanner.team/stops/LmCkirc2", "https://tec.openplanner.team/stops/LrGzent1"], ["https://tec.openplanner.team/stops/H1ne139a", "https://tec.openplanner.team/stops/H1ne150b"], ["https://tec.openplanner.team/stops/X952aia", "https://tec.openplanner.team/stops/X952aib"], ["https://tec.openplanner.team/stops/LORpave2", "https://tec.openplanner.team/stops/LORthie1"], ["https://tec.openplanner.team/stops/LsVrodt2", "https://tec.openplanner.team/stops/LsVviel1"], ["https://tec.openplanner.team/stops/H1ba114a", "https://tec.openplanner.team/stops/H1ba114b"], ["https://tec.openplanner.team/stops/H1ms279b", "https://tec.openplanner.team/stops/H1ms367a"], ["https://tec.openplanner.team/stops/LENarde2", "https://tec.openplanner.team/stops/LENchem1"], ["https://tec.openplanner.team/stops/LNCmele1", "https://tec.openplanner.team/stops/LRRchea3"], ["https://tec.openplanner.team/stops/Cfamate1", "https://tec.openplanner.team/stops/Cfamate2"], ["https://tec.openplanner.team/stops/H4ae101a", "https://tec.openplanner.team/stops/H4ae101b"], ["https://tec.openplanner.team/stops/N540ada", "https://tec.openplanner.team/stops/N540aha"], ["https://tec.openplanner.team/stops/Bfelada1", "https://tec.openplanner.team/stops/Bfelada2"], ["https://tec.openplanner.team/stops/LmYeich1", "https://tec.openplanner.team/stops/LmYeich2"], ["https://tec.openplanner.team/stops/Cmmheur1", "https://tec.openplanner.team/stops/Cmyrens2"], ["https://tec.openplanner.team/stops/LDLgran3", "https://tec.openplanner.team/stops/LHYlinc1"], ["https://tec.openplanner.team/stops/X908aka", "https://tec.openplanner.team/stops/X911aaa"], ["https://tec.openplanner.team/stops/LBIcabi1", "https://tec.openplanner.team/stops/LBIhann1"], ["https://tec.openplanner.team/stops/H1el135a", "https://tec.openplanner.team/stops/H1el140c"], ["https://tec.openplanner.team/stops/H4bd112b", "https://tec.openplanner.team/stops/H4ma411b"], ["https://tec.openplanner.team/stops/LsVfrde2", "https://tec.openplanner.team/stops/LsVrodt1"], ["https://tec.openplanner.team/stops/Lagmair1", "https://tec.openplanner.team/stops/Lagmair2"], ["https://tec.openplanner.team/stops/Berngrt2", "https://tec.openplanner.team/stops/Bernpon2"], ["https://tec.openplanner.team/stops/H5rx150a", "https://tec.openplanner.team/stops/H5rx151a"], ["https://tec.openplanner.team/stops/Lbocruc1", "https://tec.openplanner.team/stops/Lbocruc2"], ["https://tec.openplanner.team/stops/N501erb", "https://tec.openplanner.team/stops/N501lpa"], ["https://tec.openplanner.team/stops/X614aka", "https://tec.openplanner.team/stops/X614ara"], ["https://tec.openplanner.team/stops/X904aba", "https://tec.openplanner.team/stops/X904aca"], ["https://tec.openplanner.team/stops/Cmmgadi2", "https://tec.openplanner.team/stops/Cmmramb1"], ["https://tec.openplanner.team/stops/N310aea", "https://tec.openplanner.team/stops/X892aga"], ["https://tec.openplanner.team/stops/LFAwale1", "https://tec.openplanner.team/stops/LLTther1"], ["https://tec.openplanner.team/stops/Cchfran1", "https://tec.openplanner.team/stops/Cchrmon1"], ["https://tec.openplanner.team/stops/X633amb", "https://tec.openplanner.team/stops/X634aab"], ["https://tec.openplanner.team/stops/H1og130b", "https://tec.openplanner.team/stops/H1og133b"], ["https://tec.openplanner.team/stops/Livgera1", "https://tec.openplanner.team/stops/Livgera5"], ["https://tec.openplanner.team/stops/N569aja", "https://tec.openplanner.team/stops/N569alb"], ["https://tec.openplanner.team/stops/LPbchat1", "https://tec.openplanner.team/stops/LPbpl--1"], ["https://tec.openplanner.team/stops/N503akb", "https://tec.openplanner.team/stops/N580afa"], ["https://tec.openplanner.team/stops/LVllieg2", "https://tec.openplanner.team/stops/LVlplan2"], ["https://tec.openplanner.team/stops/X614aba", "https://tec.openplanner.team/stops/X614abb"], ["https://tec.openplanner.team/stops/X725aed", "https://tec.openplanner.team/stops/X725aza"], ["https://tec.openplanner.team/stops/X942aea", "https://tec.openplanner.team/stops/X942afa"], ["https://tec.openplanner.team/stops/N543axa", "https://tec.openplanner.team/stops/N543btb"], ["https://tec.openplanner.team/stops/Lsechan1", "https://tec.openplanner.team/stops/Lsechan2"], ["https://tec.openplanner.team/stops/H4lu128a", "https://tec.openplanner.team/stops/H4mo195b"], ["https://tec.openplanner.team/stops/X723aaa", "https://tec.openplanner.team/stops/X724ada"], ["https://tec.openplanner.team/stops/X898afa", "https://tec.openplanner.team/stops/X898ama"], ["https://tec.openplanner.team/stops/X902aib", "https://tec.openplanner.team/stops/X902aka"], ["https://tec.openplanner.team/stops/H1ob334a", "https://tec.openplanner.team/stops/H1ob334b"], ["https://tec.openplanner.team/stops/X804cba", "https://tec.openplanner.team/stops/X818aab"], ["https://tec.openplanner.team/stops/NC23aab", "https://tec.openplanner.team/stops/NC23aba"], ["https://tec.openplanner.team/stops/H1me115a", "https://tec.openplanner.team/stops/H1so132b"], ["https://tec.openplanner.team/stops/LVNroua2", "https://tec.openplanner.team/stops/LWDsott4"], ["https://tec.openplanner.team/stops/Llgrege2", "https://tec.openplanner.team/stops/LlgR-F1*"], ["https://tec.openplanner.team/stops/X750aba", "https://tec.openplanner.team/stops/X750ada"], ["https://tec.openplanner.team/stops/X725aza", "https://tec.openplanner.team/stops/X725bca"], ["https://tec.openplanner.team/stops/Ccpetan1", "https://tec.openplanner.team/stops/Ccpsecp2"], ["https://tec.openplanner.team/stops/LREaube1", "https://tec.openplanner.team/stops/LREsaul2"], ["https://tec.openplanner.team/stops/N579afb", "https://tec.openplanner.team/stops/N580ahb"], ["https://tec.openplanner.team/stops/LTPpres2", "https://tec.openplanner.team/stops/LTPspay2"], ["https://tec.openplanner.team/stops/N106ahb", "https://tec.openplanner.team/stops/N106aib"], ["https://tec.openplanner.team/stops/H4ty314a", "https://tec.openplanner.team/stops/H4ty314d"], ["https://tec.openplanner.team/stops/LAibego2", "https://tec.openplanner.team/stops/LAipala1"], ["https://tec.openplanner.team/stops/Cgzabau2", "https://tec.openplanner.team/stops/Cgzabau3"], ["https://tec.openplanner.team/stops/Bclglbu1", "https://tec.openplanner.team/stops/Bcrbcel1"], ["https://tec.openplanner.team/stops/H1ho125c", "https://tec.openplanner.team/stops/H1ho130a"], ["https://tec.openplanner.team/stops/X638aka", "https://tec.openplanner.team/stops/X652afc"], ["https://tec.openplanner.team/stops/H1vh135b", "https://tec.openplanner.team/stops/H1vh136a"], ["https://tec.openplanner.team/stops/Boveker1", "https://tec.openplanner.team/stops/Bovesnh1"], ["https://tec.openplanner.team/stops/LFmcarr2", "https://tec.openplanner.team/stops/LKmcabi1"], ["https://tec.openplanner.team/stops/Bblavba1", "https://tec.openplanner.team/stops/Bblavol2"], ["https://tec.openplanner.team/stops/Bsengma1", "https://tec.openplanner.team/stops/Bsenpeu1"], ["https://tec.openplanner.team/stops/Cmlange1", "https://tec.openplanner.team/stops/Cmlange2"], ["https://tec.openplanner.team/stops/Ccugend1", "https://tec.openplanner.team/stops/Ccugend2"], ["https://tec.openplanner.team/stops/H2lc170a", "https://tec.openplanner.team/stops/H2ll182a"], ["https://tec.openplanner.team/stops/X903aab", "https://tec.openplanner.team/stops/X903adb"], ["https://tec.openplanner.team/stops/N513bbc", "https://tec.openplanner.team/stops/N516aob"], ["https://tec.openplanner.team/stops/H1te187a", "https://tec.openplanner.team/stops/H1te188a"], ["https://tec.openplanner.team/stops/X363aba", "https://tec.openplanner.team/stops/X363adb"], ["https://tec.openplanner.team/stops/LHEchar2", "https://tec.openplanner.team/stops/LHEgare2"], ["https://tec.openplanner.team/stops/LLSba4-1", "https://tec.openplanner.team/stops/LLSbajo2"], ["https://tec.openplanner.team/stops/Bsrgegl1", "https://tec.openplanner.team/stops/Bsrgegl2"], ["https://tec.openplanner.team/stops/H4ga148b", "https://tec.openplanner.team/stops/H4ga162a"], ["https://tec.openplanner.team/stops/Ccobour2", "https://tec.openplanner.team/stops/Csograf1"], ["https://tec.openplanner.team/stops/X733aca", "https://tec.openplanner.team/stops/X733acb"], ["https://tec.openplanner.team/stops/N232aza", "https://tec.openplanner.team/stops/N232baa"], ["https://tec.openplanner.team/stops/Ccucora2", "https://tec.openplanner.team/stops/Ccucorb1"], ["https://tec.openplanner.team/stops/N513atb", "https://tec.openplanner.team/stops/N513ava"], ["https://tec.openplanner.team/stops/LhGadap1", "https://tec.openplanner.team/stops/LhGbahn3"], ["https://tec.openplanner.team/stops/Cgystbe2", "https://tec.openplanner.team/stops/Cmtdepo2"], ["https://tec.openplanner.team/stops/Caiegli1", "https://tec.openplanner.team/stops/Cprvsar2"], ["https://tec.openplanner.team/stops/X724ada", "https://tec.openplanner.team/stops/X724adb"], ["https://tec.openplanner.team/stops/X908aob", "https://tec.openplanner.team/stops/X908apb"], ["https://tec.openplanner.team/stops/H2hg156a", "https://tec.openplanner.team/stops/H2hg156b"], ["https://tec.openplanner.team/stops/LMnlogi1", "https://tec.openplanner.team/stops/N223aaa"], ["https://tec.openplanner.team/stops/LAOeg--1", "https://tec.openplanner.team/stops/LBpbruy2"], ["https://tec.openplanner.team/stops/LFCotte1", "https://tec.openplanner.team/stops/LFCotte2"], ["https://tec.openplanner.team/stops/LTamag1", "https://tec.openplanner.team/stops/LTamag2"], ["https://tec.openplanner.team/stops/X801clb", "https://tec.openplanner.team/stops/X801cma"], ["https://tec.openplanner.team/stops/X654aea", "https://tec.openplanner.team/stops/X654afb"], ["https://tec.openplanner.team/stops/Bboueta1", "https://tec.openplanner.team/stops/Bbounci1"], ["https://tec.openplanner.team/stops/LMHec--2", "https://tec.openplanner.team/stops/LMHeg--2"], ["https://tec.openplanner.team/stops/Bblmcel1", "https://tec.openplanner.team/stops/Bcrbrpb2"], ["https://tec.openplanner.team/stops/LhRkirc1", "https://tec.openplanner.team/stops/LsCback1"], ["https://tec.openplanner.team/stops/X996adb", "https://tec.openplanner.team/stops/X996ahb"], ["https://tec.openplanner.team/stops/X938ada", "https://tec.openplanner.team/stops/X939aha"], ["https://tec.openplanner.team/stops/H1bb120b", "https://tec.openplanner.team/stops/H1do120b"], ["https://tec.openplanner.team/stops/H1he103b", "https://tec.openplanner.team/stops/H1po132b"], ["https://tec.openplanner.team/stops/LHUgodi2", "https://tec.openplanner.team/stops/LHUlebe8"], ["https://tec.openplanner.team/stops/LVlfooz3", "https://tec.openplanner.team/stops/LVlleno1"], ["https://tec.openplanner.team/stops/Cgoclad1", "https://tec.openplanner.team/stops/Cgoloca1"], ["https://tec.openplanner.team/stops/X878abb", "https://tec.openplanner.team/stops/X878adb"], ["https://tec.openplanner.team/stops/Lsnagne2", "https://tec.openplanner.team/stops/Lsnlibe1"], ["https://tec.openplanner.team/stops/Lcehipp1", "https://tec.openplanner.team/stops/Lcehipp2"], ["https://tec.openplanner.team/stops/H2hg145a", "https://tec.openplanner.team/stops/H2hg146b"], ["https://tec.openplanner.team/stops/Lbrfoid4", "https://tec.openplanner.team/stops/Lbrplai2"], ["https://tec.openplanner.team/stops/LSlpays2", "https://tec.openplanner.team/stops/X919ala"], ["https://tec.openplanner.team/stops/X829abb", "https://tec.openplanner.team/stops/X829acb"], ["https://tec.openplanner.team/stops/LON02--2", "https://tec.openplanner.team/stops/LON21--2"], ["https://tec.openplanner.team/stops/LkOgren1", "https://tec.openplanner.team/stops/LlCauto2"], ["https://tec.openplanner.team/stops/Cnachcu2", "https://tec.openplanner.team/stops/Cnagrro1"], ["https://tec.openplanner.team/stops/H5el107b", "https://tec.openplanner.team/stops/H5el117b"], ["https://tec.openplanner.team/stops/Cthgrat1", "https://tec.openplanner.team/stops/Cthpano2"], ["https://tec.openplanner.team/stops/Lemdieu1", "https://tec.openplanner.team/stops/Lempass1"], ["https://tec.openplanner.team/stops/Cgxvkho3", "https://tec.openplanner.team/stops/Cgxvkho4"], ["https://tec.openplanner.team/stops/LAUnico1", "https://tec.openplanner.team/stops/LAUtism1"], ["https://tec.openplanner.team/stops/X371aia", "https://tec.openplanner.team/stops/X371aib"], ["https://tec.openplanner.team/stops/H1au102b", "https://tec.openplanner.team/stops/H1au103a"], ["https://tec.openplanner.team/stops/X609aja", "https://tec.openplanner.team/stops/X609ajb"], ["https://tec.openplanner.team/stops/Bquegob2", "https://tec.openplanner.team/stops/Brebmtg2"], ["https://tec.openplanner.team/stops/N134abb", "https://tec.openplanner.team/stops/N134aeb"], ["https://tec.openplanner.team/stops/X777aca", "https://tec.openplanner.team/stops/X784abb"], ["https://tec.openplanner.team/stops/Blincal1", "https://tec.openplanner.team/stops/Bpelegl4"], ["https://tec.openplanner.team/stops/X723aaa", "https://tec.openplanner.team/stops/X775akb"], ["https://tec.openplanner.team/stops/LORdtec*", "https://tec.openplanner.team/stops/LORherl1"], ["https://tec.openplanner.team/stops/Bquegob1", "https://tec.openplanner.team/stops/Bquegob2"], ["https://tec.openplanner.team/stops/N209afb", "https://tec.openplanner.team/stops/NL79aaa"], ["https://tec.openplanner.team/stops/X888aga", "https://tec.openplanner.team/stops/X888agb"], ["https://tec.openplanner.team/stops/Bjodgai2", "https://tec.openplanner.team/stops/Bjodmal1"], ["https://tec.openplanner.team/stops/Crcgare1", "https://tec.openplanner.team/stops/Crcgare2"], ["https://tec.openplanner.team/stops/LCIsucr2", "https://tec.openplanner.team/stops/LVHweri2"], ["https://tec.openplanner.team/stops/Lmocoop2", "https://tec.openplanner.team/stops/Lmojoan1"], ["https://tec.openplanner.team/stops/Bwatfva2", "https://tec.openplanner.team/stops/Bwatgib1"], ["https://tec.openplanner.team/stops/X760aaa", "https://tec.openplanner.team/stops/X760aba"], ["https://tec.openplanner.team/stops/X941afb", "https://tec.openplanner.team/stops/X941agb"], ["https://tec.openplanner.team/stops/Llgchai1", "https://tec.openplanner.team/stops/Llggerm1"], ["https://tec.openplanner.team/stops/N308bcb", "https://tec.openplanner.team/stops/N331afd"], ["https://tec.openplanner.team/stops/H4ty281b", "https://tec.openplanner.team/stops/H4ty307a"], ["https://tec.openplanner.team/stops/LHUpsar2", "https://tec.openplanner.team/stops/LHUsauv2"], ["https://tec.openplanner.team/stops/H1bg110b", "https://tec.openplanner.team/stops/H1hy125a"], ["https://tec.openplanner.team/stops/H1hr121a", "https://tec.openplanner.team/stops/H3so171a"], ["https://tec.openplanner.team/stops/H4bo115b", "https://tec.openplanner.team/stops/H4bo117a"], ["https://tec.openplanner.team/stops/LrAbotz2", "https://tec.openplanner.team/stops/LrApley2"], ["https://tec.openplanner.team/stops/NH01aaa", "https://tec.openplanner.team/stops/NH01aja"], ["https://tec.openplanner.team/stops/X824aeb", "https://tec.openplanner.team/stops/X824afb"], ["https://tec.openplanner.team/stops/N501ewa", "https://tec.openplanner.team/stops/N501hkb"], ["https://tec.openplanner.team/stops/H5fl101a", "https://tec.openplanner.team/stops/H5fl102d"], ["https://tec.openplanner.team/stops/Lvtchpl2", "https://tec.openplanner.team/stops/Lvtchpl4"], ["https://tec.openplanner.team/stops/N244awa", "https://tec.openplanner.team/stops/N248aca"], ["https://tec.openplanner.team/stops/Lmolagu2", "https://tec.openplanner.team/stops/Lmopech2"], ["https://tec.openplanner.team/stops/Ljemont1", "https://tec.openplanner.team/stops/Ljexhav4"], ["https://tec.openplanner.team/stops/H4ar107b", "https://tec.openplanner.team/stops/H4pl132a"], ["https://tec.openplanner.team/stops/Csedoua1", "https://tec.openplanner.team/stops/Csepier1"], ["https://tec.openplanner.team/stops/Bsjgegl1", "https://tec.openplanner.team/stops/Bzluvil2"], ["https://tec.openplanner.team/stops/Ctafran1", "https://tec.openplanner.team/stops/N543cpa"], ["https://tec.openplanner.team/stops/H1je366a", "https://tec.openplanner.team/stops/H1je366b"], ["https://tec.openplanner.team/stops/LLebibl3", "https://tec.openplanner.team/stops/X547ahb"], ["https://tec.openplanner.team/stops/Livrame1", "https://tec.openplanner.team/stops/Livroch1"], ["https://tec.openplanner.team/stops/X911aja", "https://tec.openplanner.team/stops/X911ama"], ["https://tec.openplanner.team/stops/X715acc", "https://tec.openplanner.team/stops/X715ada"], ["https://tec.openplanner.team/stops/X631abb", "https://tec.openplanner.team/stops/X631acb"], ["https://tec.openplanner.team/stops/X911adb", "https://tec.openplanner.team/stops/X911asa"], ["https://tec.openplanner.team/stops/H2pr114a", "https://tec.openplanner.team/stops/H3so171a"], ["https://tec.openplanner.team/stops/Bottegl4", "https://tec.openplanner.team/stops/Bottpma2"], ["https://tec.openplanner.team/stops/N534bkg", "https://tec.openplanner.team/stops/N534blg"], ["https://tec.openplanner.team/stops/X771acb", "https://tec.openplanner.team/stops/X771adb"], ["https://tec.openplanner.team/stops/LREchal1", "https://tec.openplanner.team/stops/LREprea2"], ["https://tec.openplanner.team/stops/LCPaube1", "https://tec.openplanner.team/stops/LCPaywa1"], ["https://tec.openplanner.team/stops/X777aab", "https://tec.openplanner.team/stops/X777abb"], ["https://tec.openplanner.team/stops/Llgcoro2", "https://tec.openplanner.team/stops/Llgcoro4"], ["https://tec.openplanner.team/stops/Llgbobu1", "https://tec.openplanner.team/stops/Lmochar2"], ["https://tec.openplanner.team/stops/X765abb", "https://tec.openplanner.team/stops/X765acb"], ["https://tec.openplanner.team/stops/H5rx140a", "https://tec.openplanner.team/stops/H5rx146b"], ["https://tec.openplanner.team/stops/X804bwa", "https://tec.openplanner.team/stops/X804bwb"], ["https://tec.openplanner.team/stops/LaMjous1", "https://tec.openplanner.team/stops/LaMpark2"], ["https://tec.openplanner.team/stops/Cfabaty1", "https://tec.openplanner.team/stops/Cfabaty4"], ["https://tec.openplanner.team/stops/Csabrun1", "https://tec.openplanner.team/stops/Cvpsthu2"], ["https://tec.openplanner.team/stops/LSNgerm1", "https://tec.openplanner.team/stops/LWerola1"], ["https://tec.openplanner.team/stops/X740aab", "https://tec.openplanner.team/stops/X740acb"], ["https://tec.openplanner.team/stops/Bglacsr1", "https://tec.openplanner.team/stops/Bwaygrg2"], ["https://tec.openplanner.team/stops/X947aaa", "https://tec.openplanner.team/stops/X948aqb"], ["https://tec.openplanner.team/stops/H2sb233c", "https://tec.openplanner.team/stops/H2sb235b"], ["https://tec.openplanner.team/stops/Llgtill1", "https://tec.openplanner.team/stops/Llgtunn2"], ["https://tec.openplanner.team/stops/LRRchea2", "https://tec.openplanner.team/stops/LRRchea4"], ["https://tec.openplanner.team/stops/Llgcoro2", "https://tec.openplanner.team/stops/Llgtir-1"], ["https://tec.openplanner.team/stops/H1em101a", "https://tec.openplanner.team/stops/H1ev115a"], ["https://tec.openplanner.team/stops/N155afb", "https://tec.openplanner.team/stops/N155aga"], ["https://tec.openplanner.team/stops/N308aca", "https://tec.openplanner.team/stops/N308bab"], ["https://tec.openplanner.team/stops/X614aha", "https://tec.openplanner.team/stops/X614aub"], ["https://tec.openplanner.team/stops/H4ef110a", "https://tec.openplanner.team/stops/H4ef138b"], ["https://tec.openplanner.team/stops/LAuchau2", "https://tec.openplanner.team/stops/LMubras2"], ["https://tec.openplanner.team/stops/LBTcarr4", "https://tec.openplanner.team/stops/LCxchal2"], ["https://tec.openplanner.team/stops/LODamco1", "https://tec.openplanner.team/stops/LODarbr1"], ["https://tec.openplanner.team/stops/Cwgrans2", "https://tec.openplanner.team/stops/Cwgrans4"], ["https://tec.openplanner.team/stops/Bbst4br3", "https://tec.openplanner.team/stops/Bhlvlou1"], ["https://tec.openplanner.team/stops/X608ama", "https://tec.openplanner.team/stops/X608axa"], ["https://tec.openplanner.team/stops/X839ada", "https://tec.openplanner.team/stops/X839aeb"], ["https://tec.openplanner.team/stops/Btslegl2", "https://tec.openplanner.team/stops/Btsllnd2"], ["https://tec.openplanner.team/stops/Ccyga7", "https://tec.openplanner.team/stops/NH01aka"], ["https://tec.openplanner.team/stops/Loucham1", "https://tec.openplanner.team/stops/Loucham4"], ["https://tec.openplanner.team/stops/Blimegl1", "https://tec.openplanner.team/stops/Bottgar6"], ["https://tec.openplanner.team/stops/LsTgren2", "https://tec.openplanner.team/stops/LwPdorf2"], ["https://tec.openplanner.team/stops/H1ob330a", "https://tec.openplanner.team/stops/H1sd366a"], ["https://tec.openplanner.team/stops/X661axb", "https://tec.openplanner.team/stops/X817ada"], ["https://tec.openplanner.team/stops/Lhrspi-2", "https://tec.openplanner.team/stops/Lmirca-1"], ["https://tec.openplanner.team/stops/N501gva", "https://tec.openplanner.team/stops/N501hdb"], ["https://tec.openplanner.team/stops/LBBabat1", "https://tec.openplanner.team/stops/LBBpech2"], ["https://tec.openplanner.team/stops/H2ec106a", "https://tec.openplanner.team/stops/H2me115a"], ["https://tec.openplanner.team/stops/N532acb", "https://tec.openplanner.team/stops/N532ajb"], ["https://tec.openplanner.team/stops/H4co107b", "https://tec.openplanner.team/stops/H4co108b"], ["https://tec.openplanner.team/stops/N501ccb", "https://tec.openplanner.team/stops/N521aua"], ["https://tec.openplanner.team/stops/LTAbran2", "https://tec.openplanner.team/stops/LTAchau2"], ["https://tec.openplanner.team/stops/LBTfoot2", "https://tec.openplanner.team/stops/LBTwauc2"], ["https://tec.openplanner.team/stops/H2me113b", "https://tec.openplanner.team/stops/H2mi123b"], ["https://tec.openplanner.team/stops/N205acb", "https://tec.openplanner.team/stops/N220acb"], ["https://tec.openplanner.team/stops/N538asc", "https://tec.openplanner.team/stops/N538axb"], ["https://tec.openplanner.team/stops/LbUkrin2", "https://tec.openplanner.team/stops/LmUvilz2"], ["https://tec.openplanner.team/stops/LCeanne1", "https://tec.openplanner.team/stops/LLWchat1"], ["https://tec.openplanner.team/stops/X896afa", "https://tec.openplanner.team/stops/X896ahb"], ["https://tec.openplanner.team/stops/N569ama", "https://tec.openplanner.team/stops/N569ana"], ["https://tec.openplanner.team/stops/X601cma", "https://tec.openplanner.team/stops/X601dia"], ["https://tec.openplanner.team/stops/Berncim1", "https://tec.openplanner.team/stops/Berncim3"], ["https://tec.openplanner.team/stops/LmYkreu1", "https://tec.openplanner.team/stops/LmYkreu2"], ["https://tec.openplanner.team/stops/Cdahtvi2", "https://tec.openplanner.team/stops/Cdamare1"], ["https://tec.openplanner.team/stops/H4ty356a", "https://tec.openplanner.team/stops/H4ty356d"], ["https://tec.openplanner.team/stops/X985aab", "https://tec.openplanner.team/stops/X985aac"], ["https://tec.openplanner.team/stops/LaAjahn1", "https://tec.openplanner.team/stops/LaAjahn2"], ["https://tec.openplanner.team/stops/H2fy121a", "https://tec.openplanner.team/stops/H2lh127a"], ["https://tec.openplanner.team/stops/Louegla1", "https://tec.openplanner.team/stops/Louencl1"], ["https://tec.openplanner.team/stops/N111aeb", "https://tec.openplanner.team/stops/N111afb"], ["https://tec.openplanner.team/stops/H1ho128a", "https://tec.openplanner.team/stops/H1ho128b"], ["https://tec.openplanner.team/stops/N501ama", "https://tec.openplanner.team/stops/N501apa"], ["https://tec.openplanner.team/stops/X899aaa", "https://tec.openplanner.team/stops/X899ada"], ["https://tec.openplanner.team/stops/X872aba", "https://tec.openplanner.team/stops/X872abb"], ["https://tec.openplanner.team/stops/LPAchpl1", "https://tec.openplanner.team/stops/LPAchpl2"], ["https://tec.openplanner.team/stops/LhDkreu1", "https://tec.openplanner.team/stops/LhDkreu2"], ["https://tec.openplanner.team/stops/N127aja", "https://tec.openplanner.team/stops/N127bfa"], ["https://tec.openplanner.team/stops/H1gy112b", "https://tec.openplanner.team/stops/H1gy114b"], ["https://tec.openplanner.team/stops/NL73acb", "https://tec.openplanner.team/stops/NL73ada"], ["https://tec.openplanner.team/stops/X955aab", "https://tec.openplanner.team/stops/X955adb"], ["https://tec.openplanner.team/stops/Bsoigar1", "https://tec.openplanner.team/stops/H3so166a"], ["https://tec.openplanner.team/stops/X631aba", "https://tec.openplanner.team/stops/X631adb"], ["https://tec.openplanner.team/stops/Bbldmun2", "https://tec.openplanner.team/stops/Bhmmjco1"], ["https://tec.openplanner.team/stops/N501cab", "https://tec.openplanner.team/stops/N521aua"], ["https://tec.openplanner.team/stops/Cctcoll2", "https://tec.openplanner.team/stops/Cctpass2"], ["https://tec.openplanner.team/stops/Llghars7", "https://tec.openplanner.team/stops/Llgm%C3%A9di2"], ["https://tec.openplanner.team/stops/Bbghpln1", "https://tec.openplanner.team/stops/Benggar1"], ["https://tec.openplanner.team/stops/N117aba", "https://tec.openplanner.team/stops/N117aga"], ["https://tec.openplanner.team/stops/X625aga", "https://tec.openplanner.team/stops/X625agb"], ["https://tec.openplanner.team/stops/Blinbru1", "https://tec.openplanner.team/stops/Blinhue2"], ["https://tec.openplanner.team/stops/N501fma", "https://tec.openplanner.team/stops/N501kvb"], ["https://tec.openplanner.team/stops/Csygare1", "https://tec.openplanner.team/stops/Csygare2"], ["https://tec.openplanner.team/stops/H4ir162a", "https://tec.openplanner.team/stops/H4ir162b"], ["https://tec.openplanner.team/stops/N153aba", "https://tec.openplanner.team/stops/N153abb"], ["https://tec.openplanner.team/stops/Cpctunn1", "https://tec.openplanner.team/stops/Cpctunn2"], ["https://tec.openplanner.team/stops/Lfhmalv2", "https://tec.openplanner.team/stops/Lfhnrou1"], ["https://tec.openplanner.team/stops/Ccipier1", "https://tec.openplanner.team/stops/Ccivill1"], ["https://tec.openplanner.team/stops/LOLbout2", "https://tec.openplanner.team/stops/LOLcroi2"], ["https://tec.openplanner.team/stops/H2hp116a", "https://tec.openplanner.team/stops/H2hp118b"], ["https://tec.openplanner.team/stops/Cbmplac1", "https://tec.openplanner.team/stops/Clcfall4"], ["https://tec.openplanner.team/stops/X736acb", "https://tec.openplanner.team/stops/X736adb"], ["https://tec.openplanner.team/stops/X908ajb", "https://tec.openplanner.team/stops/X908aka"], ["https://tec.openplanner.team/stops/H1ho133a", "https://tec.openplanner.team/stops/H1ho133b"], ["https://tec.openplanner.team/stops/LCRabbe2", "https://tec.openplanner.team/stops/LCRrape1"], ["https://tec.openplanner.team/stops/LWecorn1", "https://tec.openplanner.team/stops/LWerola2"], ["https://tec.openplanner.team/stops/X746abb", "https://tec.openplanner.team/stops/X746acb"], ["https://tec.openplanner.team/stops/Lhrdeme1", "https://tec.openplanner.team/stops/Lhrespe2"], ["https://tec.openplanner.team/stops/LVnrock1", "https://tec.openplanner.team/stops/LVnrock2"], ["https://tec.openplanner.team/stops/Lagjard1", "https://tec.openplanner.team/stops/Lagmair2"], ["https://tec.openplanner.team/stops/H3lr106a", "https://tec.openplanner.team/stops/H3lr106b"], ["https://tec.openplanner.team/stops/H1cu118a", "https://tec.openplanner.team/stops/H1cu130a"], ["https://tec.openplanner.team/stops/LFUfonc1", "https://tec.openplanner.team/stops/LFUfonc2"], ["https://tec.openplanner.team/stops/X754aoa", "https://tec.openplanner.team/stops/X754apa"], ["https://tec.openplanner.team/stops/X641axa", "https://tec.openplanner.team/stops/X641ayb"], ["https://tec.openplanner.team/stops/LMOf21-1", "https://tec.openplanner.team/stops/LMOs45-1"], ["https://tec.openplanner.team/stops/Bblague2", "https://tec.openplanner.team/stops/Bblapje1"], ["https://tec.openplanner.team/stops/H1hr122b", "https://tec.openplanner.team/stops/H1hr124b"], ["https://tec.openplanner.team/stops/N514aha", "https://tec.openplanner.team/stops/N515akb"], ["https://tec.openplanner.team/stops/Bhmmcor1", "https://tec.openplanner.team/stops/Btlgmou1"], ["https://tec.openplanner.team/stops/Cgycvie2", "https://tec.openplanner.team/stops/Cgynuto1"], ["https://tec.openplanner.team/stops/H4mb142a", "https://tec.openplanner.team/stops/H4mb143a"], ["https://tec.openplanner.team/stops/X945aba", "https://tec.openplanner.team/stops/X945acb"], ["https://tec.openplanner.team/stops/LBlhaut2", "https://tec.openplanner.team/stops/LLUlieg1"], ["https://tec.openplanner.team/stops/H1hc150a", "https://tec.openplanner.team/stops/H4be113a"], ["https://tec.openplanner.team/stops/LCscarr1", "https://tec.openplanner.team/stops/LCschen1"], ["https://tec.openplanner.team/stops/N562aca", "https://tec.openplanner.team/stops/N562aeb"], ["https://tec.openplanner.team/stops/N243acb", "https://tec.openplanner.team/stops/N252aba"], ["https://tec.openplanner.team/stops/Bgrmpsn2", "https://tec.openplanner.team/stops/N522aub"], ["https://tec.openplanner.team/stops/LJAcime1", "https://tec.openplanner.team/stops/LJAherb3"], ["https://tec.openplanner.team/stops/H1ms296b", "https://tec.openplanner.team/stops/H1ms301a"], ["https://tec.openplanner.team/stops/X904aab", "https://tec.openplanner.team/stops/X943agb"], ["https://tec.openplanner.team/stops/LhUkape2", "https://tec.openplanner.team/stops/LhUkreu2"], ["https://tec.openplanner.team/stops/NL57afb", "https://tec.openplanner.team/stops/NL57agb"], ["https://tec.openplanner.team/stops/Bwatmco2", "https://tec.openplanner.team/stops/Bwatnro2"], ["https://tec.openplanner.team/stops/X602ana", "https://tec.openplanner.team/stops/X602anb"], ["https://tec.openplanner.team/stops/N351aaa", "https://tec.openplanner.team/stops/N351aib"], ["https://tec.openplanner.team/stops/X636aua", "https://tec.openplanner.team/stops/X636aub"], ["https://tec.openplanner.team/stops/Brsgm801", "https://tec.openplanner.team/stops/Bwatmch3"], ["https://tec.openplanner.team/stops/Llgbrab2", "https://tec.openplanner.team/stops/Llgvinc2"], ["https://tec.openplanner.team/stops/H1wg124a", "https://tec.openplanner.team/stops/H1wg124b"], ["https://tec.openplanner.team/stops/Bwaveur1", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://tec.openplanner.team/stops/N131aeb", "https://tec.openplanner.team/stops/N131afa"], ["https://tec.openplanner.team/stops/Cmtchas1", "https://tec.openplanner.team/stops/Cmtchas2"], ["https://tec.openplanner.team/stops/H2hp114b", "https://tec.openplanner.team/stops/H2hp116a"], ["https://tec.openplanner.team/stops/Lglvand2", "https://tec.openplanner.team/stops/Llgglai2"], ["https://tec.openplanner.team/stops/X825abb", "https://tec.openplanner.team/stops/X825ada"], ["https://tec.openplanner.team/stops/LhSfrep2", "https://tec.openplanner.team/stops/LhSgete3"], ["https://tec.openplanner.team/stops/Brixaug3", "https://tec.openplanner.team/stops/Brixdec1"], ["https://tec.openplanner.team/stops/N531ajb", "https://tec.openplanner.team/stops/N531asa"], ["https://tec.openplanner.team/stops/H5bl123b", "https://tec.openplanner.team/stops/H5bl124b"], ["https://tec.openplanner.team/stops/H2ha132b", "https://tec.openplanner.team/stops/H2sb221a"], ["https://tec.openplanner.team/stops/Bclgbvi1", "https://tec.openplanner.team/stops/Bclgbvi2"], ["https://tec.openplanner.team/stops/N501kxb", "https://tec.openplanner.team/stops/N501mra"], ["https://tec.openplanner.team/stops/Lbrcard1", "https://tec.openplanner.team/stops/Lbrcard2"], ["https://tec.openplanner.team/stops/N561aib", "https://tec.openplanner.team/stops/N584apb"], ["https://tec.openplanner.team/stops/LiV19--2", "https://tec.openplanner.team/stops/LiVkreu2"], ["https://tec.openplanner.team/stops/H4pl112a", "https://tec.openplanner.team/stops/H4wn126a"], ["https://tec.openplanner.team/stops/Lfhchaf3", "https://tec.openplanner.team/stops/Livpost2"], ["https://tec.openplanner.team/stops/Bblabfo2", "https://tec.openplanner.team/stops/Bblasta1"], ["https://tec.openplanner.team/stops/Bblatet2", "https://tec.openplanner.team/stops/Bbsibou2"], ["https://tec.openplanner.team/stops/NL76asa", "https://tec.openplanner.team/stops/NL76asb"], ["https://tec.openplanner.team/stops/Lgrlimi3", "https://tec.openplanner.team/stops/Lgrlimi4"], ["https://tec.openplanner.team/stops/H4mt215b", "https://tec.openplanner.team/stops/H4mt222b"], ["https://tec.openplanner.team/stops/Lgrfalc1", "https://tec.openplanner.team/stops/Lgrramp2"], ["https://tec.openplanner.team/stops/X871adb", "https://tec.openplanner.team/stops/X871aeb"], ["https://tec.openplanner.team/stops/X813aab", "https://tec.openplanner.team/stops/X857aaa"], ["https://tec.openplanner.team/stops/H5rx103a", "https://tec.openplanner.team/stops/H5rx110b"], ["https://tec.openplanner.team/stops/X760afb", "https://tec.openplanner.team/stops/X762afa"], ["https://tec.openplanner.team/stops/H4ru235b", "https://tec.openplanner.team/stops/H4ru239a"], ["https://tec.openplanner.team/stops/H4co103b", "https://tec.openplanner.team/stops/H4co106d"], ["https://tec.openplanner.team/stops/N351aka", "https://tec.openplanner.team/stops/N351aub"], ["https://tec.openplanner.team/stops/X805aaa", "https://tec.openplanner.team/stops/X805agb"], ["https://tec.openplanner.team/stops/X747afb", "https://tec.openplanner.team/stops/X747ahb"], ["https://tec.openplanner.team/stops/N519ama", "https://tec.openplanner.team/stops/N520acb"], ["https://tec.openplanner.team/stops/NC14aha", "https://tec.openplanner.team/stops/NC14ahb"], ["https://tec.openplanner.team/stops/H5fl102d", "https://tec.openplanner.team/stops/H5fl104a"], ["https://tec.openplanner.team/stops/LAx41--1", "https://tec.openplanner.team/stops/Lmiensp*"], ["https://tec.openplanner.team/stops/LbTschw1", "https://tec.openplanner.team/stops/LbUmors1"], ["https://tec.openplanner.team/stops/LCdchod1", "https://tec.openplanner.team/stops/LMAchod2"], ["https://tec.openplanner.team/stops/Bclgpch1", "https://tec.openplanner.team/stops/Bwavdmo2"], ["https://tec.openplanner.team/stops/H2fa106a", "https://tec.openplanner.team/stops/H2hg269b"], ["https://tec.openplanner.team/stops/H4bf105a", "https://tec.openplanner.team/stops/H4by119b"], ["https://tec.openplanner.team/stops/H2fa112a", "https://tec.openplanner.team/stops/H2fa112b"], ["https://tec.openplanner.team/stops/X806ada", "https://tec.openplanner.team/stops/X806afb"], ["https://tec.openplanner.team/stops/Cgocolo2", "https://tec.openplanner.team/stops/Cjugend4"], ["https://tec.openplanner.team/stops/LBvviem3", "https://tec.openplanner.team/stops/LFarhuy1"], ["https://tec.openplanner.team/stops/H2ha129b", "https://tec.openplanner.team/stops/H2ha136a"], ["https://tec.openplanner.team/stops/Cmltemp1", "https://tec.openplanner.team/stops/Cmltemp5"], ["https://tec.openplanner.team/stops/N117ama", "https://tec.openplanner.team/stops/N117aob"], ["https://tec.openplanner.team/stops/Lpejonc1", "https://tec.openplanner.team/stops/Lpevesd1"], ["https://tec.openplanner.team/stops/X911aub", "https://tec.openplanner.team/stops/X912aka"], ["https://tec.openplanner.team/stops/H1ms280a", "https://tec.openplanner.team/stops/H1ms300a"], ["https://tec.openplanner.team/stops/Lvebiol2", "https://tec.openplanner.team/stops/Lvehoug2"], ["https://tec.openplanner.team/stops/Ceqcfra1", "https://tec.openplanner.team/stops/Ceqcfra2"], ["https://tec.openplanner.team/stops/N210aaa", "https://tec.openplanner.team/stops/X210azb"], ["https://tec.openplanner.team/stops/H4ru236a", "https://tec.openplanner.team/stops/H4ru236b"], ["https://tec.openplanner.team/stops/LeIdeid1", "https://tec.openplanner.team/stops/LeIdeid2"], ["https://tec.openplanner.team/stops/LROcent2", "https://tec.openplanner.team/stops/LROchap2"], ["https://tec.openplanner.team/stops/H1eu105b", "https://tec.openplanner.team/stops/H1sb144a"], ["https://tec.openplanner.team/stops/LVleg--1", "https://tec.openplanner.team/stops/LVlplan1"], ["https://tec.openplanner.team/stops/H1do109b", "https://tec.openplanner.team/stops/H1do131c"], ["https://tec.openplanner.team/stops/LLYchpl1", "https://tec.openplanner.team/stops/LLYplac2"], ["https://tec.openplanner.team/stops/X640aib", "https://tec.openplanner.team/stops/X640aja"], ["https://tec.openplanner.team/stops/LSAeg--2", "https://tec.openplanner.team/stops/LSAjacq2"], ["https://tec.openplanner.team/stops/LWechpl1", "https://tec.openplanner.team/stops/LWevalf1"], ["https://tec.openplanner.team/stops/Cmaduna2", "https://tec.openplanner.team/stops/Cmastma2"], ["https://tec.openplanner.team/stops/Lhrpost1", "https://tec.openplanner.team/stops/Llgaba-2"], ["https://tec.openplanner.team/stops/X636bbb", "https://tec.openplanner.team/stops/X636bcb"], ["https://tec.openplanner.team/stops/Bboseco2", "https://tec.openplanner.team/stops/Bgoestu2"], ["https://tec.openplanner.team/stops/Lhrtunn1", "https://tec.openplanner.team/stops/Lhrtunn2"], ["https://tec.openplanner.team/stops/Bvircsj1", "https://tec.openplanner.team/stops/Bvircsj2"], ["https://tec.openplanner.team/stops/Bhoeboo2", "https://tec.openplanner.team/stops/Bhoemel2"], ["https://tec.openplanner.team/stops/LBscime1", "https://tec.openplanner.team/stops/NL72ada"], ["https://tec.openplanner.team/stops/LGOdelv1", "https://tec.openplanner.team/stops/LHVeg--1"], ["https://tec.openplanner.team/stops/Lstbota2", "https://tec.openplanner.team/stops/Lsteduc2"], ["https://tec.openplanner.team/stops/X608ara", "https://tec.openplanner.team/stops/X608asa"], ["https://tec.openplanner.team/stops/Lhr3jui1", "https://tec.openplanner.team/stops/Lhr3jui2"], ["https://tec.openplanner.team/stops/N106akb", "https://tec.openplanner.team/stops/N162afa"], ["https://tec.openplanner.team/stops/N547ahb", "https://tec.openplanner.team/stops/N547ajb"], ["https://tec.openplanner.team/stops/N340afa", "https://tec.openplanner.team/stops/N340ahb"], ["https://tec.openplanner.team/stops/Cml5ave2", "https://tec.openplanner.team/stops/Cmlsart2"], ["https://tec.openplanner.team/stops/LFHjamo1", "https://tec.openplanner.team/stops/LKmmelo2"], ["https://tec.openplanner.team/stops/H1ho143a", "https://tec.openplanner.team/stops/H1ho143b"], ["https://tec.openplanner.team/stops/N501gpd", "https://tec.openplanner.team/stops/N501gpz"], ["https://tec.openplanner.team/stops/Lsechan2", "https://tec.openplanner.team/stops/Lsevecq2"], ["https://tec.openplanner.team/stops/H2bh103a", "https://tec.openplanner.team/stops/H2bh118b"], ["https://tec.openplanner.team/stops/LWEcarr1", "https://tec.openplanner.team/stops/LWEmerm2"], ["https://tec.openplanner.team/stops/Bbstcoi2", "https://tec.openplanner.team/stops/Bbsthpl2"], ["https://tec.openplanner.team/stops/H4ar100a", "https://tec.openplanner.team/stops/H4ar100b"], ["https://tec.openplanner.team/stops/NR21aea", "https://tec.openplanner.team/stops/NR21afa"], ["https://tec.openplanner.team/stops/X638aia", "https://tec.openplanner.team/stops/X638aib"], ["https://tec.openplanner.team/stops/Cjucomb1", "https://tec.openplanner.team/stops/Cjupn4"], ["https://tec.openplanner.team/stops/LWAfabr1", "https://tec.openplanner.team/stops/LWArege2"], ["https://tec.openplanner.team/stops/X839abb", "https://tec.openplanner.team/stops/X839acb"], ["https://tec.openplanner.team/stops/X917aka", "https://tec.openplanner.team/stops/X922aeb"], ["https://tec.openplanner.team/stops/LFsgend1", "https://tec.openplanner.team/stops/Lligara1"], ["https://tec.openplanner.team/stops/LBzec--2", "https://tec.openplanner.team/stops/LVBsevr2"], ["https://tec.openplanner.team/stops/Llglave1", "https://tec.openplanner.team/stops/Llgrosa2"], ["https://tec.openplanner.team/stops/Bplncba2", "https://tec.openplanner.team/stops/Bplnegl1"], ["https://tec.openplanner.team/stops/Llgavro1", "https://tec.openplanner.team/stops/Llghenr1"], ["https://tec.openplanner.team/stops/LbUwirt1", "https://tec.openplanner.team/stops/LbUwirt2"], ["https://tec.openplanner.team/stops/X740abd", "https://tec.openplanner.team/stops/X985abb"], ["https://tec.openplanner.team/stops/Bettgle1", "https://tec.openplanner.team/stops/Bettgle2"], ["https://tec.openplanner.team/stops/X620aba", "https://tec.openplanner.team/stops/X620aca"], ["https://tec.openplanner.team/stops/H4hq129a", "https://tec.openplanner.team/stops/H4hq134b"], ["https://tec.openplanner.team/stops/LWOrout2", "https://tec.openplanner.team/stops/LWOwonc1"], ["https://tec.openplanner.team/stops/Bgzddfh1", "https://tec.openplanner.team/stops/Bgzdpis2"], ["https://tec.openplanner.team/stops/X601bba", "https://tec.openplanner.team/stops/X601cza"], ["https://tec.openplanner.team/stops/Lwagare1", "https://tec.openplanner.team/stops/Lwapomp2"], ["https://tec.openplanner.team/stops/N524aba", "https://tec.openplanner.team/stops/N525atb"], ["https://tec.openplanner.team/stops/LkOaugu2", "https://tec.openplanner.team/stops/LkOzoll1"], ["https://tec.openplanner.team/stops/X897awa", "https://tec.openplanner.team/stops/X897axb"], ["https://tec.openplanner.team/stops/LMOelva2", "https://tec.openplanner.team/stops/LMOhero1"], ["https://tec.openplanner.team/stops/H4mo133b", "https://tec.openplanner.team/stops/H4mo145a"], ["https://tec.openplanner.team/stops/Lgrdemo2", "https://tec.openplanner.team/stops/Lgrfass1"], ["https://tec.openplanner.team/stops/Crswaut1", "https://tec.openplanner.team/stops/Crswaut2"], ["https://tec.openplanner.team/stops/NR27aba", "https://tec.openplanner.team/stops/NR27abb"], ["https://tec.openplanner.team/stops/N501cga", "https://tec.openplanner.team/stops/N501cgb"], ["https://tec.openplanner.team/stops/N550aab", "https://tec.openplanner.team/stops/N550anb"], ["https://tec.openplanner.team/stops/LESchpl1", "https://tec.openplanner.team/stops/LPOpass1"], ["https://tec.openplanner.team/stops/N524ahb", "https://tec.openplanner.team/stops/N524aja"], ["https://tec.openplanner.team/stops/H1pa106a", "https://tec.openplanner.team/stops/H1pa106b"], ["https://tec.openplanner.team/stops/LSTdero1", "https://tec.openplanner.team/stops/LSTvaul1"], ["https://tec.openplanner.team/stops/N221aca", "https://tec.openplanner.team/stops/N221ada"], ["https://tec.openplanner.team/stops/Bsgevil1", "https://tec.openplanner.team/stops/Bsgevil2"], ["https://tec.openplanner.team/stops/H1an101b", "https://tec.openplanner.team/stops/H1an103b"], ["https://tec.openplanner.team/stops/X948aeb", "https://tec.openplanner.team/stops/X948agb"], ["https://tec.openplanner.team/stops/Cwfanci1", "https://tec.openplanner.team/stops/Cwfdupo2"], ["https://tec.openplanner.team/stops/X316aba", "https://tec.openplanner.team/stops/X364acb"], ["https://tec.openplanner.team/stops/LLUg82-2", "https://tec.openplanner.team/stops/LLUpier1"], ["https://tec.openplanner.team/stops/N503aga", "https://tec.openplanner.team/stops/N535aoa"], ["https://tec.openplanner.team/stops/H3so162a", "https://tec.openplanner.team/stops/H3so169b"], ["https://tec.openplanner.team/stops/H1bo103b", "https://tec.openplanner.team/stops/H1bo110a"], ["https://tec.openplanner.team/stops/X542aab", "https://tec.openplanner.team/stops/X750ana"], ["https://tec.openplanner.team/stops/X804akb", "https://tec.openplanner.team/stops/X804amb"], ["https://tec.openplanner.team/stops/H4am102c", "https://tec.openplanner.team/stops/H4am102d"], ["https://tec.openplanner.team/stops/LTgcime1", "https://tec.openplanner.team/stops/LTgcime2"], ["https://tec.openplanner.team/stops/Lbomidi1", "https://tec.openplanner.team/stops/Lbooffe2"], ["https://tec.openplanner.team/stops/H4ch118b", "https://tec.openplanner.team/stops/H4ch120b"], ["https://tec.openplanner.team/stops/N507adb", "https://tec.openplanner.team/stops/N507alb"], ["https://tec.openplanner.team/stops/Cbwmvri2", "https://tec.openplanner.team/stops/Cmggthi1"], ["https://tec.openplanner.team/stops/H1me117c", "https://tec.openplanner.team/stops/H1me117d"], ["https://tec.openplanner.team/stops/X597ala", "https://tec.openplanner.team/stops/X597alb"], ["https://tec.openplanner.team/stops/X344ada", "https://tec.openplanner.team/stops/X344adb"], ["https://tec.openplanner.team/stops/Lheneuv1", "https://tec.openplanner.team/stops/Lheneuv2"], ["https://tec.openplanner.team/stops/Cchba04", "https://tec.openplanner.team/stops/Cchba06"], ["https://tec.openplanner.team/stops/X901amb", "https://tec.openplanner.team/stops/X901arb"], ["https://tec.openplanner.team/stops/LsVgore2", "https://tec.openplanner.team/stops/LsVviel2"], ["https://tec.openplanner.team/stops/LvA30--1", "https://tec.openplanner.team/stops/LvAschr1"], ["https://tec.openplanner.team/stops/N519asb", "https://tec.openplanner.team/stops/N519asd"], ["https://tec.openplanner.team/stops/LTRsain1", "https://tec.openplanner.team/stops/LTRsain3"], ["https://tec.openplanner.team/stops/Lpegole1", "https://tec.openplanner.team/stops/Lpeprev2"], ["https://tec.openplanner.team/stops/Bqueaga1", "https://tec.openplanner.team/stops/Btubbot2"], ["https://tec.openplanner.team/stops/H1ms360a", "https://tec.openplanner.team/stops/H1ms936a"], ["https://tec.openplanner.team/stops/Llgerac1", "https://tec.openplanner.team/stops/Llghull2"], ["https://tec.openplanner.team/stops/X896aab", "https://tec.openplanner.team/stops/X898aoa"], ["https://tec.openplanner.team/stops/Bixlaca2", "https://tec.openplanner.team/stops/Buccbas2"], ["https://tec.openplanner.team/stops/Cmtgrim2", "https://tec.openplanner.team/stops/Cmttrie1"], ["https://tec.openplanner.team/stops/LFreg--2", "https://tec.openplanner.team/stops/LRffroi2"], ["https://tec.openplanner.team/stops/N232axa", "https://tec.openplanner.team/stops/N232bpa"], ["https://tec.openplanner.team/stops/N252aba", "https://tec.openplanner.team/stops/N252acc"], ["https://tec.openplanner.team/stops/X620aeb", "https://tec.openplanner.team/stops/X620aha"], ["https://tec.openplanner.team/stops/H4cw105b", "https://tec.openplanner.team/stops/H4cw106b"], ["https://tec.openplanner.team/stops/Becltri1", "https://tec.openplanner.team/stops/Becltri2"], ["https://tec.openplanner.team/stops/LbUjost2", "https://tec.openplanner.team/stops/LbUjost3"], ["https://tec.openplanner.team/stops/LBNgarn1", "https://tec.openplanner.team/stops/LeUgutl2"], ["https://tec.openplanner.team/stops/Cmmcarr1", "https://tec.openplanner.team/stops/Cmmp2051"], ["https://tec.openplanner.team/stops/X618adb", "https://tec.openplanner.team/stops/X618alb"], ["https://tec.openplanner.team/stops/X774afb", "https://tec.openplanner.team/stops/X774aga"], ["https://tec.openplanner.team/stops/LAipala1", "https://tec.openplanner.team/stops/LGlcarr1"], ["https://tec.openplanner.team/stops/H4ae101a", "https://tec.openplanner.team/stops/H4ef138a"], ["https://tec.openplanner.team/stops/LCEhayo1", "https://tec.openplanner.team/stops/LCEinst1"], ["https://tec.openplanner.team/stops/LCvoufn1", "https://tec.openplanner.team/stops/X713alb"], ["https://tec.openplanner.team/stops/LTB105-1", "https://tec.openplanner.team/stops/LTB105-2"], ["https://tec.openplanner.team/stops/H1ho138a", "https://tec.openplanner.team/stops/H1wa143b"], ["https://tec.openplanner.team/stops/N513baa", "https://tec.openplanner.team/stops/N516adb"], ["https://tec.openplanner.team/stops/Cmaegal2", "https://tec.openplanner.team/stops/Cmaplas3"], ["https://tec.openplanner.team/stops/Cgrchfe1", "https://tec.openplanner.team/stops/NC02bbb"], ["https://tec.openplanner.team/stops/H1bb118b", "https://tec.openplanner.team/stops/H1bb119a"], ["https://tec.openplanner.team/stops/X952aga", "https://tec.openplanner.team/stops/X954adb"], ["https://tec.openplanner.team/stops/Lbrfagn1", "https://tec.openplanner.team/stops/Ljuathe2"], ["https://tec.openplanner.team/stops/LSteg--1", "https://tec.openplanner.team/stops/LStgare*"], ["https://tec.openplanner.team/stops/X618aia", "https://tec.openplanner.team/stops/X618ana"], ["https://tec.openplanner.team/stops/H2ha128a", "https://tec.openplanner.team/stops/H2ha133b"], ["https://tec.openplanner.team/stops/X718aib", "https://tec.openplanner.team/stops/X718aja"], ["https://tec.openplanner.team/stops/LCFmoul2", "https://tec.openplanner.team/stops/LHaodei2"], ["https://tec.openplanner.team/stops/Lfhvoye1", "https://tec.openplanner.team/stops/Lpocent1"], ["https://tec.openplanner.team/stops/H1ls110b", "https://tec.openplanner.team/stops/H1me118a"], ["https://tec.openplanner.team/stops/H4eh102a", "https://tec.openplanner.team/stops/H4eh104a"], ["https://tec.openplanner.team/stops/X619aic", "https://tec.openplanner.team/stops/X619aja"], ["https://tec.openplanner.team/stops/LMotrem2", "https://tec.openplanner.team/stops/LMoviel1"], ["https://tec.openplanner.team/stops/Brixpbs1", "https://tec.openplanner.team/stops/Brixpbs2"], ["https://tec.openplanner.team/stops/Cctvict1", "https://tec.openplanner.team/stops/Cctvill1"], ["https://tec.openplanner.team/stops/LPLaube2", "https://tec.openplanner.team/stops/LPLstat2"], ["https://tec.openplanner.team/stops/LCscarr4", "https://tec.openplanner.team/stops/LCsgend2"], ["https://tec.openplanner.team/stops/LDOandr1", "https://tec.openplanner.team/stops/LDOjose1"], ["https://tec.openplanner.team/stops/LETec--1", "https://tec.openplanner.team/stops/LETfort1"], ["https://tec.openplanner.team/stops/X879aea", "https://tec.openplanner.team/stops/X882agb"], ["https://tec.openplanner.team/stops/H1wa152b", "https://tec.openplanner.team/stops/H1wa163a"], ["https://tec.openplanner.team/stops/N352aca", "https://tec.openplanner.team/stops/N352aja"], ["https://tec.openplanner.team/stops/Bdlmgla3", "https://tec.openplanner.team/stops/Bwavdmo3"], ["https://tec.openplanner.team/stops/LhEbruc1", "https://tec.openplanner.team/stops/LWEcool2"], ["https://tec.openplanner.team/stops/X801bja", "https://tec.openplanner.team/stops/X801bjb"], ["https://tec.openplanner.team/stops/LHUmess2", "https://tec.openplanner.team/stops/LTicent1"], ["https://tec.openplanner.team/stops/X622ada", "https://tec.openplanner.team/stops/X622aea"], ["https://tec.openplanner.team/stops/Cpibois2", "https://tec.openplanner.team/stops/Cpiegli1"], ["https://tec.openplanner.team/stops/Canrtth2", "https://tec.openplanner.team/stops/Canrtth3"], ["https://tec.openplanner.team/stops/X747aib", "https://tec.openplanner.team/stops/X747aja"], ["https://tec.openplanner.team/stops/Csecarr1", "https://tec.openplanner.team/stops/Csefour1"], ["https://tec.openplanner.team/stops/N558afb", "https://tec.openplanner.team/stops/N558aga"], ["https://tec.openplanner.team/stops/LWathir1", "https://tec.openplanner.team/stops/LWathir2"], ["https://tec.openplanner.team/stops/H4hx114a", "https://tec.openplanner.team/stops/H4hx120b"], ["https://tec.openplanner.team/stops/LAUscha2", "https://tec.openplanner.team/stops/LFPchat2"], ["https://tec.openplanner.team/stops/LHCmonu2", "https://tec.openplanner.team/stops/LHCmonu4"], ["https://tec.openplanner.team/stops/N501acb", "https://tec.openplanner.team/stops/N503acb"], ["https://tec.openplanner.team/stops/N115aea", "https://tec.openplanner.team/stops/N115afb"], ["https://tec.openplanner.team/stops/X661amb", "https://tec.openplanner.team/stops/X661anb"], ["https://tec.openplanner.team/stops/X624acb", "https://tec.openplanner.team/stops/X624aia"], ["https://tec.openplanner.team/stops/H1mv238a", "https://tec.openplanner.team/stops/H1mv243b"], ["https://tec.openplanner.team/stops/Bbchdev2", "https://tec.openplanner.team/stops/Bbchdra1"], ["https://tec.openplanner.team/stops/LBRgend1", "https://tec.openplanner.team/stops/LBRgend2"], ["https://tec.openplanner.team/stops/X802afb", "https://tec.openplanner.team/stops/X802aga"], ["https://tec.openplanner.team/stops/LLUtill1", "https://tec.openplanner.team/stops/LLUtill2"], ["https://tec.openplanner.team/stops/N506ata", "https://tec.openplanner.team/stops/N506baa"], ["https://tec.openplanner.team/stops/H4bf106a", "https://tec.openplanner.team/stops/H4wp151b"], ["https://tec.openplanner.team/stops/X901ala", "https://tec.openplanner.team/stops/X922aaa"], ["https://tec.openplanner.team/stops/X661aab", "https://tec.openplanner.team/stops/X822aja"], ["https://tec.openplanner.team/stops/Ljemont1", "https://tec.openplanner.team/stops/Lmomine1"], ["https://tec.openplanner.team/stops/Clodrio3", "https://tec.openplanner.team/stops/Clodupr1"], ["https://tec.openplanner.team/stops/H4eg102b", "https://tec.openplanner.team/stops/H4eg107b"], ["https://tec.openplanner.team/stops/Cctpche2", "https://tec.openplanner.team/stops/NC11afa"], ["https://tec.openplanner.team/stops/Lbrmc--2", "https://tec.openplanner.team/stops/Lbrptbr1"], ["https://tec.openplanner.team/stops/LAascie1", "https://tec.openplanner.team/stops/X261abb"], ["https://tec.openplanner.team/stops/N503aba", "https://tec.openplanner.team/stops/N503abb"], ["https://tec.openplanner.team/stops/X316aba", "https://tec.openplanner.team/stops/X316aca"], ["https://tec.openplanner.team/stops/Broscha2", "https://tec.openplanner.team/stops/Cgpauln2"], ["https://tec.openplanner.team/stops/LVBmonu1", "https://tec.openplanner.team/stops/LWDchpl1"], ["https://tec.openplanner.team/stops/LBpcren1", "https://tec.openplanner.team/stops/LBpcren2"], ["https://tec.openplanner.team/stops/N202aea", "https://tec.openplanner.team/stops/N203afa"], ["https://tec.openplanner.team/stops/Bnivga41", "https://tec.openplanner.team/stops/Bnivrwi1"], ["https://tec.openplanner.team/stops/Cmcceta1", "https://tec.openplanner.team/stops/Cmcwic1"], ["https://tec.openplanner.team/stops/LLrmc--2", "https://tec.openplanner.team/stops/LLrvill1"], ["https://tec.openplanner.team/stops/Bpielom2", "https://tec.openplanner.team/stops/Bpielon1"], ["https://tec.openplanner.team/stops/Cfrfaub2", "https://tec.openplanner.team/stops/Cvpplan1"], ["https://tec.openplanner.team/stops/X661ala", "https://tec.openplanner.team/stops/X661aua"], ["https://tec.openplanner.team/stops/LBEcroi1", "https://tec.openplanner.team/stops/LBEcroi2"], ["https://tec.openplanner.team/stops/LLGramk3", "https://tec.openplanner.team/stops/LORdtec*"], ["https://tec.openplanner.team/stops/H2hg145b", "https://tec.openplanner.team/stops/H2hg160a"], ["https://tec.openplanner.team/stops/Llgancd1", "https://tec.openplanner.team/stops/Llgjoie1"], ["https://tec.openplanner.team/stops/NL74aac", "https://tec.openplanner.team/stops/NL74ajb"], ["https://tec.openplanner.team/stops/H2me114b", "https://tec.openplanner.team/stops/H2me117b"], ["https://tec.openplanner.team/stops/N538ala", "https://tec.openplanner.team/stops/N538aqb"], ["https://tec.openplanner.team/stops/Lsecast2", "https://tec.openplanner.team/stops/Lsehtsa1"], ["https://tec.openplanner.team/stops/X901aca", "https://tec.openplanner.team/stops/X901bnb"], ["https://tec.openplanner.team/stops/LbTdoma2", "https://tec.openplanner.team/stops/LbThau12"], ["https://tec.openplanner.team/stops/H1ju120b", "https://tec.openplanner.team/stops/H1mj126b"], ["https://tec.openplanner.team/stops/LJSeg--1", "https://tec.openplanner.team/stops/LTHcime1"], ["https://tec.openplanner.team/stops/LOV62--2", "https://tec.openplanner.team/stops/LROrtba2"], ["https://tec.openplanner.team/stops/LWipaif1", "https://tec.openplanner.team/stops/LWipaif3"], ["https://tec.openplanner.team/stops/LBEfagn2", "https://tec.openplanner.team/stops/LBEnina6"], ["https://tec.openplanner.team/stops/N127acb", "https://tec.openplanner.team/stops/N127adb"], ["https://tec.openplanner.team/stops/LARauto2", "https://tec.openplanner.team/stops/LARauto3"], ["https://tec.openplanner.team/stops/Lhrpost2", "https://tec.openplanner.team/stops/Llgaba-2"], ["https://tec.openplanner.team/stops/N542ahb", "https://tec.openplanner.team/stops/N542aob"], ["https://tec.openplanner.team/stops/X725ana", "https://tec.openplanner.team/stops/X725aob"], ["https://tec.openplanner.team/stops/X741ala", "https://tec.openplanner.team/stops/X758aka"], ["https://tec.openplanner.team/stops/LOunebl1", "https://tec.openplanner.team/stops/LOunebl2"], ["https://tec.openplanner.team/stops/N116aba", "https://tec.openplanner.team/stops/N116abb"], ["https://tec.openplanner.team/stops/Csshouy2", "https://tec.openplanner.team/stops/Csslesc2"], ["https://tec.openplanner.team/stops/LAWlonc1", "https://tec.openplanner.team/stops/LAWvill2"], ["https://tec.openplanner.team/stops/LFArela2", "https://tec.openplanner.team/stops/LFArela4"], ["https://tec.openplanner.team/stops/N531aub", "https://tec.openplanner.team/stops/N532abb"], ["https://tec.openplanner.team/stops/N544aca", "https://tec.openplanner.team/stops/N544aea"], ["https://tec.openplanner.team/stops/X661aca", "https://tec.openplanner.team/stops/X661alb"], ["https://tec.openplanner.team/stops/N548awa", "https://tec.openplanner.team/stops/N573aoa"], ["https://tec.openplanner.team/stops/N569ala", "https://tec.openplanner.team/stops/N569anb"], ["https://tec.openplanner.team/stops/N527aab", "https://tec.openplanner.team/stops/N527agb"], ["https://tec.openplanner.team/stops/N551aob", "https://tec.openplanner.team/stops/N552acb"], ["https://tec.openplanner.team/stops/Bpthcai1", "https://tec.openplanner.team/stops/Bpthcgo2"], ["https://tec.openplanner.team/stops/LOTsava1", "https://tec.openplanner.team/stops/LOTsava2"], ["https://tec.openplanner.team/stops/H1bo103a", "https://tec.openplanner.team/stops/H1bo112a"], ["https://tec.openplanner.team/stops/N549aaa", "https://tec.openplanner.team/stops/N578aba"], ["https://tec.openplanner.team/stops/Cfccabi2", "https://tec.openplanner.team/stops/Cfcctru2"], ["https://tec.openplanner.team/stops/Bjanegl1", "https://tec.openplanner.team/stops/Bjanegl4"], ["https://tec.openplanner.team/stops/N514aga", "https://tec.openplanner.team/stops/N518acd"], ["https://tec.openplanner.team/stops/Bquepla1", "https://tec.openplanner.team/stops/Bquereb2"], ["https://tec.openplanner.team/stops/LRteg--*", "https://tec.openplanner.team/stops/NL78afb"], ["https://tec.openplanner.team/stops/Lghfore3", "https://tec.openplanner.team/stops/Lghwall2"], ["https://tec.openplanner.team/stops/Cchba05", "https://tec.openplanner.team/stops/Cchba09"], ["https://tec.openplanner.team/stops/Bhmmcsc1", "https://tec.openplanner.team/stops/Btlgmar1"], ["https://tec.openplanner.team/stops/H2bh111a", "https://tec.openplanner.team/stops/H2bh111b"], ["https://tec.openplanner.team/stops/H4hs136a", "https://tec.openplanner.team/stops/H4hs137a"], ["https://tec.openplanner.team/stops/X779afb", "https://tec.openplanner.team/stops/X779agb"], ["https://tec.openplanner.team/stops/X796ada", "https://tec.openplanner.team/stops/X796aea"], ["https://tec.openplanner.team/stops/X636bdb", "https://tec.openplanner.team/stops/X636bhb"], ["https://tec.openplanner.team/stops/Bwavgar5", "https://tec.openplanner.team/stops/Bwavlep1"], ["https://tec.openplanner.team/stops/X917aaa", "https://tec.openplanner.team/stops/X917aba"], ["https://tec.openplanner.team/stops/LOVchen1", "https://tec.openplanner.team/stops/LOVchen2"], ["https://tec.openplanner.team/stops/X892acb", "https://tec.openplanner.team/stops/X892aja"], ["https://tec.openplanner.team/stops/Crehout1", "https://tec.openplanner.team/stops/Crewaba1"], ["https://tec.openplanner.team/stops/Cthstre1", "https://tec.openplanner.team/stops/Cthstre2"], ["https://tec.openplanner.team/stops/Bjodeco1", "https://tec.openplanner.team/stops/Bjodgar1"], ["https://tec.openplanner.team/stops/X720acb", "https://tec.openplanner.team/stops/X720ada"], ["https://tec.openplanner.team/stops/N559aab", "https://tec.openplanner.team/stops/N559aeb"], ["https://tec.openplanner.team/stops/X937aka", "https://tec.openplanner.team/stops/X937alb"], ["https://tec.openplanner.team/stops/H4lz118b", "https://tec.openplanner.team/stops/H4lz122a"], ["https://tec.openplanner.team/stops/LLxcrem1", "https://tec.openplanner.team/stops/LLxmonu1"], ["https://tec.openplanner.team/stops/LMAfali1", "https://tec.openplanner.team/stops/LMAroch4"], ["https://tec.openplanner.team/stops/LVbpave1", "https://tec.openplanner.team/stops/LVbpave2"], ["https://tec.openplanner.team/stops/N122aaa", "https://tec.openplanner.team/stops/N122ahb"], ["https://tec.openplanner.team/stops/Bwaubru1", "https://tec.openplanner.team/stops/Bwaucig2"], ["https://tec.openplanner.team/stops/N349aca", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/Canboni2", "https://tec.openplanner.team/stops/Canegbr1"], ["https://tec.openplanner.team/stops/H1em104a", "https://tec.openplanner.team/stops/H1em105a"], ["https://tec.openplanner.team/stops/Bvilvil3", "https://tec.openplanner.team/stops/Bvilvil4"], ["https://tec.openplanner.team/stops/H1gg116a", "https://tec.openplanner.team/stops/H1ry136a"], ["https://tec.openplanner.team/stops/H1br125a", "https://tec.openplanner.team/stops/H1wz173a"], ["https://tec.openplanner.team/stops/Bwagdeb1", "https://tec.openplanner.team/stops/Bwagmco1"], ["https://tec.openplanner.team/stops/X766aca", "https://tec.openplanner.team/stops/X766adb"], ["https://tec.openplanner.team/stops/LOTjacq1", "https://tec.openplanner.team/stops/LOTmonu1"], ["https://tec.openplanner.team/stops/H2le147a", "https://tec.openplanner.team/stops/H2le152b"], ["https://tec.openplanner.team/stops/X715aha", "https://tec.openplanner.team/stops/X715ahb"], ["https://tec.openplanner.team/stops/Cchblne1", "https://tec.openplanner.team/stops/Clomart1"], ["https://tec.openplanner.team/stops/LWRchem1", "https://tec.openplanner.team/stops/LWRvert1"], ["https://tec.openplanner.team/stops/X687afa", "https://tec.openplanner.team/stops/X687aga"], ["https://tec.openplanner.team/stops/N532aka", "https://tec.openplanner.team/stops/N532akb"], ["https://tec.openplanner.team/stops/Llgbaya4", "https://tec.openplanner.team/stops/Llgdony2"], ["https://tec.openplanner.team/stops/Bcrbast2", "https://tec.openplanner.team/stops/Bnilpor4"], ["https://tec.openplanner.team/stops/Lanmouf1", "https://tec.openplanner.team/stops/Lanrois2"], ["https://tec.openplanner.team/stops/N501gqa", "https://tec.openplanner.team/stops/N501gqb"], ["https://tec.openplanner.team/stops/Cmahotv1", "https://tec.openplanner.team/stops/Cmamarc2"], ["https://tec.openplanner.team/stops/NL72aaa", "https://tec.openplanner.team/stops/NL72ada"], ["https://tec.openplanner.team/stops/H2sb258a", "https://tec.openplanner.team/stops/H3lr108a"], ["https://tec.openplanner.team/stops/X782ana", "https://tec.openplanner.team/stops/X784aeb"], ["https://tec.openplanner.team/stops/X922amb", "https://tec.openplanner.team/stops/X923aka"], ["https://tec.openplanner.team/stops/Cgyhaie2", "https://tec.openplanner.team/stops/Cmtdepo2"], ["https://tec.openplanner.team/stops/LBLghuy2", "https://tec.openplanner.team/stops/LBLplac3"], ["https://tec.openplanner.team/stops/H4es108a", "https://tec.openplanner.team/stops/H4hx123a"], ["https://tec.openplanner.team/stops/LWegdry1", "https://tec.openplanner.team/stops/LWevalf2"], ["https://tec.openplanner.team/stops/H1fr119b", "https://tec.openplanner.team/stops/H1no141b"], ["https://tec.openplanner.team/stops/N581aca", "https://tec.openplanner.team/stops/N581acb"], ["https://tec.openplanner.team/stops/N201aib", "https://tec.openplanner.team/stops/N214aba"], ["https://tec.openplanner.team/stops/LHAarge2", "https://tec.openplanner.team/stops/LHAdeho1"], ["https://tec.openplanner.team/stops/Bwavcen1", "https://tec.openplanner.team/stops/Bwavfol2"], ["https://tec.openplanner.team/stops/Bsomtpm1", "https://tec.openplanner.team/stops/N584afa"], ["https://tec.openplanner.team/stops/N106adb", "https://tec.openplanner.team/stops/N137aab"], ["https://tec.openplanner.team/stops/LARgare3", "https://tec.openplanner.team/stops/Lchorme1"], ["https://tec.openplanner.team/stops/X653afa", "https://tec.openplanner.team/stops/X654aia"], ["https://tec.openplanner.team/stops/Lsepair3", "https://tec.openplanner.team/stops/Lsepair4"], ["https://tec.openplanner.team/stops/X342acb", "https://tec.openplanner.team/stops/X342aga"], ["https://tec.openplanner.team/stops/N301aoa", "https://tec.openplanner.team/stops/N301apb"], ["https://tec.openplanner.team/stops/Lenhosp1", "https://tec.openplanner.team/stops/Lenmare1"], ["https://tec.openplanner.team/stops/Cmmjami3", "https://tec.openplanner.team/stops/Cmygbbo2"], ["https://tec.openplanner.team/stops/Laghetr2", "https://tec.openplanner.team/stops/Lkiblan2"], ["https://tec.openplanner.team/stops/X307aca", "https://tec.openplanner.team/stops/X307acb"], ["https://tec.openplanner.team/stops/Csubosa1", "https://tec.openplanner.team/stops/Csubosa2"], ["https://tec.openplanner.team/stops/H4jm117a", "https://tec.openplanner.team/stops/H4jm117b"], ["https://tec.openplanner.team/stops/LREelse1", "https://tec.openplanner.team/stops/LREgar-2"], ["https://tec.openplanner.team/stops/N118anc", "https://tec.openplanner.team/stops/N118aqa"], ["https://tec.openplanner.team/stops/N537ajb", "https://tec.openplanner.team/stops/N537alb"], ["https://tec.openplanner.team/stops/H1gr110a", "https://tec.openplanner.team/stops/H1gr110b"], ["https://tec.openplanner.team/stops/Bvirdco1", "https://tec.openplanner.team/stops/Bvirduj2"], ["https://tec.openplanner.team/stops/LAMjeha1", "https://tec.openplanner.team/stops/LAMrich2"], ["https://tec.openplanner.team/stops/LTNcarr1", "https://tec.openplanner.team/stops/LTNcarr2"], ["https://tec.openplanner.team/stops/H4rm107b", "https://tec.openplanner.team/stops/H4rm108b"], ["https://tec.openplanner.team/stops/LCPbatt2", "https://tec.openplanner.team/stops/LCTpt--1"], ["https://tec.openplanner.team/stops/LGeborn2", "https://tec.openplanner.team/stops/LGegare2"], ["https://tec.openplanner.team/stops/LHDchar4", "https://tec.openplanner.team/stops/LLmcheg3"], ["https://tec.openplanner.team/stops/Lvegc--7", "https://tec.openplanner.team/stops/Lvevict1"], ["https://tec.openplanner.team/stops/LATgill1", "https://tec.openplanner.team/stops/LHUmari2"], ["https://tec.openplanner.team/stops/X955ada", "https://tec.openplanner.team/stops/X955aea"], ["https://tec.openplanner.team/stops/N501iab", "https://tec.openplanner.team/stops/N501imb"], ["https://tec.openplanner.team/stops/X626aca", "https://tec.openplanner.team/stops/X626aeb"], ["https://tec.openplanner.team/stops/N584asb", "https://tec.openplanner.team/stops/N584bna"], ["https://tec.openplanner.team/stops/N229acb", "https://tec.openplanner.team/stops/N229aea"], ["https://tec.openplanner.team/stops/H3bi110a", "https://tec.openplanner.team/stops/H3bi116b"], ["https://tec.openplanner.team/stops/NL68aad", "https://tec.openplanner.team/stops/NL68acb"], ["https://tec.openplanner.team/stops/X923apa", "https://tec.openplanner.team/stops/X925afb"], ["https://tec.openplanner.team/stops/LCAwals2", "https://tec.openplanner.team/stops/LWHkerk1"], ["https://tec.openplanner.team/stops/LSAeg--1", "https://tec.openplanner.team/stops/LSAvieu1"], ["https://tec.openplanner.team/stops/Cbzfrom2", "https://tec.openplanner.team/stops/Cobbusc2"], ["https://tec.openplanner.team/stops/X660aba", "https://tec.openplanner.team/stops/X672aca"], ["https://tec.openplanner.team/stops/Cnahous1", "https://tec.openplanner.team/stops/Cnaplan1"], ["https://tec.openplanner.team/stops/Bsambra2", "https://tec.openplanner.team/stops/Bsammon4"], ["https://tec.openplanner.team/stops/Cgzchab1", "https://tec.openplanner.team/stops/Cgzchab2"], ["https://tec.openplanner.team/stops/X921aqb", "https://tec.openplanner.team/stops/X925afa"], ["https://tec.openplanner.team/stops/Csabrun2", "https://tec.openplanner.team/stops/Csasncb2"], ["https://tec.openplanner.team/stops/X879ahb", "https://tec.openplanner.team/stops/X879aib"], ["https://tec.openplanner.team/stops/Cjugill4", "https://tec.openplanner.team/stops/Cjugill6"], ["https://tec.openplanner.team/stops/Csylaha2", "https://tec.openplanner.team/stops/Csystan1"], ["https://tec.openplanner.team/stops/H4hn113a", "https://tec.openplanner.team/stops/H4hn113b"], ["https://tec.openplanner.team/stops/Bblmcel1", "https://tec.openplanner.team/stops/Bhvltol1"], ["https://tec.openplanner.team/stops/N501bpa", "https://tec.openplanner.team/stops/N501jba"], ["https://tec.openplanner.team/stops/LVLcent2", "https://tec.openplanner.team/stops/LVLeg--1"], ["https://tec.openplanner.team/stops/LLeec--1", "https://tec.openplanner.team/stops/LLelava3"], ["https://tec.openplanner.team/stops/X817aga", "https://tec.openplanner.team/stops/X817agb"], ["https://tec.openplanner.team/stops/CMmade1", "https://tec.openplanner.team/stops/CMmade2"], ["https://tec.openplanner.team/stops/Lsnhoco2", "https://tec.openplanner.team/stops/Lsntvbi3"], ["https://tec.openplanner.team/stops/Bgzdpco1", "https://tec.openplanner.team/stops/Bgzdsta1"], ["https://tec.openplanner.team/stops/H4be101a", "https://tec.openplanner.team/stops/H4ct111a"], ["https://tec.openplanner.team/stops/H4hu114a", "https://tec.openplanner.team/stops/H4hu115a"], ["https://tec.openplanner.team/stops/H4re225a", "https://tec.openplanner.team/stops/H4re225b"], ["https://tec.openplanner.team/stops/Bwavfbe2", "https://tec.openplanner.team/stops/Bwavpao1"], ["https://tec.openplanner.team/stops/Bbcoben2", "https://tec.openplanner.team/stops/H3br107b"], ["https://tec.openplanner.team/stops/H4ka180a", "https://tec.openplanner.team/stops/H4ka421a"], ["https://tec.openplanner.team/stops/LrUweve1", "https://tec.openplanner.team/stops/LsBzent1"], ["https://tec.openplanner.team/stops/N514afa", "https://tec.openplanner.team/stops/N514afb"], ["https://tec.openplanner.team/stops/Bgliaau1", "https://tec.openplanner.team/stops/Bgliaau2"], ["https://tec.openplanner.team/stops/N503aka", "https://tec.openplanner.team/stops/N580abb"], ["https://tec.openplanner.team/stops/LWecarr2", "https://tec.openplanner.team/stops/LWevalf1"], ["https://tec.openplanner.team/stops/Ccigene1", "https://tec.openplanner.team/stops/NC02ava"], ["https://tec.openplanner.team/stops/Lbooffe2", "https://tec.openplanner.team/stops/Lbosart1"], ["https://tec.openplanner.team/stops/Bcbqpon1", "https://tec.openplanner.team/stops/Bcbqufo2"], ["https://tec.openplanner.team/stops/N122afa", "https://tec.openplanner.team/stops/N122afb"], ["https://tec.openplanner.team/stops/N501kud", "https://tec.openplanner.team/stops/N501kvb"], ["https://tec.openplanner.team/stops/H1ba100b", "https://tec.openplanner.team/stops/H1ba108a"], ["https://tec.openplanner.team/stops/N209aaa", "https://tec.openplanner.team/stops/N209aba"], ["https://tec.openplanner.team/stops/X892afa", "https://tec.openplanner.team/stops/X892afb"], ["https://tec.openplanner.team/stops/Cna4che2", "https://tec.openplanner.team/stops/Cnawari1"], ["https://tec.openplanner.team/stops/Bmlnsms1", "https://tec.openplanner.team/stops/Bmlnsmv1"], ["https://tec.openplanner.team/stops/LLrfont2", "https://tec.openplanner.team/stops/LLrmeno1"], ["https://tec.openplanner.team/stops/Lghflot1", "https://tec.openplanner.team/stops/Lghflot2"], ["https://tec.openplanner.team/stops/H5rx128a", "https://tec.openplanner.team/stops/H5rx139a"], ["https://tec.openplanner.team/stops/X812aba", "https://tec.openplanner.team/stops/X812aga"], ["https://tec.openplanner.team/stops/X364aba", "https://tec.openplanner.team/stops/X364aca"], ["https://tec.openplanner.team/stops/LBIaepo2", "https://tec.openplanner.team/stops/LBIbois2"], ["https://tec.openplanner.team/stops/Lsecime1", "https://tec.openplanner.team/stops/Lsemaha2"], ["https://tec.openplanner.team/stops/Cchcaya2", "https://tec.openplanner.team/stops/Clodrio3"], ["https://tec.openplanner.team/stops/LAUmerc1", "https://tec.openplanner.team/stops/LHMa2322"], ["https://tec.openplanner.team/stops/X925aea", "https://tec.openplanner.team/stops/X982arb"], ["https://tec.openplanner.team/stops/N540ada", "https://tec.openplanner.team/stops/N540ana"], ["https://tec.openplanner.team/stops/N121aba", "https://tec.openplanner.team/stops/N121abb"], ["https://tec.openplanner.team/stops/H2ca101a", "https://tec.openplanner.team/stops/H2ca109a"], ["https://tec.openplanner.team/stops/X733aea", "https://tec.openplanner.team/stops/X733afa"], ["https://tec.openplanner.team/stops/H1eo108a", "https://tec.openplanner.team/stops/H1ni319a"], ["https://tec.openplanner.team/stops/N551ala", "https://tec.openplanner.team/stops/N551ana"], ["https://tec.openplanner.team/stops/X636adb", "https://tec.openplanner.team/stops/X636bia"], ["https://tec.openplanner.team/stops/H2pe160b", "https://tec.openplanner.team/stops/H2sv221a"], ["https://tec.openplanner.team/stops/H1wa149a", "https://tec.openplanner.team/stops/H1wa153a"], ["https://tec.openplanner.team/stops/Cctberg2", "https://tec.openplanner.team/stops/Cctgiss1"], ["https://tec.openplanner.team/stops/Bottcco1", "https://tec.openplanner.team/stops/Bottpma2"], ["https://tec.openplanner.team/stops/X888aba", "https://tec.openplanner.team/stops/X888aea"], ["https://tec.openplanner.team/stops/X982aya", "https://tec.openplanner.team/stops/X982aza"], ["https://tec.openplanner.team/stops/Lmlboul2", "https://tec.openplanner.team/stops/Lmlscie1"], ["https://tec.openplanner.team/stops/Llgchai1", "https://tec.openplanner.team/stops/Llgcrev2"], ["https://tec.openplanner.team/stops/X733aka", "https://tec.openplanner.team/stops/X733ala"], ["https://tec.openplanner.team/stops/H1ba116b", "https://tec.openplanner.team/stops/H1qu104b"], ["https://tec.openplanner.team/stops/N311aab", "https://tec.openplanner.team/stops/N368acb"], ["https://tec.openplanner.team/stops/X611aca", "https://tec.openplanner.team/stops/X825aeb"], ["https://tec.openplanner.team/stops/H1hn208a", "https://tec.openplanner.team/stops/H1ms925a"], ["https://tec.openplanner.team/stops/X766ahb", "https://tec.openplanner.team/stops/X768alc"], ["https://tec.openplanner.team/stops/Bspkbeu1", "https://tec.openplanner.team/stops/Bspkbeu2"], ["https://tec.openplanner.team/stops/X636axa", "https://tec.openplanner.team/stops/X636axb"], ["https://tec.openplanner.team/stops/LeUbahn3", "https://tec.openplanner.team/stops/LeUbahn5"], ["https://tec.openplanner.team/stops/Bptblma1", "https://tec.openplanner.team/stops/Bptbsar2"], ["https://tec.openplanner.team/stops/Landolh3", "https://tec.openplanner.team/stops/Lanmouf2"], ["https://tec.openplanner.team/stops/H1at108a", "https://tec.openplanner.team/stops/H1fy142a"], ["https://tec.openplanner.team/stops/Ladppir1", "https://tec.openplanner.team/stops/Lveepar2"], ["https://tec.openplanner.team/stops/X901axa", "https://tec.openplanner.team/stops/X901bla"], ["https://tec.openplanner.team/stops/H1sa112a", "https://tec.openplanner.team/stops/H1sa112b"], ["https://tec.openplanner.team/stops/H1mj129a", "https://tec.openplanner.team/stops/H1mj131a"], ["https://tec.openplanner.team/stops/H5rx100b", "https://tec.openplanner.team/stops/H5rx102b"], ["https://tec.openplanner.team/stops/X605aea", "https://tec.openplanner.team/stops/X605aga"], ["https://tec.openplanner.team/stops/N501hua", "https://tec.openplanner.team/stops/N501ifa"], ["https://tec.openplanner.team/stops/N525afa", "https://tec.openplanner.team/stops/N525afb"], ["https://tec.openplanner.team/stops/X923aca", "https://tec.openplanner.team/stops/X923aeb"], ["https://tec.openplanner.team/stops/Bcharce1", "https://tec.openplanner.team/stops/Bcharce2"], ["https://tec.openplanner.team/stops/X804aua", "https://tec.openplanner.team/stops/X804bqa"], ["https://tec.openplanner.team/stops/X790aja", "https://tec.openplanner.team/stops/X790ajb"], ["https://tec.openplanner.team/stops/H2ll177b", "https://tec.openplanner.team/stops/H2ll197b"], ["https://tec.openplanner.team/stops/Crebien2", "https://tec.openplanner.team/stops/Creha762"], ["https://tec.openplanner.team/stops/Lflmaxi1", "https://tec.openplanner.team/stops/Lre3che2"], ["https://tec.openplanner.team/stops/X601aia", "https://tec.openplanner.team/stops/X601aka"], ["https://tec.openplanner.team/stops/X939aca", "https://tec.openplanner.team/stops/X939acb"], ["https://tec.openplanner.team/stops/CMmoul1", "https://tec.openplanner.team/stops/CMmoul2"], ["https://tec.openplanner.team/stops/H1bi101b", "https://tec.openplanner.team/stops/H1lo119a"], ["https://tec.openplanner.team/stops/Cchbrou1", "https://tec.openplanner.team/stops/Cchjaur1"], ["https://tec.openplanner.team/stops/H4ef113a", "https://tec.openplanner.team/stops/H4ef138b"], ["https://tec.openplanner.team/stops/H1lb134a", "https://tec.openplanner.team/stops/H1lb153a"], ["https://tec.openplanner.team/stops/N244ada", "https://tec.openplanner.team/stops/N244afb"], ["https://tec.openplanner.team/stops/Bbchume1", "https://tec.openplanner.team/stops/Bcbqa361"], ["https://tec.openplanner.team/stops/H4vz367b", "https://tec.openplanner.team/stops/H4ws160a"], ["https://tec.openplanner.team/stops/H4rs117b", "https://tec.openplanner.team/stops/H4rs119a"], ["https://tec.openplanner.team/stops/X619aia", "https://tec.openplanner.team/stops/X620afb"], ["https://tec.openplanner.team/stops/LXHadam1", "https://tec.openplanner.team/stops/LXHbell1"], ["https://tec.openplanner.team/stops/X731aga", "https://tec.openplanner.team/stops/X731amb"], ["https://tec.openplanner.team/stops/LAWgill1", "https://tec.openplanner.team/stops/LAWlonc2"], ["https://tec.openplanner.team/stops/Cli4bra1", "https://tec.openplanner.team/stops/Clulidl1"], ["https://tec.openplanner.team/stops/LESryon2", "https://tec.openplanner.team/stops/LSdsa452"], ["https://tec.openplanner.team/stops/LhPheps1", "https://tec.openplanner.team/stops/LhPprum2"], ["https://tec.openplanner.team/stops/H1cd113a", "https://tec.openplanner.team/stops/H1ne145a"], ["https://tec.openplanner.team/stops/N501jfa", "https://tec.openplanner.team/stops/N501jfb"], ["https://tec.openplanner.team/stops/NH01aba", "https://tec.openplanner.team/stops/NH01abb"], ["https://tec.openplanner.team/stops/Cchoues5", "https://tec.openplanner.team/stops/Cchviad2"], ["https://tec.openplanner.team/stops/H5rx103b", "https://tec.openplanner.team/stops/H5rx125b"], ["https://tec.openplanner.team/stops/LREgrot4", "https://tec.openplanner.team/stops/LREsoug4"], ["https://tec.openplanner.team/stops/N569aba", "https://tec.openplanner.team/stops/N569afa"], ["https://tec.openplanner.team/stops/X899acb", "https://tec.openplanner.team/stops/X899aea"], ["https://tec.openplanner.team/stops/N519apa", "https://tec.openplanner.team/stops/N519apb"], ["https://tec.openplanner.team/stops/N329aaa", "https://tec.openplanner.team/stops/N365aab"], ["https://tec.openplanner.team/stops/Loudela2", "https://tec.openplanner.team/stops/Lsedese2"], ["https://tec.openplanner.team/stops/H1on128d", "https://tec.openplanner.team/stops/H1on129a"], ["https://tec.openplanner.team/stops/H1vh137b", "https://tec.openplanner.team/stops/H3th129a"], ["https://tec.openplanner.team/stops/LGLcour4", "https://tec.openplanner.team/stops/LGLdeni2"], ["https://tec.openplanner.team/stops/Caindsa1", "https://tec.openplanner.team/stops/Caistro1"], ["https://tec.openplanner.team/stops/N535aea", "https://tec.openplanner.team/stops/N535ama"], ["https://tec.openplanner.team/stops/N501hzc", "https://tec.openplanner.team/stops/N501ifb"], ["https://tec.openplanner.team/stops/X724aga", "https://tec.openplanner.team/stops/X724ahb"], ["https://tec.openplanner.team/stops/Bblafrn1", "https://tec.openplanner.team/stops/Bblasse2"], ["https://tec.openplanner.team/stops/LNCfawe1", "https://tec.openplanner.team/stops/LNCfawe2"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/Crcrwas1"], ["https://tec.openplanner.team/stops/Lemdieu2", "https://tec.openplanner.team/stops/Lemmc--2"], ["https://tec.openplanner.team/stops/Blimeur2", "https://tec.openplanner.team/stops/Blmlgar2"], ["https://tec.openplanner.team/stops/N101aha", "https://tec.openplanner.team/stops/N101ala"], ["https://tec.openplanner.team/stops/Ccychba1", "https://tec.openplanner.team/stops/Crbrgar2"], ["https://tec.openplanner.team/stops/LBEcomm2", "https://tec.openplanner.team/stops/LBEtilf2"], ["https://tec.openplanner.team/stops/LbHzent1", "https://tec.openplanner.team/stops/LmSluxh1"], ["https://tec.openplanner.team/stops/LSOcime1", "https://tec.openplanner.team/stops/LSOladr1"], ["https://tec.openplanner.team/stops/Bgemcha1", "https://tec.openplanner.team/stops/Bgemcha2"], ["https://tec.openplanner.team/stops/X359ada", "https://tec.openplanner.team/stops/X359aka"], ["https://tec.openplanner.team/stops/LBEpier1", "https://tec.openplanner.team/stops/LNipre-1"], ["https://tec.openplanner.team/stops/H3br100a", "https://tec.openplanner.team/stops/H3br100b"], ["https://tec.openplanner.team/stops/N501iwa", "https://tec.openplanner.team/stops/N501iwb"], ["https://tec.openplanner.team/stops/N501esa", "https://tec.openplanner.team/stops/N501exa"], ["https://tec.openplanner.team/stops/Llgcong2", "https://tec.openplanner.team/stops/Llgparc1"], ["https://tec.openplanner.team/stops/X938aba", "https://tec.openplanner.team/stops/X939afb"], ["https://tec.openplanner.team/stops/Cbwmvri1", "https://tec.openplanner.team/stops/Cmgpthi1"], ["https://tec.openplanner.team/stops/Cmaegal1", "https://tec.openplanner.team/stops/Crobass2"], ["https://tec.openplanner.team/stops/X639aia", "https://tec.openplanner.team/stops/X639akd"], ["https://tec.openplanner.team/stops/LATcorp2", "https://tec.openplanner.team/stops/LATmals2"], ["https://tec.openplanner.team/stops/H1hc127a", "https://tec.openplanner.team/stops/H1hc127c"], ["https://tec.openplanner.team/stops/LVeeg--1", "https://tec.openplanner.team/stops/LVGeg--2"], ["https://tec.openplanner.team/stops/H4ru241a", "https://tec.openplanner.team/stops/H4ru241b"], ["https://tec.openplanner.team/stops/X601bea", "https://tec.openplanner.team/stops/X601bhb"], ["https://tec.openplanner.team/stops/X721aqb", "https://tec.openplanner.team/stops/X721arb"], ["https://tec.openplanner.team/stops/Ccigill1", "https://tec.openplanner.team/stops/Ccigill3"], ["https://tec.openplanner.team/stops/N562aia", "https://tec.openplanner.team/stops/N562azb"], ["https://tec.openplanner.team/stops/Cmlbruy2", "https://tec.openplanner.team/stops/Cmlrbru1"], ["https://tec.openplanner.team/stops/Btgregl1", "https://tec.openplanner.team/stops/N584aea"], ["https://tec.openplanner.team/stops/X766abb", "https://tec.openplanner.team/stops/X766ahb"], ["https://tec.openplanner.team/stops/LVHbrai2", "https://tec.openplanner.team/stops/LVHtill2"], ["https://tec.openplanner.team/stops/Cfaeclu1", "https://tec.openplanner.team/stops/Crseuro2"], ["https://tec.openplanner.team/stops/X802aba", "https://tec.openplanner.team/stops/X818ajb"], ["https://tec.openplanner.team/stops/NL37aba", "https://tec.openplanner.team/stops/NL37ala"], ["https://tec.openplanner.team/stops/LCPlacr2", "https://tec.openplanner.team/stops/LCPpech2"], ["https://tec.openplanner.team/stops/X652agb", "https://tec.openplanner.team/stops/X652ahb"], ["https://tec.openplanner.team/stops/Cprrvil1", "https://tec.openplanner.team/stops/Cprrvil2"], ["https://tec.openplanner.team/stops/Ctmmana2", "https://tec.openplanner.team/stops/Cvvmonu2"], ["https://tec.openplanner.team/stops/LMIbois1", "https://tec.openplanner.team/stops/LMIgare1"], ["https://tec.openplanner.team/stops/N584ayb", "https://tec.openplanner.team/stops/N584cba"], ["https://tec.openplanner.team/stops/X943afa", "https://tec.openplanner.team/stops/X943afb"], ["https://tec.openplanner.team/stops/Cmychap3", "https://tec.openplanner.team/stops/Cmychau1"], ["https://tec.openplanner.team/stops/Llghaye1", "https://tec.openplanner.team/stops/Llghenr1"], ["https://tec.openplanner.team/stops/H1ms942a", "https://tec.openplanner.team/stops/H1ms943a"], ["https://tec.openplanner.team/stops/LVLbovy1", "https://tec.openplanner.team/stops/LVLgotr2"], ["https://tec.openplanner.team/stops/LVEfize2", "https://tec.openplanner.team/stops/LVEphar2"], ["https://tec.openplanner.team/stops/N528anb", "https://tec.openplanner.team/stops/N528apa"], ["https://tec.openplanner.team/stops/N507aka", "https://tec.openplanner.team/stops/N507akb"], ["https://tec.openplanner.team/stops/H2ll192b", "https://tec.openplanner.team/stops/H2ll193a"], ["https://tec.openplanner.team/stops/Bbeaap51", "https://tec.openplanner.team/stops/Bbeaap52"], ["https://tec.openplanner.team/stops/X804aga", "https://tec.openplanner.team/stops/X804bdb"], ["https://tec.openplanner.team/stops/LSpfond1", "https://tec.openplanner.team/stops/LSpvanr2"], ["https://tec.openplanner.team/stops/X948ama", "https://tec.openplanner.team/stops/X949akb"], ["https://tec.openplanner.team/stops/Cchsud06", "https://tec.openplanner.team/stops/Cmlvitf2"], ["https://tec.openplanner.team/stops/X781aca", "https://tec.openplanner.team/stops/X781aga"], ["https://tec.openplanner.team/stops/Bnivlai2", "https://tec.openplanner.team/stops/Bnivsho2"], ["https://tec.openplanner.team/stops/Bstmpla1", "https://tec.openplanner.team/stops/N561aba"], ["https://tec.openplanner.team/stops/LVIferm1", "https://tec.openplanner.team/stops/LVIhall1"], ["https://tec.openplanner.team/stops/Clomari4", "https://tec.openplanner.team/stops/Clomari5"], ["https://tec.openplanner.team/stops/Cfopetr1", "https://tec.openplanner.team/stops/Clrrhau2"], ["https://tec.openplanner.team/stops/N121aab", "https://tec.openplanner.team/stops/N150afa"], ["https://tec.openplanner.team/stops/LCtcref1", "https://tec.openplanner.team/stops/X750bpa"], ["https://tec.openplanner.team/stops/N554aea", "https://tec.openplanner.team/stops/N554aeb"], ["https://tec.openplanner.team/stops/Chpcarp1", "https://tec.openplanner.team/stops/Chpcarp2"], ["https://tec.openplanner.team/stops/LCUmars1", "https://tec.openplanner.team/stops/LCUthie2"], ["https://tec.openplanner.team/stops/N343ada", "https://tec.openplanner.team/stops/N343akb"], ["https://tec.openplanner.team/stops/X601cba", "https://tec.openplanner.team/stops/X663ajb"], ["https://tec.openplanner.team/stops/N214aja", "https://tec.openplanner.team/stops/N225aeb"], ["https://tec.openplanner.team/stops/LOuathe1", "https://tec.openplanner.team/stops/LOucuve2"], ["https://tec.openplanner.team/stops/LSochal1", "https://tec.openplanner.team/stops/LSogite1"], ["https://tec.openplanner.team/stops/Cptdubo2", "https://tec.openplanner.team/stops/Cpttraz1"], ["https://tec.openplanner.team/stops/LBNruns1", "https://tec.openplanner.team/stops/LGObeth2"], ["https://tec.openplanner.team/stops/Lghgoll2", "https://tec.openplanner.team/stops/Lghpara2"], ["https://tec.openplanner.team/stops/Cfarcam1", "https://tec.openplanner.team/stops/Cfastan1"], ["https://tec.openplanner.team/stops/N509aub", "https://tec.openplanner.team/stops/N511aob"], ["https://tec.openplanner.team/stops/X749acb", "https://tec.openplanner.team/stops/X756agb"], ["https://tec.openplanner.team/stops/Cgogare2", "https://tec.openplanner.team/stops/Craplac3"], ["https://tec.openplanner.team/stops/X224ada", "https://tec.openplanner.team/stops/X224adb"], ["https://tec.openplanner.team/stops/LHexhav2", "https://tec.openplanner.team/stops/LHSheur2"], ["https://tec.openplanner.team/stops/N501hxy", "https://tec.openplanner.team/stops/N501hxz"], ["https://tec.openplanner.team/stops/LPobois1", "https://tec.openplanner.team/stops/LPobois2"], ["https://tec.openplanner.team/stops/Cmmceri1", "https://tec.openplanner.team/stops/Cmmplac1"], ["https://tec.openplanner.team/stops/Bovetwe2", "https://tec.openplanner.team/stops/Brsrabe2"], ["https://tec.openplanner.team/stops/H1hy127b", "https://tec.openplanner.team/stops/H1qy135b"], ["https://tec.openplanner.team/stops/X946afa", "https://tec.openplanner.team/stops/X946afb"], ["https://tec.openplanner.team/stops/N222aab", "https://tec.openplanner.team/stops/X222ala"], ["https://tec.openplanner.team/stops/H4vz367b", "https://tec.openplanner.team/stops/H4vz371b"], ["https://tec.openplanner.team/stops/Clvchen1", "https://tec.openplanner.team/stops/Clvndam1"], ["https://tec.openplanner.team/stops/X889abb", "https://tec.openplanner.team/stops/X889aca"], ["https://tec.openplanner.team/stops/LLTcent1", "https://tec.openplanner.team/stops/LLTcoop1"], ["https://tec.openplanner.team/stops/N532ajb", "https://tec.openplanner.team/stops/N533adb"], ["https://tec.openplanner.team/stops/H4bo122a", "https://tec.openplanner.team/stops/H4bo122b"], ["https://tec.openplanner.team/stops/X613aab", "https://tec.openplanner.team/stops/X613aba"], ["https://tec.openplanner.team/stops/N573aaa", "https://tec.openplanner.team/stops/N573aia"], ["https://tec.openplanner.team/stops/Cvtvail1", "https://tec.openplanner.team/stops/Cvtvail2"], ["https://tec.openplanner.team/stops/N561aib", "https://tec.openplanner.team/stops/N584aqb"], ["https://tec.openplanner.team/stops/H1ho125b", "https://tec.openplanner.team/stops/H1ho134b"], ["https://tec.openplanner.team/stops/H4oq224a", "https://tec.openplanner.team/stops/H4oq224b"], ["https://tec.openplanner.team/stops/H4pq115a", "https://tec.openplanner.team/stops/H4pq117b"], ["https://tec.openplanner.team/stops/X754ara", "https://tec.openplanner.team/stops/X754aua"], ["https://tec.openplanner.team/stops/N101ana", "https://tec.openplanner.team/stops/N101aua"], ["https://tec.openplanner.team/stops/Bclgavi2", "https://tec.openplanner.team/stops/Bclgfva1"], ["https://tec.openplanner.team/stops/Cgxchea2", "https://tec.openplanner.team/stops/Cgxcime2"], ["https://tec.openplanner.team/stops/Bgliron1", "https://tec.openplanner.team/stops/Bmasegl2"], ["https://tec.openplanner.team/stops/Llgnani1", "https://tec.openplanner.team/stops/Llgwesp1"], ["https://tec.openplanner.team/stops/Cplcafp2", "https://tec.openplanner.team/stops/Cpllimi5"], ["https://tec.openplanner.team/stops/Bgntcha1", "https://tec.openplanner.team/stops/Bsgebou2"], ["https://tec.openplanner.team/stops/H4er122a", "https://tec.openplanner.team/stops/H4ty300a"], ["https://tec.openplanner.team/stops/Cgocat1", "https://tec.openplanner.team/stops/Cgoetun4"], ["https://tec.openplanner.team/stops/N231aba", "https://tec.openplanner.team/stops/N291aaa"], ["https://tec.openplanner.team/stops/LPrcarr1", "https://tec.openplanner.team/stops/LPrcarr2"], ["https://tec.openplanner.team/stops/LMNentr1", "https://tec.openplanner.team/stops/LMNgend2"], ["https://tec.openplanner.team/stops/H1hy127b", "https://tec.openplanner.team/stops/H1hy144a"], ["https://tec.openplanner.team/stops/H1ms260a", "https://tec.openplanner.team/stops/H1ms940a"], ["https://tec.openplanner.team/stops/H1at108a", "https://tec.openplanner.team/stops/H1at110b"], ["https://tec.openplanner.team/stops/X769ana", "https://tec.openplanner.team/stops/X769aob"], ["https://tec.openplanner.team/stops/Cjubrul4", "https://tec.openplanner.team/stops/Cjugill4"], ["https://tec.openplanner.team/stops/H4ty358a", "https://tec.openplanner.team/stops/H4ty383b"], ["https://tec.openplanner.team/stops/LeUcroi2", "https://tec.openplanner.team/stops/LeUhutt1"], ["https://tec.openplanner.team/stops/Lcavign1", "https://tec.openplanner.team/stops/LNipla3"], ["https://tec.openplanner.team/stops/Bmrlcch1", "https://tec.openplanner.team/stops/NR21ajb"], ["https://tec.openplanner.team/stops/LFAtomb1", "https://tec.openplanner.team/stops/LFAtomb2"], ["https://tec.openplanner.team/stops/H4mo159b", "https://tec.openplanner.team/stops/H4rk101b"], ["https://tec.openplanner.team/stops/X542adb", "https://tec.openplanner.team/stops/X542aeb"], ["https://tec.openplanner.team/stops/Cwgmell2", "https://tec.openplanner.team/stops/Cwgmell4"], ["https://tec.openplanner.team/stops/X756adb", "https://tec.openplanner.team/stops/X756aed"], ["https://tec.openplanner.team/stops/H3th130b", "https://tec.openplanner.team/stops/H3th131b"], ["https://tec.openplanner.team/stops/N122aba", "https://tec.openplanner.team/stops/N123aaa"], ["https://tec.openplanner.team/stops/LSetrix1", "https://tec.openplanner.team/stops/LVbstre2"], ["https://tec.openplanner.team/stops/LBEtilf1", "https://tec.openplanner.team/stops/LBEtilf2"], ["https://tec.openplanner.team/stops/H4wn130b", "https://tec.openplanner.team/stops/H4wn138b"], ["https://tec.openplanner.team/stops/Cvvchea2", "https://tec.openplanner.team/stops/Cvvgrsa2"], ["https://tec.openplanner.team/stops/X637aea", "https://tec.openplanner.team/stops/X637agc"], ["https://tec.openplanner.team/stops/N501dsa", "https://tec.openplanner.team/stops/N501dtc"], ["https://tec.openplanner.team/stops/LORthie1", "https://tec.openplanner.team/stops/LORvill2"], ["https://tec.openplanner.team/stops/NB33aia", "https://tec.openplanner.team/stops/NB33aib"], ["https://tec.openplanner.team/stops/X904aea", "https://tec.openplanner.team/stops/X943agb"], ["https://tec.openplanner.team/stops/X836adb", "https://tec.openplanner.team/stops/X836aib"], ["https://tec.openplanner.team/stops/X619aja", "https://tec.openplanner.team/stops/X620ahb"], ["https://tec.openplanner.team/stops/N515akc", "https://tec.openplanner.team/stops/N515ala"], ["https://tec.openplanner.team/stops/Cfrempe2", "https://tec.openplanner.team/stops/Cfrfaub4"], ["https://tec.openplanner.team/stops/Cciecol2", "https://tec.openplanner.team/stops/NC02aub"], ["https://tec.openplanner.team/stops/Lsearbo2", "https://tec.openplanner.team/stops/Lsebeau*"], ["https://tec.openplanner.team/stops/N512akb", "https://tec.openplanner.team/stops/N512alb"], ["https://tec.openplanner.team/stops/LSNbouh3", "https://tec.openplanner.team/stops/LSNecol4"], ["https://tec.openplanner.team/stops/X733aha", "https://tec.openplanner.team/stops/X733ahb"], ["https://tec.openplanner.team/stops/H2ll189b", "https://tec.openplanner.team/stops/H2ll189c"], ["https://tec.openplanner.team/stops/X662afa", "https://tec.openplanner.team/stops/X662aga"], ["https://tec.openplanner.team/stops/LWecorn1", "https://tec.openplanner.team/stops/LWecorn2"], ["https://tec.openplanner.team/stops/LNIec--1", "https://tec.openplanner.team/stops/LNIhaut2"], ["https://tec.openplanner.team/stops/Cfrcoop4", "https://tec.openplanner.team/stops/Cfrplac4"], ["https://tec.openplanner.team/stops/X823afd", "https://tec.openplanner.team/stops/X824aaa"], ["https://tec.openplanner.team/stops/Bbaucai1", "https://tec.openplanner.team/stops/Bbauegl2"], ["https://tec.openplanner.team/stops/Cmlecha2", "https://tec.openplanner.team/stops/Cmlhotv1"], ["https://tec.openplanner.team/stops/Bnivaig2", "https://tec.openplanner.team/stops/Bnivath1"], ["https://tec.openplanner.team/stops/Ccuhsti1", "https://tec.openplanner.team/stops/Cpipost2"], ["https://tec.openplanner.team/stops/LeUbush1", "https://tec.openplanner.team/stops/LeUrath1"], ["https://tec.openplanner.team/stops/Bwatmlo2", "https://tec.openplanner.team/stops/Bwatras1"], ["https://tec.openplanner.team/stops/Cjupui02", "https://tec.openplanner.team/stops/Cjurogi2"], ["https://tec.openplanner.team/stops/H4ms144a", "https://tec.openplanner.team/stops/H4ms144b"], ["https://tec.openplanner.team/stops/X619aha", "https://tec.openplanner.team/stops/X620afb"], ["https://tec.openplanner.team/stops/LACeg--1", "https://tec.openplanner.team/stops/LACwass1"], ["https://tec.openplanner.team/stops/X802ahb", "https://tec.openplanner.team/stops/X802aoa"], ["https://tec.openplanner.team/stops/Cvtchap2", "https://tec.openplanner.team/stops/Cvtmaro2"], ["https://tec.openplanner.team/stops/LBrmeiz2", "https://tec.openplanner.team/stops/LMici092"], ["https://tec.openplanner.team/stops/X316aaa", "https://tec.openplanner.team/stops/X318aca"], ["https://tec.openplanner.team/stops/LRRemul1", "https://tec.openplanner.team/stops/LRRroth1"], ["https://tec.openplanner.team/stops/H1ms288a", "https://tec.openplanner.team/stops/H1ms305b"], ["https://tec.openplanner.team/stops/Lmabott2", "https://tec.openplanner.team/stops/Lmaetan*"], ["https://tec.openplanner.team/stops/H1br125b", "https://tec.openplanner.team/stops/H1wz173b"], ["https://tec.openplanner.team/stops/N513aha", "https://tec.openplanner.team/stops/N513awa"], ["https://tec.openplanner.team/stops/Bnivace1", "https://tec.openplanner.team/stops/Bnivaig2"], ["https://tec.openplanner.team/stops/Bjaugar1", "https://tec.openplanner.team/stops/Bjaugar5"], ["https://tec.openplanner.team/stops/Lvtcime1", "https://tec.openplanner.team/stops/Lvtvici2"], ["https://tec.openplanner.team/stops/X725adb", "https://tec.openplanner.team/stops/X725bga"], ["https://tec.openplanner.team/stops/LbTgeme2", "https://tec.openplanner.team/stops/LwYkreu3"], ["https://tec.openplanner.team/stops/Llggram1", "https://tec.openplanner.team/stops/Llggram4"], ["https://tec.openplanner.team/stops/Lkinyst1", "https://tec.openplanner.team/stops/Lscatme2"], ["https://tec.openplanner.team/stops/Llgomal2", "https://tec.openplanner.team/stops/Llgschm1"], ["https://tec.openplanner.team/stops/LJU493-1", "https://tec.openplanner.team/stops/LPAbrun2"], ["https://tec.openplanner.team/stops/Cmgpla2", "https://tec.openplanner.team/stops/Cmgpn2"], ["https://tec.openplanner.team/stops/X806afb", "https://tec.openplanner.team/stops/X806agb"], ["https://tec.openplanner.team/stops/LNCmoul1", "https://tec.openplanner.team/stops/LRachen2"], ["https://tec.openplanner.team/stops/H4ty311a", "https://tec.openplanner.team/stops/H4vx360a"], ["https://tec.openplanner.team/stops/H4ae102b", "https://tec.openplanner.team/stops/H4po129b"], ["https://tec.openplanner.team/stops/H1wa142a", "https://tec.openplanner.team/stops/H1wa142b"], ["https://tec.openplanner.team/stops/Ccumasu1", "https://tec.openplanner.team/stops/Ccumasu2"], ["https://tec.openplanner.team/stops/LSPsous1", "https://tec.openplanner.team/stops/LSPtonn1"], ["https://tec.openplanner.team/stops/Cmychpl1", "https://tec.openplanner.team/stops/Cmyplac2"], ["https://tec.openplanner.team/stops/H4hq131a", "https://tec.openplanner.team/stops/H4hq132a"], ["https://tec.openplanner.team/stops/Bbaulil2", "https://tec.openplanner.team/stops/Bnivche1"], ["https://tec.openplanner.team/stops/H1bb119a", "https://tec.openplanner.team/stops/H1bb146a"], ["https://tec.openplanner.team/stops/LLEfagn2", "https://tec.openplanner.team/stops/LLEgare2"], ["https://tec.openplanner.team/stops/H1ne137a", "https://tec.openplanner.team/stops/H1ne149b"], ["https://tec.openplanner.team/stops/LLycent*", "https://tec.openplanner.team/stops/LWLtamb2"], ["https://tec.openplanner.team/stops/N581aba", "https://tec.openplanner.team/stops/N581aca"], ["https://tec.openplanner.team/stops/Bwatcro1", "https://tec.openplanner.team/stops/Bwatrsg1"], ["https://tec.openplanner.team/stops/Blanath1", "https://tec.openplanner.team/stops/Blanath2"], ["https://tec.openplanner.team/stops/LeLbutg3", "https://tec.openplanner.team/stops/LeLbutg4"], ["https://tec.openplanner.team/stops/X757abb", "https://tec.openplanner.team/stops/X757ada"], ["https://tec.openplanner.team/stops/N504aba", "https://tec.openplanner.team/stops/N579aab"], ["https://tec.openplanner.team/stops/Lenhouc1", "https://tec.openplanner.team/stops/Lvedepo*"], ["https://tec.openplanner.team/stops/Bbwacol1", "https://tec.openplanner.team/stops/Bbwacol2"], ["https://tec.openplanner.team/stops/H1og132a", "https://tec.openplanner.team/stops/H1og134a"], ["https://tec.openplanner.team/stops/N201aga", "https://tec.openplanner.team/stops/N202aca"], ["https://tec.openplanner.team/stops/H1hn204a", "https://tec.openplanner.team/stops/H1hn207a"], ["https://tec.openplanner.team/stops/N170aga", "https://tec.openplanner.team/stops/N170agb"], ["https://tec.openplanner.team/stops/X767aba", "https://tec.openplanner.team/stops/X767aca"], ["https://tec.openplanner.team/stops/H4lu126b", "https://tec.openplanner.team/stops/H4lu128a"], ["https://tec.openplanner.team/stops/N244aqa", "https://tec.openplanner.team/stops/N244axa"], ["https://tec.openplanner.team/stops/H4bh101a", "https://tec.openplanner.team/stops/H4bh102b"], ["https://tec.openplanner.team/stops/Cfccuch1", "https://tec.openplanner.team/stops/Cvrfema2"], ["https://tec.openplanner.team/stops/Bsgeegl2", "https://tec.openplanner.team/stops/Bsgeegl3"], ["https://tec.openplanner.team/stops/LCRchpl1", "https://tec.openplanner.team/stops/LCRf14-1"], ["https://tec.openplanner.team/stops/Lbbgare1", "https://tec.openplanner.team/stops/Lgrcral1"], ["https://tec.openplanner.team/stops/LPLcroi1", "https://tec.openplanner.team/stops/LPLphar2"], ["https://tec.openplanner.team/stops/Bbchsac1", "https://tec.openplanner.team/stops/Bhtipir1"], ["https://tec.openplanner.team/stops/LsHfrie1", "https://tec.openplanner.team/stops/LsHfrie2"], ["https://tec.openplanner.team/stops/H1ba107a", "https://tec.openplanner.team/stops/H1ba110b"], ["https://tec.openplanner.team/stops/Bnodeco1", "https://tec.openplanner.team/stops/Bnodeco2"], ["https://tec.openplanner.team/stops/N136ada", "https://tec.openplanner.team/stops/N143aab"], ["https://tec.openplanner.team/stops/H4be104a", "https://tec.openplanner.team/stops/H4be104b"], ["https://tec.openplanner.team/stops/H1mb128b", "https://tec.openplanner.team/stops/H1mb135b"], ["https://tec.openplanner.team/stops/X359aga", "https://tec.openplanner.team/stops/X359agb"], ["https://tec.openplanner.team/stops/Cvlbvir1", "https://tec.openplanner.team/stops/Cvlbvir2"], ["https://tec.openplanner.team/stops/Btubind2", "https://tec.openplanner.team/stops/Btubsca1"], ["https://tec.openplanner.team/stops/LJEniho2", "https://tec.openplanner.team/stops/LJEtige1"], ["https://tec.openplanner.team/stops/Berneco1", "https://tec.openplanner.team/stops/Bernpon2"], ["https://tec.openplanner.team/stops/Lsnbrac2", "https://tec.openplanner.team/stops/Lsnhorl1"], ["https://tec.openplanner.team/stops/Clooues2", "https://tec.openplanner.team/stops/Cloravi2"], ["https://tec.openplanner.team/stops/LrDsage2", "https://tec.openplanner.team/stops/LrDzoll4"], ["https://tec.openplanner.team/stops/LkEhaag1", "https://tec.openplanner.team/stops/LlNm%C3%BChl2"], ["https://tec.openplanner.team/stops/Cgzha621", "https://tec.openplanner.team/stops/Cgzmarb2"], ["https://tec.openplanner.team/stops/LFRcoun2", "https://tec.openplanner.team/stops/LSTamer2"], ["https://tec.openplanner.team/stops/Cmtrbla1", "https://tec.openplanner.team/stops/Cmtrbra1"], ["https://tec.openplanner.team/stops/X651aab", "https://tec.openplanner.team/stops/X652aaa"], ["https://tec.openplanner.team/stops/X982baa", "https://tec.openplanner.team/stops/X996aaa"], ["https://tec.openplanner.team/stops/H1ms296c", "https://tec.openplanner.team/stops/H1ms924a"], ["https://tec.openplanner.team/stops/N143aab", "https://tec.openplanner.team/stops/N143aba"], ["https://tec.openplanner.team/stops/LAibego1", "https://tec.openplanner.team/stops/LAibego2"], ["https://tec.openplanner.team/stops/Cdalpla1", "https://tec.openplanner.team/stops/CMlpla1"], ["https://tec.openplanner.team/stops/H1ls108a", "https://tec.openplanner.team/stops/H1ls110a"], ["https://tec.openplanner.team/stops/LNCchau1", "https://tec.openplanner.team/stops/LNCmada2"], ["https://tec.openplanner.team/stops/Lfhdone1", "https://tec.openplanner.team/stops/Lfh-sci2"], ["https://tec.openplanner.team/stops/H2ca108a", "https://tec.openplanner.team/stops/H2ca108b"], ["https://tec.openplanner.team/stops/N137aha", "https://tec.openplanner.team/stops/N137ahb"], ["https://tec.openplanner.team/stops/LMAbijo2", "https://tec.openplanner.team/stops/LMAchod1"], ["https://tec.openplanner.team/stops/N120acb", "https://tec.openplanner.team/stops/N301ajb"], ["https://tec.openplanner.team/stops/Bhlvlou1", "https://tec.openplanner.team/stops/Crewaba1"], ["https://tec.openplanner.team/stops/H4mo170a", "https://tec.openplanner.team/stops/H4rx176a"], ["https://tec.openplanner.team/stops/X761aca", "https://tec.openplanner.team/stops/X761acb"], ["https://tec.openplanner.team/stops/X639aka", "https://tec.openplanner.team/stops/X639ala"], ["https://tec.openplanner.team/stops/N550afb", "https://tec.openplanner.team/stops/N550ana"], ["https://tec.openplanner.team/stops/Cmastfi2", "https://tec.openplanner.team/stops/Cmocalv2"], ["https://tec.openplanner.team/stops/Binccha2", "https://tec.openplanner.team/stops/Bincegl1"], ["https://tec.openplanner.team/stops/H3th127a", "https://tec.openplanner.team/stops/H3th130a"], ["https://tec.openplanner.team/stops/H4al100a", "https://tec.openplanner.team/stops/H4ch116a"], ["https://tec.openplanner.team/stops/LSShous2", "https://tec.openplanner.team/stops/LVTtrou1"], ["https://tec.openplanner.team/stops/LFFchal1", "https://tec.openplanner.team/stops/LJEniho2"], ["https://tec.openplanner.team/stops/Cromart1", "https://tec.openplanner.team/stops/Cromart2"], ["https://tec.openplanner.team/stops/LlgLAMB2", "https://tec.openplanner.team/stops/LlgLAMB3"], ["https://tec.openplanner.team/stops/Bhoealt2", "https://tec.openplanner.team/stops/Bzluegl2"], ["https://tec.openplanner.team/stops/X938aca", "https://tec.openplanner.team/stops/X950acb"], ["https://tec.openplanner.team/stops/H4ne145b", "https://tec.openplanner.team/stops/H4wa149b"], ["https://tec.openplanner.team/stops/N584caa", "https://tec.openplanner.team/stops/N584cac"], ["https://tec.openplanner.team/stops/LBMecol2", "https://tec.openplanner.team/stops/X982blb"], ["https://tec.openplanner.team/stops/H4ef113c", "https://tec.openplanner.team/stops/H4ef138b"], ["https://tec.openplanner.team/stops/Lvegc--6", "https://tec.openplanner.team/stops/Lverogi2"], ["https://tec.openplanner.team/stops/Cfcchas1", "https://tec.openplanner.team/stops/Cvlstan1"], ["https://tec.openplanner.team/stops/X898aja", "https://tec.openplanner.team/stops/X898akb"], ["https://tec.openplanner.team/stops/LBItnt-*", "https://tec.openplanner.team/stops/Lmlmich1"], ["https://tec.openplanner.team/stops/LSPhapa1", "https://tec.openplanner.team/stops/LSPvigi1"], ["https://tec.openplanner.team/stops/LORgr8-2", "https://tec.openplanner.team/stops/LORthie1"], ["https://tec.openplanner.team/stops/Bchgqve2", "https://tec.openplanner.team/stops/Bchgqve4"], ["https://tec.openplanner.team/stops/Ljeblum1", "https://tec.openplanner.team/stops/Ljeheur2"], ["https://tec.openplanner.team/stops/N310aca", "https://tec.openplanner.team/stops/N310ada"], ["https://tec.openplanner.team/stops/H1ha183a", "https://tec.openplanner.team/stops/H1ha194b"], ["https://tec.openplanner.team/stops/LsF39--1", "https://tec.openplanner.team/stops/LwPdorf1"], ["https://tec.openplanner.team/stops/Lvealbe2", "https://tec.openplanner.team/stops/Lvepala7"], ["https://tec.openplanner.team/stops/Ladgath1", "https://tec.openplanner.team/stops/Ldipiss1"], ["https://tec.openplanner.team/stops/Bovecha1", "https://tec.openplanner.team/stops/Bwavpar1"], ["https://tec.openplanner.team/stops/N201afa", "https://tec.openplanner.team/stops/N201asa"], ["https://tec.openplanner.team/stops/H1em110a", "https://tec.openplanner.team/stops/H1vs144a"], ["https://tec.openplanner.team/stops/Cbweco2", "https://tec.openplanner.team/stops/Cbwegl1"], ["https://tec.openplanner.team/stops/N241aaa", "https://tec.openplanner.team/stops/N270acb"], ["https://tec.openplanner.team/stops/LWOcomm2", "https://tec.openplanner.team/stops/LWOmart2"], ["https://tec.openplanner.team/stops/X661acb", "https://tec.openplanner.team/stops/X661aza"], ["https://tec.openplanner.team/stops/LkAmess1", "https://tec.openplanner.team/stops/LmHdrei1"], ["https://tec.openplanner.team/stops/N545aba", "https://tec.openplanner.team/stops/N545acb"], ["https://tec.openplanner.team/stops/LAMrich1", "https://tec.openplanner.team/stops/LJEtige2"], ["https://tec.openplanner.team/stops/X801bra", "https://tec.openplanner.team/stops/X801bxa"], ["https://tec.openplanner.team/stops/Ljhjeha*", "https://tec.openplanner.team/stops/LSU50--1"], ["https://tec.openplanner.team/stops/Lbocarr2", "https://tec.openplanner.team/stops/Lbocomm1"], ["https://tec.openplanner.team/stops/X910afb", "https://tec.openplanner.team/stops/X910afc"], ["https://tec.openplanner.team/stops/Lpeathe*", "https://tec.openplanner.team/stops/Lpemata2"], ["https://tec.openplanner.team/stops/H2bh105a", "https://tec.openplanner.team/stops/H2bh114b"], ["https://tec.openplanner.team/stops/N501mfa", "https://tec.openplanner.team/stops/N501mfb"], ["https://tec.openplanner.team/stops/N525aha", "https://tec.openplanner.team/stops/N525aka"], ["https://tec.openplanner.team/stops/LFPgeme1", "https://tec.openplanner.team/stops/LFPzwaa2"], ["https://tec.openplanner.team/stops/LFR201-1", "https://tec.openplanner.team/stops/LSx309-1"], ["https://tec.openplanner.team/stops/Ccufos72", "https://tec.openplanner.team/stops/Ccupetp1"], ["https://tec.openplanner.team/stops/LHEcruc4", "https://tec.openplanner.team/stops/LHEoutr1"], ["https://tec.openplanner.team/stops/X607aeb", "https://tec.openplanner.team/stops/X621aaa"], ["https://tec.openplanner.team/stops/X723aga", "https://tec.openplanner.team/stops/X723ahb"], ["https://tec.openplanner.team/stops/Blsmcha4", "https://tec.openplanner.team/stops/Bneeace1"], ["https://tec.openplanner.team/stops/Bitrpar1", "https://tec.openplanner.team/stops/Bitrpar2"], ["https://tec.openplanner.team/stops/N501fbb", "https://tec.openplanner.team/stops/N501fbz"], ["https://tec.openplanner.team/stops/N532aca", "https://tec.openplanner.team/stops/N532aeb"], ["https://tec.openplanner.team/stops/Bixlfla2", "https://tec.openplanner.team/stops/Bsgimca2"], ["https://tec.openplanner.team/stops/NL76ahb", "https://tec.openplanner.team/stops/NL76ana"], ["https://tec.openplanner.team/stops/Cgocapu2", "https://tec.openplanner.team/stops/Ctmazeb1"], ["https://tec.openplanner.team/stops/N553aab", "https://tec.openplanner.team/stops/N553ala"], ["https://tec.openplanner.team/stops/LHMchbl1", "https://tec.openplanner.team/stops/LHMchbl2"], ["https://tec.openplanner.team/stops/N511aoa", "https://tec.openplanner.team/stops/N511aob"], ["https://tec.openplanner.team/stops/H2an102a", "https://tec.openplanner.team/stops/H2an110a"], ["https://tec.openplanner.team/stops/LMOcorn2", "https://tec.openplanner.team/stops/LMOf35-1"], ["https://tec.openplanner.team/stops/Lagfour1", "https://tec.openplanner.team/stops/Lagvern1"], ["https://tec.openplanner.team/stops/LTiespe4", "https://tec.openplanner.team/stops/LTiruel2"], ["https://tec.openplanner.team/stops/Cgzplac3", "https://tec.openplanner.team/stops/Cgzplac6"], ["https://tec.openplanner.team/stops/LHUamer1", "https://tec.openplanner.team/stops/LHUfoss*"], ["https://tec.openplanner.team/stops/LhSwind1", "https://tec.openplanner.team/stops/LhSwind2"], ["https://tec.openplanner.team/stops/H4ty291c", "https://tec.openplanner.team/stops/H4ty351b"], ["https://tec.openplanner.team/stops/Lmibove4", "https://tec.openplanner.team/stops/Lmigare2"], ["https://tec.openplanner.team/stops/Binclon2", "https://tec.openplanner.team/stops/Bopprju1"], ["https://tec.openplanner.team/stops/Lbogonh*", "https://tec.openplanner.team/stops/Lbogonh1"], ["https://tec.openplanner.team/stops/LESchat2", "https://tec.openplanner.team/stops/LEShony2"], ["https://tec.openplanner.team/stops/X763aia", "https://tec.openplanner.team/stops/X763aib"], ["https://tec.openplanner.team/stops/Cgpauln2", "https://tec.openplanner.team/stops/Cgpchen1"], ["https://tec.openplanner.team/stops/H1ms912a", "https://tec.openplanner.team/stops/H1ms915b"], ["https://tec.openplanner.team/stops/Bgoekaz2", "https://tec.openplanner.team/stops/Bgoevli2"], ["https://tec.openplanner.team/stops/H4av102a", "https://tec.openplanner.team/stops/H4mb143c"], ["https://tec.openplanner.team/stops/H5at106a", "https://tec.openplanner.team/stops/H5at112a"], ["https://tec.openplanner.team/stops/X922agb", "https://tec.openplanner.team/stops/X922akb"], ["https://tec.openplanner.team/stops/N551alb", "https://tec.openplanner.team/stops/N551aqb"], ["https://tec.openplanner.team/stops/LCTcret2", "https://tec.openplanner.team/stops/LCTmonu1"], ["https://tec.openplanner.team/stops/Ljeegli6", "https://tec.openplanner.team/stops/Ljelamb1"], ["https://tec.openplanner.team/stops/LENmc--1", "https://tec.openplanner.team/stops/LENpt--2"], ["https://tec.openplanner.team/stops/X985aaa", "https://tec.openplanner.team/stops/X985abb"], ["https://tec.openplanner.team/stops/H5pe147c", "https://tec.openplanner.team/stops/H5pe175a"], ["https://tec.openplanner.team/stops/X354afb", "https://tec.openplanner.team/stops/X354agb"], ["https://tec.openplanner.team/stops/LDOordi1", "https://tec.openplanner.team/stops/LGOmous2"], ["https://tec.openplanner.team/stops/LNAbois1", "https://tec.openplanner.team/stops/LNAbouh1"], ["https://tec.openplanner.team/stops/LSNmoul2", "https://tec.openplanner.team/stops/LSNnoul2"], ["https://tec.openplanner.team/stops/LeLcrem1", "https://tec.openplanner.team/stops/LeLcrem2"], ["https://tec.openplanner.team/stops/LMsbusc1", "https://tec.openplanner.team/stops/LMsbusc2"], ["https://tec.openplanner.team/stops/Canjon1", "https://tec.openplanner.team/stops/Canjon2"], ["https://tec.openplanner.team/stops/H2ch103a", "https://tec.openplanner.team/stops/H2ch103b"], ["https://tec.openplanner.team/stops/N565alb", "https://tec.openplanner.team/stops/N569afb"], ["https://tec.openplanner.team/stops/Canegbr1", "https://tec.openplanner.team/stops/Canplch2"], ["https://tec.openplanner.team/stops/LAigrim1", "https://tec.openplanner.team/stops/LAipala1"], ["https://tec.openplanner.team/stops/Bsgihmo2", "https://tec.openplanner.team/stops/Bsgipha2"], ["https://tec.openplanner.team/stops/Lhufont1", "https://tec.openplanner.team/stops/Lhuwaid1"], ["https://tec.openplanner.team/stops/H5pe128b", "https://tec.openplanner.team/stops/H5pe148a"], ["https://tec.openplanner.team/stops/N155aia", "https://tec.openplanner.team/stops/NC14ava"], ["https://tec.openplanner.team/stops/Lghalli1", "https://tec.openplanner.team/stops/Lghbonn1"], ["https://tec.openplanner.team/stops/N162aca", "https://tec.openplanner.team/stops/N162acb"], ["https://tec.openplanner.team/stops/X669abd", "https://tec.openplanner.team/stops/X669aca"], ["https://tec.openplanner.team/stops/Candett1", "https://tec.openplanner.team/stops/Candett2"], ["https://tec.openplanner.team/stops/LHarenn2", "https://tec.openplanner.team/stops/LHarenn4"], ["https://tec.openplanner.team/stops/LSIcour1", "https://tec.openplanner.team/stops/LSItert2"], ["https://tec.openplanner.team/stops/N106apa", "https://tec.openplanner.team/stops/N137afb"], ["https://tec.openplanner.team/stops/Lrcchpl1", "https://tec.openplanner.team/stops/Lrcchpl2"], ["https://tec.openplanner.team/stops/X659awa", "https://tec.openplanner.team/stops/X672aha"], ["https://tec.openplanner.team/stops/LrApark1", "https://tec.openplanner.team/stops/LrAwald2"], ["https://tec.openplanner.team/stops/Cglbras1", "https://tec.openplanner.team/stops/Cgnquer2"], ["https://tec.openplanner.team/stops/Lagjado1", "https://tec.openplanner.team/stops/Lagjado5"], ["https://tec.openplanner.team/stops/LSNgerm2", "https://tec.openplanner.team/stops/LWevalf2"], ["https://tec.openplanner.team/stops/Bbgelre2", "https://tec.openplanner.team/stops/Bwavbpi2"], ["https://tec.openplanner.team/stops/X946aia", "https://tec.openplanner.team/stops/X946aib"], ["https://tec.openplanner.team/stops/N506aqb", "https://tec.openplanner.team/stops/N506bpb"], ["https://tec.openplanner.team/stops/Brsreco1", "https://tec.openplanner.team/stops/Brsrmon3"], ["https://tec.openplanner.team/stops/Ccogode2", "https://tec.openplanner.team/stops/Ccotrie2"], ["https://tec.openplanner.team/stops/N543acb", "https://tec.openplanner.team/stops/N543bgc"], ["https://tec.openplanner.team/stops/Cflmarq2", "https://tec.openplanner.team/stops/Cflvxca2"], ["https://tec.openplanner.team/stops/LVEbors1", "https://tec.openplanner.team/stops/LVEbors2"], ["https://tec.openplanner.team/stops/N232axa", "https://tec.openplanner.team/stops/N232bjb"], ["https://tec.openplanner.team/stops/Cmlcaya2", "https://tec.openplanner.team/stops/Cmlhaie2"], ["https://tec.openplanner.team/stops/H1ne143b", "https://tec.openplanner.team/stops/H1ne149b"], ["https://tec.openplanner.team/stops/X801bfa", "https://tec.openplanner.team/stops/X801bka"], ["https://tec.openplanner.team/stops/H4fr139a", "https://tec.openplanner.team/stops/H4fr142b"], ["https://tec.openplanner.team/stops/Cfowall1", "https://tec.openplanner.team/stops/CMfont1"], ["https://tec.openplanner.team/stops/Bperalv1", "https://tec.openplanner.team/stops/Bpernov1"], ["https://tec.openplanner.team/stops/Bblabos1", "https://tec.openplanner.team/stops/Bblaece2"], ["https://tec.openplanner.team/stops/H1qy133b", "https://tec.openplanner.team/stops/H1qy137b"], ["https://tec.openplanner.team/stops/Cnacent2", "https://tec.openplanner.team/stops/Cnaha562"], ["https://tec.openplanner.team/stops/Cchdelf2", "https://tec.openplanner.team/stops/Cchtour2"], ["https://tec.openplanner.team/stops/H2lc145b", "https://tec.openplanner.team/stops/H2lc171b"], ["https://tec.openplanner.team/stops/Lhuferm1", "https://tec.openplanner.team/stops/Lhujonc2"], ["https://tec.openplanner.team/stops/H4rm107a", "https://tec.openplanner.team/stops/H4rm107b"], ["https://tec.openplanner.team/stops/N136aeb", "https://tec.openplanner.team/stops/N143aab"], ["https://tec.openplanner.team/stops/Llgaba-2", "https://tec.openplanner.team/stops/Llgatel2"], ["https://tec.openplanner.team/stops/N368afb", "https://tec.openplanner.team/stops/N387ahb"], ["https://tec.openplanner.team/stops/LLecolo1", "https://tec.openplanner.team/stops/X547aka"], ["https://tec.openplanner.team/stops/N558amb", "https://tec.openplanner.team/stops/N559aea"], ["https://tec.openplanner.team/stops/LOUbarr1", "https://tec.openplanner.team/stops/LOUbleu2"], ["https://tec.openplanner.team/stops/N577aca", "https://tec.openplanner.team/stops/N577aha"], ["https://tec.openplanner.team/stops/Ljubrec2", "https://tec.openplanner.team/stops/Ljuplpr1"], ["https://tec.openplanner.team/stops/X901avb", "https://tec.openplanner.team/stops/X901aza"], ["https://tec.openplanner.team/stops/LHhmohe1", "https://tec.openplanner.team/stops/NL30aka"], ["https://tec.openplanner.team/stops/N563anb", "https://tec.openplanner.team/stops/N563aoa"], ["https://tec.openplanner.team/stops/X652afd", "https://tec.openplanner.team/stops/X652aja"], ["https://tec.openplanner.team/stops/X766aha", "https://tec.openplanner.team/stops/X766ahb"], ["https://tec.openplanner.team/stops/LLscent1", "https://tec.openplanner.team/stops/LLscent2"], ["https://tec.openplanner.team/stops/H1mj123b", "https://tec.openplanner.team/stops/H1mj124a"], ["https://tec.openplanner.team/stops/Bsmgbsa1", "https://tec.openplanner.team/stops/Bsmgres1"], ["https://tec.openplanner.team/stops/Lemacac1", "https://tec.openplanner.team/stops/Lemacac2"], ["https://tec.openplanner.team/stops/LeLherz2", "https://tec.openplanner.team/stops/LkAbahn*"], ["https://tec.openplanner.team/stops/X808aib", "https://tec.openplanner.team/stops/X850ama"], ["https://tec.openplanner.team/stops/LhP25--2", "https://tec.openplanner.team/stops/LhPkirc2"], ["https://tec.openplanner.team/stops/N514ana", "https://tec.openplanner.team/stops/N514aoa"], ["https://tec.openplanner.team/stops/Bbchmai2", "https://tec.openplanner.team/stops/Bitrfsc2"], ["https://tec.openplanner.team/stops/Bmalsme1", "https://tec.openplanner.team/stops/Bmalsme2"], ["https://tec.openplanner.team/stops/LeUgulc1", "https://tec.openplanner.team/stops/LeUgulc2"], ["https://tec.openplanner.team/stops/LReeg--1", "https://tec.openplanner.team/stops/LRemorr3"], ["https://tec.openplanner.team/stops/N517ada", "https://tec.openplanner.team/stops/N517add"], ["https://tec.openplanner.team/stops/X801cca", "https://tec.openplanner.team/stops/X801cda"], ["https://tec.openplanner.team/stops/X812ajb", "https://tec.openplanner.team/stops/X812aoa"], ["https://tec.openplanner.team/stops/N521ara", "https://tec.openplanner.team/stops/N521asb"], ["https://tec.openplanner.team/stops/X657aga", "https://tec.openplanner.team/stops/X657agb"], ["https://tec.openplanner.team/stops/Bgdhpco2", "https://tec.openplanner.team/stops/Bpthfus1"], ["https://tec.openplanner.team/stops/Lhemilm2", "https://tec.openplanner.team/stops/Lhrspi-1"], ["https://tec.openplanner.team/stops/X713aab", "https://tec.openplanner.team/stops/X796aha"], ["https://tec.openplanner.team/stops/X839aba", "https://tec.openplanner.team/stops/X839abb"], ["https://tec.openplanner.team/stops/LSZgare1", "https://tec.openplanner.team/stops/LSZgare2"], ["https://tec.openplanner.team/stops/Ccymabo1", "https://tec.openplanner.team/stops/Csrcarr2"], ["https://tec.openplanner.team/stops/Cmyplac1", "https://tec.openplanner.team/stops/Cmyplac2"], ["https://tec.openplanner.team/stops/N543ahb", "https://tec.openplanner.team/stops/N543apb"], ["https://tec.openplanner.team/stops/Lmnhorl3", "https://tec.openplanner.team/stops/Lvescie1"], ["https://tec.openplanner.team/stops/H4ka183b", "https://tec.openplanner.team/stops/H4ka392a"], ["https://tec.openplanner.team/stops/Bjodcdt1", "https://tec.openplanner.team/stops/NR10aba"], ["https://tec.openplanner.team/stops/LGEcons2", "https://tec.openplanner.team/stops/LLYplac1"], ["https://tec.openplanner.team/stops/Cmlcent1", "https://tec.openplanner.team/stops/Cmlecha2"], ["https://tec.openplanner.team/stops/N201asa", "https://tec.openplanner.team/stops/N201asb"], ["https://tec.openplanner.team/stops/LnEfrie2", "https://tec.openplanner.team/stops/LsVgils1"], ["https://tec.openplanner.team/stops/X804amb", "https://tec.openplanner.team/stops/X804aqb"], ["https://tec.openplanner.team/stops/N117aca", "https://tec.openplanner.team/stops/N117bda"], ["https://tec.openplanner.team/stops/LXhjupr2", "https://tec.openplanner.team/stops/LXhvina2"], ["https://tec.openplanner.team/stops/N549afa", "https://tec.openplanner.team/stops/N549ahb"], ["https://tec.openplanner.team/stops/X899ada", "https://tec.openplanner.team/stops/X899afb"], ["https://tec.openplanner.team/stops/H4ty286a", "https://tec.openplanner.team/stops/H4ty286b"], ["https://tec.openplanner.team/stops/X892adb", "https://tec.openplanner.team/stops/X892afb"], ["https://tec.openplanner.team/stops/H1sy138a", "https://tec.openplanner.team/stops/H1sy138b"], ["https://tec.openplanner.team/stops/LMfbuck1", "https://tec.openplanner.team/stops/LMfbuck2"], ["https://tec.openplanner.team/stops/Lrc594-1", "https://tec.openplanner.team/stops/Lrcprin6"], ["https://tec.openplanner.team/stops/Cci22ao1", "https://tec.openplanner.team/stops/Cciethi2"], ["https://tec.openplanner.team/stops/LLg9---2", "https://tec.openplanner.team/stops/LLgcent2"], ["https://tec.openplanner.team/stops/X750ara", "https://tec.openplanner.team/stops/X750ata"], ["https://tec.openplanner.team/stops/Lsweg--2", "https://tec.openplanner.team/stops/Lwachal1"], ["https://tec.openplanner.team/stops/NR21agb", "https://tec.openplanner.team/stops/NR21aha"], ["https://tec.openplanner.team/stops/N501aaa", "https://tec.openplanner.team/stops/N501esb"], ["https://tec.openplanner.team/stops/X952acb", "https://tec.openplanner.team/stops/X952aeb"], ["https://tec.openplanner.team/stops/LmRmuhl1", "https://tec.openplanner.team/stops/LsHkreu3"], ["https://tec.openplanner.team/stops/X780aib", "https://tec.openplanner.team/stops/X780atb"], ["https://tec.openplanner.team/stops/Clrcomb2", "https://tec.openplanner.team/stops/Clrplac2"], ["https://tec.openplanner.team/stops/N512adb", "https://tec.openplanner.team/stops/N512ara"], ["https://tec.openplanner.team/stops/N204acb", "https://tec.openplanner.team/stops/N204afb"], ["https://tec.openplanner.team/stops/LAvambr1", "https://tec.openplanner.team/stops/LMXaven2"], ["https://tec.openplanner.team/stops/X616aab", "https://tec.openplanner.team/stops/X617aeb"], ["https://tec.openplanner.team/stops/Crojume1", "https://tec.openplanner.team/stops/Cropcan1"], ["https://tec.openplanner.team/stops/Cmtduch2", "https://tec.openplanner.team/stops/Cmtmoul1"], ["https://tec.openplanner.team/stops/Lfh-sci2", "https://tec.openplanner.team/stops/Lseivoz2"], ["https://tec.openplanner.team/stops/H4av106d", "https://tec.openplanner.team/stops/H4ff117b"], ["https://tec.openplanner.team/stops/Cmgbras1", "https://tec.openplanner.team/stops/Cmgbras2"], ["https://tec.openplanner.team/stops/N501jjb", "https://tec.openplanner.team/stops/N521afa"], ["https://tec.openplanner.team/stops/X818arb", "https://tec.openplanner.team/stops/X818asb"], ["https://tec.openplanner.team/stops/H1eq117a", "https://tec.openplanner.team/stops/H1fy143a"], ["https://tec.openplanner.team/stops/Bbstasa1", "https://tec.openplanner.team/stops/Csdetan1"], ["https://tec.openplanner.team/stops/H1ho123b", "https://tec.openplanner.team/stops/H1ho133b"], ["https://tec.openplanner.team/stops/H4eg106b", "https://tec.openplanner.team/stops/H4ne136b"], ["https://tec.openplanner.team/stops/N538aqa", "https://tec.openplanner.team/stops/N538ara"], ["https://tec.openplanner.team/stops/X605aeb", "https://tec.openplanner.team/stops/X605alb"], ["https://tec.openplanner.team/stops/Barqhro2", "https://tec.openplanner.team/stops/Barqpla2"], ["https://tec.openplanner.team/stops/LAVcime2", "https://tec.openplanner.team/stops/LAVeg--1"], ["https://tec.openplanner.team/stops/Ladboti2", "https://tec.openplanner.team/stops/Ladchat2"], ["https://tec.openplanner.team/stops/Lflhott1", "https://tec.openplanner.team/stops/Lflmaxi3"], ["https://tec.openplanner.team/stops/X982aba", "https://tec.openplanner.team/stops/X982acb"], ["https://tec.openplanner.team/stops/Lremonu2", "https://tec.openplanner.team/stops/Lrevaul2"], ["https://tec.openplanner.team/stops/X747aab", "https://tec.openplanner.team/stops/X754akb"], ["https://tec.openplanner.team/stops/Lcehipp2", "https://tec.openplanner.team/stops/Lcepass2"], ["https://tec.openplanner.team/stops/N501lnb", "https://tec.openplanner.team/stops/N501lxb"], ["https://tec.openplanner.team/stops/LhBdorf2", "https://tec.openplanner.team/stops/LlSzoll2"], ["https://tec.openplanner.team/stops/X823aaa", "https://tec.openplanner.team/stops/X823acb"], ["https://tec.openplanner.team/stops/N343abb", "https://tec.openplanner.team/stops/X343aha"], ["https://tec.openplanner.team/stops/LHUlebe0", "https://tec.openplanner.team/stops/LHUpala1"], ["https://tec.openplanner.team/stops/H2ll180b", "https://tec.openplanner.team/stops/H2ll186b"], ["https://tec.openplanner.team/stops/H2ca103b", "https://tec.openplanner.team/stops/H2ca116b"], ["https://tec.openplanner.team/stops/H4bo113a", "https://tec.openplanner.team/stops/H4bo113b"], ["https://tec.openplanner.team/stops/Cwgmart2", "https://tec.openplanner.team/stops/Cwgmell3"], ["https://tec.openplanner.team/stops/LFIinse2", "https://tec.openplanner.team/stops/LXoeg--3"], ["https://tec.openplanner.team/stops/H4am100b", "https://tec.openplanner.team/stops/H4an110b"], ["https://tec.openplanner.team/stops/H4ne131b", "https://tec.openplanner.team/stops/H4ne134b"], ["https://tec.openplanner.team/stops/Bsomwav1", "https://tec.openplanner.team/stops/N584bna"], ["https://tec.openplanner.team/stops/Bnivjli1", "https://tec.openplanner.team/stops/Bnivzon1"], ["https://tec.openplanner.team/stops/X729aaa", "https://tec.openplanner.team/stops/X746ama"], ["https://tec.openplanner.team/stops/LCPconf2", "https://tec.openplanner.team/stops/LCPgare2"], ["https://tec.openplanner.team/stops/H5wo125b", "https://tec.openplanner.team/stops/H5wo136b"], ["https://tec.openplanner.team/stops/N309aab", "https://tec.openplanner.team/stops/N309aba"], ["https://tec.openplanner.team/stops/LBachpl2", "https://tec.openplanner.team/stops/LNEcite2"], ["https://tec.openplanner.team/stops/LsVeite2", "https://tec.openplanner.team/stops/LsVfeye2"], ["https://tec.openplanner.team/stops/H5qu141a", "https://tec.openplanner.team/stops/H5qu154a"], ["https://tec.openplanner.team/stops/N141ama", "https://tec.openplanner.team/stops/N141amc"], ["https://tec.openplanner.team/stops/X850aoa", "https://tec.openplanner.team/stops/X850aob"], ["https://tec.openplanner.team/stops/H1ht132b", "https://tec.openplanner.team/stops/H1si163b"], ["https://tec.openplanner.team/stops/Llgsnap1", "https://tec.openplanner.team/stops/Llgwiar1"], ["https://tec.openplanner.team/stops/H4be147a", "https://tec.openplanner.team/stops/H5bs103b"], ["https://tec.openplanner.team/stops/NC14ava", "https://tec.openplanner.team/stops/NC14avb"], ["https://tec.openplanner.team/stops/Blkbavo1", "https://tec.openplanner.team/stops/Blkbavo2"], ["https://tec.openplanner.team/stops/X890acb", "https://tec.openplanner.team/stops/X890aea"], ["https://tec.openplanner.team/stops/N214afa", "https://tec.openplanner.team/stops/N214agb"], ["https://tec.openplanner.team/stops/LFCvoer1", "https://tec.openplanner.team/stops/LWRgare1"], ["https://tec.openplanner.team/stops/N147aaa", "https://tec.openplanner.team/stops/N147aab"], ["https://tec.openplanner.team/stops/Bolggar1", "https://tec.openplanner.team/stops/Bolgrsa2"], ["https://tec.openplanner.team/stops/Lflheid1", "https://tec.openplanner.team/stops/Lflprev2"], ["https://tec.openplanner.team/stops/N139aba", "https://tec.openplanner.team/stops/N139adb"], ["https://tec.openplanner.team/stops/Bgntcha1", "https://tec.openplanner.team/stops/Bgntpla1"], ["https://tec.openplanner.team/stops/Lemacac1", "https://tec.openplanner.team/stops/Lemdieu2"], ["https://tec.openplanner.team/stops/LXhjupr1", "https://tec.openplanner.team/stops/LXhjupr2"], ["https://tec.openplanner.team/stops/X808afb", "https://tec.openplanner.team/stops/X808amb"], ["https://tec.openplanner.team/stops/H4wr173c", "https://tec.openplanner.team/stops/H4wr177a"], ["https://tec.openplanner.team/stops/Cjudewe2", "https://tec.openplanner.team/stops/Cjuplho2"], ["https://tec.openplanner.team/stops/X661aqb", "https://tec.openplanner.team/stops/X840agb"], ["https://tec.openplanner.team/stops/LGemari1", "https://tec.openplanner.team/stops/LMschap1"], ["https://tec.openplanner.team/stops/Lsebrun1", "https://tec.openplanner.team/stops/Lsehcoc1"], ["https://tec.openplanner.team/stops/H4bf105a", "https://tec.openplanner.team/stops/H4bf105b"], ["https://tec.openplanner.team/stops/X758acb", "https://tec.openplanner.team/stops/X758afa"], ["https://tec.openplanner.team/stops/LJUmc--1", "https://tec.openplanner.team/stops/LVSslin3"], ["https://tec.openplanner.team/stops/Cgoathe2", "https://tec.openplanner.team/stops/Cgobruy1"], ["https://tec.openplanner.team/stops/Llgcong2", "https://tec.openplanner.team/stops/Llgdoth2"], ["https://tec.openplanner.team/stops/Bgembsg1", "https://tec.openplanner.team/stops/N522aja"], ["https://tec.openplanner.team/stops/H1qu107a", "https://tec.openplanner.team/stops/H1qu119b"], ["https://tec.openplanner.team/stops/LrEdic71", "https://tec.openplanner.team/stops/LrEkirc1"], ["https://tec.openplanner.team/stops/Cmmpjou2", "https://tec.openplanner.team/stops/Cmymoha2"], ["https://tec.openplanner.team/stops/N501kud", "https://tec.openplanner.team/stops/N501mfa"], ["https://tec.openplanner.team/stops/H1hg181a", "https://tec.openplanner.team/stops/H1hg181b"], ["https://tec.openplanner.team/stops/X394aeb", "https://tec.openplanner.team/stops/X396aea"], ["https://tec.openplanner.team/stops/N385aac", "https://tec.openplanner.team/stops/N385abb"], ["https://tec.openplanner.team/stops/Lheneuv4", "https://tec.openplanner.team/stops/Lhepaqu1"], ["https://tec.openplanner.team/stops/Llgcong1", "https://tec.openplanner.team/stops/Llgcong3"], ["https://tec.openplanner.team/stops/Bwagcus2", "https://tec.openplanner.team/stops/Bwagsta1"], ["https://tec.openplanner.team/stops/H4gr109b", "https://tec.openplanner.team/stops/H4ld124b"], ["https://tec.openplanner.team/stops/LLbbons2", "https://tec.openplanner.team/stops/LRcjard2"], ["https://tec.openplanner.team/stops/H4ae102b", "https://tec.openplanner.team/stops/H4ef111a"], ["https://tec.openplanner.team/stops/LLxconj2", "https://tec.openplanner.team/stops/LLxmonu2"], ["https://tec.openplanner.team/stops/H1be101a", "https://tec.openplanner.team/stops/H1be103a"], ["https://tec.openplanner.team/stops/Cjuhame1", "https://tec.openplanner.team/stops/Cragill1"], ["https://tec.openplanner.team/stops/Lsecime1", "https://tec.openplanner.team/stops/Lsecime2"], ["https://tec.openplanner.team/stops/H1hw120b", "https://tec.openplanner.team/stops/H1hw123a"], ["https://tec.openplanner.team/stops/N353aeb", "https://tec.openplanner.team/stops/N383aab"], ["https://tec.openplanner.team/stops/Cgrcent1", "https://tec.openplanner.team/stops/Cgrgend2"], ["https://tec.openplanner.team/stops/X609akb", "https://tec.openplanner.team/stops/X622aba"], ["https://tec.openplanner.team/stops/Cmmheur1", "https://tec.openplanner.team/stops/Cmygbbo1"], ["https://tec.openplanner.team/stops/LkTdorf1", "https://tec.openplanner.team/stops/LkTkabi1"], ["https://tec.openplanner.team/stops/Cchparc5", "https://tec.openplanner.team/stops/Cchprun2"], ["https://tec.openplanner.team/stops/Bboncfv1", "https://tec.openplanner.team/stops/Bboncha2"], ["https://tec.openplanner.team/stops/H4wp152a", "https://tec.openplanner.team/stops/H4wp153b"], ["https://tec.openplanner.team/stops/Lhragri2", "https://tec.openplanner.team/stops/Lhrmura2"], ["https://tec.openplanner.team/stops/N513aua", "https://tec.openplanner.team/stops/N520ahb"], ["https://tec.openplanner.team/stops/LNCgene2", "https://tec.openplanner.team/stops/LNClila1"], ["https://tec.openplanner.team/stops/Cmldupu2", "https://tec.openplanner.team/stops/Cmlrang1"], ["https://tec.openplanner.team/stops/Lfhsoux1", "https://tec.openplanner.team/stops/Lfhvoye1"], ["https://tec.openplanner.team/stops/LHGbeur4", "https://tec.openplanner.team/stops/LOTcloe2"], ["https://tec.openplanner.team/stops/X942afa", "https://tec.openplanner.team/stops/X942afb"], ["https://tec.openplanner.team/stops/Btileco1", "https://tec.openplanner.team/stops/Btilhti2"], ["https://tec.openplanner.team/stops/N308acb", "https://tec.openplanner.team/stops/N308alb"], ["https://tec.openplanner.team/stops/LBAcere1", "https://tec.openplanner.team/stops/LHOgymn2"], ["https://tec.openplanner.team/stops/X985ada", "https://tec.openplanner.team/stops/X985adb"], ["https://tec.openplanner.team/stops/N506afb", "https://tec.openplanner.team/stops/N506aga"], ["https://tec.openplanner.team/stops/X730aeb", "https://tec.openplanner.team/stops/X730aga"], ["https://tec.openplanner.team/stops/H1au111b", "https://tec.openplanner.team/stops/H1au113a"], ["https://tec.openplanner.team/stops/Bgzdcen1", "https://tec.openplanner.team/stops/Bgzdcwa2"], ["https://tec.openplanner.team/stops/X637alb", "https://tec.openplanner.team/stops/X637amb"], ["https://tec.openplanner.team/stops/Lchsart2", "https://tec.openplanner.team/stops/Lchstat*"], ["https://tec.openplanner.team/stops/Lsnbrac3", "https://tec.openplanner.team/stops/Lsnbrac4"], ["https://tec.openplanner.team/stops/Bbsicul2", "https://tec.openplanner.team/stops/Bbsigaz1"], ["https://tec.openplanner.team/stops/X744aea", "https://tec.openplanner.team/stops/X745abb"], ["https://tec.openplanner.team/stops/N507adb", "https://tec.openplanner.team/stops/NL30aka"], ["https://tec.openplanner.team/stops/Btsllbv1", "https://tec.openplanner.team/stops/Btsllnd2"], ["https://tec.openplanner.team/stops/X872abb", "https://tec.openplanner.team/stops/X872adb"], ["https://tec.openplanner.team/stops/Cctjoue4", "https://tec.openplanner.team/stops/Cctjust2"], ["https://tec.openplanner.team/stops/NR10aaa", "https://tec.openplanner.team/stops/NR21aca"], ["https://tec.openplanner.team/stops/Bpergar1", "https://tec.openplanner.team/stops/Bpergar2"], ["https://tec.openplanner.team/stops/LDoeg--2", "https://tec.openplanner.team/stops/LHFwaut2"], ["https://tec.openplanner.team/stops/Csebasc1", "https://tec.openplanner.team/stops/Csebasc2"], ["https://tec.openplanner.team/stops/H4ty325a", "https://tec.openplanner.team/stops/H4ty340b"], ["https://tec.openplanner.team/stops/X731aea", "https://tec.openplanner.team/stops/X731afb"], ["https://tec.openplanner.team/stops/Ljubonf1", "https://tec.openplanner.team/stops/Ljufler2"], ["https://tec.openplanner.team/stops/X901aba", "https://tec.openplanner.team/stops/X901abb"], ["https://tec.openplanner.team/stops/Lmncasi2", "https://tec.openplanner.team/stops/Lmnsech1"], ["https://tec.openplanner.team/stops/N351atb", "https://tec.openplanner.team/stops/N351atc"], ["https://tec.openplanner.team/stops/LhGbahn4", "https://tec.openplanner.team/stops/LhSkape2"], ["https://tec.openplanner.team/stops/X631aaa", "https://tec.openplanner.team/stops/X645abb"], ["https://tec.openplanner.team/stops/H4ty264b", "https://tec.openplanner.team/stops/H4ty352a"], ["https://tec.openplanner.team/stops/H1bs110c", "https://tec.openplanner.team/stops/H1qp140a"], ["https://tec.openplanner.team/stops/LTIp%C3%A9pi1", "https://tec.openplanner.team/stops/LTIpres1"], ["https://tec.openplanner.team/stops/LbTmuhl2", "https://tec.openplanner.team/stops/LnIfrie2"], ["https://tec.openplanner.team/stops/H1qu129a", "https://tec.openplanner.team/stops/H1qu129b"], ["https://tec.openplanner.team/stops/Bjodcoi1", "https://tec.openplanner.team/stops/NR10aaa"], ["https://tec.openplanner.team/stops/X614aia", "https://tec.openplanner.team/stops/X623aia"], ["https://tec.openplanner.team/stops/X741aid", "https://tec.openplanner.team/stops/X741aja"], ["https://tec.openplanner.team/stops/X727aea", "https://tec.openplanner.team/stops/X748aca"], ["https://tec.openplanner.team/stops/X601aya", "https://tec.openplanner.team/stops/X601bra"], ["https://tec.openplanner.team/stops/LbUbisc1", "https://tec.openplanner.team/stops/LbUmolk2"], ["https://tec.openplanner.team/stops/LMeeg--1", "https://tec.openplanner.team/stops/LMemaza1"], ["https://tec.openplanner.team/stops/X636bfb", "https://tec.openplanner.team/stops/X636bgb"], ["https://tec.openplanner.team/stops/LHtdros1", "https://tec.openplanner.team/stops/LHtdros2"], ["https://tec.openplanner.team/stops/N141adb", "https://tec.openplanner.team/stops/N141apb"], ["https://tec.openplanner.team/stops/H1si151b", "https://tec.openplanner.team/stops/H1si163b"], ["https://tec.openplanner.team/stops/X617aha", "https://tec.openplanner.team/stops/X617ahb"], ["https://tec.openplanner.team/stops/Cbmpopr1", "https://tec.openplanner.team/stops/Cbmpopr2"], ["https://tec.openplanner.team/stops/Crajasm1", "https://tec.openplanner.team/stops/Crajasm2"], ["https://tec.openplanner.team/stops/Ccicloc2", "https://tec.openplanner.team/stops/Clvmesa2"], ["https://tec.openplanner.team/stops/X793aba", "https://tec.openplanner.team/stops/X793abb"], ["https://tec.openplanner.team/stops/Lmneg--1", "https://tec.openplanner.team/stops/Lmneg--2"], ["https://tec.openplanner.team/stops/N244ahb", "https://tec.openplanner.team/stops/N244awa"], ["https://tec.openplanner.team/stops/Cmcbriq3", "https://tec.openplanner.team/stops/Cmggthi2"], ["https://tec.openplanner.team/stops/LrAknop1", "https://tec.openplanner.team/stops/LrAneus1"], ["https://tec.openplanner.team/stops/H1ms266a", "https://tec.openplanner.team/stops/H1ms288b"], ["https://tec.openplanner.team/stops/Clodrio2", "https://tec.openplanner.team/stops/Clodupr2"], ["https://tec.openplanner.team/stops/X361aca", "https://tec.openplanner.team/stops/X362aba"], ["https://tec.openplanner.team/stops/Bhlvlou2", "https://tec.openplanner.team/stops/Blpgbat2"], ["https://tec.openplanner.team/stops/X616aea", "https://tec.openplanner.team/stops/X616ahb"], ["https://tec.openplanner.team/stops/H1fl141a", "https://tec.openplanner.team/stops/H1je219a"], ["https://tec.openplanner.team/stops/Blascvi2", "https://tec.openplanner.team/stops/Bohnpla2"], ["https://tec.openplanner.team/stops/X896agb", "https://tec.openplanner.team/stops/X898aga"], ["https://tec.openplanner.team/stops/Cprgran2", "https://tec.openplanner.team/stops/Cprrvil2"], ["https://tec.openplanner.team/stops/N229aea", "https://tec.openplanner.team/stops/N229aec"], ["https://tec.openplanner.team/stops/Cselait2", "https://tec.openplanner.team/stops/Csequew2"], ["https://tec.openplanner.team/stops/LFarhuy2", "https://tec.openplanner.team/stops/LWAaxhe1"], ["https://tec.openplanner.team/stops/Lghsimo1", "https://tec.openplanner.team/stops/Lghsimo4"], ["https://tec.openplanner.team/stops/X941aga", "https://tec.openplanner.team/stops/X949ala"], ["https://tec.openplanner.team/stops/LoEauto1", "https://tec.openplanner.team/stops/LoEauto2"], ["https://tec.openplanner.team/stops/N260aca", "https://tec.openplanner.team/stops/N260adb"], ["https://tec.openplanner.team/stops/Bchacen2", "https://tec.openplanner.team/stops/Bchapir2"], ["https://tec.openplanner.team/stops/H4pi131a", "https://tec.openplanner.team/stops/H4wp152b"], ["https://tec.openplanner.team/stops/Bwagpco1", "https://tec.openplanner.team/stops/Cwgmell3"], ["https://tec.openplanner.team/stops/Llgbarb2", "https://tec.openplanner.team/stops/Llgbavi1"], ["https://tec.openplanner.team/stops/NL76agb", "https://tec.openplanner.team/stops/NL77abb"], ["https://tec.openplanner.team/stops/N517aeb", "https://tec.openplanner.team/stops/N517agb"], ["https://tec.openplanner.team/stops/H2bh108a", "https://tec.openplanner.team/stops/H2fa112b"], ["https://tec.openplanner.team/stops/LAYcorn2", "https://tec.openplanner.team/stops/LFLcarr2"], ["https://tec.openplanner.team/stops/H1ne138b", "https://tec.openplanner.team/stops/H1ne139a"], ["https://tec.openplanner.team/stops/Bbchgod2", "https://tec.openplanner.team/stops/Bbchm382"], ["https://tec.openplanner.team/stops/LLSba6-2", "https://tec.openplanner.team/stops/LLSba9-2"], ["https://tec.openplanner.team/stops/N556aeb", "https://tec.openplanner.team/stops/N556afb"], ["https://tec.openplanner.team/stops/H2lc171a", "https://tec.openplanner.team/stops/H2lc171b"], ["https://tec.openplanner.team/stops/LHolone2", "https://tec.openplanner.team/stops/LHZec--2"], ["https://tec.openplanner.team/stops/Cchhopi3", "https://tec.openplanner.team/stops/CMjans1"], ["https://tec.openplanner.team/stops/LBevill2", "https://tec.openplanner.team/stops/LHNtonn1"], ["https://tec.openplanner.team/stops/X618aca", "https://tec.openplanner.team/stops/X619aca"], ["https://tec.openplanner.team/stops/X725aca", "https://tec.openplanner.team/stops/X725agb"], ["https://tec.openplanner.team/stops/Bnivfra2", "https://tec.openplanner.team/stops/Bnivrsh2"], ["https://tec.openplanner.team/stops/Bsdabja1", "https://tec.openplanner.team/stops/Bsdacab1"], ["https://tec.openplanner.team/stops/Lagpn6-1", "https://tec.openplanner.team/stops/Lstbota3"], ["https://tec.openplanner.team/stops/N538ahb", "https://tec.openplanner.team/stops/N538ajd"], ["https://tec.openplanner.team/stops/Ccopeti1", "https://tec.openplanner.team/stops/Ccopeti2"], ["https://tec.openplanner.team/stops/N117bcb", "https://tec.openplanner.team/stops/N117bcd"], ["https://tec.openplanner.team/stops/LhOholz2", "https://tec.openplanner.team/stops/LhOukat1"], ["https://tec.openplanner.team/stops/Bbuzeta2", "https://tec.openplanner.team/stops/Cobnive1"], ["https://tec.openplanner.team/stops/H1mb166a", "https://tec.openplanner.team/stops/H1mb168a"], ["https://tec.openplanner.team/stops/H4ft132b", "https://tec.openplanner.team/stops/H4ft136b"], ["https://tec.openplanner.team/stops/Bgermco2", "https://tec.openplanner.team/stops/NB33afa"], ["https://tec.openplanner.team/stops/LOVeg--1", "https://tec.openplanner.team/stops/LSochal1"], ["https://tec.openplanner.team/stops/Csasncb2", "https://tec.openplanner.team/stops/Csdbosq1"], ["https://tec.openplanner.team/stops/X995ada", "https://tec.openplanner.team/stops/X995adc"], ["https://tec.openplanner.team/stops/H1cv101a", "https://tec.openplanner.team/stops/H1et102a"], ["https://tec.openplanner.team/stops/X824aec", "https://tec.openplanner.team/stops/X824afa"], ["https://tec.openplanner.team/stops/N244aia", "https://tec.openplanner.team/stops/N244awa"], ["https://tec.openplanner.team/stops/Ccogrbu1", "https://tec.openplanner.team/stops/Ccosart4"], ["https://tec.openplanner.team/stops/H1em106a", "https://tec.openplanner.team/stops/H1em109a"], ["https://tec.openplanner.team/stops/X756acb", "https://tec.openplanner.team/stops/X757ama"], ["https://tec.openplanner.team/stops/N501gka", "https://tec.openplanner.team/stops/N501lfb"], ["https://tec.openplanner.team/stops/Cflfaub1", "https://tec.openplanner.team/stops/Cflsncb3"], ["https://tec.openplanner.team/stops/Bboseco1", "https://tec.openplanner.team/stops/Bhakmkr1"], ["https://tec.openplanner.team/stops/LHThall4", "https://tec.openplanner.team/stops/LHTmoul2"], ["https://tec.openplanner.team/stops/H1ju121a", "https://tec.openplanner.team/stops/H1ju121b"], ["https://tec.openplanner.team/stops/LbHzent2", "https://tec.openplanner.team/stops/LrUbrac3"], ["https://tec.openplanner.team/stops/Bmrqpla2", "https://tec.openplanner.team/stops/H1mk108c"], ["https://tec.openplanner.team/stops/Lboastr1", "https://tec.openplanner.team/stops/Lbooffe1"], ["https://tec.openplanner.team/stops/Lvepire1", "https://tec.openplanner.team/stops/Lvewaut1"], ["https://tec.openplanner.team/stops/Bclgfva1", "https://tec.openplanner.team/stops/Bgisman1"], ["https://tec.openplanner.team/stops/Lrccime3", "https://tec.openplanner.team/stops/Lvoplac2"], ["https://tec.openplanner.team/stops/X991aaa", "https://tec.openplanner.team/stops/X993abd"], ["https://tec.openplanner.team/stops/X649abb", "https://tec.openplanner.team/stops/X671aeb"], ["https://tec.openplanner.team/stops/Ladfran1", "https://tec.openplanner.team/stops/Ladlimi1"], ["https://tec.openplanner.team/stops/LATjaur1", "https://tec.openplanner.team/stops/LATmale2"], ["https://tec.openplanner.team/stops/N135adc", "https://tec.openplanner.team/stops/N135aka"], ["https://tec.openplanner.team/stops/H1gh165a", "https://tec.openplanner.team/stops/H1gh165c"], ["https://tec.openplanner.team/stops/X897aca", "https://tec.openplanner.team/stops/X897anb"], ["https://tec.openplanner.team/stops/N577aja", "https://tec.openplanner.team/stops/N577ajb"], ["https://tec.openplanner.team/stops/LPLheid1", "https://tec.openplanner.team/stops/LPLmonu1"], ["https://tec.openplanner.team/stops/X792abb", "https://tec.openplanner.team/stops/X793ana"], ["https://tec.openplanner.team/stops/LSPbalm1", "https://tec.openplanner.team/stops/LSPwarf1"], ["https://tec.openplanner.team/stops/N535ada", "https://tec.openplanner.team/stops/N535adb"], ["https://tec.openplanner.team/stops/N349aaa", "https://tec.openplanner.team/stops/N349acb"], ["https://tec.openplanner.team/stops/X999aoa", "https://tec.openplanner.team/stops/X999aub"], ["https://tec.openplanner.team/stops/Lmicoop3", "https://tec.openplanner.team/stops/Lmihale2"], ["https://tec.openplanner.team/stops/LRRelec1", "https://tec.openplanner.team/stops/LRRmanc2"], ["https://tec.openplanner.team/stops/N521aoa", "https://tec.openplanner.team/stops/N523aca"], ["https://tec.openplanner.team/stops/Bwatran1", "https://tec.openplanner.team/stops/Bwatras1"], ["https://tec.openplanner.team/stops/N521arb", "https://tec.openplanner.team/stops/N521aub"], ["https://tec.openplanner.team/stops/H1ba109b", "https://tec.openplanner.team/stops/H1ba115b"], ["https://tec.openplanner.team/stops/X636ama", "https://tec.openplanner.team/stops/X636bha"], ["https://tec.openplanner.team/stops/H4ty293a", "https://tec.openplanner.team/stops/H4ty353b"], ["https://tec.openplanner.team/stops/X342aha", "https://tec.openplanner.team/stops/X342ahb"], ["https://tec.openplanner.team/stops/Blmlgar1", "https://tec.openplanner.team/stops/Blmlgar2"], ["https://tec.openplanner.team/stops/LSJ38--2", "https://tec.openplanner.team/stops/LSJgrae2"], ["https://tec.openplanner.team/stops/H5el112a", "https://tec.openplanner.team/stops/H5el116a"], ["https://tec.openplanner.team/stops/H4ve131b", "https://tec.openplanner.team/stops/H4ve137a"], ["https://tec.openplanner.team/stops/X923aka", "https://tec.openplanner.team/stops/X923akb"], ["https://tec.openplanner.team/stops/Lprmana3", "https://tec.openplanner.team/stops/Lprmana4"], ["https://tec.openplanner.team/stops/Cwgdeba1", "https://tec.openplanner.team/stops/Cwgdeba2"], ["https://tec.openplanner.team/stops/N534atb", "https://tec.openplanner.team/stops/N534ava"], ["https://tec.openplanner.team/stops/Ccugilb1", "https://tec.openplanner.team/stops/Cflvxsa1"], ["https://tec.openplanner.team/stops/Clomart1", "https://tec.openplanner.team/stops/CMmari2"], ["https://tec.openplanner.team/stops/LhOukat1", "https://tec.openplanner.team/stops/LhOzent1"], ["https://tec.openplanner.team/stops/H4bf107a", "https://tec.openplanner.team/stops/H4bs114a"], ["https://tec.openplanner.team/stops/LBJlieg2", "https://tec.openplanner.team/stops/LBrec--2"], ["https://tec.openplanner.team/stops/Blaneli2", "https://tec.openplanner.team/stops/LWscona2"], ["https://tec.openplanner.team/stops/H1gr120a", "https://tec.openplanner.team/stops/H1gr122b"], ["https://tec.openplanner.team/stops/Cmecite1", "https://tec.openplanner.team/stops/Cmesncv1"], ["https://tec.openplanner.team/stops/N501ega", "https://tec.openplanner.team/stops/N501geb"], ["https://tec.openplanner.team/stops/Cmlbeau2", "https://tec.openplanner.team/stops/Cmlthym2"], ["https://tec.openplanner.team/stops/LTgjalh2", "https://tec.openplanner.team/stops/LTgsous2"], ["https://tec.openplanner.team/stops/X836aha", "https://tec.openplanner.team/stops/X836ahb"], ["https://tec.openplanner.team/stops/LvA12--4", "https://tec.openplanner.team/stops/LvAschw1"], ["https://tec.openplanner.team/stops/Bwatvco1", "https://tec.openplanner.team/stops/Bwatzod1"], ["https://tec.openplanner.team/stops/N508apa", "https://tec.openplanner.team/stops/N516aab"], ["https://tec.openplanner.team/stops/X601cva", "https://tec.openplanner.team/stops/X601cya"], ["https://tec.openplanner.team/stops/LsVlust1", "https://tec.openplanner.team/stops/LsVthom2"], ["https://tec.openplanner.team/stops/X886agb", "https://tec.openplanner.team/stops/X985afb"], ["https://tec.openplanner.team/stops/H4mt221a", "https://tec.openplanner.team/stops/H4ve137a"], ["https://tec.openplanner.team/stops/Bbsicul2", "https://tec.openplanner.team/stops/Blilgar1"], ["https://tec.openplanner.team/stops/LAvcani1", "https://tec.openplanner.team/stops/LAvrout1"], ["https://tec.openplanner.team/stops/H4ty282b", "https://tec.openplanner.team/stops/H4ty339a"], ["https://tec.openplanner.team/stops/X612aaa", "https://tec.openplanner.team/stops/X612aab"], ["https://tec.openplanner.team/stops/Cgxchea1", "https://tec.openplanner.team/stops/Cgxcime1"], ["https://tec.openplanner.team/stops/Balsnay1", "https://tec.openplanner.team/stops/Balsnie2"], ["https://tec.openplanner.team/stops/H2go113a", "https://tec.openplanner.team/stops/H2go115a"], ["https://tec.openplanner.team/stops/X824aba", "https://tec.openplanner.team/stops/X824ada"], ["https://tec.openplanner.team/stops/Bsgimor1", "https://tec.openplanner.team/stops/Bsgimor2"], ["https://tec.openplanner.team/stops/Cbfpauc2", "https://tec.openplanner.team/stops/NC24aja"], ["https://tec.openplanner.team/stops/N170aeb", "https://tec.openplanner.team/stops/N170agb"], ["https://tec.openplanner.team/stops/H2pr117b", "https://tec.openplanner.team/stops/H3st119a"], ["https://tec.openplanner.team/stops/N204aia", "https://tec.openplanner.team/stops/N205abb"], ["https://tec.openplanner.team/stops/X721aha", "https://tec.openplanner.team/stops/X721aib"], ["https://tec.openplanner.team/stops/H4ae132d", "https://tec.openplanner.team/stops/H4ea132b"], ["https://tec.openplanner.team/stops/N874aba", "https://tec.openplanner.team/stops/N874abb"], ["https://tec.openplanner.team/stops/X802aka", "https://tec.openplanner.team/stops/X802akb"], ["https://tec.openplanner.team/stops/H1wi157a", "https://tec.openplanner.team/stops/H1wi157c"], ["https://tec.openplanner.team/stops/N101agc", "https://tec.openplanner.team/stops/N101aua"], ["https://tec.openplanner.team/stops/H2hg147a", "https://tec.openplanner.team/stops/H2hg147b"], ["https://tec.openplanner.team/stops/Canvane2", "https://tec.openplanner.team/stops/H2an106d"], ["https://tec.openplanner.team/stops/Bbxlmid1", "https://tec.openplanner.team/stops/Bhalath1"], ["https://tec.openplanner.team/stops/X939aba", "https://tec.openplanner.team/stops/X939ada"], ["https://tec.openplanner.team/stops/LHggeer2", "https://tec.openplanner.team/stops/LHgpost2"], ["https://tec.openplanner.team/stops/Cjuledo2", "https://tec.openplanner.team/stops/Cjumall6"], ["https://tec.openplanner.team/stops/X948aab", "https://tec.openplanner.team/stops/X948ava"], ["https://tec.openplanner.team/stops/X639ada", "https://tec.openplanner.team/stops/X639apb"], ["https://tec.openplanner.team/stops/X898ahb", "https://tec.openplanner.team/stops/X898aib"], ["https://tec.openplanner.team/stops/N118anb", "https://tec.openplanner.team/stops/N118aza"], ["https://tec.openplanner.team/stops/LSMlier1", "https://tec.openplanner.team/stops/LSMlier2"], ["https://tec.openplanner.team/stops/H4rx141a", "https://tec.openplanner.team/stops/H4rx141b"], ["https://tec.openplanner.team/stops/Crccamp1", "https://tec.openplanner.team/stops/Crcgmah1"], ["https://tec.openplanner.team/stops/H2hp116a", "https://tec.openplanner.team/stops/H2ll181b"], ["https://tec.openplanner.team/stops/LXflong1", "https://tec.openplanner.team/stops/LXftche1"], ["https://tec.openplanner.team/stops/LPRbrou2", "https://tec.openplanner.team/stops/LPReg--1"], ["https://tec.openplanner.team/stops/X994aka", "https://tec.openplanner.team/stops/X994akb"], ["https://tec.openplanner.team/stops/N137aea", "https://tec.openplanner.team/stops/N137aec"], ["https://tec.openplanner.team/stops/X636awb", "https://tec.openplanner.team/stops/X636bbb"], ["https://tec.openplanner.team/stops/N516ana", "https://tec.openplanner.team/stops/N516anb"], ["https://tec.openplanner.team/stops/Cbetrie1", "https://tec.openplanner.team/stops/N161aeb"], ["https://tec.openplanner.team/stops/X796aab", "https://tec.openplanner.team/stops/X986abb"], ["https://tec.openplanner.team/stops/X908aab", "https://tec.openplanner.team/stops/X908ama"], ["https://tec.openplanner.team/stops/X921ahb", "https://tec.openplanner.team/stops/X921aib"], ["https://tec.openplanner.team/stops/N576ajb", "https://tec.openplanner.team/stops/N576ala"], ["https://tec.openplanner.team/stops/H4ta121a", "https://tec.openplanner.team/stops/H4ta132a"], ["https://tec.openplanner.team/stops/X595aca", "https://tec.openplanner.team/stops/X595ada"], ["https://tec.openplanner.team/stops/LMObouh2", "https://tec.openplanner.team/stops/LMOfrel1"], ["https://tec.openplanner.team/stops/Bnstmig1", "https://tec.openplanner.team/stops/Bnstmig2"], ["https://tec.openplanner.team/stops/LRObarr1", "https://tec.openplanner.team/stops/LROrtba2"], ["https://tec.openplanner.team/stops/Llgbavi1", "https://tec.openplanner.team/stops/Llgbavi3"], ["https://tec.openplanner.team/stops/Cvthoeu1", "https://tec.openplanner.team/stops/Cvtvail2"], ["https://tec.openplanner.team/stops/LTiec--1", "https://tec.openplanner.team/stops/LTieg--2"], ["https://tec.openplanner.team/stops/N550abd", "https://tec.openplanner.team/stops/N550ada"], ["https://tec.openplanner.team/stops/Lannico2", "https://tec.openplanner.team/stops/Lglsana1"], ["https://tec.openplanner.team/stops/X637agb", "https://tec.openplanner.team/stops/X637agc"], ["https://tec.openplanner.team/stops/Bnilcha1", "https://tec.openplanner.team/stops/Bnilpor3"], ["https://tec.openplanner.team/stops/Bettars2", "https://tec.openplanner.team/stops/Bixepla2"], ["https://tec.openplanner.team/stops/Cmyplac2", "https://tec.openplanner.team/stops/Cmypost1"], ["https://tec.openplanner.team/stops/LAuchau1", "https://tec.openplanner.team/stops/LSDgris1"], ["https://tec.openplanner.team/stops/LWarema1", "https://tec.openplanner.team/stops/LWastei1"], ["https://tec.openplanner.team/stops/N118aca", "https://tec.openplanner.team/stops/N118acd"], ["https://tec.openplanner.team/stops/N245acb", "https://tec.openplanner.team/stops/N340afa"], ["https://tec.openplanner.team/stops/N543bxa", "https://tec.openplanner.team/stops/N543bya"], ["https://tec.openplanner.team/stops/X952agb", "https://tec.openplanner.team/stops/X952ahb"], ["https://tec.openplanner.team/stops/Clbchlo1", "https://tec.openplanner.team/stops/Clbchlo2"], ["https://tec.openplanner.team/stops/N528aaa", "https://tec.openplanner.team/stops/N528aab"], ["https://tec.openplanner.team/stops/Crapaep1", "https://tec.openplanner.team/stops/Crasocq1"], ["https://tec.openplanner.team/stops/N540aca", "https://tec.openplanner.team/stops/N540acd"], ["https://tec.openplanner.team/stops/Cfrgare1", "https://tec.openplanner.team/stops/Cfrgare4"], ["https://tec.openplanner.team/stops/LHupont1", "https://tec.openplanner.team/stops/LHurobi1"], ["https://tec.openplanner.team/stops/H5qu143a", "https://tec.openplanner.team/stops/H5qu143d"], ["https://tec.openplanner.team/stops/N538aob", "https://tec.openplanner.team/stops/N538asb"], ["https://tec.openplanner.team/stops/Cmtchas1", "https://tec.openplanner.team/stops/Cmtprey1"], ["https://tec.openplanner.team/stops/X633aha", "https://tec.openplanner.team/stops/X633ahb"], ["https://tec.openplanner.team/stops/H4wn123a", "https://tec.openplanner.team/stops/H4wn126a"], ["https://tec.openplanner.team/stops/X887aaa", "https://tec.openplanner.team/stops/X890afa"], ["https://tec.openplanner.team/stops/LREgare2", "https://tec.openplanner.team/stops/LREgrot3"], ["https://tec.openplanner.team/stops/N166aaa", "https://tec.openplanner.team/stops/N565aea"], ["https://tec.openplanner.team/stops/H4lz125b", "https://tec.openplanner.team/stops/H4lz156b"], ["https://tec.openplanner.team/stops/Buccmer2", "https://tec.openplanner.team/stops/Buccobs2"], ["https://tec.openplanner.team/stops/Buccmer1", "https://tec.openplanner.team/stops/Buccobs1"], ["https://tec.openplanner.team/stops/Ccaegli4", "https://tec.openplanner.team/stops/Cmregli4"], ["https://tec.openplanner.team/stops/LMApape1", "https://tec.openplanner.team/stops/LMAwavr2"], ["https://tec.openplanner.team/stops/Llgchat1", "https://tec.openplanner.team/stops/Llgmaus2"], ["https://tec.openplanner.team/stops/Ctuplac3", "https://tec.openplanner.team/stops/NC28aha"], ["https://tec.openplanner.team/stops/Lpemata2", "https://tec.openplanner.team/stops/Lpeptwa2"], ["https://tec.openplanner.team/stops/Clibrun1", "https://tec.openplanner.team/stops/Ctmwaut2"], ["https://tec.openplanner.team/stops/H1gr118a", "https://tec.openplanner.team/stops/H1gr118b"], ["https://tec.openplanner.team/stops/X756aab", "https://tec.openplanner.team/stops/X757aca"], ["https://tec.openplanner.team/stops/LHVgoro1", "https://tec.openplanner.team/stops/Lmnchal2"], ["https://tec.openplanner.team/stops/N501hwa", "https://tec.openplanner.team/stops/N501iea"], ["https://tec.openplanner.team/stops/LDLgran2", "https://tec.openplanner.team/stops/LDLgran4"], ["https://tec.openplanner.team/stops/X663axb", "https://tec.openplanner.team/stops/X663aya"], ["https://tec.openplanner.team/stops/X937ada", "https://tec.openplanner.team/stops/X937aib"], ["https://tec.openplanner.team/stops/Crachap1", "https://tec.openplanner.team/stops/Crasocq2"], ["https://tec.openplanner.team/stops/LbTschw1", "https://tec.openplanner.team/stops/LbTschw2"], ["https://tec.openplanner.team/stops/N501bsb", "https://tec.openplanner.team/stops/N501bta"], ["https://tec.openplanner.team/stops/LbThutt1", "https://tec.openplanner.team/stops/LbTkreu1"], ["https://tec.openplanner.team/stops/H5at115a", "https://tec.openplanner.team/stops/H5at118a"], ["https://tec.openplanner.team/stops/Louegla2", "https://tec.openplanner.team/stops/Loutroi1"], ["https://tec.openplanner.team/stops/N508afa", "https://tec.openplanner.team/stops/N516aab"], ["https://tec.openplanner.team/stops/H1ht122a", "https://tec.openplanner.team/stops/H1ht128a"], ["https://tec.openplanner.team/stops/LAUcarr1", "https://tec.openplanner.team/stops/LFdeg--3"], ["https://tec.openplanner.team/stops/LFPho8a1", "https://tec.openplanner.team/stops/LWRheyd2"], ["https://tec.openplanner.team/stops/LTAbran1", "https://tec.openplanner.team/stops/LTHmont2"], ["https://tec.openplanner.team/stops/H1mk109b", "https://tec.openplanner.team/stops/H1mk117a"], ["https://tec.openplanner.team/stops/N532ana", "https://tec.openplanner.team/stops/N574aeb"], ["https://tec.openplanner.team/stops/Lannico1", "https://tec.openplanner.team/stops/Lannico4"], ["https://tec.openplanner.team/stops/Bbaltba1", "https://tec.openplanner.team/stops/N584aha"], ["https://tec.openplanner.team/stops/X897abb", "https://tec.openplanner.team/stops/X897aqa"], ["https://tec.openplanner.team/stops/X897afb", "https://tec.openplanner.team/stops/X897aga"], ["https://tec.openplanner.team/stops/LmRh%C3%B6fe1", "https://tec.openplanner.team/stops/LmRkape1"], ["https://tec.openplanner.team/stops/H1ch141a", "https://tec.openplanner.team/stops/H1ch143b"], ["https://tec.openplanner.team/stops/Llgavro2", "https://tec.openplanner.team/stops/Llgec--1"], ["https://tec.openplanner.team/stops/Lhuleke1", "https://tec.openplanner.team/stops/Lvegend1"], ["https://tec.openplanner.team/stops/Bottcba1", "https://tec.openplanner.team/stops/Bottppa2"], ["https://tec.openplanner.team/stops/Blingar2", "https://tec.openplanner.team/stops/Blingar4"], ["https://tec.openplanner.team/stops/X605acb", "https://tec.openplanner.team/stops/X606aba"], ["https://tec.openplanner.team/stops/Cflcent1", "https://tec.openplanner.team/stops/Cflchel4"], ["https://tec.openplanner.team/stops/Csepote2", "https://tec.openplanner.team/stops/Csesabo1"], ["https://tec.openplanner.team/stops/H4ty405a", "https://tec.openplanner.team/stops/H4ty405b"], ["https://tec.openplanner.team/stops/H4ga152a", "https://tec.openplanner.team/stops/H4ga168a"], ["https://tec.openplanner.team/stops/NL37aab", "https://tec.openplanner.team/stops/NL37abb"], ["https://tec.openplanner.team/stops/LLrbuis2", "https://tec.openplanner.team/stops/LLrpape2"], ["https://tec.openplanner.team/stops/Beclbse1", "https://tec.openplanner.team/stops/Beclesp1"], ["https://tec.openplanner.team/stops/Bchgbar2", "https://tec.openplanner.team/stops/Blontry2"], ["https://tec.openplanner.team/stops/X831aba", "https://tec.openplanner.team/stops/X833abb"], ["https://tec.openplanner.team/stops/LKmcite2", "https://tec.openplanner.team/stops/LOdbuis1"], ["https://tec.openplanner.team/stops/LAOeg--2", "https://tec.openplanner.team/stops/LAOpres2"], ["https://tec.openplanner.team/stops/N517aba", "https://tec.openplanner.team/stops/N517aea"], ["https://tec.openplanner.team/stops/H1ge151a", "https://tec.openplanner.team/stops/H1ge151b"], ["https://tec.openplanner.team/stops/N539bfa", "https://tec.openplanner.team/stops/N539bfb"], ["https://tec.openplanner.team/stops/LOUbarr2", "https://tec.openplanner.team/stops/LOUbarr3"], ["https://tec.openplanner.team/stops/H4ea128b", "https://tec.openplanner.team/stops/H4ea131b"], ["https://tec.openplanner.team/stops/Lfhhoul2", "https://tec.openplanner.team/stops/Lfhncha1"], ["https://tec.openplanner.team/stops/H4co133b", "https://tec.openplanner.team/stops/H4co142a"], ["https://tec.openplanner.team/stops/N515anb", "https://tec.openplanner.team/stops/N516aja"], ["https://tec.openplanner.team/stops/H1bu140a", "https://tec.openplanner.team/stops/H1bu143a"], ["https://tec.openplanner.team/stops/X659aba", "https://tec.openplanner.team/stops/X659acb"], ["https://tec.openplanner.team/stops/H4ru240a", "https://tec.openplanner.team/stops/H4ty275a"], ["https://tec.openplanner.team/stops/LOTcloe1", "https://tec.openplanner.team/stops/LXhvanh1"], ["https://tec.openplanner.team/stops/LSTchen1", "https://tec.openplanner.team/stops/LSTmast2"], ["https://tec.openplanner.team/stops/Ccyga8", "https://tec.openplanner.team/stops/NH01aca"], ["https://tec.openplanner.team/stops/Cgochfe1", "https://tec.openplanner.team/stops/Cgoetun1"], ["https://tec.openplanner.team/stops/Cchdagn2", "https://tec.openplanner.team/stops/Cchriga2"], ["https://tec.openplanner.team/stops/Ccocroi1", "https://tec.openplanner.team/stops/Csocime2"], ["https://tec.openplanner.team/stops/Lgrclin4", "https://tec.openplanner.team/stops/Lvccime2"], ["https://tec.openplanner.team/stops/Lbrboul1", "https://tec.openplanner.team/stops/Lbrfoid4"], ["https://tec.openplanner.team/stops/LESflag1", "https://tec.openplanner.team/stops/LPOecol2"], ["https://tec.openplanner.team/stops/N525acb", "https://tec.openplanner.team/stops/N525bab"], ["https://tec.openplanner.team/stops/LMEcour1", "https://tec.openplanner.team/stops/LMEense1"], ["https://tec.openplanner.team/stops/Lchsaeg1", "https://tec.openplanner.team/stops/LSRbouh2"], ["https://tec.openplanner.team/stops/LWAclos1", "https://tec.openplanner.team/stops/LWAlpre1"], ["https://tec.openplanner.team/stops/H1al108a", "https://tec.openplanner.team/stops/H1al108b"], ["https://tec.openplanner.team/stops/Lchplai2", "https://tec.openplanner.team/stops/Lchtche1"], ["https://tec.openplanner.team/stops/X662aqb", "https://tec.openplanner.team/stops/X662arb"], ["https://tec.openplanner.team/stops/H5qu143c", "https://tec.openplanner.team/stops/H5qu182a"], ["https://tec.openplanner.team/stops/H2lh124a", "https://tec.openplanner.team/stops/H2lh124b"], ["https://tec.openplanner.team/stops/LCSfagn2", "https://tec.openplanner.team/stops/LCShoux1"], ["https://tec.openplanner.team/stops/H1el132b", "https://tec.openplanner.team/stops/H1mh112a"], ["https://tec.openplanner.team/stops/X601bnb", "https://tec.openplanner.team/stops/X601dea"], ["https://tec.openplanner.team/stops/Bwatgar1", "https://tec.openplanner.team/stops/Bwatgar3"], ["https://tec.openplanner.team/stops/LETeg--2", "https://tec.openplanner.team/stops/LETtemp2"], ["https://tec.openplanner.team/stops/N547aaa", "https://tec.openplanner.team/stops/N547aab"], ["https://tec.openplanner.team/stops/Bborbif2", "https://tec.openplanner.team/stops/Bborche1"], ["https://tec.openplanner.team/stops/H4mo177a", "https://tec.openplanner.team/stops/H4mo185a"], ["https://tec.openplanner.team/stops/Loucorn1", "https://tec.openplanner.team/stops/Loucorn2"], ["https://tec.openplanner.team/stops/N211aha", "https://tec.openplanner.team/stops/N211aza"], ["https://tec.openplanner.team/stops/H1ba112b", "https://tec.openplanner.team/stops/H1si164a"], ["https://tec.openplanner.team/stops/Llgbavi3", "https://tec.openplanner.team/stops/Llgsime2"], ["https://tec.openplanner.team/stops/H4lp126b", "https://tec.openplanner.team/stops/H4pe125a"], ["https://tec.openplanner.team/stops/X713aia", "https://tec.openplanner.team/stops/X713aja"], ["https://tec.openplanner.team/stops/Lch179-2", "https://tec.openplanner.team/stops/Lchcomm2"], ["https://tec.openplanner.team/stops/LAWgill1", "https://tec.openplanner.team/stops/Lghlogi2"], ["https://tec.openplanner.team/stops/H2sb226a", "https://tec.openplanner.team/stops/H2sb242a"], ["https://tec.openplanner.team/stops/LmYkirc2", "https://tec.openplanner.team/stops/LvAschw2"], ["https://tec.openplanner.team/stops/Lfhdonn2", "https://tec.openplanner.team/stops/Lseegva1"], ["https://tec.openplanner.team/stops/N113afa", "https://tec.openplanner.team/stops/N114aab"], ["https://tec.openplanner.team/stops/H4mx119a", "https://tec.openplanner.team/stops/H4mx119b"], ["https://tec.openplanner.team/stops/N558anb", "https://tec.openplanner.team/stops/NL72aca"], ["https://tec.openplanner.team/stops/Crobass1", "https://tec.openplanner.team/stops/Crojume1"], ["https://tec.openplanner.team/stops/N120abd", "https://tec.openplanner.team/stops/N302ada"], ["https://tec.openplanner.team/stops/LPTeg--2", "https://tec.openplanner.team/stops/X750aza"], ["https://tec.openplanner.team/stops/Bhaawdr2", "https://tec.openplanner.team/stops/Bhmmjco1"], ["https://tec.openplanner.team/stops/Cgrchea2", "https://tec.openplanner.team/stops/Cgrsaul2"], ["https://tec.openplanner.team/stops/X616ahb", "https://tec.openplanner.team/stops/X617adb"], ["https://tec.openplanner.team/stops/LlgLAMB1", "https://tec.openplanner.team/stops/LlgLEOP2"], ["https://tec.openplanner.team/stops/Bosqcim1", "https://tec.openplanner.team/stops/Bosqpco2"], ["https://tec.openplanner.team/stops/Bcseaba2", "https://tec.openplanner.team/stops/Bcseche1"], ["https://tec.openplanner.team/stops/Bcsecar1", "https://tec.openplanner.team/stops/Bmoucnd1"], ["https://tec.openplanner.team/stops/Lve-isi2", "https://tec.openplanner.team/stops/Lvejeha2"], ["https://tec.openplanner.team/stops/Clpalli2", "https://tec.openplanner.team/stops/Clpnapo2"], ["https://tec.openplanner.team/stops/LGDgdou2", "https://tec.openplanner.team/stops/LGmloti2"], ["https://tec.openplanner.team/stops/Ccutrav1", "https://tec.openplanner.team/stops/Ccutrav2"], ["https://tec.openplanner.team/stops/Llmdavi1", "https://tec.openplanner.team/stops/Llmdavi2"], ["https://tec.openplanner.team/stops/H2bh106b", "https://tec.openplanner.team/stops/H2bh115a"], ["https://tec.openplanner.team/stops/N155afc", "https://tec.openplanner.team/stops/N155afd"], ["https://tec.openplanner.team/stops/Llgabat1", "https://tec.openplanner.team/stops/Llgarmu3"], ["https://tec.openplanner.team/stops/N106ana", "https://tec.openplanner.team/stops/N106anb"], ["https://tec.openplanner.team/stops/H4ga155b", "https://tec.openplanner.team/stops/H4ga170a"], ["https://tec.openplanner.team/stops/Ljuchap2", "https://tec.openplanner.team/stops/Ljulieg2"], ["https://tec.openplanner.team/stops/Brsggde1", "https://tec.openplanner.team/stops/Brsgpbo2"], ["https://tec.openplanner.team/stops/LWDmass2", "https://tec.openplanner.team/stops/LWDsieg2"], ["https://tec.openplanner.team/stops/X725bab", "https://tec.openplanner.team/stops/X725bca"], ["https://tec.openplanner.team/stops/N232ata", "https://tec.openplanner.team/stops/N232aza"], ["https://tec.openplanner.team/stops/H4cw106a", "https://tec.openplanner.team/stops/H4lz163a"], ["https://tec.openplanner.team/stops/N501cda", "https://tec.openplanner.team/stops/N501cdb"], ["https://tec.openplanner.team/stops/X922alb", "https://tec.openplanner.team/stops/X942afb"], ["https://tec.openplanner.team/stops/Lagtilf2", "https://tec.openplanner.team/stops/Lagviad1"], ["https://tec.openplanner.team/stops/H2hg269b", "https://tec.openplanner.team/stops/H2hg272b"], ["https://tec.openplanner.team/stops/H1ho124a", "https://tec.openplanner.team/stops/H1ho130b"], ["https://tec.openplanner.team/stops/LTgbalm1", "https://tec.openplanner.team/stops/LTgchar7"], ["https://tec.openplanner.team/stops/N222aca", "https://tec.openplanner.team/stops/N222aeb"], ["https://tec.openplanner.team/stops/H1fr107d", "https://tec.openplanner.team/stops/H1fr123a"], ["https://tec.openplanner.team/stops/LSegott2", "https://tec.openplanner.team/stops/LSerout2"], ["https://tec.openplanner.team/stops/LGHplai1", "https://tec.openplanner.team/stops/LTPwann1"], ["https://tec.openplanner.team/stops/Baegpon1", "https://tec.openplanner.team/stops/NR38aeb"], ["https://tec.openplanner.team/stops/LrEkais3", "https://tec.openplanner.team/stops/Ltheg--2"], ["https://tec.openplanner.team/stops/Blemkap1", "https://tec.openplanner.team/stops/Blemwob1"], ["https://tec.openplanner.team/stops/Lbrcygn1", "https://tec.openplanner.team/stops/Lbrgrot1"], ["https://tec.openplanner.team/stops/N117ana", "https://tec.openplanner.team/stops/N117bbb"], ["https://tec.openplanner.team/stops/H3bi106a", "https://tec.openplanner.team/stops/H3bi113b"], ["https://tec.openplanner.team/stops/X760aeb", "https://tec.openplanner.team/stops/X760aga"], ["https://tec.openplanner.team/stops/N241aca", "https://tec.openplanner.team/stops/N241acb"], ["https://tec.openplanner.team/stops/N518aba", "https://tec.openplanner.team/stops/N518abb"], ["https://tec.openplanner.team/stops/X927aab", "https://tec.openplanner.team/stops/X927ada"], ["https://tec.openplanner.team/stops/Cmlasie2", "https://tec.openplanner.team/stops/Cmlbulp3"], ["https://tec.openplanner.team/stops/N116aac", "https://tec.openplanner.team/stops/N116aad"], ["https://tec.openplanner.team/stops/LHUdeni1", "https://tec.openplanner.team/stops/LHUpsar2"], ["https://tec.openplanner.team/stops/Bnivh%C3%B4p2", "https://tec.openplanner.team/stops/Bnivsoi1"], ["https://tec.openplanner.team/stops/Ljucano1", "https://tec.openplanner.team/stops/Ljuetie3"], ["https://tec.openplanner.team/stops/H1hh111a", "https://tec.openplanner.team/stops/H1hh114b"], ["https://tec.openplanner.team/stops/H1ba101b", "https://tec.openplanner.team/stops/H1te174a"], ["https://tec.openplanner.team/stops/NH01aqa", "https://tec.openplanner.team/stops/NH01ara"], ["https://tec.openplanner.team/stops/H4fr141a", "https://tec.openplanner.team/stops/H4fr143a"], ["https://tec.openplanner.team/stops/Lvebiol1", "https://tec.openplanner.team/stops/Lvebiol2"], ["https://tec.openplanner.team/stops/H1bb146a", "https://tec.openplanner.team/stops/H1do121a"], ["https://tec.openplanner.team/stops/H4bx167a", "https://tec.openplanner.team/stops/H4te413b"], ["https://tec.openplanner.team/stops/Cmyecur1", "https://tec.openplanner.team/stops/Cmygrbr4"], ["https://tec.openplanner.team/stops/N118acb", "https://tec.openplanner.team/stops/N118aha"], ["https://tec.openplanner.team/stops/LFMkrut1", "https://tec.openplanner.team/stops/LFMkrut4"], ["https://tec.openplanner.team/stops/Lemarde1", "https://tec.openplanner.team/stops/Lemhuet2"], ["https://tec.openplanner.team/stops/X876aab", "https://tec.openplanner.team/stops/X876acb"], ["https://tec.openplanner.team/stops/N160aab", "https://tec.openplanner.team/stops/N160afb"], ["https://tec.openplanner.team/stops/Bbuzcom2", "https://tec.openplanner.team/stops/Bnivn971"], ["https://tec.openplanner.team/stops/LBscasi1", "https://tec.openplanner.team/stops/NL72aab"], ["https://tec.openplanner.team/stops/X747aja", "https://tec.openplanner.team/stops/X747ajb"], ["https://tec.openplanner.team/stops/Cmoecol1", "https://tec.openplanner.team/stops/Cmoecol2"], ["https://tec.openplanner.team/stops/H1le117a", "https://tec.openplanner.team/stops/H1le118b"], ["https://tec.openplanner.team/stops/Bwatbca2", "https://tec.openplanner.team/stops/Bwatcro1"], ["https://tec.openplanner.team/stops/Lveharm1", "https://tec.openplanner.team/stops/Lvethea2"], ["https://tec.openplanner.team/stops/LLxcbr-1", "https://tec.openplanner.team/stops/LLxnive2"], ["https://tec.openplanner.team/stops/H1wg127a", "https://tec.openplanner.team/stops/H1wg127b"], ["https://tec.openplanner.team/stops/N101aia", "https://tec.openplanner.team/stops/N101ama"], ["https://tec.openplanner.team/stops/X636bab", "https://tec.openplanner.team/stops/X649aab"], ["https://tec.openplanner.team/stops/LEBdoct1", "https://tec.openplanner.team/stops/LEBmoul1"], ["https://tec.openplanner.team/stops/X897acb", "https://tec.openplanner.team/stops/X897aia"], ["https://tec.openplanner.team/stops/N520abb", "https://tec.openplanner.team/stops/N520aca"], ["https://tec.openplanner.team/stops/X986aga", "https://tec.openplanner.team/stops/X986aka"], ["https://tec.openplanner.team/stops/LDObran1", "https://tec.openplanner.team/stops/LDOdavi1"], ["https://tec.openplanner.team/stops/H1ba101b", "https://tec.openplanner.team/stops/H1ba115b"], ["https://tec.openplanner.team/stops/Ctubpos1", "https://tec.openplanner.team/stops/Ctucamb1"], ["https://tec.openplanner.team/stops/LMNgare2", "https://tec.openplanner.team/stops/LMNgend1"], ["https://tec.openplanner.team/stops/N501hrb", "https://tec.openplanner.team/stops/N501ita"], ["https://tec.openplanner.team/stops/X820ada", "https://tec.openplanner.team/stops/X820agb"], ["https://tec.openplanner.team/stops/Btubga01", "https://tec.openplanner.team/stops/Btubga02"], ["https://tec.openplanner.team/stops/Lengran2", "https://tec.openplanner.team/stops/Lenmivi*"], ["https://tec.openplanner.team/stops/H4mv193a", "https://tec.openplanner.team/stops/H4va232a"], ["https://tec.openplanner.team/stops/LMubras1", "https://tec.openplanner.team/stops/LMucarr3"], ["https://tec.openplanner.team/stops/N550ajb", "https://tec.openplanner.team/stops/N550ala"], ["https://tec.openplanner.team/stops/Bbst4br1", "https://tec.openplanner.team/stops/Bbst4br4"], ["https://tec.openplanner.team/stops/N507aab", "https://tec.openplanner.team/stops/N507aac"], ["https://tec.openplanner.team/stops/N286aba", "https://tec.openplanner.team/stops/N287aaa"], ["https://tec.openplanner.team/stops/Cfrgare4", "https://tec.openplanner.team/stops/Cfrgivr1"], ["https://tec.openplanner.team/stops/Crglyre1", "https://tec.openplanner.team/stops/Crglyre2"], ["https://tec.openplanner.team/stops/X780aca", "https://tec.openplanner.team/stops/X780acb"], ["https://tec.openplanner.team/stops/Bcrngat2", "https://tec.openplanner.team/stops/Bcrnpla4"], ["https://tec.openplanner.team/stops/X802ana", "https://tec.openplanner.team/stops/X802aza"], ["https://tec.openplanner.team/stops/Lcacaps1", "https://tec.openplanner.team/stops/LNipla3"], ["https://tec.openplanner.team/stops/H4hx110a", "https://tec.openplanner.team/stops/H4hx116a"], ["https://tec.openplanner.team/stops/H1ho132b", "https://tec.openplanner.team/stops/H1ho144a"], ["https://tec.openplanner.team/stops/LVLf10-1", "https://tec.openplanner.team/stops/LVLgotr4"], ["https://tec.openplanner.team/stops/H1fa117a", "https://tec.openplanner.team/stops/H1fa120a"], ["https://tec.openplanner.team/stops/NC23afa", "https://tec.openplanner.team/stops/NC23aga"], ["https://tec.openplanner.team/stops/LLiforg2", "https://tec.openplanner.team/stops/LLirout1"], ["https://tec.openplanner.team/stops/Lvieg--1", "https://tec.openplanner.team/stops/Lvimc--1"], ["https://tec.openplanner.team/stops/Botteco1", "https://tec.openplanner.team/stops/Bottpar1"], ["https://tec.openplanner.team/stops/X617acb", "https://tec.openplanner.team/stops/X696ala"], ["https://tec.openplanner.team/stops/Bnstlna2", "https://tec.openplanner.team/stops/H3br100b"], ["https://tec.openplanner.team/stops/X739ala", "https://tec.openplanner.team/stops/X771aaa"], ["https://tec.openplanner.team/stops/N101ada", "https://tec.openplanner.team/stops/N101adc"], ["https://tec.openplanner.team/stops/LVLecco1", "https://tec.openplanner.team/stops/LVLm10-2"], ["https://tec.openplanner.team/stops/H3th131b", "https://tec.openplanner.team/stops/H3th135e"], ["https://tec.openplanner.team/stops/Cwgmutu1", "https://tec.openplanner.team/stops/Cwgrans1"], ["https://tec.openplanner.team/stops/LFOchab2", "https://tec.openplanner.team/stops/LFOcomb3"], ["https://tec.openplanner.team/stops/X991ada", "https://tec.openplanner.team/stops/X991akb"], ["https://tec.openplanner.team/stops/N506aza", "https://tec.openplanner.team/stops/N506bja"], ["https://tec.openplanner.team/stops/Bohnrsc2", "https://tec.openplanner.team/stops/Bwatgge2"], ["https://tec.openplanner.team/stops/N574aaa", "https://tec.openplanner.team/stops/N574aab"], ["https://tec.openplanner.team/stops/H4rm111b", "https://tec.openplanner.team/stops/H4ta120b"], ["https://tec.openplanner.team/stops/Bjodcad1", "https://tec.openplanner.team/stops/Bjodcad2"], ["https://tec.openplanner.team/stops/N525anb", "https://tec.openplanner.team/stops/N526acb"], ["https://tec.openplanner.team/stops/LBLcalv3", "https://tec.openplanner.team/stops/LCEinst2"], ["https://tec.openplanner.team/stops/LNOsedo2", "https://tec.openplanner.team/stops/LQafond2"], ["https://tec.openplanner.team/stops/Cgoetun3", "https://tec.openplanner.team/stops/Cgopier3"], ["https://tec.openplanner.team/stops/Cjumall2", "https://tec.openplanner.team/stops/Cjuvign2"], ["https://tec.openplanner.team/stops/Lstchu-2", "https://tec.openplanner.team/stops/LTIsupe1"], ["https://tec.openplanner.team/stops/LeUdepo2", "https://tec.openplanner.team/stops/LeUlasc1"], ["https://tec.openplanner.team/stops/H3so161b", "https://tec.openplanner.team/stops/H3so179a"], ["https://tec.openplanner.team/stops/Cobmara1", "https://tec.openplanner.team/stops/Cobmara2"], ["https://tec.openplanner.team/stops/H1en105a", "https://tec.openplanner.team/stops/H1en106b"], ["https://tec.openplanner.team/stops/N151aaa", "https://tec.openplanner.team/stops/N151aab"], ["https://tec.openplanner.team/stops/X901aba", "https://tec.openplanner.team/stops/X901bsa"], ["https://tec.openplanner.team/stops/Cfocorn1", "https://tec.openplanner.team/stops/Cforpet1"], ["https://tec.openplanner.team/stops/X736aaa", "https://tec.openplanner.team/stops/X736aba"], ["https://tec.openplanner.team/stops/H1ag107b", "https://tec.openplanner.team/stops/H1an100b"], ["https://tec.openplanner.team/stops/X818anb", "https://tec.openplanner.team/stops/X818awb"], ["https://tec.openplanner.team/stops/LeLdorf2", "https://tec.openplanner.team/stops/LwR129-2"], ["https://tec.openplanner.team/stops/H4ce100b", "https://tec.openplanner.team/stops/H4ve132a"], ["https://tec.openplanner.team/stops/N201apb", "https://tec.openplanner.team/stops/N201awb"], ["https://tec.openplanner.team/stops/N348aab", "https://tec.openplanner.team/stops/N348adb"], ["https://tec.openplanner.team/stops/Ljelexh1", "https://tec.openplanner.team/stops/Ljeorda1"], ["https://tec.openplanner.team/stops/H4mv193a", "https://tec.openplanner.team/stops/H4mv196b"], ["https://tec.openplanner.team/stops/Lsn184-1", "https://tec.openplanner.team/stops/Lsnhoco1"], ["https://tec.openplanner.team/stops/H2ch100b", "https://tec.openplanner.team/stops/H2ch125a"], ["https://tec.openplanner.team/stops/N519akb", "https://tec.openplanner.team/stops/N525akb"], ["https://tec.openplanner.team/stops/N501ddb", "https://tec.openplanner.team/stops/N528aja"], ["https://tec.openplanner.team/stops/Brixpje2", "https://tec.openplanner.team/stops/Brsrpar2"], ["https://tec.openplanner.team/stops/Bboufsm1", "https://tec.openplanner.team/stops/Bcsgres1"], ["https://tec.openplanner.team/stops/Ccogrha2", "https://tec.openplanner.team/stops/Cpclibe4"], ["https://tec.openplanner.team/stops/Bblabos1", "https://tec.openplanner.team/stops/Bblasmo1"], ["https://tec.openplanner.team/stops/N564aca", "https://tec.openplanner.team/stops/N564ada"], ["https://tec.openplanner.team/stops/Ladgron2", "https://tec.openplanner.team/stops/LClsacr2"], ["https://tec.openplanner.team/stops/Crccamp2", "https://tec.openplanner.team/stops/Crcplac4"], ["https://tec.openplanner.team/stops/N535asb", "https://tec.openplanner.team/stops/N538aza"], ["https://tec.openplanner.team/stops/H1gh152b", "https://tec.openplanner.team/stops/H1gh365a"], ["https://tec.openplanner.team/stops/LBNauto1", "https://tec.openplanner.team/stops/LBNauto2"], ["https://tec.openplanner.team/stops/LTrmaro1", "https://tec.openplanner.team/stops/LTrmaro2"], ["https://tec.openplanner.team/stops/N504acb", "https://tec.openplanner.team/stops/N511aha"], ["https://tec.openplanner.team/stops/X661apa", "https://tec.openplanner.team/stops/X661aqa"], ["https://tec.openplanner.team/stops/Bbsimpl1", "https://tec.openplanner.team/stops/Bbsimpl2"], ["https://tec.openplanner.team/stops/H1ht133a", "https://tec.openplanner.team/stops/H1te180a"], ["https://tec.openplanner.team/stops/Bwategl2", "https://tec.openplanner.team/stops/Bwatle31"], ["https://tec.openplanner.team/stops/X636axb", "https://tec.openplanner.team/stops/X636bbb"], ["https://tec.openplanner.team/stops/LGlcarr1", "https://tec.openplanner.team/stops/LHZcime2"], ["https://tec.openplanner.team/stops/Cmlfstt1", "https://tec.openplanner.team/stops/Cmlfstt2"], ["https://tec.openplanner.team/stops/N534bwa", "https://tec.openplanner.team/stops/N534bwb"], ["https://tec.openplanner.team/stops/Bbgepau2", "https://tec.openplanner.team/stops/Bwavlep2"], ["https://tec.openplanner.team/stops/N343aab", "https://tec.openplanner.team/stops/N343aba"], ["https://tec.openplanner.team/stops/LESpaix1", "https://tec.openplanner.team/stops/LESslmo2"], ["https://tec.openplanner.team/stops/LMAgdfa1", "https://tec.openplanner.team/stops/LMApl--1"], ["https://tec.openplanner.team/stops/N244apb", "https://tec.openplanner.team/stops/N244ava"], ["https://tec.openplanner.team/stops/H1bi100a", "https://tec.openplanner.team/stops/H1sa113a"], ["https://tec.openplanner.team/stops/N145acb", "https://tec.openplanner.team/stops/N145aea"], ["https://tec.openplanner.team/stops/Berncim2", "https://tec.openplanner.team/stops/Berngrt2"], ["https://tec.openplanner.team/stops/H1ms275b", "https://tec.openplanner.team/stops/H1ms310b"], ["https://tec.openplanner.team/stops/Bllnfla1", "https://tec.openplanner.team/stops/Bwavvpr1"], ["https://tec.openplanner.team/stops/Lagsauh1", "https://tec.openplanner.team/stops/Lagtenn2"], ["https://tec.openplanner.team/stops/N212ada", "https://tec.openplanner.team/stops/N212adb"], ["https://tec.openplanner.team/stops/Bchgbel2", "https://tec.openplanner.team/stops/Bgisman2"], ["https://tec.openplanner.team/stops/H4mv195a", "https://tec.openplanner.team/stops/H4mv195b"], ["https://tec.openplanner.team/stops/Lpeeg--2", "https://tec.openplanner.team/stops/Lpevesd2"], ["https://tec.openplanner.team/stops/Csoforr1", "https://tec.openplanner.team/stops/Csoforr2"], ["https://tec.openplanner.team/stops/LOTsav-1", "https://tec.openplanner.team/stops/LTowijk1"], ["https://tec.openplanner.team/stops/H4we138a", "https://tec.openplanner.team/stops/H4we138b"], ["https://tec.openplanner.team/stops/LHMsipp1", "https://tec.openplanner.team/stops/LMNcite2"], ["https://tec.openplanner.team/stops/Binclib2", "https://tec.openplanner.team/stops/Bopprju1"], ["https://tec.openplanner.team/stops/H4ff117b", "https://tec.openplanner.team/stops/H4mb138b"], ["https://tec.openplanner.team/stops/Csoforc1", "https://tec.openplanner.team/stops/Csoforc2"], ["https://tec.openplanner.team/stops/H4ka192a", "https://tec.openplanner.team/stops/H4ka192b"], ["https://tec.openplanner.team/stops/Craferr2", "https://tec.openplanner.team/stops/Crajasm4"], ["https://tec.openplanner.team/stops/N501hzb", "https://tec.openplanner.team/stops/N501ipb"], ["https://tec.openplanner.team/stops/H4ag104b", "https://tec.openplanner.team/stops/H4cl114a"], ["https://tec.openplanner.team/stops/N229aea", "https://tec.openplanner.team/stops/N540aqa"], ["https://tec.openplanner.team/stops/X614awb", "https://tec.openplanner.team/stops/X614axa"], ["https://tec.openplanner.team/stops/LBegare2", "https://tec.openplanner.team/stops/LWHmath1"], ["https://tec.openplanner.team/stops/Llgamer2", "https://tec.openplanner.team/stops/Llgamer3"], ["https://tec.openplanner.team/stops/H4ln129a", "https://tec.openplanner.team/stops/H4ne135a"], ["https://tec.openplanner.team/stops/H1hr116b", "https://tec.openplanner.team/stops/H3st119a"], ["https://tec.openplanner.team/stops/X607agb", "https://tec.openplanner.team/stops/X607aja"], ["https://tec.openplanner.team/stops/Lloross1", "https://tec.openplanner.team/stops/Lloross2"], ["https://tec.openplanner.team/stops/X666ada", "https://tec.openplanner.team/stops/X666aeb"], ["https://tec.openplanner.team/stops/LFIinse1", "https://tec.openplanner.team/stops/LMYroin2"], ["https://tec.openplanner.team/stops/H2sv219b", "https://tec.openplanner.team/stops/H2tr246a"], ["https://tec.openplanner.team/stops/N509axa", "https://tec.openplanner.team/stops/N511afb"], ["https://tec.openplanner.team/stops/Lmnhorl3", "https://tec.openplanner.team/stops/Lvewall2"], ["https://tec.openplanner.team/stops/H1gg114b", "https://tec.openplanner.team/stops/H1gg117a"], ["https://tec.openplanner.team/stops/N116acb", "https://tec.openplanner.team/stops/N116ada"], ["https://tec.openplanner.team/stops/X829aca", "https://tec.openplanner.team/stops/X829adb"], ["https://tec.openplanner.team/stops/LLUdeig1", "https://tec.openplanner.team/stops/LLUdeig2"], ["https://tec.openplanner.team/stops/X727aab", "https://tec.openplanner.team/stops/X727aga"], ["https://tec.openplanner.team/stops/N501lfb", "https://tec.openplanner.team/stops/N501lmb"], ["https://tec.openplanner.team/stops/H4do106b", "https://tec.openplanner.team/stops/H4do203a"], ["https://tec.openplanner.team/stops/Lgrdeni1", "https://tec.openplanner.team/stops/Lgrside2"], ["https://tec.openplanner.team/stops/Bblagar8", "https://tec.openplanner.team/stops/Bblapje2"], ["https://tec.openplanner.team/stops/Bblamp5", "https://tec.openplanner.team/stops/Bwatcli1"], ["https://tec.openplanner.team/stops/LVIcarm4", "https://tec.openplanner.team/stops/LVIdeva2"], ["https://tec.openplanner.team/stops/Cwfronc1", "https://tec.openplanner.team/stops/Cwfronc2"], ["https://tec.openplanner.team/stops/X601bla", "https://tec.openplanner.team/stops/X601blb"], ["https://tec.openplanner.team/stops/X601aga", "https://tec.openplanner.team/stops/X601cbb"], ["https://tec.openplanner.team/stops/Bblaccm1", "https://tec.openplanner.team/stops/Bblamer1"], ["https://tec.openplanner.team/stops/LhSbruc1", "https://tec.openplanner.team/stops/LhSbruc2"], ["https://tec.openplanner.team/stops/Bwavdmo4", "https://tec.openplanner.team/stops/Bwavlca2"], ["https://tec.openplanner.team/stops/LTResse1", "https://tec.openplanner.team/stops/LTRlonh2"], ["https://tec.openplanner.team/stops/Beclpma2", "https://tec.openplanner.team/stops/H2ec105b"], ["https://tec.openplanner.team/stops/X640aab", "https://tec.openplanner.team/stops/X640acb"], ["https://tec.openplanner.team/stops/X896aeb", "https://tec.openplanner.team/stops/X993ajb"], ["https://tec.openplanner.team/stops/Lronamo2", "https://tec.openplanner.team/stops/Lrovand2"], ["https://tec.openplanner.team/stops/LWEbr511", "https://tec.openplanner.team/stops/LWEhang1"], ["https://tec.openplanner.team/stops/H1sy138a", "https://tec.openplanner.team/stops/H1sy147a"], ["https://tec.openplanner.team/stops/Bpersyn1", "https://tec.openplanner.team/stops/Btstw751"], ["https://tec.openplanner.team/stops/Btlbgla2", "https://tec.openplanner.team/stops/Btstcar1"], ["https://tec.openplanner.team/stops/LPohoeg1", "https://tec.openplanner.team/stops/LSPcomm1"], ["https://tec.openplanner.team/stops/Bhercsj1", "https://tec.openplanner.team/stops/Bpiehte1"], ["https://tec.openplanner.team/stops/X942abb", "https://tec.openplanner.team/stops/X942abe"], ["https://tec.openplanner.team/stops/Berngrt2", "https://tec.openplanner.team/stops/Bwsppos2"], ["https://tec.openplanner.team/stops/X822aca", "https://tec.openplanner.team/stops/X822apa"], ["https://tec.openplanner.team/stops/Csecoup1", "https://tec.openplanner.team/stops/Csepost1"], ["https://tec.openplanner.team/stops/N146aba", "https://tec.openplanner.team/stops/N146abb"], ["https://tec.openplanner.team/stops/LAnchat2", "https://tec.openplanner.team/stops/LMtcent2"], ["https://tec.openplanner.team/stops/Bpiejus1", "https://tec.openplanner.team/stops/Bpiejus2"], ["https://tec.openplanner.team/stops/H1mm121b", "https://tec.openplanner.team/stops/H1mm125a"], ["https://tec.openplanner.team/stops/H4ea130b", "https://tec.openplanner.team/stops/H4ea131b"], ["https://tec.openplanner.team/stops/Bbxlner1", "https://tec.openplanner.team/stops/Bbxlner2"], ["https://tec.openplanner.team/stops/Cchfran1", "https://tec.openplanner.team/stops/Cchfran2"], ["https://tec.openplanner.team/stops/N501ixc", "https://tec.openplanner.team/stops/N501jdb"], ["https://tec.openplanner.team/stops/X824ada", "https://tec.openplanner.team/stops/X824aea"], ["https://tec.openplanner.team/stops/H1do127a", "https://tec.openplanner.team/stops/H1do131d"], ["https://tec.openplanner.team/stops/LAUcarr2", "https://tec.openplanner.team/stops/LFdchau2"], ["https://tec.openplanner.team/stops/X664aja", "https://tec.openplanner.team/stops/X664aqb"], ["https://tec.openplanner.team/stops/H2gy101a", "https://tec.openplanner.team/stops/H2se115a"], ["https://tec.openplanner.team/stops/Cptchea1", "https://tec.openplanner.team/stops/Cptchea2"], ["https://tec.openplanner.team/stops/Cbufron1", "https://tec.openplanner.team/stops/Cfnegli1"], ["https://tec.openplanner.team/stops/Llgoutr2", "https://tec.openplanner.team/stops/Llgtcha2"], ["https://tec.openplanner.team/stops/LMOecsp1", "https://tec.openplanner.team/stops/LMOecsp3"], ["https://tec.openplanner.team/stops/LmUkape2", "https://tec.openplanner.team/stops/LrOkirc2"], ["https://tec.openplanner.team/stops/NC44acb", "https://tec.openplanner.team/stops/NC44adb"], ["https://tec.openplanner.team/stops/Bsomthi1", "https://tec.openplanner.team/stops/N584bna"], ["https://tec.openplanner.team/stops/N542aja", "https://tec.openplanner.team/stops/N578abb"], ["https://tec.openplanner.team/stops/N204aca", "https://tec.openplanner.team/stops/N204ada"], ["https://tec.openplanner.team/stops/H1hw125b", "https://tec.openplanner.team/stops/H1so135a"], ["https://tec.openplanner.team/stops/LPRmc--3", "https://tec.openplanner.team/stops/LPRvill1"], ["https://tec.openplanner.team/stops/LkEfrie2", "https://tec.openplanner.team/stops/LkEheyg1"], ["https://tec.openplanner.team/stops/LJAcham2", "https://tec.openplanner.team/stops/LJAsuri2"], ["https://tec.openplanner.team/stops/LThchar1", "https://tec.openplanner.team/stops/LThgare1"], ["https://tec.openplanner.team/stops/X998aab", "https://tec.openplanner.team/stops/X999ama"], ["https://tec.openplanner.team/stops/Cfcleco2", "https://tec.openplanner.team/stops/Cfcpcov2"], ["https://tec.openplanner.team/stops/Louetan2", "https://tec.openplanner.team/stops/Louwuid1"], ["https://tec.openplanner.team/stops/Bnivga31", "https://tec.openplanner.team/stops/Bnivga51"], ["https://tec.openplanner.team/stops/H4am100b", "https://tec.openplanner.team/stops/H4or115b"], ["https://tec.openplanner.team/stops/N127adb", "https://tec.openplanner.team/stops/N127aib"], ["https://tec.openplanner.team/stops/N501ica", "https://tec.openplanner.team/stops/N501icy"], ["https://tec.openplanner.team/stops/X898aia", "https://tec.openplanner.team/stops/X898aja"], ["https://tec.openplanner.team/stops/N121abb", "https://tec.openplanner.team/stops/N122ahb"], ["https://tec.openplanner.team/stops/H1hl124a", "https://tec.openplanner.team/stops/H1vs145a"], ["https://tec.openplanner.team/stops/LHueg--1", "https://tec.openplanner.team/stops/LMfpeni*"], ["https://tec.openplanner.team/stops/Lvegend2", "https://tec.openplanner.team/stops/Lve-isi2"], ["https://tec.openplanner.team/stops/Lbrfagn1", "https://tec.openplanner.team/stops/Lbrfagn2"], ["https://tec.openplanner.team/stops/LaAelis2", "https://tec.openplanner.team/stops/LaApost2"], ["https://tec.openplanner.team/stops/Lstpole1", "https://tec.openplanner.team/stops/Lstpole2"], ["https://tec.openplanner.team/stops/Ccobour2", "https://tec.openplanner.team/stops/Csochea2"], ["https://tec.openplanner.team/stops/H1hv133a", "https://tec.openplanner.team/stops/H1hv135b"], ["https://tec.openplanner.team/stops/N501bja", "https://tec.openplanner.team/stops/N501bsa"], ["https://tec.openplanner.team/stops/H1si151a", "https://tec.openplanner.team/stops/H1si163a"], ["https://tec.openplanner.team/stops/H2ml113a", "https://tec.openplanner.team/stops/H2mo122c"], ["https://tec.openplanner.team/stops/LWNcham1", "https://tec.openplanner.team/stops/LWNchar1"], ["https://tec.openplanner.team/stops/LrAneud1", "https://tec.openplanner.team/stops/LrAneue2"], ["https://tec.openplanner.team/stops/H5at107b", "https://tec.openplanner.team/stops/H5at134b"], ["https://tec.openplanner.team/stops/N231agb", "https://tec.openplanner.team/stops/N291abb"], ["https://tec.openplanner.team/stops/Llgnico1", "https://tec.openplanner.team/stops/Lsn184-2"], ["https://tec.openplanner.team/stops/H1bs112b", "https://tec.openplanner.team/stops/H1sb145b"], ["https://tec.openplanner.team/stops/Cmltemp3", "https://tec.openplanner.team/stops/Cmltomb2"], ["https://tec.openplanner.team/stops/N501gnb", "https://tec.openplanner.team/stops/N501hia"], ["https://tec.openplanner.team/stops/LBgbaga4", "https://tec.openplanner.team/stops/Lthfren1"], ["https://tec.openplanner.team/stops/H1em103b", "https://tec.openplanner.team/stops/H1em106a"], ["https://tec.openplanner.team/stops/LHUathe1", "https://tec.openplanner.team/stops/LHUresi3"], ["https://tec.openplanner.team/stops/LlgOPER1", "https://tec.openplanner.team/stops/LlgPTAV4"], ["https://tec.openplanner.team/stops/X604aab", "https://tec.openplanner.team/stops/X618aab"], ["https://tec.openplanner.team/stops/N501czb", "https://tec.openplanner.team/stops/N528agb"], ["https://tec.openplanner.team/stops/Bllncom1", "https://tec.openplanner.team/stops/Bwavtas3"], ["https://tec.openplanner.team/stops/H1he106b", "https://tec.openplanner.team/stops/H1he108b"], ["https://tec.openplanner.team/stops/X661ama", "https://tec.openplanner.team/stops/X661aoa"], ["https://tec.openplanner.team/stops/LCsraws2", "https://tec.openplanner.team/stops/LVBsevr1"], ["https://tec.openplanner.team/stops/Bsdapir2", "https://tec.openplanner.team/stops/Csdetan2"], ["https://tec.openplanner.team/stops/LFAbouc1", "https://tec.openplanner.team/stops/LFAtomb1"], ["https://tec.openplanner.team/stops/LMoelno1", "https://tec.openplanner.team/stops/LMomonc1"], ["https://tec.openplanner.team/stops/X623afa", "https://tec.openplanner.team/stops/X623agb"], ["https://tec.openplanner.team/stops/LPLarbo2", "https://tec.openplanner.team/stops/LPLstat2"], ["https://tec.openplanner.team/stops/H1ms930a", "https://tec.openplanner.team/stops/H1ms932a"], ["https://tec.openplanner.team/stops/X728aaa", "https://tec.openplanner.team/stops/X728aba"], ["https://tec.openplanner.team/stops/N501chc", "https://tec.openplanner.team/stops/N501chf"], ["https://tec.openplanner.team/stops/LeUhaas3", "https://tec.openplanner.team/stops/LeUstad2"], ["https://tec.openplanner.team/stops/H4gr110a", "https://tec.openplanner.team/stops/H4gr112b"], ["https://tec.openplanner.team/stops/H4rm109b", "https://tec.openplanner.team/stops/H4rm111b"], ["https://tec.openplanner.team/stops/Ctrrpla1", "https://tec.openplanner.team/stops/Ctrsema2"], ["https://tec.openplanner.team/stops/LmR90--1", "https://tec.openplanner.team/stops/LmRmuhl1"], ["https://tec.openplanner.team/stops/LFArela5", "https://tec.openplanner.team/stops/LWDchab1"], ["https://tec.openplanner.team/stops/Ccppn2", "https://tec.openplanner.team/stops/Ccpsecp2"], ["https://tec.openplanner.team/stops/LThchar2", "https://tec.openplanner.team/stops/LThsere1"], ["https://tec.openplanner.team/stops/N137ada", "https://tec.openplanner.team/stops/N155aec"], ["https://tec.openplanner.team/stops/Caccera1", "https://tec.openplanner.team/stops/Cacgare1"], ["https://tec.openplanner.team/stops/X639aoa", "https://tec.openplanner.team/stops/X639apa"], ["https://tec.openplanner.team/stops/H4bu109b", "https://tec.openplanner.team/stops/H5el105b"], ["https://tec.openplanner.team/stops/LHEches1", "https://tec.openplanner.team/stops/LHEches2"], ["https://tec.openplanner.team/stops/Brebcha1", "https://tec.openplanner.team/stops/Brebvic1"], ["https://tec.openplanner.team/stops/Llithon1", "https://tec.openplanner.team/stops/Llithon2"], ["https://tec.openplanner.team/stops/Ccypn1", "https://tec.openplanner.team/stops/Csregli2"], ["https://tec.openplanner.team/stops/Blindel5", "https://tec.openplanner.team/stops/Blineco1"], ["https://tec.openplanner.team/stops/Cgrchas1", "https://tec.openplanner.team/stops/N160ada"], ["https://tec.openplanner.team/stops/H4mb143c", "https://tec.openplanner.team/stops/H4mb143d"], ["https://tec.openplanner.team/stops/Bgliopp2", "https://tec.openplanner.team/stops/Bincbbo2"], ["https://tec.openplanner.team/stops/LBIfore1", "https://tec.openplanner.team/stops/Lghfore3"], ["https://tec.openplanner.team/stops/N270aga", "https://tec.openplanner.team/stops/N270agb"], ["https://tec.openplanner.team/stops/H4be100a", "https://tec.openplanner.team/stops/H4be111a"], ["https://tec.openplanner.team/stops/Lagsauh1", "https://tec.openplanner.team/stops/Lemmath2"], ["https://tec.openplanner.team/stops/Llgchat2", "https://tec.openplanner.team/stops/Llggcha4"], ["https://tec.openplanner.team/stops/X652aba", "https://tec.openplanner.team/stops/X652abb"], ["https://tec.openplanner.team/stops/X725aia", "https://tec.openplanner.team/stops/X725aka"], ["https://tec.openplanner.team/stops/Lsnbrac4", "https://tec.openplanner.team/stops/Lticime1"], ["https://tec.openplanner.team/stops/X651agb", "https://tec.openplanner.team/stops/X669aaa"], ["https://tec.openplanner.team/stops/H1ni315a", "https://tec.openplanner.team/stops/H1ni320a"], ["https://tec.openplanner.team/stops/Cmlgche1", "https://tec.openplanner.team/stops/Cmlgche2"], ["https://tec.openplanner.team/stops/LRtcarr1", "https://tec.openplanner.team/stops/LRteg--*"], ["https://tec.openplanner.team/stops/N351arb", "https://tec.openplanner.team/stops/N351asb"], ["https://tec.openplanner.team/stops/Cfrsour1", "https://tec.openplanner.team/stops/Cfrsour2"], ["https://tec.openplanner.team/stops/X757aaa", "https://tec.openplanner.team/stops/X757aab"], ["https://tec.openplanner.team/stops/X734abb", "https://tec.openplanner.team/stops/X734aca"], ["https://tec.openplanner.team/stops/X754aab", "https://tec.openplanner.team/stops/X779agb"], ["https://tec.openplanner.team/stops/Lsecris3", "https://tec.openplanner.team/stops/Lsevico2"], ["https://tec.openplanner.team/stops/Bnstpla2", "https://tec.openplanner.team/stops/H2na136b"], ["https://tec.openplanner.team/stops/LWDhous2", "https://tec.openplanner.team/stops/LWDsott4"], ["https://tec.openplanner.team/stops/Llgborn2", "https://tec.openplanner.team/stops/Llgec--1"], ["https://tec.openplanner.team/stops/LGlwarf1", "https://tec.openplanner.team/stops/LSBsere4"], ["https://tec.openplanner.team/stops/Llmbell2", "https://tec.openplanner.team/stops/Llmhalt2"], ["https://tec.openplanner.team/stops/Blkbbvh1", "https://tec.openplanner.team/stops/Blkbbvh2"], ["https://tec.openplanner.team/stops/H1bb116b", "https://tec.openplanner.team/stops/H1bo104a"], ["https://tec.openplanner.team/stops/H4ru238b", "https://tec.openplanner.team/stops/H4ru241a"], ["https://tec.openplanner.team/stops/LeIjoha1", "https://tec.openplanner.team/stops/LsHkreu4"], ["https://tec.openplanner.team/stops/Barcpre2", "https://tec.openplanner.team/stops/Bgzdgli1"], ["https://tec.openplanner.team/stops/LeSdorf1", "https://tec.openplanner.team/stops/LtH37c-1"], ["https://tec.openplanner.team/stops/H1pa108a", "https://tec.openplanner.team/stops/H1pa120b"], ["https://tec.openplanner.team/stops/N308anb", "https://tec.openplanner.team/stops/N308bjb"], ["https://tec.openplanner.team/stops/Bsjgegl1", "https://tec.openplanner.team/stops/Bsjgegl2"], ["https://tec.openplanner.team/stops/N261aaa", "https://tec.openplanner.team/stops/N261aga"], ["https://tec.openplanner.team/stops/Bhanath2", "https://tec.openplanner.team/stops/LHNland2"], ["https://tec.openplanner.team/stops/LHUgare*", "https://tec.openplanner.team/stops/LHUlebo1"], ["https://tec.openplanner.team/stops/X754apb", "https://tec.openplanner.team/stops/X754aqb"], ["https://tec.openplanner.team/stops/Lhrathe2", "https://tec.openplanner.team/stops/Lhrferr2"], ["https://tec.openplanner.team/stops/X823aab", "https://tec.openplanner.team/stops/X823aba"], ["https://tec.openplanner.team/stops/N551aeb", "https://tec.openplanner.team/stops/N551akb"], ["https://tec.openplanner.team/stops/Btlgast1", "https://tec.openplanner.team/stops/Btlgast2"], ["https://tec.openplanner.team/stops/N310adb", "https://tec.openplanner.team/stops/N313aaa"], ["https://tec.openplanner.team/stops/H4hx111b", "https://tec.openplanner.team/stops/H4hx115b"], ["https://tec.openplanner.team/stops/N151ajb", "https://tec.openplanner.team/stops/N151ajf"], ["https://tec.openplanner.team/stops/N122agb", "https://tec.openplanner.team/stops/N122aha"], ["https://tec.openplanner.team/stops/Bgnvfai1", "https://tec.openplanner.team/stops/Blhugar1"], ["https://tec.openplanner.team/stops/Cmosaba3", "https://tec.openplanner.team/stops/Cmosaba4"], ["https://tec.openplanner.team/stops/H4co148a", "https://tec.openplanner.team/stops/H4co148b"], ["https://tec.openplanner.team/stops/X723aba", "https://tec.openplanner.team/stops/X766aha"], ["https://tec.openplanner.team/stops/N351aga", "https://tec.openplanner.team/stops/N351agb"], ["https://tec.openplanner.team/stops/N549afb", "https://tec.openplanner.team/stops/N578aaa"], ["https://tec.openplanner.team/stops/H4ga153a", "https://tec.openplanner.team/stops/H4ga166a"], ["https://tec.openplanner.team/stops/Cgxprad2", "https://tec.openplanner.team/stops/Cgxprad3"], ["https://tec.openplanner.team/stops/H1sy137a", "https://tec.openplanner.team/stops/H1sy137c"], ["https://tec.openplanner.team/stops/H4mo150b", "https://tec.openplanner.team/stops/H4mo205b"], ["https://tec.openplanner.team/stops/Lrolecl2", "https://tec.openplanner.team/stops/Lronamo2"], ["https://tec.openplanner.team/stops/X224acb", "https://tec.openplanner.team/stops/X224aha"], ["https://tec.openplanner.team/stops/LwYkreu2", "https://tec.openplanner.team/stops/LwYsarl1"], ["https://tec.openplanner.team/stops/LAUmerc2", "https://tec.openplanner.team/stops/LRmmabr1"], ["https://tec.openplanner.team/stops/H1ms300a", "https://tec.openplanner.team/stops/H1ms314a"], ["https://tec.openplanner.team/stops/N501iey", "https://tec.openplanner.team/stops/N501iqa"], ["https://tec.openplanner.team/stops/N543aeb", "https://tec.openplanner.team/stops/N543apb"], ["https://tec.openplanner.team/stops/Bllncbr2", "https://tec.openplanner.team/stops/Bllnpeq1"], ["https://tec.openplanner.team/stops/Lemcarm1", "https://tec.openplanner.team/stops/Lemeg--2"], ["https://tec.openplanner.team/stops/N244aab", "https://tec.openplanner.team/stops/N244abc"], ["https://tec.openplanner.team/stops/H2ll172a", "https://tec.openplanner.team/stops/H2ll172b"], ["https://tec.openplanner.team/stops/X606abb", "https://tec.openplanner.team/stops/X620afb"], ["https://tec.openplanner.team/stops/LATcham*", "https://tec.openplanner.team/stops/LVNcoop1"], ["https://tec.openplanner.team/stops/Bbrlpar2", "https://tec.openplanner.team/stops/Bbrlvil2"], ["https://tec.openplanner.team/stops/H2gy103b", "https://tec.openplanner.team/stops/H2gy107a"], ["https://tec.openplanner.team/stops/N135aqa", "https://tec.openplanner.team/stops/N135ava"], ["https://tec.openplanner.team/stops/LLncime1", "https://tec.openplanner.team/stops/LPUalbe1"], ["https://tec.openplanner.team/stops/X840aba", "https://tec.openplanner.team/stops/X840acd"], ["https://tec.openplanner.team/stops/Lgrdefr4", "https://tec.openplanner.team/stops/Ljuetie1"], ["https://tec.openplanner.team/stops/Ccupetp2", "https://tec.openplanner.team/stops/Cpipost1"], ["https://tec.openplanner.team/stops/H4ty305a", "https://tec.openplanner.team/stops/H4ty357a"], ["https://tec.openplanner.team/stops/X804avb", "https://tec.openplanner.team/stops/X828aab"], ["https://tec.openplanner.team/stops/N212aeb", "https://tec.openplanner.team/stops/N212agb"], ["https://tec.openplanner.team/stops/H1gh157a", "https://tec.openplanner.team/stops/H1gh157b"], ["https://tec.openplanner.team/stops/X898aka", "https://tec.openplanner.team/stops/X898akb"], ["https://tec.openplanner.team/stops/X741ala", "https://tec.openplanner.team/stops/X741ana"], ["https://tec.openplanner.team/stops/Llglema2", "https://tec.openplanner.team/stops/Llgrome2"], ["https://tec.openplanner.team/stops/Lra4bra2", "https://tec.openplanner.team/stops/Lwakipe1"], ["https://tec.openplanner.team/stops/X923ada", "https://tec.openplanner.team/stops/X923adb"], ["https://tec.openplanner.team/stops/N244ara", "https://tec.openplanner.team/stops/N244asa"], ["https://tec.openplanner.team/stops/Lbrfune*", "https://tec.openplanner.team/stops/Lbrgrot1"], ["https://tec.openplanner.team/stops/Ljecocc1", "https://tec.openplanner.team/stops/Ljexhav3"], ["https://tec.openplanner.team/stops/H5at133b", "https://tec.openplanner.team/stops/H5at142a"], ["https://tec.openplanner.team/stops/X641acb", "https://tec.openplanner.team/stops/X641aea"], ["https://tec.openplanner.team/stops/LBkcare*", "https://tec.openplanner.team/stops/LBkcarr4"], ["https://tec.openplanner.team/stops/LAumari1", "https://tec.openplanner.team/stops/LAuvill1"], ["https://tec.openplanner.team/stops/LMNcite1", "https://tec.openplanner.team/stops/LMNjard2"], ["https://tec.openplanner.team/stops/Lourose1", "https://tec.openplanner.team/stops/Lourose5"], ["https://tec.openplanner.team/stops/LTyh24-1", "https://tec.openplanner.team/stops/LTyhall2"], ["https://tec.openplanner.team/stops/Cmlhaie2", "https://tec.openplanner.team/stops/Cmlhotv2"], ["https://tec.openplanner.team/stops/LAVdepr1", "https://tec.openplanner.team/stops/LCIsucr1"], ["https://tec.openplanner.team/stops/Lsechan1", "https://tec.openplanner.team/stops/Lsestap3"], ["https://tec.openplanner.team/stops/LSBjoli1", "https://tec.openplanner.team/stops/LSBjoli2"], ["https://tec.openplanner.team/stops/X764aea", "https://tec.openplanner.team/stops/X791abb"], ["https://tec.openplanner.team/stops/LBdcime1", "https://tec.openplanner.team/stops/LCpeg-*"], ["https://tec.openplanner.team/stops/H1bo100b", "https://tec.openplanner.team/stops/H1bo145a"], ["https://tec.openplanner.team/stops/N506aqa", "https://tec.openplanner.team/stops/N506bpb"], ["https://tec.openplanner.team/stops/Lvcfogu1", "https://tec.openplanner.team/stops/Lvcfogu6"], ["https://tec.openplanner.team/stops/N223aaa", "https://tec.openplanner.team/stops/X919ajb"], ["https://tec.openplanner.team/stops/Bmsgeco2", "https://tec.openplanner.team/stops/Bmsgstj2"], ["https://tec.openplanner.team/stops/LwYbruc1", "https://tec.openplanner.team/stops/LwYsour1"], ["https://tec.openplanner.team/stops/Cfrcoqu4", "https://tec.openplanner.team/stops/Cfrgivr1"], ["https://tec.openplanner.team/stops/X638ara", "https://tec.openplanner.team/stops/X652aja"], ["https://tec.openplanner.team/stops/LHFcaqu1", "https://tec.openplanner.team/stops/LHFec--1"], ["https://tec.openplanner.team/stops/H1fl136a", "https://tec.openplanner.team/stops/H1fl136b"], ["https://tec.openplanner.team/stops/LHTeg--2", "https://tec.openplanner.team/stops/LHTmoul1"], ["https://tec.openplanner.team/stops/Cmyedpa2", "https://tec.openplanner.team/stops/Cmymarb1"], ["https://tec.openplanner.team/stops/X601ccb", "https://tec.openplanner.team/stops/X602aha"], ["https://tec.openplanner.team/stops/Lcegeor2", "https://tec.openplanner.team/stops/Lcepass2"], ["https://tec.openplanner.team/stops/X923aoa", "https://tec.openplanner.team/stops/X923aob"], ["https://tec.openplanner.team/stops/Ltibell2", "https://tec.openplanner.team/stops/Ltiplat2"], ["https://tec.openplanner.team/stops/LSAchef1", "https://tec.openplanner.team/stops/LSAchef2"], ["https://tec.openplanner.team/stops/X661aoa", "https://tec.openplanner.team/stops/X839acb"], ["https://tec.openplanner.team/stops/N153adb", "https://tec.openplanner.team/stops/N154ada"], ["https://tec.openplanner.team/stops/Canterr1", "https://tec.openplanner.team/stops/Canterr2"], ["https://tec.openplanner.team/stops/X788abc", "https://tec.openplanner.team/stops/X788abd"], ["https://tec.openplanner.team/stops/H1wa144a", "https://tec.openplanner.team/stops/H1wa146a"], ["https://tec.openplanner.team/stops/Cvrfcho2", "https://tec.openplanner.team/stops/Cvrhaie2"], ["https://tec.openplanner.team/stops/X773aca", "https://tec.openplanner.team/stops/X911aoa"], ["https://tec.openplanner.team/stops/LToluik2", "https://tec.openplanner.team/stops/LTowijk2"], ["https://tec.openplanner.team/stops/Csbrago1", "https://tec.openplanner.team/stops/H1bi104a"], ["https://tec.openplanner.team/stops/N528agb", "https://tec.openplanner.team/stops/N528anb"], ["https://tec.openplanner.team/stops/Caibino2", "https://tec.openplanner.team/stops/N543cja"], ["https://tec.openplanner.team/stops/X877adb", "https://tec.openplanner.team/stops/X989afa"], ["https://tec.openplanner.team/stops/LrEmeil1", "https://tec.openplanner.team/stops/LrEochs2"], ["https://tec.openplanner.team/stops/N535ama", "https://tec.openplanner.team/stops/N535amd"], ["https://tec.openplanner.team/stops/H4ho121b", "https://tec.openplanner.team/stops/H4pl111a"], ["https://tec.openplanner.team/stops/X640aqb", "https://tec.openplanner.team/stops/X640arb"], ["https://tec.openplanner.team/stops/Bchgflo1", "https://tec.openplanner.team/stops/Blonegl1"], ["https://tec.openplanner.team/stops/H5at104a", "https://tec.openplanner.team/stops/H5at127a"], ["https://tec.openplanner.team/stops/Ccupomp1", "https://tec.openplanner.team/stops/Cpibois1"], ["https://tec.openplanner.team/stops/Lbocomm2", "https://tec.openplanner.team/stops/Lbotilf2"], ["https://tec.openplanner.team/stops/N211ahb", "https://tec.openplanner.team/stops/N211asa"], ["https://tec.openplanner.team/stops/Lcemalv2", "https://tec.openplanner.team/stops/Lcemeta2"], ["https://tec.openplanner.team/stops/H1hc150a", "https://tec.openplanner.team/stops/H4be146b"], ["https://tec.openplanner.team/stops/LPRecol1", "https://tec.openplanner.team/stops/LTRgare4"], ["https://tec.openplanner.team/stops/N580aga", "https://tec.openplanner.team/stops/N580agb"], ["https://tec.openplanner.team/stops/X611ada", "https://tec.openplanner.team/stops/X646abb"], ["https://tec.openplanner.team/stops/Cpccoss2", "https://tec.openplanner.team/stops/Cpccpas2"], ["https://tec.openplanner.team/stops/Bllncom1", "https://tec.openplanner.team/stops/Bllngar1"], ["https://tec.openplanner.team/stops/Lsweg--1", "https://tec.openplanner.team/stops/Lsweg--2"], ["https://tec.openplanner.team/stops/X609afb", "https://tec.openplanner.team/stops/X609ana"], ["https://tec.openplanner.team/stops/Cvpbifu1", "https://tec.openplanner.team/stops/Cvpsawe2"], ["https://tec.openplanner.team/stops/Lvochev1", "https://tec.openplanner.team/stops/Lvochev2"], ["https://tec.openplanner.team/stops/N580ada", "https://tec.openplanner.team/stops/N580adb"], ["https://tec.openplanner.team/stops/Bbldmun1", "https://tec.openplanner.team/stops/Bnetrec2"], ["https://tec.openplanner.team/stops/Cmygrbr4", "https://tec.openplanner.team/stops/Cmyrays2"], ["https://tec.openplanner.team/stops/H1bu138a", "https://tec.openplanner.team/stops/H1mm131a"], ["https://tec.openplanner.team/stops/N562bna", "https://tec.openplanner.team/stops/N562bnb"], ["https://tec.openplanner.team/stops/Bhptegl2", "https://tec.openplanner.team/stops/Bhptpla1"], ["https://tec.openplanner.team/stops/X949ada", "https://tec.openplanner.team/stops/X949adb"], ["https://tec.openplanner.team/stops/LBoegli2", "https://tec.openplanner.team/stops/X223aca"], ["https://tec.openplanner.team/stops/Bnivbng2", "https://tec.openplanner.team/stops/Bnivvco2"], ["https://tec.openplanner.team/stops/H1wg124a", "https://tec.openplanner.team/stops/H1wg131b"], ["https://tec.openplanner.team/stops/Cdaptca2", "https://tec.openplanner.team/stops/Cmafafe2"], ["https://tec.openplanner.team/stops/Lvomoul2", "https://tec.openplanner.team/stops/Lvopaqu1"], ["https://tec.openplanner.team/stops/H2mi122a", "https://tec.openplanner.team/stops/H2mi122b"], ["https://tec.openplanner.team/stops/H1an101a", "https://tec.openplanner.team/stops/H1bx104b"], ["https://tec.openplanner.team/stops/N211ana", "https://tec.openplanner.team/stops/N211baa"], ["https://tec.openplanner.team/stops/Loucham3", "https://tec.openplanner.team/stops/Louroos1"], ["https://tec.openplanner.team/stops/X982ayb", "https://tec.openplanner.team/stops/X982bwa"], ["https://tec.openplanner.team/stops/N501faa", "https://tec.openplanner.team/stops/N501fdb"], ["https://tec.openplanner.team/stops/LAYharz1", "https://tec.openplanner.team/stops/LHrprie1"], ["https://tec.openplanner.team/stops/Bnilspe4", "https://tec.openplanner.team/stops/Btsllib1"], ["https://tec.openplanner.team/stops/N120aba", "https://tec.openplanner.team/stops/N120afb"], ["https://tec.openplanner.team/stops/Lbocorn2", "https://tec.openplanner.team/stops/Louvivi2"], ["https://tec.openplanner.team/stops/H4hx118b", "https://tec.openplanner.team/stops/H4hx119a"], ["https://tec.openplanner.team/stops/LBrmeiz2", "https://tec.openplanner.team/stops/LFRfagn1"], ["https://tec.openplanner.team/stops/X640anb", "https://tec.openplanner.team/stops/X640aob"], ["https://tec.openplanner.team/stops/LWelogi1", "https://tec.openplanner.team/stops/LWelogi2"], ["https://tec.openplanner.team/stops/N525aeb", "https://tec.openplanner.team/stops/N525aib"], ["https://tec.openplanner.team/stops/NL72aba", "https://tec.openplanner.team/stops/NL72aea"], ["https://tec.openplanner.team/stops/N234adb", "https://tec.openplanner.team/stops/N242agb"], ["https://tec.openplanner.team/stops/LCHgele2", "https://tec.openplanner.team/stops/LCHrhou2"], ["https://tec.openplanner.team/stops/LMAgdfa2", "https://tec.openplanner.team/stops/LMAstei1"], ["https://tec.openplanner.team/stops/Bincbbo3", "https://tec.openplanner.team/stops/Bincbbo4"], ["https://tec.openplanner.team/stops/Lhrbell1", "https://tec.openplanner.team/stops/Lhrbell2"], ["https://tec.openplanner.team/stops/N501eeb", "https://tec.openplanner.team/stops/N501kic"], ["https://tec.openplanner.team/stops/H1cv101a", "https://tec.openplanner.team/stops/H5me106a"], ["https://tec.openplanner.team/stops/X747aca", "https://tec.openplanner.team/stops/X754akb"], ["https://tec.openplanner.team/stops/X982agb", "https://tec.openplanner.team/stops/X982ahb"], ["https://tec.openplanner.team/stops/H1ho122d", "https://tec.openplanner.team/stops/H1ho136a"], ["https://tec.openplanner.team/stops/Brebgar1", "https://tec.openplanner.team/stops/Brebraf2"], ["https://tec.openplanner.team/stops/H2mo119b", "https://tec.openplanner.team/stops/H2mo123b"], ["https://tec.openplanner.team/stops/X346afa", "https://tec.openplanner.team/stops/X346ala"], ["https://tec.openplanner.team/stops/X750bea", "https://tec.openplanner.team/stops/X750blb"], ["https://tec.openplanner.team/stops/X836aea", "https://tec.openplanner.team/stops/X836aia"], ["https://tec.openplanner.team/stops/X601cia", "https://tec.openplanner.team/stops/X601cla"], ["https://tec.openplanner.team/stops/LBPrueg2", "https://tec.openplanner.team/stops/LSLhale1"], ["https://tec.openplanner.team/stops/X624aeb", "https://tec.openplanner.team/stops/X624afa"], ["https://tec.openplanner.team/stops/Brsgpbo1", "https://tec.openplanner.team/stops/Brsgpbo2"], ["https://tec.openplanner.team/stops/LAWeg--2", "https://tec.openplanner.team/stops/LAWmc--1"], ["https://tec.openplanner.team/stops/LHTbeau1", "https://tec.openplanner.team/stops/LHTbeau2"], ["https://tec.openplanner.team/stops/Lseptsa1", "https://tec.openplanner.team/stops/Lserena2"], ["https://tec.openplanner.team/stops/Bchgflo1", "https://tec.openplanner.team/stops/Btslpic5"], ["https://tec.openplanner.team/stops/Lrcastr3", "https://tec.openplanner.team/stops/Lrcastr4"], ["https://tec.openplanner.team/stops/X901bja", "https://tec.openplanner.team/stops/X901bka"], ["https://tec.openplanner.team/stops/X804bsa", "https://tec.openplanner.team/stops/X804bua"], ["https://tec.openplanner.team/stops/LFtcarr1", "https://tec.openplanner.team/stops/LXofont1"], ["https://tec.openplanner.team/stops/Lveleje2", "https://tec.openplanner.team/stops/Lveoctr3"], ["https://tec.openplanner.team/stops/H4mo190a", "https://tec.openplanner.team/stops/H4mo207b"], ["https://tec.openplanner.team/stops/X650afe", "https://tec.openplanner.team/stops/X650aga"], ["https://tec.openplanner.team/stops/H4an104b", "https://tec.openplanner.team/stops/H4an111c"], ["https://tec.openplanner.team/stops/LCPcomb1", "https://tec.openplanner.team/stops/LCPlebl1"], ["https://tec.openplanner.team/stops/Lbococh2", "https://tec.openplanner.team/stops/Lsechev2"], ["https://tec.openplanner.team/stops/X919aca", "https://tec.openplanner.team/stops/X921ada"], ["https://tec.openplanner.team/stops/LVLsabl2", "https://tec.openplanner.team/stops/LVLsabl4"], ["https://tec.openplanner.team/stops/N101aea", "https://tec.openplanner.team/stops/N101anb"], ["https://tec.openplanner.team/stops/N202aba", "https://tec.openplanner.team/stops/N202aeb"], ["https://tec.openplanner.team/stops/Bhenpla2", "https://tec.openplanner.team/stops/Bhenpln1"], ["https://tec.openplanner.team/stops/H4ir165a", "https://tec.openplanner.team/stops/H5at119a"], ["https://tec.openplanner.team/stops/LcRkirc2", "https://tec.openplanner.team/stops/LcRmich1"], ["https://tec.openplanner.team/stops/H4ca122a", "https://tec.openplanner.team/stops/H4wi162a"], ["https://tec.openplanner.team/stops/N540ama", "https://tec.openplanner.team/stops/N540amb"], ["https://tec.openplanner.team/stops/H2ca104a", "https://tec.openplanner.team/stops/H2mo127c"], ["https://tec.openplanner.team/stops/Lalbout1", "https://tec.openplanner.team/stops/Lalparc1"], ["https://tec.openplanner.team/stops/Bovetdo2", "https://tec.openplanner.team/stops/Brsregl2"], ["https://tec.openplanner.team/stops/H2ma206b", "https://tec.openplanner.team/stops/H2ma208a"], ["https://tec.openplanner.team/stops/Bbstchn2", "https://tec.openplanner.team/stops/Csdetan2"], ["https://tec.openplanner.team/stops/X805acb", "https://tec.openplanner.team/stops/X805aja"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LCxreno1"], ["https://tec.openplanner.team/stops/H1bb113a", "https://tec.openplanner.team/stops/H1bb113b"], ["https://tec.openplanner.team/stops/X941aha", "https://tec.openplanner.team/stops/X941ahb"], ["https://tec.openplanner.team/stops/LJEerno1", "https://tec.openplanner.team/stops/LJEloum1"], ["https://tec.openplanner.team/stops/H1cu112a", "https://tec.openplanner.team/stops/H1cu112b"], ["https://tec.openplanner.team/stops/Btancnd1", "https://tec.openplanner.team/stops/Btancnd2"], ["https://tec.openplanner.team/stops/N576aea", "https://tec.openplanner.team/stops/N576akd"], ["https://tec.openplanner.team/stops/X637aga", "https://tec.openplanner.team/stops/X637agb"], ["https://tec.openplanner.team/stops/Cmtneuv2", "https://tec.openplanner.team/stops/Cmtpaix1"], ["https://tec.openplanner.team/stops/Clgmaco2", "https://tec.openplanner.team/stops/Ctisar2"], ["https://tec.openplanner.team/stops/X601cgb", "https://tec.openplanner.team/stops/X601cma"], ["https://tec.openplanner.team/stops/N308asa", "https://tec.openplanner.team/stops/N308baa"], ["https://tec.openplanner.team/stops/X629aab", "https://tec.openplanner.team/stops/X629acb"], ["https://tec.openplanner.team/stops/H4ty341a", "https://tec.openplanner.team/stops/H4ty356d"], ["https://tec.openplanner.team/stops/Lrcastr1", "https://tec.openplanner.team/stops/Lrcastr3"], ["https://tec.openplanner.team/stops/H4ca120a", "https://tec.openplanner.team/stops/H4ca122a"], ["https://tec.openplanner.team/stops/LEMfort2", "https://tec.openplanner.team/stops/LEMgren*"], ["https://tec.openplanner.team/stops/Bquebut1", "https://tec.openplanner.team/stops/Bquesta1"], ["https://tec.openplanner.team/stops/N241aaa", "https://tec.openplanner.team/stops/N241aab"], ["https://tec.openplanner.team/stops/X725bda", "https://tec.openplanner.team/stops/X771ala"], ["https://tec.openplanner.team/stops/Bmlnpab1", "https://tec.openplanner.team/stops/Bptblma2"], ["https://tec.openplanner.team/stops/Bflegar5", "https://tec.openplanner.team/stops/Cflsncb2"], ["https://tec.openplanner.team/stops/Llieg--4", "https://tec.openplanner.team/stops/Lvochev1"], ["https://tec.openplanner.team/stops/LBzec--1", "https://tec.openplanner.team/stops/LBzec--2"], ["https://tec.openplanner.team/stops/Lagindu1", "https://tec.openplanner.team/stops/Lagindu2"], ["https://tec.openplanner.team/stops/H4og206a", "https://tec.openplanner.team/stops/H4og206b"], ["https://tec.openplanner.team/stops/X919ada", "https://tec.openplanner.team/stops/X979aja"], ["https://tec.openplanner.team/stops/Cci28ju1", "https://tec.openplanner.team/stops/Cciferr2"], ["https://tec.openplanner.team/stops/LeYwald2", "https://tec.openplanner.team/stops/LkOgren2"], ["https://tec.openplanner.team/stops/X657aba", "https://tec.openplanner.team/stops/X742aga"], ["https://tec.openplanner.team/stops/H1ol143a", "https://tec.openplanner.team/stops/H1ol143b"], ["https://tec.openplanner.team/stops/H2bh105a", "https://tec.openplanner.team/stops/H2bh105b"], ["https://tec.openplanner.team/stops/Cbfdufa1", "https://tec.openplanner.team/stops/Ccifies2"], ["https://tec.openplanner.team/stops/LeYberl2", "https://tec.openplanner.team/stops/LlCland1"], ["https://tec.openplanner.team/stops/H5el104a", "https://tec.openplanner.team/stops/H5el116a"], ["https://tec.openplanner.team/stops/X307aba", "https://tec.openplanner.team/stops/X307abb"], ["https://tec.openplanner.team/stops/X754aka", "https://tec.openplanner.team/stops/X754azb"], ["https://tec.openplanner.team/stops/Cflchel1", "https://tec.openplanner.team/stops/Cflchel6"], ["https://tec.openplanner.team/stops/X806aia", "https://tec.openplanner.team/stops/X806ajb"], ["https://tec.openplanner.team/stops/LBSgeer2", "https://tec.openplanner.team/stops/LBSpail3"], ["https://tec.openplanner.team/stops/N167aab", "https://tec.openplanner.team/stops/N167add"], ["https://tec.openplanner.team/stops/LLRbleh2", "https://tec.openplanner.team/stops/LVPbleh2"], ["https://tec.openplanner.team/stops/H4oe149a", "https://tec.openplanner.team/stops/H4oe149b"], ["https://tec.openplanner.team/stops/Bllnchv2", "https://tec.openplanner.team/stops/Bottcva2"], ["https://tec.openplanner.team/stops/N222aaa", "https://tec.openplanner.team/stops/N222aab"], ["https://tec.openplanner.team/stops/Lsecris1", "https://tec.openplanner.team/stops/Lsecris3"], ["https://tec.openplanner.team/stops/H1do110a", "https://tec.openplanner.team/stops/H1do113a"], ["https://tec.openplanner.team/stops/N506aka", "https://tec.openplanner.team/stops/N506ama"], ["https://tec.openplanner.team/stops/LLg9---2", "https://tec.openplanner.team/stops/LSMfroi1"], ["https://tec.openplanner.team/stops/LFehaut1", "https://tec.openplanner.team/stops/LTrmaro2"], ["https://tec.openplanner.team/stops/H5is168b", "https://tec.openplanner.team/stops/H5is171a"], ["https://tec.openplanner.team/stops/Cfocobe2", "https://tec.openplanner.team/stops/Cptdubo2"], ["https://tec.openplanner.team/stops/X343aic", "https://tec.openplanner.team/stops/X345aca"], ["https://tec.openplanner.team/stops/X684aba", "https://tec.openplanner.team/stops/X687aba"], ["https://tec.openplanner.team/stops/NB33aka", "https://tec.openplanner.team/stops/NB59akb"], ["https://tec.openplanner.team/stops/N521ala", "https://tec.openplanner.team/stops/N527agb"], ["https://tec.openplanner.team/stops/LLrmc--4", "https://tec.openplanner.team/stops/LLrvill1"], ["https://tec.openplanner.team/stops/H1ch132a", "https://tec.openplanner.team/stops/H5at130a"], ["https://tec.openplanner.team/stops/X750aea", "https://tec.openplanner.team/stops/X780aga"], ["https://tec.openplanner.team/stops/H1cv101b", "https://tec.openplanner.team/stops/H1cv103a"], ["https://tec.openplanner.team/stops/X640aob", "https://tec.openplanner.team/stops/X641aia"], ["https://tec.openplanner.team/stops/N390adb", "https://tec.openplanner.team/stops/N390aeb"], ["https://tec.openplanner.team/stops/H4co108b", "https://tec.openplanner.team/stops/H4co133b"], ["https://tec.openplanner.team/stops/H4co107a", "https://tec.openplanner.team/stops/H4co144b"], ["https://tec.openplanner.team/stops/X659aqa", "https://tec.openplanner.team/stops/X659ara"], ["https://tec.openplanner.team/stops/LlgLAMB3", "https://tec.openplanner.team/stops/LlgR-F1*"], ["https://tec.openplanner.team/stops/H5bl121b", "https://tec.openplanner.team/stops/H5bl141a"], ["https://tec.openplanner.team/stops/LGmcite1", "https://tec.openplanner.team/stops/LGmhumb1"], ["https://tec.openplanner.team/stops/X608aeb", "https://tec.openplanner.team/stops/X608ava"], ["https://tec.openplanner.team/stops/Caigibe1", "https://tec.openplanner.team/stops/NC11ama"], ["https://tec.openplanner.team/stops/Baudstr1", "https://tec.openplanner.team/stops/Baudtri2"], ["https://tec.openplanner.team/stops/LoDcorn2", "https://tec.openplanner.team/stops/LoDkoll2"], ["https://tec.openplanner.team/stops/Bllnrod3", "https://tec.openplanner.team/stops/Bllnrod4"], ["https://tec.openplanner.team/stops/LMYlieg1", "https://tec.openplanner.team/stops/LMYlieg2"], ["https://tec.openplanner.team/stops/Ldidefo1", "https://tec.openplanner.team/stops/Ldimeun1"], ["https://tec.openplanner.team/stops/LLrpape1", "https://tec.openplanner.team/stops/LLrpape3"], ["https://tec.openplanner.team/stops/N549aaa", "https://tec.openplanner.team/stops/N549aab"], ["https://tec.openplanner.team/stops/LWApr%C3%A9s4", "https://tec.openplanner.team/stops/LWApt--2"], ["https://tec.openplanner.team/stops/Bmalsmc1", "https://tec.openplanner.team/stops/Bmalsmc2"], ["https://tec.openplanner.team/stops/LeUjuge1", "https://tec.openplanner.team/stops/LeUstad1"], ["https://tec.openplanner.team/stops/LSHneuv2", "https://tec.openplanner.team/stops/LSHries1"], ["https://tec.openplanner.team/stops/X979aaa", "https://tec.openplanner.team/stops/X979aab"], ["https://tec.openplanner.team/stops/Ctilobb2", "https://tec.openplanner.team/stops/Ctisar2"], ["https://tec.openplanner.team/stops/Bbchboi1", "https://tec.openplanner.team/stops/Bbchtry1"], ["https://tec.openplanner.team/stops/N531akb", "https://tec.openplanner.team/stops/N531ata"], ["https://tec.openplanner.team/stops/LOV48--1", "https://tec.openplanner.team/stops/LOV48--2"], ["https://tec.openplanner.team/stops/X870aja", "https://tec.openplanner.team/stops/X870ajb"], ["https://tec.openplanner.team/stops/Cauptsa2", "https://tec.openplanner.team/stops/Ctapn1"], ["https://tec.openplanner.team/stops/X953afa", "https://tec.openplanner.team/stops/X954afa"], ["https://tec.openplanner.team/stops/Lbomidi1", "https://tec.openplanner.team/stops/Lbotilf1"], ["https://tec.openplanner.team/stops/Candett1", "https://tec.openplanner.team/stops/Canvane1"], ["https://tec.openplanner.team/stops/Cmomoul3", "https://tec.openplanner.team/stops/Cmomoul6"], ["https://tec.openplanner.team/stops/H2ch112a", "https://tec.openplanner.team/stops/H2ch123b"], ["https://tec.openplanner.team/stops/Cthdeco1", "https://tec.openplanner.team/stops/Cthdeco2"], ["https://tec.openplanner.team/stops/Cbwdoua2", "https://tec.openplanner.team/stops/Cbwegl2"], ["https://tec.openplanner.team/stops/LMAbruy1", "https://tec.openplanner.team/stops/LMAchod1"], ["https://tec.openplanner.team/stops/LBSchar3", "https://tec.openplanner.team/stops/LBSkann1"], ["https://tec.openplanner.team/stops/Cgpchen1", "https://tec.openplanner.team/stops/H2gy108a"], ["https://tec.openplanner.team/stops/LBlchin2", "https://tec.openplanner.team/stops/LBlhaut2"], ["https://tec.openplanner.team/stops/Cgygazo3", "https://tec.openplanner.team/stops/Cgygazo5"], ["https://tec.openplanner.team/stops/LOTawan2", "https://tec.openplanner.team/stops/LOTcloe2"], ["https://tec.openplanner.team/stops/LLbmalm2", "https://tec.openplanner.team/stops/LrErauw2"], ["https://tec.openplanner.team/stops/Bllnald1", "https://tec.openplanner.team/stops/Bllnpaf2"], ["https://tec.openplanner.team/stops/LHNcoll1", "https://tec.openplanner.team/stops/LHNcoll2"], ["https://tec.openplanner.team/stops/N544ada", "https://tec.openplanner.team/stops/N544aea"], ["https://tec.openplanner.team/stops/N206acb", "https://tec.openplanner.team/stops/N220aab"], ["https://tec.openplanner.team/stops/H1te190a", "https://tec.openplanner.team/stops/H1vt192b"], ["https://tec.openplanner.team/stops/NH01ala", "https://tec.openplanner.team/stops/NH01apb"], ["https://tec.openplanner.team/stops/N508aba", "https://tec.openplanner.team/stops/N508aea"], ["https://tec.openplanner.team/stops/X801caa", "https://tec.openplanner.team/stops/X801cma"], ["https://tec.openplanner.team/stops/LREheyd1", "https://tec.openplanner.team/stops/LREprea2"], ["https://tec.openplanner.team/stops/X811ana", "https://tec.openplanner.team/stops/X811aoa"], ["https://tec.openplanner.team/stops/H1ne139b", "https://tec.openplanner.team/stops/H1ne148a"], ["https://tec.openplanner.team/stops/X765aaa", "https://tec.openplanner.team/stops/X765aba"], ["https://tec.openplanner.team/stops/LMfpral2", "https://tec.openplanner.team/stops/NL57alb"], ["https://tec.openplanner.team/stops/X999aaa", "https://tec.openplanner.team/stops/X999aab"], ["https://tec.openplanner.team/stops/H1je223a", "https://tec.openplanner.team/stops/H1je223b"], ["https://tec.openplanner.team/stops/Bitregl2", "https://tec.openplanner.team/stops/Bitrpsr2"], ["https://tec.openplanner.team/stops/X809aab", "https://tec.openplanner.team/stops/X812bea"], ["https://tec.openplanner.team/stops/N554aga", "https://tec.openplanner.team/stops/N554agb"], ["https://tec.openplanner.team/stops/N201agb", "https://tec.openplanner.team/stops/N201ahb"], ["https://tec.openplanner.team/stops/X747aeb", "https://tec.openplanner.team/stops/X747afb"], ["https://tec.openplanner.team/stops/Bptrlux1", "https://tec.openplanner.team/stops/Bptrmar1"], ["https://tec.openplanner.team/stops/H3so163a", "https://tec.openplanner.team/stops/H3so166d"], ["https://tec.openplanner.team/stops/Llgterr1", "https://tec.openplanner.team/stops/Llgvero4"], ["https://tec.openplanner.team/stops/H1cu115a", "https://tec.openplanner.team/stops/H1cu115b"], ["https://tec.openplanner.team/stops/Ljubonf2", "https://tec.openplanner.team/stops/Ljudeme4"], ["https://tec.openplanner.team/stops/X659aqa", "https://tec.openplanner.team/stops/X741akb"], ["https://tec.openplanner.team/stops/LOVchen2", "https://tec.openplanner.team/stops/LRObarr2"], ["https://tec.openplanner.team/stops/Lfhhaso2", "https://tec.openplanner.team/stops/Lfhweri2"], ["https://tec.openplanner.team/stops/Bottbru2", "https://tec.openplanner.team/stops/Bottcva2"], ["https://tec.openplanner.team/stops/Bbuzcom2", "https://tec.openplanner.team/stops/Bbuztai2"], ["https://tec.openplanner.team/stops/X601bbc", "https://tec.openplanner.team/stops/X601bbf"], ["https://tec.openplanner.team/stops/H4mo167a", "https://tec.openplanner.team/stops/H4mo171a"], ["https://tec.openplanner.team/stops/Bthscbl1", "https://tec.openplanner.team/stops/Bthsvil1"], ["https://tec.openplanner.team/stops/Bwavlav1", "https://tec.openplanner.team/stops/Bwavzno2"], ["https://tec.openplanner.team/stops/N301afa", "https://tec.openplanner.team/stops/N301afc"], ["https://tec.openplanner.team/stops/Chhbiet1", "https://tec.openplanner.team/stops/Chhplbe1"], ["https://tec.openplanner.team/stops/Bcrnnpl1", "https://tec.openplanner.team/stops/Bcrnvic1"], ["https://tec.openplanner.team/stops/LNCdoma4", "https://tec.openplanner.team/stops/LNClila1"], ["https://tec.openplanner.team/stops/Bnivrec1", "https://tec.openplanner.team/stops/Bnivsci2"], ["https://tec.openplanner.team/stops/X369aaa", "https://tec.openplanner.team/stops/X369aba"], ["https://tec.openplanner.team/stops/Bsoihci2", "https://tec.openplanner.team/stops/H3so170b"], ["https://tec.openplanner.team/stops/H2ma202a", "https://tec.openplanner.team/stops/H2ma205a"], ["https://tec.openplanner.team/stops/X601aea", "https://tec.openplanner.team/stops/X601aeb"], ["https://tec.openplanner.team/stops/LSInd--2", "https://tec.openplanner.team/stops/LTEzinn2"], ["https://tec.openplanner.team/stops/Lvcsapi1", "https://tec.openplanner.team/stops/Lvcsapi2"], ["https://tec.openplanner.team/stops/Lqbeg--2", "https://tec.openplanner.team/stops/LSAtrih1"], ["https://tec.openplanner.team/stops/Buccham2", "https://tec.openplanner.team/stops/Bwbfhip2"], ["https://tec.openplanner.team/stops/LHEcruc4", "https://tec.openplanner.team/stops/LHEgare1"], ["https://tec.openplanner.team/stops/X879afb", "https://tec.openplanner.team/stops/X879aga"], ["https://tec.openplanner.team/stops/N501hva", "https://tec.openplanner.team/stops/N501jab"], ["https://tec.openplanner.team/stops/Bhptegl1", "https://tec.openplanner.team/stops/H2ec102a"], ["https://tec.openplanner.team/stops/NL76bca", "https://tec.openplanner.team/stops/NL76bcb"], ["https://tec.openplanner.team/stops/LXoharz3", "https://tec.openplanner.team/stops/LXoharz6"], ["https://tec.openplanner.team/stops/N558aaa", "https://tec.openplanner.team/stops/N558amc"], ["https://tec.openplanner.team/stops/LROcent1", "https://tec.openplanner.team/stops/LROhael2"], ["https://tec.openplanner.team/stops/H4fa125a", "https://tec.openplanner.team/stops/H4fa125b"], ["https://tec.openplanner.team/stops/LAWcite3", "https://tec.openplanner.team/stops/LAWcite6"], ["https://tec.openplanner.team/stops/Lhrrhee*", "https://tec.openplanner.team/stops/Lvtpata1"], ["https://tec.openplanner.team/stops/LmNha152", "https://tec.openplanner.team/stops/LmNkess1"], ["https://tec.openplanner.team/stops/LaMjous2", "https://tec.openplanner.team/stops/LaMmark2"], ["https://tec.openplanner.team/stops/LCPscay1", "https://tec.openplanner.team/stops/LCPvign1"], ["https://tec.openplanner.team/stops/LeYgros1", "https://tec.openplanner.team/stops/LeYwess2"], ["https://tec.openplanner.team/stops/LJAferm1", "https://tec.openplanner.team/stops/LJAmari1"], ["https://tec.openplanner.team/stops/Bnivpve1", "https://tec.openplanner.team/stops/Bnivsba1"], ["https://tec.openplanner.team/stops/LOmvill2", "https://tec.openplanner.team/stops/LOmvill3"], ["https://tec.openplanner.team/stops/LJSec--1", "https://tec.openplanner.team/stops/LTHcent1"], ["https://tec.openplanner.team/stops/N532aha", "https://tec.openplanner.team/stops/N532aka"], ["https://tec.openplanner.team/stops/LCEboll1", "https://tec.openplanner.team/stops/LCEec--2"], ["https://tec.openplanner.team/stops/Cmlm2412", "https://tec.openplanner.team/stops/Cmlours2"], ["https://tec.openplanner.team/stops/X687aea", "https://tec.openplanner.team/stops/X687afa"], ["https://tec.openplanner.team/stops/N501aay", "https://tec.openplanner.team/stops/N501aaz"], ["https://tec.openplanner.team/stops/H4lg101a", "https://tec.openplanner.team/stops/H4rm112b"], ["https://tec.openplanner.team/stops/H4mo135a", "https://tec.openplanner.team/stops/H4mo155a"], ["https://tec.openplanner.team/stops/X661awb", "https://tec.openplanner.team/stops/X661aya"], ["https://tec.openplanner.team/stops/N503aka", "https://tec.openplanner.team/stops/N504aaa"], ["https://tec.openplanner.team/stops/H4ga166b", "https://tec.openplanner.team/stops/H4ha171b"], ["https://tec.openplanner.team/stops/Ctarpoi1", "https://tec.openplanner.team/stops/Ctarpoi2"], ["https://tec.openplanner.team/stops/Csbplac1", "https://tec.openplanner.team/stops/H1bi104a"], ["https://tec.openplanner.team/stops/Cbfegch1", "https://tec.openplanner.team/stops/Cbfgare2"], ["https://tec.openplanner.team/stops/Ccabois1", "https://tec.openplanner.team/stops/Cclrgiv1"], ["https://tec.openplanner.team/stops/Bvirmav1", "https://tec.openplanner.team/stops/Bvirmav2"], ["https://tec.openplanner.team/stops/X790ada", "https://tec.openplanner.team/stops/X790aeb"], ["https://tec.openplanner.team/stops/X789aha", "https://tec.openplanner.team/stops/X789ahc"], ["https://tec.openplanner.team/stops/Bmalwvi1", "https://tec.openplanner.team/stops/Boppcar2"], ["https://tec.openplanner.team/stops/LORcomb2", "https://tec.openplanner.team/stops/LORgr8-1"], ["https://tec.openplanner.team/stops/Cciecol2", "https://tec.openplanner.team/stops/Ccivill2"], ["https://tec.openplanner.team/stops/H2mo143a", "https://tec.openplanner.team/stops/H2mo144b"], ["https://tec.openplanner.team/stops/N203aba", "https://tec.openplanner.team/stops/N560aca"], ["https://tec.openplanner.team/stops/Baeggar1", "https://tec.openplanner.team/stops/Baeggar2"], ["https://tec.openplanner.team/stops/H1ho124b", "https://tec.openplanner.team/stops/H1ho136b"], ["https://tec.openplanner.team/stops/N501cva", "https://tec.openplanner.team/stops/N501dab"], ["https://tec.openplanner.team/stops/LBscime1", "https://tec.openplanner.team/stops/LMHtill2"], ["https://tec.openplanner.team/stops/H4ka189b", "https://tec.openplanner.team/stops/H4ka399a"], ["https://tec.openplanner.team/stops/H1ms254e", "https://tec.openplanner.team/stops/H1ms257a"], ["https://tec.openplanner.team/stops/N150aeb", "https://tec.openplanner.team/stops/N150aed"], ["https://tec.openplanner.team/stops/H2fy119b", "https://tec.openplanner.team/stops/H2fy120d"], ["https://tec.openplanner.team/stops/Bbcogar1", "https://tec.openplanner.team/stops/Bbcogar2"], ["https://tec.openplanner.team/stops/N513ana", "https://tec.openplanner.team/stops/N513bfb"], ["https://tec.openplanner.team/stops/LLnec--1", "https://tec.openplanner.team/stops/LOeelbe1"], ["https://tec.openplanner.team/stops/H5at115a", "https://tec.openplanner.team/stops/H5at235b"], ["https://tec.openplanner.team/stops/Baudsju2", "https://tec.openplanner.team/stops/Baudvdr1"], ["https://tec.openplanner.team/stops/H1bo105b", "https://tec.openplanner.team/stops/H1bo110b"], ["https://tec.openplanner.team/stops/H4ch117b", "https://tec.openplanner.team/stops/H4sm247b"], ["https://tec.openplanner.team/stops/Lmomarr2", "https://tec.openplanner.team/stops/Lmomarr4"], ["https://tec.openplanner.team/stops/H1sy137c", "https://tec.openplanner.team/stops/H1sy137d"], ["https://tec.openplanner.team/stops/Cfmtrie1", "https://tec.openplanner.team/stops/Cfmtrie2"], ["https://tec.openplanner.team/stops/N150aga", "https://tec.openplanner.team/stops/N150aha"], ["https://tec.openplanner.team/stops/Lbrfoid1", "https://tec.openplanner.team/stops/Lbrquai1"], ["https://tec.openplanner.team/stops/N501doa", "https://tec.openplanner.team/stops/N501drb"], ["https://tec.openplanner.team/stops/Cchmonu2", "https://tec.openplanner.team/stops/Cchvhau2"], ["https://tec.openplanner.team/stops/X740aeb", "https://tec.openplanner.team/stops/X779aab"], ["https://tec.openplanner.team/stops/LBAcarr2", "https://tec.openplanner.team/stops/LBAtign2"], ["https://tec.openplanner.team/stops/LlNbene2", "https://tec.openplanner.team/stops/LwArabo2"], ["https://tec.openplanner.team/stops/H1hr121a", "https://tec.openplanner.team/stops/H1hr121b"], ["https://tec.openplanner.team/stops/Blmlqlo2", "https://tec.openplanner.team/stops/Blmlvex2"], ["https://tec.openplanner.team/stops/X784aja", "https://tec.openplanner.team/stops/X784akb"], ["https://tec.openplanner.team/stops/H1ms245a", "https://tec.openplanner.team/stops/H1ms260b"], ["https://tec.openplanner.team/stops/Crbecol1", "https://tec.openplanner.team/stops/Crbgare2"], ["https://tec.openplanner.team/stops/Cculgeo2", "https://tec.openplanner.team/stops/NC02aob"], ["https://tec.openplanner.team/stops/X597aqa", "https://tec.openplanner.team/stops/X796agb"], ["https://tec.openplanner.team/stops/Bovejme1", "https://tec.openplanner.team/stops/Bovelge1"], ["https://tec.openplanner.team/stops/X614ava", "https://tec.openplanner.team/stops/X614brb"], ["https://tec.openplanner.team/stops/Cfcgar1", "https://tec.openplanner.team/stops/Cfcpcov1"], ["https://tec.openplanner.team/stops/LBApak2*", "https://tec.openplanner.team/stops/LCEplac2"], ["https://tec.openplanner.team/stops/H4bc102b", "https://tec.openplanner.team/stops/H4bc106a"], ["https://tec.openplanner.team/stops/X784adb", "https://tec.openplanner.team/stops/X784akb"], ["https://tec.openplanner.team/stops/X871aaa", "https://tec.openplanner.team/stops/X872afa"], ["https://tec.openplanner.team/stops/H4ae101a", "https://tec.openplanner.team/stops/H4ef109a"], ["https://tec.openplanner.team/stops/X782aea", "https://tec.openplanner.team/stops/X782afa"], ["https://tec.openplanner.team/stops/Bwbfgar1", "https://tec.openplanner.team/stops/Bwbfgar2"], ["https://tec.openplanner.team/stops/Bspkker1", "https://tec.openplanner.team/stops/H1mk114b"], ["https://tec.openplanner.team/stops/X801aib", "https://tec.openplanner.team/stops/X801aja"], ["https://tec.openplanner.team/stops/Lgrfalc2", "https://tec.openplanner.team/stops/Lgrstou1"], ["https://tec.openplanner.team/stops/N562ala", "https://tec.openplanner.team/stops/N562aoa"], ["https://tec.openplanner.team/stops/NC14aoa", "https://tec.openplanner.team/stops/NC14aod"], ["https://tec.openplanner.team/stops/N506anb", "https://tec.openplanner.team/stops/N506bpa"], ["https://tec.openplanner.team/stops/LMaburg3", "https://tec.openplanner.team/stops/LMapark3"], ["https://tec.openplanner.team/stops/X614agb", "https://tec.openplanner.team/stops/X615bgb"], ["https://tec.openplanner.team/stops/X805aga", "https://tec.openplanner.team/stops/X807aaa"], ["https://tec.openplanner.team/stops/X869aaa", "https://tec.openplanner.team/stops/X869ada"], ["https://tec.openplanner.team/stops/NL81ada", "https://tec.openplanner.team/stops/NL81aeb"], ["https://tec.openplanner.team/stops/X666agb", "https://tec.openplanner.team/stops/X666alb"], ["https://tec.openplanner.team/stops/LHMa2321", "https://tec.openplanner.team/stops/LLC170-1"], ["https://tec.openplanner.team/stops/Cmbcime4", "https://tec.openplanner.team/stops/Crcrlf2"], ["https://tec.openplanner.team/stops/N543bya", "https://tec.openplanner.team/stops/N543byb"], ["https://tec.openplanner.team/stops/LFCotte1", "https://tec.openplanner.team/stops/LFMrijk1"], ["https://tec.openplanner.team/stops/Lsebico2", "https://tec.openplanner.team/stops/Lselibe2"], ["https://tec.openplanner.team/stops/X723aba", "https://tec.openplanner.team/stops/X724ahb"], ["https://tec.openplanner.team/stops/Cfometr1", "https://tec.openplanner.team/stops/CMfont2"], ["https://tec.openplanner.team/stops/LBIairp1", "https://tec.openplanner.team/stops/LBIairp2"], ["https://tec.openplanner.team/stops/LARparc1", "https://tec.openplanner.team/stops/LARparc2"], ["https://tec.openplanner.team/stops/N501cja", "https://tec.openplanner.team/stops/N501cky"], ["https://tec.openplanner.team/stops/H2ha134a", "https://tec.openplanner.team/stops/H2tr245a"], ["https://tec.openplanner.team/stops/N543aia", "https://tec.openplanner.team/stops/N543ara"], ["https://tec.openplanner.team/stops/Clb4bra1", "https://tec.openplanner.team/stops/Clbentr1"], ["https://tec.openplanner.team/stops/Cfaeclu1", "https://tec.openplanner.team/stops/Cfasamb1"], ["https://tec.openplanner.team/stops/LrErauw1", "https://tec.openplanner.team/stops/LrErauw2"], ["https://tec.openplanner.team/stops/Clogfay1", "https://tec.openplanner.team/stops/Clogfay2"], ["https://tec.openplanner.team/stops/X664aga", "https://tec.openplanner.team/stops/X664agb"], ["https://tec.openplanner.team/stops/H4vz369b", "https://tec.openplanner.team/stops/H4vz370b"], ["https://tec.openplanner.team/stops/X982bfa", "https://tec.openplanner.team/stops/X982bfb"], ["https://tec.openplanner.team/stops/X634aia", "https://tec.openplanner.team/stops/X634aja"], ["https://tec.openplanner.team/stops/X752aca", "https://tec.openplanner.team/stops/X758aka"], ["https://tec.openplanner.team/stops/H4ob110b", "https://tec.openplanner.team/stops/H4rc232d"], ["https://tec.openplanner.team/stops/H4ve136b", "https://tec.openplanner.team/stops/H4ve140a"], ["https://tec.openplanner.team/stops/H4ty345a", "https://tec.openplanner.team/stops/H4ty345b"], ["https://tec.openplanner.team/stops/H1bu136a", "https://tec.openplanner.team/stops/H1bu136b"], ["https://tec.openplanner.team/stops/Lfhgare2", "https://tec.openplanner.team/stops/Livpost1"], ["https://tec.openplanner.team/stops/N516aja", "https://tec.openplanner.team/stops/N516ajb"], ["https://tec.openplanner.team/stops/N501bmb", "https://tec.openplanner.team/stops/N501bqb"], ["https://tec.openplanner.team/stops/LVNcoop2", "https://tec.openplanner.team/stops/LVNwanz2"], ["https://tec.openplanner.team/stops/Cgylami2", "https://tec.openplanner.team/stops/Cracave1"], ["https://tec.openplanner.team/stops/X602aaa", "https://tec.openplanner.team/stops/X602aqb"], ["https://tec.openplanner.team/stops/X948akb", "https://tec.openplanner.team/stops/X948apa"], ["https://tec.openplanner.team/stops/Lvepala8", "https://tec.openplanner.team/stops/Lvepris1"], ["https://tec.openplanner.team/stops/LTPplco1", "https://tec.openplanner.team/stops/LTPreco1"], ["https://tec.openplanner.team/stops/Bbrlmez1", "https://tec.openplanner.team/stops/Bbrlvil1"], ["https://tec.openplanner.team/stops/X919amb", "https://tec.openplanner.team/stops/X919ana"], ["https://tec.openplanner.team/stops/LBgcroi2", "https://tec.openplanner.team/stops/LBgcroi3"], ["https://tec.openplanner.team/stops/LACeg--1", "https://tec.openplanner.team/stops/LAvchpl2"], ["https://tec.openplanner.team/stops/N501jaa", "https://tec.openplanner.team/stops/N501jca"], ["https://tec.openplanner.team/stops/LHFec--1", "https://tec.openplanner.team/stops/LHFhard2"], ["https://tec.openplanner.team/stops/Ccircar1", "https://tec.openplanner.team/stops/Ccircar2"], ["https://tec.openplanner.team/stops/LHrbast2", "https://tec.openplanner.team/stops/LHrreal1"], ["https://tec.openplanner.team/stops/NL72afa", "https://tec.openplanner.team/stops/NL80aaa"], ["https://tec.openplanner.team/stops/Lsebove1", "https://tec.openplanner.team/stops/Lsebove2"], ["https://tec.openplanner.team/stops/Lchmarc1", "https://tec.openplanner.team/stops/Lchsaro1"], ["https://tec.openplanner.team/stops/H1qu116b", "https://tec.openplanner.team/stops/H1qu116c"], ["https://tec.openplanner.team/stops/N553aba", "https://tec.openplanner.team/stops/N553ama"], ["https://tec.openplanner.team/stops/Bmrlhan4", "https://tec.openplanner.team/stops/Bmrlhau2"], ["https://tec.openplanner.team/stops/H4ro157b", "https://tec.openplanner.team/stops/H5pe127a"], ["https://tec.openplanner.team/stops/LFRcoun2", "https://tec.openplanner.team/stops/LFRgode1"], ["https://tec.openplanner.team/stops/N543cma", "https://tec.openplanner.team/stops/N543cnb"], ["https://tec.openplanner.team/stops/LORvill1", "https://tec.openplanner.team/stops/LORvill3"], ["https://tec.openplanner.team/stops/X836aab", "https://tec.openplanner.team/stops/X836abb"], ["https://tec.openplanner.team/stops/LaMhe831", "https://tec.openplanner.team/stops/LaMschr1"], ["https://tec.openplanner.team/stops/H1te179a", "https://tec.openplanner.team/stops/H1vt192b"], ["https://tec.openplanner.team/stops/H4ch118a", "https://tec.openplanner.team/stops/H4vx365a"], ["https://tec.openplanner.team/stops/Lwachal1", "https://tec.openplanner.team/stops/Lwachal2"], ["https://tec.openplanner.team/stops/LBLfoxh1", "https://tec.openplanner.team/stops/LMotrem1"], ["https://tec.openplanner.team/stops/Bgemgcw1", "https://tec.openplanner.team/stops/N522ajb"], ["https://tec.openplanner.team/stops/Cmeloti1", "https://tec.openplanner.team/stops/Cwxplac1"], ["https://tec.openplanner.team/stops/H1mm126a", "https://tec.openplanner.team/stops/H1mm132a"], ["https://tec.openplanner.team/stops/H1bl100a", "https://tec.openplanner.team/stops/H1eq117a"], ["https://tec.openplanner.team/stops/N166adb", "https://tec.openplanner.team/stops/N167aeb"], ["https://tec.openplanner.team/stops/LBEoblu1", "https://tec.openplanner.team/stops/Lemfort1"], ["https://tec.openplanner.team/stops/N103aaa", "https://tec.openplanner.team/stops/N103ada"], ["https://tec.openplanner.team/stops/N308alb", "https://tec.openplanner.team/stops/N308bhb"], ["https://tec.openplanner.team/stops/H1ca108a", "https://tec.openplanner.team/stops/H1ca108b"], ["https://tec.openplanner.team/stops/LPLaube1", "https://tec.openplanner.team/stops/LPLaube2"], ["https://tec.openplanner.team/stops/H3bi115a", "https://tec.openplanner.team/stops/H3bi118b"], ["https://tec.openplanner.team/stops/X623aab", "https://tec.openplanner.team/stops/X623aha"], ["https://tec.openplanner.team/stops/X767aca", "https://tec.openplanner.team/stops/X767aia"], ["https://tec.openplanner.team/stops/N563ama", "https://tec.openplanner.team/stops/N570aba"], ["https://tec.openplanner.team/stops/LPAchpl1", "https://tec.openplanner.team/stops/LVSpota2"], ["https://tec.openplanner.team/stops/LHUeuro2", "https://tec.openplanner.team/stops/LHUgodi1"], ["https://tec.openplanner.team/stops/N505alb", "https://tec.openplanner.team/stops/N511ajb"], ["https://tec.openplanner.team/stops/LAMusin1", "https://tec.openplanner.team/stops/LAMusin2"], ["https://tec.openplanner.team/stops/H1mb131a", "https://tec.openplanner.team/stops/H1ro134b"], ["https://tec.openplanner.team/stops/N525ajb", "https://tec.openplanner.team/stops/N525aob"], ["https://tec.openplanner.team/stops/N512agc", "https://tec.openplanner.team/stops/N512agd"], ["https://tec.openplanner.team/stops/X902ala", "https://tec.openplanner.team/stops/X902ama"], ["https://tec.openplanner.team/stops/LTHec--1", "https://tec.openplanner.team/stops/LTHperr3"], ["https://tec.openplanner.team/stops/X670ama", "https://tec.openplanner.team/stops/X670asa"], ["https://tec.openplanner.team/stops/H1br123b", "https://tec.openplanner.team/stops/H1br127b"], ["https://tec.openplanner.team/stops/H4mo155b", "https://tec.openplanner.team/stops/H4mo162a"], ["https://tec.openplanner.team/stops/X608aga", "https://tec.openplanner.team/stops/X608asa"], ["https://tec.openplanner.team/stops/X371ada", "https://tec.openplanner.team/stops/X371adb"], ["https://tec.openplanner.team/stops/Lalwaro1", "https://tec.openplanner.team/stops/Llofort1"], ["https://tec.openplanner.team/stops/LsVhupp1", "https://tec.openplanner.team/stops/LsVhupp2"], ["https://tec.openplanner.team/stops/Llgchal2", "https://tec.openplanner.team/stops/Llgplat2"], ["https://tec.openplanner.team/stops/LCpeg-*", "https://tec.openplanner.team/stops/LLg9---2"], ["https://tec.openplanner.team/stops/X886afa", "https://tec.openplanner.team/stops/X886afb"], ["https://tec.openplanner.team/stops/H4ne137a", "https://tec.openplanner.team/stops/H4ne140a"], ["https://tec.openplanner.team/stops/H4rm109a", "https://tec.openplanner.team/stops/H4rm109b"], ["https://tec.openplanner.team/stops/N209adb", "https://tec.openplanner.team/stops/N209aea"], ["https://tec.openplanner.team/stops/H3bi110a", "https://tec.openplanner.team/stops/H3bi112a"], ["https://tec.openplanner.team/stops/LTHcime2", "https://tec.openplanner.team/stops/LTHjevo1"], ["https://tec.openplanner.team/stops/Bincbbo4", "https://tec.openplanner.team/stops/Binccha1"], ["https://tec.openplanner.team/stops/H1ms266a", "https://tec.openplanner.team/stops/H1ms367a"], ["https://tec.openplanner.team/stops/X608aob", "https://tec.openplanner.team/stops/X608apb"], ["https://tec.openplanner.team/stops/Blascsl1", "https://tec.openplanner.team/stops/Brixbai2"], ["https://tec.openplanner.team/stops/X825aba", "https://tec.openplanner.team/stops/X825ada"], ["https://tec.openplanner.team/stops/LHolexh1", "https://tec.openplanner.team/stops/LHZbren1"], ["https://tec.openplanner.team/stops/H3so173a", "https://tec.openplanner.team/stops/H3so184a"], ["https://tec.openplanner.team/stops/Brixchw1", "https://tec.openplanner.team/stops/Brixdec1"], ["https://tec.openplanner.team/stops/H4hu119b", "https://tec.openplanner.team/stops/H4hu121a"], ["https://tec.openplanner.team/stops/N563aoa", "https://tec.openplanner.team/stops/N563aob"], ["https://tec.openplanner.team/stops/N134aab", "https://tec.openplanner.team/stops/N134adb"], ["https://tec.openplanner.team/stops/Bpielom2", "https://tec.openplanner.team/stops/Bsjgegl2"], ["https://tec.openplanner.team/stops/LFOcomb4", "https://tec.openplanner.team/stops/LFOmc--1"], ["https://tec.openplanner.team/stops/Bnivsoi1", "https://tec.openplanner.team/stops/Bnivsoi2"], ["https://tec.openplanner.team/stops/Lalchar1", "https://tec.openplanner.team/stops/Lloauto1"], ["https://tec.openplanner.team/stops/X804aea", "https://tec.openplanner.team/stops/X804bea"], ["https://tec.openplanner.team/stops/Bwavgar7", "https://tec.openplanner.team/stops/Bwavmes2"], ["https://tec.openplanner.team/stops/LDOchev1", "https://tec.openplanner.team/stops/LDOgare1"], ["https://tec.openplanner.team/stops/X601aza", "https://tec.openplanner.team/stops/X601bbd"], ["https://tec.openplanner.team/stops/H1fa118b", "https://tec.openplanner.team/stops/H1pe132a"], ["https://tec.openplanner.team/stops/N308ayb", "https://tec.openplanner.team/stops/N308aza"], ["https://tec.openplanner.team/stops/H1bo101a", "https://tec.openplanner.team/stops/H1bo109a"], ["https://tec.openplanner.team/stops/N236aea", "https://tec.openplanner.team/stops/N254ada"], ["https://tec.openplanner.team/stops/X756ahb", "https://tec.openplanner.team/stops/X757ama"], ["https://tec.openplanner.team/stops/H1mh113a", "https://tec.openplanner.team/stops/H1mh114a"], ["https://tec.openplanner.team/stops/X780adb", "https://tec.openplanner.team/stops/X780aga"], ["https://tec.openplanner.team/stops/Btslenf2", "https://tec.openplanner.team/stops/Btslnil2"], ["https://tec.openplanner.team/stops/Bfelcsa1", "https://tec.openplanner.team/stops/Bfelpla2"], ["https://tec.openplanner.team/stops/Bengvma1", "https://tec.openplanner.team/stops/Bengvma2"], ["https://tec.openplanner.team/stops/H3so176a", "https://tec.openplanner.team/stops/H3so176b"], ["https://tec.openplanner.team/stops/H1en104a", "https://tec.openplanner.team/stops/H1en104d"], ["https://tec.openplanner.team/stops/N232bea", "https://tec.openplanner.team/stops/N232bva"], ["https://tec.openplanner.team/stops/LJAherb1", "https://tec.openplanner.team/stops/LJAherb2"], ["https://tec.openplanner.team/stops/X818alb", "https://tec.openplanner.team/stops/X818amb"], ["https://tec.openplanner.team/stops/H4bu109b", "https://tec.openplanner.team/stops/H5el111b"], ["https://tec.openplanner.team/stops/Cml3fon1", "https://tec.openplanner.team/stops/Cmlceri2"], ["https://tec.openplanner.team/stops/X261aab", "https://tec.openplanner.team/stops/X261abb"], ["https://tec.openplanner.team/stops/Bcercab1", "https://tec.openplanner.team/stops/Bcerpco2"], ["https://tec.openplanner.team/stops/Brebblo1", "https://tec.openplanner.team/stops/Brebras2"], ["https://tec.openplanner.team/stops/LSzeg--1", "https://tec.openplanner.team/stops/LSzsurl1"], ["https://tec.openplanner.team/stops/H1gi119a", "https://tec.openplanner.team/stops/H1gi119b"], ["https://tec.openplanner.team/stops/LSyec--2", "https://tec.openplanner.team/stops/LSythie2"], ["https://tec.openplanner.team/stops/N501jfa", "https://tec.openplanner.team/stops/N521aha"], ["https://tec.openplanner.team/stops/N536aaa", "https://tec.openplanner.team/stops/N536aab"], ["https://tec.openplanner.team/stops/Baegpon1", "https://tec.openplanner.team/stops/Baegpon2"], ["https://tec.openplanner.team/stops/X904aib", "https://tec.openplanner.team/stops/X943afa"], ["https://tec.openplanner.team/stops/H1ho132a", "https://tec.openplanner.team/stops/H1ho135b"], ["https://tec.openplanner.team/stops/N116aab", "https://tec.openplanner.team/stops/N116abb"], ["https://tec.openplanner.team/stops/N103ahb", "https://tec.openplanner.team/stops/N106afa"], ["https://tec.openplanner.team/stops/Bwatcbo1", "https://tec.openplanner.team/stops/Bwatcli1"], ["https://tec.openplanner.team/stops/LnEfrie2", "https://tec.openplanner.team/stops/LrDhund1"], ["https://tec.openplanner.team/stops/H1eu101b", "https://tec.openplanner.team/stops/H1eu105b"], ["https://tec.openplanner.team/stops/LFdeg--2", "https://tec.openplanner.team/stops/LLMcouv1"], ["https://tec.openplanner.team/stops/X904aga", "https://tec.openplanner.team/stops/X904agb"], ["https://tec.openplanner.team/stops/LOdmonu1", "https://tec.openplanner.team/stops/LOdmonu2"], ["https://tec.openplanner.team/stops/Bohnhan2", "https://tec.openplanner.team/stops/Bohnman1"], ["https://tec.openplanner.team/stops/X890aaa", "https://tec.openplanner.team/stops/X890aca"], ["https://tec.openplanner.team/stops/LHNhall2", "https://tec.openplanner.team/stops/LHNhall3"], ["https://tec.openplanner.team/stops/N529aha", "https://tec.openplanner.team/stops/N529aia"], ["https://tec.openplanner.team/stops/LBEoblu2", "https://tec.openplanner.team/stops/Lcacris1"], ["https://tec.openplanner.team/stops/H1ba111a", "https://tec.openplanner.team/stops/H1hh112b"], ["https://tec.openplanner.team/stops/N506ahb", "https://tec.openplanner.team/stops/N506ala"], ["https://tec.openplanner.team/stops/LVLgotr3", "https://tec.openplanner.team/stops/LVLgrum1"], ["https://tec.openplanner.team/stops/Landolh3", "https://tec.openplanner.team/stops/Lanhoud2"], ["https://tec.openplanner.team/stops/X763aba", "https://tec.openplanner.team/stops/X763aca"], ["https://tec.openplanner.team/stops/N534aqb", "https://tec.openplanner.team/stops/N534awb"], ["https://tec.openplanner.team/stops/H1gy116a", "https://tec.openplanner.team/stops/H5fl101a"], ["https://tec.openplanner.team/stops/X761aba", "https://tec.openplanner.team/stops/X761abb"], ["https://tec.openplanner.team/stops/LCPaube2", "https://tec.openplanner.team/stops/LCPhall1"], ["https://tec.openplanner.team/stops/Cwfaldi1", "https://tec.openplanner.team/stops/Cwfbarr2"], ["https://tec.openplanner.team/stops/N149aha", "https://tec.openplanner.team/stops/N149ahb"], ["https://tec.openplanner.team/stops/LAnchat1", "https://tec.openplanner.team/stops/LAncoup1"], ["https://tec.openplanner.team/stops/H4ty325a", "https://tec.openplanner.team/stops/H4ty325b"], ["https://tec.openplanner.team/stops/LCPaywa2", "https://tec.openplanner.team/stops/LSpxhig1"], ["https://tec.openplanner.team/stops/LFdchau3", "https://tec.openplanner.team/stops/LFdeg--4"], ["https://tec.openplanner.team/stops/Lbrnanc2", "https://tec.openplanner.team/stops/Llgplai1"], ["https://tec.openplanner.team/stops/Lsebelv1", "https://tec.openplanner.team/stops/Lsehcoc2"], ["https://tec.openplanner.team/stops/H1pw123a", "https://tec.openplanner.team/stops/H1wa146b"], ["https://tec.openplanner.team/stops/Ctubpos4", "https://tec.openplanner.team/stops/Cturoge1"], ["https://tec.openplanner.team/stops/Ladneuv1", "https://tec.openplanner.team/stops/Lveinva1"], ["https://tec.openplanner.team/stops/LSkchwa2", "https://tec.openplanner.team/stops/LSkcomb2"], ["https://tec.openplanner.team/stops/Ladwooz1", "https://tec.openplanner.team/stops/Ladxhen1"], ["https://tec.openplanner.team/stops/N511amb", "https://tec.openplanner.team/stops/N511anb"], ["https://tec.openplanner.team/stops/Btsleco2", "https://tec.openplanner.team/stops/Btslegl2"], ["https://tec.openplanner.team/stops/LHTcent2", "https://tec.openplanner.team/stops/LHThall2"], ["https://tec.openplanner.team/stops/NL74acb", "https://tec.openplanner.team/stops/NL74ada"], ["https://tec.openplanner.team/stops/Lhubouq1", "https://tec.openplanner.team/stops/Lhuchev1"], ["https://tec.openplanner.team/stops/CMpuis1", "https://tec.openplanner.team/stops/CMpuis2"], ["https://tec.openplanner.team/stops/LCHeg--1", "https://tec.openplanner.team/stops/LCHfond1"], ["https://tec.openplanner.team/stops/LMIbois1", "https://tec.openplanner.team/stops/LSOathe1"], ["https://tec.openplanner.team/stops/N137afb", "https://tec.openplanner.team/stops/N137aga"], ["https://tec.openplanner.team/stops/X952abb", "https://tec.openplanner.team/stops/X952akb"], ["https://tec.openplanner.team/stops/H4vx366a", "https://tec.openplanner.team/stops/H4vx366b"], ["https://tec.openplanner.team/stops/N570aga", "https://tec.openplanner.team/stops/N570agb"], ["https://tec.openplanner.team/stops/Bernpla1", "https://tec.openplanner.team/stops/Bernpon1"], ["https://tec.openplanner.team/stops/Lseverh1", "https://tec.openplanner.team/stops/Lseverh2"], ["https://tec.openplanner.team/stops/X658ada", "https://tec.openplanner.team/stops/X658adb"], ["https://tec.openplanner.team/stops/Bbiehss2", "https://tec.openplanner.team/stops/Blontry1"], ["https://tec.openplanner.team/stops/Bwategb1", "https://tec.openplanner.team/stops/Bwategb2"], ["https://tec.openplanner.team/stops/X636ada", "https://tec.openplanner.team/stops/X636aea"], ["https://tec.openplanner.team/stops/Cmlange1", "https://tec.openplanner.team/stops/Cmlpbay2"], ["https://tec.openplanner.team/stops/N513aaa", "https://tec.openplanner.team/stops/N513ahb"], ["https://tec.openplanner.team/stops/X782ala", "https://tec.openplanner.team/stops/X782ana"], ["https://tec.openplanner.team/stops/LLReg--2", "https://tec.openplanner.team/stops/LLRgdma2"], ["https://tec.openplanner.team/stops/Lprorph1", "https://tec.openplanner.team/stops/Lprperr1"], ["https://tec.openplanner.team/stops/X725asa", "https://tec.openplanner.team/stops/X767aib"], ["https://tec.openplanner.team/stops/LHAstal2", "https://tec.openplanner.team/stops/LHTmoul2"], ["https://tec.openplanner.team/stops/Cmx4che1", "https://tec.openplanner.team/stops/Cmxpleg2"], ["https://tec.openplanner.team/stops/H4oq224a", "https://tec.openplanner.team/stops/H4ty331b"], ["https://tec.openplanner.team/stops/Blkbavo1", "https://tec.openplanner.team/stops/Bucceng2"], ["https://tec.openplanner.team/stops/H1gh151b", "https://tec.openplanner.team/stops/H1je212a"], ["https://tec.openplanner.team/stops/Cgdfras2", "https://tec.openplanner.team/stops/Csylaha2"], ["https://tec.openplanner.team/stops/H1hy128a", "https://tec.openplanner.team/stops/H1hy130b"], ["https://tec.openplanner.team/stops/H2ll172a", "https://tec.openplanner.team/stops/H2ll201b"], ["https://tec.openplanner.team/stops/Blsmcha2", "https://tec.openplanner.team/stops/Bpelegl2"], ["https://tec.openplanner.team/stops/Bwaab121", "https://tec.openplanner.team/stops/LWSstat1"], ["https://tec.openplanner.team/stops/Baegpon1", "https://tec.openplanner.team/stops/Bramcar1"], ["https://tec.openplanner.team/stops/Cfccabi1", "https://tec.openplanner.team/stops/Cfcsaut3"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Lanstat1"], ["https://tec.openplanner.team/stops/X806aab", "https://tec.openplanner.team/stops/X808aib"], ["https://tec.openplanner.team/stops/H1gy111a", "https://tec.openplanner.team/stops/H1le122d"], ["https://tec.openplanner.team/stops/N515aib", "https://tec.openplanner.team/stops/N515ajb"], ["https://tec.openplanner.team/stops/X897aaa", "https://tec.openplanner.team/stops/X898ama"], ["https://tec.openplanner.team/stops/X923aja", "https://tec.openplanner.team/stops/X923ajb"], ["https://tec.openplanner.team/stops/Cwgcroi1", "https://tec.openplanner.team/stops/Cwgcroi2"], ["https://tec.openplanner.team/stops/H4hq131b", "https://tec.openplanner.team/stops/H4ms145a"], ["https://tec.openplanner.team/stops/N501dzb", "https://tec.openplanner.team/stops/N501eib"], ["https://tec.openplanner.team/stops/Cmiegli1", "https://tec.openplanner.team/stops/Cmitrie2"], ["https://tec.openplanner.team/stops/NC11aka", "https://tec.openplanner.team/stops/NC11alb"], ["https://tec.openplanner.team/stops/H1lb136a", "https://tec.openplanner.team/stops/H1lb136b"], ["https://tec.openplanner.team/stops/LrAiter1", "https://tec.openplanner.team/stops/LrApley2"], ["https://tec.openplanner.team/stops/N236aea", "https://tec.openplanner.team/stops/N236afb"], ["https://tec.openplanner.team/stops/LROcham1", "https://tec.openplanner.team/stops/LROcham2"], ["https://tec.openplanner.team/stops/LTPwann2", "https://tec.openplanner.team/stops/X542afa"], ["https://tec.openplanner.team/stops/Cmregli3", "https://tec.openplanner.team/stops/N162aba"], ["https://tec.openplanner.team/stops/X224afb", "https://tec.openplanner.team/stops/X394aeb"], ["https://tec.openplanner.team/stops/Lagbeno5", "https://tec.openplanner.team/stops/Llgtill2"], ["https://tec.openplanner.team/stops/Brxmcna2", "https://tec.openplanner.team/stops/Brxmhai1"], ["https://tec.openplanner.team/stops/N121aca", "https://tec.openplanner.team/stops/N121acb"], ["https://tec.openplanner.team/stops/LvAschr2", "https://tec.openplanner.team/stops/LvAschw1"], ["https://tec.openplanner.team/stops/H4ir167a", "https://tec.openplanner.team/stops/H4og209b"], ["https://tec.openplanner.team/stops/Ccychco2", "https://tec.openplanner.team/stops/NH01agd"], ["https://tec.openplanner.team/stops/H4hu116a", "https://tec.openplanner.team/stops/H4hu121b"], ["https://tec.openplanner.team/stops/LMsalen2", "https://tec.openplanner.team/stops/LMsheid1"], ["https://tec.openplanner.team/stops/Ltibure2", "https://tec.openplanner.team/stops/Ltibure3"], ["https://tec.openplanner.team/stops/LLrquar1", "https://tec.openplanner.team/stops/LSXbecc1"], ["https://tec.openplanner.team/stops/X818acb", "https://tec.openplanner.team/stops/X818afa"], ["https://tec.openplanner.team/stops/Cjuecha2", "https://tec.openplanner.team/stops/Cjulamb3"], ["https://tec.openplanner.team/stops/Bdvm4ca2", "https://tec.openplanner.team/stops/Bdvmsar1"], ["https://tec.openplanner.team/stops/H4bq154b", "https://tec.openplanner.team/stops/H4cp103b"], ["https://tec.openplanner.team/stops/LDLbaye2", "https://tec.openplanner.team/stops/LSEquar2"], ["https://tec.openplanner.team/stops/N573aea", "https://tec.openplanner.team/stops/N573aha"], ["https://tec.openplanner.team/stops/N118acd", "https://tec.openplanner.team/stops/N118afa"], ["https://tec.openplanner.team/stops/X750ana", "https://tec.openplanner.team/stops/X750aob"], ["https://tec.openplanner.team/stops/X762aab", "https://tec.openplanner.team/stops/X763agb"], ["https://tec.openplanner.team/stops/N547aia", "https://tec.openplanner.team/stops/N547ajb"], ["https://tec.openplanner.team/stops/N138aca", "https://tec.openplanner.team/stops/N138aea"], ["https://tec.openplanner.team/stops/LVeeg--1", "https://tec.openplanner.team/stops/LVevill2"], ["https://tec.openplanner.team/stops/N501gfa", "https://tec.openplanner.team/stops/N501jca"], ["https://tec.openplanner.team/stops/H1pa106b", "https://tec.openplanner.team/stops/H1pa106c"], ["https://tec.openplanner.team/stops/Bbrycar2", "https://tec.openplanner.team/stops/N584ayb"], ["https://tec.openplanner.team/stops/LAYharz2", "https://tec.openplanner.team/stops/LHrprie1"], ["https://tec.openplanner.team/stops/N549aeb", "https://tec.openplanner.team/stops/N550acb"], ["https://tec.openplanner.team/stops/X992aga", "https://tec.openplanner.team/stops/X992akb"], ["https://tec.openplanner.team/stops/LHuetat1", "https://tec.openplanner.team/stops/LHuherm1"], ["https://tec.openplanner.team/stops/Bnivga22", "https://tec.openplanner.team/stops/Bnivga62"], ["https://tec.openplanner.team/stops/N245aba", "https://tec.openplanner.team/stops/N245abb"], ["https://tec.openplanner.team/stops/LJAsuri1", "https://tec.openplanner.team/stops/LSUhage2"], ["https://tec.openplanner.team/stops/NL77ajb", "https://tec.openplanner.team/stops/NL77akb"], ["https://tec.openplanner.team/stops/Lgrfass2", "https://tec.openplanner.team/stops/Lgrfrhe2"], ["https://tec.openplanner.team/stops/X770aga", "https://tec.openplanner.team/stops/X770agb"], ["https://tec.openplanner.team/stops/Lvealbe1", "https://tec.openplanner.team/stops/Lvealbe2"], ["https://tec.openplanner.team/stops/Baegd742", "https://tec.openplanner.team/stops/Bgercen1"], ["https://tec.openplanner.team/stops/X750aga", "https://tec.openplanner.team/stops/X750bna"], ["https://tec.openplanner.team/stops/N160aga", "https://tec.openplanner.team/stops/N160agb"], ["https://tec.openplanner.team/stops/N565aka", "https://tec.openplanner.team/stops/N565ala"], ["https://tec.openplanner.team/stops/Cmbcime3", "https://tec.openplanner.team/stops/Cmbcime4"], ["https://tec.openplanner.team/stops/X638ajb", "https://tec.openplanner.team/stops/X638arb"], ["https://tec.openplanner.team/stops/H4ma203a", "https://tec.openplanner.team/stops/H4ma203b"], ["https://tec.openplanner.team/stops/X940abb", "https://tec.openplanner.team/stops/X940acb"], ["https://tec.openplanner.team/stops/LENarde1", "https://tec.openplanner.team/stops/LENarde2"], ["https://tec.openplanner.team/stops/LBEbelf2", "https://tec.openplanner.team/stops/LNipla4"], ["https://tec.openplanner.team/stops/H4bs110a", "https://tec.openplanner.team/stops/H5pe139b"], ["https://tec.openplanner.team/stops/H1hr124a", "https://tec.openplanner.team/stops/H1hr124b"], ["https://tec.openplanner.team/stops/N507aka", "https://tec.openplanner.team/stops/N507ama"], ["https://tec.openplanner.team/stops/Buccvoi2", "https://tec.openplanner.team/stops/Buccvoi3"], ["https://tec.openplanner.team/stops/H1ms307a", "https://tec.openplanner.team/stops/H1ms314a"], ["https://tec.openplanner.team/stops/LBmbara1", "https://tec.openplanner.team/stops/LBmbara2"], ["https://tec.openplanner.team/stops/N557aea", "https://tec.openplanner.team/stops/N560adb"], ["https://tec.openplanner.team/stops/Lfhncha2", "https://tec.openplanner.team/stops/Lfhtrca2"], ["https://tec.openplanner.team/stops/N562aha", "https://tec.openplanner.team/stops/N562azb"], ["https://tec.openplanner.team/stops/X809ada", "https://tec.openplanner.team/stops/X858aba"], ["https://tec.openplanner.team/stops/X774ada", "https://tec.openplanner.team/stops/X774adb"], ["https://tec.openplanner.team/stops/Cgzmira2", "https://tec.openplanner.team/stops/Cgzmira3"], ["https://tec.openplanner.team/stops/H4bo178b", "https://tec.openplanner.team/stops/H4gr109a"], ["https://tec.openplanner.team/stops/LCFchir1", "https://tec.openplanner.team/stops/LCPbatt2"], ["https://tec.openplanner.team/stops/Cmarroy1", "https://tec.openplanner.team/stops/Cmarroy2"], ["https://tec.openplanner.team/stops/LSTparf1", "https://tec.openplanner.team/stops/LWneg--1"], ["https://tec.openplanner.team/stops/N538ayb", "https://tec.openplanner.team/stops/N538aza"], ["https://tec.openplanner.team/stops/X796aea", "https://tec.openplanner.team/stops/X796afb"], ["https://tec.openplanner.team/stops/H1te177b", "https://tec.openplanner.team/stops/H1te186b"], ["https://tec.openplanner.team/stops/Ccybouc2", "https://tec.openplanner.team/stops/Ccypn1"], ["https://tec.openplanner.team/stops/LArmeni1", "https://tec.openplanner.team/stops/X784ahb"], ["https://tec.openplanner.team/stops/H1ne140a", "https://tec.openplanner.team/stops/H1ne140b"], ["https://tec.openplanner.team/stops/N542aia", "https://tec.openplanner.team/stops/N542aib"], ["https://tec.openplanner.team/stops/X806aja", "https://tec.openplanner.team/stops/X808aha"], ["https://tec.openplanner.team/stops/N135aja", "https://tec.openplanner.team/stops/N135aqb"], ["https://tec.openplanner.team/stops/LSceg--2", "https://tec.openplanner.team/stops/LScread1"], ["https://tec.openplanner.team/stops/Canecbr1", "https://tec.openplanner.team/stops/Canlemo2"], ["https://tec.openplanner.team/stops/Bspkker2", "https://tec.openplanner.team/stops/Bspkkhe1"], ["https://tec.openplanner.team/stops/LAMrich1", "https://tec.openplanner.team/stops/LAMrich2"], ["https://tec.openplanner.team/stops/LFPkast2", "https://tec.openplanner.team/stops/LFPknap1"], ["https://tec.openplanner.team/stops/LrAplat1", "https://tec.openplanner.team/stops/LrAplat2"], ["https://tec.openplanner.team/stops/H1fr119a", "https://tec.openplanner.team/stops/H1fr119b"], ["https://tec.openplanner.team/stops/Lghcfer1", "https://tec.openplanner.team/stops/Lghcfer2"], ["https://tec.openplanner.team/stops/Lousimo1", "https://tec.openplanner.team/stops/Louvand1"], ["https://tec.openplanner.team/stops/X636aia", "https://tec.openplanner.team/stops/X636ama"], ["https://tec.openplanner.team/stops/Bnivbau2", "https://tec.openplanner.team/stops/Bnivchh1"], ["https://tec.openplanner.team/stops/X667aca", "https://tec.openplanner.team/stops/X667aea"], ["https://tec.openplanner.team/stops/H4ff120a", "https://tec.openplanner.team/stops/H4ff122a"], ["https://tec.openplanner.team/stops/H1mj127a", "https://tec.openplanner.team/stops/H1mj128b"], ["https://tec.openplanner.team/stops/N117aka", "https://tec.openplanner.team/stops/N117bba"], ["https://tec.openplanner.team/stops/H5bl124a", "https://tec.openplanner.team/stops/H5bl124b"], ["https://tec.openplanner.team/stops/X907ada", "https://tec.openplanner.team/stops/X907ajb"], ["https://tec.openplanner.team/stops/H1le127a", "https://tec.openplanner.team/stops/H1le129a"], ["https://tec.openplanner.team/stops/H4bu109a", "https://tec.openplanner.team/stops/H4fa128b"], ["https://tec.openplanner.team/stops/X784aca", "https://tec.openplanner.team/stops/X784agb"], ["https://tec.openplanner.team/stops/Bptbbie2", "https://tec.openplanner.team/stops/Brxmcna1"], ["https://tec.openplanner.team/stops/Cfrplac4", "https://tec.openplanner.team/stops/Cfrtry2"], ["https://tec.openplanner.team/stops/Blmlbif1", "https://tec.openplanner.team/stops/Blmlfau2"], ["https://tec.openplanner.team/stops/H1mc127a", "https://tec.openplanner.team/stops/H1mc129a"], ["https://tec.openplanner.team/stops/H4hx111a", "https://tec.openplanner.team/stops/H4hx112b"], ["https://tec.openplanner.team/stops/H2ch100a", "https://tec.openplanner.team/stops/H2ch100b"], ["https://tec.openplanner.team/stops/X664abb", "https://tec.openplanner.team/stops/X664afb"], ["https://tec.openplanner.team/stops/LSMchat1", "https://tec.openplanner.team/stops/LTPhenr2"], ["https://tec.openplanner.team/stops/N501neb", "https://tec.openplanner.team/stops/N501ney"], ["https://tec.openplanner.team/stops/LAUabat2", "https://tec.openplanner.team/stops/LAUcose2"], ["https://tec.openplanner.team/stops/H4mv190a", "https://tec.openplanner.team/stops/H4mv192b"], ["https://tec.openplanner.team/stops/Lpegole2", "https://tec.openplanner.team/stops/LWecorn2"], ["https://tec.openplanner.team/stops/LhEauto2", "https://tec.openplanner.team/stops/LhEherb2"], ["https://tec.openplanner.team/stops/X725ajb", "https://tec.openplanner.team/stops/X725ala"], ["https://tec.openplanner.team/stops/N425adb", "https://tec.openplanner.team/stops/N425aea"], ["https://tec.openplanner.team/stops/Cgpchgo2", "https://tec.openplanner.team/stops/H2gy100b"], ["https://tec.openplanner.team/stops/H2hl110b", "https://tec.openplanner.team/stops/H2sv216a"], ["https://tec.openplanner.team/stops/Blthwav2", "https://tec.openplanner.team/stops/Bmlngvi2"], ["https://tec.openplanner.team/stops/N549aab", "https://tec.openplanner.team/stops/N549aca"], ["https://tec.openplanner.team/stops/N576aia", "https://tec.openplanner.team/stops/N576aib"], ["https://tec.openplanner.team/stops/Lousite1", "https://tec.openplanner.team/stops/Lousite3"], ["https://tec.openplanner.team/stops/N501gia", "https://tec.openplanner.team/stops/N501gnb"], ["https://tec.openplanner.team/stops/LETec--2", "https://tec.openplanner.team/stops/LETeg--2"], ["https://tec.openplanner.team/stops/H3br101a", "https://tec.openplanner.team/stops/H3br101b"], ["https://tec.openplanner.team/stops/H4ty302b", "https://tec.openplanner.team/stops/H4ty323a"], ["https://tec.openplanner.team/stops/Crcegli4", "https://tec.openplanner.team/stops/Crclorc1"], ["https://tec.openplanner.team/stops/LSZchpl1", "https://tec.openplanner.team/stops/LSZchpl2"], ["https://tec.openplanner.team/stops/LTEkl121", "https://tec.openplanner.team/stops/LTEkl161"], ["https://tec.openplanner.team/stops/Lccawir2", "https://tec.openplanner.team/stops/Lccawir4"], ["https://tec.openplanner.team/stops/Cctathe1", "https://tec.openplanner.team/stops/Cctgaux2"], ["https://tec.openplanner.team/stops/Bbstcha1", "https://tec.openplanner.team/stops/Bbstdpa1"], ["https://tec.openplanner.team/stops/H2sb221b", "https://tec.openplanner.team/stops/H2tr248a"], ["https://tec.openplanner.team/stops/N204aib", "https://tec.openplanner.team/stops/N204aja"], ["https://tec.openplanner.team/stops/LREchif2", "https://tec.openplanner.team/stops/LRErive1"], ["https://tec.openplanner.team/stops/LlZkirc1", "https://tec.openplanner.team/stops/LlZkirc2"], ["https://tec.openplanner.team/stops/Llgcfra1", "https://tec.openplanner.team/stops/Llgerac2"], ["https://tec.openplanner.team/stops/LaLkabi2", "https://tec.openplanner.team/stops/LmAkirc2"], ["https://tec.openplanner.team/stops/LERdeho2", "https://tec.openplanner.team/stops/LHseg--3"], ["https://tec.openplanner.team/stops/Lvtlomb2", "https://tec.openplanner.team/stops/Lvtvici1"], ["https://tec.openplanner.team/stops/Broncli2", "https://tec.openplanner.team/stops/Broneco2"], ["https://tec.openplanner.team/stops/LBjcent1", "https://tec.openplanner.team/stops/X576aib"], ["https://tec.openplanner.team/stops/Cgylouv2", "https://tec.openplanner.team/stops/Cgymetr2"], ["https://tec.openplanner.team/stops/X640asa", "https://tec.openplanner.team/stops/X640ata"], ["https://tec.openplanner.team/stops/X812asa", "https://tec.openplanner.team/stops/X812bab"], ["https://tec.openplanner.team/stops/H1em104b", "https://tec.openplanner.team/stops/H1em111c"], ["https://tec.openplanner.team/stops/X901bca", "https://tec.openplanner.team/stops/X943aba"], ["https://tec.openplanner.team/stops/X715aab", "https://tec.openplanner.team/stops/X715acb"], ["https://tec.openplanner.team/stops/LGLbrus2", "https://tec.openplanner.team/stops/LGLgeer2"], ["https://tec.openplanner.team/stops/H1hn205b", "https://tec.openplanner.team/stops/H1hn365b"], ["https://tec.openplanner.team/stops/H4ce101a", "https://tec.openplanner.team/stops/H4ce102b"], ["https://tec.openplanner.team/stops/H1te173a", "https://tec.openplanner.team/stops/H1te173b"], ["https://tec.openplanner.team/stops/H4ty311a", "https://tec.openplanner.team/stops/H4ty311b"], ["https://tec.openplanner.team/stops/Cmqbert1", "https://tec.openplanner.team/stops/N425abb"], ["https://tec.openplanner.team/stops/X637aea", "https://tec.openplanner.team/stops/X637amb"], ["https://tec.openplanner.team/stops/X943aba", "https://tec.openplanner.team/stops/X943acb"], ["https://tec.openplanner.team/stops/Btanbth1", "https://tec.openplanner.team/stops/Btanvil2"], ["https://tec.openplanner.team/stops/Canmonu1", "https://tec.openplanner.team/stops/Canterr2"], ["https://tec.openplanner.team/stops/LFUfonc2", "https://tec.openplanner.team/stops/LWDsott4"], ["https://tec.openplanner.team/stops/X750agb", "https://tec.openplanner.team/stops/X750avb"], ["https://tec.openplanner.team/stops/LVEeg--1", "https://tec.openplanner.team/stops/LVEfize1"], ["https://tec.openplanner.team/stops/Bnivbpe1", "https://tec.openplanner.team/stops/Bnivbpe2"], ["https://tec.openplanner.team/stops/Bbeabme1", "https://tec.openplanner.team/stops/Bbeabme2"], ["https://tec.openplanner.team/stops/LLrmaq-2", "https://tec.openplanner.team/stops/LLrrmaq1"], ["https://tec.openplanner.team/stops/LvA30--2", "https://tec.openplanner.team/stops/LwEdorf1"], ["https://tec.openplanner.team/stops/LNIdoma1", "https://tec.openplanner.team/stops/LSPsauv1"], ["https://tec.openplanner.team/stops/X358aea", "https://tec.openplanner.team/stops/X994adb"], ["https://tec.openplanner.team/stops/LBgbaga1", "https://tec.openplanner.team/stops/LBgnach1"], ["https://tec.openplanner.team/stops/LOdbuis2", "https://tec.openplanner.team/stops/LVlleme4"], ["https://tec.openplanner.team/stops/LCObouh2", "https://tec.openplanner.team/stops/Lpejonc1"], ["https://tec.openplanner.team/stops/Cjojonc1", "https://tec.openplanner.team/stops/NC24akb"], ["https://tec.openplanner.team/stops/N501cky", "https://tec.openplanner.team/stops/N501ckz"], ["https://tec.openplanner.team/stops/H4an104a", "https://tec.openplanner.team/stops/H4an112a"], ["https://tec.openplanner.team/stops/X837agb", "https://tec.openplanner.team/stops/X837ahb"], ["https://tec.openplanner.team/stops/H1bl105a", "https://tec.openplanner.team/stops/H1eq116a"], ["https://tec.openplanner.team/stops/LhPheps1", "https://tec.openplanner.team/stops/LmRkreu4"], ["https://tec.openplanner.team/stops/Ladboti1", "https://tec.openplanner.team/stops/Ladotto2"], ["https://tec.openplanner.team/stops/N506aaa", "https://tec.openplanner.team/stops/N506bva"], ["https://tec.openplanner.team/stops/N501fda", "https://tec.openplanner.team/stops/N501fdb"], ["https://tec.openplanner.team/stops/H1mj131a", "https://tec.openplanner.team/stops/H1mj131b"], ["https://tec.openplanner.team/stops/N551aga", "https://tec.openplanner.team/stops/N551agb"], ["https://tec.openplanner.team/stops/LHMcruc2", "https://tec.openplanner.team/stops/LHMhof-2"], ["https://tec.openplanner.team/stops/H4ma201a", "https://tec.openplanner.team/stops/H4ma205a"], ["https://tec.openplanner.team/stops/LCPlebl1", "https://tec.openplanner.team/stops/LCPlebl2"], ["https://tec.openplanner.team/stops/N160ada", "https://tec.openplanner.team/stops/N160aeb"], ["https://tec.openplanner.team/stops/Bllngar4", "https://tec.openplanner.team/stops/Bllngle1"], ["https://tec.openplanner.team/stops/Cgzdeve1", "https://tec.openplanner.team/stops/Cmyjaci2"], ["https://tec.openplanner.team/stops/H1so146a", "https://tec.openplanner.team/stops/H1so146b"], ["https://tec.openplanner.team/stops/Llglefe1", "https://tec.openplanner.team/stops/Llgwesp2"], ["https://tec.openplanner.team/stops/LHChaut6", "https://tec.openplanner.team/stops/LHCponc4"], ["https://tec.openplanner.team/stops/LBdcarr1", "https://tec.openplanner.team/stops/LSMpoin2"], ["https://tec.openplanner.team/stops/LHYdogn1", "https://tec.openplanner.team/stops/LSpfond2"], ["https://tec.openplanner.team/stops/X657abb", "https://tec.openplanner.team/stops/X657ama"], ["https://tec.openplanner.team/stops/N501jua", "https://tec.openplanner.team/stops/N521amb"], ["https://tec.openplanner.team/stops/LHXfont1", "https://tec.openplanner.team/stops/LLVboss1"], ["https://tec.openplanner.team/stops/LgRha211", "https://tec.openplanner.team/stops/LtH28a-1"], ["https://tec.openplanner.team/stops/H1ms278b", "https://tec.openplanner.team/stops/H1ms907a"], ["https://tec.openplanner.team/stops/LBspiet2", "https://tec.openplanner.team/stops/NL72aeb"], ["https://tec.openplanner.team/stops/LhGfrie1", "https://tec.openplanner.team/stops/LhGrote1"], ["https://tec.openplanner.team/stops/X661acb", "https://tec.openplanner.team/stops/X661aja"], ["https://tec.openplanner.team/stops/LAVpequ1", "https://tec.openplanner.team/stops/LBRpier2"], ["https://tec.openplanner.team/stops/LBEairp1", "https://tec.openplanner.team/stops/LESflag1"], ["https://tec.openplanner.team/stops/N501kna", "https://tec.openplanner.team/stops/N501kpb"], ["https://tec.openplanner.team/stops/LHUdeni4", "https://tec.openplanner.team/stops/LHUeuro4"], ["https://tec.openplanner.team/stops/X780aja", "https://tec.openplanner.team/stops/X792aba"], ["https://tec.openplanner.team/stops/N501gba", "https://tec.openplanner.team/stops/N501lob"], ["https://tec.openplanner.team/stops/LSTchen2", "https://tec.openplanner.team/stops/LSTmast2"], ["https://tec.openplanner.team/stops/X756aga", "https://tec.openplanner.team/stops/X756agd"], ["https://tec.openplanner.team/stops/H1on128b", "https://tec.openplanner.team/stops/H1on128c"], ["https://tec.openplanner.team/stops/N539aka", "https://tec.openplanner.team/stops/N539akb"], ["https://tec.openplanner.team/stops/H2pe162a", "https://tec.openplanner.team/stops/H2pe162d"], ["https://tec.openplanner.team/stops/Bbcocvb1", "https://tec.openplanner.team/stops/Bbcomar1"], ["https://tec.openplanner.team/stops/H1gy115a", "https://tec.openplanner.team/stops/H1gy115b"], ["https://tec.openplanner.team/stops/X659aha", "https://tec.openplanner.team/stops/X659aia"], ["https://tec.openplanner.team/stops/LtH28a-1", "https://tec.openplanner.team/stops/LtHfrie2"], ["https://tec.openplanner.team/stops/X618amb", "https://tec.openplanner.team/stops/X618anb"], ["https://tec.openplanner.team/stops/LWM759-2", "https://tec.openplanner.team/stops/LWMcent2"], ["https://tec.openplanner.team/stops/LCEec--1", "https://tec.openplanner.team/stops/LMIcamp1"], ["https://tec.openplanner.team/stops/N540acb", "https://tec.openplanner.team/stops/N540ada"], ["https://tec.openplanner.team/stops/LbUbisc2", "https://tec.openplanner.team/stops/LbUmolk2"], ["https://tec.openplanner.team/stops/X725adb", "https://tec.openplanner.team/stops/X725aib"], ["https://tec.openplanner.team/stops/Cslbhau1", "https://tec.openplanner.team/stops/Cvtegli1"], ["https://tec.openplanner.team/stops/Cfocant2", "https://tec.openplanner.team/stops/CMfont1"], ["https://tec.openplanner.team/stops/H1ne144a", "https://tec.openplanner.team/stops/H1ne147a"], ["https://tec.openplanner.team/stops/H2bh112b", "https://tec.openplanner.team/stops/H2jo161d"], ["https://tec.openplanner.team/stops/Cptccas2", "https://tec.openplanner.team/stops/Cptrebe2"], ["https://tec.openplanner.team/stops/X879alb", "https://tec.openplanner.team/stops/X879asa"], ["https://tec.openplanner.team/stops/LbRfrie2", "https://tec.openplanner.team/stops/LbRkirc2"], ["https://tec.openplanner.team/stops/Bwavnam1", "https://tec.openplanner.team/stops/Bwavnam4"], ["https://tec.openplanner.team/stops/X730aba", "https://tec.openplanner.team/stops/X730aea"], ["https://tec.openplanner.team/stops/Lbbviad2", "https://tec.openplanner.team/stops/Lgrorch2"], ["https://tec.openplanner.team/stops/X917aha", "https://tec.openplanner.team/stops/X917ajb"], ["https://tec.openplanner.team/stops/X614bba", "https://tec.openplanner.team/stops/X626ala"], ["https://tec.openplanner.team/stops/LeUhaas2", "https://tec.openplanner.team/stops/LeUolen1"], ["https://tec.openplanner.team/stops/NR21aaa", "https://tec.openplanner.team/stops/NR21abc"], ["https://tec.openplanner.team/stops/LGHplai2", "https://tec.openplanner.team/stops/X542ahb"], ["https://tec.openplanner.team/stops/H4mt217a", "https://tec.openplanner.team/stops/H4mt217b"], ["https://tec.openplanner.team/stops/LNCcedr1", "https://tec.openplanner.team/stops/LNCcedr2"], ["https://tec.openplanner.team/stops/Cdamare2", "https://tec.openplanner.team/stops/Cloravi1"], ["https://tec.openplanner.team/stops/X876aba", "https://tec.openplanner.team/stops/X876aea"], ["https://tec.openplanner.team/stops/Brsgges2", "https://tec.openplanner.team/stops/Brsgpbo1"], ["https://tec.openplanner.team/stops/LHAclin1", "https://tec.openplanner.team/stops/LHAclin2"], ["https://tec.openplanner.team/stops/Lbrnanc1", "https://tec.openplanner.team/stops/Llginte2"], ["https://tec.openplanner.team/stops/LAMfroi1", "https://tec.openplanner.team/stops/LAMpirk2"], ["https://tec.openplanner.team/stops/N123acb", "https://tec.openplanner.team/stops/N123adb"], ["https://tec.openplanner.team/stops/X903aba", "https://tec.openplanner.team/stops/X903aca"], ["https://tec.openplanner.team/stops/X985aea", "https://tec.openplanner.team/stops/X985ahb"], ["https://tec.openplanner.team/stops/Cgocnor1", "https://tec.openplanner.team/stops/Cgocrus2"], ["https://tec.openplanner.team/stops/X659aea", "https://tec.openplanner.team/stops/X659afa"], ["https://tec.openplanner.team/stops/Llgbatt1", "https://tec.openplanner.team/stops/Llgbatt2"], ["https://tec.openplanner.team/stops/H1mr126a", "https://tec.openplanner.team/stops/H1on129a"], ["https://tec.openplanner.team/stops/Cmlbulp3", "https://tec.openplanner.team/stops/Cmlcazi1"], ["https://tec.openplanner.team/stops/N501lpb", "https://tec.openplanner.team/stops/N501lra"], ["https://tec.openplanner.team/stops/Cgygayo4", "https://tec.openplanner.team/stops/Cgylouv1"], ["https://tec.openplanner.team/stops/LHgdari1", "https://tec.openplanner.team/stops/LHgdari2"], ["https://tec.openplanner.team/stops/LeUlasc1", "https://tec.openplanner.team/stops/LeUlasc3"], ["https://tec.openplanner.team/stops/X307adb", "https://tec.openplanner.team/stops/X316acb"], ["https://tec.openplanner.team/stops/LHUdelc2", "https://tec.openplanner.team/stops/LHUgdpl2"], ["https://tec.openplanner.team/stops/LWDbure2", "https://tec.openplanner.team/stops/LWDmass1"], ["https://tec.openplanner.team/stops/N118aaa", "https://tec.openplanner.team/stops/N118aib"], ["https://tec.openplanner.team/stops/Bolpmre1", "https://tec.openplanner.team/stops/Bolppla4"], ["https://tec.openplanner.team/stops/H1ha187b", "https://tec.openplanner.team/stops/H1ha197b"], ["https://tec.openplanner.team/stops/Cgrgend2", "https://tec.openplanner.team/stops/Cgrlorm2"], ["https://tec.openplanner.team/stops/X723ajb", "https://tec.openplanner.team/stops/X723amb"], ["https://tec.openplanner.team/stops/H1bo106a", "https://tec.openplanner.team/stops/H1bo106c"], ["https://tec.openplanner.team/stops/N515ata", "https://tec.openplanner.team/stops/N515atb"], ["https://tec.openplanner.team/stops/Cgosoux1", "https://tec.openplanner.team/stops/Cgosoux2"], ["https://tec.openplanner.team/stops/H4ty314c", "https://tec.openplanner.team/stops/H4ty314e"], ["https://tec.openplanner.team/stops/H4rm111a", "https://tec.openplanner.team/stops/H4rm114b"], ["https://tec.openplanner.team/stops/H1en100b", "https://tec.openplanner.team/stops/H1en101a"], ["https://tec.openplanner.team/stops/X615awa", "https://tec.openplanner.team/stops/X615bba"], ["https://tec.openplanner.team/stops/X616adb", "https://tec.openplanner.team/stops/X616aja"], ["https://tec.openplanner.team/stops/H4lz128b", "https://tec.openplanner.team/stops/H4lz164a"], ["https://tec.openplanner.team/stops/X663aaa", "https://tec.openplanner.team/stops/X663aab"], ["https://tec.openplanner.team/stops/X660aea", "https://tec.openplanner.team/stops/X661aqa"], ["https://tec.openplanner.team/stops/Bwavfol2", "https://tec.openplanner.team/stops/Bwavpar1"], ["https://tec.openplanner.team/stops/N501hma", "https://tec.openplanner.team/stops/N501iab"], ["https://tec.openplanner.team/stops/LJvbane1", "https://tec.openplanner.team/stops/X781abb"], ["https://tec.openplanner.team/stops/Bblagar5", "https://tec.openplanner.team/stops/Bblagar6"], ["https://tec.openplanner.team/stops/LHNecpr4", "https://tec.openplanner.team/stops/LHNhv--2"], ["https://tec.openplanner.team/stops/X955aea", "https://tec.openplanner.team/stops/X955aha"], ["https://tec.openplanner.team/stops/Lcefoxh1", "https://tec.openplanner.team/stops/Lcefoxh2"], ["https://tec.openplanner.team/stops/Lvegc--5", "https://tec.openplanner.team/stops/Lvegc--7"], ["https://tec.openplanner.team/stops/N558afa", "https://tec.openplanner.team/stops/N558afb"], ["https://tec.openplanner.team/stops/Csshouy1", "https://tec.openplanner.team/stops/Csslesc1"], ["https://tec.openplanner.team/stops/H4hx117b", "https://tec.openplanner.team/stops/H4hx120a"], ["https://tec.openplanner.team/stops/H4by116a", "https://tec.openplanner.team/stops/H4by119a"], ["https://tec.openplanner.team/stops/H3so163a", "https://tec.openplanner.team/stops/H3so172a"], ["https://tec.openplanner.team/stops/LHVeg--2", "https://tec.openplanner.team/stops/LHVetoi1"], ["https://tec.openplanner.team/stops/X888abb", "https://tec.openplanner.team/stops/X888agb"], ["https://tec.openplanner.team/stops/H1mb129b", "https://tec.openplanner.team/stops/H1mb131a"], ["https://tec.openplanner.team/stops/Lflheid2", "https://tec.openplanner.team/stops/Lfljupi2"], ["https://tec.openplanner.team/stops/X890adb", "https://tec.openplanner.team/stops/X891aaa"], ["https://tec.openplanner.team/stops/N117ayb", "https://tec.openplanner.team/stops/N117azb"], ["https://tec.openplanner.team/stops/LLrbuis2", "https://tec.openplanner.team/stops/LLrfagn2"], ["https://tec.openplanner.team/stops/H1wg125c", "https://tec.openplanner.team/stops/H1wg126b"], ["https://tec.openplanner.team/stops/H1ol145b", "https://tec.openplanner.team/stops/H1ol146b"], ["https://tec.openplanner.team/stops/Bwancal3", "https://tec.openplanner.team/stops/Bwanthi1"], ["https://tec.openplanner.team/stops/N501grf", "https://tec.openplanner.team/stops/N501msa"], ["https://tec.openplanner.team/stops/Lprferm1", "https://tec.openplanner.team/stops/Lprferm2"], ["https://tec.openplanner.team/stops/N508ajc", "https://tec.openplanner.team/stops/N508apa"], ["https://tec.openplanner.team/stops/Lbrcard1", "https://tec.openplanner.team/stops/Lgrfort1"], ["https://tec.openplanner.team/stops/H4ty307b", "https://tec.openplanner.team/stops/H4ty338b"], ["https://tec.openplanner.team/stops/LSOchau2", "https://tec.openplanner.team/stops/LSOdow%C3%A91"], ["https://tec.openplanner.team/stops/N301afc", "https://tec.openplanner.team/stops/N302aaa"], ["https://tec.openplanner.team/stops/Cbcha651", "https://tec.openplanner.team/stops/Cthstre1"], ["https://tec.openplanner.team/stops/Chhverr2", "https://tec.openplanner.team/stops/Cjxvalh2"], ["https://tec.openplanner.team/stops/Cmapeet1", "https://tec.openplanner.team/stops/Cmarroy1"], ["https://tec.openplanner.team/stops/X911akb", "https://tec.openplanner.team/stops/X911amb"], ["https://tec.openplanner.team/stops/LCljose1", "https://tec.openplanner.team/stops/LCljose2"], ["https://tec.openplanner.team/stops/Lagindu1", "https://tec.openplanner.team/stops/Lagorch2"], ["https://tec.openplanner.team/stops/N501fhb", "https://tec.openplanner.team/stops/N501lya"], ["https://tec.openplanner.team/stops/Lvc4bra2", "https://tec.openplanner.team/stops/Lvcbalt2"], ["https://tec.openplanner.team/stops/LLrcomb1", "https://tec.openplanner.team/stops/LLrvill2"], ["https://tec.openplanner.team/stops/Cbfcham1", "https://tec.openplanner.team/stops/NC11ajb"], ["https://tec.openplanner.team/stops/H2sb259b", "https://tec.openplanner.team/stops/H3lr110a"], ["https://tec.openplanner.team/stops/H1gn147a", "https://tec.openplanner.team/stops/H1gn150b"], ["https://tec.openplanner.team/stops/X601bwa", "https://tec.openplanner.team/stops/X601csb"], ["https://tec.openplanner.team/stops/Bblacha1", "https://tec.openplanner.team/stops/Bblamsp3"], ["https://tec.openplanner.team/stops/Lbhpeti2", "https://tec.openplanner.team/stops/LMFmoul1"], ["https://tec.openplanner.team/stops/H1ms263b", "https://tec.openplanner.team/stops/H1ms275b"], ["https://tec.openplanner.team/stops/LWAclos1", "https://tec.openplanner.team/stops/LWAeloi2"], ["https://tec.openplanner.team/stops/H4ea131a", "https://tec.openplanner.team/stops/H4wr174b"], ["https://tec.openplanner.team/stops/X879aba", "https://tec.openplanner.team/stops/X879arb"], ["https://tec.openplanner.team/stops/LWOcomm1", "https://tec.openplanner.team/stops/LWOpier1"], ["https://tec.openplanner.team/stops/Bnivace1", "https://tec.openplanner.team/stops/Bnivvri2"], ["https://tec.openplanner.team/stops/H4gu109b", "https://tec.openplanner.team/stops/H4gu110b"], ["https://tec.openplanner.team/stops/Cctecol2", "https://tec.openplanner.team/stops/Cctvict3"], ["https://tec.openplanner.team/stops/Louaout2", "https://tec.openplanner.team/stops/Lourose3"], ["https://tec.openplanner.team/stops/LDpulve1", "https://tec.openplanner.team/stops/LVukabi2"], ["https://tec.openplanner.team/stops/Csecout1", "https://tec.openplanner.team/stops/Csecout2"], ["https://tec.openplanner.team/stops/Blemkap1", "https://tec.openplanner.team/stops/Btubhoq1"], ["https://tec.openplanner.team/stops/X828aaa", "https://tec.openplanner.team/stops/X829aba"], ["https://tec.openplanner.team/stops/N501ldb", "https://tec.openplanner.team/stops/N538aaa"], ["https://tec.openplanner.team/stops/N153aca", "https://tec.openplanner.team/stops/N153aea"], ["https://tec.openplanner.team/stops/H4li179b", "https://tec.openplanner.team/stops/H4mb205b"], ["https://tec.openplanner.team/stops/Bbaulil2", "https://tec.openplanner.team/stops/Bnivsnu1"], ["https://tec.openplanner.team/stops/Bolgfon2", "https://tec.openplanner.team/stops/Bpthrsp1"], ["https://tec.openplanner.team/stops/X948aob", "https://tec.openplanner.team/stops/X948avb"], ["https://tec.openplanner.team/stops/Lmibove4", "https://tec.openplanner.team/stops/Lmieg--1"], ["https://tec.openplanner.team/stops/LSProya1", "https://tec.openplanner.team/stops/LSPxhou1"], ["https://tec.openplanner.team/stops/Lveleje1", "https://tec.openplanner.team/stops/Lveleje2"], ["https://tec.openplanner.team/stops/Bbchdra2", "https://tec.openplanner.team/stops/Bwaucan1"], ["https://tec.openplanner.team/stops/X979aba", "https://tec.openplanner.team/stops/X979acb"], ["https://tec.openplanner.team/stops/LSAjacq1", "https://tec.openplanner.team/stops/LSAmous1"], ["https://tec.openplanner.team/stops/Bclgapi1", "https://tec.openplanner.team/stops/Bdlmgla3"], ["https://tec.openplanner.team/stops/X756aia", "https://tec.openplanner.team/stops/X757akb"], ["https://tec.openplanner.team/stops/X809afa", "https://tec.openplanner.team/stops/X811aaa"], ["https://tec.openplanner.team/stops/X601dfa", "https://tec.openplanner.team/stops/X612aab"], ["https://tec.openplanner.team/stops/X808aga", "https://tec.openplanner.team/stops/X811afa"], ["https://tec.openplanner.team/stops/LMEwerg1", "https://tec.openplanner.team/stops/LMIterr1"], ["https://tec.openplanner.team/stops/H2fa105a", "https://tec.openplanner.team/stops/H2fa108a"], ["https://tec.openplanner.team/stops/X222adc", "https://tec.openplanner.team/stops/X919aka"], ["https://tec.openplanner.team/stops/N536aca", "https://tec.openplanner.team/stops/N536aob"], ["https://tec.openplanner.team/stops/H1po137a", "https://tec.openplanner.team/stops/H1po137b"], ["https://tec.openplanner.team/stops/Cgzcour1", "https://tec.openplanner.team/stops/Cgzm1482"], ["https://tec.openplanner.team/stops/LmI36--2", "https://tec.openplanner.team/stops/LmIvale4"], ["https://tec.openplanner.team/stops/Lagarde2", "https://tec.openplanner.team/stops/Lagptba2"], ["https://tec.openplanner.team/stops/Becegar1", "https://tec.openplanner.team/stops/H2ec100a"], ["https://tec.openplanner.team/stops/H1wa140a", "https://tec.openplanner.team/stops/H1wa141a"], ["https://tec.openplanner.team/stops/X608aaa", "https://tec.openplanner.team/stops/X608ajb"], ["https://tec.openplanner.team/stops/LLTgole1", "https://tec.openplanner.team/stops/LLTther1"], ["https://tec.openplanner.team/stops/LKmcite1", "https://tec.openplanner.team/stops/LOdkeme2"], ["https://tec.openplanner.team/stops/N308bia", "https://tec.openplanner.team/stops/N308bib"], ["https://tec.openplanner.team/stops/N553acb", "https://tec.openplanner.team/stops/N553anb"], ["https://tec.openplanner.team/stops/X771adb", "https://tec.openplanner.team/stops/X771afa"], ["https://tec.openplanner.team/stops/Ljuchap2", "https://tec.openplanner.team/stops/Ljuchap3"], ["https://tec.openplanner.team/stops/Lwachal2", "https://tec.openplanner.team/stops/Lwaeau-1"], ["https://tec.openplanner.team/stops/H4mb143a", "https://tec.openplanner.team/stops/H4mb143b"], ["https://tec.openplanner.team/stops/H1qp150b", "https://tec.openplanner.team/stops/H1qy134b"], ["https://tec.openplanner.team/stops/Btsllnd1", "https://tec.openplanner.team/stops/Btsllnd2"], ["https://tec.openplanner.team/stops/Barchez2", "https://tec.openplanner.team/stops/Barchoc1"], ["https://tec.openplanner.team/stops/N548ama", "https://tec.openplanner.team/stops/N548asb"], ["https://tec.openplanner.team/stops/H1le124a", "https://tec.openplanner.team/stops/H1le128a"], ["https://tec.openplanner.team/stops/H1fr107b", "https://tec.openplanner.team/stops/H1fr107d"], ["https://tec.openplanner.team/stops/N351ajd", "https://tec.openplanner.team/stops/N351ama"], ["https://tec.openplanner.team/stops/LWZeg--1", "https://tec.openplanner.team/stops/X261aaa"], ["https://tec.openplanner.team/stops/H4hq133a", "https://tec.openplanner.team/stops/H4hq133c"], ["https://tec.openplanner.team/stops/Bdvmalo1", "https://tec.openplanner.team/stops/Bdvmcsa2"], ["https://tec.openplanner.team/stops/N166aca", "https://tec.openplanner.team/stops/N168aaa"], ["https://tec.openplanner.team/stops/N569aaa", "https://tec.openplanner.team/stops/N569aba"], ["https://tec.openplanner.team/stops/H4ae100a", "https://tec.openplanner.team/stops/H4ae101a"], ["https://tec.openplanner.team/stops/Lhefoot2", "https://tec.openplanner.team/stops/Lhrmeta1"], ["https://tec.openplanner.team/stops/N506bpa", "https://tec.openplanner.team/stops/N506bpb"], ["https://tec.openplanner.team/stops/N501lca", "https://tec.openplanner.team/stops/N501lcy"], ["https://tec.openplanner.team/stops/LhOfrie1", "https://tec.openplanner.team/stops/LhOfrie2"], ["https://tec.openplanner.team/stops/H1ho122c", "https://tec.openplanner.team/stops/H1ho143c"], ["https://tec.openplanner.team/stops/LOLrafh2", "https://tec.openplanner.team/stops/LSOboeu1"], ["https://tec.openplanner.team/stops/Livvill2", "https://tec.openplanner.team/stops/LNCmc--1"], ["https://tec.openplanner.team/stops/N517adc", "https://tec.openplanner.team/stops/N581aab"], ["https://tec.openplanner.team/stops/LwYnr261", "https://tec.openplanner.team/stops/LwYnr262"], ["https://tec.openplanner.team/stops/LROmorf2", "https://tec.openplanner.team/stops/LWLeg--3"], ["https://tec.openplanner.team/stops/H1bo104b", "https://tec.openplanner.team/stops/H1ho123b"], ["https://tec.openplanner.team/stops/H4ld123a", "https://tec.openplanner.team/stops/H4ld129a"], ["https://tec.openplanner.team/stops/LFReg--1", "https://tec.openplanner.team/stops/LRfcent2"], ["https://tec.openplanner.team/stops/Lprcard2", "https://tec.openplanner.team/stops/Lprferm1"], ["https://tec.openplanner.team/stops/X804ana", "https://tec.openplanner.team/stops/X804anb"], ["https://tec.openplanner.team/stops/H4ht173a", "https://tec.openplanner.team/stops/H4ht173b"], ["https://tec.openplanner.team/stops/N121ajb", "https://tec.openplanner.team/stops/N121ajc"], ["https://tec.openplanner.team/stops/H2ha143a", "https://tec.openplanner.team/stops/H2ha143b"], ["https://tec.openplanner.team/stops/Boppegl1", "https://tec.openplanner.team/stops/Bsrbbas1"], ["https://tec.openplanner.team/stops/LBNauto1", "https://tec.openplanner.team/stops/LBNhegg2"], ["https://tec.openplanner.team/stops/Lhrhosp1", "https://tec.openplanner.team/stops/Lhrhurb2"], ["https://tec.openplanner.team/stops/H2ca100a", "https://tec.openplanner.team/stops/H2ca108a"], ["https://tec.openplanner.team/stops/LBSpail4", "https://tec.openplanner.team/stops/LBSvi322"], ["https://tec.openplanner.team/stops/X789aba", "https://tec.openplanner.team/stops/X789abb"], ["https://tec.openplanner.team/stops/H1ev116a", "https://tec.openplanner.team/stops/H1ev116b"], ["https://tec.openplanner.team/stops/LCSpoud1", "https://tec.openplanner.team/stops/LSGsurf2"], ["https://tec.openplanner.team/stops/X907abb", "https://tec.openplanner.team/stops/X907aca"], ["https://tec.openplanner.team/stops/N501fra", "https://tec.openplanner.team/stops/N501iza"], ["https://tec.openplanner.team/stops/H5rx127a", "https://tec.openplanner.team/stops/H5rx149a"], ["https://tec.openplanner.team/stops/H4pl115a", "https://tec.openplanner.team/stops/H4pl115b"], ["https://tec.openplanner.team/stops/N308bhb", "https://tec.openplanner.team/stops/X308akb"], ["https://tec.openplanner.team/stops/Llgfran1", "https://tec.openplanner.team/stops/Llglema1"], ["https://tec.openplanner.team/stops/LAUcent1", "https://tec.openplanner.team/stops/LAUneuv4"], ["https://tec.openplanner.team/stops/Cflglav1", "https://tec.openplanner.team/stops/Cflmarq2"], ["https://tec.openplanner.team/stops/H4co151a", "https://tec.openplanner.team/stops/H4wn130a"], ["https://tec.openplanner.team/stops/Ctucomm1", "https://tec.openplanner.team/stops/NC28aea"], ["https://tec.openplanner.team/stops/LBEcomm2", "https://tec.openplanner.team/stops/LNipla4"], ["https://tec.openplanner.team/stops/H4hx116b", "https://tec.openplanner.team/stops/H4hx123b"], ["https://tec.openplanner.team/stops/N569aib", "https://tec.openplanner.team/stops/N569aic"], ["https://tec.openplanner.team/stops/Lchsa632", "https://tec.openplanner.team/stops/Lchsaec2"], ["https://tec.openplanner.team/stops/LbOre3b1", "https://tec.openplanner.team/stops/LmOkape1"], ["https://tec.openplanner.team/stops/X670ada", "https://tec.openplanner.team/stops/X670adb"], ["https://tec.openplanner.team/stops/Canmonu3", "https://tec.openplanner.team/stops/Canmonu4"], ["https://tec.openplanner.team/stops/X624aia", "https://tec.openplanner.team/stops/X624ajb"], ["https://tec.openplanner.team/stops/X754ajb", "https://tec.openplanner.team/stops/X754awa"], ["https://tec.openplanner.team/stops/N525aha", "https://tec.openplanner.team/stops/N525aia"], ["https://tec.openplanner.team/stops/Lgdmaye2", "https://tec.openplanner.team/stops/Lgdrena1"], ["https://tec.openplanner.team/stops/LLrc_ip4", "https://tec.openplanner.team/stops/LSPmart4"], ["https://tec.openplanner.team/stops/H1he101b", "https://tec.openplanner.team/stops/H1mh114a"], ["https://tec.openplanner.team/stops/H2le149b", "https://tec.openplanner.team/stops/H2le153a"], ["https://tec.openplanner.team/stops/LCPaywa2", "https://tec.openplanner.team/stops/LMvrabo2"], ["https://tec.openplanner.team/stops/Lrcpaqu1", "https://tec.openplanner.team/stops/Lrcpaqu2"], ["https://tec.openplanner.team/stops/Cgyrdid1", "https://tec.openplanner.team/stops/Cjuhame3"], ["https://tec.openplanner.team/stops/N509aqa", "https://tec.openplanner.team/stops/N509aub"], ["https://tec.openplanner.team/stops/LsVbell2", "https://tec.openplanner.team/stops/LsVfrie2"], ["https://tec.openplanner.team/stops/Cmybefe1", "https://tec.openplanner.team/stops/Cmypela1"], ["https://tec.openplanner.team/stops/Bohnmes1", "https://tec.openplanner.team/stops/Bohnmes3"], ["https://tec.openplanner.team/stops/Bcbqa361", "https://tec.openplanner.team/stops/Bhalvla2"], ["https://tec.openplanner.team/stops/N390amb", "https://tec.openplanner.team/stops/X991aeb"], ["https://tec.openplanner.team/stops/X715apa", "https://tec.openplanner.team/stops/X715apb"], ["https://tec.openplanner.team/stops/Bbeaap11", "https://tec.openplanner.team/stops/Bbeaegl2"], ["https://tec.openplanner.team/stops/N534atc", "https://tec.openplanner.team/stops/N534bbb"], ["https://tec.openplanner.team/stops/H1ha184b", "https://tec.openplanner.team/stops/H1ha186b"], ["https://tec.openplanner.team/stops/X644adb", "https://tec.openplanner.team/stops/X644aeb"], ["https://tec.openplanner.team/stops/X608adb", "https://tec.openplanner.team/stops/X608ava"], ["https://tec.openplanner.team/stops/X850aba", "https://tec.openplanner.team/stops/X850abb"], ["https://tec.openplanner.team/stops/Loufleu1", "https://tec.openplanner.team/stops/Loufleu2"], ["https://tec.openplanner.team/stops/Lghleon2", "https://tec.openplanner.team/stops/Lghneuv1"], ["https://tec.openplanner.team/stops/H4li179b", "https://tec.openplanner.team/stops/H4li179c"], ["https://tec.openplanner.team/stops/Bwavcar1", "https://tec.openplanner.team/stops/Bwavcar2"], ["https://tec.openplanner.team/stops/LSkmarq1", "https://tec.openplanner.team/stops/LSkmarq2"], ["https://tec.openplanner.team/stops/Lhutill2", "https://tec.openplanner.team/stops/Lvehauz2"], ["https://tec.openplanner.team/stops/H1mj126b", "https://tec.openplanner.team/stops/H1ml110b"], ["https://tec.openplanner.team/stops/N347afa", "https://tec.openplanner.team/stops/N347agb"], ["https://tec.openplanner.team/stops/Ljhmany1", "https://tec.openplanner.team/stops/LPobois2"], ["https://tec.openplanner.team/stops/H1ha184a", "https://tec.openplanner.team/stops/H1ha201a"], ["https://tec.openplanner.team/stops/LAMgare2", "https://tec.openplanner.team/stops/LOmrela1"], ["https://tec.openplanner.team/stops/X724aeb", "https://tec.openplanner.team/stops/X724afa"], ["https://tec.openplanner.team/stops/Cgrchas2", "https://tec.openplanner.team/stops/Cgrchea1"], ["https://tec.openplanner.team/stops/X765ada", "https://tec.openplanner.team/stops/X765adb"], ["https://tec.openplanner.team/stops/Ccocorb1", "https://tec.openplanner.team/stops/Ccocorb2"], ["https://tec.openplanner.team/stops/Lrogene1", "https://tec.openplanner.team/stops/Lromerl1"], ["https://tec.openplanner.team/stops/N244aib", "https://tec.openplanner.team/stops/N244awa"], ["https://tec.openplanner.team/stops/N101aib", "https://tec.openplanner.team/stops/N101aic"], ["https://tec.openplanner.team/stops/LBSchpl1", "https://tec.openplanner.team/stops/LRGchap1"], ["https://tec.openplanner.team/stops/LJAroue1", "https://tec.openplanner.team/stops/LSUhage1"], ["https://tec.openplanner.team/stops/Bbxlfro1", "https://tec.openplanner.team/stops/Bbxlner2"], ["https://tec.openplanner.team/stops/H1te184b", "https://tec.openplanner.team/stops/H1te188a"], ["https://tec.openplanner.team/stops/Lchorme1", "https://tec.openplanner.team/stops/LSReg--2"], ["https://tec.openplanner.team/stops/H2mo127d", "https://tec.openplanner.team/stops/H2mo144b"], ["https://tec.openplanner.team/stops/LTRsain3", "https://tec.openplanner.team/stops/LTRthie2"], ["https://tec.openplanner.team/stops/NC24aea", "https://tec.openplanner.team/stops/NC44aaa"], ["https://tec.openplanner.team/stops/Cflecep2", "https://tec.openplanner.team/stops/Cflhano1"], ["https://tec.openplanner.team/stops/X610aeb", "https://tec.openplanner.team/stops/X610aja"], ["https://tec.openplanner.team/stops/Csychap4", "https://tec.openplanner.team/stops/Csyjumo1"], ["https://tec.openplanner.team/stops/LBThaut1", "https://tec.openplanner.team/stops/LMhvina2"], ["https://tec.openplanner.team/stops/X911asb", "https://tec.openplanner.team/stops/X911ava"], ["https://tec.openplanner.team/stops/Bjausan1", "https://tec.openplanner.team/stops/Bjauvch2"], ["https://tec.openplanner.team/stops/X985aeb", "https://tec.openplanner.team/stops/X985aha"], ["https://tec.openplanner.team/stops/H4ce104a", "https://tec.openplanner.team/stops/H4ce104b"], ["https://tec.openplanner.team/stops/LNCchau2", "https://tec.openplanner.team/stops/LNCchau3"], ["https://tec.openplanner.team/stops/Crachap2", "https://tec.openplanner.team/stops/Craplac3"], ["https://tec.openplanner.team/stops/H1ca103b", "https://tec.openplanner.team/stops/H1ne143b"], ["https://tec.openplanner.team/stops/H4lp124b", "https://tec.openplanner.team/stops/H4my120a"], ["https://tec.openplanner.team/stops/N201anb", "https://tec.openplanner.team/stops/N202afb"], ["https://tec.openplanner.team/stops/LPLstri1", "https://tec.openplanner.team/stops/LPLstri2"], ["https://tec.openplanner.team/stops/LMAfali2", "https://tec.openplanner.team/stops/LMAwavr1"], ["https://tec.openplanner.team/stops/N425acb", "https://tec.openplanner.team/stops/N425agb"], ["https://tec.openplanner.team/stops/Lprceri1", "https://tec.openplanner.team/stops/Lprmana3"], ["https://tec.openplanner.team/stops/Bjaugar2", "https://tec.openplanner.team/stops/Bjaupro2"], ["https://tec.openplanner.team/stops/LCUmonu2", "https://tec.openplanner.team/stops/LCUthie2"], ["https://tec.openplanner.team/stops/H5rx146a", "https://tec.openplanner.team/stops/H5rx146b"], ["https://tec.openplanner.team/stops/Cacgare1", "https://tec.openplanner.team/stops/NC24abb"], ["https://tec.openplanner.team/stops/LHMgrun1", "https://tec.openplanner.team/stops/LHMhind2"], ["https://tec.openplanner.team/stops/X923agb", "https://tec.openplanner.team/stops/X923ahb"], ["https://tec.openplanner.team/stops/H1be103a", "https://tec.openplanner.team/stops/H1mc127a"], ["https://tec.openplanner.team/stops/Crocona1", "https://tec.openplanner.team/stops/Croplom4"], ["https://tec.openplanner.team/stops/Lsnfoot2", "https://tec.openplanner.team/stops/Lsnpaqu2"], ["https://tec.openplanner.team/stops/H1fr111b", "https://tec.openplanner.team/stops/H1fr127a"], ["https://tec.openplanner.team/stops/H1al146a", "https://tec.openplanner.team/stops/H1bs111a"], ["https://tec.openplanner.team/stops/N509atb", "https://tec.openplanner.team/stops/N511ama"], ["https://tec.openplanner.team/stops/Lhutann1", "https://tec.openplanner.team/stops/Lmneg--1"], ["https://tec.openplanner.team/stops/LOV62--2", "https://tec.openplanner.team/stops/LRObarr2"], ["https://tec.openplanner.team/stops/LTPbeau1", "https://tec.openplanner.team/stops/X777abb"], ["https://tec.openplanner.team/stops/H4wi164b", "https://tec.openplanner.team/stops/H4wi169b"], ["https://tec.openplanner.team/stops/X610abb", "https://tec.openplanner.team/stops/X611aaa"], ["https://tec.openplanner.team/stops/Llmdela1", "https://tec.openplanner.team/stops/LWexhav2"], ["https://tec.openplanner.team/stops/N501dra", "https://tec.openplanner.team/stops/N501ehb"], ["https://tec.openplanner.team/stops/LRmhage8", "https://tec.openplanner.team/stops/LRmsmvo1"], ["https://tec.openplanner.team/stops/Btieast1", "https://tec.openplanner.team/stops/Btiegoo1"], ["https://tec.openplanner.team/stops/X926aca", "https://tec.openplanner.team/stops/X927ada"], ["https://tec.openplanner.team/stops/X604aka", "https://tec.openplanner.team/stops/X604ala"], ["https://tec.openplanner.team/stops/N562alb", "https://tec.openplanner.team/stops/N570aab"], ["https://tec.openplanner.team/stops/X870aea", "https://tec.openplanner.team/stops/X879aea"], ["https://tec.openplanner.team/stops/LAWvold1", "https://tec.openplanner.team/stops/LAWvold2"], ["https://tec.openplanner.team/stops/X921aga", "https://tec.openplanner.team/stops/X921aha"], ["https://tec.openplanner.team/stops/Cvsduve2", "https://tec.openplanner.team/stops/Cvssncv1"], ["https://tec.openplanner.team/stops/H1gh159b", "https://tec.openplanner.team/stops/H1gh160b"], ["https://tec.openplanner.team/stops/H4rm109a", "https://tec.openplanner.team/stops/H4rm113a"], ["https://tec.openplanner.team/stops/Cjuhame3", "https://tec.openplanner.team/stops/Cjuruni2"], ["https://tec.openplanner.team/stops/Barqhro1", "https://tec.openplanner.team/stops/Barqhro4"], ["https://tec.openplanner.team/stops/X993aha", "https://tec.openplanner.team/stops/X993ahb"], ["https://tec.openplanner.team/stops/Bincegl1", "https://tec.openplanner.team/stops/Bincegl2"], ["https://tec.openplanner.team/stops/LGe4bra1", "https://tec.openplanner.team/stops/LGeforg1"], ["https://tec.openplanner.team/stops/X634aea", "https://tec.openplanner.team/stops/X634afb"], ["https://tec.openplanner.team/stops/Cmtneuv1", "https://tec.openplanner.team/stops/Cmtneuv2"], ["https://tec.openplanner.team/stops/Csiegli2", "https://tec.openplanner.team/stops/N106ahb"], ["https://tec.openplanner.team/stops/N874aaa", "https://tec.openplanner.team/stops/N894age"], ["https://tec.openplanner.team/stops/X666aga", "https://tec.openplanner.team/stops/X666alb"], ["https://tec.openplanner.team/stops/Lmochpl1", "https://tec.openplanner.team/stops/Lmochpl2"], ["https://tec.openplanner.team/stops/Lrccomm2", "https://tec.openplanner.team/stops/Lrclant3"], ["https://tec.openplanner.team/stops/H5pe144a", "https://tec.openplanner.team/stops/H5pe151b"], ["https://tec.openplanner.team/stops/H4ar102b", "https://tec.openplanner.team/stops/H4pl132a"], ["https://tec.openplanner.team/stops/H1ba108a", "https://tec.openplanner.team/stops/H1hh118b"], ["https://tec.openplanner.team/stops/X721aab", "https://tec.openplanner.team/stops/X721afb"], ["https://tec.openplanner.team/stops/Bolggar1", "https://tec.openplanner.team/stops/Bolppla3"], ["https://tec.openplanner.team/stops/X720aba", "https://tec.openplanner.team/stops/X720adb"], ["https://tec.openplanner.team/stops/Cpl4bra2", "https://tec.openplanner.team/stops/Cpl4bra3"], ["https://tec.openplanner.team/stops/Lbogonh2", "https://tec.openplanner.team/stops/Lbotilf1"], ["https://tec.openplanner.team/stops/LBpecco3", "https://tec.openplanner.team/stops/LBpvue-2"], ["https://tec.openplanner.team/stops/X790aaa", "https://tec.openplanner.team/stops/X790aab"], ["https://tec.openplanner.team/stops/X824afa", "https://tec.openplanner.team/stops/X824afb"], ["https://tec.openplanner.team/stops/Cjubrul4", "https://tec.openplanner.team/stops/CMchag1"], ["https://tec.openplanner.team/stops/X763aab", "https://tec.openplanner.team/stops/X763acb"], ["https://tec.openplanner.team/stops/H1ob361a", "https://tec.openplanner.team/stops/H1ob361b"], ["https://tec.openplanner.team/stops/N535ana", "https://tec.openplanner.team/stops/N535anb"], ["https://tec.openplanner.team/stops/H4br109a", "https://tec.openplanner.team/stops/H4br109b"], ["https://tec.openplanner.team/stops/LWEhosp2", "https://tec.openplanner.team/stops/LWEpaul2"], ["https://tec.openplanner.team/stops/Bbalvil1", "https://tec.openplanner.team/stops/N561aca"], ["https://tec.openplanner.team/stops/Lenhouc2", "https://tec.openplanner.team/stops/Lenmivi*"], ["https://tec.openplanner.team/stops/LBEairp3", "https://tec.openplanner.team/stops/LBEhaye1"], ["https://tec.openplanner.team/stops/LRIcite2", "https://tec.openplanner.team/stops/LRIhous2"], ["https://tec.openplanner.team/stops/LJUmc--1", "https://tec.openplanner.team/stops/LVSslin2"], ["https://tec.openplanner.team/stops/LWEcool1", "https://tec.openplanner.team/stops/LWEgend1"], ["https://tec.openplanner.team/stops/Caiecol2", "https://tec.openplanner.team/stops/N543cib"], ["https://tec.openplanner.team/stops/LwYboui1", "https://tec.openplanner.team/stops/LwYneue1"], ["https://tec.openplanner.team/stops/Ccipano1", "https://tec.openplanner.team/stops/Ccisart2"], ["https://tec.openplanner.team/stops/Cgywaut1", "https://tec.openplanner.team/stops/Cgywaut4"], ["https://tec.openplanner.team/stops/X224abb", "https://tec.openplanner.team/stops/X224ahb"], ["https://tec.openplanner.team/stops/LkEhaag2", "https://tec.openplanner.team/stops/LMsec--1"], ["https://tec.openplanner.team/stops/X601arb", "https://tec.openplanner.team/stops/X601bta"], ["https://tec.openplanner.team/stops/Llgborg1", "https://tec.openplanner.team/stops/Llgtir-1"], ["https://tec.openplanner.team/stops/X901bob", "https://tec.openplanner.team/stops/X901bra"], ["https://tec.openplanner.team/stops/LElverl1", "https://tec.openplanner.team/stops/LFTneur*"], ["https://tec.openplanner.team/stops/X724ada", "https://tec.openplanner.team/stops/X775aia"], ["https://tec.openplanner.team/stops/H1cu125c", "https://tec.openplanner.team/stops/H1cu131b"], ["https://tec.openplanner.team/stops/LsHlenz2", "https://tec.openplanner.team/stops/LsHthom1"], ["https://tec.openplanner.team/stops/LTPcamp1", "https://tec.openplanner.team/stops/LTPcamp2"], ["https://tec.openplanner.team/stops/Lmopave2", "https://tec.openplanner.team/stops/Lsnbrac1"], ["https://tec.openplanner.team/stops/N304aaa", "https://tec.openplanner.team/stops/N329aab"], ["https://tec.openplanner.team/stops/X615aga", "https://tec.openplanner.team/stops/X615baa"], ["https://tec.openplanner.team/stops/Cvlbvir1", "https://tec.openplanner.team/stops/NH21acb"], ["https://tec.openplanner.team/stops/X650aba", "https://tec.openplanner.team/stops/X650aca"], ["https://tec.openplanner.team/stops/H4ss157a", "https://tec.openplanner.team/stops/H4ss157b"], ["https://tec.openplanner.team/stops/X667aba", "https://tec.openplanner.team/stops/X667acb"], ["https://tec.openplanner.team/stops/H4ab101a", "https://tec.openplanner.team/stops/H5ma180a"], ["https://tec.openplanner.team/stops/Cjuheig1", "https://tec.openplanner.team/stops/Cromonn2"], ["https://tec.openplanner.team/stops/X911ama", "https://tec.openplanner.team/stops/X911aub"], ["https://tec.openplanner.team/stops/N548acb", "https://tec.openplanner.team/stops/N548amb"], ["https://tec.openplanner.team/stops/N501fma", "https://tec.openplanner.team/stops/N501fmb"], ["https://tec.openplanner.team/stops/X917aga", "https://tec.openplanner.team/stops/X917ahb"], ["https://tec.openplanner.team/stops/NL82aga", "https://tec.openplanner.team/stops/X222afa"], ["https://tec.openplanner.team/stops/X641aqa", "https://tec.openplanner.team/stops/X641arb"], ["https://tec.openplanner.team/stops/H1eo103a", "https://tec.openplanner.team/stops/H1gh148a"], ["https://tec.openplanner.team/stops/Bgligra1", "https://tec.openplanner.team/stops/Bgligra2"], ["https://tec.openplanner.team/stops/Cpccpas1", "https://tec.openplanner.team/stops/Cpclibe4"], ["https://tec.openplanner.team/stops/LSpfond1", "https://tec.openplanner.team/stops/LSpogne2"], ["https://tec.openplanner.team/stops/H1sa112b", "https://tec.openplanner.team/stops/H1sa114b"], ["https://tec.openplanner.team/stops/H4be101a", "https://tec.openplanner.team/stops/H5bs103a"], ["https://tec.openplanner.team/stops/LHrreal2", "https://tec.openplanner.team/stops/LHrwaya1"], ["https://tec.openplanner.team/stops/X612acb", "https://tec.openplanner.team/stops/X623abb"], ["https://tec.openplanner.team/stops/H4ru240a", "https://tec.openplanner.team/stops/H4ru246b"], ["https://tec.openplanner.team/stops/H4bn101a", "https://tec.openplanner.team/stops/H4pi133a"], ["https://tec.openplanner.team/stops/Ccychco1", "https://tec.openplanner.team/stops/Ccypetv2"], ["https://tec.openplanner.team/stops/LNoenne2", "https://tec.openplanner.team/stops/X917abb"], ["https://tec.openplanner.team/stops/N226ada", "https://tec.openplanner.team/stops/N321aeb"], ["https://tec.openplanner.team/stops/Lgdmaye1", "https://tec.openplanner.team/stops/LWetrib1"], ["https://tec.openplanner.team/stops/N233aab", "https://tec.openplanner.team/stops/N233abb"], ["https://tec.openplanner.team/stops/X615ama", "https://tec.openplanner.team/stops/X615ana"], ["https://tec.openplanner.team/stops/LWacime1", "https://tec.openplanner.team/stops/LWacime3"], ["https://tec.openplanner.team/stops/N141afb", "https://tec.openplanner.team/stops/N141aga"], ["https://tec.openplanner.team/stops/X983aaa", "https://tec.openplanner.team/stops/X986aia"], ["https://tec.openplanner.team/stops/LeYgros2", "https://tec.openplanner.team/stops/LeYheid2"], ["https://tec.openplanner.team/stops/Crccarr2", "https://tec.openplanner.team/stops/Crcgmah1"], ["https://tec.openplanner.team/stops/LPbchat1", "https://tec.openplanner.team/stops/LPbeg--1"], ["https://tec.openplanner.team/stops/Lqbecco2", "https://tec.openplanner.team/stops/LSAjacq2"], ["https://tec.openplanner.team/stops/Cna6che2", "https://tec.openplanner.team/stops/Cnawari2"], ["https://tec.openplanner.team/stops/Csepost1", "https://tec.openplanner.team/stops/Cvthoeu2"], ["https://tec.openplanner.team/stops/Lfhbott1", "https://tec.openplanner.team/stops/Lfhncha2"], ["https://tec.openplanner.team/stops/LQacabi1", "https://tec.openplanner.team/stops/LQafond1"], ["https://tec.openplanner.team/stops/Cmmceri2", "https://tec.openplanner.team/stops/Cmmpast2"], ["https://tec.openplanner.team/stops/H1ry135a", "https://tec.openplanner.team/stops/H1ry136b"], ["https://tec.openplanner.team/stops/Bnodcab2", "https://tec.openplanner.team/stops/Bnodeco1"], ["https://tec.openplanner.team/stops/H1fr130b", "https://tec.openplanner.team/stops/H1ge116a"], ["https://tec.openplanner.team/stops/Lre3che1", "https://tec.openplanner.team/stops/Lrechap2"], ["https://tec.openplanner.team/stops/H4mo156a", "https://tec.openplanner.team/stops/H4mo204a"], ["https://tec.openplanner.team/stops/X723aaa", "https://tec.openplanner.team/stops/X723ana"], ["https://tec.openplanner.team/stops/H1ob334a", "https://tec.openplanner.team/stops/H1ob341b"], ["https://tec.openplanner.team/stops/H2ll177b", "https://tec.openplanner.team/stops/H2ll197a"], ["https://tec.openplanner.team/stops/X756aka", "https://tec.openplanner.team/stops/X756akb"], ["https://tec.openplanner.team/stops/X818ata", "https://tec.openplanner.team/stops/X818awa"], ["https://tec.openplanner.team/stops/Boveker2", "https://tec.openplanner.team/stops/Brsrfen1"], ["https://tec.openplanner.team/stops/Cfcmass1", "https://tec.openplanner.team/stops/NH03adb"], ["https://tec.openplanner.team/stops/LWDfuma2", "https://tec.openplanner.team/stops/LWDhous2"], ["https://tec.openplanner.team/stops/Ctufleu1", "https://tec.openplanner.team/stops/Ctufleu2"], ["https://tec.openplanner.team/stops/Bnivplt2", "https://tec.openplanner.team/stops/Bnivsho1"], ["https://tec.openplanner.team/stops/N542ala", "https://tec.openplanner.team/stops/N542amb"], ["https://tec.openplanner.team/stops/Lvedepa*", "https://tec.openplanner.team/stops/Lvereno1"], ["https://tec.openplanner.team/stops/LBNhegg2", "https://tec.openplanner.team/stops/LBNvill6"], ["https://tec.openplanner.team/stops/LOUbleu2", "https://tec.openplanner.team/stops/LOUherm1"], ["https://tec.openplanner.team/stops/Llgguer1", "https://tec.openplanner.team/stops/Llgnata1"], ["https://tec.openplanner.team/stops/H3lr108b", "https://tec.openplanner.team/stops/H3lr110a"], ["https://tec.openplanner.team/stops/LBRtrag2", "https://tec.openplanner.team/stops/LLTeg--2"], ["https://tec.openplanner.team/stops/N561afa", "https://tec.openplanner.team/stops/N561aha"], ["https://tec.openplanner.team/stops/Cjugill3", "https://tec.openplanner.team/stops/Cjugill6"], ["https://tec.openplanner.team/stops/H1hl126b", "https://tec.openplanner.team/stops/H1hl129b"], ["https://tec.openplanner.team/stops/N426acb", "https://tec.openplanner.team/stops/N426adb"], ["https://tec.openplanner.team/stops/H1ag105a", "https://tec.openplanner.team/stops/H1ag107b"], ["https://tec.openplanner.team/stops/H4rc232b", "https://tec.openplanner.team/stops/H4rc234c"], ["https://tec.openplanner.team/stops/N501lda", "https://tec.openplanner.team/stops/N501ldb"], ["https://tec.openplanner.team/stops/H4ty308a", "https://tec.openplanner.team/stops/H4ty317b"], ["https://tec.openplanner.team/stops/N244ahb", "https://tec.openplanner.team/stops/N251adb"], ["https://tec.openplanner.team/stops/Ccybeau1", "https://tec.openplanner.team/stops/Crbrgar1"], ["https://tec.openplanner.team/stops/LXHbois1", "https://tec.openplanner.team/stops/LXHeg--1"], ["https://tec.openplanner.team/stops/LHEchar2", "https://tec.openplanner.team/stops/LHEhv--2"], ["https://tec.openplanner.team/stops/N539asb", "https://tec.openplanner.team/stops/N539ata"], ["https://tec.openplanner.team/stops/X650aca", "https://tec.openplanner.team/stops/X650acb"], ["https://tec.openplanner.team/stops/Lhurigu1", "https://tec.openplanner.team/stops/Lvewaut2"], ["https://tec.openplanner.team/stops/Bvilcha2", "https://tec.openplanner.team/stops/Bvilcim1"], ["https://tec.openplanner.team/stops/Llgcroi1", "https://tec.openplanner.team/stops/Llgptlo1"], ["https://tec.openplanner.team/stops/LWAbett2", "https://tec.openplanner.team/stops/LWAmouh2"], ["https://tec.openplanner.team/stops/LRGmoul1", "https://tec.openplanner.team/stops/LRGmoul2"], ["https://tec.openplanner.team/stops/Cctptsa1", "https://tec.openplanner.team/stops/Cctsncb1"], ["https://tec.openplanner.team/stops/N424ada", "https://tec.openplanner.team/stops/N424aea"], ["https://tec.openplanner.team/stops/H1ha192a", "https://tec.openplanner.team/stops/H1vh136c"], ["https://tec.openplanner.team/stops/X756aba", "https://tec.openplanner.team/stops/X757ama"], ["https://tec.openplanner.team/stops/LMnlogi1", "https://tec.openplanner.team/stops/N222aca"], ["https://tec.openplanner.team/stops/H1hh114b", "https://tec.openplanner.team/stops/H1hh118b"], ["https://tec.openplanner.team/stops/Ctynamu2", "https://tec.openplanner.team/stops/N137aea"], ["https://tec.openplanner.team/stops/N528aca", "https://tec.openplanner.team/stops/N528ava"], ["https://tec.openplanner.team/stops/Bgrmver1", "https://tec.openplanner.team/stops/N522aib"], ["https://tec.openplanner.team/stops/X672aca", "https://tec.openplanner.team/stops/X672acb"], ["https://tec.openplanner.team/stops/H1hi124a", "https://tec.openplanner.team/stops/H1tl121b"], ["https://tec.openplanner.team/stops/N501cda", "https://tec.openplanner.team/stops/N501mca"], ["https://tec.openplanner.team/stops/LAUhost1", "https://tec.openplanner.team/stops/LFdbruy2"], ["https://tec.openplanner.team/stops/Bbougar1", "https://tec.openplanner.team/stops/Bbstfch2"], ["https://tec.openplanner.team/stops/Cptegli2", "https://tec.openplanner.team/stops/Cptegli3"], ["https://tec.openplanner.team/stops/X657aib", "https://tec.openplanner.team/stops/X657aka"], ["https://tec.openplanner.team/stops/X661ama", "https://tec.openplanner.team/stops/X661bcb"], ["https://tec.openplanner.team/stops/X825aab", "https://tec.openplanner.team/stops/X825agb"], ["https://tec.openplanner.team/stops/X738acb", "https://tec.openplanner.team/stops/X771afa"], ["https://tec.openplanner.team/stops/Llgcorn1", "https://tec.openplanner.team/stops/Llgmulh2"], ["https://tec.openplanner.team/stops/Csdjeme1", "https://tec.openplanner.team/stops/Csdpira2"], ["https://tec.openplanner.team/stops/Lbococh2", "https://tec.openplanner.team/stops/Lousimo1"], ["https://tec.openplanner.team/stops/LWEfati1", "https://tec.openplanner.team/stops/LWEfati2"], ["https://tec.openplanner.team/stops/X896afb", "https://tec.openplanner.team/stops/X897axb"], ["https://tec.openplanner.team/stops/LMedoum1", "https://tec.openplanner.team/stops/LMemora2"], ["https://tec.openplanner.team/stops/X762afa", "https://tec.openplanner.team/stops/X762agb"], ["https://tec.openplanner.team/stops/Lfhsoux2", "https://tec.openplanner.team/stops/Lmlprie1"], ["https://tec.openplanner.team/stops/H2an101a", "https://tec.openplanner.team/stops/H2an103a"], ["https://tec.openplanner.team/stops/H1so135a", "https://tec.openplanner.team/stops/H1so139d"], ["https://tec.openplanner.team/stops/N513aba", "https://tec.openplanner.team/stops/N513abb"], ["https://tec.openplanner.team/stops/Ccypetv1", "https://tec.openplanner.team/stops/NH01aha"], ["https://tec.openplanner.team/stops/H5qu156a", "https://tec.openplanner.team/stops/H5qu182a"], ["https://tec.openplanner.team/stops/NL81afa", "https://tec.openplanner.team/stops/NL82agb"], ["https://tec.openplanner.team/stops/N534bfa", "https://tec.openplanner.team/stops/N534bfb"], ["https://tec.openplanner.team/stops/H1si157b", "https://tec.openplanner.team/stops/H1vt195a"], ["https://tec.openplanner.team/stops/X820acb", "https://tec.openplanner.team/stops/X820agc"], ["https://tec.openplanner.team/stops/X917abb", "https://tec.openplanner.team/stops/X917ajb"], ["https://tec.openplanner.team/stops/X886aaa", "https://tec.openplanner.team/stops/X889aeb"], ["https://tec.openplanner.team/stops/LOucuve1", "https://tec.openplanner.team/stops/LOuilc-*"], ["https://tec.openplanner.team/stops/X630aca", "https://tec.openplanner.team/stops/X630ada"], ["https://tec.openplanner.team/stops/H4cr111a", "https://tec.openplanner.team/stops/H4ff115b"], ["https://tec.openplanner.team/stops/LAmarbo2", "https://tec.openplanner.team/stops/LAMecse*"], ["https://tec.openplanner.team/stops/LBVlamo1", "https://tec.openplanner.team/stops/LBVlamo2"], ["https://tec.openplanner.team/stops/X982akb", "https://tec.openplanner.team/stops/X982anb"], ["https://tec.openplanner.team/stops/X724aha", "https://tec.openplanner.team/stops/X724aia"], ["https://tec.openplanner.team/stops/H4ef163b", "https://tec.openplanner.team/stops/H4ef164b"], ["https://tec.openplanner.team/stops/H3so170a", "https://tec.openplanner.team/stops/H3so175a"], ["https://tec.openplanner.team/stops/Cobmven2", "https://tec.openplanner.team/stops/H2lu100d"], ["https://tec.openplanner.team/stops/H1ml112a", "https://tec.openplanner.team/stops/H1to152a"], ["https://tec.openplanner.team/stops/N135aaa", "https://tec.openplanner.team/stops/N136adb"], ["https://tec.openplanner.team/stops/Bwavcui2", "https://tec.openplanner.team/stops/Bwavvpr1"], ["https://tec.openplanner.team/stops/X784aga", "https://tec.openplanner.team/stops/X784ahb"], ["https://tec.openplanner.team/stops/Lchpniv2", "https://tec.openplanner.team/stops/Lvichpl1"], ["https://tec.openplanner.team/stops/N101akb", "https://tec.openplanner.team/stops/N101aqa"], ["https://tec.openplanner.team/stops/N229arb", "https://tec.openplanner.team/stops/N230aab"], ["https://tec.openplanner.team/stops/Bmsgaxp2", "https://tec.openplanner.team/stops/Bmsgbur2"], ["https://tec.openplanner.team/stops/X953aea", "https://tec.openplanner.team/stops/X953afb"], ["https://tec.openplanner.team/stops/LiV19--1", "https://tec.openplanner.team/stops/LiVdorf1"], ["https://tec.openplanner.team/stops/N214agb", "https://tec.openplanner.team/stops/N236aha"], ["https://tec.openplanner.team/stops/X638agb", "https://tec.openplanner.team/stops/X638ahb"], ["https://tec.openplanner.team/stops/N206aba", "https://tec.openplanner.team/stops/N221aab"], ["https://tec.openplanner.team/stops/N204afb", "https://tec.openplanner.team/stops/N204agb"], ["https://tec.openplanner.team/stops/Csuptou2", "https://tec.openplanner.team/stops/Csytouq2"], ["https://tec.openplanner.team/stops/H4mo153d", "https://tec.openplanner.team/stops/H4mo184a"], ["https://tec.openplanner.team/stops/Bbsivil2", "https://tec.openplanner.team/stops/Blilhay1"], ["https://tec.openplanner.team/stops/X664alb", "https://tec.openplanner.team/stops/X664ata"], ["https://tec.openplanner.team/stops/LLrcomb2", "https://tec.openplanner.team/stops/LLrmc--2"], ["https://tec.openplanner.team/stops/NL74aba", "https://tec.openplanner.team/stops/NL74agb"], ["https://tec.openplanner.team/stops/X681aga", "https://tec.openplanner.team/stops/X681agb"], ["https://tec.openplanner.team/stops/LCAcruc1", "https://tec.openplanner.team/stops/LCAeg--1"], ["https://tec.openplanner.team/stops/X749ada", "https://tec.openplanner.team/stops/X749adb"], ["https://tec.openplanner.team/stops/H4ea131b", "https://tec.openplanner.team/stops/H4wr173b"], ["https://tec.openplanner.team/stops/Lanpont2", "https://tec.openplanner.team/stops/Lmopech1"], ["https://tec.openplanner.team/stops/LATjaur1", "https://tec.openplanner.team/stops/LATrori2"], ["https://tec.openplanner.team/stops/Cwfbarr1", "https://tec.openplanner.team/stops/Cwfbarr2"], ["https://tec.openplanner.team/stops/X614aga", "https://tec.openplanner.team/stops/X614agb"], ["https://tec.openplanner.team/stops/X806afa", "https://tec.openplanner.team/stops/X806afb"], ["https://tec.openplanner.team/stops/LMtegli1", "https://tec.openplanner.team/stops/LMtegli2"], ["https://tec.openplanner.team/stops/H4te258b", "https://tec.openplanner.team/stops/H4te261b"], ["https://tec.openplanner.team/stops/H1hl123b", "https://tec.openplanner.team/stops/H1hl126b"], ["https://tec.openplanner.team/stops/LODarbr1", "https://tec.openplanner.team/stops/X548aea"], ["https://tec.openplanner.team/stops/X736afa", "https://tec.openplanner.team/stops/X753aba"], ["https://tec.openplanner.team/stops/X734afb", "https://tec.openplanner.team/stops/X734agb"], ["https://tec.openplanner.team/stops/X817aea", "https://tec.openplanner.team/stops/X817afa"], ["https://tec.openplanner.team/stops/H1en100b", "https://tec.openplanner.team/stops/H1mk112b"], ["https://tec.openplanner.team/stops/Bbghsar2", "https://tec.openplanner.team/stops/Bbghsta1"], ["https://tec.openplanner.team/stops/Cgzbouh1", "https://tec.openplanner.team/stops/Cgzvivi2"], ["https://tec.openplanner.team/stops/LBGcent1", "https://tec.openplanner.team/stops/LBGcent2"], ["https://tec.openplanner.team/stops/N542aaa", "https://tec.openplanner.team/stops/N542aab"], ["https://tec.openplanner.team/stops/H2ca109a", "https://tec.openplanner.team/stops/H2mo130b"], ["https://tec.openplanner.team/stops/H4bv145b", "https://tec.openplanner.team/stops/H4bv145c"], ["https://tec.openplanner.team/stops/Bpernov1", "https://tec.openplanner.team/stops/Bpernov2"], ["https://tec.openplanner.team/stops/N348aaa", "https://tec.openplanner.team/stops/N348ada"], ["https://tec.openplanner.team/stops/Blemkap1", "https://tec.openplanner.team/stops/Bstecal1"], ["https://tec.openplanner.team/stops/Bbiecoc1", "https://tec.openplanner.team/stops/Bbiehev1"], ["https://tec.openplanner.team/stops/Bmartil2", "https://tec.openplanner.team/stops/Bsdavpe1"], ["https://tec.openplanner.team/stops/X757alb", "https://tec.openplanner.team/stops/X779aab"], ["https://tec.openplanner.team/stops/N540aeb", "https://tec.openplanner.team/stops/N540aha"], ["https://tec.openplanner.team/stops/Bjodtpo2", "https://tec.openplanner.team/stops/Bsjgmil1"], ["https://tec.openplanner.team/stops/LbUvith2", "https://tec.openplanner.team/stops/LbUwhon2"], ["https://tec.openplanner.team/stops/NL76ald", "https://tec.openplanner.team/stops/NL76bcb"], ["https://tec.openplanner.team/stops/X660ada", "https://tec.openplanner.team/stops/X660agb"], ["https://tec.openplanner.team/stops/H1pd142a", "https://tec.openplanner.team/stops/H1pd143a"], ["https://tec.openplanner.team/stops/X741aia", "https://tec.openplanner.team/stops/X741aib"], ["https://tec.openplanner.team/stops/Bbsicen2", "https://tec.openplanner.team/stops/Bnivfhu1"], ["https://tec.openplanner.team/stops/X950abb", "https://tec.openplanner.team/stops/X950acb"], ["https://tec.openplanner.team/stops/H4ch113b", "https://tec.openplanner.team/stops/H4ch120b"], ["https://tec.openplanner.team/stops/Baegm501", "https://tec.openplanner.team/stops/Bramcar2"], ["https://tec.openplanner.team/stops/LSecomm2", "https://tec.openplanner.team/stops/LVbeg--1"], ["https://tec.openplanner.team/stops/X736afa", "https://tec.openplanner.team/stops/X736aja"], ["https://tec.openplanner.team/stops/Bmrqgar1", "https://tec.openplanner.team/stops/H1mk109b"], ["https://tec.openplanner.team/stops/Bottegl2", "https://tec.openplanner.team/stops/Bottegl4"], ["https://tec.openplanner.team/stops/LSsmond1", "https://tec.openplanner.team/stops/LSsmond2"], ["https://tec.openplanner.team/stops/Lalmitt1", "https://tec.openplanner.team/stops/Lalwaro1"], ["https://tec.openplanner.team/stops/LBUmara1", "https://tec.openplanner.team/stops/LBUmara2"], ["https://tec.openplanner.team/stops/N106agb", "https://tec.openplanner.team/stops/N106aia"], ["https://tec.openplanner.team/stops/H2bh121b", "https://tec.openplanner.team/stops/H2lc172b"], ["https://tec.openplanner.team/stops/X636aza", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/Lemcarm2", "https://tec.openplanner.team/stops/Lemmeha1"], ["https://tec.openplanner.team/stops/H4mb202a", "https://tec.openplanner.team/stops/H4mb202b"], ["https://tec.openplanner.team/stops/N503aeb", "https://tec.openplanner.team/stops/N503aia"], ["https://tec.openplanner.team/stops/X777aba", "https://tec.openplanner.team/stops/X784ajb"], ["https://tec.openplanner.team/stops/N512afb", "https://tec.openplanner.team/stops/N512axb"], ["https://tec.openplanner.team/stops/H4bu108a", "https://tec.openplanner.team/stops/H4hg155a"], ["https://tec.openplanner.team/stops/Cfbcabi2", "https://tec.openplanner.team/stops/NH03adb"], ["https://tec.openplanner.team/stops/Cbbjfeu2", "https://tec.openplanner.team/stops/Cclbarb1"], ["https://tec.openplanner.team/stops/N550aaa", "https://tec.openplanner.team/stops/N550agb"], ["https://tec.openplanner.team/stops/X823adb", "https://tec.openplanner.team/stops/X823aeb"], ["https://tec.openplanner.team/stops/Bbeaech1", "https://tec.openplanner.team/stops/Bbeagae2"], ["https://tec.openplanner.team/stops/X601aib", "https://tec.openplanner.team/stops/X601cca"], ["https://tec.openplanner.team/stops/H4lu125a", "https://tec.openplanner.team/stops/H4lu126b"], ["https://tec.openplanner.team/stops/Cgxchea1", "https://tec.openplanner.team/stops/Cgxfo142"], ["https://tec.openplanner.team/stops/H4oe148a", "https://tec.openplanner.team/stops/H4oe151a"], ["https://tec.openplanner.team/stops/Bblaniv2", "https://tec.openplanner.team/stops/Bplnfpa1"], ["https://tec.openplanner.team/stops/LoUhein2", "https://tec.openplanner.team/stops/LoUober2"], ["https://tec.openplanner.team/stops/X952adb", "https://tec.openplanner.team/stops/X952akb"], ["https://tec.openplanner.team/stops/H4re226a", "https://tec.openplanner.team/stops/H5is168b"], ["https://tec.openplanner.team/stops/LFArela3", "https://tec.openplanner.team/stops/LFArela6"], ["https://tec.openplanner.team/stops/LSyeg--1", "https://tec.openplanner.team/stops/LSyeg--2"], ["https://tec.openplanner.team/stops/Baudhan1", "https://tec.openplanner.team/stops/Baudhan2"], ["https://tec.openplanner.team/stops/Berncim1", "https://tec.openplanner.team/stops/Bernpla1"], ["https://tec.openplanner.team/stops/LJAroue2", "https://tec.openplanner.team/stops/LJAverv1"], ["https://tec.openplanner.team/stops/N537aba", "https://tec.openplanner.team/stops/N537ajb"], ["https://tec.openplanner.team/stops/Brsrbbo1", "https://tec.openplanner.team/stops/Brsreco2"], ["https://tec.openplanner.team/stops/Bllnlb11", "https://tec.openplanner.team/stops/Bllnrod3"], ["https://tec.openplanner.team/stops/Lflcle-2", "https://tec.openplanner.team/stops/Lflcle-4"], ["https://tec.openplanner.team/stops/Cmqchap2", "https://tec.openplanner.team/stops/X611aca"], ["https://tec.openplanner.team/stops/X782akb", "https://tec.openplanner.team/stops/X784aea"], ["https://tec.openplanner.team/stops/N106ada", "https://tec.openplanner.team/stops/N106aea"], ["https://tec.openplanner.team/stops/Boplcar2", "https://tec.openplanner.team/stops/Boplcar3"], ["https://tec.openplanner.team/stops/N154aab", "https://tec.openplanner.team/stops/N154abb"], ["https://tec.openplanner.team/stops/H4eh101a", "https://tec.openplanner.team/stops/H4po129a"], ["https://tec.openplanner.team/stops/LkEwolf1", "https://tec.openplanner.team/stops/LkEwolf2"], ["https://tec.openplanner.team/stops/NL72aea", "https://tec.openplanner.team/stops/NL72afa"], ["https://tec.openplanner.team/stops/H1mk110a", "https://tec.openplanner.team/stops/H1mk110b"], ["https://tec.openplanner.team/stops/N508aeb", "https://tec.openplanner.team/stops/N508afa"], ["https://tec.openplanner.team/stops/LARauto1", "https://tec.openplanner.team/stops/LARauto2"], ["https://tec.openplanner.team/stops/Llgcham4", "https://tec.openplanner.team/stops/Llgcorn2"], ["https://tec.openplanner.team/stops/N528adb", "https://tec.openplanner.team/stops/N528aua"], ["https://tec.openplanner.team/stops/Lmobras2", "https://tec.openplanner.team/stops/Lmopast2"], ["https://tec.openplanner.team/stops/H4ty308d", "https://tec.openplanner.team/stops/H4ty308e"], ["https://tec.openplanner.team/stops/Bbsicea1", "https://tec.openplanner.team/stops/Bbsivi11"], ["https://tec.openplanner.team/stops/H5rx106b", "https://tec.openplanner.team/stops/H5rx145a"], ["https://tec.openplanner.team/stops/H1gn148a", "https://tec.openplanner.team/stops/H1gn148b"], ["https://tec.openplanner.team/stops/N507aob", "https://tec.openplanner.team/stops/N516aqa"], ["https://tec.openplanner.team/stops/H1gh151b", "https://tec.openplanner.team/stops/H1gh152b"], ["https://tec.openplanner.team/stops/Cmmcomb2", "https://tec.openplanner.team/stops/Cmmpjou2"], ["https://tec.openplanner.team/stops/Btubeur1", "https://tec.openplanner.team/stops/Btubstq1"], ["https://tec.openplanner.team/stops/H4li178a", "https://tec.openplanner.team/stops/H4li179b"], ["https://tec.openplanner.team/stops/H1vb141b", "https://tec.openplanner.team/stops/H1vb143a"], ["https://tec.openplanner.team/stops/Lticime1", "https://tec.openplanner.team/stops/Lticime2"], ["https://tec.openplanner.team/stops/H1ro138a", "https://tec.openplanner.team/stops/H1ro138b"], ["https://tec.openplanner.team/stops/H1mj130a", "https://tec.openplanner.team/stops/H1mj130b"], ["https://tec.openplanner.team/stops/LHDlibi1", "https://tec.openplanner.team/stops/LHDlibi2"], ["https://tec.openplanner.team/stops/Buccchu2", "https://tec.openplanner.team/stops/Buccgob2"], ["https://tec.openplanner.team/stops/Lhrdeme1", "https://tec.openplanner.team/stops/Lhrdeme4"], ["https://tec.openplanner.team/stops/X745aca", "https://tec.openplanner.team/stops/X745acb"], ["https://tec.openplanner.team/stops/Ljhcarr2", "https://tec.openplanner.team/stops/Lmnfawe1"], ["https://tec.openplanner.team/stops/X738abb", "https://tec.openplanner.team/stops/X738acb"], ["https://tec.openplanner.team/stops/Lmldama1", "https://tec.openplanner.team/stops/Lmldama2"], ["https://tec.openplanner.team/stops/Bcrbros1", "https://tec.openplanner.team/stops/Bnil3fo2"], ["https://tec.openplanner.team/stops/H4bo117b", "https://tec.openplanner.team/stops/H4hu120b"], ["https://tec.openplanner.team/stops/LLGramk2", "https://tec.openplanner.team/stops/LORdtec*"], ["https://tec.openplanner.team/stops/Btlgmar1", "https://tec.openplanner.team/stops/Btlgreg2"], ["https://tec.openplanner.team/stops/N145aha", "https://tec.openplanner.team/stops/N149aab"], ["https://tec.openplanner.team/stops/Cfaplma1", "https://tec.openplanner.team/stops/Cfaterg6"], ["https://tec.openplanner.team/stops/Caicalv2", "https://tec.openplanner.team/stops/Crsprai3"], ["https://tec.openplanner.team/stops/H4ff115a", "https://tec.openplanner.team/stops/H4ff118a"], ["https://tec.openplanner.team/stops/Bhmmcor1", "https://tec.openplanner.team/stops/Btlgbro2"], ["https://tec.openplanner.team/stops/Becepon1", "https://tec.openplanner.team/stops/H2ec106b"], ["https://tec.openplanner.team/stops/X610aaa", "https://tec.openplanner.team/stops/X610aab"], ["https://tec.openplanner.team/stops/Bhoegbr2", "https://tec.openplanner.team/stops/Brsgpbo2"], ["https://tec.openplanner.team/stops/H1el137a", "https://tec.openplanner.team/stops/H1el138b"], ["https://tec.openplanner.team/stops/Bgercen1", "https://tec.openplanner.team/stops/NB33aia"], ["https://tec.openplanner.team/stops/N513ahb", "https://tec.openplanner.team/stops/N521atb"], ["https://tec.openplanner.team/stops/N543baa", "https://tec.openplanner.team/stops/N543bab"], ["https://tec.openplanner.team/stops/N304aab", "https://tec.openplanner.team/stops/N304abb"], ["https://tec.openplanner.team/stops/X837aab", "https://tec.openplanner.team/stops/X837agb"], ["https://tec.openplanner.team/stops/X636bda", "https://tec.openplanner.team/stops/X649aab"], ["https://tec.openplanner.team/stops/X625adb", "https://tec.openplanner.team/stops/X625aeb"], ["https://tec.openplanner.team/stops/X608aea", "https://tec.openplanner.team/stops/X608apa"], ["https://tec.openplanner.team/stops/X824akb", "https://tec.openplanner.team/stops/X824alb"], ["https://tec.openplanner.team/stops/Llgcham7", "https://tec.openplanner.team/stops/Llgnata1"], ["https://tec.openplanner.team/stops/Becegar1", "https://tec.openplanner.team/stops/Becepon1"], ["https://tec.openplanner.team/stops/X601dda", "https://tec.openplanner.team/stops/X601dea"], ["https://tec.openplanner.team/stops/Caiegli2", "https://tec.openplanner.team/stops/Caindsa2"], ["https://tec.openplanner.team/stops/Llgbobu6", "https://tec.openplanner.team/stops/Lsnecco1"], ["https://tec.openplanner.team/stops/X839aeb", "https://tec.openplanner.team/stops/X839afa"], ["https://tec.openplanner.team/stops/X888aca", "https://tec.openplanner.team/stops/X899aaa"], ["https://tec.openplanner.team/stops/Bllnjpa2", "https://tec.openplanner.team/stops/Bmsgrco1"], ["https://tec.openplanner.team/stops/X774aea", "https://tec.openplanner.team/stops/X774aec"], ["https://tec.openplanner.team/stops/LHSheur2", "https://tec.openplanner.team/stops/LWOruis1"], ["https://tec.openplanner.team/stops/N501amb", "https://tec.openplanner.team/stops/N501cya"], ["https://tec.openplanner.team/stops/H1ha197b", "https://tec.openplanner.team/stops/H1ob336b"], ["https://tec.openplanner.team/stops/Cmapeet2", "https://tec.openplanner.team/stops/Cmarroy1"], ["https://tec.openplanner.team/stops/N539aib", "https://tec.openplanner.team/stops/N539apb"], ["https://tec.openplanner.team/stops/H4vz367a", "https://tec.openplanner.team/stops/H4ws160a"], ["https://tec.openplanner.team/stops/NL74aea", "https://tec.openplanner.team/stops/NL74afb"], ["https://tec.openplanner.team/stops/X613aaa", "https://tec.openplanner.team/stops/X623aaa"], ["https://tec.openplanner.team/stops/NL76aja", "https://tec.openplanner.team/stops/NL77aib"], ["https://tec.openplanner.team/stops/N302afa", "https://tec.openplanner.team/stops/N305aaa"], ["https://tec.openplanner.team/stops/H4ev118b", "https://tec.openplanner.team/stops/H4ev126a"], ["https://tec.openplanner.team/stops/Bosqgar2", "https://tec.openplanner.team/stops/Bosqsam1"], ["https://tec.openplanner.team/stops/LAmshel2", "https://tec.openplanner.team/stops/LAMweha1"], ["https://tec.openplanner.team/stops/Bbstchn2", "https://tec.openplanner.team/stops/Bbstmco1"], ["https://tec.openplanner.team/stops/X793aka", "https://tec.openplanner.team/stops/X793anb"], ["https://tec.openplanner.team/stops/N501bpa", "https://tec.openplanner.team/stops/N501bsb"], ["https://tec.openplanner.team/stops/LhGcasi2", "https://tec.openplanner.team/stops/LkEmax-1"], ["https://tec.openplanner.team/stops/X618aaa", "https://tec.openplanner.team/stops/X625abb"], ["https://tec.openplanner.team/stops/X770aaa", "https://tec.openplanner.team/stops/X770ada"], ["https://tec.openplanner.team/stops/LDmdegi2", "https://tec.openplanner.team/stops/LHocroi2"], ["https://tec.openplanner.team/stops/Ldihusq2", "https://tec.openplanner.team/stops/Ldipl--4"], ["https://tec.openplanner.team/stops/X902aqa", "https://tec.openplanner.team/stops/X903aab"], ["https://tec.openplanner.team/stops/LAweg--2", "https://tec.openplanner.team/stops/LAYlieg2"], ["https://tec.openplanner.team/stops/X839adb", "https://tec.openplanner.team/stops/X839aeb"], ["https://tec.openplanner.team/stops/Loucham2", "https://tec.openplanner.team/stops/Loucham4"], ["https://tec.openplanner.team/stops/X757aca", "https://tec.openplanner.team/stops/X757aoa"], ["https://tec.openplanner.team/stops/Lgrbonn1", "https://tec.openplanner.team/stops/Lgrlimi4"], ["https://tec.openplanner.team/stops/X904agb", "https://tec.openplanner.team/stops/X904ahb"], ["https://tec.openplanner.team/stops/Balswwe1", "https://tec.openplanner.team/stops/Bhaless1"], ["https://tec.openplanner.team/stops/X948baa", "https://tec.openplanner.team/stops/X948bbb"], ["https://tec.openplanner.team/stops/LVtchai1", "https://tec.openplanner.team/stops/LVtchai2"], ["https://tec.openplanner.team/stops/Llghopo2", "https://tec.openplanner.team/stops/Llgnata4"], ["https://tec.openplanner.team/stops/Bquepbr1", "https://tec.openplanner.team/stops/Bstemco1"], ["https://tec.openplanner.team/stops/N212acb", "https://tec.openplanner.team/stops/N212aeb"], ["https://tec.openplanner.team/stops/Cvsbois2", "https://tec.openplanner.team/stops/N530ahb"], ["https://tec.openplanner.team/stops/X595afb", "https://tec.openplanner.team/stops/X595afc"], ["https://tec.openplanner.team/stops/LHreg--1", "https://tec.openplanner.team/stops/LHreg--2"], ["https://tec.openplanner.team/stops/Lghpero2", "https://tec.openplanner.team/stops/Lghsimo2"], ["https://tec.openplanner.team/stops/LREgrot2", "https://tec.openplanner.team/stops/LREgrot4"], ["https://tec.openplanner.team/stops/X663aoa", "https://tec.openplanner.team/stops/X663apa"], ["https://tec.openplanner.team/stops/N207ada", "https://tec.openplanner.team/stops/N207aea"], ["https://tec.openplanner.team/stops/Bwbfckr2", "https://tec.openplanner.team/stops/Bwbfeta2"], ["https://tec.openplanner.team/stops/N501iha", "https://tec.openplanner.team/stops/N501ihy"], ["https://tec.openplanner.team/stops/X886aba", "https://tec.openplanner.team/stops/X886abb"], ["https://tec.openplanner.team/stops/H5qu182a", "https://tec.openplanner.team/stops/H5qu182b"], ["https://tec.openplanner.team/stops/Llgthie1", "https://tec.openplanner.team/stops/Llgthie2"], ["https://tec.openplanner.team/stops/LHDpota1", "https://tec.openplanner.team/stops/LPUchpl1"], ["https://tec.openplanner.team/stops/LbTkran1", "https://tec.openplanner.team/stops/LbTmons2"], ["https://tec.openplanner.team/stops/LBBcarr2", "https://tec.openplanner.team/stops/LOcgdro4"], ["https://tec.openplanner.team/stops/Crg3arb1", "https://tec.openplanner.team/stops/Crg3arb2"], ["https://tec.openplanner.team/stops/N511aaa", "https://tec.openplanner.team/stops/N511agb"], ["https://tec.openplanner.team/stops/X789aeb", "https://tec.openplanner.team/stops/X789aja"], ["https://tec.openplanner.team/stops/X937aba", "https://tec.openplanner.team/stops/X937akb"], ["https://tec.openplanner.team/stops/N515afa", "https://tec.openplanner.team/stops/N515atb"], ["https://tec.openplanner.team/stops/Lcebois1", "https://tec.openplanner.team/stops/Lcejobe2"], ["https://tec.openplanner.team/stops/X999aab", "https://tec.openplanner.team/stops/X999acc"], ["https://tec.openplanner.team/stops/N117ama", "https://tec.openplanner.team/stops/N117bcc"], ["https://tec.openplanner.team/stops/N535aob", "https://tec.openplanner.team/stops/N564aaa"], ["https://tec.openplanner.team/stops/H1em102a", "https://tec.openplanner.team/stops/H1em102b"], ["https://tec.openplanner.team/stops/Csshouy1", "https://tec.openplanner.team/stops/Csygare1"], ["https://tec.openplanner.team/stops/H4rs118a", "https://tec.openplanner.team/stops/H4rs118b"], ["https://tec.openplanner.team/stops/N244aca", "https://tec.openplanner.team/stops/N244aga"], ["https://tec.openplanner.team/stops/N242adc", "https://tec.openplanner.team/stops/N242afb"], ["https://tec.openplanner.team/stops/N509aia", "https://tec.openplanner.team/stops/N509ala"], ["https://tec.openplanner.team/stops/Cpcathe1", "https://tec.openplanner.team/stops/Cpcchau"], ["https://tec.openplanner.team/stops/Bsdabja2", "https://tec.openplanner.team/stops/Bsdafra1"], ["https://tec.openplanner.team/stops/X601ayb", "https://tec.openplanner.team/stops/X612aaa"], ["https://tec.openplanner.team/stops/LHMgulp2", "https://tec.openplanner.team/stops/LHMparq2"], ["https://tec.openplanner.team/stops/N539ayb", "https://tec.openplanner.team/stops/N539baa"], ["https://tec.openplanner.team/stops/Cgplhoi2", "https://tec.openplanner.team/stops/Cgpplac1"], ["https://tec.openplanner.team/stops/H4ae102a", "https://tec.openplanner.team/stops/H4or116a"], ["https://tec.openplanner.team/stops/H5pe134b", "https://tec.openplanner.team/stops/H5pe152b"], ["https://tec.openplanner.team/stops/LBLghuy3", "https://tec.openplanner.team/stops/LCEboll2"], ["https://tec.openplanner.team/stops/X926afa", "https://tec.openplanner.team/stops/X945abc"], ["https://tec.openplanner.team/stops/Lbrrobe1", "https://tec.openplanner.team/stops/Lgrfrai2"], ["https://tec.openplanner.team/stops/X901aka", "https://tec.openplanner.team/stops/X901bpa"], ["https://tec.openplanner.team/stops/LHdkenn3", "https://tec.openplanner.team/stops/LHdvill2"], ["https://tec.openplanner.team/stops/H1so136a", "https://tec.openplanner.team/stops/H1so137b"], ["https://tec.openplanner.team/stops/Ljubods2", "https://tec.openplanner.team/stops/Ljuchaf2"], ["https://tec.openplanner.team/stops/X752aba", "https://tec.openplanner.team/stops/X756aab"], ["https://tec.openplanner.team/stops/LWecorn2", "https://tec.openplanner.team/stops/LWegdry1"], ["https://tec.openplanner.team/stops/N501nez", "https://tec.openplanner.team/stops/X501esb"], ["https://tec.openplanner.team/stops/H1pa117b", "https://tec.openplanner.team/stops/H1pa120a"], ["https://tec.openplanner.team/stops/H4hg155a", "https://tec.openplanner.team/stops/H4hg158a"], ["https://tec.openplanner.team/stops/LBUrout1", "https://tec.openplanner.team/stops/NL30afa"], ["https://tec.openplanner.team/stops/N309aab", "https://tec.openplanner.team/stops/N365acb"], ["https://tec.openplanner.team/stops/Ccupetp1", "https://tec.openplanner.team/stops/Ccutill2"], ["https://tec.openplanner.team/stops/LOurena1", "https://tec.openplanner.team/stops/X982aeb"], ["https://tec.openplanner.team/stops/Bwavcui1", "https://tec.openplanner.team/stops/Bwavcui2"], ["https://tec.openplanner.team/stops/LHUsaul1", "https://tec.openplanner.team/stops/LHUsaul2"], ["https://tec.openplanner.team/stops/Lhehoux2", "https://tec.openplanner.team/stops/Lheloti2"], ["https://tec.openplanner.team/stops/LWalibo1", "https://tec.openplanner.team/stops/LWalibo2"], ["https://tec.openplanner.team/stops/LBrec--2", "https://tec.openplanner.team/stops/LBrneli2"], ["https://tec.openplanner.team/stops/Cmmserv3", "https://tec.openplanner.team/stops/Cmmserv4"], ["https://tec.openplanner.team/stops/Cgzhour2", "https://tec.openplanner.team/stops/Clbpepi1"], ["https://tec.openplanner.team/stops/LFrfrai2", "https://tec.openplanner.team/stops/LLUcdoy1"], ["https://tec.openplanner.team/stops/Cvstouv1", "https://tec.openplanner.team/stops/Cwfplac2"], ["https://tec.openplanner.team/stops/H5ma181a", "https://tec.openplanner.team/stops/H5ma186a"], ["https://tec.openplanner.team/stops/LBiberg2", "https://tec.openplanner.team/stops/LDOandr2"], ["https://tec.openplanner.team/stops/Lghpier2", "https://tec.openplanner.team/stops/Lghterm*"], ["https://tec.openplanner.team/stops/X343aha", "https://tec.openplanner.team/stops/X343ahb"], ["https://tec.openplanner.team/stops/Blmlmco1", "https://tec.openplanner.team/stops/Blmlmco2"], ["https://tec.openplanner.team/stops/LWbcarr1", "https://tec.openplanner.team/stops/LWbcarr2"], ["https://tec.openplanner.team/stops/H4er122a", "https://tec.openplanner.team/stops/H4er123b"], ["https://tec.openplanner.team/stops/Brixbai2", "https://tec.openplanner.team/stops/Brixwav2"], ["https://tec.openplanner.team/stops/X638aia", "https://tec.openplanner.team/stops/X638amb"], ["https://tec.openplanner.team/stops/N123aab", "https://tec.openplanner.team/stops/N123ada"], ["https://tec.openplanner.team/stops/LWAathe1", "https://tec.openplanner.team/stops/LWAvand2"], ["https://tec.openplanner.team/stops/H1me112a", "https://tec.openplanner.team/stops/H1me112b"], ["https://tec.openplanner.team/stops/LBOande1", "https://tec.openplanner.team/stops/LMubras2"], ["https://tec.openplanner.team/stops/Ltheg--1", "https://tec.openplanner.team/stops/Lthfagn2"], ["https://tec.openplanner.team/stops/X723aka", "https://tec.openplanner.team/stops/X763ahb"], ["https://tec.openplanner.team/stops/Bhevjac1", "https://tec.openplanner.team/stops/Bhevwzw2"], ["https://tec.openplanner.team/stops/X917aka", "https://tec.openplanner.team/stops/X922aaa"], ["https://tec.openplanner.team/stops/LFsgend1", "https://tec.openplanner.team/stops/Llianix2"], ["https://tec.openplanner.team/stops/Cci4bra2", "https://tec.openplanner.team/stops/Cci4bra4"], ["https://tec.openplanner.team/stops/N508aab", "https://tec.openplanner.team/stops/N508adb"], ["https://tec.openplanner.team/stops/H2mg150a", "https://tec.openplanner.team/stops/H2mg150b"], ["https://tec.openplanner.team/stops/LREelse1", "https://tec.openplanner.team/stops/LREsech2"], ["https://tec.openplanner.team/stops/LJOchar2", "https://tec.openplanner.team/stops/LJOvill2"], ["https://tec.openplanner.team/stops/LWRgare1", "https://tec.openplanner.team/stops/LWRpl--2"], ["https://tec.openplanner.team/stops/N515aia", "https://tec.openplanner.team/stops/N515aoa"], ["https://tec.openplanner.team/stops/Cchtram2", "https://tec.openplanner.team/stops/NC01aab"], ["https://tec.openplanner.team/stops/N204aja", "https://tec.openplanner.team/stops/N204ala"], ["https://tec.openplanner.team/stops/Cgplutt2", "https://tec.openplanner.team/stops/H2gy109b"], ["https://tec.openplanner.team/stops/LAmsart2", "https://tec.openplanner.team/stops/LVLgrum1"], ["https://tec.openplanner.team/stops/H4th141a", "https://tec.openplanner.team/stops/H4th141b"], ["https://tec.openplanner.team/stops/N579aaa", "https://tec.openplanner.team/stops/N579aab"], ["https://tec.openplanner.team/stops/N509aua", "https://tec.openplanner.team/stops/N511ama"], ["https://tec.openplanner.team/stops/Lprmc--1", "https://tec.openplanner.team/stops/Lprmc--4"], ["https://tec.openplanner.team/stops/Bhevwzw1", "https://tec.openplanner.team/stops/Bnetegl1"], ["https://tec.openplanner.team/stops/Cpcbrig2", "https://tec.openplanner.team/stops/Cpcwaut2"], ["https://tec.openplanner.team/stops/X870aeb", "https://tec.openplanner.team/stops/X879aeb"], ["https://tec.openplanner.team/stops/H4ty312a", "https://tec.openplanner.team/stops/H4ty321a"], ["https://tec.openplanner.team/stops/X604afd", "https://tec.openplanner.team/stops/X634aab"], ["https://tec.openplanner.team/stops/H1eo108b", "https://tec.openplanner.team/stops/H1gh365a"], ["https://tec.openplanner.team/stops/Bbstpan2", "https://tec.openplanner.team/stops/Cbtlong1"], ["https://tec.openplanner.team/stops/LSMchat1", "https://tec.openplanner.team/stops/LSMec--2"], ["https://tec.openplanner.team/stops/Cdogrro2", "https://tec.openplanner.team/stops/Crgegli2"], ["https://tec.openplanner.team/stops/H2pe163b", "https://tec.openplanner.team/stops/H2tr257a"], ["https://tec.openplanner.team/stops/Bclgapi1", "https://tec.openplanner.team/stops/Bclgbvi1"], ["https://tec.openplanner.team/stops/X614aaa", "https://tec.openplanner.team/stops/X614alb"], ["https://tec.openplanner.team/stops/X624aab", "https://tec.openplanner.team/stops/X624amb"], ["https://tec.openplanner.team/stops/LBEfagn1", "https://tec.openplanner.team/stops/LBEnina4"], ["https://tec.openplanner.team/stops/LMNpann2", "https://tec.openplanner.team/stops/LMNpt--2"], ["https://tec.openplanner.team/stops/N542adb", "https://tec.openplanner.team/stops/N542aea"], ["https://tec.openplanner.team/stops/LVIcarm3", "https://tec.openplanner.team/stops/LVIcarm4"], ["https://tec.openplanner.team/stops/H4fo116a", "https://tec.openplanner.team/stops/H4pe128b"], ["https://tec.openplanner.team/stops/H1ol140a", "https://tec.openplanner.team/stops/H1ol142b"], ["https://tec.openplanner.team/stops/Cjugill6", "https://tec.openplanner.team/stops/Cjurogi2"], ["https://tec.openplanner.team/stops/Cmlrous1", "https://tec.openplanner.team/stops/Cmlrous2"], ["https://tec.openplanner.team/stops/Lvtathe2", "https://tec.openplanner.team/stops/Lvtvici2"], ["https://tec.openplanner.team/stops/LSPwarf1", "https://tec.openplanner.team/stops/LSPwarf2"], ["https://tec.openplanner.team/stops/NH21ada", "https://tec.openplanner.team/stops/NH21adb"], ["https://tec.openplanner.team/stops/Cmldupu1", "https://tec.openplanner.team/stops/Cmlhaie1"], ["https://tec.openplanner.team/stops/X636aba", "https://tec.openplanner.team/stops/X636acb"], ["https://tec.openplanner.team/stops/H1fr123a", "https://tec.openplanner.team/stops/H1fr128a"], ["https://tec.openplanner.team/stops/H1hh110a", "https://tec.openplanner.team/stops/H1hh113b"], ["https://tec.openplanner.team/stops/LAbbass1", "https://tec.openplanner.team/stops/LAbbass2"], ["https://tec.openplanner.team/stops/Bbeamon2", "https://tec.openplanner.team/stops/Bhmmbog1"], ["https://tec.openplanner.team/stops/X775ahb", "https://tec.openplanner.team/stops/X775aic"], ["https://tec.openplanner.team/stops/Llgblon1", "https://tec.openplanner.team/stops/Llgbron2"], ["https://tec.openplanner.team/stops/LmDelek2", "https://tec.openplanner.team/stops/LmYkirc1"], ["https://tec.openplanner.team/stops/LAIchpl2", "https://tec.openplanner.team/stops/LVBsevr2"], ["https://tec.openplanner.team/stops/LCnvill1", "https://tec.openplanner.team/stops/LLUhotc2"], ["https://tec.openplanner.team/stops/Cciecol2", "https://tec.openplanner.team/stops/Ccigill3"], ["https://tec.openplanner.team/stops/X669aga", "https://tec.openplanner.team/stops/X672aea"], ["https://tec.openplanner.team/stops/X871acb", "https://tec.openplanner.team/stops/X876afa"], ["https://tec.openplanner.team/stops/NL76afb", "https://tec.openplanner.team/stops/NL76arb"], ["https://tec.openplanner.team/stops/Cmtfabi1", "https://tec.openplanner.team/stops/Cmtprey2"], ["https://tec.openplanner.team/stops/N542ada", "https://tec.openplanner.team/stops/N542asa"], ["https://tec.openplanner.team/stops/Cgygayo3", "https://tec.openplanner.team/stops/Cgymest1"], ["https://tec.openplanner.team/stops/Lseathe2", "https://tec.openplanner.team/stops/Lsefori2"], ["https://tec.openplanner.team/stops/H4ea128a", "https://tec.openplanner.team/stops/H4ea128b"], ["https://tec.openplanner.team/stops/Bitrcen1", "https://tec.openplanner.team/stops/Bitrcen2"], ["https://tec.openplanner.team/stops/N232ata", "https://tec.openplanner.team/stops/N232cca"], ["https://tec.openplanner.team/stops/X775ajb", "https://tec.openplanner.team/stops/X775akb"], ["https://tec.openplanner.team/stops/Crsaise1", "https://tec.openplanner.team/stops/Crsrose2"], ["https://tec.openplanner.team/stops/X897aua", "https://tec.openplanner.team/stops/X897aub"], ["https://tec.openplanner.team/stops/N232ayb", "https://tec.openplanner.team/stops/N232bob"], ["https://tec.openplanner.team/stops/LFUfonc2", "https://tec.openplanner.team/stops/LHurobi1"], ["https://tec.openplanner.team/stops/X911aoa", "https://tec.openplanner.team/stops/X911aob"], ["https://tec.openplanner.team/stops/Lpeprev1", "https://tec.openplanner.team/stops/Lpeprev2"], ["https://tec.openplanner.team/stops/LXHbell1", "https://tec.openplanner.team/stops/LXHbois2"], ["https://tec.openplanner.team/stops/H5at118a", "https://tec.openplanner.team/stops/H5at134b"], ["https://tec.openplanner.team/stops/Bllnald1", "https://tec.openplanner.team/stops/Bllnpaf1"], ["https://tec.openplanner.team/stops/H5is171a", "https://tec.openplanner.team/stops/H5is174a"], ["https://tec.openplanner.team/stops/H5pe132b", "https://tec.openplanner.team/stops/H5pe133a"], ["https://tec.openplanner.team/stops/Laddelc1", "https://tec.openplanner.team/stops/Laddelc2"], ["https://tec.openplanner.team/stops/X359adb", "https://tec.openplanner.team/stops/X359aha"], ["https://tec.openplanner.team/stops/H4te260a", "https://tec.openplanner.team/stops/H4te260b"], ["https://tec.openplanner.team/stops/Lgrfrai1", "https://tec.openplanner.team/stops/Lgrfrai2"], ["https://tec.openplanner.team/stops/X619ada", "https://tec.openplanner.team/stops/X619aea"], ["https://tec.openplanner.team/stops/X879aia", "https://tec.openplanner.team/stops/X879aja"], ["https://tec.openplanner.team/stops/N501bca", "https://tec.openplanner.team/stops/N501bcb"], ["https://tec.openplanner.team/stops/N236aib", "https://tec.openplanner.team/stops/N236amb"], ["https://tec.openplanner.team/stops/Bgdhdet1", "https://tec.openplanner.team/stops/Bgdhmet2"], ["https://tec.openplanner.team/stops/H1gh143a", "https://tec.openplanner.team/stops/H1hh117a"], ["https://tec.openplanner.team/stops/N534abb", "https://tec.openplanner.team/stops/N534aph"], ["https://tec.openplanner.team/stops/Bbchmin2", "https://tec.openplanner.team/stops/Bitrfsc2"], ["https://tec.openplanner.team/stops/N537aha", "https://tec.openplanner.team/stops/N537aia"], ["https://tec.openplanner.team/stops/LENecol2", "https://tec.openplanner.team/stops/LENsent1"], ["https://tec.openplanner.team/stops/X658aaa", "https://tec.openplanner.team/stops/X658abb"], ["https://tec.openplanner.team/stops/Lvearle2", "https://tec.openplanner.team/stops/Lvepire1"], ["https://tec.openplanner.team/stops/H1ba119b", "https://tec.openplanner.team/stops/H1ba119d"], ["https://tec.openplanner.team/stops/Cfrcomp1", "https://tec.openplanner.team/stops/Cfrfaub3"], ["https://tec.openplanner.team/stops/LFarhuy1", "https://tec.openplanner.team/stops/LWAipes2"], ["https://tec.openplanner.team/stops/LBNgarn1", "https://tec.openplanner.team/stops/LeUgb--2"], ["https://tec.openplanner.team/stops/Bwateco1", "https://tec.openplanner.team/stops/Bwateco2"], ["https://tec.openplanner.team/stops/Brebrog2", "https://tec.openplanner.team/stops/H3st119a"], ["https://tec.openplanner.team/stops/LDAandr2", "https://tec.openplanner.team/stops/LTreg--1"], ["https://tec.openplanner.team/stops/H1sy140a", "https://tec.openplanner.team/stops/H1to154b"], ["https://tec.openplanner.team/stops/Bitrnus1", "https://tec.openplanner.team/stops/Bitrpri2"], ["https://tec.openplanner.team/stops/Bthivil1", "https://tec.openplanner.team/stops/Bthivil3"], ["https://tec.openplanner.team/stops/N219aba", "https://tec.openplanner.team/stops/N219abb"], ["https://tec.openplanner.team/stops/Bnvmfba1", "https://tec.openplanner.team/stops/N515ara"], ["https://tec.openplanner.team/stops/H4ln127a", "https://tec.openplanner.team/stops/H4ln155a"], ["https://tec.openplanner.team/stops/N155aca", "https://tec.openplanner.team/stops/N155acb"], ["https://tec.openplanner.team/stops/Baegegl2", "https://tec.openplanner.team/stops/NR38aba"], ["https://tec.openplanner.team/stops/H2ca100a", "https://tec.openplanner.team/stops/H2ca109a"], ["https://tec.openplanner.team/stops/X898ada", "https://tec.openplanner.team/stops/X898aoa"], ["https://tec.openplanner.team/stops/LORgr8-1", "https://tec.openplanner.team/stops/LORpave1"], ["https://tec.openplanner.team/stops/N519aca", "https://tec.openplanner.team/stops/N519aja"], ["https://tec.openplanner.team/stops/N524aka", "https://tec.openplanner.team/stops/N524alb"], ["https://tec.openplanner.team/stops/X982aia", "https://tec.openplanner.team/stops/X982bfb"], ["https://tec.openplanner.team/stops/N501bka", "https://tec.openplanner.team/stops/N501bkb"], ["https://tec.openplanner.team/stops/H1ms305a", "https://tec.openplanner.team/stops/H1ms305b"], ["https://tec.openplanner.team/stops/LFPloob1", "https://tec.openplanner.team/stops/LSJlabe2"], ["https://tec.openplanner.team/stops/H1sy145a", "https://tec.openplanner.team/stops/H1sy145b"], ["https://tec.openplanner.team/stops/Cmygrbr2", "https://tec.openplanner.team/stops/Cmygrbr4"], ["https://tec.openplanner.team/stops/H1tl120a", "https://tec.openplanner.team/stops/H1tl121b"], ["https://tec.openplanner.team/stops/X349aaa", "https://tec.openplanner.team/stops/X998aza"], ["https://tec.openplanner.team/stops/H4bn101a", "https://tec.openplanner.team/stops/H4ws158a"], ["https://tec.openplanner.team/stops/Blnzcar2", "https://tec.openplanner.team/stops/N522afb"], ["https://tec.openplanner.team/stops/LCscarr4", "https://tec.openplanner.team/stops/LCschri2"], ["https://tec.openplanner.team/stops/H1ob335b", "https://tec.openplanner.team/stops/H1ob341b"], ["https://tec.openplanner.team/stops/LlNhube2", "https://tec.openplanner.team/stops/LlNschu1"], ["https://tec.openplanner.team/stops/N167aea", "https://tec.openplanner.team/stops/N168aaa"], ["https://tec.openplanner.team/stops/LAUhost1", "https://tec.openplanner.team/stops/LAUtism2"], ["https://tec.openplanner.team/stops/X602aba", "https://tec.openplanner.team/stops/X604afa"], ["https://tec.openplanner.team/stops/N349aba", "https://tec.openplanner.team/stops/N349aea"], ["https://tec.openplanner.team/stops/Bmalsme2", "https://tec.openplanner.team/stops/Btlbcul2"], ["https://tec.openplanner.team/stops/LPAchpl2", "https://tec.openplanner.team/stops/LVSpota2"], ["https://tec.openplanner.team/stops/X758aea", "https://tec.openplanner.team/stops/X758afa"], ["https://tec.openplanner.team/stops/N501bib", "https://tec.openplanner.team/stops/N501lpb"], ["https://tec.openplanner.team/stops/H4fr390a", "https://tec.openplanner.team/stops/H4ty348b"], ["https://tec.openplanner.team/stops/Cravold2", "https://tec.openplanner.team/stops/Cwgtill2"], ["https://tec.openplanner.team/stops/Bottgar2", "https://tec.openplanner.team/stops/Bottgar6"], ["https://tec.openplanner.team/stops/X358afb", "https://tec.openplanner.team/stops/X994ada"], ["https://tec.openplanner.team/stops/Blmlbif2", "https://tec.openplanner.team/stops/Blmlvex1"], ["https://tec.openplanner.team/stops/LAVpequ1", "https://tec.openplanner.team/stops/LLRrape2"], ["https://tec.openplanner.team/stops/N542alb", "https://tec.openplanner.team/stops/N542amb"], ["https://tec.openplanner.team/stops/Bbealbu3", "https://tec.openplanner.team/stops/Bbeardu1"], ["https://tec.openplanner.team/stops/X608aha", "https://tec.openplanner.team/stops/X608asa"], ["https://tec.openplanner.team/stops/LCPone91", "https://tec.openplanner.team/stops/LCPoneu2"], ["https://tec.openplanner.team/stops/Cdagoss1", "https://tec.openplanner.team/stops/Cdanvpr2"], ["https://tec.openplanner.team/stops/X870aga", "https://tec.openplanner.team/stops/X870ahb"], ["https://tec.openplanner.team/stops/Cmyedpa1", "https://tec.openplanner.team/stops/Cmyedpa4"], ["https://tec.openplanner.team/stops/Blindel3", "https://tec.openplanner.team/stops/Blindel6"], ["https://tec.openplanner.team/stops/N536acb", "https://tec.openplanner.team/stops/N537aha"], ["https://tec.openplanner.team/stops/N232bxb", "https://tec.openplanner.team/stops/N232bya"], ["https://tec.openplanner.team/stops/X982beb", "https://tec.openplanner.team/stops/X982bma"], ["https://tec.openplanner.team/stops/H1mm122c", "https://tec.openplanner.team/stops/H1mm122d"], ["https://tec.openplanner.team/stops/X658aca", "https://tec.openplanner.team/stops/X658aha"], ["https://tec.openplanner.team/stops/LLrchat1", "https://tec.openplanner.team/stops/LLrchat2"], ["https://tec.openplanner.team/stops/Cgomerm4", "https://tec.openplanner.team/stops/Cwxplac2"], ["https://tec.openplanner.team/stops/Blimrof2", "https://tec.openplanner.team/stops/Brixbai2"], ["https://tec.openplanner.team/stops/N506aca", "https://tec.openplanner.team/stops/N506bib"], ["https://tec.openplanner.team/stops/LSPclai2", "https://tec.openplanner.team/stops/LSPgend2"], ["https://tec.openplanner.team/stops/Bbchdev2", "https://tec.openplanner.team/stops/Bbchmin1"], ["https://tec.openplanner.team/stops/LDAalbe2", "https://tec.openplanner.team/stops/LFethie1"], ["https://tec.openplanner.team/stops/Crsprai4", "https://tec.openplanner.team/stops/Crsrose1"], ["https://tec.openplanner.team/stops/LHUbail1", "https://tec.openplanner.team/stops/LHUbail2"], ["https://tec.openplanner.team/stops/X576aca", "https://tec.openplanner.team/stops/X576acb"], ["https://tec.openplanner.team/stops/Bbghpln1", "https://tec.openplanner.team/stops/Bbghsar2"], ["https://tec.openplanner.team/stops/Buccdef1", "https://tec.openplanner.team/stops/Buccvch1"], ["https://tec.openplanner.team/stops/Crccarr1", "https://tec.openplanner.team/stops/NH03adb"], ["https://tec.openplanner.team/stops/X917agb", "https://tec.openplanner.team/stops/X917ajb"], ["https://tec.openplanner.team/stops/LLSba4-2", "https://tec.openplanner.team/stops/LTOplac1"], ["https://tec.openplanner.team/stops/H4ft132a", "https://tec.openplanner.team/stops/H4ft133a"], ["https://tec.openplanner.team/stops/X850afa", "https://tec.openplanner.team/stops/X850afb"], ["https://tec.openplanner.team/stops/Bosqpqu1", "https://tec.openplanner.team/stops/Bosqpqu2"], ["https://tec.openplanner.team/stops/NL68adb", "https://tec.openplanner.team/stops/NL68aga"], ["https://tec.openplanner.team/stops/H5qu139a", "https://tec.openplanner.team/stops/H5qu145a"], ["https://tec.openplanner.team/stops/LlCgren1", "https://tec.openplanner.team/stops/LpEbins2"], ["https://tec.openplanner.team/stops/H1hc150b", "https://tec.openplanner.team/stops/H1hc151a"], ["https://tec.openplanner.team/stops/Ladarev2", "https://tec.openplanner.team/stops/Ladstat1"], ["https://tec.openplanner.team/stops/X619aaa", "https://tec.openplanner.team/stops/X619ama"], ["https://tec.openplanner.team/stops/H4mo182a", "https://tec.openplanner.team/stops/H4mo187a"], ["https://tec.openplanner.team/stops/X891abb", "https://tec.openplanner.team/stops/X891acb"], ["https://tec.openplanner.team/stops/N229amb", "https://tec.openplanner.team/stops/N229anb"], ["https://tec.openplanner.team/stops/LeYberl1", "https://tec.openplanner.team/stops/LrAmuhl1"], ["https://tec.openplanner.team/stops/Barcsta1", "https://tec.openplanner.team/stops/Bnetegl4"], ["https://tec.openplanner.team/stops/N574aaa", "https://tec.openplanner.team/stops/N574aeb"], ["https://tec.openplanner.team/stops/Lenclar2", "https://tec.openplanner.team/stops/Lveleje2"], ["https://tec.openplanner.team/stops/LBWfusi2", "https://tec.openplanner.team/stops/LFCdree1"], ["https://tec.openplanner.team/stops/N507aoa", "https://tec.openplanner.team/stops/N507apa"], ["https://tec.openplanner.team/stops/X771aib", "https://tec.openplanner.team/stops/X771alb"], ["https://tec.openplanner.team/stops/N501ela", "https://tec.openplanner.team/stops/N501lpa"], ["https://tec.openplanner.team/stops/X626agb", "https://tec.openplanner.team/stops/X626ahb"], ["https://tec.openplanner.team/stops/Bwspmon4", "https://tec.openplanner.team/stops/Bwsppos2"], ["https://tec.openplanner.team/stops/X758afb", "https://tec.openplanner.team/stops/X758ama"], ["https://tec.openplanner.team/stops/Llgauxc2", "https://tec.openplanner.team/stops/Llgtir-2"], ["https://tec.openplanner.team/stops/N533ala", "https://tec.openplanner.team/stops/N533ald"], ["https://tec.openplanner.team/stops/Lvchenn1", "https://tec.openplanner.team/stops/Lvcvand1"], ["https://tec.openplanner.team/stops/LmHflor2", "https://tec.openplanner.team/stops/LmHschm2"], ["https://tec.openplanner.team/stops/X983aga", "https://tec.openplanner.team/stops/X996aha"], ["https://tec.openplanner.team/stops/LMfange1", "https://tec.openplanner.team/stops/LMfbuck1"], ["https://tec.openplanner.team/stops/LaSneuh1", "https://tec.openplanner.team/stops/LhGbahn4"], ["https://tec.openplanner.team/stops/N539afa", "https://tec.openplanner.team/stops/N539afd"], ["https://tec.openplanner.team/stops/Lalhomb2", "https://tec.openplanner.team/stops/Lalmakr2"], ["https://tec.openplanner.team/stops/X604aea", "https://tec.openplanner.team/stops/X604afb"], ["https://tec.openplanner.team/stops/Cblbaiv1", "https://tec.openplanner.team/stops/Cmcegli2"], ["https://tec.openplanner.team/stops/X912aaa", "https://tec.openplanner.team/stops/X912alb"], ["https://tec.openplanner.team/stops/Lprmoin1", "https://tec.openplanner.team/stops/Lprmoin2"], ["https://tec.openplanner.team/stops/X896aia", "https://tec.openplanner.team/stops/X896aib"], ["https://tec.openplanner.team/stops/Bovehst1", "https://tec.openplanner.team/stops/Bovelge1"], ["https://tec.openplanner.team/stops/Laggare2", "https://tec.openplanner.team/stops/Lagjado1"], ["https://tec.openplanner.team/stops/X370ada", "https://tec.openplanner.team/stops/X850ajb"], ["https://tec.openplanner.team/stops/Cmastfi1", "https://tec.openplanner.team/stops/Cmocalv2"], ["https://tec.openplanner.team/stops/H1sy143a", "https://tec.openplanner.team/stops/H1sy143d"], ["https://tec.openplanner.team/stops/X725aha", "https://tec.openplanner.team/stops/X725ahb"], ["https://tec.openplanner.team/stops/LBjpech1", "https://tec.openplanner.team/stops/X575afb"], ["https://tec.openplanner.team/stops/X608ata", "https://tec.openplanner.team/stops/X608awa"], ["https://tec.openplanner.team/stops/X604adb", "https://tec.openplanner.team/stops/X604aeb"], ["https://tec.openplanner.team/stops/H3bo100c", "https://tec.openplanner.team/stops/H3bo100d"], ["https://tec.openplanner.team/stops/H1wa137a", "https://tec.openplanner.team/stops/H1wa153a"], ["https://tec.openplanner.team/stops/N501jba", "https://tec.openplanner.team/stops/N501jbb"], ["https://tec.openplanner.team/stops/Lbobuil1", "https://tec.openplanner.team/stops/Lbooffe2"], ["https://tec.openplanner.team/stops/LAbchpl1", "https://tec.openplanner.team/stops/LSevitu2"], ["https://tec.openplanner.team/stops/X820aca", "https://tec.openplanner.team/stops/X820acb"], ["https://tec.openplanner.team/stops/N122afb", "https://tec.openplanner.team/stops/N302adb"], ["https://tec.openplanner.team/stops/X805aga", "https://tec.openplanner.team/stops/X805ahb"], ["https://tec.openplanner.team/stops/LeYmosc1", "https://tec.openplanner.team/stops/LeYraaf1"], ["https://tec.openplanner.team/stops/LSTparf2", "https://tec.openplanner.team/stops/LTPtroi1"], ["https://tec.openplanner.team/stops/Cgyplst1", "https://tec.openplanner.team/stops/CMmarab1"], ["https://tec.openplanner.team/stops/H3so162b", "https://tec.openplanner.team/stops/H3so177a"], ["https://tec.openplanner.team/stops/Lagjard2", "https://tec.openplanner.team/stops/Lagrask1"], ["https://tec.openplanner.team/stops/H3lr111a", "https://tec.openplanner.team/stops/H3lr116b"], ["https://tec.openplanner.team/stops/X720aaa", "https://tec.openplanner.team/stops/X721asb"], ["https://tec.openplanner.team/stops/Btlbtbe1", "https://tec.openplanner.team/stops/Btlbtbe4"], ["https://tec.openplanner.team/stops/Caiecol1", "https://tec.openplanner.team/stops/Caiecol2"], ["https://tec.openplanner.team/stops/H1gh144a", "https://tec.openplanner.team/stops/H1gh145d"], ["https://tec.openplanner.team/stops/LLirout2", "https://tec.openplanner.team/stops/LRemorr4"], ["https://tec.openplanner.team/stops/N160acb", "https://tec.openplanner.team/stops/N160ahb"], ["https://tec.openplanner.team/stops/LlZbell1", "https://tec.openplanner.team/stops/LmNha151"], ["https://tec.openplanner.team/stops/X659asa", "https://tec.openplanner.team/stops/X741aib"], ["https://tec.openplanner.team/stops/Bllnlen1", "https://tec.openplanner.team/stops/Bllnlen2"], ["https://tec.openplanner.team/stops/LOL6che1", "https://tec.openplanner.team/stops/LSOgott2"], ["https://tec.openplanner.team/stops/Cmtcapi2", "https://tec.openplanner.team/stops/Cmtfabi1"], ["https://tec.openplanner.team/stops/Cmlhauc4", "https://tec.openplanner.team/stops/NC01afa"], ["https://tec.openplanner.team/stops/N565ala", "https://tec.openplanner.team/stops/N565alb"], ["https://tec.openplanner.team/stops/Cfmwaut2", "https://tec.openplanner.team/stops/Ctrrpla1"], ["https://tec.openplanner.team/stops/Cbweco1", "https://tec.openplanner.team/stops/Cbwegl1"], ["https://tec.openplanner.team/stops/X640aga", "https://tec.openplanner.team/stops/X640aha"], ["https://tec.openplanner.team/stops/H1er105a", "https://tec.openplanner.team/stops/H1er105b"], ["https://tec.openplanner.team/stops/H1cv100a", "https://tec.openplanner.team/stops/H1cv103b"], ["https://tec.openplanner.team/stops/LFdbagu1", "https://tec.openplanner.team/stops/LLC170-2"], ["https://tec.openplanner.team/stops/LVEcroi1", "https://tec.openplanner.team/stops/LVEroum1"], ["https://tec.openplanner.team/stops/X641ava", "https://tec.openplanner.team/stops/X641avb"], ["https://tec.openplanner.team/stops/LFCdree1", "https://tec.openplanner.team/stops/LMgkrui1"], ["https://tec.openplanner.team/stops/Cjuphil2", "https://tec.openplanner.team/stops/Cralimi2"], ["https://tec.openplanner.team/stops/N205ada", "https://tec.openplanner.team/stops/N219aeb"], ["https://tec.openplanner.team/stops/Clb4bra1", "https://tec.openplanner.team/stops/Clbpepi1"], ["https://tec.openplanner.team/stops/LOthiro1", "https://tec.openplanner.team/stops/LVsbrux2"], ["https://tec.openplanner.team/stops/Lmnfawe2", "https://tec.openplanner.team/stops/Lmnrame2"], ["https://tec.openplanner.team/stops/Ljhsart1", "https://tec.openplanner.team/stops/Lmnfawe1"], ["https://tec.openplanner.team/stops/Ccspla", "https://tec.openplanner.team/stops/Chhegli3"], ["https://tec.openplanner.team/stops/N501cma", "https://tec.openplanner.team/stops/N501cmc"], ["https://tec.openplanner.team/stops/Bgntcoo1", "https://tec.openplanner.team/stops/Bgntpos1"], ["https://tec.openplanner.team/stops/Ljewale2", "https://tec.openplanner.team/stops/Ljewale3"], ["https://tec.openplanner.team/stops/X850aha", "https://tec.openplanner.team/stops/X850aob"], ["https://tec.openplanner.team/stops/N245aca", "https://tec.openplanner.team/stops/N340afa"], ["https://tec.openplanner.team/stops/X638ala", "https://tec.openplanner.team/stops/X639adb"], ["https://tec.openplanner.team/stops/N217ada", "https://tec.openplanner.team/stops/N261aca"], ["https://tec.openplanner.team/stops/X747aia", "https://tec.openplanner.team/stops/X747aib"], ["https://tec.openplanner.team/stops/LBTxhen1", "https://tec.openplanner.team/stops/LBTxhen4"], ["https://tec.openplanner.team/stops/LCOcarr2", "https://tec.openplanner.team/stops/LCOcrom1"], ["https://tec.openplanner.team/stops/Canboni2", "https://tec.openplanner.team/stops/Canbruy1"], ["https://tec.openplanner.team/stops/Cgxdeba1", "https://tec.openplanner.team/stops/Cgxvvel2"], ["https://tec.openplanner.team/stops/X982aib", "https://tec.openplanner.team/stops/X982bub"], ["https://tec.openplanner.team/stops/X773adb", "https://tec.openplanner.team/stops/X773aea"], ["https://tec.openplanner.team/stops/Ccogibr1", "https://tec.openplanner.team/stops/Ccohuli2"], ["https://tec.openplanner.team/stops/N323aab", "https://tec.openplanner.team/stops/N323aba"], ["https://tec.openplanner.team/stops/H5fl100a", "https://tec.openplanner.team/stops/H5fl100b"], ["https://tec.openplanner.team/stops/N117bdb", "https://tec.openplanner.team/stops/N117bdc"], ["https://tec.openplanner.team/stops/X601ava", "https://tec.openplanner.team/stops/X601axa"], ["https://tec.openplanner.team/stops/N340acb", "https://tec.openplanner.team/stops/N340ada"], ["https://tec.openplanner.team/stops/Csecroi1", "https://tec.openplanner.team/stops/Csequew1"], ["https://tec.openplanner.team/stops/LBDcarr1", "https://tec.openplanner.team/stops/LJEchat1"], ["https://tec.openplanner.team/stops/Bosqcim2", "https://tec.openplanner.team/stops/Btubegy2"], ["https://tec.openplanner.team/stops/N538aea", "https://tec.openplanner.team/stops/N539ana"], ["https://tec.openplanner.team/stops/H4wn126b", "https://tec.openplanner.team/stops/H4wn127b"], ["https://tec.openplanner.team/stops/LXofans1", "https://tec.openplanner.team/stops/LXopeti2"], ["https://tec.openplanner.team/stops/X661aja", "https://tec.openplanner.team/stops/X661ajb"], ["https://tec.openplanner.team/stops/Bwaucig1", "https://tec.openplanner.team/stops/Bwaucig2"], ["https://tec.openplanner.team/stops/H5is169b", "https://tec.openplanner.team/stops/H5la177b"], ["https://tec.openplanner.team/stops/H2pe155a", "https://tec.openplanner.team/stops/H2pe157b"], ["https://tec.openplanner.team/stops/Bmrshan1", "https://tec.openplanner.team/stops/Cglfrom2"], ["https://tec.openplanner.team/stops/Cmcgoch2", "https://tec.openplanner.team/stops/Cmgcabi1"], ["https://tec.openplanner.team/stops/X954aea", "https://tec.openplanner.team/stops/X954aeb"], ["https://tec.openplanner.team/stops/LCschen1", "https://tec.openplanner.team/stops/LCschen2"], ["https://tec.openplanner.team/stops/Cjucar01", "https://tec.openplanner.team/stops/CMcarr2"], ["https://tec.openplanner.team/stops/N538adb", "https://tec.openplanner.team/stops/N542aia"], ["https://tec.openplanner.team/stops/Cgzcver1", "https://tec.openplanner.team/stops/Cgzm1482"], ["https://tec.openplanner.team/stops/LHAcite1", "https://tec.openplanner.team/stops/LVIsouv3"], ["https://tec.openplanner.team/stops/Bbsifml1", "https://tec.openplanner.team/stops/Bbsimpl1"], ["https://tec.openplanner.team/stops/X749adb", "https://tec.openplanner.team/stops/X749afa"], ["https://tec.openplanner.team/stops/N539aua", "https://tec.openplanner.team/stops/N539bfa"], ["https://tec.openplanner.team/stops/X601cja", "https://tec.openplanner.team/stops/X626afb"], ["https://tec.openplanner.team/stops/LLz21--1", "https://tec.openplanner.team/stops/LSTmast1"], ["https://tec.openplanner.team/stops/H1ni315b", "https://tec.openplanner.team/stops/H1ni318a"], ["https://tec.openplanner.team/stops/H3go102b", "https://tec.openplanner.team/stops/H3lr107a"], ["https://tec.openplanner.team/stops/Cmlfstt2", "https://tec.openplanner.team/stops/Cmlrous1"], ["https://tec.openplanner.team/stops/LsHkirc2", "https://tec.openplanner.team/stops/LsHkreu3"], ["https://tec.openplanner.team/stops/N511aoc", "https://tec.openplanner.team/stops/N511arb"], ["https://tec.openplanner.team/stops/N224aaa", "https://tec.openplanner.team/stops/X224aca"], ["https://tec.openplanner.team/stops/X670agb", "https://tec.openplanner.team/stops/X670akb"], ["https://tec.openplanner.team/stops/H4gu111a", "https://tec.openplanner.team/stops/H4ry130a"], ["https://tec.openplanner.team/stops/H2ch104a", "https://tec.openplanner.team/stops/H2ch109b"], ["https://tec.openplanner.team/stops/X636aaa", "https://tec.openplanner.team/stops/X670ala"], ["https://tec.openplanner.team/stops/X695aca", "https://tec.openplanner.team/stops/X695aga"], ["https://tec.openplanner.team/stops/Bwavcen1", "https://tec.openplanner.team/stops/Bwavgar8"], ["https://tec.openplanner.team/stops/Lbbremy2", "https://tec.openplanner.team/stops/Lcemalv2"], ["https://tec.openplanner.team/stops/X993ada", "https://tec.openplanner.team/stops/X993aja"], ["https://tec.openplanner.team/stops/X822aga", "https://tec.openplanner.team/stops/X822ahb"], ["https://tec.openplanner.team/stops/H4va233a", "https://tec.openplanner.team/stops/H4va234a"], ["https://tec.openplanner.team/stops/N121adb", "https://tec.openplanner.team/stops/N121afa"], ["https://tec.openplanner.team/stops/Blimegl1", "https://tec.openplanner.team/stops/Blmlgar1"], ["https://tec.openplanner.team/stops/H1hv130b", "https://tec.openplanner.team/stops/H1hv133b"], ["https://tec.openplanner.team/stops/N501hza", "https://tec.openplanner.team/stops/N501ibb"], ["https://tec.openplanner.team/stops/Bmanfbg1", "https://tec.openplanner.team/stops/Bmangar1"], ["https://tec.openplanner.team/stops/Bgzddfh1", "https://tec.openplanner.team/stops/Bgzddfh2"], ["https://tec.openplanner.team/stops/Lchtche1", "https://tec.openplanner.team/stops/Lchtche2"], ["https://tec.openplanner.team/stops/X696aca", "https://tec.openplanner.team/stops/X696aga"], ["https://tec.openplanner.team/stops/Lhefoot1", "https://tec.openplanner.team/stops/Lhehoux2"], ["https://tec.openplanner.team/stops/NL77ala", "https://tec.openplanner.team/stops/NL78aha"], ["https://tec.openplanner.team/stops/Lcemalv1", "https://tec.openplanner.team/stops/Lgrorch2"], ["https://tec.openplanner.team/stops/N503adb", "https://tec.openplanner.team/stops/N503ahb"], ["https://tec.openplanner.team/stops/X614ama", "https://tec.openplanner.team/stops/X614amb"], ["https://tec.openplanner.team/stops/N505aob", "https://tec.openplanner.team/stops/N580agb"], ["https://tec.openplanner.team/stops/LGeborn2", "https://tec.openplanner.team/stops/LGepeck2"], ["https://tec.openplanner.team/stops/X721ana", "https://tec.openplanner.team/stops/X721ata"], ["https://tec.openplanner.team/stops/X825aea", "https://tec.openplanner.team/stops/X825aeb"], ["https://tec.openplanner.team/stops/N232ava", "https://tec.openplanner.team/stops/N232awb"], ["https://tec.openplanner.team/stops/Cflmarq1", "https://tec.openplanner.team/stops/Cflspir2"], ["https://tec.openplanner.team/stops/H1wa154a", "https://tec.openplanner.team/stops/H1wa154b"], ["https://tec.openplanner.team/stops/N201aab", "https://tec.openplanner.team/stops/N201ara"], ["https://tec.openplanner.team/stops/X921aga", "https://tec.openplanner.team/stops/X921aqb"], ["https://tec.openplanner.team/stops/X833abb", "https://tec.openplanner.team/stops/X834aab"], ["https://tec.openplanner.team/stops/Cmlcaya1", "https://tec.openplanner.team/stops/Cmlhaie2"], ["https://tec.openplanner.team/stops/LCAwals2", "https://tec.openplanner.team/stops/LWHzave1"], ["https://tec.openplanner.team/stops/LESchat1", "https://tec.openplanner.team/stops/LEShony2"], ["https://tec.openplanner.team/stops/Lveecol2", "https://tec.openplanner.team/stops/Lvepris1"], ["https://tec.openplanner.team/stops/LPAbrun1", "https://tec.openplanner.team/stops/LPAmc--1"], ["https://tec.openplanner.team/stops/X789adb", "https://tec.openplanner.team/stops/X789afa"], ["https://tec.openplanner.team/stops/X673aaa", "https://tec.openplanner.team/stops/X673aba"], ["https://tec.openplanner.team/stops/Lfhchaf2", "https://tec.openplanner.team/stops/Lfhchaf3"], ["https://tec.openplanner.team/stops/LHOgymn2", "https://tec.openplanner.team/stops/LHOmc--2"], ["https://tec.openplanner.team/stops/Cstbasc2", "https://tec.openplanner.team/stops/Cstplac2"], ["https://tec.openplanner.team/stops/Cgoson11", "https://tec.openplanner.team/stops/Cgoson12"], ["https://tec.openplanner.team/stops/H1au101a", "https://tec.openplanner.team/stops/H1bx106a"], ["https://tec.openplanner.team/stops/N550agb", "https://tec.openplanner.team/stops/N550anb"], ["https://tec.openplanner.team/stops/LSLeg--2", "https://tec.openplanner.team/stops/LSLprov2"], ["https://tec.openplanner.team/stops/X636aea", "https://tec.openplanner.team/stops/X636bab"], ["https://tec.openplanner.team/stops/Llgpier2", "https://tec.openplanner.team/stops/Llgvero4"], ["https://tec.openplanner.team/stops/X996ada", "https://tec.openplanner.team/stops/X996aga"], ["https://tec.openplanner.team/stops/Lboeg--2", "https://tec.openplanner.team/stops/Lbosart2"], ["https://tec.openplanner.team/stops/Lpetenn1", "https://tec.openplanner.team/stops/Lpetenn2"], ["https://tec.openplanner.team/stops/LBOande2", "https://tec.openplanner.team/stops/LBOholt2"], ["https://tec.openplanner.team/stops/H1hm173a", "https://tec.openplanner.team/stops/H1sp353b"], ["https://tec.openplanner.team/stops/LFUgare1", "https://tec.openplanner.team/stops/LHurobi1"], ["https://tec.openplanner.team/stops/Bnivhut1", "https://tec.openplanner.team/stops/Bnivmfr1"], ["https://tec.openplanner.team/stops/Lsebuil1", "https://tec.openplanner.team/stops/Lserena1"], ["https://tec.openplanner.team/stops/H1hl128a", "https://tec.openplanner.team/stops/H1hl128b"], ["https://tec.openplanner.team/stops/X902aea", "https://tec.openplanner.team/stops/X902aob"], ["https://tec.openplanner.team/stops/Cmlvitf1", "https://tec.openplanner.team/stops/Cmlvitf2"], ["https://tec.openplanner.team/stops/Cdamare1", "https://tec.openplanner.team/stops/Cdamare2"], ["https://tec.openplanner.team/stops/X747aha", "https://tec.openplanner.team/stops/X749aab"], ["https://tec.openplanner.team/stops/LBTcarr2", "https://tec.openplanner.team/stops/LBTcarr4"], ["https://tec.openplanner.team/stops/X723adb", "https://tec.openplanner.team/stops/X723aea"], ["https://tec.openplanner.team/stops/H1je365a", "https://tec.openplanner.team/stops/H1je366a"], ["https://tec.openplanner.team/stops/LkTkabi2", "https://tec.openplanner.team/stops/LlNbene2"], ["https://tec.openplanner.team/stops/LCIsucr1", "https://tec.openplanner.team/stops/LCIsucr2"], ["https://tec.openplanner.team/stops/Bhenasc2", "https://tec.openplanner.team/stops/Bhenpla2"], ["https://tec.openplanner.team/stops/N539aeb", "https://tec.openplanner.team/stops/N539amb"], ["https://tec.openplanner.team/stops/X633aia", "https://tec.openplanner.team/stops/X653aeb"], ["https://tec.openplanner.team/stops/X390aha", "https://tec.openplanner.team/stops/X999ama"], ["https://tec.openplanner.team/stops/H1ch105a", "https://tec.openplanner.team/stops/H4tm140a"], ["https://tec.openplanner.team/stops/LHoetie2", "https://tec.openplanner.team/stops/LHovach2"], ["https://tec.openplanner.team/stops/H4ss157b", "https://tec.openplanner.team/stops/H5rx100a"], ["https://tec.openplanner.team/stops/X774aec", "https://tec.openplanner.team/stops/X774ahb"], ["https://tec.openplanner.team/stops/N501mua", "https://tec.openplanner.team/stops/N501myb"], ["https://tec.openplanner.team/stops/Ljubois1", "https://tec.openplanner.team/stops/Ljuchap3"], ["https://tec.openplanner.team/stops/Brebblo1", "https://tec.openplanner.team/stops/Brebpca1"], ["https://tec.openplanner.team/stops/Cobmven1", "https://tec.openplanner.team/stops/Cobmven2"], ["https://tec.openplanner.team/stops/LMNentr2", "https://tec.openplanner.team/stops/LMNheme2"], ["https://tec.openplanner.team/stops/Cbweco1", "https://tec.openplanner.team/stops/Cmg4bra1"], ["https://tec.openplanner.team/stops/H1ho123a", "https://tec.openplanner.team/stops/H1wa157b"], ["https://tec.openplanner.team/stops/LPRbayb2", "https://tec.openplanner.team/stops/LPRfour2"], ["https://tec.openplanner.team/stops/Btubegy2", "https://tec.openplanner.team/stops/Btubois1"], ["https://tec.openplanner.team/stops/Lbocorn1", "https://tec.openplanner.team/stops/Lbosart2"], ["https://tec.openplanner.team/stops/H4ag101a", "https://tec.openplanner.team/stops/H4ag102a"], ["https://tec.openplanner.team/stops/N501iaa", "https://tec.openplanner.team/stops/N501iqa"], ["https://tec.openplanner.team/stops/Cnapair2", "https://tec.openplanner.team/stops/N137aaa"], ["https://tec.openplanner.team/stops/H2tr250a", "https://tec.openplanner.team/stops/H2tr252a"], ["https://tec.openplanner.team/stops/H2bh106b", "https://tec.openplanner.team/stops/H2mg142a"], ["https://tec.openplanner.team/stops/Lmlboul2", "https://tec.openplanner.team/stops/Lmlmich2"], ["https://tec.openplanner.team/stops/Brsrpar1", "https://tec.openplanner.team/stops/Brsrrcu1"], ["https://tec.openplanner.team/stops/Lsemara2", "https://tec.openplanner.team/stops/Lsepair4"], ["https://tec.openplanner.team/stops/Canplch1", "https://tec.openplanner.team/stops/Canplch4"], ["https://tec.openplanner.team/stops/H1ba108a", "https://tec.openplanner.team/stops/H1ba111a"], ["https://tec.openplanner.team/stops/Cwfghis2", "https://tec.openplanner.team/stops/Cwfreta2"], ["https://tec.openplanner.team/stops/H2pr115a", "https://tec.openplanner.team/stops/H2pr115b"], ["https://tec.openplanner.team/stops/Cnacout2", "https://tec.openplanner.team/stops/Cnating2"], ["https://tec.openplanner.team/stops/LCEeg--2", "https://tec.openplanner.team/stops/LMEeg--1"], ["https://tec.openplanner.team/stops/Ctyhame1", "https://tec.openplanner.team/stops/Ctynamu1"], ["https://tec.openplanner.team/stops/Cgochfe1", "https://tec.openplanner.team/stops/CMemai1"], ["https://tec.openplanner.team/stops/LkEbbl-2", "https://tec.openplanner.team/stops/LkEfrie2"], ["https://tec.openplanner.team/stops/LMtegli1", "https://tec.openplanner.team/stops/LMttrou1"], ["https://tec.openplanner.team/stops/H1au100a", "https://tec.openplanner.team/stops/H1mr124b"], ["https://tec.openplanner.team/stops/Clacast1", "https://tec.openplanner.team/stops/Clacast2"], ["https://tec.openplanner.team/stops/Bqueegl2", "https://tec.openplanner.team/stops/Bquepla1"], ["https://tec.openplanner.team/stops/H4wr175a", "https://tec.openplanner.team/stops/H4wr175b"], ["https://tec.openplanner.team/stops/N558ama", "https://tec.openplanner.team/stops/N558amd"], ["https://tec.openplanner.team/stops/Loufleu2", "https://tec.openplanner.team/stops/Lougros1"], ["https://tec.openplanner.team/stops/X618aba", "https://tec.openplanner.team/stops/X618abb"], ["https://tec.openplanner.team/stops/Bgoemgr2", "https://tec.openplanner.team/stops/Bgoesch3"], ["https://tec.openplanner.team/stops/X739aha", "https://tec.openplanner.team/stops/X739aia"], ["https://tec.openplanner.team/stops/Cmlipsm2", "https://tec.openplanner.team/stops/Cmlrbru1"], ["https://tec.openplanner.team/stops/N553ana", "https://tec.openplanner.team/stops/N553anb"], ["https://tec.openplanner.team/stops/N551anb", "https://tec.openplanner.team/stops/N552acb"], ["https://tec.openplanner.team/stops/LBTchai3", "https://tec.openplanner.team/stops/LBThaut1"], ["https://tec.openplanner.team/stops/LLUlieg1", "https://tec.openplanner.team/stops/LLUlieg2"], ["https://tec.openplanner.team/stops/Cmerued2", "https://tec.openplanner.team/stops/Cmewaya2"], ["https://tec.openplanner.team/stops/LBEchan1", "https://tec.openplanner.team/stops/LBEtrix1"], ["https://tec.openplanner.team/stops/Loubiez1", "https://tec.openplanner.team/stops/Louense1"], ["https://tec.openplanner.team/stops/LlChebs1", "https://tec.openplanner.team/stops/LlCland1"], ["https://tec.openplanner.team/stops/X739afa", "https://tec.openplanner.team/stops/X739aga"], ["https://tec.openplanner.team/stops/Bwavfol1", "https://tec.openplanner.team/stops/Bwavnep1"], ["https://tec.openplanner.team/stops/H1wi153a", "https://tec.openplanner.team/stops/H1wi155a"], ["https://tec.openplanner.team/stops/Bgnvfai1", "https://tec.openplanner.team/stops/Blhupcl1"], ["https://tec.openplanner.team/stops/N232aaa", "https://tec.openplanner.team/stops/N286aaa"], ["https://tec.openplanner.team/stops/Cctbois4", "https://tec.openplanner.team/stops/Cmtproc2"], ["https://tec.openplanner.team/stops/Lglmoul2", "https://tec.openplanner.team/stops/Lmomarr4"], ["https://tec.openplanner.team/stops/X605acb", "https://tec.openplanner.team/stops/X634akb"], ["https://tec.openplanner.team/stops/H5bl121a", "https://tec.openplanner.team/stops/H5bl144a"], ["https://tec.openplanner.team/stops/H1fr118a", "https://tec.openplanner.team/stops/H1no141b"], ["https://tec.openplanner.team/stops/N504aaa", "https://tec.openplanner.team/stops/N511agb"], ["https://tec.openplanner.team/stops/N548ada", "https://tec.openplanner.team/stops/N548adb"], ["https://tec.openplanner.team/stops/N521asa", "https://tec.openplanner.team/stops/N521asb"], ["https://tec.openplanner.team/stops/LeYmosc2", "https://tec.openplanner.team/stops/LeYmuhl1"], ["https://tec.openplanner.team/stops/Cjuecha1", "https://tec.openplanner.team/stops/Cjuecha2"], ["https://tec.openplanner.team/stops/X687aia", "https://tec.openplanner.team/stops/X687ajb"], ["https://tec.openplanner.team/stops/H4ru242b", "https://tec.openplanner.team/stops/H4wc373a"], ["https://tec.openplanner.team/stops/Bbchcab1", "https://tec.openplanner.team/stops/Bbchpil2"], ["https://tec.openplanner.team/stops/Bitrcha1", "https://tec.openplanner.team/stops/Bitrgnt2"], ["https://tec.openplanner.team/stops/X358aba", "https://tec.openplanner.team/stops/X358adb"], ["https://tec.openplanner.team/stops/H1cu129a", "https://tec.openplanner.team/stops/H1cu129b"], ["https://tec.openplanner.team/stops/Bthspha1", "https://tec.openplanner.team/stops/Bwancal3"], ["https://tec.openplanner.team/stops/Cvpcime1", "https://tec.openplanner.team/stops/Cvpcour1"], ["https://tec.openplanner.team/stops/LLxalle2", "https://tec.openplanner.team/stops/LLxeclu2"], ["https://tec.openplanner.team/stops/LWbboeg1", "https://tec.openplanner.team/stops/LWbburn1"], ["https://tec.openplanner.team/stops/LaNmuhl2", "https://tec.openplanner.team/stops/LaNmuhl4"], ["https://tec.openplanner.team/stops/X261abb", "https://tec.openplanner.team/stops/X261ada"], ["https://tec.openplanner.team/stops/Bwatrte1", "https://tec.openplanner.team/stops/Bwatsuc1"], ["https://tec.openplanner.team/stops/H1cu119b", "https://tec.openplanner.team/stops/H1cu128b"], ["https://tec.openplanner.team/stops/LHHgare1", "https://tec.openplanner.team/stops/LSG111-1"], ["https://tec.openplanner.team/stops/Bwatbce2", "https://tec.openplanner.team/stops/Bwatcpr1"], ["https://tec.openplanner.team/stops/LmOkape1", "https://tec.openplanner.team/stops/Ltheg--1"], ["https://tec.openplanner.team/stops/H4os222b", "https://tec.openplanner.team/stops/H4re226b"], ["https://tec.openplanner.team/stops/N204aka", "https://tec.openplanner.team/stops/N204ala"], ["https://tec.openplanner.team/stops/Bottath1", "https://tec.openplanner.team/stops/Bottvil2"], ["https://tec.openplanner.team/stops/N584azb", "https://tec.openplanner.team/stops/N584bpa"], ["https://tec.openplanner.team/stops/H1ch143a", "https://tec.openplanner.team/stops/H4ld129b"], ["https://tec.openplanner.team/stops/X764aca", "https://tec.openplanner.team/stops/X764afb"], ["https://tec.openplanner.team/stops/LHEzoni2", "https://tec.openplanner.team/stops/LJOferm2"], ["https://tec.openplanner.team/stops/X982alb", "https://tec.openplanner.team/stops/X982ana"], ["https://tec.openplanner.team/stops/LBLplac1", "https://tec.openplanner.team/stops/LBLplas2"], ["https://tec.openplanner.team/stops/H4bi156b", "https://tec.openplanner.team/stops/H4eg103a"], ["https://tec.openplanner.team/stops/Lmlmaqu2", "https://tec.openplanner.team/stops/Lmlprie2"], ["https://tec.openplanner.team/stops/N270ada", "https://tec.openplanner.team/stops/N270aed"], ["https://tec.openplanner.team/stops/N161aab", "https://tec.openplanner.team/stops/N162afa"], ["https://tec.openplanner.team/stops/H1an102a", "https://tec.openplanner.team/stops/H1qv115b"], ["https://tec.openplanner.team/stops/NC11ama", "https://tec.openplanner.team/stops/NC11ana"], ["https://tec.openplanner.team/stops/LBAcent2", "https://tec.openplanner.team/stops/LBAcere2"], ["https://tec.openplanner.team/stops/N501mkb", "https://tec.openplanner.team/stops/N501mla"], ["https://tec.openplanner.team/stops/N512ama", "https://tec.openplanner.team/stops/N512asb"], ["https://tec.openplanner.team/stops/X344aeb", "https://tec.openplanner.team/stops/X363aaa"], ["https://tec.openplanner.team/stops/Bptbbie2", "https://tec.openplanner.team/stops/Bptbmco2"], ["https://tec.openplanner.team/stops/N501hpb", "https://tec.openplanner.team/stops/N501nca"], ["https://tec.openplanner.team/stops/X307aaa", "https://tec.openplanner.team/stops/X359agb"], ["https://tec.openplanner.team/stops/Baudvdu1", "https://tec.openplanner.team/stops/Baudwav2"], ["https://tec.openplanner.team/stops/Llmbouv2", "https://tec.openplanner.team/stops/Llmdeba2"], ["https://tec.openplanner.team/stops/Lanmouf2", "https://tec.openplanner.team/stops/Lanpisc1"], ["https://tec.openplanner.team/stops/Cvp3til5", "https://tec.openplanner.team/stops/Cvpchat2"], ["https://tec.openplanner.team/stops/Cfnsenz1", "https://tec.openplanner.team/stops/N106aib"], ["https://tec.openplanner.team/stops/Lhrcols4", "https://tec.openplanner.team/stops/Lvtboux1"], ["https://tec.openplanner.team/stops/Crccano2", "https://tec.openplanner.team/stops/Crcrlf2"], ["https://tec.openplanner.team/stops/Lmlcher1", "https://tec.openplanner.team/stops/Lmlhaut1"], ["https://tec.openplanner.team/stops/LeYloos1", "https://tec.openplanner.team/stops/LeYmero1"], ["https://tec.openplanner.team/stops/LREairp1", "https://tec.openplanner.team/stops/LREsaul1"], ["https://tec.openplanner.team/stops/H1hc125a", "https://tec.openplanner.team/stops/H1hc127d"], ["https://tec.openplanner.team/stops/Cmcbriq3", "https://tec.openplanner.team/stops/Cmchai2"], ["https://tec.openplanner.team/stops/N153abb", "https://tec.openplanner.team/stops/N153afb"], ["https://tec.openplanner.team/stops/X346afb", "https://tec.openplanner.team/stops/X892afb"], ["https://tec.openplanner.team/stops/LaHzoll*", "https://tec.openplanner.team/stops/LmNsied1"], ["https://tec.openplanner.team/stops/H1cu120a", "https://tec.openplanner.team/stops/H1fl139b"], ["https://tec.openplanner.team/stops/LHUcamp2", "https://tec.openplanner.team/stops/LHUsaul2"], ["https://tec.openplanner.team/stops/LYegeor1", "https://tec.openplanner.team/stops/LYegeor4"], ["https://tec.openplanner.team/stops/LBVclig2", "https://tec.openplanner.team/stops/LBVronx1"], ["https://tec.openplanner.team/stops/H4ml209a", "https://tec.openplanner.team/stops/H4ml209b"], ["https://tec.openplanner.team/stops/N202afb", "https://tec.openplanner.team/stops/N202aga"], ["https://tec.openplanner.team/stops/H4bo111a", "https://tec.openplanner.team/stops/H4bo181b"], ["https://tec.openplanner.team/stops/X652afb", "https://tec.openplanner.team/stops/X652afd"], ["https://tec.openplanner.team/stops/LHUalbe1", "https://tec.openplanner.team/stops/LHUneuv1"], ["https://tec.openplanner.team/stops/N501jua", "https://tec.openplanner.team/stops/N527aeb"], ["https://tec.openplanner.team/stops/Bbeaap51", "https://tec.openplanner.team/stops/Bbeaegl2"], ["https://tec.openplanner.team/stops/X804aga", "https://tec.openplanner.team/stops/X804awb"], ["https://tec.openplanner.team/stops/H1lo120a", "https://tec.openplanner.team/stops/H1lo120b"], ["https://tec.openplanner.team/stops/Lenptsa1", "https://tec.openplanner.team/stops/Llmdeba1"], ["https://tec.openplanner.team/stops/LeUfuss1", "https://tec.openplanner.team/stops/LeUkehr2"], ["https://tec.openplanner.team/stops/H4ka187b", "https://tec.openplanner.team/stops/H4ru236b"], ["https://tec.openplanner.team/stops/X624afa", "https://tec.openplanner.team/stops/X624afb"], ["https://tec.openplanner.team/stops/N225aca", "https://tec.openplanner.team/stops/N225acb"], ["https://tec.openplanner.team/stops/H4ty302a", "https://tec.openplanner.team/stops/H4ty302b"], ["https://tec.openplanner.team/stops/Cvpbifu2", "https://tec.openplanner.team/stops/Cvppost2"], ["https://tec.openplanner.team/stops/X664ala", "https://tec.openplanner.team/stops/X664ama"], ["https://tec.openplanner.team/stops/Cthoues2", "https://tec.openplanner.team/stops/Cthstre1"], ["https://tec.openplanner.team/stops/Btstpch2", "https://tec.openplanner.team/stops/N524aka"], ["https://tec.openplanner.team/stops/LTIgare1", "https://tec.openplanner.team/stops/LTIpora2"], ["https://tec.openplanner.team/stops/Lheelva1", "https://tec.openplanner.team/stops/Lheelva2"], ["https://tec.openplanner.team/stops/N508afb", "https://tec.openplanner.team/stops/N508ala"], ["https://tec.openplanner.team/stops/LaR1G--2", "https://tec.openplanner.team/stops/LrUlasc2"], ["https://tec.openplanner.team/stops/LHUetie*", "https://tec.openplanner.team/stops/LWNwavr3"], ["https://tec.openplanner.team/stops/X601aaa", "https://tec.openplanner.team/stops/X601acb"], ["https://tec.openplanner.team/stops/X759aba", "https://tec.openplanner.team/stops/X759acb"], ["https://tec.openplanner.team/stops/Lprmoin2", "https://tec.openplanner.team/stops/Lprtill2"], ["https://tec.openplanner.team/stops/H4ty276a", "https://tec.openplanner.team/stops/H4ty280a"], ["https://tec.openplanner.team/stops/X829adb", "https://tec.openplanner.team/stops/X829aeb"], ["https://tec.openplanner.team/stops/X653abb", "https://tec.openplanner.team/stops/X653aeb"], ["https://tec.openplanner.team/stops/X982aga", "https://tec.openplanner.team/stops/X982aia"], ["https://tec.openplanner.team/stops/LeUkehr1", "https://tec.openplanner.team/stops/LeUnisp1"], ["https://tec.openplanner.team/stops/LTResse2", "https://tec.openplanner.team/stops/LTRsain2"], ["https://tec.openplanner.team/stops/NC14ana", "https://tec.openplanner.team/stops/NC14apa"], ["https://tec.openplanner.team/stops/Lvepoud1", "https://tec.openplanner.team/stops/Lvepoud2"], ["https://tec.openplanner.team/stops/LwAlont3", "https://tec.openplanner.team/stops/LwAlont4"], ["https://tec.openplanner.team/stops/N501eib", "https://tec.openplanner.team/stops/N501lfb"], ["https://tec.openplanner.team/stops/N539aja", "https://tec.openplanner.team/stops/N539ajb"], ["https://tec.openplanner.team/stops/N532agb", "https://tec.openplanner.team/stops/N532aha"], ["https://tec.openplanner.team/stops/Clvchen1", "https://tec.openplanner.team/stops/Clvchen2"], ["https://tec.openplanner.team/stops/LDAandr1", "https://tec.openplanner.team/stops/LMuvill2"], ["https://tec.openplanner.team/stops/LLvpost1", "https://tec.openplanner.team/stops/NL78aeb"], ["https://tec.openplanner.team/stops/H4ma418b", "https://tec.openplanner.team/stops/H4ma420b"], ["https://tec.openplanner.team/stops/X605ada", "https://tec.openplanner.team/stops/X605adb"], ["https://tec.openplanner.team/stops/Lvomoul2", "https://tec.openplanner.team/stops/Lvovent1"], ["https://tec.openplanner.team/stops/H2mi122a", "https://tec.openplanner.team/stops/H2mi125a"], ["https://tec.openplanner.team/stops/Ctmmath1", "https://tec.openplanner.team/stops/Ctmmath2"], ["https://tec.openplanner.team/stops/N513aaa", "https://tec.openplanner.team/stops/N521ata"], ["https://tec.openplanner.team/stops/Bezegar2", "https://tec.openplanner.team/stops/Bezeksj4"], ["https://tec.openplanner.team/stops/Llgpari1", "https://tec.openplanner.team/stops/Llgstap2"], ["https://tec.openplanner.team/stops/X733aaa", "https://tec.openplanner.team/stops/X733abb"], ["https://tec.openplanner.team/stops/H1ho125b", "https://tec.openplanner.team/stops/H1ho139a"], ["https://tec.openplanner.team/stops/X617aeb", "https://tec.openplanner.team/stops/X695aba"], ["https://tec.openplanner.team/stops/Bnilspe4", "https://tec.openplanner.team/stops/Bwspjon1"], ["https://tec.openplanner.team/stops/N506aga", "https://tec.openplanner.team/stops/N556aea"], ["https://tec.openplanner.team/stops/N120aba", "https://tec.openplanner.team/stops/N120aea"], ["https://tec.openplanner.team/stops/H4ar104b", "https://tec.openplanner.team/stops/H4ar173a"], ["https://tec.openplanner.team/stops/Llglave1", "https://tec.openplanner.team/stops/Llgmako1"], ["https://tec.openplanner.team/stops/Lalverr2", "https://tec.openplanner.team/stops/Lrc594-2"], ["https://tec.openplanner.team/stops/N365acb", "https://tec.openplanner.team/stops/X344ada"], ["https://tec.openplanner.team/stops/LCelabi1", "https://tec.openplanner.team/stops/LFabraa1"], ["https://tec.openplanner.team/stops/LDLgran3", "https://tec.openplanner.team/stops/LDLgran4"], ["https://tec.openplanner.team/stops/N241afa", "https://tec.openplanner.team/stops/N585akb"], ["https://tec.openplanner.team/stops/Bqueblo2", "https://tec.openplanner.team/stops/Bquevel2"], ["https://tec.openplanner.team/stops/H1fr114a", "https://tec.openplanner.team/stops/H1fr152a"], ["https://tec.openplanner.team/stops/Btstbes2", "https://tec.openplanner.team/stops/Btstche2"], ["https://tec.openplanner.team/stops/H2lc145a", "https://tec.openplanner.team/stops/H2ll196b"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X770ada"], ["https://tec.openplanner.team/stops/H4co103b", "https://tec.openplanner.team/stops/H4co142a"], ["https://tec.openplanner.team/stops/N229akb", "https://tec.openplanner.team/stops/N230aca"], ["https://tec.openplanner.team/stops/LBIbois2", "https://tec.openplanner.team/stops/LBIcarg1"], ["https://tec.openplanner.team/stops/Blmlbou1", "https://tec.openplanner.team/stops/Blmlcar1"], ["https://tec.openplanner.team/stops/N501dtb", "https://tec.openplanner.team/stops/N501dzb"], ["https://tec.openplanner.team/stops/H1ob336a", "https://tec.openplanner.team/stops/H1ob336b"], ["https://tec.openplanner.team/stops/H1do120a", "https://tec.openplanner.team/stops/H1do122a"], ["https://tec.openplanner.team/stops/N360adc", "https://tec.openplanner.team/stops/N894agc"], ["https://tec.openplanner.team/stops/Chpchea2", "https://tec.openplanner.team/stops/Chpplac2"], ["https://tec.openplanner.team/stops/LSNness1", "https://tec.openplanner.team/stops/LXHfond3"], ["https://tec.openplanner.team/stops/Bnettir1", "https://tec.openplanner.team/stops/Bnetvan1"], ["https://tec.openplanner.team/stops/N106aja", "https://tec.openplanner.team/stops/N106ana"], ["https://tec.openplanner.team/stops/N874aib", "https://tec.openplanner.team/stops/N874alb"], ["https://tec.openplanner.team/stops/X604aha", "https://tec.openplanner.team/stops/X625agb"], ["https://tec.openplanner.team/stops/Crasabl1", "https://tec.openplanner.team/stops/Crasocq2"], ["https://tec.openplanner.team/stops/Ljhcarr2", "https://tec.openplanner.team/stops/Ljhsart1"], ["https://tec.openplanner.team/stops/N110ada", "https://tec.openplanner.team/stops/N110adb"], ["https://tec.openplanner.team/stops/LFsconc1", "https://tec.openplanner.team/stops/LFsherm2"], ["https://tec.openplanner.team/stops/X925ala", "https://tec.openplanner.team/stops/X925alb"], ["https://tec.openplanner.team/stops/LSBsere2", "https://tec.openplanner.team/stops/LSBsere4"], ["https://tec.openplanner.team/stops/LAMviam1", "https://tec.openplanner.team/stops/LAMviam2"], ["https://tec.openplanner.team/stops/N236ama", "https://tec.openplanner.team/stops/N236aoa"], ["https://tec.openplanner.team/stops/X633aib", "https://tec.openplanner.team/stops/X654aia"], ["https://tec.openplanner.team/stops/Ctm4che1", "https://tec.openplanner.team/stops/Ctmmonu1"], ["https://tec.openplanner.team/stops/X919aca", "https://tec.openplanner.team/stops/X919acb"], ["https://tec.openplanner.team/stops/Chhclde1", "https://tec.openplanner.team/stops/Chhsncb1"], ["https://tec.openplanner.team/stops/H4bh104a", "https://tec.openplanner.team/stops/H4bh104b"], ["https://tec.openplanner.team/stops/Ccimont1", "https://tec.openplanner.team/stops/Ccircar1"], ["https://tec.openplanner.team/stops/H4ru236a", "https://tec.openplanner.team/stops/H4ru246b"], ["https://tec.openplanner.team/stops/H1bo103a", "https://tec.openplanner.team/stops/H1sg150a"], ["https://tec.openplanner.team/stops/Cfcbobr2", "https://tec.openplanner.team/stops/Cfcsaut4"], ["https://tec.openplanner.team/stops/N532amb", "https://tec.openplanner.team/stops/N574agb"], ["https://tec.openplanner.team/stops/Bmelegl1", "https://tec.openplanner.team/stops/Bmelmqu1"], ["https://tec.openplanner.team/stops/NL76agd", "https://tec.openplanner.team/stops/NL77abb"], ["https://tec.openplanner.team/stops/X811amb", "https://tec.openplanner.team/stops/X811ana"], ["https://tec.openplanner.team/stops/Bgntcom1", "https://tec.openplanner.team/stops/Bgntffo2"], ["https://tec.openplanner.team/stops/H1ms294c", "https://tec.openplanner.team/stops/H1ms364a"], ["https://tec.openplanner.team/stops/Bneelaa1", "https://tec.openplanner.team/stops/Brach122"], ["https://tec.openplanner.team/stops/H1wa160a", "https://tec.openplanner.team/stops/H1wa160b"], ["https://tec.openplanner.team/stops/Bwavlon1", "https://tec.openplanner.team/stops/Bwavlon2"], ["https://tec.openplanner.team/stops/H1br121a", "https://tec.openplanner.team/stops/H1br122b"], ["https://tec.openplanner.team/stops/LlEzoll1", "https://tec.openplanner.team/stops/LlEzoll2"], ["https://tec.openplanner.team/stops/X662aoa", "https://tec.openplanner.team/stops/X662aob"], ["https://tec.openplanner.team/stops/Cjucpui1", "https://tec.openplanner.team/stops/Cjumarc1"], ["https://tec.openplanner.team/stops/N118aeb", "https://tec.openplanner.team/stops/N118afb"], ["https://tec.openplanner.team/stops/LSPplat2", "https://tec.openplanner.team/stops/LSPtonn2"], ["https://tec.openplanner.team/stops/Cmcgoch1", "https://tec.openplanner.team/stops/Cmcgoch2"], ["https://tec.openplanner.team/stops/N127afa", "https://tec.openplanner.team/stops/N134ahb"], ["https://tec.openplanner.team/stops/X659aia", "https://tec.openplanner.team/stops/X659aib"], ["https://tec.openplanner.team/stops/Lheaaz-2", "https://tec.openplanner.team/stops/LHSlava2"], ["https://tec.openplanner.team/stops/Becesbo1", "https://tec.openplanner.team/stops/H2ec100b"], ["https://tec.openplanner.team/stops/H4le127b", "https://tec.openplanner.team/stops/H4le128b"], ["https://tec.openplanner.team/stops/Bnivpgr1", "https://tec.openplanner.team/stops/Bnivtra2"], ["https://tec.openplanner.team/stops/N308aea", "https://tec.openplanner.team/stops/N308aic"], ["https://tec.openplanner.team/stops/Bhaless1", "https://tec.openplanner.team/stops/Bhaless2"], ["https://tec.openplanner.team/stops/N562boa", "https://tec.openplanner.team/stops/N562bob"], ["https://tec.openplanner.team/stops/H1ba102a", "https://tec.openplanner.team/stops/H1ba114a"], ["https://tec.openplanner.team/stops/Bosqcar1", "https://tec.openplanner.team/stops/Bvirrbo1"], ["https://tec.openplanner.team/stops/X796aab", "https://tec.openplanner.team/stops/X982bmb"], ["https://tec.openplanner.team/stops/H1hw118a", "https://tec.openplanner.team/stops/H1mc129a"], ["https://tec.openplanner.team/stops/Bbwacol2", "https://tec.openplanner.team/stops/Bwavpar1"], ["https://tec.openplanner.team/stops/Brixcme2", "https://tec.openplanner.team/stops/Brixfro3"], ["https://tec.openplanner.team/stops/Bblarbe2", "https://tec.openplanner.team/stops/Bblasse2"], ["https://tec.openplanner.team/stops/Bwatgar2", "https://tec.openplanner.team/stops/Bwatgar3"], ["https://tec.openplanner.team/stops/Cfocant1", "https://tec.openplanner.team/stops/Cfocorn1"], ["https://tec.openplanner.team/stops/LXobaty3", "https://tec.openplanner.team/stops/X599afd"], ["https://tec.openplanner.team/stops/N121aab", "https://tec.openplanner.team/stops/N158abb"], ["https://tec.openplanner.team/stops/Cnacroc2", "https://tec.openplanner.team/stops/Cnaferr1"], ["https://tec.openplanner.team/stops/N501hca", "https://tec.openplanner.team/stops/N501hkb"], ["https://tec.openplanner.team/stops/LCn4---1", "https://tec.openplanner.team/stops/LCn4---2"], ["https://tec.openplanner.team/stops/Bbauham1", "https://tec.openplanner.team/stops/Blilgar1"], ["https://tec.openplanner.team/stops/H4qu230b", "https://tec.openplanner.team/stops/H4tg262a"], ["https://tec.openplanner.team/stops/LLOchpl1", "https://tec.openplanner.team/stops/LLOcreu1"], ["https://tec.openplanner.team/stops/X942aab", "https://tec.openplanner.team/stops/X942aea"], ["https://tec.openplanner.team/stops/Loutras1", "https://tec.openplanner.team/stops/Lscbarg2"], ["https://tec.openplanner.team/stops/N222aaa", "https://tec.openplanner.team/stops/N222aya"], ["https://tec.openplanner.team/stops/Ccpetan2", "https://tec.openplanner.team/stops/Cptccas1"], ["https://tec.openplanner.team/stops/Bhalrat1", "https://tec.openplanner.team/stops/Bhalwat2"], ["https://tec.openplanner.team/stops/X790afb", "https://tec.openplanner.team/stops/X790aja"], ["https://tec.openplanner.team/stops/X617agb", "https://tec.openplanner.team/stops/X617ahb"], ["https://tec.openplanner.team/stops/X601afa", "https://tec.openplanner.team/stops/X662aqb"], ["https://tec.openplanner.team/stops/LLAbure1", "https://tec.openplanner.team/stops/LLAchpl1"], ["https://tec.openplanner.team/stops/Llgamer2", "https://tec.openplanner.team/stops/Llgoutr1"], ["https://tec.openplanner.team/stops/H2sb259a", "https://tec.openplanner.team/stops/H3lr132b"], ["https://tec.openplanner.team/stops/Btubmar1", "https://tec.openplanner.team/stops/Btubmar2"], ["https://tec.openplanner.team/stops/H4hq131a", "https://tec.openplanner.team/stops/H4hs135a"], ["https://tec.openplanner.team/stops/X994akb", "https://tec.openplanner.team/stops/X995add"], ["https://tec.openplanner.team/stops/Bbldgar2", "https://tec.openplanner.team/stops/Bhmmjco1"], ["https://tec.openplanner.team/stops/Cdamare2", "https://tec.openplanner.team/stops/Cloauln2"], ["https://tec.openplanner.team/stops/N501hxz", "https://tec.openplanner.team/stops/N501lzz"], ["https://tec.openplanner.team/stops/Lougoff2", "https://tec.openplanner.team/stops/Louvand2"], ["https://tec.openplanner.team/stops/N244aea", "https://tec.openplanner.team/stops/N244aeb"], ["https://tec.openplanner.team/stops/X615bha", "https://tec.openplanner.team/stops/X615bhb"], ["https://tec.openplanner.team/stops/H1bu138a", "https://tec.openplanner.team/stops/H2ep172a"], ["https://tec.openplanner.team/stops/Balssvi2", "https://tec.openplanner.team/stops/Balswwe2"], ["https://tec.openplanner.team/stops/H4bw100a", "https://tec.openplanner.team/stops/H4bw100b"], ["https://tec.openplanner.team/stops/N201aga", "https://tec.openplanner.team/stops/N201aub"], ["https://tec.openplanner.team/stops/H1ba109a", "https://tec.openplanner.team/stops/H1ba115b"], ["https://tec.openplanner.team/stops/Lhufays2", "https://tec.openplanner.team/stops/Lhujonc2"], ["https://tec.openplanner.team/stops/Ldidefo1", "https://tec.openplanner.team/stops/Ldipl--5"], ["https://tec.openplanner.team/stops/LGrchpl2", "https://tec.openplanner.team/stops/LORherl1"], ["https://tec.openplanner.team/stops/Cwgcroi2", "https://tec.openplanner.team/stops/Cwgdeba2"], ["https://tec.openplanner.team/stops/X902azb", "https://tec.openplanner.team/stops/X902bgb"], ["https://tec.openplanner.team/stops/Ccinali1", "https://tec.openplanner.team/stops/Cmlm2412"], ["https://tec.openplanner.team/stops/X614aha", "https://tec.openplanner.team/stops/X615ama"], ["https://tec.openplanner.team/stops/Cgy3012", "https://tec.openplanner.team/stops/Cmtfoye1"], ["https://tec.openplanner.team/stops/X666aja", "https://tec.openplanner.team/stops/X729abb"], ["https://tec.openplanner.team/stops/LrApont2", "https://tec.openplanner.team/stops/LrAtitf1"], ["https://tec.openplanner.team/stops/H4hq130a", "https://tec.openplanner.team/stops/H4hs137b"], ["https://tec.openplanner.team/stops/N104abb", "https://tec.openplanner.team/stops/N104acb"], ["https://tec.openplanner.team/stops/H1gh158a", "https://tec.openplanner.team/stops/H1gh160a"], ["https://tec.openplanner.team/stops/LRRmeta1", "https://tec.openplanner.team/stops/LSSvill2"], ["https://tec.openplanner.team/stops/H4re225a", "https://tec.openplanner.team/stops/H5at122a"], ["https://tec.openplanner.team/stops/LMImc--2", "https://tec.openplanner.team/stops/LMIpast1"], ["https://tec.openplanner.team/stops/H5pe149a", "https://tec.openplanner.team/stops/H5pe150a"], ["https://tec.openplanner.team/stops/LCsange2", "https://tec.openplanner.team/stops/LCseg--2"], ["https://tec.openplanner.team/stops/N526ada", "https://tec.openplanner.team/stops/N526adb"], ["https://tec.openplanner.team/stops/N353aab", "https://tec.openplanner.team/stops/N353aba"], ["https://tec.openplanner.team/stops/Lfhdone1", "https://tec.openplanner.team/stops/Lfhnrou1"], ["https://tec.openplanner.team/stops/X907afa", "https://tec.openplanner.team/stops/X907ahb"], ["https://tec.openplanner.team/stops/Lfhborg2", "https://tec.openplanner.team/stops/Livgera3"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lhutill1"], ["https://tec.openplanner.team/stops/H4mo170a", "https://tec.openplanner.team/stops/H4rx141a"], ["https://tec.openplanner.team/stops/Bclgapi2", "https://tec.openplanner.team/stops/Bclgbvi2"], ["https://tec.openplanner.team/stops/Lvtchpl1", "https://tec.openplanner.team/stops/Lvtchpl4"], ["https://tec.openplanner.team/stops/Bbsivi11", "https://tec.openplanner.team/stops/Bbsivil3"], ["https://tec.openplanner.team/stops/LAWhein2", "https://tec.openplanner.team/stops/LAWxhen2"], ["https://tec.openplanner.team/stops/Balsbeg2", "https://tec.openplanner.team/stops/Bbrlrph2"], ["https://tec.openplanner.team/stops/N103aib", "https://tec.openplanner.team/stops/N106agb"], ["https://tec.openplanner.team/stops/H1fa117b", "https://tec.openplanner.team/stops/H1fa121a"], ["https://tec.openplanner.team/stops/H2ha133a", "https://tec.openplanner.team/stops/H2sb233c"], ["https://tec.openplanner.team/stops/Cchtiro4", "https://tec.openplanner.team/stops/NC01aha"], ["https://tec.openplanner.team/stops/H1qu106b", "https://tec.openplanner.team/stops/H1qu107b"], ["https://tec.openplanner.team/stops/Cmacreu2", "https://tec.openplanner.team/stops/Cmareun1"], ["https://tec.openplanner.team/stops/LJEmalg1", "https://tec.openplanner.team/stops/LVEdTEC1"], ["https://tec.openplanner.team/stops/LeLkalt1", "https://tec.openplanner.team/stops/LwYsour3"], ["https://tec.openplanner.team/stops/Llgbass2", "https://tec.openplanner.team/stops/Llgdefr2"], ["https://tec.openplanner.team/stops/Ljeblum2", "https://tec.openplanner.team/stops/Ljeespe2"], ["https://tec.openplanner.team/stops/N501msb", "https://tec.openplanner.team/stops/N501mtc"], ["https://tec.openplanner.team/stops/N507aha", "https://tec.openplanner.team/stops/N507ama"], ["https://tec.openplanner.team/stops/Bwavbwa2", "https://tec.openplanner.team/stops/Bwavdel2"], ["https://tec.openplanner.team/stops/Cmlaili1", "https://tec.openplanner.team/stops/Cmlaili2"], ["https://tec.openplanner.team/stops/Btubaig1", "https://tec.openplanner.team/stops/Btubsca1"], ["https://tec.openplanner.team/stops/Cmomalg1", "https://tec.openplanner.team/stops/Cmoprov1"], ["https://tec.openplanner.team/stops/H1be101b", "https://tec.openplanner.team/stops/H1be104a"], ["https://tec.openplanner.team/stops/N515aga", "https://tec.openplanner.team/stops/N515aja"], ["https://tec.openplanner.team/stops/LMOford1", "https://tec.openplanner.team/stops/LMOm48-1"], ["https://tec.openplanner.team/stops/N537aka", "https://tec.openplanner.team/stops/N537alb"], ["https://tec.openplanner.team/stops/Lvealbe2", "https://tec.openplanner.team/stops/Lvepris1"], ["https://tec.openplanner.team/stops/X999afa", "https://tec.openplanner.team/stops/X999afb"], ["https://tec.openplanner.team/stops/X812aoa", "https://tec.openplanner.team/stops/X812aqa"], ["https://tec.openplanner.team/stops/Lch179-1", "https://tec.openplanner.team/stops/Lchcomm1"], ["https://tec.openplanner.team/stops/Bovecha1", "https://tec.openplanner.team/stops/Bwavtrt1"], ["https://tec.openplanner.team/stops/Bwavtrt1", "https://tec.openplanner.team/stops/Bwavtrt2"], ["https://tec.openplanner.team/stops/N534bsa", "https://tec.openplanner.team/stops/N534btb"], ["https://tec.openplanner.team/stops/H1au113a", "https://tec.openplanner.team/stops/H1mr126b"], ["https://tec.openplanner.team/stops/N219aea", "https://tec.openplanner.team/stops/N219afb"], ["https://tec.openplanner.team/stops/H2ma205b", "https://tec.openplanner.team/stops/H2ma263a"], ["https://tec.openplanner.team/stops/Cmygbbo2", "https://tec.openplanner.team/stops/Cmyvert1"], ["https://tec.openplanner.team/stops/H4lz121a", "https://tec.openplanner.team/stops/H4lz160a"], ["https://tec.openplanner.team/stops/X766ada", "https://tec.openplanner.team/stops/X766aea"], ["https://tec.openplanner.team/stops/LWAhart1", "https://tec.openplanner.team/stops/LWAlpre1"], ["https://tec.openplanner.team/stops/X602aba", "https://tec.openplanner.team/stops/X604afc"], ["https://tec.openplanner.team/stops/LnIfrie1", "https://tec.openplanner.team/stops/LnIkirc2"], ["https://tec.openplanner.team/stops/H1hr128a", "https://tec.openplanner.team/stops/H1ne149a"], ["https://tec.openplanner.team/stops/X638arb", "https://tec.openplanner.team/stops/X639acd"], ["https://tec.openplanner.team/stops/H1po139a", "https://tec.openplanner.team/stops/H1po139b"], ["https://tec.openplanner.team/stops/H4lu126a", "https://tec.openplanner.team/stops/H4lu128a"], ["https://tec.openplanner.team/stops/H4mv193b", "https://tec.openplanner.team/stops/H4va231a"], ["https://tec.openplanner.team/stops/LLocruc2", "https://tec.openplanner.team/stops/LRcjard1"], ["https://tec.openplanner.team/stops/N201aeb", "https://tec.openplanner.team/stops/N201aed"], ["https://tec.openplanner.team/stops/X879aba", "https://tec.openplanner.team/stops/X879acb"], ["https://tec.openplanner.team/stops/NL76acb", "https://tec.openplanner.team/stops/NL80acb"], ["https://tec.openplanner.team/stops/Btubmar2", "https://tec.openplanner.team/stops/Btubsam2"], ["https://tec.openplanner.team/stops/N501dwb", "https://tec.openplanner.team/stops/N501etz"], ["https://tec.openplanner.team/stops/LFmpoin1", "https://tec.openplanner.team/stops/LFmroye1"], ["https://tec.openplanner.team/stops/LVIdeva2", "https://tec.openplanner.team/stops/LVIvert1"], ["https://tec.openplanner.team/stops/Bwspm371", "https://tec.openplanner.team/stops/Bwspm372"], ["https://tec.openplanner.team/stops/H4og207b", "https://tec.openplanner.team/stops/H4og208b"], ["https://tec.openplanner.team/stops/Bblaang2", "https://tec.openplanner.team/stops/Bblafrn2"], ["https://tec.openplanner.team/stops/LFEplac1", "https://tec.openplanner.team/stops/X597apb"], ["https://tec.openplanner.team/stops/H1sp354a", "https://tec.openplanner.team/stops/H1sp357b"], ["https://tec.openplanner.team/stops/X879ara", "https://tec.openplanner.team/stops/X880agb"], ["https://tec.openplanner.team/stops/X802aga", "https://tec.openplanner.team/stops/X822aha"], ["https://tec.openplanner.team/stops/Bcrnvic1", "https://tec.openplanner.team/stops/Bernpla1"], ["https://tec.openplanner.team/stops/Bblaniv1", "https://tec.openplanner.team/stops/Bblaniv2"], ["https://tec.openplanner.team/stops/N155agb", "https://tec.openplanner.team/stops/N155aja"], ["https://tec.openplanner.team/stops/N543bta", "https://tec.openplanner.team/stops/N543btb"], ["https://tec.openplanner.team/stops/X731agb", "https://tec.openplanner.team/stops/X731amb"], ["https://tec.openplanner.team/stops/N211aya", "https://tec.openplanner.team/stops/N211ayb"], ["https://tec.openplanner.team/stops/LLTgole2", "https://tec.openplanner.team/stops/LLTtour2"], ["https://tec.openplanner.team/stops/Bhaleur1", "https://tec.openplanner.team/stops/Bhalker1"], ["https://tec.openplanner.team/stops/Blsmcha3", "https://tec.openplanner.team/stops/Blsmvan1"], ["https://tec.openplanner.team/stops/X811afa", "https://tec.openplanner.team/stops/X811agb"], ["https://tec.openplanner.team/stops/N509asa", "https://tec.openplanner.team/stops/N509atb"], ["https://tec.openplanner.team/stops/H2le148b", "https://tec.openplanner.team/stops/H2le150a"], ["https://tec.openplanner.team/stops/H4de112a", "https://tec.openplanner.team/stops/H4ss156a"], ["https://tec.openplanner.team/stops/Lseptsa2", "https://tec.openplanner.team/stops/Lseverh2"], ["https://tec.openplanner.team/stops/Bwatath3", "https://tec.openplanner.team/stops/Bwatlbs1"], ["https://tec.openplanner.team/stops/NL74aga", "https://tec.openplanner.team/stops/NL74ahc"], ["https://tec.openplanner.team/stops/N426ada", "https://tec.openplanner.team/stops/N426aea"], ["https://tec.openplanner.team/stops/N103aca", "https://tec.openplanner.team/stops/N103afa"], ["https://tec.openplanner.team/stops/LHecime2", "https://tec.openplanner.team/stops/LHStrez2"], ["https://tec.openplanner.team/stops/X659aib", "https://tec.openplanner.team/stops/X659ata"], ["https://tec.openplanner.team/stops/N213aca", "https://tec.openplanner.team/stops/N348adb"], ["https://tec.openplanner.team/stops/Bllnein3", "https://tec.openplanner.team/stops/Bllnrge2"], ["https://tec.openplanner.team/stops/N201ahb", "https://tec.openplanner.team/stops/N201aqb"], ["https://tec.openplanner.team/stops/H1je219a", "https://tec.openplanner.team/stops/H1je219b"], ["https://tec.openplanner.team/stops/X672aeb", "https://tec.openplanner.team/stops/X672aec"], ["https://tec.openplanner.team/stops/N127baa", "https://tec.openplanner.team/stops/N134aha"], ["https://tec.openplanner.team/stops/Cclchap2", "https://tec.openplanner.team/stops/Cclplac2"], ["https://tec.openplanner.team/stops/Bhenard1", "https://tec.openplanner.team/stops/Bhenhau1"], ["https://tec.openplanner.team/stops/LvA12--3", "https://tec.openplanner.team/stops/LvAkirc4"], ["https://tec.openplanner.team/stops/N212aba", "https://tec.openplanner.team/stops/N212abb"], ["https://tec.openplanner.team/stops/X721abb", "https://tec.openplanner.team/stops/X763agb"], ["https://tec.openplanner.team/stops/N501dba", "https://tec.openplanner.team/stops/N533aob"], ["https://tec.openplanner.team/stops/N118aya", "https://tec.openplanner.team/stops/N118ayb"], ["https://tec.openplanner.team/stops/N501kuc", "https://tec.openplanner.team/stops/N501kzb"], ["https://tec.openplanner.team/stops/Lghhaut2", "https://tec.openplanner.team/stops/Lghpara1"], ["https://tec.openplanner.team/stops/H2hg145b", "https://tec.openplanner.team/stops/H2hg150b"], ["https://tec.openplanner.team/stops/X948aea", "https://tec.openplanner.team/stops/X948afa"], ["https://tec.openplanner.team/stops/H2le153a", "https://tec.openplanner.team/stops/H2mo122c"], ["https://tec.openplanner.team/stops/N127aeb", "https://tec.openplanner.team/stops/N140aab"], ["https://tec.openplanner.team/stops/H4mv193b", "https://tec.openplanner.team/stops/H4mv195b"], ["https://tec.openplanner.team/stops/H5bl123a", "https://tec.openplanner.team/stops/H5bl123b"], ["https://tec.openplanner.team/stops/X938adb", "https://tec.openplanner.team/stops/X938aeb"], ["https://tec.openplanner.team/stops/LNCchau1", "https://tec.openplanner.team/stops/LNCmada1"], ["https://tec.openplanner.team/stops/LRGgend3", "https://tec.openplanner.team/stops/LRGpt5-3"], ["https://tec.openplanner.team/stops/N270aed", "https://tec.openplanner.team/stops/N270afc"], ["https://tec.openplanner.team/stops/X363aaa", "https://tec.openplanner.team/stops/X363aba"], ["https://tec.openplanner.team/stops/N548aab", "https://tec.openplanner.team/stops/N569ada"], ["https://tec.openplanner.team/stops/Bnivari1", "https://tec.openplanner.team/stops/Bnivvcw2"], ["https://tec.openplanner.team/stops/X644aaa", "https://tec.openplanner.team/stops/X644aab"], ["https://tec.openplanner.team/stops/LCPcomm1", "https://tec.openplanner.team/stops/LCPecli2"], ["https://tec.openplanner.team/stops/Lloauto2", "https://tec.openplanner.team/stops/Llocime2"], ["https://tec.openplanner.team/stops/X926aba", "https://tec.openplanner.team/stops/X926afb"], ["https://tec.openplanner.team/stops/X639aib", "https://tec.openplanner.team/stops/X639aua"], ["https://tec.openplanner.team/stops/N515aqd", "https://tec.openplanner.team/stops/N518acc"], ["https://tec.openplanner.team/stops/X653afb", "https://tec.openplanner.team/stops/X667aca"], ["https://tec.openplanner.team/stops/Cmeptmi1", "https://tec.openplanner.team/stops/Cmeptmi2"], ["https://tec.openplanner.team/stops/X811acb", "https://tec.openplanner.team/stops/X811aka"], ["https://tec.openplanner.team/stops/X998aab", "https://tec.openplanner.team/stops/X998aza"], ["https://tec.openplanner.team/stops/H2hg268c", "https://tec.openplanner.team/stops/H2hg269a"], ["https://tec.openplanner.team/stops/Bgntcbo1", "https://tec.openplanner.team/stops/Bgntcom1"], ["https://tec.openplanner.team/stops/X638aka", "https://tec.openplanner.team/stops/X638ama"], ["https://tec.openplanner.team/stops/LMYchpl1", "https://tec.openplanner.team/stops/X597aqb"], ["https://tec.openplanner.team/stops/Bperalv1", "https://tec.openplanner.team/stops/Bperalv2"], ["https://tec.openplanner.team/stops/N510afa", "https://tec.openplanner.team/stops/N513agd"], ["https://tec.openplanner.team/stops/Lghprea1", "https://tec.openplanner.team/stops/Lghprea2"], ["https://tec.openplanner.team/stops/N501gsa", "https://tec.openplanner.team/stops/N501hly"], ["https://tec.openplanner.team/stops/X911aca", "https://tec.openplanner.team/stops/X911aeb"], ["https://tec.openplanner.team/stops/LRGchap1", "https://tec.openplanner.team/stops/LRGgend1"], ["https://tec.openplanner.team/stops/Cfccol1", "https://tec.openplanner.team/stops/NH21afb"], ["https://tec.openplanner.team/stops/Cdogrro2", "https://tec.openplanner.team/stops/Ctufleu4"], ["https://tec.openplanner.team/stops/Llgcite2", "https://tec.openplanner.team/stops/Llgphol1"], ["https://tec.openplanner.team/stops/Cthrlef1", "https://tec.openplanner.team/stops/Cthrwai1"], ["https://tec.openplanner.team/stops/X261adb", "https://tec.openplanner.team/stops/X982bsb"], ["https://tec.openplanner.team/stops/H2an101b", "https://tec.openplanner.team/stops/H2an102b"], ["https://tec.openplanner.team/stops/LJU51--2", "https://tec.openplanner.team/stops/LJUmate1"], ["https://tec.openplanner.team/stops/X820aca", "https://tec.openplanner.team/stops/X820afb"], ["https://tec.openplanner.team/stops/Bhenard4", "https://tec.openplanner.team/stops/Bhengou1"], ["https://tec.openplanner.team/stops/H1mr122b", "https://tec.openplanner.team/stops/H1wi151a"], ["https://tec.openplanner.team/stops/Ljuchap3", "https://tec.openplanner.team/stops/Llgcouv1"], ["https://tec.openplanner.team/stops/Bopplon2", "https://tec.openplanner.team/stops/Borbode2"], ["https://tec.openplanner.team/stops/H4to135a", "https://tec.openplanner.team/stops/H4to137b"], ["https://tec.openplanner.team/stops/X919ala", "https://tec.openplanner.team/stops/X919aoa"], ["https://tec.openplanner.team/stops/H4do108b", "https://tec.openplanner.team/stops/H4do202b"], ["https://tec.openplanner.team/stops/Bbsicen1", "https://tec.openplanner.team/stops/Bbsipos2"], ["https://tec.openplanner.team/stops/N561aba", "https://tec.openplanner.team/stops/N584aqa"], ["https://tec.openplanner.team/stops/Lrcstad1", "https://tec.openplanner.team/stops/Lrcvill1"], ["https://tec.openplanner.team/stops/LBLplas2", "https://tec.openplanner.team/stops/LMotrem2"], ["https://tec.openplanner.team/stops/Cvlstan1", "https://tec.openplanner.team/stops/NH21aeb"], ["https://tec.openplanner.team/stops/N212adb", "https://tec.openplanner.team/stops/N348acb"], ["https://tec.openplanner.team/stops/N424adb", "https://tec.openplanner.team/stops/N424aeb"], ["https://tec.openplanner.team/stops/Lalmakr2", "https://tec.openplanner.team/stops/Lanplat1"], ["https://tec.openplanner.team/stops/Cfrcoqu2", "https://tec.openplanner.team/stops/Cfrptfe2"], ["https://tec.openplanner.team/stops/H4mx114b", "https://tec.openplanner.team/stops/H4mx117a"], ["https://tec.openplanner.team/stops/X746aca", "https://tec.openplanner.team/stops/X746amb"], ["https://tec.openplanner.team/stops/N511akb", "https://tec.openplanner.team/stops/N511alb"], ["https://tec.openplanner.team/stops/LeYfeld2", "https://tec.openplanner.team/stops/LeYteeh2"], ["https://tec.openplanner.team/stops/N505aeb", "https://tec.openplanner.team/stops/N505afa"], ["https://tec.openplanner.team/stops/Cmcbriq1", "https://tec.openplanner.team/stops/Cmchai1"], ["https://tec.openplanner.team/stops/H1as100b", "https://tec.openplanner.team/stops/H1no142a"], ["https://tec.openplanner.team/stops/LLmcarr2", "https://tec.openplanner.team/stops/LLmetat2"], ["https://tec.openplanner.team/stops/Cciecol1", "https://tec.openplanner.team/stops/Ccigill1"], ["https://tec.openplanner.team/stops/Ccyfede2", "https://tec.openplanner.team/stops/Ccymabo2"], ["https://tec.openplanner.team/stops/LAYambl1", "https://tec.openplanner.team/stops/LAYlieg2"], ["https://tec.openplanner.team/stops/H2sb232b", "https://tec.openplanner.team/stops/H2sb234b"], ["https://tec.openplanner.team/stops/H4ch118a", "https://tec.openplanner.team/stops/H4ch118b"], ["https://tec.openplanner.team/stops/H1mm125a", "https://tec.openplanner.team/stops/H1mm125d"], ["https://tec.openplanner.team/stops/LTyhapp3", "https://tec.openplanner.team/stops/LTyhapp4"], ["https://tec.openplanner.team/stops/N236adb", "https://tec.openplanner.team/stops/N254afb"], ["https://tec.openplanner.team/stops/Bitrfsc1", "https://tec.openplanner.team/stops/Bitrfsc2"], ["https://tec.openplanner.team/stops/Bllnmet2", "https://tec.openplanner.team/stops/Bllnrro1"], ["https://tec.openplanner.team/stops/N542acb", "https://tec.openplanner.team/stops/N542ara"], ["https://tec.openplanner.team/stops/X547aeb", "https://tec.openplanner.team/stops/X547aqa"], ["https://tec.openplanner.team/stops/Crefont2", "https://tec.openplanner.team/stops/Creshau1"], ["https://tec.openplanner.team/stops/Bgnvbsi2", "https://tec.openplanner.team/stops/Bgnvpos1"], ["https://tec.openplanner.team/stops/X612abb", "https://tec.openplanner.team/stops/X612aca"], ["https://tec.openplanner.team/stops/LCFcarr1", "https://tec.openplanner.team/stops/LCFcarr2"], ["https://tec.openplanner.team/stops/Llgbron1", "https://tec.openplanner.team/stops/Llgjoie2"], ["https://tec.openplanner.team/stops/H4ra159b", "https://tec.openplanner.team/stops/H4tp147b"], ["https://tec.openplanner.team/stops/X766aca", "https://tec.openplanner.team/stops/X766ajb"], ["https://tec.openplanner.team/stops/X396abb", "https://tec.openplanner.team/stops/X396acb"], ["https://tec.openplanner.team/stops/LAWaube2", "https://tec.openplanner.team/stops/LAWcite3"], ["https://tec.openplanner.team/stops/LTPec--2", "https://tec.openplanner.team/stops/LTPsalm1"], ["https://tec.openplanner.team/stops/H1bo108b", "https://tec.openplanner.team/stops/H1bo109b"], ["https://tec.openplanner.team/stops/Crspana1", "https://tec.openplanner.team/stops/Crsstem1"], ["https://tec.openplanner.team/stops/H1qp142a", "https://tec.openplanner.team/stops/H1qp142b"], ["https://tec.openplanner.team/stops/H1mk109a", "https://tec.openplanner.team/stops/H1mk109b"], ["https://tec.openplanner.team/stops/H1sy144b", "https://tec.openplanner.team/stops/H1sy150a"], ["https://tec.openplanner.team/stops/H1ro141a", "https://tec.openplanner.team/stops/H1ro141b"], ["https://tec.openplanner.team/stops/N117baa", "https://tec.openplanner.team/stops/N571agb"], ["https://tec.openplanner.team/stops/H4bn173a", "https://tec.openplanner.team/stops/H4bn174b"], ["https://tec.openplanner.team/stops/N507ala", "https://tec.openplanner.team/stops/N507ama"], ["https://tec.openplanner.team/stops/LENoule2", "https://tec.openplanner.team/stops/LENtour1"], ["https://tec.openplanner.team/stops/N506aca", "https://tec.openplanner.team/stops/N506acb"], ["https://tec.openplanner.team/stops/Cgzgrru1", "https://tec.openplanner.team/stops/Cgzlera2"], ["https://tec.openplanner.team/stops/Cgocalv2", "https://tec.openplanner.team/stops/Cgocalv4"], ["https://tec.openplanner.team/stops/N302aaa", "https://tec.openplanner.team/stops/N302aba"], ["https://tec.openplanner.team/stops/LCEec--2", "https://tec.openplanner.team/stops/LCEinst2"], ["https://tec.openplanner.team/stops/H1el136a", "https://tec.openplanner.team/stops/H1el140b"], ["https://tec.openplanner.team/stops/Cgyrrep2", "https://tec.openplanner.team/stops/Cgystbe1"], ["https://tec.openplanner.team/stops/Lvcdumo1", "https://tec.openplanner.team/stops/Lvcvesd*"], ["https://tec.openplanner.team/stops/X601aga", "https://tec.openplanner.team/stops/X601agb"], ["https://tec.openplanner.team/stops/N104adb", "https://tec.openplanner.team/stops/N104aeb"], ["https://tec.openplanner.team/stops/LDapota2", "https://tec.openplanner.team/stops/LGEcons2"], ["https://tec.openplanner.team/stops/Llgavoc1", "https://tec.openplanner.team/stops/Llgrame1"], ["https://tec.openplanner.team/stops/LOL6che2", "https://tec.openplanner.team/stops/LOLfoss2"], ["https://tec.openplanner.team/stops/Bblague1", "https://tec.openplanner.team/stops/Bblague2"], ["https://tec.openplanner.team/stops/LBglign1", "https://tec.openplanner.team/stops/LBglign2"], ["https://tec.openplanner.team/stops/Cchblne1", "https://tec.openplanner.team/stops/Cchplan1"], ["https://tec.openplanner.team/stops/NL76aob", "https://tec.openplanner.team/stops/NL80avb"], ["https://tec.openplanner.team/stops/X660acb", "https://tec.openplanner.team/stops/X660aha"], ["https://tec.openplanner.team/stops/X615akb", "https://tec.openplanner.team/stops/X615amb"], ["https://tec.openplanner.team/stops/H1ho140a", "https://tec.openplanner.team/stops/H1wa135b"], ["https://tec.openplanner.team/stops/Cmaprov1", "https://tec.openplanner.team/stops/Cmareun2"], ["https://tec.openplanner.team/stops/H4by115d", "https://tec.openplanner.team/stops/H4wp151a"], ["https://tec.openplanner.team/stops/NC14amb", "https://tec.openplanner.team/stops/NC14aoe"], ["https://tec.openplanner.team/stops/H1ms292a", "https://tec.openplanner.team/stops/H1ms314b"], ["https://tec.openplanner.team/stops/Cctberg2", "https://tec.openplanner.team/stops/Cctvill2"], ["https://tec.openplanner.team/stops/Ctucamb2", "https://tec.openplanner.team/stops/Ctuhouz1"], ["https://tec.openplanner.team/stops/LCFcafe1", "https://tec.openplanner.team/stops/LCFcarr1"], ["https://tec.openplanner.team/stops/LHUcomp2", "https://tec.openplanner.team/stops/LHUresi3"], ["https://tec.openplanner.team/stops/N525ata", "https://tec.openplanner.team/stops/N526aab"], ["https://tec.openplanner.team/stops/N501eob", "https://tec.openplanner.team/stops/N501mda"], ["https://tec.openplanner.team/stops/H4es108a", "https://tec.openplanner.team/stops/H4hx118a"], ["https://tec.openplanner.team/stops/X834aab", "https://tec.openplanner.team/stops/X834aba"], ["https://tec.openplanner.team/stops/LrEgend1", "https://tec.openplanner.team/stops/LrEochs2"], ["https://tec.openplanner.team/stops/Llmeg--*", "https://tec.openplanner.team/stops/LWechea1"], ["https://tec.openplanner.team/stops/H4os223a", "https://tec.openplanner.team/stops/H4va232b"], ["https://tec.openplanner.team/stops/LHrreal1", "https://tec.openplanner.team/stops/LHseg--3"], ["https://tec.openplanner.team/stops/X805aaa", "https://tec.openplanner.team/stops/X805aac"], ["https://tec.openplanner.team/stops/CMwate1", "https://tec.openplanner.team/stops/CMwate2"], ["https://tec.openplanner.team/stops/LSkcomb1", "https://tec.openplanner.team/stops/LSkcomb2"], ["https://tec.openplanner.team/stops/N539aqb", "https://tec.openplanner.team/stops/N539arb"], ["https://tec.openplanner.team/stops/X746aea", "https://tec.openplanner.team/stops/X746aeb"], ["https://tec.openplanner.team/stops/LFR201-2", "https://tec.openplanner.team/stops/LFRspa-1"], ["https://tec.openplanner.team/stops/Bwatb4s2", "https://tec.openplanner.team/stops/Bwatcpr1"], ["https://tec.openplanner.team/stops/H2ml110b", "https://tec.openplanner.team/stops/H2ml114b"], ["https://tec.openplanner.team/stops/Bhenfer1", "https://tec.openplanner.team/stops/Bhenfer2"], ["https://tec.openplanner.team/stops/LTHturo1", "https://tec.openplanner.team/stops/LTHturo2"], ["https://tec.openplanner.team/stops/N536aba", "https://tec.openplanner.team/stops/N536abb"], ["https://tec.openplanner.team/stops/H4ef164a", "https://tec.openplanner.team/stops/H4fa125b"], ["https://tec.openplanner.team/stops/Cfcmass1", "https://tec.openplanner.team/stops/Cfcmass2"], ["https://tec.openplanner.team/stops/X542aea", "https://tec.openplanner.team/stops/X542aeb"], ["https://tec.openplanner.team/stops/Crocona1", "https://tec.openplanner.team/stops/Crocona2"], ["https://tec.openplanner.team/stops/Bcsebde2", "https://tec.openplanner.team/stops/Bsmgsuz2"], ["https://tec.openplanner.team/stops/N117ata", "https://tec.openplanner.team/stops/N569aic"], ["https://tec.openplanner.team/stops/X623aab", "https://tec.openplanner.team/stops/X623agb"], ["https://tec.openplanner.team/stops/LORcomb1", "https://tec.openplanner.team/stops/LORcomb2"], ["https://tec.openplanner.team/stops/H2bh110d", "https://tec.openplanner.team/stops/H2bh118b"], ["https://tec.openplanner.team/stops/LMIterr1", "https://tec.openplanner.team/stops/LSOathe2"], ["https://tec.openplanner.team/stops/Lgrrein2", "https://tec.openplanner.team/stops/Lgrstou2"], ["https://tec.openplanner.team/stops/H2ep172b", "https://tec.openplanner.team/stops/H2le147b"], ["https://tec.openplanner.team/stops/H1vh136a", "https://tec.openplanner.team/stops/H1vh136b"], ["https://tec.openplanner.team/stops/H1ci104b", "https://tec.openplanner.team/stops/H1hn206b"], ["https://tec.openplanner.team/stops/LDaeg--1", "https://tec.openplanner.team/stops/LDapota2"], ["https://tec.openplanner.team/stops/LGlcite1", "https://tec.openplanner.team/stops/LHZbren2"], ["https://tec.openplanner.team/stops/N543coa", "https://tec.openplanner.team/stops/N543cob"], ["https://tec.openplanner.team/stops/Cfmgara2", "https://tec.openplanner.team/stops/Cfmwaut2"], ["https://tec.openplanner.team/stops/LGeduc-1", "https://tec.openplanner.team/stops/LGegare1"], ["https://tec.openplanner.team/stops/X825adb", "https://tec.openplanner.team/stops/X826aca"], ["https://tec.openplanner.team/stops/N308ala", "https://tec.openplanner.team/stops/N308baa"], ["https://tec.openplanner.team/stops/Bbcodam4", "https://tec.openplanner.team/stops/H3br101a"], ["https://tec.openplanner.team/stops/X638aib", "https://tec.openplanner.team/stops/X638ajb"], ["https://tec.openplanner.team/stops/H1do131a", "https://tec.openplanner.team/stops/H1do131d"], ["https://tec.openplanner.team/stops/X397aac", "https://tec.openplanner.team/stops/X398aab"], ["https://tec.openplanner.team/stops/H4po124b", "https://tec.openplanner.team/stops/H4po126b"], ["https://tec.openplanner.team/stops/N501jba", "https://tec.openplanner.team/stops/N501jia"], ["https://tec.openplanner.team/stops/Loucent1", "https://tec.openplanner.team/stops/Lousite6"], ["https://tec.openplanner.team/stops/Lmndari1", "https://tec.openplanner.team/stops/Lmndeso2"], ["https://tec.openplanner.team/stops/H4bo113a", "https://tec.openplanner.team/stops/H4bo117a"], ["https://tec.openplanner.team/stops/X979aha", "https://tec.openplanner.team/stops/X979aja"], ["https://tec.openplanner.team/stops/Cgzdeve1", "https://tec.openplanner.team/stops/Clrwesp2"], ["https://tec.openplanner.team/stops/Brsgcfl1", "https://tec.openplanner.team/stops/Brsgfso2"], ["https://tec.openplanner.team/stops/LLRrape3", "https://tec.openplanner.team/stops/LLRrape4"], ["https://tec.openplanner.team/stops/Bgemibb2", "https://tec.openplanner.team/stops/Bgemman1"], ["https://tec.openplanner.team/stops/N141ana", "https://tec.openplanner.team/stops/N141anb"], ["https://tec.openplanner.team/stops/H4hg158a", "https://tec.openplanner.team/stops/H4hg159a"], ["https://tec.openplanner.team/stops/LsVprum1", "https://tec.openplanner.team/stops/LsVprum2"], ["https://tec.openplanner.team/stops/X768aka", "https://tec.openplanner.team/stops/X768akb"], ["https://tec.openplanner.team/stops/H4fa126a", "https://tec.openplanner.team/stops/H4fa126b"], ["https://tec.openplanner.team/stops/LLMeg--1", "https://tec.openplanner.team/stops/LLMfond1"], ["https://tec.openplanner.team/stops/Cgyblob1", "https://tec.openplanner.team/stops/Cgyblob2"], ["https://tec.openplanner.team/stops/X641aca", "https://tec.openplanner.team/stops/X641aga"], ["https://tec.openplanner.team/stops/X768adb", "https://tec.openplanner.team/stops/X769aqa"], ["https://tec.openplanner.team/stops/Cci28ju2", "https://tec.openplanner.team/stops/Cciarfr2"], ["https://tec.openplanner.team/stops/Llmcoop1", "https://tec.openplanner.team/stops/Llmcoop2"], ["https://tec.openplanner.team/stops/H2ll186b", "https://tec.openplanner.team/stops/H2sv259a"], ["https://tec.openplanner.team/stops/X801bua", "https://tec.openplanner.team/stops/X801bwb"], ["https://tec.openplanner.team/stops/LAVpequ1", "https://tec.openplanner.team/stops/LAVstat1"], ["https://tec.openplanner.team/stops/X362aba", "https://tec.openplanner.team/stops/X362acb"], ["https://tec.openplanner.team/stops/LHrchat1", "https://tec.openplanner.team/stops/LHrchez1"], ["https://tec.openplanner.team/stops/LBahome1", "https://tec.openplanner.team/stops/LLUadze2"], ["https://tec.openplanner.team/stops/Llgbida1", "https://tec.openplanner.team/stops/Llgfont4"], ["https://tec.openplanner.team/stops/H5qu140a", "https://tec.openplanner.team/stops/H5st161b"], ["https://tec.openplanner.team/stops/X923aob", "https://tec.openplanner.team/stops/X923apb"], ["https://tec.openplanner.team/stops/X986agb", "https://tec.openplanner.team/stops/X986ajb"], ["https://tec.openplanner.team/stops/Lwaeau-1", "https://tec.openplanner.team/stops/Lwaelme2"], ["https://tec.openplanner.team/stops/H5wo123a", "https://tec.openplanner.team/stops/H5wo123b"], ["https://tec.openplanner.team/stops/NR21aca", "https://tec.openplanner.team/stops/NR21agb"], ["https://tec.openplanner.team/stops/N136aab", "https://tec.openplanner.team/stops/N138aca"], ["https://tec.openplanner.team/stops/H1mb131a", "https://tec.openplanner.team/stops/H1mb131b"], ["https://tec.openplanner.team/stops/LHEoutr2", "https://tec.openplanner.team/stops/LHEzoni2"], ["https://tec.openplanner.team/stops/LNCdoma3", "https://tec.openplanner.team/stops/LNCdoma4"], ["https://tec.openplanner.team/stops/X812afa", "https://tec.openplanner.team/stops/X812afb"], ["https://tec.openplanner.team/stops/H1bo101a", "https://tec.openplanner.team/stops/H1bo106a"], ["https://tec.openplanner.team/stops/Cforepo1", "https://tec.openplanner.team/stops/Cforepo2"], ["https://tec.openplanner.team/stops/X610ada", "https://tec.openplanner.team/stops/X610ahb"], ["https://tec.openplanner.team/stops/X982bna", "https://tec.openplanner.team/stops/X986abb"], ["https://tec.openplanner.team/stops/N158aab", "https://tec.openplanner.team/stops/N168aab"], ["https://tec.openplanner.team/stops/X779acb", "https://tec.openplanner.team/stops/X779ada"], ["https://tec.openplanner.team/stops/N531abb", "https://tec.openplanner.team/stops/N531ara"], ["https://tec.openplanner.team/stops/Cthalli3", "https://tec.openplanner.team/stops/Cthdeco1"], ["https://tec.openplanner.team/stops/X780aha", "https://tec.openplanner.team/stops/X780ata"], ["https://tec.openplanner.team/stops/X733aba", "https://tec.openplanner.team/stops/X733abb"], ["https://tec.openplanner.team/stops/H2ll183a", "https://tec.openplanner.team/stops/H2ll183b"], ["https://tec.openplanner.team/stops/N220aaa", "https://tec.openplanner.team/stops/N220aca"], ["https://tec.openplanner.team/stops/X782agb", "https://tec.openplanner.team/stops/X782aha"], ["https://tec.openplanner.team/stops/X673aba", "https://tec.openplanner.team/stops/X674aaa"], ["https://tec.openplanner.team/stops/X601bia", "https://tec.openplanner.team/stops/X601bxb"], ["https://tec.openplanner.team/stops/Bsmgmas1", "https://tec.openplanner.team/stops/Btanpla3"], ["https://tec.openplanner.team/stops/H4eh104a", "https://tec.openplanner.team/stops/H4he101b"], ["https://tec.openplanner.team/stops/X696aaa", "https://tec.openplanner.team/stops/X696aha"], ["https://tec.openplanner.team/stops/LBApak2*", "https://tec.openplanner.team/stops/LETsaiv2"], ["https://tec.openplanner.team/stops/N580aab", "https://tec.openplanner.team/stops/N580ada"], ["https://tec.openplanner.team/stops/Lengran1", "https://tec.openplanner.team/stops/Lenmivi*"], ["https://tec.openplanner.team/stops/H4fl179a", "https://tec.openplanner.team/stops/H4mg139b"], ["https://tec.openplanner.team/stops/LeUschu1", "https://tec.openplanner.team/stops/LeUwetz2"], ["https://tec.openplanner.team/stops/LBamate2", "https://tec.openplanner.team/stops/LBapepi6"], ["https://tec.openplanner.team/stops/Bsaumlk3", "https://tec.openplanner.team/stops/Bsaumlp2"], ["https://tec.openplanner.team/stops/LeLbegl2", "https://tec.openplanner.team/stops/LeLgrie1"], ["https://tec.openplanner.team/stops/N357aca", "https://tec.openplanner.team/stops/N357acb"], ["https://tec.openplanner.team/stops/Csachas1", "https://tec.openplanner.team/stops/Csawagn2"], ["https://tec.openplanner.team/stops/LaMahof2", "https://tec.openplanner.team/stops/LmI82--2"], ["https://tec.openplanner.team/stops/H4ml206a", "https://tec.openplanner.team/stops/H4pi134b"], ["https://tec.openplanner.team/stops/H4bx108b", "https://tec.openplanner.team/stops/H4te251b"], ["https://tec.openplanner.team/stops/X725aab", "https://tec.openplanner.team/stops/X754ajb"], ["https://tec.openplanner.team/stops/Ccspla", "https://tec.openplanner.team/stops/NC28aga"], ["https://tec.openplanner.team/stops/N235aha", "https://tec.openplanner.team/stops/N241aca"], ["https://tec.openplanner.team/stops/X750abb", "https://tec.openplanner.team/stops/X750acb"], ["https://tec.openplanner.team/stops/Lagmoli2", "https://tec.openplanner.team/stops/Llggram4"], ["https://tec.openplanner.team/stops/Lchacie2", "https://tec.openplanner.team/stops/Lchchau1"], ["https://tec.openplanner.team/stops/X609aoa", "https://tec.openplanner.team/stops/X645aaa"], ["https://tec.openplanner.team/stops/H1eo107a", "https://tec.openplanner.team/stops/H1eo107b"], ["https://tec.openplanner.team/stops/Cfaecwa1", "https://tec.openplanner.team/stops/Cfamate1"], ["https://tec.openplanner.team/stops/Cgxmaco1", "https://tec.openplanner.team/stops/CMleer1"], ["https://tec.openplanner.team/stops/N308aza", "https://tec.openplanner.team/stops/N311agb"], ["https://tec.openplanner.team/stops/LBk79--1", "https://tec.openplanner.team/stops/LBkgrae2"], ["https://tec.openplanner.team/stops/Bhevgro1", "https://tec.openplanner.team/stops/Bkrawil1"], ["https://tec.openplanner.team/stops/Ccicloc2", "https://tec.openplanner.team/stops/Ccigene2"], ["https://tec.openplanner.team/stops/Cbicamp2", "https://tec.openplanner.team/stops/Cbiseur2"], ["https://tec.openplanner.team/stops/N569aab", "https://tec.openplanner.team/stops/N569aba"], ["https://tec.openplanner.team/stops/X901aga", "https://tec.openplanner.team/stops/X902bbb"], ["https://tec.openplanner.team/stops/X940aba", "https://tec.openplanner.team/stops/X940acb"], ["https://tec.openplanner.team/stops/LBSvi321", "https://tec.openplanner.team/stops/LBSvi522"], ["https://tec.openplanner.team/stops/LVLf37-2", "https://tec.openplanner.team/stops/LVLsabl4"], ["https://tec.openplanner.team/stops/LDoeg--2", "https://tec.openplanner.team/stops/LHFcaqu2"], ["https://tec.openplanner.team/stops/Cmmceri2", "https://tec.openplanner.team/stops/Cmmcime2"], ["https://tec.openplanner.team/stops/X757aia", "https://tec.openplanner.team/stops/X757aic"], ["https://tec.openplanner.team/stops/X731aea", "https://tec.openplanner.team/stops/X731aka"], ["https://tec.openplanner.team/stops/N513aha", "https://tec.openplanner.team/stops/N521atb"], ["https://tec.openplanner.team/stops/H1no141a", "https://tec.openplanner.team/stops/H1no141b"], ["https://tec.openplanner.team/stops/N136aaa", "https://tec.openplanner.team/stops/N138ajb"], ["https://tec.openplanner.team/stops/Bhptcha2", "https://tec.openplanner.team/stops/Bhptpla1"], ["https://tec.openplanner.team/stops/N547aea", "https://tec.openplanner.team/stops/N550ala"], ["https://tec.openplanner.team/stops/LbTathe1", "https://tec.openplanner.team/stops/LbTkreu2"], ["https://tec.openplanner.team/stops/X354aca", "https://tec.openplanner.team/stops/X359aaa"], ["https://tec.openplanner.team/stops/LVbcoul1", "https://tec.openplanner.team/stops/LVbeg--2"], ["https://tec.openplanner.team/stops/X878ada", "https://tec.openplanner.team/stops/X879aqb"], ["https://tec.openplanner.team/stops/H1ho147a", "https://tec.openplanner.team/stops/H1pd142a"], ["https://tec.openplanner.team/stops/Bquecar2", "https://tec.openplanner.team/stops/Bquecro1"], ["https://tec.openplanner.team/stops/LSuusin1", "https://tec.openplanner.team/stops/LSuusin2"], ["https://tec.openplanner.team/stops/X921alb", "https://tec.openplanner.team/stops/X921aob"], ["https://tec.openplanner.team/stops/N554aaa", "https://tec.openplanner.team/stops/N555aba"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X744acb"], ["https://tec.openplanner.team/stops/LmHbahn1", "https://tec.openplanner.team/stops/LmTschi1"], ["https://tec.openplanner.team/stops/Lenplac1", "https://tec.openplanner.team/stops/Llmdeba1"], ["https://tec.openplanner.team/stops/X741apa", "https://tec.openplanner.team/stops/X741apb"], ["https://tec.openplanner.team/stops/Llgform1", "https://tec.openplanner.team/stops/Llgform2"], ["https://tec.openplanner.team/stops/LESgran1", "https://tec.openplanner.team/stops/LFNtill1"], ["https://tec.openplanner.team/stops/LNAbras2", "https://tec.openplanner.team/stops/LYEphar1"], ["https://tec.openplanner.team/stops/H5fl104b", "https://tec.openplanner.team/stops/H5wo124a"], ["https://tec.openplanner.team/stops/H4ka174b", "https://tec.openplanner.team/stops/H4ka176b"], ["https://tec.openplanner.team/stops/X608ava", "https://tec.openplanner.team/stops/X608aza"], ["https://tec.openplanner.team/stops/N507ajb", "https://tec.openplanner.team/stops/N507apb"], ["https://tec.openplanner.team/stops/H5rx136a", "https://tec.openplanner.team/stops/H5rx145b"], ["https://tec.openplanner.team/stops/Cgrflac1", "https://tec.openplanner.team/stops/NC14aia"], ["https://tec.openplanner.team/stops/Lbrplai1", "https://tec.openplanner.team/stops/Lbrplai2"], ["https://tec.openplanner.team/stops/H1qu105a", "https://tec.openplanner.team/stops/H1qu120a"], ["https://tec.openplanner.team/stops/H4bw101b", "https://tec.openplanner.team/stops/H4fg116b"], ["https://tec.openplanner.team/stops/H1ms283a", "https://tec.openplanner.team/stops/H1ms314a"], ["https://tec.openplanner.team/stops/H1gh365a", "https://tec.openplanner.team/stops/H1ms297a"], ["https://tec.openplanner.team/stops/Ccuhaie2", "https://tec.openplanner.team/stops/Ccuwil1"], ["https://tec.openplanner.team/stops/X750ahb", "https://tec.openplanner.team/stops/X750alb"], ["https://tec.openplanner.team/stops/NH01apa", "https://tec.openplanner.team/stops/NH01aqb"], ["https://tec.openplanner.team/stops/N551aia", "https://tec.openplanner.team/stops/N551aiy"], ["https://tec.openplanner.team/stops/Ccugail1", "https://tec.openplanner.team/stops/Ccupres2"], ["https://tec.openplanner.team/stops/Bsomtce1", "https://tec.openplanner.team/stops/Bsomthi1"], ["https://tec.openplanner.team/stops/X604afb", "https://tec.openplanner.team/stops/X604amb"], ["https://tec.openplanner.team/stops/LHGvill1", "https://tec.openplanner.team/stops/LHGvill2"], ["https://tec.openplanner.team/stops/LWDsott2", "https://tec.openplanner.team/stops/LWDsott4"], ["https://tec.openplanner.team/stops/N141aaa", "https://tec.openplanner.team/stops/N426afa"], ["https://tec.openplanner.team/stops/Cchba08", "https://tec.openplanner.team/stops/Cchba09"], ["https://tec.openplanner.team/stops/Ladfoot1", "https://tec.openplanner.team/stops/Ladfoot2"], ["https://tec.openplanner.team/stops/Llgmaus1", "https://tec.openplanner.team/stops/Lsntvbi1"], ["https://tec.openplanner.team/stops/H4ta124a", "https://tec.openplanner.team/stops/H4ta135a"], ["https://tec.openplanner.team/stops/Causart1", "https://tec.openplanner.team/stops/N543ang"], ["https://tec.openplanner.team/stops/X651afb", "https://tec.openplanner.team/stops/X651aga"], ["https://tec.openplanner.team/stops/Bvirmbr1", "https://tec.openplanner.team/stops/Bvirmbr2"], ["https://tec.openplanner.team/stops/N536aeb", "https://tec.openplanner.team/stops/N580aga"], ["https://tec.openplanner.team/stops/LLUmont2", "https://tec.openplanner.team/stops/LLUtill4"], ["https://tec.openplanner.team/stops/X652afa", "https://tec.openplanner.team/stops/X652agb"], ["https://tec.openplanner.team/stops/N221abb", "https://tec.openplanner.team/stops/X221aac"], ["https://tec.openplanner.team/stops/Lsecris2", "https://tec.openplanner.team/stops/Lsefive1"], ["https://tec.openplanner.team/stops/LLycent*", "https://tec.openplanner.team/stops/LOVeg--1"], ["https://tec.openplanner.team/stops/X636aub", "https://tec.openplanner.team/stops/X636avb"], ["https://tec.openplanner.team/stops/Lvehomb2", "https://tec.openplanner.team/stops/Lvesomm2"], ["https://tec.openplanner.team/stops/LHemoul1", "https://tec.openplanner.team/stops/LHemoul2"], ["https://tec.openplanner.team/stops/Cfaecmo2", "https://tec.openplanner.team/stops/Cpibois2"], ["https://tec.openplanner.team/stops/Ccychap2", "https://tec.openplanner.team/stops/Csregli2"], ["https://tec.openplanner.team/stops/Cbfplch2", "https://tec.openplanner.team/stops/Cbfstry2"], ["https://tec.openplanner.team/stops/H1ms302a", "https://tec.openplanner.team/stops/H1ms302b"], ["https://tec.openplanner.team/stops/X949aka", "https://tec.openplanner.team/stops/X949akb"], ["https://tec.openplanner.team/stops/X781acb", "https://tec.openplanner.team/stops/X781aea"], ["https://tec.openplanner.team/stops/H2mi122b", "https://tec.openplanner.team/stops/H2mi125a"], ["https://tec.openplanner.team/stops/Llgcite2", "https://tec.openplanner.team/stops/Llgmarc1"], ["https://tec.openplanner.team/stops/H4ff117a", "https://tec.openplanner.team/stops/H4mb138b"], ["https://tec.openplanner.team/stops/Lagpn6-1", "https://tec.openplanner.team/stops/Lstauna2"], ["https://tec.openplanner.team/stops/LDapota1", "https://tec.openplanner.team/stops/LGEcons2"], ["https://tec.openplanner.team/stops/H4cr111b", "https://tec.openplanner.team/stops/H4ff120a"], ["https://tec.openplanner.team/stops/Cchmont2", "https://tec.openplanner.team/stops/Cchorle1"], ["https://tec.openplanner.team/stops/Llgongr3", "https://tec.openplanner.team/stops/Llgsime1"], ["https://tec.openplanner.team/stops/Blpghou1", "https://tec.openplanner.team/stops/Blpghou2"], ["https://tec.openplanner.team/stops/N152aad", "https://tec.openplanner.team/stops/N152ade"], ["https://tec.openplanner.team/stops/N226aaa", "https://tec.openplanner.team/stops/N226abb"], ["https://tec.openplanner.team/stops/LHEclef1", "https://tec.openplanner.team/stops/LHEjose1"], ["https://tec.openplanner.team/stops/LScread1", "https://tec.openplanner.team/stops/LVTtrou2"], ["https://tec.openplanner.team/stops/H1au101b", "https://tec.openplanner.team/stops/H1bx104a"], ["https://tec.openplanner.team/stops/H4bu108b", "https://tec.openplanner.team/stops/H4mv187a"], ["https://tec.openplanner.team/stops/H4ab100a", "https://tec.openplanner.team/stops/H4ab102a"], ["https://tec.openplanner.team/stops/LAxbott1", "https://tec.openplanner.team/stops/Lmirca-2"], ["https://tec.openplanner.team/stops/LLvferm2", "https://tec.openplanner.team/stops/NL78adb"], ["https://tec.openplanner.team/stops/Lhurigu2", "https://tec.openplanner.team/stops/Lmnhorl3"], ["https://tec.openplanner.team/stops/N207afa", "https://tec.openplanner.team/stops/N207afb"], ["https://tec.openplanner.team/stops/Cmlgche1", "https://tec.openplanner.team/stops/Cmlvxmo2"], ["https://tec.openplanner.team/stops/X609aka", "https://tec.openplanner.team/stops/X609ala"], ["https://tec.openplanner.team/stops/H1vb147b", "https://tec.openplanner.team/stops/H1vb148b"], ["https://tec.openplanner.team/stops/N232aua", "https://tec.openplanner.team/stops/N232bgb"], ["https://tec.openplanner.team/stops/Bjodfab2", "https://tec.openplanner.team/stops/Bsjgmil1"], ["https://tec.openplanner.team/stops/Bjodpvi2", "https://tec.openplanner.team/stops/Bsrgegl1"], ["https://tec.openplanner.team/stops/X637aoa", "https://tec.openplanner.team/stops/X650ana"], ["https://tec.openplanner.team/stops/LSLabba2", "https://tec.openplanner.team/stops/LSLstra2"], ["https://tec.openplanner.team/stops/LsCback2", "https://tec.openplanner.team/stops/LsCkirc2"], ["https://tec.openplanner.team/stops/H4gu112a", "https://tec.openplanner.team/stops/H4ta134a"], ["https://tec.openplanner.team/stops/LrEkirc2", "https://tec.openplanner.team/stops/LrEkreu1"], ["https://tec.openplanner.team/stops/LXoeg--4", "https://tec.openplanner.team/stops/LXomc--4"], ["https://tec.openplanner.team/stops/H2ep145a", "https://tec.openplanner.team/stops/H3bi106b"], ["https://tec.openplanner.team/stops/N118avb", "https://tec.openplanner.team/stops/N118avd"], ["https://tec.openplanner.team/stops/Lrebriq1", "https://tec.openplanner.team/stops/Lrebriq2"], ["https://tec.openplanner.team/stops/X908aba", "https://tec.openplanner.team/stops/X908abb"], ["https://tec.openplanner.team/stops/Brebchb2", "https://tec.openplanner.team/stops/Brebrha1"], ["https://tec.openplanner.team/stops/X952aaa", "https://tec.openplanner.team/stops/X952aja"], ["https://tec.openplanner.team/stops/Cvpbifu2", "https://tec.openplanner.team/stops/Cvpsthu2"], ["https://tec.openplanner.team/stops/H1wa146a", "https://tec.openplanner.team/stops/H1wa152b"], ["https://tec.openplanner.team/stops/Bplnbal2", "https://tec.openplanner.team/stops/Bplncsd2"], ["https://tec.openplanner.team/stops/Cmgbrou1", "https://tec.openplanner.team/stops/Cmgcabi2"], ["https://tec.openplanner.team/stops/Bboupde2", "https://tec.openplanner.team/stops/Bsmgpon1"], ["https://tec.openplanner.team/stops/LBNeu712", "https://tec.openplanner.team/stops/LBNeup22"], ["https://tec.openplanner.team/stops/Lrcauto2", "https://tec.openplanner.team/stops/Lrcpaqu1"], ["https://tec.openplanner.team/stops/N559aaa", "https://tec.openplanner.team/stops/N559aab"], ["https://tec.openplanner.team/stops/H1le121a", "https://tec.openplanner.team/stops/H1le121b"], ["https://tec.openplanner.team/stops/N538aga", "https://tec.openplanner.team/stops/N538aua"], ["https://tec.openplanner.team/stops/Bmartil2", "https://tec.openplanner.team/stops/Csdbosq1"], ["https://tec.openplanner.team/stops/H1cr100a", "https://tec.openplanner.team/stops/H1ry137b"], ["https://tec.openplanner.team/stops/X999aoa", "https://tec.openplanner.team/stops/X999aob"], ["https://tec.openplanner.team/stops/LHgeg--1", "https://tec.openplanner.team/stops/LHgeg--2"], ["https://tec.openplanner.team/stops/N501etz", "https://tec.openplanner.team/stops/N501kma"], ["https://tec.openplanner.team/stops/LNCchev2", "https://tec.openplanner.team/stops/LNCchev4"], ["https://tec.openplanner.team/stops/Boveker2", "https://tec.openplanner.team/stops/Bovesol2"], ["https://tec.openplanner.team/stops/Cfodepo1", "https://tec.openplanner.team/stops/Cfodepo2"], ["https://tec.openplanner.team/stops/H1ca107b", "https://tec.openplanner.team/stops/H1ne144a"], ["https://tec.openplanner.team/stops/LREhaut1", "https://tec.openplanner.team/stops/LREhaut2"], ["https://tec.openplanner.team/stops/X369abb", "https://tec.openplanner.team/stops/X369acb"], ["https://tec.openplanner.team/stops/H1et100b", "https://tec.openplanner.team/stops/H1et101b"], ["https://tec.openplanner.team/stops/X904aja", "https://tec.openplanner.team/stops/X904ajb"], ["https://tec.openplanner.team/stops/LrEfeck1", "https://tec.openplanner.team/stops/LrEfeck2"], ["https://tec.openplanner.team/stops/LCxcouv1", "https://tec.openplanner.team/stops/LJueg--1"], ["https://tec.openplanner.team/stops/N533aeb", "https://tec.openplanner.team/stops/N551afa"], ["https://tec.openplanner.team/stops/X719aea", "https://tec.openplanner.team/stops/X719afa"], ["https://tec.openplanner.team/stops/Cbmvalt2", "https://tec.openplanner.team/stops/H1tt104a"], ["https://tec.openplanner.team/stops/N235aea", "https://tec.openplanner.team/stops/N241aea"], ["https://tec.openplanner.team/stops/X813aba", "https://tec.openplanner.team/stops/X857aba"], ["https://tec.openplanner.team/stops/LaHzoll*", "https://tec.openplanner.team/stops/LhBdorf1"], ["https://tec.openplanner.team/stops/LBscime2", "https://tec.openplanner.team/stops/LBseg--2"], ["https://tec.openplanner.team/stops/X807aca", "https://tec.openplanner.team/stops/X808aha"], ["https://tec.openplanner.team/stops/N503abb", "https://tec.openplanner.team/stops/N503ada"], ["https://tec.openplanner.team/stops/Cflchap1", "https://tec.openplanner.team/stops/Cflchap4"], ["https://tec.openplanner.team/stops/Ccinali2", "https://tec.openplanner.team/stops/Cmllecl4"], ["https://tec.openplanner.team/stops/X614bcb", "https://tec.openplanner.team/stops/X614bda"], ["https://tec.openplanner.team/stops/Bptbmco1", "https://tec.openplanner.team/stops/Bptbmco2"], ["https://tec.openplanner.team/stops/X896aeb", "https://tec.openplanner.team/stops/X896aec"], ["https://tec.openplanner.team/stops/X601cka", "https://tec.openplanner.team/stops/X601cua"], ["https://tec.openplanner.team/stops/Bjaugaz1", "https://tec.openplanner.team/stops/Bjaupro2"], ["https://tec.openplanner.team/stops/Cbugara1", "https://tec.openplanner.team/stops/N103aga"], ["https://tec.openplanner.team/stops/LSDgris1", "https://tec.openplanner.team/stops/LSDvill1"], ["https://tec.openplanner.team/stops/LCOcrom2", "https://tec.openplanner.team/stops/Lpeflec1"], ["https://tec.openplanner.team/stops/Lglvand1", "https://tec.openplanner.team/stops/Lglvand2"], ["https://tec.openplanner.team/stops/X947aaa", "https://tec.openplanner.team/stops/X948agb"], ["https://tec.openplanner.team/stops/H4lp122a", "https://tec.openplanner.team/stops/H4lp122b"], ["https://tec.openplanner.team/stops/N535amc", "https://tec.openplanner.team/stops/N535ana"], ["https://tec.openplanner.team/stops/H4lh161b", "https://tec.openplanner.team/stops/H4oe148b"], ["https://tec.openplanner.team/stops/N501gcb", "https://tec.openplanner.team/stops/N501lnb"], ["https://tec.openplanner.team/stops/Lsnagne1", "https://tec.openplanner.team/stops/Lsnmala1"], ["https://tec.openplanner.team/stops/Cmg4bra1", "https://tec.openplanner.team/stops/Cmgcabi1"], ["https://tec.openplanner.team/stops/X801cma", "https://tec.openplanner.team/stops/X801cmb"], ["https://tec.openplanner.team/stops/H4ka191b", "https://tec.openplanner.team/stops/H4ka192b"], ["https://tec.openplanner.team/stops/N139abb", "https://tec.openplanner.team/stops/N139aca"], ["https://tec.openplanner.team/stops/N230afa", "https://tec.openplanner.team/stops/N233aba"], ["https://tec.openplanner.team/stops/LDOchev1", "https://tec.openplanner.team/stops/LHVeg--2"], ["https://tec.openplanner.team/stops/H5st161a", "https://tec.openplanner.team/stops/H5st163a"], ["https://tec.openplanner.team/stops/Lsebico1", "https://tec.openplanner.team/stops/Lsecast2"], ["https://tec.openplanner.team/stops/Bottath1", "https://tec.openplanner.team/stops/Bottgar1"], ["https://tec.openplanner.team/stops/Bmarcha1", "https://tec.openplanner.team/stops/Bmarvil1"], ["https://tec.openplanner.team/stops/N519amb", "https://tec.openplanner.team/stops/N521aob"], ["https://tec.openplanner.team/stops/Bperpla1", "https://tec.openplanner.team/stops/Bperrcr2"], ["https://tec.openplanner.team/stops/H1hy125b", "https://tec.openplanner.team/stops/H1hy130a"], ["https://tec.openplanner.team/stops/H1et101a", "https://tec.openplanner.team/stops/H1ju121b"], ["https://tec.openplanner.team/stops/N501gza", "https://tec.openplanner.team/stops/N501hia"], ["https://tec.openplanner.team/stops/X994aba", "https://tec.openplanner.team/stops/X994adb"], ["https://tec.openplanner.team/stops/LBBcarr2", "https://tec.openplanner.team/stops/LOccarr1"], ["https://tec.openplanner.team/stops/LHEvign2", "https://tec.openplanner.team/stops/LJOvill1"], ["https://tec.openplanner.team/stops/N347aga", "https://tec.openplanner.team/stops/X892abb"], ["https://tec.openplanner.team/stops/H1hr116b", "https://tec.openplanner.team/stops/H1hv130a"], ["https://tec.openplanner.team/stops/Cnafont2", "https://tec.openplanner.team/stops/Cnalava3"], ["https://tec.openplanner.team/stops/N501dna", "https://tec.openplanner.team/stops/N501dnb"], ["https://tec.openplanner.team/stops/LLTeg--1", "https://tec.openplanner.team/stops/LLTeg--2"], ["https://tec.openplanner.team/stops/H2le146a", "https://tec.openplanner.team/stops/H2re163a"], ["https://tec.openplanner.team/stops/X641ata", "https://tec.openplanner.team/stops/X821aab"], ["https://tec.openplanner.team/stops/N230adb", "https://tec.openplanner.team/stops/N233aaa"], ["https://tec.openplanner.team/stops/LBEcomm1", "https://tec.openplanner.team/stops/LBEnina1"], ["https://tec.openplanner.team/stops/X650acb", "https://tec.openplanner.team/stops/X650adb"], ["https://tec.openplanner.team/stops/X750agb", "https://tec.openplanner.team/stops/X750ala"], ["https://tec.openplanner.team/stops/Cchorle1", "https://tec.openplanner.team/stops/Cchvhau1"], ["https://tec.openplanner.team/stops/H4ty290b", "https://tec.openplanner.team/stops/H4ty302a"], ["https://tec.openplanner.team/stops/N101agc", "https://tec.openplanner.team/stops/N101aoa"], ["https://tec.openplanner.team/stops/X724abb", "https://tec.openplanner.team/stops/X724adb"], ["https://tec.openplanner.team/stops/X653aeb", "https://tec.openplanner.team/stops/X654aia"], ["https://tec.openplanner.team/stops/H4ha167a", "https://tec.openplanner.team/stops/H4ru235b"], ["https://tec.openplanner.team/stops/X731ada", "https://tec.openplanner.team/stops/X731aeb"], ["https://tec.openplanner.team/stops/N211agb", "https://tec.openplanner.team/stops/N211avb"], ["https://tec.openplanner.team/stops/LLRptma1", "https://tec.openplanner.team/stops/LLRptma2"], ["https://tec.openplanner.team/stops/X768ama", "https://tec.openplanner.team/stops/X768amb"], ["https://tec.openplanner.team/stops/Bhmmlad2", "https://tec.openplanner.team/stops/Bnetcor1"], ["https://tec.openplanner.team/stops/LCObouh2", "https://tec.openplanner.team/stops/Lpebier1"], ["https://tec.openplanner.team/stops/H2ll176b", "https://tec.openplanner.team/stops/H2ll176c"], ["https://tec.openplanner.team/stops/Cgycorv1", "https://tec.openplanner.team/stops/Cgycorv2"], ["https://tec.openplanner.team/stops/NC23aeb", "https://tec.openplanner.team/stops/NC23afa"], ["https://tec.openplanner.team/stops/LScd45-1", "https://tec.openplanner.team/stops/LSevitu3"], ["https://tec.openplanner.team/stops/H1eu102b", "https://tec.openplanner.team/stops/H1eu104b"], ["https://tec.openplanner.team/stops/X898ahb", "https://tec.openplanner.team/stops/X898anb"], ["https://tec.openplanner.team/stops/H1hq126b", "https://tec.openplanner.team/stops/H1hq128a"], ["https://tec.openplanner.team/stops/Bbstpon2", "https://tec.openplanner.team/stops/Csdetan1"], ["https://tec.openplanner.team/stops/N368acb", "https://tec.openplanner.team/stops/N368aeb"], ["https://tec.openplanner.team/stops/H1hm174a", "https://tec.openplanner.team/stops/H1vg359b"], ["https://tec.openplanner.team/stops/Bmlnpab2", "https://tec.openplanner.team/stops/Bptbbie2"], ["https://tec.openplanner.team/stops/Lghberl1", "https://tec.openplanner.team/stops/Lmochan2"], ["https://tec.openplanner.team/stops/Bblacim2", "https://tec.openplanner.team/stops/Bblagar1"], ["https://tec.openplanner.team/stops/Lrogene*", "https://tec.openplanner.team/stops/Lromerl1"], ["https://tec.openplanner.team/stops/LAWchpl1", "https://tec.openplanner.team/stops/LHGleje2"], ["https://tec.openplanner.team/stops/LBY4che1", "https://tec.openplanner.team/stops/Lgdrena2"], ["https://tec.openplanner.team/stops/LHEcoll2", "https://tec.openplanner.team/stops/LHEhv--1"], ["https://tec.openplanner.team/stops/X954aba", "https://tec.openplanner.team/stops/X954aca"], ["https://tec.openplanner.team/stops/N357aaa", "https://tec.openplanner.team/stops/N357aba"], ["https://tec.openplanner.team/stops/LHUgole2", "https://tec.openplanner.team/stops/LHUhaut1"], ["https://tec.openplanner.team/stops/LBVplan1", "https://tec.openplanner.team/stops/LLscent1"], ["https://tec.openplanner.team/stops/LChvill*", "https://tec.openplanner.team/stops/LSWscie2"], ["https://tec.openplanner.team/stops/Cfmchau2", "https://tec.openplanner.team/stops/Cfomays1"], ["https://tec.openplanner.team/stops/X994aka", "https://tec.openplanner.team/stops/X995abb"], ["https://tec.openplanner.team/stops/X750apb", "https://tec.openplanner.team/stops/X750bda"], ["https://tec.openplanner.team/stops/N538agb", "https://tec.openplanner.team/stops/N538ajc"], ["https://tec.openplanner.team/stops/X664aab", "https://tec.openplanner.team/stops/X664abb"], ["https://tec.openplanner.team/stops/Lhehoux1", "https://tec.openplanner.team/stops/Lheterm*"], ["https://tec.openplanner.team/stops/LGEpt--1", "https://tec.openplanner.team/stops/LLYcham1"], ["https://tec.openplanner.team/stops/N530aba", "https://tec.openplanner.team/stops/N530aea"], ["https://tec.openplanner.team/stops/LhGfrie1", "https://tec.openplanner.team/stops/LhGkirc6"], ["https://tec.openplanner.team/stops/H1ch106a", "https://tec.openplanner.team/stops/H1ch106b"], ["https://tec.openplanner.team/stops/X979ajb", "https://tec.openplanner.team/stops/X979aka"], ["https://tec.openplanner.team/stops/H4ta121b", "https://tec.openplanner.team/stops/H4ta134a"], ["https://tec.openplanner.team/stops/N501aab", "https://tec.openplanner.team/stops/N501hba"], ["https://tec.openplanner.team/stops/H1po133b", "https://tec.openplanner.team/stops/H1po138b"], ["https://tec.openplanner.team/stops/X354aeb", "https://tec.openplanner.team/stops/X354aga"], ["https://tec.openplanner.team/stops/H4pp121a", "https://tec.openplanner.team/stops/H4pp122a"], ["https://tec.openplanner.team/stops/Lvefran2", "https://tec.openplanner.team/stops/Lve-isi1"], ["https://tec.openplanner.team/stops/Ltiegli2", "https://tec.openplanner.team/stops/Ltihala2"], ["https://tec.openplanner.team/stops/LVPduvi1", "https://tec.openplanner.team/stops/LVPduvi2"], ["https://tec.openplanner.team/stops/Ccupetp2", "https://tec.openplanner.team/stops/Ccupomp2"], ["https://tec.openplanner.team/stops/Bitrbvo2", "https://tec.openplanner.team/stops/Bosqsam2"], ["https://tec.openplanner.team/stops/LCHeg--1", "https://tec.openplanner.team/stops/Lprsher2"], ["https://tec.openplanner.team/stops/H4ta119b", "https://tec.openplanner.team/stops/H4ta124b"], ["https://tec.openplanner.team/stops/H4wi167b", "https://tec.openplanner.team/stops/H5pe134a"], ["https://tec.openplanner.team/stops/Ccupays1", "https://tec.openplanner.team/stops/Ccuseba2"], ["https://tec.openplanner.team/stops/H1mh113b", "https://tec.openplanner.team/stops/H1mh114a"], ["https://tec.openplanner.team/stops/X801bbb", "https://tec.openplanner.team/stops/X801cob"], ["https://tec.openplanner.team/stops/LAx17--2", "https://tec.openplanner.team/stops/LFsguil2"], ["https://tec.openplanner.team/stops/Bhevjal2", "https://tec.openplanner.team/stops/Bhevwzw2"], ["https://tec.openplanner.team/stops/X723afb", "https://tec.openplanner.team/stops/X723alb"], ["https://tec.openplanner.team/stops/LCseg--2", "https://tec.openplanner.team/stops/LCsgend1"], ["https://tec.openplanner.team/stops/Lsedese1", "https://tec.openplanner.team/stops/Lsemyrt2"], ["https://tec.openplanner.team/stops/LWEcool2", "https://tec.openplanner.team/stops/LWEgend1"], ["https://tec.openplanner.team/stops/Buccdho1", "https://tec.openplanner.team/stops/Buccdst2"], ["https://tec.openplanner.team/stops/X261ada", "https://tec.openplanner.team/stops/X261adb"], ["https://tec.openplanner.team/stops/Cobhaut2", "https://tec.openplanner.team/stops/Cobmara1"], ["https://tec.openplanner.team/stops/Lhrmare3", "https://tec.openplanner.team/stops/Lhrmare4"], ["https://tec.openplanner.team/stops/N347afb", "https://tec.openplanner.team/stops/X370acb"], ["https://tec.openplanner.team/stops/Cchsud03", "https://tec.openplanner.team/stops/Cchsud11"], ["https://tec.openplanner.team/stops/Blhuone1", "https://tec.openplanner.team/stops/Blhuone2"], ["https://tec.openplanner.team/stops/N534ada", "https://tec.openplanner.team/stops/N534adb"], ["https://tec.openplanner.team/stops/Lhrmare1", "https://tec.openplanner.team/stops/Lhrmare8"], ["https://tec.openplanner.team/stops/Cgpchen1", "https://tec.openplanner.team/stops/Cgplhoi2"], ["https://tec.openplanner.team/stops/Cmerued2", "https://tec.openplanner.team/stops/Cmestas1"], ["https://tec.openplanner.team/stops/H5bl122a", "https://tec.openplanner.team/stops/H5bl124a"], ["https://tec.openplanner.team/stops/N337agb", "https://tec.openplanner.team/stops/N337aib"], ["https://tec.openplanner.team/stops/LOchalo1", "https://tec.openplanner.team/stops/LOchalo2"], ["https://tec.openplanner.team/stops/X623abb", "https://tec.openplanner.team/stops/X623aca"], ["https://tec.openplanner.team/stops/X822ala", "https://tec.openplanner.team/stops/X822alb"], ["https://tec.openplanner.team/stops/Bettars1", "https://tec.openplanner.team/stops/Bettbue2"], ["https://tec.openplanner.team/stops/Lserena1", "https://tec.openplanner.team/stops/Lserena2"], ["https://tec.openplanner.team/stops/Cnapair1", "https://tec.openplanner.team/stops/Cnating1"], ["https://tec.openplanner.team/stops/N351akb", "https://tec.openplanner.team/stops/N351akc"], ["https://tec.openplanner.team/stops/H1wa141a", "https://tec.openplanner.team/stops/H1wa147a"], ["https://tec.openplanner.team/stops/Cjupui01", "https://tec.openplanner.team/stops/CMpuis2"], ["https://tec.openplanner.team/stops/LAIrout1", "https://tec.openplanner.team/stops/LVMborl2"], ["https://tec.openplanner.team/stops/LHgdari1", "https://tec.openplanner.team/stops/LHgroso1"], ["https://tec.openplanner.team/stops/H1sb146b", "https://tec.openplanner.team/stops/H1sb147a"], ["https://tec.openplanner.team/stops/N534awc", "https://tec.openplanner.team/stops/N534axa"], ["https://tec.openplanner.team/stops/LCTfair2", "https://tec.openplanner.team/stops/LCTpt--2"], ["https://tec.openplanner.team/stops/H1fr133a", "https://tec.openplanner.team/stops/H1fr133b"], ["https://tec.openplanner.team/stops/LeYloos2", "https://tec.openplanner.team/stops/LeYteeh2"], ["https://tec.openplanner.team/stops/H2ha134b", "https://tec.openplanner.team/stops/H2ha135b"], ["https://tec.openplanner.team/stops/H1ro130b", "https://tec.openplanner.team/stops/H1ro138b"], ["https://tec.openplanner.team/stops/LeUmoor1", "https://tec.openplanner.team/stops/LeUolen1"], ["https://tec.openplanner.team/stops/Bcbqtub2", "https://tec.openplanner.team/stops/Bosqpqu1"], ["https://tec.openplanner.team/stops/LHodomm1", "https://tec.openplanner.team/stops/LHolone1"], ["https://tec.openplanner.team/stops/Louazot1", "https://tec.openplanner.team/stops/Lscchat2"], ["https://tec.openplanner.team/stops/H2na133a", "https://tec.openplanner.team/stops/H2na134b"], ["https://tec.openplanner.team/stops/N508aca", "https://tec.openplanner.team/stops/N516aqb"], ["https://tec.openplanner.team/stops/X681aca", "https://tec.openplanner.team/stops/X695ala"], ["https://tec.openplanner.team/stops/H1as101a", "https://tec.openplanner.team/stops/H1as103d"], ["https://tec.openplanner.team/stops/H1te184a", "https://tec.openplanner.team/stops/H1te185a"], ["https://tec.openplanner.team/stops/Bneesj31", "https://tec.openplanner.team/stops/Bneesjo1"], ["https://tec.openplanner.team/stops/Lhufays1", "https://tec.openplanner.team/stops/Lhujonc1"], ["https://tec.openplanner.team/stops/LrAplat2", "https://tec.openplanner.team/stops/LrAputz1"], ["https://tec.openplanner.team/stops/N525ana", "https://tec.openplanner.team/stops/N525aua"], ["https://tec.openplanner.team/stops/Berneco1", "https://tec.openplanner.team/stops/Bgemkal1"], ["https://tec.openplanner.team/stops/H3br122a", "https://tec.openplanner.team/stops/H3so187b"], ["https://tec.openplanner.team/stops/X669acb", "https://tec.openplanner.team/stops/X669afa"], ["https://tec.openplanner.team/stops/LREgare1", "https://tec.openplanner.team/stops/LREsaul1"], ["https://tec.openplanner.team/stops/N155aha", "https://tec.openplanner.team/stops/N160aaa"], ["https://tec.openplanner.team/stops/X659awa", "https://tec.openplanner.team/stops/X659awb"], ["https://tec.openplanner.team/stops/H1sa114b", "https://tec.openplanner.team/stops/H1sa115a"], ["https://tec.openplanner.team/stops/H1pw120a", "https://tec.openplanner.team/stops/H1pw120b"], ["https://tec.openplanner.team/stops/LSceg--2", "https://tec.openplanner.team/stops/LTNegli2"], ["https://tec.openplanner.team/stops/X663ahd", "https://tec.openplanner.team/stops/X663alb"], ["https://tec.openplanner.team/stops/Bneehou2", "https://tec.openplanner.team/stops/Bneervc1"], ["https://tec.openplanner.team/stops/X597ana", "https://tec.openplanner.team/stops/X597apb"], ["https://tec.openplanner.team/stops/N501fga", "https://tec.openplanner.team/stops/N501fjd"], ["https://tec.openplanner.team/stops/LmNsied1", "https://tec.openplanner.team/stops/LmNsied2"], ["https://tec.openplanner.team/stops/NL76ara", "https://tec.openplanner.team/stops/NL76arb"], ["https://tec.openplanner.team/stops/H2re165b", "https://tec.openplanner.team/stops/H2re167a"], ["https://tec.openplanner.team/stops/LeUath%C3%A41", "https://tec.openplanner.team/stops/LeUlasc3"], ["https://tec.openplanner.team/stops/Buccfja2", "https://tec.openplanner.team/stops/Buccron2"], ["https://tec.openplanner.team/stops/Cmlbeau4", "https://tec.openplanner.team/stops/Cmlcons2"], ["https://tec.openplanner.team/stops/LSMec--2", "https://tec.openplanner.team/stops/LSMeg--2"], ["https://tec.openplanner.team/stops/X923abb", "https://tec.openplanner.team/stops/X923akb"], ["https://tec.openplanner.team/stops/X658agc", "https://tec.openplanner.team/stops/X659ata"], ["https://tec.openplanner.team/stops/LHNgare1", "https://tec.openplanner.team/stops/LHNwaut2"], ["https://tec.openplanner.team/stops/Cfrempe1", "https://tec.openplanner.team/stops/Cfrfaub3"], ["https://tec.openplanner.team/stops/LFdchau1", "https://tec.openplanner.team/stops/LFdchau4"], ["https://tec.openplanner.team/stops/Brxmcha1", "https://tec.openplanner.team/stops/Brxmhai2"], ["https://tec.openplanner.team/stops/Livjeu-2", "https://tec.openplanner.team/stops/LRachen2"], ["https://tec.openplanner.team/stops/H4bo111b", "https://tec.openplanner.team/stops/H4bo119b"], ["https://tec.openplanner.team/stops/Lagorch2", "https://tec.openplanner.team/stops/Lagpn6-1"], ["https://tec.openplanner.team/stops/LVthest1", "https://tec.openplanner.team/stops/LVttarg1"], ["https://tec.openplanner.team/stops/H1eq116a", "https://tec.openplanner.team/stops/H1eq116b"], ["https://tec.openplanner.team/stops/H5bl115c", "https://tec.openplanner.team/stops/H5bl115d"], ["https://tec.openplanner.team/stops/Cflcent1", "https://tec.openplanner.team/stops/Cflcent2"], ["https://tec.openplanner.team/stops/Bwateco1", "https://tec.openplanner.team/stops/Bwatwsc1"], ["https://tec.openplanner.team/stops/Lchsa631", "https://tec.openplanner.team/stops/Lchsa632"], ["https://tec.openplanner.team/stops/Bnivaba1", "https://tec.openplanner.team/stops/Bnivrsa1"], ["https://tec.openplanner.team/stops/H1ci105b", "https://tec.openplanner.team/stops/H1ci106a"], ["https://tec.openplanner.team/stops/LELchap2", "https://tec.openplanner.team/stops/LHChaut6"], ["https://tec.openplanner.team/stops/N542apa", "https://tec.openplanner.team/stops/N542apb"], ["https://tec.openplanner.team/stops/Cmaduna2", "https://tec.openplanner.team/stops/Cmamonu1"], ["https://tec.openplanner.team/stops/X809aeb", "https://tec.openplanner.team/stops/X809afa"], ["https://tec.openplanner.team/stops/Lstbota2", "https://tec.openplanner.team/stops/Lstbota3"], ["https://tec.openplanner.team/stops/NC14aaa", "https://tec.openplanner.team/stops/NC24aga"], ["https://tec.openplanner.team/stops/H1ho134a", "https://tec.openplanner.team/stops/H1wl124a"], ["https://tec.openplanner.team/stops/Brsgcfl1", "https://tec.openplanner.team/stops/Buccpes1"], ["https://tec.openplanner.team/stops/N569ajb", "https://tec.openplanner.team/stops/N571afb"], ["https://tec.openplanner.team/stops/Bbsgrve2", "https://tec.openplanner.team/stops/Bnetvan1"], ["https://tec.openplanner.team/stops/H5at109b", "https://tec.openplanner.team/stops/H5at132a"], ["https://tec.openplanner.team/stops/N202aaa", "https://tec.openplanner.team/stops/N203ada"], ["https://tec.openplanner.team/stops/H4br107b", "https://tec.openplanner.team/stops/H4br108a"], ["https://tec.openplanner.team/stops/N365aab", "https://tec.openplanner.team/stops/N365abb"], ["https://tec.openplanner.team/stops/H4mo206b", "https://tec.openplanner.team/stops/H4mo207a"], ["https://tec.openplanner.team/stops/Ccicouc1", "https://tec.openplanner.team/stops/Ccipech2"], ["https://tec.openplanner.team/stops/N213aab", "https://tec.openplanner.team/stops/N213aba"], ["https://tec.openplanner.team/stops/Lghpier2", "https://tec.openplanner.team/stops/Lghraul1"], ["https://tec.openplanner.team/stops/H1nm139a", "https://tec.openplanner.team/stops/H1nm140a"], ["https://tec.openplanner.team/stops/N308aia", "https://tec.openplanner.team/stops/N308aic"], ["https://tec.openplanner.team/stops/LWOruis1", "https://tec.openplanner.team/stops/LWOruis2"], ["https://tec.openplanner.team/stops/LkAmess1", "https://tec.openplanner.team/stops/LmHperl1"], ["https://tec.openplanner.team/stops/LLrisa-*", "https://tec.openplanner.team/stops/LSMgare2"], ["https://tec.openplanner.team/stops/Boffegl2", "https://tec.openplanner.team/stops/N515asb"], ["https://tec.openplanner.team/stops/Bllnpaf4", "https://tec.openplanner.team/stops/Bllnrro1"], ["https://tec.openplanner.team/stops/N501bkb", "https://tec.openplanner.team/stops/N501bmb"], ["https://tec.openplanner.team/stops/H4hx114b", "https://tec.openplanner.team/stops/H4hx117a"], ["https://tec.openplanner.team/stops/LWibare1", "https://tec.openplanner.team/stops/LWipaif4"], ["https://tec.openplanner.team/stops/Bniv4co1", "https://tec.openplanner.team/stops/Bnivpar1"], ["https://tec.openplanner.team/stops/X921aca", "https://tec.openplanner.team/stops/X923aoa"], ["https://tec.openplanner.team/stops/N309aca", "https://tec.openplanner.team/stops/N350aea"], ["https://tec.openplanner.team/stops/LMEcour1", "https://tec.openplanner.team/stops/LMEpech1"], ["https://tec.openplanner.team/stops/LbTathe2", "https://tec.openplanner.team/stops/LbTmuhl1"], ["https://tec.openplanner.team/stops/Bbiecoc2", "https://tec.openplanner.team/stops/Bbiefon1"], ["https://tec.openplanner.team/stops/N311aaa", "https://tec.openplanner.team/stops/N311ada"], ["https://tec.openplanner.team/stops/LAWbrou1", "https://tec.openplanner.team/stops/LBIbois1"], ["https://tec.openplanner.team/stops/N562alc", "https://tec.openplanner.team/stops/N562bwb"], ["https://tec.openplanner.team/stops/Cctrjus1", "https://tec.openplanner.team/stops/NC11aia"], ["https://tec.openplanner.team/stops/LeYgros2", "https://tec.openplanner.team/stops/LhSheid1"], ["https://tec.openplanner.team/stops/LVEmohi1", "https://tec.openplanner.team/stops/LVEtomb2"], ["https://tec.openplanner.team/stops/X715acb", "https://tec.openplanner.team/stops/X715adb"], ["https://tec.openplanner.team/stops/H4an112a", "https://tec.openplanner.team/stops/H4an112b"], ["https://tec.openplanner.team/stops/X901aqa", "https://tec.openplanner.team/stops/X901bla"], ["https://tec.openplanner.team/stops/N576aha", "https://tec.openplanner.team/stops/N576ahb"], ["https://tec.openplanner.team/stops/LMOcorn2", "https://tec.openplanner.team/stops/LMOf21-1"], ["https://tec.openplanner.team/stops/LrDhind1", "https://tec.openplanner.team/stops/LrDrose3"], ["https://tec.openplanner.team/stops/N111abb", "https://tec.openplanner.team/stops/N111aeb"], ["https://tec.openplanner.team/stops/H1ms929a", "https://tec.openplanner.team/stops/H1ms930a"], ["https://tec.openplanner.team/stops/H1tt107a", "https://tec.openplanner.team/stops/H1tt107b"], ["https://tec.openplanner.team/stops/LSemc--2", "https://tec.openplanner.team/stops/LSerout1"], ["https://tec.openplanner.team/stops/X757aba", "https://tec.openplanner.team/stops/X757ada"], ["https://tec.openplanner.team/stops/LMAptne2", "https://tec.openplanner.team/stops/LMArave2"], ["https://tec.openplanner.team/stops/H4ta128b", "https://tec.openplanner.team/stops/H4ta130a"], ["https://tec.openplanner.team/stops/X771aca", "https://tec.openplanner.team/stops/X771ada"], ["https://tec.openplanner.team/stops/Bwatgib1", "https://tec.openplanner.team/stops/Bwatjbo1"], ["https://tec.openplanner.team/stops/H1bb114a", "https://tec.openplanner.team/stops/H1bb117a"], ["https://tec.openplanner.team/stops/H4er121b", "https://tec.openplanner.team/stops/H4wu376a"], ["https://tec.openplanner.team/stops/H5pe131b", "https://tec.openplanner.team/stops/H5pe150b"], ["https://tec.openplanner.team/stops/LsHlenz1", "https://tec.openplanner.team/stops/LsHthom1"], ["https://tec.openplanner.team/stops/N217aca", "https://tec.openplanner.team/stops/N217acb"], ["https://tec.openplanner.team/stops/Crobass1", "https://tec.openplanner.team/stops/Cromart1"], ["https://tec.openplanner.team/stops/LBajean2", "https://tec.openplanner.team/stops/LBapepi3"], ["https://tec.openplanner.team/stops/N501faa", "https://tec.openplanner.team/stops/N501lzz"], ["https://tec.openplanner.team/stops/LHrchez1", "https://tec.openplanner.team/stops/LHreg--1"], ["https://tec.openplanner.team/stops/Lbhmc--2", "https://tec.openplanner.team/stops/Ljuvieu1"], ["https://tec.openplanner.team/stops/Lmobrac1", "https://tec.openplanner.team/stops/Lmopans2"], ["https://tec.openplanner.team/stops/N562asa", "https://tec.openplanner.team/stops/N562asb"], ["https://tec.openplanner.team/stops/LaMschr1", "https://tec.openplanner.team/stops/LaMschr2"], ["https://tec.openplanner.team/stops/LWArege1", "https://tec.openplanner.team/stops/LWArege2"], ["https://tec.openplanner.team/stops/H1qu105b", "https://tec.openplanner.team/stops/H1qu111a"], ["https://tec.openplanner.team/stops/LGOmous2", "https://tec.openplanner.team/stops/LGOvill1"], ["https://tec.openplanner.team/stops/X939adb", "https://tec.openplanner.team/stops/X939afb"], ["https://tec.openplanner.team/stops/N543avh", "https://tec.openplanner.team/stops/N543cla"], ["https://tec.openplanner.team/stops/Ccubric2", "https://tec.openplanner.team/stops/Cmtproc2"], ["https://tec.openplanner.team/stops/LBWbatt2", "https://tec.openplanner.team/stops/LBWeg--1"], ["https://tec.openplanner.team/stops/LhRandl2", "https://tec.openplanner.team/stops/LhRwere2"], ["https://tec.openplanner.team/stops/X811aba", "https://tec.openplanner.team/stops/X811aka"], ["https://tec.openplanner.team/stops/LThgare1", "https://tec.openplanner.team/stops/LThgare2"], ["https://tec.openplanner.team/stops/LwTzent1", "https://tec.openplanner.team/stops/LwTzent2"], ["https://tec.openplanner.team/stops/N529afa", "https://tec.openplanner.team/stops/N529afb"], ["https://tec.openplanner.team/stops/Baeggar2", "https://tec.openplanner.team/stops/Baegm502"], ["https://tec.openplanner.team/stops/LMsviad2", "https://tec.openplanner.team/stops/LPbpeti1"], ["https://tec.openplanner.team/stops/N213aca", "https://tec.openplanner.team/stops/N352ajb"], ["https://tec.openplanner.team/stops/Ctaallo1", "https://tec.openplanner.team/stops/Ctaprai3"], ["https://tec.openplanner.team/stops/NL67aab", "https://tec.openplanner.team/stops/NL67aca"], ["https://tec.openplanner.team/stops/X910afc", "https://tec.openplanner.team/stops/X910afd"], ["https://tec.openplanner.team/stops/H1so131f", "https://tec.openplanner.team/stops/H1so146a"], ["https://tec.openplanner.team/stops/Loubiez3", "https://tec.openplanner.team/stops/Louvira2"], ["https://tec.openplanner.team/stops/Cgocolo1", "https://tec.openplanner.team/stops/Cgocolo2"], ["https://tec.openplanner.team/stops/N232ata", "https://tec.openplanner.team/stops/N232bma"], ["https://tec.openplanner.team/stops/N538anb", "https://tec.openplanner.team/stops/N538aub"], ["https://tec.openplanner.team/stops/LpEbins1", "https://tec.openplanner.team/stops/LtEnach2"], ["https://tec.openplanner.team/stops/X663awa", "https://tec.openplanner.team/stops/X663awb"], ["https://tec.openplanner.team/stops/H1ho124a", "https://tec.openplanner.team/stops/H1ho124b"], ["https://tec.openplanner.team/stops/X901amb", "https://tec.openplanner.team/stops/X901bta"], ["https://tec.openplanner.team/stops/Livpost2", "https://tec.openplanner.team/stops/LRacime1"], ["https://tec.openplanner.team/stops/Lagrask1", "https://tec.openplanner.team/stops/Lagsauh2"], ["https://tec.openplanner.team/stops/Lpecime1", "https://tec.openplanner.team/stops/Lpetenn1"], ["https://tec.openplanner.team/stops/LCIcent1", "https://tec.openplanner.team/stops/LCIcent2"], ["https://tec.openplanner.team/stops/LCvneu-2", "https://tec.openplanner.team/stops/LCvneuv4"], ["https://tec.openplanner.team/stops/X661aha", "https://tec.openplanner.team/stops/X661aza"], ["https://tec.openplanner.team/stops/X764aba", "https://tec.openplanner.team/stops/X764adb"], ["https://tec.openplanner.team/stops/Cgpcime1", "https://tec.openplanner.team/stops/Cgplhoi2"], ["https://tec.openplanner.team/stops/Bjodcsb2", "https://tec.openplanner.team/stops/Bsrgegl2"], ["https://tec.openplanner.team/stops/X624agb", "https://tec.openplanner.team/stops/X624ahb"], ["https://tec.openplanner.team/stops/LaUn1--3", "https://tec.openplanner.team/stops/LsF39--1"], ["https://tec.openplanner.team/stops/LNCgene1", "https://tec.openplanner.team/stops/LNCgene2"], ["https://tec.openplanner.team/stops/LGEbern1", "https://tec.openplanner.team/stops/LGEcons1"], ["https://tec.openplanner.team/stops/N557ada", "https://tec.openplanner.team/stops/N558aja"], ["https://tec.openplanner.team/stops/LAMcloc2", "https://tec.openplanner.team/stops/LAMmc--2"], ["https://tec.openplanner.team/stops/H1cv102a", "https://tec.openplanner.team/stops/H1cv102b"], ["https://tec.openplanner.team/stops/H1fl138a", "https://tec.openplanner.team/stops/H1qu114a"], ["https://tec.openplanner.team/stops/H1pa103a", "https://tec.openplanner.team/stops/H1wa163b"], ["https://tec.openplanner.team/stops/Cblcent1", "https://tec.openplanner.team/stops/Cblcent2"], ["https://tec.openplanner.team/stops/N551apa", "https://tec.openplanner.team/stops/N551arc"], ["https://tec.openplanner.team/stops/Csequew1", "https://tec.openplanner.team/stops/Csequew2"], ["https://tec.openplanner.team/stops/X626ala", "https://tec.openplanner.team/stops/X626anb"], ["https://tec.openplanner.team/stops/H4bd107b", "https://tec.openplanner.team/stops/H4te257b"], ["https://tec.openplanner.team/stops/Ccyfede2", "https://tec.openplanner.team/stops/Crbgare2"], ["https://tec.openplanner.team/stops/Bpiejus2", "https://tec.openplanner.team/stops/Bpielom1"], ["https://tec.openplanner.team/stops/LGegrun2", "https://tec.openplanner.team/stops/LGetroi2"], ["https://tec.openplanner.team/stops/Ccpetan1", "https://tec.openplanner.team/stops/Cptchea1"], ["https://tec.openplanner.team/stops/CMjans1", "https://tec.openplanner.team/stops/CMjans2"], ["https://tec.openplanner.team/stops/H1wa132a", "https://tec.openplanner.team/stops/H1wa149b"], ["https://tec.openplanner.team/stops/Cslbarb1", "https://tec.openplanner.team/stops/Cslbarb2"], ["https://tec.openplanner.team/stops/H4hn115b", "https://tec.openplanner.team/stops/H4pe127b"], ["https://tec.openplanner.team/stops/LwYkreu4", "https://tec.openplanner.team/stops/LwYsarl2"], ["https://tec.openplanner.team/stops/H2hg144b", "https://tec.openplanner.team/stops/H2hg265a"], ["https://tec.openplanner.team/stops/Bptecal1", "https://tec.openplanner.team/stops/H3st119a"], ["https://tec.openplanner.team/stops/Clrmarl1", "https://tec.openplanner.team/stops/Clrmarl4"], ["https://tec.openplanner.team/stops/H1hr116a", "https://tec.openplanner.team/stops/H3st119a"], ["https://tec.openplanner.team/stops/H4co146b", "https://tec.openplanner.team/stops/H4co148a"], ["https://tec.openplanner.team/stops/N243aca", "https://tec.openplanner.team/stops/N243aea"], ["https://tec.openplanner.team/stops/Bbxlple2", "https://tec.openplanner.team/stops/Bbxltrv2"], ["https://tec.openplanner.team/stops/H1fl133b", "https://tec.openplanner.team/stops/H1fl133e"], ["https://tec.openplanner.team/stops/N141ada", "https://tec.openplanner.team/stops/N141aeb"], ["https://tec.openplanner.team/stops/Bnilcim2", "https://tec.openplanner.team/stops/Bnilpco2"], ["https://tec.openplanner.team/stops/X609ada", "https://tec.openplanner.team/stops/X609afa"], ["https://tec.openplanner.team/stops/Cfaamio4", "https://tec.openplanner.team/stops/Cfasamb1"], ["https://tec.openplanner.team/stops/X615aub", "https://tec.openplanner.team/stops/X695aka"], ["https://tec.openplanner.team/stops/X911afb", "https://tec.openplanner.team/stops/X911arb"], ["https://tec.openplanner.team/stops/LrAdrie2", "https://tec.openplanner.team/stops/LrApont1"], ["https://tec.openplanner.team/stops/H1gq153a", "https://tec.openplanner.team/stops/H1hq126b"], ["https://tec.openplanner.team/stops/LFreg--1", "https://tec.openplanner.team/stops/LNEec--1"], ["https://tec.openplanner.team/stops/X805aca", "https://tec.openplanner.team/stops/X805afb"], ["https://tec.openplanner.team/stops/H5st163b", "https://tec.openplanner.team/stops/H5st166a"], ["https://tec.openplanner.team/stops/N509akb", "https://tec.openplanner.team/stops/N509bdb"], ["https://tec.openplanner.team/stops/LXopeti2", "https://tec.openplanner.team/stops/X599afc"], ["https://tec.openplanner.team/stops/LVLbovy2", "https://tec.openplanner.team/stops/LVLm10-2"], ["https://tec.openplanner.team/stops/H1hq124b", "https://tec.openplanner.team/stops/H1sy137c"], ["https://tec.openplanner.team/stops/N533afa", "https://tec.openplanner.team/stops/N533afb"], ["https://tec.openplanner.team/stops/H4ga167a", "https://tec.openplanner.team/stops/H4ga167b"], ["https://tec.openplanner.team/stops/X396aca", "https://tec.openplanner.team/stops/X919amb"], ["https://tec.openplanner.team/stops/LSypesy2", "https://tec.openplanner.team/stops/LWZbeem1"], ["https://tec.openplanner.team/stops/H1br122a", "https://tec.openplanner.team/stops/H1br124b"], ["https://tec.openplanner.team/stops/H5bl119d", "https://tec.openplanner.team/stops/H5qu182b"], ["https://tec.openplanner.team/stops/H4oe150b", "https://tec.openplanner.team/stops/H4oe152a"], ["https://tec.openplanner.team/stops/Lveharm1", "https://tec.openplanner.team/stops/Lvevict1"], ["https://tec.openplanner.team/stops/H4ty268b", "https://tec.openplanner.team/stops/H4ty328a"], ["https://tec.openplanner.team/stops/Bvirbru1", "https://tec.openplanner.team/stops/Bvirbru2"], ["https://tec.openplanner.team/stops/Bgnpegl1", "https://tec.openplanner.team/stops/Bgnpegl2"], ["https://tec.openplanner.team/stops/Brixala1", "https://tec.openplanner.team/stops/Brixdec1"], ["https://tec.openplanner.team/stops/X604aia", "https://tec.openplanner.team/stops/X604aja"], ["https://tec.openplanner.team/stops/LHMbami1", "https://tec.openplanner.team/stops/LHMbami2"], ["https://tec.openplanner.team/stops/N538atc", "https://tec.openplanner.team/stops/N538atd"], ["https://tec.openplanner.team/stops/Cfmchau1", "https://tec.openplanner.team/stops/Cfmchau2"], ["https://tec.openplanner.team/stops/Becepco1", "https://tec.openplanner.team/stops/Becepro1"], ["https://tec.openplanner.team/stops/Bbsggot2", "https://tec.openplanner.team/stops/Bhmmcge2"], ["https://tec.openplanner.team/stops/X812ala", "https://tec.openplanner.team/stops/X812bea"], ["https://tec.openplanner.team/stops/H4hg160b", "https://tec.openplanner.team/stops/H4mv189c"], ["https://tec.openplanner.team/stops/LBEtilf1", "https://tec.openplanner.team/stops/LTIchev1"], ["https://tec.openplanner.team/stops/Lprhodi2", "https://tec.openplanner.team/stops/Lprtill1"], ["https://tec.openplanner.team/stops/X734aab", "https://tec.openplanner.team/stops/X735abc"], ["https://tec.openplanner.team/stops/Bjodsme1", "https://tec.openplanner.team/stops/NR10acb"], ["https://tec.openplanner.team/stops/Bottbou2", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://tec.openplanner.team/stops/LFCkett1", "https://tec.openplanner.team/stops/LFCkett2"], ["https://tec.openplanner.team/stops/LLrhest2", "https://tec.openplanner.team/stops/LLrscie1"], ["https://tec.openplanner.team/stops/Lstchim1", "https://tec.openplanner.team/stops/Lsttech2"], ["https://tec.openplanner.team/stops/LChxhav2", "https://tec.openplanner.team/stops/LJA65h-2"], ["https://tec.openplanner.team/stops/N501ejc", "https://tec.openplanner.team/stops/N501klb"], ["https://tec.openplanner.team/stops/Bhancre2", "https://tec.openplanner.team/stops/NL37aaa"], ["https://tec.openplanner.team/stops/H1cu121b", "https://tec.openplanner.team/stops/H1cu130a"], ["https://tec.openplanner.team/stops/N163aab", "https://tec.openplanner.team/stops/N163aba"], ["https://tec.openplanner.team/stops/Bbaubru1", "https://tec.openplanner.team/stops/Bbaubru2"], ["https://tec.openplanner.team/stops/Cjuhden2", "https://tec.openplanner.team/stops/Cjuhden4"], ["https://tec.openplanner.team/stops/Lmagara2", "https://tec.openplanner.team/stops/Lroboeg2"], ["https://tec.openplanner.team/stops/X740aga", "https://tec.openplanner.team/stops/X740agb"], ["https://tec.openplanner.team/stops/Ljemabo1", "https://tec.openplanner.team/stops/Ltibure1"], ["https://tec.openplanner.team/stops/LFUchpl1", "https://tec.openplanner.team/stops/LFUgare2"], ["https://tec.openplanner.team/stops/N101aaa", "https://tec.openplanner.team/stops/N101aba"], ["https://tec.openplanner.team/stops/LSkb1351", "https://tec.openplanner.team/stops/LSkyern2"], ["https://tec.openplanner.team/stops/Cmacart1", "https://tec.openplanner.team/stops/Cmamarc1"], ["https://tec.openplanner.team/stops/Bcrngat2", "https://tec.openplanner.team/stops/Bcrnvic2"], ["https://tec.openplanner.team/stops/Brixbai1", "https://tec.openplanner.team/stops/Brixrmo1"], ["https://tec.openplanner.team/stops/X786acb", "https://tec.openplanner.team/stops/X786aeb"], ["https://tec.openplanner.team/stops/LeLbutg1", "https://tec.openplanner.team/stops/LeLdorf1"], ["https://tec.openplanner.team/stops/N519apb", "https://tec.openplanner.team/stops/N525afb"], ["https://tec.openplanner.team/stops/Chpfoli5", "https://tec.openplanner.team/stops/Chprobi1"], ["https://tec.openplanner.team/stops/H4tg163a", "https://tec.openplanner.team/stops/H4tg170b"], ["https://tec.openplanner.team/stops/LRIcite1", "https://tec.openplanner.team/stops/LRIcite2"], ["https://tec.openplanner.team/stops/Bhmmcam1", "https://tec.openplanner.team/stops/Btlgbro2"], ["https://tec.openplanner.team/stops/LHcbaro2", "https://tec.openplanner.team/stops/LSZcock2"], ["https://tec.openplanner.team/stops/LnN02--2", "https://tec.openplanner.team/stops/LsVthom2"], ["https://tec.openplanner.team/stops/LHFappe4", "https://tec.openplanner.team/stops/LHFhard2"], ["https://tec.openplanner.team/stops/LHrbast1", "https://tec.openplanner.team/stops/LHrchez1"], ["https://tec.openplanner.team/stops/LNAbras2", "https://tec.openplanner.team/stops/LNAbras5"], ["https://tec.openplanner.team/stops/H4wa155b", "https://tec.openplanner.team/stops/H4wa161b"], ["https://tec.openplanner.team/stops/Cmmschw2", "https://tec.openplanner.team/stops/Cmyboci1"], ["https://tec.openplanner.team/stops/N501axb", "https://tec.openplanner.team/stops/N501mga"], ["https://tec.openplanner.team/stops/Lroboeg2", "https://tec.openplanner.team/stops/Lrosaun2"], ["https://tec.openplanner.team/stops/Bgoesch2", "https://tec.openplanner.team/stops/Bgoesch4"], ["https://tec.openplanner.team/stops/X901apb", "https://tec.openplanner.team/stops/X901aub"], ["https://tec.openplanner.team/stops/Lbocruc1", "https://tec.openplanner.team/stops/Lbomidi1"], ["https://tec.openplanner.team/stops/Cjugohi3", "https://tec.openplanner.team/stops/Cjumarc1"], ["https://tec.openplanner.team/stops/N562aob", "https://tec.openplanner.team/stops/N570abb"], ["https://tec.openplanner.team/stops/LEBmoul2", "https://tec.openplanner.team/stops/LWOwonc2"], ["https://tec.openplanner.team/stops/Bjdscnd2", "https://tec.openplanner.team/stops/Bjodpce2"], ["https://tec.openplanner.team/stops/X922aga", "https://tec.openplanner.team/stops/X922aha"], ["https://tec.openplanner.team/stops/X314aab", "https://tec.openplanner.team/stops/X611aca"], ["https://tec.openplanner.team/stops/Cgxmaco1", "https://tec.openplanner.team/stops/CMpara2"], ["https://tec.openplanner.team/stops/H4ga147a", "https://tec.openplanner.team/stops/H4ga147b"], ["https://tec.openplanner.team/stops/Lanlona1", "https://tec.openplanner.team/stops/Lrctec-1"], ["https://tec.openplanner.team/stops/Bbsgbos3", "https://tec.openplanner.team/stops/Bgzdsta1"], ["https://tec.openplanner.team/stops/Bmrsefr1", "https://tec.openplanner.team/stops/Bmrssmc1"], ["https://tec.openplanner.team/stops/LBjpech2", "https://tec.openplanner.team/stops/LLVeg--1"], ["https://tec.openplanner.team/stops/LFArela4", "https://tec.openplanner.team/stops/LFAsauv2"], ["https://tec.openplanner.team/stops/X788afa", "https://tec.openplanner.team/stops/X788afb"], ["https://tec.openplanner.team/stops/Ctafran2", "https://tec.openplanner.team/stops/N543bkb"], ["https://tec.openplanner.team/stops/Cjuunio1", "https://tec.openplanner.team/stops/Cjuunio2"], ["https://tec.openplanner.team/stops/X840aab", "https://tec.openplanner.team/stops/X840abb"], ["https://tec.openplanner.team/stops/N349aab", "https://tec.openplanner.team/stops/N349aeb"], ["https://tec.openplanner.team/stops/X822aga", "https://tec.openplanner.team/stops/X822arb"], ["https://tec.openplanner.team/stops/N121adb", "https://tec.openplanner.team/stops/N122afb"], ["https://tec.openplanner.team/stops/X714aea", "https://tec.openplanner.team/stops/X715ahb"], ["https://tec.openplanner.team/stops/N501ccb", "https://tec.openplanner.team/stops/N502acb"], ["https://tec.openplanner.team/stops/Bnivlai1", "https://tec.openplanner.team/stops/Bnivmet1"], ["https://tec.openplanner.team/stops/Ctubpos2", "https://tec.openplanner.team/stops/Ctuyser2"], ["https://tec.openplanner.team/stops/LAChann2", "https://tec.openplanner.team/stops/LHhvivi1"], ["https://tec.openplanner.team/stops/H4ty345b", "https://tec.openplanner.team/stops/H4ty405a"], ["https://tec.openplanner.team/stops/H1mg109a", "https://tec.openplanner.team/stops/H1mg109b"], ["https://tec.openplanner.team/stops/N539ata", "https://tec.openplanner.team/stops/N539bea"], ["https://tec.openplanner.team/stops/LSJgrae1", "https://tec.openplanner.team/stops/LSJgrae2"], ["https://tec.openplanner.team/stops/H4hq131a", "https://tec.openplanner.team/stops/H4th141a"], ["https://tec.openplanner.team/stops/LhGgeme1", "https://tec.openplanner.team/stops/LhGkirc2"], ["https://tec.openplanner.team/stops/N139aab", "https://tec.openplanner.team/stops/N139aeb"], ["https://tec.openplanner.team/stops/X773aga", "https://tec.openplanner.team/stops/X954acb"], ["https://tec.openplanner.team/stops/Lhufont2", "https://tec.openplanner.team/stops/Lmneg--1"], ["https://tec.openplanner.team/stops/H4gu106a", "https://tec.openplanner.team/stops/H4ta128b"], ["https://tec.openplanner.team/stops/N201ada", "https://tec.openplanner.team/stops/N201ara"], ["https://tec.openplanner.team/stops/Bwspbos2", "https://tec.openplanner.team/stops/Bwspm371"], ["https://tec.openplanner.team/stops/Cvsduve2", "https://tec.openplanner.team/stops/N530ada"], ["https://tec.openplanner.team/stops/X829aab", "https://tec.openplanner.team/stops/X829abb"], ["https://tec.openplanner.team/stops/Cctbois2", "https://tec.openplanner.team/stops/Cctgiss1"], ["https://tec.openplanner.team/stops/X601asa", "https://tec.openplanner.team/stops/X601cma"], ["https://tec.openplanner.team/stops/Lbhfaye2", "https://tec.openplanner.team/stops/Lgrwill1"], ["https://tec.openplanner.team/stops/LmSkape1", "https://tec.openplanner.team/stops/LnDdorf1"], ["https://tec.openplanner.team/stops/Lsnferr2", "https://tec.openplanner.team/stops/Lsnmala4"], ["https://tec.openplanner.team/stops/Cgzdeve1", "https://tec.openplanner.team/stops/Cldvign1"], ["https://tec.openplanner.team/stops/Lsebeau*", "https://tec.openplanner.team/stops/Lsevill2"], ["https://tec.openplanner.team/stops/Bbsifml2", "https://tec.openplanner.team/stops/Bnivphs1"], ["https://tec.openplanner.team/stops/H1hc126a", "https://tec.openplanner.team/stops/H1hc152b"], ["https://tec.openplanner.team/stops/Bdvmc031", "https://tec.openplanner.team/stops/Bgzdfpo1"], ["https://tec.openplanner.team/stops/X769aab", "https://tec.openplanner.team/stops/X769ata"], ["https://tec.openplanner.team/stops/LBk79--2", "https://tec.openplanner.team/stops/LBkgrae2"], ["https://tec.openplanner.team/stops/LWbboeg2", "https://tec.openplanner.team/stops/X512abb"], ["https://tec.openplanner.team/stops/Lenmivi*", "https://tec.openplanner.team/stops/Lenplac5"], ["https://tec.openplanner.team/stops/N534bba", "https://tec.openplanner.team/stops/N534bdb"], ["https://tec.openplanner.team/stops/N160aaa", "https://tec.openplanner.team/stops/N160aea"], ["https://tec.openplanner.team/stops/Llgnaes1", "https://tec.openplanner.team/stops/Llgwesp2"], ["https://tec.openplanner.team/stops/Bottcli1", "https://tec.openplanner.team/stops/Bottrfa4"], ["https://tec.openplanner.team/stops/LSzcoop1", "https://tec.openplanner.team/stops/LSzcoop2"], ["https://tec.openplanner.team/stops/X615ada", "https://tec.openplanner.team/stops/X615ata"], ["https://tec.openplanner.team/stops/LBUmara1", "https://tec.openplanner.team/stops/LHhmohe1"], ["https://tec.openplanner.team/stops/X911afa", "https://tec.openplanner.team/stops/X911aha"], ["https://tec.openplanner.team/stops/LCeanne1", "https://tec.openplanner.team/stops/LCeterm1"], ["https://tec.openplanner.team/stops/X636bba", "https://tec.openplanner.team/stops/X636bhb"], ["https://tec.openplanner.team/stops/X716aeb", "https://tec.openplanner.team/stops/X716afa"], ["https://tec.openplanner.team/stops/N553aca", "https://tec.openplanner.team/stops/N568adb"], ["https://tec.openplanner.team/stops/N204aeb", "https://tec.openplanner.team/stops/N204afb"], ["https://tec.openplanner.team/stops/Llmeg--*", "https://tec.openplanner.team/stops/Llmeg--2"], ["https://tec.openplanner.team/stops/X359afa", "https://tec.openplanner.team/stops/X359ahb"], ["https://tec.openplanner.team/stops/LBVclig1", "https://tec.openplanner.team/stops/LMAfali1"], ["https://tec.openplanner.team/stops/LDomoul1", "https://tec.openplanner.team/stops/LHFcaqu1"], ["https://tec.openplanner.team/stops/H1ev115a", "https://tec.openplanner.team/stops/H1ev115b"], ["https://tec.openplanner.team/stops/N207aeb", "https://tec.openplanner.team/stops/N207afb"], ["https://tec.openplanner.team/stops/Brsrmon1", "https://tec.openplanner.team/stops/Brsrpch1"], ["https://tec.openplanner.team/stops/LHaxhig1", "https://tec.openplanner.team/stops/LHaxhig2"], ["https://tec.openplanner.team/stops/Lvehoug2", "https://tec.openplanner.team/stops/Lvewall1"], ["https://tec.openplanner.team/stops/LLrquar1", "https://tec.openplanner.team/stops/LTHchiv1"], ["https://tec.openplanner.team/stops/X615axa", "https://tec.openplanner.team/stops/X615ayb"], ["https://tec.openplanner.team/stops/LWecarr2", "https://tec.openplanner.team/stops/LWeec--2"], ["https://tec.openplanner.team/stops/X743agb", "https://tec.openplanner.team/stops/X746aea"], ["https://tec.openplanner.team/stops/Cchsud0", "https://tec.openplanner.team/stops/CMvil2"], ["https://tec.openplanner.team/stops/Cfbegli2", "https://tec.openplanner.team/stops/Cfcecol4"], ["https://tec.openplanner.team/stops/H1do122a", "https://tec.openplanner.team/stops/H1do131d"], ["https://tec.openplanner.team/stops/X796ahb", "https://tec.openplanner.team/stops/X986amb"], ["https://tec.openplanner.team/stops/LCEeg--1", "https://tec.openplanner.team/stops/LCEeg--2"], ["https://tec.openplanner.team/stops/LLUdeig1", "https://tec.openplanner.team/stops/LLUhotc2"], ["https://tec.openplanner.team/stops/N542aca", "https://tec.openplanner.team/stops/N542acc"], ["https://tec.openplanner.team/stops/N501ana", "https://tec.openplanner.team/stops/N501mba"], ["https://tec.openplanner.team/stops/Lgrdeni1", "https://tec.openplanner.team/stops/Lgrmc--2"], ["https://tec.openplanner.team/stops/Lghberl1", "https://tec.openplanner.team/stops/Ljexhav3"], ["https://tec.openplanner.team/stops/H2ep172a", "https://tec.openplanner.team/stops/H2le176a"], ["https://tec.openplanner.team/stops/LODvill1", "https://tec.openplanner.team/stops/X561aca"], ["https://tec.openplanner.team/stops/Bohnman1", "https://tec.openplanner.team/stops/Bohnmes1"], ["https://tec.openplanner.team/stops/X756aea", "https://tec.openplanner.team/stops/X756akb"], ["https://tec.openplanner.team/stops/Llgjonr2", "https://tec.openplanner.team/stops/Lvtnico*"], ["https://tec.openplanner.team/stops/N116aea", "https://tec.openplanner.team/stops/N118aub"], ["https://tec.openplanner.team/stops/LTResse1", "https://tec.openplanner.team/stops/LTRfica1"], ["https://tec.openplanner.team/stops/Cjochap1", "https://tec.openplanner.team/stops/Cjochap2"], ["https://tec.openplanner.team/stops/LTgbalm2", "https://tec.openplanner.team/stops/LTgchar7"], ["https://tec.openplanner.team/stops/N576aab", "https://tec.openplanner.team/stops/N576amb"], ["https://tec.openplanner.team/stops/H2ha141a", "https://tec.openplanner.team/stops/H2ha141b"], ["https://tec.openplanner.team/stops/N512aqa", "https://tec.openplanner.team/stops/N512aqb"], ["https://tec.openplanner.team/stops/LDOordi2", "https://tec.openplanner.team/stops/LGOhevr1"], ["https://tec.openplanner.team/stops/Bhalcbr2", "https://tec.openplanner.team/stops/Bhalvel2"], ["https://tec.openplanner.team/stops/LOL6che1", "https://tec.openplanner.team/stops/LOL6che2"], ["https://tec.openplanner.team/stops/Lhragri1", "https://tec.openplanner.team/stops/Lhragri2"], ["https://tec.openplanner.team/stops/X942abb", "https://tec.openplanner.team/stops/X942agb"], ["https://tec.openplanner.team/stops/Lreclou2", "https://tec.openplanner.team/stops/Lreec--1"], ["https://tec.openplanner.team/stops/H1te178a", "https://tec.openplanner.team/stops/H1te198a"], ["https://tec.openplanner.team/stops/H4oe150a", "https://tec.openplanner.team/stops/H4oe152a"], ["https://tec.openplanner.team/stops/Cmggthi1", "https://tec.openplanner.team/stops/Cmgtour2"], ["https://tec.openplanner.team/stops/Bincbbo1", "https://tec.openplanner.team/stops/Bincegl1"], ["https://tec.openplanner.team/stops/N106aab", "https://tec.openplanner.team/stops/N118abb"], ["https://tec.openplanner.team/stops/X745abb", "https://tec.openplanner.team/stops/X745acb"], ["https://tec.openplanner.team/stops/N111aca", "https://tec.openplanner.team/stops/N111afb"], ["https://tec.openplanner.team/stops/Bbchcbl2", "https://tec.openplanner.team/stops/Bbchpil1"], ["https://tec.openplanner.team/stops/H4fl113b", "https://tec.openplanner.team/stops/H4fl179b"], ["https://tec.openplanner.team/stops/H1qu100c", "https://tec.openplanner.team/stops/H1qu101a"], ["https://tec.openplanner.team/stops/Lgrlimi1", "https://tec.openplanner.team/stops/Lgrlimi4"], ["https://tec.openplanner.team/stops/H1ma231a", "https://tec.openplanner.team/stops/H1ni315a"], ["https://tec.openplanner.team/stops/LeYgros2", "https://tec.openplanner.team/stops/LeYmuhl1"], ["https://tec.openplanner.team/stops/Bsomtpm1", "https://tec.openplanner.team/stops/N584cba"], ["https://tec.openplanner.team/stops/Bniltri2", "https://tec.openplanner.team/stops/Bnilwal1"], ["https://tec.openplanner.team/stops/H2gy101a", "https://tec.openplanner.team/stops/H2se106a"], ["https://tec.openplanner.team/stops/LmUvilz2", "https://tec.openplanner.team/stops/LrOtria2"], ["https://tec.openplanner.team/stops/N554aea", "https://tec.openplanner.team/stops/N566afa"], ["https://tec.openplanner.team/stops/H1hy126b", "https://tec.openplanner.team/stops/H1hy127a"], ["https://tec.openplanner.team/stops/LSeaque2", "https://tec.openplanner.team/stops/LSetrix1"], ["https://tec.openplanner.team/stops/Cthrwai1", "https://tec.openplanner.team/stops/Cthwaib2"], ["https://tec.openplanner.team/stops/Bgnvfai1", "https://tec.openplanner.team/stops/Bgnvtas1"], ["https://tec.openplanner.team/stops/Causncb2", "https://tec.openplanner.team/stops/N543awh"], ["https://tec.openplanner.team/stops/N507abb", "https://tec.openplanner.team/stops/N507alb"], ["https://tec.openplanner.team/stops/N352acb", "https://tec.openplanner.team/stops/N352adb"], ["https://tec.openplanner.team/stops/N503adb", "https://tec.openplanner.team/stops/N503aha"], ["https://tec.openplanner.team/stops/H4bi100b", "https://tec.openplanner.team/stops/H4te256a"], ["https://tec.openplanner.team/stops/LEHmarc2", "https://tec.openplanner.team/stops/LNCmc--2"], ["https://tec.openplanner.team/stops/Lgrside1", "https://tec.openplanner.team/stops/Llgdesa1"], ["https://tec.openplanner.team/stops/Cbbcent1", "https://tec.openplanner.team/stops/Cbbcent2"], ["https://tec.openplanner.team/stops/H1at109a", "https://tec.openplanner.team/stops/H1at109b"], ["https://tec.openplanner.team/stops/Lsebegu1", "https://tec.openplanner.team/stops/Lsebegu3"], ["https://tec.openplanner.team/stops/X663ahb", "https://tec.openplanner.team/stops/X663ahd"], ["https://tec.openplanner.team/stops/LSoboul1", "https://tec.openplanner.team/stops/LSorobe1"], ["https://tec.openplanner.team/stops/N351aaa", "https://tec.openplanner.team/stops/N351aja"], ["https://tec.openplanner.team/stops/H1gr118b", "https://tec.openplanner.team/stops/H1to153c"], ["https://tec.openplanner.team/stops/Bclglbu1", "https://tec.openplanner.team/stops/Bclglbu2"], ["https://tec.openplanner.team/stops/N558aea", "https://tec.openplanner.team/stops/N558aeb"], ["https://tec.openplanner.team/stops/Lougare3", "https://tec.openplanner.team/stops/Ltiferb2"], ["https://tec.openplanner.team/stops/X641asa", "https://tec.openplanner.team/stops/X641atb"], ["https://tec.openplanner.team/stops/LHovill1", "https://tec.openplanner.team/stops/LHovill2"], ["https://tec.openplanner.team/stops/H1qp140b", "https://tec.openplanner.team/stops/H1qp141b"], ["https://tec.openplanner.team/stops/N244ana", "https://tec.openplanner.team/stops/N244anb"], ["https://tec.openplanner.team/stops/Bronpfe1", "https://tec.openplanner.team/stops/Bvirfpo2"], ["https://tec.openplanner.team/stops/X670aaa", "https://tec.openplanner.team/stops/X670abb"], ["https://tec.openplanner.team/stops/X850aka", "https://tec.openplanner.team/stops/X850aoa"], ["https://tec.openplanner.team/stops/LScd45-1", "https://tec.openplanner.team/stops/LVTforg1"], ["https://tec.openplanner.team/stops/X769aqa", "https://tec.openplanner.team/stops/X769aqb"], ["https://tec.openplanner.team/stops/LFochap1", "https://tec.openplanner.team/stops/LJAdeho4"], ["https://tec.openplanner.team/stops/X626aha", "https://tec.openplanner.team/stops/X626ahb"], ["https://tec.openplanner.team/stops/Lcebois2", "https://tec.openplanner.team/stops/Lgrjobe1"], ["https://tec.openplanner.team/stops/Lenplac2", "https://tec.openplanner.team/stops/Lenptsa1"], ["https://tec.openplanner.team/stops/H4bu109a", "https://tec.openplanner.team/stops/H4ms166b"], ["https://tec.openplanner.team/stops/N539asb", "https://tec.openplanner.team/stops/N539bdb"], ["https://tec.openplanner.team/stops/Bhlvvil1", "https://tec.openplanner.team/stops/Bhlvvil2"], ["https://tec.openplanner.team/stops/Cbmpano2", "https://tec.openplanner.team/stops/Cbmzoni1"], ["https://tec.openplanner.team/stops/H4ka182b", "https://tec.openplanner.team/stops/H4ka392b"], ["https://tec.openplanner.team/stops/X793ada", "https://tec.openplanner.team/stops/X793aeb"], ["https://tec.openplanner.team/stops/H1hr115a", "https://tec.openplanner.team/stops/H1ne149a"], ["https://tec.openplanner.team/stops/Clddeve2", "https://tec.openplanner.team/stops/Cldplac2"], ["https://tec.openplanner.team/stops/Ccypn1", "https://tec.openplanner.team/stops/NH01apa"], ["https://tec.openplanner.team/stops/Lsecast1", "https://tec.openplanner.team/stops/Lsehaut1"], ["https://tec.openplanner.team/stops/H1gr113a", "https://tec.openplanner.team/stops/H1gr115b"], ["https://tec.openplanner.team/stops/H2ml113a", "https://tec.openplanner.team/stops/H2mo126a"], ["https://tec.openplanner.team/stops/N554abb", "https://tec.openplanner.team/stops/N573ama"], ["https://tec.openplanner.team/stops/LMsviad2", "https://tec.openplanner.team/stops/LMsvill1"], ["https://tec.openplanner.team/stops/X351aca", "https://tec.openplanner.team/stops/X351adb"], ["https://tec.openplanner.team/stops/Lghencl2", "https://tec.openplanner.team/stops/Lghflot1"], ["https://tec.openplanner.team/stops/H4eg108a", "https://tec.openplanner.team/stops/H4eg108b"], ["https://tec.openplanner.team/stops/H4an105b", "https://tec.openplanner.team/stops/H4wt160a"], ["https://tec.openplanner.team/stops/X636aea", "https://tec.openplanner.team/stops/X636baa"], ["https://tec.openplanner.team/stops/X636bja", "https://tec.openplanner.team/stops/X636bjb"], ["https://tec.openplanner.team/stops/Lhutran1", "https://tec.openplanner.team/stops/Lhutran2"], ["https://tec.openplanner.team/stops/N509adb", "https://tec.openplanner.team/stops/N509aga"], ["https://tec.openplanner.team/stops/X638afb", "https://tec.openplanner.team/stops/X638agb"], ["https://tec.openplanner.team/stops/N337afa", "https://tec.openplanner.team/stops/N385ada"], ["https://tec.openplanner.team/stops/N244aka", "https://tec.openplanner.team/stops/N244ara"], ["https://tec.openplanner.team/stops/LDOandr2", "https://tec.openplanner.team/stops/LDOjose1"], ["https://tec.openplanner.team/stops/H1ne145a", "https://tec.openplanner.team/stops/H1ne145b"], ["https://tec.openplanner.team/stops/X619aeb", "https://tec.openplanner.team/stops/X619afb"], ["https://tec.openplanner.team/stops/LOeelbe1", "https://tec.openplanner.team/stops/LOesour1"], ["https://tec.openplanner.team/stops/H3so156b", "https://tec.openplanner.team/stops/H3so176a"], ["https://tec.openplanner.team/stops/H4hu119a", "https://tec.openplanner.team/stops/H4hu119b"], ["https://tec.openplanner.team/stops/LAIchpl1", "https://tec.openplanner.team/stops/LBzec--2"], ["https://tec.openplanner.team/stops/Cmcegli1", "https://tec.openplanner.team/stops/Cmcegli4"], ["https://tec.openplanner.team/stops/X754ada", "https://tec.openplanner.team/stops/X754apb"], ["https://tec.openplanner.team/stops/N117aga", "https://tec.openplanner.team/stops/N165acb"], ["https://tec.openplanner.team/stops/Cjudefi2", "https://tec.openplanner.team/stops/Cjurevo1"], ["https://tec.openplanner.team/stops/H4te254b", "https://tec.openplanner.team/stops/H4te256b"], ["https://tec.openplanner.team/stops/LFrvesd1", "https://tec.openplanner.team/stops/LNEec--1"], ["https://tec.openplanner.team/stops/LmR90--1", "https://tec.openplanner.team/stops/LmRkape1"], ["https://tec.openplanner.team/stops/LCPlebl*", "https://tec.openplanner.team/stops/LCPlebl2"], ["https://tec.openplanner.team/stops/N573aab", "https://tec.openplanner.team/stops/N573aea"], ["https://tec.openplanner.team/stops/X901afa", "https://tec.openplanner.team/stops/X902ava"], ["https://tec.openplanner.team/stops/LCpegli2", "https://tec.openplanner.team/stops/LCpvill1"], ["https://tec.openplanner.team/stops/LRObruy1", "https://tec.openplanner.team/stops/LROmons1"], ["https://tec.openplanner.team/stops/LbUmors2", "https://tec.openplanner.team/stops/LbUwhon2"], ["https://tec.openplanner.team/stops/NH01aob", "https://tec.openplanner.team/stops/NH01aua"], ["https://tec.openplanner.team/stops/N229ajb", "https://tec.openplanner.team/stops/N229aka"], ["https://tec.openplanner.team/stops/Cgrchas1", "https://tec.openplanner.team/stops/N160aha"], ["https://tec.openplanner.team/stops/Lghcise1", "https://tec.openplanner.team/stops/Lghmont2"], ["https://tec.openplanner.team/stops/H4bo121b", "https://tec.openplanner.team/stops/H5qu158a"], ["https://tec.openplanner.team/stops/H4bn100a", "https://tec.openplanner.team/stops/H4bs113a"], ["https://tec.openplanner.team/stops/N110aab", "https://tec.openplanner.team/stops/N110aca"], ["https://tec.openplanner.team/stops/X359ama", "https://tec.openplanner.team/stops/X858aea"], ["https://tec.openplanner.team/stops/X716abb", "https://tec.openplanner.team/stops/X716afb"], ["https://tec.openplanner.team/stops/Llgjoie4", "https://tec.openplanner.team/stops/Llgwall1"], ["https://tec.openplanner.team/stops/N538aha", "https://tec.openplanner.team/stops/N538ahb"], ["https://tec.openplanner.team/stops/LHUgole2", "https://tec.openplanner.team/stops/LHUsauv1"], ["https://tec.openplanner.team/stops/X609aib", "https://tec.openplanner.team/stops/X610aab"], ["https://tec.openplanner.team/stops/N534bga", "https://tec.openplanner.team/stops/N561aha"], ["https://tec.openplanner.team/stops/N145aka", "https://tec.openplanner.team/stops/N150aab"], ["https://tec.openplanner.team/stops/H1gg115a", "https://tec.openplanner.team/stops/H1ry136a"], ["https://tec.openplanner.team/stops/N106anb", "https://tec.openplanner.team/stops/N106aob"], ["https://tec.openplanner.team/stops/Bvxgegl1", "https://tec.openplanner.team/stops/Bvxgeta2"], ["https://tec.openplanner.team/stops/Csyjumo1", "https://tec.openplanner.team/stops/Csysans1"], ["https://tec.openplanner.team/stops/LNEgaul3", "https://tec.openplanner.team/stops/LNEvand1"], ["https://tec.openplanner.team/stops/X644ada", "https://tec.openplanner.team/stops/X644adb"], ["https://tec.openplanner.team/stops/X826abb", "https://tec.openplanner.team/stops/X860aba"], ["https://tec.openplanner.team/stops/H4bh102b", "https://tec.openplanner.team/stops/H4bh105a"], ["https://tec.openplanner.team/stops/Ljegoss2", "https://tec.openplanner.team/stops/Ljemabo1"], ["https://tec.openplanner.team/stops/Lagfour2", "https://tec.openplanner.team/stops/Llgbell1"], ["https://tec.openplanner.team/stops/X342ahb", "https://tec.openplanner.team/stops/X369aab"], ["https://tec.openplanner.team/stops/Bperwil1", "https://tec.openplanner.team/stops/N519acb"], ["https://tec.openplanner.team/stops/X601bya", "https://tec.openplanner.team/stops/X601cpa"], ["https://tec.openplanner.team/stops/H1he102a", "https://tec.openplanner.team/stops/H1mh114a"], ["https://tec.openplanner.team/stops/LRRelec2", "https://tec.openplanner.team/stops/LRRpost2"], ["https://tec.openplanner.team/stops/Cmtfoye1", "https://tec.openplanner.team/stops/Cmtfoye2"], ["https://tec.openplanner.team/stops/Barqpwa1", "https://tec.openplanner.team/stops/Barqpwa2"], ["https://tec.openplanner.team/stops/LWEbr051", "https://tec.openplanner.team/stops/LWEbruy2"], ["https://tec.openplanner.team/stops/LFAwale1", "https://tec.openplanner.team/stops/LTOcime2"], ["https://tec.openplanner.team/stops/X636akb", "https://tec.openplanner.team/stops/X636bca"], ["https://tec.openplanner.team/stops/Llgbavi1", "https://tec.openplanner.team/stops/Llgongr2"], ["https://tec.openplanner.team/stops/Cprgran1", "https://tec.openplanner.team/stops/NC11aoa"], ["https://tec.openplanner.team/stops/LFTeg--1", "https://tec.openplanner.team/stops/LWZponh2"], ["https://tec.openplanner.team/stops/N124aab", "https://tec.openplanner.team/stops/N124acb"], ["https://tec.openplanner.team/stops/H4bh103a", "https://tec.openplanner.team/stops/H4bh105a"], ["https://tec.openplanner.team/stops/Brixape1", "https://tec.openplanner.team/stops/Brixble5"], ["https://tec.openplanner.team/stops/X661aka", "https://tec.openplanner.team/stops/X661amb"], ["https://tec.openplanner.team/stops/Bwaunce1", "https://tec.openplanner.team/stops/Bwaunou2"], ["https://tec.openplanner.team/stops/LSZpiro1", "https://tec.openplanner.team/stops/LWycarr1"], ["https://tec.openplanner.team/stops/N507aqa", "https://tec.openplanner.team/stops/N507aqb"], ["https://tec.openplanner.team/stops/X840aca", "https://tec.openplanner.team/stops/X840acc"], ["https://tec.openplanner.team/stops/Blhuibm1", "https://tec.openplanner.team/stops/Blhupqu1"], ["https://tec.openplanner.team/stops/Lghberl2", "https://tec.openplanner.team/stops/Lmochan2"], ["https://tec.openplanner.team/stops/LeUkehr1", "https://tec.openplanner.team/stops/LeUstad2"], ["https://tec.openplanner.team/stops/N244ada", "https://tec.openplanner.team/stops/N248aca"], ["https://tec.openplanner.team/stops/Bnivbau1", "https://tec.openplanner.team/stops/Bnivbau2"], ["https://tec.openplanner.team/stops/N551agb", "https://tec.openplanner.team/stops/N551aiy"], ["https://tec.openplanner.team/stops/Bbstmco1", "https://tec.openplanner.team/stops/Bbstrpo1"], ["https://tec.openplanner.team/stops/Cgd4ven2", "https://tec.openplanner.team/stops/Cgdcent2"], ["https://tec.openplanner.team/stops/LJetrih1", "https://tec.openplanner.team/stops/LJetrih2"], ["https://tec.openplanner.team/stops/H4cw106b", "https://tec.openplanner.team/stops/H4lz163a"], ["https://tec.openplanner.team/stops/Lagindu2", "https://tec.openplanner.team/stops/Lkithie1"], ["https://tec.openplanner.team/stops/X601cfa", "https://tec.openplanner.team/stops/X601cma"], ["https://tec.openplanner.team/stops/LLRgdma1", "https://tec.openplanner.team/stops/LLRgdma2"], ["https://tec.openplanner.team/stops/N501eib", "https://tec.openplanner.team/stops/N501kqb"], ["https://tec.openplanner.team/stops/H4ch113b", "https://tec.openplanner.team/stops/H4ch117a"], ["https://tec.openplanner.team/stops/LBevill1", "https://tec.openplanner.team/stops/LPcforg1"], ["https://tec.openplanner.team/stops/Bcrnsge1", "https://tec.openplanner.team/stops/Bsgeqpb1"], ["https://tec.openplanner.team/stops/Lhufays1", "https://tec.openplanner.team/stops/LSPastr2"], ["https://tec.openplanner.team/stops/LBachpl1", "https://tec.openplanner.team/stops/LBachpl2"], ["https://tec.openplanner.team/stops/LaSkape1", "https://tec.openplanner.team/stops/LaSneuh1"], ["https://tec.openplanner.team/stops/X738aaa", "https://tec.openplanner.team/stops/X754ata"], ["https://tec.openplanner.team/stops/LrDhind2", "https://tec.openplanner.team/stops/LrEfeck1"], ["https://tec.openplanner.team/stops/Bwatgla1", "https://tec.openplanner.team/stops/Bwatprp1"], ["https://tec.openplanner.team/stops/X717agb", "https://tec.openplanner.team/stops/X717age"], ["https://tec.openplanner.team/stops/H4fl115a", "https://tec.openplanner.team/stops/H4wi163a"], ["https://tec.openplanner.team/stops/H1qu110a", "https://tec.openplanner.team/stops/H1qu120a"], ["https://tec.openplanner.team/stops/N212agb", "https://tec.openplanner.team/stops/N212akb"], ["https://tec.openplanner.team/stops/X616aea", "https://tec.openplanner.team/stops/X624aka"], ["https://tec.openplanner.team/stops/N122afb", "https://tec.openplanner.team/stops/N305aca"], ["https://tec.openplanner.team/stops/LBabeco3", "https://tec.openplanner.team/stops/LBajean2"], ["https://tec.openplanner.team/stops/N155ahb", "https://tec.openplanner.team/stops/N160aab"], ["https://tec.openplanner.team/stops/N549agb", "https://tec.openplanner.team/stops/N549aha"], ["https://tec.openplanner.team/stops/H1mr122a", "https://tec.openplanner.team/stops/H1wi157a"], ["https://tec.openplanner.team/stops/H4mo145a", "https://tec.openplanner.team/stops/H4mo145b"], ["https://tec.openplanner.team/stops/X999abb", "https://tec.openplanner.team/stops/X999acc"], ["https://tec.openplanner.team/stops/LMoeg--2", "https://tec.openplanner.team/stops/LMoviel1"], ["https://tec.openplanner.team/stops/H2ll173b", "https://tec.openplanner.team/stops/H2ll191a"], ["https://tec.openplanner.team/stops/Ljerouy2", "https://tec.openplanner.team/stops/Ljetomb1"], ["https://tec.openplanner.team/stops/N204aka", "https://tec.openplanner.team/stops/N204alb"], ["https://tec.openplanner.team/stops/Cbbjfeu2", "https://tec.openplanner.team/stops/Cclrgiv2"], ["https://tec.openplanner.team/stops/Cjxpris2", "https://tec.openplanner.team/stops/Cmlbruy1"], ["https://tec.openplanner.team/stops/H1gr111a", "https://tec.openplanner.team/stops/H1gr113b"], ["https://tec.openplanner.team/stops/X661axb", "https://tec.openplanner.team/stops/X817afb"], ["https://tec.openplanner.team/stops/LMAgare0", "https://tec.openplanner.team/stops/LMArave1"], ["https://tec.openplanner.team/stops/LmSdorf1", "https://tec.openplanner.team/stops/LmSdorf2"], ["https://tec.openplanner.team/stops/Cvtndam2", "https://tec.openplanner.team/stops/Cvtndam3"], ["https://tec.openplanner.team/stops/X902aeb", "https://tec.openplanner.team/stops/X902ala"], ["https://tec.openplanner.team/stops/N232ana", "https://tec.openplanner.team/stops/N286aaa"], ["https://tec.openplanner.team/stops/N501ccb", "https://tec.openplanner.team/stops/N521avb"], ["https://tec.openplanner.team/stops/H5fl100b", "https://tec.openplanner.team/stops/H5wo136a"], ["https://tec.openplanner.team/stops/X802abb", "https://tec.openplanner.team/stops/X818aka"], ["https://tec.openplanner.team/stops/Cgoathe2", "https://tec.openplanner.team/stops/CMbruy2"], ["https://tec.openplanner.team/stops/LREairp2", "https://tec.openplanner.team/stops/LREsaul2"], ["https://tec.openplanner.team/stops/Lvichpl1", "https://tec.openplanner.team/stops/Lviweri2"], ["https://tec.openplanner.team/stops/LESchpl1", "https://tec.openplanner.team/stops/LESsouv1"], ["https://tec.openplanner.team/stops/H1si167a", "https://tec.openplanner.team/stops/H1vt196b"], ["https://tec.openplanner.team/stops/Cgomoul2", "https://tec.openplanner.team/stops/CMemai1"], ["https://tec.openplanner.team/stops/Llgplop2", "https://tec.openplanner.team/stops/Lvtnico*"], ["https://tec.openplanner.team/stops/Lenhouc1", "https://tec.openplanner.team/stops/Lenhouc2"], ["https://tec.openplanner.team/stops/X872aba", "https://tec.openplanner.team/stops/X873aca"], ["https://tec.openplanner.team/stops/LFChuis1", "https://tec.openplanner.team/stops/LFClage1"], ["https://tec.openplanner.team/stops/LEN183-2", "https://tec.openplanner.team/stops/LENoule1"], ["https://tec.openplanner.team/stops/LmUkape1", "https://tec.openplanner.team/stops/LmUvilz2"], ["https://tec.openplanner.team/stops/H4er124b", "https://tec.openplanner.team/stops/H4ty283a"], ["https://tec.openplanner.team/stops/N531aqa", "https://tec.openplanner.team/stops/N531aqb"], ["https://tec.openplanner.team/stops/N254aab", "https://tec.openplanner.team/stops/N570aab"], ["https://tec.openplanner.team/stops/Llglair1", "https://tec.openplanner.team/stops/Llgrema1"], ["https://tec.openplanner.team/stops/Cgobl%C3%A9r1", "https://tec.openplanner.team/stops/Cgotech2"], ["https://tec.openplanner.team/stops/X742aca", "https://tec.openplanner.team/stops/X742acb"], ["https://tec.openplanner.team/stops/X829aba", "https://tec.openplanner.team/stops/X829abb"], ["https://tec.openplanner.team/stops/Cctcoll2", "https://tec.openplanner.team/stops/Ccuhsti2"], ["https://tec.openplanner.team/stops/LON02--1", "https://tec.openplanner.team/stops/LON02--2"], ["https://tec.openplanner.team/stops/N125aba", "https://tec.openplanner.team/stops/N127aha"], ["https://tec.openplanner.team/stops/N501aqb", "https://tec.openplanner.team/stops/N501mba"], ["https://tec.openplanner.team/stops/H1hc125a", "https://tec.openplanner.team/stops/H1hc152a"], ["https://tec.openplanner.team/stops/H1po137b", "https://tec.openplanner.team/stops/H1po138a"], ["https://tec.openplanner.team/stops/H1fl136a", "https://tec.openplanner.team/stops/H1fl140a"], ["https://tec.openplanner.team/stops/LHexhav1", "https://tec.openplanner.team/stops/LHThall4"], ["https://tec.openplanner.team/stops/Lanc14v1", "https://tec.openplanner.team/stops/Lrcvill2"], ["https://tec.openplanner.team/stops/Ccogrbu1", "https://tec.openplanner.team/stops/Ccogrbu2"], ["https://tec.openplanner.team/stops/X775aha", "https://tec.openplanner.team/stops/X775ahb"], ["https://tec.openplanner.team/stops/X898aga", "https://tec.openplanner.team/stops/X898aka"], ["https://tec.openplanner.team/stops/H1ms261a", "https://tec.openplanner.team/stops/H1ms262a"], ["https://tec.openplanner.team/stops/H4bo111a", "https://tec.openplanner.team/stops/H4bo111b"], ["https://tec.openplanner.team/stops/Lhragri2", "https://tec.openplanner.team/stops/Lhrlaix2"], ["https://tec.openplanner.team/stops/LPlchpl1", "https://tec.openplanner.team/stops/LPlpomp1"], ["https://tec.openplanner.team/stops/H1je215a", "https://tec.openplanner.team/stops/H1je215b"], ["https://tec.openplanner.team/stops/X641afb", "https://tec.openplanner.team/stops/X641akb"], ["https://tec.openplanner.team/stops/H1ci102b", "https://tec.openplanner.team/stops/H1mv242a"], ["https://tec.openplanner.team/stops/H4fl115a", "https://tec.openplanner.team/stops/H4my120b"], ["https://tec.openplanner.team/stops/LPLcarr1", "https://tec.openplanner.team/stops/Lsearbo1"], ["https://tec.openplanner.team/stops/H4ty309a", "https://tec.openplanner.team/stops/H4ty332a"], ["https://tec.openplanner.team/stops/Blhugar2", "https://tec.openplanner.team/stops/Blhupcl1"], ["https://tec.openplanner.team/stops/H4ff122b", "https://tec.openplanner.team/stops/H4pp123a"], ["https://tec.openplanner.team/stops/X728aba", "https://tec.openplanner.team/stops/X729ada"], ["https://tec.openplanner.team/stops/X937ala", "https://tec.openplanner.team/stops/X945aeb"], ["https://tec.openplanner.team/stops/LBXhacb1", "https://tec.openplanner.team/stops/LMoelno1"], ["https://tec.openplanner.team/stops/H1mq198a", "https://tec.openplanner.team/stops/H1mq198b"], ["https://tec.openplanner.team/stops/N501avb", "https://tec.openplanner.team/stops/N501dcb"], ["https://tec.openplanner.team/stops/N506bmb", "https://tec.openplanner.team/stops/N506bsa"], ["https://tec.openplanner.team/stops/N528agb", "https://tec.openplanner.team/stops/N528arb"], ["https://tec.openplanner.team/stops/LVPduvi1", "https://tec.openplanner.team/stops/LVPgrot4"], ["https://tec.openplanner.team/stops/LBIcarg1", "https://tec.openplanner.team/stops/Lmlcrot*"], ["https://tec.openplanner.team/stops/Clbbonn1", "https://tec.openplanner.team/stops/H1lo120b"], ["https://tec.openplanner.team/stops/X996agb", "https://tec.openplanner.team/stops/X996aha"], ["https://tec.openplanner.team/stops/X937aca", "https://tec.openplanner.team/stops/X937aha"], ["https://tec.openplanner.team/stops/LeUhaag1", "https://tec.openplanner.team/stops/LeUhaag2"], ["https://tec.openplanner.team/stops/Bgzdgli1", "https://tec.openplanner.team/stops/Bgzdgli2"], ["https://tec.openplanner.team/stops/LTEziho1", "https://tec.openplanner.team/stops/LTEzinn1"], ["https://tec.openplanner.team/stops/H1gr118a", "https://tec.openplanner.team/stops/H1to153c"], ["https://tec.openplanner.team/stops/Lheelva1", "https://tec.openplanner.team/stops/Lheloti1"], ["https://tec.openplanner.team/stops/X547ana", "https://tec.openplanner.team/stops/X576afb"], ["https://tec.openplanner.team/stops/Cvpbifu1", "https://tec.openplanner.team/stops/Cvpcime2"], ["https://tec.openplanner.team/stops/Barcpre1", "https://tec.openplanner.team/stops/Barcpre2"], ["https://tec.openplanner.team/stops/LLOnand1", "https://tec.openplanner.team/stops/LRRbuta2"], ["https://tec.openplanner.team/stops/H1og130b", "https://tec.openplanner.team/stops/H5wo122a"], ["https://tec.openplanner.team/stops/Cfachap2", "https://tec.openplanner.team/stops/Cfaplma2"], ["https://tec.openplanner.team/stops/N509alb", "https://tec.openplanner.team/stops/N509ana"], ["https://tec.openplanner.team/stops/H1qy132b", "https://tec.openplanner.team/stops/H1qy137b"], ["https://tec.openplanner.team/stops/X949ada", "https://tec.openplanner.team/stops/X949ahb"], ["https://tec.openplanner.team/stops/Lpechin1", "https://tec.openplanner.team/stops/Lpetenn2"], ["https://tec.openplanner.team/stops/H4mo186a", "https://tec.openplanner.team/stops/H4mo188b"], ["https://tec.openplanner.team/stops/H1ms910a", "https://tec.openplanner.team/stops/H1ms914a"], ["https://tec.openplanner.team/stops/Lrcstad2", "https://tec.openplanner.team/stops/Lrctec-2"], ["https://tec.openplanner.team/stops/N501cta", "https://tec.openplanner.team/stops/N535apa"], ["https://tec.openplanner.team/stops/N230aca", "https://tec.openplanner.team/stops/N230aha"], ["https://tec.openplanner.team/stops/Brixaug3", "https://tec.openplanner.team/stops/Brixpro1"], ["https://tec.openplanner.team/stops/N131afa", "https://tec.openplanner.team/stops/N131aga"], ["https://tec.openplanner.team/stops/H3th126b", "https://tec.openplanner.team/stops/H3th127b"], ["https://tec.openplanner.team/stops/H1mq198a", "https://tec.openplanner.team/stops/H5is170a"], ["https://tec.openplanner.team/stops/Lfhweri2", "https://tec.openplanner.team/stops/Lpoprie2"], ["https://tec.openplanner.team/stops/H4hx118b", "https://tec.openplanner.team/stops/H4hx123a"], ["https://tec.openplanner.team/stops/Baudsta2", "https://tec.openplanner.team/stops/Bwbfbon1"], ["https://tec.openplanner.team/stops/Bhencha2", "https://tec.openplanner.team/stops/Bhenrcr2"], ["https://tec.openplanner.team/stops/H1hc125b", "https://tec.openplanner.team/stops/H1hc126b"], ["https://tec.openplanner.team/stops/X999asa", "https://tec.openplanner.team/stops/X999ata"], ["https://tec.openplanner.team/stops/Csbplac1", "https://tec.openplanner.team/stops/H1sa113b"], ["https://tec.openplanner.team/stops/LVNbale1", "https://tec.openplanner.team/stops/LWzwanz2"], ["https://tec.openplanner.team/stops/Cdamarc2", "https://tec.openplanner.team/stops/Cdametr2"], ["https://tec.openplanner.team/stops/LrGzent2", "https://tec.openplanner.team/stops/LsEdorf1"], ["https://tec.openplanner.team/stops/LSZmonu5", "https://tec.openplanner.team/stops/LTgcime1"], ["https://tec.openplanner.team/stops/LbUbutg1", "https://tec.openplanner.team/stops/LbUgend2"], ["https://tec.openplanner.team/stops/H1qu116a", "https://tec.openplanner.team/stops/H1qu116b"], ["https://tec.openplanner.team/stops/N553aac", "https://tec.openplanner.team/stops/N553ala"], ["https://tec.openplanner.team/stops/Cjxegli1", "https://tec.openplanner.team/stops/Cjxetri2"], ["https://tec.openplanner.team/stops/H4hu117b", "https://tec.openplanner.team/stops/H4hu122a"], ["https://tec.openplanner.team/stops/Brebgar1", "https://tec.openplanner.team/stops/Brebgar2"], ["https://tec.openplanner.team/stops/X620acb", "https://tec.openplanner.team/stops/X620adb"], ["https://tec.openplanner.team/stops/LFLgara1", "https://tec.openplanner.team/stops/LMvrabo2"], ["https://tec.openplanner.team/stops/N501gva", "https://tec.openplanner.team/stops/N501lbb"], ["https://tec.openplanner.team/stops/Ctm4che2", "https://tec.openplanner.team/stops/Ctmdema1"], ["https://tec.openplanner.team/stops/LhLbalt2", "https://tec.openplanner.team/stops/LhLdorf2"], ["https://tec.openplanner.team/stops/Cluchbl4", "https://tec.openplanner.team/stops/Clupcfe2"], ["https://tec.openplanner.team/stops/Blhufro1", "https://tec.openplanner.team/stops/Blhuibm1"], ["https://tec.openplanner.team/stops/Cgzblob2", "https://tec.openplanner.team/stops/Cthenmi2"], ["https://tec.openplanner.team/stops/Lvcchau1", "https://tec.openplanner.team/stops/Lvcchev2"], ["https://tec.openplanner.team/stops/X636aka", "https://tec.openplanner.team/stops/X649adc"], ["https://tec.openplanner.team/stops/Bvilcoq1", "https://tec.openplanner.team/stops/Bvilcoq2"], ["https://tec.openplanner.team/stops/LSemc--3", "https://tec.openplanner.team/stops/LSemc--4"], ["https://tec.openplanner.team/stops/Cdagoss1", "https://tec.openplanner.team/stops/Cmacreu1"], ["https://tec.openplanner.team/stops/N501anz", "https://tec.openplanner.team/stops/N501mba"], ["https://tec.openplanner.team/stops/H2ll172d", "https://tec.openplanner.team/stops/H2ll183b"], ["https://tec.openplanner.team/stops/N209ahb", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/H2pe161b", "https://tec.openplanner.team/stops/H2pe163a"], ["https://tec.openplanner.team/stops/X818afa", "https://tec.openplanner.team/stops/X818amb"], ["https://tec.openplanner.team/stops/LbUjost3", "https://tec.openplanner.team/stops/LhUrich2"], ["https://tec.openplanner.team/stops/X750aca", "https://tec.openplanner.team/stops/X750afa"], ["https://tec.openplanner.team/stops/Bnstlna1", "https://tec.openplanner.team/stops/Bnstver1"], ["https://tec.openplanner.team/stops/H4bo114b", "https://tec.openplanner.team/stops/H5qu158a"], ["https://tec.openplanner.team/stops/H2ca104a", "https://tec.openplanner.team/stops/H2mo133a"], ["https://tec.openplanner.team/stops/Cdacolu1", "https://tec.openplanner.team/stops/Cdapige2"], ["https://tec.openplanner.team/stops/Cgxcite2", "https://tec.openplanner.team/stops/Cgxpair1"], ["https://tec.openplanner.team/stops/X808ada", "https://tec.openplanner.team/stops/X808aea"], ["https://tec.openplanner.team/stops/Bbghpln1", "https://tec.openplanner.team/stops/Bptecar1"], ["https://tec.openplanner.team/stops/N524afa", "https://tec.openplanner.team/stops/N524aha"], ["https://tec.openplanner.team/stops/LeUnisp1", "https://tec.openplanner.team/stops/LeUschn1"], ["https://tec.openplanner.team/stops/LLRrape1", "https://tec.openplanner.team/stops/LLRvill2"], ["https://tec.openplanner.team/stops/H2ha135b", "https://tec.openplanner.team/stops/H2ha136b"], ["https://tec.openplanner.team/stops/X805acb", "https://tec.openplanner.team/stops/X805adb"], ["https://tec.openplanner.team/stops/LBBpech1", "https://tec.openplanner.team/stops/LLvferm1"], ["https://tec.openplanner.team/stops/LkEhatt2", "https://tec.openplanner.team/stops/LkEzoll2"], ["https://tec.openplanner.team/stops/Bplncba1", "https://tec.openplanner.team/stops/Clpsola2"], ["https://tec.openplanner.team/stops/H4an107b", "https://tec.openplanner.team/stops/H4cr110a"], ["https://tec.openplanner.team/stops/X992aad", "https://tec.openplanner.team/stops/X992aba"], ["https://tec.openplanner.team/stops/N106abb", "https://tec.openplanner.team/stops/N106arb"], ["https://tec.openplanner.team/stops/LJEerno1", "https://tec.openplanner.team/stops/LJEerno2"], ["https://tec.openplanner.team/stops/Bboseco2", "https://tec.openplanner.team/stops/Bgoekaz1"], ["https://tec.openplanner.team/stops/H1cu119a", "https://tec.openplanner.team/stops/H1je212b"], ["https://tec.openplanner.team/stops/Brsggde2", "https://tec.openplanner.team/stops/Bwbfbon2"], ["https://tec.openplanner.team/stops/Btstcar3", "https://tec.openplanner.team/stops/Btstcar4"], ["https://tec.openplanner.team/stops/Brixble5", "https://tec.openplanner.team/stops/Brixpao3"], ["https://tec.openplanner.team/stops/LRUhama2", "https://tec.openplanner.team/stops/LTotrui2"], ["https://tec.openplanner.team/stops/Ctrterm1", "https://tec.openplanner.team/stops/H2tz115b"], ["https://tec.openplanner.team/stops/LLteg--2", "https://tec.openplanner.team/stops/LLtwanz1"], ["https://tec.openplanner.team/stops/H4mo138b", "https://tec.openplanner.team/stops/H4mo198a"], ["https://tec.openplanner.team/stops/NL78aaa", "https://tec.openplanner.team/stops/NL78ahb"], ["https://tec.openplanner.team/stops/Bglibui1", "https://tec.openplanner.team/stops/Bgliron1"], ["https://tec.openplanner.team/stops/Ccohotv1", "https://tec.openplanner.team/stops/Ccojaur2"], ["https://tec.openplanner.team/stops/H4by117a", "https://tec.openplanner.team/stops/H4ro155b"], ["https://tec.openplanner.team/stops/LJSec--1", "https://tec.openplanner.team/stops/LJSeg--2"], ["https://tec.openplanner.team/stops/H5pe153a", "https://tec.openplanner.team/stops/H5pe153b"], ["https://tec.openplanner.team/stops/H1ge116a", "https://tec.openplanner.team/stops/H1ge116b"], ["https://tec.openplanner.team/stops/Lanplat2", "https://tec.openplanner.team/stops/Lanyser1"], ["https://tec.openplanner.team/stops/LWAathe1", "https://tec.openplanner.team/stops/LWArege1"], ["https://tec.openplanner.team/stops/H4ta116a", "https://tec.openplanner.team/stops/H4ta125a"], ["https://tec.openplanner.team/stops/LWDcime2", "https://tec.openplanner.team/stops/LWDfuma1"], ["https://tec.openplanner.team/stops/N206adb", "https://tec.openplanner.team/stops/N207acb"], ["https://tec.openplanner.team/stops/LAMecse*", "https://tec.openplanner.team/stops/LJEniho2"], ["https://tec.openplanner.team/stops/Bcrncce1", "https://tec.openplanner.team/stops/N529adb"], ["https://tec.openplanner.team/stops/N118ada", "https://tec.openplanner.team/stops/N118adb"], ["https://tec.openplanner.team/stops/H2sb232b", "https://tec.openplanner.team/stops/H3th134a"], ["https://tec.openplanner.team/stops/H4li179c", "https://tec.openplanner.team/stops/H4mb205b"], ["https://tec.openplanner.team/stops/N548agc", "https://tec.openplanner.team/stops/N569ala"], ["https://tec.openplanner.team/stops/H1te177a", "https://tec.openplanner.team/stops/H1te190b"], ["https://tec.openplanner.team/stops/H1ms258b", "https://tec.openplanner.team/stops/H1ms367a"], ["https://tec.openplanner.team/stops/X784aba", "https://tec.openplanner.team/stops/X784aja"], ["https://tec.openplanner.team/stops/LOdbuis1", "https://tec.openplanner.team/stops/LOdbuis2"], ["https://tec.openplanner.team/stops/Cjufour4", "https://tec.openplanner.team/stops/CMpuis1"], ["https://tec.openplanner.team/stops/Bchgegl2", "https://tec.openplanner.team/stops/Bchgvil2"], ["https://tec.openplanner.team/stops/N101aka", "https://tec.openplanner.team/stops/N101ala"], ["https://tec.openplanner.team/stops/X805abb", "https://tec.openplanner.team/stops/X805ajb"], ["https://tec.openplanner.team/stops/N529abc", "https://tec.openplanner.team/stops/N529aeb"], ["https://tec.openplanner.team/stops/Ljeheur1", "https://tec.openplanner.team/stops/Ljerose3"], ["https://tec.openplanner.team/stops/H1cd114b", "https://tec.openplanner.team/stops/H1to152a"], ["https://tec.openplanner.team/stops/Lstchas2", "https://tec.openplanner.team/stops/Lsteg--1"], ["https://tec.openplanner.team/stops/Clomari1", "https://tec.openplanner.team/stops/Clomari5"], ["https://tec.openplanner.team/stops/LCPpech5", "https://tec.openplanner.team/stops/LOncar-*"], ["https://tec.openplanner.team/stops/Cfcpcov2", "https://tec.openplanner.team/stops/Cfcrdpr2"], ["https://tec.openplanner.team/stops/Canbruy2", "https://tec.openplanner.team/stops/Canegbr1"], ["https://tec.openplanner.team/stops/LOTferm1", "https://tec.openplanner.team/stops/LXhvanh1"], ["https://tec.openplanner.team/stops/Lseserv2", "https://tec.openplanner.team/stops/Lseserv4"], ["https://tec.openplanner.team/stops/Bbgncnd2", "https://tec.openplanner.team/stops/Bsomtnd1"], ["https://tec.openplanner.team/stops/LSPcomm1", "https://tec.openplanner.team/stops/LSPentr1"], ["https://tec.openplanner.team/stops/Cerrver4", "https://tec.openplanner.team/stops/Cvrchap2"], ["https://tec.openplanner.team/stops/X638aoa", "https://tec.openplanner.team/stops/X638aob"], ["https://tec.openplanner.team/stops/H2ma204a", "https://tec.openplanner.team/stops/H2ma204b"], ["https://tec.openplanner.team/stops/Cmldupu1", "https://tec.openplanner.team/stops/Cmlener1"], ["https://tec.openplanner.team/stops/X642aab", "https://tec.openplanner.team/stops/X642aac"], ["https://tec.openplanner.team/stops/X891ada", "https://tec.openplanner.team/stops/X892aba"], ["https://tec.openplanner.team/stops/H5bl117b", "https://tec.openplanner.team/stops/H5bl141a"], ["https://tec.openplanner.team/stops/X750bia", "https://tec.openplanner.team/stops/X750bib"], ["https://tec.openplanner.team/stops/Clihame1", "https://tec.openplanner.team/stops/Cmeptmi6"], ["https://tec.openplanner.team/stops/Lprceri2", "https://tec.openplanner.team/stops/Lprchat1"], ["https://tec.openplanner.team/stops/H1mc126b", "https://tec.openplanner.team/stops/H1mc128a"], ["https://tec.openplanner.team/stops/Barchoc1", "https://tec.openplanner.team/stops/Barcpre1"], ["https://tec.openplanner.team/stops/Bnivbxl2", "https://tec.openplanner.team/stops/Bnivgpl2"], ["https://tec.openplanner.team/stops/X771aha", "https://tec.openplanner.team/stops/X771aia"], ["https://tec.openplanner.team/stops/N568acb", "https://tec.openplanner.team/stops/N568ada"], ["https://tec.openplanner.team/stops/Bsaubra2", "https://tec.openplanner.team/stops/Bsaumlk4"], ["https://tec.openplanner.team/stops/H1gi118a", "https://tec.openplanner.team/stops/H1gi119b"], ["https://tec.openplanner.team/stops/LFPho8a1", "https://tec.openplanner.team/stops/LFPkast1"], ["https://tec.openplanner.team/stops/H4ru242a", "https://tec.openplanner.team/stops/H4ru244a"], ["https://tec.openplanner.team/stops/H2ha134b", "https://tec.openplanner.team/stops/H2ha141c"], ["https://tec.openplanner.team/stops/LBDcarr1", "https://tec.openplanner.team/stops/LVEphar1"], ["https://tec.openplanner.team/stops/LeUjuge1", "https://tec.openplanner.team/stops/LeUwert3"], ["https://tec.openplanner.team/stops/Cctsncb2", "https://tec.openplanner.team/stops/NC02aob"], ["https://tec.openplanner.team/stops/LLxalle1", "https://tec.openplanner.team/stops/LLxmonu1"], ["https://tec.openplanner.team/stops/X346aka", "https://tec.openplanner.team/stops/X346akb"], ["https://tec.openplanner.team/stops/X623aba", "https://tec.openplanner.team/stops/X623abb"], ["https://tec.openplanner.team/stops/LmHabzw2", "https://tec.openplanner.team/stops/LmHburg1"], ["https://tec.openplanner.team/stops/X912aba", "https://tec.openplanner.team/stops/X912alb"], ["https://tec.openplanner.team/stops/Cgoboll4", "https://tec.openplanner.team/stops/Cgoulb1"], ["https://tec.openplanner.team/stops/Lsebuis2", "https://tec.openplanner.team/stops/Lsemaqu1"], ["https://tec.openplanner.team/stops/LSeec--1", "https://tec.openplanner.team/stops/LSeec--3"], ["https://tec.openplanner.team/stops/X953afa", "https://tec.openplanner.team/stops/X953afb"], ["https://tec.openplanner.team/stops/Lhufays1", "https://tec.openplanner.team/stops/Lhufays2"], ["https://tec.openplanner.team/stops/H4ae100b", "https://tec.openplanner.team/stops/H4ae101a"], ["https://tec.openplanner.team/stops/Lveabat1", "https://tec.openplanner.team/stops/Lvemull2"], ["https://tec.openplanner.team/stops/Bitrcen1", "https://tec.openplanner.team/stops/Bitreco1"], ["https://tec.openplanner.team/stops/X991akb", "https://tec.openplanner.team/stops/X993aab"], ["https://tec.openplanner.team/stops/H4wn131a", "https://tec.openplanner.team/stops/H4wn139a"], ["https://tec.openplanner.team/stops/N534aqa", "https://tec.openplanner.team/stops/N534asa"], ["https://tec.openplanner.team/stops/Bbghgli1", "https://tec.openplanner.team/stops/Bbghsta4"], ["https://tec.openplanner.team/stops/Lmodeni1", "https://tec.openplanner.team/stops/Lmopast2"], ["https://tec.openplanner.team/stops/LHexhav1", "https://tec.openplanner.team/stops/LWOruis1"], ["https://tec.openplanner.team/stops/Ljuauto1", "https://tec.openplanner.team/stops/Ljufore2"], ["https://tec.openplanner.team/stops/H4ms166a", "https://tec.openplanner.team/stops/H4ms166b"], ["https://tec.openplanner.team/stops/LAmeg--1", "https://tec.openplanner.team/stops/LAmwaut1"], ["https://tec.openplanner.team/stops/LbOre151", "https://tec.openplanner.team/stops/LbOre3b2"], ["https://tec.openplanner.team/stops/LLOcreu1", "https://tec.openplanner.team/stops/LLOspin2"], ["https://tec.openplanner.team/stops/LLrc_ip3", "https://tec.openplanner.team/stops/LLrc_ip4"], ["https://tec.openplanner.team/stops/Cthcrom2", "https://tec.openplanner.team/stops/Cthvbas4"], ["https://tec.openplanner.team/stops/H4bo117a", "https://tec.openplanner.team/stops/H4bo117b"], ["https://tec.openplanner.team/stops/H1ms360a", "https://tec.openplanner.team/stops/H1ms922a"], ["https://tec.openplanner.team/stops/LdUkreu1", "https://tec.openplanner.team/stops/LlAdorf1"], ["https://tec.openplanner.team/stops/LmNha221", "https://tec.openplanner.team/stops/LmNstaa2"], ["https://tec.openplanner.team/stops/Bgrmfon1", "https://tec.openplanner.team/stops/Bgrmfon2"], ["https://tec.openplanner.team/stops/Btstbbu2", "https://tec.openplanner.team/stops/N524ada"], ["https://tec.openplanner.team/stops/LRmhage6", "https://tec.openplanner.team/stops/LRmhage8"], ["https://tec.openplanner.team/stops/Btancre1", "https://tec.openplanner.team/stops/Btannda1"], ["https://tec.openplanner.team/stops/Lvegc--5", "https://tec.openplanner.team/stops/Lverogi2"], ["https://tec.openplanner.team/stops/LTGsucr1", "https://tec.openplanner.team/stops/LTGsucr2"], ["https://tec.openplanner.team/stops/N505ala", "https://tec.openplanner.team/stops/N579adb"], ["https://tec.openplanner.team/stops/Bpiepla2", "https://tec.openplanner.team/stops/Bpiesta2"], ["https://tec.openplanner.team/stops/LGLeg--1", "https://tec.openplanner.team/stops/LGLgeer2"], ["https://tec.openplanner.team/stops/N501hpb", "https://tec.openplanner.team/stops/N501ima"], ["https://tec.openplanner.team/stops/LHUdeni1", "https://tec.openplanner.team/stops/LHUhaum3"], ["https://tec.openplanner.team/stops/Cravign2", "https://tec.openplanner.team/stops/Cravign3"], ["https://tec.openplanner.team/stops/H1et100a", "https://tec.openplanner.team/stops/H1et102a"], ["https://tec.openplanner.team/stops/N308aaa", "https://tec.openplanner.team/stops/N308aca"], ["https://tec.openplanner.team/stops/Bbcoeco1", "https://tec.openplanner.team/stops/Bbcogar1"], ["https://tec.openplanner.team/stops/H4ft134a", "https://tec.openplanner.team/stops/H4ma200b"], ["https://tec.openplanner.team/stops/H1cu115a", "https://tec.openplanner.team/stops/H1cu128a"], ["https://tec.openplanner.team/stops/X869afa", "https://tec.openplanner.team/stops/X869afb"], ["https://tec.openplanner.team/stops/Lseruis1", "https://tec.openplanner.team/stops/Lseruis2"], ["https://tec.openplanner.team/stops/Bhanwav2", "https://tec.openplanner.team/stops/Bthscbl1"], ["https://tec.openplanner.team/stops/Ljeblum1", "https://tec.openplanner.team/stops/Ljedepa1"], ["https://tec.openplanner.team/stops/N534ava", "https://tec.openplanner.team/stops/N534avb"], ["https://tec.openplanner.team/stops/X681afa", "https://tec.openplanner.team/stops/X687aka"], ["https://tec.openplanner.team/stops/X952aga", "https://tec.openplanner.team/stops/X952aka"], ["https://tec.openplanner.team/stops/Lveherl2", "https://tec.openplanner.team/stops/Lvevieu1"], ["https://tec.openplanner.team/stops/N201afa", "https://tec.openplanner.team/stops/N201aha"], ["https://tec.openplanner.team/stops/Lhrmura2", "https://tec.openplanner.team/stops/Lhrthie2"], ["https://tec.openplanner.team/stops/N135afa", "https://tec.openplanner.team/stops/N135bbb"], ["https://tec.openplanner.team/stops/Bgoekaz1", "https://tec.openplanner.team/stops/Bgoevli2"], ["https://tec.openplanner.team/stops/N528apa", "https://tec.openplanner.team/stops/N528atb"], ["https://tec.openplanner.team/stops/X812afb", "https://tec.openplanner.team/stops/X812agb"], ["https://tec.openplanner.team/stops/LDOandr1", "https://tec.openplanner.team/stops/LDOandr4"], ["https://tec.openplanner.team/stops/H4ka178a", "https://tec.openplanner.team/stops/H4ru245a"], ["https://tec.openplanner.team/stops/Bbeamon1", "https://tec.openplanner.team/stops/Bbeasta1"], ["https://tec.openplanner.team/stops/Llgfail1", "https://tec.openplanner.team/stops/Llgfail2"], ["https://tec.openplanner.team/stops/H1hw119a", "https://tec.openplanner.team/stops/H1ls105a"], ["https://tec.openplanner.team/stops/H1bl100a", "https://tec.openplanner.team/stops/H1bl103a"], ["https://tec.openplanner.team/stops/LVEeg--2", "https://tec.openplanner.team/stops/LVEfize2"], ["https://tec.openplanner.team/stops/LWRcruc1", "https://tec.openplanner.team/stops/LWRpl--1"], ["https://tec.openplanner.team/stops/Bchgbel2", "https://tec.openplanner.team/stops/Bchgbru2"], ["https://tec.openplanner.team/stops/Cbflong1", "https://tec.openplanner.team/stops/Cbfstry1"], ["https://tec.openplanner.team/stops/H1pa112a", "https://tec.openplanner.team/stops/H1pa118b"], ["https://tec.openplanner.team/stops/H2tr245b", "https://tec.openplanner.team/stops/H2tr254b"], ["https://tec.openplanner.team/stops/N515ana", "https://tec.openplanner.team/stops/N516aoc"], ["https://tec.openplanner.team/stops/X723aja", "https://tec.openplanner.team/stops/X723akb"], ["https://tec.openplanner.team/stops/X999aib", "https://tec.openplanner.team/stops/X999apa"], ["https://tec.openplanner.team/stops/LHvvill*", "https://tec.openplanner.team/stops/LPTgran2"], ["https://tec.openplanner.team/stops/X775afa", "https://tec.openplanner.team/stops/X775ana"], ["https://tec.openplanner.team/stops/X891acb", "https://tec.openplanner.team/stops/X892abb"], ["https://tec.openplanner.team/stops/LPbeg--2", "https://tec.openplanner.team/stops/LSIcour1"], ["https://tec.openplanner.team/stops/X638amb", "https://tec.openplanner.team/stops/X652aja"], ["https://tec.openplanner.team/stops/N207aab", "https://tec.openplanner.team/stops/N207abb"], ["https://tec.openplanner.team/stops/Lmndari2", "https://tec.openplanner.team/stops/Lmndeso2"], ["https://tec.openplanner.team/stops/Lgrdeni2", "https://tec.openplanner.team/stops/Lgrlabo2"], ["https://tec.openplanner.team/stops/LBGgeer2", "https://tec.openplanner.team/stops/LBGjacq2"], ["https://tec.openplanner.team/stops/X869adb", "https://tec.openplanner.team/stops/X882agb"], ["https://tec.openplanner.team/stops/Crofrio1", "https://tec.openplanner.team/stops/Crolema3"], ["https://tec.openplanner.team/stops/H4ce100b", "https://tec.openplanner.team/stops/H4ce106b"], ["https://tec.openplanner.team/stops/LCxcouv1", "https://tec.openplanner.team/stops/LHEpriv2"], ["https://tec.openplanner.team/stops/Cflecga2", "https://tec.openplanner.team/stops/Cflsabl2"], ["https://tec.openplanner.team/stops/H4lp120a", "https://tec.openplanner.team/stops/H4lp123b"], ["https://tec.openplanner.team/stops/LmDdenk1", "https://tec.openplanner.team/stops/LmDdenk2"], ["https://tec.openplanner.team/stops/NC14aia", "https://tec.openplanner.team/stops/NC14aib"], ["https://tec.openplanner.team/stops/Canboha1", "https://tec.openplanner.team/stops/Cfosurs2"], ["https://tec.openplanner.team/stops/Barchoc2", "https://tec.openplanner.team/stops/Bgzddmo1"], ["https://tec.openplanner.team/stops/X939aab", "https://tec.openplanner.team/stops/X939abb"], ["https://tec.openplanner.team/stops/X595aga", "https://tec.openplanner.team/stops/X595agb"], ["https://tec.openplanner.team/stops/N505akb", "https://tec.openplanner.team/stops/N505ala"], ["https://tec.openplanner.team/stops/X636ajb", "https://tec.openplanner.team/stops/X636bja"], ["https://tec.openplanner.team/stops/N339aab", "https://tec.openplanner.team/stops/N368afb"], ["https://tec.openplanner.team/stops/N212abb", "https://tec.openplanner.team/stops/N212aia"], ["https://tec.openplanner.team/stops/LSzetoi1", "https://tec.openplanner.team/stops/NL57aia"], ["https://tec.openplanner.team/stops/Ccogera1", "https://tec.openplanner.team/stops/Ccogrbu2"], ["https://tec.openplanner.team/stops/X721agc", "https://tec.openplanner.team/stops/X721aib"], ["https://tec.openplanner.team/stops/H2na134b", "https://tec.openplanner.team/stops/H2na136b"], ["https://tec.openplanner.team/stops/N353ada", "https://tec.openplanner.team/stops/N353afb"], ["https://tec.openplanner.team/stops/LBDfran2", "https://tec.openplanner.team/stops/LBDtill1"], ["https://tec.openplanner.team/stops/Bmarmpr2", "https://tec.openplanner.team/stops/Btileco2"], ["https://tec.openplanner.team/stops/N894ada", "https://tec.openplanner.team/stops/N894aga"], ["https://tec.openplanner.team/stops/Bblague1", "https://tec.openplanner.team/stops/Bblaqsj2"], ["https://tec.openplanner.team/stops/LMttrou2", "https://tec.openplanner.team/stops/LSdbote1"], ["https://tec.openplanner.team/stops/Canrobe2", "https://tec.openplanner.team/stops/Canrsta1"], ["https://tec.openplanner.team/stops/Cnadrev2", "https://tec.openplanner.team/stops/NC14aeb"], ["https://tec.openplanner.team/stops/Bmsggra2", "https://tec.openplanner.team/stops/Bmsggra3"], ["https://tec.openplanner.team/stops/Canjon1", "https://tec.openplanner.team/stops/Canrsta1"], ["https://tec.openplanner.team/stops/N501dpa", "https://tec.openplanner.team/stops/N501kla"], ["https://tec.openplanner.team/stops/LCelabi1", "https://tec.openplanner.team/stops/LCewaut2"], ["https://tec.openplanner.team/stops/Livgera2", "https://tec.openplanner.team/stops/Livgera6"], ["https://tec.openplanner.team/stops/LeYberl1", "https://tec.openplanner.team/stops/LrAalte2"], ["https://tec.openplanner.team/stops/H4vx364a", "https://tec.openplanner.team/stops/H4vx365a"], ["https://tec.openplanner.team/stops/H4ir163a", "https://tec.openplanner.team/stops/H4ir163d"], ["https://tec.openplanner.team/stops/Ltichif3", "https://tec.openplanner.team/stops/Ltimarr1"], ["https://tec.openplanner.team/stops/LORcomb2", "https://tec.openplanner.team/stops/LORpave2"], ["https://tec.openplanner.team/stops/Lscchat1", "https://tec.openplanner.team/stops/Lscstan2"], ["https://tec.openplanner.team/stops/N242aga", "https://tec.openplanner.team/stops/N242agb"], ["https://tec.openplanner.team/stops/LAMhaut1", "https://tec.openplanner.team/stops/LFlabba2"], ["https://tec.openplanner.team/stops/X926abb", "https://tec.openplanner.team/stops/X926aea"], ["https://tec.openplanner.team/stops/LESchat2", "https://tec.openplanner.team/stops/LTIchev1"], ["https://tec.openplanner.team/stops/Cgrlorm2", "https://tec.openplanner.team/stops/Cjojonc2"], ["https://tec.openplanner.team/stops/X836afb", "https://tec.openplanner.team/stops/X836ahb"], ["https://tec.openplanner.team/stops/H4ka189b", "https://tec.openplanner.team/stops/H4ka194a"], ["https://tec.openplanner.team/stops/H2fy119b", "https://tec.openplanner.team/stops/H2fy123d"], ["https://tec.openplanner.team/stops/N513ana", "https://tec.openplanner.team/stops/N513axb"], ["https://tec.openplanner.team/stops/H1ch106a", "https://tec.openplanner.team/stops/H4tm140b"], ["https://tec.openplanner.team/stops/LhDkreu4", "https://tec.openplanner.team/stops/LhPheps2"], ["https://tec.openplanner.team/stops/X750bha", "https://tec.openplanner.team/stops/X750bia"], ["https://tec.openplanner.team/stops/H4ma420a", "https://tec.openplanner.team/stops/H4oq409a"], ["https://tec.openplanner.team/stops/H4ty334b", "https://tec.openplanner.team/stops/H4ty344b"], ["https://tec.openplanner.team/stops/X623acc", "https://tec.openplanner.team/stops/X623aed"], ["https://tec.openplanner.team/stops/N355ada", "https://tec.openplanner.team/stops/N894adb"], ["https://tec.openplanner.team/stops/X982apa", "https://tec.openplanner.team/stops/X982aqb"], ["https://tec.openplanner.team/stops/H1mk107b", "https://tec.openplanner.team/stops/H1mk108a"], ["https://tec.openplanner.team/stops/Creha762", "https://tec.openplanner.team/stops/Crerevi2"], ["https://tec.openplanner.team/stops/X757adb", "https://tec.openplanner.team/stops/X757aoa"], ["https://tec.openplanner.team/stops/LNCesne2", "https://tec.openplanner.team/stops/LNCrami1"], ["https://tec.openplanner.team/stops/LWEcomp1", "https://tec.openplanner.team/stops/LWEcomp2"], ["https://tec.openplanner.team/stops/N506ama", "https://tec.openplanner.team/stops/N506amb"], ["https://tec.openplanner.team/stops/H2mg143b", "https://tec.openplanner.team/stops/H2mg144a"], ["https://tec.openplanner.team/stops/Bgdhdet1", "https://tec.openplanner.team/stops/Blinbru1"], ["https://tec.openplanner.team/stops/Cvsegli1", "https://tec.openplanner.team/stops/Cvstouv1"], ["https://tec.openplanner.team/stops/N145aca", "https://tec.openplanner.team/stops/N145aea"], ["https://tec.openplanner.team/stops/Blasbh51", "https://tec.openplanner.team/stops/Blasbti1"], ["https://tec.openplanner.team/stops/X658abb", "https://tec.openplanner.team/stops/X671aba"], ["https://tec.openplanner.team/stops/Brsga151", "https://tec.openplanner.team/stops/Brsgman1"], ["https://tec.openplanner.team/stops/H1cu112b", "https://tec.openplanner.team/stops/H1cu121a"], ["https://tec.openplanner.team/stops/NC11aga", "https://tec.openplanner.team/stops/NC11ahb"], ["https://tec.openplanner.team/stops/H4ty291c", "https://tec.openplanner.team/stops/H4ty317a"], ["https://tec.openplanner.team/stops/X649aca", "https://tec.openplanner.team/stops/X649acb"], ["https://tec.openplanner.team/stops/LnE79--2", "https://tec.openplanner.team/stops/LnEkirc3"], ["https://tec.openplanner.team/stops/NL78aea", "https://tec.openplanner.team/stops/NL78afb"], ["https://tec.openplanner.team/stops/LBkbamb1", "https://tec.openplanner.team/stops/LBkbamb2"], ["https://tec.openplanner.team/stops/X871aaa", "https://tec.openplanner.team/stops/X873aca"], ["https://tec.openplanner.team/stops/H4av102a", "https://tec.openplanner.team/stops/H4av102c"], ["https://tec.openplanner.team/stops/N387abb", "https://tec.openplanner.team/stops/N387aca"], ["https://tec.openplanner.team/stops/LSZcock1", "https://tec.openplanner.team/stops/LSZpiro1"], ["https://tec.openplanner.team/stops/Bchgbru1", "https://tec.openplanner.team/stops/Btsllbv1"], ["https://tec.openplanner.team/stops/N536afb", "https://tec.openplanner.team/stops/N580aga"], ["https://tec.openplanner.team/stops/N141aca", "https://tec.openplanner.team/stops/N141aga"], ["https://tec.openplanner.team/stops/X661aib", "https://tec.openplanner.team/stops/X661aja"], ["https://tec.openplanner.team/stops/H1gh152b", "https://tec.openplanner.team/stops/H1gh162c"], ["https://tec.openplanner.team/stops/X908aib", "https://tec.openplanner.team/stops/X908ana"], ["https://tec.openplanner.team/stops/Bhantui1", "https://tec.openplanner.team/stops/Bhantui2"], ["https://tec.openplanner.team/stops/LBPxhav2", "https://tec.openplanner.team/stops/LRGderr1"], ["https://tec.openplanner.team/stops/H1au113a", "https://tec.openplanner.team/stops/H1on129a"], ["https://tec.openplanner.team/stops/LkEcoop1", "https://tec.openplanner.team/stops/LkEgss-2"], ["https://tec.openplanner.team/stops/N149aga", "https://tec.openplanner.team/stops/N149aha"], ["https://tec.openplanner.team/stops/X654abb", "https://tec.openplanner.team/stops/X654adb"], ["https://tec.openplanner.team/stops/X720aaa", "https://tec.openplanner.team/stops/X720abb"], ["https://tec.openplanner.team/stops/H2go116b", "https://tec.openplanner.team/stops/H2go118a"], ["https://tec.openplanner.team/stops/H1ch103a", "https://tec.openplanner.team/stops/H1ch103b"], ["https://tec.openplanner.team/stops/N201aca", "https://tec.openplanner.team/stops/N201ajb"], ["https://tec.openplanner.team/stops/Lhuleke1", "https://tec.openplanner.team/stops/Lhuleke2"], ["https://tec.openplanner.team/stops/LFRfagn2", "https://tec.openplanner.team/stops/LHcaube1"], ["https://tec.openplanner.team/stops/LHUgole1", "https://tec.openplanner.team/stops/LHUhaum3"], ["https://tec.openplanner.team/stops/Cfocmed2", "https://tec.openplanner.team/stops/Cfoperz2"], ["https://tec.openplanner.team/stops/Cwfplac1", "https://tec.openplanner.team/stops/Cwfplac3"], ["https://tec.openplanner.team/stops/LOTsav-1", "https://tec.openplanner.team/stops/LWieg--*"], ["https://tec.openplanner.team/stops/Lgrstou2", "https://tec.openplanner.team/stops/Llgdesa1"], ["https://tec.openplanner.team/stops/Lanadmi2", "https://tec.openplanner.team/stops/Llojeme2"], ["https://tec.openplanner.team/stops/Cmechnd2", "https://tec.openplanner.team/stops/Cmecomb1"], ["https://tec.openplanner.team/stops/X612aca", "https://tec.openplanner.team/stops/X612acb"], ["https://tec.openplanner.team/stops/H4fl113a", "https://tec.openplanner.team/stops/H4wi175a"], ["https://tec.openplanner.team/stops/Cbetrie1", "https://tec.openplanner.team/stops/N137ajb"], ["https://tec.openplanner.team/stops/H1ju120a", "https://tec.openplanner.team/stops/H1mj126b"], ["https://tec.openplanner.team/stops/Csa4mai1", "https://tec.openplanner.team/stops/Csa4mai2"], ["https://tec.openplanner.team/stops/N501gga", "https://tec.openplanner.team/stops/N501ggb"], ["https://tec.openplanner.team/stops/X921afa", "https://tec.openplanner.team/stops/X921agb"], ["https://tec.openplanner.team/stops/H1wz169a", "https://tec.openplanner.team/stops/H3bi117a"], ["https://tec.openplanner.team/stops/LEBdoct1", "https://tec.openplanner.team/stops/LEBdoct2"], ["https://tec.openplanner.team/stops/LmD163-2", "https://tec.openplanner.team/stops/LmD27--2"], ["https://tec.openplanner.team/stops/H4po129a", "https://tec.openplanner.team/stops/H4po129b"], ["https://tec.openplanner.team/stops/Llmlaro1", "https://tec.openplanner.team/stops/Llmlaro2"], ["https://tec.openplanner.team/stops/X756abb", "https://tec.openplanner.team/stops/X756aca"], ["https://tec.openplanner.team/stops/N501gba", "https://tec.openplanner.team/stops/N528ahb"], ["https://tec.openplanner.team/stops/LROchap2", "https://tec.openplanner.team/stops/LwYbrkr1"], ["https://tec.openplanner.team/stops/LAMpirk2", "https://tec.openplanner.team/stops/LAMviam2"], ["https://tec.openplanner.team/stops/X666aeb", "https://tec.openplanner.team/stops/X666aga"], ["https://tec.openplanner.team/stops/Cplelec1", "https://tec.openplanner.team/stops/Crspair2"], ["https://tec.openplanner.team/stops/Bwspcar2", "https://tec.openplanner.team/stops/Bwsppos1"], ["https://tec.openplanner.team/stops/H4ka187a", "https://tec.openplanner.team/stops/H4ty397b"], ["https://tec.openplanner.team/stops/Ladboti2", "https://tec.openplanner.team/stops/Ldicorb1"], ["https://tec.openplanner.team/stops/Lropass2", "https://tec.openplanner.team/stops/Lrovand2"], ["https://tec.openplanner.team/stops/H5rx140b", "https://tec.openplanner.team/stops/H5rx147a"], ["https://tec.openplanner.team/stops/Borbtre1", "https://tec.openplanner.team/stops/Btstbes1"], ["https://tec.openplanner.team/stops/LFreg--1", "https://tec.openplanner.team/stops/LFrfrai2"], ["https://tec.openplanner.team/stops/X615ala", "https://tec.openplanner.team/stops/X615ama"], ["https://tec.openplanner.team/stops/Lbrcard2", "https://tec.openplanner.team/stops/Lbrcygn2"], ["https://tec.openplanner.team/stops/Bvirbru2", "https://tec.openplanner.team/stops/Bvircen1"], ["https://tec.openplanner.team/stops/Bhmmlad2", "https://tec.openplanner.team/stops/Bhmmvdu1"], ["https://tec.openplanner.team/stops/N166aeb", "https://tec.openplanner.team/stops/N167aea"], ["https://tec.openplanner.team/stops/X394aaa", "https://tec.openplanner.team/stops/X394aab"], ["https://tec.openplanner.team/stops/LJedonc1", "https://tec.openplanner.team/stops/LJeeg--1"], ["https://tec.openplanner.team/stops/Crcpla1", "https://tec.openplanner.team/stops/Crcpla2"], ["https://tec.openplanner.team/stops/N506aab", "https://tec.openplanner.team/stops/N506alb"], ["https://tec.openplanner.team/stops/NC14aea", "https://tec.openplanner.team/stops/NC14agb"], ["https://tec.openplanner.team/stops/LbAhull1", "https://tec.openplanner.team/stops/LhBdorf2"], ["https://tec.openplanner.team/stops/Bbgncnd1", "https://tec.openplanner.team/stops/Blig4br2"], ["https://tec.openplanner.team/stops/N501fdb", "https://tec.openplanner.team/stops/N501lwb"], ["https://tec.openplanner.team/stops/X947afb", "https://tec.openplanner.team/stops/X948aka"], ["https://tec.openplanner.team/stops/H5bl120a", "https://tec.openplanner.team/stops/H5bl120b"], ["https://tec.openplanner.team/stops/X729aab", "https://tec.openplanner.team/stops/X729abb"], ["https://tec.openplanner.team/stops/LAWcite1", "https://tec.openplanner.team/stops/LAWcite4"], ["https://tec.openplanner.team/stops/LsVsage2", "https://tec.openplanner.team/stops/LwSschw1"], ["https://tec.openplanner.team/stops/H1qv110a", "https://tec.openplanner.team/stops/H1qv112a"], ["https://tec.openplanner.team/stops/N501dva", "https://tec.openplanner.team/stops/N501eua"], ["https://tec.openplanner.team/stops/LBbhupp1", "https://tec.openplanner.team/stops/LODamco1"], ["https://tec.openplanner.team/stops/N236aeb", "https://tec.openplanner.team/stops/N236ana"], ["https://tec.openplanner.team/stops/X641arb", "https://tec.openplanner.team/stops/X641awb"], ["https://tec.openplanner.team/stops/H1mm127a", "https://tec.openplanner.team/stops/H1vb141b"], ["https://tec.openplanner.team/stops/N532ada", "https://tec.openplanner.team/stops/N532adb"], ["https://tec.openplanner.team/stops/Llmeg--*", "https://tec.openplanner.team/stops/LWelogi1"], ["https://tec.openplanner.team/stops/LrEgend1", "https://tec.openplanner.team/stops/LrEgend2"], ["https://tec.openplanner.team/stops/H1hi122b", "https://tec.openplanner.team/stops/H1hi124a"], ["https://tec.openplanner.team/stops/Bwatcpe1", "https://tec.openplanner.team/stops/Bwatzod1"], ["https://tec.openplanner.team/stops/LWapl--2", "https://tec.openplanner.team/stops/LWapl--4"], ["https://tec.openplanner.team/stops/N331aaa", "https://tec.openplanner.team/stops/N331acb"], ["https://tec.openplanner.team/stops/H2mg150b", "https://tec.openplanner.team/stops/H2se113b"], ["https://tec.openplanner.team/stops/LWaatel1", "https://tec.openplanner.team/stops/LWaccom1"], ["https://tec.openplanner.team/stops/N501bta", "https://tec.openplanner.team/stops/N501bxa"], ["https://tec.openplanner.team/stops/H2sb224b", "https://tec.openplanner.team/stops/H2sb234b"], ["https://tec.openplanner.team/stops/Borbtre2", "https://tec.openplanner.team/stops/Btstche2"], ["https://tec.openplanner.team/stops/Cthha501", "https://tec.openplanner.team/stops/Cthha502"], ["https://tec.openplanner.team/stops/N166adb", "https://tec.openplanner.team/stops/N166aeb"], ["https://tec.openplanner.team/stops/LSomonu2", "https://tec.openplanner.team/stops/LSopost2"], ["https://tec.openplanner.team/stops/LHEbeau2", "https://tec.openplanner.team/stops/LHEches1"], ["https://tec.openplanner.team/stops/N534aya", "https://tec.openplanner.team/stops/N534cbh"], ["https://tec.openplanner.team/stops/X650abb", "https://tec.openplanner.team/stops/X650ajb"], ["https://tec.openplanner.team/stops/N531aaa", "https://tec.openplanner.team/stops/N574aca"], ["https://tec.openplanner.team/stops/LCvneu-2", "https://tec.openplanner.team/stops/LHrcarr1"], ["https://tec.openplanner.team/stops/H2lc168b", "https://tec.openplanner.team/stops/H2lc170b"], ["https://tec.openplanner.team/stops/X650aga", "https://tec.openplanner.team/stops/X650ahb"], ["https://tec.openplanner.team/stops/Lloauto2", "https://tec.openplanner.team/stops/Lloretr1"], ["https://tec.openplanner.team/stops/Bneeace2", "https://tec.openplanner.team/stops/Bneehou1"], ["https://tec.openplanner.team/stops/Lanpast1", "https://tec.openplanner.team/stops/Lanpont1"], ["https://tec.openplanner.team/stops/Llgjenn3", "https://tec.openplanner.team/stops/Llgrame2"], ["https://tec.openplanner.team/stops/LHChomb1", "https://tec.openplanner.team/stops/LHMhof-1"], ["https://tec.openplanner.team/stops/N218acc", "https://tec.openplanner.team/stops/N340aib"], ["https://tec.openplanner.team/stops/Lgrmc--2", "https://tec.openplanner.team/stops/Lgrstou2"], ["https://tec.openplanner.team/stops/H1wa146b", "https://tec.openplanner.team/stops/H1wa158a"], ["https://tec.openplanner.team/stops/LXHeg--2", "https://tec.openplanner.team/stops/LXHmart1"], ["https://tec.openplanner.team/stops/N543bpa", "https://tec.openplanner.team/stops/N543cma"], ["https://tec.openplanner.team/stops/H1ms258a", "https://tec.openplanner.team/stops/H1ms272b"], ["https://tec.openplanner.team/stops/Bixllep2", "https://tec.openplanner.team/stops/Buccdho1"], ["https://tec.openplanner.team/stops/LVnroch2", "https://tec.openplanner.team/stops/LVnrock2"], ["https://tec.openplanner.team/stops/N170aea", "https://tec.openplanner.team/stops/N170aga"], ["https://tec.openplanner.team/stops/H2mo129a", "https://tec.openplanner.team/stops/H2mo143a"], ["https://tec.openplanner.team/stops/Lhrabho1", "https://tec.openplanner.team/stops/Lvitomb1"], ["https://tec.openplanner.team/stops/Cdadest1", "https://tec.openplanner.team/stops/Cdamest2"], ["https://tec.openplanner.team/stops/N229acb", "https://tec.openplanner.team/stops/N229adb"], ["https://tec.openplanner.team/stops/Llmcoop2", "https://tec.openplanner.team/stops/Lprhodi1"], ["https://tec.openplanner.team/stops/Bbaubon1", "https://tec.openplanner.team/stops/Blilgar1"], ["https://tec.openplanner.team/stops/N501amb", "https://tec.openplanner.team/stops/N501apb"], ["https://tec.openplanner.team/stops/X638aab", "https://tec.openplanner.team/stops/X638agb"], ["https://tec.openplanner.team/stops/LCpvill1", "https://tec.openplanner.team/stops/LCpvill2"], ["https://tec.openplanner.team/stops/LdUespe2", "https://tec.openplanner.team/stops/LlAdorf1"], ["https://tec.openplanner.team/stops/N579afa", "https://tec.openplanner.team/stops/N580agb"], ["https://tec.openplanner.team/stops/H1go169a", "https://tec.openplanner.team/stops/H1qy134b"], ["https://tec.openplanner.team/stops/Brsrber1", "https://tec.openplanner.team/stops/Brsrpch2"], ["https://tec.openplanner.team/stops/N201apa", "https://tec.openplanner.team/stops/N211ala"], ["https://tec.openplanner.team/stops/H4an107a", "https://tec.openplanner.team/stops/H4ce103b"], ["https://tec.openplanner.team/stops/N501bdb", "https://tec.openplanner.team/stops/N501fjb"], ["https://tec.openplanner.team/stops/Canjon2", "https://tec.openplanner.team/stops/Canrsta1"], ["https://tec.openplanner.team/stops/N543aab", "https://tec.openplanner.team/stops/N543acb"], ["https://tec.openplanner.team/stops/H4bl105a", "https://tec.openplanner.team/stops/H4bl106a"], ["https://tec.openplanner.team/stops/LAMfrai2", "https://tec.openplanner.team/stops/LAMmc--1"], ["https://tec.openplanner.team/stops/H4fr144b", "https://tec.openplanner.team/stops/H4fr386a"], ["https://tec.openplanner.team/stops/X879ahb", "https://tec.openplanner.team/stops/X879aqb"], ["https://tec.openplanner.team/stops/LGMdrev2", "https://tec.openplanner.team/stops/LGMvoue1"], ["https://tec.openplanner.team/stops/N232bfa", "https://tec.openplanner.team/stops/N232bwb"], ["https://tec.openplanner.team/stops/H5at107b", "https://tec.openplanner.team/stops/H5at114a"], ["https://tec.openplanner.team/stops/H4he102a", "https://tec.openplanner.team/stops/H4he102b"], ["https://tec.openplanner.team/stops/LHXfont2", "https://tec.openplanner.team/stops/LHXn47-4"], ["https://tec.openplanner.team/stops/X730agb", "https://tec.openplanner.team/stops/X731akb"], ["https://tec.openplanner.team/stops/H1hw122b", "https://tec.openplanner.team/stops/H1hw125a"], ["https://tec.openplanner.team/stops/H4co106d", "https://tec.openplanner.team/stops/H4co134a"], ["https://tec.openplanner.team/stops/LCRrape2", "https://tec.openplanner.team/stops/LCRvert1"], ["https://tec.openplanner.team/stops/X782ada", "https://tec.openplanner.team/stops/X782adb"], ["https://tec.openplanner.team/stops/X736aaa", "https://tec.openplanner.team/stops/X937aja"], ["https://tec.openplanner.team/stops/X733aga", "https://tec.openplanner.team/stops/X733aka"], ["https://tec.openplanner.team/stops/H4hx119a", "https://tec.openplanner.team/stops/H4hx119b"], ["https://tec.openplanner.team/stops/NL67aba", "https://tec.openplanner.team/stops/NL72aca"], ["https://tec.openplanner.team/stops/Chppack1", "https://tec.openplanner.team/stops/Cravold1"], ["https://tec.openplanner.team/stops/N222aab", "https://tec.openplanner.team/stops/N222abb"], ["https://tec.openplanner.team/stops/LVIacac1", "https://tec.openplanner.team/stops/LVIsacr2"], ["https://tec.openplanner.team/stops/LMaburg4", "https://tec.openplanner.team/stops/LMalamb4"], ["https://tec.openplanner.team/stops/X945aea", "https://tec.openplanner.team/stops/X946agb"], ["https://tec.openplanner.team/stops/LAUabat2", "https://tec.openplanner.team/stops/LRmhage7"], ["https://tec.openplanner.team/stops/Bgembsg2", "https://tec.openplanner.team/stops/Bgemfbo2"], ["https://tec.openplanner.team/stops/LMHoha-1", "https://tec.openplanner.team/stops/LMHoha-2"], ["https://tec.openplanner.team/stops/Lbrfoid3", "https://tec.openplanner.team/stops/Lbrlama1"], ["https://tec.openplanner.team/stops/Ccogera2", "https://tec.openplanner.team/stops/Ccogrbu2"], ["https://tec.openplanner.team/stops/X740aea", "https://tec.openplanner.team/stops/X740aeb"], ["https://tec.openplanner.team/stops/N423acb", "https://tec.openplanner.team/stops/NH01abc"], ["https://tec.openplanner.team/stops/N513awa", "https://tec.openplanner.team/stops/N513awb"], ["https://tec.openplanner.team/stops/N135alb", "https://tec.openplanner.team/stops/N135aob"], ["https://tec.openplanner.team/stops/LBIfore1", "https://tec.openplanner.team/stops/Lghreyn1"], ["https://tec.openplanner.team/stops/Bbsivil3", "https://tec.openplanner.team/stops/Blilhay1"], ["https://tec.openplanner.team/stops/Cci4bra3", "https://tec.openplanner.team/stops/Ccinali1"], ["https://tec.openplanner.team/stops/LOuhalb2", "https://tec.openplanner.team/stops/LOurena2"], ["https://tec.openplanner.team/stops/N527afb", "https://tec.openplanner.team/stops/N533apa"], ["https://tec.openplanner.team/stops/X760aba", "https://tec.openplanner.team/stops/X786ahb"], ["https://tec.openplanner.team/stops/LESoneu4", "https://tec.openplanner.team/stops/LSdencl*"], ["https://tec.openplanner.team/stops/N505afb", "https://tec.openplanner.team/stops/N505aia"], ["https://tec.openplanner.team/stops/LAnchat1", "https://tec.openplanner.team/stops/LVnroch1"], ["https://tec.openplanner.team/stops/X640aaa", "https://tec.openplanner.team/stops/X640aab"], ["https://tec.openplanner.team/stops/X904aha", "https://tec.openplanner.team/stops/X904ahb"], ["https://tec.openplanner.team/stops/Bwatcbo1", "https://tec.openplanner.team/stops/Bwatcci1"], ["https://tec.openplanner.team/stops/H1eo103a", "https://tec.openplanner.team/stops/H1eo104a"], ["https://tec.openplanner.team/stops/H5at109b", "https://tec.openplanner.team/stops/H5ma185a"], ["https://tec.openplanner.team/stops/Lmocoop2", "https://tec.openplanner.team/stops/Lmopans1"], ["https://tec.openplanner.team/stops/X784aaa", "https://tec.openplanner.team/stops/X784aab"], ["https://tec.openplanner.team/stops/X890aaa", "https://tec.openplanner.team/stops/X891aaa"], ["https://tec.openplanner.team/stops/H1do113a", "https://tec.openplanner.team/stops/H1do125a"], ["https://tec.openplanner.team/stops/Bbxlner1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/LESmagr2", "https://tec.openplanner.team/stops/LESmart2"], ["https://tec.openplanner.team/stops/X261aca", "https://tec.openplanner.team/stops/X261adb"], ["https://tec.openplanner.team/stops/Ldihote2", "https://tec.openplanner.team/stops/Ldipl--2"], ["https://tec.openplanner.team/stops/LTimalv1", "https://tec.openplanner.team/stops/LTimalv2"], ["https://tec.openplanner.team/stops/NH01asb", "https://tec.openplanner.team/stops/NH01atb"], ["https://tec.openplanner.team/stops/N235aha", "https://tec.openplanner.team/stops/N235ahb"], ["https://tec.openplanner.team/stops/X650akb", "https://tec.openplanner.team/stops/X652aaa"], ["https://tec.openplanner.team/stops/LnN02--1", "https://tec.openplanner.team/stops/LnNkirc1"], ["https://tec.openplanner.team/stops/X952aeb", "https://tec.openplanner.team/stops/X953aaa"], ["https://tec.openplanner.team/stops/LeUbell1", "https://tec.openplanner.team/stops/LeUvoul1"], ["https://tec.openplanner.team/stops/Bsenbmc1", "https://tec.openplanner.team/stops/Bsenpbi2"], ["https://tec.openplanner.team/stops/X901bbb", "https://tec.openplanner.team/stops/X901bma"], ["https://tec.openplanner.team/stops/X618aba", "https://tec.openplanner.team/stops/X618ana"], ["https://tec.openplanner.team/stops/Lprchat1", "https://tec.openplanner.team/stops/Lprthie1"], ["https://tec.openplanner.team/stops/Bbryvil2", "https://tec.openplanner.team/stops/Bmarcat1"], ["https://tec.openplanner.team/stops/X801bza", "https://tec.openplanner.team/stops/X801caa"], ["https://tec.openplanner.team/stops/X902apa", "https://tec.openplanner.team/stops/X902bca"], ["https://tec.openplanner.team/stops/LRGgend2", "https://tec.openplanner.team/stops/LRGgend3"], ["https://tec.openplanner.team/stops/LLMcouv1", "https://tec.openplanner.team/stops/LLMfond1"], ["https://tec.openplanner.team/stops/Cfccol2", "https://tec.openplanner.team/stops/Cfcleco1"], ["https://tec.openplanner.team/stops/N524aaa", "https://tec.openplanner.team/stops/N524aab"], ["https://tec.openplanner.team/stops/X801bde", "https://tec.openplanner.team/stops/X801bea"], ["https://tec.openplanner.team/stops/Lmlhaut1", "https://tec.openplanner.team/stops/Lmlmaqu1"], ["https://tec.openplanner.team/stops/Cbwcab2", "https://tec.openplanner.team/stops/Cmqn5912"], ["https://tec.openplanner.team/stops/Cmtmoul1", "https://tec.openplanner.team/stops/Cmtmoul2"], ["https://tec.openplanner.team/stops/H2ha132a", "https://tec.openplanner.team/stops/H2tr247b"], ["https://tec.openplanner.team/stops/X793ana", "https://tec.openplanner.team/stops/X793aoa"], ["https://tec.openplanner.team/stops/H4ty331a", "https://tec.openplanner.team/stops/H4ty331b"], ["https://tec.openplanner.team/stops/H4hg158b", "https://tec.openplanner.team/stops/H4mv189c"], ["https://tec.openplanner.team/stops/Bllnmet1", "https://tec.openplanner.team/stops/Bllnmet2"], ["https://tec.openplanner.team/stops/LkEherg1", "https://tec.openplanner.team/stops/LkEschi1"], ["https://tec.openplanner.team/stops/Cnafont1", "https://tec.openplanner.team/stops/Cnawari2"], ["https://tec.openplanner.team/stops/Lalmitt1", "https://tec.openplanner.team/stops/LXhjupr2"], ["https://tec.openplanner.team/stops/H1sy137a", "https://tec.openplanner.team/stops/H1sy147a"], ["https://tec.openplanner.team/stops/LWaccom1", "https://tec.openplanner.team/stops/LWahetr1"], ["https://tec.openplanner.team/stops/LbUkrin1", "https://tec.openplanner.team/stops/LlSzoll1"], ["https://tec.openplanner.team/stops/Lchacie2", "https://tec.openplanner.team/stops/Lwaeau-2"], ["https://tec.openplanner.team/stops/X696aga", "https://tec.openplanner.team/stops/X696aha"], ["https://tec.openplanner.team/stops/Cbwcab1", "https://tec.openplanner.team/stops/Cbwcab2"], ["https://tec.openplanner.team/stops/H2sb234a", "https://tec.openplanner.team/stops/H2sb236d"], ["https://tec.openplanner.team/stops/X597aob", "https://tec.openplanner.team/stops/X597apb"], ["https://tec.openplanner.team/stops/H1me115a", "https://tec.openplanner.team/stops/H1pe131a"], ["https://tec.openplanner.team/stops/Bnivcol1", "https://tec.openplanner.team/stops/Bnivcol2"], ["https://tec.openplanner.team/stops/X747aaa", "https://tec.openplanner.team/stops/X754axb"], ["https://tec.openplanner.team/stops/H1ms943a", "https://tec.openplanner.team/stops/H1ni322b"], ["https://tec.openplanner.team/stops/N501cab", "https://tec.openplanner.team/stops/N501cba"], ["https://tec.openplanner.team/stops/X757aja", "https://tec.openplanner.team/stops/X757akb"], ["https://tec.openplanner.team/stops/Lhrespe1", "https://tec.openplanner.team/stops/Lhrpwan2"], ["https://tec.openplanner.team/stops/N538awa", "https://tec.openplanner.team/stops/N539aob"], ["https://tec.openplanner.team/stops/Bbeaneu4", "https://tec.openplanner.team/stops/Btlgmee1"], ["https://tec.openplanner.team/stops/X948aja", "https://tec.openplanner.team/stops/X948ajb"], ["https://tec.openplanner.team/stops/Blmlmco2", "https://tec.openplanner.team/stops/Blmlpla1"], ["https://tec.openplanner.team/stops/X796aab", "https://tec.openplanner.team/stops/X796aba"], ["https://tec.openplanner.team/stops/Lmlbaro1", "https://tec.openplanner.team/stops/Lmlpech2"], ["https://tec.openplanner.team/stops/H2ec100b", "https://tec.openplanner.team/stops/H2ec103b"], ["https://tec.openplanner.team/stops/Cchbaza2", "https://tec.openplanner.team/stops/Cchhopi4"], ["https://tec.openplanner.team/stops/X608afa", "https://tec.openplanner.team/stops/X608ava"], ["https://tec.openplanner.team/stops/Cpljonc1", "https://tec.openplanner.team/stops/Cplrmon1"], ["https://tec.openplanner.team/stops/X775ala", "https://tec.openplanner.team/stops/X775alb"], ["https://tec.openplanner.team/stops/Chhthui1", "https://tec.openplanner.team/stops/Chhthui2"], ["https://tec.openplanner.team/stops/Bquecge2", "https://tec.openplanner.team/stops/Bquevel2"], ["https://tec.openplanner.team/stops/H1cu122b", "https://tec.openplanner.team/stops/H1cu127b"], ["https://tec.openplanner.team/stops/X949afb", "https://tec.openplanner.team/stops/X949agb"], ["https://tec.openplanner.team/stops/H4pp123a", "https://tec.openplanner.team/stops/H4pp123b"], ["https://tec.openplanner.team/stops/H4tp146b", "https://tec.openplanner.team/stops/H4wp150b"], ["https://tec.openplanner.team/stops/H1bx105a", "https://tec.openplanner.team/stops/H1bx105b"], ["https://tec.openplanner.team/stops/Cprlpre2", "https://tec.openplanner.team/stops/NC44aca"], ["https://tec.openplanner.team/stops/H1lb136a", "https://tec.openplanner.team/stops/H1lb152b"], ["https://tec.openplanner.team/stops/X834aba", "https://tec.openplanner.team/stops/X834acb"], ["https://tec.openplanner.team/stops/LkOgren1", "https://tec.openplanner.team/stops/LkOzoll2"], ["https://tec.openplanner.team/stops/Cmlbuis3", "https://tec.openplanner.team/stops/Cmlcazi2"], ["https://tec.openplanner.team/stops/Livroch1", "https://tec.openplanner.team/stops/LRachen1"], ["https://tec.openplanner.team/stops/LeUdepo1", "https://tec.openplanner.team/stops/LeUrsi-*"], ["https://tec.openplanner.team/stops/N518aaa", "https://tec.openplanner.team/stops/N518aab"], ["https://tec.openplanner.team/stops/Lsmdepo1", "https://tec.openplanner.team/stops/Lvecrot2"], ["https://tec.openplanner.team/stops/LAVeg--1", "https://tec.openplanner.team/stops/LAVpequ1"], ["https://tec.openplanner.team/stops/X762aab", "https://tec.openplanner.team/stops/X762abb"], ["https://tec.openplanner.team/stops/N357acb", "https://tec.openplanner.team/stops/N357aeb"], ["https://tec.openplanner.team/stops/Cgplutt1", "https://tec.openplanner.team/stops/Cgplutt2"], ["https://tec.openplanner.team/stops/LrEdic11", "https://tec.openplanner.team/stops/LrEmeil1"], ["https://tec.openplanner.team/stops/N109aca", "https://tec.openplanner.team/stops/N109adc"], ["https://tec.openplanner.team/stops/X917ahb", "https://tec.openplanner.team/stops/X917aka"], ["https://tec.openplanner.team/stops/Lrocort2", "https://tec.openplanner.team/stops/Lroeg--4"], ["https://tec.openplanner.team/stops/H1ls130a", "https://tec.openplanner.team/stops/H1me116a"], ["https://tec.openplanner.team/stops/Cmlbruy2", "https://tec.openplanner.team/stops/Cmlrbru2"], ["https://tec.openplanner.team/stops/N508ama", "https://tec.openplanner.team/stops/N509aqb"], ["https://tec.openplanner.team/stops/H4ta116b", "https://tec.openplanner.team/stops/H4ta119b"], ["https://tec.openplanner.team/stops/X715aca", "https://tec.openplanner.team/stops/X715aea"], ["https://tec.openplanner.team/stops/X793aaa", "https://tec.openplanner.team/stops/X793acb"], ["https://tec.openplanner.team/stops/H1ho143b", "https://tec.openplanner.team/stops/H1ho143c"], ["https://tec.openplanner.team/stops/Lmlcher1", "https://tec.openplanner.team/stops/Lmlmich1"], ["https://tec.openplanner.team/stops/LrEkreu1", "https://tec.openplanner.team/stops/LrEkreu2"], ["https://tec.openplanner.team/stops/Ladppir1", "https://tec.openplanner.team/stops/Ladthom1"], ["https://tec.openplanner.team/stops/H2hg152a", "https://tec.openplanner.team/stops/H2hg160a"], ["https://tec.openplanner.team/stops/H1ba104a", "https://tec.openplanner.team/stops/H1ba119a"], ["https://tec.openplanner.team/stops/LVSeg--1", "https://tec.openplanner.team/stops/LVSpn--1"], ["https://tec.openplanner.team/stops/LHEclef1", "https://tec.openplanner.team/stops/LHEzoni2"], ["https://tec.openplanner.team/stops/X908abb", "https://tec.openplanner.team/stops/X908aca"], ["https://tec.openplanner.team/stops/H1pa105b", "https://tec.openplanner.team/stops/H1qu119a"], ["https://tec.openplanner.team/stops/LBJapol1", "https://tec.openplanner.team/stops/LBJplan1"], ["https://tec.openplanner.team/stops/NL77afa", "https://tec.openplanner.team/stops/NL77afb"], ["https://tec.openplanner.team/stops/Lvcecol1", "https://tec.openplanner.team/stops/Lvcfogu1"], ["https://tec.openplanner.team/stops/LlOdrei2", "https://tec.openplanner.team/stops/LsVfeye2"], ["https://tec.openplanner.team/stops/X801awa", "https://tec.openplanner.team/stops/X801axb"], ["https://tec.openplanner.team/stops/N534brb", "https://tec.openplanner.team/stops/N534btb"], ["https://tec.openplanner.team/stops/NL75aab", "https://tec.openplanner.team/stops/NL75abb"], ["https://tec.openplanner.team/stops/LHecime2", "https://tec.openplanner.team/stops/Lheelva2"], ["https://tec.openplanner.team/stops/LNCecdo1", "https://tec.openplanner.team/stops/LNCgene1"], ["https://tec.openplanner.team/stops/Lheneuv2", "https://tec.openplanner.team/stops/Lheneuv3"], ["https://tec.openplanner.team/stops/H1ms307a", "https://tec.openplanner.team/stops/H1ms901a"], ["https://tec.openplanner.team/stops/N106afb", "https://tec.openplanner.team/stops/N106ahb"], ["https://tec.openplanner.team/stops/H2go119b", "https://tec.openplanner.team/stops/H2go120a"], ["https://tec.openplanner.team/stops/N532aib", "https://tec.openplanner.team/stops/N532aka"], ["https://tec.openplanner.team/stops/LBXhacb1", "https://tec.openplanner.team/stops/LMovich1"], ["https://tec.openplanner.team/stops/N505adb", "https://tec.openplanner.team/stops/N505ana"], ["https://tec.openplanner.team/stops/Csepier1", "https://tec.openplanner.team/stops/Csequew1"], ["https://tec.openplanner.team/stops/X359aia", "https://tec.openplanner.team/stops/X359aka"], ["https://tec.openplanner.team/stops/Bnivlai2", "https://tec.openplanner.team/stops/Bnivpve1"], ["https://tec.openplanner.team/stops/X763agb", "https://tec.openplanner.team/stops/X786ajb"], ["https://tec.openplanner.team/stops/Lemjacq2", "https://tec.openplanner.team/stops/Lemsely1"], ["https://tec.openplanner.team/stops/X748aaa", "https://tec.openplanner.team/stops/X769abb"], ["https://tec.openplanner.team/stops/X809acb", "https://tec.openplanner.team/stops/X809ada"], ["https://tec.openplanner.team/stops/LHEgare2", "https://tec.openplanner.team/stops/LHEhv--2"], ["https://tec.openplanner.team/stops/Bmsgfon2", "https://tec.openplanner.team/stops/Bmsgrco2"], ["https://tec.openplanner.team/stops/LlA43--1", "https://tec.openplanner.team/stops/LlA43--2"], ["https://tec.openplanner.team/stops/N539ada", "https://tec.openplanner.team/stops/N539aib"], ["https://tec.openplanner.team/stops/X879aab", "https://tec.openplanner.team/stops/X879abb"], ["https://tec.openplanner.team/stops/Cctvict3", "https://tec.openplanner.team/stops/Cctvill1"], ["https://tec.openplanner.team/stops/H4ft135d", "https://tec.openplanner.team/stops/H4ta118b"], ["https://tec.openplanner.team/stops/N557aib", "https://tec.openplanner.team/stops/N562bhb"], ["https://tec.openplanner.team/stops/X720aab", "https://tec.openplanner.team/stops/X721arb"], ["https://tec.openplanner.team/stops/X390ahb", "https://tec.openplanner.team/stops/X390apb"], ["https://tec.openplanner.team/stops/Lghpara1", "https://tec.openplanner.team/stops/Lghraul1"], ["https://tec.openplanner.team/stops/N351ajc", "https://tec.openplanner.team/stops/N351asb"], ["https://tec.openplanner.team/stops/Llgcadr3", "https://tec.openplanner.team/stops/Llgelis1"], ["https://tec.openplanner.team/stops/Blilgar1", "https://tec.openplanner.team/stops/Bnivfdu1"], ["https://tec.openplanner.team/stops/X607aaa", "https://tec.openplanner.team/stops/X608aqa"], ["https://tec.openplanner.team/stops/Ckevela1", "https://tec.openplanner.team/stops/Ctaprai3"], ["https://tec.openplanner.team/stops/LBQmaye2", "https://tec.openplanner.team/stops/X223aca"], ["https://tec.openplanner.team/stops/NC14ana", "https://tec.openplanner.team/stops/NC24aga"], ["https://tec.openplanner.team/stops/N501haa", "https://tec.openplanner.team/stops/N501lzb"], ["https://tec.openplanner.team/stops/H4ve131b", "https://tec.openplanner.team/stops/H4ve132b"], ["https://tec.openplanner.team/stops/H1so131a", "https://tec.openplanner.team/stops/H1so142b"], ["https://tec.openplanner.team/stops/Bvirbie3", "https://tec.openplanner.team/stops/Bvirbie4"], ["https://tec.openplanner.team/stops/Cchcase4", "https://tec.openplanner.team/stops/Cchhopi1"], ["https://tec.openplanner.team/stops/LLNcime1", "https://tec.openplanner.team/stops/LLNogne1"], ["https://tec.openplanner.team/stops/Cmychap1", "https://tec.openplanner.team/stops/Cmychap2"], ["https://tec.openplanner.team/stops/LBIrout1", "https://tec.openplanner.team/stops/LFOmc--2"], ["https://tec.openplanner.team/stops/LBNhegg1", "https://tec.openplanner.team/stops/LBNplei2"], ["https://tec.openplanner.team/stops/N151aja", "https://tec.openplanner.team/stops/N151aka"], ["https://tec.openplanner.team/stops/X650aia", "https://tec.openplanner.team/stops/X650aka"], ["https://tec.openplanner.team/stops/H4ht172b", "https://tec.openplanner.team/stops/H4la198a"], ["https://tec.openplanner.team/stops/Llglibo3", "https://tec.openplanner.team/stops/Llglibo4"], ["https://tec.openplanner.team/stops/H2ll187a", "https://tec.openplanner.team/stops/H2ll187c"], ["https://tec.openplanner.team/stops/X615awb", "https://tec.openplanner.team/stops/X615bba"], ["https://tec.openplanner.team/stops/X993aaa", "https://tec.openplanner.team/stops/X993aab"], ["https://tec.openplanner.team/stops/X820aea", "https://tec.openplanner.team/stops/X820ama"], ["https://tec.openplanner.team/stops/LSorobe1", "https://tec.openplanner.team/stops/LSorobe2"], ["https://tec.openplanner.team/stops/Bhencha2", "https://tec.openplanner.team/stops/Bhenmal2"], ["https://tec.openplanner.team/stops/Lemambi2", "https://tec.openplanner.team/stops/Lemlacr2"], ["https://tec.openplanner.team/stops/Bbougbl2", "https://tec.openplanner.team/stops/Btannda2"], ["https://tec.openplanner.team/stops/Brixeur5", "https://tec.openplanner.team/stops/Brixrmo1"], ["https://tec.openplanner.team/stops/N539ara", "https://tec.openplanner.team/stops/N539arb"], ["https://tec.openplanner.team/stops/H4ch115b", "https://tec.openplanner.team/stops/H4ty353b"], ["https://tec.openplanner.team/stops/N542agb", "https://tec.openplanner.team/stops/N542aob"], ["https://tec.openplanner.team/stops/Lfhrogn1", "https://tec.openplanner.team/stops/Lmlguis1"], ["https://tec.openplanner.team/stops/X649aba", "https://tec.openplanner.team/stops/X649ada"], ["https://tec.openplanner.team/stops/NL77aaa", "https://tec.openplanner.team/stops/NL77adb"], ["https://tec.openplanner.team/stops/X602aka", "https://tec.openplanner.team/stops/X602alb"], ["https://tec.openplanner.team/stops/H1wa138b", "https://tec.openplanner.team/stops/H1wa158b"], ["https://tec.openplanner.team/stops/Lmnhorl1", "https://tec.openplanner.team/stops/Lmntast1"], ["https://tec.openplanner.team/stops/Bnilegl2", "https://tec.openplanner.team/stops/Bnilpco2"], ["https://tec.openplanner.team/stops/X805ajb", "https://tec.openplanner.team/stops/X833aaa"], ["https://tec.openplanner.team/stops/N141aba", "https://tec.openplanner.team/stops/N141adb"], ["https://tec.openplanner.team/stops/LTRcarr2", "https://tec.openplanner.team/stops/LTRryta2"], ["https://tec.openplanner.team/stops/N519amb", "https://tec.openplanner.team/stops/N520aeb"], ["https://tec.openplanner.team/stops/X773aca", "https://tec.openplanner.team/stops/X773ada"], ["https://tec.openplanner.team/stops/Cchoues2", "https://tec.openplanner.team/stops/Cchoues4"], ["https://tec.openplanner.team/stops/LaMmark2", "https://tec.openplanner.team/stops/LaMpost2"], ["https://tec.openplanner.team/stops/N357adb", "https://tec.openplanner.team/stops/N357afb"], ["https://tec.openplanner.team/stops/N501lxa", "https://tec.openplanner.team/stops/N501lxb"], ["https://tec.openplanner.team/stops/Lhrmine1", "https://tec.openplanner.team/stops/Lhrpepi2"], ["https://tec.openplanner.team/stops/LESathe1", "https://tec.openplanner.team/stops/LESecco2"], ["https://tec.openplanner.team/stops/H1qu102b", "https://tec.openplanner.team/stops/H1qu105a"], ["https://tec.openplanner.team/stops/Ccppn1", "https://tec.openplanner.team/stops/H2ch121b"], ["https://tec.openplanner.team/stops/NL76aea", "https://tec.openplanner.team/stops/NL76agd"], ["https://tec.openplanner.team/stops/X758aca", "https://tec.openplanner.team/stops/X758adb"], ["https://tec.openplanner.team/stops/LSGsurf1", "https://tec.openplanner.team/stops/LSkoran1"], ["https://tec.openplanner.team/stops/Llgbois2", "https://tec.openplanner.team/stops/Llgnaes1"], ["https://tec.openplanner.team/stops/X947ada", "https://tec.openplanner.team/stops/X947adb"], ["https://tec.openplanner.team/stops/LEBeg--2", "https://tec.openplanner.team/stops/LWOwonc2"], ["https://tec.openplanner.team/stops/H1he110b", "https://tec.openplanner.team/stops/H4be110a"], ["https://tec.openplanner.team/stops/Lhrdron1", "https://tec.openplanner.team/stops/Lhrthie2"], ["https://tec.openplanner.team/stops/LRuegli2", "https://tec.openplanner.team/stops/LSerout1"], ["https://tec.openplanner.team/stops/N118agb", "https://tec.openplanner.team/stops/N118aha"], ["https://tec.openplanner.team/stops/Bwlhpec2", "https://tec.openplanner.team/stops/Bwlhpmt4"], ["https://tec.openplanner.team/stops/N203abb", "https://tec.openplanner.team/stops/N560aca"], ["https://tec.openplanner.team/stops/Bpiesta2", "https://tec.openplanner.team/stops/Bzluegl1"], ["https://tec.openplanner.team/stops/X917acb", "https://tec.openplanner.team/stops/X917adb"], ["https://tec.openplanner.team/stops/N349agb", "https://tec.openplanner.team/stops/X398afa"], ["https://tec.openplanner.team/stops/H1mm128a", "https://tec.openplanner.team/stops/H1mm131b"], ["https://tec.openplanner.team/stops/Brsrabe2", "https://tec.openplanner.team/stops/Brsrpri1"], ["https://tec.openplanner.team/stops/Lprmana2", "https://tec.openplanner.team/stops/Lprspra1"], ["https://tec.openplanner.team/stops/N512akb", "https://tec.openplanner.team/stops/N512aua"], ["https://tec.openplanner.team/stops/Cgregli2", "https://tec.openplanner.team/stops/Cgrsaul2"], ["https://tec.openplanner.team/stops/NL57aeb", "https://tec.openplanner.team/stops/NL68abb"], ["https://tec.openplanner.team/stops/LBBcarr2", "https://tec.openplanner.team/stops/NL35aga"], ["https://tec.openplanner.team/stops/Cjucpui1", "https://tec.openplanner.team/stops/Cjupuis1"], ["https://tec.openplanner.team/stops/X804ala", "https://tec.openplanner.team/stops/X804alb"], ["https://tec.openplanner.team/stops/X761adb", "https://tec.openplanner.team/stops/X762aga"], ["https://tec.openplanner.team/stops/N212adb", "https://tec.openplanner.team/stops/N213aba"], ["https://tec.openplanner.team/stops/N552adb", "https://tec.openplanner.team/stops/N577aca"], ["https://tec.openplanner.team/stops/Lmoboeu2", "https://tec.openplanner.team/stops/Lmoboeu3"], ["https://tec.openplanner.team/stops/N533aab", "https://tec.openplanner.team/stops/N533afa"], ["https://tec.openplanner.team/stops/H4ga147b", "https://tec.openplanner.team/stops/H4ga162a"], ["https://tec.openplanner.team/stops/LeLkalt1", "https://tec.openplanner.team/stops/LeLkalt2"], ["https://tec.openplanner.team/stops/N538ada", "https://tec.openplanner.team/stops/N539aja"], ["https://tec.openplanner.team/stops/LkEl3252", "https://tec.openplanner.team/stops/LMsviad1"], ["https://tec.openplanner.team/stops/X609aga", "https://tec.openplanner.team/stops/X609apa"], ["https://tec.openplanner.team/stops/X982caa", "https://tec.openplanner.team/stops/X982cfa"], ["https://tec.openplanner.team/stops/Bnivphs1", "https://tec.openplanner.team/stops/Bnivphs2"], ["https://tec.openplanner.team/stops/N503ajb", "https://tec.openplanner.team/stops/N503ajc"], ["https://tec.openplanner.team/stops/Cmesafi2", "https://tec.openplanner.team/stops/Csabrun1"], ["https://tec.openplanner.team/stops/LAMceri2", "https://tec.openplanner.team/stops/LAMvert1"], ["https://tec.openplanner.team/stops/N542aoa", "https://tec.openplanner.team/stops/N542aob"], ["https://tec.openplanner.team/stops/Llgjose1", "https://tec.openplanner.team/stops/Llglys-1"], ["https://tec.openplanner.team/stops/H4ty291a", "https://tec.openplanner.team/stops/H4ty291c"], ["https://tec.openplanner.team/stops/N232aea", "https://tec.openplanner.team/stops/N232aha"], ["https://tec.openplanner.team/stops/N521aib", "https://tec.openplanner.team/stops/N521akb"], ["https://tec.openplanner.team/stops/Ccohotv2", "https://tec.openplanner.team/stops/Ccotemp2"], ["https://tec.openplanner.team/stops/N540acb", "https://tec.openplanner.team/stops/N540aha"], ["https://tec.openplanner.team/stops/LHGbeur1", "https://tec.openplanner.team/stops/LHGtron1"], ["https://tec.openplanner.team/stops/N539bea", "https://tec.openplanner.team/stops/N539beb"], ["https://tec.openplanner.team/stops/X398ada", "https://tec.openplanner.team/stops/X398aia"], ["https://tec.openplanner.team/stops/CMsartc1", "https://tec.openplanner.team/stops/CMsartc2"], ["https://tec.openplanner.team/stops/N513awb", "https://tec.openplanner.team/stops/N521adb"], ["https://tec.openplanner.team/stops/Bmrllgr2", "https://tec.openplanner.team/stops/Bpieh172"], ["https://tec.openplanner.team/stops/LToluik1", "https://tec.openplanner.team/stops/LTotrui1"], ["https://tec.openplanner.team/stops/H1et101b", "https://tec.openplanner.team/stops/H1ju121a"], ["https://tec.openplanner.team/stops/X750bmb", "https://tec.openplanner.team/stops/X784aab"], ["https://tec.openplanner.team/stops/N211afa", "https://tec.openplanner.team/stops/N219ada"], ["https://tec.openplanner.team/stops/X314aaa", "https://tec.openplanner.team/stops/X857aaa"], ["https://tec.openplanner.team/stops/LGAbois2", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://tec.openplanner.team/stops/Lligare2", "https://tec.openplanner.team/stops/Llithon2"], ["https://tec.openplanner.team/stops/N539ajb", "https://tec.openplanner.team/stops/N542akb"], ["https://tec.openplanner.team/stops/H1an102a", "https://tec.openplanner.team/stops/H1an103b"], ["https://tec.openplanner.team/stops/X601cca", "https://tec.openplanner.team/stops/X601ccb"], ["https://tec.openplanner.team/stops/X780aia", "https://tec.openplanner.team/stops/X780ajb"], ["https://tec.openplanner.team/stops/LNAbras3", "https://tec.openplanner.team/stops/LNAbras5"], ["https://tec.openplanner.team/stops/X811aka", "https://tec.openplanner.team/stops/X811ala"], ["https://tec.openplanner.team/stops/Cctbois2", "https://tec.openplanner.team/stops/Cctlimi1"], ["https://tec.openplanner.team/stops/X801abc", "https://tec.openplanner.team/stops/X801amb"], ["https://tec.openplanner.team/stops/Llgbour2", "https://tec.openplanner.team/stops/Llgcbat2"], ["https://tec.openplanner.team/stops/Bchgegl1", "https://tec.openplanner.team/stops/Bchgvil1"], ["https://tec.openplanner.team/stops/N501mya", "https://tec.openplanner.team/stops/N501myb"], ["https://tec.openplanner.team/stops/Bbiecim2", "https://tec.openplanner.team/stops/Bbiecoc1"], ["https://tec.openplanner.team/stops/H2ma204a", "https://tec.openplanner.team/stops/H2ma208b"], ["https://tec.openplanner.team/stops/H4gu108b", "https://tec.openplanner.team/stops/H4we134a"], ["https://tec.openplanner.team/stops/N531ajb", "https://tec.openplanner.team/stops/N534bwa"], ["https://tec.openplanner.team/stops/H4ch119a", "https://tec.openplanner.team/stops/H4ty299f"], ["https://tec.openplanner.team/stops/Llgbatt1", "https://tec.openplanner.team/stops/Llgelis1"], ["https://tec.openplanner.team/stops/H1as101b", "https://tec.openplanner.team/stops/H1as103d"], ["https://tec.openplanner.team/stops/Bmargve1", "https://tec.openplanner.team/stops/Bmarpla1"], ["https://tec.openplanner.team/stops/Bbchsac1", "https://tec.openplanner.team/stops/Bhtibru2"], ["https://tec.openplanner.team/stops/Lvepala5", "https://tec.openplanner.team/stops/Lverain1"], ["https://tec.openplanner.team/stops/H1nv324b", "https://tec.openplanner.team/stops/H1nv325b"], ["https://tec.openplanner.team/stops/LBgcroi3", "https://tec.openplanner.team/stops/LBgcroi5"], ["https://tec.openplanner.team/stops/Bsomtnd2", "https://tec.openplanner.team/stops/N584aka"], ["https://tec.openplanner.team/stops/LHGbeur1", "https://tec.openplanner.team/stops/LVllieg2"], ["https://tec.openplanner.team/stops/N501bpb", "https://tec.openplanner.team/stops/N501jma"], ["https://tec.openplanner.team/stops/Cglbras2", "https://tec.openplanner.team/stops/Cglfrom1"], ["https://tec.openplanner.team/stops/N201aka", "https://tec.openplanner.team/stops/N214abb"], ["https://tec.openplanner.team/stops/Cgregli2", "https://tec.openplanner.team/stops/NC14aib"], ["https://tec.openplanner.team/stops/X739aha", "https://tec.openplanner.team/stops/X911abb"], ["https://tec.openplanner.team/stops/H4be145b", "https://tec.openplanner.team/stops/H5bl122b"], ["https://tec.openplanner.team/stops/H4ho119a", "https://tec.openplanner.team/stops/H4wn127a"], ["https://tec.openplanner.team/stops/H4bo178b", "https://tec.openplanner.team/stops/H4bo179b"], ["https://tec.openplanner.team/stops/Cbmplac1", "https://tec.openplanner.team/stops/H1tt106b"], ["https://tec.openplanner.team/stops/Bhanmou1", "https://tec.openplanner.team/stops/Bhanwav1"], ["https://tec.openplanner.team/stops/LBSkann1", "https://tec.openplanner.team/stops/LBSneuv1"], ["https://tec.openplanner.team/stops/X615aqb", "https://tec.openplanner.team/stops/X615asb"], ["https://tec.openplanner.team/stops/N149ada", "https://tec.openplanner.team/stops/N149agb"], ["https://tec.openplanner.team/stops/N141aeb", "https://tec.openplanner.team/stops/N141afa"], ["https://tec.openplanner.team/stops/N544agb", "https://tec.openplanner.team/stops/N547abb"], ["https://tec.openplanner.team/stops/LNCchau1", "https://tec.openplanner.team/stops/LNCtour1"], ["https://tec.openplanner.team/stops/H4ty294a", "https://tec.openplanner.team/stops/H4ty346a"], ["https://tec.openplanner.team/stops/Lselimi1", "https://tec.openplanner.team/stops/Lsestap3"], ["https://tec.openplanner.team/stops/N141ala", "https://tec.openplanner.team/stops/N146aba"], ["https://tec.openplanner.team/stops/N353aab", "https://tec.openplanner.team/stops/N353aeb"], ["https://tec.openplanner.team/stops/N161afa", "https://tec.openplanner.team/stops/N162afb"], ["https://tec.openplanner.team/stops/H4ce107a", "https://tec.openplanner.team/stops/H4or113a"], ["https://tec.openplanner.team/stops/LHDpota2", "https://tec.openplanner.team/stops/LLmetat1"], ["https://tec.openplanner.team/stops/X658agc", "https://tec.openplanner.team/stops/X658aha"], ["https://tec.openplanner.team/stops/X625aba", "https://tec.openplanner.team/stops/X625afb"], ["https://tec.openplanner.team/stops/H1ms272a", "https://tec.openplanner.team/stops/H1ss349b"], ["https://tec.openplanner.team/stops/H1ob328b", "https://tec.openplanner.team/stops/H1sd346a"], ["https://tec.openplanner.team/stops/Brsg7fo1", "https://tec.openplanner.team/stops/Brsgfon2"], ["https://tec.openplanner.team/stops/X912afa", "https://tec.openplanner.team/stops/X912aha"], ["https://tec.openplanner.team/stops/H1cu126a", "https://tec.openplanner.team/stops/H1je218b"], ["https://tec.openplanner.team/stops/X729aca", "https://tec.openplanner.team/stops/X748abb"], ["https://tec.openplanner.team/stops/Lhubouq2", "https://tec.openplanner.team/stops/Lhucime1"], ["https://tec.openplanner.team/stops/Lcefoxh1", "https://tec.openplanner.team/stops/Lcehipp2"], ["https://tec.openplanner.team/stops/Bnodcab1", "https://tec.openplanner.team/stops/Bnodcab2"], ["https://tec.openplanner.team/stops/LLrelec1", "https://tec.openplanner.team/stops/LLrelec2"], ["https://tec.openplanner.team/stops/Bchgbel1", "https://tec.openplanner.team/stops/Bchgpap1"], ["https://tec.openplanner.team/stops/LFEland1", "https://tec.openplanner.team/stops/X597agb"], ["https://tec.openplanner.team/stops/X611aba", "https://tec.openplanner.team/stops/X645aaa"], ["https://tec.openplanner.team/stops/N501htb", "https://tec.openplanner.team/stops/N501iub"], ["https://tec.openplanner.team/stops/LBMecol2", "https://tec.openplanner.team/stops/X982bma"], ["https://tec.openplanner.team/stops/Cbfcham1", "https://tec.openplanner.team/stops/Cbfpoti1"], ["https://tec.openplanner.team/stops/N222aea", "https://tec.openplanner.team/stops/N222aeb"], ["https://tec.openplanner.team/stops/LmD27--1", "https://tec.openplanner.team/stops/LmDhoch4"], ["https://tec.openplanner.team/stops/Lmojoan1", "https://tec.openplanner.team/stops/Lmopans1"], ["https://tec.openplanner.team/stops/H4ob110a", "https://tec.openplanner.team/stops/H4ob110b"], ["https://tec.openplanner.team/stops/LARgare4", "https://tec.openplanner.team/stops/LHAdeho1"], ["https://tec.openplanner.team/stops/X908aja", "https://tec.openplanner.team/stops/X908amb"], ["https://tec.openplanner.team/stops/X660abb", "https://tec.openplanner.team/stops/X660acb"], ["https://tec.openplanner.team/stops/Bsmgegl1", "https://tec.openplanner.team/stops/Bsmgpla1"], ["https://tec.openplanner.team/stops/Ljeblum1", "https://tec.openplanner.team/stops/Ljeespe1"], ["https://tec.openplanner.team/stops/Bwatceg1", "https://tec.openplanner.team/stops/Bwatcpl2"], ["https://tec.openplanner.team/stops/X608apa", "https://tec.openplanner.team/stops/X608aua"], ["https://tec.openplanner.team/stops/H5at122a", "https://tec.openplanner.team/stops/H5ma185b"], ["https://tec.openplanner.team/stops/Bottcli2", "https://tec.openplanner.team/stops/Bottegl1"], ["https://tec.openplanner.team/stops/N525aib", "https://tec.openplanner.team/stops/N525bab"], ["https://tec.openplanner.team/stops/LMIeg--1", "https://tec.openplanner.team/stops/LMIeg--2"], ["https://tec.openplanner.team/stops/H1gr112a", "https://tec.openplanner.team/stops/H1gr116b"], ["https://tec.openplanner.team/stops/N521aqa", "https://tec.openplanner.team/stops/N521arb"], ["https://tec.openplanner.team/stops/LVncarr2", "https://tec.openplanner.team/stops/LVnourt3"], ["https://tec.openplanner.team/stops/LhZkape2", "https://tec.openplanner.team/stops/LlSbuch1"], ["https://tec.openplanner.team/stops/LAUhost2", "https://tec.openplanner.team/stops/LAUpind1"], ["https://tec.openplanner.team/stops/LElcent2", "https://tec.openplanner.team/stops/LElverl1"], ["https://tec.openplanner.team/stops/Ctabaty2", "https://tec.openplanner.team/stops/Ctapn2"], ["https://tec.openplanner.team/stops/LbOhoff1", "https://tec.openplanner.team/stops/LbOhoff2"], ["https://tec.openplanner.team/stops/N230ada", "https://tec.openplanner.team/stops/N230aeb"], ["https://tec.openplanner.team/stops/NR10aab", "https://tec.openplanner.team/stops/NR21aeb"], ["https://tec.openplanner.team/stops/X753aba", "https://tec.openplanner.team/stops/X753abb"], ["https://tec.openplanner.team/stops/LAncoup1", "https://tec.openplanner.team/stops/LAncoup2"], ["https://tec.openplanner.team/stops/Cmapeet1", "https://tec.openplanner.team/stops/Cmapeet2"], ["https://tec.openplanner.team/stops/LPoneuf1", "https://tec.openplanner.team/stops/LSZdepo1"], ["https://tec.openplanner.team/stops/LETfort2", "https://tec.openplanner.team/stops/LETfort3"], ["https://tec.openplanner.team/stops/LHHtill2", "https://tec.openplanner.team/stops/LVTeg--1"], ["https://tec.openplanner.team/stops/X723aba", "https://tec.openplanner.team/stops/X723aca"], ["https://tec.openplanner.team/stops/N509aob", "https://tec.openplanner.team/stops/N509asb"], ["https://tec.openplanner.team/stops/Lvc4bra2", "https://tec.openplanner.team/stops/Lvccime2"], ["https://tec.openplanner.team/stops/X858aba", "https://tec.openplanner.team/stops/X858aga"], ["https://tec.openplanner.team/stops/Cbecarr2", "https://tec.openplanner.team/stops/N162afb"], ["https://tec.openplanner.team/stops/Crebrux2", "https://tec.openplanner.team/stops/Creluth2"], ["https://tec.openplanner.team/stops/H1ro134a", "https://tec.openplanner.team/stops/H1ro139b"], ["https://tec.openplanner.team/stops/Bboupde2", "https://tec.openplanner.team/stops/Bcsemar2"], ["https://tec.openplanner.team/stops/Bnivrsa1", "https://tec.openplanner.team/stops/Bnivsba1"], ["https://tec.openplanner.team/stops/X664aja", "https://tec.openplanner.team/stops/X729aca"], ["https://tec.openplanner.team/stops/N387aaa", "https://tec.openplanner.team/stops/N387aba"], ["https://tec.openplanner.team/stops/Lflgare2", "https://tec.openplanner.team/stops/Lflterm1"], ["https://tec.openplanner.team/stops/H1gh149a", "https://tec.openplanner.team/stops/H1gh365a"], ["https://tec.openplanner.team/stops/H4mv193b", "https://tec.openplanner.team/stops/H4va234b"], ["https://tec.openplanner.team/stops/Cgocnor4", "https://tec.openplanner.team/stops/Cjuapca2"], ["https://tec.openplanner.team/stops/LrUlasc2", "https://tec.openplanner.team/stops/LrUwenz2"], ["https://tec.openplanner.team/stops/H1mb127b", "https://tec.openplanner.team/stops/H1mb128b"], ["https://tec.openplanner.team/stops/H2ec108a", "https://tec.openplanner.team/stops/H2ec110a"], ["https://tec.openplanner.team/stops/X941aaa", "https://tec.openplanner.team/stops/X948ata"], ["https://tec.openplanner.team/stops/H1ju119a", "https://tec.openplanner.team/stops/H1mj126a"], ["https://tec.openplanner.team/stops/Llgjoie3", "https://tec.openplanner.team/stops/Llgmako2"], ["https://tec.openplanner.team/stops/X741aab", "https://tec.openplanner.team/stops/X741afa"], ["https://tec.openplanner.team/stops/Cmmecol1", "https://tec.openplanner.team/stops/Cmmegli3"], ["https://tec.openplanner.team/stops/X793aeb", "https://tec.openplanner.team/stops/X793afc"], ["https://tec.openplanner.team/stops/H4mo193b", "https://tec.openplanner.team/stops/H4mo206b"], ["https://tec.openplanner.team/stops/X615alb", "https://tec.openplanner.team/stops/X615amb"], ["https://tec.openplanner.team/stops/LGLchap1", "https://tec.openplanner.team/stops/LGLgare*"], ["https://tec.openplanner.team/stops/H1pd146a", "https://tec.openplanner.team/stops/H1wg127a"], ["https://tec.openplanner.team/stops/N236afb", "https://tec.openplanner.team/stops/N241aca"], ["https://tec.openplanner.team/stops/H2pr114a", "https://tec.openplanner.team/stops/H2pr119b"], ["https://tec.openplanner.team/stops/LLteg--2", "https://tec.openplanner.team/stops/NL57ajb"], ["https://tec.openplanner.team/stops/Crofrio1", "https://tec.openplanner.team/stops/Croplom2"], ["https://tec.openplanner.team/stops/X995aaa", "https://tec.openplanner.team/stops/X995abb"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N331agb"], ["https://tec.openplanner.team/stops/X780agb", "https://tec.openplanner.team/stops/X780aib"], ["https://tec.openplanner.team/stops/Canboha1", "https://tec.openplanner.team/stops/Cptrebe1"], ["https://tec.openplanner.team/stops/Cgrgrce2", "https://tec.openplanner.team/stops/N160afa"], ["https://tec.openplanner.team/stops/NL79aab", "https://tec.openplanner.team/stops/NL81aeb"], ["https://tec.openplanner.team/stops/H4ce103a", "https://tec.openplanner.team/stops/H4ce108a"], ["https://tec.openplanner.team/stops/NC24aja", "https://tec.openplanner.team/stops/NC24aka"], ["https://tec.openplanner.team/stops/X661asa", "https://tec.openplanner.team/stops/X661bbb"], ["https://tec.openplanner.team/stops/Llgfusc6", "https://tec.openplanner.team/stops/Llgwall1"], ["https://tec.openplanner.team/stops/Cjufauv1", "https://tec.openplanner.team/stops/Cjuvign2"], ["https://tec.openplanner.team/stops/LOcgdro1", "https://tec.openplanner.team/stops/LOchalo1"], ["https://tec.openplanner.team/stops/X661afa", "https://tec.openplanner.team/stops/X661aga"], ["https://tec.openplanner.team/stops/Crewaha1", "https://tec.openplanner.team/stops/Crewatb1"], ["https://tec.openplanner.team/stops/N150aea", "https://tec.openplanner.team/stops/N150aec"], ["https://tec.openplanner.team/stops/H2mm136a", "https://tec.openplanner.team/stops/H2mm144a"], ["https://tec.openplanner.team/stops/Bnilpco2", "https://tec.openplanner.team/stops/Bnilwal1"], ["https://tec.openplanner.team/stops/LHMcruc1", "https://tec.openplanner.team/stops/LMNswar2"], ["https://tec.openplanner.team/stops/LFPdeme1", "https://tec.openplanner.team/stops/LFPloob1"], ["https://tec.openplanner.team/stops/Cflecga1", "https://tec.openplanner.team/stops/Cflsabl1"], ["https://tec.openplanner.team/stops/NL74aga", "https://tec.openplanner.team/stops/NL75abb"], ["https://tec.openplanner.team/stops/X790aia", "https://tec.openplanner.team/stops/X790ajb"], ["https://tec.openplanner.team/stops/Cstcent1", "https://tec.openplanner.team/stops/Cstplac1"], ["https://tec.openplanner.team/stops/LJUxhen1", "https://tec.openplanner.team/stops/LJUxhen2"], ["https://tec.openplanner.team/stops/H1ma233a", "https://tec.openplanner.team/stops/H1ma234a"], ["https://tec.openplanner.team/stops/N351aqb", "https://tec.openplanner.team/stops/N351arb"], ["https://tec.openplanner.team/stops/LbUjost1", "https://tec.openplanner.team/stops/LbUjost4"], ["https://tec.openplanner.team/stops/H4bx108b", "https://tec.openplanner.team/stops/H4bx167a"], ["https://tec.openplanner.team/stops/X561aaa", "https://tec.openplanner.team/stops/X576afa"], ["https://tec.openplanner.team/stops/N501apa", "https://tec.openplanner.team/stops/N501apb"], ["https://tec.openplanner.team/stops/H1ne143b", "https://tec.openplanner.team/stops/H3so177a"], ["https://tec.openplanner.team/stops/N501daa", "https://tec.openplanner.team/stops/N528aka"], ["https://tec.openplanner.team/stops/LAYgare1", "https://tec.openplanner.team/stops/LAYpl--1"], ["https://tec.openplanner.team/stops/LLefali1", "https://tec.openplanner.team/stops/LODarbr1"], ["https://tec.openplanner.team/stops/X878aca", "https://tec.openplanner.team/stops/X898aab"], ["https://tec.openplanner.team/stops/H4vx361a", "https://tec.openplanner.team/stops/H4vx365a"], ["https://tec.openplanner.team/stops/H2mg150b", "https://tec.openplanner.team/stops/H2mg153a"], ["https://tec.openplanner.team/stops/Bbstpon2", "https://tec.openplanner.team/stops/Bbststa2"], ["https://tec.openplanner.team/stops/X637aob", "https://tec.openplanner.team/stops/X638aqb"], ["https://tec.openplanner.team/stops/LAMecse*", "https://tec.openplanner.team/stops/LVLf37-2"], ["https://tec.openplanner.team/stops/LSZarbe2", "https://tec.openplanner.team/stops/LTgvill1"], ["https://tec.openplanner.team/stops/X542aaa", "https://tec.openplanner.team/stops/X750ayb"], ["https://tec.openplanner.team/stops/X760afa", "https://tec.openplanner.team/stops/X760agb"], ["https://tec.openplanner.team/stops/LaAlinz1", "https://tec.openplanner.team/stops/LkOaugu2"], ["https://tec.openplanner.team/stops/LSsaxhe1", "https://tec.openplanner.team/stops/LSseg--1"], ["https://tec.openplanner.team/stops/X641ada", "https://tec.openplanner.team/stops/X641akb"], ["https://tec.openplanner.team/stops/H4vx363b", "https://tec.openplanner.team/stops/H4vx366b"], ["https://tec.openplanner.team/stops/N357abb", "https://tec.openplanner.team/stops/N988aab"], ["https://tec.openplanner.team/stops/N120add", "https://tec.openplanner.team/stops/N120aod"], ["https://tec.openplanner.team/stops/Btslhau1", "https://tec.openplanner.team/stops/Btslhau2"], ["https://tec.openplanner.team/stops/LXobaty1", "https://tec.openplanner.team/stops/LXobaty3"], ["https://tec.openplanner.team/stops/X901afb", "https://tec.openplanner.team/stops/X902bab"], ["https://tec.openplanner.team/stops/LnIkirc1", "https://tec.openplanner.team/stops/LnIkirc2"], ["https://tec.openplanner.team/stops/Lmndeso1", "https://tec.openplanner.team/stops/Lmndeso2"], ["https://tec.openplanner.team/stops/Lvehv--1", "https://tec.openplanner.team/stops/Lvehv--4"], ["https://tec.openplanner.team/stops/H4ct111a", "https://tec.openplanner.team/stops/H5bs104a"], ["https://tec.openplanner.team/stops/Cstbasc1", "https://tec.openplanner.team/stops/Cstgare2"], ["https://tec.openplanner.team/stops/X641aba", "https://tec.openplanner.team/stops/X641aib"], ["https://tec.openplanner.team/stops/Llgjenn4", "https://tec.openplanner.team/stops/Llgrame1"], ["https://tec.openplanner.team/stops/Cwfmonu2", "https://tec.openplanner.team/stops/Cwfplac3"], ["https://tec.openplanner.team/stops/Cmogtri1", "https://tec.openplanner.team/stops/Cmoscap2"], ["https://tec.openplanner.team/stops/LmTzoll1", "https://tec.openplanner.team/stops/LtEnach2"], ["https://tec.openplanner.team/stops/N501ata", "https://tec.openplanner.team/stops/N527aeb"], ["https://tec.openplanner.team/stops/Bgemcro1", "https://tec.openplanner.team/stops/Bgemman1"], ["https://tec.openplanner.team/stops/Bohnrsc1", "https://tec.openplanner.team/stops/Bohnrsc2"], ["https://tec.openplanner.team/stops/Ccuoise1", "https://tec.openplanner.team/stops/Ccutrav5"], ["https://tec.openplanner.team/stops/LENaout1", "https://tec.openplanner.team/stops/LENtour2"], ["https://tec.openplanner.team/stops/Lsmdams2", "https://tec.openplanner.team/stops/Lsmgdry1"], ["https://tec.openplanner.team/stops/LNCmada2", "https://tec.openplanner.team/stops/LNCsart2"], ["https://tec.openplanner.team/stops/Ctucour1", "https://tec.openplanner.team/stops/Ctufleu1"], ["https://tec.openplanner.team/stops/X670abb", "https://tec.openplanner.team/stops/X670acb"], ["https://tec.openplanner.team/stops/H1ms262a", "https://tec.openplanner.team/stops/H1ms362a"], ["https://tec.openplanner.team/stops/LmD163-1", "https://tec.openplanner.team/stops/LmDhoch1"], ["https://tec.openplanner.team/stops/X791aab", "https://tec.openplanner.team/stops/X791acb"], ["https://tec.openplanner.team/stops/LBvviem3", "https://tec.openplanner.team/stops/LVMchpl1"], ["https://tec.openplanner.team/stops/X717ada", "https://tec.openplanner.team/stops/X717adb"], ["https://tec.openplanner.team/stops/LSGcent2", "https://tec.openplanner.team/stops/LSGec--2"], ["https://tec.openplanner.team/stops/H1ms285a", "https://tec.openplanner.team/stops/H1ms364a"], ["https://tec.openplanner.team/stops/H1as103b", "https://tec.openplanner.team/stops/H1mv240b"], ["https://tec.openplanner.team/stops/X688aba", "https://tec.openplanner.team/stops/X688abb"], ["https://tec.openplanner.team/stops/Cbmviv1", "https://tec.openplanner.team/stops/Cbmviv2"], ["https://tec.openplanner.team/stops/Cmlrbru1", "https://tec.openplanner.team/stops/Cmlsart1"], ["https://tec.openplanner.team/stops/Cvpsncb1", "https://tec.openplanner.team/stops/Cvpsthu2"], ["https://tec.openplanner.team/stops/N170abb", "https://tec.openplanner.team/stops/N170afb"], ["https://tec.openplanner.team/stops/X669adb", "https://tec.openplanner.team/stops/X669aha"], ["https://tec.openplanner.team/stops/LbUwirt2", "https://tec.openplanner.team/stops/LwR140-1"], ["https://tec.openplanner.team/stops/N540aoa", "https://tec.openplanner.team/stops/N540ara"], ["https://tec.openplanner.team/stops/LHFappe2", "https://tec.openplanner.team/stops/LHFec--1"], ["https://tec.openplanner.team/stops/H4ml208b", "https://tec.openplanner.team/stops/H4ml209a"], ["https://tec.openplanner.team/stops/X789aba", "https://tec.openplanner.team/stops/X789aga"], ["https://tec.openplanner.team/stops/Lbhgare1", "https://tec.openplanner.team/stops/Lbhmc--2"], ["https://tec.openplanner.team/stops/N501knb", "https://tec.openplanner.team/stops/N501mvc"], ["https://tec.openplanner.team/stops/X901aia", "https://tec.openplanner.team/stops/X901ama"], ["https://tec.openplanner.team/stops/X724aab", "https://tec.openplanner.team/stops/X724abb"], ["https://tec.openplanner.team/stops/H1ms272a", "https://tec.openplanner.team/stops/H1ms272c"], ["https://tec.openplanner.team/stops/H2hl111b", "https://tec.openplanner.team/stops/H2sv214b"], ["https://tec.openplanner.team/stops/Bbxlmid4", "https://tec.openplanner.team/stops/H4mn100a"], ["https://tec.openplanner.team/stops/Bwatcap1", "https://tec.openplanner.team/stops/Bwatcpe1"], ["https://tec.openplanner.team/stops/H4co151a", "https://tec.openplanner.team/stops/H4wn126a"], ["https://tec.openplanner.team/stops/X601aca", "https://tec.openplanner.team/stops/X601adb"], ["https://tec.openplanner.team/stops/H1me117e", "https://tec.openplanner.team/stops/H1so141a"], ["https://tec.openplanner.team/stops/Bhanmou2", "https://tec.openplanner.team/stops/Bhanwav1"], ["https://tec.openplanner.team/stops/X718aga", "https://tec.openplanner.team/stops/X718agb"], ["https://tec.openplanner.team/stops/X364aaa", "https://tec.openplanner.team/stops/X364aba"], ["https://tec.openplanner.team/stops/N539avb", "https://tec.openplanner.team/stops/N539bcb"], ["https://tec.openplanner.team/stops/H4mx114b", "https://tec.openplanner.team/stops/H4mx120a"], ["https://tec.openplanner.team/stops/LoUhein1", "https://tec.openplanner.team/stops/LoUzent1"], ["https://tec.openplanner.team/stops/H4pe124a", "https://tec.openplanner.team/stops/H4pe125a"], ["https://tec.openplanner.team/stops/LlZkirc1", "https://tec.openplanner.team/stops/LmNha221"], ["https://tec.openplanner.team/stops/N538afa", "https://tec.openplanner.team/stops/N538ava"], ["https://tec.openplanner.team/stops/LHocroi1", "https://tec.openplanner.team/stops/LJetrih2"], ["https://tec.openplanner.team/stops/X837aja", "https://tec.openplanner.team/stops/X837ala"], ["https://tec.openplanner.team/stops/LBkcarr2", "https://tec.openplanner.team/stops/LBkgrae1"], ["https://tec.openplanner.team/stops/H5st162a", "https://tec.openplanner.team/stops/H5st164a"], ["https://tec.openplanner.team/stops/Cmccet2", "https://tec.openplanner.team/stops/Cmchai1"], ["https://tec.openplanner.team/stops/Cmlvitf1", "https://tec.openplanner.team/stops/CMvil2"], ["https://tec.openplanner.team/stops/H1et102a", "https://tec.openplanner.team/stops/H1ju121a"], ["https://tec.openplanner.team/stops/LSMtarg1", "https://tec.openplanner.team/stops/LSMtarg2"], ["https://tec.openplanner.team/stops/N122aca", "https://tec.openplanner.team/stops/N150afa"], ["https://tec.openplanner.team/stops/X663aua", "https://tec.openplanner.team/stops/X663aub"], ["https://tec.openplanner.team/stops/Bjanfer1", "https://tec.openplanner.team/stops/Bpthcai2"], ["https://tec.openplanner.team/stops/X824aha", "https://tec.openplanner.team/stops/X824ahb"], ["https://tec.openplanner.team/stops/Bndb4ch1", "https://tec.openplanner.team/stops/Bndbgar2"], ["https://tec.openplanner.team/stops/N127aea", "https://tec.openplanner.team/stops/N127aeb"], ["https://tec.openplanner.team/stops/Lvehoug2", "https://tec.openplanner.team/stops/Lvescie1"], ["https://tec.openplanner.team/stops/H4ka185a", "https://tec.openplanner.team/stops/H4ka185b"], ["https://tec.openplanner.team/stops/LeUschi1", "https://tec.openplanner.team/stops/LeUschi2"], ["https://tec.openplanner.team/stops/H1qv113a", "https://tec.openplanner.team/stops/H1qv114a"], ["https://tec.openplanner.team/stops/N534atc", "https://tec.openplanner.team/stops/N534bgb"], ["https://tec.openplanner.team/stops/LeUkabe2", "https://tec.openplanner.team/stops/LeUwais2"], ["https://tec.openplanner.team/stops/NL76anb", "https://tec.openplanner.team/stops/NL76aoa"], ["https://tec.openplanner.team/stops/Llgbuis1", "https://tec.openplanner.team/stops/Ltibell1"], ["https://tec.openplanner.team/stops/H1br121b", "https://tec.openplanner.team/stops/H1vs144a"], ["https://tec.openplanner.team/stops/N517ada", "https://tec.openplanner.team/stops/N517adc"], ["https://tec.openplanner.team/stops/H4mo191b", "https://tec.openplanner.team/stops/H4wa156a"], ["https://tec.openplanner.team/stops/LnErech2", "https://tec.openplanner.team/stops/LrEkais4"], ["https://tec.openplanner.team/stops/Cmlbras2", "https://tec.openplanner.team/stops/Cmlcent1"], ["https://tec.openplanner.team/stops/Lmieg--1", "https://tec.openplanner.team/stops/Lmigare2"], ["https://tec.openplanner.team/stops/Bblaadm1", "https://tec.openplanner.team/stops/Bblasol1"], ["https://tec.openplanner.team/stops/X601cha", "https://tec.openplanner.team/stops/X601cla"], ["https://tec.openplanner.team/stops/N352afb", "https://tec.openplanner.team/stops/N355aba"], ["https://tec.openplanner.team/stops/H4hx113b", "https://tec.openplanner.team/stops/H4hx121a"], ["https://tec.openplanner.team/stops/LREhenu1", "https://tec.openplanner.team/stops/LREraph1"], ["https://tec.openplanner.team/stops/Blsmvan2", "https://tec.openplanner.team/stops/Bpelegl3"], ["https://tec.openplanner.team/stops/LTreg--1", "https://tec.openplanner.team/stops/LTrmaro2"], ["https://tec.openplanner.team/stops/N543ahb", "https://tec.openplanner.team/stops/N543aua"], ["https://tec.openplanner.team/stops/H1lm105a", "https://tec.openplanner.team/stops/H1lm107a"], ["https://tec.openplanner.team/stops/N573acb", "https://tec.openplanner.team/stops/NC14ada"], ["https://tec.openplanner.team/stops/LOesour2", "https://tec.openplanner.team/stops/LOewaut1"], ["https://tec.openplanner.team/stops/H4ne137a", "https://tec.openplanner.team/stops/H4te249a"], ["https://tec.openplanner.team/stops/Boffegl1", "https://tec.openplanner.team/stops/NR27aba"], ["https://tec.openplanner.team/stops/LJAbois2", "https://tec.openplanner.team/stops/Lmnchal2"], ["https://tec.openplanner.team/stops/H1bu143b", "https://tec.openplanner.team/stops/H2an109b"], ["https://tec.openplanner.team/stops/H2fa101a", "https://tec.openplanner.team/stops/H2fa112b"], ["https://tec.openplanner.team/stops/H1ba108b", "https://tec.openplanner.team/stops/H1ba114b"], ["https://tec.openplanner.team/stops/N244asb", "https://tec.openplanner.team/stops/N244atb"], ["https://tec.openplanner.team/stops/H4ty286a", "https://tec.openplanner.team/stops/H4ty310a"], ["https://tec.openplanner.team/stops/Lsebeau*", "https://tec.openplanner.team/stops/Lsesabl1"], ["https://tec.openplanner.team/stops/N512apa", "https://tec.openplanner.team/stops/N512aqa"], ["https://tec.openplanner.team/stops/H1ba117a", "https://tec.openplanner.team/stops/H1ba119c"], ["https://tec.openplanner.team/stops/LSPdesc1", "https://tec.openplanner.team/stops/LSPther2"], ["https://tec.openplanner.team/stops/N141aab", "https://tec.openplanner.team/stops/N141apb"], ["https://tec.openplanner.team/stops/X788abb", "https://tec.openplanner.team/stops/X788abe"], ["https://tec.openplanner.team/stops/Lroboeg2", "https://tec.openplanner.team/stops/Lrofont*"], ["https://tec.openplanner.team/stops/Bsgeegl4", "https://tec.openplanner.team/stops/Bsgevil2"], ["https://tec.openplanner.team/stops/H1wl123a", "https://tec.openplanner.team/stops/H1wl125a"], ["https://tec.openplanner.team/stops/Lchcomm1", "https://tec.openplanner.team/stops/Lchsaeg2"], ["https://tec.openplanner.team/stops/Llgcoll1", "https://tec.openplanner.team/stops/Llgvott1"], ["https://tec.openplanner.team/stops/Buccpin1", "https://tec.openplanner.team/stops/Buccpin2"], ["https://tec.openplanner.team/stops/X903ada", "https://tec.openplanner.team/stops/X904ada"], ["https://tec.openplanner.team/stops/H1gh150b", "https://tec.openplanner.team/stops/H1gh152b"], ["https://tec.openplanner.team/stops/LRmha262", "https://tec.openplanner.team/stops/LRmkult1"], ["https://tec.openplanner.team/stops/Ctisar1", "https://tec.openplanner.team/stops/Ctisar2"], ["https://tec.openplanner.team/stops/H2mg139c", "https://tec.openplanner.team/stops/H2mg149a"], ["https://tec.openplanner.team/stops/Cmx3arb1", "https://tec.openplanner.team/stops/Cmx4che1"], ["https://tec.openplanner.team/stops/LSXbecc2", "https://tec.openplanner.team/stops/LTHturo1"], ["https://tec.openplanner.team/stops/LeUbell1", "https://tec.openplanner.team/stops/LeUfuss1"], ["https://tec.openplanner.team/stops/N562ayb", "https://tec.openplanner.team/stops/N562bfa"], ["https://tec.openplanner.team/stops/H4ty273d", "https://tec.openplanner.team/stops/H4ty333b"], ["https://tec.openplanner.team/stops/H1hl125a", "https://tec.openplanner.team/stops/H1hl125b"], ["https://tec.openplanner.team/stops/LWRferm1", "https://tec.openplanner.team/stops/LWRheyd2"], ["https://tec.openplanner.team/stops/H4bf106b", "https://tec.openplanner.team/stops/H4wp151b"], ["https://tec.openplanner.team/stops/N536aba", "https://tec.openplanner.team/stops/N536aea"], ["https://tec.openplanner.team/stops/Llgongr3", "https://tec.openplanner.team/stops/Llgoutr1"], ["https://tec.openplanner.team/stops/Lpebier2", "https://tec.openplanner.team/stops/Lpepano2"], ["https://tec.openplanner.team/stops/Bkrabhu1", "https://tec.openplanner.team/stops/Bkrawil1"], ["https://tec.openplanner.team/stops/Bwatmsj8", "https://tec.openplanner.team/stops/Bwatwsc1"], ["https://tec.openplanner.team/stops/Blanove1", "https://tec.openplanner.team/stops/LWscona1"], ["https://tec.openplanner.team/stops/N145ada", "https://tec.openplanner.team/stops/N149abb"], ["https://tec.openplanner.team/stops/N534acb", "https://tec.openplanner.team/stops/N543aga"], ["https://tec.openplanner.team/stops/N230aea", "https://tec.openplanner.team/stops/N230alb"], ["https://tec.openplanner.team/stops/LrAwald1", "https://tec.openplanner.team/stops/LrAwald2"], ["https://tec.openplanner.team/stops/H3bi106a", "https://tec.openplanner.team/stops/H3bi106b"], ["https://tec.openplanner.team/stops/X610abb", "https://tec.openplanner.team/stops/X610aea"], ["https://tec.openplanner.team/stops/LLUhotc1", "https://tec.openplanner.team/stops/LREfloh2"], ["https://tec.openplanner.team/stops/Ladegli1", "https://tec.openplanner.team/stops/Ladjuif1"], ["https://tec.openplanner.team/stops/LTIdamr1", "https://tec.openplanner.team/stops/LTIgare3"], ["https://tec.openplanner.team/stops/Clftour2", "https://tec.openplanner.team/stops/Cstmarz2"], ["https://tec.openplanner.team/stops/X542aba", "https://tec.openplanner.team/stops/X542aia"], ["https://tec.openplanner.team/stops/X926aca", "https://tec.openplanner.team/stops/X926aeb"], ["https://tec.openplanner.team/stops/N138aaa", "https://tec.openplanner.team/stops/N138aca"], ["https://tec.openplanner.team/stops/N501ilb", "https://tec.openplanner.team/stops/N501iqb"], ["https://tec.openplanner.team/stops/N501hpa", "https://tec.openplanner.team/stops/N527aeb"], ["https://tec.openplanner.team/stops/X759aaa", "https://tec.openplanner.team/stops/X837aec"], ["https://tec.openplanner.team/stops/Csoforr3", "https://tec.openplanner.team/stops/Csoforr4"], ["https://tec.openplanner.team/stops/Lougoff2", "https://tec.openplanner.team/stops/Lousimo2"], ["https://tec.openplanner.team/stops/H2go117a", "https://tec.openplanner.team/stops/H2go119a"], ["https://tec.openplanner.team/stops/H1gy113a", "https://tec.openplanner.team/stops/H5fl101a"], ["https://tec.openplanner.team/stops/N501lyb", "https://tec.openplanner.team/stops/N501mkb"], ["https://tec.openplanner.team/stops/LHmcite1", "https://tec.openplanner.team/stops/LMAgb--1"], ["https://tec.openplanner.team/stops/H4ss154a", "https://tec.openplanner.team/stops/H4ss154b"], ["https://tec.openplanner.team/stops/NL30aka", "https://tec.openplanner.team/stops/NL68aeb"], ["https://tec.openplanner.team/stops/Lfhlons2", "https://tec.openplanner.team/stops/Lfhpast1"], ["https://tec.openplanner.team/stops/LWRbomb2", "https://tec.openplanner.team/stops/LWRbomb4"], ["https://tec.openplanner.team/stops/N224agc", "https://tec.openplanner.team/stops/X224abb"], ["https://tec.openplanner.team/stops/Bmarchn1", "https://tec.openplanner.team/stops/Bmarvil1"], ["https://tec.openplanner.team/stops/H1mb137a", "https://tec.openplanner.team/stops/H1mb166a"], ["https://tec.openplanner.team/stops/H1gh144b", "https://tec.openplanner.team/stops/H1je211a"], ["https://tec.openplanner.team/stops/N561aia", "https://tec.openplanner.team/stops/N561aic"], ["https://tec.openplanner.team/stops/H1ch101b", "https://tec.openplanner.team/stops/H5ar103a"], ["https://tec.openplanner.team/stops/X615ara", "https://tec.openplanner.team/stops/X615ata"], ["https://tec.openplanner.team/stops/N383aba", "https://tec.openplanner.team/stops/N383afb"], ["https://tec.openplanner.team/stops/H1ha197a", "https://tec.openplanner.team/stops/H1ob336a"], ["https://tec.openplanner.team/stops/H4vx361b", "https://tec.openplanner.team/stops/H4vx366a"], ["https://tec.openplanner.team/stops/Lmochpl1", "https://tec.openplanner.team/stops/Lmodeni1"], ["https://tec.openplanner.team/stops/X623afb", "https://tec.openplanner.team/stops/X623aib"], ["https://tec.openplanner.team/stops/Bovesog1", "https://tec.openplanner.team/stops/Bovevnd1"], ["https://tec.openplanner.team/stops/H4hx113a", "https://tec.openplanner.team/stops/H4hx121a"], ["https://tec.openplanner.team/stops/Llgdoth2", "https://tec.openplanner.team/stops/Llglibo3"], ["https://tec.openplanner.team/stops/X542aab", "https://tec.openplanner.team/stops/X777acb"], ["https://tec.openplanner.team/stops/H4be147a", "https://tec.openplanner.team/stops/H5bl122b"], ["https://tec.openplanner.team/stops/X672ala", "https://tec.openplanner.team/stops/X672aoa"], ["https://tec.openplanner.team/stops/LGDgdou2", "https://tec.openplanner.team/stops/LMAbell1"], ["https://tec.openplanner.team/stops/N117anb", "https://tec.openplanner.team/stops/N117aoc"], ["https://tec.openplanner.team/stops/LXHfond2", "https://tec.openplanner.team/stops/LXHfond3"], ["https://tec.openplanner.team/stops/Bneervc2", "https://tec.openplanner.team/stops/Bneesan1"], ["https://tec.openplanner.team/stops/X730agb", "https://tec.openplanner.team/stops/X731aha"], ["https://tec.openplanner.team/stops/Lanpisc1", "https://tec.openplanner.team/stops/Lansarm2"], ["https://tec.openplanner.team/stops/X882afa", "https://tec.openplanner.team/stops/X882amb"], ["https://tec.openplanner.team/stops/Cdametr2", "https://tec.openplanner.team/stops/CMdamp2"], ["https://tec.openplanner.team/stops/N506bhb", "https://tec.openplanner.team/stops/N506blb"], ["https://tec.openplanner.team/stops/LBCaube2", "https://tec.openplanner.team/stops/LMTfagn1"], ["https://tec.openplanner.team/stops/LGecime2", "https://tec.openplanner.team/stops/LVkinst2"], ["https://tec.openplanner.team/stops/N114aab", "https://tec.openplanner.team/stops/N315aaa"], ["https://tec.openplanner.team/stops/X512aja", "https://tec.openplanner.team/stops/X512ajb"], ["https://tec.openplanner.team/stops/N120ajb", "https://tec.openplanner.team/stops/N167aha"], ["https://tec.openplanner.team/stops/Btiegoo1", "https://tec.openplanner.team/stops/Btiegoo2"], ["https://tec.openplanner.team/stops/H4wt159a", "https://tec.openplanner.team/stops/H4wt159b"], ["https://tec.openplanner.team/stops/X877aha", "https://tec.openplanner.team/stops/X880ada"], ["https://tec.openplanner.team/stops/Brebrha1", "https://tec.openplanner.team/stops/H3br107b"], ["https://tec.openplanner.team/stops/X715afa", "https://tec.openplanner.team/stops/X715aga"], ["https://tec.openplanner.team/stops/H1bo101a", "https://tec.openplanner.team/stops/H1bo101b"], ["https://tec.openplanner.team/stops/H1hc127c", "https://tec.openplanner.team/stops/H1hc127d"], ["https://tec.openplanner.team/stops/N584aua", "https://tec.openplanner.team/stops/N584aub"], ["https://tec.openplanner.team/stops/Cjudewe2", "https://tec.openplanner.team/stops/Cjurevo1"], ["https://tec.openplanner.team/stops/H1by100b", "https://tec.openplanner.team/stops/H1by100d"], ["https://tec.openplanner.team/stops/Bbghgli1", "https://tec.openplanner.team/stops/Brebpca2"], ["https://tec.openplanner.team/stops/X618afa", "https://tec.openplanner.team/stops/X618afb"], ["https://tec.openplanner.team/stops/H1as103d", "https://tec.openplanner.team/stops/H1nv325a"], ["https://tec.openplanner.team/stops/LAUcarr1", "https://tec.openplanner.team/stops/LAUhost1"], ["https://tec.openplanner.team/stops/H4mx116b", "https://tec.openplanner.team/stops/H4mx120a"], ["https://tec.openplanner.team/stops/N512ala", "https://tec.openplanner.team/stops/N512ama"], ["https://tec.openplanner.team/stops/LFRbaro1", "https://tec.openplanner.team/stops/LSZpiro1"], ["https://tec.openplanner.team/stops/LSRbouh1", "https://tec.openplanner.team/stops/LTrgibe2"], ["https://tec.openplanner.team/stops/N538aeb", "https://tec.openplanner.team/stops/N539aka"], ["https://tec.openplanner.team/stops/N511aia", "https://tec.openplanner.team/stops/N512awa"], ["https://tec.openplanner.team/stops/X896acb", "https://tec.openplanner.team/stops/X896ada"], ["https://tec.openplanner.team/stops/LAufech1", "https://tec.openplanner.team/stops/LAuvill1"], ["https://tec.openplanner.team/stops/X876aca", "https://tec.openplanner.team/stops/X876aea"], ["https://tec.openplanner.team/stops/Bfelequ1", "https://tec.openplanner.team/stops/Bfelpmo2"], ["https://tec.openplanner.team/stops/N521aba", "https://tec.openplanner.team/stops/N521ada"], ["https://tec.openplanner.team/stops/LPbpeti2", "https://tec.openplanner.team/stops/LPbtene1"], ["https://tec.openplanner.team/stops/H4we134b", "https://tec.openplanner.team/stops/H4we139a"], ["https://tec.openplanner.team/stops/Bezeksj1", "https://tec.openplanner.team/stops/Bezeksj3"], ["https://tec.openplanner.team/stops/Ccugilb1", "https://tec.openplanner.team/stops/Cwgtill2"], ["https://tec.openplanner.team/stops/X802aga", "https://tec.openplanner.team/stops/X802ahb"], ["https://tec.openplanner.team/stops/Cmaest1", "https://tec.openplanner.team/stops/Cmafafe1"], ["https://tec.openplanner.team/stops/N529abb", "https://tec.openplanner.team/stops/N529abc"], ["https://tec.openplanner.team/stops/H4ty290a", "https://tec.openplanner.team/stops/H4ty330c"], ["https://tec.openplanner.team/stops/Blindel2", "https://tec.openplanner.team/stops/Blindel4"], ["https://tec.openplanner.team/stops/LGOdelv1", "https://tec.openplanner.team/stops/LJAverv2"], ["https://tec.openplanner.team/stops/H1je216b", "https://tec.openplanner.team/stops/H1je366a"], ["https://tec.openplanner.team/stops/Bnodeco2", "https://tec.openplanner.team/stops/Bnodlce2"], ["https://tec.openplanner.team/stops/H4ef109a", "https://tec.openplanner.team/stops/H4ef109b"], ["https://tec.openplanner.team/stops/LREairp1", "https://tec.openplanner.team/stops/LREchal1"], ["https://tec.openplanner.team/stops/N104aaa", "https://tec.openplanner.team/stops/N104aab"], ["https://tec.openplanner.team/stops/Bboncfv1", "https://tec.openplanner.team/stops/Bboneta1"], ["https://tec.openplanner.team/stops/Buccpin2", "https://tec.openplanner.team/stops/Bwbfgar2"], ["https://tec.openplanner.team/stops/LSPdesc1", "https://tec.openplanner.team/stops/LSPsorb2"], ["https://tec.openplanner.team/stops/Btlbgla2", "https://tec.openplanner.team/stops/Btstw752"], ["https://tec.openplanner.team/stops/N313aec", "https://tec.openplanner.team/stops/N331ajb"], ["https://tec.openplanner.team/stops/Cclbarb1", "https://tec.openplanner.team/stops/Cclplac2"], ["https://tec.openplanner.team/stops/X734abb", "https://tec.openplanner.team/stops/X734afa"], ["https://tec.openplanner.team/stops/N557abb", "https://tec.openplanner.team/stops/N557afb"], ["https://tec.openplanner.team/stops/LListie1", "https://tec.openplanner.team/stops/LListie2"], ["https://tec.openplanner.team/stops/Cthbeff1", "https://tec.openplanner.team/stops/Cthvbas2"], ["https://tec.openplanner.team/stops/Ccychco1", "https://tec.openplanner.team/stops/Ccyga6"], ["https://tec.openplanner.team/stops/H4hg154b", "https://tec.openplanner.team/stops/H4hg157b"], ["https://tec.openplanner.team/stops/N528alb", "https://tec.openplanner.team/stops/N577ahb"], ["https://tec.openplanner.team/stops/N584aea", "https://tec.openplanner.team/stops/N584ama"], ["https://tec.openplanner.team/stops/X716aab", "https://tec.openplanner.team/stops/X716afb"], ["https://tec.openplanner.team/stops/X769aca", "https://tec.openplanner.team/stops/X769aea"], ["https://tec.openplanner.team/stops/Lsehya-2", "https://tec.openplanner.team/stops/Lsehya-3"], ["https://tec.openplanner.team/stops/H4ne138a", "https://tec.openplanner.team/stops/H4te251a"], ["https://tec.openplanner.team/stops/Bgligli1", "https://tec.openplanner.team/stops/Bjcljau1"], ["https://tec.openplanner.team/stops/N170aca", "https://tec.openplanner.team/stops/NC14aca"], ["https://tec.openplanner.team/stops/Bpielom1", "https://tec.openplanner.team/stops/Bpielon1"], ["https://tec.openplanner.team/stops/X614apb", "https://tec.openplanner.team/stops/X614aqb"], ["https://tec.openplanner.team/stops/Bnodcab2", "https://tec.openplanner.team/stops/Bnodtir4"], ["https://tec.openplanner.team/stops/LFCalte1", "https://tec.openplanner.team/stops/LFCalte2"], ["https://tec.openplanner.team/stops/Lmohomv2", "https://tec.openplanner.team/stops/Lsnbrac3"], ["https://tec.openplanner.team/stops/Btubcvi2", "https://tec.openplanner.team/stops/Btubdeh2"], ["https://tec.openplanner.team/stops/X657aeb", "https://tec.openplanner.team/stops/X742adb"], ["https://tec.openplanner.team/stops/X354aca", "https://tec.openplanner.team/stops/X354adb"], ["https://tec.openplanner.team/stops/LTRfend1", "https://tec.openplanner.team/stops/LTRfica2"], ["https://tec.openplanner.team/stops/N542ala", "https://tec.openplanner.team/stops/N542arb"], ["https://tec.openplanner.team/stops/NC14aba", "https://tec.openplanner.team/stops/NC14aca"], ["https://tec.openplanner.team/stops/X663ava", "https://tec.openplanner.team/stops/X663ayb"], ["https://tec.openplanner.team/stops/X633ala", "https://tec.openplanner.team/stops/X633alb"], ["https://tec.openplanner.team/stops/LeUclou2", "https://tec.openplanner.team/stops/LeUmeye2"], ["https://tec.openplanner.team/stops/LwAlont4", "https://tec.openplanner.team/stops/LwAschu2"], ["https://tec.openplanner.team/stops/Ctrecol1", "https://tec.openplanner.team/stops/Ctrecol4"], ["https://tec.openplanner.team/stops/LSLdall1", "https://tec.openplanner.team/stops/LSLfler2"], ["https://tec.openplanner.team/stops/Llgcrev2", "https://tec.openplanner.team/stops/Llgcurt1"], ["https://tec.openplanner.team/stops/N529ajb", "https://tec.openplanner.team/stops/N584aoa"], ["https://tec.openplanner.team/stops/X725ava", "https://tec.openplanner.team/stops/X725avb"], ["https://tec.openplanner.team/stops/X619agb", "https://tec.openplanner.team/stops/X619ahb"], ["https://tec.openplanner.team/stops/N501cya", "https://tec.openplanner.team/stops/N501cyb"], ["https://tec.openplanner.team/stops/N558adb", "https://tec.openplanner.team/stops/N558aea"], ["https://tec.openplanner.team/stops/X615aka", "https://tec.openplanner.team/stops/X615akb"], ["https://tec.openplanner.team/stops/N513bbc", "https://tec.openplanner.team/stops/N516ada"], ["https://tec.openplanner.team/stops/LHZbren2", "https://tec.openplanner.team/stops/LHZcouv2"], ["https://tec.openplanner.team/stops/Canjon2", "https://tec.openplanner.team/stops/Canjonc1"], ["https://tec.openplanner.team/stops/H4ka174b", "https://tec.openplanner.team/stops/H4ka421a"], ["https://tec.openplanner.team/stops/N218aab", "https://tec.openplanner.team/stops/N218ada"], ["https://tec.openplanner.team/stops/LeUcamp1", "https://tec.openplanner.team/stops/LeUoe542"], ["https://tec.openplanner.team/stops/Lstbarb6", "https://tec.openplanner.team/stops/Lstpole1"], ["https://tec.openplanner.team/stops/LHGbeur3", "https://tec.openplanner.team/stops/LHGikea2"], ["https://tec.openplanner.team/stops/H4an110a", "https://tec.openplanner.team/stops/H4an112b"], ["https://tec.openplanner.team/stops/H2lc146a", "https://tec.openplanner.team/stops/H2lc146b"], ["https://tec.openplanner.team/stops/X725bbb", "https://tec.openplanner.team/stops/X725bca"], ["https://tec.openplanner.team/stops/X623aha", "https://tec.openplanner.team/stops/X623ahb"], ["https://tec.openplanner.team/stops/Bhencha2", "https://tec.openplanner.team/stops/Broncli1"], ["https://tec.openplanner.team/stops/X938ada", "https://tec.openplanner.team/stops/X938aea"], ["https://tec.openplanner.team/stops/Blhunys1", "https://tec.openplanner.team/stops/Blhupri2"], ["https://tec.openplanner.team/stops/Bwlhcsr1", "https://tec.openplanner.team/stops/Bwspspa1"], ["https://tec.openplanner.team/stops/X768alb", "https://tec.openplanner.team/stops/X791adb"], ["https://tec.openplanner.team/stops/X734ahb", "https://tec.openplanner.team/stops/X734arb"], ["https://tec.openplanner.team/stops/Blmlbif2", "https://tec.openplanner.team/stops/Brsrmon1"], ["https://tec.openplanner.team/stops/Blpgeco1", "https://tec.openplanner.team/stops/Bvxgeta2"], ["https://tec.openplanner.team/stops/H4ep130a", "https://tec.openplanner.team/stops/H4la197a"], ["https://tec.openplanner.team/stops/X904afa", "https://tec.openplanner.team/stops/X904aha"], ["https://tec.openplanner.team/stops/H4bq100a", "https://tec.openplanner.team/stops/H4bq100c"], ["https://tec.openplanner.team/stops/LBAcere1", "https://tec.openplanner.team/stops/LBAcere2"], ["https://tec.openplanner.team/stops/X648aaa", "https://tec.openplanner.team/stops/X648abb"], ["https://tec.openplanner.team/stops/X685agb", "https://tec.openplanner.team/stops/X685ama"], ["https://tec.openplanner.team/stops/H1ne138a", "https://tec.openplanner.team/stops/H1ne146a"], ["https://tec.openplanner.team/stops/H1as103d", "https://tec.openplanner.team/stops/H1as154a"], ["https://tec.openplanner.team/stops/LHAarge1", "https://tec.openplanner.team/stops/LHApthe2"], ["https://tec.openplanner.team/stops/X771ana", "https://tec.openplanner.team/stops/X773ana"], ["https://tec.openplanner.team/stops/LAibego2", "https://tec.openplanner.team/stops/LCaresi2"], ["https://tec.openplanner.team/stops/Lemdieu1", "https://tec.openplanner.team/stops/Lemlacr1"], ["https://tec.openplanner.team/stops/H2mi124b", "https://tec.openplanner.team/stops/H2mi125a"], ["https://tec.openplanner.team/stops/X739aga", "https://tec.openplanner.team/stops/X739aha"], ["https://tec.openplanner.team/stops/LOucuve1", "https://tec.openplanner.team/stops/LOuhalb1"], ["https://tec.openplanner.team/stops/X730aca", "https://tec.openplanner.team/stops/X730acb"], ["https://tec.openplanner.team/stops/N525aec", "https://tec.openplanner.team/stops/N525agb"], ["https://tec.openplanner.team/stops/LGlwarf2", "https://tec.openplanner.team/stops/LSBsere2"], ["https://tec.openplanner.team/stops/Bhaltre1", "https://tec.openplanner.team/stops/Bhalvla1"], ["https://tec.openplanner.team/stops/LBaeg--2", "https://tec.openplanner.team/stops/LBalacr2"], ["https://tec.openplanner.team/stops/H4bu108b", "https://tec.openplanner.team/stops/H4oe150a"], ["https://tec.openplanner.team/stops/N118abb", "https://tec.openplanner.team/stops/N118bba"], ["https://tec.openplanner.team/stops/X721apb", "https://tec.openplanner.team/stops/X786aab"], ["https://tec.openplanner.team/stops/LeLbutg1", "https://tec.openplanner.team/stops/LnIfrie2"], ["https://tec.openplanner.team/stops/H4co104a", "https://tec.openplanner.team/stops/H4co157a"], ["https://tec.openplanner.team/stops/H4be105a", "https://tec.openplanner.team/stops/H4be145a"], ["https://tec.openplanner.team/stops/X876aaa", "https://tec.openplanner.team/stops/X876aab"], ["https://tec.openplanner.team/stops/LPbover1", "https://tec.openplanner.team/stops/LPbover2"], ["https://tec.openplanner.team/stops/Bbealon3", "https://tec.openplanner.team/stops/Bbeardu2"], ["https://tec.openplanner.team/stops/H1ba103b", "https://tec.openplanner.team/stops/H1ba118b"], ["https://tec.openplanner.team/stops/LNAbras1", "https://tec.openplanner.team/stops/LNAdemo1"], ["https://tec.openplanner.team/stops/X637aoa", "https://tec.openplanner.team/stops/X650aab"], ["https://tec.openplanner.team/stops/Lgrbonn6", "https://tec.openplanner.team/stops/Lgrramp1"], ["https://tec.openplanner.team/stops/N201awa", "https://tec.openplanner.team/stops/N202acb"], ["https://tec.openplanner.team/stops/H1ms304a", "https://tec.openplanner.team/stops/H1ms309b"], ["https://tec.openplanner.team/stops/X948avb", "https://tec.openplanner.team/stops/X948awa"], ["https://tec.openplanner.team/stops/LbRkirc1", "https://tec.openplanner.team/stops/LbRkirc2"], ["https://tec.openplanner.team/stops/N270afa", "https://tec.openplanner.team/stops/N270afd"], ["https://tec.openplanner.team/stops/N501zca", "https://tec.openplanner.team/stops/N501zea"], ["https://tec.openplanner.team/stops/H2hl110a", "https://tec.openplanner.team/stops/H2pe157b"], ["https://tec.openplanner.team/stops/N301aha", "https://tec.openplanner.team/stops/N301ahb"], ["https://tec.openplanner.team/stops/Bbst4br3", "https://tec.openplanner.team/stops/Bbstpon1"], ["https://tec.openplanner.team/stops/H1ms270a", "https://tec.openplanner.team/stops/H1ms277a"], ["https://tec.openplanner.team/stops/LGemari1", "https://tec.openplanner.team/stops/LGevygh2"], ["https://tec.openplanner.team/stops/X602aia", "https://tec.openplanner.team/stops/X653aca"], ["https://tec.openplanner.team/stops/N212aka", "https://tec.openplanner.team/stops/N212akb"], ["https://tec.openplanner.team/stops/H4ne135a", "https://tec.openplanner.team/stops/H4te255a"], ["https://tec.openplanner.team/stops/Lsetroq1", "https://tec.openplanner.team/stops/Lsetroq2"], ["https://tec.openplanner.team/stops/H1as100b", "https://tec.openplanner.team/stops/H1as104b"], ["https://tec.openplanner.team/stops/Bitrcro2", "https://tec.openplanner.team/stops/Bitrmde1"], ["https://tec.openplanner.team/stops/H4pl111a", "https://tec.openplanner.team/stops/H4pl111b"], ["https://tec.openplanner.team/stops/N212aja", "https://tec.openplanner.team/stops/N212ajb"], ["https://tec.openplanner.team/stops/N308anb", "https://tec.openplanner.team/stops/N308aoa"], ["https://tec.openplanner.team/stops/Llglibo4", "https://tec.openplanner.team/stops/Llgptlo4"], ["https://tec.openplanner.team/stops/X601bna", "https://tec.openplanner.team/stops/X601dea"], ["https://tec.openplanner.team/stops/LHgeg--1", "https://tec.openplanner.team/stops/LHggeer1"], ["https://tec.openplanner.team/stops/X657aeb", "https://tec.openplanner.team/stops/X659ala"], ["https://tec.openplanner.team/stops/LOTferm1", "https://tec.openplanner.team/stops/LOTsav-1"], ["https://tec.openplanner.team/stops/X786aab", "https://tec.openplanner.team/stops/X786aba"], ["https://tec.openplanner.team/stops/N232aaa", "https://tec.openplanner.team/stops/N232aab"], ["https://tec.openplanner.team/stops/LbUgend2", "https://tec.openplanner.team/stops/LbUverb1"], ["https://tec.openplanner.team/stops/Ctmmath2", "https://tec.openplanner.team/stops/Ctmsncb2"], ["https://tec.openplanner.team/stops/Lprsher1", "https://tec.openplanner.team/stops/Lprspra2"], ["https://tec.openplanner.team/stops/N111aba", "https://tec.openplanner.team/stops/N111abb"], ["https://tec.openplanner.team/stops/LrEkais2", "https://tec.openplanner.team/stops/Lthgros1"], ["https://tec.openplanner.team/stops/N301aga", "https://tec.openplanner.team/stops/N301aha"], ["https://tec.openplanner.team/stops/LCewaut1", "https://tec.openplanner.team/stops/LCewaut2"], ["https://tec.openplanner.team/stops/Bgnvoha2", "https://tec.openplanner.team/stops/Bgnvoha3"], ["https://tec.openplanner.team/stops/X615ava", "https://tec.openplanner.team/stops/X615avb"], ["https://tec.openplanner.team/stops/H1mm122b", "https://tec.openplanner.team/stops/H1mm122c"], ["https://tec.openplanner.team/stops/Cgpchgo2", "https://tec.openplanner.team/stops/H2tz115a"], ["https://tec.openplanner.team/stops/H1vg358a", "https://tec.openplanner.team/stops/H1vg358b"], ["https://tec.openplanner.team/stops/LTIdjal1", "https://tec.openplanner.team/stops/LTIdjal2"], ["https://tec.openplanner.team/stops/LBjvill2", "https://tec.openplanner.team/stops/X575ahb"], ["https://tec.openplanner.team/stops/X601dcb", "https://tec.openplanner.team/stops/X612afb"], ["https://tec.openplanner.team/stops/X741aga", "https://tec.openplanner.team/stops/X741agb"], ["https://tec.openplanner.team/stops/LVNcoop1", "https://tec.openplanner.team/stops/LVNwanz2"], ["https://tec.openplanner.team/stops/X836aia", "https://tec.openplanner.team/stops/X836aja"], ["https://tec.openplanner.team/stops/X661aob", "https://tec.openplanner.team/stops/X661apb"], ["https://tec.openplanner.team/stops/Cjudest3", "https://tec.openplanner.team/stops/Cjumest2"], ["https://tec.openplanner.team/stops/H4te252a", "https://tec.openplanner.team/stops/H4te259a"], ["https://tec.openplanner.team/stops/X805aea", "https://tec.openplanner.team/stops/X805aeb"], ["https://tec.openplanner.team/stops/Bwatcha2", "https://tec.openplanner.team/stops/Bwatcha3"], ["https://tec.openplanner.team/stops/Bneecha1", "https://tec.openplanner.team/stops/Bneersa2"], ["https://tec.openplanner.team/stops/LHUgare*", "https://tec.openplanner.team/stops/NL80afa"], ["https://tec.openplanner.team/stops/X664apb", "https://tec.openplanner.team/stops/X664aqb"], ["https://tec.openplanner.team/stops/Lsnmala2", "https://tec.openplanner.team/stops/Lsnmala4"], ["https://tec.openplanner.team/stops/H4bd109b", "https://tec.openplanner.team/stops/H4fr141b"], ["https://tec.openplanner.team/stops/LRemorr4", "https://tec.openplanner.team/stops/LRepous1"], ["https://tec.openplanner.team/stops/Cjuaero1", "https://tec.openplanner.team/stops/Cjuaero2"], ["https://tec.openplanner.team/stops/X664aea", "https://tec.openplanner.team/stops/X664afb"], ["https://tec.openplanner.team/stops/LPrcarr1", "https://tec.openplanner.team/stops/LSypesy1"], ["https://tec.openplanner.team/stops/Benggar1", "https://tec.openplanner.team/stops/Bptecar2"], ["https://tec.openplanner.team/stops/H1cu108b", "https://tec.openplanner.team/stops/H1cu126a"], ["https://tec.openplanner.team/stops/LGAholl1", "https://tec.openplanner.team/stops/LGAnovi1"], ["https://tec.openplanner.team/stops/N534bqa", "https://tec.openplanner.team/stops/N534bvb"], ["https://tec.openplanner.team/stops/N165aba", "https://tec.openplanner.team/stops/N165abb"], ["https://tec.openplanner.team/stops/Cturoge1", "https://tec.openplanner.team/stops/Cturoge2"], ["https://tec.openplanner.team/stops/H1ol144b", "https://tec.openplanner.team/stops/H1ol146a"], ["https://tec.openplanner.team/stops/Lrcarse2", "https://tec.openplanner.team/stops/Lrcastr3"], ["https://tec.openplanner.team/stops/N504abb", "https://tec.openplanner.team/stops/N504acb"], ["https://tec.openplanner.team/stops/H4pq112b", "https://tec.openplanner.team/stops/H4pq116a"], ["https://tec.openplanner.team/stops/X636bga", "https://tec.openplanner.team/stops/X637aaa"], ["https://tec.openplanner.team/stops/N576aga", "https://tec.openplanner.team/stops/N576aja"], ["https://tec.openplanner.team/stops/N113abb", "https://tec.openplanner.team/stops/N139aba"], ["https://tec.openplanner.team/stops/LFRhock2", "https://tec.openplanner.team/stops/LSZpiro2"], ["https://tec.openplanner.team/stops/H2bh103d", "https://tec.openplanner.team/stops/H2mg135b"], ["https://tec.openplanner.team/stops/LEN183-1", "https://tec.openplanner.team/stops/LENtour1"], ["https://tec.openplanner.team/stops/Cgymara1", "https://tec.openplanner.team/stops/CMsartc1"], ["https://tec.openplanner.team/stops/N137aab", "https://tec.openplanner.team/stops/N137aia"], ["https://tec.openplanner.team/stops/LEBmoul1", "https://tec.openplanner.team/stops/LLxcrem2"], ["https://tec.openplanner.team/stops/X602ajb", "https://tec.openplanner.team/stops/X602aqb"], ["https://tec.openplanner.team/stops/Lbbbuse1", "https://tec.openplanner.team/stops/Lbhfaye2"], ["https://tec.openplanner.team/stops/N501grc", "https://tec.openplanner.team/stops/N501grf"], ["https://tec.openplanner.team/stops/X741akb", "https://tec.openplanner.team/stops/X741alb"], ["https://tec.openplanner.team/stops/Crcgare2", "https://tec.openplanner.team/stops/NH03agb"], ["https://tec.openplanner.team/stops/X993aca", "https://tec.openplanner.team/stops/X993acb"], ["https://tec.openplanner.team/stops/Bitrbvo1", "https://tec.openplanner.team/stops/Bitrbvo2"], ["https://tec.openplanner.team/stops/Cmghay1", "https://tec.openplanner.team/stops/Cmghay2"], ["https://tec.openplanner.team/stops/Cpcplac2", "https://tec.openplanner.team/stops/Cpcplac4"], ["https://tec.openplanner.team/stops/H2hg147a", "https://tec.openplanner.team/stops/H2hg156a"], ["https://tec.openplanner.team/stops/Cmmplac2", "https://tec.openplanner.team/stops/Cmmptno2"], ["https://tec.openplanner.team/stops/Cmoruau2", "https://tec.openplanner.team/stops/Cmovies2"], ["https://tec.openplanner.team/stops/N515aob", "https://tec.openplanner.team/stops/NR27abb"], ["https://tec.openplanner.team/stops/Lvtbocl1", "https://tec.openplanner.team/stops/Lvtmeun1"], ["https://tec.openplanner.team/stops/H1cu111b", "https://tec.openplanner.team/stops/H1cu125c"], ["https://tec.openplanner.team/stops/H1ro131a", "https://tec.openplanner.team/stops/H1ro133a"], ["https://tec.openplanner.team/stops/LNCloui1", "https://tec.openplanner.team/stops/LNCneuv2"], ["https://tec.openplanner.team/stops/Btsllib2", "https://tec.openplanner.team/stops/Bwspspa1"], ["https://tec.openplanner.team/stops/LbOvith2", "https://tec.openplanner.team/stops/LmYwall1"], ["https://tec.openplanner.team/stops/N531ara", "https://tec.openplanner.team/stops/N576ajb"], ["https://tec.openplanner.team/stops/Lligare1", "https://tec.openplanner.team/stops/Llithon2"], ["https://tec.openplanner.team/stops/NL76aib", "https://tec.openplanner.team/stops/NL76ajb"], ["https://tec.openplanner.team/stops/NL76alc", "https://tec.openplanner.team/stops/NL76ald"], ["https://tec.openplanner.team/stops/Llgnico1", "https://tec.openplanner.team/stops/Llgsnap2"], ["https://tec.openplanner.team/stops/X661arb", "https://tec.openplanner.team/stops/X661asb"], ["https://tec.openplanner.team/stops/LXflong1", "https://tec.openplanner.team/stops/LXfsolw1"], ["https://tec.openplanner.team/stops/H4hs136a", "https://tec.openplanner.team/stops/H4pi134b"], ["https://tec.openplanner.team/stops/N135aed", "https://tec.openplanner.team/stops/N135aob"], ["https://tec.openplanner.team/stops/X904abb", "https://tec.openplanner.team/stops/X904adb"], ["https://tec.openplanner.team/stops/N506aga", "https://tec.openplanner.team/stops/N506alb"], ["https://tec.openplanner.team/stops/X818aia", "https://tec.openplanner.team/stops/X818ajb"], ["https://tec.openplanner.team/stops/H1ha190b", "https://tec.openplanner.team/stops/H1ha191b"], ["https://tec.openplanner.team/stops/N122ada", "https://tec.openplanner.team/stops/N122aib"], ["https://tec.openplanner.team/stops/Cgdfras1", "https://tec.openplanner.team/stops/Cgdfras2"], ["https://tec.openplanner.team/stops/N102aaa", "https://tec.openplanner.team/stops/N102acb"], ["https://tec.openplanner.team/stops/N541aca", "https://tec.openplanner.team/stops/N541acb"], ["https://tec.openplanner.team/stops/Clibrun2", "https://tec.openplanner.team/stops/Ctmwaut2"], ["https://tec.openplanner.team/stops/X837afa", "https://tec.openplanner.team/stops/X837alb"], ["https://tec.openplanner.team/stops/X822afa", "https://tec.openplanner.team/stops/X822akb"], ["https://tec.openplanner.team/stops/N151abb", "https://tec.openplanner.team/stops/N151akb"], ["https://tec.openplanner.team/stops/H2tr249a", "https://tec.openplanner.team/stops/H2tr251a"], ["https://tec.openplanner.team/stops/LLMjacq1", "https://tec.openplanner.team/stops/LLMjacq2"], ["https://tec.openplanner.team/stops/H2hg150a", "https://tec.openplanner.team/stops/H2hg154e"], ["https://tec.openplanner.team/stops/Cjudest2", "https://tec.openplanner.team/stops/Cjudest4"], ["https://tec.openplanner.team/stops/H1mk108a", "https://tec.openplanner.team/stops/H1mk123b"], ["https://tec.openplanner.team/stops/X762adb", "https://tec.openplanner.team/stops/X764aca"], ["https://tec.openplanner.team/stops/N204aea", "https://tec.openplanner.team/stops/N204aeb"], ["https://tec.openplanner.team/stops/N120aia", "https://tec.openplanner.team/stops/N120aja"], ["https://tec.openplanner.team/stops/Lprmc--4", "https://tec.openplanner.team/stops/Lprpous1"], ["https://tec.openplanner.team/stops/Canecbr1", "https://tec.openplanner.team/stops/Canvane1"], ["https://tec.openplanner.team/stops/H1ch105a", "https://tec.openplanner.team/stops/H1ch106a"], ["https://tec.openplanner.team/stops/X979aib", "https://tec.openplanner.team/stops/X979ajb"], ["https://tec.openplanner.team/stops/Cnacout1", "https://tec.openplanner.team/stops/Cnating2"], ["https://tec.openplanner.team/stops/LPOeg--1", "https://tec.openplanner.team/stops/LPOwaut1"], ["https://tec.openplanner.team/stops/N308ana", "https://tec.openplanner.team/stops/N308bia"], ["https://tec.openplanner.team/stops/Cpccoss2", "https://tec.openplanner.team/stops/Cpcwaut1"], ["https://tec.openplanner.team/stops/LOTsav-1", "https://tec.openplanner.team/stops/LOTtong1"], ["https://tec.openplanner.team/stops/H3go101a", "https://tec.openplanner.team/stops/H3go101b"], ["https://tec.openplanner.team/stops/LAUbirv1", "https://tec.openplanner.team/stops/LHChoek4"], ["https://tec.openplanner.team/stops/X937abb", "https://tec.openplanner.team/stops/X950abb"], ["https://tec.openplanner.team/stops/Cbwcab2", "https://tec.openplanner.team/stops/Cmgcabi1"], ["https://tec.openplanner.team/stops/Clbhvil2", "https://tec.openplanner.team/stops/Clbptno3"], ["https://tec.openplanner.team/stops/X717aha", "https://tec.openplanner.team/stops/X782aja"], ["https://tec.openplanner.team/stops/LHVetoi2", "https://tec.openplanner.team/stops/LHVgoro1"], ["https://tec.openplanner.team/stops/LAYambl2", "https://tec.openplanner.team/stops/LAYharz1"], ["https://tec.openplanner.team/stops/N538aca", "https://tec.openplanner.team/stops/N538amc"], ["https://tec.openplanner.team/stops/Cthoues1", "https://tec.openplanner.team/stops/Cthvbas4"], ["https://tec.openplanner.team/stops/LCUjonc2", "https://tec.openplanner.team/stops/LCUmora1"], ["https://tec.openplanner.team/stops/LLThosd1", "https://tec.openplanner.team/stops/LLThosd2"], ["https://tec.openplanner.team/stops/N538apa", "https://tec.openplanner.team/stops/N538asa"], ["https://tec.openplanner.team/stops/N539ava", "https://tec.openplanner.team/stops/N539bcb"], ["https://tec.openplanner.team/stops/Bbaualz1", "https://tec.openplanner.team/stops/Bbaucai2"], ["https://tec.openplanner.team/stops/H4mx119b", "https://tec.openplanner.team/stops/H4mx119c"], ["https://tec.openplanner.team/stops/N229adb", "https://tec.openplanner.team/stops/N229aqb"], ["https://tec.openplanner.team/stops/Llochar5", "https://tec.openplanner.team/stops/Lloross1"], ["https://tec.openplanner.team/stops/Cfccuch2", "https://tec.openplanner.team/stops/Cvrfema2"], ["https://tec.openplanner.team/stops/LATdame2", "https://tec.openplanner.team/stops/LVNbale1"], ["https://tec.openplanner.team/stops/N155ajb", "https://tec.openplanner.team/stops/N155akb"], ["https://tec.openplanner.team/stops/Ctrecol3", "https://tec.openplanner.team/stops/Ctrrpla2"], ["https://tec.openplanner.team/stops/H4ca124a", "https://tec.openplanner.team/stops/H4ca124b"], ["https://tec.openplanner.team/stops/Cmtchas1", "https://tec.openplanner.team/stops/Cmttkai1"], ["https://tec.openplanner.team/stops/Cnanoir2", "https://tec.openplanner.team/stops/Cnaplha4"], ["https://tec.openplanner.team/stops/N584aba", "https://tec.openplanner.team/stops/N584cac"], ["https://tec.openplanner.team/stops/N229ala", "https://tec.openplanner.team/stops/N229alb"], ["https://tec.openplanner.team/stops/H1te176a", "https://tec.openplanner.team/stops/H1te188b"], ["https://tec.openplanner.team/stops/Cbmgare2", "https://tec.openplanner.team/stops/H1tt106a"], ["https://tec.openplanner.team/stops/LLM4rou1", "https://tec.openplanner.team/stops/LLM4rou2"], ["https://tec.openplanner.team/stops/N501ega", "https://tec.openplanner.team/stops/N501era"], ["https://tec.openplanner.team/stops/LCReg--1", "https://tec.openplanner.team/stops/LCRf14-2"], ["https://tec.openplanner.team/stops/LFEmala2", "https://tec.openplanner.team/stops/X597agb"], ["https://tec.openplanner.team/stops/N514aaa", "https://tec.openplanner.team/stops/N514anb"], ["https://tec.openplanner.team/stops/Lsehcoc2", "https://tec.openplanner.team/stops/Lsetrav1"], ["https://tec.openplanner.team/stops/H1ma234a", "https://tec.openplanner.team/stops/H1mj124a"], ["https://tec.openplanner.team/stops/LHodomm1", "https://tec.openplanner.team/stops/LHovill1"], ["https://tec.openplanner.team/stops/LBevill1", "https://tec.openplanner.team/stops/LWHkerk1"], ["https://tec.openplanner.team/stops/LBgcroi1", "https://tec.openplanner.team/stops/LGmhedo1"], ["https://tec.openplanner.team/stops/X901apa", "https://tec.openplanner.team/stops/X901aqb"], ["https://tec.openplanner.team/stops/X919afa", "https://tec.openplanner.team/stops/X919ahb"], ["https://tec.openplanner.team/stops/Cfoermi1", "https://tec.openplanner.team/stops/Cfoermi2"], ["https://tec.openplanner.team/stops/LVTeg--1", "https://tec.openplanner.team/stops/LVTtrou1"], ["https://tec.openplanner.team/stops/LBvnico2", "https://tec.openplanner.team/stops/LBvviem2"], ["https://tec.openplanner.team/stops/LBVronx2", "https://tec.openplanner.team/stops/LRfbeau1"], ["https://tec.openplanner.team/stops/X725apa", "https://tec.openplanner.team/stops/X725beb"], ["https://tec.openplanner.team/stops/LCPscay2", "https://tec.openplanner.team/stops/LOnec--1"], ["https://tec.openplanner.team/stops/LLmcarr2", "https://tec.openplanner.team/stops/LRepous1"], ["https://tec.openplanner.team/stops/N522apb", "https://tec.openplanner.team/stops/N522ara"], ["https://tec.openplanner.team/stops/Llgnyst2", "https://tec.openplanner.team/stops/Llgrema2"], ["https://tec.openplanner.team/stops/H1ob330b", "https://tec.openplanner.team/stops/H1ob341a"], ["https://tec.openplanner.team/stops/Bottcbp1", "https://tec.openplanner.team/stops/Botteco1"], ["https://tec.openplanner.team/stops/X904agb", "https://tec.openplanner.team/stops/X904anb"], ["https://tec.openplanner.team/stops/H4ft133a", "https://tec.openplanner.team/stops/H4ft133b"], ["https://tec.openplanner.team/stops/Bgnvcha1", "https://tec.openplanner.team/stops/Bgnvvol2"], ["https://tec.openplanner.team/stops/N505acb", "https://tec.openplanner.team/stops/N505aib"], ["https://tec.openplanner.team/stops/Crglyre2", "https://tec.openplanner.team/stops/Cstdona6"], ["https://tec.openplanner.team/stops/Llmeg--2", "https://tec.openplanner.team/stops/Llmlaro2"], ["https://tec.openplanner.team/stops/Bwaygrg1", "https://tec.openplanner.team/stops/Cwsegli1"], ["https://tec.openplanner.team/stops/Cfcgrat2", "https://tec.openplanner.team/stops/Cfcleco2"], ["https://tec.openplanner.team/stops/H2lh130b", "https://tec.openplanner.team/stops/H2lh132a"], ["https://tec.openplanner.team/stops/H1wa164a", "https://tec.openplanner.team/stops/H1wa164b"], ["https://tec.openplanner.team/stops/N331ada", "https://tec.openplanner.team/stops/N331aea"], ["https://tec.openplanner.team/stops/X789aeb", "https://tec.openplanner.team/stops/X789aga"], ["https://tec.openplanner.team/stops/LPutins2", "https://tec.openplanner.team/stops/LrEmeil1"], ["https://tec.openplanner.team/stops/Canboni1", "https://tec.openplanner.team/stops/Canfief2"], ["https://tec.openplanner.team/stops/Ccychap1", "https://tec.openplanner.team/stops/Cvlpeau2"], ["https://tec.openplanner.team/stops/LPLg90-2", "https://tec.openplanner.team/stops/LPLruis1"], ["https://tec.openplanner.team/stops/LLvferm1", "https://tec.openplanner.team/stops/LLvpost1"], ["https://tec.openplanner.team/stops/X641aub", "https://tec.openplanner.team/stops/X641azb"], ["https://tec.openplanner.team/stops/Binclon2", "https://tec.openplanner.team/stops/Bsrbtil2"], ["https://tec.openplanner.team/stops/X882agb", "https://tec.openplanner.team/stops/X882amb"], ["https://tec.openplanner.team/stops/Ccigill1", "https://tec.openplanner.team/stops/Ccisart1"], ["https://tec.openplanner.team/stops/X768aea", "https://tec.openplanner.team/stops/X768aed"], ["https://tec.openplanner.team/stops/Bovepla2", "https://tec.openplanner.team/stops/Brsrfen2"], ["https://tec.openplanner.team/stops/N577aab", "https://tec.openplanner.team/stops/N577acb"], ["https://tec.openplanner.team/stops/LWycabi1", "https://tec.openplanner.team/stops/LWycarr1"], ["https://tec.openplanner.team/stops/Lsecoll1", "https://tec.openplanner.team/stops/Lsephar1"], ["https://tec.openplanner.team/stops/X793aib", "https://tec.openplanner.team/stops/X793aoa"], ["https://tec.openplanner.team/stops/H1bi100b", "https://tec.openplanner.team/stops/H1bi101a"], ["https://tec.openplanner.team/stops/N531ala", "https://tec.openplanner.team/stops/N531ara"], ["https://tec.openplanner.team/stops/Cfrchfe1", "https://tec.openplanner.team/stops/Cfrcoqu3"], ["https://tec.openplanner.team/stops/N209aid", "https://tec.openplanner.team/stops/N209ana"], ["https://tec.openplanner.team/stops/Bhmmlad1", "https://tec.openplanner.team/stops/Bhmmmon2"], ["https://tec.openplanner.team/stops/X982ana", "https://tec.openplanner.team/stops/X982anb"], ["https://tec.openplanner.team/stops/H4ry129b", "https://tec.openplanner.team/stops/H4ry141a"], ["https://tec.openplanner.team/stops/LBNover1", "https://tec.openplanner.team/stops/LBNover2"], ["https://tec.openplanner.team/stops/N151aka", "https://tec.openplanner.team/stops/N151akb"], ["https://tec.openplanner.team/stops/LLrjeho1", "https://tec.openplanner.team/stops/LLrpape4"], ["https://tec.openplanner.team/stops/Cfmpui82", "https://tec.openplanner.team/stops/Cfmrrou2"], ["https://tec.openplanner.team/stops/N230aga", "https://tec.openplanner.team/stops/N230ajb"], ["https://tec.openplanner.team/stops/X813aca", "https://tec.openplanner.team/stops/X813ada"], ["https://tec.openplanner.team/stops/H2hl110a", "https://tec.openplanner.team/stops/H2hl111a"], ["https://tec.openplanner.team/stops/N501aoa", "https://tec.openplanner.team/stops/N501mja"], ["https://tec.openplanner.team/stops/Cbuegl2", "https://tec.openplanner.team/stops/Cbugara1"], ["https://tec.openplanner.team/stops/X602aib", "https://tec.openplanner.team/stops/X653abb"], ["https://tec.openplanner.team/stops/Ltheg--1", "https://tec.openplanner.team/stops/Lthgros2"], ["https://tec.openplanner.team/stops/Bwspmon3", "https://tec.openplanner.team/stops/Bwspmon4"], ["https://tec.openplanner.team/stops/N512anb", "https://tec.openplanner.team/stops/N512aoa"], ["https://tec.openplanner.team/stops/N503aaa", "https://tec.openplanner.team/stops/N509aja"], ["https://tec.openplanner.team/stops/Lbrboul1", "https://tec.openplanner.team/stops/Lbrcard2"], ["https://tec.openplanner.team/stops/Llieg--3", "https://tec.openplanner.team/stops/Llivina2"], ["https://tec.openplanner.team/stops/N522agb", "https://tec.openplanner.team/stops/N522aha"], ["https://tec.openplanner.team/stops/H4lg100a", "https://tec.openplanner.team/stops/H4ry131b"], ["https://tec.openplanner.team/stops/H1mb127b", "https://tec.openplanner.team/stops/H1mb136b"], ["https://tec.openplanner.team/stops/N515aia", "https://tec.openplanner.team/stops/N515ajb"], ["https://tec.openplanner.team/stops/N150afa", "https://tec.openplanner.team/stops/N150aib"], ["https://tec.openplanner.team/stops/Cchoues2", "https://tec.openplanner.team/stops/CMpige2"], ["https://tec.openplanner.team/stops/X824ajb", "https://tec.openplanner.team/stops/X826aab"], ["https://tec.openplanner.team/stops/LCUmonu1", "https://tec.openplanner.team/stops/LEnvill1"], ["https://tec.openplanner.team/stops/LDmwarf1", "https://tec.openplanner.team/stops/LSGmale2"], ["https://tec.openplanner.team/stops/LCPcomp1", "https://tec.openplanner.team/stops/LXocomb2"], ["https://tec.openplanner.team/stops/NC24ajb", "https://tec.openplanner.team/stops/NC24aka"], ["https://tec.openplanner.team/stops/H4or113b", "https://tec.openplanner.team/stops/H4or115b"], ["https://tec.openplanner.team/stops/H1fl138a", "https://tec.openplanner.team/stops/H1fl142b"], ["https://tec.openplanner.team/stops/Bwatchb1", "https://tec.openplanner.team/stops/Bwatjbo1"], ["https://tec.openplanner.team/stops/Bjaufca2", "https://tec.openplanner.team/stops/Bjaupro1"], ["https://tec.openplanner.team/stops/X740aab", "https://tec.openplanner.team/stops/X912akb"], ["https://tec.openplanner.team/stops/X826aeb", "https://tec.openplanner.team/stops/X826aha"], ["https://tec.openplanner.team/stops/Bgdhcsh2", "https://tec.openplanner.team/stops/Blinhue2"], ["https://tec.openplanner.team/stops/LlCauto2", "https://tec.openplanner.team/stops/LlChebs1"], ["https://tec.openplanner.team/stops/Bgzdegl3", "https://tec.openplanner.team/stops/Bgzdgst2"], ["https://tec.openplanner.team/stops/Lflcle-1", "https://tec.openplanner.team/stops/Lflmaxi3"], ["https://tec.openplanner.team/stops/Clusncb1", "https://tec.openplanner.team/stops/Cpcwaut2"], ["https://tec.openplanner.team/stops/H3so168a", "https://tec.openplanner.team/stops/H3so174a"], ["https://tec.openplanner.team/stops/LsVgils1", "https://tec.openplanner.team/stops/LsVgils2"], ["https://tec.openplanner.team/stops/LCIneuv2", "https://tec.openplanner.team/stops/LCIpiet1"], ["https://tec.openplanner.team/stops/X727aaa", "https://tec.openplanner.team/stops/X727aab"], ["https://tec.openplanner.team/stops/Btgrdoc1", "https://tec.openplanner.team/stops/N584cab"], ["https://tec.openplanner.team/stops/LeUbael1", "https://tec.openplanner.team/stops/LeUgeme1"], ["https://tec.openplanner.team/stops/H1fa120b", "https://tec.openplanner.team/stops/H1ry134b"], ["https://tec.openplanner.team/stops/Ljexhav1", "https://tec.openplanner.team/stops/Ljexhav2"], ["https://tec.openplanner.team/stops/LlgLAMB1", "https://tec.openplanner.team/stops/LlgLAMB2"], ["https://tec.openplanner.team/stops/X634afb", "https://tec.openplanner.team/stops/X634aja"], ["https://tec.openplanner.team/stops/H2tr251a", "https://tec.openplanner.team/stops/H2tr253b"], ["https://tec.openplanner.team/stops/Bclgbvi1", "https://tec.openplanner.team/stops/Bwavdmo2"], ["https://tec.openplanner.team/stops/X639aeb", "https://tec.openplanner.team/stops/X644acb"], ["https://tec.openplanner.team/stops/Cwfanci1", "https://tec.openplanner.team/stops/Cwfronc2"], ["https://tec.openplanner.team/stops/X760adb", "https://tec.openplanner.team/stops/X760aga"], ["https://tec.openplanner.team/stops/LHAlacr1", "https://tec.openplanner.team/stops/LHAleru2"], ["https://tec.openplanner.team/stops/Cjualtr2", "https://tec.openplanner.team/stops/Cjutrou3"], ["https://tec.openplanner.team/stops/H4bo110b", "https://tec.openplanner.team/stops/H5st164a"], ["https://tec.openplanner.team/stops/H4ma418a", "https://tec.openplanner.team/stops/H4ma420b"], ["https://tec.openplanner.team/stops/Llaacca1", "https://tec.openplanner.team/stops/Llabriq2"], ["https://tec.openplanner.team/stops/LkEgss-2", "https://tec.openplanner.team/stops/LkEsada2"], ["https://tec.openplanner.team/stops/X734aka", "https://tec.openplanner.team/stops/X734akb"], ["https://tec.openplanner.team/stops/N515aoa", "https://tec.openplanner.team/stops/N515aob"], ["https://tec.openplanner.team/stops/Llgjenn3", "https://tec.openplanner.team/stops/Llgjenn4"], ["https://tec.openplanner.team/stops/LdEkreu2", "https://tec.openplanner.team/stops/LmDwei31"], ["https://tec.openplanner.team/stops/Ccupdes1", "https://tec.openplanner.team/stops/Ccupdes2"], ["https://tec.openplanner.team/stops/LBhschu2", "https://tec.openplanner.team/stops/X793afb"], ["https://tec.openplanner.team/stops/H1qu100a", "https://tec.openplanner.team/stops/H1qu100d"], ["https://tec.openplanner.team/stops/Bovetdo1", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://tec.openplanner.team/stops/X614aza", "https://tec.openplanner.team/stops/X614bab"], ["https://tec.openplanner.team/stops/LAVpequ2", "https://tec.openplanner.team/stops/LVHtill1"], ["https://tec.openplanner.team/stops/Balswsa1", "https://tec.openplanner.team/stops/Brsgrol1"], ["https://tec.openplanner.team/stops/X877aaa", "https://tec.openplanner.team/stops/X877adb"], ["https://tec.openplanner.team/stops/LOncar-*", "https://tec.openplanner.team/stops/LOnec--2"], ["https://tec.openplanner.team/stops/Cjucouc2", "https://tec.openplanner.team/stops/Cjumest1"], ["https://tec.openplanner.team/stops/Lpeprev1", "https://tec.openplanner.team/stops/Lpesart2"], ["https://tec.openplanner.team/stops/LWEcite1", "https://tec.openplanner.team/stops/LWEcomp1"], ["https://tec.openplanner.team/stops/H4mo171a", "https://tec.openplanner.team/stops/H4mo183a"], ["https://tec.openplanner.team/stops/N207aaa", "https://tec.openplanner.team/stops/N207afa"], ["https://tec.openplanner.team/stops/Benimar2", "https://tec.openplanner.team/stops/NR21aib"], ["https://tec.openplanner.team/stops/LLVfour1", "https://tec.openplanner.team/stops/X575agb"], ["https://tec.openplanner.team/stops/H1bu136b", "https://tec.openplanner.team/stops/H3bi108a"], ["https://tec.openplanner.team/stops/X661ata", "https://tec.openplanner.team/stops/X661aua"], ["https://tec.openplanner.team/stops/Bernpon2", "https://tec.openplanner.team/stops/Bernrar2"], ["https://tec.openplanner.team/stops/LvA30--1", "https://tec.openplanner.team/stops/LvA30--2"], ["https://tec.openplanner.team/stops/LPcforg1", "https://tec.openplanner.team/stops/LTGsucr2"], ["https://tec.openplanner.team/stops/Bsomjon2", "https://tec.openplanner.team/stops/N584acb"], ["https://tec.openplanner.team/stops/Cvstouv2", "https://tec.openplanner.team/stops/N530afa"], ["https://tec.openplanner.team/stops/Bhalalb1", "https://tec.openplanner.team/stops/Bhalalb2"], ["https://tec.openplanner.team/stops/Bbcodam4", "https://tec.openplanner.team/stops/H2ec110b"], ["https://tec.openplanner.team/stops/Cwgmell1", "https://tec.openplanner.team/stops/Cwgmell4"], ["https://tec.openplanner.team/stops/Cvvchea1", "https://tec.openplanner.team/stops/Cvvgrsa2"], ["https://tec.openplanner.team/stops/LCPbell2", "https://tec.openplanner.team/stops/LCPoneu2"], ["https://tec.openplanner.team/stops/X793afa", "https://tec.openplanner.team/stops/X793afd"], ["https://tec.openplanner.team/stops/H5qu141b", "https://tec.openplanner.team/stops/H5qu154b"], ["https://tec.openplanner.team/stops/LFreg--1", "https://tec.openplanner.team/stops/LNEpass1"], ["https://tec.openplanner.team/stops/N127aaa", "https://tec.openplanner.team/stops/N134afb"], ["https://tec.openplanner.team/stops/N501bjy", "https://tec.openplanner.team/stops/N999aab"], ["https://tec.openplanner.team/stops/LHUfoss*", "https://tec.openplanner.team/stops/LHUneuv1"], ["https://tec.openplanner.team/stops/X370ada", "https://tec.openplanner.team/stops/X370adb"], ["https://tec.openplanner.team/stops/N309aac", "https://tec.openplanner.team/stops/N309aba"], ["https://tec.openplanner.team/stops/N543aja", "https://tec.openplanner.team/stops/N543awg"], ["https://tec.openplanner.team/stops/X681afa", "https://tec.openplanner.team/stops/X681afb"], ["https://tec.openplanner.team/stops/LBsoha-2", "https://tec.openplanner.team/stops/NL72ada"], ["https://tec.openplanner.team/stops/LhGfrie2", "https://tec.openplanner.team/stops/LlNm%C3%BChl1"], ["https://tec.openplanner.team/stops/LFmroye2", "https://tec.openplanner.team/stops/LMOchpl1"], ["https://tec.openplanner.team/stops/N543ala", "https://tec.openplanner.team/stops/N543avg"], ["https://tec.openplanner.team/stops/N110adb", "https://tec.openplanner.team/stops/N114aab"], ["https://tec.openplanner.team/stops/Bnivcom1", "https://tec.openplanner.team/stops/Bnivvai2"], ["https://tec.openplanner.team/stops/Llivina1", "https://tec.openplanner.team/stops/Llivina2"], ["https://tec.openplanner.team/stops/X754afa", "https://tec.openplanner.team/stops/X754afb"], ["https://tec.openplanner.team/stops/X657aaa", "https://tec.openplanner.team/stops/X657ama"], ["https://tec.openplanner.team/stops/LOChuy-1", "https://tec.openplanner.team/stops/LOCloup1"], ["https://tec.openplanner.team/stops/Bgerd322", "https://tec.openplanner.team/stops/NB33afa"], ["https://tec.openplanner.team/stops/Ctyhame2", "https://tec.openplanner.team/stops/N137aha"], ["https://tec.openplanner.team/stops/Bmlncle2", "https://tec.openplanner.team/stops/Bmlnpab2"], ["https://tec.openplanner.team/stops/H1hi122a", "https://tec.openplanner.team/stops/H1ht126b"], ["https://tec.openplanner.team/stops/X662aba", "https://tec.openplanner.team/stops/X663aga"], ["https://tec.openplanner.team/stops/Lfhcoop1", "https://tec.openplanner.team/stops/Ljerose3"], ["https://tec.openplanner.team/stops/N509aqa", "https://tec.openplanner.team/stops/N511aob"], ["https://tec.openplanner.team/stops/X627ada", "https://tec.openplanner.team/stops/X629aab"], ["https://tec.openplanner.team/stops/Bllngar2", "https://tec.openplanner.team/stops/Bllngar7"], ["https://tec.openplanner.team/stops/Bjodmal2", "https://tec.openplanner.team/stops/Bjodppe2"], ["https://tec.openplanner.team/stops/N542alb", "https://tec.openplanner.team/stops/N542arb"], ["https://tec.openplanner.team/stops/NL77aha", "https://tec.openplanner.team/stops/NL77aia"], ["https://tec.openplanner.team/stops/N323abb", "https://tec.openplanner.team/stops/N387ahb"], ["https://tec.openplanner.team/stops/N383ada", "https://tec.openplanner.team/stops/N874amb"], ["https://tec.openplanner.team/stops/N532aaa", "https://tec.openplanner.team/stops/N532aab"], ["https://tec.openplanner.team/stops/N118aub", "https://tec.openplanner.team/stops/N118bab"], ["https://tec.openplanner.team/stops/H2mm144b", "https://tec.openplanner.team/stops/H2mo131b"], ["https://tec.openplanner.team/stops/Clulidl1", "https://tec.openplanner.team/stops/Clulidl2"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N308bjb"], ["https://tec.openplanner.team/stops/Bneecha2", "https://tec.openplanner.team/stops/Boplsma4"], ["https://tec.openplanner.team/stops/X953aca", "https://tec.openplanner.team/stops/X953adb"], ["https://tec.openplanner.team/stops/H1br125a", "https://tec.openplanner.team/stops/H1vb143a"], ["https://tec.openplanner.team/stops/H4ty342a", "https://tec.openplanner.team/stops/H4ty349a"], ["https://tec.openplanner.team/stops/LFCotte1", "https://tec.openplanner.team/stops/LWRvert2"], ["https://tec.openplanner.team/stops/Crajasm2", "https://tec.openplanner.team/stops/Cramadi2"], ["https://tec.openplanner.team/stops/N506bja", "https://tec.openplanner.team/stops/N506bjb"], ["https://tec.openplanner.team/stops/LeLbutg1", "https://tec.openplanner.team/stops/LeLbutg2"], ["https://tec.openplanner.team/stops/Bnetcor1", "https://tec.openplanner.team/stops/Bnetvan1"], ["https://tec.openplanner.team/stops/Bincegl2", "https://tec.openplanner.team/stops/Boppcar1"], ["https://tec.openplanner.team/stops/H1er109a", "https://tec.openplanner.team/stops/H1er113b"], ["https://tec.openplanner.team/stops/Bptrcra1", "https://tec.openplanner.team/stops/Bptrcra2"], ["https://tec.openplanner.team/stops/N531agb", "https://tec.openplanner.team/stops/N531aib"], ["https://tec.openplanner.team/stops/Lvoplac1", "https://tec.openplanner.team/stops/Lvoplac2"], ["https://tec.openplanner.team/stops/Bblaang1", "https://tec.openplanner.team/stops/Bblajap1"], ["https://tec.openplanner.team/stops/Lanc14v1", "https://tec.openplanner.team/stops/Llgnaes1"], ["https://tec.openplanner.team/stops/Ccigene2", "https://tec.openplanner.team/stops/Ccipano1"], ["https://tec.openplanner.team/stops/N207afb", "https://tec.openplanner.team/stops/N209aba"], ["https://tec.openplanner.team/stops/X713aeb", "https://tec.openplanner.team/stops/X713aib"], ["https://tec.openplanner.team/stops/Cmmheur1", "https://tec.openplanner.team/stops/Cmmjami1"], ["https://tec.openplanner.team/stops/LHcbaro2", "https://tec.openplanner.team/stops/LSZpiro2"], ["https://tec.openplanner.team/stops/H4os223b", "https://tec.openplanner.team/stops/H4va232b"], ["https://tec.openplanner.team/stops/N301aka", "https://tec.openplanner.team/stops/N301ana"], ["https://tec.openplanner.team/stops/H4ty286a", "https://tec.openplanner.team/stops/H4ty317a"], ["https://tec.openplanner.team/stops/X542aha", "https://tec.openplanner.team/stops/X777aca"], ["https://tec.openplanner.team/stops/Bcbqh451", "https://tec.openplanner.team/stops/Bosqpco2"], ["https://tec.openplanner.team/stops/H4ml206a", "https://tec.openplanner.team/stops/H4ml206b"], ["https://tec.openplanner.team/stops/N506agb", "https://tec.openplanner.team/stops/N506ahb"], ["https://tec.openplanner.team/stops/X766aea", "https://tec.openplanner.team/stops/X766aeb"], ["https://tec.openplanner.team/stops/Llgcoll1", "https://tec.openplanner.team/stops/Llgtawe0"], ["https://tec.openplanner.team/stops/Bviravi1", "https://tec.openplanner.team/stops/Bvirgar1"], ["https://tec.openplanner.team/stops/H4to134b", "https://tec.openplanner.team/stops/H4to138a"], ["https://tec.openplanner.team/stops/X602aia", "https://tec.openplanner.team/stops/X602aka"], ["https://tec.openplanner.team/stops/LWRferm2", "https://tec.openplanner.team/stops/LWRheyd2"], ["https://tec.openplanner.team/stops/Caimeno3", "https://tec.openplanner.team/stops/Crsaise4"], ["https://tec.openplanner.team/stops/Cbfcham3", "https://tec.openplanner.team/stops/Cbfusin2"], ["https://tec.openplanner.team/stops/LSPpomp2", "https://tec.openplanner.team/stops/LSPptch2"], ["https://tec.openplanner.team/stops/Lhrecol2", "https://tec.openplanner.team/stops/Lhrpost2"], ["https://tec.openplanner.team/stops/Cjxdesc2", "https://tec.openplanner.team/stops/Cnapetr2"], ["https://tec.openplanner.team/stops/N229atb", "https://tec.openplanner.team/stops/N540aqa"], ["https://tec.openplanner.team/stops/Cchsud0", "https://tec.openplanner.team/stops/Cchsud08"], ["https://tec.openplanner.team/stops/H4ce100b", "https://tec.openplanner.team/stops/H4ve132b"], ["https://tec.openplanner.team/stops/H4ha171a", "https://tec.openplanner.team/stops/H4ha171b"], ["https://tec.openplanner.team/stops/X982apb", "https://tec.openplanner.team/stops/X982aya"], ["https://tec.openplanner.team/stops/X801bsa", "https://tec.openplanner.team/stops/X801bva"], ["https://tec.openplanner.team/stops/H1ev114a", "https://tec.openplanner.team/stops/H1ev115a"], ["https://tec.openplanner.team/stops/Bgdhdet1", "https://tec.openplanner.team/stops/Blinhue2"], ["https://tec.openplanner.team/stops/Bgdhpco2", "https://tec.openplanner.team/stops/Blineco2"], ["https://tec.openplanner.team/stops/Cnadrev1", "https://tec.openplanner.team/stops/Cnahous2"], ["https://tec.openplanner.team/stops/X777aaa", "https://tec.openplanner.team/stops/X784aia"], ["https://tec.openplanner.team/stops/X902ala", "https://tec.openplanner.team/stops/X902aob"], ["https://tec.openplanner.team/stops/LDapota1", "https://tec.openplanner.team/stops/LDapota2"], ["https://tec.openplanner.team/stops/LGMstin1", "https://tec.openplanner.team/stops/LGMvoue2"], ["https://tec.openplanner.team/stops/H1gr122a", "https://tec.openplanner.team/stops/H1mk116a"], ["https://tec.openplanner.team/stops/Blanove2", "https://tec.openplanner.team/stops/LLaover4"], ["https://tec.openplanner.team/stops/LSMgare1", "https://tec.openplanner.team/stops/LSMtarg1"], ["https://tec.openplanner.team/stops/LVSbleu1", "https://tec.openplanner.team/stops/LVSpn--1"], ["https://tec.openplanner.team/stops/LAUcose1", "https://tec.openplanner.team/stops/LRmha261"], ["https://tec.openplanner.team/stops/X721aca", "https://tec.openplanner.team/stops/X721aoa"], ["https://tec.openplanner.team/stops/Ldicorb2", "https://tec.openplanner.team/stops/Lprmerc*"], ["https://tec.openplanner.team/stops/H1bl103a", "https://tec.openplanner.team/stops/H1bl107a"], ["https://tec.openplanner.team/stops/X641aea", "https://tec.openplanner.team/stops/X641aob"], ["https://tec.openplanner.team/stops/LRRchea3", "https://tec.openplanner.team/stops/LRRchea4"], ["https://tec.openplanner.team/stops/N232bqa", "https://tec.openplanner.team/stops/N232bqb"], ["https://tec.openplanner.team/stops/LtEnach1", "https://tec.openplanner.team/stops/LtEnatu1"], ["https://tec.openplanner.team/stops/Lprferm1", "https://tec.openplanner.team/stops/Lprmoin2"], ["https://tec.openplanner.team/stops/LHegame3", "https://tec.openplanner.team/stops/LHegame4"], ["https://tec.openplanner.team/stops/X640ada", "https://tec.openplanner.team/stops/X640akb"], ["https://tec.openplanner.team/stops/N534adb", "https://tec.openplanner.team/stops/N566adb"], ["https://tec.openplanner.team/stops/H1ro133a", "https://tec.openplanner.team/stops/H1ro141b"], ["https://tec.openplanner.team/stops/X801aga", "https://tec.openplanner.team/stops/X801bqa"], ["https://tec.openplanner.team/stops/X641aca", "https://tec.openplanner.team/stops/X641alb"], ["https://tec.openplanner.team/stops/LVlfooz1", "https://tec.openplanner.team/stops/LVlleno1"], ["https://tec.openplanner.team/stops/Llgdoth2", "https://tec.openplanner.team/stops/Llghopo2"], ["https://tec.openplanner.team/stops/Bixefra1", "https://tec.openplanner.team/stops/Bwbfhip1"], ["https://tec.openplanner.team/stops/H4bq100b", "https://tec.openplanner.team/stops/H4bq154b"], ["https://tec.openplanner.team/stops/X715adb", "https://tec.openplanner.team/stops/X715alb"], ["https://tec.openplanner.team/stops/X911afa", "https://tec.openplanner.team/stops/X912aja"], ["https://tec.openplanner.team/stops/N145acb", "https://tec.openplanner.team/stops/N145adb"], ["https://tec.openplanner.team/stops/N110agb", "https://tec.openplanner.team/stops/N114aab"], ["https://tec.openplanner.team/stops/X889acb", "https://tec.openplanner.team/stops/X889ada"], ["https://tec.openplanner.team/stops/LPoneuf1", "https://tec.openplanner.team/stops/LPoneuf2"], ["https://tec.openplanner.team/stops/X394aba", "https://tec.openplanner.team/stops/X394abb"], ["https://tec.openplanner.team/stops/Crcplac3", "https://tec.openplanner.team/stops/Crcplac4"], ["https://tec.openplanner.team/stops/N548afa", "https://tec.openplanner.team/stops/N548agb"], ["https://tec.openplanner.team/stops/X923aba", "https://tec.openplanner.team/stops/X923agb"], ["https://tec.openplanner.team/stops/N534adb", "https://tec.openplanner.team/stops/N534aga"], ["https://tec.openplanner.team/stops/H4co103a", "https://tec.openplanner.team/stops/H4co134a"], ["https://tec.openplanner.team/stops/LGlwarf1", "https://tec.openplanner.team/stops/LHolone2"], ["https://tec.openplanner.team/stops/X609agb", "https://tec.openplanner.team/stops/X609ahb"], ["https://tec.openplanner.team/stops/LSNnoul1", "https://tec.openplanner.team/stops/LSNretr2"], ["https://tec.openplanner.team/stops/X869aeb", "https://tec.openplanner.team/stops/X869afb"], ["https://tec.openplanner.team/stops/Cjuphil2", "https://tec.openplanner.team/stops/Crarmas2"], ["https://tec.openplanner.team/stops/H1ht122b", "https://tec.openplanner.team/stops/H1ht124a"], ["https://tec.openplanner.team/stops/LVevill1", "https://tec.openplanner.team/stops/LVevill2"], ["https://tec.openplanner.team/stops/Cchsud01", "https://tec.openplanner.team/stops/CMsud2"], ["https://tec.openplanner.team/stops/Cdahtvi2", "https://tec.openplanner.team/stops/Clolidl2"], ["https://tec.openplanner.team/stops/Bsenpbi2", "https://tec.openplanner.team/stops/H2se114b"], ["https://tec.openplanner.team/stops/LAx17--1", "https://tec.openplanner.team/stops/LAxbott1"], ["https://tec.openplanner.team/stops/X601ata", "https://tec.openplanner.team/stops/X601cxa"], ["https://tec.openplanner.team/stops/LBBcarr2", "https://tec.openplanner.team/stops/LMnlogi1"], ["https://tec.openplanner.team/stops/X664aic", "https://tec.openplanner.team/stops/X664akb"], ["https://tec.openplanner.team/stops/N122aab", "https://tec.openplanner.team/stops/N122ada"], ["https://tec.openplanner.team/stops/Brsgfbl2", "https://tec.openplanner.team/stops/Brsggol1"], ["https://tec.openplanner.team/stops/LSZdepo2", "https://tec.openplanner.team/stops/LSZnive1"], ["https://tec.openplanner.team/stops/LAMecse*", "https://tec.openplanner.team/stops/LAMjeha2"], ["https://tec.openplanner.team/stops/LRObruy2", "https://tec.openplanner.team/stops/LROcham2"], ["https://tec.openplanner.team/stops/Cgomerm4", "https://tec.openplanner.team/stops/Chpfoli3"], ["https://tec.openplanner.team/stops/CMgazo2", "https://tec.openplanner.team/stops/Cmtdepo2"], ["https://tec.openplanner.team/stops/LhGgeme2", "https://tec.openplanner.team/stops/LhGlang2"], ["https://tec.openplanner.team/stops/H1me115b", "https://tec.openplanner.team/stops/H1me117f"], ["https://tec.openplanner.team/stops/N390aea", "https://tec.openplanner.team/stops/X390ala"], ["https://tec.openplanner.team/stops/X641ahb", "https://tec.openplanner.team/stops/X641ala"], ["https://tec.openplanner.team/stops/X666ada", "https://tec.openplanner.team/stops/X666ama"], ["https://tec.openplanner.team/stops/H4cw105b", "https://tec.openplanner.team/stops/H4lz163a"], ["https://tec.openplanner.team/stops/Caibras1", "https://tec.openplanner.team/stops/Caioign3"], ["https://tec.openplanner.team/stops/Llgongr1", "https://tec.openplanner.team/stops/Llgongr2"], ["https://tec.openplanner.team/stops/LGlcarr2", "https://tec.openplanner.team/stops/LGlcite2"], ["https://tec.openplanner.team/stops/Ccybeau1", "https://tec.openplanner.team/stops/Ccyrmon2"], ["https://tec.openplanner.team/stops/N505ama", "https://tec.openplanner.team/stops/N512avb"], ["https://tec.openplanner.team/stops/H1ne147a", "https://tec.openplanner.team/stops/H1ne149b"], ["https://tec.openplanner.team/stops/Bsenpbi1", "https://tec.openplanner.team/stops/H2mg135a"], ["https://tec.openplanner.team/stops/H4ru242b", "https://tec.openplanner.team/stops/H4ru245a"], ["https://tec.openplanner.team/stops/X650aba", "https://tec.openplanner.team/stops/X650aoa"], ["https://tec.openplanner.team/stops/Craplac1", "https://tec.openplanner.team/stops/Craplac3"], ["https://tec.openplanner.team/stops/Baisbar1", "https://tec.openplanner.team/stops/N519asd"], ["https://tec.openplanner.team/stops/N505aba", "https://tec.openplanner.team/stops/N579acb"], ["https://tec.openplanner.team/stops/N201ajb", "https://tec.openplanner.team/stops/N201alb"], ["https://tec.openplanner.team/stops/Cgzfarc2", "https://tec.openplanner.team/stops/Cgzpjeu1"], ["https://tec.openplanner.team/stops/Cmesncv1", "https://tec.openplanner.team/stops/Cvpcour1"], ["https://tec.openplanner.team/stops/X888aba", "https://tec.openplanner.team/stops/X888agb"], ["https://tec.openplanner.team/stops/X979akb", "https://tec.openplanner.team/stops/X982bsa"], ["https://tec.openplanner.team/stops/LRR2egl1", "https://tec.openplanner.team/stops/LRRbonr1"], ["https://tec.openplanner.team/stops/LTPbode2", "https://tec.openplanner.team/stops/LTPhenr1"], ["https://tec.openplanner.team/stops/Chthttr2", "https://tec.openplanner.team/stops/Cthhttr3"], ["https://tec.openplanner.team/stops/X359agb", "https://tec.openplanner.team/stops/X371aaa"], ["https://tec.openplanner.team/stops/Bbeaech2", "https://tec.openplanner.team/stops/Bleugar1"], ["https://tec.openplanner.team/stops/N308azb", "https://tec.openplanner.team/stops/N339aab"], ["https://tec.openplanner.team/stops/H1ms270a", "https://tec.openplanner.team/stops/H1ob341b"], ["https://tec.openplanner.team/stops/LLNbeau2", "https://tec.openplanner.team/stops/LSpcarr2"], ["https://tec.openplanner.team/stops/X601cja", "https://tec.openplanner.team/stops/X663aca"], ["https://tec.openplanner.team/stops/H2ch102b", "https://tec.openplanner.team/stops/H2ch105a"], ["https://tec.openplanner.team/stops/LLWcarr1", "https://tec.openplanner.team/stops/LOMware1"], ["https://tec.openplanner.team/stops/N224aaa", "https://tec.openplanner.team/stops/X224aga"], ["https://tec.openplanner.team/stops/N201ana", "https://tec.openplanner.team/stops/N202aia"], ["https://tec.openplanner.team/stops/X670agb", "https://tec.openplanner.team/stops/X670aob"], ["https://tec.openplanner.team/stops/Croball1", "https://tec.openplanner.team/stops/Crocpai1"], ["https://tec.openplanner.team/stops/LSPastr1", "https://tec.openplanner.team/stops/LSPClem1"], ["https://tec.openplanner.team/stops/Ccicent3", "https://tec.openplanner.team/stops/Ccipier2"], ["https://tec.openplanner.team/stops/Bmsgpfo1", "https://tec.openplanner.team/stops/Bmsgstj1"], ["https://tec.openplanner.team/stops/Lagchen1", "https://tec.openplanner.team/stops/Lagmair4"], ["https://tec.openplanner.team/stops/H1gy116a", "https://tec.openplanner.team/stops/H5el100a"], ["https://tec.openplanner.team/stops/N106adb", "https://tec.openplanner.team/stops/N137aia"], ["https://tec.openplanner.team/stops/LENecol1", "https://tec.openplanner.team/stops/LENsent1"], ["https://tec.openplanner.team/stops/X993ada", "https://tec.openplanner.team/stops/X995aca"], ["https://tec.openplanner.team/stops/X673ada", "https://tec.openplanner.team/stops/X673adb"], ["https://tec.openplanner.team/stops/H1wi157b", "https://tec.openplanner.team/stops/H1wi157c"], ["https://tec.openplanner.team/stops/X802afa", "https://tec.openplanner.team/stops/X802asa"], ["https://tec.openplanner.team/stops/LrAplat1", "https://tec.openplanner.team/stops/LrAverb1"], ["https://tec.openplanner.team/stops/X908aha", "https://tec.openplanner.team/stops/X908apa"], ["https://tec.openplanner.team/stops/LRRcole1", "https://tec.openplanner.team/stops/LRRtrix1"], ["https://tec.openplanner.team/stops/N241ada", "https://tec.openplanner.team/stops/N241aea"], ["https://tec.openplanner.team/stops/Bhancre1", "https://tec.openplanner.team/stops/LHNecpr1"], ["https://tec.openplanner.team/stops/N217acd", "https://tec.openplanner.team/stops/N218afa"], ["https://tec.openplanner.team/stops/Lcemalv1", "https://tec.openplanner.team/stops/Lcemalv2"], ["https://tec.openplanner.team/stops/H2ec101b", "https://tec.openplanner.team/stops/H2ec110b"], ["https://tec.openplanner.team/stops/LoUpete2", "https://tec.openplanner.team/stops/X685apa"], ["https://tec.openplanner.team/stops/N138aaa", "https://tec.openplanner.team/stops/N138ajb"], ["https://tec.openplanner.team/stops/LBoegli1", "https://tec.openplanner.team/stops/X223aca"], ["https://tec.openplanner.team/stops/Loucoti2", "https://tec.openplanner.team/stops/Louetan2"], ["https://tec.openplanner.team/stops/LWRcruc2", "https://tec.openplanner.team/stops/LWRpl--1"], ["https://tec.openplanner.team/stops/N521acb", "https://tec.openplanner.team/stops/N521aeb"], ["https://tec.openplanner.team/stops/N501leb", "https://tec.openplanner.team/stops/N538aeb"], ["https://tec.openplanner.team/stops/H1ca186b", "https://tec.openplanner.team/stops/H1ma230a"], ["https://tec.openplanner.team/stops/LScread1", "https://tec.openplanner.team/stops/LScread2"], ["https://tec.openplanner.team/stops/Llgcadr2", "https://tec.openplanner.team/stops/LlgOPER6"], ["https://tec.openplanner.team/stops/LCFcafe2", "https://tec.openplanner.team/stops/LCFcarr2"], ["https://tec.openplanner.team/stops/NL57adc", "https://tec.openplanner.team/stops/NL57afa"], ["https://tec.openplanner.team/stops/N331afa", "https://tec.openplanner.team/stops/N331agb"], ["https://tec.openplanner.team/stops/X638aha", "https://tec.openplanner.team/stops/X638aka"], ["https://tec.openplanner.team/stops/X595aaa", "https://tec.openplanner.team/stops/X713ada"], ["https://tec.openplanner.team/stops/Cfaetoi1", "https://tec.openplanner.team/stops/Cfaetoi2"], ["https://tec.openplanner.team/stops/H4wa153a", "https://tec.openplanner.team/stops/H4wa153b"], ["https://tec.openplanner.team/stops/Cbiferm2", "https://tec.openplanner.team/stops/Cbimonu1"], ["https://tec.openplanner.team/stops/X741aea", "https://tec.openplanner.team/stops/X741apb"], ["https://tec.openplanner.team/stops/X615aib", "https://tec.openplanner.team/stops/X615brb"], ["https://tec.openplanner.team/stops/Bperqui2", "https://tec.openplanner.team/stops/N524ajb"], ["https://tec.openplanner.team/stops/H1je213b", "https://tec.openplanner.team/stops/H1je222a"], ["https://tec.openplanner.team/stops/H4bs112a", "https://tec.openplanner.team/stops/H4ws159a"], ["https://tec.openplanner.team/stops/X801bua", "https://tec.openplanner.team/stops/X802ayb"], ["https://tec.openplanner.team/stops/Llgdarc2", "https://tec.openplanner.team/stops/Llglonh2"], ["https://tec.openplanner.team/stops/Bhtipir1", "https://tec.openplanner.team/stops/Bhtipir2"], ["https://tec.openplanner.team/stops/N214aaa", "https://tec.openplanner.team/stops/N214ajb"], ["https://tec.openplanner.team/stops/X723abb", "https://tec.openplanner.team/stops/X724aga"], ["https://tec.openplanner.team/stops/LVBneuv2", "https://tec.openplanner.team/stops/LVBsevr1"], ["https://tec.openplanner.team/stops/X725aka", "https://tec.openplanner.team/stops/X767afa"], ["https://tec.openplanner.team/stops/LMIlac-2", "https://tec.openplanner.team/stops/Lrechap1"], ["https://tec.openplanner.team/stops/Bblapin1", "https://tec.openplanner.team/stops/Brsgfon1"], ["https://tec.openplanner.team/stops/LNCsera1", "https://tec.openplanner.team/stops/LRRchen2"], ["https://tec.openplanner.team/stops/LAMrich2", "https://tec.openplanner.team/stops/LAMviam2"], ["https://tec.openplanner.team/stops/H4ba102a", "https://tec.openplanner.team/stops/H4ba102b"], ["https://tec.openplanner.team/stops/H4wa148a", "https://tec.openplanner.team/stops/H4wa148b"], ["https://tec.openplanner.team/stops/X882aaa", "https://tec.openplanner.team/stops/X882aca"], ["https://tec.openplanner.team/stops/Bnivpri2", "https://tec.openplanner.team/stops/Bnivsnu1"], ["https://tec.openplanner.team/stops/H1nv325b", "https://tec.openplanner.team/stops/H1sp355a"], ["https://tec.openplanner.team/stops/LWberno1", "https://tec.openplanner.team/stops/X512aia"], ["https://tec.openplanner.team/stops/LOCbois1", "https://tec.openplanner.team/stops/LOCeg--1"], ["https://tec.openplanner.team/stops/Bnivbne1", "https://tec.openplanner.team/stops/Bnivbne2"], ["https://tec.openplanner.team/stops/LFAbouc1", "https://tec.openplanner.team/stops/LFAtomb2"], ["https://tec.openplanner.team/stops/Btubbsc2", "https://tec.openplanner.team/stops/Btubcim1"], ["https://tec.openplanner.team/stops/Bhaleur2", "https://tec.openplanner.team/stops/Bhalker1"], ["https://tec.openplanner.team/stops/LWOcour1", "https://tec.openplanner.team/stops/LWOsass1"], ["https://tec.openplanner.team/stops/H2mo117a", "https://tec.openplanner.team/stops/H2mo125b"], ["https://tec.openplanner.team/stops/H1ha189b", "https://tec.openplanner.team/stops/H1ha192a"], ["https://tec.openplanner.team/stops/LFArela6", "https://tec.openplanner.team/stops/LFAwale1"], ["https://tec.openplanner.team/stops/LHAclin1", "https://tec.openplanner.team/stops/LVIhv--2"], ["https://tec.openplanner.team/stops/LVAgemm1", "https://tec.openplanner.team/stops/LVAwolf1"], ["https://tec.openplanner.team/stops/Cgonvro1", "https://tec.openplanner.team/stops/Cgonvro2"], ["https://tec.openplanner.team/stops/Bhoegbr2", "https://tec.openplanner.team/stops/Bhoemel1"], ["https://tec.openplanner.team/stops/LHThall4", "https://tec.openplanner.team/stops/LLxconj2"], ["https://tec.openplanner.team/stops/X623aib", "https://tec.openplanner.team/stops/X624aaa"], ["https://tec.openplanner.team/stops/Bgrmfga2", "https://tec.openplanner.team/stops/Bgrmpsn1"], ["https://tec.openplanner.team/stops/Lghbonn1", "https://tec.openplanner.team/stops/Lghremy1"], ["https://tec.openplanner.team/stops/X625aaa", "https://tec.openplanner.team/stops/X625aab"], ["https://tec.openplanner.team/stops/X901afa", "https://tec.openplanner.team/stops/X902bab"], ["https://tec.openplanner.team/stops/Cfaterg3", "https://tec.openplanner.team/stops/Crsapol1"], ["https://tec.openplanner.team/stops/N241abb", "https://tec.openplanner.team/stops/N539aya"], ["https://tec.openplanner.team/stops/N501mua", "https://tec.openplanner.team/stops/N501mub"], ["https://tec.openplanner.team/stops/N385aab", "https://tec.openplanner.team/stops/N385abb"], ["https://tec.openplanner.team/stops/H4bo111b", "https://tec.openplanner.team/stops/H5qu140a"], ["https://tec.openplanner.team/stops/Bjcljau1", "https://tec.openplanner.team/stops/Bjdsbro2"], ["https://tec.openplanner.team/stops/Caujonc1", "https://tec.openplanner.team/stops/N543cqa"], ["https://tec.openplanner.team/stops/Cpibois1", "https://tec.openplanner.team/stops/Cpictra2"], ["https://tec.openplanner.team/stops/Bottcro1", "https://tec.openplanner.team/stops/Bottcro2"], ["https://tec.openplanner.team/stops/H4ar100b", "https://tec.openplanner.team/stops/H4ar173b"], ["https://tec.openplanner.team/stops/LbTaral2", "https://tec.openplanner.team/stops/LbTgeme1"], ["https://tec.openplanner.team/stops/H1ne143a", "https://tec.openplanner.team/stops/H1ne149b"], ["https://tec.openplanner.team/stops/Lchorme2", "https://tec.openplanner.team/stops/Lchsaeg2"], ["https://tec.openplanner.team/stops/LVBdela1", "https://tec.openplanner.team/stops/LVBvaux1"], ["https://tec.openplanner.team/stops/LSZclem1", "https://tec.openplanner.team/stops/LSZnive1"], ["https://tec.openplanner.team/stops/Csdetan1", "https://tec.openplanner.team/stops/Csdpira1"], ["https://tec.openplanner.team/stops/LPclaro2", "https://tec.openplanner.team/stops/LTGsucr2"], ["https://tec.openplanner.team/stops/H1bo108a", "https://tec.openplanner.team/stops/H1bo112b"], ["https://tec.openplanner.team/stops/Bbeaneu4", "https://tec.openplanner.team/stops/Bptblma2"], ["https://tec.openplanner.team/stops/N232ada", "https://tec.openplanner.team/stops/N232adb"], ["https://tec.openplanner.team/stops/Blimrof1", "https://tec.openplanner.team/stops/Brixape2"], ["https://tec.openplanner.team/stops/X653aba", "https://tec.openplanner.team/stops/X667adb"], ["https://tec.openplanner.team/stops/LeUmoor2", "https://tec.openplanner.team/stops/LeUolen2"], ["https://tec.openplanner.team/stops/X870aia", "https://tec.openplanner.team/stops/X870aib"], ["https://tec.openplanner.team/stops/LOVeg--1", "https://tec.openplanner.team/stops/LOVhetr1"], ["https://tec.openplanner.team/stops/X359ama", "https://tec.openplanner.team/stops/X858ahb"], ["https://tec.openplanner.team/stops/H4co110b", "https://tec.openplanner.team/stops/H4co141b"], ["https://tec.openplanner.team/stops/Blimvcg2", "https://tec.openplanner.team/stops/Bottpre2"], ["https://tec.openplanner.team/stops/Lrcchpl2", "https://tec.openplanner.team/stops/Lrcrars2"], ["https://tec.openplanner.team/stops/LMIpatr3", "https://tec.openplanner.team/stops/LMIterr1"], ["https://tec.openplanner.team/stops/LsVgesc2", "https://tec.openplanner.team/stops/LsVsimo2"], ["https://tec.openplanner.team/stops/H1ho125a", "https://tec.openplanner.team/stops/H1ho139a"], ["https://tec.openplanner.team/stops/Bviravi2", "https://tec.openplanner.team/stops/Bvirgar1"], ["https://tec.openplanner.team/stops/NR21aeb", "https://tec.openplanner.team/stops/NR21afa"], ["https://tec.openplanner.team/stops/H4ry129a", "https://tec.openplanner.team/stops/H4ry132a"], ["https://tec.openplanner.team/stops/LMOcorn4", "https://tec.openplanner.team/stops/LMOf35-2"], ["https://tec.openplanner.team/stops/H5rx126b", "https://tec.openplanner.team/stops/H5rx137b"], ["https://tec.openplanner.team/stops/X734aka", "https://tec.openplanner.team/stops/X775aaa"], ["https://tec.openplanner.team/stops/X869acb", "https://tec.openplanner.team/stops/X869afa"], ["https://tec.openplanner.team/stops/Bjodbat1", "https://tec.openplanner.team/stops/Bjodmal2"], ["https://tec.openplanner.team/stops/LSNgerm1", "https://tec.openplanner.team/stops/LSNretr2"], ["https://tec.openplanner.team/stops/N501gba", "https://tec.openplanner.team/stops/N501gbb"], ["https://tec.openplanner.team/stops/X768alb", "https://tec.openplanner.team/stops/X768ald"], ["https://tec.openplanner.team/stops/Lanplat1", "https://tec.openplanner.team/stops/Lanpont1"], ["https://tec.openplanner.team/stops/N202aia", "https://tec.openplanner.team/stops/N204aja"], ["https://tec.openplanner.team/stops/Bbiemse2", "https://tec.openplanner.team/stops/Bboneta1"], ["https://tec.openplanner.team/stops/LSGhagn2", "https://tec.openplanner.team/stops/LSGmale2"], ["https://tec.openplanner.team/stops/LXHadam2", "https://tec.openplanner.team/stops/LXHfalh1"], ["https://tec.openplanner.team/stops/H1by104a", "https://tec.openplanner.team/stops/H1hq127a"], ["https://tec.openplanner.team/stops/LMuvill1", "https://tec.openplanner.team/stops/LSDheus2"], ["https://tec.openplanner.team/stops/LlEzoll1", "https://tec.openplanner.team/stops/LwMzoll1"], ["https://tec.openplanner.team/stops/LBssucr2", "https://tec.openplanner.team/stops/LWNchar2"], ["https://tec.openplanner.team/stops/N534aca", "https://tec.openplanner.team/stops/N534adb"], ["https://tec.openplanner.team/stops/Bohnmes4", "https://tec.openplanner.team/stops/Bohnpla1"], ["https://tec.openplanner.team/stops/LRGeg--1", "https://tec.openplanner.team/stops/LRGeg--2"], ["https://tec.openplanner.team/stops/X882aeb", "https://tec.openplanner.team/stops/X882afa"], ["https://tec.openplanner.team/stops/LPLcond1", "https://tec.openplanner.team/stops/LPLcond2"], ["https://tec.openplanner.team/stops/H4ch120a", "https://tec.openplanner.team/stops/H4ch120c"], ["https://tec.openplanner.team/stops/LEN101-2", "https://tec.openplanner.team/stops/LEN42--1"], ["https://tec.openplanner.team/stops/Ccpblpo2", "https://tec.openplanner.team/stops/H2ch112a"], ["https://tec.openplanner.team/stops/X718aka", "https://tec.openplanner.team/stops/X789aba"], ["https://tec.openplanner.team/stops/X627aaa", "https://tec.openplanner.team/stops/X627aab"], ["https://tec.openplanner.team/stops/Bhalomo2", "https://tec.openplanner.team/stops/Bhalwat1"], ["https://tec.openplanner.team/stops/Cnafont1", "https://tec.openplanner.team/stops/Cnafont2"], ["https://tec.openplanner.team/stops/LJSec--2", "https://tec.openplanner.team/stops/Lpechin2"], ["https://tec.openplanner.team/stops/H1em106b", "https://tec.openplanner.team/stops/H1em109a"], ["https://tec.openplanner.team/stops/X850aia", "https://tec.openplanner.team/stops/X850aib"], ["https://tec.openplanner.team/stops/X639acc", "https://tec.openplanner.team/stops/X639adb"], ["https://tec.openplanner.team/stops/Cdasama2", "https://tec.openplanner.team/stops/CMlpla1"], ["https://tec.openplanner.team/stops/X897afb", "https://tec.openplanner.team/stops/X985aba"], ["https://tec.openplanner.team/stops/H2bh110c", "https://tec.openplanner.team/stops/H2bh118b"], ["https://tec.openplanner.team/stops/H1sy140a", "https://tec.openplanner.team/stops/H1sy140b"], ["https://tec.openplanner.team/stops/X857aaa", "https://tec.openplanner.team/stops/X858aea"], ["https://tec.openplanner.team/stops/LeUkabe1", "https://tec.openplanner.team/stops/LeUrote2"], ["https://tec.openplanner.team/stops/Bjodppe1", "https://tec.openplanner.team/stops/Bjodpvi2"], ["https://tec.openplanner.team/stops/Cjuecha1", "https://tec.openplanner.team/stops/Cjuhame3"], ["https://tec.openplanner.team/stops/LHYec--1", "https://tec.openplanner.team/stops/LSpogne1"], ["https://tec.openplanner.team/stops/H2ha143a", "https://tec.openplanner.team/stops/H2sb233c"], ["https://tec.openplanner.team/stops/Cjuloos2", "https://tec.openplanner.team/stops/Cjuplco3"], ["https://tec.openplanner.team/stops/Crewaba2", "https://tec.openplanner.team/stops/Crewatb1"], ["https://tec.openplanner.team/stops/LJOvill2", "https://tec.openplanner.team/stops/LXHbell2"], ["https://tec.openplanner.team/stops/Bbcohou3", "https://tec.openplanner.team/stops/Bhenasc2"], ["https://tec.openplanner.team/stops/N874afa", "https://tec.openplanner.team/stops/N874afb"], ["https://tec.openplanner.team/stops/Blsmcha2", "https://tec.openplanner.team/stops/Blsmvan2"], ["https://tec.openplanner.team/stops/Ccomott1", "https://tec.openplanner.team/stops/Ccoptca2"], ["https://tec.openplanner.team/stops/H5rx126a", "https://tec.openplanner.team/stops/H5rx137a"], ["https://tec.openplanner.team/stops/LFIinse1", "https://tec.openplanner.team/stops/LXofont2"], ["https://tec.openplanner.team/stops/H4lz123a", "https://tec.openplanner.team/stops/H4lz157a"], ["https://tec.openplanner.team/stops/H2ca103a", "https://tec.openplanner.team/stops/H2ca109b"], ["https://tec.openplanner.team/stops/H4ty342b", "https://tec.openplanner.team/stops/H4ty406a"], ["https://tec.openplanner.team/stops/Bnivfro2", "https://tec.openplanner.team/stops/Bnivgen2"], ["https://tec.openplanner.team/stops/Cmyland2", "https://tec.openplanner.team/stops/Cmymarb1"], ["https://tec.openplanner.team/stops/X813aab", "https://tec.openplanner.team/stops/X813adb"], ["https://tec.openplanner.team/stops/X756aba", "https://tec.openplanner.team/stops/X756abb"], ["https://tec.openplanner.team/stops/LVMfoli1", "https://tec.openplanner.team/stops/LVMrout1"], ["https://tec.openplanner.team/stops/Ljecocc2", "https://tec.openplanner.team/stops/LjeGRPMC"], ["https://tec.openplanner.team/stops/Cfrfaub3", "https://tec.openplanner.team/stops/Cfrfaub4"], ["https://tec.openplanner.team/stops/Cfmcoro2", "https://tec.openplanner.team/stops/Cfmgrmo1"], ["https://tec.openplanner.team/stops/Borbode1", "https://tec.openplanner.team/stops/Btslpic6"], ["https://tec.openplanner.team/stops/Cgualno1", "https://tec.openplanner.team/stops/Cnafont2"], ["https://tec.openplanner.team/stops/LSldurb2", "https://tec.openplanner.team/stops/X919ajd"], ["https://tec.openplanner.team/stops/LFAplan1", "https://tec.openplanner.team/stops/LFAsauv1"], ["https://tec.openplanner.team/stops/Llgchev2", "https://tec.openplanner.team/stops/Llgreyn1"], ["https://tec.openplanner.team/stops/N110aaa", "https://tec.openplanner.team/stops/N110agb"], ["https://tec.openplanner.team/stops/X730abb", "https://tec.openplanner.team/stops/X730aca"], ["https://tec.openplanner.team/stops/LWMchpl1", "https://tec.openplanner.team/stops/LWMchpl2"], ["https://tec.openplanner.team/stops/LFalieg1", "https://tec.openplanner.team/stops/LFarhuy1"], ["https://tec.openplanner.team/stops/N340acc", "https://tec.openplanner.team/stops/N340ada"], ["https://tec.openplanner.team/stops/N134alb", "https://tec.openplanner.team/stops/N135bda"], ["https://tec.openplanner.team/stops/H2ha136a", "https://tec.openplanner.team/stops/H2ha136b"], ["https://tec.openplanner.team/stops/N383aea", "https://tec.openplanner.team/stops/N383aeb"], ["https://tec.openplanner.team/stops/NC44aab", "https://tec.openplanner.team/stops/NC44aha"], ["https://tec.openplanner.team/stops/N522aha", "https://tec.openplanner.team/stops/N522aib"], ["https://tec.openplanner.team/stops/X765afa", "https://tec.openplanner.team/stops/X765agb"], ["https://tec.openplanner.team/stops/N576aaa", "https://tec.openplanner.team/stops/N576abb"], ["https://tec.openplanner.team/stops/H4fl113a", "https://tec.openplanner.team/stops/H4fl113b"], ["https://tec.openplanner.team/stops/NL78abb", "https://tec.openplanner.team/stops/NL78ahc"], ["https://tec.openplanner.team/stops/Bbeabme2", "https://tec.openplanner.team/stops/Bbeaneu3"], ["https://tec.openplanner.team/stops/LBpbruy1", "https://tec.openplanner.team/stops/LBpcren2"], ["https://tec.openplanner.team/stops/Bchacen1", "https://tec.openplanner.team/stops/Bchamco1"], ["https://tec.openplanner.team/stops/Cmechnd1", "https://tec.openplanner.team/stops/Cwxplac2"], ["https://tec.openplanner.team/stops/N232afa", "https://tec.openplanner.team/stops/N232afb"], ["https://tec.openplanner.team/stops/N512aob", "https://tec.openplanner.team/stops/NL68adc"], ["https://tec.openplanner.team/stops/X938aba", "https://tec.openplanner.team/stops/X938acb"], ["https://tec.openplanner.team/stops/X910adb", "https://tec.openplanner.team/stops/X910aib"], ["https://tec.openplanner.team/stops/H1gh163b", "https://tec.openplanner.team/stops/H1gh167b"], ["https://tec.openplanner.team/stops/LPLc49-1", "https://tec.openplanner.team/stops/LPLc49-2"], ["https://tec.openplanner.team/stops/Llgcite2", "https://tec.openplanner.team/stops/Llgcite4"], ["https://tec.openplanner.team/stops/LaNdorf2", "https://tec.openplanner.team/stops/LsC216-1"], ["https://tec.openplanner.team/stops/H4av103a", "https://tec.openplanner.team/stops/H4av105a"], ["https://tec.openplanner.team/stops/Llglefe2", "https://tec.openplanner.team/stops/Llgwild8"], ["https://tec.openplanner.team/stops/H1ne142a", "https://tec.openplanner.team/stops/H1ne147a"], ["https://tec.openplanner.team/stops/Cchdigu1", "https://tec.openplanner.team/stops/Cchheig1"], ["https://tec.openplanner.team/stops/N506bea", "https://tec.openplanner.team/stops/N506bkb"], ["https://tec.openplanner.team/stops/N535aoa", "https://tec.openplanner.team/stops/N535aob"], ["https://tec.openplanner.team/stops/Bsdecdi1", "https://tec.openplanner.team/stops/N526adb"], ["https://tec.openplanner.team/stops/N106aga", "https://tec.openplanner.team/stops/N106aha"], ["https://tec.openplanner.team/stops/H1eo104a", "https://tec.openplanner.team/stops/H1mj127b"], ["https://tec.openplanner.team/stops/Bhengou2", "https://tec.openplanner.team/stops/Bhensei1"], ["https://tec.openplanner.team/stops/Bcsebde1", "https://tec.openplanner.team/stops/Bcsebde2"], ["https://tec.openplanner.team/stops/X820aeb", "https://tec.openplanner.team/stops/X827aaa"], ["https://tec.openplanner.team/stops/H1ba104a", "https://tec.openplanner.team/stops/H1ba104b"], ["https://tec.openplanner.team/stops/LLNogne1", "https://tec.openplanner.team/stops/LLNogne2"], ["https://tec.openplanner.team/stops/N584ayb", "https://tec.openplanner.team/stops/N584azb"], ["https://tec.openplanner.team/stops/LENcroi2", "https://tec.openplanner.team/stops/LENengi1"], ["https://tec.openplanner.team/stops/Lghberl2", "https://tec.openplanner.team/stops/Lghcfer1"], ["https://tec.openplanner.team/stops/LlgCATH1", "https://tec.openplanner.team/stops/LlgOPER4"], ["https://tec.openplanner.team/stops/LLteg--1", "https://tec.openplanner.team/stops/LLtrout1"], ["https://tec.openplanner.team/stops/LHTeg--1", "https://tec.openplanner.team/stops/LHTeg--4"], ["https://tec.openplanner.team/stops/H4ss155a", "https://tec.openplanner.team/stops/H4ss157b"], ["https://tec.openplanner.team/stops/N234aba", "https://tec.openplanner.team/stops/N234adb"], ["https://tec.openplanner.team/stops/Lhragri2", "https://tec.openplanner.team/stops/Lhrdron2"], ["https://tec.openplanner.team/stops/N501cxa", "https://tec.openplanner.team/stops/N501cza"], ["https://tec.openplanner.team/stops/Brebeau1", "https://tec.openplanner.team/stops/Brebeau2"], ["https://tec.openplanner.team/stops/Cmlecha1", "https://tec.openplanner.team/stops/CMsud1"], ["https://tec.openplanner.team/stops/LBdcarr1", "https://tec.openplanner.team/stops/LSMchat2"], ["https://tec.openplanner.team/stops/H4eg104b", "https://tec.openplanner.team/stops/H4eg107b"], ["https://tec.openplanner.team/stops/Cflchel3", "https://tec.openplanner.team/stops/Cflchel6"], ["https://tec.openplanner.team/stops/Bjod7co2", "https://tec.openplanner.team/stops/Bjodeco2"], ["https://tec.openplanner.team/stops/Bcrbast1", "https://tec.openplanner.team/stops/Bcrbcel1"], ["https://tec.openplanner.team/stops/Ldicorb2", "https://tec.openplanner.team/stops/Ldifoye1"], ["https://tec.openplanner.team/stops/Bgnvcha2", "https://tec.openplanner.team/stops/Bgnvoha2"], ["https://tec.openplanner.team/stops/X604aca", "https://tec.openplanner.team/stops/X604adb"], ["https://tec.openplanner.team/stops/LDOanes1", "https://tec.openplanner.team/stops/LGOcana2"], ["https://tec.openplanner.team/stops/X879anb", "https://tec.openplanner.team/stops/X879aqa"], ["https://tec.openplanner.team/stops/Bnivaig2", "https://tec.openplanner.team/stops/Bnivver2"], ["https://tec.openplanner.team/stops/N135aba", "https://tec.openplanner.team/stops/N135akb"], ["https://tec.openplanner.team/stops/H2go113b", "https://tec.openplanner.team/stops/H2go115a"], ["https://tec.openplanner.team/stops/H1ha194a", "https://tec.openplanner.team/stops/H1vh135a"], ["https://tec.openplanner.team/stops/H4do102a", "https://tec.openplanner.team/stops/H4do102b"], ["https://tec.openplanner.team/stops/H4mt221a", "https://tec.openplanner.team/stops/H4mt221b"], ["https://tec.openplanner.team/stops/LCTfair1", "https://tec.openplanner.team/stops/LFIeg--2"], ["https://tec.openplanner.team/stops/N579aba", "https://tec.openplanner.team/stops/N579ada"], ["https://tec.openplanner.team/stops/LBoegli1", "https://tec.openplanner.team/stops/LOCerzy1"], ["https://tec.openplanner.team/stops/LCsfize1", "https://tec.openplanner.team/stops/LCsjone2"], ["https://tec.openplanner.team/stops/X636aoa", "https://tec.openplanner.team/stops/X636aob"], ["https://tec.openplanner.team/stops/Bove4ko1", "https://tec.openplanner.team/stops/Bove4ko2"], ["https://tec.openplanner.team/stops/Bixefra1", "https://tec.openplanner.team/stops/Bixlozo1"], ["https://tec.openplanner.team/stops/LvAwere2", "https://tec.openplanner.team/stops/LwEdorf2"], ["https://tec.openplanner.team/stops/X754abb", "https://tec.openplanner.team/stops/X754acb"], ["https://tec.openplanner.team/stops/LSPbalm1", "https://tec.openplanner.team/stops/LSPbass1"], ["https://tec.openplanner.team/stops/LMFmoul1", "https://tec.openplanner.team/stops/LMFmoul2"], ["https://tec.openplanner.team/stops/H1so145a", "https://tec.openplanner.team/stops/H1so145b"], ["https://tec.openplanner.team/stops/X724acb", "https://tec.openplanner.team/stops/X724ada"], ["https://tec.openplanner.team/stops/H1ms275a", "https://tec.openplanner.team/stops/H1ms275b"], ["https://tec.openplanner.team/stops/X614aoa", "https://tec.openplanner.team/stops/X614bdb"], ["https://tec.openplanner.team/stops/H1gn152a", "https://tec.openplanner.team/stops/H1mq200b"], ["https://tec.openplanner.team/stops/LbUhuge1", "https://tec.openplanner.team/stops/LbUverb2"], ["https://tec.openplanner.team/stops/Caih1632", "https://tec.openplanner.team/stops/Cairous2"], ["https://tec.openplanner.team/stops/H2ll195a", "https://tec.openplanner.team/stops/H2sv259b"], ["https://tec.openplanner.team/stops/X783aba", "https://tec.openplanner.team/stops/X783abb"], ["https://tec.openplanner.team/stops/Cgnbast1", "https://tec.openplanner.team/stops/Cgnbast2"], ["https://tec.openplanner.team/stops/X948ava", "https://tec.openplanner.team/stops/X948avb"], ["https://tec.openplanner.team/stops/Lbrbass2", "https://tec.openplanner.team/stops/Lbrfune*"], ["https://tec.openplanner.team/stops/Ccicouc2", "https://tec.openplanner.team/stops/Ccinali1"], ["https://tec.openplanner.team/stops/N538acb", "https://tec.openplanner.team/stops/N538apa"], ["https://tec.openplanner.team/stops/X880aga", "https://tec.openplanner.team/stops/X880age"], ["https://tec.openplanner.team/stops/H1ms904a", "https://tec.openplanner.team/stops/H1ms924a"], ["https://tec.openplanner.team/stops/X661ana", "https://tec.openplanner.team/stops/X661anb"], ["https://tec.openplanner.team/stops/LeYauss2", "https://tec.openplanner.team/stops/LeYfeld2"], ["https://tec.openplanner.team/stops/X390aha", "https://tec.openplanner.team/stops/X902aha"], ["https://tec.openplanner.team/stops/LCsjone2", "https://tec.openplanner.team/stops/LSCchap2"], ["https://tec.openplanner.team/stops/X878ada", "https://tec.openplanner.team/stops/X898aab"], ["https://tec.openplanner.team/stops/H3lr132b", "https://tec.openplanner.team/stops/H3th135d"], ["https://tec.openplanner.team/stops/LLEfagn1", "https://tec.openplanner.team/stops/LQacabi1"], ["https://tec.openplanner.team/stops/Caibras2", "https://tec.openplanner.team/stops/Caiecol2"], ["https://tec.openplanner.team/stops/Crolema3", "https://tec.openplanner.team/stops/Crolema4"], ["https://tec.openplanner.team/stops/H4mo186a", "https://tec.openplanner.team/stops/H4mo208a"], ["https://tec.openplanner.team/stops/LJedonc2", "https://tec.openplanner.team/stops/LJedonc3"], ["https://tec.openplanner.team/stops/Llgverg1", "https://tec.openplanner.team/stops/Lrcvill1"], ["https://tec.openplanner.team/stops/X633aka", "https://tec.openplanner.team/stops/X634aab"], ["https://tec.openplanner.team/stops/X359acb", "https://tec.openplanner.team/stops/X359adb"], ["https://tec.openplanner.team/stops/N125aaa", "https://tec.openplanner.team/stops/N125aab"], ["https://tec.openplanner.team/stops/N516aoa", "https://tec.openplanner.team/stops/N516aoc"], ["https://tec.openplanner.team/stops/X638aba", "https://tec.openplanner.team/stops/X638acb"], ["https://tec.openplanner.team/stops/LBGroma1", "https://tec.openplanner.team/stops/LLncime2"], ["https://tec.openplanner.team/stops/X605ada", "https://tec.openplanner.team/stops/X605alb"], ["https://tec.openplanner.team/stops/Loucham3", "https://tec.openplanner.team/stops/Louoran1"], ["https://tec.openplanner.team/stops/LOdcris1", "https://tec.openplanner.team/stops/LOdcris2"], ["https://tec.openplanner.team/stops/LPLbiol1", "https://tec.openplanner.team/stops/LRRcole1"], ["https://tec.openplanner.team/stops/X659ada", "https://tec.openplanner.team/stops/X659adb"], ["https://tec.openplanner.team/stops/H1gh144b", "https://tec.openplanner.team/stops/H1gh153b"], ["https://tec.openplanner.team/stops/X943ada", "https://tec.openplanner.team/stops/X943aeb"], ["https://tec.openplanner.team/stops/Bmoufil2", "https://tec.openplanner.team/stops/Bottvtc1"], ["https://tec.openplanner.team/stops/Bmrlegl2", "https://tec.openplanner.team/stops/Bmrlhau1"], ["https://tec.openplanner.team/stops/Lsnbure1", "https://tec.openplanner.team/stops/Ltihorl1"], ["https://tec.openplanner.team/stops/Bovecha1", "https://tec.openplanner.team/stops/Bpechos2"], ["https://tec.openplanner.team/stops/LSIvieu2", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://tec.openplanner.team/stops/H4mt215b", "https://tec.openplanner.team/stops/H4mx120b"], ["https://tec.openplanner.team/stops/H1fr114a", "https://tec.openplanner.team/stops/H1fr129b"], ["https://tec.openplanner.team/stops/X836abb", "https://tec.openplanner.team/stops/X839aab"], ["https://tec.openplanner.team/stops/N553aka", "https://tec.openplanner.team/stops/N553akb"], ["https://tec.openplanner.team/stops/LBHhuyn1", "https://tec.openplanner.team/stops/LBHhuyn2"], ["https://tec.openplanner.team/stops/Cmyboci1", "https://tec.openplanner.team/stops/Cmypela2"], ["https://tec.openplanner.team/stops/Bblapin1", "https://tec.openplanner.team/stops/Bblapin2"], ["https://tec.openplanner.team/stops/N229akb", "https://tec.openplanner.team/stops/N229akc"], ["https://tec.openplanner.team/stops/X801apb", "https://tec.openplanner.team/stops/X801aua"], ["https://tec.openplanner.team/stops/N501ioa", "https://tec.openplanner.team/stops/N501jcb"], ["https://tec.openplanner.team/stops/N343aja", "https://tec.openplanner.team/stops/N343aoa"], ["https://tec.openplanner.team/stops/N162aea", "https://tec.openplanner.team/stops/N162afb"], ["https://tec.openplanner.team/stops/H1hh114a", "https://tec.openplanner.team/stops/H1hh116a"], ["https://tec.openplanner.team/stops/Cjxpris2", "https://tec.openplanner.team/stops/Cmlsana1"], ["https://tec.openplanner.team/stops/Balswwe1", "https://tec.openplanner.team/stops/Bhalvel1"], ["https://tec.openplanner.team/stops/Bsdafra1", "https://tec.openplanner.team/stops/Bsdampe2"], ["https://tec.openplanner.team/stops/LHaodei1", "https://tec.openplanner.team/stops/LHarenn3"], ["https://tec.openplanner.team/stops/LeUgulc2", "https://tec.openplanner.team/stops/LeUschu1"], ["https://tec.openplanner.team/stops/LSGcolo2", "https://tec.openplanner.team/stops/LSkwarf3"], ["https://tec.openplanner.team/stops/Bnilspe1", "https://tec.openplanner.team/stops/Bnilspe2"], ["https://tec.openplanner.team/stops/LLrdrev2", "https://tec.openplanner.team/stops/LLrhaut2"], ["https://tec.openplanner.team/stops/X754aaa", "https://tec.openplanner.team/stops/X779afb"], ["https://tec.openplanner.team/stops/Bhoemel1", "https://tec.openplanner.team/stops/Bovejei1"], ["https://tec.openplanner.team/stops/H1mv239a", "https://tec.openplanner.team/stops/H1mv241b"], ["https://tec.openplanner.team/stops/LENengi1", "https://tec.openplanner.team/stops/LENindu2"], ["https://tec.openplanner.team/stops/H1bi104b", "https://tec.openplanner.team/stops/H1mm122c"], ["https://tec.openplanner.team/stops/LoDkoll2", "https://tec.openplanner.team/stops/LrUoudl2"], ["https://tec.openplanner.team/stops/Ltigare1", "https://tec.openplanner.team/stops/Ltinico2"], ["https://tec.openplanner.team/stops/LaMades1", "https://tec.openplanner.team/stops/LmDkoel2"], ["https://tec.openplanner.team/stops/Cmlasie1", "https://tec.openplanner.team/stops/Cmlpche2"], ["https://tec.openplanner.team/stops/Clcfall1", "https://tec.openplanner.team/stops/Clcfall3"], ["https://tec.openplanner.team/stops/N343acb", "https://tec.openplanner.team/stops/N343akb"], ["https://tec.openplanner.team/stops/X640apb", "https://tec.openplanner.team/stops/X642aac"], ["https://tec.openplanner.team/stops/LLrdigu1", "https://tec.openplanner.team/stops/LSPclai2"], ["https://tec.openplanner.team/stops/N501ihb", "https://tec.openplanner.team/stops/N501ihz"], ["https://tec.openplanner.team/stops/N323aab", "https://tec.openplanner.team/stops/N387ahb"], ["https://tec.openplanner.team/stops/Lveensi2", "https://tec.openplanner.team/stops/Lveleje1"], ["https://tec.openplanner.team/stops/H4og208a", "https://tec.openplanner.team/stops/H4og213b"], ["https://tec.openplanner.team/stops/X908ara", "https://tec.openplanner.team/stops/X908asb"], ["https://tec.openplanner.team/stops/X739aja", "https://tec.openplanner.team/stops/X912aia"], ["https://tec.openplanner.team/stops/X992aja", "https://tec.openplanner.team/stops/X992akb"], ["https://tec.openplanner.team/stops/H5wo128a", "https://tec.openplanner.team/stops/H5wo128b"], ["https://tec.openplanner.team/stops/N101aea", "https://tec.openplanner.team/stops/N101aeb"], ["https://tec.openplanner.team/stops/LAUvdab1", "https://tec.openplanner.team/stops/LWRtroi2"], ["https://tec.openplanner.team/stops/H1fr123b", "https://tec.openplanner.team/stops/H1fr129a"], ["https://tec.openplanner.team/stops/LROcent2", "https://tec.openplanner.team/stops/LROrtba2"], ["https://tec.openplanner.team/stops/X721anb", "https://tec.openplanner.team/stops/X721ata"], ["https://tec.openplanner.team/stops/LhSbruc2", "https://tec.openplanner.team/stops/LhSschn2"], ["https://tec.openplanner.team/stops/Cnachcu1", "https://tec.openplanner.team/stops/Cnathib1"], ["https://tec.openplanner.team/stops/H3bi107a", "https://tec.openplanner.team/stops/H3bi112b"], ["https://tec.openplanner.team/stops/Cpcathe1", "https://tec.openplanner.team/stops/Cpctrau2"], ["https://tec.openplanner.team/stops/X882aba", "https://tec.openplanner.team/stops/X882amc"], ["https://tec.openplanner.team/stops/Bmsgcap2", "https://tec.openplanner.team/stops/Bottbru2"], ["https://tec.openplanner.team/stops/X947abb", "https://tec.openplanner.team/stops/X947acb"], ["https://tec.openplanner.team/stops/H2ll194a", "https://tec.openplanner.team/stops/H2ll194b"], ["https://tec.openplanner.team/stops/N553ada", "https://tec.openplanner.team/stops/N553amb"], ["https://tec.openplanner.team/stops/LDaeg--2", "https://tec.openplanner.team/stops/LGEcons2"], ["https://tec.openplanner.team/stops/LVIdepo2", "https://tec.openplanner.team/stops/LVItcm-1"], ["https://tec.openplanner.team/stops/X870afa", "https://tec.openplanner.team/stops/X870aha"], ["https://tec.openplanner.team/stops/N136adb", "https://tec.openplanner.team/stops/N136aeb"], ["https://tec.openplanner.team/stops/H1gr113b", "https://tec.openplanner.team/stops/H1gr116b"], ["https://tec.openplanner.team/stops/H4vx363a", "https://tec.openplanner.team/stops/H4vx363b"], ["https://tec.openplanner.team/stops/Ljubods2", "https://tec.openplanner.team/stops/Ljuroch2"], ["https://tec.openplanner.team/stops/N348adb", "https://tec.openplanner.team/stops/N352abb"], ["https://tec.openplanner.team/stops/Blingar1", "https://tec.openplanner.team/stops/Bracrpe2"], ["https://tec.openplanner.team/stops/H1tt106a", "https://tec.openplanner.team/stops/H1tt109b"], ["https://tec.openplanner.team/stops/LAMec--2", "https://tec.openplanner.team/stops/LAMgare2"], ["https://tec.openplanner.team/stops/Cgywaut4", "https://tec.openplanner.team/stops/CMmarab1"], ["https://tec.openplanner.team/stops/X892aja", "https://tec.openplanner.team/stops/X892ajb"], ["https://tec.openplanner.team/stops/N109aaa", "https://tec.openplanner.team/stops/N109aab"], ["https://tec.openplanner.team/stops/H1by100c", "https://tec.openplanner.team/stops/H1sy143d"], ["https://tec.openplanner.team/stops/Lsepcha2", "https://tec.openplanner.team/stops/Lsepcha4"], ["https://tec.openplanner.team/stops/X601bza", "https://tec.openplanner.team/stops/X601dfa"], ["https://tec.openplanner.team/stops/N338aab", "https://tec.openplanner.team/stops/N338aea"], ["https://tec.openplanner.team/stops/LXhhaka1", "https://tec.openplanner.team/stops/LXhvanh2"], ["https://tec.openplanner.team/stops/N501izb", "https://tec.openplanner.team/stops/N501jbb"], ["https://tec.openplanner.team/stops/N531adb", "https://tec.openplanner.team/stops/N534bma"], ["https://tec.openplanner.team/stops/Brixga12", "https://tec.openplanner.team/stops/Brixpje1"], ["https://tec.openplanner.team/stops/N135ayb", "https://tec.openplanner.team/stops/N135bib"], ["https://tec.openplanner.team/stops/Ltiegli1", "https://tec.openplanner.team/stops/Ltipass2"], ["https://tec.openplanner.team/stops/LDOanes1", "https://tec.openplanner.team/stops/LDOdavi2"], ["https://tec.openplanner.team/stops/N555aba", "https://tec.openplanner.team/stops/N573aba"], ["https://tec.openplanner.team/stops/X650afd", "https://tec.openplanner.team/stops/X650aga"], ["https://tec.openplanner.team/stops/LVLchem1", "https://tec.openplanner.team/stops/LVLhalb4"], ["https://tec.openplanner.team/stops/X904afb", "https://tec.openplanner.team/stops/X951acb"], ["https://tec.openplanner.team/stops/Brebchb1", "https://tec.openplanner.team/stops/Brebrog1"], ["https://tec.openplanner.team/stops/N543bbc", "https://tec.openplanner.team/stops/N554aba"], ["https://tec.openplanner.team/stops/X942aab", "https://tec.openplanner.team/stops/X942aba"], ["https://tec.openplanner.team/stops/LbTgeme2", "https://tec.openplanner.team/stops/LwYboui1"], ["https://tec.openplanner.team/stops/Ladjaur1", "https://tec.openplanner.team/stops/Ladpire1"], ["https://tec.openplanner.team/stops/N529aja", "https://tec.openplanner.team/stops/N529ajb"], ["https://tec.openplanner.team/stops/X759aba", "https://tec.openplanner.team/stops/X759afa"], ["https://tec.openplanner.team/stops/H4wi167a", "https://tec.openplanner.team/stops/H4wi167b"], ["https://tec.openplanner.team/stops/N351anb", "https://tec.openplanner.team/stops/X351acb"], ["https://tec.openplanner.team/stops/Bnivbau2", "https://tec.openplanner.team/stops/Bnivlai1"], ["https://tec.openplanner.team/stops/Beclbse2", "https://tec.openplanner.team/stops/Beclpma1"], ["https://tec.openplanner.team/stops/LSGec--2", "https://tec.openplanner.team/stops/LSGeg--1"], ["https://tec.openplanner.team/stops/LBEssab2", "https://tec.openplanner.team/stops/Lcaboun3"], ["https://tec.openplanner.team/stops/LBNeu711", "https://tec.openplanner.team/stops/LBNover2"], ["https://tec.openplanner.team/stops/Lbemc--2", "https://tec.openplanner.team/stops/Ljupiet2"], ["https://tec.openplanner.team/stops/H1ho122b", "https://tec.openplanner.team/stops/H1ho136a"], ["https://tec.openplanner.team/stops/LbUpost1", "https://tec.openplanner.team/stops/LbUverb1"], ["https://tec.openplanner.team/stops/Ljubois2", "https://tec.openplanner.team/stops/Ljujaur2"], ["https://tec.openplanner.team/stops/LCPvign1", "https://tec.openplanner.team/stops/LCPvign2"], ["https://tec.openplanner.team/stops/Bhenard3", "https://tec.openplanner.team/stops/Bhenard4"], ["https://tec.openplanner.team/stops/H1au103b", "https://tec.openplanner.team/stops/H1bx104a"], ["https://tec.openplanner.team/stops/LMsec--1", "https://tec.openplanner.team/stops/LMsec--2"], ["https://tec.openplanner.team/stops/LbOlier1", "https://tec.openplanner.team/stops/LbOre152"], ["https://tec.openplanner.team/stops/H4ga154b", "https://tec.openplanner.team/stops/H4vx360a"], ["https://tec.openplanner.team/stops/N115aeb", "https://tec.openplanner.team/stops/N115afa"], ["https://tec.openplanner.team/stops/X908abb", "https://tec.openplanner.team/stops/X955agb"], ["https://tec.openplanner.team/stops/Bbuzeta1", "https://tec.openplanner.team/stops/Cobhaut1"], ["https://tec.openplanner.team/stops/Cdostco1", "https://tec.openplanner.team/stops/Ctuplac2"], ["https://tec.openplanner.team/stops/LFrcent1", "https://tec.openplanner.team/stops/LHvvill*"], ["https://tec.openplanner.team/stops/Cpclibe2", "https://tec.openplanner.team/stops/Cpclibe4"], ["https://tec.openplanner.team/stops/Cmygbbo1", "https://tec.openplanner.team/stops/Cmygbbo2"], ["https://tec.openplanner.team/stops/X561aaa", "https://tec.openplanner.team/stops/X575aca"], ["https://tec.openplanner.team/stops/X750bdb", "https://tec.openplanner.team/stops/X750bfa"], ["https://tec.openplanner.team/stops/H4ev120b", "https://tec.openplanner.team/stops/H4ev124b"], ["https://tec.openplanner.team/stops/LhObull1", "https://tec.openplanner.team/stops/LwEdorf2"], ["https://tec.openplanner.team/stops/Lve-isi2", "https://tec.openplanner.team/stops/Lvevieu2"], ["https://tec.openplanner.team/stops/X979aaa", "https://tec.openplanner.team/stops/X979aib"], ["https://tec.openplanner.team/stops/H5wo125a", "https://tec.openplanner.team/stops/H5wo134a"], ["https://tec.openplanner.team/stops/X768ajb", "https://tec.openplanner.team/stops/X769amb"], ["https://tec.openplanner.team/stops/LbTcarm1", "https://tec.openplanner.team/stops/LbTdoma1"], ["https://tec.openplanner.team/stops/X681aca", "https://tec.openplanner.team/stops/X695afa"], ["https://tec.openplanner.team/stops/Lbocomm1", "https://tec.openplanner.team/stops/Lbocomm2"], ["https://tec.openplanner.team/stops/Btubind2", "https://tec.openplanner.team/stops/Btubmon2"], ["https://tec.openplanner.team/stops/H1so142a", "https://tec.openplanner.team/stops/H1so142c"], ["https://tec.openplanner.team/stops/Cjxcoll1", "https://tec.openplanner.team/stops/Cjxpann1"], ["https://tec.openplanner.team/stops/H5qu148a", "https://tec.openplanner.team/stops/H5qu148b"], ["https://tec.openplanner.team/stops/N110aha", "https://tec.openplanner.team/stops/N110ahb"], ["https://tec.openplanner.team/stops/Bwavbar1", "https://tec.openplanner.team/stops/Bwavlav2"], ["https://tec.openplanner.team/stops/X882aab", "https://tec.openplanner.team/stops/X882aea"], ["https://tec.openplanner.team/stops/N507aad", "https://tec.openplanner.team/stops/NL68aac"], ["https://tec.openplanner.team/stops/Btanpla1", "https://tec.openplanner.team/stops/Btanpla2"], ["https://tec.openplanner.team/stops/H4ga159a", "https://tec.openplanner.team/stops/H4ga162a"], ["https://tec.openplanner.team/stops/H1ro130a", "https://tec.openplanner.team/stops/H1ro135a"], ["https://tec.openplanner.team/stops/Lsepapi3", "https://tec.openplanner.team/stops/Lseruis2"], ["https://tec.openplanner.team/stops/X713aja", "https://tec.openplanner.team/stops/X713ajd"], ["https://tec.openplanner.team/stops/LbRfrie1", "https://tec.openplanner.team/stops/LbRfrie2"], ["https://tec.openplanner.team/stops/H4wg121a", "https://tec.openplanner.team/stops/H4wg122a"], ["https://tec.openplanner.team/stops/N521ajb", "https://tec.openplanner.team/stops/N521aka"], ["https://tec.openplanner.team/stops/X745ada", "https://tec.openplanner.team/stops/X745adb"], ["https://tec.openplanner.team/stops/Cfastan1", "https://tec.openplanner.team/stops/Cfastan2"], ["https://tec.openplanner.team/stops/N338aea", "https://tec.openplanner.team/stops/N338aeb"], ["https://tec.openplanner.team/stops/X666aea", "https://tec.openplanner.team/stops/X666ama"], ["https://tec.openplanner.team/stops/X782afa", "https://tec.openplanner.team/stops/X782aha"], ["https://tec.openplanner.team/stops/Cmmjami4", "https://tec.openplanner.team/stops/Cmmschw2"], ["https://tec.openplanner.team/stops/LOTsav-2", "https://tec.openplanner.team/stops/LRUhama1"], ["https://tec.openplanner.team/stops/Cfabnat1", "https://tec.openplanner.team/stops/Cfapiro2"], ["https://tec.openplanner.team/stops/Cjudest1", "https://tec.openplanner.team/stops/Cjudest2"], ["https://tec.openplanner.team/stops/H5ma180a", "https://tec.openplanner.team/stops/H5ma185b"], ["https://tec.openplanner.team/stops/LREheyd1", "https://tec.openplanner.team/stops/LREsp901"], ["https://tec.openplanner.team/stops/Cthcrom2", "https://tec.openplanner.team/stops/Cthrwai1"], ["https://tec.openplanner.team/stops/Cbfcham2", "https://tec.openplanner.team/stops/Cbfcham3"], ["https://tec.openplanner.team/stops/LCIpiet1", "https://tec.openplanner.team/stops/LCIsucr2"], ["https://tec.openplanner.team/stops/X396adb", "https://tec.openplanner.team/stops/X919ama"], ["https://tec.openplanner.team/stops/X657aia", "https://tec.openplanner.team/stops/X657aja"], ["https://tec.openplanner.team/stops/Bnivcom2", "https://tec.openplanner.team/stops/Bnivvai2"], ["https://tec.openplanner.team/stops/H2ma208a", "https://tec.openplanner.team/stops/H2ma263a"], ["https://tec.openplanner.team/stops/X652abb", "https://tec.openplanner.team/stops/X652aea"], ["https://tec.openplanner.team/stops/X886aab", "https://tec.openplanner.team/stops/X886ahb"], ["https://tec.openplanner.team/stops/H4ga161a", "https://tec.openplanner.team/stops/H4ga165b"], ["https://tec.openplanner.team/stops/LbRfrie1", "https://tec.openplanner.team/stops/LwTzent1"], ["https://tec.openplanner.team/stops/LbOkalv1", "https://tec.openplanner.team/stops/LbOlier2"], ["https://tec.openplanner.team/stops/Lmofays1", "https://tec.openplanner.team/stops/Lmohomv2"], ["https://tec.openplanner.team/stops/LbRfrie2", "https://tec.openplanner.team/stops/LmAgruf2"], ["https://tec.openplanner.team/stops/Lgrspir1", "https://tec.openplanner.team/stops/Lgrspir2"], ["https://tec.openplanner.team/stops/Cmmcarr1", "https://tec.openplanner.team/stops/Cmmcarr2"], ["https://tec.openplanner.team/stops/N501itb", "https://tec.openplanner.team/stops/N501iub"], ["https://tec.openplanner.team/stops/N535atb", "https://tec.openplanner.team/stops/N535aub"], ["https://tec.openplanner.team/stops/X757ahb", "https://tec.openplanner.team/stops/X757ama"], ["https://tec.openplanner.team/stops/H4ty318a", "https://tec.openplanner.team/stops/H4ty318b"], ["https://tec.openplanner.team/stops/LCpegli1", "https://tec.openplanner.team/stops/LCpegli2"], ["https://tec.openplanner.team/stops/H4mx117b", "https://tec.openplanner.team/stops/H4mx120a"], ["https://tec.openplanner.team/stops/X982afa", "https://tec.openplanner.team/stops/X982bxb"], ["https://tec.openplanner.team/stops/Cmogrbu2", "https://tec.openplanner.team/stops/Cmogtri1"], ["https://tec.openplanner.team/stops/LTiflor1", "https://tec.openplanner.team/stops/LTiterr2"], ["https://tec.openplanner.team/stops/Ljhsart4", "https://tec.openplanner.team/stops/Lmnjeha2"], ["https://tec.openplanner.team/stops/LHUecte2", "https://tec.openplanner.team/stops/NL80aha"], ["https://tec.openplanner.team/stops/LBLwaid1", "https://tec.openplanner.team/stops/LTrchar2"], ["https://tec.openplanner.team/stops/Llggerm2", "https://tec.openplanner.team/stops/Llgplop2"], ["https://tec.openplanner.team/stops/N106aba", "https://tec.openplanner.team/stops/N106aca"], ["https://tec.openplanner.team/stops/H4ff118a", "https://tec.openplanner.team/stops/H4ff118b"], ["https://tec.openplanner.team/stops/Bbgewal1", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://tec.openplanner.team/stops/Clfbarr6", "https://tec.openplanner.team/stops/Clftour2"], ["https://tec.openplanner.team/stops/Beclpla1", "https://tec.openplanner.team/stops/H2ec101a"], ["https://tec.openplanner.team/stops/LhEauto1", "https://tec.openplanner.team/stops/LhEtivo1"], ["https://tec.openplanner.team/stops/X634aaa", "https://tec.openplanner.team/stops/X634aba"], ["https://tec.openplanner.team/stops/LrAberg1", "https://tec.openplanner.team/stops/LrApley1"], ["https://tec.openplanner.team/stops/H4mv197b", "https://tec.openplanner.team/stops/H4va231a"], ["https://tec.openplanner.team/stops/Lhecarc1", "https://tec.openplanner.team/stops/Lhecarc2"], ["https://tec.openplanner.team/stops/Bnivcom1", "https://tec.openplanner.team/stops/Bnivhon2"], ["https://tec.openplanner.team/stops/LOreg--2", "https://tec.openplanner.team/stops/LTymahr1"], ["https://tec.openplanner.team/stops/Crcegli1", "https://tec.openplanner.team/stops/Crcegli3"], ["https://tec.openplanner.team/stops/X888ada", "https://tec.openplanner.team/stops/X888aea"], ["https://tec.openplanner.team/stops/NL77aia", "https://tec.openplanner.team/stops/NL77aib"], ["https://tec.openplanner.team/stops/LLGcarr2", "https://tec.openplanner.team/stops/LORvill2"], ["https://tec.openplanner.team/stops/LAWbrou2", "https://tec.openplanner.team/stops/LAWgill2"], ["https://tec.openplanner.team/stops/LNCneuv3", "https://tec.openplanner.team/stops/Lsedavy2"], ["https://tec.openplanner.team/stops/Bbchndb2", "https://tec.openplanner.team/stops/Bitrsar1"], ["https://tec.openplanner.team/stops/H4mo138a", "https://tec.openplanner.team/stops/H4mo153d"], ["https://tec.openplanner.team/stops/H1ma231a", "https://tec.openplanner.team/stops/H1ma234b"], ["https://tec.openplanner.team/stops/X670ada", "https://tec.openplanner.team/stops/X670ahb"], ["https://tec.openplanner.team/stops/H1ms282b", "https://tec.openplanner.team/stops/H1ms311a"], ["https://tec.openplanner.team/stops/H4bf109a", "https://tec.openplanner.team/stops/H4ro156a"], ["https://tec.openplanner.team/stops/N236ada", "https://tec.openplanner.team/stops/N236adb"], ["https://tec.openplanner.team/stops/N121aaa", "https://tec.openplanner.team/stops/N121aba"], ["https://tec.openplanner.team/stops/H1gh149a", "https://tec.openplanner.team/stops/H1gh149b"], ["https://tec.openplanner.team/stops/LLocruc2", "https://tec.openplanner.team/stops/LRchaie1"], ["https://tec.openplanner.team/stops/LCSfagn2", "https://tec.openplanner.team/stops/LCSpoud1"], ["https://tec.openplanner.team/stops/N522aib", "https://tec.openplanner.team/stops/N576ama"], ["https://tec.openplanner.team/stops/Cptccas1", "https://tec.openplanner.team/stops/Cptdubo2"], ["https://tec.openplanner.team/stops/Cgxdeba1", "https://tec.openplanner.team/stops/Crorogn2"], ["https://tec.openplanner.team/stops/NL76bca", "https://tec.openplanner.team/stops/NL77aia"], ["https://tec.openplanner.team/stops/Bgoemgr1", "https://tec.openplanner.team/stops/Bneersa2"], ["https://tec.openplanner.team/stops/Bvlvpco1", "https://tec.openplanner.team/stops/Bvlvpco2"], ["https://tec.openplanner.team/stops/N553aab", "https://tec.openplanner.team/stops/N553abb"], ["https://tec.openplanner.team/stops/Btslnil1", "https://tec.openplanner.team/stops/Btslnil2"], ["https://tec.openplanner.team/stops/X369aba", "https://tec.openplanner.team/stops/X369aca"], ["https://tec.openplanner.team/stops/X638ahb", "https://tec.openplanner.team/stops/X638ajb"], ["https://tec.openplanner.team/stops/N218aca", "https://tec.openplanner.team/stops/N218aeb"], ["https://tec.openplanner.team/stops/N501fqa", "https://tec.openplanner.team/stops/N501fqd"], ["https://tec.openplanner.team/stops/N553abc", "https://tec.openplanner.team/stops/N553aoa"], ["https://tec.openplanner.team/stops/H1le120b", "https://tec.openplanner.team/stops/H1le124a"], ["https://tec.openplanner.team/stops/H4mo148a", "https://tec.openplanner.team/stops/H4mo182a"], ["https://tec.openplanner.team/stops/LdElamb1", "https://tec.openplanner.team/stops/LdElamb2"], ["https://tec.openplanner.team/stops/LBRpier1", "https://tec.openplanner.team/stops/LLRsalm1"], ["https://tec.openplanner.team/stops/H1te180a", "https://tec.openplanner.team/stops/H1vt194b"], ["https://tec.openplanner.team/stops/N351afb", "https://tec.openplanner.team/stops/N351aib"], ["https://tec.openplanner.team/stops/Bptrcra1", "https://tec.openplanner.team/stops/Bptrman2"], ["https://tec.openplanner.team/stops/Crbhurt1", "https://tec.openplanner.team/stops/Cslbhau2"], ["https://tec.openplanner.team/stops/Bvirflu2", "https://tec.openplanner.team/stops/Bvirgar1"], ["https://tec.openplanner.team/stops/X801aba", "https://tec.openplanner.team/stops/X801abc"], ["https://tec.openplanner.team/stops/H4bq102b", "https://tec.openplanner.team/stops/H4bq154b"], ["https://tec.openplanner.team/stops/X739ahb", "https://tec.openplanner.team/stops/X911aeb"], ["https://tec.openplanner.team/stops/Llgseel2", "https://tec.openplanner.team/stops/Llgwild6"], ["https://tec.openplanner.team/stops/H1bi100b", "https://tec.openplanner.team/stops/H1bu143a"], ["https://tec.openplanner.team/stops/Ctuplac3", "https://tec.openplanner.team/stops/Ctuyser1"], ["https://tec.openplanner.team/stops/NL79aaa", "https://tec.openplanner.team/stops/NL81aeb"], ["https://tec.openplanner.team/stops/Bquevel1", "https://tec.openplanner.team/stops/Bquevel2"], ["https://tec.openplanner.team/stops/H4mo155a", "https://tec.openplanner.team/stops/H4rx141b"], ["https://tec.openplanner.team/stops/LhSfrei1", "https://tec.openplanner.team/stops/LhSfrep2"], ["https://tec.openplanner.team/stops/H1hr115a", "https://tec.openplanner.team/stops/H1hr124b"], ["https://tec.openplanner.team/stops/Llgpara2", "https://tec.openplanner.team/stops/Llgriva2"], ["https://tec.openplanner.team/stops/N244ala", "https://tec.openplanner.team/stops/N244alb"], ["https://tec.openplanner.team/stops/Brsgges1", "https://tec.openplanner.team/stops/Brsgges2"], ["https://tec.openplanner.team/stops/N170aea", "https://tec.openplanner.team/stops/NC14ada"], ["https://tec.openplanner.team/stops/H4ta134a", "https://tec.openplanner.team/stops/H4ta134b"], ["https://tec.openplanner.team/stops/H1mq199b", "https://tec.openplanner.team/stops/H5ar127b"], ["https://tec.openplanner.team/stops/LFAplan2", "https://tec.openplanner.team/stops/LFAsauv2"], ["https://tec.openplanner.team/stops/N988aab", "https://tec.openplanner.team/stops/N988abb"], ["https://tec.openplanner.team/stops/H4lz125a", "https://tec.openplanner.team/stops/H4lz161b"], ["https://tec.openplanner.team/stops/N212aba", "https://tec.openplanner.team/stops/N213abb"], ["https://tec.openplanner.team/stops/LGOmous1", "https://tec.openplanner.team/stops/LGOmous2"], ["https://tec.openplanner.team/stops/H1je220a", "https://tec.openplanner.team/stops/H1je222b"], ["https://tec.openplanner.team/stops/LLrgobe2", "https://tec.openplanner.team/stops/LLrjeho2"], ["https://tec.openplanner.team/stops/H1gc122b", "https://tec.openplanner.team/stops/H1go118b"], ["https://tec.openplanner.team/stops/N534aub", "https://tec.openplanner.team/stops/N534bxb"], ["https://tec.openplanner.team/stops/LDOviad1", "https://tec.openplanner.team/stops/LDOviad2"], ["https://tec.openplanner.team/stops/LSIcour1", "https://tec.openplanner.team/stops/LSIcour2"], ["https://tec.openplanner.team/stops/H4ty381b", "https://tec.openplanner.team/stops/H4ty382a"], ["https://tec.openplanner.team/stops/H1ho124b", "https://tec.openplanner.team/stops/H1ho125c"], ["https://tec.openplanner.team/stops/Lvehauz3", "https://tec.openplanner.team/stops/Lvehopi4"], ["https://tec.openplanner.team/stops/H2hg145b", "https://tec.openplanner.team/stops/H2hg154f"], ["https://tec.openplanner.team/stops/X818ara", "https://tec.openplanner.team/stops/X818asc"], ["https://tec.openplanner.team/stops/N212aia", "https://tec.openplanner.team/stops/N212aib"], ["https://tec.openplanner.team/stops/Bfelbri3", "https://tec.openplanner.team/stops/Bfelgar3"], ["https://tec.openplanner.team/stops/LhSschn2", "https://tec.openplanner.team/stops/LhSwind2"], ["https://tec.openplanner.team/stops/N584aha", "https://tec.openplanner.team/stops/N584ana"], ["https://tec.openplanner.team/stops/Cauglac1", "https://tec.openplanner.team/stops/Cvsbois1"], ["https://tec.openplanner.team/stops/X261aca", "https://tec.openplanner.team/stops/X982aad"], ["https://tec.openplanner.team/stops/Cjudest1", "https://tec.openplanner.team/stops/Cjupn3"], ["https://tec.openplanner.team/stops/LTRcarr1", "https://tec.openplanner.team/stops/LTRryta1"], ["https://tec.openplanner.team/stops/X606aab", "https://tec.openplanner.team/stops/X620ahb"], ["https://tec.openplanner.team/stops/H4br109a", "https://tec.openplanner.team/stops/H4jm118a"], ["https://tec.openplanner.team/stops/LFFeg--1", "https://tec.openplanner.team/stops/LFFeg--2"], ["https://tec.openplanner.team/stops/N501acb", "https://tec.openplanner.team/stops/N501afa"], ["https://tec.openplanner.team/stops/X784aja", "https://tec.openplanner.team/stops/X784aka"], ["https://tec.openplanner.team/stops/Llianix3", "https://tec.openplanner.team/stops/Lligare*"], ["https://tec.openplanner.team/stops/X609apa", "https://tec.openplanner.team/stops/X611aba"], ["https://tec.openplanner.team/stops/Cmchai1", "https://tec.openplanner.team/stops/Cmgtour2"], ["https://tec.openplanner.team/stops/Cnachat1", "https://tec.openplanner.team/stops/Cnahous1"], ["https://tec.openplanner.team/stops/H4pl114a", "https://tec.openplanner.team/stops/H4pl136a"], ["https://tec.openplanner.team/stops/H4ld123a", "https://tec.openplanner.team/stops/H4ld123b"], ["https://tec.openplanner.team/stops/X614ava", "https://tec.openplanner.team/stops/X614bra"], ["https://tec.openplanner.team/stops/LJSforg1", "https://tec.openplanner.team/stops/LTHcime2"], ["https://tec.openplanner.team/stops/X771aea", "https://tec.openplanner.team/stops/X771afb"], ["https://tec.openplanner.team/stops/LHcaube1", "https://tec.openplanner.team/stops/LJAferm1"], ["https://tec.openplanner.team/stops/Clomari1", "https://tec.openplanner.team/stops/CMmari2"], ["https://tec.openplanner.team/stops/Llgavoc1", "https://tec.openplanner.team/stops/Llgnico*"], ["https://tec.openplanner.team/stops/H4ca120b", "https://tec.openplanner.team/stops/H4wi163a"], ["https://tec.openplanner.team/stops/H1ha188b", "https://tec.openplanner.team/stops/H1ha198b"], ["https://tec.openplanner.team/stops/N510aab", "https://tec.openplanner.team/stops/N510acb"], ["https://tec.openplanner.team/stops/N301adb", "https://tec.openplanner.team/stops/N302aaa"], ["https://tec.openplanner.team/stops/N141aca", "https://tec.openplanner.team/stops/N143ada"], ["https://tec.openplanner.team/stops/Lchsa632", "https://tec.openplanner.team/stops/Lrahoig2"], ["https://tec.openplanner.team/stops/LOV62--1", "https://tec.openplanner.team/stops/LROrtba2"], ["https://tec.openplanner.team/stops/Cmmphai2", "https://tec.openplanner.team/stops/Cmmserv2"], ["https://tec.openplanner.team/stops/LdE179-1", "https://tec.openplanner.team/stops/LdElamb1"], ["https://tec.openplanner.team/stops/X665aba", "https://tec.openplanner.team/stops/X666aaa"], ["https://tec.openplanner.team/stops/X673aab", "https://tec.openplanner.team/stops/X673abb"], ["https://tec.openplanner.team/stops/Canjon3", "https://tec.openplanner.team/stops/Cfosurs1"], ["https://tec.openplanner.team/stops/Cfrchro2", "https://tec.openplanner.team/stops/Cfrmonu5"], ["https://tec.openplanner.team/stops/LHTbonn2", "https://tec.openplanner.team/stops/LHTcent2"], ["https://tec.openplanner.team/stops/X614aja", "https://tec.openplanner.team/stops/X614aka"], ["https://tec.openplanner.team/stops/LJUmate2", "https://tec.openplanner.team/stops/LJUxhen2"], ["https://tec.openplanner.team/stops/N526aab", "https://tec.openplanner.team/stops/N526aca"], ["https://tec.openplanner.team/stops/X886aca", "https://tec.openplanner.team/stops/X886aeb"], ["https://tec.openplanner.team/stops/LOuhalb2", "https://tec.openplanner.team/stops/LVnvieg1"], ["https://tec.openplanner.team/stops/N201aca", "https://tec.openplanner.team/stops/N201afa"], ["https://tec.openplanner.team/stops/LNCfawe1", "https://tec.openplanner.team/stops/LRRchea3"], ["https://tec.openplanner.team/stops/X901asb", "https://tec.openplanner.team/stops/X902bfb"], ["https://tec.openplanner.team/stops/X636aqb", "https://tec.openplanner.team/stops/X636ara"], ["https://tec.openplanner.team/stops/X618ada", "https://tec.openplanner.team/stops/X618aoa"], ["https://tec.openplanner.team/stops/Bnivrec1", "https://tec.openplanner.team/stops/Bnivrec2"], ["https://tec.openplanner.team/stops/X601bta", "https://tec.openplanner.team/stops/X601btb"], ["https://tec.openplanner.team/stops/N155aab", "https://tec.openplanner.team/stops/N155aca"], ["https://tec.openplanner.team/stops/N548afb", "https://tec.openplanner.team/stops/N569aja"], ["https://tec.openplanner.team/stops/Bixlqll1", "https://tec.openplanner.team/stops/Bsgihmo2"], ["https://tec.openplanner.team/stops/LSOdow%C3%A92", "https://tec.openplanner.team/stops/LSOgott1"], ["https://tec.openplanner.team/stops/Bcharce2", "https://tec.openplanner.team/stops/Bcrnncb2"], ["https://tec.openplanner.team/stops/Bbiehev1", "https://tec.openplanner.team/stops/Bbiehev2"], ["https://tec.openplanner.team/stops/LWHwaas4", "https://tec.openplanner.team/stops/LWHzave2"], ["https://tec.openplanner.team/stops/N350ada", "https://tec.openplanner.team/stops/N350aea"], ["https://tec.openplanner.team/stops/LBIvill1", "https://tec.openplanner.team/stops/LBIvill2"], ["https://tec.openplanner.team/stops/LFPzwaa2", "https://tec.openplanner.team/stops/LVukabi1"], ["https://tec.openplanner.team/stops/LBCtros1", "https://tec.openplanner.team/stops/LXftche1"], ["https://tec.openplanner.team/stops/N538atb", "https://tec.openplanner.team/stops/N538aub"], ["https://tec.openplanner.team/stops/N217acc", "https://tec.openplanner.team/stops/N217acd"], ["https://tec.openplanner.team/stops/X804anb", "https://tec.openplanner.team/stops/X804aoa"], ["https://tec.openplanner.team/stops/N533apb", "https://tec.openplanner.team/stops/N533aqd"], ["https://tec.openplanner.team/stops/LTGsucr2", "https://tec.openplanner.team/stops/LTGvill1"], ["https://tec.openplanner.team/stops/Bbealou2", "https://tec.openplanner.team/stops/Bbeamon2"], ["https://tec.openplanner.team/stops/X901aob", "https://tec.openplanner.team/stops/X901apb"], ["https://tec.openplanner.team/stops/LSypesy1", "https://tec.openplanner.team/stops/LSypesy2"], ["https://tec.openplanner.team/stops/LMAfali1", "https://tec.openplanner.team/stops/LMAfali2"], ["https://tec.openplanner.team/stops/N542acb", "https://tec.openplanner.team/stops/N542ama"], ["https://tec.openplanner.team/stops/Lsefore2", "https://tec.openplanner.team/stops/Lsestap1"], ["https://tec.openplanner.team/stops/Cfrbrin2", "https://tec.openplanner.team/stops/Cfrmoul1"], ["https://tec.openplanner.team/stops/H5rx112a", "https://tec.openplanner.team/stops/H5rx128b"], ["https://tec.openplanner.team/stops/LAIrout2", "https://tec.openplanner.team/stops/LBzec--2"], ["https://tec.openplanner.team/stops/X344acb", "https://tec.openplanner.team/stops/X344ada"], ["https://tec.openplanner.team/stops/Bnivaig1", "https://tec.openplanner.team/stops/Bnivrwi2"], ["https://tec.openplanner.team/stops/N167add", "https://tec.openplanner.team/stops/N167agb"], ["https://tec.openplanner.team/stops/Bmasegl2", "https://tec.openplanner.team/stops/NB33aea"], ["https://tec.openplanner.team/stops/Lfhhosp1", "https://tec.openplanner.team/stops/Ljedepa2"], ["https://tec.openplanner.team/stops/X766aca", "https://tec.openplanner.team/stops/X766aeb"], ["https://tec.openplanner.team/stops/LDoeg--2", "https://tec.openplanner.team/stops/LLiforg2"], ["https://tec.openplanner.team/stops/Blaspch2", "https://tec.openplanner.team/stops/Blasvil2"], ["https://tec.openplanner.team/stops/H1sy144b", "https://tec.openplanner.team/stops/H1sy144d"], ["https://tec.openplanner.team/stops/Lpelouh1", "https://tec.openplanner.team/stops/Lpepano2"], ["https://tec.openplanner.team/stops/LFdchau4", "https://tec.openplanner.team/stops/LFdeg--4"], ["https://tec.openplanner.team/stops/N548agb", "https://tec.openplanner.team/stops/N548aka"], ["https://tec.openplanner.team/stops/H5at111a", "https://tec.openplanner.team/stops/H5at141a"], ["https://tec.openplanner.team/stops/Cmlcent1", "https://tec.openplanner.team/stops/Cmlcent2"], ["https://tec.openplanner.team/stops/Craplac1", "https://tec.openplanner.team/stops/Crasocq1"], ["https://tec.openplanner.team/stops/X623ajb", "https://tec.openplanner.team/stops/X624aja"], ["https://tec.openplanner.team/stops/LORroma1", "https://tec.openplanner.team/stops/LTobilz2"], ["https://tec.openplanner.team/stops/H2ll172b", "https://tec.openplanner.team/stops/H2ll172d"], ["https://tec.openplanner.team/stops/Ladandr1", "https://tec.openplanner.team/stops/Ladpire2"], ["https://tec.openplanner.team/stops/Bgnpegl2", "https://tec.openplanner.team/stops/Bgnpgar1"], ["https://tec.openplanner.team/stops/H4fl114a", "https://tec.openplanner.team/stops/H4wi166b"], ["https://tec.openplanner.team/stops/N115aca", "https://tec.openplanner.team/stops/N147afb"], ["https://tec.openplanner.team/stops/H1ba108b", "https://tec.openplanner.team/stops/H1ba115a"], ["https://tec.openplanner.team/stops/N534bqb", "https://tec.openplanner.team/stops/N534bva"], ["https://tec.openplanner.team/stops/X601abb", "https://tec.openplanner.team/stops/X601acb"], ["https://tec.openplanner.team/stops/H1gr120a", "https://tec.openplanner.team/stops/H1mk113b"], ["https://tec.openplanner.team/stops/Bplncsd1", "https://tec.openplanner.team/stops/Bplncsd2"], ["https://tec.openplanner.team/stops/LGLobor1", "https://tec.openplanner.team/stops/LGLobor2"], ["https://tec.openplanner.team/stops/Cmastma2", "https://tec.openplanner.team/stops/Cmastma4"], ["https://tec.openplanner.team/stops/H1ha197a", "https://tec.openplanner.team/stops/H1ha197b"], ["https://tec.openplanner.team/stops/N584bpa", "https://tec.openplanner.team/stops/N584bpc"], ["https://tec.openplanner.team/stops/Lboeg--1", "https://tec.openplanner.team/stops/Lbotige2"], ["https://tec.openplanner.team/stops/X714aca", "https://tec.openplanner.team/stops/X714aea"], ["https://tec.openplanner.team/stops/N390aaa", "https://tec.openplanner.team/stops/X998azb"], ["https://tec.openplanner.team/stops/Cgzpjeu1", "https://tec.openplanner.team/stops/Cgzplac3"], ["https://tec.openplanner.team/stops/LBdcime1", "https://tec.openplanner.team/stops/LWMcent1"], ["https://tec.openplanner.team/stops/LSkkeri1", "https://tec.openplanner.team/stops/LSkyern2"], ["https://tec.openplanner.team/stops/X999aka", "https://tec.openplanner.team/stops/X999alb"], ["https://tec.openplanner.team/stops/LwYsour1", "https://tec.openplanner.team/stops/LwYsour4"], ["https://tec.openplanner.team/stops/N543cma", "https://tec.openplanner.team/stops/N543cna"], ["https://tec.openplanner.team/stops/LJAfawe2", "https://tec.openplanner.team/stops/LSW26--1"], ["https://tec.openplanner.team/stops/LTPabat1", "https://tec.openplanner.team/stops/LTPpisc1"], ["https://tec.openplanner.team/stops/X763aha", "https://tec.openplanner.team/stops/X763aia"], ["https://tec.openplanner.team/stops/Bmlncha1", "https://tec.openplanner.team/stops/Bmlncha2"], ["https://tec.openplanner.team/stops/N236ahb", "https://tec.openplanner.team/stops/N236aia"], ["https://tec.openplanner.team/stops/LERdeho2", "https://tec.openplanner.team/stops/LERpouh2"], ["https://tec.openplanner.team/stops/Cjxdesc1", "https://tec.openplanner.team/stops/Cjxplac1"], ["https://tec.openplanner.team/stops/H4eq123a", "https://tec.openplanner.team/stops/H4ob109b"], ["https://tec.openplanner.team/stops/LWzeg--*", "https://tec.openplanner.team/stops/LWzwanz2"], ["https://tec.openplanner.team/stops/Cgrchfe2", "https://tec.openplanner.team/stops/Clvorle1"], ["https://tec.openplanner.team/stops/X926acb", "https://tec.openplanner.team/stops/X926ada"], ["https://tec.openplanner.team/stops/N120aaa", "https://tec.openplanner.team/stops/N120afb"], ["https://tec.openplanner.team/stops/H1he101a", "https://tec.openplanner.team/stops/H1he108a"], ["https://tec.openplanner.team/stops/Bcsebde2", "https://tec.openplanner.team/stops/Bsmgmou2"], ["https://tec.openplanner.team/stops/H4bd108a", "https://tec.openplanner.team/stops/H4bd112b"], ["https://tec.openplanner.team/stops/LsVgore1", "https://tec.openplanner.team/stops/LsVlind*"], ["https://tec.openplanner.team/stops/N232aga", "https://tec.openplanner.team/stops/N286abb"], ["https://tec.openplanner.team/stops/Ccuoise2", "https://tec.openplanner.team/stops/Ccuseba1"], ["https://tec.openplanner.team/stops/Cgoetun2", "https://tec.openplanner.team/stops/Cgopier2"], ["https://tec.openplanner.team/stops/Bwatnrs1", "https://tec.openplanner.team/stops/Bwatnrs2"], ["https://tec.openplanner.team/stops/H4lz126b", "https://tec.openplanner.team/stops/H4lz155a"], ["https://tec.openplanner.team/stops/LEHhaut2", "https://tec.openplanner.team/stops/LEHpech2"], ["https://tec.openplanner.team/stops/N236amb", "https://tec.openplanner.team/stops/N236ana"], ["https://tec.openplanner.team/stops/H1eu104b", "https://tec.openplanner.team/stops/H1pa166b"], ["https://tec.openplanner.team/stops/LTRfend1", "https://tec.openplanner.team/stops/LTRmosb1"], ["https://tec.openplanner.team/stops/LCUmonu2", "https://tec.openplanner.team/stops/NL67adb"], ["https://tec.openplanner.team/stops/X687aja", "https://tec.openplanner.team/stops/X687aka"], ["https://tec.openplanner.team/stops/H1ba105a", "https://tec.openplanner.team/stops/H1si169b"], ["https://tec.openplanner.team/stops/X825adb", "https://tec.openplanner.team/stops/X825aea"], ["https://tec.openplanner.team/stops/H5at127a", "https://tec.openplanner.team/stops/H5at130a"], ["https://tec.openplanner.team/stops/H2mi122a", "https://tec.openplanner.team/stops/H3lr107a"], ["https://tec.openplanner.team/stops/H4er121a", "https://tec.openplanner.team/stops/H4er121b"], ["https://tec.openplanner.team/stops/Ltibord2", "https://tec.openplanner.team/stops/Ltitill*"], ["https://tec.openplanner.team/stops/Bspkdon1", "https://tec.openplanner.team/stops/Bspkker2"], ["https://tec.openplanner.team/stops/N509asb", "https://tec.openplanner.team/stops/N509aua"], ["https://tec.openplanner.team/stops/N501jba", "https://tec.openplanner.team/stops/N501jna"], ["https://tec.openplanner.team/stops/X870afb", "https://tec.openplanner.team/stops/X870aja"], ["https://tec.openplanner.team/stops/X746aca", "https://tec.openplanner.team/stops/X746ada"], ["https://tec.openplanner.team/stops/H1ba104b", "https://tec.openplanner.team/stops/H1ba109b"], ["https://tec.openplanner.team/stops/X743afa", "https://tec.openplanner.team/stops/X746agc"], ["https://tec.openplanner.team/stops/N515aqc", "https://tec.openplanner.team/stops/N515aqd"], ["https://tec.openplanner.team/stops/H4am100b", "https://tec.openplanner.team/stops/H4am101b"], ["https://tec.openplanner.team/stops/LBLtroi2", "https://tec.openplanner.team/stops/LBLvici2"], ["https://tec.openplanner.team/stops/N501cxb", "https://tec.openplanner.team/stops/N501czb"], ["https://tec.openplanner.team/stops/LbTaral1", "https://tec.openplanner.team/stops/LbTkreu1"], ["https://tec.openplanner.team/stops/LBNvilv1", "https://tec.openplanner.team/stops/LGOmous2"], ["https://tec.openplanner.team/stops/X721apb", "https://tec.openplanner.team/stops/X721asa"], ["https://tec.openplanner.team/stops/N512agc", "https://tec.openplanner.team/stops/NL57agb"], ["https://tec.openplanner.team/stops/X641aca", "https://tec.openplanner.team/stops/X641acb"], ["https://tec.openplanner.team/stops/H5bs103a", "https://tec.openplanner.team/stops/H5bs103b"], ["https://tec.openplanner.team/stops/N426aaa", "https://tec.openplanner.team/stops/N426aab"], ["https://tec.openplanner.team/stops/H4bh105a", "https://tec.openplanner.team/stops/H4ry141b"], ["https://tec.openplanner.team/stops/LbTkreu1", "https://tec.openplanner.team/stops/LbTkreu2"], ["https://tec.openplanner.team/stops/Btubcvi1", "https://tec.openplanner.team/stops/Btubcvi2"], ["https://tec.openplanner.team/stops/Llgpiet2", "https://tec.openplanner.team/stops/Llgvolg2"], ["https://tec.openplanner.team/stops/H1ht132b", "https://tec.openplanner.team/stops/H1si151b"], ["https://tec.openplanner.team/stops/X757akb", "https://tec.openplanner.team/stops/X757ala"], ["https://tec.openplanner.team/stops/LBspiet1", "https://tec.openplanner.team/stops/LBspiet2"], ["https://tec.openplanner.team/stops/Lmnchal1", "https://tec.openplanner.team/stops/Lmnchal2"], ["https://tec.openplanner.team/stops/Cchccom2", "https://tec.openplanner.team/stops/Cchvil22"], ["https://tec.openplanner.team/stops/H4co151a", "https://tec.openplanner.team/stops/H4co162a"], ["https://tec.openplanner.team/stops/N312aca", "https://tec.openplanner.team/stops/N312acb"], ["https://tec.openplanner.team/stops/H5at128a", "https://tec.openplanner.team/stops/H5ma186a"], ["https://tec.openplanner.team/stops/H4hu119b", "https://tec.openplanner.team/stops/H4hu120b"], ["https://tec.openplanner.team/stops/LHNecpr1", "https://tec.openplanner.team/stops/NL37aca"], ["https://tec.openplanner.team/stops/N310aab", "https://tec.openplanner.team/stops/N310aba"], ["https://tec.openplanner.team/stops/H1ch107a", "https://tec.openplanner.team/stops/H1ch141a"], ["https://tec.openplanner.team/stops/X636aab", "https://tec.openplanner.team/stops/X636acb"], ["https://tec.openplanner.team/stops/H1ms940a", "https://tec.openplanner.team/stops/H1ms940b"], ["https://tec.openplanner.team/stops/H1gi120a", "https://tec.openplanner.team/stops/H1gi121b"], ["https://tec.openplanner.team/stops/X790afa", "https://tec.openplanner.team/stops/X790ahb"], ["https://tec.openplanner.team/stops/N214aca", "https://tec.openplanner.team/stops/N214adb"], ["https://tec.openplanner.team/stops/Lprsher2", "https://tec.openplanner.team/stops/Lprthie2"], ["https://tec.openplanner.team/stops/H2pr115b", "https://tec.openplanner.team/stops/H2pr118a"], ["https://tec.openplanner.team/stops/X880aea", "https://tec.openplanner.team/stops/X880afa"], ["https://tec.openplanner.team/stops/X897afa", "https://tec.openplanner.team/stops/X985afb"], ["https://tec.openplanner.team/stops/N232ana", "https://tec.openplanner.team/stops/N232aob"], ["https://tec.openplanner.team/stops/Lverema2", "https://tec.openplanner.team/stops/Lvesomm2"], ["https://tec.openplanner.team/stops/H1ha191a", "https://tec.openplanner.team/stops/H1ha199a"], ["https://tec.openplanner.team/stops/Lveptle3", "https://tec.openplanner.team/stops/Lveptle4"], ["https://tec.openplanner.team/stops/H2hg269a", "https://tec.openplanner.team/stops/H2hg269b"], ["https://tec.openplanner.team/stops/X827aaa", "https://tec.openplanner.team/stops/X828aab"], ["https://tec.openplanner.team/stops/N222aab", "https://tec.openplanner.team/stops/N222aya"], ["https://tec.openplanner.team/stops/Blhugar1", "https://tec.openplanner.team/stops/Blhusor1"], ["https://tec.openplanner.team/stops/X667abb", "https://tec.openplanner.team/stops/X667ada"], ["https://tec.openplanner.team/stops/LMastat4", "https://tec.openplanner.team/stops/LTEnuro2"], ["https://tec.openplanner.team/stops/Bwavcar1", "https://tec.openplanner.team/stops/Bwavrij1"], ["https://tec.openplanner.team/stops/LTRespe1", "https://tec.openplanner.team/stops/LTRferm2"], ["https://tec.openplanner.team/stops/Lceviei1", "https://tec.openplanner.team/stops/Lceviei2"], ["https://tec.openplanner.team/stops/LnUneun1", "https://tec.openplanner.team/stops/LsVlust1"], ["https://tec.openplanner.team/stops/N232ara", "https://tec.openplanner.team/stops/N232bka"], ["https://tec.openplanner.team/stops/LBBcamp1", "https://tec.openplanner.team/stops/LLvgare2"], ["https://tec.openplanner.team/stops/Lvelobe1", "https://tec.openplanner.team/stops/Lvewaut2"], ["https://tec.openplanner.team/stops/H4ty273c", "https://tec.openplanner.team/stops/H4ty295a"], ["https://tec.openplanner.team/stops/Llghlau1", "https://tec.openplanner.team/stops/Llghlau2"], ["https://tec.openplanner.team/stops/H4bh102d", "https://tec.openplanner.team/stops/H4lp123a"], ["https://tec.openplanner.team/stops/Bgzdgpa2", "https://tec.openplanner.team/stops/Bwavpar1"], ["https://tec.openplanner.team/stops/LFFcouv1", "https://tec.openplanner.team/stops/LFFpier2"], ["https://tec.openplanner.team/stops/LAnfall1", "https://tec.openplanner.team/stops/LAnfall2"], ["https://tec.openplanner.team/stops/X790aib", "https://tec.openplanner.team/stops/X790akc"], ["https://tec.openplanner.team/stops/X664aob", "https://tec.openplanner.team/stops/X664apa"], ["https://tec.openplanner.team/stops/Clfbarr6", "https://tec.openplanner.team/stops/Crglyre1"], ["https://tec.openplanner.team/stops/N115aca", "https://tec.openplanner.team/stops/N155aib"], ["https://tec.openplanner.team/stops/Bbryfon2", "https://tec.openplanner.team/stops/Bsamlon2"], ["https://tec.openplanner.team/stops/N323aaa", "https://tec.openplanner.team/stops/N323aab"], ["https://tec.openplanner.team/stops/Lcacasi1", "https://tec.openplanner.team/stops/LNipla3"], ["https://tec.openplanner.team/stops/LFFeg--2", "https://tec.openplanner.team/stops/LFFruel1"], ["https://tec.openplanner.team/stops/H4he106a", "https://tec.openplanner.team/stops/H4mx116b"], ["https://tec.openplanner.team/stops/Lsemaha1", "https://tec.openplanner.team/stops/Lseverh1"], ["https://tec.openplanner.team/stops/Bnivmet2", "https://tec.openplanner.team/stops/Bnivsoi1"], ["https://tec.openplanner.team/stops/LPLcarr1", "https://tec.openplanner.team/stops/LPLcarr4"], ["https://tec.openplanner.team/stops/Benggar1", "https://tec.openplanner.team/stops/Bspkbeu2"], ["https://tec.openplanner.team/stops/Ctrpn1", "https://tec.openplanner.team/stops/H2tz120a"], ["https://tec.openplanner.team/stops/Lflcle-*", "https://tec.openplanner.team/stops/Lflcle-2"], ["https://tec.openplanner.team/stops/Bmalwop1", "https://tec.openplanner.team/stops/Bmalwvi1"], ["https://tec.openplanner.team/stops/H4bd109b", "https://tec.openplanner.team/stops/H4te254b"], ["https://tec.openplanner.team/stops/Lhepaqu1", "https://tec.openplanner.team/stops/Lhrmeta2"], ["https://tec.openplanner.team/stops/X608aja", "https://tec.openplanner.team/stops/X608ajb"], ["https://tec.openplanner.team/stops/LWDhous1", "https://tec.openplanner.team/stops/LWDsott1"], ["https://tec.openplanner.team/stops/LBGvill2", "https://tec.openplanner.team/stops/LLnpomp2"], ["https://tec.openplanner.team/stops/H1gr116b", "https://tec.openplanner.team/stops/H1gr123a"], ["https://tec.openplanner.team/stops/Cfrcoop3", "https://tec.openplanner.team/stops/Cfrsour1"], ["https://tec.openplanner.team/stops/LVLm10-1", "https://tec.openplanner.team/stops/LVLm10-2"], ["https://tec.openplanner.team/stops/N232bya", "https://tec.openplanner.team/stops/N232cab"], ["https://tec.openplanner.team/stops/Blineco1", "https://tec.openplanner.team/stops/Blingar2"], ["https://tec.openplanner.team/stops/LlNlimb2", "https://tec.openplanner.team/stops/LlNsc652"], ["https://tec.openplanner.team/stops/LPLcond1", "https://tec.openplanner.team/stops/LRRchen1"], ["https://tec.openplanner.team/stops/N308agb", "https://tec.openplanner.team/stops/N308aoa"], ["https://tec.openplanner.team/stops/Csebasc1", "https://tec.openplanner.team/stops/Cselibe1"], ["https://tec.openplanner.team/stops/LGEcent1", "https://tec.openplanner.team/stops/LGEcent2"], ["https://tec.openplanner.team/stops/LCRabbe1", "https://tec.openplanner.team/stops/LOdcris2"], ["https://tec.openplanner.team/stops/H4mo172a", "https://tec.openplanner.team/stops/H4mo207a"], ["https://tec.openplanner.team/stops/X750aaa", "https://tec.openplanner.team/stops/X750aia"], ["https://tec.openplanner.team/stops/X796acc", "https://tec.openplanner.team/stops/X796agb"], ["https://tec.openplanner.team/stops/Lalbout2", "https://tec.openplanner.team/stops/Lalparc2"], ["https://tec.openplanner.team/stops/Lprcite2", "https://tec.openplanner.team/stops/Lprdavi1"], ["https://tec.openplanner.team/stops/Barcast2", "https://tec.openplanner.team/stops/Bgzdn252"], ["https://tec.openplanner.team/stops/LMOcorn1", "https://tec.openplanner.team/stops/LMOcorn2"], ["https://tec.openplanner.team/stops/Cnafont1", "https://tec.openplanner.team/stops/Cnalava3"], ["https://tec.openplanner.team/stops/N534bng", "https://tec.openplanner.team/stops/N534byb"], ["https://tec.openplanner.team/stops/Brsgfon1", "https://tec.openplanner.team/stops/Brsgfon2"], ["https://tec.openplanner.team/stops/Bquevel2", "https://tec.openplanner.team/stops/Btubren2"], ["https://tec.openplanner.team/stops/Bgdhpco1", "https://tec.openplanner.team/stops/Bgdhpco2"], ["https://tec.openplanner.team/stops/X773afa", "https://tec.openplanner.team/stops/X773afb"], ["https://tec.openplanner.team/stops/X748abb", "https://tec.openplanner.team/stops/X767aja"], ["https://tec.openplanner.team/stops/LKmcite2", "https://tec.openplanner.team/stops/LKmmelo2"], ["https://tec.openplanner.team/stops/X809aca", "https://tec.openplanner.team/stops/X809afa"], ["https://tec.openplanner.team/stops/N521acb", "https://tec.openplanner.team/stops/N523aba"], ["https://tec.openplanner.team/stops/H4ka183a", "https://tec.openplanner.team/stops/H4ka183b"], ["https://tec.openplanner.team/stops/N537acb", "https://tec.openplanner.team/stops/N537akb"], ["https://tec.openplanner.team/stops/H4gr109a", "https://tec.openplanner.team/stops/H4gr109b"], ["https://tec.openplanner.team/stops/Blhucmo2", "https://tec.openplanner.team/stops/Blhunys1"], ["https://tec.openplanner.team/stops/N219aba", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/H4eg108a", "https://tec.openplanner.team/stops/H4ne135a"], ["https://tec.openplanner.team/stops/Csscrot1", "https://tec.openplanner.team/stops/Csspn2"], ["https://tec.openplanner.team/stops/LLrhaut1", "https://tec.openplanner.team/stops/LLrhaut4"], ["https://tec.openplanner.team/stops/N527aab", "https://tec.openplanner.team/stops/N533apa"], ["https://tec.openplanner.team/stops/LbUverb1", "https://tec.openplanner.team/stops/LbUvith2"], ["https://tec.openplanner.team/stops/X982ara", "https://tec.openplanner.team/stops/X982asb"], ["https://tec.openplanner.team/stops/H5qu148b", "https://tec.openplanner.team/stops/H5qu149a"], ["https://tec.openplanner.team/stops/LBWeg--2", "https://tec.openplanner.team/stops/LBWeg--3"], ["https://tec.openplanner.team/stops/Bwbfhip1", "https://tec.openplanner.team/stops/Bwbfhip2"], ["https://tec.openplanner.team/stops/Lagbeno5", "https://tec.openplanner.team/stops/Lagboil1"], ["https://tec.openplanner.team/stops/Cclplac1", "https://tec.openplanner.team/stops/Cclplac2"], ["https://tec.openplanner.team/stops/N522aca", "https://tec.openplanner.team/stops/N522acb"], ["https://tec.openplanner.team/stops/LOMbrou2", "https://tec.openplanner.team/stops/LOMeg--2"], ["https://tec.openplanner.team/stops/Bwagcus2", "https://tec.openplanner.team/stops/Csachas1"], ["https://tec.openplanner.team/stops/LBYwez-2", "https://tec.openplanner.team/stops/LHEvign2"], ["https://tec.openplanner.team/stops/N254aca", "https://tec.openplanner.team/stops/N254adb"], ["https://tec.openplanner.team/stops/N134aea", "https://tec.openplanner.team/stops/N152abd"], ["https://tec.openplanner.team/stops/Bwatsan2", "https://tec.openplanner.team/stops/Bwatvco1"], ["https://tec.openplanner.team/stops/LkTraer1", "https://tec.openplanner.team/stops/LkTweih1"], ["https://tec.openplanner.team/stops/X788aba", "https://tec.openplanner.team/stops/X788abb"], ["https://tec.openplanner.team/stops/LTIptme1", "https://tec.openplanner.team/stops/LTIptme2"], ["https://tec.openplanner.team/stops/N512aid", "https://tec.openplanner.team/stops/N512apb"], ["https://tec.openplanner.team/stops/X721aab", "https://tec.openplanner.team/stops/X723akb"], ["https://tec.openplanner.team/stops/LmSluxh2", "https://tec.openplanner.team/stops/LnUneun2"], ["https://tec.openplanner.team/stops/X878aab", "https://tec.openplanner.team/stops/X879aaa"], ["https://tec.openplanner.team/stops/X897aaa", "https://tec.openplanner.team/stops/X899aeb"], ["https://tec.openplanner.team/stops/H5at115b", "https://tec.openplanner.team/stops/H5at141b"], ["https://tec.openplanner.team/stops/Bcer4br1", "https://tec.openplanner.team/stops/Bcercab2"], ["https://tec.openplanner.team/stops/H1mm121a", "https://tec.openplanner.team/stops/H1mm131a"], ["https://tec.openplanner.team/stops/N217aaa", "https://tec.openplanner.team/stops/N217aba"], ["https://tec.openplanner.team/stops/LRRmeta1", "https://tec.openplanner.team/stops/LRRrimi2"], ["https://tec.openplanner.team/stops/N141aea", "https://tec.openplanner.team/stops/N141afa"], ["https://tec.openplanner.team/stops/LBAfort2", "https://tec.openplanner.team/stops/LHOgymn2"], ["https://tec.openplanner.team/stops/LROcham1", "https://tec.openplanner.team/stops/LROhael1"], ["https://tec.openplanner.team/stops/X347aab", "https://tec.openplanner.team/stops/X370acb"], ["https://tec.openplanner.team/stops/LNAanne2", "https://tec.openplanner.team/stops/LSSfont2"], ["https://tec.openplanner.team/stops/Bhakmkr1", "https://tec.openplanner.team/stops/Bhakmkr2"], ["https://tec.openplanner.team/stops/H2bh114a", "https://tec.openplanner.team/stops/H2bh119a"], ["https://tec.openplanner.team/stops/N235aaa", "https://tec.openplanner.team/stops/N236ana"], ["https://tec.openplanner.team/stops/H4mo174a", "https://tec.openplanner.team/stops/H4mo183a"], ["https://tec.openplanner.team/stops/Cgzbouh1", "https://tec.openplanner.team/stops/Cmx3arb1"], ["https://tec.openplanner.team/stops/X619aka", "https://tec.openplanner.team/stops/X696ada"], ["https://tec.openplanner.team/stops/N564aea", "https://tec.openplanner.team/stops/N564afa"], ["https://tec.openplanner.team/stops/N518aaa", "https://tec.openplanner.team/stops/N520aia"], ["https://tec.openplanner.team/stops/Bnivpve2", "https://tec.openplanner.team/stops/Bnivrsa1"], ["https://tec.openplanner.team/stops/X725aca", "https://tec.openplanner.team/stops/X725acb"], ["https://tec.openplanner.team/stops/N506aob", "https://tec.openplanner.team/stops/N506apa"], ["https://tec.openplanner.team/stops/H1fr111a", "https://tec.openplanner.team/stops/H1ge115b"], ["https://tec.openplanner.team/stops/N535aob", "https://tec.openplanner.team/stops/N580aea"], ["https://tec.openplanner.team/stops/N512acb", "https://tec.openplanner.team/stops/N512agb"], ["https://tec.openplanner.team/stops/H1bo112b", "https://tec.openplanner.team/stops/H1ho130b"], ["https://tec.openplanner.team/stops/Bglarha1", "https://tec.openplanner.team/stops/Bmrswag2"], ["https://tec.openplanner.team/stops/X721aga", "https://tec.openplanner.team/stops/X721agc"], ["https://tec.openplanner.team/stops/LMIcamp2", "https://tec.openplanner.team/stops/LMImc--2"], ["https://tec.openplanner.team/stops/H4ln128b", "https://tec.openplanner.team/stops/H4ne134a"], ["https://tec.openplanner.team/stops/H1gh147a", "https://tec.openplanner.team/stops/H1gh160b"], ["https://tec.openplanner.team/stops/N211aza", "https://tec.openplanner.team/stops/N211baa"], ["https://tec.openplanner.team/stops/Cjuhopi2", "https://tec.openplanner.team/stops/Cjumade0"], ["https://tec.openplanner.team/stops/H4ty295c", "https://tec.openplanner.team/stops/H4ty298b"], ["https://tec.openplanner.team/stops/LeUjuge2", "https://tec.openplanner.team/stops/LeUstad2"], ["https://tec.openplanner.team/stops/LGetroi1", "https://tec.openplanner.team/stops/LVkchap2"], ["https://tec.openplanner.team/stops/Cculpre1", "https://tec.openplanner.team/stops/Ccuphai3"], ["https://tec.openplanner.team/stops/H4ld125b", "https://tec.openplanner.team/stops/H4to135a"], ["https://tec.openplanner.team/stops/X872afa", "https://tec.openplanner.team/stops/X873aca"], ["https://tec.openplanner.team/stops/H4ro154a", "https://tec.openplanner.team/stops/H4ro157a"], ["https://tec.openplanner.team/stops/X671acb", "https://tec.openplanner.team/stops/X671adb"], ["https://tec.openplanner.team/stops/Cfaamio1", "https://tec.openplanner.team/stops/Cfaplma2"], ["https://tec.openplanner.team/stops/H4og206b", "https://tec.openplanner.team/stops/H4og213a"], ["https://tec.openplanner.team/stops/Lveherl1", "https://tec.openplanner.team/stops/Lverogi2"], ["https://tec.openplanner.team/stops/LOccarr3", "https://tec.openplanner.team/stops/LTestat2"], ["https://tec.openplanner.team/stops/Cvscomb1", "https://tec.openplanner.team/stops/N530aja"], ["https://tec.openplanner.team/stops/LjedTEC2", "https://tec.openplanner.team/stops/Ljekess1"], ["https://tec.openplanner.team/stops/Loumair1", "https://tec.openplanner.team/stops/Loutras1"], ["https://tec.openplanner.team/stops/X604aca", "https://tec.openplanner.team/stops/X604akb"], ["https://tec.openplanner.team/stops/X739aaa", "https://tec.openplanner.team/stops/X739aba"], ["https://tec.openplanner.team/stops/LSLdall2", "https://tec.openplanner.team/stops/LSLfler2"], ["https://tec.openplanner.team/stops/LTIcime2", "https://tec.openplanner.team/stops/LTIsupe1"], ["https://tec.openplanner.team/stops/H2le147c", "https://tec.openplanner.team/stops/H2le151b"], ["https://tec.openplanner.team/stops/Lfljupi2", "https://tec.openplanner.team/stops/Lqbchat1"], ["https://tec.openplanner.team/stops/H4ty268a", "https://tec.openplanner.team/stops/H4ty327b"], ["https://tec.openplanner.team/stops/Btstche1", "https://tec.openplanner.team/stops/Btstpch2"], ["https://tec.openplanner.team/stops/LCRabbe1", "https://tec.openplanner.team/stops/LCRabbe2"], ["https://tec.openplanner.team/stops/X780aja", "https://tec.openplanner.team/stops/X780ajb"], ["https://tec.openplanner.team/stops/LMNjard1", "https://tec.openplanner.team/stops/LPbpl--2"], ["https://tec.openplanner.team/stops/Cjucomb1", "https://tec.openplanner.team/stops/Cjucomb2"], ["https://tec.openplanner.team/stops/LBBabat1", "https://tec.openplanner.team/stops/LCLacbi1"], ["https://tec.openplanner.team/stops/H1mb125b", "https://tec.openplanner.team/stops/H1mb128a"], ["https://tec.openplanner.team/stops/Bwaunce2", "https://tec.openplanner.team/stops/Bwaunou1"], ["https://tec.openplanner.team/stops/X802aha", "https://tec.openplanner.team/stops/X802aib"], ["https://tec.openplanner.team/stops/LAOeg--1", "https://tec.openplanner.team/stops/LLRgdma2"], ["https://tec.openplanner.team/stops/Ccogera2", "https://tec.openplanner.team/stops/Csoperi1"], ["https://tec.openplanner.team/stops/Cladura3", "https://tec.openplanner.team/stops/Cladura4"], ["https://tec.openplanner.team/stops/N526acb", "https://tec.openplanner.team/stops/N526ada"], ["https://tec.openplanner.team/stops/H1gh155b", "https://tec.openplanner.team/stops/H1gh160a"], ["https://tec.openplanner.team/stops/Bbxlmid4", "https://tec.openplanner.team/stops/Bbxltou1"], ["https://tec.openplanner.team/stops/Bneecha3", "https://tec.openplanner.team/stops/Bneedia2"], ["https://tec.openplanner.team/stops/H4ea134a", "https://tec.openplanner.team/stops/H4tp145a"], ["https://tec.openplanner.team/stops/LWAaxhe1", "https://tec.openplanner.team/stops/LWAaxhe2"], ["https://tec.openplanner.team/stops/Cragoss2", "https://tec.openplanner.team/stops/Cralimi2"], ["https://tec.openplanner.team/stops/H2mo119a", "https://tec.openplanner.team/stops/H2mo126b"], ["https://tec.openplanner.team/stops/Cgymest1", "https://tec.openplanner.team/stops/Cgyralb1"], ["https://tec.openplanner.team/stops/Lvefanc1", "https://tec.openplanner.team/stops/Lvefanc2"], ["https://tec.openplanner.team/stops/X999anb", "https://tec.openplanner.team/stops/X999asb"], ["https://tec.openplanner.team/stops/N543aua", "https://tec.openplanner.team/stops/N543cga"], ["https://tec.openplanner.team/stops/Candett1", "https://tec.openplanner.team/stops/H2an100a"], ["https://tec.openplanner.team/stops/X858ada", "https://tec.openplanner.team/stops/X858aeb"], ["https://tec.openplanner.team/stops/N351alb", "https://tec.openplanner.team/stops/N353ahb"], ["https://tec.openplanner.team/stops/Blhugmo2", "https://tec.openplanner.team/stops/Blhumga2"], ["https://tec.openplanner.team/stops/Clgpavi2", "https://tec.openplanner.team/stops/Csslesc2"], ["https://tec.openplanner.team/stops/Cmychap1", "https://tec.openplanner.team/stops/Cmysncb2"], ["https://tec.openplanner.team/stops/X657aha", "https://tec.openplanner.team/stops/X657ana"], ["https://tec.openplanner.team/stops/H1do108c", "https://tec.openplanner.team/stops/H1do108e"], ["https://tec.openplanner.team/stops/LPLroth1", "https://tec.openplanner.team/stops/LPLroth2"], ["https://tec.openplanner.team/stops/X671aaa", "https://tec.openplanner.team/stops/X671aba"], ["https://tec.openplanner.team/stops/N123aba", "https://tec.openplanner.team/stops/N123ada"], ["https://tec.openplanner.team/stops/H1hb197a", "https://tec.openplanner.team/stops/H1ht197b"], ["https://tec.openplanner.team/stops/Bixlaca1", "https://tec.openplanner.team/stops/Bixleix1"], ["https://tec.openplanner.team/stops/Canmonu5", "https://tec.openplanner.team/stops/Canvane2"], ["https://tec.openplanner.team/stops/Bdlvpco1", "https://tec.openplanner.team/stops/Bgzdfpo1"], ["https://tec.openplanner.team/stops/Cgyplst1", "https://tec.openplanner.team/stops/Cgyplvi1"], ["https://tec.openplanner.team/stops/Blsmjja2", "https://tec.openplanner.team/stops/Bnodlce1"], ["https://tec.openplanner.team/stops/LLUadze1", "https://tec.openplanner.team/stops/LLUtrol1"], ["https://tec.openplanner.team/stops/N533aaa", "https://tec.openplanner.team/stops/N551afa"], ["https://tec.openplanner.team/stops/H4ry133a", "https://tec.openplanner.team/stops/H4ry140b"], ["https://tec.openplanner.team/stops/X636afa", "https://tec.openplanner.team/stops/X636aha"], ["https://tec.openplanner.team/stops/H1gh365a", "https://tec.openplanner.team/stops/H1ni316b"], ["https://tec.openplanner.team/stops/Ltiferb1", "https://tec.openplanner.team/stops/Ltiferb2"], ["https://tec.openplanner.team/stops/LHMbach4", "https://tec.openplanner.team/stops/LHMec--2"], ["https://tec.openplanner.team/stops/N221aaa", "https://tec.openplanner.team/stops/X394adb"], ["https://tec.openplanner.team/stops/X626aja", "https://tec.openplanner.team/stops/X626ala"], ["https://tec.openplanner.team/stops/Bbrlpar1", "https://tec.openplanner.team/stops/Bbrlvil1"], ["https://tec.openplanner.team/stops/N562ama", "https://tec.openplanner.team/stops/N562amb"], ["https://tec.openplanner.team/stops/LFRrohe1", "https://tec.openplanner.team/stops/LSTchen2"], ["https://tec.openplanner.team/stops/LAWcite6", "https://tec.openplanner.team/stops/LHGikea1"], ["https://tec.openplanner.team/stops/LFocent1", "https://tec.openplanner.team/stops/LFocent2"], ["https://tec.openplanner.team/stops/X801ata", "https://tec.openplanner.team/stops/X801aub"], ["https://tec.openplanner.team/stops/X641acb", "https://tec.openplanner.team/stops/X646ada"], ["https://tec.openplanner.team/stops/Lghbonn2", "https://tec.openplanner.team/stops/Lghencl2"], ["https://tec.openplanner.team/stops/X801bva", "https://tec.openplanner.team/stops/X801bwa"], ["https://tec.openplanner.team/stops/LWOplat2", "https://tec.openplanner.team/stops/LWOsudr1"], ["https://tec.openplanner.team/stops/Cfocant2", "https://tec.openplanner.team/stops/Cfocorn1"], ["https://tec.openplanner.team/stops/N537aba", "https://tec.openplanner.team/stops/N537aca"], ["https://tec.openplanner.team/stops/H1he111b", "https://tec.openplanner.team/stops/H4be149b"], ["https://tec.openplanner.team/stops/H5wo132a", "https://tec.openplanner.team/stops/H5wo132b"], ["https://tec.openplanner.team/stops/LBPxhav1", "https://tec.openplanner.team/stops/LRGmoul1"], ["https://tec.openplanner.team/stops/Lougare3", "https://tec.openplanner.team/stops/Lsebegu3"], ["https://tec.openplanner.team/stops/H4co109a", "https://tec.openplanner.team/stops/H4co109b"], ["https://tec.openplanner.team/stops/LbThau11", "https://tec.openplanner.team/stops/LbTkreu2"], ["https://tec.openplanner.team/stops/LBgbaga1", "https://tec.openplanner.team/stops/LBgbaga3"], ["https://tec.openplanner.team/stops/LvAkirc2", "https://tec.openplanner.team/stops/LvAkirc3"], ["https://tec.openplanner.team/stops/X643aaa", "https://tec.openplanner.team/stops/X644aaa"], ["https://tec.openplanner.team/stops/H3so172a", "https://tec.openplanner.team/stops/H3so175a"], ["https://tec.openplanner.team/stops/Llmcomb1", "https://tec.openplanner.team/stops/Llmlaro2"], ["https://tec.openplanner.team/stops/Lenptsa1", "https://tec.openplanner.team/stops/Lenvale2"], ["https://tec.openplanner.team/stops/Binccha1", "https://tec.openplanner.team/stops/Bincdon1"], ["https://tec.openplanner.team/stops/LBLplas2", "https://tec.openplanner.team/stops/LBLvici1"], ["https://tec.openplanner.team/stops/LOTawan1", "https://tec.openplanner.team/stops/LOTferm1"], ["https://tec.openplanner.team/stops/X811aaa", "https://tec.openplanner.team/stops/X811aab"], ["https://tec.openplanner.team/stops/Bbchdra2", "https://tec.openplanner.team/stops/Bbchmai1"], ["https://tec.openplanner.team/stops/LSMlier1", "https://tec.openplanner.team/stops/LSMtarg1"], ["https://tec.openplanner.team/stops/N323aaa", "https://tec.openplanner.team/stops/N368afb"], ["https://tec.openplanner.team/stops/N229aia", "https://tec.openplanner.team/stops/N229aib"], ["https://tec.openplanner.team/stops/H4an106a", "https://tec.openplanner.team/stops/H4an107b"], ["https://tec.openplanner.team/stops/N576aba", "https://tec.openplanner.team/stops/N576acb"], ["https://tec.openplanner.team/stops/LTPnoup1", "https://tec.openplanner.team/stops/LTPnoup2"], ["https://tec.openplanner.team/stops/X658aba", "https://tec.openplanner.team/stops/X658ahb"], ["https://tec.openplanner.team/stops/Cciethi1", "https://tec.openplanner.team/stops/Ccircar1"], ["https://tec.openplanner.team/stops/LSOvoie4", "https://tec.openplanner.team/stops/LXHbell1"], ["https://tec.openplanner.team/stops/H4au143a", "https://tec.openplanner.team/stops/H4au143b"], ["https://tec.openplanner.team/stops/N577aea", "https://tec.openplanner.team/stops/N577aeb"], ["https://tec.openplanner.team/stops/Clrrhau1", "https://tec.openplanner.team/stops/Clrrhau2"], ["https://tec.openplanner.team/stops/H1cu114b", "https://tec.openplanner.team/stops/H1cu122a"], ["https://tec.openplanner.team/stops/LMEeg--2", "https://tec.openplanner.team/stops/LMEgare2"], ["https://tec.openplanner.team/stops/Lmlcrot*", "https://tec.openplanner.team/stops/Lmlhaut1"], ["https://tec.openplanner.team/stops/X664aab", "https://tec.openplanner.team/stops/X667aea"], ["https://tec.openplanner.team/stops/Bmelenf2", "https://tec.openplanner.team/stops/Btilsce2"], ["https://tec.openplanner.team/stops/LhGfrie1", "https://tec.openplanner.team/stops/LhGgeme1"], ["https://tec.openplanner.team/stops/X874apa", "https://tec.openplanner.team/stops/X874apb"], ["https://tec.openplanner.team/stops/Cpictra1", "https://tec.openplanner.team/stops/Cpictra2"], ["https://tec.openplanner.team/stops/H4ta121b", "https://tec.openplanner.team/stops/H4ta122b"], ["https://tec.openplanner.team/stops/LPOthom1", "https://tec.openplanner.team/stops/LSdcarr1"], ["https://tec.openplanner.team/stops/N338aab", "https://tec.openplanner.team/stops/N338aha"], ["https://tec.openplanner.team/stops/Btlbcul1", "https://tec.openplanner.team/stops/Btlbcul2"], ["https://tec.openplanner.team/stops/LOunebl2", "https://tec.openplanner.team/stops/X982btb"], ["https://tec.openplanner.team/stops/Cfocant1", "https://tec.openplanner.team/stops/Cfopetr2"], ["https://tec.openplanner.team/stops/Bjod7co1", "https://tec.openplanner.team/stops/Bjod7co2"], ["https://tec.openplanner.team/stops/LrEkirc1", "https://tec.openplanner.team/stops/LrEkirc2"], ["https://tec.openplanner.team/stops/LDOdavi1", "https://tec.openplanner.team/stops/LDOdavi2"], ["https://tec.openplanner.team/stops/H4bw102a", "https://tec.openplanner.team/stops/H4co150a"], ["https://tec.openplanner.team/stops/LTecent1", "https://tec.openplanner.team/stops/LTecent2"], ["https://tec.openplanner.team/stops/LHZ8mai1", "https://tec.openplanner.team/stops/LHZcouv1"], ["https://tec.openplanner.team/stops/Blpgvil1", "https://tec.openplanner.team/stops/Bvxgegl1"], ["https://tec.openplanner.team/stops/H1hr127b", "https://tec.openplanner.team/stops/H1to151a"], ["https://tec.openplanner.team/stops/Broscha2", "https://tec.openplanner.team/stops/Brosegl1"], ["https://tec.openplanner.team/stops/LAx17--2", "https://tec.openplanner.team/stops/LFsbasc2"], ["https://tec.openplanner.team/stops/H4ev118a", "https://tec.openplanner.team/stops/H4ev120b"], ["https://tec.openplanner.team/stops/H2jo162b", "https://tec.openplanner.team/stops/H2jo163c"], ["https://tec.openplanner.team/stops/LAo170-1", "https://tec.openplanner.team/stops/LTPpreh1"], ["https://tec.openplanner.team/stops/LAuvill1", "https://tec.openplanner.team/stops/LWRchem1"], ["https://tec.openplanner.team/stops/H1ms250a", "https://tec.openplanner.team/stops/H1ms942a"], ["https://tec.openplanner.team/stops/LoUwelc1", "https://tec.openplanner.team/stops/LsBzent1"], ["https://tec.openplanner.team/stops/X669aaa", "https://tec.openplanner.team/stops/X669acb"], ["https://tec.openplanner.team/stops/X793afb", "https://tec.openplanner.team/stops/X793agb"], ["https://tec.openplanner.team/stops/Buccvoi1", "https://tec.openplanner.team/stops/Buccvoi3"], ["https://tec.openplanner.team/stops/X721aea", "https://tec.openplanner.team/stops/X721alb"], ["https://tec.openplanner.team/stops/N501jjb", "https://tec.openplanner.team/stops/N501joa"], ["https://tec.openplanner.team/stops/N101ala", "https://tec.openplanner.team/stops/N153aab"], ["https://tec.openplanner.team/stops/X650aaa", "https://tec.openplanner.team/stops/X650aba"], ["https://tec.openplanner.team/stops/X782aoa", "https://tec.openplanner.team/stops/X783aba"], ["https://tec.openplanner.team/stops/LLrchat2", "https://tec.openplanner.team/stops/LLreque1"], ["https://tec.openplanner.team/stops/Bchgegl2", "https://tec.openplanner.team/stops/Bchgrco1"], ["https://tec.openplanner.team/stops/H1ms253a", "https://tec.openplanner.team/stops/H1ms906a"], ["https://tec.openplanner.team/stops/LVnourt1", "https://tec.openplanner.team/stops/LVnourt2"], ["https://tec.openplanner.team/stops/X723aeb", "https://tec.openplanner.team/stops/X765aga"], ["https://tec.openplanner.team/stops/Bquebth1", "https://tec.openplanner.team/stops/Bquecar1"], ["https://tec.openplanner.team/stops/X902ada", "https://tec.openplanner.team/stops/X902ama"], ["https://tec.openplanner.team/stops/H2hg155c", "https://tec.openplanner.team/stops/H2sv215b"], ["https://tec.openplanner.team/stops/Lbbviad1", "https://tec.openplanner.team/stops/Lbbviad4"], ["https://tec.openplanner.team/stops/Bwatavo1", "https://tec.openplanner.team/stops/Bwatbce2"], ["https://tec.openplanner.team/stops/N531aab", "https://tec.openplanner.team/stops/N531abb"], ["https://tec.openplanner.team/stops/N101aic", "https://tec.openplanner.team/stops/N101aob"], ["https://tec.openplanner.team/stops/LVPbleh2", "https://tec.openplanner.team/stops/LVPcrok2"], ["https://tec.openplanner.team/stops/H4ty333a", "https://tec.openplanner.team/stops/H4ty397a"], ["https://tec.openplanner.team/stops/Lagviad2", "https://tec.openplanner.team/stops/Lempass2"], ["https://tec.openplanner.team/stops/LHupont1", "https://tec.openplanner.team/stops/LHupont2"], ["https://tec.openplanner.team/stops/LESgran1", "https://tec.openplanner.team/stops/LESpaix1"], ["https://tec.openplanner.team/stops/LCRvert2", "https://tec.openplanner.team/stops/LKmcite1"], ["https://tec.openplanner.team/stops/X659aea", "https://tec.openplanner.team/stops/X659aqb"], ["https://tec.openplanner.team/stops/X818asc", "https://tec.openplanner.team/stops/X818aua"], ["https://tec.openplanner.team/stops/Bsmgmou1", "https://tec.openplanner.team/stops/Bsmgsuz2"], ["https://tec.openplanner.team/stops/X615aub", "https://tec.openplanner.team/stops/X615bca"], ["https://tec.openplanner.team/stops/X623agb", "https://tec.openplanner.team/stops/X623aha"], ["https://tec.openplanner.team/stops/N219aca", "https://tec.openplanner.team/stops/N219ada"], ["https://tec.openplanner.team/stops/X757afa", "https://tec.openplanner.team/stops/X757agb"], ["https://tec.openplanner.team/stops/Ccunvus1", "https://tec.openplanner.team/stops/Ccurtra1"], ["https://tec.openplanner.team/stops/LLM4rou1", "https://tec.openplanner.team/stops/LLMfond1"], ["https://tec.openplanner.team/stops/X780aga", "https://tec.openplanner.team/stops/X780agb"], ["https://tec.openplanner.team/stops/Lfhbott2", "https://tec.openplanner.team/stops/Lfhvoye2"], ["https://tec.openplanner.team/stops/LHUdelc2", "https://tec.openplanner.team/stops/LHUlebe0"], ["https://tec.openplanner.team/stops/LBIaepo2", "https://tec.openplanner.team/stops/Lmlpech2"], ["https://tec.openplanner.team/stops/Lan14ve2", "https://tec.openplanner.team/stops/Lanetie2"], ["https://tec.openplanner.team/stops/N525aeb", "https://tec.openplanner.team/stops/N525alb"], ["https://tec.openplanner.team/stops/Bezebru2", "https://tec.openplanner.team/stops/Bneelaa1"], ["https://tec.openplanner.team/stops/X681aca", "https://tec.openplanner.team/stops/X696aha"], ["https://tec.openplanner.team/stops/H1hg179b", "https://tec.openplanner.team/stops/H1hy128a"], ["https://tec.openplanner.team/stops/Bnetrbr1", "https://tec.openplanner.team/stops/Bnettir1"], ["https://tec.openplanner.team/stops/LHEecmo2", "https://tec.openplanner.team/stops/LHEepur2"], ["https://tec.openplanner.team/stops/LMApl--1", "https://tec.openplanner.team/stops/LMAptne2"], ["https://tec.openplanner.team/stops/N535aca", "https://tec.openplanner.team/stops/N535atb"], ["https://tec.openplanner.team/stops/X953acb", "https://tec.openplanner.team/stops/X953adb"], ["https://tec.openplanner.team/stops/LLvferm2", "https://tec.openplanner.team/stops/LLvgare2"], ["https://tec.openplanner.team/stops/X609aha", "https://tec.openplanner.team/stops/X610aba"], ["https://tec.openplanner.team/stops/LHHlomb2", "https://tec.openplanner.team/stops/LHHpt--2"], ["https://tec.openplanner.team/stops/LLRptma2", "https://tec.openplanner.team/stops/LLRvill1"], ["https://tec.openplanner.team/stops/Bwatmbv2", "https://tec.openplanner.team/stops/Bwatmch3"], ["https://tec.openplanner.team/stops/N357afa", "https://tec.openplanner.team/stops/N357afb"], ["https://tec.openplanner.team/stops/X818asa", "https://tec.openplanner.team/stops/X818asb"], ["https://tec.openplanner.team/stops/N232afb", "https://tec.openplanner.team/stops/N286aab"], ["https://tec.openplanner.team/stops/X738aca", "https://tec.openplanner.team/stops/X771afb"], ["https://tec.openplanner.team/stops/N539aza", "https://tec.openplanner.team/stops/N539bab"], ["https://tec.openplanner.team/stops/Lghcham1", "https://tec.openplanner.team/stops/Lghecol*"], ["https://tec.openplanner.team/stops/Bptrlux2", "https://tec.openplanner.team/stops/Bptrmar1"], ["https://tec.openplanner.team/stops/N501hma", "https://tec.openplanner.team/stops/N501htb"], ["https://tec.openplanner.team/stops/N544aba", "https://tec.openplanner.team/stops/N550afa"], ["https://tec.openplanner.team/stops/LOTcloe2", "https://tec.openplanner.team/stops/LOTdelv2"], ["https://tec.openplanner.team/stops/H1hr118a", "https://tec.openplanner.team/stops/H1ne137a"], ["https://tec.openplanner.team/stops/LVBsevr2", "https://tec.openplanner.team/stops/LWDchpl1"], ["https://tec.openplanner.team/stops/N506bfb", "https://tec.openplanner.team/stops/N512aga"], ["https://tec.openplanner.team/stops/LAWmc--2", "https://tec.openplanner.team/stops/LAWvill1"], ["https://tec.openplanner.team/stops/N510afb", "https://tec.openplanner.team/stops/N513agc"], ["https://tec.openplanner.team/stops/X608aib", "https://tec.openplanner.team/stops/X609aeb"], ["https://tec.openplanner.team/stops/N116abb", "https://tec.openplanner.team/stops/N151ajf"], ["https://tec.openplanner.team/stops/Bbgeegl1", "https://tec.openplanner.team/stops/Bbgevil1"], ["https://tec.openplanner.team/stops/LBAcarr1", "https://tec.openplanner.team/stops/LBAcent2"], ["https://tec.openplanner.team/stops/H1bs111a", "https://tec.openplanner.team/stops/H1sb146a"], ["https://tec.openplanner.team/stops/X820agb", "https://tec.openplanner.team/stops/X820agc"], ["https://tec.openplanner.team/stops/Btstcar1", "https://tec.openplanner.team/stops/Btstcar2"], ["https://tec.openplanner.team/stops/Bsrgcur1", "https://tec.openplanner.team/stops/Bsrgegl2"], ["https://tec.openplanner.team/stops/X631aab", "https://tec.openplanner.team/stops/X631acb"], ["https://tec.openplanner.team/stops/LwSbrei1", "https://tec.openplanner.team/stops/LwSgeme1"], ["https://tec.openplanner.team/stops/Cbwmato1", "https://tec.openplanner.team/stops/Cmqchap1"], ["https://tec.openplanner.team/stops/N557ahb", "https://tec.openplanner.team/stops/N557aja"], ["https://tec.openplanner.team/stops/Bsgimca1", "https://tec.openplanner.team/stops/Bsgimor1"], ["https://tec.openplanner.team/stops/LScdina1", "https://tec.openplanner.team/stops/LScdina2"], ["https://tec.openplanner.team/stops/Cchblne1", "https://tec.openplanner.team/stops/Cchblne2"], ["https://tec.openplanner.team/stops/N501eia", "https://tec.openplanner.team/stops/N501jrb"], ["https://tec.openplanner.team/stops/Bbiepon2", "https://tec.openplanner.team/stops/Bboneta2"], ["https://tec.openplanner.team/stops/LkEhatt1", "https://tec.openplanner.team/stops/LkEhatt2"], ["https://tec.openplanner.team/stops/X877aab", "https://tec.openplanner.team/stops/X877aea"], ["https://tec.openplanner.team/stops/LWecorn2", "https://tec.openplanner.team/stops/LWerola2"], ["https://tec.openplanner.team/stops/N203aab", "https://tec.openplanner.team/stops/N204afb"], ["https://tec.openplanner.team/stops/LLemonu2", "https://tec.openplanner.team/stops/X547ata"], ["https://tec.openplanner.team/stops/Cfaterg3", "https://tec.openplanner.team/stops/Cfaysle1"], ["https://tec.openplanner.team/stops/Causart2", "https://tec.openplanner.team/stops/N543avg"], ["https://tec.openplanner.team/stops/Llgsnap2", "https://tec.openplanner.team/stops/Llgwiar4"], ["https://tec.openplanner.team/stops/X651ada", "https://tec.openplanner.team/stops/X651agb"], ["https://tec.openplanner.team/stops/X786aib", "https://tec.openplanner.team/stops/X789afa"], ["https://tec.openplanner.team/stops/Ccugrtr2", "https://tec.openplanner.team/stops/Ccupdes1"], ["https://tec.openplanner.team/stops/LSCchap1", "https://tec.openplanner.team/stops/LSCchap2"], ["https://tec.openplanner.team/stops/LWEcarr1", "https://tec.openplanner.team/stops/LWEwall1"], ["https://tec.openplanner.team/stops/X948ada", "https://tec.openplanner.team/stops/X948agb"], ["https://tec.openplanner.team/stops/X644aeb", "https://tec.openplanner.team/stops/X645abb"], ["https://tec.openplanner.team/stops/LCOeg--2", "https://tec.openplanner.team/stops/Lpelouh1"], ["https://tec.openplanner.team/stops/H5rx125b", "https://tec.openplanner.team/stops/H5rx146b"], ["https://tec.openplanner.team/stops/LTIcime1", "https://tec.openplanner.team/stops/LTIdumo2"], ["https://tec.openplanner.team/stops/Lmoboeu4", "https://tec.openplanner.team/stops/Lmomarr1"], ["https://tec.openplanner.team/stops/X837acb", "https://tec.openplanner.team/stops/X837adb"], ["https://tec.openplanner.team/stops/Llxcite2", "https://tec.openplanner.team/stops/LLxcrem1"], ["https://tec.openplanner.team/stops/Bauddel2", "https://tec.openplanner.team/stops/Baudsju2"], ["https://tec.openplanner.team/stops/N301aob", "https://tec.openplanner.team/stops/N301apa"], ["https://tec.openplanner.team/stops/LiVkreu1", "https://tec.openplanner.team/stops/LONcroi2"], ["https://tec.openplanner.team/stops/H3so154b", "https://tec.openplanner.team/stops/H3so167a"], ["https://tec.openplanner.team/stops/H1hh109a", "https://tec.openplanner.team/stops/H1hh115a"], ["https://tec.openplanner.team/stops/H1gi154a", "https://tec.openplanner.team/stops/H1gi154b"], ["https://tec.openplanner.team/stops/N353aba", "https://tec.openplanner.team/stops/N353abb"], ["https://tec.openplanner.team/stops/H4hu114b", "https://tec.openplanner.team/stops/H4hu118b"], ["https://tec.openplanner.team/stops/H4do100a", "https://tec.openplanner.team/stops/H4do100b"], ["https://tec.openplanner.team/stops/N543aea", "https://tec.openplanner.team/stops/N543aga"], ["https://tec.openplanner.team/stops/N234ada", "https://tec.openplanner.team/stops/N234adb"], ["https://tec.openplanner.team/stops/X666aib", "https://tec.openplanner.team/stops/X745aeb"], ["https://tec.openplanner.team/stops/H1sy144c", "https://tec.openplanner.team/stops/H1sy144d"], ["https://tec.openplanner.team/stops/X657ala", "https://tec.openplanner.team/stops/X657alb"], ["https://tec.openplanner.team/stops/N580adb", "https://tec.openplanner.team/stops/N580aeb"], ["https://tec.openplanner.team/stops/LSInd--1", "https://tec.openplanner.team/stops/LSIvieu2"], ["https://tec.openplanner.team/stops/Craferr1", "https://tec.openplanner.team/stops/Craferr2"], ["https://tec.openplanner.team/stops/H1tl119a", "https://tec.openplanner.team/stops/H1tl122b"], ["https://tec.openplanner.team/stops/N509ada", "https://tec.openplanner.team/stops/N509agb"], ["https://tec.openplanner.team/stops/LHUbail2", "https://tec.openplanner.team/stops/LHUhsar2"], ["https://tec.openplanner.team/stops/X824aja", "https://tec.openplanner.team/stops/X829aeb"], ["https://tec.openplanner.team/stops/LMgberw2", "https://tec.openplanner.team/stops/LVIacac1"], ["https://tec.openplanner.team/stops/X904aaa", "https://tec.openplanner.team/stops/X943agb"], ["https://tec.openplanner.team/stops/H2sb226a", "https://tec.openplanner.team/stops/H2sb231d"], ["https://tec.openplanner.team/stops/H4bc101b", "https://tec.openplanner.team/stops/H4bc102a"], ["https://tec.openplanner.team/stops/Bwatavo1", "https://tec.openplanner.team/stops/Bwatclo1"], ["https://tec.openplanner.team/stops/H4ff115b", "https://tec.openplanner.team/stops/H4ff121b"], ["https://tec.openplanner.team/stops/N215abb", "https://tec.openplanner.team/stops/N261aha"], ["https://tec.openplanner.team/stops/H2an100b", "https://tec.openplanner.team/stops/H2an106d"], ["https://tec.openplanner.team/stops/Blmlcar1", "https://tec.openplanner.team/stops/Blmlcar2"], ["https://tec.openplanner.team/stops/LMOelva2", "https://tec.openplanner.team/stops/LMOelva4"], ["https://tec.openplanner.team/stops/H4fa124b", "https://tec.openplanner.team/stops/H4fa126c"], ["https://tec.openplanner.team/stops/H4hx121a", "https://tec.openplanner.team/stops/H4hx124b"], ["https://tec.openplanner.team/stops/Lenptsa2", "https://tec.openplanner.team/stops/Lenvale2"], ["https://tec.openplanner.team/stops/Lancolr1", "https://tec.openplanner.team/stops/Lanothe2"], ["https://tec.openplanner.team/stops/H4ry131a", "https://tec.openplanner.team/stops/H4ry140a"], ["https://tec.openplanner.team/stops/X602amb", "https://tec.openplanner.team/stops/X602apb"], ["https://tec.openplanner.team/stops/H1pa116a", "https://tec.openplanner.team/stops/H1wa155d"], ["https://tec.openplanner.team/stops/X624aab", "https://tec.openplanner.team/stops/X624aba"], ["https://tec.openplanner.team/stops/H1bo145b", "https://tec.openplanner.team/stops/H1bo150a"], ["https://tec.openplanner.team/stops/H4ro156a", "https://tec.openplanner.team/stops/H4ro157b"], ["https://tec.openplanner.team/stops/X764ada", "https://tec.openplanner.team/stops/X764aeb"], ["https://tec.openplanner.team/stops/LBkwind2", "https://tec.openplanner.team/stops/LHCmais2"], ["https://tec.openplanner.team/stops/X640aha", "https://tec.openplanner.team/stops/X640aia"], ["https://tec.openplanner.team/stops/Llgfail1", "https://tec.openplanner.team/stops/Llgrain1"], ["https://tec.openplanner.team/stops/H4mo133a", "https://tec.openplanner.team/stops/H4mo175b"], ["https://tec.openplanner.team/stops/X671ada", "https://tec.openplanner.team/stops/X671adb"], ["https://tec.openplanner.team/stops/Becegar1", "https://tec.openplanner.team/stops/H2ec112a"], ["https://tec.openplanner.team/stops/LSPbass2", "https://tec.openplanner.team/stops/LSPcomm2"], ["https://tec.openplanner.team/stops/LAUnico2", "https://tec.openplanner.team/stops/LAUvict4"], ["https://tec.openplanner.team/stops/LCxwarr1", "https://tec.openplanner.team/stops/LCxwarr2"], ["https://tec.openplanner.team/stops/X674aaa", "https://tec.openplanner.team/stops/X820aha"], ["https://tec.openplanner.team/stops/H4oq409a", "https://tec.openplanner.team/stops/H4oq409b"], ["https://tec.openplanner.team/stops/H4mo158b", "https://tec.openplanner.team/stops/H4mo159a"], ["https://tec.openplanner.team/stops/Brsggde1", "https://tec.openplanner.team/stops/Brsggde2"], ["https://tec.openplanner.team/stops/X850aeb", "https://tec.openplanner.team/stops/X850afa"], ["https://tec.openplanner.team/stops/N509arb", "https://tec.openplanner.team/stops/N509aub"], ["https://tec.openplanner.team/stops/LrD28--1", "https://tec.openplanner.team/stops/LrDhund2"], ["https://tec.openplanner.team/stops/X771adb", "https://tec.openplanner.team/stops/X771ahb"], ["https://tec.openplanner.team/stops/H1do115a", "https://tec.openplanner.team/stops/H1do122a"], ["https://tec.openplanner.team/stops/X398aea", "https://tec.openplanner.team/stops/X398aha"], ["https://tec.openplanner.team/stops/LCOcarr2", "https://tec.openplanner.team/stops/Lpelouh1"], ["https://tec.openplanner.team/stops/X912aab", "https://tec.openplanner.team/stops/X912alb"], ["https://tec.openplanner.team/stops/N343ajb", "https://tec.openplanner.team/stops/X345aca"], ["https://tec.openplanner.team/stops/H2mo124b", "https://tec.openplanner.team/stops/H2mo130c"], ["https://tec.openplanner.team/stops/H1he102a", "https://tec.openplanner.team/stops/H1he104a"], ["https://tec.openplanner.team/stops/Cmyquen2", "https://tec.openplanner.team/stops/Cmysncb1"], ["https://tec.openplanner.team/stops/LRRbuta1", "https://tec.openplanner.team/stops/LRRrimi2"], ["https://tec.openplanner.team/stops/LWAcham1", "https://tec.openplanner.team/stops/LWAmois2"], ["https://tec.openplanner.team/stops/Bbghgli1", "https://tec.openplanner.team/stops/Bbghsta2"], ["https://tec.openplanner.team/stops/X917afb", "https://tec.openplanner.team/stops/X917aia"], ["https://tec.openplanner.team/stops/H2hg154c", "https://tec.openplanner.team/stops/H3lr108a"], ["https://tec.openplanner.team/stops/N166aca", "https://tec.openplanner.team/stops/N166acb"], ["https://tec.openplanner.team/stops/LBAbooz2", "https://tec.openplanner.team/stops/LTrgibe2"], ["https://tec.openplanner.team/stops/LLSba9-2", "https://tec.openplanner.team/stops/LLYcham2"], ["https://tec.openplanner.team/stops/N562bnb", "https://tec.openplanner.team/stops/N562boa"], ["https://tec.openplanner.team/stops/Cmomalg2", "https://tec.openplanner.team/stops/Cmoprov1"], ["https://tec.openplanner.team/stops/H1at110a", "https://tec.openplanner.team/stops/H1fy143a"], ["https://tec.openplanner.team/stops/Llgbago1", "https://tec.openplanner.team/stops/Llgbago2"], ["https://tec.openplanner.team/stops/H4ar101a", "https://tec.openplanner.team/stops/H4lg103b"], ["https://tec.openplanner.team/stops/H4ka187a", "https://tec.openplanner.team/stops/H4ka400a"], ["https://tec.openplanner.team/stops/N309aba", "https://tec.openplanner.team/stops/N309abb"], ["https://tec.openplanner.team/stops/H4ty264a", "https://tec.openplanner.team/stops/H4ty302a"], ["https://tec.openplanner.team/stops/Lfllapi3", "https://tec.openplanner.team/stops/Lfllapi5"], ["https://tec.openplanner.team/stops/Bitrh%C3%BBl1", "https://tec.openplanner.team/stops/Bitrpar2"], ["https://tec.openplanner.team/stops/X801bfa", "https://tec.openplanner.team/stops/X801cfa"], ["https://tec.openplanner.team/stops/N550ajb", "https://tec.openplanner.team/stops/N565aaa"], ["https://tec.openplanner.team/stops/Cgomerm1", "https://tec.openplanner.team/stops/Craplac3"], ["https://tec.openplanner.team/stops/N501hpa", "https://tec.openplanner.team/stops/N501hpb"], ["https://tec.openplanner.team/stops/LeYauss1", "https://tec.openplanner.team/stops/LeYteeh1"], ["https://tec.openplanner.team/stops/Ccycont2", "https://tec.openplanner.team/stops/Crbegli2"], ["https://tec.openplanner.team/stops/N226aba", "https://tec.openplanner.team/stops/N226abb"], ["https://tec.openplanner.team/stops/X660adb", "https://tec.openplanner.team/stops/X660aga"], ["https://tec.openplanner.team/stops/X912aeb", "https://tec.openplanner.team/stops/X912afa"], ["https://tec.openplanner.team/stops/N512aca", "https://tec.openplanner.team/stops/N512axb"], ["https://tec.openplanner.team/stops/LcRkirc1", "https://tec.openplanner.team/stops/LcRmuhl1"], ["https://tec.openplanner.team/stops/LeLgrie1", "https://tec.openplanner.team/stops/LeLgrie2"], ["https://tec.openplanner.team/stops/Bptrgri2", "https://tec.openplanner.team/stops/Bptrpla2"], ["https://tec.openplanner.team/stops/H1em106a", "https://tec.openplanner.team/stops/H1fa117a"], ["https://tec.openplanner.team/stops/N155adb", "https://tec.openplanner.team/stops/N155akb"], ["https://tec.openplanner.team/stops/N543bnb", "https://tec.openplanner.team/stops/N543cna"], ["https://tec.openplanner.team/stops/LHFappe2", "https://tec.openplanner.team/stops/LHFwaut2"], ["https://tec.openplanner.team/stops/LAIrout1", "https://tec.openplanner.team/stops/LSCchap1"], ["https://tec.openplanner.team/stops/LDAbois1", "https://tec.openplanner.team/stops/LVIlore2"], ["https://tec.openplanner.team/stops/Lemarde1", "https://tec.openplanner.team/stops/Lemmusc2"], ["https://tec.openplanner.team/stops/Bbcoeca1", "https://tec.openplanner.team/stops/Bbcoser2"], ["https://tec.openplanner.team/stops/H4pl115a", "https://tec.openplanner.team/stops/H4pl136a"], ["https://tec.openplanner.team/stops/X802ara", "https://tec.openplanner.team/stops/X802aua"], ["https://tec.openplanner.team/stops/Bspkbeu2", "https://tec.openplanner.team/stops/Bstecal2"], ["https://tec.openplanner.team/stops/Btubga02", "https://tec.openplanner.team/stops/Btubnav2"], ["https://tec.openplanner.team/stops/H4ru243a", "https://tec.openplanner.team/stops/H4ru244a"], ["https://tec.openplanner.team/stops/LnEkirc1", "https://tec.openplanner.team/stops/LnEkirc3"], ["https://tec.openplanner.team/stops/Cfrfede2", "https://tec.openplanner.team/stops/Cvp3til4"], ["https://tec.openplanner.team/stops/N212adb", "https://tec.openplanner.team/stops/N348abb"], ["https://tec.openplanner.team/stops/Lcavign2", "https://tec.openplanner.team/stops/LNipla3"], ["https://tec.openplanner.team/stops/X806aea", "https://tec.openplanner.team/stops/X806aeb"], ["https://tec.openplanner.team/stops/N308adb", "https://tec.openplanner.team/stops/N308aya"], ["https://tec.openplanner.team/stops/LLxcbr-1", "https://tec.openplanner.team/stops/LLxcbr-2"], ["https://tec.openplanner.team/stops/H4mo138a", "https://tec.openplanner.team/stops/H4mo198a"], ["https://tec.openplanner.team/stops/Lccaigr2", "https://tec.openplanner.team/stops/LRAgrot1"], ["https://tec.openplanner.team/stops/X658acb", "https://tec.openplanner.team/stops/X658ahb"], ["https://tec.openplanner.team/stops/LMgbatt1", "https://tec.openplanner.team/stops/LMgwith1"], ["https://tec.openplanner.team/stops/Cbbcrbo1", "https://tec.openplanner.team/stops/Cbmvalt2"], ["https://tec.openplanner.team/stops/N309aca", "https://tec.openplanner.team/stops/N365aca"], ["https://tec.openplanner.team/stops/H4ht172a", "https://tec.openplanner.team/stops/H4ht172b"], ["https://tec.openplanner.team/stops/Bleugar1", "https://tec.openplanner.team/stops/H4mn100a"], ["https://tec.openplanner.team/stops/H4eg101a", "https://tec.openplanner.team/stops/H4eg102a"], ["https://tec.openplanner.team/stops/Livfays2", "https://tec.openplanner.team/stops/Livrame2"], ["https://tec.openplanner.team/stops/LFCkett1", "https://tec.openplanner.team/stops/LFCvoer2"], ["https://tec.openplanner.team/stops/LdUkreu1", "https://tec.openplanner.team/stops/LmLbeil2"], ["https://tec.openplanner.team/stops/Cfrbrin2", "https://tec.openplanner.team/stops/Cfrtry1"], ["https://tec.openplanner.team/stops/X663aua", "https://tec.openplanner.team/stops/X664ana"], ["https://tec.openplanner.team/stops/LkEherg2", "https://tec.openplanner.team/stops/LkEschi2"], ["https://tec.openplanner.team/stops/LAicarr1", "https://tec.openplanner.team/stops/LENalun1"], ["https://tec.openplanner.team/stops/N204agb", "https://tec.openplanner.team/stops/N204alb"], ["https://tec.openplanner.team/stops/X763aea", "https://tec.openplanner.team/stops/X763afa"], ["https://tec.openplanner.team/stops/H1ha194a", "https://tec.openplanner.team/stops/H1ha200a"], ["https://tec.openplanner.team/stops/H5fl102b", "https://tec.openplanner.team/stops/H5fl102d"], ["https://tec.openplanner.team/stops/X808aba", "https://tec.openplanner.team/stops/X808aea"], ["https://tec.openplanner.team/stops/Btubga01", "https://tec.openplanner.team/stops/Btubnav2"], ["https://tec.openplanner.team/stops/LlSbuch2", "https://tec.openplanner.team/stops/LlZkirc2"], ["https://tec.openplanner.team/stops/H1fr151b", "https://tec.openplanner.team/stops/H1no140a"], ["https://tec.openplanner.team/stops/Btlbcha2", "https://tec.openplanner.team/stops/Btlbmel2"], ["https://tec.openplanner.team/stops/Cjudewe1", "https://tec.openplanner.team/stops/Cjuplho2"], ["https://tec.openplanner.team/stops/N206ada", "https://tec.openplanner.team/stops/N220acb"], ["https://tec.openplanner.team/stops/H1vb148a", "https://tec.openplanner.team/stops/H1vb148b"], ["https://tec.openplanner.team/stops/LCPbatt1", "https://tec.openplanner.team/stops/LCPbatt2"], ["https://tec.openplanner.team/stops/Bhalomo1", "https://tec.openplanner.team/stops/Bhalomo2"], ["https://tec.openplanner.team/stops/X923aaa", "https://tec.openplanner.team/stops/X923ahb"], ["https://tec.openplanner.team/stops/Bbxlmid1", "https://tec.openplanner.team/stops/Bsgicfo1"], ["https://tec.openplanner.team/stops/LArmaro1", "https://tec.openplanner.team/stops/X548aab"], ["https://tec.openplanner.team/stops/Bjodfco1", "https://tec.openplanner.team/stops/Bpielon2"], ["https://tec.openplanner.team/stops/X717agf", "https://tec.openplanner.team/stops/X718aia"], ["https://tec.openplanner.team/stops/X773aia", "https://tec.openplanner.team/stops/X773ajb"], ["https://tec.openplanner.team/stops/N343ajb", "https://tec.openplanner.team/stops/N350aeb"], ["https://tec.openplanner.team/stops/Bhmmcam1", "https://tec.openplanner.team/stops/Btlgmou1"], ["https://tec.openplanner.team/stops/Cgzblob1", "https://tec.openplanner.team/stops/Cgzha622"], ["https://tec.openplanner.team/stops/LSPwarf1", "https://tec.openplanner.team/stops/LSZjona1"], ["https://tec.openplanner.team/stops/LCUmars1", "https://tec.openplanner.team/stops/LSzsurl1"], ["https://tec.openplanner.team/stops/X993aeb", "https://tec.openplanner.team/stops/X993agb"], ["https://tec.openplanner.team/stops/N166ada", "https://tec.openplanner.team/stops/N166aea"], ["https://tec.openplanner.team/stops/Llgseel1", "https://tec.openplanner.team/stops/Llgwesp2"], ["https://tec.openplanner.team/stops/Bwatcrf1", "https://tec.openplanner.team/stops/Bwattri1"], ["https://tec.openplanner.team/stops/X837aia", "https://tec.openplanner.team/stops/X837aka"], ["https://tec.openplanner.team/stops/Cfmnoci2", "https://tec.openplanner.team/stops/Cfojoli1"], ["https://tec.openplanner.team/stops/H1bl100a", "https://tec.openplanner.team/stops/H1sb146a"], ["https://tec.openplanner.team/stops/Btanbth2", "https://tec.openplanner.team/stops/Btanvil2"], ["https://tec.openplanner.team/stops/N551aib", "https://tec.openplanner.team/stops/N551aiy"], ["https://tec.openplanner.team/stops/N519agb", "https://tec.openplanner.team/stops/N519aha"], ["https://tec.openplanner.team/stops/X741aka", "https://tec.openplanner.team/stops/X741akb"], ["https://tec.openplanner.team/stops/N113adb", "https://tec.openplanner.team/stops/N113afa"], ["https://tec.openplanner.team/stops/H2mo127d", "https://tec.openplanner.team/stops/H2mo129a"], ["https://tec.openplanner.team/stops/Lbhgare1", "https://tec.openplanner.team/stops/LMFmerl1"], ["https://tec.openplanner.team/stops/Landeja1", "https://tec.openplanner.team/stops/Lanmouf2"], ["https://tec.openplanner.team/stops/Bspkbeu2", "https://tec.openplanner.team/stops/H1gy115b"], ["https://tec.openplanner.team/stops/Cbfdufa2", "https://tec.openplanner.team/stops/Cbfstry1"], ["https://tec.openplanner.team/stops/N501aqa", "https://tec.openplanner.team/stops/N501arb"], ["https://tec.openplanner.team/stops/Bbeardu2", "https://tec.openplanner.team/stops/Bmlnbpr2"], ["https://tec.openplanner.team/stops/N501aua", "https://tec.openplanner.team/stops/N501gqa"], ["https://tec.openplanner.team/stops/N501ixc", "https://tec.openplanner.team/stops/N501jia"], ["https://tec.openplanner.team/stops/LTNcarr2", "https://tec.openplanner.team/stops/LTNcarr6"], ["https://tec.openplanner.team/stops/LwYkirc1", "https://tec.openplanner.team/stops/LwYneue2"], ["https://tec.openplanner.team/stops/Cmtmoul2", "https://tec.openplanner.team/stops/Cmtproc2"], ["https://tec.openplanner.team/stops/X817aaa", "https://tec.openplanner.team/stops/X822acb"], ["https://tec.openplanner.team/stops/X901awb", "https://tec.openplanner.team/stops/X902bfb"], ["https://tec.openplanner.team/stops/Crcrlf1", "https://tec.openplanner.team/stops/Csubosa1"], ["https://tec.openplanner.team/stops/N512adb", "https://tec.openplanner.team/stops/N512aeb"], ["https://tec.openplanner.team/stops/H2fa106a", "https://tec.openplanner.team/stops/H2me114b"], ["https://tec.openplanner.team/stops/LeYwald1", "https://tec.openplanner.team/stops/LkOgren2"], ["https://tec.openplanner.team/stops/Bmrsefr1", "https://tec.openplanner.team/stops/Bwaygrg2"], ["https://tec.openplanner.team/stops/X774afa", "https://tec.openplanner.team/stops/X774afb"], ["https://tec.openplanner.team/stops/LMAcite1", "https://tec.openplanner.team/stops/LMAcite2"], ["https://tec.openplanner.team/stops/Cchdagn1", "https://tec.openplanner.team/stops/Cchdagn2"], ["https://tec.openplanner.team/stops/LkEmax-1", "https://tec.openplanner.team/stops/LkEmax-2"], ["https://tec.openplanner.team/stops/H4bx167b", "https://tec.openplanner.team/stops/H4ep129a"], ["https://tec.openplanner.team/stops/LVHcent1", "https://tec.openplanner.team/stops/LVHweri1"], ["https://tec.openplanner.team/stops/H1cv104a", "https://tec.openplanner.team/stops/H1cv104b"], ["https://tec.openplanner.team/stops/H1cu126a", "https://tec.openplanner.team/stops/H1ms247a"], ["https://tec.openplanner.team/stops/H1fr113a", "https://tec.openplanner.team/stops/H1fr113b"], ["https://tec.openplanner.team/stops/Cbwdoua1", "https://tec.openplanner.team/stops/Cbweco2"], ["https://tec.openplanner.team/stops/X696aia", "https://tec.openplanner.team/stops/X696ala"], ["https://tec.openplanner.team/stops/Btiegma1", "https://tec.openplanner.team/stops/LTobilz2"], ["https://tec.openplanner.team/stops/H1eu104b", "https://tec.openplanner.team/stops/H1pa112b"], ["https://tec.openplanner.team/stops/X734acb", "https://tec.openplanner.team/stops/X953aaa"], ["https://tec.openplanner.team/stops/LJOchar1", "https://tec.openplanner.team/stops/LMEgare1"], ["https://tec.openplanner.team/stops/LSHhade1", "https://tec.openplanner.team/stops/LSOgott2"], ["https://tec.openplanner.team/stops/Bettgar1", "https://tec.openplanner.team/stops/Bixleix1"], ["https://tec.openplanner.team/stops/LLtwanz2", "https://tec.openplanner.team/stops/LVHcent2"], ["https://tec.openplanner.team/stops/Bwavgar2", "https://tec.openplanner.team/stops/Bwavgar6"], ["https://tec.openplanner.team/stops/H4le127a", "https://tec.openplanner.team/stops/H4le127b"], ["https://tec.openplanner.team/stops/N155aka", "https://tec.openplanner.team/stops/N155akb"], ["https://tec.openplanner.team/stops/N562alb", "https://tec.openplanner.team/stops/N562aoa"], ["https://tec.openplanner.team/stops/N104aea", "https://tec.openplanner.team/stops/N104aeb"], ["https://tec.openplanner.team/stops/LBUmara2", "https://tec.openplanner.team/stops/LBUmara3"], ["https://tec.openplanner.team/stops/LTIchev1", "https://tec.openplanner.team/stops/LTIchev2"], ["https://tec.openplanner.team/stops/Bbch4br6", "https://tec.openplanner.team/stops/Bbchpil1"], ["https://tec.openplanner.team/stops/Cvsduve2", "https://tec.openplanner.team/stops/N530aja"], ["https://tec.openplanner.team/stops/H1ms252d", "https://tec.openplanner.team/stops/H1ms278b"], ["https://tec.openplanner.team/stops/LSMcles1", "https://tec.openplanner.team/stops/LSMeg--1"], ["https://tec.openplanner.team/stops/H1bo145a", "https://tec.openplanner.team/stops/H1bo150a"], ["https://tec.openplanner.team/stops/H1al146a", "https://tec.openplanner.team/stops/H1sb146a"], ["https://tec.openplanner.team/stops/LHHroua1", "https://tec.openplanner.team/stops/LSG172-2"], ["https://tec.openplanner.team/stops/LLmcheg4", "https://tec.openplanner.team/stops/LLmetat1"], ["https://tec.openplanner.team/stops/Cgpchgo1", "https://tec.openplanner.team/stops/Cgplhoi1"], ["https://tec.openplanner.team/stops/LGLecol2", "https://tec.openplanner.team/stops/LGLgare*"], ["https://tec.openplanner.team/stops/N524aab", "https://tec.openplanner.team/stops/N524afa"], ["https://tec.openplanner.team/stops/H4qu408a", "https://tec.openplanner.team/stops/H4tg262a"], ["https://tec.openplanner.team/stops/H2ch110a", "https://tec.openplanner.team/stops/H2ch110b"], ["https://tec.openplanner.team/stops/X601aua", "https://tec.openplanner.team/stops/X601aud"], ["https://tec.openplanner.team/stops/LgRha211", "https://tec.openplanner.team/stops/LgRhouf2"], ["https://tec.openplanner.team/stops/LMechpl2", "https://tec.openplanner.team/stops/LMemora2"], ["https://tec.openplanner.team/stops/Beceres1", "https://tec.openplanner.team/stops/Beceres2"], ["https://tec.openplanner.team/stops/Lbrchur1", "https://tec.openplanner.team/stops/Lbrmc--2"], ["https://tec.openplanner.team/stops/H4hs136a", "https://tec.openplanner.team/stops/H4mb139a"], ["https://tec.openplanner.team/stops/N508apb", "https://tec.openplanner.team/stops/N516aab"], ["https://tec.openplanner.team/stops/Llgcita1", "https://tec.openplanner.team/stops/Llgcrev2"], ["https://tec.openplanner.team/stops/Bblafrn2", "https://tec.openplanner.team/stops/Bblasse2"], ["https://tec.openplanner.team/stops/Ccycont1", "https://tec.openplanner.team/stops/Cvllerm2"], ["https://tec.openplanner.team/stops/X210azb", "https://tec.openplanner.team/stops/X222afb"], ["https://tec.openplanner.team/stops/Bgerprg1", "https://tec.openplanner.team/stops/Bgerprg2"], ["https://tec.openplanner.team/stops/Cmosaba1", "https://tec.openplanner.team/stops/Cmosaba3"], ["https://tec.openplanner.team/stops/H1by107b", "https://tec.openplanner.team/stops/H1by109b"], ["https://tec.openplanner.team/stops/X908aba", "https://tec.openplanner.team/stops/X955aeb"], ["https://tec.openplanner.team/stops/X317aaa", "https://tec.openplanner.team/stops/X317aba"], ["https://tec.openplanner.team/stops/LFlabba3", "https://tec.openplanner.team/stops/LFlabba4"], ["https://tec.openplanner.team/stops/H1gr111b", "https://tec.openplanner.team/stops/H1hv136a"], ["https://tec.openplanner.team/stops/N534bpb", "https://tec.openplanner.team/stops/N534bvb"], ["https://tec.openplanner.team/stops/Cfobriq1", "https://tec.openplanner.team/stops/Cfogaul1"], ["https://tec.openplanner.team/stops/X636bba", "https://tec.openplanner.team/stops/X636bdb"], ["https://tec.openplanner.team/stops/LWNcime1", "https://tec.openplanner.team/stops/LWzfuma1"], ["https://tec.openplanner.team/stops/Chpceri2", "https://tec.openplanner.team/stops/Chprobi2"], ["https://tec.openplanner.team/stops/LHDchar3", "https://tec.openplanner.team/stops/LHDchar4"], ["https://tec.openplanner.team/stops/N501dfa", "https://tec.openplanner.team/stops/N501mya"], ["https://tec.openplanner.team/stops/Cgncail2", "https://tec.openplanner.team/stops/Cgnpass1"], ["https://tec.openplanner.team/stops/LTRmosb1", "https://tec.openplanner.team/stops/LTRmosb2"], ["https://tec.openplanner.team/stops/X826aaa", "https://tec.openplanner.team/stops/X831aba"], ["https://tec.openplanner.team/stops/LLrfrai1", "https://tec.openplanner.team/stops/LLrmc--1"], ["https://tec.openplanner.team/stops/LTheg--1", "https://tec.openplanner.team/stops/LTheg--2"], ["https://tec.openplanner.team/stops/H3br100b", "https://tec.openplanner.team/stops/H3br101a"], ["https://tec.openplanner.team/stops/Cmabegh2", "https://tec.openplanner.team/stops/Cmastch1"], ["https://tec.openplanner.team/stops/X346abb", "https://tec.openplanner.team/stops/X892aga"], ["https://tec.openplanner.team/stops/X622acb", "https://tec.openplanner.team/stops/X622ada"], ["https://tec.openplanner.team/stops/N212ada", "https://tec.openplanner.team/stops/N348aea"], ["https://tec.openplanner.team/stops/Cmtduch1", "https://tec.openplanner.team/stops/Cmtprey1"], ["https://tec.openplanner.team/stops/Bjodath2", "https://tec.openplanner.team/stops/Bjodgar1"], ["https://tec.openplanner.team/stops/Bcsgres1", "https://tec.openplanner.team/stops/Blasbgc2"], ["https://tec.openplanner.team/stops/Lstamph1", "https://tec.openplanner.team/stops/Lstamph2"], ["https://tec.openplanner.team/stops/LGlbour1", "https://tec.openplanner.team/stops/LHZ8mai2"], ["https://tec.openplanner.team/stops/Bdlmflo2", "https://tec.openplanner.team/stops/Bdvmcbo2"], ["https://tec.openplanner.team/stops/Ljufler2", "https://tec.openplanner.team/stops/Ljumesa1"], ["https://tec.openplanner.team/stops/Cflfaub2", "https://tec.openplanner.team/stops/NC12adb"], ["https://tec.openplanner.team/stops/LSZpont1", "https://tec.openplanner.team/stops/LSZpont2"], ["https://tec.openplanner.team/stops/N501grb", "https://tec.openplanner.team/stops/N501grf"], ["https://tec.openplanner.team/stops/LLTfall1", "https://tec.openplanner.team/stops/LLTther2"], ["https://tec.openplanner.team/stops/N874aab", "https://tec.openplanner.team/stops/N874ahb"], ["https://tec.openplanner.team/stops/Cctbois3", "https://tec.openplanner.team/stops/Cctbois4"], ["https://tec.openplanner.team/stops/LSdbvue1", "https://tec.openplanner.team/stops/LSdcarr2"], ["https://tec.openplanner.team/stops/N501ebb", "https://tec.openplanner.team/stops/N501edb"], ["https://tec.openplanner.team/stops/N577ada", "https://tec.openplanner.team/stops/N577aka"], ["https://tec.openplanner.team/stops/N214aha", "https://tec.openplanner.team/stops/N225aaa"], ["https://tec.openplanner.team/stops/H4mb203b", "https://tec.openplanner.team/stops/H4mb204a"], ["https://tec.openplanner.team/stops/X919aia", "https://tec.openplanner.team/stops/X919aoa"], ["https://tec.openplanner.team/stops/LmNbirt2", "https://tec.openplanner.team/stops/LmNsv872"], ["https://tec.openplanner.team/stops/N234aaa", "https://tec.openplanner.team/stops/N234afa"], ["https://tec.openplanner.team/stops/X715aia", "https://tec.openplanner.team/stops/X715aib"], ["https://tec.openplanner.team/stops/N559aba", "https://tec.openplanner.team/stops/N559aea"], ["https://tec.openplanner.team/stops/Cctpche1", "https://tec.openplanner.team/stops/NC11afa"], ["https://tec.openplanner.team/stops/Lemambi1", "https://tec.openplanner.team/stops/Lemparc1"], ["https://tec.openplanner.team/stops/X880afa", "https://tec.openplanner.team/stops/X880aha"], ["https://tec.openplanner.team/stops/Blmlbou2", "https://tec.openplanner.team/stops/Blmlfau1"], ["https://tec.openplanner.team/stops/X946ada", "https://tec.openplanner.team/stops/X948acb"], ["https://tec.openplanner.team/stops/X629abb", "https://tec.openplanner.team/stops/X629aca"], ["https://tec.openplanner.team/stops/N308bcb", "https://tec.openplanner.team/stops/N308bhb"], ["https://tec.openplanner.team/stops/X615bdb", "https://tec.openplanner.team/stops/X615beb"], ["https://tec.openplanner.team/stops/N248aca", "https://tec.openplanner.team/stops/N248acb"], ["https://tec.openplanner.team/stops/X622aaa", "https://tec.openplanner.team/stops/X622aab"], ["https://tec.openplanner.team/stops/Brosegl1", "https://tec.openplanner.team/stops/Brosegl2"], ["https://tec.openplanner.team/stops/H1en101b", "https://tec.openplanner.team/stops/H1en103a"], ["https://tec.openplanner.team/stops/X876adb", "https://tec.openplanner.team/stops/X876aeb"], ["https://tec.openplanner.team/stops/LFAwale1", "https://tec.openplanner.team/stops/LLWcarr1"], ["https://tec.openplanner.team/stops/LPbpl--2", "https://tec.openplanner.team/stops/LPbtene2"], ["https://tec.openplanner.team/stops/Bptecal1", "https://tec.openplanner.team/stops/Bptegna1"], ["https://tec.openplanner.team/stops/LBpberl2", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://tec.openplanner.team/stops/X897aia", "https://tec.openplanner.team/stops/X897ajb"], ["https://tec.openplanner.team/stops/X985ada", "https://tec.openplanner.team/stops/X985ahb"], ["https://tec.openplanner.team/stops/H2sb231c", "https://tec.openplanner.team/stops/H2sb231d"], ["https://tec.openplanner.team/stops/LMOelva4", "https://tec.openplanner.team/stops/LMOs45-1"], ["https://tec.openplanner.team/stops/LeUath2", "https://tec.openplanner.team/stops/LeUauto1"], ["https://tec.openplanner.team/stops/LWapl--1", "https://tec.openplanner.team/stops/LWapl--2"], ["https://tec.openplanner.team/stops/LLg9---1", "https://tec.openplanner.team/stops/LLgcent1"], ["https://tec.openplanner.team/stops/X664aja", "https://tec.openplanner.team/stops/X664ajb"], ["https://tec.openplanner.team/stops/Clibrun1", "https://tec.openplanner.team/stops/Clibrun2"], ["https://tec.openplanner.team/stops/X757aea", "https://tec.openplanner.team/stops/X757anb"], ["https://tec.openplanner.team/stops/N150aka", "https://tec.openplanner.team/stops/N150akb"], ["https://tec.openplanner.team/stops/LBlplac2", "https://tec.openplanner.team/stops/LSEec--1"], ["https://tec.openplanner.team/stops/H1pa120a", "https://tec.openplanner.team/stops/H1wa151a"], ["https://tec.openplanner.team/stops/Lgrbill2", "https://tec.openplanner.team/stops/Lgrramp1"], ["https://tec.openplanner.team/stops/LCShoux2", "https://tec.openplanner.team/stops/LCSmagn2"], ["https://tec.openplanner.team/stops/Cgpleco1", "https://tec.openplanner.team/stops/Cgpleco2"], ["https://tec.openplanner.team/stops/N531ada", "https://tec.openplanner.team/stops/N531adb"], ["https://tec.openplanner.team/stops/X982cca", "https://tec.openplanner.team/stops/X982cda"], ["https://tec.openplanner.team/stops/X804aza", "https://tec.openplanner.team/stops/X804bza"], ["https://tec.openplanner.team/stops/LPAbour2", "https://tec.openplanner.team/stops/LWibare1"], ["https://tec.openplanner.team/stops/Bsdacab2", "https://tec.openplanner.team/stops/Bvlvpco2"], ["https://tec.openplanner.team/stops/LdUespe3", "https://tec.openplanner.team/stops/LdUespe4"], ["https://tec.openplanner.team/stops/H2ch100b", "https://tec.openplanner.team/stops/H2ch100c"], ["https://tec.openplanner.team/stops/N338afb", "https://tec.openplanner.team/stops/N338agb"], ["https://tec.openplanner.team/stops/X939aaa", "https://tec.openplanner.team/stops/X940aeb"], ["https://tec.openplanner.team/stops/N202aca", "https://tec.openplanner.team/stops/N202aga"], ["https://tec.openplanner.team/stops/LCLacbi1", "https://tec.openplanner.team/stops/LCLstat2"], ["https://tec.openplanner.team/stops/LBRmc--3", "https://tec.openplanner.team/stops/LBRpt--2"], ["https://tec.openplanner.team/stops/H3bi113b", "https://tec.openplanner.team/stops/H3bi119a"], ["https://tec.openplanner.team/stops/X902aga", "https://tec.openplanner.team/stops/X902aha"], ["https://tec.openplanner.team/stops/H4mo188a", "https://tec.openplanner.team/stops/H4mo208a"], ["https://tec.openplanner.team/stops/Cbfpoti1", "https://tec.openplanner.team/stops/NC11ajb"], ["https://tec.openplanner.team/stops/LJAbell1", "https://tec.openplanner.team/stops/LJAferm2"], ["https://tec.openplanner.team/stops/N202aec", "https://tec.openplanner.team/stops/N203aca"], ["https://tec.openplanner.team/stops/LHNhall3", "https://tec.openplanner.team/stops/LHNhv--2"], ["https://tec.openplanner.team/stops/X717acb", "https://tec.openplanner.team/stops/X782aeb"], ["https://tec.openplanner.team/stops/LSIcour2", "https://tec.openplanner.team/stops/LSItert2"], ["https://tec.openplanner.team/stops/Bmrsayw2", "https://tec.openplanner.team/stops/Bohnmon1"], ["https://tec.openplanner.team/stops/X982cab", "https://tec.openplanner.team/stops/X982cbb"], ["https://tec.openplanner.team/stops/Bcrbhir1", "https://tec.openplanner.team/stops/Bnilcab2"], ["https://tec.openplanner.team/stops/LESchac1", "https://tec.openplanner.team/stops/LPOecol1"], ["https://tec.openplanner.team/stops/Bjodint2", "https://tec.openplanner.team/stops/NR10aaa"], ["https://tec.openplanner.team/stops/N520acb", "https://tec.openplanner.team/stops/N520aeb"], ["https://tec.openplanner.team/stops/Lsemaha1", "https://tec.openplanner.team/stops/Lsemaha2"], ["https://tec.openplanner.team/stops/Cthpibl1", "https://tec.openplanner.team/stops/Cthvbas4"], ["https://tec.openplanner.team/stops/LKmcabi2", "https://tec.openplanner.team/stops/LKmeg--2"], ["https://tec.openplanner.team/stops/X808aha", "https://tec.openplanner.team/stops/X808ahb"], ["https://tec.openplanner.team/stops/LMvrabo1", "https://tec.openplanner.team/stops/LMvrabo2"], ["https://tec.openplanner.team/stops/X805agb", "https://tec.openplanner.team/stops/X807abb"], ["https://tec.openplanner.team/stops/X639ama", "https://tec.openplanner.team/stops/X675aab"], ["https://tec.openplanner.team/stops/H1wa151a", "https://tec.openplanner.team/stops/H1wa163b"], ["https://tec.openplanner.team/stops/Bsdecdi1", "https://tec.openplanner.team/stops/Bsdecdi2"], ["https://tec.openplanner.team/stops/X641aob", "https://tec.openplanner.team/stops/X646ada"], ["https://tec.openplanner.team/stops/X633aea", "https://tec.openplanner.team/stops/X633aeb"], ["https://tec.openplanner.team/stops/LaM266-1", "https://tec.openplanner.team/stops/LaMbrei2"], ["https://tec.openplanner.team/stops/H4mo147a", "https://tec.openplanner.team/stops/H4mo169a"], ["https://tec.openplanner.team/stops/LHCbran1", "https://tec.openplanner.team/stops/LHCruyf1"], ["https://tec.openplanner.team/stops/N228aaa", "https://tec.openplanner.team/stops/N228aab"], ["https://tec.openplanner.team/stops/X907aeb", "https://tec.openplanner.team/stops/X908asb"], ["https://tec.openplanner.team/stops/X637ama", "https://tec.openplanner.team/stops/X637amb"], ["https://tec.openplanner.team/stops/Btanvil1", "https://tec.openplanner.team/stops/Btanvil2"], ["https://tec.openplanner.team/stops/LMHec--2", "https://tec.openplanner.team/stops/LMHplac1"], ["https://tec.openplanner.team/stops/X612aab", "https://tec.openplanner.team/stops/X623aaa"], ["https://tec.openplanner.team/stops/H1bb120b", "https://tec.openplanner.team/stops/H1do127b"], ["https://tec.openplanner.team/stops/N132aba", "https://tec.openplanner.team/stops/N152abc"], ["https://tec.openplanner.team/stops/H1ni320a", "https://tec.openplanner.team/stops/H1ni320b"], ["https://tec.openplanner.team/stops/Cnagrro1", "https://tec.openplanner.team/stops/Cnathib1"], ["https://tec.openplanner.team/stops/N383ada", "https://tec.openplanner.team/stops/N383aea"], ["https://tec.openplanner.team/stops/X982bta", "https://tec.openplanner.team/stops/X982bza"], ["https://tec.openplanner.team/stops/H1cu128a", "https://tec.openplanner.team/stops/H1cu128b"], ["https://tec.openplanner.team/stops/H2hg145a", "https://tec.openplanner.team/stops/H2hg146a"], ["https://tec.openplanner.team/stops/N538aba", "https://tec.openplanner.team/stops/N538aeb"], ["https://tec.openplanner.team/stops/Blthbss1", "https://tec.openplanner.team/stops/Brxmcna1"], ["https://tec.openplanner.team/stops/Llgcong3", "https://tec.openplanner.team/stops/Llgterr1"], ["https://tec.openplanner.team/stops/X922aeb", "https://tec.openplanner.team/stops/X922afb"], ["https://tec.openplanner.team/stops/N141ajb", "https://tec.openplanner.team/stops/N141alb"], ["https://tec.openplanner.team/stops/X636aka", "https://tec.openplanner.team/stops/X636bfa"], ["https://tec.openplanner.team/stops/X604ahb", "https://tec.openplanner.team/stops/X618aab"], ["https://tec.openplanner.team/stops/Bwavbpi1", "https://tec.openplanner.team/stops/Bwavlca1"], ["https://tec.openplanner.team/stops/X615aca", "https://tec.openplanner.team/stops/X615akb"], ["https://tec.openplanner.team/stops/Cbuplac3", "https://tec.openplanner.team/stops/Cfnsenz2"], ["https://tec.openplanner.team/stops/LMArave1", "https://tec.openplanner.team/stops/LMArave2"], ["https://tec.openplanner.team/stops/N101aaa", "https://tec.openplanner.team/stops/N118alb"], ["https://tec.openplanner.team/stops/X398aba", "https://tec.openplanner.team/stops/X398abb"], ["https://tec.openplanner.team/stops/Bdvmtve2", "https://tec.openplanner.team/stops/Bgisman1"], ["https://tec.openplanner.team/stops/Lemdieu1", "https://tec.openplanner.team/stops/Lemsely2"], ["https://tec.openplanner.team/stops/N542aba", "https://tec.openplanner.team/stops/N542acb"], ["https://tec.openplanner.team/stops/Lbrnanc2", "https://tec.openplanner.team/stops/Llglill2"], ["https://tec.openplanner.team/stops/Beclesp2", "https://tec.openplanner.team/stops/H2ec105b"], ["https://tec.openplanner.team/stops/Lvearle1", "https://tec.openplanner.team/stops/Lvescie1"], ["https://tec.openplanner.team/stops/LrEkais2", "https://tec.openplanner.team/stops/LrErauw2"], ["https://tec.openplanner.team/stops/Bhevjac2", "https://tec.openplanner.team/stops/Bhevjal1"], ["https://tec.openplanner.team/stops/N542apb", "https://tec.openplanner.team/stops/N542aqb"], ["https://tec.openplanner.team/stops/LCschri2", "https://tec.openplanner.team/stops/LCseg--1"], ["https://tec.openplanner.team/stops/Cvrchap1", "https://tec.openplanner.team/stops/Cvrchap2"], ["https://tec.openplanner.team/stops/Bnivga12", "https://tec.openplanner.team/stops/Bnivsse1"], ["https://tec.openplanner.team/stops/Cciqueu1", "https://tec.openplanner.team/stops/Clvchen1"], ["https://tec.openplanner.team/stops/LHHcite2", "https://tec.openplanner.team/stops/LHHtill1"], ["https://tec.openplanner.team/stops/NL72aca", "https://tec.openplanner.team/stops/NL76aeb"], ["https://tec.openplanner.team/stops/H1ha184a", "https://tec.openplanner.team/stops/H1ob330a"], ["https://tec.openplanner.team/stops/H1wa149b", "https://tec.openplanner.team/stops/H1wa156b"], ["https://tec.openplanner.team/stops/H4pq115b", "https://tec.openplanner.team/stops/H4pq120a"], ["https://tec.openplanner.team/stops/H1fy118a", "https://tec.openplanner.team/stops/H1wi150b"], ["https://tec.openplanner.team/stops/LNCchau3", "https://tec.openplanner.team/stops/LNCmoul1"], ["https://tec.openplanner.team/stops/H4mv190b", "https://tec.openplanner.team/stops/H4mv194b"], ["https://tec.openplanner.team/stops/Bwavlep1", "https://tec.openplanner.team/stops/Bwavtpi2"], ["https://tec.openplanner.team/stops/Bgnpgen1", "https://tec.openplanner.team/stops/Bgnpgen2"], ["https://tec.openplanner.team/stops/LVIdepo2", "https://tec.openplanner.team/stops/LVIhala3"], ["https://tec.openplanner.team/stops/Lremonu1", "https://tec.openplanner.team/stops/Lretill1"], ["https://tec.openplanner.team/stops/LFLcarr2", "https://tec.openplanner.team/stops/LMvrabo1"], ["https://tec.openplanner.team/stops/Lgrgoff2", "https://tec.openplanner.team/stops/Lgrjobe2"], ["https://tec.openplanner.team/stops/N351aia", "https://tec.openplanner.team/stops/N351axa"], ["https://tec.openplanner.team/stops/Cflbrun1", "https://tec.openplanner.team/stops/Cflchap2"], ["https://tec.openplanner.team/stops/H1ba103b", "https://tec.openplanner.team/stops/H1ba108a"], ["https://tec.openplanner.team/stops/LRfbeau1", "https://tec.openplanner.team/stops/LRfbeau2"], ["https://tec.openplanner.team/stops/H4ru240a", "https://tec.openplanner.team/stops/H4ru240b"], ["https://tec.openplanner.team/stops/N508aja", "https://tec.openplanner.team/stops/N508ajc"], ["https://tec.openplanner.team/stops/H4hx109a", "https://tec.openplanner.team/stops/H4mo182a"], ["https://tec.openplanner.team/stops/Llmbell2", "https://tec.openplanner.team/stops/Llmdavi2"], ["https://tec.openplanner.team/stops/H5gr135b", "https://tec.openplanner.team/stops/H5qu144a"], ["https://tec.openplanner.team/stops/LTIcime2", "https://tec.openplanner.team/stops/LTIecma2"], ["https://tec.openplanner.team/stops/LHaeg--1", "https://tec.openplanner.team/stops/X982agb"], ["https://tec.openplanner.team/stops/X601bya", "https://tec.openplanner.team/stops/X601cha"], ["https://tec.openplanner.team/stops/X601bqa", "https://tec.openplanner.team/stops/X601bza"], ["https://tec.openplanner.team/stops/Bgoegma2", "https://tec.openplanner.team/stops/Bgoesch3"], ["https://tec.openplanner.team/stops/Llochar4", "https://tec.openplanner.team/stops/Llochar5"], ["https://tec.openplanner.team/stops/N511aja", "https://tec.openplanner.team/stops/N511aka"], ["https://tec.openplanner.team/stops/Barcpre2", "https://tec.openplanner.team/stops/Bgzdcwa1"], ["https://tec.openplanner.team/stops/X661bbb", "https://tec.openplanner.team/stops/X672aob"], ["https://tec.openplanner.team/stops/Bbeardu1", "https://tec.openplanner.team/stops/Bbeardu2"], ["https://tec.openplanner.team/stops/H1wi148a", "https://tec.openplanner.team/stops/H1wi148c"], ["https://tec.openplanner.team/stops/Llglema1", "https://tec.openplanner.team/stops/Llglema3"], ["https://tec.openplanner.team/stops/LWEpaul1", "https://tec.openplanner.team/stops/LWEwilc2"], ["https://tec.openplanner.team/stops/N111aab", "https://tec.openplanner.team/stops/N113aba"], ["https://tec.openplanner.team/stops/H4wa149a", "https://tec.openplanner.team/stops/H4wa153b"], ["https://tec.openplanner.team/stops/LhMdorf1", "https://tec.openplanner.team/stops/LmCkirc1"], ["https://tec.openplanner.team/stops/X390aja", "https://tec.openplanner.team/stops/X390ajb"], ["https://tec.openplanner.team/stops/H1at110a", "https://tec.openplanner.team/stops/H1at110b"], ["https://tec.openplanner.team/stops/X653adb", "https://tec.openplanner.team/stops/X653aea"], ["https://tec.openplanner.team/stops/N513ara", "https://tec.openplanner.team/stops/N513arb"], ["https://tec.openplanner.team/stops/LBKmare1", "https://tec.openplanner.team/stops/LBKmare2"], ["https://tec.openplanner.team/stops/H4te253b", "https://tec.openplanner.team/stops/H4te260a"], ["https://tec.openplanner.team/stops/N501cqb", "https://tec.openplanner.team/stops/N501crd"], ["https://tec.openplanner.team/stops/Cchalou1", "https://tec.openplanner.team/stops/Cchalou2"], ["https://tec.openplanner.team/stops/LPobois1", "https://tec.openplanner.team/stops/LTgsous2"], ["https://tec.openplanner.team/stops/Llgatel2", "https://tec.openplanner.team/stops/Llggee52"], ["https://tec.openplanner.team/stops/Bcrncor2", "https://tec.openplanner.team/stops/Bcrntru2"], ["https://tec.openplanner.team/stops/X801cha", "https://tec.openplanner.team/stops/X801chb"], ["https://tec.openplanner.team/stops/Brsgepr2", "https://tec.openplanner.team/stops/Brsgges1"], ["https://tec.openplanner.team/stops/Lenauln1", "https://tec.openplanner.team/stops/Lencham*"], ["https://tec.openplanner.team/stops/H5at136a", "https://tec.openplanner.team/stops/H5at139a"], ["https://tec.openplanner.team/stops/X617ada", "https://tec.openplanner.team/stops/X695ada"], ["https://tec.openplanner.team/stops/H4lz126a", "https://tec.openplanner.team/stops/H4lz126b"], ["https://tec.openplanner.team/stops/H1ci104a", "https://tec.openplanner.team/stops/H1hn206b"], ["https://tec.openplanner.team/stops/N232bla", "https://tec.openplanner.team/stops/N232blb"], ["https://tec.openplanner.team/stops/X982bdb", "https://tec.openplanner.team/stops/X982cba"], ["https://tec.openplanner.team/stops/H4pl115b", "https://tec.openplanner.team/stops/H4pl117b"], ["https://tec.openplanner.team/stops/Lhufays1", "https://tec.openplanner.team/stops/LSProya2"], ["https://tec.openplanner.team/stops/X657aea", "https://tec.openplanner.team/stops/X657ala"], ["https://tec.openplanner.team/stops/LbTmuhl1", "https://tec.openplanner.team/stops/LnIschw1"], ["https://tec.openplanner.team/stops/X723ahb", "https://tec.openplanner.team/stops/X775alb"], ["https://tec.openplanner.team/stops/X396aba", "https://tec.openplanner.team/stops/X396adb"], ["https://tec.openplanner.team/stops/H4ir164b", "https://tec.openplanner.team/stops/H4ir167b"], ["https://tec.openplanner.team/stops/H1ss349a", "https://tec.openplanner.team/stops/H1ss349b"], ["https://tec.openplanner.team/stops/X636aba", "https://tec.openplanner.team/stops/X670ama"], ["https://tec.openplanner.team/stops/N501fsa", "https://tec.openplanner.team/stops/N501fta"], ["https://tec.openplanner.team/stops/LTgchar7", "https://tec.openplanner.team/stops/LTgchar8"], ["https://tec.openplanner.team/stops/X804avb", "https://tec.openplanner.team/stops/X804brb"], ["https://tec.openplanner.team/stops/N513aoa", "https://tec.openplanner.team/stops/N513apa"], ["https://tec.openplanner.team/stops/H4te251b", "https://tec.openplanner.team/stops/H4te413b"], ["https://tec.openplanner.team/stops/N302aca", "https://tec.openplanner.team/stops/N302acb"], ["https://tec.openplanner.team/stops/H1eu107b", "https://tec.openplanner.team/stops/H1sb144a"], ["https://tec.openplanner.team/stops/N988aca", "https://tec.openplanner.team/stops/N988acb"], ["https://tec.openplanner.team/stops/X657aba", "https://tec.openplanner.team/stops/X657abb"], ["https://tec.openplanner.team/stops/Llgbert2", "https://tec.openplanner.team/stops/Llgware1"], ["https://tec.openplanner.team/stops/Lghmeun3", "https://tec.openplanner.team/stops/Ljejoli1"], ["https://tec.openplanner.team/stops/Cfocmed1", "https://tec.openplanner.team/stops/Cforepo1"], ["https://tec.openplanner.team/stops/X801asa", "https://tec.openplanner.team/stops/X801ayb"], ["https://tec.openplanner.team/stops/X902aeb", "https://tec.openplanner.team/stops/X902ara"], ["https://tec.openplanner.team/stops/H4pi130b", "https://tec.openplanner.team/stops/H4pi134b"], ["https://tec.openplanner.team/stops/X774aad", "https://tec.openplanner.team/stops/X954agb"], ["https://tec.openplanner.team/stops/Cvlcen1", "https://tec.openplanner.team/stops/Cvlpeau2"], ["https://tec.openplanner.team/stops/X723aea", "https://tec.openplanner.team/stops/X723aeb"], ["https://tec.openplanner.team/stops/N343aeb", "https://tec.openplanner.team/stops/N343aib"], ["https://tec.openplanner.team/stops/H1bo104b", "https://tec.openplanner.team/stops/H1bo150b"], ["https://tec.openplanner.team/stops/N201aua", "https://tec.openplanner.team/stops/N201aub"], ["https://tec.openplanner.team/stops/Cvtgsar2", "https://tec.openplanner.team/stops/Cvtndam2"], ["https://tec.openplanner.team/stops/N501ama", "https://tec.openplanner.team/stops/N501bcb"], ["https://tec.openplanner.team/stops/X872aba", "https://tec.openplanner.team/stops/X872afa"], ["https://tec.openplanner.team/stops/LHDlibi2", "https://tec.openplanner.team/stops/LLmcheg3"], ["https://tec.openplanner.team/stops/LBGgeer1", "https://tec.openplanner.team/stops/LGrchpl2"], ["https://tec.openplanner.team/stops/X804baa", "https://tec.openplanner.team/stops/X804bfb"], ["https://tec.openplanner.team/stops/N161aaa", "https://tec.openplanner.team/stops/N161afa"], ["https://tec.openplanner.team/stops/N539bca", "https://tec.openplanner.team/stops/N539beb"], ["https://tec.openplanner.team/stops/Cflecga1", "https://tec.openplanner.team/stops/Cwgcroi2"], ["https://tec.openplanner.team/stops/Bsoigar1", "https://tec.openplanner.team/stops/H3so161a"], ["https://tec.openplanner.team/stops/N123abb", "https://tec.openplanner.team/stops/N123ada"], ["https://tec.openplanner.team/stops/X922aib", "https://tec.openplanner.team/stops/X942afa"], ["https://tec.openplanner.team/stops/X947abb", "https://tec.openplanner.team/stops/X948aha"], ["https://tec.openplanner.team/stops/Ladjaur2", "https://tec.openplanner.team/stops/Ladotto2"], ["https://tec.openplanner.team/stops/Bottcco2", "https://tec.openplanner.team/stops/Bottpma1"], ["https://tec.openplanner.team/stops/Bquebut2", "https://tec.openplanner.team/stops/Bquegen2"], ["https://tec.openplanner.team/stops/Lfh-sci1", "https://tec.openplanner.team/stops/Lsevico1"], ["https://tec.openplanner.team/stops/X822afb", "https://tec.openplanner.team/stops/X822akb"], ["https://tec.openplanner.team/stops/LLgmini1", "https://tec.openplanner.team/stops/LRCviad1"], ["https://tec.openplanner.team/stops/X804ald", "https://tec.openplanner.team/stops/X804bpa"], ["https://tec.openplanner.team/stops/Bgrmver1", "https://tec.openplanner.team/stops/Bgrmver2"], ["https://tec.openplanner.team/stops/Cmlhotv1", "https://tec.openplanner.team/stops/Cmlvpla2"], ["https://tec.openplanner.team/stops/LLmpt--1", "https://tec.openplanner.team/stops/LLmvict1"], ["https://tec.openplanner.team/stops/N520ada", "https://tec.openplanner.team/stops/N520aea"], ["https://tec.openplanner.team/stops/LBscime2", "https://tec.openplanner.team/stops/LMHtill2"], ["https://tec.openplanner.team/stops/Ctrpn1", "https://tec.openplanner.team/stops/Ctrpn2"], ["https://tec.openplanner.team/stops/X641afb", "https://tec.openplanner.team/stops/X641apb"], ["https://tec.openplanner.team/stops/X614afb", "https://tec.openplanner.team/stops/X615bha"], ["https://tec.openplanner.team/stops/Lhr2ave1", "https://tec.openplanner.team/stops/Lhr4ave1"], ["https://tec.openplanner.team/stops/X638ama", "https://tec.openplanner.team/stops/X638amb"], ["https://tec.openplanner.team/stops/H4ep128b", "https://tec.openplanner.team/stops/H4la199a"], ["https://tec.openplanner.team/stops/LhElont1", "https://tec.openplanner.team/stops/LhElont2"], ["https://tec.openplanner.team/stops/Lrcstad1", "https://tec.openplanner.team/stops/Lvtpepi2"], ["https://tec.openplanner.team/stops/N165aab", "https://tec.openplanner.team/stops/N165acb"], ["https://tec.openplanner.team/stops/N347aea", "https://tec.openplanner.team/stops/N347aeb"], ["https://tec.openplanner.team/stops/Candett2", "https://tec.openplanner.team/stops/H1bi103b"], ["https://tec.openplanner.team/stops/Cgonvro2", "https://tec.openplanner.team/stops/Cgorobe2"], ["https://tec.openplanner.team/stops/X801bga", "https://tec.openplanner.team/stops/X801bia"], ["https://tec.openplanner.team/stops/Bvilvil1", "https://tec.openplanner.team/stops/Bvilvil4"], ["https://tec.openplanner.team/stops/Cjuquai1", "https://tec.openplanner.team/stops/Cjuunio2"], ["https://tec.openplanner.team/stops/X824aga", "https://tec.openplanner.team/stops/X824ahb"], ["https://tec.openplanner.team/stops/Cpccoss2", "https://tec.openplanner.team/stops/Cpcndce2"], ["https://tec.openplanner.team/stops/Bhvltol1", "https://tec.openplanner.team/stops/Bmsgbay2"], ["https://tec.openplanner.team/stops/Lchorme1", "https://tec.openplanner.team/stops/Lchsaeg2"], ["https://tec.openplanner.team/stops/X790aeb", "https://tec.openplanner.team/stops/X790ahb"], ["https://tec.openplanner.team/stops/H3so157b", "https://tec.openplanner.team/stops/H3so169b"], ["https://tec.openplanner.team/stops/LOLbout1", "https://tec.openplanner.team/stops/LOLbout2"], ["https://tec.openplanner.team/stops/LBLgobc1", "https://tec.openplanner.team/stops/LBLplas1"], ["https://tec.openplanner.team/stops/X636aua", "https://tec.openplanner.team/stops/X636bha"], ["https://tec.openplanner.team/stops/H2ll196b", "https://tec.openplanner.team/stops/H2ll200b"], ["https://tec.openplanner.team/stops/H2bh120a", "https://tec.openplanner.team/stops/H2mg136a"], ["https://tec.openplanner.team/stops/Cmachau1", "https://tec.openplanner.team/stops/CMprov2"], ["https://tec.openplanner.team/stops/N531aba", "https://tec.openplanner.team/stops/N531ara"], ["https://tec.openplanner.team/stops/Cjuchli3", "https://tec.openplanner.team/stops/Cjuhopi1"], ["https://tec.openplanner.team/stops/LHXn47-3", "https://tec.openplanner.team/stops/LHXn47-4"], ["https://tec.openplanner.team/stops/X982bla", "https://tec.openplanner.team/stops/X982blb"], ["https://tec.openplanner.team/stops/Bwavnam3", "https://tec.openplanner.team/stops/Bwavnam4"], ["https://tec.openplanner.team/stops/H2hg266a", "https://tec.openplanner.team/stops/H2hg267b"], ["https://tec.openplanner.team/stops/H1qu101b", "https://tec.openplanner.team/stops/H1qu110a"], ["https://tec.openplanner.team/stops/LClbloc1", "https://tec.openplanner.team/stops/LCltrib2"], ["https://tec.openplanner.team/stops/LPLarbo1", "https://tec.openplanner.team/stops/LPLruis1"], ["https://tec.openplanner.team/stops/X719abb", "https://tec.openplanner.team/stops/X733aaa"], ["https://tec.openplanner.team/stops/Lglvand2", "https://tec.openplanner.team/stops/Llgrame2"], ["https://tec.openplanner.team/stops/N201apa", "https://tec.openplanner.team/stops/N201apb"], ["https://tec.openplanner.team/stops/H5rx127b", "https://tec.openplanner.team/stops/H5rx148a"], ["https://tec.openplanner.team/stops/Ccuhaie1", "https://tec.openplanner.team/stops/Ccuphai4"], ["https://tec.openplanner.team/stops/LkEl1212", "https://tec.openplanner.team/stops/LkEl3252"], ["https://tec.openplanner.team/stops/H3th126b", "https://tec.openplanner.team/stops/H3th133b"], ["https://tec.openplanner.team/stops/N301ajb", "https://tec.openplanner.team/stops/N302aaa"], ["https://tec.openplanner.team/stops/Cchsud10", "https://tec.openplanner.team/stops/CMsud2"], ["https://tec.openplanner.team/stops/H4te250a", "https://tec.openplanner.team/stops/H4te255b"], ["https://tec.openplanner.team/stops/Buccmer2", "https://tec.openplanner.team/stops/Buccptj2"], ["https://tec.openplanner.team/stops/X641apa", "https://tec.openplanner.team/stops/X641aqb"], ["https://tec.openplanner.team/stops/N260aba", "https://tec.openplanner.team/stops/N260acb"], ["https://tec.openplanner.team/stops/H1fl133a", "https://tec.openplanner.team/stops/H1fl133e"], ["https://tec.openplanner.team/stops/X639ara", "https://tec.openplanner.team/stops/X639arb"], ["https://tec.openplanner.team/stops/Cgxpair2", "https://tec.openplanner.team/stops/Cgxvkho2"], ["https://tec.openplanner.team/stops/Cmyboci1", "https://tec.openplanner.team/stops/Cmyrens1"], ["https://tec.openplanner.team/stops/LGLlaur1", "https://tec.openplanner.team/stops/LGLlaur2"], ["https://tec.openplanner.team/stops/N245aab", "https://tec.openplanner.team/stops/N287ada"], ["https://tec.openplanner.team/stops/H1hy144a", "https://tec.openplanner.team/stops/H1qy133a"], ["https://tec.openplanner.team/stops/H2an110a", "https://tec.openplanner.team/stops/H2ca102a"], ["https://tec.openplanner.team/stops/NL68aaa", "https://tec.openplanner.team/stops/NL68aab"], ["https://tec.openplanner.team/stops/N204ada", "https://tec.openplanner.team/stops/N204aia"], ["https://tec.openplanner.team/stops/LERboss1", "https://tec.openplanner.team/stops/LERpouh1"], ["https://tec.openplanner.team/stops/X725aqb", "https://tec.openplanner.team/stops/X725axa"], ["https://tec.openplanner.team/stops/LSdencl*", "https://tec.openplanner.team/stops/LSdsa8a2"], ["https://tec.openplanner.team/stops/LERdeho2", "https://tec.openplanner.team/stops/LHrlorc1"], ["https://tec.openplanner.team/stops/LHueg--1", "https://tec.openplanner.team/stops/LHumoul1"], ["https://tec.openplanner.team/stops/H4hx114b", "https://tec.openplanner.team/stops/H4wa153a"], ["https://tec.openplanner.team/stops/Bnetrtb1", "https://tec.openplanner.team/stops/Bnetrtb2"], ["https://tec.openplanner.team/stops/Cjxegli1", "https://tec.openplanner.team/stops/Cjxthom2"], ["https://tec.openplanner.team/stops/N232aoa", "https://tec.openplanner.team/stops/N232cda"], ["https://tec.openplanner.team/stops/NR21aba", "https://tec.openplanner.team/stops/NR21abb"], ["https://tec.openplanner.team/stops/X901ama", "https://tec.openplanner.team/stops/X902bbb"], ["https://tec.openplanner.team/stops/Bwolrod1", "https://tec.openplanner.team/stops/Bwolvan2"], ["https://tec.openplanner.team/stops/Ctm4che2", "https://tec.openplanner.team/stops/Ctmsncb1"], ["https://tec.openplanner.team/stops/H3lr107a", "https://tec.openplanner.team/stops/H3lr116a"], ["https://tec.openplanner.team/stops/H1pa103b", "https://tec.openplanner.team/stops/H1wa159a"], ["https://tec.openplanner.team/stops/X789abb", "https://tec.openplanner.team/stops/X789ajb"], ["https://tec.openplanner.team/stops/H4fa125b", "https://tec.openplanner.team/stops/H4hq133c"], ["https://tec.openplanner.team/stops/N519asb", "https://tec.openplanner.team/stops/N524ajb"], ["https://tec.openplanner.team/stops/LSogare2", "https://tec.openplanner.team/stops/LSoprom2"], ["https://tec.openplanner.team/stops/Ccuwain1", "https://tec.openplanner.team/stops/Cgysole2"], ["https://tec.openplanner.team/stops/LeUbell*", "https://tec.openplanner.team/stops/LeUvoul1"], ["https://tec.openplanner.team/stops/Ctucour2", "https://tec.openplanner.team/stops/Ctuyser1"], ["https://tec.openplanner.team/stops/H1mm125d", "https://tec.openplanner.team/stops/H1mm128b"], ["https://tec.openplanner.team/stops/LATdony1", "https://tec.openplanner.team/stops/LAThach2"], ["https://tec.openplanner.team/stops/H4mo190a", "https://tec.openplanner.team/stops/H4mo190b"], ["https://tec.openplanner.team/stops/Cgocolo2", "https://tec.openplanner.team/stops/Cjufauv1"], ["https://tec.openplanner.team/stops/X622aba", "https://tec.openplanner.team/stops/X622acb"], ["https://tec.openplanner.team/stops/Ccugilb1", "https://tec.openplanner.team/stops/Ccutail1"], ["https://tec.openplanner.team/stops/Cctjoue1", "https://tec.openplanner.team/stops/Cctwaut2"], ["https://tec.openplanner.team/stops/LhRandl1", "https://tec.openplanner.team/stops/LsC216-1"], ["https://tec.openplanner.team/stops/LSGsurf1", "https://tec.openplanner.team/stops/LSGsurf2"], ["https://tec.openplanner.team/stops/N309aba", "https://tec.openplanner.team/stops/N350adb"], ["https://tec.openplanner.team/stops/Llgbavi0", "https://tec.openplanner.team/stops/Llgbavi2"], ["https://tec.openplanner.team/stops/Ccyfede1", "https://tec.openplanner.team/stops/Cvtvois2"], ["https://tec.openplanner.team/stops/Cmregli4", "https://tec.openplanner.team/stops/N162acb"], ["https://tec.openplanner.team/stops/N109acb", "https://tec.openplanner.team/stops/N122agb"], ["https://tec.openplanner.team/stops/Cfabnat2", "https://tec.openplanner.team/stops/Cfarcam2"], ["https://tec.openplanner.team/stops/LPldoua3", "https://tec.openplanner.team/stops/LPldoua4"], ["https://tec.openplanner.team/stops/H1bo103a", "https://tec.openplanner.team/stops/H1sg146b"], ["https://tec.openplanner.team/stops/N360adc", "https://tec.openplanner.team/stops/N360aea"], ["https://tec.openplanner.team/stops/X818ava", "https://tec.openplanner.team/stops/X818avb"], ["https://tec.openplanner.team/stops/H5el112d", "https://tec.openplanner.team/stops/H5el116b"], ["https://tec.openplanner.team/stops/N308afb", "https://tec.openplanner.team/stops/N308aia"], ["https://tec.openplanner.team/stops/LLYchpl1", "https://tec.openplanner.team/stops/LLYtir-1"], ["https://tec.openplanner.team/stops/X670akb", "https://tec.openplanner.team/stops/X670ana"], ["https://tec.openplanner.team/stops/H1bu138a", "https://tec.openplanner.team/stops/H1vb147b"], ["https://tec.openplanner.team/stops/H1cu110b", "https://tec.openplanner.team/stops/H1fr122a"], ["https://tec.openplanner.team/stops/X812aaa", "https://tec.openplanner.team/stops/X812ava"], ["https://tec.openplanner.team/stops/X801abb", "https://tec.openplanner.team/stops/X882aha"], ["https://tec.openplanner.team/stops/LAUjean1", "https://tec.openplanner.team/stops/LAUross1"], ["https://tec.openplanner.team/stops/H4mo162a", "https://tec.openplanner.team/stops/H4mo177a"], ["https://tec.openplanner.team/stops/Bjdsjso2", "https://tec.openplanner.team/stops/Bjodpce2"], ["https://tec.openplanner.team/stops/H1ha193a", "https://tec.openplanner.team/stops/H1ha201b"], ["https://tec.openplanner.team/stops/N501gqa", "https://tec.openplanner.team/stops/N501hba"], ["https://tec.openplanner.team/stops/Cmaleri1", "https://tec.openplanner.team/stops/Cmmptno2"], ["https://tec.openplanner.team/stops/Cjuhden1", "https://tec.openplanner.team/stops/Cjuhden2"], ["https://tec.openplanner.team/stops/Lagmair2", "https://tec.openplanner.team/stops/Lagmair5"], ["https://tec.openplanner.team/stops/N522ajb", "https://tec.openplanner.team/stops/N522aka"], ["https://tec.openplanner.team/stops/Lsearbo1", "https://tec.openplanner.team/stops/Lsearbo2"], ["https://tec.openplanner.team/stops/Lveecol1", "https://tec.openplanner.team/stops/Lvepala8"], ["https://tec.openplanner.team/stops/LMOelva1", "https://tec.openplanner.team/stops/LMOelva3"], ["https://tec.openplanner.team/stops/LTRespe2", "https://tec.openplanner.team/stops/LTRpery1"], ["https://tec.openplanner.team/stops/Lmocail1", "https://tec.openplanner.team/stops/Lsnpaqu2"], ["https://tec.openplanner.team/stops/H1bs110c", "https://tec.openplanner.team/stops/H1sb144b"], ["https://tec.openplanner.team/stops/Cjupui02", "https://tec.openplanner.team/stops/CMpuis2"], ["https://tec.openplanner.team/stops/H2bh103a", "https://tec.openplanner.team/stops/H2bh118a"], ["https://tec.openplanner.team/stops/H1pe132a", "https://tec.openplanner.team/stops/H1pe132b"], ["https://tec.openplanner.team/stops/X882ama", "https://tec.openplanner.team/stops/X882amb"], ["https://tec.openplanner.team/stops/X659aba", "https://tec.openplanner.team/stops/X659bab"], ["https://tec.openplanner.team/stops/LkEbran1", "https://tec.openplanner.team/stops/LkEwolf2"], ["https://tec.openplanner.team/stops/N113aeb", "https://tec.openplanner.team/stops/N114aab"], ["https://tec.openplanner.team/stops/X604aib", "https://tec.openplanner.team/stops/X604ajb"], ["https://tec.openplanner.team/stops/Bblmcel1", "https://tec.openplanner.team/stops/Bmsgrco1"], ["https://tec.openplanner.team/stops/Bolgfon1", "https://tec.openplanner.team/stops/Bolggar1"], ["https://tec.openplanner.team/stops/LBNvill1", "https://tec.openplanner.team/stops/LBNvill2"], ["https://tec.openplanner.team/stops/H2ch107a", "https://tec.openplanner.team/stops/H2ch125a"], ["https://tec.openplanner.team/stops/Crcegli1", "https://tec.openplanner.team/stops/Crcpcom1"], ["https://tec.openplanner.team/stops/H4mv188b", "https://tec.openplanner.team/stops/H4oe150a"], ["https://tec.openplanner.team/stops/X616afa", "https://tec.openplanner.team/stops/X624aea"], ["https://tec.openplanner.team/stops/Bpielon1", "https://tec.openplanner.team/stops/Bpiepla2"], ["https://tec.openplanner.team/stops/Bpielom2", "https://tec.openplanner.team/stops/Bzluegl1"], ["https://tec.openplanner.team/stops/LHUchpl2", "https://tec.openplanner.team/stops/LHUeuro4"], ["https://tec.openplanner.team/stops/LLAcalv1", "https://tec.openplanner.team/stops/LLAeg--1"], ["https://tec.openplanner.team/stops/X548adb", "https://tec.openplanner.team/stops/X548aea"], ["https://tec.openplanner.team/stops/Ccigill3", "https://tec.openplanner.team/stops/Ccipano2"], ["https://tec.openplanner.team/stops/Cgzmira1", "https://tec.openplanner.team/stops/Cgzmira3"], ["https://tec.openplanner.team/stops/N573aba", "https://tec.openplanner.team/stops/NC14ada"], ["https://tec.openplanner.team/stops/X614axa", "https://tec.openplanner.team/stops/X614aya"], ["https://tec.openplanner.team/stops/X926ada", "https://tec.openplanner.team/stops/X945adb"], ["https://tec.openplanner.team/stops/X725adb", "https://tec.openplanner.team/stops/X725afd"], ["https://tec.openplanner.team/stops/Lhr1ave2", "https://tec.openplanner.team/stops/Lhr1ave5"], ["https://tec.openplanner.team/stops/LlOkreu1", "https://tec.openplanner.team/stops/LnDrund2"], ["https://tec.openplanner.team/stops/N551ana", "https://tec.openplanner.team/stops/N551aqb"], ["https://tec.openplanner.team/stops/X723aea", "https://tec.openplanner.team/stops/X766afa"], ["https://tec.openplanner.team/stops/N501lsb", "https://tec.openplanner.team/stops/N501lzz"], ["https://tec.openplanner.team/stops/LLVboss1", "https://tec.openplanner.team/stops/X575aab"], ["https://tec.openplanner.team/stops/N557aab", "https://tec.openplanner.team/stops/N557ajb"], ["https://tec.openplanner.team/stops/Lch179-2", "https://tec.openplanner.team/stops/Lchtche1"], ["https://tec.openplanner.team/stops/H2go115a", "https://tec.openplanner.team/stops/H2go120a"], ["https://tec.openplanner.team/stops/Lvccime1", "https://tec.openplanner.team/stops/Lvcdumo2"], ["https://tec.openplanner.team/stops/Bjaufca2", "https://tec.openplanner.team/stops/Bjauwar2"], ["https://tec.openplanner.team/stops/Cmtmath2", "https://tec.openplanner.team/stops/Cmtstth1"], ["https://tec.openplanner.team/stops/Craappa1", "https://tec.openplanner.team/stops/Cravold2"], ["https://tec.openplanner.team/stops/N551ara", "https://tec.openplanner.team/stops/N551arc"], ["https://tec.openplanner.team/stops/N529abc", "https://tec.openplanner.team/stops/N529aka"], ["https://tec.openplanner.team/stops/Cbfegch1", "https://tec.openplanner.team/stops/NC24aia"], ["https://tec.openplanner.team/stops/N543bta", "https://tec.openplanner.team/stops/N543cpa"], ["https://tec.openplanner.team/stops/H4wu375a", "https://tec.openplanner.team/stops/H4wu376b"], ["https://tec.openplanner.team/stops/Btilgar1", "https://tec.openplanner.team/stops/Btilhti2"], ["https://tec.openplanner.team/stops/X982cea", "https://tec.openplanner.team/stops/X983abb"], ["https://tec.openplanner.team/stops/N217aca", "https://tec.openplanner.team/stops/N218afa"], ["https://tec.openplanner.team/stops/N501cga", "https://tec.openplanner.team/stops/N501cja"], ["https://tec.openplanner.team/stops/LeUmeie2", "https://tec.openplanner.team/stops/LeUvoss1"], ["https://tec.openplanner.team/stops/LSMchat1", "https://tec.openplanner.team/stops/LSMcles2"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Lghsimo4"], ["https://tec.openplanner.team/stops/H4oq224b", "https://tec.openplanner.team/stops/H4ty300b"], ["https://tec.openplanner.team/stops/N524ahb", "https://tec.openplanner.team/stops/N524alb"], ["https://tec.openplanner.team/stops/Lgrecpe1", "https://tec.openplanner.team/stops/Lgrfort1"], ["https://tec.openplanner.team/stops/Btgrdoc1", "https://tec.openplanner.team/stops/N584asa"], ["https://tec.openplanner.team/stops/Bsomjon1", "https://tec.openplanner.team/stops/Bsompri2"], ["https://tec.openplanner.team/stops/LNChock1", "https://tec.openplanner.team/stops/LRachen1"], ["https://tec.openplanner.team/stops/LSIroch2", "https://tec.openplanner.team/stops/LSIvieu1"], ["https://tec.openplanner.team/stops/LPbhaut1", "https://tec.openplanner.team/stops/LPbpeti2"], ["https://tec.openplanner.team/stops/LDLbeau2", "https://tec.openplanner.team/stops/LHYdogn2"], ["https://tec.openplanner.team/stops/X607acb", "https://tec.openplanner.team/stops/X607adb"], ["https://tec.openplanner.team/stops/X804bua", "https://tec.openplanner.team/stops/X828aab"], ["https://tec.openplanner.team/stops/LrUbahn2", "https://tec.openplanner.team/stops/LsFcafe2"], ["https://tec.openplanner.team/stops/Cctrobe1", "https://tec.openplanner.team/stops/Cctstro1"], ["https://tec.openplanner.team/stops/LRObruy3", "https://tec.openplanner.team/stops/LROmorf2"], ["https://tec.openplanner.team/stops/X657aaa", "https://tec.openplanner.team/stops/X744aaa"], ["https://tec.openplanner.team/stops/LWEfati2", "https://tec.openplanner.team/stops/LWEpaul1"], ["https://tec.openplanner.team/stops/N537aca", "https://tec.openplanner.team/stops/N562bib"], ["https://tec.openplanner.team/stops/H1sp353a", "https://tec.openplanner.team/stops/H1sp354a"], ["https://tec.openplanner.team/stops/X371aba", "https://tec.openplanner.team/stops/X371acb"], ["https://tec.openplanner.team/stops/Cauglac1", "https://tec.openplanner.team/stops/Cauushm2"], ["https://tec.openplanner.team/stops/N538aoa", "https://tec.openplanner.team/stops/N538apa"], ["https://tec.openplanner.team/stops/Ccychba1", "https://tec.openplanner.team/stops/Cvllerm2"], ["https://tec.openplanner.team/stops/LwAlont1", "https://tec.openplanner.team/stops/LwAlont4"], ["https://tec.openplanner.team/stops/X661aoa", "https://tec.openplanner.team/stops/X661aqb"], ["https://tec.openplanner.team/stops/LsCback2", "https://tec.openplanner.team/stops/LwPdorf1"], ["https://tec.openplanner.team/stops/X623aga", "https://tec.openplanner.team/stops/X623agb"], ["https://tec.openplanner.team/stops/X991akb", "https://tec.openplanner.team/stops/X993aea"], ["https://tec.openplanner.team/stops/Bmonbor2", "https://tec.openplanner.team/stops/Bmoncab2"], ["https://tec.openplanner.team/stops/Btslhau1", "https://tec.openplanner.team/stops/Bwspspa1"], ["https://tec.openplanner.team/stops/X601alb", "https://tec.openplanner.team/stops/X601csb"], ["https://tec.openplanner.team/stops/H4bf106b", "https://tec.openplanner.team/stops/H4by119a"], ["https://tec.openplanner.team/stops/LMAcite2", "https://tec.openplanner.team/stops/LMAhall2"], ["https://tec.openplanner.team/stops/H1ch101a", "https://tec.openplanner.team/stops/H1ch101b"], ["https://tec.openplanner.team/stops/Lpecime1", "https://tec.openplanner.team/stops/Lpecime2"], ["https://tec.openplanner.team/stops/X638alb", "https://tec.openplanner.team/stops/X644aea"], ["https://tec.openplanner.team/stops/N513bib", "https://tec.openplanner.team/stops/N516abb"], ["https://tec.openplanner.team/stops/LSXbecc1", "https://tec.openplanner.team/stops/LTHbelv1"], ["https://tec.openplanner.team/stops/LmRmuhl1", "https://tec.openplanner.team/stops/LmRmuhl2"], ["https://tec.openplanner.team/stops/LFPstro2", "https://tec.openplanner.team/stops/LRmrode1"], ["https://tec.openplanner.team/stops/H5pe132b", "https://tec.openplanner.team/stops/H5pe142b"], ["https://tec.openplanner.team/stops/LFemoul2", "https://tec.openplanner.team/stops/LRIcite2"], ["https://tec.openplanner.team/stops/Llgbene1", "https://tec.openplanner.team/stops/Llgcock2"], ["https://tec.openplanner.team/stops/Cstdona3", "https://tec.openplanner.team/stops/Cstdona4"], ["https://tec.openplanner.team/stops/X601bpb", "https://tec.openplanner.team/stops/X601bqa"], ["https://tec.openplanner.team/stops/X858aaa", "https://tec.openplanner.team/stops/X858afa"], ["https://tec.openplanner.team/stops/LhM07--1", "https://tec.openplanner.team/stops/LmCkirc1"], ["https://tec.openplanner.team/stops/X724adb", "https://tec.openplanner.team/stops/X724aea"], ["https://tec.openplanner.team/stops/N506bub", "https://tec.openplanner.team/stops/N506bva"], ["https://tec.openplanner.team/stops/LSkcoin1", "https://tec.openplanner.team/stops/LYechpl1"], ["https://tec.openplanner.team/stops/H1vt193b", "https://tec.openplanner.team/stops/H1vt195b"], ["https://tec.openplanner.team/stops/Bnivpar1", "https://tec.openplanner.team/stops/Bnivsse1"], ["https://tec.openplanner.team/stops/Bbgncnd2", "https://tec.openplanner.team/stops/Bbgnpla1"], ["https://tec.openplanner.team/stops/LFFchal1", "https://tec.openplanner.team/stops/LFFeg--1"], ["https://tec.openplanner.team/stops/Lvefabr2", "https://tec.openplanner.team/stops/Lvehodi4"], ["https://tec.openplanner.team/stops/X631ada", "https://tec.openplanner.team/stops/X631adb"], ["https://tec.openplanner.team/stops/LhMdorf1", "https://tec.openplanner.team/stops/LhRwere1"], ["https://tec.openplanner.team/stops/Bsdacab1", "https://tec.openplanner.team/stops/Bsdacab2"], ["https://tec.openplanner.team/stops/X601agb", "https://tec.openplanner.team/stops/X663ajb"], ["https://tec.openplanner.team/stops/H1mb137b", "https://tec.openplanner.team/stops/H1mb138b"], ["https://tec.openplanner.team/stops/H5at127a", "https://tec.openplanner.team/stops/H5at136a"], ["https://tec.openplanner.team/stops/N110ahb", "https://tec.openplanner.team/stops/N113aba"], ["https://tec.openplanner.team/stops/Bnivind2", "https://tec.openplanner.team/stops/Bnivtra2"], ["https://tec.openplanner.team/stops/H1ms257b", "https://tec.openplanner.team/stops/H1ms272b"], ["https://tec.openplanner.team/stops/Bllnrro2", "https://tec.openplanner.team/stops/Bmsgaxp1"], ["https://tec.openplanner.team/stops/LLbmalm2", "https://tec.openplanner.team/stops/LLbpt--2"], ["https://tec.openplanner.team/stops/Lpedeta2", "https://tec.openplanner.team/stops/LTAchpl2"], ["https://tec.openplanner.team/stops/N506ama", "https://tec.openplanner.team/stops/N558aaa"], ["https://tec.openplanner.team/stops/H1sb148a", "https://tec.openplanner.team/stops/H1sb150b"], ["https://tec.openplanner.team/stops/Bcrnsge1", "https://tec.openplanner.team/stops/Bcrnsge2"], ["https://tec.openplanner.team/stops/Lghfors1", "https://tec.openplanner.team/stops/Lghfors2"], ["https://tec.openplanner.team/stops/Ccstord2", "https://tec.openplanner.team/stops/Chhdubr1"], ["https://tec.openplanner.team/stops/H4bn101b", "https://tec.openplanner.team/stops/H4pi133b"], ["https://tec.openplanner.team/stops/Bnivall1", "https://tec.openplanner.team/stops/Bnivfra1"], ["https://tec.openplanner.team/stops/LmR50--1", "https://tec.openplanner.team/stops/LmR50--2"], ["https://tec.openplanner.team/stops/N117aja", "https://tec.openplanner.team/stops/N117ajb"], ["https://tec.openplanner.team/stops/LLOhest2", "https://tec.openplanner.team/stops/LRRcole1"], ["https://tec.openplanner.team/stops/X639ana", "https://tec.openplanner.team/stops/X640aaa"], ["https://tec.openplanner.team/stops/LLYcham2", "https://tec.openplanner.team/stops/LLYhoch2"], ["https://tec.openplanner.team/stops/Llgcime1", "https://tec.openplanner.team/stops/Lvtpepi1"], ["https://tec.openplanner.team/stops/LDOandr1", "https://tec.openplanner.team/stops/LDObran2"], ["https://tec.openplanner.team/stops/H1eu104b", "https://tec.openplanner.team/stops/H1sb151a"], ["https://tec.openplanner.team/stops/LBYwez-1", "https://tec.openplanner.team/stops/LBYwez-2"], ["https://tec.openplanner.team/stops/LbTdoma1", "https://tec.openplanner.team/stops/LmRh%C3%B6812"], ["https://tec.openplanner.team/stops/Lvescie1", "https://tec.openplanner.team/stops/Lvewall1"], ["https://tec.openplanner.team/stops/N120afb", "https://tec.openplanner.team/stops/N120ana"], ["https://tec.openplanner.team/stops/N545aba", "https://tec.openplanner.team/stops/N547ala"], ["https://tec.openplanner.team/stops/LJAchat2", "https://tec.openplanner.team/stops/LJAmari2"], ["https://tec.openplanner.team/stops/Bracgar1", "https://tec.openplanner.team/stops/Bracgar2"], ["https://tec.openplanner.team/stops/N553aca", "https://tec.openplanner.team/stops/N553acb"], ["https://tec.openplanner.team/stops/LCnvill1", "https://tec.openplanner.team/stops/LREsoug4"], ["https://tec.openplanner.team/stops/X826aea", "https://tec.openplanner.team/stops/X826aeb"], ["https://tec.openplanner.team/stops/Llghoch2", "https://tec.openplanner.team/stops/Llghoch4"], ["https://tec.openplanner.team/stops/Bgnpgar1", "https://tec.openplanner.team/stops/Bgnpjbe1"], ["https://tec.openplanner.team/stops/N535amb", "https://tec.openplanner.team/stops/N535ana"], ["https://tec.openplanner.team/stops/H1qv113b", "https://tec.openplanner.team/stops/H1qv115a"], ["https://tec.openplanner.team/stops/X998aza", "https://tec.openplanner.team/stops/X998azb"], ["https://tec.openplanner.team/stops/Bchgbel2", "https://tec.openplanner.team/stops/Bchgpap2"], ["https://tec.openplanner.team/stops/N260aaa", "https://tec.openplanner.team/stops/N260afb"], ["https://tec.openplanner.team/stops/LAMcime2", "https://tec.openplanner.team/stops/LAMviam2"], ["https://tec.openplanner.team/stops/LmHflor2", "https://tec.openplanner.team/stops/LrOwahl1"], ["https://tec.openplanner.team/stops/H2ma264a", "https://tec.openplanner.team/stops/H2sb231c"], ["https://tec.openplanner.team/stops/X661aub", "https://tec.openplanner.team/stops/X661ava"], ["https://tec.openplanner.team/stops/Blmlgar1", "https://tec.openplanner.team/stops/Bottcbp2"], ["https://tec.openplanner.team/stops/Cbfusin1", "https://tec.openplanner.team/stops/NC11akb"], ["https://tec.openplanner.team/stops/H1bd101b", "https://tec.openplanner.team/stops/H1bd102a"], ["https://tec.openplanner.team/stops/N141aib", "https://tec.openplanner.team/stops/N141ama"], ["https://tec.openplanner.team/stops/X804asa", "https://tec.openplanner.team/stops/X828aaa"], ["https://tec.openplanner.team/stops/N170acb", "https://tec.openplanner.team/stops/N170afa"], ["https://tec.openplanner.team/stops/N122abb", "https://tec.openplanner.team/stops/N122acb"], ["https://tec.openplanner.team/stops/LSGcolo1", "https://tec.openplanner.team/stops/LSGfoua1"], ["https://tec.openplanner.team/stops/N874ajb", "https://tec.openplanner.team/stops/N874aka"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N313aba"], ["https://tec.openplanner.team/stops/X661amb", "https://tec.openplanner.team/stops/X661arc"], ["https://tec.openplanner.team/stops/LSkb1351", "https://tec.openplanner.team/stops/LSkkeri1"], ["https://tec.openplanner.team/stops/H4ch114a", "https://tec.openplanner.team/stops/H4ch115b"], ["https://tec.openplanner.team/stops/Bmoucnd1", "https://tec.openplanner.team/stops/Bmoufil2"], ["https://tec.openplanner.team/stops/LFmceli2", "https://tec.openplanner.team/stops/LFmlens2"], ["https://tec.openplanner.team/stops/N232bcb", "https://tec.openplanner.team/stops/N232bdb"], ["https://tec.openplanner.team/stops/LBrbern1", "https://tec.openplanner.team/stops/LBrmeiz2"], ["https://tec.openplanner.team/stops/LHaxhor1", "https://tec.openplanner.team/stops/LVvbouv2"], ["https://tec.openplanner.team/stops/LVEmoul2", "https://tec.openplanner.team/stops/LYegeor2"], ["https://tec.openplanner.team/stops/Blemwob3", "https://tec.openplanner.team/stops/Blemwob4"], ["https://tec.openplanner.team/stops/H1at108c", "https://tec.openplanner.team/stops/H1eq115a"], ["https://tec.openplanner.team/stops/LBRtrag1", "https://tec.openplanner.team/stops/LLSba4-1"], ["https://tec.openplanner.team/stops/Cpcegli1", "https://tec.openplanner.team/stops/Cpcplac3"], ["https://tec.openplanner.team/stops/LAMdelh3", "https://tec.openplanner.team/stops/LAMusin1"], ["https://tec.openplanner.team/stops/N536afb", "https://tec.openplanner.team/stops/N536aga"], ["https://tec.openplanner.team/stops/X767aba", "https://tec.openplanner.team/stops/X769atb"], ["https://tec.openplanner.team/stops/Lchsaec1", "https://tec.openplanner.team/stops/Lchsaec2"], ["https://tec.openplanner.team/stops/Llghesb1", "https://tec.openplanner.team/stops/Llgjose1"], ["https://tec.openplanner.team/stops/Lccuner1", "https://tec.openplanner.team/stops/LRArami1"], ["https://tec.openplanner.team/stops/X601dga", "https://tec.openplanner.team/stops/X602ahb"], ["https://tec.openplanner.team/stops/N234aab", "https://tec.openplanner.team/stops/N252ada"], ["https://tec.openplanner.team/stops/LJOvill1", "https://tec.openplanner.team/stops/LXHbell2"], ["https://tec.openplanner.team/stops/X837aea", "https://tec.openplanner.team/stops/X837aeb"], ["https://tec.openplanner.team/stops/LFRgode1", "https://tec.openplanner.team/stops/LFRsp1-1"], ["https://tec.openplanner.team/stops/N533adb", "https://tec.openplanner.team/stops/N551aka"], ["https://tec.openplanner.team/stops/Caih1631", "https://tec.openplanner.team/stops/Cairous1"], ["https://tec.openplanner.team/stops/LmHbien2", "https://tec.openplanner.team/stops/LmHumge1"], ["https://tec.openplanner.team/stops/X719aaa", "https://tec.openplanner.team/stops/X789aga"], ["https://tec.openplanner.team/stops/Bbeardu2", "https://tec.openplanner.team/stops/Bbearwa1"], ["https://tec.openplanner.team/stops/N540aga", "https://tec.openplanner.team/stops/N540agb"], ["https://tec.openplanner.team/stops/H1te175b", "https://tec.openplanner.team/stops/H1te186b"], ["https://tec.openplanner.team/stops/LRRelec3", "https://tec.openplanner.team/stops/LRRmanc2"], ["https://tec.openplanner.team/stops/LAYchal2", "https://tec.openplanner.team/stops/LAYecol1"], ["https://tec.openplanner.team/stops/Clodesc1", "https://tec.openplanner.team/stops/CMdesc1"], ["https://tec.openplanner.team/stops/Brebhos1", "https://tec.openplanner.team/stops/Brebraf1"], ["https://tec.openplanner.team/stops/LXhvanh1", "https://tec.openplanner.team/stops/LXhvanh2"], ["https://tec.openplanner.team/stops/N506ala", "https://tec.openplanner.team/stops/N506alb"], ["https://tec.openplanner.team/stops/Bwavgar1", "https://tec.openplanner.team/stops/Bwavgar2"], ["https://tec.openplanner.team/stops/N201ana", "https://tec.openplanner.team/stops/N219adb"], ["https://tec.openplanner.team/stops/X999aia", "https://tec.openplanner.team/stops/X999aka"], ["https://tec.openplanner.team/stops/Cvlgrta1", "https://tec.openplanner.team/stops/Cvlgrta2"], ["https://tec.openplanner.team/stops/X626ada", "https://tec.openplanner.team/stops/X626aeb"], ["https://tec.openplanner.team/stops/Brxmbos1", "https://tec.openplanner.team/stops/Brxmcha2"], ["https://tec.openplanner.team/stops/Bovetsa1", "https://tec.openplanner.team/stops/Bovetsa2"], ["https://tec.openplanner.team/stops/H5ma185a", "https://tec.openplanner.team/stops/H5ma185b"], ["https://tec.openplanner.team/stops/Csemacq4", "https://tec.openplanner.team/stops/Csepote2"], ["https://tec.openplanner.team/stops/Lseespe1", "https://tec.openplanner.team/stops/Lseespe2"], ["https://tec.openplanner.team/stops/Lhrecol2", "https://tec.openplanner.team/stops/Lhrtunn2"], ["https://tec.openplanner.team/stops/N135aya", "https://tec.openplanner.team/stops/N135bea"], ["https://tec.openplanner.team/stops/H4ty334a", "https://tec.openplanner.team/stops/H4ty343b"], ["https://tec.openplanner.team/stops/LLEfagn1", "https://tec.openplanner.team/stops/LREprea1"], ["https://tec.openplanner.team/stops/Clbgare1", "https://tec.openplanner.team/stops/Clbptno1"], ["https://tec.openplanner.team/stops/Balsnie1", "https://tec.openplanner.team/stops/Balswsa1"], ["https://tec.openplanner.team/stops/LNCesne2", "https://tec.openplanner.team/stops/LNCvann1"], ["https://tec.openplanner.team/stops/Buccham1", "https://tec.openplanner.team/stops/Buccvoi3"], ["https://tec.openplanner.team/stops/LaMfuss1", "https://tec.openplanner.team/stops/LaMpost1"], ["https://tec.openplanner.team/stops/X908ada", "https://tec.openplanner.team/stops/X908afa"], ["https://tec.openplanner.team/stops/Bbrycar1", "https://tec.openplanner.team/stops/Bbryvil1"], ["https://tec.openplanner.team/stops/X614apa", "https://tec.openplanner.team/stops/X614aub"], ["https://tec.openplanner.team/stops/LVImons1", "https://tec.openplanner.team/stops/LVImons2"], ["https://tec.openplanner.team/stops/LBEchan1", "https://tec.openplanner.team/stops/LBEchan2"], ["https://tec.openplanner.team/stops/Lsn184-1", "https://tec.openplanner.team/stops/Lsnagne1"], ["https://tec.openplanner.team/stops/X882adb", "https://tec.openplanner.team/stops/X882alb"], ["https://tec.openplanner.team/stops/N505aha", "https://tec.openplanner.team/stops/N506aob"], ["https://tec.openplanner.team/stops/Brsrpch2", "https://tec.openplanner.team/stops/Brsrpri2"], ["https://tec.openplanner.team/stops/LSImewi2", "https://tec.openplanner.team/stops/LSIroch2"], ["https://tec.openplanner.team/stops/LGeborn1", "https://tec.openplanner.team/stops/LMsgara1"], ["https://tec.openplanner.team/stops/H4pl114a", "https://tec.openplanner.team/stops/H4pl117b"], ["https://tec.openplanner.team/stops/H1to153a", "https://tec.openplanner.team/stops/H1to153b"], ["https://tec.openplanner.team/stops/X607aaa", "https://tec.openplanner.team/stops/X627aaa"], ["https://tec.openplanner.team/stops/X663aba", "https://tec.openplanner.team/stops/X663abb"], ["https://tec.openplanner.team/stops/N137afa", "https://tec.openplanner.team/stops/N137afb"], ["https://tec.openplanner.team/stops/LSkyern1", "https://tec.openplanner.team/stops/LYegeor3"], ["https://tec.openplanner.team/stops/N544aab", "https://tec.openplanner.team/stops/N550afa"], ["https://tec.openplanner.team/stops/Llgbaya4", "https://tec.openplanner.team/stops/Llgpbay1"], ["https://tec.openplanner.team/stops/Lbobuil1", "https://tec.openplanner.team/stops/Lbotilf1"], ["https://tec.openplanner.team/stops/Ljuetie3", "https://tec.openplanner.team/stops/Ljujaur1"], ["https://tec.openplanner.team/stops/X999afb", "https://tec.openplanner.team/stops/X999afc"], ["https://tec.openplanner.team/stops/LSpunio1", "https://tec.openplanner.team/stops/LSpunio2"], ["https://tec.openplanner.team/stops/H2bh109a", "https://tec.openplanner.team/stops/H2lc146a"], ["https://tec.openplanner.team/stops/LMamuse3", "https://tec.openplanner.team/stops/LMazonn3"], ["https://tec.openplanner.team/stops/Bbch4br5", "https://tec.openplanner.team/stops/Bbchrra3"], ["https://tec.openplanner.team/stops/Bsmgmar2", "https://tec.openplanner.team/stops/Bsmgmou2"], ["https://tec.openplanner.team/stops/LhGkirc4", "https://tec.openplanner.team/stops/LhGlang1"], ["https://tec.openplanner.team/stops/Chpceri1", "https://tec.openplanner.team/stops/Chpplac2"], ["https://tec.openplanner.team/stops/N501chf", "https://tec.openplanner.team/stops/N501jla"], ["https://tec.openplanner.team/stops/N337aea", "https://tec.openplanner.team/stops/N385aec"], ["https://tec.openplanner.team/stops/N201aca", "https://tec.openplanner.team/stops/N201ava"], ["https://tec.openplanner.team/stops/H4ty295b", "https://tec.openplanner.team/stops/H4ty359b"], ["https://tec.openplanner.team/stops/H1sb144a", "https://tec.openplanner.team/stops/H1sb144b"], ["https://tec.openplanner.team/stops/Bhmmbog1", "https://tec.openplanner.team/stops/Btlgast2"], ["https://tec.openplanner.team/stops/Cgzcver1", "https://tec.openplanner.team/stops/Cmyecur2"], ["https://tec.openplanner.team/stops/X713alb", "https://tec.openplanner.team/stops/X714aab"], ["https://tec.openplanner.team/stops/Ccisolv2", "https://tec.openplanner.team/stops/Cmtpblo1"], ["https://tec.openplanner.team/stops/X602acb", "https://tec.openplanner.team/stops/X623abb"], ["https://tec.openplanner.team/stops/Bglache1", "https://tec.openplanner.team/stops/Bmrswag1"], ["https://tec.openplanner.team/stops/NB33ala", "https://tec.openplanner.team/stops/NR38afb"], ["https://tec.openplanner.team/stops/N501fby", "https://tec.openplanner.team/stops/N501fna"], ["https://tec.openplanner.team/stops/X917aaa", "https://tec.openplanner.team/stops/X919aea"], ["https://tec.openplanner.team/stops/H1wa135a", "https://tec.openplanner.team/stops/H1wa153a"], ["https://tec.openplanner.team/stops/N385aad", "https://tec.openplanner.team/stops/N385abb"], ["https://tec.openplanner.team/stops/X769aaa", "https://tec.openplanner.team/stops/X769ata"], ["https://tec.openplanner.team/stops/NL75aaa", "https://tec.openplanner.team/stops/NL75aba"], ["https://tec.openplanner.team/stops/Clrpast1", "https://tec.openplanner.team/stops/Clrplac1"], ["https://tec.openplanner.team/stops/LHAbont1", "https://tec.openplanner.team/stops/LHAvall2"], ["https://tec.openplanner.team/stops/Bjodeco1", "https://tec.openplanner.team/stops/Bjodeco3"], ["https://tec.openplanner.team/stops/N145aja", "https://tec.openplanner.team/stops/N149aka"], ["https://tec.openplanner.team/stops/LAicarr1", "https://tec.openplanner.team/stops/LAigrim2"], ["https://tec.openplanner.team/stops/Ladneuv1", "https://tec.openplanner.team/stops/LHCcoul1"], ["https://tec.openplanner.team/stops/Cbfpauc1", "https://tec.openplanner.team/stops/Cbfusin2"], ["https://tec.openplanner.team/stops/Lprtill1", "https://tec.openplanner.team/stops/Lprtill2"], ["https://tec.openplanner.team/stops/Bcbqa361", "https://tec.openplanner.team/stops/Bcbqtub2"], ["https://tec.openplanner.team/stops/LSRbouh1", "https://tec.openplanner.team/stops/LSReg--1"], ["https://tec.openplanner.team/stops/LmDgeme2", "https://tec.openplanner.team/stops/LmYkreu1"], ["https://tec.openplanner.team/stops/LSZptwa1", "https://tec.openplanner.team/stops/LSZstoc1"], ["https://tec.openplanner.team/stops/X801chb", "https://tec.openplanner.team/stops/X801cja"], ["https://tec.openplanner.team/stops/X897ala", "https://tec.openplanner.team/stops/X897alc"], ["https://tec.openplanner.team/stops/H1qg138c", "https://tec.openplanner.team/stops/H1qy134a"], ["https://tec.openplanner.team/stops/LAYthir1", "https://tec.openplanner.team/stops/LHrrard2"], ["https://tec.openplanner.team/stops/Ccychap1", "https://tec.openplanner.team/stops/Crbrgar1"], ["https://tec.openplanner.team/stops/LCvmonu1", "https://tec.openplanner.team/stops/LSMgare1"], ["https://tec.openplanner.team/stops/LBapepi4", "https://tec.openplanner.team/stops/LBapepi6"], ["https://tec.openplanner.team/stops/H2hg157a", "https://tec.openplanner.team/stops/H2hg157c"], ["https://tec.openplanner.team/stops/N509axa", "https://tec.openplanner.team/stops/N509bga"], ["https://tec.openplanner.team/stops/X721aqa", "https://tec.openplanner.team/stops/X721asb"], ["https://tec.openplanner.team/stops/X948akb", "https://tec.openplanner.team/stops/X948bab"], ["https://tec.openplanner.team/stops/X871aba", "https://tec.openplanner.team/stops/X871abb"], ["https://tec.openplanner.team/stops/Bbst4br1", "https://tec.openplanner.team/stops/Cbtbras2"], ["https://tec.openplanner.team/stops/N538azb", "https://tec.openplanner.team/stops/N539awa"], ["https://tec.openplanner.team/stops/Ljubruy*", "https://tec.openplanner.team/stops/Ljugode1"], ["https://tec.openplanner.team/stops/Lsefive1", "https://tec.openplanner.team/stops/Lsefive2"], ["https://tec.openplanner.team/stops/LHDchar3", "https://tec.openplanner.team/stops/LMOpiss1"], ["https://tec.openplanner.team/stops/N559abb", "https://tec.openplanner.team/stops/N559aca"], ["https://tec.openplanner.team/stops/H4co133b", "https://tec.openplanner.team/stops/H4mn100a"], ["https://tec.openplanner.team/stops/LWevand1", "https://tec.openplanner.team/stops/LWevand2"], ["https://tec.openplanner.team/stops/Bperros2", "https://tec.openplanner.team/stops/Bperwil2"], ["https://tec.openplanner.team/stops/X721aja", "https://tec.openplanner.team/stops/X721aka"], ["https://tec.openplanner.team/stops/H1fy118a", "https://tec.openplanner.team/stops/H1fy119a"], ["https://tec.openplanner.team/stops/LmNlieb2", "https://tec.openplanner.team/stops/LmNmerl2"], ["https://tec.openplanner.team/stops/X782ana", "https://tec.openplanner.team/stops/X783adb"], ["https://tec.openplanner.team/stops/Blimvcg2", "https://tec.openplanner.team/stops/Bottcli2"], ["https://tec.openplanner.team/stops/X912adb", "https://tec.openplanner.team/stops/X912afb"], ["https://tec.openplanner.team/stops/Ccoconf1", "https://tec.openplanner.team/stops/Cpcchau"], ["https://tec.openplanner.team/stops/H4we136a", "https://tec.openplanner.team/stops/H4we139a"], ["https://tec.openplanner.team/stops/H2hp261b", "https://tec.openplanner.team/stops/H2mo146b"], ["https://tec.openplanner.team/stops/X917aab", "https://tec.openplanner.team/stops/X919akd"], ["https://tec.openplanner.team/stops/N201aqa", "https://tec.openplanner.team/stops/N201awb"], ["https://tec.openplanner.team/stops/H1qu100c", "https://tec.openplanner.team/stops/H1qu110a"], ["https://tec.openplanner.team/stops/LOthiro1", "https://tec.openplanner.team/stops/LOtthie1"], ["https://tec.openplanner.team/stops/Braccen2", "https://tec.openplanner.team/stops/Braclin2"], ["https://tec.openplanner.team/stops/H4be103b", "https://tec.openplanner.team/stops/H4be109b"], ["https://tec.openplanner.team/stops/X669abc", "https://tec.openplanner.team/stops/X669afa"], ["https://tec.openplanner.team/stops/H4hg157a", "https://tec.openplanner.team/stops/H4hg158b"], ["https://tec.openplanner.team/stops/X727aha", "https://tec.openplanner.team/stops/X747aaa"], ["https://tec.openplanner.team/stops/X901awb", "https://tec.openplanner.team/stops/X901aza"], ["https://tec.openplanner.team/stops/Bottbou2", "https://tec.openplanner.team/stops/Bottcbp1"], ["https://tec.openplanner.team/stops/X717aba", "https://tec.openplanner.team/stops/X717acb"], ["https://tec.openplanner.team/stops/X618aba", "https://tec.openplanner.team/stops/X625adb"], ["https://tec.openplanner.team/stops/Bbchcbl1", "https://tec.openplanner.team/stops/Bbchm382"], ["https://tec.openplanner.team/stops/Bwavfbe1", "https://tec.openplanner.team/stops/Bwavpao1"], ["https://tec.openplanner.team/stops/X759afa", "https://tec.openplanner.team/stops/X759afb"], ["https://tec.openplanner.team/stops/Cgoetun2", "https://tec.openplanner.team/stops/Cgoetun3"], ["https://tec.openplanner.team/stops/Llgdelb1", "https://tec.openplanner.team/stops/Llggrav2"], ["https://tec.openplanner.team/stops/N424aab", "https://tec.openplanner.team/stops/NH01ata"], ["https://tec.openplanner.team/stops/X774aad", "https://tec.openplanner.team/stops/X774aba"], ["https://tec.openplanner.team/stops/LMAbijo1", "https://tec.openplanner.team/stops/LMAbijo2"], ["https://tec.openplanner.team/stops/Lveclin2", "https://tec.openplanner.team/stops/Lvehopi5"], ["https://tec.openplanner.team/stops/Cctsncb3", "https://tec.openplanner.team/stops/Ccu6bra3"], ["https://tec.openplanner.team/stops/Bbrlmez2", "https://tec.openplanner.team/stops/Bhalkrk1"], ["https://tec.openplanner.team/stops/LSTchal1", "https://tec.openplanner.team/stops/LSTcomm1"], ["https://tec.openplanner.team/stops/LGeborn2", "https://tec.openplanner.team/stops/LGeduc-1"], ["https://tec.openplanner.team/stops/Bitrcha2", "https://tec.openplanner.team/stops/Bitrsar2"], ["https://tec.openplanner.team/stops/LGe4bra2", "https://tec.openplanner.team/stops/LGepeck2"], ["https://tec.openplanner.team/stops/LEN183-1", "https://tec.openplanner.team/stops/LSktinc2"], ["https://tec.openplanner.team/stops/H1bd100b", "https://tec.openplanner.team/stops/H1le120a"], ["https://tec.openplanner.team/stops/Lhrpwan2", "https://tec.openplanner.team/stops/Lhrtilm2"], ["https://tec.openplanner.team/stops/Cflecep1", "https://tec.openplanner.team/stops/Cflhano1"], ["https://tec.openplanner.team/stops/LWaruth2", "https://tec.openplanner.team/stops/LwYkirc2"], ["https://tec.openplanner.team/stops/LaSkape1", "https://tec.openplanner.team/stops/LhSkape2"], ["https://tec.openplanner.team/stops/Baudhde2", "https://tec.openplanner.team/stops/Baudulb2"], ["https://tec.openplanner.team/stops/H1hm175b", "https://tec.openplanner.team/stops/H1hm177b"], ["https://tec.openplanner.team/stops/X743afa", "https://tec.openplanner.team/stops/X743agb"], ["https://tec.openplanner.team/stops/LROgeuz2", "https://tec.openplanner.team/stops/LWacime3"], ["https://tec.openplanner.team/stops/N343ada", "https://tec.openplanner.team/stops/X343ahb"], ["https://tec.openplanner.team/stops/LSOvoie2", "https://tec.openplanner.team/stops/LSOvoie4"], ["https://tec.openplanner.team/stops/LWAmois1", "https://tec.openplanner.team/stops/LWAmois2"], ["https://tec.openplanner.team/stops/Bllncbr2", "https://tec.openplanner.team/stops/Bmsgbur1"], ["https://tec.openplanner.team/stops/X789adb", "https://tec.openplanner.team/stops/X789aja"], ["https://tec.openplanner.team/stops/LRIcent1", "https://tec.openplanner.team/stops/LRIhous1"], ["https://tec.openplanner.team/stops/H4ty273b", "https://tec.openplanner.team/stops/H4ty333a"], ["https://tec.openplanner.team/stops/N117aob", "https://tec.openplanner.team/stops/N117bcb"], ["https://tec.openplanner.team/stops/Llgbarb2", "https://tec.openplanner.team/stops/Llgpoli2"], ["https://tec.openplanner.team/stops/Bmsgpfo1", "https://tec.openplanner.team/stops/Bmsgstj2"], ["https://tec.openplanner.team/stops/LmHabzw1", "https://tec.openplanner.team/stops/LmHvenn1"], ["https://tec.openplanner.team/stops/N551ajb", "https://tec.openplanner.team/stops/N551aka"], ["https://tec.openplanner.team/stops/Cfaheni1", "https://tec.openplanner.team/stops/Cfastan2"], ["https://tec.openplanner.team/stops/LTRlonh1", "https://tec.openplanner.team/stops/LTRthie1"], ["https://tec.openplanner.team/stops/LAMcoll2", "https://tec.openplanner.team/stops/LAMviam1"], ["https://tec.openplanner.team/stops/X659ana", "https://tec.openplanner.team/stops/X659aua"], ["https://tec.openplanner.team/stops/LCOcrom2", "https://tec.openplanner.team/stops/LGorysa1"], ["https://tec.openplanner.team/stops/Lreec--1", "https://tec.openplanner.team/stops/Lretill1"], ["https://tec.openplanner.team/stops/LHbcent1", "https://tec.openplanner.team/stops/LJAherb4"], ["https://tec.openplanner.team/stops/Bvircen1", "https://tec.openplanner.team/stops/Bvirvol2"], ["https://tec.openplanner.team/stops/LSkcoin1", "https://tec.openplanner.team/stops/LSkmarq2"], ["https://tec.openplanner.team/stops/N501isa", "https://tec.openplanner.team/stops/N501iva"], ["https://tec.openplanner.team/stops/LTPgare*", "https://tec.openplanner.team/stops/LTPnoup1"], ["https://tec.openplanner.team/stops/Cmlbeau1", "https://tec.openplanner.team/stops/Cmlbeau2"], ["https://tec.openplanner.team/stops/Bbsicas1", "https://tec.openplanner.team/stops/Bbsihau2"], ["https://tec.openplanner.team/stops/H4ne141b", "https://tec.openplanner.team/stops/H4te260b"], ["https://tec.openplanner.team/stops/X601aza", "https://tec.openplanner.team/stops/X601bka"], ["https://tec.openplanner.team/stops/Lmicoop1", "https://tec.openplanner.team/stops/Lmieg--1"], ["https://tec.openplanner.team/stops/LHEoutr2", "https://tec.openplanner.team/stops/LHEpriv2"], ["https://tec.openplanner.team/stops/X879aga", "https://tec.openplanner.team/stops/X879agb"], ["https://tec.openplanner.team/stops/LOucuve2", "https://tec.openplanner.team/stops/LOumaro2"], ["https://tec.openplanner.team/stops/LMoelno1", "https://tec.openplanner.team/stops/LMovich2"], ["https://tec.openplanner.team/stops/LWOcour1", "https://tec.openplanner.team/stops/LWOmart2"], ["https://tec.openplanner.team/stops/N508adb", "https://tec.openplanner.team/stops/N508aea"], ["https://tec.openplanner.team/stops/X982aad", "https://tec.openplanner.team/stops/X982abb"], ["https://tec.openplanner.team/stops/H1ch142a", "https://tec.openplanner.team/stops/H1ch143a"], ["https://tec.openplanner.team/stops/X672aka", "https://tec.openplanner.team/stops/X672akb"], ["https://tec.openplanner.team/stops/X605agb", "https://tec.openplanner.team/stops/X618aoa"], ["https://tec.openplanner.team/stops/LDOastr2", "https://tec.openplanner.team/stops/LDOviad1"], ["https://tec.openplanner.team/stops/Cflchel5", "https://tec.openplanner.team/stops/Cflchel6"], ["https://tec.openplanner.team/stops/LWEchat2", "https://tec.openplanner.team/stops/LWEcite2"], ["https://tec.openplanner.team/stops/N101aeb", "https://tec.openplanner.team/stops/N101anb"], ["https://tec.openplanner.team/stops/H4wr173b", "https://tec.openplanner.team/stops/H5qu148a"], ["https://tec.openplanner.team/stops/LFmecli3", "https://tec.openplanner.team/stops/LFmlens2"], ["https://tec.openplanner.team/stops/H1ba111b", "https://tec.openplanner.team/stops/H1ba112b"], ["https://tec.openplanner.team/stops/Btubbsc1", "https://tec.openplanner.team/stops/Btubbsc2"], ["https://tec.openplanner.team/stops/Bwlhppg1", "https://tec.openplanner.team/stops/Bwlhppg2"], ["https://tec.openplanner.team/stops/LMHoha-1", "https://tec.openplanner.team/stops/LMHtill2"], ["https://tec.openplanner.team/stops/X663ara", "https://tec.openplanner.team/stops/X663asa"], ["https://tec.openplanner.team/stops/H1sy148a", "https://tec.openplanner.team/stops/H1sy148c"], ["https://tec.openplanner.team/stops/H4mo164a", "https://tec.openplanner.team/stops/H4tg162b"], ["https://tec.openplanner.team/stops/H4he101a", "https://tec.openplanner.team/stops/H4he106a"], ["https://tec.openplanner.team/stops/X650ada", "https://tec.openplanner.team/stops/X650aea"], ["https://tec.openplanner.team/stops/H1pw121b", "https://tec.openplanner.team/stops/H1wa162b"], ["https://tec.openplanner.team/stops/LBIaepo2", "https://tec.openplanner.team/stops/LBIairp1"], ["https://tec.openplanner.team/stops/LDOeg--1", "https://tec.openplanner.team/stops/LDOgare1"], ["https://tec.openplanner.team/stops/X618aja", "https://tec.openplanner.team/stops/X618aka"], ["https://tec.openplanner.team/stops/Bbuzcom2", "https://tec.openplanner.team/stops/Creshau1"], ["https://tec.openplanner.team/stops/H4be102b", "https://tec.openplanner.team/stops/H4be104a"], ["https://tec.openplanner.team/stops/LeLbegl1", "https://tec.openplanner.team/stops/LeLbutg1"], ["https://tec.openplanner.team/stops/LLeec--1", "https://tec.openplanner.team/stops/X547adb"], ["https://tec.openplanner.team/stops/H4te253a", "https://tec.openplanner.team/stops/H4te260b"], ["https://tec.openplanner.team/stops/NL76aqb", "https://tec.openplanner.team/stops/NL80avb"], ["https://tec.openplanner.team/stops/X809aeb", "https://tec.openplanner.team/stops/X850abb"], ["https://tec.openplanner.team/stops/N123abb", "https://tec.openplanner.team/stops/N150aca"], ["https://tec.openplanner.team/stops/H4by117a", "https://tec.openplanner.team/stops/H4by117b"], ["https://tec.openplanner.team/stops/N511alb", "https://tec.openplanner.team/stops/N511ama"], ["https://tec.openplanner.team/stops/H2mo133a", "https://tec.openplanner.team/stops/H2mo133b"], ["https://tec.openplanner.team/stops/H1hw118b", "https://tec.openplanner.team/stops/H1hw121b"], ["https://tec.openplanner.team/stops/X721amb", "https://tec.openplanner.team/stops/X721atb"], ["https://tec.openplanner.team/stops/H2pe155a", "https://tec.openplanner.team/stops/H2sv214a"], ["https://tec.openplanner.team/stops/Cnachat1", "https://tec.openplanner.team/stops/NC14aqa"], ["https://tec.openplanner.team/stops/N563ana", "https://tec.openplanner.team/stops/N585alb"], ["https://tec.openplanner.team/stops/LJA65h-1", "https://tec.openplanner.team/stops/LJAhanq1"], ["https://tec.openplanner.team/stops/LFdeg--2", "https://tec.openplanner.team/stops/LLMfond1"], ["https://tec.openplanner.team/stops/N308aha", "https://tec.openplanner.team/stops/N308ahb"], ["https://tec.openplanner.team/stops/N103abb", "https://tec.openplanner.team/stops/N103acc"], ["https://tec.openplanner.team/stops/N351atc", "https://tec.openplanner.team/stops/N351atd"], ["https://tec.openplanner.team/stops/Bottvtc1", "https://tec.openplanner.team/stops/Bottvtc2"], ["https://tec.openplanner.team/stops/X398abb", "https://tec.openplanner.team/stops/X398aca"], ["https://tec.openplanner.team/stops/N534auc", "https://tec.openplanner.team/stops/N534bxb"], ["https://tec.openplanner.team/stops/LPRpeti1", "https://tec.openplanner.team/stops/Lrofont*"], ["https://tec.openplanner.team/stops/Ccugrtr1", "https://tec.openplanner.team/stops/Ccutail1"], ["https://tec.openplanner.team/stops/X663ada", "https://tec.openplanner.team/stops/X663afb"], ["https://tec.openplanner.team/stops/X982bda", "https://tec.openplanner.team/stops/X982cba"], ["https://tec.openplanner.team/stops/LPurech1", "https://tec.openplanner.team/stops/LPutins2"], ["https://tec.openplanner.team/stops/H4mo152a", "https://tec.openplanner.team/stops/H4mo166a"], ["https://tec.openplanner.team/stops/Lhrdelv1", "https://tec.openplanner.team/stops/Lhrpont2"], ["https://tec.openplanner.team/stops/N110aba", "https://tec.openplanner.team/stops/N110abb"], ["https://tec.openplanner.team/stops/LFlabba2", "https://tec.openplanner.team/stops/LFlabba4"], ["https://tec.openplanner.team/stops/LBpecco2", "https://tec.openplanner.team/stops/LGEhosp2"], ["https://tec.openplanner.team/stops/H2mm140a", "https://tec.openplanner.team/stops/H2mm144b"], ["https://tec.openplanner.team/stops/X741aca", "https://tec.openplanner.team/stops/X741aea"], ["https://tec.openplanner.team/stops/X948adb", "https://tec.openplanner.team/stops/X948aeb"], ["https://tec.openplanner.team/stops/LCPaube2", "https://tec.openplanner.team/stops/LCPbell1"], ["https://tec.openplanner.team/stops/Bfelequ2", "https://tec.openplanner.team/stops/Bfelpmo1"], ["https://tec.openplanner.team/stops/Cmqbasv2", "https://tec.openplanner.team/stops/H4lg100a"], ["https://tec.openplanner.team/stops/LRGgend2", "https://tec.openplanner.team/stops/LRGunio3"], ["https://tec.openplanner.team/stops/N501gfb", "https://tec.openplanner.team/stops/N501hdb"], ["https://tec.openplanner.team/stops/Cmlceri1", "https://tec.openplanner.team/stops/Cmlfeba1"], ["https://tec.openplanner.team/stops/H1wg124b", "https://tec.openplanner.team/stops/H1wg126b"], ["https://tec.openplanner.team/stops/Bdoncar1", "https://tec.openplanner.team/stops/Bdoncen1"], ["https://tec.openplanner.team/stops/Loubiez1", "https://tec.openplanner.team/stops/Louhauf2"], ["https://tec.openplanner.team/stops/H1gh147b", "https://tec.openplanner.team/stops/H1gh168b"], ["https://tec.openplanner.team/stops/Bmrspel2", "https://tec.openplanner.team/stops/Bwatric2"], ["https://tec.openplanner.team/stops/H2ch103c", "https://tec.openplanner.team/stops/H2ch105c"], ["https://tec.openplanner.team/stops/X750aab", "https://tec.openplanner.team/stops/X750aia"], ["https://tec.openplanner.team/stops/LARarge1", "https://tec.openplanner.team/stops/LARarge2"], ["https://tec.openplanner.team/stops/LkEherg1", "https://tec.openplanner.team/stops/LkEzoll2"], ["https://tec.openplanner.team/stops/Blhumga2", "https://tec.openplanner.team/stops/Blhumpo4"], ["https://tec.openplanner.team/stops/H4pi130a", "https://tec.openplanner.team/stops/H4pi136a"], ["https://tec.openplanner.team/stops/H1cu121a", "https://tec.openplanner.team/stops/H1cu121b"], ["https://tec.openplanner.team/stops/H1vs145a", "https://tec.openplanner.team/stops/H1vs146b"], ["https://tec.openplanner.team/stops/LMIbois1", "https://tec.openplanner.team/stops/LSOfech1"], ["https://tec.openplanner.team/stops/N367ada", "https://tec.openplanner.team/stops/N367adb"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X745ada"], ["https://tec.openplanner.team/stops/LnIschw1", "https://tec.openplanner.team/stops/LnIschw2"], ["https://tec.openplanner.team/stops/LAWgill1", "https://tec.openplanner.team/stops/LAWgill2"], ["https://tec.openplanner.team/stops/LOTferm1", "https://tec.openplanner.team/stops/LWieg--*"], ["https://tec.openplanner.team/stops/Cjugill3", "https://tec.openplanner.team/stops/Cjupui02"], ["https://tec.openplanner.team/stops/LrAdrie5", "https://tec.openplanner.team/stops/LrAneud1"], ["https://tec.openplanner.team/stops/LmNstaa1", "https://tec.openplanner.team/stops/LmNsv872"], ["https://tec.openplanner.team/stops/H2sv212a", "https://tec.openplanner.team/stops/H2sv212b"], ["https://tec.openplanner.team/stops/LCF1spa1", "https://tec.openplanner.team/stops/LCF2spa2"], ["https://tec.openplanner.team/stops/Bgnvpap1", "https://tec.openplanner.team/stops/Bgnvpos1"], ["https://tec.openplanner.team/stops/Lmobols1", "https://tec.openplanner.team/stops/Lmopech1"], ["https://tec.openplanner.team/stops/Ccoforr2", "https://tec.openplanner.team/stops/Crocpai1"], ["https://tec.openplanner.team/stops/LPbec--2", "https://tec.openplanner.team/stops/LSIcour1"], ["https://tec.openplanner.team/stops/X877aba", "https://tec.openplanner.team/stops/X880aeb"], ["https://tec.openplanner.team/stops/Chpfoli4", "https://tec.openplanner.team/stops/Chpfoli5"], ["https://tec.openplanner.team/stops/Bdvmc031", "https://tec.openplanner.team/stops/Bdvmc431"], ["https://tec.openplanner.team/stops/Bopplon2", "https://tec.openplanner.team/stops/Btslpic5"], ["https://tec.openplanner.team/stops/H4mb202b", "https://tec.openplanner.team/stops/H4mb204b"], ["https://tec.openplanner.team/stops/Bjdsjso1", "https://tec.openplanner.team/stops/Bjdsjso2"], ["https://tec.openplanner.team/stops/N569aba", "https://tec.openplanner.team/stops/N569abb"], ["https://tec.openplanner.team/stops/Ccobour2", "https://tec.openplanner.team/stops/Crorogn2"], ["https://tec.openplanner.team/stops/NH21afa", "https://tec.openplanner.team/stops/NH21aha"], ["https://tec.openplanner.team/stops/Bjaufca1", "https://tec.openplanner.team/stops/Bjauwar2"], ["https://tec.openplanner.team/stops/X616aha", "https://tec.openplanner.team/stops/X616ahb"], ["https://tec.openplanner.team/stops/LATcham*", "https://tec.openplanner.team/stops/LVLpane1"], ["https://tec.openplanner.team/stops/N501ihz", "https://tec.openplanner.team/stops/N501ipa"], ["https://tec.openplanner.team/stops/NL77adb", "https://tec.openplanner.team/stops/NL77afb"], ["https://tec.openplanner.team/stops/X823acb", "https://tec.openplanner.team/stops/X823afa"], ["https://tec.openplanner.team/stops/N254aaa", "https://tec.openplanner.team/stops/N570aab"], ["https://tec.openplanner.team/stops/H2hg153b", "https://tec.openplanner.team/stops/H2hg155c"], ["https://tec.openplanner.team/stops/X638aqb", "https://tec.openplanner.team/stops/X652aaa"], ["https://tec.openplanner.team/stops/LFyec--1", "https://tec.openplanner.team/stops/LFyec--2"], ["https://tec.openplanner.team/stops/X790aab", "https://tec.openplanner.team/stops/X790abb"], ["https://tec.openplanner.team/stops/X769afa", "https://tec.openplanner.team/stops/X769aga"], ["https://tec.openplanner.team/stops/X629aaa", "https://tec.openplanner.team/stops/X629aca"], ["https://tec.openplanner.team/stops/Ccogrha2", "https://tec.openplanner.team/stops/Ccojaur1"], ["https://tec.openplanner.team/stops/LgAdorf1", "https://tec.openplanner.team/stops/LgHdorf1"], ["https://tec.openplanner.team/stops/N353afd", "https://tec.openplanner.team/stops/N357adb"], ["https://tec.openplanner.team/stops/Buccpor2", "https://tec.openplanner.team/stops/Buccvbe2"], ["https://tec.openplanner.team/stops/H4eh101b", "https://tec.openplanner.team/stops/H4eh104b"], ["https://tec.openplanner.team/stops/X949adb", "https://tec.openplanner.team/stops/X949afa"], ["https://tec.openplanner.team/stops/LON02--1", "https://tec.openplanner.team/stops/LWastei1"], ["https://tec.openplanner.team/stops/H1wa162a", "https://tec.openplanner.team/stops/H1wg124b"], ["https://tec.openplanner.team/stops/N201aha", "https://tec.openplanner.team/stops/N201ahb"], ["https://tec.openplanner.team/stops/N540aeb", "https://tec.openplanner.team/stops/N578aca"], ["https://tec.openplanner.team/stops/H5fl102a", "https://tec.openplanner.team/stops/H5fl103a"], ["https://tec.openplanner.team/stops/H4mo165b", "https://tec.openplanner.team/stops/H4mo175b"], ["https://tec.openplanner.team/stops/H5el102a", "https://tec.openplanner.team/stops/H5el117b"], ["https://tec.openplanner.team/stops/N103aha", "https://tec.openplanner.team/stops/N103aib"], ["https://tec.openplanner.team/stops/N244aob", "https://tec.openplanner.team/stops/N244arb"], ["https://tec.openplanner.team/stops/Llglonh2", "https://tec.openplanner.team/stops/LlgPTAV2"], ["https://tec.openplanner.team/stops/N360aeb", "https://tec.openplanner.team/stops/X892aia"], ["https://tec.openplanner.team/stops/Bmarmru1", "https://tec.openplanner.team/stops/Btilmar1"], ["https://tec.openplanner.team/stops/Ccunvus2", "https://tec.openplanner.team/stops/Ccutrav1"], ["https://tec.openplanner.team/stops/X993aba", "https://tec.openplanner.team/stops/X993aha"], ["https://tec.openplanner.team/stops/N551aca", "https://tec.openplanner.team/stops/N551adb"], ["https://tec.openplanner.team/stops/Ctmmana2", "https://tec.openplanner.team/stops/Cvvchea1"], ["https://tec.openplanner.team/stops/LVPgrot3", "https://tec.openplanner.team/stops/LVPgrot4"], ["https://tec.openplanner.team/stops/Cragill2", "https://tec.openplanner.team/stops/Cramadi1"], ["https://tec.openplanner.team/stops/Bhalgja1", "https://tec.openplanner.team/stops/Bhalgja2"], ["https://tec.openplanner.team/stops/H3lr112a", "https://tec.openplanner.team/stops/H3lr112b"], ["https://tec.openplanner.team/stops/Cmbcime3", "https://tec.openplanner.team/stops/Cmcegli2"], ["https://tec.openplanner.team/stops/Llgcamp2", "https://tec.openplanner.team/stops/Llgelis2"], ["https://tec.openplanner.team/stops/H1ob331a", "https://tec.openplanner.team/stops/H1ob335b"], ["https://tec.openplanner.team/stops/X661aaa", "https://tec.openplanner.team/stops/X661aab"], ["https://tec.openplanner.team/stops/Bbeaap51", "https://tec.openplanner.team/stops/Bbearwa1"], ["https://tec.openplanner.team/stops/Bitrcro3", "https://tec.openplanner.team/stops/Bvirfpo2"], ["https://tec.openplanner.team/stops/LLrisa-*", "https://tec.openplanner.team/stops/LQafond2"], ["https://tec.openplanner.team/stops/LrEkirc2", "https://tec.openplanner.team/stops/LrEviel1"], ["https://tec.openplanner.team/stops/Llgcamp1", "https://tec.openplanner.team/stops/Llgcamp2"], ["https://tec.openplanner.team/stops/Cfmchap1", "https://tec.openplanner.team/stops/Cfojoli2"], ["https://tec.openplanner.team/stops/N254aea", "https://tec.openplanner.team/stops/N254aeb"], ["https://tec.openplanner.team/stops/Lbrhvl-*", "https://tec.openplanner.team/stops/Lgrdefr2"], ["https://tec.openplanner.team/stops/Bcercsa1", "https://tec.openplanner.team/stops/Bcsegal1"], ["https://tec.openplanner.team/stops/Cforpet2", "https://tec.openplanner.team/stops/CMpetr2"], ["https://tec.openplanner.team/stops/H4ep127b", "https://tec.openplanner.team/stops/H4la197a"], ["https://tec.openplanner.team/stops/N260aea", "https://tec.openplanner.team/stops/N260aeb"], ["https://tec.openplanner.team/stops/H4ka392a", "https://tec.openplanner.team/stops/H4ka392b"], ["https://tec.openplanner.team/stops/H1bd102a", "https://tec.openplanner.team/stops/H1bd102b"], ["https://tec.openplanner.team/stops/N135axa", "https://tec.openplanner.team/stops/N135bga"], ["https://tec.openplanner.team/stops/Lanpast2", "https://tec.openplanner.team/stops/Lanpont1"], ["https://tec.openplanner.team/stops/N426aeb", "https://tec.openplanner.team/stops/N426afb"], ["https://tec.openplanner.team/stops/LOTsav-2", "https://tec.openplanner.team/stops/LVleg--1"], ["https://tec.openplanner.team/stops/X911ala", "https://tec.openplanner.team/stops/X911alb"], ["https://tec.openplanner.team/stops/X982bga", "https://tec.openplanner.team/stops/X982bkb"], ["https://tec.openplanner.team/stops/X631aaa", "https://tec.openplanner.team/stops/X631acb"], ["https://tec.openplanner.team/stops/Bhvltol1", "https://tec.openplanner.team/stops/Bmsgrco2"], ["https://tec.openplanner.team/stops/Cmaegal1", "https://tec.openplanner.team/stops/Cmastni2"], ["https://tec.openplanner.team/stops/Lghgoll2", "https://tec.openplanner.team/stops/Lghprea3"], ["https://tec.openplanner.team/stops/X657ahb", "https://tec.openplanner.team/stops/X657anb"], ["https://tec.openplanner.team/stops/Llgvalu1", "https://tec.openplanner.team/stops/Llgvalu2"], ["https://tec.openplanner.team/stops/Cfrcoop2", "https://tec.openplanner.team/stops/Cfrcoop3"], ["https://tec.openplanner.team/stops/Lchsart2", "https://tec.openplanner.team/stops/Lvisere1"], ["https://tec.openplanner.team/stops/Ccicloc1", "https://tec.openplanner.team/stops/Clvimtr1"], ["https://tec.openplanner.team/stops/LEHpech1", "https://tec.openplanner.team/stops/LEHpech2"], ["https://tec.openplanner.team/stops/LOMcabi2", "https://tec.openplanner.team/stops/LOMeg--2"], ["https://tec.openplanner.team/stops/N261aca", "https://tec.openplanner.team/stops/N261acb"], ["https://tec.openplanner.team/stops/H4ga148d", "https://tec.openplanner.team/stops/H4ga171b"], ["https://tec.openplanner.team/stops/LeUkehr1", "https://tec.openplanner.team/stops/LeUkehr2"], ["https://tec.openplanner.team/stops/H4ka191a", "https://tec.openplanner.team/stops/H4ka191b"], ["https://tec.openplanner.team/stops/LRGgrov1", "https://tec.openplanner.team/stops/LRGgrov2"], ["https://tec.openplanner.team/stops/N261aba", "https://tec.openplanner.team/stops/N261abb"], ["https://tec.openplanner.team/stops/Crbgare1", "https://tec.openplanner.team/stops/Crbgare2"], ["https://tec.openplanner.team/stops/LFMkrut2", "https://tec.openplanner.team/stops/LFMveur1"], ["https://tec.openplanner.team/stops/LTAchpl1", "https://tec.openplanner.team/stops/LTHcime2"], ["https://tec.openplanner.team/stops/H1ms272b", "https://tec.openplanner.team/stops/H1ms279b"], ["https://tec.openplanner.team/stops/X823ada", "https://tec.openplanner.team/stops/X823aea"], ["https://tec.openplanner.team/stops/Bpthfus2", "https://tec.openplanner.team/stops/Bpthrsp2"], ["https://tec.openplanner.team/stops/X615awb", "https://tec.openplanner.team/stops/X615bga"], ["https://tec.openplanner.team/stops/X820aea", "https://tec.openplanner.team/stops/X820aga"], ["https://tec.openplanner.team/stops/Cnaplha3", "https://tec.openplanner.team/stops/Cnaplha4"], ["https://tec.openplanner.team/stops/Cmlclos1", "https://tec.openplanner.team/stops/Cmmn1172"], ["https://tec.openplanner.team/stops/LSPcomm2", "https://tec.openplanner.team/stops/LSPpomp2"], ["https://tec.openplanner.team/stops/LPRmc--2", "https://tec.openplanner.team/stops/LPRpeti2"], ["https://tec.openplanner.team/stops/N534asb", "https://tec.openplanner.team/stops/N534avb"], ["https://tec.openplanner.team/stops/X982bua", "https://tec.openplanner.team/stops/X982bub"], ["https://tec.openplanner.team/stops/H1do114a", "https://tec.openplanner.team/stops/H1do114b"], ["https://tec.openplanner.team/stops/X601acb", "https://tec.openplanner.team/stops/X601btb"], ["https://tec.openplanner.team/stops/H2mo129b", "https://tec.openplanner.team/stops/H2mo135b"], ["https://tec.openplanner.team/stops/H1bu136b", "https://tec.openplanner.team/stops/H1bu137a"], ["https://tec.openplanner.team/stops/X224aca", "https://tec.openplanner.team/stops/X224acb"], ["https://tec.openplanner.team/stops/Bllnein3", "https://tec.openplanner.team/stops/Bllnein4"], ["https://tec.openplanner.team/stops/X840aba", "https://tec.openplanner.team/stops/X840aca"], ["https://tec.openplanner.team/stops/Bsdapir1", "https://tec.openplanner.team/stops/Csdrofr1"], ["https://tec.openplanner.team/stops/Bnivbne1", "https://tec.openplanner.team/stops/Bptrlux1"], ["https://tec.openplanner.team/stops/Clbecol1", "https://tec.openplanner.team/stops/H1lo120a"], ["https://tec.openplanner.team/stops/H1ca104b", "https://tec.openplanner.team/stops/H1ca109a"], ["https://tec.openplanner.team/stops/H4an108b", "https://tec.openplanner.team/stops/H4an112b"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/Cssgare1"], ["https://tec.openplanner.team/stops/Bottgar6", "https://tec.openplanner.team/stops/Bottgar7"], ["https://tec.openplanner.team/stops/X736aaa", "https://tec.openplanner.team/stops/X952adb"], ["https://tec.openplanner.team/stops/Lflec--2", "https://tec.openplanner.team/stops/Lflprev1"], ["https://tec.openplanner.team/stops/H1sy138b", "https://tec.openplanner.team/stops/H1sy145a"], ["https://tec.openplanner.team/stops/Bbiemse2", "https://tec.openplanner.team/stops/Bgzdfpo1"], ["https://tec.openplanner.team/stops/X818aha", "https://tec.openplanner.team/stops/X818aib"], ["https://tec.openplanner.team/stops/LdUespe4", "https://tec.openplanner.team/stops/LoDulf-1"], ["https://tec.openplanner.team/stops/X793abb", "https://tec.openplanner.team/stops/X793aga"], ["https://tec.openplanner.team/stops/Cjxpris1", "https://tec.openplanner.team/stops/Cml5ave1"], ["https://tec.openplanner.team/stops/LRteg--*", "https://tec.openplanner.team/stops/LSebott1"], ["https://tec.openplanner.team/stops/H1au111a", "https://tec.openplanner.team/stops/H1au114a"], ["https://tec.openplanner.team/stops/Cctvand2", "https://tec.openplanner.team/stops/Cctvict1"], ["https://tec.openplanner.team/stops/LFUfonc2", "https://tec.openplanner.team/stops/LWDcime2"], ["https://tec.openplanner.team/stops/Bbiehev2", "https://tec.openplanner.team/stops/Bbiepre1"], ["https://tec.openplanner.team/stops/NL78ada", "https://tec.openplanner.team/stops/NL78aeb"], ["https://tec.openplanner.team/stops/LVllieg1", "https://tec.openplanner.team/stops/LVltige1"], ["https://tec.openplanner.team/stops/X879aeb", "https://tec.openplanner.team/stops/X879apa"], ["https://tec.openplanner.team/stops/NL81aeb", "https://tec.openplanner.team/stops/NL81aha"], ["https://tec.openplanner.team/stops/Lanadmi2", "https://tec.openplanner.team/stops/Lanstat2"], ["https://tec.openplanner.team/stops/H2pe155b", "https://tec.openplanner.team/stops/H2pe158b"], ["https://tec.openplanner.team/stops/Bzlufbo2", "https://tec.openplanner.team/stops/Bzluqga2"], ["https://tec.openplanner.team/stops/Cfrempe2", "https://tec.openplanner.team/stops/Cfrmon3"], ["https://tec.openplanner.team/stops/X902atb", "https://tec.openplanner.team/stops/X902bba"], ["https://tec.openplanner.team/stops/Bclgeco2", "https://tec.openplanner.team/stops/Bclgegl1"], ["https://tec.openplanner.team/stops/LFRspa-2", "https://tec.openplanner.team/stops/LSxeg--1"], ["https://tec.openplanner.team/stops/Crccano1", "https://tec.openplanner.team/stops/Crccano4"], ["https://tec.openplanner.team/stops/H4bn101b", "https://tec.openplanner.team/stops/H4ws158b"], ["https://tec.openplanner.team/stops/LmEdorf1", "https://tec.openplanner.team/stops/LmEdorf2"], ["https://tec.openplanner.team/stops/X601cgb", "https://tec.openplanner.team/stops/X601dia"], ["https://tec.openplanner.team/stops/X781aga", "https://tec.openplanner.team/stops/X781agb"], ["https://tec.openplanner.team/stops/X790aca", "https://tec.openplanner.team/stops/X790adb"], ["https://tec.openplanner.team/stops/LFAscie1", "https://tec.openplanner.team/stops/LFAscie2"], ["https://tec.openplanner.team/stops/N232bqa", "https://tec.openplanner.team/stops/N261aba"], ["https://tec.openplanner.team/stops/X773acb", "https://tec.openplanner.team/stops/X773aea"], ["https://tec.openplanner.team/stops/X542aaa", "https://tec.openplanner.team/stops/X542abb"], ["https://tec.openplanner.team/stops/Blingar1", "https://tec.openplanner.team/stops/Bracgar1"], ["https://tec.openplanner.team/stops/LMOm48-1", "https://tec.openplanner.team/stops/LMOmome1"], ["https://tec.openplanner.team/stops/H4ar104b", "https://tec.openplanner.team/stops/H4pl136a"], ["https://tec.openplanner.team/stops/Baegpon3", "https://tec.openplanner.team/stops/NR38aeb"], ["https://tec.openplanner.team/stops/H1cu114b", "https://tec.openplanner.team/stops/H1cu132b"], ["https://tec.openplanner.team/stops/X923akb", "https://tec.openplanner.team/stops/X941ahb"], ["https://tec.openplanner.team/stops/Cgocalv3", "https://tec.openplanner.team/stops/Cgocalv6"], ["https://tec.openplanner.team/stops/H4ga147b", "https://tec.openplanner.team/stops/H4ga167a"], ["https://tec.openplanner.team/stops/X661ara", "https://tec.openplanner.team/stops/X661asb"], ["https://tec.openplanner.team/stops/LNCpi331", "https://tec.openplanner.team/stops/LRRbonr1"], ["https://tec.openplanner.team/stops/X818aia", "https://tec.openplanner.team/stops/X822agb"], ["https://tec.openplanner.team/stops/N235aba", "https://tec.openplanner.team/stops/N235aha"], ["https://tec.openplanner.team/stops/LRmkerk2", "https://tec.openplanner.team/stops/LTEziho2"], ["https://tec.openplanner.team/stops/Cpceclu1", "https://tec.openplanner.team/stops/Cpclibe4"], ["https://tec.openplanner.team/stops/Llgbois1", "https://tec.openplanner.team/stops/LlgPRVo2"], ["https://tec.openplanner.team/stops/LaMgeme*", "https://tec.openplanner.team/stops/LaMpost1"], ["https://tec.openplanner.team/stops/LbTkran2", "https://tec.openplanner.team/stops/LbTkreu4"], ["https://tec.openplanner.team/stops/X937aga", "https://tec.openplanner.team/stops/X937aka"], ["https://tec.openplanner.team/stops/N230aab", "https://tec.openplanner.team/stops/N230aia"], ["https://tec.openplanner.team/stops/H1ho131a", "https://tec.openplanner.team/stops/H1ho136a"], ["https://tec.openplanner.team/stops/H4es111b", "https://tec.openplanner.team/stops/H4ln128b"], ["https://tec.openplanner.team/stops/N302aab", "https://tec.openplanner.team/stops/N302abb"], ["https://tec.openplanner.team/stops/N120afa", "https://tec.openplanner.team/stops/N120afb"], ["https://tec.openplanner.team/stops/X666aha", "https://tec.openplanner.team/stops/X666ahb"], ["https://tec.openplanner.team/stops/X718aea", "https://tec.openplanner.team/stops/X718aia"], ["https://tec.openplanner.team/stops/H4by116b", "https://tec.openplanner.team/stops/H4by117a"], ["https://tec.openplanner.team/stops/X779aab", "https://tec.openplanner.team/stops/X779adb"], ["https://tec.openplanner.team/stops/H1vb141a", "https://tec.openplanner.team/stops/H1vb141b"], ["https://tec.openplanner.team/stops/Cchsud01", "https://tec.openplanner.team/stops/Cchsud10"], ["https://tec.openplanner.team/stops/Bbstasa1", "https://tec.openplanner.team/stops/Bbstcha2"], ["https://tec.openplanner.team/stops/X748aaa", "https://tec.openplanner.team/stops/X767aja"], ["https://tec.openplanner.team/stops/N514ama", "https://tec.openplanner.team/stops/N514aob"], ["https://tec.openplanner.team/stops/N534abb", "https://tec.openplanner.team/stops/N543agb"], ["https://tec.openplanner.team/stops/N521aib", "https://tec.openplanner.team/stops/N521apb"], ["https://tec.openplanner.team/stops/N231aga", "https://tec.openplanner.team/stops/N291abb"], ["https://tec.openplanner.team/stops/LBNauto1", "https://tec.openplanner.team/stops/LWElanc2"], ["https://tec.openplanner.team/stops/Llgavro1", "https://tec.openplanner.team/stops/Llgavro2"], ["https://tec.openplanner.team/stops/LSBdelc2", "https://tec.openplanner.team/stops/LSGcolo1"], ["https://tec.openplanner.team/stops/Ccutill1", "https://tec.openplanner.team/stops/Ccutill3"], ["https://tec.openplanner.team/stops/Llggram1", "https://tec.openplanner.team/stops/Llggram3"], ["https://tec.openplanner.team/stops/N122ahb", "https://tec.openplanner.team/stops/N122aib"], ["https://tec.openplanner.team/stops/Brsreco2", "https://tec.openplanner.team/stops/Brsregl3"], ["https://tec.openplanner.team/stops/LBXhacb2", "https://tec.openplanner.team/stops/LMEgare2"], ["https://tec.openplanner.team/stops/LMHcant2", "https://tec.openplanner.team/stops/NL73aeb"], ["https://tec.openplanner.team/stops/Lrcvinc2", "https://tec.openplanner.team/stops/Lvoeg--2"], ["https://tec.openplanner.team/stops/NL74aab", "https://tec.openplanner.team/stops/NL74abb"], ["https://tec.openplanner.team/stops/LkTkabi2", "https://tec.openplanner.team/stops/LkTtal-2"], ["https://tec.openplanner.team/stops/LkRrauw2", "https://tec.openplanner.team/stops/LwR129-2"], ["https://tec.openplanner.team/stops/X733afa", "https://tec.openplanner.team/stops/X734aqb"], ["https://tec.openplanner.team/stops/Llgbobu1", "https://tec.openplanner.team/stops/Lmocail1"], ["https://tec.openplanner.team/stops/H2mg143a", "https://tec.openplanner.team/stops/H2mg144b"], ["https://tec.openplanner.team/stops/LmDkoel1", "https://tec.openplanner.team/stops/LmDwei32"], ["https://tec.openplanner.team/stops/LHMaube1", "https://tec.openplanner.team/stops/LHMchev2"], ["https://tec.openplanner.team/stops/Bwatgib1", "https://tec.openplanner.team/stops/Bwatnrs2"], ["https://tec.openplanner.team/stops/Bwaab122", "https://tec.openplanner.team/stops/LWHmath2"], ["https://tec.openplanner.team/stops/H4ca124a", "https://tec.openplanner.team/stops/H4wi163a"], ["https://tec.openplanner.team/stops/X802ajb", "https://tec.openplanner.team/stops/X836aha"], ["https://tec.openplanner.team/stops/Lceegli*", "https://tec.openplanner.team/stops/Lcemc--2"], ["https://tec.openplanner.team/stops/N581aab", "https://tec.openplanner.team/stops/NL74ahc"], ["https://tec.openplanner.team/stops/Laleg--1", "https://tec.openplanner.team/stops/Lalhomb1"], ["https://tec.openplanner.team/stops/H2mg136a", "https://tec.openplanner.team/stops/H2mg141a"], ["https://tec.openplanner.team/stops/X897aod", "https://tec.openplanner.team/stops/X897aqb"], ["https://tec.openplanner.team/stops/H1ls105b", "https://tec.openplanner.team/stops/H1mc128a"], ["https://tec.openplanner.team/stops/Chpatel1", "https://tec.openplanner.team/stops/Chpfoli4"], ["https://tec.openplanner.team/stops/Cbzfrom2", "https://tec.openplanner.team/stops/Cobmven2"], ["https://tec.openplanner.team/stops/LNEmoul1", "https://tec.openplanner.team/stops/LNEtonv1"], ["https://tec.openplanner.team/stops/H4es113a", "https://tec.openplanner.team/stops/H4es117a"], ["https://tec.openplanner.team/stops/Bnivga11", "https://tec.openplanner.team/stops/Bnivpar1"], ["https://tec.openplanner.team/stops/Ljuchap3", "https://tec.openplanner.team/stops/Ljuprev3"], ["https://tec.openplanner.team/stops/H4bh101a", "https://tec.openplanner.team/stops/H4bh102a"], ["https://tec.openplanner.team/stops/Cluberl2", "https://tec.openplanner.team/stops/Cvvcime2"], ["https://tec.openplanner.team/stops/Lhufays1", "https://tec.openplanner.team/stops/LPohoeg1"], ["https://tec.openplanner.team/stops/H4av102c", "https://tec.openplanner.team/stops/H4ef165c"], ["https://tec.openplanner.team/stops/X882afb", "https://tec.openplanner.team/stops/X882amd"], ["https://tec.openplanner.team/stops/H4tu171a", "https://tec.openplanner.team/stops/H4tu171b"], ["https://tec.openplanner.team/stops/NC11afa", "https://tec.openplanner.team/stops/NC11aga"], ["https://tec.openplanner.team/stops/Bbchsac1", "https://tec.openplanner.team/stops/Bhtirin1"], ["https://tec.openplanner.team/stops/Bbbksth2", "https://tec.openplanner.team/stops/Bhmmjco1"], ["https://tec.openplanner.team/stops/Llghenr1", "https://tec.openplanner.team/stops/Llgmaus1"], ["https://tec.openplanner.team/stops/N118aaa", "https://tec.openplanner.team/stops/N118aba"], ["https://tec.openplanner.team/stops/LSPplat1", "https://tec.openplanner.team/stops/LSPsous1"], ["https://tec.openplanner.team/stops/X901asa", "https://tec.openplanner.team/stops/X901bcb"], ["https://tec.openplanner.team/stops/Bwavbar1", "https://tec.openplanner.team/stops/Bwavcin1"], ["https://tec.openplanner.team/stops/N331adb", "https://tec.openplanner.team/stops/N331afc"], ["https://tec.openplanner.team/stops/Bcrnrpc2", "https://tec.openplanner.team/stops/Bcrntru1"], ["https://tec.openplanner.team/stops/LTHbelv2", "https://tec.openplanner.team/stops/LTHwaux1"], ["https://tec.openplanner.team/stops/LBNlong2", "https://tec.openplanner.team/stops/LBNruns1"], ["https://tec.openplanner.team/stops/Cgzha621", "https://tec.openplanner.team/stops/Cgzha622"], ["https://tec.openplanner.team/stops/H1mj128a", "https://tec.openplanner.team/stops/H1mj132a"], ["https://tec.openplanner.team/stops/H1te186a", "https://tec.openplanner.team/stops/H1vt192b"], ["https://tec.openplanner.team/stops/X346afa", "https://tec.openplanner.team/stops/X346afb"], ["https://tec.openplanner.team/stops/N534bua", "https://tec.openplanner.team/stops/N534bub"], ["https://tec.openplanner.team/stops/Cpl4bra1", "https://tec.openplanner.team/stops/Cpl4bra2"], ["https://tec.openplanner.team/stops/N544agb", "https://tec.openplanner.team/stops/N545aab"], ["https://tec.openplanner.team/stops/LVnetan2", "https://tec.openplanner.team/stops/LVnflox2"], ["https://tec.openplanner.team/stops/H1qu105a", "https://tec.openplanner.team/stops/H1wl125a"], ["https://tec.openplanner.team/stops/Cchabat1", "https://tec.openplanner.team/stops/Clojone1"], ["https://tec.openplanner.team/stops/NC14acb", "https://tec.openplanner.team/stops/NC44adb"], ["https://tec.openplanner.team/stops/H4ga162a", "https://tec.openplanner.team/stops/H4ga165b"], ["https://tec.openplanner.team/stops/Lalexpa1", "https://tec.openplanner.team/stops/Lalverr2"], ["https://tec.openplanner.team/stops/Ljemeca1", "https://tec.openplanner.team/stops/Lsetroq2"], ["https://tec.openplanner.team/stops/Bezeksj2", "https://tec.openplanner.team/stops/Bezeksj3"], ["https://tec.openplanner.team/stops/N573aba", "https://tec.openplanner.team/stops/N573abb"], ["https://tec.openplanner.team/stops/X601cga", "https://tec.openplanner.team/stops/X601cha"], ["https://tec.openplanner.team/stops/H1le128c", "https://tec.openplanner.team/stops/H1le128d"], ["https://tec.openplanner.team/stops/LTHmaka1", "https://tec.openplanner.team/stops/LTHmaka2"], ["https://tec.openplanner.team/stops/X903aga", "https://tec.openplanner.team/stops/X903agb"], ["https://tec.openplanner.team/stops/Lbrboul2", "https://tec.openplanner.team/stops/Lbrfoid4"], ["https://tec.openplanner.team/stops/Ctachst1", "https://tec.openplanner.team/stops/Ctachst2"], ["https://tec.openplanner.team/stops/N553aja", "https://tec.openplanner.team/stops/N553ajb"], ["https://tec.openplanner.team/stops/LGLspor2", "https://tec.openplanner.team/stops/LWidepo2"], ["https://tec.openplanner.team/stops/H1gy113a", "https://tec.openplanner.team/stops/H1og136a"], ["https://tec.openplanner.team/stops/LCUmora1", "https://tec.openplanner.team/stops/LCUmora2"], ["https://tec.openplanner.team/stops/LBEhaye1", "https://tec.openplanner.team/stops/LLNcime1"], ["https://tec.openplanner.team/stops/Llgbell1", "https://tec.openplanner.team/stops/Llgpont2"], ["https://tec.openplanner.team/stops/H1bl105a", "https://tec.openplanner.team/stops/H1do119a"], ["https://tec.openplanner.team/stops/N501cqa", "https://tec.openplanner.team/stops/N501cqb"], ["https://tec.openplanner.team/stops/N501ney", "https://tec.openplanner.team/stops/N501nez"], ["https://tec.openplanner.team/stops/X608apa", "https://tec.openplanner.team/stops/X608apb"], ["https://tec.openplanner.team/stops/Cmmplac1", "https://tec.openplanner.team/stops/Cmmplac4"], ["https://tec.openplanner.team/stops/H1pd141b", "https://tec.openplanner.team/stops/H1pd143a"], ["https://tec.openplanner.team/stops/Ljekess1", "https://tec.openplanner.team/stops/Ljelexh1"], ["https://tec.openplanner.team/stops/LmDkape1", "https://tec.openplanner.team/stops/LmDkape2"], ["https://tec.openplanner.team/stops/Cbwegl1", "https://tec.openplanner.team/stops/Cmgarsi1"], ["https://tec.openplanner.team/stops/LBSkann2", "https://tec.openplanner.team/stops/LBStong2"], ["https://tec.openplanner.team/stops/LCIcent2", "https://tec.openplanner.team/stops/LLtwanz1"], ["https://tec.openplanner.team/stops/Cmlfstt1", "https://tec.openplanner.team/stops/Cmlrous1"], ["https://tec.openplanner.team/stops/X769ajb", "https://tec.openplanner.team/stops/X769aka"], ["https://tec.openplanner.team/stops/LGOcana1", "https://tec.openplanner.team/stops/LGOcana2"], ["https://tec.openplanner.team/stops/Bgoestu2", "https://tec.openplanner.team/stops/Bhoealt1"], ["https://tec.openplanner.team/stops/H4ka176b", "https://tec.openplanner.team/stops/H4ka181b"], ["https://tec.openplanner.team/stops/H4wi170a", "https://tec.openplanner.team/stops/H5pe134b"], ["https://tec.openplanner.team/stops/Cmazone1", "https://tec.openplanner.team/stops/Cmazsnc1"], ["https://tec.openplanner.team/stops/X811apa", "https://tec.openplanner.team/stops/X811apb"], ["https://tec.openplanner.team/stops/H2le151a", "https://tec.openplanner.team/stops/H2le152a"], ["https://tec.openplanner.team/stops/Bhensei2", "https://tec.openplanner.team/stops/Bvirrbo1"], ["https://tec.openplanner.team/stops/Bbchndb2", "https://tec.openplanner.team/stops/Bitreco2"], ["https://tec.openplanner.team/stops/LVEh16-1", "https://tec.openplanner.team/stops/LVEmohi2"], ["https://tec.openplanner.team/stops/N321adb", "https://tec.openplanner.team/stops/N321aea"], ["https://tec.openplanner.team/stops/N520aia", "https://tec.openplanner.team/stops/N520aja"], ["https://tec.openplanner.team/stops/LWNwavr1", "https://tec.openplanner.team/stops/LWNwavr2"], ["https://tec.openplanner.team/stops/H2ll178a", "https://tec.openplanner.team/stops/H2ll258b"], ["https://tec.openplanner.team/stops/Lagcolo2", "https://tec.openplanner.team/stops/LTIp%C3%A9pi2"], ["https://tec.openplanner.team/stops/LrEborn2", "https://tec.openplanner.team/stops/LrEkais3"], ["https://tec.openplanner.team/stops/Bolgeva2", "https://tec.openplanner.team/stops/Bolgrga2"], ["https://tec.openplanner.team/stops/N551ada", "https://tec.openplanner.team/stops/N551aqb"], ["https://tec.openplanner.team/stops/H1ms263b", "https://tec.openplanner.team/stops/H1ms266b"], ["https://tec.openplanner.team/stops/H4ar107b", "https://tec.openplanner.team/stops/H4ar177a"], ["https://tec.openplanner.team/stops/LAnvien2", "https://tec.openplanner.team/stops/LMtcent2"], ["https://tec.openplanner.team/stops/H2lh128b", "https://tec.openplanner.team/stops/H2mm140b"], ["https://tec.openplanner.team/stops/N521ada", "https://tec.openplanner.team/stops/N521adb"], ["https://tec.openplanner.team/stops/N243acb", "https://tec.openplanner.team/stops/N252adb"], ["https://tec.openplanner.team/stops/LBahaut2", "https://tec.openplanner.team/stops/LBavive2"], ["https://tec.openplanner.team/stops/X601bba", "https://tec.openplanner.team/stops/X601bqa"], ["https://tec.openplanner.team/stops/N302abb", "https://tec.openplanner.team/stops/N302acb"], ["https://tec.openplanner.team/stops/N576abb", "https://tec.openplanner.team/stops/N576aga"], ["https://tec.openplanner.team/stops/N511aoa", "https://tec.openplanner.team/stops/N511arb"], ["https://tec.openplanner.team/stops/N232aab", "https://tec.openplanner.team/stops/N232aga"], ["https://tec.openplanner.team/stops/Louaout2", "https://tec.openplanner.team/stops/Loufleu1"], ["https://tec.openplanner.team/stops/Lougros1", "https://tec.openplanner.team/stops/Lstscie2"], ["https://tec.openplanner.team/stops/X824aja", "https://tec.openplanner.team/stops/X826aab"], ["https://tec.openplanner.team/stops/N553abc", "https://tec.openplanner.team/stops/N553aib"], ["https://tec.openplanner.team/stops/H1mm125c", "https://tec.openplanner.team/stops/H1mm127b"], ["https://tec.openplanner.team/stops/H1ms301a", "https://tec.openplanner.team/stops/H1ms923a"], ["https://tec.openplanner.team/stops/X639apa", "https://tec.openplanner.team/stops/X639arb"], ["https://tec.openplanner.team/stops/LOCloup1", "https://tec.openplanner.team/stops/X261aaa"], ["https://tec.openplanner.team/stops/N225ahb", "https://tec.openplanner.team/stops/N226acb"], ["https://tec.openplanner.team/stops/H4co133a", "https://tec.openplanner.team/stops/H4co133b"], ["https://tec.openplanner.team/stops/X820agc", "https://tec.openplanner.team/stops/X820agd"], ["https://tec.openplanner.team/stops/Clfmonu2", "https://tec.openplanner.team/stops/Ctilobb1"], ["https://tec.openplanner.team/stops/X663aea", "https://tec.openplanner.team/stops/X663afa"], ["https://tec.openplanner.team/stops/LNEgaul4", "https://tec.openplanner.team/stops/LNEolne2"], ["https://tec.openplanner.team/stops/H2sb231a", "https://tec.openplanner.team/stops/H2sb266a"], ["https://tec.openplanner.team/stops/Cstcent1", "https://tec.openplanner.team/stops/Cstdona3"], ["https://tec.openplanner.team/stops/X604alb", "https://tec.openplanner.team/stops/X604amb"], ["https://tec.openplanner.team/stops/H1ba113b", "https://tec.openplanner.team/stops/H1gh143a"], ["https://tec.openplanner.team/stops/H2bh111b", "https://tec.openplanner.team/stops/H2bh120a"], ["https://tec.openplanner.team/stops/N229agb", "https://tec.openplanner.team/stops/N291aba"], ["https://tec.openplanner.team/stops/X637aba", "https://tec.openplanner.team/stops/X637aqa"], ["https://tec.openplanner.team/stops/H4ru242a", "https://tec.openplanner.team/stops/H4ru242b"], ["https://tec.openplanner.team/stops/N337aga", "https://tec.openplanner.team/stops/N337ahb"], ["https://tec.openplanner.team/stops/X720ada", "https://tec.openplanner.team/stops/X720adb"], ["https://tec.openplanner.team/stops/NL77aga", "https://tec.openplanner.team/stops/NL78ajb"], ["https://tec.openplanner.team/stops/Cptrebe2", "https://tec.openplanner.team/stops/H2ca105b"], ["https://tec.openplanner.team/stops/Bwaakap1", "https://tec.openplanner.team/stops/Bwaakap2"], ["https://tec.openplanner.team/stops/NC44afc", "https://tec.openplanner.team/stops/NC44aha"], ["https://tec.openplanner.team/stops/Lhuderu1", "https://tec.openplanner.team/stops/Lhueg--1"], ["https://tec.openplanner.team/stops/X661awa", "https://tec.openplanner.team/stops/X661aya"], ["https://tec.openplanner.team/stops/LMtcent2", "https://tec.openplanner.team/stops/LMttrou2"], ["https://tec.openplanner.team/stops/N513axb", "https://tec.openplanner.team/stops/N520aea"], ["https://tec.openplanner.team/stops/X788agb", "https://tec.openplanner.team/stops/X789ahb"], ["https://tec.openplanner.team/stops/Lvecase1", "https://tec.openplanner.team/stops/Lvegest2"], ["https://tec.openplanner.team/stops/Cgrbert1", "https://tec.openplanner.team/stops/Cnaplan1"], ["https://tec.openplanner.team/stops/N558amc", "https://tec.openplanner.team/stops/N559aba"], ["https://tec.openplanner.team/stops/X840aea", "https://tec.openplanner.team/stops/X840afb"], ["https://tec.openplanner.team/stops/N505ahb", "https://tec.openplanner.team/stops/N505anb"], ["https://tec.openplanner.team/stops/Lmochan1", "https://tec.openplanner.team/stops/Lmomine1"], ["https://tec.openplanner.team/stops/LHueg--1", "https://tec.openplanner.team/stops/NL73abb"], ["https://tec.openplanner.team/stops/LrTpost1", "https://tec.openplanner.team/stops/LrTpost2"], ["https://tec.openplanner.team/stops/X938adb", "https://tec.openplanner.team/stops/X939aha"], ["https://tec.openplanner.team/stops/Bbgelre2", "https://tec.openplanner.team/stops/Bwavbpi1"], ["https://tec.openplanner.team/stops/LHUtrin1", "https://tec.openplanner.team/stops/LSecomm1"], ["https://tec.openplanner.team/stops/H2hg149b", "https://tec.openplanner.team/stops/H2hg269b"], ["https://tec.openplanner.team/stops/Cflchel5", "https://tec.openplanner.team/stops/NC12aaa"], ["https://tec.openplanner.team/stops/Bnivari1", "https://tec.openplanner.team/stops/Bnivphm1"], ["https://tec.openplanner.team/stops/N145ahb", "https://tec.openplanner.team/stops/N145aia"], ["https://tec.openplanner.team/stops/H4av102b", "https://tec.openplanner.team/stops/H4av102c"], ["https://tec.openplanner.team/stops/H1ht132a", "https://tec.openplanner.team/stops/H1ht132b"], ["https://tec.openplanner.team/stops/H5el105b", "https://tec.openplanner.team/stops/H5el114b"], ["https://tec.openplanner.team/stops/X802abb", "https://tec.openplanner.team/stops/X804aaa"], ["https://tec.openplanner.team/stops/H4co105a", "https://tec.openplanner.team/stops/H4co146b"], ["https://tec.openplanner.team/stops/LOLrafh2", "https://tec.openplanner.team/stops/LSOferr1"], ["https://tec.openplanner.team/stops/H4be107a", "https://tec.openplanner.team/stops/H5bl122b"], ["https://tec.openplanner.team/stops/Bgoemgr1", "https://tec.openplanner.team/stops/Bhakmkr2"], ["https://tec.openplanner.team/stops/LnDrund1", "https://tec.openplanner.team/stops/LnDrund2"], ["https://tec.openplanner.team/stops/X941aba", "https://tec.openplanner.team/stops/X941acc"], ["https://tec.openplanner.team/stops/Csochea1", "https://tec.openplanner.team/stops/Csoforc2"], ["https://tec.openplanner.team/stops/LABvill1", "https://tec.openplanner.team/stops/LBevill2"], ["https://tec.openplanner.team/stops/H1bl104b", "https://tec.openplanner.team/stops/H1bl104c"], ["https://tec.openplanner.team/stops/X621aca", "https://tec.openplanner.team/stops/X621acb"], ["https://tec.openplanner.team/stops/Brixpje2", "https://tec.openplanner.team/stops/Brixpla2"], ["https://tec.openplanner.team/stops/Llgbass2", "https://tec.openplanner.team/stops/Llgfusc4"], ["https://tec.openplanner.team/stops/Cmlcpar1", "https://tec.openplanner.team/stops/Cmlpche1"], ["https://tec.openplanner.team/stops/Cblcen3", "https://tec.openplanner.team/stops/Cblsall1"], ["https://tec.openplanner.team/stops/X669adb", "https://tec.openplanner.team/stops/X669aea"], ["https://tec.openplanner.team/stops/H3bi100a", "https://tec.openplanner.team/stops/H3bi118a"], ["https://tec.openplanner.team/stops/X804abb", "https://tec.openplanner.team/stops/X804bya"], ["https://tec.openplanner.team/stops/H1vt193a", "https://tec.openplanner.team/stops/H1vt193b"], ["https://tec.openplanner.team/stops/N117auc", "https://tec.openplanner.team/stops/N117aud"], ["https://tec.openplanner.team/stops/LAUabat1", "https://tec.openplanner.team/stops/LAUabat2"], ["https://tec.openplanner.team/stops/LBUmara3", "https://tec.openplanner.team/stops/NL30aja"], ["https://tec.openplanner.team/stops/X740aea", "https://tec.openplanner.team/stops/X779aab"], ["https://tec.openplanner.team/stops/N506abb", "https://tec.openplanner.team/stops/N512aeb"], ["https://tec.openplanner.team/stops/Lvtboux2", "https://tec.openplanner.team/stops/Lvtmeun2"], ["https://tec.openplanner.team/stops/Lmibove1", "https://tec.openplanner.team/stops/Lmibove3"], ["https://tec.openplanner.team/stops/Cchba12", "https://tec.openplanner.team/stops/CMsacm2"], ["https://tec.openplanner.team/stops/LAUcent1", "https://tec.openplanner.team/stops/LAUcent2"], ["https://tec.openplanner.team/stops/Lloretr1", "https://tec.openplanner.team/stops/Lloross1"], ["https://tec.openplanner.team/stops/LLecolo1", "https://tec.openplanner.team/stops/X547aja"], ["https://tec.openplanner.team/stops/Cgzchen2", "https://tec.openplanner.team/stops/Cgzha622"], ["https://tec.openplanner.team/stops/LmI36--1", "https://tec.openplanner.team/stops/LmImirf1"], ["https://tec.openplanner.team/stops/LMfbacu2", "https://tec.openplanner.team/stops/LMfsart2"], ["https://tec.openplanner.team/stops/X636aoa", "https://tec.openplanner.team/stops/X648aab"], ["https://tec.openplanner.team/stops/X782aia", "https://tec.openplanner.team/stops/X782ajb"], ["https://tec.openplanner.team/stops/Bsenpeu1", "https://tec.openplanner.team/stops/H2se107a"], ["https://tec.openplanner.team/stops/N260aeb", "https://tec.openplanner.team/stops/N260afb"], ["https://tec.openplanner.team/stops/H4ty295a", "https://tec.openplanner.team/stops/H4ty295c"], ["https://tec.openplanner.team/stops/X902ahb", "https://tec.openplanner.team/stops/X902aka"], ["https://tec.openplanner.team/stops/N242afb", "https://tec.openplanner.team/stops/N251abb"], ["https://tec.openplanner.team/stops/X982bja", "https://tec.openplanner.team/stops/X982bld"], ["https://tec.openplanner.team/stops/Cbuegl1", "https://tec.openplanner.team/stops/Cbugara1"], ["https://tec.openplanner.team/stops/N536aba", "https://tec.openplanner.team/stops/N580aea"], ["https://tec.openplanner.team/stops/LsVgesc1", "https://tec.openplanner.team/stops/LsVlust1"], ["https://tec.openplanner.team/stops/X939agb", "https://tec.openplanner.team/stops/X939aha"], ["https://tec.openplanner.team/stops/Bjodbat2", "https://tec.openplanner.team/stops/Bjodced2"], ["https://tec.openplanner.team/stops/N214adb", "https://tec.openplanner.team/stops/N228aea"], ["https://tec.openplanner.team/stops/Bdlmflo2", "https://tec.openplanner.team/stops/Bdlmgla2"], ["https://tec.openplanner.team/stops/N501ezb", "https://tec.openplanner.team/stops/N501jta"], ["https://tec.openplanner.team/stops/X979ada", "https://tec.openplanner.team/stops/X979aeb"], ["https://tec.openplanner.team/stops/Lhemilm2", "https://tec.openplanner.team/stops/Lhrspi-2"], ["https://tec.openplanner.team/stops/LLApavi1", "https://tec.openplanner.team/stops/LLApavi2"], ["https://tec.openplanner.team/stops/X613abb", "https://tec.openplanner.team/stops/X613acb"], ["https://tec.openplanner.team/stops/X316aca", "https://tec.openplanner.team/stops/X371aaa"], ["https://tec.openplanner.team/stops/N543ahb", "https://tec.openplanner.team/stops/N543alb"], ["https://tec.openplanner.team/stops/Bmlnmbo1", "https://tec.openplanner.team/stops/Bmlnmbo2"], ["https://tec.openplanner.team/stops/X363ada", "https://tec.openplanner.team/stops/X363adb"], ["https://tec.openplanner.team/stops/LSW26--1", "https://tec.openplanner.team/stops/LSWscie1"], ["https://tec.openplanner.team/stops/Bbsifmo1", "https://tec.openplanner.team/stops/Bhtipir3"], ["https://tec.openplanner.team/stops/H4le128a", "https://tec.openplanner.team/stops/H4we134a"], ["https://tec.openplanner.team/stops/NL77aka", "https://tec.openplanner.team/stops/NL77akb"], ["https://tec.openplanner.team/stops/N244aja", "https://tec.openplanner.team/stops/N244alb"], ["https://tec.openplanner.team/stops/LHHindu1", "https://tec.openplanner.team/stops/LHHpt--1"], ["https://tec.openplanner.team/stops/Lmodeni2", "https://tec.openplanner.team/stops/Lmopast2"], ["https://tec.openplanner.team/stops/Blanmde1", "https://tec.openplanner.team/stops/Blanraa1"], ["https://tec.openplanner.team/stops/Lvcdumo1", "https://tec.openplanner.team/stops/Lvchenn2"], ["https://tec.openplanner.team/stops/N506btb", "https://tec.openplanner.team/stops/NL67adb"], ["https://tec.openplanner.team/stops/H4te255b", "https://tec.openplanner.team/stops/H4te258a"], ["https://tec.openplanner.team/stops/Cpcarse2", "https://tec.openplanner.team/stops/Cpcbrig1"], ["https://tec.openplanner.team/stops/Ljemabo1", "https://tec.openplanner.team/stops/Ljewale4"], ["https://tec.openplanner.team/stops/N127aca", "https://tec.openplanner.team/stops/N135bda"], ["https://tec.openplanner.team/stops/X610aba", "https://tec.openplanner.team/stops/X610aea"], ["https://tec.openplanner.team/stops/LeYdorf1", "https://tec.openplanner.team/stops/LeYdorf2"], ["https://tec.openplanner.team/stops/Cplcite1", "https://tec.openplanner.team/stops/Cplstfa2"], ["https://tec.openplanner.team/stops/LeYdepo1", "https://tec.openplanner.team/stops/LeYdepo2"], ["https://tec.openplanner.team/stops/Bcrnpla2", "https://tec.openplanner.team/stops/Bcrnpla3"], ["https://tec.openplanner.team/stops/Cmocime1", "https://tec.openplanner.team/stops/Cmoscap1"], ["https://tec.openplanner.team/stops/N154abb", "https://tec.openplanner.team/stops/N154acb"], ["https://tec.openplanner.team/stops/LLbmalm1", "https://tec.openplanner.team/stops/LLbmalm2"], ["https://tec.openplanner.team/stops/H1gn147b", "https://tec.openplanner.team/stops/H1gn148a"], ["https://tec.openplanner.team/stops/X919ama", "https://tec.openplanner.team/stops/X919ana"], ["https://tec.openplanner.team/stops/NL81aga", "https://tec.openplanner.team/stops/NL81agb"], ["https://tec.openplanner.team/stops/LLeeco-1", "https://tec.openplanner.team/stops/LLemonu1"], ["https://tec.openplanner.team/stops/N505aka", "https://tec.openplanner.team/stops/N505akb"], ["https://tec.openplanner.team/stops/LaLkirc*", "https://tec.openplanner.team/stops/LmAgruf2"], ["https://tec.openplanner.team/stops/N513ata", "https://tec.openplanner.team/stops/N513atb"], ["https://tec.openplanner.team/stops/LLscent2", "https://tec.openplanner.team/stops/LRfcent2"], ["https://tec.openplanner.team/stops/LAmcorn2", "https://tec.openplanner.team/stops/LNHbarr2"], ["https://tec.openplanner.team/stops/X780aea", "https://tec.openplanner.team/stops/X780afb"], ["https://tec.openplanner.team/stops/Bhaldbo1", "https://tec.openplanner.team/stops/Blemmar2"], ["https://tec.openplanner.team/stops/X398aaa", "https://tec.openplanner.team/stops/X398aca"], ["https://tec.openplanner.team/stops/LLrhaut3", "https://tec.openplanner.team/stops/LLrhaut4"], ["https://tec.openplanner.team/stops/X782ama", "https://tec.openplanner.team/stops/X782amb"], ["https://tec.openplanner.team/stops/Cchba03", "https://tec.openplanner.team/stops/Cchba06"], ["https://tec.openplanner.team/stops/X725ata", "https://tec.openplanner.team/stops/X767aia"], ["https://tec.openplanner.team/stops/N506bab", "https://tec.openplanner.team/stops/N506bsa"], ["https://tec.openplanner.team/stops/Clbchba1", "https://tec.openplanner.team/stops/Cthgrat2"], ["https://tec.openplanner.team/stops/X879apa", "https://tec.openplanner.team/stops/X879apb"], ["https://tec.openplanner.team/stops/LESecco2", "https://tec.openplanner.team/stops/LTIcime1"], ["https://tec.openplanner.team/stops/LAMusin1", "https://tec.openplanner.team/stops/LAMweha1"], ["https://tec.openplanner.team/stops/N214aga", "https://tec.openplanner.team/stops/N214agb"], ["https://tec.openplanner.team/stops/N528afa", "https://tec.openplanner.team/stops/N528afc"], ["https://tec.openplanner.team/stops/Lflhott1", "https://tec.openplanner.team/stops/Lflhott2"], ["https://tec.openplanner.team/stops/Lrecite2", "https://tec.openplanner.team/stops/Lreclou1"], ["https://tec.openplanner.team/stops/X747aab", "https://tec.openplanner.team/stops/X754axa"], ["https://tec.openplanner.team/stops/X769ama", "https://tec.openplanner.team/stops/X769aob"], ["https://tec.openplanner.team/stops/Csrcant1", "https://tec.openplanner.team/stops/Csrcarr1"], ["https://tec.openplanner.team/stops/X904ada", "https://tec.openplanner.team/stops/X904afb"], ["https://tec.openplanner.team/stops/N308ala", "https://tec.openplanner.team/stops/N308alb"], ["https://tec.openplanner.team/stops/H4ne134a", "https://tec.openplanner.team/stops/H4ne134b"], ["https://tec.openplanner.team/stops/Bbstchv1", "https://tec.openplanner.team/stops/Bvlvbth2"], ["https://tec.openplanner.team/stops/Bgnvcom1", "https://tec.openplanner.team/stops/Bgnvqve1"], ["https://tec.openplanner.team/stops/Bmsgrco1", "https://tec.openplanner.team/stops/Bmsgrco2"], ["https://tec.openplanner.team/stops/LPLcite1", "https://tec.openplanner.team/stops/LPLmonu2"], ["https://tec.openplanner.team/stops/X627aba", "https://tec.openplanner.team/stops/X627ada"], ["https://tec.openplanner.team/stops/Bsammon2", "https://tec.openplanner.team/stops/Bsampli1"], ["https://tec.openplanner.team/stops/X637ada", "https://tec.openplanner.team/stops/X637aea"], ["https://tec.openplanner.team/stops/H1so139c", "https://tec.openplanner.team/stops/H1so146b"], ["https://tec.openplanner.team/stops/N533aca", "https://tec.openplanner.team/stops/N533aea"], ["https://tec.openplanner.team/stops/X725aef", "https://tec.openplanner.team/stops/X725bca"], ["https://tec.openplanner.team/stops/H5qu141a", "https://tec.openplanner.team/stops/H5qu152a"], ["https://tec.openplanner.team/stops/N365aaa", "https://tec.openplanner.team/stops/N365aba"], ["https://tec.openplanner.team/stops/H1fr122a", "https://tec.openplanner.team/stops/H1fr131a"], ["https://tec.openplanner.team/stops/LBDfran1", "https://tec.openplanner.team/stops/LFFmarc1"], ["https://tec.openplanner.team/stops/Binclon1", "https://tec.openplanner.team/stops/Bopprju1"], ["https://tec.openplanner.team/stops/LFAsauv1", "https://tec.openplanner.team/stops/LFUfleu1"], ["https://tec.openplanner.team/stops/N538aib", "https://tec.openplanner.team/stops/N538ajd"], ["https://tec.openplanner.team/stops/Lflheid1", "https://tec.openplanner.team/stops/Lflprev1"], ["https://tec.openplanner.team/stops/N147aaa", "https://tec.openplanner.team/stops/N147afa"], ["https://tec.openplanner.team/stops/X768abb", "https://tec.openplanner.team/stops/X768ahb"], ["https://tec.openplanner.team/stops/LLYcalv1", "https://tec.openplanner.team/stops/LLYcalv2"], ["https://tec.openplanner.team/stops/Bgntcha1", "https://tec.openplanner.team/stops/Bgntcha2"], ["https://tec.openplanner.team/stops/Ccocoup2", "https://tec.openplanner.team/stops/Ccostan1"], ["https://tec.openplanner.team/stops/H5ar100a", "https://tec.openplanner.team/stops/H5ar104a"], ["https://tec.openplanner.team/stops/H3br107a", "https://tec.openplanner.team/stops/H3br122a"], ["https://tec.openplanner.team/stops/X899aab", "https://tec.openplanner.team/stops/X899aea"], ["https://tec.openplanner.team/stops/N521aia", "https://tec.openplanner.team/stops/N521apb"], ["https://tec.openplanner.team/stops/X919aja", "https://tec.openplanner.team/stops/X919ajc"], ["https://tec.openplanner.team/stops/Bwancal2", "https://tec.openplanner.team/stops/NL75aca"], ["https://tec.openplanner.team/stops/LSMpoin1", "https://tec.openplanner.team/stops/LSMtarg2"], ["https://tec.openplanner.team/stops/Bqueaga1", "https://tec.openplanner.team/stops/Bquecja1"], ["https://tec.openplanner.team/stops/Lfljupi1", "https://tec.openplanner.team/stops/Lrecroi2"], ["https://tec.openplanner.team/stops/X222adc", "https://tec.openplanner.team/stops/X222add"], ["https://tec.openplanner.team/stops/Bmrshan2", "https://tec.openplanner.team/stops/Bplnegl2"], ["https://tec.openplanner.team/stops/Cnalava2", "https://tec.openplanner.team/stops/Cnalava3"], ["https://tec.openplanner.team/stops/Borbod91", "https://tec.openplanner.team/stops/Borbod92"], ["https://tec.openplanner.team/stops/X850ana", "https://tec.openplanner.team/stops/X850anb"], ["https://tec.openplanner.team/stops/LNAplac2", "https://tec.openplanner.team/stops/LSSfrai2"], ["https://tec.openplanner.team/stops/LbO52--1", "https://tec.openplanner.team/stops/LmObahn*"], ["https://tec.openplanner.team/stops/Bfelequ1", "https://tec.openplanner.team/stops/Bfelequ2"], ["https://tec.openplanner.team/stops/Bwlhpmt1", "https://tec.openplanner.team/stops/Bwlhpmt2"], ["https://tec.openplanner.team/stops/H4bf107b", "https://tec.openplanner.team/stops/H4bn174a"], ["https://tec.openplanner.team/stops/N502abb", "https://tec.openplanner.team/stops/N510abb"], ["https://tec.openplanner.team/stops/LClberw2", "https://tec.openplanner.team/stops/LLC170-2"], ["https://tec.openplanner.team/stops/Bmrlhan1", "https://tec.openplanner.team/stops/Bmrlhau2"], ["https://tec.openplanner.team/stops/LNCmele1", "https://tec.openplanner.team/stops/LRR2egl1"], ["https://tec.openplanner.team/stops/Bcrncor1", "https://tec.openplanner.team/stops/Bcrngat1"], ["https://tec.openplanner.team/stops/N501afb", "https://tec.openplanner.team/stops/N503aca"], ["https://tec.openplanner.team/stops/LdUespe1", "https://tec.openplanner.team/stops/LeSkreu2"], ["https://tec.openplanner.team/stops/Lhrabho1", "https://tec.openplanner.team/stops/Lwaeau-2"], ["https://tec.openplanner.team/stops/X925aea", "https://tec.openplanner.team/stops/X982bvb"], ["https://tec.openplanner.team/stops/LBiberg1", "https://tec.openplanner.team/stops/LBiroch1"], ["https://tec.openplanner.team/stops/Cmopn4", "https://tec.openplanner.team/stops/Cmosaba1"], ["https://tec.openplanner.team/stops/H2hg154b", "https://tec.openplanner.team/stops/H2hg154e"], ["https://tec.openplanner.team/stops/NL72aaa", "https://tec.openplanner.team/stops/NL76adb"], ["https://tec.openplanner.team/stops/LLrfont1", "https://tec.openplanner.team/stops/LLrmeno1"], ["https://tec.openplanner.team/stops/X765adb", "https://tec.openplanner.team/stops/X765aeb"], ["https://tec.openplanner.team/stops/H4fo116a", "https://tec.openplanner.team/stops/H4fo117a"], ["https://tec.openplanner.team/stops/LLiforg1", "https://tec.openplanner.team/stops/LLirout1"], ["https://tec.openplanner.team/stops/H4au100a", "https://tec.openplanner.team/stops/H4ea134b"], ["https://tec.openplanner.team/stops/X801bdd", "https://tec.openplanner.team/stops/X801bea"], ["https://tec.openplanner.team/stops/Cdadest1", "https://tec.openplanner.team/stops/CMpige1"], ["https://tec.openplanner.team/stops/LFFeg--2", "https://tec.openplanner.team/stops/LFFmagr1"], ["https://tec.openplanner.team/stops/Cmygrbr3", "https://tec.openplanner.team/stops/Cmyoasi1"], ["https://tec.openplanner.team/stops/N501coa", "https://tec.openplanner.team/stops/N501csa"], ["https://tec.openplanner.team/stops/X888afb", "https://tec.openplanner.team/stops/X897afa"], ["https://tec.openplanner.team/stops/H4cl112a", "https://tec.openplanner.team/stops/H4cl114b"], ["https://tec.openplanner.team/stops/Bbgnpla1", "https://tec.openplanner.team/stops/N530aea"], ["https://tec.openplanner.team/stops/Lagcolo1", "https://tec.openplanner.team/stops/LTIp%C3%A9pi2"], ["https://tec.openplanner.team/stops/Cbzfrom1", "https://tec.openplanner.team/stops/Cluplve4"], ["https://tec.openplanner.team/stops/Llgauxc1", "https://tec.openplanner.team/stops/Llgauxc2"], ["https://tec.openplanner.team/stops/LXHeg--1", "https://tec.openplanner.team/stops/LXHeg--2"], ["https://tec.openplanner.team/stops/X908ahb", "https://tec.openplanner.team/stops/X910aba"], ["https://tec.openplanner.team/stops/X878aca", "https://tec.openplanner.team/stops/X878adb"], ["https://tec.openplanner.team/stops/Bsdafra2", "https://tec.openplanner.team/stops/Bsdapir1"], ["https://tec.openplanner.team/stops/Bgnpgen2", "https://tec.openplanner.team/stops/Bgnppra1"], ["https://tec.openplanner.team/stops/X639akb", "https://tec.openplanner.team/stops/X639anb"], ["https://tec.openplanner.team/stops/LPbpl--2", "https://tec.openplanner.team/stops/LPbusin1"], ["https://tec.openplanner.team/stops/X876adb", "https://tec.openplanner.team/stops/X876afa"], ["https://tec.openplanner.team/stops/H1gh149b", "https://tec.openplanner.team/stops/H1ms930a"], ["https://tec.openplanner.team/stops/N352ada", "https://tec.openplanner.team/stops/N352afa"], ["https://tec.openplanner.team/stops/X318ada", "https://tec.openplanner.team/stops/X364acb"], ["https://tec.openplanner.team/stops/Cgxptt2", "https://tec.openplanner.team/stops/CMmorg1"], ["https://tec.openplanner.team/stops/X620aaa", "https://tec.openplanner.team/stops/X620abb"], ["https://tec.openplanner.team/stops/H1ha201a", "https://tec.openplanner.team/stops/H1ob330a"], ["https://tec.openplanner.team/stops/X660aga", "https://tec.openplanner.team/stops/X672aha"], ["https://tec.openplanner.team/stops/Lscstan2", "https://tec.openplanner.team/stops/Lscstan3"], ["https://tec.openplanner.team/stops/H4ae100b", "https://tec.openplanner.team/stops/H4or114b"], ["https://tec.openplanner.team/stops/LESathe2", "https://tec.openplanner.team/stops/LESpont2"], ["https://tec.openplanner.team/stops/Lsefore1", "https://tec.openplanner.team/stops/Lsestap1"], ["https://tec.openplanner.team/stops/N120aea", "https://tec.openplanner.team/stops/N120afa"], ["https://tec.openplanner.team/stops/LlOdrei1", "https://tec.openplanner.team/stops/LnDthel2"], ["https://tec.openplanner.team/stops/Cna6che2", "https://tec.openplanner.team/stops/Cnapetr1"], ["https://tec.openplanner.team/stops/X783aab", "https://tec.openplanner.team/stops/X789aib"], ["https://tec.openplanner.team/stops/H4ev125a", "https://tec.openplanner.team/stops/H4hx123b"], ["https://tec.openplanner.team/stops/Lgdblom2", "https://tec.openplanner.team/stops/Lgdstoc1"], ["https://tec.openplanner.team/stops/N528abb", "https://tec.openplanner.team/stops/N528afb"], ["https://tec.openplanner.team/stops/X823afa", "https://tec.openplanner.team/stops/X823afc"], ["https://tec.openplanner.team/stops/X631aaa", "https://tec.openplanner.team/stops/X644aea"], ["https://tec.openplanner.team/stops/LHEcruc1", "https://tec.openplanner.team/stops/LHEelva1"], ["https://tec.openplanner.team/stops/LHDpota1", "https://tec.openplanner.team/stops/LLmetat2"], ["https://tec.openplanner.team/stops/Cmlbrac2", "https://tec.openplanner.team/stops/Cmlcons1"], ["https://tec.openplanner.team/stops/H4le128b", "https://tec.openplanner.team/stops/H4ry133a"], ["https://tec.openplanner.team/stops/LFAwale1", "https://tec.openplanner.team/stops/LFAwale2"], ["https://tec.openplanner.team/stops/N565aba", "https://tec.openplanner.team/stops/N565ada"], ["https://tec.openplanner.team/stops/Btubhoq1", "https://tec.openplanner.team/stops/Btubmar1"], ["https://tec.openplanner.team/stops/X725aja", "https://tec.openplanner.team/stops/X725bga"], ["https://tec.openplanner.team/stops/H1vg358b", "https://tec.openplanner.team/stops/H1vs144a"], ["https://tec.openplanner.team/stops/X902acb", "https://tec.openplanner.team/stops/X902atb"], ["https://tec.openplanner.team/stops/Cnadrev2", "https://tec.openplanner.team/stops/Cnahous2"], ["https://tec.openplanner.team/stops/X982adb", "https://tec.openplanner.team/stops/X982aeb"], ["https://tec.openplanner.team/stops/N534bnh", "https://tec.openplanner.team/stops/N534cbg"], ["https://tec.openplanner.team/stops/X725agb", "https://tec.openplanner.team/stops/X725aib"], ["https://tec.openplanner.team/stops/H2sb227a", "https://tec.openplanner.team/stops/H2sb227b"], ["https://tec.openplanner.team/stops/LTiforg2", "https://tec.openplanner.team/stops/LTiterr2"], ["https://tec.openplanner.team/stops/LJSforg1", "https://tec.openplanner.team/stops/Lpepano2"], ["https://tec.openplanner.team/stops/N564afb", "https://tec.openplanner.team/stops/N585aha"], ["https://tec.openplanner.team/stops/LAvchpl1", "https://tec.openplanner.team/stops/LAvrout1"], ["https://tec.openplanner.team/stops/Ccicloc2", "https://tec.openplanner.team/stops/Clvchen2"], ["https://tec.openplanner.team/stops/LTicent2", "https://tec.openplanner.team/stops/LTiec--1"], ["https://tec.openplanner.team/stops/X788acb", "https://tec.openplanner.team/stops/X789ahb"], ["https://tec.openplanner.team/stops/X547ahb", "https://tec.openplanner.team/stops/X547ana"], ["https://tec.openplanner.team/stops/H4mo145b", "https://tec.openplanner.team/stops/H4mo159a"], ["https://tec.openplanner.team/stops/LDaeg--2", "https://tec.openplanner.team/stops/LDapota2"], ["https://tec.openplanner.team/stops/X601aud", "https://tec.openplanner.team/stops/X601ava"], ["https://tec.openplanner.team/stops/Blsmbfe1", "https://tec.openplanner.team/stops/Blsmcha1"], ["https://tec.openplanner.team/stops/LPLhest1", "https://tec.openplanner.team/stops/LRRcole1"], ["https://tec.openplanner.team/stops/H4ep128b", "https://tec.openplanner.team/stops/H4ht173b"], ["https://tec.openplanner.team/stops/X896agb", "https://tec.openplanner.team/stops/X897apa"], ["https://tec.openplanner.team/stops/X902axa", "https://tec.openplanner.team/stops/X903aab"], ["https://tec.openplanner.team/stops/X907aeb", "https://tec.openplanner.team/stops/X907aha"], ["https://tec.openplanner.team/stops/H4ty295b", "https://tec.openplanner.team/stops/H4ty295c"], ["https://tec.openplanner.team/stops/X908aab", "https://tec.openplanner.team/stops/X955adb"], ["https://tec.openplanner.team/stops/H1lb138a", "https://tec.openplanner.team/stops/H1lb139b"], ["https://tec.openplanner.team/stops/X615acb", "https://tec.openplanner.team/stops/X615ana"], ["https://tec.openplanner.team/stops/H3lr110b", "https://tec.openplanner.team/stops/H3lr117b"], ["https://tec.openplanner.team/stops/LwYneue2", "https://tec.openplanner.team/stops/LwYnr262"], ["https://tec.openplanner.team/stops/H4bc101c", "https://tec.openplanner.team/stops/H4tu172c"], ["https://tec.openplanner.team/stops/Bdlmgla1", "https://tec.openplanner.team/stops/Bdlmgla3"], ["https://tec.openplanner.team/stops/N563amb", "https://tec.openplanner.team/stops/N563anb"], ["https://tec.openplanner.team/stops/Cgoclad1", "https://tec.openplanner.team/stops/Cgostex1"], ["https://tec.openplanner.team/stops/Ctrrpla2", "https://tec.openplanner.team/stops/Ctrrpla4"], ["https://tec.openplanner.team/stops/X804aoa", "https://tec.openplanner.team/stops/X804btb"], ["https://tec.openplanner.team/stops/X818ahb", "https://tec.openplanner.team/stops/X818aia"], ["https://tec.openplanner.team/stops/X607aeb", "https://tec.openplanner.team/stops/X607aga"], ["https://tec.openplanner.team/stops/LnEleje1", "https://tec.openplanner.team/stops/LnEleje2"], ["https://tec.openplanner.team/stops/X616afb", "https://tec.openplanner.team/stops/X624aeb"], ["https://tec.openplanner.team/stops/H2bh117b", "https://tec.openplanner.team/stops/H2lc146a"], ["https://tec.openplanner.team/stops/Lghcoqs1", "https://tec.openplanner.team/stops/Lghprea1"], ["https://tec.openplanner.team/stops/Cmqbasv2", "https://tec.openplanner.team/stops/H4ar101a"], ["https://tec.openplanner.team/stops/N562bma", "https://tec.openplanner.team/stops/N562boa"], ["https://tec.openplanner.team/stops/Lbrfoid4", "https://tec.openplanner.team/stops/Lbrresi2"], ["https://tec.openplanner.team/stops/N522aub", "https://tec.openplanner.team/stops/N529aeb"], ["https://tec.openplanner.team/stops/H1al146a", "https://tec.openplanner.team/stops/H1eq117a"], ["https://tec.openplanner.team/stops/Lhrgall2", "https://tec.openplanner.team/stops/Lhrmare1"], ["https://tec.openplanner.team/stops/Lceprog2", "https://tec.openplanner.team/stops/Lgrcral1"], ["https://tec.openplanner.team/stops/X942abe", "https://tec.openplanner.team/stops/X942aga"], ["https://tec.openplanner.team/stops/H4to136b", "https://tec.openplanner.team/stops/H4to139a"], ["https://tec.openplanner.team/stops/Craappa2", "https://tec.openplanner.team/stops/Cradado2"], ["https://tec.openplanner.team/stops/Lghecol*", "https://tec.openplanner.team/stops/Lghwass2"], ["https://tec.openplanner.team/stops/N135aib", "https://tec.openplanner.team/stops/N135alb"], ["https://tec.openplanner.team/stops/X781acb", "https://tec.openplanner.team/stops/X781adb"], ["https://tec.openplanner.team/stops/N261aga", "https://tec.openplanner.team/stops/N261agb"], ["https://tec.openplanner.team/stops/H4lz155a", "https://tec.openplanner.team/stops/H4lz158a"], ["https://tec.openplanner.team/stops/X619ajb", "https://tec.openplanner.team/stops/X620ahb"], ["https://tec.openplanner.team/stops/H1gg145a", "https://tec.openplanner.team/stops/H1gg145b"], ["https://tec.openplanner.team/stops/N311aea", "https://tec.openplanner.team/stops/N368aaa"], ["https://tec.openplanner.team/stops/X901afa", "https://tec.openplanner.team/stops/X901bga"], ["https://tec.openplanner.team/stops/Croheig1", "https://tec.openplanner.team/stops/Croheig2"], ["https://tec.openplanner.team/stops/H1gy114a", "https://tec.openplanner.team/stops/H1gy116a"], ["https://tec.openplanner.team/stops/X398aab", "https://tec.openplanner.team/stops/X999alb"], ["https://tec.openplanner.team/stops/Lghomni1", "https://tec.openplanner.team/stops/Lghpara2"], ["https://tec.openplanner.team/stops/LBSnouw2", "https://tec.openplanner.team/stops/LBSpail4"], ["https://tec.openplanner.team/stops/N563aob", "https://tec.openplanner.team/stops/N570aca"], ["https://tec.openplanner.team/stops/N201aoc", "https://tec.openplanner.team/stops/N202afb"], ["https://tec.openplanner.team/stops/Crolach1", "https://tec.openplanner.team/stops/Crowall1"], ["https://tec.openplanner.team/stops/Boplham2", "https://tec.openplanner.team/stops/Boplsma3"], ["https://tec.openplanner.team/stops/X752abb", "https://tec.openplanner.team/stops/X752acb"], ["https://tec.openplanner.team/stops/X731aca", "https://tec.openplanner.team/stops/X731acb"], ["https://tec.openplanner.team/stops/Cfnegli2", "https://tec.openplanner.team/stops/Cfnsenz2"], ["https://tec.openplanner.team/stops/X653aba", "https://tec.openplanner.team/stops/X667aab"], ["https://tec.openplanner.team/stops/X641aya", "https://tec.openplanner.team/stops/X673aaa"], ["https://tec.openplanner.team/stops/Cgythio1", "https://tec.openplanner.team/stops/Cgytrie2"], ["https://tec.openplanner.team/stops/LHDmc--2", "https://tec.openplanner.team/stops/LMOpiss1"], ["https://tec.openplanner.team/stops/LORdtec*", "https://tec.openplanner.team/stops/LORec--*"], ["https://tec.openplanner.team/stops/X770aga", "https://tec.openplanner.team/stops/X773aja"], ["https://tec.openplanner.team/stops/N501gka", "https://tec.openplanner.team/stops/N501llb"], ["https://tec.openplanner.team/stops/N118abb", "https://tec.openplanner.team/stops/N118axa"], ["https://tec.openplanner.team/stops/LCFcafe1", "https://tec.openplanner.team/stops/LCPbatt2"], ["https://tec.openplanner.team/stops/N506bob", "https://tec.openplanner.team/stops/N506bsb"], ["https://tec.openplanner.team/stops/Bmrqpla2", "https://tec.openplanner.team/stops/H1mk108b"], ["https://tec.openplanner.team/stops/X788aca", "https://tec.openplanner.team/stops/X788aeb"], ["https://tec.openplanner.team/stops/Bcerpco1", "https://tec.openplanner.team/stops/Blasbgc1"], ["https://tec.openplanner.team/stops/X879ada", "https://tec.openplanner.team/stops/X879agb"], ["https://tec.openplanner.team/stops/Lsefori2", "https://tec.openplanner.team/stops/Lseprog1"], ["https://tec.openplanner.team/stops/LHVeg--1", "https://tec.openplanner.team/stops/LJAverv2"], ["https://tec.openplanner.team/stops/Lboastr1", "https://tec.openplanner.team/stops/Lbomc--8"], ["https://tec.openplanner.team/stops/LbAhenk2", "https://tec.openplanner.team/stops/LbAhull1"], ["https://tec.openplanner.team/stops/Llgbois2", "https://tec.openplanner.team/stops/Llgverg2"], ["https://tec.openplanner.team/stops/N115abb", "https://tec.openplanner.team/stops/N115aea"], ["https://tec.openplanner.team/stops/Lhrchar3", "https://tec.openplanner.team/stops/Llghori1"], ["https://tec.openplanner.team/stops/H1ca106a", "https://tec.openplanner.team/stops/H1th183b"], ["https://tec.openplanner.team/stops/Lgrcoll1", "https://tec.openplanner.team/stops/Lgrcoll2"], ["https://tec.openplanner.team/stops/Bnivfle2", "https://tec.openplanner.team/stops/Bnivsci2"], ["https://tec.openplanner.team/stops/X982aha", "https://tec.openplanner.team/stops/X982bfb"], ["https://tec.openplanner.team/stops/H1so145b", "https://tec.openplanner.team/stops/H1so146b"], ["https://tec.openplanner.team/stops/NL81aea", "https://tec.openplanner.team/stops/NL81afa"], ["https://tec.openplanner.team/stops/NH01aaa", "https://tec.openplanner.team/stops/NH01ana"], ["https://tec.openplanner.team/stops/N214aeb", "https://tec.openplanner.team/stops/N214afb"], ["https://tec.openplanner.team/stops/Cchtiro3", "https://tec.openplanner.team/stops/Cmlecha1"], ["https://tec.openplanner.team/stops/N501aja", "https://tec.openplanner.team/stops/N501ajb"], ["https://tec.openplanner.team/stops/H1gg116a", "https://tec.openplanner.team/stops/H1gg117a"], ["https://tec.openplanner.team/stops/Cctrobe1", "https://tec.openplanner.team/stops/NC11aib"], ["https://tec.openplanner.team/stops/N501aib", "https://tec.openplanner.team/stops/N501bub"], ["https://tec.openplanner.team/stops/H2hl111a", "https://tec.openplanner.team/stops/H2sv216a"], ["https://tec.openplanner.team/stops/N131ahb", "https://tec.openplanner.team/stops/N132aeb"], ["https://tec.openplanner.team/stops/Bbonbcr1", "https://tec.openplanner.team/stops/Bbonegl2"], ["https://tec.openplanner.team/stops/N558ajb", "https://tec.openplanner.team/stops/N558amd"], ["https://tec.openplanner.team/stops/H1et100b", "https://tec.openplanner.team/stops/H1hh117b"], ["https://tec.openplanner.team/stops/Bcsepes2", "https://tec.openplanner.team/stops/Bmoucoq1"], ["https://tec.openplanner.team/stops/Borblim2", "https://tec.openplanner.team/stops/Borbode2"], ["https://tec.openplanner.team/stops/LkTweih1", "https://tec.openplanner.team/stops/LkTweih2"], ["https://tec.openplanner.team/stops/X601afb", "https://tec.openplanner.team/stops/X601arb"], ["https://tec.openplanner.team/stops/LsVgrun1", "https://tec.openplanner.team/stops/LsVviel2"], ["https://tec.openplanner.team/stops/LDAalbe1", "https://tec.openplanner.team/stops/LDAandr2"], ["https://tec.openplanner.team/stops/LnE79--1", "https://tec.openplanner.team/stops/LnEkirc3"], ["https://tec.openplanner.team/stops/H1mm128a", "https://tec.openplanner.team/stops/H1vb148b"], ["https://tec.openplanner.team/stops/LLRgdma1", "https://tec.openplanner.team/stops/LLRptma1"], ["https://tec.openplanner.team/stops/LBEbelf2", "https://tec.openplanner.team/stops/LBEtilf2"], ["https://tec.openplanner.team/stops/X638akb", "https://tec.openplanner.team/stops/X638aqa"], ["https://tec.openplanner.team/stops/N146ada", "https://tec.openplanner.team/stops/N146afb"], ["https://tec.openplanner.team/stops/Bovecha2", "https://tec.openplanner.team/stops/Bovetdo2"], ["https://tec.openplanner.team/stops/X770aab", "https://tec.openplanner.team/stops/X771alb"], ["https://tec.openplanner.team/stops/X662ana", "https://tec.openplanner.team/stops/X662anb"], ["https://tec.openplanner.team/stops/Cluchbl1", "https://tec.openplanner.team/stops/Cluchbl2"], ["https://tec.openplanner.team/stops/Cchprun1", "https://tec.openplanner.team/stops/Cchriga2"], ["https://tec.openplanner.team/stops/NL76aka", "https://tec.openplanner.team/stops/NL76bca"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lpevove1"], ["https://tec.openplanner.team/stops/H2ll176c", "https://tec.openplanner.team/stops/H2ll195b"], ["https://tec.openplanner.team/stops/LLRvill1", "https://tec.openplanner.team/stops/LVPcrok2"], ["https://tec.openplanner.team/stops/LMisour2", "https://tec.openplanner.team/stops/LSTmeiz1"], ["https://tec.openplanner.team/stops/H4mb138b", "https://tec.openplanner.team/stops/H4qu230c"], ["https://tec.openplanner.team/stops/LmSdorf2", "https://tec.openplanner.team/stops/LmSluxh1"], ["https://tec.openplanner.team/stops/Bbstdpa1", "https://tec.openplanner.team/stops/Blpgeco2"], ["https://tec.openplanner.team/stops/Brsggar1", "https://tec.openplanner.team/stops/Brsgter1"], ["https://tec.openplanner.team/stops/LLUadze1", "https://tec.openplanner.team/stops/LLUdeig2"], ["https://tec.openplanner.team/stops/LNCecdo1", "https://tec.openplanner.team/stops/Lsedavy2"], ["https://tec.openplanner.team/stops/X601cva", "https://tec.openplanner.team/stops/X601cxa"], ["https://tec.openplanner.team/stops/H5qu156b", "https://tec.openplanner.team/stops/H5qu182b"], ["https://tec.openplanner.team/stops/Bwaab121", "https://tec.openplanner.team/stops/Bwaakap2"], ["https://tec.openplanner.team/stops/Cmcbriq2", "https://tec.openplanner.team/stops/Cmcwir2"], ["https://tec.openplanner.team/stops/H4do106a", "https://tec.openplanner.team/stops/H4do106b"], ["https://tec.openplanner.team/stops/Bhoemel2", "https://tec.openplanner.team/stops/Bovejei1"], ["https://tec.openplanner.team/stops/H1wi150a", "https://tec.openplanner.team/stops/H1wi155b"], ["https://tec.openplanner.team/stops/Btslegl2", "https://tec.openplanner.team/stops/Btsllbv2"], ["https://tec.openplanner.team/stops/H4ty278a", "https://tec.openplanner.team/stops/H4ty278b"], ["https://tec.openplanner.team/stops/X992aab", "https://tec.openplanner.team/stops/X992afb"], ["https://tec.openplanner.team/stops/H3bi112a", "https://tec.openplanner.team/stops/H3bi112b"], ["https://tec.openplanner.team/stops/Bgoesch1", "https://tec.openplanner.team/stops/Bgoewat2"], ["https://tec.openplanner.team/stops/Caccent1", "https://tec.openplanner.team/stops/NC24aeb"], ["https://tec.openplanner.team/stops/H1bl100a", "https://tec.openplanner.team/stops/H1pd146a"], ["https://tec.openplanner.team/stops/N235aca", "https://tec.openplanner.team/stops/N235acb"], ["https://tec.openplanner.team/stops/X614awa", "https://tec.openplanner.team/stops/X614awb"], ["https://tec.openplanner.team/stops/LDLbaye1", "https://tec.openplanner.team/stops/LDLbeau1"], ["https://tec.openplanner.team/stops/N232aoa", "https://tec.openplanner.team/stops/N251aaa"], ["https://tec.openplanner.team/stops/LPLc49-2", "https://tec.openplanner.team/stops/LRRtrix1"], ["https://tec.openplanner.team/stops/Llgfran2", "https://tec.openplanner.team/stops/LlgguilB"], ["https://tec.openplanner.team/stops/H1bu143b", "https://tec.openplanner.team/stops/H1mg109a"], ["https://tec.openplanner.team/stops/H2sv214b", "https://tec.openplanner.team/stops/H2sv221a"], ["https://tec.openplanner.team/stops/H2sb221a", "https://tec.openplanner.team/stops/H2sb238a"], ["https://tec.openplanner.team/stops/LHumoul2", "https://tec.openplanner.team/stops/LMfbacu2"], ["https://tec.openplanner.team/stops/LSCeg--1", "https://tec.openplanner.team/stops/LSChane1"], ["https://tec.openplanner.team/stops/X982atb", "https://tec.openplanner.team/stops/X982axb"], ["https://tec.openplanner.team/stops/Bcrnnca1", "https://tec.openplanner.team/stops/Bcrnnca2"], ["https://tec.openplanner.team/stops/Csesabo1", "https://tec.openplanner.team/stops/N424aca"], ["https://tec.openplanner.team/stops/Lveensi2", "https://tec.openplanner.team/stops/Lvegc-1*"], ["https://tec.openplanner.team/stops/H4ae132d", "https://tec.openplanner.team/stops/H4ea127a"], ["https://tec.openplanner.team/stops/X747aka", "https://tec.openplanner.team/stops/X754aeb"], ["https://tec.openplanner.team/stops/H4ch113b", "https://tec.openplanner.team/stops/H4vx360a"], ["https://tec.openplanner.team/stops/LnEmett2", "https://tec.openplanner.team/stops/LsVhunn2"], ["https://tec.openplanner.team/stops/Laghetr1", "https://tec.openplanner.team/stops/Lkiblan2"], ["https://tec.openplanner.team/stops/N423aba", "https://tec.openplanner.team/stops/N425aga"], ["https://tec.openplanner.team/stops/Canvane2", "https://tec.openplanner.team/stops/H2an100b"], ["https://tec.openplanner.team/stops/Bbxlmid1", "https://tec.openplanner.team/stops/Bhaldbo1"], ["https://tec.openplanner.team/stops/Barcsta2", "https://tec.openplanner.team/stops/Bpecvme1"], ["https://tec.openplanner.team/stops/X607adb", "https://tec.openplanner.team/stops/X607aib"], ["https://tec.openplanner.team/stops/N521aca", "https://tec.openplanner.team/stops/N521aea"], ["https://tec.openplanner.team/stops/Bglacsr1", "https://tec.openplanner.team/stops/Bmrsefr1"], ["https://tec.openplanner.team/stops/H1ba100a", "https://tec.openplanner.team/stops/H1ba103a"], ["https://tec.openplanner.team/stops/N101ajb", "https://tec.openplanner.team/stops/N116aab"], ["https://tec.openplanner.team/stops/X922aea", "https://tec.openplanner.team/stops/X922akb"], ["https://tec.openplanner.team/stops/X354aga", "https://tec.openplanner.team/stops/X354agb"], ["https://tec.openplanner.team/stops/Blincal1", "https://tec.openplanner.team/stops/Bolgfon2"], ["https://tec.openplanner.team/stops/LHUchin*", "https://tec.openplanner.team/stops/NL80aua"], ["https://tec.openplanner.team/stops/X912aca", "https://tec.openplanner.team/stops/X912aea"], ["https://tec.openplanner.team/stops/X999alb", "https://tec.openplanner.team/stops/X999asa"], ["https://tec.openplanner.team/stops/N525aia", "https://tec.openplanner.team/stops/N525aib"], ["https://tec.openplanner.team/stops/X734aaa", "https://tec.openplanner.team/stops/X735aab"], ["https://tec.openplanner.team/stops/Brixga13", "https://tec.openplanner.team/stops/Brixpje1"], ["https://tec.openplanner.team/stops/X651aga", "https://tec.openplanner.team/stops/X669aaa"], ["https://tec.openplanner.team/stops/X750apb", "https://tec.openplanner.team/stops/X750blb"], ["https://tec.openplanner.team/stops/LVMborl2", "https://tec.openplanner.team/stops/LVMrout2"], ["https://tec.openplanner.team/stops/Llmcoop1", "https://tec.openplanner.team/stops/Lprhodi1"], ["https://tec.openplanner.team/stops/LDArich2", "https://tec.openplanner.team/stops/LFethie2"], ["https://tec.openplanner.team/stops/N506aga", "https://tec.openplanner.team/stops/N506agb"], ["https://tec.openplanner.team/stops/H2bh103a", "https://tec.openplanner.team/stops/H2bh111a"], ["https://tec.openplanner.team/stops/Lhehoux1", "https://tec.openplanner.team/stops/Lhelait1"], ["https://tec.openplanner.team/stops/H2ca100b", "https://tec.openplanner.team/stops/H2ca108a"], ["https://tec.openplanner.team/stops/NL72ada", "https://tec.openplanner.team/stops/NL72adb"], ["https://tec.openplanner.team/stops/X837aga", "https://tec.openplanner.team/stops/X837aib"], ["https://tec.openplanner.team/stops/N122ada", "https://tec.openplanner.team/stops/N122adb"], ["https://tec.openplanner.team/stops/N538ada", "https://tec.openplanner.team/stops/N542aia"], ["https://tec.openplanner.team/stops/X750boa", "https://tec.openplanner.team/stops/X777acb"], ["https://tec.openplanner.team/stops/N252aaa", "https://tec.openplanner.team/stops/N252aab"], ["https://tec.openplanner.team/stops/H4ty273a", "https://tec.openplanner.team/stops/H4ty273b"], ["https://tec.openplanner.team/stops/H4ma398b", "https://tec.openplanner.team/stops/H4oq409a"], ["https://tec.openplanner.team/stops/H1wa147b", "https://tec.openplanner.team/stops/H1wa150a"], ["https://tec.openplanner.team/stops/Btlbcul1", "https://tec.openplanner.team/stops/Btlbgla1"], ["https://tec.openplanner.team/stops/LEnchan2", "https://tec.openplanner.team/stops/LEntrix2"], ["https://tec.openplanner.team/stops/X595aca", "https://tec.openplanner.team/stops/X595agb"], ["https://tec.openplanner.team/stops/H4he105a", "https://tec.openplanner.team/stops/H4he106a"], ["https://tec.openplanner.team/stops/Bbuztai1", "https://tec.openplanner.team/stops/Bnivbng2"], ["https://tec.openplanner.team/stops/LOunebl1", "https://tec.openplanner.team/stops/X982abb"], ["https://tec.openplanner.team/stops/H4be107a", "https://tec.openplanner.team/stops/H4be107b"], ["https://tec.openplanner.team/stops/X982aeb", "https://tec.openplanner.team/stops/X982afb"], ["https://tec.openplanner.team/stops/Bosqgar1", "https://tec.openplanner.team/stops/Bosqpco2"], ["https://tec.openplanner.team/stops/Lbogonh1", "https://tec.openplanner.team/stops/Lbogonh2"], ["https://tec.openplanner.team/stops/N501dwb", "https://tec.openplanner.team/stops/N501kea"], ["https://tec.openplanner.team/stops/X641ata", "https://tec.openplanner.team/stops/X641atb"], ["https://tec.openplanner.team/stops/LBXhacb2", "https://tec.openplanner.team/stops/LMEeg--1"], ["https://tec.openplanner.team/stops/X999aja", "https://tec.openplanner.team/stops/X999apb"], ["https://tec.openplanner.team/stops/N351amb", "https://tec.openplanner.team/stops/N351avb"], ["https://tec.openplanner.team/stops/LCvmonu1", "https://tec.openplanner.team/stops/LLVe75-1"], ["https://tec.openplanner.team/stops/Llghong2", "https://tec.openplanner.team/stops/Llgjean1"], ["https://tec.openplanner.team/stops/LROhael1", "https://tec.openplanner.team/stops/LROhael2"], ["https://tec.openplanner.team/stops/LoDschu1", "https://tec.openplanner.team/stops/LoDulf-2"], ["https://tec.openplanner.team/stops/Lgdhura1", "https://tec.openplanner.team/stops/LMhvina1"], ["https://tec.openplanner.team/stops/Cjuecha1", "https://tec.openplanner.team/stops/Cjuruni2"], ["https://tec.openplanner.team/stops/N118acc", "https://tec.openplanner.team/stops/N118acd"], ["https://tec.openplanner.team/stops/Cjucpui2", "https://tec.openplanner.team/stops/Cmaacac1"], ["https://tec.openplanner.team/stops/H2ch103b", "https://tec.openplanner.team/stops/H2ch103c"], ["https://tec.openplanner.team/stops/Ltihorl2", "https://tec.openplanner.team/stops/Ltithie1"], ["https://tec.openplanner.team/stops/H4wn123a", "https://tec.openplanner.team/stops/H4wn129b"], ["https://tec.openplanner.team/stops/X804bob", "https://tec.openplanner.team/stops/X804bqb"], ["https://tec.openplanner.team/stops/Llghoch2", "https://tec.openplanner.team/stops/Llgsevr4"], ["https://tec.openplanner.team/stops/N155aaa", "https://tec.openplanner.team/stops/N155aab"], ["https://tec.openplanner.team/stops/X223acb", "https://tec.openplanner.team/stops/X919acb"], ["https://tec.openplanner.team/stops/Llgpari1", "https://tec.openplanner.team/stops/Llgpari2"], ["https://tec.openplanner.team/stops/LRtcarr1", "https://tec.openplanner.team/stops/LTechpl1"], ["https://tec.openplanner.team/stops/Lmobrac1", "https://tec.openplanner.team/stops/Lmobrac2"], ["https://tec.openplanner.team/stops/LTPabat2", "https://tec.openplanner.team/stops/LTPreco1"], ["https://tec.openplanner.team/stops/H1bo102a", "https://tec.openplanner.team/stops/H1hi123b"], ["https://tec.openplanner.team/stops/Cmypela2", "https://tec.openplanner.team/stops/Cmyrens1"], ["https://tec.openplanner.team/stops/N507afb", "https://tec.openplanner.team/stops/N507agb"], ["https://tec.openplanner.team/stops/LFochap2", "https://tec.openplanner.team/stops/LGObeth1"], ["https://tec.openplanner.team/stops/X837aka", "https://tec.openplanner.team/stops/X886aaa"], ["https://tec.openplanner.team/stops/Cmyboci1", "https://tec.openplanner.team/stops/Cmygbbo2"], ["https://tec.openplanner.team/stops/Louazot1", "https://tec.openplanner.team/stops/Lscgare2"], ["https://tec.openplanner.team/stops/H1mj124a", "https://tec.openplanner.team/stops/H1mj124b"], ["https://tec.openplanner.team/stops/X716acb", "https://tec.openplanner.team/stops/X716aea"], ["https://tec.openplanner.team/stops/LAxchpl2", "https://tec.openplanner.team/stops/LFsgend1"], ["https://tec.openplanner.team/stops/N501isb", "https://tec.openplanner.team/stops/N501ivb"], ["https://tec.openplanner.team/stops/Lcemalv3", "https://tec.openplanner.team/stops/Lcemeta2"], ["https://tec.openplanner.team/stops/X902aqa", "https://tec.openplanner.team/stops/X902awa"], ["https://tec.openplanner.team/stops/H4ne132b", "https://tec.openplanner.team/stops/H4ne143b"], ["https://tec.openplanner.team/stops/Lchchau1", "https://tec.openplanner.team/stops/Lrapays2"], ["https://tec.openplanner.team/stops/Bclgpch1", "https://tec.openplanner.team/stops/Bllnlb52"], ["https://tec.openplanner.team/stops/Clrmarl3", "https://tec.openplanner.team/stops/Clrplac2"], ["https://tec.openplanner.team/stops/Cjurogi1", "https://tec.openplanner.team/stops/CMpuis2"], ["https://tec.openplanner.team/stops/NC44aab", "https://tec.openplanner.team/stops/NC44aea"], ["https://tec.openplanner.team/stops/X904afb", "https://tec.openplanner.team/stops/X904ala"], ["https://tec.openplanner.team/stops/Cthalou1", "https://tec.openplanner.team/stops/Cthdeco1"], ["https://tec.openplanner.team/stops/Bwatnrs2", "https://tec.openplanner.team/stops/Bwatppa2"], ["https://tec.openplanner.team/stops/X818asa", "https://tec.openplanner.team/stops/X818ava"], ["https://tec.openplanner.team/stops/Cjuhden3", "https://tec.openplanner.team/stops/Cjupn2"], ["https://tec.openplanner.team/stops/N515agb", "https://tec.openplanner.team/stops/N515aua"], ["https://tec.openplanner.team/stops/H4bl104a", "https://tec.openplanner.team/stops/H4tg262a"], ["https://tec.openplanner.team/stops/LCschri1", "https://tec.openplanner.team/stops/LCschri2"], ["https://tec.openplanner.team/stops/Lemparc2", "https://tec.openplanner.team/stops/Lemsart1"], ["https://tec.openplanner.team/stops/X926afb", "https://tec.openplanner.team/stops/X947aaa"], ["https://tec.openplanner.team/stops/Cmmcarr2", "https://tec.openplanner.team/stops/Cmmcime2"], ["https://tec.openplanner.team/stops/N501hjc", "https://tec.openplanner.team/stops/N501mia"], ["https://tec.openplanner.team/stops/LFdchau1", "https://tec.openplanner.team/stops/LFdchau3"], ["https://tec.openplanner.team/stops/Canmonu1", "https://tec.openplanner.team/stops/Canmonu3"], ["https://tec.openplanner.team/stops/Bjodfab1", "https://tec.openplanner.team/stops/Bjodrga1"], ["https://tec.openplanner.team/stops/Canboni1", "https://tec.openplanner.team/stops/Canchbr2"], ["https://tec.openplanner.team/stops/LFmbure1", "https://tec.openplanner.team/stops/LFmcarr2"], ["https://tec.openplanner.team/stops/N232aia", "https://tec.openplanner.team/stops/N232aoa"], ["https://tec.openplanner.team/stops/Cgyhstj2", "https://tec.openplanner.team/stops/Cgystjo4"], ["https://tec.openplanner.team/stops/LmNelis1", "https://tec.openplanner.team/stops/LmNkirc1"], ["https://tec.openplanner.team/stops/LCPlebl*", "https://tec.openplanner.team/stops/LGmcent1"], ["https://tec.openplanner.team/stops/Cmtpire1", "https://tec.openplanner.team/stops/Cmtrneu2"], ["https://tec.openplanner.team/stops/H5bl115c", "https://tec.openplanner.team/stops/H5bl121b"], ["https://tec.openplanner.team/stops/H1hm174b", "https://tec.openplanner.team/stops/H1hm176b"], ["https://tec.openplanner.team/stops/N310acb", "https://tec.openplanner.team/stops/N343aea"], ["https://tec.openplanner.team/stops/X609abb", "https://tec.openplanner.team/stops/X609acb"], ["https://tec.openplanner.team/stops/N557aia", "https://tec.openplanner.team/stops/N562bja"], ["https://tec.openplanner.team/stops/H1mb129b", "https://tec.openplanner.team/stops/H1mb135a"], ["https://tec.openplanner.team/stops/N538aua", "https://tec.openplanner.team/stops/N538avb"], ["https://tec.openplanner.team/stops/X820aaa", "https://tec.openplanner.team/stops/X822apb"], ["https://tec.openplanner.team/stops/LVIdepo3", "https://tec.openplanner.team/stops/LVIgare1"], ["https://tec.openplanner.team/stops/X652acb", "https://tec.openplanner.team/stops/X652acc"], ["https://tec.openplanner.team/stops/N512aca", "https://tec.openplanner.team/stops/N512agd"], ["https://tec.openplanner.team/stops/Cmtpblo2", "https://tec.openplanner.team/stops/Cmtplac5"], ["https://tec.openplanner.team/stops/Blanraa1", "https://tec.openplanner.team/stops/Bwaanwi1"], ["https://tec.openplanner.team/stops/N244asa", "https://tec.openplanner.team/stops/N244ata"], ["https://tec.openplanner.team/stops/Cgd4ven1", "https://tec.openplanner.team/stops/Csycant2"], ["https://tec.openplanner.team/stops/X907abb", "https://tec.openplanner.team/stops/X939acb"], ["https://tec.openplanner.team/stops/LSItert1", "https://tec.openplanner.team/stops/LSItert2"], ["https://tec.openplanner.team/stops/X979aoa", "https://tec.openplanner.team/stops/X979aob"], ["https://tec.openplanner.team/stops/LHUmala2", "https://tec.openplanner.team/stops/LHUmari1"], ["https://tec.openplanner.team/stops/LThbatt1", "https://tec.openplanner.team/stops/LTheg--2"], ["https://tec.openplanner.team/stops/Csycant2", "https://tec.openplanner.team/stops/Csystan1"], ["https://tec.openplanner.team/stops/Lmocail2", "https://tec.openplanner.team/stops/Lmodeja1"], ["https://tec.openplanner.team/stops/Lchchau1", "https://tec.openplanner.team/stops/Lchec--1"], ["https://tec.openplanner.team/stops/Ccugrtr2", "https://tec.openplanner.team/stops/Ccutail2"], ["https://tec.openplanner.team/stops/LsVsage1", "https://tec.openplanner.team/stops/LsVsage2"], ["https://tec.openplanner.team/stops/LCSmagn2", "https://tec.openplanner.team/stops/LSShous1"], ["https://tec.openplanner.team/stops/Cnacent1", "https://tec.openplanner.team/stops/Cnaha562"], ["https://tec.openplanner.team/stops/Lghhaut1", "https://tec.openplanner.team/stops/Lghraul1"], ["https://tec.openplanner.team/stops/X717agd", "https://tec.openplanner.team/stops/X717agf"], ["https://tec.openplanner.team/stops/Bplnegl2", "https://tec.openplanner.team/stops/Cgncail2"], ["https://tec.openplanner.team/stops/Brixcme2", "https://tec.openplanner.team/stops/Brsrber2"], ["https://tec.openplanner.team/stops/Cjupier1", "https://tec.openplanner.team/stops/Cjuvpla2"], ["https://tec.openplanner.team/stops/LESchat1", "https://tec.openplanner.team/stops/LTIptme1"], ["https://tec.openplanner.team/stops/H4lp123a", "https://tec.openplanner.team/stops/H4lp123b"], ["https://tec.openplanner.team/stops/X790ahb", "https://tec.openplanner.team/stops/X790aib"], ["https://tec.openplanner.team/stops/Ldicorb1", "https://tec.openplanner.team/stops/Ldidefo1"], ["https://tec.openplanner.team/stops/Clbbonn2", "https://tec.openplanner.team/stops/Clbbonn4"], ["https://tec.openplanner.team/stops/Lalmakr1", "https://tec.openplanner.team/stops/Lancolr1"], ["https://tec.openplanner.team/stops/N522agb", "https://tec.openplanner.team/stops/N522ala"], ["https://tec.openplanner.team/stops/Lchplai2", "https://tec.openplanner.team/stops/Lchsaro1"], ["https://tec.openplanner.team/stops/N121aia", "https://tec.openplanner.team/stops/N121aib"], ["https://tec.openplanner.team/stops/N214aja", "https://tec.openplanner.team/stops/N236adb"], ["https://tec.openplanner.team/stops/Bwavcar2", "https://tec.openplanner.team/stops/Bwavlep1"], ["https://tec.openplanner.team/stops/X896abb", "https://tec.openplanner.team/stops/X995aba"], ["https://tec.openplanner.team/stops/LHUchh-1", "https://tec.openplanner.team/stops/NL80aib"], ["https://tec.openplanner.team/stops/H1em102b", "https://tec.openplanner.team/stops/H1em111b"], ["https://tec.openplanner.team/stops/Cgycorv2", "https://tec.openplanner.team/stops/Cmtmoul1"], ["https://tec.openplanner.team/stops/X601awb", "https://tec.openplanner.team/stops/X601axa"], ["https://tec.openplanner.team/stops/H4bh104b", "https://tec.openplanner.team/stops/H4hn115a"], ["https://tec.openplanner.team/stops/Bndbgar2", "https://tec.openplanner.team/stops/Bndbpco2"], ["https://tec.openplanner.team/stops/Lsccime1", "https://tec.openplanner.team/stops/Lsccime2"], ["https://tec.openplanner.team/stops/H1ba112b", "https://tec.openplanner.team/stops/H1si154a"], ["https://tec.openplanner.team/stops/Craferr1", "https://tec.openplanner.team/stops/Crajasm1"], ["https://tec.openplanner.team/stops/LThbatt2", "https://tec.openplanner.team/stops/LThpoli2"], ["https://tec.openplanner.team/stops/LGLgare*", "https://tec.openplanner.team/stops/LGLobor2"], ["https://tec.openplanner.team/stops/H4os221c", "https://tec.openplanner.team/stops/H4os223a"], ["https://tec.openplanner.team/stops/H4mo136a", "https://tec.openplanner.team/stops/H4mo144a"], ["https://tec.openplanner.team/stops/LsC216-1", "https://tec.openplanner.team/stops/LsCback1"], ["https://tec.openplanner.team/stops/Bbgever1", "https://tec.openplanner.team/stops/Bwavtrt2"], ["https://tec.openplanner.team/stops/N531aga", "https://tec.openplanner.team/stops/N531agb"], ["https://tec.openplanner.team/stops/Bcbqh452", "https://tec.openplanner.team/stops/Bcbqp251"], ["https://tec.openplanner.team/stops/LSkb1352", "https://tec.openplanner.team/stops/LSkbo832"], ["https://tec.openplanner.team/stops/N571afb", "https://tec.openplanner.team/stops/N571aga"], ["https://tec.openplanner.team/stops/Bgzdegl3", "https://tec.openplanner.team/stops/Bgzdegl4"], ["https://tec.openplanner.team/stops/LHUchh-1", "https://tec.openplanner.team/stops/LHUchh-2"], ["https://tec.openplanner.team/stops/Bwatcro1", "https://tec.openplanner.team/stops/Bwatcro2"], ["https://tec.openplanner.team/stops/N357aba", "https://tec.openplanner.team/stops/N988aab"], ["https://tec.openplanner.team/stops/LMIeg--1", "https://tec.openplanner.team/stops/LSOdow%C3%A92"], ["https://tec.openplanner.team/stops/H4lg101a", "https://tec.openplanner.team/stops/H4ta120b"], ["https://tec.openplanner.team/stops/Cmlgche2", "https://tec.openplanner.team/stops/Cmlvpla2"], ["https://tec.openplanner.team/stops/H1hg180a", "https://tec.openplanner.team/stops/H1hg181b"], ["https://tec.openplanner.team/stops/Lbralbe1", "https://tec.openplanner.team/stops/Lbrnanc1"], ["https://tec.openplanner.team/stops/H1gr120b", "https://tec.openplanner.team/stops/H1gr122b"], ["https://tec.openplanner.team/stops/Bcsegal1", "https://tec.openplanner.team/stops/Bcsemar2"], ["https://tec.openplanner.team/stops/LHhchau2", "https://tec.openplanner.team/stops/LHheg--2"], ["https://tec.openplanner.team/stops/LEMgren*", "https://tec.openplanner.team/stops/LMalarg4"], ["https://tec.openplanner.team/stops/N562asa", "https://tec.openplanner.team/stops/N562bma"], ["https://tec.openplanner.team/stops/X812aqa", "https://tec.openplanner.team/stops/X812ava"], ["https://tec.openplanner.team/stops/X805aea", "https://tec.openplanner.team/stops/X869aaa"], ["https://tec.openplanner.team/stops/N580aca", "https://tec.openplanner.team/stops/N580afb"], ["https://tec.openplanner.team/stops/LRRrimi1", "https://tec.openplanner.team/stops/LRRrimi2"], ["https://tec.openplanner.team/stops/Lagarde2", "https://tec.openplanner.team/stops/Laggare2"], ["https://tec.openplanner.team/stops/X716aba", "https://tec.openplanner.team/stops/X716afa"], ["https://tec.openplanner.team/stops/Balssvi1", "https://tec.openplanner.team/stops/Balswwe1"], ["https://tec.openplanner.team/stops/LSIvieu2", "https://tec.openplanner.team/stops/LTEnuro1"], ["https://tec.openplanner.team/stops/H2bh106b", "https://tec.openplanner.team/stops/H2bh120b"], ["https://tec.openplanner.team/stops/H4co110a", "https://tec.openplanner.team/stops/H4co110b"], ["https://tec.openplanner.team/stops/X804akb", "https://tec.openplanner.team/stops/X804bqa"], ["https://tec.openplanner.team/stops/N232acb", "https://tec.openplanner.team/stops/N232agb"], ["https://tec.openplanner.team/stops/Lbeloui1", "https://tec.openplanner.team/stops/Lbeloui2"], ["https://tec.openplanner.team/stops/Bblabfo1", "https://tec.openplanner.team/stops/Bblabfo2"], ["https://tec.openplanner.team/stops/H1ba118a", "https://tec.openplanner.team/stops/H1te173b"], ["https://tec.openplanner.team/stops/Llggee52", "https://tec.openplanner.team/stops/Llggeer3"], ["https://tec.openplanner.team/stops/Bnilwal2", "https://tec.openplanner.team/stops/Bwspbbo1"], ["https://tec.openplanner.team/stops/X614abb", "https://tec.openplanner.team/stops/X614acb"], ["https://tec.openplanner.team/stops/N531aea", "https://tec.openplanner.team/stops/N531afg"], ["https://tec.openplanner.team/stops/LVkinst1", "https://tec.openplanner.team/stops/LVkinst2"], ["https://tec.openplanner.team/stops/LFlpark*", "https://tec.openplanner.team/stops/LJEpaqu2"], ["https://tec.openplanner.team/stops/Lpecime1", "https://tec.openplanner.team/stops/Lpesart2"], ["https://tec.openplanner.team/stops/Bcrnncb2", "https://tec.openplanner.team/stops/Bcrnnpl1"], ["https://tec.openplanner.team/stops/H2tr253b", "https://tec.openplanner.team/stops/H2tr255b"], ["https://tec.openplanner.team/stops/LGeduc-2", "https://tec.openplanner.team/stops/LGefron2"], ["https://tec.openplanner.team/stops/Lveclin2", "https://tec.openplanner.team/stops/Lvehauz3"], ["https://tec.openplanner.team/stops/N309aba", "https://tec.openplanner.team/stops/N313acb"], ["https://tec.openplanner.team/stops/H2ca103c", "https://tec.openplanner.team/stops/H2ca116a"], ["https://tec.openplanner.team/stops/LHMbami2", "https://tec.openplanner.team/stops/LSImewi1"], ["https://tec.openplanner.team/stops/LHhchau2", "https://tec.openplanner.team/stops/N507aeb"], ["https://tec.openplanner.team/stops/LGlbour1", "https://tec.openplanner.team/stops/LGlbour2"], ["https://tec.openplanner.team/stops/N529ada", "https://tec.openplanner.team/stops/N529adb"], ["https://tec.openplanner.team/stops/LHGtron1", "https://tec.openplanner.team/stops/LHGvill2"], ["https://tec.openplanner.team/stops/N501gda", "https://tec.openplanner.team/stops/N501gdb"], ["https://tec.openplanner.team/stops/N116aac", "https://tec.openplanner.team/stops/N116aea"], ["https://tec.openplanner.team/stops/N507akb", "https://tec.openplanner.team/stops/N509aob"], ["https://tec.openplanner.team/stops/N232bga", "https://tec.openplanner.team/stops/N232bgb"], ["https://tec.openplanner.team/stops/N501dvb", "https://tec.openplanner.team/stops/N501ewa"], ["https://tec.openplanner.team/stops/LClsacr1", "https://tec.openplanner.team/stops/LThnouv1"], ["https://tec.openplanner.team/stops/Bgzddmo1", "https://tec.openplanner.team/stops/Bgzdgli1"], ["https://tec.openplanner.team/stops/LBJlieg2", "https://tec.openplanner.team/stops/LHcaube1"], ["https://tec.openplanner.team/stops/LBVronx1", "https://tec.openplanner.team/stops/LBVronx2"], ["https://tec.openplanner.team/stops/LHGvill2", "https://tec.openplanner.team/stops/LVlfooz3"], ["https://tec.openplanner.team/stops/N118acb", "https://tec.openplanner.team/stops/N118aya"], ["https://tec.openplanner.team/stops/X952aga", "https://tec.openplanner.team/stops/X952agb"], ["https://tec.openplanner.team/stops/Ljekess1", "https://tec.openplanner.team/stops/Ljestat3"], ["https://tec.openplanner.team/stops/LVLgrum1", "https://tec.openplanner.team/stops/LVLpane1"], ["https://tec.openplanner.team/stops/Bhancre2", "https://tec.openplanner.team/stops/Bhanwav1"], ["https://tec.openplanner.team/stops/Lvefran1", "https://tec.openplanner.team/stops/Lvefran2"], ["https://tec.openplanner.team/stops/X756aja", "https://tec.openplanner.team/stops/X779afa"], ["https://tec.openplanner.team/stops/H4tf147a", "https://tec.openplanner.team/stops/H4wa148b"], ["https://tec.openplanner.team/stops/H2ha128a", "https://tec.openplanner.team/stops/H2ha128b"], ["https://tec.openplanner.team/stops/Blemhon1", "https://tec.openplanner.team/stops/Blemmar1"], ["https://tec.openplanner.team/stops/X858abb", "https://tec.openplanner.team/stops/X858aga"], ["https://tec.openplanner.team/stops/N543ala", "https://tec.openplanner.team/stops/N543anh"], ["https://tec.openplanner.team/stops/N135afa", "https://tec.openplanner.team/stops/N135afb"], ["https://tec.openplanner.team/stops/X833aba", "https://tec.openplanner.team/stops/X833abb"], ["https://tec.openplanner.team/stops/H2le148a", "https://tec.openplanner.team/stops/H2le148b"], ["https://tec.openplanner.team/stops/Cmtyern1", "https://tec.openplanner.team/stops/Cmtyern2"], ["https://tec.openplanner.team/stops/LATjaur2", "https://tec.openplanner.team/stops/LATmale2"], ["https://tec.openplanner.team/stops/LSsaxhe2", "https://tec.openplanner.team/stops/LSseg--2"], ["https://tec.openplanner.team/stops/X788aea", "https://tec.openplanner.team/stops/X788aeb"], ["https://tec.openplanner.team/stops/LmI36--1", "https://tec.openplanner.team/stops/LmI36--2"], ["https://tec.openplanner.team/stops/H2fa100b", "https://tec.openplanner.team/stops/H2fa104a"], ["https://tec.openplanner.team/stops/Cgxchan1", "https://tec.openplanner.team/stops/Cmogrbu2"], ["https://tec.openplanner.team/stops/Cgxcime2", "https://tec.openplanner.team/stops/Cgxmaco1"], ["https://tec.openplanner.team/stops/N571adb", "https://tec.openplanner.team/stops/N573aab"], ["https://tec.openplanner.team/stops/H1bx104a", "https://tec.openplanner.team/stops/H1bx104b"], ["https://tec.openplanner.team/stops/Llgborg1", "https://tec.openplanner.team/stops/Llgborg2"], ["https://tec.openplanner.team/stops/N576akc", "https://tec.openplanner.team/stops/N576alb"], ["https://tec.openplanner.team/stops/H4mo160a", "https://tec.openplanner.team/stops/H4mo161a"], ["https://tec.openplanner.team/stops/LBLfoxh2", "https://tec.openplanner.team/stops/LCEeg--2"], ["https://tec.openplanner.team/stops/H4gu108a", "https://tec.openplanner.team/stops/H4sm247a"], ["https://tec.openplanner.team/stops/Cmeptmi2", "https://tec.openplanner.team/stops/Cmeptmi6"], ["https://tec.openplanner.team/stops/Cmoprov1", "https://tec.openplanner.team/stops/Crorpai2"], ["https://tec.openplanner.team/stops/H4ty294a", "https://tec.openplanner.team/stops/H4ty325a"], ["https://tec.openplanner.team/stops/H1br129a", "https://tec.openplanner.team/stops/H3bo103a"], ["https://tec.openplanner.team/stops/H1fl138b", "https://tec.openplanner.team/stops/H1lb134a"], ["https://tec.openplanner.team/stops/LArmeni1", "https://tec.openplanner.team/stops/X548abb"], ["https://tec.openplanner.team/stops/LWepost1", "https://tec.openplanner.team/stops/LWepost2"], ["https://tec.openplanner.team/stops/Laltrap2", "https://tec.openplanner.team/stops/Llaeg--2"], ["https://tec.openplanner.team/stops/Cchhopi1", "https://tec.openplanner.team/stops/Cchmonu2"], ["https://tec.openplanner.team/stops/X858aab", "https://tec.openplanner.team/stops/X858ahb"], ["https://tec.openplanner.team/stops/X923acb", "https://tec.openplanner.team/stops/X923adb"], ["https://tec.openplanner.team/stops/X762aab", "https://tec.openplanner.team/stops/X786ajb"], ["https://tec.openplanner.team/stops/N236aba", "https://tec.openplanner.team/stops/N236acb"], ["https://tec.openplanner.team/stops/N223aaa", "https://tec.openplanner.team/stops/X222add"], ["https://tec.openplanner.team/stops/H2mo122d", "https://tec.openplanner.team/stops/H2mo146b"], ["https://tec.openplanner.team/stops/Cfrgare4", "https://tec.openplanner.team/stops/Cfrmonu2"], ["https://tec.openplanner.team/stops/Cmaroya1", "https://tec.openplanner.team/stops/Cmastch4"], ["https://tec.openplanner.team/stops/N501gfa", "https://tec.openplanner.team/stops/N501gfb"], ["https://tec.openplanner.team/stops/LkEfrie1", "https://tec.openplanner.team/stops/LkEheyg2"], ["https://tec.openplanner.team/stops/N308bfb", "https://tec.openplanner.team/stops/N308bhb"], ["https://tec.openplanner.team/stops/X371adb", "https://tec.openplanner.team/stops/X371aeb"], ["https://tec.openplanner.team/stops/N506aca", "https://tec.openplanner.team/stops/N506bpb"], ["https://tec.openplanner.team/stops/Bincegl2", "https://tec.openplanner.team/stops/Bopprju1"], ["https://tec.openplanner.team/stops/H4ce103a", "https://tec.openplanner.team/stops/H4ve132a"], ["https://tec.openplanner.team/stops/Bbiehec1", "https://tec.openplanner.team/stops/Bbiehev1"], ["https://tec.openplanner.team/stops/X605aba", "https://tec.openplanner.team/stops/X605acb"], ["https://tec.openplanner.team/stops/Bchgbar2", "https://tec.openplanner.team/stops/Bchgqve3"], ["https://tec.openplanner.team/stops/LlNbene2", "https://tec.openplanner.team/stops/LlNbruc1"], ["https://tec.openplanner.team/stops/X756aia", "https://tec.openplanner.team/stops/X756aib"], ["https://tec.openplanner.team/stops/NL78aha", "https://tec.openplanner.team/stops/NL78akb"], ["https://tec.openplanner.team/stops/X812aka", "https://tec.openplanner.team/stops/X812aqa"], ["https://tec.openplanner.team/stops/LJedonc1", "https://tec.openplanner.team/stops/LReeg--1"], ["https://tec.openplanner.team/stops/Llghesb1", "https://tec.openplanner.team/stops/Llglys-1"], ["https://tec.openplanner.team/stops/LLaover3", "https://tec.openplanner.team/stops/LLaover4"], ["https://tec.openplanner.team/stops/LmS11--2", "https://tec.openplanner.team/stops/LsFcafe1"], ["https://tec.openplanner.team/stops/LHCbois2", "https://tec.openplanner.team/stops/LHCcoul1"], ["https://tec.openplanner.team/stops/N304aaa", "https://tec.openplanner.team/stops/N304aab"], ["https://tec.openplanner.team/stops/N571ada", "https://tec.openplanner.team/stops/N573aaa"], ["https://tec.openplanner.team/stops/N501fdd", "https://tec.openplanner.team/stops/N501fqa"], ["https://tec.openplanner.team/stops/Lroboeg2", "https://tec.openplanner.team/stops/Lromc--2"], ["https://tec.openplanner.team/stops/Bcer4br2", "https://tec.openplanner.team/stops/Bcerldo1"], ["https://tec.openplanner.team/stops/H2sb228d", "https://tec.openplanner.team/stops/H2sb242a"], ["https://tec.openplanner.team/stops/Lhracec2", "https://tec.openplanner.team/stops/Lhrwigi2"], ["https://tec.openplanner.team/stops/H1hr118b", "https://tec.openplanner.team/stops/H3so177a"], ["https://tec.openplanner.team/stops/Lghcfer2", "https://tec.openplanner.team/stops/Lghjans2"], ["https://tec.openplanner.team/stops/N557afa", "https://tec.openplanner.team/stops/N557agb"], ["https://tec.openplanner.team/stops/LoUzent1", "https://tec.openplanner.team/stops/X685afb"], ["https://tec.openplanner.team/stops/LVEfize1", "https://tec.openplanner.team/stops/LVEphar2"], ["https://tec.openplanner.team/stops/Cgyblob2", "https://tec.openplanner.team/stops/Cgynoir1"], ["https://tec.openplanner.team/stops/LeUdepo2", "https://tec.openplanner.team/stops/LeUlasc2"], ["https://tec.openplanner.team/stops/LFyanto2", "https://tec.openplanner.team/stops/LWaruth1"], ["https://tec.openplanner.team/stops/H3bi107b", "https://tec.openplanner.team/stops/H3bi117b"], ["https://tec.openplanner.team/stops/Lhrecol2", "https://tec.openplanner.team/stops/Lhrpaix1"], ["https://tec.openplanner.team/stops/X754apa", "https://tec.openplanner.team/stops/X754apb"], ["https://tec.openplanner.team/stops/H4ce100a", "https://tec.openplanner.team/stops/H4ce100b"], ["https://tec.openplanner.team/stops/Cfogaul2", "https://tec.openplanner.team/stops/Cfometr1"], ["https://tec.openplanner.team/stops/H2se114a", "https://tec.openplanner.team/stops/H2se115a"], ["https://tec.openplanner.team/stops/Lcepass1", "https://tec.openplanner.team/stops/Lcepass2"], ["https://tec.openplanner.team/stops/Bgntpla1", "https://tec.openplanner.team/stops/Bgntpla2"], ["https://tec.openplanner.team/stops/N539aqa", "https://tec.openplanner.team/stops/N539ara"], ["https://tec.openplanner.team/stops/X801cla", "https://tec.openplanner.team/stops/X801cmb"], ["https://tec.openplanner.team/stops/Cmqcend1", "https://tec.openplanner.team/stops/Cmqcend2"], ["https://tec.openplanner.team/stops/Bovehst1", "https://tec.openplanner.team/stops/Bovevnd1"], ["https://tec.openplanner.team/stops/Caircen1", "https://tec.openplanner.team/stops/Cprcits1"], ["https://tec.openplanner.team/stops/LHCmonu4", "https://tec.openplanner.team/stops/LHCruyf1"], ["https://tec.openplanner.team/stops/X561aba", "https://tec.openplanner.team/stops/X561abb"], ["https://tec.openplanner.team/stops/H2an104a", "https://tec.openplanner.team/stops/H2an111b"], ["https://tec.openplanner.team/stops/X938aab", "https://tec.openplanner.team/stops/X950aaa"], ["https://tec.openplanner.team/stops/N506bfa", "https://tec.openplanner.team/stops/N506bfb"], ["https://tec.openplanner.team/stops/LVLeg--2", "https://tec.openplanner.team/stops/LVLmabi2"], ["https://tec.openplanner.team/stops/H4am101a", "https://tec.openplanner.team/stops/H4am102d"], ["https://tec.openplanner.team/stops/LBLvici1", "https://tec.openplanner.team/stops/LBLwaid1"], ["https://tec.openplanner.team/stops/LhGscha*", "https://tec.openplanner.team/stops/LkEherg2"], ["https://tec.openplanner.team/stops/Lmndari2", "https://tec.openplanner.team/stops/Lsmtini1"], ["https://tec.openplanner.team/stops/Cforepo2", "https://tec.openplanner.team/stops/Cforpet1"], ["https://tec.openplanner.team/stops/LmRkreu3", "https://tec.openplanner.team/stops/LmRkreu4"], ["https://tec.openplanner.team/stops/Canboni1", "https://tec.openplanner.team/stops/Cgzhour2"], ["https://tec.openplanner.team/stops/N501hub", "https://tec.openplanner.team/stops/N501ika"], ["https://tec.openplanner.team/stops/LBOande2", "https://tec.openplanner.team/stops/LWRbomb4"], ["https://tec.openplanner.team/stops/H1bb113a", "https://tec.openplanner.team/stops/H1ho133a"], ["https://tec.openplanner.team/stops/X717adb", "https://tec.openplanner.team/stops/X782aea"], ["https://tec.openplanner.team/stops/LRGcana2", "https://tec.openplanner.team/stops/LRGchap1"], ["https://tec.openplanner.team/stops/Bsenpbi2", "https://tec.openplanner.team/stops/Bsensab1"], ["https://tec.openplanner.team/stops/Lgrfalc2", "https://tec.openplanner.team/stops/Llgdesa1"], ["https://tec.openplanner.team/stops/Bsamegl2", "https://tec.openplanner.team/stops/Bsampli1"], ["https://tec.openplanner.team/stops/X897ada", "https://tec.openplanner.team/stops/X897ala"], ["https://tec.openplanner.team/stops/H5bs103a", "https://tec.openplanner.team/stops/H5pe128b"], ["https://tec.openplanner.team/stops/LTPtroi1", "https://tec.openplanner.team/stops/LTPtroi2"], ["https://tec.openplanner.team/stops/N501hmb", "https://tec.openplanner.team/stops/N501itb"], ["https://tec.openplanner.team/stops/Lsepair2", "https://tec.openplanner.team/stops/Lsepair4"], ["https://tec.openplanner.team/stops/Ljubrec2", "https://tec.openplanner.team/stops/Ljubrec3"], ["https://tec.openplanner.team/stops/Bcrncen1", "https://tec.openplanner.team/stops/Bcrncen2"], ["https://tec.openplanner.team/stops/N141aga", "https://tec.openplanner.team/stops/N141ahb"], ["https://tec.openplanner.team/stops/LAMdelh2", "https://tec.openplanner.team/stops/LAMweha1"], ["https://tec.openplanner.team/stops/Btsllec1", "https://tec.openplanner.team/stops/Btsllfp1"], ["https://tec.openplanner.team/stops/LFPkape1", "https://tec.openplanner.team/stops/LFPkape2"], ["https://tec.openplanner.team/stops/X618acb", "https://tec.openplanner.team/stops/X618ala"], ["https://tec.openplanner.team/stops/LMNpt--1", "https://tec.openplanner.team/stops/LMNpt--2"], ["https://tec.openplanner.team/stops/LElcent1", "https://tec.openplanner.team/stops/LElcent2"], ["https://tec.openplanner.team/stops/Blaneli1", "https://tec.openplanner.team/stops/Blaneli2"], ["https://tec.openplanner.team/stops/H1ms251a", "https://tec.openplanner.team/stops/H1ms309b"], ["https://tec.openplanner.team/stops/X801bha", "https://tec.openplanner.team/stops/X801bia"], ["https://tec.openplanner.team/stops/X609agb", "https://tec.openplanner.team/stops/X609alb"], ["https://tec.openplanner.team/stops/LMovieu1", "https://tec.openplanner.team/stops/LMovieu2"], ["https://tec.openplanner.team/stops/Bneedia1", "https://tec.openplanner.team/stops/Bneervc2"], ["https://tec.openplanner.team/stops/Csoforr1", "https://tec.openplanner.team/stops/Csoperi1"], ["https://tec.openplanner.team/stops/Cvpcdec1", "https://tec.openplanner.team/stops/Cvppost1"], ["https://tec.openplanner.team/stops/Cbtbras2", "https://tec.openplanner.team/stops/Cbtgemi2"], ["https://tec.openplanner.team/stops/N521aja", "https://tec.openplanner.team/stops/N521amb"], ["https://tec.openplanner.team/stops/X822ajb", "https://tec.openplanner.team/stops/X836aia"], ["https://tec.openplanner.team/stops/X902aea", "https://tec.openplanner.team/stops/X902ala"], ["https://tec.openplanner.team/stops/X685aia", "https://tec.openplanner.team/stops/X687aaa"], ["https://tec.openplanner.team/stops/LBQmaye2", "https://tec.openplanner.team/stops/X919aaa"], ["https://tec.openplanner.team/stops/LJUfort2", "https://tec.openplanner.team/stops/Lladete4"], ["https://tec.openplanner.team/stops/Bcbqufo2", "https://tec.openplanner.team/stops/Btubois2"], ["https://tec.openplanner.team/stops/N205aca", "https://tec.openplanner.team/stops/N220acb"], ["https://tec.openplanner.team/stops/Llmlaro1", "https://tec.openplanner.team/stops/Lprhodi1"], ["https://tec.openplanner.team/stops/H4ga149a", "https://tec.openplanner.team/stops/H4ha170a"], ["https://tec.openplanner.team/stops/LVbeg--2", "https://tec.openplanner.team/stops/LVbgend2"], ["https://tec.openplanner.team/stops/LeUcroi1", "https://tec.openplanner.team/stops/LeUcroi2"], ["https://tec.openplanner.team/stops/Llgcadr4", "https://tec.openplanner.team/stops/LlgLAMB5"], ["https://tec.openplanner.team/stops/Csslesc2", "https://tec.openplanner.team/stops/Csycant2"], ["https://tec.openplanner.team/stops/Lancolr2", "https://tec.openplanner.team/stops/Lanfran2"], ["https://tec.openplanner.team/stops/N228aeb", "https://tec.openplanner.team/stops/N235adb"], ["https://tec.openplanner.team/stops/N106aob", "https://tec.openplanner.team/stops/N106ara"], ["https://tec.openplanner.team/stops/LBgbaga4", "https://tec.openplanner.team/stops/LBglign2"], ["https://tec.openplanner.team/stops/X901afa", "https://tec.openplanner.team/stops/X901agb"], ["https://tec.openplanner.team/stops/X653aaa", "https://tec.openplanner.team/stops/X667adb"], ["https://tec.openplanner.team/stops/H4ru241a", "https://tec.openplanner.team/stops/H4ty311b"], ["https://tec.openplanner.team/stops/N109aca", "https://tec.openplanner.team/stops/N122aba"], ["https://tec.openplanner.team/stops/LHgroso1", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://tec.openplanner.team/stops/LFIcabi1", "https://tec.openplanner.team/stops/LHaxhig1"], ["https://tec.openplanner.team/stops/X897ama", "https://tec.openplanner.team/stops/X897ana"], ["https://tec.openplanner.team/stops/H4hq130b", "https://tec.openplanner.team/stops/H4mb142a"], ["https://tec.openplanner.team/stops/Cmahotv1", "https://tec.openplanner.team/stops/Cmomoul6"], ["https://tec.openplanner.team/stops/N212aca", "https://tec.openplanner.team/stops/N212acb"], ["https://tec.openplanner.team/stops/H4ty290a", "https://tec.openplanner.team/stops/H4ty290b"], ["https://tec.openplanner.team/stops/Bcsegal2", "https://tec.openplanner.team/stops/Bsmgpla2"], ["https://tec.openplanner.team/stops/LVSslin1", "https://tec.openplanner.team/stops/LVSslin3"], ["https://tec.openplanner.team/stops/Cbiferm1", "https://tec.openplanner.team/stops/Crgmgri2"], ["https://tec.openplanner.team/stops/LREfloh2", "https://tec.openplanner.team/stops/LREsech1"], ["https://tec.openplanner.team/stops/LBWbatt1", "https://tec.openplanner.team/stops/LDAchau1"], ["https://tec.openplanner.team/stops/N532adb", "https://tec.openplanner.team/stops/N532aeb"], ["https://tec.openplanner.team/stops/LAmab752", "https://tec.openplanner.team/stops/LAmvent2"], ["https://tec.openplanner.team/stops/X759afb", "https://tec.openplanner.team/stops/X759aga"], ["https://tec.openplanner.team/stops/Llmeg--*", "https://tec.openplanner.team/stops/LWexhav1"], ["https://tec.openplanner.team/stops/LeUmeye2", "https://tec.openplanner.team/stops/LrAeife1"], ["https://tec.openplanner.team/stops/LeYteeh1", "https://tec.openplanner.team/stops/LeYvoge1"], ["https://tec.openplanner.team/stops/X620aaa", "https://tec.openplanner.team/stops/X620agb"], ["https://tec.openplanner.team/stops/LHdfays1", "https://tec.openplanner.team/stops/LVnetan1"], ["https://tec.openplanner.team/stops/X801cia", "https://tec.openplanner.team/stops/X836acb"], ["https://tec.openplanner.team/stops/X804bma", "https://tec.openplanner.team/stops/X804bpa"], ["https://tec.openplanner.team/stops/H4eq123a", "https://tec.openplanner.team/stops/H4ob110b"], ["https://tec.openplanner.team/stops/N234aeb", "https://tec.openplanner.team/stops/N234afa"], ["https://tec.openplanner.team/stops/H4ty265a", "https://tec.openplanner.team/stops/H4ty360a"], ["https://tec.openplanner.team/stops/Lcepepi1", "https://tec.openplanner.team/stops/Lgrcral1"], ["https://tec.openplanner.team/stops/Lagchen1", "https://tec.openplanner.team/stops/Lagpera1"], ["https://tec.openplanner.team/stops/Lhrbass1", "https://tec.openplanner.team/stops/Llgcoro1"], ["https://tec.openplanner.team/stops/H1lb137b", "https://tec.openplanner.team/stops/H1lb153a"], ["https://tec.openplanner.team/stops/X651acd", "https://tec.openplanner.team/stops/X651ada"], ["https://tec.openplanner.team/stops/Bvirgar1", "https://tec.openplanner.team/stops/Bvirgar2"], ["https://tec.openplanner.team/stops/H1er106b", "https://tec.openplanner.team/stops/H1gg146b"], ["https://tec.openplanner.team/stops/LElverl2", "https://tec.openplanner.team/stops/LTaxhos2"], ["https://tec.openplanner.team/stops/LLemonu1", "https://tec.openplanner.team/stops/LLevaux1"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X725bdb"], ["https://tec.openplanner.team/stops/X548aab", "https://tec.openplanner.team/stops/X777aab"], ["https://tec.openplanner.team/stops/LsVhupp2", "https://tec.openplanner.team/stops/LsVthom2"], ["https://tec.openplanner.team/stops/Boplcar4", "https://tec.openplanner.team/stops/Boplsma3"], ["https://tec.openplanner.team/stops/H2ll173a", "https://tec.openplanner.team/stops/H2ll267b"], ["https://tec.openplanner.team/stops/LCEboll2", "https://tec.openplanner.team/stops/LCEcent2"], ["https://tec.openplanner.team/stops/N501fgb", "https://tec.openplanner.team/stops/N501lya"], ["https://tec.openplanner.team/stops/X619abb", "https://tec.openplanner.team/stops/X619acb"], ["https://tec.openplanner.team/stops/Lenhosp1", "https://tec.openplanner.team/stops/Lenplac1"], ["https://tec.openplanner.team/stops/X723aaa", "https://tec.openplanner.team/stops/X723aca"], ["https://tec.openplanner.team/stops/H1bo106b", "https://tec.openplanner.team/stops/H1bo108b"], ["https://tec.openplanner.team/stops/N544acb", "https://tec.openplanner.team/stops/N544afb"], ["https://tec.openplanner.team/stops/H2na132a", "https://tec.openplanner.team/stops/H2na132b"], ["https://tec.openplanner.team/stops/X992ahb", "https://tec.openplanner.team/stops/X993aga"], ["https://tec.openplanner.team/stops/LEHmarc2", "https://tec.openplanner.team/stops/LNCvann1"], ["https://tec.openplanner.team/stops/LNCesne1", "https://tec.openplanner.team/stops/LNCmada2"], ["https://tec.openplanner.team/stops/Lheente2", "https://tec.openplanner.team/stops/LHSlava2"], ["https://tec.openplanner.team/stops/N343amb", "https://tec.openplanner.team/stops/X343aha"], ["https://tec.openplanner.team/stops/LHCauwe3", "https://tec.openplanner.team/stops/LHCponc3"], ["https://tec.openplanner.team/stops/N543bfa", "https://tec.openplanner.team/stops/N543bgd"], ["https://tec.openplanner.team/stops/N229asa", "https://tec.openplanner.team/stops/N540ala"], ["https://tec.openplanner.team/stops/Bernegl3", "https://tec.openplanner.team/stops/Bernpla1"], ["https://tec.openplanner.team/stops/H1eu103a", "https://tec.openplanner.team/stops/H1eu104a"], ["https://tec.openplanner.team/stops/Loucoti2", "https://tec.openplanner.team/stops/Loudemo2"], ["https://tec.openplanner.team/stops/LGegare1", "https://tec.openplanner.team/stops/LkEbran1"], ["https://tec.openplanner.team/stops/Cgzpjeu2", "https://tec.openplanner.team/stops/Cgzplac4"], ["https://tec.openplanner.team/stops/Cbiferm2", "https://tec.openplanner.team/stops/Ctufleu4"], ["https://tec.openplanner.team/stops/H4te249b", "https://tec.openplanner.team/stops/H4te413a"], ["https://tec.openplanner.team/stops/Btubbot2", "https://tec.openplanner.team/stops/Btubren1"], ["https://tec.openplanner.team/stops/X608ana", "https://tec.openplanner.team/stops/X622aba"], ["https://tec.openplanner.team/stops/X657aha", "https://tec.openplanner.team/stops/X670agb"], ["https://tec.openplanner.team/stops/LESchac1", "https://tec.openplanner.team/stops/LPOwaut2"], ["https://tec.openplanner.team/stops/N301aaa", "https://tec.openplanner.team/stops/X301ara"], ["https://tec.openplanner.team/stops/Cci4bra4", "https://tec.openplanner.team/stops/NC02apb"], ["https://tec.openplanner.team/stops/Bsgetri2", "https://tec.openplanner.team/stops/Bvilcoq2"], ["https://tec.openplanner.team/stops/Bolgegl1", "https://tec.openplanner.team/stops/Bolgfon1"], ["https://tec.openplanner.team/stops/Ccucorb2", "https://tec.openplanner.team/stops/Cgyruis2"], ["https://tec.openplanner.team/stops/LSecomm1", "https://tec.openplanner.team/stops/LSecomm2"], ["https://tec.openplanner.team/stops/Cmmcime2", "https://tec.openplanner.team/stops/Cmmcver1"], ["https://tec.openplanner.team/stops/N543bgd", "https://tec.openplanner.team/stops/N543btb"], ["https://tec.openplanner.team/stops/N531aja", "https://tec.openplanner.team/stops/N531ajb"], ["https://tec.openplanner.team/stops/N228aaa", "https://tec.openplanner.team/stops/N228aea"], ["https://tec.openplanner.team/stops/LhPheps2", "https://tec.openplanner.team/stops/LwEdorf2"], ["https://tec.openplanner.team/stops/LNipre-1", "https://tec.openplanner.team/stops/LNipre-2"], ["https://tec.openplanner.team/stops/LGLc12-3", "https://tec.openplanner.team/stops/LGLcour4"], ["https://tec.openplanner.team/stops/Blimbet3", "https://tec.openplanner.team/stops/Blimeur2"], ["https://tec.openplanner.team/stops/H1ne145b", "https://tec.openplanner.team/stops/H1ne148a"], ["https://tec.openplanner.team/stops/X746agc", "https://tec.openplanner.team/stops/X746ahc"], ["https://tec.openplanner.team/stops/LPOchan1", "https://tec.openplanner.team/stops/LPOchan2"], ["https://tec.openplanner.team/stops/LHUathe1", "https://tec.openplanner.team/stops/LHUpala1"], ["https://tec.openplanner.team/stops/Lgrcral1", "https://tec.openplanner.team/stops/Lgrdefr1"], ["https://tec.openplanner.team/stops/H5rx120a", "https://tec.openplanner.team/stops/H5rx150a"], ["https://tec.openplanner.team/stops/Cchsud04", "https://tec.openplanner.team/stops/Cchsud12"], ["https://tec.openplanner.team/stops/H2go119a", "https://tec.openplanner.team/stops/H2go119b"], ["https://tec.openplanner.team/stops/H1le128a", "https://tec.openplanner.team/stops/H1le128b"], ["https://tec.openplanner.team/stops/Lbocond2", "https://tec.openplanner.team/stops/LPLcite1"], ["https://tec.openplanner.team/stops/H2hg145a", "https://tec.openplanner.team/stops/H2hg150b"], ["https://tec.openplanner.team/stops/X747aha", "https://tec.openplanner.team/stops/X747ahb"], ["https://tec.openplanner.team/stops/Lhulibe2", "https://tec.openplanner.team/stops/Lhutran2"], ["https://tec.openplanner.team/stops/Crodebr1", "https://tec.openplanner.team/stops/Cropcan1"], ["https://tec.openplanner.team/stops/LVIdeva2", "https://tec.openplanner.team/stops/LVIecol2"], ["https://tec.openplanner.team/stops/X715acb", "https://tec.openplanner.team/stops/X716aab"], ["https://tec.openplanner.team/stops/H4ty269a", "https://tec.openplanner.team/stops/H4ty382a"], ["https://tec.openplanner.team/stops/Becepro1", "https://tec.openplanner.team/stops/H3br101b"], ["https://tec.openplanner.team/stops/Lannico3", "https://tec.openplanner.team/stops/Lannico4"], ["https://tec.openplanner.team/stops/N210aab", "https://tec.openplanner.team/stops/X222afb"], ["https://tec.openplanner.team/stops/X398aba", "https://tec.openplanner.team/stops/X398agb"], ["https://tec.openplanner.team/stops/N527abb", "https://tec.openplanner.team/stops/N533apb"], ["https://tec.openplanner.team/stops/X725abb", "https://tec.openplanner.team/stops/X754axb"], ["https://tec.openplanner.team/stops/LSTchef1", "https://tec.openplanner.team/stops/LSTcomm1"], ["https://tec.openplanner.team/stops/X640afa", "https://tec.openplanner.team/stops/X640aga"], ["https://tec.openplanner.team/stops/X886aaa", "https://tec.openplanner.team/stops/X886abb"], ["https://tec.openplanner.team/stops/H1pw121b", "https://tec.openplanner.team/stops/H1wa144b"], ["https://tec.openplanner.team/stops/N507akb", "https://tec.openplanner.team/stops/N508ada"], ["https://tec.openplanner.team/stops/H1wa145a", "https://tec.openplanner.team/stops/H1wa149a"], ["https://tec.openplanner.team/stops/N508ama", "https://tec.openplanner.team/stops/N508aob"], ["https://tec.openplanner.team/stops/Brsrpch1", "https://tec.openplanner.team/stops/Brsrpch2"], ["https://tec.openplanner.team/stops/LHEclef1", "https://tec.openplanner.team/stops/LHEclef2"], ["https://tec.openplanner.team/stops/LSZclem1", "https://tec.openplanner.team/stops/LSZheid1"], ["https://tec.openplanner.team/stops/X912aha", "https://tec.openplanner.team/stops/X912aia"], ["https://tec.openplanner.team/stops/LAWaube1", "https://tec.openplanner.team/stops/LAWdefr1"], ["https://tec.openplanner.team/stops/H4be100a", "https://tec.openplanner.team/stops/H4be149a"], ["https://tec.openplanner.team/stops/H1bo108a", "https://tec.openplanner.team/stops/H1bo108d"], ["https://tec.openplanner.team/stops/H1sy144a", "https://tec.openplanner.team/stops/H1sy150a"], ["https://tec.openplanner.team/stops/H4bs112a", "https://tec.openplanner.team/stops/H4ca123a"], ["https://tec.openplanner.team/stops/Chhegli3", "https://tec.openplanner.team/stops/Cmx3arb2"], ["https://tec.openplanner.team/stops/X773akb", "https://tec.openplanner.team/stops/X773aoa"], ["https://tec.openplanner.team/stops/H1be100b", "https://tec.openplanner.team/stops/H1be104a"], ["https://tec.openplanner.team/stops/H4be113a", "https://tec.openplanner.team/stops/H4be145b"], ["https://tec.openplanner.team/stops/Crcgmah1", "https://tec.openplanner.team/stops/NH03aeb"], ["https://tec.openplanner.team/stops/H1do113a", "https://tec.openplanner.team/stops/H1do117b"], ["https://tec.openplanner.team/stops/LCRchpl2", "https://tec.openplanner.team/stops/LCReg--1"], ["https://tec.openplanner.team/stops/H4og209a", "https://tec.openplanner.team/stops/H4og209b"], ["https://tec.openplanner.team/stops/LSBdelc1", "https://tec.openplanner.team/stops/LSBdelc2"], ["https://tec.openplanner.team/stops/Cmgbrou2", "https://tec.openplanner.team/stops/Cmgslo2"], ["https://tec.openplanner.team/stops/H4ab100b", "https://tec.openplanner.team/stops/H5ar102a"], ["https://tec.openplanner.team/stops/X982awa", "https://tec.openplanner.team/stops/X982cca"], ["https://tec.openplanner.team/stops/Cobcent1", "https://tec.openplanner.team/stops/Cobvill2"], ["https://tec.openplanner.team/stops/LBoegli2", "https://tec.openplanner.team/stops/LOCponc*"], ["https://tec.openplanner.team/stops/X736aab", "https://tec.openplanner.team/stops/X937aca"], ["https://tec.openplanner.team/stops/N138aea", "https://tec.openplanner.team/stops/N138aia"], ["https://tec.openplanner.team/stops/LdEschw2", "https://tec.openplanner.team/stops/LmDwei31"], ["https://tec.openplanner.team/stops/LCUmars1", "https://tec.openplanner.team/stops/NL57aia"], ["https://tec.openplanner.team/stops/N504aca", "https://tec.openplanner.team/stops/N579ada"], ["https://tec.openplanner.team/stops/Loudemo1", "https://tec.openplanner.team/stops/Loutrix1"], ["https://tec.openplanner.team/stops/Bcbqa362", "https://tec.openplanner.team/stops/Bhalcbr2"], ["https://tec.openplanner.team/stops/H2ha139a", "https://tec.openplanner.team/stops/H2ha141b"], ["https://tec.openplanner.team/stops/Cchccom1", "https://tec.openplanner.team/stops/Cchvil21"], ["https://tec.openplanner.team/stops/H4rc232d", "https://tec.openplanner.team/stops/H4rc234b"], ["https://tec.openplanner.team/stops/N270afc", "https://tec.openplanner.team/stops/N270afd"], ["https://tec.openplanner.team/stops/Lanfran3", "https://tec.openplanner.team/stops/Lanyser2"], ["https://tec.openplanner.team/stops/N254aba", "https://tec.openplanner.team/stops/N254acb"], ["https://tec.openplanner.team/stops/Lbrcygn2", "https://tec.openplanner.team/stops/Lbrmour1"], ["https://tec.openplanner.team/stops/N509aja", "https://tec.openplanner.team/stops/N509ala"], ["https://tec.openplanner.team/stops/X602ada", "https://tec.openplanner.team/stops/X602asa"], ["https://tec.openplanner.team/stops/LLTcent2", "https://tec.openplanner.team/stops/LLTcoop2"], ["https://tec.openplanner.team/stops/X921aba", "https://tec.openplanner.team/stops/X921apa"], ["https://tec.openplanner.team/stops/H4ir167a", "https://tec.openplanner.team/stops/H4va232b"], ["https://tec.openplanner.team/stops/X652afc", "https://tec.openplanner.team/stops/X652afd"], ["https://tec.openplanner.team/stops/NC14afa", "https://tec.openplanner.team/stops/NC14afb"], ["https://tec.openplanner.team/stops/N515ara", "https://tec.openplanner.team/stops/N515arb"], ["https://tec.openplanner.team/stops/X907aia", "https://tec.openplanner.team/stops/X938aaa"], ["https://tec.openplanner.team/stops/Btubcvi2", "https://tec.openplanner.team/stops/Btubois2"], ["https://tec.openplanner.team/stops/LSetrix1", "https://tec.openplanner.team/stops/LSetrix2"], ["https://tec.openplanner.team/stops/Cptcamb2", "https://tec.openplanner.team/stops/Cptegli2"], ["https://tec.openplanner.team/stops/X749afb", "https://tec.openplanner.team/stops/X756agb"], ["https://tec.openplanner.team/stops/Llgmako2", "https://tec.openplanner.team/stops/Llgwall1"], ["https://tec.openplanner.team/stops/H5at123a", "https://tec.openplanner.team/stops/H5at137b"], ["https://tec.openplanner.team/stops/H4ga148d", "https://tec.openplanner.team/stops/H4ga160a"], ["https://tec.openplanner.team/stops/Lvefanc1", "https://tec.openplanner.team/stops/Lveptle3"], ["https://tec.openplanner.team/stops/H2bh107b", "https://tec.openplanner.team/stops/H2bh112b"], ["https://tec.openplanner.team/stops/Lrolecl2", "https://tec.openplanner.team/stops/Lronamo1"], ["https://tec.openplanner.team/stops/Bgzddmo2", "https://tec.openplanner.team/stops/Bgzdegl4"], ["https://tec.openplanner.team/stops/Bnivbau1", "https://tec.openplanner.team/stops/Bnivchh1"], ["https://tec.openplanner.team/stops/H4bd110a", "https://tec.openplanner.team/stops/H4ma203b"], ["https://tec.openplanner.team/stops/Lsehya-1", "https://tec.openplanner.team/stops/Lsehya-2"], ["https://tec.openplanner.team/stops/X857aaa", "https://tec.openplanner.team/stops/X857aab"], ["https://tec.openplanner.team/stops/Cnanoir1", "https://tec.openplanner.team/stops/Cnanoir2"], ["https://tec.openplanner.team/stops/X614aab", "https://tec.openplanner.team/stops/X614alb"], ["https://tec.openplanner.team/stops/LsVprum3", "https://tec.openplanner.team/stops/LwLfuss1"], ["https://tec.openplanner.team/stops/LkEbruc2", "https://tec.openplanner.team/stops/LkEsada2"], ["https://tec.openplanner.team/stops/LHUeuro1", "https://tec.openplanner.team/stops/LHUlebe9"], ["https://tec.openplanner.team/stops/N138aac", "https://tec.openplanner.team/stops/N138aca"], ["https://tec.openplanner.team/stops/Cgynoir1", "https://tec.openplanner.team/stops/Cgythio2"], ["https://tec.openplanner.team/stops/Lghchap2", "https://tec.openplanner.team/stops/Lghferr1"], ["https://tec.openplanner.team/stops/LElgerd3", "https://tec.openplanner.team/stops/LElgerd6"], ["https://tec.openplanner.team/stops/Cchba01", "https://tec.openplanner.team/stops/CMba2"], ["https://tec.openplanner.team/stops/LaMjous1", "https://tec.openplanner.team/stops/LaMschw1"], ["https://tec.openplanner.team/stops/X804aaa", "https://tec.openplanner.team/stops/X804acb"], ["https://tec.openplanner.team/stops/H5pe125a", "https://tec.openplanner.team/stops/H5pe127a"], ["https://tec.openplanner.team/stops/H1ms300a", "https://tec.openplanner.team/stops/H1ms400d"], ["https://tec.openplanner.team/stops/X788acb", "https://tec.openplanner.team/stops/X788adb"], ["https://tec.openplanner.team/stops/Lourose4", "https://tec.openplanner.team/stops/Lourose5"], ["https://tec.openplanner.team/stops/Llgchal1", "https://tec.openplanner.team/stops/Llgplat2"], ["https://tec.openplanner.team/stops/X902aua", "https://tec.openplanner.team/stops/X902aub"], ["https://tec.openplanner.team/stops/N540aka", "https://tec.openplanner.team/stops/N540aob"], ["https://tec.openplanner.team/stops/Bsaupco1", "https://tec.openplanner.team/stops/N541aeb"], ["https://tec.openplanner.team/stops/Ladabot2", "https://tec.openplanner.team/stops/Ladplen*"], ["https://tec.openplanner.team/stops/X754aea", "https://tec.openplanner.team/stops/X754afb"], ["https://tec.openplanner.team/stops/H4by119b", "https://tec.openplanner.team/stops/H4ro154b"], ["https://tec.openplanner.team/stops/N135aqa", "https://tec.openplanner.team/stops/N135bbb"], ["https://tec.openplanner.team/stops/Bolpmre1", "https://tec.openplanner.team/stops/Bpthcai2"], ["https://tec.openplanner.team/stops/LPtrefa2", "https://tec.openplanner.team/stops/LrEochs1"], ["https://tec.openplanner.team/stops/LHSfexh1", "https://tec.openplanner.team/stops/LHSfexh2"], ["https://tec.openplanner.team/stops/N365aba", "https://tec.openplanner.team/stops/X344ada"], ["https://tec.openplanner.team/stops/LSldurb2", "https://tec.openplanner.team/stops/X919aoa"], ["https://tec.openplanner.team/stops/Llgchan1", "https://tec.openplanner.team/stops/Llgcouv4"], ["https://tec.openplanner.team/stops/Lfljupi2", "https://tec.openplanner.team/stops/Lrelier1"], ["https://tec.openplanner.team/stops/Cbfegch2", "https://tec.openplanner.team/stops/NC24aia"], ["https://tec.openplanner.team/stops/N308aoa", "https://tec.openplanner.team/stops/N308aob"], ["https://tec.openplanner.team/stops/LFCkett2", "https://tec.openplanner.team/stops/LFCvoge4"], ["https://tec.openplanner.team/stops/Cbmclar1", "https://tec.openplanner.team/stops/Cbmgare1"], ["https://tec.openplanner.team/stops/LJAmari1", "https://tec.openplanner.team/stops/LSWeg--3"], ["https://tec.openplanner.team/stops/N229ara", "https://tec.openplanner.team/stops/N229asa"], ["https://tec.openplanner.team/stops/LFCdree2", "https://tec.openplanner.team/stops/LMaslav3"], ["https://tec.openplanner.team/stops/Bohncha2", "https://tec.openplanner.team/stops/Bohngen2"], ["https://tec.openplanner.team/stops/Lghhoco2", "https://tec.openplanner.team/stops/Lghmont1"], ["https://tec.openplanner.team/stops/Llgjenn2", "https://tec.openplanner.team/stops/Llgjenn4"], ["https://tec.openplanner.team/stops/Barcbav1", "https://tec.openplanner.team/stops/Barcbav2"], ["https://tec.openplanner.team/stops/X626acb", "https://tec.openplanner.team/stops/X626ada"], ["https://tec.openplanner.team/stops/X661ala", "https://tec.openplanner.team/stops/X817agb"], ["https://tec.openplanner.team/stops/N576aaa", "https://tec.openplanner.team/stops/N576aga"], ["https://tec.openplanner.team/stops/N338aea", "https://tec.openplanner.team/stops/N387ahb"], ["https://tec.openplanner.team/stops/N501hdb", "https://tec.openplanner.team/stops/N501lba"], ["https://tec.openplanner.team/stops/X802aza", "https://tec.openplanner.team/stops/X802azb"], ["https://tec.openplanner.team/stops/Lourose1", "https://tec.openplanner.team/stops/Lourose4"], ["https://tec.openplanner.team/stops/Ladloup2", "https://tec.openplanner.team/stops/Ladmoli1"], ["https://tec.openplanner.team/stops/Lbrrobe3", "https://tec.openplanner.team/stops/Lgrfrcu2"], ["https://tec.openplanner.team/stops/H1em107b", "https://tec.openplanner.team/stops/H1em109b"], ["https://tec.openplanner.team/stops/LTheg--2", "https://tec.openplanner.team/stops/LThelse2"], ["https://tec.openplanner.team/stops/LEN183-1", "https://tec.openplanner.team/stops/LEN183-2"], ["https://tec.openplanner.team/stops/Blhutco1", "https://tec.openplanner.team/stops/Blhutco2"], ["https://tec.openplanner.team/stops/Bohnmes3", "https://tec.openplanner.team/stops/Bohnmes4"], ["https://tec.openplanner.team/stops/H1hh111b", "https://tec.openplanner.team/stops/H1hh114b"], ["https://tec.openplanner.team/stops/H1mb130b", "https://tec.openplanner.team/stops/H1mb138b"], ["https://tec.openplanner.team/stops/N542afb", "https://tec.openplanner.team/stops/N542amb"], ["https://tec.openplanner.team/stops/Lscbarg1", "https://tec.openplanner.team/stops/Ltibell2"], ["https://tec.openplanner.team/stops/Lvimc--2", "https://tec.openplanner.team/stops/Lvitour2"], ["https://tec.openplanner.team/stops/X808ajb", "https://tec.openplanner.team/stops/X850alb"], ["https://tec.openplanner.team/stops/X947ada", "https://tec.openplanner.team/stops/X947afb"], ["https://tec.openplanner.team/stops/N562bia", "https://tec.openplanner.team/stops/N562bka"], ["https://tec.openplanner.team/stops/Louegla1", "https://tec.openplanner.team/stops/Louoran1"], ["https://tec.openplanner.team/stops/X770aca", "https://tec.openplanner.team/stops/X771aha"], ["https://tec.openplanner.team/stops/LMOlens1", "https://tec.openplanner.team/stops/LORpave2"], ["https://tec.openplanner.team/stops/X671aea", "https://tec.openplanner.team/stops/X671afa"], ["https://tec.openplanner.team/stops/LSPguer1", "https://tec.openplanner.team/stops/LSPhapa1"], ["https://tec.openplanner.team/stops/Lvcfogu1", "https://tec.openplanner.team/stops/Lvcreve1"], ["https://tec.openplanner.team/stops/H1ne142a", "https://tec.openplanner.team/stops/H1ne142b"], ["https://tec.openplanner.team/stops/X882aga", "https://tec.openplanner.team/stops/X882agb"], ["https://tec.openplanner.team/stops/LOVhetr1", "https://tec.openplanner.team/stops/LSopost2"], ["https://tec.openplanner.team/stops/Laggare1", "https://tec.openplanner.team/stops/Lagptba2"], ["https://tec.openplanner.team/stops/Cfrcoqu1", "https://tec.openplanner.team/stops/Cfrcoqu3"], ["https://tec.openplanner.team/stops/N166aea", "https://tec.openplanner.team/stops/N166aeb"], ["https://tec.openplanner.team/stops/Lghberl1", "https://tec.openplanner.team/stops/Lmomine1"], ["https://tec.openplanner.team/stops/X346aba", "https://tec.openplanner.team/stops/X346abb"], ["https://tec.openplanner.team/stops/Ccogrha1", "https://tec.openplanner.team/stops/Cpceclu2"], ["https://tec.openplanner.team/stops/Cpipost1", "https://tec.openplanner.team/stops/Cpipost2"], ["https://tec.openplanner.team/stops/H4gr109a", "https://tec.openplanner.team/stops/H4ld124b"], ["https://tec.openplanner.team/stops/H2go114d", "https://tec.openplanner.team/stops/H2go117b"], ["https://tec.openplanner.team/stops/LFochap1", "https://tec.openplanner.team/stops/LFothie1"], ["https://tec.openplanner.team/stops/LThplen2", "https://tec.openplanner.team/stops/LThsere2"], ["https://tec.openplanner.team/stops/LAYdieu2", "https://tec.openplanner.team/stops/LAYsupe1"], ["https://tec.openplanner.team/stops/LtH28a-2", "https://tec.openplanner.team/stops/LtHfrie2"], ["https://tec.openplanner.team/stops/LBVcent1", "https://tec.openplanner.team/stops/LBVzand2"], ["https://tec.openplanner.team/stops/NR38aeb", "https://tec.openplanner.team/stops/NR38afa"], ["https://tec.openplanner.team/stops/Bvirmbr2", "https://tec.openplanner.team/stops/Bvirvol1"], ["https://tec.openplanner.team/stops/H1ms307a", "https://tec.openplanner.team/stops/H1ms902a"], ["https://tec.openplanner.team/stops/Brixfro3", "https://tec.openplanner.team/stops/Brixpao3"], ["https://tec.openplanner.team/stops/Cbfdufa2", "https://tec.openplanner.team/stops/Cctlimi2"], ["https://tec.openplanner.team/stops/H4do102a", "https://tec.openplanner.team/stops/H4do106b"], ["https://tec.openplanner.team/stops/Canplal1", "https://tec.openplanner.team/stops/H2an111b"], ["https://tec.openplanner.team/stops/LFLcarr2", "https://tec.openplanner.team/stops/LFLgara2"], ["https://tec.openplanner.team/stops/Bgliaau2", "https://tec.openplanner.team/stops/Bgliopp3"], ["https://tec.openplanner.team/stops/LeUauto1", "https://tec.openplanner.team/stops/LeUauto2"], ["https://tec.openplanner.team/stops/H5fl102d", "https://tec.openplanner.team/stops/H5wo123a"], ["https://tec.openplanner.team/stops/X910aja", "https://tec.openplanner.team/stops/X911aib"], ["https://tec.openplanner.team/stops/X982aqc", "https://tec.openplanner.team/stops/X982bwa"], ["https://tec.openplanner.team/stops/Lmieg--2", "https://tec.openplanner.team/stops/Lmiensp*"], ["https://tec.openplanner.team/stops/LBEabba1", "https://tec.openplanner.team/stops/LBEnina1"], ["https://tec.openplanner.team/stops/X773aca", "https://tec.openplanner.team/stops/X911abb"], ["https://tec.openplanner.team/stops/H1sd344a", "https://tec.openplanner.team/stops/H1sd344b"], ["https://tec.openplanner.team/stops/N134aaa", "https://tec.openplanner.team/stops/N134aab"], ["https://tec.openplanner.team/stops/X660aga", "https://tec.openplanner.team/stops/X660agb"], ["https://tec.openplanner.team/stops/N241aba", "https://tec.openplanner.team/stops/N585aia"], ["https://tec.openplanner.team/stops/Ccosart1", "https://tec.openplanner.team/stops/Crorogn2"], ["https://tec.openplanner.team/stops/H4ty268a", "https://tec.openplanner.team/stops/H4ty328b"], ["https://tec.openplanner.team/stops/N548aca", "https://tec.openplanner.team/stops/N548acd"], ["https://tec.openplanner.team/stops/H4ce101a", "https://tec.openplanner.team/stops/H4mx115b"], ["https://tec.openplanner.team/stops/X907adb", "https://tec.openplanner.team/stops/X907aeb"], ["https://tec.openplanner.team/stops/X659aja", "https://tec.openplanner.team/stops/X659ana"], ["https://tec.openplanner.team/stops/H1po130b", "https://tec.openplanner.team/stops/H5gr137a"], ["https://tec.openplanner.team/stops/Btilsce1", "https://tec.openplanner.team/stops/Bvlvpco1"], ["https://tec.openplanner.team/stops/Csecarr1", "https://tec.openplanner.team/stops/N424aaa"], ["https://tec.openplanner.team/stops/LWOwa161", "https://tec.openplanner.team/stops/LWOwaer2"], ["https://tec.openplanner.team/stops/LTIdjal2", "https://tec.openplanner.team/stops/LTIptme2"], ["https://tec.openplanner.team/stops/Cmmjami3", "https://tec.openplanner.team/stops/Cmmschw2"], ["https://tec.openplanner.team/stops/Lprmoin2", "https://tec.openplanner.team/stops/Lprorem2"], ["https://tec.openplanner.team/stops/LLefali1", "https://tec.openplanner.team/stops/X547aaa"], ["https://tec.openplanner.team/stops/H4eg103b", "https://tec.openplanner.team/stops/H4eg107a"], ["https://tec.openplanner.team/stops/LGEvill2", "https://tec.openplanner.team/stops/LLSba9-1"], ["https://tec.openplanner.team/stops/N351axa", "https://tec.openplanner.team/stops/N390ama"], ["https://tec.openplanner.team/stops/NR38adb", "https://tec.openplanner.team/stops/NR38aeb"], ["https://tec.openplanner.team/stops/N562bna", "https://tec.openplanner.team/stops/N562bwa"], ["https://tec.openplanner.team/stops/LeUclou2", "https://tec.openplanner.team/stops/LeUvoss1"], ["https://tec.openplanner.team/stops/H1eu104a", "https://tec.openplanner.team/stops/H1eu104b"], ["https://tec.openplanner.team/stops/LMAalli2", "https://tec.openplanner.team/stops/LMAcomm2"], ["https://tec.openplanner.team/stops/LbRfrie2", "https://tec.openplanner.team/stops/LtH37c-1"], ["https://tec.openplanner.team/stops/H4jm116a", "https://tec.openplanner.team/stops/H4we137d"], ["https://tec.openplanner.team/stops/NL76apa", "https://tec.openplanner.team/stops/NL76aqa"], ["https://tec.openplanner.team/stops/N211ana", "https://tec.openplanner.team/stops/N211bab"], ["https://tec.openplanner.team/stops/LMheg--1", "https://tec.openplanner.team/stops/Lprtour2"], ["https://tec.openplanner.team/stops/Lbrcard1", "https://tec.openplanner.team/stops/Lbrlama1"], ["https://tec.openplanner.team/stops/N553ama", "https://tec.openplanner.team/stops/N553ana"], ["https://tec.openplanner.team/stops/N228aab", "https://tec.openplanner.team/stops/N270aaa"], ["https://tec.openplanner.team/stops/Lchacie1", "https://tec.openplanner.team/stops/Lwakipe2"], ["https://tec.openplanner.team/stops/Ccuhaie1", "https://tec.openplanner.team/stops/Ccuoise1"], ["https://tec.openplanner.team/stops/X730aaa", "https://tec.openplanner.team/stops/X730aea"], ["https://tec.openplanner.team/stops/N201aia", "https://tec.openplanner.team/stops/N214aba"], ["https://tec.openplanner.team/stops/H3so184a", "https://tec.openplanner.team/stops/H3so184b"], ["https://tec.openplanner.team/stops/H4wn124a", "https://tec.openplanner.team/stops/H4wn128a"], ["https://tec.openplanner.team/stops/N569ana", "https://tec.openplanner.team/stops/N569anb"], ["https://tec.openplanner.team/stops/N525aeb", "https://tec.openplanner.team/stops/N525aec"], ["https://tec.openplanner.team/stops/Berncim3", "https://tec.openplanner.team/stops/Berncim4"], ["https://tec.openplanner.team/stops/H4fo115b", "https://tec.openplanner.team/stops/H4fo117b"], ["https://tec.openplanner.team/stops/Bgrhche1", "https://tec.openplanner.team/stops/Bgrhcro2"], ["https://tec.openplanner.team/stops/X922aha", "https://tec.openplanner.team/stops/X922ajb"], ["https://tec.openplanner.team/stops/LFarhuy2", "https://tec.openplanner.team/stops/LWAipes2"], ["https://tec.openplanner.team/stops/X808aab", "https://tec.openplanner.team/stops/X808aac"], ["https://tec.openplanner.team/stops/Bolgrsa1", "https://tec.openplanner.team/stops/Bolgrsa2"], ["https://tec.openplanner.team/stops/Cmlrbru2", "https://tec.openplanner.team/stops/Cmlsana2"], ["https://tec.openplanner.team/stops/LCxcouv1", "https://tec.openplanner.team/stops/LMolone1"], ["https://tec.openplanner.team/stops/N539aia", "https://tec.openplanner.team/stops/N539ala"], ["https://tec.openplanner.team/stops/Ccosart4", "https://tec.openplanner.team/stops/Csograf4"], ["https://tec.openplanner.team/stops/H4fr146a", "https://tec.openplanner.team/stops/H4ty327a"], ["https://tec.openplanner.team/stops/NL74adb", "https://tec.openplanner.team/stops/NL74agb"], ["https://tec.openplanner.team/stops/Ccygara1", "https://tec.openplanner.team/stops/Ccygara2"], ["https://tec.openplanner.team/stops/LaMhe421", "https://tec.openplanner.team/stops/LaMthei1"], ["https://tec.openplanner.team/stops/N501gva", "https://tec.openplanner.team/stops/N501lbd"], ["https://tec.openplanner.team/stops/LENengi1", "https://tec.openplanner.team/stops/LENgend2"], ["https://tec.openplanner.team/stops/Cchoues2", "https://tec.openplanner.team/stops/Cchviad2"], ["https://tec.openplanner.team/stops/Lagrask2", "https://tec.openplanner.team/stops/Lemlami1"], ["https://tec.openplanner.team/stops/Louvira2", "https://tec.openplanner.team/stops/Louwuid1"], ["https://tec.openplanner.team/stops/X982atb", "https://tec.openplanner.team/stops/X982cda"], ["https://tec.openplanner.team/stops/Cmlasie1", "https://tec.openplanner.team/stops/Cmlcazi1"], ["https://tec.openplanner.team/stops/X948alb", "https://tec.openplanner.team/stops/X948amc"], ["https://tec.openplanner.team/stops/N201aaa", "https://tec.openplanner.team/stops/N201aja"], ["https://tec.openplanner.team/stops/N204ahb", "https://tec.openplanner.team/stops/N204aia"], ["https://tec.openplanner.team/stops/LScchpl2", "https://tec.openplanner.team/stops/LScdina1"], ["https://tec.openplanner.team/stops/H4hg158b", "https://tec.openplanner.team/stops/H4hg160a"], ["https://tec.openplanner.team/stops/X801bpa", "https://tec.openplanner.team/stops/X801caa"], ["https://tec.openplanner.team/stops/N501hta", "https://tec.openplanner.team/stops/N501iub"], ["https://tec.openplanner.team/stops/Cjubert1", "https://tec.openplanner.team/stops/CMmade1"], ["https://tec.openplanner.team/stops/X725bfa", "https://tec.openplanner.team/stops/X725bfb"], ["https://tec.openplanner.team/stops/Bbstchn2", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/X897adb", "https://tec.openplanner.team/stops/X897ara"], ["https://tec.openplanner.team/stops/N549aea", "https://tec.openplanner.team/stops/N550abe"], ["https://tec.openplanner.team/stops/X806acb", "https://tec.openplanner.team/stops/X806akc"], ["https://tec.openplanner.team/stops/Cfocobe1", "https://tec.openplanner.team/stops/CMpetr1"], ["https://tec.openplanner.team/stops/Bjodeco3", "https://tec.openplanner.team/stops/Bjodrdp2"], ["https://tec.openplanner.team/stops/N538aua", "https://tec.openplanner.team/stops/N538bab"], ["https://tec.openplanner.team/stops/X723acb", "https://tec.openplanner.team/stops/X723agb"], ["https://tec.openplanner.team/stops/Boplcar1", "https://tec.openplanner.team/stops/Boplham2"], ["https://tec.openplanner.team/stops/Lanc14v1", "https://tec.openplanner.team/stops/Lrctec-2"], ["https://tec.openplanner.team/stops/X666abb", "https://tec.openplanner.team/stops/X666acb"], ["https://tec.openplanner.team/stops/H4ty321a", "https://tec.openplanner.team/stops/H4ty321b"], ["https://tec.openplanner.team/stops/H4or113a", "https://tec.openplanner.team/stops/H4or115a"], ["https://tec.openplanner.team/stops/LCxcour1", "https://tec.openplanner.team/stops/LCxcour2"], ["https://tec.openplanner.team/stops/H4oe151a", "https://tec.openplanner.team/stops/H4oe152b"], ["https://tec.openplanner.team/stops/LPRfour2", "https://tec.openplanner.team/stops/LSHneuv2"], ["https://tec.openplanner.team/stops/Lrebriq2", "https://tec.openplanner.team/stops/Lrevaul2"], ["https://tec.openplanner.team/stops/H4pl121b", "https://tec.openplanner.team/stops/H4pl137a"], ["https://tec.openplanner.team/stops/X979aoa", "https://tec.openplanner.team/stops/X982bva"], ["https://tec.openplanner.team/stops/N501gpc", "https://tec.openplanner.team/stops/N501mtd"], ["https://tec.openplanner.team/stops/H2hg157b", "https://tec.openplanner.team/stops/H2hg160a"], ["https://tec.openplanner.team/stops/Lanrois1", "https://tec.openplanner.team/stops/Lantonn2"], ["https://tec.openplanner.team/stops/Lhucime1", "https://tec.openplanner.team/stops/Lhuderu2"], ["https://tec.openplanner.team/stops/Bmlnpab1", "https://tec.openplanner.team/stops/Bptbmco1"], ["https://tec.openplanner.team/stops/N531anb", "https://tec.openplanner.team/stops/N531aoa"], ["https://tec.openplanner.team/stops/Bflegar5", "https://tec.openplanner.team/stops/Cflsncb3"], ["https://tec.openplanner.team/stops/LCvoufn1", "https://tec.openplanner.team/stops/LCvoufn2"], ["https://tec.openplanner.team/stops/N132aaa", "https://tec.openplanner.team/stops/N135abb"], ["https://tec.openplanner.team/stops/Cgualno1", "https://tec.openplanner.team/stops/Ctybaco2"], ["https://tec.openplanner.team/stops/Cci28ju1", "https://tec.openplanner.team/stops/Cciferr1"], ["https://tec.openplanner.team/stops/LAWchau2", "https://tec.openplanner.team/stops/LAWroug2"], ["https://tec.openplanner.team/stops/H4es112b", "https://tec.openplanner.team/stops/H4es117b"], ["https://tec.openplanner.team/stops/N252ada", "https://tec.openplanner.team/stops/N252adb"], ["https://tec.openplanner.team/stops/LHUpsar1", "https://tec.openplanner.team/stops/LHUvege2"], ["https://tec.openplanner.team/stops/H1ba111a", "https://tec.openplanner.team/stops/H1ba112a"], ["https://tec.openplanner.team/stops/X619aca", "https://tec.openplanner.team/stops/X619acb"], ["https://tec.openplanner.team/stops/X643aba", "https://tec.openplanner.team/stops/X646abb"], ["https://tec.openplanner.team/stops/X922aba", "https://tec.openplanner.team/stops/X922abb"], ["https://tec.openplanner.team/stops/NL76alb", "https://tec.openplanner.team/stops/NL76alc"], ["https://tec.openplanner.team/stops/Bnilpje1", "https://tec.openplanner.team/stops/Bnilpje2"], ["https://tec.openplanner.team/stops/LGAbois2", "https://tec.openplanner.team/stops/LGAnovi2"], ["https://tec.openplanner.team/stops/LBLcalv2", "https://tec.openplanner.team/stops/LBLplac1"], ["https://tec.openplanner.team/stops/H1gi119c", "https://tec.openplanner.team/stops/H1gi121a"], ["https://tec.openplanner.team/stops/X754aka", "https://tec.openplanner.team/stops/X754awa"], ["https://tec.openplanner.team/stops/Blmlcle1", "https://tec.openplanner.team/stops/Blmlcle2"], ["https://tec.openplanner.team/stops/X650afe", "https://tec.openplanner.team/stops/X658aaa"], ["https://tec.openplanner.team/stops/LBRmc--4", "https://tec.openplanner.team/stops/LBRruel2"], ["https://tec.openplanner.team/stops/LBBpech2", "https://tec.openplanner.team/stops/LMnlogi1"], ["https://tec.openplanner.team/stops/LAyabri1", "https://tec.openplanner.team/stops/Lrechap2"], ["https://tec.openplanner.team/stops/Buccdst2", "https://tec.openplanner.team/stops/Buccobs1"], ["https://tec.openplanner.team/stops/LwAkape2", "https://tec.openplanner.team/stops/LwAlont2"], ["https://tec.openplanner.team/stops/Bnivbau2", "https://tec.openplanner.team/stops/Bnivmet2"], ["https://tec.openplanner.team/stops/H1mb125a", "https://tec.openplanner.team/stops/H1mb127a"], ["https://tec.openplanner.team/stops/Bbrlmez2", "https://tec.openplanner.team/stops/Blkbbeu2"], ["https://tec.openplanner.team/stops/NL77akb", "https://tec.openplanner.team/stops/NL77alb"], ["https://tec.openplanner.team/stops/H1an103b", "https://tec.openplanner.team/stops/H1bx105b"], ["https://tec.openplanner.team/stops/X850afb", "https://tec.openplanner.team/stops/X850aia"], ["https://tec.openplanner.team/stops/H2sb259a", "https://tec.openplanner.team/stops/H3lr110a"], ["https://tec.openplanner.team/stops/Llgjoie3", "https://tec.openplanner.team/stops/Llgrosa2"], ["https://tec.openplanner.team/stops/N565aaa", "https://tec.openplanner.team/stops/N565adb"], ["https://tec.openplanner.team/stops/Llgboux1", "https://tec.openplanner.team/stops/Llgherm2"], ["https://tec.openplanner.team/stops/H1qv110b", "https://tec.openplanner.team/stops/H4be101a"], ["https://tec.openplanner.team/stops/LVLhalb2", "https://tec.openplanner.team/stops/LVLpane1"], ["https://tec.openplanner.team/stops/N504aba", "https://tec.openplanner.team/stops/N579aeb"], ["https://tec.openplanner.team/stops/X801bea", "https://tec.openplanner.team/stops/X801cfb"], ["https://tec.openplanner.team/stops/NL76aha", "https://tec.openplanner.team/stops/NL77acb"], ["https://tec.openplanner.team/stops/N509aca", "https://tec.openplanner.team/stops/N509acc"], ["https://tec.openplanner.team/stops/H4ta122a", "https://tec.openplanner.team/stops/H4ta123a"], ["https://tec.openplanner.team/stops/X608aeb", "https://tec.openplanner.team/stops/X608apb"], ["https://tec.openplanner.team/stops/X642aab", "https://tec.openplanner.team/stops/X646aaa"], ["https://tec.openplanner.team/stops/LFChuis2", "https://tec.openplanner.team/stops/LWRgare1"], ["https://tec.openplanner.team/stops/LaHzoll*", "https://tec.openplanner.team/stops/LrOwahl1"], ["https://tec.openplanner.team/stops/LLxalle1", "https://tec.openplanner.team/stops/LLxalle2"], ["https://tec.openplanner.team/stops/LbTcarm1", "https://tec.openplanner.team/stops/LbTschw1"], ["https://tec.openplanner.team/stops/LSeec--1", "https://tec.openplanner.team/stops/LSeec--2"], ["https://tec.openplanner.team/stops/N110aha", "https://tec.openplanner.team/stops/N111adb"], ["https://tec.openplanner.team/stops/N549ada", "https://tec.openplanner.team/stops/N577aka"], ["https://tec.openplanner.team/stops/Cculgeo1", "https://tec.openplanner.team/stops/Ccutrav2"], ["https://tec.openplanner.team/stops/H1cu113b", "https://tec.openplanner.team/stops/H1fr151b"], ["https://tec.openplanner.team/stops/Llgbruy1", "https://tec.openplanner.team/stops/Llgbruy2"], ["https://tec.openplanner.team/stops/X651aab", "https://tec.openplanner.team/stops/X651ada"], ["https://tec.openplanner.team/stops/X818aba", "https://tec.openplanner.team/stops/X818adb"], ["https://tec.openplanner.team/stops/X780ajb", "https://tec.openplanner.team/stops/X790aka"], ["https://tec.openplanner.team/stops/H2fy121b", "https://tec.openplanner.team/stops/H2fy123b"], ["https://tec.openplanner.team/stops/H4mo154a", "https://tec.openplanner.team/stops/H4mo169a"], ["https://tec.openplanner.team/stops/H4pl117b", "https://tec.openplanner.team/stops/H4pl120a"], ["https://tec.openplanner.team/stops/N117aya", "https://tec.openplanner.team/stops/N117ayb"], ["https://tec.openplanner.team/stops/NH01ala", "https://tec.openplanner.team/stops/NH01alb"], ["https://tec.openplanner.team/stops/LRMeg--1", "https://tec.openplanner.team/stops/X512aib"], ["https://tec.openplanner.team/stops/H1pa106c", "https://tec.openplanner.team/stops/H1pa166b"], ["https://tec.openplanner.team/stops/Cmitrie2", "https://tec.openplanner.team/stops/Csecroi1"], ["https://tec.openplanner.team/stops/N543cba", "https://tec.openplanner.team/stops/N543cca"], ["https://tec.openplanner.team/stops/NH01aoa", "https://tec.openplanner.team/stops/NH01aqb"], ["https://tec.openplanner.team/stops/X602agb", "https://tec.openplanner.team/stops/X602aha"], ["https://tec.openplanner.team/stops/Btubaig1", "https://tec.openplanner.team/stops/Btubmon2"], ["https://tec.openplanner.team/stops/LGecite1", "https://tec.openplanner.team/stops/LGesent2"], ["https://tec.openplanner.team/stops/LeUhaas1", "https://tec.openplanner.team/stops/LeUhaas2"], ["https://tec.openplanner.team/stops/Llonaes2", "https://tec.openplanner.team/stops/Lloross2"], ["https://tec.openplanner.team/stops/Ljubonf2", "https://tec.openplanner.team/stops/Ljufore2"], ["https://tec.openplanner.team/stops/Cwgrans1", "https://tec.openplanner.team/stops/Cwgtill2"], ["https://tec.openplanner.team/stops/LmIvale1", "https://tec.openplanner.team/stops/LmIvale4"], ["https://tec.openplanner.team/stops/N106aia", "https://tec.openplanner.team/stops/N106aib"], ["https://tec.openplanner.team/stops/N117aca", "https://tec.openplanner.team/stops/N147acb"], ["https://tec.openplanner.team/stops/CMleer1", "https://tec.openplanner.team/stops/CMpara2"], ["https://tec.openplanner.team/stops/X714aba", "https://tec.openplanner.team/stops/X714aca"], ["https://tec.openplanner.team/stops/Lprorem2", "https://tec.openplanner.team/stops/Lprorph2"], ["https://tec.openplanner.team/stops/LFebas-2", "https://tec.openplanner.team/stops/LRIcent1"], ["https://tec.openplanner.team/stops/Ccstord2", "https://tec.openplanner.team/stops/Chhdubr2"], ["https://tec.openplanner.team/stops/X646aab", "https://tec.openplanner.team/stops/X646aba"], ["https://tec.openplanner.team/stops/Lsehcoc2", "https://tec.openplanner.team/stops/Lsephar2"], ["https://tec.openplanner.team/stops/LVlroua1", "https://tec.openplanner.team/stops/LVltige2"], ["https://tec.openplanner.team/stops/Bbcogpl1", "https://tec.openplanner.team/stops/H3br102b"], ["https://tec.openplanner.team/stops/H4fl114a", "https://tec.openplanner.team/stops/H4fl114b"], ["https://tec.openplanner.team/stops/Lghhaut1", "https://tec.openplanner.team/stops/Lghhaut2"], ["https://tec.openplanner.team/stops/Bovelge1", "https://tec.openplanner.team/stops/Bovelge2"], ["https://tec.openplanner.team/stops/H2mi123b", "https://tec.openplanner.team/stops/H2mi124b"], ["https://tec.openplanner.team/stops/N118axa", "https://tec.openplanner.team/stops/N118bbb"], ["https://tec.openplanner.team/stops/LDOandr1", "https://tec.openplanner.team/stops/LDOandr3"], ["https://tec.openplanner.team/stops/N501ija", "https://tec.openplanner.team/stops/N501ilb"], ["https://tec.openplanner.team/stops/Lsn184-2", "https://tec.openplanner.team/stops/Lsntvbi2"], ["https://tec.openplanner.team/stops/Bblaall1", "https://tec.openplanner.team/stops/Bblaall2"], ["https://tec.openplanner.team/stops/X740aba", "https://tec.openplanner.team/stops/X740aga"], ["https://tec.openplanner.team/stops/Bwagcus1", "https://tec.openplanner.team/stops/Csawagn2"], ["https://tec.openplanner.team/stops/NL80aib", "https://tec.openplanner.team/stops/NL80aub"], ["https://tec.openplanner.team/stops/Bnivbpe2", "https://tec.openplanner.team/stops/Bnivsho2"], ["https://tec.openplanner.team/stops/LVEh16-1", "https://tec.openplanner.team/stops/LVEhali1"], ["https://tec.openplanner.team/stops/N204afa", "https://tec.openplanner.team/stops/N204afb"], ["https://tec.openplanner.team/stops/Cchviad2", "https://tec.openplanner.team/stops/CMpige1"], ["https://tec.openplanner.team/stops/LDLboul2", "https://tec.openplanner.team/stops/LGMhadr1"], ["https://tec.openplanner.team/stops/X672afa", "https://tec.openplanner.team/stops/X672afb"], ["https://tec.openplanner.team/stops/H5pe139b", "https://tec.openplanner.team/stops/H5pe152b"], ["https://tec.openplanner.team/stops/Cbcha651", "https://tec.openplanner.team/stops/Cbcha652"], ["https://tec.openplanner.team/stops/LHYec--2", "https://tec.openplanner.team/stops/LHYlinc1"], ["https://tec.openplanner.team/stops/Bcharce2", "https://tec.openplanner.team/stops/Bcrnsge1"], ["https://tec.openplanner.team/stops/N120add", "https://tec.openplanner.team/stops/N301aha"], ["https://tec.openplanner.team/stops/Bgnvfai2", "https://tec.openplanner.team/stops/Bgnvqve1"], ["https://tec.openplanner.team/stops/LENparc1", "https://tec.openplanner.team/stops/LGlcite2"], ["https://tec.openplanner.team/stops/LERdeho1", "https://tec.openplanner.team/stops/LERpouh2"], ["https://tec.openplanner.team/stops/H4do102a", "https://tec.openplanner.team/stops/H4sl155b"], ["https://tec.openplanner.team/stops/Bjodced1", "https://tec.openplanner.team/stops/NR10acb"], ["https://tec.openplanner.team/stops/Lrcvinc1", "https://tec.openplanner.team/stops/Lrcvinc2"], ["https://tec.openplanner.team/stops/N232cea", "https://tec.openplanner.team/stops/N260adb"], ["https://tec.openplanner.team/stops/H1fa118a", "https://tec.openplanner.team/stops/H1pe131b"], ["https://tec.openplanner.team/stops/LHGvill1", "https://tec.openplanner.team/stops/LVllieg2"], ["https://tec.openplanner.team/stops/Bblacea2", "https://tec.openplanner.team/stops/Bblaegl2"], ["https://tec.openplanner.team/stops/H5qu150a", "https://tec.openplanner.team/stops/H5qu155a"], ["https://tec.openplanner.team/stops/X754anb", "https://tec.openplanner.team/stops/X754ava"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N313aeb"], ["https://tec.openplanner.team/stops/X664add", "https://tec.openplanner.team/stops/X667adb"], ["https://tec.openplanner.team/stops/H4my121a", "https://tec.openplanner.team/stops/H4my122b"], ["https://tec.openplanner.team/stops/H4hx113b", "https://tec.openplanner.team/stops/H4lu125b"], ["https://tec.openplanner.team/stops/X754ahb", "https://tec.openplanner.team/stops/X754aja"], ["https://tec.openplanner.team/stops/Cfoperz1", "https://tec.openplanner.team/stops/Cfoperz2"], ["https://tec.openplanner.team/stops/H4ga168a", "https://tec.openplanner.team/stops/H4ga169a"], ["https://tec.openplanner.team/stops/Lveleje1", "https://tec.openplanner.team/stops/Lveveou1"], ["https://tec.openplanner.team/stops/N550aab", "https://tec.openplanner.team/stops/N550abd"], ["https://tec.openplanner.team/stops/Bbsigaz1", "https://tec.openplanner.team/stops/Bbsigaz2"], ["https://tec.openplanner.team/stops/LFmcarr1", "https://tec.openplanner.team/stops/LFmgeno2"], ["https://tec.openplanner.team/stops/Cmasncb1", "https://tec.openplanner.team/stops/Cmastfi1"], ["https://tec.openplanner.team/stops/Ccheden1", "https://tec.openplanner.team/stops/Cchoues3"], ["https://tec.openplanner.team/stops/LBivi--1", "https://tec.openplanner.team/stops/LHCquat1"], ["https://tec.openplanner.team/stops/Bmrlsau1", "https://tec.openplanner.team/stops/Bmrlsau2"], ["https://tec.openplanner.team/stops/LAxbott1", "https://tec.openplanner.team/stops/Lhecarc2"], ["https://tec.openplanner.team/stops/N543bqa", "https://tec.openplanner.team/stops/N543bqb"], ["https://tec.openplanner.team/stops/H5pe131a", "https://tec.openplanner.team/stops/H5pe150a"], ["https://tec.openplanner.team/stops/Ladthom1", "https://tec.openplanner.team/stops/Lverema2"], ["https://tec.openplanner.team/stops/H4mx118b", "https://tec.openplanner.team/stops/H4mx119c"], ["https://tec.openplanner.team/stops/X717agc", "https://tec.openplanner.team/stops/X717aja"], ["https://tec.openplanner.team/stops/Cchparc1", "https://tec.openplanner.team/stops/Cchprun1"], ["https://tec.openplanner.team/stops/LClsacr2", "https://tec.openplanner.team/stops/LELhard2"], ["https://tec.openplanner.team/stops/Bbchdev1", "https://tec.openplanner.team/stops/Bbchpil2"], ["https://tec.openplanner.team/stops/LCFchir2", "https://tec.openplanner.team/stops/LFIcabi2"], ["https://tec.openplanner.team/stops/Caccera1", "https://tec.openplanner.team/stops/NC44aeb"], ["https://tec.openplanner.team/stops/X775aca", "https://tec.openplanner.team/stops/X775acb"], ["https://tec.openplanner.team/stops/Lmagara1", "https://tec.openplanner.team/stops/Lmagara2"], ["https://tec.openplanner.team/stops/LFHsucr1", "https://tec.openplanner.team/stops/LFHsucr2"], ["https://tec.openplanner.team/stops/Livgera2", "https://tec.openplanner.team/stops/Livjeu-1"], ["https://tec.openplanner.team/stops/LmHbien2", "https://tec.openplanner.team/stops/LmHburg1"], ["https://tec.openplanner.team/stops/X784abb", "https://tec.openplanner.team/stops/X784ajb"], ["https://tec.openplanner.team/stops/Cjuloos1", "https://tec.openplanner.team/stops/Cjumest1"], ["https://tec.openplanner.team/stops/H4al100b", "https://tec.openplanner.team/stops/H4ty278b"], ["https://tec.openplanner.team/stops/Bhenard1", "https://tec.openplanner.team/stops/Bhenard3"], ["https://tec.openplanner.team/stops/N212aba", "https://tec.openplanner.team/stops/N212ajb"], ["https://tec.openplanner.team/stops/X812aca", "https://tec.openplanner.team/stops/X812afb"], ["https://tec.openplanner.team/stops/X721afb", "https://tec.openplanner.team/stops/X721aia"], ["https://tec.openplanner.team/stops/X805aeb", "https://tec.openplanner.team/stops/X869aab"], ["https://tec.openplanner.team/stops/H1wa157b", "https://tec.openplanner.team/stops/H1wg125c"], ["https://tec.openplanner.team/stops/N533afb", "https://tec.openplanner.team/stops/N551aba"], ["https://tec.openplanner.team/stops/LBkwind2", "https://tec.openplanner.team/stops/LWEmito1"], ["https://tec.openplanner.team/stops/N528asb", "https://tec.openplanner.team/stops/N528aua"], ["https://tec.openplanner.team/stops/Lstamph2", "https://tec.openplanner.team/stops/Lstchim2"], ["https://tec.openplanner.team/stops/X615aqa", "https://tec.openplanner.team/stops/X615aqb"], ["https://tec.openplanner.team/stops/Bblabar1", "https://tec.openplanner.team/stops/Bblajap1"], ["https://tec.openplanner.team/stops/N570agb", "https://tec.openplanner.team/stops/N585alb"], ["https://tec.openplanner.team/stops/X396aea", "https://tec.openplanner.team/stops/X396aeb"], ["https://tec.openplanner.team/stops/H1gg115a", "https://tec.openplanner.team/stops/H1gg115b"], ["https://tec.openplanner.team/stops/Cctpano2", "https://tec.openplanner.team/stops/NC11alb"], ["https://tec.openplanner.team/stops/N135bba", "https://tec.openplanner.team/stops/N135bea"], ["https://tec.openplanner.team/stops/Bmelenf1", "https://tec.openplanner.team/stops/Bmelsab1"], ["https://tec.openplanner.team/stops/LMoeg--1", "https://tec.openplanner.team/stops/LMoviel1"], ["https://tec.openplanner.team/stops/LGEcons1", "https://tec.openplanner.team/stops/LHgroso2"], ["https://tec.openplanner.team/stops/Llgchau2", "https://tec.openplanner.team/stops/Llgglai2"], ["https://tec.openplanner.team/stops/Bpechos1", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://tec.openplanner.team/stops/X601bfa", "https://tec.openplanner.team/stops/X601bfb"], ["https://tec.openplanner.team/stops/Cjupllo2", "https://tec.openplanner.team/stops/Clostan1"], ["https://tec.openplanner.team/stops/Bplncsd2", "https://tec.openplanner.team/stops/Bwatmgo3"], ["https://tec.openplanner.team/stops/X747aab", "https://tec.openplanner.team/stops/X747aac"], ["https://tec.openplanner.team/stops/Cfcgar1", "https://tec.openplanner.team/stops/Cfcgar2"], ["https://tec.openplanner.team/stops/H4bc102b", "https://tec.openplanner.team/stops/H4bc108b"], ["https://tec.openplanner.team/stops/LNIdoma1", "https://tec.openplanner.team/stops/LSZjona2"], ["https://tec.openplanner.team/stops/Bgembhe1", "https://tec.openplanner.team/stops/N541aba"], ["https://tec.openplanner.team/stops/N155aga", "https://tec.openplanner.team/stops/N160acb"], ["https://tec.openplanner.team/stops/N155aja", "https://tec.openplanner.team/stops/NC14avb"], ["https://tec.openplanner.team/stops/H1hb197a", "https://tec.openplanner.team/stops/H1si153a"], ["https://tec.openplanner.team/stops/Lghsimo2", "https://tec.openplanner.team/stops/Lmolagu1"], ["https://tec.openplanner.team/stops/LFUfonc1", "https://tec.openplanner.team/stops/LWDcime2"], ["https://tec.openplanner.team/stops/H4ty285a", "https://tec.openplanner.team/stops/H4ty335a"], ["https://tec.openplanner.team/stops/N117aba", "https://tec.openplanner.team/stops/N145ahb"], ["https://tec.openplanner.team/stops/Cmosaba2", "https://tec.openplanner.team/stops/Cmosaba3"], ["https://tec.openplanner.team/stops/X343aic", "https://tec.openplanner.team/stops/X892aga"], ["https://tec.openplanner.team/stops/LBpberl1", "https://tec.openplanner.team/stops/LBpcren2"], ["https://tec.openplanner.team/stops/Cfrchro2", "https://tec.openplanner.team/stops/Cfrgare3"], ["https://tec.openplanner.team/stops/LbOvith1", "https://tec.openplanner.team/stops/LnEleje2"], ["https://tec.openplanner.team/stops/Bbghsta3", "https://tec.openplanner.team/stops/Bstesar1"], ["https://tec.openplanner.team/stops/Bincegl1", "https://tec.openplanner.team/stops/Binclib2"], ["https://tec.openplanner.team/stops/H4gr108b", "https://tec.openplanner.team/stops/H4gr110b"], ["https://tec.openplanner.team/stops/X812aia", "https://tec.openplanner.team/stops/X812ata"], ["https://tec.openplanner.team/stops/LROmorf1", "https://tec.openplanner.team/stops/LWahetr2"], ["https://tec.openplanner.team/stops/H1vt195a", "https://tec.openplanner.team/stops/H1vt196b"], ["https://tec.openplanner.team/stops/N501boa", "https://tec.openplanner.team/stops/N501jma"], ["https://tec.openplanner.team/stops/X901axb", "https://tec.openplanner.team/stops/X902bfa"], ["https://tec.openplanner.team/stops/X666agb", "https://tec.openplanner.team/stops/X666aha"], ["https://tec.openplanner.team/stops/X873aaa", "https://tec.openplanner.team/stops/X873aba"], ["https://tec.openplanner.team/stops/X901ada", "https://tec.openplanner.team/stops/X901bra"], ["https://tec.openplanner.team/stops/X802aja", "https://tec.openplanner.team/stops/X802aza"], ["https://tec.openplanner.team/stops/X759agb", "https://tec.openplanner.team/stops/X840abb"], ["https://tec.openplanner.team/stops/X390ajb", "https://tec.openplanner.team/stops/X390apb"], ["https://tec.openplanner.team/stops/Btubnco2", "https://tec.openplanner.team/stops/Btubsca1"], ["https://tec.openplanner.team/stops/X804bka", "https://tec.openplanner.team/stops/X804cba"], ["https://tec.openplanner.team/stops/H2ep144a", "https://tec.openplanner.team/stops/H2re175b"], ["https://tec.openplanner.team/stops/H4br107a", "https://tec.openplanner.team/stops/H4br109a"], ["https://tec.openplanner.team/stops/LwMzoll1", "https://tec.openplanner.team/stops/X793aqa"], ["https://tec.openplanner.team/stops/N576ada", "https://tec.openplanner.team/stops/N576adb"], ["https://tec.openplanner.team/stops/LLmcarr2", "https://tec.openplanner.team/stops/LLmwaut1"], ["https://tec.openplanner.team/stops/H1cd111c", "https://tec.openplanner.team/stops/H1hr128a"], ["https://tec.openplanner.team/stops/X793afc", "https://tec.openplanner.team/stops/X793agb"], ["https://tec.openplanner.team/stops/Cfmsncb2", "https://tec.openplanner.team/stops/H2tz115b"], ["https://tec.openplanner.team/stops/LLirout1", "https://tec.openplanner.team/stops/LRemorr4"], ["https://tec.openplanner.team/stops/Bjodpvi1", "https://tec.openplanner.team/stops/Bjodsme1"], ["https://tec.openplanner.team/stops/X664aga", "https://tec.openplanner.team/stops/X664asa"], ["https://tec.openplanner.team/stops/X938abb", "https://tec.openplanner.team/stops/X939aeb"], ["https://tec.openplanner.team/stops/LHmferm2", "https://tec.openplanner.team/stops/LLbvith1"], ["https://tec.openplanner.team/stops/H5bl115d", "https://tec.openplanner.team/stops/H5bl119d"], ["https://tec.openplanner.team/stops/Bnivhut1", "https://tec.openplanner.team/stops/Bptrlux1"], ["https://tec.openplanner.team/stops/Bwlhpmt2", "https://tec.openplanner.team/stops/Bwspbbo1"], ["https://tec.openplanner.team/stops/Cmmramb1", "https://tec.openplanner.team/stops/Cmybefe1"], ["https://tec.openplanner.team/stops/Bblaadm1", "https://tec.openplanner.team/stops/Bblabar1"], ["https://tec.openplanner.team/stops/N357aeb", "https://tec.openplanner.team/stops/N988aaa"], ["https://tec.openplanner.team/stops/X747alb", "https://tec.openplanner.team/stops/X754agb"], ["https://tec.openplanner.team/stops/Lbrcard2", "https://tec.openplanner.team/stops/Lbrfusi1"], ["https://tec.openplanner.team/stops/H3so156a", "https://tec.openplanner.team/stops/H3so156b"], ["https://tec.openplanner.team/stops/Llgbatt2", "https://tec.openplanner.team/stops/Llgcamp2"], ["https://tec.openplanner.team/stops/Cci4bra3", "https://tec.openplanner.team/stops/Cmlaili1"], ["https://tec.openplanner.team/stops/H1al107a", "https://tec.openplanner.team/stops/H1bs110c"], ["https://tec.openplanner.team/stops/LSZcock1", "https://tec.openplanner.team/stops/LWycarr1"], ["https://tec.openplanner.team/stops/H2fa102b", "https://tec.openplanner.team/stops/H2fa104a"], ["https://tec.openplanner.team/stops/X756aea", "https://tec.openplanner.team/stops/X756aed"], ["https://tec.openplanner.team/stops/N571aba", "https://tec.openplanner.team/stops/N571aka"], ["https://tec.openplanner.team/stops/H5qu153a", "https://tec.openplanner.team/stops/H5qu155a"], ["https://tec.openplanner.team/stops/X908apa", "https://tec.openplanner.team/stops/X908apb"], ["https://tec.openplanner.team/stops/Cmbborn1", "https://tec.openplanner.team/stops/Cmbcime3"], ["https://tec.openplanner.team/stops/X879aja", "https://tec.openplanner.team/stops/X879ana"], ["https://tec.openplanner.team/stops/X345aca", "https://tec.openplanner.team/stops/X363aca"], ["https://tec.openplanner.team/stops/N155aja", "https://tec.openplanner.team/stops/N160ahb"], ["https://tec.openplanner.team/stops/N340aea", "https://tec.openplanner.team/stops/N340aeb"], ["https://tec.openplanner.team/stops/LbUbutg2", "https://tec.openplanner.team/stops/LbUmalm1"], ["https://tec.openplanner.team/stops/Bchgbar1", "https://tec.openplanner.team/stops/Bchgbru1"], ["https://tec.openplanner.team/stops/Bbonegl1", "https://tec.openplanner.team/stops/Bdvminc2"], ["https://tec.openplanner.team/stops/Bblacco1", "https://tec.openplanner.team/stops/Bwatbno2"], ["https://tec.openplanner.team/stops/LTRoasi1", "https://tec.openplanner.team/stops/LTRsain2"], ["https://tec.openplanner.team/stops/LBgnach1", "https://tec.openplanner.team/stops/LBgnach2"], ["https://tec.openplanner.team/stops/LbTschw2", "https://tec.openplanner.team/stops/LbUwhon1"], ["https://tec.openplanner.team/stops/Cwfcast1", "https://tec.openplanner.team/stops/NC23aga"], ["https://tec.openplanner.team/stops/Bbsgrve1", "https://tec.openplanner.team/stops/Bnettir1"], ["https://tec.openplanner.team/stops/H4wi175a", "https://tec.openplanner.team/stops/H4wi175b"], ["https://tec.openplanner.team/stops/LaMhe831", "https://tec.openplanner.team/stops/LaMschr2"], ["https://tec.openplanner.team/stops/X907aib", "https://tec.openplanner.team/stops/X908aoa"], ["https://tec.openplanner.team/stops/X610aca", "https://tec.openplanner.team/stops/X610acb"], ["https://tec.openplanner.team/stops/H1vs146a", "https://tec.openplanner.team/stops/H1vs146b"], ["https://tec.openplanner.team/stops/LLTgole1", "https://tec.openplanner.team/stops/LTOeg--2"], ["https://tec.openplanner.team/stops/Bsgipha3", "https://tec.openplanner.team/stops/Bsgipmo2"], ["https://tec.openplanner.team/stops/LOLbout2", "https://tec.openplanner.team/stops/LXHadam2"], ["https://tec.openplanner.team/stops/X662acb", "https://tec.openplanner.team/stops/X663afa"], ["https://tec.openplanner.team/stops/Bwatali1", "https://tec.openplanner.team/stops/Bwatpas1"], ["https://tec.openplanner.team/stops/LHUanth2", "https://tec.openplanner.team/stops/LHUetie*"], ["https://tec.openplanner.team/stops/H1gh143b", "https://tec.openplanner.team/stops/H1gh171b"], ["https://tec.openplanner.team/stops/X733ajb", "https://tec.openplanner.team/stops/X734aka"], ["https://tec.openplanner.team/stops/H1vt192a", "https://tec.openplanner.team/stops/H1vt192b"], ["https://tec.openplanner.team/stops/N236ajb", "https://tec.openplanner.team/stops/N236apb"], ["https://tec.openplanner.team/stops/LVMchpl1", "https://tec.openplanner.team/stops/LVMfoli2"], ["https://tec.openplanner.team/stops/H1al146a", "https://tec.openplanner.team/stops/H1bl100a"], ["https://tec.openplanner.team/stops/LTRfica1", "https://tec.openplanner.team/stops/LTRfica2"], ["https://tec.openplanner.team/stops/Lbrgrot2", "https://tec.openplanner.team/stops/Llggeer3"], ["https://tec.openplanner.team/stops/Bwatnrs1", "https://tec.openplanner.team/stops/Bwatppa1"], ["https://tec.openplanner.team/stops/N506bab", "https://tec.openplanner.team/stops/N506bad"], ["https://tec.openplanner.team/stops/LBYegli2", "https://tec.openplanner.team/stops/Lgdblom2"], ["https://tec.openplanner.team/stops/LMIterr1", "https://tec.openplanner.team/stops/LSOfech2"], ["https://tec.openplanner.team/stops/Cfacamp1", "https://tec.openplanner.team/stops/Cfaetoi2"], ["https://tec.openplanner.team/stops/Cjufour4", "https://tec.openplanner.team/stops/Cjupui01"], ["https://tec.openplanner.team/stops/LCIsucr1", "https://tec.openplanner.team/stops/LVPduvi2"], ["https://tec.openplanner.team/stops/Cjuchli1", "https://tec.openplanner.team/stops/Cjuchli2"], ["https://tec.openplanner.team/stops/H2sv212b", "https://tec.openplanner.team/stops/H2tr246a"], ["https://tec.openplanner.team/stops/N539aha", "https://tec.openplanner.team/stops/N539ata"], ["https://tec.openplanner.team/stops/LMomonc2", "https://tec.openplanner.team/stops/LMovieu1"], ["https://tec.openplanner.team/stops/X897afb", "https://tec.openplanner.team/stops/X951acb"], ["https://tec.openplanner.team/stops/N331aja", "https://tec.openplanner.team/stops/N331ajb"], ["https://tec.openplanner.team/stops/H1ms296a", "https://tec.openplanner.team/stops/H1ms923a"], ["https://tec.openplanner.team/stops/X601afa", "https://tec.openplanner.team/stops/X601afb"], ["https://tec.openplanner.team/stops/Lhrpaep2", "https://tec.openplanner.team/stops/Llghori1"], ["https://tec.openplanner.team/stops/Bfelbri1", "https://tec.openplanner.team/stops/Bfelgar2"], ["https://tec.openplanner.team/stops/LwYcafe1", "https://tec.openplanner.team/stops/LwYneue1"], ["https://tec.openplanner.team/stops/H2mi122a", "https://tec.openplanner.team/stops/H3lr111a"], ["https://tec.openplanner.team/stops/LkTkabi2", "https://tec.openplanner.team/stops/LwAkett2"], ["https://tec.openplanner.team/stops/Cchjaur1", "https://tec.openplanner.team/stops/Cdasama2"], ["https://tec.openplanner.team/stops/Cbckios1", "https://tec.openplanner.team/stops/Clfpomm2"], ["https://tec.openplanner.team/stops/LmIvale2", "https://tec.openplanner.team/stops/LmIzent1"], ["https://tec.openplanner.team/stops/LESgran1", "https://tec.openplanner.team/stops/LFNhame1"], ["https://tec.openplanner.team/stops/Cvllerm1", "https://tec.openplanner.team/stops/Cvllerm2"], ["https://tec.openplanner.team/stops/Lhrferr2", "https://tec.openplanner.team/stops/Lhrlaix2"], ["https://tec.openplanner.team/stops/N343ada", "https://tec.openplanner.team/stops/X345aaa"], ["https://tec.openplanner.team/stops/Lceembo1", "https://tec.openplanner.team/stops/Lemmeha2"], ["https://tec.openplanner.team/stops/Clodesc2", "https://tec.openplanner.team/stops/Clomart1"], ["https://tec.openplanner.team/stops/Clbentr1", "https://tec.openplanner.team/stops/Cthpano1"], ["https://tec.openplanner.team/stops/LbTaral1", "https://tec.openplanner.team/stops/LbThau11"], ["https://tec.openplanner.team/stops/N501boa", "https://tec.openplanner.team/stops/N501bpb"], ["https://tec.openplanner.team/stops/H4do102b", "https://tec.openplanner.team/stops/H4do202b"], ["https://tec.openplanner.team/stops/Llianix1", "https://tec.openplanner.team/stops/Llianix3"], ["https://tec.openplanner.team/stops/N508ajb", "https://tec.openplanner.team/stops/N508alb"], ["https://tec.openplanner.team/stops/Cmmschw1", "https://tec.openplanner.team/stops/Cmmserv3"], ["https://tec.openplanner.team/stops/Llgsnap1", "https://tec.openplanner.team/stops/Llgsnap2"], ["https://tec.openplanner.team/stops/X750aoa", "https://tec.openplanner.team/stops/X750aob"], ["https://tec.openplanner.team/stops/LBWbatt1", "https://tec.openplanner.team/stops/LBWviad1"], ["https://tec.openplanner.team/stops/Blimch%C3%A21", "https://tec.openplanner.team/stops/Brixbai2"], ["https://tec.openplanner.team/stops/LHrchat1", "https://tec.openplanner.team/stops/LHreg--1"], ["https://tec.openplanner.team/stops/LNEvand1", "https://tec.openplanner.team/stops/LNEvand2"], ["https://tec.openplanner.team/stops/Lhrchar2", "https://tec.openplanner.team/stops/Lhrchar3"], ["https://tec.openplanner.team/stops/H4ga151a", "https://tec.openplanner.team/stops/H4ga156a"], ["https://tec.openplanner.team/stops/Cmadeli2", "https://tec.openplanner.team/stops/Cmamons1"], ["https://tec.openplanner.team/stops/Bbauegl1", "https://tec.openplanner.team/stops/Bbauegl2"], ["https://tec.openplanner.team/stops/LHUhsar2", "https://tec.openplanner.team/stops/LHUtrin2"], ["https://tec.openplanner.team/stops/N357aab", "https://tec.openplanner.team/stops/N357aba"], ["https://tec.openplanner.team/stops/Lseboia1", "https://tec.openplanner.team/stops/Lsedavy1"], ["https://tec.openplanner.team/stops/X371aca", "https://tec.openplanner.team/stops/X371acb"], ["https://tec.openplanner.team/stops/H5rx102b", "https://tec.openplanner.team/stops/H5rx144b"], ["https://tec.openplanner.team/stops/N519aga", "https://tec.openplanner.team/stops/N519aoa"], ["https://tec.openplanner.team/stops/Ljubrec1", "https://tec.openplanner.team/stops/Ljucano2"], ["https://tec.openplanner.team/stops/LaMpark1", "https://tec.openplanner.team/stops/LaMpost1"], ["https://tec.openplanner.team/stops/N501gra", "https://tec.openplanner.team/stops/N501gre"], ["https://tec.openplanner.team/stops/X359aac", "https://tec.openplanner.team/stops/X371aca"], ["https://tec.openplanner.team/stops/Lsebrun1", "https://tec.openplanner.team/stops/Lsebrun3"], ["https://tec.openplanner.team/stops/LLeeco-1", "https://tec.openplanner.team/stops/X547aeb"], ["https://tec.openplanner.team/stops/LPOthom2", "https://tec.openplanner.team/stops/LSdcarr1"], ["https://tec.openplanner.team/stops/H2sb236c", "https://tec.openplanner.team/stops/H2sb239c"], ["https://tec.openplanner.team/stops/LwYboui1", "https://tec.openplanner.team/stops/LwYboui2"], ["https://tec.openplanner.team/stops/LSParca1", "https://tec.openplanner.team/stops/LSPentr1"], ["https://tec.openplanner.team/stops/N558aaa", "https://tec.openplanner.team/stops/NL67aaa"], ["https://tec.openplanner.team/stops/X801cjb", "https://tec.openplanner.team/stops/X801cna"], ["https://tec.openplanner.team/stops/N101ala", "https://tec.openplanner.team/stops/N101aua"], ["https://tec.openplanner.team/stops/LETtemp2", "https://tec.openplanner.team/stops/Lretill1"], ["https://tec.openplanner.team/stops/X764agb", "https://tec.openplanner.team/stops/X765aea"], ["https://tec.openplanner.team/stops/H4ae102b", "https://tec.openplanner.team/stops/H5el100a"], ["https://tec.openplanner.team/stops/X617aga", "https://tec.openplanner.team/stops/X625ada"], ["https://tec.openplanner.team/stops/H5pe135a", "https://tec.openplanner.team/stops/H5pe142a"], ["https://tec.openplanner.team/stops/LsVfrie1", "https://tec.openplanner.team/stops/LsVfrie2"], ["https://tec.openplanner.team/stops/LCxbeau1", "https://tec.openplanner.team/stops/LCxwarr1"], ["https://tec.openplanner.team/stops/Bosqcim2", "https://tec.openplanner.team/stops/Btubpir2"], ["https://tec.openplanner.team/stops/N538aea", "https://tec.openplanner.team/stops/N538aeb"], ["https://tec.openplanner.team/stops/Bkrapri2", "https://tec.openplanner.team/stops/Bwolkra2"], ["https://tec.openplanner.team/stops/H4be102b", "https://tec.openplanner.team/stops/H4be107a"], ["https://tec.openplanner.team/stops/Brixblh3", "https://tec.openplanner.team/stops/Brixrmo1"], ["https://tec.openplanner.team/stops/X796afa", "https://tec.openplanner.team/stops/X796afb"], ["https://tec.openplanner.team/stops/Lvegc-1*", "https://tec.openplanner.team/stops/Lveyser1"], ["https://tec.openplanner.team/stops/Bbryfon2", "https://tec.openplanner.team/stops/Bsambra2"], ["https://tec.openplanner.team/stops/X666aaa", "https://tec.openplanner.team/stops/X666aab"], ["https://tec.openplanner.team/stops/Lsnpaqu1", "https://tec.openplanner.team/stops/Lsnpaqu2"], ["https://tec.openplanner.team/stops/N874ala", "https://tec.openplanner.team/stops/X874apb"], ["https://tec.openplanner.team/stops/Llglill2", "https://tec.openplanner.team/stops/Llgplai2"], ["https://tec.openplanner.team/stops/Clooues1", "https://tec.openplanner.team/stops/Clooues3"], ["https://tec.openplanner.team/stops/Bboutry2", "https://tec.openplanner.team/stops/Bbsthpl2"], ["https://tec.openplanner.team/stops/H4ag101a", "https://tec.openplanner.team/stops/H4ag104a"], ["https://tec.openplanner.team/stops/LlgCATH1", "https://tec.openplanner.team/stops/LlgR-F1*"], ["https://tec.openplanner.team/stops/LBNpleg1", "https://tec.openplanner.team/stops/LBNvill1"], ["https://tec.openplanner.team/stops/Ldiinte1", "https://tec.openplanner.team/stops/Ldijean2"], ["https://tec.openplanner.team/stops/Bbiemse1", "https://tec.openplanner.team/stops/Bgzdfpo1"], ["https://tec.openplanner.team/stops/Beclpma1", "https://tec.openplanner.team/stops/H2ec106a"], ["https://tec.openplanner.team/stops/LhOzent2", "https://tec.openplanner.team/stops/LhUkreu2"], ["https://tec.openplanner.team/stops/LeUgutl1", "https://tec.openplanner.team/stops/LeUindu1"], ["https://tec.openplanner.team/stops/Lfhdone2", "https://tec.openplanner.team/stops/Lseivoz1"], ["https://tec.openplanner.team/stops/LCObouh1", "https://tec.openplanner.team/stops/LSNretr1"], ["https://tec.openplanner.team/stops/Landolh3", "https://tec.openplanner.team/stops/Lanhoud3"], ["https://tec.openplanner.team/stops/H1bb116b", "https://tec.openplanner.team/stops/H1bb116c"], ["https://tec.openplanner.team/stops/LTgjalh1", "https://tec.openplanner.team/stops/LTgsous1"], ["https://tec.openplanner.team/stops/X658aga", "https://tec.openplanner.team/stops/X658agb"], ["https://tec.openplanner.team/stops/Bbeubos2", "https://tec.openplanner.team/stops/N574aea"], ["https://tec.openplanner.team/stops/Lpeptwa1", "https://tec.openplanner.team/stops/LWerola2"], ["https://tec.openplanner.team/stops/Btsllbv1", "https://tec.openplanner.team/stops/Btsllbv2"], ["https://tec.openplanner.team/stops/Cfcleco1", "https://tec.openplanner.team/stops/Cfcleco2"], ["https://tec.openplanner.team/stops/Lhefoot2", "https://tec.openplanner.team/stops/Lhepaqu1"], ["https://tec.openplanner.team/stops/H2ha135c", "https://tec.openplanner.team/stops/H2tr254b"], ["https://tec.openplanner.team/stops/Lmojans1", "https://tec.openplanner.team/stops/Lmopota2"], ["https://tec.openplanner.team/stops/LLrbano2", "https://tec.openplanner.team/stops/LLrpape2"], ["https://tec.openplanner.team/stops/N162aba", "https://tec.openplanner.team/stops/N162aca"], ["https://tec.openplanner.team/stops/LJUfort1", "https://tec.openplanner.team/stops/Llaacca2"], ["https://tec.openplanner.team/stops/Lsestap1", "https://tec.openplanner.team/stops/Lsestap4"], ["https://tec.openplanner.team/stops/LeUbael1", "https://tec.openplanner.team/stops/LlNbruc1"], ["https://tec.openplanner.team/stops/Blthbss2", "https://tec.openplanner.team/stops/Blthwav1"], ["https://tec.openplanner.team/stops/X601bbd", "https://tec.openplanner.team/stops/X601cza"], ["https://tec.openplanner.team/stops/Cclbarb1", "https://tec.openplanner.team/stops/Cstvape2"], ["https://tec.openplanner.team/stops/LrcarsT1", "https://tec.openplanner.team/stops/Lrchero2"], ["https://tec.openplanner.team/stops/LLycent*", "https://tec.openplanner.team/stops/LXflong1"], ["https://tec.openplanner.team/stops/Lhutill1", "https://tec.openplanner.team/stops/Lvegend1"], ["https://tec.openplanner.team/stops/N214aha", "https://tec.openplanner.team/stops/N214ahb"], ["https://tec.openplanner.team/stops/H2sb227a", "https://tec.openplanner.team/stops/H2sb259b"], ["https://tec.openplanner.team/stops/Bwategb1", "https://tec.openplanner.team/stops/Bwatfva1"], ["https://tec.openplanner.team/stops/X793aba", "https://tec.openplanner.team/stops/X793apa"], ["https://tec.openplanner.team/stops/Clcfall4", "https://tec.openplanner.team/stops/Clgrsoc2"], ["https://tec.openplanner.team/stops/X595aba", "https://tec.openplanner.team/stops/X595abb"], ["https://tec.openplanner.team/stops/N244ahb", "https://tec.openplanner.team/stops/N244aib"], ["https://tec.openplanner.team/stops/LHdkenn1", "https://tec.openplanner.team/stops/LHdkenn2"], ["https://tec.openplanner.team/stops/X723ama", "https://tec.openplanner.team/stops/X775ama"], ["https://tec.openplanner.team/stops/Csscrot1", "https://tec.openplanner.team/stops/Csscrot2"], ["https://tec.openplanner.team/stops/X902aaa", "https://tec.openplanner.team/stops/X902aab"], ["https://tec.openplanner.team/stops/N501giz", "https://tec.openplanner.team/stops/N501neb"], ["https://tec.openplanner.team/stops/Chpfoli4", "https://tec.openplanner.team/stops/Chprobi1"], ["https://tec.openplanner.team/stops/Caccarr2", "https://tec.openplanner.team/stops/Caccera2"], ["https://tec.openplanner.team/stops/N538awa", "https://tec.openplanner.team/stops/N539alb"], ["https://tec.openplanner.team/stops/X989acb", "https://tec.openplanner.team/stops/X989aeb"], ["https://tec.openplanner.team/stops/Cauptsa1", "https://tec.openplanner.team/stops/Ctapn1"], ["https://tec.openplanner.team/stops/Lcacaps1", "https://tec.openplanner.team/stops/Lcacasi1"], ["https://tec.openplanner.team/stops/LCIcent1", "https://tec.openplanner.team/stops/LLtwanz1"], ["https://tec.openplanner.team/stops/Cmlpche2", "https://tec.openplanner.team/stops/Cmlphai2"], ["https://tec.openplanner.team/stops/Llgbavi3", "https://tec.openplanner.team/stops/Llgongr3"], ["https://tec.openplanner.team/stops/N120adc", "https://tec.openplanner.team/stops/N120add"], ["https://tec.openplanner.team/stops/N532akb", "https://tec.openplanner.team/stops/N568aab"], ["https://tec.openplanner.team/stops/Cvvgrsa1", "https://tec.openplanner.team/stops/Cvvpotv1"], ["https://tec.openplanner.team/stops/LFCscho1", "https://tec.openplanner.team/stops/LWRchem1"], ["https://tec.openplanner.team/stops/X954adb", "https://tec.openplanner.team/stops/X955aaa"], ["https://tec.openplanner.team/stops/X359ala", "https://tec.openplanner.team/stops/X858aha"], ["https://tec.openplanner.team/stops/N160afa", "https://tec.openplanner.team/stops/NC14aqb"], ["https://tec.openplanner.team/stops/H4ve136a", "https://tec.openplanner.team/stops/H4ve140b"], ["https://tec.openplanner.team/stops/N207adc", "https://tec.openplanner.team/stops/N209ama"], ["https://tec.openplanner.team/stops/Bclgegl2", "https://tec.openplanner.team/stops/Bclgvmo1"], ["https://tec.openplanner.team/stops/N561aga", "https://tec.openplanner.team/stops/N561aic"], ["https://tec.openplanner.team/stops/N236aea", "https://tec.openplanner.team/stops/N236afa"], ["https://tec.openplanner.team/stops/X615aaa", "https://tec.openplanner.team/stops/X615aba"], ["https://tec.openplanner.team/stops/H4bi100b", "https://tec.openplanner.team/stops/H4eq123b"], ["https://tec.openplanner.team/stops/H2hg144a", "https://tec.openplanner.team/stops/H2hg155d"], ["https://tec.openplanner.team/stops/X670aoa", "https://tec.openplanner.team/stops/X670asa"], ["https://tec.openplanner.team/stops/Cjxpris1", "https://tec.openplanner.team/stops/Cmlsana1"], ["https://tec.openplanner.team/stops/Lghecol*", "https://tec.openplanner.team/stops/Lghomni2"], ["https://tec.openplanner.team/stops/H1en104d", "https://tec.openplanner.team/stops/H1en106b"], ["https://tec.openplanner.team/stops/X762aab", "https://tec.openplanner.team/stops/X763ada"], ["https://tec.openplanner.team/stops/Bwatcoc1", "https://tec.openplanner.team/stops/Bwatcom1"], ["https://tec.openplanner.team/stops/LeIjoha1", "https://tec.openplanner.team/stops/LeIpiro4"], ["https://tec.openplanner.team/stops/H1hn209b", "https://tec.openplanner.team/stops/H1ms312b"], ["https://tec.openplanner.team/stops/H1pa106b", "https://tec.openplanner.team/stops/H1pa111b"], ["https://tec.openplanner.team/stops/LAUbirv1", "https://tec.openplanner.team/stops/LClberw1"], ["https://tec.openplanner.team/stops/NL78ajb", "https://tec.openplanner.team/stops/NL78aka"], ["https://tec.openplanner.team/stops/X717aab", "https://tec.openplanner.team/stops/X718aab"], ["https://tec.openplanner.team/stops/X390aib", "https://tec.openplanner.team/stops/X902aib"], ["https://tec.openplanner.team/stops/Cchmont2", "https://tec.openplanner.team/stops/Cchriga1"], ["https://tec.openplanner.team/stops/H1bo112b", "https://tec.openplanner.team/stops/H1ho124b"], ["https://tec.openplanner.team/stops/H1mg108b", "https://tec.openplanner.team/stops/H1mg109b"], ["https://tec.openplanner.team/stops/Cgygazo1", "https://tec.openplanner.team/stops/CMgazo2"], ["https://tec.openplanner.team/stops/X614ava", "https://tec.openplanner.team/stops/X614avb"], ["https://tec.openplanner.team/stops/Bmarmru1", "https://tec.openplanner.team/stops/Btileco2"], ["https://tec.openplanner.team/stops/Lcemeta2", "https://tec.openplanner.team/stops/Lcepepi1"], ["https://tec.openplanner.team/stops/Lkithie1", "https://tec.openplanner.team/stops/Llgstev1"], ["https://tec.openplanner.team/stops/X750aqa", "https://tec.openplanner.team/stops/X750bea"], ["https://tec.openplanner.team/stops/N511ara", "https://tec.openplanner.team/stops/N511arb"], ["https://tec.openplanner.team/stops/Lbhmc--1", "https://tec.openplanner.team/stops/Lbhmc--2"], ["https://tec.openplanner.team/stops/LRccent2", "https://tec.openplanner.team/stops/LRcsilo2"], ["https://tec.openplanner.team/stops/Lghferr2", "https://tec.openplanner.team/stops/Lghmont1"], ["https://tec.openplanner.team/stops/X950aba", "https://tec.openplanner.team/stops/X950abb"], ["https://tec.openplanner.team/stops/H1bu141b", "https://tec.openplanner.team/stops/H1bu142a"], ["https://tec.openplanner.team/stops/X618aea", "https://tec.openplanner.team/stops/X618amb"], ["https://tec.openplanner.team/stops/X763abb", "https://tec.openplanner.team/stops/X763aea"], ["https://tec.openplanner.team/stops/H1ms284a", "https://tec.openplanner.team/stops/H1ms912a"], ["https://tec.openplanner.team/stops/LOmpont1", "https://tec.openplanner.team/stops/LOmrela2"], ["https://tec.openplanner.team/stops/Bcbqp251", "https://tec.openplanner.team/stops/Bcbqrog1"], ["https://tec.openplanner.team/stops/H4he107b", "https://tec.openplanner.team/stops/H4wg122a"], ["https://tec.openplanner.team/stops/Cvscomb1", "https://tec.openplanner.team/stops/N530ada"], ["https://tec.openplanner.team/stops/H4la198c", "https://tec.openplanner.team/stops/H4la198d"], ["https://tec.openplanner.team/stops/X754agb", "https://tec.openplanner.team/stops/X754ahb"], ["https://tec.openplanner.team/stops/Barchez2", "https://tec.openplanner.team/stops/Bgzddmo1"], ["https://tec.openplanner.team/stops/Lbocond2", "https://tec.openplanner.team/stops/LESecco2"], ["https://tec.openplanner.team/stops/H4bo178b", "https://tec.openplanner.team/stops/H4gr112b"], ["https://tec.openplanner.team/stops/LXhcite2", "https://tec.openplanner.team/stops/LXhnouv1"], ["https://tec.openplanner.team/stops/LeYauto2", "https://tec.openplanner.team/stops/LhSfrep1"], ["https://tec.openplanner.team/stops/N101aba", "https://tec.openplanner.team/stops/N101acb"], ["https://tec.openplanner.team/stops/H4bi156a", "https://tec.openplanner.team/stops/H4eg103b"], ["https://tec.openplanner.team/stops/H1cd111d", "https://tec.openplanner.team/stops/H1hr117b"], ["https://tec.openplanner.team/stops/H4ta116a", "https://tec.openplanner.team/stops/H4ta117a"], ["https://tec.openplanner.team/stops/N232cab", "https://tec.openplanner.team/stops/N232cdb"], ["https://tec.openplanner.team/stops/X796aea", "https://tec.openplanner.team/stops/X796afa"], ["https://tec.openplanner.team/stops/H2tr256a", "https://tec.openplanner.team/stops/H2tr256b"], ["https://tec.openplanner.team/stops/H4ev119a", "https://tec.openplanner.team/stops/H4ev124a"], ["https://tec.openplanner.team/stops/X763agb", "https://tec.openplanner.team/stops/X786aaa"], ["https://tec.openplanner.team/stops/X992ada", "https://tec.openplanner.team/stops/X992aia"], ["https://tec.openplanner.team/stops/Bnivlpa2", "https://tec.openplanner.team/stops/Bnivzon1"], ["https://tec.openplanner.team/stops/H5bl116a", "https://tec.openplanner.team/stops/H5bl142b"], ["https://tec.openplanner.team/stops/Cgocnor4", "https://tec.openplanner.team/stops/Cgocrus2"], ["https://tec.openplanner.team/stops/Cmomalg2", "https://tec.openplanner.team/stops/Crorpai1"], ["https://tec.openplanner.team/stops/H4lz157a", "https://tec.openplanner.team/stops/H4lz160a"], ["https://tec.openplanner.team/stops/Lsemara1", "https://tec.openplanner.team/stops/Lsemara2"], ["https://tec.openplanner.team/stops/Btstpch2", "https://tec.openplanner.team/stops/N524ada"], ["https://tec.openplanner.team/stops/Bottegl1", "https://tec.openplanner.team/stops/Bottrfa1"], ["https://tec.openplanner.team/stops/LOuathe1", "https://tec.openplanner.team/stops/LOuilc-*"], ["https://tec.openplanner.team/stops/X617ahb", "https://tec.openplanner.team/stops/X617aia"], ["https://tec.openplanner.team/stops/LJEtige1", "https://tec.openplanner.team/stops/LJEtige2"], ["https://tec.openplanner.team/stops/X790aka", "https://tec.openplanner.team/stops/X790akc"], ["https://tec.openplanner.team/stops/Btubbai1", "https://tec.openplanner.team/stops/Btubhoq1"], ["https://tec.openplanner.team/stops/N538acb", "https://tec.openplanner.team/stops/N538aia"], ["https://tec.openplanner.team/stops/H4pi132a", "https://tec.openplanner.team/stops/H4wp151b"], ["https://tec.openplanner.team/stops/N308aga", "https://tec.openplanner.team/stops/N308agb"], ["https://tec.openplanner.team/stops/Lmicoop3", "https://tec.openplanner.team/stops/Lmieg--1"], ["https://tec.openplanner.team/stops/Loubiez1", "https://tec.openplanner.team/stops/Loubour1"], ["https://tec.openplanner.team/stops/Lghgoll2", "https://tec.openplanner.team/stops/Lghomni2"], ["https://tec.openplanner.team/stops/H1ch132b", "https://tec.openplanner.team/stops/H5at109a"], ["https://tec.openplanner.team/stops/LSOferr1", "https://tec.openplanner.team/stops/LSOtrou2"], ["https://tec.openplanner.team/stops/N348aaa", "https://tec.openplanner.team/stops/N348abb"], ["https://tec.openplanner.team/stops/N301aga", "https://tec.openplanner.team/stops/N340abb"], ["https://tec.openplanner.team/stops/N117aka", "https://tec.openplanner.team/stops/N117ama"], ["https://tec.openplanner.team/stops/X358aea", "https://tec.openplanner.team/stops/X358afb"], ["https://tec.openplanner.team/stops/N584aza", "https://tec.openplanner.team/stops/N584azb"], ["https://tec.openplanner.team/stops/LeUgb--2", "https://tec.openplanner.team/stops/LeUgutl2"], ["https://tec.openplanner.team/stops/X807aca", "https://tec.openplanner.team/stops/X807acb"], ["https://tec.openplanner.team/stops/X651afa", "https://tec.openplanner.team/stops/X659aeb"], ["https://tec.openplanner.team/stops/X723ada", "https://tec.openplanner.team/stops/X723afb"], ["https://tec.openplanner.team/stops/LHTboul1", "https://tec.openplanner.team/stops/LHTlieg2"], ["https://tec.openplanner.team/stops/H1at108c", "https://tec.openplanner.team/stops/H1do119a"], ["https://tec.openplanner.team/stops/Bbsibou1", "https://tec.openplanner.team/stops/Bbsivi11"], ["https://tec.openplanner.team/stops/X608ana", "https://tec.openplanner.team/stops/X609akb"], ["https://tec.openplanner.team/stops/N209aja", "https://tec.openplanner.team/stops/N209ajc"], ["https://tec.openplanner.team/stops/H2bh107a", "https://tec.openplanner.team/stops/H2bh107b"], ["https://tec.openplanner.team/stops/Causncb2", "https://tec.openplanner.team/stops/Cauushm1"], ["https://tec.openplanner.team/stops/Bneeace1", "https://tec.openplanner.team/stops/Bneeace2"], ["https://tec.openplanner.team/stops/X925aea", "https://tec.openplanner.team/stops/X925afa"], ["https://tec.openplanner.team/stops/H1si154a", "https://tec.openplanner.team/stops/H1si169a"], ["https://tec.openplanner.team/stops/X757acb", "https://tec.openplanner.team/stops/X757aoa"], ["https://tec.openplanner.team/stops/Bperqui1", "https://tec.openplanner.team/stops/Bperqui2"], ["https://tec.openplanner.team/stops/Lvtathe1", "https://tec.openplanner.team/stops/Lvtathe2"], ["https://tec.openplanner.team/stops/H1hb197a", "https://tec.openplanner.team/stops/H1ht132a"], ["https://tec.openplanner.team/stops/LSU50--1", "https://tec.openplanner.team/stops/LSUhage1"], ["https://tec.openplanner.team/stops/LPTblan1", "https://tec.openplanner.team/stops/X794aaa"], ["https://tec.openplanner.team/stops/LVlroua2", "https://tec.openplanner.team/stops/LVltige1"], ["https://tec.openplanner.team/stops/Lvepala2", "https://tec.openplanner.team/stops/Lvepala5"], ["https://tec.openplanner.team/stops/Lemambi2", "https://tec.openplanner.team/stops/Lemeg--2"], ["https://tec.openplanner.team/stops/H4og212a", "https://tec.openplanner.team/stops/H4og212b"], ["https://tec.openplanner.team/stops/Cgxvkho1", "https://tec.openplanner.team/stops/Cmocime2"], ["https://tec.openplanner.team/stops/LkTsch%C3%B62", "https://tec.openplanner.team/stops/LkTtal-2"], ["https://tec.openplanner.team/stops/N229akb", "https://tec.openplanner.team/stops/N231aca"], ["https://tec.openplanner.team/stops/LHMbach4", "https://tec.openplanner.team/stops/LHMchev1"], ["https://tec.openplanner.team/stops/H4an108b", "https://tec.openplanner.team/stops/H4an110b"], ["https://tec.openplanner.team/stops/Bottath1", "https://tec.openplanner.team/stops/Bottcco1"], ["https://tec.openplanner.team/stops/N141aba", "https://tec.openplanner.team/stops/N141ana"], ["https://tec.openplanner.team/stops/X939ahb", "https://tec.openplanner.team/stops/X946aha"], ["https://tec.openplanner.team/stops/H1je223b", "https://tec.openplanner.team/stops/H1je365a"], ["https://tec.openplanner.team/stops/Creha761", "https://tec.openplanner.team/stops/Creoudo2"], ["https://tec.openplanner.team/stops/Bcbqrog2", "https://tec.openplanner.team/stops/Bitrnus1"], ["https://tec.openplanner.team/stops/H1em104b", "https://tec.openplanner.team/stops/H1em111b"], ["https://tec.openplanner.team/stops/Bthspha2", "https://tec.openplanner.team/stops/NL37aja"], ["https://tec.openplanner.team/stops/H4fo115a", "https://tec.openplanner.team/stops/H4ga147a"], ["https://tec.openplanner.team/stops/Cvpchat1", "https://tec.openplanner.team/stops/Cvppost2"], ["https://tec.openplanner.team/stops/H2pe156a", "https://tec.openplanner.team/stops/H2pe158a"], ["https://tec.openplanner.team/stops/LSPClem1", "https://tec.openplanner.team/stops/LSPguer1"], ["https://tec.openplanner.team/stops/LiVgirk1", "https://tec.openplanner.team/stops/LiVgirk2"], ["https://tec.openplanner.team/stops/H4wi169a", "https://tec.openplanner.team/stops/H4wi170b"], ["https://tec.openplanner.team/stops/H4ft135a", "https://tec.openplanner.team/stops/H4ft135c"], ["https://tec.openplanner.team/stops/H4ce101a", "https://tec.openplanner.team/stops/H4ce102a"], ["https://tec.openplanner.team/stops/LOdmonu3", "https://tec.openplanner.team/stops/LOdmonu4"], ["https://tec.openplanner.team/stops/X781abb", "https://tec.openplanner.team/stops/X781aga"], ["https://tec.openplanner.team/stops/Lscstan1", "https://tec.openplanner.team/stops/Ltibell1"], ["https://tec.openplanner.team/stops/LRchaie1", "https://tec.openplanner.team/stops/LRcjard1"], ["https://tec.openplanner.team/stops/X750agb", "https://tec.openplanner.team/stops/X750ava"], ["https://tec.openplanner.team/stops/X715aka", "https://tec.openplanner.team/stops/X781aab"], ["https://tec.openplanner.team/stops/Bbeabme1", "https://tec.openplanner.team/stops/Bbeaegl1"], ["https://tec.openplanner.team/stops/H5rx130a", "https://tec.openplanner.team/stops/H5rx138b"], ["https://tec.openplanner.team/stops/Bgzdfpo2", "https://tec.openplanner.team/stops/Bgzdgpa1"], ["https://tec.openplanner.team/stops/H5wo126b", "https://tec.openplanner.team/stops/H5wo127b"], ["https://tec.openplanner.team/stops/LlNbusc1", "https://tec.openplanner.team/stops/LlNbusc2"], ["https://tec.openplanner.team/stops/X886ada", "https://tec.openplanner.team/stops/X886aha"], ["https://tec.openplanner.team/stops/LbThau11", "https://tec.openplanner.team/stops/LbThau12"], ["https://tec.openplanner.team/stops/H5el102a", "https://tec.openplanner.team/stops/H5el102b"], ["https://tec.openplanner.team/stops/Btiegar2", "https://tec.openplanner.team/stops/Bzluqga2"], ["https://tec.openplanner.team/stops/X808aia", "https://tec.openplanner.team/stops/X808ala"], ["https://tec.openplanner.team/stops/Bcbqufo1", "https://tec.openplanner.team/stops/Bcbqufo2"], ["https://tec.openplanner.team/stops/X757alb", "https://tec.openplanner.team/stops/X758aea"], ["https://tec.openplanner.team/stops/N423aba", "https://tec.openplanner.team/stops/N423acb"], ["https://tec.openplanner.team/stops/LGMforg2", "https://tec.openplanner.team/stops/LLUlieg2"], ["https://tec.openplanner.team/stops/LWLeg--2", "https://tec.openplanner.team/stops/LWLtamb2"], ["https://tec.openplanner.team/stops/Bgzddge2", "https://tec.openplanner.team/stops/Bgzddur2"], ["https://tec.openplanner.team/stops/N501azb", "https://tec.openplanner.team/stops/N501mga"], ["https://tec.openplanner.team/stops/N549aca", "https://tec.openplanner.team/stops/N549aga"], ["https://tec.openplanner.team/stops/X897adb", "https://tec.openplanner.team/stops/X897ala"], ["https://tec.openplanner.team/stops/X837agb", "https://tec.openplanner.team/stops/X839aga"], ["https://tec.openplanner.team/stops/LPRcasi1", "https://tec.openplanner.team/stops/LTResse1"], ["https://tec.openplanner.team/stops/LROandr1", "https://tec.openplanner.team/stops/LSogare1"], ["https://tec.openplanner.team/stops/N383aaa", "https://tec.openplanner.team/stops/N988aab"], ["https://tec.openplanner.team/stops/Llgnaim1", "https://tec.openplanner.team/stops/Llgnaim2"], ["https://tec.openplanner.team/stops/N166aaa", "https://tec.openplanner.team/stops/N550amb"], ["https://tec.openplanner.team/stops/LJEchat1", "https://tec.openplanner.team/stops/LJEmalg1"], ["https://tec.openplanner.team/stops/Bbrlrph1", "https://tec.openplanner.team/stops/Brsgrol1"], ["https://tec.openplanner.team/stops/Bwavbwa1", "https://tec.openplanner.team/stops/Bwavdel2"], ["https://tec.openplanner.team/stops/Ccufos72", "https://tec.openplanner.team/stops/Cpipost1"], ["https://tec.openplanner.team/stops/X898aba", "https://tec.openplanner.team/stops/X898abb"], ["https://tec.openplanner.team/stops/LEScham2", "https://tec.openplanner.team/stops/LESevie1"], ["https://tec.openplanner.team/stops/LbOkalv2", "https://tec.openplanner.team/stops/LbOlier2"], ["https://tec.openplanner.team/stops/Csdnive2", "https://tec.openplanner.team/stops/Csdnive4"], ["https://tec.openplanner.team/stops/LBaeg--1", "https://tec.openplanner.team/stops/LBapepi6"], ["https://tec.openplanner.team/stops/N539beb", "https://tec.openplanner.team/stops/N540arb"], ["https://tec.openplanner.team/stops/Bmelenf2", "https://tec.openplanner.team/stops/Btilgar2"], ["https://tec.openplanner.team/stops/N551aaa", "https://tec.openplanner.team/stops/N551aab"], ["https://tec.openplanner.team/stops/LHUlebe8", "https://tec.openplanner.team/stops/LHUlebe9"], ["https://tec.openplanner.team/stops/Bjausan1", "https://tec.openplanner.team/stops/Bmrlnce2"], ["https://tec.openplanner.team/stops/N145aha", "https://tec.openplanner.team/stops/N149akb"], ["https://tec.openplanner.team/stops/LSHmais1", "https://tec.openplanner.team/stops/LSHmais2"], ["https://tec.openplanner.team/stops/H1mk108a", "https://tec.openplanner.team/stops/H1mk108b"], ["https://tec.openplanner.team/stops/X839afa", "https://tec.openplanner.team/stops/X839afb"], ["https://tec.openplanner.team/stops/Bbstasa1", "https://tec.openplanner.team/stops/Bbstegl1"], ["https://tec.openplanner.team/stops/H2sv213a", "https://tec.openplanner.team/stops/H2sv213b"], ["https://tec.openplanner.team/stops/N539aka", "https://tec.openplanner.team/stops/N539ana"], ["https://tec.openplanner.team/stops/LOUchen1", "https://tec.openplanner.team/stops/LOUchen2"], ["https://tec.openplanner.team/stops/N232bzb", "https://tec.openplanner.team/stops/N251aaa"], ["https://tec.openplanner.team/stops/Lseaven1", "https://tec.openplanner.team/stops/Lsekubo3"], ["https://tec.openplanner.team/stops/LLrdigu1", "https://tec.openplanner.team/stops/LLrdigu2"], ["https://tec.openplanner.team/stops/H1fr124b", "https://tec.openplanner.team/stops/H1fr130b"], ["https://tec.openplanner.team/stops/Llgnico3", "https://tec.openplanner.team/stops/Lsnlibe2"], ["https://tec.openplanner.team/stops/H1ob327b", "https://tec.openplanner.team/stops/H1ob330b"], ["https://tec.openplanner.team/stops/LrAbe601", "https://tec.openplanner.team/stops/LrAbe962"], ["https://tec.openplanner.team/stops/LAibego2", "https://tec.openplanner.team/stops/LHZpara2"], ["https://tec.openplanner.team/stops/Bgemga09", "https://tec.openplanner.team/stops/N522bvh"], ["https://tec.openplanner.team/stops/X824akb", "https://tec.openplanner.team/stops/X829aeb"], ["https://tec.openplanner.team/stops/Bplncba2", "https://tec.openplanner.team/stops/Clproi2"], ["https://tec.openplanner.team/stops/H4mo140a", "https://tec.openplanner.team/stops/H4mo185a"], ["https://tec.openplanner.team/stops/N501fwa", "https://tec.openplanner.team/stops/N501gta"], ["https://tec.openplanner.team/stops/N117ara", "https://tec.openplanner.team/stops/N117asa"], ["https://tec.openplanner.team/stops/X804adb", "https://tec.openplanner.team/stops/X804bza"], ["https://tec.openplanner.team/stops/Bchamco2", "https://tec.openplanner.team/stops/Bcrnnca2"], ["https://tec.openplanner.team/stops/Lkinyst2", "https://tec.openplanner.team/stops/Lkithie1"], ["https://tec.openplanner.team/stops/X902ada", "https://tec.openplanner.team/stops/X902aha"], ["https://tec.openplanner.team/stops/N501cga", "https://tec.openplanner.team/stops/N502adb"], ["https://tec.openplanner.team/stops/N501ddb", "https://tec.openplanner.team/stops/N501dfa"], ["https://tec.openplanner.team/stops/N553adb", "https://tec.openplanner.team/stops/N553alb"], ["https://tec.openplanner.team/stops/Cgzoctr3", "https://tec.openplanner.team/stops/Cthha501"], ["https://tec.openplanner.team/stops/N117bcc", "https://tec.openplanner.team/stops/N117bcd"], ["https://tec.openplanner.team/stops/H1ch103a", "https://tec.openplanner.team/stops/H4ld123b"], ["https://tec.openplanner.team/stops/X982bea", "https://tec.openplanner.team/stops/X982bga"], ["https://tec.openplanner.team/stops/X649aaa", "https://tec.openplanner.team/stops/X670aqa"], ["https://tec.openplanner.team/stops/NL74aca", "https://tec.openplanner.team/stops/NL74aib"], ["https://tec.openplanner.team/stops/Bbiecim2", "https://tec.openplanner.team/stops/Bbiepon2"], ["https://tec.openplanner.team/stops/H4wc372a", "https://tec.openplanner.team/stops/H4wc372b"], ["https://tec.openplanner.team/stops/Bsmgmou1", "https://tec.openplanner.team/stops/Bsmgmou2"], ["https://tec.openplanner.team/stops/X601ara", "https://tec.openplanner.team/stops/X601cta"], ["https://tec.openplanner.team/stops/Cgd4ven1", "https://tec.openplanner.team/stops/Cgdrhau2"], ["https://tec.openplanner.team/stops/LRRbuta2", "https://tec.openplanner.team/stops/LRRchea1"], ["https://tec.openplanner.team/stops/Ctaprai3", "https://tec.openplanner.team/stops/Cwfcule1"], ["https://tec.openplanner.team/stops/Bnivfch1", "https://tec.openplanner.team/stops/Bnivgen1"], ["https://tec.openplanner.team/stops/H4ka190a", "https://tec.openplanner.team/stops/H4ka195a"], ["https://tec.openplanner.team/stops/Bgnvgar1", "https://tec.openplanner.team/stops/Bgnvpap2"], ["https://tec.openplanner.team/stops/Bperrma2", "https://tec.openplanner.team/stops/Bpersyn2"], ["https://tec.openplanner.team/stops/Cjugohi3", "https://tec.openplanner.team/stops/Cmacoll2"], ["https://tec.openplanner.team/stops/X649acb", "https://tec.openplanner.team/stops/X649ada"], ["https://tec.openplanner.team/stops/Buccvbe1", "https://tec.openplanner.team/stops/Buccvbe2"], ["https://tec.openplanner.team/stops/X954afb", "https://tec.openplanner.team/stops/X954ahb"], ["https://tec.openplanner.team/stops/H1ca105a", "https://tec.openplanner.team/stops/H1ca107b"], ["https://tec.openplanner.team/stops/Bnilcha2", "https://tec.openplanner.team/stops/Bwlhpmt2"], ["https://tec.openplanner.team/stops/LAMhopi2", "https://tec.openplanner.team/stops/LOmrela1"], ["https://tec.openplanner.team/stops/Ccstord1", "https://tec.openplanner.team/stops/Chhsncb1"], ["https://tec.openplanner.team/stops/Ccosart4", "https://tec.openplanner.team/stops/Crorogn2"], ["https://tec.openplanner.team/stops/LHueg--1", "https://tec.openplanner.team/stops/LHueg--2"], ["https://tec.openplanner.team/stops/H4mt215a", "https://tec.openplanner.team/stops/H4mt215b"], ["https://tec.openplanner.team/stops/H1ge117a", "https://tec.openplanner.team/stops/H1qp140a"], ["https://tec.openplanner.team/stops/X880aeb", "https://tec.openplanner.team/stops/X880aha"], ["https://tec.openplanner.team/stops/Bwavcin1", "https://tec.openplanner.team/stops/Bwavtrt2"], ["https://tec.openplanner.team/stops/X763agb", "https://tec.openplanner.team/stops/X763aha"], ["https://tec.openplanner.team/stops/Ccoha601", "https://tec.openplanner.team/stops/Ccoha602"], ["https://tec.openplanner.team/stops/N201aub", "https://tec.openplanner.team/stops/N202aca"], ["https://tec.openplanner.team/stops/LrUbahn1", "https://tec.openplanner.team/stops/LrUbahn2"], ["https://tec.openplanner.team/stops/H4ch114b", "https://tec.openplanner.team/stops/H4ch117b"], ["https://tec.openplanner.team/stops/Llg20ao3", "https://tec.openplanner.team/stops/LlgCATH1"], ["https://tec.openplanner.team/stops/Crglyre2", "https://tec.openplanner.team/stops/Cstvape1"], ["https://tec.openplanner.team/stops/N534acb", "https://tec.openplanner.team/stops/N566ada"], ["https://tec.openplanner.team/stops/LTicent1", "https://tec.openplanner.team/stops/LTimalv2"], ["https://tec.openplanner.team/stops/LhSgete1", "https://tec.openplanner.team/stops/LhSgete3"], ["https://tec.openplanner.team/stops/N543cob", "https://tec.openplanner.team/stops/N543cqb"], ["https://tec.openplanner.team/stops/Bnivcom2", "https://tec.openplanner.team/stops/Bnivhon2"], ["https://tec.openplanner.team/stops/H1mj122b", "https://tec.openplanner.team/stops/H1mj130b"], ["https://tec.openplanner.team/stops/Ljubord1", "https://tec.openplanner.team/stops/Ljubruy*"], ["https://tec.openplanner.team/stops/LFOcomb3", "https://tec.openplanner.team/stops/LFOcomb4"], ["https://tec.openplanner.team/stops/LVLcent1", "https://tec.openplanner.team/stops/LWDbure1"], ["https://tec.openplanner.team/stops/Cbwmato2", "https://tec.openplanner.team/stops/Cmqbert1"], ["https://tec.openplanner.team/stops/X734adb", "https://tec.openplanner.team/stops/X734afa"], ["https://tec.openplanner.team/stops/LVthest1", "https://tec.openplanner.team/stops/LVthest2"], ["https://tec.openplanner.team/stops/H1ht133b", "https://tec.openplanner.team/stops/H1te191a"], ["https://tec.openplanner.team/stops/H4bd107a", "https://tec.openplanner.team/stops/H4te257b"], ["https://tec.openplanner.team/stops/X713adb", "https://tec.openplanner.team/stops/X713ana"], ["https://tec.openplanner.team/stops/H4bc106b", "https://tec.openplanner.team/stops/H5bl116b"], ["https://tec.openplanner.team/stops/H1ge179a", "https://tec.openplanner.team/stops/H1no142a"], ["https://tec.openplanner.team/stops/N287acb", "https://tec.openplanner.team/stops/N287adb"], ["https://tec.openplanner.team/stops/LhPkirc2", "https://tec.openplanner.team/stops/LwEdorf2"], ["https://tec.openplanner.team/stops/H4be104d", "https://tec.openplanner.team/stops/H4be114a"], ["https://tec.openplanner.team/stops/X358aeb", "https://tec.openplanner.team/stops/X994ama"], ["https://tec.openplanner.team/stops/X888abb", "https://tec.openplanner.team/stops/X888aca"], ["https://tec.openplanner.team/stops/LELchap2", "https://tec.openplanner.team/stops/LHCauwe4"], ["https://tec.openplanner.team/stops/Lccawir3", "https://tec.openplanner.team/stops/Lccuner1"], ["https://tec.openplanner.team/stops/Btsllfp1", "https://tec.openplanner.team/stops/Bwlhcsr1"], ["https://tec.openplanner.team/stops/H1ms268a", "https://tec.openplanner.team/stops/H1ms281b"], ["https://tec.openplanner.team/stops/X831aba", "https://tec.openplanner.team/stops/X831acb"], ["https://tec.openplanner.team/stops/Cctbifu1", "https://tec.openplanner.team/stops/Cctjust2"], ["https://tec.openplanner.team/stops/Bcsepes1", "https://tec.openplanner.team/stops/Bmoucoq2"], ["https://tec.openplanner.team/stops/LAUbour2", "https://tec.openplanner.team/stops/LFdbruy2"], ["https://tec.openplanner.team/stops/N501fxa", "https://tec.openplanner.team/stops/N501hla"], ["https://tec.openplanner.team/stops/Cgopier3", "https://tec.openplanner.team/stops/Cgorobe1"], ["https://tec.openplanner.team/stops/Bptecar2", "https://tec.openplanner.team/stops/H3st119a"], ["https://tec.openplanner.team/stops/LOTcarr2", "https://tec.openplanner.team/stops/LOTdelv1"], ["https://tec.openplanner.team/stops/X786aib", "https://tec.openplanner.team/stops/X789aib"], ["https://tec.openplanner.team/stops/N104aca", "https://tec.openplanner.team/stops/N104acb"], ["https://tec.openplanner.team/stops/Chpplac1", "https://tec.openplanner.team/stops/Chprobi1"], ["https://tec.openplanner.team/stops/Blimmer2", "https://tec.openplanner.team/stops/Bottgar5"], ["https://tec.openplanner.team/stops/X812beb", "https://tec.openplanner.team/stops/X813aba"], ["https://tec.openplanner.team/stops/Cmlsart2", "https://tec.openplanner.team/stops/Cmlstni2"], ["https://tec.openplanner.team/stops/N310abb", "https://tec.openplanner.team/stops/N310ada"], ["https://tec.openplanner.team/stops/LFAec--1", "https://tec.openplanner.team/stops/LFAscie2"], ["https://tec.openplanner.team/stops/H1th182a", "https://tec.openplanner.team/stops/H3so153a"], ["https://tec.openplanner.team/stops/N525aca", "https://tec.openplanner.team/stops/N525baa"], ["https://tec.openplanner.team/stops/LBkjenn2", "https://tec.openplanner.team/stops/LBkwind2"], ["https://tec.openplanner.team/stops/H1an100a", "https://tec.openplanner.team/stops/H1an100b"], ["https://tec.openplanner.team/stops/Bnivbpe2", "https://tec.openplanner.team/stops/Bnivgen1"], ["https://tec.openplanner.team/stops/LLrcomb1", "https://tec.openplanner.team/stops/LLrrmaq1"], ["https://tec.openplanner.team/stops/Lemfort1", "https://tec.openplanner.team/stops/Lemfort2"], ["https://tec.openplanner.team/stops/Cchviad2", "https://tec.openplanner.team/stops/CMoues1"], ["https://tec.openplanner.team/stops/X804azb", "https://tec.openplanner.team/stops/X804bab"], ["https://tec.openplanner.team/stops/X630aaa", "https://tec.openplanner.team/stops/X630aca"], ["https://tec.openplanner.team/stops/H1hh109a", "https://tec.openplanner.team/stops/H1hh111a"], ["https://tec.openplanner.team/stops/N512aoa", "https://tec.openplanner.team/stops/N512apa"], ["https://tec.openplanner.team/stops/LTgvill1", "https://tec.openplanner.team/stops/LTgvill2"], ["https://tec.openplanner.team/stops/LChxhav1", "https://tec.openplanner.team/stops/LJAdeho3"], ["https://tec.openplanner.team/stops/LFebas-1", "https://tec.openplanner.team/stops/LTrmaro2"], ["https://tec.openplanner.team/stops/LWAclos1", "https://tec.openplanner.team/stops/LWAclos2"], ["https://tec.openplanner.team/stops/H1gi123b", "https://tec.openplanner.team/stops/H1hy128a"], ["https://tec.openplanner.team/stops/N573aba", "https://tec.openplanner.team/stops/NC44ada"], ["https://tec.openplanner.team/stops/LAWbrou1", "https://tec.openplanner.team/stops/LBIpont1"], ["https://tec.openplanner.team/stops/N234aca", "https://tec.openplanner.team/stops/N234acb"], ["https://tec.openplanner.team/stops/Bwatbno1", "https://tec.openplanner.team/stops/Bwatbno2"], ["https://tec.openplanner.team/stops/Llgnati2", "https://tec.openplanner.team/stops/Llgvinc2"], ["https://tec.openplanner.team/stops/H4rm107c", "https://tec.openplanner.team/stops/H4rm108b"], ["https://tec.openplanner.team/stops/X740abd", "https://tec.openplanner.team/stops/X985afa"], ["https://tec.openplanner.team/stops/LSEcent2", "https://tec.openplanner.team/stops/LSEec--1"], ["https://tec.openplanner.team/stops/H4bq154b", "https://tec.openplanner.team/stops/H4li179b"], ["https://tec.openplanner.team/stops/LScchpl2", "https://tec.openplanner.team/stops/LTNeau-2"], ["https://tec.openplanner.team/stops/Lcheg--1", "https://tec.openplanner.team/stops/Lchtche2"], ["https://tec.openplanner.team/stops/LAmwaut2", "https://tec.openplanner.team/stops/LTipont2"], ["https://tec.openplanner.team/stops/LFEplac1", "https://tec.openplanner.team/stops/X597aaa"], ["https://tec.openplanner.team/stops/Llgamer2", "https://tec.openplanner.team/stops/Llglair1"], ["https://tec.openplanner.team/stops/Canboha1", "https://tec.openplanner.team/stops/Cpthaud2"], ["https://tec.openplanner.team/stops/H2sb226a", "https://tec.openplanner.team/stops/H2sb226b"], ["https://tec.openplanner.team/stops/Lgrcral2", "https://tec.openplanner.team/stops/Lgrdefr2"], ["https://tec.openplanner.team/stops/NL76aca", "https://tec.openplanner.team/stops/NL76ada"], ["https://tec.openplanner.team/stops/Llggill4", "https://tec.openplanner.team/stops/Llghaye1"], ["https://tec.openplanner.team/stops/LDapota1", "https://tec.openplanner.team/stops/LHgdari1"], ["https://tec.openplanner.team/stops/H2an100b", "https://tec.openplanner.team/stops/H2an101a"], ["https://tec.openplanner.team/stops/N522aba", "https://tec.openplanner.team/stops/N522abb"], ["https://tec.openplanner.team/stops/Lagtilf2", "https://tec.openplanner.team/stops/Lcepoul1"], ["https://tec.openplanner.team/stops/X789aea", "https://tec.openplanner.team/stops/X789aeb"], ["https://tec.openplanner.team/stops/H1ba103a", "https://tec.openplanner.team/stops/H1ba118a"], ["https://tec.openplanner.team/stops/Bmsgpap1", "https://tec.openplanner.team/stops/Bmsgpap2"], ["https://tec.openplanner.team/stops/LPLfp2-1", "https://tec.openplanner.team/stops/LPLstri2"], ["https://tec.openplanner.team/stops/X607aga", "https://tec.openplanner.team/stops/X620aga"], ["https://tec.openplanner.team/stops/X802ajb", "https://tec.openplanner.team/stops/X802akb"], ["https://tec.openplanner.team/stops/LsVgils1", "https://tec.openplanner.team/stops/LsVthom1"], ["https://tec.openplanner.team/stops/Cmqchap2", "https://tec.openplanner.team/stops/N425aba"], ["https://tec.openplanner.team/stops/Lscchat2", "https://tec.openplanner.team/stops/Lscgare1"], ["https://tec.openplanner.team/stops/X613acb", "https://tec.openplanner.team/stops/X614ana"], ["https://tec.openplanner.team/stops/X764ada", "https://tec.openplanner.team/stops/X765aca"], ["https://tec.openplanner.team/stops/Lre3che2", "https://tec.openplanner.team/stops/Lrecite1"], ["https://tec.openplanner.team/stops/H4mo133a", "https://tec.openplanner.team/stops/H4mo145a"], ["https://tec.openplanner.team/stops/LmI36--2", "https://tec.openplanner.team/stops/LmIvale1"], ["https://tec.openplanner.team/stops/Lmopans4", "https://tec.openplanner.team/stops/Lsnbrac3"], ["https://tec.openplanner.team/stops/Llgcrah1", "https://tec.openplanner.team/stops/Llgegwa1"], ["https://tec.openplanner.team/stops/X345aab", "https://tec.openplanner.team/stops/X363aaa"], ["https://tec.openplanner.team/stops/LFochap2", "https://tec.openplanner.team/stops/LHbcent2"], ["https://tec.openplanner.team/stops/X734aba", "https://tec.openplanner.team/stops/X735abc"], ["https://tec.openplanner.team/stops/X614aka", "https://tec.openplanner.team/stops/X624aaa"], ["https://tec.openplanner.team/stops/H1fr107b", "https://tec.openplanner.team/stops/H1fr113b"], ["https://tec.openplanner.team/stops/N538anb", "https://tec.openplanner.team/stops/N538aoa"], ["https://tec.openplanner.team/stops/H2ec106b", "https://tec.openplanner.team/stops/H2ec108a"], ["https://tec.openplanner.team/stops/H2mo124b", "https://tec.openplanner.team/stops/H2mo138c"], ["https://tec.openplanner.team/stops/Lvecase1", "https://tec.openplanner.team/stops/Lvecase2"], ["https://tec.openplanner.team/stops/Lgreg--2", "https://tec.openplanner.team/stops/Lgrtomb1"], ["https://tec.openplanner.team/stops/H4ta126b", "https://tec.openplanner.team/stops/H4ta128b"], ["https://tec.openplanner.team/stops/N121afa", "https://tec.openplanner.team/stops/N121aga"], ["https://tec.openplanner.team/stops/LlNlont1", "https://tec.openplanner.team/stops/LlNlont2"], ["https://tec.openplanner.team/stops/X757aib", "https://tec.openplanner.team/stops/X757aic"], ["https://tec.openplanner.team/stops/H1ha185b", "https://tec.openplanner.team/stops/H1ha192a"], ["https://tec.openplanner.team/stops/Crodebr2", "https://tec.openplanner.team/stops/Crolema3"], ["https://tec.openplanner.team/stops/LLnpomp1", "https://tec.openplanner.team/stops/LPUlecl1"], ["https://tec.openplanner.team/stops/H4th139b", "https://tec.openplanner.team/stops/H4th142a"], ["https://tec.openplanner.team/stops/Bcer4br3", "https://tec.openplanner.team/stops/Bcer4br4"], ["https://tec.openplanner.team/stops/N569acb", "https://tec.openplanner.team/stops/N569aea"], ["https://tec.openplanner.team/stops/LBVlamo2", "https://tec.openplanner.team/stops/LLscent1"], ["https://tec.openplanner.team/stops/H1ch142b", "https://tec.openplanner.team/stops/H1si164a"], ["https://tec.openplanner.team/stops/N548aab", "https://tec.openplanner.team/stops/N565alb"], ["https://tec.openplanner.team/stops/X639ajb", "https://tec.openplanner.team/stops/X639akb"], ["https://tec.openplanner.team/stops/H4me211c", "https://tec.openplanner.team/stops/H4qu408a"], ["https://tec.openplanner.team/stops/Lanclon1", "https://tec.openplanner.team/stops/Lanlona1"], ["https://tec.openplanner.team/stops/Bcrncjo2", "https://tec.openplanner.team/stops/N529aaa"], ["https://tec.openplanner.team/stops/X608atb", "https://tec.openplanner.team/stops/X608awa"], ["https://tec.openplanner.team/stops/H1ho141b", "https://tec.openplanner.team/stops/H1ho142b"], ["https://tec.openplanner.team/stops/H1to153b", "https://tec.openplanner.team/stops/H1to153d"], ["https://tec.openplanner.team/stops/N506aqb", "https://tec.openplanner.team/stops/N506azb"], ["https://tec.openplanner.team/stops/NC14anb", "https://tec.openplanner.team/stops/NC14apa"], ["https://tec.openplanner.team/stops/X721aba", "https://tec.openplanner.team/stops/X763agb"], ["https://tec.openplanner.team/stops/N501fty", "https://tec.openplanner.team/stops/N501gpc"], ["https://tec.openplanner.team/stops/H4co105a", "https://tec.openplanner.team/stops/H4co134a"], ["https://tec.openplanner.team/stops/X641awa", "https://tec.openplanner.team/stops/X641axa"], ["https://tec.openplanner.team/stops/N120aca", "https://tec.openplanner.team/stops/N120adc"], ["https://tec.openplanner.team/stops/LFUfonc2", "https://tec.openplanner.team/stops/LWzfuma1"], ["https://tec.openplanner.team/stops/H1gh154b", "https://tec.openplanner.team/stops/H1gh167a"], ["https://tec.openplanner.team/stops/X822aja", "https://tec.openplanner.team/stops/X822ajb"], ["https://tec.openplanner.team/stops/H2na131b", "https://tec.openplanner.team/stops/H3go101a"], ["https://tec.openplanner.team/stops/X643aab", "https://tec.openplanner.team/stops/X643abb"], ["https://tec.openplanner.team/stops/LeYauss1", "https://tec.openplanner.team/stops/LeYmosc1"], ["https://tec.openplanner.team/stops/X793ahb", "https://tec.openplanner.team/stops/X793aib"], ["https://tec.openplanner.team/stops/X902aba", "https://tec.openplanner.team/stops/X902atb"], ["https://tec.openplanner.team/stops/Llgmass2", "https://tec.openplanner.team/stops/Llgschm2"], ["https://tec.openplanner.team/stops/LBPeg--1", "https://tec.openplanner.team/stops/LBPrueg2"], ["https://tec.openplanner.team/stops/Cnahahe1", "https://tec.openplanner.team/stops/Cnawari1"], ["https://tec.openplanner.team/stops/LTiflor1", "https://tec.openplanner.team/stops/LTiflor2"], ["https://tec.openplanner.team/stops/X995adc", "https://tec.openplanner.team/stops/X995ade"], ["https://tec.openplanner.team/stops/H2ca100a", "https://tec.openplanner.team/stops/H2ca103b"], ["https://tec.openplanner.team/stops/H1gi121b", "https://tec.openplanner.team/stops/H1gi123b"], ["https://tec.openplanner.team/stops/Lhrhosp1", "https://tec.openplanner.team/stops/Lhrhurb1"], ["https://tec.openplanner.team/stops/Lbhsion1", "https://tec.openplanner.team/stops/Lgrclin4"], ["https://tec.openplanner.team/stops/Cjulucq2", "https://tec.openplanner.team/stops/Cjupuis2"], ["https://tec.openplanner.team/stops/H5el112c", "https://tec.openplanner.team/stops/H5el114b"], ["https://tec.openplanner.team/stops/H2hl110b", "https://tec.openplanner.team/stops/H2hl113b"], ["https://tec.openplanner.team/stops/X641akb", "https://tec.openplanner.team/stops/X641aqa"], ["https://tec.openplanner.team/stops/N351aia", "https://tec.openplanner.team/stops/N351aib"], ["https://tec.openplanner.team/stops/X542acb", "https://tec.openplanner.team/stops/X542ada"], ["https://tec.openplanner.team/stops/H2ll182a", "https://tec.openplanner.team/stops/H2ll199b"], ["https://tec.openplanner.team/stops/N501heb", "https://tec.openplanner.team/stops/N501zca"], ["https://tec.openplanner.team/stops/N558amb", "https://tec.openplanner.team/stops/N559aaa"], ["https://tec.openplanner.team/stops/LeMdorf2", "https://tec.openplanner.team/stops/LmNbirt2"], ["https://tec.openplanner.team/stops/Cjxthom1", "https://tec.openplanner.team/stops/Cmmschw1"], ["https://tec.openplanner.team/stops/Bjodgai1", "https://tec.openplanner.team/stops/Blthvil1"], ["https://tec.openplanner.team/stops/N522aua", "https://tec.openplanner.team/stops/N522aub"], ["https://tec.openplanner.team/stops/X601aea", "https://tec.openplanner.team/stops/X601btb"], ["https://tec.openplanner.team/stops/H4ty315a", "https://tec.openplanner.team/stops/H4ty349a"], ["https://tec.openplanner.team/stops/H4bw101a", "https://tec.openplanner.team/stops/H4co149b"], ["https://tec.openplanner.team/stops/X897acb", "https://tec.openplanner.team/stops/X897ada"], ["https://tec.openplanner.team/stops/H4ch114b", "https://tec.openplanner.team/stops/H4ty321b"], ["https://tec.openplanner.team/stops/Lghgros2", "https://tec.openplanner.team/stops/Lghlogi1"], ["https://tec.openplanner.team/stops/Boveklo2", "https://tec.openplanner.team/stops/Bovesol2"], ["https://tec.openplanner.team/stops/X922ajb", "https://tec.openplanner.team/stops/X942aea"], ["https://tec.openplanner.team/stops/H2na132b", "https://tec.openplanner.team/stops/H3so169a"], ["https://tec.openplanner.team/stops/N543aia", "https://tec.openplanner.team/stops/N543ckb"], ["https://tec.openplanner.team/stops/H3so176b", "https://tec.openplanner.team/stops/H3so179a"], ["https://tec.openplanner.team/stops/X614acb", "https://tec.openplanner.team/stops/X614agb"], ["https://tec.openplanner.team/stops/Bcsgcou1", "https://tec.openplanner.team/stops/Bmrsayw1"], ["https://tec.openplanner.team/stops/LESslmo1", "https://tec.openplanner.team/stops/LTIdumo2"], ["https://tec.openplanner.team/stops/H4mv188a", "https://tec.openplanner.team/stops/H4oe150a"], ["https://tec.openplanner.team/stops/LEScham1", "https://tec.openplanner.team/stops/LESfoot1"], ["https://tec.openplanner.team/stops/X870aaa", "https://tec.openplanner.team/stops/X880agd"], ["https://tec.openplanner.team/stops/H4bc101c", "https://tec.openplanner.team/stops/H4bc101d"], ["https://tec.openplanner.team/stops/Bfledpi1", "https://tec.openplanner.team/stops/Cflchmo1"], ["https://tec.openplanner.team/stops/LlNhube1", "https://tec.openplanner.team/stops/LlNkirc2"], ["https://tec.openplanner.team/stops/N214adb", "https://tec.openplanner.team/stops/N228acb"], ["https://tec.openplanner.team/stops/N562aga", "https://tec.openplanner.team/stops/N562atb"], ["https://tec.openplanner.team/stops/Lmieg--1", "https://tec.openplanner.team/stops/Lmimc--2"], ["https://tec.openplanner.team/stops/Cmaroya1", "https://tec.openplanner.team/stops/Cmastch2"], ["https://tec.openplanner.team/stops/Bbrlmez1", "https://tec.openplanner.team/stops/Bucceng2"], ["https://tec.openplanner.team/stops/LNAdemo2", "https://tec.openplanner.team/stops/LYEphar1"], ["https://tec.openplanner.team/stops/LBIhann1", "https://tec.openplanner.team/stops/LBIhann2"], ["https://tec.openplanner.team/stops/Bblmpro1", "https://tec.openplanner.team/stops/Bblmpro2"], ["https://tec.openplanner.team/stops/H1lm105a", "https://tec.openplanner.team/stops/H1lm106a"], ["https://tec.openplanner.team/stops/X766aab", "https://tec.openplanner.team/stops/X766aha"], ["https://tec.openplanner.team/stops/Cmmcomb1", "https://tec.openplanner.team/stops/Cmmserv2"], ["https://tec.openplanner.team/stops/X923aaa", "https://tec.openplanner.team/stops/X923ana"], ["https://tec.openplanner.team/stops/X788ahb", "https://tec.openplanner.team/stops/X790abb"], ["https://tec.openplanner.team/stops/Ccybeau1", "https://tec.openplanner.team/stops/Ccychap1"], ["https://tec.openplanner.team/stops/Lpedeta2", "https://tec.openplanner.team/stops/Lpeflec2"], ["https://tec.openplanner.team/stops/Bpecdel2", "https://tec.openplanner.team/stops/Bwavpar1"], ["https://tec.openplanner.team/stops/N270acb", "https://tec.openplanner.team/stops/N270ada"], ["https://tec.openplanner.team/stops/H5at122b", "https://tec.openplanner.team/stops/H5la177a"], ["https://tec.openplanner.team/stops/N244aib", "https://tec.openplanner.team/stops/N251adb"], ["https://tec.openplanner.team/stops/X724aaa", "https://tec.openplanner.team/stops/X724aab"], ["https://tec.openplanner.team/stops/H2ma203a", "https://tec.openplanner.team/stops/H2ma203b"], ["https://tec.openplanner.team/stops/N310aea", "https://tec.openplanner.team/stops/N310aeb"], ["https://tec.openplanner.team/stops/Lrc594-2", "https://tec.openplanner.team/stops/Lvo60--2"], ["https://tec.openplanner.team/stops/Lrclohe1", "https://tec.openplanner.team/stops/Lrclohe2"], ["https://tec.openplanner.team/stops/X782alb", "https://tec.openplanner.team/stops/X782aoa"], ["https://tec.openplanner.team/stops/LFFmarc2", "https://tec.openplanner.team/stops/LFFmarc3"], ["https://tec.openplanner.team/stops/X897aoa", "https://tec.openplanner.team/stops/X897apb"], ["https://tec.openplanner.team/stops/Llggrav2", "https://tec.openplanner.team/stops/Llgstap2"], ["https://tec.openplanner.team/stops/LHCbois2", "https://tec.openplanner.team/stops/LHCprog1"], ["https://tec.openplanner.team/stops/Lcebail1", "https://tec.openplanner.team/stops/Lceembo1"], ["https://tec.openplanner.team/stops/H4wi163a", "https://tec.openplanner.team/stops/H4wi175a"], ["https://tec.openplanner.team/stops/X640aca", "https://tec.openplanner.team/stops/X640aea"], ["https://tec.openplanner.team/stops/X982ama", "https://tec.openplanner.team/stops/X982amb"], ["https://tec.openplanner.team/stops/H1hg179b", "https://tec.openplanner.team/stops/H1hg180a"], ["https://tec.openplanner.team/stops/H1em110a", "https://tec.openplanner.team/stops/H1hl125a"], ["https://tec.openplanner.team/stops/LSSfont2", "https://tec.openplanner.team/stops/LSSfrai2"], ["https://tec.openplanner.team/stops/X840aga", "https://tec.openplanner.team/stops/X840agb"], ["https://tec.openplanner.team/stops/H1bx105b", "https://tec.openplanner.team/stops/H1bx106a"], ["https://tec.openplanner.team/stops/H4lp124b", "https://tec.openplanner.team/stops/H4my122b"], ["https://tec.openplanner.team/stops/Clodesc1", "https://tec.openplanner.team/stops/Clodesc2"], ["https://tec.openplanner.team/stops/N360aaa", "https://tec.openplanner.team/stops/N360aeb"], ["https://tec.openplanner.team/stops/N574aca", "https://tec.openplanner.team/stops/N576ala"], ["https://tec.openplanner.team/stops/H1ms278a", "https://tec.openplanner.team/stops/H1ms278b"], ["https://tec.openplanner.team/stops/H1fr112a", "https://tec.openplanner.team/stops/H1fr116a"], ["https://tec.openplanner.team/stops/X923agb", "https://tec.openplanner.team/stops/X923ama"], ["https://tec.openplanner.team/stops/H1fr111b", "https://tec.openplanner.team/stops/H1fr130b"], ["https://tec.openplanner.team/stops/LTRcarr1", "https://tec.openplanner.team/stops/LTRcarr2"], ["https://tec.openplanner.team/stops/Blascvi1", "https://tec.openplanner.team/stops/Blasvil2"], ["https://tec.openplanner.team/stops/H4oq225b", "https://tec.openplanner.team/stops/H4wu376a"], ["https://tec.openplanner.team/stops/LFypfei1", "https://tec.openplanner.team/stops/LsHlenz2"], ["https://tec.openplanner.team/stops/LHUmess2", "https://tec.openplanner.team/stops/LHUsauv3"], ["https://tec.openplanner.team/stops/Cchmonu2", "https://tec.openplanner.team/stops/Cchmonu3"], ["https://tec.openplanner.team/stops/Cci4bra3", "https://tec.openplanner.team/stops/NC02apb"], ["https://tec.openplanner.team/stops/X993acb", "https://tec.openplanner.team/stops/X994aib"], ["https://tec.openplanner.team/stops/N501hqa", "https://tec.openplanner.team/stops/N501hqb"], ["https://tec.openplanner.team/stops/N501dwa", "https://tec.openplanner.team/stops/N501eea"], ["https://tec.openplanner.team/stops/X607aib", "https://tec.openplanner.team/stops/X647aaa"], ["https://tec.openplanner.team/stops/LLTtour1", "https://tec.openplanner.team/stops/LTOplac2"], ["https://tec.openplanner.team/stops/H4vz368a", "https://tec.openplanner.team/stops/H4vz371b"], ["https://tec.openplanner.team/stops/LHCauwe3", "https://tec.openplanner.team/stops/LHChoof3"], ["https://tec.openplanner.team/stops/Bbgnvel1", "https://tec.openplanner.team/stops/Cwfaldi2"], ["https://tec.openplanner.team/stops/Lchsart2", "https://tec.openplanner.team/stops/Lvichpl1"], ["https://tec.openplanner.team/stops/X662aca", "https://tec.openplanner.team/stops/X662anb"], ["https://tec.openplanner.team/stops/Cchbaza1", "https://tec.openplanner.team/stops/CMwate1"], ["https://tec.openplanner.team/stops/Cmmecol2", "https://tec.openplanner.team/stops/Cmmtomb1"], ["https://tec.openplanner.team/stops/LMfbuck2", "https://tec.openplanner.team/stops/LMfpral2"], ["https://tec.openplanner.team/stops/Lrecite2", "https://tec.openplanner.team/stops/Lrecroi2"], ["https://tec.openplanner.team/stops/Cragoss1", "https://tec.openplanner.team/stops/Cravign3"], ["https://tec.openplanner.team/stops/LBSneuv2", "https://tec.openplanner.team/stops/LRGbett3"], ["https://tec.openplanner.team/stops/X750aja", "https://tec.openplanner.team/stops/X750ala"], ["https://tec.openplanner.team/stops/LAbchpl2", "https://tec.openplanner.team/stops/LTNcarr4"], ["https://tec.openplanner.team/stops/H4au100b", "https://tec.openplanner.team/stops/H4bq100a"], ["https://tec.openplanner.team/stops/X750aea", "https://tec.openplanner.team/stops/X750bma"], ["https://tec.openplanner.team/stops/LJuhaie1", "https://tec.openplanner.team/stops/LSDgris1"], ["https://tec.openplanner.team/stops/X801acb", "https://tec.openplanner.team/stops/X801aeb"], ["https://tec.openplanner.team/stops/Bovejei1", "https://tec.openplanner.team/stops/Bovejme2"], ["https://tec.openplanner.team/stops/LTobilz2", "https://tec.openplanner.team/stops/LTolijn*"], ["https://tec.openplanner.team/stops/X837aia", "https://tec.openplanner.team/stops/X889aeb"], ["https://tec.openplanner.team/stops/X759adb", "https://tec.openplanner.team/stops/X840abb"], ["https://tec.openplanner.team/stops/H5el107a", "https://tec.openplanner.team/stops/H5el117b"], ["https://tec.openplanner.team/stops/N301asa", "https://tec.openplanner.team/stops/N301asb"], ["https://tec.openplanner.team/stops/H4hx113a", "https://tec.openplanner.team/stops/H4hx113b"], ["https://tec.openplanner.team/stops/Bwavgar8", "https://tec.openplanner.team/stops/Bwavtpi2"], ["https://tec.openplanner.team/stops/X614afa", "https://tec.openplanner.team/stops/X614axb"], ["https://tec.openplanner.team/stops/Bcsebea2", "https://tec.openplanner.team/stops/Bcsen251"], ["https://tec.openplanner.team/stops/X636aea", "https://tec.openplanner.team/stops/X636ala"], ["https://tec.openplanner.team/stops/Bgemcha2", "https://tec.openplanner.team/stops/N522asb"], ["https://tec.openplanner.team/stops/LHMhind2", "https://tec.openplanner.team/stops/LSIgehe1"], ["https://tec.openplanner.team/stops/LHUetie*", "https://tec.openplanner.team/stops/LStroch1"], ["https://tec.openplanner.team/stops/H2pe154b", "https://tec.openplanner.team/stops/H2pe162b"], ["https://tec.openplanner.team/stops/Buccham2", "https://tec.openplanner.team/stops/Buccvch2"], ["https://tec.openplanner.team/stops/LBGcent1", "https://tec.openplanner.team/stops/LHDpota4"], ["https://tec.openplanner.team/stops/Csiegli1", "https://tec.openplanner.team/stops/N103afa"], ["https://tec.openplanner.team/stops/N352abb", "https://tec.openplanner.team/stops/N353aba"], ["https://tec.openplanner.team/stops/H1qu114b", "https://tec.openplanner.team/stops/H1qu119b"], ["https://tec.openplanner.team/stops/X641ajb", "https://tec.openplanner.team/stops/X641aka"], ["https://tec.openplanner.team/stops/LLelans1", "https://tec.openplanner.team/stops/X547aja"], ["https://tec.openplanner.team/stops/Cmmegli2", "https://tec.openplanner.team/stops/Cmmegli3"], ["https://tec.openplanner.team/stops/Bmonbor1", "https://tec.openplanner.team/stops/Bmonbri2"], ["https://tec.openplanner.team/stops/Cwgcamp1", "https://tec.openplanner.team/stops/Cwgpatr1"], ["https://tec.openplanner.team/stops/X789acb", "https://tec.openplanner.team/stops/X789ajb"], ["https://tec.openplanner.team/stops/LGlbour1", "https://tec.openplanner.team/stops/LHZec--2"], ["https://tec.openplanner.team/stops/N243aea", "https://tec.openplanner.team/stops/N243aeb"], ["https://tec.openplanner.team/stops/Crsmonu2", "https://tec.openplanner.team/stops/Crswaut2"], ["https://tec.openplanner.team/stops/X756ajb", "https://tec.openplanner.team/stops/X779aga"], ["https://tec.openplanner.team/stops/H1cd111b", "https://tec.openplanner.team/stops/H1hr127a"], ["https://tec.openplanner.team/stops/Ccicent1", "https://tec.openplanner.team/stops/Ccicent4"], ["https://tec.openplanner.team/stops/LATdieu1", "https://tec.openplanner.team/stops/LATgill1"], ["https://tec.openplanner.team/stops/H2ma204b", "https://tec.openplanner.team/stops/H3th131b"], ["https://tec.openplanner.team/stops/Bwspmon1", "https://tec.openplanner.team/stops/Bwspmon4"], ["https://tec.openplanner.team/stops/Bsampli2", "https://tec.openplanner.team/stops/N584bab"], ["https://tec.openplanner.team/stops/Bbaubru1", "https://tec.openplanner.team/stops/Bnivpba1"], ["https://tec.openplanner.team/stops/H4mo151a", "https://tec.openplanner.team/stops/H4mo169a"], ["https://tec.openplanner.team/stops/N501lba", "https://tec.openplanner.team/stops/N501lbb"], ["https://tec.openplanner.team/stops/N120abb", "https://tec.openplanner.team/stops/N120aeb"], ["https://tec.openplanner.team/stops/LREhaut2", "https://tec.openplanner.team/stops/LREsp902"], ["https://tec.openplanner.team/stops/N241aab", "https://tec.openplanner.team/stops/N241aba"], ["https://tec.openplanner.team/stops/N368ada", "https://tec.openplanner.team/stops/N368adb"], ["https://tec.openplanner.team/stops/H4do106b", "https://tec.openplanner.team/stops/H4do107a"], ["https://tec.openplanner.team/stops/LESamos2", "https://tec.openplanner.team/stops/LEScham1"], ["https://tec.openplanner.team/stops/Canlalu1", "https://tec.openplanner.team/stops/Canpeup1"], ["https://tec.openplanner.team/stops/N501fda", "https://tec.openplanner.team/stops/N501lzz"], ["https://tec.openplanner.team/stops/LbUkrin1", "https://tec.openplanner.team/stops/LbUkrin2"], ["https://tec.openplanner.team/stops/N537aka", "https://tec.openplanner.team/stops/N556ada"], ["https://tec.openplanner.team/stops/X640aab", "https://tec.openplanner.team/stops/X674aab"], ["https://tec.openplanner.team/stops/H1gg146a", "https://tec.openplanner.team/stops/H1ry134b"], ["https://tec.openplanner.team/stops/Cjuheig1", "https://tec.openplanner.team/stops/Croheig1"], ["https://tec.openplanner.team/stops/N538aha", "https://tec.openplanner.team/stops/N538ala"], ["https://tec.openplanner.team/stops/H4wi161b", "https://tec.openplanner.team/stops/H5pe139b"], ["https://tec.openplanner.team/stops/Cpccpas1", "https://tec.openplanner.team/stops/Cpclibe1"], ["https://tec.openplanner.team/stops/H4pp122a", "https://tec.openplanner.team/stops/H4qu408a"], ["https://tec.openplanner.team/stops/Lbocruc1", "https://tec.openplanner.team/stops/Lbocruc3"], ["https://tec.openplanner.team/stops/X614aka", "https://tec.openplanner.team/stops/X614arb"], ["https://tec.openplanner.team/stops/Cthbeff1", "https://tec.openplanner.team/stops/Cthoues1"], ["https://tec.openplanner.team/stops/LNoenne2", "https://tec.openplanner.team/stops/X917afb"], ["https://tec.openplanner.team/stops/X982amb", "https://tec.openplanner.team/stops/X982ana"], ["https://tec.openplanner.team/stops/H1cu114a", "https://tec.openplanner.team/stops/H1cu114b"], ["https://tec.openplanner.team/stops/Cchhopi4", "https://tec.openplanner.team/stops/Cmtpaix2"], ["https://tec.openplanner.team/stops/LBEairp1", "https://tec.openplanner.team/stops/LBEairp4"], ["https://tec.openplanner.team/stops/Bbiemor2", "https://tec.openplanner.team/stops/Bbiepon1"], ["https://tec.openplanner.team/stops/LPLc49-2", "https://tec.openplanner.team/stops/LPLc65-2"], ["https://tec.openplanner.team/stops/H1og130b", "https://tec.openplanner.team/stops/H1og134a"], ["https://tec.openplanner.team/stops/Lseaven2", "https://tec.openplanner.team/stops/Lsemara2"], ["https://tec.openplanner.team/stops/X641amb", "https://tec.openplanner.team/stops/X673aaa"], ["https://tec.openplanner.team/stops/X595abb", "https://tec.openplanner.team/stops/X595aib"], ["https://tec.openplanner.team/stops/LPbchat1", "https://tec.openplanner.team/stops/LPbpl--2"], ["https://tec.openplanner.team/stops/X744aea", "https://tec.openplanner.team/stops/X746ajb"], ["https://tec.openplanner.team/stops/H1hr128a", "https://tec.openplanner.team/stops/H1hr128d"], ["https://tec.openplanner.team/stops/Llggram4", "https://tec.openplanner.team/stops/Llgstvi3"], ["https://tec.openplanner.team/stops/LVllieg2", "https://tec.openplanner.team/stops/LVlplan1"], ["https://tec.openplanner.team/stops/Csepost1", "https://tec.openplanner.team/stops/Cvtchap1"], ["https://tec.openplanner.team/stops/Bixleix2", "https://tec.openplanner.team/stops/Buccbas2"], ["https://tec.openplanner.team/stops/X942aea", "https://tec.openplanner.team/stops/X942agb"], ["https://tec.openplanner.team/stops/X614apb", "https://tec.openplanner.team/stops/X614aza"], ["https://tec.openplanner.team/stops/LbOdorf2", "https://tec.openplanner.team/stops/LmYwall1"], ["https://tec.openplanner.team/stops/LLAbure2", "https://tec.openplanner.team/stops/LLAchpl1"], ["https://tec.openplanner.team/stops/H4fr389a", "https://tec.openplanner.team/stops/H4ka393b"], ["https://tec.openplanner.team/stops/X902aib", "https://tec.openplanner.team/stops/X902ala"], ["https://tec.openplanner.team/stops/X750aba", "https://tec.openplanner.team/stops/X750adb"], ["https://tec.openplanner.team/stops/X804cba", "https://tec.openplanner.team/stops/X818aaa"], ["https://tec.openplanner.team/stops/N528aqb", "https://tec.openplanner.team/stops/N528asa"], ["https://tec.openplanner.team/stops/LREaube1", "https://tec.openplanner.team/stops/LREsaul1"], ["https://tec.openplanner.team/stops/Clocroi1", "https://tec.openplanner.team/stops/Clodupr1"], ["https://tec.openplanner.team/stops/N501fuz", "https://tec.openplanner.team/stops/N501fyc"], ["https://tec.openplanner.team/stops/Cgorosa2", "https://tec.openplanner.team/stops/Ctmmana1"], ["https://tec.openplanner.team/stops/LAvambr1", "https://tec.openplanner.team/stops/LAvcani2"], ["https://tec.openplanner.team/stops/Llgcrev2", "https://tec.openplanner.team/stops/Llgdepo2"], ["https://tec.openplanner.team/stops/H1mj122a", "https://tec.openplanner.team/stops/H1mj130a"], ["https://tec.openplanner.team/stops/LeUkabe1", "https://tec.openplanner.team/stops/LeUkabe2"], ["https://tec.openplanner.team/stops/H1ho125c", "https://tec.openplanner.team/stops/H1ho130b"], ["https://tec.openplanner.team/stops/Cmmbmad2", "https://tec.openplanner.team/stops/Cmmcver1"], ["https://tec.openplanner.team/stops/Bquepos2", "https://tec.openplanner.team/stops/Bquesta2"], ["https://tec.openplanner.team/stops/Btsllsc2", "https://tec.openplanner.team/stops/Btstpch1"], ["https://tec.openplanner.team/stops/H4mt219b", "https://tec.openplanner.team/stops/H4ve131a"], ["https://tec.openplanner.team/stops/Ccychap1", "https://tec.openplanner.team/stops/Ccygara2"], ["https://tec.openplanner.team/stops/LDAptbo1", "https://tec.openplanner.team/stops/LFethie2"], ["https://tec.openplanner.team/stops/H4bo110a", "https://tec.openplanner.team/stops/H4bo111b"], ["https://tec.openplanner.team/stops/H1mg109a", "https://tec.openplanner.team/stops/H2an103b"], ["https://tec.openplanner.team/stops/Lsmdepo2", "https://tec.openplanner.team/stops/Lsmeg--2"], ["https://tec.openplanner.team/stops/LeYroth2", "https://tec.openplanner.team/stops/LeYteeh2"], ["https://tec.openplanner.team/stops/N513bbc", "https://tec.openplanner.team/stops/N516aoa"], ["https://tec.openplanner.team/stops/Bgembsg1", "https://tec.openplanner.team/stops/Bgemfbo1"], ["https://tec.openplanner.team/stops/H1te187a", "https://tec.openplanner.team/stops/H1te188b"], ["https://tec.openplanner.team/stops/Ctabaty3", "https://tec.openplanner.team/stops/Ctachst1"], ["https://tec.openplanner.team/stops/LHCbois1", "https://tec.openplanner.team/stops/LHCbois6"], ["https://tec.openplanner.team/stops/H4ka174b", "https://tec.openplanner.team/stops/H4ka192b"], ["https://tec.openplanner.team/stops/H4ga148b", "https://tec.openplanner.team/stops/H4ga164a"], ["https://tec.openplanner.team/stops/LFmbure2", "https://tec.openplanner.team/stops/LFmgeno1"], ["https://tec.openplanner.team/stops/H5pe134a", "https://tec.openplanner.team/stops/H5pe134b"], ["https://tec.openplanner.team/stops/LbTaral1", "https://tec.openplanner.team/stops/LbTaral2"], ["https://tec.openplanner.team/stops/Bdlvpco1", "https://tec.openplanner.team/stops/Bdlvpco2"], ["https://tec.openplanner.team/stops/Bbougar2", "https://tec.openplanner.team/stops/Btancnd2"], ["https://tec.openplanner.team/stops/LSBrouf1", "https://tec.openplanner.team/stops/LSBsere4"], ["https://tec.openplanner.team/stops/Clodrio2", "https://tec.openplanner.team/stops/Clomart2"], ["https://tec.openplanner.team/stops/LRRmanc1", "https://tec.openplanner.team/stops/LRRmanc2"], ["https://tec.openplanner.team/stops/LHGbeur3", "https://tec.openplanner.team/stops/LHGbeur4"], ["https://tec.openplanner.team/stops/LSNness2", "https://tec.openplanner.team/stops/LXHmart1"], ["https://tec.openplanner.team/stops/LhGadap1", "https://tec.openplanner.team/stops/LhGbahn*"], ["https://tec.openplanner.team/stops/LLreque2", "https://tec.openplanner.team/stops/LLrgobe2"], ["https://tec.openplanner.team/stops/Loumair1", "https://tec.openplanner.team/stops/Lscstan1"], ["https://tec.openplanner.team/stops/H1sy139a", "https://tec.openplanner.team/stops/H1sy139b"], ["https://tec.openplanner.team/stops/Bboueta1", "https://tec.openplanner.team/stops/Bbougbl2"], ["https://tec.openplanner.team/stops/N150adb", "https://tec.openplanner.team/stops/N150akb"], ["https://tec.openplanner.team/stops/N170aab", "https://tec.openplanner.team/stops/NC14ava"], ["https://tec.openplanner.team/stops/X938ada", "https://tec.openplanner.team/stops/X939ahb"], ["https://tec.openplanner.team/stops/Lkivolg1", "https://tec.openplanner.team/stops/Lscbour1"], ["https://tec.openplanner.team/stops/Lanhoud3", "https://tec.openplanner.team/stops/Lanpisc2"], ["https://tec.openplanner.team/stops/X762agb", "https://tec.openplanner.team/stops/X764afb"], ["https://tec.openplanner.team/stops/Cgoclad1", "https://tec.openplanner.team/stops/Cgoloca2"], ["https://tec.openplanner.team/stops/H4eg104a", "https://tec.openplanner.team/stops/H4ne136a"], ["https://tec.openplanner.team/stops/Lsnagne2", "https://tec.openplanner.team/stops/Lsnlibe2"], ["https://tec.openplanner.team/stops/Cplrymo2", "https://tec.openplanner.team/stops/Cplstfa3"], ["https://tec.openplanner.team/stops/LCTcret2", "https://tec.openplanner.team/stops/LXocomb2"], ["https://tec.openplanner.team/stops/N532acb", "https://tec.openplanner.team/stops/N533acb"], ["https://tec.openplanner.team/stops/LSlpays2", "https://tec.openplanner.team/stops/X919akd"], ["https://tec.openplanner.team/stops/LBIaepo4", "https://tec.openplanner.team/stops/LBIbois2"], ["https://tec.openplanner.team/stops/X750bab", "https://tec.openplanner.team/stops/X780aia"], ["https://tec.openplanner.team/stops/LTIgare3", "https://tec.openplanner.team/stops/LTIpora1"], ["https://tec.openplanner.team/stops/Lceprog2", "https://tec.openplanner.team/stops/Lgrdemo1"], ["https://tec.openplanner.team/stops/Bcsgres1", "https://tec.openplanner.team/stops/Bmrssmc1"], ["https://tec.openplanner.team/stops/N312abb", "https://tec.openplanner.team/stops/N312aca"], ["https://tec.openplanner.team/stops/LCxc6192", "https://tec.openplanner.team/stops/LCxross2"], ["https://tec.openplanner.team/stops/X954aca", "https://tec.openplanner.team/stops/X954acb"], ["https://tec.openplanner.team/stops/Lhufila1", "https://tec.openplanner.team/stops/Lhufila2"], ["https://tec.openplanner.team/stops/Cthgrat1", "https://tec.openplanner.team/stops/Cthpano1"], ["https://tec.openplanner.team/stops/LCsbors2", "https://tec.openplanner.team/stops/LCscarr2"], ["https://tec.openplanner.team/stops/X850acb", "https://tec.openplanner.team/stops/X850aib"], ["https://tec.openplanner.team/stops/H1ho147a", "https://tec.openplanner.team/stops/H1ho147b"], ["https://tec.openplanner.team/stops/LHAarge1", "https://tec.openplanner.team/stops/LHAdeho2"], ["https://tec.openplanner.team/stops/LBWviad1", "https://tec.openplanner.team/stops/LMgbern1"], ["https://tec.openplanner.team/stops/Lvegera2", "https://tec.openplanner.team/stops/Lveleje1"], ["https://tec.openplanner.team/stops/Cgorobe2", "https://tec.openplanner.team/stops/Ctmmath2"], ["https://tec.openplanner.team/stops/X609aja", "https://tec.openplanner.team/stops/X609aka"], ["https://tec.openplanner.team/stops/Bmelegl2", "https://tec.openplanner.team/stops/Bmelsab2"], ["https://tec.openplanner.team/stops/LMTvill1", "https://tec.openplanner.team/stops/LMTvill2"], ["https://tec.openplanner.team/stops/X807aaa", "https://tec.openplanner.team/stops/X807aba"], ["https://tec.openplanner.team/stops/H4es117a", "https://tec.openplanner.team/stops/H4es117b"], ["https://tec.openplanner.team/stops/N340abb", "https://tec.openplanner.team/stops/N340acb"], ["https://tec.openplanner.team/stops/LOVeg--1", "https://tec.openplanner.team/stops/LSopost1"], ["https://tec.openplanner.team/stops/LwMzoll1", "https://tec.openplanner.team/stops/LwMzoll2"], ["https://tec.openplanner.team/stops/X354abb", "https://tec.openplanner.team/stops/X354aia"], ["https://tec.openplanner.team/stops/Lalchar1", "https://tec.openplanner.team/stops/Lalchar2"], ["https://tec.openplanner.team/stops/Blincal1", "https://tec.openplanner.team/stops/Bpelf961"], ["https://tec.openplanner.team/stops/LSzcoop1", "https://tec.openplanner.team/stops/N506bta"], ["https://tec.openplanner.team/stops/Lchpniv2", "https://tec.openplanner.team/stops/Lvichpl2"], ["https://tec.openplanner.team/stops/H1gr113b", "https://tec.openplanner.team/stops/H1hr117a"], ["https://tec.openplanner.team/stops/N232bwb", "https://tec.openplanner.team/stops/N232ceb"], ["https://tec.openplanner.team/stops/N229arb", "https://tec.openplanner.team/stops/N230aba"], ["https://tec.openplanner.team/stops/LPLcent2", "https://tec.openplanner.team/stops/LPLcroi1"], ["https://tec.openplanner.team/stops/X818aoa", "https://tec.openplanner.team/stops/X818ara"], ["https://tec.openplanner.team/stops/LiV19--1", "https://tec.openplanner.team/stops/LiVgirk1"], ["https://tec.openplanner.team/stops/X995abb", "https://tec.openplanner.team/stops/X995ade"], ["https://tec.openplanner.team/stops/N528aoa", "https://tec.openplanner.team/stops/N528aob"], ["https://tec.openplanner.team/stops/X760aaa", "https://tec.openplanner.team/stops/X760aab"], ["https://tec.openplanner.team/stops/Cgofabr1", "https://tec.openplanner.team/stops/Cgofabr2"], ["https://tec.openplanner.team/stops/N501gpc", "https://tec.openplanner.team/stops/N501gpz"], ["https://tec.openplanner.team/stops/X941afb", "https://tec.openplanner.team/stops/X941aha"], ["https://tec.openplanner.team/stops/N513bhb", "https://tec.openplanner.team/stops/N521ata"], ["https://tec.openplanner.team/stops/Bbchm381", "https://tec.openplanner.team/stops/Bhalvla1"], ["https://tec.openplanner.team/stops/H1bg110b", "https://tec.openplanner.team/stops/H1hy125b"], ["https://tec.openplanner.team/stops/LGlwarf1", "https://tec.openplanner.team/stops/LSBjoli1"], ["https://tec.openplanner.team/stops/X824aeb", "https://tec.openplanner.team/stops/X824afa"], ["https://tec.openplanner.team/stops/Lvecase2", "https://tec.openplanner.team/stops/Lvewall2"], ["https://tec.openplanner.team/stops/LPlchpl2", "https://tec.openplanner.team/stops/LPldoua4"], ["https://tec.openplanner.team/stops/H5fl101a", "https://tec.openplanner.team/stops/H5fl103a"], ["https://tec.openplanner.team/stops/H5qu147a", "https://tec.openplanner.team/stops/H5qu150b"], ["https://tec.openplanner.team/stops/H4va231b", "https://tec.openplanner.team/stops/H4vd230b"], ["https://tec.openplanner.team/stops/Bezeksj3", "https://tec.openplanner.team/stops/Bezeksj4"], ["https://tec.openplanner.team/stops/X636aob", "https://tec.openplanner.team/stops/X636aqd"], ["https://tec.openplanner.team/stops/LVIvert1", "https://tec.openplanner.team/stops/LVIvert2"], ["https://tec.openplanner.team/stops/Lmolagu2", "https://tec.openplanner.team/stops/Lmopech1"], ["https://tec.openplanner.team/stops/X758afa", "https://tec.openplanner.team/stops/X758afb"], ["https://tec.openplanner.team/stops/Ctrecol5", "https://tec.openplanner.team/stops/Ctrvert2"], ["https://tec.openplanner.team/stops/N254aga", "https://tec.openplanner.team/stops/N254ahb"], ["https://tec.openplanner.team/stops/Csedoua1", "https://tec.openplanner.team/stops/Csemacq4"], ["https://tec.openplanner.team/stops/Llgerac2", "https://tec.openplanner.team/stops/Llgfoss2"], ["https://tec.openplanner.team/stops/N104aka", "https://tec.openplanner.team/stops/N106ara"], ["https://tec.openplanner.team/stops/Ctafran1", "https://tec.openplanner.team/stops/N543cpb"], ["https://tec.openplanner.team/stops/N559aaa", "https://tec.openplanner.team/stops/N560abb"], ["https://tec.openplanner.team/stops/Livrame1", "https://tec.openplanner.team/stops/Livrame2"], ["https://tec.openplanner.team/stops/X911aja", "https://tec.openplanner.team/stops/X911amb"], ["https://tec.openplanner.team/stops/LTIgare1", "https://tec.openplanner.team/stops/LTIgare2"], ["https://tec.openplanner.team/stops/Bbstpon1", "https://tec.openplanner.team/stops/Blpglon2"], ["https://tec.openplanner.team/stops/Bwbfckr1", "https://tec.openplanner.team/stops/Bwbfgar1"], ["https://tec.openplanner.team/stops/LCAeg--1", "https://tec.openplanner.team/stops/LLagert*"], ["https://tec.openplanner.team/stops/Brixape1", "https://tec.openplanner.team/stops/Brixmar3"], ["https://tec.openplanner.team/stops/X398aaa", "https://tec.openplanner.team/stops/X999alb"], ["https://tec.openplanner.team/stops/Bcrncor2", "https://tec.openplanner.team/stops/N529acb"], ["https://tec.openplanner.team/stops/N501adb", "https://tec.openplanner.team/stops/N501aha"], ["https://tec.openplanner.team/stops/N534bkg", "https://tec.openplanner.team/stops/N534bkh"], ["https://tec.openplanner.team/stops/X771acb", "https://tec.openplanner.team/stops/X771ada"], ["https://tec.openplanner.team/stops/Cfbcal1", "https://tec.openplanner.team/stops/Cfcbosq1"], ["https://tec.openplanner.team/stops/X717aca", "https://tec.openplanner.team/stops/X717adb"], ["https://tec.openplanner.team/stops/LCPaube1", "https://tec.openplanner.team/stops/LCPaywa2"], ["https://tec.openplanner.team/stops/N337aha", "https://tec.openplanner.team/stops/N339aaa"], ["https://tec.openplanner.team/stops/Bbchcab2", "https://tec.openplanner.team/stops/Bbchpil2"], ["https://tec.openplanner.team/stops/Bneeegl2", "https://tec.openplanner.team/stops/Bneersa2"], ["https://tec.openplanner.team/stops/N232adb", "https://tec.openplanner.team/stops/N287aaa"], ["https://tec.openplanner.team/stops/N528ama", "https://tec.openplanner.team/stops/N528ana"], ["https://tec.openplanner.team/stops/Lmabott1", "https://tec.openplanner.team/stops/Lrosoxh2"], ["https://tec.openplanner.team/stops/N537aja", "https://tec.openplanner.team/stops/N537ajb"], ["https://tec.openplanner.team/stops/LMHcant1", "https://tec.openplanner.team/stops/LMHplac4"], ["https://tec.openplanner.team/stops/LnE79--1", "https://tec.openplanner.team/stops/LnEfrie1"], ["https://tec.openplanner.team/stops/Bgrhhot1", "https://tec.openplanner.team/stops/Bgrhhot2"], ["https://tec.openplanner.team/stops/X731aga", "https://tec.openplanner.team/stops/X731agb"], ["https://tec.openplanner.team/stops/LSZmonu4", "https://tec.openplanner.team/stops/LTgcime1"], ["https://tec.openplanner.team/stops/H4mv190a", "https://tec.openplanner.team/stops/H4mv194a"], ["https://tec.openplanner.team/stops/Cprbevu2", "https://tec.openplanner.team/stops/Cprlpre2"], ["https://tec.openplanner.team/stops/LLWchat1", "https://tec.openplanner.team/stops/LLWchat2"], ["https://tec.openplanner.team/stops/N527aba", "https://tec.openplanner.team/stops/N527abb"], ["https://tec.openplanner.team/stops/X979afb", "https://tec.openplanner.team/stops/X982alb"], ["https://tec.openplanner.team/stops/Cgpmoul2", "https://tec.openplanner.team/stops/Cobvill1"], ["https://tec.openplanner.team/stops/Cglfrom1", "https://tec.openplanner.team/stops/Cglfrom2"], ["https://tec.openplanner.team/stops/Blhubja1", "https://tec.openplanner.team/stops/Blhugmo2"], ["https://tec.openplanner.team/stops/Bglacsr1", "https://tec.openplanner.team/stops/Bwaygrg1"], ["https://tec.openplanner.team/stops/LWDchab1", "https://tec.openplanner.team/stops/LWDcime1"], ["https://tec.openplanner.team/stops/LBLplac3", "https://tec.openplanner.team/stops/LBLplac4"], ["https://tec.openplanner.team/stops/X947aaa", "https://tec.openplanner.team/stops/X948aqa"], ["https://tec.openplanner.team/stops/H2sb233c", "https://tec.openplanner.team/stops/H2sb235a"], ["https://tec.openplanner.team/stops/N244aab", "https://tec.openplanner.team/stops/N244aga"], ["https://tec.openplanner.team/stops/Lalmitt1", "https://tec.openplanner.team/stops/Lalmitt2"], ["https://tec.openplanner.team/stops/X922ada", "https://tec.openplanner.team/stops/X922adb"], ["https://tec.openplanner.team/stops/X773aea", "https://tec.openplanner.team/stops/X773afa"], ["https://tec.openplanner.team/stops/Buccmer1", "https://tec.openplanner.team/stops/Buccptj2"], ["https://tec.openplanner.team/stops/LOesour2", "https://tec.openplanner.team/stops/LWAmouh1"], ["https://tec.openplanner.team/stops/X734ajb", "https://tec.openplanner.team/stops/X734akb"], ["https://tec.openplanner.team/stops/X877aaa", "https://tec.openplanner.team/stops/X989afa"], ["https://tec.openplanner.team/stops/N571afa", "https://tec.openplanner.team/stops/N571aga"], ["https://tec.openplanner.team/stops/N161abc", "https://tec.openplanner.team/stops/N161afb"], ["https://tec.openplanner.team/stops/LHHgare1", "https://tec.openplanner.team/stops/LSkbo832"], ["https://tec.openplanner.team/stops/N534bqa", "https://tec.openplanner.team/stops/N534bva"], ["https://tec.openplanner.team/stops/X608ama", "https://tec.openplanner.team/stops/X608awa"], ["https://tec.openplanner.team/stops/Bsaucre1", "https://tec.openplanner.team/stops/N541aab"], ["https://tec.openplanner.team/stops/Ccogrbu1", "https://tec.openplanner.team/stops/Crocpai2"], ["https://tec.openplanner.team/stops/Bettcha2", "https://tec.openplanner.team/stops/Bettgar1"], ["https://tec.openplanner.team/stops/Blimegl1", "https://tec.openplanner.team/stops/Bottgar5"], ["https://tec.openplanner.team/stops/LCTfair1", "https://tec.openplanner.team/stops/LCTpt--2"], ["https://tec.openplanner.team/stops/X626aga", "https://tec.openplanner.team/stops/X626aha"], ["https://tec.openplanner.team/stops/Llgcorn2", "https://tec.openplanner.team/stops/Llgcorn4"], ["https://tec.openplanner.team/stops/LHbcent2", "https://tec.openplanner.team/stops/LMechpl1"], ["https://tec.openplanner.team/stops/LrUgeme1", "https://tec.openplanner.team/stops/LsBzent1"], ["https://tec.openplanner.team/stops/Lhrspi-2", "https://tec.openplanner.team/stops/Lmirca-2"], ["https://tec.openplanner.team/stops/H4co157b", "https://tec.openplanner.team/stops/H4co158b"], ["https://tec.openplanner.team/stops/H2ec106a", "https://tec.openplanner.team/stops/H2me113a"], ["https://tec.openplanner.team/stops/LHCpaci2", "https://tec.openplanner.team/stops/LMNpann1"], ["https://tec.openplanner.team/stops/H1si162a", "https://tec.openplanner.team/stops/H1si162b"], ["https://tec.openplanner.team/stops/Cgoloca1", "https://tec.openplanner.team/stops/Cgostex2"], ["https://tec.openplanner.team/stops/H4hu116a", "https://tec.openplanner.team/stops/H4ld125a"], ["https://tec.openplanner.team/stops/N569ama", "https://tec.openplanner.team/stops/N569amb"], ["https://tec.openplanner.team/stops/Berncim1", "https://tec.openplanner.team/stops/Berncim2"], ["https://tec.openplanner.team/stops/X601cma", "https://tec.openplanner.team/stops/X601dib"], ["https://tec.openplanner.team/stops/X750bmb", "https://tec.openplanner.team/stops/X750bpb"], ["https://tec.openplanner.team/stops/Cmtproc2", "https://tec.openplanner.team/stops/Cmttkai1"], ["https://tec.openplanner.team/stops/H1ho128a", "https://tec.openplanner.team/stops/H1ho130b"], ["https://tec.openplanner.team/stops/Louegla1", "https://tec.openplanner.team/stops/Louegla2"], ["https://tec.openplanner.team/stops/LlNm%C3%BChl1", "https://tec.openplanner.team/stops/LwArabo2"], ["https://tec.openplanner.team/stops/X982ata", "https://tec.openplanner.team/stops/X982cfa"], ["https://tec.openplanner.team/stops/NL73acb", "https://tec.openplanner.team/stops/NL73adb"], ["https://tec.openplanner.team/stops/Bsoigar1", "https://tec.openplanner.team/stops/H3so166d"], ["https://tec.openplanner.team/stops/Cjuledo2", "https://tec.openplanner.team/stops/Cjuspin1"], ["https://tec.openplanner.team/stops/Lceconf2", "https://tec.openplanner.team/stops/Lcepont2"], ["https://tec.openplanner.team/stops/Lbhbalt1", "https://tec.openplanner.team/stops/Lroeg--1"], ["https://tec.openplanner.team/stops/X822afb", "https://tec.openplanner.team/stops/X822aob"], ["https://tec.openplanner.team/stops/N513avb", "https://tec.openplanner.team/stops/N514aga"], ["https://tec.openplanner.team/stops/N170ada", "https://tec.openplanner.team/stops/NC14ada"], ["https://tec.openplanner.team/stops/N528adb", "https://tec.openplanner.team/stops/N528arc"], ["https://tec.openplanner.team/stops/N117aba", "https://tec.openplanner.team/stops/N117agb"], ["https://tec.openplanner.team/stops/LCPbatt1", "https://tec.openplanner.team/stops/LGmcent1"], ["https://tec.openplanner.team/stops/N506aoa", "https://tec.openplanner.team/stops/N506aob"], ["https://tec.openplanner.team/stops/Clbentr1", "https://tec.openplanner.team/stops/H1lo119a"], ["https://tec.openplanner.team/stops/H2go114a", "https://tec.openplanner.team/stops/H2go115a"], ["https://tec.openplanner.team/stops/N501cea", "https://tec.openplanner.team/stops/N501ckz"], ["https://tec.openplanner.team/stops/X742aaa", "https://tec.openplanner.team/stops/X742aab"], ["https://tec.openplanner.team/stops/Cfaamio1", "https://tec.openplanner.team/stops/Cfaamio4"], ["https://tec.openplanner.team/stops/Cflfaub1", "https://tec.openplanner.team/stops/Cflfaub2"], ["https://tec.openplanner.team/stops/X601ajb", "https://tec.openplanner.team/stops/X601ana"], ["https://tec.openplanner.team/stops/Baudhde1", "https://tec.openplanner.team/stops/Bwbfeta1"], ["https://tec.openplanner.team/stops/N387aab", "https://tec.openplanner.team/stops/N387aca"], ["https://tec.openplanner.team/stops/N232aua", "https://tec.openplanner.team/stops/N232cca"], ["https://tec.openplanner.team/stops/Bdlmegl2", "https://tec.openplanner.team/stops/Bdvm4ca2"], ["https://tec.openplanner.team/stops/LSebott2", "https://tec.openplanner.team/stops/LSevitu3"], ["https://tec.openplanner.team/stops/Lrecomp1", "https://tec.openplanner.team/stops/Lreec--2"], ["https://tec.openplanner.team/stops/Cdacolu2", "https://tec.openplanner.team/stops/Cdamest2"], ["https://tec.openplanner.team/stops/H4pl116a", "https://tec.openplanner.team/stops/H4pl122a"], ["https://tec.openplanner.team/stops/NC14aca", "https://tec.openplanner.team/stops/NC14ada"], ["https://tec.openplanner.team/stops/Llgdesa1", "https://tec.openplanner.team/stops/Llgstap1"], ["https://tec.openplanner.team/stops/LCRabbe2", "https://tec.openplanner.team/stops/LCRrape2"], ["https://tec.openplanner.team/stops/N104aca", "https://tec.openplanner.team/stops/N118ava"], ["https://tec.openplanner.team/stops/Binclon1", "https://tec.openplanner.team/stops/Binclon2"], ["https://tec.openplanner.team/stops/Llgmarc1", "https://tec.openplanner.team/stops/Llgmarc2"], ["https://tec.openplanner.team/stops/LCpeg-*", "https://tec.openplanner.team/stops/LWM759-1"], ["https://tec.openplanner.team/stops/LnEleje2", "https://tec.openplanner.team/stops/LnEmett2"], ["https://tec.openplanner.team/stops/Bborcro2", "https://tec.openplanner.team/stops/Bborppa2"], ["https://tec.openplanner.team/stops/H1qu103b", "https://tec.openplanner.team/stops/H1qu129a"], ["https://tec.openplanner.team/stops/Bsmgmar1", "https://tec.openplanner.team/stops/Bsmgpla1"], ["https://tec.openplanner.team/stops/Lmldama1", "https://tec.openplanner.team/stops/Lmleg--2"], ["https://tec.openplanner.team/stops/H2sb228c", "https://tec.openplanner.team/stops/H2sb228d"], ["https://tec.openplanner.team/stops/X754aoa", "https://tec.openplanner.team/stops/X754aob"], ["https://tec.openplanner.team/stops/Bblague2", "https://tec.openplanner.team/stops/Bblapje2"], ["https://tec.openplanner.team/stops/X806abb", "https://tec.openplanner.team/stops/X850aob"], ["https://tec.openplanner.team/stops/LHdvill1", "https://tec.openplanner.team/stops/LHdvill2"], ["https://tec.openplanner.team/stops/X654ahb", "https://tec.openplanner.team/stops/X654ajb"], ["https://tec.openplanner.team/stops/LeUhaag1", "https://tec.openplanner.team/stops/LeUkehr4"], ["https://tec.openplanner.team/stops/LBlhaut2", "https://tec.openplanner.team/stops/LLUpier2"], ["https://tec.openplanner.team/stops/LCscarr1", "https://tec.openplanner.team/stops/LCscarr4"], ["https://tec.openplanner.team/stops/Cpccoss2", "https://tec.openplanner.team/stops/Cpctunn2"], ["https://tec.openplanner.team/stops/N291aba", "https://tec.openplanner.team/stops/N291abb"], ["https://tec.openplanner.team/stops/N525aba", "https://tec.openplanner.team/stops/N525alb"], ["https://tec.openplanner.team/stops/LHMec--1", "https://tec.openplanner.team/stops/LHMgrun2"], ["https://tec.openplanner.team/stops/Llgcham7", "https://tec.openplanner.team/stops/Llgmulh1"], ["https://tec.openplanner.team/stops/LJAcime1", "https://tec.openplanner.team/stops/LJAherb4"], ["https://tec.openplanner.team/stops/H4br108b", "https://tec.openplanner.team/stops/H4ch113b"], ["https://tec.openplanner.team/stops/Ladchat1", "https://tec.openplanner.team/stops/Ladmoul2"], ["https://tec.openplanner.team/stops/LVBeg--2", "https://tec.openplanner.team/stops/LVBvill2"], ["https://tec.openplanner.team/stops/H4ob109a", "https://tec.openplanner.team/stops/H4ob109b"], ["https://tec.openplanner.team/stops/LTHwaux1", "https://tec.openplanner.team/stops/LTHwaux2"], ["https://tec.openplanner.team/stops/Blasvil1", "https://tec.openplanner.team/stops/Blasvil2"], ["https://tec.openplanner.team/stops/LBUchpl1", "https://tec.openplanner.team/stops/LBUvall2"], ["https://tec.openplanner.team/stops/LSMcles2", "https://tec.openplanner.team/stops/LSMeg--1"], ["https://tec.openplanner.team/stops/N502aba", "https://tec.openplanner.team/stops/N502abb"], ["https://tec.openplanner.team/stops/Loucham3", "https://tec.openplanner.team/stops/Lougare3"], ["https://tec.openplanner.team/stops/N232bub", "https://tec.openplanner.team/stops/N260aeb"], ["https://tec.openplanner.team/stops/Cjuchli2", "https://tec.openplanner.team/stops/CMmade1"], ["https://tec.openplanner.team/stops/X943aab", "https://tec.openplanner.team/stops/X943ahb"], ["https://tec.openplanner.team/stops/N308aja", "https://tec.openplanner.team/stops/N308ama"], ["https://tec.openplanner.team/stops/LWOpier1", "https://tec.openplanner.team/stops/LWOunio1"], ["https://tec.openplanner.team/stops/Clgmaco1", "https://tec.openplanner.team/stops/Clgmaco2"], ["https://tec.openplanner.team/stops/H4bc101a", "https://tec.openplanner.team/stops/H4bc101b"], ["https://tec.openplanner.team/stops/X664amc", "https://tec.openplanner.team/stops/X664amd"], ["https://tec.openplanner.team/stops/Llgjoie2", "https://tec.openplanner.team/stops/Llgvero1"], ["https://tec.openplanner.team/stops/LHcgare1", "https://tec.openplanner.team/stops/LHcgare2"], ["https://tec.openplanner.team/stops/X871adb", "https://tec.openplanner.team/stops/X871aea"], ["https://tec.openplanner.team/stops/H4pe124b", "https://tec.openplanner.team/stops/H4pe126b"], ["https://tec.openplanner.team/stops/N232bvb", "https://tec.openplanner.team/stops/N260afa"], ["https://tec.openplanner.team/stops/LlZbell1", "https://tec.openplanner.team/stops/LlZkirc1"], ["https://tec.openplanner.team/stops/X804apb", "https://tec.openplanner.team/stops/X804aza"], ["https://tec.openplanner.team/stops/LAMhopi3", "https://tec.openplanner.team/stops/LOmrela1"], ["https://tec.openplanner.team/stops/Ldihusq2", "https://tec.openplanner.team/stops/Ldipl--3"], ["https://tec.openplanner.team/stops/LHEecmo2", "https://tec.openplanner.team/stops/LHEpriv1"], ["https://tec.openplanner.team/stops/N351aka", "https://tec.openplanner.team/stops/N351ava"], ["https://tec.openplanner.team/stops/H4ne132b", "https://tec.openplanner.team/stops/H4ne139a"], ["https://tec.openplanner.team/stops/X747afb", "https://tec.openplanner.team/stops/X747aha"], ["https://tec.openplanner.team/stops/NC14aha", "https://tec.openplanner.team/stops/NC14aia"], ["https://tec.openplanner.team/stops/Llgplai1", "https://tec.openplanner.team/stops/Llgplai2"], ["https://tec.openplanner.team/stops/Bgzdgst2", "https://tec.openplanner.team/stops/Bgzdgth2"], ["https://tec.openplanner.team/stops/Cctbinc1", "https://tec.openplanner.team/stops/Cctbinc2"], ["https://tec.openplanner.team/stops/LCdchod1", "https://tec.openplanner.team/stops/LMAchod1"], ["https://tec.openplanner.team/stops/N501hda", "https://tec.openplanner.team/stops/N501zba"], ["https://tec.openplanner.team/stops/LCUmora2", "https://tec.openplanner.team/stops/LCUthie2"], ["https://tec.openplanner.team/stops/X604aaa", "https://tec.openplanner.team/stops/X618aab"], ["https://tec.openplanner.team/stops/X808adb", "https://tec.openplanner.team/stops/X808afb"], ["https://tec.openplanner.team/stops/X886aba", "https://tec.openplanner.team/stops/X886ada"], ["https://tec.openplanner.team/stops/H2fa106a", "https://tec.openplanner.team/stops/H2hg269a"], ["https://tec.openplanner.team/stops/LSogare2", "https://tec.openplanner.team/stops/LSokrin2"], ["https://tec.openplanner.team/stops/X602ara", "https://tec.openplanner.team/stops/X653aea"], ["https://tec.openplanner.team/stops/H1bl106a", "https://tec.openplanner.team/stops/H1pd145a"], ["https://tec.openplanner.team/stops/LAicarr1", "https://tec.openplanner.team/stops/Lccuner1"], ["https://tec.openplanner.team/stops/X759acb", "https://tec.openplanner.team/stops/X759aea"], ["https://tec.openplanner.team/stops/X768acb", "https://tec.openplanner.team/stops/X768aha"], ["https://tec.openplanner.team/stops/X771aba", "https://tec.openplanner.team/stops/X771abb"], ["https://tec.openplanner.team/stops/N505aea", "https://tec.openplanner.team/stops/N506apb"], ["https://tec.openplanner.team/stops/LrAeife2", "https://tec.openplanner.team/stops/LrAplat1"], ["https://tec.openplanner.team/stops/X750aaa", "https://tec.openplanner.team/stops/X780aha"], ["https://tec.openplanner.team/stops/H4gu106a", "https://tec.openplanner.team/stops/H4gu107a"], ["https://tec.openplanner.team/stops/LRMn58-2", "https://tec.openplanner.team/stops/LXoroch1"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lendonh1"], ["https://tec.openplanner.team/stops/X911aub", "https://tec.openplanner.team/stops/X912akb"], ["https://tec.openplanner.team/stops/Lpejonc1", "https://tec.openplanner.team/stops/Lpevesd2"], ["https://tec.openplanner.team/stops/Cfabnat2", "https://tec.openplanner.team/stops/Cfanoci2"], ["https://tec.openplanner.team/stops/LHCpaci1", "https://tec.openplanner.team/stops/LWEwilc2"], ["https://tec.openplanner.team/stops/X602abb", "https://tec.openplanner.team/stops/X602acb"], ["https://tec.openplanner.team/stops/H1do109b", "https://tec.openplanner.team/stops/H1do130a"], ["https://tec.openplanner.team/stops/Ljucaba2", "https://tec.openplanner.team/stops/Ljufler2"], ["https://tec.openplanner.team/stops/N346adb", "https://tec.openplanner.team/stops/X346ala"], ["https://tec.openplanner.team/stops/H4an104a", "https://tec.openplanner.team/stops/H4an104b"], ["https://tec.openplanner.team/stops/Bgntcbo1", "https://tec.openplanner.team/stops/Btilsnc2"], ["https://tec.openplanner.team/stops/N574aga", "https://tec.openplanner.team/stops/N574agb"], ["https://tec.openplanner.team/stops/N534beb", "https://tec.openplanner.team/stops/N543coa"], ["https://tec.openplanner.team/stops/Bfledpi1", "https://tec.openplanner.team/stops/Bfledpi2"], ["https://tec.openplanner.team/stops/Cmaduna2", "https://tec.openplanner.team/stops/Cmastma4"], ["https://tec.openplanner.team/stops/LSAeg--2", "https://tec.openplanner.team/stops/LSAmous1"], ["https://tec.openplanner.team/stops/Cmaprov2", "https://tec.openplanner.team/stops/Cmastni2"], ["https://tec.openplanner.team/stops/X641asb", "https://tec.openplanner.team/stops/X641ata"], ["https://tec.openplanner.team/stops/Btubpla1", "https://tec.openplanner.team/stops/Btubpla2"], ["https://tec.openplanner.team/stops/LWOsudr1", "https://tec.openplanner.team/stops/LWOunio2"], ["https://tec.openplanner.team/stops/H1hn209a", "https://tec.openplanner.team/stops/H1hn210a"], ["https://tec.openplanner.team/stops/N501aba", "https://tec.openplanner.team/stops/N503adb"], ["https://tec.openplanner.team/stops/X608ara", "https://tec.openplanner.team/stops/X608asb"], ["https://tec.openplanner.team/stops/LaFbruc1", "https://tec.openplanner.team/stops/LrGzent2"], ["https://tec.openplanner.team/stops/LHhvivi1", "https://tec.openplanner.team/stops/LHhvivi2"], ["https://tec.openplanner.team/stops/X922aia", "https://tec.openplanner.team/stops/X922aib"], ["https://tec.openplanner.team/stops/Bstetre1", "https://tec.openplanner.team/stops/Bstetre2"], ["https://tec.openplanner.team/stops/N106akb", "https://tec.openplanner.team/stops/N162aeb"], ["https://tec.openplanner.team/stops/LFmlens2", "https://tec.openplanner.team/stops/LMOlens3"], ["https://tec.openplanner.team/stops/LBNplei1", "https://tec.openplanner.team/stops/LhEcolo2"], ["https://tec.openplanner.team/stops/N501bdb", "https://tec.openplanner.team/stops/N501hsz"], ["https://tec.openplanner.team/stops/H2go120a", "https://tec.openplanner.team/stops/H2mg153a"], ["https://tec.openplanner.team/stops/LWAvand1", "https://tec.openplanner.team/stops/LWAvisi2"], ["https://tec.openplanner.team/stops/N515aka", "https://tec.openplanner.team/stops/N515alb"], ["https://tec.openplanner.team/stops/Lrcastr1", "https://tec.openplanner.team/stops/Lrclant2"], ["https://tec.openplanner.team/stops/X897aub", "https://tec.openplanner.team/stops/X897awa"], ["https://tec.openplanner.team/stops/H5pe125b", "https://tec.openplanner.team/stops/H5pe127b"], ["https://tec.openplanner.team/stops/X903aaa", "https://tec.openplanner.team/stops/X903aba"], ["https://tec.openplanner.team/stops/LLscent1", "https://tec.openplanner.team/stops/LRccent1"], ["https://tec.openplanner.team/stops/Llgbois1", "https://tec.openplanner.team/stops/Llgverg1"], ["https://tec.openplanner.team/stops/H1th182a", "https://tec.openplanner.team/stops/H3lr116a"], ["https://tec.openplanner.team/stops/LWAathe1", "https://tec.openplanner.team/stops/LWAvand1"], ["https://tec.openplanner.team/stops/Ltiegli2", "https://tec.openplanner.team/stops/Ltipass2"], ["https://tec.openplanner.team/stops/H4ft133a", "https://tec.openplanner.team/stops/H4ta118a"], ["https://tec.openplanner.team/stops/X822aab", "https://tec.openplanner.team/stops/X822aob"], ["https://tec.openplanner.team/stops/N135adc", "https://tec.openplanner.team/stops/N135ata"], ["https://tec.openplanner.team/stops/Cjucomb1", "https://tec.openplanner.team/stops/Cjupn3"], ["https://tec.openplanner.team/stops/X839abb", "https://tec.openplanner.team/stops/X839aca"], ["https://tec.openplanner.team/stops/LeUhaag1", "https://tec.openplanner.team/stops/LeUschi2"], ["https://tec.openplanner.team/stops/Llieg--3", "https://tec.openplanner.team/stops/Llieg--4"], ["https://tec.openplanner.team/stops/X753abb", "https://tec.openplanner.team/stops/X753abc"], ["https://tec.openplanner.team/stops/N548aab", "https://tec.openplanner.team/stops/N548aib"], ["https://tec.openplanner.team/stops/X917aka", "https://tec.openplanner.team/stops/X922afa"], ["https://tec.openplanner.team/stops/Cladura4", "https://tec.openplanner.team/stops/NC23afb"], ["https://tec.openplanner.team/stops/Llglave1", "https://tec.openplanner.team/stops/Llgrosa1"], ["https://tec.openplanner.team/stops/H4av103b", "https://tec.openplanner.team/stops/H4de113b"], ["https://tec.openplanner.team/stops/LHScite1", "https://tec.openplanner.team/stops/LHScite2"], ["https://tec.openplanner.team/stops/LMsec--2", "https://tec.openplanner.team/stops/LMspont1"], ["https://tec.openplanner.team/stops/Clvorle2", "https://tec.openplanner.team/stops/NC02bbb"], ["https://tec.openplanner.team/stops/Bettgle1", "https://tec.openplanner.team/stops/Bettlha1"], ["https://tec.openplanner.team/stops/LHuherm1", "https://tec.openplanner.team/stops/LMHcant1"], ["https://tec.openplanner.team/stops/X620aba", "https://tec.openplanner.team/stops/X620abb"], ["https://tec.openplanner.team/stops/LWOrout2", "https://tec.openplanner.team/stops/LWOwonc2"], ["https://tec.openplanner.team/stops/LwAkape2", "https://tec.openplanner.team/stops/LwArabo1"], ["https://tec.openplanner.team/stops/Bcrnnca1", "https://tec.openplanner.team/stops/Bwlhpma1"], ["https://tec.openplanner.team/stops/LWaatel2", "https://tec.openplanner.team/stops/LWaccom1"], ["https://tec.openplanner.team/stops/LTotrui2", "https://tec.openplanner.team/stops/LTowijk2"], ["https://tec.openplanner.team/stops/H4ka182a", "https://tec.openplanner.team/stops/H4ka190b"], ["https://tec.openplanner.team/stops/X828aaa", "https://tec.openplanner.team/stops/X829adb"], ["https://tec.openplanner.team/stops/Loufleu1", "https://tec.openplanner.team/stops/Lousite6"], ["https://tec.openplanner.team/stops/N579aaa", "https://tec.openplanner.team/stops/N579afa"], ["https://tec.openplanner.team/stops/LHdvill1", "https://tec.openplanner.team/stops/LLOcreu2"], ["https://tec.openplanner.team/stops/X897awa", "https://tec.openplanner.team/stops/X897aya"], ["https://tec.openplanner.team/stops/N357aba", "https://tec.openplanner.team/stops/N988aaa"], ["https://tec.openplanner.team/stops/Bwavlep2", "https://tec.openplanner.team/stops/Bwavrij2"], ["https://tec.openplanner.team/stops/LBNburg1", "https://tec.openplanner.team/stops/LMeeg--1"], ["https://tec.openplanner.team/stops/Lhrmare4", "https://tec.openplanner.team/stops/Llgchan1"], ["https://tec.openplanner.team/stops/Cgy3011", "https://tec.openplanner.team/stops/Cgy3012"], ["https://tec.openplanner.team/stops/LLrbano1", "https://tec.openplanner.team/stops/LLrpape3"], ["https://tec.openplanner.team/stops/N221aca", "https://tec.openplanner.team/stops/N221adb"], ["https://tec.openplanner.team/stops/H1ol140a", "https://tec.openplanner.team/stops/H1ol142a"], ["https://tec.openplanner.team/stops/LCTcret2", "https://tec.openplanner.team/stops/LFIeg--2"], ["https://tec.openplanner.team/stops/N538ama", "https://tec.openplanner.team/stops/N538amd"], ["https://tec.openplanner.team/stops/Cmldupu1", "https://tec.openplanner.team/stops/Cmlhauc4"], ["https://tec.openplanner.team/stops/H1er108a", "https://tec.openplanner.team/stops/H1er113a"], ["https://tec.openplanner.team/stops/Bnivbxl2", "https://tec.openplanner.team/stops/Bnivlde2"], ["https://tec.openplanner.team/stops/N538bab", "https://tec.openplanner.team/stops/N538bba"], ["https://tec.openplanner.team/stops/N533agb", "https://tec.openplanner.team/stops/N533aha"], ["https://tec.openplanner.team/stops/H4ty382a", "https://tec.openplanner.team/stops/H4ty382b"], ["https://tec.openplanner.team/stops/LAMdelh*", "https://tec.openplanner.team/stops/LOmmer-1"], ["https://tec.openplanner.team/stops/H4ne142a", "https://tec.openplanner.team/stops/H4ne148a"], ["https://tec.openplanner.team/stops/LRmkerk2", "https://tec.openplanner.team/stops/LRmkult1"], ["https://tec.openplanner.team/stops/X912aba", "https://tec.openplanner.team/stops/X912abb"], ["https://tec.openplanner.team/stops/LCeterm2", "https://tec.openplanner.team/stops/LLWcarr1"], ["https://tec.openplanner.team/stops/Loutroi1", "https://tec.openplanner.team/stops/Louvand2"], ["https://tec.openplanner.team/stops/X982bnb", "https://tec.openplanner.team/stops/X986aha"], ["https://tec.openplanner.team/stops/LCnvill1", "https://tec.openplanner.team/stops/LLUdeig1"], ["https://tec.openplanner.team/stops/X721aba", "https://tec.openplanner.team/stops/X721abb"], ["https://tec.openplanner.team/stops/LBichen2", "https://tec.openplanner.team/stops/LBivi--2"], ["https://tec.openplanner.team/stops/N505aka", "https://tec.openplanner.team/stops/N512awa"], ["https://tec.openplanner.team/stops/Cmohame1", "https://tec.openplanner.team/stops/Cmorgof2"], ["https://tec.openplanner.team/stops/LFCdree1", "https://tec.openplanner.team/stops/LFChuis2"], ["https://tec.openplanner.team/stops/Bblabfo1", "https://tec.openplanner.team/stops/Bblacco2"], ["https://tec.openplanner.team/stops/LNHhome2", "https://tec.openplanner.team/stops/LSecomm1"], ["https://tec.openplanner.team/stops/LwAschu1", "https://tec.openplanner.team/stops/LwAschu2"], ["https://tec.openplanner.team/stops/X663ahd", "https://tec.openplanner.team/stops/X663aia"], ["https://tec.openplanner.team/stops/N501fga", "https://tec.openplanner.team/stops/N501fgb"], ["https://tec.openplanner.team/stops/N501jma", "https://tec.openplanner.team/stops/N501jna"], ["https://tec.openplanner.team/stops/N132aea", "https://tec.openplanner.team/stops/N132aeb"], ["https://tec.openplanner.team/stops/H1wa138a", "https://tec.openplanner.team/stops/H1wa158b"], ["https://tec.openplanner.team/stops/LWOmart1", "https://tec.openplanner.team/stops/LWOruis2"], ["https://tec.openplanner.team/stops/Cgywaut2", "https://tec.openplanner.team/stops/CMsartc1"], ["https://tec.openplanner.team/stops/Lceegth1", "https://tec.openplanner.team/stops/Lceprog1"], ["https://tec.openplanner.team/stops/Cdajume1", "https://tec.openplanner.team/stops/Cdajume2"], ["https://tec.openplanner.team/stops/LTRsain1", "https://tec.openplanner.team/stops/LTRsain2"], ["https://tec.openplanner.team/stops/Lpegole1", "https://tec.openplanner.team/stops/Lpeprev1"], ["https://tec.openplanner.team/stops/N532ahb", "https://tec.openplanner.team/stops/N532aka"], ["https://tec.openplanner.team/stops/X615avb", "https://tec.openplanner.team/stops/X615bba"], ["https://tec.openplanner.team/stops/N321aba", "https://tec.openplanner.team/stops/N321abb"], ["https://tec.openplanner.team/stops/Bhalvla1", "https://tec.openplanner.team/stops/Bwaucig1"], ["https://tec.openplanner.team/stops/N242aea", "https://tec.openplanner.team/stops/N243ada"], ["https://tec.openplanner.team/stops/Lmaelhe1", "https://tec.openplanner.team/stops/Lmapomm2"], ["https://tec.openplanner.team/stops/LFPho8a1", "https://tec.openplanner.team/stops/LWRbois2"], ["https://tec.openplanner.team/stops/LaAkapi1", "https://tec.openplanner.team/stops/LlCgren1"], ["https://tec.openplanner.team/stops/H4do101b", "https://tec.openplanner.team/stops/H4do107c"], ["https://tec.openplanner.team/stops/Lcapisc2", "https://tec.openplanner.team/stops/Lrofont1"], ["https://tec.openplanner.team/stops/LVPcrok2", "https://tec.openplanner.team/stops/LVPduvi1"], ["https://tec.openplanner.team/stops/X896aab", "https://tec.openplanner.team/stops/X898aob"], ["https://tec.openplanner.team/stops/Bixlaca2", "https://tec.openplanner.team/stops/Buccbas1"], ["https://tec.openplanner.team/stops/X640aeb", "https://tec.openplanner.team/stops/X640akb"], ["https://tec.openplanner.team/stops/H1ob327a", "https://tec.openplanner.team/stops/H1ob333b"], ["https://tec.openplanner.team/stops/Cmtgrim2", "https://tec.openplanner.team/stops/Cmttrie2"], ["https://tec.openplanner.team/stops/N252aba", "https://tec.openplanner.team/stops/N252abb"], ["https://tec.openplanner.team/stops/X620aeb", "https://tec.openplanner.team/stops/X620ahb"], ["https://tec.openplanner.team/stops/H1sb145a", "https://tec.openplanner.team/stops/H1sb151a"], ["https://tec.openplanner.team/stops/LHEelva2", "https://tec.openplanner.team/stops/LMhvina1"], ["https://tec.openplanner.team/stops/H1ms262a", "https://tec.openplanner.team/stops/H1ms277a"], ["https://tec.openplanner.team/stops/LOljean1", "https://tec.openplanner.team/stops/LOljean2"], ["https://tec.openplanner.team/stops/X801ayb", "https://tec.openplanner.team/stops/X801cja"], ["https://tec.openplanner.team/stops/N209afa", "https://tec.openplanner.team/stops/N209ama"], ["https://tec.openplanner.team/stops/Btubaig1", "https://tec.openplanner.team/stops/Btubbai1"], ["https://tec.openplanner.team/stops/H4ea127a", "https://tec.openplanner.team/stops/H4ea127b"], ["https://tec.openplanner.team/stops/Bitrcan1", "https://tec.openplanner.team/stops/Bitrcan2"], ["https://tec.openplanner.team/stops/LDAbois1", "https://tec.openplanner.team/stops/LDAbois2"], ["https://tec.openplanner.team/stops/Bmlnegl1", "https://tec.openplanner.team/stops/Bmlnegl2"], ["https://tec.openplanner.team/stops/H1as103b", "https://tec.openplanner.team/stops/H1nv325a"], ["https://tec.openplanner.team/stops/Blpgbat2", "https://tec.openplanner.team/stops/Bvxgpro1"], ["https://tec.openplanner.team/stops/N102aab", "https://tec.openplanner.team/stops/N116acb"], ["https://tec.openplanner.team/stops/LWeec--1", "https://tec.openplanner.team/stops/LWepost2"], ["https://tec.openplanner.team/stops/H5pe133a", "https://tec.openplanner.team/stops/H5pe142b"], ["https://tec.openplanner.team/stops/Bhenpla1", "https://tec.openplanner.team/stops/Bhenron1"], ["https://tec.openplanner.team/stops/Bwlhpec1", "https://tec.openplanner.team/stops/Bwlhpec2"], ["https://tec.openplanner.team/stops/X358adb", "https://tec.openplanner.team/stops/X358aeb"], ["https://tec.openplanner.team/stops/H1bb118b", "https://tec.openplanner.team/stops/H1bb119b"], ["https://tec.openplanner.team/stops/N501bka", "https://tec.openplanner.team/stops/N501bqa"], ["https://tec.openplanner.team/stops/Llgvero1", "https://tec.openplanner.team/stops/Llgwall1"], ["https://tec.openplanner.team/stops/Cchsud11", "https://tec.openplanner.team/stops/Cchsud18"], ["https://tec.openplanner.team/stops/Llgfran1", "https://tec.openplanner.team/stops/Llgoise2"], ["https://tec.openplanner.team/stops/X775aba", "https://tec.openplanner.team/stops/X775aea"], ["https://tec.openplanner.team/stops/LNipla3", "https://tec.openplanner.team/stops/LNipre-1"], ["https://tec.openplanner.team/stops/Cctvict1", "https://tec.openplanner.team/stops/Cctvict3"], ["https://tec.openplanner.team/stops/Blnzcar2", "https://tec.openplanner.team/stops/N522aga"], ["https://tec.openplanner.team/stops/N524ala", "https://tec.openplanner.team/stops/N524alb"], ["https://tec.openplanner.team/stops/LETec--1", "https://tec.openplanner.team/stops/LETfort2"], ["https://tec.openplanner.team/stops/X901avb", "https://tec.openplanner.team/stops/X902bga"], ["https://tec.openplanner.team/stops/LHUmess2", "https://tec.openplanner.team/stops/LTicent2"], ["https://tec.openplanner.team/stops/LJAchat2", "https://tec.openplanner.team/stops/LJAwerf2"], ["https://tec.openplanner.team/stops/X622ada", "https://tec.openplanner.team/stops/X622aeb"], ["https://tec.openplanner.team/stops/X654afa", "https://tec.openplanner.team/stops/X670acb"], ["https://tec.openplanner.team/stops/H4ep130a", "https://tec.openplanner.team/stops/H4rm109a"], ["https://tec.openplanner.team/stops/H2hp123c", "https://tec.openplanner.team/stops/H2pe156b"], ["https://tec.openplanner.team/stops/Bmangar1", "https://tec.openplanner.team/stops/H2mg138a"], ["https://tec.openplanner.team/stops/Bovepla1", "https://tec.openplanner.team/stops/Bovevri1"], ["https://tec.openplanner.team/stops/LAUscha2", "https://tec.openplanner.team/stops/LFPchat1"], ["https://tec.openplanner.team/stops/X626ana", "https://tec.openplanner.team/stops/X626anb"], ["https://tec.openplanner.team/stops/H2ma264a", "https://tec.openplanner.team/stops/H2sb226a"], ["https://tec.openplanner.team/stops/H1bx107b", "https://tec.openplanner.team/stops/H1bx108a"], ["https://tec.openplanner.team/stops/H2an102a", "https://tec.openplanner.team/stops/H2an103a"], ["https://tec.openplanner.team/stops/H5at109a", "https://tec.openplanner.team/stops/H5at128a"], ["https://tec.openplanner.team/stops/H4ch114a", "https://tec.openplanner.team/stops/H4ch119b"], ["https://tec.openplanner.team/stops/H1mv238a", "https://tec.openplanner.team/stops/H1mv243a"], ["https://tec.openplanner.team/stops/H1hm174a", "https://tec.openplanner.team/stops/H1hm177b"], ["https://tec.openplanner.team/stops/Ccojaur2", "https://tec.openplanner.team/stops/Ccotrie3"], ["https://tec.openplanner.team/stops/X802aeb", "https://tec.openplanner.team/stops/X802afb"], ["https://tec.openplanner.team/stops/LScread1", "https://tec.openplanner.team/stops/LTNsarl1"], ["https://tec.openplanner.team/stops/Clodrio3", "https://tec.openplanner.team/stops/Clodupr2"], ["https://tec.openplanner.team/stops/LVBrmon2", "https://tec.openplanner.team/stops/LVBvill2"], ["https://tec.openplanner.team/stops/X612adb", "https://tec.openplanner.team/stops/X623ada"], ["https://tec.openplanner.team/stops/H4eg102b", "https://tec.openplanner.team/stops/H4eg107a"], ["https://tec.openplanner.team/stops/LhGbahn*", "https://tec.openplanner.team/stops/LhSkape2"], ["https://tec.openplanner.team/stops/N351asa", "https://tec.openplanner.team/stops/X351aob"], ["https://tec.openplanner.team/stops/X850afa", "https://tec.openplanner.team/stops/X850aia"], ["https://tec.openplanner.team/stops/Lmagara1", "https://tec.openplanner.team/stops/Lroboeg2"], ["https://tec.openplanner.team/stops/Ladarev2", "https://tec.openplanner.team/stops/Ladstat2"], ["https://tec.openplanner.team/stops/Llgdepo5", "https://tec.openplanner.team/stops/Llgpoli2"], ["https://tec.openplanner.team/stops/N503aba", "https://tec.openplanner.team/stops/N503ada"], ["https://tec.openplanner.team/stops/Lbhgare1", "https://tec.openplanner.team/stops/Lromerl1"], ["https://tec.openplanner.team/stops/Bbcoben2", "https://tec.openplanner.team/stops/Bbcolno1"], ["https://tec.openplanner.team/stops/LeUjuge1", "https://tec.openplanner.team/stops/LeUmoor1"], ["https://tec.openplanner.team/stops/N206aaa", "https://tec.openplanner.team/stops/N206aba"], ["https://tec.openplanner.team/stops/X837aka", "https://tec.openplanner.team/stops/X837akb"], ["https://tec.openplanner.team/stops/Bsgihmo2", "https://tec.openplanner.team/stops/Bsgimca1"], ["https://tec.openplanner.team/stops/Cmyoasi1", "https://tec.openplanner.team/stops/Cmyoasi2"], ["https://tec.openplanner.team/stops/LNOning2", "https://tec.openplanner.team/stops/LRE154-1"], ["https://tec.openplanner.team/stops/Cluberl1", "https://tec.openplanner.team/stops/Cvvcime2"], ["https://tec.openplanner.team/stops/LAYchal2", "https://tec.openplanner.team/stops/LAYgare1"], ["https://tec.openplanner.team/stops/Lanpisc2", "https://tec.openplanner.team/stops/Lmomarr1"], ["https://tec.openplanner.team/stops/Ccomiau2", "https://tec.openplanner.team/stops/Cpclibe4"], ["https://tec.openplanner.team/stops/N533ala", "https://tec.openplanner.team/stops/N533aob"], ["https://tec.openplanner.team/stops/X741aeb", "https://tec.openplanner.team/stops/X741apa"], ["https://tec.openplanner.team/stops/LRRbuta1", "https://tec.openplanner.team/stops/LRRchea1"], ["https://tec.openplanner.team/stops/H2hg145b", "https://tec.openplanner.team/stops/H2hg160b"], ["https://tec.openplanner.team/stops/NL74aac", "https://tec.openplanner.team/stops/NL74aja"], ["https://tec.openplanner.team/stops/N538ala", "https://tec.openplanner.team/stops/N538ara"], ["https://tec.openplanner.team/stops/Clbchba2", "https://tec.openplanner.team/stops/Cthgrat2"], ["https://tec.openplanner.team/stops/Cthnsnc", "https://tec.openplanner.team/stops/Cthvbas3"], ["https://tec.openplanner.team/stops/Cglbras1", "https://tec.openplanner.team/stops/Cglfrom1"], ["https://tec.openplanner.team/stops/LOunebl1", "https://tec.openplanner.team/stops/X261aba"], ["https://tec.openplanner.team/stops/Lsecast2", "https://tec.openplanner.team/stops/Lsehtsa2"], ["https://tec.openplanner.team/stops/NR30aba", "https://tec.openplanner.team/stops/NR30abb"], ["https://tec.openplanner.team/stops/NC11arb", "https://tec.openplanner.team/stops/NC11ard"], ["https://tec.openplanner.team/stops/LAvambr1", "https://tec.openplanner.team/stops/LMXroye2"], ["https://tec.openplanner.team/stops/H4gu106b", "https://tec.openplanner.team/stops/H4gu107a"], ["https://tec.openplanner.team/stops/N135aya", "https://tec.openplanner.team/stops/N135bia"], ["https://tec.openplanner.team/stops/Lmopech1", "https://tec.openplanner.team/stops/Lmopech2"], ["https://tec.openplanner.team/stops/Ctufleu2", "https://tec.openplanner.team/stops/Ctufleu3"], ["https://tec.openplanner.team/stops/N163aab", "https://tec.openplanner.team/stops/N569anb"], ["https://tec.openplanner.team/stops/Lpecroi2", "https://tec.openplanner.team/stops/LWenouv1"], ["https://tec.openplanner.team/stops/Lan14ve1", "https://tec.openplanner.team/stops/Llglys-2"], ["https://tec.openplanner.team/stops/LStroch1", "https://tec.openplanner.team/stops/LWNfani1"], ["https://tec.openplanner.team/stops/Clomari2", "https://tec.openplanner.team/stops/CMmari1"], ["https://tec.openplanner.team/stops/Bsaubbo2", "https://tec.openplanner.team/stops/Bsaubra1"], ["https://tec.openplanner.team/stops/X850aea", "https://tec.openplanner.team/stops/X850aeb"], ["https://tec.openplanner.team/stops/X650aja", "https://tec.openplanner.team/stops/X650akb"], ["https://tec.openplanner.team/stops/Cchmonu2", "https://tec.openplanner.team/stops/Cchwate2"], ["https://tec.openplanner.team/stops/LWipaif1", "https://tec.openplanner.team/stops/LWipaif4"], ["https://tec.openplanner.team/stops/LBEfagn2", "https://tec.openplanner.team/stops/LBEnina4"], ["https://tec.openplanner.team/stops/N343aca", "https://tec.openplanner.team/stops/N343ala"], ["https://tec.openplanner.team/stops/Brebrog2", "https://tec.openplanner.team/stops/H2pr116b"], ["https://tec.openplanner.team/stops/Blmlfau1", "https://tec.openplanner.team/stops/Blmlfau2"], ["https://tec.openplanner.team/stops/N127acb", "https://tec.openplanner.team/stops/N127ada"], ["https://tec.openplanner.team/stops/LESpont3", "https://tec.openplanner.team/stops/LESpont4"], ["https://tec.openplanner.team/stops/H1ms903a", "https://tec.openplanner.team/stops/H1ms905a"], ["https://tec.openplanner.team/stops/X725ana", "https://tec.openplanner.team/stops/X725apa"], ["https://tec.openplanner.team/stops/X741ala", "https://tec.openplanner.team/stops/X758akb"], ["https://tec.openplanner.team/stops/LCpegli2", "https://tec.openplanner.team/stops/LSPvigi2"], ["https://tec.openplanner.team/stops/H1ob333a", "https://tec.openplanner.team/stops/H1ob335c"], ["https://tec.openplanner.team/stops/N211anb", "https://tec.openplanner.team/stops/N211bab"], ["https://tec.openplanner.team/stops/X663ata", "https://tec.openplanner.team/stops/X664amb"], ["https://tec.openplanner.team/stops/LkTkabi2", "https://tec.openplanner.team/stops/LwArabo2"], ["https://tec.openplanner.team/stops/N116aba", "https://tec.openplanner.team/stops/N116ada"], ["https://tec.openplanner.team/stops/Lhrwigi1", "https://tec.openplanner.team/stops/Lwaeau-2"], ["https://tec.openplanner.team/stops/H4ma418b", "https://tec.openplanner.team/stops/H4oq228b"], ["https://tec.openplanner.team/stops/N201apa", "https://tec.openplanner.team/stops/N201awb"], ["https://tec.openplanner.team/stops/LFArela2", "https://tec.openplanner.team/stops/LFArela5"], ["https://tec.openplanner.team/stops/H1go118b", "https://tec.openplanner.team/stops/H1go174a"], ["https://tec.openplanner.team/stops/Lrebriq2", "https://tec.openplanner.team/stops/Lrecite1"], ["https://tec.openplanner.team/stops/H1bo102b", "https://tec.openplanner.team/stops/H1te198a"], ["https://tec.openplanner.team/stops/Llocime1", "https://tec.openplanner.team/stops/Lloretr1"], ["https://tec.openplanner.team/stops/N527aab", "https://tec.openplanner.team/stops/N527aga"], ["https://tec.openplanner.team/stops/N551aob", "https://tec.openplanner.team/stops/N552ada"], ["https://tec.openplanner.team/stops/Lprferm1", "https://tec.openplanner.team/stops/Lprtill1"], ["https://tec.openplanner.team/stops/LFfeg--2", "https://tec.openplanner.team/stops/LPRecol2"], ["https://tec.openplanner.team/stops/Bgdhcsh1", "https://tec.openplanner.team/stops/Bgdhpco1"], ["https://tec.openplanner.team/stops/N508apb", "https://tec.openplanner.team/stops/N513bib"], ["https://tec.openplanner.team/stops/X769ajb", "https://tec.openplanner.team/stops/X791aab"], ["https://tec.openplanner.team/stops/N549aaa", "https://tec.openplanner.team/stops/N578abb"], ["https://tec.openplanner.team/stops/H1gh144a", "https://tec.openplanner.team/stops/H1gh150b"], ["https://tec.openplanner.team/stops/Bbougar2", "https://tec.openplanner.team/stops/Bbstbou2"], ["https://tec.openplanner.team/stops/Cfccabi2", "https://tec.openplanner.team/stops/Cfcctru1"], ["https://tec.openplanner.team/stops/X757ajb", "https://tec.openplanner.team/stops/X757akb"], ["https://tec.openplanner.team/stops/X723ana", "https://tec.openplanner.team/stops/X724aga"], ["https://tec.openplanner.team/stops/N331aia", "https://tec.openplanner.team/stops/N331aib"], ["https://tec.openplanner.team/stops/X996aaa", "https://tec.openplanner.team/stops/X996aab"], ["https://tec.openplanner.team/stops/H1ba116b", "https://tec.openplanner.team/stops/H1gh371b"], ["https://tec.openplanner.team/stops/H4ir161b", "https://tec.openplanner.team/stops/H4og212a"], ["https://tec.openplanner.team/stops/Balswwe2", "https://tec.openplanner.team/stops/Bwaubru1"], ["https://tec.openplanner.team/stops/Cmtcapi2", "https://tec.openplanner.team/stops/Cmtplac3"], ["https://tec.openplanner.team/stops/Bgntpos1", "https://tec.openplanner.team/stops/Bsgevil1"], ["https://tec.openplanner.team/stops/X796ada", "https://tec.openplanner.team/stops/X796adb"], ["https://tec.openplanner.team/stops/LVIferm1", "https://tec.openplanner.team/stops/LVItroi*"], ["https://tec.openplanner.team/stops/H1pw122b", "https://tec.openplanner.team/stops/H1wa154b"], ["https://tec.openplanner.team/stops/X917aaa", "https://tec.openplanner.team/stops/X917abb"], ["https://tec.openplanner.team/stops/N135aea", "https://tec.openplanner.team/stops/N140aab"], ["https://tec.openplanner.team/stops/X892acb", "https://tec.openplanner.team/stops/X892aia"], ["https://tec.openplanner.team/stops/LVLchem2", "https://tec.openplanner.team/stops/LVLpane2"], ["https://tec.openplanner.team/stops/Clb4bra1", "https://tec.openplanner.team/stops/Clbpepi2"], ["https://tec.openplanner.team/stops/N383aba", "https://tec.openplanner.team/stops/N874amc"], ["https://tec.openplanner.team/stops/LlNkirc2", "https://tec.openplanner.team/stops/LlNlimb1"], ["https://tec.openplanner.team/stops/LFMstat2", "https://tec.openplanner.team/stops/LFMveur2"], ["https://tec.openplanner.team/stops/Bwaubru1", "https://tec.openplanner.team/stops/Bwaucig1"], ["https://tec.openplanner.team/stops/LgRzent1", "https://tec.openplanner.team/stops/LtH28a-2"], ["https://tec.openplanner.team/stops/X850aha", "https://tec.openplanner.team/stops/X850ana"], ["https://tec.openplanner.team/stops/LHMbach1", "https://tec.openplanner.team/stops/LHMbelv1"], ["https://tec.openplanner.team/stops/X601cta", "https://tec.openplanner.team/stops/X601ctb"], ["https://tec.openplanner.team/stops/H1hr118a", "https://tec.openplanner.team/stops/H1hr118b"], ["https://tec.openplanner.team/stops/Bhevjac1", "https://tec.openplanner.team/stops/Bpecsta1"], ["https://tec.openplanner.team/stops/Ccogibr1", "https://tec.openplanner.team/stops/Ccohotv1"], ["https://tec.openplanner.team/stops/Bgnvoha3", "https://tec.openplanner.team/stops/Bgnvoha4"], ["https://tec.openplanner.team/stops/Lalexpa2", "https://tec.openplanner.team/stops/Lrcchar1"], ["https://tec.openplanner.team/stops/Cobvill1", "https://tec.openplanner.team/stops/Cobvill2"], ["https://tec.openplanner.team/stops/Bwagdeb1", "https://tec.openplanner.team/stops/Bwagdeb2"], ["https://tec.openplanner.team/stops/H1qu102a", "https://tec.openplanner.team/stops/H1qu120a"], ["https://tec.openplanner.team/stops/Brixcme1", "https://tec.openplanner.team/stops/Brixcme2"], ["https://tec.openplanner.team/stops/Lhrecol1", "https://tec.openplanner.team/stops/Lhrecol2"], ["https://tec.openplanner.team/stops/N501icb", "https://tec.openplanner.team/stops/N501icz"], ["https://tec.openplanner.team/stops/LMaslav3", "https://tec.openplanner.team/stops/LMazonn3"], ["https://tec.openplanner.team/stops/N501hlx", "https://tec.openplanner.team/stops/N501hly"], ["https://tec.openplanner.team/stops/H1hm174b", "https://tec.openplanner.team/stops/H1vs145a"], ["https://tec.openplanner.team/stops/N521alb", "https://tec.openplanner.team/stops/N527ada"], ["https://tec.openplanner.team/stops/LOTjacq1", "https://tec.openplanner.team/stops/LOTjacq2"], ["https://tec.openplanner.team/stops/LSemc--4", "https://tec.openplanner.team/stops/LSerout1"], ["https://tec.openplanner.team/stops/LEN183-1", "https://tec.openplanner.team/stops/LSBsere4"], ["https://tec.openplanner.team/stops/LWRchem1", "https://tec.openplanner.team/stops/LWRvert2"], ["https://tec.openplanner.team/stops/X753aca", "https://tec.openplanner.team/stops/X753acb"], ["https://tec.openplanner.team/stops/Bgrmpco1", "https://tec.openplanner.team/stops/N522akb"], ["https://tec.openplanner.team/stops/Bbstbou1", "https://tec.openplanner.team/stops/Bbstbou2"], ["https://tec.openplanner.team/stops/N555acb", "https://tec.openplanner.team/stops/NC11ara"], ["https://tec.openplanner.team/stops/Cctchea1", "https://tec.openplanner.team/stops/NC11agb"], ["https://tec.openplanner.team/stops/Lstbold1", "https://tec.openplanner.team/stops/Lstchu-4"], ["https://tec.openplanner.team/stops/LXhjupr2", "https://tec.openplanner.team/stops/LXhjupr4"], ["https://tec.openplanner.team/stops/H1wi148c", "https://tec.openplanner.team/stops/H1wi155a"], ["https://tec.openplanner.team/stops/N557aja", "https://tec.openplanner.team/stops/N557ajb"], ["https://tec.openplanner.team/stops/Bclgeco1", "https://tec.openplanner.team/stops/Bclgeco2"], ["https://tec.openplanner.team/stops/N568ada", "https://tec.openplanner.team/stops/N568adb"], ["https://tec.openplanner.team/stops/Bblaall2", "https://tec.openplanner.team/stops/Bblaast2"], ["https://tec.openplanner.team/stops/X782ana", "https://tec.openplanner.team/stops/X784aea"], ["https://tec.openplanner.team/stops/X394aga", "https://tec.openplanner.team/stops/X396aea"], ["https://tec.openplanner.team/stops/X813aaa", "https://tec.openplanner.team/stops/X813aab"], ["https://tec.openplanner.team/stops/Bucccal3", "https://tec.openplanner.team/stops/Bucccal4"], ["https://tec.openplanner.team/stops/H5at105a", "https://tec.openplanner.team/stops/H5at107b"], ["https://tec.openplanner.team/stops/Llgchai1", "https://tec.openplanner.team/stops/Llgjonr2"], ["https://tec.openplanner.team/stops/Bbsifml1", "https://tec.openplanner.team/stops/Bbsifml2"], ["https://tec.openplanner.team/stops/H4mo157b", "https://tec.openplanner.team/stops/H4mo170b"], ["https://tec.openplanner.team/stops/LBLghuy2", "https://tec.openplanner.team/stops/LBLplac4"], ["https://tec.openplanner.team/stops/LDOordi1", "https://tec.openplanner.team/stops/LDOordi2"], ["https://tec.openplanner.team/stops/H4es108a", "https://tec.openplanner.team/stops/H4hx123b"], ["https://tec.openplanner.team/stops/LTRfica2", "https://tec.openplanner.team/stops/LTRgare0"], ["https://tec.openplanner.team/stops/Bnstpla2", "https://tec.openplanner.team/stops/H3so187b"], ["https://tec.openplanner.team/stops/Lbrdepo1", "https://tec.openplanner.team/stops/Lbrhvl-*"], ["https://tec.openplanner.team/stops/H2sb224b", "https://tec.openplanner.team/stops/H2sb225a"], ["https://tec.openplanner.team/stops/N201aib", "https://tec.openplanner.team/stops/N214abb"], ["https://tec.openplanner.team/stops/N539ahb", "https://tec.openplanner.team/stops/N539atb"], ["https://tec.openplanner.team/stops/LHUfont1", "https://tec.openplanner.team/stops/LHUfont2"], ["https://tec.openplanner.team/stops/X921ama", "https://tec.openplanner.team/stops/X921anb"], ["https://tec.openplanner.team/stops/X822aga", "https://tec.openplanner.team/stops/X822aha"], ["https://tec.openplanner.team/stops/LHApthe2", "https://tec.openplanner.team/stops/LHTlieg2"], ["https://tec.openplanner.team/stops/Bhanath2", "https://tec.openplanner.team/stops/Bhanmou1"], ["https://tec.openplanner.team/stops/LBGjacq1", "https://tec.openplanner.team/stops/LBGroma1"], ["https://tec.openplanner.team/stops/Bblagard", "https://tec.openplanner.team/stops/Bblaljo1"], ["https://tec.openplanner.team/stops/N532aia", "https://tec.openplanner.team/stops/N532aib"], ["https://tec.openplanner.team/stops/Bgzddfh1", "https://tec.openplanner.team/stops/Bgzdegl3"], ["https://tec.openplanner.team/stops/N539aaa", "https://tec.openplanner.team/stops/N539aab"], ["https://tec.openplanner.team/stops/Cctkais2", "https://tec.openplanner.team/stops/Ccurtra2"], ["https://tec.openplanner.team/stops/Bbchcbl1", "https://tec.openplanner.team/stops/Bbchcbl2"], ["https://tec.openplanner.team/stops/Bwatmsj2", "https://tec.openplanner.team/stops/Bwatmsj6"], ["https://tec.openplanner.team/stops/X609acb", "https://tec.openplanner.team/stops/X609aob"], ["https://tec.openplanner.team/stops/N537ajb", "https://tec.openplanner.team/stops/N537ala"], ["https://tec.openplanner.team/stops/N127aba", "https://tec.openplanner.team/stops/N134afb"], ["https://tec.openplanner.team/stops/Benimar4", "https://tec.openplanner.team/stops/Bmrlcch1"], ["https://tec.openplanner.team/stops/Cfcleco2", "https://tec.openplanner.team/stops/Cfcplac4"], ["https://tec.openplanner.team/stops/N551aba", "https://tec.openplanner.team/stops/N551abb"], ["https://tec.openplanner.team/stops/LLmwaut2", "https://tec.openplanner.team/stops/LRemonu2"], ["https://tec.openplanner.team/stops/X955ada", "https://tec.openplanner.team/stops/X955adb"], ["https://tec.openplanner.team/stops/X825aea", "https://tec.openplanner.team/stops/X826aba"], ["https://tec.openplanner.team/stops/Bthscbl2", "https://tec.openplanner.team/stops/Bthsvil2"], ["https://tec.openplanner.team/stops/H4ne135b", "https://tec.openplanner.team/stops/H4te255a"], ["https://tec.openplanner.team/stops/Lagmair4", "https://tec.openplanner.team/stops/Lagpera1"], ["https://tec.openplanner.team/stops/H2gy100a", "https://tec.openplanner.team/stops/H2gy109a"], ["https://tec.openplanner.team/stops/Btubfab2", "https://tec.openplanner.team/stops/Btubmfa2"], ["https://tec.openplanner.team/stops/Blasbpr2", "https://tec.openplanner.team/stops/Brixbai2"], ["https://tec.openplanner.team/stops/N543ajb", "https://tec.openplanner.team/stops/N543azb"], ["https://tec.openplanner.team/stops/H1al146a", "https://tec.openplanner.team/stops/H1ro134a"], ["https://tec.openplanner.team/stops/Ctuecol4", "https://tec.openplanner.team/stops/Ctuplac2"], ["https://tec.openplanner.team/stops/H3bi110a", "https://tec.openplanner.team/stops/H3bi117a"], ["https://tec.openplanner.team/stops/N501amb", "https://tec.openplanner.team/stops/N501bbc"], ["https://tec.openplanner.team/stops/LBahome2", "https://tec.openplanner.team/stops/LLUdoya1"], ["https://tec.openplanner.team/stops/NL68aad", "https://tec.openplanner.team/stops/NL68aca"], ["https://tec.openplanner.team/stops/H4tf147a", "https://tec.openplanner.team/stops/H4tf147b"], ["https://tec.openplanner.team/stops/X801acb", "https://tec.openplanner.team/stops/X801bta"], ["https://tec.openplanner.team/stops/Cnacent4", "https://tec.openplanner.team/stops/Cnacout2"], ["https://tec.openplanner.team/stops/N535aba", "https://tec.openplanner.team/stops/N535afb"], ["https://tec.openplanner.team/stops/X921aqb", "https://tec.openplanner.team/stops/X925afb"], ["https://tec.openplanner.team/stops/X595aaa", "https://tec.openplanner.team/stops/X595aad"], ["https://tec.openplanner.team/stops/Csabrun2", "https://tec.openplanner.team/stops/Csasncb1"], ["https://tec.openplanner.team/stops/X879ahb", "https://tec.openplanner.team/stops/X879aia"], ["https://tec.openplanner.team/stops/X882amb", "https://tec.openplanner.team/stops/X882amd"], ["https://tec.openplanner.team/stops/H4hn113a", "https://tec.openplanner.team/stops/H4hn114a"], ["https://tec.openplanner.team/stops/Cgoclad2", "https://tec.openplanner.team/stops/Cgostex1"], ["https://tec.openplanner.team/stops/Bndb4ch2", "https://tec.openplanner.team/stops/Btlgfto1"], ["https://tec.openplanner.team/stops/H1si169a", "https://tec.openplanner.team/stops/H1vt196a"], ["https://tec.openplanner.team/stops/NL76ada", "https://tec.openplanner.team/stops/NL76adb"], ["https://tec.openplanner.team/stops/N141aaa", "https://tec.openplanner.team/stops/N141aab"], ["https://tec.openplanner.team/stops/X659ana", "https://tec.openplanner.team/stops/X659aoa"], ["https://tec.openplanner.team/stops/N331adb", "https://tec.openplanner.team/stops/N385acb"], ["https://tec.openplanner.team/stops/Brixape2", "https://tec.openplanner.team/stops/Brixmar3"], ["https://tec.openplanner.team/stops/X633aaa", "https://tec.openplanner.team/stops/X653adc"], ["https://tec.openplanner.team/stops/N501dbb", "https://tec.openplanner.team/stops/N551aaa"], ["https://tec.openplanner.team/stops/X812ala", "https://tec.openplanner.team/stops/X812anb"], ["https://tec.openplanner.team/stops/LBjvill1", "https://tec.openplanner.team/stops/LBjvill3"], ["https://tec.openplanner.team/stops/N501goa", "https://tec.openplanner.team/stops/N501lzz"], ["https://tec.openplanner.team/stops/X670acb", "https://tec.openplanner.team/stops/X670ala"], ["https://tec.openplanner.team/stops/Bbonegl2", "https://tec.openplanner.team/stops/Bchgegl1"], ["https://tec.openplanner.team/stops/Cdahtvi2", "https://tec.openplanner.team/stops/Cmarroy2"], ["https://tec.openplanner.team/stops/N874aia", "https://tec.openplanner.team/stops/N874aib"], ["https://tec.openplanner.team/stops/X747aha", "https://tec.openplanner.team/stops/X749afa"], ["https://tec.openplanner.team/stops/LWecarr2", "https://tec.openplanner.team/stops/LWevalf2"], ["https://tec.openplanner.team/stops/X809aba", "https://tec.openplanner.team/stops/X858aga"], ["https://tec.openplanner.team/stops/Bfelcsa1", "https://tec.openplanner.team/stops/Bfelcsa2"], ["https://tec.openplanner.team/stops/NB33aib", "https://tec.openplanner.team/stops/NB59akb"], ["https://tec.openplanner.team/stops/H1hw121a", "https://tec.openplanner.team/stops/H1hw123a"], ["https://tec.openplanner.team/stops/N122afa", "https://tec.openplanner.team/stops/N122aha"], ["https://tec.openplanner.team/stops/Llxec--2", "https://tec.openplanner.team/stops/Lwapont1"], ["https://tec.openplanner.team/stops/N209aaa", "https://tec.openplanner.team/stops/N209aab"], ["https://tec.openplanner.team/stops/Lendonh1", "https://tec.openplanner.team/stops/Lenmivi*"], ["https://tec.openplanner.team/stops/LVeeg--1", "https://tec.openplanner.team/stops/LVeeg--2"], ["https://tec.openplanner.team/stops/Bmlnsms1", "https://tec.openplanner.team/stops/Bmlnsmv2"], ["https://tec.openplanner.team/stops/LLrfont2", "https://tec.openplanner.team/stops/LLrmc--4"], ["https://tec.openplanner.team/stops/N569aca", "https://tec.openplanner.team/stops/N569ada"], ["https://tec.openplanner.team/stops/LBIaepo2", "https://tec.openplanner.team/stops/LBIcarg1"], ["https://tec.openplanner.team/stops/H1wa145a", "https://tec.openplanner.team/stops/H1wa153a"], ["https://tec.openplanner.team/stops/LBbhupp2", "https://tec.openplanner.team/stops/LTPcamp2"], ["https://tec.openplanner.team/stops/N231afa", "https://tec.openplanner.team/stops/N231afb"], ["https://tec.openplanner.team/stops/Csobrou2", "https://tec.openplanner.team/stops/Csoplac2"], ["https://tec.openplanner.team/stops/Llgphol3", "https://tec.openplanner.team/stops/Llgtcha1"], ["https://tec.openplanner.team/stops/H4be106a", "https://tec.openplanner.team/stops/H4be110a"], ["https://tec.openplanner.team/stops/H1qu106a", "https://tec.openplanner.team/stops/H1qu116b"], ["https://tec.openplanner.team/stops/H2bh106a", "https://tec.openplanner.team/stops/H2bh106b"], ["https://tec.openplanner.team/stops/Cci4bra3", "https://tec.openplanner.team/stops/Ccicouc2"], ["https://tec.openplanner.team/stops/X743acb", "https://tec.openplanner.team/stops/X743adb"], ["https://tec.openplanner.team/stops/N351afa", "https://tec.openplanner.team/stops/N351aia"], ["https://tec.openplanner.team/stops/LjeGRPMC", "https://tec.openplanner.team/stops/Ljelamb2"], ["https://tec.openplanner.team/stops/N241abb", "https://tec.openplanner.team/stops/N270adb"], ["https://tec.openplanner.team/stops/N387aba", "https://tec.openplanner.team/stops/N387abb"], ["https://tec.openplanner.team/stops/H1pa118a", "https://tec.openplanner.team/stops/H1pa118b"], ["https://tec.openplanner.team/stops/N522aka", "https://tec.openplanner.team/stops/N522akb"], ["https://tec.openplanner.team/stops/H1lb139a", "https://tec.openplanner.team/stops/H1lb152a"], ["https://tec.openplanner.team/stops/X733aea", "https://tec.openplanner.team/stops/X733aeb"], ["https://tec.openplanner.team/stops/N551ala", "https://tec.openplanner.team/stops/N551alb"], ["https://tec.openplanner.team/stops/LhM07--1", "https://tec.openplanner.team/stops/LhMdorf2"], ["https://tec.openplanner.team/stops/H4ga156a", "https://tec.openplanner.team/stops/H4ga158a"], ["https://tec.openplanner.team/stops/Bdlmgla2", "https://tec.openplanner.team/stops/Bwavdmo4"], ["https://tec.openplanner.team/stops/Bmsgaxp2", "https://tec.openplanner.team/stops/Bmsgfon1"], ["https://tec.openplanner.team/stops/LNEcite1", "https://tec.openplanner.team/stops/LNEvpn-1"], ["https://tec.openplanner.team/stops/Cctberg2", "https://tec.openplanner.team/stops/Cctgiss2"], ["https://tec.openplanner.team/stops/LJA65h-1", "https://tec.openplanner.team/stops/LJAdeho3"], ["https://tec.openplanner.team/stops/X888aba", "https://tec.openplanner.team/stops/X888aeb"], ["https://tec.openplanner.team/stops/X982aya", "https://tec.openplanner.team/stops/X982ayb"], ["https://tec.openplanner.team/stops/N308aha", "https://tec.openplanner.team/stops/N308ama"], ["https://tec.openplanner.team/stops/Bitrecu1", "https://tec.openplanner.team/stops/Bitrhou1"], ["https://tec.openplanner.team/stops/X733aka", "https://tec.openplanner.team/stops/X733akb"], ["https://tec.openplanner.team/stops/N311aab", "https://tec.openplanner.team/stops/N368aca"], ["https://tec.openplanner.team/stops/LSBdelc1", "https://tec.openplanner.team/stops/LSBrouf3"], ["https://tec.openplanner.team/stops/H1ba108a", "https://tec.openplanner.team/stops/H1ba114b"], ["https://tec.openplanner.team/stops/LOdmonu1", "https://tec.openplanner.team/stops/LVlleme3"], ["https://tec.openplanner.team/stops/H1hi122b", "https://tec.openplanner.team/stops/H1ht121b"], ["https://tec.openplanner.team/stops/Canecbr2", "https://tec.openplanner.team/stops/Canvane2"], ["https://tec.openplanner.team/stops/H1ms270a", "https://tec.openplanner.team/stops/H1ms311a"], ["https://tec.openplanner.team/stops/LeUbahn3", "https://tec.openplanner.team/stops/LeUbahn4"], ["https://tec.openplanner.team/stops/X614bbb", "https://tec.openplanner.team/stops/X614bcb"], ["https://tec.openplanner.team/stops/H1ms265a", "https://tec.openplanner.team/stops/H1ms265b"], ["https://tec.openplanner.team/stops/X901aha", "https://tec.openplanner.team/stops/X901bra"], ["https://tec.openplanner.team/stops/LAWcorn2", "https://tec.openplanner.team/stops/LAWvill2"], ["https://tec.openplanner.team/stops/H4cp103b", "https://tec.openplanner.team/stops/H4hg156a"], ["https://tec.openplanner.team/stops/X605aea", "https://tec.openplanner.team/stops/X605afb"], ["https://tec.openplanner.team/stops/Crebrux1", "https://tec.openplanner.team/stops/Crehout1"], ["https://tec.openplanner.team/stops/H4te251a", "https://tec.openplanner.team/stops/H4te413a"], ["https://tec.openplanner.team/stops/H1ba117b", "https://tec.openplanner.team/stops/H1wl124a"], ["https://tec.openplanner.team/stops/X886aga", "https://tec.openplanner.team/stops/X985afa"], ["https://tec.openplanner.team/stops/X923aca", "https://tec.openplanner.team/stops/X923afa"], ["https://tec.openplanner.team/stops/X804aua", "https://tec.openplanner.team/stops/X804bqb"], ["https://tec.openplanner.team/stops/Crebien2", "https://tec.openplanner.team/stops/Crerevi1"], ["https://tec.openplanner.team/stops/N204aca", "https://tec.openplanner.team/stops/N205abb"], ["https://tec.openplanner.team/stops/X790aja", "https://tec.openplanner.team/stops/X790aka"], ["https://tec.openplanner.team/stops/N536aab", "https://tec.openplanner.team/stops/N536adb"], ["https://tec.openplanner.team/stops/LSLhale1", "https://tec.openplanner.team/stops/LSLhale2"], ["https://tec.openplanner.team/stops/X925agb", "https://tec.openplanner.team/stops/X925ata"], ["https://tec.openplanner.team/stops/N232aaa", "https://tec.openplanner.team/stops/N261acb"], ["https://tec.openplanner.team/stops/X750aab", "https://tec.openplanner.team/stops/X750aea"], ["https://tec.openplanner.team/stops/N516aja", "https://tec.openplanner.team/stops/N517aca"], ["https://tec.openplanner.team/stops/Lagpass1", "https://tec.openplanner.team/stops/Lagstre1"], ["https://tec.openplanner.team/stops/H4rs117b", "https://tec.openplanner.team/stops/H4rs118b"], ["https://tec.openplanner.team/stops/LXHadam1", "https://tec.openplanner.team/stops/LXHadam2"], ["https://tec.openplanner.team/stops/Cmofosb2", "https://tec.openplanner.team/stops/Crocpai2"], ["https://tec.openplanner.team/stops/H1wa142b", "https://tec.openplanner.team/stops/H1wa143a"], ["https://tec.openplanner.team/stops/Bbstchv1", "https://tec.openplanner.team/stops/Bbstchv2"], ["https://tec.openplanner.team/stops/X670aha", "https://tec.openplanner.team/stops/X670ahb"], ["https://tec.openplanner.team/stops/LGmeg--2", "https://tec.openplanner.team/stops/LGmhedo2"], ["https://tec.openplanner.team/stops/X725abb", "https://tec.openplanner.team/stops/X738aea"], ["https://tec.openplanner.team/stops/H1gg117a", "https://tec.openplanner.team/stops/H1mb125a"], ["https://tec.openplanner.team/stops/LBhschu2", "https://tec.openplanner.team/stops/LmAaldr1"], ["https://tec.openplanner.team/stops/Cgrbert2", "https://tec.openplanner.team/stops/NC14aha"], ["https://tec.openplanner.team/stops/NH01aba", "https://tec.openplanner.team/stops/NH01abc"], ["https://tec.openplanner.team/stops/N569aba", "https://tec.openplanner.team/stops/N569afb"], ["https://tec.openplanner.team/stops/N254aaa", "https://tec.openplanner.team/stops/N254adb"], ["https://tec.openplanner.team/stops/X899acb", "https://tec.openplanner.team/stops/X899aeb"], ["https://tec.openplanner.team/stops/Lemcarm1", "https://tec.openplanner.team/stops/Lemeg--1"], ["https://tec.openplanner.team/stops/N547ajb", "https://tec.openplanner.team/stops/N548awa"], ["https://tec.openplanner.team/stops/Lkiblan2", "https://tec.openplanner.team/stops/Lkigare2"], ["https://tec.openplanner.team/stops/H4pl111b", "https://tec.openplanner.team/stops/H4pl112b"], ["https://tec.openplanner.team/stops/Cmycime2", "https://tec.openplanner.team/stops/Cmymaco1"], ["https://tec.openplanner.team/stops/N507aea", "https://tec.openplanner.team/stops/N507aeb"], ["https://tec.openplanner.team/stops/X836aba", "https://tec.openplanner.team/stops/X839aga"], ["https://tec.openplanner.team/stops/N501hzc", "https://tec.openplanner.team/stops/N501ifa"], ["https://tec.openplanner.team/stops/X940aaa", "https://tec.openplanner.team/stops/X940aab"], ["https://tec.openplanner.team/stops/LOmecol1", "https://tec.openplanner.team/stops/LOmpont2"], ["https://tec.openplanner.team/stops/N501aqa", "https://tec.openplanner.team/stops/N501mca"], ["https://tec.openplanner.team/stops/X371acb", "https://tec.openplanner.team/stops/X371ada"], ["https://tec.openplanner.team/stops/Cbfcham4", "https://tec.openplanner.team/stops/Cbfusin2"], ["https://tec.openplanner.team/stops/Cgonvro2", "https://tec.openplanner.team/stops/Cmehame1"], ["https://tec.openplanner.team/stops/LETfort1", "https://tec.openplanner.team/stops/LETfort2"], ["https://tec.openplanner.team/stops/Bjodfco1", "https://tec.openplanner.team/stops/NR21ahb"], ["https://tec.openplanner.team/stops/H2sb221a", "https://tec.openplanner.team/stops/H2tr248a"], ["https://tec.openplanner.team/stops/X390apb", "https://tec.openplanner.team/stops/X992afb"], ["https://tec.openplanner.team/stops/Lemjacq1", "https://tec.openplanner.team/stops/Lemjacq2"], ["https://tec.openplanner.team/stops/X607aea", "https://tec.openplanner.team/stops/X607aga"], ["https://tec.openplanner.team/stops/LBNburg1", "https://tec.openplanner.team/stops/LBNgarn1"], ["https://tec.openplanner.team/stops/H3br100a", "https://tec.openplanner.team/stops/H3br101a"], ["https://tec.openplanner.team/stops/N501iwa", "https://tec.openplanner.team/stops/N501ixc"], ["https://tec.openplanner.team/stops/H4fo115a", "https://tec.openplanner.team/stops/H4vz369a"], ["https://tec.openplanner.team/stops/X664ara", "https://tec.openplanner.team/stops/X664arb"], ["https://tec.openplanner.team/stops/LSNmoul1", "https://tec.openplanner.team/stops/LSNmoul2"], ["https://tec.openplanner.team/stops/LON02--1", "https://tec.openplanner.team/stops/LWarema1"], ["https://tec.openplanner.team/stops/Cmlavch1", "https://tec.openplanner.team/stops/Cmlbulp3"], ["https://tec.openplanner.team/stops/X639aia", "https://tec.openplanner.team/stops/X639akc"], ["https://tec.openplanner.team/stops/Bblafab2", "https://tec.openplanner.team/stops/Blilhay1"], ["https://tec.openplanner.team/stops/H1hc127a", "https://tec.openplanner.team/stops/H1hc150b"], ["https://tec.openplanner.team/stops/Ctychen3", "https://tec.openplanner.team/stops/N137aha"], ["https://tec.openplanner.team/stops/Ljhcarr1", "https://tec.openplanner.team/stops/Ljhcarr2"], ["https://tec.openplanner.team/stops/N115acb", "https://tec.openplanner.team/stops/N118ada"], ["https://tec.openplanner.team/stops/X721aqb", "https://tec.openplanner.team/stops/X721ara"], ["https://tec.openplanner.team/stops/Ccigill1", "https://tec.openplanner.team/stops/Ccigill2"], ["https://tec.openplanner.team/stops/N506bea", "https://tec.openplanner.team/stops/N506bia"], ["https://tec.openplanner.team/stops/X766abb", "https://tec.openplanner.team/stops/X766aha"], ["https://tec.openplanner.team/stops/N424aeb", "https://tec.openplanner.team/stops/N425agb"], ["https://tec.openplanner.team/stops/X666akb", "https://tec.openplanner.team/stops/X729aab"], ["https://tec.openplanner.team/stops/Bptecal2", "https://tec.openplanner.team/stops/Bptegna2"], ["https://tec.openplanner.team/stops/NL37aba", "https://tec.openplanner.team/stops/NL37alb"], ["https://tec.openplanner.team/stops/Lmlcher1", "https://tec.openplanner.team/stops/Lmlcrot2"], ["https://tec.openplanner.team/stops/H1ls110a", "https://tec.openplanner.team/stops/H1ls110b"], ["https://tec.openplanner.team/stops/LCPlacr2", "https://tec.openplanner.team/stops/LCPoneu2"], ["https://tec.openplanner.team/stops/X999aqa", "https://tec.openplanner.team/stops/X999aqb"], ["https://tec.openplanner.team/stops/LOmmer-2", "https://tec.openplanner.team/stops/LSeec--1"], ["https://tec.openplanner.team/stops/Ctrchat2", "https://tec.openplanner.team/stops/Ctrplac1"], ["https://tec.openplanner.team/stops/N506aja", "https://tec.openplanner.team/stops/N506ajb"], ["https://tec.openplanner.team/stops/Cfbcabi1", "https://tec.openplanner.team/stops/Cfbcabi2"], ["https://tec.openplanner.team/stops/LMAbruy2", "https://tec.openplanner.team/stops/LMAgb--2"], ["https://tec.openplanner.team/stops/H4bf107a", "https://tec.openplanner.team/stops/H4bn173a"], ["https://tec.openplanner.team/stops/X669afa", "https://tec.openplanner.team/stops/X669aha"], ["https://tec.openplanner.team/stops/H2mm140b", "https://tec.openplanner.team/stops/H2mo143b"], ["https://tec.openplanner.team/stops/LVEfize2", "https://tec.openplanner.team/stops/LVEphar1"], ["https://tec.openplanner.team/stops/N540aaa", "https://tec.openplanner.team/stops/N540aba"], ["https://tec.openplanner.team/stops/H1pd141a", "https://tec.openplanner.team/stops/H1pd144b"], ["https://tec.openplanner.team/stops/Bbeaap51", "https://tec.openplanner.team/stops/Bbeabme1"], ["https://tec.openplanner.team/stops/N539bbb", "https://tec.openplanner.team/stops/N539bcb"], ["https://tec.openplanner.team/stops/H4co151a", "https://tec.openplanner.team/stops/H4pl137b"], ["https://tec.openplanner.team/stops/N301anb", "https://tec.openplanner.team/stops/N301asb"], ["https://tec.openplanner.team/stops/X948ama", "https://tec.openplanner.team/stops/X949amb"], ["https://tec.openplanner.team/stops/LXoroch1", "https://tec.openplanner.team/stops/X599aga"], ["https://tec.openplanner.team/stops/H1sg144a", "https://tec.openplanner.team/stops/H1sg149a"], ["https://tec.openplanner.team/stops/Bottcli4", "https://tec.openplanner.team/stops/Bottrfa4"], ["https://tec.openplanner.team/stops/X781aca", "https://tec.openplanner.team/stops/X781agb"], ["https://tec.openplanner.team/stops/LFOchab2", "https://tec.openplanner.team/stops/LVlfooz1"], ["https://tec.openplanner.team/stops/N520aca", "https://tec.openplanner.team/stops/N520ada"], ["https://tec.openplanner.team/stops/LJOferm1", "https://tec.openplanner.team/stops/LJOvill1"], ["https://tec.openplanner.team/stops/Bnivlai2", "https://tec.openplanner.team/stops/Bnivsho1"], ["https://tec.openplanner.team/stops/H4ve133a", "https://tec.openplanner.team/stops/H4ve136a"], ["https://tec.openplanner.team/stops/Cgocrus1", "https://tec.openplanner.team/stops/Cgofleu3"], ["https://tec.openplanner.team/stops/Cblbaiv2", "https://tec.openplanner.team/stops/Cmcegli2"], ["https://tec.openplanner.team/stops/LELhard2", "https://tec.openplanner.team/stops/LHCbois6"], ["https://tec.openplanner.team/stops/H1ho129a", "https://tec.openplanner.team/stops/H1sg148a"], ["https://tec.openplanner.team/stops/N554aea", "https://tec.openplanner.team/stops/N554aga"], ["https://tec.openplanner.team/stops/Cthoues2", "https://tec.openplanner.team/stops/Cthrwai2"], ["https://tec.openplanner.team/stops/Cptdubo2", "https://tec.openplanner.team/stops/Cptsncb1"], ["https://tec.openplanner.team/stops/X880aga", "https://tec.openplanner.team/stops/X880agd"], ["https://tec.openplanner.team/stops/Cjucomb2", "https://tec.openplanner.team/stops/Cjupn4"], ["https://tec.openplanner.team/stops/H3so168b", "https://tec.openplanner.team/stops/H3so174b"], ["https://tec.openplanner.team/stops/N351ata", "https://tec.openplanner.team/stops/N351axa"], ["https://tec.openplanner.team/stops/LBVlamo2", "https://tec.openplanner.team/stops/LBVzand4"], ["https://tec.openplanner.team/stops/Cmareun1", "https://tec.openplanner.team/stops/Cmazone2"], ["https://tec.openplanner.team/stops/LSTchal4", "https://tec.openplanner.team/stops/LSTec--2"], ["https://tec.openplanner.team/stops/LLescie1", "https://tec.openplanner.team/stops/X547aqa"], ["https://tec.openplanner.team/stops/LSdsa8a2", "https://tec.openplanner.team/stops/LSdsar52"], ["https://tec.openplanner.team/stops/N125aaa", "https://tec.openplanner.team/stops/N127aha"], ["https://tec.openplanner.team/stops/Clvchen1", "https://tec.openplanner.team/stops/Clvndam2"], ["https://tec.openplanner.team/stops/N528aqa", "https://tec.openplanner.team/stops/N528atb"], ["https://tec.openplanner.team/stops/X837aaa", "https://tec.openplanner.team/stops/X839ada"], ["https://tec.openplanner.team/stops/X664aeb", "https://tec.openplanner.team/stops/X667adb"], ["https://tec.openplanner.team/stops/N573aaa", "https://tec.openplanner.team/stops/N573ahb"], ["https://tec.openplanner.team/stops/X892aeb", "https://tec.openplanner.team/stops/X892ahb"], ["https://tec.openplanner.team/stops/X804beb", "https://tec.openplanner.team/stops/X804bfb"], ["https://tec.openplanner.team/stops/Cchmonu3", "https://tec.openplanner.team/stops/CMba2"], ["https://tec.openplanner.team/stops/H4pq115a", "https://tec.openplanner.team/stops/H4pq117a"], ["https://tec.openplanner.team/stops/X754ara", "https://tec.openplanner.team/stops/X754atb"], ["https://tec.openplanner.team/stops/N534awc", "https://tec.openplanner.team/stops/N534caa"], ["https://tec.openplanner.team/stops/LCelabi1", "https://tec.openplanner.team/stops/LFalieg2"], ["https://tec.openplanner.team/stops/N244anb", "https://tec.openplanner.team/stops/N244aob"], ["https://tec.openplanner.team/stops/X899aga", "https://tec.openplanner.team/stops/X899aha"], ["https://tec.openplanner.team/stops/LBBcamp1", "https://tec.openplanner.team/stops/LBBpech1"], ["https://tec.openplanner.team/stops/Bqueblo2", "https://tec.openplanner.team/stops/Bquepos1"], ["https://tec.openplanner.team/stops/Blsmjja2", "https://tec.openplanner.team/stops/Bneedia1"], ["https://tec.openplanner.team/stops/N207ada", "https://tec.openplanner.team/stops/X210azb"], ["https://tec.openplanner.team/stops/Brixeur5", "https://tec.openplanner.team/stops/Brixga11"], ["https://tec.openplanner.team/stops/LrAdrie1", "https://tec.openplanner.team/stops/LrApont1"], ["https://tec.openplanner.team/stops/H4ka174a", "https://tec.openplanner.team/stops/H4ka179a"], ["https://tec.openplanner.team/stops/LTAchau2", "https://tec.openplanner.team/stops/LTAchpl2"], ["https://tec.openplanner.team/stops/Cgocat1", "https://tec.openplanner.team/stops/Cgoetun5"], ["https://tec.openplanner.team/stops/Cjupn2", "https://tec.openplanner.team/stops/Cjurogi2"], ["https://tec.openplanner.team/stops/N501hwa", "https://tec.openplanner.team/stops/N501hwb"], ["https://tec.openplanner.team/stops/LLedoya1", "https://tec.openplanner.team/stops/X782apa"], ["https://tec.openplanner.team/stops/N501dtb", "https://tec.openplanner.team/stops/N501eaa"], ["https://tec.openplanner.team/stops/Cclchap1", "https://tec.openplanner.team/stops/Cclmoul1"], ["https://tec.openplanner.team/stops/N150ada", "https://tec.openplanner.team/stops/N150adb"], ["https://tec.openplanner.team/stops/N562agb", "https://tec.openplanner.team/stops/N562ahb"], ["https://tec.openplanner.team/stops/X818ada", "https://tec.openplanner.team/stops/X818atb"], ["https://tec.openplanner.team/stops/LSNness1", "https://tec.openplanner.team/stops/LXHmart1"], ["https://tec.openplanner.team/stops/LeUgend2", "https://tec.openplanner.team/stops/LeUrath1"], ["https://tec.openplanner.team/stops/H1so133a", "https://tec.openplanner.team/stops/H1so133b"], ["https://tec.openplanner.team/stops/N506bac", "https://tec.openplanner.team/stops/N506bad"], ["https://tec.openplanner.team/stops/H1he107b", "https://tec.openplanner.team/stops/H1he108b"], ["https://tec.openplanner.team/stops/Bbauegl2", "https://tec.openplanner.team/stops/Blilgar1"], ["https://tec.openplanner.team/stops/N321aba", "https://tec.openplanner.team/stops/N352afb"], ["https://tec.openplanner.team/stops/N501fya", "https://tec.openplanner.team/stops/N501hva"], ["https://tec.openplanner.team/stops/LSetrix1", "https://tec.openplanner.team/stops/LVbstre1"], ["https://tec.openplanner.team/stops/LBYegli2", "https://tec.openplanner.team/stops/LHEelva2"], ["https://tec.openplanner.team/stops/X637aea", "https://tec.openplanner.team/stops/X637agd"], ["https://tec.openplanner.team/stops/X897alc", "https://tec.openplanner.team/stops/X897amb"], ["https://tec.openplanner.team/stops/LMastat4", "https://tec.openplanner.team/stops/LTobilz2"], ["https://tec.openplanner.team/stops/Bboutry1", "https://tec.openplanner.team/stops/Bmrsefr1"], ["https://tec.openplanner.team/stops/X744ada", "https://tec.openplanner.team/stops/X746ahb"], ["https://tec.openplanner.team/stops/Cchba02", "https://tec.openplanner.team/stops/Cchba1"], ["https://tec.openplanner.team/stops/X836aaa", "https://tec.openplanner.team/stops/X836abb"], ["https://tec.openplanner.team/stops/H5rx110b", "https://tec.openplanner.team/stops/H5rx146a"], ["https://tec.openplanner.team/stops/H1cd110a", "https://tec.openplanner.team/stops/H1cd113a"], ["https://tec.openplanner.team/stops/Lalchar2", "https://tec.openplanner.team/stops/Lanschu2"], ["https://tec.openplanner.team/stops/Cpcgout2", "https://tec.openplanner.team/stops/Cpcha432"], ["https://tec.openplanner.team/stops/N242adc", "https://tec.openplanner.team/stops/N251aaa"], ["https://tec.openplanner.team/stops/Lprcard1", "https://tec.openplanner.team/stops/Lprcard2"], ["https://tec.openplanner.team/stops/X619aja", "https://tec.openplanner.team/stops/X620aha"], ["https://tec.openplanner.team/stops/LkTsch%C3%B61", "https://tec.openplanner.team/stops/LkTtal-1"], ["https://tec.openplanner.team/stops/X659apb", "https://tec.openplanner.team/stops/X741ajc"], ["https://tec.openplanner.team/stops/N512akb", "https://tec.openplanner.team/stops/N512ama"], ["https://tec.openplanner.team/stops/LWibare2", "https://tec.openplanner.team/stops/LWipaif1"], ["https://tec.openplanner.team/stops/Llggrav1", "https://tec.openplanner.team/stops/Llggrav2"], ["https://tec.openplanner.team/stops/Ccutrav2", "https://tec.openplanner.team/stops/Ccutrav4"], ["https://tec.openplanner.team/stops/H1te188a", "https://tec.openplanner.team/stops/H1te190b"], ["https://tec.openplanner.team/stops/Bolgcsa1", "https://tec.openplanner.team/stops/Bolgsha2"], ["https://tec.openplanner.team/stops/H1gy112a", "https://tec.openplanner.team/stops/H1gy116a"], ["https://tec.openplanner.team/stops/LSNbouh3", "https://tec.openplanner.team/stops/LSNecol3"], ["https://tec.openplanner.team/stops/Lbococh1", "https://tec.openplanner.team/stops/Lsechev2"], ["https://tec.openplanner.team/stops/N501cea", "https://tec.openplanner.team/stops/N501joa"], ["https://tec.openplanner.team/stops/Bohngen1", "https://tec.openplanner.team/stops/Bohngen2"], ["https://tec.openplanner.team/stops/LAvrout2", "https://tec.openplanner.team/stops/LCIneuv1"], ["https://tec.openplanner.team/stops/Lfhnrou1", "https://tec.openplanner.team/stops/Lfhvoye1"], ["https://tec.openplanner.team/stops/Chpchea1", "https://tec.openplanner.team/stops/Cwgmutu1"], ["https://tec.openplanner.team/stops/X662afa", "https://tec.openplanner.team/stops/X662afb"], ["https://tec.openplanner.team/stops/Bwavgar6", "https://tec.openplanner.team/stops/Bwavgar7"], ["https://tec.openplanner.team/stops/X890aab", "https://tec.openplanner.team/stops/X890abb"], ["https://tec.openplanner.team/stops/LbRkirc2", "https://tec.openplanner.team/stops/LgRhouf1"], ["https://tec.openplanner.team/stops/H4ss153b", "https://tec.openplanner.team/stops/H4ss154a"], ["https://tec.openplanner.team/stops/H1bd103a", "https://tec.openplanner.team/stops/H1hq127b"], ["https://tec.openplanner.team/stops/N340aba", "https://tec.openplanner.team/stops/N340ada"], ["https://tec.openplanner.team/stops/N543apa", "https://tec.openplanner.team/stops/N543apb"], ["https://tec.openplanner.team/stops/X669aeb", "https://tec.openplanner.team/stops/X672aja"], ["https://tec.openplanner.team/stops/LeUbush1", "https://tec.openplanner.team/stops/LeUrath2"], ["https://tec.openplanner.team/stops/Ccuhsti1", "https://tec.openplanner.team/stops/Cpipost1"], ["https://tec.openplanner.team/stops/H1pa103a", "https://tec.openplanner.team/stops/H1pa120a"], ["https://tec.openplanner.team/stops/H1br125a", "https://tec.openplanner.team/stops/H1em109a"], ["https://tec.openplanner.team/stops/Cplrymo1", "https://tec.openplanner.team/stops/Cplstfa3"], ["https://tec.openplanner.team/stops/NC24afb", "https://tec.openplanner.team/stops/NC24aga"], ["https://tec.openplanner.team/stops/LSGfoua1", "https://tec.openplanner.team/stops/LSkathe2"], ["https://tec.openplanner.team/stops/LABbert2", "https://tec.openplanner.team/stops/LBegare1"], ["https://tec.openplanner.team/stops/Bblacha1", "https://tec.openplanner.team/stops/Bblaphi1"], ["https://tec.openplanner.team/stops/N503aaa", "https://tec.openplanner.team/stops/N503abb"], ["https://tec.openplanner.team/stops/N214aca", "https://tec.openplanner.team/stops/N228aeb"], ["https://tec.openplanner.team/stops/LRRemul1", "https://tec.openplanner.team/stops/LRRroth2"], ["https://tec.openplanner.team/stops/Cjuathe2", "https://tec.openplanner.team/stops/Cjucomb2"], ["https://tec.openplanner.team/stops/Bmsgstj1", "https://tec.openplanner.team/stops/Bmsgstj2"], ["https://tec.openplanner.team/stops/LBLcalv2", "https://tec.openplanner.team/stops/LBLtroi2"], ["https://tec.openplanner.team/stops/Cgogb1", "https://tec.openplanner.team/stops/Cgoson11"], ["https://tec.openplanner.team/stops/LbUbisc2", "https://tec.openplanner.team/stops/LbUpost2"], ["https://tec.openplanner.team/stops/Bjaugar1", "https://tec.openplanner.team/stops/Bjaugar4"], ["https://tec.openplanner.team/stops/X941aaa", "https://tec.openplanner.team/stops/X941aba"], ["https://tec.openplanner.team/stops/Ladmoul1", "https://tec.openplanner.team/stops/Ladmoul2"], ["https://tec.openplanner.team/stops/H4bo117a", "https://tec.openplanner.team/stops/H4hu120a"], ["https://tec.openplanner.team/stops/H1to155a", "https://tec.openplanner.team/stops/H1to155b"], ["https://tec.openplanner.team/stops/N226abb", "https://tec.openplanner.team/stops/N226acb"], ["https://tec.openplanner.team/stops/H4ch120d", "https://tec.openplanner.team/stops/H4vx364a"], ["https://tec.openplanner.team/stops/Cflathe1", "https://tec.openplanner.team/stops/Cflsncb2"], ["https://tec.openplanner.team/stops/Ltibure3", "https://tec.openplanner.team/stops/Ltibure4"], ["https://tec.openplanner.team/stops/N536ada", "https://tec.openplanner.team/stops/N536afa"], ["https://tec.openplanner.team/stops/Cfcpier1", "https://tec.openplanner.team/stops/Cfcplac3"], ["https://tec.openplanner.team/stops/Cmgpla2", "https://tec.openplanner.team/stops/Cmgpn1"], ["https://tec.openplanner.team/stops/H4ae102b", "https://tec.openplanner.team/stops/H4po129a"], ["https://tec.openplanner.team/stops/LDppana2", "https://tec.openplanner.team/stops/LTErest2"], ["https://tec.openplanner.team/stops/H1gr118b", "https://tec.openplanner.team/stops/H1sy141a"], ["https://tec.openplanner.team/stops/H1bb119a", "https://tec.openplanner.team/stops/H1bb121b"], ["https://tec.openplanner.team/stops/H1ne137a", "https://tec.openplanner.team/stops/H1ne149a"], ["https://tec.openplanner.team/stops/H1gr122a", "https://tec.openplanner.team/stops/H1gr122b"], ["https://tec.openplanner.team/stops/LHAmonu1", "https://tec.openplanner.team/stops/LRItour1"], ["https://tec.openplanner.team/stops/LAVstat2", "https://tec.openplanner.team/stops/LLRrape2"], ["https://tec.openplanner.team/stops/LmAgruf1", "https://tec.openplanner.team/stops/LmAkirc2"], ["https://tec.openplanner.team/stops/Cjugill3", "https://tec.openplanner.team/stops/CMchag1"], ["https://tec.openplanner.team/stops/LVLhalb2", "https://tec.openplanner.team/stops/LVLhalb4"], ["https://tec.openplanner.team/stops/Lsemaqu2", "https://tec.openplanner.team/stops/Lsepair2"], ["https://tec.openplanner.team/stops/Caiegli1", "https://tec.openplanner.team/stops/Caindsa1"], ["https://tec.openplanner.team/stops/N554ada", "https://tec.openplanner.team/stops/N554adb"], ["https://tec.openplanner.team/stops/Chpatel1", "https://tec.openplanner.team/stops/Chpatel2"], ["https://tec.openplanner.team/stops/Clomart1", "https://tec.openplanner.team/stops/CMdesc2"], ["https://tec.openplanner.team/stops/Lsehosp1", "https://tec.openplanner.team/stops/Lseprog1"], ["https://tec.openplanner.team/stops/N351ala", "https://tec.openplanner.team/stops/N351ana"], ["https://tec.openplanner.team/stops/X767aba", "https://tec.openplanner.team/stops/X767abb"], ["https://tec.openplanner.team/stops/H4ep126a", "https://tec.openplanner.team/stops/H4ep128b"], ["https://tec.openplanner.team/stops/LGEcons2", "https://tec.openplanner.team/stops/LHgroso2"], ["https://tec.openplanner.team/stops/H4he102b", "https://tec.openplanner.team/stops/H4he105a"], ["https://tec.openplanner.team/stops/N301aob", "https://tec.openplanner.team/stops/X301ara"], ["https://tec.openplanner.team/stops/Lsechev1", "https://tec.openplanner.team/stops/Lsefore2"], ["https://tec.openplanner.team/stops/LBveg--2", "https://tec.openplanner.team/stops/LBvnico2"], ["https://tec.openplanner.team/stops/Cgogrco1", "https://tec.openplanner.team/stops/Cjuhopi1"], ["https://tec.openplanner.team/stops/Csychap2", "https://tec.openplanner.team/stops/Csychap3"], ["https://tec.openplanner.team/stops/X902azb", "https://tec.openplanner.team/stops/X902baa"], ["https://tec.openplanner.team/stops/LaAelis1", "https://tec.openplanner.team/stops/LaAhaup1"], ["https://tec.openplanner.team/stops/N120ala", "https://tec.openplanner.team/stops/N120alb"], ["https://tec.openplanner.team/stops/H1er105b", "https://tec.openplanner.team/stops/H1er106a"], ["https://tec.openplanner.team/stops/H5bl117a", "https://tec.openplanner.team/stops/H5bl117b"], ["https://tec.openplanner.team/stops/NL57ala", "https://tec.openplanner.team/stops/NL57alb"], ["https://tec.openplanner.team/stops/Cflmart2", "https://tec.openplanner.team/stops/Cflpost1"], ["https://tec.openplanner.team/stops/H1ro133a", "https://tec.openplanner.team/stops/H4ry132b"], ["https://tec.openplanner.team/stops/LBRgend2", "https://tec.openplanner.team/stops/LLTeg--2"], ["https://tec.openplanner.team/stops/Blasclo2", "https://tec.openplanner.team/stops/Bohnr731"], ["https://tec.openplanner.team/stops/N501aaa", "https://tec.openplanner.team/stops/N501neb"], ["https://tec.openplanner.team/stops/Ctubpos3", "https://tec.openplanner.team/stops/Cturoge1"], ["https://tec.openplanner.team/stops/Cfaterg6", "https://tec.openplanner.team/stops/NC23agb"], ["https://tec.openplanner.team/stops/X725afd", "https://tec.openplanner.team/stops/X725bga"], ["https://tec.openplanner.team/stops/H1by100c", "https://tec.openplanner.team/stops/H1by103a"], ["https://tec.openplanner.team/stops/LFCotte2", "https://tec.openplanner.team/stops/LWRvert2"], ["https://tec.openplanner.team/stops/Cgzha621", "https://tec.openplanner.team/stops/Cgzmarb1"], ["https://tec.openplanner.team/stops/H1gh158a", "https://tec.openplanner.team/stops/H1gh165c"], ["https://tec.openplanner.team/stops/N218aea", "https://tec.openplanner.team/stops/N218aeb"], ["https://tec.openplanner.team/stops/X651aab", "https://tec.openplanner.team/stops/X651agb"], ["https://tec.openplanner.team/stops/Lroeg--1", "https://tec.openplanner.team/stops/Lroeg--4"], ["https://tec.openplanner.team/stops/N209aca", "https://tec.openplanner.team/stops/N209aka"], ["https://tec.openplanner.team/stops/N526ada", "https://tec.openplanner.team/stops/N527aba"], ["https://tec.openplanner.team/stops/X774aba", "https://tec.openplanner.team/stops/X774aca"], ["https://tec.openplanner.team/stops/Cgon51", "https://tec.openplanner.team/stops/Cjutrou1"], ["https://tec.openplanner.team/stops/N524aid", "https://tec.openplanner.team/stops/N524akb"], ["https://tec.openplanner.team/stops/X601cga", "https://tec.openplanner.team/stops/X601cpa"], ["https://tec.openplanner.team/stops/Bqueaga1", "https://tec.openplanner.team/stops/Btubren2"], ["https://tec.openplanner.team/stops/LCIpiet1", "https://tec.openplanner.team/stops/LCIsucr1"], ["https://tec.openplanner.team/stops/X639aka", "https://tec.openplanner.team/stops/X639akd"], ["https://tec.openplanner.team/stops/X807acb", "https://tec.openplanner.team/stops/X834adb"], ["https://tec.openplanner.team/stops/LAWhein2", "https://tec.openplanner.team/stops/LAWroug1"], ["https://tec.openplanner.team/stops/LTHec--2", "https://tec.openplanner.team/stops/LTHmaka2"], ["https://tec.openplanner.team/stops/X937aba", "https://tec.openplanner.team/stops/X937abb"], ["https://tec.openplanner.team/stops/Bhoealt2", "https://tec.openplanner.team/stops/Bzluegl1"], ["https://tec.openplanner.team/stops/LHHpt--2", "https://tec.openplanner.team/stops/LSkb1352"], ["https://tec.openplanner.team/stops/LCx728-1", "https://tec.openplanner.team/stops/LCx728-2"], ["https://tec.openplanner.team/stops/X790aea", "https://tec.openplanner.team/stops/X790aeb"], ["https://tec.openplanner.team/stops/Btubsca1", "https://tec.openplanner.team/stops/Btubstq1"], ["https://tec.openplanner.team/stops/N553aqb", "https://tec.openplanner.team/stops/N554adb"], ["https://tec.openplanner.team/stops/Lsebrun3", "https://tec.openplanner.team/stops/Lsephar2"], ["https://tec.openplanner.team/stops/LsVgend1", "https://tec.openplanner.team/stops/LsVviel2"], ["https://tec.openplanner.team/stops/Bndbdra2", "https://tec.openplanner.team/stops/Bndbnod2"], ["https://tec.openplanner.team/stops/Bchgqve2", "https://tec.openplanner.team/stops/Bchgqve3"], ["https://tec.openplanner.team/stops/N211aga", "https://tec.openplanner.team/stops/N212aia"], ["https://tec.openplanner.team/stops/N310aca", "https://tec.openplanner.team/stops/N310adb"], ["https://tec.openplanner.team/stops/N519ajb", "https://tec.openplanner.team/stops/N519alb"], ["https://tec.openplanner.team/stops/H1ha183a", "https://tec.openplanner.team/stops/H1ha194a"], ["https://tec.openplanner.team/stops/LWOpier2", "https://tec.openplanner.team/stops/LWOplat1"], ["https://tec.openplanner.team/stops/N538atd", "https://tec.openplanner.team/stops/N538aub"], ["https://tec.openplanner.team/stops/Bovecha1", "https://tec.openplanner.team/stops/Bwavnep2"], ["https://tec.openplanner.team/stops/N534bsa", "https://tec.openplanner.team/stops/N534bta"], ["https://tec.openplanner.team/stops/Bwavlav1", "https://tec.openplanner.team/stops/Bwavnep1"], ["https://tec.openplanner.team/stops/X615aea", "https://tec.openplanner.team/stops/X615agb"], ["https://tec.openplanner.team/stops/Bgnvcom2", "https://tec.openplanner.team/stops/Brixroi2"], ["https://tec.openplanner.team/stops/X605abb", "https://tec.openplanner.team/stops/X619amb"], ["https://tec.openplanner.team/stops/X661acb", "https://tec.openplanner.team/stops/X661azb"], ["https://tec.openplanner.team/stops/N501fhb", "https://tec.openplanner.team/stops/N501mjc"], ["https://tec.openplanner.team/stops/N515atb", "https://tec.openplanner.team/stops/N515aub"], ["https://tec.openplanner.team/stops/H2bh105a", "https://tec.openplanner.team/stops/H2bh114a"], ["https://tec.openplanner.team/stops/H1qu104b", "https://tec.openplanner.team/stops/H1qu105b"], ["https://tec.openplanner.team/stops/N525aha", "https://tec.openplanner.team/stops/N525akb"], ["https://tec.openplanner.team/stops/X734ada", "https://tec.openplanner.team/stops/X953aaa"], ["https://tec.openplanner.team/stops/Bstecal1", "https://tec.openplanner.team/stops/Bstecal2"], ["https://tec.openplanner.team/stops/N236ada", "https://tec.openplanner.team/stops/N236apa"], ["https://tec.openplanner.team/stops/N149aba", "https://tec.openplanner.team/stops/N149ada"], ["https://tec.openplanner.team/stops/LFPgeme1", "https://tec.openplanner.team/stops/LFPzwaa1"], ["https://tec.openplanner.team/stops/H4lu126a", "https://tec.openplanner.team/stops/H4lu127a"], ["https://tec.openplanner.team/stops/H1hm177a", "https://tec.openplanner.team/stops/H1hm177b"], ["https://tec.openplanner.team/stops/LhObull2", "https://tec.openplanner.team/stops/LhOfrie2"], ["https://tec.openplanner.team/stops/N501fbb", "https://tec.openplanner.team/stops/N501fby"], ["https://tec.openplanner.team/stops/LDapota1", "https://tec.openplanner.team/stops/LOMbrou2"], ["https://tec.openplanner.team/stops/X793aeb", "https://tec.openplanner.team/stops/X793apa"], ["https://tec.openplanner.team/stops/Cmabegh1", "https://tec.openplanner.team/stops/Cmastch1"], ["https://tec.openplanner.team/stops/N101alb", "https://tec.openplanner.team/stops/N101arb"], ["https://tec.openplanner.team/stops/H1pd146a", "https://tec.openplanner.team/stops/H1wa159a"], ["https://tec.openplanner.team/stops/Lagfour1", "https://tec.openplanner.team/stops/Lagvall2"], ["https://tec.openplanner.team/stops/Ljeegli6", "https://tec.openplanner.team/stops/Lsekubo2"], ["https://tec.openplanner.team/stops/Cgzplac1", "https://tec.openplanner.team/stops/Cgzplac3"], ["https://tec.openplanner.team/stops/LEScarr2", "https://tec.openplanner.team/stops/LESsouv1"], ["https://tec.openplanner.team/stops/H4ty356c", "https://tec.openplanner.team/stops/H4ty381a"], ["https://tec.openplanner.team/stops/Bhaleur1", "https://tec.openplanner.team/stops/Bhalrat1"], ["https://tec.openplanner.team/stops/X940ada", "https://tec.openplanner.team/stops/X940afa"], ["https://tec.openplanner.team/stops/X947aba", "https://tec.openplanner.team/stops/X947aca"], ["https://tec.openplanner.team/stops/N339aab", "https://tec.openplanner.team/stops/N368aab"], ["https://tec.openplanner.team/stops/LHUetie*", "https://tec.openplanner.team/stops/LHUfont1"], ["https://tec.openplanner.team/stops/Lanadmi1", "https://tec.openplanner.team/stops/Lanadmi2"], ["https://tec.openplanner.team/stops/LWEbruy1", "https://tec.openplanner.team/stops/LWEbruy2"], ["https://tec.openplanner.team/stops/Cjupier2", "https://tec.openplanner.team/stops/Cjuspin1"], ["https://tec.openplanner.team/stops/X811agb", "https://tec.openplanner.team/stops/X811aha"], ["https://tec.openplanner.team/stops/LNAbois1", "https://tec.openplanner.team/stops/LNAbois2"], ["https://tec.openplanner.team/stops/H4fo117a", "https://tec.openplanner.team/stops/H4fo117b"], ["https://tec.openplanner.team/stops/X617acb", "https://tec.openplanner.team/stops/X695ada"], ["https://tec.openplanner.team/stops/X910ahb", "https://tec.openplanner.team/stops/X910ajb"], ["https://tec.openplanner.team/stops/Bnivplt1", "https://tec.openplanner.team/stops/Bnivpro1"], ["https://tec.openplanner.team/stops/Llgstev1", "https://tec.openplanner.team/stops/Llgvalu1"], ["https://tec.openplanner.team/stops/LAigrim1", "https://tec.openplanner.team/stops/LAipala2"], ["https://tec.openplanner.team/stops/X371aja", "https://tec.openplanner.team/stops/X371ajb"], ["https://tec.openplanner.team/stops/N340adb", "https://tec.openplanner.team/stops/N340aeb"], ["https://tec.openplanner.team/stops/LnEkirc2", "https://tec.openplanner.team/stops/LnEleje1"], ["https://tec.openplanner.team/stops/H5bs102d", "https://tec.openplanner.team/stops/H5pe130b"], ["https://tec.openplanner.team/stops/LvA12--3", "https://tec.openplanner.team/stops/LvAschr2"], ["https://tec.openplanner.team/stops/H1hv131a", "https://tec.openplanner.team/stops/H1hv133a"], ["https://tec.openplanner.team/stops/H5rx137b", "https://tec.openplanner.team/stops/H5rx150a"], ["https://tec.openplanner.team/stops/LHarenn2", "https://tec.openplanner.team/stops/LHarenn3"], ["https://tec.openplanner.team/stops/X907aib", "https://tec.openplanner.team/stops/X938aab"], ["https://tec.openplanner.team/stops/Crodrai1", "https://tec.openplanner.team/stops/Crodrai2"], ["https://tec.openplanner.team/stops/LSIcour1", "https://tec.openplanner.team/stops/LSIters1"], ["https://tec.openplanner.team/stops/X877aea", "https://tec.openplanner.team/stops/X877aga"], ["https://tec.openplanner.team/stops/Cjubien1", "https://tec.openplanner.team/stops/Cjumarc2"], ["https://tec.openplanner.team/stops/N308ada", "https://tec.openplanner.team/stops/N308aya"], ["https://tec.openplanner.team/stops/X659awa", "https://tec.openplanner.team/stops/X672ahb"], ["https://tec.openplanner.team/stops/H1sy141a", "https://tec.openplanner.team/stops/H1to151a"], ["https://tec.openplanner.team/stops/LNCsera1", "https://tec.openplanner.team/stops/LNCsera2"], ["https://tec.openplanner.team/stops/X811anb", "https://tec.openplanner.team/stops/X811aoa"], ["https://tec.openplanner.team/stops/LSOferr4", "https://tec.openplanner.team/stops/LSOladr2"], ["https://tec.openplanner.team/stops/Lagjado1", "https://tec.openplanner.team/stops/Lagjado2"], ["https://tec.openplanner.team/stops/LhUrich1", "https://tec.openplanner.team/stops/LmUvilz1"], ["https://tec.openplanner.team/stops/Lceegth1", "https://tec.openplanner.team/stops/Lceegth2"], ["https://tec.openplanner.team/stops/H2hg149b", "https://tec.openplanner.team/stops/H2hg265b"], ["https://tec.openplanner.team/stops/Ccorian1", "https://tec.openplanner.team/stops/Ccorian2"], ["https://tec.openplanner.team/stops/H4mo132b", "https://tec.openplanner.team/stops/H4mo157b"], ["https://tec.openplanner.team/stops/X901aea", "https://tec.openplanner.team/stops/X901avb"], ["https://tec.openplanner.team/stops/Bgemcro1", "https://tec.openplanner.team/stops/Bgemcro2"], ["https://tec.openplanner.team/stops/LDOgare2", "https://tec.openplanner.team/stops/LDOjose1"], ["https://tec.openplanner.team/stops/N515aqd", "https://tec.openplanner.team/stops/N518acd"], ["https://tec.openplanner.team/stops/LBAcarr2", "https://tec.openplanner.team/stops/LBAcent1"], ["https://tec.openplanner.team/stops/LbEkirc*", "https://tec.openplanner.team/stops/LnIfrie2"], ["https://tec.openplanner.team/stops/N101aqa", "https://tec.openplanner.team/stops/N101ara"], ["https://tec.openplanner.team/stops/Cpccoss1", "https://tec.openplanner.team/stops/Cpcwaut1"], ["https://tec.openplanner.team/stops/Llgnage2", "https://tec.openplanner.team/stops/Llgrege2"], ["https://tec.openplanner.team/stops/X307aab", "https://tec.openplanner.team/stops/X307aba"], ["https://tec.openplanner.team/stops/LWechpl2", "https://tec.openplanner.team/stops/LWevalf2"], ["https://tec.openplanner.team/stops/LNEgaul1", "https://tec.openplanner.team/stops/LNEgaul2"], ["https://tec.openplanner.team/stops/LBWeg--1", "https://tec.openplanner.team/stops/LBWviad1"], ["https://tec.openplanner.team/stops/Cfowall1", "https://tec.openplanner.team/stops/CMfont2"], ["https://tec.openplanner.team/stops/LeIdeid2", "https://tec.openplanner.team/stops/LiVgirk2"], ["https://tec.openplanner.team/stops/Bperalv1", "https://tec.openplanner.team/stops/Bperpla2"], ["https://tec.openplanner.team/stops/X720aea", "https://tec.openplanner.team/stops/X733aab"], ["https://tec.openplanner.team/stops/N291aab", "https://tec.openplanner.team/stops/N291abb"], ["https://tec.openplanner.team/stops/Broscha2", "https://tec.openplanner.team/stops/H2gy113b"], ["https://tec.openplanner.team/stops/H1ms285a", "https://tec.openplanner.team/stops/H1ms308b"], ["https://tec.openplanner.team/stops/N501gsa", "https://tec.openplanner.team/stops/N501hia"], ["https://tec.openplanner.team/stops/LPobois2", "https://tec.openplanner.team/stops/LSUroyo1"], ["https://tec.openplanner.team/stops/LvAkirc1", "https://tec.openplanner.team/stops/LvAschr1"], ["https://tec.openplanner.team/stops/Lrcchar1", "https://tec.openplanner.team/stops/Lrcchar2"], ["https://tec.openplanner.team/stops/Lhrspi-1", "https://tec.openplanner.team/stops/Lhrspi-2"], ["https://tec.openplanner.team/stops/X616acb", "https://tec.openplanner.team/stops/X616adb"], ["https://tec.openplanner.team/stops/Bvirpla2", "https://tec.openplanner.team/stops/Bvirpos2"], ["https://tec.openplanner.team/stops/LGOdelv1", "https://tec.openplanner.team/stops/LGOdelv2"], ["https://tec.openplanner.team/stops/Lsehya-3", "https://tec.openplanner.team/stops/Lsepapi1"], ["https://tec.openplanner.team/stops/H1hw120a", "https://tec.openplanner.team/stops/H1hw124b"], ["https://tec.openplanner.team/stops/Cmycime1", "https://tec.openplanner.team/stops/Cmymaco2"], ["https://tec.openplanner.team/stops/LESfoot1", "https://tec.openplanner.team/stops/LESfoot2"], ["https://tec.openplanner.team/stops/X654abb", "https://tec.openplanner.team/stops/X654aeb"], ["https://tec.openplanner.team/stops/LaAbush*", "https://tec.openplanner.team/stops/LaApost2"], ["https://tec.openplanner.team/stops/H4gu110b", "https://tec.openplanner.team/stops/H4we134a"], ["https://tec.openplanner.team/stops/Bbuzcom2", "https://tec.openplanner.team/stops/Bnivvai2"], ["https://tec.openplanner.team/stops/X639aea", "https://tec.openplanner.team/stops/X639aeb"], ["https://tec.openplanner.team/stops/H2me115a", "https://tec.openplanner.team/stops/H2me115b"], ["https://tec.openplanner.team/stops/N507aka", "https://tec.openplanner.team/stops/N512ama"], ["https://tec.openplanner.team/stops/LHUaveu1", "https://tec.openplanner.team/stops/LHUlebo1"], ["https://tec.openplanner.team/stops/X645aba", "https://tec.openplanner.team/stops/X645abb"], ["https://tec.openplanner.team/stops/X753aaa", "https://tec.openplanner.team/stops/X753aab"], ["https://tec.openplanner.team/stops/LFUgare2", "https://tec.openplanner.team/stops/LHumoul1"], ["https://tec.openplanner.team/stops/N577aca", "https://tec.openplanner.team/stops/N577agb"], ["https://tec.openplanner.team/stops/LHMcruc1", "https://tec.openplanner.team/stops/LHMhof-2"], ["https://tec.openplanner.team/stops/LHhmohe1", "https://tec.openplanner.team/stops/NL30akb"], ["https://tec.openplanner.team/stops/H1ha201a", "https://tec.openplanner.team/stops/H1ss351b"], ["https://tec.openplanner.team/stops/X359ama", "https://tec.openplanner.team/stops/X359amb"], ["https://tec.openplanner.team/stops/X623aea", "https://tec.openplanner.team/stops/X623afa"], ["https://tec.openplanner.team/stops/H4bw101a", "https://tec.openplanner.team/stops/H4bw101b"], ["https://tec.openplanner.team/stops/Bsmgbsa1", "https://tec.openplanner.team/stops/Bsmgres2"], ["https://tec.openplanner.team/stops/Canbruy1", "https://tec.openplanner.team/stops/Canfief1"], ["https://tec.openplanner.team/stops/N236ada", "https://tec.openplanner.team/stops/N254afb"], ["https://tec.openplanner.team/stops/LeLbutg2", "https://tec.openplanner.team/stops/LnIfrie2"], ["https://tec.openplanner.team/stops/N509aqa", "https://tec.openplanner.team/stops/N509aqb"], ["https://tec.openplanner.team/stops/LeLherz2", "https://tec.openplanner.team/stops/LkAkirc1"], ["https://tec.openplanner.team/stops/X808aib", "https://tec.openplanner.team/stops/X850amb"], ["https://tec.openplanner.team/stops/LhP25--2", "https://tec.openplanner.team/stops/LhPprum1"], ["https://tec.openplanner.team/stops/N514ana", "https://tec.openplanner.team/stops/N514anb"], ["https://tec.openplanner.team/stops/H4am101b", "https://tec.openplanner.team/stops/H4or115b"], ["https://tec.openplanner.team/stops/X617ahb", "https://tec.openplanner.team/stops/X696ala"], ["https://tec.openplanner.team/stops/LReeg--1", "https://tec.openplanner.team/stops/LRemorr2"], ["https://tec.openplanner.team/stops/N501hcc", "https://tec.openplanner.team/stops/N501mia"], ["https://tec.openplanner.team/stops/LHMthys1", "https://tec.openplanner.team/stops/LHMthys2"], ["https://tec.openplanner.team/stops/H4cp103a", "https://tec.openplanner.team/stops/H4lz164a"], ["https://tec.openplanner.team/stops/X812ajb", "https://tec.openplanner.team/stops/X812akb"], ["https://tec.openplanner.team/stops/Cmyplac1", "https://tec.openplanner.team/stops/Cmypost1"], ["https://tec.openplanner.team/stops/Bmelmqu1", "https://tec.openplanner.team/stops/Bsmgres1"], ["https://tec.openplanner.team/stops/H4pi131b", "https://tec.openplanner.team/stops/H4pi132b"], ["https://tec.openplanner.team/stops/Cmmcomb1", "https://tec.openplanner.team/stops/Cmmlong2"], ["https://tec.openplanner.team/stops/H4ka183b", "https://tec.openplanner.team/stops/H4ka392b"], ["https://tec.openplanner.team/stops/Lsmcime*", "https://tec.openplanner.team/stops/Lsmrcim2"], ["https://tec.openplanner.team/stops/Ldimont2", "https://tec.openplanner.team/stops/Lvefanc2"], ["https://tec.openplanner.team/stops/Bjodcdt1", "https://tec.openplanner.team/stops/NR10aab"], ["https://tec.openplanner.team/stops/N312aaa", "https://tec.openplanner.team/stops/N360aca"], ["https://tec.openplanner.team/stops/N566afa", "https://tec.openplanner.team/stops/N566afb"], ["https://tec.openplanner.team/stops/Cgzblob1", "https://tec.openplanner.team/stops/Cgzblob2"], ["https://tec.openplanner.team/stops/H2fa101a", "https://tec.openplanner.team/stops/H2fa101b"], ["https://tec.openplanner.team/stops/Bvxgpro1", "https://tec.openplanner.team/stops/Cglbras1"], ["https://tec.openplanner.team/stops/N201asa", "https://tec.openplanner.team/stops/N201ata"], ["https://tec.openplanner.team/stops/LBGroma1", "https://tec.openplanner.team/stops/LPUmang2"], ["https://tec.openplanner.team/stops/LnEfrie2", "https://tec.openplanner.team/stops/LsVgils2"], ["https://tec.openplanner.team/stops/H1so132a", "https://tec.openplanner.team/stops/H1so133a"], ["https://tec.openplanner.team/stops/X666ala", "https://tec.openplanner.team/stops/X666alb"], ["https://tec.openplanner.team/stops/N549afa", "https://tec.openplanner.team/stops/N549aib"], ["https://tec.openplanner.team/stops/N120abc", "https://tec.openplanner.team/stops/N120abd"], ["https://tec.openplanner.team/stops/LnN02--2", "https://tec.openplanner.team/stops/LsVlust1"], ["https://tec.openplanner.team/stops/H4bo116a", "https://tec.openplanner.team/stops/H4bo118b"], ["https://tec.openplanner.team/stops/X953afb", "https://tec.openplanner.team/stops/X954aea"], ["https://tec.openplanner.team/stops/N117aqb", "https://tec.openplanner.team/stops/N117bca"], ["https://tec.openplanner.team/stops/N150aib", "https://tec.openplanner.team/stops/N150ajb"], ["https://tec.openplanner.team/stops/Cmocime1", "https://tec.openplanner.team/stops/Cmorgof1"], ["https://tec.openplanner.team/stops/LLrbecc2", "https://tec.openplanner.team/stops/LLrvill1"], ["https://tec.openplanner.team/stops/N501cvb", "https://tec.openplanner.team/stops/N501cza"], ["https://tec.openplanner.team/stops/H4hx116a", "https://tec.openplanner.team/stops/H4hx123a"], ["https://tec.openplanner.team/stops/LeUmeye2", "https://tec.openplanner.team/stops/LrAwald1"], ["https://tec.openplanner.team/stops/Chthttr2", "https://tec.openplanner.team/stops/Cthalou1"], ["https://tec.openplanner.team/stops/Lchsart2", "https://tec.openplanner.team/stops/LHAheml1"], ["https://tec.openplanner.team/stops/LLg9---2", "https://tec.openplanner.team/stops/LLgcent1"], ["https://tec.openplanner.team/stops/H5at132a", "https://tec.openplanner.team/stops/H5at132b"], ["https://tec.openplanner.team/stops/Bezeksj3", "https://tec.openplanner.team/stops/Bneeace2"], ["https://tec.openplanner.team/stops/H4ma202b", "https://tec.openplanner.team/stops/H4ma203a"], ["https://tec.openplanner.team/stops/Bbcoben1", "https://tec.openplanner.team/stops/Bbcopre1"], ["https://tec.openplanner.team/stops/LHTbeau2", "https://tec.openplanner.team/stops/LHTmc--2"], ["https://tec.openplanner.team/stops/LBVclig2", "https://tec.openplanner.team/stops/LMAwavr1"], ["https://tec.openplanner.team/stops/N236aca", "https://tec.openplanner.team/stops/N254afb"], ["https://tec.openplanner.team/stops/Clrcomb2", "https://tec.openplanner.team/stops/Clrplac1"], ["https://tec.openplanner.team/stops/LTPbeau1", "https://tec.openplanner.team/stops/X542aha"], ["https://tec.openplanner.team/stops/X789aaa", "https://tec.openplanner.team/stops/X789acb"], ["https://tec.openplanner.team/stops/H1vt192a", "https://tec.openplanner.team/stops/H1vt196a"], ["https://tec.openplanner.team/stops/H4ef164a", "https://tec.openplanner.team/stops/H4fa125a"], ["https://tec.openplanner.team/stops/LFCscho2", "https://tec.openplanner.team/stops/LFCvoer2"], ["https://tec.openplanner.team/stops/Bpermon3", "https://tec.openplanner.team/stops/Bperpla2"], ["https://tec.openplanner.team/stops/X369acb", "https://tec.openplanner.team/stops/X370ada"], ["https://tec.openplanner.team/stops/X818arb", "https://tec.openplanner.team/stops/X818asc"], ["https://tec.openplanner.team/stops/LRchaie2", "https://tec.openplanner.team/stops/LRcjard2"], ["https://tec.openplanner.team/stops/H1ms273a", "https://tec.openplanner.team/stops/H1ms304a"], ["https://tec.openplanner.team/stops/LBEcomm1", "https://tec.openplanner.team/stops/LBEcomm2"], ["https://tec.openplanner.team/stops/N501dra", "https://tec.openplanner.team/stops/N501drb"], ["https://tec.openplanner.team/stops/NL77aja", "https://tec.openplanner.team/stops/NL77ajb"], ["https://tec.openplanner.team/stops/Lghleon1", "https://tec.openplanner.team/stops/Lghleon2"], ["https://tec.openplanner.team/stops/Ctisart1", "https://tec.openplanner.team/stops/H1tt107b"], ["https://tec.openplanner.team/stops/X618aha", "https://tec.openplanner.team/stops/X618ahb"], ["https://tec.openplanner.team/stops/X880adb", "https://tec.openplanner.team/stops/X880aea"], ["https://tec.openplanner.team/stops/Cracave1", "https://tec.openplanner.team/stops/Cracave2"], ["https://tec.openplanner.team/stops/Bcrbbou1", "https://tec.openplanner.team/stops/Bmsggra2"], ["https://tec.openplanner.team/stops/LEMgren*", "https://tec.openplanner.team/stops/LWOcomm2"], ["https://tec.openplanner.team/stops/N221aab", "https://tec.openplanner.team/stops/X394aca"], ["https://tec.openplanner.team/stops/X823aaa", "https://tec.openplanner.team/stops/X823aca"], ["https://tec.openplanner.team/stops/LSkyern1", "https://tec.openplanner.team/stops/LYechpl2"], ["https://tec.openplanner.team/stops/LLncime2", "https://tec.openplanner.team/stops/LLnpomp1"], ["https://tec.openplanner.team/stops/H4pq112a", "https://tec.openplanner.team/stops/H4pq119a"], ["https://tec.openplanner.team/stops/N101ajb", "https://tec.openplanner.team/stops/N151aib"], ["https://tec.openplanner.team/stops/LCLacbi1", "https://tec.openplanner.team/stops/LOccarr1"], ["https://tec.openplanner.team/stops/X898aoa", "https://tec.openplanner.team/stops/X995adc"], ["https://tec.openplanner.team/stops/X661aca", "https://tec.openplanner.team/stops/X661awb"], ["https://tec.openplanner.team/stops/N127aha", "https://tec.openplanner.team/stops/N127bha"], ["https://tec.openplanner.team/stops/X877aba", "https://tec.openplanner.team/stops/X877afa"], ["https://tec.openplanner.team/stops/Bnivjli1", "https://tec.openplanner.team/stops/Bnivzon2"], ["https://tec.openplanner.team/stops/N343abb", "https://tec.openplanner.team/stops/N343ana"], ["https://tec.openplanner.team/stops/X729aaa", "https://tec.openplanner.team/stops/X746alb"], ["https://tec.openplanner.team/stops/H5wo125b", "https://tec.openplanner.team/stops/H5wo136a"], ["https://tec.openplanner.team/stops/LNAbras5", "https://tec.openplanner.team/stops/LScgore2"], ["https://tec.openplanner.team/stops/Cjuheig1", "https://tec.openplanner.team/stops/Cjuvpla2"], ["https://tec.openplanner.team/stops/Baudtri1", "https://tec.openplanner.team/stops/Bixefra1"], ["https://tec.openplanner.team/stops/LSdcent1", "https://tec.openplanner.team/stops/LSdsar51"], ["https://tec.openplanner.team/stops/LLMeg--1", "https://tec.openplanner.team/stops/LLMeg--2"], ["https://tec.openplanner.team/stops/N533aca", "https://tec.openplanner.team/stops/N533aia"], ["https://tec.openplanner.team/stops/H4ch116b", "https://tec.openplanner.team/stops/H4ty278b"], ["https://tec.openplanner.team/stops/LSPClem2", "https://tec.openplanner.team/stops/LSPguer1"], ["https://tec.openplanner.team/stops/LLescie1", "https://tec.openplanner.team/stops/LLescie2"], ["https://tec.openplanner.team/stops/Llgsnap1", "https://tec.openplanner.team/stops/Llgwiar2"], ["https://tec.openplanner.team/stops/X829aaa", "https://tec.openplanner.team/stops/X831ada"], ["https://tec.openplanner.team/stops/X890acb", "https://tec.openplanner.team/stops/X890aga"], ["https://tec.openplanner.team/stops/Lbomc--4", "https://tec.openplanner.team/stops/Lbomc--8"], ["https://tec.openplanner.team/stops/LWEchat1", "https://tec.openplanner.team/stops/LWEhosp1"], ["https://tec.openplanner.team/stops/LFCvoge3", "https://tec.openplanner.team/stops/LFCvoge4"], ["https://tec.openplanner.team/stops/X671aga", "https://tec.openplanner.team/stops/X671agb"], ["https://tec.openplanner.team/stops/Bolggar1", "https://tec.openplanner.team/stops/Bolgsha1"], ["https://tec.openplanner.team/stops/H4qu230c", "https://tec.openplanner.team/stops/H4tg262a"], ["https://tec.openplanner.team/stops/H1ro132b", "https://tec.openplanner.team/stops/H1ro137a"], ["https://tec.openplanner.team/stops/LVParal2", "https://tec.openplanner.team/stops/LVPeg--2"], ["https://tec.openplanner.team/stops/Ccomiau2", "https://tec.openplanner.team/stops/Cvvgrsa1"], ["https://tec.openplanner.team/stops/X911aeb", "https://tec.openplanner.team/stops/X912aja"], ["https://tec.openplanner.team/stops/N136aab", "https://tec.openplanner.team/stops/N136aeb"], ["https://tec.openplanner.team/stops/X877aha", "https://tec.openplanner.team/stops/X877aia"], ["https://tec.openplanner.team/stops/Lsefore1", "https://tec.openplanner.team/stops/Lsefore2"], ["https://tec.openplanner.team/stops/LSokrin2", "https://tec.openplanner.team/stops/LtEnach1"], ["https://tec.openplanner.team/stops/Lfhmarn2", "https://tec.openplanner.team/stops/Lfhncha2"], ["https://tec.openplanner.team/stops/X659axa", "https://tec.openplanner.team/stops/X659axb"], ["https://tec.openplanner.team/stops/H1ha191a", "https://tec.openplanner.team/stops/H1ha191b"], ["https://tec.openplanner.team/stops/Lmopast2", "https://tec.openplanner.team/stops/Lmopave2"], ["https://tec.openplanner.team/stops/Ccisolv1", "https://tec.openplanner.team/stops/Cmtplac8"], ["https://tec.openplanner.team/stops/N232asb", "https://tec.openplanner.team/stops/N232brb"], ["https://tec.openplanner.team/stops/N501bca", "https://tec.openplanner.team/stops/N501mca"], ["https://tec.openplanner.team/stops/H4te259b", "https://tec.openplanner.team/stops/H4te261b"], ["https://tec.openplanner.team/stops/Lceprog1", "https://tec.openplanner.team/stops/Lcesart2"], ["https://tec.openplanner.team/stops/N385aac", "https://tec.openplanner.team/stops/N385aea"], ["https://tec.openplanner.team/stops/Llgcong1", "https://tec.openplanner.team/stops/Llgcont1"], ["https://tec.openplanner.team/stops/LlSbuch1", "https://tec.openplanner.team/stops/LlSbuch2"], ["https://tec.openplanner.team/stops/X766aga", "https://tec.openplanner.team/stops/X766agb"], ["https://tec.openplanner.team/stops/N501hja", "https://tec.openplanner.team/stops/N501hjd"], ["https://tec.openplanner.team/stops/X941adb", "https://tec.openplanner.team/stops/X942aga"], ["https://tec.openplanner.team/stops/X696aaa", "https://tec.openplanner.team/stops/X696aia"], ["https://tec.openplanner.team/stops/LrTbahn1", "https://tec.openplanner.team/stops/LrTbahn2"], ["https://tec.openplanner.team/stops/N117aga", "https://tec.openplanner.team/stops/N569alb"], ["https://tec.openplanner.team/stops/Lfhbail1", "https://tec.openplanner.team/stops/Lfhbail2"], ["https://tec.openplanner.team/stops/Lkinyst1", "https://tec.openplanner.team/stops/Lkinyst2"], ["https://tec.openplanner.team/stops/LmAaldr1", "https://tec.openplanner.team/stops/LmAaldr2"], ["https://tec.openplanner.team/stops/Cflbrun2", "https://tec.openplanner.team/stops/Cflsncb1"], ["https://tec.openplanner.team/stops/N555aca", "https://tec.openplanner.team/stops/N555acb"], ["https://tec.openplanner.team/stops/Cgrcent1", "https://tec.openplanner.team/stops/Cgrgend1"], ["https://tec.openplanner.team/stops/Bsaumlk3", "https://tec.openplanner.team/stops/Bsauvmo1"], ["https://tec.openplanner.team/stops/LEMeg--1", "https://tec.openplanner.team/stops/LEMfort1"], ["https://tec.openplanner.team/stops/Bmanati1", "https://tec.openplanner.team/stops/Bsenbmc2"], ["https://tec.openplanner.team/stops/Cchicet1", "https://tec.openplanner.team/stops/Cchtour1"], ["https://tec.openplanner.team/stops/X759adb", "https://tec.openplanner.team/stops/X759afb"], ["https://tec.openplanner.team/stops/H4wi161b", "https://tec.openplanner.team/stops/H5pe139a"], ["https://tec.openplanner.team/stops/Beclron2", "https://tec.openplanner.team/stops/Broncli2"], ["https://tec.openplanner.team/stops/H4fl115a", "https://tec.openplanner.team/stops/H4lp119a"], ["https://tec.openplanner.team/stops/Lpecime2", "https://tec.openplanner.team/stops/Lpeprev1"], ["https://tec.openplanner.team/stops/LHYlinc1", "https://tec.openplanner.team/stops/LHYwach1"], ["https://tec.openplanner.team/stops/X639akb", "https://tec.openplanner.team/stops/X639akc"], ["https://tec.openplanner.team/stops/Cfmltas2", "https://tec.openplanner.team/stops/H2tz117b"], ["https://tec.openplanner.team/stops/LnN02--1", "https://tec.openplanner.team/stops/LnNzent2"], ["https://tec.openplanner.team/stops/Csycant1", "https://tec.openplanner.team/stops/Csysans2"], ["https://tec.openplanner.team/stops/Lchacie2", "https://tec.openplanner.team/stops/Lchec--2"], ["https://tec.openplanner.team/stops/X791acb", "https://tec.openplanner.team/stops/X791ada"], ["https://tec.openplanner.team/stops/LhGkirc2", "https://tec.openplanner.team/stops/LhGkirc3"], ["https://tec.openplanner.team/stops/H4er125b", "https://tec.openplanner.team/stops/H4gu110a"], ["https://tec.openplanner.team/stops/X731ama", "https://tec.openplanner.team/stops/X731amb"], ["https://tec.openplanner.team/stops/LBAcere1", "https://tec.openplanner.team/stops/LHOgymn1"], ["https://tec.openplanner.team/stops/X547aqa", "https://tec.openplanner.team/stops/X782aca"], ["https://tec.openplanner.team/stops/X806aka", "https://tec.openplanner.team/stops/X806akb"], ["https://tec.openplanner.team/stops/Bblagar6", "https://tec.openplanner.team/stops/Bblagard"], ["https://tec.openplanner.team/stops/X637alb", "https://tec.openplanner.team/stops/X637ama"], ["https://tec.openplanner.team/stops/Llgboux2", "https://tec.openplanner.team/stops/Lvtboux1"], ["https://tec.openplanner.team/stops/Bbsicul2", "https://tec.openplanner.team/stops/Bbsihau2"], ["https://tec.openplanner.team/stops/H1ba107b", "https://tec.openplanner.team/stops/H1ba113a"], ["https://tec.openplanner.team/stops/X601cab", "https://tec.openplanner.team/stops/X601dea"], ["https://tec.openplanner.team/stops/X872abb", "https://tec.openplanner.team/stops/X872ada"], ["https://tec.openplanner.team/stops/Cwfcule2", "https://tec.openplanner.team/stops/Cwflouv4"], ["https://tec.openplanner.team/stops/H2hg149b", "https://tec.openplanner.team/stops/H2mi123b"], ["https://tec.openplanner.team/stops/Baegd742", "https://tec.openplanner.team/stops/NB33aja"], ["https://tec.openplanner.team/stops/H4ga159a", "https://tec.openplanner.team/stops/H4vz369a"], ["https://tec.openplanner.team/stops/N525afa", "https://tec.openplanner.team/stops/N525ala"], ["https://tec.openplanner.team/stops/LCvneuf1", "https://tec.openplanner.team/stops/LCvoufn2"], ["https://tec.openplanner.team/stops/LVIeg--4", "https://tec.openplanner.team/stops/LVIlore1"], ["https://tec.openplanner.team/stops/N301agb", "https://tec.openplanner.team/stops/N340ahb"], ["https://tec.openplanner.team/stops/Cjudevo1", "https://tec.openplanner.team/stops/Cjuecho1"], ["https://tec.openplanner.team/stops/LTIp%C3%A9pi1", "https://tec.openplanner.team/stops/LTIpres2"], ["https://tec.openplanner.team/stops/H4va232b", "https://tec.openplanner.team/stops/H4vd230b"], ["https://tec.openplanner.team/stops/LHhchau1", "https://tec.openplanner.team/stops/N507ada"], ["https://tec.openplanner.team/stops/Bsamlon2", "https://tec.openplanner.team/stops/Bwagdeb2"], ["https://tec.openplanner.team/stops/X808ahb", "https://tec.openplanner.team/stops/X808aia"], ["https://tec.openplanner.team/stops/X601bbd", "https://tec.openplanner.team/stops/X601bbf"], ["https://tec.openplanner.team/stops/N331afb", "https://tec.openplanner.team/stops/N331agb"], ["https://tec.openplanner.team/stops/N534bnh", "https://tec.openplanner.team/stops/N534bvb"], ["https://tec.openplanner.team/stops/LHUeuro1", "https://tec.openplanner.team/stops/LHUeuro4"], ["https://tec.openplanner.team/stops/X802apb", "https://tec.openplanner.team/stops/X882ahb"], ["https://tec.openplanner.team/stops/X617aha", "https://tec.openplanner.team/stops/X617aia"], ["https://tec.openplanner.team/stops/LNEbo472", "https://tec.openplanner.team/stops/LNEbois2"], ["https://tec.openplanner.team/stops/Crajasm1", "https://tec.openplanner.team/stops/Crajasm3"], ["https://tec.openplanner.team/stops/X896aea", "https://tec.openplanner.team/stops/X896aga"], ["https://tec.openplanner.team/stops/Cgoobse1", "https://tec.openplanner.team/stops/Cjucar01"], ["https://tec.openplanner.team/stops/H4ca120b", "https://tec.openplanner.team/stops/H4ca122a"], ["https://tec.openplanner.team/stops/H2hg157c", "https://tec.openplanner.team/stops/H2hg158b"], ["https://tec.openplanner.team/stops/Ljucaba1", "https://tec.openplanner.team/stops/Ljumart1"], ["https://tec.openplanner.team/stops/LGrfont1", "https://tec.openplanner.team/stops/LHDmc--1"], ["https://tec.openplanner.team/stops/X224aeb", "https://tec.openplanner.team/stops/X224afb"], ["https://tec.openplanner.team/stops/H4wn124d", "https://tec.openplanner.team/stops/H4wn131a"], ["https://tec.openplanner.team/stops/N203aba", "https://tec.openplanner.team/stops/N203acb"], ["https://tec.openplanner.team/stops/N540aea", "https://tec.openplanner.team/stops/N578aca"], ["https://tec.openplanner.team/stops/N539aga", "https://tec.openplanner.team/stops/N539ahb"], ["https://tec.openplanner.team/stops/N254aca", "https://tec.openplanner.team/stops/N254ada"], ["https://tec.openplanner.team/stops/H1ms283a", "https://tec.openplanner.team/stops/H1ms915b"], ["https://tec.openplanner.team/stops/X575aib", "https://tec.openplanner.team/stops/X576aib"], ["https://tec.openplanner.team/stops/H1ol145b", "https://tec.openplanner.team/stops/H5is171b"], ["https://tec.openplanner.team/stops/X839aaa", "https://tec.openplanner.team/stops/X839abc"], ["https://tec.openplanner.team/stops/LwYboui2", "https://tec.openplanner.team/stops/LwYkreu4"], ["https://tec.openplanner.team/stops/N501avb", "https://tec.openplanner.team/stops/N501axb"], ["https://tec.openplanner.team/stops/Cgonvro2", "https://tec.openplanner.team/stops/Ctmmonu2"], ["https://tec.openplanner.team/stops/N543bgc", "https://tec.openplanner.team/stops/N543btb"], ["https://tec.openplanner.team/stops/Ltihala1", "https://tec.openplanner.team/stops/Ltihala2"], ["https://tec.openplanner.team/stops/Lgrclin3", "https://tec.openplanner.team/stops/Lgrorch2"], ["https://tec.openplanner.team/stops/Cfldand1", "https://tec.openplanner.team/stops/Cflmarc2"], ["https://tec.openplanner.team/stops/Lpecaze1", "https://tec.openplanner.team/stops/Lpeprev2"], ["https://tec.openplanner.team/stops/H1mj123b", "https://tec.openplanner.team/stops/H1ni319a"], ["https://tec.openplanner.team/stops/NL72aab", "https://tec.openplanner.team/stops/NL72ada"], ["https://tec.openplanner.team/stops/X850aja", "https://tec.openplanner.team/stops/X850aka"], ["https://tec.openplanner.team/stops/H2bh108a", "https://tec.openplanner.team/stops/H2fa112a"], ["https://tec.openplanner.team/stops/X224afb", "https://tec.openplanner.team/stops/X394aab"], ["https://tec.openplanner.team/stops/LLSba6-2", "https://tec.openplanner.team/stops/LLSba9-1"], ["https://tec.openplanner.team/stops/Cctbois4", "https://tec.openplanner.team/stops/Cctlimi1"], ["https://tec.openplanner.team/stops/Crg3arb1", "https://tec.openplanner.team/stops/Cthbeff1"], ["https://tec.openplanner.team/stops/Lfhsoux2", "https://tec.openplanner.team/stops/Lmlcite*"], ["https://tec.openplanner.team/stops/N562aea", "https://tec.openplanner.team/stops/N562aeb"], ["https://tec.openplanner.team/stops/Lghgros1", "https://tec.openplanner.team/stops/Lghmaha3"], ["https://tec.openplanner.team/stops/H1so135a", "https://tec.openplanner.team/stops/H1so135c"], ["https://tec.openplanner.team/stops/Bcrnncb1", "https://tec.openplanner.team/stops/Bcrnncb2"], ["https://tec.openplanner.team/stops/X725aca", "https://tec.openplanner.team/stops/X725aga"], ["https://tec.openplanner.team/stops/X618aca", "https://tec.openplanner.team/stops/X619acb"], ["https://tec.openplanner.team/stops/Bwatfau1", "https://tec.openplanner.team/stops/Bwatmbv1"], ["https://tec.openplanner.team/stops/Bnivfra2", "https://tec.openplanner.team/stops/Bnivrsh1"], ["https://tec.openplanner.team/stops/Bsdabja1", "https://tec.openplanner.team/stops/Bsdabja2"], ["https://tec.openplanner.team/stops/X390aha", "https://tec.openplanner.team/stops/X999aaa"], ["https://tec.openplanner.team/stops/Bolppla2", "https://tec.openplanner.team/stops/Bolppla4"], ["https://tec.openplanner.team/stops/LFypont2", "https://tec.openplanner.team/stops/LFyWarc2"], ["https://tec.openplanner.team/stops/H1mb130a", "https://tec.openplanner.team/stops/H1mx122a"], ["https://tec.openplanner.team/stops/LPRcasi2", "https://tec.openplanner.team/stops/LTRcite1"], ["https://tec.openplanner.team/stops/Lcebarr2", "https://tec.openplanner.team/stops/Lcepont6"], ["https://tec.openplanner.team/stops/H1mb166a", "https://tec.openplanner.team/stops/H1mb166b"], ["https://tec.openplanner.team/stops/Ccucroi1", "https://tec.openplanner.team/stops/Ccucroi2"], ["https://tec.openplanner.team/stops/Llgdart4", "https://tec.openplanner.team/stops/Llgdart5"], ["https://tec.openplanner.team/stops/Bblaaca1", "https://tec.openplanner.team/stops/Bblaqsj1"], ["https://tec.openplanner.team/stops/H1cu112a", "https://tec.openplanner.team/stops/H1cu127b"], ["https://tec.openplanner.team/stops/Bquebre2", "https://tec.openplanner.team/stops/Bquebth3"], ["https://tec.openplanner.team/stops/X731aca", "https://tec.openplanner.team/stops/X731aga"], ["https://tec.openplanner.team/stops/X740acb", "https://tec.openplanner.team/stops/X740adb"], ["https://tec.openplanner.team/stops/X766adb", "https://tec.openplanner.team/stops/X766ajb"], ["https://tec.openplanner.team/stops/LSUhage1", "https://tec.openplanner.team/stops/LSUhage2"], ["https://tec.openplanner.team/stops/LHAstal1", "https://tec.openplanner.team/stops/Lviweri1"], ["https://tec.openplanner.team/stops/Lveherl1", "https://tec.openplanner.team/stops/Lvehopi5"], ["https://tec.openplanner.team/stops/LbHzent2", "https://tec.openplanner.team/stops/LrUbahn2"], ["https://tec.openplanner.team/stops/LNCgene2", "https://tec.openplanner.team/stops/LNCneuv3"], ["https://tec.openplanner.team/stops/Lbhsion1", "https://tec.openplanner.team/stops/Lbhsion2"], ["https://tec.openplanner.team/stops/H4lh118a", "https://tec.openplanner.team/stops/H5wo126a"], ["https://tec.openplanner.team/stops/LAWkone1", "https://tec.openplanner.team/stops/Llofort1"], ["https://tec.openplanner.team/stops/Bblasmo1", "https://tec.openplanner.team/stops/Bblasmo2"], ["https://tec.openplanner.team/stops/H1hc150a", "https://tec.openplanner.team/stops/H1hc151a"], ["https://tec.openplanner.team/stops/Cmxpleg2", "https://tec.openplanner.team/stops/NC28aga"], ["https://tec.openplanner.team/stops/LHAcite2", "https://tec.openplanner.team/stops/LVIvert1"], ["https://tec.openplanner.team/stops/Llgfont2", "https://tec.openplanner.team/stops/Llghull2"], ["https://tec.openplanner.team/stops/X942aba", "https://tec.openplanner.team/stops/X942aea"], ["https://tec.openplanner.team/stops/N323acb", "https://tec.openplanner.team/stops/N387aha"], ["https://tec.openplanner.team/stops/LCvneuv4", "https://tec.openplanner.team/stops/LWbburn2"], ["https://tec.openplanner.team/stops/X721aka", "https://tec.openplanner.team/stops/X721akb"], ["https://tec.openplanner.team/stops/N513adb", "https://tec.openplanner.team/stops/N513aea"], ["https://tec.openplanner.team/stops/H2ha127b", "https://tec.openplanner.team/stops/H2ha128a"], ["https://tec.openplanner.team/stops/H1og131a", "https://tec.openplanner.team/stops/H1og134a"], ["https://tec.openplanner.team/stops/Lrebriq1", "https://tec.openplanner.team/stops/Lrecite1"], ["https://tec.openplanner.team/stops/LmR90--2", "https://tec.openplanner.team/stops/LmRh%C3%B6fe2"], ["https://tec.openplanner.team/stops/N501jea", "https://tec.openplanner.team/stops/N501jkb"], ["https://tec.openplanner.team/stops/Lstauna2", "https://tec.openplanner.team/stops/Lstetud2"], ["https://tec.openplanner.team/stops/H4os220a", "https://tec.openplanner.team/stops/H4os220b"], ["https://tec.openplanner.team/stops/Cplbbro1", "https://tec.openplanner.team/stops/Cplbbro2"], ["https://tec.openplanner.team/stops/H4lz117a", "https://tec.openplanner.team/stops/H4lz156b"], ["https://tec.openplanner.team/stops/N525abb", "https://tec.openplanner.team/stops/N525aua"], ["https://tec.openplanner.team/stops/H1el134b", "https://tec.openplanner.team/stops/H1wi148b"], ["https://tec.openplanner.team/stops/H1el133a", "https://tec.openplanner.team/stops/H1el138a"], ["https://tec.openplanner.team/stops/Lcceg--2", "https://tec.openplanner.team/stops/Lfhchaf*"], ["https://tec.openplanner.team/stops/X718ada", "https://tec.openplanner.team/stops/X733agb"], ["https://tec.openplanner.team/stops/H1ht126b", "https://tec.openplanner.team/stops/H1te178b"], ["https://tec.openplanner.team/stops/Cmqegl2", "https://tec.openplanner.team/stops/X611aca"], ["https://tec.openplanner.team/stops/H5gr135a", "https://tec.openplanner.team/stops/H5gr135b"], ["https://tec.openplanner.team/stops/X641awb", "https://tec.openplanner.team/stops/X641axa"], ["https://tec.openplanner.team/stops/H3so158a", "https://tec.openplanner.team/stops/H3so169b"], ["https://tec.openplanner.team/stops/NH01abc", "https://tec.openplanner.team/stops/NH01atb"], ["https://tec.openplanner.team/stops/Llghaut2", "https://tec.openplanner.team/stops/Llgwild6"], ["https://tec.openplanner.team/stops/Bblacar1", "https://tec.openplanner.team/stops/Bwaunop2"], ["https://tec.openplanner.team/stops/Ljegare1", "https://tec.openplanner.team/stops/Ljekess1"], ["https://tec.openplanner.team/stops/H1gn151b", "https://tec.openplanner.team/stops/H1gq153b"], ["https://tec.openplanner.team/stops/H4fo119a", "https://tec.openplanner.team/stops/H4fo119b"], ["https://tec.openplanner.team/stops/H4ty292a", "https://tec.openplanner.team/stops/H4ty302b"], ["https://tec.openplanner.team/stops/Bwatran1", "https://tec.openplanner.team/stops/Bwatras2"], ["https://tec.openplanner.team/stops/LoUwelc1", "https://tec.openplanner.team/stops/LoUwelc2"], ["https://tec.openplanner.team/stops/LGorysa2", "https://tec.openplanner.team/stops/LNEbois2"], ["https://tec.openplanner.team/stops/H4bs111a", "https://tec.openplanner.team/stops/H4bs113a"], ["https://tec.openplanner.team/stops/LaAmise1", "https://tec.openplanner.team/stops/LaAmise2"], ["https://tec.openplanner.team/stops/Csoforr4", "https://tec.openplanner.team/stops/Csoperi2"], ["https://tec.openplanner.team/stops/Bgoesch4", "https://tec.openplanner.team/stops/Bgoewat2"], ["https://tec.openplanner.team/stops/H1he105b", "https://tec.openplanner.team/stops/H1mh114a"], ["https://tec.openplanner.team/stops/LsVgrun1", "https://tec.openplanner.team/stops/LsVrodt2"], ["https://tec.openplanner.team/stops/H1qy136a", "https://tec.openplanner.team/stops/H1qy136b"], ["https://tec.openplanner.team/stops/H4ty293a", "https://tec.openplanner.team/stops/H4ty354a"], ["https://tec.openplanner.team/stops/LWZdtec1", "https://tec.openplanner.team/stops/LWZdtec2"], ["https://tec.openplanner.team/stops/LTPreco2", "https://tec.openplanner.team/stops/LTPsalm1"], ["https://tec.openplanner.team/stops/LSseg--2", "https://tec.openplanner.team/stops/N506bua"], ["https://tec.openplanner.team/stops/N501arb", "https://tec.openplanner.team/stops/N501baa"], ["https://tec.openplanner.team/stops/LSJ38--2", "https://tec.openplanner.team/stops/LSJgrae1"], ["https://tec.openplanner.team/stops/LSChane1", "https://tec.openplanner.team/stops/LVEtomb2"], ["https://tec.openplanner.team/stops/LaAdiep1", "https://tec.openplanner.team/stops/LaAlinz1"], ["https://tec.openplanner.team/stops/Lgrbonn1", "https://tec.openplanner.team/stops/Llgsimo1"], ["https://tec.openplanner.team/stops/LMHmeha2", "https://tec.openplanner.team/stops/LMHoha-1"], ["https://tec.openplanner.team/stops/Cvlbvir2", "https://tec.openplanner.team/stops/Cvlpeau1"], ["https://tec.openplanner.team/stops/N423aga", "https://tec.openplanner.team/stops/N423agb"], ["https://tec.openplanner.team/stops/Bhmmtou1", "https://tec.openplanner.team/stops/Bhmmtou2"], ["https://tec.openplanner.team/stops/X947aaa", "https://tec.openplanner.team/stops/X948aca"], ["https://tec.openplanner.team/stops/LSNecol3", "https://tec.openplanner.team/stops/LXHfond3"], ["https://tec.openplanner.team/stops/LCUjonc1", "https://tec.openplanner.team/stops/LCUjonc2"], ["https://tec.openplanner.team/stops/LHHgare1", "https://tec.openplanner.team/stops/LHHpt--3"], ["https://tec.openplanner.team/stops/H4ty287a", "https://tec.openplanner.team/stops/H4ty358b"], ["https://tec.openplanner.team/stops/Buccron1", "https://tec.openplanner.team/stops/Buccron2"], ["https://tec.openplanner.team/stops/N308aca", "https://tec.openplanner.team/stops/N308acb"], ["https://tec.openplanner.team/stops/N501gcb", "https://tec.openplanner.team/stops/N501leb"], ["https://tec.openplanner.team/stops/X602aea", "https://tec.openplanner.team/stops/X602afa"], ["https://tec.openplanner.team/stops/LLagert*", "https://tec.openplanner.team/stops/LLaover3"], ["https://tec.openplanner.team/stops/LNCecdo1", "https://tec.openplanner.team/stops/Lseathe2"], ["https://tec.openplanner.team/stops/Cfrcham2", "https://tec.openplanner.team/stops/Cmeptmi6"], ["https://tec.openplanner.team/stops/Cmqbasv2", "https://tec.openplanner.team/stops/Cmqegl1"], ["https://tec.openplanner.team/stops/X636aza", "https://tec.openplanner.team/stops/X636bbb"], ["https://tec.openplanner.team/stops/X904aia", "https://tec.openplanner.team/stops/X904aib"], ["https://tec.openplanner.team/stops/N501cna", "https://tec.openplanner.team/stops/N501eoa"], ["https://tec.openplanner.team/stops/LDmdomm1", "https://tec.openplanner.team/stops/LDmwarf1"], ["https://tec.openplanner.team/stops/H1pa104b", "https://tec.openplanner.team/stops/H1pa109a"], ["https://tec.openplanner.team/stops/X992aab", "https://tec.openplanner.team/stops/X992aad"], ["https://tec.openplanner.team/stops/N553alb", "https://tec.openplanner.team/stops/N553amb"], ["https://tec.openplanner.team/stops/N562aka", "https://tec.openplanner.team/stops/N562alc"], ["https://tec.openplanner.team/stops/H4ty282b", "https://tec.openplanner.team/stops/H4ty339b"], ["https://tec.openplanner.team/stops/LeUcroi2", "https://tec.openplanner.team/stops/LeUwetz1"], ["https://tec.openplanner.team/stops/N506bsa", "https://tec.openplanner.team/stops/N506bsb"], ["https://tec.openplanner.team/stops/Cgxchea1", "https://tec.openplanner.team/stops/Cgxchea2"], ["https://tec.openplanner.team/stops/H4br109a", "https://tec.openplanner.team/stops/H4hn114a"], ["https://tec.openplanner.team/stops/Bnilegl1", "https://tec.openplanner.team/stops/Bnilspe4"], ["https://tec.openplanner.team/stops/H4mo137b", "https://tec.openplanner.team/stops/H4mo191a"], ["https://tec.openplanner.team/stops/Lcaboun3", "https://tec.openplanner.team/stops/Lcacaps1"], ["https://tec.openplanner.team/stops/LATmals1", "https://tec.openplanner.team/stops/LHUfali1"], ["https://tec.openplanner.team/stops/N517adb", "https://tec.openplanner.team/stops/N517aga"], ["https://tec.openplanner.team/stops/N874aba", "https://tec.openplanner.team/stops/N874aeb"], ["https://tec.openplanner.team/stops/Blempuc1", "https://tec.openplanner.team/stops/Blempuc2"], ["https://tec.openplanner.team/stops/Cchorle1", "https://tec.openplanner.team/stops/Cchprun1"], ["https://tec.openplanner.team/stops/Barqpla1", "https://tec.openplanner.team/stops/Bfelgar2"], ["https://tec.openplanner.team/stops/Laghetr1", "https://tec.openplanner.team/stops/Lkithie2"], ["https://tec.openplanner.team/stops/Bblacea1", "https://tec.openplanner.team/stops/Bblaegl2"], ["https://tec.openplanner.team/stops/LLrchat1", "https://tec.openplanner.team/stops/LNOning2"], ["https://tec.openplanner.team/stops/X939aba", "https://tec.openplanner.team/stops/X939adb"], ["https://tec.openplanner.team/stops/X601bmb", "https://tec.openplanner.team/stops/X612aba"], ["https://tec.openplanner.team/stops/LHggeer2", "https://tec.openplanner.team/stops/LHgpost1"], ["https://tec.openplanner.team/stops/N383aca", "https://tec.openplanner.team/stops/N383aea"], ["https://tec.openplanner.team/stops/X717aga", "https://tec.openplanner.team/stops/X717agc"], ["https://tec.openplanner.team/stops/X601blb", "https://tec.openplanner.team/stops/X602aca"], ["https://tec.openplanner.team/stops/LFNmonu2", "https://tec.openplanner.team/stops/LFNtill1"], ["https://tec.openplanner.team/stops/LJEpaqu2", "https://tec.openplanner.team/stops/LSkkeri1"], ["https://tec.openplanner.team/stops/Bblacim2", "https://tec.openplanner.team/stops/Bblagard"], ["https://tec.openplanner.team/stops/X657abb", "https://tec.openplanner.team/stops/X657aia"], ["https://tec.openplanner.team/stops/X999alb", "https://tec.openplanner.team/stops/X999ana"], ["https://tec.openplanner.team/stops/LOuilc-*", "https://tec.openplanner.team/stops/LOuplac1"], ["https://tec.openplanner.team/stops/NL76alc", "https://tec.openplanner.team/stops/NL76bcb"], ["https://tec.openplanner.team/stops/H1gq153a", "https://tec.openplanner.team/stops/H1sy145a"], ["https://tec.openplanner.team/stops/Crccamp1", "https://tec.openplanner.team/stops/Crcgmah2"], ["https://tec.openplanner.team/stops/Lbocime1", "https://tec.openplanner.team/stops/Lbocime2"], ["https://tec.openplanner.team/stops/LBslama2", "https://tec.openplanner.team/stops/LEnchan1"], ["https://tec.openplanner.team/stops/Bcer4br5", "https://tec.openplanner.team/stops/Bottcpl2"], ["https://tec.openplanner.team/stops/H1ht133b", "https://tec.openplanner.team/stops/H1ht135b"], ["https://tec.openplanner.team/stops/N134afa", "https://tec.openplanner.team/stops/N152abe"], ["https://tec.openplanner.team/stops/N137aea", "https://tec.openplanner.team/stops/N137afa"], ["https://tec.openplanner.team/stops/LDLgran2", "https://tec.openplanner.team/stops/LHYnoid2"], ["https://tec.openplanner.team/stops/N516ana", "https://tec.openplanner.team/stops/N516aoa"], ["https://tec.openplanner.team/stops/H1sy143d", "https://tec.openplanner.team/stops/H1sy150a"], ["https://tec.openplanner.team/stops/H4ty298a", "https://tec.openplanner.team/stops/H4ty352a"], ["https://tec.openplanner.team/stops/Cthhvil1", "https://tec.openplanner.team/stops/Cthvbas3"], ["https://tec.openplanner.team/stops/X921ahb", "https://tec.openplanner.team/stops/X921aja"], ["https://tec.openplanner.team/stops/LFPkape2", "https://tec.openplanner.team/stops/LFPkape3"], ["https://tec.openplanner.team/stops/N576ajb", "https://tec.openplanner.team/stops/N576akb"], ["https://tec.openplanner.team/stops/H4hx122a", "https://tec.openplanner.team/stops/H4hx122b"], ["https://tec.openplanner.team/stops/H4ta121a", "https://tec.openplanner.team/stops/H4ta131b"], ["https://tec.openplanner.team/stops/X595aca", "https://tec.openplanner.team/stops/X595acb"], ["https://tec.openplanner.team/stops/X999aba", "https://tec.openplanner.team/stops/X999acc"], ["https://tec.openplanner.team/stops/H4ru235a", "https://tec.openplanner.team/stops/H4ru245a"], ["https://tec.openplanner.team/stops/X796aaa", "https://tec.openplanner.team/stops/X796aab"], ["https://tec.openplanner.team/stops/Bwlhswc1", "https://tec.openplanner.team/stops/Bwlhswc2"], ["https://tec.openplanner.team/stops/X664aaa", "https://tec.openplanner.team/stops/X664aab"], ["https://tec.openplanner.team/stops/Cliburl1", "https://tec.openplanner.team/stops/Cliburl2"], ["https://tec.openplanner.team/stops/Lagresi2", "https://tec.openplanner.team/stops/Lagvern1"], ["https://tec.openplanner.team/stops/Bnstmig1", "https://tec.openplanner.team/stops/Bnstver1"], ["https://tec.openplanner.team/stops/Ccohotv2", "https://tec.openplanner.team/stops/Ccohuli1"], ["https://tec.openplanner.team/stops/Llgbavi1", "https://tec.openplanner.team/stops/Llgbavi2"], ["https://tec.openplanner.team/stops/X801aza", "https://tec.openplanner.team/stops/X801cna"], ["https://tec.openplanner.team/stops/H4av106d", "https://tec.openplanner.team/stops/H4cr111a"], ["https://tec.openplanner.team/stops/N550abd", "https://tec.openplanner.team/stops/N550acc"], ["https://tec.openplanner.team/stops/LDmdomm1", "https://tec.openplanner.team/stops/LSGmale2"], ["https://tec.openplanner.team/stops/Llgbago2", "https://tec.openplanner.team/stops/Llgmass2"], ["https://tec.openplanner.team/stops/H4ty291a", "https://tec.openplanner.team/stops/H4ty347a"], ["https://tec.openplanner.team/stops/Bettars2", "https://tec.openplanner.team/stops/Bixefra1"], ["https://tec.openplanner.team/stops/LLYtir-1", "https://tec.openplanner.team/stops/LLYtir-2"], ["https://tec.openplanner.team/stops/Cflathe1", "https://tec.openplanner.team/stops/Cflathe2"], ["https://tec.openplanner.team/stops/Cjufagn4", "https://tec.openplanner.team/stops/Cjuledo2"], ["https://tec.openplanner.team/stops/Cmgslo1", "https://tec.openplanner.team/stops/Cmgslo2"], ["https://tec.openplanner.team/stops/N113aba", "https://tec.openplanner.team/stops/N113abb"], ["https://tec.openplanner.team/stops/Cprbevu1", "https://tec.openplanner.team/stops/Cprcalv2"], ["https://tec.openplanner.team/stops/N543bxa", "https://tec.openplanner.team/stops/N543byb"], ["https://tec.openplanner.team/stops/N166aab", "https://tec.openplanner.team/stops/N167agb"], ["https://tec.openplanner.team/stops/H1ma230a", "https://tec.openplanner.team/stops/H1ma237a"], ["https://tec.openplanner.team/stops/Cthoues1", "https://tec.openplanner.team/stops/Cthoues2"], ["https://tec.openplanner.team/stops/N149ahc", "https://tec.openplanner.team/stops/N149alb"], ["https://tec.openplanner.team/stops/X952agb", "https://tec.openplanner.team/stops/X952aia"], ["https://tec.openplanner.team/stops/X602aqa", "https://tec.openplanner.team/stops/X602aqb"], ["https://tec.openplanner.team/stops/N543axb", "https://tec.openplanner.team/stops/N543aya"], ["https://tec.openplanner.team/stops/H4av105b", "https://tec.openplanner.team/stops/H4av106b"], ["https://tec.openplanner.team/stops/N528aaa", "https://tec.openplanner.team/stops/N528aba"], ["https://tec.openplanner.team/stops/Bnivphm1", "https://tec.openplanner.team/stops/Bnivvcw1"], ["https://tec.openplanner.team/stops/X836aca", "https://tec.openplanner.team/stops/X836aib"], ["https://tec.openplanner.team/stops/X633ajc", "https://tec.openplanner.team/stops/X654aaa"], ["https://tec.openplanner.team/stops/N101aic", "https://tec.openplanner.team/stops/N101aoa"], ["https://tec.openplanner.team/stops/N539acb", "https://tec.openplanner.team/stops/N539aea"], ["https://tec.openplanner.team/stops/N538aob", "https://tec.openplanner.team/stops/N538asa"], ["https://tec.openplanner.team/stops/LLUtrol2", "https://tec.openplanner.team/stops/LLUvent2"], ["https://tec.openplanner.team/stops/H1wa141a", "https://tec.openplanner.team/stops/H1wa145b"], ["https://tec.openplanner.team/stops/X608aza", "https://tec.openplanner.team/stops/X627aaa"], ["https://tec.openplanner.team/stops/Lsebeau1", "https://tec.openplanner.team/stops/Lsesabl1"], ["https://tec.openplanner.team/stops/X626aba", "https://tec.openplanner.team/stops/X626anb"], ["https://tec.openplanner.team/stops/Lcepont5", "https://tec.openplanner.team/stops/Lcepont6"], ["https://tec.openplanner.team/stops/H2ll187a", "https://tec.openplanner.team/stops/H2ll199a"], ["https://tec.openplanner.team/stops/H4lz125b", "https://tec.openplanner.team/stops/H4lz155a"], ["https://tec.openplanner.team/stops/Cjufauv2", "https://tec.openplanner.team/stops/Cjuspin1"], ["https://tec.openplanner.team/stops/LLbcafe1", "https://tec.openplanner.team/stops/LLbrecu2"], ["https://tec.openplanner.team/stops/Buccmer2", "https://tec.openplanner.team/stops/Buccobs1"], ["https://tec.openplanner.team/stops/H1me113a", "https://tec.openplanner.team/stops/H1me118b"], ["https://tec.openplanner.team/stops/N229aca", "https://tec.openplanner.team/stops/N229adb"], ["https://tec.openplanner.team/stops/H1ro130b", "https://tec.openplanner.team/stops/H1ro141a"], ["https://tec.openplanner.team/stops/Bezebru2", "https://tec.openplanner.team/stops/Bneelaa2"], ["https://tec.openplanner.team/stops/X757akb", "https://tec.openplanner.team/stops/X779aba"], ["https://tec.openplanner.team/stops/Cchdaup1", "https://tec.openplanner.team/stops/Cchvhau1"], ["https://tec.openplanner.team/stops/N229apa", "https://tec.openplanner.team/stops/N229apb"], ["https://tec.openplanner.team/stops/X734aia", "https://tec.openplanner.team/stops/X734ara"], ["https://tec.openplanner.team/stops/Cwfdame2", "https://tec.openplanner.team/stops/Cwfzola1"], ["https://tec.openplanner.team/stops/X917adb", "https://tec.openplanner.team/stops/X917aea"], ["https://tec.openplanner.team/stops/N542acc", "https://tec.openplanner.team/stops/N542amb"], ["https://tec.openplanner.team/stops/Cvlstan1", "https://tec.openplanner.team/stops/Cvlstan2"], ["https://tec.openplanner.team/stops/H1pw120a", "https://tec.openplanner.team/stops/H1pw123a"], ["https://tec.openplanner.team/stops/N501bsb", "https://tec.openplanner.team/stops/N501btb"], ["https://tec.openplanner.team/stops/Brsga152", "https://tec.openplanner.team/stops/Brsgfbl1"], ["https://tec.openplanner.team/stops/LSAhaye1", "https://tec.openplanner.team/stops/LSAhaye2"], ["https://tec.openplanner.team/stops/LCxeg--1", "https://tec.openplanner.team/stops/LHEpriv2"], ["https://tec.openplanner.team/stops/Cfcrerp1", "https://tec.openplanner.team/stops/NH21afb"], ["https://tec.openplanner.team/stops/Bglibui1", "https://tec.openplanner.team/stops/NB33ala"], ["https://tec.openplanner.team/stops/H1pa100a", "https://tec.openplanner.team/stops/H1pa103b"], ["https://tec.openplanner.team/stops/Lcebois1", "https://tec.openplanner.team/stops/Lcepont2"], ["https://tec.openplanner.team/stops/X608asb", "https://tec.openplanner.team/stops/X622adb"], ["https://tec.openplanner.team/stops/LmRh%C3%B6fe1", "https://tec.openplanner.team/stops/LmRh%C3%B6fe2"], ["https://tec.openplanner.team/stops/X626aea", "https://tec.openplanner.team/stops/X626anb"], ["https://tec.openplanner.team/stops/X897afb", "https://tec.openplanner.team/stops/X897agb"], ["https://tec.openplanner.team/stops/X618aib", "https://tec.openplanner.team/stops/X618ajb"], ["https://tec.openplanner.team/stops/N252aba", "https://tec.openplanner.team/stops/N252adb"], ["https://tec.openplanner.team/stops/H1ch141a", "https://tec.openplanner.team/stops/H1ch143a"], ["https://tec.openplanner.team/stops/Lpebier1", "https://tec.openplanner.team/stops/Lpepano1"], ["https://tec.openplanner.team/stops/X886aab", "https://tec.openplanner.team/stops/X889ada"], ["https://tec.openplanner.team/stops/X790aea", "https://tec.openplanner.team/stops/X790ahb"], ["https://tec.openplanner.team/stops/H2na131b", "https://tec.openplanner.team/stops/H2na132a"], ["https://tec.openplanner.team/stops/LRRchen1", "https://tec.openplanner.team/stops/LRRlimi1"], ["https://tec.openplanner.team/stops/LHUfrai1", "https://tec.openplanner.team/stops/LHUfrai2"], ["https://tec.openplanner.team/stops/H4wp151a", "https://tec.openplanner.team/stops/H4wp152a"], ["https://tec.openplanner.team/stops/Blingar2", "https://tec.openplanner.team/stops/Blingar3"], ["https://tec.openplanner.team/stops/X982afa", "https://tec.openplanner.team/stops/X982aja"], ["https://tec.openplanner.team/stops/Bramcar1", "https://tec.openplanner.team/stops/Bramcar2"], ["https://tec.openplanner.team/stops/N134aha", "https://tec.openplanner.team/stops/N134ahb"], ["https://tec.openplanner.team/stops/Beclbse1", "https://tec.openplanner.team/stops/Beclbse2"], ["https://tec.openplanner.team/stops/LBEpier1", "https://tec.openplanner.team/stops/LBEssab2"], ["https://tec.openplanner.team/stops/LWeec--1", "https://tec.openplanner.team/stops/LWelogi2"], ["https://tec.openplanner.team/stops/Cgxdeba2", "https://tec.openplanner.team/stops/Cgxwaut2"], ["https://tec.openplanner.team/stops/X758abb", "https://tec.openplanner.team/stops/X758afa"], ["https://tec.openplanner.team/stops/LAOeg--2", "https://tec.openplanner.team/stops/LAOpres1"], ["https://tec.openplanner.team/stops/LgRha212", "https://tec.openplanner.team/stops/LnUhohe2"], ["https://tec.openplanner.team/stops/H1do129b", "https://tec.openplanner.team/stops/H1wi147a"], ["https://tec.openplanner.team/stops/Lagorch2", "https://tec.openplanner.team/stops/Lsteg--2"], ["https://tec.openplanner.team/stops/H1si151a", "https://tec.openplanner.team/stops/H5st162b"], ["https://tec.openplanner.team/stops/Csycant2", "https://tec.openplanner.team/stops/Csyjumo1"], ["https://tec.openplanner.team/stops/X982ada", "https://tec.openplanner.team/stops/X982bta"], ["https://tec.openplanner.team/stops/X801cib", "https://tec.openplanner.team/stops/X801cna"], ["https://tec.openplanner.team/stops/LaNdord1", "https://tec.openplanner.team/stops/LaNdorf2"], ["https://tec.openplanner.team/stops/X731aib", "https://tec.openplanner.team/stops/X736aia"], ["https://tec.openplanner.team/stops/X750aka", "https://tec.openplanner.team/stops/X750baa"], ["https://tec.openplanner.team/stops/N120aab", "https://tec.openplanner.team/stops/N121afb"], ["https://tec.openplanner.team/stops/N301ahb", "https://tec.openplanner.team/stops/N301aia"], ["https://tec.openplanner.team/stops/LLvpost2", "https://tec.openplanner.team/stops/NL78afb"], ["https://tec.openplanner.team/stops/Brsrfen1", "https://tec.openplanner.team/stops/Brsrpri1"], ["https://tec.openplanner.team/stops/N874amb", "https://tec.openplanner.team/stops/N874amc"], ["https://tec.openplanner.team/stops/Bitrfsc2", "https://tec.openplanner.team/stops/Bitrmon1"], ["https://tec.openplanner.team/stops/LWibare1", "https://tec.openplanner.team/stops/LWidepo2"], ["https://tec.openplanner.team/stops/Cmadeli2", "https://tec.openplanner.team/stops/Cmomoul4"], ["https://tec.openplanner.team/stops/Lalexpa2", "https://tec.openplanner.team/stops/Lalmakr2"], ["https://tec.openplanner.team/stops/N522atb", "https://tec.openplanner.team/stops/N522aua"], ["https://tec.openplanner.team/stops/Cchdagn2", "https://tec.openplanner.team/stops/Cchriga1"], ["https://tec.openplanner.team/stops/LoDkoll2", "https://tec.openplanner.team/stops/LoDschu2"], ["https://tec.openplanner.team/stops/H3so154b", "https://tec.openplanner.team/stops/H3so176b"], ["https://tec.openplanner.team/stops/LWEhang1", "https://tec.openplanner.team/stops/LWEhosp1"], ["https://tec.openplanner.team/stops/Llgform2", "https://tec.openplanner.team/stops/Llgsnap2"], ["https://tec.openplanner.team/stops/X938acb", "https://tec.openplanner.team/stops/X938adb"], ["https://tec.openplanner.team/stops/Lhrbass1", "https://tec.openplanner.team/stops/Lhrpaix2"], ["https://tec.openplanner.team/stops/Clrcime2", "https://tec.openplanner.team/stops/CMpara2"], ["https://tec.openplanner.team/stops/Lchplai2", "https://tec.openplanner.team/stops/Lchtche2"], ["https://tec.openplanner.team/stops/H1sp354b", "https://tec.openplanner.team/stops/H1sp355a"], ["https://tec.openplanner.team/stops/X769aja", "https://tec.openplanner.team/stops/X769aka"], ["https://tec.openplanner.team/stops/LCSfagn2", "https://tec.openplanner.team/stops/LCShoux2"], ["https://tec.openplanner.team/stops/H1vb143a", "https://tec.openplanner.team/stops/H1wz169a"], ["https://tec.openplanner.team/stops/Bwatgar1", "https://tec.openplanner.team/stops/Bwatgar4"], ["https://tec.openplanner.team/stops/LETeg--2", "https://tec.openplanner.team/stops/LETtemp1"], ["https://tec.openplanner.team/stops/N547aaa", "https://tec.openplanner.team/stops/N547aba"], ["https://tec.openplanner.team/stops/Bborbif2", "https://tec.openplanner.team/stops/Bborche2"], ["https://tec.openplanner.team/stops/Bfelfde2", "https://tec.openplanner.team/stops/H2fa103b"], ["https://tec.openplanner.team/stops/Lsmnico2", "https://tec.openplanner.team/stops/Lsmrwan2"], ["https://tec.openplanner.team/stops/LAUneuv3", "https://tec.openplanner.team/stops/LAUnico2"], ["https://tec.openplanner.team/stops/N113aba", "https://tec.openplanner.team/stops/N139aca"], ["https://tec.openplanner.team/stops/X715acb", "https://tec.openplanner.team/stops/X715ada"], ["https://tec.openplanner.team/stops/X758aia", "https://tec.openplanner.team/stops/X758aib"], ["https://tec.openplanner.team/stops/X927aba", "https://tec.openplanner.team/stops/X983aga"], ["https://tec.openplanner.team/stops/X713aia", "https://tec.openplanner.team/stops/X713ajb"], ["https://tec.openplanner.team/stops/LgAnr492", "https://tec.openplanner.team/stops/LsVgesc2"], ["https://tec.openplanner.team/stops/Lstscie2", "https://tec.openplanner.team/stops/Lsttech1"], ["https://tec.openplanner.team/stops/Bernpon1", "https://tec.openplanner.team/stops/Bgrmfga1"], ["https://tec.openplanner.team/stops/H1ba119a", "https://tec.openplanner.team/stops/H1ba120b"], ["https://tec.openplanner.team/stops/H1bb114a", "https://tec.openplanner.team/stops/H1bb120b"], ["https://tec.openplanner.team/stops/N218acb", "https://tec.openplanner.team/stops/N218aea"], ["https://tec.openplanner.team/stops/N522aba", "https://tec.openplanner.team/stops/N522aea"], ["https://tec.openplanner.team/stops/N501jqa", "https://tec.openplanner.team/stops/N501kmy"], ["https://tec.openplanner.team/stops/H1pa116a", "https://tec.openplanner.team/stops/H1wa151a"], ["https://tec.openplanner.team/stops/LHolexh2", "https://tec.openplanner.team/stops/LHovill1"], ["https://tec.openplanner.team/stops/X615axb", "https://tec.openplanner.team/stops/X615ayb"], ["https://tec.openplanner.team/stops/LwYkreu1", "https://tec.openplanner.team/stops/LwYkreu2"], ["https://tec.openplanner.team/stops/H1si153a", "https://tec.openplanner.team/stops/H1si156a"], ["https://tec.openplanner.team/stops/X616ahb", "https://tec.openplanner.team/stops/X617ada"], ["https://tec.openplanner.team/stops/X735aab", "https://tec.openplanner.team/stops/X735abb"], ["https://tec.openplanner.team/stops/LHYlinc2", "https://tec.openplanner.team/stops/LHYnoid2"], ["https://tec.openplanner.team/stops/N543avh", "https://tec.openplanner.team/stops/N543clb"], ["https://tec.openplanner.team/stops/H2sv211b", "https://tec.openplanner.team/stops/H2sv218a"], ["https://tec.openplanner.team/stops/LBWbatt2", "https://tec.openplanner.team/stops/LBWfusi2"], ["https://tec.openplanner.team/stops/X601bmb", "https://tec.openplanner.team/stops/X601dga"], ["https://tec.openplanner.team/stops/N355aba", "https://tec.openplanner.team/stops/N355ada"], ["https://tec.openplanner.team/stops/X839abd", "https://tec.openplanner.team/stops/X839acb"], ["https://tec.openplanner.team/stops/Clpalli2", "https://tec.openplanner.team/stops/Clpnapo1"], ["https://tec.openplanner.team/stops/N507aga", "https://tec.openplanner.team/stops/N507agb"], ["https://tec.openplanner.team/stops/N538aja", "https://tec.openplanner.team/stops/N538ajd"], ["https://tec.openplanner.team/stops/N501ckb", "https://tec.openplanner.team/stops/N501cky"], ["https://tec.openplanner.team/stops/Ccutrav1", "https://tec.openplanner.team/stops/Ccutrav4"], ["https://tec.openplanner.team/stops/N501hra", "https://tec.openplanner.team/stops/N501hyb"], ["https://tec.openplanner.team/stops/Lgrramp1", "https://tec.openplanner.team/stops/Llggrav1"], ["https://tec.openplanner.team/stops/H2bh106b", "https://tec.openplanner.team/stops/H2bh115b"], ["https://tec.openplanner.team/stops/Llgabat1", "https://tec.openplanner.team/stops/Llgarmu4"], ["https://tec.openplanner.team/stops/H1gh149b", "https://tec.openplanner.team/stops/H1gh151b"], ["https://tec.openplanner.team/stops/H4ga155b", "https://tec.openplanner.team/stops/H4ga170b"], ["https://tec.openplanner.team/stops/X804akb", "https://tec.openplanner.team/stops/X804bja"], ["https://tec.openplanner.team/stops/LPtchpl1", "https://tec.openplanner.team/stops/LPtrefa2"], ["https://tec.openplanner.team/stops/X768afa", "https://tec.openplanner.team/stops/X769amb"], ["https://tec.openplanner.team/stops/H4ga150a", "https://tec.openplanner.team/stops/H4ga166b"], ["https://tec.openplanner.team/stops/NL76afb", "https://tec.openplanner.team/stops/NL76agd"], ["https://tec.openplanner.team/stops/Bwancal1", "https://tec.openplanner.team/stops/Bwancal2"], ["https://tec.openplanner.team/stops/LHTcerc4", "https://tec.openplanner.team/stops/LHTdelh1"], ["https://tec.openplanner.team/stops/N501cda", "https://tec.openplanner.team/stops/N501cdc"], ["https://tec.openplanner.team/stops/H2hg269b", "https://tec.openplanner.team/stops/H2hg272a"], ["https://tec.openplanner.team/stops/LAvambr2", "https://tec.openplanner.team/stops/LMXaven2"], ["https://tec.openplanner.team/stops/LTgbalm1", "https://tec.openplanner.team/stops/LTgchar8"], ["https://tec.openplanner.team/stops/LCAeg--1", "https://tec.openplanner.team/stops/LCAeg--2"], ["https://tec.openplanner.team/stops/X925ahb", "https://tec.openplanner.team/stops/X996aaa"], ["https://tec.openplanner.team/stops/N508aba", "https://tec.openplanner.team/stops/N508abb"], ["https://tec.openplanner.team/stops/H1hq158a", "https://tec.openplanner.team/stops/H1sy148a"], ["https://tec.openplanner.team/stops/Bkrabhu2", "https://tec.openplanner.team/stops/Boveklo1"], ["https://tec.openplanner.team/stops/LGEbern1", "https://tec.openplanner.team/stops/LGEbern2"], ["https://tec.openplanner.team/stops/N556ada", "https://tec.openplanner.team/stops/N556afa"], ["https://tec.openplanner.team/stops/Bhaltre2", "https://tec.openplanner.team/stops/Bhalvla2"], ["https://tec.openplanner.team/stops/Cfcgar2", "https://tec.openplanner.team/stops/Cfcgrat2"], ["https://tec.openplanner.team/stops/X605afa", "https://tec.openplanner.team/stops/X605afb"], ["https://tec.openplanner.team/stops/Bolppsn1", "https://tec.openplanner.team/stops/Bolppsn2"], ["https://tec.openplanner.team/stops/Lbrcygn1", "https://tec.openplanner.team/stops/Lbrgrot2"], ["https://tec.openplanner.team/stops/H1bo109b", "https://tec.openplanner.team/stops/H1bo150a"], ["https://tec.openplanner.team/stops/Lfllapi3", "https://tec.openplanner.team/stops/Lflterm1"], ["https://tec.openplanner.team/stops/Lbocruc3", "https://tec.openplanner.team/stops/Lbofrai1"], ["https://tec.openplanner.team/stops/H1bi101b", "https://tec.openplanner.team/stops/H1mg108a"], ["https://tec.openplanner.team/stops/X342aba", "https://tec.openplanner.team/stops/X342aca"], ["https://tec.openplanner.team/stops/LBdcarr2", "https://tec.openplanner.team/stops/LLrfagn2"], ["https://tec.openplanner.team/stops/LFUchpl2", "https://tec.openplanner.team/stops/LFUgare2"], ["https://tec.openplanner.team/stops/LBjflor2", "https://tec.openplanner.team/stops/X575ahb"], ["https://tec.openplanner.team/stops/N232bha", "https://tec.openplanner.team/stops/N232bhb"], ["https://tec.openplanner.team/stops/H1by108b", "https://tec.openplanner.team/stops/H1by108c"], ["https://tec.openplanner.team/stops/LmNpost1", "https://tec.openplanner.team/stops/LmNstaa2"], ["https://tec.openplanner.team/stops/Brsrfen2", "https://tec.openplanner.team/stops/Brsrrcu2"], ["https://tec.openplanner.team/stops/X713aga", "https://tec.openplanner.team/stops/X713agb"], ["https://tec.openplanner.team/stops/Csdpira2", "https://tec.openplanner.team/stops/Cvpsncb2"], ["https://tec.openplanner.team/stops/Lmofays1", "https://tec.openplanner.team/stops/Lmoweri2"], ["https://tec.openplanner.team/stops/LLSba9-1", "https://tec.openplanner.team/stops/LLStrid3"], ["https://tec.openplanner.team/stops/H4co146b", "https://tec.openplanner.team/stops/H4co158a"], ["https://tec.openplanner.team/stops/X804ana", "https://tec.openplanner.team/stops/X804boa"], ["https://tec.openplanner.team/stops/Cgdcent2", "https://tec.openplanner.team/stops/Clggrfe2"], ["https://tec.openplanner.team/stops/Bnilcim2", "https://tec.openplanner.team/stops/Bnilreg1"], ["https://tec.openplanner.team/stops/LLUmc--2", "https://tec.openplanner.team/stops/LLUtill4"], ["https://tec.openplanner.team/stops/Ccigene2", "https://tec.openplanner.team/stops/Clvchen2"], ["https://tec.openplanner.team/stops/X750afa", "https://tec.openplanner.team/stops/X750bgb"], ["https://tec.openplanner.team/stops/Bgzddmo1", "https://tec.openplanner.team/stops/Bgzddmo2"], ["https://tec.openplanner.team/stops/H4be102a", "https://tec.openplanner.team/stops/H4be147a"], ["https://tec.openplanner.team/stops/Ljecoqu2", "https://tec.openplanner.team/stops/Ljexhav4"], ["https://tec.openplanner.team/stops/LMsbusc2", "https://tec.openplanner.team/stops/LMspont1"], ["https://tec.openplanner.team/stops/Cmyecur1", "https://tec.openplanner.team/stops/Cmygrbr3"], ["https://tec.openplanner.team/stops/H1vb142a", "https://tec.openplanner.team/stops/H3bi108a"], ["https://tec.openplanner.team/stops/LBscasi1", "https://tec.openplanner.team/stops/NL72aba"], ["https://tec.openplanner.team/stops/LHegame2", "https://tec.openplanner.team/stops/LHegame4"], ["https://tec.openplanner.team/stops/Bsamegl1", "https://tec.openplanner.team/stops/Bsamfma1"], ["https://tec.openplanner.team/stops/Cmg4bra2", "https://tec.openplanner.team/stops/Cmgbrou1"], ["https://tec.openplanner.team/stops/X623ahb", "https://tec.openplanner.team/stops/X623aib"], ["https://tec.openplanner.team/stops/N506asa", "https://tec.openplanner.team/stops/N506asb"], ["https://tec.openplanner.team/stops/Lhrpaep*", "https://tec.openplanner.team/stops/Lhrpaep1"], ["https://tec.openplanner.team/stops/Bgembhe2", "https://tec.openplanner.team/stops/Blnzcar2"], ["https://tec.openplanner.team/stops/LeUbush1", "https://tec.openplanner.team/stops/LeUhook2"], ["https://tec.openplanner.team/stops/X661ava", "https://tec.openplanner.team/stops/X661awa"], ["https://tec.openplanner.team/stops/Lvo60--2", "https://tec.openplanner.team/stops/Lvomoul1"], ["https://tec.openplanner.team/stops/Bgnpegl1", "https://tec.openplanner.team/stops/Bgnpjbe1"], ["https://tec.openplanner.team/stops/X364aaa", "https://tec.openplanner.team/stops/X364aca"], ["https://tec.openplanner.team/stops/LLxcbr-1", "https://tec.openplanner.team/stops/LLxnive1"], ["https://tec.openplanner.team/stops/Lsccime2", "https://tec.openplanner.team/stops/Lscpamp2"], ["https://tec.openplanner.team/stops/X822afa", "https://tec.openplanner.team/stops/X822afb"], ["https://tec.openplanner.team/stops/N571adb", "https://tec.openplanner.team/stops/N573aeb"], ["https://tec.openplanner.team/stops/Csiegli1", "https://tec.openplanner.team/stops/Csiegli2"], ["https://tec.openplanner.team/stops/Cmlhauc3", "https://tec.openplanner.team/stops/Cmlstgi2"], ["https://tec.openplanner.team/stops/H5pe130a", "https://tec.openplanner.team/stops/H5pe151a"], ["https://tec.openplanner.team/stops/H1bx104a", "https://tec.openplanner.team/stops/H1bx108b"], ["https://tec.openplanner.team/stops/X662aba", "https://tec.openplanner.team/stops/X662asb"], ["https://tec.openplanner.team/stops/H1wa135a", "https://tec.openplanner.team/stops/H1wa135b"], ["https://tec.openplanner.team/stops/X658acb", "https://tec.openplanner.team/stops/X658afb"], ["https://tec.openplanner.team/stops/H4bs114a", "https://tec.openplanner.team/stops/H5pe146b"], ["https://tec.openplanner.team/stops/X748aaa", "https://tec.openplanner.team/stops/X748afa"], ["https://tec.openplanner.team/stops/Bfelfde1", "https://tec.openplanner.team/stops/Bronn391"], ["https://tec.openplanner.team/stops/LDObran1", "https://tec.openplanner.team/stops/LDOordi2"], ["https://tec.openplanner.team/stops/Blsmcha4", "https://tec.openplanner.team/stops/Braclin2"], ["https://tec.openplanner.team/stops/Cbimonu1", "https://tec.openplanner.team/stops/Cthalou2"], ["https://tec.openplanner.team/stops/H1ms289a", "https://tec.openplanner.team/stops/H1ms290a"], ["https://tec.openplanner.team/stops/X939agb", "https://tec.openplanner.team/stops/X940ahb"], ["https://tec.openplanner.team/stops/LLAvi651", "https://tec.openplanner.team/stops/LMalarg3"], ["https://tec.openplanner.team/stops/LCSgend1", "https://tec.openplanner.team/stops/LSGsurf2"], ["https://tec.openplanner.team/stops/X898aaa", "https://tec.openplanner.team/stops/X898aea"], ["https://tec.openplanner.team/stops/X809aaa", "https://tec.openplanner.team/stops/X812bga"], ["https://tec.openplanner.team/stops/X858aab", "https://tec.openplanner.team/stops/X858ada"], ["https://tec.openplanner.team/stops/N501ata", "https://tec.openplanner.team/stops/N501awa"], ["https://tec.openplanner.team/stops/NC14aab", "https://tec.openplanner.team/stops/NC14ava"], ["https://tec.openplanner.team/stops/N511ajb", "https://tec.openplanner.team/stops/N511asb"], ["https://tec.openplanner.team/stops/N533ada", "https://tec.openplanner.team/stops/N533adb"], ["https://tec.openplanner.team/stops/Cmacart1", "https://tec.openplanner.team/stops/Cmacart2"], ["https://tec.openplanner.team/stops/N286aba", "https://tec.openplanner.team/stops/N287aab"], ["https://tec.openplanner.team/stops/X612aba", "https://tec.openplanner.team/stops/X612abb"], ["https://tec.openplanner.team/stops/N244aha", "https://tec.openplanner.team/stops/N244ahb"], ["https://tec.openplanner.team/stops/N501cla", "https://tec.openplanner.team/stops/N501mdb"], ["https://tec.openplanner.team/stops/H1eo105b", "https://tec.openplanner.team/stops/H1eo108b"], ["https://tec.openplanner.team/stops/N507agb", "https://tec.openplanner.team/stops/N516aqa"], ["https://tec.openplanner.team/stops/LJUmc--2", "https://tec.openplanner.team/stops/LJUxhen1"], ["https://tec.openplanner.team/stops/Bcrngat2", "https://tec.openplanner.team/stops/Bcrnpla3"], ["https://tec.openplanner.team/stops/X872aab", "https://tec.openplanner.team/stops/X872abb"], ["https://tec.openplanner.team/stops/LPAbrun2", "https://tec.openplanner.team/stops/LPAchpl2"], ["https://tec.openplanner.team/stops/H1te176b", "https://tec.openplanner.team/stops/H1te183a"], ["https://tec.openplanner.team/stops/H1ho132b", "https://tec.openplanner.team/stops/H1ho142a"], ["https://tec.openplanner.team/stops/H4hx110a", "https://tec.openplanner.team/stops/H4hx116b"], ["https://tec.openplanner.team/stops/LVLf10-1", "https://tec.openplanner.team/stops/LVLgotr1"], ["https://tec.openplanner.team/stops/Bcbqcha2", "https://tec.openplanner.team/stops/Bcbqcoi1"], ["https://tec.openplanner.team/stops/N120aga", "https://tec.openplanner.team/stops/N120anb"], ["https://tec.openplanner.team/stops/NC23afa", "https://tec.openplanner.team/stops/NC23afb"], ["https://tec.openplanner.team/stops/H1ho122a", "https://tec.openplanner.team/stops/H1ho134a"], ["https://tec.openplanner.team/stops/Botteco1", "https://tec.openplanner.team/stops/Bottpar2"], ["https://tec.openplanner.team/stops/N331aab", "https://tec.openplanner.team/stops/N331aeb"], ["https://tec.openplanner.team/stops/LBTchai1", "https://tec.openplanner.team/stops/LBTchai2"], ["https://tec.openplanner.team/stops/H4eh102b", "https://tec.openplanner.team/stops/H4eh104a"], ["https://tec.openplanner.team/stops/Ltinico1", "https://tec.openplanner.team/stops/Ltinico2"], ["https://tec.openplanner.team/stops/N545aab", "https://tec.openplanner.team/stops/N553ana"], ["https://tec.openplanner.team/stops/LrAknop2", "https://tec.openplanner.team/stops/LrAneus3"], ["https://tec.openplanner.team/stops/X763ahb", "https://tec.openplanner.team/stops/X765aga"], ["https://tec.openplanner.team/stops/X818aob", "https://tec.openplanner.team/stops/X818awb"], ["https://tec.openplanner.team/stops/Candett1", "https://tec.openplanner.team/stops/H1bi103a"], ["https://tec.openplanner.team/stops/N533aha", "https://tec.openplanner.team/stops/N533ahb"], ["https://tec.openplanner.team/stops/LCEinst1", "https://tec.openplanner.team/stops/LCEinst2"], ["https://tec.openplanner.team/stops/N501ixd", "https://tec.openplanner.team/stops/N521aha"], ["https://tec.openplanner.team/stops/N244alb", "https://tec.openplanner.team/stops/N244ama"], ["https://tec.openplanner.team/stops/Bboncfv1", "https://tec.openplanner.team/stops/Bchgbel1"], ["https://tec.openplanner.team/stops/H2gy108b", "https://tec.openplanner.team/stops/H2gy113a"], ["https://tec.openplanner.team/stops/N101ada", "https://tec.openplanner.team/stops/N101adb"], ["https://tec.openplanner.team/stops/Ccyfroi2", "https://tec.openplanner.team/stops/Ccygara1"], ["https://tec.openplanner.team/stops/Lcemc--1", "https://tec.openplanner.team/stops/Lcemc--2"], ["https://tec.openplanner.team/stops/Cflvxca1", "https://tec.openplanner.team/stops/Cflvxca2"], ["https://tec.openplanner.team/stops/X750axa", "https://tec.openplanner.team/stops/X750axb"], ["https://tec.openplanner.team/stops/H1mr124a", "https://tec.openplanner.team/stops/H1mr124b"], ["https://tec.openplanner.team/stops/N533aqb", "https://tec.openplanner.team/stops/N533aqc"], ["https://tec.openplanner.team/stops/H1sg150a", "https://tec.openplanner.team/stops/H1sg150b"], ["https://tec.openplanner.team/stops/N548aia", "https://tec.openplanner.team/stops/N548aib"], ["https://tec.openplanner.team/stops/LERpouh2", "https://tec.openplanner.team/stops/LHrreal1"], ["https://tec.openplanner.team/stops/LPOwaut1", "https://tec.openplanner.team/stops/LSdbote1"], ["https://tec.openplanner.team/stops/X760ada", "https://tec.openplanner.team/stops/X760adb"], ["https://tec.openplanner.team/stops/N229ama", "https://tec.openplanner.team/stops/N229ata"], ["https://tec.openplanner.team/stops/H1vt192b", "https://tec.openplanner.team/stops/H1vt194b"], ["https://tec.openplanner.team/stops/Berngrt2", "https://tec.openplanner.team/stops/Bsaubbo1"], ["https://tec.openplanner.team/stops/H4ho119b", "https://tec.openplanner.team/stops/H4ho121a"], ["https://tec.openplanner.team/stops/LOLcroi2", "https://tec.openplanner.team/stops/LOLvill4"], ["https://tec.openplanner.team/stops/Lsmcime2", "https://tec.openplanner.team/stops/Lsmrcim1"], ["https://tec.openplanner.team/stops/Cgoetun3", "https://tec.openplanner.team/stops/Cgorobe1"], ["https://tec.openplanner.team/stops/Lvecite3", "https://tec.openplanner.team/stops/Lveepar2"], ["https://tec.openplanner.team/stops/H4re225a", "https://tec.openplanner.team/stops/H5at142b"], ["https://tec.openplanner.team/stops/LJEniho1", "https://tec.openplanner.team/stops/LJEniho2"], ["https://tec.openplanner.team/stops/Cmtmoul2", "https://tec.openplanner.team/stops/Cmttkai1"], ["https://tec.openplanner.team/stops/Caimeno3", "https://tec.openplanner.team/stops/Crswaut1"], ["https://tec.openplanner.team/stops/Bhlvlou1", "https://tec.openplanner.team/stops/Cbtgemi1"], ["https://tec.openplanner.team/stops/LLUg82-1", "https://tec.openplanner.team/stops/LLUg82-2"], ["https://tec.openplanner.team/stops/Cgyblob2", "https://tec.openplanner.team/stops/Cgyplvi1"], ["https://tec.openplanner.team/stops/Cclmoul1", "https://tec.openplanner.team/stops/Cdostco1"], ["https://tec.openplanner.team/stops/Lhuwaid1", "https://tec.openplanner.team/stops/Lmnrame1"], ["https://tec.openplanner.team/stops/H4es111b", "https://tec.openplanner.team/stops/H4ev124a"], ["https://tec.openplanner.team/stops/LAibego1", "https://tec.openplanner.team/stops/Lcceclu1"], ["https://tec.openplanner.team/stops/H1ba119c", "https://tec.openplanner.team/stops/H1qu104a"], ["https://tec.openplanner.team/stops/X736aaa", "https://tec.openplanner.team/stops/X736abb"], ["https://tec.openplanner.team/stops/X769aia", "https://tec.openplanner.team/stops/X769aib"], ["https://tec.openplanner.team/stops/LBRgare2", "https://tec.openplanner.team/stops/LBRmout4"], ["https://tec.openplanner.team/stops/LSPbalm2", "https://tec.openplanner.team/stops/LSPjoli2"], ["https://tec.openplanner.team/stops/Cfocorn1", "https://tec.openplanner.team/stops/Cforepo2"], ["https://tec.openplanner.team/stops/Lfhpass2", "https://tec.openplanner.team/stops/Lsemany1"], ["https://tec.openplanner.team/stops/Lbbbuse1", "https://tec.openplanner.team/stops/Lbbbuse2"], ["https://tec.openplanner.team/stops/LrOn14-1", "https://tec.openplanner.team/stops/LwR129-2"], ["https://tec.openplanner.team/stops/Llglefe2", "https://tec.openplanner.team/stops/Llglimb2"], ["https://tec.openplanner.team/stops/H1mb130b", "https://tec.openplanner.team/stops/H1mx123a"], ["https://tec.openplanner.team/stops/H1ol142a", "https://tec.openplanner.team/stops/H1ol145a"], ["https://tec.openplanner.team/stops/LMIbois2", "https://tec.openplanner.team/stops/LMIcamp2"], ["https://tec.openplanner.team/stops/Lhuleke2", "https://tec.openplanner.team/stops/Lvelobe2"], ["https://tec.openplanner.team/stops/Cvllerm2", "https://tec.openplanner.team/stops/Cvlstan2"], ["https://tec.openplanner.team/stops/Bgrhcro1", "https://tec.openplanner.team/stops/Bgrhhot1"], ["https://tec.openplanner.team/stops/N514acb", "https://tec.openplanner.team/stops/N514ama"], ["https://tec.openplanner.team/stops/H4bd110a", "https://tec.openplanner.team/stops/H4ht172a"], ["https://tec.openplanner.team/stops/X714ada", "https://tec.openplanner.team/stops/X714adb"], ["https://tec.openplanner.team/stops/N501mja", "https://tec.openplanner.team/stops/N501mjc"], ["https://tec.openplanner.team/stops/N564aca", "https://tec.openplanner.team/stops/N564acb"], ["https://tec.openplanner.team/stops/NR21abb", "https://tec.openplanner.team/stops/NR21abd"], ["https://tec.openplanner.team/stops/N535asb", "https://tec.openplanner.team/stops/N538ayb"], ["https://tec.openplanner.team/stops/X661apa", "https://tec.openplanner.team/stops/X661apb"], ["https://tec.openplanner.team/stops/Bwavbmo1", "https://tec.openplanner.team/stops/Bwavbmo2"], ["https://tec.openplanner.team/stops/Lpepano2", "https://tec.openplanner.team/stops/LTAchpl2"], ["https://tec.openplanner.team/stops/Lbocarr1", "https://tec.openplanner.team/stops/Lbogonh3"], ["https://tec.openplanner.team/stops/LBk79--2", "https://tec.openplanner.team/stops/LBkgrae1"], ["https://tec.openplanner.team/stops/X837abb", "https://tec.openplanner.team/stops/X839aea"], ["https://tec.openplanner.team/stops/NL67aca", "https://tec.openplanner.team/stops/NL67ada"], ["https://tec.openplanner.team/stops/Ljhsart1", "https://tec.openplanner.team/stops/Ljhsart4"], ["https://tec.openplanner.team/stops/LHUaveu1", "https://tec.openplanner.team/stops/LHUfont2"], ["https://tec.openplanner.team/stops/N501dha", "https://tec.openplanner.team/stops/N501dhb"], ["https://tec.openplanner.team/stops/H4ro155b", "https://tec.openplanner.team/stops/H4tu172b"], ["https://tec.openplanner.team/stops/Lbocond2", "https://tec.openplanner.team/stops/Lbogonh4"], ["https://tec.openplanner.team/stops/Cwflouv3", "https://tec.openplanner.team/stops/Cwfnamu1"], ["https://tec.openplanner.team/stops/Cchba01", "https://tec.openplanner.team/stops/Cchmamb2"], ["https://tec.openplanner.team/stops/X804asb", "https://tec.openplanner.team/stops/X804awa"], ["https://tec.openplanner.team/stops/LHMchbl2", "https://tec.openplanner.team/stops/LHMhind1"], ["https://tec.openplanner.team/stops/X740aga", "https://tec.openplanner.team/stops/X985aac"], ["https://tec.openplanner.team/stops/LAWbrou1", "https://tec.openplanner.team/stops/LAWgill2"], ["https://tec.openplanner.team/stops/N503aja", "https://tec.openplanner.team/stops/N503ajc"], ["https://tec.openplanner.team/stops/N117aga", "https://tec.openplanner.team/stops/N117asa"], ["https://tec.openplanner.team/stops/Cmtduch1", "https://tec.openplanner.team/stops/Cmttkai1"], ["https://tec.openplanner.team/stops/Llgriva2", "https://tec.openplanner.team/stops/Llgrome2"], ["https://tec.openplanner.team/stops/X614awb", "https://tec.openplanner.team/stops/X614axb"], ["https://tec.openplanner.team/stops/Lglvict2", "https://tec.openplanner.team/stops/Llgdelc*"], ["https://tec.openplanner.team/stops/Llgddef2", "https://tec.openplanner.team/stops/Llgrull1"], ["https://tec.openplanner.team/stops/H1hh118a", "https://tec.openplanner.team/stops/H1hh118b"], ["https://tec.openplanner.team/stops/X982aza", "https://tec.openplanner.team/stops/X982azb"], ["https://tec.openplanner.team/stops/LVnetan1", "https://tec.openplanner.team/stops/LVnflox2"], ["https://tec.openplanner.team/stops/X685acb", "https://tec.openplanner.team/stops/X685apa"], ["https://tec.openplanner.team/stops/H1bi101b", "https://tec.openplanner.team/stops/H1bi103a"], ["https://tec.openplanner.team/stops/LLAvi651", "https://tec.openplanner.team/stops/LLAvi652"], ["https://tec.openplanner.team/stops/H4mo151a", "https://tec.openplanner.team/stops/H4mo208a"], ["https://tec.openplanner.team/stops/Ccotrie3", "https://tec.openplanner.team/stops/Ccotrie4"], ["https://tec.openplanner.team/stops/Lbrfoid3", "https://tec.openplanner.team/stops/Lbrresi2"], ["https://tec.openplanner.team/stops/Llgboux1", "https://tec.openplanner.team/stops/Llgboux2"], ["https://tec.openplanner.team/stops/X749aab", "https://tec.openplanner.team/stops/X754adb"], ["https://tec.openplanner.team/stops/X805aab", "https://tec.openplanner.team/stops/X805agb"], ["https://tec.openplanner.team/stops/X948akb", "https://tec.openplanner.team/stops/X948ala"], ["https://tec.openplanner.team/stops/H1gg114b", "https://tec.openplanner.team/stops/H1gg117b"], ["https://tec.openplanner.team/stops/N501lfb", "https://tec.openplanner.team/stops/N501llb"], ["https://tec.openplanner.team/stops/N874acb", "https://tec.openplanner.team/stops/N874ahb"], ["https://tec.openplanner.team/stops/Blpglon1", "https://tec.openplanner.team/stops/Bvxgpro1"], ["https://tec.openplanner.team/stops/LhIkirc*", "https://tec.openplanner.team/stops/LmAkirc1"], ["https://tec.openplanner.team/stops/Barcast1", "https://tec.openplanner.team/stops/Bbsgfva1"], ["https://tec.openplanner.team/stops/Cflchel6", "https://tec.openplanner.team/stops/Cflhano2"], ["https://tec.openplanner.team/stops/LVIcarm4", "https://tec.openplanner.team/stops/LVIecol1"], ["https://tec.openplanner.team/stops/Bcbqcim2", "https://tec.openplanner.team/stops/Bcbqcoi2"], ["https://tec.openplanner.team/stops/X672aoa", "https://tec.openplanner.team/stops/X672apa"], ["https://tec.openplanner.team/stops/N331aab", "https://tec.openplanner.team/stops/N331aga"], ["https://tec.openplanner.team/stops/Bperros1", "https://tec.openplanner.team/stops/N519acb"], ["https://tec.openplanner.team/stops/Bblaccm1", "https://tec.openplanner.team/stops/Bblamsj1"], ["https://tec.openplanner.team/stops/X657adb", "https://tec.openplanner.team/stops/X657ajb"], ["https://tec.openplanner.team/stops/LDLgran3", "https://tec.openplanner.team/stops/LHYwach1"], ["https://tec.openplanner.team/stops/Bramcom2", "https://tec.openplanner.team/stops/Bramrdf1"], ["https://tec.openplanner.team/stops/Clafaub2", "https://tec.openplanner.team/stops/Claptcf2"], ["https://tec.openplanner.team/stops/X640aab", "https://tec.openplanner.team/stops/X640aca"], ["https://tec.openplanner.team/stops/X986acb", "https://tec.openplanner.team/stops/X986asa"], ["https://tec.openplanner.team/stops/LWEbr511", "https://tec.openplanner.team/stops/LWEhosp3"], ["https://tec.openplanner.team/stops/Bhercsj1", "https://tec.openplanner.team/stops/Bpieh172"], ["https://tec.openplanner.team/stops/Crccano3", "https://tec.openplanner.team/stops/Crcrlf2"], ["https://tec.openplanner.team/stops/H4bo179a", "https://tec.openplanner.team/stops/H4bo181a"], ["https://tec.openplanner.team/stops/H1ni316a", "https://tec.openplanner.team/stops/H1ni319a"], ["https://tec.openplanner.team/stops/H4li178a", "https://tec.openplanner.team/stops/H4mv194a"], ["https://tec.openplanner.team/stops/Csecoup1", "https://tec.openplanner.team/stops/Csecout1"], ["https://tec.openplanner.team/stops/H1mm121b", "https://tec.openplanner.team/stops/H1mm122b"], ["https://tec.openplanner.team/stops/Clshafa1", "https://tec.openplanner.team/stops/H1me116a"], ["https://tec.openplanner.team/stops/H4bc104a", "https://tec.openplanner.team/stops/H4bc104b"], ["https://tec.openplanner.team/stops/Bgliopp1", "https://tec.openplanner.team/stops/Bgliopp2"], ["https://tec.openplanner.team/stops/X615afb", "https://tec.openplanner.team/stops/X615baa"], ["https://tec.openplanner.team/stops/LBGjacq2", "https://tec.openplanner.team/stops/LBGvill1"], ["https://tec.openplanner.team/stops/N207abb", "https://tec.openplanner.team/stops/N207acb"], ["https://tec.openplanner.team/stops/Lgrlimi1", "https://tec.openplanner.team/stops/Lgrlimi3"], ["https://tec.openplanner.team/stops/X824ada", "https://tec.openplanner.team/stops/X824aeb"], ["https://tec.openplanner.team/stops/Bsomtpm1", "https://tec.openplanner.team/stops/N584bpa"], ["https://tec.openplanner.team/stops/LAUcarr2", "https://tec.openplanner.team/stops/LFdchau3"], ["https://tec.openplanner.team/stops/LHNgare2", "https://tec.openplanner.team/stops/LHNwaut2"], ["https://tec.openplanner.team/stops/H5pe137a", "https://tec.openplanner.team/stops/H5pe147c"], ["https://tec.openplanner.team/stops/LvA30--2", "https://tec.openplanner.team/stops/LvAwere1"], ["https://tec.openplanner.team/stops/Cptchea1", "https://tec.openplanner.team/stops/Cptegli3"], ["https://tec.openplanner.team/stops/X802afa", "https://tec.openplanner.team/stops/X802afb"], ["https://tec.openplanner.team/stops/LMOecsp1", "https://tec.openplanner.team/stops/LMOecsp2"], ["https://tec.openplanner.team/stops/H4te256b", "https://tec.openplanner.team/stops/H4te257a"], ["https://tec.openplanner.team/stops/X607aia", "https://tec.openplanner.team/stops/X647aaa"], ["https://tec.openplanner.team/stops/LrAalte2", "https://tec.openplanner.team/stops/LrAneus2"], ["https://tec.openplanner.team/stops/N204aca", "https://tec.openplanner.team/stops/N204acb"], ["https://tec.openplanner.team/stops/Lanfont1", "https://tec.openplanner.team/stops/Lannico4"], ["https://tec.openplanner.team/stops/N525agb", "https://tec.openplanner.team/stops/N525akb"], ["https://tec.openplanner.team/stops/LThchar1", "https://tec.openplanner.team/stops/LThgare2"], ["https://tec.openplanner.team/stops/X640ahb", "https://tec.openplanner.team/stops/X640ajb"], ["https://tec.openplanner.team/stops/LXobaty3", "https://tec.openplanner.team/stops/LXoroch1"], ["https://tec.openplanner.team/stops/H5rx101b", "https://tec.openplanner.team/stops/H5rx134b"], ["https://tec.openplanner.team/stops/X742afb", "https://tec.openplanner.team/stops/X742aga"], ["https://tec.openplanner.team/stops/H1sb151a", "https://tec.openplanner.team/stops/H1sb151b"], ["https://tec.openplanner.team/stops/LATcham*", "https://tec.openplanner.team/stops/LATcorn2"], ["https://tec.openplanner.team/stops/N501arc", "https://tec.openplanner.team/stops/N501cdb"], ["https://tec.openplanner.team/stops/Bwategb2", "https://tec.openplanner.team/stops/Bwatfva1"], ["https://tec.openplanner.team/stops/N351aaa", "https://tec.openplanner.team/stops/N351amb"], ["https://tec.openplanner.team/stops/H2me113a", "https://tec.openplanner.team/stops/H2me113b"], ["https://tec.openplanner.team/stops/Ldilyce*", "https://tec.openplanner.team/stops/Ldimont2"], ["https://tec.openplanner.team/stops/LVncarr1", "https://tec.openplanner.team/stops/LVncarr2"], ["https://tec.openplanner.team/stops/N127adb", "https://tec.openplanner.team/stops/N127aia"], ["https://tec.openplanner.team/stops/H4pq113b", "https://tec.openplanner.team/stops/H4pq116b"], ["https://tec.openplanner.team/stops/Bnivmfr2", "https://tec.openplanner.team/stops/Bnivsci2"], ["https://tec.openplanner.team/stops/X911aib", "https://tec.openplanner.team/stops/X911arb"], ["https://tec.openplanner.team/stops/X898aia", "https://tec.openplanner.team/stops/X898aib"], ["https://tec.openplanner.team/stops/X626aha", "https://tec.openplanner.team/stops/X626ala"], ["https://tec.openplanner.team/stops/N501ica", "https://tec.openplanner.team/stops/N501icz"], ["https://tec.openplanner.team/stops/H4lg101a", "https://tec.openplanner.team/stops/H4lg102a"], ["https://tec.openplanner.team/stops/Llgcita2", "https://tec.openplanner.team/stops/Llgelis1"], ["https://tec.openplanner.team/stops/Lvegend2", "https://tec.openplanner.team/stops/Lvejeha2"], ["https://tec.openplanner.team/stops/N254aeb", "https://tec.openplanner.team/stops/N254afb"], ["https://tec.openplanner.team/stops/LEBdoct2", "https://tec.openplanner.team/stops/LEMec--2"], ["https://tec.openplanner.team/stops/H1hv133a", "https://tec.openplanner.team/stops/H1hv136a"], ["https://tec.openplanner.team/stops/N501bja", "https://tec.openplanner.team/stops/N501brb"], ["https://tec.openplanner.team/stops/H1bi100a", "https://tec.openplanner.team/stops/H1bu140a"], ["https://tec.openplanner.team/stops/H1gr113a", "https://tec.openplanner.team/stops/H1gr115a"], ["https://tec.openplanner.team/stops/X641aob", "https://tec.openplanner.team/stops/X641apc"], ["https://tec.openplanner.team/stops/H1ch101a", "https://tec.openplanner.team/stops/H5ar102a"], ["https://tec.openplanner.team/stops/H1bn113a", "https://tec.openplanner.team/stops/H1bn114a"], ["https://tec.openplanner.team/stops/LHFhard1", "https://tec.openplanner.team/stops/LJedonc1"], ["https://tec.openplanner.team/stops/X806aab", "https://tec.openplanner.team/stops/X850ama"], ["https://tec.openplanner.team/stops/LLYcham1", "https://tec.openplanner.team/stops/LLYhoch1"], ["https://tec.openplanner.team/stops/N311afa", "https://tec.openplanner.team/stops/N312aba"], ["https://tec.openplanner.team/stops/Lsmsech3", "https://tec.openplanner.team/stops/Lsmsech4"], ["https://tec.openplanner.team/stops/Llgpier2", "https://tec.openplanner.team/stops/LlgPTAV3"], ["https://tec.openplanner.team/stops/LFothie2", "https://tec.openplanner.team/stops/LJAcham2"], ["https://tec.openplanner.team/stops/LBKmoes2", "https://tec.openplanner.team/stops/LBveg--1"], ["https://tec.openplanner.team/stops/X346ala", "https://tec.openplanner.team/stops/X346alb"], ["https://tec.openplanner.team/stops/X890abb", "https://tec.openplanner.team/stops/X890aca"], ["https://tec.openplanner.team/stops/N506ana", "https://tec.openplanner.team/stops/N506apb"], ["https://tec.openplanner.team/stops/LHUzoni2", "https://tec.openplanner.team/stops/LHUzoni3"], ["https://tec.openplanner.team/stops/Cfocmed1", "https://tec.openplanner.team/stops/Cfocmed2"], ["https://tec.openplanner.team/stops/N501czb", "https://tec.openplanner.team/stops/N528aga"], ["https://tec.openplanner.team/stops/H1he106b", "https://tec.openplanner.team/stops/H1he108a"], ["https://tec.openplanner.team/stops/X661ama", "https://tec.openplanner.team/stops/X661anb"], ["https://tec.openplanner.team/stops/LCsraws2", "https://tec.openplanner.team/stops/LVBsevr2"], ["https://tec.openplanner.team/stops/H1ne138b", "https://tec.openplanner.team/stops/H1ne150a"], ["https://tec.openplanner.team/stops/H1cu117b", "https://tec.openplanner.team/stops/H1cu123a"], ["https://tec.openplanner.team/stops/LVlleme4", "https://tec.openplanner.team/stops/LVlleno2"], ["https://tec.openplanner.team/stops/H1ha189b", "https://tec.openplanner.team/stops/H1ha200a"], ["https://tec.openplanner.team/stops/Cvlcen1", "https://tec.openplanner.team/stops/Cvlcen2"], ["https://tec.openplanner.team/stops/Cfopetr2", "https://tec.openplanner.team/stops/CMpetr2"], ["https://tec.openplanner.team/stops/LVEcacq2", "https://tec.openplanner.team/stops/LVEhali2"], ["https://tec.openplanner.team/stops/Brixpro1", "https://tec.openplanner.team/stops/Brixpro3"], ["https://tec.openplanner.team/stops/N236aha", "https://tec.openplanner.team/stops/N236aja"], ["https://tec.openplanner.team/stops/H4hx112a", "https://tec.openplanner.team/stops/H4hx112b"], ["https://tec.openplanner.team/stops/N170ada", "https://tec.openplanner.team/stops/N170aeb"], ["https://tec.openplanner.team/stops/Ctrrpla1", "https://tec.openplanner.team/stops/Ctrsema1"], ["https://tec.openplanner.team/stops/Lmocalv2", "https://tec.openplanner.team/stops/Lmomine1"], ["https://tec.openplanner.team/stops/Llgbwez1", "https://tec.openplanner.team/stops/Llgbwez2"], ["https://tec.openplanner.team/stops/Ccppn2", "https://tec.openplanner.team/stops/Ccpsecp1"], ["https://tec.openplanner.team/stops/Bbchgod1", "https://tec.openplanner.team/stops/Bbchgod2"], ["https://tec.openplanner.team/stops/X640afa", "https://tec.openplanner.team/stops/X640akb"], ["https://tec.openplanner.team/stops/H5rx110b", "https://tec.openplanner.team/stops/H5rx128b"], ["https://tec.openplanner.team/stops/Ccypn1", "https://tec.openplanner.team/stops/Csregli1"], ["https://tec.openplanner.team/stops/Lmnhorl3", "https://tec.openplanner.team/stops/Lvearle4"], ["https://tec.openplanner.team/stops/LAIchpl1", "https://tec.openplanner.team/stops/LAIrout2"], ["https://tec.openplanner.team/stops/Cblsall1", "https://tec.openplanner.team/stops/Cslegli2"], ["https://tec.openplanner.team/stops/LeLbegl1", "https://tec.openplanner.team/stops/LeLherz2"], ["https://tec.openplanner.team/stops/LFymare3", "https://tec.openplanner.team/stops/LWamass1"], ["https://tec.openplanner.team/stops/LHtdros1", "https://tec.openplanner.team/stops/LJAferm2"], ["https://tec.openplanner.team/stops/X945acb", "https://tec.openplanner.team/stops/X945ada"], ["https://tec.openplanner.team/stops/LSZclem1", "https://tec.openplanner.team/stops/LSZdepo2"], ["https://tec.openplanner.team/stops/X731aca", "https://tec.openplanner.team/stops/X731amb"], ["https://tec.openplanner.team/stops/LVLsabl1", "https://tec.openplanner.team/stops/LVLsabl4"], ["https://tec.openplanner.team/stops/H1gg145b", "https://tec.openplanner.team/stops/H1gg146b"], ["https://tec.openplanner.team/stops/X725aia", "https://tec.openplanner.team/stops/X725ajb"], ["https://tec.openplanner.team/stops/N106aba", "https://tec.openplanner.team/stops/N137acb"], ["https://tec.openplanner.team/stops/LAWxhen1", "https://tec.openplanner.team/stops/LAWxhen2"], ["https://tec.openplanner.team/stops/N110aab", "https://tec.openplanner.team/stops/N110abb"], ["https://tec.openplanner.team/stops/Bndbdra1", "https://tec.openplanner.team/stops/Bndbdra2"], ["https://tec.openplanner.team/stops/X925aib", "https://tec.openplanner.team/stops/X925aja"], ["https://tec.openplanner.team/stops/X359ama", "https://tec.openplanner.team/stops/X857aaa"], ["https://tec.openplanner.team/stops/Llgjoie4", "https://tec.openplanner.team/stops/Llgvero1"], ["https://tec.openplanner.team/stops/LRtcarr1", "https://tec.openplanner.team/stops/LRtmame2"], ["https://tec.openplanner.team/stops/LWHwaas3", "https://tec.openplanner.team/stops/LWSstat2"], ["https://tec.openplanner.team/stops/X782anb", "https://tec.openplanner.team/stops/X783acc"], ["https://tec.openplanner.team/stops/Bgrmver3", "https://tec.openplanner.team/stops/N522ara"], ["https://tec.openplanner.team/stops/H1ca106a", "https://tec.openplanner.team/stops/H1ca106c"], ["https://tec.openplanner.team/stops/N351arb", "https://tec.openplanner.team/stops/N351asa"], ["https://tec.openplanner.team/stops/X760aaa", "https://tec.openplanner.team/stops/X762ada"], ["https://tec.openplanner.team/stops/N550afa", "https://tec.openplanner.team/stops/N550akb"], ["https://tec.openplanner.team/stops/LMfpeni*", "https://tec.openplanner.team/stops/NL73abb"], ["https://tec.openplanner.team/stops/X757aaa", "https://tec.openplanner.team/stops/X757aba"], ["https://tec.openplanner.team/stops/LoUpete2", "https://tec.openplanner.team/stops/LsF39--1"], ["https://tec.openplanner.team/stops/Blemwro2", "https://tec.openplanner.team/stops/Btubcal1"], ["https://tec.openplanner.team/stops/X922amb", "https://tec.openplanner.team/stops/X941ahb"], ["https://tec.openplanner.team/stops/X734abb", "https://tec.openplanner.team/stops/X734acb"], ["https://tec.openplanner.team/stops/Lsecris3", "https://tec.openplanner.team/stops/Lsevico1"], ["https://tec.openplanner.team/stops/H4ga154a", "https://tec.openplanner.team/stops/H4ga163b"], ["https://tec.openplanner.team/stops/LWDhous2", "https://tec.openplanner.team/stops/LWDsott3"], ["https://tec.openplanner.team/stops/LSCc39-1", "https://tec.openplanner.team/stops/LVMborl1"], ["https://tec.openplanner.team/stops/X616aca", "https://tec.openplanner.team/stops/X616aia"], ["https://tec.openplanner.team/stops/N514aga", "https://tec.openplanner.team/stops/N515apb"], ["https://tec.openplanner.team/stops/H5bl116b", "https://tec.openplanner.team/stops/H5bl143b"], ["https://tec.openplanner.team/stops/Ljudeme4", "https://tec.openplanner.team/stops/Ljuhava2"], ["https://tec.openplanner.team/stops/LVBbvin", "https://tec.openplanner.team/stops/LVBdela1"], ["https://tec.openplanner.team/stops/LWNfani1", "https://tec.openplanner.team/stops/LWNfani2"], ["https://tec.openplanner.team/stops/LCIcent2", "https://tec.openplanner.team/stops/LCIneuv2"], ["https://tec.openplanner.team/stops/X850adb", "https://tec.openplanner.team/stops/X850aea"], ["https://tec.openplanner.team/stops/LCUmars1", "https://tec.openplanner.team/stops/NL57ama"], ["https://tec.openplanner.team/stops/H4ce107b", "https://tec.openplanner.team/stops/H4or113a"], ["https://tec.openplanner.team/stops/LOMdodi1", "https://tec.openplanner.team/stops/LOMdodi2"], ["https://tec.openplanner.team/stops/Barcpre2", "https://tec.openplanner.team/stops/Bgzdgli2"], ["https://tec.openplanner.team/stops/N201aub", "https://tec.openplanner.team/stops/N236abb"], ["https://tec.openplanner.team/stops/Bblaniv2", "https://tec.openplanner.team/stops/Bwatmsj8"], ["https://tec.openplanner.team/stops/H4pi133b", "https://tec.openplanner.team/stops/H4pi135a"], ["https://tec.openplanner.team/stops/Bhancom1", "https://tec.openplanner.team/stops/LHNtill2"], ["https://tec.openplanner.team/stops/Bsjgegl1", "https://tec.openplanner.team/stops/Bsjgmil1"], ["https://tec.openplanner.team/stops/Cgrchfe2", "https://tec.openplanner.team/stops/NC02bbb"], ["https://tec.openplanner.team/stops/H4pq119a", "https://tec.openplanner.team/stops/H4sl154a"], ["https://tec.openplanner.team/stops/N501dob", "https://tec.openplanner.team/stops/N501ena"], ["https://tec.openplanner.team/stops/Btlgast2", "https://tec.openplanner.team/stops/Btlgfto2"], ["https://tec.openplanner.team/stops/Lhubarl1", "https://tec.openplanner.team/stops/Ljhmany1"], ["https://tec.openplanner.team/stops/X782aha", "https://tec.openplanner.team/stops/X782aib"], ["https://tec.openplanner.team/stops/LVSpn--1", "https://tec.openplanner.team/stops/LVStige1"], ["https://tec.openplanner.team/stops/Lhrathe2", "https://tec.openplanner.team/stops/Lhrferr1"], ["https://tec.openplanner.team/stops/LMfpeni*", "https://tec.openplanner.team/stops/LMfsart2"], ["https://tec.openplanner.team/stops/X661aka", "https://tec.openplanner.team/stops/X661arc"], ["https://tec.openplanner.team/stops/N151ajb", "https://tec.openplanner.team/stops/N151aje"], ["https://tec.openplanner.team/stops/H4pe125b", "https://tec.openplanner.team/stops/H4pe126b"], ["https://tec.openplanner.team/stops/Bgembhe2", "https://tec.openplanner.team/stops/N576aca"], ["https://tec.openplanner.team/stops/NH21adb", "https://tec.openplanner.team/stops/NH21aeb"], ["https://tec.openplanner.team/stops/H1sy137a", "https://tec.openplanner.team/stops/H1sy137d"], ["https://tec.openplanner.team/stops/LSHhade2", "https://tec.openplanner.team/stops/LSHneuv2"], ["https://tec.openplanner.team/stops/X808abc", "https://tec.openplanner.team/stops/X808aea"], ["https://tec.openplanner.team/stops/N321afa", "https://tec.openplanner.team/stops/N367adb"], ["https://tec.openplanner.team/stops/Llglibo3", "https://tec.openplanner.team/stops/Llgptlo4"], ["https://tec.openplanner.team/stops/Cgytrie2", "https://tec.openplanner.team/stops/CMsartc2"], ["https://tec.openplanner.team/stops/X601cfa", "https://tec.openplanner.team/stops/X601cga"], ["https://tec.openplanner.team/stops/Cctsold1", "https://tec.openplanner.team/stops/Cctvict1"], ["https://tec.openplanner.team/stops/LSLprov2", "https://tec.openplanner.team/stops/LSLvaux2"], ["https://tec.openplanner.team/stops/LAmeclu1", "https://tec.openplanner.team/stops/LAmwaut2"], ["https://tec.openplanner.team/stops/LVTforg1", "https://tec.openplanner.team/stops/LVTforg2"], ["https://tec.openplanner.team/stops/H4mo155a", "https://tec.openplanner.team/stops/H4mo155b"], ["https://tec.openplanner.team/stops/X979acb", "https://tec.openplanner.team/stops/X979aeb"], ["https://tec.openplanner.team/stops/Bflccav2", "https://tec.openplanner.team/stops/NR30aab"], ["https://tec.openplanner.team/stops/X892ahb", "https://tec.openplanner.team/stops/X892ajb"], ["https://tec.openplanner.team/stops/Lsmh3021", "https://tec.openplanner.team/stops/LSubass2"], ["https://tec.openplanner.team/stops/N501iey", "https://tec.openplanner.team/stops/N501iqb"], ["https://tec.openplanner.team/stops/N244aab", "https://tec.openplanner.team/stops/N244abb"], ["https://tec.openplanner.team/stops/Bsaupco1", "https://tec.openplanner.team/stops/N541aab"], ["https://tec.openplanner.team/stops/LPbec--1", "https://tec.openplanner.team/stops/LPbusin2"], ["https://tec.openplanner.team/stops/H1ca101a", "https://tec.openplanner.team/stops/H1ca109a"], ["https://tec.openplanner.team/stops/Ljubods1", "https://tec.openplanner.team/stops/Ljumiux1"], ["https://tec.openplanner.team/stops/X902bfa", "https://tec.openplanner.team/stops/X902bfb"], ["https://tec.openplanner.team/stops/H4te255a", "https://tec.openplanner.team/stops/H4te255b"], ["https://tec.openplanner.team/stops/X715aaa", "https://tec.openplanner.team/stops/X781ada"], ["https://tec.openplanner.team/stops/LBGcent2", "https://tec.openplanner.team/stops/LPUchpl1"], ["https://tec.openplanner.team/stops/N529aba", "https://tec.openplanner.team/stops/N529abb"], ["https://tec.openplanner.team/stops/LBabeco3", "https://tec.openplanner.team/stops/LBapepi4"], ["https://tec.openplanner.team/stops/Cchba12", "https://tec.openplanner.team/stops/Cchoues4"], ["https://tec.openplanner.team/stops/LONcroi1", "https://tec.openplanner.team/stops/LONcroi2"], ["https://tec.openplanner.team/stops/X615aha", "https://tec.openplanner.team/stops/X615asa"], ["https://tec.openplanner.team/stops/Csdbosq1", "https://tec.openplanner.team/stops/Csdbosq2"], ["https://tec.openplanner.team/stops/Csdfboi2", "https://tec.openplanner.team/stops/Csdnive2"], ["https://tec.openplanner.team/stops/X898aka", "https://tec.openplanner.team/stops/X898ana"], ["https://tec.openplanner.team/stops/X741ala", "https://tec.openplanner.team/stops/X741anb"], ["https://tec.openplanner.team/stops/Ljerouy2", "https://tec.openplanner.team/stops/Ljetout4"], ["https://tec.openplanner.team/stops/X922aaa", "https://tec.openplanner.team/stops/X922aeb"], ["https://tec.openplanner.team/stops/X762aba", "https://tec.openplanner.team/stops/X763aaa"], ["https://tec.openplanner.team/stops/N244ara", "https://tec.openplanner.team/stops/N244asb"], ["https://tec.openplanner.team/stops/X820aha", "https://tec.openplanner.team/stops/X820aia"], ["https://tec.openplanner.team/stops/Cdogrro1", "https://tec.openplanner.team/stops/Cdostco2"], ["https://tec.openplanner.team/stops/Ljecocc1", "https://tec.openplanner.team/stops/Ljexhav4"], ["https://tec.openplanner.team/stops/H5at133b", "https://tec.openplanner.team/stops/H5at142b"], ["https://tec.openplanner.team/stops/LBkcare*", "https://tec.openplanner.team/stops/LBkdahl1"], ["https://tec.openplanner.team/stops/X897axb", "https://tec.openplanner.team/stops/X904ada"], ["https://tec.openplanner.team/stops/LWRbois1", "https://tec.openplanner.team/stops/LWRvert2"], ["https://tec.openplanner.team/stops/X660aja", "https://tec.openplanner.team/stops/X672ahb"], ["https://tec.openplanner.team/stops/LWOunio1", "https://tec.openplanner.team/stops/LWOunio2"], ["https://tec.openplanner.team/stops/LTyh24-1", "https://tec.openplanner.team/stops/LTyh51-1"], ["https://tec.openplanner.team/stops/X986afa", "https://tec.openplanner.team/stops/X986ala"], ["https://tec.openplanner.team/stops/LSzeg--2", "https://tec.openplanner.team/stops/LSzetoi2"], ["https://tec.openplanner.team/stops/LAuchau1", "https://tec.openplanner.team/stops/LMubras2"], ["https://tec.openplanner.team/stops/N235aab", "https://tec.openplanner.team/stops/N235abb"], ["https://tec.openplanner.team/stops/N538asc", "https://tec.openplanner.team/stops/N538atb"], ["https://tec.openplanner.team/stops/X746adb", "https://tec.openplanner.team/stops/X746aia"], ["https://tec.openplanner.team/stops/H4lg103b", "https://tec.openplanner.team/stops/H4lg106a"], ["https://tec.openplanner.team/stops/Bquecar1", "https://tec.openplanner.team/stops/Bquegob4"], ["https://tec.openplanner.team/stops/H1bo100b", "https://tec.openplanner.team/stops/H1bo145b"], ["https://tec.openplanner.team/stops/Lvcfogu1", "https://tec.openplanner.team/stops/Lvcfogu4"], ["https://tec.openplanner.team/stops/Cfrcoqu4", "https://tec.openplanner.team/stops/Cfrgare2"], ["https://tec.openplanner.team/stops/Blemhon2", "https://tec.openplanner.team/stops/Blempuc2"], ["https://tec.openplanner.team/stops/Lemarde2", "https://tec.openplanner.team/stops/Lemcort1"], ["https://tec.openplanner.team/stops/X899aca", "https://tec.openplanner.team/stops/X899acb"], ["https://tec.openplanner.team/stops/N117aua", "https://tec.openplanner.team/stops/N117aub"], ["https://tec.openplanner.team/stops/LHFcaqu1", "https://tec.openplanner.team/stops/LHFcaqu2"], ["https://tec.openplanner.team/stops/X731abb", "https://tec.openplanner.team/stops/X731aja"], ["https://tec.openplanner.team/stops/Cmyedpa2", "https://tec.openplanner.team/stops/Cmymarb2"], ["https://tec.openplanner.team/stops/Cfamonu1", "https://tec.openplanner.team/stops/Cfamonu8"], ["https://tec.openplanner.team/stops/X601ccb", "https://tec.openplanner.team/stops/X602ahb"], ["https://tec.openplanner.team/stops/NC24aab", "https://tec.openplanner.team/stops/NC24akb"], ["https://tec.openplanner.team/stops/LClange2", "https://tec.openplanner.team/stops/LFdbruy2"], ["https://tec.openplanner.team/stops/Blasren2", "https://tec.openplanner.team/stops/Brixroi2"], ["https://tec.openplanner.team/stops/N351aga", "https://tec.openplanner.team/stops/X351abb"], ["https://tec.openplanner.team/stops/N117aba", "https://tec.openplanner.team/stops/N145aib"], ["https://tec.openplanner.team/stops/H2mm140b", "https://tec.openplanner.team/stops/H2mm144b"], ["https://tec.openplanner.team/stops/X813aaa", "https://tec.openplanner.team/stops/X857aaa"], ["https://tec.openplanner.team/stops/X661aoa", "https://tec.openplanner.team/stops/X839aca"], ["https://tec.openplanner.team/stops/N523abb", "https://tec.openplanner.team/stops/N523aca"], ["https://tec.openplanner.team/stops/X804aga", "https://tec.openplanner.team/stops/X804aka"], ["https://tec.openplanner.team/stops/LBseg--1", "https://tec.openplanner.team/stops/LBseg--2"], ["https://tec.openplanner.team/stops/Bclgfva1", "https://tec.openplanner.team/stops/Bdvmtve2"], ["https://tec.openplanner.team/stops/LeSdorf1", "https://tec.openplanner.team/stops/LmAgruf2"], ["https://tec.openplanner.team/stops/X775aeb", "https://tec.openplanner.team/stops/X775agb"], ["https://tec.openplanner.team/stops/N557aad", "https://tec.openplanner.team/stops/N557afb"], ["https://tec.openplanner.team/stops/N543cpa", "https://tec.openplanner.team/stops/N543cpb"], ["https://tec.openplanner.team/stops/N248aba", "https://tec.openplanner.team/stops/N248aca"], ["https://tec.openplanner.team/stops/X773aca", "https://tec.openplanner.team/stops/X911aob"], ["https://tec.openplanner.team/stops/Clpnapo1", "https://tec.openplanner.team/stops/Clpsola1"], ["https://tec.openplanner.team/stops/LToluik2", "https://tec.openplanner.team/stops/LTowijk1"], ["https://tec.openplanner.team/stops/Csbrago1", "https://tec.openplanner.team/stops/H1bi104b"], ["https://tec.openplanner.team/stops/N528agb", "https://tec.openplanner.team/stops/N528aoa"], ["https://tec.openplanner.team/stops/N531adb", "https://tec.openplanner.team/stops/N531afh"], ["https://tec.openplanner.team/stops/X607aab", "https://tec.openplanner.team/stops/X607aba"], ["https://tec.openplanner.team/stops/X773aha", "https://tec.openplanner.team/stops/X773ahb"], ["https://tec.openplanner.team/stops/H4mt219a", "https://tec.openplanner.team/stops/H4mt219b"], ["https://tec.openplanner.team/stops/N103aaa", "https://tec.openplanner.team/stops/N131afb"], ["https://tec.openplanner.team/stops/H1ms289b", "https://tec.openplanner.team/stops/H1ms290a"], ["https://tec.openplanner.team/stops/X769aba", "https://tec.openplanner.team/stops/X769apb"], ["https://tec.openplanner.team/stops/X664aoa", "https://tec.openplanner.team/stops/X729aca"], ["https://tec.openplanner.team/stops/Bcsgcou1", "https://tec.openplanner.team/stops/Blasbh52"], ["https://tec.openplanner.team/stops/X672aab", "https://tec.openplanner.team/stops/X672aba"], ["https://tec.openplanner.team/stops/X611ada", "https://tec.openplanner.team/stops/X646aca"], ["https://tec.openplanner.team/stops/Cgoloca1", "https://tec.openplanner.team/stops/Cjuaero1"], ["https://tec.openplanner.team/stops/Bcrnnra2", "https://tec.openplanner.team/stops/Bernpla1"], ["https://tec.openplanner.team/stops/Lbocruc2", "https://tec.openplanner.team/stops/Lsebonc2"], ["https://tec.openplanner.team/stops/Cvpbifu1", "https://tec.openplanner.team/stops/Cvpsawe1"], ["https://tec.openplanner.team/stops/H3so157b", "https://tec.openplanner.team/stops/H3so178b"], ["https://tec.openplanner.team/stops/Cna6che1", "https://tec.openplanner.team/stops/Cnafont2"], ["https://tec.openplanner.team/stops/Cfachap2", "https://tec.openplanner.team/stops/Cfanoci1"], ["https://tec.openplanner.team/stops/LSkchwa2", "https://tec.openplanner.team/stops/LSkwarf3"], ["https://tec.openplanner.team/stops/NL57aka", "https://tec.openplanner.team/stops/NL68abb"], ["https://tec.openplanner.team/stops/N874aja", "https://tec.openplanner.team/stops/N874ama"], ["https://tec.openplanner.team/stops/Bhmmgar1", "https://tec.openplanner.team/stops/Bhmmmon1"], ["https://tec.openplanner.team/stops/N140aaa", "https://tec.openplanner.team/stops/N146afa"], ["https://tec.openplanner.team/stops/LOlvill1", "https://tec.openplanner.team/stops/LOmpont2"], ["https://tec.openplanner.team/stops/Llgarmu1", "https://tec.openplanner.team/stops/Llgarmu3"], ["https://tec.openplanner.team/stops/LLrcour2", "https://tec.openplanner.team/stops/LLrfrai1"], ["https://tec.openplanner.team/stops/Causart1", "https://tec.openplanner.team/stops/Causart2"], ["https://tec.openplanner.team/stops/LHUecte1", "https://tec.openplanner.team/stops/LHUlieg1"], ["https://tec.openplanner.team/stops/LPLarbo1", "https://tec.openplanner.team/stops/LPLarbo2"], ["https://tec.openplanner.team/stops/X837aaa", "https://tec.openplanner.team/stops/X837aab"], ["https://tec.openplanner.team/stops/H1br127b", "https://tec.openplanner.team/stops/H1ha183a"], ["https://tec.openplanner.team/stops/X769apa", "https://tec.openplanner.team/stops/X769aqa"], ["https://tec.openplanner.team/stops/Bhalath1", "https://tec.openplanner.team/stops/Bhalgar1"], ["https://tec.openplanner.team/stops/Llgbatt1", "https://tec.openplanner.team/stops/Llgcamp1"], ["https://tec.openplanner.team/stops/Cctjust1", "https://tec.openplanner.team/stops/Cctrjus1"], ["https://tec.openplanner.team/stops/Bdvmc431", "https://tec.openplanner.team/stops/Bdvmsar2"], ["https://tec.openplanner.team/stops/LRGchap2", "https://tec.openplanner.team/stops/LRGeg--1"], ["https://tec.openplanner.team/stops/X640anb", "https://tec.openplanner.team/stops/X640aoa"], ["https://tec.openplanner.team/stops/N503aba", "https://tec.openplanner.team/stops/N509bda"], ["https://tec.openplanner.team/stops/Bincbbo3", "https://tec.openplanner.team/stops/Binccha1"], ["https://tec.openplanner.team/stops/LCljose1", "https://tec.openplanner.team/stops/LFdbruy1"], ["https://tec.openplanner.team/stops/H1cv101a", "https://tec.openplanner.team/stops/H5me105a"], ["https://tec.openplanner.team/stops/H4gr111b", "https://tec.openplanner.team/stops/H4ld129b"], ["https://tec.openplanner.team/stops/N501fjd", "https://tec.openplanner.team/stops/N501meb"], ["https://tec.openplanner.team/stops/Bovevri1", "https://tec.openplanner.team/stops/Bovevri2"], ["https://tec.openplanner.team/stops/LBSchpl2", "https://tec.openplanner.team/stops/LBSvi522"], ["https://tec.openplanner.team/stops/LNveg--2", "https://tec.openplanner.team/stops/LNvrout1"], ["https://tec.openplanner.team/stops/N539aia", "https://tec.openplanner.team/stops/N539apb"], ["https://tec.openplanner.team/stops/H4ty296a", "https://tec.openplanner.team/stops/H4ty379a"], ["https://tec.openplanner.team/stops/H4bd109a", "https://tec.openplanner.team/stops/H4te257b"], ["https://tec.openplanner.team/stops/H4lu125a", "https://tec.openplanner.team/stops/H4mo142d"], ["https://tec.openplanner.team/stops/Brebgar1", "https://tec.openplanner.team/stops/Brebrha1"], ["https://tec.openplanner.team/stops/H2mo119b", "https://tec.openplanner.team/stops/H2mo123a"], ["https://tec.openplanner.team/stops/X346afa", "https://tec.openplanner.team/stops/X346alb"], ["https://tec.openplanner.team/stops/X836aea", "https://tec.openplanner.team/stops/X836aib"], ["https://tec.openplanner.team/stops/LeUath%C3%A41", "https://tec.openplanner.team/stops/LeUrsi-*"], ["https://tec.openplanner.team/stops/LWazoni1", "https://tec.openplanner.team/stops/LWazoni2"], ["https://tec.openplanner.team/stops/H2sb235a", "https://tec.openplanner.team/stops/H2sb235b"], ["https://tec.openplanner.team/stops/H1cu113a", "https://tec.openplanner.team/stops/H1hn206a"], ["https://tec.openplanner.team/stops/H1po132b", "https://tec.openplanner.team/stops/H1po137b"], ["https://tec.openplanner.team/stops/H4ar178a", "https://tec.openplanner.team/stops/H4pl136a"], ["https://tec.openplanner.team/stops/LFsconc1", "https://tec.openplanner.team/stops/LFsconc2"], ["https://tec.openplanner.team/stops/N534cbg", "https://tec.openplanner.team/stops/N534cbh"], ["https://tec.openplanner.team/stops/Lligara2", "https://tec.openplanner.team/stops/Lvopaqu2"], ["https://tec.openplanner.team/stops/Cdagoss1", "https://tec.openplanner.team/stops/Cmabegh2"], ["https://tec.openplanner.team/stops/LeLcrem1", "https://tec.openplanner.team/stops/LwYbrkr1"], ["https://tec.openplanner.team/stops/H2na135a", "https://tec.openplanner.team/stops/H3so170b"], ["https://tec.openplanner.team/stops/X836aaa", "https://tec.openplanner.team/stops/X837aha"], ["https://tec.openplanner.team/stops/LcRkirc2", "https://tec.openplanner.team/stops/LcRmich2"], ["https://tec.openplanner.team/stops/LaMhe831", "https://tec.openplanner.team/stops/LmDkoel1"], ["https://tec.openplanner.team/stops/LeLcrem1", "https://tec.openplanner.team/stops/LSoprom1"], ["https://tec.openplanner.team/stops/X601bja", "https://tec.openplanner.team/stops/X601dia"], ["https://tec.openplanner.team/stops/H1hl127a", "https://tec.openplanner.team/stops/H1hl128a"], ["https://tec.openplanner.team/stops/N540ama", "https://tec.openplanner.team/stops/N540ana"], ["https://tec.openplanner.team/stops/H1gg145a", "https://tec.openplanner.team/stops/H1ry136a"], ["https://tec.openplanner.team/stops/Cbtgemi2", "https://tec.openplanner.team/stops/Csdetan1"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LCxross2"], ["https://tec.openplanner.team/stops/LHYdogn1", "https://tec.openplanner.team/stops/LHYnoid1"], ["https://tec.openplanner.team/stops/LJEerno1", "https://tec.openplanner.team/stops/LJEloum2"], ["https://tec.openplanner.team/stops/N506aaa", "https://tec.openplanner.team/stops/N506aga"], ["https://tec.openplanner.team/stops/Bpelegl2", "https://tec.openplanner.team/stops/Bpelf962"], ["https://tec.openplanner.team/stops/Bhevgar1", "https://tec.openplanner.team/stops/Bhevhha2"], ["https://tec.openplanner.team/stops/Btancnd1", "https://tec.openplanner.team/stops/Btancre1"], ["https://tec.openplanner.team/stops/X637aga", "https://tec.openplanner.team/stops/X637agc"], ["https://tec.openplanner.team/stops/N501gea", "https://tec.openplanner.team/stops/N501lpa"], ["https://tec.openplanner.team/stops/LBPboir1", "https://tec.openplanner.team/stops/LBPrueg1"], ["https://tec.openplanner.team/stops/H1ls129a", "https://tec.openplanner.team/stops/H1ls130a"], ["https://tec.openplanner.team/stops/Cjumarc3", "https://tec.openplanner.team/stops/Cjupuis1"], ["https://tec.openplanner.team/stops/Canh1941", "https://tec.openplanner.team/stops/Canrobe1"], ["https://tec.openplanner.team/stops/Bottcpl2", "https://tec.openplanner.team/stops/Bottpre2"], ["https://tec.openplanner.team/stops/Lrcastr1", "https://tec.openplanner.team/stops/Lrcastr2"], ["https://tec.openplanner.team/stops/H4ca120a", "https://tec.openplanner.team/stops/H4ca121b"], ["https://tec.openplanner.team/stops/N114aab", "https://tec.openplanner.team/stops/X318aca"], ["https://tec.openplanner.team/stops/X775agb", "https://tec.openplanner.team/stops/X775ana"], ["https://tec.openplanner.team/stops/LBrneli2", "https://tec.openplanner.team/stops/LMAwavr2"], ["https://tec.openplanner.team/stops/Lanrois1", "https://tec.openplanner.team/stops/Lanrois2"], ["https://tec.openplanner.team/stops/X834aca", "https://tec.openplanner.team/stops/X834adb"], ["https://tec.openplanner.team/stops/N229aab", "https://tec.openplanner.team/stops/N270agb"], ["https://tec.openplanner.team/stops/H4os223a", "https://tec.openplanner.team/stops/H5wo132b"], ["https://tec.openplanner.team/stops/H2ca115a", "https://tec.openplanner.team/stops/H2ca116b"], ["https://tec.openplanner.team/stops/LBCaube1", "https://tec.openplanner.team/stops/LBJchau*"], ["https://tec.openplanner.team/stops/H4me213b", "https://tec.openplanner.team/stops/H4mt221a"], ["https://tec.openplanner.team/stops/LBIpont2", "https://tec.openplanner.team/stops/LFOchpl2"], ["https://tec.openplanner.team/stops/H1ho131a", "https://tec.openplanner.team/stops/H1ho131b"], ["https://tec.openplanner.team/stops/X664aca", "https://tec.openplanner.team/stops/X664acb"], ["https://tec.openplanner.team/stops/N543bmb", "https://tec.openplanner.team/stops/NC23agb"], ["https://tec.openplanner.team/stops/Cmlgoff2", "https://tec.openplanner.team/stops/Cmltomb1"], ["https://tec.openplanner.team/stops/Bblaast1", "https://tec.openplanner.team/stops/Bblavba1"], ["https://tec.openplanner.team/stops/N538ara", "https://tec.openplanner.team/stops/N538arb"], ["https://tec.openplanner.team/stops/Cchmonu3", "https://tec.openplanner.team/stops/Cchmonu4"], ["https://tec.openplanner.team/stops/Bbststa1", "https://tec.openplanner.team/stops/Blpglon2"], ["https://tec.openplanner.team/stops/X982abb", "https://tec.openplanner.team/stops/X982aka"], ["https://tec.openplanner.team/stops/Lghlieg1", "https://tec.openplanner.team/stops/Lghraul1"], ["https://tec.openplanner.team/stops/H1er111a", "https://tec.openplanner.team/stops/H1er111b"], ["https://tec.openplanner.team/stops/N539ada", "https://tec.openplanner.team/stops/N539alb"], ["https://tec.openplanner.team/stops/LJeeg--1", "https://tec.openplanner.team/stops/LJeeg--2"], ["https://tec.openplanner.team/stops/X727ada", "https://tec.openplanner.team/stops/X727aea"], ["https://tec.openplanner.team/stops/NL37aia", "https://tec.openplanner.team/stops/NL37aib"], ["https://tec.openplanner.team/stops/N548agc", "https://tec.openplanner.team/stops/N569anb"], ["https://tec.openplanner.team/stops/Bitreco1", "https://tec.openplanner.team/stops/Bitreco2"], ["https://tec.openplanner.team/stops/Blmlcle1", "https://tec.openplanner.team/stops/Blmlmco2"], ["https://tec.openplanner.team/stops/Lhuecol1", "https://tec.openplanner.team/stops/Lmnhorl1"], ["https://tec.openplanner.team/stops/LARparc2", "https://tec.openplanner.team/stops/LVIpneu2"], ["https://tec.openplanner.team/stops/N222aaa", "https://tec.openplanner.team/stops/N222aba"], ["https://tec.openplanner.team/stops/N532aga", "https://tec.openplanner.team/stops/N532anb"], ["https://tec.openplanner.team/stops/Lsecris1", "https://tec.openplanner.team/stops/Lsecris2"], ["https://tec.openplanner.team/stops/N506aka", "https://tec.openplanner.team/stops/N506amb"], ["https://tec.openplanner.team/stops/LRGderr1", "https://tec.openplanner.team/stops/LRGpt5-3"], ["https://tec.openplanner.team/stops/H5is168b", "https://tec.openplanner.team/stops/H5is169b"], ["https://tec.openplanner.team/stops/LEN42--1", "https://tec.openplanner.team/stops/LENindu2"], ["https://tec.openplanner.team/stops/X363abb", "https://tec.openplanner.team/stops/X363acb"], ["https://tec.openplanner.team/stops/X939abb", "https://tec.openplanner.team/stops/X939acb"], ["https://tec.openplanner.team/stops/H5at111b", "https://tec.openplanner.team/stops/H5at115b"], ["https://tec.openplanner.team/stops/NB33aka", "https://tec.openplanner.team/stops/NB33alb"], ["https://tec.openplanner.team/stops/Canbruy2", "https://tec.openplanner.team/stops/Canegbr2"], ["https://tec.openplanner.team/stops/Bnivgam2", "https://tec.openplanner.team/stops/Bnivsoi1"], ["https://tec.openplanner.team/stops/X601ana", "https://tec.openplanner.team/stops/X601cea"], ["https://tec.openplanner.team/stops/N503abb", "https://tec.openplanner.team/stops/N509bda"], ["https://tec.openplanner.team/stops/Cfmgrmo2", "https://tec.openplanner.team/stops/Cfmmart1"], ["https://tec.openplanner.team/stops/X982aaa", "https://tec.openplanner.team/stops/X982bsb"], ["https://tec.openplanner.team/stops/H1po130a", "https://tec.openplanner.team/stops/H1po154a"], ["https://tec.openplanner.team/stops/Cci4bra2", "https://tec.openplanner.team/stops/NC02apa"], ["https://tec.openplanner.team/stops/LMFmerl1", "https://tec.openplanner.team/stops/LMFmoul1"], ["https://tec.openplanner.team/stops/N390adb", "https://tec.openplanner.team/stops/N390aea"], ["https://tec.openplanner.team/stops/X812ara", "https://tec.openplanner.team/stops/X812asa"], ["https://tec.openplanner.team/stops/X767aib", "https://tec.openplanner.team/stops/X768aab"], ["https://tec.openplanner.team/stops/Btgrdoc1", "https://tec.openplanner.team/stops/N584aea"], ["https://tec.openplanner.team/stops/X783aaa", "https://tec.openplanner.team/stops/X783aba"], ["https://tec.openplanner.team/stops/N571ajb", "https://tec.openplanner.team/stops/N571akb"], ["https://tec.openplanner.team/stops/H2se113a", "https://tec.openplanner.team/stops/H2se114b"], ["https://tec.openplanner.team/stops/X659aqa", "https://tec.openplanner.team/stops/X659aqb"], ["https://tec.openplanner.team/stops/Bwatmco1", "https://tec.openplanner.team/stops/Bwatmco2"], ["https://tec.openplanner.team/stops/X615beb", "https://tec.openplanner.team/stops/X695aaa"], ["https://tec.openplanner.team/stops/LMEense1", "https://tec.openplanner.team/stops/LMEwerg2"], ["https://tec.openplanner.team/stops/H1eo105a", "https://tec.openplanner.team/stops/H1mj128b"], ["https://tec.openplanner.team/stops/X735aab", "https://tec.openplanner.team/stops/X736ada"], ["https://tec.openplanner.team/stops/H1as101b", "https://tec.openplanner.team/stops/H1mv240b"], ["https://tec.openplanner.team/stops/LLrpape1", "https://tec.openplanner.team/stops/LLrpape2"], ["https://tec.openplanner.team/stops/H2be101a", "https://tec.openplanner.team/stops/H2mg137a"], ["https://tec.openplanner.team/stops/H1cd112a", "https://tec.openplanner.team/stops/H1ne149a"], ["https://tec.openplanner.team/stops/X623aba", "https://tec.openplanner.team/stops/X623adb"], ["https://tec.openplanner.team/stops/LNCecdo1", "https://tec.openplanner.team/stops/LPLc65-1"], ["https://tec.openplanner.team/stops/X899aba", "https://tec.openplanner.team/stops/X899ahb"], ["https://tec.openplanner.team/stops/LOV48--1", "https://tec.openplanner.team/stops/LOV62--1"], ["https://tec.openplanner.team/stops/X953afa", "https://tec.openplanner.team/stops/X954afb"], ["https://tec.openplanner.team/stops/Bohnbra1", "https://tec.openplanner.team/stops/Bohnrsc1"], ["https://tec.openplanner.team/stops/N221aaa", "https://tec.openplanner.team/stops/X221aac"], ["https://tec.openplanner.team/stops/Lveabat1", "https://tec.openplanner.team/stops/Lvehoug2"], ["https://tec.openplanner.team/stops/LOTsav-2", "https://tec.openplanner.team/stops/LOTtong1"], ["https://tec.openplanner.team/stops/NL68aea", "https://tec.openplanner.team/stops/NL68aeb"], ["https://tec.openplanner.team/stops/Cmomoul3", "https://tec.openplanner.team/stops/Cmomoul4"], ["https://tec.openplanner.team/stops/Bnilwal2", "https://tec.openplanner.team/stops/Bwsppos1"], ["https://tec.openplanner.team/stops/LAYfoot1", "https://tec.openplanner.team/stops/LFLcarr1"], ["https://tec.openplanner.team/stops/LBlchin2", "https://tec.openplanner.team/stops/LBlhaut1"], ["https://tec.openplanner.team/stops/LOTawan2", "https://tec.openplanner.team/stops/LOTcloe1"], ["https://tec.openplanner.team/stops/X634acb", "https://tec.openplanner.team/stops/X634ala"], ["https://tec.openplanner.team/stops/LHNcoll1", "https://tec.openplanner.team/stops/LHNcreh1"], ["https://tec.openplanner.team/stops/N544ada", "https://tec.openplanner.team/stops/N544aeb"], ["https://tec.openplanner.team/stops/N118ava", "https://tec.openplanner.team/stops/N118bba"], ["https://tec.openplanner.team/stops/NH01ala", "https://tec.openplanner.team/stops/NH01apa"], ["https://tec.openplanner.team/stops/N212atb", "https://tec.openplanner.team/stops/N213aca"], ["https://tec.openplanner.team/stops/X801caa", "https://tec.openplanner.team/stops/X801clb"], ["https://tec.openplanner.team/stops/X811ana", "https://tec.openplanner.team/stops/X811anb"], ["https://tec.openplanner.team/stops/X765aaa", "https://tec.openplanner.team/stops/X765abb"], ["https://tec.openplanner.team/stops/X654aib", "https://tec.openplanner.team/stops/X654aka"], ["https://tec.openplanner.team/stops/H4pq119a", "https://tec.openplanner.team/stops/H4wg122b"], ["https://tec.openplanner.team/stops/X999aaa", "https://tec.openplanner.team/stops/X999aba"], ["https://tec.openplanner.team/stops/Lbocomm1", "https://tec.openplanner.team/stops/Lstchu-4"], ["https://tec.openplanner.team/stops/N135aga", "https://tec.openplanner.team/stops/N135atb"], ["https://tec.openplanner.team/stops/Bixlaca2", "https://tec.openplanner.team/stops/Buccgob2"], ["https://tec.openplanner.team/stops/Cfvombo2", "https://tec.openplanner.team/stops/Cfvplac1"], ["https://tec.openplanner.team/stops/LaRkape2", "https://tec.openplanner.team/stops/LnUcamp2"], ["https://tec.openplanner.team/stops/Bbldvaa1", "https://tec.openplanner.team/stops/Bbldvaa2"], ["https://tec.openplanner.team/stops/LRtcarr2", "https://tec.openplanner.team/stops/LRteg--*"], ["https://tec.openplanner.team/stops/N214ada", "https://tec.openplanner.team/stops/N214adb"], ["https://tec.openplanner.team/stops/LREairp2", "https://tec.openplanner.team/stops/LREchal2"], ["https://tec.openplanner.team/stops/Bwatmbv1", "https://tec.openplanner.team/stops/Bwatmbv2"], ["https://tec.openplanner.team/stops/Cchwate4", "https://tec.openplanner.team/stops/CMwate2"], ["https://tec.openplanner.team/stops/X747aeb", "https://tec.openplanner.team/stops/X747afa"], ["https://tec.openplanner.team/stops/Cchsud03", "https://tec.openplanner.team/stops/CMsud1"], ["https://tec.openplanner.team/stops/N507akb", "https://tec.openplanner.team/stops/N512ama"], ["https://tec.openplanner.team/stops/H1hc126b", "https://tec.openplanner.team/stops/H1hc152a"], ["https://tec.openplanner.team/stops/X773aga", "https://tec.openplanner.team/stops/X773ahb"], ["https://tec.openplanner.team/stops/H3so163a", "https://tec.openplanner.team/stops/H3so166a"], ["https://tec.openplanner.team/stops/LLLvill1", "https://tec.openplanner.team/stops/X576ada"], ["https://tec.openplanner.team/stops/H2lc145b", "https://tec.openplanner.team/stops/H2ll200b"], ["https://tec.openplanner.team/stops/LXfcore1", "https://tec.openplanner.team/stops/LXftche1"], ["https://tec.openplanner.team/stops/H2mm144a", "https://tec.openplanner.team/stops/H2mm144b"], ["https://tec.openplanner.team/stops/X741abd", "https://tec.openplanner.team/stops/X741aca"], ["https://tec.openplanner.team/stops/Lfhhaso2", "https://tec.openplanner.team/stops/Lfhxhor1"], ["https://tec.openplanner.team/stops/Lmnchal2", "https://tec.openplanner.team/stops/Lsmcime*"], ["https://tec.openplanner.team/stops/N139ada", "https://tec.openplanner.team/stops/N139adb"], ["https://tec.openplanner.team/stops/LWNwavr2", "https://tec.openplanner.team/stops/LWNwavr3"], ["https://tec.openplanner.team/stops/Csyjumo2", "https://tec.openplanner.team/stops/Csyplac1"], ["https://tec.openplanner.team/stops/Cmbborn1", "https://tec.openplanner.team/stops/Csufrom5"], ["https://tec.openplanner.team/stops/LrAberg1", "https://tec.openplanner.team/stops/LrAmuhl2"], ["https://tec.openplanner.team/stops/N236acb", "https://tec.openplanner.team/stops/N254agb"], ["https://tec.openplanner.team/stops/LVlroua1", "https://tec.openplanner.team/stops/LVlroua2"], ["https://tec.openplanner.team/stops/Cfaauln2", "https://tec.openplanner.team/stops/Cfanvmo1"], ["https://tec.openplanner.team/stops/Clgpavi1", "https://tec.openplanner.team/stops/Csshouy2"], ["https://tec.openplanner.team/stops/X639ana", "https://tec.openplanner.team/stops/X639anb"], ["https://tec.openplanner.team/stops/H1do108b", "https://tec.openplanner.team/stops/H1do108e"], ["https://tec.openplanner.team/stops/N331aha", "https://tec.openplanner.team/stops/N331ahb"], ["https://tec.openplanner.team/stops/H2sb266a", "https://tec.openplanner.team/stops/H2sb266b"], ["https://tec.openplanner.team/stops/Bwatcap1", "https://tec.openplanner.team/stops/Bwatvco1"], ["https://tec.openplanner.team/stops/H2ll186b", "https://tec.openplanner.team/stops/H2ll258a"], ["https://tec.openplanner.team/stops/Lghhaut1", "https://tec.openplanner.team/stops/Lghlogi1"], ["https://tec.openplanner.team/stops/LNCdoma4", "https://tec.openplanner.team/stops/LNClila2"], ["https://tec.openplanner.team/stops/H1he108b", "https://tec.openplanner.team/stops/H1he111b"], ["https://tec.openplanner.team/stops/LDOandr1", "https://tec.openplanner.team/stops/LDObran1"], ["https://tec.openplanner.team/stops/X369aaa", "https://tec.openplanner.team/stops/X369aab"], ["https://tec.openplanner.team/stops/Bsoihci2", "https://tec.openplanner.team/stops/H3so170a"], ["https://tec.openplanner.team/stops/X952afa", "https://tec.openplanner.team/stops/X952afb"], ["https://tec.openplanner.team/stops/N553aca", "https://tec.openplanner.team/stops/N553aoa"], ["https://tec.openplanner.team/stops/LHocroi1", "https://tec.openplanner.team/stops/LJedonc3"], ["https://tec.openplanner.team/stops/Lqbeg--2", "https://tec.openplanner.team/stops/LSAtrih2"], ["https://tec.openplanner.team/stops/Buccham2", "https://tec.openplanner.team/stops/Bwbfhip1"], ["https://tec.openplanner.team/stops/H2ll178a", "https://tec.openplanner.team/stops/H2ll184a"], ["https://tec.openplanner.team/stops/H4cw104a", "https://tec.openplanner.team/stops/H4cw107a"], ["https://tec.openplanner.team/stops/N121aaa", "https://tec.openplanner.team/stops/N158aba"], ["https://tec.openplanner.team/stops/N211aib", "https://tec.openplanner.team/stops/N211azb"], ["https://tec.openplanner.team/stops/X667ada", "https://tec.openplanner.team/stops/X667adb"], ["https://tec.openplanner.team/stops/H1tt104a", "https://tec.openplanner.team/stops/H1tt107a"], ["https://tec.openplanner.team/stops/H4ga149a", "https://tec.openplanner.team/stops/H4ga149b"], ["https://tec.openplanner.team/stops/H4hu114a", "https://tec.openplanner.team/stops/H4hu118a"], ["https://tec.openplanner.team/stops/X713afa", "https://tec.openplanner.team/stops/X713ahb"], ["https://tec.openplanner.team/stops/LHHronh2", "https://tec.openplanner.team/stops/LHHtill2"], ["https://tec.openplanner.team/stops/LROcent1", "https://tec.openplanner.team/stops/LROhael1"], ["https://tec.openplanner.team/stops/X662aha", "https://tec.openplanner.team/stops/X662aqa"], ["https://tec.openplanner.team/stops/Baudulb1", "https://tec.openplanner.team/stops/Baudulb2"], ["https://tec.openplanner.team/stops/Crofrio1", "https://tec.openplanner.team/stops/Crofrio2"], ["https://tec.openplanner.team/stops/X938aab", "https://tec.openplanner.team/stops/X938acb"], ["https://tec.openplanner.team/stops/Btlbtbe3", "https://tec.openplanner.team/stops/Btlbtbe4"], ["https://tec.openplanner.team/stops/N512ana", "https://tec.openplanner.team/stops/N512anb"], ["https://tec.openplanner.team/stops/X725ahb", "https://tec.openplanner.team/stops/X771ala"], ["https://tec.openplanner.team/stops/LCPscay1", "https://tec.openplanner.team/stops/LCPscay2"], ["https://tec.openplanner.team/stops/X733aib", "https://tec.openplanner.team/stops/X733alb"], ["https://tec.openplanner.team/stops/LLrchat1", "https://tec.openplanner.team/stops/LLrisa-*"], ["https://tec.openplanner.team/stops/H1fr116a", "https://tec.openplanner.team/stops/H1fr122a"], ["https://tec.openplanner.team/stops/LJAferm1", "https://tec.openplanner.team/stops/LJAmari2"], ["https://tec.openplanner.team/stops/X827aab", "https://tec.openplanner.team/stops/X828aab"], ["https://tec.openplanner.team/stops/LOmvill2", "https://tec.openplanner.team/stops/LOmvill4"], ["https://tec.openplanner.team/stops/LCEboll1", "https://tec.openplanner.team/stops/LCEec--1"], ["https://tec.openplanner.team/stops/Bbaubon1", "https://tec.openplanner.team/stops/Bbauegl2"], ["https://tec.openplanner.team/stops/X661aea", "https://tec.openplanner.team/stops/X661aia"], ["https://tec.openplanner.team/stops/X661awb", "https://tec.openplanner.team/stops/X661ayb"], ["https://tec.openplanner.team/stops/H4mo135a", "https://tec.openplanner.team/stops/H4mo155b"], ["https://tec.openplanner.team/stops/H1qu110b", "https://tec.openplanner.team/stops/H1qu120a"], ["https://tec.openplanner.team/stops/H2sb226b", "https://tec.openplanner.team/stops/H2sb242a"], ["https://tec.openplanner.team/stops/Cjuepee1", "https://tec.openplanner.team/stops/Cjugill4"], ["https://tec.openplanner.team/stops/Cmtchet1", "https://tec.openplanner.team/stops/Cmtrbla1"], ["https://tec.openplanner.team/stops/N308apb", "https://tec.openplanner.team/stops/N308bjb"], ["https://tec.openplanner.team/stops/N244ala", "https://tec.openplanner.team/stops/N252acd"], ["https://tec.openplanner.team/stops/Ccabois1", "https://tec.openplanner.team/stops/Cclrgiv2"], ["https://tec.openplanner.team/stops/Cgogrco1", "https://tec.openplanner.team/stops/Cgorosa2"], ["https://tec.openplanner.team/stops/N562afa", "https://tec.openplanner.team/stops/N562bka"], ["https://tec.openplanner.team/stops/X351acb", "https://tec.openplanner.team/stops/X351adb"], ["https://tec.openplanner.team/stops/LLOberl2", "https://tec.openplanner.team/stops/LLOspin1"], ["https://tec.openplanner.team/stops/X789aha", "https://tec.openplanner.team/stops/X789ahd"], ["https://tec.openplanner.team/stops/N106afa", "https://tec.openplanner.team/stops/N106aha"], ["https://tec.openplanner.team/stops/N110aga", "https://tec.openplanner.team/stops/N110agb"], ["https://tec.openplanner.team/stops/X750bna", "https://tec.openplanner.team/stops/X784aab"], ["https://tec.openplanner.team/stops/LHUcamp2", "https://tec.openplanner.team/stops/LTicent2"], ["https://tec.openplanner.team/stops/X999aia", "https://tec.openplanner.team/stops/X999ata"], ["https://tec.openplanner.team/stops/N501cva", "https://tec.openplanner.team/stops/N501cxa"], ["https://tec.openplanner.team/stops/Brxmbos1", "https://tec.openplanner.team/stops/Brxmcha1"], ["https://tec.openplanner.team/stops/N110aba", "https://tec.openplanner.team/stops/N123adb"], ["https://tec.openplanner.team/stops/N513ana", "https://tec.openplanner.team/stops/N513axa"], ["https://tec.openplanner.team/stops/X351ada", "https://tec.openplanner.team/stops/X994ada"], ["https://tec.openplanner.team/stops/X879ana", "https://tec.openplanner.team/stops/X898aab"], ["https://tec.openplanner.team/stops/LSPfrai1", "https://tec.openplanner.team/stops/LSPpelz1"], ["https://tec.openplanner.team/stops/LFAscie2", "https://tec.openplanner.team/stops/LMffoot1"], ["https://tec.openplanner.team/stops/X982apa", "https://tec.openplanner.team/stops/X982aqa"], ["https://tec.openplanner.team/stops/N501agb", "https://tec.openplanner.team/stops/N501aha"], ["https://tec.openplanner.team/stops/LCxross1", "https://tec.openplanner.team/stops/LCxwade1"], ["https://tec.openplanner.team/stops/Ccuseba2", "https://tec.openplanner.team/stops/Cgyruis1"], ["https://tec.openplanner.team/stops/H4ms144b", "https://tec.openplanner.team/stops/H4ms146b"], ["https://tec.openplanner.team/stops/N150aga", "https://tec.openplanner.team/stops/N150agb"], ["https://tec.openplanner.team/stops/Bwavgar3", "https://tec.openplanner.team/stops/Bwavgar8"], ["https://tec.openplanner.team/stops/Cwfdame1", "https://tec.openplanner.team/stops/Cwfnamu1"], ["https://tec.openplanner.team/stops/Lbrfoid1", "https://tec.openplanner.team/stops/Lbrresi2"], ["https://tec.openplanner.team/stops/Bmsgfon1", "https://tec.openplanner.team/stops/Bmsgfon2"], ["https://tec.openplanner.team/stops/X926aba", "https://tec.openplanner.team/stops/X926abb"], ["https://tec.openplanner.team/stops/N512aia", "https://tec.openplanner.team/stops/NL68adc"], ["https://tec.openplanner.team/stops/X616aba", "https://tec.openplanner.team/stops/X616aea"], ["https://tec.openplanner.team/stops/LNCdoma2", "https://tec.openplanner.team/stops/LRRchen2"], ["https://tec.openplanner.team/stops/X897aja", "https://tec.openplanner.team/stops/X897amb"], ["https://tec.openplanner.team/stops/Cfcgar1", "https://tec.openplanner.team/stops/Cfcpcov2"], ["https://tec.openplanner.team/stops/LMYchpl1", "https://tec.openplanner.team/stops/X597ala"], ["https://tec.openplanner.team/stops/NL78aea", "https://tec.openplanner.team/stops/NL78afa"], ["https://tec.openplanner.team/stops/N501ebz", "https://tec.openplanner.team/stops/N501edb"], ["https://tec.openplanner.team/stops/Bbstchn1", "https://tec.openplanner.team/stops/Bbsttab1"], ["https://tec.openplanner.team/stops/X548afa", "https://tec.openplanner.team/stops/X548afb"], ["https://tec.openplanner.team/stops/LCLstat2", "https://tec.openplanner.team/stops/LOccarr1"], ["https://tec.openplanner.team/stops/Bhoeboo2", "https://tec.openplanner.team/stops/Blhuibm1"], ["https://tec.openplanner.team/stops/Cblcen3", "https://tec.openplanner.team/stops/Cblcent4"], ["https://tec.openplanner.team/stops/X782aea", "https://tec.openplanner.team/stops/X782afb"], ["https://tec.openplanner.team/stops/LCPvign1", "https://tec.openplanner.team/stops/LOnec--1"], ["https://tec.openplanner.team/stops/LhEtivo1", "https://tec.openplanner.team/stops/LlNbruc2"], ["https://tec.openplanner.team/stops/LOMdTEC1", "https://tec.openplanner.team/stops/LOMtomb2"], ["https://tec.openplanner.team/stops/N528aga", "https://tec.openplanner.team/stops/N528agb"], ["https://tec.openplanner.team/stops/Cobbusc1", "https://tec.openplanner.team/stops/Cobmara1"], ["https://tec.openplanner.team/stops/LLxalle2", "https://tec.openplanner.team/stops/LVIcarm2"], ["https://tec.openplanner.team/stops/Cbzfrom1", "https://tec.openplanner.team/stops/Creha761"], ["https://tec.openplanner.team/stops/LFOchab1", "https://tec.openplanner.team/stops/LHGvill2"], ["https://tec.openplanner.team/stops/N501aka", "https://tec.openplanner.team/stops/N501aqb"], ["https://tec.openplanner.team/stops/H4eq123b", "https://tec.openplanner.team/stops/H4rc231a"], ["https://tec.openplanner.team/stops/N118afb", "https://tec.openplanner.team/stops/N118ata"], ["https://tec.openplanner.team/stops/Cmbcime4", "https://tec.openplanner.team/stops/Crcrlf1"], ["https://tec.openplanner.team/stops/X657alb", "https://tec.openplanner.team/stops/X671aaa"], ["https://tec.openplanner.team/stops/X939acb", "https://tec.openplanner.team/stops/X939aeb"], ["https://tec.openplanner.team/stops/X805aka", "https://tec.openplanner.team/stops/X806aja"], ["https://tec.openplanner.team/stops/X723aba", "https://tec.openplanner.team/stops/X724aha"], ["https://tec.openplanner.team/stops/H1bu139a", "https://tec.openplanner.team/stops/H1bu141a"], ["https://tec.openplanner.team/stops/X921afa", "https://tec.openplanner.team/stops/X921aga"], ["https://tec.openplanner.team/stops/Lpesart1", "https://tec.openplanner.team/stops/Lpesart2"], ["https://tec.openplanner.team/stops/LmD163-2", "https://tec.openplanner.team/stops/LmDhoch2"], ["https://tec.openplanner.team/stops/LHAbont1", "https://tec.openplanner.team/stops/LHAmonu1"], ["https://tec.openplanner.team/stops/Buccpor2", "https://tec.openplanner.team/stops/Bwbfhip2"], ["https://tec.openplanner.team/stops/Clb4bra1", "https://tec.openplanner.team/stops/Clbentr2"], ["https://tec.openplanner.team/stops/X791aaa", "https://tec.openplanner.team/stops/X791ada"], ["https://tec.openplanner.team/stops/LLxeclu1", "https://tec.openplanner.team/stops/LVIcarm2"], ["https://tec.openplanner.team/stops/Cmlbruy1", "https://tec.openplanner.team/stops/Cmlbruy2"], ["https://tec.openplanner.team/stops/Cgystbe1", "https://tec.openplanner.team/stops/Cmtdepo1"], ["https://tec.openplanner.team/stops/LEHmarc1", "https://tec.openplanner.team/stops/LEHmarc2"], ["https://tec.openplanner.team/stops/Bwspcar2", "https://tec.openplanner.team/stops/Bwspjon2"], ["https://tec.openplanner.team/stops/X664aga", "https://tec.openplanner.team/stops/X664aia"], ["https://tec.openplanner.team/stops/Bjodpvi1", "https://tec.openplanner.team/stops/Bjodpvi2"], ["https://tec.openplanner.team/stops/Bneehou1", "https://tec.openplanner.team/stops/Bneervc1"], ["https://tec.openplanner.team/stops/X634aia", "https://tec.openplanner.team/stops/X634aib"], ["https://tec.openplanner.team/stops/LSzcoop2", "https://tec.openplanner.team/stops/N506bta"], ["https://tec.openplanner.team/stops/Cladura3", "https://tec.openplanner.team/stops/NC23aeb"], ["https://tec.openplanner.team/stops/NC02aab", "https://tec.openplanner.team/stops/NC02bbb"], ["https://tec.openplanner.team/stops/Cgylami2", "https://tec.openplanner.team/stops/Cracave2"], ["https://tec.openplanner.team/stops/N506bua", "https://tec.openplanner.team/stops/N506bva"], ["https://tec.openplanner.team/stops/LAYcher2", "https://tec.openplanner.team/stops/LAYpl--2"], ["https://tec.openplanner.team/stops/H4an111a", "https://tec.openplanner.team/stops/H4an111b"], ["https://tec.openplanner.team/stops/Livrame2", "https://tec.openplanner.team/stops/LRagrch2"], ["https://tec.openplanner.team/stops/Bhevcur1", "https://tec.openplanner.team/stops/Bvilcim1"], ["https://tec.openplanner.team/stops/N501jaa", "https://tec.openplanner.team/stops/N501jcb"], ["https://tec.openplanner.team/stops/N506aab", "https://tec.openplanner.team/stops/N506aga"], ["https://tec.openplanner.team/stops/X801bxa", "https://tec.openplanner.team/stops/X802azb"], ["https://tec.openplanner.team/stops/Lalchar1", "https://tec.openplanner.team/stops/Lalwaro1"], ["https://tec.openplanner.team/stops/H1pw121b", "https://tec.openplanner.team/stops/H1pw122b"], ["https://tec.openplanner.team/stops/Cptberg2", "https://tec.openplanner.team/stops/Cptplac5"], ["https://tec.openplanner.team/stops/N532ama", "https://tec.openplanner.team/stops/N532amb"], ["https://tec.openplanner.team/stops/H2mg140b", "https://tec.openplanner.team/stops/H2mg140c"], ["https://tec.openplanner.team/stops/H1ci103a", "https://tec.openplanner.team/stops/H1ci106a"], ["https://tec.openplanner.team/stops/NL57aeb", "https://tec.openplanner.team/stops/NL68afa"], ["https://tec.openplanner.team/stops/H4rm108b", "https://tec.openplanner.team/stops/H4ta120b"], ["https://tec.openplanner.team/stops/Csuegli", "https://tec.openplanner.team/stops/Csytouq1"], ["https://tec.openplanner.team/stops/Cvrfema1", "https://tec.openplanner.team/stops/Cvrhab22"], ["https://tec.openplanner.team/stops/LaMthei2", "https://tec.openplanner.team/stops/LeIjoha1"], ["https://tec.openplanner.team/stops/N541aaa", "https://tec.openplanner.team/stops/N541aca"], ["https://tec.openplanner.team/stops/LAWcite1", "https://tec.openplanner.team/stops/LAWcite3"], ["https://tec.openplanner.team/stops/Cmohotv3", "https://tec.openplanner.team/stops/Cmopn4"], ["https://tec.openplanner.team/stops/Beclron1", "https://tec.openplanner.team/stops/Bhptcha2"], ["https://tec.openplanner.team/stops/LBLghuy2", "https://tec.openplanner.team/stops/LBLplas1"], ["https://tec.openplanner.team/stops/N525ata", "https://tec.openplanner.team/stops/N525atb"], ["https://tec.openplanner.team/stops/Lfhpass1", "https://tec.openplanner.team/stops/Lfhpass2"], ["https://tec.openplanner.team/stops/N562aob", "https://tec.openplanner.team/stops/N563amb"], ["https://tec.openplanner.team/stops/LORvill1", "https://tec.openplanner.team/stops/LORvill2"], ["https://tec.openplanner.team/stops/X836aab", "https://tec.openplanner.team/stops/X836aba"], ["https://tec.openplanner.team/stops/Lwaelme1", "https://tec.openplanner.team/stops/Lwakipe2"], ["https://tec.openplanner.team/stops/H4pi131a", "https://tec.openplanner.team/stops/H4pi134a"], ["https://tec.openplanner.team/stops/X741aba", "https://tec.openplanner.team/stops/X752aab"], ["https://tec.openplanner.team/stops/H1bu139b", "https://tec.openplanner.team/stops/H1bu140a"], ["https://tec.openplanner.team/stops/X224aha", "https://tec.openplanner.team/stops/X224ahb"], ["https://tec.openplanner.team/stops/Bllnhoc2", "https://tec.openplanner.team/stops/Bottbou2"], ["https://tec.openplanner.team/stops/H4rx143a", "https://tec.openplanner.team/stops/H4rx143b"], ["https://tec.openplanner.team/stops/Cmeloti1", "https://tec.openplanner.team/stops/Cwxchap2"], ["https://tec.openplanner.team/stops/H1mm126a", "https://tec.openplanner.team/stops/H1mm132b"], ["https://tec.openplanner.team/stops/Bitrh%C3%BBl2", "https://tec.openplanner.team/stops/Bitrpar1"], ["https://tec.openplanner.team/stops/LPbchat1", "https://tec.openplanner.team/stops/LPbusin1"], ["https://tec.openplanner.team/stops/X733ajb", "https://tec.openplanner.team/stops/X734aqa"], ["https://tec.openplanner.team/stops/LATabba2", "https://tec.openplanner.team/stops/LVNbale1"], ["https://tec.openplanner.team/stops/H1ms314a", "https://tec.openplanner.team/stops/H1ms915b"], ["https://tec.openplanner.team/stops/X754aqa", "https://tec.openplanner.team/stops/X754aqb"], ["https://tec.openplanner.team/stops/X897ajb", "https://tec.openplanner.team/stops/X897alc"], ["https://tec.openplanner.team/stops/H3bi115a", "https://tec.openplanner.team/stops/H3bi117a"], ["https://tec.openplanner.team/stops/Clb4dgi1", "https://tec.openplanner.team/stops/Clbhour1"], ["https://tec.openplanner.team/stops/X623aab", "https://tec.openplanner.team/stops/X623akb"], ["https://tec.openplanner.team/stops/LSTchef2", "https://tec.openplanner.team/stops/LSTdero2"], ["https://tec.openplanner.team/stops/N580aba", "https://tec.openplanner.team/stops/N580aca"], ["https://tec.openplanner.team/stops/X609aaa", "https://tec.openplanner.team/stops/X609aqa"], ["https://tec.openplanner.team/stops/Cchfaub2", "https://tec.openplanner.team/stops/Cchlamb2"], ["https://tec.openplanner.team/stops/Lveclin2", "https://tec.openplanner.team/stops/Lvelieg2"], ["https://tec.openplanner.team/stops/Cthnord2", "https://tec.openplanner.team/stops/Cthnsnc"], ["https://tec.openplanner.team/stops/X907aia", "https://tec.openplanner.team/stops/X907aib"], ["https://tec.openplanner.team/stops/H1er112a", "https://tec.openplanner.team/stops/H1so131b"], ["https://tec.openplanner.team/stops/Bjodcar2", "https://tec.openplanner.team/stops/Bjodgar1"], ["https://tec.openplanner.team/stops/N501kga", "https://tec.openplanner.team/stops/N501kna"], ["https://tec.openplanner.team/stops/X602aaa", "https://tec.openplanner.team/stops/X602aab"], ["https://tec.openplanner.team/stops/H1mb131a", "https://tec.openplanner.team/stops/H1ro134a"], ["https://tec.openplanner.team/stops/X716aca", "https://tec.openplanner.team/stops/X718ajb"], ["https://tec.openplanner.team/stops/X670ama", "https://tec.openplanner.team/stops/X670asb"], ["https://tec.openplanner.team/stops/Cfmgara2", "https://tec.openplanner.team/stops/Cfmpui82"], ["https://tec.openplanner.team/stops/H4lp126a", "https://tec.openplanner.team/stops/H4pe125a"], ["https://tec.openplanner.team/stops/Bdlmflo1", "https://tec.openplanner.team/stops/Bdvmcbo1"], ["https://tec.openplanner.team/stops/N501jja", "https://tec.openplanner.team/stops/N501jkb"], ["https://tec.openplanner.team/stops/H3bi110a", "https://tec.openplanner.team/stops/H3bi112b"], ["https://tec.openplanner.team/stops/H1go169a", "https://tec.openplanner.team/stops/H1qy136a"], ["https://tec.openplanner.team/stops/Cwfcast2", "https://tec.openplanner.team/stops/Cwfreta1"], ["https://tec.openplanner.team/stops/Barchez1", "https://tec.openplanner.team/stops/Barcsta1"], ["https://tec.openplanner.team/stops/LMNgare1", "https://tec.openplanner.team/stops/LMNjard1"], ["https://tec.openplanner.team/stops/LSSjeun1", "https://tec.openplanner.team/stops/LSSvill1"], ["https://tec.openplanner.team/stops/H1mv240b", "https://tec.openplanner.team/stops/H1nv325b"], ["https://tec.openplanner.team/stops/LSNfays1", "https://tec.openplanner.team/stops/LSNfays2"], ["https://tec.openplanner.team/stops/H4mo187a", "https://tec.openplanner.team/stops/H4mo191a"], ["https://tec.openplanner.team/stops/N528ahb", "https://tec.openplanner.team/stops/N528aoa"], ["https://tec.openplanner.team/stops/H1au112b", "https://tec.openplanner.team/stops/H1ro139a"], ["https://tec.openplanner.team/stops/X872aaa", "https://tec.openplanner.team/stops/X873aca"], ["https://tec.openplanner.team/stops/N501boa", "https://tec.openplanner.team/stops/N501btb"], ["https://tec.openplanner.team/stops/Cgyblob1", "https://tec.openplanner.team/stops/Cgynuto2"], ["https://tec.openplanner.team/stops/X825aba", "https://tec.openplanner.team/stops/X825adb"], ["https://tec.openplanner.team/stops/LBBabat2", "https://tec.openplanner.team/stops/LBBcarr2"], ["https://tec.openplanner.team/stops/X901awa", "https://tec.openplanner.team/stops/X901axb"], ["https://tec.openplanner.team/stops/LAWroug1", "https://tec.openplanner.team/stops/LBIfore1"], ["https://tec.openplanner.team/stops/Llgdefr2", "https://tec.openplanner.team/stops/Llgomal1"], ["https://tec.openplanner.team/stops/H4co106d", "https://tec.openplanner.team/stops/H4co110b"], ["https://tec.openplanner.team/stops/LFOcomb4", "https://tec.openplanner.team/stops/LFOmc--2"], ["https://tec.openplanner.team/stops/Lghfors2", "https://tec.openplanner.team/stops/Lmlguis2"], ["https://tec.openplanner.team/stops/N560aaa", "https://tec.openplanner.team/stops/N562aza"], ["https://tec.openplanner.team/stops/Lalchar1", "https://tec.openplanner.team/stops/Lloauto2"], ["https://tec.openplanner.team/stops/Cplelec2", "https://tec.openplanner.team/stops/Crsstem1"], ["https://tec.openplanner.team/stops/Cflgazo2", "https://tec.openplanner.team/stops/Cflsncb3"], ["https://tec.openplanner.team/stops/Lemacac1", "https://tec.openplanner.team/stops/Lemmeha1"], ["https://tec.openplanner.team/stops/N519aga", "https://tec.openplanner.team/stops/N519aja"], ["https://tec.openplanner.team/stops/LBPauto1", "https://tec.openplanner.team/stops/LBPboir1"], ["https://tec.openplanner.team/stops/X804aea", "https://tec.openplanner.team/stops/X804beb"], ["https://tec.openplanner.team/stops/N501hda", "https://tec.openplanner.team/stops/N501lba"], ["https://tec.openplanner.team/stops/X806aeb", "https://tec.openplanner.team/stops/X806afa"], ["https://tec.openplanner.team/stops/N547aja", "https://tec.openplanner.team/stops/N573aob"], ["https://tec.openplanner.team/stops/H1fl134b", "https://tec.openplanner.team/stops/H1je367a"], ["https://tec.openplanner.team/stops/X804aka", "https://tec.openplanner.team/stops/X804bga"], ["https://tec.openplanner.team/stops/H4hq129b", "https://tec.openplanner.team/stops/H4ms145a"], ["https://tec.openplanner.team/stops/Lgrcrac2", "https://tec.openplanner.team/stops/Lgrecpe1"], ["https://tec.openplanner.team/stops/Btilsnc1", "https://tec.openplanner.team/stops/Btilsnc2"], ["https://tec.openplanner.team/stops/LJAherb1", "https://tec.openplanner.team/stops/LJAherb3"], ["https://tec.openplanner.team/stops/Cmlbras2", "https://tec.openplanner.team/stops/Cmlrang2"], ["https://tec.openplanner.team/stops/N232bea", "https://tec.openplanner.team/stops/N232bvb"], ["https://tec.openplanner.team/stops/Lpechin2", "https://tec.openplanner.team/stops/Lpesart2"], ["https://tec.openplanner.team/stops/N423abb", "https://tec.openplanner.team/stops/N426acb"], ["https://tec.openplanner.team/stops/Cml3fon1", "https://tec.openplanner.team/stops/Cmlceri1"], ["https://tec.openplanner.team/stops/N559aea", "https://tec.openplanner.team/stops/N559aeb"], ["https://tec.openplanner.team/stops/N513aub", "https://tec.openplanner.team/stops/N513ava"], ["https://tec.openplanner.team/stops/NL72aca", "https://tec.openplanner.team/stops/NL72adb"], ["https://tec.openplanner.team/stops/Brebblo1", "https://tec.openplanner.team/stops/Brebrha1"], ["https://tec.openplanner.team/stops/LSzeg--1", "https://tec.openplanner.team/stops/LSzsurl2"], ["https://tec.openplanner.team/stops/LSyec--2", "https://tec.openplanner.team/stops/LSythie1"], ["https://tec.openplanner.team/stops/Cmmcver1", "https://tec.openplanner.team/stops/Cmmmarb2"], ["https://tec.openplanner.team/stops/N501fyc", "https://tec.openplanner.team/stops/N501hva"], ["https://tec.openplanner.team/stops/Brsrber1", "https://tec.openplanner.team/stops/Brsrrcu1"], ["https://tec.openplanner.team/stops/Baegpon1", "https://tec.openplanner.team/stops/Baegpon3"], ["https://tec.openplanner.team/stops/N229aha", "https://tec.openplanner.team/stops/N291aba"], ["https://tec.openplanner.team/stops/N551ala", "https://tec.openplanner.team/stops/N551aqb"], ["https://tec.openplanner.team/stops/N521agb", "https://tec.openplanner.team/stops/N521ama"], ["https://tec.openplanner.team/stops/Lwakipe1", "https://tec.openplanner.team/stops/Lwakipe2"], ["https://tec.openplanner.team/stops/N501iaa", "https://tec.openplanner.team/stops/N501ida"], ["https://tec.openplanner.team/stops/H4be113a", "https://tec.openplanner.team/stops/H4be146b"], ["https://tec.openplanner.team/stops/Bcbqcha1", "https://tec.openplanner.team/stops/Bhalvel2"], ["https://tec.openplanner.team/stops/X890aaa", "https://tec.openplanner.team/stops/X890acb"], ["https://tec.openplanner.team/stops/N529aha", "https://tec.openplanner.team/stops/N529aja"], ["https://tec.openplanner.team/stops/H1eu101b", "https://tec.openplanner.team/stops/H1lb152b"], ["https://tec.openplanner.team/stops/H3th126a", "https://tec.openplanner.team/stops/H3th126b"], ["https://tec.openplanner.team/stops/N501gzy", "https://tec.openplanner.team/stops/N501gzz"], ["https://tec.openplanner.team/stops/Cchtour1", "https://tec.openplanner.team/stops/Clomart1"], ["https://tec.openplanner.team/stops/Lsnbrac2", "https://tec.openplanner.team/stops/Lsnvand3"], ["https://tec.openplanner.team/stops/H1ba111a", "https://tec.openplanner.team/stops/H1hh112a"], ["https://tec.openplanner.team/stops/H1be100a", "https://tec.openplanner.team/stops/H1er109a"], ["https://tec.openplanner.team/stops/LVLgotr3", "https://tec.openplanner.team/stops/LVLgrum2"], ["https://tec.openplanner.team/stops/LLrgara1", "https://tec.openplanner.team/stops/LLrgara2"], ["https://tec.openplanner.team/stops/N534aqb", "https://tec.openplanner.team/stops/N534awc"], ["https://tec.openplanner.team/stops/X763aba", "https://tec.openplanner.team/stops/X763abb"], ["https://tec.openplanner.team/stops/Brsgm302", "https://tec.openplanner.team/stops/Bwatcha3"], ["https://tec.openplanner.team/stops/X612afb", "https://tec.openplanner.team/stops/X626akb"], ["https://tec.openplanner.team/stops/X999aba", "https://tec.openplanner.team/stops/X999afa"], ["https://tec.openplanner.team/stops/Lflcle-6", "https://tec.openplanner.team/stops/Lflhott1"], ["https://tec.openplanner.team/stops/N106adb", "https://tec.openplanner.team/stops/N106aqb"], ["https://tec.openplanner.team/stops/LBpecco2", "https://tec.openplanner.team/stops/LGEwalk1"], ["https://tec.openplanner.team/stops/LLrc1992", "https://tec.openplanner.team/stops/LLrcomb2"], ["https://tec.openplanner.team/stops/LVEhali2", "https://tec.openplanner.team/stops/LVEtomb1"], ["https://tec.openplanner.team/stops/Cwfaldi1", "https://tec.openplanner.team/stops/Cwfbarr1"], ["https://tec.openplanner.team/stops/H1gi123b", "https://tec.openplanner.team/stops/H1gi154a"], ["https://tec.openplanner.team/stops/X982cbb", "https://tec.openplanner.team/stops/X986aaa"], ["https://tec.openplanner.team/stops/NC01aha", "https://tec.openplanner.team/stops/NC01ahb"], ["https://tec.openplanner.team/stops/X512aja", "https://tec.openplanner.team/stops/X713afb"], ["https://tec.openplanner.team/stops/Bgzdsta1", "https://tec.openplanner.team/stops/Bgzdsta2"], ["https://tec.openplanner.team/stops/H4ht173b", "https://tec.openplanner.team/stops/H4la199a"], ["https://tec.openplanner.team/stops/Llgbago2", "https://tec.openplanner.team/stops/Llgbert2"], ["https://tec.openplanner.team/stops/LLMcouv1", "https://tec.openplanner.team/stops/LLMeg--1"], ["https://tec.openplanner.team/stops/Lmojans1", "https://tec.openplanner.team/stops/Lmovand4"], ["https://tec.openplanner.team/stops/Ctubpos4", "https://tec.openplanner.team/stops/Cturoge2"], ["https://tec.openplanner.team/stops/Ltiplat1", "https://tec.openplanner.team/stops/Ltithie2"], ["https://tec.openplanner.team/stops/LLNogne2", "https://tec.openplanner.team/stops/LSpbawe2"], ["https://tec.openplanner.team/stops/Ladwooz1", "https://tec.openplanner.team/stops/Ladwooz2"], ["https://tec.openplanner.team/stops/LFMveur2", "https://tec.openplanner.team/stops/LFMvoge2"], ["https://tec.openplanner.team/stops/H4ln129b", "https://tec.openplanner.team/stops/H4ln130b"], ["https://tec.openplanner.team/stops/LHTcent2", "https://tec.openplanner.team/stops/LHTmala4"], ["https://tec.openplanner.team/stops/LsHkreu3", "https://tec.openplanner.team/stops/LsHkreu4"], ["https://tec.openplanner.team/stops/NL74acb", "https://tec.openplanner.team/stops/NL74adb"], ["https://tec.openplanner.team/stops/LPLec131", "https://tec.openplanner.team/stops/LPLfp2-2"], ["https://tec.openplanner.team/stops/N209ala", "https://tec.openplanner.team/stops/N209alb"], ["https://tec.openplanner.team/stops/H1vs145a", "https://tec.openplanner.team/stops/H1vs146a"], ["https://tec.openplanner.team/stops/N515aub", "https://tec.openplanner.team/stops/NR27aaa"], ["https://tec.openplanner.team/stops/LXHadam1", "https://tec.openplanner.team/stops/LXHeg--1"], ["https://tec.openplanner.team/stops/Cchdrai1", "https://tec.openplanner.team/stops/Cchjaur2"], ["https://tec.openplanner.team/stops/N217adb", "https://tec.openplanner.team/stops/N217aeb"], ["https://tec.openplanner.team/stops/X658ada", "https://tec.openplanner.team/stops/X658aea"], ["https://tec.openplanner.team/stops/X770aab", "https://tec.openplanner.team/stops/X770abb"], ["https://tec.openplanner.team/stops/H4hq133d", "https://tec.openplanner.team/stops/H4hq134b"], ["https://tec.openplanner.team/stops/LlgOPER6", "https://tec.openplanner.team/stops/LlgPTAV2"], ["https://tec.openplanner.team/stops/Bbxlple2", "https://tec.openplanner.team/stops/Bixlqll1"], ["https://tec.openplanner.team/stops/LhEtivo1", "https://tec.openplanner.team/stops/LhEtivo2"], ["https://tec.openplanner.team/stops/N118aua", "https://tec.openplanner.team/stops/N118aub"], ["https://tec.openplanner.team/stops/LCF1spa1", "https://tec.openplanner.team/stops/LCF2spa1"], ["https://tec.openplanner.team/stops/Lprorph1", "https://tec.openplanner.team/stops/Lprorph2"], ["https://tec.openplanner.team/stops/Cstmarz2", "https://tec.openplanner.team/stops/Cstvape2"], ["https://tec.openplanner.team/stops/X925aga", "https://tec.openplanner.team/stops/X925agb"], ["https://tec.openplanner.team/stops/Lseecol1", "https://tec.openplanner.team/stops/Lsepair4"], ["https://tec.openplanner.team/stops/LAUcent1", "https://tec.openplanner.team/stops/LFPstro1"], ["https://tec.openplanner.team/stops/H1fl140a", "https://tec.openplanner.team/stops/H1je365a"], ["https://tec.openplanner.team/stops/LBBabat1", "https://tec.openplanner.team/stops/LMnlogi1"], ["https://tec.openplanner.team/stops/LNCsera2", "https://tec.openplanner.team/stops/LPLcond2"], ["https://tec.openplanner.team/stops/Lenvale1", "https://tec.openplanner.team/stops/Llmbouv2"], ["https://tec.openplanner.team/stops/X804apa", "https://tec.openplanner.team/stops/X882akb"], ["https://tec.openplanner.team/stops/X318aba", "https://tec.openplanner.team/stops/X318ada"], ["https://tec.openplanner.team/stops/Cfccabi1", "https://tec.openplanner.team/stops/Cfcsaut4"], ["https://tec.openplanner.team/stops/Cpcarse1", "https://tec.openplanner.team/stops/Cpcarse2"], ["https://tec.openplanner.team/stops/LGMdrev1", "https://tec.openplanner.team/stops/LSEvill2"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Lanstat2"], ["https://tec.openplanner.team/stops/X620adb", "https://tec.openplanner.team/stops/X622afa"], ["https://tec.openplanner.team/stops/Bblaast2", "https://tec.openplanner.team/stops/Bblavba2"], ["https://tec.openplanner.team/stops/X806aab", "https://tec.openplanner.team/stops/X808aka"], ["https://tec.openplanner.team/stops/LeUwert2", "https://tec.openplanner.team/stops/LeUwert3"], ["https://tec.openplanner.team/stops/X940aaa", "https://tec.openplanner.team/stops/X940adb"], ["https://tec.openplanner.team/stops/N550aga", "https://tec.openplanner.team/stops/N565aaa"], ["https://tec.openplanner.team/stops/Bolgcsa2", "https://tec.openplanner.team/stops/Bolppla2"], ["https://tec.openplanner.team/stops/H4ty315a", "https://tec.openplanner.team/stops/H4ty342a"], ["https://tec.openplanner.team/stops/X954adb", "https://tec.openplanner.team/stops/X954aea"], ["https://tec.openplanner.team/stops/LSGmale1", "https://tec.openplanner.team/stops/LSGmale2"], ["https://tec.openplanner.team/stops/Csecarr2", "https://tec.openplanner.team/stops/Csecoup1"], ["https://tec.openplanner.team/stops/X925ajb", "https://tec.openplanner.team/stops/X926aaa"], ["https://tec.openplanner.team/stops/H2ec104a", "https://tec.openplanner.team/stops/H2ec104b"], ["https://tec.openplanner.team/stops/Clocroi2", "https://tec.openplanner.team/stops/Clodupr2"], ["https://tec.openplanner.team/stops/H2sv220a", "https://tec.openplanner.team/stops/H2sv221b"], ["https://tec.openplanner.team/stops/H1lb136a", "https://tec.openplanner.team/stops/H1lb138a"], ["https://tec.openplanner.team/stops/X614avb", "https://tec.openplanner.team/stops/X615ama"], ["https://tec.openplanner.team/stops/X804bza", "https://tec.openplanner.team/stops/X805aba"], ["https://tec.openplanner.team/stops/X670aoa", "https://tec.openplanner.team/stops/X670aob"], ["https://tec.openplanner.team/stops/X818acb", "https://tec.openplanner.team/stops/X818adb"], ["https://tec.openplanner.team/stops/Bdvm4ca2", "https://tec.openplanner.team/stops/Bdvmtve2"], ["https://tec.openplanner.team/stops/N573aea", "https://tec.openplanner.team/stops/N573aeb"], ["https://tec.openplanner.team/stops/Lmitroi1", "https://tec.openplanner.team/stops/Lvtlimi2"], ["https://tec.openplanner.team/stops/H4es111a", "https://tec.openplanner.team/stops/H4es117a"], ["https://tec.openplanner.team/stops/X802asb", "https://tec.openplanner.team/stops/X802ata"], ["https://tec.openplanner.team/stops/H4ln129a", "https://tec.openplanner.team/stops/H4ln130a"], ["https://tec.openplanner.team/stops/N312aba", "https://tec.openplanner.team/stops/N312aca"], ["https://tec.openplanner.team/stops/Cmtpaix1", "https://tec.openplanner.team/stops/Cmtpire2"], ["https://tec.openplanner.team/stops/Lgrbell2", "https://tec.openplanner.team/stops/Lgrspir1"], ["https://tec.openplanner.team/stops/Becepri2", "https://tec.openplanner.team/stops/H2ec110a"], ["https://tec.openplanner.team/stops/X983abb", "https://tec.openplanner.team/stops/X983acb"], ["https://tec.openplanner.team/stops/X307aaa", "https://tec.openplanner.team/stops/X317aba"], ["https://tec.openplanner.team/stops/Lchsaec2", "https://tec.openplanner.team/stops/Lchtche1"], ["https://tec.openplanner.team/stops/X992aga", "https://tec.openplanner.team/stops/X992aka"], ["https://tec.openplanner.team/stops/Ljufler1", "https://tec.openplanner.team/stops/Ljumart1"], ["https://tec.openplanner.team/stops/H1sg148b", "https://tec.openplanner.team/stops/H1sg150b"], ["https://tec.openplanner.team/stops/N106aga", "https://tec.openplanner.team/stops/N106aia"], ["https://tec.openplanner.team/stops/X806aha", "https://tec.openplanner.team/stops/X806ajb"], ["https://tec.openplanner.team/stops/N102aab", "https://tec.openplanner.team/stops/N102acb"], ["https://tec.openplanner.team/stops/H4ln128b", "https://tec.openplanner.team/stops/H4ne142a"], ["https://tec.openplanner.team/stops/H4bh102c", "https://tec.openplanner.team/stops/H4bh104a"], ["https://tec.openplanner.team/stops/LHuetat1", "https://tec.openplanner.team/stops/LHuherm2"], ["https://tec.openplanner.team/stops/H2hg152a", "https://tec.openplanner.team/stops/H2hg157a"], ["https://tec.openplanner.team/stops/N529ahb", "https://tec.openplanner.team/stops/N529aka"], ["https://tec.openplanner.team/stops/H1ms293a", "https://tec.openplanner.team/stops/H1ms293b"], ["https://tec.openplanner.team/stops/Lvegc--3", "https://tec.openplanner.team/stops/Lvegc--4"], ["https://tec.openplanner.team/stops/NL77ajb", "https://tec.openplanner.team/stops/NL77ala"], ["https://tec.openplanner.team/stops/Cchriga2", "https://tec.openplanner.team/stops/Cchtiro3"], ["https://tec.openplanner.team/stops/H1ms284a", "https://tec.openplanner.team/stops/H1ms903a"], ["https://tec.openplanner.team/stops/X762aea", "https://tec.openplanner.team/stops/X764aca"], ["https://tec.openplanner.team/stops/N565aka", "https://tec.openplanner.team/stops/N565akb"], ["https://tec.openplanner.team/stops/H2ha137b", "https://tec.openplanner.team/stops/H2hg156a"], ["https://tec.openplanner.team/stops/LVLbovy1", "https://tec.openplanner.team/stops/LVLeg--2"], ["https://tec.openplanner.team/stops/LGemari2", "https://tec.openplanner.team/stops/LGevygh2"], ["https://tec.openplanner.team/stops/Lbrdepo1", "https://tec.openplanner.team/stops/Ljuathe2"], ["https://tec.openplanner.team/stops/Lfhncha2", "https://tec.openplanner.team/stops/Lfhtrca1"], ["https://tec.openplanner.team/stops/Bosqcar2", "https://tec.openplanner.team/stops/Btubpir1"], ["https://tec.openplanner.team/stops/X774ada", "https://tec.openplanner.team/stops/X774aea"], ["https://tec.openplanner.team/stops/Cgzmira2", "https://tec.openplanner.team/stops/Cgzoctr3"], ["https://tec.openplanner.team/stops/LBXhacb1", "https://tec.openplanner.team/stops/LMovieu1"], ["https://tec.openplanner.team/stops/Llgcime2", "https://tec.openplanner.team/stops/Llgcrah1"], ["https://tec.openplanner.team/stops/LTEcamp1", "https://tec.openplanner.team/stops/LTEkerk1"], ["https://tec.openplanner.team/stops/LaSbahn1", "https://tec.openplanner.team/stops/LwAprei2"], ["https://tec.openplanner.team/stops/Bove4ko1", "https://tec.openplanner.team/stops/Bovetwe1"], ["https://tec.openplanner.team/stops/N538ayb", "https://tec.openplanner.team/stops/N538azb"], ["https://tec.openplanner.team/stops/H2na133b", "https://tec.openplanner.team/stops/H2na134b"], ["https://tec.openplanner.team/stops/Lemjacq2", "https://tec.openplanner.team/stops/Lemsely2"], ["https://tec.openplanner.team/stops/H1ms275a", "https://tec.openplanner.team/stops/H1ms281b"], ["https://tec.openplanner.team/stops/N539bgb", "https://tec.openplanner.team/stops/N540aja"], ["https://tec.openplanner.team/stops/LFCkerk1", "https://tec.openplanner.team/stops/LFCkerk2"], ["https://tec.openplanner.team/stops/Bspkker2", "https://tec.openplanner.team/stops/Bspkkhe2"], ["https://tec.openplanner.team/stops/X725bia", "https://tec.openplanner.team/stops/X767afa"], ["https://tec.openplanner.team/stops/LEN42--2", "https://tec.openplanner.team/stops/LENsent1"], ["https://tec.openplanner.team/stops/LSOferr1", "https://tec.openplanner.team/stops/LSOferr6"], ["https://tec.openplanner.team/stops/H1je217b", "https://tec.openplanner.team/stops/H1je221b"], ["https://tec.openplanner.team/stops/N351ajc", "https://tec.openplanner.team/stops/N351aua"], ["https://tec.openplanner.team/stops/H4ka191a", "https://tec.openplanner.team/stops/H4ka399a"], ["https://tec.openplanner.team/stops/H1ca101a", "https://tec.openplanner.team/stops/H1sd347a"], ["https://tec.openplanner.team/stops/N117aka", "https://tec.openplanner.team/stops/N117bbb"], ["https://tec.openplanner.team/stops/H4cl113a", "https://tec.openplanner.team/stops/H4cl113b"], ["https://tec.openplanner.team/stops/X999aga", "https://tec.openplanner.team/stops/X999aia"], ["https://tec.openplanner.team/stops/N535ajb", "https://tec.openplanner.team/stops/N535alb"], ["https://tec.openplanner.team/stops/LCLacbi1", "https://tec.openplanner.team/stops/LCLacbi2"], ["https://tec.openplanner.team/stops/LARgare2", "https://tec.openplanner.team/stops/LHAdeho1"], ["https://tec.openplanner.team/stops/Lceleje1", "https://tec.openplanner.team/stops/Lemmeha2"], ["https://tec.openplanner.team/stops/LHAleru1", "https://tec.openplanner.team/stops/LHApthe1"], ["https://tec.openplanner.team/stops/H1mc127a", "https://tec.openplanner.team/stops/H1mc128b"], ["https://tec.openplanner.team/stops/Brixala2", "https://tec.openplanner.team/stops/Brixdec1"], ["https://tec.openplanner.team/stops/X801aja", "https://tec.openplanner.team/stops/X801ajb"], ["https://tec.openplanner.team/stops/Boppegl1", "https://tec.openplanner.team/stops/Boppegl2"], ["https://tec.openplanner.team/stops/H2lc170a", "https://tec.openplanner.team/stops/H2lc172b"], ["https://tec.openplanner.team/stops/H4ne143b", "https://tec.openplanner.team/stops/H4ne145b"], ["https://tec.openplanner.team/stops/Bperqui1", "https://tec.openplanner.team/stops/Bperrsr2"], ["https://tec.openplanner.team/stops/Bnivbos1", "https://tec.openplanner.team/stops/Bnivmat1"], ["https://tec.openplanner.team/stops/X882ala", "https://tec.openplanner.team/stops/X882alb"], ["https://tec.openplanner.team/stops/X922ama", "https://tec.openplanner.team/stops/X922amb"], ["https://tec.openplanner.team/stops/LBieg--3", "https://tec.openplanner.team/stops/LBieg--4"], ["https://tec.openplanner.team/stops/X670aga", "https://tec.openplanner.team/stops/X670akb"], ["https://tec.openplanner.team/stops/Clpnapo2", "https://tec.openplanner.team/stops/Clpsola2"], ["https://tec.openplanner.team/stops/X946agb", "https://tec.openplanner.team/stops/X946aia"], ["https://tec.openplanner.team/stops/Lousite1", "https://tec.openplanner.team/stops/Lousite2"], ["https://tec.openplanner.team/stops/N501gia", "https://tec.openplanner.team/stops/N501giy"], ["https://tec.openplanner.team/stops/LETec--2", "https://tec.openplanner.team/stops/LETeg--1"], ["https://tec.openplanner.team/stops/H4lz118a", "https://tec.openplanner.team/stops/H4lz126b"], ["https://tec.openplanner.team/stops/Crcegli4", "https://tec.openplanner.team/stops/Crcpcom2"], ["https://tec.openplanner.team/stops/H4we136b", "https://tec.openplanner.team/stops/H4we139a"], ["https://tec.openplanner.team/stops/Lcemeta1", "https://tec.openplanner.team/stops/Lcesart1"], ["https://tec.openplanner.team/stops/Lenplac1", "https://tec.openplanner.team/stops/Lenptsa1"], ["https://tec.openplanner.team/stops/Llgchat1", "https://tec.openplanner.team/stops/Llggcha1"], ["https://tec.openplanner.team/stops/LTEkl121", "https://tec.openplanner.team/stops/LTEkl162"], ["https://tec.openplanner.team/stops/N232bab", "https://tec.openplanner.team/stops/N232bsa"], ["https://tec.openplanner.team/stops/Cgxvkho1", "https://tec.openplanner.team/stops/Cmohame1"], ["https://tec.openplanner.team/stops/LBAcere2", "https://tec.openplanner.team/stops/LBAfort1"], ["https://tec.openplanner.team/stops/N155afa", "https://tec.openplanner.team/stops/N155afd"], ["https://tec.openplanner.team/stops/N874aca", "https://tec.openplanner.team/stops/X887aab"], ["https://tec.openplanner.team/stops/LREchif2", "https://tec.openplanner.team/stops/LRErive2"], ["https://tec.openplanner.team/stops/Bnilegl2", "https://tec.openplanner.team/stops/Bnilreg1"], ["https://tec.openplanner.team/stops/LERdeho2", "https://tec.openplanner.team/stops/LHseg--2"], ["https://tec.openplanner.team/stops/LOTcarr1", "https://tec.openplanner.team/stops/LOTcarr2"], ["https://tec.openplanner.team/stops/H1fy142a", "https://tec.openplanner.team/stops/H1fy143a"], ["https://tec.openplanner.team/stops/N501dtb", "https://tec.openplanner.team/stops/N501dtc"], ["https://tec.openplanner.team/stops/X999aeb", "https://tec.openplanner.team/stops/X999afc"], ["https://tec.openplanner.team/stops/X640asa", "https://tec.openplanner.team/stops/X640asb"], ["https://tec.openplanner.team/stops/H1ht126a", "https://tec.openplanner.team/stops/H1ht126b"], ["https://tec.openplanner.team/stops/X982baa", "https://tec.openplanner.team/stops/X982cfa"], ["https://tec.openplanner.team/stops/LVtchai1", "https://tec.openplanner.team/stops/LVtespo1"], ["https://tec.openplanner.team/stops/N117akb", "https://tec.openplanner.team/stops/N117ara"], ["https://tec.openplanner.team/stops/LoDkoll1", "https://tec.openplanner.team/stops/LoDschu1"], ["https://tec.openplanner.team/stops/Lflec--2", "https://tec.openplanner.team/stops/Lflheid2"], ["https://tec.openplanner.team/stops/LGLbrus2", "https://tec.openplanner.team/stops/LGLgeer1"], ["https://tec.openplanner.team/stops/H4ga158a", "https://tec.openplanner.team/stops/H4ga160a"], ["https://tec.openplanner.team/stops/Cvpchat1", "https://tec.openplanner.team/stops/Cvpchat2"], ["https://tec.openplanner.team/stops/X994afa", "https://tec.openplanner.team/stops/X994alb"], ["https://tec.openplanner.team/stops/H2mo123a", "https://tec.openplanner.team/stops/H2mo126b"], ["https://tec.openplanner.team/stops/Blhugai1", "https://tec.openplanner.team/stops/Bohnrph1"], ["https://tec.openplanner.team/stops/H1hr116b", "https://tec.openplanner.team/stops/H1hr129b"], ["https://tec.openplanner.team/stops/X637aea", "https://tec.openplanner.team/stops/X637ala"], ["https://tec.openplanner.team/stops/Btanbth1", "https://tec.openplanner.team/stops/Btanpla3"], ["https://tec.openplanner.team/stops/X614bba", "https://tec.openplanner.team/stops/X614bra"], ["https://tec.openplanner.team/stops/Cvvchea2", "https://tec.openplanner.team/stops/Cvvsncb2"], ["https://tec.openplanner.team/stops/Bblmwma2", "https://tec.openplanner.team/stops/Bchamco1"], ["https://tec.openplanner.team/stops/Llgsnap5", "https://tec.openplanner.team/stops/Llgsorb1"], ["https://tec.openplanner.team/stops/LVEeg--1", "https://tec.openplanner.team/stops/LVEfize2"], ["https://tec.openplanner.team/stops/Lmigare2", "https://tec.openplanner.team/stops/Lmirca-2"], ["https://tec.openplanner.team/stops/X982ata", "https://tec.openplanner.team/stops/X982atb"], ["https://tec.openplanner.team/stops/Lhutann1", "https://tec.openplanner.team/stops/Lhutann2"], ["https://tec.openplanner.team/stops/H1do121a", "https://tec.openplanner.team/stops/H1wi147b"], ["https://tec.openplanner.team/stops/X358aea", "https://tec.openplanner.team/stops/X994ada"], ["https://tec.openplanner.team/stops/Bblafra2", "https://tec.openplanner.team/stops/Bblajap1"], ["https://tec.openplanner.team/stops/LAMdelh*", "https://tec.openplanner.team/stops/LAMhopi2"], ["https://tec.openplanner.team/stops/LOdbuis2", "https://tec.openplanner.team/stops/LVlleme3"], ["https://tec.openplanner.team/stops/H4oq223b", "https://tec.openplanner.team/stops/H4oq228b"], ["https://tec.openplanner.team/stops/Cjojonc1", "https://tec.openplanner.team/stops/NC24aka"], ["https://tec.openplanner.team/stops/H1bl105a", "https://tec.openplanner.team/stops/H1eq115b"], ["https://tec.openplanner.team/stops/Ladboti1", "https://tec.openplanner.team/stops/Ladotto1"], ["https://tec.openplanner.team/stops/H2lh126a", "https://tec.openplanner.team/stops/H2lh129a"], ["https://tec.openplanner.team/stops/H1mj131a", "https://tec.openplanner.team/stops/H1mj132a"], ["https://tec.openplanner.team/stops/N551aga", "https://tec.openplanner.team/stops/N551agc"], ["https://tec.openplanner.team/stops/X907agb", "https://tec.openplanner.team/stops/X908apb"], ["https://tec.openplanner.team/stops/Lpepano1", "https://tec.openplanner.team/stops/Lpepano2"], ["https://tec.openplanner.team/stops/N548aga", "https://tec.openplanner.team/stops/N548agb"], ["https://tec.openplanner.team/stops/Bronn392", "https://tec.openplanner.team/stops/Bvirfpo2"], ["https://tec.openplanner.team/stops/N584avb", "https://tec.openplanner.team/stops/N584cba"], ["https://tec.openplanner.team/stops/Cfrcoqu3", "https://tec.openplanner.team/stops/Cfrgivr2"], ["https://tec.openplanner.team/stops/X637amb", "https://tec.openplanner.team/stops/X637aob"], ["https://tec.openplanner.team/stops/N357abb", "https://tec.openplanner.team/stops/N357adb"], ["https://tec.openplanner.team/stops/LSPchap2", "https://tec.openplanner.team/stops/LSPec--2"], ["https://tec.openplanner.team/stops/X622aea", "https://tec.openplanner.team/stops/X622aeb"], ["https://tec.openplanner.team/stops/N501mca", "https://tec.openplanner.team/stops/N501mcc"], ["https://tec.openplanner.team/stops/LgRha211", "https://tec.openplanner.team/stops/LtH28a-2"], ["https://tec.openplanner.team/stops/Cmllecl4", "https://tec.openplanner.team/stops/Cmlm2412"], ["https://tec.openplanner.team/stops/H4hg157b", "https://tec.openplanner.team/stops/H4hg160b"], ["https://tec.openplanner.team/stops/LKmcabi1", "https://tec.openplanner.team/stops/LKmeg--2"], ["https://tec.openplanner.team/stops/Bosqcar1", "https://tec.openplanner.team/stops/Bvirduj1"], ["https://tec.openplanner.team/stops/H4gz114b", "https://tec.openplanner.team/stops/H4th142a"], ["https://tec.openplanner.team/stops/X609aab", "https://tec.openplanner.team/stops/X609abb"], ["https://tec.openplanner.team/stops/X801bta", "https://tec.openplanner.team/stops/X801bua"], ["https://tec.openplanner.team/stops/LHUdeni4", "https://tec.openplanner.team/stops/LHUeuro2"], ["https://tec.openplanner.team/stops/N501zba", "https://tec.openplanner.team/stops/N501zca"], ["https://tec.openplanner.team/stops/N501gba", "https://tec.openplanner.team/stops/N501loa"], ["https://tec.openplanner.team/stops/LsVfeye1", "https://tec.openplanner.team/stops/LwLkirc1"], ["https://tec.openplanner.team/stops/Cnacroc2", "https://tec.openplanner.team/stops/Cnarmon1"], ["https://tec.openplanner.team/stops/X756aga", "https://tec.openplanner.team/stops/X756agb"], ["https://tec.openplanner.team/stops/N501lia", "https://tec.openplanner.team/stops/N501llb"], ["https://tec.openplanner.team/stops/LAMcoll1", "https://tec.openplanner.team/stops/LAMecse*"], ["https://tec.openplanner.team/stops/LPOeg--1", "https://tec.openplanner.team/stops/LSdcarr1"], ["https://tec.openplanner.team/stops/X359aba", "https://tec.openplanner.team/stops/X359aea"], ["https://tec.openplanner.team/stops/X618amb", "https://tec.openplanner.team/stops/X618ana"], ["https://tec.openplanner.team/stops/LWM759-2", "https://tec.openplanner.team/stops/LWMcent1"], ["https://tec.openplanner.team/stops/LXoharz4", "https://tec.openplanner.team/stops/LXoharz6"], ["https://tec.openplanner.team/stops/Lprcite2", "https://tec.openplanner.team/stops/Lvegazo1"], ["https://tec.openplanner.team/stops/N585aba", "https://tec.openplanner.team/stops/N585abb"], ["https://tec.openplanner.team/stops/N501dob", "https://tec.openplanner.team/stops/N501drb"], ["https://tec.openplanner.team/stops/X725adb", "https://tec.openplanner.team/stops/X725aja"], ["https://tec.openplanner.team/stops/N243acb", "https://tec.openplanner.team/stops/N243aeb"], ["https://tec.openplanner.team/stops/Lsteg--1", "https://tec.openplanner.team/stops/Lstetud2"], ["https://tec.openplanner.team/stops/LeUclou1", "https://tec.openplanner.team/stops/LHtdros2"], ["https://tec.openplanner.team/stops/Cjufagn4", "https://tec.openplanner.team/stops/Cjupoly2"], ["https://tec.openplanner.team/stops/H3bi101a", "https://tec.openplanner.team/stops/H3bi119b"], ["https://tec.openplanner.team/stops/LBLfoxh1", "https://tec.openplanner.team/stops/LBLfoxh2"], ["https://tec.openplanner.team/stops/LVParal1", "https://tec.openplanner.team/stops/LVParal2"], ["https://tec.openplanner.team/stops/X917aha", "https://tec.openplanner.team/stops/X917aja"], ["https://tec.openplanner.team/stops/H4mo140a", "https://tec.openplanner.team/stops/H4mo179a"], ["https://tec.openplanner.team/stops/Lbbviad2", "https://tec.openplanner.team/stops/Lgrorch1"], ["https://tec.openplanner.team/stops/Ctrecol4", "https://tec.openplanner.team/stops/Ctrrpla2"], ["https://tec.openplanner.team/stops/N532abb", "https://tec.openplanner.team/stops/N568abb"], ["https://tec.openplanner.team/stops/N501hcb", "https://tec.openplanner.team/stops/N501mia"], ["https://tec.openplanner.team/stops/LLrchat2", "https://tec.openplanner.team/stops/LLrhaut2"], ["https://tec.openplanner.team/stops/Bsenpeu2", "https://tec.openplanner.team/stops/H2se105a"], ["https://tec.openplanner.team/stops/NR21aaa", "https://tec.openplanner.team/stops/NR21abd"], ["https://tec.openplanner.team/stops/LGHplai2", "https://tec.openplanner.team/stops/X542aga"], ["https://tec.openplanner.team/stops/Csslesc1", "https://tec.openplanner.team/stops/Csslesc2"], ["https://tec.openplanner.team/stops/X876aba", "https://tec.openplanner.team/stops/X876aeb"], ["https://tec.openplanner.team/stops/X780aia", "https://tec.openplanner.team/stops/X780aja"], ["https://tec.openplanner.team/stops/LFLetoi1", "https://tec.openplanner.team/stops/LSpunio2"], ["https://tec.openplanner.team/stops/Bbxlmid1", "https://tec.openplanner.team/stops/Buccbou1"], ["https://tec.openplanner.team/stops/Crarmas1", "https://tec.openplanner.team/stops/Crarmas2"], ["https://tec.openplanner.team/stops/LESgran1", "https://tec.openplanner.team/stops/LEShony2"], ["https://tec.openplanner.team/stops/X672aab", "https://tec.openplanner.team/stops/X817agb"], ["https://tec.openplanner.team/stops/X640aob", "https://tec.openplanner.team/stops/X642aac"], ["https://tec.openplanner.team/stops/X759aaa", "https://tec.openplanner.team/stops/X759aea"], ["https://tec.openplanner.team/stops/X620aab", "https://tec.openplanner.team/stops/X621aaa"], ["https://tec.openplanner.team/stops/X659aea", "https://tec.openplanner.team/stops/X659aeb"], ["https://tec.openplanner.team/stops/H4gu108b", "https://tec.openplanner.team/stops/H4we138a"], ["https://tec.openplanner.team/stops/X739aea", "https://tec.openplanner.team/stops/X779adb"], ["https://tec.openplanner.team/stops/X650aab", "https://tec.openplanner.team/stops/X650amb"], ["https://tec.openplanner.team/stops/Cmonvci1", "https://tec.openplanner.team/stops/Cmovies1"], ["https://tec.openplanner.team/stops/LSTchat2", "https://tec.openplanner.team/stops/LSTcomm1"], ["https://tec.openplanner.team/stops/Cchcase1", "https://tec.openplanner.team/stops/CMjans1"], ["https://tec.openplanner.team/stops/N390aca", "https://tec.openplanner.team/stops/N390acb"], ["https://tec.openplanner.team/stops/Ccuhsti2", "https://tec.openplanner.team/stops/NC02aob"], ["https://tec.openplanner.team/stops/X937adb", "https://tec.openplanner.team/stops/X937aib"], ["https://tec.openplanner.team/stops/Cfaheni4", "https://tec.openplanner.team/stops/Cfamonu8"], ["https://tec.openplanner.team/stops/N209ana", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/Bmargve1", "https://tec.openplanner.team/stops/Bmargve2"], ["https://tec.openplanner.team/stops/Brebmtg1", "https://tec.openplanner.team/stops/Brebmtg2"], ["https://tec.openplanner.team/stops/X307adb", "https://tec.openplanner.team/stops/X317aaa"], ["https://tec.openplanner.team/stops/X892ada", "https://tec.openplanner.team/stops/X892aha"], ["https://tec.openplanner.team/stops/X758aha", "https://tec.openplanner.team/stops/X758ahb"], ["https://tec.openplanner.team/stops/N229aja", "https://tec.openplanner.team/stops/N229ala"], ["https://tec.openplanner.team/stops/LwL100-1", "https://tec.openplanner.team/stops/LwL100-2"], ["https://tec.openplanner.team/stops/X780abb", "https://tec.openplanner.team/stops/X790aaa"], ["https://tec.openplanner.team/stops/Lgrramp1", "https://tec.openplanner.team/stops/Lgrramp2"], ["https://tec.openplanner.team/stops/Lan14ve2", "https://tec.openplanner.team/stops/Lanclon1"], ["https://tec.openplanner.team/stops/LwYsour3", "https://tec.openplanner.team/stops/LwYsour4"], ["https://tec.openplanner.team/stops/N584bab", "https://tec.openplanner.team/stops/N584bba"], ["https://tec.openplanner.team/stops/N118aaa", "https://tec.openplanner.team/stops/N118aia"], ["https://tec.openplanner.team/stops/H1ha187b", "https://tec.openplanner.team/stops/H1ha197a"], ["https://tec.openplanner.team/stops/X664aba", "https://tec.openplanner.team/stops/X664add"], ["https://tec.openplanner.team/stops/Cprrvil1", "https://tec.openplanner.team/stops/NC11ama"], ["https://tec.openplanner.team/stops/Baudsta2", "https://tec.openplanner.team/stops/Baudulb2"], ["https://tec.openplanner.team/stops/H1bo106a", "https://tec.openplanner.team/stops/H1bo106b"], ["https://tec.openplanner.team/stops/Lhrlico1", "https://tec.openplanner.team/stops/Lhrlico3"], ["https://tec.openplanner.team/stops/Cfbcabi1", "https://tec.openplanner.team/stops/Cfcecol4"], ["https://tec.openplanner.team/stops/LBBcamp2", "https://tec.openplanner.team/stops/NL82agb"], ["https://tec.openplanner.team/stops/X652adb", "https://tec.openplanner.team/stops/X652aha"], ["https://tec.openplanner.team/stops/Csbberg1", "https://tec.openplanner.team/stops/H1sa112a"], ["https://tec.openplanner.team/stops/N101aja", "https://tec.openplanner.team/stops/N116aac"], ["https://tec.openplanner.team/stops/H1do126b", "https://tec.openplanner.team/stops/H1do130b"], ["https://tec.openplanner.team/stops/X625aba", "https://tec.openplanner.team/stops/X625abb"], ["https://tec.openplanner.team/stops/H1ms272a", "https://tec.openplanner.team/stops/H1sp356b"], ["https://tec.openplanner.team/stops/N501hma", "https://tec.openplanner.team/stops/N501iaa"], ["https://tec.openplanner.team/stops/H1ob328b", "https://tec.openplanner.team/stops/H1sd343a"], ["https://tec.openplanner.team/stops/LAmwaut1", "https://tec.openplanner.team/stops/LNHhome1"], ["https://tec.openplanner.team/stops/LJvbane1", "https://tec.openplanner.team/stops/X781aaa"], ["https://tec.openplanner.team/stops/X820aab", "https://tec.openplanner.team/stops/X822ama"], ["https://tec.openplanner.team/stops/H4ag106b", "https://tec.openplanner.team/stops/H4br110a"], ["https://tec.openplanner.team/stops/H2ha132a", "https://tec.openplanner.team/stops/H2ha132b"], ["https://tec.openplanner.team/stops/LLrelec1", "https://tec.openplanner.team/stops/LLrlour1"], ["https://tec.openplanner.team/stops/Cfvombo2", "https://tec.openplanner.team/stops/Clfmonu2"], ["https://tec.openplanner.team/stops/Lvegc--5", "https://tec.openplanner.team/stops/Lvegc--6"], ["https://tec.openplanner.team/stops/X735aba", "https://tec.openplanner.team/stops/X735acb"], ["https://tec.openplanner.team/stops/Bchgbel1", "https://tec.openplanner.team/stops/Bchgbru2"], ["https://tec.openplanner.team/stops/X661apb", "https://tec.openplanner.team/stops/X661aqb"], ["https://tec.openplanner.team/stops/Csshouy1", "https://tec.openplanner.team/stops/Csslesc2"], ["https://tec.openplanner.team/stops/X611aba", "https://tec.openplanner.team/stops/X645aab"], ["https://tec.openplanner.team/stops/LESmont1", "https://tec.openplanner.team/stops/LESpont3"], ["https://tec.openplanner.team/stops/H4hx117b", "https://tec.openplanner.team/stops/H4hx119b"], ["https://tec.openplanner.team/stops/X666adb", "https://tec.openplanner.team/stops/X666ama"], ["https://tec.openplanner.team/stops/Bcsegal2", "https://tec.openplanner.team/stops/Bcsemar2"], ["https://tec.openplanner.team/stops/Lhr4ave2", "https://tec.openplanner.team/stops/Lhrmeta1"], ["https://tec.openplanner.team/stops/LBQmaye1", "https://tec.openplanner.team/stops/N223aba"], ["https://tec.openplanner.team/stops/N522aca", "https://tec.openplanner.team/stops/N541acb"], ["https://tec.openplanner.team/stops/N503aca", "https://tec.openplanner.team/stops/N503adb"], ["https://tec.openplanner.team/stops/Cmtgrim1", "https://tec.openplanner.team/stops/Cmtgrim2"], ["https://tec.openplanner.team/stops/LFEland1", "https://tec.openplanner.team/stops/LFEmala1"], ["https://tec.openplanner.team/stops/X890adb", "https://tec.openplanner.team/stops/X890aga"], ["https://tec.openplanner.team/stops/LLrbuis2", "https://tec.openplanner.team/stops/LLrfagn1"], ["https://tec.openplanner.team/stops/X898amb", "https://tec.openplanner.team/stops/X898anb"], ["https://tec.openplanner.team/stops/LHolexh2", "https://tec.openplanner.team/stops/LHZ8mai1"], ["https://tec.openplanner.team/stops/Cfanvmo1", "https://tec.openplanner.team/stops/Cpictra1"], ["https://tec.openplanner.team/stops/Blanmde1", "https://tec.openplanner.team/stops/Brach122"], ["https://tec.openplanner.team/stops/Crseuro1", "https://tec.openplanner.team/stops/Crsprai4"], ["https://tec.openplanner.team/stops/H5at122a", "https://tec.openplanner.team/stops/H5la177a"], ["https://tec.openplanner.team/stops/H4fa126d", "https://tec.openplanner.team/stops/H4fa127a"], ["https://tec.openplanner.team/stops/Bheneco1", "https://tec.openplanner.team/stops/Bhenpla1"], ["https://tec.openplanner.team/stops/LHTdelh2", "https://tec.openplanner.team/stops/LHTeg--1"], ["https://tec.openplanner.team/stops/LDmwaef2", "https://tec.openplanner.team/stops/LSBjoli1"], ["https://tec.openplanner.team/stops/H2re163a", "https://tec.openplanner.team/stops/H2re167a"], ["https://tec.openplanner.team/stops/H4ty282a", "https://tec.openplanner.team/stops/H4ty339b"], ["https://tec.openplanner.team/stops/N423aaa", "https://tec.openplanner.team/stops/N423afa"], ["https://tec.openplanner.team/stops/X601daa", "https://tec.openplanner.team/stops/X601dha"], ["https://tec.openplanner.team/stops/N131aga", "https://tec.openplanner.team/stops/N131aha"], ["https://tec.openplanner.team/stops/LVncarr2", "https://tec.openplanner.team/stops/LVnourt2"], ["https://tec.openplanner.team/stops/H1hw124b", "https://tec.openplanner.team/stops/H1mc129b"], ["https://tec.openplanner.team/stops/H4ty307b", "https://tec.openplanner.team/stops/H4ty339a"], ["https://tec.openplanner.team/stops/X754aab", "https://tec.openplanner.team/stops/X754abb"], ["https://tec.openplanner.team/stops/Lligare*", "https://tec.openplanner.team/stops/Lligare2"], ["https://tec.openplanner.team/stops/X903afa", "https://tec.openplanner.team/stops/X903afb"], ["https://tec.openplanner.team/stops/Ctabaty2", "https://tec.openplanner.team/stops/Ctabaty3"], ["https://tec.openplanner.team/stops/Cbcha651", "https://tec.openplanner.team/stops/Cthstre2"], ["https://tec.openplanner.team/stops/Blpgbat1", "https://tec.openplanner.team/stops/Blpghou2"], ["https://tec.openplanner.team/stops/X354aba", "https://tec.openplanner.team/stops/X354abb"], ["https://tec.openplanner.team/stops/LFTec--3", "https://tec.openplanner.team/stops/LFTeg--1"], ["https://tec.openplanner.team/stops/Bnodblt1", "https://tec.openplanner.team/stops/Bnodblt2"], ["https://tec.openplanner.team/stops/Bosqcar1", "https://tec.openplanner.team/stops/Btubbot1"], ["https://tec.openplanner.team/stops/Cmapeet1", "https://tec.openplanner.team/stops/Cmaroya2"], ["https://tec.openplanner.team/stops/Lagindu1", "https://tec.openplanner.team/stops/Lagorch1"], ["https://tec.openplanner.team/stops/H2ep144a", "https://tec.openplanner.team/stops/H2ep145b"], ["https://tec.openplanner.team/stops/Cci4091", "https://tec.openplanner.team/stops/Cmtprey1"], ["https://tec.openplanner.team/stops/X639aba", "https://tec.openplanner.team/stops/X639acd"], ["https://tec.openplanner.team/stops/Bblacha1", "https://tec.openplanner.team/stops/Bblamsp4"], ["https://tec.openplanner.team/stops/LFPgeme1", "https://tec.openplanner.team/stops/LFPkerk1"], ["https://tec.openplanner.team/stops/X822aoa", "https://tec.openplanner.team/stops/X822apa"], ["https://tec.openplanner.team/stops/H1ms263b", "https://tec.openplanner.team/stops/H1ms275a"], ["https://tec.openplanner.team/stops/H4ht172a", "https://tec.openplanner.team/stops/H4la198a"], ["https://tec.openplanner.team/stops/Bnivmon2", "https://tec.openplanner.team/stops/Bptrvil1"], ["https://tec.openplanner.team/stops/X789ahb", "https://tec.openplanner.team/stops/X789ahd"], ["https://tec.openplanner.team/stops/H2hp261a", "https://tec.openplanner.team/stops/H2hp262a"], ["https://tec.openplanner.team/stops/H4fg116b", "https://tec.openplanner.team/stops/H4wn138b"], ["https://tec.openplanner.team/stops/H4gu109b", "https://tec.openplanner.team/stops/H4gu110a"], ["https://tec.openplanner.team/stops/H2bh112b", "https://tec.openplanner.team/stops/H2fy123c"], ["https://tec.openplanner.team/stops/N120aoc", "https://tec.openplanner.team/stops/N301aha"], ["https://tec.openplanner.team/stops/H2ca104b", "https://tec.openplanner.team/stops/H2ca112a"], ["https://tec.openplanner.team/stops/N553aab", "https://tec.openplanner.team/stops/N553aac"], ["https://tec.openplanner.team/stops/LWAaxhe2", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://tec.openplanner.team/stops/Bcbqcht1", "https://tec.openplanner.team/stops/Bcbqcht2"], ["https://tec.openplanner.team/stops/H1pd146a", "https://tec.openplanner.team/stops/H1wg127b"], ["https://tec.openplanner.team/stops/H2mg149b", "https://tec.openplanner.team/stops/H2se113b"], ["https://tec.openplanner.team/stops/Cgofert2", "https://tec.openplanner.team/stops/Cvvchea1"], ["https://tec.openplanner.team/stops/H5fl100a", "https://tec.openplanner.team/stops/H5wo128a"], ["https://tec.openplanner.team/stops/X828aaa", "https://tec.openplanner.team/stops/X829aab"], ["https://tec.openplanner.team/stops/N501ldb", "https://tec.openplanner.team/stops/N538aab"], ["https://tec.openplanner.team/stops/Bbaulil2", "https://tec.openplanner.team/stops/Bnivsnu2"], ["https://tec.openplanner.team/stops/H4ce103a", "https://tec.openplanner.team/stops/H4ce103b"], ["https://tec.openplanner.team/stops/H1ca107b", "https://tec.openplanner.team/stops/H1ca184a"], ["https://tec.openplanner.team/stops/LmNkrew1", "https://tec.openplanner.team/stops/X685apa"], ["https://tec.openplanner.team/stops/Llgfusc6", "https://tec.openplanner.team/stops/Llgvero1"], ["https://tec.openplanner.team/stops/H1ms301a", "https://tec.openplanner.team/stops/H1ms903a"], ["https://tec.openplanner.team/stops/N106aib", "https://tec.openplanner.team/stops/N106akb"], ["https://tec.openplanner.team/stops/X661afa", "https://tec.openplanner.team/stops/X661atb"], ["https://tec.openplanner.team/stops/X604afa", "https://tec.openplanner.team/stops/X604ama"], ["https://tec.openplanner.team/stops/N501gaa", "https://tec.openplanner.team/stops/N501gre"], ["https://tec.openplanner.team/stops/Clusncb1", "https://tec.openplanner.team/stops/Cpcarse2"], ["https://tec.openplanner.team/stops/Buccdch1", "https://tec.openplanner.team/stops/Buccmer1"], ["https://tec.openplanner.team/stops/LFAscie2", "https://tec.openplanner.team/stops/LFUfleu2"], ["https://tec.openplanner.team/stops/Bbcohou4", "https://tec.openplanner.team/stops/Bbcomar2"], ["https://tec.openplanner.team/stops/Cmachau1", "https://tec.openplanner.team/stops/Cmastni2"], ["https://tec.openplanner.team/stops/LSAjacq1", "https://tec.openplanner.team/stops/LSAjacq2"], ["https://tec.openplanner.team/stops/X979aba", "https://tec.openplanner.team/stops/X979aca"], ["https://tec.openplanner.team/stops/Lchmarc2", "https://tec.openplanner.team/stops/LHAdeho1"], ["https://tec.openplanner.team/stops/H2ep172a", "https://tec.openplanner.team/stops/H2re175a"], ["https://tec.openplanner.team/stops/Bwatpro1", "https://tec.openplanner.team/stops/Bwatprp2"], ["https://tec.openplanner.team/stops/LLrbano1", "https://tec.openplanner.team/stops/LLrbano2"], ["https://tec.openplanner.team/stops/Cstdona1", "https://tec.openplanner.team/stops/Cstdona6"], ["https://tec.openplanner.team/stops/H1cv101a", "https://tec.openplanner.team/stops/H1hh116a"], ["https://tec.openplanner.team/stops/X601dfa", "https://tec.openplanner.team/stops/X612aaa"], ["https://tec.openplanner.team/stops/LnNkirc1", "https://tec.openplanner.team/stops/LnNzent2"], ["https://tec.openplanner.team/stops/Bwatmco1", "https://tec.openplanner.team/stops/Bwatnro1"], ["https://tec.openplanner.team/stops/H2ch105a", "https://tec.openplanner.team/stops/H2ch105b"], ["https://tec.openplanner.team/stops/Clrecol2", "https://tec.openplanner.team/stops/Clrwesp1"], ["https://tec.openplanner.team/stops/N301aab", "https://tec.openplanner.team/stops/N301aia"], ["https://tec.openplanner.team/stops/Ccuphai4", "https://tec.openplanner.team/stops/Ccuwain2"], ["https://tec.openplanner.team/stops/Cgzcour1", "https://tec.openplanner.team/stops/Cgzm1481"], ["https://tec.openplanner.team/stops/LDmhave2", "https://tec.openplanner.team/stops/LSGhagn1"], ["https://tec.openplanner.team/stops/N167aga", "https://tec.openplanner.team/stops/N550amb"], ["https://tec.openplanner.team/stops/Cjuregi2", "https://tec.openplanner.team/stops/CMbert1"], ["https://tec.openplanner.team/stops/NL77aga", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/LLTgole1", "https://tec.openplanner.team/stops/LLTther2"], ["https://tec.openplanner.team/stops/X664aba", "https://tec.openplanner.team/stops/X667adb"], ["https://tec.openplanner.team/stops/LKmcite1", "https://tec.openplanner.team/stops/LOdkeme1"], ["https://tec.openplanner.team/stops/Lgrlimi2", "https://tec.openplanner.team/stops/Llgmulh1"], ["https://tec.openplanner.team/stops/H1qp150b", "https://tec.openplanner.team/stops/H1qy134a"], ["https://tec.openplanner.team/stops/N501dba", "https://tec.openplanner.team/stops/N533agb"], ["https://tec.openplanner.team/stops/Barchez2", "https://tec.openplanner.team/stops/Barchoc2"], ["https://tec.openplanner.team/stops/H1le124a", "https://tec.openplanner.team/stops/H1le128b"], ["https://tec.openplanner.team/stops/LRmkerk1", "https://tec.openplanner.team/stops/LRmkult1"], ["https://tec.openplanner.team/stops/H1au100b", "https://tec.openplanner.team/stops/H1mr124b"], ["https://tec.openplanner.team/stops/LHAclin2", "https://tec.openplanner.team/stops/LVIhala4"], ["https://tec.openplanner.team/stops/H1fr107b", "https://tec.openplanner.team/stops/H1fr107e"], ["https://tec.openplanner.team/stops/X760afa", "https://tec.openplanner.team/stops/X760aga"], ["https://tec.openplanner.team/stops/LWZeg--1", "https://tec.openplanner.team/stops/X261aab"], ["https://tec.openplanner.team/stops/H4ws158a", "https://tec.openplanner.team/stops/H4ws158b"], ["https://tec.openplanner.team/stops/Cbimonu2", "https://tec.openplanner.team/stops/Cthenmi1"], ["https://tec.openplanner.team/stops/Ltibalt1", "https://tec.openplanner.team/stops/Ltibell1"], ["https://tec.openplanner.team/stops/H5rx102a", "https://tec.openplanner.team/stops/H5rx102b"], ["https://tec.openplanner.team/stops/LnErech2", "https://tec.openplanner.team/stops/LrEborn1"], ["https://tec.openplanner.team/stops/Cvpplan1", "https://tec.openplanner.team/stops/Cvpplan2"], ["https://tec.openplanner.team/stops/X780afa", "https://tec.openplanner.team/stops/X780aga"], ["https://tec.openplanner.team/stops/Cbwegl2", "https://tec.openplanner.team/stops/H1ro131b"], ["https://tec.openplanner.team/stops/LMObouh1", "https://tec.openplanner.team/stops/LMOfrel1"], ["https://tec.openplanner.team/stops/LCleg--2", "https://tec.openplanner.team/stops/LCltrib1"], ["https://tec.openplanner.team/stops/N516aob", "https://tec.openplanner.team/stops/N516aoc"], ["https://tec.openplanner.team/stops/N338afb", "https://tec.openplanner.team/stops/N387abb"], ["https://tec.openplanner.team/stops/N517adc", "https://tec.openplanner.team/stops/N581aaa"], ["https://tec.openplanner.team/stops/H5pe132a", "https://tec.openplanner.team/stops/H5pe149a"], ["https://tec.openplanner.team/stops/X943aga", "https://tec.openplanner.team/stops/X943agb"], ["https://tec.openplanner.team/stops/H1el135a", "https://tec.openplanner.team/stops/H1wi151b"], ["https://tec.openplanner.team/stops/Lmndari2", "https://tec.openplanner.team/stops/Lsmjalh2"], ["https://tec.openplanner.team/stops/H4mo169a", "https://tec.openplanner.team/stops/H4mo190b"], ["https://tec.openplanner.team/stops/LFAscie1", "https://tec.openplanner.team/stops/LFUfleu1"], ["https://tec.openplanner.team/stops/Bwspbbo1", "https://tec.openplanner.team/stops/Bwspbbo2"], ["https://tec.openplanner.team/stops/Livvill1", "https://tec.openplanner.team/stops/Livvill2"], ["https://tec.openplanner.team/stops/H4ma204a", "https://tec.openplanner.team/stops/H4ma205a"], ["https://tec.openplanner.team/stops/Ccifies1", "https://tec.openplanner.team/stops/Ccifies2"], ["https://tec.openplanner.team/stops/NL68aba", "https://tec.openplanner.team/stops/NL68abb"], ["https://tec.openplanner.team/stops/H1eo104a", "https://tec.openplanner.team/stops/H1eo104b"], ["https://tec.openplanner.team/stops/Bmrlcch1", "https://tec.openplanner.team/stops/Bmrlnce1"], ["https://tec.openplanner.team/stops/N127aaa", "https://tec.openplanner.team/stops/N127aba"], ["https://tec.openplanner.team/stops/Lvtlimi1", "https://tec.openplanner.team/stops/Lvtlimi2"], ["https://tec.openplanner.team/stops/Cfocobe1", "https://tec.openplanner.team/stops/Cforpet2"], ["https://tec.openplanner.team/stops/X948aaa", "https://tec.openplanner.team/stops/X948bbb"], ["https://tec.openplanner.team/stops/N519aca", "https://tec.openplanner.team/stops/N519acb"], ["https://tec.openplanner.team/stops/Lstbarb2", "https://tec.openplanner.team/stops/Lstphys2"], ["https://tec.openplanner.team/stops/LbO52--1", "https://tec.openplanner.team/stops/LbOhoff1"], ["https://tec.openplanner.team/stops/LSEcent1", "https://tec.openplanner.team/stops/LSEec--1"], ["https://tec.openplanner.team/stops/Bhevcur2", "https://tec.openplanner.team/stops/Bmsgmon1"], ["https://tec.openplanner.team/stops/Lvefluc2", "https://tec.openplanner.team/stops/Lvehoug2"], ["https://tec.openplanner.team/stops/Bbcoeca1", "https://tec.openplanner.team/stops/Bbcoeco2"], ["https://tec.openplanner.team/stops/H5rx127a", "https://tec.openplanner.team/stops/H5rx148a"], ["https://tec.openplanner.team/stops/H2ll182a", "https://tec.openplanner.team/stops/H2ll257d"], ["https://tec.openplanner.team/stops/Bspkbeu2", "https://tec.openplanner.team/stops/Bspkdon2"], ["https://tec.openplanner.team/stops/X823aea", "https://tec.openplanner.team/stops/X824agb"], ["https://tec.openplanner.team/stops/H2hl111b", "https://tec.openplanner.team/stops/H2sv214a"], ["https://tec.openplanner.team/stops/H1at108b", "https://tec.openplanner.team/stops/H1fy142a"], ["https://tec.openplanner.team/stops/LaNdord1", "https://tec.openplanner.team/stops/LaNmuhl2"], ["https://tec.openplanner.team/stops/Bwatfva1", "https://tec.openplanner.team/stops/Bwatgla1"], ["https://tec.openplanner.team/stops/N562atb", "https://tec.openplanner.team/stops/N562aya"], ["https://tec.openplanner.team/stops/Bixllep1", "https://tec.openplanner.team/stops/Bixllep2"], ["https://tec.openplanner.team/stops/LhOokat2", "https://tec.openplanner.team/stops/LhOukat1"], ["https://tec.openplanner.team/stops/Lprfoot2", "https://tec.openplanner.team/stops/Lprpous2"], ["https://tec.openplanner.team/stops/X670ada", "https://tec.openplanner.team/stops/X670aga"], ["https://tec.openplanner.team/stops/Canmonu3", "https://tec.openplanner.team/stops/Canmonu5"], ["https://tec.openplanner.team/stops/Bsamc7d2", "https://tec.openplanner.team/stops/Bsammon1"], ["https://tec.openplanner.team/stops/LTobilz1", "https://tec.openplanner.team/stops/LTobilz2"], ["https://tec.openplanner.team/stops/N135aea", "https://tec.openplanner.team/stops/N135aoa"], ["https://tec.openplanner.team/stops/LTolijn*", "https://tec.openplanner.team/stops/LWidepo2"], ["https://tec.openplanner.team/stops/Cbbcrbo1", "https://tec.openplanner.team/stops/Cbmgare1"], ["https://tec.openplanner.team/stops/N509aqa", "https://tec.openplanner.team/stops/N509ava"], ["https://tec.openplanner.team/stops/LsVbell2", "https://tec.openplanner.team/stops/LsVfrde1"], ["https://tec.openplanner.team/stops/H1ba110b", "https://tec.openplanner.team/stops/H1qu111b"], ["https://tec.openplanner.team/stops/Bohnmes1", "https://tec.openplanner.team/stops/Bohnmes2"], ["https://tec.openplanner.team/stops/Bezeksj2", "https://tec.openplanner.team/stops/Bneelaa2"], ["https://tec.openplanner.team/stops/X725aea", "https://tec.openplanner.team/stops/X725aza"], ["https://tec.openplanner.team/stops/LeUgulc1", "https://tec.openplanner.team/stops/LeUmalm2"], ["https://tec.openplanner.team/stops/H5pe141b", "https://tec.openplanner.team/stops/H5pe147a"], ["https://tec.openplanner.team/stops/Bbchdra1", "https://tec.openplanner.team/stops/Bbchrra2"], ["https://tec.openplanner.team/stops/X719aca", "https://tec.openplanner.team/stops/X720abb"], ["https://tec.openplanner.team/stops/Bbaualz2", "https://tec.openplanner.team/stops/Bnivhon1"], ["https://tec.openplanner.team/stops/LhLbalt1", "https://tec.openplanner.team/stops/LhLdorf2"], ["https://tec.openplanner.team/stops/Bfledpi1", "https://tec.openplanner.team/stops/Cflchap3"], ["https://tec.openplanner.team/stops/LHTcarr1", "https://tec.openplanner.team/stops/LHTptha4"], ["https://tec.openplanner.team/stops/X358abb", "https://tec.openplanner.team/stops/X358ada"], ["https://tec.openplanner.team/stops/Lmieg--1", "https://tec.openplanner.team/stops/Lmihale2"], ["https://tec.openplanner.team/stops/X979ada", "https://tec.openplanner.team/stops/X979aoa"], ["https://tec.openplanner.team/stops/H3th135c", "https://tec.openplanner.team/stops/H3th135d"], ["https://tec.openplanner.team/stops/LFPzwaa1", "https://tec.openplanner.team/stops/LSJgrae1"], ["https://tec.openplanner.team/stops/Lagcler2", "https://tec.openplanner.team/stops/Lagtilf2"], ["https://tec.openplanner.team/stops/Lhutill2", "https://tec.openplanner.team/stops/Lveherl2"], ["https://tec.openplanner.team/stops/X994aeb", "https://tec.openplanner.team/stops/X995afa"], ["https://tec.openplanner.team/stops/X724aeb", "https://tec.openplanner.team/stops/X724afb"], ["https://tec.openplanner.team/stops/N501eta", "https://tec.openplanner.team/stops/N501ety"], ["https://tec.openplanner.team/stops/LBSchpl1", "https://tec.openplanner.team/stops/LRGchap2"], ["https://tec.openplanner.team/stops/Bbxlfro1", "https://tec.openplanner.team/stops/Bbxlner1"], ["https://tec.openplanner.team/stops/Cchsud16", "https://tec.openplanner.team/stops/Cchsud18"], ["https://tec.openplanner.team/stops/Lsnhorl1", "https://tec.openplanner.team/stops/Lsnvand3"], ["https://tec.openplanner.team/stops/LHMchbl2", "https://tec.openplanner.team/stops/LSIespe1"], ["https://tec.openplanner.team/stops/H4de112a", "https://tec.openplanner.team/stops/H4de112b"], ["https://tec.openplanner.team/stops/H5bl120a", "https://tec.openplanner.team/stops/H5gr135a"], ["https://tec.openplanner.team/stops/N543aaa", "https://tec.openplanner.team/stops/N543aeb"], ["https://tec.openplanner.team/stops/Lfhchaf3", "https://tec.openplanner.team/stops/LRacime1"], ["https://tec.openplanner.team/stops/H1mq199b", "https://tec.openplanner.team/stops/H5is170b"], ["https://tec.openplanner.team/stops/Lrc594-1", "https://tec.openplanner.team/stops/Lrcarse2"], ["https://tec.openplanner.team/stops/Cflsabl1", "https://tec.openplanner.team/stops/Cwgpatr1"], ["https://tec.openplanner.team/stops/LTRsain3", "https://tec.openplanner.team/stops/LTRthie1"], ["https://tec.openplanner.team/stops/Lchcomm1", "https://tec.openplanner.team/stops/Lchsaeg1"], ["https://tec.openplanner.team/stops/Lfhmalv1", "https://tec.openplanner.team/stops/Lfhnrou1"], ["https://tec.openplanner.team/stops/H1em110a", "https://tec.openplanner.team/stops/H1hl129a"], ["https://tec.openplanner.team/stops/X985aeb", "https://tec.openplanner.team/stops/X985ahb"], ["https://tec.openplanner.team/stops/H1ca105a", "https://tec.openplanner.team/stops/H1ma233c"], ["https://tec.openplanner.team/stops/H4ce104a", "https://tec.openplanner.team/stops/H4ce106a"], ["https://tec.openplanner.team/stops/Bwatcpe1", "https://tec.openplanner.team/stops/Bwatgge1"], ["https://tec.openplanner.team/stops/Lmocail1", "https://tec.openplanner.team/stops/Lmochar2"], ["https://tec.openplanner.team/stops/X922aga", "https://tec.openplanner.team/stops/X922ala"], ["https://tec.openplanner.team/stops/Llggcha4", "https://tec.openplanner.team/stops/Lsntvbi3"], ["https://tec.openplanner.team/stops/Cmocalv4", "https://tec.openplanner.team/stops/Cmoruau2"], ["https://tec.openplanner.team/stops/X616aeb", "https://tec.openplanner.team/stops/X624aka"], ["https://tec.openplanner.team/stops/Ccoh1211", "https://tec.openplanner.team/stops/Ccoh1212"], ["https://tec.openplanner.team/stops/LhP25--1", "https://tec.openplanner.team/stops/LhPprum1"], ["https://tec.openplanner.team/stops/Bjodcdt1", "https://tec.openplanner.team/stops/Bjodpce2"], ["https://tec.openplanner.team/stops/Llgancd1", "https://tec.openplanner.team/stops/Llgmont1"], ["https://tec.openplanner.team/stops/H4ga163a", "https://tec.openplanner.team/stops/H4ha167b"], ["https://tec.openplanner.team/stops/LBLfoxh1", "https://tec.openplanner.team/stops/LMoeg--1"], ["https://tec.openplanner.team/stops/Csedoua5", "https://tec.openplanner.team/stops/Csepote1"], ["https://tec.openplanner.team/stops/Cmohame2", "https://tec.openplanner.team/stops/Cmychpl2"], ["https://tec.openplanner.team/stops/H1si152b", "https://tec.openplanner.team/stops/H1si169a"], ["https://tec.openplanner.team/stops/H1mb128a", "https://tec.openplanner.team/stops/H1mb129a"], ["https://tec.openplanner.team/stops/Lprceri1", "https://tec.openplanner.team/stops/Lprmana2"], ["https://tec.openplanner.team/stops/H1hl125a", "https://tec.openplanner.team/stops/H1hl129a"], ["https://tec.openplanner.team/stops/H1bo101a", "https://tec.openplanner.team/stops/H1hi123b"], ["https://tec.openplanner.team/stops/LRUhama1", "https://tec.openplanner.team/stops/LRUhama2"], ["https://tec.openplanner.team/stops/Cchba03", "https://tec.openplanner.team/stops/Cchba05"], ["https://tec.openplanner.team/stops/X759aeb", "https://tec.openplanner.team/stops/X839aea"], ["https://tec.openplanner.team/stops/N501hqa", "https://tec.openplanner.team/stops/N501htb"], ["https://tec.openplanner.team/stops/N539aqa", "https://tec.openplanner.team/stops/N539bdb"], ["https://tec.openplanner.team/stops/N501dwa", "https://tec.openplanner.team/stops/N501eaa"], ["https://tec.openplanner.team/stops/LAWlonc2", "https://tec.openplanner.team/stops/LAWxhen2"], ["https://tec.openplanner.team/stops/X663awb", "https://tec.openplanner.team/stops/X663axb"], ["https://tec.openplanner.team/stops/H1he100a", "https://tec.openplanner.team/stops/H1he102a"], ["https://tec.openplanner.team/stops/LVthest2", "https://tec.openplanner.team/stops/LVttarg2"], ["https://tec.openplanner.team/stops/LENcroi1", "https://tec.openplanner.team/stops/LENmc--1"], ["https://tec.openplanner.team/stops/Btieast1", "https://tec.openplanner.team/stops/Btiegoo2"], ["https://tec.openplanner.team/stops/N539aha", "https://tec.openplanner.team/stops/N539ahb"], ["https://tec.openplanner.team/stops/H2an104a", "https://tec.openplanner.team/stops/H2an104b"], ["https://tec.openplanner.team/stops/X716aca", "https://tec.openplanner.team/stops/X716aea"], ["https://tec.openplanner.team/stops/X604aka", "https://tec.openplanner.team/stops/X604akb"], ["https://tec.openplanner.team/stops/N232bgb", "https://tec.openplanner.team/stops/N232blb"], ["https://tec.openplanner.team/stops/X870aea", "https://tec.openplanner.team/stops/X879aeb"], ["https://tec.openplanner.team/stops/H5at113a", "https://tec.openplanner.team/stops/H5at114a"], ["https://tec.openplanner.team/stops/N562alb", "https://tec.openplanner.team/stops/N570aaa"], ["https://tec.openplanner.team/stops/H4ne134a", "https://tec.openplanner.team/stops/H4ne142a"], ["https://tec.openplanner.team/stops/X754asb", "https://tec.openplanner.team/stops/X754aua"], ["https://tec.openplanner.team/stops/N513aab", "https://tec.openplanner.team/stops/N513ahb"], ["https://tec.openplanner.team/stops/X921aga", "https://tec.openplanner.team/stops/X921agb"], ["https://tec.openplanner.team/stops/X601asa", "https://tec.openplanner.team/stops/X601cfa"], ["https://tec.openplanner.team/stops/Lprmana2", "https://tec.openplanner.team/stops/Lprmana5"], ["https://tec.openplanner.team/stops/Btubbot2", "https://tec.openplanner.team/stops/Btubcim2"], ["https://tec.openplanner.team/stops/LRGgend1", "https://tec.openplanner.team/stops/LRGunio3"], ["https://tec.openplanner.team/stops/H1hh112a", "https://tec.openplanner.team/stops/H1hh114a"], ["https://tec.openplanner.team/stops/LAVcime1", "https://tec.openplanner.team/stops/LAVcime2"], ["https://tec.openplanner.team/stops/X877afb", "https://tec.openplanner.team/stops/X879aba"], ["https://tec.openplanner.team/stops/N552aaa", "https://tec.openplanner.team/stops/N552aab"], ["https://tec.openplanner.team/stops/Barqhro1", "https://tec.openplanner.team/stops/Barqhro2"], ["https://tec.openplanner.team/stops/LPRcasi1", "https://tec.openplanner.team/stops/LPRecol2"], ["https://tec.openplanner.team/stops/LENindu2", "https://tec.openplanner.team/stops/LENpt--1"], ["https://tec.openplanner.team/stops/Lseboia2", "https://tec.openplanner.team/stops/Lsemaha2"], ["https://tec.openplanner.team/stops/N501bla", "https://tec.openplanner.team/stops/N501lqb"], ["https://tec.openplanner.team/stops/Bbgncnd1", "https://tec.openplanner.team/stops/Bsomtnd1"], ["https://tec.openplanner.team/stops/X634aea", "https://tec.openplanner.team/stops/X634aha"], ["https://tec.openplanner.team/stops/LMEeg--1", "https://tec.openplanner.team/stops/LMEeg--2"], ["https://tec.openplanner.team/stops/Lrccomm2", "https://tec.openplanner.team/stops/Lrclant2"], ["https://tec.openplanner.team/stops/LlgLEOP3", "https://tec.openplanner.team/stops/Llgmarc2"], ["https://tec.openplanner.team/stops/H2mg138a", "https://tec.openplanner.team/stops/H2mg140c"], ["https://tec.openplanner.team/stops/H5pe144a", "https://tec.openplanner.team/stops/H5pe151a"], ["https://tec.openplanner.team/stops/LHUetie*", "https://tec.openplanner.team/stops/LSteg--1"], ["https://tec.openplanner.team/stops/Lanpisc1", "https://tec.openplanner.team/stops/Lanpisc2"], ["https://tec.openplanner.team/stops/Llgdefr2", "https://tec.openplanner.team/stops/Llgreyn1"], ["https://tec.openplanner.team/stops/Lflheid1", "https://tec.openplanner.team/stops/Lflheid2"], ["https://tec.openplanner.team/stops/X882afa", "https://tec.openplanner.team/stops/X882aia"], ["https://tec.openplanner.team/stops/Bolggar1", "https://tec.openplanner.team/stops/Bolppla4"], ["https://tec.openplanner.team/stops/LAx17--2", "https://tec.openplanner.team/stops/LAx41--1"], ["https://tec.openplanner.team/stops/LBpecco3", "https://tec.openplanner.team/stops/LBpvue-1"], ["https://tec.openplanner.team/stops/N506bhb", "https://tec.openplanner.team/stops/N506bia"], ["https://tec.openplanner.team/stops/H4ty295a", "https://tec.openplanner.team/stops/H4ty359a"], ["https://tec.openplanner.team/stops/Cmlvitf2", "https://tec.openplanner.team/stops/CMvil2"], ["https://tec.openplanner.team/stops/H4co103a", "https://tec.openplanner.team/stops/H4co103b"], ["https://tec.openplanner.team/stops/X763aab", "https://tec.openplanner.team/stops/X763ada"], ["https://tec.openplanner.team/stops/N232aeb", "https://tec.openplanner.team/stops/N232apb"], ["https://tec.openplanner.team/stops/H4br109a", "https://tec.openplanner.team/stops/H4br111a"], ["https://tec.openplanner.team/stops/Cwgcamp1", "https://tec.openplanner.team/stops/Cwgrans4"], ["https://tec.openplanner.team/stops/Bsrgcur2", "https://tec.openplanner.team/stops/Bsrgm102"], ["https://tec.openplanner.team/stops/X359ada", "https://tec.openplanner.team/stops/X359aea"], ["https://tec.openplanner.team/stops/LeYloos2", "https://tec.openplanner.team/stops/LwAschu1"], ["https://tec.openplanner.team/stops/Caiecol2", "https://tec.openplanner.team/stops/N543cja"], ["https://tec.openplanner.team/stops/Bsaubbo1", "https://tec.openplanner.team/stops/N541acb"], ["https://tec.openplanner.team/stops/Cclmoul2", "https://tec.openplanner.team/stops/Cstgare1"], ["https://tec.openplanner.team/stops/N554adb", "https://tec.openplanner.team/stops/N573aqa"], ["https://tec.openplanner.team/stops/H1ba114d", "https://tec.openplanner.team/stops/H1ba118b"], ["https://tec.openplanner.team/stops/Lhrcols4", "https://tec.openplanner.team/stops/Lhrpaep1"], ["https://tec.openplanner.team/stops/N242ada", "https://tec.openplanner.team/stops/N251aaa"], ["https://tec.openplanner.team/stops/Csrcant2", "https://tec.openplanner.team/stops/Cvtvois2"], ["https://tec.openplanner.team/stops/Croegli1", "https://tec.openplanner.team/stops/Croegli2"], ["https://tec.openplanner.team/stops/X901bob", "https://tec.openplanner.team/stops/X901bsa"], ["https://tec.openplanner.team/stops/LHCmonu1", "https://tec.openplanner.team/stops/LHCmonu3"], ["https://tec.openplanner.team/stops/N538baa", "https://tec.openplanner.team/stops/N539awa"], ["https://tec.openplanner.team/stops/H4ka188a", "https://tec.openplanner.team/stops/H4ka188b"], ["https://tec.openplanner.team/stops/Lflroms5", "https://tec.openplanner.team/stops/Lflsana1"], ["https://tec.openplanner.team/stops/LREhaut2", "https://tec.openplanner.team/stops/LREsech1"], ["https://tec.openplanner.team/stops/LNCimpe1", "https://tec.openplanner.team/stops/LRRcarr1"], ["https://tec.openplanner.team/stops/LrTbahn1", "https://tec.openplanner.team/stops/LrTpost1"], ["https://tec.openplanner.team/stops/LCEhayo1", "https://tec.openplanner.team/stops/LETfort4"], ["https://tec.openplanner.team/stops/N304aaa", "https://tec.openplanner.team/stops/N329aaa"], ["https://tec.openplanner.team/stops/N139aaa", "https://tec.openplanner.team/stops/N139aba"], ["https://tec.openplanner.team/stops/H1ol146a", "https://tec.openplanner.team/stops/H1ol146b"], ["https://tec.openplanner.team/stops/LTIdamr2", "https://tec.openplanner.team/stops/LTIdumo2"], ["https://tec.openplanner.team/stops/X650aba", "https://tec.openplanner.team/stops/X650acb"], ["https://tec.openplanner.team/stops/N232bba", "https://tec.openplanner.team/stops/N232bbb"], ["https://tec.openplanner.team/stops/X616aja", "https://tec.openplanner.team/stops/X616ajb"], ["https://tec.openplanner.team/stops/Canlalu1", "https://tec.openplanner.team/stops/Canlalu2"], ["https://tec.openplanner.team/stops/N214aba", "https://tec.openplanner.team/stops/N214abb"], ["https://tec.openplanner.team/stops/Lcehipp2", "https://tec.openplanner.team/stops/Lgrclin3"], ["https://tec.openplanner.team/stops/H1je216b", "https://tec.openplanner.team/stops/H1je222a"], ["https://tec.openplanner.team/stops/X613aca", "https://tec.openplanner.team/stops/X613acb"], ["https://tec.openplanner.team/stops/Lghalli2", "https://tec.openplanner.team/stops/Lghsimo4"], ["https://tec.openplanner.team/stops/H4gu108b", "https://tec.openplanner.team/stops/H4gu108c"], ["https://tec.openplanner.team/stops/Buccbou1", "https://tec.openplanner.team/stops/Buccbou2"], ["https://tec.openplanner.team/stops/H2ll199b", "https://tec.openplanner.team/stops/H2ll257d"], ["https://tec.openplanner.team/stops/N501fma", "https://tec.openplanner.team/stops/N501fpb"], ["https://tec.openplanner.team/stops/NL82aga", "https://tec.openplanner.team/stops/X222afb"], ["https://tec.openplanner.team/stops/X601bda", "https://tec.openplanner.team/stops/X601bxb"], ["https://tec.openplanner.team/stops/X721aaa", "https://tec.openplanner.team/stops/X721aia"], ["https://tec.openplanner.team/stops/N533aha", "https://tec.openplanner.team/stops/N551aaa"], ["https://tec.openplanner.team/stops/X608acb", "https://tec.openplanner.team/stops/X608afb"], ["https://tec.openplanner.team/stops/N547ama", "https://tec.openplanner.team/stops/N547amb"], ["https://tec.openplanner.team/stops/N562afa", "https://tec.openplanner.team/stops/N562afb"], ["https://tec.openplanner.team/stops/Btubfab1", "https://tec.openplanner.team/stops/Btubnav1"], ["https://tec.openplanner.team/stops/LBOec--1", "https://tec.openplanner.team/stops/LMucarr1"], ["https://tec.openplanner.team/stops/H1sa112b", "https://tec.openplanner.team/stops/H1sa115a"], ["https://tec.openplanner.team/stops/H4be101a", "https://tec.openplanner.team/stops/H5bs103b"], ["https://tec.openplanner.team/stops/X917ajb", "https://tec.openplanner.team/stops/X919amb"], ["https://tec.openplanner.team/stops/Bblager1", "https://tec.openplanner.team/stops/Bblasta1"], ["https://tec.openplanner.team/stops/X623aja", "https://tec.openplanner.team/stops/X624amb"], ["https://tec.openplanner.team/stops/N226ada", "https://tec.openplanner.team/stops/N321aea"], ["https://tec.openplanner.team/stops/N584aea", "https://tec.openplanner.team/stops/N584aga"], ["https://tec.openplanner.team/stops/X615ama", "https://tec.openplanner.team/stops/X615anb"], ["https://tec.openplanner.team/stops/LWacime1", "https://tec.openplanner.team/stops/LWacime4"], ["https://tec.openplanner.team/stops/X602aba", "https://tec.openplanner.team/stops/X633aab"], ["https://tec.openplanner.team/stops/LHUvege1", "https://tec.openplanner.team/stops/NL76bcb"], ["https://tec.openplanner.team/stops/Llgpbay2", "https://tec.openplanner.team/stops/Llgvolg2"], ["https://tec.openplanner.team/stops/LRRbonr1", "https://tec.openplanner.team/stops/LRRecdu1"], ["https://tec.openplanner.team/stops/LeUkirc1", "https://tec.openplanner.team/stops/LeUnisp1"], ["https://tec.openplanner.team/stops/LQacabi1", "https://tec.openplanner.team/stops/LQacabi2"], ["https://tec.openplanner.team/stops/H1ry135a", "https://tec.openplanner.team/stops/H1ry137a"], ["https://tec.openplanner.team/stops/N513aha", "https://tec.openplanner.team/stops/N521ada"], ["https://tec.openplanner.team/stops/X723aaa", "https://tec.openplanner.team/stops/X723anb"], ["https://tec.openplanner.team/stops/N501gfb", "https://tec.openplanner.team/stops/N501iga"], ["https://tec.openplanner.team/stops/N301agb", "https://tec.openplanner.team/stops/N340aea"], ["https://tec.openplanner.team/stops/Boveker2", "https://tec.openplanner.team/stops/Brsrfen2"], ["https://tec.openplanner.team/stops/LWDfuma2", "https://tec.openplanner.team/stops/LWDhous1"], ["https://tec.openplanner.team/stops/LRteg--*", "https://tec.openplanner.team/stops/LTestat1"], ["https://tec.openplanner.team/stops/LBRmc--3", "https://tec.openplanner.team/stops/LBRmc--4"], ["https://tec.openplanner.team/stops/H4ty314a", "https://tec.openplanner.team/stops/H4ty314e"], ["https://tec.openplanner.team/stops/X601bbd", "https://tec.openplanner.team/stops/X601bqa"], ["https://tec.openplanner.team/stops/LVRchpl1", "https://tec.openplanner.team/stops/X547aqa"], ["https://tec.openplanner.team/stops/LWaanto1", "https://tec.openplanner.team/stops/LWapl--1"], ["https://tec.openplanner.team/stops/N516abb", "https://tec.openplanner.team/stops/N516aca"], ["https://tec.openplanner.team/stops/LBEbelf2", "https://tec.openplanner.team/stops/LBEcomm2"], ["https://tec.openplanner.team/stops/H3bi101b", "https://tec.openplanner.team/stops/H3bi104a"], ["https://tec.openplanner.team/stops/X602aob", "https://tec.openplanner.team/stops/X663akb"], ["https://tec.openplanner.team/stops/NL81adb", "https://tec.openplanner.team/stops/NL81aeb"], ["https://tec.openplanner.team/stops/N426acb", "https://tec.openplanner.team/stops/N426ada"], ["https://tec.openplanner.team/stops/N201apa", "https://tec.openplanner.team/stops/N219adb"], ["https://tec.openplanner.team/stops/H4ty308a", "https://tec.openplanner.team/stops/H4ty317a"], ["https://tec.openplanner.team/stops/H1ch102b", "https://tec.openplanner.team/stops/H4ab100b"], ["https://tec.openplanner.team/stops/LVleg--3", "https://tec.openplanner.team/stops/LVlroua4"], ["https://tec.openplanner.team/stops/X767aab", "https://tec.openplanner.team/stops/X767aib"], ["https://tec.openplanner.team/stops/Bcrbhir1", "https://tec.openplanner.team/stops/Bnilpor4"], ["https://tec.openplanner.team/stops/Bbautri2", "https://tec.openplanner.team/stops/Bnivvcw2"], ["https://tec.openplanner.team/stops/Becepri1", "https://tec.openplanner.team/stops/H2ec103b"], ["https://tec.openplanner.team/stops/X650aca", "https://tec.openplanner.team/stops/X650ada"], ["https://tec.openplanner.team/stops/Bvilcha2", "https://tec.openplanner.team/stops/Bvilcim2"], ["https://tec.openplanner.team/stops/X911aaa", "https://tec.openplanner.team/stops/X911asb"], ["https://tec.openplanner.team/stops/Ccoforr2", "https://tec.openplanner.team/stops/Ccogera2"], ["https://tec.openplanner.team/stops/Lstbarb6", "https://tec.openplanner.team/stops/Lstscie2"], ["https://tec.openplanner.team/stops/N424ada", "https://tec.openplanner.team/stops/N424aeb"], ["https://tec.openplanner.team/stops/X657aaa", "https://tec.openplanner.team/stops/X670aha"], ["https://tec.openplanner.team/stops/Bwavrij1", "https://tec.openplanner.team/stops/Bwavzno2"], ["https://tec.openplanner.team/stops/X780aaa", "https://tec.openplanner.team/stops/X788aha"], ["https://tec.openplanner.team/stops/N150aha", "https://tec.openplanner.team/stops/N150aib"], ["https://tec.openplanner.team/stops/H1hh114b", "https://tec.openplanner.team/stops/H1hh118a"], ["https://tec.openplanner.team/stops/N528aca", "https://tec.openplanner.team/stops/N528avb"], ["https://tec.openplanner.team/stops/Bbch4br4", "https://tec.openplanner.team/stops/Bbchrra3"], ["https://tec.openplanner.team/stops/Lhuecol2", "https://tec.openplanner.team/stops/Lmntast3"], ["https://tec.openplanner.team/stops/LCsbors1", "https://tec.openplanner.team/stops/LCsgend2"], ["https://tec.openplanner.team/stops/N501cda", "https://tec.openplanner.team/stops/N501mcc"], ["https://tec.openplanner.team/stops/X902aia", "https://tec.openplanner.team/stops/X902aqa"], ["https://tec.openplanner.team/stops/X825aab", "https://tec.openplanner.team/stops/X825aga"], ["https://tec.openplanner.team/stops/X879arb", "https://tec.openplanner.team/stops/X880agb"], ["https://tec.openplanner.team/stops/Lagpera1", "https://tec.openplanner.team/stops/Lagvall2"], ["https://tec.openplanner.team/stops/LBAcere1", "https://tec.openplanner.team/stops/LBApak2*"], ["https://tec.openplanner.team/stops/N251aba", "https://tec.openplanner.team/stops/N251adb"], ["https://tec.openplanner.team/stops/LlNbruc1", "https://tec.openplanner.team/stops/LlNlimb1"], ["https://tec.openplanner.team/stops/H2sb232a", "https://tec.openplanner.team/stops/H3th131b"], ["https://tec.openplanner.team/stops/Lhrgall2", "https://tec.openplanner.team/stops/Lhrmare8"], ["https://tec.openplanner.team/stops/Ljetomb2", "https://tec.openplanner.team/stops/Ljetout2"], ["https://tec.openplanner.team/stops/X954aca", "https://tec.openplanner.team/stops/X954aha"], ["https://tec.openplanner.team/stops/LHGtige1", "https://tec.openplanner.team/stops/LHGtron1"], ["https://tec.openplanner.team/stops/X641aja", "https://tec.openplanner.team/stops/X641alb"], ["https://tec.openplanner.team/stops/Cbwmato1", "https://tec.openplanner.team/stops/Cbwmato2"], ["https://tec.openplanner.team/stops/X684aaa", "https://tec.openplanner.team/stops/X684abb"], ["https://tec.openplanner.team/stops/X719aaa", "https://tec.openplanner.team/stops/X721asa"], ["https://tec.openplanner.team/stops/H2an101a", "https://tec.openplanner.team/stops/H2an102b"], ["https://tec.openplanner.team/stops/LSGeg--1", "https://tec.openplanner.team/stops/LSGeg--2"], ["https://tec.openplanner.team/stops/Bwatle31", "https://tec.openplanner.team/stops/Bwatle32"], ["https://tec.openplanner.team/stops/H5qu156a", "https://tec.openplanner.team/stops/H5qu182b"], ["https://tec.openplanner.team/stops/H2ha133a", "https://tec.openplanner.team/stops/H2ha143a"], ["https://tec.openplanner.team/stops/H1br121b", "https://tec.openplanner.team/stops/H3bo101a"], ["https://tec.openplanner.team/stops/Chpatel2", "https://tec.openplanner.team/stops/Chpfoli5"], ["https://tec.openplanner.team/stops/Cctvche2", "https://tec.openplanner.team/stops/NC11aka"], ["https://tec.openplanner.team/stops/X630aca", "https://tec.openplanner.team/stops/X630acb"], ["https://tec.openplanner.team/stops/Cmyecur2", "https://tec.openplanner.team/stops/Cmygrbr1"], ["https://tec.openplanner.team/stops/X766aaa", "https://tec.openplanner.team/stops/X768ahb"], ["https://tec.openplanner.team/stops/X724aha", "https://tec.openplanner.team/stops/X724ahb"], ["https://tec.openplanner.team/stops/H4ef163b", "https://tec.openplanner.team/stops/H4ef165a"], ["https://tec.openplanner.team/stops/Bwavlep1", "https://tec.openplanner.team/stops/Bwavmes2"], ["https://tec.openplanner.team/stops/LOltill2", "https://tec.openplanner.team/stops/LSevitu3"], ["https://tec.openplanner.team/stops/X723aaa", "https://tec.openplanner.team/stops/X775aia"], ["https://tec.openplanner.team/stops/N135aaa", "https://tec.openplanner.team/stops/N136ada"], ["https://tec.openplanner.team/stops/X986ama", "https://tec.openplanner.team/stops/X986amb"], ["https://tec.openplanner.team/stops/LSNmoul3", "https://tec.openplanner.team/stops/LSNmoul4"], ["https://tec.openplanner.team/stops/H4co104a", "https://tec.openplanner.team/stops/H4co109a"], ["https://tec.openplanner.team/stops/Cmlecha1", "https://tec.openplanner.team/stops/Cmlvpla1"], ["https://tec.openplanner.team/stops/X746aja", "https://tec.openplanner.team/stops/X746aka"], ["https://tec.openplanner.team/stops/Bmrqpla2", "https://tec.openplanner.team/stops/H1mk115a"], ["https://tec.openplanner.team/stops/N214agb", "https://tec.openplanner.team/stops/N236ahb"], ["https://tec.openplanner.team/stops/H1hm173b", "https://tec.openplanner.team/stops/H1hm175a"], ["https://tec.openplanner.team/stops/N224aba", "https://tec.openplanner.team/stops/N349ada"], ["https://tec.openplanner.team/stops/Llojeme3", "https://tec.openplanner.team/stops/Llonaes2"], ["https://tec.openplanner.team/stops/X879ada", "https://tec.openplanner.team/stops/X879arb"], ["https://tec.openplanner.team/stops/LiV19--1", "https://tec.openplanner.team/stops/LiVdorf2"], ["https://tec.openplanner.team/stops/H4ve133b", "https://tec.openplanner.team/stops/H4ve135a"], ["https://tec.openplanner.team/stops/H1wi152b", "https://tec.openplanner.team/stops/H1wi152d"], ["https://tec.openplanner.team/stops/X991aaa", "https://tec.openplanner.team/stops/X991aeb"], ["https://tec.openplanner.team/stops/H4ka186a", "https://tec.openplanner.team/stops/H4mt218b"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X774ahb"], ["https://tec.openplanner.team/stops/H1pa117a", "https://tec.openplanner.team/stops/H1pa118b"], ["https://tec.openplanner.team/stops/LCAcruc1", "https://tec.openplanner.team/stops/LCAcruc2"], ["https://tec.openplanner.team/stops/H1sg144a", "https://tec.openplanner.team/stops/H1te176a"], ["https://tec.openplanner.team/stops/LCxwarr1", "https://tec.openplanner.team/stops/LHEchex1"], ["https://tec.openplanner.team/stops/LLYhoch1", "https://tec.openplanner.team/stops/LLYpeup1"], ["https://tec.openplanner.team/stops/Cwfbarr1", "https://tec.openplanner.team/stops/Cwfcast1"], ["https://tec.openplanner.team/stops/N244awa", "https://tec.openplanner.team/stops/N245aab"], ["https://tec.openplanner.team/stops/Ljemont1", "https://tec.openplanner.team/stops/Ljewale1"], ["https://tec.openplanner.team/stops/LLYhoch2", "https://tec.openplanner.team/stops/LTOplac1"], ["https://tec.openplanner.team/stops/LVeeg--2", "https://tec.openplanner.team/stops/LVGeg--2"], ["https://tec.openplanner.team/stops/H4te258b", "https://tec.openplanner.team/stops/H4te261a"], ["https://tec.openplanner.team/stops/H4pl111a", "https://tec.openplanner.team/stops/H4pl117a"], ["https://tec.openplanner.team/stops/X901aga", "https://tec.openplanner.team/stops/X901aia"], ["https://tec.openplanner.team/stops/LODarbr1", "https://tec.openplanner.team/stops/X548adb"], ["https://tec.openplanner.team/stops/X734afb", "https://tec.openplanner.team/stops/X734aha"], ["https://tec.openplanner.team/stops/LNEbo471", "https://tec.openplanner.team/stops/LNEbo472"], ["https://tec.openplanner.team/stops/X817aea", "https://tec.openplanner.team/stops/X817aeb"], ["https://tec.openplanner.team/stops/X695aba", "https://tec.openplanner.team/stops/X695aea"], ["https://tec.openplanner.team/stops/H1bu136b", "https://tec.openplanner.team/stops/H1vb147a"], ["https://tec.openplanner.team/stops/LVHcent2", "https://tec.openplanner.team/stops/LVHtill2"], ["https://tec.openplanner.team/stops/N542aaa", "https://tec.openplanner.team/stops/N542aac"], ["https://tec.openplanner.team/stops/N505ana", "https://tec.openplanner.team/stops/N512aub"], ["https://tec.openplanner.team/stops/Bgligli1", "https://tec.openplanner.team/stops/Bgligli2"], ["https://tec.openplanner.team/stops/Bcrbmsg1", "https://tec.openplanner.team/stops/Bcrbmsg2"], ["https://tec.openplanner.team/stops/Bpernov1", "https://tec.openplanner.team/stops/Bperpla1"], ["https://tec.openplanner.team/stops/H4bv145b", "https://tec.openplanner.team/stops/H4bv146a"], ["https://tec.openplanner.team/stops/LbUgend2", "https://tec.openplanner.team/stops/LbUvith2"], ["https://tec.openplanner.team/stops/Bmartil2", "https://tec.openplanner.team/stops/Bsdavpe2"], ["https://tec.openplanner.team/stops/Llgjoie2", "https://tec.openplanner.team/stops/Llgjoie4"], ["https://tec.openplanner.team/stops/N506bfa", "https://tec.openplanner.team/stops/N512agc"], ["https://tec.openplanner.team/stops/Bjodtpo2", "https://tec.openplanner.team/stops/Bsjgmil2"], ["https://tec.openplanner.team/stops/N121aea", "https://tec.openplanner.team/stops/N121ajb"], ["https://tec.openplanner.team/stops/LWAor--2", "https://tec.openplanner.team/stops/LWArege1"], ["https://tec.openplanner.team/stops/LkAbahn*", "https://tec.openplanner.team/stops/LmTzoll1"], ["https://tec.openplanner.team/stops/X950abb", "https://tec.openplanner.team/stops/X950aca"], ["https://tec.openplanner.team/stops/H1ms308b", "https://tec.openplanner.team/stops/H1ms308c"], ["https://tec.openplanner.team/stops/LENaout1", "https://tec.openplanner.team/stops/LGlbour2"], ["https://tec.openplanner.team/stops/H1do131c", "https://tec.openplanner.team/stops/H1do131d"], ["https://tec.openplanner.team/stops/LVtvalu1", "https://tec.openplanner.team/stops/LVtvalu2"], ["https://tec.openplanner.team/stops/NL76aka", "https://tec.openplanner.team/stops/NL77ahb"], ["https://tec.openplanner.team/stops/Lvtathe1", "https://tec.openplanner.team/stops/Lvteg--1"], ["https://tec.openplanner.team/stops/X736afa", "https://tec.openplanner.team/stops/X736aia"], ["https://tec.openplanner.team/stops/LEMeg--2", "https://tec.openplanner.team/stops/LEMfort2"], ["https://tec.openplanner.team/stops/Blhubja1", "https://tec.openplanner.team/stops/Blhueso1"], ["https://tec.openplanner.team/stops/X608ava", "https://tec.openplanner.team/stops/X608avb"], ["https://tec.openplanner.team/stops/Cflhano1", "https://tec.openplanner.team/stops/Cwfmoul1"], ["https://tec.openplanner.team/stops/Bottegl2", "https://tec.openplanner.team/stops/Bottegl3"], ["https://tec.openplanner.team/stops/N212agb", "https://tec.openplanner.team/stops/N212agc"], ["https://tec.openplanner.team/stops/Bneecha1", "https://tec.openplanner.team/stops/Bneecha3"], ["https://tec.openplanner.team/stops/Bmalwvi2", "https://tec.openplanner.team/stops/Btlbcha2"], ["https://tec.openplanner.team/stops/LNCmc--2", "https://tec.openplanner.team/stops/LNCvill3"], ["https://tec.openplanner.team/stops/LSBjoli2", "https://tec.openplanner.team/stops/LSBrouf4"], ["https://tec.openplanner.team/stops/H1gr111b", "https://tec.openplanner.team/stops/H1mk109a"], ["https://tec.openplanner.team/stops/LmSluxh2", "https://tec.openplanner.team/stops/LnDdorf1"], ["https://tec.openplanner.team/stops/Cctfrbe2", "https://tec.openplanner.team/stops/Cctstro3"], ["https://tec.openplanner.team/stops/Lsepair1", "https://tec.openplanner.team/stops/Lsepair3"], ["https://tec.openplanner.team/stops/X948ama", "https://tec.openplanner.team/stops/X948amc"], ["https://tec.openplanner.team/stops/LTIpora1", "https://tec.openplanner.team/stops/LTIpora2"], ["https://tec.openplanner.team/stops/H3lr110b", "https://tec.openplanner.team/stops/H3lr113b"], ["https://tec.openplanner.team/stops/Cbbjfeu2", "https://tec.openplanner.team/stops/Cclbarb2"], ["https://tec.openplanner.team/stops/X601aib", "https://tec.openplanner.team/stops/X601cbb"], ["https://tec.openplanner.team/stops/Bndb4ch2", "https://tec.openplanner.team/stops/Bndbgar2"], ["https://tec.openplanner.team/stops/N501bda", "https://tec.openplanner.team/stops/N501iez"], ["https://tec.openplanner.team/stops/H4oe148a", "https://tec.openplanner.team/stops/H4oe151b"], ["https://tec.openplanner.team/stops/H1pa167a", "https://tec.openplanner.team/stops/H1pa167b"], ["https://tec.openplanner.team/stops/X675aaa", "https://tec.openplanner.team/stops/X675aba"], ["https://tec.openplanner.team/stops/N532acb", "https://tec.openplanner.team/stops/N533aca"], ["https://tec.openplanner.team/stops/H2na135b", "https://tec.openplanner.team/stops/H3so170b"], ["https://tec.openplanner.team/stops/LSyeg--1", "https://tec.openplanner.team/stops/LSygerm1"], ["https://tec.openplanner.team/stops/N551ahb", "https://tec.openplanner.team/stops/N551apb"], ["https://tec.openplanner.team/stops/N501grc", "https://tec.openplanner.team/stops/N501gre"], ["https://tec.openplanner.team/stops/Brsrbbo1", "https://tec.openplanner.team/stops/Brsreco1"], ["https://tec.openplanner.team/stops/Bpienod2", "https://tec.openplanner.team/stops/Bpiepnd2"], ["https://tec.openplanner.team/stops/Lflcle-2", "https://tec.openplanner.team/stops/Lflcle-3"], ["https://tec.openplanner.team/stops/H1ro135b", "https://tec.openplanner.team/stops/H1ro141a"], ["https://tec.openplanner.team/stops/LLRbleh2", "https://tec.openplanner.team/stops/LLRptma2"], ["https://tec.openplanner.team/stops/LMOstat1", "https://tec.openplanner.team/stops/LNvrout2"], ["https://tec.openplanner.team/stops/Cchorle1", "https://tec.openplanner.team/stops/Cchparc1"], ["https://tec.openplanner.team/stops/LPOleli1", "https://tec.openplanner.team/stops/LPOthom2"], ["https://tec.openplanner.team/stops/Bovevnd1", "https://tec.openplanner.team/stops/Bovevnd2"], ["https://tec.openplanner.team/stops/Cjupllo2", "https://tec.openplanner.team/stops/Cjurogi1"], ["https://tec.openplanner.team/stops/LHUfrai1", "https://tec.openplanner.team/stops/LHUsart2"], ["https://tec.openplanner.team/stops/H1ms267a", "https://tec.openplanner.team/stops/H1ms309a"], ["https://tec.openplanner.team/stops/Llabrou1", "https://tec.openplanner.team/stops/Llabrou2"], ["https://tec.openplanner.team/stops/LAVdepr2", "https://tec.openplanner.team/stops/LAVeg--2"], ["https://tec.openplanner.team/stops/NL72aea", "https://tec.openplanner.team/stops/NL72aeb"], ["https://tec.openplanner.team/stops/LARauto1", "https://tec.openplanner.team/stops/LARauto3"], ["https://tec.openplanner.team/stops/X948arb", "https://tec.openplanner.team/stops/X948ava"], ["https://tec.openplanner.team/stops/H4hs136b", "https://tec.openplanner.team/stops/H4hs137b"], ["https://tec.openplanner.team/stops/Bglacsr1", "https://tec.openplanner.team/stops/Bmrsmco1"], ["https://tec.openplanner.team/stops/LVEdTEC1", "https://tec.openplanner.team/stops/LVEmoul2"], ["https://tec.openplanner.team/stops/N534asa", "https://tec.openplanner.team/stops/N534bbb"], ["https://tec.openplanner.team/stops/LCleg--1", "https://tec.openplanner.team/stops/LCltrib1"], ["https://tec.openplanner.team/stops/Bbsicea1", "https://tec.openplanner.team/stops/Bbsivil1"], ["https://tec.openplanner.team/stops/H4lz121d", "https://tec.openplanner.team/stops/H4lz123a"], ["https://tec.openplanner.team/stops/Ladabot1", "https://tec.openplanner.team/stops/LHCprog1"], ["https://tec.openplanner.team/stops/X824acb", "https://tec.openplanner.team/stops/X824ala"], ["https://tec.openplanner.team/stops/Cmmcomb2", "https://tec.openplanner.team/stops/Cmmpjou3"], ["https://tec.openplanner.team/stops/LLxcbr-2", "https://tec.openplanner.team/stops/LLxconj2"], ["https://tec.openplanner.team/stops/X640ana", "https://tec.openplanner.team/stops/X640ava"], ["https://tec.openplanner.team/stops/X745aca", "https://tec.openplanner.team/stops/X745aea"], ["https://tec.openplanner.team/stops/Lagjard1", "https://tec.openplanner.team/stops/Lagvall2"], ["https://tec.openplanner.team/stops/X609aga", "https://tec.openplanner.team/stops/X609ara"], ["https://tec.openplanner.team/stops/H2me117a", "https://tec.openplanner.team/stops/H2me117b"], ["https://tec.openplanner.team/stops/X896aca", "https://tec.openplanner.team/stops/X896ada"], ["https://tec.openplanner.team/stops/X661akb", "https://tec.openplanner.team/stops/X661apa"], ["https://tec.openplanner.team/stops/Btubcim2", "https://tec.openplanner.team/stops/Btubpir2"], ["https://tec.openplanner.team/stops/H4bo117b", "https://tec.openplanner.team/stops/H4hu120a"], ["https://tec.openplanner.team/stops/N323aca", "https://tec.openplanner.team/stops/N360aab"], ["https://tec.openplanner.team/stops/LHEjose2", "https://tec.openplanner.team/stops/LMEgare2"], ["https://tec.openplanner.team/stops/H2ca105a", "https://tec.openplanner.team/stops/H2ca115a"], ["https://tec.openplanner.team/stops/X789aab", "https://tec.openplanner.team/stops/X789aba"], ["https://tec.openplanner.team/stops/H2se109a", "https://tec.openplanner.team/stops/H2se110a"], ["https://tec.openplanner.team/stops/Becepon1", "https://tec.openplanner.team/stops/H2ec106a"], ["https://tec.openplanner.team/stops/Bhmmcor1", "https://tec.openplanner.team/stops/Btlgmar1"], ["https://tec.openplanner.team/stops/N501lpa", "https://tec.openplanner.team/stops/N501lpb"], ["https://tec.openplanner.team/stops/X610aaa", "https://tec.openplanner.team/stops/X610aca"], ["https://tec.openplanner.team/stops/LMebove2", "https://tec.openplanner.team/stops/LMeperk2"], ["https://tec.openplanner.team/stops/X802aca", "https://tec.openplanner.team/stops/X802acb"], ["https://tec.openplanner.team/stops/Bdoncar2", "https://tec.openplanner.team/stops/Bgliaau1"], ["https://tec.openplanner.team/stops/Cmadeli1", "https://tec.openplanner.team/stops/Cmadeli2"], ["https://tec.openplanner.team/stops/N207aca", "https://tec.openplanner.team/stops/X206azb"], ["https://tec.openplanner.team/stops/X948aha", "https://tec.openplanner.team/stops/X948aub"], ["https://tec.openplanner.team/stops/Llggram3", "https://tec.openplanner.team/stops/Llgrome1"], ["https://tec.openplanner.team/stops/LSZarze1", "https://tec.openplanner.team/stops/LSZptwa2"], ["https://tec.openplanner.team/stops/N304aab", "https://tec.openplanner.team/stops/N305aaa"], ["https://tec.openplanner.team/stops/X837aab", "https://tec.openplanner.team/stops/X837aga"], ["https://tec.openplanner.team/stops/H4mo134a", "https://tec.openplanner.team/stops/H4mo179a"], ["https://tec.openplanner.team/stops/H4br108b", "https://tec.openplanner.team/stops/H4ch117b"], ["https://tec.openplanner.team/stops/LHUbail2", "https://tec.openplanner.team/stops/NL76bca"], ["https://tec.openplanner.team/stops/N338aaa", "https://tec.openplanner.team/stops/N338aha"], ["https://tec.openplanner.team/stops/N355aca", "https://tec.openplanner.team/stops/N355ada"], ["https://tec.openplanner.team/stops/Bwatpro2", "https://tec.openplanner.team/stops/Bwatrte1"], ["https://tec.openplanner.team/stops/H2sb259a", "https://tec.openplanner.team/stops/H2sb259b"], ["https://tec.openplanner.team/stops/H1ch102a", "https://tec.openplanner.team/stops/H4ab100b"], ["https://tec.openplanner.team/stops/X749aca", "https://tec.openplanner.team/stops/X749acb"], ["https://tec.openplanner.team/stops/Cmmramb1", "https://tec.openplanner.team/stops/Cmmramb2"], ["https://tec.openplanner.team/stops/H1gh160a", "https://tec.openplanner.team/stops/H1gh165c"], ["https://tec.openplanner.team/stops/LMOstat1", "https://tec.openplanner.team/stops/LMOstat2"], ["https://tec.openplanner.team/stops/Llgcour1", "https://tec.openplanner.team/stops/Llgtcha2"], ["https://tec.openplanner.team/stops/Lglvict1", "https://tec.openplanner.team/stops/Llgbobu1"], ["https://tec.openplanner.team/stops/H1au103b", "https://tec.openplanner.team/stops/H1el132b"], ["https://tec.openplanner.team/stops/Cjuplho1", "https://tec.openplanner.team/stops/Cjuplho2"], ["https://tec.openplanner.team/stops/LVvboma2", "https://tec.openplanner.team/stops/X796aab"], ["https://tec.openplanner.team/stops/N343aka", "https://tec.openplanner.team/stops/N350aeb"], ["https://tec.openplanner.team/stops/LClbloc1", "https://tec.openplanner.team/stops/LClbloc2"], ["https://tec.openplanner.team/stops/N331aca", "https://tec.openplanner.team/stops/N331aka"], ["https://tec.openplanner.team/stops/X774aea", "https://tec.openplanner.team/stops/X774aeb"], ["https://tec.openplanner.team/stops/H1qu101b", "https://tec.openplanner.team/stops/H1qu129b"], ["https://tec.openplanner.team/stops/Lsepuit1", "https://tec.openplanner.team/stops/Lsepuit2"], ["https://tec.openplanner.team/stops/N501amb", "https://tec.openplanner.team/stops/N501cyb"], ["https://tec.openplanner.team/stops/Ccugilb1", "https://tec.openplanner.team/stops/Cgysarr1"], ["https://tec.openplanner.team/stops/Llgfail2", "https://tec.openplanner.team/stops/Llgrain2"], ["https://tec.openplanner.team/stops/N558ana", "https://tec.openplanner.team/stops/N559aca"], ["https://tec.openplanner.team/stops/H1ha197b", "https://tec.openplanner.team/stops/H1ob336a"], ["https://tec.openplanner.team/stops/LSdsa8a1", "https://tec.openplanner.team/stops/LSdsar52"], ["https://tec.openplanner.team/stops/H1cu125a", "https://tec.openplanner.team/stops/H1cu129a"], ["https://tec.openplanner.team/stops/Cmapeet2", "https://tec.openplanner.team/stops/Cmarroy2"], ["https://tec.openplanner.team/stops/N229ala", "https://tec.openplanner.team/stops/N229ara"], ["https://tec.openplanner.team/stops/Cnamonn2", "https://tec.openplanner.team/stops/Cnarmon1"], ["https://tec.openplanner.team/stops/H4vz367a", "https://tec.openplanner.team/stops/H4ws160b"], ["https://tec.openplanner.team/stops/X396aab", "https://tec.openplanner.team/stops/X396afb"], ["https://tec.openplanner.team/stops/Lcchala1", "https://tec.openplanner.team/stops/LRarami1"], ["https://tec.openplanner.team/stops/Cgxmorg2", "https://tec.openplanner.team/stops/Cgxprad4"], ["https://tec.openplanner.team/stops/Cfaheni4", "https://tec.openplanner.team/stops/Cfastan2"], ["https://tec.openplanner.team/stops/NL74aea", "https://tec.openplanner.team/stops/NL74afa"], ["https://tec.openplanner.team/stops/Lemhenn1", "https://tec.openplanner.team/stops/Lemhuet1"], ["https://tec.openplanner.team/stops/N559acb", "https://tec.openplanner.team/stops/N559aeb"], ["https://tec.openplanner.team/stops/LCReg--1", "https://tec.openplanner.team/stops/LCRf14-1"], ["https://tec.openplanner.team/stops/LCRfavr2", "https://tec.openplanner.team/stops/LCRfize2"], ["https://tec.openplanner.team/stops/Bbsiabb2", "https://tec.openplanner.team/stops/Bbsifml1"], ["https://tec.openplanner.team/stops/LAmshel2", "https://tec.openplanner.team/stops/LAMweha2"], ["https://tec.openplanner.team/stops/H4wn124a", "https://tec.openplanner.team/stops/H4wn124d"], ["https://tec.openplanner.team/stops/LeUmoor1", "https://tec.openplanner.team/stops/LeUmoor2"], ["https://tec.openplanner.team/stops/X793aka", "https://tec.openplanner.team/stops/X793ana"], ["https://tec.openplanner.team/stops/X768ada", "https://tec.openplanner.team/stops/X768adb"], ["https://tec.openplanner.team/stops/X760afb", "https://tec.openplanner.team/stops/X761adb"], ["https://tec.openplanner.team/stops/Cfoermi1", "https://tec.openplanner.team/stops/Cfomays1"], ["https://tec.openplanner.team/stops/LMfpral1", "https://tec.openplanner.team/stops/LMfpral2"], ["https://tec.openplanner.team/stops/X639abb", "https://tec.openplanner.team/stops/X639apa"], ["https://tec.openplanner.team/stops/LAweg--2", "https://tec.openplanner.team/stops/LAYlieg1"], ["https://tec.openplanner.team/stops/Bcerldo2", "https://tec.openplanner.team/stops/Bcsemar1"], ["https://tec.openplanner.team/stops/LQacabi1", "https://tec.openplanner.team/stops/LREprea1"], ["https://tec.openplanner.team/stops/LlOpfar1", "https://tec.openplanner.team/stops/LmSkape2"], ["https://tec.openplanner.team/stops/LFMkrin1", "https://tec.openplanner.team/stops/LVukabi2"], ["https://tec.openplanner.team/stops/Cthdeco1", "https://tec.openplanner.team/stops/Cthhttr3"], ["https://tec.openplanner.team/stops/N201ama", "https://tec.openplanner.team/stops/N211aib"], ["https://tec.openplanner.team/stops/H1ms254e", "https://tec.openplanner.team/stops/H1ms260b"], ["https://tec.openplanner.team/stops/Bquepbr1", "https://tec.openplanner.team/stops/Bstemco2"], ["https://tec.openplanner.team/stops/X595afb", "https://tec.openplanner.team/stops/X595aha"], ["https://tec.openplanner.team/stops/X663aoa", "https://tec.openplanner.team/stops/X663aob"], ["https://tec.openplanner.team/stops/Bwbfckr2", "https://tec.openplanner.team/stops/Bwbfeta1"], ["https://tec.openplanner.team/stops/N207ada", "https://tec.openplanner.team/stops/N207add"], ["https://tec.openplanner.team/stops/Cgocapu2", "https://tec.openplanner.team/stops/Cgostro2"], ["https://tec.openplanner.team/stops/LREgrot2", "https://tec.openplanner.team/stops/LREgrot3"], ["https://tec.openplanner.team/stops/N501iha", "https://tec.openplanner.team/stops/N501ihb"], ["https://tec.openplanner.team/stops/Lmicoop1", "https://tec.openplanner.team/stops/Lvtlimi2"], ["https://tec.openplanner.team/stops/Ctucour2", "https://tec.openplanner.team/stops/Ctuecol4"], ["https://tec.openplanner.team/stops/N501hyb", "https://tec.openplanner.team/stops/N501lsa"], ["https://tec.openplanner.team/stops/H2ha133b", "https://tec.openplanner.team/stops/H2ha143a"], ["https://tec.openplanner.team/stops/N511aaa", "https://tec.openplanner.team/stops/N511aga"], ["https://tec.openplanner.team/stops/Cgylouv1", "https://tec.openplanner.team/stops/Cgyralb1"], ["https://tec.openplanner.team/stops/H2ha129b", "https://tec.openplanner.team/stops/H2ha129e"], ["https://tec.openplanner.team/stops/X999aab", "https://tec.openplanner.team/stops/X999acb"], ["https://tec.openplanner.team/stops/N117ama", "https://tec.openplanner.team/stops/N117bbb"], ["https://tec.openplanner.team/stops/N573ada", "https://tec.openplanner.team/stops/N573aib"], ["https://tec.openplanner.team/stops/N117aqa", "https://tec.openplanner.team/stops/N117aua"], ["https://tec.openplanner.team/stops/N152aba", "https://tec.openplanner.team/stops/N152abd"], ["https://tec.openplanner.team/stops/X762aaa", "https://tec.openplanner.team/stops/X762aba"], ["https://tec.openplanner.team/stops/N501hpa", "https://tec.openplanner.team/stops/N501jub"], ["https://tec.openplanner.team/stops/LOmecol2", "https://tec.openplanner.team/stops/LOmpont2"], ["https://tec.openplanner.team/stops/Bcrncjo1", "https://tec.openplanner.team/stops/Bcrntru1"], ["https://tec.openplanner.team/stops/N228aca", "https://tec.openplanner.team/stops/N232cea"], ["https://tec.openplanner.team/stops/N244aca", "https://tec.openplanner.team/stops/N244aja"], ["https://tec.openplanner.team/stops/N242adc", "https://tec.openplanner.team/stops/N242aga"], ["https://tec.openplanner.team/stops/Cbwegl2", "https://tec.openplanner.team/stops/Cmgbras1"], ["https://tec.openplanner.team/stops/H4va233b", "https://tec.openplanner.team/stops/H4vd230b"], ["https://tec.openplanner.team/stops/Louoran1", "https://tec.openplanner.team/stops/Louoran2"], ["https://tec.openplanner.team/stops/Cfrmoul1", "https://tec.openplanner.team/stops/Crewath2"], ["https://tec.openplanner.team/stops/H4ae102a", "https://tec.openplanner.team/stops/H4or116b"], ["https://tec.openplanner.team/stops/H1ha193a", "https://tec.openplanner.team/stops/H1ha193b"], ["https://tec.openplanner.team/stops/Bgnvtil2", "https://tec.openplanner.team/stops/Bgnvval1"], ["https://tec.openplanner.team/stops/Blhupri2", "https://tec.openplanner.team/stops/Bohngen1"], ["https://tec.openplanner.team/stops/Llgcorn4", "https://tec.openplanner.team/stops/Llgnyst2"], ["https://tec.openplanner.team/stops/X823aeb", "https://tec.openplanner.team/stops/X824aea"], ["https://tec.openplanner.team/stops/LMalamb4", "https://tec.openplanner.team/stops/LMapark3"], ["https://tec.openplanner.team/stops/X601bbc", "https://tec.openplanner.team/stops/X601cza"], ["https://tec.openplanner.team/stops/Cgzvivi2", "https://tec.openplanner.team/stops/Cmxpleg1"], ["https://tec.openplanner.team/stops/N170aba", "https://tec.openplanner.team/stops/N170abb"], ["https://tec.openplanner.team/stops/H1ms942a", "https://tec.openplanner.team/stops/H1ni322b"], ["https://tec.openplanner.team/stops/Bbeascl1", "https://tec.openplanner.team/stops/Bbeascl2"], ["https://tec.openplanner.team/stops/X801aca", "https://tec.openplanner.team/stops/X801acb"], ["https://tec.openplanner.team/stops/LFmlens2", "https://tec.openplanner.team/stops/LTyhapp4"], ["https://tec.openplanner.team/stops/LThbatt1", "https://tec.openplanner.team/stops/LThbatt2"], ["https://tec.openplanner.team/stops/LOurena1", "https://tec.openplanner.team/stops/X982ada"], ["https://tec.openplanner.team/stops/Lhehoux2", "https://tec.openplanner.team/stops/Lheloti1"], ["https://tec.openplanner.team/stops/Cfaecwa2", "https://tec.openplanner.team/stops/Cfamate2"], ["https://tec.openplanner.team/stops/LBrec--2", "https://tec.openplanner.team/stops/LBrneli1"], ["https://tec.openplanner.team/stops/Ccobour1", "https://tec.openplanner.team/stops/Crorogn2"], ["https://tec.openplanner.team/stops/LWEcarr1", "https://tec.openplanner.team/stops/LWEhang1"], ["https://tec.openplanner.team/stops/X943aea", "https://tec.openplanner.team/stops/X943aeb"], ["https://tec.openplanner.team/stops/Cnacent1", "https://tec.openplanner.team/stops/Cnalava2"], ["https://tec.openplanner.team/stops/LFrfrai2", "https://tec.openplanner.team/stops/LLUcdoy2"], ["https://tec.openplanner.team/stops/LBiberg2", "https://tec.openplanner.team/stops/LDOandr3"], ["https://tec.openplanner.team/stops/Bjodgai1", "https://tec.openplanner.team/stops/Bmlngch1"], ["https://tec.openplanner.team/stops/Brixbai2", "https://tec.openplanner.team/stops/Brixwav1"], ["https://tec.openplanner.team/stops/Csylaha1", "https://tec.openplanner.team/stops/Csystan1"], ["https://tec.openplanner.team/stops/Cbuegl2", "https://tec.openplanner.team/stops/Cbufron2"], ["https://tec.openplanner.team/stops/N368aaa", "https://tec.openplanner.team/stops/N368aab"], ["https://tec.openplanner.team/stops/Ltheg--1", "https://tec.openplanner.team/stops/Lthfagn1"], ["https://tec.openplanner.team/stops/N343aea", "https://tec.openplanner.team/stops/N343aob"], ["https://tec.openplanner.team/stops/N512anb", "https://tec.openplanner.team/stops/N512atb"], ["https://tec.openplanner.team/stops/LBichat1", "https://tec.openplanner.team/stops/LBichat2"], ["https://tec.openplanner.team/stops/Lvepala1", "https://tec.openplanner.team/stops/Lvepala2"], ["https://tec.openplanner.team/stops/N221aba", "https://tec.openplanner.team/stops/N221acb"], ["https://tec.openplanner.team/stops/Lbhhomv2", "https://tec.openplanner.team/stops/Ljupiet1"], ["https://tec.openplanner.team/stops/Bhevjac1", "https://tec.openplanner.team/stops/Bhevjal1"], ["https://tec.openplanner.team/stops/N120acb", "https://tec.openplanner.team/stops/N120add"], ["https://tec.openplanner.team/stops/X801ava", "https://tec.openplanner.team/stops/X801cna"], ["https://tec.openplanner.team/stops/LVHcent2", "https://tec.openplanner.team/stops/LVsboug1"], ["https://tec.openplanner.team/stops/N508aab", "https://tec.openplanner.team/stops/N508ada"], ["https://tec.openplanner.team/stops/Bottegl1", "https://tec.openplanner.team/stops/Bottegl2"], ["https://tec.openplanner.team/stops/Llgchev2", "https://tec.openplanner.team/stops/Llglaur2"], ["https://tec.openplanner.team/stops/LREelse1", "https://tec.openplanner.team/stops/LREsp302"], ["https://tec.openplanner.team/stops/LPbeg--1", "https://tec.openplanner.team/stops/LPbeg--2"], ["https://tec.openplanner.team/stops/LBTxhen1", "https://tec.openplanner.team/stops/LCHsaul2"], ["https://tec.openplanner.team/stops/H1ha195b", "https://tec.openplanner.team/stops/H1ha196b"], ["https://tec.openplanner.team/stops/X901aqa", "https://tec.openplanner.team/stops/X901axa"], ["https://tec.openplanner.team/stops/H2hg155c", "https://tec.openplanner.team/stops/H2hg155d"], ["https://tec.openplanner.team/stops/X660afa", "https://tec.openplanner.team/stops/X741akb"], ["https://tec.openplanner.team/stops/LFChofv1", "https://tec.openplanner.team/stops/LFClage1"], ["https://tec.openplanner.team/stops/N579aaa", "https://tec.openplanner.team/stops/N579aba"], ["https://tec.openplanner.team/stops/LSemc--2", "https://tec.openplanner.team/stops/LSemc--4"], ["https://tec.openplanner.team/stops/Lmlcrot2", "https://tec.openplanner.team/stops/Lmlcrot3"], ["https://tec.openplanner.team/stops/X740aab", "https://tec.openplanner.team/stops/X912adb"], ["https://tec.openplanner.team/stops/N218abb", "https://tec.openplanner.team/stops/N331ada"], ["https://tec.openplanner.team/stops/N507apb", "https://tec.openplanner.team/stops/N507aqb"], ["https://tec.openplanner.team/stops/LbUmalm2", "https://tec.openplanner.team/stops/LwR140-2"], ["https://tec.openplanner.team/stops/H4ty312a", "https://tec.openplanner.team/stops/H4ty321b"], ["https://tec.openplanner.team/stops/Caccera2", "https://tec.openplanner.team/stops/NC24abb"], ["https://tec.openplanner.team/stops/LTymahr1", "https://tec.openplanner.team/stops/LTywyna1"], ["https://tec.openplanner.team/stops/Csefour2", "https://tec.openplanner.team/stops/Cvtndam3"], ["https://tec.openplanner.team/stops/Bbstpan2", "https://tec.openplanner.team/stops/Cbtstac1"], ["https://tec.openplanner.team/stops/H1ho139a", "https://tec.openplanner.team/stops/H1ho139b"], ["https://tec.openplanner.team/stops/Bclgapi1", "https://tec.openplanner.team/stops/Bclgbvi2"], ["https://tec.openplanner.team/stops/X624aab", "https://tec.openplanner.team/stops/X624ama"], ["https://tec.openplanner.team/stops/LCeterm2", "https://tec.openplanner.team/stops/LHgeg--1"], ["https://tec.openplanner.team/stops/Lvtathe2", "https://tec.openplanner.team/stops/Lvtvici1"], ["https://tec.openplanner.team/stops/Bhoealt1", "https://tec.openplanner.team/stops/Bpiepnd2"], ["https://tec.openplanner.team/stops/Lrogene*", "https://tec.openplanner.team/stops/Lvcchev1"], ["https://tec.openplanner.team/stops/H4bn100a", "https://tec.openplanner.team/stops/H4bn100b"], ["https://tec.openplanner.team/stops/Bnilcab2", "https://tec.openplanner.team/stops/Bnilpor4"], ["https://tec.openplanner.team/stops/LBDfran2", "https://tec.openplanner.team/stops/LFFmarc2"], ["https://tec.openplanner.team/stops/LESmc--1", "https://tec.openplanner.team/stops/LESpont1"], ["https://tec.openplanner.team/stops/Bflccav1", "https://tec.openplanner.team/stops/NR38aba"], ["https://tec.openplanner.team/stops/LGetroi2", "https://tec.openplanner.team/stops/LVkinst2"], ["https://tec.openplanner.team/stops/LAIchpl2", "https://tec.openplanner.team/stops/LVBsevr1"], ["https://tec.openplanner.team/stops/H5wo123b", "https://tec.openplanner.team/stops/H5wo134b"], ["https://tec.openplanner.team/stops/NL76ajb", "https://tec.openplanner.team/stops/NL76alc"], ["https://tec.openplanner.team/stops/Lroeg--4", "https://tec.openplanner.team/stops/Lronamo1"], ["https://tec.openplanner.team/stops/N525ahb", "https://tec.openplanner.team/stops/N525akb"], ["https://tec.openplanner.team/stops/X882aab", "https://tec.openplanner.team/stops/X882amb"], ["https://tec.openplanner.team/stops/N501ada", "https://tec.openplanner.team/stops/N501aha"], ["https://tec.openplanner.team/stops/N528aub", "https://tec.openplanner.team/stops/N542apa"], ["https://tec.openplanner.team/stops/Bgzddur1", "https://tec.openplanner.team/stops/Bgzddur2"], ["https://tec.openplanner.team/stops/Crsaise1", "https://tec.openplanner.team/stops/Crsrose1"], ["https://tec.openplanner.team/stops/X897aua", "https://tec.openplanner.team/stops/X897ava"], ["https://tec.openplanner.team/stops/H4ag105a", "https://tec.openplanner.team/stops/H4br110a"], ["https://tec.openplanner.team/stops/H1le121b", "https://tec.openplanner.team/stops/H1le130b"], ["https://tec.openplanner.team/stops/H5is171a", "https://tec.openplanner.team/stops/H5is171b"], ["https://tec.openplanner.team/stops/LSXbecc1", "https://tec.openplanner.team/stops/LTHroch1"], ["https://tec.openplanner.team/stops/H1ch100b", "https://tec.openplanner.team/stops/H1ch104a"], ["https://tec.openplanner.team/stops/X715aab", "https://tec.openplanner.team/stops/X716aeb"], ["https://tec.openplanner.team/stops/LAWeg--1", "https://tec.openplanner.team/stops/LAWeg--2"], ["https://tec.openplanner.team/stops/Braclin2", "https://tec.openplanner.team/stops/Bracrpe2"], ["https://tec.openplanner.team/stops/Cptplac2", "https://tec.openplanner.team/stops/Cptplac4"], ["https://tec.openplanner.team/stops/X619ada", "https://tec.openplanner.team/stops/X619aeb"], ["https://tec.openplanner.team/stops/N242aea", "https://tec.openplanner.team/stops/N242afa"], ["https://tec.openplanner.team/stops/X897amb", "https://tec.openplanner.team/stops/X897awa"], ["https://tec.openplanner.team/stops/X615avb", "https://tec.openplanner.team/stops/X615awb"], ["https://tec.openplanner.team/stops/Lhefoot1", "https://tec.openplanner.team/stops/Lhr4ave2"], ["https://tec.openplanner.team/stops/N308aba", "https://tec.openplanner.team/stops/N337afa"], ["https://tec.openplanner.team/stops/X879aia", "https://tec.openplanner.team/stops/X879aka"], ["https://tec.openplanner.team/stops/H4ne134b", "https://tec.openplanner.team/stops/H4ne144a"], ["https://tec.openplanner.team/stops/N217aab", "https://tec.openplanner.team/stops/N287aba"], ["https://tec.openplanner.team/stops/X640aeb", "https://tec.openplanner.team/stops/X640aga"], ["https://tec.openplanner.team/stops/N537aha", "https://tec.openplanner.team/stops/N537aib"], ["https://tec.openplanner.team/stops/H1ob327a", "https://tec.openplanner.team/stops/H1ob327b"], ["https://tec.openplanner.team/stops/H2ca103c", "https://tec.openplanner.team/stops/H2ca103d"], ["https://tec.openplanner.team/stops/LaNmuhl1", "https://tec.openplanner.team/stops/LaNmuhl2"], ["https://tec.openplanner.team/stops/X740ada", "https://tec.openplanner.team/stops/X740aea"], ["https://tec.openplanner.team/stops/LENecol2", "https://tec.openplanner.team/stops/LENsent2"], ["https://tec.openplanner.team/stops/N501dea", "https://tec.openplanner.team/stops/N501myb"], ["https://tec.openplanner.team/stops/Bbcodam4", "https://tec.openplanner.team/stops/H2ec103a"], ["https://tec.openplanner.team/stops/X723afa", "https://tec.openplanner.team/stops/X723aga"], ["https://tec.openplanner.team/stops/LHNvill1", "https://tec.openplanner.team/stops/LVPduvi2"], ["https://tec.openplanner.team/stops/LFarhuy1", "https://tec.openplanner.team/stops/LWAipes1"], ["https://tec.openplanner.team/stops/Bitrnus1", "https://tec.openplanner.team/stops/Bitrpri1"], ["https://tec.openplanner.team/stops/H4fo116b", "https://tec.openplanner.team/stops/H4fo117d"], ["https://tec.openplanner.team/stops/Cculpre2", "https://tec.openplanner.team/stops/Ccuphai4"], ["https://tec.openplanner.team/stops/Bthivil1", "https://tec.openplanner.team/stops/Bthivil2"], ["https://tec.openplanner.team/stops/Bnvmfba1", "https://tec.openplanner.team/stops/N515aqd"], ["https://tec.openplanner.team/stops/LWAipes1", "https://tec.openplanner.team/stops/LWArege2"], ["https://tec.openplanner.team/stops/H4ln127a", "https://tec.openplanner.team/stops/H4ln128b"], ["https://tec.openplanner.team/stops/X793afa", "https://tec.openplanner.team/stops/X793afc"], ["https://tec.openplanner.team/stops/Lpecroi1", "https://tec.openplanner.team/stops/Lpevove1"], ["https://tec.openplanner.team/stops/Loualbe2", "https://tec.openplanner.team/stops/Loudemo1"], ["https://tec.openplanner.team/stops/Bleugar1", "https://tec.openplanner.team/stops/Btieast1"], ["https://tec.openplanner.team/stops/X901aeb", "https://tec.openplanner.team/stops/X901boa"], ["https://tec.openplanner.team/stops/Lstbarb2", "https://tec.openplanner.team/stops/Lstbarb3"], ["https://tec.openplanner.team/stops/N501bka", "https://tec.openplanner.team/stops/N501bma"], ["https://tec.openplanner.team/stops/LFtcarr1", "https://tec.openplanner.team/stops/LFtn6--2"], ["https://tec.openplanner.team/stops/Cnadepo1", "https://tec.openplanner.team/stops/Cnahahe1"], ["https://tec.openplanner.team/stops/Cgocalv1", "https://tec.openplanner.team/stops/CMleop2"], ["https://tec.openplanner.team/stops/X991aab", "https://tec.openplanner.team/stops/X991aha"], ["https://tec.openplanner.team/stops/N542aab", "https://tec.openplanner.team/stops/N542aba"], ["https://tec.openplanner.team/stops/LAnvien2", "https://tec.openplanner.team/stops/LCF1spa1"], ["https://tec.openplanner.team/stops/H1bn113a", "https://tec.openplanner.team/stops/H1no142a"], ["https://tec.openplanner.team/stops/N547aab", "https://tec.openplanner.team/stops/N547alc"], ["https://tec.openplanner.team/stops/X349aaa", "https://tec.openplanner.team/stops/X998azb"], ["https://tec.openplanner.team/stops/LeUbush1", "https://tec.openplanner.team/stops/LeUnopr1"], ["https://tec.openplanner.team/stops/LMOf35-1", "https://tec.openplanner.team/stops/LMOs45-1"], ["https://tec.openplanner.team/stops/LAUhost1", "https://tec.openplanner.team/stops/LAUtism1"], ["https://tec.openplanner.team/stops/Bbaubru2", "https://tec.openplanner.team/stops/Bniv4co1"], ["https://tec.openplanner.team/stops/Bmalsme2", "https://tec.openplanner.team/stops/Btlbcul1"], ["https://tec.openplanner.team/stops/Bnodeco1", "https://tec.openplanner.team/stops/Bolgcsa1"], ["https://tec.openplanner.team/stops/X870ada", "https://tec.openplanner.team/stops/X870ajb"], ["https://tec.openplanner.team/stops/Cchheig2", "https://tec.openplanner.team/stops/Cdaptca1"], ["https://tec.openplanner.team/stops/Cravold2", "https://tec.openplanner.team/stops/Cwgtill1"], ["https://tec.openplanner.team/stops/H4ep130a", "https://tec.openplanner.team/stops/H4rm113b"], ["https://tec.openplanner.team/stops/N232aea", "https://tec.openplanner.team/stops/N261aca"], ["https://tec.openplanner.team/stops/Blmlbif2", "https://tec.openplanner.team/stops/Blmlvex2"], ["https://tec.openplanner.team/stops/Bcrbmsg2", "https://tec.openplanner.team/stops/Bcrbtho2"], ["https://tec.openplanner.team/stops/H5is169a", "https://tec.openplanner.team/stops/H5is174b"], ["https://tec.openplanner.team/stops/LcRmuhl1", "https://tec.openplanner.team/stops/LwTzent2"], ["https://tec.openplanner.team/stops/LAYecol2", "https://tec.openplanner.team/stops/LAYpl--2"], ["https://tec.openplanner.team/stops/Cmyedpa1", "https://tec.openplanner.team/stops/Cmyedpa2"], ["https://tec.openplanner.team/stops/H1cu117a", "https://tec.openplanner.team/stops/H1cu117c"], ["https://tec.openplanner.team/stops/H4hs137b", "https://tec.openplanner.team/stops/H4mb142a"], ["https://tec.openplanner.team/stops/X923acb", "https://tec.openplanner.team/stops/X923ama"], ["https://tec.openplanner.team/stops/Cflecga2", "https://tec.openplanner.team/stops/Cflvxca1"], ["https://tec.openplanner.team/stops/NH01abb", "https://tec.openplanner.team/stops/NH01abc"], ["https://tec.openplanner.team/stops/H1bl106a", "https://tec.openplanner.team/stops/H1sb147a"], ["https://tec.openplanner.team/stops/X731agb", "https://tec.openplanner.team/stops/X731ahb"], ["https://tec.openplanner.team/stops/X318abb", "https://tec.openplanner.team/stops/X361afa"], ["https://tec.openplanner.team/stops/Bbiehec1", "https://tec.openplanner.team/stops/Bbiesbi2"], ["https://tec.openplanner.team/stops/X605aba", "https://tec.openplanner.team/stops/X605aga"], ["https://tec.openplanner.team/stops/Lsmstad2", "https://tec.openplanner.team/stops/Lvecase2"], ["https://tec.openplanner.team/stops/Lbemc--1", "https://tec.openplanner.team/stops/Ljuvieu1"], ["https://tec.openplanner.team/stops/H1an101a", "https://tec.openplanner.team/stops/H1an103b"], ["https://tec.openplanner.team/stops/Bbghpln1", "https://tec.openplanner.team/stops/Bbghsta1"], ["https://tec.openplanner.team/stops/X917agb", "https://tec.openplanner.team/stops/X917ahb"], ["https://tec.openplanner.team/stops/LCUmars1", "https://tec.openplanner.team/stops/LSzcoop1"], ["https://tec.openplanner.team/stops/X725awa", "https://tec.openplanner.team/stops/X725axa"], ["https://tec.openplanner.team/stops/H4ft132a", "https://tec.openplanner.team/stops/H4ft132b"], ["https://tec.openplanner.team/stops/N201aia", "https://tec.openplanner.team/stops/N201aib"], ["https://tec.openplanner.team/stops/Cmlm2411", "https://tec.openplanner.team/stops/Cmlphai2"], ["https://tec.openplanner.team/stops/H4bc104b", "https://tec.openplanner.team/stops/H4wr173c"], ["https://tec.openplanner.team/stops/LElgerd2", "https://tec.openplanner.team/stops/LElgerd5"], ["https://tec.openplanner.team/stops/N571ada", "https://tec.openplanner.team/stops/N573amb"], ["https://tec.openplanner.team/stops/Crecouc1", "https://tec.openplanner.team/stops/Crecouc2"], ["https://tec.openplanner.team/stops/N229amb", "https://tec.openplanner.team/stops/N229aoa"], ["https://tec.openplanner.team/stops/Barcsta1", "https://tec.openplanner.team/stops/Bnetegl3"], ["https://tec.openplanner.team/stops/Cbufron1", "https://tec.openplanner.team/stops/Cbufron2"], ["https://tec.openplanner.team/stops/Lsehcoc1", "https://tec.openplanner.team/stops/Lsepaqu2"], ["https://tec.openplanner.team/stops/Cbetrie1", "https://tec.openplanner.team/stops/Chhsncb1"], ["https://tec.openplanner.team/stops/N507aoa", "https://tec.openplanner.team/stops/N507apb"], ["https://tec.openplanner.team/stops/LLxmonu1", "https://tec.openplanner.team/stops/LLxmonu2"], ["https://tec.openplanner.team/stops/Cfcmass2", "https://tec.openplanner.team/stops/Cfcpcov1"], ["https://tec.openplanner.team/stops/LDLbeau1", "https://tec.openplanner.team/stops/LDLgran3"], ["https://tec.openplanner.team/stops/X725ara", "https://tec.openplanner.team/stops/X725asa"], ["https://tec.openplanner.team/stops/Bneedia1", "https://tec.openplanner.team/stops/Boplham1"], ["https://tec.openplanner.team/stops/Cchlamb2", "https://tec.openplanner.team/stops/Clodupr1"], ["https://tec.openplanner.team/stops/H1al105a", "https://tec.openplanner.team/stops/H1al105b"], ["https://tec.openplanner.team/stops/X986aab", "https://tec.openplanner.team/stops/X986aba"], ["https://tec.openplanner.team/stops/LoDscha1", "https://tec.openplanner.team/stops/LoDscha2"], ["https://tec.openplanner.team/stops/N533ala", "https://tec.openplanner.team/stops/N533alb"], ["https://tec.openplanner.team/stops/Lvchenn1", "https://tec.openplanner.team/stops/Lvcvand2"], ["https://tec.openplanner.team/stops/X939ada", "https://tec.openplanner.team/stops/X940afb"], ["https://tec.openplanner.team/stops/H4me213a", "https://tec.openplanner.team/stops/H4ve137a"], ["https://tec.openplanner.team/stops/Lbhmc--1", "https://tec.openplanner.team/stops/Lvcchev2"], ["https://tec.openplanner.team/stops/LMaslav4", "https://tec.openplanner.team/stops/LMazonn3"], ["https://tec.openplanner.team/stops/NL35aba", "https://tec.openplanner.team/stops/NL35aca"], ["https://tec.openplanner.team/stops/LClflor2", "https://tec.openplanner.team/stops/LLC170-2"], ["https://tec.openplanner.team/stops/Ctubpos2", "https://tec.openplanner.team/stops/Ctubpos3"], ["https://tec.openplanner.team/stops/X641aba", "https://tec.openplanner.team/stops/X641ahb"], ["https://tec.openplanner.team/stops/X624aea", "https://tec.openplanner.team/stops/X624aka"], ["https://tec.openplanner.team/stops/Cmachau2", "https://tec.openplanner.team/stops/Cmaplas3"], ["https://tec.openplanner.team/stops/Lseprog2", "https://tec.openplanner.team/stops/Lsesabl2"], ["https://tec.openplanner.team/stops/Cgpleco1", "https://tec.openplanner.team/stops/Cpcchau"], ["https://tec.openplanner.team/stops/Croheig2", "https://tec.openplanner.team/stops/Crojume1"], ["https://tec.openplanner.team/stops/Crolema1", "https://tec.openplanner.team/stops/Crolema4"], ["https://tec.openplanner.team/stops/LRmkast*", "https://tec.openplanner.team/stops/LRmstat2"], ["https://tec.openplanner.team/stops/X901atb", "https://tec.openplanner.team/stops/X901ava"], ["https://tec.openplanner.team/stops/N132afa", "https://tec.openplanner.team/stops/N132aga"], ["https://tec.openplanner.team/stops/H2ca106b", "https://tec.openplanner.team/stops/H2ca109a"], ["https://tec.openplanner.team/stops/N127acb", "https://tec.openplanner.team/stops/N127aja"], ["https://tec.openplanner.team/stops/X661axb", "https://tec.openplanner.team/stops/X661axc"], ["https://tec.openplanner.team/stops/Cmlcazi2", "https://tec.openplanner.team/stops/Cmlphai2"], ["https://tec.openplanner.team/stops/X982bma", "https://tec.openplanner.team/stops/X982bqa"], ["https://tec.openplanner.team/stops/X641apb", "https://tec.openplanner.team/stops/X641apc"], ["https://tec.openplanner.team/stops/LBbhupp1", "https://tec.openplanner.team/stops/LBbhupp2"], ["https://tec.openplanner.team/stops/N124acb", "https://tec.openplanner.team/stops/N150aaa"], ["https://tec.openplanner.team/stops/Bbghcar1", "https://tec.openplanner.team/stops/Bbghcar2"], ["https://tec.openplanner.team/stops/Lrcprin1", "https://tec.openplanner.team/stops/Lrcprin6"], ["https://tec.openplanner.team/stops/H1so132b", "https://tec.openplanner.team/stops/H1so133a"], ["https://tec.openplanner.team/stops/Craplac3", "https://tec.openplanner.team/stops/Crasocq1"], ["https://tec.openplanner.team/stops/Lgdstoc1", "https://tec.openplanner.team/stops/LXHfond2"], ["https://tec.openplanner.team/stops/Cmlaili1", "https://tec.openplanner.team/stops/Cmttrie2"], ["https://tec.openplanner.team/stops/LFIcabi2", "https://tec.openplanner.team/stops/LHaxhig1"], ["https://tec.openplanner.team/stops/X608ata", "https://tec.openplanner.team/stops/X608axa"], ["https://tec.openplanner.team/stops/X768ald", "https://tec.openplanner.team/stops/X769ajb"], ["https://tec.openplanner.team/stops/LrAkape1", "https://tec.openplanner.team/stops/LrAmuhl2"], ["https://tec.openplanner.team/stops/X948ana", "https://tec.openplanner.team/stops/X949aka"], ["https://tec.openplanner.team/stops/Cjxetri1", "https://tec.openplanner.team/stops/Cmmschw2"], ["https://tec.openplanner.team/stops/LRachen2", "https://tec.openplanner.team/stops/Lsedavy2"], ["https://tec.openplanner.team/stops/Bmonbri1", "https://tec.openplanner.team/stops/Bnivfhu1"], ["https://tec.openplanner.team/stops/Cdostco1", "https://tec.openplanner.team/stops/Cstplac2"], ["https://tec.openplanner.team/stops/LFMkrin1", "https://tec.openplanner.team/stops/LFMkrin2"], ["https://tec.openplanner.team/stops/Bcrbcel2", "https://tec.openplanner.team/stops/Bcrbhir1"], ["https://tec.openplanner.team/stops/H3so162b", "https://tec.openplanner.team/stops/H3so177b"], ["https://tec.openplanner.team/stops/Brsrabe1", "https://tec.openplanner.team/stops/Brsrabe2"], ["https://tec.openplanner.team/stops/X720aaa", "https://tec.openplanner.team/stops/X721asa"], ["https://tec.openplanner.team/stops/Btubcvi1", "https://tec.openplanner.team/stops/Btubois1"], ["https://tec.openplanner.team/stops/LPRmc--2", "https://tec.openplanner.team/stops/LPRmc--3"], ["https://tec.openplanner.team/stops/H1gh144a", "https://tec.openplanner.team/stops/H1gh145b"], ["https://tec.openplanner.team/stops/Bcrncen1", "https://tec.openplanner.team/stops/Bcrnpla1"], ["https://tec.openplanner.team/stops/H1lm105a", "https://tec.openplanner.team/stops/H1sy145b"], ["https://tec.openplanner.team/stops/LOL6che1", "https://tec.openplanner.team/stops/LSOgott1"], ["https://tec.openplanner.team/stops/H1em103b", "https://tec.openplanner.team/stops/H1hl128b"], ["https://tec.openplanner.team/stops/H3so157a", "https://tec.openplanner.team/stops/H3so157b"], ["https://tec.openplanner.team/stops/X636bdb", "https://tec.openplanner.team/stops/X636bea"], ["https://tec.openplanner.team/stops/Bwavgar5", "https://tec.openplanner.team/stops/Bwavgar6"], ["https://tec.openplanner.team/stops/X595ahb", "https://tec.openplanner.team/stops/X796aha"], ["https://tec.openplanner.team/stops/LVEcroi1", "https://tec.openplanner.team/stops/LVErtt-1"], ["https://tec.openplanner.team/stops/N553aca", "https://tec.openplanner.team/stops/N568aeb"], ["https://tec.openplanner.team/stops/LhM07--2", "https://tec.openplanner.team/stops/LhMwing1"], ["https://tec.openplanner.team/stops/X641ava", "https://tec.openplanner.team/stops/X641awa"], ["https://tec.openplanner.team/stops/Cjuphil2", "https://tec.openplanner.team/stops/Crarmas1"], ["https://tec.openplanner.team/stops/Llmbouv1", "https://tec.openplanner.team/stops/LWexhav2"], ["https://tec.openplanner.team/stops/H1ht122b", "https://tec.openplanner.team/stops/H1ht128b"], ["https://tec.openplanner.team/stops/LOthiro1", "https://tec.openplanner.team/stops/LVsbrux1"], ["https://tec.openplanner.team/stops/N343aia", "https://tec.openplanner.team/stops/N343aib"], ["https://tec.openplanner.team/stops/N530agb", "https://tec.openplanner.team/stops/N534bea"], ["https://tec.openplanner.team/stops/N501cma", "https://tec.openplanner.team/stops/N501cmd"], ["https://tec.openplanner.team/stops/LJUfort2", "https://tec.openplanner.team/stops/Llaflot2"], ["https://tec.openplanner.team/stops/LCPgare1", "https://tec.openplanner.team/stops/LCPlacr2"], ["https://tec.openplanner.team/stops/H2bh103d", "https://tec.openplanner.team/stops/H2bh118a"], ["https://tec.openplanner.team/stops/N584aob", "https://tec.openplanner.team/stops/N584apb"], ["https://tec.openplanner.team/stops/LVbeg--2", "https://tec.openplanner.team/stops/LVbsurr1"], ["https://tec.openplanner.team/stops/LeUhaas3", "https://tec.openplanner.team/stops/LeUkehr4"], ["https://tec.openplanner.team/stops/X824adb", "https://tec.openplanner.team/stops/X824aeb"], ["https://tec.openplanner.team/stops/Lstamph1", "https://tec.openplanner.team/stops/Lstchim2"], ["https://tec.openplanner.team/stops/H2ch121b", "https://tec.openplanner.team/stops/H2tz117a"], ["https://tec.openplanner.team/stops/N569adb", "https://tec.openplanner.team/stops/N569anb"], ["https://tec.openplanner.team/stops/N117bdb", "https://tec.openplanner.team/stops/N117bdd"], ["https://tec.openplanner.team/stops/N541aba", "https://tec.openplanner.team/stops/N541aeb"], ["https://tec.openplanner.team/stops/X625acb", "https://tec.openplanner.team/stops/X625adb"], ["https://tec.openplanner.team/stops/LPLecco2", "https://tec.openplanner.team/stops/LPLruis2"], ["https://tec.openplanner.team/stops/X872agb", "https://tec.openplanner.team/stops/X890afa"], ["https://tec.openplanner.team/stops/Barqbar1", "https://tec.openplanner.team/stops/Barqhpe2"], ["https://tec.openplanner.team/stops/H1je211a", "https://tec.openplanner.team/stops/H1je219b"], ["https://tec.openplanner.team/stops/N509axa", "https://tec.openplanner.team/stops/N511aea"], ["https://tec.openplanner.team/stops/N352aba", "https://tec.openplanner.team/stops/N352ada"], ["https://tec.openplanner.team/stops/Cgostex1", "https://tec.openplanner.team/stops/Cgostex2"], ["https://tec.openplanner.team/stops/Lmochar2", "https://tec.openplanner.team/stops/Lmomarr3"], ["https://tec.openplanner.team/stops/Llglibo4", "https://tec.openplanner.team/stops/Llgmean2"], ["https://tec.openplanner.team/stops/N160aca", "https://tec.openplanner.team/stops/N160ada"], ["https://tec.openplanner.team/stops/X911abb", "https://tec.openplanner.team/stops/X911acb"], ["https://tec.openplanner.team/stops/X754aha", "https://tec.openplanner.team/stops/X754ala"], ["https://tec.openplanner.team/stops/H1el136a", "https://tec.openplanner.team/stops/H1el136b"], ["https://tec.openplanner.team/stops/LBNover2", "https://tec.openplanner.team/stops/LeUbael2"], ["https://tec.openplanner.team/stops/LOcchat1", "https://tec.openplanner.team/stops/LOcchat2"], ["https://tec.openplanner.team/stops/Cmcgoch2", "https://tec.openplanner.team/stops/Cmgslo2"], ["https://tec.openplanner.team/stops/LLR4bra2", "https://tec.openplanner.team/stops/LLRrape3"], ["https://tec.openplanner.team/stops/H1ha198a", "https://tec.openplanner.team/stops/H1ss348b"], ["https://tec.openplanner.team/stops/Csuegli", "https://tec.openplanner.team/stops/Csuptou1"], ["https://tec.openplanner.team/stops/Bblagar7", "https://tec.openplanner.team/stops/Bblagar8"], ["https://tec.openplanner.team/stops/LTRcite1", "https://tec.openplanner.team/stops/LTRthie2"], ["https://tec.openplanner.team/stops/X624aca", "https://tec.openplanner.team/stops/X624acb"], ["https://tec.openplanner.team/stops/Cpclibe3", "https://tec.openplanner.team/stops/Cpclibe4"], ["https://tec.openplanner.team/stops/H5at105a", "https://tec.openplanner.team/stops/H5at113a"], ["https://tec.openplanner.team/stops/Cjucar01", "https://tec.openplanner.team/stops/CMcarr1"], ["https://tec.openplanner.team/stops/Cvp3til1", "https://tec.openplanner.team/stops/Cvppost1"], ["https://tec.openplanner.team/stops/Bbsifml1", "https://tec.openplanner.team/stops/Bbsimpl2"], ["https://tec.openplanner.team/stops/NB33aja", "https://tec.openplanner.team/stops/NR38aeb"], ["https://tec.openplanner.team/stops/LhSheid2", "https://tec.openplanner.team/stops/LkOzoll2"], ["https://tec.openplanner.team/stops/H1hr128b", "https://tec.openplanner.team/stops/H1hr128c"], ["https://tec.openplanner.team/stops/X817adb", "https://tec.openplanner.team/stops/X817aea"], ["https://tec.openplanner.team/stops/Becebju2", "https://tec.openplanner.team/stops/Bnstlna2"], ["https://tec.openplanner.team/stops/LHNcreh1", "https://tec.openplanner.team/stops/LHNcreh2"], ["https://tec.openplanner.team/stops/Llgborn2", "https://tec.openplanner.team/stops/Llgbuis1"], ["https://tec.openplanner.team/stops/X607aba", "https://tec.openplanner.team/stops/X607acb"], ["https://tec.openplanner.team/stops/X836aab", "https://tec.openplanner.team/stops/X837ahb"], ["https://tec.openplanner.team/stops/Cmtplac1", "https://tec.openplanner.team/stops/Cmtplac4"], ["https://tec.openplanner.team/stops/H3go102b", "https://tec.openplanner.team/stops/H3lr116a"], ["https://tec.openplanner.team/stops/N224aaa", "https://tec.openplanner.team/stops/X224acb"], ["https://tec.openplanner.team/stops/N351ata", "https://tec.openplanner.team/stops/X351aca"], ["https://tec.openplanner.team/stops/X695aca", "https://tec.openplanner.team/stops/X695aha"], ["https://tec.openplanner.team/stops/Bwavcen1", "https://tec.openplanner.team/stops/Bwavgar7"], ["https://tec.openplanner.team/stops/H4va233a", "https://tec.openplanner.team/stops/H4va233b"], ["https://tec.openplanner.team/stops/N135ava", "https://tec.openplanner.team/stops/N135bbb"], ["https://tec.openplanner.team/stops/X731ahb", "https://tec.openplanner.team/stops/X731akb"], ["https://tec.openplanner.team/stops/Bmanfbg1", "https://tec.openplanner.team/stops/Bmangen1"], ["https://tec.openplanner.team/stops/X354aab", "https://tec.openplanner.team/stops/X354abb"], ["https://tec.openplanner.team/stops/Cplrond2", "https://tec.openplanner.team/stops/Cplrymo2"], ["https://tec.openplanner.team/stops/N501dja", "https://tec.openplanner.team/stops/N501jsa"], ["https://tec.openplanner.team/stops/N502acb", "https://tec.openplanner.team/stops/N503aab"], ["https://tec.openplanner.team/stops/Lhrchar1", "https://tec.openplanner.team/stops/Lhrthie1"], ["https://tec.openplanner.team/stops/Csesabo1", "https://tec.openplanner.team/stops/Csesabo2"], ["https://tec.openplanner.team/stops/X609aaa", "https://tec.openplanner.team/stops/X609aab"], ["https://tec.openplanner.team/stops/LMOpiss1", "https://tec.openplanner.team/stops/LMOstat2"], ["https://tec.openplanner.team/stops/N206aca", "https://tec.openplanner.team/stops/N220aab"], ["https://tec.openplanner.team/stops/N505aob", "https://tec.openplanner.team/stops/N580aga"], ["https://tec.openplanner.team/stops/X779aca", "https://tec.openplanner.team/stops/X779acb"], ["https://tec.openplanner.team/stops/H4he103a", "https://tec.openplanner.team/stops/H4he107a"], ["https://tec.openplanner.team/stops/H4bc106b", "https://tec.openplanner.team/stops/H4bc108b"], ["https://tec.openplanner.team/stops/LClberw2", "https://tec.openplanner.team/stops/LClflor1"], ["https://tec.openplanner.team/stops/Cmaacac2", "https://tec.openplanner.team/stops/Cmapeet2"], ["https://tec.openplanner.team/stops/LLmwaut2", "https://tec.openplanner.team/stops/LRepous1"], ["https://tec.openplanner.team/stops/LVncarr1", "https://tec.openplanner.team/stops/LVnourt1"], ["https://tec.openplanner.team/stops/X720aea", "https://tec.openplanner.team/stops/X721alb"], ["https://tec.openplanner.team/stops/N538aka", "https://tec.openplanner.team/stops/N538apb"], ["https://tec.openplanner.team/stops/LrUgeme2", "https://tec.openplanner.team/stops/LrUwenz1"], ["https://tec.openplanner.team/stops/N201aab", "https://tec.openplanner.team/stops/N201arb"], ["https://tec.openplanner.team/stops/Bgnvbsi1", "https://tec.openplanner.team/stops/Bgnvtas1"], ["https://tec.openplanner.team/stops/X604ada", "https://tec.openplanner.team/stops/X604akb"], ["https://tec.openplanner.team/stops/N202abb", "https://tec.openplanner.team/stops/N202aga"], ["https://tec.openplanner.team/stops/N585aha", "https://tec.openplanner.team/stops/N585ahb"], ["https://tec.openplanner.team/stops/Cgofbru2", "https://tec.openplanner.team/stops/CMfbru2"], ["https://tec.openplanner.team/stops/LPAbrun1", "https://tec.openplanner.team/stops/LPAmc--2"], ["https://tec.openplanner.team/stops/X673aaa", "https://tec.openplanner.team/stops/X673aab"], ["https://tec.openplanner.team/stops/Bblahop1", "https://tec.openplanner.team/stops/Bblapje1"], ["https://tec.openplanner.team/stops/N118ana", "https://tec.openplanner.team/stops/N118anb"], ["https://tec.openplanner.team/stops/X744afa", "https://tec.openplanner.team/stops/X745abb"], ["https://tec.openplanner.team/stops/N106aca", "https://tec.openplanner.team/stops/N137aab"], ["https://tec.openplanner.team/stops/LeUauto2", "https://tec.openplanner.team/stops/LeUwais2"], ["https://tec.openplanner.team/stops/H2ml113a", "https://tec.openplanner.team/stops/H2ml113b"], ["https://tec.openplanner.team/stops/H1cu118b", "https://tec.openplanner.team/stops/H1fr122a"], ["https://tec.openplanner.team/stops/LGMdrev2", "https://tec.openplanner.team/stops/LGMhadr2"], ["https://tec.openplanner.team/stops/H2hp114a", "https://tec.openplanner.team/stops/H2hp262b"], ["https://tec.openplanner.team/stops/Cstbasc2", "https://tec.openplanner.team/stops/Cstplac1"], ["https://tec.openplanner.team/stops/Bnilegl2", "https://tec.openplanner.team/stops/Bwspjon1"], ["https://tec.openplanner.team/stops/Bmrlegl1", "https://tec.openplanner.team/stops/Bmrlegl2"], ["https://tec.openplanner.team/stops/N383aab", "https://tec.openplanner.team/stops/N383abb"], ["https://tec.openplanner.team/stops/H4he102a", "https://tec.openplanner.team/stops/H4he106b"], ["https://tec.openplanner.team/stops/LPT97--2", "https://tec.openplanner.team/stops/LPTgran2"], ["https://tec.openplanner.team/stops/Lboeg--2", "https://tec.openplanner.team/stops/Lbotige1"], ["https://tec.openplanner.team/stops/LkTgutl2", "https://tec.openplanner.team/stops/LwAstum1"], ["https://tec.openplanner.team/stops/NC23aga", "https://tec.openplanner.team/stops/NC23agb"], ["https://tec.openplanner.team/stops/Ccohuli1", "https://tec.openplanner.team/stops/Ccohuli2"], ["https://tec.openplanner.team/stops/X664aca", "https://tec.openplanner.team/stops/X667aba"], ["https://tec.openplanner.team/stops/N270aaa", "https://tec.openplanner.team/stops/N270aba"], ["https://tec.openplanner.team/stops/Cgxptt2", "https://tec.openplanner.team/stops/Cgxvkho4"], ["https://tec.openplanner.team/stops/H4gu107a", "https://tec.openplanner.team/stops/H4ta129b"], ["https://tec.openplanner.team/stops/LBOande2", "https://tec.openplanner.team/stops/LBOholt1"], ["https://tec.openplanner.team/stops/Bgnvqve1", "https://tec.openplanner.team/stops/Bgnvtil2"], ["https://tec.openplanner.team/stops/Lanhoud3", "https://tec.openplanner.team/stops/Lanmouf2"], ["https://tec.openplanner.team/stops/X512aja", "https://tec.openplanner.team/stops/X595aad"], ["https://tec.openplanner.team/stops/LHUgodi2", "https://tec.openplanner.team/stops/LHUloui2"], ["https://tec.openplanner.team/stops/N118ata", "https://tec.openplanner.team/stops/N118atb"], ["https://tec.openplanner.team/stops/Bnstver2", "https://tec.openplanner.team/stops/H3br100b"], ["https://tec.openplanner.team/stops/H1qg138b", "https://tec.openplanner.team/stops/H1qg138c"], ["https://tec.openplanner.team/stops/X771abb", "https://tec.openplanner.team/stops/X771acb"], ["https://tec.openplanner.team/stops/LScd45-2", "https://tec.openplanner.team/stops/LScdina1"], ["https://tec.openplanner.team/stops/LFAbouc1", "https://tec.openplanner.team/stops/LFAbouc2"], ["https://tec.openplanner.team/stops/Cfrgivr1", "https://tec.openplanner.team/stops/Cfrsour1"], ["https://tec.openplanner.team/stops/Bhaleur2", "https://tec.openplanner.team/stops/Bhalker2"], ["https://tec.openplanner.team/stops/LWOcour1", "https://tec.openplanner.team/stops/LWOwa162"], ["https://tec.openplanner.team/stops/Lchacie1", "https://tec.openplanner.team/stops/Lchchau1"], ["https://tec.openplanner.team/stops/LwR129-2", "https://tec.openplanner.team/stops/LwRkirc1"], ["https://tec.openplanner.team/stops/LBTcarr2", "https://tec.openplanner.team/stops/LBTcarr3"], ["https://tec.openplanner.team/stops/LBEairp1", "https://tec.openplanner.team/stops/LLNcime1"], ["https://tec.openplanner.team/stops/Ccisolv1", "https://tec.openplanner.team/stops/Cmtcapi2"], ["https://tec.openplanner.team/stops/LkTkabi2", "https://tec.openplanner.team/stops/LlNbruc1"], ["https://tec.openplanner.team/stops/Bclgvse1", "https://tec.openplanner.team/stops/Bllnfle1"], ["https://tec.openplanner.team/stops/Clddelh1", "https://tec.openplanner.team/stops/Clddelh2"], ["https://tec.openplanner.team/stops/X615aca", "https://tec.openplanner.team/stops/X615bia"], ["https://tec.openplanner.team/stops/LDAptbo2", "https://tec.openplanner.team/stops/LDAwich2"], ["https://tec.openplanner.team/stops/Bgermco1", "https://tec.openplanner.team/stops/Bgrhcro1"], ["https://tec.openplanner.team/stops/LAnchat2", "https://tec.openplanner.team/stops/LAnvien1"], ["https://tec.openplanner.team/stops/H5pe135a", "https://tec.openplanner.team/stops/H5pe153b"], ["https://tec.openplanner.team/stops/Ccocoup2", "https://tec.openplanner.team/stops/Croball1"], ["https://tec.openplanner.team/stops/H5rx128a", "https://tec.openplanner.team/stops/H5rx145b"], ["https://tec.openplanner.team/stops/Bgntalt3", "https://tec.openplanner.team/stops/Bsomjon2"], ["https://tec.openplanner.team/stops/LCxbeau1", "https://tec.openplanner.team/stops/LCxbeau2"], ["https://tec.openplanner.team/stops/Bhtihau1", "https://tec.openplanner.team/stops/Bhtihau2"], ["https://tec.openplanner.team/stops/N565afa", "https://tec.openplanner.team/stops/N565afb"], ["https://tec.openplanner.team/stops/Cmaplas3", "https://tec.openplanner.team/stops/Cmaroya2"], ["https://tec.openplanner.team/stops/X774aec", "https://tec.openplanner.team/stops/X774aha"], ["https://tec.openplanner.team/stops/Bsmgmas1", "https://tec.openplanner.team/stops/Bsmgmas2"], ["https://tec.openplanner.team/stops/LhGscha*", "https://tec.openplanner.team/stops/LkEschi2"], ["https://tec.openplanner.team/stops/X922aib", "https://tec.openplanner.team/stops/X922ajb"], ["https://tec.openplanner.team/stops/LRRroth1", "https://tec.openplanner.team/stops/LRRtrix1"], ["https://tec.openplanner.team/stops/LSzeg--1", "https://tec.openplanner.team/stops/LSzeg--2"], ["https://tec.openplanner.team/stops/H2bh106a", "https://tec.openplanner.team/stops/H2bh110b"], ["https://tec.openplanner.team/stops/LkEsouf1", "https://tec.openplanner.team/stops/LkEsouf2"], ["https://tec.openplanner.team/stops/LAumari1", "https://tec.openplanner.team/stops/LWRheyd1"], ["https://tec.openplanner.team/stops/Csdetan1", "https://tec.openplanner.team/stops/Csdetan2"], ["https://tec.openplanner.team/stops/H5qu142b", "https://tec.openplanner.team/stops/H5qu150b"], ["https://tec.openplanner.team/stops/N115aca", "https://tec.openplanner.team/stops/N170aca"], ["https://tec.openplanner.team/stops/LbUmolk1", "https://tec.openplanner.team/stops/LbUmolk2"], ["https://tec.openplanner.team/stops/LOdkeme1", "https://tec.openplanner.team/stops/LOdmonu3"], ["https://tec.openplanner.team/stops/Blanmde1", "https://tec.openplanner.team/stops/Bwaanwi2"], ["https://tec.openplanner.team/stops/Lgrgoff2", "https://tec.openplanner.team/stops/Lgrtomb1"], ["https://tec.openplanner.team/stops/LSSfrai1", "https://tec.openplanner.team/stops/LSSfrai2"], ["https://tec.openplanner.team/stops/H2pe160b", "https://tec.openplanner.team/stops/H2sv217b"], ["https://tec.openplanner.team/stops/Cmlvesp1", "https://tec.openplanner.team/stops/Cmlvesp2"], ["https://tec.openplanner.team/stops/H1wa149a", "https://tec.openplanner.team/stops/H1wa149c"], ["https://tec.openplanner.team/stops/Bnivind1", "https://tec.openplanner.team/stops/Bnivvai2"], ["https://tec.openplanner.team/stops/H1qu100b", "https://tec.openplanner.team/stops/H1qu100d"], ["https://tec.openplanner.team/stops/H4ag101a", "https://tec.openplanner.team/stops/H4ag102b"], ["https://tec.openplanner.team/stops/N501iaa", "https://tec.openplanner.team/stops/N501iqb"], ["https://tec.openplanner.team/stops/X806aca", "https://tec.openplanner.team/stops/X806akc"], ["https://tec.openplanner.team/stops/X818aib", "https://tec.openplanner.team/stops/X818ajb"], ["https://tec.openplanner.team/stops/N501hla", "https://tec.openplanner.team/stops/N501hlw"], ["https://tec.openplanner.team/stops/Blascim2", "https://tec.openplanner.team/stops/Blascvi1"], ["https://tec.openplanner.team/stops/Cwfghis2", "https://tec.openplanner.team/stops/Cwfplac2"], ["https://tec.openplanner.team/stops/N120aab", "https://tec.openplanner.team/stops/N122afb"], ["https://tec.openplanner.team/stops/Bhevl3l1", "https://tec.openplanner.team/stops/Bhevl3l2"], ["https://tec.openplanner.team/stops/H4bo115b", "https://tec.openplanner.team/stops/H4bo118d"], ["https://tec.openplanner.team/stops/LCSfagn1", "https://tec.openplanner.team/stops/LCSfagn2"], ["https://tec.openplanner.team/stops/H4ty306b", "https://tec.openplanner.team/stops/H4ty320b"], ["https://tec.openplanner.team/stops/H1qv111b", "https://tec.openplanner.team/stops/H1qv112a"], ["https://tec.openplanner.team/stops/X888acb", "https://tec.openplanner.team/stops/X888adb"], ["https://tec.openplanner.team/stops/Ctyhame1", "https://tec.openplanner.team/stops/Ctyhame2"], ["https://tec.openplanner.team/stops/Bettbue1", "https://tec.openplanner.team/stops/Bixepla2"], ["https://tec.openplanner.team/stops/LkEbbl-2", "https://tec.openplanner.team/stops/LkEfrie1"], ["https://tec.openplanner.team/stops/LAWcorn2", "https://tec.openplanner.team/stops/LAWlonc1"], ["https://tec.openplanner.team/stops/Llghaye1", "https://tec.openplanner.team/stops/Llgsnap3"], ["https://tec.openplanner.team/stops/H1au100a", "https://tec.openplanner.team/stops/H1mr124a"], ["https://tec.openplanner.team/stops/H4wr175a", "https://tec.openplanner.team/stops/H4wr177a"], ["https://tec.openplanner.team/stops/Bhencha1", "https://tec.openplanner.team/stops/Bvirmbr1"], ["https://tec.openplanner.team/stops/LoEbach2", "https://tec.openplanner.team/stops/LrDhund1"], ["https://tec.openplanner.team/stops/X871aca", "https://tec.openplanner.team/stops/X871ada"], ["https://tec.openplanner.team/stops/H4mv191b", "https://tec.openplanner.team/stops/H4va232b"], ["https://tec.openplanner.team/stops/LaAjahn2", "https://tec.openplanner.team/stops/LaAzwei2"], ["https://tec.openplanner.team/stops/X727aba", "https://tec.openplanner.team/stops/X727aga"], ["https://tec.openplanner.team/stops/Lmaelhe2", "https://tec.openplanner.team/stops/Lmapomm2"], ["https://tec.openplanner.team/stops/X602ada", "https://tec.openplanner.team/stops/X602akb"], ["https://tec.openplanner.team/stops/Bbaualz2", "https://tec.openplanner.team/stops/Bbautri2"], ["https://tec.openplanner.team/stops/Bhanath2", "https://tec.openplanner.team/stops/LHNhv--2"], ["https://tec.openplanner.team/stops/LRGeg--1", "https://tec.openplanner.team/stops/LRGunio3"], ["https://tec.openplanner.team/stops/LHrwaya1", "https://tec.openplanner.team/stops/LHseg--3"], ["https://tec.openplanner.team/stops/N501hjc", "https://tec.openplanner.team/stops/N501ndb"], ["https://tec.openplanner.team/stops/Cmerued2", "https://tec.openplanner.team/stops/Cmewaya1"], ["https://tec.openplanner.team/stops/LBEchan1", "https://tec.openplanner.team/stops/LBEtrix2"], ["https://tec.openplanner.team/stops/X739afa", "https://tec.openplanner.team/stops/X739agb"], ["https://tec.openplanner.team/stops/H4fo119a", "https://tec.openplanner.team/stops/H4ga152a"], ["https://tec.openplanner.team/stops/LlChebs1", "https://tec.openplanner.team/stops/LlCland2"], ["https://tec.openplanner.team/stops/H1wi153a", "https://tec.openplanner.team/stops/H1wi155b"], ["https://tec.openplanner.team/stops/Lhrabho2", "https://tec.openplanner.team/stops/Lhrdelv1"], ["https://tec.openplanner.team/stops/LAUscha1", "https://tec.openplanner.team/stops/LFProt-1"], ["https://tec.openplanner.team/stops/Lsehya-1", "https://tec.openplanner.team/stops/Lsepuit2"], ["https://tec.openplanner.team/stops/Lagpass1", "https://tec.openplanner.team/stops/Lagviad2"], ["https://tec.openplanner.team/stops/H4ft137a", "https://tec.openplanner.team/stops/H4wu377b"], ["https://tec.openplanner.team/stops/N501haa", "https://tec.openplanner.team/stops/N501icb"], ["https://tec.openplanner.team/stops/LAWgill1", "https://tec.openplanner.team/stops/LAWvill2"], ["https://tec.openplanner.team/stops/N548ada", "https://tec.openplanner.team/stops/N548afa"], ["https://tec.openplanner.team/stops/N521asa", "https://tec.openplanner.team/stops/N521asc"], ["https://tec.openplanner.team/stops/X671aba", "https://tec.openplanner.team/stops/X671ada"], ["https://tec.openplanner.team/stops/N534atb", "https://tec.openplanner.team/stops/N534bea"], ["https://tec.openplanner.team/stops/H1ge151b", "https://tec.openplanner.team/stops/H1ge179b"], ["https://tec.openplanner.team/stops/N121aga", "https://tec.openplanner.team/stops/N121aia"], ["https://tec.openplanner.team/stops/Lmogerm1", "https://tec.openplanner.team/stops/Lmojoan1"], ["https://tec.openplanner.team/stops/LCaresi2", "https://tec.openplanner.team/stops/LHZpara1"], ["https://tec.openplanner.team/stops/Lemcort1", "https://tec.openplanner.team/stops/Lemhuet1"], ["https://tec.openplanner.team/stops/Canplal2", "https://tec.openplanner.team/stops/H2an100b"], ["https://tec.openplanner.team/stops/H5rx130b", "https://tec.openplanner.team/stops/H5rx144b"], ["https://tec.openplanner.team/stops/X925aka", "https://tec.openplanner.team/stops/X925ata"], ["https://tec.openplanner.team/stops/Lpebeco1", "https://tec.openplanner.team/stops/Lpebeco2"], ["https://tec.openplanner.team/stops/Cvpcime1", "https://tec.openplanner.team/stops/Cvpcime2"], ["https://tec.openplanner.team/stops/Lalmitt2", "https://tec.openplanner.team/stops/LAWkone1"], ["https://tec.openplanner.team/stops/H4do104a", "https://tec.openplanner.team/stops/H4ev120b"], ["https://tec.openplanner.team/stops/LDLgran1", "https://tec.openplanner.team/stops/LDLgran3"], ["https://tec.openplanner.team/stops/LWbboeg1", "https://tec.openplanner.team/stops/LWbburn2"], ["https://tec.openplanner.team/stops/Bjaufca1", "https://tec.openplanner.team/stops/Bjaugar1"], ["https://tec.openplanner.team/stops/N106ala", "https://tec.openplanner.team/stops/N106alb"], ["https://tec.openplanner.team/stops/Cmlclos1", "https://tec.openplanner.team/stops/Cmlcons1"], ["https://tec.openplanner.team/stops/LMfpral2", "https://tec.openplanner.team/stops/LOtthie2"], ["https://tec.openplanner.team/stops/Lemcarm1", "https://tec.openplanner.team/stops/Lemdieu2"], ["https://tec.openplanner.team/stops/H1sb150a", "https://tec.openplanner.team/stops/H1sb150b"], ["https://tec.openplanner.team/stops/H4te255a", "https://tec.openplanner.team/stops/H4te258a"], ["https://tec.openplanner.team/stops/LiVkreu3", "https://tec.openplanner.team/stops/LiVkreu4"], ["https://tec.openplanner.team/stops/LOTsava1", "https://tec.openplanner.team/stops/LVlplan1"], ["https://tec.openplanner.team/stops/X636ala", "https://tec.openplanner.team/stops/X636bja"], ["https://tec.openplanner.team/stops/Ccocroi2", "https://tec.openplanner.team/stops/Csocime2"], ["https://tec.openplanner.team/stops/LSBdelc1", "https://tec.openplanner.team/stops/LSGmale2"], ["https://tec.openplanner.team/stops/N155afa", "https://tec.openplanner.team/stops/N155ahb"], ["https://tec.openplanner.team/stops/N501cna", "https://tec.openplanner.team/stops/N501coa"], ["https://tec.openplanner.team/stops/LBOec--2", "https://tec.openplanner.team/stops/LBOholt2"], ["https://tec.openplanner.team/stops/N507aab", "https://tec.openplanner.team/stops/NL68aac"], ["https://tec.openplanner.team/stops/H4os222b", "https://tec.openplanner.team/stops/H4re226a"], ["https://tec.openplanner.team/stops/X762aba", "https://tec.openplanner.team/stops/X763adb"], ["https://tec.openplanner.team/stops/N204aka", "https://tec.openplanner.team/stops/N204akb"], ["https://tec.openplanner.team/stops/LAieg--2", "https://tec.openplanner.team/stops/LGlcarr2"], ["https://tec.openplanner.team/stops/H2lh124b", "https://tec.openplanner.team/stops/H2lh128b"], ["https://tec.openplanner.team/stops/H1er106b", "https://tec.openplanner.team/stops/H1pe130b"], ["https://tec.openplanner.team/stops/LFRrohe1", "https://tec.openplanner.team/stops/LSTmast2"], ["https://tec.openplanner.team/stops/X764aca", "https://tec.openplanner.team/stops/X764aeb"], ["https://tec.openplanner.team/stops/X626acb", "https://tec.openplanner.team/stops/X626ana"], ["https://tec.openplanner.team/stops/X745acb", "https://tec.openplanner.team/stops/X746akb"], ["https://tec.openplanner.team/stops/N528asa", "https://tec.openplanner.team/stops/N528asb"], ["https://tec.openplanner.team/stops/H4mx114a", "https://tec.openplanner.team/stops/H4mx117a"], ["https://tec.openplanner.team/stops/Cpljonc2", "https://tec.openplanner.team/stops/Cplrmon1"], ["https://tec.openplanner.team/stops/N149aca", "https://tec.openplanner.team/stops/N149acb"], ["https://tec.openplanner.team/stops/Bmouegl2", "https://tec.openplanner.team/stops/Bottvtc1"], ["https://tec.openplanner.team/stops/X922ala", "https://tec.openplanner.team/stops/X922alb"], ["https://tec.openplanner.team/stops/N270aec", "https://tec.openplanner.team/stops/N270agb"], ["https://tec.openplanner.team/stops/H1cd111b", "https://tec.openplanner.team/stops/H1cd111d"], ["https://tec.openplanner.team/stops/X633alb", "https://tec.openplanner.team/stops/X633amb"], ["https://tec.openplanner.team/stops/X901ana", "https://tec.openplanner.team/stops/X901aub"], ["https://tec.openplanner.team/stops/X626afa", "https://tec.openplanner.team/stops/X626aga"], ["https://tec.openplanner.team/stops/N270ada", "https://tec.openplanner.team/stops/N270afd"], ["https://tec.openplanner.team/stops/X729aac", "https://tec.openplanner.team/stops/X729ada"], ["https://tec.openplanner.team/stops/H1ht129b", "https://tec.openplanner.team/stops/H1ht135a"], ["https://tec.openplanner.team/stops/Cctjoue1", "https://tec.openplanner.team/stops/Cctjoue6"], ["https://tec.openplanner.team/stops/Cmivert1", "https://tec.openplanner.team/stops/Cmivert2"], ["https://tec.openplanner.team/stops/Ccspla", "https://tec.openplanner.team/stops/Ccstord2"], ["https://tec.openplanner.team/stops/NC11ama", "https://tec.openplanner.team/stops/NC11amb"], ["https://tec.openplanner.team/stops/LsVbell1", "https://tec.openplanner.team/stops/LsVfrie1"], ["https://tec.openplanner.team/stops/Lvtauna1", "https://tec.openplanner.team/stops/Lvtmeun1"], ["https://tec.openplanner.team/stops/H4av103a", "https://tec.openplanner.team/stops/H4av103c"], ["https://tec.openplanner.team/stops/X770aca", "https://tec.openplanner.team/stops/X770afb"], ["https://tec.openplanner.team/stops/Louegla1", "https://tec.openplanner.team/stops/Louroos1"], ["https://tec.openplanner.team/stops/H4bw100b", "https://tec.openplanner.team/stops/H4co105a"], ["https://tec.openplanner.team/stops/N232bhb", "https://tec.openplanner.team/stops/N232bla"], ["https://tec.openplanner.team/stops/Bwatabs1", "https://tec.openplanner.team/stops/Bwatceg2"], ["https://tec.openplanner.team/stops/H1cd114b", "https://tec.openplanner.team/stops/H1ne146b"], ["https://tec.openplanner.team/stops/Bcsebde1", "https://tec.openplanner.team/stops/Bcseeco1"], ["https://tec.openplanner.team/stops/Bhenard2", "https://tec.openplanner.team/stops/Bhengou1"], ["https://tec.openplanner.team/stops/N351aqa", "https://tec.openplanner.team/stops/N351ara"], ["https://tec.openplanner.team/stops/N117aaa", "https://tec.openplanner.team/stops/N117bbb"], ["https://tec.openplanner.team/stops/Cfrcoqu1", "https://tec.openplanner.team/stops/Cfrgivr2"], ["https://tec.openplanner.team/stops/Ccoacie1", "https://tec.openplanner.team/stops/Ctrepin2"], ["https://tec.openplanner.team/stops/Lpecaze2", "https://tec.openplanner.team/stops/LWegdry2"], ["https://tec.openplanner.team/stops/Bclgeco1", "https://tec.openplanner.team/stops/Bgisman1"], ["https://tec.openplanner.team/stops/Cchlefe2", "https://tec.openplanner.team/stops/Cchwarm1"], ["https://tec.openplanner.team/stops/LMAbruy2", "https://tec.openplanner.team/stops/LMAptne2"], ["https://tec.openplanner.team/stops/H4bo111a", "https://tec.openplanner.team/stops/H4bo181a"], ["https://tec.openplanner.team/stops/LeMnr11", "https://tec.openplanner.team/stops/LhRandl2"], ["https://tec.openplanner.team/stops/N206aba", "https://tec.openplanner.team/stops/N220aab"], ["https://tec.openplanner.team/stops/Lvisere1", "https://tec.openplanner.team/stops/Lvisere2"], ["https://tec.openplanner.team/stops/H2mm140b", "https://tec.openplanner.team/stops/H2mo131b"], ["https://tec.openplanner.team/stops/Lselibe2", "https://tec.openplanner.team/stops/Lsestap2"], ["https://tec.openplanner.team/stops/H4wt160a", "https://tec.openplanner.team/stops/H5rx112b"], ["https://tec.openplanner.team/stops/N540aaa", "https://tec.openplanner.team/stops/N540aea"], ["https://tec.openplanner.team/stops/H1je216a", "https://tec.openplanner.team/stops/H1je216b"], ["https://tec.openplanner.team/stops/X982asa", "https://tec.openplanner.team/stops/X982asb"], ["https://tec.openplanner.team/stops/X604aca", "https://tec.openplanner.team/stops/X604ada"], ["https://tec.openplanner.team/stops/Lpeptra1", "https://tec.openplanner.team/stops/Lpevove1"], ["https://tec.openplanner.team/stops/LBrec--1", "https://tec.openplanner.team/stops/LMAwavr2"], ["https://tec.openplanner.team/stops/N135aba", "https://tec.openplanner.team/stops/N135aed"], ["https://tec.openplanner.team/stops/LBDcarr2", "https://tec.openplanner.team/stops/LBDtill2"], ["https://tec.openplanner.team/stops/Lenptsa1", "https://tec.openplanner.team/stops/Llmdeba2"], ["https://tec.openplanner.team/stops/Bettcha2", "https://tec.openplanner.team/stops/Bixleix1"], ["https://tec.openplanner.team/stops/NC11agb", "https://tec.openplanner.team/stops/NC11ahb"], ["https://tec.openplanner.team/stops/Bhvlbet2", "https://tec.openplanner.team/stops/Bmsgmon1"], ["https://tec.openplanner.team/stops/Cvpbifu2", "https://tec.openplanner.team/stops/Cvpsawe1"], ["https://tec.openplanner.team/stops/H4ld129a", "https://tec.openplanner.team/stops/H4ld130b"], ["https://tec.openplanner.team/stops/X639aja", "https://tec.openplanner.team/stops/X639ajb"], ["https://tec.openplanner.team/stops/X636beb", "https://tec.openplanner.team/stops/X649adb"], ["https://tec.openplanner.team/stops/Lceavia1", "https://tec.openplanner.team/stops/Lcesart2"], ["https://tec.openplanner.team/stops/X664ala", "https://tec.openplanner.team/stops/X664amb"], ["https://tec.openplanner.team/stops/Cthoues2", "https://tec.openplanner.team/stops/Cthpano2"], ["https://tec.openplanner.team/stops/H1ba110a", "https://tec.openplanner.team/stops/H1ba110b"], ["https://tec.openplanner.team/stops/H4ru245a", "https://tec.openplanner.team/stops/H4ru245b"], ["https://tec.openplanner.team/stops/X992adb", "https://tec.openplanner.team/stops/X992aga"], ["https://tec.openplanner.team/stops/LaR1G--2", "https://tec.openplanner.team/stops/LrUlasc1"], ["https://tec.openplanner.team/stops/Bblaegl2", "https://tec.openplanner.team/stops/Bblaphi2"], ["https://tec.openplanner.team/stops/X601aaa", "https://tec.openplanner.team/stops/X601ada"], ["https://tec.openplanner.team/stops/Cctmari1", "https://tec.openplanner.team/stops/Cctrjus1"], ["https://tec.openplanner.team/stops/N549aga", "https://tec.openplanner.team/stops/N549agb"], ["https://tec.openplanner.team/stops/H1as100a", "https://tec.openplanner.team/stops/H1as104a"], ["https://tec.openplanner.team/stops/LrAdrie4", "https://tec.openplanner.team/stops/LrAdrie5"], ["https://tec.openplanner.team/stops/X757afb", "https://tec.openplanner.team/stops/X757agb"], ["https://tec.openplanner.team/stops/X982aga", "https://tec.openplanner.team/stops/X982aib"], ["https://tec.openplanner.team/stops/N509alb", "https://tec.openplanner.team/stops/N510ada"], ["https://tec.openplanner.team/stops/Llochar3", "https://tec.openplanner.team/stops/Llochar4"], ["https://tec.openplanner.team/stops/Bmsgmon1", "https://tec.openplanner.team/stops/Bmsgpfo1"], ["https://tec.openplanner.team/stops/Brebchb2", "https://tec.openplanner.team/stops/H3br103b"], ["https://tec.openplanner.team/stops/LLescie1", "https://tec.openplanner.team/stops/X547aeb"], ["https://tec.openplanner.team/stops/LHmcarr1", "https://tec.openplanner.team/stops/LLocruc1"], ["https://tec.openplanner.team/stops/X608aoa", "https://tec.openplanner.team/stops/X608apb"], ["https://tec.openplanner.team/stops/X773aaa", "https://tec.openplanner.team/stops/X773aea"], ["https://tec.openplanner.team/stops/N539aja", "https://tec.openplanner.team/stops/N539aka"], ["https://tec.openplanner.team/stops/Bthsset1", "https://tec.openplanner.team/stops/Bthsvil1"], ["https://tec.openplanner.team/stops/LHycent*", "https://tec.openplanner.team/stops/LMvgare1"], ["https://tec.openplanner.team/stops/H4wr175b", "https://tec.openplanner.team/stops/H4wr177b"], ["https://tec.openplanner.team/stops/X638aba", "https://tec.openplanner.team/stops/X638aca"], ["https://tec.openplanner.team/stops/Bbsibou1", "https://tec.openplanner.team/stops/Bbsibou2"], ["https://tec.openplanner.team/stops/Lvomoul2", "https://tec.openplanner.team/stops/Lvovent2"], ["https://tec.openplanner.team/stops/LBNhegg1", "https://tec.openplanner.team/stops/LBNhegg2"], ["https://tec.openplanner.team/stops/Bchapir1", "https://tec.openplanner.team/stops/Bchapir2"], ["https://tec.openplanner.team/stops/X624ala", "https://tec.openplanner.team/stops/X624alb"], ["https://tec.openplanner.team/stops/LLUgend1", "https://tec.openplanner.team/stops/LLUtrol1"], ["https://tec.openplanner.team/stops/Ljumart2", "https://tec.openplanner.team/stops/Ljupiet1"], ["https://tec.openplanner.team/stops/N506aga", "https://tec.openplanner.team/stops/N556aeb"], ["https://tec.openplanner.team/stops/X804bdb", "https://tec.openplanner.team/stops/X804beb"], ["https://tec.openplanner.team/stops/Bsaupco2", "https://tec.openplanner.team/stops/Bsauvmo1"], ["https://tec.openplanner.team/stops/LTyh51-1", "https://tec.openplanner.team/stops/LTyh51-2"], ["https://tec.openplanner.team/stops/X765aba", "https://tec.openplanner.team/stops/X765abb"], ["https://tec.openplanner.team/stops/LeYraaf1", "https://tec.openplanner.team/stops/LeYraaf2"], ["https://tec.openplanner.team/stops/N501ieb", "https://tec.openplanner.team/stops/N501iez"], ["https://tec.openplanner.team/stops/X640akb", "https://tec.openplanner.team/stops/X640ana"], ["https://tec.openplanner.team/stops/X808aab", "https://tec.openplanner.team/stops/X808aja"], ["https://tec.openplanner.team/stops/H1mr122a", "https://tec.openplanner.team/stops/H1wi150b"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X770aeb"], ["https://tec.openplanner.team/stops/Lglvand1", "https://tec.openplanner.team/stops/Llgrame2"], ["https://tec.openplanner.team/stops/LSoeg--1", "https://tec.openplanner.team/stops/LSoeg--2"], ["https://tec.openplanner.team/stops/Cairous1", "https://tec.openplanner.team/stops/Cairous2"], ["https://tec.openplanner.team/stops/X667aaa", "https://tec.openplanner.team/stops/X667aab"], ["https://tec.openplanner.team/stops/X723aia", "https://tec.openplanner.team/stops/X723aja"], ["https://tec.openplanner.team/stops/Bwatbno2", "https://tec.openplanner.team/stops/Bwateco1"], ["https://tec.openplanner.team/stops/X607aba", "https://tec.openplanner.team/stops/X629aab"], ["https://tec.openplanner.team/stops/H4be101a", "https://tec.openplanner.team/stops/H4be147a"], ["https://tec.openplanner.team/stops/Blmlbou1", "https://tec.openplanner.team/stops/Blmlbou2"], ["https://tec.openplanner.team/stops/Cdajume1", "https://tec.openplanner.team/stops/Cmarroy2"], ["https://tec.openplanner.team/stops/N531ana", "https://tec.openplanner.team/stops/N576aib"], ["https://tec.openplanner.team/stops/H3bo101a", "https://tec.openplanner.team/stops/H3bo101b"], ["https://tec.openplanner.team/stops/N229apb", "https://tec.openplanner.team/stops/N231aca"], ["https://tec.openplanner.team/stops/X762aca", "https://tec.openplanner.team/stops/X764aaa"], ["https://tec.openplanner.team/stops/Bnettir1", "https://tec.openplanner.team/stops/Bnettou1"], ["https://tec.openplanner.team/stops/Cchhopi2", "https://tec.openplanner.team/stops/Cchhopi3"], ["https://tec.openplanner.team/stops/LOUchen2", "https://tec.openplanner.team/stops/Lvitomb2"], ["https://tec.openplanner.team/stops/N874aib", "https://tec.openplanner.team/stops/N874ala"], ["https://tec.openplanner.team/stops/Cflcent2", "https://tec.openplanner.team/stops/Cflecep1"], ["https://tec.openplanner.team/stops/Clrcomb1", "https://tec.openplanner.team/stops/Clrrhau2"], ["https://tec.openplanner.team/stops/H4mo146b", "https://tec.openplanner.team/stops/H4mo156a"], ["https://tec.openplanner.team/stops/LrAeife2", "https://tec.openplanner.team/stops/LrAverb1"], ["https://tec.openplanner.team/stops/Llgbaro4", "https://tec.openplanner.team/stops/Llgware2"], ["https://tec.openplanner.team/stops/X731afa", "https://tec.openplanner.team/stops/X731akb"], ["https://tec.openplanner.team/stops/Llgongr2", "https://tec.openplanner.team/stops/Llgongr4"], ["https://tec.openplanner.team/stops/Ctm4che1", "https://tec.openplanner.team/stops/Ctmmath2"], ["https://tec.openplanner.team/stops/X992aja", "https://tec.openplanner.team/stops/X992aka"], ["https://tec.openplanner.team/stops/Lpomart2", "https://tec.openplanner.team/stops/Lpoprie1"], ["https://tec.openplanner.team/stops/X750aza", "https://tec.openplanner.team/stops/X794aab"], ["https://tec.openplanner.team/stops/LGMdrev2", "https://tec.openplanner.team/stops/LSEvill2"], ["https://tec.openplanner.team/stops/H4ru236a", "https://tec.openplanner.team/stops/H4ru243a"], ["https://tec.openplanner.team/stops/Bblafra2", "https://tec.openplanner.team/stops/Bblasol1"], ["https://tec.openplanner.team/stops/LFCalte2", "https://tec.openplanner.team/stops/LMastat3"], ["https://tec.openplanner.team/stops/LhSbruc2", "https://tec.openplanner.team/stops/LhSkape1"], ["https://tec.openplanner.team/stops/Cfcbobr2", "https://tec.openplanner.team/stops/Cfcsaut3"], ["https://tec.openplanner.team/stops/H2ll176b", "https://tec.openplanner.team/stops/H2ll198a"], ["https://tec.openplanner.team/stops/H1gg117b", "https://tec.openplanner.team/stops/H1mb125a"], ["https://tec.openplanner.team/stops/H1ch132a", "https://tec.openplanner.team/stops/H4to133b"], ["https://tec.openplanner.team/stops/N139aca", "https://tec.openplanner.team/stops/N139acb"], ["https://tec.openplanner.team/stops/X811amb", "https://tec.openplanner.team/stops/X811anb"], ["https://tec.openplanner.team/stops/H1mj131a", "https://tec.openplanner.team/stops/H1ml111a"], ["https://tec.openplanner.team/stops/Bpecdel2", "https://tec.openplanner.team/stops/Bpecvme2"], ["https://tec.openplanner.team/stops/Bhalgja1", "https://tec.openplanner.team/stops/Blemsta1"], ["https://tec.openplanner.team/stops/Lsebegu3", "https://tec.openplanner.team/stops/Lsebelv1"], ["https://tec.openplanner.team/stops/Crccamp1", "https://tec.openplanner.team/stops/Crccarr2"], ["https://tec.openplanner.team/stops/N501bja", "https://tec.openplanner.team/stops/N501mwa"], ["https://tec.openplanner.team/stops/X602arb", "https://tec.openplanner.team/stops/X653adc"], ["https://tec.openplanner.team/stops/X659aia", "https://tec.openplanner.team/stops/X659aja"], ["https://tec.openplanner.team/stops/LlChebs2", "https://tec.openplanner.team/stops/LrAkape1"], ["https://tec.openplanner.team/stops/H5at116a", "https://tec.openplanner.team/stops/H5at118a"], ["https://tec.openplanner.team/stops/N308aea", "https://tec.openplanner.team/stops/N308aja"], ["https://tec.openplanner.team/stops/H1hw119b", "https://tec.openplanner.team/stops/H1ls108a"], ["https://tec.openplanner.team/stops/LRmrode1", "https://tec.openplanner.team/stops/LRmsmvo4"], ["https://tec.openplanner.team/stops/LSIters2", "https://tec.openplanner.team/stops/LVAakke1"], ["https://tec.openplanner.team/stops/N576ahb", "https://tec.openplanner.team/stops/N576aia"], ["https://tec.openplanner.team/stops/H2na134a", "https://tec.openplanner.team/stops/H3so184b"], ["https://tec.openplanner.team/stops/X917aea", "https://tec.openplanner.team/stops/X921adb"], ["https://tec.openplanner.team/stops/LhEbruc2", "https://tec.openplanner.team/stops/LWEcool2"], ["https://tec.openplanner.team/stops/H2fy122a", "https://tec.openplanner.team/stops/H2lh124a"], ["https://tec.openplanner.team/stops/LOMware1", "https://tec.openplanner.team/stops/LTOcime1"], ["https://tec.openplanner.team/stops/X743ada", "https://tec.openplanner.team/stops/X744aaa"], ["https://tec.openplanner.team/stops/LAMcoll1", "https://tec.openplanner.team/stops/LAMpirk1"], ["https://tec.openplanner.team/stops/Ccigill3", "https://tec.openplanner.team/stops/Ccisart2"], ["https://tec.openplanner.team/stops/LCOcarr1", "https://tec.openplanner.team/stops/LCOeg--1"], ["https://tec.openplanner.team/stops/Blpgcmo2", "https://tec.openplanner.team/stops/Blpghou1"], ["https://tec.openplanner.team/stops/X801ava", "https://tec.openplanner.team/stops/X801avb"], ["https://tec.openplanner.team/stops/X941aaa", "https://tec.openplanner.team/stops/X941aea"], ["https://tec.openplanner.team/stops/H1bb115a", "https://tec.openplanner.team/stops/H1bb118b"], ["https://tec.openplanner.team/stops/H3lr106b", "https://tec.openplanner.team/stops/H3th133a"], ["https://tec.openplanner.team/stops/X624aba", "https://tec.openplanner.team/stops/X624aca"], ["https://tec.openplanner.team/stops/LFFmarc2", "https://tec.openplanner.team/stops/LSCchap2"], ["https://tec.openplanner.team/stops/N222aaa", "https://tec.openplanner.team/stops/N222ayb"], ["https://tec.openplanner.team/stops/X790afb", "https://tec.openplanner.team/stops/X790aib"], ["https://tec.openplanner.team/stops/H4la198a", "https://tec.openplanner.team/stops/H4la198d"], ["https://tec.openplanner.team/stops/H1ht126a", "https://tec.openplanner.team/stops/H1te178b"], ["https://tec.openplanner.team/stops/X617agb", "https://tec.openplanner.team/stops/X617aha"], ["https://tec.openplanner.team/stops/LSGec--2", "https://tec.openplanner.team/stops/LSGhagn2"], ["https://tec.openplanner.team/stops/H4an104b", "https://tec.openplanner.team/stops/H4cr110a"], ["https://tec.openplanner.team/stops/Ccumasu1", "https://tec.openplanner.team/stops/Ccupdes1"], ["https://tec.openplanner.team/stops/H4mo136a", "https://tec.openplanner.team/stops/H4mo180a"], ["https://tec.openplanner.team/stops/H4hq131a", "https://tec.openplanner.team/stops/H4hs135b"], ["https://tec.openplanner.team/stops/N135afb", "https://tec.openplanner.team/stops/N135aoa"], ["https://tec.openplanner.team/stops/X224afa", "https://tec.openplanner.team/stops/X398aea"], ["https://tec.openplanner.team/stops/X221aad", "https://tec.openplanner.team/stops/X394adb"], ["https://tec.openplanner.team/stops/LHUanth2", "https://tec.openplanner.team/stops/LWNwavr3"], ["https://tec.openplanner.team/stops/H2hp114b", "https://tec.openplanner.team/stops/H2ll183b"], ["https://tec.openplanner.team/stops/N312aaa", "https://tec.openplanner.team/stops/N312aba"], ["https://tec.openplanner.team/stops/H4bw100a", "https://tec.openplanner.team/stops/H4bw101a"], ["https://tec.openplanner.team/stops/LGLdeni2", "https://tec.openplanner.team/stops/LGLspor1"], ["https://tec.openplanner.team/stops/N201aga", "https://tec.openplanner.team/stops/N201aua"], ["https://tec.openplanner.team/stops/H1hn204a", "https://tec.openplanner.team/stops/H1hn210b"], ["https://tec.openplanner.team/stops/Llgdarc1", "https://tec.openplanner.team/stops/Llgpier2"], ["https://tec.openplanner.team/stops/X639aeb", "https://tec.openplanner.team/stops/X640asa"], ["https://tec.openplanner.team/stops/H4bx108b", "https://tec.openplanner.team/stops/H4ep128b"], ["https://tec.openplanner.team/stops/H1ev112b", "https://tec.openplanner.team/stops/H1ev116a"], ["https://tec.openplanner.team/stops/LSsaxhe2", "https://tec.openplanner.team/stops/N506bua"], ["https://tec.openplanner.team/stops/LBJlieg2", "https://tec.openplanner.team/stops/LFRfagn2"], ["https://tec.openplanner.team/stops/Ccinali1", "https://tec.openplanner.team/stops/Cmllait2"], ["https://tec.openplanner.team/stops/Lengran1", "https://tec.openplanner.team/stops/Lvedepo*"], ["https://tec.openplanner.team/stops/Cgy3012", "https://tec.openplanner.team/stops/Cmtfoye2"], ["https://tec.openplanner.team/stops/N509aab", "https://tec.openplanner.team/stops/N509aeb"], ["https://tec.openplanner.team/stops/N305aaa", "https://tec.openplanner.team/stops/N313aec"], ["https://tec.openplanner.team/stops/LSeec--1", "https://tec.openplanner.team/stops/LSegott1"], ["https://tec.openplanner.team/stops/X789ada", "https://tec.openplanner.team/stops/X789adb"], ["https://tec.openplanner.team/stops/Bneedia2", "https://tec.openplanner.team/stops/Bneeegl2"], ["https://tec.openplanner.team/stops/Lflchan1", "https://tec.openplanner.team/stops/Lropass1"], ["https://tec.openplanner.team/stops/X908asa", "https://tec.openplanner.team/stops/X910aca"], ["https://tec.openplanner.team/stops/N104abb", "https://tec.openplanner.team/stops/N104aca"], ["https://tec.openplanner.team/stops/X805aeb", "https://tec.openplanner.team/stops/X805afb"], ["https://tec.openplanner.team/stops/H1cv104b", "https://tec.openplanner.team/stops/H1ml111b"], ["https://tec.openplanner.team/stops/Cctbinc1", "https://tec.openplanner.team/stops/Cctpche1"], ["https://tec.openplanner.team/stops/X396acb", "https://tec.openplanner.team/stops/X396afb"], ["https://tec.openplanner.team/stops/Bmsgbur1", "https://tec.openplanner.team/stops/Bmsgfon1"], ["https://tec.openplanner.team/stops/LVEfize1", "https://tec.openplanner.team/stops/LVEhali2"], ["https://tec.openplanner.team/stops/Lhubriq1", "https://tec.openplanner.team/stops/Lhuwaid1"], ["https://tec.openplanner.team/stops/H4re225a", "https://tec.openplanner.team/stops/H5at122b"], ["https://tec.openplanner.team/stops/LrAiter2", "https://tec.openplanner.team/stops/LrAmuhl2"], ["https://tec.openplanner.team/stops/LKmcabi2", "https://tec.openplanner.team/stops/LMObouh1"], ["https://tec.openplanner.team/stops/Lghwall1", "https://tec.openplanner.team/stops/Llocime2"], ["https://tec.openplanner.team/stops/H5pe149a", "https://tec.openplanner.team/stops/H5pe149b"], ["https://tec.openplanner.team/stops/X649aab", "https://tec.openplanner.team/stops/X671ada"], ["https://tec.openplanner.team/stops/Lfhborg2", "https://tec.openplanner.team/stops/Livgera2"], ["https://tec.openplanner.team/stops/Bhlvlou1", "https://tec.openplanner.team/stops/Crewath2"], ["https://tec.openplanner.team/stops/Lvtmeun1", "https://tec.openplanner.team/stops/Lvtmeun2"], ["https://tec.openplanner.team/stops/X724afa", "https://tec.openplanner.team/stops/X724aib"], ["https://tec.openplanner.team/stops/Lbrboul2", "https://tec.openplanner.team/stops/Lbrcard1"], ["https://tec.openplanner.team/stops/H4ka175a", "https://tec.openplanner.team/stops/H4ob124a"], ["https://tec.openplanner.team/stops/N140aaa", "https://tec.openplanner.team/stops/N141ala"], ["https://tec.openplanner.team/stops/H1fa117b", "https://tec.openplanner.team/stops/H1fa121b"], ["https://tec.openplanner.team/stops/H4do107a", "https://tec.openplanner.team/stops/H4do203a"], ["https://tec.openplanner.team/stops/H1fl133c", "https://tec.openplanner.team/stops/H1je223b"], ["https://tec.openplanner.team/stops/Ljudeme1", "https://tec.openplanner.team/stops/Ljuhava1"], ["https://tec.openplanner.team/stops/Ljeblum2", "https://tec.openplanner.team/stops/Ljeespe1"], ["https://tec.openplanner.team/stops/H1ch142b", "https://tec.openplanner.team/stops/H1hh112a"], ["https://tec.openplanner.team/stops/X612afa", "https://tec.openplanner.team/stops/X612afb"], ["https://tec.openplanner.team/stops/Bwavbwa2", "https://tec.openplanner.team/stops/Bwavche1"], ["https://tec.openplanner.team/stops/Btubaig1", "https://tec.openplanner.team/stops/Btubstq1"], ["https://tec.openplanner.team/stops/Llgcoro4", "https://tec.openplanner.team/stops/Llggee52"], ["https://tec.openplanner.team/stops/Cmtgrim1", "https://tec.openplanner.team/stops/Cmtstan3"], ["https://tec.openplanner.team/stops/H4tu170a", "https://tec.openplanner.team/stops/H4tu170b"], ["https://tec.openplanner.team/stops/Canboha2", "https://tec.openplanner.team/stops/Canh1941"], ["https://tec.openplanner.team/stops/Lflchan2", "https://tec.openplanner.team/stops/Lropass1"], ["https://tec.openplanner.team/stops/Bfelcsa2", "https://tec.openplanner.team/stops/H2mg135a"], ["https://tec.openplanner.team/stops/X937aab", "https://tec.openplanner.team/stops/X937alb"], ["https://tec.openplanner.team/stops/Lbocorn1", "https://tec.openplanner.team/stops/Lboeg--2"], ["https://tec.openplanner.team/stops/X736aca", "https://tec.openplanner.team/stops/X952aeb"], ["https://tec.openplanner.team/stops/Bstesar1", "https://tec.openplanner.team/stops/Bstesar2"], ["https://tec.openplanner.team/stops/N554aeb", "https://tec.openplanner.team/stops/N573aqa"], ["https://tec.openplanner.team/stops/LHHtill1", "https://tec.openplanner.team/stops/LHHtill2"], ["https://tec.openplanner.team/stops/H1wa135b", "https://tec.openplanner.team/stops/H1wa137b"], ["https://tec.openplanner.team/stops/H1mh114a", "https://tec.openplanner.team/stops/H1mh117a"], ["https://tec.openplanner.team/stops/Cgxpair2", "https://tec.openplanner.team/stops/Cmogrbu2"], ["https://tec.openplanner.team/stops/X609aia", "https://tec.openplanner.team/stops/X609aib"], ["https://tec.openplanner.team/stops/Csefour1", "https://tec.openplanner.team/stops/Csefour2"], ["https://tec.openplanner.team/stops/N501daa", "https://tec.openplanner.team/stops/N501dab"], ["https://tec.openplanner.team/stops/H4lz121a", "https://tec.openplanner.team/stops/H4lz158b"], ["https://tec.openplanner.team/stops/Brebras1", "https://tec.openplanner.team/stops/Brebras2"], ["https://tec.openplanner.team/stops/X952afa", "https://tec.openplanner.team/stops/X954aea"], ["https://tec.openplanner.team/stops/H1th182a", "https://tec.openplanner.team/stops/H3so169a"], ["https://tec.openplanner.team/stops/Lbocarr2", "https://tec.openplanner.team/stops/Lbogonh3"], ["https://tec.openplanner.team/stops/Lceavia2", "https://tec.openplanner.team/stops/Lceprog2"], ["https://tec.openplanner.team/stops/Cjualtr1", "https://tec.openplanner.team/stops/Cjucopp1"], ["https://tec.openplanner.team/stops/H2le146b", "https://tec.openplanner.team/stops/H2le152b"], ["https://tec.openplanner.team/stops/N236ada", "https://tec.openplanner.team/stops/N236ala"], ["https://tec.openplanner.team/stops/NL68aac", "https://tec.openplanner.team/stops/NL68aad"], ["https://tec.openplanner.team/stops/N355aea", "https://tec.openplanner.team/stops/N383aeb"], ["https://tec.openplanner.team/stops/LLUdeig2", "https://tec.openplanner.team/stops/LLUhotc1"], ["https://tec.openplanner.team/stops/N201aeb", "https://tec.openplanner.team/stops/N201aee"], ["https://tec.openplanner.team/stops/X741aab", "https://tec.openplanner.team/stops/X742aab"], ["https://tec.openplanner.team/stops/Bgerd321", "https://tec.openplanner.team/stops/Bgermco2"], ["https://tec.openplanner.team/stops/N207aab", "https://tec.openplanner.team/stops/N209ala"], ["https://tec.openplanner.team/stops/LVIdeva2", "https://tec.openplanner.team/stops/LVIvert2"], ["https://tec.openplanner.team/stops/Bblaang2", "https://tec.openplanner.team/stops/Bblafrn1"], ["https://tec.openplanner.team/stops/Lagfour1", "https://tec.openplanner.team/stops/Lagresi2"], ["https://tec.openplanner.team/stops/H1do116b", "https://tec.openplanner.team/stops/H1ho147a"], ["https://tec.openplanner.team/stops/N351aja", "https://tec.openplanner.team/stops/N351ajb"], ["https://tec.openplanner.team/stops/H4ep131a", "https://tec.openplanner.team/stops/H4ep131b"], ["https://tec.openplanner.team/stops/LFEplac1", "https://tec.openplanner.team/stops/X597ana"], ["https://tec.openplanner.team/stops/H2sb223b", "https://tec.openplanner.team/stops/H2sb239a"], ["https://tec.openplanner.team/stops/H4mo208a", "https://tec.openplanner.team/stops/H4mo208b"], ["https://tec.openplanner.team/stops/LFMkrut3", "https://tec.openplanner.team/stops/LFMkrut4"], ["https://tec.openplanner.team/stops/N512ana", "https://tec.openplanner.team/stops/N512aqa"], ["https://tec.openplanner.team/stops/LmNha152", "https://tec.openplanner.team/stops/LmNha222"], ["https://tec.openplanner.team/stops/H4hx113b", "https://tec.openplanner.team/stops/H4lu125a"], ["https://tec.openplanner.team/stops/Ckevela2", "https://tec.openplanner.team/stops/Cvstouv2"], ["https://tec.openplanner.team/stops/Lropass1", "https://tec.openplanner.team/stops/Lropass2"], ["https://tec.openplanner.team/stops/Cfrtill1", "https://tec.openplanner.team/stops/Crewath2"], ["https://tec.openplanner.team/stops/LESchat2", "https://tec.openplanner.team/stops/LESfont2"], ["https://tec.openplanner.team/stops/Cdahtvi1", "https://tec.openplanner.team/stops/Cdaviol1"], ["https://tec.openplanner.team/stops/N554aha", "https://tec.openplanner.team/stops/N573aqa"], ["https://tec.openplanner.team/stops/Bneersa2", "https://tec.openplanner.team/stops/Bneesan2"], ["https://tec.openplanner.team/stops/Bptrcra1", "https://tec.openplanner.team/stops/Bptrvil1"], ["https://tec.openplanner.team/stops/X925afa", "https://tec.openplanner.team/stops/X925afb"], ["https://tec.openplanner.team/stops/LLTgole2", "https://tec.openplanner.team/stops/LLTtour1"], ["https://tec.openplanner.team/stops/X811afa", "https://tec.openplanner.team/stops/X811aja"], ["https://tec.openplanner.team/stops/X804aba", "https://tec.openplanner.team/stops/X804amb"], ["https://tec.openplanner.team/stops/Ccomott2", "https://tec.openplanner.team/stops/Ccoptca2"], ["https://tec.openplanner.team/stops/Lhrdeme2", "https://tec.openplanner.team/stops/Lhrhome2"], ["https://tec.openplanner.team/stops/X607acb", "https://tec.openplanner.team/stops/X621aca"], ["https://tec.openplanner.team/stops/N106alb", "https://tec.openplanner.team/stops/N106anb"], ["https://tec.openplanner.team/stops/Lrcvill2", "https://tec.openplanner.team/stops/Lrcvill4"], ["https://tec.openplanner.team/stops/LmI36--2", "https://tec.openplanner.team/stops/LmIkirc1"], ["https://tec.openplanner.team/stops/Cgocalv1", "https://tec.openplanner.team/stops/Cgomart1"], ["https://tec.openplanner.team/stops/H1gh145b", "https://tec.openplanner.team/stops/H1gh157a"], ["https://tec.openplanner.team/stops/N103aca", "https://tec.openplanner.team/stops/N103afb"], ["https://tec.openplanner.team/stops/X923aea", "https://tec.openplanner.team/stops/X923aeb"], ["https://tec.openplanner.team/stops/N539aub", "https://tec.openplanner.team/stops/N539bga"], ["https://tec.openplanner.team/stops/Cvretan1", "https://tec.openplanner.team/stops/Cvrfcho1"], ["https://tec.openplanner.team/stops/N201ahb", "https://tec.openplanner.team/stops/N201ata"], ["https://tec.openplanner.team/stops/Bhengou1", "https://tec.openplanner.team/stops/Bhenmal1"], ["https://tec.openplanner.team/stops/Cclchap2", "https://tec.openplanner.team/stops/Cclplac1"], ["https://tec.openplanner.team/stops/Llgcamp2", "https://tec.openplanner.team/stops/Llgpire1"], ["https://tec.openplanner.team/stops/H4lz125a", "https://tec.openplanner.team/stops/H4lz155a"], ["https://tec.openplanner.team/stops/X735aab", "https://tec.openplanner.team/stops/X953aaa"], ["https://tec.openplanner.team/stops/N226ada", "https://tec.openplanner.team/stops/N367adb"], ["https://tec.openplanner.team/stops/H4lp121b", "https://tec.openplanner.team/stops/H4lp122b"], ["https://tec.openplanner.team/stops/H1al105a", "https://tec.openplanner.team/stops/H1al146a"], ["https://tec.openplanner.team/stops/X901anb", "https://tec.openplanner.team/stops/X901bka"], ["https://tec.openplanner.team/stops/X991akb", "https://tec.openplanner.team/stops/X993ahb"], ["https://tec.openplanner.team/stops/X716aab", "https://tec.openplanner.team/stops/X731aga"], ["https://tec.openplanner.team/stops/H1ge117b", "https://tec.openplanner.team/stops/H1ge179a"], ["https://tec.openplanner.team/stops/Bjodcdt1", "https://tec.openplanner.team/stops/Bjodced2"], ["https://tec.openplanner.team/stops/N543bpc", "https://tec.openplanner.team/stops/N543chb"], ["https://tec.openplanner.team/stops/X948aea", "https://tec.openplanner.team/stops/X948aeb"], ["https://tec.openplanner.team/stops/LCtcref1", "https://tec.openplanner.team/stops/X788aha"], ["https://tec.openplanner.team/stops/Crodebr2", "https://tec.openplanner.team/stops/Cronova2"], ["https://tec.openplanner.team/stops/X638alb", "https://tec.openplanner.team/stops/X639adb"], ["https://tec.openplanner.team/stops/X938adb", "https://tec.openplanner.team/stops/X938aea"], ["https://tec.openplanner.team/stops/LRE154-1", "https://tec.openplanner.team/stops/LRE154-2"], ["https://tec.openplanner.team/stops/H1au112a", "https://tec.openplanner.team/stops/H1au112b"], ["https://tec.openplanner.team/stops/H4rc232a", "https://tec.openplanner.team/stops/H4rc232c"], ["https://tec.openplanner.team/stops/N270aed", "https://tec.openplanner.team/stops/N270afd"], ["https://tec.openplanner.team/stops/X363aaa", "https://tec.openplanner.team/stops/X363abb"], ["https://tec.openplanner.team/stops/H4ty299e", "https://tec.openplanner.team/stops/H4ty299f"], ["https://tec.openplanner.team/stops/LMoelno2", "https://tec.openplanner.team/stops/LSDgris2"], ["https://tec.openplanner.team/stops/H1ba105b", "https://tec.openplanner.team/stops/H1te173b"], ["https://tec.openplanner.team/stops/X626ala", "https://tec.openplanner.team/stops/X687afa"], ["https://tec.openplanner.team/stops/X926aba", "https://tec.openplanner.team/stops/X926aea"], ["https://tec.openplanner.team/stops/H1by104b", "https://tec.openplanner.team/stops/H1sy143d"], ["https://tec.openplanner.team/stops/X992aba", "https://tec.openplanner.team/stops/X992afa"], ["https://tec.openplanner.team/stops/Cwfcule1", "https://tec.openplanner.team/stops/Cwfcule2"], ["https://tec.openplanner.team/stops/X614aia", "https://tec.openplanner.team/stops/X614aib"], ["https://tec.openplanner.team/stops/N218acc", "https://tec.openplanner.team/stops/N245acb"], ["https://tec.openplanner.team/stops/X548acb", "https://tec.openplanner.team/stops/X548adb"], ["https://tec.openplanner.team/stops/H4ty286b", "https://tec.openplanner.team/stops/H4ty317a"], ["https://tec.openplanner.team/stops/N501cua", "https://tec.openplanner.team/stops/N501cub"], ["https://tec.openplanner.team/stops/LHTeg--4", "https://tec.openplanner.team/stops/LHTeg--5"], ["https://tec.openplanner.team/stops/N501gsa", "https://tec.openplanner.team/stops/N501hlb"], ["https://tec.openplanner.team/stops/Bllncyc2", "https://tec.openplanner.team/stops/Bllnein4"], ["https://tec.openplanner.team/stops/H4ft134a", "https://tec.openplanner.team/stops/H4la197a"], ["https://tec.openplanner.team/stops/LHAprei2", "https://tec.openplanner.team/stops/LHAvall2"], ["https://tec.openplanner.team/stops/H4rm107a", "https://tec.openplanner.team/stops/H4rm111b"], ["https://tec.openplanner.team/stops/Cthbifu2", "https://tec.openplanner.team/stops/Cthgend2"], ["https://tec.openplanner.team/stops/X512aab", "https://tec.openplanner.team/stops/X512ajb"], ["https://tec.openplanner.team/stops/Bopplon2", "https://tec.openplanner.team/stops/Borbode1"], ["https://tec.openplanner.team/stops/Bhaawdr1", "https://tec.openplanner.team/stops/Bnetrbr2"], ["https://tec.openplanner.team/stops/Broncli1", "https://tec.openplanner.team/stops/Broncli2"], ["https://tec.openplanner.team/stops/X758aaa", "https://tec.openplanner.team/stops/X758aba"], ["https://tec.openplanner.team/stops/LEHhaut1", "https://tec.openplanner.team/stops/LRAgrot2"], ["https://tec.openplanner.team/stops/X826aab", "https://tec.openplanner.team/stops/X831aba"], ["https://tec.openplanner.team/stops/N553aia", "https://tec.openplanner.team/stops/N553aja"], ["https://tec.openplanner.team/stops/N506bia", "https://tec.openplanner.team/stops/N506bkb"], ["https://tec.openplanner.team/stops/Ldifoye2", "https://tec.openplanner.team/stops/Lprorem2"], ["https://tec.openplanner.team/stops/Lrcstad1", "https://tec.openplanner.team/stops/Lrcvill2"], ["https://tec.openplanner.team/stops/LeUauto2", "https://tec.openplanner.team/stops/LeUgb--2"], ["https://tec.openplanner.team/stops/Cdogrro1", "https://tec.openplanner.team/stops/Ctufleu4"], ["https://tec.openplanner.team/stops/Cgzabur2", "https://tec.openplanner.team/stops/Cgzplac4"], ["https://tec.openplanner.team/stops/LBLplas2", "https://tec.openplanner.team/stops/LMotrem1"], ["https://tec.openplanner.team/stops/N513aeb", "https://tec.openplanner.team/stops/N513bfb"], ["https://tec.openplanner.team/stops/Cmlecha2", "https://tec.openplanner.team/stops/CMtirou2"], ["https://tec.openplanner.team/stops/Cmbcime4", "https://tec.openplanner.team/stops/Crclorc2"], ["https://tec.openplanner.team/stops/N506arb", "https://tec.openplanner.team/stops/N506asb"], ["https://tec.openplanner.team/stops/Bnivpal1", "https://tec.openplanner.team/stops/Bnivpal2"], ["https://tec.openplanner.team/stops/Lsccdor2", "https://tec.openplanner.team/stops/Lsccime2"], ["https://tec.openplanner.team/stops/LWAgare*", "https://tec.openplanner.team/stops/LWAlong2"], ["https://tec.openplanner.team/stops/LLOchpl2", "https://tec.openplanner.team/stops/LLOspin1"], ["https://tec.openplanner.team/stops/LeYfeld2", "https://tec.openplanner.team/stops/LeYteeh1"], ["https://tec.openplanner.team/stops/Lprdavi2", "https://tec.openplanner.team/stops/Lprorem1"], ["https://tec.openplanner.team/stops/Cmcbriq1", "https://tec.openplanner.team/stops/Cmchai2"], ["https://tec.openplanner.team/stops/Cgrflac2", "https://tec.openplanner.team/stops/NC14aib"], ["https://tec.openplanner.team/stops/Lgrstou1", "https://tec.openplanner.team/stops/Llgdesa1"], ["https://tec.openplanner.team/stops/H4mo170b", "https://tec.openplanner.team/stops/H4mo187a"], ["https://tec.openplanner.team/stops/Bhoegbr2", "https://tec.openplanner.team/stops/Bovejei1"], ["https://tec.openplanner.team/stops/Bjodeco1", "https://tec.openplanner.team/stops/Bjodrdp2"], ["https://tec.openplanner.team/stops/LAYambl1", "https://tec.openplanner.team/stops/LAYlieg1"], ["https://tec.openplanner.team/stops/H1mm125a", "https://tec.openplanner.team/stops/H1mm125c"], ["https://tec.openplanner.team/stops/X982bja", "https://tec.openplanner.team/stops/X982bub"], ["https://tec.openplanner.team/stops/Lbrddef3", "https://tec.openplanner.team/stops/Llgddef1"], ["https://tec.openplanner.team/stops/N503ada", "https://tec.openplanner.team/stops/N503aib"], ["https://tec.openplanner.team/stops/H4rx142a", "https://tec.openplanner.team/stops/H4rx175b"], ["https://tec.openplanner.team/stops/Bgnvbsi2", "https://tec.openplanner.team/stops/Bgnvpos2"], ["https://tec.openplanner.team/stops/X617ahb", "https://tec.openplanner.team/stops/X696ada"], ["https://tec.openplanner.team/stops/LTIchev2", "https://tec.openplanner.team/stops/LTIptme2"], ["https://tec.openplanner.team/stops/LCFcarr1", "https://tec.openplanner.team/stops/LCFeg--1"], ["https://tec.openplanner.team/stops/LVLgotr1", "https://tec.openplanner.team/stops/LVLgotr4"], ["https://tec.openplanner.team/stops/H1ha184a", "https://tec.openplanner.team/stops/H1ss348a"], ["https://tec.openplanner.team/stops/N232anb", "https://tec.openplanner.team/stops/N232aqa"], ["https://tec.openplanner.team/stops/Lousite3", "https://tec.openplanner.team/stops/Lousite4"], ["https://tec.openplanner.team/stops/LSIespe2", "https://tec.openplanner.team/stops/LSImewi2"], ["https://tec.openplanner.team/stops/LAo161-2", "https://tec.openplanner.team/stops/LTPwann1"], ["https://tec.openplanner.team/stops/N563aab", "https://tec.openplanner.team/stops/N585ala"], ["https://tec.openplanner.team/stops/H4bo119a", "https://tec.openplanner.team/stops/H4bo181b"], ["https://tec.openplanner.team/stops/LCTgare3", "https://tec.openplanner.team/stops/LCTmonu1"], ["https://tec.openplanner.team/stops/Bnivpve1", "https://tec.openplanner.team/stops/Bnivpve2"], ["https://tec.openplanner.team/stops/H4ty267a", "https://tec.openplanner.team/stops/H4ty328b"], ["https://tec.openplanner.team/stops/N548aaa", "https://tec.openplanner.team/stops/N548aib"], ["https://tec.openplanner.team/stops/N507ala", "https://tec.openplanner.team/stops/N507amb"], ["https://tec.openplanner.team/stops/H2ll177a", "https://tec.openplanner.team/stops/H2ll257a"], ["https://tec.openplanner.team/stops/LHCandr1", "https://tec.openplanner.team/stops/LHCmonu1"], ["https://tec.openplanner.team/stops/N302aaa", "https://tec.openplanner.team/stops/N302abb"], ["https://tec.openplanner.team/stops/N244aja", "https://tec.openplanner.team/stops/N252acd"], ["https://tec.openplanner.team/stops/Bblmpro1", "https://tec.openplanner.team/stops/Bnil3fo1"], ["https://tec.openplanner.team/stops/Llgbavr1", "https://tec.openplanner.team/stops/Llgcmes2"], ["https://tec.openplanner.team/stops/N343ajb", "https://tec.openplanner.team/stops/N343aka"], ["https://tec.openplanner.team/stops/X576aba", "https://tec.openplanner.team/stops/X576aca"], ["https://tec.openplanner.team/stops/X601aga", "https://tec.openplanner.team/stops/X601aia"], ["https://tec.openplanner.team/stops/N518aab", "https://tec.openplanner.team/stops/N520aia"], ["https://tec.openplanner.team/stops/Llgseel1", "https://tec.openplanner.team/stops/Llgseel2"], ["https://tec.openplanner.team/stops/LBRmout4", "https://tec.openplanner.team/stops/LMffoot1"], ["https://tec.openplanner.team/stops/Btslcel1", "https://tec.openplanner.team/stops/Bwlhswc1"], ["https://tec.openplanner.team/stops/X660acb", "https://tec.openplanner.team/stops/X660ahb"], ["https://tec.openplanner.team/stops/LVAakke1", "https://tec.openplanner.team/stops/LVAakke2"], ["https://tec.openplanner.team/stops/LrOwahl1", "https://tec.openplanner.team/stops/LwR129-2"], ["https://tec.openplanner.team/stops/LBvnico1", "https://tec.openplanner.team/stops/LLiforg1"], ["https://tec.openplanner.team/stops/Bwatmgo3", "https://tec.openplanner.team/stops/Bwatvco2"], ["https://tec.openplanner.team/stops/X614aqa", "https://tec.openplanner.team/stops/X614aza"], ["https://tec.openplanner.team/stops/LCFcafe1", "https://tec.openplanner.team/stops/LCFcafe2"], ["https://tec.openplanner.team/stops/N525ata", "https://tec.openplanner.team/stops/N526aba"], ["https://tec.openplanner.team/stops/Cci22ao1", "https://tec.openplanner.team/stops/Cciarfr1"], ["https://tec.openplanner.team/stops/LON21--1", "https://tec.openplanner.team/stops/Lthfagn1"], ["https://tec.openplanner.team/stops/LHrreal1", "https://tec.openplanner.team/stops/LHseg--2"], ["https://tec.openplanner.team/stops/X805aaa", "https://tec.openplanner.team/stops/X805aab"], ["https://tec.openplanner.team/stops/Cjuaero4", "https://tec.openplanner.team/stops/Cjuapca2"], ["https://tec.openplanner.team/stops/H5at132a", "https://tec.openplanner.team/stops/H5at137b"], ["https://tec.openplanner.team/stops/N542aib", "https://tec.openplanner.team/stops/N542aob"], ["https://tec.openplanner.team/stops/H4er123a", "https://tec.openplanner.team/stops/H4er125a"], ["https://tec.openplanner.team/stops/LHTbeau2", "https://tec.openplanner.team/stops/LHThall3"], ["https://tec.openplanner.team/stops/X982bab", "https://tec.openplanner.team/stops/X996ada"], ["https://tec.openplanner.team/stops/H4hx123a", "https://tec.openplanner.team/stops/H4hx123b"], ["https://tec.openplanner.team/stops/N569aia", "https://tec.openplanner.team/stops/N569aib"], ["https://tec.openplanner.team/stops/H1qu103a", "https://tec.openplanner.team/stops/H1qu103b"], ["https://tec.openplanner.team/stops/Clrcomb2", "https://tec.openplanner.team/stops/Clrhava1"], ["https://tec.openplanner.team/stops/N509ava", "https://tec.openplanner.team/stops/N509avb"], ["https://tec.openplanner.team/stops/X685afb", "https://tec.openplanner.team/stops/X688aaa"], ["https://tec.openplanner.team/stops/LSOathe1", "https://tec.openplanner.team/stops/LSOfech2"], ["https://tec.openplanner.team/stops/LOrchau1", "https://tec.openplanner.team/stops/LOrpont1"], ["https://tec.openplanner.team/stops/N385aca", "https://tec.openplanner.team/stops/N385acb"], ["https://tec.openplanner.team/stops/X361aab", "https://tec.openplanner.team/stops/X361aba"], ["https://tec.openplanner.team/stops/X921agb", "https://tec.openplanner.team/stops/X921aha"], ["https://tec.openplanner.team/stops/Lgrbonn6", "https://tec.openplanner.team/stops/Llgsimo1"], ["https://tec.openplanner.team/stops/Bnivari1", "https://tec.openplanner.team/stops/Bnivari2"], ["https://tec.openplanner.team/stops/N117ata", "https://tec.openplanner.team/stops/N569aib"], ["https://tec.openplanner.team/stops/X759aeb", "https://tec.openplanner.team/stops/X837adb"], ["https://tec.openplanner.team/stops/LhGfl241", "https://tec.openplanner.team/stops/LkEschi2"], ["https://tec.openplanner.team/stops/Brebpca2", "https://tec.openplanner.team/stops/Brebrog1"], ["https://tec.openplanner.team/stops/LSuusin2", "https://tec.openplanner.team/stops/Lvepoud2"], ["https://tec.openplanner.team/stops/Clcfall1", "https://tec.openplanner.team/stops/Csschat1"], ["https://tec.openplanner.team/stops/LTgchar8", "https://tec.openplanner.team/stops/LTgvill2"], ["https://tec.openplanner.team/stops/H4ab103a", "https://tec.openplanner.team/stops/H5ma181b"], ["https://tec.openplanner.team/stops/X717aaa", "https://tec.openplanner.team/stops/X718aab"], ["https://tec.openplanner.team/stops/LDaeg--1", "https://tec.openplanner.team/stops/LDapota1"], ["https://tec.openplanner.team/stops/H5el100b", "https://tec.openplanner.team/stops/H5fl103a"], ["https://tec.openplanner.team/stops/N543bpa", "https://tec.openplanner.team/stops/N543bpc"], ["https://tec.openplanner.team/stops/X882aca", "https://tec.openplanner.team/stops/X882acb"], ["https://tec.openplanner.team/stops/H4ce108a", "https://tec.openplanner.team/stops/H4ve132a"], ["https://tec.openplanner.team/stops/LGeduc-1", "https://tec.openplanner.team/stops/LGefron2"], ["https://tec.openplanner.team/stops/H4ne135b", "https://tec.openplanner.team/stops/H4te248a"], ["https://tec.openplanner.team/stops/N308ala", "https://tec.openplanner.team/stops/N308bab"], ["https://tec.openplanner.team/stops/Cragoss1", "https://tec.openplanner.team/stops/Cragoss2"], ["https://tec.openplanner.team/stops/Cflecep1", "https://tec.openplanner.team/stops/Cflstan3"], ["https://tec.openplanner.team/stops/H1mb138b", "https://tec.openplanner.team/stops/H1mb168b"], ["https://tec.openplanner.team/stops/Bcbqh451", "https://tec.openplanner.team/stops/Bcbqp251"], ["https://tec.openplanner.team/stops/X661aca", "https://tec.openplanner.team/stops/X661azb"], ["https://tec.openplanner.team/stops/Cgzdeve1", "https://tec.openplanner.team/stops/Clrrhau1"], ["https://tec.openplanner.team/stops/LPbover1", "https://tec.openplanner.team/stops/LVkchap1"], ["https://tec.openplanner.team/stops/Brsgcfl1", "https://tec.openplanner.team/stops/Brsgfso1"], ["https://tec.openplanner.team/stops/Lseboia2", "https://tec.openplanner.team/stops/Lsepudd1"], ["https://tec.openplanner.team/stops/Lprfoot1", "https://tec.openplanner.team/stops/Lprtour2"], ["https://tec.openplanner.team/stops/Bblahop1", "https://tec.openplanner.team/stops/Bblaljo1"], ["https://tec.openplanner.team/stops/N383aba", "https://tec.openplanner.team/stops/N383abb"], ["https://tec.openplanner.team/stops/LsVeite2", "https://tec.openplanner.team/stops/LsVprum1"], ["https://tec.openplanner.team/stops/Bbiehss1", "https://tec.openplanner.team/stops/Bptbsar2"], ["https://tec.openplanner.team/stops/H1br134b", "https://tec.openplanner.team/stops/H2ma264a"], ["https://tec.openplanner.team/stops/X801amb", "https://tec.openplanner.team/stops/X899aib"], ["https://tec.openplanner.team/stops/LHrchat1", "https://tec.openplanner.team/stops/LHrchat2"], ["https://tec.openplanner.team/stops/Lsekubo1", "https://tec.openplanner.team/stops/Lsekubo2"], ["https://tec.openplanner.team/stops/X948acb", "https://tec.openplanner.team/stops/X948ada"], ["https://tec.openplanner.team/stops/LHbcent1", "https://tec.openplanner.team/stops/LJAboli2"], ["https://tec.openplanner.team/stops/N501aqa", "https://tec.openplanner.team/stops/N501cda"], ["https://tec.openplanner.team/stops/X911aka", "https://tec.openplanner.team/stops/X911amb"], ["https://tec.openplanner.team/stops/LWNcime1", "https://tec.openplanner.team/stops/LWNcime2"], ["https://tec.openplanner.team/stops/H2na132b", "https://tec.openplanner.team/stops/H2na134b"], ["https://tec.openplanner.team/stops/Cforepo1", "https://tec.openplanner.team/stops/Cforpet1"], ["https://tec.openplanner.team/stops/Cgxfo142", "https://tec.openplanner.team/stops/Cgxvvel1"], ["https://tec.openplanner.team/stops/X779acb", "https://tec.openplanner.team/stops/X779adb"], ["https://tec.openplanner.team/stops/Bblarbe1", "https://tec.openplanner.team/stops/Bblavba2"], ["https://tec.openplanner.team/stops/Ccuplai1", "https://tec.openplanner.team/stops/Cgysarr1"], ["https://tec.openplanner.team/stops/Bnivchh2", "https://tec.openplanner.team/stops/Bnivfhu2"], ["https://tec.openplanner.team/stops/Cgncail1", "https://tec.openplanner.team/stops/Clproi1"], ["https://tec.openplanner.team/stops/N577aba", "https://tec.openplanner.team/stops/N577abb"], ["https://tec.openplanner.team/stops/LBPxhav2", "https://tec.openplanner.team/stops/LFsec--1"], ["https://tec.openplanner.team/stops/Bgemgjo1", "https://tec.openplanner.team/stops/Bgemgjo2"], ["https://tec.openplanner.team/stops/H2bh107b", "https://tec.openplanner.team/stops/H2jo161d"], ["https://tec.openplanner.team/stops/LhEtivo2", "https://tec.openplanner.team/stops/LWEgend1"], ["https://tec.openplanner.team/stops/Bcrbbou1", "https://tec.openplanner.team/stops/Bcrbmsg2"], ["https://tec.openplanner.team/stops/Lendonh1", "https://tec.openplanner.team/stops/Lendonh2"], ["https://tec.openplanner.team/stops/N135axb", "https://tec.openplanner.team/stops/N135bgb"], ["https://tec.openplanner.team/stops/X601bia", "https://tec.openplanner.team/stops/X601bwa"], ["https://tec.openplanner.team/stops/LBApak2*", "https://tec.openplanner.team/stops/LETsaiv1"], ["https://tec.openplanner.team/stops/Becepco1", "https://tec.openplanner.team/stops/H2mi124a"], ["https://tec.openplanner.team/stops/X948atb", "https://tec.openplanner.team/stops/X948awa"], ["https://tec.openplanner.team/stops/X622aab", "https://tec.openplanner.team/stops/X622aba"], ["https://tec.openplanner.team/stops/H1gi119a", "https://tec.openplanner.team/stops/H1gi121a"], ["https://tec.openplanner.team/stops/Blingar1", "https://tec.openplanner.team/stops/Blingar2"], ["https://tec.openplanner.team/stops/H1eq115b", "https://tec.openplanner.team/stops/H1fy142a"], ["https://tec.openplanner.team/stops/N127aca", "https://tec.openplanner.team/stops/N127acb"], ["https://tec.openplanner.team/stops/N501ajb", "https://tec.openplanner.team/stops/N501bdb"], ["https://tec.openplanner.team/stops/N357aca", "https://tec.openplanner.team/stops/N357aea"], ["https://tec.openplanner.team/stops/LFsherm1", "https://tec.openplanner.team/stops/LSLabba1"], ["https://tec.openplanner.team/stops/Cjufrat2", "https://tec.openplanner.team/stops/Cjuphil2"], ["https://tec.openplanner.team/stops/LPLcarr1", "https://tec.openplanner.team/stops/LPLcarr3"], ["https://tec.openplanner.team/stops/Llgrema1", "https://tec.openplanner.team/stops/Llgrema2"], ["https://tec.openplanner.team/stops/X750abb", "https://tec.openplanner.team/stops/X750aca"], ["https://tec.openplanner.team/stops/Lagmoli2", "https://tec.openplanner.team/stops/Llggram3"], ["https://tec.openplanner.team/stops/Csycant1", "https://tec.openplanner.team/stops/Csygare4"], ["https://tec.openplanner.team/stops/LWDchpl2", "https://tec.openplanner.team/stops/LWDmass1"], ["https://tec.openplanner.team/stops/N132acb", "https://tec.openplanner.team/stops/N135abb"], ["https://tec.openplanner.team/stops/LHAprei1", "https://tec.openplanner.team/stops/LVIsouv3"], ["https://tec.openplanner.team/stops/LCFchir1", "https://tec.openplanner.team/stops/LCTfair1"], ["https://tec.openplanner.team/stops/LCsjone1", "https://tec.openplanner.team/stops/LCsjone2"], ["https://tec.openplanner.team/stops/LWDhous1", "https://tec.openplanner.team/stops/LWDhous2"], ["https://tec.openplanner.team/stops/LBTcarr1", "https://tec.openplanner.team/stops/LBTfoot2"], ["https://tec.openplanner.team/stops/Bhmmcha1", "https://tec.openplanner.team/stops/Bhmmcha2"], ["https://tec.openplanner.team/stops/Bottgar1", "https://tec.openplanner.team/stops/Bottgar2"], ["https://tec.openplanner.team/stops/N569aab", "https://tec.openplanner.team/stops/N569acb"], ["https://tec.openplanner.team/stops/X362aca", "https://tec.openplanner.team/stops/X362adb"], ["https://tec.openplanner.team/stops/LWbboeg1", "https://tec.openplanner.team/stops/X595aad"], ["https://tec.openplanner.team/stops/X901aga", "https://tec.openplanner.team/stops/X902bba"], ["https://tec.openplanner.team/stops/LFFchab2", "https://tec.openplanner.team/stops/LVLsabl2"], ["https://tec.openplanner.team/stops/LVLf37-2", "https://tec.openplanner.team/stops/LVLsabl2"], ["https://tec.openplanner.team/stops/N308agb", "https://tec.openplanner.team/stops/N308ahb"], ["https://tec.openplanner.team/stops/X858aha", "https://tec.openplanner.team/stops/X858ahb"], ["https://tec.openplanner.team/stops/Becebju1", "https://tec.openplanner.team/stops/Beceres1"], ["https://tec.openplanner.team/stops/Lcealig2", "https://tec.openplanner.team/stops/Lcewilm2"], ["https://tec.openplanner.team/stops/LFFchal2", "https://tec.openplanner.team/stops/LVLsabl2"], ["https://tec.openplanner.team/stops/LVIeg--4", "https://tec.openplanner.team/stops/LVIsacr1"], ["https://tec.openplanner.team/stops/Cmtmoul1", "https://tec.openplanner.team/stops/Cmttkai1"], ["https://tec.openplanner.team/stops/X939aaa", "https://tec.openplanner.team/stops/X939abb"], ["https://tec.openplanner.team/stops/H1ho147a", "https://tec.openplanner.team/stops/H1pd143a"], ["https://tec.openplanner.team/stops/H4rm107b", "https://tec.openplanner.team/stops/H4ta120a"], ["https://tec.openplanner.team/stops/Bnivmat1", "https://tec.openplanner.team/stops/Bnivsci1"], ["https://tec.openplanner.team/stops/N501cyb", "https://tec.openplanner.team/stops/N528aha"], ["https://tec.openplanner.team/stops/LCF1spa2", "https://tec.openplanner.team/stops/LVnflox2"], ["https://tec.openplanner.team/stops/Llgcroi4", "https://tec.openplanner.team/stops/Llgptlo1"], ["https://tec.openplanner.team/stops/LMeeg--1", "https://tec.openplanner.team/stops/LMeperk2"], ["https://tec.openplanner.team/stops/X919abb", "https://tec.openplanner.team/stops/X921ada"], ["https://tec.openplanner.team/stops/N573apa", "https://tec.openplanner.team/stops/N573aqa"], ["https://tec.openplanner.team/stops/Ladotto2", "https://tec.openplanner.team/stops/Ladppir1"], ["https://tec.openplanner.team/stops/Bbeapim1", "https://tec.openplanner.team/stops/Bbeapim2"], ["https://tec.openplanner.team/stops/LVsboug2", "https://tec.openplanner.team/stops/NL57aib"], ["https://tec.openplanner.team/stops/Cfanoci1", "https://tec.openplanner.team/stops/Cfaplma1"], ["https://tec.openplanner.team/stops/Ccugend1", "https://tec.openplanner.team/stops/Ccupbro2"], ["https://tec.openplanner.team/stops/X793aba", "https://tec.openplanner.team/stops/X793aeb"], ["https://tec.openplanner.team/stops/LNCchev1", "https://tec.openplanner.team/stops/LNCgene2"], ["https://tec.openplanner.team/stops/LdUespe1", "https://tec.openplanner.team/stops/LdUespe2"], ["https://tec.openplanner.team/stops/LMNgare1", "https://tec.openplanner.team/stops/LMNgare2"], ["https://tec.openplanner.team/stops/X801ahb", "https://tec.openplanner.team/stops/X801aia"], ["https://tec.openplanner.team/stops/H5fl104b", "https://tec.openplanner.team/stops/H5wo124b"], ["https://tec.openplanner.team/stops/X925aga", "https://tec.openplanner.team/stops/X925aka"], ["https://tec.openplanner.team/stops/N204abb", "https://tec.openplanner.team/stops/N204aea"], ["https://tec.openplanner.team/stops/H4ka174b", "https://tec.openplanner.team/stops/H4ka176a"], ["https://tec.openplanner.team/stops/Cbtgemi1", "https://tec.openplanner.team/stops/Cfrcoqu2"], ["https://tec.openplanner.team/stops/Cgyobse1", "https://tec.openplanner.team/stops/Cgyrjau2"], ["https://tec.openplanner.team/stops/N313aba", "https://tec.openplanner.team/stops/N313abb"], ["https://tec.openplanner.team/stops/N551aab", "https://tec.openplanner.team/stops/N551aec"], ["https://tec.openplanner.team/stops/Bquecja1", "https://tec.openplanner.team/stops/Bquecro2"], ["https://tec.openplanner.team/stops/N534aea", "https://tec.openplanner.team/stops/N553aob"], ["https://tec.openplanner.team/stops/X608ava", "https://tec.openplanner.team/stops/X608ayb"], ["https://tec.openplanner.team/stops/NL57alb", "https://tec.openplanner.team/stops/NL57amb"], ["https://tec.openplanner.team/stops/H1mq198b", "https://tec.openplanner.team/stops/H1mq199a"], ["https://tec.openplanner.team/stops/Ccoforr1", "https://tec.openplanner.team/stops/Crocpai1"], ["https://tec.openplanner.team/stops/Cmlpche2", "https://tec.openplanner.team/stops/Cmlstni1"], ["https://tec.openplanner.team/stops/H1ss352a", "https://tec.openplanner.team/stops/H1ss352b"], ["https://tec.openplanner.team/stops/X811alb", "https://tec.openplanner.team/stops/X811ana"], ["https://tec.openplanner.team/stops/Bbcomar1", "https://tec.openplanner.team/stops/Bhenrcr1"], ["https://tec.openplanner.team/stops/X601boa", "https://tec.openplanner.team/stops/X601dda"], ["https://tec.openplanner.team/stops/LwYboui2", "https://tec.openplanner.team/stops/LwYcafe2"], ["https://tec.openplanner.team/stops/X663acb", "https://tec.openplanner.team/stops/X663ada"], ["https://tec.openplanner.team/stops/N551aia", "https://tec.openplanner.team/stops/N551aib"], ["https://tec.openplanner.team/stops/LrEfeck2", "https://tec.openplanner.team/stops/LrErauw1"], ["https://tec.openplanner.team/stops/H4am113a", "https://tec.openplanner.team/stops/H4am113b"], ["https://tec.openplanner.team/stops/Bniveco1", "https://tec.openplanner.team/stops/Bnivmet2"], ["https://tec.openplanner.team/stops/Cprvill1", "https://tec.openplanner.team/stops/NC11anb"], ["https://tec.openplanner.team/stops/Clpalli1", "https://tec.openplanner.team/stops/Clpalli2"], ["https://tec.openplanner.team/stops/LWDsott2", "https://tec.openplanner.team/stops/LWDsott3"], ["https://tec.openplanner.team/stops/Bllnhoc1", "https://tec.openplanner.team/stops/Bottcva2"], ["https://tec.openplanner.team/stops/Ltiecch2", "https://tec.openplanner.team/stops/Ltihorl2"], ["https://tec.openplanner.team/stops/N141aaa", "https://tec.openplanner.team/stops/N426afb"], ["https://tec.openplanner.team/stops/H1gr112b", "https://tec.openplanner.team/stops/H1gr123d"], ["https://tec.openplanner.team/stops/Lhrsimo1", "https://tec.openplanner.team/stops/Lhrsimo2"], ["https://tec.openplanner.team/stops/N579aab", "https://tec.openplanner.team/stops/N580adb"], ["https://tec.openplanner.team/stops/X652afa", "https://tec.openplanner.team/stops/X652afc"], ["https://tec.openplanner.team/stops/Lsecris2", "https://tec.openplanner.team/stops/Lsefive2"], ["https://tec.openplanner.team/stops/LBAtign2", "https://tec.openplanner.team/stops/LSAchef2"], ["https://tec.openplanner.team/stops/LVlleno1", "https://tec.openplanner.team/stops/LVlroua4"], ["https://tec.openplanner.team/stops/Csschat1", "https://tec.openplanner.team/stops/Csschat2"], ["https://tec.openplanner.team/stops/N512aia", "https://tec.openplanner.team/stops/N512aob"], ["https://tec.openplanner.team/stops/Bixlfla1", "https://tec.openplanner.team/stops/Bixlpat2"], ["https://tec.openplanner.team/stops/Bfelpmo1", "https://tec.openplanner.team/stops/Bfelpmo2"], ["https://tec.openplanner.team/stops/H1hn363b", "https://tec.openplanner.team/stops/H1hn364a"], ["https://tec.openplanner.team/stops/LTErest1", "https://tec.openplanner.team/stops/LTErest2"], ["https://tec.openplanner.team/stops/H1ms269a", "https://tec.openplanner.team/stops/H1ms269b"], ["https://tec.openplanner.team/stops/Cmerlme1", "https://tec.openplanner.team/stops/Cvpcour1"], ["https://tec.openplanner.team/stops/H4mv194a", "https://tec.openplanner.team/stops/H4mv194b"], ["https://tec.openplanner.team/stops/Cplrond1", "https://tec.openplanner.team/stops/Cplrond2"], ["https://tec.openplanner.team/stops/H1hc127a", "https://tec.openplanner.team/stops/H1hc151b"], ["https://tec.openplanner.team/stops/LeUmeye1", "https://tec.openplanner.team/stops/LeUmeye2"], ["https://tec.openplanner.team/stops/Lemdieu1", "https://tec.openplanner.team/stops/Lemdieu2"], ["https://tec.openplanner.team/stops/Llgboux2", "https://tec.openplanner.team/stops/Llgherm2"], ["https://tec.openplanner.team/stops/X717aab", "https://tec.openplanner.team/stops/X717aea"], ["https://tec.openplanner.team/stops/N501bfa", "https://tec.openplanner.team/stops/N501nbb"], ["https://tec.openplanner.team/stops/X774abb", "https://tec.openplanner.team/stops/X774aca"], ["https://tec.openplanner.team/stops/H1ev113b", "https://tec.openplanner.team/stops/H1ev116a"], ["https://tec.openplanner.team/stops/Ljubois1", "https://tec.openplanner.team/stops/Ljuprev1"], ["https://tec.openplanner.team/stops/H4ar177a", "https://tec.openplanner.team/stops/H4pl136a"], ["https://tec.openplanner.team/stops/H1br121b", "https://tec.openplanner.team/stops/H1br127a"], ["https://tec.openplanner.team/stops/Bgembhe1", "https://tec.openplanner.team/stops/N576ada"], ["https://tec.openplanner.team/stops/N226aaa", "https://tec.openplanner.team/stops/N226aca"], ["https://tec.openplanner.team/stops/LHEclef1", "https://tec.openplanner.team/stops/LHEjose2"], ["https://tec.openplanner.team/stops/Bnetrec1", "https://tec.openplanner.team/stops/Bnetrec2"], ["https://tec.openplanner.team/stops/Bclgmev1", "https://tec.openplanner.team/stops/Bllnlb51"], ["https://tec.openplanner.team/stops/H4cw105a", "https://tec.openplanner.team/stops/H4lz163a"], ["https://tec.openplanner.team/stops/Lhurigu2", "https://tec.openplanner.team/stops/Lmnhorl2"], ["https://tec.openplanner.team/stops/LMAalli1", "https://tec.openplanner.team/stops/LMAalli2"], ["https://tec.openplanner.team/stops/Lousite2", "https://tec.openplanner.team/stops/Lousite3"], ["https://tec.openplanner.team/stops/H2bh105b", "https://tec.openplanner.team/stops/H2bh115b"], ["https://tec.openplanner.team/stops/LHueg--2", "https://tec.openplanner.team/stops/LHumoul1"], ["https://tec.openplanner.team/stops/X637aoa", "https://tec.openplanner.team/stops/X650anb"], ["https://tec.openplanner.team/stops/N513anb", "https://tec.openplanner.team/stops/N513axb"], ["https://tec.openplanner.team/stops/Lcaboun3", "https://tec.openplanner.team/stops/LPReg--1"], ["https://tec.openplanner.team/stops/H2ll178d", "https://tec.openplanner.team/stops/H2ll258a"], ["https://tec.openplanner.team/stops/Cgzlera1", "https://tec.openplanner.team/stops/Cmyrays1"], ["https://tec.openplanner.team/stops/LXoeg--4", "https://tec.openplanner.team/stops/LXopeti1"], ["https://tec.openplanner.team/stops/X908aba", "https://tec.openplanner.team/stops/X908ada"], ["https://tec.openplanner.team/stops/N118avb", "https://tec.openplanner.team/stops/N118avc"], ["https://tec.openplanner.team/stops/Lbocond2", "https://tec.openplanner.team/stops/LESmagr2"], ["https://tec.openplanner.team/stops/LBEmich2", "https://tec.openplanner.team/stops/LDLheid2"], ["https://tec.openplanner.team/stops/Cmlpomm1", "https://tec.openplanner.team/stops/Cmlpomm2"], ["https://tec.openplanner.team/stops/X664asa", "https://tec.openplanner.team/stops/X667aaa"], ["https://tec.openplanner.team/stops/Lcchala1", "https://tec.openplanner.team/stops/Lfhhoul2"], ["https://tec.openplanner.team/stops/LJAdeho1", "https://tec.openplanner.team/stops/LJAdeho3"], ["https://tec.openplanner.team/stops/Cplbbro1", "https://tec.openplanner.team/stops/Cpljonc2"], ["https://tec.openplanner.team/stops/H5rx102b", "https://tec.openplanner.team/stops/H5rx130b"], ["https://tec.openplanner.team/stops/H1cd111d", "https://tec.openplanner.team/stops/H1hr126a"], ["https://tec.openplanner.team/stops/Ladppir1", "https://tec.openplanner.team/stops/Lvehomb2"], ["https://tec.openplanner.team/stops/LAnfall2", "https://tec.openplanner.team/stops/LVtchai2"], ["https://tec.openplanner.team/stops/Cmtstan3", "https://tec.openplanner.team/stops/Cmttrie1"], ["https://tec.openplanner.team/stops/H1wa146a", "https://tec.openplanner.team/stops/H1wa152a"], ["https://tec.openplanner.team/stops/N522abd", "https://tec.openplanner.team/stops/N522ala"], ["https://tec.openplanner.team/stops/Cctrobe1", "https://tec.openplanner.team/stops/NC02agc"], ["https://tec.openplanner.team/stops/LBEairp1", "https://tec.openplanner.team/stops/LTIchev1"], ["https://tec.openplanner.team/stops/LBNeu712", "https://tec.openplanner.team/stops/LBNeup21"], ["https://tec.openplanner.team/stops/H1le121a", "https://tec.openplanner.team/stops/H1le122a"], ["https://tec.openplanner.team/stops/N538aga", "https://tec.openplanner.team/stops/N538aub"], ["https://tec.openplanner.team/stops/Bmalcar1", "https://tec.openplanner.team/stops/Bsrbtil2"], ["https://tec.openplanner.team/stops/Bmartil2", "https://tec.openplanner.team/stops/Csdbosq2"], ["https://tec.openplanner.team/stops/H1gh155b", "https://tec.openplanner.team/stops/H1gh158b"], ["https://tec.openplanner.team/stops/LFehaut1", "https://tec.openplanner.team/stops/LFethie1"], ["https://tec.openplanner.team/stops/H4tu170b", "https://tec.openplanner.team/stops/H4tu171a"], ["https://tec.openplanner.team/stops/N313adb", "https://tec.openplanner.team/stops/N313aeb"], ["https://tec.openplanner.team/stops/Lrcvinc1", "https://tec.openplanner.team/stops/Lvoec--1"], ["https://tec.openplanner.team/stops/X601cxa", "https://tec.openplanner.team/stops/X601cya"], ["https://tec.openplanner.team/stops/Cbiferm2", "https://tec.openplanner.team/stops/Cthbifu1"], ["https://tec.openplanner.team/stops/H1et100b", "https://tec.openplanner.team/stops/H1et102a"], ["https://tec.openplanner.team/stops/LbOhoff2", "https://tec.openplanner.team/stops/LmDhoch1"], ["https://tec.openplanner.team/stops/Lmlchev1", "https://tec.openplanner.team/stops/Lmlguis2"], ["https://tec.openplanner.team/stops/N533aeb", "https://tec.openplanner.team/stops/N551afb"], ["https://tec.openplanner.team/stops/X719aea", "https://tec.openplanner.team/stops/X719aeb"], ["https://tec.openplanner.team/stops/LBCtros2", "https://tec.openplanner.team/stops/LMTvill1"], ["https://tec.openplanner.team/stops/Cbmvalt2", "https://tec.openplanner.team/stops/H1tt104b"], ["https://tec.openplanner.team/stops/N235aea", "https://tec.openplanner.team/stops/N241adb"], ["https://tec.openplanner.team/stops/Bblaegl1", "https://tec.openplanner.team/stops/Bblaphi1"], ["https://tec.openplanner.team/stops/Candett1", "https://tec.openplanner.team/stops/H2an103b"], ["https://tec.openplanner.team/stops/LBscime2", "https://tec.openplanner.team/stops/LBseg--1"], ["https://tec.openplanner.team/stops/X837aeb", "https://tec.openplanner.team/stops/X837afa"], ["https://tec.openplanner.team/stops/H1wz170a", "https://tec.openplanner.team/stops/H1wz171a"], ["https://tec.openplanner.team/stops/H4rc231b", "https://tec.openplanner.team/stops/H4rc232d"], ["https://tec.openplanner.team/stops/X896aeb", "https://tec.openplanner.team/stops/X896afa"], ["https://tec.openplanner.team/stops/X614bcb", "https://tec.openplanner.team/stops/X614bdb"], ["https://tec.openplanner.team/stops/H1sb150b", "https://tec.openplanner.team/stops/H1sb151b"], ["https://tec.openplanner.team/stops/LBPboir2", "https://tec.openplanner.team/stops/LRGile-1"], ["https://tec.openplanner.team/stops/Lgdhall*", "https://tec.openplanner.team/stops/Lgdrena2"], ["https://tec.openplanner.team/stops/LHCcoul1", "https://tec.openplanner.team/stops/LSuusin1"], ["https://tec.openplanner.team/stops/X661axa", "https://tec.openplanner.team/stops/X661axc"], ["https://tec.openplanner.team/stops/H1hh110b", "https://tec.openplanner.team/stops/H1hh111b"], ["https://tec.openplanner.team/stops/LBNvilv1", "https://tec.openplanner.team/stops/LBNvilv2"], ["https://tec.openplanner.team/stops/LMHmeha2", "https://tec.openplanner.team/stops/LMHtill1"], ["https://tec.openplanner.team/stops/H1hb197a", "https://tec.openplanner.team/stops/H1ht122b"], ["https://tec.openplanner.team/stops/X617aca", "https://tec.openplanner.team/stops/X617aga"], ["https://tec.openplanner.team/stops/Crapaep2", "https://tec.openplanner.team/stops/Crasabl2"], ["https://tec.openplanner.team/stops/H4og214b", "https://tec.openplanner.team/stops/H4og215b"], ["https://tec.openplanner.team/stops/LTBeg--1", "https://tec.openplanner.team/stops/X714aab"], ["https://tec.openplanner.team/stops/N535amc", "https://tec.openplanner.team/stops/N535amd"], ["https://tec.openplanner.team/stops/N543bya", "https://tec.openplanner.team/stops/N566aeb"], ["https://tec.openplanner.team/stops/N423aea", "https://tec.openplanner.team/stops/N423aeb"], ["https://tec.openplanner.team/stops/X636aza", "https://tec.openplanner.team/stops/X636bfb"], ["https://tec.openplanner.team/stops/Cmg4bra1", "https://tec.openplanner.team/stops/Cmgcabi2"], ["https://tec.openplanner.team/stops/LMAhall2", "https://tec.openplanner.team/stops/LMApape2"], ["https://tec.openplanner.team/stops/LTychev1", "https://tec.openplanner.team/stops/LTychev2"], ["https://tec.openplanner.team/stops/X910aea", "https://tec.openplanner.team/stops/X910agb"], ["https://tec.openplanner.team/stops/N537abb", "https://tec.openplanner.team/stops/N537ajb"], ["https://tec.openplanner.team/stops/N212aka", "https://tec.openplanner.team/stops/N225ahb"], ["https://tec.openplanner.team/stops/N512afb", "https://tec.openplanner.team/stops/N512ahb"], ["https://tec.openplanner.team/stops/H1mb129b", "https://tec.openplanner.team/stops/H1ro131b"], ["https://tec.openplanner.team/stops/X995afa", "https://tec.openplanner.team/stops/X995aga"], ["https://tec.openplanner.team/stops/Cfaeclu2", "https://tec.openplanner.team/stops/Cfasamb2"], ["https://tec.openplanner.team/stops/Bottath1", "https://tec.openplanner.team/stops/Bottgar2"], ["https://tec.openplanner.team/stops/LAmab751", "https://tec.openplanner.team/stops/LATguis2"], ["https://tec.openplanner.team/stops/X908afb", "https://tec.openplanner.team/stops/X911aaa"], ["https://tec.openplanner.team/stops/X790abb", "https://tec.openplanner.team/stops/X790agb"], ["https://tec.openplanner.team/stops/Blthwav1", "https://tec.openplanner.team/stops/Bmlnegl1"], ["https://tec.openplanner.team/stops/H1hy125b", "https://tec.openplanner.team/stops/H1hy126b"], ["https://tec.openplanner.team/stops/H1bs112a", "https://tec.openplanner.team/stops/H1sb146a"], ["https://tec.openplanner.team/stops/Lsmeg--1", "https://tec.openplanner.team/stops/Lveinva2"], ["https://tec.openplanner.team/stops/Cgylami1", "https://tec.openplanner.team/stops/Cgynuto1"], ["https://tec.openplanner.team/stops/N501gza", "https://tec.openplanner.team/stops/N501hla"], ["https://tec.openplanner.team/stops/X994aba", "https://tec.openplanner.team/stops/X994aea"], ["https://tec.openplanner.team/stops/N531aha", "https://tec.openplanner.team/stops/N576aia"], ["https://tec.openplanner.team/stops/X923aqb", "https://tec.openplanner.team/stops/X923ara"], ["https://tec.openplanner.team/stops/X983aea", "https://tec.openplanner.team/stops/X996aha"], ["https://tec.openplanner.team/stops/H1hr116b", "https://tec.openplanner.team/stops/H1hv130b"], ["https://tec.openplanner.team/stops/LmI129-1", "https://tec.openplanner.team/stops/LmIcafe1"], ["https://tec.openplanner.team/stops/H1pd145a", "https://tec.openplanner.team/stops/H1pd146a"], ["https://tec.openplanner.team/stops/X897alc", "https://tec.openplanner.team/stops/X897aub"], ["https://tec.openplanner.team/stops/LMforba2", "https://tec.openplanner.team/stops/LMfpeni*"], ["https://tec.openplanner.team/stops/LJEerno2", "https://tec.openplanner.team/stops/LJEloum2"], ["https://tec.openplanner.team/stops/Clusncb4", "https://tec.openplanner.team/stops/Cpcwaut1"], ["https://tec.openplanner.team/stops/N501hta", "https://tec.openplanner.team/stops/N501htb"], ["https://tec.openplanner.team/stops/Bhevjal1", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://tec.openplanner.team/stops/LRuegli2", "https://tec.openplanner.team/stops/LSemc--4"], ["https://tec.openplanner.team/stops/H4ha167a", "https://tec.openplanner.team/stops/H4ru235a"], ["https://tec.openplanner.team/stops/N211agb", "https://tec.openplanner.team/stops/N211awa"], ["https://tec.openplanner.team/stops/H4he106a", "https://tec.openplanner.team/stops/H4he106b"], ["https://tec.openplanner.team/stops/Llmcomb1", "https://tec.openplanner.team/stops/Llmvill2"], ["https://tec.openplanner.team/stops/Cnadepo2", "https://tec.openplanner.team/stops/Cnarmon1"], ["https://tec.openplanner.team/stops/X796aca", "https://tec.openplanner.team/stops/X986aga"], ["https://tec.openplanner.team/stops/X954aba", "https://tec.openplanner.team/stops/X954acb"], ["https://tec.openplanner.team/stops/H4bq100c", "https://tec.openplanner.team/stops/H4mb205b"], ["https://tec.openplanner.team/stops/N357aaa", "https://tec.openplanner.team/stops/N357aab"], ["https://tec.openplanner.team/stops/H4rm112a", "https://tec.openplanner.team/stops/H4rm112b"], ["https://tec.openplanner.team/stops/X770abb", "https://tec.openplanner.team/stops/X770ada"], ["https://tec.openplanner.team/stops/Bpecvme1", "https://tec.openplanner.team/stops/Bpecvme2"], ["https://tec.openplanner.team/stops/X991ala", "https://tec.openplanner.team/stops/X991alb"], ["https://tec.openplanner.team/stops/H4te249a", "https://tec.openplanner.team/stops/H4te413a"], ["https://tec.openplanner.team/stops/LLmeg--1", "https://tec.openplanner.team/stops/LLmvand1"], ["https://tec.openplanner.team/stops/Lbocime1", "https://tec.openplanner.team/stops/Lbocruc1"], ["https://tec.openplanner.team/stops/X801aca", "https://tec.openplanner.team/stops/X802aua"], ["https://tec.openplanner.team/stops/H2hg271a", "https://tec.openplanner.team/stops/H2ll198b"], ["https://tec.openplanner.team/stops/H4ga151a", "https://tec.openplanner.team/stops/H4vz371b"], ["https://tec.openplanner.team/stops/X994aka", "https://tec.openplanner.team/stops/X995aca"], ["https://tec.openplanner.team/stops/Bhaless1", "https://tec.openplanner.team/stops/Bhalomo2"], ["https://tec.openplanner.team/stops/Lhehoux1", "https://tec.openplanner.team/stops/Lheneuv4"], ["https://tec.openplanner.team/stops/N230ala", "https://tec.openplanner.team/stops/N234aba"], ["https://tec.openplanner.team/stops/Clomakr1", "https://tec.openplanner.team/stops/Clomari4"], ["https://tec.openplanner.team/stops/LWahetr1", "https://tec.openplanner.team/stops/LWalyce2"], ["https://tec.openplanner.team/stops/H4ta121b", "https://tec.openplanner.team/stops/H4ta134b"], ["https://tec.openplanner.team/stops/N530aba", "https://tec.openplanner.team/stops/N530afa"], ["https://tec.openplanner.team/stops/N149abb", "https://tec.openplanner.team/stops/N149ahb"], ["https://tec.openplanner.team/stops/X354aeb", "https://tec.openplanner.team/stops/X354agb"], ["https://tec.openplanner.team/stops/H4pp121a", "https://tec.openplanner.team/stops/H4pp121b"], ["https://tec.openplanner.team/stops/N501aob", "https://tec.openplanner.team/stops/N501mjc"], ["https://tec.openplanner.team/stops/Bstecal1", "https://tec.openplanner.team/stops/Btubsal1"], ["https://tec.openplanner.team/stops/LtH37c-2", "https://tec.openplanner.team/stops/LtHkirc4"], ["https://tec.openplanner.team/stops/H1ba106a", "https://tec.openplanner.team/stops/H1te173b"], ["https://tec.openplanner.team/stops/Bgrhcen2", "https://tec.openplanner.team/stops/Bgrhche1"], ["https://tec.openplanner.team/stops/X758aab", "https://tec.openplanner.team/stops/X758ahb"], ["https://tec.openplanner.team/stops/LCHgele1", "https://tec.openplanner.team/stops/LCHgele2"], ["https://tec.openplanner.team/stops/X663aub", "https://tec.openplanner.team/stops/X663avb"], ["https://tec.openplanner.team/stops/H1mh113b", "https://tec.openplanner.team/stops/H1mh113c"], ["https://tec.openplanner.team/stops/Bndb4ch1", "https://tec.openplanner.team/stops/Bptbsar1"], ["https://tec.openplanner.team/stops/Cnacout1", "https://tec.openplanner.team/stops/Cnacroc1"], ["https://tec.openplanner.team/stops/X921ala", "https://tec.openplanner.team/stops/X921ara"], ["https://tec.openplanner.team/stops/N513aha", "https://tec.openplanner.team/stops/N513ahb"], ["https://tec.openplanner.team/stops/LrAbe601", "https://tec.openplanner.team/stops/LrAbe961"], ["https://tec.openplanner.team/stops/Bnivfdu1", "https://tec.openplanner.team/stops/Bnivn971"], ["https://tec.openplanner.team/stops/X790aeb", "https://tec.openplanner.team/stops/X790aga"], ["https://tec.openplanner.team/stops/Blhuone1", "https://tec.openplanner.team/stops/Blhupa14"], ["https://tec.openplanner.team/stops/LCxcouv1", "https://tec.openplanner.team/stops/LCxeg--1"], ["https://tec.openplanner.team/stops/LkTgutl1", "https://tec.openplanner.team/stops/LkTraer2"], ["https://tec.openplanner.team/stops/X754ata", "https://tec.openplanner.team/stops/X779ada"], ["https://tec.openplanner.team/stops/N214aga", "https://tec.openplanner.team/stops/N225aaa"], ["https://tec.openplanner.team/stops/Cctbois3", "https://tec.openplanner.team/stops/Ccupays1"], ["https://tec.openplanner.team/stops/X946abb", "https://tec.openplanner.team/stops/X946aca"], ["https://tec.openplanner.team/stops/LNCcedr1", "https://tec.openplanner.team/stops/LNCecdo1"], ["https://tec.openplanner.team/stops/X623abb", "https://tec.openplanner.team/stops/X623ada"], ["https://tec.openplanner.team/stops/X822ala", "https://tec.openplanner.team/stops/X822ana"], ["https://tec.openplanner.team/stops/LmYamel1", "https://tec.openplanner.team/stops/LmYwall2"], ["https://tec.openplanner.team/stops/N577aia", "https://tec.openplanner.team/stops/N577aib"], ["https://tec.openplanner.team/stops/LeIkreu1", "https://tec.openplanner.team/stops/LeIkreu3"], ["https://tec.openplanner.team/stops/LESgran1", "https://tec.openplanner.team/stops/LESslmo2"], ["https://tec.openplanner.team/stops/Cnapair1", "https://tec.openplanner.team/stops/Cnating2"], ["https://tec.openplanner.team/stops/H1wa141a", "https://tec.openplanner.team/stops/H1wa150a"], ["https://tec.openplanner.team/stops/X839aea", "https://tec.openplanner.team/stops/X839aeb"], ["https://tec.openplanner.team/stops/Loucham3", "https://tec.openplanner.team/stops/Loucham4"], ["https://tec.openplanner.team/stops/LjeGRPMB", "https://tec.openplanner.team/stops/LjeGRPMC"], ["https://tec.openplanner.team/stops/N141agb", "https://tec.openplanner.team/stops/N143ada"], ["https://tec.openplanner.team/stops/Cjupui01", "https://tec.openplanner.team/stops/CMpuis1"], ["https://tec.openplanner.team/stops/H1hn202b", "https://tec.openplanner.team/stops/H1hn209b"], ["https://tec.openplanner.team/stops/N501cea", "https://tec.openplanner.team/stops/N521aqb"], ["https://tec.openplanner.team/stops/N520aeb", "https://tec.openplanner.team/stops/N521aoa"], ["https://tec.openplanner.team/stops/LRtcarr1", "https://tec.openplanner.team/stops/LTestat1"], ["https://tec.openplanner.team/stops/Cjufauv2", "https://tec.openplanner.team/stops/Cjuvign1"], ["https://tec.openplanner.team/stops/LWOpier1", "https://tec.openplanner.team/stops/LWOpier2"], ["https://tec.openplanner.team/stops/Bohnbra2", "https://tec.openplanner.team/stops/Bohnrpl1"], ["https://tec.openplanner.team/stops/LLM4rou1", "https://tec.openplanner.team/stops/LLMeg--1"], ["https://tec.openplanner.team/stops/H4hu121b", "https://tec.openplanner.team/stops/H4ld125a"], ["https://tec.openplanner.team/stops/LREgrot3", "https://tec.openplanner.team/stops/LREgrot4"], ["https://tec.openplanner.team/stops/LHodomm1", "https://tec.openplanner.team/stops/LHolone2"], ["https://tec.openplanner.team/stops/Bbxlmid4", "https://tec.openplanner.team/stops/H5el100a"], ["https://tec.openplanner.team/stops/LBafagn2", "https://tec.openplanner.team/stops/LNEpass2"], ["https://tec.openplanner.team/stops/H1te184a", "https://tec.openplanner.team/stops/H1te185b"], ["https://tec.openplanner.team/stops/Cjugohi3", "https://tec.openplanner.team/stops/Cmacoll1"], ["https://tec.openplanner.team/stops/Lhufays1", "https://tec.openplanner.team/stops/Lhujonc2"], ["https://tec.openplanner.team/stops/X941aca", "https://tec.openplanner.team/stops/X941acb"], ["https://tec.openplanner.team/stops/N525ana", "https://tec.openplanner.team/stops/N525aub"], ["https://tec.openplanner.team/stops/H1br120a", "https://tec.openplanner.team/stops/H1em109a"], ["https://tec.openplanner.team/stops/LBpbruy2", "https://tec.openplanner.team/stops/LCAcruc2"], ["https://tec.openplanner.team/stops/N562akb", "https://tec.openplanner.team/stops/N562bmb"], ["https://tec.openplanner.team/stops/X661ala", "https://tec.openplanner.team/stops/X661alb"], ["https://tec.openplanner.team/stops/Bwaunop1", "https://tec.openplanner.team/stops/Bwaunop2"], ["https://tec.openplanner.team/stops/H4wn123b", "https://tec.openplanner.team/stops/H4wn129b"], ["https://tec.openplanner.team/stops/N117bda", "https://tec.openplanner.team/stops/N145aea"], ["https://tec.openplanner.team/stops/H1au111b", "https://tec.openplanner.team/stops/H1fy120a"], ["https://tec.openplanner.team/stops/Bneehou2", "https://tec.openplanner.team/stops/Bneervc2"], ["https://tec.openplanner.team/stops/LeUath%C3%A41", "https://tec.openplanner.team/stops/LeUlasc2"], ["https://tec.openplanner.team/stops/N540apb", "https://tec.openplanner.team/stops/N540arb"], ["https://tec.openplanner.team/stops/Buccfja2", "https://tec.openplanner.team/stops/Buccron1"], ["https://tec.openplanner.team/stops/LrUbahn1", "https://tec.openplanner.team/stops/LrUweve1"], ["https://tec.openplanner.team/stops/LTigera2", "https://tec.openplanner.team/stops/LTiterr2"], ["https://tec.openplanner.team/stops/Loubour2", "https://tec.openplanner.team/stops/Lousite6"], ["https://tec.openplanner.team/stops/Cgygazo8", "https://tec.openplanner.team/stops/Cgylouv2"], ["https://tec.openplanner.team/stops/Ltiecch1", "https://tec.openplanner.team/stops/Ltinico2"], ["https://tec.openplanner.team/stops/X651abb", "https://tec.openplanner.team/stops/X651ada"], ["https://tec.openplanner.team/stops/Brixbou2", "https://tec.openplanner.team/stops/Brixres1"], ["https://tec.openplanner.team/stops/H4fr143a", "https://tec.openplanner.team/stops/H4ma401a"], ["https://tec.openplanner.team/stops/N534bfb", "https://tec.openplanner.team/stops/N534bga"], ["https://tec.openplanner.team/stops/H4ae101b", "https://tec.openplanner.team/stops/H4ef113b"], ["https://tec.openplanner.team/stops/Bnivvai2", "https://tec.openplanner.team/stops/Bthivil3"], ["https://tec.openplanner.team/stops/LVefont1", "https://tec.openplanner.team/stops/LVefont2"], ["https://tec.openplanner.team/stops/LBRmc--1", "https://tec.openplanner.team/stops/LBRmc--2"], ["https://tec.openplanner.team/stops/Bcrbrpb2", "https://tec.openplanner.team/stops/Bcrbtho1"], ["https://tec.openplanner.team/stops/LBAcarr1", "https://tec.openplanner.team/stops/LBAcent1"], ["https://tec.openplanner.team/stops/H4cl112b", "https://tec.openplanner.team/stops/H4ga154a"], ["https://tec.openplanner.team/stops/Ljeblum1", "https://tec.openplanner.team/stops/Ljemeca1"], ["https://tec.openplanner.team/stops/Lghprea3", "https://tec.openplanner.team/stops/Lghprea4"], ["https://tec.openplanner.team/stops/Cbwmato1", "https://tec.openplanner.team/stops/Cmqn5912"], ["https://tec.openplanner.team/stops/H1qp140a", "https://tec.openplanner.team/stops/H1qp140b"], ["https://tec.openplanner.team/stops/Bmrlhau1", "https://tec.openplanner.team/stops/Bmrlhau2"], ["https://tec.openplanner.team/stops/X937aab", "https://tec.openplanner.team/stops/X937aga"], ["https://tec.openplanner.team/stops/X822aba", "https://tec.openplanner.team/stops/X822aoa"], ["https://tec.openplanner.team/stops/Bottpin1", "https://tec.openplanner.team/stops/Bottpry2"], ["https://tec.openplanner.team/stops/Cliegli1", "https://tec.openplanner.team/stops/Crebien2"], ["https://tec.openplanner.team/stops/Beclfde1", "https://tec.openplanner.team/stops/Bfelfde2"], ["https://tec.openplanner.team/stops/Bfelpla2", "https://tec.openplanner.team/stops/Bsengma1"], ["https://tec.openplanner.team/stops/Bnivbne2", "https://tec.openplanner.team/stops/Bnivbos2"], ["https://tec.openplanner.team/stops/H4br107b", "https://tec.openplanner.team/stops/H4br108b"], ["https://tec.openplanner.team/stops/N127afa", "https://tec.openplanner.team/stops/N127aja"], ["https://tec.openplanner.team/stops/H1cu111a", "https://tec.openplanner.team/stops/H1ms921a"], ["https://tec.openplanner.team/stops/Cmcegli3", "https://tec.openplanner.team/stops/Cmcwic1"], ["https://tec.openplanner.team/stops/Ccicouc1", "https://tec.openplanner.team/stops/Ccipech1"], ["https://tec.openplanner.team/stops/H1nm139a", "https://tec.openplanner.team/stops/H1nm139b"], ["https://tec.openplanner.team/stops/H1ms281b", "https://tec.openplanner.team/stops/H1ni323a"], ["https://tec.openplanner.team/stops/N204ajb", "https://tec.openplanner.team/stops/N204ala"], ["https://tec.openplanner.team/stops/Bblaall1", "https://tec.openplanner.team/stops/Bblapje2"], ["https://tec.openplanner.team/stops/N501gcb", "https://tec.openplanner.team/stops/N538abb"], ["https://tec.openplanner.team/stops/NL37ala", "https://tec.openplanner.team/stops/NL37alb"], ["https://tec.openplanner.team/stops/H4mv188b", "https://tec.openplanner.team/stops/H4mv190b"], ["https://tec.openplanner.team/stops/Ccyga8", "https://tec.openplanner.team/stops/NH01acb"], ["https://tec.openplanner.team/stops/H4ty326a", "https://tec.openplanner.team/stops/H4ty326b"], ["https://tec.openplanner.team/stops/LLrcomb1", "https://tec.openplanner.team/stops/LLrmaq-2"], ["https://tec.openplanner.team/stops/LJAbois1", "https://tec.openplanner.team/stops/Lmnchal1"], ["https://tec.openplanner.team/stops/N120aib", "https://tec.openplanner.team/stops/N167aha"], ["https://tec.openplanner.team/stops/Bwavcin2", "https://tec.openplanner.team/stops/Bwavtrt2"], ["https://tec.openplanner.team/stops/LaMgeme*", "https://tec.openplanner.team/stops/LeIjoha1"], ["https://tec.openplanner.team/stops/N353aba", "https://tec.openplanner.team/stops/N353awa"], ["https://tec.openplanner.team/stops/H1er110a", "https://tec.openplanner.team/stops/H1er110b"], ["https://tec.openplanner.team/stops/NL57aha", "https://tec.openplanner.team/stops/NL57ahb"], ["https://tec.openplanner.team/stops/H1cu127a", "https://tec.openplanner.team/stops/H1cu128b"], ["https://tec.openplanner.team/stops/N512aha", "https://tec.openplanner.team/stops/N512ahb"], ["https://tec.openplanner.team/stops/LMEcour1", "https://tec.openplanner.team/stops/LMEpech2"], ["https://tec.openplanner.team/stops/X614aoa", "https://tec.openplanner.team/stops/X614apa"], ["https://tec.openplanner.team/stops/LWAclos1", "https://tec.openplanner.team/stops/LWAmois1"], ["https://tec.openplanner.team/stops/N311aaa", "https://tec.openplanner.team/stops/N311adb"], ["https://tec.openplanner.team/stops/X652aca", "https://tec.openplanner.team/stops/X652adb"], ["https://tec.openplanner.team/stops/N522aia", "https://tec.openplanner.team/stops/N522aib"], ["https://tec.openplanner.team/stops/Lhrcols4", "https://tec.openplanner.team/stops/Llgbry-1"], ["https://tec.openplanner.team/stops/H4hx110b", "https://tec.openplanner.team/stops/H4hx122b"], ["https://tec.openplanner.team/stops/N352aja", "https://tec.openplanner.team/stops/N352ajb"], ["https://tec.openplanner.team/stops/LAIrout2", "https://tec.openplanner.team/stops/LCschen1"], ["https://tec.openplanner.team/stops/LMOcorn2", "https://tec.openplanner.team/stops/LMOf21-2"], ["https://tec.openplanner.team/stops/N122aca", "https://tec.openplanner.team/stops/N122ada"], ["https://tec.openplanner.team/stops/LCPone92", "https://tec.openplanner.team/stops/LOncar-*"], ["https://tec.openplanner.team/stops/H1tt107a", "https://tec.openplanner.team/stops/H1tt109a"], ["https://tec.openplanner.team/stops/H1ms929a", "https://tec.openplanner.team/stops/H1ms932a"], ["https://tec.openplanner.team/stops/Bwatavo1", "https://tec.openplanner.team/stops/Bwatcpr1"], ["https://tec.openplanner.team/stops/H1bb114a", "https://tec.openplanner.team/stops/H1bb116c"], ["https://tec.openplanner.team/stops/H4ra159a", "https://tec.openplanner.team/stops/H4ra159b"], ["https://tec.openplanner.team/stops/H5pe131b", "https://tec.openplanner.team/stops/H5pe151a"], ["https://tec.openplanner.team/stops/LOMeg--1", "https://tec.openplanner.team/stops/LOMtomb1"], ["https://tec.openplanner.team/stops/LAUbour3", "https://tec.openplanner.team/stops/LAUvict4"], ["https://tec.openplanner.team/stops/LAMvert1", "https://tec.openplanner.team/stops/LAMwall1"], ["https://tec.openplanner.team/stops/LBajean2", "https://tec.openplanner.team/stops/LBapepi4"], ["https://tec.openplanner.team/stops/N353adb", "https://tec.openplanner.team/stops/N353ahb"], ["https://tec.openplanner.team/stops/H4lp122b", "https://tec.openplanner.team/stops/H4lp126b"], ["https://tec.openplanner.team/stops/Bbchdra2", "https://tec.openplanner.team/stops/Bwaurge1"], ["https://tec.openplanner.team/stops/LLrbano1", "https://tec.openplanner.team/stops/LLrbuis1"], ["https://tec.openplanner.team/stops/N501faa", "https://tec.openplanner.team/stops/N501maa"], ["https://tec.openplanner.team/stops/X740aca", "https://tec.openplanner.team/stops/X740aeb"], ["https://tec.openplanner.team/stops/Lsebegu3", "https://tec.openplanner.team/stops/Ltipass2"], ["https://tec.openplanner.team/stops/Blanath1", "https://tec.openplanner.team/stops/LLagert*"], ["https://tec.openplanner.team/stops/Lhrlico3", "https://tec.openplanner.team/stops/Ljuauto2"], ["https://tec.openplanner.team/stops/X734aoa", "https://tec.openplanner.team/stops/X734aob"], ["https://tec.openplanner.team/stops/H1ob330a", "https://tec.openplanner.team/stops/H1ob330b"], ["https://tec.openplanner.team/stops/N501eha", "https://tec.openplanner.team/stops/N501ehb"], ["https://tec.openplanner.team/stops/X361acb", "https://tec.openplanner.team/stops/X361afa"], ["https://tec.openplanner.team/stops/Lghchap1", "https://tec.openplanner.team/stops/Lghchap2"], ["https://tec.openplanner.team/stops/H1so131f", "https://tec.openplanner.team/stops/H1so146b"], ["https://tec.openplanner.team/stops/Lvicitw2", "https://tec.openplanner.team/stops/Lviweri1"], ["https://tec.openplanner.team/stops/X871acb", "https://tec.openplanner.team/stops/X871ada"], ["https://tec.openplanner.team/stops/N215aab", "https://tec.openplanner.team/stops/N261aga"], ["https://tec.openplanner.team/stops/LmHbien1", "https://tec.openplanner.team/stops/LmHbien2"], ["https://tec.openplanner.team/stops/LBiroch1", "https://tec.openplanner.team/stops/LBiroch2"], ["https://tec.openplanner.team/stops/Cmyquen2", "https://tec.openplanner.team/stops/Cmywarc1"], ["https://tec.openplanner.team/stops/H4bo112b", "https://tec.openplanner.team/stops/H4bo117a"], ["https://tec.openplanner.team/stops/LRRbuta1", "https://tec.openplanner.team/stops/LRRchea5"], ["https://tec.openplanner.team/stops/N217aba", "https://tec.openplanner.team/stops/N217abb"], ["https://tec.openplanner.team/stops/Barcbav1", "https://tec.openplanner.team/stops/Bbsgfva1"], ["https://tec.openplanner.team/stops/X626aia", "https://tec.openplanner.team/stops/X626ajb"], ["https://tec.openplanner.team/stops/H1cu124a", "https://tec.openplanner.team/stops/H1fr151b"], ["https://tec.openplanner.team/stops/Lprceri1", "https://tec.openplanner.team/stops/Lprspra2"], ["https://tec.openplanner.team/stops/Livpost2", "https://tec.openplanner.team/stops/LRacime2"], ["https://tec.openplanner.team/stops/Crodebr2", "https://tec.openplanner.team/stops/Crolach2"], ["https://tec.openplanner.team/stops/X892afb", "https://tec.openplanner.team/stops/X892agb"], ["https://tec.openplanner.team/stops/H1og135a", "https://tec.openplanner.team/stops/H1og136a"], ["https://tec.openplanner.team/stops/H4eh104b", "https://tec.openplanner.team/stops/H4po130a"], ["https://tec.openplanner.team/stops/N308aic", "https://tec.openplanner.team/stops/X308akb"], ["https://tec.openplanner.team/stops/Crcrgar2", "https://tec.openplanner.team/stops/NH03agb"], ["https://tec.openplanner.team/stops/Bfelcsa2", "https://tec.openplanner.team/stops/Bfelpla2"], ["https://tec.openplanner.team/stops/N531aca", "https://tec.openplanner.team/stops/N531aga"], ["https://tec.openplanner.team/stops/X624agb", "https://tec.openplanner.team/stops/X624aha"], ["https://tec.openplanner.team/stops/N235aab", "https://tec.openplanner.team/stops/N235ahb"], ["https://tec.openplanner.team/stops/X812acb", "https://tec.openplanner.team/stops/X825aeb"], ["https://tec.openplanner.team/stops/H4ld126b", "https://tec.openplanner.team/stops/H4ld128b"], ["https://tec.openplanner.team/stops/Bkrabhu2", "https://tec.openplanner.team/stops/Bovesog1"], ["https://tec.openplanner.team/stops/N557ada", "https://tec.openplanner.team/stops/N558ajb"], ["https://tec.openplanner.team/stops/Llgfred1", "https://tec.openplanner.team/stops/Llgptlo4"], ["https://tec.openplanner.team/stops/H3lr120a", "https://tec.openplanner.team/stops/H3lr120b"], ["https://tec.openplanner.team/stops/LmNha221", "https://tec.openplanner.team/stops/LmNha222"], ["https://tec.openplanner.team/stops/LATfont2", "https://tec.openplanner.team/stops/LVNbale2"], ["https://tec.openplanner.team/stops/N117ana", "https://tec.openplanner.team/stops/N117aob"], ["https://tec.openplanner.team/stops/LCxwade1", "https://tec.openplanner.team/stops/LCxwade2"], ["https://tec.openplanner.team/stops/H4te258a", "https://tec.openplanner.team/stops/H4te258b"], ["https://tec.openplanner.team/stops/X948aia", "https://tec.openplanner.team/stops/X948aib"], ["https://tec.openplanner.team/stops/H4av106a", "https://tec.openplanner.team/stops/H4av106b"], ["https://tec.openplanner.team/stops/LPRbrou1", "https://tec.openplanner.team/stops/LPReg--1"], ["https://tec.openplanner.team/stops/X626ala", "https://tec.openplanner.team/stops/X626ana"], ["https://tec.openplanner.team/stops/H4ba101b", "https://tec.openplanner.team/stops/H4pi133b"], ["https://tec.openplanner.team/stops/X808aea", "https://tec.openplanner.team/stops/X811ada"], ["https://tec.openplanner.team/stops/Ccyfede2", "https://tec.openplanner.team/stops/Crbgare1"], ["https://tec.openplanner.team/stops/Lmofays1", "https://tec.openplanner.team/stops/Lmovand2"], ["https://tec.openplanner.team/stops/N501akb", "https://tec.openplanner.team/stops/N501aoa"], ["https://tec.openplanner.team/stops/H4co146b", "https://tec.openplanner.team/stops/H4co148b"], ["https://tec.openplanner.team/stops/N243aca", "https://tec.openplanner.team/stops/N243adb"], ["https://tec.openplanner.team/stops/Bnilcim2", "https://tec.openplanner.team/stops/Bnilpco1"], ["https://tec.openplanner.team/stops/X741ahb", "https://tec.openplanner.team/stops/X741ana"], ["https://tec.openplanner.team/stops/X609ada", "https://tec.openplanner.team/stops/X609afb"], ["https://tec.openplanner.team/stops/X912aeb", "https://tec.openplanner.team/stops/X912aia"], ["https://tec.openplanner.team/stops/X261adb", "https://tec.openplanner.team/stops/X979akb"], ["https://tec.openplanner.team/stops/X911afb", "https://tec.openplanner.team/stops/X911ara"], ["https://tec.openplanner.team/stops/LlgPTAV1", "https://tec.openplanner.team/stops/LlgPTAV3"], ["https://tec.openplanner.team/stops/H1gq153a", "https://tec.openplanner.team/stops/H1hq126a"], ["https://tec.openplanner.team/stops/X614ara", "https://tec.openplanner.team/stops/X624abb"], ["https://tec.openplanner.team/stops/LMsbusc2", "https://tec.openplanner.team/stops/LMsgara1"], ["https://tec.openplanner.team/stops/LeLgrie1", "https://tec.openplanner.team/stops/LeLzost1"], ["https://tec.openplanner.team/stops/LNIec--2", "https://tec.openplanner.team/stops/LSZnive2"], ["https://tec.openplanner.team/stops/H1em106a", "https://tec.openplanner.team/stops/H1fa117b"], ["https://tec.openplanner.team/stops/X614agb", "https://tec.openplanner.team/stops/X615aza"], ["https://tec.openplanner.team/stops/Lstbarb2", "https://tec.openplanner.team/stops/Lsteduc2"], ["https://tec.openplanner.team/stops/LXopeti2", "https://tec.openplanner.team/stops/X599afd"], ["https://tec.openplanner.team/stops/Ccychco2", "https://tec.openplanner.team/stops/Ccyga05"], ["https://tec.openplanner.team/stops/LHUcamp1", "https://tec.openplanner.team/stops/LHUcamp2"], ["https://tec.openplanner.team/stops/LdEkreu1", "https://tec.openplanner.team/stops/LdEschw2"], ["https://tec.openplanner.team/stops/H4ga167a", "https://tec.openplanner.team/stops/H4ga168a"], ["https://tec.openplanner.team/stops/X396aca", "https://tec.openplanner.team/stops/X919ama"], ["https://tec.openplanner.team/stops/Cdalpla2", "https://tec.openplanner.team/stops/CMdesc2"], ["https://tec.openplanner.team/stops/Lflcime1", "https://tec.openplanner.team/stops/Lflweri1"], ["https://tec.openplanner.team/stops/H1le124b", "https://tec.openplanner.team/stops/H1le128d"], ["https://tec.openplanner.team/stops/Bvirbru1", "https://tec.openplanner.team/stops/Bvircsj1"], ["https://tec.openplanner.team/stops/Ladarev1", "https://tec.openplanner.team/stops/Ladxhen1"], ["https://tec.openplanner.team/stops/X892aea", "https://tec.openplanner.team/stops/X892ahb"], ["https://tec.openplanner.team/stops/H1ca100b", "https://tec.openplanner.team/stops/H1ca184b"], ["https://tec.openplanner.team/stops/Ccofayt2", "https://tec.openplanner.team/stops/Cvvgrsa1"], ["https://tec.openplanner.team/stops/X604aia", "https://tec.openplanner.team/stops/X604aib"], ["https://tec.openplanner.team/stops/Lmlboul1", "https://tec.openplanner.team/stops/Lmlboul2"], ["https://tec.openplanner.team/stops/NL68aca", "https://tec.openplanner.team/stops/NL68acb"], ["https://tec.openplanner.team/stops/LHUmess2", "https://tec.openplanner.team/stops/LTiec--2"], ["https://tec.openplanner.team/stops/X897acb", "https://tec.openplanner.team/stops/X897ala"], ["https://tec.openplanner.team/stops/Laghetr2", "https://tec.openplanner.team/stops/Lagsauh1"], ["https://tec.openplanner.team/stops/Csocime1", "https://tec.openplanner.team/stops/Csocime2"], ["https://tec.openplanner.team/stops/Bbsggot2", "https://tec.openplanner.team/stops/Bhmmcge1"], ["https://tec.openplanner.team/stops/Cmqbasv2", "https://tec.openplanner.team/stops/H1ro131b"], ["https://tec.openplanner.team/stops/H1bl107a", "https://tec.openplanner.team/stops/H1eq116a"], ["https://tec.openplanner.team/stops/N120aib", "https://tec.openplanner.team/stops/N120alb"], ["https://tec.openplanner.team/stops/LAWcite4", "https://tec.openplanner.team/stops/LAWdefu3"], ["https://tec.openplanner.team/stops/LOcgdro2", "https://tec.openplanner.team/stops/LOcgdro3"], ["https://tec.openplanner.team/stops/LThpoli1", "https://tec.openplanner.team/stops/LThpoli2"], ["https://tec.openplanner.team/stops/LAWroug2", "https://tec.openplanner.team/stops/LBIfore1"], ["https://tec.openplanner.team/stops/LgRzent1", "https://tec.openplanner.team/stops/LtHfrie2"], ["https://tec.openplanner.team/stops/Bdoncar1", "https://tec.openplanner.team/stops/Bincdon1"], ["https://tec.openplanner.team/stops/Bhancre2", "https://tec.openplanner.team/stops/NL37aab"], ["https://tec.openplanner.team/stops/H1cu121b", "https://tec.openplanner.team/stops/H1cu130b"], ["https://tec.openplanner.team/stops/H4ef163a", "https://tec.openplanner.team/stops/H4hq133d"], ["https://tec.openplanner.team/stops/LlNhube1", "https://tec.openplanner.team/stops/LlNschu1"], ["https://tec.openplanner.team/stops/X793aha", "https://tec.openplanner.team/stops/X793ahb"], ["https://tec.openplanner.team/stops/N163aab", "https://tec.openplanner.team/stops/N163abb"], ["https://tec.openplanner.team/stops/LDLheid1", "https://tec.openplanner.team/stops/LDLheid2"], ["https://tec.openplanner.team/stops/Bflcpco1", "https://tec.openplanner.team/stops/NR30aab"], ["https://tec.openplanner.team/stops/LeUoe541", "https://tec.openplanner.team/stops/LeUwais1"], ["https://tec.openplanner.team/stops/Ctupont1", "https://tec.openplanner.team/stops/Ctupont2"], ["https://tec.openplanner.team/stops/LFPchat2", "https://tec.openplanner.team/stops/LVu40--1"], ["https://tec.openplanner.team/stops/X804bqa", "https://tec.openplanner.team/stops/X804bqb"], ["https://tec.openplanner.team/stops/Ljemabo1", "https://tec.openplanner.team/stops/Ltibure4"], ["https://tec.openplanner.team/stops/N101aaa", "https://tec.openplanner.team/stops/N101aab"], ["https://tec.openplanner.team/stops/LFPzwaa1", "https://tec.openplanner.team/stops/LFPzwaa2"], ["https://tec.openplanner.team/stops/LREhenu1", "https://tec.openplanner.team/stops/LREhenu2"], ["https://tec.openplanner.team/stops/H4ne135b", "https://tec.openplanner.team/stops/H4ne141a"], ["https://tec.openplanner.team/stops/LPAbrun2", "https://tec.openplanner.team/stops/LPAvill2"], ["https://tec.openplanner.team/stops/LBIhann1", "https://tec.openplanner.team/stops/LBIvill2"], ["https://tec.openplanner.team/stops/Cmofosb2", "https://tec.openplanner.team/stops/Cmoprov1"], ["https://tec.openplanner.team/stops/N554agb", "https://tec.openplanner.team/stops/N573aqa"], ["https://tec.openplanner.team/stops/N515ajb", "https://tec.openplanner.team/stops/N515aoa"], ["https://tec.openplanner.team/stops/LRIcite1", "https://tec.openplanner.team/stops/LRIhous1"], ["https://tec.openplanner.team/stops/LBNpleg2", "https://tec.openplanner.team/stops/LBNvill6"], ["https://tec.openplanner.team/stops/Lmitech1", "https://tec.openplanner.team/stops/Lmitech2"], ["https://tec.openplanner.team/stops/LWacime3", "https://tec.openplanner.team/stops/LWacime4"], ["https://tec.openplanner.team/stops/X790ana", "https://tec.openplanner.team/stops/X790anb"], ["https://tec.openplanner.team/stops/Llglave2", "https://tec.openplanner.team/stops/Llgomal2"], ["https://tec.openplanner.team/stops/Lmlguis2", "https://tec.openplanner.team/stops/Lpomart1"], ["https://tec.openplanner.team/stops/Ccodubo1", "https://tec.openplanner.team/stops/Ccojaur3"], ["https://tec.openplanner.team/stops/Bnilhau1", "https://tec.openplanner.team/stops/Btsleco1"], ["https://tec.openplanner.team/stops/H2ep144b", "https://tec.openplanner.team/stops/H2re175b"], ["https://tec.openplanner.team/stops/LnN02--2", "https://tec.openplanner.team/stops/LsVthom1"], ["https://tec.openplanner.team/stops/H4wa155b", "https://tec.openplanner.team/stops/H4wa161a"], ["https://tec.openplanner.team/stops/LVEjard1", "https://tec.openplanner.team/stops/LVEroum1"], ["https://tec.openplanner.team/stops/Lmlbaro2", "https://tec.openplanner.team/stops/Lmlchev1"], ["https://tec.openplanner.team/stops/Lroboeg2", "https://tec.openplanner.team/stops/Lrosoxh1"], ["https://tec.openplanner.team/stops/Cfamate2", "https://tec.openplanner.team/stops/Cfanvmo1"], ["https://tec.openplanner.team/stops/Lhufila2", "https://tec.openplanner.team/stops/LPohoeg1"], ["https://tec.openplanner.team/stops/Bgoesch2", "https://tec.openplanner.team/stops/Bgoesch3"], ["https://tec.openplanner.team/stops/Lchcomm1", "https://tec.openplanner.team/stops/Lchcomm2"], ["https://tec.openplanner.team/stops/H4ta127b", "https://tec.openplanner.team/stops/H4ta135a"], ["https://tec.openplanner.team/stops/Bjdscnd2", "https://tec.openplanner.team/stops/Bjodpce1"], ["https://tec.openplanner.team/stops/X641asa", "https://tec.openplanner.team/stops/X821aaa"], ["https://tec.openplanner.team/stops/LBIvill4", "https://tec.openplanner.team/stops/LFOchpl2"], ["https://tec.openplanner.team/stops/LSTamer2", "https://tec.openplanner.team/stops/LSTec--2"], ["https://tec.openplanner.team/stops/Cwfaldi2", "https://tec.openplanner.team/stops/Cwfbarr2"], ["https://tec.openplanner.team/stops/X922aga", "https://tec.openplanner.team/stops/X922ahb"], ["https://tec.openplanner.team/stops/N874aka", "https://tec.openplanner.team/stops/N874akb"], ["https://tec.openplanner.team/stops/Lghcham2", "https://tec.openplanner.team/stops/Lghreyn2"], ["https://tec.openplanner.team/stops/N201anb", "https://tec.openplanner.team/stops/N201aoc"], ["https://tec.openplanner.team/stops/LBStong1", "https://tec.openplanner.team/stops/LRGbett3"], ["https://tec.openplanner.team/stops/Cdacolu2", "https://tec.openplanner.team/stops/CMlpla1"], ["https://tec.openplanner.team/stops/Ctafran2", "https://tec.openplanner.team/stops/N543bka"], ["https://tec.openplanner.team/stops/X840aab", "https://tec.openplanner.team/stops/X840aba"], ["https://tec.openplanner.team/stops/H2fa108a", "https://tec.openplanner.team/stops/H2hg268c"], ["https://tec.openplanner.team/stops/Llgbrab1", "https://tec.openplanner.team/stops/Llgvinc2"], ["https://tec.openplanner.team/stops/N568aca", "https://tec.openplanner.team/stops/N568acb"], ["https://tec.openplanner.team/stops/X774afa", "https://tec.openplanner.team/stops/X775aaa"], ["https://tec.openplanner.team/stops/LAChann2", "https://tec.openplanner.team/stops/LHhvivi2"], ["https://tec.openplanner.team/stops/X736aaa", "https://tec.openplanner.team/stops/X736agb"], ["https://tec.openplanner.team/stops/LAibego1", "https://tec.openplanner.team/stops/LCacoop1"], ["https://tec.openplanner.team/stops/Lflmc--2", "https://tec.openplanner.team/stops/Lflterm2"], ["https://tec.openplanner.team/stops/LTaeg--1", "https://tec.openplanner.team/stops/LTaouch1"], ["https://tec.openplanner.team/stops/N540apa", "https://tec.openplanner.team/stops/N540arb"], ["https://tec.openplanner.team/stops/LhEherb1", "https://tec.openplanner.team/stops/LhElont3"], ["https://tec.openplanner.team/stops/X666aca", "https://tec.openplanner.team/stops/X729aca"], ["https://tec.openplanner.team/stops/Llgmair2", "https://tec.openplanner.team/stops/Llgthie2"], ["https://tec.openplanner.team/stops/X901aza", "https://tec.openplanner.team/stops/X901bpa"], ["https://tec.openplanner.team/stops/X993acb", "https://tec.openplanner.team/stops/X993aib"], ["https://tec.openplanner.team/stops/Lpefler1", "https://tec.openplanner.team/stops/Lpefler2"], ["https://tec.openplanner.team/stops/Cmaest2", "https://tec.openplanner.team/stops/Cmmn1171"], ["https://tec.openplanner.team/stops/Lgrclin3", "https://tec.openplanner.team/stops/Lvc4bra2"], ["https://tec.openplanner.team/stops/Llmdela1", "https://tec.openplanner.team/stops/LWenouv1"], ["https://tec.openplanner.team/stops/Blhunys3", "https://tec.openplanner.team/stops/Bohnhan1"], ["https://tec.openplanner.team/stops/Lhuferm2", "https://tec.openplanner.team/stops/Lhulibe2"], ["https://tec.openplanner.team/stops/H1gr122a", "https://tec.openplanner.team/stops/H1sy141b"], ["https://tec.openplanner.team/stops/N139aab", "https://tec.openplanner.team/stops/N139aea"], ["https://tec.openplanner.team/stops/H4ty333b", "https://tec.openplanner.team/stops/H4ty359a"], ["https://tec.openplanner.team/stops/LThhoul2", "https://tec.openplanner.team/stops/LThplen2"], ["https://tec.openplanner.team/stops/Caccent1", "https://tec.openplanner.team/stops/Cacecol2"], ["https://tec.openplanner.team/stops/LBUchpl1", "https://tec.openplanner.team/stops/LBUmara1"], ["https://tec.openplanner.team/stops/X664afa", "https://tec.openplanner.team/stops/X664aga"], ["https://tec.openplanner.team/stops/X982bkb", "https://tec.openplanner.team/stops/X982blc"], ["https://tec.openplanner.team/stops/LLrhaut2", "https://tec.openplanner.team/stops/LLrhaut4"], ["https://tec.openplanner.team/stops/LCFcafe2", "https://tec.openplanner.team/stops/LCFmoul1"], ["https://tec.openplanner.team/stops/Cgyhstj1", "https://tec.openplanner.team/stops/Cgyhstj2"], ["https://tec.openplanner.team/stops/H5el100a", "https://tec.openplanner.team/stops/H5fl101a"], ["https://tec.openplanner.team/stops/X898abb", "https://tec.openplanner.team/stops/X898aca"], ["https://tec.openplanner.team/stops/Crsapol1", "https://tec.openplanner.team/stops/Crsapol2"], ["https://tec.openplanner.team/stops/X769aab", "https://tec.openplanner.team/stops/X769atb"], ["https://tec.openplanner.team/stops/N531afg", "https://tec.openplanner.team/stops/N531ata"], ["https://tec.openplanner.team/stops/N248adb", "https://tec.openplanner.team/stops/N248aea"], ["https://tec.openplanner.team/stops/X801bwb", "https://tec.openplanner.team/stops/X802ayb"], ["https://tec.openplanner.team/stops/LGLgeer2", "https://tec.openplanner.team/stops/LSLdall2"], ["https://tec.openplanner.team/stops/N501iba", "https://tec.openplanner.team/stops/N501ila"], ["https://tec.openplanner.team/stops/N309aab", "https://tec.openplanner.team/stops/N313aec"], ["https://tec.openplanner.team/stops/Bgoemho2", "https://tec.openplanner.team/stops/Bhakmkr2"], ["https://tec.openplanner.team/stops/X646ada", "https://tec.openplanner.team/stops/X825aaa"], ["https://tec.openplanner.team/stops/LlgLEOP3", "https://tec.openplanner.team/stops/Llgnage2"], ["https://tec.openplanner.team/stops/N160aaa", "https://tec.openplanner.team/stops/N160adb"], ["https://tec.openplanner.team/stops/X950adb", "https://tec.openplanner.team/stops/X955acb"], ["https://tec.openplanner.team/stops/N531aja", "https://tec.openplanner.team/stops/N534bkg"], ["https://tec.openplanner.team/stops/LLEgare1", "https://tec.openplanner.team/stops/LLEgare2"], ["https://tec.openplanner.team/stops/Cchccom2", "https://tec.openplanner.team/stops/Cchhopi4"], ["https://tec.openplanner.team/stops/H4ev120a", "https://tec.openplanner.team/stops/H4ev124b"], ["https://tec.openplanner.team/stops/X911afa", "https://tec.openplanner.team/stops/X911ahb"], ["https://tec.openplanner.team/stops/Ccisolv2", "https://tec.openplanner.team/stops/Cmtplac8"], ["https://tec.openplanner.team/stops/Berncim2", "https://tec.openplanner.team/stops/Berncim3"], ["https://tec.openplanner.team/stops/H4ef109b", "https://tec.openplanner.team/stops/H4ef111b"], ["https://tec.openplanner.team/stops/Cfrcham1", "https://tec.openplanner.team/stops/Clihame2"], ["https://tec.openplanner.team/stops/N230afa", "https://tec.openplanner.team/stops/N242agb"], ["https://tec.openplanner.team/stops/H5wo124b", "https://tec.openplanner.team/stops/H5wo134a"], ["https://tec.openplanner.team/stops/X804asb", "https://tec.openplanner.team/stops/X804bda"], ["https://tec.openplanner.team/stops/LLrfrai1", "https://tec.openplanner.team/stops/LLrpape4"], ["https://tec.openplanner.team/stops/H2ec104a", "https://tec.openplanner.team/stops/H2me115a"], ["https://tec.openplanner.team/stops/LROchap2", "https://tec.openplanner.team/stops/LwYkirc2"], ["https://tec.openplanner.team/stops/Cbicamp1", "https://tec.openplanner.team/stops/Cbimonu2"], ["https://tec.openplanner.team/stops/LJAherb2", "https://tec.openplanner.team/stops/LJAherb3"], ["https://tec.openplanner.team/stops/Bnivrsh1", "https://tec.openplanner.team/stops/Bnivzon1"], ["https://tec.openplanner.team/stops/N505ada", "https://tec.openplanner.team/stops/N505adb"], ["https://tec.openplanner.team/stops/Bsoihci1", "https://tec.openplanner.team/stops/H3so173a"], ["https://tec.openplanner.team/stops/H1mj127b", "https://tec.openplanner.team/stops/H1mj128b"], ["https://tec.openplanner.team/stops/Llgcbat2", "https://tec.openplanner.team/stops/Llgvalu1"], ["https://tec.openplanner.team/stops/Ladjuif2", "https://tec.openplanner.team/stops/Ladlaur2"], ["https://tec.openplanner.team/stops/N134ada", "https://tec.openplanner.team/stops/N134adb"], ["https://tec.openplanner.team/stops/H1hg181b", "https://tec.openplanner.team/stops/H1nv324b"], ["https://tec.openplanner.team/stops/Canboni2", "https://tec.openplanner.team/stops/Canplch1"], ["https://tec.openplanner.team/stops/X605agb", "https://tec.openplanner.team/stops/X619amb"], ["https://tec.openplanner.team/stops/Cluchbl2", "https://tec.openplanner.team/stops/Cluchbl4"], ["https://tec.openplanner.team/stops/H4bo114a", "https://tec.openplanner.team/stops/H4bo120b"], ["https://tec.openplanner.team/stops/X766agb", "https://tec.openplanner.team/stops/X766ajb"], ["https://tec.openplanner.team/stops/LSkdouf1", "https://tec.openplanner.team/stops/LYechpl1"], ["https://tec.openplanner.team/stops/H1hw121a", "https://tec.openplanner.team/stops/H1mc129b"], ["https://tec.openplanner.team/stops/Cfbegli2", "https://tec.openplanner.team/stops/Cfcecol3"], ["https://tec.openplanner.team/stops/Bnivcol2", "https://tec.openplanner.team/stops/Bnivcol3"], ["https://tec.openplanner.team/stops/H1do122a", "https://tec.openplanner.team/stops/H1do131c"], ["https://tec.openplanner.team/stops/X719aeb", "https://tec.openplanner.team/stops/X720aaa"], ["https://tec.openplanner.team/stops/H1fr116a", "https://tec.openplanner.team/stops/H1fr127a"], ["https://tec.openplanner.team/stops/LAufech1", "https://tec.openplanner.team/stops/LAugara1"], ["https://tec.openplanner.team/stops/Blmlfau2", "https://tec.openplanner.team/stops/Brixape2"], ["https://tec.openplanner.team/stops/H1bo109a", "https://tec.openplanner.team/stops/H1hi123b"], ["https://tec.openplanner.team/stops/H4ne141a", "https://tec.openplanner.team/stops/H4ne141b"], ["https://tec.openplanner.team/stops/H1mh115b", "https://tec.openplanner.team/stops/H1mh117a"], ["https://tec.openplanner.team/stops/N542aca", "https://tec.openplanner.team/stops/N542acb"], ["https://tec.openplanner.team/stops/Bbcolno2", "https://tec.openplanner.team/stops/H3br102b"], ["https://tec.openplanner.team/stops/H2fa107a", "https://tec.openplanner.team/stops/H2fa107b"], ["https://tec.openplanner.team/stops/N514amb", "https://tec.openplanner.team/stops/N514ana"], ["https://tec.openplanner.team/stops/LBSvi522", "https://tec.openplanner.team/stops/LWOsudr2"], ["https://tec.openplanner.team/stops/H2lc169c", "https://tec.openplanner.team/stops/H2lc169d"], ["https://tec.openplanner.team/stops/LJedonc1", "https://tec.openplanner.team/stops/LJedonc2"], ["https://tec.openplanner.team/stops/H2hp121a", "https://tec.openplanner.team/stops/H2hp124a"], ["https://tec.openplanner.team/stops/Bohnman1", "https://tec.openplanner.team/stops/Bohnman2"], ["https://tec.openplanner.team/stops/N212aca", "https://tec.openplanner.team/stops/N212akb"], ["https://tec.openplanner.team/stops/N331aab", "https://tec.openplanner.team/stops/N331aka"], ["https://tec.openplanner.team/stops/X609aba", "https://tec.openplanner.team/stops/X627aba"], ["https://tec.openplanner.team/stops/N116aea", "https://tec.openplanner.team/stops/N118aua"], ["https://tec.openplanner.team/stops/LEShony1", "https://tec.openplanner.team/stops/LESslmo2"], ["https://tec.openplanner.team/stops/Buccbou1", "https://tec.openplanner.team/stops/Bucccre1"], ["https://tec.openplanner.team/stops/X804apa", "https://tec.openplanner.team/stops/X869aba"], ["https://tec.openplanner.team/stops/N576aab", "https://tec.openplanner.team/stops/N576ama"], ["https://tec.openplanner.team/stops/H2ha141a", "https://tec.openplanner.team/stops/H2ha141c"], ["https://tec.openplanner.team/stops/X812aja", "https://tec.openplanner.team/stops/X812aoa"], ["https://tec.openplanner.team/stops/N512aqa", "https://tec.openplanner.team/stops/N512ara"], ["https://tec.openplanner.team/stops/N501kpa", "https://tec.openplanner.team/stops/N501kpb"], ["https://tec.openplanner.team/stops/NH01aeb", "https://tec.openplanner.team/stops/NH01aka"], ["https://tec.openplanner.team/stops/X804alc", "https://tec.openplanner.team/stops/X804bwa"], ["https://tec.openplanner.team/stops/X757ala", "https://tec.openplanner.team/stops/X779aaa"], ["https://tec.openplanner.team/stops/Csecoup1", "https://tec.openplanner.team/stops/Csefour2"], ["https://tec.openplanner.team/stops/H1ms921a", "https://tec.openplanner.team/stops/H1ms922a"], ["https://tec.openplanner.team/stops/LBDfran1", "https://tec.openplanner.team/stops/LBDfran2"], ["https://tec.openplanner.team/stops/H1er106a", "https://tec.openplanner.team/stops/H1er108a"], ["https://tec.openplanner.team/stops/X991agb", "https://tec.openplanner.team/stops/X991ahb"], ["https://tec.openplanner.team/stops/LeUmeye2", "https://tec.openplanner.team/stops/LrAknop1"], ["https://tec.openplanner.team/stops/Bincbbo1", "https://tec.openplanner.team/stops/Bincegl2"], ["https://tec.openplanner.team/stops/N308azb", "https://tec.openplanner.team/stops/N368aab"], ["https://tec.openplanner.team/stops/LVIcarm1", "https://tec.openplanner.team/stops/LVIcarm3"], ["https://tec.openplanner.team/stops/N117aub", "https://tec.openplanner.team/stops/N117auc"], ["https://tec.openplanner.team/stops/X595adb", "https://tec.openplanner.team/stops/X595aea"], ["https://tec.openplanner.team/stops/N106aab", "https://tec.openplanner.team/stops/N118aba"], ["https://tec.openplanner.team/stops/LFLetoi1", "https://tec.openplanner.team/stops/LFLetoi2"], ["https://tec.openplanner.team/stops/H4fl113b", "https://tec.openplanner.team/stops/H4fl114b"], ["https://tec.openplanner.team/stops/LAo161-1", "https://tec.openplanner.team/stops/LAo161-2"], ["https://tec.openplanner.team/stops/X982bda", "https://tec.openplanner.team/stops/X982bga"], ["https://tec.openplanner.team/stops/LATdony1", "https://tec.openplanner.team/stops/LHUtfal2"], ["https://tec.openplanner.team/stops/Lemparc2", "https://tec.openplanner.team/stops/LTIsain1"], ["https://tec.openplanner.team/stops/H1gr119a", "https://tec.openplanner.team/stops/H1gr119b"], ["https://tec.openplanner.team/stops/N501bta", "https://tec.openplanner.team/stops/N501btb"], ["https://tec.openplanner.team/stops/Clibrun1", "https://tec.openplanner.team/stops/Clihame1"], ["https://tec.openplanner.team/stops/Lbomidi1", "https://tec.openplanner.team/stops/LPLcite2"], ["https://tec.openplanner.team/stops/LbOvith1", "https://tec.openplanner.team/stops/LbOvith2"], ["https://tec.openplanner.team/stops/Lfhbott1", "https://tec.openplanner.team/stops/Lfhtrca1"], ["https://tec.openplanner.team/stops/LWDsott4", "https://tec.openplanner.team/stops/LWzfuma1"], ["https://tec.openplanner.team/stops/H1wa157a", "https://tec.openplanner.team/stops/H1wg125c"], ["https://tec.openplanner.team/stops/LeYberl1", "https://tec.openplanner.team/stops/LlCland1"], ["https://tec.openplanner.team/stops/Lhrchar1", "https://tec.openplanner.team/stops/Lhrthie2"], ["https://tec.openplanner.team/stops/Bgnvfai1", "https://tec.openplanner.team/stops/Bgnvqve1"], ["https://tec.openplanner.team/stops/X898afa", "https://tec.openplanner.team/stops/X898aga"], ["https://tec.openplanner.team/stops/Bsompri2", "https://tec.openplanner.team/stops/Bsomwav1"], ["https://tec.openplanner.team/stops/Llgbuis1", "https://tec.openplanner.team/stops/Lsccdor1"], ["https://tec.openplanner.team/stops/X721ahb", "https://tec.openplanner.team/stops/X721ajb"], ["https://tec.openplanner.team/stops/NC11alb", "https://tec.openplanner.team/stops/NC44aeb"], ["https://tec.openplanner.team/stops/Livvill2", "https://tec.openplanner.team/stops/LRarami1"], ["https://tec.openplanner.team/stops/LEHmarc2", "https://tec.openplanner.team/stops/LNCmc--1"], ["https://tec.openplanner.team/stops/H4bi100b", "https://tec.openplanner.team/stops/H4te256b"], ["https://tec.openplanner.team/stops/X650afc", "https://tec.openplanner.team/stops/X650aga"], ["https://tec.openplanner.team/stops/H1at109a", "https://tec.openplanner.team/stops/H1at110a"], ["https://tec.openplanner.team/stops/X902aha", "https://tec.openplanner.team/stops/X902ahb"], ["https://tec.openplanner.team/stops/X940aha", "https://tec.openplanner.team/stops/X940ahb"], ["https://tec.openplanner.team/stops/X663ahb", "https://tec.openplanner.team/stops/X663aia"], ["https://tec.openplanner.team/stops/Bgligra2", "https://tec.openplanner.team/stops/Btlbche2"], ["https://tec.openplanner.team/stops/Lthfagn2", "https://tec.openplanner.team/stops/LWarema2"], ["https://tec.openplanner.team/stops/Lsebegu1", "https://tec.openplanner.team/stops/Lsebegu2"], ["https://tec.openplanner.team/stops/LmDbw--*", "https://tec.openplanner.team/stops/LmDgeme2"], ["https://tec.openplanner.team/stops/H1bx105a", "https://tec.openplanner.team/stops/H1qv115b"], ["https://tec.openplanner.team/stops/X937aaa", "https://tec.openplanner.team/stops/X938ada"], ["https://tec.openplanner.team/stops/X641aha", "https://tec.openplanner.team/stops/X641amb"], ["https://tec.openplanner.team/stops/Lenplac2", "https://tec.openplanner.team/stops/Lenptsa2"], ["https://tec.openplanner.team/stops/Bwavbpi2", "https://tec.openplanner.team/stops/Bwavcui2"], ["https://tec.openplanner.team/stops/N127aha", "https://tec.openplanner.team/stops/N134aga"], ["https://tec.openplanner.team/stops/H4bu109a", "https://tec.openplanner.team/stops/H4ms166a"], ["https://tec.openplanner.team/stops/LFmbure2", "https://tec.openplanner.team/stops/LFmgeno2"], ["https://tec.openplanner.team/stops/H4by115d", "https://tec.openplanner.team/stops/H4tu170b"], ["https://tec.openplanner.team/stops/X610aea", "https://tec.openplanner.team/stops/X611aaa"], ["https://tec.openplanner.team/stops/H1bn113b", "https://tec.openplanner.team/stops/H1qp150b"], ["https://tec.openplanner.team/stops/H5pe134a", "https://tec.openplanner.team/stops/H5pe146b"], ["https://tec.openplanner.team/stops/Lcacris1", "https://tec.openplanner.team/stops/LNipla4"], ["https://tec.openplanner.team/stops/N519aac", "https://tec.openplanner.team/stops/N519ada"], ["https://tec.openplanner.team/stops/LFAec--2", "https://tec.openplanner.team/stops/LFAtomb2"], ["https://tec.openplanner.team/stops/H1sg146b", "https://tec.openplanner.team/stops/H1te198b"], ["https://tec.openplanner.team/stops/X901ata", "https://tec.openplanner.team/stops/X901ava"], ["https://tec.openplanner.team/stops/N521aic", "https://tec.openplanner.team/stops/N521aka"], ["https://tec.openplanner.team/stops/Bcbqtub1", "https://tec.openplanner.team/stops/Bitrsar1"], ["https://tec.openplanner.team/stops/Bstecou2", "https://tec.openplanner.team/stops/Bstemco1"], ["https://tec.openplanner.team/stops/H1hq124b", "https://tec.openplanner.team/stops/H1hq128a"], ["https://tec.openplanner.team/stops/LCUgale2", "https://tec.openplanner.team/stops/LCUjonc2"], ["https://tec.openplanner.team/stops/LBHhuyn1", "https://tec.openplanner.team/stops/LHbcent2"], ["https://tec.openplanner.team/stops/N337afa", "https://tec.openplanner.team/stops/N385adb"], ["https://tec.openplanner.team/stops/Llgbaya1", "https://tec.openplanner.team/stops/Llgvolg2"], ["https://tec.openplanner.team/stops/N501btb", "https://tec.openplanner.team/stops/N501bvb"], ["https://tec.openplanner.team/stops/NR21aca", "https://tec.openplanner.team/stops/NR21acb"], ["https://tec.openplanner.team/stops/Blilhay1", "https://tec.openplanner.team/stops/Blilton1"], ["https://tec.openplanner.team/stops/H1ca109b", "https://tec.openplanner.team/stops/H1ca184a"], ["https://tec.openplanner.team/stops/X619aeb", "https://tec.openplanner.team/stops/X619afa"], ["https://tec.openplanner.team/stops/N501grd", "https://tec.openplanner.team/stops/N501mha"], ["https://tec.openplanner.team/stops/Bsdapir2", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/H4lg100a", "https://tec.openplanner.team/stops/H4lg104a"], ["https://tec.openplanner.team/stops/LVLzoni1", "https://tec.openplanner.team/stops/LVLzoni2"], ["https://tec.openplanner.team/stops/H4hu119a", "https://tec.openplanner.team/stops/H4hu120a"], ["https://tec.openplanner.team/stops/X925aoa", "https://tec.openplanner.team/stops/X949amb"], ["https://tec.openplanner.team/stops/LROmons1", "https://tec.openplanner.team/stops/LROmons2"], ["https://tec.openplanner.team/stops/N501aca", "https://tec.openplanner.team/stops/N501acb"], ["https://tec.openplanner.team/stops/X715apa", "https://tec.openplanner.team/stops/X731abb"], ["https://tec.openplanner.team/stops/Lcehipp1", "https://tec.openplanner.team/stops/Lcemeta2"], ["https://tec.openplanner.team/stops/N538aba", "https://tec.openplanner.team/stops/N538ada"], ["https://tec.openplanner.team/stops/Bblagar3", "https://tec.openplanner.team/stops/Bblagar4"], ["https://tec.openplanner.team/stops/H3bi102b", "https://tec.openplanner.team/stops/H3bi116a"], ["https://tec.openplanner.team/stops/X982aad", "https://tec.openplanner.team/stops/X982bya"], ["https://tec.openplanner.team/stops/N532aab", "https://tec.openplanner.team/stops/N532aga"], ["https://tec.openplanner.team/stops/Cldplac2", "https://tec.openplanner.team/stops/Cmyjaci2"], ["https://tec.openplanner.team/stops/Bhandub2", "https://tec.openplanner.team/stops/Bhantui1"], ["https://tec.openplanner.team/stops/H4pl117a", "https://tec.openplanner.team/stops/H4pl117b"], ["https://tec.openplanner.team/stops/Ccigill1", "https://tec.openplanner.team/stops/Cmllecl4"], ["https://tec.openplanner.team/stops/Bjcljau2", "https://tec.openplanner.team/stops/Bjdspon2"], ["https://tec.openplanner.team/stops/X771ana", "https://tec.openplanner.team/stops/X771anb"], ["https://tec.openplanner.team/stops/LAyegli2", "https://tec.openplanner.team/stops/LSOgott2"], ["https://tec.openplanner.team/stops/H1do130b", "https://tec.openplanner.team/stops/H1ho133a"], ["https://tec.openplanner.team/stops/Bcbqrog1", "https://tec.openplanner.team/stops/Bitrnus1"], ["https://tec.openplanner.team/stops/LMNeg--2", "https://tec.openplanner.team/stops/LMNpann2"], ["https://tec.openplanner.team/stops/LbUmors2", "https://tec.openplanner.team/stops/LbUwhon1"], ["https://tec.openplanner.team/stops/N338aga", "https://tec.openplanner.team/stops/N338agb"], ["https://tec.openplanner.team/stops/LAIchpl1", "https://tec.openplanner.team/stops/LAIchpl2"], ["https://tec.openplanner.team/stops/LBevill1", "https://tec.openplanner.team/stops/LBevill2"], ["https://tec.openplanner.team/stops/LAYcher2", "https://tec.openplanner.team/stops/LFLcher2"], ["https://tec.openplanner.team/stops/H1be100a", "https://tec.openplanner.team/stops/H1so131f"], ["https://tec.openplanner.team/stops/X777aca", "https://tec.openplanner.team/stops/X784aab"], ["https://tec.openplanner.team/stops/LLUcdoy2", "https://tec.openplanner.team/stops/LLUlieg2"], ["https://tec.openplanner.team/stops/LeUnisp1", "https://tec.openplanner.team/stops/LkTsch%C3%B61"], ["https://tec.openplanner.team/stops/H1bl102a", "https://tec.openplanner.team/stops/H1bl104c"], ["https://tec.openplanner.team/stops/Berneco2", "https://tec.openplanner.team/stops/Bgemfbo2"], ["https://tec.openplanner.team/stops/LHDmc--2", "https://tec.openplanner.team/stops/LMOlens1"], ["https://tec.openplanner.team/stops/N135aaa", "https://tec.openplanner.team/stops/N135aec"], ["https://tec.openplanner.team/stops/LBvnico1", "https://tec.openplanner.team/stops/LSChane2"], ["https://tec.openplanner.team/stops/H1ni315a", "https://tec.openplanner.team/stops/H1ni315b"], ["https://tec.openplanner.team/stops/LHDpota1", "https://tec.openplanner.team/stops/LHDpota3"], ["https://tec.openplanner.team/stops/X614adb", "https://tec.openplanner.team/stops/X614aeb"], ["https://tec.openplanner.team/stops/LmUzent2", "https://tec.openplanner.team/stops/LrOkirc2"], ["https://tec.openplanner.team/stops/LPLline1", "https://tec.openplanner.team/stops/LPLline2"], ["https://tec.openplanner.team/stops/Lgrbonn6", "https://tec.openplanner.team/stops/Llgdelb1"], ["https://tec.openplanner.team/stops/Bcsemar1", "https://tec.openplanner.team/stops/Bcsemar2"], ["https://tec.openplanner.team/stops/Bgnvgar1", "https://tec.openplanner.team/stops/Blhugar1"], ["https://tec.openplanner.team/stops/X604ajb", "https://tec.openplanner.team/stops/X604ala"], ["https://tec.openplanner.team/stops/N534bga", "https://tec.openplanner.team/stops/N561aca"], ["https://tec.openplanner.team/stops/Creoudo1", "https://tec.openplanner.team/stops/Creoudo2"], ["https://tec.openplanner.team/stops/Bnstpla2", "https://tec.openplanner.team/stops/H2na133a"], ["https://tec.openplanner.team/stops/Bclgpch2", "https://tec.openplanner.team/stops/Bllnrge2"], ["https://tec.openplanner.team/stops/LXoharz5", "https://tec.openplanner.team/stops/X599agb"], ["https://tec.openplanner.team/stops/H5bl116b", "https://tec.openplanner.team/stops/H5bs103b"], ["https://tec.openplanner.team/stops/LORvill2", "https://tec.openplanner.team/stops/LORvill3"], ["https://tec.openplanner.team/stops/LNHbarr2", "https://tec.openplanner.team/stops/LSecomm2"], ["https://tec.openplanner.team/stops/H2bh111a", "https://tec.openplanner.team/stops/H2mg135b"], ["https://tec.openplanner.team/stops/Lhrcite1", "https://tec.openplanner.team/stops/Lwaeau-2"], ["https://tec.openplanner.team/stops/H4eq123a", "https://tec.openplanner.team/stops/H4rc231a"], ["https://tec.openplanner.team/stops/Bovetsa1", "https://tec.openplanner.team/stops/Brsregl2"], ["https://tec.openplanner.team/stops/LLirout2", "https://tec.openplanner.team/stops/LPUchpl2"], ["https://tec.openplanner.team/stops/LVeeg--2", "https://tec.openplanner.team/stops/LVevill2"], ["https://tec.openplanner.team/stops/Cmacoll1", "https://tec.openplanner.team/stops/Cmacoll2"], ["https://tec.openplanner.team/stops/H4my121b", "https://tec.openplanner.team/stops/H4vz369b"], ["https://tec.openplanner.team/stops/Ljubeyn1", "https://tec.openplanner.team/stops/Ljubods2"], ["https://tec.openplanner.team/stops/X636akb", "https://tec.openplanner.team/stops/X636bbb"], ["https://tec.openplanner.team/stops/X949akb", "https://tec.openplanner.team/stops/X949amb"], ["https://tec.openplanner.team/stops/X721ara", "https://tec.openplanner.team/stops/X721arb"], ["https://tec.openplanner.team/stops/LXHadam2", "https://tec.openplanner.team/stops/LXHbell1"], ["https://tec.openplanner.team/stops/N501cpb", "https://tec.openplanner.team/stops/N501kka"], ["https://tec.openplanner.team/stops/LTrgibe1", "https://tec.openplanner.team/stops/LTrmaro1"], ["https://tec.openplanner.team/stops/H4bd111a", "https://tec.openplanner.team/stops/H4bd112b"], ["https://tec.openplanner.team/stops/H1mj123a", "https://tec.openplanner.team/stops/H1mj130a"], ["https://tec.openplanner.team/stops/LVNleco1", "https://tec.openplanner.team/stops/LVNwanz1"], ["https://tec.openplanner.team/stops/H4bl104a", "https://tec.openplanner.team/stops/H4me211c"], ["https://tec.openplanner.team/stops/X756aec", "https://tec.openplanner.team/stops/X779ahb"], ["https://tec.openplanner.team/stops/X713aib", "https://tec.openplanner.team/stops/X713amb"], ["https://tec.openplanner.team/stops/N894aea", "https://tec.openplanner.team/stops/N894age"], ["https://tec.openplanner.team/stops/Btlgast1", "https://tec.openplanner.team/stops/Btlgfto1"], ["https://tec.openplanner.team/stops/N501adb", "https://tec.openplanner.team/stops/N501ahb"], ["https://tec.openplanner.team/stops/X901baa", "https://tec.openplanner.team/stops/X943acb"], ["https://tec.openplanner.team/stops/LBalacr1", "https://tec.openplanner.team/stops/LBamate2"], ["https://tec.openplanner.team/stops/X768aeb", "https://tec.openplanner.team/stops/X768aed"], ["https://tec.openplanner.team/stops/LAWlonc2", "https://tec.openplanner.team/stops/LBIpost1"], ["https://tec.openplanner.team/stops/X840aca", "https://tec.openplanner.team/stops/X840acd"], ["https://tec.openplanner.team/stops/N232bja", "https://tec.openplanner.team/stops/N232bjb"], ["https://tec.openplanner.team/stops/Bwavdel2", "https://tec.openplanner.team/stops/Bwavfbe2"], ["https://tec.openplanner.team/stops/Lscstan1", "https://tec.openplanner.team/stops/Lscstan2"], ["https://tec.openplanner.team/stops/N337aha", "https://tec.openplanner.team/stops/N337ahb"], ["https://tec.openplanner.team/stops/H4ga148d", "https://tec.openplanner.team/stops/H4ga149a"], ["https://tec.openplanner.team/stops/NL74agb", "https://tec.openplanner.team/stops/NL75aba"], ["https://tec.openplanner.team/stops/Lenauln1", "https://tec.openplanner.team/stops/Lendonh1"], ["https://tec.openplanner.team/stops/N551agb", "https://tec.openplanner.team/stops/N551aib"], ["https://tec.openplanner.team/stops/Bgnvgir2", "https://tec.openplanner.team/stops/Blhunys2"], ["https://tec.openplanner.team/stops/Lagindu2", "https://tec.openplanner.team/stops/Lkithie2"], ["https://tec.openplanner.team/stops/Bdvminc1", "https://tec.openplanner.team/stops/Bgisber1"], ["https://tec.openplanner.team/stops/LwYkreu2", "https://tec.openplanner.team/stops/LwYkreu4"], ["https://tec.openplanner.team/stops/H1me115a", "https://tec.openplanner.team/stops/H1mm127a"], ["https://tec.openplanner.team/stops/LrApark2", "https://tec.openplanner.team/stops/LrAplat1"], ["https://tec.openplanner.team/stops/Lghflot3", "https://tec.openplanner.team/stops/Lghfore3"], ["https://tec.openplanner.team/stops/Canrtth3", "https://tec.openplanner.team/stops/Cfosurs1"], ["https://tec.openplanner.team/stops/LaMjous1", "https://tec.openplanner.team/stops/LaMjous2"], ["https://tec.openplanner.team/stops/Cfrmonu2", "https://tec.openplanner.team/stops/Cfrmonu5"], ["https://tec.openplanner.team/stops/Bitrpri1", "https://tec.openplanner.team/stops/Bitrpri2"], ["https://tec.openplanner.team/stops/LAmeclu1", "https://tec.openplanner.team/stops/LAmvent1"], ["https://tec.openplanner.team/stops/H4ru244a", "https://tec.openplanner.team/stops/H4ru244b"], ["https://tec.openplanner.team/stops/Lcebois2", "https://tec.openplanner.team/stops/Lceconf2"], ["https://tec.openplanner.team/stops/Cgpmoul2", "https://tec.openplanner.team/stops/Cpcgout1"], ["https://tec.openplanner.team/stops/N501gia", "https://tec.openplanner.team/stops/N501neb"], ["https://tec.openplanner.team/stops/Lvtathe1", "https://tec.openplanner.team/stops/Lvtvici1"], ["https://tec.openplanner.team/stops/X730aga", "https://tec.openplanner.team/stops/X730agb"], ["https://tec.openplanner.team/stops/H1mx123a", "https://tec.openplanner.team/stops/H1mx123b"], ["https://tec.openplanner.team/stops/LaSkape1", "https://tec.openplanner.team/stops/LaSkape2"], ["https://tec.openplanner.team/stops/X738aaa", "https://tec.openplanner.team/stops/X754atb"], ["https://tec.openplanner.team/stops/Bwatgla1", "https://tec.openplanner.team/stops/Bwatsuc1"], ["https://tec.openplanner.team/stops/Bmalwop1", "https://tec.openplanner.team/stops/Bopprju2"], ["https://tec.openplanner.team/stops/Cchicet1", "https://tec.openplanner.team/stops/Clomart1"], ["https://tec.openplanner.team/stops/LHSheur1", "https://tec.openplanner.team/stops/LHStrez1"], ["https://tec.openplanner.team/stops/N506bda", "https://tec.openplanner.team/stops/N506bdb"], ["https://tec.openplanner.team/stops/H4ef110a", "https://tec.openplanner.team/stops/H4ef110b"], ["https://tec.openplanner.team/stops/X836aba", "https://tec.openplanner.team/stops/X837agb"], ["https://tec.openplanner.team/stops/H1mr122a", "https://tec.openplanner.team/stops/H1wi157b"], ["https://tec.openplanner.team/stops/H4bl104b", "https://tec.openplanner.team/stops/H4bl105b"], ["https://tec.openplanner.team/stops/LLrisa-*", "https://tec.openplanner.team/stops/LNOning2"], ["https://tec.openplanner.team/stops/Llgbaro1", "https://tec.openplanner.team/stops/Llghesb1"], ["https://tec.openplanner.team/stops/Bmrsayw1", "https://tec.openplanner.team/stops/Bmrsayw2"], ["https://tec.openplanner.team/stops/Lglcoun2", "https://tec.openplanner.team/stops/Llgavoc2"], ["https://tec.openplanner.team/stops/Lgrclin3", "https://tec.openplanner.team/stops/Lgrclin4"], ["https://tec.openplanner.team/stops/Loubiez3", "https://tec.openplanner.team/stops/Loubour2"], ["https://tec.openplanner.team/stops/Chhdubr1", "https://tec.openplanner.team/stops/Chhegli4"], ["https://tec.openplanner.team/stops/LFAplan1", "https://tec.openplanner.team/stops/LFAplan2"], ["https://tec.openplanner.team/stops/Bsdavpe1", "https://tec.openplanner.team/stops/Csdbosq2"], ["https://tec.openplanner.team/stops/N121aab", "https://tec.openplanner.team/stops/N122adb"], ["https://tec.openplanner.team/stops/LFalieg1", "https://tec.openplanner.team/stops/LFalieg2"], ["https://tec.openplanner.team/stops/LSPther1", "https://tec.openplanner.team/stops/LSPther2"], ["https://tec.openplanner.team/stops/Lcchala2", "https://tec.openplanner.team/stops/Lfhhoul2"], ["https://tec.openplanner.team/stops/LBrec--1", "https://tec.openplanner.team/stops/LBrec--2"], ["https://tec.openplanner.team/stops/Bwatric1", "https://tec.openplanner.team/stops/Bwatzod1"], ["https://tec.openplanner.team/stops/X659axa", "https://tec.openplanner.team/stops/X672aja"], ["https://tec.openplanner.team/stops/N120aja", "https://tec.openplanner.team/stops/N158aba"], ["https://tec.openplanner.team/stops/LBgbaga2", "https://tec.openplanner.team/stops/LBgnach2"], ["https://tec.openplanner.team/stops/Bbgeegl2", "https://tec.openplanner.team/stops/Bbgewal2"], ["https://tec.openplanner.team/stops/H2hl113a", "https://tec.openplanner.team/stops/H2pe156b"], ["https://tec.openplanner.team/stops/X994aga", "https://tec.openplanner.team/stops/X995aga"], ["https://tec.openplanner.team/stops/H4bo121a", "https://tec.openplanner.team/stops/H4ea132a"], ["https://tec.openplanner.team/stops/H4ff117a", "https://tec.openplanner.team/stops/H4ff121a"], ["https://tec.openplanner.team/stops/H1au102b", "https://tec.openplanner.team/stops/H1mr123b"], ["https://tec.openplanner.team/stops/Cgzmarb2", "https://tec.openplanner.team/stops/Cgzvivi2"], ["https://tec.openplanner.team/stops/LaLkabi1", "https://tec.openplanner.team/stops/LmAaldr1"], ["https://tec.openplanner.team/stops/X808ajb", "https://tec.openplanner.team/stops/X850adb"], ["https://tec.openplanner.team/stops/Bgnvpap2", "https://tec.openplanner.team/stops/Bgnvpos1"], ["https://tec.openplanner.team/stops/LSznoel2", "https://tec.openplanner.team/stops/N506bua"], ["https://tec.openplanner.team/stops/X921aka", "https://tec.openplanner.team/stops/X921arb"], ["https://tec.openplanner.team/stops/LHXmonu1", "https://tec.openplanner.team/stops/LSMchat1"], ["https://tec.openplanner.team/stops/Bmsgeco2", "https://tec.openplanner.team/stops/Bmsgmon1"], ["https://tec.openplanner.team/stops/N201amb", "https://tec.openplanner.team/stops/N211ana"], ["https://tec.openplanner.team/stops/LmUkape1", "https://tec.openplanner.team/stops/LmUvilz1"], ["https://tec.openplanner.team/stops/N531aqa", "https://tec.openplanner.team/stops/N531asa"], ["https://tec.openplanner.team/stops/N254aab", "https://tec.openplanner.team/stops/N570aba"], ["https://tec.openplanner.team/stops/LGeschr1", "https://tec.openplanner.team/stops/LGeschr2"], ["https://tec.openplanner.team/stops/Louaout1", "https://tec.openplanner.team/stops/Loujouh2"], ["https://tec.openplanner.team/stops/N302aba", "https://tec.openplanner.team/stops/N302abb"], ["https://tec.openplanner.team/stops/Lveinva2", "https://tec.openplanner.team/stops/Lvereno1"], ["https://tec.openplanner.team/stops/Cgobl%C3%A9r1", "https://tec.openplanner.team/stops/Cgoulb1"], ["https://tec.openplanner.team/stops/X742aca", "https://tec.openplanner.team/stops/X742ada"], ["https://tec.openplanner.team/stops/H1po137b", "https://tec.openplanner.team/stops/H1po138b"], ["https://tec.openplanner.team/stops/LOVhetr2", "https://tec.openplanner.team/stops/LSomonu2"], ["https://tec.openplanner.team/stops/X901aka", "https://tec.openplanner.team/stops/X901aob"], ["https://tec.openplanner.team/stops/X615arb", "https://tec.openplanner.team/stops/X626ala"], ["https://tec.openplanner.team/stops/Lhrlaix2", "https://tec.openplanner.team/stops/Lhrsimo1"], ["https://tec.openplanner.team/stops/X756acb", "https://tec.openplanner.team/stops/X756aib"], ["https://tec.openplanner.team/stops/H1ms261a", "https://tec.openplanner.team/stops/H1ms261b"], ["https://tec.openplanner.team/stops/LFOchab1", "https://tec.openplanner.team/stops/LFOchpl1"], ["https://tec.openplanner.team/stops/X812ana", "https://tec.openplanner.team/stops/X812aqa"], ["https://tec.openplanner.team/stops/X739ada", "https://tec.openplanner.team/stops/X739aeb"], ["https://tec.openplanner.team/stops/LLC170-1", "https://tec.openplanner.team/stops/LLC170-2"], ["https://tec.openplanner.team/stops/LTrmort2", "https://tec.openplanner.team/stops/LTrrich2"], ["https://tec.openplanner.team/stops/N390ama", "https://tec.openplanner.team/stops/N390amb"], ["https://tec.openplanner.team/stops/Bbrlpar2", "https://tec.openplanner.team/stops/Bhaless1"], ["https://tec.openplanner.team/stops/Btubeur1", "https://tec.openplanner.team/stops/Btubmar1"], ["https://tec.openplanner.team/stops/H1ci102b", "https://tec.openplanner.team/stops/H1mv242b"], ["https://tec.openplanner.team/stops/N385aaa", "https://tec.openplanner.team/stops/N385aec"], ["https://tec.openplanner.team/stops/Blhugar2", "https://tec.openplanner.team/stops/Blhupcl2"], ["https://tec.openplanner.team/stops/Btubnav1", "https://tec.openplanner.team/stops/Btubsam1"], ["https://tec.openplanner.team/stops/H2ha127b", "https://tec.openplanner.team/stops/H2ha143b"], ["https://tec.openplanner.team/stops/LOucarr2", "https://tec.openplanner.team/stops/LWZponb2"], ["https://tec.openplanner.team/stops/H2lc171b", "https://tec.openplanner.team/stops/H2ll200b"], ["https://tec.openplanner.team/stops/N524aja", "https://tec.openplanner.team/stops/N524alb"], ["https://tec.openplanner.team/stops/LeUauto1", "https://tec.openplanner.team/stops/LeUdepo1"], ["https://tec.openplanner.team/stops/LDmhave1", "https://tec.openplanner.team/stops/LVEmoul1"], ["https://tec.openplanner.team/stops/LDObell2", "https://tec.openplanner.team/stops/LDOprev1"], ["https://tec.openplanner.team/stops/H2ch102b", "https://tec.openplanner.team/stops/H2ch112a"], ["https://tec.openplanner.team/stops/Ccigill1", "https://tec.openplanner.team/stops/NC02avb"], ["https://tec.openplanner.team/stops/Ldihvce2", "https://tec.openplanner.team/stops/Ldijean2"], ["https://tec.openplanner.team/stops/LkEkric1", "https://tec.openplanner.team/stops/LMspont1"], ["https://tec.openplanner.team/stops/N532aba", "https://tec.openplanner.team/stops/N532abb"], ["https://tec.openplanner.team/stops/Cmechnd1", "https://tec.openplanner.team/stops/Cmechnd2"], ["https://tec.openplanner.team/stops/X769anb", "https://tec.openplanner.team/stops/X769aob"], ["https://tec.openplanner.team/stops/X663aub", "https://tec.openplanner.team/stops/X667aaa"], ["https://tec.openplanner.team/stops/X949aea", "https://tec.openplanner.team/stops/X949ala"], ["https://tec.openplanner.team/stops/H5at104a", "https://tec.openplanner.team/stops/H5at119a"], ["https://tec.openplanner.team/stops/N211ahb", "https://tec.openplanner.team/stops/N211ala"], ["https://tec.openplanner.team/stops/N501jga", "https://tec.openplanner.team/stops/N521aea"], ["https://tec.openplanner.team/stops/N501dwb", "https://tec.openplanner.team/stops/N501kmz"], ["https://tec.openplanner.team/stops/LLefali1", "https://tec.openplanner.team/stops/X547asa"], ["https://tec.openplanner.team/stops/Btstbbu1", "https://tec.openplanner.team/stops/Bwlhswc2"], ["https://tec.openplanner.team/stops/H1og130b", "https://tec.openplanner.team/stops/H5wo122b"], ["https://tec.openplanner.team/stops/X342afa", "https://tec.openplanner.team/stops/X342afb"], ["https://tec.openplanner.team/stops/H1bo150a", "https://tec.openplanner.team/stops/H1bo150b"], ["https://tec.openplanner.team/stops/X870aba", "https://tec.openplanner.team/stops/X870aia"], ["https://tec.openplanner.team/stops/Lvehodi4", "https://tec.openplanner.team/stops/Lveptle4"], ["https://tec.openplanner.team/stops/Lannico2", "https://tec.openplanner.team/stops/Lanpisc2"], ["https://tec.openplanner.team/stops/N531aab", "https://tec.openplanner.team/stops/N532ama"], ["https://tec.openplanner.team/stops/X615aya", "https://tec.openplanner.team/stops/X615aza"], ["https://tec.openplanner.team/stops/Lflweri1", "https://tec.openplanner.team/stops/Lrecroi2"], ["https://tec.openplanner.team/stops/X719abb", "https://tec.openplanner.team/stops/X733acb"], ["https://tec.openplanner.team/stops/H1fv103a", "https://tec.openplanner.team/stops/H1mc128a"], ["https://tec.openplanner.team/stops/LWscona2", "https://tec.openplanner.team/stops/LWSstat1"], ["https://tec.openplanner.team/stops/N230aca", "https://tec.openplanner.team/stops/N230ahb"], ["https://tec.openplanner.team/stops/Lbrchur2", "https://tec.openplanner.team/stops/Lbrmc--2"], ["https://tec.openplanner.team/stops/Bclgbvi1", "https://tec.openplanner.team/stops/Bclgpla2"], ["https://tec.openplanner.team/stops/Bhalath1", "https://tec.openplanner.team/stops/Bhalkrk1"], ["https://tec.openplanner.team/stops/LSZlegr2", "https://tec.openplanner.team/stops/LSZroqu2"], ["https://tec.openplanner.team/stops/X872aga", "https://tec.openplanner.team/stops/X872agb"], ["https://tec.openplanner.team/stops/Bolgrsa2", "https://tec.openplanner.team/stops/Bolgsha1"], ["https://tec.openplanner.team/stops/X902bba", "https://tec.openplanner.team/stops/X902bbb"], ["https://tec.openplanner.team/stops/H4eh102b", "https://tec.openplanner.team/stops/H4he101b"], ["https://tec.openplanner.team/stops/N131afa", "https://tec.openplanner.team/stops/N131agb"], ["https://tec.openplanner.team/stops/H3th126b", "https://tec.openplanner.team/stops/H3th127a"], ["https://tec.openplanner.team/stops/H1mq198a", "https://tec.openplanner.team/stops/H5is170b"], ["https://tec.openplanner.team/stops/Csychap3", "https://tec.openplanner.team/stops/Csychap4"], ["https://tec.openplanner.team/stops/LTHjevo1", "https://tec.openplanner.team/stops/LTHjevo2"], ["https://tec.openplanner.team/stops/X902baa", "https://tec.openplanner.team/stops/X902bab"], ["https://tec.openplanner.team/stops/N122afb", "https://tec.openplanner.team/stops/N122aga"], ["https://tec.openplanner.team/stops/LOLfoss1", "https://tec.openplanner.team/stops/LSOdow%C3%A91"], ["https://tec.openplanner.team/stops/LAWroug1", "https://tec.openplanner.team/stops/Llocime2"], ["https://tec.openplanner.team/stops/Bcbqegl1", "https://tec.openplanner.team/stops/Btubcal1"], ["https://tec.openplanner.team/stops/Csbplac1", "https://tec.openplanner.team/stops/H1sa115a"], ["https://tec.openplanner.team/stops/H5bl117a", "https://tec.openplanner.team/stops/H5qu143b"], ["https://tec.openplanner.team/stops/X739aba", "https://tec.openplanner.team/stops/X739abb"], ["https://tec.openplanner.team/stops/LOReg--2", "https://tec.openplanner.team/stops/LORruis1"], ["https://tec.openplanner.team/stops/Ctipoui1", "https://tec.openplanner.team/stops/Ctipoui2"], ["https://tec.openplanner.team/stops/N204ada", "https://tec.openplanner.team/stops/N204adb"], ["https://tec.openplanner.team/stops/X992aca", "https://tec.openplanner.team/stops/X993aga"], ["https://tec.openplanner.team/stops/H1qu116a", "https://tec.openplanner.team/stops/H1qu116c"], ["https://tec.openplanner.team/stops/Loucoti1", "https://tec.openplanner.team/stops/Loudemo2"], ["https://tec.openplanner.team/stops/X757aca", "https://tec.openplanner.team/stops/X757adb"], ["https://tec.openplanner.team/stops/Bsjgegl2", "https://tec.openplanner.team/stops/Bzluegl2"], ["https://tec.openplanner.team/stops/X801baa", "https://tec.openplanner.team/stops/X801cja"], ["https://tec.openplanner.team/stops/Cjxegli1", "https://tec.openplanner.team/stops/Cjxplac1"], ["https://tec.openplanner.team/stops/LGLspor1", "https://tec.openplanner.team/stops/LGLspor2"], ["https://tec.openplanner.team/stops/Bplnfpa1", "https://tec.openplanner.team/stops/Bplnfpa2"], ["https://tec.openplanner.team/stops/Lghencl1", "https://tec.openplanner.team/stops/Lghfore3"], ["https://tec.openplanner.team/stops/X946aib", "https://tec.openplanner.team/stops/X948acb"], ["https://tec.openplanner.team/stops/H1bg110a", "https://tec.openplanner.team/stops/H1mx122b"], ["https://tec.openplanner.team/stops/LaMhe421", "https://tec.openplanner.team/stops/LaMwies2"], ["https://tec.openplanner.team/stops/X657agb", "https://tec.openplanner.team/stops/X657ahb"], ["https://tec.openplanner.team/stops/H1pa103b", "https://tec.openplanner.team/stops/H1wa163a"], ["https://tec.openplanner.team/stops/H4fo115a", "https://tec.openplanner.team/stops/H4fo116b"], ["https://tec.openplanner.team/stops/Lseptsa1", "https://tec.openplanner.team/stops/Lseptsa2"], ["https://tec.openplanner.team/stops/H1cu113a", "https://tec.openplanner.team/stops/H1hn202a"], ["https://tec.openplanner.team/stops/H4mo146b", "https://tec.openplanner.team/stops/H4mo182a"], ["https://tec.openplanner.team/stops/Brsgece1", "https://tec.openplanner.team/stops/Brsgfso1"], ["https://tec.openplanner.team/stops/Blempuc1", "https://tec.openplanner.team/stops/Btubmar2"], ["https://tec.openplanner.team/stops/H2ha129b", "https://tec.openplanner.team/stops/H2ha136c"], ["https://tec.openplanner.team/stops/LSTgran1", "https://tec.openplanner.team/stops/LSTparf1"], ["https://tec.openplanner.team/stops/N201aaa", "https://tec.openplanner.team/stops/N201aca"], ["https://tec.openplanner.team/stops/H4ma419b", "https://tec.openplanner.team/stops/H4ma420a"], ["https://tec.openplanner.team/stops/Bgdhbvu2", "https://tec.openplanner.team/stops/Bhantui1"], ["https://tec.openplanner.team/stops/H2pe161b", "https://tec.openplanner.team/stops/H2pe162b"], ["https://tec.openplanner.team/stops/X742aea", "https://tec.openplanner.team/stops/X743aab"], ["https://tec.openplanner.team/stops/Ccisolv1", "https://tec.openplanner.team/stops/Ccisolv2"], ["https://tec.openplanner.team/stops/LVleg--1", "https://tec.openplanner.team/stops/LVltige1"], ["https://tec.openplanner.team/stops/Cdacolu1", "https://tec.openplanner.team/stops/Cdapige1"], ["https://tec.openplanner.team/stops/Lprcard1", "https://tec.openplanner.team/stops/Lprmoin1"], ["https://tec.openplanner.team/stops/Cronova1", "https://tec.openplanner.team/stops/Cronova2"], ["https://tec.openplanner.team/stops/N524afa", "https://tec.openplanner.team/stops/N524afb"], ["https://tec.openplanner.team/stops/LCEinst2", "https://tec.openplanner.team/stops/LCEplac2"], ["https://tec.openplanner.team/stops/LMschap1", "https://tec.openplanner.team/stops/LMschap2"], ["https://tec.openplanner.team/stops/N160adb", "https://tec.openplanner.team/stops/N160aga"], ["https://tec.openplanner.team/stops/Barcast1", "https://tec.openplanner.team/stops/Barcbav1"], ["https://tec.openplanner.team/stops/N557aia", "https://tec.openplanner.team/stops/N557aib"], ["https://tec.openplanner.team/stops/Ladandr2", "https://tec.openplanner.team/stops/Ldidefo1"], ["https://tec.openplanner.team/stops/Bboseco2", "https://tec.openplanner.team/stops/Bgoekaz2"], ["https://tec.openplanner.team/stops/Llgbaro4", "https://tec.openplanner.team/stops/Llgjose1"], ["https://tec.openplanner.team/stops/LBscime1", "https://tec.openplanner.team/stops/NL73aea"], ["https://tec.openplanner.team/stops/Bhmmcge1", "https://tec.openplanner.team/stops/Bhmmlad1"], ["https://tec.openplanner.team/stops/N155aia", "https://tec.openplanner.team/stops/N155ajb"], ["https://tec.openplanner.team/stops/H1bn114a", "https://tec.openplanner.team/stops/H1bn148a"], ["https://tec.openplanner.team/stops/X903afa", "https://tec.openplanner.team/stops/X943agb"], ["https://tec.openplanner.team/stops/N202aaa", "https://tec.openplanner.team/stops/N202aga"], ["https://tec.openplanner.team/stops/LLteg--2", "https://tec.openplanner.team/stops/LLtwanz2"], ["https://tec.openplanner.team/stops/H4ln128a", "https://tec.openplanner.team/stops/H4ne141a"], ["https://tec.openplanner.team/stops/LFmgeno2", "https://tec.openplanner.team/stops/LFmroye2"], ["https://tec.openplanner.team/stops/Ccohotv1", "https://tec.openplanner.team/stops/Ccohuli1"], ["https://tec.openplanner.team/stops/H4fr144a", "https://tec.openplanner.team/stops/H4fr393a"], ["https://tec.openplanner.team/stops/Cbfchla2", "https://tec.openplanner.team/stops/NC11aka"], ["https://tec.openplanner.team/stops/N536adb", "https://tec.openplanner.team/stops/N536aeb"], ["https://tec.openplanner.team/stops/Lghsimo2", "https://tec.openplanner.team/stops/Lghsimo3"], ["https://tec.openplanner.team/stops/H1at110b", "https://tec.openplanner.team/stops/H1fy142a"], ["https://tec.openplanner.team/stops/X806aga", "https://tec.openplanner.team/stops/X806agb"], ["https://tec.openplanner.team/stops/LSTrema1", "https://tec.openplanner.team/stops/LSTrema2"], ["https://tec.openplanner.team/stops/Lanplat2", "https://tec.openplanner.team/stops/Lanyser2"], ["https://tec.openplanner.team/stops/LBTchai4", "https://tec.openplanner.team/stops/LBThaut2"], ["https://tec.openplanner.team/stops/Lkiblan1", "https://tec.openplanner.team/stops/Lkiblan2"], ["https://tec.openplanner.team/stops/LHUsart1", "https://tec.openplanner.team/stops/NL76bcb"], ["https://tec.openplanner.team/stops/LVLcent1", "https://tec.openplanner.team/stops/LVLeg--1"], ["https://tec.openplanner.team/stops/LDLboul1", "https://tec.openplanner.team/stops/LDLheid2"], ["https://tec.openplanner.team/stops/Bniv4co1", "https://tec.openplanner.team/stops/Bnivga11"], ["https://tec.openplanner.team/stops/N232bza", "https://tec.openplanner.team/stops/N232cdb"], ["https://tec.openplanner.team/stops/H2sb232b", "https://tec.openplanner.team/stops/H3th134b"], ["https://tec.openplanner.team/stops/LAMvert1", "https://tec.openplanner.team/stops/LOmvill1"], ["https://tec.openplanner.team/stops/H1ho129a", "https://tec.openplanner.team/stops/H1te174a"], ["https://tec.openplanner.team/stops/Bhticbr2", "https://tec.openplanner.team/stops/Bhtirin2"], ["https://tec.openplanner.team/stops/Brebchb1", "https://tec.openplanner.team/stops/Brebpca1"], ["https://tec.openplanner.team/stops/LJeeg--1", "https://tec.openplanner.team/stops/LJelava1"], ["https://tec.openplanner.team/stops/N501eda", "https://tec.openplanner.team/stops/N501gkb"], ["https://tec.openplanner.team/stops/H4bh104b", "https://tec.openplanner.team/stops/H4jm117a"], ["https://tec.openplanner.team/stops/H1te177a", "https://tec.openplanner.team/stops/H1te190a"], ["https://tec.openplanner.team/stops/Lflhott2", "https://tec.openplanner.team/stops/Lflrhot2"], ["https://tec.openplanner.team/stops/Blimd672", "https://tec.openplanner.team/stops/Blimsob2"], ["https://tec.openplanner.team/stops/H1bl105b", "https://tec.openplanner.team/stops/H1eq116a"], ["https://tec.openplanner.team/stops/N360adb", "https://tec.openplanner.team/stops/N360adc"], ["https://tec.openplanner.team/stops/H1bo100a", "https://tec.openplanner.team/stops/H1bo112b"], ["https://tec.openplanner.team/stops/X364aca", "https://tec.openplanner.team/stops/X364acb"], ["https://tec.openplanner.team/stops/LLVboss1", "https://tec.openplanner.team/stops/X575abb"], ["https://tec.openplanner.team/stops/Cgopier2", "https://tec.openplanner.team/stops/CMfbru2"], ["https://tec.openplanner.team/stops/Bchgegl2", "https://tec.openplanner.team/stops/Bchgvil1"], ["https://tec.openplanner.team/stops/Bwatchb1", "https://tec.openplanner.team/stops/Bwateco1"], ["https://tec.openplanner.team/stops/N101aka", "https://tec.openplanner.team/stops/N101alb"], ["https://tec.openplanner.team/stops/X609aca", "https://tec.openplanner.team/stops/X609aea"], ["https://tec.openplanner.team/stops/Bquebth1", "https://tec.openplanner.team/stops/Brebeau1"], ["https://tec.openplanner.team/stops/N103acc", "https://tec.openplanner.team/stops/N103afb"], ["https://tec.openplanner.team/stops/Ljeheur1", "https://tec.openplanner.team/stops/Ljemake1"], ["https://tec.openplanner.team/stops/H2pe159a", "https://tec.openplanner.team/stops/H2re166a"], ["https://tec.openplanner.team/stops/LHCbois6", "https://tec.openplanner.team/stops/LHCprog2"], ["https://tec.openplanner.team/stops/H5pe151a", "https://tec.openplanner.team/stops/H5pe151b"], ["https://tec.openplanner.team/stops/H1ch132a", "https://tec.openplanner.team/stops/H5at109a"], ["https://tec.openplanner.team/stops/H1gc124a", "https://tec.openplanner.team/stops/H1gc124b"], ["https://tec.openplanner.team/stops/Bbxlmid1", "https://tec.openplanner.team/stops/Bucccal3"], ["https://tec.openplanner.team/stops/LBlplac1", "https://tec.openplanner.team/stops/LSEec--1"], ["https://tec.openplanner.team/stops/X640aob", "https://tec.openplanner.team/stops/X640apb"], ["https://tec.openplanner.team/stops/Bchgegl1", "https://tec.openplanner.team/stops/Bchgrco2"], ["https://tec.openplanner.team/stops/LAYharz1", "https://tec.openplanner.team/stops/LAYthir1"], ["https://tec.openplanner.team/stops/Cmlchan2", "https://tec.openplanner.team/stops/Cmltomb2"], ["https://tec.openplanner.team/stops/Cwgmart1", "https://tec.openplanner.team/stops/Cwgmell1"], ["https://tec.openplanner.team/stops/H1gr120b", "https://tec.openplanner.team/stops/H1gr123b"], ["https://tec.openplanner.team/stops/X642aab", "https://tec.openplanner.team/stops/X643aba"], ["https://tec.openplanner.team/stops/Lprceri2", "https://tec.openplanner.team/stops/Lprchat2"], ["https://tec.openplanner.team/stops/X986aha", "https://tec.openplanner.team/stops/X986ahb"], ["https://tec.openplanner.team/stops/X639aeb", "https://tec.openplanner.team/stops/X639aua"], ["https://tec.openplanner.team/stops/Barchoc1", "https://tec.openplanner.team/stops/Barchoc2"], ["https://tec.openplanner.team/stops/N519aad", "https://tec.openplanner.team/stops/N519aca"], ["https://tec.openplanner.team/stops/LLRbleh1", "https://tec.openplanner.team/stops/LLRgdma1"], ["https://tec.openplanner.team/stops/LGlcarr1", "https://tec.openplanner.team/stops/LGlcite1"], ["https://tec.openplanner.team/stops/LAieg--3", "https://tec.openplanner.team/stops/LGlcarr2"], ["https://tec.openplanner.team/stops/H4co144a", "https://tec.openplanner.team/stops/H4co144b"], ["https://tec.openplanner.team/stops/H4ru242a", "https://tec.openplanner.team/stops/H4ru244b"], ["https://tec.openplanner.team/stops/LSeec--3", "https://tec.openplanner.team/stops/LSegott1"], ["https://tec.openplanner.team/stops/LXofont2", "https://tec.openplanner.team/stops/X599afc"], ["https://tec.openplanner.team/stops/Lfhpast1", "https://tec.openplanner.team/stops/Lfhweri1"], ["https://tec.openplanner.team/stops/X899aba", "https://tec.openplanner.team/stops/X899adb"], ["https://tec.openplanner.team/stops/X672aeb", "https://tec.openplanner.team/stops/X672apa"], ["https://tec.openplanner.team/stops/X681aca", "https://tec.openplanner.team/stops/X681aha"], ["https://tec.openplanner.team/stops/Baegpon4", "https://tec.openplanner.team/stops/Bramgar1"], ["https://tec.openplanner.team/stops/X793afd", "https://tec.openplanner.team/stops/X793aqa"], ["https://tec.openplanner.team/stops/Cauptsa2", "https://tec.openplanner.team/stops/Ctaallo1"], ["https://tec.openplanner.team/stops/H1ms276a", "https://tec.openplanner.team/stops/H1ms287a"], ["https://tec.openplanner.team/stops/Lvedepo*", "https://tec.openplanner.team/stops/Lvelieg2"], ["https://tec.openplanner.team/stops/Bcbqhai2", "https://tec.openplanner.team/stops/Bcbqrog1"], ["https://tec.openplanner.team/stops/Lhuderu1", "https://tec.openplanner.team/stops/Lhutill1"], ["https://tec.openplanner.team/stops/LDAchau1", "https://tec.openplanner.team/stops/LDAptbo1"], ["https://tec.openplanner.team/stops/Cmesafi1", "https://tec.openplanner.team/stops/Cwgmart2"], ["https://tec.openplanner.team/stops/LHTcerc4", "https://tec.openplanner.team/stops/LHTmonu1"], ["https://tec.openplanner.team/stops/H1mj129b", "https://tec.openplanner.team/stops/H1ml111a"], ["https://tec.openplanner.team/stops/Bnilwal2", "https://tec.openplanner.team/stops/Bwspjon1"], ["https://tec.openplanner.team/stops/H1ms254a", "https://tec.openplanner.team/stops/H1ms254e"], ["https://tec.openplanner.team/stops/Llgborn1", "https://tec.openplanner.team/stops/Llghenr1"], ["https://tec.openplanner.team/stops/LsVmolk1", "https://tec.openplanner.team/stops/LsVsage2"], ["https://tec.openplanner.team/stops/H1gg114a", "https://tec.openplanner.team/stops/H1gg115a"], ["https://tec.openplanner.team/stops/X634acb", "https://tec.openplanner.team/stops/X634aha"], ["https://tec.openplanner.team/stops/Ljuauto1", "https://tec.openplanner.team/stops/Ljufore1"], ["https://tec.openplanner.team/stops/Ccipano2", "https://tec.openplanner.team/stops/Ccisart2"], ["https://tec.openplanner.team/stops/Llgbene1", "https://tec.openplanner.team/stops/Llgphol1"], ["https://tec.openplanner.team/stops/Clggrfe1", "https://tec.openplanner.team/stops/Clggrfe2"], ["https://tec.openplanner.team/stops/LHSlava1", "https://tec.openplanner.team/stops/LHSvina2"], ["https://tec.openplanner.team/stops/Lfhcoop1", "https://tec.openplanner.team/stops/Lfhpast1"], ["https://tec.openplanner.team/stops/N222ada", "https://tec.openplanner.team/stops/X919ama"], ["https://tec.openplanner.team/stops/X879aia", "https://tec.openplanner.team/stops/X879aob"], ["https://tec.openplanner.team/stops/LLOcreu1", "https://tec.openplanner.team/stops/LLOspin1"], ["https://tec.openplanner.team/stops/LnUcamp2", "https://tec.openplanner.team/stops/LnUhohe2"], ["https://tec.openplanner.team/stops/LRmhage6", "https://tec.openplanner.team/stops/LRmhage7"], ["https://tec.openplanner.team/stops/X756ada", "https://tec.openplanner.team/stops/X756aea"], ["https://tec.openplanner.team/stops/Btancre1", "https://tec.openplanner.team/stops/Btannda2"], ["https://tec.openplanner.team/stops/X637agc", "https://tec.openplanner.team/stops/X637ajb"], ["https://tec.openplanner.team/stops/Livgera6", "https://tec.openplanner.team/stops/Livmoul2"], ["https://tec.openplanner.team/stops/LGLeg--1", "https://tec.openplanner.team/stops/LGLgeer1"], ["https://tec.openplanner.team/stops/H4ha171b", "https://tec.openplanner.team/stops/H4me213a"], ["https://tec.openplanner.team/stops/N535acd", "https://tec.openplanner.team/stops/N535afa"], ["https://tec.openplanner.team/stops/H1bo108c", "https://tec.openplanner.team/stops/H1bo108d"], ["https://tec.openplanner.team/stops/LRRchea1", "https://tec.openplanner.team/stops/LRRchea4"], ["https://tec.openplanner.team/stops/N390acb", "https://tec.openplanner.team/stops/X390akb"], ["https://tec.openplanner.team/stops/LNCsart1", "https://tec.openplanner.team/stops/LNCsart2"], ["https://tec.openplanner.team/stops/H4eh101a", "https://tec.openplanner.team/stops/H4wg121b"], ["https://tec.openplanner.team/stops/N308aaa", "https://tec.openplanner.team/stops/N308acb"], ["https://tec.openplanner.team/stops/H1bl105a", "https://tec.openplanner.team/stops/H1do126a"], ["https://tec.openplanner.team/stops/Bbcoeco1", "https://tec.openplanner.team/stops/Bbcogar2"], ["https://tec.openplanner.team/stops/H4ft134a", "https://tec.openplanner.team/stops/H4ma200a"], ["https://tec.openplanner.team/stops/Ljeblum1", "https://tec.openplanner.team/stops/Ljedepa2"], ["https://tec.openplanner.team/stops/Bbgnton1", "https://tec.openplanner.team/stops/Cvscomb1"], ["https://tec.openplanner.team/stops/N540aia", "https://tec.openplanner.team/stops/N540ala"], ["https://tec.openplanner.team/stops/N127ada", "https://tec.openplanner.team/stops/N127aia"], ["https://tec.openplanner.team/stops/LJAwerf1", "https://tec.openplanner.team/stops/LSWeg--3"], ["https://tec.openplanner.team/stops/Cpccpas2", "https://tec.openplanner.team/stops/Cpclarm2"], ["https://tec.openplanner.team/stops/X681afa", "https://tec.openplanner.team/stops/X687ajb"], ["https://tec.openplanner.team/stops/N351agb", "https://tec.openplanner.team/stops/X351aba"], ["https://tec.openplanner.team/stops/X754aca", "https://tec.openplanner.team/stops/X754arb"], ["https://tec.openplanner.team/stops/H1mh112a", "https://tec.openplanner.team/stops/H1tl121a"], ["https://tec.openplanner.team/stops/LLrc1652", "https://tec.openplanner.team/stops/LLrrmaq1"], ["https://tec.openplanner.team/stops/Ladlimi1", "https://tec.openplanner.team/stops/Lvelimi2"], ["https://tec.openplanner.team/stops/Bbstegl2", "https://tec.openplanner.team/stops/Cbtlong1"], ["https://tec.openplanner.team/stops/LBTnors2", "https://tec.openplanner.team/stops/LBTxhen4"], ["https://tec.openplanner.team/stops/Bnivall1", "https://tec.openplanner.team/stops/Bnivall2"], ["https://tec.openplanner.team/stops/N520aja", "https://tec.openplanner.team/stops/N520ajb"], ["https://tec.openplanner.team/stops/X793acb", "https://tec.openplanner.team/stops/X793ada"], ["https://tec.openplanner.team/stops/LFRgode2", "https://tec.openplanner.team/stops/LFRspa-2"], ["https://tec.openplanner.team/stops/N135afa", "https://tec.openplanner.team/stops/N135bba"], ["https://tec.openplanner.team/stops/Cgnpass1", "https://tec.openplanner.team/stops/Cgnpass2"], ["https://tec.openplanner.team/stops/LBIpost1", "https://tec.openplanner.team/stops/Lghreyn2"], ["https://tec.openplanner.team/stops/X812afb", "https://tec.openplanner.team/stops/X812aia"], ["https://tec.openplanner.team/stops/Bbeamon1", "https://tec.openplanner.team/stops/Bbeasta2"], ["https://tec.openplanner.team/stops/N506arb", "https://tec.openplanner.team/stops/N506ava"], ["https://tec.openplanner.team/stops/LrAbe602", "https://tec.openplanner.team/stops/LrAneus2"], ["https://tec.openplanner.team/stops/LHChaut5", "https://tec.openplanner.team/stops/LHCponc3"], ["https://tec.openplanner.team/stops/Bjanegl3", "https://tec.openplanner.team/stops/NR30abb"], ["https://tec.openplanner.team/stops/X354aha", "https://tec.openplanner.team/stops/X354aia"], ["https://tec.openplanner.team/stops/LBNlong1", "https://tec.openplanner.team/stops/LMemaza2"], ["https://tec.openplanner.team/stops/LSInd--2", "https://tec.openplanner.team/stops/LTEnuro1"], ["https://tec.openplanner.team/stops/Cfmchau1", "https://tec.openplanner.team/stops/Cfmpui81"], ["https://tec.openplanner.team/stops/H4bo117b", "https://tec.openplanner.team/stops/H4hu113a"], ["https://tec.openplanner.team/stops/LBachpl2", "https://tec.openplanner.team/stops/LBavive2"], ["https://tec.openplanner.team/stops/LBPmili1", "https://tec.openplanner.team/stops/LBPmili2"], ["https://tec.openplanner.team/stops/LSyec--1", "https://tec.openplanner.team/stops/LSyeg--1"], ["https://tec.openplanner.team/stops/N515ana", "https://tec.openplanner.team/stops/N516aob"], ["https://tec.openplanner.team/stops/H4li179c", "https://tec.openplanner.team/stops/H4li179d"], ["https://tec.openplanner.team/stops/X723aja", "https://tec.openplanner.team/stops/X723aka"], ["https://tec.openplanner.team/stops/X999aib", "https://tec.openplanner.team/stops/X999apb"], ["https://tec.openplanner.team/stops/N547aaa", "https://tec.openplanner.team/stops/N548aab"], ["https://tec.openplanner.team/stops/Lhr1ave2", "https://tec.openplanner.team/stops/Lhrunir2"], ["https://tec.openplanner.team/stops/X614awb", "https://tec.openplanner.team/stops/X615bha"], ["https://tec.openplanner.team/stops/H2hp124c", "https://tec.openplanner.team/stops/H2pe156b"], ["https://tec.openplanner.team/stops/LHSlava2", "https://tec.openplanner.team/stops/LRGbett3"], ["https://tec.openplanner.team/stops/Cmyedpa1", "https://tec.openplanner.team/stops/Cmyvesa1"], ["https://tec.openplanner.team/stops/X869adb", "https://tec.openplanner.team/stops/X882aga"], ["https://tec.openplanner.team/stops/Blilgar1", "https://tec.openplanner.team/stops/Blilton1"], ["https://tec.openplanner.team/stops/LVlleno2", "https://tec.openplanner.team/stops/LVlroua4"], ["https://tec.openplanner.team/stops/LHMhind1", "https://tec.openplanner.team/stops/LMNswar2"], ["https://tec.openplanner.team/stops/Lghgend1", "https://tec.openplanner.team/stops/Lghomni2"], ["https://tec.openplanner.team/stops/H1au114a", "https://tec.openplanner.team/stops/H1au114b"], ["https://tec.openplanner.team/stops/X939aab", "https://tec.openplanner.team/stops/X939aba"], ["https://tec.openplanner.team/stops/X812baa", "https://tec.openplanner.team/stops/X812bbb"], ["https://tec.openplanner.team/stops/X660agb", "https://tec.openplanner.team/stops/X660aja"], ["https://tec.openplanner.team/stops/LBscasi1", "https://tec.openplanner.team/stops/LBscasi2"], ["https://tec.openplanner.team/stops/LTOplac1", "https://tec.openplanner.team/stops/LTOplac2"], ["https://tec.openplanner.team/stops/X661aea", "https://tec.openplanner.team/stops/X661atb"], ["https://tec.openplanner.team/stops/H4do103a", "https://tec.openplanner.team/stops/H4ev119a"], ["https://tec.openplanner.team/stops/H4mo135a", "https://tec.openplanner.team/stops/H4mo149a"], ["https://tec.openplanner.team/stops/Bwatath3", "https://tec.openplanner.team/stops/Bwatdco1"], ["https://tec.openplanner.team/stops/LJAcent2", "https://tec.openplanner.team/stops/LJAherb2"], ["https://tec.openplanner.team/stops/LlOdrei2", "https://tec.openplanner.team/stops/LlOkreu2"], ["https://tec.openplanner.team/stops/X614aua", "https://tec.openplanner.team/stops/X614avb"], ["https://tec.openplanner.team/stops/Bmrlegl2", "https://tec.openplanner.team/stops/Bnodegl1"], ["https://tec.openplanner.team/stops/H1mk123a", "https://tec.openplanner.team/stops/H1mk123b"], ["https://tec.openplanner.team/stops/LMttrou2", "https://tec.openplanner.team/stops/LSdbote2"], ["https://tec.openplanner.team/stops/Cnadrev2", "https://tec.openplanner.team/stops/NC14aea"], ["https://tec.openplanner.team/stops/X721ama", "https://tec.openplanner.team/stops/X721amb"], ["https://tec.openplanner.team/stops/N229amb", "https://tec.openplanner.team/stops/N229aqb"], ["https://tec.openplanner.team/stops/LHCkoul1", "https://tec.openplanner.team/stops/LHCpaci2"], ["https://tec.openplanner.team/stops/LORcomb2", "https://tec.openplanner.team/stops/LORpave1"], ["https://tec.openplanner.team/stops/H4lz125a", "https://tec.openplanner.team/stops/H4lz128b"], ["https://tec.openplanner.team/stops/X901aja", "https://tec.openplanner.team/stops/X901aza"], ["https://tec.openplanner.team/stops/X910aba", "https://tec.openplanner.team/stops/X910adb"], ["https://tec.openplanner.team/stops/X764acb", "https://tec.openplanner.team/stops/X764aeb"], ["https://tec.openplanner.team/stops/LPclaro1", "https://tec.openplanner.team/stops/LPclaro2"], ["https://tec.openplanner.team/stops/LHFappe1", "https://tec.openplanner.team/stops/LHFappe2"], ["https://tec.openplanner.team/stops/N584ada", "https://tec.openplanner.team/stops/N584aka"], ["https://tec.openplanner.team/stops/Bwavgar1", "https://tec.openplanner.team/stops/Bwavgar7"], ["https://tec.openplanner.team/stops/H1ms305b", "https://tec.openplanner.team/stops/H1ms313a"], ["https://tec.openplanner.team/stops/X836afb", "https://tec.openplanner.team/stops/X836aha"], ["https://tec.openplanner.team/stops/Cmychpl2", "https://tec.openplanner.team/stops/Cmychpl4"], ["https://tec.openplanner.team/stops/H1hw122a", "https://tec.openplanner.team/stops/H1hw122b"], ["https://tec.openplanner.team/stops/LeUath2", "https://tec.openplanner.team/stops/LeUrsi-*"], ["https://tec.openplanner.team/stops/H2fy119b", "https://tec.openplanner.team/stops/H2fy123c"], ["https://tec.openplanner.team/stops/N518acc", "https://tec.openplanner.team/stops/N518acd"], ["https://tec.openplanner.team/stops/H1ch106a", "https://tec.openplanner.team/stops/H4tm140a"], ["https://tec.openplanner.team/stops/X783adb", "https://tec.openplanner.team/stops/X784adb"], ["https://tec.openplanner.team/stops/H2pe162c", "https://tec.openplanner.team/stops/H2pe162d"], ["https://tec.openplanner.team/stops/LhDkreu4", "https://tec.openplanner.team/stops/LhPheps1"], ["https://tec.openplanner.team/stops/Landolh2", "https://tec.openplanner.team/stops/Lannico4"], ["https://tec.openplanner.team/stops/X902awa", "https://tec.openplanner.team/stops/X902bab"], ["https://tec.openplanner.team/stops/X750bha", "https://tec.openplanner.team/stops/X750bhb"], ["https://tec.openplanner.team/stops/X623acc", "https://tec.openplanner.team/stops/X623adb"], ["https://tec.openplanner.team/stops/H1bo105b", "https://tec.openplanner.team/stops/H1bo106b"], ["https://tec.openplanner.team/stops/Clbgare1", "https://tec.openplanner.team/stops/Clbhvil2"], ["https://tec.openplanner.team/stops/NL80aba", "https://tec.openplanner.team/stops/NL80abb"], ["https://tec.openplanner.team/stops/H4hu113b", "https://tec.openplanner.team/stops/H4hu117b"], ["https://tec.openplanner.team/stops/X901ama", "https://tec.openplanner.team/stops/X999aqa"], ["https://tec.openplanner.team/stops/X614apa", "https://tec.openplanner.team/stops/X614aua"], ["https://tec.openplanner.team/stops/H1wi151b", "https://tec.openplanner.team/stops/H1wi152a"], ["https://tec.openplanner.team/stops/H2mg143b", "https://tec.openplanner.team/stops/H2mg144b"], ["https://tec.openplanner.team/stops/N562amb", "https://tec.openplanner.team/stops/N562ata"], ["https://tec.openplanner.team/stops/Blasbh51", "https://tec.openplanner.team/stops/Blasbti2"], ["https://tec.openplanner.team/stops/Bvlvbth1", "https://tec.openplanner.team/stops/Bvlvbth2"], ["https://tec.openplanner.team/stops/LhGbahn3", "https://tec.openplanner.team/stops/LhGknip2"], ["https://tec.openplanner.team/stops/Bbstrpo2", "https://tec.openplanner.team/stops/Bwaygrg2"], ["https://tec.openplanner.team/stops/Ladpara1", "https://tec.openplanner.team/stops/Lvehv--2"], ["https://tec.openplanner.team/stops/Llggosw1", "https://tec.openplanner.team/stops/Llgmare1"], ["https://tec.openplanner.team/stops/Buccvch2", "https://tec.openplanner.team/stops/Buccvoi3"], ["https://tec.openplanner.team/stops/H4ty291c", "https://tec.openplanner.team/stops/H4ty317b"], ["https://tec.openplanner.team/stops/X649aca", "https://tec.openplanner.team/stops/X649adc"], ["https://tec.openplanner.team/stops/LnE79--2", "https://tec.openplanner.team/stops/LnEkirc4"], ["https://tec.openplanner.team/stops/N155aga", "https://tec.openplanner.team/stops/N155agb"], ["https://tec.openplanner.team/stops/N137afa", "https://tec.openplanner.team/stops/N137aja"], ["https://tec.openplanner.team/stops/N584aca", "https://tec.openplanner.team/stops/N584acb"], ["https://tec.openplanner.team/stops/Cgrgend1", "https://tec.openplanner.team/stops/Cgrlorm2"], ["https://tec.openplanner.team/stops/Lmoboeu3", "https://tec.openplanner.team/stops/Lmoknae4"], ["https://tec.openplanner.team/stops/N424aea", "https://tec.openplanner.team/stops/N424aeb"], ["https://tec.openplanner.team/stops/Bchgbru1", "https://tec.openplanner.team/stops/Btsllbv2"], ["https://tec.openplanner.team/stops/N141aca", "https://tec.openplanner.team/stops/N141agb"], ["https://tec.openplanner.team/stops/Cfrcoqu1", "https://tec.openplanner.team/stops/Crewath2"], ["https://tec.openplanner.team/stops/Broneco2", "https://tec.openplanner.team/stops/Bronfou2"], ["https://tec.openplanner.team/stops/X661aib", "https://tec.openplanner.team/stops/X661ajb"], ["https://tec.openplanner.team/stops/Llgbaya4", "https://tec.openplanner.team/stops/Llgpiet2"], ["https://tec.openplanner.team/stops/N531aub", "https://tec.openplanner.team/stops/N532amb"], ["https://tec.openplanner.team/stops/H1fr115a", "https://tec.openplanner.team/stops/H1fr151a"], ["https://tec.openplanner.team/stops/N202aec", "https://tec.openplanner.team/stops/N562bfa"], ["https://tec.openplanner.team/stops/X604aba", "https://tec.openplanner.team/stops/X604aca"], ["https://tec.openplanner.team/stops/LFfeg--2", "https://tec.openplanner.team/stops/LPRcasi2"], ["https://tec.openplanner.team/stops/N149aga", "https://tec.openplanner.team/stops/N149ahb"], ["https://tec.openplanner.team/stops/LHceg--1", "https://tec.openplanner.team/stops/LHcgare2"], ["https://tec.openplanner.team/stops/X640ada", "https://tec.openplanner.team/stops/X641aia"], ["https://tec.openplanner.team/stops/N554afa", "https://tec.openplanner.team/stops/N554afb"], ["https://tec.openplanner.team/stops/Chpceri1", "https://tec.openplanner.team/stops/Chpceri2"], ["https://tec.openplanner.team/stops/H1ho131b", "https://tec.openplanner.team/stops/H1ho143b"], ["https://tec.openplanner.team/stops/Bgnvoha6", "https://tec.openplanner.team/stops/Bgnvvol2"], ["https://tec.openplanner.team/stops/H2go116b", "https://tec.openplanner.team/stops/H2go117b"], ["https://tec.openplanner.team/stops/N201aca", "https://tec.openplanner.team/stops/N201aja"], ["https://tec.openplanner.team/stops/Lghjans1", "https://tec.openplanner.team/stops/Lghjans2"], ["https://tec.openplanner.team/stops/LsEdorf1", "https://tec.openplanner.team/stops/LsVfeye1"], ["https://tec.openplanner.team/stops/Ladarev1", "https://tec.openplanner.team/stops/Ladarev2"], ["https://tec.openplanner.team/stops/Cwfplac1", "https://tec.openplanner.team/stops/Cwfplac2"], ["https://tec.openplanner.team/stops/H4te259a", "https://tec.openplanner.team/stops/H4te261b"], ["https://tec.openplanner.team/stops/LOTsav-1", "https://tec.openplanner.team/stops/LWidepo2"], ["https://tec.openplanner.team/stops/Lanadmi2", "https://tec.openplanner.team/stops/Llojeme1"], ["https://tec.openplanner.team/stops/N351arb", "https://tec.openplanner.team/stops/X349aaa"], ["https://tec.openplanner.team/stops/X612aca", "https://tec.openplanner.team/stops/X612ada"], ["https://tec.openplanner.team/stops/LhZkape1", "https://tec.openplanner.team/stops/LmFdorf1"], ["https://tec.openplanner.team/stops/Cwgcamp2", "https://tec.openplanner.team/stops/Cwgplac1"], ["https://tec.openplanner.team/stops/N543aga", "https://tec.openplanner.team/stops/N543bxb"], ["https://tec.openplanner.team/stops/Bgrmver1", "https://tec.openplanner.team/stops/N522ana"], ["https://tec.openplanner.team/stops/H1wz169a", "https://tec.openplanner.team/stops/H3bi116b"], ["https://tec.openplanner.team/stops/LCHfond1", "https://tec.openplanner.team/stops/LThpoli1"], ["https://tec.openplanner.team/stops/Lalverr1", "https://tec.openplanner.team/stops/Lalverr2"], ["https://tec.openplanner.team/stops/X756abb", "https://tec.openplanner.team/stops/X756acb"], ["https://tec.openplanner.team/stops/N147acb", "https://tec.openplanner.team/stops/N147aea"], ["https://tec.openplanner.team/stops/Lcegare2", "https://tec.openplanner.team/stops/Lcelhon3"], ["https://tec.openplanner.team/stops/Cfaeclu1", "https://tec.openplanner.team/stops/Cfaeclu2"], ["https://tec.openplanner.team/stops/LbEkirc*", "https://tec.openplanner.team/stops/LbTmuhl2"], ["https://tec.openplanner.team/stops/N513abb", "https://tec.openplanner.team/stops/N513bha"], ["https://tec.openplanner.team/stops/Llgcmes2", "https://tec.openplanner.team/stops/Llgcmes4"], ["https://tec.openplanner.team/stops/LSPentr1", "https://tec.openplanner.team/stops/LSPxhou2"], ["https://tec.openplanner.team/stops/Lcefoxh2", "https://tec.openplanner.team/stops/Lceleje2"], ["https://tec.openplanner.team/stops/LCseg--1", "https://tec.openplanner.team/stops/LCsgend1"], ["https://tec.openplanner.team/stops/Lropass2", "https://tec.openplanner.team/stops/Lrosoxh2"], ["https://tec.openplanner.team/stops/LAigrim2", "https://tec.openplanner.team/stops/LENalun1"], ["https://tec.openplanner.team/stops/LbTgeme1", "https://tec.openplanner.team/stops/LwYkreu1"], ["https://tec.openplanner.team/stops/Cmtpblo1", "https://tec.openplanner.team/stops/Cmtplac5"], ["https://tec.openplanner.team/stops/H1ni317b", "https://tec.openplanner.team/stops/H1ni321b"], ["https://tec.openplanner.team/stops/LRObruy2", "https://tec.openplanner.team/stops/LROmons1"], ["https://tec.openplanner.team/stops/N501bmb", "https://tec.openplanner.team/stops/N501bna"], ["https://tec.openplanner.team/stops/X615ala", "https://tec.openplanner.team/stops/X615amb"], ["https://tec.openplanner.team/stops/LAYthir1", "https://tec.openplanner.team/stops/LHrrard1"], ["https://tec.openplanner.team/stops/N521alb", "https://tec.openplanner.team/stops/N527acb"], ["https://tec.openplanner.team/stops/Lbrcard2", "https://tec.openplanner.team/stops/Lbrcygn1"], ["https://tec.openplanner.team/stops/Louoran1", "https://tec.openplanner.team/stops/Lsebelv2"], ["https://tec.openplanner.team/stops/LHDpota2", "https://tec.openplanner.team/stops/LHDpota3"], ["https://tec.openplanner.team/stops/H5pe149b", "https://tec.openplanner.team/stops/H5pe150b"], ["https://tec.openplanner.team/stops/X782aka", "https://tec.openplanner.team/stops/X782akb"], ["https://tec.openplanner.team/stops/LVHbrai1", "https://tec.openplanner.team/stops/LVHtill1"], ["https://tec.openplanner.team/stops/LPRpeti2", "https://tec.openplanner.team/stops/LPRvill2"], ["https://tec.openplanner.team/stops/Bmrqgar2", "https://tec.openplanner.team/stops/H1mk109b"], ["https://tec.openplanner.team/stops/X394aaa", "https://tec.openplanner.team/stops/X394aba"], ["https://tec.openplanner.team/stops/Cmacreu1", "https://tec.openplanner.team/stops/Cmaest2"], ["https://tec.openplanner.team/stops/N211acb", "https://tec.openplanner.team/stops/N211bba"], ["https://tec.openplanner.team/stops/NC14aea", "https://tec.openplanner.team/stops/NC14afa"], ["https://tec.openplanner.team/stops/N101ajb", "https://tec.openplanner.team/stops/N101apb"], ["https://tec.openplanner.team/stops/Cmlbevu2", "https://tec.openplanner.team/stops/Cmlbrac2"], ["https://tec.openplanner.team/stops/X605aab", "https://tec.openplanner.team/stops/X606aba"], ["https://tec.openplanner.team/stops/LbAhull1", "https://tec.openplanner.team/stops/LhBdorf1"], ["https://tec.openplanner.team/stops/H1ne148a", "https://tec.openplanner.team/stops/H1ne150b"], ["https://tec.openplanner.team/stops/Bsencen1", "https://tec.openplanner.team/stops/Bsences2"], ["https://tec.openplanner.team/stops/N505aba", "https://tec.openplanner.team/stops/N579abb"], ["https://tec.openplanner.team/stops/Laltrap1", "https://tec.openplanner.team/stops/Laltrav1"], ["https://tec.openplanner.team/stops/LVbpave1", "https://tec.openplanner.team/stops/NL78aca"], ["https://tec.openplanner.team/stops/Lmnchal2", "https://tec.openplanner.team/stops/Lmnsech2"], ["https://tec.openplanner.team/stops/H1qv110a", "https://tec.openplanner.team/stops/H1qv111b"], ["https://tec.openplanner.team/stops/H5at105a", "https://tec.openplanner.team/stops/H5at123a"], ["https://tec.openplanner.team/stops/H1au101a", "https://tec.openplanner.team/stops/H1au103b"], ["https://tec.openplanner.team/stops/H4ho119b", "https://tec.openplanner.team/stops/H4lg103b"], ["https://tec.openplanner.team/stops/N236aeb", "https://tec.openplanner.team/stops/N236alb"], ["https://tec.openplanner.team/stops/Llggill1", "https://tec.openplanner.team/stops/Llggill4"], ["https://tec.openplanner.team/stops/Bgoemho1", "https://tec.openplanner.team/stops/Bneesjo1"], ["https://tec.openplanner.team/stops/N501aoa", "https://tec.openplanner.team/stops/N501aob"], ["https://tec.openplanner.team/stops/LTPabat1", "https://tec.openplanner.team/stops/LTPreco1"], ["https://tec.openplanner.team/stops/X902axa", "https://tec.openplanner.team/stops/X943aba"], ["https://tec.openplanner.team/stops/N501bta", "https://tec.openplanner.team/stops/N501bwb"], ["https://tec.openplanner.team/stops/LATmale1", "https://tec.openplanner.team/stops/LWNwavr1"], ["https://tec.openplanner.team/stops/H1mm126a", "https://tec.openplanner.team/stops/H1mm126b"], ["https://tec.openplanner.team/stops/LAWhein1", "https://tec.openplanner.team/stops/LAWhein4"], ["https://tec.openplanner.team/stops/LATfont1", "https://tec.openplanner.team/stops/LATfont2"], ["https://tec.openplanner.team/stops/Borbtre2", "https://tec.openplanner.team/stops/Btstche1"], ["https://tec.openplanner.team/stops/LREfloh1", "https://tec.openplanner.team/stops/LREsech1"], ["https://tec.openplanner.team/stops/LHAarge2", "https://tec.openplanner.team/stops/LHAmonu2"], ["https://tec.openplanner.team/stops/X718ada", "https://tec.openplanner.team/stops/X718aib"], ["https://tec.openplanner.team/stops/H1he103b", "https://tec.openplanner.team/stops/H1he111b"], ["https://tec.openplanner.team/stops/LSItert2", "https://tec.openplanner.team/stops/LSIvieu2"], ["https://tec.openplanner.team/stops/Cstdona4", "https://tec.openplanner.team/stops/Cstplac1"], ["https://tec.openplanner.team/stops/Bspkbeu1", "https://tec.openplanner.team/stops/H1gy115a"], ["https://tec.openplanner.team/stops/X901bka", "https://tec.openplanner.team/stops/X901bna"], ["https://tec.openplanner.team/stops/Lfhpass2", "https://tec.openplanner.team/stops/Lseegva1"], ["https://tec.openplanner.team/stops/H4ft138b", "https://tec.openplanner.team/stops/H4wu377b"], ["https://tec.openplanner.team/stops/X921apa", "https://tec.openplanner.team/stops/X923apa"], ["https://tec.openplanner.team/stops/Bmanfbg2", "https://tec.openplanner.team/stops/H2mg149a"], ["https://tec.openplanner.team/stops/Bjodcar2", "https://tec.openplanner.team/stops/Bjodeco2"], ["https://tec.openplanner.team/stops/H1do114b", "https://tec.openplanner.team/stops/H1wi147a"], ["https://tec.openplanner.team/stops/Bbsggot1", "https://tec.openplanner.team/stops/Bbsgrve2"], ["https://tec.openplanner.team/stops/Cbiferm2", "https://tec.openplanner.team/stops/Crgmgri2"], ["https://tec.openplanner.team/stops/Lhrunir1", "https://tec.openplanner.team/stops/Lhrunir2"], ["https://tec.openplanner.team/stops/LSTchal1", "https://tec.openplanner.team/stops/LSTec--2"], ["https://tec.openplanner.team/stops/Bvirdco1", "https://tec.openplanner.team/stops/Bvirdco2"], ["https://tec.openplanner.team/stops/H4rm107b", "https://tec.openplanner.team/stops/H4rm107d"], ["https://tec.openplanner.team/stops/Cmmadma1", "https://tec.openplanner.team/stops/Cmmceri1"], ["https://tec.openplanner.team/stops/H1fy143a", "https://tec.openplanner.team/stops/H1ro139b"], ["https://tec.openplanner.team/stops/H1wa146b", "https://tec.openplanner.team/stops/H1wa158b"], ["https://tec.openplanner.team/stops/LFAscie2", "https://tec.openplanner.team/stops/LHumoul1"], ["https://tec.openplanner.team/stops/Baegegl1", "https://tec.openplanner.team/stops/Baegegl2"], ["https://tec.openplanner.team/stops/Bixllep2", "https://tec.openplanner.team/stops/Buccdst2"], ["https://tec.openplanner.team/stops/LVnroch2", "https://tec.openplanner.team/stops/LVnrock1"], ["https://tec.openplanner.team/stops/N539agb", "https://tec.openplanner.team/stops/N539ahb"], ["https://tec.openplanner.team/stops/LhEcolo1", "https://tec.openplanner.team/stops/LhEtivo2"], ["https://tec.openplanner.team/stops/X601asa", "https://tec.openplanner.team/stops/X601aua"], ["https://tec.openplanner.team/stops/N201akb", "https://tec.openplanner.team/stops/N201amb"], ["https://tec.openplanner.team/stops/X624alb", "https://tec.openplanner.team/stops/X625agb"], ["https://tec.openplanner.team/stops/Canresi1", "https://tec.openplanner.team/stops/H2an101b"], ["https://tec.openplanner.team/stops/H1ba104b", "https://tec.openplanner.team/stops/H1ba119d"], ["https://tec.openplanner.team/stops/X804aaa", "https://tec.openplanner.team/stops/X818aka"], ["https://tec.openplanner.team/stops/N543aab", "https://tec.openplanner.team/stops/N543aca"], ["https://tec.openplanner.team/stops/H4bl105a", "https://tec.openplanner.team/stops/H4bl105b"], ["https://tec.openplanner.team/stops/Lanrask1", "https://tec.openplanner.team/stops/Llgnani2"], ["https://tec.openplanner.team/stops/Bgdhcsh1", "https://tec.openplanner.team/stops/Bgdhlai1"], ["https://tec.openplanner.team/stops/H4hu121b", "https://tec.openplanner.team/stops/H4og208b"], ["https://tec.openplanner.team/stops/Lrechap2", "https://tec.openplanner.team/stops/Lrevaul2"], ["https://tec.openplanner.team/stops/Llgfail2", "https://tec.openplanner.team/stops/Llgmont2"], ["https://tec.openplanner.team/stops/H1em101a", "https://tec.openplanner.team/stops/H1em105a"], ["https://tec.openplanner.team/stops/LGemari2", "https://tec.openplanner.team/stops/LMschap1"], ["https://tec.openplanner.team/stops/H5at107b", "https://tec.openplanner.team/stops/H5at113a"], ["https://tec.openplanner.team/stops/N501mia", "https://tec.openplanner.team/stops/N501ndb"], ["https://tec.openplanner.team/stops/Ljucomb1", "https://tec.openplanner.team/stops/Ljuinte1"], ["https://tec.openplanner.team/stops/X670apb", "https://tec.openplanner.team/stops/X671aaa"], ["https://tec.openplanner.team/stops/Cbmpopr1", "https://tec.openplanner.team/stops/Cssgare2"], ["https://tec.openplanner.team/stops/LCUthie2", "https://tec.openplanner.team/stops/NL67adb"], ["https://tec.openplanner.team/stops/H1an100a", "https://tec.openplanner.team/stops/H1on128d"], ["https://tec.openplanner.team/stops/H4wc374a", "https://tec.openplanner.team/stops/H4wc374b"], ["https://tec.openplanner.team/stops/Bsmgpon1", "https://tec.openplanner.team/stops/Bsmgpon2"], ["https://tec.openplanner.team/stops/LEMec--1", "https://tec.openplanner.team/stops/LEMec--2"], ["https://tec.openplanner.team/stops/X901ava", "https://tec.openplanner.team/stops/X901aza"], ["https://tec.openplanner.team/stops/X801aya", "https://tec.openplanner.team/stops/X801cja"], ["https://tec.openplanner.team/stops/H1hc150a", "https://tec.openplanner.team/stops/H5bl120b"], ["https://tec.openplanner.team/stops/H4hx119a", "https://tec.openplanner.team/stops/H4hx120a"], ["https://tec.openplanner.team/stops/LVnourt2", "https://tec.openplanner.team/stops/LVnourt4"], ["https://tec.openplanner.team/stops/NL67aba", "https://tec.openplanner.team/stops/NL72acb"], ["https://tec.openplanner.team/stops/Cmehels2", "https://tec.openplanner.team/stops/Cmerdby2"], ["https://tec.openplanner.team/stops/Bclglbu2", "https://tec.openplanner.team/stops/Bclgvse2"], ["https://tec.openplanner.team/stops/N501hzb", "https://tec.openplanner.team/stops/N501hzc"], ["https://tec.openplanner.team/stops/X904aaa", "https://tec.openplanner.team/stops/X904abb"], ["https://tec.openplanner.team/stops/LVIacac1", "https://tec.openplanner.team/stops/LVIsacr1"], ["https://tec.openplanner.team/stops/N549aga", "https://tec.openplanner.team/stops/N578aaa"], ["https://tec.openplanner.team/stops/LFmcarr1", "https://tec.openplanner.team/stops/LMObouh1"], ["https://tec.openplanner.team/stops/N150agb", "https://tec.openplanner.team/stops/N150aha"], ["https://tec.openplanner.team/stops/H4ty313a", "https://tec.openplanner.team/stops/H4ty313b"], ["https://tec.openplanner.team/stops/H4rm109b", "https://tec.openplanner.team/stops/H4rm114a"], ["https://tec.openplanner.team/stops/Btubbsc1", "https://tec.openplanner.team/stops/Btubegy1"], ["https://tec.openplanner.team/stops/X671afa", "https://tec.openplanner.team/stops/X671afb"], ["https://tec.openplanner.team/stops/H2ll184b", "https://tec.openplanner.team/stops/H2ll187c"], ["https://tec.openplanner.team/stops/H4he101a", "https://tec.openplanner.team/stops/H4he101b"], ["https://tec.openplanner.team/stops/Cfrbrin1", "https://tec.openplanner.team/stops/Cfrtry1"], ["https://tec.openplanner.team/stops/LFUfleu1", "https://tec.openplanner.team/stops/LWDchab2"], ["https://tec.openplanner.team/stops/Cmaplas3", "https://tec.openplanner.team/stops/Cmastch4"], ["https://tec.openplanner.team/stops/LHMaube1", "https://tec.openplanner.team/stops/LLC170-1"], ["https://tec.openplanner.team/stops/LAUbour4", "https://tec.openplanner.team/stops/LAUvict4"], ["https://tec.openplanner.team/stops/LSZroqu1", "https://tec.openplanner.team/stops/LSZsolw2"], ["https://tec.openplanner.team/stops/Bnivsnu1", "https://tec.openplanner.team/stops/Bnivsnu2"], ["https://tec.openplanner.team/stops/N528acb", "https://tec.openplanner.team/stops/N551aab"], ["https://tec.openplanner.team/stops/LBIfore1", "https://tec.openplanner.team/stops/Lghreyn2"], ["https://tec.openplanner.team/stops/LBUplac2", "https://tec.openplanner.team/stops/LBUvall2"], ["https://tec.openplanner.team/stops/X910agb", "https://tec.openplanner.team/stops/X911akb"], ["https://tec.openplanner.team/stops/H3br103a", "https://tec.openplanner.team/stops/H3br107a"], ["https://tec.openplanner.team/stops/X925aea", "https://tec.openplanner.team/stops/X982baa"], ["https://tec.openplanner.team/stops/X809aeb", "https://tec.openplanner.team/stops/X850aca"], ["https://tec.openplanner.team/stops/LBegare1", "https://tec.openplanner.team/stops/LWHkerk1"], ["https://tec.openplanner.team/stops/X773ada", "https://tec.openplanner.team/stops/X773adb"], ["https://tec.openplanner.team/stops/LHAstal1", "https://tec.openplanner.team/stops/Lvicitw2"], ["https://tec.openplanner.team/stops/X760aba", "https://tec.openplanner.team/stops/X786aha"], ["https://tec.openplanner.team/stops/Bgdhbvu1", "https://tec.openplanner.team/stops/Bhantui1"], ["https://tec.openplanner.team/stops/LrGzent2", "https://tec.openplanner.team/stops/LwPdorf2"], ["https://tec.openplanner.team/stops/Lmocoop2", "https://tec.openplanner.team/stops/Lmopans2"], ["https://tec.openplanner.team/stops/H1eu101b", "https://tec.openplanner.team/stops/H1eu102a"], ["https://tec.openplanner.team/stops/H1ho125a", "https://tec.openplanner.team/stops/H1ho125b"], ["https://tec.openplanner.team/stops/LSOchau1", "https://tec.openplanner.team/stops/LSOferr6"], ["https://tec.openplanner.team/stops/X904aga", "https://tec.openplanner.team/stops/X904ana"], ["https://tec.openplanner.team/stops/Llgcime1", "https://tec.openplanner.team/stops/Llgvott1"], ["https://tec.openplanner.team/stops/Bllnrro1", "https://tec.openplanner.team/stops/Bllnrro2"], ["https://tec.openplanner.team/stops/X347ajb", "https://tec.openplanner.team/stops/X890aga"], ["https://tec.openplanner.team/stops/LLnec--2", "https://tec.openplanner.team/stops/LLnpomp1"], ["https://tec.openplanner.team/stops/X979aga", "https://tec.openplanner.team/stops/X979aoa"], ["https://tec.openplanner.team/stops/N551apb", "https://tec.openplanner.team/stops/N551arc"], ["https://tec.openplanner.team/stops/H4ty281b", "https://tec.openplanner.team/stops/H4ty336a"], ["https://tec.openplanner.team/stops/X945aca", "https://tec.openplanner.team/stops/X945ada"], ["https://tec.openplanner.team/stops/LVBchau1", "https://tec.openplanner.team/stops/LWDchpl1"], ["https://tec.openplanner.team/stops/LnN02--1", "https://tec.openplanner.team/stops/LnNkirc2"], ["https://tec.openplanner.team/stops/LHUlieg2", "https://tec.openplanner.team/stops/LHUpost1"], ["https://tec.openplanner.team/stops/H4ar172a", "https://tec.openplanner.team/stops/H4ar177b"], ["https://tec.openplanner.team/stops/Cgzbouh2", "https://tec.openplanner.team/stops/Cgzvivi1"], ["https://tec.openplanner.team/stops/X663ada", "https://tec.openplanner.team/stops/X663aia"], ["https://tec.openplanner.team/stops/N501cmb", "https://tec.openplanner.team/stops/N501dna"], ["https://tec.openplanner.team/stops/H1ms265a", "https://tec.openplanner.team/stops/H1ms272a"], ["https://tec.openplanner.team/stops/LHheg--1", "https://tec.openplanner.team/stops/LHheg--2"], ["https://tec.openplanner.team/stops/LLrdigu2", "https://tec.openplanner.team/stops/LLrscie2"], ["https://tec.openplanner.team/stops/Bjodath1", "https://tec.openplanner.team/stops/NR10aca"], ["https://tec.openplanner.team/stops/LHUanth2", "https://tec.openplanner.team/stops/LHUtfal2"], ["https://tec.openplanner.team/stops/LLvpost1", "https://tec.openplanner.team/stops/LLvpost2"], ["https://tec.openplanner.team/stops/Bsenbmc1", "https://tec.openplanner.team/stops/Bsenpbi1"], ["https://tec.openplanner.team/stops/H5rx100b", "https://tec.openplanner.team/stops/H5rx115d"], ["https://tec.openplanner.team/stops/LCxeg--2", "https://tec.openplanner.team/stops/LCxhall2"], ["https://tec.openplanner.team/stops/X921aib", "https://tec.openplanner.team/stops/X921aqb"], ["https://tec.openplanner.team/stops/X618aba", "https://tec.openplanner.team/stops/X618anb"], ["https://tec.openplanner.team/stops/Bgoemgr2", "https://tec.openplanner.team/stops/Bgoewat1"], ["https://tec.openplanner.team/stops/LELhard1", "https://tec.openplanner.team/stops/LELhard2"], ["https://tec.openplanner.team/stops/X801bza", "https://tec.openplanner.team/stops/X801bzb"], ["https://tec.openplanner.team/stops/Llglamb2", "https://tec.openplanner.team/stops/Llgmass1"], ["https://tec.openplanner.team/stops/N501gqb", "https://tec.openplanner.team/stops/N501hcc"], ["https://tec.openplanner.team/stops/Lmobras1", "https://tec.openplanner.team/stops/Lmojans1"], ["https://tec.openplanner.team/stops/H2sb231b", "https://tec.openplanner.team/stops/H2sb234b"], ["https://tec.openplanner.team/stops/Bmarchn2", "https://tec.openplanner.team/stops/Bwagdeb2"], ["https://tec.openplanner.team/stops/H1hn205a", "https://tec.openplanner.team/stops/H1hn208b"], ["https://tec.openplanner.team/stops/Lmlhaut1", "https://tec.openplanner.team/stops/Lmlhaut2"], ["https://tec.openplanner.team/stops/X793ana", "https://tec.openplanner.team/stops/X793anb"], ["https://tec.openplanner.team/stops/X896afa", "https://tec.openplanner.team/stops/X993aja"], ["https://tec.openplanner.team/stops/N120aod", "https://tec.openplanner.team/stops/N340aba"], ["https://tec.openplanner.team/stops/Cobcent2", "https://tec.openplanner.team/stops/Cpcegli2"], ["https://tec.openplanner.team/stops/Cvpcour2", "https://tec.openplanner.team/stops/Cvpplan1"], ["https://tec.openplanner.team/stops/LlgguilC", "https://tec.openplanner.team/stops/LlgguilD"], ["https://tec.openplanner.team/stops/N543cla", "https://tec.openplanner.team/stops/N543cob"], ["https://tec.openplanner.team/stops/H1sy137a", "https://tec.openplanner.team/stops/H1sy143d"], ["https://tec.openplanner.team/stops/H3go104b", "https://tec.openplanner.team/stops/H3lr107a"], ["https://tec.openplanner.team/stops/H1cu121a", "https://tec.openplanner.team/stops/H1cu127a"], ["https://tec.openplanner.team/stops/LmIvale2", "https://tec.openplanner.team/stops/LvAschr2"], ["https://tec.openplanner.team/stops/Llgcbat2", "https://tec.openplanner.team/stops/Llgoise2"], ["https://tec.openplanner.team/stops/X725agb", "https://tec.openplanner.team/stops/X727aab"], ["https://tec.openplanner.team/stops/LBLplac4", "https://tec.openplanner.team/stops/LBLplas2"], ["https://tec.openplanner.team/stops/LdUespe2", "https://tec.openplanner.team/stops/LdUkreu1"], ["https://tec.openplanner.team/stops/Cciarfr2", "https://tec.openplanner.team/stops/Ccicloc1"], ["https://tec.openplanner.team/stops/H1hq127a", "https://tec.openplanner.team/stops/H1hq129a"], ["https://tec.openplanner.team/stops/Bnivcol1", "https://tec.openplanner.team/stops/Bnivcol3"], ["https://tec.openplanner.team/stops/Bbiehss2", "https://tec.openplanner.team/stops/Blontry2"], ["https://tec.openplanner.team/stops/N308aka", "https://tec.openplanner.team/stops/N308aoa"], ["https://tec.openplanner.team/stops/Lbrnanc1", "https://tec.openplanner.team/stops/Llgabat1"], ["https://tec.openplanner.team/stops/H4ef162a", "https://tec.openplanner.team/stops/H4ef165b"], ["https://tec.openplanner.team/stops/Ccugend1", "https://tec.openplanner.team/stops/Ccuwil2"], ["https://tec.openplanner.team/stops/NH01apb", "https://tec.openplanner.team/stops/NH01aqb"], ["https://tec.openplanner.team/stops/N232awa", "https://tec.openplanner.team/stops/N232blb"], ["https://tec.openplanner.team/stops/Cfrfede2", "https://tec.openplanner.team/stops/Cfrptfe2"], ["https://tec.openplanner.team/stops/X948aja", "https://tec.openplanner.team/stops/X948ajc"], ["https://tec.openplanner.team/stops/H1ch142a", "https://tec.openplanner.team/stops/H4gr111b"], ["https://tec.openplanner.team/stops/H2ll172a", "https://tec.openplanner.team/stops/H2ll201a"], ["https://tec.openplanner.team/stops/Blmlmco2", "https://tec.openplanner.team/stops/Blmlpla2"], ["https://tec.openplanner.team/stops/X615aab", "https://tec.openplanner.team/stops/X615agb"], ["https://tec.openplanner.team/stops/LSeec--3", "https://tec.openplanner.team/stops/LSetrix2"], ["https://tec.openplanner.team/stops/Lmobrac1", "https://tec.openplanner.team/stops/Ltibure4"], ["https://tec.openplanner.team/stops/X768ada", "https://tec.openplanner.team/stops/X768aha"], ["https://tec.openplanner.team/stops/LRGile-2", "https://tec.openplanner.team/stops/LRGmoul1"], ["https://tec.openplanner.team/stops/N232aha", "https://tec.openplanner.team/stops/N232ahb"], ["https://tec.openplanner.team/stops/X608afa", "https://tec.openplanner.team/stops/X608avb"], ["https://tec.openplanner.team/stops/H1gh144a", "https://tec.openplanner.team/stops/H1je215a"], ["https://tec.openplanner.team/stops/NL35abb", "https://tec.openplanner.team/stops/NL35acb"], ["https://tec.openplanner.team/stops/Lfhtrca1", "https://tec.openplanner.team/stops/Lfhtrca2"], ["https://tec.openplanner.team/stops/H4lz163a", "https://tec.openplanner.team/stops/H4lz164a"], ["https://tec.openplanner.team/stops/N241aeb", "https://tec.openplanner.team/stops/N241afa"], ["https://tec.openplanner.team/stops/LJUfort1", "https://tec.openplanner.team/stops/LVSbleu2"], ["https://tec.openplanner.team/stops/Llxeg--2", "https://tec.openplanner.team/stops/Lwapomp1"], ["https://tec.openplanner.team/stops/H4jm117b", "https://tec.openplanner.team/stops/H4we136b"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/Crchutt1"], ["https://tec.openplanner.team/stops/LWEhosp3", "https://tec.openplanner.team/stops/LWEpaul2"], ["https://tec.openplanner.team/stops/Lemdieu2", "https://tec.openplanner.team/stops/Lempass2"], ["https://tec.openplanner.team/stops/N217aaa", "https://tec.openplanner.team/stops/N217aea"], ["https://tec.openplanner.team/stops/X396aca", "https://tec.openplanner.team/stops/X396afb"], ["https://tec.openplanner.team/stops/Barcbav1", "https://tec.openplanner.team/stops/Barcpre2"], ["https://tec.openplanner.team/stops/H1ro136a", "https://tec.openplanner.team/stops/H1ro139a"], ["https://tec.openplanner.team/stops/X605ala", "https://tec.openplanner.team/stops/X605alb"], ["https://tec.openplanner.team/stops/H1ms302b", "https://tec.openplanner.team/stops/H1ms311a"], ["https://tec.openplanner.team/stops/Boplcar3", "https://tec.openplanner.team/stops/Boplcar4"], ["https://tec.openplanner.team/stops/N556aeb", "https://tec.openplanner.team/stops/N558aab"], ["https://tec.openplanner.team/stops/X823afb", "https://tec.openplanner.team/stops/X823afc"], ["https://tec.openplanner.team/stops/CMparc1", "https://tec.openplanner.team/stops/CMparc2"], ["https://tec.openplanner.team/stops/H4hg156a", "https://tec.openplanner.team/stops/H4li178a"], ["https://tec.openplanner.team/stops/N131aha", "https://tec.openplanner.team/stops/N138aja"], ["https://tec.openplanner.team/stops/X609aaa", "https://tec.openplanner.team/stops/X627aba"], ["https://tec.openplanner.team/stops/LAVeg--1", "https://tec.openplanner.team/stops/LAVeg--2"], ["https://tec.openplanner.team/stops/Btubmfa2", "https://tec.openplanner.team/stops/Btubnco2"], ["https://tec.openplanner.team/stops/N211awb", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/N506aqa", "https://tec.openplanner.team/stops/N506aqb"], ["https://tec.openplanner.team/stops/LLUadze2", "https://tec.openplanner.team/stops/LLUalou2"], ["https://tec.openplanner.team/stops/H4ir162b", "https://tec.openplanner.team/stops/H4ir163a"], ["https://tec.openplanner.team/stops/X786aia", "https://tec.openplanner.team/stops/X786aib"], ["https://tec.openplanner.team/stops/X993aba", "https://tec.openplanner.team/stops/X993aib"], ["https://tec.openplanner.team/stops/Bcerpco2", "https://tec.openplanner.team/stops/Blasbgc1"], ["https://tec.openplanner.team/stops/Lmlcher1", "https://tec.openplanner.team/stops/Lmlmich2"], ["https://tec.openplanner.team/stops/LESmecp*", "https://tec.openplanner.team/stops/LESryon2"], ["https://tec.openplanner.team/stops/LOmmer-2", "https://tec.openplanner.team/stops/LSegott1"], ["https://tec.openplanner.team/stops/Cragill2", "https://tec.openplanner.team/stops/Crarmas2"], ["https://tec.openplanner.team/stops/H5pe126a", "https://tec.openplanner.team/stops/H5pe127a"], ["https://tec.openplanner.team/stops/LNEmoul2", "https://tec.openplanner.team/stops/LVosoir2"], ["https://tec.openplanner.team/stops/NL78aab", "https://tec.openplanner.team/stops/NL78ahb"], ["https://tec.openplanner.team/stops/Lvcecol1", "https://tec.openplanner.team/stops/Lvcecol2"], ["https://tec.openplanner.team/stops/X625aca", "https://tec.openplanner.team/stops/X625adb"], ["https://tec.openplanner.team/stops/H4pq120b", "https://tec.openplanner.team/stops/H4sl154a"], ["https://tec.openplanner.team/stops/NL75aab", "https://tec.openplanner.team/stops/NL75aba"], ["https://tec.openplanner.team/stops/H1ob331a", "https://tec.openplanner.team/stops/H1ob341b"], ["https://tec.openplanner.team/stops/X982asa", "https://tec.openplanner.team/stops/X982ayb"], ["https://tec.openplanner.team/stops/Crsaise4", "https://tec.openplanner.team/stops/Crsrose2"], ["https://tec.openplanner.team/stops/N501ema", "https://tec.openplanner.team/stops/N501kka"], ["https://tec.openplanner.team/stops/N132acb", "https://tec.openplanner.team/stops/N135aua"], ["https://tec.openplanner.team/stops/Csepier1", "https://tec.openplanner.team/stops/Csesabo2"], ["https://tec.openplanner.team/stops/X912agb", "https://tec.openplanner.team/stops/X912aha"], ["https://tec.openplanner.team/stops/N512afa", "https://tec.openplanner.team/stops/N512aha"], ["https://tec.openplanner.team/stops/LSpvanr1", "https://tec.openplanner.team/stops/LSpvanr2"], ["https://tec.openplanner.team/stops/Bgemcha1", "https://tec.openplanner.team/stops/N522akb"], ["https://tec.openplanner.team/stops/N135aha", "https://tec.openplanner.team/stops/N135aka"], ["https://tec.openplanner.team/stops/X717acb", "https://tec.openplanner.team/stops/X718aab"], ["https://tec.openplanner.team/stops/X739ala", "https://tec.openplanner.team/stops/X739alb"], ["https://tec.openplanner.team/stops/Bgdhdet2", "https://tec.openplanner.team/stops/Bgdhmet2"], ["https://tec.openplanner.team/stops/X806aja", "https://tec.openplanner.team/stops/X806ajb"], ["https://tec.openplanner.team/stops/X748aaa", "https://tec.openplanner.team/stops/X769aca"], ["https://tec.openplanner.team/stops/LHarenn3", "https://tec.openplanner.team/stops/LHaxhig2"], ["https://tec.openplanner.team/stops/Cblbaiv2", "https://tec.openplanner.team/stops/Cmbcime3"], ["https://tec.openplanner.team/stops/H1fr125a", "https://tec.openplanner.team/stops/H1fr125b"], ["https://tec.openplanner.team/stops/Clpsola1", "https://tec.openplanner.team/stops/Clpsola2"], ["https://tec.openplanner.team/stops/Bhmmvdu1", "https://tec.openplanner.team/stops/Bhmmvdu2"], ["https://tec.openplanner.team/stops/X996aca", "https://tec.openplanner.team/stops/X996acb"], ["https://tec.openplanner.team/stops/LCUmars1", "https://tec.openplanner.team/stops/LCUmars2"], ["https://tec.openplanner.team/stops/Bbldvaa2", "https://tec.openplanner.team/stops/Bhmmjco1"], ["https://tec.openplanner.team/stops/Cctbinc2", "https://tec.openplanner.team/stops/Cprrvil1"], ["https://tec.openplanner.team/stops/H4wu375b", "https://tec.openplanner.team/stops/H4wu377a"], ["https://tec.openplanner.team/stops/N557aib", "https://tec.openplanner.team/stops/N562aza"], ["https://tec.openplanner.team/stops/H1ms263a", "https://tec.openplanner.team/stops/H1ms271a"], ["https://tec.openplanner.team/stops/X390ahb", "https://tec.openplanner.team/stops/X390apa"], ["https://tec.openplanner.team/stops/N219acb", "https://tec.openplanner.team/stops/N219adb"], ["https://tec.openplanner.team/stops/X825aga", "https://tec.openplanner.team/stops/X825agb"], ["https://tec.openplanner.team/stops/LHmcarr1", "https://tec.openplanner.team/stops/LHmcarr2"], ["https://tec.openplanner.team/stops/Bthivil2", "https://tec.openplanner.team/stops/Bthivil3"], ["https://tec.openplanner.team/stops/H1ha193b", "https://tec.openplanner.team/stops/H1ob330a"], ["https://tec.openplanner.team/stops/X831aaa", "https://tec.openplanner.team/stops/X831aeb"], ["https://tec.openplanner.team/stops/Bblacea1", "https://tec.openplanner.team/stops/Bwatcpl1"], ["https://tec.openplanner.team/stops/LSphote2", "https://tec.openplanner.team/stops/LSpunio1"], ["https://tec.openplanner.team/stops/X925aha", "https://tec.openplanner.team/stops/X925ahb"], ["https://tec.openplanner.team/stops/X982adb", "https://tec.openplanner.team/stops/X982bta"], ["https://tec.openplanner.team/stops/Ljuprev3", "https://tec.openplanner.team/stops/Ljuprev4"], ["https://tec.openplanner.team/stops/H1hn203a", "https://tec.openplanner.team/stops/H1hn209b"], ["https://tec.openplanner.team/stops/Lpegiet1", "https://tec.openplanner.team/stops/Lpegiet2"], ["https://tec.openplanner.team/stops/Llgmare1", "https://tec.openplanner.team/stops/Llgmare6"], ["https://tec.openplanner.team/stops/Crodrai2", "https://tec.openplanner.team/stops/Crolema4"], ["https://tec.openplanner.team/stops/Cchbaza1", "https://tec.openplanner.team/stops/Cchdelf1"], ["https://tec.openplanner.team/stops/LLNcime1", "https://tec.openplanner.team/stops/LLNogne2"], ["https://tec.openplanner.team/stops/X826aca", "https://tec.openplanner.team/stops/X826add"], ["https://tec.openplanner.team/stops/H4eh100b", "https://tec.openplanner.team/stops/H4po129a"], ["https://tec.openplanner.team/stops/LTHcime1", "https://tec.openplanner.team/stops/LTHcime2"], ["https://tec.openplanner.team/stops/X224aca", "https://tec.openplanner.team/stops/X224aha"], ["https://tec.openplanner.team/stops/LrAdrie1", "https://tec.openplanner.team/stops/LrAneue1"], ["https://tec.openplanner.team/stops/H4ty273a", "https://tec.openplanner.team/stops/H4ty357a"], ["https://tec.openplanner.team/stops/X649aba", "https://tec.openplanner.team/stops/X649acb"], ["https://tec.openplanner.team/stops/H1wa138b", "https://tec.openplanner.team/stops/H1wa159a"], ["https://tec.openplanner.team/stops/LWSstat1", "https://tec.openplanner.team/stops/LWSstat2"], ["https://tec.openplanner.team/stops/H1eu103a", "https://tec.openplanner.team/stops/H1sb145a"], ["https://tec.openplanner.team/stops/LMNentr1", "https://tec.openplanner.team/stops/LMNentr2"], ["https://tec.openplanner.team/stops/H4og210a", "https://tec.openplanner.team/stops/H4og210b"], ["https://tec.openplanner.team/stops/Blpgcmo2", "https://tec.openplanner.team/stops/Cgnpass1"], ["https://tec.openplanner.team/stops/LOTcarr1", "https://tec.openplanner.team/stops/LOTjacq1"], ["https://tec.openplanner.team/stops/LWLhagi2", "https://tec.openplanner.team/stops/LWLtamb2"], ["https://tec.openplanner.team/stops/H2ha142a", "https://tec.openplanner.team/stops/H2hg160b"], ["https://tec.openplanner.team/stops/Btubcal1", "https://tec.openplanner.team/stops/Btubnav1"], ["https://tec.openplanner.team/stops/Lghbonn2", "https://tec.openplanner.team/stops/Lghchap2"], ["https://tec.openplanner.team/stops/LHCcroy1", "https://tec.openplanner.team/stops/LHChoof3"], ["https://tec.openplanner.team/stops/Lagboil1", "https://tec.openplanner.team/stops/Lagchen1"], ["https://tec.openplanner.team/stops/X745aba", "https://tec.openplanner.team/stops/X745ada"], ["https://tec.openplanner.team/stops/Bbstchv2", "https://tec.openplanner.team/stops/Btannda1"], ["https://tec.openplanner.team/stops/Ccugilb1", "https://tec.openplanner.team/stops/Ccutail2"], ["https://tec.openplanner.team/stops/N539afc", "https://tec.openplanner.team/stops/N539aua"], ["https://tec.openplanner.team/stops/N137ada", "https://tec.openplanner.team/stops/N155ahb"], ["https://tec.openplanner.team/stops/Bhevwzw1", "https://tec.openplanner.team/stops/Bhevwzw2"], ["https://tec.openplanner.team/stops/X770aca", "https://tec.openplanner.team/stops/X770adb"], ["https://tec.openplanner.team/stops/Cgolimi2", "https://tec.openplanner.team/stops/Cgorosa3"], ["https://tec.openplanner.team/stops/LRuegli2", "https://tec.openplanner.team/stops/LSerout2"], ["https://tec.openplanner.team/stops/LPutins2", "https://tec.openplanner.team/stops/LrDschl1"], ["https://tec.openplanner.team/stops/Bwlhpec2", "https://tec.openplanner.team/stops/Bwlhpmt3"], ["https://tec.openplanner.team/stops/LMTfagn1", "https://tec.openplanner.team/stops/LMTvill2"], ["https://tec.openplanner.team/stops/X917acb", "https://tec.openplanner.team/stops/X917ada"], ["https://tec.openplanner.team/stops/Cvlpeau1", "https://tec.openplanner.team/stops/Cvlpeau2"], ["https://tec.openplanner.team/stops/X619aja", "https://tec.openplanner.team/stops/X619akb"], ["https://tec.openplanner.team/stops/N310acb", "https://tec.openplanner.team/stops/N313aba"], ["https://tec.openplanner.team/stops/N515akc", "https://tec.openplanner.team/stops/N515ata"], ["https://tec.openplanner.team/stops/Brsrabe2", "https://tec.openplanner.team/stops/Brsrpri2"], ["https://tec.openplanner.team/stops/Bllnchv1", "https://tec.openplanner.team/stops/Bllnchv2"], ["https://tec.openplanner.team/stops/Lenptsa1", "https://tec.openplanner.team/stops/Lenptsa2"], ["https://tec.openplanner.team/stops/LBzvill2", "https://tec.openplanner.team/stops/LVBchau2"], ["https://tec.openplanner.team/stops/H4cw105a", "https://tec.openplanner.team/stops/H4hg156a"], ["https://tec.openplanner.team/stops/H1by104a", "https://tec.openplanner.team/stops/H1sy148b"], ["https://tec.openplanner.team/stops/LAyfren1", "https://tec.openplanner.team/stops/Lmaetan*"], ["https://tec.openplanner.team/stops/LENpt--1", "https://tec.openplanner.team/stops/LENpt--2"], ["https://tec.openplanner.team/stops/X637apa", "https://tec.openplanner.team/stops/X637arb"], ["https://tec.openplanner.team/stops/N539aya", "https://tec.openplanner.team/stops/N539bba"], ["https://tec.openplanner.team/stops/NL57aeb", "https://tec.openplanner.team/stops/NL68aba"], ["https://tec.openplanner.team/stops/Lmntast1", "https://tec.openplanner.team/stops/Lsmdams2"], ["https://tec.openplanner.team/stops/H4ch113a", "https://tec.openplanner.team/stops/H4ch113b"], ["https://tec.openplanner.team/stops/X542aaa", "https://tec.openplanner.team/stops/X542afa"], ["https://tec.openplanner.team/stops/LRemonu1", "https://tec.openplanner.team/stops/LRemorr2"], ["https://tec.openplanner.team/stops/X653aab", "https://tec.openplanner.team/stops/X667adb"], ["https://tec.openplanner.team/stops/Bgnvoha1", "https://tec.openplanner.team/stops/Bgnvvol2"], ["https://tec.openplanner.team/stops/H1og135b", "https://tec.openplanner.team/stops/H5wo133a"], ["https://tec.openplanner.team/stops/LLStrid1", "https://tec.openplanner.team/stops/LLStrid3"], ["https://tec.openplanner.team/stops/Cfmchau2", "https://tec.openplanner.team/stops/Cfmrrou1"], ["https://tec.openplanner.team/stops/Csecout2", "https://tec.openplanner.team/stops/Csemacq1"], ["https://tec.openplanner.team/stops/X725apb", "https://tec.openplanner.team/stops/X725bea"], ["https://tec.openplanner.team/stops/Bcrbgro2", "https://tec.openplanner.team/stops/Bnil3fo2"], ["https://tec.openplanner.team/stops/H5el111a", "https://tec.openplanner.team/stops/H5rx104a"], ["https://tec.openplanner.team/stops/Llgbruy2", "https://tec.openplanner.team/stops/Llgjasm2"], ["https://tec.openplanner.team/stops/H5rx100a", "https://tec.openplanner.team/stops/H5rx125b"], ["https://tec.openplanner.team/stops/LeUarno1", "https://tec.openplanner.team/stops/LeUmeie1"], ["https://tec.openplanner.team/stops/X609aga", "https://tec.openplanner.team/stops/X609ana"], ["https://tec.openplanner.team/stops/Llgbour2", "https://tec.openplanner.team/stops/Lscatme1"], ["https://tec.openplanner.team/stops/N503ajb", "https://tec.openplanner.team/stops/N503aka"], ["https://tec.openplanner.team/stops/X952ada", "https://tec.openplanner.team/stops/X952aib"], ["https://tec.openplanner.team/stops/H4lp123a", "https://tec.openplanner.team/stops/H4ma162a"], ["https://tec.openplanner.team/stops/LjeGRPME", "https://tec.openplanner.team/stops/Lsekubo1"], ["https://tec.openplanner.team/stops/X756aga", "https://tec.openplanner.team/stops/X756aka"], ["https://tec.openplanner.team/stops/H4pp121a", "https://tec.openplanner.team/stops/H4ve134b"], ["https://tec.openplanner.team/stops/LWAfabr1", "https://tec.openplanner.team/stops/LWAfabr2"], ["https://tec.openplanner.team/stops/H4cw104a", "https://tec.openplanner.team/stops/H4hg158a"], ["https://tec.openplanner.team/stops/LACwass1", "https://tec.openplanner.team/stops/LAvchpl2"], ["https://tec.openplanner.team/stops/X923anb", "https://tec.openplanner.team/stops/X923aob"], ["https://tec.openplanner.team/stops/Bmrswag1", "https://tec.openplanner.team/stops/Bmrswag2"], ["https://tec.openplanner.team/stops/Bjaugar1", "https://tec.openplanner.team/stops/Bjaugar3"], ["https://tec.openplanner.team/stops/Ltichif1", "https://tec.openplanner.team/stops/Ltipass1"], ["https://tec.openplanner.team/stops/Lanhoud2", "https://tec.openplanner.team/stops/Lanpisc2"], ["https://tec.openplanner.team/stops/LESmecp*", "https://tec.openplanner.team/stops/LPOpass2"], ["https://tec.openplanner.team/stops/N501doa", "https://tec.openplanner.team/stops/N501mvd"], ["https://tec.openplanner.team/stops/X801chb", "https://tec.openplanner.team/stops/X836ahb"], ["https://tec.openplanner.team/stops/LSBdelc2", "https://tec.openplanner.team/stops/LSGhagn2"], ["https://tec.openplanner.team/stops/Crerevi1", "https://tec.openplanner.team/stops/Crestan2"], ["https://tec.openplanner.team/stops/N338aaa", "https://tec.openplanner.team/stops/N338aga"], ["https://tec.openplanner.team/stops/LToluik1", "https://tec.openplanner.team/stops/LTotrui2"], ["https://tec.openplanner.team/stops/NL77amb", "https://tec.openplanner.team/stops/NL77anb"], ["https://tec.openplanner.team/stops/X750bmb", "https://tec.openplanner.team/stops/X784aba"], ["https://tec.openplanner.team/stops/N211afa", "https://tec.openplanner.team/stops/N219adb"], ["https://tec.openplanner.team/stops/Loucham4", "https://tec.openplanner.team/stops/Louroos2"], ["https://tec.openplanner.team/stops/N101aka", "https://tec.openplanner.team/stops/N101ara"], ["https://tec.openplanner.team/stops/Llgmart2", "https://tec.openplanner.team/stops/LlgOPER5"], ["https://tec.openplanner.team/stops/H4hn115b", "https://tec.openplanner.team/stops/H4lp122a"], ["https://tec.openplanner.team/stops/NC11afb", "https://tec.openplanner.team/stops/NC11amb"], ["https://tec.openplanner.team/stops/Lceegli*", "https://tec.openplanner.team/stops/Lcelhon2"], ["https://tec.openplanner.team/stops/LNAbras3", "https://tec.openplanner.team/stops/LNAbras4"], ["https://tec.openplanner.team/stops/Bbea3he2", "https://tec.openplanner.team/stops/Bbeascl2"], ["https://tec.openplanner.team/stops/N343aka", "https://tec.openplanner.team/stops/N343alb"], ["https://tec.openplanner.team/stops/N311aca", "https://tec.openplanner.team/stops/N360acb"], ["https://tec.openplanner.team/stops/X811aka", "https://tec.openplanner.team/stops/X811akb"], ["https://tec.openplanner.team/stops/LVEjoin1", "https://tec.openplanner.team/stops/LVEtomb1"], ["https://tec.openplanner.team/stops/X982bea", "https://tec.openplanner.team/stops/X982bqb"], ["https://tec.openplanner.team/stops/LDAalbe2", "https://tec.openplanner.team/stops/LDAptbo2"], ["https://tec.openplanner.team/stops/LBdcarr1", "https://tec.openplanner.team/stops/LBdcarr2"], ["https://tec.openplanner.team/stops/Lticoq-1", "https://tec.openplanner.team/stops/Ltimarr2"], ["https://tec.openplanner.team/stops/H4gu108b", "https://tec.openplanner.team/stops/H4we134b"], ["https://tec.openplanner.team/stops/H4ch119a", "https://tec.openplanner.team/stops/H4ty299e"], ["https://tec.openplanner.team/stops/N348aea", "https://tec.openplanner.team/stops/N351alb"], ["https://tec.openplanner.team/stops/X364aab", "https://tec.openplanner.team/stops/X364ada"], ["https://tec.openplanner.team/stops/Bnivgpl3", "https://tec.openplanner.team/stops/Bnivsoi2"], ["https://tec.openplanner.team/stops/LNAbras1", "https://tec.openplanner.team/stops/LYEphar1"], ["https://tec.openplanner.team/stops/H1fy118a", "https://tec.openplanner.team/stops/H1mr125a"], ["https://tec.openplanner.team/stops/Cluberl2", "https://tec.openplanner.team/stops/Cvvcime1"], ["https://tec.openplanner.team/stops/LBXhacb1", "https://tec.openplanner.team/stops/LBXhacb2"], ["https://tec.openplanner.team/stops/LSGcarr1", "https://tec.openplanner.team/stops/LSGeg--3"], ["https://tec.openplanner.team/stops/H1hi123a", "https://tec.openplanner.team/stops/H1hi124a"], ["https://tec.openplanner.team/stops/X882afb", "https://tec.openplanner.team/stops/X882aia"], ["https://tec.openplanner.team/stops/H1br132b", "https://tec.openplanner.team/stops/H1br134b"], ["https://tec.openplanner.team/stops/Bmargve1", "https://tec.openplanner.team/stops/Bmarmru2"], ["https://tec.openplanner.team/stops/X889aca", "https://tec.openplanner.team/stops/X889adb"], ["https://tec.openplanner.team/stops/Lghhoco1", "https://tec.openplanner.team/stops/Lghremy2"], ["https://tec.openplanner.team/stops/X750aya", "https://tec.openplanner.team/stops/X750bab"], ["https://tec.openplanner.team/stops/H2jo162a", "https://tec.openplanner.team/stops/H2lh125b"], ["https://tec.openplanner.team/stops/LBUplac1", "https://tec.openplanner.team/stops/LBUplac2"], ["https://tec.openplanner.team/stops/Ltibord1", "https://tec.openplanner.team/stops/Ltibord2"], ["https://tec.openplanner.team/stops/H4bw101b", "https://tec.openplanner.team/stops/H4co103b"], ["https://tec.openplanner.team/stops/Bboueta2", "https://tec.openplanner.team/stops/Btancre2"], ["https://tec.openplanner.team/stops/H1ls109a", "https://tec.openplanner.team/stops/H1me117e"], ["https://tec.openplanner.team/stops/X781aaa", "https://tec.openplanner.team/stops/X781abb"], ["https://tec.openplanner.team/stops/H4hu114b", "https://tec.openplanner.team/stops/H4hu115b"], ["https://tec.openplanner.team/stops/X992aca", "https://tec.openplanner.team/stops/X992ahb"], ["https://tec.openplanner.team/stops/Bhmmmon2", "https://tec.openplanner.team/stops/Bhmmpos2"], ["https://tec.openplanner.team/stops/Cmeloti1", "https://tec.openplanner.team/stops/Cmeloti2"], ["https://tec.openplanner.team/stops/X615aqb", "https://tec.openplanner.team/stops/X615asa"], ["https://tec.openplanner.team/stops/H1ms254a", "https://tec.openplanner.team/stops/H1ms266a"], ["https://tec.openplanner.team/stops/Lmodeni1", "https://tec.openplanner.team/stops/Lmodeni2"], ["https://tec.openplanner.team/stops/H1nm139b", "https://tec.openplanner.team/stops/H4gr110b"], ["https://tec.openplanner.team/stops/N141ala", "https://tec.openplanner.team/stops/N146abb"], ["https://tec.openplanner.team/stops/X811aob", "https://tec.openplanner.team/stops/X834aab"], ["https://tec.openplanner.team/stops/Bbstcoi1", "https://tec.openplanner.team/stops/Bbstfch2"], ["https://tec.openplanner.team/stops/X658agc", "https://tec.openplanner.team/stops/X658ahb"], ["https://tec.openplanner.team/stops/H1og130a", "https://tec.openplanner.team/stops/H1og131b"], ["https://tec.openplanner.team/stops/Lghcham1", "https://tec.openplanner.team/stops/Lghcham2"], ["https://tec.openplanner.team/stops/Bwavfol2", "https://tec.openplanner.team/stops/Bwavmes2"], ["https://tec.openplanner.team/stops/X625aba", "https://tec.openplanner.team/stops/X625aga"], ["https://tec.openplanner.team/stops/X912afa", "https://tec.openplanner.team/stops/X912agb"], ["https://tec.openplanner.team/stops/LTHmaka1", "https://tec.openplanner.team/stops/LTHperr2"], ["https://tec.openplanner.team/stops/H1cu126a", "https://tec.openplanner.team/stops/H1je218a"], ["https://tec.openplanner.team/stops/Chhclde2", "https://tec.openplanner.team/stops/Cna6che1"], ["https://tec.openplanner.team/stops/H1nm141a", "https://tec.openplanner.team/stops/H1nm141b"], ["https://tec.openplanner.team/stops/N308aka", "https://tec.openplanner.team/stops/X308akb"], ["https://tec.openplanner.team/stops/LBHgile1", "https://tec.openplanner.team/stops/LBHgile2"], ["https://tec.openplanner.team/stops/X633aba", "https://tec.openplanner.team/stops/X653adc"], ["https://tec.openplanner.team/stops/H2ll180a", "https://tec.openplanner.team/stops/H2ll180b"], ["https://tec.openplanner.team/stops/Lpeptwa1", "https://tec.openplanner.team/stops/Lpevesd1"], ["https://tec.openplanner.team/stops/Ctachst1", "https://tec.openplanner.team/stops/Ctapn2"], ["https://tec.openplanner.team/stops/Bhlvgar2", "https://tec.openplanner.team/stops/Bhlvvil3"], ["https://tec.openplanner.team/stops/H1en100a", "https://tec.openplanner.team/stops/H1mk112a"], ["https://tec.openplanner.team/stops/Lbrbass2", "https://tec.openplanner.team/stops/Lgrspir2"], ["https://tec.openplanner.team/stops/Bclgmev2", "https://tec.openplanner.team/stops/Bwavdmo2"], ["https://tec.openplanner.team/stops/X765aca", "https://tec.openplanner.team/stops/X765aea"], ["https://tec.openplanner.team/stops/N533ahb", "https://tec.openplanner.team/stops/N533aib"], ["https://tec.openplanner.team/stops/Cmtpire1", "https://tec.openplanner.team/stops/Cmtpire2"], ["https://tec.openplanner.team/stops/N353aea", "https://tec.openplanner.team/stops/N383abb"], ["https://tec.openplanner.team/stops/LCIsucr1", "https://tec.openplanner.team/stops/LMXaven1"], ["https://tec.openplanner.team/stops/Cmlbras1", "https://tec.openplanner.team/stops/Cmlecha2"], ["https://tec.openplanner.team/stops/LVHbrai2", "https://tec.openplanner.team/stops/LVsbrux1"], ["https://tec.openplanner.team/stops/Cbfcham1", "https://tec.openplanner.team/stops/Cbfpoti2"], ["https://tec.openplanner.team/stops/X602ala", "https://tec.openplanner.team/stops/X653aca"], ["https://tec.openplanner.team/stops/LmD27--1", "https://tec.openplanner.team/stops/LmDhoch3"], ["https://tec.openplanner.team/stops/LNCcedr2", "https://tec.openplanner.team/stops/LNCgene1"], ["https://tec.openplanner.team/stops/X358aeb", "https://tec.openplanner.team/stops/X994aba"], ["https://tec.openplanner.team/stops/Bneeegl1", "https://tec.openplanner.team/stops/Bneervc2"], ["https://tec.openplanner.team/stops/N211aga", "https://tec.openplanner.team/stops/N212abb"], ["https://tec.openplanner.team/stops/LFNfo161", "https://tec.openplanner.team/stops/LFNtill1"], ["https://tec.openplanner.team/stops/Bpecdel2", "https://tec.openplanner.team/stops/Bpechos2"], ["https://tec.openplanner.team/stops/LHolexh2", "https://tec.openplanner.team/stops/LHZec--1"], ["https://tec.openplanner.team/stops/Bwatceg1", "https://tec.openplanner.team/stops/Bwatcpl1"], ["https://tec.openplanner.team/stops/Cctbifu1", "https://tec.openplanner.team/stops/Cctchav1"], ["https://tec.openplanner.team/stops/H4vx364c", "https://tec.openplanner.team/stops/H4vx364d"], ["https://tec.openplanner.team/stops/X718ajb", "https://tec.openplanner.team/stops/X734abb"], ["https://tec.openplanner.team/stops/N525aib", "https://tec.openplanner.team/stops/N525baa"], ["https://tec.openplanner.team/stops/H5rx139b", "https://tec.openplanner.team/stops/H5rx147a"], ["https://tec.openplanner.team/stops/LMnlogi1", "https://tec.openplanner.team/stops/LMnlogi2"], ["https://tec.openplanner.team/stops/Csecoup1", "https://tec.openplanner.team/stops/Cvtndam3"], ["https://tec.openplanner.team/stops/X654afb", "https://tec.openplanner.team/stops/X670ala"], ["https://tec.openplanner.team/stops/N508ajc", "https://tec.openplanner.team/stops/N508ajd"], ["https://tec.openplanner.team/stops/LAUhost2", "https://tec.openplanner.team/stops/LAUpind2"], ["https://tec.openplanner.team/stops/LMHmeha1", "https://tec.openplanner.team/stops/LMHplac4"], ["https://tec.openplanner.team/stops/X601ceb", "https://tec.openplanner.team/stops/X601dha"], ["https://tec.openplanner.team/stops/N337aea", "https://tec.openplanner.team/stops/N385aba"], ["https://tec.openplanner.team/stops/LElcent2", "https://tec.openplanner.team/stops/LElverl2"], ["https://tec.openplanner.team/stops/Bhoeboo1", "https://tec.openplanner.team/stops/Bhoeboo2"], ["https://tec.openplanner.team/stops/H4ka186a", "https://tec.openplanner.team/stops/H4ka194a"], ["https://tec.openplanner.team/stops/Bspkdon1", "https://tec.openplanner.team/stops/H1mk111b"], ["https://tec.openplanner.team/stops/Lbbgare1", "https://tec.openplanner.team/stops/Lcepepi1"], ["https://tec.openplanner.team/stops/X753aba", "https://tec.openplanner.team/stops/X753aca"], ["https://tec.openplanner.team/stops/H2ch104b", "https://tec.openplanner.team/stops/H2ch121a"], ["https://tec.openplanner.team/stops/LFlabba1", "https://tec.openplanner.team/stops/LSkkeri1"], ["https://tec.openplanner.team/stops/Bblaall1", "https://tec.openplanner.team/stops/Bblagar6"], ["https://tec.openplanner.team/stops/Bwavlca1", "https://tec.openplanner.team/stops/Bwavlca2"], ["https://tec.openplanner.team/stops/X723aba", "https://tec.openplanner.team/stops/X723abb"], ["https://tec.openplanner.team/stops/LDpulve2", "https://tec.openplanner.team/stops/LFMvoge2"], ["https://tec.openplanner.team/stops/N509aob", "https://tec.openplanner.team/stops/N509asa"], ["https://tec.openplanner.team/stops/X801bra", "https://tec.openplanner.team/stops/X801bsa"], ["https://tec.openplanner.team/stops/Lceavia2", "https://tec.openplanner.team/stops/Lcewilm1"], ["https://tec.openplanner.team/stops/LVPduvi2", "https://tec.openplanner.team/stops/LVPeg--2"], ["https://tec.openplanner.team/stops/Cbmind1", "https://tec.openplanner.team/stops/Cbmind2"], ["https://tec.openplanner.team/stops/Cgofleu2", "https://tec.openplanner.team/stops/Cgogb1"], ["https://tec.openplanner.team/stops/N543aib", "https://tec.openplanner.team/stops/N543alb"], ["https://tec.openplanner.team/stops/X739afb", "https://tec.openplanner.team/stops/X739aia"], ["https://tec.openplanner.team/stops/N387aaa", "https://tec.openplanner.team/stops/N387abb"], ["https://tec.openplanner.team/stops/H3bo102a", "https://tec.openplanner.team/stops/H3bo102b"], ["https://tec.openplanner.team/stops/H4te248a", "https://tec.openplanner.team/stops/H4te258a"], ["https://tec.openplanner.team/stops/N111ada", "https://tec.openplanner.team/stops/N111adb"], ["https://tec.openplanner.team/stops/H5qu143c", "https://tec.openplanner.team/stops/H5qu143d"], ["https://tec.openplanner.team/stops/Bnivace1", "https://tec.openplanner.team/stops/Bnivsnu1"], ["https://tec.openplanner.team/stops/LWOcomm1", "https://tec.openplanner.team/stops/LWOruis2"], ["https://tec.openplanner.team/stops/H4fg116b", "https://tec.openplanner.team/stops/H4wn128b"], ["https://tec.openplanner.team/stops/H4lp120b", "https://tec.openplanner.team/stops/H4lp121b"], ["https://tec.openplanner.team/stops/LVApark1", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://tec.openplanner.team/stops/Llgjoie3", "https://tec.openplanner.team/stops/Llgmako1"], ["https://tec.openplanner.team/stops/Cmmecol1", "https://tec.openplanner.team/stops/Cmmegli2"], ["https://tec.openplanner.team/stops/Bzlucam1", "https://tec.openplanner.team/stops/Bzlufbo1"], ["https://tec.openplanner.team/stops/H4jm117a", "https://tec.openplanner.team/stops/H4ry133a"], ["https://tec.openplanner.team/stops/H4be103a", "https://tec.openplanner.team/stops/H4be104a"], ["https://tec.openplanner.team/stops/Barqbar1", "https://tec.openplanner.team/stops/Bmonbor2"], ["https://tec.openplanner.team/stops/X809aba", "https://tec.openplanner.team/stops/X811aaa"], ["https://tec.openplanner.team/stops/LhGfl241", "https://tec.openplanner.team/stops/LhGscha*"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N331aga"], ["https://tec.openplanner.team/stops/H1ob339a", "https://tec.openplanner.team/stops/H1sd366b"], ["https://tec.openplanner.team/stops/NC24aja", "https://tec.openplanner.team/stops/NC24ajb"], ["https://tec.openplanner.team/stops/Bolgfon2", "https://tec.openplanner.team/stops/Bpthcai2"], ["https://tec.openplanner.team/stops/LOcgdro1", "https://tec.openplanner.team/stops/LOcgdro4"], ["https://tec.openplanner.team/stops/Bperrsr1", "https://tec.openplanner.team/stops/Bperwil1"], ["https://tec.openplanner.team/stops/H1mq198b", "https://tec.openplanner.team/stops/H5ar104a"], ["https://tec.openplanner.team/stops/Crewaha1", "https://tec.openplanner.team/stops/Crewaha2"], ["https://tec.openplanner.team/stops/LCOdrol1", "https://tec.openplanner.team/stops/Lpejonc1"], ["https://tec.openplanner.team/stops/Clusncb1", "https://tec.openplanner.team/stops/Cobmven2"], ["https://tec.openplanner.team/stops/Buccdch1", "https://tec.openplanner.team/stops/Bucceng1"], ["https://tec.openplanner.team/stops/Lancolr1", "https://tec.openplanner.team/stops/Lancolr2"], ["https://tec.openplanner.team/stops/LBWeg--3", "https://tec.openplanner.team/stops/LBWviad1"], ["https://tec.openplanner.team/stops/H2mm136a", "https://tec.openplanner.team/stops/H2mm144b"], ["https://tec.openplanner.team/stops/X601cla", "https://tec.openplanner.team/stops/X601cub"], ["https://tec.openplanner.team/stops/N201aoc", "https://tec.openplanner.team/stops/N201apb"], ["https://tec.openplanner.team/stops/Cflecga1", "https://tec.openplanner.team/stops/Cflsabl2"], ["https://tec.openplanner.team/stops/Bneepne2", "https://tec.openplanner.team/stops/Bneesan1"], ["https://tec.openplanner.team/stops/H1ma230a", "https://tec.openplanner.team/stops/H1sd344b"], ["https://tec.openplanner.team/stops/H4bf106a", "https://tec.openplanner.team/stops/H4by116a"], ["https://tec.openplanner.team/stops/Bjodcad2", "https://tec.openplanner.team/stops/Bjodeco1"], ["https://tec.openplanner.team/stops/Clrecol2", "https://tec.openplanner.team/stops/Clrmarl3"], ["https://tec.openplanner.team/stops/LdE179-2", "https://tec.openplanner.team/stops/LeIdeid1"], ["https://tec.openplanner.team/stops/H1ba113b", "https://tec.openplanner.team/stops/H1gh143b"], ["https://tec.openplanner.team/stops/H1ma233a", "https://tec.openplanner.team/stops/H1ma233c"], ["https://tec.openplanner.team/stops/H4gu112b", "https://tec.openplanner.team/stops/H4we134a"], ["https://tec.openplanner.team/stops/Baegm502", "https://tec.openplanner.team/stops/NR38acb"], ["https://tec.openplanner.team/stops/N351aqb", "https://tec.openplanner.team/stops/N351ara"], ["https://tec.openplanner.team/stops/LLOberl2", "https://tec.openplanner.team/stops/LRRtrix1"], ["https://tec.openplanner.team/stops/LTiespe1", "https://tec.openplanner.team/stops/LTigera1"], ["https://tec.openplanner.team/stops/X637aba", "https://tec.openplanner.team/stops/X637aqb"], ["https://tec.openplanner.team/stops/H5rx105a", "https://tec.openplanner.team/stops/H5rx134b"], ["https://tec.openplanner.team/stops/Bmalwop1", "https://tec.openplanner.team/stops/Btlbcha1"], ["https://tec.openplanner.team/stops/LeYauto2", "https://tec.openplanner.team/stops/LeYdorf2"], ["https://tec.openplanner.team/stops/LTiflor2", "https://tec.openplanner.team/stops/LTiterr2"], ["https://tec.openplanner.team/stops/X899abb", "https://tec.openplanner.team/stops/X899ahb"], ["https://tec.openplanner.team/stops/H4vx361a", "https://tec.openplanner.team/stops/H4vx365b"], ["https://tec.openplanner.team/stops/LMupont1", "https://tec.openplanner.team/stops/LMuvill1"], ["https://tec.openplanner.team/stops/X750axb", "https://tec.openplanner.team/stops/X750baa"], ["https://tec.openplanner.team/stops/LAMecse*", "https://tec.openplanner.team/stops/LVLf37-1"], ["https://tec.openplanner.team/stops/Lsttech1", "https://tec.openplanner.team/stops/Lsttech2"], ["https://tec.openplanner.team/stops/Crodrai1", "https://tec.openplanner.team/stops/Cronova1"], ["https://tec.openplanner.team/stops/X649acb", "https://tec.openplanner.team/stops/X671aea"], ["https://tec.openplanner.team/stops/H1ms303a", "https://tec.openplanner.team/stops/H1ms360a"], ["https://tec.openplanner.team/stops/H1bo106c", "https://tec.openplanner.team/stops/H1bo109b"], ["https://tec.openplanner.team/stops/N390afa", "https://tec.openplanner.team/stops/X349aaa"], ["https://tec.openplanner.team/stops/X982bab", "https://tec.openplanner.team/stops/X982cea"], ["https://tec.openplanner.team/stops/H2ll181b", "https://tec.openplanner.team/stops/H2ll189b"], ["https://tec.openplanner.team/stops/H4vx363b", "https://tec.openplanner.team/stops/H4vx366a"], ["https://tec.openplanner.team/stops/N120add", "https://tec.openplanner.team/stops/N120aoc"], ["https://tec.openplanner.team/stops/Bovehst2", "https://tec.openplanner.team/stops/Bovelge2"], ["https://tec.openplanner.team/stops/LBOec--1", "https://tec.openplanner.team/stops/LDAandr1"], ["https://tec.openplanner.team/stops/LmDdenk2", "https://tec.openplanner.team/stops/LmDkape2"], ["https://tec.openplanner.team/stops/H4pi133b", "https://tec.openplanner.team/stops/H4ws159a"], ["https://tec.openplanner.team/stops/LHUec--2", "https://tec.openplanner.team/stops/LTimalv2"], ["https://tec.openplanner.team/stops/H1wa147a", "https://tec.openplanner.team/stops/H1wa147b"], ["https://tec.openplanner.team/stops/N501awa", "https://tec.openplanner.team/stops/N501bab"], ["https://tec.openplanner.team/stops/H1ht132a", "https://tec.openplanner.team/stops/H1ht197b"], ["https://tec.openplanner.team/stops/LmTzoll1", "https://tec.openplanner.team/stops/LtEnach1"], ["https://tec.openplanner.team/stops/H2jo161c", "https://tec.openplanner.team/stops/H2lh127a"], ["https://tec.openplanner.team/stops/Bnvmfba2", "https://tec.openplanner.team/stops/N518acc"], ["https://tec.openplanner.team/stops/Bgemcro1", "https://tec.openplanner.team/stops/Bgemman2"], ["https://tec.openplanner.team/stops/H4bo121a", "https://tec.openplanner.team/stops/H5qu145a"], ["https://tec.openplanner.team/stops/X730acb", "https://tec.openplanner.team/stops/X753acb"], ["https://tec.openplanner.team/stops/H1gh154b", "https://tec.openplanner.team/stops/H1gh155b"], ["https://tec.openplanner.team/stops/LENaout1", "https://tec.openplanner.team/stops/LENtour1"], ["https://tec.openplanner.team/stops/X992aba", "https://tec.openplanner.team/stops/X992ajb"], ["https://tec.openplanner.team/stops/X670abb", "https://tec.openplanner.team/stops/X670aca"], ["https://tec.openplanner.team/stops/Cnachat1", "https://tec.openplanner.team/stops/Cnacout1"], ["https://tec.openplanner.team/stops/Lprcard2", "https://tec.openplanner.team/stops/Lprfoot2"], ["https://tec.openplanner.team/stops/LBvviem3", "https://tec.openplanner.team/stops/LVMfoli2"], ["https://tec.openplanner.team/stops/N101aga", "https://tec.openplanner.team/stops/N101aua"], ["https://tec.openplanner.team/stops/X953aaa", "https://tec.openplanner.team/stops/X953ada"], ["https://tec.openplanner.team/stops/H4mb139a", "https://tec.openplanner.team/stops/H4ml207a"], ["https://tec.openplanner.team/stops/N529aia", "https://tec.openplanner.team/stops/N529aja"], ["https://tec.openplanner.team/stops/LRGchap1", "https://tec.openplanner.team/stops/LRGunio3"], ["https://tec.openplanner.team/stops/N348aeb", "https://tec.openplanner.team/stops/N349aaa"], ["https://tec.openplanner.team/stops/N202ahb", "https://tec.openplanner.team/stops/N204alb"], ["https://tec.openplanner.team/stops/H4bh100a", "https://tec.openplanner.team/stops/H4ry141b"], ["https://tec.openplanner.team/stops/H2lc145b", "https://tec.openplanner.team/stops/H2lc169b"], ["https://tec.openplanner.team/stops/NL68aba", "https://tec.openplanner.team/stops/NL68afa"], ["https://tec.openplanner.team/stops/N524aha", "https://tec.openplanner.team/stops/N524aid"], ["https://tec.openplanner.team/stops/X261adb", "https://tec.openplanner.team/stops/X979aja"], ["https://tec.openplanner.team/stops/X224aeb", "https://tec.openplanner.team/stops/X394aab"], ["https://tec.openplanner.team/stops/N501crd", "https://tec.openplanner.team/stops/N501ctb"], ["https://tec.openplanner.team/stops/LBsfer-1", "https://tec.openplanner.team/stops/NL72aba"], ["https://tec.openplanner.team/stops/H5at108a", "https://tec.openplanner.team/stops/H5at108b"], ["https://tec.openplanner.team/stops/H1ob331b", "https://tec.openplanner.team/stops/H1ob333a"], ["https://tec.openplanner.team/stops/Ljuchap3", "https://tec.openplanner.team/stops/Llgcouv4"], ["https://tec.openplanner.team/stops/LVbcoul1", "https://tec.openplanner.team/stops/NL77ama"], ["https://tec.openplanner.team/stops/X729aac", "https://tec.openplanner.team/stops/X746ama"], ["https://tec.openplanner.team/stops/Lbhgare1", "https://tec.openplanner.team/stops/Lbhmc--1"], ["https://tec.openplanner.team/stops/LaAbush*", "https://tec.openplanner.team/stops/LaAhaup1"], ["https://tec.openplanner.team/stops/Bgntalt1", "https://tec.openplanner.team/stops/Bgnteco1"], ["https://tec.openplanner.team/stops/N211asa", "https://tec.openplanner.team/stops/N211baa"], ["https://tec.openplanner.team/stops/N577aga", "https://tec.openplanner.team/stops/N577ajb"], ["https://tec.openplanner.team/stops/N160aha", "https://tec.openplanner.team/stops/N160ahb"], ["https://tec.openplanner.team/stops/N515aid", "https://tec.openplanner.team/stops/N515alb"], ["https://tec.openplanner.team/stops/Ltihala2", "https://tec.openplanner.team/stops/Ltipass2"], ["https://tec.openplanner.team/stops/LNEec--1", "https://tec.openplanner.team/stops/LNEec--2"], ["https://tec.openplanner.team/stops/H1ht124a", "https://tec.openplanner.team/stops/H1ht124b"], ["https://tec.openplanner.team/stops/Bmarcha2", "https://tec.openplanner.team/stops/Bwagdeb2"], ["https://tec.openplanner.team/stops/LAWdefr1", "https://tec.openplanner.team/stops/LHGtong2"], ["https://tec.openplanner.team/stops/N506bma", "https://tec.openplanner.team/stops/N506bmb"], ["https://tec.openplanner.team/stops/H1ma233c", "https://tec.openplanner.team/stops/H1mj130b"], ["https://tec.openplanner.team/stops/Cvtchap1", "https://tec.openplanner.team/stops/Cvtvail2"], ["https://tec.openplanner.team/stops/H5pe130a", "https://tec.openplanner.team/stops/H5pe131b"], ["https://tec.openplanner.team/stops/LRObarr1", "https://tec.openplanner.team/stops/LWLeg--1"], ["https://tec.openplanner.team/stops/X879ala", "https://tec.openplanner.team/stops/X879aoa"], ["https://tec.openplanner.team/stops/H4ta117b", "https://tec.openplanner.team/stops/H4ta123a"], ["https://tec.openplanner.team/stops/Bvirdco2", "https://tec.openplanner.team/stops/Bvirgar2"], ["https://tec.openplanner.team/stops/N580abb", "https://tec.openplanner.team/stops/N580acb"], ["https://tec.openplanner.team/stops/X837aja", "https://tec.openplanner.team/stops/X837alb"], ["https://tec.openplanner.team/stops/LArmaro1", "https://tec.openplanner.team/stops/LTPbeau1"], ["https://tec.openplanner.team/stops/X622aba", "https://tec.openplanner.team/stops/X696aea"], ["https://tec.openplanner.team/stops/Cchbrou2", "https://tec.openplanner.team/stops/Cchmonu2"], ["https://tec.openplanner.team/stops/Lhrjaur1", "https://tec.openplanner.team/stops/Lhrmine2"], ["https://tec.openplanner.team/stops/H4ka185a", "https://tec.openplanner.team/stops/H4ka187b"], ["https://tec.openplanner.team/stops/X719aca", "https://tec.openplanner.team/stops/X719ada"], ["https://tec.openplanner.team/stops/LCaresi1", "https://tec.openplanner.team/stops/LCaresi2"], ["https://tec.openplanner.team/stops/H1qv113a", "https://tec.openplanner.team/stops/H1qv113b"], ["https://tec.openplanner.team/stops/N512ada", "https://tec.openplanner.team/stops/N512aeb"], ["https://tec.openplanner.team/stops/LeUkabe2", "https://tec.openplanner.team/stops/LeUwais1"], ["https://tec.openplanner.team/stops/Cbfgare2", "https://tec.openplanner.team/stops/Cbfpauc2"], ["https://tec.openplanner.team/stops/Llggcha1", "https://tec.openplanner.team/stops/Llgmaus2"], ["https://tec.openplanner.team/stops/N517ada", "https://tec.openplanner.team/stops/N517adb"], ["https://tec.openplanner.team/stops/X615ala", "https://tec.openplanner.team/stops/X615aqb"], ["https://tec.openplanner.team/stops/N352afb", "https://tec.openplanner.team/stops/N355aeb"], ["https://tec.openplanner.team/stops/LeUkehr3", "https://tec.openplanner.team/stops/LeUsch%C3%B61"], ["https://tec.openplanner.team/stops/Cgoathe1", "https://tec.openplanner.team/stops/Cgohnda2"], ["https://tec.openplanner.team/stops/N543ahb", "https://tec.openplanner.team/stops/N543arb"], ["https://tec.openplanner.team/stops/LSygerm2", "https://tec.openplanner.team/stops/LSythie2"], ["https://tec.openplanner.team/stops/N506azb", "https://tec.openplanner.team/stops/N506bna"], ["https://tec.openplanner.team/stops/X659aca", "https://tec.openplanner.team/stops/X659avb"], ["https://tec.openplanner.team/stops/H4ka181b", "https://tec.openplanner.team/stops/H4ka191b"], ["https://tec.openplanner.team/stops/LsVgend2", "https://tec.openplanner.team/stops/LsVgore2"], ["https://tec.openplanner.team/stops/H4ba101a", "https://tec.openplanner.team/stops/H4ba101b"], ["https://tec.openplanner.team/stops/LHHindu1", "https://tec.openplanner.team/stops/LHHindu2"], ["https://tec.openplanner.team/stops/LJAbois2", "https://tec.openplanner.team/stops/Lmnchal1"], ["https://tec.openplanner.team/stops/X724aaa", "https://tec.openplanner.team/stops/X724aib"], ["https://tec.openplanner.team/stops/X717afb", "https://tec.openplanner.team/stops/X718abb"], ["https://tec.openplanner.team/stops/LDpzol-2", "https://tec.openplanner.team/stops/LMastat3"], ["https://tec.openplanner.team/stops/N106alb", "https://tec.openplanner.team/stops/N137aja"], ["https://tec.openplanner.team/stops/H2ll176a", "https://tec.openplanner.team/stops/H2ll176c"], ["https://tec.openplanner.team/stops/H1wa158a", "https://tec.openplanner.team/stops/H1wa158b"], ["https://tec.openplanner.team/stops/X788abb", "https://tec.openplanner.team/stops/X788abd"], ["https://tec.openplanner.team/stops/Bnivfhu2", "https://tec.openplanner.team/stops/Bnivrsh1"], ["https://tec.openplanner.team/stops/N532ada", "https://tec.openplanner.team/stops/N533aqa"], ["https://tec.openplanner.team/stops/Cci22ao1", "https://tec.openplanner.team/stops/Cci22ao2"], ["https://tec.openplanner.team/stops/Ctufleu3", "https://tec.openplanner.team/stops/Cturoge2"], ["https://tec.openplanner.team/stops/LHAdeho2", "https://tec.openplanner.team/stops/LHAleru2"], ["https://tec.openplanner.team/stops/H5rx101a", "https://tec.openplanner.team/stops/H5rx101b"], ["https://tec.openplanner.team/stops/Crachap2", "https://tec.openplanner.team/stops/Cracime2"], ["https://tec.openplanner.team/stops/Llgfred1", "https://tec.openplanner.team/stops/Llglibo3"], ["https://tec.openplanner.team/stops/Clodesc1", "https://tec.openplanner.team/stops/Clomari2"], ["https://tec.openplanner.team/stops/X903ada", "https://tec.openplanner.team/stops/X904adb"], ["https://tec.openplanner.team/stops/Bbsiabb1", "https://tec.openplanner.team/stops/Bbsipos2"], ["https://tec.openplanner.team/stops/LFrfrai2", "https://tec.openplanner.team/stops/LFrvesd1"], ["https://tec.openplanner.team/stops/Cmx3arb1", "https://tec.openplanner.team/stops/Cmx3arb2"], ["https://tec.openplanner.team/stops/LBssucr2", "https://tec.openplanner.team/stops/NL72aeb"], ["https://tec.openplanner.team/stops/LAUbirv2", "https://tec.openplanner.team/stops/LLCeg--1"], ["https://tec.openplanner.team/stops/H1qu103a", "https://tec.openplanner.team/stops/H1qu106a"], ["https://tec.openplanner.team/stops/N241aca", "https://tec.openplanner.team/stops/N570agb"], ["https://tec.openplanner.team/stops/X818amb", "https://tec.openplanner.team/stops/X818avb"], ["https://tec.openplanner.team/stops/H1si152b", "https://tec.openplanner.team/stops/H1si162a"], ["https://tec.openplanner.team/stops/LAMgare2", "https://tec.openplanner.team/stops/LAMgreg2"], ["https://tec.openplanner.team/stops/H3so161b", "https://tec.openplanner.team/stops/H3so166a"], ["https://tec.openplanner.team/stops/X780aea", "https://tec.openplanner.team/stops/X780afa"], ["https://tec.openplanner.team/stops/LLMcouv2", "https://tec.openplanner.team/stops/LLMjacq1"], ["https://tec.openplanner.team/stops/X952aea", "https://tec.openplanner.team/stops/X952aha"], ["https://tec.openplanner.team/stops/N534aya", "https://tec.openplanner.team/stops/N534ayb"], ["https://tec.openplanner.team/stops/LrUbrac1", "https://tec.openplanner.team/stops/LsBzent1"], ["https://tec.openplanner.team/stops/LdUkreu3", "https://tec.openplanner.team/stops/LeSsaal*"], ["https://tec.openplanner.team/stops/LLSba6-1", "https://tec.openplanner.team/stops/LLSba6-2"], ["https://tec.openplanner.team/stops/X979adb", "https://tec.openplanner.team/stops/X979afa"], ["https://tec.openplanner.team/stops/Bkrabhu1", "https://tec.openplanner.team/stops/Bkrapri2"], ["https://tec.openplanner.team/stops/Blanove1", "https://tec.openplanner.team/stops/LWscona2"], ["https://tec.openplanner.team/stops/N534acb", "https://tec.openplanner.team/stops/N543agb"], ["https://tec.openplanner.team/stops/LPRcha-*", "https://tec.openplanner.team/stops/LTRespe1"], ["https://tec.openplanner.team/stops/N230aea", "https://tec.openplanner.team/stops/N230ama"], ["https://tec.openplanner.team/stops/Ljetomb1", "https://tec.openplanner.team/stops/Ljetout4"], ["https://tec.openplanner.team/stops/N101adb", "https://tec.openplanner.team/stops/N101adc"], ["https://tec.openplanner.team/stops/Ladegli1", "https://tec.openplanner.team/stops/Ladjuif2"], ["https://tec.openplanner.team/stops/N501dsa", "https://tec.openplanner.team/stops/N501jta"], ["https://tec.openplanner.team/stops/LABbert1", "https://tec.openplanner.team/stops/LABvill2"], ["https://tec.openplanner.team/stops/X662aca", "https://tec.openplanner.team/stops/X663aca"], ["https://tec.openplanner.team/stops/H5el100b", "https://tec.openplanner.team/stops/H5el117a"], ["https://tec.openplanner.team/stops/N528afa", "https://tec.openplanner.team/stops/N528aja"], ["https://tec.openplanner.team/stops/X820aba", "https://tec.openplanner.team/stops/X820aca"], ["https://tec.openplanner.team/stops/LNipla4", "https://tec.openplanner.team/stops/LNipre-2"], ["https://tec.openplanner.team/stops/N118aka", "https://tec.openplanner.team/stops/N118ala"], ["https://tec.openplanner.team/stops/Csoforr3", "https://tec.openplanner.team/stops/Csograf1"], ["https://tec.openplanner.team/stops/H2ca103b", "https://tec.openplanner.team/stops/H2ca103d"], ["https://tec.openplanner.team/stops/LkOaugu1", "https://tec.openplanner.team/stops/LkOaugu2"], ["https://tec.openplanner.team/stops/LRGgend1", "https://tec.openplanner.team/stops/LRGgend3"], ["https://tec.openplanner.team/stops/N557afb", "https://tec.openplanner.team/stops/N557aha"], ["https://tec.openplanner.team/stops/Lhrpost1", "https://tec.openplanner.team/stops/Lhrpost2"], ["https://tec.openplanner.team/stops/X595aea", "https://tec.openplanner.team/stops/X595agb"], ["https://tec.openplanner.team/stops/H4ss154a", "https://tec.openplanner.team/stops/H4ss156a"], ["https://tec.openplanner.team/stops/LWRbomb2", "https://tec.openplanner.team/stops/LWRbomb3"], ["https://tec.openplanner.team/stops/N561aia", "https://tec.openplanner.team/stops/N561aib"], ["https://tec.openplanner.team/stops/H1gh144b", "https://tec.openplanner.team/stops/H1je215a"], ["https://tec.openplanner.team/stops/X634aea", "https://tec.openplanner.team/stops/X634ala"], ["https://tec.openplanner.team/stops/LDomoul2", "https://tec.openplanner.team/stops/LListie2"], ["https://tec.openplanner.team/stops/Cmlhauc4", "https://tec.openplanner.team/stops/Cmlvesp1"], ["https://tec.openplanner.team/stops/N103ahb", "https://tec.openplanner.team/stops/N103aib"], ["https://tec.openplanner.team/stops/Bllnfla3", "https://tec.openplanner.team/stops/Bllngle1"], ["https://tec.openplanner.team/stops/Llgcita1", "https://tec.openplanner.team/stops/Llgcoll1"], ["https://tec.openplanner.team/stops/Bbgepau2", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://tec.openplanner.team/stops/X779aea", "https://tec.openplanner.team/stops/X779afb"], ["https://tec.openplanner.team/stops/H4hx113a", "https://tec.openplanner.team/stops/H4hx121b"], ["https://tec.openplanner.team/stops/X672ala", "https://tec.openplanner.team/stops/X672aob"], ["https://tec.openplanner.team/stops/N301apa", "https://tec.openplanner.team/stops/N301apb"], ["https://tec.openplanner.team/stops/X730agb", "https://tec.openplanner.team/stops/X731ahb"], ["https://tec.openplanner.team/stops/Bhalgar1", "https://tec.openplanner.team/stops/Bhalpar2"], ["https://tec.openplanner.team/stops/N214afa", "https://tec.openplanner.team/stops/N214afb"], ["https://tec.openplanner.team/stops/N542ada", "https://tec.openplanner.team/stops/N577akb"], ["https://tec.openplanner.team/stops/LHCcroy2", "https://tec.openplanner.team/stops/LHChoek4"], ["https://tec.openplanner.team/stops/LWargeu2", "https://tec.openplanner.team/stops/LWaruth2"], ["https://tec.openplanner.team/stops/X872ada", "https://tec.openplanner.team/stops/X872agb"], ["https://tec.openplanner.team/stops/X899aab", "https://tec.openplanner.team/stops/X899aeb"], ["https://tec.openplanner.team/stops/Cjucopp1", "https://tec.openplanner.team/stops/Cjupn1"], ["https://tec.openplanner.team/stops/H4fo119b", "https://tec.openplanner.team/stops/H4ga152a"], ["https://tec.openplanner.team/stops/H1eo106b", "https://tec.openplanner.team/stops/H1ju119a"], ["https://tec.openplanner.team/stops/H4ml207a", "https://tec.openplanner.team/stops/H4ml208a"], ["https://tec.openplanner.team/stops/H1by100b", "https://tec.openplanner.team/stops/H1by101a"], ["https://tec.openplanner.team/stops/Ccugail2", "https://tec.openplanner.team/stops/Ccupres1"], ["https://tec.openplanner.team/stops/H2fy119a", "https://tec.openplanner.team/stops/H2fy123c"], ["https://tec.openplanner.team/stops/LLrquar1", "https://tec.openplanner.team/stops/LTHmont1"], ["https://tec.openplanner.team/stops/Cnacout1", "https://tec.openplanner.team/stops/N160afa"], ["https://tec.openplanner.team/stops/Bnivaig1", "https://tec.openplanner.team/stops/Bnivath1"], ["https://tec.openplanner.team/stops/X994afb", "https://tec.openplanner.team/stops/X994alb"], ["https://tec.openplanner.team/stops/N512ala", "https://tec.openplanner.team/stops/N512alb"], ["https://tec.openplanner.team/stops/N117aga", "https://tec.openplanner.team/stops/N150aka"], ["https://tec.openplanner.team/stops/LATdieu1", "https://tec.openplanner.team/stops/LATphar1"], ["https://tec.openplanner.team/stops/LSShous2", "https://tec.openplanner.team/stops/LYEphar1"], ["https://tec.openplanner.team/stops/Cnalava2", "https://tec.openplanner.team/stops/Cnapair1"], ["https://tec.openplanner.team/stops/Beclbar2", "https://tec.openplanner.team/stops/H2me116b"], ["https://tec.openplanner.team/stops/N535aca", "https://tec.openplanner.team/stops/N535acc"], ["https://tec.openplanner.team/stops/X773ala", "https://tec.openplanner.team/stops/X773ama"], ["https://tec.openplanner.team/stops/X896acb", "https://tec.openplanner.team/stops/X896adb"], ["https://tec.openplanner.team/stops/Cmgpthi2", "https://tec.openplanner.team/stops/Cmgtour2"], ["https://tec.openplanner.team/stops/Bezeksj1", "https://tec.openplanner.team/stops/Bezeksj4"], ["https://tec.openplanner.team/stops/X805aab", "https://tec.openplanner.team/stops/X807abb"], ["https://tec.openplanner.team/stops/LmNkirc1", "https://tec.openplanner.team/stops/LmNkirc2"], ["https://tec.openplanner.team/stops/X802aga", "https://tec.openplanner.team/stops/X802aha"], ["https://tec.openplanner.team/stops/Cmaest1", "https://tec.openplanner.team/stops/Cmaest2"], ["https://tec.openplanner.team/stops/X811aab", "https://tec.openplanner.team/stops/X811abb"], ["https://tec.openplanner.team/stops/H1hr122a", "https://tec.openplanner.team/stops/H3so171b"], ["https://tec.openplanner.team/stops/X941adb", "https://tec.openplanner.team/stops/X941aha"], ["https://tec.openplanner.team/stops/Lmobols2", "https://tec.openplanner.team/stops/Lmogoff1"], ["https://tec.openplanner.team/stops/N539alb", "https://tec.openplanner.team/stops/N539aob"], ["https://tec.openplanner.team/stops/Bbcocou1", "https://tec.openplanner.team/stops/Bbcodam4"], ["https://tec.openplanner.team/stops/Lengran1", "https://tec.openplanner.team/stops/Lengran2"], ["https://tec.openplanner.team/stops/Blindel2", "https://tec.openplanner.team/stops/Blindel3"], ["https://tec.openplanner.team/stops/H1ag104b", "https://tec.openplanner.team/stops/H1ro140b"], ["https://tec.openplanner.team/stops/H4ef109a", "https://tec.openplanner.team/stops/H4ef111a"], ["https://tec.openplanner.team/stops/N104aaa", "https://tec.openplanner.team/stops/N104aac"], ["https://tec.openplanner.team/stops/Bboncfv1", "https://tec.openplanner.team/stops/Bbonegl2"], ["https://tec.openplanner.team/stops/Bbcohou3", "https://tec.openplanner.team/stops/Bbcomar1"], ["https://tec.openplanner.team/stops/LSPdesc1", "https://tec.openplanner.team/stops/LSPsorb1"], ["https://tec.openplanner.team/stops/Bblaall2", "https://tec.openplanner.team/stops/Bblarbe1"], ["https://tec.openplanner.team/stops/LCOdrol1", "https://tec.openplanner.team/stops/LCOdrol2"], ["https://tec.openplanner.team/stops/Chhsncb2", "https://tec.openplanner.team/stops/Chhthui1"], ["https://tec.openplanner.team/stops/H4bd112b", "https://tec.openplanner.team/stops/H4ma203a"], ["https://tec.openplanner.team/stops/N513ada", "https://tec.openplanner.team/stops/N513agd"], ["https://tec.openplanner.team/stops/Btlbgla2", "https://tec.openplanner.team/stops/Btstw751"], ["https://tec.openplanner.team/stops/Ljuvieu2", "https://tec.openplanner.team/stops/LMFmerl1"], ["https://tec.openplanner.team/stops/X221aac", "https://tec.openplanner.team/stops/X221aad"], ["https://tec.openplanner.team/stops/H4fl115a", "https://tec.openplanner.team/stops/H4lp126b"], ["https://tec.openplanner.team/stops/N526adb", "https://tec.openplanner.team/stops/N532aea"], ["https://tec.openplanner.team/stops/Cthbeff1", "https://tec.openplanner.team/stops/Cthvbas3"], ["https://tec.openplanner.team/stops/Bblmcel1", "https://tec.openplanner.team/stops/Bblmpro1"], ["https://tec.openplanner.team/stops/NL67aaa", "https://tec.openplanner.team/stops/NL67aba"], ["https://tec.openplanner.team/stops/H1mj125a", "https://tec.openplanner.team/stops/H1ml112a"], ["https://tec.openplanner.team/stops/LARarge2", "https://tec.openplanner.team/stops/LHAprei2"], ["https://tec.openplanner.team/stops/H1cv104b", "https://tec.openplanner.team/stops/H1lm107a"], ["https://tec.openplanner.team/stops/X769aca", "https://tec.openplanner.team/stops/X769acb"], ["https://tec.openplanner.team/stops/X650aoa", "https://tec.openplanner.team/stops/X671aga"], ["https://tec.openplanner.team/stops/LWzeg--*", "https://tec.openplanner.team/stops/LWzfuma1"], ["https://tec.openplanner.team/stops/Llmcoop1", "https://tec.openplanner.team/stops/LWetrib1"], ["https://tec.openplanner.team/stops/NC44aaa", "https://tec.openplanner.team/stops/NC44aeb"], ["https://tec.openplanner.team/stops/N542aqa", "https://tec.openplanner.team/stops/N577afa"], ["https://tec.openplanner.team/stops/Lemmeha1", "https://tec.openplanner.team/stops/Lemmeha2"], ["https://tec.openplanner.team/stops/Lemmc--1", "https://tec.openplanner.team/stops/Lemmc--2"], ["https://tec.openplanner.team/stops/Bpielom1", "https://tec.openplanner.team/stops/Bpielon2"], ["https://tec.openplanner.team/stops/Llghoch1", "https://tec.openplanner.team/stops/Llghull2"], ["https://tec.openplanner.team/stops/Lbrfoid1", "https://tec.openplanner.team/stops/Lbrmc--2"], ["https://tec.openplanner.team/stops/H4bl106a", "https://tec.openplanner.team/stops/H4ga158a"], ["https://tec.openplanner.team/stops/LWEmito2", "https://tec.openplanner.team/stops/LWEwilc2"], ["https://tec.openplanner.team/stops/Btubcvi2", "https://tec.openplanner.team/stops/Btubdeh1"], ["https://tec.openplanner.team/stops/X982ala", "https://tec.openplanner.team/stops/X982ama"], ["https://tec.openplanner.team/stops/Ccybouc3", "https://tec.openplanner.team/stops/Ccybouc4"], ["https://tec.openplanner.team/stops/X657aeb", "https://tec.openplanner.team/stops/X742ada"], ["https://tec.openplanner.team/stops/X941acd", "https://tec.openplanner.team/stops/X941aea"], ["https://tec.openplanner.team/stops/LATcham*", "https://tec.openplanner.team/stops/LATmonu1"], ["https://tec.openplanner.team/stops/H5rx101b", "https://tec.openplanner.team/stops/H5rx105a"], ["https://tec.openplanner.team/stops/NC14aba", "https://tec.openplanner.team/stops/NC14abb"], ["https://tec.openplanner.team/stops/Bhanath1", "https://tec.openplanner.team/stops/Bhanath2"], ["https://tec.openplanner.team/stops/N562aib", "https://tec.openplanner.team/stops/N562azb"], ["https://tec.openplanner.team/stops/LSLdall1", "https://tec.openplanner.team/stops/LSLfler1"], ["https://tec.openplanner.team/stops/Blhunys3", "https://tec.openplanner.team/stops/Blhupri2"], ["https://tec.openplanner.team/stops/Cgzgrru1", "https://tec.openplanner.team/stops/Cgzrust2"], ["https://tec.openplanner.team/stops/H1ho125c", "https://tec.openplanner.team/stops/H1ho139a"], ["https://tec.openplanner.team/stops/X725ava", "https://tec.openplanner.team/stops/X725aya"], ["https://tec.openplanner.team/stops/N529ajb", "https://tec.openplanner.team/stops/N584aob"], ["https://tec.openplanner.team/stops/X619agb", "https://tec.openplanner.team/stops/X619aha"], ["https://tec.openplanner.team/stops/Cthnord1", "https://tec.openplanner.team/stops/Cthvbas4"], ["https://tec.openplanner.team/stops/LLTcent1", "https://tec.openplanner.team/stops/LLTtour2"], ["https://tec.openplanner.team/stops/Csychap1", "https://tec.openplanner.team/stops/Csyplac1"], ["https://tec.openplanner.team/stops/LHZbren2", "https://tec.openplanner.team/stops/LHZcouv1"], ["https://tec.openplanner.team/stops/X767aab", "https://tec.openplanner.team/stops/X767abb"], ["https://tec.openplanner.team/stops/Llgcita2", "https://tec.openplanner.team/stops/LlgLAMB7"], ["https://tec.openplanner.team/stops/Canjon2", "https://tec.openplanner.team/stops/Canjonc2"], ["https://tec.openplanner.team/stops/X601aud", "https://tec.openplanner.team/stops/X601ayb"], ["https://tec.openplanner.team/stops/N218aab", "https://tec.openplanner.team/stops/N218adb"], ["https://tec.openplanner.team/stops/N501kpa", "https://tec.openplanner.team/stops/N501mvc"], ["https://tec.openplanner.team/stops/LeUcamp1", "https://tec.openplanner.team/stops/LeUoe541"], ["https://tec.openplanner.team/stops/Lveanto1", "https://tec.openplanner.team/stops/Lvelimi2"], ["https://tec.openplanner.team/stops/Lceembo1", "https://tec.openplanner.team/stops/Lcepoul2"], ["https://tec.openplanner.team/stops/N529aeb", "https://tec.openplanner.team/stops/N529afb"], ["https://tec.openplanner.team/stops/LHGbeur3", "https://tec.openplanner.team/stops/LHGikea1"], ["https://tec.openplanner.team/stops/Lhuderu2", "https://tec.openplanner.team/stops/Lhueg--2"], ["https://tec.openplanner.team/stops/N222aya", "https://tec.openplanner.team/stops/X222ala"], ["https://tec.openplanner.team/stops/LWazoni2", "https://tec.openplanner.team/stops/LWLhagi1"], ["https://tec.openplanner.team/stops/H1ho141a", "https://tec.openplanner.team/stops/H1ho141b"], ["https://tec.openplanner.team/stops/X623aha", "https://tec.openplanner.team/stops/X623aia"], ["https://tec.openplanner.team/stops/X955aaa", "https://tec.openplanner.team/stops/X955aea"], ["https://tec.openplanner.team/stops/N542ada", "https://tec.openplanner.team/stops/N542afa"], ["https://tec.openplanner.team/stops/X638aqa", "https://tec.openplanner.team/stops/X638aqb"], ["https://tec.openplanner.team/stops/LAWvill1", "https://tec.openplanner.team/stops/LAWvill2"], ["https://tec.openplanner.team/stops/N505ajb", "https://tec.openplanner.team/stops/N512awa"], ["https://tec.openplanner.team/stops/Cmecomb1", "https://tec.openplanner.team/stops/Cmehels1"], ["https://tec.openplanner.team/stops/Bbch4br4", "https://tec.openplanner.team/stops/Bbch4br5"], ["https://tec.openplanner.team/stops/LSdbote2", "https://tec.openplanner.team/stops/LSdcarr1"], ["https://tec.openplanner.team/stops/X947adb", "https://tec.openplanner.team/stops/X947afb"], ["https://tec.openplanner.team/stops/N501gib", "https://tec.openplanner.team/stops/N501gsa"], ["https://tec.openplanner.team/stops/Blmlbif2", "https://tec.openplanner.team/stops/Brsrmon3"], ["https://tec.openplanner.team/stops/Barqhpe1", "https://tec.openplanner.team/stops/Barqres2"], ["https://tec.openplanner.team/stops/X902aia", "https://tec.openplanner.team/stops/X903aab"], ["https://tec.openplanner.team/stops/Cvvcime1", "https://tec.openplanner.team/stops/Cvvcime2"], ["https://tec.openplanner.team/stops/N207adc", "https://tec.openplanner.team/stops/N207add"], ["https://tec.openplanner.team/stops/Bblmwma1", "https://tec.openplanner.team/stops/Bwlhppg4"], ["https://tec.openplanner.team/stops/H4ep130a", "https://tec.openplanner.team/stops/H4la199a"], ["https://tec.openplanner.team/stops/Bptecar2", "https://tec.openplanner.team/stops/Brebrog2"], ["https://tec.openplanner.team/stops/X904afa", "https://tec.openplanner.team/stops/X904ahb"], ["https://tec.openplanner.team/stops/H4bq100a", "https://tec.openplanner.team/stops/H4bq102a"], ["https://tec.openplanner.team/stops/X614avb", "https://tec.openplanner.team/stops/X615aqa"], ["https://tec.openplanner.team/stops/Ljhjeha*", "https://tec.openplanner.team/stops/LPobois2"], ["https://tec.openplanner.team/stops/LHUchpl1", "https://tec.openplanner.team/stops/LHUchpl2"], ["https://tec.openplanner.team/stops/H1pw122a", "https://tec.openplanner.team/stops/H1wa154b"], ["https://tec.openplanner.team/stops/H1br125b", "https://tec.openplanner.team/stops/H2tr253a"], ["https://tec.openplanner.team/stops/X948apb", "https://tec.openplanner.team/stops/X948ara"], ["https://tec.openplanner.team/stops/Bsgibla2", "https://tec.openplanner.team/stops/Bsgipha3"], ["https://tec.openplanner.team/stops/LJUmc--2", "https://tec.openplanner.team/stops/LPAchpl2"], ["https://tec.openplanner.team/stops/Bwatfau1", "https://tec.openplanner.team/stops/Bwatle32"], ["https://tec.openplanner.team/stops/LHAarge1", "https://tec.openplanner.team/stops/LHApthe1"], ["https://tec.openplanner.team/stops/LBjflor1", "https://tec.openplanner.team/stops/LBjflor2"], ["https://tec.openplanner.team/stops/H1sy147a", "https://tec.openplanner.team/stops/H1sy150a"], ["https://tec.openplanner.team/stops/N512awa", "https://tec.openplanner.team/stops/N512awb"], ["https://tec.openplanner.team/stops/Lemdieu1", "https://tec.openplanner.team/stops/Lemjacq2"], ["https://tec.openplanner.team/stops/H1gh167a", "https://tec.openplanner.team/stops/H1gh167b"], ["https://tec.openplanner.team/stops/H2sb243a", "https://tec.openplanner.team/stops/H2sb243b"], ["https://tec.openplanner.team/stops/N351asa", "https://tec.openplanner.team/stops/N351asb"], ["https://tec.openplanner.team/stops/Chpatel2", "https://tec.openplanner.team/stops/Chpcarp1"], ["https://tec.openplanner.team/stops/H3bo103b", "https://tec.openplanner.team/stops/H3th127a"], ["https://tec.openplanner.team/stops/X730aca", "https://tec.openplanner.team/stops/X730aea"], ["https://tec.openplanner.team/stops/Lcacris2", "https://tec.openplanner.team/stops/Lvchaus1"], ["https://tec.openplanner.team/stops/NC24aia", "https://tec.openplanner.team/stops/NC24aja"], ["https://tec.openplanner.team/stops/NH01ara", "https://tec.openplanner.team/stops/NH01arb"], ["https://tec.openplanner.team/stops/Bsaubbo2", "https://tec.openplanner.team/stops/N541aca"], ["https://tec.openplanner.team/stops/N120agb", "https://tec.openplanner.team/stops/N120ahb"], ["https://tec.openplanner.team/stops/LBSnouw2", "https://tec.openplanner.team/stops/LBStong1"], ["https://tec.openplanner.team/stops/Lhrbrou1", "https://tec.openplanner.team/stops/Lhrrhee*"], ["https://tec.openplanner.team/stops/Cfrcoqu1", "https://tec.openplanner.team/stops/Cfrsour2"], ["https://tec.openplanner.team/stops/X904aea", "https://tec.openplanner.team/stops/X904aga"], ["https://tec.openplanner.team/stops/LAxbott1", "https://tec.openplanner.team/stops/Lmigare2"], ["https://tec.openplanner.team/stops/LmDelek2", "https://tec.openplanner.team/stops/LsVfeye1"], ["https://tec.openplanner.team/stops/Blontry1", "https://tec.openplanner.team/stops/Bptbsar2"], ["https://tec.openplanner.team/stops/H1ha194b", "https://tec.openplanner.team/stops/H1vh137a"], ["https://tec.openplanner.team/stops/Crcgare1", "https://tec.openplanner.team/stops/Crcrgar1"], ["https://tec.openplanner.team/stops/LeLbutg1", "https://tec.openplanner.team/stops/LnIfrie1"], ["https://tec.openplanner.team/stops/H4co104a", "https://tec.openplanner.team/stops/H4co158b"], ["https://tec.openplanner.team/stops/Lhragri1", "https://tec.openplanner.team/stops/Lhrmura2"], ["https://tec.openplanner.team/stops/H4ma418a", "https://tec.openplanner.team/stops/H4oq228b"], ["https://tec.openplanner.team/stops/Cmecite1", "https://tec.openplanner.team/stops/Csabrun1"], ["https://tec.openplanner.team/stops/LNAbras1", "https://tec.openplanner.team/stops/LNAbras5"], ["https://tec.openplanner.team/stops/X811aib", "https://tec.openplanner.team/stops/X811ala"], ["https://tec.openplanner.team/stops/N539aab", "https://tec.openplanner.team/stops/N540aha"], ["https://tec.openplanner.team/stops/X948avb", "https://tec.openplanner.team/stops/X948bba"], ["https://tec.openplanner.team/stops/N270afa", "https://tec.openplanner.team/stops/N270afc"], ["https://tec.openplanner.team/stops/NL74aba", "https://tec.openplanner.team/stops/NL74abb"], ["https://tec.openplanner.team/stops/H4mo181b", "https://tec.openplanner.team/stops/H4rk101a"], ["https://tec.openplanner.team/stops/LhGcasi1", "https://tec.openplanner.team/stops/LkEmax-2"], ["https://tec.openplanner.team/stops/N501ewa", "https://tec.openplanner.team/stops/N501hca"], ["https://tec.openplanner.team/stops/H4lz117a", "https://tec.openplanner.team/stops/H4lz118b"], ["https://tec.openplanner.team/stops/LGemari1", "https://tec.openplanner.team/stops/LGevygh1"], ["https://tec.openplanner.team/stops/Lsedavy1", "https://tec.openplanner.team/stops/Lseivoz2"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Llojeme4"], ["https://tec.openplanner.team/stops/N347aga", "https://tec.openplanner.team/stops/X347aaa"], ["https://tec.openplanner.team/stops/N168aaa", "https://tec.openplanner.team/stops/N168aab"], ["https://tec.openplanner.team/stops/N544aaa", "https://tec.openplanner.team/stops/N544aba"], ["https://tec.openplanner.team/stops/H1ob334b", "https://tec.openplanner.team/stops/H1ob341b"], ["https://tec.openplanner.team/stops/N520aba", "https://tec.openplanner.team/stops/N520aca"], ["https://tec.openplanner.team/stops/LbUhuge1", "https://tec.openplanner.team/stops/LbUhuge2"], ["https://tec.openplanner.team/stops/X940aed", "https://tec.openplanner.team/stops/X941ada"], ["https://tec.openplanner.team/stops/N232arb", "https://tec.openplanner.team/stops/N232caa"], ["https://tec.openplanner.team/stops/LmI129-2", "https://tec.openplanner.team/stops/LmIkirc1"], ["https://tec.openplanner.team/stops/Llglibo4", "https://tec.openplanner.team/stops/Llgptlo5"], ["https://tec.openplanner.team/stops/Bgligli1", "https://tec.openplanner.team/stops/Bglitro1"], ["https://tec.openplanner.team/stops/N383aea", "https://tec.openplanner.team/stops/N874akb"], ["https://tec.openplanner.team/stops/X650afe", "https://tec.openplanner.team/stops/X671aga"], ["https://tec.openplanner.team/stops/N155aec", "https://tec.openplanner.team/stops/N155agb"], ["https://tec.openplanner.team/stops/H4ty276b", "https://tec.openplanner.team/stops/H4ty315a"], ["https://tec.openplanner.team/stops/N513bfa", "https://tec.openplanner.team/stops/N513bhb"], ["https://tec.openplanner.team/stops/LAufech1", "https://tec.openplanner.team/stops/LJuhaie1"], ["https://tec.openplanner.team/stops/X878aaa", "https://tec.openplanner.team/stops/X879aaa"], ["https://tec.openplanner.team/stops/H2jo164a", "https://tec.openplanner.team/stops/H2ll194a"], ["https://tec.openplanner.team/stops/X631aca", "https://tec.openplanner.team/stops/X631ada"], ["https://tec.openplanner.team/stops/X615bcb", "https://tec.openplanner.team/stops/X615bda"], ["https://tec.openplanner.team/stops/X786aab", "https://tec.openplanner.team/stops/X786abb"], ["https://tec.openplanner.team/stops/Bnivaba2", "https://tec.openplanner.team/stops/Bnivh%C3%B4p2"], ["https://tec.openplanner.team/stops/Bqueegl1", "https://tec.openplanner.team/stops/Bqueegl2"], ["https://tec.openplanner.team/stops/LDAandr1", "https://tec.openplanner.team/stops/LDAchau1"], ["https://tec.openplanner.team/stops/Lstscie1", "https://tec.openplanner.team/stops/Lsttech1"], ["https://tec.openplanner.team/stops/H1hr121c", "https://tec.openplanner.team/stops/H1hr125b"], ["https://tec.openplanner.team/stops/Llianix2", "https://tec.openplanner.team/stops/Llithon1"], ["https://tec.openplanner.team/stops/Cfbcal2", "https://tec.openplanner.team/stops/NH03adb"], ["https://tec.openplanner.team/stops/N301aga", "https://tec.openplanner.team/stops/N301agb"], ["https://tec.openplanner.team/stops/H1ni317a", "https://tec.openplanner.team/stops/H1ni318a"], ["https://tec.openplanner.team/stops/LOLrafh1", "https://tec.openplanner.team/stops/LOLvill2"], ["https://tec.openplanner.team/stops/H4gr109a", "https://tec.openplanner.team/stops/H4hu113b"], ["https://tec.openplanner.team/stops/Ldipl--2", "https://tec.openplanner.team/stops/Ldipl--4"], ["https://tec.openplanner.team/stops/H1mm122b", "https://tec.openplanner.team/stops/H1mm122d"], ["https://tec.openplanner.team/stops/N201akb", "https://tec.openplanner.team/stops/N211ayb"], ["https://tec.openplanner.team/stops/Cluchbl1", "https://tec.openplanner.team/stops/Clupcfe2"], ["https://tec.openplanner.team/stops/H4ga156a", "https://tec.openplanner.team/stops/H4ml209b"], ["https://tec.openplanner.team/stops/Bwatcpl2", "https://tec.openplanner.team/stops/Bwatpas2"], ["https://tec.openplanner.team/stops/Lsnfont1", "https://tec.openplanner.team/stops/Lsnhoco2"], ["https://tec.openplanner.team/stops/Bchapir1", "https://tec.openplanner.team/stops/Bcrnnra1"], ["https://tec.openplanner.team/stops/Bmalsmc2", "https://tec.openplanner.team/stops/Btlbcul2"], ["https://tec.openplanner.team/stops/Cgrchas1", "https://tec.openplanner.team/stops/Cgrchea1"], ["https://tec.openplanner.team/stops/X836aia", "https://tec.openplanner.team/stops/X836ajb"], ["https://tec.openplanner.team/stops/H4mt214a", "https://tec.openplanner.team/stops/H4mt217b"], ["https://tec.openplanner.team/stops/H2jo163b", "https://tec.openplanner.team/stops/H2jo163c"], ["https://tec.openplanner.team/stops/Llgegwa1", "https://tec.openplanner.team/stops/Llgvott1"], ["https://tec.openplanner.team/stops/X664apb", "https://tec.openplanner.team/stops/X664aqa"], ["https://tec.openplanner.team/stops/Lsnmala2", "https://tec.openplanner.team/stops/Lsnmala3"], ["https://tec.openplanner.team/stops/Bwaab122", "https://tec.openplanner.team/stops/Bwaakap2"], ["https://tec.openplanner.team/stops/LRemorr4", "https://tec.openplanner.team/stops/LRepous2"], ["https://tec.openplanner.team/stops/X601cva", "https://tec.openplanner.team/stops/X601dcb"], ["https://tec.openplanner.team/stops/LCPgare2", "https://tec.openplanner.team/stops/LCPlacr2"], ["https://tec.openplanner.team/stops/Lfhpass2", "https://tec.openplanner.team/stops/Ljemeca2"], ["https://tec.openplanner.team/stops/LVAbuss1", "https://tec.openplanner.team/stops/LVAgemm1"], ["https://tec.openplanner.team/stops/Benggar1", "https://tec.openplanner.team/stops/Bptecar1"], ["https://tec.openplanner.team/stops/LGAholl1", "https://tec.openplanner.team/stops/LGAnovi2"], ["https://tec.openplanner.team/stops/LeYwald2", "https://tec.openplanner.team/stops/LhSheid2"], ["https://tec.openplanner.team/stops/LDLbeau1", "https://tec.openplanner.team/stops/LDLbeau2"], ["https://tec.openplanner.team/stops/NL77ada", "https://tec.openplanner.team/stops/NL77akb"], ["https://tec.openplanner.team/stops/LSTmast1", "https://tec.openplanner.team/stops/LSTmeiz1"], ["https://tec.openplanner.team/stops/N510adb", "https://tec.openplanner.team/stops/N513aza"], ["https://tec.openplanner.team/stops/Ljetout1", "https://tec.openplanner.team/stops/Ljetout3"], ["https://tec.openplanner.team/stops/Bnivfdu1", "https://tec.openplanner.team/stops/Cgnpass1"], ["https://tec.openplanner.team/stops/Ccogrha2", "https://tec.openplanner.team/stops/Ccojaur3"], ["https://tec.openplanner.team/stops/N576aga", "https://tec.openplanner.team/stops/N576aib"], ["https://tec.openplanner.team/stops/H4he101b", "https://tec.openplanner.team/stops/H4po130a"], ["https://tec.openplanner.team/stops/Llglair2", "https://tec.openplanner.team/stops/Llgrema1"], ["https://tec.openplanner.team/stops/X937abb", "https://tec.openplanner.team/stops/X937aga"], ["https://tec.openplanner.team/stops/LFychpl2", "https://tec.openplanner.team/stops/LFypont1"], ["https://tec.openplanner.team/stops/LCShoux2", "https://tec.openplanner.team/stops/LHHtill2"], ["https://tec.openplanner.team/stops/X602ajb", "https://tec.openplanner.team/stops/X602aqa"], ["https://tec.openplanner.team/stops/Bcrnnca1", "https://tec.openplanner.team/stops/Bcrnnra1"], ["https://tec.openplanner.team/stops/H1te173a", "https://tec.openplanner.team/stops/H1te185a"], ["https://tec.openplanner.team/stops/X741akb", "https://tec.openplanner.team/stops/X741ala"], ["https://tec.openplanner.team/stops/Cdostco1", "https://tec.openplanner.team/stops/Cdostco2"], ["https://tec.openplanner.team/stops/Llaeg--2", "https://tec.openplanner.team/stops/Llaflot2"], ["https://tec.openplanner.team/stops/Lflcle-2", "https://tec.openplanner.team/stops/Lflfort*"], ["https://tec.openplanner.team/stops/H1ha195a", "https://tec.openplanner.team/stops/H1ha196b"], ["https://tec.openplanner.team/stops/LAMfroi2", "https://tec.openplanner.team/stops/LAMusin1"], ["https://tec.openplanner.team/stops/Cpcplac2", "https://tec.openplanner.team/stops/Cpcplac3"], ["https://tec.openplanner.team/stops/X768aab", "https://tec.openplanner.team/stops/X768abb"], ["https://tec.openplanner.team/stops/LLTeg--2", "https://tec.openplanner.team/stops/LLTfall2"], ["https://tec.openplanner.team/stops/N501jqa", "https://tec.openplanner.team/stops/N501nez"], ["https://tec.openplanner.team/stops/Bcbqgar2", "https://tec.openplanner.team/stops/Btubnav1"], ["https://tec.openplanner.team/stops/X834acb", "https://tec.openplanner.team/stops/X834adb"], ["https://tec.openplanner.team/stops/Ladxhen1", "https://tec.openplanner.team/stops/Ladxhen2"], ["https://tec.openplanner.team/stops/Cnadepo2", "https://tec.openplanner.team/stops/Cnahahe2"], ["https://tec.openplanner.team/stops/Csecoup2", "https://tec.openplanner.team/stops/Cvtndam3"], ["https://tec.openplanner.team/stops/NL72adb", "https://tec.openplanner.team/stops/NL76aeb"], ["https://tec.openplanner.team/stops/Cctcoll2", "https://tec.openplanner.team/stops/Cctvand2"], ["https://tec.openplanner.team/stops/Btsllib2", "https://tec.openplanner.team/stops/Btslnil2"], ["https://tec.openplanner.team/stops/Llghars7", "https://tec.openplanner.team/stops/Llgnata4"], ["https://tec.openplanner.team/stops/Lenhosp1", "https://tec.openplanner.team/stops/Lpecroi1"], ["https://tec.openplanner.team/stops/Lvtbocl1", "https://tec.openplanner.team/stops/Lvtmeun2"], ["https://tec.openplanner.team/stops/H1ro131a", "https://tec.openplanner.team/stops/H1ro132b"], ["https://tec.openplanner.team/stops/N346aaa", "https://tec.openplanner.team/stops/X346aka"], ["https://tec.openplanner.team/stops/LNCloui1", "https://tec.openplanner.team/stops/LNCmele1"], ["https://tec.openplanner.team/stops/X812aoa", "https://tec.openplanner.team/stops/X812ava"], ["https://tec.openplanner.team/stops/Buccdho2", "https://tec.openplanner.team/stops/Buccobs2"], ["https://tec.openplanner.team/stops/X734aaa", "https://tec.openplanner.team/stops/X735aaa"], ["https://tec.openplanner.team/stops/Lhrrhee*", "https://tec.openplanner.team/stops/Lhrunir1"], ["https://tec.openplanner.team/stops/N368aba", "https://tec.openplanner.team/stops/N368aca"], ["https://tec.openplanner.team/stops/LXflong1", "https://tec.openplanner.team/stops/LXflong2"], ["https://tec.openplanner.team/stops/X661ada", "https://tec.openplanner.team/stops/X661aga"], ["https://tec.openplanner.team/stops/LBkbamb1", "https://tec.openplanner.team/stops/LlNbusc1"], ["https://tec.openplanner.team/stops/Bhalgar2", "https://tec.openplanner.team/stops/Bhalkrk1"], ["https://tec.openplanner.team/stops/N506aga", "https://tec.openplanner.team/stops/N506aka"], ["https://tec.openplanner.team/stops/X728ada", "https://tec.openplanner.team/stops/X746aba"], ["https://tec.openplanner.team/stops/N122ada", "https://tec.openplanner.team/stops/N122aia"], ["https://tec.openplanner.team/stops/Blemmar1", "https://tec.openplanner.team/stops/Blemmar2"], ["https://tec.openplanner.team/stops/LSerout2", "https://tec.openplanner.team/stops/LVbstre2"], ["https://tec.openplanner.team/stops/X738abb", "https://tec.openplanner.team/stops/X739aba"], ["https://tec.openplanner.team/stops/H1hw118a", "https://tec.openplanner.team/stops/H1hw118b"], ["https://tec.openplanner.team/stops/Lagjado2", "https://tec.openplanner.team/stops/Lagjado5"], ["https://tec.openplanner.team/stops/N135bfa", "https://tec.openplanner.team/stops/N135bfb"], ["https://tec.openplanner.team/stops/Cflchel2", "https://tec.openplanner.team/stops/Cflecep2"], ["https://tec.openplanner.team/stops/H1cu118a", "https://tec.openplanner.team/stops/H1cu121b"], ["https://tec.openplanner.team/stops/N151abb", "https://tec.openplanner.team/stops/N151aje"], ["https://tec.openplanner.team/stops/H2tr249a", "https://tec.openplanner.team/stops/H2tr250a"], ["https://tec.openplanner.team/stops/Cprcits1", "https://tec.openplanner.team/stops/Cprcits2"], ["https://tec.openplanner.team/stops/H4ff115a", "https://tec.openplanner.team/stops/H4ff122b"], ["https://tec.openplanner.team/stops/Lrofont*", "https://tec.openplanner.team/stops/Lrosaun2"], ["https://tec.openplanner.team/stops/Bclgavi1", "https://tec.openplanner.team/stops/Bclgegl1"], ["https://tec.openplanner.team/stops/N120aia", "https://tec.openplanner.team/stops/N120ajb"], ["https://tec.openplanner.team/stops/Ccyrmon1", "https://tec.openplanner.team/stops/Crbgare1"], ["https://tec.openplanner.team/stops/Cmqbert1", "https://tec.openplanner.team/stops/Csepier1"], ["https://tec.openplanner.team/stops/H1ch105a", "https://tec.openplanner.team/stops/H1ch105b"], ["https://tec.openplanner.team/stops/LHUlieg1", "https://tec.openplanner.team/stops/LHUlieg2"], ["https://tec.openplanner.team/stops/LRAcouv1", "https://tec.openplanner.team/stops/LRarami2"], ["https://tec.openplanner.team/stops/LWHtrui1", "https://tec.openplanner.team/stops/LWSstat2"], ["https://tec.openplanner.team/stops/Llgchev2", "https://tec.openplanner.team/stops/Llgdefr2"], ["https://tec.openplanner.team/stops/N308ana", "https://tec.openplanner.team/stops/N308bhb"], ["https://tec.openplanner.team/stops/Lanhoud2", "https://tec.openplanner.team/stops/Lannico4"], ["https://tec.openplanner.team/stops/Lhutann2", "https://tec.openplanner.team/stops/Lmnbass2"], ["https://tec.openplanner.team/stops/Bramcom1", "https://tec.openplanner.team/stops/NR27aba"], ["https://tec.openplanner.team/stops/CMmoul1", "https://tec.openplanner.team/stops/Cmomoul3"], ["https://tec.openplanner.team/stops/X610aia", "https://tec.openplanner.team/stops/X610aib"], ["https://tec.openplanner.team/stops/LAYambl2", "https://tec.openplanner.team/stops/LAYharz2"], ["https://tec.openplanner.team/stops/LMObut-1", "https://tec.openplanner.team/stops/LMOf21-2"], ["https://tec.openplanner.team/stops/LBSchar2", "https://tec.openplanner.team/stops/LBSchar3"], ["https://tec.openplanner.team/stops/N538aca", "https://tec.openplanner.team/stops/N538amd"], ["https://tec.openplanner.team/stops/X952agb", "https://tec.openplanner.team/stops/X954adb"], ["https://tec.openplanner.team/stops/N106aoa", "https://tec.openplanner.team/stops/N106aqb"], ["https://tec.openplanner.team/stops/LENmc--2", "https://tec.openplanner.team/stops/LENsent2"], ["https://tec.openplanner.team/stops/X946abb", "https://tec.openplanner.team/stops/X946ahb"], ["https://tec.openplanner.team/stops/Bllnjpa2", "https://tec.openplanner.team/stops/Bmsggra3"], ["https://tec.openplanner.team/stops/LClbloc1", "https://tec.openplanner.team/stops/LCljose2"], ["https://tec.openplanner.team/stops/H4bn174b", "https://tec.openplanner.team/stops/H4pi133b"], ["https://tec.openplanner.team/stops/LLbbons2", "https://tec.openplanner.team/stops/LrEkreu2"], ["https://tec.openplanner.team/stops/Cnanoir2", "https://tec.openplanner.team/stops/Cnaplha3"], ["https://tec.openplanner.team/stops/X887aaa", "https://tec.openplanner.team/stops/X890aaa"], ["https://tec.openplanner.team/stops/Cwgmutu2", "https://tec.openplanner.team/stops/Cwgrans1"], ["https://tec.openplanner.team/stops/LBabeco4", "https://tec.openplanner.team/stops/LBamate2"], ["https://tec.openplanner.team/stops/N141agb", "https://tec.openplanner.team/stops/N141apb"], ["https://tec.openplanner.team/stops/H1cu125a", "https://tec.openplanner.team/stops/H1cu125b"], ["https://tec.openplanner.team/stops/X802asa", "https://tec.openplanner.team/stops/X802asb"], ["https://tec.openplanner.team/stops/N211akb", "https://tec.openplanner.team/stops/N214aba"], ["https://tec.openplanner.team/stops/H1te176a", "https://tec.openplanner.team/stops/H1te188a"], ["https://tec.openplanner.team/stops/H1pa104a", "https://tec.openplanner.team/stops/H1pa110b"], ["https://tec.openplanner.team/stops/X390aia", "https://tec.openplanner.team/stops/X902aka"], ["https://tec.openplanner.team/stops/N146aaa", "https://tec.openplanner.team/stops/N146ada"], ["https://tec.openplanner.team/stops/LFHjamo2", "https://tec.openplanner.team/stops/LHolexh1"], ["https://tec.openplanner.team/stops/N514aaa", "https://tec.openplanner.team/stops/N514ana"], ["https://tec.openplanner.team/stops/Lmlbaro1", "https://tec.openplanner.team/stops/Lmlbaro2"], ["https://tec.openplanner.team/stops/N260aba", "https://tec.openplanner.team/stops/N270aba"], ["https://tec.openplanner.team/stops/Bmsgeco1", "https://tec.openplanner.team/stops/Bmsgmon1"], ["https://tec.openplanner.team/stops/Cpl4bra3", "https://tec.openplanner.team/stops/Cplrond1"], ["https://tec.openplanner.team/stops/X919afa", "https://tec.openplanner.team/stops/X919afb"], ["https://tec.openplanner.team/stops/X760afb", "https://tec.openplanner.team/stops/X760agb"], ["https://tec.openplanner.team/stops/H1hy144a", "https://tec.openplanner.team/stops/H1qy137a"], ["https://tec.openplanner.team/stops/X765aab", "https://tec.openplanner.team/stops/X765abb"], ["https://tec.openplanner.team/stops/N229alb", "https://tec.openplanner.team/stops/N229aua"], ["https://tec.openplanner.team/stops/Bthsset1", "https://tec.openplanner.team/stops/NL37aia"], ["https://tec.openplanner.team/stops/X669acb", "https://tec.openplanner.team/stops/X669aha"], ["https://tec.openplanner.team/stops/H1bg110b", "https://tec.openplanner.team/stops/H1mx122a"], ["https://tec.openplanner.team/stops/H4ef164b", "https://tec.openplanner.team/stops/H4ss154a"], ["https://tec.openplanner.team/stops/Cfmchap1", "https://tec.openplanner.team/stops/Cptcamb1"], ["https://tec.openplanner.team/stops/N501hsa", "https://tec.openplanner.team/stops/N501hwb"], ["https://tec.openplanner.team/stops/LGEhosp2", "https://tec.openplanner.team/stops/LGEvill1"], ["https://tec.openplanner.team/stops/N235adb", "https://tec.openplanner.team/stops/N235aeb"], ["https://tec.openplanner.team/stops/N150aia", "https://tec.openplanner.team/stops/N150ajb"], ["https://tec.openplanner.team/stops/LMOfleu1", "https://tec.openplanner.team/stops/LNveg--2"], ["https://tec.openplanner.team/stops/X904agb", "https://tec.openplanner.team/stops/X904ana"], ["https://tec.openplanner.team/stops/LPUchpl2", "https://tec.openplanner.team/stops/LPUmer-2"], ["https://tec.openplanner.team/stops/H4ft133a", "https://tec.openplanner.team/stops/H4ft135a"], ["https://tec.openplanner.team/stops/Cthalou1", "https://tec.openplanner.team/stops/Cthalou2"], ["https://tec.openplanner.team/stops/X746afb", "https://tec.openplanner.team/stops/X746aga"], ["https://tec.openplanner.team/stops/Cfcbobr1", "https://tec.openplanner.team/stops/Cfcbobr2"], ["https://tec.openplanner.team/stops/N501iha", "https://tec.openplanner.team/stops/N501ilb"], ["https://tec.openplanner.team/stops/N505acb", "https://tec.openplanner.team/stops/N505aia"], ["https://tec.openplanner.team/stops/LHMmarq1", "https://tec.openplanner.team/stops/LHMpatl1"], ["https://tec.openplanner.team/stops/Cfrempe1", "https://tec.openplanner.team/stops/Cfrmon3"], ["https://tec.openplanner.team/stops/Cmgvpa", "https://tec.openplanner.team/stops/Csyplac1"], ["https://tec.openplanner.team/stops/LSBdelc2", "https://tec.openplanner.team/stops/LSBrouf3"], ["https://tec.openplanner.team/stops/N331ada", "https://tec.openplanner.team/stops/N331aeb"], ["https://tec.openplanner.team/stops/Cjxetri2", "https://tec.openplanner.team/stops/Cjxplac1"], ["https://tec.openplanner.team/stops/X789aeb", "https://tec.openplanner.team/stops/X789agb"], ["https://tec.openplanner.team/stops/Lsn130-2", "https://tec.openplanner.team/stops/Lsnmala1"], ["https://tec.openplanner.team/stops/LPLg90-2", "https://tec.openplanner.team/stops/LPLruis2"], ["https://tec.openplanner.team/stops/LSythie2", "https://tec.openplanner.team/stops/LWZdtec2"], ["https://tec.openplanner.team/stops/N311aea", "https://tec.openplanner.team/stops/N311aga"], ["https://tec.openplanner.team/stops/Lmirca-1", "https://tec.openplanner.team/stops/Lmirca-2"], ["https://tec.openplanner.team/stops/X790ala", "https://tec.openplanner.team/stops/X790alb"], ["https://tec.openplanner.team/stops/N510afb", "https://tec.openplanner.team/stops/N513aza"], ["https://tec.openplanner.team/stops/LLvferm1", "https://tec.openplanner.team/stops/LLvgare2"], ["https://tec.openplanner.team/stops/LeIpiro4", "https://tec.openplanner.team/stops/LsHkreu4"], ["https://tec.openplanner.team/stops/LJAsuri1", "https://tec.openplanner.team/stops/LJAsuri2"], ["https://tec.openplanner.team/stops/LOmecol2", "https://tec.openplanner.team/stops/LOmvill4"], ["https://tec.openplanner.team/stops/Lalchar2", "https://tec.openplanner.team/stops/Lanadmi2"], ["https://tec.openplanner.team/stops/X768aea", "https://tec.openplanner.team/stops/X768afa"], ["https://tec.openplanner.team/stops/Cpcathe1", "https://tec.openplanner.team/stops/Cpcegli1"], ["https://tec.openplanner.team/stops/Cgzblob1", "https://tec.openplanner.team/stops/Ctucamb1"], ["https://tec.openplanner.team/stops/Cgd4ven2", "https://tec.openplanner.team/stops/Clgpavi2"], ["https://tec.openplanner.team/stops/Ljucaba2", "https://tec.openplanner.team/stops/Ljumart1"], ["https://tec.openplanner.team/stops/N577aab", "https://tec.openplanner.team/stops/N577ada"], ["https://tec.openplanner.team/stops/H4ef165c", "https://tec.openplanner.team/stops/H4mb143c"], ["https://tec.openplanner.team/stops/N513agc", "https://tec.openplanner.team/stops/N513azb"], ["https://tec.openplanner.team/stops/X609abb", "https://tec.openplanner.team/stops/X609aob"], ["https://tec.openplanner.team/stops/LCxchal2", "https://tec.openplanner.team/stops/LLM4rou4"], ["https://tec.openplanner.team/stops/LJUmc--1", "https://tec.openplanner.team/stops/LJUmc--2"], ["https://tec.openplanner.team/stops/LWycabi1", "https://tec.openplanner.team/stops/LWycarr2"], ["https://tec.openplanner.team/stops/Bnodtir4", "https://tec.openplanner.team/stops/Boplsma3"], ["https://tec.openplanner.team/stops/Cmaprov2", "https://tec.openplanner.team/stops/Cmareun2"], ["https://tec.openplanner.team/stops/LVIdepo3", "https://tec.openplanner.team/stops/LVIgare2"], ["https://tec.openplanner.team/stops/Bnivpro1", "https://tec.openplanner.team/stops/Bnivsba2"], ["https://tec.openplanner.team/stops/N170aba", "https://tec.openplanner.team/stops/N170afb"], ["https://tec.openplanner.team/stops/Creespi2", "https://tec.openplanner.team/stops/Crewaha2"], ["https://tec.openplanner.team/stops/H1en102a", "https://tec.openplanner.team/stops/H1en105a"], ["https://tec.openplanner.team/stops/Bwatpcs2", "https://tec.openplanner.team/stops/Bwatpct1"], ["https://tec.openplanner.team/stops/Cfcecol4", "https://tec.openplanner.team/stops/Cvrfcho2"], ["https://tec.openplanner.team/stops/NH01anb", "https://tec.openplanner.team/stops/NH01asb"], ["https://tec.openplanner.team/stops/N120aab", "https://tec.openplanner.team/stops/N120ama"], ["https://tec.openplanner.team/stops/LFAbouc1", "https://tec.openplanner.team/stops/LLTther2"], ["https://tec.openplanner.team/stops/LkAbahn*", "https://tec.openplanner.team/stops/LkAkirc1"], ["https://tec.openplanner.team/stops/LHTmala4", "https://tec.openplanner.team/stops/LLxcana2"], ["https://tec.openplanner.team/stops/Cjupier1", "https://tec.openplanner.team/stops/Cjuunio1"], ["https://tec.openplanner.team/stops/Clbbonn2", "https://tec.openplanner.team/stops/Clbecol1"], ["https://tec.openplanner.team/stops/LwMzoll1", "https://tec.openplanner.team/stops/X793ada"], ["https://tec.openplanner.team/stops/H1er110a", "https://tec.openplanner.team/stops/H1er113b"], ["https://tec.openplanner.team/stops/Blhulor1", "https://tec.openplanner.team/stops/Blhusor1"], ["https://tec.openplanner.team/stops/Csemacq1", "https://tec.openplanner.team/stops/Csepost2"], ["https://tec.openplanner.team/stops/H4qu230b", "https://tec.openplanner.team/stops/H4qu408a"], ["https://tec.openplanner.team/stops/N355aea", "https://tec.openplanner.team/stops/N355aeb"], ["https://tec.openplanner.team/stops/LHYwach1", "https://tec.openplanner.team/stops/LLNbeau2"], ["https://tec.openplanner.team/stops/Ceqmeti1", "https://tec.openplanner.team/stops/H1er106a"], ["https://tec.openplanner.team/stops/Ccugend1", "https://tec.openplanner.team/stops/NC02aob"], ["https://tec.openplanner.team/stops/N988aaa", "https://tec.openplanner.team/stops/N988aba"], ["https://tec.openplanner.team/stops/H1gh157b", "https://tec.openplanner.team/stops/H1gh158a"], ["https://tec.openplanner.team/stops/Cgncail1", "https://tec.openplanner.team/stops/Cgncail2"], ["https://tec.openplanner.team/stops/Bbaualz2", "https://tec.openplanner.team/stops/Bnivari1"], ["https://tec.openplanner.team/stops/Bwatchb1", "https://tec.openplanner.team/stops/Bwatjbo2"], ["https://tec.openplanner.team/stops/Bgliron1", "https://tec.openplanner.team/stops/NB33ahb"], ["https://tec.openplanner.team/stops/Bbgever1", "https://tec.openplanner.team/stops/Bwavrij2"], ["https://tec.openplanner.team/stops/Ladneuv1", "https://tec.openplanner.team/stops/LSuusin2"], ["https://tec.openplanner.team/stops/Cjudewe1", "https://tec.openplanner.team/stops/Clomart1"], ["https://tec.openplanner.team/stops/Cmaest1", "https://tec.openplanner.team/stops/Cmmbsit1"], ["https://tec.openplanner.team/stops/H3bi105d", "https://tec.openplanner.team/stops/H3bi116a"], ["https://tec.openplanner.team/stops/Bcbqh452", "https://tec.openplanner.team/stops/Bcbqhai2"], ["https://tec.openplanner.team/stops/LlCauto2", "https://tec.openplanner.team/stops/LlChebs2"], ["https://tec.openplanner.team/stops/X982cea", "https://tec.openplanner.team/stops/X986aaa"], ["https://tec.openplanner.team/stops/LLRgdma1", "https://tec.openplanner.team/stops/LPclaro1"], ["https://tec.openplanner.team/stops/N229ama", "https://tec.openplanner.team/stops/N540alb"], ["https://tec.openplanner.team/stops/LCPbatt1", "https://tec.openplanner.team/stops/LCTpt--1"], ["https://tec.openplanner.team/stops/Clusncb1", "https://tec.openplanner.team/stops/Cpcwaut1"], ["https://tec.openplanner.team/stops/LbO52--2", "https://tec.openplanner.team/stops/LdE179-1"], ["https://tec.openplanner.team/stops/Canbruy2", "https://tec.openplanner.team/stops/Canrsta1"], ["https://tec.openplanner.team/stops/X727aaa", "https://tec.openplanner.team/stops/X727aba"], ["https://tec.openplanner.team/stops/X661aea", "https://tec.openplanner.team/stops/X661aza"], ["https://tec.openplanner.team/stops/Btgrdoc1", "https://tec.openplanner.team/stops/N584cac"], ["https://tec.openplanner.team/stops/LVRchpl1", "https://tec.openplanner.team/stops/X782aea"], ["https://tec.openplanner.team/stops/LVIcarm3", "https://tec.openplanner.team/stops/LVIdeva1"], ["https://tec.openplanner.team/stops/LeUbael1", "https://tec.openplanner.team/stops/LeUgeme2"], ["https://tec.openplanner.team/stops/X354aib", "https://tec.openplanner.team/stops/X858aaa"], ["https://tec.openplanner.team/stops/N533amc", "https://tec.openplanner.team/stops/N533aqd"], ["https://tec.openplanner.team/stops/Crbgare2", "https://tec.openplanner.team/stops/Crbrgar2"], ["https://tec.openplanner.team/stops/LBNforg2", "https://tec.openplanner.team/stops/LDObran2"], ["https://tec.openplanner.team/stops/Lsebegu3", "https://tec.openplanner.team/stops/Ltiferb2"], ["https://tec.openplanner.team/stops/H4ce102a", "https://tec.openplanner.team/stops/H4ce102b"], ["https://tec.openplanner.team/stops/Bbuztai2", "https://tec.openplanner.team/stops/Bnivvco2"], ["https://tec.openplanner.team/stops/H2tr251a", "https://tec.openplanner.team/stops/H2tr255a"], ["https://tec.openplanner.team/stops/N512atb", "https://tec.openplanner.team/stops/N512atc"], ["https://tec.openplanner.team/stops/X837ahb", "https://tec.openplanner.team/stops/X837aia"], ["https://tec.openplanner.team/stops/X805aea", "https://tec.openplanner.team/stops/X869aab"], ["https://tec.openplanner.team/stops/Cwfanci1", "https://tec.openplanner.team/stops/Cwfronc1"], ["https://tec.openplanner.team/stops/X775ahb", "https://tec.openplanner.team/stops/X775aid"], ["https://tec.openplanner.team/stops/LPUlecl1", "https://tec.openplanner.team/stops/LPUlecl2"], ["https://tec.openplanner.team/stops/Llgoise1", "https://tec.openplanner.team/stops/Llgoise2"], ["https://tec.openplanner.team/stops/H4bo110b", "https://tec.openplanner.team/stops/H5st164b"], ["https://tec.openplanner.team/stops/LElgerd4", "https://tec.openplanner.team/stops/LTaxhos2"], ["https://tec.openplanner.team/stops/LCFeg--1", "https://tec.openplanner.team/stops/LHarenn3"], ["https://tec.openplanner.team/stops/LkEgss-2", "https://tec.openplanner.team/stops/LkEneus1"], ["https://tec.openplanner.team/stops/Bsaumlp2", "https://tec.openplanner.team/stops/N541aea"], ["https://tec.openplanner.team/stops/Cauwauq2", "https://tec.openplanner.team/stops/N530aga"], ["https://tec.openplanner.team/stops/LhOokat2", "https://tec.openplanner.team/stops/LhUkape1"], ["https://tec.openplanner.team/stops/Ccupdes1", "https://tec.openplanner.team/stops/Ccupetp1"], ["https://tec.openplanner.team/stops/X629abb", "https://tec.openplanner.team/stops/X647aab"], ["https://tec.openplanner.team/stops/N425ada", "https://tec.openplanner.team/stops/N425afb"], ["https://tec.openplanner.team/stops/LAVpequ2", "https://tec.openplanner.team/stops/LVHtill2"], ["https://tec.openplanner.team/stops/LOncar-*", "https://tec.openplanner.team/stops/LOnec--1"], ["https://tec.openplanner.team/stops/Cjucouc2", "https://tec.openplanner.team/stops/Cjumest2"], ["https://tec.openplanner.team/stops/LBRtrag1", "https://tec.openplanner.team/stops/LBRtrag2"], ["https://tec.openplanner.team/stops/H1ba116a", "https://tec.openplanner.team/stops/H1qu111b"], ["https://tec.openplanner.team/stops/Bitrcro2", "https://tec.openplanner.team/stops/Bvirfpo2"], ["https://tec.openplanner.team/stops/Bqueblo1", "https://tec.openplanner.team/stops/Bquevel1"], ["https://tec.openplanner.team/stops/Lhecarc*", "https://tec.openplanner.team/stops/Lheneuv3"], ["https://tec.openplanner.team/stops/LSTchat1", "https://tec.openplanner.team/stops/LSTcomm1"], ["https://tec.openplanner.team/stops/LFymare4", "https://tec.openplanner.team/stops/LFypont1"], ["https://tec.openplanner.team/stops/LWEcite1", "https://tec.openplanner.team/stops/LWEcite2"], ["https://tec.openplanner.team/stops/Bblacar1", "https://tec.openplanner.team/stops/Bblapri2"], ["https://tec.openplanner.team/stops/Lpecime1", "https://tec.openplanner.team/stops/Lpeprev1"], ["https://tec.openplanner.team/stops/LLVfour1", "https://tec.openplanner.team/stops/X575ahb"], ["https://tec.openplanner.team/stops/H1bu136b", "https://tec.openplanner.team/stops/H3bi108b"], ["https://tec.openplanner.team/stops/Bernpon2", "https://tec.openplanner.team/stops/Bernrar1"], ["https://tec.openplanner.team/stops/X715aab", "https://tec.openplanner.team/stops/X715aqb"], ["https://tec.openplanner.team/stops/Brsga152", "https://tec.openplanner.team/stops/Brsga811"], ["https://tec.openplanner.team/stops/N512asa", "https://tec.openplanner.team/stops/N512asb"], ["https://tec.openplanner.team/stops/X839aga", "https://tec.openplanner.team/stops/X839agb"], ["https://tec.openplanner.team/stops/Bkrabhu2", "https://tec.openplanner.team/stops/Bovehst1"], ["https://tec.openplanner.team/stops/X897amb", "https://tec.openplanner.team/stops/X897aqa"], ["https://tec.openplanner.team/stops/Bcbqhai1", "https://tec.openplanner.team/stops/Bitrnus1"], ["https://tec.openplanner.team/stops/H4lp119a", "https://tec.openplanner.team/stops/H4lp124a"], ["https://tec.openplanner.team/stops/H1bu138b", "https://tec.openplanner.team/stops/H2ep172a"], ["https://tec.openplanner.team/stops/X793aja", "https://tec.openplanner.team/stops/X793aob"], ["https://tec.openplanner.team/stops/LWEeg--2", "https://tec.openplanner.team/stops/LWEmerm1"], ["https://tec.openplanner.team/stops/LCxreno1", "https://tec.openplanner.team/stops/LLM4rou3"], ["https://tec.openplanner.team/stops/Bbchmin2", "https://tec.openplanner.team/stops/Bitrmon1"], ["https://tec.openplanner.team/stops/N122aga", "https://tec.openplanner.team/stops/N122aha"], ["https://tec.openplanner.team/stops/LGOhevr1", "https://tec.openplanner.team/stops/LGOmonu1"], ["https://tec.openplanner.team/stops/X948ajc", "https://tec.openplanner.team/stops/X948apa"], ["https://tec.openplanner.team/stops/X948aia", "https://tec.openplanner.team/stops/X948asb"], ["https://tec.openplanner.team/stops/LFCkerk2", "https://tec.openplanner.team/stops/LFClage2"], ["https://tec.openplanner.team/stops/H2fy121a", "https://tec.openplanner.team/stops/H2fy121b"], ["https://tec.openplanner.team/stops/X757ama", "https://tec.openplanner.team/stops/X757amb"], ["https://tec.openplanner.team/stops/N518aba", "https://tec.openplanner.team/stops/N519ahb"], ["https://tec.openplanner.team/stops/X750aab", "https://tec.openplanner.team/stops/X780aga"], ["https://tec.openplanner.team/stops/H1po138a", "https://tec.openplanner.team/stops/H1po154a"], ["https://tec.openplanner.team/stops/LHCcoul1", "https://tec.openplanner.team/stops/LHCcoul2"], ["https://tec.openplanner.team/stops/Lcegare1", "https://tec.openplanner.team/stops/Lcepoul1"], ["https://tec.openplanner.team/stops/LBslama2", "https://tec.openplanner.team/stops/NL73ada"], ["https://tec.openplanner.team/stops/LaNmuhl3", "https://tec.openplanner.team/stops/LeMnr12"], ["https://tec.openplanner.team/stops/H2hg144b", "https://tec.openplanner.team/stops/H2hg270a"], ["https://tec.openplanner.team/stops/Ccupres1", "https://tec.openplanner.team/stops/Ccupres2"], ["https://tec.openplanner.team/stops/X735aaa", "https://tec.openplanner.team/stops/X735aab"], ["https://tec.openplanner.team/stops/Cvvmonu1", "https://tec.openplanner.team/stops/Cvvpotv1"], ["https://tec.openplanner.team/stops/X804ada", "https://tec.openplanner.team/stops/X804adb"], ["https://tec.openplanner.team/stops/Cvvchea1", "https://tec.openplanner.team/stops/Cvvgrsa1"], ["https://tec.openplanner.team/stops/LLLvill1", "https://tec.openplanner.team/stops/X576aea"], ["https://tec.openplanner.team/stops/Lmojoan1", "https://tec.openplanner.team/stops/Lmojoan2"], ["https://tec.openplanner.team/stops/N232apa", "https://tec.openplanner.team/stops/N232apb"], ["https://tec.openplanner.team/stops/Llgmair1", "https://tec.openplanner.team/stops/Llgthie2"], ["https://tec.openplanner.team/stops/Loualbe2", "https://tec.openplanner.team/stops/Louense2"], ["https://tec.openplanner.team/stops/LORgr8-1", "https://tec.openplanner.team/stops/LORmont2"], ["https://tec.openplanner.team/stops/Bmarmru1", "https://tec.openplanner.team/stops/Bmarmru2"], ["https://tec.openplanner.team/stops/LEBeg--2", "https://tec.openplanner.team/stops/LEBmoul2"], ["https://tec.openplanner.team/stops/H4mx115a", "https://tec.openplanner.team/stops/H4mx115b"], ["https://tec.openplanner.team/stops/H1wa163a", "https://tec.openplanner.team/stops/H1wa163b"], ["https://tec.openplanner.team/stops/X736ada", "https://tec.openplanner.team/stops/X736adb"], ["https://tec.openplanner.team/stops/LFmroye2", "https://tec.openplanner.team/stops/LMOchen1"], ["https://tec.openplanner.team/stops/N543ala", "https://tec.openplanner.team/stops/N543avh"], ["https://tec.openplanner.team/stops/Bgemgjo1", "https://tec.openplanner.team/stops/N522bve"], ["https://tec.openplanner.team/stops/Bsaumlk1", "https://tec.openplanner.team/stops/Bwspm372"], ["https://tec.openplanner.team/stops/Cgxcime2", "https://tec.openplanner.team/stops/Cgxmaco2"], ["https://tec.openplanner.team/stops/Bgerd322", "https://tec.openplanner.team/stops/NB33afb"], ["https://tec.openplanner.team/stops/Lalmakr2", "https://tec.openplanner.team/stops/Lancoop1"], ["https://tec.openplanner.team/stops/H4mo160a", "https://tec.openplanner.team/stops/H4mo186a"], ["https://tec.openplanner.team/stops/LOlvill2", "https://tec.openplanner.team/stops/LSemc--4"], ["https://tec.openplanner.team/stops/LATcorp1", "https://tec.openplanner.team/stops/LATmals1"], ["https://tec.openplanner.team/stops/H2ll178a", "https://tec.openplanner.team/stops/H2ll178d"], ["https://tec.openplanner.team/stops/LLrhaut3", "https://tec.openplanner.team/stops/LREhaut2"], ["https://tec.openplanner.team/stops/Cloauln2", "https://tec.openplanner.team/stops/Cloravi1"], ["https://tec.openplanner.team/stops/Llgcroi1", "https://tec.openplanner.team/stops/Llgcroi4"], ["https://tec.openplanner.team/stops/Ctubpos1", "https://tec.openplanner.team/stops/Ctubpos3"], ["https://tec.openplanner.team/stops/Bjodmal2", "https://tec.openplanner.team/stops/Bjodppe1"], ["https://tec.openplanner.team/stops/H1ho125c", "https://tec.openplanner.team/stops/H1wa164b"], ["https://tec.openplanner.team/stops/H4os220b", "https://tec.openplanner.team/stops/H4os221c"], ["https://tec.openplanner.team/stops/X898aaa", "https://tec.openplanner.team/stops/X898aeb"], ["https://tec.openplanner.team/stops/NL77aha", "https://tec.openplanner.team/stops/NL77ahb"], ["https://tec.openplanner.team/stops/X721aea", "https://tec.openplanner.team/stops/X723ama"], ["https://tec.openplanner.team/stops/N323abb", "https://tec.openplanner.team/stops/N387aha"], ["https://tec.openplanner.team/stops/X858aab", "https://tec.openplanner.team/stops/X858afa"], ["https://tec.openplanner.team/stops/LmR50--2", "https://tec.openplanner.team/stops/LmRh%C3%B6fe2"], ["https://tec.openplanner.team/stops/X982beb", "https://tec.openplanner.team/stops/X982bga"], ["https://tec.openplanner.team/stops/Blilgar1", "https://tec.openplanner.team/stops/Blilwit1"], ["https://tec.openplanner.team/stops/Bhmmcim2", "https://tec.openplanner.team/stops/Bhmmmon2"], ["https://tec.openplanner.team/stops/H4ca121a", "https://tec.openplanner.team/stops/H4ca122b"], ["https://tec.openplanner.team/stops/Bnetcor1", "https://tec.openplanner.team/stops/Bnetrtb2"], ["https://tec.openplanner.team/stops/X605aba", "https://tec.openplanner.team/stops/X605aca"], ["https://tec.openplanner.team/stops/LCpvill1", "https://tec.openplanner.team/stops/LSPherd1"], ["https://tec.openplanner.team/stops/Lanc14v1", "https://tec.openplanner.team/stops/Llgnaes2"], ["https://tec.openplanner.team/stops/N502aab", "https://tec.openplanner.team/stops/N510abb"], ["https://tec.openplanner.team/stops/Lanadmi1", "https://tec.openplanner.team/stops/Lanschu2"], ["https://tec.openplanner.team/stops/N545aab", "https://tec.openplanner.team/stops/N553acb"], ["https://tec.openplanner.team/stops/N501bub", "https://tec.openplanner.team/stops/N501eob"], ["https://tec.openplanner.team/stops/Lalchar2", "https://tec.openplanner.team/stops/Llaeg--2"], ["https://tec.openplanner.team/stops/LBIfore1", "https://tec.openplanner.team/stops/LBIpost1"], ["https://tec.openplanner.team/stops/N501ljb", "https://tec.openplanner.team/stops/N501lkb"], ["https://tec.openplanner.team/stops/Cgzabau3", "https://tec.openplanner.team/stops/Cgzoctr3"], ["https://tec.openplanner.team/stops/N103aab", "https://tec.openplanner.team/stops/N103adb"], ["https://tec.openplanner.team/stops/X750axa", "https://tec.openplanner.team/stops/X750bha"], ["https://tec.openplanner.team/stops/LeLkalt2", "https://tec.openplanner.team/stops/LkAbahn*"], ["https://tec.openplanner.team/stops/Llgm%C3%A9di1", "https://tec.openplanner.team/stops/Llgnata4"], ["https://tec.openplanner.team/stops/Bgoesch2", "https://tec.openplanner.team/stops/Bgoewat2"], ["https://tec.openplanner.team/stops/X618alb", "https://tec.openplanner.team/stops/X619aba"], ["https://tec.openplanner.team/stops/Ltichif3", "https://tec.openplanner.team/stops/Ltiecch2"], ["https://tec.openplanner.team/stops/H2ll188b", "https://tec.openplanner.team/stops/H2ll190a"], ["https://tec.openplanner.team/stops/LAMecse*", "https://tec.openplanner.team/stops/LVLsabl4"], ["https://tec.openplanner.team/stops/Ctmdema1", "https://tec.openplanner.team/stops/Ctmmana2"], ["https://tec.openplanner.team/stops/LFmeg--2", "https://tec.openplanner.team/stops/LMOchen1"], ["https://tec.openplanner.team/stops/Lagorch1", "https://tec.openplanner.team/stops/Lstchas2"], ["https://tec.openplanner.team/stops/Bchgcha1", "https://tec.openplanner.team/stops/Bchgcha2"], ["https://tec.openplanner.team/stops/X602aia", "https://tec.openplanner.team/stops/X602akb"], ["https://tec.openplanner.team/stops/Lvchenn1", "https://tec.openplanner.team/stops/Lvchenn2"], ["https://tec.openplanner.team/stops/LwYkirc1", "https://tec.openplanner.team/stops/LwYnr262"], ["https://tec.openplanner.team/stops/Llgborn1", "https://tec.openplanner.team/stops/Llgmaus1"], ["https://tec.openplanner.team/stops/Bstemco2", "https://tec.openplanner.team/stops/Bstetre2"], ["https://tec.openplanner.team/stops/H4re225a", "https://tec.openplanner.team/stops/H5at133b"], ["https://tec.openplanner.team/stops/Llgcbat2", "https://tec.openplanner.team/stops/Lscatme1"], ["https://tec.openplanner.team/stops/Cbimonu2", "https://tec.openplanner.team/stops/Ctufleu4"], ["https://tec.openplanner.team/stops/X774aba", "https://tec.openplanner.team/stops/X775aaa"], ["https://tec.openplanner.team/stops/N425aca", "https://tec.openplanner.team/stops/N426aea"], ["https://tec.openplanner.team/stops/Btubcim1", "https://tec.openplanner.team/stops/Btubegy1"], ["https://tec.openplanner.team/stops/H4bd110b", "https://tec.openplanner.team/stops/H4te261a"], ["https://tec.openplanner.team/stops/H1ev114a", "https://tec.openplanner.team/stops/H1ev114b"], ["https://tec.openplanner.team/stops/Ljelexh1", "https://tec.openplanner.team/stops/Ljelexh2"], ["https://tec.openplanner.team/stops/Lbogonh1", "https://tec.openplanner.team/stops/Lbotilf1"], ["https://tec.openplanner.team/stops/H1si152a", "https://tec.openplanner.team/stops/H1si154a"], ["https://tec.openplanner.team/stops/Lprmoin1", "https://tec.openplanner.team/stops/Lprpous1"], ["https://tec.openplanner.team/stops/N538ana", "https://tec.openplanner.team/stops/N538anb"], ["https://tec.openplanner.team/stops/Lhrathe1", "https://tec.openplanner.team/stops/Lhrdeme2"], ["https://tec.openplanner.team/stops/Chhplbe1", "https://tec.openplanner.team/stops/Chhverr1"], ["https://tec.openplanner.team/stops/Bgdhpco2", "https://tec.openplanner.team/stops/Blineco1"], ["https://tec.openplanner.team/stops/Borblim2", "https://tec.openplanner.team/stops/Btstcar3"], ["https://tec.openplanner.team/stops/X902agb", "https://tec.openplanner.team/stops/X902ama"], ["https://tec.openplanner.team/stops/H4ty322a", "https://tec.openplanner.team/stops/H4ty322d"], ["https://tec.openplanner.team/stops/H4am101a", "https://tec.openplanner.team/stops/H4am113a"], ["https://tec.openplanner.team/stops/N141aia", "https://tec.openplanner.team/stops/N143ada"], ["https://tec.openplanner.team/stops/LESevie1", "https://tec.openplanner.team/stops/LESfoot1"], ["https://tec.openplanner.team/stops/LSPec--1", "https://tec.openplanner.team/stops/LSPxhou1"], ["https://tec.openplanner.team/stops/N501ira", "https://tec.openplanner.team/stops/N501ixc"], ["https://tec.openplanner.team/stops/Cgylami2", "https://tec.openplanner.team/stops/Cgytrie1"], ["https://tec.openplanner.team/stops/LkTkabi1", "https://tec.openplanner.team/stops/LkTkabi2"], ["https://tec.openplanner.team/stops/X773aba", "https://tec.openplanner.team/stops/X773aea"], ["https://tec.openplanner.team/stops/LkOaugu1", "https://tec.openplanner.team/stops/LlCauto2"], ["https://tec.openplanner.team/stops/N539awa", "https://tec.openplanner.team/stops/N539awb"], ["https://tec.openplanner.team/stops/Bgnpjbe1", "https://tec.openplanner.team/stops/Bgnppem1"], ["https://tec.openplanner.team/stops/LMAcomm1", "https://tec.openplanner.team/stops/LMAroch3"], ["https://tec.openplanner.team/stops/Bbiesbi2", "https://tec.openplanner.team/stops/Bptbsar1"], ["https://tec.openplanner.team/stops/N218aaa", "https://tec.openplanner.team/stops/N385abb"], ["https://tec.openplanner.team/stops/LMamuse3", "https://tec.openplanner.team/stops/LMastat3"], ["https://tec.openplanner.team/stops/Bsamegl2", "https://tec.openplanner.team/stops/Bsamfma2"], ["https://tec.openplanner.team/stops/H1ro133a", "https://tec.openplanner.team/stops/H1ro141a"], ["https://tec.openplanner.team/stops/Bfledpi2", "https://tec.openplanner.team/stops/NC12aab"], ["https://tec.openplanner.team/stops/H1wi155a", "https://tec.openplanner.team/stops/H1wi155b"], ["https://tec.openplanner.team/stops/LLYcalv1", "https://tec.openplanner.team/stops/LTOcime1"], ["https://tec.openplanner.team/stops/LVlfooz1", "https://tec.openplanner.team/stops/LVlleno2"], ["https://tec.openplanner.team/stops/LFPkape3", "https://tec.openplanner.team/stops/LFPkerk1"], ["https://tec.openplanner.team/stops/X811aqa", "https://tec.openplanner.team/stops/X812bga"], ["https://tec.openplanner.team/stops/N584bob", "https://tec.openplanner.team/stops/N584bpa"], ["https://tec.openplanner.team/stops/Bblamer2", "https://tec.openplanner.team/stops/Bblamsj3"], ["https://tec.openplanner.team/stops/Bwavtas2", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://tec.openplanner.team/stops/Bixlfla2", "https://tec.openplanner.team/stops/Bixlqll1"], ["https://tec.openplanner.team/stops/Bmalcar2", "https://tec.openplanner.team/stops/Bsrbtil1"], ["https://tec.openplanner.team/stops/LhM07--2", "https://tec.openplanner.team/stops/LhMmeil2"], ["https://tec.openplanner.team/stops/X609agb", "https://tec.openplanner.team/stops/X609aha"], ["https://tec.openplanner.team/stops/X869aeb", "https://tec.openplanner.team/stops/X869afa"], ["https://tec.openplanner.team/stops/Lousite6", "https://tec.openplanner.team/stops/Lousite7"], ["https://tec.openplanner.team/stops/Cvpcdec1", "https://tec.openplanner.team/stops/Cvpcdec2"], ["https://tec.openplanner.team/stops/LbEkirc*", "https://tec.openplanner.team/stops/LeLbutg3"], ["https://tec.openplanner.team/stops/LJUfort2", "https://tec.openplanner.team/stops/Lladete3"], ["https://tec.openplanner.team/stops/Cbfpauc1", "https://tec.openplanner.team/stops/Cbfpauc2"], ["https://tec.openplanner.team/stops/X922aja", "https://tec.openplanner.team/stops/X922ama"], ["https://tec.openplanner.team/stops/LVbeg--2", "https://tec.openplanner.team/stops/LVbpave1"], ["https://tec.openplanner.team/stops/N155ada", "https://tec.openplanner.team/stops/N155ajb"], ["https://tec.openplanner.team/stops/LAMecse*", "https://tec.openplanner.team/stops/LAMjeha1"], ["https://tec.openplanner.team/stops/Cgomerm4", "https://tec.openplanner.team/stops/Chpplac1"], ["https://tec.openplanner.team/stops/LOcchat2", "https://tec.openplanner.team/stops/LOcgdro1"], ["https://tec.openplanner.team/stops/X901afa", "https://tec.openplanner.team/stops/X901aga"], ["https://tec.openplanner.team/stops/N539awb", "https://tec.openplanner.team/stops/N539bbb"], ["https://tec.openplanner.team/stops/H1hn204b", "https://tec.openplanner.team/stops/H1mv242b"], ["https://tec.openplanner.team/stops/LCxc6191", "https://tec.openplanner.team/stops/LCxross2"], ["https://tec.openplanner.team/stops/N221aab", "https://tec.openplanner.team/stops/X221aac"], ["https://tec.openplanner.team/stops/LGlcarr2", "https://tec.openplanner.team/stops/LGlcite1"], ["https://tec.openplanner.team/stops/Livrame2", "https://tec.openplanner.team/stops/LRagrch1"], ["https://tec.openplanner.team/stops/N160aca", "https://tec.openplanner.team/stops/N160aha"], ["https://tec.openplanner.team/stops/LrAgier1", "https://tec.openplanner.team/stops/LrAgier2"], ["https://tec.openplanner.team/stops/X899aja", "https://tec.openplanner.team/stops/X899ajb"], ["https://tec.openplanner.team/stops/N550acb", "https://tec.openplanner.team/stops/N550acc"], ["https://tec.openplanner.team/stops/H1he109b", "https://tec.openplanner.team/stops/H1he110b"], ["https://tec.openplanner.team/stops/N212aca", "https://tec.openplanner.team/stops/N212afa"], ["https://tec.openplanner.team/stops/LCIpiet2", "https://tec.openplanner.team/stops/LVHcent2"], ["https://tec.openplanner.team/stops/LLYplac1", "https://tec.openplanner.team/stops/LLYtir-2"], ["https://tec.openplanner.team/stops/N152aac", "https://tec.openplanner.team/stops/N152aad"], ["https://tec.openplanner.team/stops/LEShony1", "https://tec.openplanner.team/stops/LEShony2"], ["https://tec.openplanner.team/stops/H4ne143b", "https://tec.openplanner.team/stops/H4wa150b"], ["https://tec.openplanner.team/stops/Blimmer2", "https://tec.openplanner.team/stops/Blimvcg2"], ["https://tec.openplanner.team/stops/Cgzfarc2", "https://tec.openplanner.team/stops/Cgzpjeu2"], ["https://tec.openplanner.team/stops/X820aia", "https://tec.openplanner.team/stops/X822apb"], ["https://tec.openplanner.team/stops/Lemambi1", "https://tec.openplanner.team/stops/Lemeg--1"], ["https://tec.openplanner.team/stops/X921aja", "https://tec.openplanner.team/stops/X921ajb"], ["https://tec.openplanner.team/stops/N538adb", "https://tec.openplanner.team/stops/N542aob"], ["https://tec.openplanner.team/stops/Barcbav2", "https://tec.openplanner.team/stops/Bgzdcwa1"], ["https://tec.openplanner.team/stops/Cvp3til1", "https://tec.openplanner.team/stops/Cvpchat1"], ["https://tec.openplanner.team/stops/Bglabra1", "https://tec.openplanner.team/stops/Cgnquer2"], ["https://tec.openplanner.team/stops/N516ama", "https://tec.openplanner.team/stops/N581acb"], ["https://tec.openplanner.team/stops/H1me112b", "https://tec.openplanner.team/stops/H1me116b"], ["https://tec.openplanner.team/stops/LVTtrou2", "https://tec.openplanner.team/stops/LYEphar1"], ["https://tec.openplanner.team/stops/Cthalou2", "https://tec.openplanner.team/stops/Cthbifu1"], ["https://tec.openplanner.team/stops/LHMbach2", "https://tec.openplanner.team/stops/LHMthys1"], ["https://tec.openplanner.team/stops/Loubiez2", "https://tec.openplanner.team/stops/Loubiez3"], ["https://tec.openplanner.team/stops/LATdony1", "https://tec.openplanner.team/stops/LHUmari2"], ["https://tec.openplanner.team/stops/H2ch102b", "https://tec.openplanner.team/stops/H2ch105b"], ["https://tec.openplanner.team/stops/N224aaa", "https://tec.openplanner.team/stops/X224agb"], ["https://tec.openplanner.team/stops/H4wi162b", "https://tec.openplanner.team/stops/H5pe139a"], ["https://tec.openplanner.team/stops/Laddelc2", "https://tec.openplanner.team/stops/Ladjuif2"], ["https://tec.openplanner.team/stops/X769aca", "https://tec.openplanner.team/stops/X769aia"], ["https://tec.openplanner.team/stops/LHbcent1", "https://tec.openplanner.team/stops/LHbcent2"], ["https://tec.openplanner.team/stops/N501ixc", "https://tec.openplanner.team/stops/N501ixd"], ["https://tec.openplanner.team/stops/Brixwav1", "https://tec.openplanner.team/stops/Brixwav2"], ["https://tec.openplanner.team/stops/LrcarsT3", "https://tec.openplanner.team/stops/Lrcastr1"], ["https://tec.openplanner.team/stops/Lseaven2", "https://tec.openplanner.team/stops/Lsepuit2"], ["https://tec.openplanner.team/stops/Lagchen1", "https://tec.openplanner.team/stops/Lagkink2"], ["https://tec.openplanner.team/stops/LHHecol2", "https://tec.openplanner.team/stops/LHHronh1"], ["https://tec.openplanner.team/stops/X901bca", "https://tec.openplanner.team/stops/X901bcb"], ["https://tec.openplanner.team/stops/Bosqpco1", "https://tec.openplanner.team/stops/Bosqpco2"], ["https://tec.openplanner.team/stops/H4wp148b", "https://tec.openplanner.team/stops/H4wp150a"], ["https://tec.openplanner.team/stops/LFsbasc1", "https://tec.openplanner.team/stops/LFsbasc2"], ["https://tec.openplanner.team/stops/N135ava", "https://tec.openplanner.team/stops/N135avb"], ["https://tec.openplanner.team/stops/Bnilcab1", "https://tec.openplanner.team/stops/Bnilcha1"], ["https://tec.openplanner.team/stops/H1gy115a", "https://tec.openplanner.team/stops/H1le121b"], ["https://tec.openplanner.team/stops/NR10aaa", "https://tec.openplanner.team/stops/NR21afa"], ["https://tec.openplanner.team/stops/N155aed", "https://tec.openplanner.team/stops/N155afa"], ["https://tec.openplanner.team/stops/LTRsain2", "https://tec.openplanner.team/stops/LTRsain3"], ["https://tec.openplanner.team/stops/N565abb", "https://tec.openplanner.team/stops/N565afb"], ["https://tec.openplanner.team/stops/LsVhupp2", "https://tec.openplanner.team/stops/LsVrodt1"], ["https://tec.openplanner.team/stops/LrAplat1", "https://tec.openplanner.team/stops/LrAverb2"], ["https://tec.openplanner.team/stops/Cchdagn1", "https://tec.openplanner.team/stops/Cchtram2"], ["https://tec.openplanner.team/stops/H4ba103a", "https://tec.openplanner.team/stops/H4pi133b"], ["https://tec.openplanner.team/stops/N241ada", "https://tec.openplanner.team/stops/N241adb"], ["https://tec.openplanner.team/stops/N501ifa", "https://tec.openplanner.team/stops/N501iub"], ["https://tec.openplanner.team/stops/LTecent4", "https://tec.openplanner.team/stops/LTechpl2"], ["https://tec.openplanner.team/stops/LEHmarc2", "https://tec.openplanner.team/stops/LNCvill3"], ["https://tec.openplanner.team/stops/H4fr142a", "https://tec.openplanner.team/stops/H4ka393a"], ["https://tec.openplanner.team/stops/Lcemalv1", "https://tec.openplanner.team/stops/Lcemalv3"], ["https://tec.openplanner.team/stops/N543aca", "https://tec.openplanner.team/stops/N543acb"], ["https://tec.openplanner.team/stops/Lseegva1", "https://tec.openplanner.team/stops/Lsemany2"], ["https://tec.openplanner.team/stops/H1hr116a", "https://tec.openplanner.team/stops/H1hr125b"], ["https://tec.openplanner.team/stops/LHEoutr1", "https://tec.openplanner.team/stops/LHEzoni2"], ["https://tec.openplanner.team/stops/LoUpete2", "https://tec.openplanner.team/stops/X685apb"], ["https://tec.openplanner.team/stops/H4wn130a", "https://tec.openplanner.team/stops/H4wn130b"], ["https://tec.openplanner.team/stops/Canrsta2", "https://tec.openplanner.team/stops/Canterr1"], ["https://tec.openplanner.team/stops/Llgguer1", "https://tec.openplanner.team/stops/Llghoub2"], ["https://tec.openplanner.team/stops/X923aga", "https://tec.openplanner.team/stops/X923agb"], ["https://tec.openplanner.team/stops/H1wa154a", "https://tec.openplanner.team/stops/H1wa159a"], ["https://tec.openplanner.team/stops/X714acb", "https://tec.openplanner.team/stops/X715aka"], ["https://tec.openplanner.team/stops/H1bo101b", "https://tec.openplanner.team/stops/H1te198b"], ["https://tec.openplanner.team/stops/Llgcadr2", "https://tec.openplanner.team/stops/LlgOPER5"], ["https://tec.openplanner.team/stops/Cbzfrom2", "https://tec.openplanner.team/stops/Cluplve4"], ["https://tec.openplanner.team/stops/X833abb", "https://tec.openplanner.team/stops/X834aba"], ["https://tec.openplanner.team/stops/H1ge179a", "https://tec.openplanner.team/stops/H1ge179b"], ["https://tec.openplanner.team/stops/LBKmoes1", "https://tec.openplanner.team/stops/LOeelbe1"], ["https://tec.openplanner.team/stops/Bobacou1", "https://tec.openplanner.team/stops/Broscha2"], ["https://tec.openplanner.team/stops/X641aha", "https://tec.openplanner.team/stops/X641aia"], ["https://tec.openplanner.team/stops/LbUverb2", "https://tec.openplanner.team/stops/LhObull2"], ["https://tec.openplanner.team/stops/Cliegli2", "https://tec.openplanner.team/stops/Crebien2"], ["https://tec.openplanner.team/stops/NL57adc", "https://tec.openplanner.team/stops/NL57afb"], ["https://tec.openplanner.team/stops/H5rx138b", "https://tec.openplanner.team/stops/H5rx145a"], ["https://tec.openplanner.team/stops/N510ada", "https://tec.openplanner.team/stops/N510aeb"], ["https://tec.openplanner.team/stops/LPrcarr2", "https://tec.openplanner.team/stops/LSypesy1"], ["https://tec.openplanner.team/stops/H1gy111b", "https://tec.openplanner.team/stops/H1gy116b"], ["https://tec.openplanner.team/stops/Llgbobu1", "https://tec.openplanner.team/stops/Llgdelc*"], ["https://tec.openplanner.team/stops/H1gr113a", "https://tec.openplanner.team/stops/H1gr123d"], ["https://tec.openplanner.team/stops/Blascim2", "https://tec.openplanner.team/stops/Bohncha2"], ["https://tec.openplanner.team/stops/Baudsta2", "https://tec.openplanner.team/stops/Bkrabhu1"], ["https://tec.openplanner.team/stops/N531aja", "https://tec.openplanner.team/stops/N531ana"], ["https://tec.openplanner.team/stops/N230aja", "https://tec.openplanner.team/stops/N540acd"], ["https://tec.openplanner.team/stops/LMuvill2", "https://tec.openplanner.team/stops/LTreg--1"], ["https://tec.openplanner.team/stops/N242afa", "https://tec.openplanner.team/stops/N242aga"], ["https://tec.openplanner.team/stops/H2sv215a", "https://tec.openplanner.team/stops/H2sv215b"], ["https://tec.openplanner.team/stops/X939acb", "https://tec.openplanner.team/stops/X942acb"], ["https://tec.openplanner.team/stops/X715amb", "https://tec.openplanner.team/stops/X715apa"], ["https://tec.openplanner.team/stops/H2pr115a", "https://tec.openplanner.team/stops/H3br103b"], ["https://tec.openplanner.team/stops/Cgzlera1", "https://tec.openplanner.team/stops/Cgzlera2"], ["https://tec.openplanner.team/stops/LMIlac-2", "https://tec.openplanner.team/stops/Lrechap2"], ["https://tec.openplanner.team/stops/LAMrich2", "https://tec.openplanner.team/stops/LAMviam1"], ["https://tec.openplanner.team/stops/Lchpniv1", "https://tec.openplanner.team/stops/Lchtche2"], ["https://tec.openplanner.team/stops/H4cr110a", "https://tec.openplanner.team/stops/H4wt160b"], ["https://tec.openplanner.team/stops/X801aya", "https://tec.openplanner.team/stops/X801baa"], ["https://tec.openplanner.team/stops/X826aaa", "https://tec.openplanner.team/stops/X860abb"], ["https://tec.openplanner.team/stops/H5rx114a", "https://tec.openplanner.team/stops/H5rx114b"], ["https://tec.openplanner.team/stops/Bnivbne1", "https://tec.openplanner.team/stops/Bnivbng1"], ["https://tec.openplanner.team/stops/Bbch4br3", "https://tec.openplanner.team/stops/Bbchpil1"], ["https://tec.openplanner.team/stops/X614aeb", "https://tec.openplanner.team/stops/X614baa"], ["https://tec.openplanner.team/stops/Brsgsan1", "https://tec.openplanner.team/stops/Buccpes1"], ["https://tec.openplanner.team/stops/LFArela6", "https://tec.openplanner.team/stops/LFAwale2"], ["https://tec.openplanner.team/stops/NC24afa", "https://tec.openplanner.team/stops/NC44aaa"], ["https://tec.openplanner.team/stops/Cfanvmo1", "https://tec.openplanner.team/stops/Cfanvmo2"], ["https://tec.openplanner.team/stops/LOReg--1", "https://tec.openplanner.team/stops/LORgend1"], ["https://tec.openplanner.team/stops/Cmacreu2", "https://tec.openplanner.team/stops/Cmmtomb1"], ["https://tec.openplanner.team/stops/Llgcite2", "https://tec.openplanner.team/stops/Llgjean1"], ["https://tec.openplanner.team/stops/N145aga", "https://tec.openplanner.team/stops/N149aab"], ["https://tec.openplanner.team/stops/X744acb", "https://tec.openplanner.team/stops/X744ada"], ["https://tec.openplanner.team/stops/Bquegob2", "https://tec.openplanner.team/stops/Bquegob4"], ["https://tec.openplanner.team/stops/Bjcljau1", "https://tec.openplanner.team/stops/Bjdspon1"], ["https://tec.openplanner.team/stops/LeLbegl1", "https://tec.openplanner.team/stops/LeLherz1"], ["https://tec.openplanner.team/stops/Llgphol3", "https://tec.openplanner.team/stops/Llgsime2"], ["https://tec.openplanner.team/stops/LRRecdu1", "https://tec.openplanner.team/stops/LRRpost1"], ["https://tec.openplanner.team/stops/H5st164a", "https://tec.openplanner.team/stops/H5st164b"], ["https://tec.openplanner.team/stops/H1qu106a", "https://tec.openplanner.team/stops/H1qu106b"], ["https://tec.openplanner.team/stops/Lchorme2", "https://tec.openplanner.team/stops/Lchsaro1"], ["https://tec.openplanner.team/stops/N141aaa", "https://tec.openplanner.team/stops/X317aba"], ["https://tec.openplanner.team/stops/LPclaro2", "https://tec.openplanner.team/stops/LTGsucr1"], ["https://tec.openplanner.team/stops/LeUmoor2", "https://tec.openplanner.team/stops/LeUolen1"], ["https://tec.openplanner.team/stops/H4eh100a", "https://tec.openplanner.team/stops/H4sl155a"], ["https://tec.openplanner.team/stops/H2sb258a", "https://tec.openplanner.team/stops/H2sb271a"], ["https://tec.openplanner.team/stops/X773akb", "https://tec.openplanner.team/stops/X773aob"], ["https://tec.openplanner.team/stops/N580aaa", "https://tec.openplanner.team/stops/N580aha"], ["https://tec.openplanner.team/stops/LsVgesc2", "https://tec.openplanner.team/stops/LsVsimo1"], ["https://tec.openplanner.team/stops/Cfbcabi1", "https://tec.openplanner.team/stops/Cvrhaie2"], ["https://tec.openplanner.team/stops/N549aha", "https://tec.openplanner.team/stops/N578aaa"], ["https://tec.openplanner.team/stops/Lbhsion2", "https://tec.openplanner.team/stops/Ljuvert1"], ["https://tec.openplanner.team/stops/Bviravi2", "https://tec.openplanner.team/stops/Bvirgar2"], ["https://tec.openplanner.team/stops/H4og209a", "https://tec.openplanner.team/stops/H4og212a"], ["https://tec.openplanner.team/stops/X983aab", "https://tec.openplanner.team/stops/X983abb"], ["https://tec.openplanner.team/stops/N502aaa", "https://tec.openplanner.team/stops/N502aca"], ["https://tec.openplanner.team/stops/X394adb", "https://tec.openplanner.team/stops/X394aeb"], ["https://tec.openplanner.team/stops/X675aba", "https://tec.openplanner.team/stops/X817aga"], ["https://tec.openplanner.team/stops/LPRbrou2", "https://tec.openplanner.team/stops/Lrofont*"], ["https://tec.openplanner.team/stops/Ltichif2", "https://tec.openplanner.team/stops/Ltinico1"], ["https://tec.openplanner.team/stops/LSNgerm1", "https://tec.openplanner.team/stops/LSNretr1"], ["https://tec.openplanner.team/stops/LREgare1", "https://tec.openplanner.team/stops/LREgare2"], ["https://tec.openplanner.team/stops/X812ama", "https://tec.openplanner.team/stops/X812anb"], ["https://tec.openplanner.team/stops/Lanplat1", "https://tec.openplanner.team/stops/Lanplat2"], ["https://tec.openplanner.team/stops/N543bab", "https://tec.openplanner.team/stops/N543bgd"], ["https://tec.openplanner.team/stops/Cmacoll1", "https://tec.openplanner.team/stops/Cmaplas3"], ["https://tec.openplanner.team/stops/N308anb", "https://tec.openplanner.team/stops/N308bia"], ["https://tec.openplanner.team/stops/Bbiemse2", "https://tec.openplanner.team/stops/Bboneta2"], ["https://tec.openplanner.team/stops/LSGhagn2", "https://tec.openplanner.team/stops/LSGmale1"], ["https://tec.openplanner.team/stops/LOltill1", "https://tec.openplanner.team/stops/LOlvill1"], ["https://tec.openplanner.team/stops/N501bba", "https://tec.openplanner.team/stops/N501cdc"], ["https://tec.openplanner.team/stops/Cbiseur2", "https://tec.openplanner.team/stops/Ctucamb2"], ["https://tec.openplanner.team/stops/LBssucr2", "https://tec.openplanner.team/stops/LWNchar1"], ["https://tec.openplanner.team/stops/X658adb", "https://tec.openplanner.team/stops/X658afb"], ["https://tec.openplanner.team/stops/H2ll177b", "https://tec.openplanner.team/stops/H2ll267a"], ["https://tec.openplanner.team/stops/H2bh112b", "https://tec.openplanner.team/stops/H2bh115b"], ["https://tec.openplanner.team/stops/N501cqb", "https://tec.openplanner.team/stops/N501cub"], ["https://tec.openplanner.team/stops/H4ch120a", "https://tec.openplanner.team/stops/H4ch120b"], ["https://tec.openplanner.team/stops/Cfbcal2", "https://tec.openplanner.team/stops/Cfcrdpr2"], ["https://tec.openplanner.team/stops/H1ms901a", "https://tec.openplanner.team/stops/H1ms903a"], ["https://tec.openplanner.team/stops/Llgcrgu2", "https://tec.openplanner.team/stops/Llgguer1"], ["https://tec.openplanner.team/stops/LmDkirc1", "https://tec.openplanner.team/stops/LmDkoel2"], ["https://tec.openplanner.team/stops/X925agb", "https://tec.openplanner.team/stops/X925aha"], ["https://tec.openplanner.team/stops/LHmcarr1", "https://tec.openplanner.team/stops/LHmferm1"], ["https://tec.openplanner.team/stops/X850aia", "https://tec.openplanner.team/stops/X850aja"], ["https://tec.openplanner.team/stops/H4ga153a", "https://tec.openplanner.team/stops/H4ha171b"], ["https://tec.openplanner.team/stops/H1em106b", "https://tec.openplanner.team/stops/H1em108b"], ["https://tec.openplanner.team/stops/H4hn114b", "https://tec.openplanner.team/stops/H4pe127b"], ["https://tec.openplanner.team/stops/LLmvict2", "https://tec.openplanner.team/stops/LLmwaut2"], ["https://tec.openplanner.team/stops/N311aca", "https://tec.openplanner.team/stops/N311acb"], ["https://tec.openplanner.team/stops/H1nm138b", "https://tec.openplanner.team/stops/H1si156d"], ["https://tec.openplanner.team/stops/LMAwavr1", "https://tec.openplanner.team/stops/LSTmeiz1"], ["https://tec.openplanner.team/stops/Cdogrro2", "https://tec.openplanner.team/stops/Cstdona6"], ["https://tec.openplanner.team/stops/Cjuloos2", "https://tec.openplanner.team/stops/Cjuplco2"], ["https://tec.openplanner.team/stops/H1ms300a", "https://tec.openplanner.team/stops/H1ms303a"], ["https://tec.openplanner.team/stops/Bitrcha1", "https://tec.openplanner.team/stops/Bitreco2"], ["https://tec.openplanner.team/stops/X358aba", "https://tec.openplanner.team/stops/X358ada"], ["https://tec.openplanner.team/stops/LmTreic2", "https://tec.openplanner.team/stops/LmTschi2"], ["https://tec.openplanner.team/stops/Crchutt2", "https://tec.openplanner.team/stops/Crcverr2"], ["https://tec.openplanner.team/stops/H5rx126a", "https://tec.openplanner.team/stops/H5rx136b"], ["https://tec.openplanner.team/stops/N540aka", "https://tec.openplanner.team/stops/N540akb"], ["https://tec.openplanner.team/stops/LeI39--3", "https://tec.openplanner.team/stops/LeIdeid2"], ["https://tec.openplanner.team/stops/X950aab", "https://tec.openplanner.team/stops/X950aba"], ["https://tec.openplanner.team/stops/LLOberl2", "https://tec.openplanner.team/stops/LLOhest2"], ["https://tec.openplanner.team/stops/X903aaa", "https://tec.openplanner.team/stops/X943aaa"], ["https://tec.openplanner.team/stops/LFsbasc1", "https://tec.openplanner.team/stops/LSLstra2"], ["https://tec.openplanner.team/stops/Llonaes1", "https://tec.openplanner.team/stops/Lloross2"], ["https://tec.openplanner.team/stops/N426aca", "https://tec.openplanner.team/stops/N426acb"], ["https://tec.openplanner.team/stops/Lccuner1", "https://tec.openplanner.team/stops/Lccuner2"], ["https://tec.openplanner.team/stops/X222afa", "https://tec.openplanner.team/stops/X222afb"], ["https://tec.openplanner.team/stops/NC02bbb", "https://tec.openplanner.team/stops/NC14aea"], ["https://tec.openplanner.team/stops/Bcrnpla1", "https://tec.openplanner.team/stops/Bcrnvic1"], ["https://tec.openplanner.team/stops/H1so136d", "https://tec.openplanner.team/stops/H1so145a"], ["https://tec.openplanner.team/stops/LFlabba2", "https://tec.openplanner.team/stops/LHHlomb1"], ["https://tec.openplanner.team/stops/N521apa", "https://tec.openplanner.team/stops/N523aaa"], ["https://tec.openplanner.team/stops/X790aab", "https://tec.openplanner.team/stops/X790anb"], ["https://tec.openplanner.team/stops/Lemdieu2", "https://tec.openplanner.team/stops/Lemeg--2"], ["https://tec.openplanner.team/stops/N340acc", "https://tec.openplanner.team/stops/N340aeb"], ["https://tec.openplanner.team/stops/H2ha136a", "https://tec.openplanner.team/stops/H2ha137b"], ["https://tec.openplanner.team/stops/Beclbse1", "https://tec.openplanner.team/stops/H2ec108b"], ["https://tec.openplanner.team/stops/N308abb", "https://tec.openplanner.team/stops/N308bgb"], ["https://tec.openplanner.team/stops/LoDmuhl2", "https://tec.openplanner.team/stops/LrUoudl2"], ["https://tec.openplanner.team/stops/LMnlogi1", "https://tec.openplanner.team/stops/X222azb"], ["https://tec.openplanner.team/stops/Lmnbass1", "https://tec.openplanner.team/stops/Lmndeso1"], ["https://tec.openplanner.team/stops/Bchacen1", "https://tec.openplanner.team/stops/Bchapir2"], ["https://tec.openplanner.team/stops/H4rx142a", "https://tec.openplanner.team/stops/H4tf147b"], ["https://tec.openplanner.team/stops/H4ho121a", "https://tec.openplanner.team/stops/H4ho121b"], ["https://tec.openplanner.team/stops/N308aya", "https://tec.openplanner.team/stops/N308ayb"], ["https://tec.openplanner.team/stops/LJAchat1", "https://tec.openplanner.team/stops/LJAchat2"], ["https://tec.openplanner.team/stops/Cgzhour1", "https://tec.openplanner.team/stops/Cthrlef2"], ["https://tec.openplanner.team/stops/Lmlmaqu2", "https://tec.openplanner.team/stops/Lmlmaqu4"], ["https://tec.openplanner.team/stops/H1em107a", "https://tec.openplanner.team/stops/H1em107b"], ["https://tec.openplanner.team/stops/LlNschu1", "https://tec.openplanner.team/stops/LlNschu2"], ["https://tec.openplanner.team/stops/X664afb", "https://tec.openplanner.team/stops/X664agb"], ["https://tec.openplanner.team/stops/H1hh111b", "https://tec.openplanner.team/stops/H1hh118b"], ["https://tec.openplanner.team/stops/Bmarfjo1", "https://tec.openplanner.team/stops/Bmarfjo2"], ["https://tec.openplanner.team/stops/H1gh163b", "https://tec.openplanner.team/stops/H1gh167a"], ["https://tec.openplanner.team/stops/X768aba", "https://tec.openplanner.team/stops/X768abb"], ["https://tec.openplanner.team/stops/LLelans1", "https://tec.openplanner.team/stops/LLelans2"], ["https://tec.openplanner.team/stops/Crobass2", "https://tec.openplanner.team/stops/Crojume1"], ["https://tec.openplanner.team/stops/Bbealou1", "https://tec.openplanner.team/stops/Bbealou2"], ["https://tec.openplanner.team/stops/LLTfall1", "https://tec.openplanner.team/stops/LLTfall2"], ["https://tec.openplanner.team/stops/H2ma208a", "https://tec.openplanner.team/stops/H2sb231b"], ["https://tec.openplanner.team/stops/Ccisart1", "https://tec.openplanner.team/stops/Ccisart2"], ["https://tec.openplanner.team/stops/Bcercab2", "https://tec.openplanner.team/stops/Bottpin2"], ["https://tec.openplanner.team/stops/Lpegiet1", "https://tec.openplanner.team/stops/LWevand2"], ["https://tec.openplanner.team/stops/Lhemilm2", "https://tec.openplanner.team/stops/Lhepaqu2"], ["https://tec.openplanner.team/stops/X908afa", "https://tec.openplanner.team/stops/X908afb"], ["https://tec.openplanner.team/stops/Bbgerlr2", "https://tec.openplanner.team/stops/Blmldmi2"], ["https://tec.openplanner.team/stops/LbRkirc2", "https://tec.openplanner.team/stops/LtHkirc4"], ["https://tec.openplanner.team/stops/LHEjose1", "https://tec.openplanner.team/stops/LMEgare2"], ["https://tec.openplanner.team/stops/Blsmvan1", "https://tec.openplanner.team/stops/Braclin2"], ["https://tec.openplanner.team/stops/Bsdecdi1", "https://tec.openplanner.team/stops/N526ada"], ["https://tec.openplanner.team/stops/Cthgend2", "https://tec.openplanner.team/stops/Cthhvil1"], ["https://tec.openplanner.team/stops/X806aha", "https://tec.openplanner.team/stops/X806aja"], ["https://tec.openplanner.team/stops/LMebove1", "https://tec.openplanner.team/stops/LMeperk2"], ["https://tec.openplanner.team/stops/Lvchenn2", "https://tec.openplanner.team/stops/Lvcvesd*"], ["https://tec.openplanner.team/stops/Cchhopi2", "https://tec.openplanner.team/stops/CMjans1"], ["https://tec.openplanner.team/stops/H4mt219b", "https://tec.openplanner.team/stops/H4mt221a"], ["https://tec.openplanner.team/stops/Lstbota3", "https://tec.openplanner.team/stops/LTIgare3"], ["https://tec.openplanner.team/stops/H4bv146b", "https://tec.openplanner.team/stops/H5at129a"], ["https://tec.openplanner.team/stops/N125aba", "https://tec.openplanner.team/stops/N134aga"], ["https://tec.openplanner.team/stops/Bblaaca1", "https://tec.openplanner.team/stops/Bblahop1"], ["https://tec.openplanner.team/stops/N117aaa", "https://tec.openplanner.team/stops/N117aud"], ["https://tec.openplanner.team/stops/X731abb", "https://tec.openplanner.team/stops/X731aca"], ["https://tec.openplanner.team/stops/LrOfrie1", "https://tec.openplanner.team/stops/LrOn14-1"], ["https://tec.openplanner.team/stops/Bhalkrk1", "https://tec.openplanner.team/stops/Blkbavo2"], ["https://tec.openplanner.team/stops/LHUaveu2", "https://tec.openplanner.team/stops/LHUfont1"], ["https://tec.openplanner.team/stops/N234aba", "https://tec.openplanner.team/stops/N234ada"], ["https://tec.openplanner.team/stops/N501cxa", "https://tec.openplanner.team/stops/N501czb"], ["https://tec.openplanner.team/stops/LAYdieu2", "https://tec.openplanner.team/stops/LAYwerb2"], ["https://tec.openplanner.team/stops/Cmlecha1", "https://tec.openplanner.team/stops/CMsud2"], ["https://tec.openplanner.team/stops/Bcrbast1", "https://tec.openplanner.team/stops/Bcrbcel2"], ["https://tec.openplanner.team/stops/Llieg--2", "https://tec.openplanner.team/stops/Lvochev2"], ["https://tec.openplanner.team/stops/LBamate1", "https://tec.openplanner.team/stops/LBapeup1"], ["https://tec.openplanner.team/stops/Cgrbert2", "https://tec.openplanner.team/stops/Cgrflac1"], ["https://tec.openplanner.team/stops/Lrelier1", "https://tec.openplanner.team/stops/LSAhaye1"], ["https://tec.openplanner.team/stops/LlNkirc1", "https://tec.openplanner.team/stops/LlNkirc2"], ["https://tec.openplanner.team/stops/Cbfdufa2", "https://tec.openplanner.team/stops/Cctlimi1"], ["https://tec.openplanner.team/stops/N544afa", "https://tec.openplanner.team/stops/N544afb"], ["https://tec.openplanner.team/stops/X396aab", "https://tec.openplanner.team/stops/X901ala"], ["https://tec.openplanner.team/stops/Bbonbcr2", "https://tec.openplanner.team/stops/Bboncfv1"], ["https://tec.openplanner.team/stops/Lbeloui2", "https://tec.openplanner.team/stops/Llxec--1"], ["https://tec.openplanner.team/stops/X899agb", "https://tec.openplanner.team/stops/X899ahb"], ["https://tec.openplanner.team/stops/H1pe130a", "https://tec.openplanner.team/stops/H1pe132a"], ["https://tec.openplanner.team/stops/Ldihvce2", "https://tec.openplanner.team/stops/Ldipiss2"], ["https://tec.openplanner.team/stops/Lwaaube1", "https://tec.openplanner.team/stops/Lwapomp1"], ["https://tec.openplanner.team/stops/LBNeu712", "https://tec.openplanner.team/stops/LhElont2"], ["https://tec.openplanner.team/stops/LSPbalm1", "https://tec.openplanner.team/stops/LSPbalm2"], ["https://tec.openplanner.team/stops/H4pi134a", "https://tec.openplanner.team/stops/H4pi134b"], ["https://tec.openplanner.team/stops/X724acb", "https://tec.openplanner.team/stops/X724adb"], ["https://tec.openplanner.team/stops/H4ho121b", "https://tec.openplanner.team/stops/H4pl135a"], ["https://tec.openplanner.team/stops/X925ahb", "https://tec.openplanner.team/stops/X925aia"], ["https://tec.openplanner.team/stops/LBpecco2", "https://tec.openplanner.team/stops/LBpecco4"], ["https://tec.openplanner.team/stops/N101aca", "https://tec.openplanner.team/stops/N101ama"], ["https://tec.openplanner.team/stops/LWOwa161", "https://tec.openplanner.team/stops/LWOwaer1"], ["https://tec.openplanner.team/stops/Ccicouc2", "https://tec.openplanner.team/stops/Ccinali2"], ["https://tec.openplanner.team/stops/X611ada", "https://tec.openplanner.team/stops/X643abb"], ["https://tec.openplanner.team/stops/H4rm108a", "https://tec.openplanner.team/stops/H4ta123a"], ["https://tec.openplanner.team/stops/Caigibe1", "https://tec.openplanner.team/stops/Cplbbro2"], ["https://tec.openplanner.team/stops/LeYauss2", "https://tec.openplanner.team/stops/LeYfeld1"], ["https://tec.openplanner.team/stops/LCsjone2", "https://tec.openplanner.team/stops/LSCchap1"], ["https://tec.openplanner.team/stops/H1sp357c", "https://tec.openplanner.team/stops/H1ss350a"], ["https://tec.openplanner.team/stops/H3lr132b", "https://tec.openplanner.team/stops/H3th135c"], ["https://tec.openplanner.team/stops/X896aab", "https://tec.openplanner.team/stops/X995adb"], ["https://tec.openplanner.team/stops/X347aaa", "https://tec.openplanner.team/stops/X347aab"], ["https://tec.openplanner.team/stops/Lgdblom1", "https://tec.openplanner.team/stops/Lgdblom2"], ["https://tec.openplanner.team/stops/LsVgils2", "https://tec.openplanner.team/stops/LsVhupp1"], ["https://tec.openplanner.team/stops/X342aha", "https://tec.openplanner.team/stops/X354abb"], ["https://tec.openplanner.team/stops/Baudtri2", "https://tec.openplanner.team/stops/Bwbfgar2"], ["https://tec.openplanner.team/stops/X727adb", "https://tec.openplanner.team/stops/X747aba"], ["https://tec.openplanner.team/stops/X359acb", "https://tec.openplanner.team/stops/X359aea"], ["https://tec.openplanner.team/stops/H4po126b", "https://tec.openplanner.team/stops/H4po130b"], ["https://tec.openplanner.team/stops/N167aba", "https://tec.openplanner.team/stops/N550amb"], ["https://tec.openplanner.team/stops/LDAandr1", "https://tec.openplanner.team/stops/LMucarr1"], ["https://tec.openplanner.team/stops/Lougare2", "https://tec.openplanner.team/stops/Lougare3"], ["https://tec.openplanner.team/stops/Lhrdron2", "https://tec.openplanner.team/stops/Lhrmura2"], ["https://tec.openplanner.team/stops/X605ada", "https://tec.openplanner.team/stops/X605ala"], ["https://tec.openplanner.team/stops/H1qp141b", "https://tec.openplanner.team/stops/H1qp150b"], ["https://tec.openplanner.team/stops/LmD181-2", "https://tec.openplanner.team/stops/LmDwei31"], ["https://tec.openplanner.team/stops/H1gh144b", "https://tec.openplanner.team/stops/H1gh154b"], ["https://tec.openplanner.team/stops/N120aba", "https://tec.openplanner.team/stops/N120abb"], ["https://tec.openplanner.team/stops/Bmrleco3", "https://tec.openplanner.team/stops/Bmrleco4"], ["https://tec.openplanner.team/stops/Bpthcai1", "https://tec.openplanner.team/stops/Bwanwar1"], ["https://tec.openplanner.team/stops/LeYroth1", "https://tec.openplanner.team/stops/LeYroth2"], ["https://tec.openplanner.team/stops/LAwfans1", "https://tec.openplanner.team/stops/LHycent*"], ["https://tec.openplanner.team/stops/LHZbren1", "https://tec.openplanner.team/stops/LHZcouv1"], ["https://tec.openplanner.team/stops/H1hw124a", "https://tec.openplanner.team/stops/H1hw124b"], ["https://tec.openplanner.team/stops/LCPgare2", "https://tec.openplanner.team/stops/LCPscay2"], ["https://tec.openplanner.team/stops/H2hp123d", "https://tec.openplanner.team/stops/H2hp262a"], ["https://tec.openplanner.team/stops/H1mq200b", "https://tec.openplanner.team/stops/H5me106a"], ["https://tec.openplanner.team/stops/N562aoa", "https://tec.openplanner.team/stops/N562bna"], ["https://tec.openplanner.team/stops/Cgxmorg1", "https://tec.openplanner.team/stops/Cgxprad3"], ["https://tec.openplanner.team/stops/Lsmcime1", "https://tec.openplanner.team/stops/Lsmecol1"], ["https://tec.openplanner.team/stops/LHueg--1", "https://tec.openplanner.team/stops/LHuherm2"], ["https://tec.openplanner.team/stops/LHaodei1", "https://tec.openplanner.team/stops/LHarenn4"], ["https://tec.openplanner.team/stops/H1et101a", "https://tec.openplanner.team/stops/H1et101b"], ["https://tec.openplanner.team/stops/Blthwav1", "https://tec.openplanner.team/stops/Blthwav3"], ["https://tec.openplanner.team/stops/N137aga", "https://tec.openplanner.team/stops/N137agb"], ["https://tec.openplanner.team/stops/NL74adb", "https://tec.openplanner.team/stops/NL74aia"], ["https://tec.openplanner.team/stops/Brixcab1", "https://tec.openplanner.team/stops/Brixmar3"], ["https://tec.openplanner.team/stops/X917ada", "https://tec.openplanner.team/stops/X917adb"], ["https://tec.openplanner.team/stops/LWipaif3", "https://tec.openplanner.team/stops/LWipaif4"], ["https://tec.openplanner.team/stops/H1wa132b", "https://tec.openplanner.team/stops/H1wa145b"], ["https://tec.openplanner.team/stops/Ltigare1", "https://tec.openplanner.team/stops/Ltipass1"], ["https://tec.openplanner.team/stops/LaMades1", "https://tec.openplanner.team/stops/LmDkoel1"], ["https://tec.openplanner.team/stops/N501ihb", "https://tec.openplanner.team/stops/N501ija"], ["https://tec.openplanner.team/stops/Clcfall1", "https://tec.openplanner.team/stops/Clcfall2"], ["https://tec.openplanner.team/stops/X817afa", "https://tec.openplanner.team/stops/X817afb"], ["https://tec.openplanner.team/stops/N117bdc", "https://tec.openplanner.team/stops/N117bdd"], ["https://tec.openplanner.team/stops/Cmlvxmo1", "https://tec.openplanner.team/stops/Cmlvxmo2"], ["https://tec.openplanner.team/stops/Balsbeg2", "https://tec.openplanner.team/stops/Balsnay2"], ["https://tec.openplanner.team/stops/X633aib", "https://tec.openplanner.team/stops/X654aib"], ["https://tec.openplanner.team/stops/X908ara", "https://tec.openplanner.team/stops/X908asa"], ["https://tec.openplanner.team/stops/Ctm4che1", "https://tec.openplanner.team/stops/Ctm4che2"], ["https://tec.openplanner.team/stops/H4bo182a", "https://tec.openplanner.team/stops/H4og211b"], ["https://tec.openplanner.team/stops/Lcealig1", "https://tec.openplanner.team/stops/Lcewilm2"], ["https://tec.openplanner.team/stops/Cciferr1", "https://tec.openplanner.team/stops/Ccircar2"], ["https://tec.openplanner.team/stops/H1ca101b", "https://tec.openplanner.team/stops/H1ca107b"], ["https://tec.openplanner.team/stops/Cpcathe1", "https://tec.openplanner.team/stops/Cpctrau1"], ["https://tec.openplanner.team/stops/X882aba", "https://tec.openplanner.team/stops/X882amb"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LCxcham1"], ["https://tec.openplanner.team/stops/X937aha", "https://tec.openplanner.team/stops/X937aja"], ["https://tec.openplanner.team/stops/X870afa", "https://tec.openplanner.team/stops/X870ahb"], ["https://tec.openplanner.team/stops/H1br122b", "https://tec.openplanner.team/stops/H1br126b"], ["https://tec.openplanner.team/stops/Cmtpblo2", "https://tec.openplanner.team/stops/Cmtprey1"], ["https://tec.openplanner.team/stops/LFTeg--1", "https://tec.openplanner.team/stops/LFTeg--2"], ["https://tec.openplanner.team/stops/Bolgcsa1", "https://tec.openplanner.team/stops/Bolgcsa2"], ["https://tec.openplanner.team/stops/LRRoser2", "https://tec.openplanner.team/stops/LTamag1"], ["https://tec.openplanner.team/stops/Lfhnrou1", "https://tec.openplanner.team/stops/Lfhnrou2"], ["https://tec.openplanner.team/stops/H1br121a", "https://tec.openplanner.team/stops/H1br129a"], ["https://tec.openplanner.team/stops/N118aeb", "https://tec.openplanner.team/stops/N118alb"], ["https://tec.openplanner.team/stops/H4ca120a", "https://tec.openplanner.team/stops/H4ca121a"], ["https://tec.openplanner.team/stops/H1tt106a", "https://tec.openplanner.team/stops/H1tt107a"], ["https://tec.openplanner.team/stops/N132abb", "https://tec.openplanner.team/stops/N152abc"], ["https://tec.openplanner.team/stops/Bwavcui1", "https://tec.openplanner.team/stops/Bwavtas3"], ["https://tec.openplanner.team/stops/N118ala", "https://tec.openplanner.team/stops/N118alb"], ["https://tec.openplanner.team/stops/X818ajb", "https://tec.openplanner.team/stops/X818aka"], ["https://tec.openplanner.team/stops/X641afb", "https://tec.openplanner.team/stops/X641afc"], ["https://tec.openplanner.team/stops/H5el101a", "https://tec.openplanner.team/stops/H5el101b"], ["https://tec.openplanner.team/stops/N558ada", "https://tec.openplanner.team/stops/N558afb"], ["https://tec.openplanner.team/stops/Bquebre1", "https://tec.openplanner.team/stops/Bsteegl1"], ["https://tec.openplanner.team/stops/LLxalle1", "https://tec.openplanner.team/stops/LVIcarm2"], ["https://tec.openplanner.team/stops/H5bl119d", "https://tec.openplanner.team/stops/H5bl141a"], ["https://tec.openplanner.team/stops/Cgzhour2", "https://tec.openplanner.team/stops/Clb4dgi1"], ["https://tec.openplanner.team/stops/X601bza", "https://tec.openplanner.team/stops/X601dea"], ["https://tec.openplanner.team/stops/N562bib", "https://tec.openplanner.team/stops/N562bkb"], ["https://tec.openplanner.team/stops/Bbeaech2", "https://tec.openplanner.team/stops/Btiegar2"], ["https://tec.openplanner.team/stops/H4th140a", "https://tec.openplanner.team/stops/H4th140b"], ["https://tec.openplanner.team/stops/LXhhaka1", "https://tec.openplanner.team/stops/LXhvanh1"], ["https://tec.openplanner.team/stops/Bhencha2", "https://tec.openplanner.team/stops/Bvirmbr1"], ["https://tec.openplanner.team/stops/H1an100a", "https://tec.openplanner.team/stops/H1au103b"], ["https://tec.openplanner.team/stops/X754aga", "https://tec.openplanner.team/stops/X754agb"], ["https://tec.openplanner.team/stops/N135ayb", "https://tec.openplanner.team/stops/N135bia"], ["https://tec.openplanner.team/stops/H4fr146a", "https://tec.openplanner.team/stops/H4fr146b"], ["https://tec.openplanner.team/stops/LGeborn1", "https://tec.openplanner.team/stops/LGepeck1"], ["https://tec.openplanner.team/stops/LDOanes1", "https://tec.openplanner.team/stops/LDOdavi1"], ["https://tec.openplanner.team/stops/Bbstasa1", "https://tec.openplanner.team/stops/Bbststa2"], ["https://tec.openplanner.team/stops/H2be100a", "https://tec.openplanner.team/stops/H2lh132a"], ["https://tec.openplanner.team/stops/X650afd", "https://tec.openplanner.team/stops/X650afe"], ["https://tec.openplanner.team/stops/H4bs114a", "https://tec.openplanner.team/stops/H4ro156a"], ["https://tec.openplanner.team/stops/Bhvlbet1", "https://tec.openplanner.team/stops/Bhvlbet2"], ["https://tec.openplanner.team/stops/LFCalte2", "https://tec.openplanner.team/stops/LFCkerk2"], ["https://tec.openplanner.team/stops/Bbst4br2", "https://tec.openplanner.team/stops/Bbst4br4"], ["https://tec.openplanner.team/stops/LMIgare1", "https://tec.openplanner.team/stops/LMIpast1"], ["https://tec.openplanner.team/stops/LSZjona1", "https://tec.openplanner.team/stops/LSZjona2"], ["https://tec.openplanner.team/stops/H4lh118b", "https://tec.openplanner.team/stops/H4oe149b"], ["https://tec.openplanner.team/stops/LbO52--2", "https://tec.openplanner.team/stops/LmDhoch1"], ["https://tec.openplanner.team/stops/LoDmuhl1", "https://tec.openplanner.team/stops/LoDulf-1"], ["https://tec.openplanner.team/stops/H1bo100a", "https://tec.openplanner.team/stops/H1bo108c"], ["https://tec.openplanner.team/stops/X650ana", "https://tec.openplanner.team/stops/X650anb"], ["https://tec.openplanner.team/stops/N514aka", "https://tec.openplanner.team/stops/N514akb"], ["https://tec.openplanner.team/stops/Cmlener1", "https://tec.openplanner.team/stops/Cmlener2"], ["https://tec.openplanner.team/stops/X839aeb", "https://tec.openplanner.team/stops/X840aga"], ["https://tec.openplanner.team/stops/X904aeb", "https://tec.openplanner.team/stops/X904anb"], ["https://tec.openplanner.team/stops/LbUpost1", "https://tec.openplanner.team/stops/LbUverb2"], ["https://tec.openplanner.team/stops/Lceegli*", "https://tec.openplanner.team/stops/Lceviei2"], ["https://tec.openplanner.team/stops/X614aaa", "https://tec.openplanner.team/stops/X614aab"], ["https://tec.openplanner.team/stops/Bjanegl3", "https://tec.openplanner.team/stops/Bjaurgo2"], ["https://tec.openplanner.team/stops/LHOmc--2", "https://tec.openplanner.team/stops/LSRbouh2"], ["https://tec.openplanner.team/stops/N301aba", "https://tec.openplanner.team/stops/N301ada"], ["https://tec.openplanner.team/stops/X661aab", "https://tec.openplanner.team/stops/X836ajb"], ["https://tec.openplanner.team/stops/H1ba109a", "https://tec.openplanner.team/stops/H1ba120a"], ["https://tec.openplanner.team/stops/N201aef", "https://tec.openplanner.team/stops/N201aia"], ["https://tec.openplanner.team/stops/Blmldmi1", "https://tec.openplanner.team/stops/Blmlgar1"], ["https://tec.openplanner.team/stops/N527afa", "https://tec.openplanner.team/stops/N527agb"], ["https://tec.openplanner.team/stops/Bblabfo2", "https://tec.openplanner.team/stops/Bblaniv1"], ["https://tec.openplanner.team/stops/LlNlont2", "https://tec.openplanner.team/stops/LlNm%C3%BChl2"], ["https://tec.openplanner.team/stops/X561aaa", "https://tec.openplanner.team/stops/X575abb"], ["https://tec.openplanner.team/stops/Cmygbbo1", "https://tec.openplanner.team/stops/Cmygbbo3"], ["https://tec.openplanner.team/stops/LSOfech1", "https://tec.openplanner.team/stops/LSOfech2"], ["https://tec.openplanner.team/stops/X979aaa", "https://tec.openplanner.team/stops/X979aia"], ["https://tec.openplanner.team/stops/H5wo125a", "https://tec.openplanner.team/stops/H5wo134b"], ["https://tec.openplanner.team/stops/N501inb", "https://tec.openplanner.team/stops/N501ipb"], ["https://tec.openplanner.team/stops/LbTcarm1", "https://tec.openplanner.team/stops/LbTdoma2"], ["https://tec.openplanner.team/stops/N530aha", "https://tec.openplanner.team/stops/N530ahb"], ["https://tec.openplanner.team/stops/Cmazone1", "https://tec.openplanner.team/stops/Cmmegli3"], ["https://tec.openplanner.team/stops/N305aaa", "https://tec.openplanner.team/stops/N331acb"], ["https://tec.openplanner.team/stops/H1so142a", "https://tec.openplanner.team/stops/H1so142d"], ["https://tec.openplanner.team/stops/LPTblan1", "https://tec.openplanner.team/stops/LPTgran2"], ["https://tec.openplanner.team/stops/H5qu148a", "https://tec.openplanner.team/stops/H5qu149a"], ["https://tec.openplanner.team/stops/LFsbasc2", "https://tec.openplanner.team/stops/LSLstra2"], ["https://tec.openplanner.team/stops/X901asa", "https://tec.openplanner.team/stops/X901axa"], ["https://tec.openplanner.team/stops/Bwavbar1", "https://tec.openplanner.team/stops/Bwavlav1"], ["https://tec.openplanner.team/stops/X882aab", "https://tec.openplanner.team/stops/X882aeb"], ["https://tec.openplanner.team/stops/LSeaque3", "https://tec.openplanner.team/stops/LVbstre1"], ["https://tec.openplanner.team/stops/Lsepapi3", "https://tec.openplanner.team/stops/Lseruis1"], ["https://tec.openplanner.team/stops/H2bh113a", "https://tec.openplanner.team/stops/H2lc145a"], ["https://tec.openplanner.team/stops/N534aqa", "https://tec.openplanner.team/stops/N534awb"], ["https://tec.openplanner.team/stops/H4wg121a", "https://tec.openplanner.team/stops/H4wg121b"], ["https://tec.openplanner.team/stops/X901ama", "https://tec.openplanner.team/stops/X901arb"], ["https://tec.openplanner.team/stops/Lghcfer1", "https://tec.openplanner.team/stops/Ljerouy2"], ["https://tec.openplanner.team/stops/Llgcime1", "https://tec.openplanner.team/stops/Llgegwa1"], ["https://tec.openplanner.team/stops/LhGkirc1", "https://tec.openplanner.team/stops/LhGkirc2"], ["https://tec.openplanner.team/stops/NH01aia", "https://tec.openplanner.team/stops/NH01aob"], ["https://tec.openplanner.team/stops/Lhrlalo3", "https://tec.openplanner.team/stops/Llgchan2"], ["https://tec.openplanner.team/stops/Cjudest1", "https://tec.openplanner.team/stops/Cjudest3"], ["https://tec.openplanner.team/stops/N232afb", "https://tec.openplanner.team/stops/N251aab"], ["https://tec.openplanner.team/stops/LHe3com1", "https://tec.openplanner.team/stops/LHe3com2"], ["https://tec.openplanner.team/stops/H5ma180a", "https://tec.openplanner.team/stops/H5ma185a"], ["https://tec.openplanner.team/stops/Cthcrom2", "https://tec.openplanner.team/stops/Cthrwai2"], ["https://tec.openplanner.team/stops/Cgxchan2", "https://tec.openplanner.team/stops/Cgxcite2"], ["https://tec.openplanner.team/stops/Bblabos2", "https://tec.openplanner.team/stops/Bblasmo1"], ["https://tec.openplanner.team/stops/H1ch104b", "https://tec.openplanner.team/stops/H1ch105b"], ["https://tec.openplanner.team/stops/Canrobe1", "https://tec.openplanner.team/stops/Canrtth3"], ["https://tec.openplanner.team/stops/X886aab", "https://tec.openplanner.team/stops/X886aha"], ["https://tec.openplanner.team/stops/Lalwaro2", "https://tec.openplanner.team/stops/Lloauto1"], ["https://tec.openplanner.team/stops/LHCpaci1", "https://tec.openplanner.team/stops/LWEmito2"], ["https://tec.openplanner.team/stops/Ccifies2", "https://tec.openplanner.team/stops/Clvimtr1"], ["https://tec.openplanner.team/stops/N501itb", "https://tec.openplanner.team/stops/N501iua"], ["https://tec.openplanner.team/stops/LLnlimb2", "https://tec.openplanner.team/stops/LLnpomp2"], ["https://tec.openplanner.team/stops/Cjochap2", "https://tec.openplanner.team/stops/Cjojonc2"], ["https://tec.openplanner.team/stops/X779agb", "https://tec.openplanner.team/stops/X779ahb"], ["https://tec.openplanner.team/stops/H4mx117b", "https://tec.openplanner.team/stops/H4mx119c"], ["https://tec.openplanner.team/stops/Cfrchfe1", "https://tec.openplanner.team/stops/Cfrptfe2"], ["https://tec.openplanner.team/stops/Cmogrbu2", "https://tec.openplanner.team/stops/Cmogtri2"], ["https://tec.openplanner.team/stops/Clbptno3", "https://tec.openplanner.team/stops/Cthgrat1"], ["https://tec.openplanner.team/stops/H4ch117a", "https://tec.openplanner.team/stops/H4ch117b"], ["https://tec.openplanner.team/stops/LTiflor1", "https://tec.openplanner.team/stops/LTiterr1"], ["https://tec.openplanner.team/stops/Llgcbat1", "https://tec.openplanner.team/stops/Llgjasm1"], ["https://tec.openplanner.team/stops/Ljecoqu2", "https://tec.openplanner.team/stops/LjeGRPME"], ["https://tec.openplanner.team/stops/LBTwauc1", "https://tec.openplanner.team/stops/LCHeg--1"], ["https://tec.openplanner.team/stops/N106aba", "https://tec.openplanner.team/stops/N106acb"], ["https://tec.openplanner.team/stops/Cflcarr2", "https://tec.openplanner.team/stops/Cflchel4"], ["https://tec.openplanner.team/stops/LRRpost1", "https://tec.openplanner.team/stops/LRRpost2"], ["https://tec.openplanner.team/stops/Lghfors1", "https://tec.openplanner.team/stops/Lghneuv2"], ["https://tec.openplanner.team/stops/H4mo167a", "https://tec.openplanner.team/stops/H4mo174a"], ["https://tec.openplanner.team/stops/Clfbarr6", "https://tec.openplanner.team/stops/Clftour1"], ["https://tec.openplanner.team/stops/Bmarchn1", "https://tec.openplanner.team/stops/Bmarmco1"], ["https://tec.openplanner.team/stops/X634aaa", "https://tec.openplanner.team/stops/X634aab"], ["https://tec.openplanner.team/stops/LCPconf1", "https://tec.openplanner.team/stops/LSdbote1"], ["https://tec.openplanner.team/stops/N232bka", "https://tec.openplanner.team/stops/N232bra"], ["https://tec.openplanner.team/stops/LnIfrie2", "https://tec.openplanner.team/stops/LnIkirc2"], ["https://tec.openplanner.team/stops/LhSkape1", "https://tec.openplanner.team/stops/LhSschn2"], ["https://tec.openplanner.team/stops/N232byb", "https://tec.openplanner.team/stops/N242adc"], ["https://tec.openplanner.team/stops/Chhbiet1", "https://tec.openplanner.team/stops/Chhprai1"], ["https://tec.openplanner.team/stops/LBRpt--1", "https://tec.openplanner.team/stops/LBRruel1"], ["https://tec.openplanner.team/stops/H5at120b", "https://tec.openplanner.team/stops/H5at141b"], ["https://tec.openplanner.team/stops/N532aja", "https://tec.openplanner.team/stops/N532akb"], ["https://tec.openplanner.team/stops/X888ada", "https://tec.openplanner.team/stops/X888aeb"], ["https://tec.openplanner.team/stops/X769aga", "https://tec.openplanner.team/stops/X769ahb"], ["https://tec.openplanner.team/stops/X672afa", "https://tec.openplanner.team/stops/X672aka"], ["https://tec.openplanner.team/stops/LLUpier1", "https://tec.openplanner.team/stops/LLUpier2"], ["https://tec.openplanner.team/stops/Lfllapi5", "https://tec.openplanner.team/stops/Lflsana2"], ["https://tec.openplanner.team/stops/N121aaa", "https://tec.openplanner.team/stops/N121abb"], ["https://tec.openplanner.team/stops/X638arb", "https://tec.openplanner.team/stops/X639aaa"], ["https://tec.openplanner.team/stops/Btlbegl1", "https://tec.openplanner.team/stops/Btlbegl2"], ["https://tec.openplanner.team/stops/N260aaa", "https://tec.openplanner.team/stops/N270ada"], ["https://tec.openplanner.team/stops/N580abb", "https://tec.openplanner.team/stops/N580aeb"], ["https://tec.openplanner.team/stops/N501ltb", "https://tec.openplanner.team/stops/N501mfb"], ["https://tec.openplanner.team/stops/Crs74em1", "https://tec.openplanner.team/stops/Crswaut2"], ["https://tec.openplanner.team/stops/Cmlbruy1", "https://tec.openplanner.team/stops/Cmmbmad2"], ["https://tec.openplanner.team/stops/Cgotech1", "https://tec.openplanner.team/stops/Craplac3"], ["https://tec.openplanner.team/stops/N515ana", "https://tec.openplanner.team/stops/N515atb"], ["https://tec.openplanner.team/stops/Cptccas1", "https://tec.openplanner.team/stops/Cptchea2"], ["https://tec.openplanner.team/stops/N121aca", "https://tec.openplanner.team/stops/N121aja"], ["https://tec.openplanner.team/stops/NL76bca", "https://tec.openplanner.team/stops/NL77ahb"], ["https://tec.openplanner.team/stops/LSlbail2", "https://tec.openplanner.team/stops/X919aaa"], ["https://tec.openplanner.team/stops/H2mg141a", "https://tec.openplanner.team/stops/H2mg142b"], ["https://tec.openplanner.team/stops/Bwatcom1", "https://tec.openplanner.team/stops/Bwatsan1"], ["https://tec.openplanner.team/stops/LeUcroi1", "https://tec.openplanner.team/stops/LeUwetz1"], ["https://tec.openplanner.team/stops/Bclgegl1", "https://tec.openplanner.team/stops/Bclgvmo1"], ["https://tec.openplanner.team/stops/N558aaa", "https://tec.openplanner.team/stops/N558ama"], ["https://tec.openplanner.team/stops/X614awb", "https://tec.openplanner.team/stops/X615aua"], ["https://tec.openplanner.team/stops/H4de113a", "https://tec.openplanner.team/stops/H5rx103b"], ["https://tec.openplanner.team/stops/Lcheg--1", "https://tec.openplanner.team/stops/Lchpniv2"], ["https://tec.openplanner.team/stops/H4ty280a", "https://tec.openplanner.team/stops/H4ty314d"], ["https://tec.openplanner.team/stops/LHCandr2", "https://tec.openplanner.team/stops/LHCcroy2"], ["https://tec.openplanner.team/stops/H4og207b", "https://tec.openplanner.team/stops/H4og212a"], ["https://tec.openplanner.team/stops/Cmyedpa1", "https://tec.openplanner.team/stops/Cmymarb1"], ["https://tec.openplanner.team/stops/X369aba", "https://tec.openplanner.team/stops/X369abb"], ["https://tec.openplanner.team/stops/X754arb", "https://tec.openplanner.team/stops/X754atb"], ["https://tec.openplanner.team/stops/LHUbail2", "https://tec.openplanner.team/stops/LHUsart1"], ["https://tec.openplanner.team/stops/N512ana", "https://tec.openplanner.team/stops/N512atc"], ["https://tec.openplanner.team/stops/Cgoetun1", "https://tec.openplanner.team/stops/Cgoetun2"], ["https://tec.openplanner.team/stops/X870aeb", "https://tec.openplanner.team/stops/X880agd"], ["https://tec.openplanner.team/stops/LaMjous2", "https://tec.openplanner.team/stops/LaMschw1"], ["https://tec.openplanner.team/stops/NH01agd", "https://tec.openplanner.team/stops/NH01ama"], ["https://tec.openplanner.team/stops/LFmceli2", "https://tec.openplanner.team/stops/LFmpoin2"], ["https://tec.openplanner.team/stops/Cfoperz1", "https://tec.openplanner.team/stops/Cfovent1"], ["https://tec.openplanner.team/stops/LBRpier1", "https://tec.openplanner.team/stops/LLRsalm2"], ["https://tec.openplanner.team/stops/X805ahb", "https://tec.openplanner.team/stops/X869afb"], ["https://tec.openplanner.team/stops/N351afb", "https://tec.openplanner.team/stops/N351aia"], ["https://tec.openplanner.team/stops/Cmachau1", "https://tec.openplanner.team/stops/Cmaegal2"], ["https://tec.openplanner.team/stops/X801aba", "https://tec.openplanner.team/stops/X801abb"], ["https://tec.openplanner.team/stops/H4lz124b", "https://tec.openplanner.team/stops/H4lz127b"], ["https://tec.openplanner.team/stops/LTHroch2", "https://tec.openplanner.team/stops/LTHwaux2"], ["https://tec.openplanner.team/stops/H4me211a", "https://tec.openplanner.team/stops/H4ve133b"], ["https://tec.openplanner.team/stops/H4mo155a", "https://tec.openplanner.team/stops/H4rx141a"], ["https://tec.openplanner.team/stops/H4ft132a", "https://tec.openplanner.team/stops/H4ft138b"], ["https://tec.openplanner.team/stops/H1mr124b", "https://tec.openplanner.team/stops/H1on129b"], ["https://tec.openplanner.team/stops/Bwatcrf1", "https://tec.openplanner.team/stops/Bwatdco1"], ["https://tec.openplanner.team/stops/LTPnoup2", "https://tec.openplanner.team/stops/LTPspay2"], ["https://tec.openplanner.team/stops/LhRandl2", "https://tec.openplanner.team/stops/LhRkirc2"], ["https://tec.openplanner.team/stops/H1og132b", "https://tec.openplanner.team/stops/H5wo122a"], ["https://tec.openplanner.team/stops/Lhrlico3", "https://tec.openplanner.team/stops/Lhrtilm1"], ["https://tec.openplanner.team/stops/H1gh145b", "https://tec.openplanner.team/stops/H1gh150a"], ["https://tec.openplanner.team/stops/X986ada", "https://tec.openplanner.team/stops/X986aeb"], ["https://tec.openplanner.team/stops/LHecime1", "https://tec.openplanner.team/stops/LHSheur2"], ["https://tec.openplanner.team/stops/H4rk101a", "https://tec.openplanner.team/stops/H4tg170a"], ["https://tec.openplanner.team/stops/Bmalwvi1", "https://tec.openplanner.team/stops/Boppcen4"], ["https://tec.openplanner.team/stops/N559acb", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/H4lz125a", "https://tec.openplanner.team/stops/H4lz162a"], ["https://tec.openplanner.team/stops/X812aca", "https://tec.openplanner.team/stops/X812aia"], ["https://tec.openplanner.team/stops/H4ne140a", "https://tec.openplanner.team/stops/H4te249a"], ["https://tec.openplanner.team/stops/H1gc122b", "https://tec.openplanner.team/stops/H1go169a"], ["https://tec.openplanner.team/stops/Bhensei2", "https://tec.openplanner.team/stops/Bquevel2"], ["https://tec.openplanner.team/stops/Bfelbri3", "https://tec.openplanner.team/stops/Bfelgar2"], ["https://tec.openplanner.team/stops/Bmrleco2", "https://tec.openplanner.team/stops/Bmrlhan1"], ["https://tec.openplanner.team/stops/Lourose1", "https://tec.openplanner.team/stops/Louvivi1"], ["https://tec.openplanner.team/stops/X889aaa", "https://tec.openplanner.team/stops/X889aab"], ["https://tec.openplanner.team/stops/X615aqa", "https://tec.openplanner.team/stops/X615ata"], ["https://tec.openplanner.team/stops/Crcgmah1", "https://tec.openplanner.team/stops/Crcgmah2"], ["https://tec.openplanner.team/stops/H2hg149b", "https://tec.openplanner.team/stops/H2hg154b"], ["https://tec.openplanner.team/stops/X982apa", "https://tec.openplanner.team/stops/X982brb"], ["https://tec.openplanner.team/stops/Cchsud0", "https://tec.openplanner.team/stops/Cchtram2"], ["https://tec.openplanner.team/stops/N507apb", "https://tec.openplanner.team/stops/NL74aea"], ["https://tec.openplanner.team/stops/Cbtstac2", "https://tec.openplanner.team/stops/Cgnbast2"], ["https://tec.openplanner.team/stops/Ccypn2", "https://tec.openplanner.team/stops/Csregli2"], ["https://tec.openplanner.team/stops/LSOfech2", "https://tec.openplanner.team/stops/LSOgard1"], ["https://tec.openplanner.team/stops/X784aja", "https://tec.openplanner.team/stops/X784ajb"], ["https://tec.openplanner.team/stops/H4av106c", "https://tec.openplanner.team/stops/H4cr111a"], ["https://tec.openplanner.team/stops/X601bfa", "https://tec.openplanner.team/stops/X601bxb"], ["https://tec.openplanner.team/stops/Cobhaut1", "https://tec.openplanner.team/stops/Cobnive2"], ["https://tec.openplanner.team/stops/Lhrpost2", "https://tec.openplanner.team/stops/Llgatel2"], ["https://tec.openplanner.team/stops/Cnachat1", "https://tec.openplanner.team/stops/Cnahous2"], ["https://tec.openplanner.team/stops/X614ava", "https://tec.openplanner.team/stops/X614bdb"], ["https://tec.openplanner.team/stops/Lseegva2", "https://tec.openplanner.team/stops/Lsefive2"], ["https://tec.openplanner.team/stops/X750ala", "https://tec.openplanner.team/stops/X750bkb"], ["https://tec.openplanner.team/stops/H1ha188b", "https://tec.openplanner.team/stops/H1ha198a"], ["https://tec.openplanner.team/stops/LBkbamb1", "https://tec.openplanner.team/stops/LBkdahl1"], ["https://tec.openplanner.team/stops/X727afa", "https://tec.openplanner.team/stops/X728adb"], ["https://tec.openplanner.team/stops/LhIkirc*", "https://tec.openplanner.team/stops/LrDsage2"], ["https://tec.openplanner.team/stops/LBlhaut1", "https://tec.openplanner.team/stops/LBlhaut2"], ["https://tec.openplanner.team/stops/N539awa", "https://tec.openplanner.team/stops/N539azb"], ["https://tec.openplanner.team/stops/LhSfrei1", "https://tec.openplanner.team/stops/LkOaugu2"], ["https://tec.openplanner.team/stops/Btlbcha1", "https://tec.openplanner.team/stops/Btlbmel2"], ["https://tec.openplanner.team/stops/Cjuchli2", "https://tec.openplanner.team/stops/Cjupoly2"], ["https://tec.openplanner.team/stops/X948ajb", "https://tec.openplanner.team/stops/X948arb"], ["https://tec.openplanner.team/stops/X614aja", "https://tec.openplanner.team/stops/X614ala"], ["https://tec.openplanner.team/stops/Bhaawdr1", "https://tec.openplanner.team/stops/Bnetace1"], ["https://tec.openplanner.team/stops/LJUmate2", "https://tec.openplanner.team/stops/LJUxhen3"], ["https://tec.openplanner.team/stops/Lmibove1", "https://tec.openplanner.team/stops/Lmicoop1"], ["https://tec.openplanner.team/stops/LMEwerg1", "https://tec.openplanner.team/stops/LSOcime2"], ["https://tec.openplanner.team/stops/Cpllimi4", "https://tec.openplanner.team/stops/Cpllimi5"], ["https://tec.openplanner.team/stops/N167aeb", "https://tec.openplanner.team/stops/N167agb"], ["https://tec.openplanner.team/stops/X663asa", "https://tec.openplanner.team/stops/X663aya"], ["https://tec.openplanner.team/stops/LPLmonu2", "https://tec.openplanner.team/stops/LPLphar2"], ["https://tec.openplanner.team/stops/X823aea", "https://tec.openplanner.team/stops/X823aeb"], ["https://tec.openplanner.team/stops/LOuhalb2", "https://tec.openplanner.team/stops/LVnvieg2"], ["https://tec.openplanner.team/stops/H2mo124a", "https://tec.openplanner.team/stops/H2mo144b"], ["https://tec.openplanner.team/stops/Cvtegli1", "https://tec.openplanner.team/stops/Cvtgsar3"], ["https://tec.openplanner.team/stops/X921ajc", "https://tec.openplanner.team/stops/X921akb"], ["https://tec.openplanner.team/stops/H4mv195b", "https://tec.openplanner.team/stops/H4mv196a"], ["https://tec.openplanner.team/stops/N155aab", "https://tec.openplanner.team/stops/N155acb"], ["https://tec.openplanner.team/stops/N535apb", "https://tec.openplanner.team/stops/N535asb"], ["https://tec.openplanner.team/stops/LWAgare*", "https://tec.openplanner.team/stops/LWAloui2"], ["https://tec.openplanner.team/stops/LMvgare2", "https://tec.openplanner.team/stops/LMvrabo2"], ["https://tec.openplanner.team/stops/LBQmaye1", "https://tec.openplanner.team/stops/LBQplac1"], ["https://tec.openplanner.team/stops/Cfopetr1", "https://tec.openplanner.team/stops/Cfopetr2"], ["https://tec.openplanner.team/stops/H4me213a", "https://tec.openplanner.team/stops/H4me213b"], ["https://tec.openplanner.team/stops/Llgdarc1", "https://tec.openplanner.team/stops/Llgfusc1"], ["https://tec.openplanner.team/stops/LOVchen1", "https://tec.openplanner.team/stops/LOVhetr1"], ["https://tec.openplanner.team/stops/LAMjeha2", "https://tec.openplanner.team/stops/LJEniho2"], ["https://tec.openplanner.team/stops/LAwfans1", "https://tec.openplanner.team/stops/LMvgare1"], ["https://tec.openplanner.team/stops/LSkcoin1", "https://tec.openplanner.team/stops/LSkrena2"], ["https://tec.openplanner.team/stops/N350ada", "https://tec.openplanner.team/stops/N350adb"], ["https://tec.openplanner.team/stops/X721alb", "https://tec.openplanner.team/stops/X721ama"], ["https://tec.openplanner.team/stops/Cciecol1", "https://tec.openplanner.team/stops/Cciecol2"], ["https://tec.openplanner.team/stops/LJveg--1", "https://tec.openplanner.team/stops/X576ada"], ["https://tec.openplanner.team/stops/LLagert*", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://tec.openplanner.team/stops/Caccera2", "https://tec.openplanner.team/stops/Cacgare1"], ["https://tec.openplanner.team/stops/H1br131a", "https://tec.openplanner.team/stops/H1ev149a"], ["https://tec.openplanner.team/stops/Caircen2", "https://tec.openplanner.team/stops/Crsprai3"], ["https://tec.openplanner.team/stops/Brebcha2", "https://tec.openplanner.team/stops/Brebvic1"], ["https://tec.openplanner.team/stops/X618afa", "https://tec.openplanner.team/stops/X618apa"], ["https://tec.openplanner.team/stops/Blpgvil1", "https://tec.openplanner.team/stops/Blpgvil2"], ["https://tec.openplanner.team/stops/Bgoegma1", "https://tec.openplanner.team/stops/Bhoealt1"], ["https://tec.openplanner.team/stops/X734aha", "https://tec.openplanner.team/stops/X734aja"], ["https://tec.openplanner.team/stops/N167add", "https://tec.openplanner.team/stops/N167aha"], ["https://tec.openplanner.team/stops/H4ty345a", "https://tec.openplanner.team/stops/H4ty356a"], ["https://tec.openplanner.team/stops/H4ca122b", "https://tec.openplanner.team/stops/H4wi162b"], ["https://tec.openplanner.team/stops/H4ar101a", "https://tec.openplanner.team/stops/H4ar101b"], ["https://tec.openplanner.team/stops/X547aib", "https://tec.openplanner.team/stops/X547anb"], ["https://tec.openplanner.team/stops/Cmlbras2", "https://tec.openplanner.team/stops/Cmlhaie2"], ["https://tec.openplanner.team/stops/LLVfoss1", "https://tec.openplanner.team/stops/X561ada"], ["https://tec.openplanner.team/stops/N563aab", "https://tec.openplanner.team/stops/N585aha"], ["https://tec.openplanner.team/stops/Cbmviv1", "https://tec.openplanner.team/stops/Cssgare2"], ["https://tec.openplanner.team/stops/Ccunove1", "https://tec.openplanner.team/stops/Ccusole1"], ["https://tec.openplanner.team/stops/Cmmcomb1", "https://tec.openplanner.team/stops/Cmmphai2"], ["https://tec.openplanner.team/stops/X942aca", "https://tec.openplanner.team/stops/X942aga"], ["https://tec.openplanner.team/stops/LCOcarr1", "https://tec.openplanner.team/stops/LSNnoul1"], ["https://tec.openplanner.team/stops/H1so143a", "https://tec.openplanner.team/stops/H1so145b"], ["https://tec.openplanner.team/stops/Bbxlple2", "https://tec.openplanner.team/stops/Bettlha2"], ["https://tec.openplanner.team/stops/Bllnchv1", "https://tec.openplanner.team/stops/Bllnpeq1"], ["https://tec.openplanner.team/stops/H4mo149a", "https://tec.openplanner.team/stops/H4tg162b"], ["https://tec.openplanner.team/stops/H2fa102b", "https://tec.openplanner.team/stops/H2fa103b"], ["https://tec.openplanner.team/stops/H4ty341b", "https://tec.openplanner.team/stops/H4ty381b"], ["https://tec.openplanner.team/stops/N571aba", "https://tec.openplanner.team/stops/N571acb"], ["https://tec.openplanner.team/stops/H4fl114a", "https://tec.openplanner.team/stops/H4wi168a"], ["https://tec.openplanner.team/stops/Cptberg2", "https://tec.openplanner.team/stops/Cptplac2"], ["https://tec.openplanner.team/stops/H1gr120a", "https://tec.openplanner.team/stops/H1mk113a"], ["https://tec.openplanner.team/stops/LVIgare1", "https://tec.openplanner.team/stops/LVIhala3"], ["https://tec.openplanner.team/stops/X740aea", "https://tec.openplanner.team/stops/X759aga"], ["https://tec.openplanner.team/stops/H1ba102b", "https://tec.openplanner.team/stops/H1ba108b"], ["https://tec.openplanner.team/stops/H2ll176a", "https://tec.openplanner.team/stops/H2ll195a"], ["https://tec.openplanner.team/stops/Cgrchea1", "https://tec.openplanner.team/stops/Cgrsaul1"], ["https://tec.openplanner.team/stops/N512aba", "https://tec.openplanner.team/stops/N512aha"], ["https://tec.openplanner.team/stops/H1ls130a", "https://tec.openplanner.team/stops/H1sa114a"], ["https://tec.openplanner.team/stops/LbUjost2", "https://tec.openplanner.team/stops/LmUzent1"], ["https://tec.openplanner.team/stops/H4ft133b", "https://tec.openplanner.team/stops/H4ft136b"], ["https://tec.openplanner.team/stops/N501aab", "https://tec.openplanner.team/stops/N501aua"], ["https://tec.openplanner.team/stops/X670apa", "https://tec.openplanner.team/stops/X670apc"], ["https://tec.openplanner.team/stops/LBXhacb2", "https://tec.openplanner.team/stops/LHEclef2"], ["https://tec.openplanner.team/stops/N543cma", "https://tec.openplanner.team/stops/N543cmb"], ["https://tec.openplanner.team/stops/Bblatet1", "https://tec.openplanner.team/stops/Bblatet2"], ["https://tec.openplanner.team/stops/Llgmaus1", "https://tec.openplanner.team/stops/Llgmaus2"], ["https://tec.openplanner.team/stops/N524ajb", "https://tec.openplanner.team/stops/N524alb"], ["https://tec.openplanner.team/stops/Lwaelme1", "https://tec.openplanner.team/stops/Lwagare1"], ["https://tec.openplanner.team/stops/Lhurigu2", "https://tec.openplanner.team/stops/Lhurouh1"], ["https://tec.openplanner.team/stops/LTPabat1", "https://tec.openplanner.team/stops/LTPgare*"], ["https://tec.openplanner.team/stops/X660afb", "https://tec.openplanner.team/stops/X840afb"], ["https://tec.openplanner.team/stops/X763aha", "https://tec.openplanner.team/stops/X763ahb"], ["https://tec.openplanner.team/stops/H4fr140a", "https://tec.openplanner.team/stops/H4rc234c"], ["https://tec.openplanner.team/stops/H4bf108b", "https://tec.openplanner.team/stops/H4by119b"], ["https://tec.openplanner.team/stops/X946acb", "https://tec.openplanner.team/stops/X946afb"], ["https://tec.openplanner.team/stops/Lougros2", "https://tec.openplanner.team/stops/Loujouh2"], ["https://tec.openplanner.team/stops/LTNcarr4", "https://tec.openplanner.team/stops/LTNeau-2"], ["https://tec.openplanner.team/stops/Bgemgcw1", "https://tec.openplanner.team/stops/N522bva"], ["https://tec.openplanner.team/stops/N519aoa", "https://tec.openplanner.team/stops/N519apb"], ["https://tec.openplanner.team/stops/Bsrgm102", "https://tec.openplanner.team/stops/Bzlucam2"], ["https://tec.openplanner.team/stops/Cchba06", "https://tec.openplanner.team/stops/Cchba12"], ["https://tec.openplanner.team/stops/H1ho135a", "https://tec.openplanner.team/stops/H1ho135b"], ["https://tec.openplanner.team/stops/H1he101a", "https://tec.openplanner.team/stops/H1he107b"], ["https://tec.openplanner.team/stops/X908amb", "https://tec.openplanner.team/stops/X908ana"], ["https://tec.openplanner.team/stops/NR38aca", "https://tec.openplanner.team/stops/NR38aea"], ["https://tec.openplanner.team/stops/LAMceri1", "https://tec.openplanner.team/stops/LAMceri2"], ["https://tec.openplanner.team/stops/Crocona1", "https://tec.openplanner.team/stops/Croegli1"], ["https://tec.openplanner.team/stops/Bgnpchb1", "https://tec.openplanner.team/stops/Bgnpgen1"], ["https://tec.openplanner.team/stops/H5at133a", "https://tec.openplanner.team/stops/H5ma185b"], ["https://tec.openplanner.team/stops/N232aga", "https://tec.openplanner.team/stops/N286aba"], ["https://tec.openplanner.team/stops/H1sy140b", "https://tec.openplanner.team/stops/H1sy150b"], ["https://tec.openplanner.team/stops/N201apb", "https://tec.openplanner.team/stops/N219adb"], ["https://tec.openplanner.team/stops/Bwatcli1", "https://tec.openplanner.team/stops/Bwatcli2"], ["https://tec.openplanner.team/stops/H4lz126b", "https://tec.openplanner.team/stops/H4lz158a"], ["https://tec.openplanner.team/stops/Lhubarl1", "https://tec.openplanner.team/stops/Lhubarl2"], ["https://tec.openplanner.team/stops/Bbiecim1", "https://tec.openplanner.team/stops/Bbiecoc1"], ["https://tec.openplanner.team/stops/X949aia", "https://tec.openplanner.team/stops/X949aib"], ["https://tec.openplanner.team/stops/X633aib", "https://tec.openplanner.team/stops/X633ala"], ["https://tec.openplanner.team/stops/N539aha", "https://tec.openplanner.team/stops/N539atb"], ["https://tec.openplanner.team/stops/H2sv212b", "https://tec.openplanner.team/stops/H2tr246b"], ["https://tec.openplanner.team/stops/X808ahb", "https://tec.openplanner.team/stops/X808amb"], ["https://tec.openplanner.team/stops/LHEches1", "https://tec.openplanner.team/stops/LHEelva2"], ["https://tec.openplanner.team/stops/H4he106b", "https://tec.openplanner.team/stops/H4ob124a"], ["https://tec.openplanner.team/stops/Cradest2", "https://tec.openplanner.team/stops/Crapaep2"], ["https://tec.openplanner.team/stops/X687aja", "https://tec.openplanner.team/stops/X687ajb"], ["https://tec.openplanner.team/stops/N215abb", "https://tec.openplanner.team/stops/N215acb"], ["https://tec.openplanner.team/stops/H4ty321b", "https://tec.openplanner.team/stops/H4ty322b"], ["https://tec.openplanner.team/stops/X608aga", "https://tec.openplanner.team/stops/X608aha"], ["https://tec.openplanner.team/stops/Cbmplac1", "https://tec.openplanner.team/stops/Cbmplac2"], ["https://tec.openplanner.team/stops/H5at127a", "https://tec.openplanner.team/stops/H5at131a"], ["https://tec.openplanner.team/stops/X801aqb", "https://tec.openplanner.team/stops/X801coa"], ["https://tec.openplanner.team/stops/Cmerued1", "https://tec.openplanner.team/stops/Cmestas1"], ["https://tec.openplanner.team/stops/Llgchal2", "https://tec.openplanner.team/stops/Llgvott1"], ["https://tec.openplanner.team/stops/H1ms261b", "https://tec.openplanner.team/stops/H1ms262a"], ["https://tec.openplanner.team/stops/Bspkdon1", "https://tec.openplanner.team/stops/Bspkker1"], ["https://tec.openplanner.team/stops/N509asb", "https://tec.openplanner.team/stops/N509atb"], ["https://tec.openplanner.team/stops/X820aaa", "https://tec.openplanner.team/stops/X820aib"], ["https://tec.openplanner.team/stops/X746aca", "https://tec.openplanner.team/stops/X746acb"], ["https://tec.openplanner.team/stops/X925akb", "https://tec.openplanner.team/stops/X926aaa"], ["https://tec.openplanner.team/stops/H2an103b", "https://tec.openplanner.team/stops/H2an109a"], ["https://tec.openplanner.team/stops/Llgjenn2", "https://tec.openplanner.team/stops/Llgsorb1"], ["https://tec.openplanner.team/stops/H4am100b", "https://tec.openplanner.team/stops/H4am101a"], ["https://tec.openplanner.team/stops/LPLcite1", "https://tec.openplanner.team/stops/LPLcite2"], ["https://tec.openplanner.team/stops/H1ma233a", "https://tec.openplanner.team/stops/H1mj124b"], ["https://tec.openplanner.team/stops/Clbentr1", "https://tec.openplanner.team/stops/Cthrwai2"], ["https://tec.openplanner.team/stops/LWaanto1", "https://tec.openplanner.team/stops/LWaanto2"], ["https://tec.openplanner.team/stops/Crcegli2", "https://tec.openplanner.team/stops/Crcegli4"], ["https://tec.openplanner.team/stops/N512agc", "https://tec.openplanner.team/stops/NL57aga"], ["https://tec.openplanner.team/stops/H4le127b", "https://tec.openplanner.team/stops/H4ry130a"], ["https://tec.openplanner.team/stops/Chhlori1", "https://tec.openplanner.team/stops/Cjxpann2"], ["https://tec.openplanner.team/stops/LVAakke2", "https://tec.openplanner.team/stops/LVApark1"], ["https://tec.openplanner.team/stops/N229aib", "https://tec.openplanner.team/stops/N291aaa"], ["https://tec.openplanner.team/stops/X725aef", "https://tec.openplanner.team/stops/X725aoa"], ["https://tec.openplanner.team/stops/Cjuhame2", "https://tec.openplanner.team/stops/Cragill2"], ["https://tec.openplanner.team/stops/H2ch103a", "https://tec.openplanner.team/stops/H2ch111b"], ["https://tec.openplanner.team/stops/N573aha", "https://tec.openplanner.team/stops/N573aib"], ["https://tec.openplanner.team/stops/N109aab", "https://tec.openplanner.team/stops/N110adb"], ["https://tec.openplanner.team/stops/H3so173a", "https://tec.openplanner.team/stops/H3so185a"], ["https://tec.openplanner.team/stops/N562aya", "https://tec.openplanner.team/stops/N562ayb"], ["https://tec.openplanner.team/stops/Bcsebea2", "https://tec.openplanner.team/stops/Bcsebea3"], ["https://tec.openplanner.team/stops/Blsmjja1", "https://tec.openplanner.team/stops/Bpelf962"], ["https://tec.openplanner.team/stops/Bblamer2", "https://tec.openplanner.team/stops/Bblasta1"], ["https://tec.openplanner.team/stops/H1gr111b", "https://tec.openplanner.team/stops/H1hv132b"], ["https://tec.openplanner.team/stops/LSAchef2", "https://tec.openplanner.team/stops/LSAvieu2"], ["https://tec.openplanner.team/stops/Ccyrmon2", "https://tec.openplanner.team/stops/Crbrgar1"], ["https://tec.openplanner.team/stops/H1br130a", "https://tec.openplanner.team/stops/H2ma202a"], ["https://tec.openplanner.team/stops/LROgeuz1", "https://tec.openplanner.team/stops/LWacime3"], ["https://tec.openplanner.team/stops/LRAgrot1", "https://tec.openplanner.team/stops/LRArami2"], ["https://tec.openplanner.team/stops/Blimegl1", "https://tec.openplanner.team/stops/Botteco2"], ["https://tec.openplanner.team/stops/LiVdorf2", "https://tec.openplanner.team/stops/LiVgirk2"], ["https://tec.openplanner.team/stops/N357aab", "https://tec.openplanner.team/stops/N357afb"], ["https://tec.openplanner.team/stops/Cfabaty4", "https://tec.openplanner.team/stops/Clacast1"], ["https://tec.openplanner.team/stops/N214aca", "https://tec.openplanner.team/stops/N214ada"], ["https://tec.openplanner.team/stops/H1do119b", "https://tec.openplanner.team/stops/H1wi153b"], ["https://tec.openplanner.team/stops/H2pr115b", "https://tec.openplanner.team/stops/H2pr118b"], ["https://tec.openplanner.team/stops/X880aea", "https://tec.openplanner.team/stops/X880aeb"], ["https://tec.openplanner.team/stops/Lemboul1", "https://tec.openplanner.team/stops/Lemfort2"], ["https://tec.openplanner.team/stops/Lverema2", "https://tec.openplanner.team/stops/Lvesomm3"], ["https://tec.openplanner.team/stops/Cdamare1", "https://tec.openplanner.team/stops/Cdaviol1"], ["https://tec.openplanner.team/stops/H1ha191a", "https://tec.openplanner.team/stops/H1ha199b"], ["https://tec.openplanner.team/stops/X879amb", "https://tec.openplanner.team/stops/X879asa"], ["https://tec.openplanner.team/stops/Cchsud13", "https://tec.openplanner.team/stops/NC01aab"], ["https://tec.openplanner.team/stops/NL76aba", "https://tec.openplanner.team/stops/NL76ana"], ["https://tec.openplanner.team/stops/N516aba", "https://tec.openplanner.team/stops/N516abb"], ["https://tec.openplanner.team/stops/Ccuseba1", "https://tec.openplanner.team/stops/Ccuseba2"], ["https://tec.openplanner.team/stops/H2re165a", "https://tec.openplanner.team/stops/H2re166a"], ["https://tec.openplanner.team/stops/H2ca112a", "https://tec.openplanner.team/stops/H2ca112b"], ["https://tec.openplanner.team/stops/Lcacris1", "https://tec.openplanner.team/stops/Lcavign1"], ["https://tec.openplanner.team/stops/Buccplj2", "https://tec.openplanner.team/stops/Buccvoi3"], ["https://tec.openplanner.team/stops/H4ma204b", "https://tec.openplanner.team/stops/H4oq229a"], ["https://tec.openplanner.team/stops/N874aab", "https://tec.openplanner.team/stops/N894aga"], ["https://tec.openplanner.team/stops/LSOcime2", "https://tec.openplanner.team/stops/LSOgard1"], ["https://tec.openplanner.team/stops/Btubga04", "https://tec.openplanner.team/stops/Btubga05"], ["https://tec.openplanner.team/stops/CMfbru1", "https://tec.openplanner.team/stops/Ctmsncb1"], ["https://tec.openplanner.team/stops/N224agc", "https://tec.openplanner.team/stops/N349aba"], ["https://tec.openplanner.team/stops/Lhrdeme3", "https://tec.openplanner.team/stops/Lhrstev2"], ["https://tec.openplanner.team/stops/N501bqa", "https://tec.openplanner.team/stops/N501bqb"], ["https://tec.openplanner.team/stops/Bhenpla1", "https://tec.openplanner.team/stops/Bquegen1"], ["https://tec.openplanner.team/stops/Ccoptca2", "https://tec.openplanner.team/stops/Crowall2"], ["https://tec.openplanner.team/stops/Bwbfgar2", "https://tec.openplanner.team/stops/Bwbfhip2"], ["https://tec.openplanner.team/stops/LNEtonv1", "https://tec.openplanner.team/stops/LNEtonv2"], ["https://tec.openplanner.team/stops/H4rs119a", "https://tec.openplanner.team/stops/H4rs119b"], ["https://tec.openplanner.team/stops/H4ea132c", "https://tec.openplanner.team/stops/H4og211a"], ["https://tec.openplanner.team/stops/H4ty346b", "https://tec.openplanner.team/stops/H4ty384b"], ["https://tec.openplanner.team/stops/LhSfrei2", "https://tec.openplanner.team/stops/LhSgete3"], ["https://tec.openplanner.team/stops/LFFcouv1", "https://tec.openplanner.team/stops/LFFpier1"], ["https://tec.openplanner.team/stops/Cmmcver1", "https://tec.openplanner.team/stops/Cmmcver2"], ["https://tec.openplanner.team/stops/Bbaldot1", "https://tec.openplanner.team/stops/N584ana"], ["https://tec.openplanner.team/stops/H5qu142b", "https://tec.openplanner.team/stops/H5qu144b"], ["https://tec.openplanner.team/stops/X664aob", "https://tec.openplanner.team/stops/X664aqb"], ["https://tec.openplanner.team/stops/N323aaa", "https://tec.openplanner.team/stops/N323aba"], ["https://tec.openplanner.team/stops/LCRfavr1", "https://tec.openplanner.team/stops/LTyhapp1"], ["https://tec.openplanner.team/stops/N874ala", "https://tec.openplanner.team/stops/X876aaa"], ["https://tec.openplanner.team/stops/X746aha", "https://tec.openplanner.team/stops/X746ahd"], ["https://tec.openplanner.team/stops/Bquegob1", "https://tec.openplanner.team/stops/Bquegob3"], ["https://tec.openplanner.team/stops/H4be102a", "https://tec.openplanner.team/stops/H5bl122b"], ["https://tec.openplanner.team/stops/X769aka", "https://tec.openplanner.team/stops/X769akb"], ["https://tec.openplanner.team/stops/LFNecpr*", "https://tec.openplanner.team/stops/LFNfo161"], ["https://tec.openplanner.team/stops/N117baa", "https://tec.openplanner.team/stops/N170aga"], ["https://tec.openplanner.team/stops/LaMadam1", "https://tec.openplanner.team/stops/LaMahof2"], ["https://tec.openplanner.team/stops/X604acb", "https://tec.openplanner.team/stops/X604adb"], ["https://tec.openplanner.team/stops/Cthalli1", "https://tec.openplanner.team/stops/Cthathe4"], ["https://tec.openplanner.team/stops/Cgzabur2", "https://tec.openplanner.team/stops/Cgzha621"], ["https://tec.openplanner.team/stops/Bnivmet2", "https://tec.openplanner.team/stops/Bnivsoi2"], ["https://tec.openplanner.team/stops/Lflcle-*", "https://tec.openplanner.team/stops/Lflcle-1"], ["https://tec.openplanner.team/stops/X824aia", "https://tec.openplanner.team/stops/X824ala"], ["https://tec.openplanner.team/stops/Bmalwop1", "https://tec.openplanner.team/stops/Bmalwvi2"], ["https://tec.openplanner.team/stops/H4fo118a", "https://tec.openplanner.team/stops/H4pe128b"], ["https://tec.openplanner.team/stops/Llghori1", "https://tec.openplanner.team/stops/Llghori2"], ["https://tec.openplanner.team/stops/Csycant1", "https://tec.openplanner.team/stops/Csycant2"], ["https://tec.openplanner.team/stops/Lhepaqu1", "https://tec.openplanner.team/stops/Lhrmeta1"], ["https://tec.openplanner.team/stops/LGMvoue2", "https://tec.openplanner.team/stops/LSEec--2"], ["https://tec.openplanner.team/stops/Cfnegli1", "https://tec.openplanner.team/stops/N162aea"], ["https://tec.openplanner.team/stops/X608aja", "https://tec.openplanner.team/stops/X608aka"], ["https://tec.openplanner.team/stops/X771ada", "https://tec.openplanner.team/stops/X771aea"], ["https://tec.openplanner.team/stops/Lcacaps2", "https://tec.openplanner.team/stops/Lcalaro1"], ["https://tec.openplanner.team/stops/H1gr116b", "https://tec.openplanner.team/stops/H1gr120b"], ["https://tec.openplanner.team/stops/Cfbegli1", "https://tec.openplanner.team/stops/Cfcecol3"], ["https://tec.openplanner.team/stops/LRepous1", "https://tec.openplanner.team/stops/LRepous2"], ["https://tec.openplanner.team/stops/Llgauxc1", "https://tec.openplanner.team/stops/Llgrass2"], ["https://tec.openplanner.team/stops/N551agc", "https://tec.openplanner.team/stops/N551apa"], ["https://tec.openplanner.team/stops/N232bya", "https://tec.openplanner.team/stops/N232bza"], ["https://tec.openplanner.team/stops/Lprchat1", "https://tec.openplanner.team/stops/Lprperr1"], ["https://tec.openplanner.team/stops/Csebasc1", "https://tec.openplanner.team/stops/Cselait2"], ["https://tec.openplanner.team/stops/X922aja", "https://tec.openplanner.team/stops/X941aha"], ["https://tec.openplanner.team/stops/X982cbb", "https://tec.openplanner.team/stops/X986ahb"], ["https://tec.openplanner.team/stops/H1si155b", "https://tec.openplanner.team/stops/H1si156a"], ["https://tec.openplanner.team/stops/H4mo172a", "https://tec.openplanner.team/stops/H4mo207b"], ["https://tec.openplanner.team/stops/LELeg--1", "https://tec.openplanner.team/stops/LHCquat4"], ["https://tec.openplanner.team/stops/Lcealig2", "https://tec.openplanner.team/stops/Lcesart2"], ["https://tec.openplanner.team/stops/N509ana", "https://tec.openplanner.team/stops/N510aba"], ["https://tec.openplanner.team/stops/H4pq116a", "https://tec.openplanner.team/stops/H4pq116b"], ["https://tec.openplanner.team/stops/X768aib", "https://tec.openplanner.team/stops/X769amb"], ["https://tec.openplanner.team/stops/LbTathe1", "https://tec.openplanner.team/stops/LbTkreu3"], ["https://tec.openplanner.team/stops/X791aba", "https://tec.openplanner.team/stops/X791abb"], ["https://tec.openplanner.team/stops/Ldimont1", "https://tec.openplanner.team/stops/Ldimont2"], ["https://tec.openplanner.team/stops/LSNness1", "https://tec.openplanner.team/stops/LSNness2"], ["https://tec.openplanner.team/stops/X663ahc", "https://tec.openplanner.team/stops/X663aia"], ["https://tec.openplanner.team/stops/LAmshel2", "https://tec.openplanner.team/stops/LNHbarr2"], ["https://tec.openplanner.team/stops/LJAferm2", "https://tec.openplanner.team/stops/LJAmari2"], ["https://tec.openplanner.team/stops/Cnafont1", "https://tec.openplanner.team/stops/Cnalava4"], ["https://tec.openplanner.team/stops/N511aib", "https://tec.openplanner.team/stops/N511asa"], ["https://tec.openplanner.team/stops/N988aaa", "https://tec.openplanner.team/stops/X989afa"], ["https://tec.openplanner.team/stops/Cgymetr1", "https://tec.openplanner.team/stops/CMgill1"], ["https://tec.openplanner.team/stops/H4bf107b", "https://tec.openplanner.team/stops/H4pi135b"], ["https://tec.openplanner.team/stops/Lsmlina2", "https://tec.openplanner.team/stops/Lsmnico2"], ["https://tec.openplanner.team/stops/Lchacie2", "https://tec.openplanner.team/stops/Lwakipe2"], ["https://tec.openplanner.team/stops/LBzvill1", "https://tec.openplanner.team/stops/LVBcarr1"], ["https://tec.openplanner.team/stops/H5qu154a", "https://tec.openplanner.team/stops/H5qu154b"], ["https://tec.openplanner.team/stops/H4ga155a", "https://tec.openplanner.team/stops/H4ga168b"], ["https://tec.openplanner.team/stops/H1eo105a", "https://tec.openplanner.team/stops/H1eo105b"], ["https://tec.openplanner.team/stops/LAUberg2", "https://tec.openplanner.team/stops/LAUcose2"], ["https://tec.openplanner.team/stops/H1qu119a", "https://tec.openplanner.team/stops/H1wa132b"], ["https://tec.openplanner.team/stops/Canplal2", "https://tec.openplanner.team/stops/H2an111a"], ["https://tec.openplanner.team/stops/X993aea", "https://tec.openplanner.team/stops/X993agb"], ["https://tec.openplanner.team/stops/Bbstcha2", "https://tec.openplanner.team/stops/Bbstpan1"], ["https://tec.openplanner.team/stops/LNCsera2", "https://tec.openplanner.team/stops/LPLc49-1"], ["https://tec.openplanner.team/stops/Btlbtho1", "https://tec.openplanner.team/stops/Btlbtho2"], ["https://tec.openplanner.team/stops/X907aha", "https://tec.openplanner.team/stops/X907ahb"], ["https://tec.openplanner.team/stops/N531aba", "https://tec.openplanner.team/stops/N576ala"], ["https://tec.openplanner.team/stops/LnEfrie2", "https://tec.openplanner.team/stops/LnEkirc3"], ["https://tec.openplanner.team/stops/X361aca", "https://tec.openplanner.team/stops/X371ajb"], ["https://tec.openplanner.team/stops/H5rx136a", "https://tec.openplanner.team/stops/H5rx138a"], ["https://tec.openplanner.team/stops/LHFappe4", "https://tec.openplanner.team/stops/LVEroum1"], ["https://tec.openplanner.team/stops/N533amb", "https://tec.openplanner.team/stops/N533ana"], ["https://tec.openplanner.team/stops/Loucham1", "https://tec.openplanner.team/stops/Lougare3"], ["https://tec.openplanner.team/stops/X723ahb", "https://tec.openplanner.team/stops/X723ama"], ["https://tec.openplanner.team/stops/H2hg149a", "https://tec.openplanner.team/stops/H2mi122a"], ["https://tec.openplanner.team/stops/LHMsipp1", "https://tec.openplanner.team/stops/LSItert1"], ["https://tec.openplanner.team/stops/LoDcorn1", "https://tec.openplanner.team/stops/LoDschu2"], ["https://tec.openplanner.team/stops/N217aaa", "https://tec.openplanner.team/stops/N217aab"], ["https://tec.openplanner.team/stops/H4gr108a", "https://tec.openplanner.team/stops/H4gr108b"], ["https://tec.openplanner.team/stops/X601avb", "https://tec.openplanner.team/stops/X601awb"], ["https://tec.openplanner.team/stops/Causart1", "https://tec.openplanner.team/stops/N543avg"], ["https://tec.openplanner.team/stops/LHTcerc1", "https://tec.openplanner.team/stops/LHTcerc4"], ["https://tec.openplanner.team/stops/H1hq124a", "https://tec.openplanner.team/stops/H1hq126b"], ["https://tec.openplanner.team/stops/LGlbour2", "https://tec.openplanner.team/stops/LGlwarf2"], ["https://tec.openplanner.team/stops/Cmogrbu1", "https://tec.openplanner.team/stops/Cmopn4"], ["https://tec.openplanner.team/stops/N235aaa", "https://tec.openplanner.team/stops/N236amb"], ["https://tec.openplanner.team/stops/Ljudeme2", "https://tec.openplanner.team/stops/Ljuinte2"], ["https://tec.openplanner.team/stops/LHHcite1", "https://tec.openplanner.team/stops/LSG111-2"], ["https://tec.openplanner.team/stops/Lagmair4", "https://tec.openplanner.team/stops/Lkiecol2"], ["https://tec.openplanner.team/stops/N564aea", "https://tec.openplanner.team/stops/N564aeb"], ["https://tec.openplanner.team/stops/N503aib", "https://tec.openplanner.team/stops/N503ajb"], ["https://tec.openplanner.team/stops/X663akb", "https://tec.openplanner.team/stops/X663ama"], ["https://tec.openplanner.team/stops/Ccoconf2", "https://tec.openplanner.team/stops/Ccocorb2"], ["https://tec.openplanner.team/stops/X684aaa", "https://tec.openplanner.team/stops/X688aaa"], ["https://tec.openplanner.team/stops/Lfhcime1", "https://tec.openplanner.team/stops/Lmlcite*"], ["https://tec.openplanner.team/stops/H1en104d", "https://tec.openplanner.team/stops/H1en106a"], ["https://tec.openplanner.team/stops/Lfhlons2", "https://tec.openplanner.team/stops/Lpomart2"], ["https://tec.openplanner.team/stops/Lmncasi1", "https://tec.openplanner.team/stops/Lmncasi2"], ["https://tec.openplanner.team/stops/Lsebrun4", "https://tec.openplanner.team/stops/Lsepuit2"], ["https://tec.openplanner.team/stops/LHUremy1", "https://tec.openplanner.team/stops/NL80aia"], ["https://tec.openplanner.team/stops/LeYfeld1", "https://tec.openplanner.team/stops/LeYroth2"], ["https://tec.openplanner.team/stops/Cmyedpa4", "https://tec.openplanner.team/stops/Cmygrbr3"], ["https://tec.openplanner.team/stops/LHUlebe3", "https://tec.openplanner.team/stops/LHUlebe4"], ["https://tec.openplanner.team/stops/Llglefe1", "https://tec.openplanner.team/stops/Llglimb2"], ["https://tec.openplanner.team/stops/Cldplac1", "https://tec.openplanner.team/stops/Cldplac2"], ["https://tec.openplanner.team/stops/X721aga", "https://tec.openplanner.team/stops/X721agb"], ["https://tec.openplanner.team/stops/Bbstbou2", "https://tec.openplanner.team/stops/Btancnd2"], ["https://tec.openplanner.team/stops/Bgnvdep2", "https://tec.openplanner.team/stops/Bgnvval2"], ["https://tec.openplanner.team/stops/H1wa149b", "https://tec.openplanner.team/stops/H1wa160b"], ["https://tec.openplanner.team/stops/LSZprie1", "https://tec.openplanner.team/stops/LSZptwa2"], ["https://tec.openplanner.team/stops/X744aba", "https://tec.openplanner.team/stops/X746aha"], ["https://tec.openplanner.team/stops/N551aca", "https://tec.openplanner.team/stops/N551alb"], ["https://tec.openplanner.team/stops/X307abb", "https://tec.openplanner.team/stops/X307acb"], ["https://tec.openplanner.team/stops/Bllnlb12", "https://tec.openplanner.team/stops/Bllnlb52"], ["https://tec.openplanner.team/stops/N211aza", "https://tec.openplanner.team/stops/N211azb"], ["https://tec.openplanner.team/stops/Cjuhopi2", "https://tec.openplanner.team/stops/Cjumade3"], ["https://tec.openplanner.team/stops/LBNeu711", "https://tec.openplanner.team/stops/LMemaza1"], ["https://tec.openplanner.team/stops/Lgrfass2", "https://tec.openplanner.team/stops/Lgrgoff2"], ["https://tec.openplanner.team/stops/Ljumart1", "https://tec.openplanner.team/stops/Ljuvert1"], ["https://tec.openplanner.team/stops/X770aga", "https://tec.openplanner.team/stops/X773ana"], ["https://tec.openplanner.team/stops/H4ld125b", "https://tec.openplanner.team/stops/H4to135b"], ["https://tec.openplanner.team/stops/Cstgare2", "https://tec.openplanner.team/stops/Cstvape1"], ["https://tec.openplanner.team/stops/H4ro154a", "https://tec.openplanner.team/stops/H4ro156a"], ["https://tec.openplanner.team/stops/Llivina1", "https://tec.openplanner.team/stops/Lvtchpl4"], ["https://tec.openplanner.team/stops/LOmpont1", "https://tec.openplanner.team/stops/LOmrela1"], ["https://tec.openplanner.team/stops/Bbxlfro1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/N506bob", "https://tec.openplanner.team/stops/N506bwb"], ["https://tec.openplanner.team/stops/H4og206b", "https://tec.openplanner.team/stops/H4og212b"], ["https://tec.openplanner.team/stops/N232aua", "https://tec.openplanner.team/stops/N232awb"], ["https://tec.openplanner.team/stops/H3so174a", "https://tec.openplanner.team/stops/H3so185a"], ["https://tec.openplanner.team/stops/Lbomidi2", "https://tec.openplanner.team/stops/Lbotilf1"], ["https://tec.openplanner.team/stops/H2ll192b", "https://tec.openplanner.team/stops/H2ll267b"], ["https://tec.openplanner.team/stops/X903aeb", "https://tec.openplanner.team/stops/X903agb"], ["https://tec.openplanner.team/stops/H4fa128a", "https://tec.openplanner.team/stops/H4ms146b"], ["https://tec.openplanner.team/stops/H4mv187a", "https://tec.openplanner.team/stops/H4mv187b"], ["https://tec.openplanner.team/stops/X877afa", "https://tec.openplanner.team/stops/X880ahb"], ["https://tec.openplanner.team/stops/X739aaa", "https://tec.openplanner.team/stops/X739abb"], ["https://tec.openplanner.team/stops/Bjodbat1", "https://tec.openplanner.team/stops/Bjodced2"], ["https://tec.openplanner.team/stops/Bblafrn1", "https://tec.openplanner.team/stops/Blilhay1"], ["https://tec.openplanner.team/stops/Bgnteco2", "https://tec.openplanner.team/stops/Bgntpos1"], ["https://tec.openplanner.team/stops/LWAchpg1", "https://tec.openplanner.team/stops/LWAmouh1"], ["https://tec.openplanner.team/stops/N524aca", "https://tec.openplanner.team/stops/N524adb"], ["https://tec.openplanner.team/stops/Ccybouc2", "https://tec.openplanner.team/stops/Ccygara1"], ["https://tec.openplanner.team/stops/H1wa146a", "https://tec.openplanner.team/stops/H1wa146b"], ["https://tec.openplanner.team/stops/LHZcime1", "https://tec.openplanner.team/stops/LVefont2"], ["https://tec.openplanner.team/stops/X626afb", "https://tec.openplanner.team/stops/X626aga"], ["https://tec.openplanner.team/stops/LDmcruc2", "https://tec.openplanner.team/stops/LDmdegi1"], ["https://tec.openplanner.team/stops/Ljubeyn1", "https://tec.openplanner.team/stops/Ljuroch2"], ["https://tec.openplanner.team/stops/Cmgbrou1", "https://tec.openplanner.team/stops/Cmgslo1"], ["https://tec.openplanner.team/stops/Lrcauto2", "https://tec.openplanner.team/stops/Lrcstad2"], ["https://tec.openplanner.team/stops/LCaalou2", "https://tec.openplanner.team/stops/Lmlrosa2"], ["https://tec.openplanner.team/stops/X826afa", "https://tec.openplanner.team/stops/X826agb"], ["https://tec.openplanner.team/stops/LATcorn2", "https://tec.openplanner.team/stops/LATmonu1"], ["https://tec.openplanner.team/stops/LLegare1", "https://tec.openplanner.team/stops/X547afb"], ["https://tec.openplanner.team/stops/N104aab", "https://tec.openplanner.team/stops/N104aac"], ["https://tec.openplanner.team/stops/Lghpara1", "https://tec.openplanner.team/stops/Lghwass2"], ["https://tec.openplanner.team/stops/X804ajb", "https://tec.openplanner.team/stops/X804aka"], ["https://tec.openplanner.team/stops/Cragoss2", "https://tec.openplanner.team/stops/Crapaep1"], ["https://tec.openplanner.team/stops/Bblafab2", "https://tec.openplanner.team/stops/Bblaqsj1"], ["https://tec.openplanner.team/stops/H1fv100a", "https://tec.openplanner.team/stops/H1fv103b"], ["https://tec.openplanner.team/stops/Lbbremy1", "https://tec.openplanner.team/stops/Lgrorch2"], ["https://tec.openplanner.team/stops/Lhrhurb1", "https://tec.openplanner.team/stops/Lhrhurb2"], ["https://tec.openplanner.team/stops/X602aaa", "https://tec.openplanner.team/stops/X633aab"], ["https://tec.openplanner.team/stops/X672agb", "https://tec.openplanner.team/stops/X672ahb"], ["https://tec.openplanner.team/stops/LCxbeau1", "https://tec.openplanner.team/stops/LHEpriv1"], ["https://tec.openplanner.team/stops/LBJlieg2", "https://tec.openplanner.team/stops/LMAhall2"], ["https://tec.openplanner.team/stops/X858ada", "https://tec.openplanner.team/stops/X858afa"], ["https://tec.openplanner.team/stops/Llxec--2", "https://tec.openplanner.team/stops/Lrafusi2"], ["https://tec.openplanner.team/stops/LEN101-1", "https://tec.openplanner.team/stops/LEN42--2"], ["https://tec.openplanner.team/stops/LHUaron1", "https://tec.openplanner.team/stops/NL80aha"], ["https://tec.openplanner.team/stops/Ldidefo2", "https://tec.openplanner.team/stops/Ldihusq1"], ["https://tec.openplanner.team/stops/N503abb", "https://tec.openplanner.team/stops/N503adb"], ["https://tec.openplanner.team/stops/LSPjoli1", "https://tec.openplanner.team/stops/LSPjoli2"], ["https://tec.openplanner.team/stops/Lpegole2", "https://tec.openplanner.team/stops/LWegdry1"], ["https://tec.openplanner.team/stops/X601cka", "https://tec.openplanner.team/stops/X601cub"], ["https://tec.openplanner.team/stops/H1ls105a", "https://tec.openplanner.team/stops/H1ls107a"], ["https://tec.openplanner.team/stops/N512aka", "https://tec.openplanner.team/stops/N512arb"], ["https://tec.openplanner.team/stops/X811aha", "https://tec.openplanner.team/stops/X811aja"], ["https://tec.openplanner.team/stops/Bgntffo1", "https://tec.openplanner.team/stops/Bsgebou1"], ["https://tec.openplanner.team/stops/LNEbo472", "https://tec.openplanner.team/stops/LSNfays1"], ["https://tec.openplanner.team/stops/X671aaa", "https://tec.openplanner.team/stops/X671aab"], ["https://tec.openplanner.team/stops/Lfhchaf4", "https://tec.openplanner.team/stops/Lfhgare1"], ["https://tec.openplanner.team/stops/N150aab", "https://tec.openplanner.team/stops/N150aba"], ["https://tec.openplanner.team/stops/N160afa", "https://tec.openplanner.team/stops/N160afb"], ["https://tec.openplanner.team/stops/N501bua", "https://tec.openplanner.team/stops/N501lqa"], ["https://tec.openplanner.team/stops/LATcham*", "https://tec.openplanner.team/stops/LVLeg--1"], ["https://tec.openplanner.team/stops/Cgyplst1", "https://tec.openplanner.team/stops/Cgyplst2"], ["https://tec.openplanner.team/stops/Bblapra1", "https://tec.openplanner.team/stops/Bwaunou2"], ["https://tec.openplanner.team/stops/LLUadze1", "https://tec.openplanner.team/stops/LLUtrol2"], ["https://tec.openplanner.team/stops/Cctathe1", "https://tec.openplanner.team/stops/Cctfaub1"], ["https://tec.openplanner.team/stops/LSWscie1", "https://tec.openplanner.team/stops/LSZroqu2"], ["https://tec.openplanner.team/stops/N552ada", "https://tec.openplanner.team/stops/N552adb"], ["https://tec.openplanner.team/stops/Bbeaneu4", "https://tec.openplanner.team/stops/Bmlnpab1"], ["https://tec.openplanner.team/stops/Blimch%C3%A21", "https://tec.openplanner.team/stops/Bottpry1"], ["https://tec.openplanner.team/stops/Cmg4bra1", "https://tec.openplanner.team/stops/Cmgarsi2"], ["https://tec.openplanner.team/stops/Lticime2", "https://tec.openplanner.team/stops/Ltimarq2"], ["https://tec.openplanner.team/stops/LlAdorf1", "https://tec.openplanner.team/stops/LmLbeil2"], ["https://tec.openplanner.team/stops/Bgoesch1", "https://tec.openplanner.team/stops/Bgoesch2"], ["https://tec.openplanner.team/stops/LBEoblu1", "https://tec.openplanner.team/stops/LBEoblu2"], ["https://tec.openplanner.team/stops/Bbrlpar1", "https://tec.openplanner.team/stops/Bbrlrph2"], ["https://tec.openplanner.team/stops/N512aic", "https://tec.openplanner.team/stops/NL57aeb"], ["https://tec.openplanner.team/stops/H1me113b", "https://tec.openplanner.team/stops/H1me117e"], ["https://tec.openplanner.team/stops/LFocent1", "https://tec.openplanner.team/stops/LFochap1"], ["https://tec.openplanner.team/stops/X397aab", "https://tec.openplanner.team/stops/X397aba"], ["https://tec.openplanner.team/stops/H1cu124a", "https://tec.openplanner.team/stops/H1cu124b"], ["https://tec.openplanner.team/stops/N564aab", "https://tec.openplanner.team/stops/N564adb"], ["https://tec.openplanner.team/stops/Bnilegl1", "https://tec.openplanner.team/stops/Bnilegl2"], ["https://tec.openplanner.team/stops/X561abb", "https://tec.openplanner.team/stops/X561abc"], ["https://tec.openplanner.team/stops/X922afa", "https://tec.openplanner.team/stops/X922afb"], ["https://tec.openplanner.team/stops/X715apb", "https://tec.openplanner.team/stops/X716aab"], ["https://tec.openplanner.team/stops/N544abc", "https://tec.openplanner.team/stops/N544afb"], ["https://tec.openplanner.team/stops/Llgmara1", "https://tec.openplanner.team/stops/Llgongr4"], ["https://tec.openplanner.team/stops/Laddelc1", "https://tec.openplanner.team/stops/Ladjuif1"], ["https://tec.openplanner.team/stops/N524aia", "https://tec.openplanner.team/stops/N524aid"], ["https://tec.openplanner.team/stops/Cjudaxi1", "https://tec.openplanner.team/stops/Cjudefi2"], ["https://tec.openplanner.team/stops/N211apa", "https://tec.openplanner.team/stops/N212agc"], ["https://tec.openplanner.team/stops/Cfocant2", "https://tec.openplanner.team/stops/Cfocorn2"], ["https://tec.openplanner.team/stops/N537aba", "https://tec.openplanner.team/stops/N537acb"], ["https://tec.openplanner.team/stops/N101aqb", "https://tec.openplanner.team/stops/N101aua"], ["https://tec.openplanner.team/stops/Canmonu1", "https://tec.openplanner.team/stops/Canplal1"], ["https://tec.openplanner.team/stops/Llgchat2", "https://tec.openplanner.team/stops/Ltibalt2"], ["https://tec.openplanner.team/stops/LBafagn1", "https://tec.openplanner.team/stops/LBalacr2"], ["https://tec.openplanner.team/stops/LBgbaga1", "https://tec.openplanner.team/stops/LBgbaga4"], ["https://tec.openplanner.team/stops/Bbuzeta1", "https://tec.openplanner.team/stops/Bbuzeta2"], ["https://tec.openplanner.team/stops/X805ahb", "https://tec.openplanner.team/stops/X807acb"], ["https://tec.openplanner.team/stops/Ctuhouz2", "https://tec.openplanner.team/stops/Cturoge2"], ["https://tec.openplanner.team/stops/LBvviem2", "https://tec.openplanner.team/stops/LVMchpl2"], ["https://tec.openplanner.team/stops/Lprcard1", "https://tec.openplanner.team/stops/Lprfoot2"], ["https://tec.openplanner.team/stops/Llmcomb1", "https://tec.openplanner.team/stops/Llmlaro1"], ["https://tec.openplanner.team/stops/H1ms267a", "https://tec.openplanner.team/stops/H1ms289a"], ["https://tec.openplanner.team/stops/LBHinva2", "https://tec.openplanner.team/stops/LMemaza2"], ["https://tec.openplanner.team/stops/Canboni1", "https://tec.openplanner.team/stops/Cfocobe1"], ["https://tec.openplanner.team/stops/LBahome1", "https://tec.openplanner.team/stops/LBamate1"], ["https://tec.openplanner.team/stops/Bbchdra2", "https://tec.openplanner.team/stops/Bbchmai2"], ["https://tec.openplanner.team/stops/Brixpbs2", "https://tec.openplanner.team/stops/Brsrber2"], ["https://tec.openplanner.team/stops/H1hv132a", "https://tec.openplanner.team/stops/H1hv136a"], ["https://tec.openplanner.team/stops/N229aia", "https://tec.openplanner.team/stops/N229aja"], ["https://tec.openplanner.team/stops/X621acb", "https://tec.openplanner.team/stops/X621adb"], ["https://tec.openplanner.team/stops/N305aba", "https://tec.openplanner.team/stops/N305acb"], ["https://tec.openplanner.team/stops/Bgdhbvu1", "https://tec.openplanner.team/stops/Bgdhmet1"], ["https://tec.openplanner.team/stops/Lmntast1", "https://tec.openplanner.team/stops/Lsmstad2"], ["https://tec.openplanner.team/stops/LJEchat1", "https://tec.openplanner.team/stops/LJEpaqu1"], ["https://tec.openplanner.team/stops/Bhoealt1", "https://tec.openplanner.team/stops/Bhoealt2"], ["https://tec.openplanner.team/stops/N357aaa", "https://tec.openplanner.team/stops/N357aeb"], ["https://tec.openplanner.team/stops/N202afa", "https://tec.openplanner.team/stops/N202afb"], ["https://tec.openplanner.team/stops/Lhrlaix1", "https://tec.openplanner.team/stops/Lhrlaix2"], ["https://tec.openplanner.team/stops/X659baa", "https://tec.openplanner.team/stops/X659bab"], ["https://tec.openplanner.team/stops/LPRbrou2", "https://tec.openplanner.team/stops/LPRmc--1"], ["https://tec.openplanner.team/stops/LSOvoie4", "https://tec.openplanner.team/stops/LXHadam2"], ["https://tec.openplanner.team/stops/LbOkalv2", "https://tec.openplanner.team/stops/LbOvith2"], ["https://tec.openplanner.team/stops/N251ada", "https://tec.openplanner.team/stops/N252aab"], ["https://tec.openplanner.team/stops/Bhaless1", "https://tec.openplanner.team/stops/Bhalvel1"], ["https://tec.openplanner.team/stops/Lhucime1", "https://tec.openplanner.team/stops/Lhueg--2"], ["https://tec.openplanner.team/stops/Ccobour1", "https://tec.openplanner.team/stops/Csochea1"], ["https://tec.openplanner.team/stops/H1cu108b", "https://tec.openplanner.team/stops/H1ms920a"], ["https://tec.openplanner.team/stops/LhGfrie1", "https://tec.openplanner.team/stops/LhGgeme2"], ["https://tec.openplanner.team/stops/Lvoeg--2", "https://tec.openplanner.team/stops/Lvoplac2"], ["https://tec.openplanner.team/stops/Llglimb2", "https://tec.openplanner.team/stops/Llgwild8"], ["https://tec.openplanner.team/stops/H4vx362b", "https://tec.openplanner.team/stops/H4vx364d"], ["https://tec.openplanner.team/stops/Bcseeco3", "https://tec.openplanner.team/stops/Bcsepes2"], ["https://tec.openplanner.team/stops/N535aaa", "https://tec.openplanner.team/stops/N535abb"], ["https://tec.openplanner.team/stops/X362aab", "https://tec.openplanner.team/stops/X362aca"], ["https://tec.openplanner.team/stops/LCscarr2", "https://tec.openplanner.team/stops/LCscarr4"], ["https://tec.openplanner.team/stops/Cfocant1", "https://tec.openplanner.team/stops/Cfopetr1"], ["https://tec.openplanner.team/stops/Bmrshan1", "https://tec.openplanner.team/stops/Bplnegl2"], ["https://tec.openplanner.team/stops/N501bbc", "https://tec.openplanner.team/stops/N501cya"], ["https://tec.openplanner.team/stops/Cfaplma1", "https://tec.openplanner.team/stops/Cfaplma2"], ["https://tec.openplanner.team/stops/X744aeb", "https://tec.openplanner.team/stops/X744afa"], ["https://tec.openplanner.team/stops/LHZ8mai1", "https://tec.openplanner.team/stops/LHZcouv2"], ["https://tec.openplanner.team/stops/LTecent1", "https://tec.openplanner.team/stops/LTecent3"], ["https://tec.openplanner.team/stops/H2ca105a", "https://tec.openplanner.team/stops/H2ca105b"], ["https://tec.openplanner.team/stops/LJAboli1", "https://tec.openplanner.team/stops/LJAherb4"], ["https://tec.openplanner.team/stops/LAuvill1", "https://tec.openplanner.team/stops/LWRchem2"], ["https://tec.openplanner.team/stops/H1ms250a", "https://tec.openplanner.team/stops/H1ms943a"], ["https://tec.openplanner.team/stops/Llgchev2", "https://tec.openplanner.team/stops/Llgmass2"], ["https://tec.openplanner.team/stops/X725aoa", "https://tec.openplanner.team/stops/X725aob"], ["https://tec.openplanner.team/stops/Bbldvaa2", "https://tec.openplanner.team/stops/Bhevwzw2"], ["https://tec.openplanner.team/stops/Bbgever1", "https://tec.openplanner.team/stops/Bbgever2"], ["https://tec.openplanner.team/stops/LSZarze1", "https://tec.openplanner.team/stops/LSZarze3"], ["https://tec.openplanner.team/stops/H3br112a", "https://tec.openplanner.team/stops/H3br122b"], ["https://tec.openplanner.team/stops/X824akb", "https://tec.openplanner.team/stops/X829aea"], ["https://tec.openplanner.team/stops/Bboupde1", "https://tec.openplanner.team/stops/Bboupde2"], ["https://tec.openplanner.team/stops/X669aaa", "https://tec.openplanner.team/stops/X669aca"], ["https://tec.openplanner.team/stops/X715ahb", "https://tec.openplanner.team/stops/X715aib"], ["https://tec.openplanner.team/stops/LPctrog2", "https://tec.openplanner.team/stops/LVPbleh2"], ["https://tec.openplanner.team/stops/N538amb", "https://tec.openplanner.team/stops/N538amd"], ["https://tec.openplanner.team/stops/X650aaa", "https://tec.openplanner.team/stops/X650abb"], ["https://tec.openplanner.team/stops/H4mo140a", "https://tec.openplanner.team/stops/H4mo140b"], ["https://tec.openplanner.team/stops/X801axb", "https://tec.openplanner.team/stops/X801ayb"], ["https://tec.openplanner.team/stops/Lfhtrxc*", "https://tec.openplanner.team/stops/Lfhtrxc1"], ["https://tec.openplanner.team/stops/N501hxy", "https://tec.openplanner.team/stops/N501ikb"], ["https://tec.openplanner.team/stops/N101aea", "https://tec.openplanner.team/stops/N147aba"], ["https://tec.openplanner.team/stops/LBIrout1", "https://tec.openplanner.team/stops/LVGeg--5"], ["https://tec.openplanner.team/stops/H4er121b", "https://tec.openplanner.team/stops/H4er125b"], ["https://tec.openplanner.team/stops/LEHmarc1", "https://tec.openplanner.team/stops/LRAgrot2"], ["https://tec.openplanner.team/stops/Lrolecl1", "https://tec.openplanner.team/stops/Lrovand1"], ["https://tec.openplanner.team/stops/X623aka", "https://tec.openplanner.team/stops/X623akb"], ["https://tec.openplanner.team/stops/N206abb", "https://tec.openplanner.team/stops/N206aca"], ["https://tec.openplanner.team/stops/Lfhcime1", "https://tec.openplanner.team/stops/Lfhmarn2"], ["https://tec.openplanner.team/stops/N505akb", "https://tec.openplanner.team/stops/N512awa"], ["https://tec.openplanner.team/stops/X839aea", "https://tec.openplanner.team/stops/X840abb"], ["https://tec.openplanner.team/stops/X759aaa", "https://tec.openplanner.team/stops/X759acb"], ["https://tec.openplanner.team/stops/Bbcoubo2", "https://tec.openplanner.team/stops/Bbcoubo3"], ["https://tec.openplanner.team/stops/X659aea", "https://tec.openplanner.team/stops/X659aqa"], ["https://tec.openplanner.team/stops/N501dia", "https://tec.openplanner.team/stops/N501jsb"], ["https://tec.openplanner.team/stops/N348aea", "https://tec.openplanner.team/stops/N351ara"], ["https://tec.openplanner.team/stops/Lhufays2", "https://tec.openplanner.team/stops/Lhuferm1"], ["https://tec.openplanner.team/stops/LLM4rou1", "https://tec.openplanner.team/stops/LLMfond2"], ["https://tec.openplanner.team/stops/H2ma206a", "https://tec.openplanner.team/stops/H2ma208a"], ["https://tec.openplanner.team/stops/Llgmean2", "https://tec.openplanner.team/stops/Llgptlo3"], ["https://tec.openplanner.team/stops/H2hg154e", "https://tec.openplanner.team/stops/H2hg154f"], ["https://tec.openplanner.team/stops/Cthathe2", "https://tec.openplanner.team/stops/Cthgend2"], ["https://tec.openplanner.team/stops/H4ka190a", "https://tec.openplanner.team/stops/H4ka421a"], ["https://tec.openplanner.team/stops/Ccogrbu2", "https://tec.openplanner.team/stops/Csograf1"], ["https://tec.openplanner.team/stops/H1en101b", "https://tec.openplanner.team/stops/H1mk115a"], ["https://tec.openplanner.team/stops/Bnetrbr1", "https://tec.openplanner.team/stops/Bnetrtb2"], ["https://tec.openplanner.team/stops/X625ada", "https://tec.openplanner.team/stops/X625agb"], ["https://tec.openplanner.team/stops/N501bxb", "https://tec.openplanner.team/stops/N501hfa"], ["https://tec.openplanner.team/stops/H4mt215a", "https://tec.openplanner.team/stops/H4mt219a"], ["https://tec.openplanner.team/stops/X953acb", "https://tec.openplanner.team/stops/X953ada"], ["https://tec.openplanner.team/stops/X662aea", "https://tec.openplanner.team/stops/X663aea"], ["https://tec.openplanner.team/stops/LLvferm2", "https://tec.openplanner.team/stops/LLvpost1"], ["https://tec.openplanner.team/stops/Cbfdufa1", "https://tec.openplanner.team/stops/Cbfdufa2"], ["https://tec.openplanner.team/stops/H2re165b", "https://tec.openplanner.team/stops/H2re167b"], ["https://tec.openplanner.team/stops/Brsga152", "https://tec.openplanner.team/stops/Brsggol1"], ["https://tec.openplanner.team/stops/N501ccb", "https://tec.openplanner.team/stops/N510abb"], ["https://tec.openplanner.team/stops/N232afb", "https://tec.openplanner.team/stops/N286aba"], ["https://tec.openplanner.team/stops/Bcrncjo2", "https://tec.openplanner.team/stops/N522aub"], ["https://tec.openplanner.team/stops/Lghcham1", "https://tec.openplanner.team/stops/Lghencl1"], ["https://tec.openplanner.team/stops/X637ajb", "https://tec.openplanner.team/stops/X638aoa"], ["https://tec.openplanner.team/stops/Lhrpaix1", "https://tec.openplanner.team/stops/Lhrpaix2"], ["https://tec.openplanner.team/stops/H4rc232c", "https://tec.openplanner.team/stops/H4rc234b"], ["https://tec.openplanner.team/stops/N390aaa", "https://tec.openplanner.team/stops/N390aab"], ["https://tec.openplanner.team/stops/X902aha", "https://tec.openplanner.team/stops/X999aba"], ["https://tec.openplanner.team/stops/H4pi133a", "https://tec.openplanner.team/stops/H4pi135a"], ["https://tec.openplanner.team/stops/LBImili1", "https://tec.openplanner.team/stops/LVevill1"], ["https://tec.openplanner.team/stops/Bgrhcen1", "https://tec.openplanner.team/stops/Bgrhpos1"], ["https://tec.openplanner.team/stops/Lsecoop2", "https://tec.openplanner.team/stops/Lseresi2"], ["https://tec.openplanner.team/stops/H4mo137a", "https://tec.openplanner.team/stops/H4mo170a"], ["https://tec.openplanner.team/stops/H1mb131b", "https://tec.openplanner.team/stops/H1mb137a"], ["https://tec.openplanner.team/stops/N308ama", "https://tec.openplanner.team/stops/X308akb"], ["https://tec.openplanner.team/stops/N116abb", "https://tec.openplanner.team/stops/N151aka"], ["https://tec.openplanner.team/stops/Bbgeegl1", "https://tec.openplanner.team/stops/Bbgevil2"], ["https://tec.openplanner.team/stops/X882ajb", "https://tec.openplanner.team/stops/X882akb"], ["https://tec.openplanner.team/stops/Cmaprov2", "https://tec.openplanner.team/stops/CMprov2"], ["https://tec.openplanner.team/stops/N501ffa", "https://tec.openplanner.team/stops/N501ffb"], ["https://tec.openplanner.team/stops/X601csb", "https://tec.openplanner.team/stops/X601ctb"], ["https://tec.openplanner.team/stops/Lsecoll1", "https://tec.openplanner.team/stops/Lsekubo4"], ["https://tec.openplanner.team/stops/X746ada", "https://tec.openplanner.team/stops/X749aea"], ["https://tec.openplanner.team/stops/H4ma399a", "https://tec.openplanner.team/stops/H4ma419a"], ["https://tec.openplanner.team/stops/X831aba", "https://tec.openplanner.team/stops/X831aca"], ["https://tec.openplanner.team/stops/X631aab", "https://tec.openplanner.team/stops/X631ada"], ["https://tec.openplanner.team/stops/Lhrsimo4", "https://tec.openplanner.team/stops/Lhrtunn2"], ["https://tec.openplanner.team/stops/LwSbrei1", "https://tec.openplanner.team/stops/LwSgeme2"], ["https://tec.openplanner.team/stops/LWOpier2", "https://tec.openplanner.team/stops/LWOunio1"], ["https://tec.openplanner.team/stops/Bsgimca1", "https://tec.openplanner.team/stops/Bsgimca2"], ["https://tec.openplanner.team/stops/N501eia", "https://tec.openplanner.team/stops/N501jra"], ["https://tec.openplanner.team/stops/X758aeb", "https://tec.openplanner.team/stops/X758afb"], ["https://tec.openplanner.team/stops/Cvlcen1", "https://tec.openplanner.team/stops/NH21acb"], ["https://tec.openplanner.team/stops/X639acb", "https://tec.openplanner.team/stops/X639ada"], ["https://tec.openplanner.team/stops/N547aba", "https://tec.openplanner.team/stops/N565akb"], ["https://tec.openplanner.team/stops/X756aca", "https://tec.openplanner.team/stops/X756adb"], ["https://tec.openplanner.team/stops/Lselibe2", "https://tec.openplanner.team/stops/Lseprog2"], ["https://tec.openplanner.team/stops/Llgsnap2", "https://tec.openplanner.team/stops/Llgwiar2"], ["https://tec.openplanner.team/stops/H5pe141a", "https://tec.openplanner.team/stops/H5pe145a"], ["https://tec.openplanner.team/stops/LPRbayb2", "https://tec.openplanner.team/stops/LTRchpl2"], ["https://tec.openplanner.team/stops/H4ir163a", "https://tec.openplanner.team/stops/H4to136a"], ["https://tec.openplanner.team/stops/N141alb", "https://tec.openplanner.team/stops/N143aca"], ["https://tec.openplanner.team/stops/Clgmaco1", "https://tec.openplanner.team/stops/Ctipoui2"], ["https://tec.openplanner.team/stops/Chhverr2", "https://tec.openplanner.team/stops/Cjxdesc2"], ["https://tec.openplanner.team/stops/X746acb", "https://tec.openplanner.team/stops/X746amb"], ["https://tec.openplanner.team/stops/Llgbaya1", "https://tec.openplanner.team/stops/Llgbaya2"], ["https://tec.openplanner.team/stops/X743aab", "https://tec.openplanner.team/stops/X756aab"], ["https://tec.openplanner.team/stops/X902aia", "https://tec.openplanner.team/stops/X992aba"], ["https://tec.openplanner.team/stops/Bvxgeta2", "https://tec.openplanner.team/stops/Bvxgpro2"], ["https://tec.openplanner.team/stops/Bixleix2", "https://tec.openplanner.team/stops/Bixlpat2"], ["https://tec.openplanner.team/stops/H1ms247b", "https://tec.openplanner.team/stops/H1ms360a"], ["https://tec.openplanner.team/stops/X837acb", "https://tec.openplanner.team/stops/X837ada"], ["https://tec.openplanner.team/stops/N135bfb", "https://tec.openplanner.team/stops/N135bga"], ["https://tec.openplanner.team/stops/Cmygbbo2", "https://tec.openplanner.team/stops/Cmygbbo3"], ["https://tec.openplanner.team/stops/Llxcite2", "https://tec.openplanner.team/stops/LLxcrem2"], ["https://tec.openplanner.team/stops/Bauddel2", "https://tec.openplanner.team/stops/Baudsju1"], ["https://tec.openplanner.team/stops/Btgregl1", "https://tec.openplanner.team/stops/Btgrpla1"], ["https://tec.openplanner.team/stops/X806abb", "https://tec.openplanner.team/stops/X806akc"], ["https://tec.openplanner.team/stops/X650aea", "https://tec.openplanner.team/stops/X650aia"], ["https://tec.openplanner.team/stops/H1hh109a", "https://tec.openplanner.team/stops/H1hh115b"], ["https://tec.openplanner.team/stops/N353aba", "https://tec.openplanner.team/stops/N353aea"], ["https://tec.openplanner.team/stops/H4hu114b", "https://tec.openplanner.team/stops/H4hu118a"], ["https://tec.openplanner.team/stops/N214aea", "https://tec.openplanner.team/stops/N214aec"], ["https://tec.openplanner.team/stops/Bneeblo1", "https://tec.openplanner.team/stops/Bneehou1"], ["https://tec.openplanner.team/stops/H4ga150b", "https://tec.openplanner.team/stops/H4ha167b"], ["https://tec.openplanner.team/stops/X982bmb", "https://tec.openplanner.team/stops/X982bna"], ["https://tec.openplanner.team/stops/LRRecsc*", "https://tec.openplanner.team/stops/LRReg--1"], ["https://tec.openplanner.team/stops/Lsecroi2", "https://tec.openplanner.team/stops/Lsepair4"], ["https://tec.openplanner.team/stops/LHGbeur1", "https://tec.openplanner.team/stops/LHGtige2"], ["https://tec.openplanner.team/stops/NL73adb", "https://tec.openplanner.team/stops/NL73aeb"], ["https://tec.openplanner.team/stops/Lgrfort1", "https://tec.openplanner.team/stops/Lgrmagd1"], ["https://tec.openplanner.team/stops/Blanmde2", "https://tec.openplanner.team/stops/Brach122"], ["https://tec.openplanner.team/stops/X734aib", "https://tec.openplanner.team/stops/X734aja"], ["https://tec.openplanner.team/stops/Lseaite2", "https://tec.openplanner.team/stops/Lsebico2"], ["https://tec.openplanner.team/stops/H4bd107b", "https://tec.openplanner.team/stops/H4bd108a"], ["https://tec.openplanner.team/stops/Cmabegh1", "https://tec.openplanner.team/stops/Cmabegh2"], ["https://tec.openplanner.team/stops/LwAkape2", "https://tec.openplanner.team/stops/LwAstum2"], ["https://tec.openplanner.team/stops/Bbiehec2", "https://tec.openplanner.team/stops/Bboncfv1"], ["https://tec.openplanner.team/stops/LLGramk1", "https://tec.openplanner.team/stops/LORvill3"], ["https://tec.openplanner.team/stops/N127aia", "https://tec.openplanner.team/stops/N134ala"], ["https://tec.openplanner.team/stops/Cpclarm1", "https://tec.openplanner.team/stops/Cpcndce1"], ["https://tec.openplanner.team/stops/Bllnchv2", "https://tec.openplanner.team/stops/Bllnfeq1"], ["https://tec.openplanner.team/stops/H1hl122a", "https://tec.openplanner.team/stops/H1hl122b"], ["https://tec.openplanner.team/stops/N203ada", "https://tec.openplanner.team/stops/N203adb"], ["https://tec.openplanner.team/stops/X802akb", "https://tec.openplanner.team/stops/X802ana"], ["https://tec.openplanner.team/stops/Bnivfra1", "https://tec.openplanner.team/stops/Bnivphs2"], ["https://tec.openplanner.team/stops/Cgogrco2", "https://tec.openplanner.team/stops/Cgostro2"], ["https://tec.openplanner.team/stops/N360aca", "https://tec.openplanner.team/stops/N360acc"], ["https://tec.openplanner.team/stops/X601cla", "https://tec.openplanner.team/stops/X601cna"], ["https://tec.openplanner.team/stops/N104afa", "https://tec.openplanner.team/stops/N118abb"], ["https://tec.openplanner.team/stops/H4ro156a", "https://tec.openplanner.team/stops/H4ro157a"], ["https://tec.openplanner.team/stops/X764ada", "https://tec.openplanner.team/stops/X764agb"], ["https://tec.openplanner.team/stops/N501fab", "https://tec.openplanner.team/stops/N501fsa"], ["https://tec.openplanner.team/stops/X715aea", "https://tec.openplanner.team/stops/X715apb"], ["https://tec.openplanner.team/stops/H1gi122a", "https://tec.openplanner.team/stops/H1gi122b"], ["https://tec.openplanner.team/stops/Bwatgar4", "https://tec.openplanner.team/stops/Bwattri1"], ["https://tec.openplanner.team/stops/X622adb", "https://tec.openplanner.team/stops/X622aeb"], ["https://tec.openplanner.team/stops/N145aia", "https://tec.openplanner.team/stops/N145aib"], ["https://tec.openplanner.team/stops/X608ada", "https://tec.openplanner.team/stops/X608apb"], ["https://tec.openplanner.team/stops/H4mo133a", "https://tec.openplanner.team/stops/H4mo175a"], ["https://tec.openplanner.team/stops/Ladarev2", "https://tec.openplanner.team/stops/Ladchat2"], ["https://tec.openplanner.team/stops/Cgpauln1", "https://tec.openplanner.team/stops/Cgpleco2"], ["https://tec.openplanner.team/stops/N532ama", "https://tec.openplanner.team/stops/N574aca"], ["https://tec.openplanner.team/stops/H4ty329b", "https://tec.openplanner.team/stops/H4ty345a"], ["https://tec.openplanner.team/stops/X674aaa", "https://tec.openplanner.team/stops/X820agd"], ["https://tec.openplanner.team/stops/LrD28--1", "https://tec.openplanner.team/stops/LrDhund1"], ["https://tec.openplanner.team/stops/X398aea", "https://tec.openplanner.team/stops/X398aia"], ["https://tec.openplanner.team/stops/X912aab", "https://tec.openplanner.team/stops/X912ala"], ["https://tec.openplanner.team/stops/N536afa", "https://tec.openplanner.team/stops/N536aqa"], ["https://tec.openplanner.team/stops/Cjubien1", "https://tec.openplanner.team/stops/Cjuvand1"], ["https://tec.openplanner.team/stops/N308ada", "https://tec.openplanner.team/stops/N308aob"], ["https://tec.openplanner.team/stops/N551aha", "https://tec.openplanner.team/stops/N552aca"], ["https://tec.openplanner.team/stops/H1ni318b", "https://tec.openplanner.team/stops/H1ni321b"], ["https://tec.openplanner.team/stops/Bbghgli1", "https://tec.openplanner.team/stops/Bbghsta3"], ["https://tec.openplanner.team/stops/LTecent2", "https://tec.openplanner.team/stops/LTestat2"], ["https://tec.openplanner.team/stops/H2hg154c", "https://tec.openplanner.team/stops/H3lr108b"], ["https://tec.openplanner.team/stops/N501gre", "https://tec.openplanner.team/stops/N501zda"], ["https://tec.openplanner.team/stops/X760acb", "https://tec.openplanner.team/stops/X786aha"], ["https://tec.openplanner.team/stops/H2fa112a", "https://tec.openplanner.team/stops/H2mg135b"], ["https://tec.openplanner.team/stops/Bcrncjo2", "https://tec.openplanner.team/stops/Bcrntru2"], ["https://tec.openplanner.team/stops/N506aqb", "https://tec.openplanner.team/stops/N506aza"], ["https://tec.openplanner.team/stops/X901aea", "https://tec.openplanner.team/stops/X901aeb"], ["https://tec.openplanner.team/stops/Becepco2", "https://tec.openplanner.team/stops/H2ec100a"], ["https://tec.openplanner.team/stops/NL76ana", "https://tec.openplanner.team/stops/NL76apa"], ["https://tec.openplanner.team/stops/Llgcrah2", "https://tec.openplanner.team/stops/Llgwild1"], ["https://tec.openplanner.team/stops/LRmha261", "https://tec.openplanner.team/stops/LRmhage7"], ["https://tec.openplanner.team/stops/Lghpero1", "https://tec.openplanner.team/stops/Lghremy2"], ["https://tec.openplanner.team/stops/Cauglac1", "https://tec.openplanner.team/stops/N543aub"], ["https://tec.openplanner.team/stops/LCEec--1", "https://tec.openplanner.team/stops/LCEhayo1"], ["https://tec.openplanner.team/stops/LSPastr2", "https://tec.openplanner.team/stops/LSPclai2"], ["https://tec.openplanner.team/stops/Cobmven2", "https://tec.openplanner.team/stops/Cpctrau2"], ["https://tec.openplanner.team/stops/X801bfa", "https://tec.openplanner.team/stops/X801ceb"], ["https://tec.openplanner.team/stops/Bcsemar2", "https://tec.openplanner.team/stops/Bsmgpla2"], ["https://tec.openplanner.team/stops/N521aha", "https://tec.openplanner.team/stops/N521ahb"], ["https://tec.openplanner.team/stops/X723ama", "https://tec.openplanner.team/stops/X723amb"], ["https://tec.openplanner.team/stops/Ccycont2", "https://tec.openplanner.team/stops/Crbegli1"], ["https://tec.openplanner.team/stops/N501csa", "https://tec.openplanner.team/stops/N501cta"], ["https://tec.openplanner.team/stops/X660adb", "https://tec.openplanner.team/stops/X660aeb"], ["https://tec.openplanner.team/stops/X713aea", "https://tec.openplanner.team/stops/X713aeb"], ["https://tec.openplanner.team/stops/N121ajb", "https://tec.openplanner.team/stops/N122ahb"], ["https://tec.openplanner.team/stops/Cjuchli2", "https://tec.openplanner.team/stops/Cjumall2"], ["https://tec.openplanner.team/stops/N511alc", "https://tec.openplanner.team/stops/N511ama"], ["https://tec.openplanner.team/stops/Lbhgare1", "https://tec.openplanner.team/stops/Lbhgare2"], ["https://tec.openplanner.team/stops/Lemarde1", "https://tec.openplanner.team/stops/Lemmusc1"], ["https://tec.openplanner.team/stops/X802ara", "https://tec.openplanner.team/stops/X802ata"], ["https://tec.openplanner.team/stops/N343aib", "https://tec.openplanner.team/stops/N343aob"], ["https://tec.openplanner.team/stops/LnEkirc1", "https://tec.openplanner.team/stops/LnEkirc4"], ["https://tec.openplanner.team/stops/Lveharm1", "https://tec.openplanner.team/stops/Lvexhav1"], ["https://tec.openplanner.team/stops/LaSbahn2", "https://tec.openplanner.team/stops/LaSkape1"], ["https://tec.openplanner.team/stops/H3so167a", "https://tec.openplanner.team/stops/H3so168a"], ["https://tec.openplanner.team/stops/H4ve132a", "https://tec.openplanner.team/stops/H4ve135b"], ["https://tec.openplanner.team/stops/H1gc123a", "https://tec.openplanner.team/stops/H1hy126a"], ["https://tec.openplanner.team/stops/H1eq115a", "https://tec.openplanner.team/stops/H1eq115b"], ["https://tec.openplanner.team/stops/Cflcarr1", "https://tec.openplanner.team/stops/Cflcarr2"], ["https://tec.openplanner.team/stops/LNCfawe2", "https://tec.openplanner.team/stops/LNCrami1"], ["https://tec.openplanner.team/stops/X891aaa", "https://tec.openplanner.team/stops/X891ada"], ["https://tec.openplanner.team/stops/X903adb", "https://tec.openplanner.team/stops/X992aba"], ["https://tec.openplanner.team/stops/Lbogonh4", "https://tec.openplanner.team/stops/Lbotilf1"], ["https://tec.openplanner.team/stops/H4ev119a", "https://tec.openplanner.team/stops/H4ln130b"], ["https://tec.openplanner.team/stops/X642aaa", "https://tec.openplanner.team/stops/X642aac"], ["https://tec.openplanner.team/stops/Cthegli2", "https://tec.openplanner.team/stops/Cthrlef1"], ["https://tec.openplanner.team/stops/H4ht172a", "https://tec.openplanner.team/stops/H4ht173a"], ["https://tec.openplanner.team/stops/N534bsb", "https://tec.openplanner.team/stops/N568aba"], ["https://tec.openplanner.team/stops/Lprhodi2", "https://tec.openplanner.team/stops/Lprtill2"], ["https://tec.openplanner.team/stops/LFCkett1", "https://tec.openplanner.team/stops/LFCvoer1"], ["https://tec.openplanner.team/stops/H1fr113b", "https://tec.openplanner.team/stops/H1sb144b"], ["https://tec.openplanner.team/stops/Btslegl1", "https://tec.openplanner.team/stops/Btslegl2"], ["https://tec.openplanner.team/stops/Cchbrou2", "https://tec.openplanner.team/stops/Cchdrai1"], ["https://tec.openplanner.team/stops/LeUgulc1", "https://tec.openplanner.team/stops/LeUhaag1"], ["https://tec.openplanner.team/stops/Clrcime2", "https://tec.openplanner.team/stops/Clrmarl2"], ["https://tec.openplanner.team/stops/Bbsgbos2", "https://tec.openplanner.team/stops/Bbsgfva2"], ["https://tec.openplanner.team/stops/Bbxltou1", "https://tec.openplanner.team/stops/Bleugar1"], ["https://tec.openplanner.team/stops/X763aea", "https://tec.openplanner.team/stops/X763aeb"], ["https://tec.openplanner.team/stops/LPLcarr4", "https://tec.openplanner.team/stops/LPLcroi2"], ["https://tec.openplanner.team/stops/N506ana", "https://tec.openplanner.team/stops/N537ala"], ["https://tec.openplanner.team/stops/H5pe150a", "https://tec.openplanner.team/stops/H5pe150b"], ["https://tec.openplanner.team/stops/H1ha194a", "https://tec.openplanner.team/stops/H1ha200b"], ["https://tec.openplanner.team/stops/H5fl102b", "https://tec.openplanner.team/stops/H5fl103a"], ["https://tec.openplanner.team/stops/X901aqb", "https://tec.openplanner.team/stops/X901aub"], ["https://tec.openplanner.team/stops/H4ef163a", "https://tec.openplanner.team/stops/H4hq130b"], ["https://tec.openplanner.team/stops/LWagare*", "https://tec.openplanner.team/stops/LWastei2"], ["https://tec.openplanner.team/stops/LlSbuch2", "https://tec.openplanner.team/stops/LlZkirc1"], ["https://tec.openplanner.team/stops/Lanothe2", "https://tec.openplanner.team/stops/Lrcchar2"], ["https://tec.openplanner.team/stops/X850aba", "https://tec.openplanner.team/stops/X850aib"], ["https://tec.openplanner.team/stops/N206ada", "https://tec.openplanner.team/stops/N220aca"], ["https://tec.openplanner.team/stops/Bbrlmez1", "https://tec.openplanner.team/stops/Buccmer1"], ["https://tec.openplanner.team/stops/X780aca", "https://tec.openplanner.team/stops/X780akb"], ["https://tec.openplanner.team/stops/N585aja", "https://tec.openplanner.team/stops/N585ajb"], ["https://tec.openplanner.team/stops/H2ha128b", "https://tec.openplanner.team/stops/H2ha142a"], ["https://tec.openplanner.team/stops/N506azb", "https://tec.openplanner.team/stops/N506bnb"], ["https://tec.openplanner.team/stops/LHolone1", "https://tec.openplanner.team/stops/LHolone2"], ["https://tec.openplanner.team/stops/X542aha", "https://tec.openplanner.team/stops/X542ahb"], ["https://tec.openplanner.team/stops/LaAhaup2", "https://tec.openplanner.team/stops/LaAmise1"], ["https://tec.openplanner.team/stops/LArmaro1", "https://tec.openplanner.team/stops/X548adb"], ["https://tec.openplanner.team/stops/H1fl141b", "https://tec.openplanner.team/stops/H1fl370a"], ["https://tec.openplanner.team/stops/N501cab", "https://tec.openplanner.team/stops/N502ada"], ["https://tec.openplanner.team/stops/LBivi--1", "https://tec.openplanner.team/stops/LHChaut5"], ["https://tec.openplanner.team/stops/Botteco1", "https://tec.openplanner.team/stops/Bottvtc2"], ["https://tec.openplanner.team/stops/N127aib", "https://tec.openplanner.team/stops/N127bba"], ["https://tec.openplanner.team/stops/N166ada", "https://tec.openplanner.team/stops/N166adb"], ["https://tec.openplanner.team/stops/X630ada", "https://tec.openplanner.team/stops/X638aea"], ["https://tec.openplanner.team/stops/Cctathe2", "https://tec.openplanner.team/stops/Cctcoll2"], ["https://tec.openplanner.team/stops/H1ho140a", "https://tec.openplanner.team/stops/H1wa162b"], ["https://tec.openplanner.team/stops/X908aia", "https://tec.openplanner.team/stops/X908aja"], ["https://tec.openplanner.team/stops/H1ms292a", "https://tec.openplanner.team/stops/H1ms914a"], ["https://tec.openplanner.team/stops/Lroboeg2", "https://tec.openplanner.team/stops/Lrocort1"], ["https://tec.openplanner.team/stops/LLrbecc2", "https://tec.openplanner.team/stops/LLrlour1"], ["https://tec.openplanner.team/stops/X801aub", "https://tec.openplanner.team/stops/X801cna"], ["https://tec.openplanner.team/stops/LSPherd1", "https://tec.openplanner.team/stops/LSPvigi1"], ["https://tec.openplanner.team/stops/N501fla", "https://tec.openplanner.team/stops/N501lwb"], ["https://tec.openplanner.team/stops/LGegrun1", "https://tec.openplanner.team/stops/LVkinst2"], ["https://tec.openplanner.team/stops/Landeja1", "https://tec.openplanner.team/stops/Lanmouf1"], ["https://tec.openplanner.team/stops/Csbberg1", "https://tec.openplanner.team/stops/H1bi101a"], ["https://tec.openplanner.team/stops/H1hv131a", "https://tec.openplanner.team/stops/H1hv131b"], ["https://tec.openplanner.team/stops/N573aob", "https://tec.openplanner.team/stops/N573arb"], ["https://tec.openplanner.team/stops/H2hp119a", "https://tec.openplanner.team/stops/H2hp119b"], ["https://tec.openplanner.team/stops/X672aea", "https://tec.openplanner.team/stops/X672aec"], ["https://tec.openplanner.team/stops/H4fr143b", "https://tec.openplanner.team/stops/H4rc232b"], ["https://tec.openplanner.team/stops/N501ixc", "https://tec.openplanner.team/stops/N501jib"], ["https://tec.openplanner.team/stops/LTNcarr2", "https://tec.openplanner.team/stops/LTNeau-1"], ["https://tec.openplanner.team/stops/N270abb", "https://tec.openplanner.team/stops/N270aca"], ["https://tec.openplanner.team/stops/LHGbeur4", "https://tec.openplanner.team/stops/LHGikea1"], ["https://tec.openplanner.team/stops/X901awb", "https://tec.openplanner.team/stops/X902bga"], ["https://tec.openplanner.team/stops/Bptrgri1", "https://tec.openplanner.team/stops/Bptrpla1"], ["https://tec.openplanner.team/stops/Canpeup1", "https://tec.openplanner.team/stops/Canrobe1"], ["https://tec.openplanner.team/stops/Chhprai2", "https://tec.openplanner.team/stops/Cmx3arb2"], ["https://tec.openplanner.team/stops/Cmecime1", "https://tec.openplanner.team/stops/Cmehels2"], ["https://tec.openplanner.team/stops/X361aab", "https://tec.openplanner.team/stops/X371aeb"], ["https://tec.openplanner.team/stops/Cjualed1", "https://tec.openplanner.team/stops/Cjucomb1"], ["https://tec.openplanner.team/stops/LsVgore1", "https://tec.openplanner.team/stops/LsVsage1"], ["https://tec.openplanner.team/stops/LVHcent1", "https://tec.openplanner.team/stops/LVHtill2"], ["https://tec.openplanner.team/stops/LOUvign1", "https://tec.openplanner.team/stops/Lvichpl2"], ["https://tec.openplanner.team/stops/Bdvmcbo1", "https://tec.openplanner.team/stops/Bdvmccu1"], ["https://tec.openplanner.team/stops/X307aca", "https://tec.openplanner.team/stops/X371aaa"], ["https://tec.openplanner.team/stops/NR21aja", "https://tec.openplanner.team/stops/NR21ajb"], ["https://tec.openplanner.team/stops/H4jm117a", "https://tec.openplanner.team/stops/H4jm117c"], ["https://tec.openplanner.team/stops/Lbocomm1", "https://tec.openplanner.team/stops/LTIsupe1"], ["https://tec.openplanner.team/stops/Bovehst1", "https://tec.openplanner.team/stops/Bovehst2"], ["https://tec.openplanner.team/stops/X636aqa", "https://tec.openplanner.team/stops/X636aqb"], ["https://tec.openplanner.team/stops/N127aba", "https://tec.openplanner.team/stops/N127bba"], ["https://tec.openplanner.team/stops/LPAeg--1", "https://tec.openplanner.team/stops/LPAeg--2"], ["https://tec.openplanner.team/stops/Bcsebde1", "https://tec.openplanner.team/stops/Bsmgmou2"], ["https://tec.openplanner.team/stops/Bwavgar2", "https://tec.openplanner.team/stops/Bwavgar5"], ["https://tec.openplanner.team/stops/LSLfler2", "https://tec.openplanner.team/stops/LSLhall*"], ["https://tec.openplanner.team/stops/Beclbar1", "https://tec.openplanner.team/stops/Beclbar2"], ["https://tec.openplanner.team/stops/N501ira", "https://tec.openplanner.team/stops/N501izb"], ["https://tec.openplanner.team/stops/X870aea", "https://tec.openplanner.team/stops/X882aga"], ["https://tec.openplanner.team/stops/H4ha168a", "https://tec.openplanner.team/stops/H4ha168b"], ["https://tec.openplanner.team/stops/LRuegli1", "https://tec.openplanner.team/stops/LSegott2"], ["https://tec.openplanner.team/stops/Cfvombo1", "https://tec.openplanner.team/stops/Cfvplac1"], ["https://tec.openplanner.team/stops/Bfelcen2", "https://tec.openplanner.team/stops/Bfelfde1"], ["https://tec.openplanner.team/stops/H2mo122c", "https://tec.openplanner.team/stops/H2mo122d"], ["https://tec.openplanner.team/stops/LBspiet1", "https://tec.openplanner.team/stops/LMHoha-2"], ["https://tec.openplanner.team/stops/LGLgeer2", "https://tec.openplanner.team/stops/LSLhall*"], ["https://tec.openplanner.team/stops/LMechpl2", "https://tec.openplanner.team/stops/LMeperk1"], ["https://tec.openplanner.team/stops/H4rx143b", "https://tec.openplanner.team/stops/H4rx175b"], ["https://tec.openplanner.team/stops/X681aeb", "https://tec.openplanner.team/stops/X685aia"], ["https://tec.openplanner.team/stops/LBmbara2", "https://tec.openplanner.team/stops/LHtdros2"], ["https://tec.openplanner.team/stops/X666aga", "https://tec.openplanner.team/stops/X666agb"], ["https://tec.openplanner.team/stops/H1qu119b", "https://tec.openplanner.team/stops/H1wa143a"], ["https://tec.openplanner.team/stops/Cmosaba1", "https://tec.openplanner.team/stops/Cmosaba4"], ["https://tec.openplanner.team/stops/N116aaa", "https://tec.openplanner.team/stops/N116aab"], ["https://tec.openplanner.team/stops/X811aqa", "https://tec.openplanner.team/stops/X811aqb"], ["https://tec.openplanner.team/stops/LMAgdfa1", "https://tec.openplanner.team/stops/LMAgdfa2"], ["https://tec.openplanner.team/stops/Bbuzcom1", "https://tec.openplanner.team/stops/Bbuztai1"], ["https://tec.openplanner.team/stops/N501hoa", "https://tec.openplanner.team/stops/N501hob"], ["https://tec.openplanner.team/stops/Bdvmc431", "https://tec.openplanner.team/stops/Bwavlon1"], ["https://tec.openplanner.team/stops/H1gr111b", "https://tec.openplanner.team/stops/H1hv136b"], ["https://tec.openplanner.team/stops/LBJplan2", "https://tec.openplanner.team/stops/LHcaube1"], ["https://tec.openplanner.team/stops/Llgbida1", "https://tec.openplanner.team/stops/Llghlau1"], ["https://tec.openplanner.team/stops/LHUneuv2", "https://tec.openplanner.team/stops/LHUpost2"], ["https://tec.openplanner.team/stops/H4lp121a", "https://tec.openplanner.team/stops/H4ma162a"], ["https://tec.openplanner.team/stops/Bllnfla1", "https://tec.openplanner.team/stops/Bwavcui1"], ["https://tec.openplanner.team/stops/Cchba01", "https://tec.openplanner.team/stops/Cchfort1"], ["https://tec.openplanner.team/stops/LAUbirv2", "https://tec.openplanner.team/stops/LHMgulp2"], ["https://tec.openplanner.team/stops/Lhecarc*", "https://tec.openplanner.team/stops/Lhecarc2"], ["https://tec.openplanner.team/stops/N525ada", "https://tec.openplanner.team/stops/N525bab"], ["https://tec.openplanner.team/stops/Bbrlpar1", "https://tec.openplanner.team/stops/Brsgter1"], ["https://tec.openplanner.team/stops/N232ana", "https://tec.openplanner.team/stops/N232bnb"], ["https://tec.openplanner.team/stops/Lhutann2", "https://tec.openplanner.team/stops/Lhuwaid2"], ["https://tec.openplanner.team/stops/H1ms253b", "https://tec.openplanner.team/stops/H1ms908a"], ["https://tec.openplanner.team/stops/H2sb236c", "https://tec.openplanner.team/stops/H2sb242b"], ["https://tec.openplanner.team/stops/H2ll181a", "https://tec.openplanner.team/stops/H2ll257b"], ["https://tec.openplanner.team/stops/LSZstoc2", "https://tec.openplanner.team/stops/LTgcime1"], ["https://tec.openplanner.team/stops/X608aha", "https://tec.openplanner.team/stops/X608aza"], ["https://tec.openplanner.team/stops/N120anb", "https://tec.openplanner.team/stops/N248aea"], ["https://tec.openplanner.team/stops/N212aha", "https://tec.openplanner.team/stops/N212ata"], ["https://tec.openplanner.team/stops/Lancolr2", "https://tec.openplanner.team/stops/Lanpisc1"], ["https://tec.openplanner.team/stops/LBLcalv1", "https://tec.openplanner.team/stops/LBLcalv3"], ["https://tec.openplanner.team/stops/Bwspmon1", "https://tec.openplanner.team/stops/Bwspmon3"], ["https://tec.openplanner.team/stops/H1fr116a", "https://tec.openplanner.team/stops/H1fr131a"], ["https://tec.openplanner.team/stops/Lsecoll1", "https://tec.openplanner.team/stops/Ltihala1"], ["https://tec.openplanner.team/stops/N538baa", "https://tec.openplanner.team/stops/N538bab"], ["https://tec.openplanner.team/stops/LON21--2", "https://tec.openplanner.team/stops/LONcroi1"], ["https://tec.openplanner.team/stops/Cfmpui81", "https://tec.openplanner.team/stops/Cfmpui82"], ["https://tec.openplanner.team/stops/N222ada", "https://tec.openplanner.team/stops/N222ayb"], ["https://tec.openplanner.team/stops/N304aaa", "https://tec.openplanner.team/stops/N315aab"], ["https://tec.openplanner.team/stops/LETeg--1", "https://tec.openplanner.team/stops/LETeg--2"], ["https://tec.openplanner.team/stops/Cravign1", "https://tec.openplanner.team/stops/Cravign4"], ["https://tec.openplanner.team/stops/Lflmaxi1", "https://tec.openplanner.team/stops/Lflmaxi2"], ["https://tec.openplanner.team/stops/X661aza", "https://tec.openplanner.team/stops/X661azb"], ["https://tec.openplanner.team/stops/H4we135a", "https://tec.openplanner.team/stops/H4we138a"], ["https://tec.openplanner.team/stops/Lkithie1", "https://tec.openplanner.team/stops/Lscatme1"], ["https://tec.openplanner.team/stops/X908aka", "https://tec.openplanner.team/stops/X910aja"], ["https://tec.openplanner.team/stops/H4bs110a", "https://tec.openplanner.team/stops/H4bs114a"], ["https://tec.openplanner.team/stops/X715aia", "https://tec.openplanner.team/stops/X715aja"], ["https://tec.openplanner.team/stops/Boppcar1", "https://tec.openplanner.team/stops/Boppcen3"], ["https://tec.openplanner.team/stops/LmImirf1", "https://tec.openplanner.team/stops/LmRh%C3%B6fe1"], ["https://tec.openplanner.team/stops/Bwatpas2", "https://tec.openplanner.team/stops/Bwatrsg2"], ["https://tec.openplanner.team/stops/LBgcroi1", "https://tec.openplanner.team/stops/LBgcroi5"], ["https://tec.openplanner.team/stops/X604acb", "https://tec.openplanner.team/stops/X604afd"], ["https://tec.openplanner.team/stops/LAUberg1", "https://tec.openplanner.team/stops/LAUberg2"], ["https://tec.openplanner.team/stops/Btubfab1", "https://tec.openplanner.team/stops/Btubfab2"], ["https://tec.openplanner.team/stops/Bohnmon2", "https://tec.openplanner.team/stops/Bohnrpl2"], ["https://tec.openplanner.team/stops/Llgabat1", "https://tec.openplanner.team/stops/Llginte1"], ["https://tec.openplanner.team/stops/Lbocruc1", "https://tec.openplanner.team/stops/Lbofrai1"], ["https://tec.openplanner.team/stops/Cdamest1", "https://tec.openplanner.team/stops/Cdametr1"], ["https://tec.openplanner.team/stops/Beclesp2", "https://tec.openplanner.team/stops/Beclpma2"], ["https://tec.openplanner.team/stops/Bwatcro2", "https://tec.openplanner.team/stops/Bwatifr2"], ["https://tec.openplanner.team/stops/LCxfawe1", "https://tec.openplanner.team/stops/LCxfawe2"], ["https://tec.openplanner.team/stops/Bincbbo1", "https://tec.openplanner.team/stops/Bincbbo2"], ["https://tec.openplanner.team/stops/X639aob", "https://tec.openplanner.team/stops/X639aoc"], ["https://tec.openplanner.team/stops/LPbpl--2", "https://tec.openplanner.team/stops/LPbtene1"], ["https://tec.openplanner.team/stops/H1au100b", "https://tec.openplanner.team/stops/H1on128b"], ["https://tec.openplanner.team/stops/Llgcock2", "https://tec.openplanner.team/stops/Llgrege2"], ["https://tec.openplanner.team/stops/X994aib", "https://tec.openplanner.team/stops/X994aja"], ["https://tec.openplanner.team/stops/H4bl104a", "https://tec.openplanner.team/stops/H4bl106b"], ["https://tec.openplanner.team/stops/X897aia", "https://tec.openplanner.team/stops/X897aja"], ["https://tec.openplanner.team/stops/X985ada", "https://tec.openplanner.team/stops/X985aha"], ["https://tec.openplanner.team/stops/X661anb", "https://tec.openplanner.team/stops/X661apa"], ["https://tec.openplanner.team/stops/LVMcent2", "https://tec.openplanner.team/stops/LVMchpl1"], ["https://tec.openplanner.team/stops/Bsomtpm1", "https://tec.openplanner.team/stops/N584aua"], ["https://tec.openplanner.team/stops/N569aja", "https://tec.openplanner.team/stops/N569ajb"], ["https://tec.openplanner.team/stops/Lbomidi1", "https://tec.openplanner.team/stops/LPLcarr2"], ["https://tec.openplanner.team/stops/X993adb", "https://tec.openplanner.team/stops/X993ajb"], ["https://tec.openplanner.team/stops/Blineco1", "https://tec.openplanner.team/stops/Blinhue1"], ["https://tec.openplanner.team/stops/N543axa", "https://tec.openplanner.team/stops/N543bka"], ["https://tec.openplanner.team/stops/X721agb", "https://tec.openplanner.team/stops/X721aja"], ["https://tec.openplanner.team/stops/Llgcham3", "https://tec.openplanner.team/stops/Llgrema2"], ["https://tec.openplanner.team/stops/LRMeg--1", "https://tec.openplanner.team/stops/X595agb"], ["https://tec.openplanner.team/stops/Lgrbill2", "https://tec.openplanner.team/stops/Lgrlimi4"], ["https://tec.openplanner.team/stops/LCShoux2", "https://tec.openplanner.team/stops/LCSmagn1"], ["https://tec.openplanner.team/stops/X921aba", "https://tec.openplanner.team/stops/X921afb"], ["https://tec.openplanner.team/stops/X898afa", "https://tec.openplanner.team/stops/X898aka"], ["https://tec.openplanner.team/stops/Llgbuis1", "https://tec.openplanner.team/stops/Lsccime1"], ["https://tec.openplanner.team/stops/H2sb224a", "https://tec.openplanner.team/stops/H2sb243d"], ["https://tec.openplanner.team/stops/X760aca", "https://tec.openplanner.team/stops/X760ada"], ["https://tec.openplanner.team/stops/N338afb", "https://tec.openplanner.team/stops/N338aga"], ["https://tec.openplanner.team/stops/LATcham*", "https://tec.openplanner.team/stops/LATlena2"], ["https://tec.openplanner.team/stops/Bbgelre1", "https://tec.openplanner.team/stops/Bwavche1"], ["https://tec.openplanner.team/stops/X939aaa", "https://tec.openplanner.team/stops/X940aec"], ["https://tec.openplanner.team/stops/Lghleon1", "https://tec.openplanner.team/stops/Lghpier1"], ["https://tec.openplanner.team/stops/LMHtill2", "https://tec.openplanner.team/stops/NL73aea"], ["https://tec.openplanner.team/stops/Bbeubos1", "https://tec.openplanner.team/stops/N541adb"], ["https://tec.openplanner.team/stops/Bcrnpla4", "https://tec.openplanner.team/stops/Bcrnvic2"], ["https://tec.openplanner.team/stops/Bboutry1", "https://tec.openplanner.team/stops/Bcsgres1"], ["https://tec.openplanner.team/stops/X601bbd", "https://tec.openplanner.team/stops/X601bcb"], ["https://tec.openplanner.team/stops/X636aga", "https://tec.openplanner.team/stops/X636baa"], ["https://tec.openplanner.team/stops/Brsggea1", "https://tec.openplanner.team/stops/Brsgtou2"], ["https://tec.openplanner.team/stops/Ctrecol1", "https://tec.openplanner.team/stops/Ctrvert2"], ["https://tec.openplanner.team/stops/LSokrin1", "https://tec.openplanner.team/stops/LSokrin2"], ["https://tec.openplanner.team/stops/X902aga", "https://tec.openplanner.team/stops/X902agb"], ["https://tec.openplanner.team/stops/LeUkabe1", "https://tec.openplanner.team/stops/LeUmalm1"], ["https://tec.openplanner.team/stops/X616aaa", "https://tec.openplanner.team/stops/X616ahb"], ["https://tec.openplanner.team/stops/LJAbell1", "https://tec.openplanner.team/stops/LJAferm1"], ["https://tec.openplanner.team/stops/Lenhosp2", "https://tec.openplanner.team/stops/Lenmare1"], ["https://tec.openplanner.team/stops/Bgrmfga2", "https://tec.openplanner.team/stops/N522aub"], ["https://tec.openplanner.team/stops/LFmcarr2", "https://tec.openplanner.team/stops/LKmdrie1"], ["https://tec.openplanner.team/stops/LHNhall3", "https://tec.openplanner.team/stops/LHNhv--1"], ["https://tec.openplanner.team/stops/H1bx105a", "https://tec.openplanner.team/stops/H1qv111b"], ["https://tec.openplanner.team/stops/H2re163b", "https://tec.openplanner.team/stops/H2re174a"], ["https://tec.openplanner.team/stops/Blhumpo4", "https://tec.openplanner.team/stops/Blhutco2"], ["https://tec.openplanner.team/stops/X641aha", "https://tec.openplanner.team/stops/X641aib"], ["https://tec.openplanner.team/stops/H1qu119a", "https://tec.openplanner.team/stops/H1wa150a"], ["https://tec.openplanner.team/stops/Cthalli2", "https://tec.openplanner.team/stops/Cthgend1"], ["https://tec.openplanner.team/stops/LFEn6--1", "https://tec.openplanner.team/stops/X597aob"], ["https://tec.openplanner.team/stops/Lhucime1", "https://tec.openplanner.team/stops/Lvewaut2"], ["https://tec.openplanner.team/stops/X767aab", "https://tec.openplanner.team/stops/X768aab"], ["https://tec.openplanner.team/stops/LWZponb1", "https://tec.openplanner.team/stops/LWZponh1"], ["https://tec.openplanner.team/stops/LaAelis2", "https://tec.openplanner.team/stops/LaAhaup1"], ["https://tec.openplanner.team/stops/LMgberw1", "https://tec.openplanner.team/stops/LMgberw2"], ["https://tec.openplanner.team/stops/H4bc102a", "https://tec.openplanner.team/stops/H4bc102b"], ["https://tec.openplanner.team/stops/N501bja", "https://tec.openplanner.team/stops/N501bjy"], ["https://tec.openplanner.team/stops/LKmcabi2", "https://tec.openplanner.team/stops/LKmmelo1"], ["https://tec.openplanner.team/stops/H4my123a", "https://tec.openplanner.team/stops/H4pe125b"], ["https://tec.openplanner.team/stops/LSJeg--1", "https://tec.openplanner.team/stops/LSJeg--2"], ["https://tec.openplanner.team/stops/LHMbelv1", "https://tec.openplanner.team/stops/LHMec--1"], ["https://tec.openplanner.team/stops/X633aea", "https://tec.openplanner.team/stops/X633agb"], ["https://tec.openplanner.team/stops/Cgxalli1", "https://tec.openplanner.team/stops/Cgxprad2"], ["https://tec.openplanner.team/stops/X770aeb", "https://tec.openplanner.team/stops/X770afa"], ["https://tec.openplanner.team/stops/H4be146a", "https://tec.openplanner.team/stops/H4be146b"], ["https://tec.openplanner.team/stops/LHCbran1", "https://tec.openplanner.team/stops/LHCruyf2"], ["https://tec.openplanner.team/stops/LLWpier1", "https://tec.openplanner.team/stops/LLWpier2"], ["https://tec.openplanner.team/stops/X601bjb", "https://tec.openplanner.team/stops/X601ctb"], ["https://tec.openplanner.team/stops/N230ajb", "https://tec.openplanner.team/stops/N233aaa"], ["https://tec.openplanner.team/stops/X654aea", "https://tec.openplanner.team/stops/X654agb"], ["https://tec.openplanner.team/stops/LnIkirc2", "https://tec.openplanner.team/stops/LnIschw2"], ["https://tec.openplanner.team/stops/X747ada", "https://tec.openplanner.team/stops/X747aea"], ["https://tec.openplanner.team/stops/Cmybefe2", "https://tec.openplanner.team/stops/Cmycime1"], ["https://tec.openplanner.team/stops/Crbecol2", "https://tec.openplanner.team/stops/Crbegli2"], ["https://tec.openplanner.team/stops/LPcforg2", "https://tec.openplanner.team/stops/LPctrog1"], ["https://tec.openplanner.team/stops/LHrbast1", "https://tec.openplanner.team/stops/LSfcoll*"], ["https://tec.openplanner.team/stops/LsHkirc1", "https://tec.openplanner.team/stops/LsHkirc2"], ["https://tec.openplanner.team/stops/X621aba", "https://tec.openplanner.team/stops/X621aca"], ["https://tec.openplanner.team/stops/N251aba", "https://tec.openplanner.team/stops/N251ada"], ["https://tec.openplanner.team/stops/Cjudewe2", "https://tec.openplanner.team/stops/Clodrio2"], ["https://tec.openplanner.team/stops/H2hg145a", "https://tec.openplanner.team/stops/H2hg145b"], ["https://tec.openplanner.team/stops/N540aja", "https://tec.openplanner.team/stops/N540ajb"], ["https://tec.openplanner.team/stops/Bsgibla2", "https://tec.openplanner.team/stops/Bsgicfo1"], ["https://tec.openplanner.team/stops/LTaeg--2", "https://tec.openplanner.team/stops/LTatult2"], ["https://tec.openplanner.team/stops/LPoxhav1", "https://tec.openplanner.team/stops/LPoxhav2"], ["https://tec.openplanner.team/stops/N141ajb", "https://tec.openplanner.team/stops/N141ala"], ["https://tec.openplanner.team/stops/Bsgeqpb1", "https://tec.openplanner.team/stops/Bsgeqpb2"], ["https://tec.openplanner.team/stops/N117aga", "https://tec.openplanner.team/stops/N163aba"], ["https://tec.openplanner.team/stops/H2ma264a", "https://tec.openplanner.team/stops/H2ma265a"], ["https://tec.openplanner.team/stops/Cjudefi2", "https://tec.openplanner.team/stops/Cjutrou1"], ["https://tec.openplanner.team/stops/N151aab", "https://tec.openplanner.team/stops/N151aia"], ["https://tec.openplanner.team/stops/LHUdeni2", "https://tec.openplanner.team/stops/LHUdeni3"], ["https://tec.openplanner.team/stops/Bwatfau1", "https://tec.openplanner.team/stops/Bwatfau2"], ["https://tec.openplanner.team/stops/Lvegera2", "https://tec.openplanner.team/stops/Lveleje2"], ["https://tec.openplanner.team/stops/LHNhv--1", "https://tec.openplanner.team/stops/LHNtill1"], ["https://tec.openplanner.team/stops/H1mk107a", "https://tec.openplanner.team/stops/H1mk123a"], ["https://tec.openplanner.team/stops/N101aaa", "https://tec.openplanner.team/stops/N118ala"], ["https://tec.openplanner.team/stops/LSIgera1", "https://tec.openplanner.team/stops/LSIgera2"], ["https://tec.openplanner.team/stops/LSTchef1", "https://tec.openplanner.team/stops/LSTvaul2"], ["https://tec.openplanner.team/stops/Bwspcar1", "https://tec.openplanner.team/stops/Bwspjon2"], ["https://tec.openplanner.team/stops/Bbiepre1", "https://tec.openplanner.team/stops/Bbiepre2"], ["https://tec.openplanner.team/stops/Bhevjac2", "https://tec.openplanner.team/stops/Bhevjal2"], ["https://tec.openplanner.team/stops/LrEkais2", "https://tec.openplanner.team/stops/LrErauw1"], ["https://tec.openplanner.team/stops/N542apb", "https://tec.openplanner.team/stops/N542aqa"], ["https://tec.openplanner.team/stops/Cciqueu1", "https://tec.openplanner.team/stops/Clvchen2"], ["https://tec.openplanner.team/stops/Bcrncjo1", "https://tec.openplanner.team/stops/Bgrmfga2"], ["https://tec.openplanner.team/stops/Lghomni1", "https://tec.openplanner.team/stops/Lghomni2"], ["https://tec.openplanner.team/stops/LARparc2", "https://tec.openplanner.team/stops/LHAprei2"], ["https://tec.openplanner.team/stops/H1fy118a", "https://tec.openplanner.team/stops/H1wi150a"], ["https://tec.openplanner.team/stops/Buccbou2", "https://tec.openplanner.team/stops/Bucccre2"], ["https://tec.openplanner.team/stops/Cmtpaix2", "https://tec.openplanner.team/stops/Cmtpire2"], ["https://tec.openplanner.team/stops/N502aab", "https://tec.openplanner.team/stops/N502abb"], ["https://tec.openplanner.team/stops/Lghcise1", "https://tec.openplanner.team/stops/Lghmavi1"], ["https://tec.openplanner.team/stops/X657amb", "https://tec.openplanner.team/stops/X670aha"], ["https://tec.openplanner.team/stops/LLUcdoy2", "https://tec.openplanner.team/stops/LLUdoya2"], ["https://tec.openplanner.team/stops/Bgnpgen1", "https://tec.openplanner.team/stops/Bgnppem1"], ["https://tec.openplanner.team/stops/LFLcarr2", "https://tec.openplanner.team/stops/LMvrabo2"], ["https://tec.openplanner.team/stops/Lsnbrac4", "https://tec.openplanner.team/stops/Ltibure3"], ["https://tec.openplanner.team/stops/LTOeg--1", "https://tec.openplanner.team/stops/LTOeg--2"], ["https://tec.openplanner.team/stops/Ccofayt1", "https://tec.openplanner.team/stops/Ccomiau1"], ["https://tec.openplanner.team/stops/X633aab", "https://tec.openplanner.team/stops/X633aba"], ["https://tec.openplanner.team/stops/H1qu100b", "https://tec.openplanner.team/stops/H1qu116c"], ["https://tec.openplanner.team/stops/N118aea", "https://tec.openplanner.team/stops/N155aib"], ["https://tec.openplanner.team/stops/X766afb", "https://tec.openplanner.team/stops/X766aja"], ["https://tec.openplanner.team/stops/LCvneuv5", "https://tec.openplanner.team/stops/LWbregn2"], ["https://tec.openplanner.team/stops/LLSbajo2", "https://tec.openplanner.team/stops/LLStour1"], ["https://tec.openplanner.team/stops/N170aea", "https://tec.openplanner.team/stops/N571aab"], ["https://tec.openplanner.team/stops/LRfbeau1", "https://tec.openplanner.team/stops/LRffroi1"], ["https://tec.openplanner.team/stops/N507aic", "https://tec.openplanner.team/stops/N508aca"], ["https://tec.openplanner.team/stops/H4ka186a", "https://tec.openplanner.team/stops/H4mt218a"], ["https://tec.openplanner.team/stops/Bbstasa2", "https://tec.openplanner.team/stops/Bbstegl2"], ["https://tec.openplanner.team/stops/N508aja", "https://tec.openplanner.team/stops/N508ajd"], ["https://tec.openplanner.team/stops/Lwaaube2", "https://tec.openplanner.team/stops/Lwaeau-1"], ["https://tec.openplanner.team/stops/H1bg110b", "https://tec.openplanner.team/stops/H1hy128a"], ["https://tec.openplanner.team/stops/LCPcomp1", "https://tec.openplanner.team/stops/LGmhumb1"], ["https://tec.openplanner.team/stops/LhGcasi1", "https://tec.openplanner.team/stops/LkEbruc1"], ["https://tec.openplanner.team/stops/LHTbaud1", "https://tec.openplanner.team/stops/LHTdelh2"], ["https://tec.openplanner.team/stops/Cgdberl2", "https://tec.openplanner.team/stops/Cgdfras1"], ["https://tec.openplanner.team/stops/LaMthei1", "https://tec.openplanner.team/stops/LeIjoha1"], ["https://tec.openplanner.team/stops/LAWchpl2", "https://tec.openplanner.team/stops/LAWcite6"], ["https://tec.openplanner.team/stops/LOUchen2", "https://tec.openplanner.team/stops/LOUsorb2"], ["https://tec.openplanner.team/stops/N511aja", "https://tec.openplanner.team/stops/N511ajb"], ["https://tec.openplanner.team/stops/LSoprom1", "https://tec.openplanner.team/stops/LwYbrkr1"], ["https://tec.openplanner.team/stops/Lvimc--1", "https://tec.openplanner.team/stops/Lvitour1"], ["https://tec.openplanner.team/stops/LHUcomp1", "https://tec.openplanner.team/stops/LHUlebe0"], ["https://tec.openplanner.team/stops/X661bbb", "https://tec.openplanner.team/stops/X672ala"], ["https://tec.openplanner.team/stops/X940aea", "https://tec.openplanner.team/stops/X942acb"], ["https://tec.openplanner.team/stops/H4we135b", "https://tec.openplanner.team/stops/H4we137d"], ["https://tec.openplanner.team/stops/Bbeardu1", "https://tec.openplanner.team/stops/Bbearwa1"], ["https://tec.openplanner.team/stops/Bsjgegl1", "https://tec.openplanner.team/stops/Bzluegl2"], ["https://tec.openplanner.team/stops/LLxnive2", "https://tec.openplanner.team/stops/LWOwonc1"], ["https://tec.openplanner.team/stops/H1wi148a", "https://tec.openplanner.team/stops/H1wi148b"], ["https://tec.openplanner.team/stops/Bbosdra2", "https://tec.openplanner.team/stops/Btiegoo1"], ["https://tec.openplanner.team/stops/LbUhuge1", "https://tec.openplanner.team/stops/LbUkrei*"], ["https://tec.openplanner.team/stops/Llglema1", "https://tec.openplanner.team/stops/Llglema2"], ["https://tec.openplanner.team/stops/H1ha185a", "https://tec.openplanner.team/stops/H1ha189a"], ["https://tec.openplanner.team/stops/LOUvign1", "https://tec.openplanner.team/stops/Lvitour2"], ["https://tec.openplanner.team/stops/LPobois1", "https://tec.openplanner.team/stops/LTgsous1"], ["https://tec.openplanner.team/stops/X613aba", "https://tec.openplanner.team/stops/X613acb"], ["https://tec.openplanner.team/stops/Lflmaxi1", "https://tec.openplanner.team/stops/Lrecite2"], ["https://tec.openplanner.team/stops/X901baa", "https://tec.openplanner.team/stops/X942afb"], ["https://tec.openplanner.team/stops/H5is170b", "https://tec.openplanner.team/stops/H5la177a"], ["https://tec.openplanner.team/stops/N151aba", "https://tec.openplanner.team/stops/N152aaa"], ["https://tec.openplanner.team/stops/Bhalh312", "https://tec.openplanner.team/stops/Bhalrat1"], ["https://tec.openplanner.team/stops/Brsgepr2", "https://tec.openplanner.team/stops/Brsgges2"], ["https://tec.openplanner.team/stops/H4lu127a", "https://tec.openplanner.team/stops/H4mo142d"], ["https://tec.openplanner.team/stops/N501caa", "https://tec.openplanner.team/stops/N501cba"], ["https://tec.openplanner.team/stops/Cli4bra1", "https://tec.openplanner.team/stops/Cli4bra2"], ["https://tec.openplanner.team/stops/N539aja", "https://tec.openplanner.team/stops/N542aia"], ["https://tec.openplanner.team/stops/LEnvill1", "https://tec.openplanner.team/stops/LEnvill2"], ["https://tec.openplanner.team/stops/N528aua", "https://tec.openplanner.team/stops/N528aub"], ["https://tec.openplanner.team/stops/N542aha", "https://tec.openplanner.team/stops/N542ahb"], ["https://tec.openplanner.team/stops/Cfmgara1", "https://tec.openplanner.team/stops/Cfmwaut2"], ["https://tec.openplanner.team/stops/LbTmuhl1", "https://tec.openplanner.team/stops/LnIschw2"], ["https://tec.openplanner.team/stops/X723ahb", "https://tec.openplanner.team/stops/X775ama"], ["https://tec.openplanner.team/stops/X396aba", "https://tec.openplanner.team/stops/X396ada"], ["https://tec.openplanner.team/stops/H4ir164b", "https://tec.openplanner.team/stops/H4ir167a"], ["https://tec.openplanner.team/stops/N501fsa", "https://tec.openplanner.team/stops/N501fty"], ["https://tec.openplanner.team/stops/N533afb", "https://tec.openplanner.team/stops/N533aia"], ["https://tec.openplanner.team/stops/LDmdomm2", "https://tec.openplanner.team/stops/LDmwaef2"], ["https://tec.openplanner.team/stops/Lhufila2", "https://tec.openplanner.team/stops/Lmnrame1"], ["https://tec.openplanner.team/stops/Bjaugaz1", "https://tec.openplanner.team/stops/Bolphgr2"], ["https://tec.openplanner.team/stops/N550ama", "https://tec.openplanner.team/stops/N550amb"], ["https://tec.openplanner.team/stops/N501jeb", "https://tec.openplanner.team/stops/N501jkb"], ["https://tec.openplanner.team/stops/N513aoa", "https://tec.openplanner.team/stops/N513aob"], ["https://tec.openplanner.team/stops/LwAlont2", "https://tec.openplanner.team/stops/LwAprei1"], ["https://tec.openplanner.team/stops/Bsaumlk1", "https://tec.openplanner.team/stops/Bsaumlk4"], ["https://tec.openplanner.team/stops/N576aka", "https://tec.openplanner.team/stops/N576akc"], ["https://tec.openplanner.team/stops/H4te251b", "https://tec.openplanner.team/stops/H4te413a"], ["https://tec.openplanner.team/stops/LWAalou1", "https://tec.openplanner.team/stops/LWAwila1"], ["https://tec.openplanner.team/stops/X615aha", "https://tec.openplanner.team/stops/X615baa"], ["https://tec.openplanner.team/stops/Bneeblo2", "https://tec.openplanner.team/stops/Bneesjo2"], ["https://tec.openplanner.team/stops/H2le150a", "https://tec.openplanner.team/stops/H2le152b"], ["https://tec.openplanner.team/stops/N534bqa", "https://tec.openplanner.team/stops/N534bqb"], ["https://tec.openplanner.team/stops/X982bca", "https://tec.openplanner.team/stops/X982cbb"], ["https://tec.openplanner.team/stops/H4bw102b", "https://tec.openplanner.team/stops/H4wn131b"], ["https://tec.openplanner.team/stops/N311aec", "https://tec.openplanner.team/stops/N312aba"], ["https://tec.openplanner.team/stops/Bmrl4ch2", "https://tec.openplanner.team/stops/Bmrlnce2"], ["https://tec.openplanner.team/stops/Bsdavpe1", "https://tec.openplanner.team/stops/Csdnive4"], ["https://tec.openplanner.team/stops/N550aaa", "https://tec.openplanner.team/stops/N550anb"], ["https://tec.openplanner.team/stops/X661axb", "https://tec.openplanner.team/stops/X817aca"], ["https://tec.openplanner.team/stops/LXoroch1", "https://tec.openplanner.team/stops/LXoroch2"], ["https://tec.openplanner.team/stops/X657aba", "https://tec.openplanner.team/stops/X657aca"], ["https://tec.openplanner.team/stops/LBIvill2", "https://tec.openplanner.team/stops/LBIvill4"], ["https://tec.openplanner.team/stops/N117bda", "https://tec.openplanner.team/stops/N117bdc"], ["https://tec.openplanner.team/stops/Cfocmed1", "https://tec.openplanner.team/stops/Cfovent2"], ["https://tec.openplanner.team/stops/LHUloui2", "https://tec.openplanner.team/stops/LHUremy2"], ["https://tec.openplanner.team/stops/X902aeb", "https://tec.openplanner.team/stops/X902asa"], ["https://tec.openplanner.team/stops/Cvlcen1", "https://tec.openplanner.team/stops/Cvlpeau1"], ["https://tec.openplanner.team/stops/Cflcent2", "https://tec.openplanner.team/stops/Cflstan3"], ["https://tec.openplanner.team/stops/N540alb", "https://tec.openplanner.team/stops/N540aoa"], ["https://tec.openplanner.team/stops/Bsgimor1", "https://tec.openplanner.team/stops/Bsgipmo2"], ["https://tec.openplanner.team/stops/Bnivsto2", "https://tec.openplanner.team/stops/Bnivzep1"], ["https://tec.openplanner.team/stops/X731akb", "https://tec.openplanner.team/stops/X731ama"], ["https://tec.openplanner.team/stops/X614aca", "https://tec.openplanner.team/stops/X614acb"], ["https://tec.openplanner.team/stops/LCogara1", "https://tec.openplanner.team/stops/LTPsatr1"], ["https://tec.openplanner.team/stops/Bllnpaf2", "https://tec.openplanner.team/stops/Bllnpaf3"], ["https://tec.openplanner.team/stops/Bbryvil1", "https://tec.openplanner.team/stops/Bmarcat1"], ["https://tec.openplanner.team/stops/LMsvill1", "https://tec.openplanner.team/stops/LPbpeti1"], ["https://tec.openplanner.team/stops/H1wg126a", "https://tec.openplanner.team/stops/H1wg127b"], ["https://tec.openplanner.team/stops/LeYmero2", "https://tec.openplanner.team/stops/LkTweih2"], ["https://tec.openplanner.team/stops/LVLf10-2", "https://tec.openplanner.team/stops/LVLgotr1"], ["https://tec.openplanner.team/stops/Cctsncb2", "https://tec.openplanner.team/stops/Cctsncb4"], ["https://tec.openplanner.team/stops/H2ec101a", "https://tec.openplanner.team/stops/H2ec102a"], ["https://tec.openplanner.team/stops/X947abb", "https://tec.openplanner.team/stops/X948ahb"], ["https://tec.openplanner.team/stops/LWalyce1", "https://tec.openplanner.team/stops/LWapl--1"], ["https://tec.openplanner.team/stops/H1ms293a", "https://tec.openplanner.team/stops/H1ms923a"], ["https://tec.openplanner.team/stops/LLgmini1", "https://tec.openplanner.team/stops/LRCviad2"], ["https://tec.openplanner.team/stops/Cmlhotv1", "https://tec.openplanner.team/stops/Cmlvpla1"], ["https://tec.openplanner.team/stops/X824aac", "https://tec.openplanner.team/stops/X825aga"], ["https://tec.openplanner.team/stops/H2go114a", "https://tec.openplanner.team/stops/H2go119b"], ["https://tec.openplanner.team/stops/X734aaa", "https://tec.openplanner.team/stops/X734acb"], ["https://tec.openplanner.team/stops/LHAheml1", "https://tec.openplanner.team/stops/LHAlacr1"], ["https://tec.openplanner.team/stops/N520ada", "https://tec.openplanner.team/stops/N520adb"], ["https://tec.openplanner.team/stops/Clbptno1", "https://tec.openplanner.team/stops/Clbptno3"], ["https://tec.openplanner.team/stops/Lcegeor2", "https://tec.openplanner.team/stops/Lceleje1"], ["https://tec.openplanner.team/stops/Cdacolu2", "https://tec.openplanner.team/stops/Cdasama1"], ["https://tec.openplanner.team/stops/Btubeur1", "https://tec.openplanner.team/stops/Btubnco1"], ["https://tec.openplanner.team/stops/Llggcha4", "https://tec.openplanner.team/stops/Ltibalt2"], ["https://tec.openplanner.team/stops/H4fl115a", "https://tec.openplanner.team/stops/H4my120a"], ["https://tec.openplanner.team/stops/LVIhall2", "https://tec.openplanner.team/stops/LVItroi*"], ["https://tec.openplanner.team/stops/H1ne140b", "https://tec.openplanner.team/stops/H1ne144a"], ["https://tec.openplanner.team/stops/Lsercha1", "https://tec.openplanner.team/stops/Lseruis1"], ["https://tec.openplanner.team/stops/LCShoux2", "https://tec.openplanner.team/stops/LVTtrou1"], ["https://tec.openplanner.team/stops/LESflag1", "https://tec.openplanner.team/stops/LLNeg--1"], ["https://tec.openplanner.team/stops/LSkbo832", "https://tec.openplanner.team/stops/LSkcoin1"], ["https://tec.openplanner.team/stops/N201aib", "https://tec.openplanner.team/stops/N201aka"], ["https://tec.openplanner.team/stops/H4ty302a", "https://tec.openplanner.team/stops/H4ty323a"], ["https://tec.openplanner.team/stops/N501ggb", "https://tec.openplanner.team/stops/N501lqa"], ["https://tec.openplanner.team/stops/LLtrout2", "https://tec.openplanner.team/stops/NL57ahb"], ["https://tec.openplanner.team/stops/H1ba105b", "https://tec.openplanner.team/stops/H1ba112b"], ["https://tec.openplanner.team/stops/N538aga", "https://tec.openplanner.team/stops/N538agb"], ["https://tec.openplanner.team/stops/H1po135a", "https://tec.openplanner.team/stops/H1po135b"], ["https://tec.openplanner.team/stops/H1br128b", "https://tec.openplanner.team/stops/H1br132b"], ["https://tec.openplanner.team/stops/N525aba", "https://tec.openplanner.team/stops/N525aua"], ["https://tec.openplanner.team/stops/X923afb", "https://tec.openplanner.team/stops/X923aga"], ["https://tec.openplanner.team/stops/Landeja1", "https://tec.openplanner.team/stops/Lrcchar2"], ["https://tec.openplanner.team/stops/H4de113a", "https://tec.openplanner.team/stops/H4wt160b"], ["https://tec.openplanner.team/stops/X775aib", "https://tec.openplanner.team/stops/X775aid"], ["https://tec.openplanner.team/stops/X742aga", "https://tec.openplanner.team/stops/X742agb"], ["https://tec.openplanner.team/stops/X818apb", "https://tec.openplanner.team/stops/X818aqa"], ["https://tec.openplanner.team/stops/Cmmjami1", "https://tec.openplanner.team/stops/Cmmjami2"], ["https://tec.openplanner.team/stops/Llgbobu6", "https://tec.openplanner.team/stops/Lsnlibe1"], ["https://tec.openplanner.team/stops/N310ada", "https://tec.openplanner.team/stops/N310adb"], ["https://tec.openplanner.team/stops/LOLbout1", "https://tec.openplanner.team/stops/LOLcroi2"], ["https://tec.openplanner.team/stops/X793agb", "https://tec.openplanner.team/stops/X793ajb"], ["https://tec.openplanner.team/stops/Bolgfon2", "https://tec.openplanner.team/stops/Bolgrga1"], ["https://tec.openplanner.team/stops/N539ava", "https://tec.openplanner.team/stops/N539avb"], ["https://tec.openplanner.team/stops/H2ll196b", "https://tec.openplanner.team/stops/H2ll201a"], ["https://tec.openplanner.team/stops/Barqpla1", "https://tec.openplanner.team/stops/Barqpla2"], ["https://tec.openplanner.team/stops/Llgmako1", "https://tec.openplanner.team/stops/Llgmako2"], ["https://tec.openplanner.team/stops/Cobnive2", "https://tec.openplanner.team/stops/Creshau1"], ["https://tec.openplanner.team/stops/X804afb", "https://tec.openplanner.team/stops/X804ayb"], ["https://tec.openplanner.team/stops/LBhsign1", "https://tec.openplanner.team/stops/LMRmont2"], ["https://tec.openplanner.team/stops/LPLarbo1", "https://tec.openplanner.team/stops/LPLroth2"], ["https://tec.openplanner.team/stops/Bvirrbo1", "https://tec.openplanner.team/stops/Bvirrbo2"], ["https://tec.openplanner.team/stops/LhSfrep2", "https://tec.openplanner.team/stops/LhSgete1"], ["https://tec.openplanner.team/stops/H1an101a", "https://tec.openplanner.team/stops/H1bx104a"], ["https://tec.openplanner.team/stops/N584aba", "https://tec.openplanner.team/stops/N584aqa"], ["https://tec.openplanner.team/stops/N106akb", "https://tec.openplanner.team/stops/N137ajb"], ["https://tec.openplanner.team/stops/LkEl1212", "https://tec.openplanner.team/stops/LkEl3251"], ["https://tec.openplanner.team/stops/H2tz115a", "https://tec.openplanner.team/stops/H2tz117b"], ["https://tec.openplanner.team/stops/H4av105a", "https://tec.openplanner.team/stops/H4av107a"], ["https://tec.openplanner.team/stops/X782aga", "https://tec.openplanner.team/stops/X782aja"], ["https://tec.openplanner.team/stops/X999acc", "https://tec.openplanner.team/stops/X999ada"], ["https://tec.openplanner.team/stops/H1fr123a", "https://tec.openplanner.team/stops/H1fr123b"], ["https://tec.openplanner.team/stops/Ccoacar1", "https://tec.openplanner.team/stops/Ccotemp1"], ["https://tec.openplanner.team/stops/H4mv192a", "https://tec.openplanner.team/stops/H4mv192b"], ["https://tec.openplanner.team/stops/X641apa", "https://tec.openplanner.team/stops/X641aqa"], ["https://tec.openplanner.team/stops/Llglaha1", "https://tec.openplanner.team/stops/Llglys-1"], ["https://tec.openplanner.team/stops/X761ada", "https://tec.openplanner.team/stops/X790agb"], ["https://tec.openplanner.team/stops/N501hob", "https://tec.openplanner.team/stops/N501htb"], ["https://tec.openplanner.team/stops/LOReg--2", "https://tec.openplanner.team/stops/LORlieg1"], ["https://tec.openplanner.team/stops/H1ms251b", "https://tec.openplanner.team/stops/H1ms913a"], ["https://tec.openplanner.team/stops/Cmx3arb2", "https://tec.openplanner.team/stops/Cmx4che1"], ["https://tec.openplanner.team/stops/Llgnaes2", "https://tec.openplanner.team/stops/Llgnani2"], ["https://tec.openplanner.team/stops/N571acb", "https://tec.openplanner.team/stops/N571ada"], ["https://tec.openplanner.team/stops/X657ada", "https://tec.openplanner.team/stops/X742afb"], ["https://tec.openplanner.team/stops/H4ir161a", "https://tec.openplanner.team/stops/H4ir161b"], ["https://tec.openplanner.team/stops/N301aca", "https://tec.openplanner.team/stops/N301acb"], ["https://tec.openplanner.team/stops/X723alb", "https://tec.openplanner.team/stops/X766aga"], ["https://tec.openplanner.team/stops/LBSchpl2", "https://tec.openplanner.team/stops/LBSnouw2"], ["https://tec.openplanner.team/stops/Loucoti1", "https://tec.openplanner.team/stops/Louetan2"], ["https://tec.openplanner.team/stops/H4ty296a", "https://tec.openplanner.team/stops/H4ty351b"], ["https://tec.openplanner.team/stops/N519ama", "https://tec.openplanner.team/stops/N520ajb"], ["https://tec.openplanner.team/stops/LSdencl*", "https://tec.openplanner.team/stops/LSdsa8a1"], ["https://tec.openplanner.team/stops/Bnetrtb1", "https://tec.openplanner.team/stops/Bnetvan1"], ["https://tec.openplanner.team/stops/N581abb", "https://tec.openplanner.team/stops/N581acb"], ["https://tec.openplanner.team/stops/LwAkape1", "https://tec.openplanner.team/stops/LwAprei2"], ["https://tec.openplanner.team/stops/Bwatbno1", "https://tec.openplanner.team/stops/Bwatgib2"], ["https://tec.openplanner.team/stops/H4fa125b", "https://tec.openplanner.team/stops/H4hq133d"], ["https://tec.openplanner.team/stops/Ctucour2", "https://tec.openplanner.team/stops/Ctuyser2"], ["https://tec.openplanner.team/stops/N357aca", "https://tec.openplanner.team/stops/X994ada"], ["https://tec.openplanner.team/stops/H1mm125d", "https://tec.openplanner.team/stops/H1mm128a"], ["https://tec.openplanner.team/stops/X901bja", "https://tec.openplanner.team/stops/X901bta"], ["https://tec.openplanner.team/stops/N121agb", "https://tec.openplanner.team/stops/N121aia"], ["https://tec.openplanner.team/stops/Ccicent2", "https://tec.openplanner.team/stops/Cciecol2"], ["https://tec.openplanner.team/stops/H4mo190a", "https://tec.openplanner.team/stops/H4mo192a"], ["https://tec.openplanner.team/stops/Brsg7fo1", "https://tec.openplanner.team/stops/Brsg7fo2"], ["https://tec.openplanner.team/stops/X750aaa", "https://tec.openplanner.team/stops/X780ahb"], ["https://tec.openplanner.team/stops/H2gy101b", "https://tec.openplanner.team/stops/H2gy106a"], ["https://tec.openplanner.team/stops/N137aja", "https://tec.openplanner.team/stops/N137ajb"], ["https://tec.openplanner.team/stops/H4ty264a", "https://tec.openplanner.team/stops/H4ty264b"], ["https://tec.openplanner.team/stops/LaMschw2", "https://tec.openplanner.team/stops/LmYeich1"], ["https://tec.openplanner.team/stops/X919aca", "https://tec.openplanner.team/stops/X921akb"], ["https://tec.openplanner.team/stops/H3so159b", "https://tec.openplanner.team/stops/H3so163b"], ["https://tec.openplanner.team/stops/H3lr112b", "https://tec.openplanner.team/stops/H3lr120a"], ["https://tec.openplanner.team/stops/H2fa101b", "https://tec.openplanner.team/stops/H2fa112b"], ["https://tec.openplanner.team/stops/X670akb", "https://tec.openplanner.team/stops/X670amb"], ["https://tec.openplanner.team/stops/Lgdhura2", "https://tec.openplanner.team/stops/Lprfoot1"], ["https://tec.openplanner.team/stops/LAUjean1", "https://tec.openplanner.team/stops/LAUpind2"], ["https://tec.openplanner.team/stops/LOmlime2", "https://tec.openplanner.team/stops/LOmvill4"], ["https://tec.openplanner.team/stops/Cmaleri1", "https://tec.openplanner.team/stops/Cmmptno1"], ["https://tec.openplanner.team/stops/N552aaa", "https://tec.openplanner.team/stops/N577aaa"], ["https://tec.openplanner.team/stops/N308bca", "https://tec.openplanner.team/stops/N385aca"], ["https://tec.openplanner.team/stops/Lmopave1", "https://tec.openplanner.team/stops/Lsnferr2"], ["https://tec.openplanner.team/stops/Cmqchap2", "https://tec.openplanner.team/stops/N141aaa"], ["https://tec.openplanner.team/stops/Lveecol1", "https://tec.openplanner.team/stops/Lvepala7"], ["https://tec.openplanner.team/stops/LMOelva1", "https://tec.openplanner.team/stops/LMOelva4"], ["https://tec.openplanner.team/stops/H4ca121b", "https://tec.openplanner.team/stops/H4ca122b"], ["https://tec.openplanner.team/stops/X897aub", "https://tec.openplanner.team/stops/X897avb"], ["https://tec.openplanner.team/stops/X768ala", "https://tec.openplanner.team/stops/X768ald"], ["https://tec.openplanner.team/stops/X882ama", "https://tec.openplanner.team/stops/X882amc"], ["https://tec.openplanner.team/stops/X659aba", "https://tec.openplanner.team/stops/X659baa"], ["https://tec.openplanner.team/stops/X604aib", "https://tec.openplanner.team/stops/X604aka"], ["https://tec.openplanner.team/stops/LBNvill1", "https://tec.openplanner.team/stops/LBNvill3"], ["https://tec.openplanner.team/stops/Ctachst2", "https://tec.openplanner.team/stops/N543cja"], ["https://tec.openplanner.team/stops/N536adb", "https://tec.openplanner.team/stops/N536apb"], ["https://tec.openplanner.team/stops/N528alb", "https://tec.openplanner.team/stops/N551acb"], ["https://tec.openplanner.team/stops/Crcegli1", "https://tec.openplanner.team/stops/Crcpcom2"], ["https://tec.openplanner.team/stops/Bjodgai1", "https://tec.openplanner.team/stops/Bmlngvi2"], ["https://tec.openplanner.team/stops/X633agc", "https://tec.openplanner.team/stops/X653adb"], ["https://tec.openplanner.team/stops/LAMceri2", "https://tec.openplanner.team/stops/LAMcloc2"], ["https://tec.openplanner.team/stops/LFLcher2", "https://tec.openplanner.team/stops/LFLetoi1"], ["https://tec.openplanner.team/stops/LYechpl2", "https://tec.openplanner.team/stops/LYegeor1"], ["https://tec.openplanner.team/stops/LHUdeni4", "https://tec.openplanner.team/stops/LHUloui2"], ["https://tec.openplanner.team/stops/Lromc--1", "https://tec.openplanner.team/stops/Lromerl2"], ["https://tec.openplanner.team/stops/H1fl135a", "https://tec.openplanner.team/stops/H1fl135b"], ["https://tec.openplanner.team/stops/X672acb", "https://tec.openplanner.team/stops/X672ala"], ["https://tec.openplanner.team/stops/Ljuroch1", "https://tec.openplanner.team/stops/Ljuroch2"], ["https://tec.openplanner.team/stops/N111aab", "https://tec.openplanner.team/stops/N127bfa"], ["https://tec.openplanner.team/stops/Blthbss1", "https://tec.openplanner.team/stops/Bmlnsms1"], ["https://tec.openplanner.team/stops/H4mb141a", "https://tec.openplanner.team/stops/H4qu230c"], ["https://tec.openplanner.team/stops/LLycent*", "https://tec.openplanner.team/stops/LMTfagn1"], ["https://tec.openplanner.team/stops/LMsec--2", "https://tec.openplanner.team/stops/LMsvill2"], ["https://tec.openplanner.team/stops/LnIschw1", "https://tec.openplanner.team/stops/LwYbruc1"], ["https://tec.openplanner.team/stops/X614axa", "https://tec.openplanner.team/stops/X614axb"], ["https://tec.openplanner.team/stops/Bplncba2", "https://tec.openplanner.team/stops/Bplncsd1"], ["https://tec.openplanner.team/stops/X394aga", "https://tec.openplanner.team/stops/X919ama"], ["https://tec.openplanner.team/stops/X926ada", "https://tec.openplanner.team/stops/X945aca"], ["https://tec.openplanner.team/stops/LFypfei2", "https://tec.openplanner.team/stops/LwYsarl1"], ["https://tec.openplanner.team/stops/Cfobriq2", "https://tec.openplanner.team/stops/Cfohopi2"], ["https://tec.openplanner.team/stops/X740abd", "https://tec.openplanner.team/stops/X985acb"], ["https://tec.openplanner.team/stops/N150afa", "https://tec.openplanner.team/stops/N150afb"], ["https://tec.openplanner.team/stops/N551ana", "https://tec.openplanner.team/stops/N551apb"], ["https://tec.openplanner.team/stops/N548acd", "https://tec.openplanner.team/stops/N548aib"], ["https://tec.openplanner.team/stops/LLirout1", "https://tec.openplanner.team/stops/LListie1"], ["https://tec.openplanner.team/stops/LFMstat1", "https://tec.openplanner.team/stops/LFMvoge*"], ["https://tec.openplanner.team/stops/LEN42--1", "https://tec.openplanner.team/stops/LENsent1"], ["https://tec.openplanner.team/stops/N524aba", "https://tec.openplanner.team/stops/N525aob"], ["https://tec.openplanner.team/stops/N241agb", "https://tec.openplanner.team/stops/N270aba"], ["https://tec.openplanner.team/stops/LSoboul2", "https://tec.openplanner.team/stops/LSomonu2"], ["https://tec.openplanner.team/stops/Lprmc--1", "https://tec.openplanner.team/stops/Lprmc--3"], ["https://tec.openplanner.team/stops/X886aea", "https://tec.openplanner.team/stops/X886aeb"], ["https://tec.openplanner.team/stops/H1vb142b", "https://tec.openplanner.team/stops/H1vb147b"], ["https://tec.openplanner.team/stops/Cglfrom2", "https://tec.openplanner.team/stops/Cgnpass2"], ["https://tec.openplanner.team/stops/Cmtmath2", "https://tec.openplanner.team/stops/Cmtstth2"], ["https://tec.openplanner.team/stops/X870aeb", "https://tec.openplanner.team/stops/X870agb"], ["https://tec.openplanner.team/stops/H2ch108a", "https://tec.openplanner.team/stops/H2ch112b"], ["https://tec.openplanner.team/stops/X857aab", "https://tec.openplanner.team/stops/X857abb"], ["https://tec.openplanner.team/stops/LKmmelo2", "https://tec.openplanner.team/stops/LVlledo2"], ["https://tec.openplanner.team/stops/H1do126a", "https://tec.openplanner.team/stops/H1do130a"], ["https://tec.openplanner.team/stops/H4ma417a", "https://tec.openplanner.team/stops/H4ma417b"], ["https://tec.openplanner.team/stops/LgRha212", "https://tec.openplanner.team/stops/LgRhouf2"], ["https://tec.openplanner.team/stops/LArchap1", "https://tec.openplanner.team/stops/X548afb"], ["https://tec.openplanner.team/stops/LSMchat1", "https://tec.openplanner.team/stops/LSMcles1"], ["https://tec.openplanner.team/stops/LBNburg1", "https://tec.openplanner.team/stops/LMebove1"], ["https://tec.openplanner.team/stops/H4do100b", "https://tec.openplanner.team/stops/H4do202b"], ["https://tec.openplanner.team/stops/H4lz124a", "https://tec.openplanner.team/stops/H4wp152b"], ["https://tec.openplanner.team/stops/Bvirhsa1", "https://tec.openplanner.team/stops/Bvirhsa2"], ["https://tec.openplanner.team/stops/LhGbahn*", "https://tec.openplanner.team/stops/LhGbahn4"], ["https://tec.openplanner.team/stops/LNChock1", "https://tec.openplanner.team/stops/LRachen2"], ["https://tec.openplanner.team/stops/LFOchpl1", "https://tec.openplanner.team/stops/LFOmc--2"], ["https://tec.openplanner.team/stops/LPbhaut1", "https://tec.openplanner.team/stops/LPbover1"], ["https://tec.openplanner.team/stops/H1hh110a", "https://tec.openplanner.team/stops/H1hh110b"], ["https://tec.openplanner.team/stops/X630aab", "https://tec.openplanner.team/stops/X644aea"], ["https://tec.openplanner.team/stops/N580aca", "https://tec.openplanner.team/stops/N580acb"], ["https://tec.openplanner.team/stops/NL78adb", "https://tec.openplanner.team/stops/NL79aab"], ["https://tec.openplanner.team/stops/X623ada", "https://tec.openplanner.team/stops/X624amb"], ["https://tec.openplanner.team/stops/Ljhjeha*", "https://tec.openplanner.team/stops/Ljhsart2"], ["https://tec.openplanner.team/stops/H1sp353a", "https://tec.openplanner.team/stops/H1sp354b"], ["https://tec.openplanner.team/stops/H5wo122a", "https://tec.openplanner.team/stops/H5wo126a"], ["https://tec.openplanner.team/stops/H4rm113a", "https://tec.openplanner.team/stops/H4rm113b"], ["https://tec.openplanner.team/stops/Balswwe2", "https://tec.openplanner.team/stops/Brsg7fo2"], ["https://tec.openplanner.team/stops/LBivi--1", "https://tec.openplanner.team/stops/LWEwilc1"], ["https://tec.openplanner.team/stops/X314aab", "https://tec.openplanner.team/stops/X317aba"], ["https://tec.openplanner.team/stops/N337afb", "https://tec.openplanner.team/stops/N339acb"], ["https://tec.openplanner.team/stops/H4va232a", "https://tec.openplanner.team/stops/H4va232b"], ["https://tec.openplanner.team/stops/LvAschr1", "https://tec.openplanner.team/stops/LvAschr2"], ["https://tec.openplanner.team/stops/X897aab", "https://tec.openplanner.team/stops/X897aob"], ["https://tec.openplanner.team/stops/Bitrcen1", "https://tec.openplanner.team/stops/Bitrhou1"], ["https://tec.openplanner.team/stops/LGemari2", "https://tec.openplanner.team/stops/LVkinst1"], ["https://tec.openplanner.team/stops/Bmonbor2", "https://tec.openplanner.team/stops/Bmoncab1"], ["https://tec.openplanner.team/stops/LOMdTEC2", "https://tec.openplanner.team/stops/LOMware1"], ["https://tec.openplanner.team/stops/X601alb", "https://tec.openplanner.team/stops/X601cta"], ["https://tec.openplanner.team/stops/X869aea", "https://tec.openplanner.team/stops/X869afa"], ["https://tec.openplanner.team/stops/H4bf106b", "https://tec.openplanner.team/stops/H4by119b"], ["https://tec.openplanner.team/stops/H1me115b", "https://tec.openplanner.team/stops/H1so132a"], ["https://tec.openplanner.team/stops/LHUaron2", "https://tec.openplanner.team/stops/LHUgdpl1"], ["https://tec.openplanner.team/stops/X839abc", "https://tec.openplanner.team/stops/X839adb"], ["https://tec.openplanner.team/stops/Llgbene1", "https://tec.openplanner.team/stops/Llgpitt1"], ["https://tec.openplanner.team/stops/Bsomjon2", "https://tec.openplanner.team/stops/N584abb"], ["https://tec.openplanner.team/stops/Blpgcmo1", "https://tec.openplanner.team/stops/Cgnpass1"], ["https://tec.openplanner.team/stops/N230aib", "https://tec.openplanner.team/stops/N231abb"], ["https://tec.openplanner.team/stops/Bcrbmsg1", "https://tec.openplanner.team/stops/Bmsggra3"], ["https://tec.openplanner.team/stops/Lseprog2", "https://tec.openplanner.team/stops/Lsevill1"], ["https://tec.openplanner.team/stops/LNEolne1", "https://tec.openplanner.team/stops/LNEolne2"], ["https://tec.openplanner.team/stops/Bixlaca2", "https://tec.openplanner.team/stops/Buccchu2"], ["https://tec.openplanner.team/stops/H4wi168b", "https://tec.openplanner.team/stops/H4wi169a"], ["https://tec.openplanner.team/stops/LmD163-1", "https://tec.openplanner.team/stops/LmYwall1"], ["https://tec.openplanner.team/stops/LCvneuf1", "https://tec.openplanner.team/stops/LTBeg--1"], ["https://tec.openplanner.team/stops/H1vt193b", "https://tec.openplanner.team/stops/H1vt196a"], ["https://tec.openplanner.team/stops/Lcehipp2", "https://tec.openplanner.team/stops/Lvc4bra1"], ["https://tec.openplanner.team/stops/Bneesan2", "https://tec.openplanner.team/stops/Bneesjo1"], ["https://tec.openplanner.team/stops/N232bha", "https://tec.openplanner.team/stops/N232cbb"], ["https://tec.openplanner.team/stops/Lvefabr2", "https://tec.openplanner.team/stops/Lvehodi1"], ["https://tec.openplanner.team/stops/H1wa132a", "https://tec.openplanner.team/stops/H1wa160b"], ["https://tec.openplanner.team/stops/H1bo108c", "https://tec.openplanner.team/stops/H1bo112b"], ["https://tec.openplanner.team/stops/X640ala", "https://tec.openplanner.team/stops/X640apb"], ["https://tec.openplanner.team/stops/Bblamsj1", "https://tec.openplanner.team/stops/Bblamsj3"], ["https://tec.openplanner.team/stops/LWidepo2", "https://tec.openplanner.team/stops/LWieg--*"], ["https://tec.openplanner.team/stops/LGecite1", "https://tec.openplanner.team/stops/LGecite2"], ["https://tec.openplanner.team/stops/Cciqueu1", "https://tec.openplanner.team/stops/Cmlavch1"], ["https://tec.openplanner.team/stops/LOdcris1", "https://tec.openplanner.team/stops/LRUhama2"], ["https://tec.openplanner.team/stops/N501dvb", "https://tec.openplanner.team/stops/N501ega"], ["https://tec.openplanner.team/stops/Cbmpopr2", "https://tec.openplanner.team/stops/Csschat1"], ["https://tec.openplanner.team/stops/H4le128a", "https://tec.openplanner.team/stops/H4le128b"], ["https://tec.openplanner.team/stops/H1ms257b", "https://tec.openplanner.team/stops/H1ms272a"], ["https://tec.openplanner.team/stops/Cjxetri1", "https://tec.openplanner.team/stops/Cmyboci1"], ["https://tec.openplanner.team/stops/X639aoc", "https://tec.openplanner.team/stops/X639ata"], ["https://tec.openplanner.team/stops/Cciarfr1", "https://tec.openplanner.team/stops/Cciarfr2"], ["https://tec.openplanner.team/stops/H1sb148a", "https://tec.openplanner.team/stops/H1sb150a"], ["https://tec.openplanner.team/stops/N506ama", "https://tec.openplanner.team/stops/N558aab"], ["https://tec.openplanner.team/stops/Bovecha1", "https://tec.openplanner.team/stops/Bwavlav2"], ["https://tec.openplanner.team/stops/H2sb225a", "https://tec.openplanner.team/stops/H3th134a"], ["https://tec.openplanner.team/stops/LJSec--2", "https://tec.openplanner.team/stops/LJSeg--2"], ["https://tec.openplanner.team/stops/LeLbutg3", "https://tec.openplanner.team/stops/LnIfrie2"], ["https://tec.openplanner.team/stops/X719ada", "https://tec.openplanner.team/stops/X719afb"], ["https://tec.openplanner.team/stops/Bdvmc031", "https://tec.openplanner.team/stops/Bwavlon1"], ["https://tec.openplanner.team/stops/Bhalath1", "https://tec.openplanner.team/stops/Bucccre1"], ["https://tec.openplanner.team/stops/Bnivall1", "https://tec.openplanner.team/stops/Bnivfra2"], ["https://tec.openplanner.team/stops/Cfaauln2", "https://tec.openplanner.team/stops/Cfawain4"], ["https://tec.openplanner.team/stops/LERboss2", "https://tec.openplanner.team/stops/LERpouh2"], ["https://tec.openplanner.team/stops/LBGcent2", "https://tec.openplanner.team/stops/LHDpota1"], ["https://tec.openplanner.team/stops/N585aib", "https://tec.openplanner.team/stops/N585ajb"], ["https://tec.openplanner.team/stops/LFdeg--3", "https://tec.openplanner.team/stops/LFdeg--4"], ["https://tec.openplanner.team/stops/Bgoekaz1", "https://tec.openplanner.team/stops/Bgoemgr1"], ["https://tec.openplanner.team/stops/Llgcime1", "https://tec.openplanner.team/stops/Lvtpepi2"], ["https://tec.openplanner.team/stops/Bnivcom1", "https://tec.openplanner.team/stops/Bnivpgr1"], ["https://tec.openplanner.team/stops/Bnivasa1", "https://tec.openplanner.team/stops/Bnivh%C3%B4p2"], ["https://tec.openplanner.team/stops/LeYheid1", "https://tec.openplanner.team/stops/LeYheid2"], ["https://tec.openplanner.team/stops/H1eu104b", "https://tec.openplanner.team/stops/H1sb149b"], ["https://tec.openplanner.team/stops/Bmoucoq1", "https://tec.openplanner.team/stops/Bmoucoq2"], ["https://tec.openplanner.team/stops/H5at104b", "https://tec.openplanner.team/stops/H5at112a"], ["https://tec.openplanner.team/stops/LENalun1", "https://tec.openplanner.team/stops/LENalun2"], ["https://tec.openplanner.team/stops/N118axa", "https://tec.openplanner.team/stops/N118axb"], ["https://tec.openplanner.team/stops/Cmmmarb1", "https://tec.openplanner.team/stops/Cmmmarb2"], ["https://tec.openplanner.team/stops/NL37aaa", "https://tec.openplanner.team/stops/NL37aab"], ["https://tec.openplanner.team/stops/N501nba", "https://tec.openplanner.team/stops/N501nbb"], ["https://tec.openplanner.team/stops/Bnivbpe2", "https://tec.openplanner.team/stops/Bnivsto1"], ["https://tec.openplanner.team/stops/N543aib", "https://tec.openplanner.team/stops/N543cla"], ["https://tec.openplanner.team/stops/LJAchat2", "https://tec.openplanner.team/stops/LJAmari1"], ["https://tec.openplanner.team/stops/Bgemcro2", "https://tec.openplanner.team/stops/Bgemgcw1"], ["https://tec.openplanner.team/stops/Llghoch2", "https://tec.openplanner.team/stops/Llghoch3"], ["https://tec.openplanner.team/stops/Bchgbel2", "https://tec.openplanner.team/stops/Bchgpap1"], ["https://tec.openplanner.team/stops/Cbflong1", "https://tec.openplanner.team/stops/Cbflong2"], ["https://tec.openplanner.team/stops/Ccinali1", "https://tec.openplanner.team/stops/Ccinali2"], ["https://tec.openplanner.team/stops/Lhrbass1", "https://tec.openplanner.team/stops/Lhrbass2"], ["https://tec.openplanner.team/stops/Btubdeh1", "https://tec.openplanner.team/stops/Btubdeh2"], ["https://tec.openplanner.team/stops/X314aaa", "https://tec.openplanner.team/stops/X359agb"], ["https://tec.openplanner.team/stops/N502aca", "https://tec.openplanner.team/stops/N503aab"], ["https://tec.openplanner.team/stops/LSEcent2", "https://tec.openplanner.team/stops/LSEvill2"], ["https://tec.openplanner.team/stops/NL76ahb", "https://tec.openplanner.team/stops/NL77aba"], ["https://tec.openplanner.team/stops/Bsaucre1", "https://tec.openplanner.team/stops/Bsaucre2"], ["https://tec.openplanner.team/stops/LSChane2", "https://tec.openplanner.team/stops/LVMborl1"], ["https://tec.openplanner.team/stops/N243aab", "https://tec.openplanner.team/stops/N252aaa"], ["https://tec.openplanner.team/stops/N141aib", "https://tec.openplanner.team/stops/N141anb"], ["https://tec.openplanner.team/stops/LTestat1", "https://tec.openplanner.team/stops/NL35adc"], ["https://tec.openplanner.team/stops/H3so160a", "https://tec.openplanner.team/stops/H3so162b"], ["https://tec.openplanner.team/stops/Cbfplch2", "https://tec.openplanner.team/stops/Cctlimi2"], ["https://tec.openplanner.team/stops/X740abd", "https://tec.openplanner.team/stops/X759aaa"], ["https://tec.openplanner.team/stops/Lvtlomb1", "https://tec.openplanner.team/stops/Lvtlomb4"], ["https://tec.openplanner.team/stops/Lvtcalv2", "https://tec.openplanner.team/stops/Lvtegli*"], ["https://tec.openplanner.team/stops/LSGcolo1", "https://tec.openplanner.team/stops/LSGfoua2"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N313aab"], ["https://tec.openplanner.team/stops/LSkb1351", "https://tec.openplanner.team/stops/LSkkeri2"], ["https://tec.openplanner.team/stops/H4ch114a", "https://tec.openplanner.team/stops/H4ch117a"], ["https://tec.openplanner.team/stops/X658aca", "https://tec.openplanner.team/stops/X658acb"], ["https://tec.openplanner.team/stops/Bhmmcim2", "https://tec.openplanner.team/stops/Bhmmvdu2"], ["https://tec.openplanner.team/stops/NL74aaa", "https://tec.openplanner.team/stops/NL75aca"], ["https://tec.openplanner.team/stops/X370acb", "https://tec.openplanner.team/stops/X850akb"], ["https://tec.openplanner.team/stops/H4ty267a", "https://tec.openplanner.team/stops/H4ty285c"], ["https://tec.openplanner.team/stops/Brixbai1", "https://tec.openplanner.team/stops/Brixwav1"], ["https://tec.openplanner.team/stops/Llochar1", "https://tec.openplanner.team/stops/Llochar5"], ["https://tec.openplanner.team/stops/LLUtill1", "https://tec.openplanner.team/stops/LLUvent4"], ["https://tec.openplanner.team/stops/N232bcb", "https://tec.openplanner.team/stops/N232bda"], ["https://tec.openplanner.team/stops/Cfmgara1", "https://tec.openplanner.team/stops/Ctrpn2"], ["https://tec.openplanner.team/stops/N515ajb", "https://tec.openplanner.team/stops/N515ata"], ["https://tec.openplanner.team/stops/H5wo126a", "https://tec.openplanner.team/stops/H5wo133b"], ["https://tec.openplanner.team/stops/N131aga", "https://tec.openplanner.team/stops/N423agb"], ["https://tec.openplanner.team/stops/N135ala", "https://tec.openplanner.team/stops/N135aqb"], ["https://tec.openplanner.team/stops/LAMdelh3", "https://tec.openplanner.team/stops/LAMusin2"], ["https://tec.openplanner.team/stops/H4eg102b", "https://tec.openplanner.team/stops/H4eg104b"], ["https://tec.openplanner.team/stops/X767aba", "https://tec.openplanner.team/stops/X769ata"], ["https://tec.openplanner.team/stops/H4tu171a", "https://tec.openplanner.team/stops/H4wp148a"], ["https://tec.openplanner.team/stops/H4au143a", "https://tec.openplanner.team/stops/H4og207a"], ["https://tec.openplanner.team/stops/Cbugara1", "https://tec.openplanner.team/stops/Cfnsenz1"], ["https://tec.openplanner.team/stops/X837aea", "https://tec.openplanner.team/stops/X837aec"], ["https://tec.openplanner.team/stops/Lthfren2", "https://tec.openplanner.team/stops/LWaatel1"], ["https://tec.openplanner.team/stops/X822aha", "https://tec.openplanner.team/stops/X822arb"], ["https://tec.openplanner.team/stops/LHCkoul1", "https://tec.openplanner.team/stops/LHCkoul2"], ["https://tec.openplanner.team/stops/H2fa104a", "https://tec.openplanner.team/stops/H2fa109a"], ["https://tec.openplanner.team/stops/LBvnico1", "https://tec.openplanner.team/stops/LPUlecl1"], ["https://tec.openplanner.team/stops/N542aga", "https://tec.openplanner.team/stops/N542aha"], ["https://tec.openplanner.team/stops/X661ala", "https://tec.openplanner.team/stops/X661axb"], ["https://tec.openplanner.team/stops/Cmcceta1", "https://tec.openplanner.team/stops/Cmivert2"], ["https://tec.openplanner.team/stops/H1ju120a", "https://tec.openplanner.team/stops/H1ju120d"], ["https://tec.openplanner.team/stops/Bbcogar1", "https://tec.openplanner.team/stops/Bbcoser1"], ["https://tec.openplanner.team/stops/LCtcref1", "https://tec.openplanner.team/stops/X783adb"], ["https://tec.openplanner.team/stops/N513ana", "https://tec.openplanner.team/stops/N513aoa"], ["https://tec.openplanner.team/stops/Lsecast2", "https://tec.openplanner.team/stops/Lsehaut1"], ["https://tec.openplanner.team/stops/H4ft138a", "https://tec.openplanner.team/stops/H4wu375b"], ["https://tec.openplanner.team/stops/X901aca", "https://tec.openplanner.team/stops/X901bka"], ["https://tec.openplanner.team/stops/LWAipes2", "https://tec.openplanner.team/stops/LWAloui2"], ["https://tec.openplanner.team/stops/LVIeg--1", "https://tec.openplanner.team/stops/LVIsouv1"], ["https://tec.openplanner.team/stops/X604aea", "https://tec.openplanner.team/stops/X604amb"], ["https://tec.openplanner.team/stops/LBNlong1", "https://tec.openplanner.team/stops/LBNvill6"], ["https://tec.openplanner.team/stops/LNCesne2", "https://tec.openplanner.team/stops/LNCtour1"], ["https://tec.openplanner.team/stops/X908ada", "https://tec.openplanner.team/stops/X908adb"], ["https://tec.openplanner.team/stops/Cmachau2", "https://tec.openplanner.team/stops/Cmastch4"], ["https://tec.openplanner.team/stops/Llgbrab1", "https://tec.openplanner.team/stops/Llgbrab2"], ["https://tec.openplanner.team/stops/LeUcroi1", "https://tec.openplanner.team/stops/LHthest2"], ["https://tec.openplanner.team/stops/H1ch132b", "https://tec.openplanner.team/stops/H5ma186a"], ["https://tec.openplanner.team/stops/Cvsegli1", "https://tec.openplanner.team/stops/Cvstouv2"], ["https://tec.openplanner.team/stops/Lsn184-1", "https://tec.openplanner.team/stops/Lsn184-2"], ["https://tec.openplanner.team/stops/LLrhest1", "https://tec.openplanner.team/stops/LTHturo3"], ["https://tec.openplanner.team/stops/H1ms267b", "https://tec.openplanner.team/stops/H1ms299a"], ["https://tec.openplanner.team/stops/Ccucroi2", "https://tec.openplanner.team/stops/Cculpre2"], ["https://tec.openplanner.team/stops/N231abb", "https://tec.openplanner.team/stops/N231adb"], ["https://tec.openplanner.team/stops/LROcham2", "https://tec.openplanner.team/stops/LROhael1"], ["https://tec.openplanner.team/stops/Bjodint1", "https://tec.openplanner.team/stops/Bjodtpo2"], ["https://tec.openplanner.team/stops/Chhclde1", "https://tec.openplanner.team/stops/Cna6che1"], ["https://tec.openplanner.team/stops/N385aea", "https://tec.openplanner.team/stops/N385aec"], ["https://tec.openplanner.team/stops/Ladgron1", "https://tec.openplanner.team/stops/LHCprog1"], ["https://tec.openplanner.team/stops/H1gn149a", "https://tec.openplanner.team/stops/H1gn149b"], ["https://tec.openplanner.team/stops/H4mx119a", "https://tec.openplanner.team/stops/H4ve132b"], ["https://tec.openplanner.team/stops/X871aaa", "https://tec.openplanner.team/stops/X876adb"], ["https://tec.openplanner.team/stops/N141aca", "https://tec.openplanner.team/stops/N141acb"], ["https://tec.openplanner.team/stops/Llgbaya4", "https://tec.openplanner.team/stops/Llgpbay2"], ["https://tec.openplanner.team/stops/LFArela2", "https://tec.openplanner.team/stops/LFArela6"], ["https://tec.openplanner.team/stops/Ladlimi1", "https://tec.openplanner.team/stops/Ldipiss1"], ["https://tec.openplanner.team/stops/Lcegeor2", "https://tec.openplanner.team/stops/Lvcbalt1"], ["https://tec.openplanner.team/stops/X661aca", "https://tec.openplanner.team/stops/X661acb"], ["https://tec.openplanner.team/stops/LNveg--1", "https://tec.openplanner.team/stops/LNvrout1"], ["https://tec.openplanner.team/stops/NR30aaa", "https://tec.openplanner.team/stops/NR30aab"], ["https://tec.openplanner.team/stops/LLrbuis1", "https://tec.openplanner.team/stops/LLrbuis2"], ["https://tec.openplanner.team/stops/H1by102b", "https://tec.openplanner.team/stops/H1by103a"], ["https://tec.openplanner.team/stops/LOVhetr1", "https://tec.openplanner.team/stops/LOVhetr2"], ["https://tec.openplanner.team/stops/Lstchu-4", "https://tec.openplanner.team/stops/Lsteduc2"], ["https://tec.openplanner.team/stops/LESgare1", "https://tec.openplanner.team/stops/LESmc--1"], ["https://tec.openplanner.team/stops/NR21acb", "https://tec.openplanner.team/stops/NR21aga"], ["https://tec.openplanner.team/stops/Bsmgmar2", "https://tec.openplanner.team/stops/Bsmgmou1"], ["https://tec.openplanner.team/stops/Chpceri1", "https://tec.openplanner.team/stops/Chpplac1"], ["https://tec.openplanner.team/stops/N501chf", "https://tec.openplanner.team/stops/N501jma"], ["https://tec.openplanner.team/stops/N337aea", "https://tec.openplanner.team/stops/N385aed"], ["https://tec.openplanner.team/stops/LPleclu2", "https://tec.openplanner.team/stops/LPlpomp2"], ["https://tec.openplanner.team/stops/Caiecol1", "https://tec.openplanner.team/stops/Caioign4"], ["https://tec.openplanner.team/stops/Lmlec--1", "https://tec.openplanner.team/stops/Lmlhaut2"], ["https://tec.openplanner.team/stops/X788abd", "https://tec.openplanner.team/stops/X788abe"], ["https://tec.openplanner.team/stops/NL68acb", "https://tec.openplanner.team/stops/NL68agb"], ["https://tec.openplanner.team/stops/Cgzcver1", "https://tec.openplanner.team/stops/Cmyecur1"], ["https://tec.openplanner.team/stops/Llgdoth2", "https://tec.openplanner.team/stops/Llgparc1"], ["https://tec.openplanner.team/stops/X636aqb", "https://tec.openplanner.team/stops/X636bjb"], ["https://tec.openplanner.team/stops/LmNkess1", "https://tec.openplanner.team/stops/LmNkrew2"], ["https://tec.openplanner.team/stops/H4eg104b", "https://tec.openplanner.team/stops/H4ne136b"], ["https://tec.openplanner.team/stops/X713alb", "https://tec.openplanner.team/stops/X714aaa"], ["https://tec.openplanner.team/stops/H4ml208a", "https://tec.openplanner.team/stops/H4ml209a"], ["https://tec.openplanner.team/stops/N161abd", "https://tec.openplanner.team/stops/N161afb"], ["https://tec.openplanner.team/stops/Lrchero2", "https://tec.openplanner.team/stops/Lrcpaqu2"], ["https://tec.openplanner.team/stops/Lroboeg1", "https://tec.openplanner.team/stops/Lrosaun1"], ["https://tec.openplanner.team/stops/H3th129a", "https://tec.openplanner.team/stops/H3th129b"], ["https://tec.openplanner.team/stops/N211adb", "https://tec.openplanner.team/stops/N211afa"], ["https://tec.openplanner.team/stops/H5ar100a", "https://tec.openplanner.team/stops/H5me105a"], ["https://tec.openplanner.team/stops/LHAbont1", "https://tec.openplanner.team/stops/LHAvall1"], ["https://tec.openplanner.team/stops/X801bdb", "https://tec.openplanner.team/stops/X801bde"], ["https://tec.openplanner.team/stops/LFsbasc2", "https://tec.openplanner.team/stops/LFsgend2"], ["https://tec.openplanner.team/stops/Lmnfawe2", "https://tec.openplanner.team/stops/Lmnjeha2"], ["https://tec.openplanner.team/stops/X782aab", "https://tec.openplanner.team/stops/X782apb"], ["https://tec.openplanner.team/stops/Bmarcat2", "https://tec.openplanner.team/stops/Bmarchn2"], ["https://tec.openplanner.team/stops/LAugara1", "https://tec.openplanner.team/stops/LAuvici1"], ["https://tec.openplanner.team/stops/Cchbrou2", "https://tec.openplanner.team/stops/Cchwate1"], ["https://tec.openplanner.team/stops/Cracave2", "https://tec.openplanner.team/stops/Cradado2"], ["https://tec.openplanner.team/stops/Bcbqa361", "https://tec.openplanner.team/stops/Bcbqrog1"], ["https://tec.openplanner.team/stops/X608aka", "https://tec.openplanner.team/stops/X608awa"], ["https://tec.openplanner.team/stops/LSRbouh1", "https://tec.openplanner.team/stops/LSRbouh2"], ["https://tec.openplanner.team/stops/H4ff115a", "https://tec.openplanner.team/stops/H4pp123b"], ["https://tec.openplanner.team/stops/N510abb", "https://tec.openplanner.team/stops/N513acb"], ["https://tec.openplanner.team/stops/X824adb", "https://tec.openplanner.team/stops/X824ala"], ["https://tec.openplanner.team/stops/X752aca", "https://tec.openplanner.team/stops/X757acb"], ["https://tec.openplanner.team/stops/X986aja", "https://tec.openplanner.team/stops/X986amb"], ["https://tec.openplanner.team/stops/Brebpca2", "https://tec.openplanner.team/stops/Bstesar1"], ["https://tec.openplanner.team/stops/N103aea", "https://tec.openplanner.team/stops/N103aga"], ["https://tec.openplanner.team/stops/X902aab", "https://tec.openplanner.team/stops/X902afd"], ["https://tec.openplanner.team/stops/N158aaa", "https://tec.openplanner.team/stops/N168aab"], ["https://tec.openplanner.team/stops/Btubga04", "https://tec.openplanner.team/stops/Btubpla1"], ["https://tec.openplanner.team/stops/LBapepi4", "https://tec.openplanner.team/stops/LBapepi5"], ["https://tec.openplanner.team/stops/H2hg157a", "https://tec.openplanner.team/stops/H2hg157b"], ["https://tec.openplanner.team/stops/N509axa", "https://tec.openplanner.team/stops/N509bgb"], ["https://tec.openplanner.team/stops/H1mj126b", "https://tec.openplanner.team/stops/H1mj127b"], ["https://tec.openplanner.team/stops/H4ha170a", "https://tec.openplanner.team/stops/H4me213a"], ["https://tec.openplanner.team/stops/Lceembo2", "https://tec.openplanner.team/stops/Lcegare1"], ["https://tec.openplanner.team/stops/X871aba", "https://tec.openplanner.team/stops/X871aca"], ["https://tec.openplanner.team/stops/X998aaa", "https://tec.openplanner.team/stops/X998aab"], ["https://tec.openplanner.team/stops/H2ll177a", "https://tec.openplanner.team/stops/H2ll190b"], ["https://tec.openplanner.team/stops/LrAgier1", "https://tec.openplanner.team/stops/LrApark2"], ["https://tec.openplanner.team/stops/Lsmstad2", "https://tec.openplanner.team/stops/Lvewall2"], ["https://tec.openplanner.team/stops/N538azb", "https://tec.openplanner.team/stops/N539ayb"], ["https://tec.openplanner.team/stops/X766aaa", "https://tec.openplanner.team/stops/X768aaa"], ["https://tec.openplanner.team/stops/X602alb", "https://tec.openplanner.team/stops/X602ana"], ["https://tec.openplanner.team/stops/Ckevela1", "https://tec.openplanner.team/stops/Cwfanci1"], ["https://tec.openplanner.team/stops/N559abb", "https://tec.openplanner.team/stops/N559aeb"], ["https://tec.openplanner.team/stops/X669agb", "https://tec.openplanner.team/stops/X672aeb"], ["https://tec.openplanner.team/stops/Bperros2", "https://tec.openplanner.team/stops/Bperwil1"], ["https://tec.openplanner.team/stops/LjedTEC2", "https://tec.openplanner.team/stops/Lsetroq1"], ["https://tec.openplanner.team/stops/H1le125b", "https://tec.openplanner.team/stops/H5is168b"], ["https://tec.openplanner.team/stops/N212ajb", "https://tec.openplanner.team/stops/N212ata"], ["https://tec.openplanner.team/stops/X782ana", "https://tec.openplanner.team/stops/X783ada"], ["https://tec.openplanner.team/stops/X666acb", "https://tec.openplanner.team/stops/X666ada"], ["https://tec.openplanner.team/stops/Blimvcg2", "https://tec.openplanner.team/stops/Bottcli1"], ["https://tec.openplanner.team/stops/LCschen1", "https://tec.openplanner.team/stops/LCsjone1"], ["https://tec.openplanner.team/stops/Cctberg2", "https://tec.openplanner.team/stops/Cctmine2"], ["https://tec.openplanner.team/stops/X912adb", "https://tec.openplanner.team/stops/X912aga"], ["https://tec.openplanner.team/stops/Clolidl1", "https://tec.openplanner.team/stops/Clooues3"], ["https://tec.openplanner.team/stops/X634ala", "https://tec.openplanner.team/stops/X654afb"], ["https://tec.openplanner.team/stops/H1gh159a", "https://tec.openplanner.team/stops/H1gh159b"], ["https://tec.openplanner.team/stops/Btubpir1", "https://tec.openplanner.team/stops/Btubpir2"], ["https://tec.openplanner.team/stops/Bpthcgo2", "https://tec.openplanner.team/stops/Bpthrsp2"], ["https://tec.openplanner.team/stops/H4hx116a", "https://tec.openplanner.team/stops/H4hx116b"], ["https://tec.openplanner.team/stops/Bchgcha1", "https://tec.openplanner.team/stops/Btslpic5"], ["https://tec.openplanner.team/stops/LMipoti2", "https://tec.openplanner.team/stops/LSTmast2"], ["https://tec.openplanner.team/stops/X607aba", "https://tec.openplanner.team/stops/X607aca"], ["https://tec.openplanner.team/stops/Caujonc1", "https://tec.openplanner.team/stops/Caujonc2"], ["https://tec.openplanner.team/stops/LLWcarr1", "https://tec.openplanner.team/stops/LOMbrou1"], ["https://tec.openplanner.team/stops/Braccen2", "https://tec.openplanner.team/stops/Bracrpe1"], ["https://tec.openplanner.team/stops/N501dba", "https://tec.openplanner.team/stops/N501ddb"], ["https://tec.openplanner.team/stops/LSceg--2", "https://tec.openplanner.team/stops/LVTtrou1"], ["https://tec.openplanner.team/stops/Ccutail1", "https://tec.openplanner.team/stops/Cgysarr1"], ["https://tec.openplanner.team/stops/X921ama", "https://tec.openplanner.team/stops/X921ana"], ["https://tec.openplanner.team/stops/X718ada", "https://tec.openplanner.team/stops/X718aea"], ["https://tec.openplanner.team/stops/LOcalbe2", "https://tec.openplanner.team/stops/LOcchat1"], ["https://tec.openplanner.team/stops/Bottbou2", "https://tec.openplanner.team/stops/Bottcbp2"], ["https://tec.openplanner.team/stops/Broncan1", "https://tec.openplanner.team/stops/Bvirfpo1"], ["https://tec.openplanner.team/stops/Bmarpla1", "https://tec.openplanner.team/stops/Bmarpla2"], ["https://tec.openplanner.team/stops/H1ms314a", "https://tec.openplanner.team/stops/H1ms943a"], ["https://tec.openplanner.team/stops/Cgystbe1", "https://tec.openplanner.team/stops/Cgystbe2"], ["https://tec.openplanner.team/stops/H2lh131a", "https://tec.openplanner.team/stops/H2mm140a"], ["https://tec.openplanner.team/stops/LTPcarr1", "https://tec.openplanner.team/stops/LTPsatr1"], ["https://tec.openplanner.team/stops/Llgbatt2", "https://tec.openplanner.team/stops/Llgpire2"], ["https://tec.openplanner.team/stops/Bgzddfh1", "https://tec.openplanner.team/stops/Bgzdgst2"], ["https://tec.openplanner.team/stops/H4me211c", "https://tec.openplanner.team/stops/H4pp122a"], ["https://tec.openplanner.team/stops/Clb4dgi1", "https://tec.openplanner.team/stops/Clb4dgi2"], ["https://tec.openplanner.team/stops/N539aaa", "https://tec.openplanner.team/stops/N539afb"], ["https://tec.openplanner.team/stops/Bboncha1", "https://tec.openplanner.team/stops/Bdlvpco2"], ["https://tec.openplanner.team/stops/H4fg116b", "https://tec.openplanner.team/stops/H4rx142a"], ["https://tec.openplanner.team/stops/Cctsncb3", "https://tec.openplanner.team/stops/Ccu6bra5"], ["https://tec.openplanner.team/stops/NL74aha", "https://tec.openplanner.team/stops/NL74ahb"], ["https://tec.openplanner.team/stops/X769ata", "https://tec.openplanner.team/stops/X769atb"], ["https://tec.openplanner.team/stops/X394afa", "https://tec.openplanner.team/stops/X394afb"], ["https://tec.openplanner.team/stops/LHUanth1", "https://tec.openplanner.team/stops/LHUaveu1"], ["https://tec.openplanner.team/stops/Btlbegl3", "https://tec.openplanner.team/stops/Btlbtbe4"], ["https://tec.openplanner.team/stops/N554aaa", "https://tec.openplanner.team/stops/NC11ara"], ["https://tec.openplanner.team/stops/X618aha", "https://tec.openplanner.team/stops/X618apa"], ["https://tec.openplanner.team/stops/Bitrcha2", "https://tec.openplanner.team/stops/Bitrsar1"], ["https://tec.openplanner.team/stops/LXHeg--2", "https://tec.openplanner.team/stops/LXHfond1"], ["https://tec.openplanner.team/stops/H2gy100a", "https://tec.openplanner.team/stops/H2gy103b"], ["https://tec.openplanner.team/stops/X805aab", "https://tec.openplanner.team/stops/X805aac"], ["https://tec.openplanner.team/stops/H1th180a", "https://tec.openplanner.team/stops/H3so164a"], ["https://tec.openplanner.team/stops/Cdadest1", "https://tec.openplanner.team/stops/Cdamest1"], ["https://tec.openplanner.team/stops/H1at108c", "https://tec.openplanner.team/stops/H1bl105a"], ["https://tec.openplanner.team/stops/X923apa", "https://tec.openplanner.team/stops/X923aqb"], ["https://tec.openplanner.team/stops/LrD28--2", "https://tec.openplanner.team/stops/LrDkirc2"], ["https://tec.openplanner.team/stops/X743afa", "https://tec.openplanner.team/stops/X744aaa"], ["https://tec.openplanner.team/stops/LROgeuz2", "https://tec.openplanner.team/stops/LWacime4"], ["https://tec.openplanner.team/stops/Lalecmo2", "https://tec.openplanner.team/stops/Laleg--1"], ["https://tec.openplanner.team/stops/Lgdrena1", "https://tec.openplanner.team/stops/LSNgerm2"], ["https://tec.openplanner.team/stops/H5el100a", "https://tec.openplanner.team/stops/H5rx135a"], ["https://tec.openplanner.team/stops/LCPconf2", "https://tec.openplanner.team/stops/LCPvign1"], ["https://tec.openplanner.team/stops/Bhevhha1", "https://tec.openplanner.team/stops/Bhevhha2"], ["https://tec.openplanner.team/stops/N561aba", "https://tec.openplanner.team/stops/N561aia"], ["https://tec.openplanner.team/stops/LRIcent1", "https://tec.openplanner.team/stops/LRIhous2"], ["https://tec.openplanner.team/stops/X663aca", "https://tec.openplanner.team/stops/X663adb"], ["https://tec.openplanner.team/stops/H4ft136a", "https://tec.openplanner.team/stops/H4ma205b"], ["https://tec.openplanner.team/stops/LTyh24-2", "https://tec.openplanner.team/stops/LTyhall2"], ["https://tec.openplanner.team/stops/Bgerprg1", "https://tec.openplanner.team/stops/Bgrhpos1"], ["https://tec.openplanner.team/stops/Llgbarb2", "https://tec.openplanner.team/stops/Llgpoli1"], ["https://tec.openplanner.team/stops/Llgnico1", "https://tec.openplanner.team/stops/Lsntvbi2"], ["https://tec.openplanner.team/stops/X633aja", "https://tec.openplanner.team/stops/X633ajc"], ["https://tec.openplanner.team/stops/LJEmalg2", "https://tec.openplanner.team/stops/LYegeor2"], ["https://tec.openplanner.team/stops/Bjanfer2", "https://tec.openplanner.team/stops/Bwanorp2"], ["https://tec.openplanner.team/stops/H4ty297a", "https://tec.openplanner.team/stops/H4ty406a"], ["https://tec.openplanner.team/stops/X882aaa", "https://tec.openplanner.team/stops/X882aha"], ["https://tec.openplanner.team/stops/N501isa", "https://tec.openplanner.team/stops/N501ivb"], ["https://tec.openplanner.team/stops/X601bma", "https://tec.openplanner.team/stops/X601bna"], ["https://tec.openplanner.team/stops/Bwatle32", "https://tec.openplanner.team/stops/Bwatmbv2"], ["https://tec.openplanner.team/stops/Bbsicas1", "https://tec.openplanner.team/stops/Bbsifml1"], ["https://tec.openplanner.team/stops/Cprsapv2", "https://tec.openplanner.team/stops/Cprvill2"], ["https://tec.openplanner.team/stops/LElverl1", "https://tec.openplanner.team/stops/LTamoul1"], ["https://tec.openplanner.team/stops/X879aga", "https://tec.openplanner.team/stops/X879aha"], ["https://tec.openplanner.team/stops/N894aga", "https://tec.openplanner.team/stops/N894agc"], ["https://tec.openplanner.team/stops/X921abb", "https://tec.openplanner.team/stops/X921apa"], ["https://tec.openplanner.team/stops/X754aub", "https://tec.openplanner.team/stops/X779aea"], ["https://tec.openplanner.team/stops/Cjucopp1", "https://tec.openplanner.team/stops/Cjuepee1"], ["https://tec.openplanner.team/stops/N516acb", "https://tec.openplanner.team/stops/N516adb"], ["https://tec.openplanner.team/stops/LEBdoct2", "https://tec.openplanner.team/stops/LWOmart2"], ["https://tec.openplanner.team/stops/Llgjasm1", "https://tec.openplanner.team/stops/Llgoise1"], ["https://tec.openplanner.team/stops/LRMeg--2", "https://tec.openplanner.team/stops/LRMn58-2"], ["https://tec.openplanner.team/stops/N874aia", "https://tec.openplanner.team/stops/N874ala"], ["https://tec.openplanner.team/stops/Bgliaau1", "https://tec.openplanner.team/stops/Bgligli1"], ["https://tec.openplanner.team/stops/Bbstchv2", "https://tec.openplanner.team/stops/Bvlvbth2"], ["https://tec.openplanner.team/stops/H1ch142a", "https://tec.openplanner.team/stops/H1ch142b"], ["https://tec.openplanner.team/stops/N547aea", "https://tec.openplanner.team/stops/N565akb"], ["https://tec.openplanner.team/stops/N149aka", "https://tec.openplanner.team/stops/N149ala"], ["https://tec.openplanner.team/stops/Bgemman2", "https://tec.openplanner.team/stops/N522afa"], ["https://tec.openplanner.team/stops/LDOastr2", "https://tec.openplanner.team/stops/LDOviad2"], ["https://tec.openplanner.team/stops/LLVcent1", "https://tec.openplanner.team/stops/X575afb"], ["https://tec.openplanner.team/stops/LHHindu2", "https://tec.openplanner.team/stops/LHHronh2"], ["https://tec.openplanner.team/stops/N222acb", "https://tec.openplanner.team/stops/X222add"], ["https://tec.openplanner.team/stops/LMHoha-1", "https://tec.openplanner.team/stops/LMHtill1"], ["https://tec.openplanner.team/stops/X663ara", "https://tec.openplanner.team/stops/X663arb"], ["https://tec.openplanner.team/stops/H1sy148a", "https://tec.openplanner.team/stops/H1sy148b"], ["https://tec.openplanner.team/stops/H1ba100b", "https://tec.openplanner.team/stops/H1ba111a"], ["https://tec.openplanner.team/stops/LNAplac2", "https://tec.openplanner.team/stops/LSSvill1"], ["https://tec.openplanner.team/stops/X638aaa", "https://tec.openplanner.team/stops/X638abb"], ["https://tec.openplanner.team/stops/H4mo164a", "https://tec.openplanner.team/stops/H4tg162a"], ["https://tec.openplanner.team/stops/LBIaepo2", "https://tec.openplanner.team/stops/LBIaepo4"], ["https://tec.openplanner.team/stops/N501gaa", "https://tec.openplanner.team/stops/N501zda"], ["https://tec.openplanner.team/stops/LeLbegl1", "https://tec.openplanner.team/stops/LeLbegl2"], ["https://tec.openplanner.team/stops/N584bba", "https://tec.openplanner.team/stops/N584boa"], ["https://tec.openplanner.team/stops/Bgliegl1", "https://tec.openplanner.team/stops/Bglitro3"], ["https://tec.openplanner.team/stops/Bwaubru2", "https://tec.openplanner.team/stops/Bwaunou1"], ["https://tec.openplanner.team/stops/LHycent*", "https://tec.openplanner.team/stops/LXofans2"], ["https://tec.openplanner.team/stops/N565acb", "https://tec.openplanner.team/stops/N565aea"], ["https://tec.openplanner.team/stops/LPOecol1", "https://tec.openplanner.team/stops/LPOwaut2"], ["https://tec.openplanner.team/stops/Bnilcim1", "https://tec.openplanner.team/stops/Bnilcim2"], ["https://tec.openplanner.team/stops/N511alb", "https://tec.openplanner.team/stops/N511amb"], ["https://tec.openplanner.team/stops/H1hw118b", "https://tec.openplanner.team/stops/H1hw121a"], ["https://tec.openplanner.team/stops/H4lz118a", "https://tec.openplanner.team/stops/H4th140b"], ["https://tec.openplanner.team/stops/H1eo103a", "https://tec.openplanner.team/stops/H1eo107b"], ["https://tec.openplanner.team/stops/Broscha2", "https://tec.openplanner.team/stops/Cobvill1"], ["https://tec.openplanner.team/stops/Cnachat1", "https://tec.openplanner.team/stops/NC14aqb"], ["https://tec.openplanner.team/stops/H1ml109a", "https://tec.openplanner.team/stops/H1ml111b"], ["https://tec.openplanner.team/stops/Bitrecu1", "https://tec.openplanner.team/stops/Bitrmde2"], ["https://tec.openplanner.team/stops/H2bh119a", "https://tec.openplanner.team/stops/H2lc172a"], ["https://tec.openplanner.team/stops/N103abb", "https://tec.openplanner.team/stops/N103aca"], ["https://tec.openplanner.team/stops/H1ba116b", "https://tec.openplanner.team/stops/H1ba120b"], ["https://tec.openplanner.team/stops/LBGcent2", "https://tec.openplanner.team/stops/LBGjacq2"], ["https://tec.openplanner.team/stops/N170aga", "https://tec.openplanner.team/stops/N571aaa"], ["https://tec.openplanner.team/stops/Lemacac2", "https://tec.openplanner.team/stops/Lemmeha2"], ["https://tec.openplanner.team/stops/Laddelc2", "https://tec.openplanner.team/stops/Ladfoot1"], ["https://tec.openplanner.team/stops/LeUbell1", "https://tec.openplanner.team/stops/LeUsch%C3%B61"], ["https://tec.openplanner.team/stops/LTEziho2", "https://tec.openplanner.team/stops/LTEzinn1"], ["https://tec.openplanner.team/stops/Bcsebea3", "https://tec.openplanner.team/stops/Bmsgmon2"], ["https://tec.openplanner.team/stops/LAWcorn2", "https://tec.openplanner.team/stops/LAWxhen1"], ["https://tec.openplanner.team/stops/X604aab", "https://tec.openplanner.team/stops/X634aha"], ["https://tec.openplanner.team/stops/N554aab", "https://tec.openplanner.team/stops/N555aba"], ["https://tec.openplanner.team/stops/LLt43--2", "https://tec.openplanner.team/stops/NL57ajb"], ["https://tec.openplanner.team/stops/X817ada", "https://tec.openplanner.team/stops/X817adb"], ["https://tec.openplanner.team/stops/X741aca", "https://tec.openplanner.team/stops/X741acb"], ["https://tec.openplanner.team/stops/Bgntpla2", "https://tec.openplanner.team/stops/Bgnttma2"], ["https://tec.openplanner.team/stops/X605aea", "https://tec.openplanner.team/stops/X605ala"], ["https://tec.openplanner.team/stops/H1er109a", "https://tec.openplanner.team/stops/H1so131e"], ["https://tec.openplanner.team/stops/Bblaniv2", "https://tec.openplanner.team/stops/Bwatms09"], ["https://tec.openplanner.team/stops/LFPdeme2", "https://tec.openplanner.team/stops/LFProt-1"], ["https://tec.openplanner.team/stops/N535ahb", "https://tec.openplanner.team/stops/N535aib"], ["https://tec.openplanner.team/stops/LWOwaer1", "https://tec.openplanner.team/stops/LWOwaer2"], ["https://tec.openplanner.team/stops/X601baa", "https://tec.openplanner.team/stops/X601bwa"], ["https://tec.openplanner.team/stops/H1wg124b", "https://tec.openplanner.team/stops/H1wg126a"], ["https://tec.openplanner.team/stops/H1gh147b", "https://tec.openplanner.team/stops/H1gh168a"], ["https://tec.openplanner.team/stops/LVIdeva1", "https://tec.openplanner.team/stops/LVIdeva2"], ["https://tec.openplanner.team/stops/Llgrass2", "https://tec.openplanner.team/stops/Llgrull2"], ["https://tec.openplanner.team/stops/X818apa", "https://tec.openplanner.team/stops/X818apb"], ["https://tec.openplanner.team/stops/H1ms268b", "https://tec.openplanner.team/stops/H1ms309a"], ["https://tec.openplanner.team/stops/Blsmcha1", "https://tec.openplanner.team/stops/Blsmcha2"], ["https://tec.openplanner.team/stops/LWaccom1", "https://tec.openplanner.team/stops/LWaccom2"], ["https://tec.openplanner.team/stops/LbUkrin1", "https://tec.openplanner.team/stops/LlSbuch2"], ["https://tec.openplanner.team/stops/LOUsorb1", "https://tec.openplanner.team/stops/LOUsorb2"], ["https://tec.openplanner.team/stops/N308apa", "https://tec.openplanner.team/stops/N331afa"], ["https://tec.openplanner.team/stops/LrAdrie5", "https://tec.openplanner.team/stops/LrAneud2"], ["https://tec.openplanner.team/stops/H4hg154a", "https://tec.openplanner.team/stops/H4mv189b"], ["https://tec.openplanner.team/stops/X601dba", "https://tec.openplanner.team/stops/X626anb"], ["https://tec.openplanner.team/stops/H4ty305d", "https://tec.openplanner.team/stops/H4ty416a"], ["https://tec.openplanner.team/stops/Bdvmc031", "https://tec.openplanner.team/stops/Bdvmc432"], ["https://tec.openplanner.team/stops/N232awa", "https://tec.openplanner.team/stops/N232bha"], ["https://tec.openplanner.team/stops/Bjdsjso1", "https://tec.openplanner.team/stops/Bjdspon1"], ["https://tec.openplanner.team/stops/Bmsgcap1", "https://tec.openplanner.team/stops/Bmsgstj1"], ["https://tec.openplanner.team/stops/Bwatber1", "https://tec.openplanner.team/stops/Bwatpro2"], ["https://tec.openplanner.team/stops/X837ahb", "https://tec.openplanner.team/stops/X889aeb"], ["https://tec.openplanner.team/stops/LLxconj2", "https://tec.openplanner.team/stops/LWOwonc1"], ["https://tec.openplanner.team/stops/Bhenmal2", "https://tec.openplanner.team/stops/Bhenpln1"], ["https://tec.openplanner.team/stops/Bjaufca1", "https://tec.openplanner.team/stops/Bjauwar1"], ["https://tec.openplanner.team/stops/Bnivrec2", "https://tec.openplanner.team/stops/Bnivtec2"], ["https://tec.openplanner.team/stops/X801cib", "https://tec.openplanner.team/stops/X836acb"], ["https://tec.openplanner.team/stops/Clrecol1", "https://tec.openplanner.team/stops/Clrmarl2"], ["https://tec.openplanner.team/stops/X808abb", "https://tec.openplanner.team/stops/X808aea"], ["https://tec.openplanner.team/stops/LHFappe4", "https://tec.openplanner.team/stops/LVEmohi2"], ["https://tec.openplanner.team/stops/N118aga", "https://tec.openplanner.team/stops/N118ayb"], ["https://tec.openplanner.team/stops/X754aea", "https://tec.openplanner.team/stops/X754anb"], ["https://tec.openplanner.team/stops/Lchsart1", "https://tec.openplanner.team/stops/Lchsart2"], ["https://tec.openplanner.team/stops/H4tm140b", "https://tec.openplanner.team/stops/H5ma186a"], ["https://tec.openplanner.team/stops/LNAbras4", "https://tec.openplanner.team/stops/LScgore2"], ["https://tec.openplanner.team/stops/X836aba", "https://tec.openplanner.team/stops/X837ahb"], ["https://tec.openplanner.team/stops/Blascim1", "https://tec.openplanner.team/stops/Blasclo2"], ["https://tec.openplanner.team/stops/Bwatpai1", "https://tec.openplanner.team/stops/Bwatprp2"], ["https://tec.openplanner.team/stops/X638aqb", "https://tec.openplanner.team/stops/X652aab"], ["https://tec.openplanner.team/stops/N522aua", "https://tec.openplanner.team/stops/N529aea"], ["https://tec.openplanner.team/stops/Bmrl4ch2", "https://tec.openplanner.team/stops/Bmrlegl2"], ["https://tec.openplanner.team/stops/X371acb", "https://tec.openplanner.team/stops/X371agb"], ["https://tec.openplanner.team/stops/LDArich1", "https://tec.openplanner.team/stops/LDArich2"], ["https://tec.openplanner.team/stops/X790aab", "https://tec.openplanner.team/stops/X790aba"], ["https://tec.openplanner.team/stops/Berncim4", "https://tec.openplanner.team/stops/Bernpla1"], ["https://tec.openplanner.team/stops/LHZpara1", "https://tec.openplanner.team/stops/LHZpara2"], ["https://tec.openplanner.team/stops/LVlfooz3", "https://tec.openplanner.team/stops/LVlfooz4"], ["https://tec.openplanner.team/stops/N101aha", "https://tec.openplanner.team/stops/N101aob"], ["https://tec.openplanner.team/stops/Cmamons2", "https://tec.openplanner.team/stops/Cmasncb1"], ["https://tec.openplanner.team/stops/Bjodfco1", "https://tec.openplanner.team/stops/NR21aca"], ["https://tec.openplanner.team/stops/N368afa", "https://tec.openplanner.team/stops/N368afb"], ["https://tec.openplanner.team/stops/X629aaa", "https://tec.openplanner.team/stops/X629acb"], ["https://tec.openplanner.team/stops/LrAiter1", "https://tec.openplanner.team/stops/LrAmuhl2"], ["https://tec.openplanner.team/stops/N507aia", "https://tec.openplanner.team/stops/N507aic"], ["https://tec.openplanner.team/stops/Bmlnbpr2", "https://tec.openplanner.team/stops/Bmlnmbo2"], ["https://tec.openplanner.team/stops/LJOvill1", "https://tec.openplanner.team/stops/LJOvill2"], ["https://tec.openplanner.team/stops/H4be107b", "https://tec.openplanner.team/stops/H5bl122b"], ["https://tec.openplanner.team/stops/X607aea", "https://tec.openplanner.team/stops/X607ajb"], ["https://tec.openplanner.team/stops/Bvirduj2", "https://tec.openplanner.team/stops/Bvirmav2"], ["https://tec.openplanner.team/stops/H4eh101b", "https://tec.openplanner.team/stops/H4eh104a"], ["https://tec.openplanner.team/stops/N170adb", "https://tec.openplanner.team/stops/N170agb"], ["https://tec.openplanner.team/stops/X826aha", "https://tec.openplanner.team/stops/X860aba"], ["https://tec.openplanner.team/stops/N214adb", "https://tec.openplanner.team/stops/N214aeb"], ["https://tec.openplanner.team/stops/H4mo184a", "https://tec.openplanner.team/stops/H4mo184b"], ["https://tec.openplanner.team/stops/X982aea", "https://tec.openplanner.team/stops/X982aja"], ["https://tec.openplanner.team/stops/LSkathe1", "https://tec.openplanner.team/stops/LSkcomb2"], ["https://tec.openplanner.team/stops/X617aga", "https://tec.openplanner.team/stops/X617agb"], ["https://tec.openplanner.team/stops/N254afa", "https://tec.openplanner.team/stops/N254agb"], ["https://tec.openplanner.team/stops/Lmohomv2", "https://tec.openplanner.team/stops/Lmopast1"], ["https://tec.openplanner.team/stops/X782aba", "https://tec.openplanner.team/stops/X782aca"], ["https://tec.openplanner.team/stops/N531aqa", "https://tec.openplanner.team/stops/N531asc"], ["https://tec.openplanner.team/stops/H4ir162b", "https://tec.openplanner.team/stops/H4ir166a"], ["https://tec.openplanner.team/stops/LWOsudr2", "https://tec.openplanner.team/stops/LWOunio2"], ["https://tec.openplanner.team/stops/N501aba", "https://tec.openplanner.team/stops/N501aca"], ["https://tec.openplanner.team/stops/LMebove1", "https://tec.openplanner.team/stops/LMebove2"], ["https://tec.openplanner.team/stops/Ljufler1", "https://tec.openplanner.team/stops/Ljufler2"], ["https://tec.openplanner.team/stops/LJvbane1", "https://tec.openplanner.team/stops/X717aia"], ["https://tec.openplanner.team/stops/Lmlcher1", "https://tec.openplanner.team/stops/Lmlscie1"], ["https://tec.openplanner.team/stops/LeYloos1", "https://tec.openplanner.team/stops/LeYteeh1"], ["https://tec.openplanner.team/stops/Ctmmana2", "https://tec.openplanner.team/stops/Cvvchea2"], ["https://tec.openplanner.team/stops/Ctrchat2", "https://tec.openplanner.team/stops/Ctrsema2"], ["https://tec.openplanner.team/stops/H4ty310a", "https://tec.openplanner.team/stops/H4ty351b"], ["https://tec.openplanner.team/stops/X659aaa", "https://tec.openplanner.team/stops/X659ayb"], ["https://tec.openplanner.team/stops/Blhugmo1", "https://tec.openplanner.team/stops/Blhugmo2"], ["https://tec.openplanner.team/stops/LrOfrie1", "https://tec.openplanner.team/stops/LrOgara3"], ["https://tec.openplanner.team/stops/Cbbcent1", "https://tec.openplanner.team/stops/Cvregl2"], ["https://tec.openplanner.team/stops/N501fdc", "https://tec.openplanner.team/stops/N501lza"], ["https://tec.openplanner.team/stops/Lvcchev2", "https://tec.openplanner.team/stops/Lvcchev3"], ["https://tec.openplanner.team/stops/LbUbutg2", "https://tec.openplanner.team/stops/LbUpost2"], ["https://tec.openplanner.team/stops/Lselibe2", "https://tec.openplanner.team/stops/Lsevill1"], ["https://tec.openplanner.team/stops/H4bs110a", "https://tec.openplanner.team/stops/H5pe139a"], ["https://tec.openplanner.team/stops/Cbblacb1", "https://tec.openplanner.team/stops/Cbblacb2"], ["https://tec.openplanner.team/stops/H1je216a", "https://tec.openplanner.team/stops/H1je225a"], ["https://tec.openplanner.team/stops/H2ma203b", "https://tec.openplanner.team/stops/H2ma206a"], ["https://tec.openplanner.team/stops/Bbonbcr2", "https://tec.openplanner.team/stops/Bbonegl2"], ["https://tec.openplanner.team/stops/Cjumade4", "https://tec.openplanner.team/stops/CMmade2"], ["https://tec.openplanner.team/stops/H5rx134a", "https://tec.openplanner.team/stops/H5rx135a"], ["https://tec.openplanner.team/stops/H4wi162b", "https://tec.openplanner.team/stops/H4wi164b"], ["https://tec.openplanner.team/stops/Lbrhvl-*", "https://tec.openplanner.team/stops/Lgrdefr4"], ["https://tec.openplanner.team/stops/LMechpl1", "https://tec.openplanner.team/stops/LMeperk1"], ["https://tec.openplanner.team/stops/Cwfmoul2", "https://tec.openplanner.team/stops/NC12aaa"], ["https://tec.openplanner.team/stops/LSZlegr1", "https://tec.openplanner.team/stops/LWycarr1"], ["https://tec.openplanner.team/stops/Cforpet2", "https://tec.openplanner.team/stops/CMpetr1"], ["https://tec.openplanner.team/stops/N536aoa", "https://tec.openplanner.team/stops/N536aob"], ["https://tec.openplanner.team/stops/X806aja", "https://tec.openplanner.team/stops/X807aca"], ["https://tec.openplanner.team/stops/H1qu109a", "https://tec.openplanner.team/stops/H1qu109b"], ["https://tec.openplanner.team/stops/LAYathe1", "https://tec.openplanner.team/stops/LAYgare1"], ["https://tec.openplanner.team/stops/N550ada", "https://tec.openplanner.team/stops/N550ama"], ["https://tec.openplanner.team/stops/X654ahb", "https://tec.openplanner.team/stops/X670arb"], ["https://tec.openplanner.team/stops/LSNchen3", "https://tec.openplanner.team/stops/LSNnoul1"], ["https://tec.openplanner.team/stops/X670aob", "https://tec.openplanner.team/stops/X670asa"], ["https://tec.openplanner.team/stops/Lcavign1", "https://tec.openplanner.team/stops/Lvchaus2"], ["https://tec.openplanner.team/stops/H4br108b", "https://tec.openplanner.team/stops/H4br110a"], ["https://tec.openplanner.team/stops/X657ahb", "https://tec.openplanner.team/stops/X657ana"], ["https://tec.openplanner.team/stops/Cmaegal1", "https://tec.openplanner.team/stops/Cmastni1"], ["https://tec.openplanner.team/stops/H4mx116b", "https://tec.openplanner.team/stops/H4po124b"], ["https://tec.openplanner.team/stops/N351ata", "https://tec.openplanner.team/stops/N351atb"], ["https://tec.openplanner.team/stops/LLgcent1", "https://tec.openplanner.team/stops/LLgcent2"], ["https://tec.openplanner.team/stops/LvAwere1", "https://tec.openplanner.team/stops/LwEdorf2"], ["https://tec.openplanner.team/stops/H4rx141b", "https://tec.openplanner.team/stops/H4rx176b"], ["https://tec.openplanner.team/stops/N149ahc", "https://tec.openplanner.team/stops/N154ada"], ["https://tec.openplanner.team/stops/H1hc151a", "https://tec.openplanner.team/stops/H4be149b"], ["https://tec.openplanner.team/stops/NR21aaa", "https://tec.openplanner.team/stops/NR21afa"], ["https://tec.openplanner.team/stops/Cbiseur1", "https://tec.openplanner.team/stops/Cthenmi1"], ["https://tec.openplanner.team/stops/Cdadest2", "https://tec.openplanner.team/stops/Cdamest1"], ["https://tec.openplanner.team/stops/LAMmc--1", "https://tec.openplanner.team/stops/LAMrich1"], ["https://tec.openplanner.team/stops/X831aaa", "https://tec.openplanner.team/stops/X831aab"], ["https://tec.openplanner.team/stops/N261aba", "https://tec.openplanner.team/stops/N261aca"], ["https://tec.openplanner.team/stops/N222aab", "https://tec.openplanner.team/stops/X222afa"], ["https://tec.openplanner.team/stops/N137aeb", "https://tec.openplanner.team/stops/N137afa"], ["https://tec.openplanner.team/stops/Livgera5", "https://tec.openplanner.team/stops/Livmoul2"], ["https://tec.openplanner.team/stops/Bcsemon2", "https://tec.openplanner.team/stops/Bsmgsuz2"], ["https://tec.openplanner.team/stops/H4jm116a", "https://tec.openplanner.team/stops/H4sm247a"], ["https://tec.openplanner.team/stops/H1ms272b", "https://tec.openplanner.team/stops/H1ms279a"], ["https://tec.openplanner.team/stops/N573aaa", "https://tec.openplanner.team/stops/N573aha"], ["https://tec.openplanner.team/stops/X823ada", "https://tec.openplanner.team/stops/X823adb"], ["https://tec.openplanner.team/stops/Ccuhaie1", "https://tec.openplanner.team/stops/Ccutrav5"], ["https://tec.openplanner.team/stops/Bpthfus2", "https://tec.openplanner.team/stops/Bpthrsp1"], ["https://tec.openplanner.team/stops/Llgfont1", "https://tec.openplanner.team/stops/Llgfont4"], ["https://tec.openplanner.team/stops/X687aaa", "https://tec.openplanner.team/stops/X687aea"], ["https://tec.openplanner.team/stops/LLedoya1", "https://tec.openplanner.team/stops/X576agb"], ["https://tec.openplanner.team/stops/N534asb", "https://tec.openplanner.team/stops/N534awb"], ["https://tec.openplanner.team/stops/LwAlont2", "https://tec.openplanner.team/stops/LwAlont4"], ["https://tec.openplanner.team/stops/X949aib", "https://tec.openplanner.team/stops/X949ajb"], ["https://tec.openplanner.team/stops/X840aba", "https://tec.openplanner.team/stops/X840acb"], ["https://tec.openplanner.team/stops/LaMades1", "https://tec.openplanner.team/stops/LaMwies2"], ["https://tec.openplanner.team/stops/LkEbran1", "https://tec.openplanner.team/stops/LkEbran2"], ["https://tec.openplanner.team/stops/N270aab", "https://tec.openplanner.team/stops/N270aba"], ["https://tec.openplanner.team/stops/X823aga", "https://tec.openplanner.team/stops/X823agb"], ["https://tec.openplanner.team/stops/Bbrycar1", "https://tec.openplanner.team/stops/Bsampli2"], ["https://tec.openplanner.team/stops/H1lb137b", "https://tec.openplanner.team/stops/H1pa106b"], ["https://tec.openplanner.team/stops/H1sy138b", "https://tec.openplanner.team/stops/H1sy145b"], ["https://tec.openplanner.team/stops/H4rm110a", "https://tec.openplanner.team/stops/H4rm114a"], ["https://tec.openplanner.team/stops/H1so133a", "https://tec.openplanner.team/stops/H1so139d"], ["https://tec.openplanner.team/stops/X941afa", "https://tec.openplanner.team/stops/X941agb"], ["https://tec.openplanner.team/stops/H1qu102b", "https://tec.openplanner.team/stops/H1qu120a"], ["https://tec.openplanner.team/stops/Cprgran2", "https://tec.openplanner.team/stops/NC44aea"], ["https://tec.openplanner.team/stops/Clrcomb1", "https://tec.openplanner.team/stops/Clrplac1"], ["https://tec.openplanner.team/stops/Bpercsp1", "https://tec.openplanner.team/stops/N524ajb"], ["https://tec.openplanner.team/stops/Bwategl1", "https://tec.openplanner.team/stops/Bwatmco1"], ["https://tec.openplanner.team/stops/N501dna", "https://tec.openplanner.team/stops/N501ena"], ["https://tec.openplanner.team/stops/LNCdoma3", "https://tec.openplanner.team/stops/LRRchen2"], ["https://tec.openplanner.team/stops/Lsesabl1", "https://tec.openplanner.team/stops/Lsevill1"], ["https://tec.openplanner.team/stops/Bitrcan2", "https://tec.openplanner.team/stops/Bitrcro2"], ["https://tec.openplanner.team/stops/Bbiehev2", "https://tec.openplanner.team/stops/Bbiepre2"], ["https://tec.openplanner.team/stops/LBdmarr1", "https://tec.openplanner.team/stops/LWMcent1"], ["https://tec.openplanner.team/stops/X767aea", "https://tec.openplanner.team/stops/X769aaa"], ["https://tec.openplanner.team/stops/N501dsa", "https://tec.openplanner.team/stops/N501dta"], ["https://tec.openplanner.team/stops/X654agb", "https://tec.openplanner.team/stops/X654akb"], ["https://tec.openplanner.team/stops/LVllieg1", "https://tec.openplanner.team/stops/LVltige2"], ["https://tec.openplanner.team/stops/X725aec", "https://tec.openplanner.team/stops/X725apb"], ["https://tec.openplanner.team/stops/LcRkirc2", "https://tec.openplanner.team/stops/LcRmuhl2"], ["https://tec.openplanner.team/stops/X879aeb", "https://tec.openplanner.team/stops/X879aob"], ["https://tec.openplanner.team/stops/Bzlufbo2", "https://tec.openplanner.team/stops/Bzluqga1"], ["https://tec.openplanner.team/stops/H4au100b", "https://tec.openplanner.team/stops/H4cp103a"], ["https://tec.openplanner.team/stops/N550ala", "https://tec.openplanner.team/stops/N565aaa"], ["https://tec.openplanner.team/stops/LhIfrie2", "https://tec.openplanner.team/stops/LrDsage2"], ["https://tec.openplanner.team/stops/LCRfavr2", "https://tec.openplanner.team/stops/LTywyna1"], ["https://tec.openplanner.team/stops/X790aca", "https://tec.openplanner.team/stops/X790aga"], ["https://tec.openplanner.team/stops/LeI39--4", "https://tec.openplanner.team/stops/LeIkreu1"], ["https://tec.openplanner.team/stops/X904ahb", "https://tec.openplanner.team/stops/X904anb"], ["https://tec.openplanner.team/stops/LHNcreh2", "https://tec.openplanner.team/stops/LHNvill2"], ["https://tec.openplanner.team/stops/N232bqa", "https://tec.openplanner.team/stops/N261abb"], ["https://tec.openplanner.team/stops/NL80aca", "https://tec.openplanner.team/stops/NL80aub"], ["https://tec.openplanner.team/stops/H2hp116a", "https://tec.openplanner.team/stops/H2ll172b"], ["https://tec.openplanner.team/stops/LHXfont1", "https://tec.openplanner.team/stops/LLVfoss1"], ["https://tec.openplanner.team/stops/Bquebut1", "https://tec.openplanner.team/stops/Bquecge2"], ["https://tec.openplanner.team/stops/Llgaba-1", "https://tec.openplanner.team/stops/Llgatel2"], ["https://tec.openplanner.team/stops/Cgocalv3", "https://tec.openplanner.team/stops/Cgocapu2"], ["https://tec.openplanner.team/stops/H1qu100d", "https://tec.openplanner.team/stops/H1qu116c"], ["https://tec.openplanner.team/stops/H1mb136b", "https://tec.openplanner.team/stops/H1mb168a"], ["https://tec.openplanner.team/stops/X661ara", "https://tec.openplanner.team/stops/X661asa"], ["https://tec.openplanner.team/stops/Becepon2", "https://tec.openplanner.team/stops/H2ec106b"], ["https://tec.openplanner.team/stops/Ladverv2", "https://tec.openplanner.team/stops/Ldipost1"], ["https://tec.openplanner.team/stops/Blhulor2", "https://tec.openplanner.team/stops/Blhusor1"], ["https://tec.openplanner.team/stops/LLUcdoy1", "https://tec.openplanner.team/stops/LLUcdoy2"], ["https://tec.openplanner.team/stops/Bwatmlo2", "https://tec.openplanner.team/stops/Bwatran1"], ["https://tec.openplanner.team/stops/X342aaa", "https://tec.openplanner.team/stops/X342aba"], ["https://tec.openplanner.team/stops/N538afb", "https://tec.openplanner.team/stops/N539ana"], ["https://tec.openplanner.team/stops/N233aba", "https://tec.openplanner.team/stops/N242agb"], ["https://tec.openplanner.team/stops/Cfaetoi2", "https://tec.openplanner.team/stops/Cpiegli2"], ["https://tec.openplanner.team/stops/Cbecarr1", "https://tec.openplanner.team/stops/N161abd"], ["https://tec.openplanner.team/stops/LACeg--1", "https://tec.openplanner.team/stops/LAChann1"], ["https://tec.openplanner.team/stops/X754aga", "https://tec.openplanner.team/stops/X754ala"], ["https://tec.openplanner.team/stops/LLrcomb1", "https://tec.openplanner.team/stops/LLrelec1"], ["https://tec.openplanner.team/stops/LSogite1", "https://tec.openplanner.team/stops/LSopost1"], ["https://tec.openplanner.team/stops/Brsgfbl1", "https://tec.openplanner.team/stops/Brsgfbl4"], ["https://tec.openplanner.team/stops/Bgzddfh2", "https://tec.openplanner.team/stops/Bgzddur1"], ["https://tec.openplanner.team/stops/H4es111b", "https://tec.openplanner.team/stops/H4ln128a"], ["https://tec.openplanner.team/stops/Ccoha602", "https://tec.openplanner.team/stops/Cgplhoi1"], ["https://tec.openplanner.team/stops/X666aha", "https://tec.openplanner.team/stops/X666aia"], ["https://tec.openplanner.team/stops/LSTchen2", "https://tec.openplanner.team/stops/LSTdero2"], ["https://tec.openplanner.team/stops/H4by116b", "https://tec.openplanner.team/stops/H4by117b"], ["https://tec.openplanner.team/stops/X718aea", "https://tec.openplanner.team/stops/X718afb"], ["https://tec.openplanner.team/stops/N120afa", "https://tec.openplanner.team/stops/N120aga"], ["https://tec.openplanner.team/stops/H1ho131a", "https://tec.openplanner.team/stops/H1ho136b"], ["https://tec.openplanner.team/stops/Bdoncar2", "https://tec.openplanner.team/stops/Bdoncen2"], ["https://tec.openplanner.team/stops/Blthbss1", "https://tec.openplanner.team/stops/Bmlnsmv1"], ["https://tec.openplanner.team/stops/LMsheid1", "https://tec.openplanner.team/stops/LMsheid2"], ["https://tec.openplanner.team/stops/X882akb", "https://tec.openplanner.team/stops/X882amb"], ["https://tec.openplanner.team/stops/H1eo106b", "https://tec.openplanner.team/stops/H1mj126a"], ["https://tec.openplanner.team/stops/LARarge1", "https://tec.openplanner.team/stops/LHAvall1"], ["https://tec.openplanner.team/stops/X840ada", "https://tec.openplanner.team/stops/X840adb"], ["https://tec.openplanner.team/stops/N523aaa", "https://tec.openplanner.team/stops/N523acb"], ["https://tec.openplanner.team/stops/Ladmoul1", "https://tec.openplanner.team/stops/Ladppir1"], ["https://tec.openplanner.team/stops/X908ada", "https://tec.openplanner.team/stops/X955ahb"], ["https://tec.openplanner.team/stops/LOljean2", "https://tec.openplanner.team/stops/LVTforg1"], ["https://tec.openplanner.team/stops/H2ca102a", "https://tec.openplanner.team/stops/H2ca102b"], ["https://tec.openplanner.team/stops/N232cea", "https://tec.openplanner.team/stops/N232ceb"], ["https://tec.openplanner.team/stops/Ccutill1", "https://tec.openplanner.team/stops/Ccutill2"], ["https://tec.openplanner.team/stops/Becebju1", "https://tec.openplanner.team/stops/Bnstlna1"], ["https://tec.openplanner.team/stops/X746agb", "https://tec.openplanner.team/stops/X746ahc"], ["https://tec.openplanner.team/stops/Lprdavi1", "https://tec.openplanner.team/stops/Lprdavi2"], ["https://tec.openplanner.team/stops/LHupont2", "https://tec.openplanner.team/stops/LHurobi2"], ["https://tec.openplanner.team/stops/Llggram1", "https://tec.openplanner.team/stops/Llggram2"], ["https://tec.openplanner.team/stops/Cgohnda1", "https://tec.openplanner.team/stops/Cgohnda2"], ["https://tec.openplanner.team/stops/LEN42--1", "https://tec.openplanner.team/stops/LEN42--2"], ["https://tec.openplanner.team/stops/LNEgare*", "https://tec.openplanner.team/stops/LNEgaul4"], ["https://tec.openplanner.team/stops/LFRhock1", "https://tec.openplanner.team/stops/LFRhock2"], ["https://tec.openplanner.team/stops/LHUchh-1", "https://tec.openplanner.team/stops/LHUloui1"], ["https://tec.openplanner.team/stops/LFMkrin2", "https://tec.openplanner.team/stops/LFMkrut1"], ["https://tec.openplanner.team/stops/Bnivphm1", "https://tec.openplanner.team/stops/Bnivphm2"], ["https://tec.openplanner.team/stops/X880afb", "https://tec.openplanner.team/stops/X880age"], ["https://tec.openplanner.team/stops/H4ka194a", "https://tec.openplanner.team/stops/H4ka195a"], ["https://tec.openplanner.team/stops/H4be109a", "https://tec.openplanner.team/stops/H4be114a"], ["https://tec.openplanner.team/stops/N539acb", "https://tec.openplanner.team/stops/N539akb"], ["https://tec.openplanner.team/stops/H2mg136a", "https://tec.openplanner.team/stops/H2mg140c"], ["https://tec.openplanner.team/stops/X897aod", "https://tec.openplanner.team/stops/X897aqa"], ["https://tec.openplanner.team/stops/X728ada", "https://tec.openplanner.team/stops/X746amb"], ["https://tec.openplanner.team/stops/N104afa", "https://tec.openplanner.team/stops/N118bba"], ["https://tec.openplanner.team/stops/LAvambr2", "https://tec.openplanner.team/stops/NL37aob"], ["https://tec.openplanner.team/stops/LTaabba2", "https://tec.openplanner.team/stops/LTaxhos2"], ["https://tec.openplanner.team/stops/LGLdeni2", "https://tec.openplanner.team/stops/LGLecol1"], ["https://tec.openplanner.team/stops/Chpatel1", "https://tec.openplanner.team/stops/Chpfoli3"], ["https://tec.openplanner.team/stops/H4bh101a", "https://tec.openplanner.team/stops/H4bh101b"], ["https://tec.openplanner.team/stops/Ccyfede1", "https://tec.openplanner.team/stops/Ccyfede2"], ["https://tec.openplanner.team/stops/X804aya", "https://tec.openplanner.team/stops/X804ayb"], ["https://tec.openplanner.team/stops/Lmopeup1", "https://tec.openplanner.team/stops/Lmopeup2"], ["https://tec.openplanner.team/stops/X982bra", "https://tec.openplanner.team/stops/X982bzb"], ["https://tec.openplanner.team/stops/NC11afa", "https://tec.openplanner.team/stops/NC11afb"], ["https://tec.openplanner.team/stops/Bbbksth2", "https://tec.openplanner.team/stops/Bhmmhde1"], ["https://tec.openplanner.team/stops/N118aaa", "https://tec.openplanner.team/stops/N118aab"], ["https://tec.openplanner.team/stops/LBEoblu2", "https://tec.openplanner.team/stops/Lemarti2"], ["https://tec.openplanner.team/stops/H4oe147a", "https://tec.openplanner.team/stops/H4oe148b"], ["https://tec.openplanner.team/stops/N424abb", "https://tec.openplanner.team/stops/NH01abc"], ["https://tec.openplanner.team/stops/Lseathe2", "https://tec.openplanner.team/stops/Lseboia2"], ["https://tec.openplanner.team/stops/X923ada", "https://tec.openplanner.team/stops/X949aeb"], ["https://tec.openplanner.team/stops/Bcrnrpc2", "https://tec.openplanner.team/stops/Bcrnvic2"], ["https://tec.openplanner.team/stops/H4pi131a", "https://tec.openplanner.team/stops/H4th141a"], ["https://tec.openplanner.team/stops/Cfcgrat1", "https://tec.openplanner.team/stops/Cfcstan1"], ["https://tec.openplanner.team/stops/X982baa", "https://tec.openplanner.team/stops/X996ada"], ["https://tec.openplanner.team/stops/N564aba", "https://tec.openplanner.team/stops/N564ada"], ["https://tec.openplanner.team/stops/LBEmich1", "https://tec.openplanner.team/stops/LBEssab2"], ["https://tec.openplanner.team/stops/Cpl4bra1", "https://tec.openplanner.team/stops/Cpl4bra3"], ["https://tec.openplanner.team/stops/Cgynuto1", "https://tec.openplanner.team/stops/Cgynuto2"], ["https://tec.openplanner.team/stops/H2fy121b", "https://tec.openplanner.team/stops/H2fy122b"], ["https://tec.openplanner.team/stops/X808adb", "https://tec.openplanner.team/stops/X808amb"], ["https://tec.openplanner.team/stops/Cchabat1", "https://tec.openplanner.team/stops/Clojone2"], ["https://tec.openplanner.team/stops/N423acb", "https://tec.openplanner.team/stops/N424aeb"], ["https://tec.openplanner.team/stops/Bnivgen2", "https://tec.openplanner.team/stops/Bnivpso1"], ["https://tec.openplanner.team/stops/H2hl113a", "https://tec.openplanner.team/stops/H2hp124a"], ["https://tec.openplanner.team/stops/X601cga", "https://tec.openplanner.team/stops/X601cgb"], ["https://tec.openplanner.team/stops/H1le128c", "https://tec.openplanner.team/stops/H1le129a"], ["https://tec.openplanner.team/stops/X601bpb", "https://tec.openplanner.team/stops/X601bzb"], ["https://tec.openplanner.team/stops/H2ll180a", "https://tec.openplanner.team/stops/H2ll184b"], ["https://tec.openplanner.team/stops/X786abb", "https://tec.openplanner.team/stops/X786acb"], ["https://tec.openplanner.team/stops/LWOplat1", "https://tec.openplanner.team/stops/LWOunio2"], ["https://tec.openplanner.team/stops/Cgxchan2", "https://tec.openplanner.team/stops/Cgxpair1"], ["https://tec.openplanner.team/stops/H1fa118a", "https://tec.openplanner.team/stops/H1fa118b"], ["https://tec.openplanner.team/stops/LMHeg--1", "https://tec.openplanner.team/stops/LMHeg--2"], ["https://tec.openplanner.team/stops/Bnodcab1", "https://tec.openplanner.team/stops/Bnodtir4"], ["https://tec.openplanner.team/stops/H1qu106b", "https://tec.openplanner.team/stops/H1qu116b"], ["https://tec.openplanner.team/stops/H4ne145b", "https://tec.openplanner.team/stops/H4wa153b"], ["https://tec.openplanner.team/stops/LCx728-1", "https://tec.openplanner.team/stops/LCxchal1"], ["https://tec.openplanner.team/stops/N353aea", "https://tec.openplanner.team/stops/N383afb"], ["https://tec.openplanner.team/stops/H4ef113c", "https://tec.openplanner.team/stops/H4ef113d"], ["https://tec.openplanner.team/stops/X898aja", "https://tec.openplanner.team/stops/X898ajb"], ["https://tec.openplanner.team/stops/LRRandr2", "https://tec.openplanner.team/stops/LRRmeta1"], ["https://tec.openplanner.team/stops/Llgbell1", "https://tec.openplanner.team/stops/Llgpont1"], ["https://tec.openplanner.team/stops/LARgare4", "https://tec.openplanner.team/stops/LHAmonu1"], ["https://tec.openplanner.team/stops/Lghgend1", "https://tec.openplanner.team/stops/Ljerose4"], ["https://tec.openplanner.team/stops/N894adb", "https://tec.openplanner.team/stops/N894aga"], ["https://tec.openplanner.team/stops/LHodomm2", "https://tec.openplanner.team/stops/LHovach1"], ["https://tec.openplanner.team/stops/N211aga", "https://tec.openplanner.team/stops/N212afb"], ["https://tec.openplanner.team/stops/LMOford1", "https://tec.openplanner.team/stops/LMOpiss2"], ["https://tec.openplanner.team/stops/Lhr3jui1", "https://tec.openplanner.team/stops/Lhrrhee*"], ["https://tec.openplanner.team/stops/N562bmb", "https://tec.openplanner.team/stops/N562bnb"], ["https://tec.openplanner.team/stops/N874aha", "https://tec.openplanner.team/stops/N874akb"], ["https://tec.openplanner.team/stops/LmDkape1", "https://tec.openplanner.team/stops/LmDkirc1"], ["https://tec.openplanner.team/stops/Ccabois1", "https://tec.openplanner.team/stops/Ccaegli1"], ["https://tec.openplanner.team/stops/Cbwegl1", "https://tec.openplanner.team/stops/Cmgarsi2"], ["https://tec.openplanner.team/stops/Bgzddur2", "https://tec.openplanner.team/stops/Bgzdegl4"], ["https://tec.openplanner.team/stops/N223abb", "https://tec.openplanner.team/stops/NL35aga"], ["https://tec.openplanner.team/stops/Ljecoqu1", "https://tec.openplanner.team/stops/LjeGRPMD"], ["https://tec.openplanner.team/stops/LrAberg1", "https://tec.openplanner.team/stops/LrAberg2"], ["https://tec.openplanner.team/stops/Lcaboun4", "https://tec.openplanner.team/stops/LPReg--1"], ["https://tec.openplanner.team/stops/H4hu115a", "https://tec.openplanner.team/stops/H4ld124b"], ["https://tec.openplanner.team/stops/H4ka186a", "https://tec.openplanner.team/stops/H4ka399a"], ["https://tec.openplanner.team/stops/X901acb", "https://tec.openplanner.team/stops/X901bra"], ["https://tec.openplanner.team/stops/X750aka", "https://tec.openplanner.team/stops/X750bkb"], ["https://tec.openplanner.team/stops/Croball2", "https://tec.openplanner.team/stops/Crocpai1"], ["https://tec.openplanner.team/stops/X824aca", "https://tec.openplanner.team/stops/X824acb"], ["https://tec.openplanner.team/stops/Lchsaro2", "https://tec.openplanner.team/stops/LHAheml1"], ["https://tec.openplanner.team/stops/Boffegl2", "https://tec.openplanner.team/stops/N515aob"], ["https://tec.openplanner.team/stops/H2le151a", "https://tec.openplanner.team/stops/H2le151b"], ["https://tec.openplanner.team/stops/X650afd", "https://tec.openplanner.team/stops/X671aga"], ["https://tec.openplanner.team/stops/Crebrux2", "https://tec.openplanner.team/stops/Crefont1"], ["https://tec.openplanner.team/stops/X812anb", "https://tec.openplanner.team/stops/X812bea"], ["https://tec.openplanner.team/stops/H4ta130a", "https://tec.openplanner.team/stops/H4ta132a"], ["https://tec.openplanner.team/stops/H1ro134a", "https://tec.openplanner.team/stops/H1ro136a"], ["https://tec.openplanner.team/stops/X879apb", "https://tec.openplanner.team/stops/X880agb"], ["https://tec.openplanner.team/stops/N321adb", "https://tec.openplanner.team/stops/N321afb"], ["https://tec.openplanner.team/stops/N520aia", "https://tec.openplanner.team/stops/N520aib"], ["https://tec.openplanner.team/stops/H1vb141a", "https://tec.openplanner.team/stops/H1wz169a"], ["https://tec.openplanner.team/stops/Cjualtr1", "https://tec.openplanner.team/stops/Cjualtr2"], ["https://tec.openplanner.team/stops/N501bwa", "https://tec.openplanner.team/stops/N501bxa"], ["https://tec.openplanner.team/stops/Becepon1", "https://tec.openplanner.team/stops/H2me113b"], ["https://tec.openplanner.team/stops/H2ll178a", "https://tec.openplanner.team/stops/H2ll198a"], ["https://tec.openplanner.team/stops/LrEborn2", "https://tec.openplanner.team/stops/LrEkais4"], ["https://tec.openplanner.team/stops/Bolgeva2", "https://tec.openplanner.team/stops/Bolgrga1"], ["https://tec.openplanner.team/stops/X607aeb", "https://tec.openplanner.team/stops/X621aba"], ["https://tec.openplanner.team/stops/H4lz161a", "https://tec.openplanner.team/stops/H4lz163a"], ["https://tec.openplanner.team/stops/N501ltb", "https://tec.openplanner.team/stops/N501lxb"], ["https://tec.openplanner.team/stops/H4tp146a", "https://tec.openplanner.team/stops/H4tp146b"], ["https://tec.openplanner.team/stops/LMIpast1", "https://tec.openplanner.team/stops/LMIpast2"], ["https://tec.openplanner.team/stops/Bnivpri1", "https://tec.openplanner.team/stops/Bnivros1"], ["https://tec.openplanner.team/stops/Lmaelhe1", "https://tec.openplanner.team/stops/LPRfond1"], ["https://tec.openplanner.team/stops/Bixlfla2", "https://tec.openplanner.team/stops/Bsgihmo2"], ["https://tec.openplanner.team/stops/X641ala", "https://tec.openplanner.team/stops/X641amb"], ["https://tec.openplanner.team/stops/N302abb", "https://tec.openplanner.team/stops/N302aca"], ["https://tec.openplanner.team/stops/LGLchap1", "https://tec.openplanner.team/stops/LGLchap3"], ["https://tec.openplanner.team/stops/N524aba", "https://tec.openplanner.team/stops/N524abb"], ["https://tec.openplanner.team/stops/N553abc", "https://tec.openplanner.team/stops/N553aja"], ["https://tec.openplanner.team/stops/Ccoconf1", "https://tec.openplanner.team/stops/Ccopeti2"], ["https://tec.openplanner.team/stops/N541aab", "https://tec.openplanner.team/stops/N541abb"], ["https://tec.openplanner.team/stops/H5rx139a", "https://tec.openplanner.team/stops/H5rx145b"], ["https://tec.openplanner.team/stops/Cprlpre1", "https://tec.openplanner.team/stops/Cprvsar1"], ["https://tec.openplanner.team/stops/H1cu130a", "https://tec.openplanner.team/stops/H1cu130b"], ["https://tec.openplanner.team/stops/LPLfp2-1", "https://tec.openplanner.team/stops/LPLfp2-2"], ["https://tec.openplanner.team/stops/X725bga", "https://tec.openplanner.team/stops/X725bgb"], ["https://tec.openplanner.team/stops/LLrbano1", "https://tec.openplanner.team/stops/LLrisa-*"], ["https://tec.openplanner.team/stops/H2pe161a", "https://tec.openplanner.team/stops/H2tr249a"], ["https://tec.openplanner.team/stops/LFCkett1", "https://tec.openplanner.team/stops/LWRcruc1"], ["https://tec.openplanner.team/stops/X663aea", "https://tec.openplanner.team/stops/X663aeb"], ["https://tec.openplanner.team/stops/LNEgaul4", "https://tec.openplanner.team/stops/LNEolne1"], ["https://tec.openplanner.team/stops/N201aoa", "https://tec.openplanner.team/stops/N201aoc"], ["https://tec.openplanner.team/stops/Cstcent1", "https://tec.openplanner.team/stops/Cstdona4"], ["https://tec.openplanner.team/stops/N562asa", "https://tec.openplanner.team/stops/N562bob"], ["https://tec.openplanner.team/stops/LAYcher1", "https://tec.openplanner.team/stops/LAYpl--2"], ["https://tec.openplanner.team/stops/X738aaa", "https://tec.openplanner.team/stops/X779ada"], ["https://tec.openplanner.team/stops/H1hr115a", "https://tec.openplanner.team/stops/H1hr128d"], ["https://tec.openplanner.team/stops/N515aja", "https://tec.openplanner.team/stops/NR27aaa"], ["https://tec.openplanner.team/stops/H1em105b", "https://tec.openplanner.team/stops/H1em111d"], ["https://tec.openplanner.team/stops/Bllnein3", "https://tec.openplanner.team/stops/Bllnrod4"], ["https://tec.openplanner.team/stops/LVMborl1", "https://tec.openplanner.team/stops/LVMrout2"], ["https://tec.openplanner.team/stops/Cgonvro3", "https://tec.openplanner.team/stops/Cmehame1"], ["https://tec.openplanner.team/stops/H4ce101b", "https://tec.openplanner.team/stops/H4or115a"], ["https://tec.openplanner.team/stops/LATdony1", "https://tec.openplanner.team/stops/LHUanth2"], ["https://tec.openplanner.team/stops/Bnivhut2", "https://tec.openplanner.team/stops/Bnivmfr1"], ["https://tec.openplanner.team/stops/H1hh109b", "https://tec.openplanner.team/stops/H1hh113b"], ["https://tec.openplanner.team/stops/LATmale2", "https://tec.openplanner.team/stops/LWNfani2"], ["https://tec.openplanner.team/stops/H2ll173b", "https://tec.openplanner.team/stops/H2sv216b"], ["https://tec.openplanner.team/stops/N558amc", "https://tec.openplanner.team/stops/N559abb"], ["https://tec.openplanner.team/stops/Bpecdel1", "https://tec.openplanner.team/stops/Bpechos2"], ["https://tec.openplanner.team/stops/X901agb", "https://tec.openplanner.team/stops/X902aua"], ["https://tec.openplanner.team/stops/H1br126a", "https://tec.openplanner.team/stops/H1br129a"], ["https://tec.openplanner.team/stops/LGeborn1", "https://tec.openplanner.team/stops/LkEbran1"], ["https://tec.openplanner.team/stops/LBTcarr3", "https://tec.openplanner.team/stops/LBTcarr4"], ["https://tec.openplanner.team/stops/Bbgelre2", "https://tec.openplanner.team/stops/Bwavbmo2"], ["https://tec.openplanner.team/stops/LNEolne2", "https://tec.openplanner.team/stops/LNEvpn-1"], ["https://tec.openplanner.team/stops/Cflchel5", "https://tec.openplanner.team/stops/NC12aab"], ["https://tec.openplanner.team/stops/Bnivari1", "https://tec.openplanner.team/stops/Bnivphm2"], ["https://tec.openplanner.team/stops/Lenabat1", "https://tec.openplanner.team/stops/Lenclar1"], ["https://tec.openplanner.team/stops/LCPcomm1", "https://tec.openplanner.team/stops/LCPlebl*"], ["https://tec.openplanner.team/stops/H4co105a", "https://tec.openplanner.team/stops/H4co148a"], ["https://tec.openplanner.team/stops/N501bhb", "https://tec.openplanner.team/stops/N501lra"], ["https://tec.openplanner.team/stops/LwRkirc1", "https://tec.openplanner.team/stops/LwRkirc2"], ["https://tec.openplanner.team/stops/LRRchea4", "https://tec.openplanner.team/stops/LRRmanc2"], ["https://tec.openplanner.team/stops/Ccychap1", "https://tec.openplanner.team/stops/Cvlbvir2"], ["https://tec.openplanner.team/stops/Blanath2", "https://tec.openplanner.team/stops/Blankal3"], ["https://tec.openplanner.team/stops/H2hp118a", "https://tec.openplanner.team/stops/H2hp118b"], ["https://tec.openplanner.team/stops/X725aib", "https://tec.openplanner.team/stops/X725aja"], ["https://tec.openplanner.team/stops/LBjflor2", "https://tec.openplanner.team/stops/X576ahb"], ["https://tec.openplanner.team/stops/Lbrptbr1", "https://tec.openplanner.team/stops/Lbrquai1"], ["https://tec.openplanner.team/stops/Cgpchgo2", "https://tec.openplanner.team/stops/Cgpcime1"], ["https://tec.openplanner.team/stops/X307aab", "https://tec.openplanner.team/stops/X307adb"], ["https://tec.openplanner.team/stops/N511ama", "https://tec.openplanner.team/stops/N511amb"], ["https://tec.openplanner.team/stops/X879afa", "https://tec.openplanner.team/stops/X879agb"], ["https://tec.openplanner.team/stops/N531asc", "https://tec.openplanner.team/stops/N584apa"], ["https://tec.openplanner.team/stops/X750apa", "https://tec.openplanner.team/stops/X750bdb"], ["https://tec.openplanner.team/stops/Brsgcfl2", "https://tec.openplanner.team/stops/Brsgsan2"], ["https://tec.openplanner.team/stops/H4fr139a", "https://tec.openplanner.team/stops/H4fr139b"], ["https://tec.openplanner.team/stops/H1fy119a", "https://tec.openplanner.team/stops/H1fy120a"], ["https://tec.openplanner.team/stops/LCpegli2", "https://tec.openplanner.team/stops/LSPecho1"], ["https://tec.openplanner.team/stops/Ljucano1", "https://tec.openplanner.team/stops/Ljucano2"], ["https://tec.openplanner.team/stops/N102aba", "https://tec.openplanner.team/stops/N151ajf"], ["https://tec.openplanner.team/stops/N501arb", "https://tec.openplanner.team/stops/N501cda"], ["https://tec.openplanner.team/stops/X616acb", "https://tec.openplanner.team/stops/X616aia"], ["https://tec.openplanner.team/stops/Cblcen3", "https://tec.openplanner.team/stops/Cblsall2"], ["https://tec.openplanner.team/stops/LOuouff1", "https://tec.openplanner.team/stops/LOurena2"], ["https://tec.openplanner.team/stops/LJU51--2", "https://tec.openplanner.team/stops/LJUfort2"], ["https://tec.openplanner.team/stops/X925akb", "https://tec.openplanner.team/stops/X947aea"], ["https://tec.openplanner.team/stops/LBbbac-1", "https://tec.openplanner.team/stops/LBbbac-2"], ["https://tec.openplanner.team/stops/H1ms308a", "https://tec.openplanner.team/stops/H1ms308b"], ["https://tec.openplanner.team/stops/LVLgrum1", "https://tec.openplanner.team/stops/LVLgrum2"], ["https://tec.openplanner.team/stops/Lmibove1", "https://tec.openplanner.team/stops/Lmibove2"], ["https://tec.openplanner.team/stops/H2ll179a", "https://tec.openplanner.team/stops/H2ll197a"], ["https://tec.openplanner.team/stops/Cpclibe3", "https://tec.openplanner.team/stops/Cvvgrsa1"], ["https://tec.openplanner.team/stops/X724aha", "https://tec.openplanner.team/stops/X766aab"], ["https://tec.openplanner.team/stops/N501lya", "https://tec.openplanner.team/stops/N501mey"], ["https://tec.openplanner.team/stops/LPLmonu2", "https://tec.openplanner.team/stops/LPLstri1"], ["https://tec.openplanner.team/stops/H4ty298a", "https://tec.openplanner.team/stops/H4ty298b"], ["https://tec.openplanner.team/stops/N211asa", "https://tec.openplanner.team/stops/N211ava"], ["https://tec.openplanner.team/stops/LOUbarr1", "https://tec.openplanner.team/stops/LOUbarr2"], ["https://tec.openplanner.team/stops/N103aga", "https://tec.openplanner.team/stops/N103agb"], ["https://tec.openplanner.team/stops/X637ama", "https://tec.openplanner.team/stops/X650aab"], ["https://tec.openplanner.team/stops/N231agb", "https://tec.openplanner.team/stops/N232bxb"], ["https://tec.openplanner.team/stops/X639amb", "https://tec.openplanner.team/stops/X639amd"], ["https://tec.openplanner.team/stops/Llgchar2", "https://tec.openplanner.team/stops/Llgdarc1"], ["https://tec.openplanner.team/stops/N501aja", "https://tec.openplanner.team/stops/N501mbb"], ["https://tec.openplanner.team/stops/X901aub", "https://tec.openplanner.team/stops/X901blb"], ["https://tec.openplanner.team/stops/X992aaa", "https://tec.openplanner.team/stops/X992aca"], ["https://tec.openplanner.team/stops/N501gbb", "https://tec.openplanner.team/stops/N501lob"], ["https://tec.openplanner.team/stops/Bmaregl1", "https://tec.openplanner.team/stops/Btilmar2"], ["https://tec.openplanner.team/stops/Canbruy1", "https://tec.openplanner.team/stops/Canbruy2"], ["https://tec.openplanner.team/stops/H4ty295a", "https://tec.openplanner.team/stops/H4ty295b"], ["https://tec.openplanner.team/stops/LHGbeur3", "https://tec.openplanner.team/stops/LXhvina2"], ["https://tec.openplanner.team/stops/X982bsb", "https://tec.openplanner.team/stops/X982byb"], ["https://tec.openplanner.team/stops/Crs74em1", "https://tec.openplanner.team/stops/Crsrose2"], ["https://tec.openplanner.team/stops/X652aeb", "https://tec.openplanner.team/stops/X652afc"], ["https://tec.openplanner.team/stops/Ccpbrun1", "https://tec.openplanner.team/stops/H2ch110b"], ["https://tec.openplanner.team/stops/Lprdavi1", "https://tec.openplanner.team/stops/Lvefanc1"], ["https://tec.openplanner.team/stops/X314aaa", "https://tec.openplanner.team/stops/X314aab"], ["https://tec.openplanner.team/stops/Cbuegl1", "https://tec.openplanner.team/stops/Cbugara2"], ["https://tec.openplanner.team/stops/Brebcha2", "https://tec.openplanner.team/stops/Brebmtg2"], ["https://tec.openplanner.team/stops/N536aba", "https://tec.openplanner.team/stops/N580aeb"], ["https://tec.openplanner.team/stops/LsVgesc1", "https://tec.openplanner.team/stops/LsVlust2"], ["https://tec.openplanner.team/stops/X725aea", "https://tec.openplanner.team/stops/X725apb"], ["https://tec.openplanner.team/stops/Lsefive2", "https://tec.openplanner.team/stops/Lsemany2"], ["https://tec.openplanner.team/stops/H4jm117c", "https://tec.openplanner.team/stops/H4we136b"], ["https://tec.openplanner.team/stops/Llgchar1", "https://tec.openplanner.team/stops/Llgvero4"], ["https://tec.openplanner.team/stops/Ljufler2", "https://tec.openplanner.team/stops/Ljufore1"], ["https://tec.openplanner.team/stops/Bdlmflo2", "https://tec.openplanner.team/stops/Bdlmgla1"], ["https://tec.openplanner.team/stops/X547aja", "https://tec.openplanner.team/stops/X576afb"], ["https://tec.openplanner.team/stops/Cvtvois1", "https://tec.openplanner.team/stops/Cvtvois2"], ["https://tec.openplanner.team/stops/H2ca101b", "https://tec.openplanner.team/stops/H2ca109a"], ["https://tec.openplanner.team/stops/LAYcher2", "https://tec.openplanner.team/stops/LAYcorn1"], ["https://tec.openplanner.team/stops/N102aba", "https://tec.openplanner.team/stops/N102abb"], ["https://tec.openplanner.team/stops/LSW26--1", "https://tec.openplanner.team/stops/LSWscie2"], ["https://tec.openplanner.team/stops/Bblmpro1", "https://tec.openplanner.team/stops/Bnilpie2"], ["https://tec.openplanner.team/stops/N244aja", "https://tec.openplanner.team/stops/N244ama"], ["https://tec.openplanner.team/stops/Binccha1", "https://tec.openplanner.team/stops/Brxmbos1"], ["https://tec.openplanner.team/stops/Blanmde1", "https://tec.openplanner.team/stops/Blanraa2"], ["https://tec.openplanner.team/stops/N228aab", "https://tec.openplanner.team/stops/N228aca"], ["https://tec.openplanner.team/stops/Lbocomm2", "https://tec.openplanner.team/stops/Lstbold1"], ["https://tec.openplanner.team/stops/LgHdorf1", "https://tec.openplanner.team/stops/LmSluxh2"], ["https://tec.openplanner.team/stops/LGmeg--1", "https://tec.openplanner.team/stops/LHmcarr2"], ["https://tec.openplanner.team/stops/N127aca", "https://tec.openplanner.team/stops/N135bdb"], ["https://tec.openplanner.team/stops/X610aba", "https://tec.openplanner.team/stops/X610adb"], ["https://tec.openplanner.team/stops/H4bo116a", "https://tec.openplanner.team/stops/H4bo122a"], ["https://tec.openplanner.team/stops/H1ho140a", "https://tec.openplanner.team/stops/H1wa144b"], ["https://tec.openplanner.team/stops/X986acb", "https://tec.openplanner.team/stops/X986adb"], ["https://tec.openplanner.team/stops/LkEbran2", "https://tec.openplanner.team/stops/LkEgss-2"], ["https://tec.openplanner.team/stops/LVAakke1", "https://tec.openplanner.team/stops/LVApark2"], ["https://tec.openplanner.team/stops/Cmocime1", "https://tec.openplanner.team/stops/Cmoscap2"], ["https://tec.openplanner.team/stops/NL81aga", "https://tec.openplanner.team/stops/NL81aha"], ["https://tec.openplanner.team/stops/LLeeco-1", "https://tec.openplanner.team/stops/LLemonu2"], ["https://tec.openplanner.team/stops/H4hx116a", "https://tec.openplanner.team/stops/H4hx119b"], ["https://tec.openplanner.team/stops/LHNcreh2", "https://tec.openplanner.team/stops/NL37aaa"], ["https://tec.openplanner.team/stops/N235aba", "https://tec.openplanner.team/stops/N235aca"], ["https://tec.openplanner.team/stops/X903ada", "https://tec.openplanner.team/stops/X903agb"], ["https://tec.openplanner.team/stops/Caujonc1", "https://tec.openplanner.team/stops/Cauwauq1"], ["https://tec.openplanner.team/stops/Bezeksj3", "https://tec.openplanner.team/stops/Bneeblo1"], ["https://tec.openplanner.team/stops/H4os221a", "https://tec.openplanner.team/stops/H4os223a"], ["https://tec.openplanner.team/stops/LMAfali2", "https://tec.openplanner.team/stops/LMApape1"], ["https://tec.openplanner.team/stops/N501bya", "https://tec.openplanner.team/stops/N501cja"], ["https://tec.openplanner.team/stops/LWbboeg2", "https://tec.openplanner.team/stops/LWbregn2"], ["https://tec.openplanner.team/stops/LAmcorn2", "https://tec.openplanner.team/stops/LNHbarr1"], ["https://tec.openplanner.team/stops/H4hx112b", "https://tec.openplanner.team/stops/H4wa151a"], ["https://tec.openplanner.team/stops/LWRferm1", "https://tec.openplanner.team/stops/LWRtroi1"], ["https://tec.openplanner.team/stops/H4pl120a", "https://tec.openplanner.team/stops/H4pl135b"], ["https://tec.openplanner.team/stops/LPLaube1", "https://tec.openplanner.team/stops/LPLroth1"], ["https://tec.openplanner.team/stops/N538akb", "https://tec.openplanner.team/stops/N538amc"], ["https://tec.openplanner.team/stops/Crocona1", "https://tec.openplanner.team/stops/Crojume2"], ["https://tec.openplanner.team/stops/X398aaa", "https://tec.openplanner.team/stops/X398abb"], ["https://tec.openplanner.team/stops/Canchbr1", "https://tec.openplanner.team/stops/Cfocobe1"], ["https://tec.openplanner.team/stops/H1ho123b", "https://tec.openplanner.team/stops/H1ho141a"], ["https://tec.openplanner.team/stops/Cfacamp1", "https://tec.openplanner.team/stops/Cfastan2"], ["https://tec.openplanner.team/stops/LPLcite2", "https://tec.openplanner.team/stops/LPLcroi2"], ["https://tec.openplanner.team/stops/LBLtroi1", "https://tec.openplanner.team/stops/LCEplac2"], ["https://tec.openplanner.team/stops/Bmsgpap1", "https://tec.openplanner.team/stops/Bottbru2"], ["https://tec.openplanner.team/stops/Bbgnton1", "https://tec.openplanner.team/stops/N584aja"], ["https://tec.openplanner.team/stops/LAVcime2", "https://tec.openplanner.team/stops/LAVdepr1"], ["https://tec.openplanner.team/stops/X618aha", "https://tec.openplanner.team/stops/X618ama"], ["https://tec.openplanner.team/stops/LBNruns1", "https://tec.openplanner.team/stops/LBNruns2"], ["https://tec.openplanner.team/stops/X717aaa", "https://tec.openplanner.team/stops/X717afa"], ["https://tec.openplanner.team/stops/Barqhro2", "https://tec.openplanner.team/stops/Barqhro4"], ["https://tec.openplanner.team/stops/Cmmadma1", "https://tec.openplanner.team/stops/Cmmplac4"], ["https://tec.openplanner.team/stops/LVthest2", "https://tec.openplanner.team/stops/LVthest4"], ["https://tec.openplanner.team/stops/X811aca", "https://tec.openplanner.team/stops/X811aja"], ["https://tec.openplanner.team/stops/Bitrcha2", "https://tec.openplanner.team/stops/Bitrmde2"], ["https://tec.openplanner.team/stops/Lvcfogu4", "https://tec.openplanner.team/stops/Lvcfogu6"], ["https://tec.openplanner.team/stops/LCogara1", "https://tec.openplanner.team/stops/LCogara2"], ["https://tec.openplanner.team/stops/Csrcant1", "https://tec.openplanner.team/stops/Csrcarr2"], ["https://tec.openplanner.team/stops/H4gr110b", "https://tec.openplanner.team/stops/H4gr112a"], ["https://tec.openplanner.team/stops/H1gy113b", "https://tec.openplanner.team/stops/H1le125a"], ["https://tec.openplanner.team/stops/X896aea", "https://tec.openplanner.team/stops/X896afa"], ["https://tec.openplanner.team/stops/LHmcite1", "https://tec.openplanner.team/stops/LMAcomm1"], ["https://tec.openplanner.team/stops/Lghgend2", "https://tec.openplanner.team/stops/Ljemake2"], ["https://tec.openplanner.team/stops/LTPbeau1", "https://tec.openplanner.team/stops/LTPwann1"], ["https://tec.openplanner.team/stops/Bwatrte2", "https://tec.openplanner.team/stops/Bwatsuc1"], ["https://tec.openplanner.team/stops/Bgnvcom1", "https://tec.openplanner.team/stops/Bgnvpap1"], ["https://tec.openplanner.team/stops/Lbrdepo2", "https://tec.openplanner.team/stops/Lbrhvl-*"], ["https://tec.openplanner.team/stops/Cvvgrsa2", "https://tec.openplanner.team/stops/Cvvsncb1"], ["https://tec.openplanner.team/stops/Ctaprai3", "https://tec.openplanner.team/stops/N530aca"], ["https://tec.openplanner.team/stops/LTibarb1", "https://tec.openplanner.team/stops/LTibarb2"], ["https://tec.openplanner.team/stops/Llgcita1", "https://tec.openplanner.team/stops/Llgcita2"], ["https://tec.openplanner.team/stops/Cgxvkho1", "https://tec.openplanner.team/stops/Cgxvkho4"], ["https://tec.openplanner.team/stops/Baudhde1", "https://tec.openplanner.team/stops/Baudwav2"], ["https://tec.openplanner.team/stops/Bovesog1", "https://tec.openplanner.team/stops/Bovesog2"], ["https://tec.openplanner.team/stops/Lcesart1", "https://tec.openplanner.team/stops/Lcesart2"], ["https://tec.openplanner.team/stops/Baudvdr2", "https://tec.openplanner.team/stops/Bwbfeta2"], ["https://tec.openplanner.team/stops/NB33aha", "https://tec.openplanner.team/stops/NB33aia"], ["https://tec.openplanner.team/stops/Bllngar3", "https://tec.openplanner.team/stops/Bllngar5"], ["https://tec.openplanner.team/stops/N365aaa", "https://tec.openplanner.team/stops/N365abb"], ["https://tec.openplanner.team/stops/X750aoa", "https://tec.openplanner.team/stops/X750bla"], ["https://tec.openplanner.team/stops/LkTkabi1", "https://tec.openplanner.team/stops/LwAkett2"], ["https://tec.openplanner.team/stops/X615ada", "https://tec.openplanner.team/stops/X615afa"], ["https://tec.openplanner.team/stops/Lsn184-2", "https://tec.openplanner.team/stops/Lsnhoco1"], ["https://tec.openplanner.team/stops/Lbomc--4", "https://tec.openplanner.team/stops/Lbooffe1"], ["https://tec.openplanner.team/stops/H5qu140a", "https://tec.openplanner.team/stops/H5st169b"], ["https://tec.openplanner.team/stops/N538aib", "https://tec.openplanner.team/stops/N538ajc"], ["https://tec.openplanner.team/stops/N147aaa", "https://tec.openplanner.team/stops/N147afb"], ["https://tec.openplanner.team/stops/LBNburg2", "https://tec.openplanner.team/stops/LBNover2"], ["https://tec.openplanner.team/stops/N230aeb", "https://tec.openplanner.team/stops/N233abb"], ["https://tec.openplanner.team/stops/H4lz117b", "https://tec.openplanner.team/stops/H4lz122b"], ["https://tec.openplanner.team/stops/H4cw106a", "https://tec.openplanner.team/stops/H4cw106b"], ["https://tec.openplanner.team/stops/H3br107a", "https://tec.openplanner.team/stops/H3br122b"], ["https://tec.openplanner.team/stops/Bucceng2", "https://tec.openplanner.team/stops/Buccmer1"], ["https://tec.openplanner.team/stops/X664aoa", "https://tec.openplanner.team/stops/X664aob"], ["https://tec.openplanner.team/stops/H4ce107a", "https://tec.openplanner.team/stops/H4ef112b"], ["https://tec.openplanner.team/stops/NL77aab", "https://tec.openplanner.team/stops/NL77aba"], ["https://tec.openplanner.team/stops/LMgbern1", "https://tec.openplanner.team/stops/LMgbern2"], ["https://tec.openplanner.team/stops/N232ana", "https://tec.openplanner.team/stops/N232awb"], ["https://tec.openplanner.team/stops/H1ha191a", "https://tec.openplanner.team/stops/H1ha196a"], ["https://tec.openplanner.team/stops/X754aeb", "https://tec.openplanner.team/stops/X754aob"], ["https://tec.openplanner.team/stops/Llgcadr4", "https://tec.openplanner.team/stops/LlgOPER6"], ["https://tec.openplanner.team/stops/X919aja", "https://tec.openplanner.team/stops/X919ajb"], ["https://tec.openplanner.team/stops/LSMpoin1", "https://tec.openplanner.team/stops/LSMtarg1"], ["https://tec.openplanner.team/stops/LLrquar1", "https://tec.openplanner.team/stops/LTHjevo1"], ["https://tec.openplanner.team/stops/LAOeg--1", "https://tec.openplanner.team/stops/LTGsucr1"], ["https://tec.openplanner.team/stops/LAUcarr1", "https://tec.openplanner.team/stops/LAUcarr2"], ["https://tec.openplanner.team/stops/Lhrpepi1", "https://tec.openplanner.team/stops/Lhrtilm2"], ["https://tec.openplanner.team/stops/Bgembsg1", "https://tec.openplanner.team/stops/N522aka"], ["https://tec.openplanner.team/stops/LrEdic71", "https://tec.openplanner.team/stops/LrEmeil1"], ["https://tec.openplanner.team/stops/H1lm107a", "https://tec.openplanner.team/stops/H1lm107b"], ["https://tec.openplanner.team/stops/X626adb", "https://tec.openplanner.team/stops/X626ana"], ["https://tec.openplanner.team/stops/Bwlhpmt1", "https://tec.openplanner.team/stops/Bwlhpmt3"], ["https://tec.openplanner.team/stops/Lchstat*", "https://tec.openplanner.team/stops/Lchtche2"], ["https://tec.openplanner.team/stops/Bbounci2", "https://tec.openplanner.team/stops/Bcerldo1"], ["https://tec.openplanner.team/stops/Lsefoot2", "https://tec.openplanner.team/stops/Lsemaqu2"], ["https://tec.openplanner.team/stops/N501hja", "https://tec.openplanner.team/stops/N501hjc"], ["https://tec.openplanner.team/stops/Cbugara1", "https://tec.openplanner.team/stops/Cbugara2"], ["https://tec.openplanner.team/stops/H2pe161a", "https://tec.openplanner.team/stops/H2pe161b"], ["https://tec.openplanner.team/stops/N308beb", "https://tec.openplanner.team/stops/N308bhb"], ["https://tec.openplanner.team/stops/Bmrlhan1", "https://tec.openplanner.team/stops/Bmrlhan3"], ["https://tec.openplanner.team/stops/H4ty290a", "https://tec.openplanner.team/stops/H4ty325a"], ["https://tec.openplanner.team/stops/N501afb", "https://tec.openplanner.team/stops/N503acb"], ["https://tec.openplanner.team/stops/H2hg154b", "https://tec.openplanner.team/stops/H2hg154c"], ["https://tec.openplanner.team/stops/X765adb", "https://tec.openplanner.team/stops/X765aea"], ["https://tec.openplanner.team/stops/N548acb", "https://tec.openplanner.team/stops/N548acc"], ["https://tec.openplanner.team/stops/LWbburn1", "https://tec.openplanner.team/stops/LWberno1"], ["https://tec.openplanner.team/stops/H1sp356a", "https://tec.openplanner.team/stops/H1ss352a"], ["https://tec.openplanner.team/stops/LhGrote1", "https://tec.openplanner.team/stops/LhGrote2"], ["https://tec.openplanner.team/stops/Lagcolo1", "https://tec.openplanner.team/stops/LTIp%C3%A9pi1"], ["https://tec.openplanner.team/stops/X876aaa", "https://tec.openplanner.team/stops/X887aab"], ["https://tec.openplanner.team/stops/LRRoser2", "https://tec.openplanner.team/stops/LSSvill2"], ["https://tec.openplanner.team/stops/X822akb", "https://tec.openplanner.team/stops/X822ara"], ["https://tec.openplanner.team/stops/LHrprie1", "https://tec.openplanner.team/stops/LHrrard2"], ["https://tec.openplanner.team/stops/Bcbqcha1", "https://tec.openplanner.team/stops/Bhaless2"], ["https://tec.openplanner.team/stops/LTPwann2", "https://tec.openplanner.team/stops/LWneg--1"], ["https://tec.openplanner.team/stops/H4fl115a", "https://tec.openplanner.team/stops/H4lp122b"], ["https://tec.openplanner.team/stops/LFabraa1", "https://tec.openplanner.team/stops/LFacruc1"], ["https://tec.openplanner.team/stops/LSkkeri1", "https://tec.openplanner.team/stops/LSkkeri2"], ["https://tec.openplanner.team/stops/LPLcarr1", "https://tec.openplanner.team/stops/LPLecco2"], ["https://tec.openplanner.team/stops/X614azb", "https://tec.openplanner.team/stops/X614bab"], ["https://tec.openplanner.team/stops/Cchhopi3", "https://tec.openplanner.team/stops/Cchhopi4"], ["https://tec.openplanner.team/stops/N506afb", "https://tec.openplanner.team/stops/N506asa"], ["https://tec.openplanner.team/stops/N236aca", "https://tec.openplanner.team/stops/N236adb"], ["https://tec.openplanner.team/stops/NC44aaa", "https://tec.openplanner.team/stops/NC44aab"], ["https://tec.openplanner.team/stops/N120aea", "https://tec.openplanner.team/stops/N120afb"], ["https://tec.openplanner.team/stops/X725aed", "https://tec.openplanner.team/stops/X725aee"], ["https://tec.openplanner.team/stops/N551agc", "https://tec.openplanner.team/stops/N551arc"], ["https://tec.openplanner.team/stops/N513asb", "https://tec.openplanner.team/stops/N513avb"], ["https://tec.openplanner.team/stops/LsVsage1", "https://tec.openplanner.team/stops/LwSschw1"], ["https://tec.openplanner.team/stops/N508aoa", "https://tec.openplanner.team/stops/N509aab"], ["https://tec.openplanner.team/stops/Lgdblom2", "https://tec.openplanner.team/stops/Lgdrena2"], ["https://tec.openplanner.team/stops/N123aca", "https://tec.openplanner.team/stops/N123acb"], ["https://tec.openplanner.team/stops/X823afa", "https://tec.openplanner.team/stops/X823afb"], ["https://tec.openplanner.team/stops/Clrmarl4", "https://tec.openplanner.team/stops/Clrpast2"], ["https://tec.openplanner.team/stops/H4bf105a", "https://tec.openplanner.team/stops/H4ro156a"], ["https://tec.openplanner.team/stops/N352acb", "https://tec.openplanner.team/stops/N367ada"], ["https://tec.openplanner.team/stops/Bgnvgir2", "https://tec.openplanner.team/stops/Bohnr731"], ["https://tec.openplanner.team/stops/X763afa", "https://tec.openplanner.team/stops/X765aga"], ["https://tec.openplanner.team/stops/Bhenfer2", "https://tec.openplanner.team/stops/Bquegen2"], ["https://tec.openplanner.team/stops/H5rx131b", "https://tec.openplanner.team/stops/H5rx132b"], ["https://tec.openplanner.team/stops/N232aib", "https://tec.openplanner.team/stops/N232aqb"], ["https://tec.openplanner.team/stops/LSseg--1", "https://tec.openplanner.team/stops/N506bca"], ["https://tec.openplanner.team/stops/H4hs135b", "https://tec.openplanner.team/stops/H4hs137b"], ["https://tec.openplanner.team/stops/X921alb", "https://tec.openplanner.team/stops/X921aqb"], ["https://tec.openplanner.team/stops/LOcalbe1", "https://tec.openplanner.team/stops/LOcalbe2"], ["https://tec.openplanner.team/stops/X636aga", "https://tec.openplanner.team/stops/X636agb"], ["https://tec.openplanner.team/stops/Cvpcime2", "https://tec.openplanner.team/stops/Cvpplan2"], ["https://tec.openplanner.team/stops/X982adb", "https://tec.openplanner.team/stops/X982aea"], ["https://tec.openplanner.team/stops/N534bnh", "https://tec.openplanner.team/stops/N534cbh"], ["https://tec.openplanner.team/stops/H2ch105d", "https://tec.openplanner.team/stops/H2ch112b"], ["https://tec.openplanner.team/stops/Cgynoir1", "https://tec.openplanner.team/stops/Cgyplvi1"], ["https://tec.openplanner.team/stops/LJSforg1", "https://tec.openplanner.team/stops/Lpepano1"], ["https://tec.openplanner.team/stops/Ccicloc2", "https://tec.openplanner.team/stops/Clvimtr1"], ["https://tec.openplanner.team/stops/LRmmabr2", "https://tec.openplanner.team/stops/LRmstat1"], ["https://tec.openplanner.team/stops/H4ml206b", "https://tec.openplanner.team/stops/H4ml209a"], ["https://tec.openplanner.team/stops/N513aaa", "https://tec.openplanner.team/stops/N513bfa"], ["https://tec.openplanner.team/stops/LFreg--1", "https://tec.openplanner.team/stops/LLUcdoy1"], ["https://tec.openplanner.team/stops/Blsmbfe1", "https://tec.openplanner.team/stops/Blsmbfe2"], ["https://tec.openplanner.team/stops/Bwatber1", "https://tec.openplanner.team/stops/Bwatcpe1"], ["https://tec.openplanner.team/stops/LhLdorf1", "https://tec.openplanner.team/stops/LlSzoll2"], ["https://tec.openplanner.team/stops/Lghencl2", "https://tec.openplanner.team/stops/Lghomni2"], ["https://tec.openplanner.team/stops/LBUvall1", "https://tec.openplanner.team/stops/LLtrout1"], ["https://tec.openplanner.team/stops/LAUvdab1", "https://tec.openplanner.team/stops/LCxwade1"], ["https://tec.openplanner.team/stops/N585akb", "https://tec.openplanner.team/stops/N585ala"], ["https://tec.openplanner.team/stops/Bgoemho1", "https://tec.openplanner.team/stops/Bgoemho2"], ["https://tec.openplanner.team/stops/H1ol145b", "https://tec.openplanner.team/stops/H5is168a"], ["https://tec.openplanner.team/stops/H4do106a", "https://tec.openplanner.team/stops/H4ev119a"], ["https://tec.openplanner.team/stops/LgRzent2", "https://tec.openplanner.team/stops/LoDscha1"], ["https://tec.openplanner.team/stops/Lpemata1", "https://tec.openplanner.team/stops/Lpepano1"], ["https://tec.openplanner.team/stops/LFtcarr1", "https://tec.openplanner.team/stops/X597aob"], ["https://tec.openplanner.team/stops/H1an100a", "https://tec.openplanner.team/stops/H1on128c"], ["https://tec.openplanner.team/stops/H1lb138a", "https://tec.openplanner.team/stops/H1lb153a"], ["https://tec.openplanner.team/stops/Bblafrn1", "https://tec.openplanner.team/stops/Bblague1"], ["https://tec.openplanner.team/stops/X768alb", "https://tec.openplanner.team/stops/X791aaa"], ["https://tec.openplanner.team/stops/X947adb", "https://tec.openplanner.team/stops/X948ala"], ["https://tec.openplanner.team/stops/X805ajb", "https://tec.openplanner.team/stops/X807acb"], ["https://tec.openplanner.team/stops/N232aba", "https://tec.openplanner.team/stops/N261aba"], ["https://tec.openplanner.team/stops/Blmlbif2", "https://tec.openplanner.team/stops/Brsreco1"], ["https://tec.openplanner.team/stops/LCsbors1", "https://tec.openplanner.team/stops/LCsbors2"], ["https://tec.openplanner.team/stops/LwYneue2", "https://tec.openplanner.team/stops/LwYnr261"], ["https://tec.openplanner.team/stops/N563amb", "https://tec.openplanner.team/stops/N563aoa"], ["https://tec.openplanner.team/stops/N215acd", "https://tec.openplanner.team/stops/N232ceb"], ["https://tec.openplanner.team/stops/Bdlmgla1", "https://tec.openplanner.team/stops/Bdlmgla4"], ["https://tec.openplanner.team/stops/Cgoclad1", "https://tec.openplanner.team/stops/Cgostex2"], ["https://tec.openplanner.team/stops/X804aoa", "https://tec.openplanner.team/stops/X804bta"], ["https://tec.openplanner.team/stops/Bblmwma1", "https://tec.openplanner.team/stops/Bwlhpma2"], ["https://tec.openplanner.team/stops/X616afb", "https://tec.openplanner.team/stops/X624aea"], ["https://tec.openplanner.team/stops/H2bh117b", "https://tec.openplanner.team/stops/H2lc146b"], ["https://tec.openplanner.team/stops/Bbchgod2", "https://tec.openplanner.team/stops/Bbchndb2"], ["https://tec.openplanner.team/stops/Cplelec1", "https://tec.openplanner.team/stops/Cplrmon2"], ["https://tec.openplanner.team/stops/LVlleno1", "https://tec.openplanner.team/stops/LVlleno2"], ["https://tec.openplanner.team/stops/LSZarze4", "https://tec.openplanner.team/stops/LWycabi2"], ["https://tec.openplanner.team/stops/N235aaa", "https://tec.openplanner.team/stops/N235aha"], ["https://tec.openplanner.team/stops/Craappa2", "https://tec.openplanner.team/stops/Cradado1"], ["https://tec.openplanner.team/stops/H1as103d", "https://tec.openplanner.team/stops/H1as154b"], ["https://tec.openplanner.team/stops/N135aib", "https://tec.openplanner.team/stops/N135ala"], ["https://tec.openplanner.team/stops/H4po127a", "https://tec.openplanner.team/stops/H4po128b"], ["https://tec.openplanner.team/stops/N563aab", "https://tec.openplanner.team/stops/N564afb"], ["https://tec.openplanner.team/stops/X917ahb", "https://tec.openplanner.team/stops/X921ana"], ["https://tec.openplanner.team/stops/X769aeb", "https://tec.openplanner.team/stops/X769asa"], ["https://tec.openplanner.team/stops/H1el134b", "https://tec.openplanner.team/stops/H1el138b"], ["https://tec.openplanner.team/stops/Llgchau1", "https://tec.openplanner.team/stops/Llgchau2"], ["https://tec.openplanner.team/stops/Bblaaca1", "https://tec.openplanner.team/stops/Bblaphi2"], ["https://tec.openplanner.team/stops/Bhanwav1", "https://tec.openplanner.team/stops/Bthscbl1"], ["https://tec.openplanner.team/stops/Lgrfass2", "https://tec.openplanner.team/stops/Lgrspir2"], ["https://tec.openplanner.team/stops/X602aoa", "https://tec.openplanner.team/stops/X602asa"], ["https://tec.openplanner.team/stops/X733aea", "https://tec.openplanner.team/stops/X734aqb"], ["https://tec.openplanner.team/stops/H1ms261a", "https://tec.openplanner.team/stops/H1ob361b"], ["https://tec.openplanner.team/stops/Cfoermi2", "https://tec.openplanner.team/stops/Clrpast2"], ["https://tec.openplanner.team/stops/X822adb", "https://tec.openplanner.team/stops/X822aka"], ["https://tec.openplanner.team/stops/Lmocoop2", "https://tec.openplanner.team/stops/Lmogerm1"], ["https://tec.openplanner.team/stops/H4lh118a", "https://tec.openplanner.team/stops/H5wo122b"], ["https://tec.openplanner.team/stops/Clupcfe1", "https://tec.openplanner.team/stops/Cvvcime1"], ["https://tec.openplanner.team/stops/X953aeb", "https://tec.openplanner.team/stops/X953afa"], ["https://tec.openplanner.team/stops/X948afa", "https://tec.openplanner.team/stops/X948aga"], ["https://tec.openplanner.team/stops/H4bc108a", "https://tec.openplanner.team/stops/H4bc108b"], ["https://tec.openplanner.team/stops/Bnodblt1", "https://tec.openplanner.team/stops/Boplcsj1"], ["https://tec.openplanner.team/stops/NL81aea", "https://tec.openplanner.team/stops/NL81afb"], ["https://tec.openplanner.team/stops/Bchgflo2", "https://tec.openplanner.team/stops/Bchgqve4"], ["https://tec.openplanner.team/stops/X675aba", "https://tec.openplanner.team/stops/X820aha"], ["https://tec.openplanner.team/stops/LaTcolo2", "https://tec.openplanner.team/stops/LmCkirc2"], ["https://tec.openplanner.team/stops/X654aja", "https://tec.openplanner.team/stops/X654ajb"], ["https://tec.openplanner.team/stops/Ccipech1", "https://tec.openplanner.team/stops/Ccipech2"], ["https://tec.openplanner.team/stops/X768aed", "https://tec.openplanner.team/stops/X768afa"], ["https://tec.openplanner.team/stops/X624adb", "https://tec.openplanner.team/stops/X624afa"], ["https://tec.openplanner.team/stops/H1gg116a", "https://tec.openplanner.team/stops/H1gg116b"], ["https://tec.openplanner.team/stops/X927acb", "https://tec.openplanner.team/stops/X928aab"], ["https://tec.openplanner.team/stops/Bettbue1", "https://tec.openplanner.team/stops/Bettcha1"], ["https://tec.openplanner.team/stops/H4ag102b", "https://tec.openplanner.team/stops/H4ga150a"], ["https://tec.openplanner.team/stops/LaAnorm1", "https://tec.openplanner.team/stops/LpEzoll*"], ["https://tec.openplanner.team/stops/LVEtomb1", "https://tec.openplanner.team/stops/LVEtomb2"], ["https://tec.openplanner.team/stops/Ljegare1", "https://tec.openplanner.team/stops/Ljerobi2"], ["https://tec.openplanner.team/stops/LFIcabi2", "https://tec.openplanner.team/stops/LFIeg--2"], ["https://tec.openplanner.team/stops/H4ru245a", "https://tec.openplanner.team/stops/H4wc373b"], ["https://tec.openplanner.team/stops/H2ha135c", "https://tec.openplanner.team/stops/H2ha137a"], ["https://tec.openplanner.team/stops/X639aab", "https://tec.openplanner.team/stops/X652ajb"], ["https://tec.openplanner.team/stops/X804asa", "https://tec.openplanner.team/stops/X804bda"], ["https://tec.openplanner.team/stops/Borblim2", "https://tec.openplanner.team/stops/Borbode1"], ["https://tec.openplanner.team/stops/N528afb", "https://tec.openplanner.team/stops/N528afz"], ["https://tec.openplanner.team/stops/X601afb", "https://tec.openplanner.team/stops/X601ara"], ["https://tec.openplanner.team/stops/LVBvaux1", "https://tec.openplanner.team/stops/LWDmass1"], ["https://tec.openplanner.team/stops/H1sy140a", "https://tec.openplanner.team/stops/H1to151a"], ["https://tec.openplanner.team/stops/H5rx140a", "https://tec.openplanner.team/stops/H5rx146a"], ["https://tec.openplanner.team/stops/N513aob", "https://tec.openplanner.team/stops/N513apa"], ["https://tec.openplanner.team/stops/LThhoul1", "https://tec.openplanner.team/stops/LThplen1"], ["https://tec.openplanner.team/stops/LHTboul2", "https://tec.openplanner.team/stops/LHTcerc4"], ["https://tec.openplanner.team/stops/H5el112a", "https://tec.openplanner.team/stops/H5el114a"], ["https://tec.openplanner.team/stops/LSJ38--2", "https://tec.openplanner.team/stops/LSJlabe2"], ["https://tec.openplanner.team/stops/X638akb", "https://tec.openplanner.team/stops/X638aqb"], ["https://tec.openplanner.team/stops/N146ada", "https://tec.openplanner.team/stops/N146aea"], ["https://tec.openplanner.team/stops/H1ol137a", "https://tec.openplanner.team/stops/H1ol143a"], ["https://tec.openplanner.team/stops/X664aqa", "https://tec.openplanner.team/stops/X664ata"], ["https://tec.openplanner.team/stops/N348aeb", "https://tec.openplanner.team/stops/N351aqa"], ["https://tec.openplanner.team/stops/N301afb", "https://tec.openplanner.team/stops/N301afc"], ["https://tec.openplanner.team/stops/X770aab", "https://tec.openplanner.team/stops/X771ala"], ["https://tec.openplanner.team/stops/LDmeg--1", "https://tec.openplanner.team/stops/LDmhave2"], ["https://tec.openplanner.team/stops/Lcebois2", "https://tec.openplanner.team/stops/Lcejobe2"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lpevove2"], ["https://tec.openplanner.team/stops/H4hn115a", "https://tec.openplanner.team/stops/H4lp120a"], ["https://tec.openplanner.team/stops/Lvtathe1", "https://tec.openplanner.team/stops/Lvtlomb2"], ["https://tec.openplanner.team/stops/LmSdorf2", "https://tec.openplanner.team/stops/LmSluxh2"], ["https://tec.openplanner.team/stops/H2sb233c", "https://tec.openplanner.team/stops/H2sb271a"], ["https://tec.openplanner.team/stops/N244aab", "https://tec.openplanner.team/stops/N248aca"], ["https://tec.openplanner.team/stops/LBStec-2", "https://tec.openplanner.team/stops/LWOpier1"], ["https://tec.openplanner.team/stops/X950aab", "https://tec.openplanner.team/stops/X955acb"], ["https://tec.openplanner.team/stops/H2hg267b", "https://tec.openplanner.team/stops/H2hg272b"], ["https://tec.openplanner.team/stops/LSx309-2", "https://tec.openplanner.team/stops/LSxeg--2"], ["https://tec.openplanner.team/stops/LvA12--4", "https://tec.openplanner.team/stops/LvAkirc4"], ["https://tec.openplanner.team/stops/X601cva", "https://tec.openplanner.team/stops/X601cwa"], ["https://tec.openplanner.team/stops/Bwatvco1", "https://tec.openplanner.team/stops/Bwatvco2"], ["https://tec.openplanner.team/stops/LLrgara1", "https://tec.openplanner.team/stops/LSPmart4"], ["https://tec.openplanner.team/stops/Cmcbriq2", "https://tec.openplanner.team/stops/Cmcegli2"], ["https://tec.openplanner.team/stops/LHUmala1", "https://tec.openplanner.team/stops/LHUmala2"], ["https://tec.openplanner.team/stops/H1gh365a", "https://tec.openplanner.team/stops/H1ni319b"], ["https://tec.openplanner.team/stops/Blimch%C3%A21", "https://tec.openplanner.team/stops/Bottpin2"], ["https://tec.openplanner.team/stops/LbTgeme1", "https://tec.openplanner.team/stops/LsHthom2"], ["https://tec.openplanner.team/stops/N165aba", "https://tec.openplanner.team/stops/N166aca"], ["https://tec.openplanner.team/stops/Bcsebea2", "https://tec.openplanner.team/stops/Bottcba1"], ["https://tec.openplanner.team/stops/Btslegl2", "https://tec.openplanner.team/stops/Btsllbv1"], ["https://tec.openplanner.team/stops/Ccyga7", "https://tec.openplanner.team/stops/NH01acb"], ["https://tec.openplanner.team/stops/NL77ada", "https://tec.openplanner.team/stops/NL77agb"], ["https://tec.openplanner.team/stops/LDLbaye1", "https://tec.openplanner.team/stops/LDLbaye2"], ["https://tec.openplanner.team/stops/Lselimi2", "https://tec.openplanner.team/stops/Lsestap1"], ["https://tec.openplanner.team/stops/X636bga", "https://tec.openplanner.team/stops/X637ara"], ["https://tec.openplanner.team/stops/Blincoo2", "https://tec.openplanner.team/stops/Blingar3"], ["https://tec.openplanner.team/stops/LMAgare0", "https://tec.openplanner.team/stops/LMAgdfa1"], ["https://tec.openplanner.team/stops/Bgoemgr2", "https://tec.openplanner.team/stops/Bneersa2"], ["https://tec.openplanner.team/stops/H2sv214b", "https://tec.openplanner.team/stops/H2sv221b"], ["https://tec.openplanner.team/stops/X780ajb", "https://tec.openplanner.team/stops/X793aha"], ["https://tec.openplanner.team/stops/LBahaut1", "https://tec.openplanner.team/stops/LLrfont1"], ["https://tec.openplanner.team/stops/H1cr100a", "https://tec.openplanner.team/stops/H1hl125b"], ["https://tec.openplanner.team/stops/X919aka", "https://tec.openplanner.team/stops/X919anb"], ["https://tec.openplanner.team/stops/Lmnbass1", "https://tec.openplanner.team/stops/Lmntast2"], ["https://tec.openplanner.team/stops/LEN183-1", "https://tec.openplanner.team/stops/LENoule1"], ["https://tec.openplanner.team/stops/X826add", "https://tec.openplanner.team/stops/X826ahb"], ["https://tec.openplanner.team/stops/Bohncha1", "https://tec.openplanner.team/stops/Bohnr732"], ["https://tec.openplanner.team/stops/H1hg178a", "https://tec.openplanner.team/stops/H1hg178b"], ["https://tec.openplanner.team/stops/X999agb", "https://tec.openplanner.team/stops/X999aia"], ["https://tec.openplanner.team/stops/H1fr128b", "https://tec.openplanner.team/stops/H1fr129a"], ["https://tec.openplanner.team/stops/LGecite2", "https://tec.openplanner.team/stops/LGeschr2"], ["https://tec.openplanner.team/stops/N517adb", "https://tec.openplanner.team/stops/N517aeb"], ["https://tec.openplanner.team/stops/Lghcise2", "https://tec.openplanner.team/stops/Lghmont2"], ["https://tec.openplanner.team/stops/N874aba", "https://tec.openplanner.team/stops/N874aia"], ["https://tec.openplanner.team/stops/H4ae132d", "https://tec.openplanner.team/stops/H4ea127b"], ["https://tec.openplanner.team/stops/H1gc123a", "https://tec.openplanner.team/stops/H1qy133a"], ["https://tec.openplanner.team/stops/X602ada", "https://tec.openplanner.team/stops/X602adb"], ["https://tec.openplanner.team/stops/LbUkrin2", "https://tec.openplanner.team/stops/LbUmurr2"], ["https://tec.openplanner.team/stops/LHUaron1", "https://tec.openplanner.team/stops/LHUaron2"], ["https://tec.openplanner.team/stops/H2hg147a", "https://tec.openplanner.team/stops/H2hg152b"], ["https://tec.openplanner.team/stops/LHXmonu1", "https://tec.openplanner.team/stops/LSMcles1"], ["https://tec.openplanner.team/stops/LWHkape1", "https://tec.openplanner.team/stops/LWHkerk1"], ["https://tec.openplanner.team/stops/Canvane2", "https://tec.openplanner.team/stops/H2an100a"], ["https://tec.openplanner.team/stops/Barqbco1", "https://tec.openplanner.team/stops/Barqres1"], ["https://tec.openplanner.team/stops/X891aca", "https://tec.openplanner.team/stops/X892aba"], ["https://tec.openplanner.team/stops/Ccacoup1", "https://tec.openplanner.team/stops/N162acb"], ["https://tec.openplanner.team/stops/H4bo116b", "https://tec.openplanner.team/stops/H4bo118b"], ["https://tec.openplanner.team/stops/X717aga", "https://tec.openplanner.team/stops/X717aja"], ["https://tec.openplanner.team/stops/X773aoa", "https://tec.openplanner.team/stops/X773aob"], ["https://tec.openplanner.team/stops/LRmkult2", "https://tec.openplanner.team/stops/LRmsmvo2"], ["https://tec.openplanner.team/stops/Bptbbie1", "https://tec.openplanner.team/stops/Bptbbie2"], ["https://tec.openplanner.team/stops/X999alb", "https://tec.openplanner.team/stops/X999aqb"], ["https://tec.openplanner.team/stops/N162afa", "https://tec.openplanner.team/stops/N162afb"], ["https://tec.openplanner.team/stops/N501mqa", "https://tec.openplanner.team/stops/N501zca"], ["https://tec.openplanner.team/stops/N103aca", "https://tec.openplanner.team/stops/N106afa"], ["https://tec.openplanner.team/stops/Cmychap2", "https://tec.openplanner.team/stops/Cmychap3"], ["https://tec.openplanner.team/stops/Benimar1", "https://tec.openplanner.team/stops/Benimar4"], ["https://tec.openplanner.team/stops/H5qu142a", "https://tec.openplanner.team/stops/H5qu155a"], ["https://tec.openplanner.team/stops/LAUneuv5", "https://tec.openplanner.team/stops/LAUnico2"], ["https://tec.openplanner.team/stops/Lhehoux1", "https://tec.openplanner.team/stops/Lhelait2"], ["https://tec.openplanner.team/stops/Lmomarr3", "https://tec.openplanner.team/stops/Lmomarr4"], ["https://tec.openplanner.team/stops/Bbsgbos1", "https://tec.openplanner.team/stops/Bbsggot2"], ["https://tec.openplanner.team/stops/LBLcalv3", "https://tec.openplanner.team/stops/LBLghuy3"], ["https://tec.openplanner.team/stops/X342aaa", "https://tec.openplanner.team/stops/X354ada"], ["https://tec.openplanner.team/stops/Lsmeg--2", "https://tec.openplanner.team/stops/Lsmlina2"], ["https://tec.openplanner.team/stops/LeUauto1", "https://tec.openplanner.team/stops/LeUrsi-*"], ["https://tec.openplanner.team/stops/H4ma398b", "https://tec.openplanner.team/stops/H4oq409b"], ["https://tec.openplanner.team/stops/LFTneur*", "https://tec.openplanner.team/stops/LTamoul1"], ["https://tec.openplanner.team/stops/LAMcloc1", "https://tec.openplanner.team/stops/LOmpont1"], ["https://tec.openplanner.team/stops/N145adb", "https://tec.openplanner.team/stops/N145aec"], ["https://tec.openplanner.team/stops/Btlbcul1", "https://tec.openplanner.team/stops/Btlbgla2"], ["https://tec.openplanner.team/stops/Bbuztai1", "https://tec.openplanner.team/stops/Bnivbng1"], ["https://tec.openplanner.team/stops/H4he105a", "https://tec.openplanner.team/stops/H4he105b"], ["https://tec.openplanner.team/stops/H1te182a", "https://tec.openplanner.team/stops/H1te187b"], ["https://tec.openplanner.team/stops/H4ma400b", "https://tec.openplanner.team/stops/H4ma401a"], ["https://tec.openplanner.team/stops/X601ala", "https://tec.openplanner.team/stops/X601bga"], ["https://tec.openplanner.team/stops/N162acb", "https://tec.openplanner.team/stops/N162adb"], ["https://tec.openplanner.team/stops/H4fr140a", "https://tec.openplanner.team/stops/H4fr145b"], ["https://tec.openplanner.team/stops/LSPjoli2", "https://tec.openplanner.team/stops/LSZjona1"], ["https://tec.openplanner.team/stops/Cmtfabi2", "https://tec.openplanner.team/stops/Cmtmath2"], ["https://tec.openplanner.team/stops/H4ty291a", "https://tec.openplanner.team/stops/H4ty347b"], ["https://tec.openplanner.team/stops/LbO52--2", "https://tec.openplanner.team/stops/LmD181-1"], ["https://tec.openplanner.team/stops/N501jsb", "https://tec.openplanner.team/stops/N501jtb"], ["https://tec.openplanner.team/stops/X641ata", "https://tec.openplanner.team/stops/X641aua"], ["https://tec.openplanner.team/stops/LRmsmvo2", "https://tec.openplanner.team/stops/LRmsmvo4"], ["https://tec.openplanner.team/stops/Cprbevu1", "https://tec.openplanner.team/stops/Cprgran1"], ["https://tec.openplanner.team/stops/LFIeg--1", "https://tec.openplanner.team/stops/LMYroin1"], ["https://tec.openplanner.team/stops/H1fl142b", "https://tec.openplanner.team/stops/H1fr109b"], ["https://tec.openplanner.team/stops/LPobois1", "https://tec.openplanner.team/stops/LPoneuf1"], ["https://tec.openplanner.team/stops/N351amb", "https://tec.openplanner.team/stops/N351ava"], ["https://tec.openplanner.team/stops/H5bl122a", "https://tec.openplanner.team/stops/H5bl143b"], ["https://tec.openplanner.team/stops/Lmibove2", "https://tec.openplanner.team/stops/Lmicoop1"], ["https://tec.openplanner.team/stops/Ctuosso1", "https://tec.openplanner.team/stops/Ctusold1"], ["https://tec.openplanner.team/stops/Cgymetr1", "https://tec.openplanner.team/stops/Cgyplvi2"], ["https://tec.openplanner.team/stops/LLYchpl1", "https://tec.openplanner.team/stops/LOMware2"], ["https://tec.openplanner.team/stops/LESecco2", "https://tec.openplanner.team/stops/LESmagr2"], ["https://tec.openplanner.team/stops/H4hn115a", "https://tec.openplanner.team/stops/H4hn115b"], ["https://tec.openplanner.team/stops/N535amc", "https://tec.openplanner.team/stops/N564acb"], ["https://tec.openplanner.team/stops/N155aaa", "https://tec.openplanner.team/stops/N155ada"], ["https://tec.openplanner.team/stops/H2bh110b", "https://tec.openplanner.team/stops/H2bh119a"], ["https://tec.openplanner.team/stops/H1wl121a", "https://tec.openplanner.team/stops/H1wl126a"], ["https://tec.openplanner.team/stops/Canplch3", "https://tec.openplanner.team/stops/Cgzhour2"], ["https://tec.openplanner.team/stops/H4be146a", "https://tec.openplanner.team/stops/H5bl118b"], ["https://tec.openplanner.team/stops/X661aua", "https://tec.openplanner.team/stops/X672aab"], ["https://tec.openplanner.team/stops/X354aea", "https://tec.openplanner.team/stops/X354afb"], ["https://tec.openplanner.team/stops/H1do114a", "https://tec.openplanner.team/stops/H1do124a"], ["https://tec.openplanner.team/stops/H4wa150a", "https://tec.openplanner.team/stops/H4wa161a"], ["https://tec.openplanner.team/stops/H4fo115b", "https://tec.openplanner.team/stops/H4ga152a"], ["https://tec.openplanner.team/stops/H4mo148b", "https://tec.openplanner.team/stops/H4mo205a"], ["https://tec.openplanner.team/stops/N232bva", "https://tec.openplanner.team/stops/N232bvb"], ["https://tec.openplanner.team/stops/N508abb", "https://tec.openplanner.team/stops/N508aeb"], ["https://tec.openplanner.team/stops/LRmhage5", "https://tec.openplanner.team/stops/LRmhage7"], ["https://tec.openplanner.team/stops/N118aob", "https://tec.openplanner.team/stops/N118aza"], ["https://tec.openplanner.team/stops/Bsjgegl2", "https://tec.openplanner.team/stops/Bsjgmil2"], ["https://tec.openplanner.team/stops/Bcercsa1", "https://tec.openplanner.team/stops/Bmoucoq2"], ["https://tec.openplanner.team/stops/N536apa", "https://tec.openplanner.team/stops/N563aaa"], ["https://tec.openplanner.team/stops/Lchchau1", "https://tec.openplanner.team/stops/Lrapays1"], ["https://tec.openplanner.team/stops/LXobaty2", "https://tec.openplanner.team/stops/LXobaty3"], ["https://tec.openplanner.team/stops/N874agb", "https://tec.openplanner.team/stops/N874ahb"], ["https://tec.openplanner.team/stops/Llghopo2", "https://tec.openplanner.team/stops/Llgnata1"], ["https://tec.openplanner.team/stops/X662aea", "https://tec.openplanner.team/stops/X662agb"], ["https://tec.openplanner.team/stops/Bgnvcha1", "https://tec.openplanner.team/stops/Bgnvcha2"], ["https://tec.openplanner.team/stops/H5rx115d", "https://tec.openplanner.team/stops/H5rx129a"], ["https://tec.openplanner.team/stops/N113abb", "https://tec.openplanner.team/stops/N113aea"], ["https://tec.openplanner.team/stops/X818asa", "https://tec.openplanner.team/stops/X818aub"], ["https://tec.openplanner.team/stops/Llxeg--2", "https://tec.openplanner.team/stops/Lsweg--1"], ["https://tec.openplanner.team/stops/LERboss2", "https://tec.openplanner.team/stops/LWberno2"], ["https://tec.openplanner.team/stops/LBvviem3", "https://tec.openplanner.team/stops/LFalieg1"], ["https://tec.openplanner.team/stops/Cjojonc1", "https://tec.openplanner.team/stops/Cjojonc2"], ["https://tec.openplanner.team/stops/LFdchau1", "https://tec.openplanner.team/stops/LFdchau2"], ["https://tec.openplanner.team/stops/Canmonu1", "https://tec.openplanner.team/stops/Canmonu4"], ["https://tec.openplanner.team/stops/H1si167a", "https://tec.openplanner.team/stops/H1si169a"], ["https://tec.openplanner.team/stops/X670aca", "https://tec.openplanner.team/stops/X670adb"], ["https://tec.openplanner.team/stops/H4ty323a", "https://tec.openplanner.team/stops/H4ty405b"], ["https://tec.openplanner.team/stops/Canboni1", "https://tec.openplanner.team/stops/Canchbr1"], ["https://tec.openplanner.team/stops/Bhevgar2", "https://tec.openplanner.team/stops/Bhevhha2"], ["https://tec.openplanner.team/stops/LVu03--1", "https://tec.openplanner.team/stops/LVukabi1"], ["https://tec.openplanner.team/stops/LCPlebl*", "https://tec.openplanner.team/stops/LGmcite1"], ["https://tec.openplanner.team/stops/Cmtpire1", "https://tec.openplanner.team/stops/Cmtrneu1"], ["https://tec.openplanner.team/stops/H5el100b", "https://tec.openplanner.team/stops/H5wo128a"], ["https://tec.openplanner.team/stops/N244aca", "https://tec.openplanner.team/stops/N252aab"], ["https://tec.openplanner.team/stops/Cobobjo2", "https://tec.openplanner.team/stops/Cobvill1"], ["https://tec.openplanner.team/stops/Cgysole1", "https://tec.openplanner.team/stops/CMsartc2"], ["https://tec.openplanner.team/stops/X982aka", "https://tec.openplanner.team/stops/X982byb"], ["https://tec.openplanner.team/stops/LBRmc--1", "https://tec.openplanner.team/stops/LBRpt--2"], ["https://tec.openplanner.team/stops/H2re166b", "https://tec.openplanner.team/stops/H2re168b"], ["https://tec.openplanner.team/stops/H1mb129b", "https://tec.openplanner.team/stops/H1mb135b"], ["https://tec.openplanner.team/stops/Bleugar1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/LmHburg1", "https://tec.openplanner.team/stops/LmHperl2"], ["https://tec.openplanner.team/stops/X652acb", "https://tec.openplanner.team/stops/X652adb"], ["https://tec.openplanner.team/stops/Bflegar6", "https://tec.openplanner.team/stops/Cflsncb3"], ["https://tec.openplanner.team/stops/Canboha2", "https://tec.openplanner.team/stops/Cpthaud2"], ["https://tec.openplanner.team/stops/Baudvdr2", "https://tec.openplanner.team/stops/Baudvdu1"], ["https://tec.openplanner.team/stops/Lvtboux1", "https://tec.openplanner.team/stops/Lvtboux2"], ["https://tec.openplanner.team/stops/LAWcorn1", "https://tec.openplanner.team/stops/LAWcorn2"], ["https://tec.openplanner.team/stops/Bcrngat1", "https://tec.openplanner.team/stops/Bcrngat2"], ["https://tec.openplanner.team/stops/N244asa", "https://tec.openplanner.team/stops/N244atb"], ["https://tec.openplanner.team/stops/Cfrcoqu3", "https://tec.openplanner.team/stops/Cfrptfe2"], ["https://tec.openplanner.team/stops/X661ayc", "https://tec.openplanner.team/stops/X661azb"], ["https://tec.openplanner.team/stops/Canplch3", "https://tec.openplanner.team/stops/Clbhour1"], ["https://tec.openplanner.team/stops/Csycant2", "https://tec.openplanner.team/stops/Csysans2"], ["https://tec.openplanner.team/stops/Lmocail2", "https://tec.openplanner.team/stops/Lmodeja2"], ["https://tec.openplanner.team/stops/LFOchab1", "https://tec.openplanner.team/stops/LHGtige1"], ["https://tec.openplanner.team/stops/H4ft136a", "https://tec.openplanner.team/stops/H4ft136b"], ["https://tec.openplanner.team/stops/Ctarpoi1", "https://tec.openplanner.team/stops/N543boa"], ["https://tec.openplanner.team/stops/Bflegar5", "https://tec.openplanner.team/stops/Cflgazo2"], ["https://tec.openplanner.team/stops/LElgerd1", "https://tec.openplanner.team/stops/LElgerd5"], ["https://tec.openplanner.team/stops/Ctilobb2", "https://tec.openplanner.team/stops/H1mc128b"], ["https://tec.openplanner.team/stops/LLnlimb1", "https://tec.openplanner.team/stops/LOeelbe2"], ["https://tec.openplanner.team/stops/Cnacent1", "https://tec.openplanner.team/stops/Cnadepo1"], ["https://tec.openplanner.team/stops/H5at134a", "https://tec.openplanner.team/stops/H5at142b"], ["https://tec.openplanner.team/stops/N540aba", "https://tec.openplanner.team/stops/N578aca"], ["https://tec.openplanner.team/stops/Bpelegl4", "https://tec.openplanner.team/stops/Bpelf961"], ["https://tec.openplanner.team/stops/N308aia", "https://tec.openplanner.team/stops/N308asa"], ["https://tec.openplanner.team/stops/N219aea", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/LCsfize1", "https://tec.openplanner.team/stops/LCsraws1"], ["https://tec.openplanner.team/stops/X608aqa", "https://tec.openplanner.team/stops/X621aca"], ["https://tec.openplanner.team/stops/Lvtchpl3", "https://tec.openplanner.team/stops/Lvtchpl4"], ["https://tec.openplanner.team/stops/N504aca", "https://tec.openplanner.team/stops/N504acb"], ["https://tec.openplanner.team/stops/H4ef164b", "https://tec.openplanner.team/stops/H4fa127b"], ["https://tec.openplanner.team/stops/H3so154b", "https://tec.openplanner.team/stops/H3so179a"], ["https://tec.openplanner.team/stops/Bsdampe2", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/Ldicorb1", "https://tec.openplanner.team/stops/Ldicorb2"], ["https://tec.openplanner.team/stops/N134ajb", "https://tec.openplanner.team/stops/N152abc"], ["https://tec.openplanner.team/stops/Bblaast1", "https://tec.openplanner.team/stops/Bblagar3"], ["https://tec.openplanner.team/stops/H4ir163c", "https://tec.openplanner.team/stops/H4ir167b"], ["https://tec.openplanner.team/stops/Bsgebou1", "https://tec.openplanner.team/stops/Bvilpar2"], ["https://tec.openplanner.team/stops/H1ca104a", "https://tec.openplanner.team/stops/H1ca184b"], ["https://tec.openplanner.team/stops/Llgnati2", "https://tec.openplanner.team/stops/Llgsimo1"], ["https://tec.openplanner.team/stops/N539bea", "https://tec.openplanner.team/stops/N540aka"], ["https://tec.openplanner.team/stops/LHUchh-1", "https://tec.openplanner.team/stops/NL80apa"], ["https://tec.openplanner.team/stops/LOlvill1", "https://tec.openplanner.team/stops/LRuegli2"], ["https://tec.openplanner.team/stops/N117aab", "https://tec.openplanner.team/stops/N117acb"], ["https://tec.openplanner.team/stops/LLAvi651", "https://tec.openplanner.team/stops/LMgkrui1"], ["https://tec.openplanner.team/stops/X512aaa", "https://tec.openplanner.team/stops/X512abb"], ["https://tec.openplanner.team/stops/H1ca102b", "https://tec.openplanner.team/stops/H1ne143b"], ["https://tec.openplanner.team/stops/H1qg138a", "https://tec.openplanner.team/stops/H1qg138b"], ["https://tec.openplanner.team/stops/LGLgare*", "https://tec.openplanner.team/stops/LGLobor1"], ["https://tec.openplanner.team/stops/LThbatt2", "https://tec.openplanner.team/stops/LThpoli1"], ["https://tec.openplanner.team/stops/LMOc50-1", "https://tec.openplanner.team/stops/LMOchen1"], ["https://tec.openplanner.team/stops/LAIrout2", "https://tec.openplanner.team/stops/LCsjone1"], ["https://tec.openplanner.team/stops/Cgofert2", "https://tec.openplanner.team/stops/Ctmmana1"], ["https://tec.openplanner.team/stops/X713aia", "https://tec.openplanner.team/stops/X714aaa"], ["https://tec.openplanner.team/stops/Cchplan2", "https://tec.openplanner.team/stops/Cdasama2"], ["https://tec.openplanner.team/stops/X991aea", "https://tec.openplanner.team/stops/X991aeb"], ["https://tec.openplanner.team/stops/X749aba", "https://tec.openplanner.team/stops/X749abb"], ["https://tec.openplanner.team/stops/LJEchat3", "https://tec.openplanner.team/stops/LJEchat4"], ["https://tec.openplanner.team/stops/Llgptlo4", "https://tec.openplanner.team/stops/Llgptlo5"], ["https://tec.openplanner.team/stops/X756aed", "https://tec.openplanner.team/stops/X756ajb"], ["https://tec.openplanner.team/stops/N531aga", "https://tec.openplanner.team/stops/N531aia"], ["https://tec.openplanner.team/stops/H1bb114a", "https://tec.openplanner.team/stops/H1bb120a"], ["https://tec.openplanner.team/stops/CMdamp1", "https://tec.openplanner.team/stops/CMdamp2"], ["https://tec.openplanner.team/stops/LSkb1352", "https://tec.openplanner.team/stops/LSkbo831"], ["https://tec.openplanner.team/stops/X758ada", "https://tec.openplanner.team/stops/X758ama"], ["https://tec.openplanner.team/stops/X618ama", "https://tec.openplanner.team/stops/X618amb"], ["https://tec.openplanner.team/stops/LWM759-1", "https://tec.openplanner.team/stops/LWM759-2"], ["https://tec.openplanner.team/stops/H4lp125b", "https://tec.openplanner.team/stops/H4lp126a"], ["https://tec.openplanner.team/stops/X715aha", "https://tec.openplanner.team/stops/X731aja"], ["https://tec.openplanner.team/stops/LAUpind1", "https://tec.openplanner.team/stops/LAUpind2"], ["https://tec.openplanner.team/stops/Bbgerlr1", "https://tec.openplanner.team/stops/Blmlvex2"], ["https://tec.openplanner.team/stops/H4fa126b", "https://tec.openplanner.team/stops/H4fa128b"], ["https://tec.openplanner.team/stops/Cmlgche2", "https://tec.openplanner.team/stops/Cmlvxmo1"], ["https://tec.openplanner.team/stops/N548awa", "https://tec.openplanner.team/stops/N548aya"], ["https://tec.openplanner.team/stops/Braclin1", "https://tec.openplanner.team/stops/Bracrpe1"], ["https://tec.openplanner.team/stops/Bcsegal1", "https://tec.openplanner.team/stops/Bcsemar1"], ["https://tec.openplanner.team/stops/H1br122b", "https://tec.openplanner.team/stops/H1ev112b"], ["https://tec.openplanner.team/stops/LHhchau2", "https://tec.openplanner.team/stops/LHheg--1"], ["https://tec.openplanner.team/stops/Lsebove1", "https://tec.openplanner.team/stops/Lseconc1"], ["https://tec.openplanner.team/stops/LESamos1", "https://tec.openplanner.team/stops/LESamos2"], ["https://tec.openplanner.team/stops/H4mo133a", "https://tec.openplanner.team/stops/H4mo165b"], ["https://tec.openplanner.team/stops/X639aeb", "https://tec.openplanner.team/stops/X643aba"], ["https://tec.openplanner.team/stops/Bcsecar1", "https://tec.openplanner.team/stops/Bmoufil1"], ["https://tec.openplanner.team/stops/X939adb", "https://tec.openplanner.team/stops/X939aeb"], ["https://tec.openplanner.team/stops/X716aba", "https://tec.openplanner.team/stops/X716aeb"], ["https://tec.openplanner.team/stops/Bneesan1", "https://tec.openplanner.team/stops/Bneesan2"], ["https://tec.openplanner.team/stops/N542aka", "https://tec.openplanner.team/stops/N542akb"], ["https://tec.openplanner.team/stops/LENengi2", "https://tec.openplanner.team/stops/LENindu2"], ["https://tec.openplanner.team/stops/N217aba", "https://tec.openplanner.team/stops/N337aib"], ["https://tec.openplanner.team/stops/Cgoboll4", "https://tec.openplanner.team/stops/Cgogare2"], ["https://tec.openplanner.team/stops/X618alb", "https://tec.openplanner.team/stops/X618aoa"], ["https://tec.openplanner.team/stops/H4al100b", "https://tec.openplanner.team/stops/H4ty265a"], ["https://tec.openplanner.team/stops/LLOberl1", "https://tec.openplanner.team/stops/LLOchpl2"], ["https://tec.openplanner.team/stops/H4po125b", "https://tec.openplanner.team/stops/H4po128a"], ["https://tec.openplanner.team/stops/H1ha187a", "https://tec.openplanner.team/stops/H1ob328a"], ["https://tec.openplanner.team/stops/N506ala", "https://tec.openplanner.team/stops/N506aua"], ["https://tec.openplanner.team/stops/Llgabat2", "https://tec.openplanner.team/stops/Llgpoli1"], ["https://tec.openplanner.team/stops/X877aaa", "https://tec.openplanner.team/stops/X877ada"], ["https://tec.openplanner.team/stops/Bchgvil1", "https://tec.openplanner.team/stops/Bdvminc2"], ["https://tec.openplanner.team/stops/N531aea", "https://tec.openplanner.team/stops/N531aeb"], ["https://tec.openplanner.team/stops/H1qy131a", "https://tec.openplanner.team/stops/H1qy133b"], ["https://tec.openplanner.team/stops/Cgoboll3", "https://tec.openplanner.team/stops/Cgoboll4"], ["https://tec.openplanner.team/stops/Bbcoubo2", "https://tec.openplanner.team/stops/H3br110a"], ["https://tec.openplanner.team/stops/X639asa", "https://tec.openplanner.team/stops/X675aba"], ["https://tec.openplanner.team/stops/X715apb", "https://tec.openplanner.team/stops/X731aba"], ["https://tec.openplanner.team/stops/LvA30--1", "https://tec.openplanner.team/stops/LvAkirc1"], ["https://tec.openplanner.team/stops/Brsgera2", "https://tec.openplanner.team/stops/Bwbfckr1"], ["https://tec.openplanner.team/stops/Clomari2", "https://tec.openplanner.team/stops/Clomart1"], ["https://tec.openplanner.team/stops/H2ma205a", "https://tec.openplanner.team/stops/H2ma263a"], ["https://tec.openplanner.team/stops/Lflcle-5", "https://tec.openplanner.team/stops/Lflgare1"], ["https://tec.openplanner.team/stops/NL81ahb", "https://tec.openplanner.team/stops/NL82agb"], ["https://tec.openplanner.team/stops/LVLzoni2", "https://tec.openplanner.team/stops/LWDbure1"], ["https://tec.openplanner.team/stops/Lveclin2", "https://tec.openplanner.team/stops/Lveherl1"], ["https://tec.openplanner.team/stops/H2an109a", "https://tec.openplanner.team/stops/H2le150b"], ["https://tec.openplanner.team/stops/X927aab", "https://tec.openplanner.team/stops/X927abb"], ["https://tec.openplanner.team/stops/LmNpost1", "https://tec.openplanner.team/stops/LmNstaa1"], ["https://tec.openplanner.team/stops/Brsrfen2", "https://tec.openplanner.team/stops/Brsrrcu1"], ["https://tec.openplanner.team/stops/N507akb", "https://tec.openplanner.team/stops/N509aoa"], ["https://tec.openplanner.team/stops/N501cua", "https://tec.openplanner.team/stops/N501ema"], ["https://tec.openplanner.team/stops/H2pe154a", "https://tec.openplanner.team/stops/H2pe159a"], ["https://tec.openplanner.team/stops/LVbsurr1", "https://tec.openplanner.team/stops/NL77ala"], ["https://tec.openplanner.team/stops/N243aca", "https://tec.openplanner.team/stops/N243ada"], ["https://tec.openplanner.team/stops/Lsccdor1", "https://tec.openplanner.team/stops/Lscstan2"], ["https://tec.openplanner.team/stops/X750afa", "https://tec.openplanner.team/stops/X750bma"], ["https://tec.openplanner.team/stops/LRfcent2", "https://tec.openplanner.team/stops/LRffroi1"], ["https://tec.openplanner.team/stops/Lghjans2", "https://tec.openplanner.team/stops/Lghmeun3"], ["https://tec.openplanner.team/stops/H5bl118b", "https://tec.openplanner.team/stops/H5qu143b"], ["https://tec.openplanner.team/stops/H4bx167a", "https://tec.openplanner.team/stops/H4te251b"], ["https://tec.openplanner.team/stops/X615arb", "https://tec.openplanner.team/stops/X615ata"], ["https://tec.openplanner.team/stops/LbEkirc*", "https://tec.openplanner.team/stops/LwRkirc2"], ["https://tec.openplanner.team/stops/Llgfusc4", "https://tec.openplanner.team/stops/Llgfusc6"], ["https://tec.openplanner.team/stops/N522bvc", "https://tec.openplanner.team/stops/N522bvd"], ["https://tec.openplanner.team/stops/X942abc", "https://tec.openplanner.team/stops/X942adb"], ["https://tec.openplanner.team/stops/N118acb", "https://tec.openplanner.team/stops/N118ayb"], ["https://tec.openplanner.team/stops/H4ty285a", "https://tec.openplanner.team/stops/H4ty384b"], ["https://tec.openplanner.team/stops/X789ahd", "https://tec.openplanner.team/stops/X789aia"], ["https://tec.openplanner.team/stops/LAWchau1", "https://tec.openplanner.team/stops/LAWxhen2"], ["https://tec.openplanner.team/stops/Llgcond1", "https://tec.openplanner.team/stops/Llgdesa1"], ["https://tec.openplanner.team/stops/Cmohotv4", "https://tec.openplanner.team/stops/Cmopn4"], ["https://tec.openplanner.team/stops/Lemarde1", "https://tec.openplanner.team/stops/Lemboul1"], ["https://tec.openplanner.team/stops/Cmg4bra2", "https://tec.openplanner.team/stops/Cmgcabi2"], ["https://tec.openplanner.team/stops/Clbptno1", "https://tec.openplanner.team/stops/Cthgrat2"], ["https://tec.openplanner.team/stops/H2le148a", "https://tec.openplanner.team/stops/H2le150a"], ["https://tec.openplanner.team/stops/N543ala", "https://tec.openplanner.team/stops/N543aoa"], ["https://tec.openplanner.team/stops/Llonaes1", "https://tec.openplanner.team/stops/Llonaes2"], ["https://tec.openplanner.team/stops/X661ava", "https://tec.openplanner.team/stops/X661aya"], ["https://tec.openplanner.team/stops/H1el133b", "https://tec.openplanner.team/stops/H1el137a"], ["https://tec.openplanner.team/stops/LSGbail1", "https://tec.openplanner.team/stops/LSGbail2"], ["https://tec.openplanner.team/stops/LNEec--1", "https://tec.openplanner.team/stops/LSHfief2"], ["https://tec.openplanner.team/stops/Cmlhauc3", "https://tec.openplanner.team/stops/Cmlvesp1"], ["https://tec.openplanner.team/stops/N538afa", "https://tec.openplanner.team/stops/N538awb"], ["https://tec.openplanner.team/stops/N118axb", "https://tec.openplanner.team/stops/N118bbb"], ["https://tec.openplanner.team/stops/X654aia", "https://tec.openplanner.team/stops/X654aja"], ["https://tec.openplanner.team/stops/LFymare3", "https://tec.openplanner.team/stops/LFymare4"], ["https://tec.openplanner.team/stops/Cmeptmi2", "https://tec.openplanner.team/stops/Cmeptmi5"], ["https://tec.openplanner.team/stops/Bovesnh2", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://tec.openplanner.team/stops/H1br129a", "https://tec.openplanner.team/stops/H3bo103b"], ["https://tec.openplanner.team/stops/Cnalava3", "https://tec.openplanner.team/stops/Cnapair1"], ["https://tec.openplanner.team/stops/N304aba", "https://tec.openplanner.team/stops/N305aab"], ["https://tec.openplanner.team/stops/Bptrgri2", "https://tec.openplanner.team/stops/H2se105a"], ["https://tec.openplanner.team/stops/X982blc", "https://tec.openplanner.team/stops/X982bld"], ["https://tec.openplanner.team/stops/Lsmdepo1", "https://tec.openplanner.team/stops/Lsmdepo2"], ["https://tec.openplanner.team/stops/N576abb", "https://tec.openplanner.team/stops/N576aja"], ["https://tec.openplanner.team/stops/Lflec--1", "https://tec.openplanner.team/stops/Lflweri1"], ["https://tec.openplanner.team/stops/Bbaualz2", "https://tec.openplanner.team/stops/Bnivvcw2"], ["https://tec.openplanner.team/stops/X685afa", "https://tec.openplanner.team/stops/X685afb"], ["https://tec.openplanner.team/stops/LCEhayo2", "https://tec.openplanner.team/stops/LCEplac1"], ["https://tec.openplanner.team/stops/Cwfnamu1", "https://tec.openplanner.team/stops/Cwfnamu2"], ["https://tec.openplanner.team/stops/LMubras1", "https://tec.openplanner.team/stops/LMubras2"], ["https://tec.openplanner.team/stops/LAYharz2", "https://tec.openplanner.team/stops/LAYwerb2"], ["https://tec.openplanner.team/stops/Bcrngat2", "https://tec.openplanner.team/stops/Bcrntru2"], ["https://tec.openplanner.team/stops/N308bfb", "https://tec.openplanner.team/stops/N308bgb"], ["https://tec.openplanner.team/stops/X371adb", "https://tec.openplanner.team/stops/X371aea"], ["https://tec.openplanner.team/stops/LATmonu1", "https://tec.openplanner.team/stops/LHUfali1"], ["https://tec.openplanner.team/stops/LHAcite2", "https://tec.openplanner.team/stops/LHAclin1"], ["https://tec.openplanner.team/stops/Brixbai1", "https://tec.openplanner.team/stops/Brixbai2"], ["https://tec.openplanner.team/stops/X994aeb", "https://tec.openplanner.team/stops/X994aga"], ["https://tec.openplanner.team/stops/Bbiehec1", "https://tec.openplanner.team/stops/Bbiehec2"], ["https://tec.openplanner.team/stops/X982arb", "https://tec.openplanner.team/stops/X982bva"], ["https://tec.openplanner.team/stops/LLzcruc1", "https://tec.openplanner.team/stops/LSTvaul1"], ["https://tec.openplanner.team/stops/LBafagn2", "https://tec.openplanner.team/stops/LFrec--1"], ["https://tec.openplanner.team/stops/LKmcite1", "https://tec.openplanner.team/stops/LKmdani2"], ["https://tec.openplanner.team/stops/X713aeb", "https://tec.openplanner.team/stops/X713ama"], ["https://tec.openplanner.team/stops/H4ty296b", "https://tec.openplanner.team/stops/H4ty310b"], ["https://tec.openplanner.team/stops/Ccymabo2", "https://tec.openplanner.team/stops/Csregli2"], ["https://tec.openplanner.team/stops/LmS11--2", "https://tec.openplanner.team/stops/LsFcafe2"], ["https://tec.openplanner.team/stops/LHCbois2", "https://tec.openplanner.team/stops/LHCcoul2"], ["https://tec.openplanner.team/stops/Cpljonc1", "https://tec.openplanner.team/stops/NC11aga"], ["https://tec.openplanner.team/stops/LTiflor2", "https://tec.openplanner.team/stops/LTigera2"], ["https://tec.openplanner.team/stops/LTRcite1", "https://tec.openplanner.team/stops/LTRferm2"], ["https://tec.openplanner.team/stops/X991ada", "https://tec.openplanner.team/stops/X991agc"], ["https://tec.openplanner.team/stops/Ldichat2", "https://tec.openplanner.team/stops/Ldihusq1"], ["https://tec.openplanner.team/stops/H1gc122a", "https://tec.openplanner.team/stops/H1gc122b"], ["https://tec.openplanner.team/stops/H2sb228d", "https://tec.openplanner.team/stops/H2sb242b"], ["https://tec.openplanner.team/stops/N501aqa", "https://tec.openplanner.team/stops/N501baa"], ["https://tec.openplanner.team/stops/LHTbonn1", "https://tec.openplanner.team/stops/LHTcent2"], ["https://tec.openplanner.team/stops/X641aka", "https://tec.openplanner.team/stops/X641alb"], ["https://tec.openplanner.team/stops/N557afa", "https://tec.openplanner.team/stops/N557aha"], ["https://tec.openplanner.team/stops/Lmlcrot3", "https://tec.openplanner.team/stops/Lmlpata*"], ["https://tec.openplanner.team/stops/H3lr113a", "https://tec.openplanner.team/stops/H3lr113b"], ["https://tec.openplanner.team/stops/Bdvmalo1", "https://tec.openplanner.team/stops/Bdvmalo2"], ["https://tec.openplanner.team/stops/H4ma205a", "https://tec.openplanner.team/stops/H4ma205b"], ["https://tec.openplanner.team/stops/H3so161b", "https://tec.openplanner.team/stops/H3so176a"], ["https://tec.openplanner.team/stops/N543bpb", "https://tec.openplanner.team/stops/N543cmb"], ["https://tec.openplanner.team/stops/LeUdepo2", "https://tec.openplanner.team/stops/LeUlasc3"], ["https://tec.openplanner.team/stops/H3bi107b", "https://tec.openplanner.team/stops/H3bi117a"], ["https://tec.openplanner.team/stops/X946aia", "https://tec.openplanner.team/stops/X948aca"], ["https://tec.openplanner.team/stops/N501icy", "https://tec.openplanner.team/stops/N501icz"], ["https://tec.openplanner.team/stops/X911ala", "https://tec.openplanner.team/stops/X985aac"], ["https://tec.openplanner.team/stops/X818anb", "https://tec.openplanner.team/stops/X820aeb"], ["https://tec.openplanner.team/stops/X744abb", "https://tec.openplanner.team/stops/X746aha"], ["https://tec.openplanner.team/stops/LHMchev1", "https://tec.openplanner.team/stops/LHMchev2"], ["https://tec.openplanner.team/stops/N538aqb", "https://tec.openplanner.team/stops/N538ara"], ["https://tec.openplanner.team/stops/X870aha", "https://tec.openplanner.team/stops/X870aib"], ["https://tec.openplanner.team/stops/H4mv193a", "https://tec.openplanner.team/stops/H4mv195b"], ["https://tec.openplanner.team/stops/X636aia", "https://tec.openplanner.team/stops/X649aab"], ["https://tec.openplanner.team/stops/N539aqa", "https://tec.openplanner.team/stops/N539aqb"], ["https://tec.openplanner.team/stops/N533aoa", "https://tec.openplanner.team/stops/N533aob"], ["https://tec.openplanner.team/stops/Bgdhpco2", "https://tec.openplanner.team/stops/Blincoo1"], ["https://tec.openplanner.team/stops/LHCmonu4", "https://tec.openplanner.team/stops/LHCruyf2"], ["https://tec.openplanner.team/stops/LHEches2", "https://tec.openplanner.team/stops/LHEchex2"], ["https://tec.openplanner.team/stops/H2an104a", "https://tec.openplanner.team/stops/H2an111a"], ["https://tec.openplanner.team/stops/Bclglbu1", "https://tec.openplanner.team/stops/Bllnfle1"], ["https://tec.openplanner.team/stops/LCPcomb2", "https://tec.openplanner.team/stops/LCPconf1"], ["https://tec.openplanner.team/stops/H1ms293b", "https://tec.openplanner.team/stops/H1ms312b"], ["https://tec.openplanner.team/stops/H5at113a", "https://tec.openplanner.team/stops/H5at132b"], ["https://tec.openplanner.team/stops/X370ada", "https://tec.openplanner.team/stops/X850aba"], ["https://tec.openplanner.team/stops/Lrcarse1", "https://tec.openplanner.team/stops/LrcarsT2"], ["https://tec.openplanner.team/stops/N501ebz", "https://tec.openplanner.team/stops/N501fwz"], ["https://tec.openplanner.team/stops/X911ana", "https://tec.openplanner.team/stops/X911anb"], ["https://tec.openplanner.team/stops/X871aaa", "https://tec.openplanner.team/stops/X871aba"], ["https://tec.openplanner.team/stops/Canresi2", "https://tec.openplanner.team/stops/Canrobe1"], ["https://tec.openplanner.team/stops/N501hub", "https://tec.openplanner.team/stops/N501ikb"], ["https://tec.openplanner.team/stops/LVSbleu1", "https://tec.openplanner.team/stops/LVSbleu2"], ["https://tec.openplanner.team/stops/X768ald", "https://tec.openplanner.team/stops/X768ama"], ["https://tec.openplanner.team/stops/LAWlonc1", "https://tec.openplanner.team/stops/LAWlonc2"], ["https://tec.openplanner.team/stops/H5el100a", "https://tec.openplanner.team/stops/H5el110b"], ["https://tec.openplanner.team/stops/H2ll182b", "https://tec.openplanner.team/stops/H2ll196a"], ["https://tec.openplanner.team/stops/Blsmjja2", "https://tec.openplanner.team/stops/Boplham1"], ["https://tec.openplanner.team/stops/LGAbois1", "https://tec.openplanner.team/stops/LWAaxhe2"], ["https://tec.openplanner.team/stops/H1sy150a", "https://tec.openplanner.team/stops/H1sy150b"], ["https://tec.openplanner.team/stops/Bsamegl2", "https://tec.openplanner.team/stops/Bsampli2"], ["https://tec.openplanner.team/stops/LBPmais2", "https://tec.openplanner.team/stops/LSLdall1"], ["https://tec.openplanner.team/stops/H2ch105c", "https://tec.openplanner.team/stops/H2ch105d"], ["https://tec.openplanner.team/stops/N537aga", "https://tec.openplanner.team/stops/N537aja"], ["https://tec.openplanner.team/stops/Cflpost2", "https://tec.openplanner.team/stops/Cwgcroi2"], ["https://tec.openplanner.team/stops/LKmmelo1", "https://tec.openplanner.team/stops/LKmmelo2"], ["https://tec.openplanner.team/stops/Bperqui2", "https://tec.openplanner.team/stops/N519abb"], ["https://tec.openplanner.team/stops/Lprchat2", "https://tec.openplanner.team/stops/Lprperr2"], ["https://tec.openplanner.team/stops/X614afa", "https://tec.openplanner.team/stops/X614aga"], ["https://tec.openplanner.team/stops/LHYwach2", "https://tec.openplanner.team/stops/LLNbeau2"], ["https://tec.openplanner.team/stops/Ljubrec2", "https://tec.openplanner.team/stops/Ljubruy*"], ["https://tec.openplanner.team/stops/Llglaur2", "https://tec.openplanner.team/stops/Llgmass2"], ["https://tec.openplanner.team/stops/LOL6che1", "https://tec.openplanner.team/stops/LSOdow%C3%A91"], ["https://tec.openplanner.team/stops/Btsllec1", "https://tec.openplanner.team/stops/Btsllfp2"], ["https://tec.openplanner.team/stops/Lve-isi1", "https://tec.openplanner.team/stops/Lvevieu2"], ["https://tec.openplanner.team/stops/Cvpcdec1", "https://tec.openplanner.team/stops/Cvpplan2"], ["https://tec.openplanner.team/stops/Csiegli1", "https://tec.openplanner.team/stops/N106afa"], ["https://tec.openplanner.team/stops/Bneedia1", "https://tec.openplanner.team/stops/Bneervc1"], ["https://tec.openplanner.team/stops/H4pq116b", "https://tec.openplanner.team/stops/H4pq118b"], ["https://tec.openplanner.team/stops/Csoforr1", "https://tec.openplanner.team/stops/Csoperi2"], ["https://tec.openplanner.team/stops/LBQmaye2", "https://tec.openplanner.team/stops/X919aia"], ["https://tec.openplanner.team/stops/Lsehaut2", "https://tec.openplanner.team/stops/Lsevecq1"], ["https://tec.openplanner.team/stops/LTPcarr2", "https://tec.openplanner.team/stops/LTPsatr1"], ["https://tec.openplanner.team/stops/X641aga", "https://tec.openplanner.team/stops/X641ajb"], ["https://tec.openplanner.team/stops/Canmonu2", "https://tec.openplanner.team/stops/Canplal2"], ["https://tec.openplanner.team/stops/Csslesc2", "https://tec.openplanner.team/stops/Csycant1"], ["https://tec.openplanner.team/stops/Bnivsba1", "https://tec.openplanner.team/stops/Bnivsho1"], ["https://tec.openplanner.team/stops/Lancolr2", "https://tec.openplanner.team/stops/Lanegal2"], ["https://tec.openplanner.team/stops/LVbgend1", "https://tec.openplanner.team/stops/LVbgend2"], ["https://tec.openplanner.team/stops/N228aeb", "https://tec.openplanner.team/stops/N235ada"], ["https://tec.openplanner.team/stops/X615ala", "https://tec.openplanner.team/stops/X615bra"], ["https://tec.openplanner.team/stops/N515ala", "https://tec.openplanner.team/stops/N515ata"], ["https://tec.openplanner.team/stops/X982asb", "https://tec.openplanner.team/stops/X982cca"], ["https://tec.openplanner.team/stops/Bbsicen2", "https://tec.openplanner.team/stops/Bhtihau2"], ["https://tec.openplanner.team/stops/LJSforg2", "https://tec.openplanner.team/stops/Lpechin1"], ["https://tec.openplanner.team/stops/X897ama", "https://tec.openplanner.team/stops/X897anb"], ["https://tec.openplanner.team/stops/LFCotte2", "https://tec.openplanner.team/stops/LFCscho2"], ["https://tec.openplanner.team/stops/LENarde2", "https://tec.openplanner.team/stops/LENparc2"], ["https://tec.openplanner.team/stops/N543bqb", "https://tec.openplanner.team/stops/N543cha"], ["https://tec.openplanner.team/stops/Cmahotv1", "https://tec.openplanner.team/stops/Cmomoul4"], ["https://tec.openplanner.team/stops/H2ec103a", "https://tec.openplanner.team/stops/H3br101a"], ["https://tec.openplanner.team/stops/Lsefive1", "https://tec.openplanner.team/stops/Lsemany1"], ["https://tec.openplanner.team/stops/Barchez1", "https://tec.openplanner.team/stops/Bnetegl3"], ["https://tec.openplanner.team/stops/X637aeb", "https://tec.openplanner.team/stops/X637agb"], ["https://tec.openplanner.team/stops/Bclgpla1", "https://tec.openplanner.team/stops/Bdvmtve2"], ["https://tec.openplanner.team/stops/Bgnvgir1", "https://tec.openplanner.team/stops/Bgnvoha2"], ["https://tec.openplanner.team/stops/LVSslin1", "https://tec.openplanner.team/stops/LVSslin4"], ["https://tec.openplanner.team/stops/Bchgqve1", "https://tec.openplanner.team/stops/Bchgqve3"], ["https://tec.openplanner.team/stops/Cmorgof1", "https://tec.openplanner.team/stops/Cmosaba3"], ["https://tec.openplanner.team/stops/N501crb", "https://tec.openplanner.team/stops/N501crc"], ["https://tec.openplanner.team/stops/X660aca", "https://tec.openplanner.team/stops/X660acb"], ["https://tec.openplanner.team/stops/H1te178a", "https://tec.openplanner.team/stops/H1te178b"], ["https://tec.openplanner.team/stops/X917afa", "https://tec.openplanner.team/stops/X917aga"], ["https://tec.openplanner.team/stops/X759afb", "https://tec.openplanner.team/stops/X759agb"], ["https://tec.openplanner.team/stops/LVIhall2", "https://tec.openplanner.team/stops/LVIjacq1"], ["https://tec.openplanner.team/stops/X994adb", "https://tec.openplanner.team/stops/X994agb"], ["https://tec.openplanner.team/stops/LeYteeh1", "https://tec.openplanner.team/stops/LeYvoge2"], ["https://tec.openplanner.team/stops/H1cu124b", "https://tec.openplanner.team/stops/H1cu130b"], ["https://tec.openplanner.team/stops/H1mj125a", "https://tec.openplanner.team/stops/H1mj125b"], ["https://tec.openplanner.team/stops/N234aeb", "https://tec.openplanner.team/stops/N234afb"], ["https://tec.openplanner.team/stops/H1lb137b", "https://tec.openplanner.team/stops/H1lb139b"], ["https://tec.openplanner.team/stops/LAUcarr2", "https://tec.openplanner.team/stops/LFdeg--4"], ["https://tec.openplanner.team/stops/LvA30--2", "https://tec.openplanner.team/stops/LvAkirc4"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X725bfa"], ["https://tec.openplanner.team/stops/X625aea", "https://tec.openplanner.team/stops/X625agb"], ["https://tec.openplanner.team/stops/LFFmarc2", "https://tec.openplanner.team/stops/LVEtomb2"], ["https://tec.openplanner.team/stops/N501dgb", "https://tec.openplanner.team/stops/N501lea"], ["https://tec.openplanner.team/stops/Ljehotv1", "https://tec.openplanner.team/stops/Ljexhav2"], ["https://tec.openplanner.team/stops/Cfmgrmo1", "https://tec.openplanner.team/stops/Cfmgrmo2"], ["https://tec.openplanner.team/stops/N204aca", "https://tec.openplanner.team/stops/N204aga"], ["https://tec.openplanner.team/stops/X750bga", "https://tec.openplanner.team/stops/X750bgb"], ["https://tec.openplanner.team/stops/X801bqa", "https://tec.openplanner.team/stops/X801bsa"], ["https://tec.openplanner.team/stops/H4mg139a", "https://tec.openplanner.team/stops/H4mg139b"], ["https://tec.openplanner.team/stops/H5st167a", "https://tec.openplanner.team/stops/H5st167b"], ["https://tec.openplanner.team/stops/LFCalte1", "https://tec.openplanner.team/stops/LFChuis1"], ["https://tec.openplanner.team/stops/N544acb", "https://tec.openplanner.team/stops/N544afa"], ["https://tec.openplanner.team/stops/LkEfrie2", "https://tec.openplanner.team/stops/LkEmax-2"], ["https://tec.openplanner.team/stops/Bnivplt2", "https://tec.openplanner.team/stops/Bnivpro2"], ["https://tec.openplanner.team/stops/Ccugilb2", "https://tec.openplanner.team/stops/Cflvxsa1"], ["https://tec.openplanner.team/stops/LLxcana1", "https://tec.openplanner.team/stops/LLxeclu2"], ["https://tec.openplanner.team/stops/H1eu103a", "https://tec.openplanner.team/stops/H1eu103b"], ["https://tec.openplanner.team/stops/LPUmang1", "https://tec.openplanner.team/stops/LPUmang2"], ["https://tec.openplanner.team/stops/Ldilyce*", "https://tec.openplanner.team/stops/Ldipl--4"], ["https://tec.openplanner.team/stops/H4ra159a", "https://tec.openplanner.team/stops/H4tu171b"], ["https://tec.openplanner.team/stops/Llgamer1", "https://tec.openplanner.team/stops/Llgoutr3"], ["https://tec.openplanner.team/stops/H1vh135b", "https://tec.openplanner.team/stops/H1vh137a"], ["https://tec.openplanner.team/stops/Cthnord1", "https://tec.openplanner.team/stops/Cthnsnc"], ["https://tec.openplanner.team/stops/Bgnvbsi1", "https://tec.openplanner.team/stops/Bgnvfai1"], ["https://tec.openplanner.team/stops/Cgzpjeu2", "https://tec.openplanner.team/stops/Cgzplac3"], ["https://tec.openplanner.team/stops/N425afb", "https://tec.openplanner.team/stops/N425agb"], ["https://tec.openplanner.team/stops/Ctuecol4", "https://tec.openplanner.team/stops/Ctuyser1"], ["https://tec.openplanner.team/stops/Lfhgare1", "https://tec.openplanner.team/stops/Lfhmalv2"], ["https://tec.openplanner.team/stops/X979aca", "https://tec.openplanner.team/stops/X979adb"], ["https://tec.openplanner.team/stops/LMAwavr1", "https://tec.openplanner.team/stops/LMAwavr2"], ["https://tec.openplanner.team/stops/LBIvill3", "https://tec.openplanner.team/stops/LBIvill4"], ["https://tec.openplanner.team/stops/N568aab", "https://tec.openplanner.team/stops/N568aca"], ["https://tec.openplanner.team/stops/Ctrleju1", "https://tec.openplanner.team/stops/Ctrvert1"], ["https://tec.openplanner.team/stops/Lbrfagn1", "https://tec.openplanner.team/stops/Lbrfune*"], ["https://tec.openplanner.team/stops/Blemwob3", "https://tec.openplanner.team/stops/Bstecal2"], ["https://tec.openplanner.team/stops/N228aaa", "https://tec.openplanner.team/stops/N228aeb"], ["https://tec.openplanner.team/stops/H1bs112b", "https://tec.openplanner.team/stops/H1sb148b"], ["https://tec.openplanner.team/stops/H1ne145b", "https://tec.openplanner.team/stops/H1ne148b"], ["https://tec.openplanner.team/stops/X576ada", "https://tec.openplanner.team/stops/X576aea"], ["https://tec.openplanner.team/stops/Lgrcral1", "https://tec.openplanner.team/stops/Lgrcral2"], ["https://tec.openplanner.team/stops/LVnourt3", "https://tec.openplanner.team/stops/LVnourt4"], ["https://tec.openplanner.team/stops/H2pr118a", "https://tec.openplanner.team/stops/H3so185a"], ["https://tec.openplanner.team/stops/X824abb", "https://tec.openplanner.team/stops/X824acb"], ["https://tec.openplanner.team/stops/Bnstver2", "https://tec.openplanner.team/stops/H3br122b"], ["https://tec.openplanner.team/stops/N424acb", "https://tec.openplanner.team/stops/N424adb"], ["https://tec.openplanner.team/stops/H1lb154a", "https://tec.openplanner.team/stops/H1pa167b"], ["https://tec.openplanner.team/stops/H2hg145a", "https://tec.openplanner.team/stops/H2hg150a"], ["https://tec.openplanner.team/stops/X636ata", "https://tec.openplanner.team/stops/X636aub"], ["https://tec.openplanner.team/stops/X733ahb", "https://tec.openplanner.team/stops/X733ajb"], ["https://tec.openplanner.team/stops/Bbiehec2", "https://tec.openplanner.team/stops/Bbiehpo1"], ["https://tec.openplanner.team/stops/Cmqbasv2", "https://tec.openplanner.team/stops/X611aca"], ["https://tec.openplanner.team/stops/N532aab", "https://tec.openplanner.team/stops/N532anb"], ["https://tec.openplanner.team/stops/Bwavbpi1", "https://tec.openplanner.team/stops/Bwavvpr2"], ["https://tec.openplanner.team/stops/X618aeb", "https://tec.openplanner.team/stops/X618afb"], ["https://tec.openplanner.team/stops/H4hx112a", "https://tec.openplanner.team/stops/H4hx115a"], ["https://tec.openplanner.team/stops/NC14aod", "https://tec.openplanner.team/stops/NC14apb"], ["https://tec.openplanner.team/stops/X601bpa", "https://tec.openplanner.team/stops/X601bqa"], ["https://tec.openplanner.team/stops/X398aba", "https://tec.openplanner.team/stops/X398aga"], ["https://tec.openplanner.team/stops/LSUroyo1", "https://tec.openplanner.team/stops/LSZeg--1"], ["https://tec.openplanner.team/stops/H1eq116b", "https://tec.openplanner.team/stops/H1eq117a"], ["https://tec.openplanner.team/stops/X640afa", "https://tec.openplanner.team/stops/X640afb"], ["https://tec.openplanner.team/stops/LaSneuh1", "https://tec.openplanner.team/stops/LaSneuh2"], ["https://tec.openplanner.team/stops/X743aeb", "https://tec.openplanner.team/stops/X743afb"], ["https://tec.openplanner.team/stops/LWahott1", "https://tec.openplanner.team/stops/LWazoni2"], ["https://tec.openplanner.team/stops/N365aba", "https://tec.openplanner.team/stops/N365acb"], ["https://tec.openplanner.team/stops/X993aab", "https://tec.openplanner.team/stops/X993abd"], ["https://tec.openplanner.team/stops/Ljubois1", "https://tec.openplanner.team/stops/Ljubois2"], ["https://tec.openplanner.team/stops/LbRkirc1", "https://tec.openplanner.team/stops/LwTkabi2"], ["https://tec.openplanner.team/stops/X747ala", "https://tec.openplanner.team/stops/X754akb"], ["https://tec.openplanner.team/stops/LHUhaum2", "https://tec.openplanner.team/stops/LHUhaut1"], ["https://tec.openplanner.team/stops/Ccoptca2", "https://tec.openplanner.team/stops/Cgofert1"], ["https://tec.openplanner.team/stops/H1sy144a", "https://tec.openplanner.team/stops/H1sy144c"], ["https://tec.openplanner.team/stops/N570acb", "https://tec.openplanner.team/stops/N570agb"], ["https://tec.openplanner.team/stops/Cmaacac1", "https://tec.openplanner.team/stops/Cmacoll2"], ["https://tec.openplanner.team/stops/H4bs112a", "https://tec.openplanner.team/stops/H4ca123b"], ["https://tec.openplanner.team/stops/LeUschn2", "https://tec.openplanner.team/stops/LkTkabi2"], ["https://tec.openplanner.team/stops/LlgPRVo2", "https://tec.openplanner.team/stops/Lrcstad1"], ["https://tec.openplanner.team/stops/LLUvent2", "https://tec.openplanner.team/stops/LLUvent4"], ["https://tec.openplanner.team/stops/Lheelva2", "https://tec.openplanner.team/stops/LHemoul2"], ["https://tec.openplanner.team/stops/LSTvaul1", "https://tec.openplanner.team/stops/LSTvaul2"], ["https://tec.openplanner.team/stops/X806aca", "https://tec.openplanner.team/stops/X806acb"], ["https://tec.openplanner.team/stops/LCeterm1", "https://tec.openplanner.team/stops/LGAnovi1"], ["https://tec.openplanner.team/stops/H4bd109b", "https://tec.openplanner.team/stops/H4bd111a"], ["https://tec.openplanner.team/stops/Bviravi2", "https://tec.openplanner.team/stops/Bvirdco2"], ["https://tec.openplanner.team/stops/LWZdtec1", "https://tec.openplanner.team/stops/X261aaa"], ["https://tec.openplanner.team/stops/Cfnegli1", "https://tec.openplanner.team/stops/Cfnegli2"], ["https://tec.openplanner.team/stops/H4av103c", "https://tec.openplanner.team/stops/H4ss156b"], ["https://tec.openplanner.team/stops/H5bs102a", "https://tec.openplanner.team/stops/H5bs102c"], ["https://tec.openplanner.team/stops/H4bh102b", "https://tec.openplanner.team/stops/H4bh102c"], ["https://tec.openplanner.team/stops/N501crc", "https://tec.openplanner.team/stops/N501crd"], ["https://tec.openplanner.team/stops/Cmgbrou2", "https://tec.openplanner.team/stops/Cmgslo1"], ["https://tec.openplanner.team/stops/H5bl116b", "https://tec.openplanner.team/stops/H5bl122b"], ["https://tec.openplanner.team/stops/X982awa", "https://tec.openplanner.team/stops/X982cda"], ["https://tec.openplanner.team/stops/H4fr394a", "https://tec.openplanner.team/stops/H4ka181b"], ["https://tec.openplanner.team/stops/N244afa", "https://tec.openplanner.team/stops/N244amb"], ["https://tec.openplanner.team/stops/Loudemo1", "https://tec.openplanner.team/stops/Loutrix2"], ["https://tec.openplanner.team/stops/N543avg", "https://tec.openplanner.team/stops/N543avh"], ["https://tec.openplanner.team/stops/NL74ada", "https://tec.openplanner.team/stops/NL74afb"], ["https://tec.openplanner.team/stops/N531ana", "https://tec.openplanner.team/stops/N531aoa"], ["https://tec.openplanner.team/stops/N201aub", "https://tec.openplanner.team/stops/N236aba"], ["https://tec.openplanner.team/stops/Bhencha1", "https://tec.openplanner.team/stops/Bvircsj1"], ["https://tec.openplanner.team/stops/X954acb", "https://tec.openplanner.team/stops/X954ahb"], ["https://tec.openplanner.team/stops/LrUbahn1", "https://tec.openplanner.team/stops/LsFcafe2"], ["https://tec.openplanner.team/stops/H4lg102b", "https://tec.openplanner.team/stops/H4lg103a"], ["https://tec.openplanner.team/stops/Lghcfer1", "https://tec.openplanner.team/stops/Lghvold2"], ["https://tec.openplanner.team/stops/LVHcent2", "https://tec.openplanner.team/stops/LVHweri2"], ["https://tec.openplanner.team/stops/N348acb", "https://tec.openplanner.team/stops/N348aea"], ["https://tec.openplanner.team/stops/LLTcent2", "https://tec.openplanner.team/stops/LLTcoop1"], ["https://tec.openplanner.team/stops/H4ca124b", "https://tec.openplanner.team/stops/H4ws160a"], ["https://tec.openplanner.team/stops/LTNeau-1", "https://tec.openplanner.team/stops/LTNegli2"], ["https://tec.openplanner.team/stops/X882aeb", "https://tec.openplanner.team/stops/X882alb"], ["https://tec.openplanner.team/stops/X652afc", "https://tec.openplanner.team/stops/X652aga"], ["https://tec.openplanner.team/stops/X907aia", "https://tec.openplanner.team/stops/X938aab"], ["https://tec.openplanner.team/stops/N501lsa", "https://tec.openplanner.team/stops/N501maa"], ["https://tec.openplanner.team/stops/Cptcamb2", "https://tec.openplanner.team/stops/Cptegli3"], ["https://tec.openplanner.team/stops/H4ae102b", "https://tec.openplanner.team/stops/H4mo192a"], ["https://tec.openplanner.team/stops/X879akb", "https://tec.openplanner.team/stops/X879aoa"], ["https://tec.openplanner.team/stops/Bhalomo2", "https://tec.openplanner.team/stops/Bhalrat1"], ["https://tec.openplanner.team/stops/X919ajc", "https://tec.openplanner.team/stops/X919aoa"], ["https://tec.openplanner.team/stops/Lvefanc1", "https://tec.openplanner.team/stops/Lveptle4"], ["https://tec.openplanner.team/stops/H1gn149a", "https://tec.openplanner.team/stops/H1gn152b"], ["https://tec.openplanner.team/stops/Cmlhubi2", "https://tec.openplanner.team/stops/Cmlmatc2"], ["https://tec.openplanner.team/stops/N988abb", "https://tec.openplanner.team/stops/N988acb"], ["https://tec.openplanner.team/stops/N528awb", "https://tec.openplanner.team/stops/N542aqa"], ["https://tec.openplanner.team/stops/LEHhaut1", "https://tec.openplanner.team/stops/LEHpech1"], ["https://tec.openplanner.team/stops/LBavive2", "https://tec.openplanner.team/stops/Lpebeco2"], ["https://tec.openplanner.team/stops/Cctsold1", "https://tec.openplanner.team/stops/Cctvand2"], ["https://tec.openplanner.team/stops/H1nm138b", "https://tec.openplanner.team/stops/H1si164b"], ["https://tec.openplanner.team/stops/Cgynoir1", "https://tec.openplanner.team/stops/Cgythio1"], ["https://tec.openplanner.team/stops/Ljucrah2", "https://tec.openplanner.team/stops/Ljuetie2"], ["https://tec.openplanner.team/stops/N301afb", "https://tec.openplanner.team/stops/N301aib"], ["https://tec.openplanner.team/stops/LSLprov2", "https://tec.openplanner.team/stops/LSLvaux1"], ["https://tec.openplanner.team/stops/X607ahb", "https://tec.openplanner.team/stops/X607aka"], ["https://tec.openplanner.team/stops/X804aaa", "https://tec.openplanner.team/stops/X804aca"], ["https://tec.openplanner.team/stops/LBRpier2", "https://tec.openplanner.team/stops/LBRpt--1"], ["https://tec.openplanner.team/stops/H5pe125a", "https://tec.openplanner.team/stops/H5pe126b"], ["https://tec.openplanner.team/stops/LVleg--3", "https://tec.openplanner.team/stops/LVleg--6"], ["https://tec.openplanner.team/stops/Llgcita2", "https://tec.openplanner.team/stops/Llgmarc2"], ["https://tec.openplanner.team/stops/N521aqb", "https://tec.openplanner.team/stops/N521aub"], ["https://tec.openplanner.team/stops/Bbcohou3", "https://tec.openplanner.team/stops/Bhen5ma1"], ["https://tec.openplanner.team/stops/Cwfmoul1", "https://tec.openplanner.team/stops/NC23aab"], ["https://tec.openplanner.team/stops/LOccarr2", "https://tec.openplanner.team/stops/LTestat2"], ["https://tec.openplanner.team/stops/LwLkirc1", "https://tec.openplanner.team/stops/LwLkirc2"], ["https://tec.openplanner.team/stops/N543aeb", "https://tec.openplanner.team/stops/N543arb"], ["https://tec.openplanner.team/stops/LBhcent2", "https://tec.openplanner.team/stops/LtEnach1"], ["https://tec.openplanner.team/stops/X902aua", "https://tec.openplanner.team/stops/X902ava"], ["https://tec.openplanner.team/stops/N507aqb", "https://tec.openplanner.team/stops/N581aab"], ["https://tec.openplanner.team/stops/Lgrclin4", "https://tec.openplanner.team/stops/Lgrwill1"], ["https://tec.openplanner.team/stops/Lemcarm1", "https://tec.openplanner.team/stops/Lemhenn1"], ["https://tec.openplanner.team/stops/Bsaupco1", "https://tec.openplanner.team/stops/N541aea"], ["https://tec.openplanner.team/stops/H4fl115a", "https://tec.openplanner.team/stops/H4wi175a"], ["https://tec.openplanner.team/stops/LABvill1", "https://tec.openplanner.team/stops/LABvill2"], ["https://tec.openplanner.team/stops/N507aea", "https://tec.openplanner.team/stops/N507aib"], ["https://tec.openplanner.team/stops/Ljecocc2", "https://tec.openplanner.team/stops/Ljejoli2"], ["https://tec.openplanner.team/stops/LFAplan1", "https://tec.openplanner.team/stops/LFUfleu1"], ["https://tec.openplanner.team/stops/H4by119b", "https://tec.openplanner.team/stops/H4ro155a"], ["https://tec.openplanner.team/stops/N544adb", "https://tec.openplanner.team/stops/N549aea"], ["https://tec.openplanner.team/stops/LPtrefa2", "https://tec.openplanner.team/stops/LrEochs2"], ["https://tec.openplanner.team/stops/Cmgarsi2", "https://tec.openplanner.team/stops/Cmghay1"], ["https://tec.openplanner.team/stops/X768ada", "https://tec.openplanner.team/stops/X769apa"], ["https://tec.openplanner.team/stops/H2sv220b", "https://tec.openplanner.team/stops/H2sv221b"], ["https://tec.openplanner.team/stops/Csdbosq1", "https://tec.openplanner.team/stops/Csdjeme1"], ["https://tec.openplanner.team/stops/H4ty305a", "https://tec.openplanner.team/stops/H4ty379a"], ["https://tec.openplanner.team/stops/Bneeblo2", "https://tec.openplanner.team/stops/Bneepne2"], ["https://tec.openplanner.team/stops/Bglicsm1", "https://tec.openplanner.team/stops/Btlbche2"], ["https://tec.openplanner.team/stops/LAx41--2", "https://tec.openplanner.team/stops/LFsbasc2"], ["https://tec.openplanner.team/stops/LOmecol1", "https://tec.openplanner.team/stops/LOmecol2"], ["https://tec.openplanner.team/stops/Cfldand1", "https://tec.openplanner.team/stops/Cfldand2"], ["https://tec.openplanner.team/stops/Lscpamp1", "https://tec.openplanner.team/stops/Lscpamp2"], ["https://tec.openplanner.team/stops/X750ada", "https://tec.openplanner.team/stops/X750adb"], ["https://tec.openplanner.team/stops/N229ara", "https://tec.openplanner.team/stops/N229arb"], ["https://tec.openplanner.team/stops/Lghhoco2", "https://tec.openplanner.team/stops/Lghmont2"], ["https://tec.openplanner.team/stops/H1fl139a", "https://tec.openplanner.team/stops/H1fl370a"], ["https://tec.openplanner.team/stops/H1ca109a", "https://tec.openplanner.team/stops/H1sd347a"], ["https://tec.openplanner.team/stops/X626acb", "https://tec.openplanner.team/stops/X626adb"], ["https://tec.openplanner.team/stops/N167aha", "https://tec.openplanner.team/stops/N167ahb"], ["https://tec.openplanner.team/stops/N557aba", "https://tec.openplanner.team/stops/N557acb"], ["https://tec.openplanner.team/stops/LWRbois1", "https://tec.openplanner.team/stops/LWRheyd1"], ["https://tec.openplanner.team/stops/X904aka", "https://tec.openplanner.team/stops/X943ada"], ["https://tec.openplanner.team/stops/N538ava", "https://tec.openplanner.team/stops/N538awb"], ["https://tec.openplanner.team/stops/Lourose1", "https://tec.openplanner.team/stops/Lourose3"], ["https://tec.openplanner.team/stops/H1mb135a", "https://tec.openplanner.team/stops/H1mb166b"], ["https://tec.openplanner.team/stops/Lsechan1", "https://tec.openplanner.team/stops/Lsevecq2"], ["https://tec.openplanner.team/stops/Cfrmon3", "https://tec.openplanner.team/stops/Cfrmonu5"], ["https://tec.openplanner.team/stops/Barqbco2", "https://tec.openplanner.team/stops/Barqhpe1"], ["https://tec.openplanner.team/stops/X614aca", "https://tec.openplanner.team/stops/X614apb"], ["https://tec.openplanner.team/stops/N232axb", "https://tec.openplanner.team/stops/N232bpa"], ["https://tec.openplanner.team/stops/Lscbarg1", "https://tec.openplanner.team/stops/Ltibell1"], ["https://tec.openplanner.team/stops/LbOre151", "https://tec.openplanner.team/stops/LmObahn*"], ["https://tec.openplanner.team/stops/N232awb", "https://tec.openplanner.team/stops/N232boa"], ["https://tec.openplanner.team/stops/Lgrbell2", "https://tec.openplanner.team/stops/Lgrcral2"], ["https://tec.openplanner.team/stops/X671aea", "https://tec.openplanner.team/stops/X671aeb"], ["https://tec.openplanner.team/stops/N207adb", "https://tec.openplanner.team/stops/N209aaa"], ["https://tec.openplanner.team/stops/Lvcfogu1", "https://tec.openplanner.team/stops/Lvcpost2"], ["https://tec.openplanner.team/stops/LQacabi2", "https://tec.openplanner.team/stops/LSMgare2"], ["https://tec.openplanner.team/stops/LSPguer1", "https://tec.openplanner.team/stops/LSPguer2"], ["https://tec.openplanner.team/stops/X654aha", "https://tec.openplanner.team/stops/X654ajb"], ["https://tec.openplanner.team/stops/H5rx114b", "https://tec.openplanner.team/stops/H5rx126a"], ["https://tec.openplanner.team/stops/NL57aib", "https://tec.openplanner.team/stops/NL57ajb"], ["https://tec.openplanner.team/stops/Blinbru1", "https://tec.openplanner.team/stops/Brach122"], ["https://tec.openplanner.team/stops/LODarbr1", "https://tec.openplanner.team/stops/XODvill2"], ["https://tec.openplanner.team/stops/N506bka", "https://tec.openplanner.team/stops/N506bkb"], ["https://tec.openplanner.team/stops/Cfrcoqu1", "https://tec.openplanner.team/stops/Cfrcoqu2"], ["https://tec.openplanner.team/stops/Lmobras2", "https://tec.openplanner.team/stops/Lmogoff1"], ["https://tec.openplanner.team/stops/Bbch4br1", "https://tec.openplanner.team/stops/Bbch4br3"], ["https://tec.openplanner.team/stops/H2go114d", "https://tec.openplanner.team/stops/H2go117a"], ["https://tec.openplanner.team/stops/H4ty298b", "https://tec.openplanner.team/stops/H4ty347a"], ["https://tec.openplanner.team/stops/Bbea3he1", "https://tec.openplanner.team/stops/Bmlncha2"], ["https://tec.openplanner.team/stops/X741aic", "https://tec.openplanner.team/stops/X741aoa"], ["https://tec.openplanner.team/stops/H4cw104b", "https://tec.openplanner.team/stops/H4cw105a"], ["https://tec.openplanner.team/stops/N385ada", "https://tec.openplanner.team/stops/N385adb"], ["https://tec.openplanner.team/stops/Bwatcha2", "https://tec.openplanner.team/stops/Bwatmbv1"], ["https://tec.openplanner.team/stops/LBVcent1", "https://tec.openplanner.team/stops/LBVzand3"], ["https://tec.openplanner.team/stops/Cthegli1", "https://tec.openplanner.team/stops/Cthwaib1"], ["https://tec.openplanner.team/stops/Cmamonu1", "https://tec.openplanner.team/stops/Cmastma2"], ["https://tec.openplanner.team/stops/LFrfrai1", "https://tec.openplanner.team/stops/LFrfrai2"], ["https://tec.openplanner.team/stops/Bquebre1", "https://tec.openplanner.team/stops/Bquebre2"], ["https://tec.openplanner.team/stops/Bgnvcha2", "https://tec.openplanner.team/stops/Bgnvgir1"], ["https://tec.openplanner.team/stops/LPLcarr1", "https://tec.openplanner.team/stops/Lsebonc1"], ["https://tec.openplanner.team/stops/Bgliaau2", "https://tec.openplanner.team/stops/Bgliopp4"], ["https://tec.openplanner.team/stops/Llieg--4", "https://tec.openplanner.team/stops/Llivina2"], ["https://tec.openplanner.team/stops/NB33ala", "https://tec.openplanner.team/stops/NB33alb"], ["https://tec.openplanner.team/stops/N234aea", "https://tec.openplanner.team/stops/N549adb"], ["https://tec.openplanner.team/stops/N232bzb", "https://tec.openplanner.team/stops/N232cda"], ["https://tec.openplanner.team/stops/X907adb", "https://tec.openplanner.team/stops/X907aea"], ["https://tec.openplanner.team/stops/LbUmolk1", "https://tec.openplanner.team/stops/LwR129-1"], ["https://tec.openplanner.team/stops/N543aub", "https://tec.openplanner.team/stops/N543aza"], ["https://tec.openplanner.team/stops/N534ayb", "https://tec.openplanner.team/stops/N534cbg"], ["https://tec.openplanner.team/stops/LSZsolw1", "https://tec.openplanner.team/stops/LSZsolw4"], ["https://tec.openplanner.team/stops/X982bga", "https://tec.openplanner.team/stops/X982cba"], ["https://tec.openplanner.team/stops/H1ms259a", "https://tec.openplanner.team/stops/H1ms280a"], ["https://tec.openplanner.team/stops/X672aab", "https://tec.openplanner.team/stops/X672adb"], ["https://tec.openplanner.team/stops/H1hr117a", "https://tec.openplanner.team/stops/H1hr128a"], ["https://tec.openplanner.team/stops/Lvcbalt1", "https://tec.openplanner.team/stops/Lvcbalt2"], ["https://tec.openplanner.team/stops/Borborb1", "https://tec.openplanner.team/stops/Btslpic6"], ["https://tec.openplanner.team/stops/LNCvann1", "https://tec.openplanner.team/stops/LRRrimi1"], ["https://tec.openplanner.team/stops/LFsconc2", "https://tec.openplanner.team/stops/LFsguil2"], ["https://tec.openplanner.team/stops/LGEvill2", "https://tec.openplanner.team/stops/LLSba9-2"], ["https://tec.openplanner.team/stops/Blindel6", "https://tec.openplanner.team/stops/Blineco1"], ["https://tec.openplanner.team/stops/N351asb", "https://tec.openplanner.team/stops/N351aub"], ["https://tec.openplanner.team/stops/H1mh112a", "https://tec.openplanner.team/stops/H1mh117a"], ["https://tec.openplanner.team/stops/H1bl104b", "https://tec.openplanner.team/stops/H1pd144a"], ["https://tec.openplanner.team/stops/N228aeb", "https://tec.openplanner.team/stops/N236aib"], ["https://tec.openplanner.team/stops/NL76aca", "https://tec.openplanner.team/stops/NL80aub"], ["https://tec.openplanner.team/stops/LbThutt2", "https://tec.openplanner.team/stops/LbTmons1"], ["https://tec.openplanner.team/stops/LMAalli2", "https://tec.openplanner.team/stops/LMAcomm1"], ["https://tec.openplanner.team/stops/X342aha", "https://tec.openplanner.team/stops/X354aga"], ["https://tec.openplanner.team/stops/Cjuplho1", "https://tec.openplanner.team/stops/Cjutrou1"], ["https://tec.openplanner.team/stops/NL76apa", "https://tec.openplanner.team/stops/NL76apb"], ["https://tec.openplanner.team/stops/LBPunic2", "https://tec.openplanner.team/stops/LGLgeer1"], ["https://tec.openplanner.team/stops/H2hg266a", "https://tec.openplanner.team/stops/H2hg272b"], ["https://tec.openplanner.team/stops/Buccplj1", "https://tec.openplanner.team/stops/Buccptj1"], ["https://tec.openplanner.team/stops/LOdcris1", "https://tec.openplanner.team/stops/LOdmonu1"], ["https://tec.openplanner.team/stops/Lbrcard1", "https://tec.openplanner.team/stops/Lbrfusi1"], ["https://tec.openplanner.team/stops/N553ama", "https://tec.openplanner.team/stops/N553amb"], ["https://tec.openplanner.team/stops/Cgzdeve1", "https://tec.openplanner.team/stops/Clddelh2"], ["https://tec.openplanner.team/stops/H4an111c", "https://tec.openplanner.team/stops/H4an112a"], ["https://tec.openplanner.team/stops/N501faa", "https://tec.openplanner.team/stops/N501fab"], ["https://tec.openplanner.team/stops/H1qy135b", "https://tec.openplanner.team/stops/H1qy137a"], ["https://tec.openplanner.team/stops/H1qv114b", "https://tec.openplanner.team/stops/H4be101a"], ["https://tec.openplanner.team/stops/N519aha", "https://tec.openplanner.team/stops/N519aoa"], ["https://tec.openplanner.team/stops/X601axb", "https://tec.openplanner.team/stops/X612aaa"], ["https://tec.openplanner.team/stops/H4wp153a", "https://tec.openplanner.team/stops/H4wp153b"], ["https://tec.openplanner.team/stops/H4li178a", "https://tec.openplanner.team/stops/H4va231a"], ["https://tec.openplanner.team/stops/LBiroch2", "https://tec.openplanner.team/stops/LBivi--2"], ["https://tec.openplanner.team/stops/X811aoa", "https://tec.openplanner.team/stops/X811apb"], ["https://tec.openplanner.team/stops/Cdamarc2", "https://tec.openplanner.team/stops/Cdaviol2"], ["https://tec.openplanner.team/stops/Cmlrbru2", "https://tec.openplanner.team/stops/Cmlsart1"], ["https://tec.openplanner.team/stops/Beclaub1", "https://tec.openplanner.team/stops/Beclpla2"], ["https://tec.openplanner.team/stops/Cplcafp2", "https://tec.openplanner.team/stops/Cplrymo1"], ["https://tec.openplanner.team/stops/X724agb", "https://tec.openplanner.team/stops/X724aha"], ["https://tec.openplanner.team/stops/Ccocroi1", "https://tec.openplanner.team/stops/Ccocroi2"], ["https://tec.openplanner.team/stops/N562aoa", "https://tec.openplanner.team/stops/N562bwa"], ["https://tec.openplanner.team/stops/X786aea", "https://tec.openplanner.team/stops/X786aja"], ["https://tec.openplanner.team/stops/Lsmcime1", "https://tec.openplanner.team/stops/Lsmcime2"], ["https://tec.openplanner.team/stops/N539aia", "https://tec.openplanner.team/stops/N539alb"], ["https://tec.openplanner.team/stops/H4fr394a", "https://tec.openplanner.team/stops/H4ty301c"], ["https://tec.openplanner.team/stops/Llgcfra1", "https://tec.openplanner.team/stops/Llghec-1"], ["https://tec.openplanner.team/stops/N232aba", "https://tec.openplanner.team/stops/N232abb"], ["https://tec.openplanner.team/stops/X601aib", "https://tec.openplanner.team/stops/X601bva"], ["https://tec.openplanner.team/stops/X644aea", "https://tec.openplanner.team/stops/X644aeb"], ["https://tec.openplanner.team/stops/Bmalwvi1", "https://tec.openplanner.team/stops/Bmalwvi2"], ["https://tec.openplanner.team/stops/LAx41--1", "https://tec.openplanner.team/stops/Lmitech1"], ["https://tec.openplanner.team/stops/H4ft133a", "https://tec.openplanner.team/stops/H4ft135c"], ["https://tec.openplanner.team/stops/Cmesafi1", "https://tec.openplanner.team/stops/Cmesafi2"], ["https://tec.openplanner.team/stops/LHaodei1", "https://tec.openplanner.team/stops/LHaodei2"], ["https://tec.openplanner.team/stops/N501gva", "https://tec.openplanner.team/stops/N501lca"], ["https://tec.openplanner.team/stops/Blhueca1", "https://tec.openplanner.team/stops/Blhutco2"], ["https://tec.openplanner.team/stops/X774agb", "https://tec.openplanner.team/stops/X775agb"], ["https://tec.openplanner.team/stops/Bmouegl2", "https://tec.openplanner.team/stops/Bottegl2"], ["https://tec.openplanner.team/stops/LVPcoeu2", "https://tec.openplanner.team/stops/LVPeg--2"], ["https://tec.openplanner.team/stops/H4ru246b", "https://tec.openplanner.team/stops/H4ty349b"], ["https://tec.openplanner.team/stops/H1wa132b", "https://tec.openplanner.team/stops/H1wa150a"], ["https://tec.openplanner.team/stops/Bcseche1", "https://tec.openplanner.team/stops/Bcsegar1"], ["https://tec.openplanner.team/stops/H1sb149a", "https://tec.openplanner.team/stops/H1sb150a"], ["https://tec.openplanner.team/stops/Blempuc1", "https://tec.openplanner.team/stops/Btubsam2"], ["https://tec.openplanner.team/stops/H1po154a", "https://tec.openplanner.team/stops/H1tl119b"], ["https://tec.openplanner.team/stops/LbUmurr1", "https://tec.openplanner.team/stops/LbUmurr2"], ["https://tec.openplanner.team/stops/Balsbeg2", "https://tec.openplanner.team/stops/Balswsa2"], ["https://tec.openplanner.team/stops/LScchpl2", "https://tec.openplanner.team/stops/LScdina2"], ["https://tec.openplanner.team/stops/H4er121b", "https://tec.openplanner.team/stops/H4oq223b"], ["https://tec.openplanner.team/stops/H5rx128a", "https://tec.openplanner.team/stops/H5rx128b"], ["https://tec.openplanner.team/stops/N353awa", "https://tec.openplanner.team/stops/N353awb"], ["https://tec.openplanner.team/stops/H1ob328a", "https://tec.openplanner.team/stops/H1sd366a"], ["https://tec.openplanner.team/stops/LVleg--1", "https://tec.openplanner.team/stops/LVleg--6"], ["https://tec.openplanner.team/stops/Lpeeg--1", "https://tec.openplanner.team/stops/Lpeptwa2"], ["https://tec.openplanner.team/stops/H2ha135b", "https://tec.openplanner.team/stops/H2ha135c"], ["https://tec.openplanner.team/stops/LAVdepr1", "https://tec.openplanner.team/stops/LVPduvi1"], ["https://tec.openplanner.team/stops/H4gz115b", "https://tec.openplanner.team/stops/H4ms145a"], ["https://tec.openplanner.team/stops/X897adb", "https://tec.openplanner.team/stops/X897arb"], ["https://tec.openplanner.team/stops/LROmons1", "https://tec.openplanner.team/stops/LWalibo2"], ["https://tec.openplanner.team/stops/LeYvoge2", "https://tec.openplanner.team/stops/LrAneus2"], ["https://tec.openplanner.team/stops/N501bfa", "https://tec.openplanner.team/stops/N501bfy"], ["https://tec.openplanner.team/stops/X723acb", "https://tec.openplanner.team/stops/X723aha"], ["https://tec.openplanner.team/stops/Boplcar1", "https://tec.openplanner.team/stops/Boplham1"], ["https://tec.openplanner.team/stops/N576aea", "https://tec.openplanner.team/stops/N576alb"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LSJeg--2"], ["https://tec.openplanner.team/stops/H1wi155b", "https://tec.openplanner.team/stops/H1wi157a"], ["https://tec.openplanner.team/stops/LFTec--2", "https://tec.openplanner.team/stops/LSygerm2"], ["https://tec.openplanner.team/stops/Clgmaco2", "https://tec.openplanner.team/stops/Ctisart2"], ["https://tec.openplanner.team/stops/LPRfour2", "https://tec.openplanner.team/stops/LSHmais1"], ["https://tec.openplanner.team/stops/H2pr116b", "https://tec.openplanner.team/stops/H2pr117a"], ["https://tec.openplanner.team/stops/Cchdigu4", "https://tec.openplanner.team/stops/Cchoues3"], ["https://tec.openplanner.team/stops/H1eo108a", "https://tec.openplanner.team/stops/H1mj128a"], ["https://tec.openplanner.team/stops/Ladotto1", "https://tec.openplanner.team/stops/Ladppir1"], ["https://tec.openplanner.team/stops/H4ty341a", "https://tec.openplanner.team/stops/H4ty356b"], ["https://tec.openplanner.team/stops/H4lz127a", "https://tec.openplanner.team/stops/H4wp152b"], ["https://tec.openplanner.team/stops/H4hu121a", "https://tec.openplanner.team/stops/H4hu121b"], ["https://tec.openplanner.team/stops/H1pa117b", "https://tec.openplanner.team/stops/H1pa166b"], ["https://tec.openplanner.team/stops/Bwavlca2", "https://tec.openplanner.team/stops/Bwavvpr2"], ["https://tec.openplanner.team/stops/H4la197a", "https://tec.openplanner.team/stops/H4la199a"], ["https://tec.openplanner.team/stops/N114aab", "https://tec.openplanner.team/stops/X316aaa"], ["https://tec.openplanner.team/stops/X908aoa", "https://tec.openplanner.team/stops/X908aoc"], ["https://tec.openplanner.team/stops/Lpecroi2", "https://tec.openplanner.team/stops/Lpeptra2"], ["https://tec.openplanner.team/stops/X666aja", "https://tec.openplanner.team/stops/X666ajb"], ["https://tec.openplanner.team/stops/N569aib", "https://tec.openplanner.team/stops/N571afb"], ["https://tec.openplanner.team/stops/Cgualno1", "https://tec.openplanner.team/stops/Ctybaco1"], ["https://tec.openplanner.team/stops/X901bba", "https://tec.openplanner.team/stops/X922aba"], ["https://tec.openplanner.team/stops/Bllnpaf4", "https://tec.openplanner.team/stops/Bmsgbur2"], ["https://tec.openplanner.team/stops/Cci28ju1", "https://tec.openplanner.team/stops/Cciethi2"], ["https://tec.openplanner.team/stops/H1ba111a", "https://tec.openplanner.team/stops/H1ba111b"], ["https://tec.openplanner.team/stops/LHUpsar1", "https://tec.openplanner.team/stops/LHUvege1"], ["https://tec.openplanner.team/stops/LGeborn1", "https://tec.openplanner.team/stops/LGegare1"], ["https://tec.openplanner.team/stops/H2be100a", "https://tec.openplanner.team/stops/H2lh128a"], ["https://tec.openplanner.team/stops/NL76alb", "https://tec.openplanner.team/stops/NL76ald"], ["https://tec.openplanner.team/stops/LCSfagn2", "https://tec.openplanner.team/stops/LHHroua2"], ["https://tec.openplanner.team/stops/Lcheg--2", "https://tec.openplanner.team/stops/Lvichpl2"], ["https://tec.openplanner.team/stops/LLrdigu1", "https://tec.openplanner.team/stops/LLrscie1"], ["https://tec.openplanner.team/stops/LDmdegi1", "https://tec.openplanner.team/stops/LJedonc1"], ["https://tec.openplanner.team/stops/H1ch142a", "https://tec.openplanner.team/stops/H1nm141a"], ["https://tec.openplanner.team/stops/X897aba", "https://tec.openplanner.team/stops/X897aob"], ["https://tec.openplanner.team/stops/LLxcrem1", "https://tec.openplanner.team/stops/LVItcm-1"], ["https://tec.openplanner.team/stops/X342ada", "https://tec.openplanner.team/stops/X342afb"], ["https://tec.openplanner.team/stops/H1fv101a", "https://tec.openplanner.team/stops/H1fv101b"], ["https://tec.openplanner.team/stops/Bitrbvo2", "https://tec.openplanner.team/stops/Bitrsar1"], ["https://tec.openplanner.team/stops/H1gr116a", "https://tec.openplanner.team/stops/H1hr126a"], ["https://tec.openplanner.team/stops/X670ala", "https://tec.openplanner.team/stops/X670ama"], ["https://tec.openplanner.team/stops/Clvchar2", "https://tec.openplanner.team/stops/Clvmesa1"], ["https://tec.openplanner.team/stops/LwAkape2", "https://tec.openplanner.team/stops/LwAlont3"], ["https://tec.openplanner.team/stops/H1mb125a", "https://tec.openplanner.team/stops/H1mb125b"], ["https://tec.openplanner.team/stops/H2ll258a", "https://tec.openplanner.team/stops/H2ll258b"], ["https://tec.openplanner.team/stops/X718akb", "https://tec.openplanner.team/stops/X719ada"], ["https://tec.openplanner.team/stops/Lvchaus1", "https://tec.openplanner.team/stops/Lvcreve1"], ["https://tec.openplanner.team/stops/LEN42--1", "https://tec.openplanner.team/stops/LENindu1"], ["https://tec.openplanner.team/stops/Lvccime1", "https://tec.openplanner.team/stops/Lvcvesd*"], ["https://tec.openplanner.team/stops/Bgdhbvu2", "https://tec.openplanner.team/stops/Bgdhdet2"], ["https://tec.openplanner.team/stops/Llgjoie3", "https://tec.openplanner.team/stops/Llgrosa1"], ["https://tec.openplanner.team/stops/Bdvmc032", "https://tec.openplanner.team/stops/Bdvmc432"], ["https://tec.openplanner.team/stops/Ljeheur1", "https://tec.openplanner.team/stops/Ljerouy1"], ["https://tec.openplanner.team/stops/X813aba", "https://tec.openplanner.team/stops/X813ada"], ["https://tec.openplanner.team/stops/NB33aka", "https://tec.openplanner.team/stops/NB33ala"], ["https://tec.openplanner.team/stops/X640aoa", "https://tec.openplanner.team/stops/X640aob"], ["https://tec.openplanner.team/stops/H2ch110b", "https://tec.openplanner.team/stops/H2ch123b"], ["https://tec.openplanner.team/stops/LbOlier1", "https://tec.openplanner.team/stops/LbOvith1"], ["https://tec.openplanner.team/stops/LaAgold1", "https://tec.openplanner.team/stops/LaAronh1"], ["https://tec.openplanner.team/stops/LCxcour2", "https://tec.openplanner.team/stops/LCxross2"], ["https://tec.openplanner.team/stops/H4co108b", "https://tec.openplanner.team/stops/H4co144b"], ["https://tec.openplanner.team/stops/H4co107a", "https://tec.openplanner.team/stops/H4co107b"], ["https://tec.openplanner.team/stops/H4ta122a", "https://tec.openplanner.team/stops/H4ta122b"], ["https://tec.openplanner.team/stops/N515aea", "https://tec.openplanner.team/stops/N515afb"], ["https://tec.openplanner.team/stops/LlgLAMB3", "https://tec.openplanner.team/stops/LlgR-Fr3"], ["https://tec.openplanner.team/stops/X640ama", "https://tec.openplanner.team/stops/X640amb"], ["https://tec.openplanner.team/stops/N118baa", "https://tec.openplanner.team/stops/N118bab"], ["https://tec.openplanner.team/stops/CMmorg1", "https://tec.openplanner.team/stops/CMmorg2"], ["https://tec.openplanner.team/stops/Llgdart2", "https://tec.openplanner.team/stops/Llgdart5"], ["https://tec.openplanner.team/stops/LFChuis2", "https://tec.openplanner.team/stops/LWRgare2"], ["https://tec.openplanner.team/stops/Cchba1", "https://tec.openplanner.team/stops/CMba2"], ["https://tec.openplanner.team/stops/X822aha", "https://tec.openplanner.team/stops/X822aib"], ["https://tec.openplanner.team/stops/LHTmala4", "https://tec.openplanner.team/stops/LVIvert2"], ["https://tec.openplanner.team/stops/LJueg--1", "https://tec.openplanner.team/stops/LJueg--2"], ["https://tec.openplanner.team/stops/H1fr130b", "https://tec.openplanner.team/stops/H1sb144b"], ["https://tec.openplanner.team/stops/LbTcarm1", "https://tec.openplanner.team/stops/LbTschw2"], ["https://tec.openplanner.team/stops/X641aua", "https://tec.openplanner.team/stops/X641ava"], ["https://tec.openplanner.team/stops/Bptemch1", "https://tec.openplanner.team/stops/H1mk123a"], ["https://tec.openplanner.team/stops/X760afb", "https://tec.openplanner.team/stops/X788aga"], ["https://tec.openplanner.team/stops/X802acb", "https://tec.openplanner.team/stops/X882ahb"], ["https://tec.openplanner.team/stops/N110aha", "https://tec.openplanner.team/stops/N111aea"], ["https://tec.openplanner.team/stops/H1fr125b", "https://tec.openplanner.team/stops/H1lb138b"], ["https://tec.openplanner.team/stops/N145aha", "https://tec.openplanner.team/stops/N145ahb"], ["https://tec.openplanner.team/stops/X869aca", "https://tec.openplanner.team/stops/X869acb"], ["https://tec.openplanner.team/stops/Cmomoul3", "https://tec.openplanner.team/stops/Cmopn6"], ["https://tec.openplanner.team/stops/X948amc", "https://tec.openplanner.team/stops/X949akb"], ["https://tec.openplanner.team/stops/N150aca", "https://tec.openplanner.team/stops/N150acb"], ["https://tec.openplanner.team/stops/H1ro130a", "https://tec.openplanner.team/stops/H1ro138b"], ["https://tec.openplanner.team/stops/H4lh161a", "https://tec.openplanner.team/stops/H4oe150a"], ["https://tec.openplanner.team/stops/Cfocant1", "https://tec.openplanner.team/stops/Clrrhau2"], ["https://tec.openplanner.team/stops/Bnivfle1", "https://tec.openplanner.team/stops/Bnivfle2"], ["https://tec.openplanner.team/stops/N562agb", "https://tec.openplanner.team/stops/N562bkb"], ["https://tec.openplanner.team/stops/N147aca", "https://tec.openplanner.team/stops/N147aea"], ["https://tec.openplanner.team/stops/X638alb", "https://tec.openplanner.team/stops/X644ada"], ["https://tec.openplanner.team/stops/H2fy121b", "https://tec.openplanner.team/stops/H2fy123a"], ["https://tec.openplanner.team/stops/X907ajb", "https://tec.openplanner.team/stops/X908asa"], ["https://tec.openplanner.team/stops/N117aya", "https://tec.openplanner.team/stops/N117baa"], ["https://tec.openplanner.team/stops/LVSslin4", "https://tec.openplanner.team/stops/LVStige2"], ["https://tec.openplanner.team/stops/Louroos1", "https://tec.openplanner.team/stops/Louroos2"], ["https://tec.openplanner.team/stops/LOUpres2", "https://tec.openplanner.team/stops/LOUvign2"], ["https://tec.openplanner.team/stops/H1ht133b", "https://tec.openplanner.team/stops/H1te180a"], ["https://tec.openplanner.team/stops/Lghmavi2", "https://tec.openplanner.team/stops/Lghremy2"], ["https://tec.openplanner.team/stops/X949aja", "https://tec.openplanner.team/stops/X949ajb"], ["https://tec.openplanner.team/stops/LBspiet1", "https://tec.openplanner.team/stops/LWNcham2"], ["https://tec.openplanner.team/stops/Lflmaxi2", "https://tec.openplanner.team/stops/Lflmaxi3"], ["https://tec.openplanner.team/stops/Bgntffo2", "https://tec.openplanner.team/stops/Bmelmqu2"], ["https://tec.openplanner.team/stops/LFrcent2", "https://tec.openplanner.team/stops/LHvvill*"], ["https://tec.openplanner.team/stops/LGecite1", "https://tec.openplanner.team/stops/LGesent1"], ["https://tec.openplanner.team/stops/LAmeg--1", "https://tec.openplanner.team/stops/LNHbarr1"], ["https://tec.openplanner.team/stops/Bgemman1", "https://tec.openplanner.team/stops/Bgemman2"], ["https://tec.openplanner.team/stops/Lccawir3", "https://tec.openplanner.team/stops/Lccawir4"], ["https://tec.openplanner.team/stops/X615aub", "https://tec.openplanner.team/stops/X681aca"], ["https://tec.openplanner.team/stops/H1he105a", "https://tec.openplanner.team/stops/H1mh113b"], ["https://tec.openplanner.team/stops/N509acb", "https://tec.openplanner.team/stops/N509ada"], ["https://tec.openplanner.team/stops/Cgofbru2", "https://tec.openplanner.team/stops/Cgopier3"], ["https://tec.openplanner.team/stops/X714aba", "https://tec.openplanner.team/stops/X714acb"], ["https://tec.openplanner.team/stops/N537agb", "https://tec.openplanner.team/stops/N537ahb"], ["https://tec.openplanner.team/stops/Llgauxc2", "https://tec.openplanner.team/stops/Llgborg1"], ["https://tec.openplanner.team/stops/Lgdmaye2", "https://tec.openplanner.team/stops/LSNgerm2"], ["https://tec.openplanner.team/stops/LMFmoul2", "https://tec.openplanner.team/stops/Lqbeg--2"], ["https://tec.openplanner.team/stops/Bvirpla1", "https://tec.openplanner.team/stops/Bvirrbo2"], ["https://tec.openplanner.team/stops/X911aua", "https://tec.openplanner.team/stops/X911aub"], ["https://tec.openplanner.team/stops/Ctuhouz1", "https://tec.openplanner.team/stops/Ctuhouz2"], ["https://tec.openplanner.team/stops/Csyjumo2", "https://tec.openplanner.team/stops/Csysans2"], ["https://tec.openplanner.team/stops/N123aaa", "https://tec.openplanner.team/stops/N123ada"], ["https://tec.openplanner.team/stops/X646aab", "https://tec.openplanner.team/stops/X646abb"], ["https://tec.openplanner.team/stops/LGAholl2", "https://tec.openplanner.team/stops/LHgpost1"], ["https://tec.openplanner.team/stops/LEShony2", "https://tec.openplanner.team/stops/LTIptme1"], ["https://tec.openplanner.team/stops/H4ty350a", "https://tec.openplanner.team/stops/H4ty350b"], ["https://tec.openplanner.team/stops/Bblapin2", "https://tec.openplanner.team/stops/Brsg7fo1"], ["https://tec.openplanner.team/stops/LrAberg1", "https://tec.openplanner.team/stops/LrAmuhl1"], ["https://tec.openplanner.team/stops/H1cv100b", "https://tec.openplanner.team/stops/H1ml110a"], ["https://tec.openplanner.team/stops/N331aha", "https://tec.openplanner.team/stops/N331aka"], ["https://tec.openplanner.team/stops/N501hlw", "https://tec.openplanner.team/stops/N501hlz"], ["https://tec.openplanner.team/stops/NL76adb", "https://tec.openplanner.team/stops/NL76aeb"], ["https://tec.openplanner.team/stops/Cgualno1", "https://tec.openplanner.team/stops/Cgualno2"], ["https://tec.openplanner.team/stops/H1ha182b", "https://tec.openplanner.team/stops/H1ha183a"], ["https://tec.openplanner.team/stops/N236alb", "https://tec.openplanner.team/stops/N236ana"], ["https://tec.openplanner.team/stops/N348ada", "https://tec.openplanner.team/stops/N348adb"], ["https://tec.openplanner.team/stops/H2mi123b", "https://tec.openplanner.team/stops/H2mi124a"], ["https://tec.openplanner.team/stops/H4bl106b", "https://tec.openplanner.team/stops/H4tg262a"], ["https://tec.openplanner.team/stops/Cbcegli3", "https://tec.openplanner.team/stops/Cbckios1"], ["https://tec.openplanner.team/stops/LHChaut5", "https://tec.openplanner.team/stops/LHChaut6"], ["https://tec.openplanner.team/stops/H1hg179a", "https://tec.openplanner.team/stops/H1hm175a"], ["https://tec.openplanner.team/stops/X740aba", "https://tec.openplanner.team/stops/X740afb"], ["https://tec.openplanner.team/stops/Bwagcus1", "https://tec.openplanner.team/stops/Csawagn1"], ["https://tec.openplanner.team/stops/LMOf35-1", "https://tec.openplanner.team/stops/LMOfleu1"], ["https://tec.openplanner.team/stops/Bmalsme2", "https://tec.openplanner.team/stops/Btlbgla1"], ["https://tec.openplanner.team/stops/Cjualtr1", "https://tec.openplanner.team/stops/Cjudevo2"], ["https://tec.openplanner.team/stops/LAxbott2", "https://tec.openplanner.team/stops/LFsec--1"], ["https://tec.openplanner.team/stops/LBsoha-1", "https://tec.openplanner.team/stops/NL73aeb"], ["https://tec.openplanner.team/stops/LHAbont1", "https://tec.openplanner.team/stops/LHAbont2"], ["https://tec.openplanner.team/stops/H1er111b", "https://tec.openplanner.team/stops/H1er113b"], ["https://tec.openplanner.team/stops/Blhugai1", "https://tec.openplanner.team/stops/Bwatpct2"], ["https://tec.openplanner.team/stops/N547aaa", "https://tec.openplanner.team/stops/N547alc"], ["https://tec.openplanner.team/stops/H1je211b", "https://tec.openplanner.team/stops/H1je220b"], ["https://tec.openplanner.team/stops/Bwatcom1", "https://tec.openplanner.team/stops/Bwatpai1"], ["https://tec.openplanner.team/stops/LXoharz3", "https://tec.openplanner.team/stops/LXoharz4"], ["https://tec.openplanner.team/stops/Cmmecol1", "https://tec.openplanner.team/stops/Cmmpast2"], ["https://tec.openplanner.team/stops/N232cea", "https://tec.openplanner.team/stops/N260ada"], ["https://tec.openplanner.team/stops/N232bda", "https://tec.openplanner.team/stops/N232bea"], ["https://tec.openplanner.team/stops/LBSchpl2", "https://tec.openplanner.team/stops/LRGchap2"], ["https://tec.openplanner.team/stops/N553aab", "https://tec.openplanner.team/stops/N553ajb"], ["https://tec.openplanner.team/stops/X663aeb", "https://tec.openplanner.team/stops/X663afa"], ["https://tec.openplanner.team/stops/LHSlava2", "https://tec.openplanner.team/stops/LRGderr1"], ["https://tec.openplanner.team/stops/H4or115a", "https://tec.openplanner.team/stops/H4or115b"], ["https://tec.openplanner.team/stops/X627abb", "https://tec.openplanner.team/stops/X627aca"], ["https://tec.openplanner.team/stops/Cgdfoca1", "https://tec.openplanner.team/stops/Csycant2"], ["https://tec.openplanner.team/stops/X754ahb", "https://tec.openplanner.team/stops/X754ajb"], ["https://tec.openplanner.team/stops/N211aya", "https://tec.openplanner.team/stops/N212agc"], ["https://tec.openplanner.team/stops/LHUbatt1", "https://tec.openplanner.team/stops/LHUfoss*"], ["https://tec.openplanner.team/stops/Bbsigaz1", "https://tec.openplanner.team/stops/Bbsihau1"], ["https://tec.openplanner.team/stops/LAyabri1", "https://tec.openplanner.team/stops/LAyegli1"], ["https://tec.openplanner.team/stops/N573adb", "https://tec.openplanner.team/stops/NC14ada"], ["https://tec.openplanner.team/stops/Bnivbos2", "https://tec.openplanner.team/stops/Bnivsci2"], ["https://tec.openplanner.team/stops/H4fo117b", "https://tec.openplanner.team/stops/H4fo117d"], ["https://tec.openplanner.team/stops/Ccheden1", "https://tec.openplanner.team/stops/Cchoues4"], ["https://tec.openplanner.team/stops/H3br122b", "https://tec.openplanner.team/stops/H3so187b"], ["https://tec.openplanner.team/stops/N540abb", "https://tec.openplanner.team/stops/N549aba"], ["https://tec.openplanner.team/stops/LESoneu3", "https://tec.openplanner.team/stops/LPLhout1"], ["https://tec.openplanner.team/stops/Lvitour1", "https://tec.openplanner.team/stops/Lvitour2"], ["https://tec.openplanner.team/stops/X802aia", "https://tec.openplanner.team/stops/X802ajb"], ["https://tec.openplanner.team/stops/H1ms266b", "https://tec.openplanner.team/stops/H1ms271b"], ["https://tec.openplanner.team/stops/X609akb", "https://tec.openplanner.team/stops/X610aia"], ["https://tec.openplanner.team/stops/X879aja", "https://tec.openplanner.team/stops/X882aaa"], ["https://tec.openplanner.team/stops/LLApavi2", "https://tec.openplanner.team/stops/LLxcite1"], ["https://tec.openplanner.team/stops/LFHsucr2", "https://tec.openplanner.team/stops/LNveg--1"], ["https://tec.openplanner.team/stops/LAUbour2", "https://tec.openplanner.team/stops/LAUvict3"], ["https://tec.openplanner.team/stops/LMttrou2", "https://tec.openplanner.team/stops/LSdsar52"], ["https://tec.openplanner.team/stops/N539aba", "https://tec.openplanner.team/stops/N539agb"], ["https://tec.openplanner.team/stops/H1gh145d", "https://tec.openplanner.team/stops/H1gh158b"], ["https://tec.openplanner.team/stops/Bsteegl1", "https://tec.openplanner.team/stops/Bstesar2"], ["https://tec.openplanner.team/stops/Bvirmav1", "https://tec.openplanner.team/stops/Bvirpos2"], ["https://tec.openplanner.team/stops/X619aaa", "https://tec.openplanner.team/stops/X620afb"], ["https://tec.openplanner.team/stops/N539aub", "https://tec.openplanner.team/stops/N540aga"], ["https://tec.openplanner.team/stops/X775aca", "https://tec.openplanner.team/stops/X775aeb"], ["https://tec.openplanner.team/stops/N507ald", "https://tec.openplanner.team/stops/N507ama"], ["https://tec.openplanner.team/stops/H4mo179a", "https://tec.openplanner.team/stops/H4mo185a"], ["https://tec.openplanner.team/stops/H1em105a", "https://tec.openplanner.team/stops/H1em105b"], ["https://tec.openplanner.team/stops/LJAcent1", "https://tec.openplanner.team/stops/LJAcent2"], ["https://tec.openplanner.team/stops/Lhrsimo2", "https://tec.openplanner.team/stops/Lhrtunn2"], ["https://tec.openplanner.team/stops/Bhenard1", "https://tec.openplanner.team/stops/Bhenard2"], ["https://tec.openplanner.team/stops/H1ni320b", "https://tec.openplanner.team/stops/H1ni323b"], ["https://tec.openplanner.team/stops/Bglache1", "https://tec.openplanner.team/stops/Bgnppra1"], ["https://tec.openplanner.team/stops/X725ara", "https://tec.openplanner.team/stops/X725bia"], ["https://tec.openplanner.team/stops/X721afb", "https://tec.openplanner.team/stops/X721aib"], ["https://tec.openplanner.team/stops/H1wa157b", "https://tec.openplanner.team/stops/H1wg126a"], ["https://tec.openplanner.team/stops/LrcarsT2", "https://tec.openplanner.team/stops/Lrchero2"], ["https://tec.openplanner.team/stops/Cfopetr1", "https://tec.openplanner.team/stops/CMpetr2"], ["https://tec.openplanner.team/stops/Llgcham4", "https://tec.openplanner.team/stops/Llgrema2"], ["https://tec.openplanner.team/stops/LkEgds-1", "https://tec.openplanner.team/stops/LkEgend2"], ["https://tec.openplanner.team/stops/LRE154-1", "https://tec.openplanner.team/stops/LREchif2"], ["https://tec.openplanner.team/stops/LNCchau1", "https://tec.openplanner.team/stops/LNCchau3"], ["https://tec.openplanner.team/stops/LFR201-1", "https://tec.openplanner.team/stops/LFRbaro1"], ["https://tec.openplanner.team/stops/Blilwit1", "https://tec.openplanner.team/stops/Bnivfdu1"], ["https://tec.openplanner.team/stops/Lstamph2", "https://tec.openplanner.team/stops/Lstchim1"], ["https://tec.openplanner.team/stops/LBPeg--2", "https://tec.openplanner.team/stops/LRGile-1"], ["https://tec.openplanner.team/stops/Llaeg--1", "https://tec.openplanner.team/stops/Llaflot1"], ["https://tec.openplanner.team/stops/N988aca", "https://tec.openplanner.team/stops/X874apb"], ["https://tec.openplanner.team/stops/Bthscbl2", "https://tec.openplanner.team/stops/NL37akb"], ["https://tec.openplanner.team/stops/X773abb", "https://tec.openplanner.team/stops/X773aca"], ["https://tec.openplanner.team/stops/N501jdb", "https://tec.openplanner.team/stops/N501jib"], ["https://tec.openplanner.team/stops/Lenabat1", "https://tec.openplanner.team/stops/Lengran2"], ["https://tec.openplanner.team/stops/Bzluqga1", "https://tec.openplanner.team/stops/Bzluvil1"], ["https://tec.openplanner.team/stops/LSReg--2", "https://tec.openplanner.team/stops/LTrgibe2"], ["https://tec.openplanner.team/stops/Cflmarq2", "https://tec.openplanner.team/stops/Cflspir1"], ["https://tec.openplanner.team/stops/N135bba", "https://tec.openplanner.team/stops/N135beb"], ["https://tec.openplanner.team/stops/N543bfb", "https://tec.openplanner.team/stops/N543bgd"], ["https://tec.openplanner.team/stops/X727aea", "https://tec.openplanner.team/stops/X727aha"], ["https://tec.openplanner.team/stops/X601afb", "https://tec.openplanner.team/stops/X662aqb"], ["https://tec.openplanner.team/stops/H4lz128a", "https://tec.openplanner.team/stops/H4lz128b"], ["https://tec.openplanner.team/stops/Lsmdams2", "https://tec.openplanner.team/stops/Lsmstad2"], ["https://tec.openplanner.team/stops/Llglamb1", "https://tec.openplanner.team/stops/Llgschm2"], ["https://tec.openplanner.team/stops/Bnivh%C3%B4p2", "https://tec.openplanner.team/stops/Bnivrsa2"], ["https://tec.openplanner.team/stops/LMfbuck2", "https://tec.openplanner.team/stops/LMfeg--1"], ["https://tec.openplanner.team/stops/N513aub", "https://tec.openplanner.team/stops/N520ahb"], ["https://tec.openplanner.team/stops/LDLboul1", "https://tec.openplanner.team/stops/LLNogne1"], ["https://tec.openplanner.team/stops/LHCprog1", "https://tec.openplanner.team/stops/LHCprog2"], ["https://tec.openplanner.team/stops/LkTdorf2", "https://tec.openplanner.team/stops/LkTkabi2"], ["https://tec.openplanner.team/stops/Bspkker1", "https://tec.openplanner.team/stops/H1mk111b"], ["https://tec.openplanner.team/stops/H4ce106a", "https://tec.openplanner.team/stops/H4ce106b"], ["https://tec.openplanner.team/stops/N230aga", "https://tec.openplanner.team/stops/N540aab"], ["https://tec.openplanner.team/stops/Lcegeor2", "https://tec.openplanner.team/stops/Lvcbalt2"], ["https://tec.openplanner.team/stops/X665aba", "https://tec.openplanner.team/stops/X666agb"], ["https://tec.openplanner.team/stops/X898agb", "https://tec.openplanner.team/stops/X898aia"], ["https://tec.openplanner.team/stops/Lqbchat2", "https://tec.openplanner.team/stops/Lqbeg--1"], ["https://tec.openplanner.team/stops/H4gr108b", "https://tec.openplanner.team/stops/H4gr111a"], ["https://tec.openplanner.team/stops/LbOvith1", "https://tec.openplanner.team/stops/LnEleje1"], ["https://tec.openplanner.team/stops/H1hw120a", "https://tec.openplanner.team/stops/H1hw120b"], ["https://tec.openplanner.team/stops/Cfrchro2", "https://tec.openplanner.team/stops/Cfrgare4"], ["https://tec.openplanner.team/stops/N533ald", "https://tec.openplanner.team/stops/N533anb"], ["https://tec.openplanner.team/stops/LJAhanq2", "https://tec.openplanner.team/stops/LJAhanq3"], ["https://tec.openplanner.team/stops/Bnivall1", "https://tec.openplanner.team/stops/Bnivspi2"], ["https://tec.openplanner.team/stops/X873aaa", "https://tec.openplanner.team/stops/X873abb"], ["https://tec.openplanner.team/stops/X802aja", "https://tec.openplanner.team/stops/X802azb"], ["https://tec.openplanner.team/stops/Baegpon2", "https://tec.openplanner.team/stops/NR38aeb"], ["https://tec.openplanner.team/stops/X804boa", "https://tec.openplanner.team/stops/X804bpa"], ["https://tec.openplanner.team/stops/Bhmmbog1", "https://tec.openplanner.team/stops/Btlgfto2"], ["https://tec.openplanner.team/stops/Llgdoth2", "https://tec.openplanner.team/stops/Llgm%C3%A9di1"], ["https://tec.openplanner.team/stops/LAMdelh2", "https://tec.openplanner.team/stops/LAMusin1"], ["https://tec.openplanner.team/stops/H3so157a", "https://tec.openplanner.team/stops/H3so172b"], ["https://tec.openplanner.team/stops/X804bka", "https://tec.openplanner.team/stops/X804cbb"], ["https://tec.openplanner.team/stops/H1me112b", "https://tec.openplanner.team/stops/H1me118b"], ["https://tec.openplanner.team/stops/Cmechnd2", "https://tec.openplanner.team/stops/Cmesafi1"], ["https://tec.openplanner.team/stops/N543aga", "https://tec.openplanner.team/stops/N543ckb"], ["https://tec.openplanner.team/stops/N211adb", "https://tec.openplanner.team/stops/N211awa"], ["https://tec.openplanner.team/stops/X925aia", "https://tec.openplanner.team/stops/X996aba"], ["https://tec.openplanner.team/stops/Bsmgbsa1", "https://tec.openplanner.team/stops/Bsmgmas2"], ["https://tec.openplanner.team/stops/LSeaque4", "https://tec.openplanner.team/stops/LVbeg--1"], ["https://tec.openplanner.team/stops/Bbiehev1", "https://tec.openplanner.team/stops/Bbiepre1"], ["https://tec.openplanner.team/stops/LLmcarr2", "https://tec.openplanner.team/stops/LLmwaut2"], ["https://tec.openplanner.team/stops/X609agb", "https://tec.openplanner.team/stops/X609ara"], ["https://tec.openplanner.team/stops/Lougros2", "https://tec.openplanner.team/stops/Lstbarb6"], ["https://tec.openplanner.team/stops/LBPmili2", "https://tec.openplanner.team/stops/LGLbrus1"], ["https://tec.openplanner.team/stops/Clfbarr1", "https://tec.openplanner.team/stops/Clfpomm2"], ["https://tec.openplanner.team/stops/LBhschu1", "https://tec.openplanner.team/stops/X793akb"], ["https://tec.openplanner.team/stops/H1mj127b", "https://tec.openplanner.team/stops/H1ml110b"], ["https://tec.openplanner.team/stops/Cmamons1", "https://tec.openplanner.team/stops/Cmaprov2"], ["https://tec.openplanner.team/stops/LJAcham1", "https://tec.openplanner.team/stops/LSUhage2"], ["https://tec.openplanner.team/stops/X923ana", "https://tec.openplanner.team/stops/X923aoa"], ["https://tec.openplanner.team/stops/Lrosoxh2", "https://tec.openplanner.team/stops/Lrovand2"], ["https://tec.openplanner.team/stops/H4my120a", "https://tec.openplanner.team/stops/H4vz368a"], ["https://tec.openplanner.team/stops/LSzcoop2", "https://tec.openplanner.team/stops/N506btb"], ["https://tec.openplanner.team/stops/Bneecha2", "https://tec.openplanner.team/stops/Boplcar1"], ["https://tec.openplanner.team/stops/N516aja", "https://tec.openplanner.team/stops/N516ana"], ["https://tec.openplanner.team/stops/LTPec--2", "https://tec.openplanner.team/stops/LTPgare*"], ["https://tec.openplanner.team/stops/X747alb", "https://tec.openplanner.team/stops/X754aga"], ["https://tec.openplanner.team/stops/LgAnr491", "https://tec.openplanner.team/stops/LsVlust1"], ["https://tec.openplanner.team/stops/Bclgbvi2", "https://tec.openplanner.team/stops/Bclgpla2"], ["https://tec.openplanner.team/stops/Lpevove1", "https://tec.openplanner.team/stops/LWevand2"], ["https://tec.openplanner.team/stops/Bbounci2", "https://tec.openplanner.team/stops/Bboupde1"], ["https://tec.openplanner.team/stops/N548aaa", "https://tec.openplanner.team/stops/N548aab"], ["https://tec.openplanner.team/stops/Bgntcbo1", "https://tec.openplanner.team/stops/Bmarcat1"], ["https://tec.openplanner.team/stops/H1ho131a", "https://tec.openplanner.team/stops/H1sg145b"], ["https://tec.openplanner.team/stops/X758ahb", "https://tec.openplanner.team/stops/X840abb"], ["https://tec.openplanner.team/stops/X796abb", "https://tec.openplanner.team/stops/X986agb"], ["https://tec.openplanner.team/stops/Llgbatt2", "https://tec.openplanner.team/stops/Llgcamp1"], ["https://tec.openplanner.team/stops/Lagkink2", "https://tec.openplanner.team/stops/Llgpari1"], ["https://tec.openplanner.team/stops/LSPmari1", "https://tec.openplanner.team/stops/LSPtonn1"], ["https://tec.openplanner.team/stops/LBgcroi2", "https://tec.openplanner.team/stops/LBgnach2"], ["https://tec.openplanner.team/stops/Bmrqgar2", "https://tec.openplanner.team/stops/H1mk117b"], ["https://tec.openplanner.team/stops/X623ajb", "https://tec.openplanner.team/stops/X624amb"], ["https://tec.openplanner.team/stops/H5el100a", "https://tec.openplanner.team/stops/H5rx136a"], ["https://tec.openplanner.team/stops/Bnivlde1", "https://tec.openplanner.team/stops/Bnivpla2"], ["https://tec.openplanner.team/stops/Cmbborn1", "https://tec.openplanner.team/stops/Cmbcime4"], ["https://tec.openplanner.team/stops/LHanest2", "https://tec.openplanner.team/stops/LHarenn2"], ["https://tec.openplanner.team/stops/X760aba", "https://tec.openplanner.team/stops/X760aea"], ["https://tec.openplanner.team/stops/H4lh118a", "https://tec.openplanner.team/stops/H4lh118b"], ["https://tec.openplanner.team/stops/N501jua", "https://tec.openplanner.team/stops/N501jub"], ["https://tec.openplanner.team/stops/X716afb", "https://tec.openplanner.team/stops/X731aib"], ["https://tec.openplanner.team/stops/N534aeb", "https://tec.openplanner.team/stops/N534bnh"], ["https://tec.openplanner.team/stops/LTRoasi1", "https://tec.openplanner.team/stops/LTRsain3"], ["https://tec.openplanner.team/stops/H4rm108b", "https://tec.openplanner.team/stops/H4ta120a"], ["https://tec.openplanner.team/stops/Bchgbar1", "https://tec.openplanner.team/stops/Bchgbru2"], ["https://tec.openplanner.team/stops/Bbonegl1", "https://tec.openplanner.team/stops/Bdvminc1"], ["https://tec.openplanner.team/stops/H1bb116c", "https://tec.openplanner.team/stops/H1bo104a"], ["https://tec.openplanner.team/stops/Lccaigr2", "https://tec.openplanner.team/stops/Lcceclu2"], ["https://tec.openplanner.team/stops/Cwfcast1", "https://tec.openplanner.team/stops/NC23aeb"], ["https://tec.openplanner.team/stops/Cci22ao1", "https://tec.openplanner.team/stops/Ccifies1"], ["https://tec.openplanner.team/stops/NC44aea", "https://tec.openplanner.team/stops/NC44agb"], ["https://tec.openplanner.team/stops/H1ry135b", "https://tec.openplanner.team/stops/H1ry137b"], ["https://tec.openplanner.team/stops/X741aba", "https://tec.openplanner.team/stops/X752aaa"], ["https://tec.openplanner.team/stops/LTPabat1", "https://tec.openplanner.team/stops/LTPbode1"], ["https://tec.openplanner.team/stops/Llgcmes1", "https://tec.openplanner.team/stops/Llgcmes4"], ["https://tec.openplanner.team/stops/LMtcent1", "https://tec.openplanner.team/stops/LMtegli2"], ["https://tec.openplanner.team/stops/Bitrh%C3%BBl2", "https://tec.openplanner.team/stops/Bitrpar2"], ["https://tec.openplanner.team/stops/LHAarge2", "https://tec.openplanner.team/stops/LHAbont2"], ["https://tec.openplanner.team/stops/N501kjb", "https://tec.openplanner.team/stops/N538ara"], ["https://tec.openplanner.team/stops/X662acb", "https://tec.openplanner.team/stops/X663afb"], ["https://tec.openplanner.team/stops/LSOathe1", "https://tec.openplanner.team/stops/LSOathe2"], ["https://tec.openplanner.team/stops/LTPbeau1", "https://tec.openplanner.team/stops/X548aab"], ["https://tec.openplanner.team/stops/H4ty265a", "https://tec.openplanner.team/stops/H4ty276b"], ["https://tec.openplanner.team/stops/LVMchpl1", "https://tec.openplanner.team/stops/LVMrout1"], ["https://tec.openplanner.team/stops/X738aba", "https://tec.openplanner.team/stops/X739alb"], ["https://tec.openplanner.team/stops/N365aaa", "https://tec.openplanner.team/stops/X344ada"], ["https://tec.openplanner.team/stops/LBpvue-2", "https://tec.openplanner.team/stops/LHgroso2"], ["https://tec.openplanner.team/stops/Bnstlna2", "https://tec.openplanner.team/stops/Bnstver2"], ["https://tec.openplanner.team/stops/LOrpont1", "https://tec.openplanner.team/stops/LTyhall1"], ["https://tec.openplanner.team/stops/Bwatabs2", "https://tec.openplanner.team/stops/Bwatcro1"], ["https://tec.openplanner.team/stops/LLmetat1", "https://tec.openplanner.team/stops/LLmetat2"], ["https://tec.openplanner.team/stops/H4fr143a", "https://tec.openplanner.team/stops/H4fr143b"], ["https://tec.openplanner.team/stops/Cthalli3", "https://tec.openplanner.team/stops/Cthhttr3"], ["https://tec.openplanner.team/stops/Cbmplac1", "https://tec.openplanner.team/stops/Cbmzoni2"], ["https://tec.openplanner.team/stops/X371ada", "https://tec.openplanner.team/stops/X371agb"], ["https://tec.openplanner.team/stops/X888abb", "https://tec.openplanner.team/stops/X897aaa"], ["https://tec.openplanner.team/stops/LTPcamp2", "https://tec.openplanner.team/stops/LTPhenr2"], ["https://tec.openplanner.team/stops/Lghpara2", "https://tec.openplanner.team/stops/Lghraul1"], ["https://tec.openplanner.team/stops/Cdogrro2", "https://tec.openplanner.team/stops/Crgmgri2"], ["https://tec.openplanner.team/stops/Baudhde2", "https://tec.openplanner.team/stops/Baudsta2"], ["https://tec.openplanner.team/stops/H4mt216a", "https://tec.openplanner.team/stops/H4mt222b"], ["https://tec.openplanner.team/stops/X757aga", "https://tec.openplanner.team/stops/X757aka"], ["https://tec.openplanner.team/stops/Cwfcast2", "https://tec.openplanner.team/stops/Cwfnamu1"], ["https://tec.openplanner.team/stops/LSBsere1", "https://tec.openplanner.team/stops/LSBsere4"], ["https://tec.openplanner.team/stops/Cgualno2", "https://tec.openplanner.team/stops/Cnapair1"], ["https://tec.openplanner.team/stops/H4ev118b", "https://tec.openplanner.team/stops/H4hx116b"], ["https://tec.openplanner.team/stops/Cflmarc2", "https://tec.openplanner.team/stops/Cflmart1"], ["https://tec.openplanner.team/stops/X307ada", "https://tec.openplanner.team/stops/X316acb"], ["https://tec.openplanner.team/stops/H2pe160b", "https://tec.openplanner.team/stops/H2pe162b"], ["https://tec.openplanner.team/stops/LVAakke2", "https://tec.openplanner.team/stops/LVAflat2"], ["https://tec.openplanner.team/stops/LSPbass1", "https://tec.openplanner.team/stops/LSPfrai1"], ["https://tec.openplanner.team/stops/Cmbcime3", "https://tec.openplanner.team/stops/Csuptou2"], ["https://tec.openplanner.team/stops/Llianix1", "https://tec.openplanner.team/stops/Llianix2"], ["https://tec.openplanner.team/stops/N508ajb", "https://tec.openplanner.team/stops/N508ala"], ["https://tec.openplanner.team/stops/N109aab", "https://tec.openplanner.team/stops/N109aia"], ["https://tec.openplanner.team/stops/X601dia", "https://tec.openplanner.team/stops/X601dib"], ["https://tec.openplanner.team/stops/N124aaa", "https://tec.openplanner.team/stops/N125aab"], ["https://tec.openplanner.team/stops/LSLhall*", "https://tec.openplanner.team/stops/LSLprov2"], ["https://tec.openplanner.team/stops/X750aoa", "https://tec.openplanner.team/stops/X750apa"], ["https://tec.openplanner.team/stops/Cgregli1", "https://tec.openplanner.team/stops/Cgrsaul2"], ["https://tec.openplanner.team/stops/Ljucomb1", "https://tec.openplanner.team/stops/Ljuinte2"], ["https://tec.openplanner.team/stops/H1gr111b", "https://tec.openplanner.team/stops/H1hr117a"], ["https://tec.openplanner.team/stops/Cbcha651", "https://tec.openplanner.team/stops/Crglyre1"], ["https://tec.openplanner.team/stops/NL76ada", "https://tec.openplanner.team/stops/NL76ara"], ["https://tec.openplanner.team/stops/Cmadeli2", "https://tec.openplanner.team/stops/Cmamons2"], ["https://tec.openplanner.team/stops/N357aab", "https://tec.openplanner.team/stops/N357abb"], ["https://tec.openplanner.team/stops/Lseboia1", "https://tec.openplanner.team/stops/Lsedavy2"], ["https://tec.openplanner.team/stops/X371aca", "https://tec.openplanner.team/stops/X371ada"], ["https://tec.openplanner.team/stops/Bbgepau1", "https://tec.openplanner.team/stops/Bwavlep2"], ["https://tec.openplanner.team/stops/H1br130a", "https://tec.openplanner.team/stops/H1br134b"], ["https://tec.openplanner.team/stops/LTPgare*", "https://tec.openplanner.team/stops/LTPreco1"], ["https://tec.openplanner.team/stops/Lgreg--1", "https://tec.openplanner.team/stops/Lgrside2"], ["https://tec.openplanner.team/stops/Ljubrec1", "https://tec.openplanner.team/stops/Ljucano1"], ["https://tec.openplanner.team/stops/Bjaugar4", "https://tec.openplanner.team/stops/Bjaugar5"], ["https://tec.openplanner.team/stops/LaMpark1", "https://tec.openplanner.team/stops/LaMpost2"], ["https://tec.openplanner.team/stops/Lbeloui1", "https://tec.openplanner.team/stops/LSAjacq2"], ["https://tec.openplanner.team/stops/X359aac", "https://tec.openplanner.team/stops/X371adb"], ["https://tec.openplanner.team/stops/X879amb", "https://tec.openplanner.team/stops/X879aoa"], ["https://tec.openplanner.team/stops/Blhupqu1", "https://tec.openplanner.team/stops/Blhurcl1"], ["https://tec.openplanner.team/stops/H2sb236c", "https://tec.openplanner.team/stops/H2sb239d"], ["https://tec.openplanner.team/stops/LVIacac1", "https://tec.openplanner.team/stops/LVIjacq2"], ["https://tec.openplanner.team/stops/Llgarmu3", "https://tec.openplanner.team/stops/Llgatla2"], ["https://tec.openplanner.team/stops/LSParca1", "https://tec.openplanner.team/stops/LSPec--2"], ["https://tec.openplanner.team/stops/H1ge115a", "https://tec.openplanner.team/stops/H1ge116a"], ["https://tec.openplanner.team/stops/N501aha", "https://tec.openplanner.team/stops/N501mdb"], ["https://tec.openplanner.team/stops/Bnvmfba2", "https://tec.openplanner.team/stops/N515aqd"], ["https://tec.openplanner.team/stops/LORec--*", "https://tec.openplanner.team/stops/LORmont1"], ["https://tec.openplanner.team/stops/N501kzb", "https://tec.openplanner.team/stops/N501lib"], ["https://tec.openplanner.team/stops/Llgdony2", "https://tec.openplanner.team/stops/Llgpiet2"], ["https://tec.openplanner.team/stops/LPTgran1", "https://tec.openplanner.team/stops/X792aba"], ["https://tec.openplanner.team/stops/Lhubarl1", "https://tec.openplanner.team/stops/Lmnrame2"], ["https://tec.openplanner.team/stops/X801cga", "https://tec.openplanner.team/stops/X801cha"], ["https://tec.openplanner.team/stops/Bosqcim2", "https://tec.openplanner.team/stops/Btubpir1"], ["https://tec.openplanner.team/stops/H4wn128b", "https://tec.openplanner.team/stops/H4wn130a"], ["https://tec.openplanner.team/stops/H4ba101a", "https://tec.openplanner.team/stops/H4vz367a"], ["https://tec.openplanner.team/stops/N501bqa", "https://tec.openplanner.team/stops/N501bub"], ["https://tec.openplanner.team/stops/H4an106b", "https://tec.openplanner.team/stops/H4cr110a"], ["https://tec.openplanner.team/stops/LCxbeau1", "https://tec.openplanner.team/stops/LCxwarr2"], ["https://tec.openplanner.team/stops/LmNkirc1", "https://tec.openplanner.team/stops/LmNsv871"], ["https://tec.openplanner.team/stops/LBlhaut2", "https://tec.openplanner.team/stops/LGMstin1"], ["https://tec.openplanner.team/stops/H5wo129b", "https://tec.openplanner.team/stops/H5wo130b"], ["https://tec.openplanner.team/stops/Bhenasc1", "https://tec.openplanner.team/stops/Bhenasc2"], ["https://tec.openplanner.team/stops/H4fo116a", "https://tec.openplanner.team/stops/H4my123a"], ["https://tec.openplanner.team/stops/LHMpatl1", "https://tec.openplanner.team/stops/LHMpatl2"], ["https://tec.openplanner.team/stops/Bbaldot1", "https://tec.openplanner.team/stops/N584aea"], ["https://tec.openplanner.team/stops/N501kea", "https://tec.openplanner.team/stops/N501kha"], ["https://tec.openplanner.team/stops/LmAkirc1", "https://tec.openplanner.team/stops/LmAkirc2"], ["https://tec.openplanner.team/stops/Lvegc-1*", "https://tec.openplanner.team/stops/Lveyser2"], ["https://tec.openplanner.team/stops/X666aaa", "https://tec.openplanner.team/stops/X666aba"], ["https://tec.openplanner.team/stops/Clooues1", "https://tec.openplanner.team/stops/Clooues4"], ["https://tec.openplanner.team/stops/Lsedavy2", "https://tec.openplanner.team/stops/Lseivoz2"], ["https://tec.openplanner.team/stops/LBJplan1", "https://tec.openplanner.team/stops/LMAcime2"], ["https://tec.openplanner.team/stops/Lhragri2", "https://tec.openplanner.team/stops/Lhrsimo1"], ["https://tec.openplanner.team/stops/LTibarb2", "https://tec.openplanner.team/stops/LTipont2"], ["https://tec.openplanner.team/stops/H1el135a", "https://tec.openplanner.team/stops/H1el135b"], ["https://tec.openplanner.team/stops/H1br132a", "https://tec.openplanner.team/stops/H1ev113a"], ["https://tec.openplanner.team/stops/H4ag101a", "https://tec.openplanner.team/stops/H4ag104b"], ["https://tec.openplanner.team/stops/Bhmmcam1", "https://tec.openplanner.team/stops/Bndbpco2"], ["https://tec.openplanner.team/stops/Ldiinte1", "https://tec.openplanner.team/stops/Ldimeun2"], ["https://tec.openplanner.team/stops/Bbiemse1", "https://tec.openplanner.team/stops/Bgzdgli2"], ["https://tec.openplanner.team/stops/X661ada", "https://tec.openplanner.team/stops/X661aza"], ["https://tec.openplanner.team/stops/LFMvoge1", "https://tec.openplanner.team/stops/LFMvoge2"], ["https://tec.openplanner.team/stops/H1hl125b", "https://tec.openplanner.team/stops/H1hl127b"], ["https://tec.openplanner.team/stops/H4ty319a", "https://tec.openplanner.team/stops/H4ty345a"], ["https://tec.openplanner.team/stops/X398abb", "https://tec.openplanner.team/stops/X398agb"], ["https://tec.openplanner.team/stops/LSLhall*", "https://tec.openplanner.team/stops/LVSpota1"], ["https://tec.openplanner.team/stops/LeUgutl1", "https://tec.openplanner.team/stops/LeUindu2"], ["https://tec.openplanner.team/stops/X650akb", "https://tec.openplanner.team/stops/X650ana"], ["https://tec.openplanner.team/stops/LTgjalh1", "https://tec.openplanner.team/stops/LTgsous2"], ["https://tec.openplanner.team/stops/H1fr112b", "https://tec.openplanner.team/stops/H1ge115a"], ["https://tec.openplanner.team/stops/LATmals1", "https://tec.openplanner.team/stops/LATmonu1"], ["https://tec.openplanner.team/stops/H5bl115b", "https://tec.openplanner.team/stops/H5bl119d"], ["https://tec.openplanner.team/stops/LNAdemo1", "https://tec.openplanner.team/stops/LTNsarl1"], ["https://tec.openplanner.team/stops/LWOwa162", "https://tec.openplanner.team/stops/LWOwaer2"], ["https://tec.openplanner.team/stops/Lvearle4", "https://tec.openplanner.team/stops/Lvescie1"], ["https://tec.openplanner.team/stops/Bblagard", "https://tec.openplanner.team/stops/Bblapje2"], ["https://tec.openplanner.team/stops/Lmojans1", "https://tec.openplanner.team/stops/Lmopota1"], ["https://tec.openplanner.team/stops/Lbococh1", "https://tec.openplanner.team/stops/Lbopote2"], ["https://tec.openplanner.team/stops/N162aba", "https://tec.openplanner.team/stops/N162abb"], ["https://tec.openplanner.team/stops/LJUfort1", "https://tec.openplanner.team/stops/Llabriq1"], ["https://tec.openplanner.team/stops/X725aia", "https://tec.openplanner.team/stops/X767afa"], ["https://tec.openplanner.team/stops/Bmaregl2", "https://tec.openplanner.team/stops/Btilsnc2"], ["https://tec.openplanner.team/stops/Beclron1", "https://tec.openplanner.team/stops/H2ec102a"], ["https://tec.openplanner.team/stops/Lmofays2", "https://tec.openplanner.team/stops/Lmojoan2"], ["https://tec.openplanner.team/stops/X659arb", "https://tec.openplanner.team/stops/X659awb"], ["https://tec.openplanner.team/stops/Bgoesch3", "https://tec.openplanner.team/stops/Boplsma4"], ["https://tec.openplanner.team/stops/LLycent*", "https://tec.openplanner.team/stops/LXfcore1"], ["https://tec.openplanner.team/stops/X952abb", "https://tec.openplanner.team/stops/X952adb"], ["https://tec.openplanner.team/stops/H2sb227a", "https://tec.openplanner.team/stops/H2sb259a"], ["https://tec.openplanner.team/stops/H2mo125b", "https://tec.openplanner.team/stops/H2mo131b"], ["https://tec.openplanner.team/stops/N519aka", "https://tec.openplanner.team/stops/N519alb"], ["https://tec.openplanner.team/stops/N502aba", "https://tec.openplanner.team/stops/N509aja"], ["https://tec.openplanner.team/stops/Cfrmoul1", "https://tec.openplanner.team/stops/Cliburl2"], ["https://tec.openplanner.team/stops/N301aia", "https://tec.openplanner.team/stops/N301ajb"], ["https://tec.openplanner.team/stops/X782ala", "https://tec.openplanner.team/stops/X782ama"], ["https://tec.openplanner.team/stops/X657aea", "https://tec.openplanner.team/stops/X657aeb"], ["https://tec.openplanner.team/stops/H4ty305d", "https://tec.openplanner.team/stops/H4ty347a"], ["https://tec.openplanner.team/stops/X634afb", "https://tec.openplanner.team/stops/X654afb"], ["https://tec.openplanner.team/stops/H5wo127a", "https://tec.openplanner.team/stops/H5wo130b"], ["https://tec.openplanner.team/stops/X639aaa", "https://tec.openplanner.team/stops/X639abb"], ["https://tec.openplanner.team/stops/Bwspbos1", "https://tec.openplanner.team/stops/Bwspcar2"], ["https://tec.openplanner.team/stops/Cfccabi1", "https://tec.openplanner.team/stops/Cfcplac3"], ["https://tec.openplanner.team/stops/LOMbrou2", "https://tec.openplanner.team/stops/LOMdodi1"], ["https://tec.openplanner.team/stops/H1hn207a", "https://tec.openplanner.team/stops/H1hn207b"], ["https://tec.openplanner.team/stops/Lcacaps1", "https://tec.openplanner.team/stops/Lcacaps2"], ["https://tec.openplanner.team/stops/Ctisar1", "https://tec.openplanner.team/stops/H1tt107a"], ["https://tec.openplanner.team/stops/N162aaa", "https://tec.openplanner.team/stops/N162aba"], ["https://tec.openplanner.team/stops/X896agb", "https://tec.openplanner.team/stops/X896ahb"], ["https://tec.openplanner.team/stops/N501fjb", "https://tec.openplanner.team/stops/N501fjd"], ["https://tec.openplanner.team/stops/Llgbavi3", "https://tec.openplanner.team/stops/Llgongr2"], ["https://tec.openplanner.team/stops/Cmllait1", "https://tec.openplanner.team/stops/Cmlvesp2"], ["https://tec.openplanner.team/stops/Cgxchea2", "https://tec.openplanner.team/stops/Cgxvvel2"], ["https://tec.openplanner.team/stops/X661abb", "https://tec.openplanner.team/stops/X661alb"], ["https://tec.openplanner.team/stops/LTRlonh1", "https://tec.openplanner.team/stops/LTRlonh2"], ["https://tec.openplanner.team/stops/Cmychpl4", "https://tec.openplanner.team/stops/Cmycime2"], ["https://tec.openplanner.team/stops/Ccyfroi1", "https://tec.openplanner.team/stops/Ccyga7"], ["https://tec.openplanner.team/stops/N549ada", "https://tec.openplanner.team/stops/N549afb"], ["https://tec.openplanner.team/stops/LVSpota1", "https://tec.openplanner.team/stops/LVSslin4"], ["https://tec.openplanner.team/stops/LAmeclu2", "https://tec.openplanner.team/stops/LTiforg1"], ["https://tec.openplanner.team/stops/X878aab", "https://tec.openplanner.team/stops/X878adb"], ["https://tec.openplanner.team/stops/NH01aab", "https://tec.openplanner.team/stops/NH01abc"], ["https://tec.openplanner.team/stops/X750ada", "https://tec.openplanner.team/stops/X750bma"], ["https://tec.openplanner.team/stops/X641apc", "https://tec.openplanner.team/stops/X823agb"], ["https://tec.openplanner.team/stops/LAyfren2", "https://tec.openplanner.team/stops/Lflhott2"], ["https://tec.openplanner.team/stops/LAbchpl1", "https://tec.openplanner.team/stops/LAbchpl2"], ["https://tec.openplanner.team/stops/X659agb", "https://tec.openplanner.team/stops/X659aib"], ["https://tec.openplanner.team/stops/N134aca", "https://tec.openplanner.team/stops/N152abd"], ["https://tec.openplanner.team/stops/N236aea", "https://tec.openplanner.team/stops/N236aeb"], ["https://tec.openplanner.team/stops/X615aaa", "https://tec.openplanner.team/stops/X615aab"], ["https://tec.openplanner.team/stops/X741ana", "https://tec.openplanner.team/stops/X741anb"], ["https://tec.openplanner.team/stops/Cmlbuis3", "https://tec.openplanner.team/stops/Cmllecl4"], ["https://tec.openplanner.team/stops/N562aea", "https://tec.openplanner.team/stops/N562aza"], ["https://tec.openplanner.team/stops/Lghecol*", "https://tec.openplanner.team/stops/Lghomni1"], ["https://tec.openplanner.team/stops/LoDkoll1", "https://tec.openplanner.team/stops/LrUoudl2"], ["https://tec.openplanner.team/stops/LMipoti1", "https://tec.openplanner.team/stops/LMisour1"], ["https://tec.openplanner.team/stops/X601bpa", "https://tec.openplanner.team/stops/X601bzb"], ["https://tec.openplanner.team/stops/Cgomerm4", "https://tec.openplanner.team/stops/Cgotech1"], ["https://tec.openplanner.team/stops/X767aea", "https://tec.openplanner.team/stops/X767aja"], ["https://tec.openplanner.team/stops/N501gfa", "https://tec.openplanner.team/stops/N501iza"], ["https://tec.openplanner.team/stops/Cfvombo1", "https://tec.openplanner.team/stops/H1fv102b"], ["https://tec.openplanner.team/stops/Cchmont2", "https://tec.openplanner.team/stops/Cchriga2"], ["https://tec.openplanner.team/stops/Bglarha1", "https://tec.openplanner.team/stops/Bmrshan1"], ["https://tec.openplanner.team/stops/Bnivlde2", "https://tec.openplanner.team/stops/Bnivpla2"], ["https://tec.openplanner.team/stops/Cchdigu1", "https://tec.openplanner.team/stops/Cchoues1"], ["https://tec.openplanner.team/stops/N508ama", "https://tec.openplanner.team/stops/N509aob"], ["https://tec.openplanner.team/stops/Lmobols2", "https://tec.openplanner.team/stops/Lmobras2"], ["https://tec.openplanner.team/stops/N506bka", "https://tec.openplanner.team/stops/N506bnb"], ["https://tec.openplanner.team/stops/N218afa", "https://tec.openplanner.team/stops/N218afb"], ["https://tec.openplanner.team/stops/N508ada", "https://tec.openplanner.team/stops/N508adb"], ["https://tec.openplanner.team/stops/LGrchpl1", "https://tec.openplanner.team/stops/LGreg--1"], ["https://tec.openplanner.team/stops/X750aqa", "https://tec.openplanner.team/stops/X750beb"], ["https://tec.openplanner.team/stops/N511ara", "https://tec.openplanner.team/stops/N511ata"], ["https://tec.openplanner.team/stops/H2fa101a", "https://tec.openplanner.team/stops/H2mg135a"], ["https://tec.openplanner.team/stops/Crecouc2", "https://tec.openplanner.team/stops/Crefont1"], ["https://tec.openplanner.team/stops/Cgzclef1", "https://tec.openplanner.team/stops/Cgzplac1"], ["https://tec.openplanner.team/stops/X872afa", "https://tec.openplanner.team/stops/X872afb"], ["https://tec.openplanner.team/stops/Cpctrau1", "https://tec.openplanner.team/stops/Cpctrau2"], ["https://tec.openplanner.team/stops/N519abb", "https://tec.openplanner.team/stops/N519ada"], ["https://tec.openplanner.team/stops/NH03aea", "https://tec.openplanner.team/stops/NH03afa"], ["https://tec.openplanner.team/stops/Cmlecha1", "https://tec.openplanner.team/stops/CMtirou2"], ["https://tec.openplanner.team/stops/LENarde1", "https://tec.openplanner.team/stops/LENcroi1"], ["https://tec.openplanner.team/stops/X370aca", "https://tec.openplanner.team/stops/X872adb"], ["https://tec.openplanner.team/stops/LBvnico2", "https://tec.openplanner.team/stops/LVMchpl2"], ["https://tec.openplanner.team/stops/LiVdorf1", "https://tec.openplanner.team/stops/LmObahn*"], ["https://tec.openplanner.team/stops/Cthegli1", "https://tec.openplanner.team/stops/Cthpibl2"], ["https://tec.openplanner.team/stops/N513anb", "https://tec.openplanner.team/stops/N513aob"], ["https://tec.openplanner.team/stops/LSAhaye2", "https://tec.openplanner.team/stops/LSAtrih1"], ["https://tec.openplanner.team/stops/LCvneuv4", "https://tec.openplanner.team/stops/LWbregn2"], ["https://tec.openplanner.team/stops/N554aba", "https://tec.openplanner.team/stops/N554abb"], ["https://tec.openplanner.team/stops/H4gu112a", "https://tec.openplanner.team/stops/H4ta129b"], ["https://tec.openplanner.team/stops/LaAneul2", "https://tec.openplanner.team/stops/LaAzwei1"], ["https://tec.openplanner.team/stops/X877afa", "https://tec.openplanner.team/stops/X880aeb"], ["https://tec.openplanner.team/stops/X725aaa", "https://tec.openplanner.team/stops/X754axb"], ["https://tec.openplanner.team/stops/X879aib", "https://tec.openplanner.team/stops/X879aja"], ["https://tec.openplanner.team/stops/Lagpn6-1", "https://tec.openplanner.team/stops/Lagsauh1"], ["https://tec.openplanner.team/stops/X718afb", "https://tec.openplanner.team/stops/X718agb"], ["https://tec.openplanner.team/stops/LTEcamp1", "https://tec.openplanner.team/stops/LTEcamp2"], ["https://tec.openplanner.team/stops/X801cda", "https://tec.openplanner.team/stops/X801cea"], ["https://tec.openplanner.team/stops/X661aqa", "https://tec.openplanner.team/stops/X840aaa"], ["https://tec.openplanner.team/stops/H4bi156a", "https://tec.openplanner.team/stops/H4eg103a"], ["https://tec.openplanner.team/stops/LoUhein1", "https://tec.openplanner.team/stops/LoUober2"], ["https://tec.openplanner.team/stops/H1ma233c", "https://tec.openplanner.team/stops/H1ma237a"], ["https://tec.openplanner.team/stops/H4ta116a", "https://tec.openplanner.team/stops/H4ta116b"], ["https://tec.openplanner.team/stops/LLbquar2", "https://tec.openplanner.team/stops/LLbvith1"], ["https://tec.openplanner.team/stops/X796aea", "https://tec.openplanner.team/stops/X796aeb"], ["https://tec.openplanner.team/stops/X952aaa", "https://tec.openplanner.team/stops/X952aab"], ["https://tec.openplanner.team/stops/X947adb", "https://tec.openplanner.team/stops/X949amb"], ["https://tec.openplanner.team/stops/H4ev119a", "https://tec.openplanner.team/stops/H4ev124b"], ["https://tec.openplanner.team/stops/X725aee", "https://tec.openplanner.team/stops/X725aef"], ["https://tec.openplanner.team/stops/H1qu109a", "https://tec.openplanner.team/stops/H1qu112a"], ["https://tec.openplanner.team/stops/X946aca", "https://tec.openplanner.team/stops/X948adb"], ["https://tec.openplanner.team/stops/X640aqb", "https://tec.openplanner.team/stops/X642aac"], ["https://tec.openplanner.team/stops/X801bga", "https://tec.openplanner.team/stops/X801cob"], ["https://tec.openplanner.team/stops/LLrdigu2", "https://tec.openplanner.team/stops/LSPclai2"], ["https://tec.openplanner.team/stops/N507ada", "https://tec.openplanner.team/stops/N507amb"], ["https://tec.openplanner.team/stops/Cmomalg2", "https://tec.openplanner.team/stops/Crorpai2"], ["https://tec.openplanner.team/stops/Lvo60--1", "https://tec.openplanner.team/stops/Lvomoul1"], ["https://tec.openplanner.team/stops/N511aob", "https://tec.openplanner.team/stops/N511aoc"], ["https://tec.openplanner.team/stops/H3lr106b", "https://tec.openplanner.team/stops/H3lr132b"], ["https://tec.openplanner.team/stops/X822aaa", "https://tec.openplanner.team/stops/X822aeb"], ["https://tec.openplanner.team/stops/LEMec--2", "https://tec.openplanner.team/stops/LWOcomm2"], ["https://tec.openplanner.team/stops/H1em108b", "https://tec.openplanner.team/stops/H1hl128b"], ["https://tec.openplanner.team/stops/Barqpla2", "https://tec.openplanner.team/stops/Barqpwa2"], ["https://tec.openplanner.team/stops/LNCchev2", "https://tec.openplanner.team/stops/LNClila1"], ["https://tec.openplanner.team/stops/N501fmb", "https://tec.openplanner.team/stops/N501kva"], ["https://tec.openplanner.team/stops/N167aaa", "https://tec.openplanner.team/stops/N167aga"], ["https://tec.openplanner.team/stops/H2mo119a", "https://tec.openplanner.team/stops/H2mo123a"], ["https://tec.openplanner.team/stops/N118aha", "https://tec.openplanner.team/stops/N118atb"], ["https://tec.openplanner.team/stops/Llgarmu1", "https://tec.openplanner.team/stops/Llggosw1"], ["https://tec.openplanner.team/stops/H1ha193b", "https://tec.openplanner.team/stops/H1ob341b"], ["https://tec.openplanner.team/stops/Btlgfto1", "https://tec.openplanner.team/stops/Btlgreg1"], ["https://tec.openplanner.team/stops/N503agb", "https://tec.openplanner.team/stops/N535ana"], ["https://tec.openplanner.team/stops/Lheloti2", "https://tec.openplanner.team/stops/Lhr4ave1"], ["https://tec.openplanner.team/stops/LThsere1", "https://tec.openplanner.team/stops/LThsere2"], ["https://tec.openplanner.team/stops/Llgamer1", "https://tec.openplanner.team/stops/Llgamer4"], ["https://tec.openplanner.team/stops/Blasbpr2", "https://tec.openplanner.team/stops/Bottpin2"], ["https://tec.openplanner.team/stops/Lanpisc2", "https://tec.openplanner.team/stops/Lglmoul1"], ["https://tec.openplanner.team/stops/Ljuauto2", "https://tec.openplanner.team/stops/Lsweg--1"], ["https://tec.openplanner.team/stops/LHTboul1", "https://tec.openplanner.team/stops/LHTlieg1"], ["https://tec.openplanner.team/stops/Cjupui01", "https://tec.openplanner.team/stops/Clostan1"], ["https://tec.openplanner.team/stops/X349aab", "https://tec.openplanner.team/stops/X998aza"], ["https://tec.openplanner.team/stops/N209aja", "https://tec.openplanner.team/stops/N209ajb"], ["https://tec.openplanner.team/stops/LGegare1", "https://tec.openplanner.team/stops/LGegare2"], ["https://tec.openplanner.team/stops/X613aab", "https://tec.openplanner.team/stops/X614ama"], ["https://tec.openplanner.team/stops/Clddeve2", "https://tec.openplanner.team/stops/CMleer2"], ["https://tec.openplanner.team/stops/H1al106a", "https://tec.openplanner.team/stops/H1qp142a"], ["https://tec.openplanner.team/stops/Cmacart4", "https://tec.openplanner.team/stops/CMcart1"], ["https://tec.openplanner.team/stops/NC44aba", "https://tec.openplanner.team/stops/NC44adb"], ["https://tec.openplanner.team/stops/Cnagrro2", "https://tec.openplanner.team/stops/Cnanoir2"], ["https://tec.openplanner.team/stops/LOreg--2", "https://tec.openplanner.team/stops/LOrpont1"], ["https://tec.openplanner.team/stops/LPbec--1", "https://tec.openplanner.team/stops/LPbec--2"], ["https://tec.openplanner.team/stops/X612ada", "https://tec.openplanner.team/stops/X612adb"], ["https://tec.openplanner.team/stops/H1hr128c", "https://tec.openplanner.team/stops/H1hr129b"], ["https://tec.openplanner.team/stops/H1ca101a", "https://tec.openplanner.team/stops/H1ca101b"], ["https://tec.openplanner.team/stops/Lvepala2", "https://tec.openplanner.team/stops/Lvepala9"], ["https://tec.openplanner.team/stops/LJesole1", "https://tec.openplanner.team/stops/LJesole2"], ["https://tec.openplanner.team/stops/Lanfran2", "https://tec.openplanner.team/stops/Lanfran4"], ["https://tec.openplanner.team/stops/H4og212a", "https://tec.openplanner.team/stops/H4og213a"], ["https://tec.openplanner.team/stops/Cgxvkho1", "https://tec.openplanner.team/stops/Cmocime1"], ["https://tec.openplanner.team/stops/H1fl135b", "https://tec.openplanner.team/stops/H1fl137a"], ["https://tec.openplanner.team/stops/LrAdrie1", "https://tec.openplanner.team/stops/LrAdrie5"], ["https://tec.openplanner.team/stops/Ljejoli2", "https://tec.openplanner.team/stops/Ljelamb2"], ["https://tec.openplanner.team/stops/Cjudelv4", "https://tec.openplanner.team/stops/CMmade1"], ["https://tec.openplanner.team/stops/X907aib", "https://tec.openplanner.team/stops/X950aab"], ["https://tec.openplanner.team/stops/N576adb", "https://tec.openplanner.team/stops/N576aea"], ["https://tec.openplanner.team/stops/H4an108b", "https://tec.openplanner.team/stops/H4an110a"], ["https://tec.openplanner.team/stops/X939ahb", "https://tec.openplanner.team/stops/X946agb"], ["https://tec.openplanner.team/stops/Bottath1", "https://tec.openplanner.team/stops/Bottcco2"], ["https://tec.openplanner.team/stops/LFocent1", "https://tec.openplanner.team/stops/LFothie1"], ["https://tec.openplanner.team/stops/X999aeb", "https://tec.openplanner.team/stops/X999afb"], ["https://tec.openplanner.team/stops/N308aic", "https://tec.openplanner.team/stops/N308ala"], ["https://tec.openplanner.team/stops/Lrovand1", "https://tec.openplanner.team/stops/Lrovand2"], ["https://tec.openplanner.team/stops/H2le153a", "https://tec.openplanner.team/stops/H2le153b"], ["https://tec.openplanner.team/stops/N213aaa", "https://tec.openplanner.team/stops/N213aca"], ["https://tec.openplanner.team/stops/LrEkape2", "https://tec.openplanner.team/stops/LrErauw2"], ["https://tec.openplanner.team/stops/X896adb", "https://tec.openplanner.team/stops/X896aia"], ["https://tec.openplanner.team/stops/N501fwb", "https://tec.openplanner.team/stops/N501fwy"], ["https://tec.openplanner.team/stops/Cvpchat1", "https://tec.openplanner.team/stops/Cvppost1"], ["https://tec.openplanner.team/stops/Cmgvpa", "https://tec.openplanner.team/stops/H1mb129a"], ["https://tec.openplanner.team/stops/H4ft135a", "https://tec.openplanner.team/stops/H4ft135b"], ["https://tec.openplanner.team/stops/H4ce101a", "https://tec.openplanner.team/stops/H4ce101b"], ["https://tec.openplanner.team/stops/LHgtomb2", "https://tec.openplanner.team/stops/LOMdodi2"], ["https://tec.openplanner.team/stops/N524aia", "https://tec.openplanner.team/stops/N524amb"], ["https://tec.openplanner.team/stops/X616abb", "https://tec.openplanner.team/stops/X616aib"], ["https://tec.openplanner.team/stops/Lflchan2", "https://tec.openplanner.team/stops/Lflsana1"], ["https://tec.openplanner.team/stops/N501bha", "https://tec.openplanner.team/stops/N501lra"], ["https://tec.openplanner.team/stops/Beclbar2", "https://tec.openplanner.team/stops/H2fa103b"], ["https://tec.openplanner.team/stops/Cbwcab2", "https://tec.openplanner.team/stops/Cbwdoua2"], ["https://tec.openplanner.team/stops/X886ada", "https://tec.openplanner.team/stops/X886ahb"], ["https://tec.openplanner.team/stops/X808aia", "https://tec.openplanner.team/stops/X808akb"], ["https://tec.openplanner.team/stops/X696ada", "https://tec.openplanner.team/stops/X696aka"], ["https://tec.openplanner.team/stops/N553amb", "https://tec.openplanner.team/stops/N553anb"], ["https://tec.openplanner.team/stops/X650aib", "https://tec.openplanner.team/stops/X650aja"], ["https://tec.openplanner.team/stops/Lsemaqu2", "https://tec.openplanner.team/stops/Lsevecq2"], ["https://tec.openplanner.team/stops/X619aja", "https://tec.openplanner.team/stops/X619aka"], ["https://tec.openplanner.team/stops/X897adb", "https://tec.openplanner.team/stops/X897alc"], ["https://tec.openplanner.team/stops/H1pa118b", "https://tec.openplanner.team/stops/H1pa166b"], ["https://tec.openplanner.team/stops/LHUalbe2", "https://tec.openplanner.team/stops/LHUlieg2"], ["https://tec.openplanner.team/stops/NL72aea", "https://tec.openplanner.team/stops/NL76acb"], ["https://tec.openplanner.team/stops/N343aib", "https://tec.openplanner.team/stops/X343aic"], ["https://tec.openplanner.team/stops/LOTawan1", "https://tec.openplanner.team/stops/LOTawan2"], ["https://tec.openplanner.team/stops/H1ro135a", "https://tec.openplanner.team/stops/H1ro140a"], ["https://tec.openplanner.team/stops/N558ana", "https://tec.openplanner.team/stops/NL76aea"], ["https://tec.openplanner.team/stops/X639ada", "https://tec.openplanner.team/stops/X639apa"], ["https://tec.openplanner.team/stops/X811aaa", "https://tec.openplanner.team/stops/X811ada"], ["https://tec.openplanner.team/stops/LHGtron1", "https://tec.openplanner.team/stops/LVllieg2"], ["https://tec.openplanner.team/stops/N302afa", "https://tec.openplanner.team/stops/N331aeb"], ["https://tec.openplanner.team/stops/N160ada", "https://tec.openplanner.team/stops/N160adb"], ["https://tec.openplanner.team/stops/N212ata", "https://tec.openplanner.team/stops/N213aab"], ["https://tec.openplanner.team/stops/X746ahb", "https://tec.openplanner.team/stops/X746aia"], ["https://tec.openplanner.team/stops/Lagstre1", "https://tec.openplanner.team/stops/Lagtilf1"], ["https://tec.openplanner.team/stops/H1as102a", "https://tec.openplanner.team/stops/H1as154a"], ["https://tec.openplanner.team/stops/LBY4che1", "https://tec.openplanner.team/stops/Lgdegli2"], ["https://tec.openplanner.team/stops/X641adb", "https://tec.openplanner.team/stops/X641aea"], ["https://tec.openplanner.team/stops/LHUmala2", "https://tec.openplanner.team/stops/LHUtfal1"], ["https://tec.openplanner.team/stops/LSPchap2", "https://tec.openplanner.team/stops/LSPec--1"], ["https://tec.openplanner.team/stops/Lmlcrot*", "https://tec.openplanner.team/stops/Lmlcrot2"], ["https://tec.openplanner.team/stops/H5rx104b", "https://tec.openplanner.team/stops/H5rx121a"], ["https://tec.openplanner.team/stops/LBaeg--1", "https://tec.openplanner.team/stops/LBapepi5"], ["https://tec.openplanner.team/stops/N209ama", "https://tec.openplanner.team/stops/N209amb"], ["https://tec.openplanner.team/stops/X636awb", "https://tec.openplanner.team/stops/X636axa"], ["https://tec.openplanner.team/stops/Bwavdmo3", "https://tec.openplanner.team/stops/Bwavdmo4"], ["https://tec.openplanner.team/stops/X601aja", "https://tec.openplanner.team/stops/X662ata"], ["https://tec.openplanner.team/stops/Blemwob2", "https://tec.openplanner.team/stops/Blemwob3"], ["https://tec.openplanner.team/stops/H1he109a", "https://tec.openplanner.team/stops/H1qv116a"], ["https://tec.openplanner.team/stops/Lra4bra1", "https://tec.openplanner.team/stops/LSAvieu2"], ["https://tec.openplanner.team/stops/Bbstasa1", "https://tec.openplanner.team/stops/Bbstegl2"], ["https://tec.openplanner.team/stops/N501mba", "https://tec.openplanner.team/stops/N501ncb"], ["https://tec.openplanner.team/stops/H2pe162a", "https://tec.openplanner.team/stops/H2pe163b"], ["https://tec.openplanner.team/stops/Cfacamp4", "https://tec.openplanner.team/stops/Cfarcam2"], ["https://tec.openplanner.team/stops/Lseaven1", "https://tec.openplanner.team/stops/Lsekubo4"], ["https://tec.openplanner.team/stops/H5pe129b", "https://tec.openplanner.team/stops/H5pe135a"], ["https://tec.openplanner.team/stops/Llgatla1", "https://tec.openplanner.team/stops/Llgauxc1"], ["https://tec.openplanner.team/stops/Bbldass1", "https://tec.openplanner.team/stops/Bnetrec2"], ["https://tec.openplanner.team/stops/H5rx115d", "https://tec.openplanner.team/stops/H5rx144b"], ["https://tec.openplanner.team/stops/Llgnico5", "https://tec.openplanner.team/stops/Llgnico7"], ["https://tec.openplanner.team/stops/Cmtfabi2", "https://tec.openplanner.team/stops/Cmtmath1"], ["https://tec.openplanner.team/stops/Cptccas2", "https://tec.openplanner.team/stops/Cptdubo2"], ["https://tec.openplanner.team/stops/Lcceg--1", "https://tec.openplanner.team/stops/Lcceg--2"], ["https://tec.openplanner.team/stops/Lccaigr1", "https://tec.openplanner.team/stops/LRAgrot1"], ["https://tec.openplanner.team/stops/H4og208a", "https://tec.openplanner.team/stops/H4og215a"], ["https://tec.openplanner.team/stops/Cbiseur1", "https://tec.openplanner.team/stops/Cgzblob1"], ["https://tec.openplanner.team/stops/N117ara", "https://tec.openplanner.team/stops/N117arb"], ["https://tec.openplanner.team/stops/LTPhenr1", "https://tec.openplanner.team/stops/LTPhenr2"], ["https://tec.openplanner.team/stops/Bwatmsj1", "https://tec.openplanner.team/stops/Bwatmsj8"], ["https://tec.openplanner.team/stops/Ljubois2", "https://tec.openplanner.team/stops/Ljuprev1"], ["https://tec.openplanner.team/stops/N501maa", "https://tec.openplanner.team/stops/N501mab"], ["https://tec.openplanner.team/stops/H4hg156a", "https://tec.openplanner.team/stops/H4hg159b"], ["https://tec.openplanner.team/stops/LgRzent1", "https://tec.openplanner.team/stops/LgRzent2"], ["https://tec.openplanner.team/stops/LLzcruc2", "https://tec.openplanner.team/stops/LWneg--1"], ["https://tec.openplanner.team/stops/Bbiecim2", "https://tec.openplanner.team/stops/Bbiepre1"], ["https://tec.openplanner.team/stops/H4fa124a", "https://tec.openplanner.team/stops/H4ms146a"], ["https://tec.openplanner.team/stops/Cgocnor1", "https://tec.openplanner.team/stops/Cgoetun5"], ["https://tec.openplanner.team/stops/H4wc372a", "https://tec.openplanner.team/stops/H4wc373a"], ["https://tec.openplanner.team/stops/Blmlcar1", "https://tec.openplanner.team/stops/Brixape2"], ["https://tec.openplanner.team/stops/LACwass2", "https://tec.openplanner.team/stops/NL30aja"], ["https://tec.openplanner.team/stops/Lfhbott2", "https://tec.openplanner.team/stops/Lfhtrca1"], ["https://tec.openplanner.team/stops/N204aba", "https://tec.openplanner.team/stops/N205aba"], ["https://tec.openplanner.team/stops/LLbcafe1", "https://tec.openplanner.team/stops/LLbcafe2"], ["https://tec.openplanner.team/stops/Bbsgfva1", "https://tec.openplanner.team/stops/Bbsgfva2"], ["https://tec.openplanner.team/stops/LBhcent2", "https://tec.openplanner.team/stops/LSochal1"], ["https://tec.openplanner.team/stops/Cmymaco2", "https://tec.openplanner.team/stops/Cmywarc2"], ["https://tec.openplanner.team/stops/NL77aga", "https://tec.openplanner.team/stops/NL77agb"], ["https://tec.openplanner.team/stops/Cmttrie1", "https://tec.openplanner.team/stops/Cmttrie2"], ["https://tec.openplanner.team/stops/H1ha187b", "https://tec.openplanner.team/stops/H1ha196b"], ["https://tec.openplanner.team/stops/Lougare1", "https://tec.openplanner.team/stops/Lougare2"], ["https://tec.openplanner.team/stops/X730adb", "https://tec.openplanner.team/stops/X753acb"], ["https://tec.openplanner.team/stops/H4bh100b", "https://tec.openplanner.team/stops/H4ry141b"], ["https://tec.openplanner.team/stops/X765aab", "https://tec.openplanner.team/stops/X766afa"], ["https://tec.openplanner.team/stops/H2na136a", "https://tec.openplanner.team/stops/H3so185b"], ["https://tec.openplanner.team/stops/LWLtamb1", "https://tec.openplanner.team/stops/LWLtamb2"], ["https://tec.openplanner.team/stops/Bnilcha2", "https://tec.openplanner.team/stops/Bwlhpmt1"], ["https://tec.openplanner.team/stops/Lagkink2", "https://tec.openplanner.team/stops/Lagpera1"], ["https://tec.openplanner.team/stops/LBBcamp2", "https://tec.openplanner.team/stops/NL81aea"], ["https://tec.openplanner.team/stops/N215aab", "https://tec.openplanner.team/stops/N228aca"], ["https://tec.openplanner.team/stops/Llgcorn2", "https://tec.openplanner.team/stops/Llgmulh2"], ["https://tec.openplanner.team/stops/N536apa", "https://tec.openplanner.team/stops/N562aob"], ["https://tec.openplanner.team/stops/X890aeb", "https://tec.openplanner.team/stops/X890aga"], ["https://tec.openplanner.team/stops/Bhalalb2", "https://tec.openplanner.team/stops/Bhalpar3"], ["https://tec.openplanner.team/stops/N528ana", "https://tec.openplanner.team/stops/N528aqa"], ["https://tec.openplanner.team/stops/H4mb141a", "https://tec.openplanner.team/stops/H4ml207a"], ["https://tec.openplanner.team/stops/LOunebl1", "https://tec.openplanner.team/stops/X261acb"], ["https://tec.openplanner.team/stops/LSIgera2", "https://tec.openplanner.team/stops/LVAakke1"], ["https://tec.openplanner.team/stops/Blasbh52", "https://tec.openplanner.team/stops/Blasbpr1"], ["https://tec.openplanner.team/stops/Bniltri1", "https://tec.openplanner.team/stops/Bwlhpmt2"], ["https://tec.openplanner.team/stops/Lseaite2", "https://tec.openplanner.team/stops/Lsevand1"], ["https://tec.openplanner.team/stops/LSkbo831", "https://tec.openplanner.team/stops/LSkbo832"], ["https://tec.openplanner.team/stops/N357aca", "https://tec.openplanner.team/stops/X989aeb"], ["https://tec.openplanner.team/stops/X923abb", "https://tec.openplanner.team/stops/X923adb"], ["https://tec.openplanner.team/stops/H2pe159b", "https://tec.openplanner.team/stops/H2re165a"], ["https://tec.openplanner.team/stops/Lghcham1", "https://tec.openplanner.team/stops/Lghfore1"], ["https://tec.openplanner.team/stops/N542aja", "https://tec.openplanner.team/stops/N542ajb"], ["https://tec.openplanner.team/stops/Crglyre2", "https://tec.openplanner.team/stops/Cstvape2"], ["https://tec.openplanner.team/stops/Bbsigaz2", "https://tec.openplanner.team/stops/Blilhay1"], ["https://tec.openplanner.team/stops/Ljubord1", "https://tec.openplanner.team/stops/Ljubrec3"], ["https://tec.openplanner.team/stops/H1mj122b", "https://tec.openplanner.team/stops/H1mj130a"], ["https://tec.openplanner.team/stops/N209akb", "https://tec.openplanner.team/stops/N559acb"], ["https://tec.openplanner.team/stops/Cfrcomp1", "https://tec.openplanner.team/stops/Cfrplac6"], ["https://tec.openplanner.team/stops/Cmlbras1", "https://tec.openplanner.team/stops/Cmlcent1"], ["https://tec.openplanner.team/stops/H1ge179a", "https://tec.openplanner.team/stops/H1no141b"], ["https://tec.openplanner.team/stops/N287acb", "https://tec.openplanner.team/stops/N287ada"], ["https://tec.openplanner.team/stops/Llgcite4", "https://tec.openplanner.team/stops/Llgphol1"], ["https://tec.openplanner.team/stops/H1pe132b", "https://tec.openplanner.team/stops/H1ry134b"], ["https://tec.openplanner.team/stops/X725atb", "https://tec.openplanner.team/stops/X725bia"], ["https://tec.openplanner.team/stops/H4pe125a", "https://tec.openplanner.team/stops/H4pe127b"], ["https://tec.openplanner.team/stops/LsVgend1", "https://tec.openplanner.team/stops/LsVgend2"], ["https://tec.openplanner.team/stops/N501cqa", "https://tec.openplanner.team/stops/N501cub"], ["https://tec.openplanner.team/stops/Cchblne2", "https://tec.openplanner.team/stops/Cchtour2"], ["https://tec.openplanner.team/stops/Cgobl%C3%A9r1", "https://tec.openplanner.team/stops/Cgobl%C3%A9r2"], ["https://tec.openplanner.team/stops/X771aab", "https://tec.openplanner.team/stops/X773aea"], ["https://tec.openplanner.team/stops/LMOford1", "https://tec.openplanner.team/stops/LMOhero1"], ["https://tec.openplanner.team/stops/N544aab", "https://tec.openplanner.team/stops/N544aea"], ["https://tec.openplanner.team/stops/Lch179-1", "https://tec.openplanner.team/stops/Lchsaec2"], ["https://tec.openplanner.team/stops/Bcsepes1", "https://tec.openplanner.team/stops/Bmoucoq1"], ["https://tec.openplanner.team/stops/X363aab", "https://tec.openplanner.team/stops/X363adb"], ["https://tec.openplanner.team/stops/X823aeb", "https://tec.openplanner.team/stops/X823afc"], ["https://tec.openplanner.team/stops/Cgopier3", "https://tec.openplanner.team/stops/Cgorobe2"], ["https://tec.openplanner.team/stops/X750aub", "https://tec.openplanner.team/stops/X750bkb"], ["https://tec.openplanner.team/stops/Bgoemho2", "https://tec.openplanner.team/stops/Bneesj32"], ["https://tec.openplanner.team/stops/X757ala", "https://tec.openplanner.team/stops/X757alb"], ["https://tec.openplanner.team/stops/Ccugrtr2", "https://tec.openplanner.team/stops/Ccumasu2"], ["https://tec.openplanner.team/stops/Cgrlorm2", "https://tec.openplanner.team/stops/N160ahb"], ["https://tec.openplanner.team/stops/LREelse2", "https://tec.openplanner.team/stops/LREgrot4"], ["https://tec.openplanner.team/stops/Blimmer2", "https://tec.openplanner.team/stops/Bottgar4"], ["https://tec.openplanner.team/stops/Blpgbat1", "https://tec.openplanner.team/stops/Blpghou1"], ["https://tec.openplanner.team/stops/N132aaa", "https://tec.openplanner.team/stops/N136aaa"], ["https://tec.openplanner.team/stops/Bnodblt1", "https://tec.openplanner.team/stops/Bnodegl1"], ["https://tec.openplanner.team/stops/X804brb", "https://tec.openplanner.team/stops/X804bsb"], ["https://tec.openplanner.team/stops/LeLsied1", "https://tec.openplanner.team/stops/LeLzost2"], ["https://tec.openplanner.team/stops/LlSzoll1", "https://tec.openplanner.team/stops/LmEdorf2"], ["https://tec.openplanner.team/stops/H1ms364a", "https://tec.openplanner.team/stops/H1ms910a"], ["https://tec.openplanner.team/stops/LFAec--1", "https://tec.openplanner.team/stops/LFAtomb1"], ["https://tec.openplanner.team/stops/X780ada", "https://tec.openplanner.team/stops/X780aeb"], ["https://tec.openplanner.team/stops/Bwaakap2", "https://tec.openplanner.team/stops/LWSstat1"], ["https://tec.openplanner.team/stops/Blhueca2", "https://tec.openplanner.team/stops/Blhueso1"], ["https://tec.openplanner.team/stops/Ctachst1", "https://tec.openplanner.team/stops/N543cja"], ["https://tec.openplanner.team/stops/N512aoa", "https://tec.openplanner.team/stops/N512apb"], ["https://tec.openplanner.team/stops/N137aca", "https://tec.openplanner.team/stops/N137acb"], ["https://tec.openplanner.team/stops/H4vz370a", "https://tec.openplanner.team/stops/H4vz370b"], ["https://tec.openplanner.team/stops/H4cw107a", "https://tec.openplanner.team/stops/H4gz115b"], ["https://tec.openplanner.team/stops/X633afa", "https://tec.openplanner.team/stops/X653adc"], ["https://tec.openplanner.team/stops/LFPgeme1", "https://tec.openplanner.team/stops/LFPgeme2"], ["https://tec.openplanner.team/stops/LBBmc--1", "https://tec.openplanner.team/stops/LBBmc--2"], ["https://tec.openplanner.team/stops/N571aca", "https://tec.openplanner.team/stops/N573aoa"], ["https://tec.openplanner.team/stops/LHUmess1", "https://tec.openplanner.team/stops/LHUsauv3"], ["https://tec.openplanner.team/stops/X734ada", "https://tec.openplanner.team/stops/X734afa"], ["https://tec.openplanner.team/stops/X641ala", "https://tec.openplanner.team/stops/X641ayb"], ["https://tec.openplanner.team/stops/Lsmnico2", "https://tec.openplanner.team/stops/Lsmtini3"], ["https://tec.openplanner.team/stops/H1gi154b", "https://tec.openplanner.team/stops/H1hm176a"], ["https://tec.openplanner.team/stops/N217ada", "https://tec.openplanner.team/stops/N232adb"], ["https://tec.openplanner.team/stops/LHDpota3", "https://tec.openplanner.team/stops/LHDpota4"], ["https://tec.openplanner.team/stops/H1do110a", "https://tec.openplanner.team/stops/H1do125a"], ["https://tec.openplanner.team/stops/LaNmuhl3", "https://tec.openplanner.team/stops/LmNbirt2"], ["https://tec.openplanner.team/stops/LAmwaut2", "https://tec.openplanner.team/stops/LTipont1"], ["https://tec.openplanner.team/stops/H2hp119d", "https://tec.openplanner.team/stops/H2ll260b"], ["https://tec.openplanner.team/stops/Canboha1", "https://tec.openplanner.team/stops/Cpthaud1"], ["https://tec.openplanner.team/stops/Lrecroi1", "https://tec.openplanner.team/stops/Lrelier1"], ["https://tec.openplanner.team/stops/H1br128a", "https://tec.openplanner.team/stops/H1br132b"], ["https://tec.openplanner.team/stops/Bnivfra1", "https://tec.openplanner.team/stops/Bnivpba2"], ["https://tec.openplanner.team/stops/N134aga", "https://tec.openplanner.team/stops/N154abb"], ["https://tec.openplanner.team/stops/X750asb", "https://tec.openplanner.team/stops/X750azb"], ["https://tec.openplanner.team/stops/LPLfp2-1", "https://tec.openplanner.team/stops/LPLstri1"], ["https://tec.openplanner.team/stops/X802ajb", "https://tec.openplanner.team/stops/X802aka"], ["https://tec.openplanner.team/stops/LsVgils1", "https://tec.openplanner.team/stops/LsVthom2"], ["https://tec.openplanner.team/stops/LlNbene2", "https://tec.openplanner.team/stops/LlNkirc2"], ["https://tec.openplanner.team/stops/Lchmarc2", "https://tec.openplanner.team/stops/LHAlacr1"], ["https://tec.openplanner.team/stops/Lvesomm2", "https://tec.openplanner.team/stops/Lvewall1"], ["https://tec.openplanner.team/stops/LFmgeno1", "https://tec.openplanner.team/stops/LFmgeno2"], ["https://tec.openplanner.team/stops/X808aga", "https://tec.openplanner.team/stops/X811aga"], ["https://tec.openplanner.team/stops/Ctybaco1", "https://tec.openplanner.team/stops/Ctyhame2"], ["https://tec.openplanner.team/stops/H4fr392a", "https://tec.openplanner.team/stops/H4fr394a"], ["https://tec.openplanner.team/stops/LNChock1", "https://tec.openplanner.team/stops/LNCmarc1"], ["https://tec.openplanner.team/stops/N201afb", "https://tec.openplanner.team/stops/N201aha"], ["https://tec.openplanner.team/stops/Bleugar1", "https://tec.openplanner.team/stops/Bleunaa2"], ["https://tec.openplanner.team/stops/Bcrncen2", "https://tec.openplanner.team/stops/Bcrnsge2"], ["https://tec.openplanner.team/stops/LJU51--1", "https://tec.openplanner.team/stops/LJUmc--1"], ["https://tec.openplanner.team/stops/Cgzoctr2", "https://tec.openplanner.team/stops/Cgzoctr3"], ["https://tec.openplanner.team/stops/LFrec--1", "https://tec.openplanner.team/stops/LLUcdoy1"], ["https://tec.openplanner.team/stops/H1mq199b", "https://tec.openplanner.team/stops/H5at122a"], ["https://tec.openplanner.team/stops/LrEgend2", "https://tec.openplanner.team/stops/LrEviel2"], ["https://tec.openplanner.team/stops/X597aaa", "https://tec.openplanner.team/stops/X597anb"], ["https://tec.openplanner.team/stops/X345aab", "https://tec.openplanner.team/stops/X363aab"], ["https://tec.openplanner.team/stops/Llghenr1", "https://tec.openplanner.team/stops/Llghenr2"], ["https://tec.openplanner.team/stops/X610aja", "https://tec.openplanner.team/stops/X611aea"], ["https://tec.openplanner.team/stops/Cbmind2", "https://tec.openplanner.team/stops/Cbmzoni1"], ["https://tec.openplanner.team/stops/LSTamer2", "https://tec.openplanner.team/stops/LSTchal4"], ["https://tec.openplanner.team/stops/Lvecase1", "https://tec.openplanner.team/stops/Lvecite3"], ["https://tec.openplanner.team/stops/X634aba", "https://tec.openplanner.team/stops/X634abb"], ["https://tec.openplanner.team/stops/LHUgodi1", "https://tec.openplanner.team/stops/LHUlebe8"], ["https://tec.openplanner.team/stops/LBIrout2", "https://tec.openplanner.team/stops/LVGeg--5"], ["https://tec.openplanner.team/stops/H4ru239a", "https://tec.openplanner.team/stops/H4ru241a"], ["https://tec.openplanner.team/stops/Bcer4br3", "https://tec.openplanner.team/stops/Bcer4br5"], ["https://tec.openplanner.team/stops/Cci22ao2", "https://tec.openplanner.team/stops/Cciethi2"], ["https://tec.openplanner.team/stops/Lghalle1", "https://tec.openplanner.team/stops/Lghlieg1"], ["https://tec.openplanner.team/stops/X639ajb", "https://tec.openplanner.team/stops/X639akc"], ["https://tec.openplanner.team/stops/H2ll183b", "https://tec.openplanner.team/stops/H2ll260a"], ["https://tec.openplanner.team/stops/LTIp%C3%A9pi2", "https://tec.openplanner.team/stops/LTIsain2"], ["https://tec.openplanner.team/stops/N231afb", "https://tec.openplanner.team/stops/N231aha"], ["https://tec.openplanner.team/stops/X897amb", "https://tec.openplanner.team/stops/X897anb"], ["https://tec.openplanner.team/stops/H1to153b", "https://tec.openplanner.team/stops/H1to153c"], ["https://tec.openplanner.team/stops/Bbrlmez2", "https://tec.openplanner.team/stops/Bbrlvil1"], ["https://tec.openplanner.team/stops/N229afb", "https://tec.openplanner.team/stops/N270agb"], ["https://tec.openplanner.team/stops/LCxreno1", "https://tec.openplanner.team/stops/LLMfond2"], ["https://tec.openplanner.team/stops/X729aca", "https://tec.openplanner.team/stops/X769aga"], ["https://tec.openplanner.team/stops/LBPxhav2", "https://tec.openplanner.team/stops/LHSlava2"], ["https://tec.openplanner.team/stops/H1ho122c", "https://tec.openplanner.team/stops/H1ho143a"], ["https://tec.openplanner.team/stops/N501iwa", "https://tec.openplanner.team/stops/N521ahb"], ["https://tec.openplanner.team/stops/N504aab", "https://tec.openplanner.team/stops/N511agb"], ["https://tec.openplanner.team/stops/LBlchin1", "https://tec.openplanner.team/stops/LBlplac2"], ["https://tec.openplanner.team/stops/N501fty", "https://tec.openplanner.team/stops/N501gpd"], ["https://tec.openplanner.team/stops/Llgbavi0", "https://tec.openplanner.team/stops/Llghong1"], ["https://tec.openplanner.team/stops/Lmolagu1", "https://tec.openplanner.team/stops/Lmolagu2"], ["https://tec.openplanner.team/stops/H4ta117a", "https://tec.openplanner.team/stops/H4ta122a"], ["https://tec.openplanner.team/stops/Ccyfede1", "https://tec.openplanner.team/stops/Csrcant1"], ["https://tec.openplanner.team/stops/X822aja", "https://tec.openplanner.team/stops/X822ala"], ["https://tec.openplanner.team/stops/Ctrterm2", "https://tec.openplanner.team/stops/H2tz115b"], ["https://tec.openplanner.team/stops/Ljeblum2", "https://tec.openplanner.team/stops/Ljerobi1"], ["https://tec.openplanner.team/stops/Brsgm801", "https://tec.openplanner.team/stops/Brsgm802"], ["https://tec.openplanner.team/stops/N540agb", "https://tec.openplanner.team/stops/N540aja"], ["https://tec.openplanner.team/stops/X820aeb", "https://tec.openplanner.team/stops/X821aaa"], ["https://tec.openplanner.team/stops/H4bs113a", "https://tec.openplanner.team/stops/H4bs114a"], ["https://tec.openplanner.team/stops/LeIdeid2", "https://tec.openplanner.team/stops/LeIpiro3"], ["https://tec.openplanner.team/stops/H1eo104a", "https://tec.openplanner.team/stops/H1eo107a"], ["https://tec.openplanner.team/stops/X995adc", "https://tec.openplanner.team/stops/X995afa"], ["https://tec.openplanner.team/stops/LmSkape1", "https://tec.openplanner.team/stops/LmSkape2"], ["https://tec.openplanner.team/stops/X685aca", "https://tec.openplanner.team/stops/X685ama"], ["https://tec.openplanner.team/stops/X786aaa", "https://tec.openplanner.team/stops/X786aea"], ["https://tec.openplanner.team/stops/Llgfusc4", "https://tec.openplanner.team/stops/Llghec-2"], ["https://tec.openplanner.team/stops/H1gi121b", "https://tec.openplanner.team/stops/H1gi154a"], ["https://tec.openplanner.team/stops/H1ob331b", "https://tec.openplanner.team/stops/H1ob361b"], ["https://tec.openplanner.team/stops/Lhrhosp1", "https://tec.openplanner.team/stops/Lhrhosp2"], ["https://tec.openplanner.team/stops/Lsehya-3", "https://tec.openplanner.team/stops/Lseruis2"], ["https://tec.openplanner.team/stops/LESmart1", "https://tec.openplanner.team/stops/LESmart2"], ["https://tec.openplanner.team/stops/LSBrouf2", "https://tec.openplanner.team/stops/LSBrouf4"], ["https://tec.openplanner.team/stops/Llgfoss1", "https://tec.openplanner.team/stops/Llgsevr4"], ["https://tec.openplanner.team/stops/H2hl110b", "https://tec.openplanner.team/stops/H2hl113a"], ["https://tec.openplanner.team/stops/LFfeg--2", "https://tec.openplanner.team/stops/LPRmoul1"], ["https://tec.openplanner.team/stops/Ctisar2", "https://tec.openplanner.team/stops/H1mc128b"], ["https://tec.openplanner.team/stops/Bbaucai2", "https://tec.openplanner.team/stops/Blilgar1"], ["https://tec.openplanner.team/stops/H4ro155b", "https://tec.openplanner.team/stops/H5pe128a"], ["https://tec.openplanner.team/stops/LHgpost2", "https://tec.openplanner.team/stops/LHgtomb1"], ["https://tec.openplanner.team/stops/N521ata", "https://tec.openplanner.team/stops/N521atb"], ["https://tec.openplanner.team/stops/H4bo115b", "https://tec.openplanner.team/stops/H4hu113b"], ["https://tec.openplanner.team/stops/LbHzent2", "https://tec.openplanner.team/stops/LmS11--1"], ["https://tec.openplanner.team/stops/Lvo60--2", "https://tec.openplanner.team/stops/Lvovent2"], ["https://tec.openplanner.team/stops/LHrchat2", "https://tec.openplanner.team/stops/LHrrard2"], ["https://tec.openplanner.team/stops/Lchsa632", "https://tec.openplanner.team/stops/Lchtche1"], ["https://tec.openplanner.team/stops/X743aba", "https://tec.openplanner.team/stops/X743abb"], ["https://tec.openplanner.team/stops/Lantonn2", "https://tec.openplanner.team/stops/Lrcchar2"], ["https://tec.openplanner.team/stops/Bmarmpr1", "https://tec.openplanner.team/stops/Btileco2"], ["https://tec.openplanner.team/stops/Brixala1", "https://tec.openplanner.team/stops/Brixpro1"], ["https://tec.openplanner.team/stops/LpEbins1", "https://tec.openplanner.team/stops/LrTpost1"], ["https://tec.openplanner.team/stops/Lprfoot2", "https://tec.openplanner.team/stops/Lprtour1"], ["https://tec.openplanner.team/stops/LFPkerk1", "https://tec.openplanner.team/stops/LFPkerk2"], ["https://tec.openplanner.team/stops/LTobilz1", "https://tec.openplanner.team/stops/LToluik2"], ["https://tec.openplanner.team/stops/H4bw101a", "https://tec.openplanner.team/stops/H4co150a"], ["https://tec.openplanner.team/stops/X901aub", "https://tec.openplanner.team/stops/X901bqb"], ["https://tec.openplanner.team/stops/H1ms251a", "https://tec.openplanner.team/stops/H1ms251b"], ["https://tec.openplanner.team/stops/LMgbatt1", "https://tec.openplanner.team/stops/LMgbatt2"], ["https://tec.openplanner.team/stops/X642aaa", "https://tec.openplanner.team/stops/X646ada"], ["https://tec.openplanner.team/stops/H4ch114b", "https://tec.openplanner.team/stops/H4ty322a"], ["https://tec.openplanner.team/stops/Baudhan1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/N308bgb", "https://tec.openplanner.team/stops/N308bhb"], ["https://tec.openplanner.team/stops/LAYsupe1", "https://tec.openplanner.team/stops/LREraph2"], ["https://tec.openplanner.team/stops/LRccent1", "https://tec.openplanner.team/stops/LRcsilo2"], ["https://tec.openplanner.team/stops/N543aia", "https://tec.openplanner.team/stops/N543cla"], ["https://tec.openplanner.team/stops/X804anb", "https://tec.openplanner.team/stops/X804bta"], ["https://tec.openplanner.team/stops/X358aca", "https://tec.openplanner.team/stops/X991aeb"], ["https://tec.openplanner.team/stops/Cml3fon2", "https://tec.openplanner.team/stops/Cmlceri2"], ["https://tec.openplanner.team/stops/Llgsimo1", "https://tec.openplanner.team/stops/Llgvinc2"], ["https://tec.openplanner.team/stops/N104aba", "https://tec.openplanner.team/stops/N104abb"], ["https://tec.openplanner.team/stops/N539aca", "https://tec.openplanner.team/stops/N539aea"], ["https://tec.openplanner.team/stops/Bfledpi1", "https://tec.openplanner.team/stops/Cflchmo2"], ["https://tec.openplanner.team/stops/LlNhube1", "https://tec.openplanner.team/stops/LlNkirc1"], ["https://tec.openplanner.team/stops/N512ada", "https://tec.openplanner.team/stops/N512aea"], ["https://tec.openplanner.team/stops/Btubga01", "https://tec.openplanner.team/stops/Btubmfa1"], ["https://tec.openplanner.team/stops/N511aka", "https://tec.openplanner.team/stops/N511ala"], ["https://tec.openplanner.team/stops/H1vh136c", "https://tec.openplanner.team/stops/H3go100b"], ["https://tec.openplanner.team/stops/X358abb", "https://tec.openplanner.team/stops/X358afb"], ["https://tec.openplanner.team/stops/N209aka", "https://tec.openplanner.team/stops/N209akb"], ["https://tec.openplanner.team/stops/H2pe162b", "https://tec.openplanner.team/stops/H2pe163a"], ["https://tec.openplanner.team/stops/X613abb", "https://tec.openplanner.team/stops/X614ama"], ["https://tec.openplanner.team/stops/H2lc170b", "https://tec.openplanner.team/stops/H2lc172b"], ["https://tec.openplanner.team/stops/Ccunove1", "https://tec.openplanner.team/stops/Ccutill3"], ["https://tec.openplanner.team/stops/H1lm105a", "https://tec.openplanner.team/stops/H1lm105b"], ["https://tec.openplanner.team/stops/Bbryfon2", "https://tec.openplanner.team/stops/Bmarcat2"], ["https://tec.openplanner.team/stops/Ccybeau1", "https://tec.openplanner.team/stops/Ccychap2"], ["https://tec.openplanner.team/stops/Bolggar2", "https://tec.openplanner.team/stops/Bolppla3"], ["https://tec.openplanner.team/stops/Lpedeta2", "https://tec.openplanner.team/stops/Lpefler1"], ["https://tec.openplanner.team/stops/Llmbell1", "https://tec.openplanner.team/stops/Lvehout1"], ["https://tec.openplanner.team/stops/LHZbren1", "https://tec.openplanner.team/stops/LVefont1"], ["https://tec.openplanner.team/stops/H2lh132a", "https://tec.openplanner.team/stops/H2lh132b"], ["https://tec.openplanner.team/stops/X782alb", "https://tec.openplanner.team/stops/X782amb"], ["https://tec.openplanner.team/stops/Lrc594-2", "https://tec.openplanner.team/stops/Lvo60--1"], ["https://tec.openplanner.team/stops/N528ada", "https://tec.openplanner.team/stops/N528ava"], ["https://tec.openplanner.team/stops/X669agb", "https://tec.openplanner.team/stops/X669agd"], ["https://tec.openplanner.team/stops/Bpthfus1", "https://tec.openplanner.team/stops/Bpthfus2"], ["https://tec.openplanner.team/stops/Bnilhau1", "https://tec.openplanner.team/stops/Btsllnd1"], ["https://tec.openplanner.team/stops/X897aoa", "https://tec.openplanner.team/stops/X897aoc"], ["https://tec.openplanner.team/stops/H2fa105a", "https://tec.openplanner.team/stops/H2hg268c"], ["https://tec.openplanner.team/stops/LkEhatt1", "https://tec.openplanner.team/stops/LkEzoll1"], ["https://tec.openplanner.team/stops/H2hg150b", "https://tec.openplanner.team/stops/H2hg154f"], ["https://tec.openplanner.team/stops/H2ma208b", "https://tec.openplanner.team/stops/H2sb232a"], ["https://tec.openplanner.team/stops/H1ho140a", "https://tec.openplanner.team/stops/H1wa157a"], ["https://tec.openplanner.team/stops/Bnivhon2", "https://tec.openplanner.team/stops/Bnivpgr1"], ["https://tec.openplanner.team/stops/LPLhest1", "https://tec.openplanner.team/stops/LPLstat1"], ["https://tec.openplanner.team/stops/Bbst4br3", "https://tec.openplanner.team/stops/Cbtgemi1"], ["https://tec.openplanner.team/stops/LONcroi1", "https://tec.openplanner.team/stops/Ltheg--1"], ["https://tec.openplanner.team/stops/X634abb", "https://tec.openplanner.team/stops/X634ahb"], ["https://tec.openplanner.team/stops/Lhufila2", "https://tec.openplanner.team/stops/LPoxhav1"], ["https://tec.openplanner.team/stops/Ltiegl-*", "https://tec.openplanner.team/stops/Ltiegli2"], ["https://tec.openplanner.team/stops/Llgcurt1", "https://tec.openplanner.team/stops/Llghong2"], ["https://tec.openplanner.team/stops/X610aeb", "https://tec.openplanner.team/stops/X611aba"], ["https://tec.openplanner.team/stops/LFmcarr2", "https://tec.openplanner.team/stops/LMObouh1"], ["https://tec.openplanner.team/stops/H2hp123d", "https://tec.openplanner.team/stops/H2mo122d"], ["https://tec.openplanner.team/stops/Cflchap4", "https://tec.openplanner.team/stops/Cflmarc2"], ["https://tec.openplanner.team/stops/X604aca", "https://tec.openplanner.team/stops/X618aab"], ["https://tec.openplanner.team/stops/Cblbaiv1", "https://tec.openplanner.team/stops/Cblcent1"], ["https://tec.openplanner.team/stops/H1em110a", "https://tec.openplanner.team/stops/H1hl125b"], ["https://tec.openplanner.team/stops/H4lp124b", "https://tec.openplanner.team/stops/H4my123a"], ["https://tec.openplanner.team/stops/H5pe142b", "https://tec.openplanner.team/stops/H5pe153a"], ["https://tec.openplanner.team/stops/X750ara", "https://tec.openplanner.team/stops/X750axa"], ["https://tec.openplanner.team/stops/LAvcani1", "https://tec.openplanner.team/stops/LCIneuv1"], ["https://tec.openplanner.team/stops/Bbsiabb1", "https://tec.openplanner.team/stops/Bbsicen1"], ["https://tec.openplanner.team/stops/X713abb", "https://tec.openplanner.team/stops/X713anb"], ["https://tec.openplanner.team/stops/H1sg149b", "https://tec.openplanner.team/stops/H1te183a"], ["https://tec.openplanner.team/stops/Lhrdelv2", "https://tec.openplanner.team/stops/Lhrhome1"], ["https://tec.openplanner.team/stops/N162ada", "https://tec.openplanner.team/stops/N162afb"], ["https://tec.openplanner.team/stops/H1qu103a", "https://tec.openplanner.team/stops/H1qu116b"], ["https://tec.openplanner.team/stops/LAo170-2", "https://tec.openplanner.team/stops/LTPlegr1"], ["https://tec.openplanner.team/stops/LHMsipp1", "https://tec.openplanner.team/stops/LPbec--2"], ["https://tec.openplanner.team/stops/LAMgare2", "https://tec.openplanner.team/stops/LAMgreg1"], ["https://tec.openplanner.team/stops/Cacgare1", "https://tec.openplanner.team/stops/NC44aeb"], ["https://tec.openplanner.team/stops/N507alc", "https://tec.openplanner.team/stops/N507ald"], ["https://tec.openplanner.team/stops/N538akb", "https://tec.openplanner.team/stops/N538arb"], ["https://tec.openplanner.team/stops/LROhael2", "https://tec.openplanner.team/stops/LWaruth2"], ["https://tec.openplanner.team/stops/Ljubord2", "https://tec.openplanner.team/stops/Ljubrec3"], ["https://tec.openplanner.team/stops/H1sy137c", "https://tec.openplanner.team/stops/H1sy147a"], ["https://tec.openplanner.team/stops/LHcgare2", "https://tec.openplanner.team/stops/LSZgare2"], ["https://tec.openplanner.team/stops/H1gc122a", "https://tec.openplanner.team/stops/H1qy136a"], ["https://tec.openplanner.team/stops/Bmsaegl1", "https://tec.openplanner.team/stops/NB33afa"], ["https://tec.openplanner.team/stops/LLSba6-1", "https://tec.openplanner.team/stops/LLStrid3"], ["https://tec.openplanner.team/stops/X759aeb", "https://tec.openplanner.team/stops/X840abb"], ["https://tec.openplanner.team/stops/H1ju119a", "https://tec.openplanner.team/stops/H1ju120d"], ["https://tec.openplanner.team/stops/Cci4bra3", "https://tec.openplanner.team/stops/NC02apa"], ["https://tec.openplanner.team/stops/N150acb", "https://tec.openplanner.team/stops/N150aeb"], ["https://tec.openplanner.team/stops/Ljelexh1", "https://tec.openplanner.team/stops/Ljestat2"], ["https://tec.openplanner.team/stops/Clbchba1", "https://tec.openplanner.team/stops/Cthstre1"], ["https://tec.openplanner.team/stops/LTPbeau1", "https://tec.openplanner.team/stops/X777aab"], ["https://tec.openplanner.team/stops/Lhrmemo1", "https://tec.openplanner.team/stops/Lhrspi-2"], ["https://tec.openplanner.team/stops/LsTgren1", "https://tec.openplanner.team/stops/LwPdorf1"], ["https://tec.openplanner.team/stops/N506akb", "https://tec.openplanner.team/stops/N506bvb"], ["https://tec.openplanner.team/stops/N248aeb", "https://tec.openplanner.team/stops/N340aga"], ["https://tec.openplanner.team/stops/H4ve135a", "https://tec.openplanner.team/stops/H4ve140b"], ["https://tec.openplanner.team/stops/X659adb", "https://tec.openplanner.team/stops/X659aeb"], ["https://tec.openplanner.team/stops/N311aga", "https://tec.openplanner.team/stops/N312abb"], ["https://tec.openplanner.team/stops/LBUchpl1", "https://tec.openplanner.team/stops/LBUchpl2"], ["https://tec.openplanner.team/stops/LTIdonn2", "https://tec.openplanner.team/stops/LTIdumo1"], ["https://tec.openplanner.team/stops/X750aja", "https://tec.openplanner.team/stops/X750aka"], ["https://tec.openplanner.team/stops/H4au100b", "https://tec.openplanner.team/stops/H4bq102a"], ["https://tec.openplanner.team/stops/Ltibord2", "https://tec.openplanner.team/stops/Lticoq-1"], ["https://tec.openplanner.team/stops/X750aea", "https://tec.openplanner.team/stops/X750bmb"], ["https://tec.openplanner.team/stops/X804aia", "https://tec.openplanner.team/stops/X804ayb"], ["https://tec.openplanner.team/stops/Blsmbfe2", "https://tec.openplanner.team/stops/Bneervc1"], ["https://tec.openplanner.team/stops/LHHroua1", "https://tec.openplanner.team/stops/LSGmall1"], ["https://tec.openplanner.team/stops/Lglvand2", "https://tec.openplanner.team/stops/Llgchau2"], ["https://tec.openplanner.team/stops/X801acb", "https://tec.openplanner.team/stops/X801adb"], ["https://tec.openplanner.team/stops/Bquepla2", "https://tec.openplanner.team/stops/Bquesta1"], ["https://tec.openplanner.team/stops/Cmaduna1", "https://tec.openplanner.team/stops/Cmmptno1"], ["https://tec.openplanner.team/stops/H1mb137a", "https://tec.openplanner.team/stops/H1mb138a"], ["https://tec.openplanner.team/stops/X637ada", "https://tec.openplanner.team/stops/X637ala"], ["https://tec.openplanner.team/stops/Bosqcim1", "https://tec.openplanner.team/stops/Bvirduj2"], ["https://tec.openplanner.team/stops/N534arb", "https://tec.openplanner.team/stops/N534bfb"], ["https://tec.openplanner.team/stops/N874aaa", "https://tec.openplanner.team/stops/N894aab"], ["https://tec.openplanner.team/stops/LTPec--1", "https://tec.openplanner.team/stops/LTPplco2"], ["https://tec.openplanner.team/stops/N501gca", "https://tec.openplanner.team/stops/N501lkb"], ["https://tec.openplanner.team/stops/Bvilpar1", "https://tec.openplanner.team/stops/Bvilvil4"], ["https://tec.openplanner.team/stops/H3bi116a", "https://tec.openplanner.team/stops/H3bi116b"], ["https://tec.openplanner.team/stops/H1sb147b", "https://tec.openplanner.team/stops/H1sb149a"], ["https://tec.openplanner.team/stops/H4by115d", "https://tec.openplanner.team/stops/H4by117b"], ["https://tec.openplanner.team/stops/LHUetie*", "https://tec.openplanner.team/stops/LStroch2"], ["https://tec.openplanner.team/stops/Bsoihci2", "https://tec.openplanner.team/stops/H2na135b"], ["https://tec.openplanner.team/stops/LBOec--2", "https://tec.openplanner.team/stops/LBWbatt2"], ["https://tec.openplanner.team/stops/X601cia", "https://tec.openplanner.team/stops/X662aca"], ["https://tec.openplanner.team/stops/H2lc169a", "https://tec.openplanner.team/stops/H2lc172a"], ["https://tec.openplanner.team/stops/N203acb", "https://tec.openplanner.team/stops/N562ayb"], ["https://tec.openplanner.team/stops/N235abb", "https://tec.openplanner.team/stops/N235ada"], ["https://tec.openplanner.team/stops/Llgnaes1", "https://tec.openplanner.team/stops/Llgnani1"], ["https://tec.openplanner.team/stops/LlA43--2", "https://tec.openplanner.team/stops/LrUlasc1"], ["https://tec.openplanner.team/stops/Llgcour2", "https://tec.openplanner.team/stops/Llgdouf1"], ["https://tec.openplanner.team/stops/N352abb", "https://tec.openplanner.team/stops/N352ajb"], ["https://tec.openplanner.team/stops/Bwatcli2", "https://tec.openplanner.team/stops/Bwatcpl1"], ["https://tec.openplanner.team/stops/Ccugail2", "https://tec.openplanner.team/stops/Ccupres2"], ["https://tec.openplanner.team/stops/Llgcbat2", "https://tec.openplanner.team/stops/Llgstev1"], ["https://tec.openplanner.team/stops/LAyheid2", "https://tec.openplanner.team/stops/Lmapomm1"], ["https://tec.openplanner.team/stops/Lhrpepi1", "https://tec.openplanner.team/stops/Lhrpepi2"], ["https://tec.openplanner.team/stops/H4am101b", "https://tec.openplanner.team/stops/H4rs117b"], ["https://tec.openplanner.team/stops/X782aaa", "https://tec.openplanner.team/stops/X782aba"], ["https://tec.openplanner.team/stops/X601ata", "https://tec.openplanner.team/stops/X601atb"], ["https://tec.openplanner.team/stops/N135aub", "https://tec.openplanner.team/stops/N135ava"], ["https://tec.openplanner.team/stops/Bgdhbvu2", "https://tec.openplanner.team/stops/Bwaak101"], ["https://tec.openplanner.team/stops/LWecarr2", "https://tec.openplanner.team/stops/LWelogi2"], ["https://tec.openplanner.team/stops/N512ala", "https://tec.openplanner.team/stops/N512ava"], ["https://tec.openplanner.team/stops/Crsmonu2", "https://tec.openplanner.team/stops/Crswaut1"], ["https://tec.openplanner.team/stops/Lbhhomv1", "https://tec.openplanner.team/stops/Lbhsion1"], ["https://tec.openplanner.team/stops/LkEhaag2", "https://tec.openplanner.team/stops/LMspont1"], ["https://tec.openplanner.team/stops/N117bca", "https://tec.openplanner.team/stops/N117bcc"], ["https://tec.openplanner.team/stops/N120abb", "https://tec.openplanner.team/stops/N120aea"], ["https://tec.openplanner.team/stops/N521aba", "https://tec.openplanner.team/stops/N521aqb"], ["https://tec.openplanner.team/stops/LTgwarf1", "https://tec.openplanner.team/stops/LTgwarf2"], ["https://tec.openplanner.team/stops/LTPcamp1", "https://tec.openplanner.team/stops/LTPhenr1"], ["https://tec.openplanner.team/stops/X901bia", "https://tec.openplanner.team/stops/X901bja"], ["https://tec.openplanner.team/stops/Blkbbeu1", "https://tec.openplanner.team/stops/Bucceng2"], ["https://tec.openplanner.team/stops/H4ty273c", "https://tec.openplanner.team/stops/H4ty333b"], ["https://tec.openplanner.team/stops/N514amb", "https://tec.openplanner.team/stops/N515akb"], ["https://tec.openplanner.team/stops/H5at108b", "https://tec.openplanner.team/stops/H5at120a"], ["https://tec.openplanner.team/stops/N501dib", "https://tec.openplanner.team/stops/N501jtb"], ["https://tec.openplanner.team/stops/N234aaa", "https://tec.openplanner.team/stops/N234aab"], ["https://tec.openplanner.team/stops/N537aka", "https://tec.openplanner.team/stops/N556adb"], ["https://tec.openplanner.team/stops/N501kea", "https://tec.openplanner.team/stops/N501kpa"], ["https://tec.openplanner.team/stops/H1gg146a", "https://tec.openplanner.team/stops/H1ry134a"], ["https://tec.openplanner.team/stops/LCTcret1", "https://tec.openplanner.team/stops/LGmhumb1"], ["https://tec.openplanner.team/stops/LPbover2", "https://tec.openplanner.team/stops/LSIgera1"], ["https://tec.openplanner.team/stops/N501coa", "https://tec.openplanner.team/stops/N501cta"], ["https://tec.openplanner.team/stops/X917aga", "https://tec.openplanner.team/stops/X917agb"], ["https://tec.openplanner.team/stops/LkEcoop1", "https://tec.openplanner.team/stops/LkEspor1"], ["https://tec.openplanner.team/stops/X641aqa", "https://tec.openplanner.team/stops/X641aqb"], ["https://tec.openplanner.team/stops/X608acb", "https://tec.openplanner.team/stops/X608aja"], ["https://tec.openplanner.team/stops/N360aea", "https://tec.openplanner.team/stops/N894aea"], ["https://tec.openplanner.team/stops/Cpccpas1", "https://tec.openplanner.team/stops/Cpclibe2"], ["https://tec.openplanner.team/stops/N236afa", "https://tec.openplanner.team/stops/N254ada"], ["https://tec.openplanner.team/stops/LHAstal1", "https://tec.openplanner.team/stops/LHAstal2"], ["https://tec.openplanner.team/stops/H4ro157b", "https://tec.openplanner.team/stops/H5pe153b"], ["https://tec.openplanner.team/stops/Cgzhour2", "https://tec.openplanner.team/stops/Clrrhau1"], ["https://tec.openplanner.team/stops/Cthbeff1", "https://tec.openplanner.team/stops/Cthoues2"], ["https://tec.openplanner.team/stops/Cchhopi4", "https://tec.openplanner.team/stops/Cmtpire1"], ["https://tec.openplanner.team/stops/LEBmoul1", "https://tec.openplanner.team/stops/LWOwonc2"], ["https://tec.openplanner.team/stops/X739acb", "https://tec.openplanner.team/stops/X739ada"], ["https://tec.openplanner.team/stops/LBEairp1", "https://tec.openplanner.team/stops/LBEcomm1"], ["https://tec.openplanner.team/stops/Lcceclu2", "https://tec.openplanner.team/stops/LRAcouv1"], ["https://tec.openplanner.team/stops/H1og130b", "https://tec.openplanner.team/stops/H1og132b"], ["https://tec.openplanner.team/stops/X983aaa", "https://tec.openplanner.team/stops/X983aab"], ["https://tec.openplanner.team/stops/H1do127a", "https://tec.openplanner.team/stops/H1do127b"], ["https://tec.openplanner.team/stops/Livgera1", "https://tec.openplanner.team/stops/Livgera2"], ["https://tec.openplanner.team/stops/Bwavcen1", "https://tec.openplanner.team/stops/Bwavpao1"], ["https://tec.openplanner.team/stops/X662ara", "https://tec.openplanner.team/stops/X662arb"], ["https://tec.openplanner.team/stops/Bwavnam2", "https://tec.openplanner.team/stops/Bwavnam3"], ["https://tec.openplanner.team/stops/Lghmaha1", "https://tec.openplanner.team/stops/Lghpier1"], ["https://tec.openplanner.team/stops/N501aob", "https://tec.openplanner.team/stops/N501fjb"], ["https://tec.openplanner.team/stops/Csepost1", "https://tec.openplanner.team/stops/Cvtchap2"], ["https://tec.openplanner.team/stops/N232baa", "https://tec.openplanner.team/stops/N232bab"], ["https://tec.openplanner.team/stops/Lagarde1", "https://tec.openplanner.team/stops/Lgrgoff2"], ["https://tec.openplanner.team/stops/H4fr389a", "https://tec.openplanner.team/stops/H4ka393a"], ["https://tec.openplanner.team/stops/LLagert*", "https://tec.openplanner.team/stops/LWAbett2"], ["https://tec.openplanner.team/stops/Cwfdupo1", "https://tec.openplanner.team/stops/Cwfmonu2"], ["https://tec.openplanner.team/stops/LLUgend2", "https://tec.openplanner.team/stops/LLUpier2"], ["https://tec.openplanner.team/stops/N528aqb", "https://tec.openplanner.team/stops/N528asb"], ["https://tec.openplanner.team/stops/N201agb", "https://tec.openplanner.team/stops/N201awa"], ["https://tec.openplanner.team/stops/LBkwind1", "https://tec.openplanner.team/stops/LWEmito2"], ["https://tec.openplanner.team/stops/Louetan2", "https://tec.openplanner.team/stops/Louvand2"], ["https://tec.openplanner.team/stops/Cvtgsar3", "https://tec.openplanner.team/stops/Cvtvail2"], ["https://tec.openplanner.team/stops/LAvambr1", "https://tec.openplanner.team/stops/LAvcani1"], ["https://tec.openplanner.team/stops/LRCviad2", "https://tec.openplanner.team/stops/LSTamer2"], ["https://tec.openplanner.team/stops/Lmlscie1", "https://tec.openplanner.team/stops/Lmlscie2"], ["https://tec.openplanner.team/stops/LAvatri2", "https://tec.openplanner.team/stops/NL37ala"], ["https://tec.openplanner.team/stops/N141adb", "https://tec.openplanner.team/stops/N141aeb"], ["https://tec.openplanner.team/stops/Ceqcfra2", "https://tec.openplanner.team/stops/H1er113b"], ["https://tec.openplanner.team/stops/Bbstchv1", "https://tec.openplanner.team/stops/Bvlvpco1"], ["https://tec.openplanner.team/stops/X614axb", "https://tec.openplanner.team/stops/X614ayb"], ["https://tec.openplanner.team/stops/LBRtrag2", "https://tec.openplanner.team/stops/LLTeg--1"], ["https://tec.openplanner.team/stops/Cjucar02", "https://tec.openplanner.team/stops/CMleop2"], ["https://tec.openplanner.team/stops/Bitrpri2", "https://tec.openplanner.team/stops/Bosqpqu1"], ["https://tec.openplanner.team/stops/N543ajb", "https://tec.openplanner.team/stops/N543awg"], ["https://tec.openplanner.team/stops/LJUxhen2", "https://tec.openplanner.team/stops/Llaflot2"], ["https://tec.openplanner.team/stops/Cjucpui2", "https://tec.openplanner.team/stops/Cjupuis1"], ["https://tec.openplanner.team/stops/Lbhhomv1", "https://tec.openplanner.team/stops/Lvcdumo2"], ["https://tec.openplanner.team/stops/H2hp116b", "https://tec.openplanner.team/stops/H2ll179a"], ["https://tec.openplanner.team/stops/Bmrleco4", "https://tec.openplanner.team/stops/Bmrlegl1"], ["https://tec.openplanner.team/stops/H1ev112a", "https://tec.openplanner.team/stops/H1ev112b"], ["https://tec.openplanner.team/stops/Bgembsg1", "https://tec.openplanner.team/stops/Bgemfbo2"], ["https://tec.openplanner.team/stops/X774aeb", "https://tec.openplanner.team/stops/X774aec"], ["https://tec.openplanner.team/stops/LMAcime1", "https://tec.openplanner.team/stops/LMAcime2"], ["https://tec.openplanner.team/stops/LvAkirc3", "https://tec.openplanner.team/stops/LvAkirc4"], ["https://tec.openplanner.team/stops/LHCbois1", "https://tec.openplanner.team/stops/LHCbois2"], ["https://tec.openplanner.team/stops/Cgosoux2", "https://tec.openplanner.team/stops/Cjuaero2"], ["https://tec.openplanner.team/stops/X650aca", "https://tec.openplanner.team/stops/X650ahb"], ["https://tec.openplanner.team/stops/X743adb", "https://tec.openplanner.team/stops/X743agb"], ["https://tec.openplanner.team/stops/N512aqb", "https://tec.openplanner.team/stops/N512atc"], ["https://tec.openplanner.team/stops/X733aca", "https://tec.openplanner.team/stops/X733aeb"], ["https://tec.openplanner.team/stops/Ccucora2", "https://tec.openplanner.team/stops/Ccucorb3"], ["https://tec.openplanner.team/stops/H1ol137b", "https://tec.openplanner.team/stops/H1ol145a"], ["https://tec.openplanner.team/stops/Cfaheni1", "https://tec.openplanner.team/stops/Cpl4bra3"], ["https://tec.openplanner.team/stops/Clodrio2", "https://tec.openplanner.team/stops/Clomart1"], ["https://tec.openplanner.team/stops/X361aca", "https://tec.openplanner.team/stops/X362adb"], ["https://tec.openplanner.team/stops/Cgzrust1", "https://tec.openplanner.team/stops/Cgzrust2"], ["https://tec.openplanner.team/stops/LeYwess1", "https://tec.openplanner.team/stops/LlCauto2"], ["https://tec.openplanner.team/stops/H4mo147a", "https://tec.openplanner.team/stops/H4mo180a"], ["https://tec.openplanner.team/stops/N166acb", "https://tec.openplanner.team/stops/N167aea"], ["https://tec.openplanner.team/stops/Bnivrsa2", "https://tec.openplanner.team/stops/Bnivsba2"], ["https://tec.openplanner.team/stops/H1ci102a", "https://tec.openplanner.team/stops/H1cu113a"], ["https://tec.openplanner.team/stops/Lfhgara1", "https://tec.openplanner.team/stops/Lpomart2"], ["https://tec.openplanner.team/stops/N528aca", "https://tec.openplanner.team/stops/N528awa"], ["https://tec.openplanner.team/stops/N104ada", "https://tec.openplanner.team/stops/N104adb"], ["https://tec.openplanner.team/stops/X602aka", "https://tec.openplanner.team/stops/X653aca"], ["https://tec.openplanner.team/stops/X654aea", "https://tec.openplanner.team/stops/X654akb"], ["https://tec.openplanner.team/stops/Bsomtce1", "https://tec.openplanner.team/stops/Btgrdoc1"], ["https://tec.openplanner.team/stops/LSdbote2", "https://tec.openplanner.team/stops/LSdsar51"], ["https://tec.openplanner.team/stops/LLTfall2", "https://tec.openplanner.team/stops/LLThosd2"], ["https://tec.openplanner.team/stops/Cmecomb1", "https://tec.openplanner.team/stops/Cmesncv1"], ["https://tec.openplanner.team/stops/LWeatel1", "https://tec.openplanner.team/stops/LWecarr2"], ["https://tec.openplanner.team/stops/X954adb", "https://tec.openplanner.team/stops/X955agb"], ["https://tec.openplanner.team/stops/X629aba", "https://tec.openplanner.team/stops/X636arb"], ["https://tec.openplanner.team/stops/LROhaie1", "https://tec.openplanner.team/stops/LSoeg--1"], ["https://tec.openplanner.team/stops/Cptegli2", "https://tec.openplanner.team/stops/Cptplac5"], ["https://tec.openplanner.team/stops/N501bcb", "https://tec.openplanner.team/stops/N501mcc"], ["https://tec.openplanner.team/stops/Cmtcapi1", "https://tec.openplanner.team/stops/Cmtgrim1"], ["https://tec.openplanner.team/stops/LWamass1", "https://tec.openplanner.team/stops/LWastei2"], ["https://tec.openplanner.team/stops/LCn4---2", "https://tec.openplanner.team/stops/LSEcent1"], ["https://tec.openplanner.team/stops/X752acb", "https://tec.openplanner.team/stops/X757aca"], ["https://tec.openplanner.team/stops/H2sb232a", "https://tec.openplanner.team/stops/H3th135e"], ["https://tec.openplanner.team/stops/Brsgsan1", "https://tec.openplanner.team/stops/Buccptj2"], ["https://tec.openplanner.team/stops/Llgbry-1", "https://tec.openplanner.team/stops/Llgvolg2"], ["https://tec.openplanner.team/stops/N312abb", "https://tec.openplanner.team/stops/N312acb"], ["https://tec.openplanner.team/stops/LLrhest1", "https://tec.openplanner.team/stops/LLrlour2"], ["https://tec.openplanner.team/stops/LCsbors2", "https://tec.openplanner.team/stops/LCscarr3"], ["https://tec.openplanner.team/stops/H4ve135b", "https://tec.openplanner.team/stops/H4ve137b"], ["https://tec.openplanner.team/stops/X636aka", "https://tec.openplanner.team/stops/X636aza"], ["https://tec.openplanner.team/stops/Cgorobe2", "https://tec.openplanner.team/stops/Ctmmonu1"], ["https://tec.openplanner.team/stops/Lflcle-4", "https://tec.openplanner.team/stops/Lflpaeu1"], ["https://tec.openplanner.team/stops/LAUnico1", "https://tec.openplanner.team/stops/LAUnico2"], ["https://tec.openplanner.team/stops/Ccocoup2", "https://tec.openplanner.team/stops/Crowilb2"], ["https://tec.openplanner.team/stops/LCxcouv2", "https://tec.openplanner.team/stops/LCxross2"], ["https://tec.openplanner.team/stops/X609aja", "https://tec.openplanner.team/stops/X609akb"], ["https://tec.openplanner.team/stops/X917ahb", "https://tec.openplanner.team/stops/X922afa"], ["https://tec.openplanner.team/stops/Lmopeup2", "https://tec.openplanner.team/stops/Lmopota2"], ["https://tec.openplanner.team/stops/LAYcher2", "https://tec.openplanner.team/stops/LFLgara2"], ["https://tec.openplanner.team/stops/X398aab", "https://tec.openplanner.team/stops/X999aqb"], ["https://tec.openplanner.team/stops/Bgrhche1", "https://tec.openplanner.team/stops/N519agb"], ["https://tec.openplanner.team/stops/LrDneun2", "https://tec.openplanner.team/stops/LrDzoll3"], ["https://tec.openplanner.team/stops/Bblaaca1", "https://tec.openplanner.team/stops/Bblatet1"], ["https://tec.openplanner.team/stops/X723aaa", "https://tec.openplanner.team/stops/X775alb"], ["https://tec.openplanner.team/stops/X662aga", "https://tec.openplanner.team/stops/X662anb"], ["https://tec.openplanner.team/stops/Cculpre1", "https://tec.openplanner.team/stops/Cculpre2"], ["https://tec.openplanner.team/stops/H2re175a", "https://tec.openplanner.team/stops/H2re175b"], ["https://tec.openplanner.team/stops/Cmlchan1", "https://tec.openplanner.team/stops/Cmltomb1"], ["https://tec.openplanner.team/stops/N229arb", "https://tec.openplanner.team/stops/N230abb"], ["https://tec.openplanner.team/stops/LPLcent2", "https://tec.openplanner.team/stops/LPLecco2"], ["https://tec.openplanner.team/stops/H1sg148a", "https://tec.openplanner.team/stops/H1sg148b"], ["https://tec.openplanner.team/stops/LVNbale2", "https://tec.openplanner.team/stops/LVNwanz2"], ["https://tec.openplanner.team/stops/Cctpass2", "https://tec.openplanner.team/stops/Cctptsa1"], ["https://tec.openplanner.team/stops/H1hm173b", "https://tec.openplanner.team/stops/H1hm175b"], ["https://tec.openplanner.team/stops/Lrcchpl2", "https://tec.openplanner.team/stops/Lrccime3"], ["https://tec.openplanner.team/stops/X953aea", "https://tec.openplanner.team/stops/X953aeb"], ["https://tec.openplanner.team/stops/H4mo153d", "https://tec.openplanner.team/stops/H4mo163a"], ["https://tec.openplanner.team/stops/Bwatfva2", "https://tec.openplanner.team/stops/Bwatgla1"], ["https://tec.openplanner.team/stops/H2tr253a", "https://tec.openplanner.team/stops/H2tr253b"], ["https://tec.openplanner.team/stops/Lbhgare2", "https://tec.openplanner.team/stops/LMFmerl1"], ["https://tec.openplanner.team/stops/Ljewale4", "https://tec.openplanner.team/stops/Ljexhav2"], ["https://tec.openplanner.team/stops/Crsaise4", "https://tec.openplanner.team/stops/Crswaut1"], ["https://tec.openplanner.team/stops/N141abb", "https://tec.openplanner.team/stops/N141apb"], ["https://tec.openplanner.team/stops/LESgare*", "https://tec.openplanner.team/stops/LESpaix1"], ["https://tec.openplanner.team/stops/Llgcock2", "https://tec.openplanner.team/stops/Llgcroi4"], ["https://tec.openplanner.team/stops/LBIairp2", "https://tec.openplanner.team/stops/Lghlogi2"], ["https://tec.openplanner.team/stops/Canecbr2", "https://tec.openplanner.team/stops/Canegbr2"], ["https://tec.openplanner.team/stops/Cgocolo1", "https://tec.openplanner.team/stops/Cgorosa3"], ["https://tec.openplanner.team/stops/LWAchpg1", "https://tec.openplanner.team/stops/LWAcost2"], ["https://tec.openplanner.team/stops/H4lz117a", "https://tec.openplanner.team/stops/H4lz128b"], ["https://tec.openplanner.team/stops/H5fl101a", "https://tec.openplanner.team/stops/H5fl102b"], ["https://tec.openplanner.team/stops/X908ana", "https://tec.openplanner.team/stops/X955aca"], ["https://tec.openplanner.team/stops/H5qu147a", "https://tec.openplanner.team/stops/H5qu150a"], ["https://tec.openplanner.team/stops/LaAronh2", "https://tec.openplanner.team/stops/LhGscha*"], ["https://tec.openplanner.team/stops/X758afa", "https://tec.openplanner.team/stops/X758aga"], ["https://tec.openplanner.team/stops/Cfrcoop3", "https://tec.openplanner.team/stops/Cfrcoop4"], ["https://tec.openplanner.team/stops/Csocime1", "https://tec.openplanner.team/stops/Ctrepin1"], ["https://tec.openplanner.team/stops/Bborbif2", "https://tec.openplanner.team/stops/Bmoncab2"], ["https://tec.openplanner.team/stops/Lfhcime2", "https://tec.openplanner.team/stops/Lmlcite*"], ["https://tec.openplanner.team/stops/X607akb", "https://tec.openplanner.team/stops/X620agb"], ["https://tec.openplanner.team/stops/H1je366a", "https://tec.openplanner.team/stops/H1je368a"], ["https://tec.openplanner.team/stops/X879aqa", "https://tec.openplanner.team/stops/X879aqb"], ["https://tec.openplanner.team/stops/Bwbfckr1", "https://tec.openplanner.team/stops/Bwbfgar2"], ["https://tec.openplanner.team/stops/N551aeb", "https://tec.openplanner.team/stops/N551aqb"], ["https://tec.openplanner.team/stops/LHEbeau1", "https://tec.openplanner.team/stops/LHEchex2"], ["https://tec.openplanner.team/stops/Cchparc5", "https://tec.openplanner.team/stops/CMparc1"], ["https://tec.openplanner.team/stops/LACeg--2", "https://tec.openplanner.team/stops/LACwass2"], ["https://tec.openplanner.team/stops/N151aba", "https://tec.openplanner.team/stops/N152abe"], ["https://tec.openplanner.team/stops/N337aha", "https://tec.openplanner.team/stops/N339aab"], ["https://tec.openplanner.team/stops/Bbchcab2", "https://tec.openplanner.team/stops/Bbchrra2"], ["https://tec.openplanner.team/stops/N528ama", "https://tec.openplanner.team/stops/N528amb"], ["https://tec.openplanner.team/stops/Lceleje1", "https://tec.openplanner.team/stops/Lceleje2"], ["https://tec.openplanner.team/stops/H1bu136a", "https://tec.openplanner.team/stops/H1vb142a"], ["https://tec.openplanner.team/stops/H1ca106c", "https://tec.openplanner.team/stops/H1th183a"], ["https://tec.openplanner.team/stops/H1br128a", "https://tec.openplanner.team/stops/H1ev116b"], ["https://tec.openplanner.team/stops/Bsmgmas2", "https://tec.openplanner.team/stops/Btanpla3"], ["https://tec.openplanner.team/stops/X660ada", "https://tec.openplanner.team/stops/X660ajb"], ["https://tec.openplanner.team/stops/X731aga", "https://tec.openplanner.team/stops/X731aha"], ["https://tec.openplanner.team/stops/X615ava", "https://tec.openplanner.team/stops/X615bga"], ["https://tec.openplanner.team/stops/H4ch113b", "https://tec.openplanner.team/stops/H4cl113b"], ["https://tec.openplanner.team/stops/LSZmonu4", "https://tec.openplanner.team/stops/LTgcime2"], ["https://tec.openplanner.team/stops/H4mv190a", "https://tec.openplanner.team/stops/H4mv194b"], ["https://tec.openplanner.team/stops/LLWchat1", "https://tec.openplanner.team/stops/LLWpier1"], ["https://tec.openplanner.team/stops/NL76aka", "https://tec.openplanner.team/stops/NL77aha"], ["https://tec.openplanner.team/stops/X733aab", "https://tec.openplanner.team/stops/X733abb"], ["https://tec.openplanner.team/stops/X741aga", "https://tec.openplanner.team/stops/X741apa"], ["https://tec.openplanner.team/stops/LBJlieg2", "https://tec.openplanner.team/stops/LBrneli1"], ["https://tec.openplanner.team/stops/Clvimtr3", "https://tec.openplanner.team/stops/Clvimtr4"], ["https://tec.openplanner.team/stops/X359aja", "https://tec.openplanner.team/stops/X359amb"], ["https://tec.openplanner.team/stops/LmTkirc1", "https://tec.openplanner.team/stops/LmTreic1"], ["https://tec.openplanner.team/stops/N313aba", "https://tec.openplanner.team/stops/N350ada"], ["https://tec.openplanner.team/stops/X622aca", "https://tec.openplanner.team/stops/X622acb"], ["https://tec.openplanner.team/stops/LWDchab1", "https://tec.openplanner.team/stops/LWDcime2"], ["https://tec.openplanner.team/stops/N244aab", "https://tec.openplanner.team/stops/N244afb"], ["https://tec.openplanner.team/stops/LCljose2", "https://tec.openplanner.team/stops/LThelse1"], ["https://tec.openplanner.team/stops/LRRchea2", "https://tec.openplanner.team/stops/LRRchea6"], ["https://tec.openplanner.team/stops/LAMgreg1", "https://tec.openplanner.team/stops/LAMjaur2"], ["https://tec.openplanner.team/stops/H4bc104b", "https://tec.openplanner.team/stops/H5bl116b"], ["https://tec.openplanner.team/stops/X773aea", "https://tec.openplanner.team/stops/X773afb"], ["https://tec.openplanner.team/stops/X922ada", "https://tec.openplanner.team/stops/X922aea"], ["https://tec.openplanner.team/stops/X614aha", "https://tec.openplanner.team/stops/X614atb"], ["https://tec.openplanner.team/stops/Bbrycar1", "https://tec.openplanner.team/stops/N584aza"], ["https://tec.openplanner.team/stops/Cvvmonu2", "https://tec.openplanner.team/stops/Cvvpotv2"], ["https://tec.openplanner.team/stops/LPtrefa2", "https://tec.openplanner.team/stops/LrEgend2"], ["https://tec.openplanner.team/stops/LdEschw1", "https://tec.openplanner.team/stops/LdEschw2"], ["https://tec.openplanner.team/stops/Cwgrans2", "https://tec.openplanner.team/stops/Cwgtill2"], ["https://tec.openplanner.team/stops/N571afa", "https://tec.openplanner.team/stops/N571afb"], ["https://tec.openplanner.team/stops/N161abc", "https://tec.openplanner.team/stops/N161afa"], ["https://tec.openplanner.team/stops/H4tm140b", "https://tec.openplanner.team/stops/H4to139a"], ["https://tec.openplanner.team/stops/LHarenn1", "https://tec.openplanner.team/stops/LOurena1"], ["https://tec.openplanner.team/stops/X839ada", "https://tec.openplanner.team/stops/X839adb"], ["https://tec.openplanner.team/stops/Bsaucre1", "https://tec.openplanner.team/stops/N541aaa"], ["https://tec.openplanner.team/stops/Bettcha2", "https://tec.openplanner.team/stops/Bettcha3"], ["https://tec.openplanner.team/stops/Loucham1", "https://tec.openplanner.team/stops/Loucham2"], ["https://tec.openplanner.team/stops/N533ada", "https://tec.openplanner.team/stops/N568acb"], ["https://tec.openplanner.team/stops/X626aga", "https://tec.openplanner.team/stops/X626agb"], ["https://tec.openplanner.team/stops/N137adb", "https://tec.openplanner.team/stops/N155aec"], ["https://tec.openplanner.team/stops/X839aca", "https://tec.openplanner.team/stops/X839acb"], ["https://tec.openplanner.team/stops/Cmmcime1", "https://tec.openplanner.team/stops/Cmmp2052"], ["https://tec.openplanner.team/stops/X982baa", "https://tec.openplanner.team/stops/X982bab"], ["https://tec.openplanner.team/stops/X801ata", "https://tec.openplanner.team/stops/X801cib"], ["https://tec.openplanner.team/stops/H2ec106a", "https://tec.openplanner.team/stops/H2me113b"], ["https://tec.openplanner.team/stops/Cgocat2", "https://tec.openplanner.team/stops/Cgoetun5"], ["https://tec.openplanner.team/stops/Cgoloca1", "https://tec.openplanner.team/stops/Cgosoux1"], ["https://tec.openplanner.team/stops/Clusncb4", "https://tec.openplanner.team/stops/H2lu100d"], ["https://tec.openplanner.team/stops/Lcapisc2", "https://tec.openplanner.team/stops/Lvcchau1"], ["https://tec.openplanner.team/stops/N351ala", "https://tec.openplanner.team/stops/X351aob"], ["https://tec.openplanner.team/stops/H4re226a", "https://tec.openplanner.team/stops/H5la177b"], ["https://tec.openplanner.team/stops/LLzcruc2", "https://tec.openplanner.team/stops/LPTeg--2"], ["https://tec.openplanner.team/stops/X896afa", "https://tec.openplanner.team/stops/X896aga"], ["https://tec.openplanner.team/stops/LMalarg4", "https://tec.openplanner.team/stops/LMaslav4"], ["https://tec.openplanner.team/stops/H1ro135b", "https://tec.openplanner.team/stops/H1ro138b"], ["https://tec.openplanner.team/stops/N535acb", "https://tec.openplanner.team/stops/N535acc"], ["https://tec.openplanner.team/stops/Bmarcat2", "https://tec.openplanner.team/stops/Bwagdeb2"], ["https://tec.openplanner.team/stops/X985aab", "https://tec.openplanner.team/stops/X985abb"], ["https://tec.openplanner.team/stops/Bgnteco1", "https://tec.openplanner.team/stops/Bsgeegl2"], ["https://tec.openplanner.team/stops/LChvill*", "https://tec.openplanner.team/stops/LChxhav1"], ["https://tec.openplanner.team/stops/H1ho128a", "https://tec.openplanner.team/stops/H1ho130a"], ["https://tec.openplanner.team/stops/LCpeg-*", "https://tec.openplanner.team/stops/LCpvill2"], ["https://tec.openplanner.team/stops/H4ty356a", "https://tec.openplanner.team/stops/H4ty356b"], ["https://tec.openplanner.team/stops/N501ama", "https://tec.openplanner.team/stops/N501amb"], ["https://tec.openplanner.team/stops/Cmastfi1", "https://tec.openplanner.team/stops/Cmastfi2"], ["https://tec.openplanner.team/stops/N127aja", "https://tec.openplanner.team/stops/N127bja"], ["https://tec.openplanner.team/stops/H1gy112b", "https://tec.openplanner.team/stops/H1gy113b"], ["https://tec.openplanner.team/stops/N501lgb", "https://tec.openplanner.team/stops/N501lmb"], ["https://tec.openplanner.team/stops/LSUhage2", "https://tec.openplanner.team/stops/LSUvill1"], ["https://tec.openplanner.team/stops/Bcsebde1", "https://tec.openplanner.team/stops/Bcsepes1"], ["https://tec.openplanner.team/stops/Ladjaur2", "https://tec.openplanner.team/stops/Ladthom1"], ["https://tec.openplanner.team/stops/X948aab", "https://tec.openplanner.team/stops/X948bba"], ["https://tec.openplanner.team/stops/N528adb", "https://tec.openplanner.team/stops/N528arb"], ["https://tec.openplanner.team/stops/Cmogrbu2", "https://tec.openplanner.team/stops/Cmoprov2"], ["https://tec.openplanner.team/stops/LENcroi2", "https://tec.openplanner.team/stops/LENpt--2"], ["https://tec.openplanner.team/stops/N506aoa", "https://tec.openplanner.team/stops/N506apa"], ["https://tec.openplanner.team/stops/X657aha", "https://tec.openplanner.team/stops/X657ahb"], ["https://tec.openplanner.team/stops/X742aaa", "https://tec.openplanner.team/stops/X742aba"], ["https://tec.openplanner.team/stops/Cflfaub1", "https://tec.openplanner.team/stops/Cflgazo1"], ["https://tec.openplanner.team/stops/H4lz121d", "https://tec.openplanner.team/stops/H4lz126a"], ["https://tec.openplanner.team/stops/Ctarpoi2", "https://tec.openplanner.team/stops/N543cha"], ["https://tec.openplanner.team/stops/Baudhde1", "https://tec.openplanner.team/stops/Bwbfeta2"], ["https://tec.openplanner.team/stops/X601ajb", "https://tec.openplanner.team/stops/X601ama"], ["https://tec.openplanner.team/stops/LPRbrou2", "https://tec.openplanner.team/stops/LPRpeti1"], ["https://tec.openplanner.team/stops/LSebott2", "https://tec.openplanner.team/stops/LSevitu2"], ["https://tec.openplanner.team/stops/Cjucar01", "https://tec.openplanner.team/stops/Cjuhopi1"], ["https://tec.openplanner.team/stops/NC14aca", "https://tec.openplanner.team/stops/NC14acb"], ["https://tec.openplanner.team/stops/LMazonn3", "https://tec.openplanner.team/stops/LMazonn4"], ["https://tec.openplanner.team/stops/LCRabbe2", "https://tec.openplanner.team/stops/LCRvert1"], ["https://tec.openplanner.team/stops/Bhancom1", "https://tec.openplanner.team/stops/Bhancom2"], ["https://tec.openplanner.team/stops/X811apb", "https://tec.openplanner.team/stops/X812bba"], ["https://tec.openplanner.team/stops/X818aia", "https://tec.openplanner.team/stops/X818aib"], ["https://tec.openplanner.team/stops/Bjanegl1", "https://tec.openplanner.team/stops/Bjanegl3"], ["https://tec.openplanner.team/stops/X911aea", "https://tec.openplanner.team/stops/X912aja"], ["https://tec.openplanner.team/stops/LBzec--1", "https://tec.openplanner.team/stops/LCelabi2"], ["https://tec.openplanner.team/stops/X715ada", "https://tec.openplanner.team/stops/X715alb"], ["https://tec.openplanner.team/stops/N533alb", "https://tec.openplanner.team/stops/N533aoa"], ["https://tec.openplanner.team/stops/LSkbo832", "https://tec.openplanner.team/stops/LSkmarq2"], ["https://tec.openplanner.team/stops/Bvxgeta1", "https://tec.openplanner.team/stops/Cgnquer2"], ["https://tec.openplanner.team/stops/H2se109a", "https://tec.openplanner.team/stops/H2se115a"], ["https://tec.openplanner.team/stops/H4ty347b", "https://tec.openplanner.team/stops/H4ty351b"], ["https://tec.openplanner.team/stops/LBlhaut2", "https://tec.openplanner.team/stops/LLUpier1"], ["https://tec.openplanner.team/stops/N562aca", "https://tec.openplanner.team/stops/N562ahb"], ["https://tec.openplanner.team/stops/Cpccoss2", "https://tec.openplanner.team/stops/Cpctunn1"], ["https://tec.openplanner.team/stops/Lhutann2", "https://tec.openplanner.team/stops/Lmneg--2"], ["https://tec.openplanner.team/stops/Bgrmpsn2", "https://tec.openplanner.team/stops/N522atb"], ["https://tec.openplanner.team/stops/Cmmjami3", "https://tec.openplanner.team/stops/Cmmjami4"], ["https://tec.openplanner.team/stops/LHTmc--1", "https://tec.openplanner.team/stops/LHTmc--2"], ["https://tec.openplanner.team/stops/H5pe127a", "https://tec.openplanner.team/stops/H5pe137a"], ["https://tec.openplanner.team/stops/LGEcons1", "https://tec.openplanner.team/stops/LGEpt--1"], ["https://tec.openplanner.team/stops/X717aha", "https://tec.openplanner.team/stops/X783aaa"], ["https://tec.openplanner.team/stops/H1fl142b", "https://tec.openplanner.team/stops/H1fr114a"], ["https://tec.openplanner.team/stops/LPAeg--2", "https://tec.openplanner.team/stops/LPAmc--2"], ["https://tec.openplanner.team/stops/H1gh160b", "https://tec.openplanner.team/stops/H1gh165c"], ["https://tec.openplanner.team/stops/LnErech1", "https://tec.openplanner.team/stops/LrEfeck1"], ["https://tec.openplanner.team/stops/Brsgm801", "https://tec.openplanner.team/stops/Bwatmch1"], ["https://tec.openplanner.team/stops/H1hv135a", "https://tec.openplanner.team/stops/H1hv135b"], ["https://tec.openplanner.team/stops/H2hp114b", "https://tec.openplanner.team/stops/H2hp118a"], ["https://tec.openplanner.team/stops/Cchbaza1", "https://tec.openplanner.team/stops/Cchvil21"], ["https://tec.openplanner.team/stops/H1fr109b", "https://tec.openplanner.team/stops/H1fr128b"], ["https://tec.openplanner.team/stops/H4ro154b", "https://tec.openplanner.team/stops/H4ro157a"], ["https://tec.openplanner.team/stops/X943aab", "https://tec.openplanner.team/stops/X943aha"], ["https://tec.openplanner.team/stops/H4te252b", "https://tec.openplanner.team/stops/H4te259a"], ["https://tec.openplanner.team/stops/X811aoa", "https://tec.openplanner.team/stops/X812bba"], ["https://tec.openplanner.team/stops/N229aca", "https://tec.openplanner.team/stops/N229aqa"], ["https://tec.openplanner.team/stops/H4pe124b", "https://tec.openplanner.team/stops/H4pe126a"], ["https://tec.openplanner.team/stops/X904aga", "https://tec.openplanner.team/stops/X943afa"], ["https://tec.openplanner.team/stops/N501hob", "https://tec.openplanner.team/stops/N501hqb"], ["https://tec.openplanner.team/stops/LlZbell1", "https://tec.openplanner.team/stops/LlZkirc2"], ["https://tec.openplanner.team/stops/Lsmgdry1", "https://tec.openplanner.team/stops/Lvereno1"], ["https://tec.openplanner.team/stops/N423aab", "https://tec.openplanner.team/stops/N423aeb"], ["https://tec.openplanner.team/stops/N141aha", "https://tec.openplanner.team/stops/N141ahb"], ["https://tec.openplanner.team/stops/N537aia", "https://tec.openplanner.team/stops/N537aib"], ["https://tec.openplanner.team/stops/H1hy144a", "https://tec.openplanner.team/stops/H1qy137b"], ["https://tec.openplanner.team/stops/Lflprev2", "https://tec.openplanner.team/stops/LMFmoul2"], ["https://tec.openplanner.team/stops/N351aka", "https://tec.openplanner.team/stops/N351avb"], ["https://tec.openplanner.team/stops/N550aga", "https://tec.openplanner.team/stops/N550akb"], ["https://tec.openplanner.team/stops/H4ne132b", "https://tec.openplanner.team/stops/H4ne137b"], ["https://tec.openplanner.team/stops/N229apa", "https://tec.openplanner.team/stops/N231aba"], ["https://tec.openplanner.team/stops/Btslcej2", "https://tec.openplanner.team/stops/Btslegl2"], ["https://tec.openplanner.team/stops/X756aab", "https://tec.openplanner.team/stops/X756aba"], ["https://tec.openplanner.team/stops/Bgzdgst2", "https://tec.openplanner.team/stops/Bgzdgth1"], ["https://tec.openplanner.team/stops/X948baa", "https://tec.openplanner.team/stops/X948bab"], ["https://tec.openplanner.team/stops/H4ob108a", "https://tec.openplanner.team/stops/H4rc234a"], ["https://tec.openplanner.team/stops/Llgfran2", "https://tec.openplanner.team/stops/Llgpara2"], ["https://tec.openplanner.team/stops/LLxeclu1", "https://tec.openplanner.team/stops/LVIvert2"], ["https://tec.openplanner.team/stops/LCUmora2", "https://tec.openplanner.team/stops/LCUthie1"], ["https://tec.openplanner.team/stops/N207ada", "https://tec.openplanner.team/stops/N209aaa"], ["https://tec.openplanner.team/stops/X801ajb", "https://tec.openplanner.team/stops/X801bdb"], ["https://tec.openplanner.team/stops/N553ahb", "https://tec.openplanner.team/stops/N566adb"], ["https://tec.openplanner.team/stops/X886aba", "https://tec.openplanner.team/stops/X886adb"], ["https://tec.openplanner.team/stops/Bquecge1", "https://tec.openplanner.team/stops/Bquevel1"], ["https://tec.openplanner.team/stops/X870aab", "https://tec.openplanner.team/stops/X880aca"], ["https://tec.openplanner.team/stops/LAicarr1", "https://tec.openplanner.team/stops/Lccuner2"], ["https://tec.openplanner.team/stops/LrAeife2", "https://tec.openplanner.team/stops/LrAplat2"], ["https://tec.openplanner.team/stops/N547alc", "https://tec.openplanner.team/stops/N547ald"], ["https://tec.openplanner.team/stops/H4gu106a", "https://tec.openplanner.team/stops/H4gu106b"], ["https://tec.openplanner.team/stops/Bboufsm2", "https://tec.openplanner.team/stops/Bbougar1"], ["https://tec.openplanner.team/stops/H3bo100d", "https://tec.openplanner.team/stops/H3bo101b"], ["https://tec.openplanner.team/stops/N515afa", "https://tec.openplanner.team/stops/N515aub"], ["https://tec.openplanner.team/stops/X999aab", "https://tec.openplanner.team/stops/X999abb"], ["https://tec.openplanner.team/stops/N547aia", "https://tec.openplanner.team/stops/N547aib"], ["https://tec.openplanner.team/stops/N117ama", "https://tec.openplanner.team/stops/N117ana"], ["https://tec.openplanner.team/stops/LaMschr1", "https://tec.openplanner.team/stops/LeIdeid2"], ["https://tec.openplanner.team/stops/LeYmero1", "https://tec.openplanner.team/stops/LrAbe962"], ["https://tec.openplanner.team/stops/LBNauto2", "https://tec.openplanner.team/stops/LBNforg2"], ["https://tec.openplanner.team/stops/N501lba", "https://tec.openplanner.team/stops/N501zba"], ["https://tec.openplanner.team/stops/Bbstrpo2", "https://tec.openplanner.team/stops/Cbtlong1"], ["https://tec.openplanner.team/stops/LFCalte2", "https://tec.openplanner.team/stops/LMamuse3"], ["https://tec.openplanner.team/stops/N347acb", "https://tec.openplanner.team/stops/N347aga"], ["https://tec.openplanner.team/stops/H1eu105b", "https://tec.openplanner.team/stops/H1sb145a"], ["https://tec.openplanner.team/stops/LWalibo2", "https://tec.openplanner.team/stops/LWapl--4"], ["https://tec.openplanner.team/stops/N577aab", "https://tec.openplanner.team/stops/N577aka"], ["https://tec.openplanner.team/stops/Ljucaba2", "https://tec.openplanner.team/stops/Ljufler1"], ["https://tec.openplanner.team/stops/N531ala", "https://tec.openplanner.team/stops/N531aua"], ["https://tec.openplanner.team/stops/LBAfort2", "https://tec.openplanner.team/stops/Lrahoig1"], ["https://tec.openplanner.team/stops/N525atb", "https://tec.openplanner.team/stops/N526abb"], ["https://tec.openplanner.team/stops/N308aab", "https://tec.openplanner.team/stops/N308aba"], ["https://tec.openplanner.team/stops/H1hn209a", "https://tec.openplanner.team/stops/H1hn209b"], ["https://tec.openplanner.team/stops/LaFbruc1", "https://tec.openplanner.team/stops/LrGzent1"], ["https://tec.openplanner.team/stops/Bbaucai2", "https://tec.openplanner.team/stops/Bbauham1"], ["https://tec.openplanner.team/stops/H1so136a", "https://tec.openplanner.team/stops/H1so143b"], ["https://tec.openplanner.team/stops/N106akb", "https://tec.openplanner.team/stops/N162aea"], ["https://tec.openplanner.team/stops/X715aib", "https://tec.openplanner.team/stops/X715aja"], ["https://tec.openplanner.team/stops/Lstbota2", "https://tec.openplanner.team/stops/LTIecma1"], ["https://tec.openplanner.team/stops/Ccoacie1", "https://tec.openplanner.team/stops/Csoplac1"], ["https://tec.openplanner.team/stops/H1hn208b", "https://tec.openplanner.team/stops/H1ms278a"], ["https://tec.openplanner.team/stops/Cml5ave2", "https://tec.openplanner.team/stops/Cmlsana2"], ["https://tec.openplanner.team/stops/H1ms942a", "https://tec.openplanner.team/stops/H1ni320a"], ["https://tec.openplanner.team/stops/Lrcastr1", "https://tec.openplanner.team/stops/Lrclant1"], ["https://tec.openplanner.team/stops/LSLabba1", "https://tec.openplanner.team/stops/LSLhale2"], ["https://tec.openplanner.team/stops/Cmiegli2", "https://tec.openplanner.team/stops/Cvtmaro1"], ["https://tec.openplanner.team/stops/Lfhdone1", "https://tec.openplanner.team/stops/Lpoprie2"], ["https://tec.openplanner.team/stops/X903aaa", "https://tec.openplanner.team/stops/X903abb"], ["https://tec.openplanner.team/stops/N132aaa", "https://tec.openplanner.team/stops/N132aca"], ["https://tec.openplanner.team/stops/Brsgecu2", "https://tec.openplanner.team/stops/Brsgm802"], ["https://tec.openplanner.team/stops/H2ch107a", "https://tec.openplanner.team/stops/H2ch111b"], ["https://tec.openplanner.team/stops/Bbeaap12", "https://tec.openplanner.team/stops/Bmlnpab1"], ["https://tec.openplanner.team/stops/LBOande1", "https://tec.openplanner.team/stops/LMucarr3"], ["https://tec.openplanner.team/stops/Bnivbpe2", "https://tec.openplanner.team/stops/Bnivbpe3"], ["https://tec.openplanner.team/stops/Lfhxhor1", "https://tec.openplanner.team/stops/Lfhxhor2"], ["https://tec.openplanner.team/stops/Crocona2", "https://tec.openplanner.team/stops/Croplom4"], ["https://tec.openplanner.team/stops/X602aab", "https://tec.openplanner.team/stops/X602abb"], ["https://tec.openplanner.team/stops/X822aab", "https://tec.openplanner.team/stops/X822apa"], ["https://tec.openplanner.team/stops/Cbfdufa1", "https://tec.openplanner.team/stops/Cci4091"], ["https://tec.openplanner.team/stops/LBEcroi1", "https://tec.openplanner.team/stops/LDLbois2"], ["https://tec.openplanner.team/stops/N368aab", "https://tec.openplanner.team/stops/N368aba"], ["https://tec.openplanner.team/stops/LoUober1", "https://tec.openplanner.team/stops/LoUober2"], ["https://tec.openplanner.team/stops/H4mo142d", "https://tec.openplanner.team/stops/H4mo193a"], ["https://tec.openplanner.team/stops/X839abb", "https://tec.openplanner.team/stops/X839abd"], ["https://tec.openplanner.team/stops/Lsmeg--1", "https://tec.openplanner.team/stops/Lsmeg--2"], ["https://tec.openplanner.team/stops/X753abb", "https://tec.openplanner.team/stops/X753abd"], ["https://tec.openplanner.team/stops/CMba1", "https://tec.openplanner.team/stops/CMba2"], ["https://tec.openplanner.team/stops/Lvehv--2", "https://tec.openplanner.team/stops/Lvehv--4"], ["https://tec.openplanner.team/stops/X723aka", "https://tec.openplanner.team/stops/X763aib"], ["https://tec.openplanner.team/stops/X917aka", "https://tec.openplanner.team/stops/X922afb"], ["https://tec.openplanner.team/stops/H4lg100a", "https://tec.openplanner.team/stops/H4ry132b"], ["https://tec.openplanner.team/stops/X818agb", "https://tec.openplanner.team/stops/X818amb"], ["https://tec.openplanner.team/stops/N229ata", "https://tec.openplanner.team/stops/N229atb"], ["https://tec.openplanner.team/stops/Bmonbor1", "https://tec.openplanner.team/stops/Bnivfhu1"], ["https://tec.openplanner.team/stops/N501eda", "https://tec.openplanner.team/stops/N501epb"], ["https://tec.openplanner.team/stops/H2hg270a", "https://tec.openplanner.team/stops/H2hg270b"], ["https://tec.openplanner.team/stops/LWRgare1", "https://tec.openplanner.team/stops/LWRgare2"], ["https://tec.openplanner.team/stops/Bettgle1", "https://tec.openplanner.team/stops/Bettlha2"], ["https://tec.openplanner.team/stops/LHuherm1", "https://tec.openplanner.team/stops/LMHcant2"], ["https://tec.openplanner.team/stops/LVEmohi1", "https://tec.openplanner.team/stops/LVEmohi2"], ["https://tec.openplanner.team/stops/Bgzddfh1", "https://tec.openplanner.team/stops/Bgzdgth2"], ["https://tec.openplanner.team/stops/H4hq129a", "https://tec.openplanner.team/stops/H4hs135b"], ["https://tec.openplanner.team/stops/Bblmpro2", "https://tec.openplanner.team/stops/Bblmwma1"], ["https://tec.openplanner.team/stops/LwAkape2", "https://tec.openplanner.team/stops/LwArabo2"], ["https://tec.openplanner.team/stops/LWaatel2", "https://tec.openplanner.team/stops/LWaccom2"], ["https://tec.openplanner.team/stops/Lwagare1", "https://tec.openplanner.team/stops/Lwapont2"], ["https://tec.openplanner.team/stops/LRGderr1", "https://tec.openplanner.team/stops/LRGgend2"], ["https://tec.openplanner.team/stops/Cgplutt2", "https://tec.openplanner.team/stops/H2gy108b"], ["https://tec.openplanner.team/stops/H1gi118a", "https://tec.openplanner.team/stops/H1vs145b"], ["https://tec.openplanner.team/stops/LSoboul2", "https://tec.openplanner.team/stops/LSogite2"], ["https://tec.openplanner.team/stops/N579aaa", "https://tec.openplanner.team/stops/N579afb"], ["https://tec.openplanner.team/stops/H4fa167b", "https://tec.openplanner.team/stops/H5rx104b"], ["https://tec.openplanner.team/stops/N508aaa", "https://tec.openplanner.team/stops/N508ada"], ["https://tec.openplanner.team/stops/X945ada", "https://tec.openplanner.team/stops/X945adb"], ["https://tec.openplanner.team/stops/Cfabaty2", "https://tec.openplanner.team/stops/Cfabaty4"], ["https://tec.openplanner.team/stops/LBevill1", "https://tec.openplanner.team/stops/LCAwals2"], ["https://tec.openplanner.team/stops/N137aaa", "https://tec.openplanner.team/stops/N137aib"], ["https://tec.openplanner.team/stops/LaSbahn1", "https://tec.openplanner.team/stops/LhSkape1"], ["https://tec.openplanner.team/stops/X614aaa", "https://tec.openplanner.team/stops/X614amb"], ["https://tec.openplanner.team/stops/H1wa158b", "https://tec.openplanner.team/stops/H1wa159a"], ["https://tec.openplanner.team/stops/Cgy3011", "https://tec.openplanner.team/stops/Cgyaudu1"], ["https://tec.openplanner.team/stops/X602aja", "https://tec.openplanner.team/stops/X602akb"], ["https://tec.openplanner.team/stops/H1ol140a", "https://tec.openplanner.team/stops/H1ol140b"], ["https://tec.openplanner.team/stops/X912aka", "https://tec.openplanner.team/stops/X912akb"], ["https://tec.openplanner.team/stops/H1an101b", "https://tec.openplanner.team/stops/H1an102b"], ["https://tec.openplanner.team/stops/X354afb", "https://tec.openplanner.team/stops/X359ala"], ["https://tec.openplanner.team/stops/X601ara", "https://tec.openplanner.team/stops/X601arb"], ["https://tec.openplanner.team/stops/H4vz367a", "https://tec.openplanner.team/stops/H4vz367b"], ["https://tec.openplanner.team/stops/X672aia", "https://tec.openplanner.team/stops/X672akb"], ["https://tec.openplanner.team/stops/X634afb", "https://tec.openplanner.team/stops/X634aga"], ["https://tec.openplanner.team/stops/Bsgetri2", "https://tec.openplanner.team/stops/Bsgevil1"], ["https://tec.openplanner.team/stops/Blhupa12", "https://tec.openplanner.team/stops/Blhupcl1"], ["https://tec.openplanner.team/stops/N538bab", "https://tec.openplanner.team/stops/N538bbb"], ["https://tec.openplanner.team/stops/X948aeb", "https://tec.openplanner.team/stops/X948afb"], ["https://tec.openplanner.team/stops/Cbmind3", "https://tec.openplanner.team/stops/Cbmmafr1"], ["https://tec.openplanner.team/stops/LAmarbo1", "https://tec.openplanner.team/stops/LAmwaut1"], ["https://tec.openplanner.team/stops/N501bsa", "https://tec.openplanner.team/stops/N501bta"], ["https://tec.openplanner.team/stops/LRmkerk2", "https://tec.openplanner.team/stops/LRmkult2"], ["https://tec.openplanner.team/stops/X912aba", "https://tec.openplanner.team/stops/X912aca"], ["https://tec.openplanner.team/stops/LCeterm2", "https://tec.openplanner.team/stops/LLWmonu2"], ["https://tec.openplanner.team/stops/LBhschu2", "https://tec.openplanner.team/stops/X793ajb"], ["https://tec.openplanner.team/stops/Cmohame1", "https://tec.openplanner.team/stops/Cmorgof1"], ["https://tec.openplanner.team/stops/H4ch118b", "https://tec.openplanner.team/stops/H4ch120d"], ["https://tec.openplanner.team/stops/Bblabfo1", "https://tec.openplanner.team/stops/Bblacco1"], ["https://tec.openplanner.team/stops/LMOcorn3", "https://tec.openplanner.team/stops/LMOf35-2"], ["https://tec.openplanner.team/stops/H1me117c", "https://tec.openplanner.team/stops/H1me117f"], ["https://tec.openplanner.team/stops/LwAschu1", "https://tec.openplanner.team/stops/LwAstum1"], ["https://tec.openplanner.team/stops/Lbhbalt1", "https://tec.openplanner.team/stops/Lbhbalt2"], ["https://tec.openplanner.team/stops/X663ahd", "https://tec.openplanner.team/stops/X663ajb"], ["https://tec.openplanner.team/stops/N501fga", "https://tec.openplanner.team/stops/N501fhb"], ["https://tec.openplanner.team/stops/LWEcite1", "https://tec.openplanner.team/stops/LWEgend2"], ["https://tec.openplanner.team/stops/LHuetat1", "https://tec.openplanner.team/stops/LMHplac4"], ["https://tec.openplanner.team/stops/Llaacca1", "https://tec.openplanner.team/stops/Lvovent2"], ["https://tec.openplanner.team/stops/H4he103b", "https://tec.openplanner.team/stops/H4pq112a"], ["https://tec.openplanner.team/stops/LsVgore2", "https://tec.openplanner.team/stops/LsVsage2"], ["https://tec.openplanner.team/stops/Cdamest2", "https://tec.openplanner.team/stops/Cdaviol1"], ["https://tec.openplanner.team/stops/H1ch100b", "https://tec.openplanner.team/stops/H1ch104b"], ["https://tec.openplanner.team/stops/X636awa", "https://tec.openplanner.team/stops/X636bhb"], ["https://tec.openplanner.team/stops/Cdajume1", "https://tec.openplanner.team/stops/Cdamarc1"], ["https://tec.openplanner.team/stops/X739agb", "https://tec.openplanner.team/stops/X739aha"], ["https://tec.openplanner.team/stops/N532ahb", "https://tec.openplanner.team/stops/N532aib"], ["https://tec.openplanner.team/stops/LATmale2", "https://tec.openplanner.team/stops/LATrori2"], ["https://tec.openplanner.team/stops/H4ry131b", "https://tec.openplanner.team/stops/H4ta119a"], ["https://tec.openplanner.team/stops/N534abb", "https://tec.openplanner.team/stops/N534acb"], ["https://tec.openplanner.team/stops/LFacruc1", "https://tec.openplanner.team/stops/LFalieg1"], ["https://tec.openplanner.team/stops/H4bl106a", "https://tec.openplanner.team/stops/H4bl106b"], ["https://tec.openplanner.team/stops/Bbchmin2", "https://tec.openplanner.team/stops/Bitreco1"], ["https://tec.openplanner.team/stops/LAWhein2", "https://tec.openplanner.team/stops/LAWhein4"], ["https://tec.openplanner.team/stops/Cmtgrim2", "https://tec.openplanner.team/stops/Cmtyern1"], ["https://tec.openplanner.team/stops/N501dea", "https://tec.openplanner.team/stops/N501mua"], ["https://tec.openplanner.team/stops/LCEhayo2", "https://tec.openplanner.team/stops/LETfort3"], ["https://tec.openplanner.team/stops/N252aba", "https://tec.openplanner.team/stops/N252ada"], ["https://tec.openplanner.team/stops/Bjdsbro2", "https://tec.openplanner.team/stops/Bjdspon1"], ["https://tec.openplanner.team/stops/Cmerdby1", "https://tec.openplanner.team/stops/Cmerdby2"], ["https://tec.openplanner.team/stops/N425aga", "https://tec.openplanner.team/stops/N426aca"], ["https://tec.openplanner.team/stops/N534bsa", "https://tec.openplanner.team/stops/N568aba"], ["https://tec.openplanner.team/stops/H4au100b", "https://tec.openplanner.team/stops/H4ea132c"], ["https://tec.openplanner.team/stops/Bnvmfba1", "https://tec.openplanner.team/stops/N515aqc"], ["https://tec.openplanner.team/stops/LWAipes1", "https://tec.openplanner.team/stops/LWArege1"], ["https://tec.openplanner.team/stops/N102aab", "https://tec.openplanner.team/stops/N116aca"], ["https://tec.openplanner.team/stops/LBAcent1", "https://tec.openplanner.team/stops/LBApak2*"], ["https://tec.openplanner.team/stops/Lagpaix2", "https://tec.openplanner.team/stops/Lagrask2"], ["https://tec.openplanner.team/stops/LWeec--1", "https://tec.openplanner.team/stops/LWepost1"], ["https://tec.openplanner.team/stops/H1pa120b", "https://tec.openplanner.team/stops/H1pa166b"], ["https://tec.openplanner.team/stops/LcRkirc1", "https://tec.openplanner.team/stops/LcRmuhl2"], ["https://tec.openplanner.team/stops/Bwlhpec1", "https://tec.openplanner.team/stops/Bwlhpma1"], ["https://tec.openplanner.team/stops/LBgcroi4", "https://tec.openplanner.team/stops/LLbvith1"], ["https://tec.openplanner.team/stops/Bbchboi1", "https://tec.openplanner.team/stops/Bwaurge1"], ["https://tec.openplanner.team/stops/H4fr142b", "https://tec.openplanner.team/stops/H4rc234a"], ["https://tec.openplanner.team/stops/LVLm10-2", "https://tec.openplanner.team/stops/LVLmabi2"], ["https://tec.openplanner.team/stops/X619aic", "https://tec.openplanner.team/stops/X619aka"], ["https://tec.openplanner.team/stops/H1qu119b", "https://tec.openplanner.team/stops/H1wl121b"], ["https://tec.openplanner.team/stops/LNipla3", "https://tec.openplanner.team/stops/LNipre-2"], ["https://tec.openplanner.team/stops/Lhrpaep*", "https://tec.openplanner.team/stops/Lhrvert1"], ["https://tec.openplanner.team/stops/Cauwauq2", "https://tec.openplanner.team/stops/Cvsbois1"], ["https://tec.openplanner.team/stops/N531aib", "https://tec.openplanner.team/stops/N531ama"], ["https://tec.openplanner.team/stops/Llgbaya2", "https://tec.openplanner.team/stops/Llgvolg2"], ["https://tec.openplanner.team/stops/H1br120b", "https://tec.openplanner.team/stops/H1br128b"], ["https://tec.openplanner.team/stops/Brsga811", "https://tec.openplanner.team/stops/Bwatcoq1"], ["https://tec.openplanner.team/stops/H1eu101a", "https://tec.openplanner.team/stops/H1lb139a"], ["https://tec.openplanner.team/stops/H1wa152b", "https://tec.openplanner.team/stops/H1wa156b"], ["https://tec.openplanner.team/stops/X638aqa", "https://tec.openplanner.team/stops/X652abb"], ["https://tec.openplanner.team/stops/LAUhost1", "https://tec.openplanner.team/stops/LAUpind1"], ["https://tec.openplanner.team/stops/N352aca", "https://tec.openplanner.team/stops/N352ada"], ["https://tec.openplanner.team/stops/Bgemcro2", "https://tec.openplanner.team/stops/Bgemman2"], ["https://tec.openplanner.team/stops/H1po135b", "https://tec.openplanner.team/stops/H1po138a"], ["https://tec.openplanner.team/stops/N571aaa", "https://tec.openplanner.team/stops/N571aba"], ["https://tec.openplanner.team/stops/LBachpl2", "https://tec.openplanner.team/stops/LBajean1"], ["https://tec.openplanner.team/stops/H1qv113b", "https://tec.openplanner.team/stops/H1qv115b"], ["https://tec.openplanner.team/stops/LsVprum3", "https://tec.openplanner.team/stops/LsVprum4"], ["https://tec.openplanner.team/stops/Lchsaeg2", "https://tec.openplanner.team/stops/Lchsaro1"], ["https://tec.openplanner.team/stops/H1ba101b", "https://tec.openplanner.team/stops/H1ba106a"], ["https://tec.openplanner.team/stops/N507alb", "https://tec.openplanner.team/stops/N507amb"], ["https://tec.openplanner.team/stops/N501bba", "https://tec.openplanner.team/stops/N501mcc"], ["https://tec.openplanner.team/stops/Brsgera2", "https://tec.openplanner.team/stops/Brsgfso2"], ["https://tec.openplanner.team/stops/Cmgcabi1", "https://tec.openplanner.team/stops/Cmgcabi2"], ["https://tec.openplanner.team/stops/LTywyna1", "https://tec.openplanner.team/stops/LTywyna2"], ["https://tec.openplanner.team/stops/Bsaucre1", "https://tec.openplanner.team/stops/Bsaupco2"], ["https://tec.openplanner.team/stops/LeUvoss1", "https://tec.openplanner.team/stops/LkTlibe1"], ["https://tec.openplanner.team/stops/Bolgmpl1", "https://tec.openplanner.team/stops/Bolgrga2"], ["https://tec.openplanner.team/stops/N513asa", "https://tec.openplanner.team/stops/N513asb"], ["https://tec.openplanner.team/stops/H2an102a", "https://tec.openplanner.team/stops/H2an102b"], ["https://tec.openplanner.team/stops/N532aaa", "https://tec.openplanner.team/stops/N532aib"], ["https://tec.openplanner.team/stops/H1cu117a", "https://tec.openplanner.team/stops/H1cu122a"], ["https://tec.openplanner.team/stops/H5at109a", "https://tec.openplanner.team/stops/H5at128b"], ["https://tec.openplanner.team/stops/Ccychap2", "https://tec.openplanner.team/stops/Ccyrmon1"], ["https://tec.openplanner.team/stops/X982beb", "https://tec.openplanner.team/stops/X982bqa"], ["https://tec.openplanner.team/stops/LmNha152", "https://tec.openplanner.team/stops/LmNlieb2"], ["https://tec.openplanner.team/stops/LGMforg2", "https://tec.openplanner.team/stops/LTRmosb1"], ["https://tec.openplanner.team/stops/Crajasm2", "https://tec.openplanner.team/stops/Cravign3"], ["https://tec.openplanner.team/stops/Cbuegl2", "https://tec.openplanner.team/stops/N103aea"], ["https://tec.openplanner.team/stops/Lfhborg1", "https://tec.openplanner.team/stops/Lfhnrou1"], ["https://tec.openplanner.team/stops/N506aca", "https://tec.openplanner.team/stops/N506blb"], ["https://tec.openplanner.team/stops/Lsn130-1", "https://tec.openplanner.team/stops/Lsnmala2"], ["https://tec.openplanner.team/stops/H1hm174a", "https://tec.openplanner.team/stops/H1hm177a"], ["https://tec.openplanner.team/stops/X910aca", "https://tec.openplanner.team/stops/X910acb"], ["https://tec.openplanner.team/stops/LREsoug3", "https://tec.openplanner.team/stops/LREsoug4"], ["https://tec.openplanner.team/stops/LCUmars1", "https://tec.openplanner.team/stops/LSzcoop2"], ["https://tec.openplanner.team/stops/H4oq223a", "https://tec.openplanner.team/stops/H4oq224a"], ["https://tec.openplanner.team/stops/X547aaa", "https://tec.openplanner.team/stops/X547abb"], ["https://tec.openplanner.team/stops/Bnivbxl2", "https://tec.openplanner.team/stops/Bniveco1"], ["https://tec.openplanner.team/stops/Bllncbr2", "https://tec.openplanner.team/stops/Bottbru2"], ["https://tec.openplanner.team/stops/X723ada", "https://tec.openplanner.team/stops/X766aga"], ["https://tec.openplanner.team/stops/Cgymest2", "https://tec.openplanner.team/stops/Cgyrrep1"], ["https://tec.openplanner.team/stops/H2sv214a", "https://tec.openplanner.team/stops/H2sv221a"], ["https://tec.openplanner.team/stops/H4ch115b", "https://tec.openplanner.team/stops/H4ty318b"], ["https://tec.openplanner.team/stops/LeUjuge1", "https://tec.openplanner.team/stops/LeUmoor2"], ["https://tec.openplanner.team/stops/H4mo182a", "https://tec.openplanner.team/stops/H4mo191b"], ["https://tec.openplanner.team/stops/N206aaa", "https://tec.openplanner.team/stops/N206aab"], ["https://tec.openplanner.team/stops/Llieg--1", "https://tec.openplanner.team/stops/Lvochev1"], ["https://tec.openplanner.team/stops/H2mo131b", "https://tec.openplanner.team/stops/H2mo138b"], ["https://tec.openplanner.team/stops/H2lc145a", "https://tec.openplanner.team/stops/H2lc146a"], ["https://tec.openplanner.team/stops/Cmlrang1", "https://tec.openplanner.team/stops/Cmlrang2"], ["https://tec.openplanner.team/stops/Cbufron1", "https://tec.openplanner.team/stops/Cbuplac3"], ["https://tec.openplanner.team/stops/N209ajc", "https://tec.openplanner.team/stops/N559acb"], ["https://tec.openplanner.team/stops/H1te175b", "https://tec.openplanner.team/stops/H1te179b"], ["https://tec.openplanner.team/stops/N513aza", "https://tec.openplanner.team/stops/N513bia"], ["https://tec.openplanner.team/stops/X982amb", "https://tec.openplanner.team/stops/X982byb"], ["https://tec.openplanner.team/stops/X626agb", "https://tec.openplanner.team/stops/X626aib"], ["https://tec.openplanner.team/stops/H1mv239b", "https://tec.openplanner.team/stops/H1mv241a"], ["https://tec.openplanner.team/stops/Ctmdema1", "https://tec.openplanner.team/stops/Ctmwaut1"], ["https://tec.openplanner.team/stops/Ccomiau2", "https://tec.openplanner.team/stops/Cpclibe3"], ["https://tec.openplanner.team/stops/N230aaa", "https://tec.openplanner.team/stops/N230aja"], ["https://tec.openplanner.team/stops/X741aeb", "https://tec.openplanner.team/stops/X741apb"], ["https://tec.openplanner.team/stops/LnN02--1", "https://tec.openplanner.team/stops/LsVthom1"], ["https://tec.openplanner.team/stops/LSTchat1", "https://tec.openplanner.team/stops/LSTchat2"], ["https://tec.openplanner.team/stops/LHAmonu1", "https://tec.openplanner.team/stops/LHAmonu2"], ["https://tec.openplanner.team/stops/LHEpriv2", "https://tec.openplanner.team/stops/LMolone1"], ["https://tec.openplanner.team/stops/LSssurl1", "https://tec.openplanner.team/stops/N506bqb"], ["https://tec.openplanner.team/stops/Llgbrab1", "https://tec.openplanner.team/stops/Llgstvi2"], ["https://tec.openplanner.team/stops/Lpecroi2", "https://tec.openplanner.team/stops/LWenouv2"], ["https://tec.openplanner.team/stops/Ctubpos2", "https://tec.openplanner.team/stops/Ctucomm2"], ["https://tec.openplanner.team/stops/N150aga", "https://tec.openplanner.team/stops/N150akb"], ["https://tec.openplanner.team/stops/H4gu107b", "https://tec.openplanner.team/stops/H4we134a"], ["https://tec.openplanner.team/stops/X773alb", "https://tec.openplanner.team/stops/X773ana"], ["https://tec.openplanner.team/stops/Csobail1", "https://tec.openplanner.team/stops/Csoperi2"], ["https://tec.openplanner.team/stops/Cgpleco1", "https://tec.openplanner.team/stops/Cpcegli1"], ["https://tec.openplanner.team/stops/X801bsa", "https://tec.openplanner.team/stops/X801bta"], ["https://tec.openplanner.team/stops/LmNsv871", "https://tec.openplanner.team/stops/LmNsv872"], ["https://tec.openplanner.team/stops/Bblaljo1", "https://tec.openplanner.team/stops/Bblapje1"], ["https://tec.openplanner.team/stops/N538ana", "https://tec.openplanner.team/stops/N538atb"], ["https://tec.openplanner.team/stops/N127acb", "https://tec.openplanner.team/stops/N127aeb"], ["https://tec.openplanner.team/stops/LLRrape4", "https://tec.openplanner.team/stops/LLRsalm2"], ["https://tec.openplanner.team/stops/Bkrawil1", "https://tec.openplanner.team/stops/Bkrawil2"], ["https://tec.openplanner.team/stops/NL76ama", "https://tec.openplanner.team/stops/NL76amb"], ["https://tec.openplanner.team/stops/H1ms903a", "https://tec.openplanner.team/stops/H1ms904a"], ["https://tec.openplanner.team/stops/LESevie1", "https://tec.openplanner.team/stops/LESgare1"], ["https://tec.openplanner.team/stops/LGMstin1", "https://tec.openplanner.team/stops/LGMstin2"], ["https://tec.openplanner.team/stops/H4ka181b", "https://tec.openplanner.team/stops/H4ty290a"], ["https://tec.openplanner.team/stops/LFreg--1", "https://tec.openplanner.team/stops/LFrvesd1"], ["https://tec.openplanner.team/stops/Blemhon1", "https://tec.openplanner.team/stops/Btubhoq2"], ["https://tec.openplanner.team/stops/Canresi2", "https://tec.openplanner.team/stops/Canterr1"], ["https://tec.openplanner.team/stops/Csshouy2", "https://tec.openplanner.team/stops/Csspn2"], ["https://tec.openplanner.team/stops/X721aca", "https://tec.openplanner.team/stops/X721aha"], ["https://tec.openplanner.team/stops/Bhenard4", "https://tec.openplanner.team/stops/Bhensei1"], ["https://tec.openplanner.team/stops/Lanschu1", "https://tec.openplanner.team/stops/Lanschu2"], ["https://tec.openplanner.team/stops/H1bo102b", "https://tec.openplanner.team/stops/H1te198b"], ["https://tec.openplanner.team/stops/N122afb", "https://tec.openplanner.team/stops/N305aba"], ["https://tec.openplanner.team/stops/N315aaa", "https://tec.openplanner.team/stops/N315aab"], ["https://tec.openplanner.team/stops/Cfrtill2", "https://tec.openplanner.team/stops/Cliegli2"], ["https://tec.openplanner.team/stops/NC11aja", "https://tec.openplanner.team/stops/NC11akb"], ["https://tec.openplanner.team/stops/LFfeg--2", "https://tec.openplanner.team/stops/LPRfond2"], ["https://tec.openplanner.team/stops/Bpthcai1", "https://tec.openplanner.team/stops/Bpthcai2"], ["https://tec.openplanner.team/stops/N201aia", "https://tec.openplanner.team/stops/N236abb"], ["https://tec.openplanner.team/stops/X769ajb", "https://tec.openplanner.team/stops/X791aaa"], ["https://tec.openplanner.team/stops/Lccawir2", "https://tec.openplanner.team/stops/LENengi2"], ["https://tec.openplanner.team/stops/Bflcneu1", "https://tec.openplanner.team/stops/Bflcpco1"], ["https://tec.openplanner.team/stops/Lalverr2", "https://tec.openplanner.team/stops/Lvo60--2"], ["https://tec.openplanner.team/stops/N331aia", "https://tec.openplanner.team/stops/N331aja"], ["https://tec.openplanner.team/stops/Bhmmcsc1", "https://tec.openplanner.team/stops/Btlgbro1"], ["https://tec.openplanner.team/stops/Ccisolv2", "https://tec.openplanner.team/stops/Cmtplac5"], ["https://tec.openplanner.team/stops/H1cv100a", "https://tec.openplanner.team/stops/H1cv100b"], ["https://tec.openplanner.team/stops/Lhrmeta1", "https://tec.openplanner.team/stops/Lhrunir2"], ["https://tec.openplanner.team/stops/LOVchen1", "https://tec.openplanner.team/stops/LOVeg--2"], ["https://tec.openplanner.team/stops/N525ada", "https://tec.openplanner.team/stops/N525aib"], ["https://tec.openplanner.team/stops/N559aab", "https://tec.openplanner.team/stops/N559acb"], ["https://tec.openplanner.team/stops/Cfaeclu2", "https://tec.openplanner.team/stops/Crspana1"], ["https://tec.openplanner.team/stops/LLelans1", "https://tec.openplanner.team/stops/X576afb"], ["https://tec.openplanner.team/stops/LFtcarr2", "https://tec.openplanner.team/stops/LXofont1"], ["https://tec.openplanner.team/stops/N383aba", "https://tec.openplanner.team/stops/N874ana"], ["https://tec.openplanner.team/stops/N530agb", "https://tec.openplanner.team/stops/N534bgb"], ["https://tec.openplanner.team/stops/X782aab", "https://tec.openplanner.team/stops/X782ada"], ["https://tec.openplanner.team/stops/LLxcrem1", "https://tec.openplanner.team/stops/LLxnive1"], ["https://tec.openplanner.team/stops/LPTblan2", "https://tec.openplanner.team/stops/LPTeg--1"], ["https://tec.openplanner.team/stops/H4wp148a", "https://tec.openplanner.team/stops/H4wp152b"], ["https://tec.openplanner.team/stops/N122aaa", "https://tec.openplanner.team/stops/N122aib"], ["https://tec.openplanner.team/stops/H1mj127b", "https://tec.openplanner.team/stops/H1mj131b"], ["https://tec.openplanner.team/stops/N577akb", "https://tec.openplanner.team/stops/N578aba"], ["https://tec.openplanner.team/stops/Canmonu2", "https://tec.openplanner.team/stops/Canmonu4"], ["https://tec.openplanner.team/stops/X850aha", "https://tec.openplanner.team/stops/X850anb"], ["https://tec.openplanner.team/stops/Cfoperz2", "https://tec.openplanner.team/stops/Cfovent2"], ["https://tec.openplanner.team/stops/X638ala", "https://tec.openplanner.team/stops/X638arb"], ["https://tec.openplanner.team/stops/X818aga", "https://tec.openplanner.team/stops/X820afb"], ["https://tec.openplanner.team/stops/N110acb", "https://tec.openplanner.team/stops/N110adb"], ["https://tec.openplanner.team/stops/Bohnman2", "https://tec.openplanner.team/stops/Bohnpla1"], ["https://tec.openplanner.team/stops/LCSpoud2", "https://tec.openplanner.team/stops/LENindu2"], ["https://tec.openplanner.team/stops/H1gg116a", "https://tec.openplanner.team/stops/H1ry137a"], ["https://tec.openplanner.team/stops/H1qu102a", "https://tec.openplanner.team/stops/H1qu120b"], ["https://tec.openplanner.team/stops/N323aba", "https://tec.openplanner.team/stops/N323aca"], ["https://tec.openplanner.team/stops/X718aaa", "https://tec.openplanner.team/stops/X718aba"], ["https://tec.openplanner.team/stops/N509axa", "https://tec.openplanner.team/stops/N509axb"], ["https://tec.openplanner.team/stops/Cgostex1", "https://tec.openplanner.team/stops/Cgoulb1"], ["https://tec.openplanner.team/stops/LSXvill2", "https://tec.openplanner.team/stops/LTHturo2"], ["https://tec.openplanner.team/stops/Bspkkhe2", "https://tec.openplanner.team/stops/H1mk110a"], ["https://tec.openplanner.team/stops/H1gr115a", "https://tec.openplanner.team/stops/H1gr123c"], ["https://tec.openplanner.team/stops/X605aga", "https://tec.openplanner.team/stops/X619amb"], ["https://tec.openplanner.team/stops/N539ala", "https://tec.openplanner.team/stops/N539aoa"], ["https://tec.openplanner.team/stops/X763ahb", "https://tec.openplanner.team/stops/X763aia"], ["https://tec.openplanner.team/stops/H5is169b", "https://tec.openplanner.team/stops/H5is170b"], ["https://tec.openplanner.team/stops/X626akb", "https://tec.openplanner.team/stops/X626ala"], ["https://tec.openplanner.team/stops/H1bx106b", "https://tec.openplanner.team/stops/H1bx107a"], ["https://tec.openplanner.team/stops/X782ana", "https://tec.openplanner.team/stops/X784adb"], ["https://tec.openplanner.team/stops/Lfhnrou2", "https://tec.openplanner.team/stops/Lfhvoye1"], ["https://tec.openplanner.team/stops/Cmohotv3", "https://tec.openplanner.team/stops/Cmosaba1"], ["https://tec.openplanner.team/stops/H4gu110a", "https://tec.openplanner.team/stops/H4gu112a"], ["https://tec.openplanner.team/stops/LTRfica2", "https://tec.openplanner.team/stops/LTRgare1"], ["https://tec.openplanner.team/stops/X659abb", "https://tec.openplanner.team/stops/X659ayb"], ["https://tec.openplanner.team/stops/LVEmoul2", "https://tec.openplanner.team/stops/LVEstat2"], ["https://tec.openplanner.team/stops/N260adb", "https://tec.openplanner.team/stops/N270aaa"], ["https://tec.openplanner.team/stops/N531ata", "https://tec.openplanner.team/stops/N534bma"], ["https://tec.openplanner.team/stops/H1ha187a", "https://tec.openplanner.team/stops/H1ha197a"], ["https://tec.openplanner.team/stops/LOthiro1", "https://tec.openplanner.team/stops/LOthiro2"], ["https://tec.openplanner.team/stops/Bbougar1", "https://tec.openplanner.team/stops/Bcsgres1"], ["https://tec.openplanner.team/stops/X758aab", "https://tec.openplanner.team/stops/X840ada"], ["https://tec.openplanner.team/stops/H4be103b", "https://tec.openplanner.team/stops/H4be104d"], ["https://tec.openplanner.team/stops/X669abc", "https://tec.openplanner.team/stops/X669abd"], ["https://tec.openplanner.team/stops/LBImili1", "https://tec.openplanner.team/stops/LBIrout2"], ["https://tec.openplanner.team/stops/Cjuecho1", "https://tec.openplanner.team/stops/Cjuhden4"], ["https://tec.openplanner.team/stops/X822aga", "https://tec.openplanner.team/stops/X822agb"], ["https://tec.openplanner.team/stops/Bbstpon1", "https://tec.openplanner.team/stops/Bbststa1"], ["https://tec.openplanner.team/stops/N135ava", "https://tec.openplanner.team/stops/N135bfa"], ["https://tec.openplanner.team/stops/N532aia", "https://tec.openplanner.team/stops/N532aka"], ["https://tec.openplanner.team/stops/X822abb", "https://tec.openplanner.team/stops/X822aqb"], ["https://tec.openplanner.team/stops/Bbchcbl1", "https://tec.openplanner.team/stops/Bbchdra1"], ["https://tec.openplanner.team/stops/Lhrchar1", "https://tec.openplanner.team/stops/Lhrpaep2"], ["https://tec.openplanner.team/stops/Crcverr1", "https://tec.openplanner.team/stops/Crcverr2"], ["https://tec.openplanner.team/stops/Bwatmsj2", "https://tec.openplanner.team/stops/Bwatmsj5"], ["https://tec.openplanner.team/stops/Cfcbobr1", "https://tec.openplanner.team/stops/Cvrfema1"], ["https://tec.openplanner.team/stops/Lhuferm1", "https://tec.openplanner.team/stops/LTHcent2"], ["https://tec.openplanner.team/stops/X754ala", "https://tec.openplanner.team/stops/X754amb"], ["https://tec.openplanner.team/stops/Btlbegl3", "https://tec.openplanner.team/stops/Btlbegl4"], ["https://tec.openplanner.team/stops/Benimar4", "https://tec.openplanner.team/stops/Bmrlcch2"], ["https://tec.openplanner.team/stops/H1hr116a", "https://tec.openplanner.team/stops/H1hr125a"], ["https://tec.openplanner.team/stops/LCPbatt2", "https://tec.openplanner.team/stops/LCTfair1"], ["https://tec.openplanner.team/stops/H1qu112b", "https://tec.openplanner.team/stops/H1qu114a"], ["https://tec.openplanner.team/stops/X825aea", "https://tec.openplanner.team/stops/X826abb"], ["https://tec.openplanner.team/stops/N537akb", "https://tec.openplanner.team/stops/N556adb"], ["https://tec.openplanner.team/stops/Bthscbl2", "https://tec.openplanner.team/stops/Bthsvil1"], ["https://tec.openplanner.team/stops/X641afd", "https://tec.openplanner.team/stops/X641aoa"], ["https://tec.openplanner.team/stops/X363acb", "https://tec.openplanner.team/stops/X363ada"], ["https://tec.openplanner.team/stops/Ctuecol4", "https://tec.openplanner.team/stops/Ctuplac3"], ["https://tec.openplanner.team/stops/H4eg102b", "https://tec.openplanner.team/stops/H4sl154b"], ["https://tec.openplanner.team/stops/X902afa", "https://tec.openplanner.team/stops/X902afb"], ["https://tec.openplanner.team/stops/LbOhoff1", "https://tec.openplanner.team/stops/LmObahn*"], ["https://tec.openplanner.team/stops/X911aab", "https://tec.openplanner.team/stops/X911avb"], ["https://tec.openplanner.team/stops/Cfaetoi1", "https://tec.openplanner.team/stops/Cfarcam2"], ["https://tec.openplanner.team/stops/Cnahous1", "https://tec.openplanner.team/stops/Cnaplbu1"], ["https://tec.openplanner.team/stops/X804aaa", "https://tec.openplanner.team/stops/X818aca"], ["https://tec.openplanner.team/stops/Lhrpaep1", "https://tec.openplanner.team/stops/Lhrvert1"], ["https://tec.openplanner.team/stops/X908aca", "https://tec.openplanner.team/stops/X908ada"], ["https://tec.openplanner.team/stops/Lveanto1", "https://tec.openplanner.team/stops/Lvexhav1"], ["https://tec.openplanner.team/stops/H4ro155b", "https://tec.openplanner.team/stops/H5pe148a"], ["https://tec.openplanner.team/stops/X879ahb", "https://tec.openplanner.team/stops/X879aka"], ["https://tec.openplanner.team/stops/N106aca", "https://tec.openplanner.team/stops/N137aba"], ["https://tec.openplanner.team/stops/LMucarr1", "https://tec.openplanner.team/stops/LMucarr3"], ["https://tec.openplanner.team/stops/Ccucorb2", "https://tec.openplanner.team/stops/Cgywaut2"], ["https://tec.openplanner.team/stops/X882amb", "https://tec.openplanner.team/stops/X882amc"], ["https://tec.openplanner.team/stops/N202aeb", "https://tec.openplanner.team/stops/N202aga"], ["https://tec.openplanner.team/stops/Ljucomb1", "https://tec.openplanner.team/stops/Ljuplpr1"], ["https://tec.openplanner.team/stops/LSdencl*", "https://tec.openplanner.team/stops/LVtchai2"], ["https://tec.openplanner.team/stops/Baudstr2", "https://tec.openplanner.team/stops/Bettars1"], ["https://tec.openplanner.team/stops/N331adb", "https://tec.openplanner.team/stops/N385aca"], ["https://tec.openplanner.team/stops/X882aaa", "https://tec.openplanner.team/stops/X882ada"], ["https://tec.openplanner.team/stops/H1cu122a", "https://tec.openplanner.team/stops/H1cu132a"], ["https://tec.openplanner.team/stops/Lemdupo1", "https://tec.openplanner.team/stops/Lemdupo2"], ["https://tec.openplanner.team/stops/Bwatle32", "https://tec.openplanner.team/stops/Bwatmlo2"], ["https://tec.openplanner.team/stops/LBjvill1", "https://tec.openplanner.team/stops/LBjvill2"], ["https://tec.openplanner.team/stops/Bbougar1", "https://tec.openplanner.team/stops/Bbougar2"], ["https://tec.openplanner.team/stops/X879aga", "https://tec.openplanner.team/stops/X879alb"], ["https://tec.openplanner.team/stops/LElverl1", "https://tec.openplanner.team/stops/LTaxhos1"], ["https://tec.openplanner.team/stops/Cgobruy1", "https://tec.openplanner.team/stops/CMbruy2"], ["https://tec.openplanner.team/stops/N501hvb", "https://tec.openplanner.team/stops/N501jab"], ["https://tec.openplanner.team/stops/LCogara2", "https://tec.openplanner.team/stops/LTPspay2"], ["https://tec.openplanner.team/stops/H2sb243b", "https://tec.openplanner.team/stops/H2sb243d"], ["https://tec.openplanner.team/stops/H1ba110b", "https://tec.openplanner.team/stops/H1ba116a"], ["https://tec.openplanner.team/stops/Lgrcrac2", "https://tec.openplanner.team/stops/Lgrlabo2"], ["https://tec.openplanner.team/stops/N569aca", "https://tec.openplanner.team/stops/N569adb"], ["https://tec.openplanner.team/stops/X812aba", "https://tec.openplanner.team/stops/X812afa"], ["https://tec.openplanner.team/stops/X938aaa", "https://tec.openplanner.team/stops/X938aab"], ["https://tec.openplanner.team/stops/LBbhupp2", "https://tec.openplanner.team/stops/LTPcamp1"], ["https://tec.openplanner.team/stops/Bjaneco1", "https://tec.openplanner.team/stops/Bolpmre1"], ["https://tec.openplanner.team/stops/LrAalte1", "https://tec.openplanner.team/stops/LrAneus2"], ["https://tec.openplanner.team/stops/Llgphol3", "https://tec.openplanner.team/stops/Llgtcha2"], ["https://tec.openplanner.team/stops/H4be106a", "https://tec.openplanner.team/stops/H4be109b"], ["https://tec.openplanner.team/stops/H4tu172c", "https://tec.openplanner.team/stops/H5pe128a"], ["https://tec.openplanner.team/stops/H4le128a", "https://tec.openplanner.team/stops/H4ry133a"], ["https://tec.openplanner.team/stops/H2mg149a", "https://tec.openplanner.team/stops/H2mg150a"], ["https://tec.openplanner.team/stops/H4ef113b", "https://tec.openplanner.team/stops/H4ef113c"], ["https://tec.openplanner.team/stops/Lvteg--1", "https://tec.openplanner.team/stops/Lvteg--2"], ["https://tec.openplanner.team/stops/LSJ38--1", "https://tec.openplanner.team/stops/LSJ38--2"], ["https://tec.openplanner.team/stops/LFFchal1", "https://tec.openplanner.team/stops/LVLsabl4"], ["https://tec.openplanner.team/stops/LPbhaut2", "https://tec.openplanner.team/stops/LPbpl--1"], ["https://tec.openplanner.team/stops/H1lb139a", "https://tec.openplanner.team/stops/H1lb139b"], ["https://tec.openplanner.team/stops/H1le125a", "https://tec.openplanner.team/stops/H1og133a"], ["https://tec.openplanner.team/stops/N564ada", "https://tec.openplanner.team/stops/N564adb"], ["https://tec.openplanner.team/stops/Lbocime1", "https://tec.openplanner.team/stops/Lbomc--4"], ["https://tec.openplanner.team/stops/H1ci102b", "https://tec.openplanner.team/stops/H1hn202a"], ["https://tec.openplanner.team/stops/LSomonu1", "https://tec.openplanner.team/stops/LSorobe2"], ["https://tec.openplanner.team/stops/Llivina1", "https://tec.openplanner.team/stops/Lmitech2"], ["https://tec.openplanner.team/stops/N109aaa", "https://tec.openplanner.team/stops/N123adb"], ["https://tec.openplanner.team/stops/X665aaa", "https://tec.openplanner.team/stops/X666aba"], ["https://tec.openplanner.team/stops/H1qv111b", "https://tec.openplanner.team/stops/H1qv116b"], ["https://tec.openplanner.team/stops/Cchhopi3", "https://tec.openplanner.team/stops/Cchwate3"], ["https://tec.openplanner.team/stops/LHdfays1", "https://tec.openplanner.team/stops/LVtvalu2"], ["https://tec.openplanner.team/stops/LHTbaud1", "https://tec.openplanner.team/stops/LHTmonu2"], ["https://tec.openplanner.team/stops/N501bda", "https://tec.openplanner.team/stops/N501bdb"], ["https://tec.openplanner.team/stops/LGesent2", "https://tec.openplanner.team/stops/LGevygh1"], ["https://tec.openplanner.team/stops/N548afa", "https://tec.openplanner.team/stops/N571aca"], ["https://tec.openplanner.team/stops/H5qu139b", "https://tec.openplanner.team/stops/H5qu145a"], ["https://tec.openplanner.team/stops/H1mj129a", "https://tec.openplanner.team/stops/H1mj132a"], ["https://tec.openplanner.team/stops/H1pa100b", "https://tec.openplanner.team/stops/H1pa112b"], ["https://tec.openplanner.team/stops/Lbrcygn2", "https://tec.openplanner.team/stops/Lbrplai1"], ["https://tec.openplanner.team/stops/Cmlipsm2", "https://tec.openplanner.team/stops/Cmlsart1"], ["https://tec.openplanner.team/stops/LbHzent1", "https://tec.openplanner.team/stops/LmS11--1"], ["https://tec.openplanner.team/stops/X804aua", "https://tec.openplanner.team/stops/X804bra"], ["https://tec.openplanner.team/stops/X744aca", "https://tec.openplanner.team/stops/X744ada"], ["https://tec.openplanner.team/stops/Brsgm301", "https://tec.openplanner.team/stops/Bwatmch3"], ["https://tec.openplanner.team/stops/X831acb", "https://tec.openplanner.team/stops/X831adb"], ["https://tec.openplanner.team/stops/Lghmeun2", "https://tec.openplanner.team/stops/Lghmeun4"], ["https://tec.openplanner.team/stops/N425abb", "https://tec.openplanner.team/stops/N425ahb"], ["https://tec.openplanner.team/stops/X601aia", "https://tec.openplanner.team/stops/X601aja"], ["https://tec.openplanner.team/stops/LCPoneu1", "https://tec.openplanner.team/stops/LCPpech5"], ["https://tec.openplanner.team/stops/Cmqcend1", "https://tec.openplanner.team/stops/N425aba"], ["https://tec.openplanner.team/stops/X750aab", "https://tec.openplanner.team/stops/X750adb"], ["https://tec.openplanner.team/stops/Lmofays2", "https://tec.openplanner.team/stops/Lmohomv2"], ["https://tec.openplanner.team/stops/H4pi130a", "https://tec.openplanner.team/stops/H4pi132b"], ["https://tec.openplanner.team/stops/X640alb", "https://tec.openplanner.team/stops/X640apb"], ["https://tec.openplanner.team/stops/H5bl121a", "https://tec.openplanner.team/stops/H5bl124b"], ["https://tec.openplanner.team/stops/Brsgfon1", "https://tec.openplanner.team/stops/Brsgrol2"], ["https://tec.openplanner.team/stops/Lagpass1", "https://tec.openplanner.team/stops/Lagviad1"], ["https://tec.openplanner.team/stops/LMIbois1", "https://tec.openplanner.team/stops/LSOgard2"], ["https://tec.openplanner.team/stops/H4bo114c", "https://tec.openplanner.team/stops/H4bo119b"], ["https://tec.openplanner.team/stops/LBKmoes2", "https://tec.openplanner.team/stops/LWAeloi2"], ["https://tec.openplanner.team/stops/N501haa", "https://tec.openplanner.team/stops/N501icy"], ["https://tec.openplanner.team/stops/Llggill3", "https://tec.openplanner.team/stops/Llghenr1"], ["https://tec.openplanner.team/stops/N244adb", "https://tec.openplanner.team/stops/N244aub"], ["https://tec.openplanner.team/stops/Lsmberg2", "https://tec.openplanner.team/stops/Lsmpost1"], ["https://tec.openplanner.team/stops/H4ru242b", "https://tec.openplanner.team/stops/H4wc374a"], ["https://tec.openplanner.team/stops/N534atb", "https://tec.openplanner.team/stops/N534bgb"], ["https://tec.openplanner.team/stops/LWNchar2", "https://tec.openplanner.team/stops/NL72aea"], ["https://tec.openplanner.team/stops/X657ana", "https://tec.openplanner.team/stops/X657anb"], ["https://tec.openplanner.team/stops/H1wa142b", "https://tec.openplanner.team/stops/H1wa143b"], ["https://tec.openplanner.team/stops/LRChote1", "https://tec.openplanner.team/stops/LTPcarr2"], ["https://tec.openplanner.team/stops/X670aha", "https://tec.openplanner.team/stops/X670aia"], ["https://tec.openplanner.team/stops/LGmeg--2", "https://tec.openplanner.team/stops/LGmhedo1"], ["https://tec.openplanner.team/stops/N501jfa", "https://tec.openplanner.team/stops/N501jgb"], ["https://tec.openplanner.team/stops/H4ld125b", "https://tec.openplanner.team/stops/H4ld127a"], ["https://tec.openplanner.team/stops/H1br127a", "https://tec.openplanner.team/stops/H1br127b"], ["https://tec.openplanner.team/stops/X948ata", "https://tec.openplanner.team/stops/X948atb"], ["https://tec.openplanner.team/stops/Canplal2", "https://tec.openplanner.team/stops/H2an106d"], ["https://tec.openplanner.team/stops/LREgrot4", "https://tec.openplanner.team/stops/LREsoug2"], ["https://tec.openplanner.team/stops/N254aaa", "https://tec.openplanner.team/stops/N254aha"], ["https://tec.openplanner.team/stops/H1ms911a", "https://tec.openplanner.team/stops/H1ms912a"], ["https://tec.openplanner.team/stops/Llghong2", "https://tec.openplanner.team/stops/Llgphol2"], ["https://tec.openplanner.team/stops/Ladabot2", "https://tec.openplanner.team/stops/Ladarev1"], ["https://tec.openplanner.team/stops/LJelava1", "https://tec.openplanner.team/stops/LMOpiss1"], ["https://tec.openplanner.team/stops/Lmiensp*", "https://tec.openplanner.team/stops/Lmimc--1"], ["https://tec.openplanner.team/stops/Lkiblan2", "https://tec.openplanner.team/stops/Lkithie2"], ["https://tec.openplanner.team/stops/H4ty326b", "https://tec.openplanner.team/stops/H4wc372b"], ["https://tec.openplanner.team/stops/H5el105a", "https://tec.openplanner.team/stops/H5el107b"], ["https://tec.openplanner.team/stops/Cmycime2", "https://tec.openplanner.team/stops/Cmymaco2"], ["https://tec.openplanner.team/stops/N232bab", "https://tec.openplanner.team/stops/N232bgb"], ["https://tec.openplanner.team/stops/LPtchpl2", "https://tec.openplanner.team/stops/LrEgend2"], ["https://tec.openplanner.team/stops/Cmychpl4", "https://tec.openplanner.team/stops/Cmypost2"], ["https://tec.openplanner.team/stops/LOmecol1", "https://tec.openplanner.team/stops/LOmpont1"], ["https://tec.openplanner.team/stops/N534aca", "https://tec.openplanner.team/stops/N566adb"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/Crcverr1"], ["https://tec.openplanner.team/stops/LETfort1", "https://tec.openplanner.team/stops/LETfort3"], ["https://tec.openplanner.team/stops/N501fpb", "https://tec.openplanner.team/stops/N501mfb"], ["https://tec.openplanner.team/stops/Benggar1", "https://tec.openplanner.team/stops/H1en103a"], ["https://tec.openplanner.team/stops/H2sb221a", "https://tec.openplanner.team/stops/H2tr247b"], ["https://tec.openplanner.team/stops/LNAbras3", "https://tec.openplanner.team/stops/LYEphar1"], ["https://tec.openplanner.team/stops/X607aea", "https://tec.openplanner.team/stops/X607aeb"], ["https://tec.openplanner.team/stops/H4or114a", "https://tec.openplanner.team/stops/H4or114b"], ["https://tec.openplanner.team/stops/X741aba", "https://tec.openplanner.team/stops/X741abd"], ["https://tec.openplanner.team/stops/LBNburg1", "https://tec.openplanner.team/stops/LBNgarn2"], ["https://tec.openplanner.team/stops/LSzeg--2", "https://tec.openplanner.team/stops/LSzsurl1"], ["https://tec.openplanner.team/stops/Ccychco2", "https://tec.openplanner.team/stops/NH01akb"], ["https://tec.openplanner.team/stops/N501iwa", "https://tec.openplanner.team/stops/N501ixd"], ["https://tec.openplanner.team/stops/LSNmoul1", "https://tec.openplanner.team/stops/LSNmoul3"], ["https://tec.openplanner.team/stops/LbUmurr2", "https://tec.openplanner.team/stops/LmUvilz2"], ["https://tec.openplanner.team/stops/H1do116b", "https://tec.openplanner.team/stops/H1do126a"], ["https://tec.openplanner.team/stops/NR38ada", "https://tec.openplanner.team/stops/NR38adb"], ["https://tec.openplanner.team/stops/Lvtfrai1", "https://tec.openplanner.team/stops/Lvtnico1"], ["https://tec.openplanner.team/stops/LPLc49-1", "https://tec.openplanner.team/stops/LPLcond2"], ["https://tec.openplanner.team/stops/LsVbell1", "https://tec.openplanner.team/stops/LsVgils2"], ["https://tec.openplanner.team/stops/Ctychen3", "https://tec.openplanner.team/stops/N137ahb"], ["https://tec.openplanner.team/stops/Ljhcarr1", "https://tec.openplanner.team/stops/Ljhjeha*"], ["https://tec.openplanner.team/stops/LhSgete2", "https://tec.openplanner.team/stops/LhSgete3"], ["https://tec.openplanner.team/stops/Ccogode1", "https://tec.openplanner.team/stops/Ccotemp1"], ["https://tec.openplanner.team/stops/Llgavro2", "https://tec.openplanner.team/stops/Llgborn1"], ["https://tec.openplanner.team/stops/H1bd100b", "https://tec.openplanner.team/stops/H1bd102b"], ["https://tec.openplanner.team/stops/X782aba", "https://tec.openplanner.team/stops/X782apa"], ["https://tec.openplanner.team/stops/N554aha", "https://tec.openplanner.team/stops/N566aea"], ["https://tec.openplanner.team/stops/N424aeb", "https://tec.openplanner.team/stops/N425aga"], ["https://tec.openplanner.team/stops/H4ft132b", "https://tec.openplanner.team/stops/H4ft133b"], ["https://tec.openplanner.team/stops/Cmtrdec2", "https://tec.openplanner.team/stops/Cmttrie2"], ["https://tec.openplanner.team/stops/H5rx114b", "https://tec.openplanner.team/stops/H5rx126b"], ["https://tec.openplanner.team/stops/LMebove1", "https://tec.openplanner.team/stops/LMedoum2"], ["https://tec.openplanner.team/stops/Bptecal2", "https://tec.openplanner.team/stops/Bptegna1"], ["https://tec.openplanner.team/stops/Lmlcher1", "https://tec.openplanner.team/stops/Lmlcrot3"], ["https://tec.openplanner.team/stops/X652agb", "https://tec.openplanner.team/stops/X652ajb"], ["https://tec.openplanner.team/stops/Lfhchaf*", "https://tec.openplanner.team/stops/LRacime1"], ["https://tec.openplanner.team/stops/Bjodrga2", "https://tec.openplanner.team/stops/Bjodrrg2"], ["https://tec.openplanner.team/stops/LBdcarr1", "https://tec.openplanner.team/stops/LSMfroi2"], ["https://tec.openplanner.team/stops/Ccicloc1", "https://tec.openplanner.team/stops/Ccifies1"], ["https://tec.openplanner.team/stops/N540aaa", "https://tec.openplanner.team/stops/N540aab"], ["https://tec.openplanner.team/stops/Llgdesa1", "https://tec.openplanner.team/stops/Llgpont2"], ["https://tec.openplanner.team/stops/H1pd141a", "https://tec.openplanner.team/stops/H1pd144a"], ["https://tec.openplanner.team/stops/N301anb", "https://tec.openplanner.team/stops/N301asa"], ["https://tec.openplanner.team/stops/N543bda", "https://tec.openplanner.team/stops/N543bya"], ["https://tec.openplanner.team/stops/Bernrar1", "https://tec.openplanner.team/stops/Bernrar2"], ["https://tec.openplanner.team/stops/LFOchab2", "https://tec.openplanner.team/stops/LVlfooz2"], ["https://tec.openplanner.team/stops/X717acb", "https://tec.openplanner.team/stops/X718aka"], ["https://tec.openplanner.team/stops/N520aca", "https://tec.openplanner.team/stops/N520acb"], ["https://tec.openplanner.team/stops/LJOferm1", "https://tec.openplanner.team/stops/LJOferm2"], ["https://tec.openplanner.team/stops/H4be147a", "https://tec.openplanner.team/stops/H4be147b"], ["https://tec.openplanner.team/stops/Bstmpla1", "https://tec.openplanner.team/stops/N561ada"], ["https://tec.openplanner.team/stops/Llabriq1", "https://tec.openplanner.team/stops/Lvovent1"], ["https://tec.openplanner.team/stops/Lpomart1", "https://tec.openplanner.team/stops/Lpoprie1"], ["https://tec.openplanner.team/stops/N252acc", "https://tec.openplanner.team/stops/N252ada"], ["https://tec.openplanner.team/stops/X713aba", "https://tec.openplanner.team/stops/X713ajc"], ["https://tec.openplanner.team/stops/N308ana", "https://tec.openplanner.team/stops/X308akb"], ["https://tec.openplanner.team/stops/Cchalou2", "https://tec.openplanner.team/stops/Cchmott1"], ["https://tec.openplanner.team/stops/LlA43--1", "https://tec.openplanner.team/stops/LlAdorf1"], ["https://tec.openplanner.team/stops/Chpcarp1", "https://tec.openplanner.team/stops/Chpceri2"], ["https://tec.openplanner.team/stops/H2ll195a", "https://tec.openplanner.team/stops/H2sv215b"], ["https://tec.openplanner.team/stops/X880agd", "https://tec.openplanner.team/stops/X880age"], ["https://tec.openplanner.team/stops/Btilsce1", "https://tec.openplanner.team/stops/Bvlvmar1"], ["https://tec.openplanner.team/stops/H1ge115a", "https://tec.openplanner.team/stops/H1no143a"], ["https://tec.openplanner.team/stops/LTywaut1", "https://tec.openplanner.team/stops/LTywyna1"], ["https://tec.openplanner.team/stops/X880aga", "https://tec.openplanner.team/stops/X880agb"], ["https://tec.openplanner.team/stops/Cctmari1", "https://tec.openplanner.team/stops/Cctmari2"], ["https://tec.openplanner.team/stops/H4an111b", "https://tec.openplanner.team/stops/H4rs118b"], ["https://tec.openplanner.team/stops/LBVlamo2", "https://tec.openplanner.team/stops/LBVzand3"], ["https://tec.openplanner.team/stops/X636avb", "https://tec.openplanner.team/stops/X636awa"], ["https://tec.openplanner.team/stops/H4ma398a", "https://tec.openplanner.team/stops/H4ma419b"], ["https://tec.openplanner.team/stops/LBAbooz1", "https://tec.openplanner.team/stops/LBAbooz2"], ["https://tec.openplanner.team/stops/Bovetwe2", "https://tec.openplanner.team/stops/Brsrbbo2"], ["https://tec.openplanner.team/stops/LMgberw2", "https://tec.openplanner.team/stops/LVItroi*"], ["https://tec.openplanner.team/stops/Lalparc1", "https://tec.openplanner.team/stops/Lalparc2"], ["https://tec.openplanner.team/stops/X739aea", "https://tec.openplanner.team/stops/X739afb"], ["https://tec.openplanner.team/stops/Brebchb2", "https://tec.openplanner.team/stops/H3br107a"], ["https://tec.openplanner.team/stops/X672aha", "https://tec.openplanner.team/stops/X672ahb"], ["https://tec.openplanner.team/stops/X876aba", "https://tec.openplanner.team/stops/X876afa"], ["https://tec.openplanner.team/stops/X784aea", "https://tec.openplanner.team/stops/X784aeb"], ["https://tec.openplanner.team/stops/X608aoa", "https://tec.openplanner.team/stops/X608arb"], ["https://tec.openplanner.team/stops/LLrcour2", "https://tec.openplanner.team/stops/LLrpape4"], ["https://tec.openplanner.team/stops/Cjumade0", "https://tec.openplanner.team/stops/Cjumade3"], ["https://tec.openplanner.team/stops/H4ve134b", "https://tec.openplanner.team/stops/H4ve140a"], ["https://tec.openplanner.team/stops/LSdsa8a2", "https://tec.openplanner.team/stops/LSdsar51"], ["https://tec.openplanner.team/stops/N528aqa", "https://tec.openplanner.team/stops/N528ata"], ["https://tec.openplanner.team/stops/N532ajb", "https://tec.openplanner.team/stops/N533acb"], ["https://tec.openplanner.team/stops/Cgrchea2", "https://tec.openplanner.team/stops/NC02abb"], ["https://tec.openplanner.team/stops/X804beb", "https://tec.openplanner.team/stops/X804bfa"], ["https://tec.openplanner.team/stops/LLUgend1", "https://tec.openplanner.team/stops/LLUpier2"], ["https://tec.openplanner.team/stops/N501dcb", "https://tec.openplanner.team/stops/N501mub"], ["https://tec.openplanner.team/stops/LON02--1", "https://tec.openplanner.team/stops/Lthfagn2"], ["https://tec.openplanner.team/stops/H4pq115a", "https://tec.openplanner.team/stops/H4pq116b"], ["https://tec.openplanner.team/stops/X754ara", "https://tec.openplanner.team/stops/X754ata"], ["https://tec.openplanner.team/stops/H4pq114b", "https://tec.openplanner.team/stops/H4pq117a"], ["https://tec.openplanner.team/stops/H4eg102a", "https://tec.openplanner.team/stops/H4eg103b"], ["https://tec.openplanner.team/stops/N241afa", "https://tec.openplanner.team/stops/N585alb"], ["https://tec.openplanner.team/stops/N117baa", "https://tec.openplanner.team/stops/N117bab"], ["https://tec.openplanner.team/stops/Lvopaqu2", "https://tec.openplanner.team/stops/LVSbleu2"], ["https://tec.openplanner.team/stops/N540aqa", "https://tec.openplanner.team/stops/N540arb"], ["https://tec.openplanner.team/stops/LWAor--1", "https://tec.openplanner.team/stops/LWAor--2"], ["https://tec.openplanner.team/stops/X899aga", "https://tec.openplanner.team/stops/X899agb"], ["https://tec.openplanner.team/stops/N101ana", "https://tec.openplanner.team/stops/N101ara"], ["https://tec.openplanner.team/stops/X761ada", "https://tec.openplanner.team/stops/X790ahb"], ["https://tec.openplanner.team/stops/H2ch101b", "https://tec.openplanner.team/stops/H2mg152a"], ["https://tec.openplanner.team/stops/N505aba", "https://tec.openplanner.team/stops/N505aib"], ["https://tec.openplanner.team/stops/LWOrout1", "https://tec.openplanner.team/stops/LWOwa161"], ["https://tec.openplanner.team/stops/LeUwais1", "https://tec.openplanner.team/stops/LeUwais2"], ["https://tec.openplanner.team/stops/H1mr122a", "https://tec.openplanner.team/stops/H1wi152c"], ["https://tec.openplanner.team/stops/Bmangen1", "https://tec.openplanner.team/stops/H2mg139c"], ["https://tec.openplanner.team/stops/H4ka174a", "https://tec.openplanner.team/stops/H4ka179b"], ["https://tec.openplanner.team/stops/X609ala", "https://tec.openplanner.team/stops/X609alb"], ["https://tec.openplanner.team/stops/LTAchau2", "https://tec.openplanner.team/stops/LTAchpl1"], ["https://tec.openplanner.team/stops/H1hg178b", "https://tec.openplanner.team/stops/H1qy131a"], ["https://tec.openplanner.team/stops/Cjupn2", "https://tec.openplanner.team/stops/Cjurogi1"], ["https://tec.openplanner.team/stops/Bobacar2", "https://tec.openplanner.team/stops/Bptrmar2"], ["https://tec.openplanner.team/stops/H1at108a", "https://tec.openplanner.team/stops/H1at109b"], ["https://tec.openplanner.team/stops/Cclchap1", "https://tec.openplanner.team/stops/Cclmoul2"], ["https://tec.openplanner.team/stops/N528arb", "https://tec.openplanner.team/stops/N528asb"], ["https://tec.openplanner.team/stops/X769ana", "https://tec.openplanner.team/stops/X769anb"], ["https://tec.openplanner.team/stops/X659awa", "https://tec.openplanner.team/stops/X659axa"], ["https://tec.openplanner.team/stops/X750bhb", "https://tec.openplanner.team/stops/X750bkb"], ["https://tec.openplanner.team/stops/Bbcoser1", "https://tec.openplanner.team/stops/Bbcoser2"], ["https://tec.openplanner.team/stops/Cmlpche1", "https://tec.openplanner.team/stops/Cmlpche2"], ["https://tec.openplanner.team/stops/N562agb", "https://tec.openplanner.team/stops/N562aha"], ["https://tec.openplanner.team/stops/N360adc", "https://tec.openplanner.team/stops/N894aea"], ["https://tec.openplanner.team/stops/Bgemga12", "https://tec.openplanner.team/stops/N522bvb"], ["https://tec.openplanner.team/stops/X986aeb", "https://tec.openplanner.team/stops/X986ajb"], ["https://tec.openplanner.team/stops/LrEkape2", "https://tec.openplanner.team/stops/LrEkreu1"], ["https://tec.openplanner.team/stops/X762aca", "https://tec.openplanner.team/stops/X762adb"], ["https://tec.openplanner.team/stops/X696aea", "https://tec.openplanner.team/stops/X696afa"], ["https://tec.openplanner.team/stops/X740aga", "https://tec.openplanner.team/stops/X911aua"], ["https://tec.openplanner.team/stops/LFAtomb1", "https://tec.openplanner.team/stops/LFAwale2"], ["https://tec.openplanner.team/stops/H2pe156a", "https://tec.openplanner.team/stops/H2re167a"], ["https://tec.openplanner.team/stops/LSPClem1", "https://tec.openplanner.team/stops/LSPther1"], ["https://tec.openplanner.team/stops/H1mv242a", "https://tec.openplanner.team/stops/H1mv243b"], ["https://tec.openplanner.team/stops/Bottcba2", "https://tec.openplanner.team/stops/Bottppa2"], ["https://tec.openplanner.team/stops/H1he107b", "https://tec.openplanner.team/stops/H1he108a"], ["https://tec.openplanner.team/stops/Bottpry1", "https://tec.openplanner.team/stops/Bottpry2"], ["https://tec.openplanner.team/stops/LVIastr1", "https://tec.openplanner.team/stops/LVIeg--1"], ["https://tec.openplanner.team/stops/X901aab", "https://tec.openplanner.team/stops/X901aba"], ["https://tec.openplanner.team/stops/N543chb", "https://tec.openplanner.team/stops/N543cia"], ["https://tec.openplanner.team/stops/Bmrleco1", "https://tec.openplanner.team/stops/Bmrleco2"], ["https://tec.openplanner.team/stops/H1by108d", "https://tec.openplanner.team/stops/H1by108e"], ["https://tec.openplanner.team/stops/N211apa", "https://tec.openplanner.team/stops/N211asa"], ["https://tec.openplanner.team/stops/Lheazz-1", "https://tec.openplanner.team/stops/Lheterm*"], ["https://tec.openplanner.team/stops/Lprtour1", "https://tec.openplanner.team/stops/Lprtour2"], ["https://tec.openplanner.team/stops/H1er109b", "https://tec.openplanner.team/stops/H1er112a"], ["https://tec.openplanner.team/stops/X727adb", "https://tec.openplanner.team/stops/X727aha"], ["https://tec.openplanner.team/stops/H2na135a", "https://tec.openplanner.team/stops/H3so184b"], ["https://tec.openplanner.team/stops/X744ada", "https://tec.openplanner.team/stops/X746aha"], ["https://tec.openplanner.team/stops/H1hr127a", "https://tec.openplanner.team/stops/H1hr127b"], ["https://tec.openplanner.team/stops/Cfabnat2", "https://tec.openplanner.team/stops/Cfastan1"], ["https://tec.openplanner.team/stops/LFFchab1", "https://tec.openplanner.team/stops/LVLsabl2"], ["https://tec.openplanner.team/stops/Cpcgout2", "https://tec.openplanner.team/stops/Cpcha431"], ["https://tec.openplanner.team/stops/X871abb", "https://tec.openplanner.team/stops/X871aca"], ["https://tec.openplanner.team/stops/H2ma206b", "https://tec.openplanner.team/stops/H2ma209b"], ["https://tec.openplanner.team/stops/N343aba", "https://tec.openplanner.team/stops/X343aha"], ["https://tec.openplanner.team/stops/H2bh115b", "https://tec.openplanner.team/stops/H2fy119a"], ["https://tec.openplanner.team/stops/N139aca", "https://tec.openplanner.team/stops/N140aaa"], ["https://tec.openplanner.team/stops/H1sy145b", "https://tec.openplanner.team/stops/H1sy150a"], ["https://tec.openplanner.team/stops/N543bob", "https://tec.openplanner.team/stops/N543cma"], ["https://tec.openplanner.team/stops/X659apb", "https://tec.openplanner.team/stops/X741aka"], ["https://tec.openplanner.team/stops/X614aea", "https://tec.openplanner.team/stops/X614aya"], ["https://tec.openplanner.team/stops/X605aga", "https://tec.openplanner.team/stops/X605ala"], ["https://tec.openplanner.team/stops/Cropcan1", "https://tec.openplanner.team/stops/Cropcan2"], ["https://tec.openplanner.team/stops/Bneelaa1", "https://tec.openplanner.team/stops/Braclin2"], ["https://tec.openplanner.team/stops/Boplcar1", "https://tec.openplanner.team/stops/Boplcar3"], ["https://tec.openplanner.team/stops/LkTsch%C3%B61", "https://tec.openplanner.team/stops/LkTsch%C3%B62"], ["https://tec.openplanner.team/stops/Loudela2", "https://tec.openplanner.team/stops/Louvand1"], ["https://tec.openplanner.team/stops/N565ada", "https://tec.openplanner.team/stops/N565akb"], ["https://tec.openplanner.team/stops/H4ss157a", "https://tec.openplanner.team/stops/H5rx125b"], ["https://tec.openplanner.team/stops/H2pr116b", "https://tec.openplanner.team/stops/H2pr119b"], ["https://tec.openplanner.team/stops/LFmlens2", "https://tec.openplanner.team/stops/LMOchen1"], ["https://tec.openplanner.team/stops/Cjugend3", "https://tec.openplanner.team/stops/Cjugend4"], ["https://tec.openplanner.team/stops/Lbococh1", "https://tec.openplanner.team/stops/Lsechev1"], ["https://tec.openplanner.team/stops/Bblacco2", "https://tec.openplanner.team/stops/Bblamer1"], ["https://tec.openplanner.team/stops/Bwavlon1", "https://tec.openplanner.team/stops/Bwavpar1"], ["https://tec.openplanner.team/stops/X750alb", "https://tec.openplanner.team/stops/X750bga"], ["https://tec.openplanner.team/stops/H1og135b", "https://tec.openplanner.team/stops/H5wo124a"], ["https://tec.openplanner.team/stops/Cgplhoi1", "https://tec.openplanner.team/stops/Cgplhoi2"], ["https://tec.openplanner.team/stops/LPOthom1", "https://tec.openplanner.team/stops/LPOthom2"], ["https://tec.openplanner.team/stops/H1bd103a", "https://tec.openplanner.team/stops/H1hq127a"], ["https://tec.openplanner.team/stops/X641abb", "https://tec.openplanner.team/stops/X641acb"], ["https://tec.openplanner.team/stops/X823afd", "https://tec.openplanner.team/stops/X823aga"], ["https://tec.openplanner.team/stops/X669aeb", "https://tec.openplanner.team/stops/X672aid"], ["https://tec.openplanner.team/stops/H4ms144a", "https://tec.openplanner.team/stops/H4ms145b"], ["https://tec.openplanner.team/stops/H3lr106a", "https://tec.openplanner.team/stops/H3th133b"], ["https://tec.openplanner.team/stops/Brixga12", "https://tec.openplanner.team/stops/Brixpla1"], ["https://tec.openplanner.team/stops/LCPoneu1", "https://tec.openplanner.team/stops/LOncar-*"], ["https://tec.openplanner.team/stops/Crspana3", "https://tec.openplanner.team/stops/Crspana4"], ["https://tec.openplanner.team/stops/NC24afb", "https://tec.openplanner.team/stops/NC24agb"], ["https://tec.openplanner.team/stops/LVu40--1", "https://tec.openplanner.team/stops/LVu40--2"], ["https://tec.openplanner.team/stops/LABbert2", "https://tec.openplanner.team/stops/LBegare2"], ["https://tec.openplanner.team/stops/LAUneuv4", "https://tec.openplanner.team/stops/LAUneuv5"], ["https://tec.openplanner.team/stops/CMparc2", "https://tec.openplanner.team/stops/Cmtrneu2"], ["https://tec.openplanner.team/stops/X998aza", "https://tec.openplanner.team/stops/X999amb"], ["https://tec.openplanner.team/stops/X721ala", "https://tec.openplanner.team/stops/X721ama"], ["https://tec.openplanner.team/stops/LRRemul1", "https://tec.openplanner.team/stops/LRRtrix1"], ["https://tec.openplanner.team/stops/LGOmonu1", "https://tec.openplanner.team/stops/LGOvill1"], ["https://tec.openplanner.team/stops/Ccyga4", "https://tec.openplanner.team/stops/Ccypetv2"], ["https://tec.openplanner.team/stops/X941aaa", "https://tec.openplanner.team/stops/X941aab"], ["https://tec.openplanner.team/stops/Cbfusin2", "https://tec.openplanner.team/stops/NC11akb"], ["https://tec.openplanner.team/stops/Ldipl--3", "https://tec.openplanner.team/stops/Ldipl--5"], ["https://tec.openplanner.team/stops/Cmtfabi2", "https://tec.openplanner.team/stops/Cmtstth1"], ["https://tec.openplanner.team/stops/N120aja", "https://tec.openplanner.team/stops/N121aib"], ["https://tec.openplanner.team/stops/H4ch120d", "https://tec.openplanner.team/stops/H4vx364b"], ["https://tec.openplanner.team/stops/LbTgeme2", "https://tec.openplanner.team/stops/LwYkreu1"], ["https://tec.openplanner.team/stops/NH01arb", "https://tec.openplanner.team/stops/NH01asb"], ["https://tec.openplanner.team/stops/Cfcpier1", "https://tec.openplanner.team/stops/Cfcplac4"], ["https://tec.openplanner.team/stops/LNAanne1", "https://tec.openplanner.team/stops/LSSfrai2"], ["https://tec.openplanner.team/stops/X650aaa", "https://tec.openplanner.team/stops/X650aoa"], ["https://tec.openplanner.team/stops/Ctrecol4", "https://tec.openplanner.team/stops/Ctrvert2"], ["https://tec.openplanner.team/stops/X601afa", "https://tec.openplanner.team/stops/X662atb"], ["https://tec.openplanner.team/stops/X347aja", "https://tec.openplanner.team/stops/X890aga"], ["https://tec.openplanner.team/stops/X650ana", "https://tec.openplanner.team/stops/X652aaa"], ["https://tec.openplanner.team/stops/N150akb", "https://tec.openplanner.team/stops/N165abb"], ["https://tec.openplanner.team/stops/H1ms254b", "https://tec.openplanner.team/stops/H1ms266a"], ["https://tec.openplanner.team/stops/H1gr118b", "https://tec.openplanner.team/stops/H1sy141b"], ["https://tec.openplanner.team/stops/H1bb119a", "https://tec.openplanner.team/stops/H1bb121a"], ["https://tec.openplanner.team/stops/N508aaa", "https://tec.openplanner.team/stops/N508ala"], ["https://tec.openplanner.team/stops/N507agb", "https://tec.openplanner.team/stops/N508aca"], ["https://tec.openplanner.team/stops/LGefron2", "https://tec.openplanner.team/stops/LVAwolf2"], ["https://tec.openplanner.team/stops/N203ada", "https://tec.openplanner.team/stops/N204alb"], ["https://tec.openplanner.team/stops/N521ala", "https://tec.openplanner.team/stops/N525ala"], ["https://tec.openplanner.team/stops/Cjugill3", "https://tec.openplanner.team/stops/CMchag2"], ["https://tec.openplanner.team/stops/LVLhalb2", "https://tec.openplanner.team/stops/LVLhalb3"], ["https://tec.openplanner.team/stops/LMsec--1", "https://tec.openplanner.team/stops/LMsvill2"], ["https://tec.openplanner.team/stops/X801bea", "https://tec.openplanner.team/stops/X801bma"], ["https://tec.openplanner.team/stops/Cthvbas2", "https://tec.openplanner.team/stops/Cthvbas4"], ["https://tec.openplanner.team/stops/Ljuprev2", "https://tec.openplanner.team/stops/Llgcouv2"], ["https://tec.openplanner.team/stops/X663aha", "https://tec.openplanner.team/stops/X663aia"], ["https://tec.openplanner.team/stops/H1hn202b", "https://tec.openplanner.team/stops/H1hn203a"], ["https://tec.openplanner.team/stops/H4ep126a", "https://tec.openplanner.team/stops/H4ep129a"], ["https://tec.openplanner.team/stops/LSTchat2", "https://tec.openplanner.team/stops/LSTvaul2"], ["https://tec.openplanner.team/stops/LBSnouw1", "https://tec.openplanner.team/stops/LBStong1"], ["https://tec.openplanner.team/stops/H4av102c", "https://tec.openplanner.team/stops/H4ef162b"], ["https://tec.openplanner.team/stops/LCRchpl1", "https://tec.openplanner.team/stops/LCReg--1"], ["https://tec.openplanner.team/stops/LBveg--2", "https://tec.openplanner.team/stops/LBvnico1"], ["https://tec.openplanner.team/stops/Llgmean2", "https://tec.openplanner.team/stops/Llgpitt1"], ["https://tec.openplanner.team/stops/H4ka193a", "https://tec.openplanner.team/stops/H4ty397a"], ["https://tec.openplanner.team/stops/H1ba107a", "https://tec.openplanner.team/stops/H1ba107b"], ["https://tec.openplanner.team/stops/Lsebuis2", "https://tec.openplanner.team/stops/Lseruis1"], ["https://tec.openplanner.team/stops/LSPplat1", "https://tec.openplanner.team/stops/LSPptch1"], ["https://tec.openplanner.team/stops/H1fr125b", "https://tec.openplanner.team/stops/H1lb134a"], ["https://tec.openplanner.team/stops/Bborcro2", "https://tec.openplanner.team/stops/Bitrpar1"], ["https://tec.openplanner.team/stops/Lflchan1", "https://tec.openplanner.team/stops/Lrosoxh2"], ["https://tec.openplanner.team/stops/Llglamb2", "https://tec.openplanner.team/stops/Llgschm2"], ["https://tec.openplanner.team/stops/LrDsage2", "https://tec.openplanner.team/stops/LrDschl2"], ["https://tec.openplanner.team/stops/X948aib", "https://tec.openplanner.team/stops/X948aja"], ["https://tec.openplanner.team/stops/H1by100c", "https://tec.openplanner.team/stops/H1by102b"], ["https://tec.openplanner.team/stops/Cmtrbla1", "https://tec.openplanner.team/stops/Cmtrdec2"], ["https://tec.openplanner.team/stops/X747aba", "https://tec.openplanner.team/stops/X747aia"], ["https://tec.openplanner.team/stops/LrUgeme1", "https://tec.openplanner.team/stops/LrUkult2"], ["https://tec.openplanner.team/stops/X917aia", "https://tec.openplanner.team/stops/X917ajb"], ["https://tec.openplanner.team/stops/LHUsart1", "https://tec.openplanner.team/stops/LHUvege1"], ["https://tec.openplanner.team/stops/H2ll186a", "https://tec.openplanner.team/stops/H2ll186b"], ["https://tec.openplanner.team/stops/Cfaecmo2", "https://tec.openplanner.team/stops/Cfarcam2"], ["https://tec.openplanner.team/stops/Lalexpa1", "https://tec.openplanner.team/stops/Lalparc1"], ["https://tec.openplanner.team/stops/N551acb", "https://tec.openplanner.team/stops/N577aca"], ["https://tec.openplanner.team/stops/X774aba", "https://tec.openplanner.team/stops/X774abb"], ["https://tec.openplanner.team/stops/N101aja", "https://tec.openplanner.team/stops/N116aea"], ["https://tec.openplanner.team/stops/LETfort4", "https://tec.openplanner.team/stops/LMIcamp2"], ["https://tec.openplanner.team/stops/LOrpont2", "https://tec.openplanner.team/stops/LTyhall2"], ["https://tec.openplanner.team/stops/N163aaa", "https://tec.openplanner.team/stops/N165aca"], ["https://tec.openplanner.team/stops/Bqueaga1", "https://tec.openplanner.team/stops/Btubsal1"], ["https://tec.openplanner.team/stops/H4ta125b", "https://tec.openplanner.team/stops/H4ta126a"], ["https://tec.openplanner.team/stops/LCIpiet1", "https://tec.openplanner.team/stops/LCIpiet2"], ["https://tec.openplanner.team/stops/Lhrcols1", "https://tec.openplanner.team/stops/Lvtmeun2"], ["https://tec.openplanner.team/stops/X770adb", "https://tec.openplanner.team/stops/X770aeb"], ["https://tec.openplanner.team/stops/X807acb", "https://tec.openplanner.team/stops/X834ada"], ["https://tec.openplanner.team/stops/LAWhein2", "https://tec.openplanner.team/stops/LAWroug2"], ["https://tec.openplanner.team/stops/H1em108a", "https://tec.openplanner.team/stops/H1em111a"], ["https://tec.openplanner.team/stops/H1bb114a", "https://tec.openplanner.team/stops/H1ho133a"], ["https://tec.openplanner.team/stops/LHHpt--2", "https://tec.openplanner.team/stops/LSkb1351"], ["https://tec.openplanner.team/stops/N385aeb", "https://tec.openplanner.team/stops/N385aed"], ["https://tec.openplanner.team/stops/Lkivolg2", "https://tec.openplanner.team/stops/Lscgare2"], ["https://tec.openplanner.team/stops/Btubga06", "https://tec.openplanner.team/stops/Btubmfa1"], ["https://tec.openplanner.team/stops/X653ada", "https://tec.openplanner.team/stops/X653add"], ["https://tec.openplanner.team/stops/Cmtgrim1", "https://tec.openplanner.team/stops/Cmtyern2"], ["https://tec.openplanner.team/stops/X833aab", "https://tec.openplanner.team/stops/X834ada"], ["https://tec.openplanner.team/stops/LTiflor1", "https://tec.openplanner.team/stops/LTipont2"], ["https://tec.openplanner.team/stops/X602ama", "https://tec.openplanner.team/stops/X602apa"], ["https://tec.openplanner.team/stops/H2mm144a", "https://tec.openplanner.team/stops/H2mo145a"], ["https://tec.openplanner.team/stops/LWOpier2", "https://tec.openplanner.team/stops/LWOplat2"], ["https://tec.openplanner.team/stops/X837aca", "https://tec.openplanner.team/stops/X837acb"], ["https://tec.openplanner.team/stops/X937aab", "https://tec.openplanner.team/stops/X938ada"], ["https://tec.openplanner.team/stops/Cgplutt2", "https://tec.openplanner.team/stops/Cgpplac2"], ["https://tec.openplanner.team/stops/N534bsa", "https://tec.openplanner.team/stops/N534bsb"], ["https://tec.openplanner.team/stops/Cchba2", "https://tec.openplanner.team/stops/Cchture1"], ["https://tec.openplanner.team/stops/LMfpeni*", "https://tec.openplanner.team/stops/NL57alb"], ["https://tec.openplanner.team/stops/N551aka", "https://tec.openplanner.team/stops/N551akb"], ["https://tec.openplanner.team/stops/LeUgutl1", "https://tec.openplanner.team/stops/LkTkabi2"], ["https://tec.openplanner.team/stops/Bbsttab1", "https://tec.openplanner.team/stops/Bbsttab2"], ["https://tec.openplanner.team/stops/Clibrun2", "https://tec.openplanner.team/stops/Clulidl1"], ["https://tec.openplanner.team/stops/X780afb", "https://tec.openplanner.team/stops/X780aga"], ["https://tec.openplanner.team/stops/X609aia", "https://tec.openplanner.team/stops/X609ala"], ["https://tec.openplanner.team/stops/LmDelek1", "https://tec.openplanner.team/stops/LmDelek2"], ["https://tec.openplanner.team/stops/N549adb", "https://tec.openplanner.team/stops/N549aeb"], ["https://tec.openplanner.team/stops/N532aja", "https://tec.openplanner.team/stops/N532aka"], ["https://tec.openplanner.team/stops/Ljedepa1", "https://tec.openplanner.team/stops/Ljeheur1"], ["https://tec.openplanner.team/stops/H4tg162a", "https://tec.openplanner.team/stops/H4tg170b"], ["https://tec.openplanner.team/stops/H2tr248a", "https://tec.openplanner.team/stops/H2tr248b"], ["https://tec.openplanner.team/stops/LVEh16-1", "https://tec.openplanner.team/stops/LVEjoin1"], ["https://tec.openplanner.team/stops/H2bh105a", "https://tec.openplanner.team/stops/H2bh113b"], ["https://tec.openplanner.team/stops/Llgmare5", "https://tec.openplanner.team/stops/Llgpoli1"], ["https://tec.openplanner.team/stops/Bgntcbo1", "https://tec.openplanner.team/stops/N584axb"], ["https://tec.openplanner.team/stops/LCnvill1", "https://tec.openplanner.team/stops/LREhenu2"], ["https://tec.openplanner.team/stops/H4os221a", "https://tec.openplanner.team/stops/H5wo132b"], ["https://tec.openplanner.team/stops/H2le146b", "https://tec.openplanner.team/stops/H2le150a"], ["https://tec.openplanner.team/stops/N149aba", "https://tec.openplanner.team/stops/N149adb"], ["https://tec.openplanner.team/stops/Brsgfbl3", "https://tec.openplanner.team/stops/Brsggol1"], ["https://tec.openplanner.team/stops/LMEcour1", "https://tec.openplanner.team/stops/LMEcour2"], ["https://tec.openplanner.team/stops/X781aea", "https://tec.openplanner.team/stops/X781aeb"], ["https://tec.openplanner.team/stops/H4lu126a", "https://tec.openplanner.team/stops/H4lu126b"], ["https://tec.openplanner.team/stops/H4mv193b", "https://tec.openplanner.team/stops/H4va232a"], ["https://tec.openplanner.team/stops/Lseptsa1", "https://tec.openplanner.team/stops/Lseverh2"], ["https://tec.openplanner.team/stops/LhObull2", "https://tec.openplanner.team/stops/LhOfrie1"], ["https://tec.openplanner.team/stops/X601bnb", "https://tec.openplanner.team/stops/X601bob"], ["https://tec.openplanner.team/stops/N532aca", "https://tec.openplanner.team/stops/N532adb"], ["https://tec.openplanner.team/stops/LAUscha2", "https://tec.openplanner.team/stops/LFPstro1"], ["https://tec.openplanner.team/stops/N528ala", "https://tec.openplanner.team/stops/N551aec"], ["https://tec.openplanner.team/stops/LSInd--1", "https://tec.openplanner.team/stops/LSInd--2"], ["https://tec.openplanner.team/stops/Bblaniv1", "https://tec.openplanner.team/stops/Bwatwsc1"], ["https://tec.openplanner.team/stops/H1fr118b", "https://tec.openplanner.team/stops/H1no143b"], ["https://tec.openplanner.team/stops/LeUroll1", "https://tec.openplanner.team/stops/LkTlibe1"], ["https://tec.openplanner.team/stops/N513asa", "https://tec.openplanner.team/stops/N513avb"], ["https://tec.openplanner.team/stops/H2pr114a", "https://tec.openplanner.team/stops/H2pr119a"], ["https://tec.openplanner.team/stops/Bhticbr1", "https://tec.openplanner.team/stops/Bitrfsc2"], ["https://tec.openplanner.team/stops/Cgzplac1", "https://tec.openplanner.team/stops/Cgzplac4"], ["https://tec.openplanner.team/stops/H1ba115a", "https://tec.openplanner.team/stops/H1ba115b"], ["https://tec.openplanner.team/stops/N501etc", "https://tec.openplanner.team/stops/N501ety"], ["https://tec.openplanner.team/stops/Cbfgare1", "https://tec.openplanner.team/stops/Cctberg2"], ["https://tec.openplanner.team/stops/N521ala", "https://tec.openplanner.team/stops/N521alb"], ["https://tec.openplanner.team/stops/X750ayb", "https://tec.openplanner.team/stops/X750aza"], ["https://tec.openplanner.team/stops/N557aaa", "https://tec.openplanner.team/stops/N557aab"], ["https://tec.openplanner.team/stops/Bllnjpa2", "https://tec.openplanner.team/stops/Bllnlb52"], ["https://tec.openplanner.team/stops/H4mo133b", "https://tec.openplanner.team/stops/H4mo159b"], ["https://tec.openplanner.team/stops/H4ty356c", "https://tec.openplanner.team/stops/H4ty381b"], ["https://tec.openplanner.team/stops/X939aab", "https://tec.openplanner.team/stops/X940afb"], ["https://tec.openplanner.team/stops/X940ada", "https://tec.openplanner.team/stops/X940aed"], ["https://tec.openplanner.team/stops/N151ajd", "https://tec.openplanner.team/stops/N152aad"], ["https://tec.openplanner.team/stops/LTRfend2", "https://tec.openplanner.team/stops/LTRmosb1"], ["https://tec.openplanner.team/stops/Bthspha2", "https://tec.openplanner.team/stops/Bwancal2"], ["https://tec.openplanner.team/stops/H1ca106b", "https://tec.openplanner.team/stops/H1ne144a"], ["https://tec.openplanner.team/stops/LXhjupr3", "https://tec.openplanner.team/stops/LXhjupr4"], ["https://tec.openplanner.team/stops/X601bub", "https://tec.openplanner.team/stops/X601daa"], ["https://tec.openplanner.team/stops/X922agb", "https://tec.openplanner.team/stops/X922ahb"], ["https://tec.openplanner.team/stops/X985aaa", "https://tec.openplanner.team/stops/X985aac"], ["https://tec.openplanner.team/stops/H1el134a", "https://tec.openplanner.team/stops/H1el135a"], ["https://tec.openplanner.team/stops/Lbomc--8", "https://tec.openplanner.team/stops/Lbooffe1"], ["https://tec.openplanner.team/stops/Cmcgoch2", "https://tec.openplanner.team/stops/Csyjumo2"], ["https://tec.openplanner.team/stops/H4fo117a", "https://tec.openplanner.team/stops/H4fo117c"], ["https://tec.openplanner.team/stops/LAUbour2", "https://tec.openplanner.team/stops/LAUhost1"], ["https://tec.openplanner.team/stops/H1cv100b", "https://tec.openplanner.team/stops/H1cv104b"], ["https://tec.openplanner.team/stops/N522afa", "https://tec.openplanner.team/stops/N522afb"], ["https://tec.openplanner.team/stops/Bnivplt1", "https://tec.openplanner.team/stops/Bnivpro2"], ["https://tec.openplanner.team/stops/Lbrnanc1", "https://tec.openplanner.team/stops/Lbrnanc2"], ["https://tec.openplanner.team/stops/H1ho136b", "https://tec.openplanner.team/stops/H1ho139a"], ["https://tec.openplanner.team/stops/H1gh145b", "https://tec.openplanner.team/stops/H1gh150b"], ["https://tec.openplanner.team/stops/X670adb", "https://tec.openplanner.team/stops/X670akb"], ["https://tec.openplanner.team/stops/LVnourt4", "https://tec.openplanner.team/stops/LVnrock2"], ["https://tec.openplanner.team/stops/Lsmgdry1", "https://tec.openplanner.team/stops/Lvedepa*"], ["https://tec.openplanner.team/stops/N201aqb", "https://tec.openplanner.team/stops/N201awb"], ["https://tec.openplanner.team/stops/H4gz115a", "https://tec.openplanner.team/stops/H4gz115b"], ["https://tec.openplanner.team/stops/N340adb", "https://tec.openplanner.team/stops/N340aea"], ["https://tec.openplanner.team/stops/LJAcent1", "https://tec.openplanner.team/stops/LJAcime1"], ["https://tec.openplanner.team/stops/N305aaa", "https://tec.openplanner.team/stops/N305aba"], ["https://tec.openplanner.team/stops/X804ata", "https://tec.openplanner.team/stops/X804bgb"], ["https://tec.openplanner.team/stops/H1pw120b", "https://tec.openplanner.team/stops/H1wa146b"], ["https://tec.openplanner.team/stops/LvA12--3", "https://tec.openplanner.team/stops/LvAschw1"], ["https://tec.openplanner.team/stops/H1hv131a", "https://tec.openplanner.team/stops/H1hv133b"], ["https://tec.openplanner.team/stops/N162aca", "https://tec.openplanner.team/stops/N162adb"], ["https://tec.openplanner.team/stops/Cmgpn2", "https://tec.openplanner.team/stops/Cmgvpa"], ["https://tec.openplanner.team/stops/X614bra", "https://tec.openplanner.team/stops/X614brb"], ["https://tec.openplanner.team/stops/LARgare3", "https://tec.openplanner.team/stops/LARgare4"], ["https://tec.openplanner.team/stops/Cpllimi1", "https://tec.openplanner.team/stops/Cpllimi4"], ["https://tec.openplanner.team/stops/N313ada", "https://tec.openplanner.team/stops/N313aea"], ["https://tec.openplanner.team/stops/H1ms303a", "https://tec.openplanner.team/stops/H1ms307a"], ["https://tec.openplanner.team/stops/N501kfb", "https://tec.openplanner.team/stops/N538axa"], ["https://tec.openplanner.team/stops/LFRbaro1", "https://tec.openplanner.team/stops/LFRhock1"], ["https://tec.openplanner.team/stops/H2ll181b", "https://tec.openplanner.team/stops/H2ll197a"], ["https://tec.openplanner.team/stops/LSOferr4", "https://tec.openplanner.team/stops/LSOladr1"], ["https://tec.openplanner.team/stops/Lstchu-3", "https://tec.openplanner.team/stops/Lstchu-4"], ["https://tec.openplanner.team/stops/Bovehst2", "https://tec.openplanner.team/stops/Bovevnd2"], ["https://tec.openplanner.team/stops/Lveoctr3", "https://tec.openplanner.team/stops/Lverdep2"], ["https://tec.openplanner.team/stops/H5rx102a", "https://tec.openplanner.team/stops/H5rx122b"], ["https://tec.openplanner.team/stops/X901afb", "https://tec.openplanner.team/stops/X902aza"], ["https://tec.openplanner.team/stops/H4av102b", "https://tec.openplanner.team/stops/H4av107b"], ["https://tec.openplanner.team/stops/LbRfrie1", "https://tec.openplanner.team/stops/LmAgruf1"], ["https://tec.openplanner.team/stops/Cfaterg6", "https://tec.openplanner.team/stops/Crsapol1"], ["https://tec.openplanner.team/stops/X901aea", "https://tec.openplanner.team/stops/X901ata"], ["https://tec.openplanner.team/stops/LENaout1", "https://tec.openplanner.team/stops/LSBsere2"], ["https://tec.openplanner.team/stops/H1mm131b", "https://tec.openplanner.team/stops/H1vb148b"], ["https://tec.openplanner.team/stops/Lsmrcim2", "https://tec.openplanner.team/stops/Lsmrwan2"], ["https://tec.openplanner.team/stops/Bbiecoc1", "https://tec.openplanner.team/stops/Bgzdsta1"], ["https://tec.openplanner.team/stops/LRE154-2", "https://tec.openplanner.team/stops/LRErive2"], ["https://tec.openplanner.team/stops/LVEbors1", "https://tec.openplanner.team/stops/LVEcacq2"], ["https://tec.openplanner.team/stops/H1ms314b", "https://tec.openplanner.team/stops/H1ms914a"], ["https://tec.openplanner.team/stops/H2hg268c", "https://tec.openplanner.team/stops/H2hg272a"], ["https://tec.openplanner.team/stops/N101aqa", "https://tec.openplanner.team/stops/N101aqb"], ["https://tec.openplanner.team/stops/Bitrh%C3%BBl1", "https://tec.openplanner.team/stops/Bitrh%C3%BBl2"], ["https://tec.openplanner.team/stops/Loujouh2", "https://tec.openplanner.team/stops/Lstvill2"], ["https://tec.openplanner.team/stops/Llgdart5", "https://tec.openplanner.team/stops/LlgguilA"], ["https://tec.openplanner.team/stops/Bwategp1", "https://tec.openplanner.team/stops/Bwatlbs1"], ["https://tec.openplanner.team/stops/Lcelhon2", "https://tec.openplanner.team/stops/Lceludg1"], ["https://tec.openplanner.team/stops/LNEgaul1", "https://tec.openplanner.team/stops/LNEgaul3"], ["https://tec.openplanner.team/stops/X923ala", "https://tec.openplanner.team/stops/X923apa"], ["https://tec.openplanner.team/stops/N528awb", "https://tec.openplanner.team/stops/N577ahb"], ["https://tec.openplanner.team/stops/LSsmond2", "https://tec.openplanner.team/stops/N506bqb"], ["https://tec.openplanner.team/stops/Cmqegl1", "https://tec.openplanner.team/stops/Cmqn5911"], ["https://tec.openplanner.team/stops/LCpegli2", "https://tec.openplanner.team/stops/LSPgend1"], ["https://tec.openplanner.team/stops/Bperalv1", "https://tec.openplanner.team/stops/Bperpla1"], ["https://tec.openplanner.team/stops/N291aab", "https://tec.openplanner.team/stops/N291aba"], ["https://tec.openplanner.team/stops/LAUmerc1", "https://tec.openplanner.team/stops/LLC170-2"], ["https://tec.openplanner.team/stops/H4rm107a", "https://tec.openplanner.team/stops/H4rm107d"], ["https://tec.openplanner.team/stops/N506abb", "https://tec.openplanner.team/stops/N512aea"], ["https://tec.openplanner.team/stops/H2mo122c", "https://tec.openplanner.team/stops/H2mo145b"], ["https://tec.openplanner.team/stops/H1hw120a", "https://tec.openplanner.team/stops/H1hw123a"], ["https://tec.openplanner.team/stops/X948ajb", "https://tec.openplanner.team/stops/X948ajc"], ["https://tec.openplanner.team/stops/LSNfays1", "https://tec.openplanner.team/stops/LSNness1"], ["https://tec.openplanner.team/stops/Bbuzcom2", "https://tec.openplanner.team/stops/Bnivvco2"], ["https://tec.openplanner.team/stops/H2me115a", "https://tec.openplanner.team/stops/H2me117a"], ["https://tec.openplanner.team/stops/H1mb129a", "https://tec.openplanner.team/stops/H1mb135b"], ["https://tec.openplanner.team/stops/Bwlhcsr2", "https://tec.openplanner.team/stops/Bwlhswc2"], ["https://tec.openplanner.team/stops/X608ala", "https://tec.openplanner.team/stops/X609adb"], ["https://tec.openplanner.team/stops/X891aba", "https://tec.openplanner.team/stops/X891abb"], ["https://tec.openplanner.team/stops/Bptrpla1", "https://tec.openplanner.team/stops/Bptrpla2"], ["https://tec.openplanner.team/stops/N577aca", "https://tec.openplanner.team/stops/N577aga"], ["https://tec.openplanner.team/stops/H1hn365a", "https://tec.openplanner.team/stops/H1ms940a"], ["https://tec.openplanner.team/stops/LVNleco2", "https://tec.openplanner.team/stops/LVNwanz2"], ["https://tec.openplanner.team/stops/Cgogb2", "https://tec.openplanner.team/stops/Cjucar02"], ["https://tec.openplanner.team/stops/H4ag100a", "https://tec.openplanner.team/stops/H4ag106b"], ["https://tec.openplanner.team/stops/Csbsart1", "https://tec.openplanner.team/stops/H1sa112b"], ["https://tec.openplanner.team/stops/LAWchau2", "https://tec.openplanner.team/stops/LBIfore1"], ["https://tec.openplanner.team/stops/H1ma233c", "https://tec.openplanner.team/stops/H1mj122b"], ["https://tec.openplanner.team/stops/CMmoul2", "https://tec.openplanner.team/stops/Cmorgof2"], ["https://tec.openplanner.team/stops/X345abb", "https://tec.openplanner.team/stops/X363aab"], ["https://tec.openplanner.team/stops/Bmanati1", "https://tec.openplanner.team/stops/H2mg135a"], ["https://tec.openplanner.team/stops/N526aaa", "https://tec.openplanner.team/stops/N526aab"], ["https://tec.openplanner.team/stops/N301aib", "https://tec.openplanner.team/stops/N301ajb"], ["https://tec.openplanner.team/stops/LAMjeha2", "https://tec.openplanner.team/stops/LJEtige2"], ["https://tec.openplanner.team/stops/Cmcbriq1", "https://tec.openplanner.team/stops/Cmcwir2"], ["https://tec.openplanner.team/stops/NL76aia", "https://tec.openplanner.team/stops/NL77ada"], ["https://tec.openplanner.team/stops/Ctilobb1", "https://tec.openplanner.team/stops/H1mc128b"], ["https://tec.openplanner.team/stops/LeLherz2", "https://tec.openplanner.team/stops/LkAkirc2"], ["https://tec.openplanner.team/stops/LRccent1", "https://tec.openplanner.team/stops/LRccent2"], ["https://tec.openplanner.team/stops/H5rx120b", "https://tec.openplanner.team/stops/H5rx126b"], ["https://tec.openplanner.team/stops/H1bi103a", "https://tec.openplanner.team/stops/H1bi103b"], ["https://tec.openplanner.team/stops/X991afa", "https://tec.openplanner.team/stops/X991aja"], ["https://tec.openplanner.team/stops/Cjubien2", "https://tec.openplanner.team/stops/Cjuunio2"], ["https://tec.openplanner.team/stops/Cradado1", "https://tec.openplanner.team/stops/Crajasm3"], ["https://tec.openplanner.team/stops/Lghviad1", "https://tec.openplanner.team/stops/Ljecocc2"], ["https://tec.openplanner.team/stops/N204agb", "https://tec.openplanner.team/stops/N204ahb"], ["https://tec.openplanner.team/stops/N244aeb", "https://tec.openplanner.team/stops/N244aub"], ["https://tec.openplanner.team/stops/N584bqa", "https://tec.openplanner.team/stops/NC12aab"], ["https://tec.openplanner.team/stops/X617ahb", "https://tec.openplanner.team/stops/X696aka"], ["https://tec.openplanner.team/stops/Lsnlhon1", "https://tec.openplanner.team/stops/Lsnvand1"], ["https://tec.openplanner.team/stops/H4cp103a", "https://tec.openplanner.team/stops/H4lz163a"], ["https://tec.openplanner.team/stops/X812ajb", "https://tec.openplanner.team/stops/X812aka"], ["https://tec.openplanner.team/stops/N563aab", "https://tec.openplanner.team/stops/N585alb"], ["https://tec.openplanner.team/stops/LAyheid1", "https://tec.openplanner.team/stops/LPRbayb2"], ["https://tec.openplanner.team/stops/N137aec", "https://tec.openplanner.team/stops/N137aga"], ["https://tec.openplanner.team/stops/X839aba", "https://tec.openplanner.team/stops/X839abd"], ["https://tec.openplanner.team/stops/H4pi131b", "https://tec.openplanner.team/stops/H4pi132a"], ["https://tec.openplanner.team/stops/N501bva", "https://tec.openplanner.team/stops/N501bwb"], ["https://tec.openplanner.team/stops/LWHmath2", "https://tec.openplanner.team/stops/LWSstat2"], ["https://tec.openplanner.team/stops/Bllngal1", "https://tec.openplanner.team/stops/Bllnmet1"], ["https://tec.openplanner.team/stops/X744aab", "https://tec.openplanner.team/stops/X746agc"], ["https://tec.openplanner.team/stops/N509ala", "https://tec.openplanner.team/stops/N509alb"], ["https://tec.openplanner.team/stops/Bovetwe1", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://tec.openplanner.team/stops/H2ll172b", "https://tec.openplanner.team/stops/H2ll181a"], ["https://tec.openplanner.team/stops/X908apa", "https://tec.openplanner.team/stops/X910aab"], ["https://tec.openplanner.team/stops/LDppana1", "https://tec.openplanner.team/stops/LTErest1"], ["https://tec.openplanner.team/stops/Lvegc-1*", "https://tec.openplanner.team/stops/Lveharm2"], ["https://tec.openplanner.team/stops/H1so132a", "https://tec.openplanner.team/stops/H1so132b"], ["https://tec.openplanner.team/stops/Blimrof1", "https://tec.openplanner.team/stops/Brixeur5"], ["https://tec.openplanner.team/stops/Lbocarr1", "https://tec.openplanner.team/stops/LTIcime1"], ["https://tec.openplanner.team/stops/LFethie1", "https://tec.openplanner.team/stops/LTrmaro2"], ["https://tec.openplanner.team/stops/X615akb", "https://tec.openplanner.team/stops/X615alb"], ["https://tec.openplanner.team/stops/N117aqb", "https://tec.openplanner.team/stops/N117bcb"], ["https://tec.openplanner.team/stops/X601aja", "https://tec.openplanner.team/stops/X601bta"], ["https://tec.openplanner.team/stops/X822acb", "https://tec.openplanner.team/stops/X822aqa"], ["https://tec.openplanner.team/stops/Cstgare1", "https://tec.openplanner.team/stops/Cstgare2"], ["https://tec.openplanner.team/stops/H4ka176a", "https://tec.openplanner.team/stops/H4ka176b"], ["https://tec.openplanner.team/stops/LDLbeau1", "https://tec.openplanner.team/stops/LHYwach1"], ["https://tec.openplanner.team/stops/X750avb", "https://tec.openplanner.team/stops/X750bfa"], ["https://tec.openplanner.team/stops/H4hx116a", "https://tec.openplanner.team/stops/H4hx123b"], ["https://tec.openplanner.team/stops/N235aba", "https://tec.openplanner.team/stops/N235aga"], ["https://tec.openplanner.team/stops/Lchsart2", "https://tec.openplanner.team/stops/LHAheml2"], ["https://tec.openplanner.team/stops/X746aea", "https://tec.openplanner.team/stops/X746agd"], ["https://tec.openplanner.team/stops/Blmlgar2", "https://tec.openplanner.team/stops/Blmlpla1"], ["https://tec.openplanner.team/stops/Brsggar2", "https://tec.openplanner.team/stops/Brsgter2"], ["https://tec.openplanner.team/stops/N540acc", "https://tec.openplanner.team/stops/N540ada"], ["https://tec.openplanner.team/stops/LWbboeg2", "https://tec.openplanner.team/stops/LWbburn2"], ["https://tec.openplanner.team/stops/X789aaa", "https://tec.openplanner.team/stops/X789aca"], ["https://tec.openplanner.team/stops/N522abc", "https://tec.openplanner.team/stops/N522afa"], ["https://tec.openplanner.team/stops/X793aca", "https://tec.openplanner.team/stops/X793aeb"], ["https://tec.openplanner.team/stops/Clddelh2", "https://tec.openplanner.team/stops/Cldplac2"], ["https://tec.openplanner.team/stops/Crocona1", "https://tec.openplanner.team/stops/Cromart2"], ["https://tec.openplanner.team/stops/Bhaldbo1", "https://tec.openplanner.team/stops/Blemwro1"], ["https://tec.openplanner.team/stops/Caimeno3", "https://tec.openplanner.team/stops/Caimeno4"], ["https://tec.openplanner.team/stops/LLrfagn1", "https://tec.openplanner.team/stops/LSMpoin2"], ["https://tec.openplanner.team/stops/LBEnina1", "https://tec.openplanner.team/stops/LBEnina6"], ["https://tec.openplanner.team/stops/H4av106d", "https://tec.openplanner.team/stops/H4ff115b"], ["https://tec.openplanner.team/stops/LFCscho2", "https://tec.openplanner.team/stops/LFCvoge3"], ["https://tec.openplanner.team/stops/LhEherb1", "https://tec.openplanner.team/stops/LhEherb2"], ["https://tec.openplanner.team/stops/X818arb", "https://tec.openplanner.team/stops/X818asd"], ["https://tec.openplanner.team/stops/LRchaie2", "https://tec.openplanner.team/stops/LRcjard1"], ["https://tec.openplanner.team/stops/LSTec--2", "https://tec.openplanner.team/stops/LSTrema2"], ["https://tec.openplanner.team/stops/Bjodppe2", "https://tec.openplanner.team/stops/Bjodpvi2"], ["https://tec.openplanner.team/stops/LEHhaut2", "https://tec.openplanner.team/stops/LEHmarc2"], ["https://tec.openplanner.team/stops/Lveclin2", "https://tec.openplanner.team/stops/Lverogi2"], ["https://tec.openplanner.team/stops/N106aea", "https://tec.openplanner.team/stops/N106aqa"], ["https://tec.openplanner.team/stops/LXofont1", "https://tec.openplanner.team/stops/X599afd"], ["https://tec.openplanner.team/stops/NL77aja", "https://tec.openplanner.team/stops/NL77ala"], ["https://tec.openplanner.team/stops/Bbeaegl2", "https://tec.openplanner.team/stops/Bbearwa2"], ["https://tec.openplanner.team/stops/Ctisart1", "https://tec.openplanner.team/stops/H1tt107a"], ["https://tec.openplanner.team/stops/X618aha", "https://tec.openplanner.team/stops/X618aia"], ["https://tec.openplanner.team/stops/LAVcime2", "https://tec.openplanner.team/stops/LAVstat1"], ["https://tec.openplanner.team/stops/H1ch132b", "https://tec.openplanner.team/stops/H4tm140b"], ["https://tec.openplanner.team/stops/Bcrbbou1", "https://tec.openplanner.team/stops/Bmsggra3"], ["https://tec.openplanner.team/stops/N534agb", "https://tec.openplanner.team/stops/N534cbh"], ["https://tec.openplanner.team/stops/LTPsatr2", "https://tec.openplanner.team/stops/LTPspay1"], ["https://tec.openplanner.team/stops/X823aaa", "https://tec.openplanner.team/stops/X823abb"], ["https://tec.openplanner.team/stops/LSkyern1", "https://tec.openplanner.team/stops/LYegeor1"], ["https://tec.openplanner.team/stops/LmYkirc2", "https://tec.openplanner.team/stops/LmYkreu1"], ["https://tec.openplanner.team/stops/Bolgegl2", "https://tec.openplanner.team/stops/Bolgegl4"], ["https://tec.openplanner.team/stops/LBveg--1", "https://tec.openplanner.team/stops/LBveg--2"], ["https://tec.openplanner.team/stops/X820aaa", "https://tec.openplanner.team/stops/X820aia"], ["https://tec.openplanner.team/stops/X661aib", "https://tec.openplanner.team/stops/X661bca"], ["https://tec.openplanner.team/stops/N248ada", "https://tec.openplanner.team/stops/N248aea"], ["https://tec.openplanner.team/stops/N220aab", "https://tec.openplanner.team/stops/N221aab"], ["https://tec.openplanner.team/stops/Cwgmart2", "https://tec.openplanner.team/stops/Cwgmell1"], ["https://tec.openplanner.team/stops/H2ha132b", "https://tec.openplanner.team/stops/H2ha139b"], ["https://tec.openplanner.team/stops/X831aab", "https://tec.openplanner.team/stops/X831abb"], ["https://tec.openplanner.team/stops/N501fsa", "https://tec.openplanner.team/stops/N501mtd"], ["https://tec.openplanner.team/stops/H5wo125b", "https://tec.openplanner.team/stops/H5wo134b"], ["https://tec.openplanner.team/stops/X768aka", "https://tec.openplanner.team/stops/X768amb"], ["https://tec.openplanner.team/stops/Bohnrpl1", "https://tec.openplanner.team/stops/Bohnrpl2"], ["https://tec.openplanner.team/stops/LSPClem2", "https://tec.openplanner.team/stops/LSPgare*"], ["https://tec.openplanner.team/stops/Lhrbell2", "https://tec.openplanner.team/stops/Lhrecol1"], ["https://tec.openplanner.team/stops/Llgdarc2", "https://tec.openplanner.team/stops/Llghec-3"], ["https://tec.openplanner.team/stops/Brixchw1", "https://tec.openplanner.team/stops/Brixwav3"], ["https://tec.openplanner.team/stops/Bpiepnd1", "https://tec.openplanner.team/stops/Bpiepnd2"], ["https://tec.openplanner.team/stops/X362aba", "https://tec.openplanner.team/stops/X362abb"], ["https://tec.openplanner.team/stops/LWEchat1", "https://tec.openplanner.team/stops/LWEhang1"], ["https://tec.openplanner.team/stops/H1ro132b", "https://tec.openplanner.team/stops/H1ro137b"], ["https://tec.openplanner.team/stops/Lwaeau-1", "https://tec.openplanner.team/stops/Lwaeau-2"], ["https://tec.openplanner.team/stops/H4he104a", "https://tec.openplanner.team/stops/H4he107b"], ["https://tec.openplanner.team/stops/Cfodepo2", "https://tec.openplanner.team/stops/CMpara1"], ["https://tec.openplanner.team/stops/NR21aca", "https://tec.openplanner.team/stops/NR21afb"], ["https://tec.openplanner.team/stops/H2go119a", "https://tec.openplanner.team/stops/H2se115a"], ["https://tec.openplanner.team/stops/N136aab", "https://tec.openplanner.team/stops/N136aea"], ["https://tec.openplanner.team/stops/Lgreg--1", "https://tec.openplanner.team/stops/Lgrgoff2"], ["https://tec.openplanner.team/stops/LBNeup21", "https://tec.openplanner.team/stops/LMemaza1"], ["https://tec.openplanner.team/stops/N509aqb", "https://tec.openplanner.team/stops/N509avb"], ["https://tec.openplanner.team/stops/Lmopast2", "https://tec.openplanner.team/stops/Lmopave1"], ["https://tec.openplanner.team/stops/LBKmare1", "https://tec.openplanner.team/stops/LBveg--1"], ["https://tec.openplanner.team/stops/X626aaa", "https://tec.openplanner.team/stops/X626aba"], ["https://tec.openplanner.team/stops/X989aga", "https://tec.openplanner.team/stops/X995aga"], ["https://tec.openplanner.team/stops/LAUcarr1", "https://tec.openplanner.team/stops/LAUpind2"], ["https://tec.openplanner.team/stops/LeUdepo1", "https://tec.openplanner.team/stops/LeUgend1"], ["https://tec.openplanner.team/stops/LrEdic71", "https://tec.openplanner.team/stops/LrEkape1"], ["https://tec.openplanner.team/stops/N558aaa", "https://tec.openplanner.team/stops/NL67ada"], ["https://tec.openplanner.team/stops/H5pe129a", "https://tec.openplanner.team/stops/H5pe146b"], ["https://tec.openplanner.team/stops/X650aka", "https://tec.openplanner.team/stops/X651aaa"], ["https://tec.openplanner.team/stops/Bwavcar1", "https://tec.openplanner.team/stops/Bwavlav1"], ["https://tec.openplanner.team/stops/LmIcafe1", "https://tec.openplanner.team/stops/LmIcafe2"], ["https://tec.openplanner.team/stops/LDmwaef2", "https://tec.openplanner.team/stops/LHovach2"], ["https://tec.openplanner.team/stops/X766aga", "https://tec.openplanner.team/stops/X766aha"], ["https://tec.openplanner.team/stops/H4me211b", "https://tec.openplanner.team/stops/H4me211c"], ["https://tec.openplanner.team/stops/X941adb", "https://tec.openplanner.team/stops/X942agb"], ["https://tec.openplanner.team/stops/Cjuplco2", "https://tec.openplanner.team/stops/Cjuspin2"], ["https://tec.openplanner.team/stops/X622aab", "https://tec.openplanner.team/stops/X622aea"], ["https://tec.openplanner.team/stops/H1gn150b", "https://tec.openplanner.team/stops/H1hq126a"], ["https://tec.openplanner.team/stops/N353aeb", "https://tec.openplanner.team/stops/N383abb"], ["https://tec.openplanner.team/stops/N360aab", "https://tec.openplanner.team/stops/N360acb"], ["https://tec.openplanner.team/stops/LTHcent1", "https://tec.openplanner.team/stops/LTHmaka1"], ["https://tec.openplanner.team/stops/X746aha", "https://tec.openplanner.team/stops/X746ahc"], ["https://tec.openplanner.team/stops/LFRcoun2", "https://tec.openplanner.team/stops/LFRsp1-1"], ["https://tec.openplanner.team/stops/Blasbpr1", "https://tec.openplanner.team/stops/Blasvil3"], ["https://tec.openplanner.team/stops/Cjumall1", "https://tec.openplanner.team/stops/Cjumall6"], ["https://tec.openplanner.team/stops/X822akb", "https://tec.openplanner.team/stops/X822ana"], ["https://tec.openplanner.team/stops/Cmlbevu1", "https://tec.openplanner.team/stops/Cmlcons1"], ["https://tec.openplanner.team/stops/Bsdafra2", "https://tec.openplanner.team/stops/Bsdapir2"], ["https://tec.openplanner.team/stops/H4bn174a", "https://tec.openplanner.team/stops/H4bn174b"], ["https://tec.openplanner.team/stops/LDLbois1", "https://tec.openplanner.team/stops/LLNcime1"], ["https://tec.openplanner.team/stops/H1ha190b", "https://tec.openplanner.team/stops/H1ob336b"], ["https://tec.openplanner.team/stops/LhOzent2", "https://tec.openplanner.team/stops/LhUkape1"], ["https://tec.openplanner.team/stops/LVIhala3", "https://tec.openplanner.team/stops/LVIhala4"], ["https://tec.openplanner.team/stops/LHYlinc1", "https://tec.openplanner.team/stops/LHYwach2"], ["https://tec.openplanner.team/stops/Bbiepon1", "https://tec.openplanner.team/stops/Bbiepon2"], ["https://tec.openplanner.team/stops/X734aga", "https://tec.openplanner.team/stops/X953aaa"], ["https://tec.openplanner.team/stops/LHreg--2", "https://tec.openplanner.team/stops/LHrwaya1"], ["https://tec.openplanner.team/stops/LKmdrie1", "https://tec.openplanner.team/stops/LKmeg--1"], ["https://tec.openplanner.team/stops/Bblaelo1", "https://tec.openplanner.team/stops/Bblaphi1"], ["https://tec.openplanner.team/stops/H1as104a", "https://tec.openplanner.team/stops/H1hg178a"], ["https://tec.openplanner.team/stops/LSTgran2", "https://tec.openplanner.team/stops/LSTparf2"], ["https://tec.openplanner.team/stops/Lchsart2", "https://tec.openplanner.team/stops/Lchtche2"], ["https://tec.openplanner.team/stops/H2fa100a", "https://tec.openplanner.team/stops/H2fa100b"], ["https://tec.openplanner.team/stops/Bhmmcha1", "https://tec.openplanner.team/stops/Bhmmgar1"], ["https://tec.openplanner.team/stops/Bbsicul2", "https://tec.openplanner.team/stops/Bbsihau1"], ["https://tec.openplanner.team/stops/X744aea", "https://tec.openplanner.team/stops/X744afa"], ["https://tec.openplanner.team/stops/H1ba107b", "https://tec.openplanner.team/stops/H1ba113b"], ["https://tec.openplanner.team/stops/Bmlncle1", "https://tec.openplanner.team/stops/Bmlnpab1"], ["https://tec.openplanner.team/stops/LBSvi321", "https://tec.openplanner.team/stops/LBSvi322"], ["https://tec.openplanner.team/stops/Cmyrays1", "https://tec.openplanner.team/stops/Cmyvesa2"], ["https://tec.openplanner.team/stops/Bpergar1", "https://tec.openplanner.team/stops/Bpermon3"], ["https://tec.openplanner.team/stops/Ctafran1", "https://tec.openplanner.team/stops/N543bka"], ["https://tec.openplanner.team/stops/Ljubonf1", "https://tec.openplanner.team/stops/Ljufore2"], ["https://tec.openplanner.team/stops/LCvneuf1", "https://tec.openplanner.team/stops/LCvoufn1"], ["https://tec.openplanner.team/stops/X786aca", "https://tec.openplanner.team/stops/X786aeb"], ["https://tec.openplanner.team/stops/X923afb", "https://tec.openplanner.team/stops/X923ara"], ["https://tec.openplanner.team/stops/X768aib", "https://tec.openplanner.team/stops/X769ala"], ["https://tec.openplanner.team/stops/N301agb", "https://tec.openplanner.team/stops/N340aia"], ["https://tec.openplanner.team/stops/Bsamfma1", "https://tec.openplanner.team/stops/Cwgmell4"], ["https://tec.openplanner.team/stops/LJvbane1", "https://tec.openplanner.team/stops/X576aga"], ["https://tec.openplanner.team/stops/X601bbd", "https://tec.openplanner.team/stops/X601bca"], ["https://tec.openplanner.team/stops/N520adb", "https://tec.openplanner.team/stops/N520aeb"], ["https://tec.openplanner.team/stops/Bhlvvil2", "https://tec.openplanner.team/stops/Bhlvvil3"], ["https://tec.openplanner.team/stops/H4be145a", "https://tec.openplanner.team/stops/H4be145b"], ["https://tec.openplanner.team/stops/NC44afb", "https://tec.openplanner.team/stops/NC44afc"], ["https://tec.openplanner.team/stops/N331afb", "https://tec.openplanner.team/stops/N331aga"], ["https://tec.openplanner.team/stops/LHUeuro1", "https://tec.openplanner.team/stops/LHUeuro2"], ["https://tec.openplanner.team/stops/X802apb", "https://tec.openplanner.team/stops/X882aha"], ["https://tec.openplanner.team/stops/Llghong1", "https://tec.openplanner.team/stops/Llghong2"], ["https://tec.openplanner.team/stops/Crajasm1", "https://tec.openplanner.team/stops/Crajasm4"], ["https://tec.openplanner.team/stops/LAvchpl1", "https://tec.openplanner.team/stops/LAvchpl2"], ["https://tec.openplanner.team/stops/X896aea", "https://tec.openplanner.team/stops/X896aia"], ["https://tec.openplanner.team/stops/Ccicloc2", "https://tec.openplanner.team/stops/Clvndam2"], ["https://tec.openplanner.team/stops/LaLkabi1", "https://tec.openplanner.team/stops/LBhschu2"], ["https://tec.openplanner.team/stops/Lanrois2", "https://tec.openplanner.team/stops/Lantonn2"], ["https://tec.openplanner.team/stops/Lalexpa1", "https://tec.openplanner.team/stops/Lrc594-2"], ["https://tec.openplanner.team/stops/LLrhaut1", "https://tec.openplanner.team/stops/LLrhaut2"], ["https://tec.openplanner.team/stops/X224aeb", "https://tec.openplanner.team/stops/X224afa"], ["https://tec.openplanner.team/stops/H4ty319b", "https://tec.openplanner.team/stops/H4ty345b"], ["https://tec.openplanner.team/stops/LBachpl1", "https://tec.openplanner.team/stops/LBavive2"], ["https://tec.openplanner.team/stops/X715aqb", "https://tec.openplanner.team/stops/X781ada"], ["https://tec.openplanner.team/stops/Ccocorb2", "https://tec.openplanner.team/stops/Cpcchau"], ["https://tec.openplanner.team/stops/Bottegl2", "https://tec.openplanner.team/stops/Bottpma2"], ["https://tec.openplanner.team/stops/X610aja", "https://tec.openplanner.team/stops/X696aea"], ["https://tec.openplanner.team/stops/N507ajb", "https://tec.openplanner.team/stops/N507aob"], ["https://tec.openplanner.team/stops/Lsecast1", "https://tec.openplanner.team/stops/Lsecast2"], ["https://tec.openplanner.team/stops/Lmiensp*", "https://tec.openplanner.team/stops/Lmitech1"], ["https://tec.openplanner.team/stops/X602akb", "https://tec.openplanner.team/stops/X602amb"], ["https://tec.openplanner.team/stops/Cselait2", "https://tec.openplanner.team/stops/Cselibe2"], ["https://tec.openplanner.team/stops/N118aga", "https://tec.openplanner.team/stops/N118aha"], ["https://tec.openplanner.team/stops/X659axb", "https://tec.openplanner.team/stops/X672aja"], ["https://tec.openplanner.team/stops/N254aca", "https://tec.openplanner.team/stops/N254acb"], ["https://tec.openplanner.team/stops/X839aaa", "https://tec.openplanner.team/stops/X839abd"], ["https://tec.openplanner.team/stops/LwYboui2", "https://tec.openplanner.team/stops/LwYkreu3"], ["https://tec.openplanner.team/stops/Ccugail1", "https://tec.openplanner.team/stops/Ccuphai4"], ["https://tec.openplanner.team/stops/X982bca", "https://tec.openplanner.team/stops/X982bja"], ["https://tec.openplanner.team/stops/H4pi131a", "https://tec.openplanner.team/stops/H4wp153b"], ["https://tec.openplanner.team/stops/LGMdrev1", "https://tec.openplanner.team/stops/LGMhadr1"], ["https://tec.openplanner.team/stops/N501gib", "https://tec.openplanner.team/stops/N501gnb"], ["https://tec.openplanner.team/stops/X734ahb", "https://tec.openplanner.team/stops/X734aia"], ["https://tec.openplanner.team/stops/Cfrmon4", "https://tec.openplanner.team/stops/Cfrmonu1"], ["https://tec.openplanner.team/stops/X850aja", "https://tec.openplanner.team/stops/X850akb"], ["https://tec.openplanner.team/stops/N517aeb", "https://tec.openplanner.team/stops/N517afb"], ["https://tec.openplanner.team/stops/X659agb", "https://tec.openplanner.team/stops/X659ana"], ["https://tec.openplanner.team/stops/H2hl111a", "https://tec.openplanner.team/stops/H2hl111b"], ["https://tec.openplanner.team/stops/Cmtcapi1", "https://tec.openplanner.team/stops/Cmtstan2"], ["https://tec.openplanner.team/stops/X615aaa", "https://tec.openplanner.team/stops/X615afb"], ["https://tec.openplanner.team/stops/H1ne138b", "https://tec.openplanner.team/stops/H1ne140a"], ["https://tec.openplanner.team/stops/X994aia", "https://tec.openplanner.team/stops/X994alb"], ["https://tec.openplanner.team/stops/H1fl133e", "https://tec.openplanner.team/stops/H1je219a"], ["https://tec.openplanner.team/stops/X721afa", "https://tec.openplanner.team/stops/X721afb"], ["https://tec.openplanner.team/stops/N534aua", "https://tec.openplanner.team/stops/N534bdb"], ["https://tec.openplanner.team/stops/Bcrnncb1", "https://tec.openplanner.team/stops/Bcrnnpl1"], ["https://tec.openplanner.team/stops/Lmitroi1", "https://tec.openplanner.team/stops/Lvtauna2"], ["https://tec.openplanner.team/stops/H1so135a", "https://tec.openplanner.team/stops/H1so135b"], ["https://tec.openplanner.team/stops/H4mo184a", "https://tec.openplanner.team/stops/H4mo205a"], ["https://tec.openplanner.team/stops/X618aca", "https://tec.openplanner.team/stops/X619ada"], ["https://tec.openplanner.team/stops/Ljuprev4", "https://tec.openplanner.team/stops/Llgcouv2"], ["https://tec.openplanner.team/stops/LAibego2", "https://tec.openplanner.team/stops/LCacoop1"], ["https://tec.openplanner.team/stops/Bsdabja1", "https://tec.openplanner.team/stops/Bsdafra1"], ["https://tec.openplanner.team/stops/Bolppla2", "https://tec.openplanner.team/stops/Bolppsn1"], ["https://tec.openplanner.team/stops/X717aab", "https://tec.openplanner.team/stops/X717aeb"], ["https://tec.openplanner.team/stops/Bbuzeta2", "https://tec.openplanner.team/stops/Cobhaut1"], ["https://tec.openplanner.team/stops/N501mha", "https://tec.openplanner.team/stops/N501mqa"], ["https://tec.openplanner.team/stops/Lflrhot1", "https://tec.openplanner.team/stops/Lflrhot2"], ["https://tec.openplanner.team/stops/N152aad", "https://tec.openplanner.team/stops/N152aaf"], ["https://tec.openplanner.team/stops/LNAdemo1", "https://tec.openplanner.team/stops/LYEphar1"], ["https://tec.openplanner.team/stops/X995ada", "https://tec.openplanner.team/stops/X995ade"], ["https://tec.openplanner.team/stops/Ccucroi1", "https://tec.openplanner.team/stops/Ccugail1"], ["https://tec.openplanner.team/stops/H1gh147a", "https://tec.openplanner.team/stops/H1gh148a"], ["https://tec.openplanner.team/stops/LBaeg--2", "https://tec.openplanner.team/stops/LBafagn1"], ["https://tec.openplanner.team/stops/X766adb", "https://tec.openplanner.team/stops/X766aja"], ["https://tec.openplanner.team/stops/Ccogrbu1", "https://tec.openplanner.team/stops/Ccosart1"], ["https://tec.openplanner.team/stops/N244ata", "https://tec.openplanner.team/stops/N244atb"], ["https://tec.openplanner.team/stops/Ljumart1", "https://tec.openplanner.team/stops/Ljumart2"], ["https://tec.openplanner.team/stops/LHAstal1", "https://tec.openplanner.team/stops/Lviweri2"], ["https://tec.openplanner.team/stops/X764aga", "https://tec.openplanner.team/stops/X764agb"], ["https://tec.openplanner.team/stops/Ccofayt1", "https://tec.openplanner.team/stops/Ccofayt2"], ["https://tec.openplanner.team/stops/Clodupr1", "https://tec.openplanner.team/stops/Clodupr2"], ["https://tec.openplanner.team/stops/N506bob", "https://tec.openplanner.team/stops/N506boc"], ["https://tec.openplanner.team/stops/X725bdb", "https://tec.openplanner.team/stops/X770aaa"], ["https://tec.openplanner.team/stops/H4lh118a", "https://tec.openplanner.team/stops/H5wo126b"], ["https://tec.openplanner.team/stops/H2bh105b", "https://tec.openplanner.team/stops/H2bh112a"], ["https://tec.openplanner.team/stops/X359agb", "https://tec.openplanner.team/stops/X359aha"], ["https://tec.openplanner.team/stops/Bmarmpr2", "https://tec.openplanner.team/stops/Bmarmru1"], ["https://tec.openplanner.team/stops/X721aka", "https://tec.openplanner.team/stops/X721ala"], ["https://tec.openplanner.team/stops/N513adb", "https://tec.openplanner.team/stops/N513aeb"], ["https://tec.openplanner.team/stops/H2ha127b", "https://tec.openplanner.team/stops/H2ha128b"], ["https://tec.openplanner.team/stops/H1cu117c", "https://tec.openplanner.team/stops/H1cu122a"], ["https://tec.openplanner.team/stops/H1og131a", "https://tec.openplanner.team/stops/H1og133b"], ["https://tec.openplanner.team/stops/Lwaaube2", "https://tec.openplanner.team/stops/Lwapomp2"], ["https://tec.openplanner.team/stops/LmR90--2", "https://tec.openplanner.team/stops/LmRkape1"], ["https://tec.openplanner.team/stops/N501jea", "https://tec.openplanner.team/stops/N501jja"], ["https://tec.openplanner.team/stops/X879aib", "https://tec.openplanner.team/stops/X879ana"], ["https://tec.openplanner.team/stops/Caihai81", "https://tec.openplanner.team/stops/Caioign3"], ["https://tec.openplanner.team/stops/Lstauna2", "https://tec.openplanner.team/stops/Lstetud1"], ["https://tec.openplanner.team/stops/H4os220a", "https://tec.openplanner.team/stops/H4os221c"], ["https://tec.openplanner.team/stops/Lvcchau2", "https://tec.openplanner.team/stops/Lvcchev1"], ["https://tec.openplanner.team/stops/X725bdb", "https://tec.openplanner.team/stops/X725bfa"], ["https://tec.openplanner.team/stops/Lcceclu2", "https://tec.openplanner.team/stops/LRarami2"], ["https://tec.openplanner.team/stops/Cromonn1", "https://tec.openplanner.team/stops/Cromonn2"], ["https://tec.openplanner.team/stops/H1el133a", "https://tec.openplanner.team/stops/H1el138b"], ["https://tec.openplanner.team/stops/X601bva", "https://tec.openplanner.team/stops/X601cda"], ["https://tec.openplanner.team/stops/H4pl111a", "https://tec.openplanner.team/stops/H4pl135a"], ["https://tec.openplanner.team/stops/Cctrobe1", "https://tec.openplanner.team/stops/NC11aia"], ["https://tec.openplanner.team/stops/LWAchpg2", "https://tec.openplanner.team/stops/LWAcost2"], ["https://tec.openplanner.team/stops/N104aka", "https://tec.openplanner.team/stops/N104akb"], ["https://tec.openplanner.team/stops/Cmgbrou1", "https://tec.openplanner.team/stops/Cmgbrou2"], ["https://tec.openplanner.team/stops/NC02aba", "https://tec.openplanner.team/stops/NC02abb"], ["https://tec.openplanner.team/stops/H5gr135a", "https://tec.openplanner.team/stops/H5gr138a"], ["https://tec.openplanner.team/stops/Ccspla", "https://tec.openplanner.team/stops/N162afb"], ["https://tec.openplanner.team/stops/Llgdepo5", "https://tec.openplanner.team/stops/Llgdepo6"], ["https://tec.openplanner.team/stops/N547aja", "https://tec.openplanner.team/stops/N548awa"], ["https://tec.openplanner.team/stops/H4bv145a", "https://tec.openplanner.team/stops/H4re226b"], ["https://tec.openplanner.team/stops/N221aaa", "https://tec.openplanner.team/stops/N221aab"], ["https://tec.openplanner.team/stops/N103aba", "https://tec.openplanner.team/stops/N103abb"], ["https://tec.openplanner.team/stops/Lsmlina*", "https://tec.openplanner.team/stops/Lsmpost2"], ["https://tec.openplanner.team/stops/N501bra", "https://tec.openplanner.team/stops/N501jbb"], ["https://tec.openplanner.team/stops/H4ga161d", "https://tec.openplanner.team/stops/H4ga167b"], ["https://tec.openplanner.team/stops/N525aba", "https://tec.openplanner.team/stops/N525abb"], ["https://tec.openplanner.team/stops/Bbiecim1", "https://tec.openplanner.team/stops/Bgzdast1"], ["https://tec.openplanner.team/stops/Brebeau2", "https://tec.openplanner.team/stops/Bsteegl1"], ["https://tec.openplanner.team/stops/N501edb", "https://tec.openplanner.team/stops/N501epd"], ["https://tec.openplanner.team/stops/H4bs111a", "https://tec.openplanner.team/stops/H4bs112a"], ["https://tec.openplanner.team/stops/H1ba109b", "https://tec.openplanner.team/stops/H1ba119d"], ["https://tec.openplanner.team/stops/X758ahb", "https://tec.openplanner.team/stops/X759agb"], ["https://tec.openplanner.team/stops/H5at111b", "https://tec.openplanner.team/stops/H5at235b"], ["https://tec.openplanner.team/stops/H4ty293a", "https://tec.openplanner.team/stops/H4ty354b"], ["https://tec.openplanner.team/stops/N501bzb", "https://tec.openplanner.team/stops/N502ada"], ["https://tec.openplanner.team/stops/N501arb", "https://tec.openplanner.team/stops/N501bab"], ["https://tec.openplanner.team/stops/Brixpla2", "https://tec.openplanner.team/stops/Brixpro2"], ["https://tec.openplanner.team/stops/Ldidefo2", "https://tec.openplanner.team/stops/Ldipl--5"], ["https://tec.openplanner.team/stops/H1he105a", "https://tec.openplanner.team/stops/H1he107a"], ["https://tec.openplanner.team/stops/N512agb", "https://tec.openplanner.team/stops/N512agd"], ["https://tec.openplanner.team/stops/Cvlbvir2", "https://tec.openplanner.team/stops/Cvlgrta2"], ["https://tec.openplanner.team/stops/N531alb", "https://tec.openplanner.team/stops/N568abb"], ["https://tec.openplanner.team/stops/Cchcase3", "https://tec.openplanner.team/stops/CMjans1"], ["https://tec.openplanner.team/stops/X947aaa", "https://tec.openplanner.team/stops/X948aba"], ["https://tec.openplanner.team/stops/LHHgare1", "https://tec.openplanner.team/stops/LHHpt--4"], ["https://tec.openplanner.team/stops/H4lp122a", "https://tec.openplanner.team/stops/H4lp125b"], ["https://tec.openplanner.team/stops/LLVboss1", "https://tec.openplanner.team/stops/LLVe75-1"], ["https://tec.openplanner.team/stops/LBRbriv2", "https://tec.openplanner.team/stops/LBRmout3"], ["https://tec.openplanner.team/stops/H1ms251b", "https://tec.openplanner.team/stops/H1ms267a"], ["https://tec.openplanner.team/stops/X904aia", "https://tec.openplanner.team/stops/X904aja"], ["https://tec.openplanner.team/stops/H1je222b", "https://tec.openplanner.team/stops/H1je366b"], ["https://tec.openplanner.team/stops/H1pa104b", "https://tec.openplanner.team/stops/H1pa109b"], ["https://tec.openplanner.team/stops/N212aka", "https://tec.openplanner.team/stops/N226acb"], ["https://tec.openplanner.team/stops/X992aab", "https://tec.openplanner.team/stops/X992aba"], ["https://tec.openplanner.team/stops/Bhencha1", "https://tec.openplanner.team/stops/Bhencha2"], ["https://tec.openplanner.team/stops/Bvxgegl1", "https://tec.openplanner.team/stops/Cgnquer1"], ["https://tec.openplanner.team/stops/N521apa", "https://tec.openplanner.team/stops/N521apb"], ["https://tec.openplanner.team/stops/H2be100a", "https://tec.openplanner.team/stops/H2be101a"], ["https://tec.openplanner.team/stops/LmIkirc1", "https://tec.openplanner.team/stops/LmIkirc2"], ["https://tec.openplanner.team/stops/Bcbqcht2", "https://tec.openplanner.team/stops/Bcbqp252"], ["https://tec.openplanner.team/stops/Ladchat2", "https://tec.openplanner.team/stops/Ldicorb1"], ["https://tec.openplanner.team/stops/Baudulb2", "https://tec.openplanner.team/stops/Bwolvan2"], ["https://tec.openplanner.team/stops/X824aba", "https://tec.openplanner.team/stops/X824aea"], ["https://tec.openplanner.team/stops/Lcaboun3", "https://tec.openplanner.team/stops/Lcaboun4"], ["https://tec.openplanner.team/stops/H4ty267b", "https://tec.openplanner.team/stops/H4ty328b"], ["https://tec.openplanner.team/stops/H1he111b", "https://tec.openplanner.team/stops/H4be112b"], ["https://tec.openplanner.team/stops/X721aha", "https://tec.openplanner.team/stops/X721ahb"], ["https://tec.openplanner.team/stops/LOcgdro3", "https://tec.openplanner.team/stops/NL35agb"], ["https://tec.openplanner.team/stops/Bbxlmid4", "https://tec.openplanner.team/stops/Bsgibla2"], ["https://tec.openplanner.team/stops/LATdame2", "https://tec.openplanner.team/stops/LWzwanz2"], ["https://tec.openplanner.team/stops/Loureno2", "https://tec.openplanner.team/stops/Lsttech2"], ["https://tec.openplanner.team/stops/Bbch4br2", "https://tec.openplanner.team/stops/Bbch4br4"], ["https://tec.openplanner.team/stops/Barqpla1", "https://tec.openplanner.team/stops/Bfelgar3"], ["https://tec.openplanner.team/stops/H1wa156b", "https://tec.openplanner.team/stops/H1wa160a"], ["https://tec.openplanner.team/stops/X643aaa", "https://tec.openplanner.team/stops/X643aba"], ["https://tec.openplanner.team/stops/LaAronh2", "https://tec.openplanner.team/stops/LVAbuss1"], ["https://tec.openplanner.team/stops/Cmaleri2", "https://tec.openplanner.team/stops/Cmmptno1"], ["https://tec.openplanner.team/stops/X992aga", "https://tec.openplanner.team/stops/X993aja"], ["https://tec.openplanner.team/stops/LORpave1", "https://tec.openplanner.team/stops/LORpave2"], ["https://tec.openplanner.team/stops/Lhrmare4", "https://tec.openplanner.team/stops/Lhrmare8"], ["https://tec.openplanner.team/stops/N501blb", "https://tec.openplanner.team/stops/N501chc"], ["https://tec.openplanner.team/stops/X982bqa", "https://tec.openplanner.team/stops/X982bqb"], ["https://tec.openplanner.team/stops/X717aga", "https://tec.openplanner.team/stops/X717agb"], ["https://tec.openplanner.team/stops/X907agb", "https://tec.openplanner.team/stops/X907ahb"], ["https://tec.openplanner.team/stops/N368acb", "https://tec.openplanner.team/stops/N368adb"], ["https://tec.openplanner.team/stops/N509awb", "https://tec.openplanner.team/stops/N509axb"], ["https://tec.openplanner.team/stops/H4to135b", "https://tec.openplanner.team/stops/H4to138a"], ["https://tec.openplanner.team/stops/X770abb", "https://tec.openplanner.team/stops/X770acb"], ["https://tec.openplanner.team/stops/NL76alc", "https://tec.openplanner.team/stops/NL76bca"], ["https://tec.openplanner.team/stops/Llgbour1", "https://tec.openplanner.team/stops/Llgcbat1"], ["https://tec.openplanner.team/stops/H1cu114b", "https://tec.openplanner.team/stops/H1cu131a"], ["https://tec.openplanner.team/stops/H4po126a", "https://tec.openplanner.team/stops/H4po130a"], ["https://tec.openplanner.team/stops/X945abc", "https://tec.openplanner.team/stops/X945aca"], ["https://tec.openplanner.team/stops/H1ht133b", "https://tec.openplanner.team/stops/H1ht136a"], ["https://tec.openplanner.team/stops/N134afa", "https://tec.openplanner.team/stops/N152abd"], ["https://tec.openplanner.team/stops/LPbchat2", "https://tec.openplanner.team/stops/LSIters1"], ["https://tec.openplanner.team/stops/H1sy143d", "https://tec.openplanner.team/stops/H1sy150b"], ["https://tec.openplanner.team/stops/X623aeb", "https://tec.openplanner.team/stops/X624aab"], ["https://tec.openplanner.team/stops/H1er112a", "https://tec.openplanner.team/stops/H1pe130a"], ["https://tec.openplanner.team/stops/LVNleco2", "https://tec.openplanner.team/stops/LWzwanz2"], ["https://tec.openplanner.team/stops/Llgstvi2", "https://tec.openplanner.team/stops/Llgstvi3"], ["https://tec.openplanner.team/stops/X903aca", "https://tec.openplanner.team/stops/X903ada"], ["https://tec.openplanner.team/stops/X637agd", "https://tec.openplanner.team/stops/X637aob"], ["https://tec.openplanner.team/stops/N522aea", "https://tec.openplanner.team/stops/N522ala"], ["https://tec.openplanner.team/stops/H1gg115b", "https://tec.openplanner.team/stops/H1gg145b"], ["https://tec.openplanner.team/stops/Lalverr2", "https://tec.openplanner.team/stops/Lladete3"], ["https://tec.openplanner.team/stops/H4ru235a", "https://tec.openplanner.team/stops/H4ru245b"], ["https://tec.openplanner.team/stops/LBVcent2", "https://tec.openplanner.team/stops/LRffroi1"], ["https://tec.openplanner.team/stops/X796aaa", "https://tec.openplanner.team/stops/X796aba"], ["https://tec.openplanner.team/stops/N337aia", "https://tec.openplanner.team/stops/N339aab"], ["https://tec.openplanner.team/stops/Cliburl1", "https://tec.openplanner.team/stops/Cliegli1"], ["https://tec.openplanner.team/stops/Lagresi2", "https://tec.openplanner.team/stops/Lagvall2"], ["https://tec.openplanner.team/stops/X921ala", "https://tec.openplanner.team/stops/X921alb"], ["https://tec.openplanner.team/stops/Cmltemp5", "https://tec.openplanner.team/stops/Cmlvpla1"], ["https://tec.openplanner.team/stops/H4av106b", "https://tec.openplanner.team/stops/H4ff117b"], ["https://tec.openplanner.team/stops/Cvthoeu1", "https://tec.openplanner.team/stops/Cvthoeu2"], ["https://tec.openplanner.team/stops/LDmdomm1", "https://tec.openplanner.team/stops/LSGmale1"], ["https://tec.openplanner.team/stops/LTiec--1", "https://tec.openplanner.team/stops/LTiec--2"], ["https://tec.openplanner.team/stops/LPOeg--1", "https://tec.openplanner.team/stops/LPOeg--2"], ["https://tec.openplanner.team/stops/H4ty291a", "https://tec.openplanner.team/stops/H4ty351b"], ["https://tec.openplanner.team/stops/X982aeb", "https://tec.openplanner.team/stops/X982aja"], ["https://tec.openplanner.team/stops/Cslbhau1", "https://tec.openplanner.team/stops/Cvtvail2"], ["https://tec.openplanner.team/stops/LSkathe2", "https://tec.openplanner.team/stops/LSkcomb2"], ["https://tec.openplanner.team/stops/Bnivfdu1", "https://tec.openplanner.team/stops/Bnivn972"], ["https://tec.openplanner.team/stops/N331aka", "https://tec.openplanner.team/stops/N331akb"], ["https://tec.openplanner.team/stops/X669aaa", "https://tec.openplanner.team/stops/X669abd"], ["https://tec.openplanner.team/stops/X902bca", "https://tec.openplanner.team/stops/X999aka"], ["https://tec.openplanner.team/stops/Cchsud03", "https://tec.openplanner.team/stops/Cchsud04"], ["https://tec.openplanner.team/stops/N261aha", "https://tec.openplanner.team/stops/N337aib"], ["https://tec.openplanner.team/stops/H5pe127a", "https://tec.openplanner.team/stops/H5pe176a"], ["https://tec.openplanner.team/stops/X771ahb", "https://tec.openplanner.team/stops/X771anb"], ["https://tec.openplanner.team/stops/Bsenpeu2", "https://tec.openplanner.team/stops/H2se107a"], ["https://tec.openplanner.team/stops/Lmojoan2", "https://tec.openplanner.team/stops/Lmopans4"], ["https://tec.openplanner.team/stops/LeUhaas2", "https://tec.openplanner.team/stops/LeUhaas3"], ["https://tec.openplanner.team/stops/N543axb", "https://tec.openplanner.team/stops/N543ayb"], ["https://tec.openplanner.team/stops/H1ne137a", "https://tec.openplanner.team/stops/H1ne143a"], ["https://tec.openplanner.team/stops/H4av105b", "https://tec.openplanner.team/stops/H4av106a"], ["https://tec.openplanner.team/stops/X818akb", "https://tec.openplanner.team/stops/X818alb"], ["https://tec.openplanner.team/stops/Bnivphm1", "https://tec.openplanner.team/stops/Bnivvcw2"], ["https://tec.openplanner.team/stops/Cmmcver2", "https://tec.openplanner.team/stops/Cmmecol2"], ["https://tec.openplanner.team/stops/LmYamel1", "https://tec.openplanner.team/stops/LmYwall1"], ["https://tec.openplanner.team/stops/H5qu143a", "https://tec.openplanner.team/stops/H5qu143b"], ["https://tec.openplanner.team/stops/X651afa", "https://tec.openplanner.team/stops/X651afb"], ["https://tec.openplanner.team/stops/H2ha127a", "https://tec.openplanner.team/stops/H2ha138b"], ["https://tec.openplanner.team/stops/N131agb", "https://tec.openplanner.team/stops/N131ahb"], ["https://tec.openplanner.team/stops/N425aba", "https://tec.openplanner.team/stops/N425abb"], ["https://tec.openplanner.team/stops/Bezegar2", "https://tec.openplanner.team/stops/Bgoemho1"], ["https://tec.openplanner.team/stops/N515apb", "https://tec.openplanner.team/stops/N518acd"], ["https://tec.openplanner.team/stops/H2ll187a", "https://tec.openplanner.team/stops/H2ll198b"], ["https://tec.openplanner.team/stops/N244aga", "https://tec.openplanner.team/stops/N244ahb"], ["https://tec.openplanner.team/stops/LEShony1", "https://tec.openplanner.team/stops/LTIdonn1"], ["https://tec.openplanner.team/stops/LeLbutg2", "https://tec.openplanner.team/stops/LeLbutg3"], ["https://tec.openplanner.team/stops/Ctaprai3", "https://tec.openplanner.team/stops/Cwfzola1"], ["https://tec.openplanner.team/stops/LLbcafe1", "https://tec.openplanner.team/stops/LLbquar1"], ["https://tec.openplanner.team/stops/NC11afa", "https://tec.openplanner.team/stops/NC11amb"], ["https://tec.openplanner.team/stops/Cgogrco1", "https://tec.openplanner.team/stops/Cjuchli4"], ["https://tec.openplanner.team/stops/Bhvlpla1", "https://tec.openplanner.team/stops/Bhvltol1"], ["https://tec.openplanner.team/stops/Bbsiabb2", "https://tec.openplanner.team/stops/Bbsicas1"], ["https://tec.openplanner.team/stops/H1br122a", "https://tec.openplanner.team/stops/H1ev149a"], ["https://tec.openplanner.team/stops/H1ch107b", "https://tec.openplanner.team/stops/H1ch141b"], ["https://tec.openplanner.team/stops/H1bo107a", "https://tec.openplanner.team/stops/H1bo107b"], ["https://tec.openplanner.team/stops/H1gi123b", "https://tec.openplanner.team/stops/H1ry137b"], ["https://tec.openplanner.team/stops/N113ada", "https://tec.openplanner.team/stops/N113adb"], ["https://tec.openplanner.team/stops/LsVeite2", "https://tec.openplanner.team/stops/LwSbrei2"], ["https://tec.openplanner.team/stops/Cchdaup1", "https://tec.openplanner.team/stops/Cchvhau2"], ["https://tec.openplanner.team/stops/H1el138a", "https://tec.openplanner.team/stops/H1el138b"], ["https://tec.openplanner.team/stops/CMprov1", "https://tec.openplanner.team/stops/CMprov2"], ["https://tec.openplanner.team/stops/LMOfleu2", "https://tec.openplanner.team/stops/LMOstat2"], ["https://tec.openplanner.team/stops/H4ar173a", "https://tec.openplanner.team/stops/H4ar173b"], ["https://tec.openplanner.team/stops/Cluberl1", "https://tec.openplanner.team/stops/Cluberl2"], ["https://tec.openplanner.team/stops/LDLbaye1", "https://tec.openplanner.team/stops/LDLboul1"], ["https://tec.openplanner.team/stops/LaAronh1", "https://tec.openplanner.team/stops/LaAseba2"], ["https://tec.openplanner.team/stops/NC11ard", "https://tec.openplanner.team/stops/NC44ada"], ["https://tec.openplanner.team/stops/N542acc", "https://tec.openplanner.team/stops/N542ama"], ["https://tec.openplanner.team/stops/Cmcegli4", "https://tec.openplanner.team/stops/Cmcwic1"], ["https://tec.openplanner.team/stops/X937ada", "https://tec.openplanner.team/stops/X937ahb"], ["https://tec.openplanner.team/stops/Bwavtas1", "https://tec.openplanner.team/stops/Bwavtas3"], ["https://tec.openplanner.team/stops/Bneehou2", "https://tec.openplanner.team/stops/Bneepne2"], ["https://tec.openplanner.team/stops/Cmobeau2", "https://tec.openplanner.team/stops/Cmovies1"], ["https://tec.openplanner.team/stops/LeUath%C3%A41", "https://tec.openplanner.team/stops/LeUlasc1"], ["https://tec.openplanner.team/stops/LCvneuv5", "https://tec.openplanner.team/stops/LCvoufn1"], ["https://tec.openplanner.team/stops/X768aja", "https://tec.openplanner.team/stops/X768aka"], ["https://tec.openplanner.team/stops/Bjdscnd1", "https://tec.openplanner.team/stops/Bjodgai1"], ["https://tec.openplanner.team/stops/LAUcarr1", "https://tec.openplanner.team/stops/LFdeg--1"], ["https://tec.openplanner.team/stops/N308aba", "https://tec.openplanner.team/stops/N308abb"], ["https://tec.openplanner.team/stops/N209aea", "https://tec.openplanner.team/stops/N209ahb"], ["https://tec.openplanner.team/stops/Llgoutr2", "https://tec.openplanner.team/stops/Llgoutr3"], ["https://tec.openplanner.team/stops/LFCotte2", "https://tec.openplanner.team/stops/LMastat3"], ["https://tec.openplanner.team/stops/N230adb", "https://tec.openplanner.team/stops/N230aga"], ["https://tec.openplanner.team/stops/Bbstbxl2", "https://tec.openplanner.team/stops/Bwaypon1"], ["https://tec.openplanner.team/stops/Lcebois1", "https://tec.openplanner.team/stops/Lcepoul1"], ["https://tec.openplanner.team/stops/Lbrbass2", "https://tec.openplanner.team/stops/Lgrfrai1"], ["https://tec.openplanner.team/stops/X626aea", "https://tec.openplanner.team/stops/X626ana"], ["https://tec.openplanner.team/stops/X879aka", "https://tec.openplanner.team/stops/X879akb"], ["https://tec.openplanner.team/stops/H1sd342a", "https://tec.openplanner.team/stops/H1th181a"], ["https://tec.openplanner.team/stops/Lhrbrou2", "https://tec.openplanner.team/stops/Lhrrhee*"], ["https://tec.openplanner.team/stops/Bjodcsb1", "https://tec.openplanner.team/stops/Bjodmal1"], ["https://tec.openplanner.team/stops/X886aab", "https://tec.openplanner.team/stops/X889acb"], ["https://tec.openplanner.team/stops/H2na131b", "https://tec.openplanner.team/stops/H2na132b"], ["https://tec.openplanner.team/stops/H4wp151a", "https://tec.openplanner.team/stops/H4wp151b"], ["https://tec.openplanner.team/stops/Ccyfroi2", "https://tec.openplanner.team/stops/NH01aea"], ["https://tec.openplanner.team/stops/LMOlens1", "https://tec.openplanner.team/stops/LMOpiss1"], ["https://tec.openplanner.team/stops/LWalibo2", "https://tec.openplanner.team/stops/LWalyce2"], ["https://tec.openplanner.team/stops/LsVgend1", "https://tec.openplanner.team/stops/LsVhunn2"], ["https://tec.openplanner.team/stops/N557aia", "https://tec.openplanner.team/stops/N562bhb"], ["https://tec.openplanner.team/stops/H4ga152a", "https://tec.openplanner.team/stops/H4ga167a"], ["https://tec.openplanner.team/stops/Bramcar1", "https://tec.openplanner.team/stops/Bramgar1"], ["https://tec.openplanner.team/stops/X858afb", "https://tec.openplanner.team/stops/X858agb"], ["https://tec.openplanner.team/stops/Lseberg1", "https://tec.openplanner.team/stops/Lsecoop1"], ["https://tec.openplanner.team/stops/Lgrbell1", "https://tec.openplanner.team/stops/Lgrcral2"], ["https://tec.openplanner.team/stops/H4fl115a", "https://tec.openplanner.team/stops/H4fl179b"], ["https://tec.openplanner.team/stops/N517aba", "https://tec.openplanner.team/stops/N517afa"], ["https://tec.openplanner.team/stops/N539bfa", "https://tec.openplanner.team/stops/N539bgb"], ["https://tec.openplanner.team/stops/H1ge151a", "https://tec.openplanner.team/stops/H1ge179b"], ["https://tec.openplanner.team/stops/Lfhgara1", "https://tec.openplanner.team/stops/Lfhrogn2"], ["https://tec.openplanner.team/stops/X982ada", "https://tec.openplanner.team/stops/X982btb"], ["https://tec.openplanner.team/stops/X801cib", "https://tec.openplanner.team/stops/X801cnb"], ["https://tec.openplanner.team/stops/LSyeg--2", "https://tec.openplanner.team/stops/LSypesy1"], ["https://tec.openplanner.team/stops/H1bl101a", "https://tec.openplanner.team/stops/H1bl107a"], ["https://tec.openplanner.team/stops/N573abb", "https://tec.openplanner.team/stops/NC14ada"], ["https://tec.openplanner.team/stops/LGOcana1", "https://tec.openplanner.team/stops/LGOhevr1"], ["https://tec.openplanner.team/stops/X923aia", "https://tec.openplanner.team/stops/X923aja"], ["https://tec.openplanner.team/stops/LLscent1", "https://tec.openplanner.team/stops/LRcsilo2"], ["https://tec.openplanner.team/stops/LLrisa-*", "https://tec.openplanner.team/stops/LSMlier2"], ["https://tec.openplanner.team/stops/Ljuchap1", "https://tec.openplanner.team/stops/Ljujaur1"], ["https://tec.openplanner.team/stops/N301aob", "https://tec.openplanner.team/stops/N302afa"], ["https://tec.openplanner.team/stops/LWibare1", "https://tec.openplanner.team/stops/LWibare2"], ["https://tec.openplanner.team/stops/X621aeb", "https://tec.openplanner.team/stops/X622adb"], ["https://tec.openplanner.team/stops/Lalexpa2", "https://tec.openplanner.team/stops/Lalhomb2"], ["https://tec.openplanner.team/stops/H4bf105b", "https://tec.openplanner.team/stops/H4bf107a"], ["https://tec.openplanner.team/stops/LoDkoll2", "https://tec.openplanner.team/stops/LoDschu1"], ["https://tec.openplanner.team/stops/Lgrclin4", "https://tec.openplanner.team/stops/Lvcdumo2"], ["https://tec.openplanner.team/stops/Cplcafp1", "https://tec.openplanner.team/stops/Cpllimi5"], ["https://tec.openplanner.team/stops/H4ga150b", "https://tec.openplanner.team/stops/H4ga163a"], ["https://tec.openplanner.team/stops/LSdbote1", "https://tec.openplanner.team/stops/LSdbote2"], ["https://tec.openplanner.team/stops/LRRecsc*", "https://tec.openplanner.team/stops/LRRpost2"], ["https://tec.openplanner.team/stops/N529aaa", "https://tec.openplanner.team/stops/N529abc"], ["https://tec.openplanner.team/stops/H4ir163c", "https://tec.openplanner.team/stops/H4ir163d"], ["https://tec.openplanner.team/stops/H1al108a", "https://tec.openplanner.team/stops/H1al146b"], ["https://tec.openplanner.team/stops/Cvp3til2", "https://tec.openplanner.team/stops/Cvpchat1"], ["https://tec.openplanner.team/stops/H4lg100a", "https://tec.openplanner.team/stops/H4ta119a"], ["https://tec.openplanner.team/stops/N311aaa", "https://tec.openplanner.team/stops/N311afb"], ["https://tec.openplanner.team/stops/Bbalvil1", "https://tec.openplanner.team/stops/N584aqa"], ["https://tec.openplanner.team/stops/X660aha", "https://tec.openplanner.team/stops/X660aja"], ["https://tec.openplanner.team/stops/LaNmuhl2", "https://tec.openplanner.team/stops/LsC216-2"], ["https://tec.openplanner.team/stops/LROandr2", "https://tec.openplanner.team/stops/LROhaie1"], ["https://tec.openplanner.team/stops/LCvneu-2", "https://tec.openplanner.team/stops/LLEgare1"], ["https://tec.openplanner.team/stops/Bptrcra2", "https://tec.openplanner.team/stops/Bptrvil1"], ["https://tec.openplanner.team/stops/Llgcont1", "https://tec.openplanner.team/stops/Llgparc1"], ["https://tec.openplanner.team/stops/X715acb", "https://tec.openplanner.team/stops/X715acc"], ["https://tec.openplanner.team/stops/LLSba6-1", "https://tec.openplanner.team/stops/LTOplac1"], ["https://tec.openplanner.team/stops/Lscferr1", "https://tec.openplanner.team/stops/Lscgare1"], ["https://tec.openplanner.team/stops/Csurela4", "https://tec.openplanner.team/stops/Csygare3"], ["https://tec.openplanner.team/stops/Lstphys1", "https://tec.openplanner.team/stops/Lstpoly1"], ["https://tec.openplanner.team/stops/LgAnr492", "https://tec.openplanner.team/stops/LsVgesc1"], ["https://tec.openplanner.team/stops/H1al107b", "https://tec.openplanner.team/stops/H1bs110c"], ["https://tec.openplanner.team/stops/Bsdacab2", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/Bernpon1", "https://tec.openplanner.team/stops/Bgrmfga2"], ["https://tec.openplanner.team/stops/X757aba", "https://tec.openplanner.team/stops/X757aga"], ["https://tec.openplanner.team/stops/H1ba119a", "https://tec.openplanner.team/stops/H1ba120a"], ["https://tec.openplanner.team/stops/X941aea", "https://tec.openplanner.team/stops/X941aga"], ["https://tec.openplanner.team/stops/Cpcbrig2", "https://tec.openplanner.team/stops/Cpccpas1"], ["https://tec.openplanner.team/stops/N218acb", "https://tec.openplanner.team/stops/N218aeb"], ["https://tec.openplanner.team/stops/Cfanoci2", "https://tec.openplanner.team/stops/Cfanvmo1"], ["https://tec.openplanner.team/stops/Cmmpast1", "https://tec.openplanner.team/stops/Cmmpast2"], ["https://tec.openplanner.team/stops/H4hx121a", "https://tec.openplanner.team/stops/H4hx121b"], ["https://tec.openplanner.team/stops/H5pe131b", "https://tec.openplanner.team/stops/H5pe151b"], ["https://tec.openplanner.team/stops/Cgogrco2", "https://tec.openplanner.team/stops/Cgoobse1"], ["https://tec.openplanner.team/stops/Bwavdel1", "https://tec.openplanner.team/stops/Bwavfol2"], ["https://tec.openplanner.team/stops/H1mc128a", "https://tec.openplanner.team/stops/H1mc128b"], ["https://tec.openplanner.team/stops/Cbmpopr2", "https://tec.openplanner.team/stops/Clcfall1"], ["https://tec.openplanner.team/stops/LkEherg2", "https://tec.openplanner.team/stops/LVAgemm1"], ["https://tec.openplanner.team/stops/LLTther1", "https://tec.openplanner.team/stops/LTOeg--2"], ["https://tec.openplanner.team/stops/X735aab", "https://tec.openplanner.team/stops/X735abc"], ["https://tec.openplanner.team/stops/Bcbqcim2", "https://tec.openplanner.team/stops/Blemsta1"], ["https://tec.openplanner.team/stops/Cctchea2", "https://tec.openplanner.team/stops/Cctvche2"], ["https://tec.openplanner.team/stops/Lghhoco1", "https://tec.openplanner.team/stops/Lghhoco2"], ["https://tec.openplanner.team/stops/Caccera1", "https://tec.openplanner.team/stops/NC11alb"], ["https://tec.openplanner.team/stops/LENengi2", "https://tec.openplanner.team/stops/LENgend2"], ["https://tec.openplanner.team/stops/H2be101a", "https://tec.openplanner.team/stops/H2lh124b"], ["https://tec.openplanner.team/stops/Ccutrav1", "https://tec.openplanner.team/stops/Ccutrav5"], ["https://tec.openplanner.team/stops/X768aca", "https://tec.openplanner.team/stops/X768acb"], ["https://tec.openplanner.team/stops/LLTgole1", "https://tec.openplanner.team/stops/LLTgole2"], ["https://tec.openplanner.team/stops/N501erb", "https://tec.openplanner.team/stops/N501gga"], ["https://tec.openplanner.team/stops/H1gy111a", "https://tec.openplanner.team/stops/H1gy115a"], ["https://tec.openplanner.team/stops/H1so131f", "https://tec.openplanner.team/stops/H1so137a"], ["https://tec.openplanner.team/stops/Lscchat1", "https://tec.openplanner.team/stops/Lscchat2"], ["https://tec.openplanner.team/stops/LBPauto2", "https://tec.openplanner.team/stops/LBPrueg1"], ["https://tec.openplanner.team/stops/Lveptle4", "https://tec.openplanner.team/stops/Lveveou2"], ["https://tec.openplanner.team/stops/N232acb", "https://tec.openplanner.team/stops/N232ada"], ["https://tec.openplanner.team/stops/H4ga150a", "https://tec.openplanner.team/stops/H4ga166a"], ["https://tec.openplanner.team/stops/LCShoux2", "https://tec.openplanner.team/stops/LSShous2"], ["https://tec.openplanner.team/stops/Bitrcen1", "https://tec.openplanner.team/stops/Bitrmon2"], ["https://tec.openplanner.team/stops/N557aac", "https://tec.openplanner.team/stops/N557afb"], ["https://tec.openplanner.team/stops/Cchhopi4", "https://tec.openplanner.team/stops/CMjans2"], ["https://tec.openplanner.team/stops/X725afd", "https://tec.openplanner.team/stops/X725aha"], ["https://tec.openplanner.team/stops/H1he102a", "https://tec.openplanner.team/stops/H1he109a"], ["https://tec.openplanner.team/stops/LRRbuta1", "https://tec.openplanner.team/stops/LRRchea6"], ["https://tec.openplanner.team/stops/LAvambr2", "https://tec.openplanner.team/stops/LMXempe1"], ["https://tec.openplanner.team/stops/Bwatnro1", "https://tec.openplanner.team/stops/Bwatppa1"], ["https://tec.openplanner.team/stops/LPRfond1", "https://tec.openplanner.team/stops/LPRfond2"], ["https://tec.openplanner.team/stops/X626aia", "https://tec.openplanner.team/stops/X626ala"], ["https://tec.openplanner.team/stops/Lagrask1", "https://tec.openplanner.team/stops/Lagtenn1"], ["https://tec.openplanner.team/stops/N127aeb", "https://tec.openplanner.team/stops/N135bdb"], ["https://tec.openplanner.team/stops/Bsambra1", "https://tec.openplanner.team/stops/Bsamfma1"], ["https://tec.openplanner.team/stops/N507alc", "https://tec.openplanner.team/stops/N512ama"], ["https://tec.openplanner.team/stops/H1gn152a", "https://tec.openplanner.team/stops/H1gn152b"], ["https://tec.openplanner.team/stops/N501cpb", "https://tec.openplanner.team/stops/N501cqa"], ["https://tec.openplanner.team/stops/Lemarti2", "https://tec.openplanner.team/stops/Lemboul2"], ["https://tec.openplanner.team/stops/Lflcle-5", "https://tec.openplanner.team/stops/Lflcle-6"], ["https://tec.openplanner.team/stops/Bottpma1", "https://tec.openplanner.team/stops/Bottpma2"], ["https://tec.openplanner.team/stops/H1gr110b", "https://tec.openplanner.team/stops/H1hr127a"], ["https://tec.openplanner.team/stops/NC14anb", "https://tec.openplanner.team/stops/NC24agb"], ["https://tec.openplanner.team/stops/H1fl138a", "https://tec.openplanner.team/stops/H1qu108a"], ["https://tec.openplanner.team/stops/Lbrcygn1", "https://tec.openplanner.team/stops/Lbrmour1"], ["https://tec.openplanner.team/stops/X808aja", "https://tec.openplanner.team/stops/X808ama"], ["https://tec.openplanner.team/stops/Lfllapi3", "https://tec.openplanner.team/stops/Lflterm2"], ["https://tec.openplanner.team/stops/X342aba", "https://tec.openplanner.team/stops/X342abb"], ["https://tec.openplanner.team/stops/Lvearle2", "https://tec.openplanner.team/stops/Lvehoug2"], ["https://tec.openplanner.team/stops/X808aea", "https://tec.openplanner.team/stops/X809afa"], ["https://tec.openplanner.team/stops/X713aga", "https://tec.openplanner.team/stops/X713aha"], ["https://tec.openplanner.team/stops/H1wa132a", "https://tec.openplanner.team/stops/H1wa145b"], ["https://tec.openplanner.team/stops/N544aga", "https://tec.openplanner.team/stops/N544agb"], ["https://tec.openplanner.team/stops/H4ne132a", "https://tec.openplanner.team/stops/H4ne139b"], ["https://tec.openplanner.team/stops/LoDschu2", "https://tec.openplanner.team/stops/LoDulf-2"], ["https://tec.openplanner.team/stops/Ljucano1", "https://tec.openplanner.team/stops/Ljuetie1"], ["https://tec.openplanner.team/stops/H2mg140c", "https://tec.openplanner.team/stops/H2mg143a"], ["https://tec.openplanner.team/stops/H4mt214b", "https://tec.openplanner.team/stops/H4mt220a"], ["https://tec.openplanner.team/stops/H4bi100a", "https://tec.openplanner.team/stops/H4eg105b"], ["https://tec.openplanner.team/stops/LHthest1", "https://tec.openplanner.team/stops/LHthest2"], ["https://tec.openplanner.team/stops/LDppana1", "https://tec.openplanner.team/stops/LVu40--2"], ["https://tec.openplanner.team/stops/H1gq153a", "https://tec.openplanner.team/stops/H1hq124b"], ["https://tec.openplanner.team/stops/LHEclef1", "https://tec.openplanner.team/stops/LJOvill2"], ["https://tec.openplanner.team/stops/H4bx167a", "https://tec.openplanner.team/stops/H4tf147b"], ["https://tec.openplanner.team/stops/Cmyecur1", "https://tec.openplanner.team/stops/Cmygrbr2"], ["https://tec.openplanner.team/stops/LSEcent1", "https://tec.openplanner.team/stops/LSEcent2"], ["https://tec.openplanner.team/stops/H4ea132a", "https://tec.openplanner.team/stops/H4ea132b"], ["https://tec.openplanner.team/stops/Lrofont1", "https://tec.openplanner.team/stops/Lrosaun2"], ["https://tec.openplanner.team/stops/LHegame2", "https://tec.openplanner.team/stops/LHegame3"], ["https://tec.openplanner.team/stops/Bsamegl1", "https://tec.openplanner.team/stops/Bsamegl2"], ["https://tec.openplanner.team/stops/Cmg4bra2", "https://tec.openplanner.team/stops/Cmgarsi2"], ["https://tec.openplanner.team/stops/H3lr117a", "https://tec.openplanner.team/stops/H3lr117b"], ["https://tec.openplanner.team/stops/LPUmang2", "https://tec.openplanner.team/stops/LPUmer-1"], ["https://tec.openplanner.team/stops/Bquegob3", "https://tec.openplanner.team/stops/Bquegob4"], ["https://tec.openplanner.team/stops/X623ahb", "https://tec.openplanner.team/stops/X623aia"], ["https://tec.openplanner.team/stops/Lhrpaep*", "https://tec.openplanner.team/stops/Lhrpaep2"], ["https://tec.openplanner.team/stops/LLscent2", "https://tec.openplanner.team/stops/LRccent1"], ["https://tec.openplanner.team/stops/X364aaa", "https://tec.openplanner.team/stops/X364acb"], ["https://tec.openplanner.team/stops/NB33ala", "https://tec.openplanner.team/stops/NR21aaa"], ["https://tec.openplanner.team/stops/LLUalou2", "https://tec.openplanner.team/stops/LLUtrol2"], ["https://tec.openplanner.team/stops/N505alb", "https://tec.openplanner.team/stops/N579adb"], ["https://tec.openplanner.team/stops/LTPlegr2", "https://tec.openplanner.team/stops/LTPtroi2"], ["https://tec.openplanner.team/stops/X818ama", "https://tec.openplanner.team/stops/X818amb"], ["https://tec.openplanner.team/stops/N513ata", "https://tec.openplanner.team/stops/N520aha"], ["https://tec.openplanner.team/stops/Csdfboi1", "https://tec.openplanner.team/stops/Csdnive2"], ["https://tec.openplanner.team/stops/LDObran1", "https://tec.openplanner.team/stops/LDOordi1"], ["https://tec.openplanner.team/stops/Cflchmo2", "https://tec.openplanner.team/stops/Cflsncb2"], ["https://tec.openplanner.team/stops/Cjupn1", "https://tec.openplanner.team/stops/Cjupn2"], ["https://tec.openplanner.team/stops/Cmybefe1", "https://tec.openplanner.team/stops/Cmysncb1"], ["https://tec.openplanner.team/stops/N501fbb", "https://tec.openplanner.team/stops/N501fqd"], ["https://tec.openplanner.team/stops/LSIters1", "https://tec.openplanner.team/stops/LSIters2"], ["https://tec.openplanner.team/stops/X979aka", "https://tec.openplanner.team/stops/X979akb"], ["https://tec.openplanner.team/stops/H1ms289a", "https://tec.openplanner.team/stops/H1ms289b"], ["https://tec.openplanner.team/stops/X725aea", "https://tec.openplanner.team/stops/X725aeb"], ["https://tec.openplanner.team/stops/Bjodbat2", "https://tec.openplanner.team/stops/Bjodpce1"], ["https://tec.openplanner.team/stops/Lmndeso1", "https://tec.openplanner.team/stops/Lsmdams2"], ["https://tec.openplanner.team/stops/LCHgele1", "https://tec.openplanner.team/stops/LThplen2"], ["https://tec.openplanner.team/stops/N163aab", "https://tec.openplanner.team/stops/N166aba"], ["https://tec.openplanner.team/stops/N501hrb", "https://tec.openplanner.team/stops/N501iua"], ["https://tec.openplanner.team/stops/NC14aab", "https://tec.openplanner.team/stops/NC14avb"], ["https://tec.openplanner.team/stops/Lengran2", "https://tec.openplanner.team/stops/Lenplac2"], ["https://tec.openplanner.team/stops/H4gr109b", "https://tec.openplanner.team/stops/H4gr112b"], ["https://tec.openplanner.team/stops/LFUchpl1", "https://tec.openplanner.team/stops/LFUchpl2"], ["https://tec.openplanner.team/stops/X872aab", "https://tec.openplanner.team/stops/X872aba"], ["https://tec.openplanner.team/stops/H4og209b", "https://tec.openplanner.team/stops/H4og212b"], ["https://tec.openplanner.team/stops/H4ce103a", "https://tec.openplanner.team/stops/H4ve135b"], ["https://tec.openplanner.team/stops/LTRfend2", "https://tec.openplanner.team/stops/LTRgare0"], ["https://tec.openplanner.team/stops/Bblaang1", "https://tec.openplanner.team/stops/Bblafrn2"], ["https://tec.openplanner.team/stops/LkEhatt2", "https://tec.openplanner.team/stops/LkEmax-1"], ["https://tec.openplanner.team/stops/LLiforg2", "https://tec.openplanner.team/stops/LListie1"], ["https://tec.openplanner.team/stops/H1ho122a", "https://tec.openplanner.team/stops/H1ho134b"], ["https://tec.openplanner.team/stops/N207afb", "https://tec.openplanner.team/stops/N209aka"], ["https://tec.openplanner.team/stops/LaSneuh2", "https://tec.openplanner.team/stops/LlNm%C3%BChl1"], ["https://tec.openplanner.team/stops/X624aga", "https://tec.openplanner.team/stops/X624aib"], ["https://tec.openplanner.team/stops/LBTchai1", "https://tec.openplanner.team/stops/LBTchai3"], ["https://tec.openplanner.team/stops/LOtthie2", "https://tec.openplanner.team/stops/NL57amb"], ["https://tec.openplanner.team/stops/X723aca", "https://tec.openplanner.team/stops/X723aha"], ["https://tec.openplanner.team/stops/LrAknop2", "https://tec.openplanner.team/stops/LrAneue2"], ["https://tec.openplanner.team/stops/X654aga", "https://tec.openplanner.team/stops/X654ajb"], ["https://tec.openplanner.team/stops/H4br108a", "https://tec.openplanner.team/stops/H4br109a"], ["https://tec.openplanner.team/stops/X739ala", "https://tec.openplanner.team/stops/X771aba"], ["https://tec.openplanner.team/stops/H2pe163a", "https://tec.openplanner.team/stops/H2tr250a"], ["https://tec.openplanner.team/stops/N571ada", "https://tec.openplanner.team/stops/N571adb"], ["https://tec.openplanner.team/stops/H3th131b", "https://tec.openplanner.team/stops/H3th133a"], ["https://tec.openplanner.team/stops/LTRcite1", "https://tec.openplanner.team/stops/LTRlonh1"], ["https://tec.openplanner.team/stops/LXhmara2", "https://tec.openplanner.team/stops/LXhnouv1"], ["https://tec.openplanner.team/stops/Lbocruc1", "https://tec.openplanner.team/stops/Lbooffe1"], ["https://tec.openplanner.team/stops/LESoneu3", "https://tec.openplanner.team/stops/LESryon2"], ["https://tec.openplanner.team/stops/Bnodegl1", "https://tec.openplanner.team/stops/Bnodegl2"], ["https://tec.openplanner.team/stops/Landeja1", "https://tec.openplanner.team/stops/Lanegal2"], ["https://tec.openplanner.team/stops/LSTamer2", "https://tec.openplanner.team/stops/LSTec--1"], ["https://tec.openplanner.team/stops/N501aqa", "https://tec.openplanner.team/stops/N501beb"], ["https://tec.openplanner.team/stops/N226ada", "https://tec.openplanner.team/stops/N387abb"], ["https://tec.openplanner.team/stops/Bviravi1", "https://tec.openplanner.team/stops/Bvirvol2"], ["https://tec.openplanner.team/stops/LWAcham1", "https://tec.openplanner.team/stops/LWAor--1"], ["https://tec.openplanner.team/stops/Bjauwar1", "https://tec.openplanner.team/stops/Bjauwar2"], ["https://tec.openplanner.team/stops/Bottpre2", "https://tec.openplanner.team/stops/Bottra91"], ["https://tec.openplanner.team/stops/H2fa108a", "https://tec.openplanner.team/stops/H2hg271a"], ["https://tec.openplanner.team/stops/Cprcits2", "https://tec.openplanner.team/stops/Cprvsar1"], ["https://tec.openplanner.team/stops/X361aab", "https://tec.openplanner.team/stops/X371aia"], ["https://tec.openplanner.team/stops/H1el137a", "https://tec.openplanner.team/stops/H1hi124a"], ["https://tec.openplanner.team/stops/X769aia", "https://tec.openplanner.team/stops/X769aja"], ["https://tec.openplanner.team/stops/LBRgare2", "https://tec.openplanner.team/stops/LBRmout3"], ["https://tec.openplanner.team/stops/N543bma", "https://tec.openplanner.team/stops/N543bna"], ["https://tec.openplanner.team/stops/LaMfuss1", "https://tec.openplanner.team/stops/LaMgeme*"], ["https://tec.openplanner.team/stops/H1ol142a", "https://tec.openplanner.team/stops/H1ol144b"], ["https://tec.openplanner.team/stops/Bwatabs2", "https://tec.openplanner.team/stops/Bwatrsg1"], ["https://tec.openplanner.team/stops/Clafaub1", "https://tec.openplanner.team/stops/NC23aca"], ["https://tec.openplanner.team/stops/H1ms245a", "https://tec.openplanner.team/stops/H1ms308a"], ["https://tec.openplanner.team/stops/N501ddb", "https://tec.openplanner.team/stops/N528aka"], ["https://tec.openplanner.team/stops/X608agb", "https://tec.openplanner.team/stops/X608apa"], ["https://tec.openplanner.team/stops/N501dra", "https://tec.openplanner.team/stops/N501eeb"], ["https://tec.openplanner.team/stops/Bblaece1", "https://tec.openplanner.team/stops/Bblaece2"], ["https://tec.openplanner.team/stops/LTIdamr1", "https://tec.openplanner.team/stops/LTIdamr2"], ["https://tec.openplanner.team/stops/Lhufont2", "https://tec.openplanner.team/stops/Lmncasi1"], ["https://tec.openplanner.team/stops/LBLvici1", "https://tec.openplanner.team/stops/LBLwaid2"], ["https://tec.openplanner.team/stops/X801awb", "https://tec.openplanner.team/stops/X801axb"], ["https://tec.openplanner.team/stops/H5at113a", "https://tec.openplanner.team/stops/H5at137b"], ["https://tec.openplanner.team/stops/Cbfcham1", "https://tec.openplanner.team/stops/Cbfcham4"], ["https://tec.openplanner.team/stops/LTEkl161", "https://tec.openplanner.team/stops/LTErest1"], ["https://tec.openplanner.team/stops/Bpersyn2", "https://tec.openplanner.team/stops/Btlbcul2"], ["https://tec.openplanner.team/stops/H4pq117a", "https://tec.openplanner.team/stops/H4pq118b"], ["https://tec.openplanner.team/stops/H1hv132b", "https://tec.openplanner.team/stops/H1hv133b"], ["https://tec.openplanner.team/stops/N535asb", "https://tec.openplanner.team/stops/N538aya"], ["https://tec.openplanner.team/stops/Lbrmour2", "https://tec.openplanner.team/stops/Llgrull2"], ["https://tec.openplanner.team/stops/LMamuse3", "https://tec.openplanner.team/stops/LMamuse4"], ["https://tec.openplanner.team/stops/Bjodrrg1", "https://tec.openplanner.team/stops/Bzlufbo1"], ["https://tec.openplanner.team/stops/N501gia", "https://tec.openplanner.team/stops/N501kbb"], ["https://tec.openplanner.team/stops/H2go116b", "https://tec.openplanner.team/stops/H2gy107b"], ["https://tec.openplanner.team/stops/X804bga", "https://tec.openplanner.team/stops/X804bgb"], ["https://tec.openplanner.team/stops/Lfhdonn1", "https://tec.openplanner.team/stops/Lfhxhor2"], ["https://tec.openplanner.team/stops/H4pp121b", "https://tec.openplanner.team/stops/H4pp122b"], ["https://tec.openplanner.team/stops/N153ada", "https://tec.openplanner.team/stops/N153aea"], ["https://tec.openplanner.team/stops/H1eq115a", "https://tec.openplanner.team/stops/H1fy142a"], ["https://tec.openplanner.team/stops/Lbocond2", "https://tec.openplanner.team/stops/Lbogonh3"], ["https://tec.openplanner.team/stops/H4ev120a", "https://tec.openplanner.team/stops/H4ev124a"], ["https://tec.openplanner.team/stops/LLAchpl2", "https://tec.openplanner.team/stops/LLAvi652"], ["https://tec.openplanner.team/stops/Broncan2", "https://tec.openplanner.team/stops/Bronn391"], ["https://tec.openplanner.team/stops/H4gz114b", "https://tec.openplanner.team/stops/H4lz126b"], ["https://tec.openplanner.team/stops/Berncim2", "https://tec.openplanner.team/stops/Bernegl4"], ["https://tec.openplanner.team/stops/Lwaeau-1", "https://tec.openplanner.team/stops/Lwapomp2"], ["https://tec.openplanner.team/stops/N135aea", "https://tec.openplanner.team/stops/N143aaa"], ["https://tec.openplanner.team/stops/H1ms251a", "https://tec.openplanner.team/stops/H1ms304a"], ["https://tec.openplanner.team/stops/LTHmaka2", "https://tec.openplanner.team/stops/LTHperr2"], ["https://tec.openplanner.team/stops/Lpeeg--2", "https://tec.openplanner.team/stops/Lpeptwa2"], ["https://tec.openplanner.team/stops/N145aja", "https://tec.openplanner.team/stops/N145ajb"], ["https://tec.openplanner.team/stops/X715afa", "https://tec.openplanner.team/stops/X715afb"], ["https://tec.openplanner.team/stops/N501mtc", "https://tec.openplanner.team/stops/N501mtd"], ["https://tec.openplanner.team/stops/LlgPRVo1", "https://tec.openplanner.team/stops/Lvtpepi2"], ["https://tec.openplanner.team/stops/Cdahtvi2", "https://tec.openplanner.team/stops/Cloravi1"], ["https://tec.openplanner.team/stops/LWn24--1", "https://tec.openplanner.team/stops/LWneg--1"], ["https://tec.openplanner.team/stops/X982bna", "https://tec.openplanner.team/stops/X982bnb"], ["https://tec.openplanner.team/stops/N503aja", "https://tec.openplanner.team/stops/N503ajb"], ["https://tec.openplanner.team/stops/X789acb", "https://tec.openplanner.team/stops/X789afa"], ["https://tec.openplanner.team/stops/Lsnbrac1", "https://tec.openplanner.team/stops/Lsnlhon2"], ["https://tec.openplanner.team/stops/N150agb", "https://tec.openplanner.team/stops/N150aja"], ["https://tec.openplanner.team/stops/N120anb", "https://tec.openplanner.team/stops/N244ava"], ["https://tec.openplanner.team/stops/LBegare2", "https://tec.openplanner.team/stops/LWHkerk1"], ["https://tec.openplanner.team/stops/X743agb", "https://tec.openplanner.team/stops/X746agc"], ["https://tec.openplanner.team/stops/Ccobinc2", "https://tec.openplanner.team/stops/Ccoconf1"], ["https://tec.openplanner.team/stops/X812aya", "https://tec.openplanner.team/stops/X812aza"], ["https://tec.openplanner.team/stops/X612aba", "https://tec.openplanner.team/stops/X623agb"], ["https://tec.openplanner.team/stops/LSdbvue1", "https://tec.openplanner.team/stops/LSdcent2"], ["https://tec.openplanner.team/stops/X666ada", "https://tec.openplanner.team/stops/X666adb"], ["https://tec.openplanner.team/stops/X775abb", "https://tec.openplanner.team/stops/X775aca"], ["https://tec.openplanner.team/stops/H4mo151a", "https://tec.openplanner.team/stops/H4mo208b"], ["https://tec.openplanner.team/stops/Caibras1", "https://tec.openplanner.team/stops/Caibras2"], ["https://tec.openplanner.team/stops/Blpglon1", "https://tec.openplanner.team/stops/Bvxgeta2"], ["https://tec.openplanner.team/stops/H4er124a", "https://tec.openplanner.team/stops/H4sm247b"], ["https://tec.openplanner.team/stops/H4og207a", "https://tec.openplanner.team/stops/H4og212a"], ["https://tec.openplanner.team/stops/H2lc169c", "https://tec.openplanner.team/stops/H2lc172a"], ["https://tec.openplanner.team/stops/Ljekess2", "https://tec.openplanner.team/stops/Ljestat2"], ["https://tec.openplanner.team/stops/N501giz", "https://tec.openplanner.team/stops/N501gsa"], ["https://tec.openplanner.team/stops/Cptplac4", "https://tec.openplanner.team/stops/Cpttraz1"], ["https://tec.openplanner.team/stops/LBbbac-1", "https://tec.openplanner.team/stops/LHXmonu2"], ["https://tec.openplanner.team/stops/N539aea", "https://tec.openplanner.team/stops/N539aeb"], ["https://tec.openplanner.team/stops/Bramcom2", "https://tec.openplanner.team/stops/Bramrdf2"], ["https://tec.openplanner.team/stops/X986acb", "https://tec.openplanner.team/stops/X986ata"], ["https://tec.openplanner.team/stops/LOL6che1", "https://tec.openplanner.team/stops/LOLfoss1"], ["https://tec.openplanner.team/stops/Bhercsj1", "https://tec.openplanner.team/stops/Bpieh171"], ["https://tec.openplanner.team/stops/N547ama", "https://tec.openplanner.team/stops/N548ayb"], ["https://tec.openplanner.team/stops/X345aba", "https://tec.openplanner.team/stops/X345aca"], ["https://tec.openplanner.team/stops/LSGcent1", "https://tec.openplanner.team/stops/LSGeg--2"], ["https://tec.openplanner.team/stops/LTPbode2", "https://tec.openplanner.team/stops/LTPreco2"], ["https://tec.openplanner.team/stops/Bbeagae2", "https://tec.openplanner.team/stops/Bmlngch2"], ["https://tec.openplanner.team/stops/H4li178a", "https://tec.openplanner.team/stops/H4mv194b"], ["https://tec.openplanner.team/stops/Cpccpas1", "https://tec.openplanner.team/stops/Cpceclu1"], ["https://tec.openplanner.team/stops/X946ada", "https://tec.openplanner.team/stops/X948adb"], ["https://tec.openplanner.team/stops/N503aab", "https://tec.openplanner.team/stops/N503adb"], ["https://tec.openplanner.team/stops/Csecoup1", "https://tec.openplanner.team/stops/Csecoup2"], ["https://tec.openplanner.team/stops/Llgcorn3", "https://tec.openplanner.team/stops/Llgmara2"], ["https://tec.openplanner.team/stops/Bblapra1", "https://tec.openplanner.team/stops/Brsg7fo2"], ["https://tec.openplanner.team/stops/Bgliopp1", "https://tec.openplanner.team/stops/Bgliopp3"], ["https://tec.openplanner.team/stops/LFmpoin2", "https://tec.openplanner.team/stops/LFmroye1"], ["https://tec.openplanner.team/stops/X877afa", "https://tec.openplanner.team/stops/X879aba"], ["https://tec.openplanner.team/stops/LBNeup21", "https://tec.openplanner.team/stops/LBNeup22"], ["https://tec.openplanner.team/stops/Cchsud10", "https://tec.openplanner.team/stops/Cchsud11"], ["https://tec.openplanner.team/stops/X745abb", "https://tec.openplanner.team/stops/X746akb"], ["https://tec.openplanner.team/stops/LSTgran2", "https://tec.openplanner.team/stops/LTPlegr2"], ["https://tec.openplanner.team/stops/Bbchcbl2", "https://tec.openplanner.team/stops/Bbchrra2"], ["https://tec.openplanner.team/stops/Cmlthym1", "https://tec.openplanner.team/stops/Cmlthym2"], ["https://tec.openplanner.team/stops/Lgrlimi1", "https://tec.openplanner.team/stops/Lgrlimi2"], ["https://tec.openplanner.team/stops/N501hjd", "https://tec.openplanner.team/stops/N501hla"], ["https://tec.openplanner.team/stops/LMOelva4", "https://tec.openplanner.team/stops/LMOmome1"], ["https://tec.openplanner.team/stops/LWapl--1", "https://tec.openplanner.team/stops/LWarema2"], ["https://tec.openplanner.team/stops/Borbtre2", "https://tec.openplanner.team/stops/Btsllsc2"], ["https://tec.openplanner.team/stops/H5pe137a", "https://tec.openplanner.team/stops/H5pe147b"], ["https://tec.openplanner.team/stops/LCocasc1", "https://tec.openplanner.team/stops/LCogara1"], ["https://tec.openplanner.team/stops/Bhaldbo1", "https://tec.openplanner.team/stops/Bhalgja2"], ["https://tec.openplanner.team/stops/Lfllapi4", "https://tec.openplanner.team/stops/Lflsana2"], ["https://tec.openplanner.team/stops/Bwavfbe1", "https://tec.openplanner.team/stops/Bwavfol2"], ["https://tec.openplanner.team/stops/LrAalte2", "https://tec.openplanner.team/stops/LrAneus3"], ["https://tec.openplanner.team/stops/N136aaa", "https://tec.openplanner.team/stops/N136aab"], ["https://tec.openplanner.team/stops/H4ef111b", "https://tec.openplanner.team/stops/H4mx115a"], ["https://tec.openplanner.team/stops/H1ms287b", "https://tec.openplanner.team/stops/H1ms906a"], ["https://tec.openplanner.team/stops/H1sg149a", "https://tec.openplanner.team/stops/H1sg149b"], ["https://tec.openplanner.team/stops/N557aib", "https://tec.openplanner.team/stops/N562aea"], ["https://tec.openplanner.team/stops/X882aia", "https://tec.openplanner.team/stops/X882aka"], ["https://tec.openplanner.team/stops/LTecent4", "https://tec.openplanner.team/stops/LTestat2"], ["https://tec.openplanner.team/stops/H2ch100b", "https://tec.openplanner.team/stops/H2ch108b"], ["https://tec.openplanner.team/stops/H1te198a", "https://tec.openplanner.team/stops/H1te198b"], ["https://tec.openplanner.team/stops/Livcoll2", "https://tec.openplanner.team/stops/Livpost2"], ["https://tec.openplanner.team/stops/X742afb", "https://tec.openplanner.team/stops/X743aab"], ["https://tec.openplanner.team/stops/Bgerprg1", "https://tec.openplanner.team/stops/NB33afb"], ["https://tec.openplanner.team/stops/LWEcite2", "https://tec.openplanner.team/stops/LWEcomp1"], ["https://tec.openplanner.team/stops/X946aha", "https://tec.openplanner.team/stops/X946ahb"], ["https://tec.openplanner.team/stops/H3bi117a", "https://tec.openplanner.team/stops/H3bi117b"], ["https://tec.openplanner.team/stops/LHDchar4", "https://tec.openplanner.team/stops/LLmvict1"], ["https://tec.openplanner.team/stops/Bnivga31", "https://tec.openplanner.team/stops/Bnivga32"], ["https://tec.openplanner.team/stops/LBVlamo1", "https://tec.openplanner.team/stops/LHmcite1"], ["https://tec.openplanner.team/stops/H2me113a", "https://tec.openplanner.team/stops/H2me114b"], ["https://tec.openplanner.team/stops/Ldilyce*", "https://tec.openplanner.team/stops/Ldimont1"], ["https://tec.openplanner.team/stops/N229anb", "https://tec.openplanner.team/stops/N229atb"], ["https://tec.openplanner.team/stops/Crsrose2", "https://tec.openplanner.team/stops/Crswaut2"], ["https://tec.openplanner.team/stops/LaAzwei2", "https://tec.openplanner.team/stops/LhGscha*"], ["https://tec.openplanner.team/stops/Lmapomm1", "https://tec.openplanner.team/stops/LPRmoul1"], ["https://tec.openplanner.team/stops/LMaburg3", "https://tec.openplanner.team/stops/LMaburg4"], ["https://tec.openplanner.team/stops/Bmrlsau2", "https://tec.openplanner.team/stops/Bpiehvi2"], ["https://tec.openplanner.team/stops/N501eza", "https://tec.openplanner.team/stops/N501jta"], ["https://tec.openplanner.team/stops/X993abd", "https://tec.openplanner.team/stops/X993acb"], ["https://tec.openplanner.team/stops/H1bi100a", "https://tec.openplanner.team/stops/H1bu139b"], ["https://tec.openplanner.team/stops/LAivill2", "https://tec.openplanner.team/stops/LENgend2"], ["https://tec.openplanner.team/stops/H5rx122a", "https://tec.openplanner.team/stops/H5rx122b"], ["https://tec.openplanner.team/stops/H1gr113a", "https://tec.openplanner.team/stops/H1gr113b"], ["https://tec.openplanner.team/stops/Lhrbell2", "https://tec.openplanner.team/stops/Lhrtunn2"], ["https://tec.openplanner.team/stops/LWNcham1", "https://tec.openplanner.team/stops/LWNcime1"], ["https://tec.openplanner.team/stops/H1bn113a", "https://tec.openplanner.team/stops/H1bn113b"], ["https://tec.openplanner.team/stops/LrAneud1", "https://tec.openplanner.team/stops/LrAneud2"], ["https://tec.openplanner.team/stops/X901ata", "https://tec.openplanner.team/stops/X901aza"], ["https://tec.openplanner.team/stops/N231agb", "https://tec.openplanner.team/stops/N291acb"], ["https://tec.openplanner.team/stops/LLYcham1", "https://tec.openplanner.team/stops/LLYhoch2"], ["https://tec.openplanner.team/stops/H1bs112b", "https://tec.openplanner.team/stops/H1sb144b"], ["https://tec.openplanner.team/stops/NL76ada", "https://tec.openplanner.team/stops/NL80aub"], ["https://tec.openplanner.team/stops/LON02--2", "https://tec.openplanner.team/stops/LWastei2"], ["https://tec.openplanner.team/stops/LCUgale2", "https://tec.openplanner.team/stops/LCUthie1"], ["https://tec.openplanner.team/stops/LCltrib1", "https://tec.openplanner.team/stops/LCltrib2"], ["https://tec.openplanner.team/stops/Bbcoubo3", "https://tec.openplanner.team/stops/H3br108d"], ["https://tec.openplanner.team/stops/Bllngar7", "https://tec.openplanner.team/stops/Bllngar9"], ["https://tec.openplanner.team/stops/LWeatel1", "https://tec.openplanner.team/stops/LWegdry2"], ["https://tec.openplanner.team/stops/X794aaa", "https://tec.openplanner.team/stops/X794aab"], ["https://tec.openplanner.team/stops/LlgOPER1", "https://tec.openplanner.team/stops/LlgPTAV2"], ["https://tec.openplanner.team/stops/H4bo120a", "https://tec.openplanner.team/stops/H4bo122b"], ["https://tec.openplanner.team/stops/LBJchau*", "https://tec.openplanner.team/stops/LHcaube1"], ["https://tec.openplanner.team/stops/N115aaa", "https://tec.openplanner.team/stops/N147aea"], ["https://tec.openplanner.team/stops/Llgjasm1", "https://tec.openplanner.team/stops/Llgmont1"], ["https://tec.openplanner.team/stops/Cmlours2", "https://tec.openplanner.team/stops/Cmlphai1"], ["https://tec.openplanner.team/stops/LESmagr2", "https://tec.openplanner.team/stops/LPLstri2"], ["https://tec.openplanner.team/stops/H1gn150a", "https://tec.openplanner.team/stops/H1hq126a"], ["https://tec.openplanner.team/stops/N551acb", "https://tec.openplanner.team/stops/N551aec"], ["https://tec.openplanner.team/stops/LBYwez-2", "https://tec.openplanner.team/stops/LXHbois1"], ["https://tec.openplanner.team/stops/LVAgemm1", "https://tec.openplanner.team/stops/LVAgemm2"], ["https://tec.openplanner.team/stops/Brixpro1", "https://tec.openplanner.team/stops/Brixpro4"], ["https://tec.openplanner.team/stops/Bjodfco2", "https://tec.openplanner.team/stops/Bmrlsau1"], ["https://tec.openplanner.team/stops/H4ru246b", "https://tec.openplanner.team/stops/H4ty275a"], ["https://tec.openplanner.team/stops/H4bh102d", "https://tec.openplanner.team/stops/H4bh105b"], ["https://tec.openplanner.team/stops/N101aaa", "https://tec.openplanner.team/stops/N118akb"], ["https://tec.openplanner.team/stops/H1po130b", "https://tec.openplanner.team/stops/H1po137a"], ["https://tec.openplanner.team/stops/N501grb", "https://tec.openplanner.team/stops/N501zaa"], ["https://tec.openplanner.team/stops/Cprcalv1", "https://tec.openplanner.team/stops/Cprgran1"], ["https://tec.openplanner.team/stops/LMaslav3", "https://tec.openplanner.team/stops/LMgkrui1"], ["https://tec.openplanner.team/stops/X640afa", "https://tec.openplanner.team/stops/X640aka"], ["https://tec.openplanner.team/stops/X886aaa", "https://tec.openplanner.team/stops/X886abc"], ["https://tec.openplanner.team/stops/Bnivga12", "https://tec.openplanner.team/stops/Bnivrwi1"], ["https://tec.openplanner.team/stops/N531aha", "https://tec.openplanner.team/stops/N531ahb"], ["https://tec.openplanner.team/stops/N138aha", "https://tec.openplanner.team/stops/N138aia"], ["https://tec.openplanner.team/stops/X633ahb", "https://tec.openplanner.team/stops/X633aia"], ["https://tec.openplanner.team/stops/Cmywarc1", "https://tec.openplanner.team/stops/Cmywarc2"], ["https://tec.openplanner.team/stops/Cgrchas1", "https://tec.openplanner.team/stops/N160aea"], ["https://tec.openplanner.team/stops/H1be100a", "https://tec.openplanner.team/stops/H1so131e"], ["https://tec.openplanner.team/stops/LMNentr2", "https://tec.openplanner.team/stops/LMNpann2"], ["https://tec.openplanner.team/stops/X725axa", "https://tec.openplanner.team/stops/X725aya"], ["https://tec.openplanner.team/stops/Ccpbrun1", "https://tec.openplanner.team/stops/Ccpbrun2"], ["https://tec.openplanner.team/stops/H4be100a", "https://tec.openplanner.team/stops/H4be112b"], ["https://tec.openplanner.team/stops/LVLsabl1", "https://tec.openplanner.team/stops/LVLsabl2"], ["https://tec.openplanner.team/stops/N110aab", "https://tec.openplanner.team/stops/N110aba"], ["https://tec.openplanner.team/stops/LeUschn2", "https://tec.openplanner.team/stops/LkTtal-2"], ["https://tec.openplanner.team/stops/Ladarev1", "https://tec.openplanner.team/stops/LHCprog1"], ["https://tec.openplanner.team/stops/LWHwaas3", "https://tec.openplanner.team/stops/LWSstat1"], ["https://tec.openplanner.team/stops/LMibouv4", "https://tec.openplanner.team/stops/LSTmast1"], ["https://tec.openplanner.team/stops/H1do115b", "https://tec.openplanner.team/stops/H1do124a"], ["https://tec.openplanner.team/stops/H1ca106a", "https://tec.openplanner.team/stops/H1ca106b"], ["https://tec.openplanner.team/stops/X760aaa", "https://tec.openplanner.team/stops/X762acb"], ["https://tec.openplanner.team/stops/Blhulil2", "https://tec.openplanner.team/stops/Blhulor2"], ["https://tec.openplanner.team/stops/Blemwro2", "https://tec.openplanner.team/stops/Btubcal2"], ["https://tec.openplanner.team/stops/H4ar104a", "https://tec.openplanner.team/stops/H4ar104b"], ["https://tec.openplanner.team/stops/LPAmc--1", "https://tec.openplanner.team/stops/LPAmc--2"], ["https://tec.openplanner.team/stops/N501msa", "https://tec.openplanner.team/stops/N501zaa"], ["https://tec.openplanner.team/stops/LHUomni2", "https://tec.openplanner.team/stops/LHUsaul2"], ["https://tec.openplanner.team/stops/LlNbusc2", "https://tec.openplanner.team/stops/LWEcite1"], ["https://tec.openplanner.team/stops/H1te183a", "https://tec.openplanner.team/stops/H1te188b"], ["https://tec.openplanner.team/stops/H1ms304a", "https://tec.openplanner.team/stops/H1ms913a"], ["https://tec.openplanner.team/stops/H4ty329b", "https://tec.openplanner.team/stops/H4ty350b"], ["https://tec.openplanner.team/stops/X826abb", "https://tec.openplanner.team/stops/X860aaa"], ["https://tec.openplanner.team/stops/X616aca", "https://tec.openplanner.team/stops/X616aib"], ["https://tec.openplanner.team/stops/N533ada", "https://tec.openplanner.team/stops/N551aka"], ["https://tec.openplanner.team/stops/Cnacout2", "https://tec.openplanner.team/stops/Cnadepo2"], ["https://tec.openplanner.team/stops/LCIcent2", "https://tec.openplanner.team/stops/LCIpiet1"], ["https://tec.openplanner.team/stops/Blpgvil2", "https://tec.openplanner.team/stops/Cbtstac1"], ["https://tec.openplanner.team/stops/X634aba", "https://tec.openplanner.team/stops/X654aab"], ["https://tec.openplanner.team/stops/LMuvill1", "https://tec.openplanner.team/stops/LMuvill2"], ["https://tec.openplanner.team/stops/Bcbqa362", "https://tec.openplanner.team/stops/Bhaltre2"], ["https://tec.openplanner.team/stops/X614aga", "https://tec.openplanner.team/stops/X614ayb"], ["https://tec.openplanner.team/stops/LHUcomp1", "https://tec.openplanner.team/stops/LHUmala2"], ["https://tec.openplanner.team/stops/H1mk111b", "https://tec.openplanner.team/stops/H1mk114b"], ["https://tec.openplanner.team/stops/LLrc1992", "https://tec.openplanner.team/stops/LLrmaq-2"], ["https://tec.openplanner.team/stops/Ljubeyn1", "https://tec.openplanner.team/stops/Ljubods1"], ["https://tec.openplanner.team/stops/N544ada", "https://tec.openplanner.team/stops/N577aaa"], ["https://tec.openplanner.team/stops/N313aea", "https://tec.openplanner.team/stops/N313aec"], ["https://tec.openplanner.team/stops/LSseg--1", "https://tec.openplanner.team/stops/LSsmond2"], ["https://tec.openplanner.team/stops/X623acb", "https://tec.openplanner.team/stops/X623aed"], ["https://tec.openplanner.team/stops/Bllncom1", "https://tec.openplanner.team/stops/Bllngar8"], ["https://tec.openplanner.team/stops/LVSpn--1", "https://tec.openplanner.team/stops/LVStige2"], ["https://tec.openplanner.team/stops/LBalacr1", "https://tec.openplanner.team/stops/LBamate1"], ["https://tec.openplanner.team/stops/H4wi164b", "https://tec.openplanner.team/stops/H5pe139a"], ["https://tec.openplanner.team/stops/X723aba", "https://tec.openplanner.team/stops/X766aga"], ["https://tec.openplanner.team/stops/NH21adb", "https://tec.openplanner.team/stops/NH21aea"], ["https://tec.openplanner.team/stops/Cmmceri1", "https://tec.openplanner.team/stops/Cmmceri2"], ["https://tec.openplanner.team/stops/Bernegl3", "https://tec.openplanner.team/stops/Bernrar2"], ["https://tec.openplanner.team/stops/X919ajc", "https://tec.openplanner.team/stops/X919ajd"], ["https://tec.openplanner.team/stops/Cmlhubi2", "https://tec.openplanner.team/stops/Cmlipsm2"], ["https://tec.openplanner.team/stops/N231abb", "https://tec.openplanner.team/stops/N242agb"], ["https://tec.openplanner.team/stops/Lgrbill1", "https://tec.openplanner.team/stops/Lgrchar2"], ["https://tec.openplanner.team/stops/N506bod", "https://tec.openplanner.team/stops/N506bsa"], ["https://tec.openplanner.team/stops/H1ms268b", "https://tec.openplanner.team/stops/H1ms281b"], ["https://tec.openplanner.team/stops/N232bqb", "https://tec.openplanner.team/stops/N261abb"], ["https://tec.openplanner.team/stops/X925alb", "https://tec.openplanner.team/stops/X925aoa"], ["https://tec.openplanner.team/stops/N346aab", "https://tec.openplanner.team/stops/N347aga"], ["https://tec.openplanner.team/stops/Lhr3jui2", "https://tec.openplanner.team/stops/Lhrmilm2"], ["https://tec.openplanner.team/stops/LRemonu2", "https://tec.openplanner.team/stops/LRemorr2"], ["https://tec.openplanner.team/stops/H4hu122a", "https://tec.openplanner.team/stops/H4ld124b"], ["https://tec.openplanner.team/stops/H4ch113b", "https://tec.openplanner.team/stops/H4ch120a"], ["https://tec.openplanner.team/stops/H4la196a", "https://tec.openplanner.team/stops/H4la199a"], ["https://tec.openplanner.team/stops/H2sv217b", "https://tec.openplanner.team/stops/H2sv219a"], ["https://tec.openplanner.team/stops/H5gr137b", "https://tec.openplanner.team/stops/H5gr138b"], ["https://tec.openplanner.team/stops/X617acb", "https://tec.openplanner.team/stops/X617agb"], ["https://tec.openplanner.team/stops/N581aaa", "https://tec.openplanner.team/stops/N581aab"], ["https://tec.openplanner.team/stops/Cgxalli2", "https://tec.openplanner.team/stops/CMleer1"], ["https://tec.openplanner.team/stops/X740aab", "https://tec.openplanner.team/stops/X740aga"], ["https://tec.openplanner.team/stops/Bllncyc1", "https://tec.openplanner.team/stops/Bllnmet2"], ["https://tec.openplanner.team/stops/Crapaep2", "https://tec.openplanner.team/stops/Crasocq2"], ["https://tec.openplanner.team/stops/N244aab", "https://tec.openplanner.team/stops/N244ada"], ["https://tec.openplanner.team/stops/LHSheur1", "https://tec.openplanner.team/stops/LHSheur2"], ["https://tec.openplanner.team/stops/X606abb", "https://tec.openplanner.team/stops/X620aeb"], ["https://tec.openplanner.team/stops/H1he104b", "https://tec.openplanner.team/stops/H1he108b"], ["https://tec.openplanner.team/stops/Cmlclos1", "https://tec.openplanner.team/stops/Cmmami2"], ["https://tec.openplanner.team/stops/X715aaa", "https://tec.openplanner.team/stops/X781adb"], ["https://tec.openplanner.team/stops/LHMbelv1", "https://tec.openplanner.team/stops/LHMbelv2"], ["https://tec.openplanner.team/stops/N529aba", "https://tec.openplanner.team/stops/N529abc"], ["https://tec.openplanner.team/stops/Bwavbar2", "https://tec.openplanner.team/stops/Bwavzno1"], ["https://tec.openplanner.team/stops/Cladura4", "https://tec.openplanner.team/stops/Claptcf2"], ["https://tec.openplanner.team/stops/LBabeco3", "https://tec.openplanner.team/stops/LBapepi3"], ["https://tec.openplanner.team/stops/H2gy103b", "https://tec.openplanner.team/stops/H2gy106a"], ["https://tec.openplanner.team/stops/LXobaty1", "https://tec.openplanner.team/stops/X599aga"], ["https://tec.openplanner.team/stops/LSebott1", "https://tec.openplanner.team/stops/LSemc--2"], ["https://tec.openplanner.team/stops/N111adb", "https://tec.openplanner.team/stops/N111afa"], ["https://tec.openplanner.team/stops/Brsga812", "https://tec.openplanner.team/stops/Brsgepr1"], ["https://tec.openplanner.team/stops/LHrfang1", "https://tec.openplanner.team/stops/LREchal1"], ["https://tec.openplanner.team/stops/Cgualno1", "https://tec.openplanner.team/stops/Cnapair1"], ["https://tec.openplanner.team/stops/X641ara", "https://tec.openplanner.team/stops/X641aza"], ["https://tec.openplanner.team/stops/X615aha", "https://tec.openplanner.team/stops/X615asb"], ["https://tec.openplanner.team/stops/X898aka", "https://tec.openplanner.team/stops/X898amb"], ["https://tec.openplanner.team/stops/Llglema2", "https://tec.openplanner.team/stops/Llgriva2"], ["https://tec.openplanner.team/stops/N349aia", "https://tec.openplanner.team/stops/X349aic"], ["https://tec.openplanner.team/stops/Bquecge2", "https://tec.openplanner.team/stops/Bquegen1"], ["https://tec.openplanner.team/stops/N507aab", "https://tec.openplanner.team/stops/NL30aka"], ["https://tec.openplanner.team/stops/H4te248b", "https://tec.openplanner.team/stops/H4te253a"], ["https://tec.openplanner.team/stops/N229ara", "https://tec.openplanner.team/stops/N230aba"], ["https://tec.openplanner.team/stops/X820aha", "https://tec.openplanner.team/stops/X820ahb"], ["https://tec.openplanner.team/stops/LBIvill2", "https://tec.openplanner.team/stops/LBIvill3"], ["https://tec.openplanner.team/stops/Cdogrro1", "https://tec.openplanner.team/stops/Cdostco1"], ["https://tec.openplanner.team/stops/N512asb", "https://tec.openplanner.team/stops/N512atb"], ["https://tec.openplanner.team/stops/Lsebegu2", "https://tec.openplanner.team/stops/Lsetrav1"], ["https://tec.openplanner.team/stops/H1hy127a", "https://tec.openplanner.team/stops/H1hy130a"], ["https://tec.openplanner.team/stops/LWRbois1", "https://tec.openplanner.team/stops/LWRvert1"], ["https://tec.openplanner.team/stops/H4ff117b", "https://tec.openplanner.team/stops/H4mb143d"], ["https://tec.openplanner.team/stops/LTyh24-1", "https://tec.openplanner.team/stops/LTyh51-2"], ["https://tec.openplanner.team/stops/LTPreco1", "https://tec.openplanner.team/stops/LTPreco2"], ["https://tec.openplanner.team/stops/Bbrlvil1", "https://tec.openplanner.team/stops/Bbrlvil2"], ["https://tec.openplanner.team/stops/H1mb135a", "https://tec.openplanner.team/stops/H1mb135b"], ["https://tec.openplanner.team/stops/LAuchau1", "https://tec.openplanner.team/stops/LMubras1"], ["https://tec.openplanner.team/stops/H4ty267b", "https://tec.openplanner.team/stops/H4ty327b"], ["https://tec.openplanner.team/stops/Bquecar1", "https://tec.openplanner.team/stops/Bquegob3"], ["https://tec.openplanner.team/stops/LHMbami1", "https://tec.openplanner.team/stops/LMNheme1"], ["https://tec.openplanner.team/stops/X646aca", "https://tec.openplanner.team/stops/X646ada"], ["https://tec.openplanner.team/stops/Lcepont6", "https://tec.openplanner.team/stops/Lceviei1"], ["https://tec.openplanner.team/stops/H4ro157a", "https://tec.openplanner.team/stops/H4ro157b"], ["https://tec.openplanner.team/stops/N207adb", "https://tec.openplanner.team/stops/N207adc"], ["https://tec.openplanner.team/stops/LGorysa1", "https://tec.openplanner.team/stops/Lpeflec1"], ["https://tec.openplanner.team/stops/LFFmarc1", "https://tec.openplanner.team/stops/LFFpier2"], ["https://tec.openplanner.team/stops/Bmrqpla1", "https://tec.openplanner.team/stops/Bmrqpla2"], ["https://tec.openplanner.team/stops/X390ana", "https://tec.openplanner.team/stops/X390anb"], ["https://tec.openplanner.team/stops/X610acb", "https://tec.openplanner.team/stops/X610ada"], ["https://tec.openplanner.team/stops/LwYbruc1", "https://tec.openplanner.team/stops/LwYsour4"], ["https://tec.openplanner.team/stops/Cfrcoqu4", "https://tec.openplanner.team/stops/Cfrgare3"], ["https://tec.openplanner.team/stops/Lemarde2", "https://tec.openplanner.team/stops/Lemcort2"], ["https://tec.openplanner.team/stops/Louazot2", "https://tec.openplanner.team/stops/Loureno1"], ["https://tec.openplanner.team/stops/X899aca", "https://tec.openplanner.team/stops/X899aea"], ["https://tec.openplanner.team/stops/Ccucroi1", "https://tec.openplanner.team/stops/Ccuphai4"], ["https://tec.openplanner.team/stops/N234acb", "https://tec.openplanner.team/stops/N549aib"], ["https://tec.openplanner.team/stops/H2go118a", "https://tec.openplanner.team/stops/H2go118b"], ["https://tec.openplanner.team/stops/LSGhagn1", "https://tec.openplanner.team/stops/LSGsolo1"], ["https://tec.openplanner.team/stops/LETec--1", "https://tec.openplanner.team/stops/LMIcamp2"], ["https://tec.openplanner.team/stops/Cmlfeba1", "https://tec.openplanner.team/stops/Cmlhubi1"], ["https://tec.openplanner.team/stops/Lbrplai1", "https://tec.openplanner.team/stops/Llgplai1"], ["https://tec.openplanner.team/stops/Bwatms09", "https://tec.openplanner.team/stops/Bwatmsj6"], ["https://tec.openplanner.team/stops/N533aqc", "https://tec.openplanner.team/stops/N533aqd"], ["https://tec.openplanner.team/stops/Ltibell2", "https://tec.openplanner.team/stops/Ltimarr2"], ["https://tec.openplanner.team/stops/X661aoa", "https://tec.openplanner.team/stops/X839adb"], ["https://tec.openplanner.team/stops/N523abb", "https://tec.openplanner.team/stops/N523acb"], ["https://tec.openplanner.team/stops/H2hl111b", "https://tec.openplanner.team/stops/H2pe155a"], ["https://tec.openplanner.team/stops/N153adb", "https://tec.openplanner.team/stops/N154aaa"], ["https://tec.openplanner.team/stops/X804aga", "https://tec.openplanner.team/stops/X804aib"], ["https://tec.openplanner.team/stops/Cmlhauc2", "https://tec.openplanner.team/stops/Cmlstgi2"], ["https://tec.openplanner.team/stops/Lmoboeu2", "https://tec.openplanner.team/stops/Lmodeni2"], ["https://tec.openplanner.team/stops/N135aba", "https://tec.openplanner.team/stops/N135abb"], ["https://tec.openplanner.team/stops/Blnzcar1", "https://tec.openplanner.team/stops/N522acb"], ["https://tec.openplanner.team/stops/Lhrmura1", "https://tec.openplanner.team/stops/Lhrthie2"], ["https://tec.openplanner.team/stops/LJeeg--2", "https://tec.openplanner.team/stops/LJetrih2"], ["https://tec.openplanner.team/stops/Lmldama1", "https://tec.openplanner.team/stops/Lmlprie2"], ["https://tec.openplanner.team/stops/N248aba", "https://tec.openplanner.team/stops/N248abb"], ["https://tec.openplanner.team/stops/N506bmb", "https://tec.openplanner.team/stops/N506bqa"], ["https://tec.openplanner.team/stops/LBEabba1", "https://tec.openplanner.team/stops/LBEnina4"], ["https://tec.openplanner.team/stops/X607aab", "https://tec.openplanner.team/stops/X607abb"], ["https://tec.openplanner.team/stops/LbHzent1", "https://tec.openplanner.team/stops/LrUkult2"], ["https://tec.openplanner.team/stops/Lgrclos2", "https://tec.openplanner.team/stops/Lgreg--2"], ["https://tec.openplanner.team/stops/X907adb", "https://tec.openplanner.team/stops/X907aia"], ["https://tec.openplanner.team/stops/LTB105-1", "https://tec.openplanner.team/stops/X714abb"], ["https://tec.openplanner.team/stops/N532aba", "https://tec.openplanner.team/stops/N532aia"], ["https://tec.openplanner.team/stops/Cfmcent2", "https://tec.openplanner.team/stops/Cfmsncb1"], ["https://tec.openplanner.team/stops/Cgxptt1", "https://tec.openplanner.team/stops/CMmorg1"], ["https://tec.openplanner.team/stops/LHdvill1", "https://tec.openplanner.team/stops/LTatult4"], ["https://tec.openplanner.team/stops/Lbocruc2", "https://tec.openplanner.team/stops/Lsebonc1"], ["https://tec.openplanner.team/stops/LSAvieu1", "https://tec.openplanner.team/stops/LSAvieu2"], ["https://tec.openplanner.team/stops/Cfachap2", "https://tec.openplanner.team/stops/Cfanoci2"], ["https://tec.openplanner.team/stops/Lmojoan2", "https://tec.openplanner.team/stops/Lmolama2"], ["https://tec.openplanner.team/stops/X733afa", "https://tec.openplanner.team/stops/X733aja"], ["https://tec.openplanner.team/stops/N874aja", "https://tec.openplanner.team/stops/N874amb"], ["https://tec.openplanner.team/stops/Blthbss2", "https://tec.openplanner.team/stops/Bmlnbpr1"], ["https://tec.openplanner.team/stops/N534amg", "https://tec.openplanner.team/stops/N534apg"], ["https://tec.openplanner.team/stops/Bhmmgar1", "https://tec.openplanner.team/stops/Bhmmmon2"], ["https://tec.openplanner.team/stops/N140aaa", "https://tec.openplanner.team/stops/N146afb"], ["https://tec.openplanner.team/stops/Llgarmu1", "https://tec.openplanner.team/stops/Llgarmu4"], ["https://tec.openplanner.team/stops/Llgamer1", "https://tec.openplanner.team/stops/Llgbwez1"], ["https://tec.openplanner.team/stops/H4ka193b", "https://tec.openplanner.team/stops/H4ty359b"], ["https://tec.openplanner.team/stops/X837aaa", "https://tec.openplanner.team/stops/X837aba"], ["https://tec.openplanner.team/stops/Brixaug3", "https://tec.openplanner.team/stops/Brixpro3"], ["https://tec.openplanner.team/stops/X769apa", "https://tec.openplanner.team/stops/X769aqb"], ["https://tec.openplanner.team/stops/N503alb", "https://tec.openplanner.team/stops/N509bga"], ["https://tec.openplanner.team/stops/LBTchai1", "https://tec.openplanner.team/stops/LCHsaul2"], ["https://tec.openplanner.team/stops/N355abb", "https://tec.openplanner.team/stops/N355ada"], ["https://tec.openplanner.team/stops/Bezegar2", "https://tec.openplanner.team/stops/Blanath1"], ["https://tec.openplanner.team/stops/Baudsta2", "https://tec.openplanner.team/stops/Bwolvan2"], ["https://tec.openplanner.team/stops/Lladete3", "https://tec.openplanner.team/stops/Lladete4"], ["https://tec.openplanner.team/stops/Bjaugar5", "https://tec.openplanner.team/stops/Bjaupro2"], ["https://tec.openplanner.team/stops/X630abb", "https://tec.openplanner.team/stops/X630aca"], ["https://tec.openplanner.team/stops/Bsaumlk2", "https://tec.openplanner.team/stops/Bsaumlk3"], ["https://tec.openplanner.team/stops/Cmyboci1", "https://tec.openplanner.team/stops/Cmyvert2"], ["https://tec.openplanner.team/stops/H4mo148b", "https://tec.openplanner.team/stops/H4mo184b"], ["https://tec.openplanner.team/stops/N517add", "https://tec.openplanner.team/stops/NL75aab"], ["https://tec.openplanner.team/stops/LCljose1", "https://tec.openplanner.team/stops/LFdbagu2"], ["https://tec.openplanner.team/stops/LwYkirc2", "https://tec.openplanner.team/stops/LwYsarl2"], ["https://tec.openplanner.team/stops/LNveg--2", "https://tec.openplanner.team/stops/LNvrout2"], ["https://tec.openplanner.team/stops/Lpeptle1", "https://tec.openplanner.team/stops/LWeatel2"], ["https://tec.openplanner.team/stops/LGEvill1", "https://tec.openplanner.team/stops/LGEwalk1"], ["https://tec.openplanner.team/stops/H4bd109a", "https://tec.openplanner.team/stops/H4te257a"], ["https://tec.openplanner.team/stops/X601cia", "https://tec.openplanner.team/stops/X601cja"], ["https://tec.openplanner.team/stops/H1bo110a", "https://tec.openplanner.team/stops/H1bo110b"], ["https://tec.openplanner.team/stops/Ctm4che2", "https://tec.openplanner.team/stops/Ctmazeb1"], ["https://tec.openplanner.team/stops/LBPrueg2", "https://tec.openplanner.team/stops/LSLfler1"], ["https://tec.openplanner.team/stops/X614asa", "https://tec.openplanner.team/stops/X614ata"], ["https://tec.openplanner.team/stops/X359aab", "https://tec.openplanner.team/stops/X371afa"], ["https://tec.openplanner.team/stops/Bwatb4s1", "https://tec.openplanner.team/stops/Bwatbno2"], ["https://tec.openplanner.team/stops/H1wa132b", "https://tec.openplanner.team/stops/H1wa155b"], ["https://tec.openplanner.team/stops/H1po132b", "https://tec.openplanner.team/stops/H1po137a"], ["https://tec.openplanner.team/stops/LFsconc1", "https://tec.openplanner.team/stops/LFsec--1"], ["https://tec.openplanner.team/stops/X927aba", "https://tec.openplanner.team/stops/X927acb"], ["https://tec.openplanner.team/stops/H2ha129b", "https://tec.openplanner.team/stops/H2ha141a"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lenhosp1"], ["https://tec.openplanner.team/stops/X818afa", "https://tec.openplanner.team/stops/X818afb"], ["https://tec.openplanner.team/stops/Cmmbsit1", "https://tec.openplanner.team/stops/Cmmbsit2"], ["https://tec.openplanner.team/stops/Cbmind3", "https://tec.openplanner.team/stops/Cssgare2"], ["https://tec.openplanner.team/stops/N215aca", "https://tec.openplanner.team/stops/N215acc"], ["https://tec.openplanner.team/stops/Loureno2", "https://tec.openplanner.team/stops/Lstchas1"], ["https://tec.openplanner.team/stops/H4ty301b", "https://tec.openplanner.team/stops/H4ty335b"], ["https://tec.openplanner.team/stops/Bhenpla2", "https://tec.openplanner.team/stops/Bhenrcr1"], ["https://tec.openplanner.team/stops/H4er121b", "https://tec.openplanner.team/stops/H4oq228a"], ["https://tec.openplanner.team/stops/X738aab", "https://tec.openplanner.team/stops/X779ada"], ["https://tec.openplanner.team/stops/X637abb", "https://tec.openplanner.team/stops/X637aca"], ["https://tec.openplanner.team/stops/H1hl127a", "https://tec.openplanner.team/stops/H1hl127b"], ["https://tec.openplanner.team/stops/Bovetdo2", "https://tec.openplanner.team/stops/Brsregl4"], ["https://tec.openplanner.team/stops/Bgemibb2", "https://tec.openplanner.team/stops/N522aca"], ["https://tec.openplanner.team/stops/Cbwegl2", "https://tec.openplanner.team/stops/Cmgvpa"], ["https://tec.openplanner.team/stops/LbUmolk2", "https://tec.openplanner.team/stops/LbUwirt2"], ["https://tec.openplanner.team/stops/N525aed", "https://tec.openplanner.team/stops/N525alb"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LCxross1"], ["https://tec.openplanner.team/stops/LHYdogn1", "https://tec.openplanner.team/stops/LHYnoid2"], ["https://tec.openplanner.team/stops/LaAlinz2", "https://tec.openplanner.team/stops/LaAneul1"], ["https://tec.openplanner.team/stops/Bbealon4", "https://tec.openplanner.team/stops/Bbeascl2"], ["https://tec.openplanner.team/stops/X607abb", "https://tec.openplanner.team/stops/X621aca"], ["https://tec.openplanner.team/stops/X512aib", "https://tec.openplanner.team/stops/X595abb"], ["https://tec.openplanner.team/stops/Bhevgar1", "https://tec.openplanner.team/stops/Bhevhha1"], ["https://tec.openplanner.team/stops/Btancnd1", "https://tec.openplanner.team/stops/Btancre2"], ["https://tec.openplanner.team/stops/LeUclou2", "https://tec.openplanner.team/stops/LrAbe601"], ["https://tec.openplanner.team/stops/H1qv114b", "https://tec.openplanner.team/stops/H1qv115b"], ["https://tec.openplanner.team/stops/N534asa", "https://tec.openplanner.team/stops/N534ava"], ["https://tec.openplanner.team/stops/H4ss157a", "https://tec.openplanner.team/stops/H5rx100a"], ["https://tec.openplanner.team/stops/H1ms271a", "https://tec.openplanner.team/stops/H1ms310a"], ["https://tec.openplanner.team/stops/Bottcpl2", "https://tec.openplanner.team/stops/Bottpin1"], ["https://tec.openplanner.team/stops/LLteg--2", "https://tec.openplanner.team/stops/LLtrout1"], ["https://tec.openplanner.team/stops/LgHdorf1", "https://tec.openplanner.team/stops/LwSschw1"], ["https://tec.openplanner.team/stops/N308aea", "https://tec.openplanner.team/stops/N308afb"], ["https://tec.openplanner.team/stops/LBpecco1", "https://tec.openplanner.team/stops/LGEhosp2"], ["https://tec.openplanner.team/stops/N229aab", "https://tec.openplanner.team/stops/N270aga"], ["https://tec.openplanner.team/stops/X840aaa", "https://tec.openplanner.team/stops/X840aga"], ["https://tec.openplanner.team/stops/LBzec--1", "https://tec.openplanner.team/stops/LBzvill2"], ["https://tec.openplanner.team/stops/N551afb", "https://tec.openplanner.team/stops/N551aja"], ["https://tec.openplanner.team/stops/N501avb", "https://tec.openplanner.team/stops/N501mga"], ["https://tec.openplanner.team/stops/LFRsp1-1", "https://tec.openplanner.team/stops/LFRspa-1"], ["https://tec.openplanner.team/stops/Bwatcoq1", "https://tec.openplanner.team/stops/Bwatcrf1"], ["https://tec.openplanner.team/stops/X664aca", "https://tec.openplanner.team/stops/X664adc"], ["https://tec.openplanner.team/stops/X735aca", "https://tec.openplanner.team/stops/X736aia"], ["https://tec.openplanner.team/stops/X783aba", "https://tec.openplanner.team/stops/X783acd"], ["https://tec.openplanner.team/stops/H5el104a", "https://tec.openplanner.team/stops/H5el117a"], ["https://tec.openplanner.team/stops/X307aba", "https://tec.openplanner.team/stops/X307acb"], ["https://tec.openplanner.team/stops/X727ada", "https://tec.openplanner.team/stops/X727adb"], ["https://tec.openplanner.team/stops/NL37aia", "https://tec.openplanner.team/stops/NL37aja"], ["https://tec.openplanner.team/stops/Brebchb1", "https://tec.openplanner.team/stops/Brebchb2"], ["https://tec.openplanner.team/stops/LMIgare1", "https://tec.openplanner.team/stops/LMIgare2"], ["https://tec.openplanner.team/stops/LHUchh-1", "https://tec.openplanner.team/stops/NL80aia"], ["https://tec.openplanner.team/stops/LbOdorf1", "https://tec.openplanner.team/stops/LbOre151"], ["https://tec.openplanner.team/stops/NR21aga", "https://tec.openplanner.team/stops/NR21agb"], ["https://tec.openplanner.team/stops/Lhuecol1", "https://tec.openplanner.team/stops/Lmnhorl2"], ["https://tec.openplanner.team/stops/N222aaa", "https://tec.openplanner.team/stops/N222abb"], ["https://tec.openplanner.team/stops/LhUdenk1", "https://tec.openplanner.team/stops/LhUrich2"], ["https://tec.openplanner.team/stops/Llgdarc2", "https://tec.openplanner.team/stops/LlgPTAV3"], ["https://tec.openplanner.team/stops/Llgstvi1", "https://tec.openplanner.team/stops/Llgstvi2"], ["https://tec.openplanner.team/stops/LRGderr1", "https://tec.openplanner.team/stops/LRGunio3"], ["https://tec.openplanner.team/stops/Bbiecoc1", "https://tec.openplanner.team/stops/Bgzdast1"], ["https://tec.openplanner.team/stops/LCxhame2", "https://tec.openplanner.team/stops/LCxwarr2"], ["https://tec.openplanner.team/stops/X939abb", "https://tec.openplanner.team/stops/X939aca"], ["https://tec.openplanner.team/stops/Lvccime1", "https://tec.openplanner.team/stops/Lvcpost1"], ["https://tec.openplanner.team/stops/X994ala", "https://tec.openplanner.team/stops/X994amb"], ["https://tec.openplanner.team/stops/X805abb", "https://tec.openplanner.team/stops/X805afb"], ["https://tec.openplanner.team/stops/H5rx145a", "https://tec.openplanner.team/stops/H5rx145b"], ["https://tec.openplanner.team/stops/Canbruy2", "https://tec.openplanner.team/stops/Canfief1"], ["https://tec.openplanner.team/stops/X601ana", "https://tec.openplanner.team/stops/X601ceb"], ["https://tec.openplanner.team/stops/X610afa", "https://tec.openplanner.team/stops/X610aja"], ["https://tec.openplanner.team/stops/H1je217a", "https://tec.openplanner.team/stops/H1je221a"], ["https://tec.openplanner.team/stops/X740adb", "https://tec.openplanner.team/stops/X740afb"], ["https://tec.openplanner.team/stops/LCxcour2", "https://tec.openplanner.team/stops/LCxfawe2"], ["https://tec.openplanner.team/stops/H1wa158b", "https://tec.openplanner.team/stops/H1wa163a"], ["https://tec.openplanner.team/stops/Cfmgrmo2", "https://tec.openplanner.team/stops/Cfmmart2"], ["https://tec.openplanner.team/stops/Cci4bra2", "https://tec.openplanner.team/stops/NC02apb"], ["https://tec.openplanner.team/stops/LMFmerl1", "https://tec.openplanner.team/stops/LMFmerl2"], ["https://tec.openplanner.team/stops/X783aaa", "https://tec.openplanner.team/stops/X783aab"], ["https://tec.openplanner.team/stops/LBabeco4", "https://tec.openplanner.team/stops/LBapepi6"], ["https://tec.openplanner.team/stops/N531ajb", "https://tec.openplanner.team/stops/N534bog"], ["https://tec.openplanner.team/stops/Cmlgche2", "https://tec.openplanner.team/stops/Cmltemp1"], ["https://tec.openplanner.team/stops/Bblaece2", "https://tec.openplanner.team/stops/Bblasmo1"], ["https://tec.openplanner.team/stops/Cbmind3", "https://tec.openplanner.team/stops/Cbmviv1"], ["https://tec.openplanner.team/stops/Bblabfo2", "https://tec.openplanner.team/stops/Bblager1"], ["https://tec.openplanner.team/stops/H1mc126b", "https://tec.openplanner.team/stops/H1mc127a"], ["https://tec.openplanner.team/stops/H4mx117a", "https://tec.openplanner.team/stops/H4po128b"], ["https://tec.openplanner.team/stops/NL57afa", "https://tec.openplanner.team/stops/NL57afb"], ["https://tec.openplanner.team/stops/Bsaubra2", "https://tec.openplanner.team/stops/Bsauvmo2"], ["https://tec.openplanner.team/stops/LOumaro1", "https://tec.openplanner.team/stops/LOumaro2"], ["https://tec.openplanner.team/stops/X660aea", "https://tec.openplanner.team/stops/X840aab"], ["https://tec.openplanner.team/stops/H5wo125a", "https://tec.openplanner.team/stops/H5wo125b"], ["https://tec.openplanner.team/stops/LOV48--1", "https://tec.openplanner.team/stops/LOV62--2"], ["https://tec.openplanner.team/stops/N538aoa", "https://tec.openplanner.team/stops/N538atb"], ["https://tec.openplanner.team/stops/Cauptsa2", "https://tec.openplanner.team/stops/Ctaprai3"], ["https://tec.openplanner.team/stops/X953afa", "https://tec.openplanner.team/stops/X954aga"], ["https://tec.openplanner.team/stops/Bohnbra1", "https://tec.openplanner.team/stops/Bohnrpl2"], ["https://tec.openplanner.team/stops/N221aaa", "https://tec.openplanner.team/stops/X221aad"], ["https://tec.openplanner.team/stops/LOTsav-2", "https://tec.openplanner.team/stops/LOTsava2"], ["https://tec.openplanner.team/stops/X837aba", "https://tec.openplanner.team/stops/X837aca"], ["https://tec.openplanner.team/stops/Ladmoli1", "https://tec.openplanner.team/stops/Ladpire1"], ["https://tec.openplanner.team/stops/LFRcoun2", "https://tec.openplanner.team/stops/LSTdero2"], ["https://tec.openplanner.team/stops/H4sm247b", "https://tec.openplanner.team/stops/H4ty322a"], ["https://tec.openplanner.team/stops/Llgamer4", "https://tec.openplanner.team/stops/Llglair1"], ["https://tec.openplanner.team/stops/Cmymaco1", "https://tec.openplanner.team/stops/Cmypost1"], ["https://tec.openplanner.team/stops/Cbwdoua2", "https://tec.openplanner.team/stops/Cbweco2"], ["https://tec.openplanner.team/stops/Bhalcbr1", "https://tec.openplanner.team/stops/Bhalvel2"], ["https://tec.openplanner.team/stops/H1ha185b", "https://tec.openplanner.team/stops/H1ha190a"], ["https://tec.openplanner.team/stops/LWZeg--2", "https://tec.openplanner.team/stops/LWZponh1"], ["https://tec.openplanner.team/stops/LHexhav1", "https://tec.openplanner.team/stops/LWOwaer1"], ["https://tec.openplanner.team/stops/LOTawan2", "https://tec.openplanner.team/stops/LOTdelv2"], ["https://tec.openplanner.team/stops/H1by106a", "https://tec.openplanner.team/stops/H1sy139b"], ["https://tec.openplanner.team/stops/LlgLEOP1", "https://tec.openplanner.team/stops/Llgrege2"], ["https://tec.openplanner.team/stops/Llgbene1", "https://tec.openplanner.team/stops/Llgptlo1"], ["https://tec.openplanner.team/stops/H2tz117a", "https://tec.openplanner.team/stops/H2tz117b"], ["https://tec.openplanner.team/stops/N118ava", "https://tec.openplanner.team/stops/N118bbb"], ["https://tec.openplanner.team/stops/LbOre151", "https://tec.openplanner.team/stops/LbOre152"], ["https://tec.openplanner.team/stops/Livroch2", "https://tec.openplanner.team/stops/LRachen2"], ["https://tec.openplanner.team/stops/H1by103b", "https://tec.openplanner.team/stops/H1by108a"], ["https://tec.openplanner.team/stops/LMfpral2", "https://tec.openplanner.team/stops/NL57amb"], ["https://tec.openplanner.team/stops/H4ea134a", "https://tec.openplanner.team/stops/H4ea134b"], ["https://tec.openplanner.team/stops/Cchcaya2", "https://tec.openplanner.team/stops/Cchlamb1"], ["https://tec.openplanner.team/stops/X999aaa", "https://tec.openplanner.team/stops/X999abb"], ["https://tec.openplanner.team/stops/LHCbran2", "https://tec.openplanner.team/stops/LWEwilc2"], ["https://tec.openplanner.team/stops/X809aab", "https://tec.openplanner.team/stops/X812aua"], ["https://tec.openplanner.team/stops/X637ala", "https://tec.openplanner.team/stops/X637aqb"], ["https://tec.openplanner.team/stops/N554aga", "https://tec.openplanner.team/stops/N554ahb"], ["https://tec.openplanner.team/stops/N287aab", "https://tec.openplanner.team/stops/N287adb"], ["https://tec.openplanner.team/stops/LmD163-1", "https://tec.openplanner.team/stops/LmYamel2"], ["https://tec.openplanner.team/stops/Clfmonu3", "https://tec.openplanner.team/stops/Cstmarz2"], ["https://tec.openplanner.team/stops/X631acb", "https://tec.openplanner.team/stops/X631adb"], ["https://tec.openplanner.team/stops/X983aca", "https://tec.openplanner.team/stops/X983adb"], ["https://tec.openplanner.team/stops/Livgera6", "https://tec.openplanner.team/stops/Livjeu-1"], ["https://tec.openplanner.team/stops/N543cba", "https://tec.openplanner.team/stops/N543cfa"], ["https://tec.openplanner.team/stops/Bquepos1", "https://tec.openplanner.team/stops/Bquepos2"], ["https://tec.openplanner.team/stops/LCRf14-1", "https://tec.openplanner.team/stops/LCRgdrt2"], ["https://tec.openplanner.team/stops/LnDdorf1", "https://tec.openplanner.team/stops/LnDrund2"], ["https://tec.openplanner.team/stops/H1hc126b", "https://tec.openplanner.team/stops/H1hc152b"], ["https://tec.openplanner.team/stops/N507aha", "https://tec.openplanner.team/stops/N507akb"], ["https://tec.openplanner.team/stops/LDAbois1", "https://tec.openplanner.team/stops/LDArich1"], ["https://tec.openplanner.team/stops/LLLvill1", "https://tec.openplanner.team/stops/X576acb"], ["https://tec.openplanner.team/stops/Cmaplas3", "https://tec.openplanner.team/stops/Cromonn1"], ["https://tec.openplanner.team/stops/Crcgare2", "https://tec.openplanner.team/stops/Crcrgar2"], ["https://tec.openplanner.team/stops/N211aga", "https://tec.openplanner.team/stops/N211apa"], ["https://tec.openplanner.team/stops/X741abd", "https://tec.openplanner.team/stops/X741acb"], ["https://tec.openplanner.team/stops/Lfhhaso2", "https://tec.openplanner.team/stops/Lfhxhor2"], ["https://tec.openplanner.team/stops/Llggerm2", "https://tec.openplanner.team/stops/Lvtpepi1"], ["https://tec.openplanner.team/stops/N139ada", "https://tec.openplanner.team/stops/N139aea"], ["https://tec.openplanner.team/stops/Bbuzcom2", "https://tec.openplanner.team/stops/Bbuzeta2"], ["https://tec.openplanner.team/stops/LStgare*", "https://tec.openplanner.team/stops/LStroch2"], ["https://tec.openplanner.team/stops/Caibino1", "https://tec.openplanner.team/stops/Cairous1"], ["https://tec.openplanner.team/stops/LVlroua1", "https://tec.openplanner.team/stops/LVlroua4"], ["https://tec.openplanner.team/stops/H1do108b", "https://tec.openplanner.team/stops/H1do109a"], ["https://tec.openplanner.team/stops/N514aab", "https://tec.openplanner.team/stops/N514afb"], ["https://tec.openplanner.team/stops/N353aha", "https://tec.openplanner.team/stops/N353awa"], ["https://tec.openplanner.team/stops/LHUfali2", "https://tec.openplanner.team/stops/LHUfali4"], ["https://tec.openplanner.team/stops/Cauwauq2", "https://tec.openplanner.team/stops/Cvsbois2"], ["https://tec.openplanner.team/stops/N501bnb", "https://tec.openplanner.team/stops/N501chc"], ["https://tec.openplanner.team/stops/X952afa", "https://tec.openplanner.team/stops/X952aha"], ["https://tec.openplanner.team/stops/X657acb", "https://tec.openplanner.team/stops/X657ajb"], ["https://tec.openplanner.team/stops/X740aba", "https://tec.openplanner.team/stops/X740abd"], ["https://tec.openplanner.team/stops/X812bba", "https://tec.openplanner.team/stops/X812bbb"], ["https://tec.openplanner.team/stops/Canmonu3", "https://tec.openplanner.team/stops/Canterr1"], ["https://tec.openplanner.team/stops/Cgofleu2", "https://tec.openplanner.team/stops/Cgon52"], ["https://tec.openplanner.team/stops/N553aca", "https://tec.openplanner.team/stops/N553anb"], ["https://tec.openplanner.team/stops/LHocroi1", "https://tec.openplanner.team/stops/LJedonc4"], ["https://tec.openplanner.team/stops/LBJapol1", "https://tec.openplanner.team/stops/LMAcomm2"], ["https://tec.openplanner.team/stops/X879afb", "https://tec.openplanner.team/stops/X879aha"], ["https://tec.openplanner.team/stops/LHvvill*", "https://tec.openplanner.team/stops/LPTblan2"], ["https://tec.openplanner.team/stops/Bmlnegl3", "https://tec.openplanner.team/stops/Bmlngvi2"], ["https://tec.openplanner.team/stops/X638amb", "https://tec.openplanner.team/stops/X652afc"], ["https://tec.openplanner.team/stops/N207aab", "https://tec.openplanner.team/stops/N207afb"], ["https://tec.openplanner.team/stops/Loucent2", "https://tec.openplanner.team/stops/Louwuid1"], ["https://tec.openplanner.team/stops/Bhoegbr1", "https://tec.openplanner.team/stops/Brsgm802"], ["https://tec.openplanner.team/stops/N521aob", "https://tec.openplanner.team/stops/N521apb"], ["https://tec.openplanner.team/stops/LbTmons1", "https://tec.openplanner.team/stops/LbTmons2"], ["https://tec.openplanner.team/stops/LDOprev1", "https://tec.openplanner.team/stops/LDOprev2"], ["https://tec.openplanner.team/stops/H1au102a", "https://tec.openplanner.team/stops/H1au103b"], ["https://tec.openplanner.team/stops/Llgtunn2", "https://tec.openplanner.team/stops/Llgvalu2"], ["https://tec.openplanner.team/stops/X938aab", "https://tec.openplanner.team/stops/X938aca"], ["https://tec.openplanner.team/stops/N218aba", "https://tec.openplanner.team/stops/N218ada"], ["https://tec.openplanner.team/stops/Ccugend2", "https://tec.openplanner.team/stops/Ccuhsti1"], ["https://tec.openplanner.team/stops/Llochar1", "https://tec.openplanner.team/stops/Llochar4"], ["https://tec.openplanner.team/stops/N532aha", "https://tec.openplanner.team/stops/N532aja"], ["https://tec.openplanner.team/stops/X812baa", "https://tec.openplanner.team/stops/X812bba"], ["https://tec.openplanner.team/stops/H5rx129b", "https://tec.openplanner.team/stops/H5rx143b"], ["https://tec.openplanner.team/stops/LBRgare2", "https://tec.openplanner.team/stops/LMffoot1"], ["https://tec.openplanner.team/stops/LaSkape2", "https://tec.openplanner.team/stops/LaSneuh2"], ["https://tec.openplanner.team/stops/H1tt106b", "https://tec.openplanner.team/stops/H1tt107b"], ["https://tec.openplanner.team/stops/Bwatms10", "https://tec.openplanner.team/stops/Bwatmsj8"], ["https://tec.openplanner.team/stops/X661awb", "https://tec.openplanner.team/stops/X661ayc"], ["https://tec.openplanner.team/stops/N503aka", "https://tec.openplanner.team/stops/N503ala"], ["https://tec.openplanner.team/stops/Cpcgout1", "https://tec.openplanner.team/stops/Cpcplac4"], ["https://tec.openplanner.team/stops/H2an100a", "https://tec.openplanner.team/stops/H2an101a"], ["https://tec.openplanner.team/stops/N894ada", "https://tec.openplanner.team/stops/N894adb"], ["https://tec.openplanner.team/stops/Bblague1", "https://tec.openplanner.team/stops/Bblapje2"], ["https://tec.openplanner.team/stops/X601dia", "https://tec.openplanner.team/stops/X662aoa"], ["https://tec.openplanner.team/stops/LJU51--1", "https://tec.openplanner.team/stops/LJU51--2"], ["https://tec.openplanner.team/stops/Cbfegch1", "https://tec.openplanner.team/stops/Cbfegch2"], ["https://tec.openplanner.team/stops/N539aba", "https://tec.openplanner.team/stops/N539adc"], ["https://tec.openplanner.team/stops/Cgocalv1", "https://tec.openplanner.team/stops/Cgostro1"], ["https://tec.openplanner.team/stops/Cnating1", "https://tec.openplanner.team/stops/Cnating2"], ["https://tec.openplanner.team/stops/H1wa140a", "https://tec.openplanner.team/stops/H1wa164a"], ["https://tec.openplanner.team/stops/X790ada", "https://tec.openplanner.team/stops/X790afb"], ["https://tec.openplanner.team/stops/X741aga", "https://tec.openplanner.team/stops/X758aka"], ["https://tec.openplanner.team/stops/Cfrfede1", "https://tec.openplanner.team/stops/Csdpira2"], ["https://tec.openplanner.team/stops/Bcrnegl2", "https://tec.openplanner.team/stops/Bcrnnpl2"], ["https://tec.openplanner.team/stops/LORcomb2", "https://tec.openplanner.team/stops/LORmont2"], ["https://tec.openplanner.team/stops/N106afa", "https://tec.openplanner.team/stops/N106ahb"], ["https://tec.openplanner.team/stops/Bbauham2", "https://tec.openplanner.team/stops/Bnivhon1"], ["https://tec.openplanner.team/stops/X616aeb", "https://tec.openplanner.team/stops/X616afa"], ["https://tec.openplanner.team/stops/X606aaa", "https://tec.openplanner.team/stops/X648aaa"], ["https://tec.openplanner.team/stops/LPohoeg1", "https://tec.openplanner.team/stops/LPohoeg2"], ["https://tec.openplanner.team/stops/LHUcamp2", "https://tec.openplanner.team/stops/LTicent1"], ["https://tec.openplanner.team/stops/H4br109b", "https://tec.openplanner.team/stops/H4hn114a"], ["https://tec.openplanner.team/stops/Baeggar1", "https://tec.openplanner.team/stops/Baegm502"], ["https://tec.openplanner.team/stops/N512ata", "https://tec.openplanner.team/stops/N512atb"], ["https://tec.openplanner.team/stops/Bixlozo2", "https://tec.openplanner.team/stops/Buccham2"], ["https://tec.openplanner.team/stops/N150aeb", "https://tec.openplanner.team/stops/N150afb"], ["https://tec.openplanner.team/stops/X626ada", "https://tec.openplanner.team/stops/X626adb"], ["https://tec.openplanner.team/stops/Brxmbos1", "https://tec.openplanner.team/stops/Brxmbos2"], ["https://tec.openplanner.team/stops/H4ty348a", "https://tec.openplanner.team/stops/H4ty348b"], ["https://tec.openplanner.team/stops/Lghleon2", "https://tec.openplanner.team/stops/Lmlbaro2"], ["https://tec.openplanner.team/stops/N230aha", "https://tec.openplanner.team/stops/N230ahb"], ["https://tec.openplanner.team/stops/Ccpsecp2", "https://tec.openplanner.team/stops/H2ch125a"], ["https://tec.openplanner.team/stops/H2fa108a", "https://tec.openplanner.team/stops/H2lc170a"], ["https://tec.openplanner.team/stops/X879ana", "https://tec.openplanner.team/stops/X898aaa"], ["https://tec.openplanner.team/stops/LeYwald1", "https://tec.openplanner.team/stops/LlCauto2"], ["https://tec.openplanner.team/stops/N355ada", "https://tec.openplanner.team/stops/N894aga"], ["https://tec.openplanner.team/stops/X952aja", "https://tec.openplanner.team/stops/X952aka"], ["https://tec.openplanner.team/stops/X666aia", "https://tec.openplanner.team/stops/X666akb"], ["https://tec.openplanner.team/stops/X982apa", "https://tec.openplanner.team/stops/X982apb"], ["https://tec.openplanner.team/stops/LCxross1", "https://tec.openplanner.team/stops/LCxwade2"], ["https://tec.openplanner.team/stops/Ctaprai3", "https://tec.openplanner.team/stops/N543boa"], ["https://tec.openplanner.team/stops/LSkrena2", "https://tec.openplanner.team/stops/LSkrena3"], ["https://tec.openplanner.team/stops/Cwfdame1", "https://tec.openplanner.team/stops/Cwfreta1"], ["https://tec.openplanner.team/stops/LBrbern2", "https://tec.openplanner.team/stops/LBrec--1"], ["https://tec.openplanner.team/stops/Cbfgare2", "https://tec.openplanner.team/stops/Cctbois2"], ["https://tec.openplanner.team/stops/X941aeb", "https://tec.openplanner.team/stops/X941aha"], ["https://tec.openplanner.team/stops/Bblaegl1", "https://tec.openplanner.team/stops/Bwatcli2"], ["https://tec.openplanner.team/stops/H1hr121a", "https://tec.openplanner.team/stops/H1hr121d"], ["https://tec.openplanner.team/stops/Brsgecu1", "https://tec.openplanner.team/stops/Brsgfbl4"], ["https://tec.openplanner.team/stops/X658abb", "https://tec.openplanner.team/stops/X671aea"], ["https://tec.openplanner.team/stops/N512aia", "https://tec.openplanner.team/stops/NL68adb"], ["https://tec.openplanner.team/stops/Ccucroi2", "https://tec.openplanner.team/stops/Ccupetp1"], ["https://tec.openplanner.team/stops/H4pl114a", "https://tec.openplanner.team/stops/H4pl114b"], ["https://tec.openplanner.team/stops/N229aka", "https://tec.openplanner.team/stops/N229akb"], ["https://tec.openplanner.team/stops/LJOchar1", "https://tec.openplanner.team/stops/LSOvoie2"], ["https://tec.openplanner.team/stops/LMfbuck2", "https://tec.openplanner.team/stops/LMforba1"], ["https://tec.openplanner.team/stops/Bbgnton1", "https://tec.openplanner.team/stops/N530aba"], ["https://tec.openplanner.team/stops/NL78aea", "https://tec.openplanner.team/stops/NL78aeb"], ["https://tec.openplanner.team/stops/LkTdorf2", "https://tec.openplanner.team/stops/LkTtal-2"], ["https://tec.openplanner.team/stops/X734acb", "https://tec.openplanner.team/stops/X734ada"], ["https://tec.openplanner.team/stops/N232bbb", "https://tec.openplanner.team/stops/N232bgb"], ["https://tec.openplanner.team/stops/N525aob", "https://tec.openplanner.team/stops/N525atb"], ["https://tec.openplanner.team/stops/LVEbors2", "https://tec.openplanner.team/stops/LVEhali2"], ["https://tec.openplanner.team/stops/N534ata", "https://tec.openplanner.team/stops/N534bgb"], ["https://tec.openplanner.team/stops/N214afb", "https://tec.openplanner.team/stops/N214agb"], ["https://tec.openplanner.team/stops/N509acb", "https://tec.openplanner.team/stops/N511aqa"], ["https://tec.openplanner.team/stops/LBpberl1", "https://tec.openplanner.team/stops/LBpecco3"], ["https://tec.openplanner.team/stops/LnEmett1", "https://tec.openplanner.team/stops/LsVhunn1"], ["https://tec.openplanner.team/stops/N540akb", "https://tec.openplanner.team/stops/N540alb"], ["https://tec.openplanner.team/stops/H4ne143b", "https://tec.openplanner.team/stops/H4tf147a"], ["https://tec.openplanner.team/stops/Cgycime4", "https://tec.openplanner.team/stops/Cgytrie1"], ["https://tec.openplanner.team/stops/N574aab", "https://tec.openplanner.team/stops/N574ada"], ["https://tec.openplanner.team/stops/N513aua", "https://tec.openplanner.team/stops/N514aga"], ["https://tec.openplanner.team/stops/Bbeubos2", "https://tec.openplanner.team/stops/Bsdecdi2"], ["https://tec.openplanner.team/stops/N309aab", "https://tec.openplanner.team/stops/N313acb"], ["https://tec.openplanner.team/stops/Lgrfrcu2", "https://tec.openplanner.team/stops/Lgrlabo2"], ["https://tec.openplanner.team/stops/H2mo124a", "https://tec.openplanner.team/stops/H2mo127d"], ["https://tec.openplanner.team/stops/H1gh144a", "https://tec.openplanner.team/stops/H1gh144b"], ["https://tec.openplanner.team/stops/X608aca", "https://tec.openplanner.team/stops/X608aja"], ["https://tec.openplanner.team/stops/LBkcarr1", "https://tec.openplanner.team/stops/LBkdahl1"], ["https://tec.openplanner.team/stops/Bcrbcel1", "https://tec.openplanner.team/stops/Bcrbcel2"], ["https://tec.openplanner.team/stops/LGecime1", "https://tec.openplanner.team/stops/LGevygh2"], ["https://tec.openplanner.team/stops/Lroboeg1", "https://tec.openplanner.team/stops/Lroboeg2"], ["https://tec.openplanner.team/stops/X921afa", "https://tec.openplanner.team/stops/X921afb"], ["https://tec.openplanner.team/stops/X811akb", "https://tec.openplanner.team/stops/X811ala"], ["https://tec.openplanner.team/stops/N211adb", "https://tec.openplanner.team/stops/N211bba"], ["https://tec.openplanner.team/stops/Clbpepi2", "https://tec.openplanner.team/stops/Cthrlef1"], ["https://tec.openplanner.team/stops/Cprcalv2", "https://tec.openplanner.team/stops/NC44aga"], ["https://tec.openplanner.team/stops/X791aaa", "https://tec.openplanner.team/stops/X791adb"], ["https://tec.openplanner.team/stops/X921ala", "https://tec.openplanner.team/stops/X979aeb"], ["https://tec.openplanner.team/stops/N585abb", "https://tec.openplanner.team/stops/N585akb"], ["https://tec.openplanner.team/stops/X725aea", "https://tec.openplanner.team/stops/X725bea"], ["https://tec.openplanner.team/stops/Bwspcar2", "https://tec.openplanner.team/stops/Bwspm371"], ["https://tec.openplanner.team/stops/X664aga", "https://tec.openplanner.team/stops/X664aib"], ["https://tec.openplanner.team/stops/H5bl115d", "https://tec.openplanner.team/stops/H5bl141a"], ["https://tec.openplanner.team/stops/H1so137a", "https://tec.openplanner.team/stops/H1so146a"], ["https://tec.openplanner.team/stops/H5is174a", "https://tec.openplanner.team/stops/H5is174b"], ["https://tec.openplanner.team/stops/LBPeg--2", "https://tec.openplanner.team/stops/LBPrueg2"], ["https://tec.openplanner.team/stops/Bovesnh1", "https://tec.openplanner.team/stops/Bovesnh2"], ["https://tec.openplanner.team/stops/LLEfagn2", "https://tec.openplanner.team/stops/LQacabi2"], ["https://tec.openplanner.team/stops/N501ffb", "https://tec.openplanner.team/stops/N501fqa"], ["https://tec.openplanner.team/stops/N165aca", "https://tec.openplanner.team/stops/N165acb"], ["https://tec.openplanner.team/stops/Ljelamb1", "https://tec.openplanner.team/stops/Ljelamb2"], ["https://tec.openplanner.team/stops/N539abb", "https://tec.openplanner.team/stops/N539afa"], ["https://tec.openplanner.team/stops/Bblaadm1", "https://tec.openplanner.team/stops/Bblaadm2"], ["https://tec.openplanner.team/stops/LVIlore1", "https://tec.openplanner.team/stops/LVIlore2"], ["https://tec.openplanner.team/stops/X715aaa", "https://tec.openplanner.team/stops/X716aea"], ["https://tec.openplanner.team/stops/LFtcarr2", "https://tec.openplanner.team/stops/LMYvill1"], ["https://tec.openplanner.team/stops/N506bua", "https://tec.openplanner.team/stops/N506bub"], ["https://tec.openplanner.team/stops/LBAfort1", "https://tec.openplanner.team/stops/LBAfort2"], ["https://tec.openplanner.team/stops/LBgcroi2", "https://tec.openplanner.team/stops/LBgcroi5"], ["https://tec.openplanner.team/stops/H5pe145b", "https://tec.openplanner.team/stops/H5pe147b"], ["https://tec.openplanner.team/stops/LhEcolo2", "https://tec.openplanner.team/stops/LhElont2"], ["https://tec.openplanner.team/stops/X649aaa", "https://tec.openplanner.team/stops/X649aab"], ["https://tec.openplanner.team/stops/H1je369a", "https://tec.openplanner.team/stops/H1je369b"], ["https://tec.openplanner.team/stops/Bllnchv1", "https://tec.openplanner.team/stops/Bllnhoc1"], ["https://tec.openplanner.team/stops/Bllncyc2", "https://tec.openplanner.team/stops/Bllnrro2"], ["https://tec.openplanner.team/stops/LeLsied1", "https://tec.openplanner.team/stops/LnIkirc1"], ["https://tec.openplanner.team/stops/N501eta", "https://tec.openplanner.team/stops/N501gia"], ["https://tec.openplanner.team/stops/Lalchar1", "https://tec.openplanner.team/stops/Lalwaro2"], ["https://tec.openplanner.team/stops/N501kid", "https://tec.openplanner.team/stops/N501kka"], ["https://tec.openplanner.team/stops/H1pw121b", "https://tec.openplanner.team/stops/H1pw122a"], ["https://tec.openplanner.team/stops/Bsencen1", "https://tec.openplanner.team/stops/Bsenpbi1"], ["https://tec.openplanner.team/stops/Bsomh671", "https://tec.openplanner.team/stops/N584axb"], ["https://tec.openplanner.team/stops/H4bh103b", "https://tec.openplanner.team/stops/H4lp123a"], ["https://tec.openplanner.team/stops/LHanest2", "https://tec.openplanner.team/stops/LHaxhig2"], ["https://tec.openplanner.team/stops/H1ci103a", "https://tec.openplanner.team/stops/H1ci105b"], ["https://tec.openplanner.team/stops/H1ba102b", "https://tec.openplanner.team/stops/H1ba115b"], ["https://tec.openplanner.team/stops/H1ms252c", "https://tec.openplanner.team/stops/H1ms308c"], ["https://tec.openplanner.team/stops/Baudtri1", "https://tec.openplanner.team/stops/Baudtri2"], ["https://tec.openplanner.team/stops/LTHperr2", "https://tec.openplanner.team/stops/LTHperr3"], ["https://tec.openplanner.team/stops/LWLeg--1", "https://tec.openplanner.team/stops/LWLtamb2"], ["https://tec.openplanner.team/stops/LLnec--2", "https://tec.openplanner.team/stops/LPUlecl1"], ["https://tec.openplanner.team/stops/Llgcorn3", "https://tec.openplanner.team/stops/Llgcorn4"], ["https://tec.openplanner.team/stops/Csepost2", "https://tec.openplanner.team/stops/Cvtchap2"], ["https://tec.openplanner.team/stops/N211aka", "https://tec.openplanner.team/stops/N214aba"], ["https://tec.openplanner.team/stops/Llgborn2", "https://tec.openplanner.team/stops/Llgchat2"], ["https://tec.openplanner.team/stops/Cjuaero4", "https://tec.openplanner.team/stops/Cjudefi2"], ["https://tec.openplanner.team/stops/Brsgrol1", "https://tec.openplanner.team/stops/Brsgrol2"], ["https://tec.openplanner.team/stops/H4pi131a", "https://tec.openplanner.team/stops/H4pi134b"], ["https://tec.openplanner.team/stops/N526aeb", "https://tec.openplanner.team/stops/N527abb"], ["https://tec.openplanner.team/stops/H4rx143a", "https://tec.openplanner.team/stops/H4rx175a"], ["https://tec.openplanner.team/stops/LNEec--1", "https://tec.openplanner.team/stops/LVosoir2"], ["https://tec.openplanner.team/stops/Llieg--1", "https://tec.openplanner.team/stops/Llieg--3"], ["https://tec.openplanner.team/stops/Bbcocvb1", "https://tec.openplanner.team/stops/Bhencha2"], ["https://tec.openplanner.team/stops/H1mm126a", "https://tec.openplanner.team/stops/H1mm131a"], ["https://tec.openplanner.team/stops/LhGfl242", "https://tec.openplanner.team/stops/LhGrote2"], ["https://tec.openplanner.team/stops/H1nm138b", "https://tec.openplanner.team/stops/H1nm139b"], ["https://tec.openplanner.team/stops/H1he103b", "https://tec.openplanner.team/stops/H1he107a"], ["https://tec.openplanner.team/stops/H5pe142a", "https://tec.openplanner.team/stops/H5pe142b"], ["https://tec.openplanner.team/stops/X653afa", "https://tec.openplanner.team/stops/X653afb"], ["https://tec.openplanner.team/stops/H3bi115a", "https://tec.openplanner.team/stops/H3bi117b"], ["https://tec.openplanner.team/stops/N505ana", "https://tec.openplanner.team/stops/N505anb"], ["https://tec.openplanner.team/stops/Bjodced2", "https://tec.openplanner.team/stops/NR10acb"], ["https://tec.openplanner.team/stops/Bbstmco2", "https://tec.openplanner.team/stops/Bbstrpo1"], ["https://tec.openplanner.team/stops/N580aba", "https://tec.openplanner.team/stops/N580acb"], ["https://tec.openplanner.team/stops/H4bh101b", "https://tec.openplanner.team/stops/H4bh105a"], ["https://tec.openplanner.team/stops/H4ma200a", "https://tec.openplanner.team/stops/H4ma202b"], ["https://tec.openplanner.team/stops/Cchfaub2", "https://tec.openplanner.team/stops/Cchlefe1"], ["https://tec.openplanner.team/stops/Cfrmoul2", "https://tec.openplanner.team/stops/Cfrplac4"], ["https://tec.openplanner.team/stops/H1fy143a", "https://tec.openplanner.team/stops/H1ro134a"], ["https://tec.openplanner.team/stops/X716aca", "https://tec.openplanner.team/stops/X718aja"], ["https://tec.openplanner.team/stops/Cairous2", "https://tec.openplanner.team/stops/N543cjb"], ["https://tec.openplanner.team/stops/Cfmgara2", "https://tec.openplanner.team/stops/Cfmrrou1"], ["https://tec.openplanner.team/stops/X608aga", "https://tec.openplanner.team/stops/X608ara"], ["https://tec.openplanner.team/stops/X825adb", "https://tec.openplanner.team/stops/X826afa"], ["https://tec.openplanner.team/stops/LHUchh-2", "https://tec.openplanner.team/stops/LHUremy2"], ["https://tec.openplanner.team/stops/X888abb", "https://tec.openplanner.team/stops/X897aea"], ["https://tec.openplanner.team/stops/X621abb", "https://tec.openplanner.team/stops/X621aca"], ["https://tec.openplanner.team/stops/H4mt219b", "https://tec.openplanner.team/stops/H4ve137a"], ["https://tec.openplanner.team/stops/H1th180a", "https://tec.openplanner.team/stops/H3go105a"], ["https://tec.openplanner.team/stops/X886afa", "https://tec.openplanner.team/stops/X886agb"], ["https://tec.openplanner.team/stops/LSZchpl2", "https://tec.openplanner.team/stops/LSZstoc1"], ["https://tec.openplanner.team/stops/Bdlmflo1", "https://tec.openplanner.team/stops/Bdvmcbo2"], ["https://tec.openplanner.team/stops/Brsrber1", "https://tec.openplanner.team/stops/Brsrcha1"], ["https://tec.openplanner.team/stops/X897aoc", "https://tec.openplanner.team/stops/X897aod"], ["https://tec.openplanner.team/stops/X757aga", "https://tec.openplanner.team/stops/X757agb"], ["https://tec.openplanner.team/stops/H5bl118b", "https://tec.openplanner.team/stops/H5gr135a"], ["https://tec.openplanner.team/stops/H1sy139b", "https://tec.openplanner.team/stops/H1sy143a"], ["https://tec.openplanner.team/stops/X872aaa", "https://tec.openplanner.team/stops/X873acb"], ["https://tec.openplanner.team/stops/Lfhchaf2", "https://tec.openplanner.team/stops/Lfhgare1"], ["https://tec.openplanner.team/stops/Lmigare1", "https://tec.openplanner.team/stops/Lmigare2"], ["https://tec.openplanner.team/stops/Bspkdon2", "https://tec.openplanner.team/stops/H1en103a"], ["https://tec.openplanner.team/stops/Ladegli1", "https://tec.openplanner.team/stops/Lveptre2"], ["https://tec.openplanner.team/stops/LkAsonn2", "https://tec.openplanner.team/stops/LwR129-2"], ["https://tec.openplanner.team/stops/LBBabat2", "https://tec.openplanner.team/stops/LBBcarr1"], ["https://tec.openplanner.team/stops/N214ajb", "https://tec.openplanner.team/stops/N225aeb"], ["https://tec.openplanner.team/stops/Cfcecol3", "https://tec.openplanner.team/stops/Cfcecol4"], ["https://tec.openplanner.team/stops/Bblapin1", "https://tec.openplanner.team/stops/Brsgrol2"], ["https://tec.openplanner.team/stops/X636aab", "https://tec.openplanner.team/stops/X636ala"], ["https://tec.openplanner.team/stops/Bgoemho1", "https://tec.openplanner.team/stops/Bhakmkr1"], ["https://tec.openplanner.team/stops/Lhrtilm1", "https://tec.openplanner.team/stops/Lhrtilm2"], ["https://tec.openplanner.team/stops/Bpielom2", "https://tec.openplanner.team/stops/Bsjgmil2"], ["https://tec.openplanner.team/stops/Bvircen1", "https://tec.openplanner.team/stops/Bvircen2"], ["https://tec.openplanner.team/stops/N115aaa", "https://tec.openplanner.team/stops/N115afa"], ["https://tec.openplanner.team/stops/X766acb", "https://tec.openplanner.team/stops/X766ajb"], ["https://tec.openplanner.team/stops/Cplelec2", "https://tec.openplanner.team/stops/Crsstem2"], ["https://tec.openplanner.team/stops/H1me116b", "https://tec.openplanner.team/stops/H1mm125c"], ["https://tec.openplanner.team/stops/X806aeb", "https://tec.openplanner.team/stops/X806agb"], ["https://tec.openplanner.team/stops/LRE154-1", "https://tec.openplanner.team/stops/LREhaut1"], ["https://tec.openplanner.team/stops/X715ala", "https://tec.openplanner.team/stops/X715alb"], ["https://tec.openplanner.team/stops/H1mh113a", "https://tec.openplanner.team/stops/H1mh113b"], ["https://tec.openplanner.team/stops/Lemboul2", "https://tec.openplanner.team/stops/Lvchaus1"], ["https://tec.openplanner.team/stops/Crodebr1", "https://tec.openplanner.team/stops/Crolach2"], ["https://tec.openplanner.team/stops/Cflchel5", "https://tec.openplanner.team/stops/Cflhano2"], ["https://tec.openplanner.team/stops/H4wr173b", "https://tec.openplanner.team/stops/H5qu141a"], ["https://tec.openplanner.team/stops/LORec--*", "https://tec.openplanner.team/stops/LOreg--2"], ["https://tec.openplanner.team/stops/H4ty300a", "https://tec.openplanner.team/stops/H4ty331b"], ["https://tec.openplanner.team/stops/H4bu109b", "https://tec.openplanner.team/stops/H5el114b"], ["https://tec.openplanner.team/stops/Llgddef1", "https://tec.openplanner.team/stops/Llgrass1"], ["https://tec.openplanner.team/stops/H4ho121a", "https://tec.openplanner.team/stops/H4pl111a"], ["https://tec.openplanner.team/stops/LaAdiep2", "https://tec.openplanner.team/stops/LaAneul1"], ["https://tec.openplanner.team/stops/Bbuzeta2", "https://tec.openplanner.team/stops/Creshau1"], ["https://tec.openplanner.team/stops/H1ev113b", "https://tec.openplanner.team/stops/H1ev116b"], ["https://tec.openplanner.team/stops/H1pw121b", "https://tec.openplanner.team/stops/H1wg131a"], ["https://tec.openplanner.team/stops/N538aea", "https://tec.openplanner.team/stops/N538aja"], ["https://tec.openplanner.team/stops/LMAcime2", "https://tec.openplanner.team/stops/LMApl--2"], ["https://tec.openplanner.team/stops/LSZroqu1", "https://tec.openplanner.team/stops/LSZsolw1"], ["https://tec.openplanner.team/stops/X607abb", "https://tec.openplanner.team/stops/X608aqa"], ["https://tec.openplanner.team/stops/LkEcoop2", "https://tec.openplanner.team/stops/LkEgss-2"], ["https://tec.openplanner.team/stops/N501fyc", "https://tec.openplanner.team/stops/N501hvb"], ["https://tec.openplanner.team/stops/Brebcgi1", "https://tec.openplanner.team/stops/Brebrha2"], ["https://tec.openplanner.team/stops/LTHcent1", "https://tec.openplanner.team/stops/LTHcent2"], ["https://tec.openplanner.team/stops/X902ara", "https://tec.openplanner.team/stops/X902asa"], ["https://tec.openplanner.team/stops/N536aaa", "https://tec.openplanner.team/stops/N536abb"], ["https://tec.openplanner.team/stops/Baegpon1", "https://tec.openplanner.team/stops/Baegpon4"], ["https://tec.openplanner.team/stops/X666aaa", "https://tec.openplanner.team/stops/X666aga"], ["https://tec.openplanner.team/stops/LeLbegl2", "https://tec.openplanner.team/stops/LeLherz2"], ["https://tec.openplanner.team/stops/Cchcaya1", "https://tec.openplanner.team/stops/Clodrio4"], ["https://tec.openplanner.team/stops/Bnilcim1", "https://tec.openplanner.team/stops/Bnilreg1"], ["https://tec.openplanner.team/stops/Lrosaun1", "https://tec.openplanner.team/stops/Lvcchau2"], ["https://tec.openplanner.team/stops/LGAnovi1", "https://tec.openplanner.team/stops/LGAnovi2"], ["https://tec.openplanner.team/stops/N501iaa", "https://tec.openplanner.team/stops/N501idb"], ["https://tec.openplanner.team/stops/H4be113a", "https://tec.openplanner.team/stops/H4be149a"], ["https://tec.openplanner.team/stops/N261adb", "https://tec.openplanner.team/stops/N261afb"], ["https://tec.openplanner.team/stops/LJA65h-1", "https://tec.openplanner.team/stops/LJA65h-2"], ["https://tec.openplanner.team/stops/Bbiemse1", "https://tec.openplanner.team/stops/Bgzddub1"], ["https://tec.openplanner.team/stops/LHNhall2", "https://tec.openplanner.team/stops/LHNhv--2"], ["https://tec.openplanner.team/stops/X985afa", "https://tec.openplanner.team/stops/X985afb"], ["https://tec.openplanner.team/stops/X991afb", "https://tec.openplanner.team/stops/X991aha"], ["https://tec.openplanner.team/stops/LSOchau1", "https://tec.openplanner.team/stops/LSOdow%C3%A91"], ["https://tec.openplanner.team/stops/X904aga", "https://tec.openplanner.team/stops/X904ahb"], ["https://tec.openplanner.team/stops/LRGbett3", "https://tec.openplanner.team/stops/LRGderr1"], ["https://tec.openplanner.team/stops/LOdmonu1", "https://tec.openplanner.team/stops/LOdmonu4"], ["https://tec.openplanner.team/stops/H5st163a", "https://tec.openplanner.team/stops/H5st163b"], ["https://tec.openplanner.team/stops/N301asb", "https://tec.openplanner.team/stops/X301ara"], ["https://tec.openplanner.team/stops/LAMhopi1", "https://tec.openplanner.team/stops/LAMusin2"], ["https://tec.openplanner.team/stops/Ldihote2", "https://tec.openplanner.team/stops/Ldipl--4"], ["https://tec.openplanner.team/stops/N501avb", "https://tec.openplanner.team/stops/N501mub"], ["https://tec.openplanner.team/stops/H1ms256a", "https://tec.openplanner.team/stops/H1ms923a"], ["https://tec.openplanner.team/stops/Cgzlera1", "https://tec.openplanner.team/stops/Cgzrust1"], ["https://tec.openplanner.team/stops/Cfmchap1", "https://tec.openplanner.team/stops/Cfmltas1"], ["https://tec.openplanner.team/stops/Cfaecwa1", "https://tec.openplanner.team/stops/Cfawain2"], ["https://tec.openplanner.team/stops/H4ga147a", "https://tec.openplanner.team/stops/H4ga162a"], ["https://tec.openplanner.team/stops/LREaube2", "https://tec.openplanner.team/stops/LREsaul2"], ["https://tec.openplanner.team/stops/N534aqb", "https://tec.openplanner.team/stops/N534axa"], ["https://tec.openplanner.team/stops/X358acb", "https://tec.openplanner.team/stops/X358acc"], ["https://tec.openplanner.team/stops/Lseathe1", "https://tec.openplanner.team/stops/Lseprog1"], ["https://tec.openplanner.team/stops/Cptberg1", "https://tec.openplanner.team/stops/Cptplac2"], ["https://tec.openplanner.team/stops/LBpecco2", "https://tec.openplanner.team/stops/LGEwalk2"], ["https://tec.openplanner.team/stops/N551agc", "https://tec.openplanner.team/stops/N551aha"], ["https://tec.openplanner.team/stops/LPAbour1", "https://tec.openplanner.team/stops/LPAbour2"], ["https://tec.openplanner.team/stops/X761aba", "https://tec.openplanner.team/stops/X761acb"], ["https://tec.openplanner.team/stops/Cctjoue4", "https://tec.openplanner.team/stops/Cctwaut2"], ["https://tec.openplanner.team/stops/Lsecoop1", "https://tec.openplanner.team/stops/Lseresi2"], ["https://tec.openplanner.team/stops/LMfbacu1", "https://tec.openplanner.team/stops/LMfbacu2"], ["https://tec.openplanner.team/stops/X512aja", "https://tec.openplanner.team/stops/X713afa"], ["https://tec.openplanner.team/stops/Bmangen2", "https://tec.openplanner.team/stops/H2mg139c"], ["https://tec.openplanner.team/stops/LJAgoff1", "https://tec.openplanner.team/stops/LJAgoff2"], ["https://tec.openplanner.team/stops/Cfmgrmo1", "https://tec.openplanner.team/stops/Cfojoli1"], ["https://tec.openplanner.team/stops/LSkwarf3", "https://tec.openplanner.team/stops/LSkwarf4"], ["https://tec.openplanner.team/stops/X663axa", "https://tec.openplanner.team/stops/X663axb"], ["https://tec.openplanner.team/stops/X750aaa", "https://tec.openplanner.team/stops/X750aab"], ["https://tec.openplanner.team/stops/H4eh101b", "https://tec.openplanner.team/stops/H4po129a"], ["https://tec.openplanner.team/stops/Lmojans1", "https://tec.openplanner.team/stops/Lmovand2"], ["https://tec.openplanner.team/stops/Lhrathe2", "https://tec.openplanner.team/stops/Lhrjaur1"], ["https://tec.openplanner.team/stops/LHUecte2", "https://tec.openplanner.team/stops/LHUneuv2"], ["https://tec.openplanner.team/stops/LSPdesc2", "https://tec.openplanner.team/stops/LSPptch1"], ["https://tec.openplanner.team/stops/Cfojoli2", "https://tec.openplanner.team/stops/Cforepo1"], ["https://tec.openplanner.team/stops/H1fv100b", "https://tec.openplanner.team/stops/H1fv101b"], ["https://tec.openplanner.team/stops/Lalmitt1", "https://tec.openplanner.team/stops/LXhjupr4"], ["https://tec.openplanner.team/stops/X605acb", "https://tec.openplanner.team/stops/X636aoa"], ["https://tec.openplanner.team/stops/LBSneuv1", "https://tec.openplanner.team/stops/LHScite1"], ["https://tec.openplanner.team/stops/H1vs145a", "https://tec.openplanner.team/stops/H1vs145b"], ["https://tec.openplanner.team/stops/Bnivbau1", "https://tec.openplanner.team/stops/Bnivite2"], ["https://tec.openplanner.team/stops/LkEl3251", "https://tec.openplanner.team/stops/LkEl3252"], ["https://tec.openplanner.team/stops/LCHeg--1", "https://tec.openplanner.team/stops/LCHeg--2"], ["https://tec.openplanner.team/stops/Cmlcent2", "https://tec.openplanner.team/stops/Cmlpbay2"], ["https://tec.openplanner.team/stops/LdUespe2", "https://tec.openplanner.team/stops/LdUespe4"], ["https://tec.openplanner.team/stops/Bernpla1", "https://tec.openplanner.team/stops/Bernrar1"], ["https://tec.openplanner.team/stops/X658ada", "https://tec.openplanner.team/stops/X658aeb"], ["https://tec.openplanner.team/stops/X770aab", "https://tec.openplanner.team/stops/X770aba"], ["https://tec.openplanner.team/stops/H4hq133d", "https://tec.openplanner.team/stops/H4hq134a"], ["https://tec.openplanner.team/stops/H1at108c", "https://tec.openplanner.team/stops/H1at109b"], ["https://tec.openplanner.team/stops/H4mo149a", "https://tec.openplanner.team/stops/H4mo171a"], ["https://tec.openplanner.team/stops/LCF1spa1", "https://tec.openplanner.team/stops/LCF1spa2"], ["https://tec.openplanner.team/stops/X948ata", "https://tec.openplanner.team/stops/X948awa"], ["https://tec.openplanner.team/stops/Bgnvpap1", "https://tec.openplanner.team/stops/Bgnvpap2"], ["https://tec.openplanner.team/stops/Caccarr2", "https://tec.openplanner.team/stops/Cacscav1"], ["https://tec.openplanner.team/stops/X658aab", "https://tec.openplanner.team/stops/X659ata"], ["https://tec.openplanner.team/stops/LLxalle2", "https://tec.openplanner.team/stops/LLxeclu1"], ["https://tec.openplanner.team/stops/Cgdfras2", "https://tec.openplanner.team/stops/Csyplac2"], ["https://tec.openplanner.team/stops/Lstbarb6", "https://tec.openplanner.team/stops/Lstbold2"], ["https://tec.openplanner.team/stops/X736aia", "https://tec.openplanner.team/stops/X736aja"], ["https://tec.openplanner.team/stops/Ccuwil1", "https://tec.openplanner.team/stops/Ccuwil2"], ["https://tec.openplanner.team/stops/X620adb", "https://tec.openplanner.team/stops/X622afb"], ["https://tec.openplanner.team/stops/H2gy103b", "https://tec.openplanner.team/stops/H2gy109a"], ["https://tec.openplanner.team/stops/Cpljonc1", "https://tec.openplanner.team/stops/Cplrond1"], ["https://tec.openplanner.team/stops/LNCdoma4", "https://tec.openplanner.team/stops/LRRcarr1"], ["https://tec.openplanner.team/stops/Bclgpch2", "https://tec.openplanner.team/stops/Bwavdmo2"], ["https://tec.openplanner.team/stops/Ccupbro2", "https://tec.openplanner.team/stops/Ccuwil2"], ["https://tec.openplanner.team/stops/LoDcorn1", "https://tec.openplanner.team/stops/LoDcorn2"], ["https://tec.openplanner.team/stops/N125aca", "https://tec.openplanner.team/stops/N154aca"], ["https://tec.openplanner.team/stops/LHNtonn1", "https://tec.openplanner.team/stops/LHNtonn2"], ["https://tec.openplanner.team/stops/Cmlbeau1", "https://tec.openplanner.team/stops/Cmmbsit2"], ["https://tec.openplanner.team/stops/Blascim1", "https://tec.openplanner.team/stops/Bohnr732"], ["https://tec.openplanner.team/stops/Cgyrdid1", "https://tec.openplanner.team/stops/Clogfay2"], ["https://tec.openplanner.team/stops/Clocroi2", "https://tec.openplanner.team/stops/Clodupr1"], ["https://tec.openplanner.team/stops/N501gva", "https://tec.openplanner.team/stops/N501iza"], ["https://tec.openplanner.team/stops/Llgbron2", "https://tec.openplanner.team/stops/LlgguilF"], ["https://tec.openplanner.team/stops/X670aoa", "https://tec.openplanner.team/stops/X670apa"], ["https://tec.openplanner.team/stops/Bgoegma1", "https://tec.openplanner.team/stops/Bgoestu1"], ["https://tec.openplanner.team/stops/H4ty280a", "https://tec.openplanner.team/stops/H4ty354a"], ["https://tec.openplanner.team/stops/H4es111a", "https://tec.openplanner.team/stops/H4es117b"], ["https://tec.openplanner.team/stops/Llgmair1", "https://tec.openplanner.team/stops/Llgmair2"], ["https://tec.openplanner.team/stops/X750ana", "https://tec.openplanner.team/stops/X750anb"], ["https://tec.openplanner.team/stops/Lscbarg1", "https://tec.openplanner.team/stops/Ltiferb2"], ["https://tec.openplanner.team/stops/N501etb", "https://tec.openplanner.team/stops/N501kba"], ["https://tec.openplanner.team/stops/H4ln129a", "https://tec.openplanner.team/stops/H4ln130b"], ["https://tec.openplanner.team/stops/X741aha", "https://tec.openplanner.team/stops/X741apb"], ["https://tec.openplanner.team/stops/N312aba", "https://tec.openplanner.team/stops/N312abb"], ["https://tec.openplanner.team/stops/LFOcomb4", "https://tec.openplanner.team/stops/LVGeg--1"], ["https://tec.openplanner.team/stops/H4fr389a", "https://tec.openplanner.team/stops/H4fr390a"], ["https://tec.openplanner.team/stops/Btstw751", "https://tec.openplanner.team/stops/Btstw752"], ["https://tec.openplanner.team/stops/LeYfeld1", "https://tec.openplanner.team/stops/LeYfeld2"], ["https://tec.openplanner.team/stops/LSdsar51", "https://tec.openplanner.team/stops/LSdsar52"], ["https://tec.openplanner.team/stops/Bbaucba1", "https://tec.openplanner.team/stops/Bbaucba2"], ["https://tec.openplanner.team/stops/X307aaa", "https://tec.openplanner.team/stops/X307aba"], ["https://tec.openplanner.team/stops/N106aga", "https://tec.openplanner.team/stops/N106aib"], ["https://tec.openplanner.team/stops/Brsggol1", "https://tec.openplanner.team/stops/Brsgpbo1"], ["https://tec.openplanner.team/stops/N501jab", "https://tec.openplanner.team/stops/N501jcb"], ["https://tec.openplanner.team/stops/Lmlcher1", "https://tec.openplanner.team/stops/Lmlmaqu2"], ["https://tec.openplanner.team/stops/Bhandub1", "https://tec.openplanner.team/stops/Bhandub2"], ["https://tec.openplanner.team/stops/X748afa", "https://tec.openplanner.team/stops/X769ahb"], ["https://tec.openplanner.team/stops/N102aab", "https://tec.openplanner.team/stops/N102aca"], ["https://tec.openplanner.team/stops/H2hg152a", "https://tec.openplanner.team/stops/H2hg156b"], ["https://tec.openplanner.team/stops/Cbzfrom1", "https://tec.openplanner.team/stops/Cbzfrom2"], ["https://tec.openplanner.team/stops/Cmychap3", "https://tec.openplanner.team/stops/Cmypast2"], ["https://tec.openplanner.team/stops/NL77ajb", "https://tec.openplanner.team/stops/NL77alb"], ["https://tec.openplanner.team/stops/Ctrchat2", "https://tec.openplanner.team/stops/Ctrdelb2"], ["https://tec.openplanner.team/stops/H1hr125a", "https://tec.openplanner.team/stops/H2pr117a"], ["https://tec.openplanner.team/stops/H2bh103b", "https://tec.openplanner.team/stops/H2bh118a"], ["https://tec.openplanner.team/stops/H1ms284a", "https://tec.openplanner.team/stops/H1ms902a"], ["https://tec.openplanner.team/stops/Lghsimo3", "https://tec.openplanner.team/stops/Lghsimo4"], ["https://tec.openplanner.team/stops/LNIhaut1", "https://tec.openplanner.team/stops/LNIhaut2"], ["https://tec.openplanner.team/stops/Bfelcen1", "https://tec.openplanner.team/stops/Bfelpla1"], ["https://tec.openplanner.team/stops/LVLbovy1", "https://tec.openplanner.team/stops/LVLeg--3"], ["https://tec.openplanner.team/stops/Bottcco1", "https://tec.openplanner.team/stops/Bottegl4"], ["https://tec.openplanner.team/stops/H1gi121a", "https://tec.openplanner.team/stops/H1gi121b"], ["https://tec.openplanner.team/stops/LJEloum2", "https://tec.openplanner.team/stops/LJEtige2"], ["https://tec.openplanner.team/stops/Lhr2ave1", "https://tec.openplanner.team/stops/Lhrhurb1"], ["https://tec.openplanner.team/stops/N557aea", "https://tec.openplanner.team/stops/N560acb"], ["https://tec.openplanner.team/stops/H4co151a", "https://tec.openplanner.team/stops/H4pl116a"], ["https://tec.openplanner.team/stops/LMAgb--1", "https://tec.openplanner.team/stops/LMAptne1"], ["https://tec.openplanner.team/stops/X774ada", "https://tec.openplanner.team/stops/X774add"], ["https://tec.openplanner.team/stops/N562bsa", "https://tec.openplanner.team/stops/N562bsb"], ["https://tec.openplanner.team/stops/H2pe162d", "https://tec.openplanner.team/stops/H2pe163b"], ["https://tec.openplanner.team/stops/N538ayb", "https://tec.openplanner.team/stops/N538baa"], ["https://tec.openplanner.team/stops/LETfort3", "https://tec.openplanner.team/stops/LETmagn1"], ["https://tec.openplanner.team/stops/LBNruns2", "https://tec.openplanner.team/stops/LGObeth2"], ["https://tec.openplanner.team/stops/N539bgb", "https://tec.openplanner.team/stops/N540ajb"], ["https://tec.openplanner.team/stops/LFCkerk1", "https://tec.openplanner.team/stops/LFClage1"], ["https://tec.openplanner.team/stops/Cgygazo3", "https://tec.openplanner.team/stops/Cmtdepo2"], ["https://tec.openplanner.team/stops/Chpcarp1", "https://tec.openplanner.team/stops/Chprobi2"], ["https://tec.openplanner.team/stops/H5wo124a", "https://tec.openplanner.team/stops/H5wo134a"], ["https://tec.openplanner.team/stops/N547aja", "https://tec.openplanner.team/stops/N547ajb"], ["https://tec.openplanner.team/stops/Lvo60--1", "https://tec.openplanner.team/stops/Lvo60--2"], ["https://tec.openplanner.team/stops/X822aaa", "https://tec.openplanner.team/stops/X822aab"], ["https://tec.openplanner.team/stops/LnUneun2", "https://tec.openplanner.team/stops/LnUneun3"], ["https://tec.openplanner.team/stops/N120aoc", "https://tec.openplanner.team/stops/N340aba"], ["https://tec.openplanner.team/stops/H4wu375b", "https://tec.openplanner.team/stops/H4wu420b"], ["https://tec.openplanner.team/stops/H1je217b", "https://tec.openplanner.team/stops/H1je221a"], ["https://tec.openplanner.team/stops/Bbsigaz2", "https://tec.openplanner.team/stops/Bbsivil1"], ["https://tec.openplanner.team/stops/N351ajc", "https://tec.openplanner.team/stops/N351aub"], ["https://tec.openplanner.team/stops/H4br110b", "https://tec.openplanner.team/stops/H4br111b"], ["https://tec.openplanner.team/stops/H4ka191a", "https://tec.openplanner.team/stops/H4ka400a"], ["https://tec.openplanner.team/stops/X314aaa", "https://tec.openplanner.team/stops/X813aab"], ["https://tec.openplanner.team/stops/X608asa", "https://tec.openplanner.team/stops/X608asb"], ["https://tec.openplanner.team/stops/X999aga", "https://tec.openplanner.team/stops/X999agb"], ["https://tec.openplanner.team/stops/LTResse2", "https://tec.openplanner.team/stops/LTRfica1"], ["https://tec.openplanner.team/stops/NC11aia", "https://tec.openplanner.team/stops/NC11aib"], ["https://tec.openplanner.team/stops/Ccumasu2", "https://tec.openplanner.team/stops/Ccutail2"], ["https://tec.openplanner.team/stops/LCxhame1", "https://tec.openplanner.team/stops/LCxhame2"], ["https://tec.openplanner.team/stops/Lgdhura2", "https://tec.openplanner.team/stops/LWetrib2"], ["https://tec.openplanner.team/stops/N151aja", "https://tec.openplanner.team/stops/N151aje"], ["https://tec.openplanner.team/stops/N874alb", "https://tec.openplanner.team/stops/X874apb"], ["https://tec.openplanner.team/stops/Clpnapo2", "https://tec.openplanner.team/stops/Clpsola1"], ["https://tec.openplanner.team/stops/Bitrcen2", "https://tec.openplanner.team/stops/Bitrecu1"], ["https://tec.openplanner.team/stops/N501gia", "https://tec.openplanner.team/stops/N501gib"], ["https://tec.openplanner.team/stops/Bitrpri1", "https://tec.openplanner.team/stops/Bosqpqu1"], ["https://tec.openplanner.team/stops/Cctathe1", "https://tec.openplanner.team/stops/Cctathe2"], ["https://tec.openplanner.team/stops/Lvehv--4", "https://tec.openplanner.team/stops/Lvepala9"], ["https://tec.openplanner.team/stops/X742aba", "https://tec.openplanner.team/stops/X742aca"], ["https://tec.openplanner.team/stops/LHMa2321", "https://tec.openplanner.team/stops/LHMaube2"], ["https://tec.openplanner.team/stops/N232bab", "https://tec.openplanner.team/stops/N232brb"], ["https://tec.openplanner.team/stops/H1po135d", "https://tec.openplanner.team/stops/H1po137b"], ["https://tec.openplanner.team/stops/H3lr108a", "https://tec.openplanner.team/stops/H3lr108b"], ["https://tec.openplanner.team/stops/Bgemga09", "https://tec.openplanner.team/stops/Bgemga10"], ["https://tec.openplanner.team/stops/X354aaa", "https://tec.openplanner.team/stops/X858agb"], ["https://tec.openplanner.team/stops/X923ada", "https://tec.openplanner.team/stops/X923aqb"], ["https://tec.openplanner.team/stops/N874aca", "https://tec.openplanner.team/stops/X887aaa"], ["https://tec.openplanner.team/stops/X879aha", "https://tec.openplanner.team/stops/X879ahb"], ["https://tec.openplanner.team/stops/X743aaa", "https://tec.openplanner.team/stops/X743aba"], ["https://tec.openplanner.team/stops/Bgnvcha1", "https://tec.openplanner.team/stops/Blhumpo2"], ["https://tec.openplanner.team/stops/Broncli2", "https://tec.openplanner.team/stops/Bronfou2"], ["https://tec.openplanner.team/stops/LERdeho2", "https://tec.openplanner.team/stops/LHseg--1"], ["https://tec.openplanner.team/stops/LAmab751", "https://tec.openplanner.team/stops/LAmab752"], ["https://tec.openplanner.team/stops/LPLcent1", "https://tec.openplanner.team/stops/LPLcent2"], ["https://tec.openplanner.team/stops/LREheyd2", "https://tec.openplanner.team/stops/LREsp301"], ["https://tec.openplanner.team/stops/H4fo115a", "https://tec.openplanner.team/stops/H4ga152a"], ["https://tec.openplanner.team/stops/LVIhall1", "https://tec.openplanner.team/stops/LVIhall2"], ["https://tec.openplanner.team/stops/N149ahb", "https://tec.openplanner.team/stops/N149alb"], ["https://tec.openplanner.team/stops/H4ft135d", "https://tec.openplanner.team/stops/H4ft137b"], ["https://tec.openplanner.team/stops/LSpcarr2", "https://tec.openplanner.team/stops/LSphote1"], ["https://tec.openplanner.team/stops/Bhenard3", "https://tec.openplanner.team/stops/Bvirrbo2"], ["https://tec.openplanner.team/stops/N321aba", "https://tec.openplanner.team/stops/N355ada"], ["https://tec.openplanner.team/stops/Bbeacha2", "https://tec.openplanner.team/stops/Bbeamon1"], ["https://tec.openplanner.team/stops/Cnafont2", "https://tec.openplanner.team/stops/Cnawari2"], ["https://tec.openplanner.team/stops/Bitrcan2", "https://tec.openplanner.team/stops/Bitrmde1"], ["https://tec.openplanner.team/stops/Becepro1", "https://tec.openplanner.team/stops/H2mi124a"], ["https://tec.openplanner.team/stops/X943aba", "https://tec.openplanner.team/stops/X943abb"], ["https://tec.openplanner.team/stops/LRchaie1", "https://tec.openplanner.team/stops/LRchaie2"], ["https://tec.openplanner.team/stops/Bblmwma2", "https://tec.openplanner.team/stops/Bchamco2"], ["https://tec.openplanner.team/stops/LVbcoul2", "https://tec.openplanner.team/stops/LVbeg--2"], ["https://tec.openplanner.team/stops/Lseberg4", "https://tec.openplanner.team/stops/Lsemany1"], ["https://tec.openplanner.team/stops/Cfopetr2", "https://tec.openplanner.team/stops/Cforpet2"], ["https://tec.openplanner.team/stops/X614ajb", "https://tec.openplanner.team/stops/X623aab"], ["https://tec.openplanner.team/stops/Bhancom2", "https://tec.openplanner.team/stops/LHNgend2"], ["https://tec.openplanner.team/stops/LSPguer1", "https://tec.openplanner.team/stops/LSPvigi1"], ["https://tec.openplanner.team/stops/X886ada", "https://tec.openplanner.team/stops/X886adb"], ["https://tec.openplanner.team/stops/H4mo146a", "https://tec.openplanner.team/stops/H4mo148a"], ["https://tec.openplanner.team/stops/Lhrathe*", "https://tec.openplanner.team/stops/Lhrhosp2"], ["https://tec.openplanner.team/stops/Cjojonc1", "https://tec.openplanner.team/stops/NC24ajb"], ["https://tec.openplanner.team/stops/LFdchau1", "https://tec.openplanner.team/stops/LLMfond1"], ["https://tec.openplanner.team/stops/LHFappe2", "https://tec.openplanner.team/stops/LVEmohi2"], ["https://tec.openplanner.team/stops/X837agb", "https://tec.openplanner.team/stops/X837aib"], ["https://tec.openplanner.team/stops/LBJlieg1", "https://tec.openplanner.team/stops/LMAcite2"], ["https://tec.openplanner.team/stops/Lenplac1", "https://tec.openplanner.team/stops/Lpecroi1"], ["https://tec.openplanner.team/stops/LHTmala4", "https://tec.openplanner.team/stops/LHTptha4"], ["https://tec.openplanner.team/stops/H1bl105a", "https://tec.openplanner.team/stops/H1eq115a"], ["https://tec.openplanner.team/stops/H2ha129e", "https://tec.openplanner.team/stops/H2hg156a"], ["https://tec.openplanner.team/stops/X615ajb", "https://tec.openplanner.team/stops/X615akb"], ["https://tec.openplanner.team/stops/H4ta131a", "https://tec.openplanner.team/stops/H4ta132a"], ["https://tec.openplanner.team/stops/H2lh126a", "https://tec.openplanner.team/stops/H2lh129b"], ["https://tec.openplanner.team/stops/N551aga", "https://tec.openplanner.team/stops/N551aha"], ["https://tec.openplanner.team/stops/X907agb", "https://tec.openplanner.team/stops/X908apa"], ["https://tec.openplanner.team/stops/Bbiepon2", "https://tec.openplanner.team/stops/Bbiepre2"], ["https://tec.openplanner.team/stops/Bblmcel2", "https://tec.openplanner.team/stops/Bhvltol1"], ["https://tec.openplanner.team/stops/X637amb", "https://tec.openplanner.team/stops/X637aoa"], ["https://tec.openplanner.team/stops/Lglvand1", "https://tec.openplanner.team/stops/Llgchau1"], ["https://tec.openplanner.team/stops/H1ms907a", "https://tec.openplanner.team/stops/H1ms911a"], ["https://tec.openplanner.team/stops/Cnaplha1", "https://tec.openplanner.team/stops/Cnaplha2"], ["https://tec.openplanner.team/stops/LTibarb1", "https://tec.openplanner.team/stops/LTiflor1"], ["https://tec.openplanner.team/stops/X622aea", "https://tec.openplanner.team/stops/X622afa"], ["https://tec.openplanner.team/stops/Cmllecl4", "https://tec.openplanner.team/stops/Cmlm2411"], ["https://tec.openplanner.team/stops/H5rx100a", "https://tec.openplanner.team/stops/H5rx113a"], ["https://tec.openplanner.team/stops/H4hg157b", "https://tec.openplanner.team/stops/H4hg160a"], ["https://tec.openplanner.team/stops/LKmcabi1", "https://tec.openplanner.team/stops/LKmeg--1"], ["https://tec.openplanner.team/stops/LGLgare*", "https://tec.openplanner.team/stops/LSLhall*"], ["https://tec.openplanner.team/stops/H4gz114b", "https://tec.openplanner.team/stops/H4th142b"], ["https://tec.openplanner.team/stops/X609aab", "https://tec.openplanner.team/stops/X609aba"], ["https://tec.openplanner.team/stops/LHUgdpl2", "https://tec.openplanner.team/stops/NL80aha"], ["https://tec.openplanner.team/stops/LTHbelv1", "https://tec.openplanner.team/stops/LTHwaux1"], ["https://tec.openplanner.team/stops/N351ana", "https://tec.openplanner.team/stops/N351avb"], ["https://tec.openplanner.team/stops/H4og210a", "https://tec.openplanner.team/stops/H4og216b"], ["https://tec.openplanner.team/stops/N235abb", "https://tec.openplanner.team/stops/N236aib"], ["https://tec.openplanner.team/stops/Bnilpje1", "https://tec.openplanner.team/stops/Bnilwal1"], ["https://tec.openplanner.team/stops/X222ala", "https://tec.openplanner.team/stops/X222alb"], ["https://tec.openplanner.team/stops/H1bu140b", "https://tec.openplanner.team/stops/H1bu141a"], ["https://tec.openplanner.team/stops/Bllnald1", "https://tec.openplanner.team/stops/Bllncbr2"], ["https://tec.openplanner.team/stops/X950aaa", "https://tec.openplanner.team/stops/X950aab"], ["https://tec.openplanner.team/stops/LAYfoot1", "https://tec.openplanner.team/stops/LAYlieg1"], ["https://tec.openplanner.team/stops/H1gy115a", "https://tec.openplanner.team/stops/H1gy116b"], ["https://tec.openplanner.team/stops/X659aha", "https://tec.openplanner.team/stops/X659aja"], ["https://tec.openplanner.team/stops/LWM759-2", "https://tec.openplanner.team/stops/LWMchpl2"], ["https://tec.openplanner.team/stops/H1fr124b", "https://tec.openplanner.team/stops/H1fr127a"], ["https://tec.openplanner.team/stops/Cchvhau2", "https://tec.openplanner.team/stops/CMba1"], ["https://tec.openplanner.team/stops/Cvpcdec2", "https://tec.openplanner.team/stops/Cvpplan2"], ["https://tec.openplanner.team/stops/X652aca", "https://tec.openplanner.team/stops/X652aea"], ["https://tec.openplanner.team/stops/H3bi101a", "https://tec.openplanner.team/stops/H3bi119a"], ["https://tec.openplanner.team/stops/H1gr122b", "https://tec.openplanner.team/stops/H1mk110a"], ["https://tec.openplanner.team/stops/N501hcb", "https://tec.openplanner.team/stops/N501mib"], ["https://tec.openplanner.team/stops/LWAathe2", "https://tec.openplanner.team/stops/LWApt--2"], ["https://tec.openplanner.team/stops/LFMstat1", "https://tec.openplanner.team/stops/LFPknap1"], ["https://tec.openplanner.team/stops/Ccumasu1", "https://tec.openplanner.team/stops/Ccupomp1"], ["https://tec.openplanner.team/stops/Cmlener1", "https://tec.openplanner.team/stops/Cmlhaie1"], ["https://tec.openplanner.team/stops/Bpiejus2", "https://tec.openplanner.team/stops/Bsjgmil2"], ["https://tec.openplanner.team/stops/Lrclant3", "https://tec.openplanner.team/stops/Lrclohe2"], ["https://tec.openplanner.team/stops/N501anb", "https://tec.openplanner.team/stops/N501bfa"], ["https://tec.openplanner.team/stops/Cgysarr1", "https://tec.openplanner.team/stops/Cravold2"], ["https://tec.openplanner.team/stops/H1et101b", "https://tec.openplanner.team/stops/H1gh168a"], ["https://tec.openplanner.team/stops/N309abb", "https://tec.openplanner.team/stops/N309acb"], ["https://tec.openplanner.team/stops/Lbopote2", "https://tec.openplanner.team/stops/Lbotige1"], ["https://tec.openplanner.team/stops/X780aia", "https://tec.openplanner.team/stops/X780aib"], ["https://tec.openplanner.team/stops/Cjuchli3", "https://tec.openplanner.team/stops/Cjuchli4"], ["https://tec.openplanner.team/stops/X649aaa", "https://tec.openplanner.team/stops/X671aab"], ["https://tec.openplanner.team/stops/N558ana", "https://tec.openplanner.team/stops/N558anb"], ["https://tec.openplanner.team/stops/N513azb", "https://tec.openplanner.team/stops/N513baa"], ["https://tec.openplanner.team/stops/X650aab", "https://tec.openplanner.team/stops/X650ama"], ["https://tec.openplanner.team/stops/X651aeb", "https://tec.openplanner.team/stops/X658aaa"], ["https://tec.openplanner.team/stops/X661alb", "https://tec.openplanner.team/stops/X661awb"], ["https://tec.openplanner.team/stops/H1as101b", "https://tec.openplanner.team/stops/H1as103b"], ["https://tec.openplanner.team/stops/Cmonvci1", "https://tec.openplanner.team/stops/Cmopn1"], ["https://tec.openplanner.team/stops/LSGec--1", "https://tec.openplanner.team/stops/LSGfoua2"], ["https://tec.openplanner.team/stops/Brebmtg1", "https://tec.openplanner.team/stops/Brebraf1"], ["https://tec.openplanner.team/stops/LSOfech1", "https://tec.openplanner.team/stops/LSOgard2"], ["https://tec.openplanner.team/stops/Bllnlen2", "https://tec.openplanner.team/stops/Bllnrod3"], ["https://tec.openplanner.team/stops/H1gy111b", "https://tec.openplanner.team/stops/H1le119b"], ["https://tec.openplanner.team/stops/N501dhb", "https://tec.openplanner.team/stops/N501jtb"], ["https://tec.openplanner.team/stops/X780abb", "https://tec.openplanner.team/stops/X790aab"], ["https://tec.openplanner.team/stops/H4ka193a", "https://tec.openplanner.team/stops/H4ty359b"], ["https://tec.openplanner.team/stops/H1cu123a", "https://tec.openplanner.team/stops/H1cu125c"], ["https://tec.openplanner.team/stops/Clddeve1", "https://tec.openplanner.team/stops/Cmyland5"], ["https://tec.openplanner.team/stops/Bwolkra1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/LBBcamp2", "https://tec.openplanner.team/stops/NL82aga"], ["https://tec.openplanner.team/stops/Cmeloti1", "https://tec.openplanner.team/stops/Cmerdby2"], ["https://tec.openplanner.team/stops/H1mb127a", "https://tec.openplanner.team/stops/H1mb136b"], ["https://tec.openplanner.team/stops/Ccu6bra3", "https://tec.openplanner.team/stops/Cculgeo2"], ["https://tec.openplanner.team/stops/LJueg--2", "https://tec.openplanner.team/stops/LJuhaie2"], ["https://tec.openplanner.team/stops/LwAkape1", "https://tec.openplanner.team/stops/LwAlont2"], ["https://tec.openplanner.team/stops/LStroch2", "https://tec.openplanner.team/stops/LWNfani2"], ["https://tec.openplanner.team/stops/X725afg", "https://tec.openplanner.team/stops/X725bgb"], ["https://tec.openplanner.team/stops/Bnivcom2", "https://tec.openplanner.team/stops/Bthivil1"], ["https://tec.openplanner.team/stops/N141ala", "https://tec.openplanner.team/stops/N146afa"], ["https://tec.openplanner.team/stops/H1do126b", "https://tec.openplanner.team/stops/H1do130a"], ["https://tec.openplanner.team/stops/H1je218a", "https://tec.openplanner.team/stops/H1ms247a"], ["https://tec.openplanner.team/stops/X625aba", "https://tec.openplanner.team/stops/X625aca"], ["https://tec.openplanner.team/stops/H1ba110a", "https://tec.openplanner.team/stops/H1gh371a"], ["https://tec.openplanner.team/stops/H2ca112a", "https://tec.openplanner.team/stops/H2mo133a"], ["https://tec.openplanner.team/stops/H2ha132a", "https://tec.openplanner.team/stops/H2ha134a"], ["https://tec.openplanner.team/stops/LLrelec1", "https://tec.openplanner.team/stops/LLrlour2"], ["https://tec.openplanner.team/stops/Lgrwill1", "https://tec.openplanner.team/stops/Lgrwill2"], ["https://tec.openplanner.team/stops/LSOdow%C3%A91", "https://tec.openplanner.team/stops/LSOgott1"], ["https://tec.openplanner.team/stops/X910ada", "https://tec.openplanner.team/stops/X910afa"], ["https://tec.openplanner.team/stops/N505abb", "https://tec.openplanner.team/stops/N579abb"], ["https://tec.openplanner.team/stops/X346alb", "https://tec.openplanner.team/stops/X369aab"], ["https://tec.openplanner.team/stops/H4hx117b", "https://tec.openplanner.team/stops/H4hx119a"], ["https://tec.openplanner.team/stops/N254aab", "https://tec.openplanner.team/stops/N570agb"], ["https://tec.openplanner.team/stops/Cgzblob1", "https://tec.openplanner.team/stops/Cthha502"], ["https://tec.openplanner.team/stops/Brsrabe2", "https://tec.openplanner.team/stops/Brsrpch1"], ["https://tec.openplanner.team/stops/Bneeegl1", "https://tec.openplanner.team/stops/Bneeegl2"], ["https://tec.openplanner.team/stops/LFEland1", "https://tec.openplanner.team/stops/LFEland2"], ["https://tec.openplanner.team/stops/X948ana", "https://tec.openplanner.team/stops/X948aoa"], ["https://tec.openplanner.team/stops/Cctbifu1", "https://tec.openplanner.team/stops/Cctrjus1"], ["https://tec.openplanner.team/stops/Clolidl2", "https://tec.openplanner.team/stops/Clooues2"], ["https://tec.openplanner.team/stops/Ccoconf2", "https://tec.openplanner.team/stops/Cpcchau"], ["https://tec.openplanner.team/stops/N547ada", "https://tec.openplanner.team/stops/N565akb"], ["https://tec.openplanner.team/stops/H4fa126d", "https://tec.openplanner.team/stops/H4fa127b"], ["https://tec.openplanner.team/stops/Bottpin1", "https://tec.openplanner.team/stops/Bottpin2"], ["https://tec.openplanner.team/stops/LMIeg--1", "https://tec.openplanner.team/stops/LMIlac-1"], ["https://tec.openplanner.team/stops/Cbwegl1", "https://tec.openplanner.team/stops/Cmgpn1"], ["https://tec.openplanner.team/stops/N138aab", "https://tec.openplanner.team/stops/N423aga"], ["https://tec.openplanner.team/stops/LVncarr2", "https://tec.openplanner.team/stops/LVnourt1"], ["https://tec.openplanner.team/stops/N131aga", "https://tec.openplanner.team/stops/N131ahb"], ["https://tec.openplanner.team/stops/LMHmeha1", "https://tec.openplanner.team/stops/LMHoha-1"], ["https://tec.openplanner.team/stops/Ctabaty2", "https://tec.openplanner.team/stops/Ctachst1"], ["https://tec.openplanner.team/stops/H4ka186a", "https://tec.openplanner.team/stops/H4ka189b"], ["https://tec.openplanner.team/stops/LOumaro2", "https://tec.openplanner.team/stops/LTaabba1"], ["https://tec.openplanner.team/stops/X659aba", "https://tec.openplanner.team/stops/X659aca"], ["https://tec.openplanner.team/stops/Lsefori1", "https://tec.openplanner.team/stops/Lseprog1"], ["https://tec.openplanner.team/stops/Cmapeet1", "https://tec.openplanner.team/stops/Cmaroya1"], ["https://tec.openplanner.team/stops/LaUkirc*", "https://tec.openplanner.team/stops/LwPdorf1"], ["https://tec.openplanner.team/stops/Bosqcar1", "https://tec.openplanner.team/stops/Btubbot2"], ["https://tec.openplanner.team/stops/Bnilpco1", "https://tec.openplanner.team/stops/Bnilpje1"], ["https://tec.openplanner.team/stops/N894aba", "https://tec.openplanner.team/stops/X887aaa"], ["https://tec.openplanner.team/stops/H4lz121a", "https://tec.openplanner.team/stops/H4lz126a"], ["https://tec.openplanner.team/stops/N501fhb", "https://tec.openplanner.team/stops/N501lxa"], ["https://tec.openplanner.team/stops/LDpulve2", "https://tec.openplanner.team/stops/LFMrijk2"], ["https://tec.openplanner.team/stops/X892aha", "https://tec.openplanner.team/stops/X892aja"], ["https://tec.openplanner.team/stops/LoEauto1", "https://tec.openplanner.team/stops/LrEfeck1"], ["https://tec.openplanner.team/stops/X806abb", "https://tec.openplanner.team/stops/X806acb"], ["https://tec.openplanner.team/stops/N232aja", "https://tec.openplanner.team/stops/N232cda"], ["https://tec.openplanner.team/stops/LFPgeme1", "https://tec.openplanner.team/stops/LFPkast2"], ["https://tec.openplanner.team/stops/LENparc1", "https://tec.openplanner.team/stops/LGlbour2"], ["https://tec.openplanner.team/stops/X822aoa", "https://tec.openplanner.team/stops/X822aob"], ["https://tec.openplanner.team/stops/Lbhpeti2", "https://tec.openplanner.team/stops/LMFmerl1"], ["https://tec.openplanner.team/stops/Bnivmon2", "https://tec.openplanner.team/stops/Bptrvil2"], ["https://tec.openplanner.team/stops/H2hp261a", "https://tec.openplanner.team/stops/H2hp261b"], ["https://tec.openplanner.team/stops/N562alc", "https://tec.openplanner.team/stops/N562bfa"], ["https://tec.openplanner.team/stops/H4fg116b", "https://tec.openplanner.team/stops/H4wn139a"], ["https://tec.openplanner.team/stops/LWOcomm1", "https://tec.openplanner.team/stops/LWOmart1"], ["https://tec.openplanner.team/stops/Btstbbu1", "https://tec.openplanner.team/stops/Btstbbu2"], ["https://tec.openplanner.team/stops/Cfcstan1", "https://tec.openplanner.team/stops/Cfcstan2"], ["https://tec.openplanner.team/stops/X641ala", "https://tec.openplanner.team/stops/X641ama"], ["https://tec.openplanner.team/stops/N528ala", "https://tec.openplanner.team/stops/N551aab"], ["https://tec.openplanner.team/stops/LSNgerm2", "https://tec.openplanner.team/stops/LSNmoul2"], ["https://tec.openplanner.team/stops/Cmabegh1", "https://tec.openplanner.team/stops/Cmastch4"], ["https://tec.openplanner.team/stops/LRmstat1", "https://tec.openplanner.team/stops/LRmstat2"], ["https://tec.openplanner.team/stops/N214adb", "https://tec.openplanner.team/stops/N261aga"], ["https://tec.openplanner.team/stops/H5fl100a", "https://tec.openplanner.team/stops/H5wo128b"], ["https://tec.openplanner.team/stops/Crofrio1", "https://tec.openplanner.team/stops/Croplom4"], ["https://tec.openplanner.team/stops/N203aab", "https://tec.openplanner.team/stops/N560aba"], ["https://tec.openplanner.team/stops/Canboha1", "https://tec.openplanner.team/stops/Cptsncb1"], ["https://tec.openplanner.team/stops/N153aca", "https://tec.openplanner.team/stops/N153afa"], ["https://tec.openplanner.team/stops/X634agb", "https://tec.openplanner.team/stops/X634aha"], ["https://tec.openplanner.team/stops/Bitrsar2", "https://tec.openplanner.team/stops/Bvirgar2"], ["https://tec.openplanner.team/stops/N501epb", "https://tec.openplanner.team/stops/N501epd"], ["https://tec.openplanner.team/stops/Llgfusc6", "https://tec.openplanner.team/stops/Llgvero2"], ["https://tec.openplanner.team/stops/LOnec--1", "https://tec.openplanner.team/stops/LOnec--2"], ["https://tec.openplanner.team/stops/H1ho125b", "https://tec.openplanner.team/stops/H1wa143b"], ["https://tec.openplanner.team/stops/LsHlenz1", "https://tec.openplanner.team/stops/LsHlenz2"], ["https://tec.openplanner.team/stops/X955aeb", "https://tec.openplanner.team/stops/X955aga"], ["https://tec.openplanner.team/stops/LBNover1", "https://tec.openplanner.team/stops/LMeeg--1"], ["https://tec.openplanner.team/stops/Lenclar2", "https://tec.openplanner.team/stops/Lengran1"], ["https://tec.openplanner.team/stops/Bbcohou4", "https://tec.openplanner.team/stops/Bbcomar1"], ["https://tec.openplanner.team/stops/Cmachau1", "https://tec.openplanner.team/stops/Cmastni1"], ["https://tec.openplanner.team/stops/LSAjacq1", "https://tec.openplanner.team/stops/LSAtrih2"], ["https://tec.openplanner.team/stops/X979aba", "https://tec.openplanner.team/stops/X979adb"], ["https://tec.openplanner.team/stops/Lbobuil1", "https://tec.openplanner.team/stops/Lbobuil2"], ["https://tec.openplanner.team/stops/Cjupllo1", "https://tec.openplanner.team/stops/Cjupllo2"], ["https://tec.openplanner.team/stops/Lheente1", "https://tec.openplanner.team/stops/Lheterm*"], ["https://tec.openplanner.team/stops/N301aab", "https://tec.openplanner.team/stops/N301ahb"], ["https://tec.openplanner.team/stops/Bjodcad2", "https://tec.openplanner.team/stops/Bjodsje1"], ["https://tec.openplanner.team/stops/H4ru240b", "https://tec.openplanner.team/stops/H4wc372a"], ["https://tec.openplanner.team/stops/H1po137a", "https://tec.openplanner.team/stops/H1po138b"], ["https://tec.openplanner.team/stops/X804aib", "https://tec.openplanner.team/stops/X804ara"], ["https://tec.openplanner.team/stops/LPRvill1", "https://tec.openplanner.team/stops/LPRvill2"], ["https://tec.openplanner.team/stops/Bpiehvi1", "https://tec.openplanner.team/stops/Bpiepla1"], ["https://tec.openplanner.team/stops/N501mwa", "https://tec.openplanner.team/stops/N501mwb"], ["https://tec.openplanner.team/stops/H2re174b", "https://tec.openplanner.team/stops/H2re175a"], ["https://tec.openplanner.team/stops/Bcrnegl2", "https://tec.openplanner.team/stops/Bcrnsge2"], ["https://tec.openplanner.team/stops/Lgrlimi2", "https://tec.openplanner.team/stops/Llgmulh2"], ["https://tec.openplanner.team/stops/H4mb143a", "https://tec.openplanner.team/stops/H4mb143d"], ["https://tec.openplanner.team/stops/Cgxwaut1", "https://tec.openplanner.team/stops/Cmofosb2"], ["https://tec.openplanner.team/stops/N501dba", "https://tec.openplanner.team/stops/N533aha"], ["https://tec.openplanner.team/stops/LRmkerk1", "https://tec.openplanner.team/stops/LRmkerk2"], ["https://tec.openplanner.team/stops/Lhepaqu1", "https://tec.openplanner.team/stops/Lhepaqu2"], ["https://tec.openplanner.team/stops/Bsdapir1", "https://tec.openplanner.team/stops/Bsdapir2"], ["https://tec.openplanner.team/stops/X760afa", "https://tec.openplanner.team/stops/X760afb"], ["https://tec.openplanner.team/stops/X634aba", "https://tec.openplanner.team/stops/X634ahb"], ["https://tec.openplanner.team/stops/Cjubien1", "https://tec.openplanner.team/stops/Cjuloos2"], ["https://tec.openplanner.team/stops/H4hq133a", "https://tec.openplanner.team/stops/H4hq134a"], ["https://tec.openplanner.team/stops/N136aea", "https://tec.openplanner.team/stops/N143ada"], ["https://tec.openplanner.team/stops/X601cja", "https://tec.openplanner.team/stops/X601cwa"], ["https://tec.openplanner.team/stops/LFdchau2", "https://tec.openplanner.team/stops/LLMfond1"], ["https://tec.openplanner.team/stops/X780afa", "https://tec.openplanner.team/stops/X780afb"], ["https://tec.openplanner.team/stops/LBAcent1", "https://tec.openplanner.team/stops/LSAmous1"], ["https://tec.openplanner.team/stops/H2hg149b", "https://tec.openplanner.team/stops/H2hg270b"], ["https://tec.openplanner.team/stops/N230ama", "https://tec.openplanner.team/stops/N549aab"], ["https://tec.openplanner.team/stops/Cwfmonu2", "https://tec.openplanner.team/stops/Cwfplac1"], ["https://tec.openplanner.team/stops/H5el105b", "https://tec.openplanner.team/stops/H5el111b"], ["https://tec.openplanner.team/stops/Cchalou1", "https://tec.openplanner.team/stops/Cchwarm2"], ["https://tec.openplanner.team/stops/Bgemcro1", "https://tec.openplanner.team/stops/Bgemgjo1"], ["https://tec.openplanner.team/stops/X756ada", "https://tec.openplanner.team/stops/X756akb"], ["https://tec.openplanner.team/stops/N517adc", "https://tec.openplanner.team/stops/N581abb"], ["https://tec.openplanner.team/stops/N150aaa", "https://tec.openplanner.team/stops/N150aba"], ["https://tec.openplanner.team/stops/Caindsa2", "https://tec.openplanner.team/stops/Crsrose1"], ["https://tec.openplanner.team/stops/LROmorf2", "https://tec.openplanner.team/stops/LWLeg--1"], ["https://tec.openplanner.team/stops/H4mo137a", "https://tec.openplanner.team/stops/H4rx176a"], ["https://tec.openplanner.team/stops/LSPastr2", "https://tec.openplanner.team/stops/LSPgare*"], ["https://tec.openplanner.team/stops/X943aga", "https://tec.openplanner.team/stops/X943aha"], ["https://tec.openplanner.team/stops/H1el135a", "https://tec.openplanner.team/stops/H1wi152a"], ["https://tec.openplanner.team/stops/Ccpetan1", "https://tec.openplanner.team/stops/Cptchea2"], ["https://tec.openplanner.team/stops/LHUdeni1", "https://tec.openplanner.team/stops/LHUdeni2"], ["https://tec.openplanner.team/stops/Bwategp1", "https://tec.openplanner.team/stops/Bwatfau1"], ["https://tec.openplanner.team/stops/Lprorem1", "https://tec.openplanner.team/stops/Lprtill2"], ["https://tec.openplanner.team/stops/LFReg--1", "https://tec.openplanner.team/stops/LRffroi2"], ["https://tec.openplanner.team/stops/H4ag102a", "https://tec.openplanner.team/stops/H4fo118b"], ["https://tec.openplanner.team/stops/X636afb", "https://tec.openplanner.team/stops/X636agb"], ["https://tec.openplanner.team/stops/X953aaa", "https://tec.openplanner.team/stops/X953acb"], ["https://tec.openplanner.team/stops/N501ffa", "https://tec.openplanner.team/stops/N501lzb"], ["https://tec.openplanner.team/stops/X804ana", "https://tec.openplanner.team/stops/X804aob"], ["https://tec.openplanner.team/stops/X595aia", "https://tec.openplanner.team/stops/X713ada"], ["https://tec.openplanner.team/stops/H4ma204a", "https://tec.openplanner.team/stops/H4ma204b"], ["https://tec.openplanner.team/stops/LCUjonc1", "https://tec.openplanner.team/stops/NL73aab"], ["https://tec.openplanner.team/stops/Lmoboeu3", "https://tec.openplanner.team/stops/Lmoboeu4"], ["https://tec.openplanner.team/stops/Bsdavpe2", "https://tec.openplanner.team/stops/Csdnive4"], ["https://tec.openplanner.team/stops/Cfocobe1", "https://tec.openplanner.team/stops/Cforpet1"], ["https://tec.openplanner.team/stops/Bbstmco1", "https://tec.openplanner.team/stops/Csdetan2"], ["https://tec.openplanner.team/stops/LBSpail4", "https://tec.openplanner.team/stops/LBStong2"], ["https://tec.openplanner.team/stops/LbO52--1", "https://tec.openplanner.team/stops/LbOhoff2"], ["https://tec.openplanner.team/stops/N511asa", "https://tec.openplanner.team/stops/N511asb"], ["https://tec.openplanner.team/stops/LHFappe2", "https://tec.openplanner.team/stops/LHFwaut1"], ["https://tec.openplanner.team/stops/Bgoevli1", "https://tec.openplanner.team/stops/Bgoevli2"], ["https://tec.openplanner.team/stops/Bthscbl1", "https://tec.openplanner.team/stops/Bthscbl2"], ["https://tec.openplanner.team/stops/Cmycime1", "https://tec.openplanner.team/stops/Cmyvesa1"], ["https://tec.openplanner.team/stops/LCPbatt1", "https://tec.openplanner.team/stops/LMtcent2"], ["https://tec.openplanner.team/stops/Bhevcur2", "https://tec.openplanner.team/stops/Bmsgmon2"], ["https://tec.openplanner.team/stops/H4lz164a", "https://tec.openplanner.team/stops/H4tp143b"], ["https://tec.openplanner.team/stops/N539apa", "https://tec.openplanner.team/stops/N539apb"], ["https://tec.openplanner.team/stops/H4ne132d", "https://tec.openplanner.team/stops/H4tf147b"], ["https://tec.openplanner.team/stops/Llgfran1", "https://tec.openplanner.team/stops/Llglema3"], ["https://tec.openplanner.team/stops/H4mo161a", "https://tec.openplanner.team/stops/H4mo184b"], ["https://tec.openplanner.team/stops/Cvsduve1", "https://tec.openplanner.team/stops/N530aha"], ["https://tec.openplanner.team/stops/X901ada", "https://tec.openplanner.team/stops/X901bpa"], ["https://tec.openplanner.team/stops/LaNdord1", "https://tec.openplanner.team/stops/LaNmuhl1"], ["https://tec.openplanner.team/stops/H4co151a", "https://tec.openplanner.team/stops/H4wn131a"], ["https://tec.openplanner.team/stops/H1pe130b", "https://tec.openplanner.team/stops/H1pe132b"], ["https://tec.openplanner.team/stops/Louencl2", "https://tec.openplanner.team/stops/Loutroi1"], ["https://tec.openplanner.team/stops/Cmlsart2", "https://tec.openplanner.team/stops/Cnanoir1"], ["https://tec.openplanner.team/stops/N510aaa", "https://tec.openplanner.team/stops/N510aca"], ["https://tec.openplanner.team/stops/X742adb", "https://tec.openplanner.team/stops/X742aeb"], ["https://tec.openplanner.team/stops/Bperrcr1", "https://tec.openplanner.team/stops/Bperrcr2"], ["https://tec.openplanner.team/stops/Btstbes1", "https://tec.openplanner.team/stops/Btstbes2"], ["https://tec.openplanner.team/stops/LATcorp1", "https://tec.openplanner.team/stops/LATcorp2"], ["https://tec.openplanner.team/stops/Cbbcrbo1", "https://tec.openplanner.team/stops/Cbmgrav2"], ["https://tec.openplanner.team/stops/LCPaywa2", "https://tec.openplanner.team/stops/LMvgare2"], ["https://tec.openplanner.team/stops/Chppack2", "https://tec.openplanner.team/stops/Cracime2"], ["https://tec.openplanner.team/stops/N509aqa", "https://tec.openplanner.team/stops/N509avb"], ["https://tec.openplanner.team/stops/N512aib", "https://tec.openplanner.team/stops/N512aic"], ["https://tec.openplanner.team/stops/LsVbell2", "https://tec.openplanner.team/stops/LsVfrde2"], ["https://tec.openplanner.team/stops/Bohnmes1", "https://tec.openplanner.team/stops/Bohnmon1"], ["https://tec.openplanner.team/stops/Lmnsech1", "https://tec.openplanner.team/stops/Lmnsech2"], ["https://tec.openplanner.team/stops/X664aib", "https://tec.openplanner.team/stops/X664aid"], ["https://tec.openplanner.team/stops/LBOec--1", "https://tec.openplanner.team/stops/LBOec--2"], ["https://tec.openplanner.team/stops/X761abb", "https://tec.openplanner.team/stops/X793ada"], ["https://tec.openplanner.team/stops/Cchbrou2", "https://tec.openplanner.team/stops/Cchjaur2"], ["https://tec.openplanner.team/stops/X824aha", "https://tec.openplanner.team/stops/X824akb"], ["https://tec.openplanner.team/stops/H2gy106a", "https://tec.openplanner.team/stops/H2gy107a"], ["https://tec.openplanner.team/stops/H5pe141b", "https://tec.openplanner.team/stops/H5pe147b"], ["https://tec.openplanner.team/stops/LSChane2", "https://tec.openplanner.team/stops/LVEmohi1"], ["https://tec.openplanner.team/stops/H4co157a", "https://tec.openplanner.team/stops/H4co157b"], ["https://tec.openplanner.team/stops/Bfledpi1", "https://tec.openplanner.team/stops/Cflchap4"], ["https://tec.openplanner.team/stops/H1ha184b", "https://tec.openplanner.team/stops/H1ha187b"], ["https://tec.openplanner.team/stops/N512ada", "https://tec.openplanner.team/stops/N512aha"], ["https://tec.openplanner.team/stops/H1gr115b", "https://tec.openplanner.team/stops/H1gr120a"], ["https://tec.openplanner.team/stops/N230acb", "https://tec.openplanner.team/stops/N230aia"], ["https://tec.openplanner.team/stops/LLmcarr1", "https://tec.openplanner.team/stops/LLmpt--1"], ["https://tec.openplanner.team/stops/N152aaa", "https://tec.openplanner.team/stops/N152aad"], ["https://tec.openplanner.team/stops/H3th135c", "https://tec.openplanner.team/stops/H3th135e"], ["https://tec.openplanner.team/stops/X901boa", "https://tec.openplanner.team/stops/X901bob"], ["https://tec.openplanner.team/stops/Lhutill2", "https://tec.openplanner.team/stops/Lveherl1"], ["https://tec.openplanner.team/stops/LAMgare2", "https://tec.openplanner.team/stops/LOmpont1"], ["https://tec.openplanner.team/stops/LBGgeer1", "https://tec.openplanner.team/stops/LBGgeer2"], ["https://tec.openplanner.team/stops/LlgOPER3", "https://tec.openplanner.team/stops/LlgOPER4"], ["https://tec.openplanner.team/stops/Bblagar8", "https://tec.openplanner.team/stops/Bblagar9"], ["https://tec.openplanner.team/stops/N228aab", "https://tec.openplanner.team/stops/N228aeb"], ["https://tec.openplanner.team/stops/N501eta", "https://tec.openplanner.team/stops/N501etz"], ["https://tec.openplanner.team/stops/LBivi--1", "https://tec.openplanner.team/stops/LHCauwe3"], ["https://tec.openplanner.team/stops/Bbourel2", "https://tec.openplanner.team/stops/Bboutry2"], ["https://tec.openplanner.team/stops/LBvviem1", "https://tec.openplanner.team/stops/LBvviem4"], ["https://tec.openplanner.team/stops/LHanest2", "https://tec.openplanner.team/stops/LHaxhor2"], ["https://tec.openplanner.team/stops/LHcbaro2", "https://tec.openplanner.team/stops/LSxeg--2"], ["https://tec.openplanner.team/stops/H4ty286a", "https://tec.openplanner.team/stops/H4ty308e"], ["https://tec.openplanner.team/stops/X802ada", "https://tec.openplanner.team/stops/X802afb"], ["https://tec.openplanner.team/stops/H1ba113a", "https://tec.openplanner.team/stops/H1gh143a"], ["https://tec.openplanner.team/stops/LhIkirc*", "https://tec.openplanner.team/stops/LwTzent1"], ["https://tec.openplanner.team/stops/N576ana", "https://tec.openplanner.team/stops/N576anb"], ["https://tec.openplanner.team/stops/LVEjard1", "https://tec.openplanner.team/stops/LVEjard2"], ["https://tec.openplanner.team/stops/Bgemga10", "https://tec.openplanner.team/stops/Bgemga11"], ["https://tec.openplanner.team/stops/N522ahb", "https://tec.openplanner.team/stops/N522ama"], ["https://tec.openplanner.team/stops/Cflsabl1", "https://tec.openplanner.team/stops/Cwgpatr2"], ["https://tec.openplanner.team/stops/LbUmolk1", "https://tec.openplanner.team/stops/LhUkreu2"], ["https://tec.openplanner.team/stops/X667aea", "https://tec.openplanner.team/stops/X670arb"], ["https://tec.openplanner.team/stops/NL74ahb", "https://tec.openplanner.team/stops/NL74aib"], ["https://tec.openplanner.team/stops/H1em110a", "https://tec.openplanner.team/stops/H1hl129b"], ["https://tec.openplanner.team/stops/Lmocail2", "https://tec.openplanner.team/stops/Lsnfoot2"], ["https://tec.openplanner.team/stops/X922aga", "https://tec.openplanner.team/stops/X922alb"], ["https://tec.openplanner.team/stops/X725afe", "https://tec.openplanner.team/stops/X725afh"], ["https://tec.openplanner.team/stops/H5fl103b", "https://tec.openplanner.team/stops/H5wo136a"], ["https://tec.openplanner.team/stops/N425acb", "https://tec.openplanner.team/stops/N425ahb"], ["https://tec.openplanner.team/stops/H1mb128a", "https://tec.openplanner.team/stops/H1mb128b"], ["https://tec.openplanner.team/stops/LAMgare2", "https://tec.openplanner.team/stops/LAMhopi3"], ["https://tec.openplanner.team/stops/X808aaa", "https://tec.openplanner.team/stops/X808abc"], ["https://tec.openplanner.team/stops/LHHplac1", "https://tec.openplanner.team/stops/LHHtill1"], ["https://tec.openplanner.team/stops/LSXbecc1", "https://tec.openplanner.team/stops/LSXvill1"], ["https://tec.openplanner.team/stops/LFRhock1", "https://tec.openplanner.team/stops/LSZpiro2"], ["https://tec.openplanner.team/stops/LBPmais1", "https://tec.openplanner.team/stops/LGLcour4"], ["https://tec.openplanner.team/stops/Clrhava2", "https://tec.openplanner.team/stops/Clrrhau2"], ["https://tec.openplanner.team/stops/Cchba03", "https://tec.openplanner.team/stops/Cchba04"], ["https://tec.openplanner.team/stops/Bthsvil2", "https://tec.openplanner.team/stops/NL37aib"], ["https://tec.openplanner.team/stops/N501hqa", "https://tec.openplanner.team/stops/N501hta"], ["https://tec.openplanner.team/stops/Cchfaub2", "https://tec.openplanner.team/stops/Cchvil21"], ["https://tec.openplanner.team/stops/N532aea", "https://tec.openplanner.team/stops/N574aeb"], ["https://tec.openplanner.team/stops/Brixdec1", "https://tec.openplanner.team/stops/Brixpro1"], ["https://tec.openplanner.team/stops/N501dwa", "https://tec.openplanner.team/stops/N501eab"], ["https://tec.openplanner.team/stops/H4wi164b", "https://tec.openplanner.team/stops/H4wi168b"], ["https://tec.openplanner.team/stops/LaMwies1", "https://tec.openplanner.team/stops/LeIkreu1"], ["https://tec.openplanner.team/stops/X663awb", "https://tec.openplanner.team/stops/X663axa"], ["https://tec.openplanner.team/stops/N101adb", "https://tec.openplanner.team/stops/N101aja"], ["https://tec.openplanner.team/stops/H4mt216b", "https://tec.openplanner.team/stops/H4mt220a"], ["https://tec.openplanner.team/stops/LENcroi1", "https://tec.openplanner.team/stops/LENengi1"], ["https://tec.openplanner.team/stops/Btieast1", "https://tec.openplanner.team/stops/Btiegar2"], ["https://tec.openplanner.team/stops/Llgcham6", "https://tec.openplanner.team/stops/Llgmulh1"], ["https://tec.openplanner.team/stops/X716aca", "https://tec.openplanner.team/stops/X716acb"], ["https://tec.openplanner.team/stops/N232bgb", "https://tec.openplanner.team/stops/N232bla"], ["https://tec.openplanner.team/stops/LHrlorc1", "https://tec.openplanner.team/stops/LHrparc1"], ["https://tec.openplanner.team/stops/N512apb", "https://tec.openplanner.team/stops/N512ara"], ["https://tec.openplanner.team/stops/X754asb", "https://tec.openplanner.team/stops/X754aub"], ["https://tec.openplanner.team/stops/Bbch4br6", "https://tec.openplanner.team/stops/Bbchcab2"], ["https://tec.openplanner.team/stops/N557afb", "https://tec.openplanner.team/stops/N557agb"], ["https://tec.openplanner.team/stops/X877afb", "https://tec.openplanner.team/stops/X879abb"], ["https://tec.openplanner.team/stops/X369aab", "https://tec.openplanner.team/stops/X369aba"], ["https://tec.openplanner.team/stops/Bmonbri1", "https://tec.openplanner.team/stops/Bmonbri2"], ["https://tec.openplanner.team/stops/X641aea", "https://tec.openplanner.team/stops/X641afd"], ["https://tec.openplanner.team/stops/LENindu2", "https://tec.openplanner.team/stops/LENpt--2"], ["https://tec.openplanner.team/stops/LTobilz2", "https://tec.openplanner.team/stops/LTotrui1"], ["https://tec.openplanner.team/stops/LHUdelc3", "https://tec.openplanner.team/stops/LHUlebe0"], ["https://tec.openplanner.team/stops/LSdsa451", "https://tec.openplanner.team/stops/LSdsar51"], ["https://tec.openplanner.team/stops/Lseboia2", "https://tec.openplanner.team/stops/Lsemaha1"], ["https://tec.openplanner.team/stops/N501bla", "https://tec.openplanner.team/stops/N501lqa"], ["https://tec.openplanner.team/stops/Btubga03", "https://tec.openplanner.team/stops/Btubnav2"], ["https://tec.openplanner.team/stops/X601aua", "https://tec.openplanner.team/stops/X601bwa"], ["https://tec.openplanner.team/stops/X634aea", "https://tec.openplanner.team/stops/X634agb"], ["https://tec.openplanner.team/stops/Cmtneuv1", "https://tec.openplanner.team/stops/Cmtpaix2"], ["https://tec.openplanner.team/stops/N229ada", "https://tec.openplanner.team/stops/N291aba"], ["https://tec.openplanner.team/stops/Bgoekaz1", "https://tec.openplanner.team/stops/Bhakmkr1"], ["https://tec.openplanner.team/stops/Cjuheig1", "https://tec.openplanner.team/stops/Cjuheig4"], ["https://tec.openplanner.team/stops/X681aeb", "https://tec.openplanner.team/stops/X681afa"], ["https://tec.openplanner.team/stops/LPrcarr1", "https://tec.openplanner.team/stops/LWZbeem1"], ["https://tec.openplanner.team/stops/H1mq200a", "https://tec.openplanner.team/stops/H1mq200b"], ["https://tec.openplanner.team/stops/H1wz170b", "https://tec.openplanner.team/stops/H1wz171a"], ["https://tec.openplanner.team/stops/Lrccomm2", "https://tec.openplanner.team/stops/Lrclant1"], ["https://tec.openplanner.team/stops/X623afb", "https://tec.openplanner.team/stops/X624aab"], ["https://tec.openplanner.team/stops/LMastat3", "https://tec.openplanner.team/stops/LMawilh3"], ["https://tec.openplanner.team/stops/N254abb", "https://tec.openplanner.team/stops/N254aga"], ["https://tec.openplanner.team/stops/Bwavche1", "https://tec.openplanner.team/stops/Bwavnam3"], ["https://tec.openplanner.team/stops/H2pe154b", "https://tec.openplanner.team/stops/H2pe159a"], ["https://tec.openplanner.team/stops/X730agb", "https://tec.openplanner.team/stops/X731aia"], ["https://tec.openplanner.team/stops/LMHec--1", "https://tec.openplanner.team/stops/LMHec--2"], ["https://tec.openplanner.team/stops/Bhalark2", "https://tec.openplanner.team/stops/Bhalber2"], ["https://tec.openplanner.team/stops/X882afa", "https://tec.openplanner.team/stops/X882ajb"], ["https://tec.openplanner.team/stops/LROgeuz1", "https://tec.openplanner.team/stops/LWalibo2"], ["https://tec.openplanner.team/stops/Lanfran1", "https://tec.openplanner.team/stops/Lanyser2"], ["https://tec.openplanner.team/stops/X720aba", "https://tec.openplanner.team/stops/X720aeb"], ["https://tec.openplanner.team/stops/LAx17--2", "https://tec.openplanner.team/stops/LAx41--2"], ["https://tec.openplanner.team/stops/LHocroi1", "https://tec.openplanner.team/stops/LHocroi2"], ["https://tec.openplanner.team/stops/X763aab", "https://tec.openplanner.team/stops/X763adb"], ["https://tec.openplanner.team/stops/X730adb", "https://tec.openplanner.team/stops/X731afb"], ["https://tec.openplanner.team/stops/H3br100b", "https://tec.openplanner.team/stops/H3br122b"], ["https://tec.openplanner.team/stops/LWAbeec1", "https://tec.openplanner.team/stops/LWAbett2"], ["https://tec.openplanner.team/stops/H1he108a", "https://tec.openplanner.team/stops/H1he108b"], ["https://tec.openplanner.team/stops/N535ana", "https://tec.openplanner.team/stops/N535aob"], ["https://tec.openplanner.team/stops/H4am113a", "https://tec.openplanner.team/stops/H4rs118a"], ["https://tec.openplanner.team/stops/X756aec", "https://tec.openplanner.team/stops/X756aed"], ["https://tec.openplanner.team/stops/Cfrgivr1", "https://tec.openplanner.team/stops/Cfrgivr2"], ["https://tec.openplanner.team/stops/Cbbjfeu1", "https://tec.openplanner.team/stops/Cclbarb1"], ["https://tec.openplanner.team/stops/Ccychba1", "https://tec.openplanner.team/stops/Ccycont1"], ["https://tec.openplanner.team/stops/X359ada", "https://tec.openplanner.team/stops/X359adb"], ["https://tec.openplanner.team/stops/X740afa", "https://tec.openplanner.team/stops/X759aaa"], ["https://tec.openplanner.team/stops/Bqueaga1", "https://tec.openplanner.team/stops/Bquesta1"], ["https://tec.openplanner.team/stops/Bsaubbo1", "https://tec.openplanner.team/stops/N541aca"], ["https://tec.openplanner.team/stops/Lbhhomv1", "https://tec.openplanner.team/stops/Lbhmc--1"], ["https://tec.openplanner.team/stops/Lhrcols4", "https://tec.openplanner.team/stops/Lhrpaep2"], ["https://tec.openplanner.team/stops/Bnivgen1", "https://tec.openplanner.team/stops/Bnivgen2"], ["https://tec.openplanner.team/stops/Louense1", "https://tec.openplanner.team/stops/Louense2"], ["https://tec.openplanner.team/stops/Bmrspel2", "https://tec.openplanner.team/stops/Bohnrpl2"], ["https://tec.openplanner.team/stops/X736aea", "https://tec.openplanner.team/stops/X736aja"], ["https://tec.openplanner.team/stops/LHCmonu1", "https://tec.openplanner.team/stops/LHCmonu2"], ["https://tec.openplanner.team/stops/Brsgera1", "https://tec.openplanner.team/stops/Brsgera2"], ["https://tec.openplanner.team/stops/N554acb", "https://tec.openplanner.team/stops/N554afa"], ["https://tec.openplanner.team/stops/Cchabat1", "https://tec.openplanner.team/stops/Cchlamb2"], ["https://tec.openplanner.team/stops/Lflroms5", "https://tec.openplanner.team/stops/Lflsana2"], ["https://tec.openplanner.team/stops/LrTbahn1", "https://tec.openplanner.team/stops/LrTpost2"], ["https://tec.openplanner.team/stops/LBgcroi4", "https://tec.openplanner.team/stops/LBgnach2"], ["https://tec.openplanner.team/stops/H4ta134b", "https://tec.openplanner.team/stops/H4wu420b"], ["https://tec.openplanner.team/stops/H4fr145a", "https://tec.openplanner.team/stops/H4ma420a"], ["https://tec.openplanner.team/stops/X763aca", "https://tec.openplanner.team/stops/X763ada"], ["https://tec.openplanner.team/stops/Bnodeco2", "https://tec.openplanner.team/stops/Bnodtir2"], ["https://tec.openplanner.team/stops/H1cv102b", "https://tec.openplanner.team/stops/H1cv103b"], ["https://tec.openplanner.team/stops/X613aca", "https://tec.openplanner.team/stops/X613ada"], ["https://tec.openplanner.team/stops/LFClage2", "https://tec.openplanner.team/stops/LMamuse3"], ["https://tec.openplanner.team/stops/LPbover2", "https://tec.openplanner.team/stops/LSIters1"], ["https://tec.openplanner.team/stops/H1eo103a", "https://tec.openplanner.team/stops/H1gh147a"], ["https://tec.openplanner.team/stops/X608acb", "https://tec.openplanner.team/stops/X608afa"], ["https://tec.openplanner.team/stops/LCF2spa2", "https://tec.openplanner.team/stops/LOurena2"], ["https://tec.openplanner.team/stops/X369aca", "https://tec.openplanner.team/stops/X370adb"], ["https://tec.openplanner.team/stops/H4fr392a", "https://tec.openplanner.team/stops/H4ty301c"], ["https://tec.openplanner.team/stops/LAWcorn4", "https://tec.openplanner.team/stops/LAWmc--2"], ["https://tec.openplanner.team/stops/H4be101a", "https://tec.openplanner.team/stops/H5bs104a"], ["https://tec.openplanner.team/stops/Bbryfon1", "https://tec.openplanner.team/stops/Bmarcat2"], ["https://tec.openplanner.team/stops/N352ada", "https://tec.openplanner.team/stops/N353aba"], ["https://tec.openplanner.team/stops/Ccotemp1", "https://tec.openplanner.team/stops/Crowilb2"], ["https://tec.openplanner.team/stops/X801cda", "https://tec.openplanner.team/stops/X802azb"], ["https://tec.openplanner.team/stops/N232bwa", "https://tec.openplanner.team/stops/N260acb"], ["https://tec.openplanner.team/stops/X730aeb", "https://tec.openplanner.team/stops/X731afa"], ["https://tec.openplanner.team/stops/H1au111b", "https://tec.openplanner.team/stops/H1au114b"], ["https://tec.openplanner.team/stops/NL77anb", "https://tec.openplanner.team/stops/NL78aha"], ["https://tec.openplanner.team/stops/LHThall4", "https://tec.openplanner.team/stops/LWOwonc1"], ["https://tec.openplanner.team/stops/Bpergar1", "https://tec.openplanner.team/stops/Bperrma2"], ["https://tec.openplanner.team/stops/H1ry135a", "https://tec.openplanner.team/stops/H1ry135c"], ["https://tec.openplanner.team/stops/Bblafra1", "https://tec.openplanner.team/stops/Bblafra3"], ["https://tec.openplanner.team/stops/N543axa", "https://tec.openplanner.team/stops/N543aya"], ["https://tec.openplanner.team/stops/Llghoch1", "https://tec.openplanner.team/stops/Llghoch3"], ["https://tec.openplanner.team/stops/H2sb239a", "https://tec.openplanner.team/stops/H2sb239b"], ["https://tec.openplanner.team/stops/Lmohomv2", "https://tec.openplanner.team/stops/Lsnbrac1"], ["https://tec.openplanner.team/stops/N301agb", "https://tec.openplanner.team/stops/N340aeb"], ["https://tec.openplanner.team/stops/LwTkabi4", "https://tec.openplanner.team/stops/LwTzent2"], ["https://tec.openplanner.team/stops/Cpcha431", "https://tec.openplanner.team/stops/Cpcha432"], ["https://tec.openplanner.team/stops/H4ob124a", "https://tec.openplanner.team/stops/H4ob124b"], ["https://tec.openplanner.team/stops/LCSmagn1", "https://tec.openplanner.team/stops/LRArami2"], ["https://tec.openplanner.team/stops/LWDfuma2", "https://tec.openplanner.team/stops/LWDmass2"], ["https://tec.openplanner.team/stops/H2hg155c", "https://tec.openplanner.team/stops/H2ll195b"], ["https://tec.openplanner.team/stops/N527agb", "https://tec.openplanner.team/stops/N533apa"], ["https://tec.openplanner.team/stops/H1bo105a", "https://tec.openplanner.team/stops/H1bo106b"], ["https://tec.openplanner.team/stops/N573amb", "https://tec.openplanner.team/stops/N573aoa"], ["https://tec.openplanner.team/stops/H4ag104a", "https://tec.openplanner.team/stops/H4ag104b"], ["https://tec.openplanner.team/stops/X663ava", "https://tec.openplanner.team/stops/X663avb"], ["https://tec.openplanner.team/stops/H1ho123a", "https://tec.openplanner.team/stops/H1ho123b"], ["https://tec.openplanner.team/stops/H4ty314a", "https://tec.openplanner.team/stops/H4ty315a"], ["https://tec.openplanner.team/stops/Clocroi1", "https://tec.openplanner.team/stops/Clocroi2"], ["https://tec.openplanner.team/stops/LSoboul1", "https://tec.openplanner.team/stops/LSoeg--2"], ["https://tec.openplanner.team/stops/Bwaveur2", "https://tec.openplanner.team/stops/Bwavgar8"], ["https://tec.openplanner.team/stops/Canjon3", "https://tec.openplanner.team/stops/Canstat2"], ["https://tec.openplanner.team/stops/N516abb", "https://tec.openplanner.team/stops/N516acb"], ["https://tec.openplanner.team/stops/H1ms258a", "https://tec.openplanner.team/stops/H1ms305b"], ["https://tec.openplanner.team/stops/X888aca", "https://tec.openplanner.team/stops/X888aeb"], ["https://tec.openplanner.team/stops/H3lr108b", "https://tec.openplanner.team/stops/H3lr111a"], ["https://tec.openplanner.team/stops/X602aob", "https://tec.openplanner.team/stops/X663ajb"], ["https://tec.openplanner.team/stops/X818atb", "https://tec.openplanner.team/stops/X827aaa"], ["https://tec.openplanner.team/stops/LMOfrel1", "https://tec.openplanner.team/stops/LMOfrel2"], ["https://tec.openplanner.team/stops/Cgyplst2", "https://tec.openplanner.team/stops/Cgywaut1"], ["https://tec.openplanner.team/stops/Bkrapri2", "https://tec.openplanner.team/stops/Bkrawil2"], ["https://tec.openplanner.team/stops/LkAbahn*", "https://tec.openplanner.team/stops/LSoprom2"], ["https://tec.openplanner.team/stops/X547ahb", "https://tec.openplanner.team/stops/X547aja"], ["https://tec.openplanner.team/stops/X601bzb", "https://tec.openplanner.team/stops/X601dda"], ["https://tec.openplanner.team/stops/H4ga148b", "https://tec.openplanner.team/stops/H4ga157a"], ["https://tec.openplanner.team/stops/LFmbure2", "https://tec.openplanner.team/stops/LFmpoin1"], ["https://tec.openplanner.team/stops/X650aca", "https://tec.openplanner.team/stops/X650adb"], ["https://tec.openplanner.team/stops/Cfaetoi1", "https://tec.openplanner.team/stops/Cpiegli2"], ["https://tec.openplanner.team/stops/Ccoforr2", "https://tec.openplanner.team/stops/Ccogera1"], ["https://tec.openplanner.team/stops/Lstchu-4", "https://tec.openplanner.team/stops/LTIsupe1"], ["https://tec.openplanner.team/stops/X636apa", "https://tec.openplanner.team/stops/X636aqa"], ["https://tec.openplanner.team/stops/X661aua", "https://tec.openplanner.team/stops/X661aub"], ["https://tec.openplanner.team/stops/Llggill4", "https://tec.openplanner.team/stops/Llgsnap3"], ["https://tec.openplanner.team/stops/X602akb", "https://tec.openplanner.team/stops/X602aqa"], ["https://tec.openplanner.team/stops/LHMbelv1", "https://tec.openplanner.team/stops/LHMpatl1"], ["https://tec.openplanner.team/stops/LLevaux1", "https://tec.openplanner.team/stops/X547ana"], ["https://tec.openplanner.team/stops/X756aba", "https://tec.openplanner.team/stops/X757ana"], ["https://tec.openplanner.team/stops/Llgnico1", "https://tec.openplanner.team/stops/Lsnlibe2"], ["https://tec.openplanner.team/stops/Cmypela1", "https://tec.openplanner.team/stops/Cmyrens1"], ["https://tec.openplanner.team/stops/Bboueta1", "https://tec.openplanner.team/stops/Bbougbl1"], ["https://tec.openplanner.team/stops/H1bd102b", "https://tec.openplanner.team/stops/H1gy115a"], ["https://tec.openplanner.team/stops/Loudela1", "https://tec.openplanner.team/stops/Louegla2"], ["https://tec.openplanner.team/stops/H4ea128b", "https://tec.openplanner.team/stops/H5qu145b"], ["https://tec.openplanner.team/stops/LlNbene1", "https://tec.openplanner.team/stops/LwArabo2"], ["https://tec.openplanner.team/stops/X790aga", "https://tec.openplanner.team/stops/X790aha"], ["https://tec.openplanner.team/stops/Brsggar2", "https://tec.openplanner.team/stops/Bwatcoq1"], ["https://tec.openplanner.team/stops/LrUweve2", "https://tec.openplanner.team/stops/LsF39--1"], ["https://tec.openplanner.team/stops/H4jm117b", "https://tec.openplanner.team/stops/H4ry133a"], ["https://tec.openplanner.team/stops/Csdjeme1", "https://tec.openplanner.team/stops/Csdrofr1"], ["https://tec.openplanner.team/stops/N533aib", "https://tec.openplanner.team/stops/N551aba"], ["https://tec.openplanner.team/stops/H2sb232a", "https://tec.openplanner.team/stops/H3th131a"], ["https://tec.openplanner.team/stops/H1pw122a", "https://tec.openplanner.team/stops/H1wa158a"], ["https://tec.openplanner.team/stops/LFMkrut4", "https://tec.openplanner.team/stops/LFMveur2"], ["https://tec.openplanner.team/stops/Ljetomb2", "https://tec.openplanner.team/stops/Ljetout3"], ["https://tec.openplanner.team/stops/X954aca", "https://tec.openplanner.team/stops/X954ahb"], ["https://tec.openplanner.team/stops/LHGtige1", "https://tec.openplanner.team/stops/LHGtron2"], ["https://tec.openplanner.team/stops/LrAeife1", "https://tec.openplanner.team/stops/LrAeife2"], ["https://tec.openplanner.team/stops/Bnstgar1", "https://tec.openplanner.team/stops/Bnstgar2"], ["https://tec.openplanner.team/stops/Llgdony2", "https://tec.openplanner.team/stops/Llgthie2"], ["https://tec.openplanner.team/stops/Lemdieu1", "https://tec.openplanner.team/stops/Lemmc--1"], ["https://tec.openplanner.team/stops/LAYlieg2", "https://tec.openplanner.team/stops/LHrrard1"], ["https://tec.openplanner.team/stops/N529acb", "https://tec.openplanner.team/stops/N529adb"], ["https://tec.openplanner.team/stops/X619ajb", "https://tec.openplanner.team/stops/X619akb"], ["https://tec.openplanner.team/stops/X820acb", "https://tec.openplanner.team/stops/X820aga"], ["https://tec.openplanner.team/stops/N135ajb", "https://tec.openplanner.team/stops/N135aob"], ["https://tec.openplanner.team/stops/X917abb", "https://tec.openplanner.team/stops/X917aia"], ["https://tec.openplanner.team/stops/Lmopeup2", "https://tec.openplanner.team/stops/Lmovand4"], ["https://tec.openplanner.team/stops/Lbrbass1", "https://tec.openplanner.team/stops/Lbrbass2"], ["https://tec.openplanner.team/stops/Cflchel4", "https://tec.openplanner.team/stops/Cflecep2"], ["https://tec.openplanner.team/stops/X948anb", "https://tec.openplanner.team/stops/X948bbb"], ["https://tec.openplanner.team/stops/Ltibure1", "https://tec.openplanner.team/stops/Lticime2"], ["https://tec.openplanner.team/stops/LGmloti1", "https://tec.openplanner.team/stops/LGmloti2"], ["https://tec.openplanner.team/stops/LLrgara2", "https://tec.openplanner.team/stops/LSPmart2"], ["https://tec.openplanner.team/stops/NL76aab", "https://tec.openplanner.team/stops/NL76aob"], ["https://tec.openplanner.team/stops/H1cu112a", "https://tec.openplanner.team/stops/H1cu122b"], ["https://tec.openplanner.team/stops/Cfrtill2", "https://tec.openplanner.team/stops/Crebien3"], ["https://tec.openplanner.team/stops/H4ef163b", "https://tec.openplanner.team/stops/H4ef165b"], ["https://tec.openplanner.team/stops/LsBzent1", "https://tec.openplanner.team/stops/LsBzent2"], ["https://tec.openplanner.team/stops/H4rs117a", "https://tec.openplanner.team/stops/H4wt160a"], ["https://tec.openplanner.team/stops/N501afb", "https://tec.openplanner.team/stops/N501cla"], ["https://tec.openplanner.team/stops/N519abb", "https://tec.openplanner.team/stops/N519ara"], ["https://tec.openplanner.team/stops/X663aqc", "https://tec.openplanner.team/stops/X663awa"], ["https://tec.openplanner.team/stops/Lhrlaix1", "https://tec.openplanner.team/stops/Lhrsimo4"], ["https://tec.openplanner.team/stops/H3go103a", "https://tec.openplanner.team/stops/H3lr106a"], ["https://tec.openplanner.team/stops/X746aja", "https://tec.openplanner.team/stops/X746ajb"], ["https://tec.openplanner.team/stops/Bnivace2", "https://tec.openplanner.team/stops/Bnivind2"], ["https://tec.openplanner.team/stops/N521aka", "https://tec.openplanner.team/stops/N521ama"], ["https://tec.openplanner.team/stops/H1wi152b", "https://tec.openplanner.team/stops/H1wi152c"], ["https://tec.openplanner.team/stops/N513adb", "https://tec.openplanner.team/stops/N513aoa"], ["https://tec.openplanner.team/stops/NL74aba", "https://tec.openplanner.team/stops/NL74afb"], ["https://tec.openplanner.team/stops/X681aga", "https://tec.openplanner.team/stops/X681aia"], ["https://tec.openplanner.team/stops/LAWchpl2", "https://tec.openplanner.team/stops/LFOchpl2"], ["https://tec.openplanner.team/stops/Bhvltol2", "https://tec.openplanner.team/stops/Bvilcim1"], ["https://tec.openplanner.team/stops/N501ewa", "https://tec.openplanner.team/stops/N501hcb"], ["https://tec.openplanner.team/stops/N368aca", "https://tec.openplanner.team/stops/N368acb"], ["https://tec.openplanner.team/stops/LWDmass1", "https://tec.openplanner.team/stops/LWDmass2"], ["https://tec.openplanner.team/stops/N525abb", "https://tec.openplanner.team/stops/N525acb"], ["https://tec.openplanner.team/stops/NH21aea", "https://tec.openplanner.team/stops/NH21aeb"], ["https://tec.openplanner.team/stops/X806afa", "https://tec.openplanner.team/stops/X806agb"], ["https://tec.openplanner.team/stops/H4pl111a", "https://tec.openplanner.team/stops/H4pl117b"], ["https://tec.openplanner.team/stops/H1hl123b", "https://tec.openplanner.team/stops/H1hl129b"], ["https://tec.openplanner.team/stops/X637aaa", "https://tec.openplanner.team/stops/X637aba"], ["https://tec.openplanner.team/stops/H1bu136b", "https://tec.openplanner.team/stops/H1vb147b"], ["https://tec.openplanner.team/stops/LVHcent2", "https://tec.openplanner.team/stops/LVHweri1"], ["https://tec.openplanner.team/stops/Cgonvro1", "https://tec.openplanner.team/stops/Cmehame1"], ["https://tec.openplanner.team/stops/H1bo100b", "https://tec.openplanner.team/stops/H1ho140b"], ["https://tec.openplanner.team/stops/Bbghsar1", "https://tec.openplanner.team/stops/Bstesar2"], ["https://tec.openplanner.team/stops/LOTferm1", "https://tec.openplanner.team/stops/LOTtong1"], ["https://tec.openplanner.team/stops/X623aed", "https://tec.openplanner.team/stops/X623ajb"], ["https://tec.openplanner.team/stops/H4bv145b", "https://tec.openplanner.team/stops/H4bv146b"], ["https://tec.openplanner.team/stops/X619aba", "https://tec.openplanner.team/stops/X619amb"], ["https://tec.openplanner.team/stops/Bcrbmsg1", "https://tec.openplanner.team/stops/Bcrbrpb2"], ["https://tec.openplanner.team/stops/Bnivaba2", "https://tec.openplanner.team/stops/Bnivgam1"], ["https://tec.openplanner.team/stops/Lprsher1", "https://tec.openplanner.team/stops/Lprsher2"], ["https://tec.openplanner.team/stops/N525aja", "https://tec.openplanner.team/stops/N525aza"], ["https://tec.openplanner.team/stops/Bpte1ma1", "https://tec.openplanner.team/stops/Bptecar1"], ["https://tec.openplanner.team/stops/N533aeb", "https://tec.openplanner.team/stops/N551aja"], ["https://tec.openplanner.team/stops/H3br110b", "https://tec.openplanner.team/stops/H3br122b"], ["https://tec.openplanner.team/stops/Ccobinc1", "https://tec.openplanner.team/stops/Ccoforr2"], ["https://tec.openplanner.team/stops/X741aia", "https://tec.openplanner.team/stops/X741aid"], ["https://tec.openplanner.team/stops/X659aeb", "https://tec.openplanner.team/stops/X659aqb"], ["https://tec.openplanner.team/stops/Llggram2", "https://tec.openplanner.team/stops/Llgstvi1"], ["https://tec.openplanner.team/stops/Llxec--2", "https://tec.openplanner.team/stops/Llxeg--1"], ["https://tec.openplanner.team/stops/Blhubja1", "https://tec.openplanner.team/stops/Blhueso2"], ["https://tec.openplanner.team/stops/X608ava", "https://tec.openplanner.team/stops/X608aya"], ["https://tec.openplanner.team/stops/N347ada", "https://tec.openplanner.team/stops/X370acb"], ["https://tec.openplanner.team/stops/LLegare2", "https://tec.openplanner.team/stops/LLevaux1"], ["https://tec.openplanner.team/stops/X576aga", "https://tec.openplanner.team/stops/X717aia"], ["https://tec.openplanner.team/stops/LWelogi1", "https://tec.openplanner.team/stops/LWexhav1"], ["https://tec.openplanner.team/stops/X597ala", "https://tec.openplanner.team/stops/X796agb"], ["https://tec.openplanner.team/stops/H1at108b", "https://tec.openplanner.team/stops/H1at108c"], ["https://tec.openplanner.team/stops/Boppcen4", "https://tec.openplanner.team/stops/Bopprju2"], ["https://tec.openplanner.team/stops/Bmalwvi2", "https://tec.openplanner.team/stops/Btlbcha1"], ["https://tec.openplanner.team/stops/LTEkl121", "https://tec.openplanner.team/stops/LTEziho1"], ["https://tec.openplanner.team/stops/X636ala", "https://tec.openplanner.team/stops/X636bia"], ["https://tec.openplanner.team/stops/Bwspbbo2", "https://tec.openplanner.team/stops/Bwsppos1"], ["https://tec.openplanner.team/stops/LNCmc--2", "https://tec.openplanner.team/stops/LNCvill2"], ["https://tec.openplanner.team/stops/LSBjoli2", "https://tec.openplanner.team/stops/LSBrouf3"], ["https://tec.openplanner.team/stops/N535acb", "https://tec.openplanner.team/stops/N535atb"], ["https://tec.openplanner.team/stops/LBTcarr4", "https://tec.openplanner.team/stops/LCx728-2"], ["https://tec.openplanner.team/stops/LHrkin-1", "https://tec.openplanner.team/stops/LLEfagn1"], ["https://tec.openplanner.team/stops/Ljejoli2", "https://tec.openplanner.team/stops/Ljeorda1"], ["https://tec.openplanner.team/stops/X948ama", "https://tec.openplanner.team/stops/X948amb"], ["https://tec.openplanner.team/stops/Lstbota1", "https://tec.openplanner.team/stops/Lstbota3"], ["https://tec.openplanner.team/stops/Lstchu-*", "https://tec.openplanner.team/stops/Lstchu-4"], ["https://tec.openplanner.team/stops/H4ty283a", "https://tec.openplanner.team/stops/H4ty312b"], ["https://tec.openplanner.team/stops/X953adb", "https://tec.openplanner.team/stops/X953aeb"], ["https://tec.openplanner.team/stops/Bndb4ch2", "https://tec.openplanner.team/stops/Bndbgar1"], ["https://tec.openplanner.team/stops/LBsfer-1", "https://tec.openplanner.team/stops/LMHtill2"], ["https://tec.openplanner.team/stops/N501bda", "https://tec.openplanner.team/stops/N501iea"], ["https://tec.openplanner.team/stops/X801asa", "https://tec.openplanner.team/stops/X801aya"], ["https://tec.openplanner.team/stops/X796aib", "https://tec.openplanner.team/stops/X986akb"], ["https://tec.openplanner.team/stops/Bbsihau1", "https://tec.openplanner.team/stops/Bwaunop1"], ["https://tec.openplanner.team/stops/H5el110a", "https://tec.openplanner.team/stops/H5el117a"], ["https://tec.openplanner.team/stops/X675aaa", "https://tec.openplanner.team/stops/X675aab"], ["https://tec.openplanner.team/stops/LMolone2", "https://tec.openplanner.team/stops/LMovich1"], ["https://tec.openplanner.team/stops/LMfeg--2", "https://tec.openplanner.team/stops/LMforba1"], ["https://tec.openplanner.team/stops/Boffegl2", "https://tec.openplanner.team/stops/Bramrdf1"], ["https://tec.openplanner.team/stops/H4ag107a", "https://tec.openplanner.team/stops/H4ag107b"], ["https://tec.openplanner.team/stops/H4re226a", "https://tec.openplanner.team/stops/H5is169b"], ["https://tec.openplanner.team/stops/LFArela3", "https://tec.openplanner.team/stops/LFArela4"], ["https://tec.openplanner.team/stops/H4bo121a", "https://tec.openplanner.team/stops/H4ea128a"], ["https://tec.openplanner.team/stops/LHdvill2", "https://tec.openplanner.team/stops/LTatult4"], ["https://tec.openplanner.team/stops/Lseaite1", "https://tec.openplanner.team/stops/Lsebico2"], ["https://tec.openplanner.team/stops/N501grc", "https://tec.openplanner.team/stops/N501grd"], ["https://tec.openplanner.team/stops/LbTdoma1", "https://tec.openplanner.team/stops/LbThau11"], ["https://tec.openplanner.team/stops/H5rx113b", "https://tec.openplanner.team/stops/H5rx125a"], ["https://tec.openplanner.team/stops/Bpienod2", "https://tec.openplanner.team/stops/Bpiepnd1"], ["https://tec.openplanner.team/stops/Cdahtvi2", "https://tec.openplanner.team/stops/Cdaviol1"], ["https://tec.openplanner.team/stops/H5at118b", "https://tec.openplanner.team/stops/H5at235a"], ["https://tec.openplanner.team/stops/Canjonc1", "https://tec.openplanner.team/stops/Canstat2"], ["https://tec.openplanner.team/stops/Cluchbl2", "https://tec.openplanner.team/stops/Cpctunn2"], ["https://tec.openplanner.team/stops/LLxcite1", "https://tec.openplanner.team/stops/LVItcm-1"], ["https://tec.openplanner.team/stops/LOdbuis2", "https://tec.openplanner.team/stops/LVlledo2"], ["https://tec.openplanner.team/stops/X762acb", "https://tec.openplanner.team/stops/X786ajb"], ["https://tec.openplanner.team/stops/Cgxcite2", "https://tec.openplanner.team/stops/Cgxvkho3"], ["https://tec.openplanner.team/stops/H1ms267a", "https://tec.openplanner.team/stops/H1ms309b"], ["https://tec.openplanner.team/stops/H1sg148b", "https://tec.openplanner.team/stops/H1te182a"], ["https://tec.openplanner.team/stops/X948arb", "https://tec.openplanner.team/stops/X948asb"], ["https://tec.openplanner.team/stops/H4hs136b", "https://tec.openplanner.team/stops/H4hs137a"], ["https://tec.openplanner.team/stops/Bnivga22", "https://tec.openplanner.team/stops/Bnivsse1"], ["https://tec.openplanner.team/stops/Lghberl2", "https://tec.openplanner.team/stops/Lghviad2"], ["https://tec.openplanner.team/stops/Bblacim2", "https://tec.openplanner.team/stops/Bblaelo1"], ["https://tec.openplanner.team/stops/Ccoacie2", "https://tec.openplanner.team/stops/Ccobinc1"], ["https://tec.openplanner.team/stops/H1sg144b", "https://tec.openplanner.team/stops/H1sg149a"], ["https://tec.openplanner.team/stops/H1fr107c", "https://tec.openplanner.team/stops/H1fr113b"], ["https://tec.openplanner.team/stops/Cdacolu2", "https://tec.openplanner.team/stops/Cdalpla1"], ["https://tec.openplanner.team/stops/Ccipier1", "https://tec.openplanner.team/stops/Ccircar1"], ["https://tec.openplanner.team/stops/H1pe131a", "https://tec.openplanner.team/stops/H1pe131b"], ["https://tec.openplanner.team/stops/H1he102a", "https://tec.openplanner.team/stops/H1qv116a"], ["https://tec.openplanner.team/stops/Ccotrie1", "https://tec.openplanner.team/stops/Ccotrie3"], ["https://tec.openplanner.team/stops/X661ada", "https://tec.openplanner.team/stops/X661afa"], ["https://tec.openplanner.team/stops/X818aea", "https://tec.openplanner.team/stops/X818atb"], ["https://tec.openplanner.team/stops/X979aga", "https://tec.openplanner.team/stops/X982bwa"], ["https://tec.openplanner.team/stops/LAUneuv5", "https://tec.openplanner.team/stops/LAUnico1"], ["https://tec.openplanner.team/stops/LOuouff1", "https://tec.openplanner.team/stops/X982btb"], ["https://tec.openplanner.team/stops/H4ty309a", "https://tec.openplanner.team/stops/H4ty338a"], ["https://tec.openplanner.team/stops/Lstauna1", "https://tec.openplanner.team/stops/Lstetud1"], ["https://tec.openplanner.team/stops/H2ca100b", "https://tec.openplanner.team/stops/H2ca109a"], ["https://tec.openplanner.team/stops/Lhrmura1", "https://tec.openplanner.team/stops/Lhrmura2"], ["https://tec.openplanner.team/stops/Buccptj1", "https://tec.openplanner.team/stops/Buccptj2"], ["https://tec.openplanner.team/stops/X745aca", "https://tec.openplanner.team/stops/X745adb"], ["https://tec.openplanner.team/stops/LCSmagn1", "https://tec.openplanner.team/stops/LCSmagn2"], ["https://tec.openplanner.team/stops/Lcchala1", "https://tec.openplanner.team/stops/Lfhmarn2"], ["https://tec.openplanner.team/stops/H1hw118a", "https://tec.openplanner.team/stops/H1hw121a"], ["https://tec.openplanner.team/stops/Cgobruy2", "https://tec.openplanner.team/stops/Cgomoul1"], ["https://tec.openplanner.team/stops/X896aca", "https://tec.openplanner.team/stops/X896acb"], ["https://tec.openplanner.team/stops/Cchalou1", "https://tec.openplanner.team/stops/Cgyrdid2"], ["https://tec.openplanner.team/stops/Lcaboun4", "https://tec.openplanner.team/stops/Lcalaro2"], ["https://tec.openplanner.team/stops/Btlgmar1", "https://tec.openplanner.team/stops/Btlgmou1"], ["https://tec.openplanner.team/stops/Cgyrjau2", "https://tec.openplanner.team/stops/Cgystjo3"], ["https://tec.openplanner.team/stops/N514aha", "https://tec.openplanner.team/stops/N515asa"], ["https://tec.openplanner.team/stops/Llmbell2", "https://tec.openplanner.team/stops/Lprcite1"], ["https://tec.openplanner.team/stops/Lvecote2", "https://tec.openplanner.team/stops/Lvepire1"], ["https://tec.openplanner.team/stops/LOUchen1", "https://tec.openplanner.team/stops/LOUherm2"], ["https://tec.openplanner.team/stops/Ccyrmon1", "https://tec.openplanner.team/stops/Crbrgar2"], ["https://tec.openplanner.team/stops/X802aca", "https://tec.openplanner.team/stops/X802aea"], ["https://tec.openplanner.team/stops/N207aca", "https://tec.openplanner.team/stops/X206aza"], ["https://tec.openplanner.team/stops/H1el135b", "https://tec.openplanner.team/stops/H1wi148c"], ["https://tec.openplanner.team/stops/X948aha", "https://tec.openplanner.team/stops/X948aua"], ["https://tec.openplanner.team/stops/X754aba", "https://tec.openplanner.team/stops/X754aca"], ["https://tec.openplanner.team/stops/N562aca", "https://tec.openplanner.team/stops/N562acb"], ["https://tec.openplanner.team/stops/Cfvombo2", "https://tec.openplanner.team/stops/Ctilobb1"], ["https://tec.openplanner.team/stops/H4mo134a", "https://tec.openplanner.team/stops/H4mo174a"], ["https://tec.openplanner.team/stops/Bcharce1", "https://tec.openplanner.team/stops/Bhvltol2"], ["https://tec.openplanner.team/stops/Becegar1", "https://tec.openplanner.team/stops/Becepri1"], ["https://tec.openplanner.team/stops/N338aaa", "https://tec.openplanner.team/stops/N338ahb"], ["https://tec.openplanner.team/stops/NL76aca", "https://tec.openplanner.team/stops/NL80aca"], ["https://tec.openplanner.team/stops/X713ada", "https://tec.openplanner.team/stops/X713afb"], ["https://tec.openplanner.team/stops/Bflcpco1", "https://tec.openplanner.team/stops/N517aab"], ["https://tec.openplanner.team/stops/Clbchlo1", "https://tec.openplanner.team/stops/Clbpepi2"], ["https://tec.openplanner.team/stops/N528aaa", "https://tec.openplanner.team/stops/N528afc"], ["https://tec.openplanner.team/stops/N343aka", "https://tec.openplanner.team/stops/N350aea"], ["https://tec.openplanner.team/stops/N116aba", "https://tec.openplanner.team/stops/N151ajf"], ["https://tec.openplanner.team/stops/N331aca", "https://tec.openplanner.team/stops/N331akb"], ["https://tec.openplanner.team/stops/LPLarbo1", "https://tec.openplanner.team/stops/LPLg90-2"], ["https://tec.openplanner.team/stops/LMalarg3", "https://tec.openplanner.team/stops/LMgkrui1"], ["https://tec.openplanner.team/stops/N558ana", "https://tec.openplanner.team/stops/N559acb"], ["https://tec.openplanner.team/stops/X790amb", "https://tec.openplanner.team/stops/X793ada"], ["https://tec.openplanner.team/stops/H5bl123b", "https://tec.openplanner.team/stops/H5bl142a"], ["https://tec.openplanner.team/stops/X802asa", "https://tec.openplanner.team/stops/X802ayb"], ["https://tec.openplanner.team/stops/N539aib", "https://tec.openplanner.team/stops/N539aqb"], ["https://tec.openplanner.team/stops/Cwgmart1", "https://tec.openplanner.team/stops/Cwgrabi2"], ["https://tec.openplanner.team/stops/N501eby", "https://tec.openplanner.team/stops/N501gta"], ["https://tec.openplanner.team/stops/Cnamonn2", "https://tec.openplanner.team/stops/Cnaplha4"], ["https://tec.openplanner.team/stops/LmNha151", "https://tec.openplanner.team/stops/LmNmerl1"], ["https://tec.openplanner.team/stops/H1bd100a", "https://tec.openplanner.team/stops/H1bd102b"], ["https://tec.openplanner.team/stops/X670aga", "https://tec.openplanner.team/stops/X670agb"], ["https://tec.openplanner.team/stops/N139aeb", "https://tec.openplanner.team/stops/N140aaa"], ["https://tec.openplanner.team/stops/H2ma206a", "https://tec.openplanner.team/stops/H2ma263a"], ["https://tec.openplanner.team/stops/N302afa", "https://tec.openplanner.team/stops/N305aba"], ["https://tec.openplanner.team/stops/X836acb", "https://tec.openplanner.team/stops/X836adb"], ["https://tec.openplanner.team/stops/LCReg--1", "https://tec.openplanner.team/stops/LCReg--2"], ["https://tec.openplanner.team/stops/N521aga", "https://tec.openplanner.team/stops/N521aia"], ["https://tec.openplanner.team/stops/LCRfavr2", "https://tec.openplanner.team/stops/LCRgdrt1"], ["https://tec.openplanner.team/stops/Lemhenn1", "https://tec.openplanner.team/stops/Lemhenn2"], ["https://tec.openplanner.team/stops/LTIdonn1", "https://tec.openplanner.team/stops/LTIptme1"], ["https://tec.openplanner.team/stops/Lmlguis1", "https://tec.openplanner.team/stops/Lmlguis2"], ["https://tec.openplanner.team/stops/H1bo107a", "https://tec.openplanner.team/stops/H1bo109a"], ["https://tec.openplanner.team/stops/X793aka", "https://tec.openplanner.team/stops/X793akb"], ["https://tec.openplanner.team/stops/Ltibord1", "https://tec.openplanner.team/stops/Ltithie1"], ["https://tec.openplanner.team/stops/H4be108a", "https://tec.openplanner.team/stops/H4be147a"], ["https://tec.openplanner.team/stops/N501hob", "https://tec.openplanner.team/stops/N501iaa"], ["https://tec.openplanner.team/stops/X901apa", "https://tec.openplanner.team/stops/X901apb"], ["https://tec.openplanner.team/stops/X773acb", "https://tec.openplanner.team/stops/X908acb"], ["https://tec.openplanner.team/stops/X618aaa", "https://tec.openplanner.team/stops/X625acb"], ["https://tec.openplanner.team/stops/X765aab", "https://tec.openplanner.team/stops/X765afa"], ["https://tec.openplanner.team/stops/LHEecmo2", "https://tec.openplanner.team/stops/LHEnaza2"], ["https://tec.openplanner.team/stops/N525ana", "https://tec.openplanner.team/stops/N526acb"], ["https://tec.openplanner.team/stops/N501hsa", "https://tec.openplanner.team/stops/N501hwa"], ["https://tec.openplanner.team/stops/H4bn100b", "https://tec.openplanner.team/stops/H4ws158a"], ["https://tec.openplanner.team/stops/Lhufont2", "https://tec.openplanner.team/stops/Lhutann1"], ["https://tec.openplanner.team/stops/N150aia", "https://tec.openplanner.team/stops/N150aja"], ["https://tec.openplanner.team/stops/H1br127a", "https://tec.openplanner.team/stops/H1vs144a"], ["https://tec.openplanner.team/stops/N512aea", "https://tec.openplanner.team/stops/N512aha"], ["https://tec.openplanner.team/stops/LXobaty2", "https://tec.openplanner.team/stops/LXoroch1"], ["https://tec.openplanner.team/stops/N201ama", "https://tec.openplanner.team/stops/N211ala"], ["https://tec.openplanner.team/stops/LVBmonu2", "https://tec.openplanner.team/stops/LVBvill2"], ["https://tec.openplanner.team/stops/N212acb", "https://tec.openplanner.team/stops/N212afb"], ["https://tec.openplanner.team/stops/N338aia", "https://tec.openplanner.team/stops/N338aib"], ["https://tec.openplanner.team/stops/N244aua", "https://tec.openplanner.team/stops/N244aub"], ["https://tec.openplanner.team/stops/X595afb", "https://tec.openplanner.team/stops/X595agb"], ["https://tec.openplanner.team/stops/Blhueca1", "https://tec.openplanner.team/stops/Blhueca2"], ["https://tec.openplanner.team/stops/N501iha", "https://tec.openplanner.team/stops/N501ija"], ["https://tec.openplanner.team/stops/Cgocapu2", "https://tec.openplanner.team/stops/Cgostro1"], ["https://tec.openplanner.team/stops/X601bbe", "https://tec.openplanner.team/stops/X601cza"], ["https://tec.openplanner.team/stops/X802aqa", "https://tec.openplanner.team/stops/X802ara"], ["https://tec.openplanner.team/stops/Lmicoop1", "https://tec.openplanner.team/stops/Lvtlimi1"], ["https://tec.openplanner.team/stops/N552acb", "https://tec.openplanner.team/stops/N552ada"], ["https://tec.openplanner.team/stops/LATdony1", "https://tec.openplanner.team/stops/LATrori2"], ["https://tec.openplanner.team/stops/N504aba", "https://tec.openplanner.team/stops/N511aga"], ["https://tec.openplanner.team/stops/Beclaub2", "https://tec.openplanner.team/stops/H2me116b"], ["https://tec.openplanner.team/stops/N525aza", "https://tec.openplanner.team/stops/N525azb"], ["https://tec.openplanner.team/stops/Bjdscnd1", "https://tec.openplanner.team/stops/Bjdssta1"], ["https://tec.openplanner.team/stops/LMOchen1", "https://tec.openplanner.team/stops/LMOcorn2"], ["https://tec.openplanner.team/stops/Lflcle-5", "https://tec.openplanner.team/stops/Lflpaeu1"], ["https://tec.openplanner.team/stops/LbTkran1", "https://tec.openplanner.team/stops/LbTkran2"], ["https://tec.openplanner.team/stops/Bcbqa361", "https://tec.openplanner.team/stops/Bcbqa362"], ["https://tec.openplanner.team/stops/Caih1631", "https://tec.openplanner.team/stops/N543cpb"], ["https://tec.openplanner.team/stops/LNEolne1", "https://tec.openplanner.team/stops/LNEvpn-1"], ["https://tec.openplanner.team/stops/LSTgran1", "https://tec.openplanner.team/stops/LSTrema1"], ["https://tec.openplanner.team/stops/Cmltemp1", "https://tec.openplanner.team/stops/Cmlvpla2"], ["https://tec.openplanner.team/stops/LARgare2", "https://tec.openplanner.team/stops/Lchmarc2"], ["https://tec.openplanner.team/stops/LBk79--1", "https://tec.openplanner.team/stops/LMNpt--1"], ["https://tec.openplanner.team/stops/X609amb", "https://tec.openplanner.team/stops/X609ana"], ["https://tec.openplanner.team/stops/X605aaa", "https://tec.openplanner.team/stops/X619amb"], ["https://tec.openplanner.team/stops/LbOre151", "https://tec.openplanner.team/stops/LmOkape1"], ["https://tec.openplanner.team/stops/X608aib", "https://tec.openplanner.team/stops/X608ala"], ["https://tec.openplanner.team/stops/X762aaa", "https://tec.openplanner.team/stops/X762aab"], ["https://tec.openplanner.team/stops/N501hpa", "https://tec.openplanner.team/stops/N501jua"], ["https://tec.openplanner.team/stops/X768aea", "https://tec.openplanner.team/stops/X768ajb"], ["https://tec.openplanner.team/stops/N244aca", "https://tec.openplanner.team/stops/N244ajb"], ["https://tec.openplanner.team/stops/N242adc", "https://tec.openplanner.team/stops/N242agb"], ["https://tec.openplanner.team/stops/Bwavlav2", "https://tec.openplanner.team/stops/Bwavnep2"], ["https://tec.openplanner.team/stops/H4ty350b", "https://tec.openplanner.team/stops/H4ty358a"], ["https://tec.openplanner.team/stops/LSPmart2", "https://tec.openplanner.team/stops/LSPmart4"], ["https://tec.openplanner.team/stops/X996abb", "https://tec.openplanner.team/stops/X996aca"], ["https://tec.openplanner.team/stops/H1qu112a", "https://tec.openplanner.team/stops/H1qu112b"], ["https://tec.openplanner.team/stops/Bgnvtil2", "https://tec.openplanner.team/stops/Bgnvval2"], ["https://tec.openplanner.team/stops/X898ama", "https://tec.openplanner.team/stops/X899acb"], ["https://tec.openplanner.team/stops/LOucarr2", "https://tec.openplanner.team/stops/LOucarr3"], ["https://tec.openplanner.team/stops/H4mo165a", "https://tec.openplanner.team/stops/H4mo179a"], ["https://tec.openplanner.team/stops/Lagmair2", "https://tec.openplanner.team/stops/Lagtenn1"], ["https://tec.openplanner.team/stops/N232bia", "https://tec.openplanner.team/stops/N261adb"], ["https://tec.openplanner.team/stops/Lbeloui2", "https://tec.openplanner.team/stops/Ljuvieu2"], ["https://tec.openplanner.team/stops/N218acc", "https://tec.openplanner.team/stops/X301ara"], ["https://tec.openplanner.team/stops/H4ry129b", "https://tec.openplanner.team/stops/H4ry132a"], ["https://tec.openplanner.team/stops/H4hg155a", "https://tec.openplanner.team/stops/H4hg157a"], ["https://tec.openplanner.team/stops/LOurena1", "https://tec.openplanner.team/stops/X982adb"], ["https://tec.openplanner.team/stops/LROrtba1", "https://tec.openplanner.team/stops/LSorobe2"], ["https://tec.openplanner.team/stops/LXoharz6", "https://tec.openplanner.team/stops/X599aga"], ["https://tec.openplanner.team/stops/LBiberg2", "https://tec.openplanner.team/stops/LDOandr4"], ["https://tec.openplanner.team/stops/X343aha", "https://tec.openplanner.team/stops/X343ama"], ["https://tec.openplanner.team/stops/Blmlmco1", "https://tec.openplanner.team/stops/Blmlpla2"], ["https://tec.openplanner.team/stops/LHTmala4", "https://tec.openplanner.team/stops/LLxeclu1"], ["https://tec.openplanner.team/stops/H4ty272b", "https://tec.openplanner.team/stops/H4ty338b"], ["https://tec.openplanner.team/stops/Cbuegl2", "https://tec.openplanner.team/stops/Cbufron1"], ["https://tec.openplanner.team/stops/N368aaa", "https://tec.openplanner.team/stops/N368aba"], ["https://tec.openplanner.team/stops/H4ty325b", "https://tec.openplanner.team/stops/H4ty340b"], ["https://tec.openplanner.team/stops/H1fl135a", "https://tec.openplanner.team/stops/H1fl370a"], ["https://tec.openplanner.team/stops/LSPmart1", "https://tec.openplanner.team/stops/LSPmart4"], ["https://tec.openplanner.team/stops/H4mo142d", "https://tec.openplanner.team/stops/H4mo172a"], ["https://tec.openplanner.team/stops/LAYambl1", "https://tec.openplanner.team/stops/LAYcorn1"], ["https://tec.openplanner.team/stops/LcRmich2", "https://tec.openplanner.team/stops/LnUhohe1"], ["https://tec.openplanner.team/stops/H4ag102b", "https://tec.openplanner.team/stops/H4cl112b"], ["https://tec.openplanner.team/stops/Cmlange2", "https://tec.openplanner.team/stops/NC01afa"], ["https://tec.openplanner.team/stops/H1sg142a", "https://tec.openplanner.team/stops/H1sg148b"], ["https://tec.openplanner.team/stops/Bhevjac1", "https://tec.openplanner.team/stops/Bhevjac2"], ["https://tec.openplanner.team/stops/N120acb", "https://tec.openplanner.team/stops/N120adc"], ["https://tec.openplanner.team/stops/X512aaa", "https://tec.openplanner.team/stops/X512aba"], ["https://tec.openplanner.team/stops/H1hv130a", "https://tec.openplanner.team/stops/H1hv131a"], ["https://tec.openplanner.team/stops/Lflhott2", "https://tec.openplanner.team/stops/Lflmaxi4"], ["https://tec.openplanner.team/stops/X542aia", "https://tec.openplanner.team/stops/X777acb"], ["https://tec.openplanner.team/stops/H1gh157b", "https://tec.openplanner.team/stops/H1gh165a"], ["https://tec.openplanner.team/stops/LGOhevr2", "https://tec.openplanner.team/stops/LGOmous2"], ["https://tec.openplanner.team/stops/LAmsart2", "https://tec.openplanner.team/stops/LVLgotr3"], ["https://tec.openplanner.team/stops/N426adb", "https://tec.openplanner.team/stops/N426aeb"], ["https://tec.openplanner.team/stops/Ccacoup1", "https://tec.openplanner.team/stops/Ccacoup2"], ["https://tec.openplanner.team/stops/N507apb", "https://tec.openplanner.team/stops/N507aqa"], ["https://tec.openplanner.team/stops/N501bfa", "https://tec.openplanner.team/stops/N501bfz"], ["https://tec.openplanner.team/stops/N120abd", "https://tec.openplanner.team/stops/N301ajb"], ["https://tec.openplanner.team/stops/LbO52--2", "https://tec.openplanner.team/stops/LdEschw2"], ["https://tec.openplanner.team/stops/Bbstpan2", "https://tec.openplanner.team/stops/Cbtstac2"], ["https://tec.openplanner.team/stops/Ccybouc1", "https://tec.openplanner.team/stops/NH01aea"], ["https://tec.openplanner.team/stops/LkEbruc1", "https://tec.openplanner.team/stops/LkEhaag1"], ["https://tec.openplanner.team/stops/N301aab", "https://tec.openplanner.team/stops/N301aib"], ["https://tec.openplanner.team/stops/X899ahb", "https://tec.openplanner.team/stops/X899aib"], ["https://tec.openplanner.team/stops/H4eg106a", "https://tec.openplanner.team/stops/H4eg107a"], ["https://tec.openplanner.team/stops/Lbhfaye1", "https://tec.openplanner.team/stops/Lbhsion2"], ["https://tec.openplanner.team/stops/H4vz367a", "https://tec.openplanner.team/stops/H4vz371b"], ["https://tec.openplanner.team/stops/N145aia", "https://tec.openplanner.team/stops/N149aka"], ["https://tec.openplanner.team/stops/X615arb", "https://tec.openplanner.team/stops/X687aja"], ["https://tec.openplanner.team/stops/X636aba", "https://tec.openplanner.team/stops/X636abb"], ["https://tec.openplanner.team/stops/N211bca", "https://tec.openplanner.team/stops/N211bcb"], ["https://tec.openplanner.team/stops/H1hc152a", "https://tec.openplanner.team/stops/H1hc152b"], ["https://tec.openplanner.team/stops/Llxec--1", "https://tec.openplanner.team/stops/Llxeg--1"], ["https://tec.openplanner.team/stops/N519aad", "https://tec.openplanner.team/stops/N519aja"], ["https://tec.openplanner.team/stops/Bnilcab2", "https://tec.openplanner.team/stops/Bnilpor3"], ["https://tec.openplanner.team/stops/LESmc--1", "https://tec.openplanner.team/stops/LESpont2"], ["https://tec.openplanner.team/stops/X659acb", "https://tec.openplanner.team/stops/X659ada"], ["https://tec.openplanner.team/stops/N313aec", "https://tec.openplanner.team/stops/N365acb"], ["https://tec.openplanner.team/stops/H1si152c", "https://tec.openplanner.team/stops/H1si154a"], ["https://tec.openplanner.team/stops/H5wo123b", "https://tec.openplanner.team/stops/H5wo134a"], ["https://tec.openplanner.team/stops/Lalverr1", "https://tec.openplanner.team/stops/Llabrou2"], ["https://tec.openplanner.team/stops/X669aga", "https://tec.openplanner.team/stops/X672aec"], ["https://tec.openplanner.team/stops/Cmtfabi1", "https://tec.openplanner.team/stops/Cmtplac3"], ["https://tec.openplanner.team/stops/LwAlont1", "https://tec.openplanner.team/stops/LwAschu1"], ["https://tec.openplanner.team/stops/Bovetdo1", "https://tec.openplanner.team/stops/Bovetdo2"], ["https://tec.openplanner.team/stops/N501ada", "https://tec.openplanner.team/stops/N501agb"], ["https://tec.openplanner.team/stops/Bolphgr2", "https://tec.openplanner.team/stops/Bolppsn2"], ["https://tec.openplanner.team/stops/H1me115b", "https://tec.openplanner.team/stops/H1so141b"], ["https://tec.openplanner.team/stops/LeUbahn2", "https://tec.openplanner.team/stops/LeUbush1"], ["https://tec.openplanner.team/stops/LWEeg--1", "https://tec.openplanner.team/stops/LWEeg--2"], ["https://tec.openplanner.team/stops/H4pq118a", "https://tec.openplanner.team/stops/H4pq118b"], ["https://tec.openplanner.team/stops/Lstamph2", "https://tec.openplanner.team/stops/Lstauna1"], ["https://tec.openplanner.team/stops/Lceegth1", "https://tec.openplanner.team/stops/Lcepepi2"], ["https://tec.openplanner.team/stops/Lgrfrai1", "https://tec.openplanner.team/stops/Lgrfrhe2"], ["https://tec.openplanner.team/stops/Cptplac2", "https://tec.openplanner.team/stops/Cptplac5"], ["https://tec.openplanner.team/stops/LLrdrev1", "https://tec.openplanner.team/stops/LLrhaut1"], ["https://tec.openplanner.team/stops/Lsebuil2", "https://tec.openplanner.team/stops/Lsecime2"], ["https://tec.openplanner.team/stops/X879aia", "https://tec.openplanner.team/stops/X879akb"], ["https://tec.openplanner.team/stops/N242aea", "https://tec.openplanner.team/stops/N242aeb"], ["https://tec.openplanner.team/stops/LTRferm2", "https://tec.openplanner.team/stops/LTRthie2"], ["https://tec.openplanner.team/stops/H1on128a", "https://tec.openplanner.team/stops/H1on128c"], ["https://tec.openplanner.team/stops/N308aba", "https://tec.openplanner.team/stops/N337afb"], ["https://tec.openplanner.team/stops/X725ama", "https://tec.openplanner.team/stops/X725aqa"], ["https://tec.openplanner.team/stops/LWEeg--2", "https://tec.openplanner.team/stops/LWEpl--2"], ["https://tec.openplanner.team/stops/LoUpete1", "https://tec.openplanner.team/stops/LoUzent1"], ["https://tec.openplanner.team/stops/LHehacc2", "https://tec.openplanner.team/stops/LHexhav1"], ["https://tec.openplanner.team/stops/H1do126b", "https://tec.openplanner.team/stops/H1ho132a"], ["https://tec.openplanner.team/stops/H1ms294a", "https://tec.openplanner.team/stops/H1ms908a"], ["https://tec.openplanner.team/stops/X740ada", "https://tec.openplanner.team/stops/X740adb"], ["https://tec.openplanner.team/stops/X614ajb", "https://tec.openplanner.team/stops/X614ala"], ["https://tec.openplanner.team/stops/X658aaa", "https://tec.openplanner.team/stops/X658aab"], ["https://tec.openplanner.team/stops/Cmerlme1", "https://tec.openplanner.team/stops/Cmerlme2"], ["https://tec.openplanner.team/stops/X802adb", "https://tec.openplanner.team/stops/X802apa"], ["https://tec.openplanner.team/stops/X723afa", "https://tec.openplanner.team/stops/X723afb"], ["https://tec.openplanner.team/stops/LBHgile2", "https://tec.openplanner.team/stops/LGObeth1"], ["https://tec.openplanner.team/stops/LHUdeni1", "https://tec.openplanner.team/stops/LHUloui1"], ["https://tec.openplanner.team/stops/Ljeblum2", "https://tec.openplanner.team/stops/LjedTEC2"], ["https://tec.openplanner.team/stops/N209aba", "https://tec.openplanner.team/stops/N209acb"], ["https://tec.openplanner.team/stops/H4ne132a", "https://tec.openplanner.team/stops/H4ne139a"], ["https://tec.openplanner.team/stops/Bgrhche2", "https://tec.openplanner.team/stops/N519agb"], ["https://tec.openplanner.team/stops/H1sy140a", "https://tec.openplanner.team/stops/H1to155b"], ["https://tec.openplanner.team/stops/N201ada", "https://tec.openplanner.team/stops/N201afb"], ["https://tec.openplanner.team/stops/N390abb", "https://tec.openplanner.team/stops/N390afb"], ["https://tec.openplanner.team/stops/Cldvign1", "https://tec.openplanner.team/stops/Cldvign2"], ["https://tec.openplanner.team/stops/X793afa", "https://tec.openplanner.team/stops/X793afb"], ["https://tec.openplanner.team/stops/X349aaa", "https://tec.openplanner.team/stops/X349aab"], ["https://tec.openplanner.team/stops/X947aca", "https://tec.openplanner.team/stops/X947acb"], ["https://tec.openplanner.team/stops/Loualbe2", "https://tec.openplanner.team/stops/Loudemo2"], ["https://tec.openplanner.team/stops/H4be102a", "https://tec.openplanner.team/stops/H4be104d"], ["https://tec.openplanner.team/stops/Bwavrij2", "https://tec.openplanner.team/stops/Bwavzno2"], ["https://tec.openplanner.team/stops/LORgr8-1", "https://tec.openplanner.team/stops/LORthie1"], ["https://tec.openplanner.team/stops/Llggerm2", "https://tec.openplanner.team/stops/Lvtchpl4"], ["https://tec.openplanner.team/stops/LESmart1", "https://tec.openplanner.team/stops/LESryon1"], ["https://tec.openplanner.team/stops/H1wa156a", "https://tec.openplanner.team/stops/H1wa156b"], ["https://tec.openplanner.team/stops/Cnadepo1", "https://tec.openplanner.team/stops/Cnahahe2"], ["https://tec.openplanner.team/stops/N542aab", "https://tec.openplanner.team/stops/N542aac"], ["https://tec.openplanner.team/stops/H4eg108a", "https://tec.openplanner.team/stops/H4ev119a"], ["https://tec.openplanner.team/stops/H1ro133a", "https://tec.openplanner.team/stops/H4mg139b"], ["https://tec.openplanner.team/stops/N528apa", "https://tec.openplanner.team/stops/N528apb"], ["https://tec.openplanner.team/stops/N547aab", "https://tec.openplanner.team/stops/N547alb"], ["https://tec.openplanner.team/stops/LSPgare*", "https://tec.openplanner.team/stops/LSPvigi2"], ["https://tec.openplanner.team/stops/H4ty268b", "https://tec.openplanner.team/stops/H4ty348a"], ["https://tec.openplanner.team/stops/Cgofbru1", "https://tec.openplanner.team/stops/Cgofbru2"], ["https://tec.openplanner.team/stops/H1ob335b", "https://tec.openplanner.team/stops/H1ob335c"], ["https://tec.openplanner.team/stops/N167aea", "https://tec.openplanner.team/stops/N167aha"], ["https://tec.openplanner.team/stops/Lchsaro2", "https://tec.openplanner.team/stops/Lchsart1"], ["https://tec.openplanner.team/stops/H4ho119a", "https://tec.openplanner.team/stops/H4pl111b"], ["https://tec.openplanner.team/stops/Ladpara1", "https://tec.openplanner.team/stops/Ladpire1"], ["https://tec.openplanner.team/stops/N501eea", "https://tec.openplanner.team/stops/N501kfb"], ["https://tec.openplanner.team/stops/LAx41--2", "https://tec.openplanner.team/stops/LAxchpl2"], ["https://tec.openplanner.team/stops/H1so142c", "https://tec.openplanner.team/stops/H1so142d"], ["https://tec.openplanner.team/stops/X773abb", "https://tec.openplanner.team/stops/X911abb"], ["https://tec.openplanner.team/stops/LMRmont1", "https://tec.openplanner.team/stops/LMTfagn1"], ["https://tec.openplanner.team/stops/H1pa112a", "https://tec.openplanner.team/stops/H1pa166a"], ["https://tec.openplanner.team/stops/N232aea", "https://tec.openplanner.team/stops/N261abb"], ["https://tec.openplanner.team/stops/H5st162a", "https://tec.openplanner.team/stops/H5st167a"], ["https://tec.openplanner.team/stops/Cptrebe2", "https://tec.openplanner.team/stops/Cptsncb1"], ["https://tec.openplanner.team/stops/Canjonc2", "https://tec.openplanner.team/stops/Canrtth1"], ["https://tec.openplanner.team/stops/LSssurl2", "https://tec.openplanner.team/stops/N506bca"], ["https://tec.openplanner.team/stops/H2hp261a", "https://tec.openplanner.team/stops/H2lh126b"], ["https://tec.openplanner.team/stops/LAVpequ1", "https://tec.openplanner.team/stops/LLRrape4"], ["https://tec.openplanner.team/stops/NL76acb", "https://tec.openplanner.team/stops/NL76adb"], ["https://tec.openplanner.team/stops/Bbealbu3", "https://tec.openplanner.team/stops/Bbearwa1"], ["https://tec.openplanner.team/stops/LGEbern2", "https://tec.openplanner.team/stops/LGEcent2"], ["https://tec.openplanner.team/stops/N101abb", "https://tec.openplanner.team/stops/N101aca"], ["https://tec.openplanner.team/stops/X721aea", "https://tec.openplanner.team/stops/X723amb"], ["https://tec.openplanner.team/stops/X870aga", "https://tec.openplanner.team/stops/X870agb"], ["https://tec.openplanner.team/stops/X942aaa", "https://tec.openplanner.team/stops/X942abd"], ["https://tec.openplanner.team/stops/X641aib", "https://tec.openplanner.team/stops/X642aac"], ["https://tec.openplanner.team/stops/Clvimtr3", "https://tec.openplanner.team/stops/NC02aab"], ["https://tec.openplanner.team/stops/X736aba", "https://tec.openplanner.team/stops/X736abb"], ["https://tec.openplanner.team/stops/N501hhb", "https://tec.openplanner.team/stops/N501msb"], ["https://tec.openplanner.team/stops/X610aha", "https://tec.openplanner.team/stops/X610aia"], ["https://tec.openplanner.team/stops/H4lp120a", "https://tec.openplanner.team/stops/H4lp123a"], ["https://tec.openplanner.team/stops/X738ada", "https://tec.openplanner.team/stops/X771aib"], ["https://tec.openplanner.team/stops/Bolphgr1", "https://tec.openplanner.team/stops/Bolppsn2"], ["https://tec.openplanner.team/stops/H4gz115b", "https://tec.openplanner.team/stops/H4th139a"], ["https://tec.openplanner.team/stops/N542adb", "https://tec.openplanner.team/stops/N578abb"], ["https://tec.openplanner.team/stops/H4bx167a", "https://tec.openplanner.team/stops/H4ho119a"], ["https://tec.openplanner.team/stops/LHdkenn2", "https://tec.openplanner.team/stops/LHdvill2"], ["https://tec.openplanner.team/stops/X917agb", "https://tec.openplanner.team/stops/X917aia"], ["https://tec.openplanner.team/stops/Lanadmi1", "https://tec.openplanner.team/stops/Lanstat1"], ["https://tec.openplanner.team/stops/H1ms266b", "https://tec.openplanner.team/stops/H1ms288b"], ["https://tec.openplanner.team/stops/Cmtchet1", "https://tec.openplanner.team/stops/Cmtdepo2"], ["https://tec.openplanner.team/stops/X345aca", "https://tec.openplanner.team/stops/X346abb"], ["https://tec.openplanner.team/stops/X996aha", "https://tec.openplanner.team/stops/X996ahb"], ["https://tec.openplanner.team/stops/H4ty286a", "https://tec.openplanner.team/stops/H4ty312a"], ["https://tec.openplanner.team/stops/LNCsera2", "https://tec.openplanner.team/stops/LNCspor1"], ["https://tec.openplanner.team/stops/N534blh", "https://tec.openplanner.team/stops/N534bua"], ["https://tec.openplanner.team/stops/N201aia", "https://tec.openplanner.team/stops/N201aka"], ["https://tec.openplanner.team/stops/Llgcrah1", "https://tec.openplanner.team/stops/Llgcrah2"], ["https://tec.openplanner.team/stops/X750axa", "https://tec.openplanner.team/stops/X750blb"], ["https://tec.openplanner.team/stops/X999apa", "https://tec.openplanner.team/stops/X999asa"], ["https://tec.openplanner.team/stops/H4pq113a", "https://tec.openplanner.team/stops/H4pq113b"], ["https://tec.openplanner.team/stops/LFAwale2", "https://tec.openplanner.team/stops/LLTther2"], ["https://tec.openplanner.team/stops/LAWdefr2", "https://tec.openplanner.team/stops/LAWhein3"], ["https://tec.openplanner.team/stops/N508abb", "https://tec.openplanner.team/stops/N516aab"], ["https://tec.openplanner.team/stops/LHCkoul1", "https://tec.openplanner.team/stops/LHCruyf2"], ["https://tec.openplanner.team/stops/H2lh128a", "https://tec.openplanner.team/stops/H2mo129b"], ["https://tec.openplanner.team/stops/LDLbeau1", "https://tec.openplanner.team/stops/LDLgran2"], ["https://tec.openplanner.team/stops/Ccostan1", "https://tec.openplanner.team/stops/Ccostan2"], ["https://tec.openplanner.team/stops/X725ara", "https://tec.openplanner.team/stops/X725arb"], ["https://tec.openplanner.team/stops/Clrcite2", "https://tec.openplanner.team/stops/Clrecol1"], ["https://tec.openplanner.team/stops/Cgobruy2", "https://tec.openplanner.team/stops/Cgochfe1"], ["https://tec.openplanner.team/stops/LBEcroi1", "https://tec.openplanner.team/stops/LBEtrix2"], ["https://tec.openplanner.team/stops/Bmrl4ch1", "https://tec.openplanner.team/stops/Bolgcsa1"], ["https://tec.openplanner.team/stops/LLR4bra1", "https://tec.openplanner.team/stops/LLRptma1"], ["https://tec.openplanner.team/stops/H4og214a", "https://tec.openplanner.team/stops/H4to135a"], ["https://tec.openplanner.team/stops/Lbhmc--1", "https://tec.openplanner.team/stops/Lvcchev1"], ["https://tec.openplanner.team/stops/LeYmuhl1", "https://tec.openplanner.team/stops/LeYraaf2"], ["https://tec.openplanner.team/stops/X637acb", "https://tec.openplanner.team/stops/X637adb"], ["https://tec.openplanner.team/stops/Btgrpla1", "https://tec.openplanner.team/stops/N561aea"], ["https://tec.openplanner.team/stops/Bhaldbo1", "https://tec.openplanner.team/stops/Blemhon2"], ["https://tec.openplanner.team/stops/Barqhro4", "https://tec.openplanner.team/stops/Barqpla2"], ["https://tec.openplanner.team/stops/LLNcime2", "https://tec.openplanner.team/stops/LLNcruc1"], ["https://tec.openplanner.team/stops/NL67ada", "https://tec.openplanner.team/stops/NL67adb"], ["https://tec.openplanner.team/stops/X624aea", "https://tec.openplanner.team/stops/X624akb"], ["https://tec.openplanner.team/stops/H4co141a", "https://tec.openplanner.team/stops/H4co142a"], ["https://tec.openplanner.team/stops/N201aha", "https://tec.openplanner.team/stops/N201ata"], ["https://tec.openplanner.team/stops/Bbcoeco2", "https://tec.openplanner.team/stops/Bbcoser2"], ["https://tec.openplanner.team/stops/Bbstbxl2", "https://tec.openplanner.team/stops/Cbtlong1"], ["https://tec.openplanner.team/stops/N562amb", "https://tec.openplanner.team/stops/N562bqa"], ["https://tec.openplanner.team/stops/N132afa", "https://tec.openplanner.team/stops/N132agb"], ["https://tec.openplanner.team/stops/Laggare2", "https://tec.openplanner.team/stops/Lagjado5"], ["https://tec.openplanner.team/stops/Ccipech1", "https://tec.openplanner.team/stops/Cmtstan2"], ["https://tec.openplanner.team/stops/Ccucroi2", "https://tec.openplanner.team/stops/Ccufos72"], ["https://tec.openplanner.team/stops/X641apb", "https://tec.openplanner.team/stops/X641aqa"], ["https://tec.openplanner.team/stops/N542ahb", "https://tec.openplanner.team/stops/N542aib"], ["https://tec.openplanner.team/stops/N988aba", "https://tec.openplanner.team/stops/N988acb"], ["https://tec.openplanner.team/stops/N540agb", "https://tec.openplanner.team/stops/N540aha"], ["https://tec.openplanner.team/stops/H1ch102a", "https://tec.openplanner.team/stops/H5ma181a"], ["https://tec.openplanner.team/stops/Cchmamb2", "https://tec.openplanner.team/stops/Cchmonu4"], ["https://tec.openplanner.team/stops/Ccubric2", "https://tec.openplanner.team/stops/Ccucorb1"], ["https://tec.openplanner.team/stops/Bpersyn2", "https://tec.openplanner.team/stops/Btlbmel1"], ["https://tec.openplanner.team/stops/Cmlange1", "https://tec.openplanner.team/stops/Cmtrneu2"], ["https://tec.openplanner.team/stops/X739aab", "https://tec.openplanner.team/stops/X739ada"], ["https://tec.openplanner.team/stops/Cjxetri1", "https://tec.openplanner.team/stops/Cmmschw1"], ["https://tec.openplanner.team/stops/Cchwate3", "https://tec.openplanner.team/stops/Cchwate4"], ["https://tec.openplanner.team/stops/H1bu143b", "https://tec.openplanner.team/stops/H2le150b"], ["https://tec.openplanner.team/stops/LPbover2", "https://tec.openplanner.team/stops/LVkchap2"], ["https://tec.openplanner.team/stops/N122afb", "https://tec.openplanner.team/stops/N302aeb"], ["https://tec.openplanner.team/stops/H1hn202b", "https://tec.openplanner.team/stops/H1ms312a"], ["https://tec.openplanner.team/stops/Bwatceg1", "https://tec.openplanner.team/stops/Bwatceg2"], ["https://tec.openplanner.team/stops/LMAcomm1", "https://tec.openplanner.team/stops/LMAroch4"], ["https://tec.openplanner.team/stops/Llgfont4", "https://tec.openplanner.team/stops/Llghull2"], ["https://tec.openplanner.team/stops/X901aib", "https://tec.openplanner.team/stops/X901bga"], ["https://tec.openplanner.team/stops/LLmvict1", "https://tec.openplanner.team/stops/LLmvict2"], ["https://tec.openplanner.team/stops/X646ada", "https://tec.openplanner.team/stops/X823afd"], ["https://tec.openplanner.team/stops/Bhoeboo1", "https://tec.openplanner.team/stops/Blhupqu1"], ["https://tec.openplanner.team/stops/Cflsncb1", "https://tec.openplanner.team/stops/Cflsncb2"], ["https://tec.openplanner.team/stops/N158aba", "https://tec.openplanner.team/stops/N167aea"], ["https://tec.openplanner.team/stops/Bperqui2", "https://tec.openplanner.team/stops/N519aba"], ["https://tec.openplanner.team/stops/Blmlcle2", "https://tec.openplanner.team/stops/Blmlqlo2"], ["https://tec.openplanner.team/stops/LlZbell1", "https://tec.openplanner.team/stops/LmNha221"], ["https://tec.openplanner.team/stops/Bcrncen1", "https://tec.openplanner.team/stops/Bcrnpla2"], ["https://tec.openplanner.team/stops/H1lm105a", "https://tec.openplanner.team/stops/H1sy145a"], ["https://tec.openplanner.team/stops/H3so157a", "https://tec.openplanner.team/stops/H3so159a"], ["https://tec.openplanner.team/stops/LLmcheg3", "https://tec.openplanner.team/stops/LLmeg--2"], ["https://tec.openplanner.team/stops/H4ir161a", "https://tec.openplanner.team/stops/H4og209a"], ["https://tec.openplanner.team/stops/N521aea", "https://tec.openplanner.team/stops/N521afb"], ["https://tec.openplanner.team/stops/Bbxltou1", "https://tec.openplanner.team/stops/H4mn100a"], ["https://tec.openplanner.team/stops/LGecime1", "https://tec.openplanner.team/stops/LGecite1"], ["https://tec.openplanner.team/stops/LSJ38--1", "https://tec.openplanner.team/stops/LWRtroi2"], ["https://tec.openplanner.team/stops/H1cv100a", "https://tec.openplanner.team/stops/H1cv104b"], ["https://tec.openplanner.team/stops/LhM07--2", "https://tec.openplanner.team/stops/LhMwing2"], ["https://tec.openplanner.team/stops/X641ava", "https://tec.openplanner.team/stops/X641awb"], ["https://tec.openplanner.team/stops/X892acb", "https://tec.openplanner.team/stops/X892adb"], ["https://tec.openplanner.team/stops/Bdlmegl1", "https://tec.openplanner.team/stops/Bdvmtve2"], ["https://tec.openplanner.team/stops/LSkcomb2", "https://tec.openplanner.team/stops/LSkdouf1"], ["https://tec.openplanner.team/stops/Llmbouv1", "https://tec.openplanner.team/stops/LWexhav1"], ["https://tec.openplanner.team/stops/X359abb", "https://tec.openplanner.team/stops/X371aca"], ["https://tec.openplanner.team/stops/N205ada", "https://tec.openplanner.team/stops/N219adb"], ["https://tec.openplanner.team/stops/H1ht122b", "https://tec.openplanner.team/stops/H1ht129a"], ["https://tec.openplanner.team/stops/N501fpa", "https://tec.openplanner.team/stops/N501ltb"], ["https://tec.openplanner.team/stops/LBVclig1", "https://tec.openplanner.team/stops/LMAroch4"], ["https://tec.openplanner.team/stops/Bgntcoo1", "https://tec.openplanner.team/stops/Bgnteco1"], ["https://tec.openplanner.team/stops/X822ana", "https://tec.openplanner.team/stops/X822aqb"], ["https://tec.openplanner.team/stops/N532aca", "https://tec.openplanner.team/stops/N533aqc"], ["https://tec.openplanner.team/stops/Cmopn1", "https://tec.openplanner.team/stops/Cmoruau1"], ["https://tec.openplanner.team/stops/N167aba", "https://tec.openplanner.team/stops/N167aga"], ["https://tec.openplanner.team/stops/N117aga", "https://tec.openplanner.team/stops/N117agb"], ["https://tec.openplanner.team/stops/N513abb", "https://tec.openplanner.team/stops/N513acb"], ["https://tec.openplanner.team/stops/X608aka", "https://tec.openplanner.team/stops/X608ama"], ["https://tec.openplanner.team/stops/N584aob", "https://tec.openplanner.team/stops/N584apa"], ["https://tec.openplanner.team/stops/Cmamons1", "https://tec.openplanner.team/stops/Cmamons2"], ["https://tec.openplanner.team/stops/X638ala", "https://tec.openplanner.team/stops/X639acd"], ["https://tec.openplanner.team/stops/Cgxdeba1", "https://tec.openplanner.team/stops/Cgxwaut2"], ["https://tec.openplanner.team/stops/LBlplac1", "https://tec.openplanner.team/stops/LCn4---2"], ["https://tec.openplanner.team/stops/LCvoufn1", "https://tec.openplanner.team/stops/LWblesp1"], ["https://tec.openplanner.team/stops/N242ada", "https://tec.openplanner.team/stops/N242adc"], ["https://tec.openplanner.team/stops/X989aea", "https://tec.openplanner.team/stops/X989afa"], ["https://tec.openplanner.team/stops/H4rc231c", "https://tec.openplanner.team/stops/H4rc232b"], ["https://tec.openplanner.team/stops/LMaslav3", "https://tec.openplanner.team/stops/LMaslav4"], ["https://tec.openplanner.team/stops/Btubga04", "https://tec.openplanner.team/stops/Btubind1"], ["https://tec.openplanner.team/stops/LSU50--2", "https://tec.openplanner.team/stops/LSUvill1"], ["https://tec.openplanner.team/stops/Llgdepo6", "https://tec.openplanner.team/stops/Llghong1"], ["https://tec.openplanner.team/stops/N160aca", "https://tec.openplanner.team/stops/N160acb"], ["https://tec.openplanner.team/stops/X911abb", "https://tec.openplanner.team/stops/X911aca"], ["https://tec.openplanner.team/stops/LJedonc1", "https://tec.openplanner.team/stops/LJelava1"], ["https://tec.openplanner.team/stops/X802aba", "https://tec.openplanner.team/stops/X802acb"], ["https://tec.openplanner.team/stops/LXofans1", "https://tec.openplanner.team/stops/LXomc--4"], ["https://tec.openplanner.team/stops/H4bo114b", "https://tec.openplanner.team/stops/H4bo121b"], ["https://tec.openplanner.team/stops/H4wi162a", "https://tec.openplanner.team/stops/H4wi163b"], ["https://tec.openplanner.team/stops/LJAmari2", "https://tec.openplanner.team/stops/LMemora1"], ["https://tec.openplanner.team/stops/LAOpres1", "https://tec.openplanner.team/stops/LLSbajo1"], ["https://tec.openplanner.team/stops/Cmcgoch2", "https://tec.openplanner.team/stops/Cmgslo1"], ["https://tec.openplanner.team/stops/N214afb", "https://tec.openplanner.team/stops/N225aca"], ["https://tec.openplanner.team/stops/Ljupiet2", "https://tec.openplanner.team/stops/Ljuvieu1"], ["https://tec.openplanner.team/stops/Bhalcbr2", "https://tec.openplanner.team/stops/Bhaltre1"], ["https://tec.openplanner.team/stops/LBkwind2", "https://tec.openplanner.team/stops/LMNpann2"], ["https://tec.openplanner.team/stops/LTRcite1", "https://tec.openplanner.team/stops/LTRthie1"], ["https://tec.openplanner.team/stops/X624aca", "https://tec.openplanner.team/stops/X624ada"], ["https://tec.openplanner.team/stops/X602arb", "https://tec.openplanner.team/stops/X633aaa"], ["https://tec.openplanner.team/stops/X782aib", "https://tec.openplanner.team/stops/X782aja"], ["https://tec.openplanner.team/stops/Cbiferm1", "https://tec.openplanner.team/stops/Cbiferm2"], ["https://tec.openplanner.team/stops/Cgzcver1", "https://tec.openplanner.team/stops/Cgzlera2"], ["https://tec.openplanner.team/stops/Cvp3til1", "https://tec.openplanner.team/stops/Cvpplan2"], ["https://tec.openplanner.team/stops/N236aeb", "https://tec.openplanner.team/stops/N236afb"], ["https://tec.openplanner.team/stops/Bsdabja2", "https://tec.openplanner.team/stops/Csdnive2"], ["https://tec.openplanner.team/stops/X717ada", "https://tec.openplanner.team/stops/X783aab"], ["https://tec.openplanner.team/stops/LaAburt2", "https://tec.openplanner.team/stops/LaAhaup2"], ["https://tec.openplanner.team/stops/X836aab", "https://tec.openplanner.team/stops/X837aha"], ["https://tec.openplanner.team/stops/X925amb", "https://tec.openplanner.team/stops/X925aoa"], ["https://tec.openplanner.team/stops/LPLg90-1", "https://tec.openplanner.team/stops/LPLline1"], ["https://tec.openplanner.team/stops/X804bma", "https://tec.openplanner.team/stops/X804boa"], ["https://tec.openplanner.team/stops/Lhrherm1", "https://tec.openplanner.team/stops/Lhrherm2"], ["https://tec.openplanner.team/stops/X542aca", "https://tec.openplanner.team/stops/X542aib"], ["https://tec.openplanner.team/stops/Bvirgar1", "https://tec.openplanner.team/stops/Bvirvol2"], ["https://tec.openplanner.team/stops/X993ada", "https://tec.openplanner.team/stops/X993aga"], ["https://tec.openplanner.team/stops/LHApthe2", "https://tec.openplanner.team/stops/LHTmoul2"], ["https://tec.openplanner.team/stops/Cfomays1", "https://tec.openplanner.team/stops/Cgxmaco1"], ["https://tec.openplanner.team/stops/LBLplac2", "https://tec.openplanner.team/stops/LBLvici3"], ["https://tec.openplanner.team/stops/X354aab", "https://tec.openplanner.team/stops/X354aba"], ["https://tec.openplanner.team/stops/N501dja", "https://tec.openplanner.team/stops/N501jsb"], ["https://tec.openplanner.team/stops/Balswin3", "https://tec.openplanner.team/stops/Brsg7fo2"], ["https://tec.openplanner.team/stops/X879aqa", "https://tec.openplanner.team/stops/X898aab"], ["https://tec.openplanner.team/stops/N509ata", "https://tec.openplanner.team/stops/N511ama"], ["https://tec.openplanner.team/stops/H1ch141b", "https://tec.openplanner.team/stops/H1ch143b"], ["https://tec.openplanner.team/stops/Lflmc--1", "https://tec.openplanner.team/stops/Lflterm2"], ["https://tec.openplanner.team/stops/Bwatlbr1", "https://tec.openplanner.team/stops/Bwatle31"], ["https://tec.openplanner.team/stops/X614ama", "https://tec.openplanner.team/stops/X614anb"], ["https://tec.openplanner.team/stops/X779aca", "https://tec.openplanner.team/stops/X779aea"], ["https://tec.openplanner.team/stops/H4bc106b", "https://tec.openplanner.team/stops/H4bc108a"], ["https://tec.openplanner.team/stops/N551aba", "https://tec.openplanner.team/stops/N551afb"], ["https://tec.openplanner.team/stops/Btsleco1", "https://tec.openplanner.team/stops/Btslnil1"], ["https://tec.openplanner.team/stops/H2gy105b", "https://tec.openplanner.team/stops/H2gy106a"], ["https://tec.openplanner.team/stops/LLmwaut2", "https://tec.openplanner.team/stops/LRemorr4"], ["https://tec.openplanner.team/stops/X923aga", "https://tec.openplanner.team/stops/X923ama"], ["https://tec.openplanner.team/stops/LrUgeme2", "https://tec.openplanner.team/stops/LrUwenz2"], ["https://tec.openplanner.team/stops/Bnivpro2", "https://tec.openplanner.team/stops/Bnivsba2"], ["https://tec.openplanner.team/stops/N219aba", "https://tec.openplanner.team/stops/N224aba"], ["https://tec.openplanner.team/stops/N232apa", "https://tec.openplanner.team/stops/N261afa"], ["https://tec.openplanner.team/stops/Lmoknae1", "https://tec.openplanner.team/stops/Lmomarr2"], ["https://tec.openplanner.team/stops/X601awa", "https://tec.openplanner.team/stops/X601awb"], ["https://tec.openplanner.team/stops/Cmmheur2", "https://tec.openplanner.team/stops/Cmmphai1"], ["https://tec.openplanner.team/stops/Bohnegl2", "https://tec.openplanner.team/stops/Bohngai1"], ["https://tec.openplanner.team/stops/Cmastch1", "https://tec.openplanner.team/stops/Cmastch4"], ["https://tec.openplanner.team/stops/Cfocobe1", "https://tec.openplanner.team/stops/Cgzhour2"], ["https://tec.openplanner.team/stops/LJEpaqu1", "https://tec.openplanner.team/stops/LJEverd2"], ["https://tec.openplanner.team/stops/N557aca", "https://tec.openplanner.team/stops/N557aeb"], ["https://tec.openplanner.team/stops/X925aga", "https://tec.openplanner.team/stops/X947adb"], ["https://tec.openplanner.team/stops/X669agc", "https://tec.openplanner.team/stops/X672afa"], ["https://tec.openplanner.team/stops/LESchac1", "https://tec.openplanner.team/stops/LPOeg--2"], ["https://tec.openplanner.team/stops/H1bn113b", "https://tec.openplanner.team/stops/H1qg138b"], ["https://tec.openplanner.team/stops/N585aha", "https://tec.openplanner.team/stops/N585aja"], ["https://tec.openplanner.team/stops/Lreclou2", "https://tec.openplanner.team/stops/Lrelier1"], ["https://tec.openplanner.team/stops/X796aeb", "https://tec.openplanner.team/stops/X796afb"], ["https://tec.openplanner.team/stops/LBBlaga2", "https://tec.openplanner.team/stops/LBBmc--2"], ["https://tec.openplanner.team/stops/H4ir162a", "https://tec.openplanner.team/stops/H5at129b"], ["https://tec.openplanner.team/stops/Bneepne1", "https://tec.openplanner.team/stops/Bneesan1"], ["https://tec.openplanner.team/stops/LPohoeg1", "https://tec.openplanner.team/stops/LSZdepo1"], ["https://tec.openplanner.team/stops/H1si156d", "https://tec.openplanner.team/stops/H4gr110b"], ["https://tec.openplanner.team/stops/N509ara", "https://tec.openplanner.team/stops/N509asb"], ["https://tec.openplanner.team/stops/X937afa", "https://tec.openplanner.team/stops/X937aha"], ["https://tec.openplanner.team/stops/Cgoclad2", "https://tec.openplanner.team/stops/Cgoulb4"], ["https://tec.openplanner.team/stops/H1au101a", "https://tec.openplanner.team/stops/H1bx107a"], ["https://tec.openplanner.team/stops/X717age", "https://tec.openplanner.team/stops/X718aga"], ["https://tec.openplanner.team/stops/Lvesomm1", "https://tec.openplanner.team/stops/Lvewall1"], ["https://tec.openplanner.team/stops/H1hc150b", "https://tec.openplanner.team/stops/H5bl120b"], ["https://tec.openplanner.team/stops/X779aeb", "https://tec.openplanner.team/stops/X779aib"], ["https://tec.openplanner.team/stops/LTPplco2", "https://tec.openplanner.team/stops/LTPsalm1"], ["https://tec.openplanner.team/stops/N270aaa", "https://tec.openplanner.team/stops/N270aab"], ["https://tec.openplanner.team/stops/Lsebico1", "https://tec.openplanner.team/stops/Lsebico2"], ["https://tec.openplanner.team/stops/Bgnvqve1", "https://tec.openplanner.team/stops/Bgnvval1"], ["https://tec.openplanner.team/stops/H1hm173a", "https://tec.openplanner.team/stops/H1sp354b"], ["https://tec.openplanner.team/stops/H1te173b", "https://tec.openplanner.team/stops/H1te184b"], ["https://tec.openplanner.team/stops/H5rx114a", "https://tec.openplanner.team/stops/H5rx135a"], ["https://tec.openplanner.team/stops/LScd45-2", "https://tec.openplanner.team/stops/LScdina2"], ["https://tec.openplanner.team/stops/LCogara2", "https://tec.openplanner.team/stops/LTPpres2"], ["https://tec.openplanner.team/stops/Lchacie1", "https://tec.openplanner.team/stops/Lchacie2"], ["https://tec.openplanner.team/stops/LwR129-2", "https://tec.openplanner.team/stops/LwRkirc2"], ["https://tec.openplanner.team/stops/Bclgvse1", "https://tec.openplanner.team/stops/Bllnfle2"], ["https://tec.openplanner.team/stops/LOReg--1", "https://tec.openplanner.team/stops/LORgend2"], ["https://tec.openplanner.team/stops/LAnchat2", "https://tec.openplanner.team/stops/LAnvien2"], ["https://tec.openplanner.team/stops/H1ba100b", "https://tec.openplanner.team/stops/H1ba103a"], ["https://tec.openplanner.team/stops/H2hl112b", "https://tec.openplanner.team/stops/H2hp116b"], ["https://tec.openplanner.team/stops/Cmaplas3", "https://tec.openplanner.team/stops/Cmaroya1"], ["https://tec.openplanner.team/stops/X901aya", "https://tec.openplanner.team/stops/X901beb"], ["https://tec.openplanner.team/stops/LRRroth1", "https://tec.openplanner.team/stops/LRRroth2"], ["https://tec.openplanner.team/stops/H4pq114a", "https://tec.openplanner.team/stops/H4pq114b"], ["https://tec.openplanner.team/stops/LSzeg--1", "https://tec.openplanner.team/stops/LSzetoi1"], ["https://tec.openplanner.team/stops/X779aga", "https://tec.openplanner.team/stops/X779aha"], ["https://tec.openplanner.team/stops/N155acb", "https://tec.openplanner.team/stops/N155adb"], ["https://tec.openplanner.team/stops/N515akb", "https://tec.openplanner.team/stops/N515asa"], ["https://tec.openplanner.team/stops/Bbgewal2", "https://tec.openplanner.team/stops/Blmldmi1"], ["https://tec.openplanner.team/stops/X359ama", "https://tec.openplanner.team/stops/X858aeb"], ["https://tec.openplanner.team/stops/LSSfrai1", "https://tec.openplanner.team/stops/LSSjeun1"], ["https://tec.openplanner.team/stops/H1wa149a", "https://tec.openplanner.team/stops/H1wa149b"], ["https://tec.openplanner.team/stops/H1qu100b", "https://tec.openplanner.team/stops/H1qu100c"], ["https://tec.openplanner.team/stops/Blimvcg2", "https://tec.openplanner.team/stops/Bottvil2"], ["https://tec.openplanner.team/stops/LAweg--1", "https://tec.openplanner.team/stops/LAweg--2"], ["https://tec.openplanner.team/stops/LSecomm1", "https://tec.openplanner.team/stops/LTibarb1"], ["https://tec.openplanner.team/stops/N229ana", "https://tec.openplanner.team/stops/N229aqa"], ["https://tec.openplanner.team/stops/N501kmy", "https://tec.openplanner.team/stops/N501kmz"], ["https://tec.openplanner.team/stops/H4ar104a", "https://tec.openplanner.team/stops/H4ar173a"], ["https://tec.openplanner.team/stops/H4ty329b", "https://tec.openplanner.team/stops/H4ty356d"], ["https://tec.openplanner.team/stops/NL37aoa", "https://tec.openplanner.team/stops/NL37aob"], ["https://tec.openplanner.team/stops/H4ry129a", "https://tec.openplanner.team/stops/H4ry141a"], ["https://tec.openplanner.team/stops/Cwfghis2", "https://tec.openplanner.team/stops/Cwfplac3"], ["https://tec.openplanner.team/stops/Llmbell2", "https://tec.openplanner.team/stops/Llmvill2"], ["https://tec.openplanner.team/stops/X344adb", "https://tec.openplanner.team/stops/X344aeb"], ["https://tec.openplanner.team/stops/H1qv111b", "https://tec.openplanner.team/stops/H1qv112b"], ["https://tec.openplanner.team/stops/LWAchpg1", "https://tec.openplanner.team/stops/LWAperv1"], ["https://tec.openplanner.team/stops/Llghaye1", "https://tec.openplanner.team/stops/Llgsnap5"], ["https://tec.openplanner.team/stops/H1au100a", "https://tec.openplanner.team/stops/H1mr123b"], ["https://tec.openplanner.team/stops/X735abc", "https://tec.openplanner.team/stops/X736aia"], ["https://tec.openplanner.team/stops/H5ar104a", "https://tec.openplanner.team/stops/H5ar127b"], ["https://tec.openplanner.team/stops/Bclgpch1", "https://tec.openplanner.team/stops/Bclgpch2"], ["https://tec.openplanner.team/stops/N533afa", "https://tec.openplanner.team/stops/N551aba"], ["https://tec.openplanner.team/stops/Lkivolg1", "https://tec.openplanner.team/stops/Loureno2"], ["https://tec.openplanner.team/stops/Bgoemgr2", "https://tec.openplanner.team/stops/Bgoesch1"], ["https://tec.openplanner.team/stops/H1qu104a", "https://tec.openplanner.team/stops/H1qu104b"], ["https://tec.openplanner.team/stops/X394aca", "https://tec.openplanner.team/stops/X394adb"], ["https://tec.openplanner.team/stops/X780aab", "https://tec.openplanner.team/stops/X788aha"], ["https://tec.openplanner.team/stops/LTNeau-1", "https://tec.openplanner.team/stops/LTNegli1"], ["https://tec.openplanner.team/stops/H1mm128b", "https://tec.openplanner.team/stops/H1vb148a"], ["https://tec.openplanner.team/stops/N501hjc", "https://tec.openplanner.team/stops/N501nda"], ["https://tec.openplanner.team/stops/Cdalpla1", "https://tec.openplanner.team/stops/Cdalpla2"], ["https://tec.openplanner.team/stops/H1gh148a", "https://tec.openplanner.team/stops/H1gh162c"], ["https://tec.openplanner.team/stops/X636aia", "https://tec.openplanner.team/stops/X636baa"], ["https://tec.openplanner.team/stops/Ccyga3", "https://tec.openplanner.team/stops/Ccyga8"], ["https://tec.openplanner.team/stops/H4fo119a", "https://tec.openplanner.team/stops/H4ga153a"], ["https://tec.openplanner.team/stops/X669agd", "https://tec.openplanner.team/stops/X672aic"], ["https://tec.openplanner.team/stops/LSPdesc2", "https://tec.openplanner.team/stops/LSPec--2"], ["https://tec.openplanner.team/stops/LWAperv1", "https://tec.openplanner.team/stops/LWApt--2"], ["https://tec.openplanner.team/stops/Bblafab2", "https://tec.openplanner.team/stops/Bblague1"], ["https://tec.openplanner.team/stops/LCHrhou2", "https://tec.openplanner.team/stops/LThplen2"], ["https://tec.openplanner.team/stops/X986aea", "https://tec.openplanner.team/stops/X986ajb"], ["https://tec.openplanner.team/stops/LROhaie2", "https://tec.openplanner.team/stops/LROrtba1"], ["https://tec.openplanner.team/stops/Bpte1ma1", "https://tec.openplanner.team/stops/Brebrog2"], ["https://tec.openplanner.team/stops/LAWgill1", "https://tec.openplanner.team/stops/LAWvill1"], ["https://tec.openplanner.team/stops/N535aoa", "https://tec.openplanner.team/stops/N580aea"], ["https://tec.openplanner.team/stops/N521asa", "https://tec.openplanner.team/stops/N521asd"], ["https://tec.openplanner.team/stops/H4ga155a", "https://tec.openplanner.team/stops/H4ga155b"], ["https://tec.openplanner.team/stops/X671aba", "https://tec.openplanner.team/stops/X671acb"], ["https://tec.openplanner.team/stops/NC44afa", "https://tec.openplanner.team/stops/NC44afc"], ["https://tec.openplanner.team/stops/X768agb", "https://tec.openplanner.team/stops/X768ahb"], ["https://tec.openplanner.team/stops/LaLkirc*", "https://tec.openplanner.team/stops/LeSsaal*"], ["https://tec.openplanner.team/stops/LSSeg--1", "https://tec.openplanner.team/stops/LSSjeun2"], ["https://tec.openplanner.team/stops/Bnstmig1", "https://tec.openplanner.team/stops/H3go101a"], ["https://tec.openplanner.team/stops/LeSdorf1", "https://tec.openplanner.team/stops/LeSsaal*"], ["https://tec.openplanner.team/stops/X601dba", "https://tec.openplanner.team/stops/X626aea"], ["https://tec.openplanner.team/stops/X911aia", "https://tec.openplanner.team/stops/X911ata"], ["https://tec.openplanner.team/stops/LCaresi2", "https://tec.openplanner.team/stops/LHZpara2"], ["https://tec.openplanner.team/stops/X925aka", "https://tec.openplanner.team/stops/X925apa"], ["https://tec.openplanner.team/stops/Cacragu2", "https://tec.openplanner.team/stops/NC24abb"], ["https://tec.openplanner.team/stops/H2ec100b", "https://tec.openplanner.team/stops/H3br101b"], ["https://tec.openplanner.team/stops/LWEgare1", "https://tec.openplanner.team/stops/LWEpl--2"], ["https://tec.openplanner.team/stops/Bjaufca1", "https://tec.openplanner.team/stops/Bjaufca2"], ["https://tec.openplanner.team/stops/H2ca103a", "https://tec.openplanner.team/stops/H2ca103d"], ["https://tec.openplanner.team/stops/LDLgran1", "https://tec.openplanner.team/stops/LDLgran2"], ["https://tec.openplanner.team/stops/Cmlclos1", "https://tec.openplanner.team/stops/Cmlcons2"], ["https://tec.openplanner.team/stops/Brsregl3", "https://tec.openplanner.team/stops/Brsregl4"], ["https://tec.openplanner.team/stops/Lpedeta1", "https://tec.openplanner.team/stops/Lpefler1"], ["https://tec.openplanner.team/stops/X754aea", "https://tec.openplanner.team/stops/X754aeb"], ["https://tec.openplanner.team/stops/Cwgrabi1", "https://tec.openplanner.team/stops/Cwgrabi2"], ["https://tec.openplanner.team/stops/X750aka", "https://tec.openplanner.team/stops/X780aia"], ["https://tec.openplanner.team/stops/X636ala", "https://tec.openplanner.team/stops/X636bjb"], ["https://tec.openplanner.team/stops/Bclgavi2", "https://tec.openplanner.team/stops/Bdvmtve2"], ["https://tec.openplanner.team/stops/LHUlebo2", "https://tec.openplanner.team/stops/LHUmala1"], ["https://tec.openplanner.team/stops/N501cna", "https://tec.openplanner.team/stops/N501cob"], ["https://tec.openplanner.team/stops/N217abb", "https://tec.openplanner.team/stops/N218aea"], ["https://tec.openplanner.team/stops/N501aja", "https://tec.openplanner.team/stops/N501bfz"], ["https://tec.openplanner.team/stops/Bcrnpla1", "https://tec.openplanner.team/stops/Bcrnpla4"], ["https://tec.openplanner.team/stops/X762aba", "https://tec.openplanner.team/stops/X764aaa"], ["https://tec.openplanner.team/stops/LAOpres1", "https://tec.openplanner.team/stops/LAOpres2"], ["https://tec.openplanner.team/stops/LHThall3", "https://tec.openplanner.team/stops/LHTmoul1"], ["https://tec.openplanner.team/stops/Blasbgc2", "https://tec.openplanner.team/stops/Blasbti2"], ["https://tec.openplanner.team/stops/Lvehauz2", "https://tec.openplanner.team/stops/Lvehopi4"], ["https://tec.openplanner.team/stops/N338aea", "https://tec.openplanner.team/stops/N387acc"], ["https://tec.openplanner.team/stops/Cmypast2", "https://tec.openplanner.team/stops/Cmysncb2"], ["https://tec.openplanner.team/stops/N553afa", "https://tec.openplanner.team/stops/N553aoa"], ["https://tec.openplanner.team/stops/N528asa", "https://tec.openplanner.team/stops/N528ata"], ["https://tec.openplanner.team/stops/LoDmuhl2", "https://tec.openplanner.team/stops/LrUoudl1"], ["https://tec.openplanner.team/stops/N270aec", "https://tec.openplanner.team/stops/N270aga"], ["https://tec.openplanner.team/stops/H1cd111b", "https://tec.openplanner.team/stops/H1cd112a"], ["https://tec.openplanner.team/stops/X901ana", "https://tec.openplanner.team/stops/X901aua"], ["https://tec.openplanner.team/stops/X626afa", "https://tec.openplanner.team/stops/X626afb"], ["https://tec.openplanner.team/stops/Cgyrjau1", "https://tec.openplanner.team/stops/Cmtduch1"], ["https://tec.openplanner.team/stops/Cfawain2", "https://tec.openplanner.team/stops/Cflecga2"], ["https://tec.openplanner.team/stops/NC11ama", "https://tec.openplanner.team/stops/NC11aoa"], ["https://tec.openplanner.team/stops/H1si167a", "https://tec.openplanner.team/stops/H1vt195a"], ["https://tec.openplanner.team/stops/X741aha", "https://tec.openplanner.team/stops/X741aib"], ["https://tec.openplanner.team/stops/Bmanati2", "https://tec.openplanner.team/stops/H2mg149b"], ["https://tec.openplanner.team/stops/N287aaa", "https://tec.openplanner.team/stops/N287aab"], ["https://tec.openplanner.team/stops/Bgermco1", "https://tec.openplanner.team/stops/Bgermco2"], ["https://tec.openplanner.team/stops/H4av103a", "https://tec.openplanner.team/stops/H4av103b"], ["https://tec.openplanner.team/stops/Ladfran1", "https://tec.openplanner.team/stops/Lvegrap2"], ["https://tec.openplanner.team/stops/N529afb", "https://tec.openplanner.team/stops/N531apa"], ["https://tec.openplanner.team/stops/Llmbouv2", "https://tec.openplanner.team/stops/Llmdavi2"], ["https://tec.openplanner.team/stops/Bsdecdi1", "https://tec.openplanner.team/stops/N526aab"], ["https://tec.openplanner.team/stops/Llgdart4", "https://tec.openplanner.team/stops/LlgguilF"], ["https://tec.openplanner.team/stops/Bquebut2", "https://tec.openplanner.team/stops/Brebcgi1"], ["https://tec.openplanner.team/stops/N209ama", "https://tec.openplanner.team/stops/NL79aaa"], ["https://tec.openplanner.team/stops/X948apa", "https://tec.openplanner.team/stops/X948ara"], ["https://tec.openplanner.team/stops/LHTeg--2", "https://tec.openplanner.team/stops/LHTmc--2"], ["https://tec.openplanner.team/stops/LHTeg--1", "https://tec.openplanner.team/stops/LHTmc--1"], ["https://tec.openplanner.team/stops/N308bca", "https://tec.openplanner.team/stops/N308bcb"], ["https://tec.openplanner.team/stops/X601ccb", "https://tec.openplanner.team/stops/X601ccc"], ["https://tec.openplanner.team/stops/Ccoacie2", "https://tec.openplanner.team/stops/Ccocorb1"], ["https://tec.openplanner.team/stops/Bclgeco1", "https://tec.openplanner.team/stops/Bgisman2"], ["https://tec.openplanner.team/stops/N202afb", "https://tec.openplanner.team/stops/N202ahb"], ["https://tec.openplanner.team/stops/X652afb", "https://tec.openplanner.team/stops/X652agb"], ["https://tec.openplanner.team/stops/LWHwaas3", "https://tec.openplanner.team/stops/LWHwaas4"], ["https://tec.openplanner.team/stops/LBaeg--1", "https://tec.openplanner.team/stops/LBamate2"], ["https://tec.openplanner.team/stops/N564afa", "https://tec.openplanner.team/stops/N580aea"], ["https://tec.openplanner.team/stops/X604aca", "https://tec.openplanner.team/stops/X604acb"], ["https://tec.openplanner.team/stops/X826abb", "https://tec.openplanner.team/stops/X826acb"], ["https://tec.openplanner.team/stops/LEntrix1", "https://tec.openplanner.team/stops/LEnvill1"], ["https://tec.openplanner.team/stops/H1wa144a", "https://tec.openplanner.team/stops/H1wa152a"], ["https://tec.openplanner.team/stops/N351anb", "https://tec.openplanner.team/stops/N357afa"], ["https://tec.openplanner.team/stops/LBDcarr2", "https://tec.openplanner.team/stops/LBDtill1"], ["https://tec.openplanner.team/stops/Cchwarm2", "https://tec.openplanner.team/stops/Cmtneuv2"], ["https://tec.openplanner.team/stops/LBEbelf1", "https://tec.openplanner.team/stops/LTIsain2"], ["https://tec.openplanner.team/stops/LJeeg--2", "https://tec.openplanner.team/stops/LJetrih1"], ["https://tec.openplanner.team/stops/X602aba", "https://tec.openplanner.team/stops/X623ajb"], ["https://tec.openplanner.team/stops/Ljugode1", "https://tec.openplanner.team/stops/Ljuplpr1"], ["https://tec.openplanner.team/stops/X654afa", "https://tec.openplanner.team/stops/X654ahb"], ["https://tec.openplanner.team/stops/Cfmltas2", "https://tec.openplanner.team/stops/Cfmsncb2"], ["https://tec.openplanner.team/stops/LTatult4", "https://tec.openplanner.team/stops/LVnvieg1"], ["https://tec.openplanner.team/stops/X636beb", "https://tec.openplanner.team/stops/X649adc"], ["https://tec.openplanner.team/stops/Bsensab1", "https://tec.openplanner.team/stops/H2se110a"], ["https://tec.openplanner.team/stops/N141aqa", "https://tec.openplanner.team/stops/N141aqb"], ["https://tec.openplanner.team/stops/Cmysncb1", "https://tec.openplanner.team/stops/Cmysncb2"], ["https://tec.openplanner.team/stops/Cthoues2", "https://tec.openplanner.team/stops/Cthpano1"], ["https://tec.openplanner.team/stops/Cgon51", "https://tec.openplanner.team/stops/Cgon52"], ["https://tec.openplanner.team/stops/Bhen5ma2", "https://tec.openplanner.team/stops/Bquegen1"], ["https://tec.openplanner.team/stops/Bcharce1", "https://tec.openplanner.team/stops/Bcrnsge1"], ["https://tec.openplanner.team/stops/LTIgare1", "https://tec.openplanner.team/stops/LTIpres2"], ["https://tec.openplanner.team/stops/X601aaa", "https://tec.openplanner.team/stops/X601adb"], ["https://tec.openplanner.team/stops/Lfhborg1", "https://tec.openplanner.team/stops/Livgera3"], ["https://tec.openplanner.team/stops/LCAeg--2", "https://tec.openplanner.team/stops/LCAwals2"], ["https://tec.openplanner.team/stops/Cgogare2", "https://tec.openplanner.team/stops/Cralimi2"], ["https://tec.openplanner.team/stops/H2sv216a", "https://tec.openplanner.team/stops/H2sv216b"], ["https://tec.openplanner.team/stops/X653abb", "https://tec.openplanner.team/stops/X653aca"], ["https://tec.openplanner.team/stops/H4ss158a", "https://tec.openplanner.team/stops/H5rx101a"], ["https://tec.openplanner.team/stops/H4ag104a", "https://tec.openplanner.team/stops/H4br110a"], ["https://tec.openplanner.team/stops/X923aqa", "https://tec.openplanner.team/stops/X925ama"], ["https://tec.openplanner.team/stops/Bmartil2", "https://tec.openplanner.team/stops/Bvlvmar2"], ["https://tec.openplanner.team/stops/Lviweri1", "https://tec.openplanner.team/stops/Lviweri2"], ["https://tec.openplanner.team/stops/X888agb", "https://tec.openplanner.team/stops/X897aea"], ["https://tec.openplanner.team/stops/N532aaa", "https://tec.openplanner.team/stops/N574agb"], ["https://tec.openplanner.team/stops/Bblaegl1", "https://tec.openplanner.team/stops/Bblamsp1"], ["https://tec.openplanner.team/stops/H4au100b", "https://tec.openplanner.team/stops/H4tp145a"], ["https://tec.openplanner.team/stops/Cmmcver2", "https://tec.openplanner.team/stops/Cmmtomb1"], ["https://tec.openplanner.team/stops/H4ka194a", "https://tec.openplanner.team/stops/H4ob124a"], ["https://tec.openplanner.team/stops/Bthsset1", "https://tec.openplanner.team/stops/Bthsvil2"], ["https://tec.openplanner.team/stops/N539aja", "https://tec.openplanner.team/stops/N539akb"], ["https://tec.openplanner.team/stops/Bclgmev1", "https://tec.openplanner.team/stops/Bclgvse1"], ["https://tec.openplanner.team/stops/N501cwb", "https://tec.openplanner.team/stops/N528aia"], ["https://tec.openplanner.team/stops/H5rx131a", "https://tec.openplanner.team/stops/H5rx132b"], ["https://tec.openplanner.team/stops/X638aba", "https://tec.openplanner.team/stops/X638abb"], ["https://tec.openplanner.team/stops/H4wr175b", "https://tec.openplanner.team/stops/H4wr177a"], ["https://tec.openplanner.team/stops/Bthspha2", "https://tec.openplanner.team/stops/Bthsset1"], ["https://tec.openplanner.team/stops/N502aba", "https://tec.openplanner.team/stops/N503aaa"], ["https://tec.openplanner.team/stops/N425aba", "https://tec.openplanner.team/stops/N426aea"], ["https://tec.openplanner.team/stops/Cgzabau1", "https://tec.openplanner.team/stops/Cgzmira3"], ["https://tec.openplanner.team/stops/H1gh145a", "https://tec.openplanner.team/stops/H1gh157a"], ["https://tec.openplanner.team/stops/H4mo159a", "https://tec.openplanner.team/stops/H4mo190b"], ["https://tec.openplanner.team/stops/Cmacart4", "https://tec.openplanner.team/stops/Cmahotv1"], ["https://tec.openplanner.team/stops/LRGchap2", "https://tec.openplanner.team/stops/LRGgrov2"], ["https://tec.openplanner.team/stops/Bcrncen2", "https://tec.openplanner.team/stops/Bcrngat1"], ["https://tec.openplanner.team/stops/LHFcaqu2", "https://tec.openplanner.team/stops/LHFwaut2"], ["https://tec.openplanner.team/stops/X804bdb", "https://tec.openplanner.team/stops/X804bea"], ["https://tec.openplanner.team/stops/Bovecha1", "https://tec.openplanner.team/stops/Bovetsa2"], ["https://tec.openplanner.team/stops/Bsaupco2", "https://tec.openplanner.team/stops/Bsauvmo2"], ["https://tec.openplanner.team/stops/X765aba", "https://tec.openplanner.team/stops/X765aca"], ["https://tec.openplanner.team/stops/Bbgewal1", "https://tec.openplanner.team/stops/Blmldmi1"], ["https://tec.openplanner.team/stops/H4fo115b", "https://tec.openplanner.team/stops/H4fo116b"], ["https://tec.openplanner.team/stops/LTRlonh2", "https://tec.openplanner.team/stops/LTRsain2"], ["https://tec.openplanner.team/stops/LORgend2", "https://tec.openplanner.team/stops/LORvill3"], ["https://tec.openplanner.team/stops/N501ieb", "https://tec.openplanner.team/stops/N501iey"], ["https://tec.openplanner.team/stops/H4ka174a", "https://tec.openplanner.team/stops/H4ka174b"], ["https://tec.openplanner.team/stops/LgRzent2", "https://tec.openplanner.team/stops/LnUhohe2"], ["https://tec.openplanner.team/stops/LAwfans1", "https://tec.openplanner.team/stops/LAwfans2"], ["https://tec.openplanner.team/stops/X723aia", "https://tec.openplanner.team/stops/X723aib"], ["https://tec.openplanner.team/stops/N505ajb", "https://tec.openplanner.team/stops/N505aka"], ["https://tec.openplanner.team/stops/H4re225b", "https://tec.openplanner.team/stops/H4re226b"], ["https://tec.openplanner.team/stops/H5ar107a", "https://tec.openplanner.team/stops/H5ar127b"], ["https://tec.openplanner.team/stops/LSPecho1", "https://tec.openplanner.team/stops/LSPecho2"], ["https://tec.openplanner.team/stops/N531ana", "https://tec.openplanner.team/stops/N576aia"], ["https://tec.openplanner.team/stops/H2ha142a", "https://tec.openplanner.team/stops/H2hg156a"], ["https://tec.openplanner.team/stops/LMoelno2", "https://tec.openplanner.team/stops/LMovich2"], ["https://tec.openplanner.team/stops/N106aja", "https://tec.openplanner.team/stops/N106ala"], ["https://tec.openplanner.team/stops/LeUbell*", "https://tec.openplanner.team/stops/LeUbell1"], ["https://tec.openplanner.team/stops/X793abb", "https://tec.openplanner.team/stops/X793apb"], ["https://tec.openplanner.team/stops/Cflcoro2", "https://tec.openplanner.team/stops/Cflpost1"], ["https://tec.openplanner.team/stops/LSPClem1", "https://tec.openplanner.team/stops/LSProya1"], ["https://tec.openplanner.team/stops/LrAeife2", "https://tec.openplanner.team/stops/LrAverb2"], ["https://tec.openplanner.team/stops/N122aba", "https://tec.openplanner.team/stops/N123ada"], ["https://tec.openplanner.team/stops/LFsconc1", "https://tec.openplanner.team/stops/LFslign2"], ["https://tec.openplanner.team/stops/X925ala", "https://tec.openplanner.team/stops/X925amb"], ["https://tec.openplanner.team/stops/Ctm4che1", "https://tec.openplanner.team/stops/Ctmmath1"], ["https://tec.openplanner.team/stops/N554afb", "https://tec.openplanner.team/stops/N573aqa"], ["https://tec.openplanner.team/stops/X992aja", "https://tec.openplanner.team/stops/X992ajb"], ["https://tec.openplanner.team/stops/Lpomart2", "https://tec.openplanner.team/stops/Lpoprie2"], ["https://tec.openplanner.team/stops/Bjdspon1", "https://tec.openplanner.team/stops/Bjdssta2"], ["https://tec.openplanner.team/stops/X725aec", "https://tec.openplanner.team/stops/X725aza"], ["https://tec.openplanner.team/stops/X664aia", "https://tec.openplanner.team/stops/X664aic"], ["https://tec.openplanner.team/stops/X750aza", "https://tec.openplanner.team/stops/X794aaa"], ["https://tec.openplanner.team/stops/H3bi107a", "https://tec.openplanner.team/stops/H3bi107b"], ["https://tec.openplanner.team/stops/LHAlacr2", "https://tec.openplanner.team/stops/LHAleru2"], ["https://tec.openplanner.team/stops/X640aib", "https://tec.openplanner.team/stops/X640aub"], ["https://tec.openplanner.team/stops/H2fa105b", "https://tec.openplanner.team/stops/H2fa109b"], ["https://tec.openplanner.team/stops/X669aea", "https://tec.openplanner.team/stops/X672aic"], ["https://tec.openplanner.team/stops/Lvemahe2", "https://tec.openplanner.team/stops/Lvesomm1"], ["https://tec.openplanner.team/stops/X806acb", "https://tec.openplanner.team/stops/X806adb"], ["https://tec.openplanner.team/stops/Bmelegl1", "https://tec.openplanner.team/stops/Bmelsab1"], ["https://tec.openplanner.team/stops/Blincal2", "https://tec.openplanner.team/stops/Blincoo2"], ["https://tec.openplanner.team/stops/H1mb138b", "https://tec.openplanner.team/stops/H1mx123b"], ["https://tec.openplanner.team/stops/X837afb", "https://tec.openplanner.team/stops/X837aga"], ["https://tec.openplanner.team/stops/X609aba", "https://tec.openplanner.team/stops/X609abb"], ["https://tec.openplanner.team/stops/H2ch102a", "https://tec.openplanner.team/stops/H2ch104a"], ["https://tec.openplanner.team/stops/H4or113a", "https://tec.openplanner.team/stops/H4or114a"], ["https://tec.openplanner.team/stops/X670aba", "https://tec.openplanner.team/stops/X670aib"], ["https://tec.openplanner.team/stops/LLxalle1", "https://tec.openplanner.team/stops/LVIcarm1"], ["https://tec.openplanner.team/stops/X890aab", "https://tec.openplanner.team/stops/X890afa"], ["https://tec.openplanner.team/stops/LTibarb1", "https://tec.openplanner.team/stops/LTipont1"], ["https://tec.openplanner.team/stops/X604ama", "https://tec.openplanner.team/stops/X604amb"], ["https://tec.openplanner.team/stops/N308aea", "https://tec.openplanner.team/stops/N308ahb"], ["https://tec.openplanner.team/stops/H5at116a", "https://tec.openplanner.team/stops/H5at116d"], ["https://tec.openplanner.team/stops/LGEpt--1", "https://tec.openplanner.team/stops/LLYplac1"], ["https://tec.openplanner.team/stops/Bgzdgth1", "https://tec.openplanner.team/stops/Bgzdpis1"], ["https://tec.openplanner.team/stops/H4ty274a", "https://tec.openplanner.team/stops/H4ty308c"], ["https://tec.openplanner.team/stops/Lceegth2", "https://tec.openplanner.team/stops/Lcepepi2"], ["https://tec.openplanner.team/stops/H1pa103a", "https://tec.openplanner.team/stops/H1pa103b"], ["https://tec.openplanner.team/stops/N555aba", "https://tec.openplanner.team/stops/N573aia"], ["https://tec.openplanner.team/stops/H3so160b", "https://tec.openplanner.team/stops/H3so177a"], ["https://tec.openplanner.team/stops/N519adb", "https://tec.openplanner.team/stops/N519ara"], ["https://tec.openplanner.team/stops/LFCalte2", "https://tec.openplanner.team/stops/LFCvoer1"], ["https://tec.openplanner.team/stops/Ccigill3", "https://tec.openplanner.team/stops/Ccisart1"], ["https://tec.openplanner.team/stops/LAMvert1", "https://tec.openplanner.team/stops/LOmecol1"], ["https://tec.openplanner.team/stops/LCOcarr1", "https://tec.openplanner.team/stops/LCOeg--2"], ["https://tec.openplanner.team/stops/Ccyga4", "https://tec.openplanner.team/stops/Ccyga6"], ["https://tec.openplanner.team/stops/Bronn391", "https://tec.openplanner.team/stops/Bvirfpo2"], ["https://tec.openplanner.team/stops/N528aob", "https://tec.openplanner.team/stops/N538aab"], ["https://tec.openplanner.team/stops/Bnivace1", "https://tec.openplanner.team/stops/Bnivace2"], ["https://tec.openplanner.team/stops/H4ty270a", "https://tec.openplanner.team/stops/H4ty359b"], ["https://tec.openplanner.team/stops/H3lr106b", "https://tec.openplanner.team/stops/H3th133b"], ["https://tec.openplanner.team/stops/H2ca102a", "https://tec.openplanner.team/stops/H2ca111b"], ["https://tec.openplanner.team/stops/X790afb", "https://tec.openplanner.team/stops/X790aia"], ["https://tec.openplanner.team/stops/LSGec--2", "https://tec.openplanner.team/stops/LSGhagn1"], ["https://tec.openplanner.team/stops/LOdbuis1", "https://tec.openplanner.team/stops/LOdmonu3"], ["https://tec.openplanner.team/stops/H1wa142a", "https://tec.openplanner.team/stops/H1wa147b"], ["https://tec.openplanner.team/stops/Llgamer2", "https://tec.openplanner.team/stops/Llgoutr3"], ["https://tec.openplanner.team/stops/N353afb", "https://tec.openplanner.team/stops/N353ahb"], ["https://tec.openplanner.team/stops/N135afb", "https://tec.openplanner.team/stops/N135aob"], ["https://tec.openplanner.team/stops/H4fr139a", "https://tec.openplanner.team/stops/H4ma418a"], ["https://tec.openplanner.team/stops/X618apa", "https://tec.openplanner.team/stops/X696ada"], ["https://tec.openplanner.team/stops/LAVstat2", "https://tec.openplanner.team/stops/LLRvill1"], ["https://tec.openplanner.team/stops/N521ala", "https://tec.openplanner.team/stops/N525aua"], ["https://tec.openplanner.team/stops/LWEgend1", "https://tec.openplanner.team/stops/LWEgend2"], ["https://tec.openplanner.team/stops/LLAeg--2", "https://tec.openplanner.team/stops/LLAvi651"], ["https://tec.openplanner.team/stops/LbOlier1", "https://tec.openplanner.team/stops/LbOre3b2"], ["https://tec.openplanner.team/stops/Caiegli1", "https://tec.openplanner.team/stops/Caiegli2"], ["https://tec.openplanner.team/stops/Bplnfpa2", "https://tec.openplanner.team/stops/Clpalli1"], ["https://tec.openplanner.team/stops/N312aaa", "https://tec.openplanner.team/stops/N312aab"], ["https://tec.openplanner.team/stops/Bwagcus1", "https://tec.openplanner.team/stops/Bwagcus2"], ["https://tec.openplanner.team/stops/H4bw100a", "https://tec.openplanner.team/stops/H4bw101b"], ["https://tec.openplanner.team/stops/LMNeg--1", "https://tec.openplanner.team/stops/LMNpt--1"], ["https://tec.openplanner.team/stops/LHegame4", "https://tec.openplanner.team/stops/LHehacc2"], ["https://tec.openplanner.team/stops/N201aga", "https://tec.openplanner.team/stops/N201awa"], ["https://tec.openplanner.team/stops/LPRfour2", "https://tec.openplanner.team/stops/LTRcarr1"], ["https://tec.openplanner.team/stops/X661aab", "https://tec.openplanner.team/stops/X839aca"], ["https://tec.openplanner.team/stops/LaNmuhl3", "https://tec.openplanner.team/stops/LaNmuhl4"], ["https://tec.openplanner.team/stops/H1hn204a", "https://tec.openplanner.team/stops/H1hn210a"], ["https://tec.openplanner.team/stops/N501apb", "https://tec.openplanner.team/stops/N501gba"], ["https://tec.openplanner.team/stops/Lmldama2", "https://tec.openplanner.team/stops/Lpocent1"], ["https://tec.openplanner.team/stops/X639aeb", "https://tec.openplanner.team/stops/X640asb"], ["https://tec.openplanner.team/stops/H4bx108b", "https://tec.openplanner.team/stops/H4ep129a"], ["https://tec.openplanner.team/stops/NL57afa", "https://tec.openplanner.team/stops/NL57aia"], ["https://tec.openplanner.team/stops/Ccinali1", "https://tec.openplanner.team/stops/Cmllecl4"], ["https://tec.openplanner.team/stops/N206aaa", "https://tec.openplanner.team/stops/N221aab"], ["https://tec.openplanner.team/stops/NH01ata", "https://tec.openplanner.team/stops/NH01atb"], ["https://tec.openplanner.team/stops/Bhtibru1", "https://tec.openplanner.team/stops/Bhtibru2"], ["https://tec.openplanner.team/stops/LNIbas-1", "https://tec.openplanner.team/stops/LSZstoc2"], ["https://tec.openplanner.team/stops/H4ka190a", "https://tec.openplanner.team/stops/H4ka190b"], ["https://tec.openplanner.team/stops/X740aca", "https://tec.openplanner.team/stops/X912adb"], ["https://tec.openplanner.team/stops/LWepost3", "https://tec.openplanner.team/stops/LWepost4"], ["https://tec.openplanner.team/stops/LlSzoll1", "https://tec.openplanner.team/stops/LlSzoll2"], ["https://tec.openplanner.team/stops/Clshafa1", "https://tec.openplanner.team/stops/Clsstpi1"], ["https://tec.openplanner.team/stops/X801bjb", "https://tec.openplanner.team/stops/X801bka"], ["https://tec.openplanner.team/stops/Brsrber2", "https://tec.openplanner.team/stops/Brsrmon1"], ["https://tec.openplanner.team/stops/X789ada", "https://tec.openplanner.team/stops/X789afa"], ["https://tec.openplanner.team/stops/N425ada", "https://tec.openplanner.team/stops/N426aea"], ["https://tec.openplanner.team/stops/X901asa", "https://tec.openplanner.team/stops/X901asb"], ["https://tec.openplanner.team/stops/Cvpchat2", "https://tec.openplanner.team/stops/Cvpsncb2"], ["https://tec.openplanner.team/stops/Lvoec--2", "https://tec.openplanner.team/stops/Lvoeg--2"], ["https://tec.openplanner.team/stops/X615ada", "https://tec.openplanner.team/stops/X681aia"], ["https://tec.openplanner.team/stops/N423afa", "https://tec.openplanner.team/stops/N423afb"], ["https://tec.openplanner.team/stops/H4ty318b", "https://tec.openplanner.team/stops/H4ty324c"], ["https://tec.openplanner.team/stops/X775ajb", "https://tec.openplanner.team/stops/X775ana"], ["https://tec.openplanner.team/stops/Bvirflu1", "https://tec.openplanner.team/stops/Bvirvol2"], ["https://tec.openplanner.team/stops/Lhubriq1", "https://tec.openplanner.team/stops/Lhuwaid2"], ["https://tec.openplanner.team/stops/H3bi106b", "https://tec.openplanner.team/stops/H3bi113b"], ["https://tec.openplanner.team/stops/X733aja", "https://tec.openplanner.team/stops/X734aqb"], ["https://tec.openplanner.team/stops/X808adb", "https://tec.openplanner.team/stops/X811ada"], ["https://tec.openplanner.team/stops/H2ca108a", "https://tec.openplanner.team/stops/H2ca116b"], ["https://tec.openplanner.team/stops/N501loa", "https://tec.openplanner.team/stops/N528aob"], ["https://tec.openplanner.team/stops/Bbghcar2", "https://tec.openplanner.team/stops/Bbghpln1"], ["https://tec.openplanner.team/stops/N501hjb", "https://tec.openplanner.team/stops/N501lca"], ["https://tec.openplanner.team/stops/N501hma", "https://tec.openplanner.team/stops/N501hmb"], ["https://tec.openplanner.team/stops/Bpiehte1", "https://tec.openplanner.team/stops/Bpiepnd1"], ["https://tec.openplanner.team/stops/Bgrmfon1", "https://tec.openplanner.team/stops/Bgrmpsn2"], ["https://tec.openplanner.team/stops/Lseberg2", "https://tec.openplanner.team/stops/Lsebuil2"], ["https://tec.openplanner.team/stops/Bblabos2", "https://tec.openplanner.team/stops/Bblasmo2"], ["https://tec.openplanner.team/stops/H1ms294a", "https://tec.openplanner.team/stops/H1ms294c"], ["https://tec.openplanner.team/stops/H1br130b", "https://tec.openplanner.team/stops/H1br131a"], ["https://tec.openplanner.team/stops/H1me117d", "https://tec.openplanner.team/stops/H1me117e"], ["https://tec.openplanner.team/stops/N218acc", "https://tec.openplanner.team/stops/N301aka"], ["https://tec.openplanner.team/stops/Cgxbeau1", "https://tec.openplanner.team/stops/Cgxwaut2"], ["https://tec.openplanner.team/stops/LOljean1", "https://tec.openplanner.team/stops/LOmvill4"], ["https://tec.openplanner.team/stops/LBMecol2", "https://tec.openplanner.team/stops/X982bqb"], ["https://tec.openplanner.team/stops/LHEches3", "https://tec.openplanner.team/stops/LHEpriv1"], ["https://tec.openplanner.team/stops/X750bgb", "https://tec.openplanner.team/stops/X750bna"], ["https://tec.openplanner.team/stops/Bwavbwa2", "https://tec.openplanner.team/stops/Bwavche2"], ["https://tec.openplanner.team/stops/N501ana", "https://tec.openplanner.team/stops/N501beb"], ["https://tec.openplanner.team/stops/N207add", "https://tec.openplanner.team/stops/N209ama"], ["https://tec.openplanner.team/stops/X757ahb", "https://tec.openplanner.team/stops/X757aja"], ["https://tec.openplanner.team/stops/Cmtgrim1", "https://tec.openplanner.team/stops/Cmtstan2"], ["https://tec.openplanner.team/stops/X833aab", "https://tec.openplanner.team/stops/X833abb"], ["https://tec.openplanner.team/stops/Llgjoie1", "https://tec.openplanner.team/stops/Llgjoie4"], ["https://tec.openplanner.team/stops/X837ada", "https://tec.openplanner.team/stops/X837adb"], ["https://tec.openplanner.team/stops/Bsmgegl1", "https://tec.openplanner.team/stops/Bsmgegl2"], ["https://tec.openplanner.team/stops/H2pe154a", "https://tec.openplanner.team/stops/H3bi106b"], ["https://tec.openplanner.team/stops/H1ni316b", "https://tec.openplanner.team/stops/H1ni319a"], ["https://tec.openplanner.team/stops/X837aca", "https://tec.openplanner.team/stops/X837afb"], ["https://tec.openplanner.team/stops/H1ms282a", "https://tec.openplanner.team/stops/H1ss352b"], ["https://tec.openplanner.team/stops/H1wa156a", "https://tec.openplanner.team/stops/H1wa160a"], ["https://tec.openplanner.team/stops/LGAholl2", "https://tec.openplanner.team/stops/LHggeer1"], ["https://tec.openplanner.team/stops/H1ht128a", "https://tec.openplanner.team/stops/H1ht133a"], ["https://tec.openplanner.team/stops/Bwavlav1", "https://tec.openplanner.team/stops/Bwavrij1"], ["https://tec.openplanner.team/stops/N305aab", "https://tec.openplanner.team/stops/N305acb"], ["https://tec.openplanner.team/stops/Cmlfstt1", "https://tec.openplanner.team/stops/Cmlthym2"], ["https://tec.openplanner.team/stops/Blaneli2", "https://tec.openplanner.team/stops/Blankal3"], ["https://tec.openplanner.team/stops/H1hw119b", "https://tec.openplanner.team/stops/H1hw122b"], ["https://tec.openplanner.team/stops/H1mh114a", "https://tec.openplanner.team/stops/H1mh116a"], ["https://tec.openplanner.team/stops/X952afa", "https://tec.openplanner.team/stops/X954adb"], ["https://tec.openplanner.team/stops/H4ba102b", "https://tec.openplanner.team/stops/H4ml209b"], ["https://tec.openplanner.team/stops/Canmonu3", "https://tec.openplanner.team/stops/Canrsta1"], ["https://tec.openplanner.team/stops/H5wo133a", "https://tec.openplanner.team/stops/H5wo134a"], ["https://tec.openplanner.team/stops/N121aaa", "https://tec.openplanner.team/stops/N121aea"], ["https://tec.openplanner.team/stops/Btlbegl1", "https://tec.openplanner.team/stops/Btlbtbe3"], ["https://tec.openplanner.team/stops/Lgrclos1", "https://tec.openplanner.team/stops/Lgreg--2"], ["https://tec.openplanner.team/stops/N260aaa", "https://tec.openplanner.team/stops/N270aga"], ["https://tec.openplanner.team/stops/Lhrbass1", "https://tec.openplanner.team/stops/Lhrdron1"], ["https://tec.openplanner.team/stops/LHFec--3", "https://tec.openplanner.team/stops/LHFec--4"], ["https://tec.openplanner.team/stops/Bsgebou1", "https://tec.openplanner.team/stops/Bsgebou2"], ["https://tec.openplanner.team/stops/Cptccas1", "https://tec.openplanner.team/stops/Cptplac3"], ["https://tec.openplanner.team/stops/X879aba", "https://tec.openplanner.team/stops/X879abb"], ["https://tec.openplanner.team/stops/LTicime2", "https://tec.openplanner.team/stops/LTigera2"], ["https://tec.openplanner.team/stops/H4hx110b", "https://tec.openplanner.team/stops/H4hx117a"], ["https://tec.openplanner.team/stops/N207aab", "https://tec.openplanner.team/stops/N209alb"], ["https://tec.openplanner.team/stops/LMAbass1", "https://tec.openplanner.team/stops/LMAchod2"], ["https://tec.openplanner.team/stops/N101adc", "https://tec.openplanner.team/stops/N118aob"], ["https://tec.openplanner.team/stops/N351aja", "https://tec.openplanner.team/stops/N351ajc"], ["https://tec.openplanner.team/stops/X801adb", "https://tec.openplanner.team/stops/X801afb"], ["https://tec.openplanner.team/stops/H2sb223b", "https://tec.openplanner.team/stops/H2sb239b"], ["https://tec.openplanner.team/stops/LJSeg--2", "https://tec.openplanner.team/stops/LJSforg2"], ["https://tec.openplanner.team/stops/N512ana", "https://tec.openplanner.team/stops/N512aqb"], ["https://tec.openplanner.team/stops/X774aga", "https://tec.openplanner.team/stops/X775aaa"], ["https://tec.openplanner.team/stops/Blaneli1", "https://tec.openplanner.team/stops/LLaover3"], ["https://tec.openplanner.team/stops/H1si153b", "https://tec.openplanner.team/stops/H1si163a"], ["https://tec.openplanner.team/stops/LHUamer1", "https://tec.openplanner.team/stops/LHUbatt1"], ["https://tec.openplanner.team/stops/X731agb", "https://tec.openplanner.team/stops/X731akb"], ["https://tec.openplanner.team/stops/LBRpier1", "https://tec.openplanner.team/stops/LLRrape4"], ["https://tec.openplanner.team/stops/Clrrhau2", "https://tec.openplanner.team/stops/Clrwesp2"], ["https://tec.openplanner.team/stops/Bmanati1", "https://tec.openplanner.team/stops/Bmanati2"], ["https://tec.openplanner.team/stops/H4av106a", "https://tec.openplanner.team/stops/H4wt160b"], ["https://tec.openplanner.team/stops/N577agb", "https://tec.openplanner.team/stops/N577ajb"], ["https://tec.openplanner.team/stops/N516ahb", "https://tec.openplanner.team/stops/N516aib"], ["https://tec.openplanner.team/stops/Cflecga1", "https://tec.openplanner.team/stops/Cflvxca1"], ["https://tec.openplanner.team/stops/Lmimili1", "https://tec.openplanner.team/stops/Lmimili4"], ["https://tec.openplanner.team/stops/NL74aga", "https://tec.openplanner.team/stops/NL74aha"], ["https://tec.openplanner.team/stops/LTotrui1", "https://tec.openplanner.team/stops/LTotrui2"], ["https://tec.openplanner.team/stops/Cmlbulp3", "https://tec.openplanner.team/stops/Cmlstni2"], ["https://tec.openplanner.team/stops/LBNeup22", "https://tec.openplanner.team/stops/LBNplei1"], ["https://tec.openplanner.team/stops/LClange2", "https://tec.openplanner.team/stops/LCljose1"], ["https://tec.openplanner.team/stops/X766aeb", "https://tec.openplanner.team/stops/X766afb"], ["https://tec.openplanner.team/stops/X923aea", "https://tec.openplanner.team/stops/X923afa"], ["https://tec.openplanner.team/stops/Lemlami2", "https://tec.openplanner.team/stops/Lemsart2"], ["https://tec.openplanner.team/stops/Cvretan1", "https://tec.openplanner.team/stops/Cvretan2"], ["https://tec.openplanner.team/stops/N201ahb", "https://tec.openplanner.team/stops/N201atb"], ["https://tec.openplanner.team/stops/H1em105a", "https://tec.openplanner.team/stops/H1em111c"], ["https://tec.openplanner.team/stops/Bhenard1", "https://tec.openplanner.team/stops/Bhengri1"], ["https://tec.openplanner.team/stops/Llgcamp2", "https://tec.openplanner.team/stops/Llgpire2"], ["https://tec.openplanner.team/stops/Bgnpchb1", "https://tec.openplanner.team/stops/Cgnquer1"], ["https://tec.openplanner.team/stops/N501dbb", "https://tec.openplanner.team/stops/N528aja"], ["https://tec.openplanner.team/stops/N226ada", "https://tec.openplanner.team/stops/N367ada"], ["https://tec.openplanner.team/stops/N235ada", "https://tec.openplanner.team/stops/N235afb"], ["https://tec.openplanner.team/stops/H2hg145b", "https://tec.openplanner.team/stops/H2hg149b"], ["https://tec.openplanner.team/stops/Brixaug1", "https://tec.openplanner.team/stops/Brixaug3"], ["https://tec.openplanner.team/stops/LrcarsT2", "https://tec.openplanner.team/stops/Lrcprin1"], ["https://tec.openplanner.team/stops/H5bl123a", "https://tec.openplanner.team/stops/H5bl124b"], ["https://tec.openplanner.team/stops/Bernpon2", "https://tec.openplanner.team/stops/Bgemrom4"], ["https://tec.openplanner.team/stops/X638alb", "https://tec.openplanner.team/stops/X639aea"], ["https://tec.openplanner.team/stops/H1au112a", "https://tec.openplanner.team/stops/H1au114a"], ["https://tec.openplanner.team/stops/X783adb", "https://tec.openplanner.team/stops/X784aja"], ["https://tec.openplanner.team/stops/H4rc232a", "https://tec.openplanner.team/stops/H4rc232b"], ["https://tec.openplanner.team/stops/Lstamph2", "https://tec.openplanner.team/stops/Lstetud1"], ["https://tec.openplanner.team/stops/N548aab", "https://tec.openplanner.team/stops/N569aea"], ["https://tec.openplanner.team/stops/X896abb", "https://tec.openplanner.team/stops/X896adb"], ["https://tec.openplanner.team/stops/H4gu109a", "https://tec.openplanner.team/stops/H4we134a"], ["https://tec.openplanner.team/stops/Cblsall2", "https://tec.openplanner.team/stops/Cslegli2"], ["https://tec.openplanner.team/stops/Btubhoq2", "https://tec.openplanner.team/stops/Btubmar1"], ["https://tec.openplanner.team/stops/X662anb", "https://tec.openplanner.team/stops/X662aoa"], ["https://tec.openplanner.team/stops/Brsgecu1", "https://tec.openplanner.team/stops/Brsgpbo1"], ["https://tec.openplanner.team/stops/N232axa", "https://tec.openplanner.team/stops/N232aya"], ["https://tec.openplanner.team/stops/LAIrout2", "https://tec.openplanner.team/stops/LSCchap1"], ["https://tec.openplanner.team/stops/Croplom3", "https://tec.openplanner.team/stops/Croplom5"], ["https://tec.openplanner.team/stops/Bblmwma2", "https://tec.openplanner.team/stops/Bwlhppg4"], ["https://tec.openplanner.team/stops/N539apb", "https://tec.openplanner.team/stops/N539aqa"], ["https://tec.openplanner.team/stops/Lghprea1", "https://tec.openplanner.team/stops/Lghprea4"], ["https://tec.openplanner.team/stops/Llgavoc1", "https://tec.openplanner.team/stops/LlgnicT1"], ["https://tec.openplanner.team/stops/H4es108b", "https://tec.openplanner.team/stops/H4es113a"], ["https://tec.openplanner.team/stops/Bllncyc2", "https://tec.openplanner.team/stops/Bllnein3"], ["https://tec.openplanner.team/stops/N510aab", "https://tec.openplanner.team/stops/N510abb"], ["https://tec.openplanner.team/stops/LHAprei2", "https://tec.openplanner.team/stops/LHAvall1"], ["https://tec.openplanner.team/stops/Bgdhpco1", "https://tec.openplanner.team/stops/Bthspha1"], ["https://tec.openplanner.team/stops/N535aib", "https://tec.openplanner.team/stops/N535aub"], ["https://tec.openplanner.team/stops/X908acb", "https://tec.openplanner.team/stops/X908adb"], ["https://tec.openplanner.team/stops/X390aka", "https://tec.openplanner.team/stops/X390akb"], ["https://tec.openplanner.team/stops/X804abb", "https://tec.openplanner.team/stops/X804bka"], ["https://tec.openplanner.team/stops/LdE179-1", "https://tec.openplanner.team/stops/LdEschw1"], ["https://tec.openplanner.team/stops/LLrbuis1", "https://tec.openplanner.team/stops/LLrisa-*"], ["https://tec.openplanner.team/stops/H4ty310a", "https://tec.openplanner.team/stops/H4ty312a"], ["https://tec.openplanner.team/stops/Broncli1", "https://tec.openplanner.team/stops/Bronfou1"], ["https://tec.openplanner.team/stops/X758aaa", "https://tec.openplanner.team/stops/X758abb"], ["https://tec.openplanner.team/stops/N553aia", "https://tec.openplanner.team/stops/N553aib"], ["https://tec.openplanner.team/stops/LELchap1", "https://tec.openplanner.team/stops/LHCquat4"], ["https://tec.openplanner.team/stops/LBLplas1", "https://tec.openplanner.team/stops/LBLplas2"], ["https://tec.openplanner.team/stops/Bbsicen1", "https://tec.openplanner.team/stops/Bbsicen2"], ["https://tec.openplanner.team/stops/Ldifoye2", "https://tec.openplanner.team/stops/Lprorph1"], ["https://tec.openplanner.team/stops/Lra4bra2", "https://tec.openplanner.team/stops/Lrafusi2"], ["https://tec.openplanner.team/stops/N543ala", "https://tec.openplanner.team/stops/N543cga"], ["https://tec.openplanner.team/stops/N562bha", "https://tec.openplanner.team/stops/N562bhb"], ["https://tec.openplanner.team/stops/Baegd741", "https://tec.openplanner.team/stops/Bnvmfba1"], ["https://tec.openplanner.team/stops/H4oq226b", "https://tec.openplanner.team/stops/H4oq226c"], ["https://tec.openplanner.team/stops/H4mb202a", "https://tec.openplanner.team/stops/H4va231a"], ["https://tec.openplanner.team/stops/H4bn100a", "https://tec.openplanner.team/stops/H4ws158a"], ["https://tec.openplanner.team/stops/Lgrlimi1", "https://tec.openplanner.team/stops/Llgvinc2"], ["https://tec.openplanner.team/stops/Cmbcime4", "https://tec.openplanner.team/stops/Crclorc1"], ["https://tec.openplanner.team/stops/X662abb", "https://tec.openplanner.team/stops/X662ata"], ["https://tec.openplanner.team/stops/N515aob", "https://tec.openplanner.team/stops/N515asb"], ["https://tec.openplanner.team/stops/N229akc", "https://tec.openplanner.team/stops/N229apb"], ["https://tec.openplanner.team/stops/H4lp121a", "https://tec.openplanner.team/stops/H4lp123b"], ["https://tec.openplanner.team/stops/LWAgare*", "https://tec.openplanner.team/stops/LWAlong3"], ["https://tec.openplanner.team/stops/X746aca", "https://tec.openplanner.team/stops/X746alb"], ["https://tec.openplanner.team/stops/LLOchpl2", "https://tec.openplanner.team/stops/LLOspin2"], ["https://tec.openplanner.team/stops/X669ahb", "https://tec.openplanner.team/stops/X672aic"], ["https://tec.openplanner.team/stops/Blingar3", "https://tec.openplanner.team/stops/Bracrpe2"], ["https://tec.openplanner.team/stops/X721alb", "https://tec.openplanner.team/stops/X721arb"], ["https://tec.openplanner.team/stops/N352adb", "https://tec.openplanner.team/stops/N352aea"], ["https://tec.openplanner.team/stops/LHTmonu1", "https://tec.openplanner.team/stops/LHTmonu2"], ["https://tec.openplanner.team/stops/H4ch118a", "https://tec.openplanner.team/stops/H4ch119b"], ["https://tec.openplanner.team/stops/N232cda", "https://tec.openplanner.team/stops/N232cdb"], ["https://tec.openplanner.team/stops/Lhrpepi1", "https://tec.openplanner.team/stops/Ljuauto2"], ["https://tec.openplanner.team/stops/Bbcoroy2", "https://tec.openplanner.team/stops/Bhenfla2"], ["https://tec.openplanner.team/stops/X880agb", "https://tec.openplanner.team/stops/X880ahb"], ["https://tec.openplanner.team/stops/LHmferm2", "https://tec.openplanner.team/stops/LLbrecu1"], ["https://tec.openplanner.team/stops/NL73ada", "https://tec.openplanner.team/stops/NL73adb"], ["https://tec.openplanner.team/stops/LGObeth1", "https://tec.openplanner.team/stops/LGObeth2"], ["https://tec.openplanner.team/stops/X982bfa", "https://tec.openplanner.team/stops/X982bmb"], ["https://tec.openplanner.team/stops/X818aga", "https://tec.openplanner.team/stops/X820aab"], ["https://tec.openplanner.team/stops/X615axa", "https://tec.openplanner.team/stops/X615bgb"], ["https://tec.openplanner.team/stops/X612abb", "https://tec.openplanner.team/stops/X612ada"], ["https://tec.openplanner.team/stops/Cchhopi1", "https://tec.openplanner.team/stops/Cchwate2"], ["https://tec.openplanner.team/stops/H1ch100a", "https://tec.openplanner.team/stops/H1ch106b"], ["https://tec.openplanner.team/stops/H4ty345a", "https://tec.openplanner.team/stops/H4ty356d"], ["https://tec.openplanner.team/stops/H1ha184a", "https://tec.openplanner.team/stops/H1ss348b"], ["https://tec.openplanner.team/stops/N232anb", "https://tec.openplanner.team/stops/N232aob"], ["https://tec.openplanner.team/stops/LCSpoud2", "https://tec.openplanner.team/stops/LENoule2"], ["https://tec.openplanner.team/stops/LFTeg--2", "https://tec.openplanner.team/stops/LNAbois2"], ["https://tec.openplanner.team/stops/LAWaube2", "https://tec.openplanner.team/stops/LAWcite1"], ["https://tec.openplanner.team/stops/LCTgare3", "https://tec.openplanner.team/stops/LCTmonu2"], ["https://tec.openplanner.team/stops/X784ada", "https://tec.openplanner.team/stops/X784aeb"], ["https://tec.openplanner.team/stops/H4br110a", "https://tec.openplanner.team/stops/H4pe124a"], ["https://tec.openplanner.team/stops/Bnivfra1", "https://tec.openplanner.team/stops/Bnivfra2"], ["https://tec.openplanner.team/stops/Lflcle-1", "https://tec.openplanner.team/stops/Lflcle-2"], ["https://tec.openplanner.team/stops/Lsmcime*", "https://tec.openplanner.team/stops/Lsmrcim1"], ["https://tec.openplanner.team/stops/X758agb", "https://tec.openplanner.team/stops/X758aib"], ["https://tec.openplanner.team/stops/H1wi147a", "https://tec.openplanner.team/stops/H1wi147b"], ["https://tec.openplanner.team/stops/LETsaiv2", "https://tec.openplanner.team/stops/LETtemp2"], ["https://tec.openplanner.team/stops/LsVgend2", "https://tec.openplanner.team/stops/LsVviel2"], ["https://tec.openplanner.team/stops/Btstbbu1", "https://tec.openplanner.team/stops/N524aca"], ["https://tec.openplanner.team/stops/LMnlogi2", "https://tec.openplanner.team/stops/N222aca"], ["https://tec.openplanner.team/stops/N101ajb", "https://tec.openplanner.team/stops/N101ama"], ["https://tec.openplanner.team/stops/X756aea", "https://tec.openplanner.team/stops/X756aeb"], ["https://tec.openplanner.team/stops/X601aga", "https://tec.openplanner.team/stops/X601aib"], ["https://tec.openplanner.team/stops/Llgwiar1", "https://tec.openplanner.team/stops/Llgwiar2"], ["https://tec.openplanner.team/stops/Cctpche2", "https://tec.openplanner.team/stops/NC44aeb"], ["https://tec.openplanner.team/stops/Cfrgare3", "https://tec.openplanner.team/stops/Cfrgare4"], ["https://tec.openplanner.team/stops/Lsemaqu1", "https://tec.openplanner.team/stops/Lseruis2"], ["https://tec.openplanner.team/stops/N518aab", "https://tec.openplanner.team/stops/N520aib"], ["https://tec.openplanner.team/stops/Bmrshan1", "https://tec.openplanner.team/stops/Cgncail2"], ["https://tec.openplanner.team/stops/H4ty341b", "https://tec.openplanner.team/stops/H4ty358a"], ["https://tec.openplanner.team/stops/H1gr120a", "https://tec.openplanner.team/stops/H1mk110b"], ["https://tec.openplanner.team/stops/Ladstat2", "https://tec.openplanner.team/stops/LThplen1"], ["https://tec.openplanner.team/stops/Btslcel1", "https://tec.openplanner.team/stops/Bwlhswc2"], ["https://tec.openplanner.team/stops/X660acb", "https://tec.openplanner.team/stops/X660aia"], ["https://tec.openplanner.team/stops/Cplcite1", "https://tec.openplanner.team/stops/Cplcite2"], ["https://tec.openplanner.team/stops/NC14amb", "https://tec.openplanner.team/stops/NC14aob"], ["https://tec.openplanner.team/stops/Bperalv2", "https://tec.openplanner.team/stops/Bpergar3"], ["https://tec.openplanner.team/stops/N894abb", "https://tec.openplanner.team/stops/N894aea"], ["https://tec.openplanner.team/stops/LGLbrus2", "https://tec.openplanner.team/stops/LSLdall2"], ["https://tec.openplanner.team/stops/N525ata", "https://tec.openplanner.team/stops/N526abb"], ["https://tec.openplanner.team/stops/LVEjard2", "https://tec.openplanner.team/stops/LVEstat2"], ["https://tec.openplanner.team/stops/LHrreal1", "https://tec.openplanner.team/stops/LHseg--1"], ["https://tec.openplanner.team/stops/LROchap2", "https://tec.openplanner.team/stops/LROhaie2"], ["https://tec.openplanner.team/stops/X941abb", "https://tec.openplanner.team/stops/X941aea"], ["https://tec.openplanner.team/stops/LVIsouv1", "https://tec.openplanner.team/stops/LVIsouv3"], ["https://tec.openplanner.team/stops/LBEabba1", "https://tec.openplanner.team/stops/LBEabbe2"], ["https://tec.openplanner.team/stops/Bwatbce1", "https://tec.openplanner.team/stops/Bwatnro2"], ["https://tec.openplanner.team/stops/N519aoa", "https://tec.openplanner.team/stops/N519apa"], ["https://tec.openplanner.team/stops/LSOathe1", "https://tec.openplanner.team/stops/LSOfech1"], ["https://tec.openplanner.team/stops/Bnivphm2", "https://tec.openplanner.team/stops/Bnivtra2"], ["https://tec.openplanner.team/stops/LOrchau1", "https://tec.openplanner.team/stops/LOrpont2"], ["https://tec.openplanner.team/stops/N204acb", "https://tec.openplanner.team/stops/N205abb"], ["https://tec.openplanner.team/stops/H4ef164a", "https://tec.openplanner.team/stops/H4fa127b"], ["https://tec.openplanner.team/stops/Lan14ve1", "https://tec.openplanner.team/stops/Llgnani2"], ["https://tec.openplanner.team/stops/LEMfort2", "https://tec.openplanner.team/stops/LWOcomm2"], ["https://tec.openplanner.team/stops/LPOleli2", "https://tec.openplanner.team/stops/LSdbvue1"], ["https://tec.openplanner.team/stops/LORcomb1", "https://tec.openplanner.team/stops/LORec--*"], ["https://tec.openplanner.team/stops/H4av106d", "https://tec.openplanner.team/stops/H4ff121b"], ["https://tec.openplanner.team/stops/N506bab", "https://tec.openplanner.team/stops/N506bmb"], ["https://tec.openplanner.team/stops/N343amb", "https://tec.openplanner.team/stops/N343ana"], ["https://tec.openplanner.team/stops/H1fr113a", "https://tec.openplanner.team/stops/H1fr125a"], ["https://tec.openplanner.team/stops/LHUeuro2", "https://tec.openplanner.team/stops/LHUlebe5"], ["https://tec.openplanner.team/stops/Clcfall1", "https://tec.openplanner.team/stops/Csscrot2"], ["https://tec.openplanner.team/stops/LaMwies1", "https://tec.openplanner.team/stops/LeIkirr1"], ["https://tec.openplanner.team/stops/X673aea", "https://tec.openplanner.team/stops/X674aaa"], ["https://tec.openplanner.team/stops/N543aca", "https://tec.openplanner.team/stops/N543bxa"], ["https://tec.openplanner.team/stops/X925ama", "https://tec.openplanner.team/stops/X949aeb"], ["https://tec.openplanner.team/stops/Ladegli1", "https://tec.openplanner.team/stops/Ladneuv1"], ["https://tec.openplanner.team/stops/X734afa", "https://tec.openplanner.team/stops/X734arb"], ["https://tec.openplanner.team/stops/LDaeg--1", "https://tec.openplanner.team/stops/LDaeg--2"], ["https://tec.openplanner.team/stops/LGlcite1", "https://tec.openplanner.team/stops/LHZ8mai2"], ["https://tec.openplanner.team/stops/N548adb", "https://tec.openplanner.team/stops/N548ama"], ["https://tec.openplanner.team/stops/Cairous2", "https://tec.openplanner.team/stops/N543cfb"], ["https://tec.openplanner.team/stops/H4we137c", "https://tec.openplanner.team/stops/H4we138b"], ["https://tec.openplanner.team/stops/H4bq154a", "https://tec.openplanner.team/stops/H4bq154b"], ["https://tec.openplanner.team/stops/LGeduc-1", "https://tec.openplanner.team/stops/LGefron1"], ["https://tec.openplanner.team/stops/N543bpa", "https://tec.openplanner.team/stops/N543bpb"], ["https://tec.openplanner.team/stops/Lhr3jui2", "https://tec.openplanner.team/stops/Lhrrhee*"], ["https://tec.openplanner.team/stops/N501ffa", "https://tec.openplanner.team/stops/N501haa"], ["https://tec.openplanner.team/stops/H2pr117a", "https://tec.openplanner.team/stops/H2pr119a"], ["https://tec.openplanner.team/stops/N501jba", "https://tec.openplanner.team/stops/N501jpa"], ["https://tec.openplanner.team/stops/LHtdros2", "https://tec.openplanner.team/stops/LHthest2"], ["https://tec.openplanner.team/stops/Bcbqh451", "https://tec.openplanner.team/stops/Bcbqp252"], ["https://tec.openplanner.team/stops/Lmndari1", "https://tec.openplanner.team/stops/Lmndari2"], ["https://tec.openplanner.team/stops/LPRcasi2", "https://tec.openplanner.team/stops/LPRpeti2"], ["https://tec.openplanner.team/stops/H1bn113b", "https://tec.openplanner.team/stops/H1bn148b"], ["https://tec.openplanner.team/stops/Cwgmart2", "https://tec.openplanner.team/stops/Cwgplac1"], ["https://tec.openplanner.team/stops/X979aha", "https://tec.openplanner.team/stops/X979aia"], ["https://tec.openplanner.team/stops/LPbover1", "https://tec.openplanner.team/stops/LVkchap2"], ["https://tec.openplanner.team/stops/Lghgend2", "https://tec.openplanner.team/stops/Ljerouy1"], ["https://tec.openplanner.team/stops/Cctptsa1", "https://tec.openplanner.team/stops/Ccutrav1"], ["https://tec.openplanner.team/stops/N508ajb", "https://tec.openplanner.team/stops/N508ajd"], ["https://tec.openplanner.team/stops/N340afb", "https://tec.openplanner.team/stops/N340ahb"], ["https://tec.openplanner.team/stops/Cgregli1", "https://tec.openplanner.team/stops/Cgrsaul1"], ["https://tec.openplanner.team/stops/X923adb", "https://tec.openplanner.team/stops/X941afa"], ["https://tec.openplanner.team/stops/H4ka191b", "https://tec.openplanner.team/stops/H4ty270a"], ["https://tec.openplanner.team/stops/Bblagar4", "https://tec.openplanner.team/stops/Bblagar5"], ["https://tec.openplanner.team/stops/H1cu108a", "https://tec.openplanner.team/stops/H1ms920a"], ["https://tec.openplanner.team/stops/N547ana", "https://tec.openplanner.team/stops/N553aqa"], ["https://tec.openplanner.team/stops/X636aab", "https://tec.openplanner.team/stops/X636abb"], ["https://tec.openplanner.team/stops/H1ro132b", "https://tec.openplanner.team/stops/H1ro141b"], ["https://tec.openplanner.team/stops/X911aka", "https://tec.openplanner.team/stops/X911ala"], ["https://tec.openplanner.team/stops/X618ana", "https://tec.openplanner.team/stops/X618anb"], ["https://tec.openplanner.team/stops/H2na132b", "https://tec.openplanner.team/stops/H2na135a"], ["https://tec.openplanner.team/stops/LNCfawe1", "https://tec.openplanner.team/stops/LNCsart2"], ["https://tec.openplanner.team/stops/X904ala", "https://tec.openplanner.team/stops/X942adb"], ["https://tec.openplanner.team/stops/H1gi120b", "https://tec.openplanner.team/stops/H1vs145b"], ["https://tec.openplanner.team/stops/Bcsebea4", "https://tec.openplanner.team/stops/Bsmgsuz1"], ["https://tec.openplanner.team/stops/N501dza", "https://tec.openplanner.team/stops/N501dzb"], ["https://tec.openplanner.team/stops/X880aea", "https://tec.openplanner.team/stops/X880aha"], ["https://tec.openplanner.team/stops/X688aaa", "https://tec.openplanner.team/stops/X688aab"], ["https://tec.openplanner.team/stops/H1bo101a", "https://tec.openplanner.team/stops/H1bo105a"], ["https://tec.openplanner.team/stops/H2bh108a", "https://tec.openplanner.team/stops/H2bh108b"], ["https://tec.openplanner.team/stops/X657agb", "https://tec.openplanner.team/stops/X657ala"], ["https://tec.openplanner.team/stops/N232ana", "https://tec.openplanner.team/stops/N232anb"], ["https://tec.openplanner.team/stops/X779acb", "https://tec.openplanner.team/stops/X779aea"], ["https://tec.openplanner.team/stops/Bblarbe1", "https://tec.openplanner.team/stops/Bblavba1"], ["https://tec.openplanner.team/stops/X754aeb", "https://tec.openplanner.team/stops/X754afb"], ["https://tec.openplanner.team/stops/H1gn150a", "https://tec.openplanner.team/stops/H1gq153a"], ["https://tec.openplanner.team/stops/X715ala", "https://tec.openplanner.team/stops/X715aqb"], ["https://tec.openplanner.team/stops/Bnivchh2", "https://tec.openplanner.team/stops/Bnivfhu1"], ["https://tec.openplanner.team/stops/Lscatme2", "https://tec.openplanner.team/stops/Lscbour1"], ["https://tec.openplanner.team/stops/Lfljupi1", "https://tec.openplanner.team/stops/Lrecroi1"], ["https://tec.openplanner.team/stops/Cgncail1", "https://tec.openplanner.team/stops/Clproi2"], ["https://tec.openplanner.team/stops/N577aba", "https://tec.openplanner.team/stops/N577ada"], ["https://tec.openplanner.team/stops/X780aha", "https://tec.openplanner.team/stops/X780ahb"], ["https://tec.openplanner.team/stops/H2ca112a", "https://tec.openplanner.team/stops/H2ch107b"], ["https://tec.openplanner.team/stops/Bcrbbou1", "https://tec.openplanner.team/stops/Bcrbros1"], ["https://tec.openplanner.team/stops/H2bh107b", "https://tec.openplanner.team/stops/H2jo162a"], ["https://tec.openplanner.team/stops/N385aac", "https://tec.openplanner.team/stops/N385aad"], ["https://tec.openplanner.team/stops/LcRmich1", "https://tec.openplanner.team/stops/LrDhund1"], ["https://tec.openplanner.team/stops/N135axb", "https://tec.openplanner.team/stops/N135bga"], ["https://tec.openplanner.team/stops/LLTeg--2", "https://tec.openplanner.team/stops/LMffoot1"], ["https://tec.openplanner.team/stops/Ccoptca2", "https://tec.openplanner.team/stops/Crowall1"], ["https://tec.openplanner.team/stops/LLebrux1", "https://tec.openplanner.team/stops/LVRchpl1"], ["https://tec.openplanner.team/stops/Lbrbass1", "https://tec.openplanner.team/stops/Lbrfagn2"], ["https://tec.openplanner.team/stops/LBApak2*", "https://tec.openplanner.team/stops/LETmagn2"], ["https://tec.openplanner.team/stops/Lfhbail1", "https://tec.openplanner.team/stops/Lfhhaso2"], ["https://tec.openplanner.team/stops/Lmobols2", "https://tec.openplanner.team/stops/Lmopech1"], ["https://tec.openplanner.team/stops/N245aba", "https://tec.openplanner.team/stops/N287ada"], ["https://tec.openplanner.team/stops/Caibino2", "https://tec.openplanner.team/stops/Caioign3"], ["https://tec.openplanner.team/stops/X561aab", "https://tec.openplanner.team/stops/X576afa"], ["https://tec.openplanner.team/stops/LBIcabi1", "https://tec.openplanner.team/stops/LBIcabi2"], ["https://tec.openplanner.team/stops/H1ob339a", "https://tec.openplanner.team/stops/H1ob339b"], ["https://tec.openplanner.team/stops/LMNcite2", "https://tec.openplanner.team/stops/LMNjard2"], ["https://tec.openplanner.team/stops/N539adc", "https://tec.openplanner.team/stops/N539aeb"], ["https://tec.openplanner.team/stops/H2lc169b", "https://tec.openplanner.team/stops/H2lc170b"], ["https://tec.openplanner.team/stops/Lsmgdry2", "https://tec.openplanner.team/stops/Lvecase2"], ["https://tec.openplanner.team/stops/Llggill1", "https://tec.openplanner.team/stops/Llgmaus1"], ["https://tec.openplanner.team/stops/N220aab", "https://tec.openplanner.team/stops/X394aca"], ["https://tec.openplanner.team/stops/N308bcb", "https://tec.openplanner.team/stops/N331adb"], ["https://tec.openplanner.team/stops/LPLcarr1", "https://tec.openplanner.team/stops/LPLcarr2"], ["https://tec.openplanner.team/stops/LSdcarr2", "https://tec.openplanner.team/stops/LSdcent1"], ["https://tec.openplanner.team/stops/N502aaa", "https://tec.openplanner.team/stops/N503aab"], ["https://tec.openplanner.team/stops/Ccygara2", "https://tec.openplanner.team/stops/Ccypn2"], ["https://tec.openplanner.team/stops/LTieg--2", "https://tec.openplanner.team/stops/LTiforg1"], ["https://tec.openplanner.team/stops/LCSfagn1", "https://tec.openplanner.team/stops/LCSpoud2"], ["https://tec.openplanner.team/stops/X750baa", "https://tec.openplanner.team/stops/X750bab"], ["https://tec.openplanner.team/stops/Cfmchap1", "https://tec.openplanner.team/stops/Cfmchap2"], ["https://tec.openplanner.team/stops/N132acb", "https://tec.openplanner.team/stops/N135adc"], ["https://tec.openplanner.team/stops/X982bda", "https://tec.openplanner.team/stops/X982bdb"], ["https://tec.openplanner.team/stops/N569aab", "https://tec.openplanner.team/stops/N569aca"], ["https://tec.openplanner.team/stops/N137ahb", "https://tec.openplanner.team/stops/N137aib"], ["https://tec.openplanner.team/stops/LVLf37-2", "https://tec.openplanner.team/stops/LVLsabl1"], ["https://tec.openplanner.team/stops/H1em103a", "https://tec.openplanner.team/stops/H1fa120b"], ["https://tec.openplanner.team/stops/H1at110a", "https://tec.openplanner.team/stops/H1at110c"], ["https://tec.openplanner.team/stops/N548aya", "https://tec.openplanner.team/stops/N548ayb"], ["https://tec.openplanner.team/stops/X818aua", "https://tec.openplanner.team/stops/X818awb"], ["https://tec.openplanner.team/stops/Cmyquen1", "https://tec.openplanner.team/stops/Cmywarc1"], ["https://tec.openplanner.team/stops/LLUlieg1", "https://tec.openplanner.team/stops/LLUtill4"], ["https://tec.openplanner.team/stops/LFFchal2", "https://tec.openplanner.team/stops/LVLsabl4"], ["https://tec.openplanner.team/stops/Cloauln1", "https://tec.openplanner.team/stops/Cloravi1"], ["https://tec.openplanner.team/stops/Bwatb4s1", "https://tec.openplanner.team/stops/Bwatnrs2"], ["https://tec.openplanner.team/stops/Baudulb1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/Lalbout2", "https://tec.openplanner.team/stops/Laltrap2"], ["https://tec.openplanner.team/stops/LeUnopr1", "https://tec.openplanner.team/stops/LeUnopr2"], ["https://tec.openplanner.team/stops/H4hx115a", "https://tec.openplanner.team/stops/H4hx124a"], ["https://tec.openplanner.team/stops/Lgrclas1", "https://tec.openplanner.team/stops/Lgrcoll1"], ["https://tec.openplanner.team/stops/N501caa", "https://tec.openplanner.team/stops/N502adb"], ["https://tec.openplanner.team/stops/X982aba", "https://tec.openplanner.team/stops/X982bza"], ["https://tec.openplanner.team/stops/N554aaa", "https://tec.openplanner.team/stops/N555acb"], ["https://tec.openplanner.team/stops/X809aca", "https://tec.openplanner.team/stops/X809ada"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X745abb"], ["https://tec.openplanner.team/stops/Blhusor1", "https://tec.openplanner.team/stops/Bovepla1"], ["https://tec.openplanner.team/stops/Cgxpair1", "https://tec.openplanner.team/stops/Cgxvkho3"], ["https://tec.openplanner.team/stops/H4mo133b", "https://tec.openplanner.team/stops/H4rk101b"], ["https://tec.openplanner.team/stops/N573apa", "https://tec.openplanner.team/stops/N573apb"], ["https://tec.openplanner.team/stops/Llghong1", "https://tec.openplanner.team/stops/Llgkurt1"], ["https://tec.openplanner.team/stops/LESgran1", "https://tec.openplanner.team/stops/LFNlato1"], ["https://tec.openplanner.team/stops/X989aca", "https://tec.openplanner.team/stops/X989acb"], ["https://tec.openplanner.team/stops/H4bx167a", "https://tec.openplanner.team/stops/H4ne139a"], ["https://tec.openplanner.team/stops/LkEl1211", "https://tec.openplanner.team/stops/LlNsc651"], ["https://tec.openplanner.team/stops/N219aba", "https://tec.openplanner.team/stops/N349aca"], ["https://tec.openplanner.team/stops/Llglys-2", "https://tec.openplanner.team/stops/Llgnaim2"], ["https://tec.openplanner.team/stops/LeSdorf1", "https://tec.openplanner.team/stops/LeSkreu1"], ["https://tec.openplanner.team/stops/LdUespe1", "https://tec.openplanner.team/stops/LdUespe3"], ["https://tec.openplanner.team/stops/X801ahb", "https://tec.openplanner.team/stops/X801aib"], ["https://tec.openplanner.team/stops/H5fl104b", "https://tec.openplanner.team/stops/H5wo123a"], ["https://tec.openplanner.team/stops/N538awa", "https://tec.openplanner.team/stops/N539ava"], ["https://tec.openplanner.team/stops/Bwspbos1", "https://tec.openplanner.team/stops/Bwspmon3"], ["https://tec.openplanner.team/stops/NL57alb", "https://tec.openplanner.team/stops/NL57ama"], ["https://tec.openplanner.team/stops/Cmmtomb1", "https://tec.openplanner.team/stops/Cmmtomb2"], ["https://tec.openplanner.team/stops/LCEcent2", "https://tec.openplanner.team/stops/LCEeg--1"], ["https://tec.openplanner.team/stops/N501dqa", "https://tec.openplanner.team/stops/N501dqb"], ["https://tec.openplanner.team/stops/Bhlvlou2", "https://tec.openplanner.team/stops/Blpghou2"], ["https://tec.openplanner.team/stops/Cmllait1", "https://tec.openplanner.team/stops/Cmlstgi1"], ["https://tec.openplanner.team/stops/X663acb", "https://tec.openplanner.team/stops/X663adb"], ["https://tec.openplanner.team/stops/Clpalli1", "https://tec.openplanner.team/stops/Clpnapo1"], ["https://tec.openplanner.team/stops/Cprvill1", "https://tec.openplanner.team/stops/NC11ana"], ["https://tec.openplanner.team/stops/N260aca", "https://tec.openplanner.team/stops/N260acb"], ["https://tec.openplanner.team/stops/Bcer4br1", "https://tec.openplanner.team/stops/Bcer4br5"], ["https://tec.openplanner.team/stops/Cjxpris2", "https://tec.openplanner.team/stops/Cnachcu1"], ["https://tec.openplanner.team/stops/Lhrsimo1", "https://tec.openplanner.team/stops/Lhrsimo4"], ["https://tec.openplanner.team/stops/LAyfren2", "https://tec.openplanner.team/stops/Lflrhot1"], ["https://tec.openplanner.team/stops/X670apc", "https://tec.openplanner.team/stops/X670asa"], ["https://tec.openplanner.team/stops/N207adc", "https://tec.openplanner.team/stops/N209aab"], ["https://tec.openplanner.team/stops/X769afa", "https://tec.openplanner.team/stops/X769ajb"], ["https://tec.openplanner.team/stops/X659agb", "https://tec.openplanner.team/stops/X659ata"], ["https://tec.openplanner.team/stops/X652afa", "https://tec.openplanner.team/stops/X652afd"], ["https://tec.openplanner.team/stops/Bnstpla1", "https://tec.openplanner.team/stops/H2na133a"], ["https://tec.openplanner.team/stops/LBAtign2", "https://tec.openplanner.team/stops/LSAchef1"], ["https://tec.openplanner.team/stops/H2lh127a", "https://tec.openplanner.team/stops/H2lh131b"], ["https://tec.openplanner.team/stops/LHUchpl1", "https://tec.openplanner.team/stops/LHUfonc2"], ["https://tec.openplanner.team/stops/N536aba", "https://tec.openplanner.team/stops/N563aaa"], ["https://tec.openplanner.team/stops/Csschat1", "https://tec.openplanner.team/stops/Csscrot1"], ["https://tec.openplanner.team/stops/N512aia", "https://tec.openplanner.team/stops/N512aoa"], ["https://tec.openplanner.team/stops/LHGleje1", "https://tec.openplanner.team/stops/LHGtige2"], ["https://tec.openplanner.team/stops/Lhubarl2", "https://tec.openplanner.team/stops/LPoxhav1"], ["https://tec.openplanner.team/stops/LNEcouc1", "https://tec.openplanner.team/stops/LNEec--1"], ["https://tec.openplanner.team/stops/Llgfoss1", "https://tec.openplanner.team/stops/Llglonh1"], ["https://tec.openplanner.team/stops/N554adb", "https://tec.openplanner.team/stops/N566afb"], ["https://tec.openplanner.team/stops/H1gh163b", "https://tec.openplanner.team/stops/H1gh171b"], ["https://tec.openplanner.team/stops/N323aba", "https://tec.openplanner.team/stops/N360aab"], ["https://tec.openplanner.team/stops/Llgbago1", "https://tec.openplanner.team/stops/Llgware2"], ["https://tec.openplanner.team/stops/H4oe151b", "https://tec.openplanner.team/stops/H4oe152b"], ["https://tec.openplanner.team/stops/Lhulibe1", "https://tec.openplanner.team/stops/Lhutran2"], ["https://tec.openplanner.team/stops/Lcebarr2", "https://tec.openplanner.team/stops/Lceviei1"], ["https://tec.openplanner.team/stops/LHrchez2", "https://tec.openplanner.team/stops/LHrreal2"], ["https://tec.openplanner.team/stops/Bgnvdep2", "https://tec.openplanner.team/stops/Bgnvpco3"], ["https://tec.openplanner.team/stops/Bgembhe1", "https://tec.openplanner.team/stops/N576adb"], ["https://tec.openplanner.team/stops/Brsggol1", "https://tec.openplanner.team/stops/Brsggol2"], ["https://tec.openplanner.team/stops/X672aaa", "https://tec.openplanner.team/stops/X817aga"], ["https://tec.openplanner.team/stops/LSPguer2", "https://tec.openplanner.team/stops/LSPsorb1"], ["https://tec.openplanner.team/stops/Ldichat1", "https://tec.openplanner.team/stops/Ldifoye2"], ["https://tec.openplanner.team/stops/N313aab", "https://tec.openplanner.team/stops/N313aba"], ["https://tec.openplanner.team/stops/H1sy145b", "https://tec.openplanner.team/stops/H1to155b"], ["https://tec.openplanner.team/stops/H1gh147a", "https://tec.openplanner.team/stops/H1gh165c"], ["https://tec.openplanner.team/stops/LHuetat1", "https://tec.openplanner.team/stops/LHuetat2"], ["https://tec.openplanner.team/stops/Btilmon1", "https://tec.openplanner.team/stops/Btilsnc1"], ["https://tec.openplanner.team/stops/X779abb", "https://tec.openplanner.team/stops/X779aeb"], ["https://tec.openplanner.team/stops/X601bgb", "https://tec.openplanner.team/stops/X601bha"], ["https://tec.openplanner.team/stops/LkTgutl2", "https://tec.openplanner.team/stops/LkTraer2"], ["https://tec.openplanner.team/stops/H1ho133b", "https://tec.openplanner.team/stops/H1ho135b"], ["https://tec.openplanner.team/stops/X770aga", "https://tec.openplanner.team/stops/X774aad"], ["https://tec.openplanner.team/stops/Bnivbpe3", "https://tec.openplanner.team/stops/Bptrcra2"], ["https://tec.openplanner.team/stops/Cchparc4", "https://tec.openplanner.team/stops/CMparc2"], ["https://tec.openplanner.team/stops/Cjuvign1", "https://tec.openplanner.team/stops/Cjuvign2"], ["https://tec.openplanner.team/stops/X649abb", "https://tec.openplanner.team/stops/X671adb"], ["https://tec.openplanner.team/stops/H4we136a", "https://tec.openplanner.team/stops/H4we137d"], ["https://tec.openplanner.team/stops/H2ll178d", "https://tec.openplanner.team/stops/H2ll258b"], ["https://tec.openplanner.team/stops/Cgzlera1", "https://tec.openplanner.team/stops/Cmyrays2"], ["https://tec.openplanner.team/stops/LXoeg--4", "https://tec.openplanner.team/stops/LXofont2"], ["https://tec.openplanner.team/stops/Lbrptbr5", "https://tec.openplanner.team/stops/Llgmara1"], ["https://tec.openplanner.team/stops/LJAdeho1", "https://tec.openplanner.team/stops/LJAdeho4"], ["https://tec.openplanner.team/stops/H1cd111d", "https://tec.openplanner.team/stops/H1hr126b"], ["https://tec.openplanner.team/stops/X614aib", "https://tec.openplanner.team/stops/X614ajb"], ["https://tec.openplanner.team/stops/X831ada", "https://tec.openplanner.team/stops/X831aeb"], ["https://tec.openplanner.team/stops/X897aca", "https://tec.openplanner.team/stops/X897ada"], ["https://tec.openplanner.team/stops/X805aba", "https://tec.openplanner.team/stops/X805afb"], ["https://tec.openplanner.team/stops/H1le121a", "https://tec.openplanner.team/stops/H1le122d"], ["https://tec.openplanner.team/stops/X879aab", "https://tec.openplanner.team/stops/X879aqb"], ["https://tec.openplanner.team/stops/Btubbai1", "https://tec.openplanner.team/stops/Btubsal1"], ["https://tec.openplanner.team/stops/H1be104b", "https://tec.openplanner.team/stops/H1hw118a"], ["https://tec.openplanner.team/stops/N308aga", "https://tec.openplanner.team/stops/N308aob"], ["https://tec.openplanner.team/stops/LLegare1", "https://tec.openplanner.team/stops/X547aeb"], ["https://tec.openplanner.team/stops/Bgzdgst1", "https://tec.openplanner.team/stops/Bgzdgst2"], ["https://tec.openplanner.team/stops/Cfodepo1", "https://tec.openplanner.team/stops/Cfoermi2"], ["https://tec.openplanner.team/stops/H4mb138a", "https://tec.openplanner.team/stops/H4mb143d"], ["https://tec.openplanner.team/stops/H4tu170b", "https://tec.openplanner.team/stops/H4tu172b"], ["https://tec.openplanner.team/stops/LAMcime1", "https://tec.openplanner.team/stops/LAMpirk2"], ["https://tec.openplanner.team/stops/LScdina2", "https://tec.openplanner.team/stops/LTNcarr4"], ["https://tec.openplanner.team/stops/Bhalber2", "https://tec.openplanner.team/stops/Bhaldbo1"], ["https://tec.openplanner.team/stops/Cjuhame1", "https://tec.openplanner.team/stops/Cjulamb1"], ["https://tec.openplanner.team/stops/LsVfrie2", "https://tec.openplanner.team/stops/LsVrodt1"], ["https://tec.openplanner.team/stops/LAUberg2", "https://tec.openplanner.team/stops/LFdbagu1"], ["https://tec.openplanner.team/stops/Bcsecar2", "https://tec.openplanner.team/stops/Bcseeco2"], ["https://tec.openplanner.team/stops/X681ada", "https://tec.openplanner.team/stops/X681aeb"], ["https://tec.openplanner.team/stops/H1wz170a", "https://tec.openplanner.team/stops/H1wz170b"], ["https://tec.openplanner.team/stops/N351alb", "https://tec.openplanner.team/stops/N351ana"], ["https://tec.openplanner.team/stops/H4rc231b", "https://tec.openplanner.team/stops/H4rc232c"], ["https://tec.openplanner.team/stops/Crgegli2", "https://tec.openplanner.team/stops/Crgmgri1"], ["https://tec.openplanner.team/stops/Bjaugaz1", "https://tec.openplanner.team/stops/Bjaugaz2"], ["https://tec.openplanner.team/stops/LHNvill1", "https://tec.openplanner.team/stops/LHNvill2"], ["https://tec.openplanner.team/stops/X661axa", "https://tec.openplanner.team/stops/X661axb"], ["https://tec.openplanner.team/stops/H1hn204a", "https://tec.openplanner.team/stops/H1mv242b"], ["https://tec.openplanner.team/stops/LSHfief1", "https://tec.openplanner.team/stops/LSOgott2"], ["https://tec.openplanner.team/stops/N125acb", "https://tec.openplanner.team/stops/N149alb"], ["https://tec.openplanner.team/stops/LSU50--1", "https://tec.openplanner.team/stops/LSUvill1"], ["https://tec.openplanner.team/stops/Bnivasa2", "https://tec.openplanner.team/stops/Bnivplt1"], ["https://tec.openplanner.team/stops/H4ea134b", "https://tec.openplanner.team/stops/H4tp145a"], ["https://tec.openplanner.team/stops/Crapaep2", "https://tec.openplanner.team/stops/Crasabl3"], ["https://tec.openplanner.team/stops/H4og214b", "https://tec.openplanner.team/stops/H4og215a"], ["https://tec.openplanner.team/stops/H4ry133a", "https://tec.openplanner.team/stops/H4ry133b"], ["https://tec.openplanner.team/stops/Btubdeh2", "https://tec.openplanner.team/stops/Btubind2"], ["https://tec.openplanner.team/stops/Ldilyce*", "https://tec.openplanner.team/stops/Lprdavi2"], ["https://tec.openplanner.team/stops/Bsmgbsa2", "https://tec.openplanner.team/stops/Bsmgegl2"], ["https://tec.openplanner.team/stops/Bsdapir1", "https://tec.openplanner.team/stops/Csdrofr2"], ["https://tec.openplanner.team/stops/LLreque1", "https://tec.openplanner.team/stops/LLrisa-*"], ["https://tec.openplanner.team/stops/H4ka191b", "https://tec.openplanner.team/stops/H4ka193b"], ["https://tec.openplanner.team/stops/LbTgeme1", "https://tec.openplanner.team/stops/LsHfrie2"], ["https://tec.openplanner.team/stops/LAWroug1", "https://tec.openplanner.team/stops/LAWroug2"], ["https://tec.openplanner.team/stops/X910aea", "https://tec.openplanner.team/stops/X910afa"], ["https://tec.openplanner.team/stops/N241aba", "https://tec.openplanner.team/stops/N539aya"], ["https://tec.openplanner.team/stops/X995afa", "https://tec.openplanner.team/stops/X995afb"], ["https://tec.openplanner.team/stops/H1cu113b", "https://tec.openplanner.team/stops/H1hn206b"], ["https://tec.openplanner.team/stops/X725azb", "https://tec.openplanner.team/stops/X725bab"], ["https://tec.openplanner.team/stops/N141aba", "https://tec.openplanner.team/stops/N141aoa"], ["https://tec.openplanner.team/stops/LAmab751", "https://tec.openplanner.team/stops/LATguis1"], ["https://tec.openplanner.team/stops/Cgotech1", "https://tec.openplanner.team/stops/Cwxplac1"], ["https://tec.openplanner.team/stops/LClange1", "https://tec.openplanner.team/stops/LCljose1"], ["https://tec.openplanner.team/stops/H1ba115b", "https://tec.openplanner.team/stops/H1te174a"], ["https://tec.openplanner.team/stops/X746aea", "https://tec.openplanner.team/stops/X749aea"], ["https://tec.openplanner.team/stops/N542aqa", "https://tec.openplanner.team/stops/N542asa"], ["https://tec.openplanner.team/stops/H1hy125b", "https://tec.openplanner.team/stops/H1hy126a"], ["https://tec.openplanner.team/stops/Cbfpoti1", "https://tec.openplanner.team/stops/Cctsold1"], ["https://tec.openplanner.team/stops/H4bv145a", "https://tec.openplanner.team/stops/H4bv145c"], ["https://tec.openplanner.team/stops/Cgylami1", "https://tec.openplanner.team/stops/Cgynoir2"], ["https://tec.openplanner.team/stops/Cgoloca1", "https://tec.openplanner.team/stops/Cgoloca2"], ["https://tec.openplanner.team/stops/X761acb", "https://tec.openplanner.team/stops/X761ada"], ["https://tec.openplanner.team/stops/X994aba", "https://tec.openplanner.team/stops/X994aeb"], ["https://tec.openplanner.team/stops/H4wi169a", "https://tec.openplanner.team/stops/H4wi169b"], ["https://tec.openplanner.team/stops/Cfodepo1", "https://tec.openplanner.team/stops/CMpara1"], ["https://tec.openplanner.team/stops/LLApavi1", "https://tec.openplanner.team/stops/LMgwith2"], ["https://tec.openplanner.team/stops/Bgnpchb1", "https://tec.openplanner.team/stops/Bvxgegl2"], ["https://tec.openplanner.team/stops/LBYwez-1", "https://tec.openplanner.team/stops/LXHeg--2"], ["https://tec.openplanner.team/stops/N520aha", "https://tec.openplanner.team/stops/N520aja"], ["https://tec.openplanner.team/stops/N121ada", "https://tec.openplanner.team/stops/N121afa"], ["https://tec.openplanner.team/stops/N311acb", "https://tec.openplanner.team/stops/N360aab"], ["https://tec.openplanner.team/stops/Cflcoro1", "https://tec.openplanner.team/stops/Cflmarq2"], ["https://tec.openplanner.team/stops/X724abb", "https://tec.openplanner.team/stops/X724acb"], ["https://tec.openplanner.team/stops/X731ada", "https://tec.openplanner.team/stops/X731adb"], ["https://tec.openplanner.team/stops/LWLeg--2", "https://tec.openplanner.team/stops/LWLeg--3"], ["https://tec.openplanner.team/stops/Bblacea1", "https://tec.openplanner.team/stops/Bblacea2"], ["https://tec.openplanner.team/stops/N338aha", "https://tec.openplanner.team/stops/N338ahb"], ["https://tec.openplanner.team/stops/LFochap1", "https://tec.openplanner.team/stops/LGOmonu1"], ["https://tec.openplanner.team/stops/Bottpar1", "https://tec.openplanner.team/stops/Bottpar2"], ["https://tec.openplanner.team/stops/H1eu102b", "https://tec.openplanner.team/stops/H1eu103b"], ["https://tec.openplanner.team/stops/X992aha", "https://tec.openplanner.team/stops/X992aia"], ["https://tec.openplanner.team/stops/LSpschi1", "https://tec.openplanner.team/stops/LSpshin2"], ["https://tec.openplanner.team/stops/X614aea", "https://tec.openplanner.team/stops/X614aeb"], ["https://tec.openplanner.team/stops/Bfelagb1", "https://tec.openplanner.team/stops/Bfelbri3"], ["https://tec.openplanner.team/stops/X358acd", "https://tec.openplanner.team/stops/X993abd"], ["https://tec.openplanner.team/stops/X621acb", "https://tec.openplanner.team/stops/X622adb"], ["https://tec.openplanner.team/stops/LOuilc-*", "https://tec.openplanner.team/stops/LOunebl2"], ["https://tec.openplanner.team/stops/H4rm112a", "https://tec.openplanner.team/stops/H4rm114a"], ["https://tec.openplanner.team/stops/LTPnoup1", "https://tec.openplanner.team/stops/LTPpreh2"], ["https://tec.openplanner.team/stops/X601ajb", "https://tec.openplanner.team/stops/X601bta"], ["https://tec.openplanner.team/stops/Bove4ko2", "https://tec.openplanner.team/stops/Brsregl4"], ["https://tec.openplanner.team/stops/Bsgeegl4", "https://tec.openplanner.team/stops/Bvilcha2"], ["https://tec.openplanner.team/stops/H2hg271a", "https://tec.openplanner.team/stops/H2ll199a"], ["https://tec.openplanner.team/stops/H4ga151a", "https://tec.openplanner.team/stops/H4vz371a"], ["https://tec.openplanner.team/stops/H5rx138a", "https://tec.openplanner.team/stops/H5rx143b"], ["https://tec.openplanner.team/stops/Brsrpar1", "https://tec.openplanner.team/stops/Brsrpar2"], ["https://tec.openplanner.team/stops/LMEeg--2", "https://tec.openplanner.team/stops/LMEwerg2"], ["https://tec.openplanner.team/stops/LHecime1", "https://tec.openplanner.team/stops/LHecime2"], ["https://tec.openplanner.team/stops/X878acb", "https://tec.openplanner.team/stops/X878adb"], ["https://tec.openplanner.team/stops/Bhaless1", "https://tec.openplanner.team/stops/Bhalomo1"], ["https://tec.openplanner.team/stops/H2bh103a", "https://tec.openplanner.team/stops/H2bh103b"], ["https://tec.openplanner.team/stops/N501fwy", "https://tec.openplanner.team/stops/N501hhb"], ["https://tec.openplanner.team/stops/Cctchav1", "https://tec.openplanner.team/stops/NC11aga"], ["https://tec.openplanner.team/stops/Clomakr1", "https://tec.openplanner.team/stops/Clomari5"], ["https://tec.openplanner.team/stops/LWahetr1", "https://tec.openplanner.team/stops/LWalyce1"], ["https://tec.openplanner.team/stops/Cgzfarc1", "https://tec.openplanner.team/stops/Cgzfarc2"], ["https://tec.openplanner.team/stops/N516ada", "https://tec.openplanner.team/stops/N516adb"], ["https://tec.openplanner.team/stops/Cflchel2", "https://tec.openplanner.team/stops/Cflchel6"], ["https://tec.openplanner.team/stops/Lenauln2", "https://tec.openplanner.team/stops/Lvedepo*"], ["https://tec.openplanner.team/stops/N501aob", "https://tec.openplanner.team/stops/N501mja"], ["https://tec.openplanner.team/stops/LHZ8mai1", "https://tec.openplanner.team/stops/LHZec--1"], ["https://tec.openplanner.team/stops/LtH37c-2", "https://tec.openplanner.team/stops/LtHkirc3"], ["https://tec.openplanner.team/stops/H1ba106a", "https://tec.openplanner.team/stops/H1te173a"], ["https://tec.openplanner.team/stops/Bgrhcen2", "https://tec.openplanner.team/stops/Bgrhcro2"], ["https://tec.openplanner.team/stops/X663aub", "https://tec.openplanner.team/stops/X663ava"], ["https://tec.openplanner.team/stops/Bhevjal2", "https://tec.openplanner.team/stops/Bhevl3l2"], ["https://tec.openplanner.team/stops/LLrdigu1", "https://tec.openplanner.team/stops/LLrgara1"], ["https://tec.openplanner.team/stops/Cnacout1", "https://tec.openplanner.team/stops/Cnacroc2"], ["https://tec.openplanner.team/stops/LAuvill1", "https://tec.openplanner.team/stops/LWRcruc1"], ["https://tec.openplanner.team/stops/X644aab", "https://tec.openplanner.team/stops/X644aba"], ["https://tec.openplanner.team/stops/X813ada", "https://tec.openplanner.team/stops/X813adb"], ["https://tec.openplanner.team/stops/Buccdho1", "https://tec.openplanner.team/stops/Buccdho2"], ["https://tec.openplanner.team/stops/LrAbe601", "https://tec.openplanner.team/stops/LrAbe602"], ["https://tec.openplanner.team/stops/H3bi101a", "https://tec.openplanner.team/stops/H3bi110b"], ["https://tec.openplanner.team/stops/N115aab", "https://tec.openplanner.team/stops/N115ada"], ["https://tec.openplanner.team/stops/X793afb", "https://tec.openplanner.team/stops/X793ajb"], ["https://tec.openplanner.team/stops/H2ll194b", "https://tec.openplanner.team/stops/H2ll201a"], ["https://tec.openplanner.team/stops/Bdvmcsa1", "https://tec.openplanner.team/stops/Bdvmcsa2"], ["https://tec.openplanner.team/stops/Bwatath1", "https://tec.openplanner.team/stops/Bwatlbs1"], ["https://tec.openplanner.team/stops/X946abb", "https://tec.openplanner.team/stops/X946acb"], ["https://tec.openplanner.team/stops/Lbhpeti1", "https://tec.openplanner.team/stops/LMFmoul1"], ["https://tec.openplanner.team/stops/Llgbrab2", "https://tec.openplanner.team/stops/Llgstvi1"], ["https://tec.openplanner.team/stops/Buccpes2", "https://tec.openplanner.team/stops/Bwbfckr1"], ["https://tec.openplanner.team/stops/N577aia", "https://tec.openplanner.team/stops/N577aja"], ["https://tec.openplanner.team/stops/LeIkreu1", "https://tec.openplanner.team/stops/LeIkreu4"], ["https://tec.openplanner.team/stops/LCRvert2", "https://tec.openplanner.team/stops/LKmdani1"], ["https://tec.openplanner.team/stops/X839aea", "https://tec.openplanner.team/stops/X839afa"], ["https://tec.openplanner.team/stops/Ccotrie2", "https://tec.openplanner.team/stops/Ccotrie4"], ["https://tec.openplanner.team/stops/H4es117a", "https://tec.openplanner.team/stops/H4ln155a"], ["https://tec.openplanner.team/stops/LjeGRPMB", "https://tec.openplanner.team/stops/LjeGRPMD"], ["https://tec.openplanner.team/stops/N520aeb", "https://tec.openplanner.team/stops/N521aob"], ["https://tec.openplanner.team/stops/Cgd4ven1", "https://tec.openplanner.team/stops/Cgd4ven2"], ["https://tec.openplanner.team/stops/H2fy123c", "https://tec.openplanner.team/stops/H2fy123d"], ["https://tec.openplanner.team/stops/X757afa", "https://tec.openplanner.team/stops/X757afb"], ["https://tec.openplanner.team/stops/LDObell2", "https://tec.openplanner.team/stops/LSubass1"], ["https://tec.openplanner.team/stops/X767aaa", "https://tec.openplanner.team/stops/X768aca"], ["https://tec.openplanner.team/stops/H1nm138a", "https://tec.openplanner.team/stops/H1si164b"], ["https://tec.openplanner.team/stops/NL76aja", "https://tec.openplanner.team/stops/NL76aka"], ["https://tec.openplanner.team/stops/LCTfair2", "https://tec.openplanner.team/stops/LCTmonu2"], ["https://tec.openplanner.team/stops/Ldichat1", "https://tec.openplanner.team/stops/Lprorem2"], ["https://tec.openplanner.team/stops/N229aca", "https://tec.openplanner.team/stops/N229aea"], ["https://tec.openplanner.team/stops/H4fr391a", "https://tec.openplanner.team/stops/H4fr392a"], ["https://tec.openplanner.team/stops/N507afb", "https://tec.openplanner.team/stops/N507aob"], ["https://tec.openplanner.team/stops/H1ro133a", "https://tec.openplanner.team/stops/H4wi166b"], ["https://tec.openplanner.team/stops/Lsephar1", "https://tec.openplanner.team/stops/Ltihala2"], ["https://tec.openplanner.team/stops/X954afa", "https://tec.openplanner.team/stops/X954afb"], ["https://tec.openplanner.team/stops/X804apb", "https://tec.openplanner.team/stops/X805aba"], ["https://tec.openplanner.team/stops/LVTeg--1", "https://tec.openplanner.team/stops/LVTforg1"], ["https://tec.openplanner.team/stops/X941aca", "https://tec.openplanner.team/stops/X941ada"], ["https://tec.openplanner.team/stops/Lbrfusi1", "https://tec.openplanner.team/stops/Lgrfort1"], ["https://tec.openplanner.team/stops/H2pr116a", "https://tec.openplanner.team/stops/H2pr117b"], ["https://tec.openplanner.team/stops/N501hsa", "https://tec.openplanner.team/stops/N501hsz"], ["https://tec.openplanner.team/stops/Cpljonc2", "https://tec.openplanner.team/stops/NC11afa"], ["https://tec.openplanner.team/stops/Lvcchev1", "https://tec.openplanner.team/stops/Lvcchev2"], ["https://tec.openplanner.team/stops/Bhanmou1", "https://tec.openplanner.team/stops/Bhanmou2"], ["https://tec.openplanner.team/stops/H4mt215a", "https://tec.openplanner.team/stops/H4mx118a"], ["https://tec.openplanner.team/stops/Cwfdame2", "https://tec.openplanner.team/stops/Cwfmonu1"], ["https://tec.openplanner.team/stops/X919aaa", "https://tec.openplanner.team/stops/X919abb"], ["https://tec.openplanner.team/stops/X597ana", "https://tec.openplanner.team/stops/X597anb"], ["https://tec.openplanner.team/stops/Bnivcma1", "https://tec.openplanner.team/stops/Bnivcma2"], ["https://tec.openplanner.team/stops/N501gpa", "https://tec.openplanner.team/stops/N501msa"], ["https://tec.openplanner.team/stops/Cgocapu2", "https://tec.openplanner.team/stops/Cgohnda1"], ["https://tec.openplanner.team/stops/Lfhdone1", "https://tec.openplanner.team/stops/Lfhdone2"], ["https://tec.openplanner.team/stops/Buccfja2", "https://tec.openplanner.team/stops/Buccrac2"], ["https://tec.openplanner.team/stops/LWieg--*", "https://tec.openplanner.team/stops/LWipaif1"], ["https://tec.openplanner.team/stops/X923abb", "https://tec.openplanner.team/stops/X923ama"], ["https://tec.openplanner.team/stops/Bhmmvdu1", "https://tec.openplanner.team/stops/Bnetace2"], ["https://tec.openplanner.team/stops/Ltiecch1", "https://tec.openplanner.team/stops/Ltinico1"], ["https://tec.openplanner.team/stops/N501aca", "https://tec.openplanner.team/stops/N503acb"], ["https://tec.openplanner.team/stops/N562ata", "https://tec.openplanner.team/stops/N562bsb"], ["https://tec.openplanner.team/stops/H4co150b", "https://tec.openplanner.team/stops/H4co162a"], ["https://tec.openplanner.team/stops/H4fr143a", "https://tec.openplanner.team/stops/H4ma401b"], ["https://tec.openplanner.team/stops/Brxmcha1", "https://tec.openplanner.team/stops/Brxmhai4"], ["https://tec.openplanner.team/stops/H1gn149a", "https://tec.openplanner.team/stops/H1mq200a"], ["https://tec.openplanner.team/stops/LVNwanz1", "https://tec.openplanner.team/stops/LVNwanz2"], ["https://tec.openplanner.team/stops/Lchsa631", "https://tec.openplanner.team/stops/Lchsaec2"], ["https://tec.openplanner.team/stops/LBRmc--1", "https://tec.openplanner.team/stops/LBRmc--4"], ["https://tec.openplanner.team/stops/H4mb139a", "https://tec.openplanner.team/stops/H4mb141a"], ["https://tec.openplanner.team/stops/H1ci105a", "https://tec.openplanner.team/stops/H1ci105b"], ["https://tec.openplanner.team/stops/X982afa", "https://tec.openplanner.team/stops/X982afb"], ["https://tec.openplanner.team/stops/LHUpost2", "https://tec.openplanner.team/stops/LHUpost3"], ["https://tec.openplanner.team/stops/LBAcarr1", "https://tec.openplanner.team/stops/LBAcarr2"], ["https://tec.openplanner.team/stops/Lbrlama1", "https://tec.openplanner.team/stops/Lgrmagd1"], ["https://tec.openplanner.team/stops/LMOford1", "https://tec.openplanner.team/stops/LMOlens2"], ["https://tec.openplanner.team/stops/H1hr116a", "https://tec.openplanner.team/stops/H2pr117a"], ["https://tec.openplanner.team/stops/X858aeb", "https://tec.openplanner.team/stops/X858ahb"], ["https://tec.openplanner.team/stops/LSNbouh3", "https://tec.openplanner.team/stops/LSNness1"], ["https://tec.openplanner.team/stops/X822aba", "https://tec.openplanner.team/stops/X822anb"], ["https://tec.openplanner.team/stops/H2bh109a", "https://tec.openplanner.team/stops/H2bh117b"], ["https://tec.openplanner.team/stops/N203aab", "https://tec.openplanner.team/stops/N204aeb"], ["https://tec.openplanner.team/stops/Beclfde1", "https://tec.openplanner.team/stops/Bfelfde1"], ["https://tec.openplanner.team/stops/H4ty282a", "https://tec.openplanner.team/stops/H4ty282b"], ["https://tec.openplanner.team/stops/Bnivbne2", "https://tec.openplanner.team/stops/Bnivbos1"], ["https://tec.openplanner.team/stops/N211aia", "https://tec.openplanner.team/stops/N211aib"], ["https://tec.openplanner.team/stops/N534ara", "https://tec.openplanner.team/stops/N534auc"], ["https://tec.openplanner.team/stops/LBCaube2", "https://tec.openplanner.team/stops/LCdchod2"], ["https://tec.openplanner.team/stops/X756aca", "https://tec.openplanner.team/stops/X756ada"], ["https://tec.openplanner.team/stops/H1bb117a", "https://tec.openplanner.team/stops/H1bb117b"], ["https://tec.openplanner.team/stops/X786aib", "https://tec.openplanner.team/stops/X789aca"], ["https://tec.openplanner.team/stops/H1cu111a", "https://tec.openplanner.team/stops/H1ms922a"], ["https://tec.openplanner.team/stops/H4wa155a", "https://tec.openplanner.team/stops/H4wa155b"], ["https://tec.openplanner.team/stops/H4eq123b", "https://tec.openplanner.team/stops/H4pq114a"], ["https://tec.openplanner.team/stops/LREelse2", "https://tec.openplanner.team/stops/LREsoug4"], ["https://tec.openplanner.team/stops/N213aab", "https://tec.openplanner.team/stops/N213aca"], ["https://tec.openplanner.team/stops/X661aua", "https://tec.openplanner.team/stops/X817agb"], ["https://tec.openplanner.team/stops/H1ms281b", "https://tec.openplanner.team/stops/H1ni322b"], ["https://tec.openplanner.team/stops/H1pa108b", "https://tec.openplanner.team/stops/H1pa116b"], ["https://tec.openplanner.team/stops/H4ea131b", "https://tec.openplanner.team/stops/H5qu154a"], ["https://tec.openplanner.team/stops/Cmiegli2", "https://tec.openplanner.team/stops/Cmitrie2"], ["https://tec.openplanner.team/stops/X650aea", "https://tec.openplanner.team/stops/X650aeb"], ["https://tec.openplanner.team/stops/NL77aba", "https://tec.openplanner.team/stops/NL77aca"], ["https://tec.openplanner.team/stops/Bblaast1", "https://tec.openplanner.team/stops/Bblacim2"], ["https://tec.openplanner.team/stops/Cjufrat1", "https://tec.openplanner.team/stops/Cjurevo2"], ["https://tec.openplanner.team/stops/X614aoa", "https://tec.openplanner.team/stops/X614aob"], ["https://tec.openplanner.team/stops/LWAclos1", "https://tec.openplanner.team/stops/LWAmois2"], ["https://tec.openplanner.team/stops/X615anb", "https://tec.openplanner.team/stops/X615aua"], ["https://tec.openplanner.team/stops/N204aha", "https://tec.openplanner.team/stops/N204aia"], ["https://tec.openplanner.team/stops/LJeeg--1", "https://tec.openplanner.team/stops/LJetrih2"], ["https://tec.openplanner.team/stops/N211ada", "https://tec.openplanner.team/stops/N211afa"], ["https://tec.openplanner.team/stops/N501cca", "https://tec.openplanner.team/stops/N521aua"], ["https://tec.openplanner.team/stops/X652aca", "https://tec.openplanner.team/stops/X652acc"], ["https://tec.openplanner.team/stops/N521ada", "https://tec.openplanner.team/stops/N521asb"], ["https://tec.openplanner.team/stops/LAUneuv3", "https://tec.openplanner.team/stops/LAUvict4"], ["https://tec.openplanner.team/stops/Lscferr1", "https://tec.openplanner.team/stops/Lscpamp1"], ["https://tec.openplanner.team/stops/N122aca", "https://tec.openplanner.team/stops/N122acb"], ["https://tec.openplanner.team/stops/X601cdb", "https://tec.openplanner.team/stops/X601cea"], ["https://tec.openplanner.team/stops/Bwatavo1", "https://tec.openplanner.team/stops/Bwatcro2"], ["https://tec.openplanner.team/stops/Cctfrbe2", "https://tec.openplanner.team/stops/NC11aia"], ["https://tec.openplanner.team/stops/X746afa", "https://tec.openplanner.team/stops/X746ahc"], ["https://tec.openplanner.team/stops/LAWdefu4", "https://tec.openplanner.team/stops/LAWvold1"], ["https://tec.openplanner.team/stops/H1te174a", "https://tec.openplanner.team/stops/H1te185a"], ["https://tec.openplanner.team/stops/N217aca", "https://tec.openplanner.team/stops/N217acd"], ["https://tec.openplanner.team/stops/H1eo108b", "https://tec.openplanner.team/stops/H1gh148a"], ["https://tec.openplanner.team/stops/H1pa116a", "https://tec.openplanner.team/stops/H1wa155b"], ["https://tec.openplanner.team/stops/Bbaubon1", "https://tec.openplanner.team/stops/Bnivphs1"], ["https://tec.openplanner.team/stops/LHUsauv1", "https://tec.openplanner.team/stops/LHUsauv4"], ["https://tec.openplanner.team/stops/N244aib", "https://tec.openplanner.team/stops/N287aab"], ["https://tec.openplanner.team/stops/N512atb", "https://tec.openplanner.team/stops/NL68adc"], ["https://tec.openplanner.team/stops/Lvesomm2", "https://tec.openplanner.team/stops/Lvesomm3"], ["https://tec.openplanner.team/stops/LAicarr2", "https://tec.openplanner.team/stops/LAivill2"], ["https://tec.openplanner.team/stops/H1ne141b", "https://tec.openplanner.team/stops/H1ne145b"], ["https://tec.openplanner.team/stops/LCTgare3", "https://tec.openplanner.team/stops/LGmcent1"], ["https://tec.openplanner.team/stops/N501faa", "https://tec.openplanner.team/stops/N501mab"], ["https://tec.openplanner.team/stops/Lbralbe1", "https://tec.openplanner.team/stops/Lbrresi2"], ["https://tec.openplanner.team/stops/H2fy123c", "https://tec.openplanner.team/stops/H2jo161d"], ["https://tec.openplanner.team/stops/LBPunic1", "https://tec.openplanner.team/stops/LGLgeer1"], ["https://tec.openplanner.team/stops/H2sv211b", "https://tec.openplanner.team/stops/H2sv220b"], ["https://tec.openplanner.team/stops/Cfoermi2", "https://tec.openplanner.team/stops/CMpara1"], ["https://tec.openplanner.team/stops/N111afa", "https://tec.openplanner.team/stops/N111afb"], ["https://tec.openplanner.team/stops/X811aba", "https://tec.openplanner.team/stops/X811abb"], ["https://tec.openplanner.team/stops/LERpouh1", "https://tec.openplanner.team/stops/LERpouh2"], ["https://tec.openplanner.team/stops/Ctaallo1", "https://tec.openplanner.team/stops/Ctapn1"], ["https://tec.openplanner.team/stops/X850aeb", "https://tec.openplanner.team/stops/X850aia"], ["https://tec.openplanner.team/stops/N529afb", "https://tec.openplanner.team/stops/N576afb"], ["https://tec.openplanner.team/stops/LWApr%C3%A9s3", "https://tec.openplanner.team/stops/LWAwegg2"], ["https://tec.openplanner.team/stops/LVbpave2", "https://tec.openplanner.team/stops/LVbstre2"], ["https://tec.openplanner.team/stops/Lvicitw2", "https://tec.openplanner.team/stops/Lviweri2"], ["https://tec.openplanner.team/stops/H1ms276a", "https://tec.openplanner.team/stops/H1ms906a"], ["https://tec.openplanner.team/stops/LSZarbe2", "https://tec.openplanner.team/stops/LTgbalm2"], ["https://tec.openplanner.team/stops/LSCc39-1", "https://tec.openplanner.team/stops/LSCc39-2"], ["https://tec.openplanner.team/stops/H4ty326a", "https://tec.openplanner.team/stops/H4vx361a"], ["https://tec.openplanner.team/stops/X923ada", "https://tec.openplanner.team/stops/X949ala"], ["https://tec.openplanner.team/stops/N215aab", "https://tec.openplanner.team/stops/N261agb"], ["https://tec.openplanner.team/stops/LmHbien1", "https://tec.openplanner.team/stops/LmHburg1"], ["https://tec.openplanner.team/stops/LOtthie2", "https://tec.openplanner.team/stops/LVHbrai2"], ["https://tec.openplanner.team/stops/LpEbins1", "https://tec.openplanner.team/stops/LtEnatu2"], ["https://tec.openplanner.team/stops/LaLkabi1", "https://tec.openplanner.team/stops/LaLkirc*"], ["https://tec.openplanner.team/stops/X725ada", "https://tec.openplanner.team/stops/X725aha"], ["https://tec.openplanner.team/stops/X747afa", "https://tec.openplanner.team/stops/X747afb"], ["https://tec.openplanner.team/stops/X892afb", "https://tec.openplanner.team/stops/X892aga"], ["https://tec.openplanner.team/stops/H1og135a", "https://tec.openplanner.team/stops/H1og135b"], ["https://tec.openplanner.team/stops/Crcrgar2", "https://tec.openplanner.team/stops/NH03aga"], ["https://tec.openplanner.team/stops/LHHtill1", "https://tec.openplanner.team/stops/LSG111-1"], ["https://tec.openplanner.team/stops/Ccoha602", "https://tec.openplanner.team/stops/Ctrstro1"], ["https://tec.openplanner.team/stops/H1al108a", "https://tec.openplanner.team/stops/H1go169a"], ["https://tec.openplanner.team/stops/Blemkap1", "https://tec.openplanner.team/stops/Blemwob3"], ["https://tec.openplanner.team/stops/LBahaut1", "https://tec.openplanner.team/stops/LTAairi2"], ["https://tec.openplanner.team/stops/LHHlomb1", "https://tec.openplanner.team/stops/LOmlime2"], ["https://tec.openplanner.team/stops/LdUkreu1", "https://tec.openplanner.team/stops/LlE02--2"], ["https://tec.openplanner.team/stops/LATfont2", "https://tec.openplanner.team/stops/LVNbale1"], ["https://tec.openplanner.team/stops/Bhalber3", "https://tec.openplanner.team/stops/Bhalrat2"], ["https://tec.openplanner.team/stops/N117ana", "https://tec.openplanner.team/stops/N117anb"], ["https://tec.openplanner.team/stops/H4te258a", "https://tec.openplanner.team/stops/H4te259a"], ["https://tec.openplanner.team/stops/H4ty269a", "https://tec.openplanner.team/stops/H4ty294a"], ["https://tec.openplanner.team/stops/LENaout1", "https://tec.openplanner.team/stops/LENchem2"], ["https://tec.openplanner.team/stops/Llgbass2", "https://tec.openplanner.team/stops/Llghec-1"], ["https://tec.openplanner.team/stops/H1hr120b", "https://tec.openplanner.team/stops/H1hr129a"], ["https://tec.openplanner.team/stops/Cmmcarr1", "https://tec.openplanner.team/stops/Cmmptno2"], ["https://tec.openplanner.team/stops/N501akb", "https://tec.openplanner.team/stops/N501aob"], ["https://tec.openplanner.team/stops/Bmelsab2", "https://tec.openplanner.team/stops/Btilmon2"], ["https://tec.openplanner.team/stops/X741ahb", "https://tec.openplanner.team/stops/X741anb"], ["https://tec.openplanner.team/stops/H4bi100a", "https://tec.openplanner.team/stops/H4eg101d"], ["https://tec.openplanner.team/stops/N507ada", "https://tec.openplanner.team/stops/NL30akb"], ["https://tec.openplanner.team/stops/X912aeb", "https://tec.openplanner.team/stops/X912aja"], ["https://tec.openplanner.team/stops/X940aab", "https://tec.openplanner.team/stops/X940adb"], ["https://tec.openplanner.team/stops/LlgPTAV1", "https://tec.openplanner.team/stops/LlgPTAV4"], ["https://tec.openplanner.team/stops/LFreg--1", "https://tec.openplanner.team/stops/LNEcouc1"], ["https://tec.openplanner.team/stops/Bbgeegl1", "https://tec.openplanner.team/stops/Bwavlep2"], ["https://tec.openplanner.team/stops/LNIec--2", "https://tec.openplanner.team/stops/LSZnive1"], ["https://tec.openplanner.team/stops/LdEkreu1", "https://tec.openplanner.team/stops/LdEschw1"], ["https://tec.openplanner.team/stops/X802ara", "https://tec.openplanner.team/stops/X802asb"], ["https://tec.openplanner.team/stops/N211awa", "https://tec.openplanner.team/stops/N212abb"], ["https://tec.openplanner.team/stops/H4ga167a", "https://tec.openplanner.team/stops/H4ga168b"], ["https://tec.openplanner.team/stops/Cpicite2", "https://tec.openplanner.team/stops/Cpictra2"], ["https://tec.openplanner.team/stops/N513aeb", "https://tec.openplanner.team/stops/N513aoa"], ["https://tec.openplanner.team/stops/Cgycvie1", "https://tec.openplanner.team/stops/Cgymast2"], ["https://tec.openplanner.team/stops/N554abb", "https://tec.openplanner.team/stops/N555aba"], ["https://tec.openplanner.team/stops/H1le124b", "https://tec.openplanner.team/stops/H1le128c"], ["https://tec.openplanner.team/stops/Bbgevil2", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://tec.openplanner.team/stops/Lbrfune*", "https://tec.openplanner.team/stops/Lgrfrai2"], ["https://tec.openplanner.team/stops/X364aaa", "https://tec.openplanner.team/stops/X371agb"], ["https://tec.openplanner.team/stops/N506anb", "https://tec.openplanner.team/stops/N537alb"], ["https://tec.openplanner.team/stops/Bgnvcom2", "https://tec.openplanner.team/stops/Bgnvqve1"], ["https://tec.openplanner.team/stops/N541abb", "https://tec.openplanner.team/stops/N541aca"], ["https://tec.openplanner.team/stops/LChxhav2", "https://tec.openplanner.team/stops/LSW26--1"], ["https://tec.openplanner.team/stops/LeUhutt1", "https://tec.openplanner.team/stops/LeUmeie1"], ["https://tec.openplanner.team/stops/X610adb", "https://tec.openplanner.team/stops/X610aha"], ["https://tec.openplanner.team/stops/Cmqbasv2", "https://tec.openplanner.team/stops/H1ro133a"], ["https://tec.openplanner.team/stops/N120aib", "https://tec.openplanner.team/stops/N120ala"], ["https://tec.openplanner.team/stops/X986aga", "https://tec.openplanner.team/stops/X986aja"], ["https://tec.openplanner.team/stops/LsVbell2", "https://tec.openplanner.team/stops/LsVhunn2"], ["https://tec.openplanner.team/stops/X818ala", "https://tec.openplanner.team/stops/X818alb"], ["https://tec.openplanner.team/stops/LOcgdro2", "https://tec.openplanner.team/stops/LOcgdro4"], ["https://tec.openplanner.team/stops/Bcsgcou1", "https://tec.openplanner.team/stops/Bmrssmc1"], ["https://tec.openplanner.team/stops/LRtmame2", "https://tec.openplanner.team/stops/LSevitu2"], ["https://tec.openplanner.team/stops/Bdoncar1", "https://tec.openplanner.team/stops/Bincdon2"], ["https://tec.openplanner.team/stops/LmObahn*", "https://tec.openplanner.team/stops/LmOkape1"], ["https://tec.openplanner.team/stops/Cblcent2", "https://tec.openplanner.team/stops/Cblcent4"], ["https://tec.openplanner.team/stops/Lmndeso1", "https://tec.openplanner.team/stops/Lsmberg2"], ["https://tec.openplanner.team/stops/H1mv238b", "https://tec.openplanner.team/stops/H1mv242a"], ["https://tec.openplanner.team/stops/Clfmonu3", "https://tec.openplanner.team/stops/Clftour2"], ["https://tec.openplanner.team/stops/X731aea", "https://tec.openplanner.team/stops/X986ala"], ["https://tec.openplanner.team/stops/X818aqa", "https://tec.openplanner.team/stops/X818arb"], ["https://tec.openplanner.team/stops/LElgerd5", "https://tec.openplanner.team/stops/LOucarr2"], ["https://tec.openplanner.team/stops/LCSpoud2", "https://tec.openplanner.team/stops/LEN183-2"], ["https://tec.openplanner.team/stops/X763aeb", "https://tec.openplanner.team/stops/X765aga"], ["https://tec.openplanner.team/stops/H4ne135b", "https://tec.openplanner.team/stops/H4ne141b"], ["https://tec.openplanner.team/stops/LBBcarr2", "https://tec.openplanner.team/stops/N223aab"], ["https://tec.openplanner.team/stops/Lsefoot2", "https://tec.openplanner.team/stops/Lsestap1"], ["https://tec.openplanner.team/stops/Lcacaps1", "https://tec.openplanner.team/stops/LNipre-1"], ["https://tec.openplanner.team/stops/Cmofosb2", "https://tec.openplanner.team/stops/Cmoprov2"], ["https://tec.openplanner.team/stops/LaAhaup2", "https://tec.openplanner.team/stops/LaAnorm2"], ["https://tec.openplanner.team/stops/Claptcf2", "https://tec.openplanner.team/stops/NC23afb"], ["https://tec.openplanner.team/stops/LBThaut2", "https://tec.openplanner.team/stops/Lprmana5"], ["https://tec.openplanner.team/stops/N117aoc", "https://tec.openplanner.team/stops/N117aua"], ["https://tec.openplanner.team/stops/LHCandr1", "https://tec.openplanner.team/stops/LHCbran1"], ["https://tec.openplanner.team/stops/LRIcite1", "https://tec.openplanner.team/stops/LRIhous2"], ["https://tec.openplanner.team/stops/X773aia", "https://tec.openplanner.team/stops/X773akb"], ["https://tec.openplanner.team/stops/Bcsepes1", "https://tec.openplanner.team/stops/Bcsepes2"], ["https://tec.openplanner.team/stops/Ccodubo1", "https://tec.openplanner.team/stops/Ccojaur4"], ["https://tec.openplanner.team/stops/Bchapir1", "https://tec.openplanner.team/stops/Bhvltol2"], ["https://tec.openplanner.team/stops/N539aya", "https://tec.openplanner.team/stops/N564acb"], ["https://tec.openplanner.team/stops/Cfmnoci2", "https://tec.openplanner.team/stops/Cfoperz2"], ["https://tec.openplanner.team/stops/Lcebail1", "https://tec.openplanner.team/stops/Lceleje1"], ["https://tec.openplanner.team/stops/LHrbast1", "https://tec.openplanner.team/stops/LHrchat1"], ["https://tec.openplanner.team/stops/Btanbth2", "https://tec.openplanner.team/stops/Btannda2"], ["https://tec.openplanner.team/stops/Bjancha1", "https://tec.openplanner.team/stops/Bjanegl2"], ["https://tec.openplanner.team/stops/X653aab", "https://tec.openplanner.team/stops/X653afa"], ["https://tec.openplanner.team/stops/Cwgmutu1", "https://tec.openplanner.team/stops/Cwgrans4"], ["https://tec.openplanner.team/stops/Lpeflec1", "https://tec.openplanner.team/stops/Lpelouh2"], ["https://tec.openplanner.team/stops/Cmocime1", "https://tec.openplanner.team/stops/Cmohame1"], ["https://tec.openplanner.team/stops/Cfaecmo1", "https://tec.openplanner.team/stops/Cfarcam2"], ["https://tec.openplanner.team/stops/Lagcolo1", "https://tec.openplanner.team/stops/Lemsart2"], ["https://tec.openplanner.team/stops/N519aja", "https://tec.openplanner.team/stops/N519aob"], ["https://tec.openplanner.team/stops/Lhracec2", "https://tec.openplanner.team/stops/Lhrstev1"], ["https://tec.openplanner.team/stops/X601cua", "https://tec.openplanner.team/stops/X601cva"], ["https://tec.openplanner.team/stops/H4ta127a", "https://tec.openplanner.team/stops/H4ta127b"], ["https://tec.openplanner.team/stops/Lghcham2", "https://tec.openplanner.team/stops/Lghreyn1"], ["https://tec.openplanner.team/stops/Llgmara2", "https://tec.openplanner.team/stops/Llgnyst2"], ["https://tec.openplanner.team/stops/LMYmont2", "https://tec.openplanner.team/stops/LVvbouv2"], ["https://tec.openplanner.team/stops/Cvregl2", "https://tec.openplanner.team/stops/Cvrhaie2"], ["https://tec.openplanner.team/stops/LwYkirc1", "https://tec.openplanner.team/stops/LwYkirc2"], ["https://tec.openplanner.team/stops/H1pw123b", "https://tec.openplanner.team/stops/H1wa158a"], ["https://tec.openplanner.team/stops/LFArela4", "https://tec.openplanner.team/stops/LFAwale2"], ["https://tec.openplanner.team/stops/X788afa", "https://tec.openplanner.team/stops/X788agb"], ["https://tec.openplanner.team/stops/H1bx106a", "https://tec.openplanner.team/stops/H1qv111b"], ["https://tec.openplanner.team/stops/N349aab", "https://tec.openplanner.team/stops/N349adb"], ["https://tec.openplanner.team/stops/X641aia", "https://tec.openplanner.team/stops/X641aib"], ["https://tec.openplanner.team/stops/Canpeup1", "https://tec.openplanner.team/stops/Canpeup2"], ["https://tec.openplanner.team/stops/H3br112b", "https://tec.openplanner.team/stops/H3br122b"], ["https://tec.openplanner.team/stops/X601aka", "https://tec.openplanner.team/stops/X601ama"], ["https://tec.openplanner.team/stops/LMAbijo2", "https://tec.openplanner.team/stops/LMAgb--2"], ["https://tec.openplanner.team/stops/N568aca", "https://tec.openplanner.team/stops/N568ada"], ["https://tec.openplanner.team/stops/Blascvi1", "https://tec.openplanner.team/stops/Blascvi2"], ["https://tec.openplanner.team/stops/X982aua", "https://tec.openplanner.team/stops/X982aub"], ["https://tec.openplanner.team/stops/Balswin3", "https://tec.openplanner.team/stops/Brsgfon2"], ["https://tec.openplanner.team/stops/LTaeg--1", "https://tec.openplanner.team/stops/LTaouch2"], ["https://tec.openplanner.team/stops/H1ms273a", "https://tec.openplanner.team/stops/H1ms914a"], ["https://tec.openplanner.team/stops/N230aea", "https://tec.openplanner.team/stops/N230ala"], ["https://tec.openplanner.team/stops/LMIbois2", "https://tec.openplanner.team/stops/LMIeg--2"], ["https://tec.openplanner.team/stops/Cmaest2", "https://tec.openplanner.team/stops/Cmmn1172"], ["https://tec.openplanner.team/stops/H1th181a", "https://tec.openplanner.team/stops/H3go105a"], ["https://tec.openplanner.team/stops/N539ata", "https://tec.openplanner.team/stops/N539bfa"], ["https://tec.openplanner.team/stops/X658abb", "https://tec.openplanner.team/stops/X671afa"], ["https://tec.openplanner.team/stops/Cgxbeau1", "https://tec.openplanner.team/stops/Cgxbeau2"], ["https://tec.openplanner.team/stops/H4ty333b", "https://tec.openplanner.team/stops/H4ty359b"], ["https://tec.openplanner.team/stops/LThhoul2", "https://tec.openplanner.team/stops/LThplen1"], ["https://tec.openplanner.team/stops/LTRgare0", "https://tec.openplanner.team/stops/LTRgare4"], ["https://tec.openplanner.team/stops/N564adb", "https://tec.openplanner.team/stops/N564aeb"], ["https://tec.openplanner.team/stops/N501ira", "https://tec.openplanner.team/stops/N501jca"], ["https://tec.openplanner.team/stops/Bopprju1", "https://tec.openplanner.team/stops/Bopprju2"], ["https://tec.openplanner.team/stops/LBUchpl1", "https://tec.openplanner.team/stops/LBUmara2"], ["https://tec.openplanner.team/stops/N311adb", "https://tec.openplanner.team/stops/N368abb"], ["https://tec.openplanner.team/stops/X725aha", "https://tec.openplanner.team/stops/X725bda"], ["https://tec.openplanner.team/stops/LSPhapa1", "https://tec.openplanner.team/stops/LSPsorb2"], ["https://tec.openplanner.team/stops/Lccawir1", "https://tec.openplanner.team/stops/Lccawir2"], ["https://tec.openplanner.team/stops/X786aha", "https://tec.openplanner.team/stops/X786aib"], ["https://tec.openplanner.team/stops/N347aca", "https://tec.openplanner.team/stops/N347acb"], ["https://tec.openplanner.team/stops/Lsemany1", "https://tec.openplanner.team/stops/Lsetroq2"], ["https://tec.openplanner.team/stops/N517aga", "https://tec.openplanner.team/stops/N517agb"], ["https://tec.openplanner.team/stops/Bfelcen2", "https://tec.openplanner.team/stops/Bfelpmo2"], ["https://tec.openplanner.team/stops/X764aaa", "https://tec.openplanner.team/stops/X764agb"], ["https://tec.openplanner.team/stops/Ccygara1", "https://tec.openplanner.team/stops/NH01aca"], ["https://tec.openplanner.team/stops/Cflvxsa2", "https://tec.openplanner.team/stops/Cpicite1"], ["https://tec.openplanner.team/stops/N524aab", "https://tec.openplanner.team/stops/N524aba"], ["https://tec.openplanner.team/stops/H2mo122c", "https://tec.openplanner.team/stops/H2mo145a"], ["https://tec.openplanner.team/stops/LwTkabi3", "https://tec.openplanner.team/stops/LwTkabi4"], ["https://tec.openplanner.team/stops/H2ch110a", "https://tec.openplanner.team/stops/H2ch123b"], ["https://tec.openplanner.team/stops/Crsapol1", "https://tec.openplanner.team/stops/Crsmonu2"], ["https://tec.openplanner.team/stops/Bincbbo2", "https://tec.openplanner.team/stops/Boppcar2"], ["https://tec.openplanner.team/stops/N248adb", "https://tec.openplanner.team/stops/N248aeb"], ["https://tec.openplanner.team/stops/Lhrherm2", "https://tec.openplanner.team/stops/Lhrmemo2"], ["https://tec.openplanner.team/stops/Bgoemho2", "https://tec.openplanner.team/stops/Bhakmkr1"], ["https://tec.openplanner.team/stops/LlOdrei2", "https://tec.openplanner.team/stops/LsTgren2"], ["https://tec.openplanner.team/stops/X919afb", "https://tec.openplanner.team/stops/X919ahb"], ["https://tec.openplanner.team/stops/N501gzz", "https://tec.openplanner.team/stops/N501zba"], ["https://tec.openplanner.team/stops/NR21aia", "https://tec.openplanner.team/stops/NR21aib"], ["https://tec.openplanner.team/stops/Bcsen252", "https://tec.openplanner.team/stops/Bsmgmar1"], ["https://tec.openplanner.team/stops/LeYberl2", "https://tec.openplanner.team/stops/LeYwess2"], ["https://tec.openplanner.team/stops/LJAbois1", "https://tec.openplanner.team/stops/Ljhsart2"], ["https://tec.openplanner.team/stops/H1ms275b", "https://tec.openplanner.team/stops/H1ms281b"], ["https://tec.openplanner.team/stops/H4ef109b", "https://tec.openplanner.team/stops/H4ef112a"], ["https://tec.openplanner.team/stops/LSSvill2", "https://tec.openplanner.team/stops/LSSvill4"], ["https://tec.openplanner.team/stops/H2bh114b", "https://tec.openplanner.team/stops/H2bh119a"], ["https://tec.openplanner.team/stops/LARauto1", "https://tec.openplanner.team/stops/LRItour1"], ["https://tec.openplanner.team/stops/N501fby", "https://tec.openplanner.team/stops/N501fbz"], ["https://tec.openplanner.team/stops/H1ob328a", "https://tec.openplanner.team/stops/H1ob336a"], ["https://tec.openplanner.team/stops/Lstchim2", "https://tec.openplanner.team/stops/Lsteduc2"], ["https://tec.openplanner.team/stops/LBVplan1", "https://tec.openplanner.team/stops/LBVplan2"], ["https://tec.openplanner.team/stops/X826aaa", "https://tec.openplanner.team/stops/X834aab"], ["https://tec.openplanner.team/stops/Bgemrom3", "https://tec.openplanner.team/stops/Bgrmfga1"], ["https://tec.openplanner.team/stops/X681afb", "https://tec.openplanner.team/stops/X681agb"], ["https://tec.openplanner.team/stops/LBjflor2", "https://tec.openplanner.team/stops/LBjvill2"], ["https://tec.openplanner.team/stops/Bnivrsh1", "https://tec.openplanner.team/stops/Bnivzon2"], ["https://tec.openplanner.team/stops/X359afa", "https://tec.openplanner.team/stops/X359aib"], ["https://tec.openplanner.team/stops/Borbod92", "https://tec.openplanner.team/stops/Borbode2"], ["https://tec.openplanner.team/stops/Bmarmco2", "https://tec.openplanner.team/stops/Bmarpla2"], ["https://tec.openplanner.team/stops/H1ag107a", "https://tec.openplanner.team/stops/H1an102a"], ["https://tec.openplanner.team/stops/Llmlaro1", "https://tec.openplanner.team/stops/Lprcite1"], ["https://tec.openplanner.team/stops/N135aub", "https://tec.openplanner.team/stops/N135bfb"], ["https://tec.openplanner.team/stops/Lpeatel2", "https://tec.openplanner.team/stops/Lpeptle2"], ["https://tec.openplanner.team/stops/LcRmuhl2", "https://tec.openplanner.team/stops/LnUhohe1"], ["https://tec.openplanner.team/stops/N117arb", "https://tec.openplanner.team/stops/N117baa"], ["https://tec.openplanner.team/stops/H4fa125a", "https://tec.openplanner.team/stops/H4hq129b"], ["https://tec.openplanner.team/stops/X766agb", "https://tec.openplanner.team/stops/X766aja"], ["https://tec.openplanner.team/stops/Lgrmagd2", "https://tec.openplanner.team/stops/Lgrrein2"], ["https://tec.openplanner.team/stops/Cnaplan1", "https://tec.openplanner.team/stops/NC14aqa"], ["https://tec.openplanner.team/stops/H1do122a", "https://tec.openplanner.team/stops/H1do131a"], ["https://tec.openplanner.team/stops/N209amb", "https://tec.openplanner.team/stops/NL81ahb"], ["https://tec.openplanner.team/stops/LbTkreu2", "https://tec.openplanner.team/stops/LbTkreu3"], ["https://tec.openplanner.team/stops/Bbcolno2", "https://tec.openplanner.team/stops/H3br102a"], ["https://tec.openplanner.team/stops/H1au101b", "https://tec.openplanner.team/stops/H1au103b"], ["https://tec.openplanner.team/stops/X768ald", "https://tec.openplanner.team/stops/X791aaa"], ["https://tec.openplanner.team/stops/Bfelada1", "https://tec.openplanner.team/stops/Bfelbri2"], ["https://tec.openplanner.team/stops/H4lz127b", "https://tec.openplanner.team/stops/H4tp147b"], ["https://tec.openplanner.team/stops/X657adb", "https://tec.openplanner.team/stops/X657anb"], ["https://tec.openplanner.team/stops/Cjochap1", "https://tec.openplanner.team/stops/Cjojonc2"], ["https://tec.openplanner.team/stops/Buccbou1", "https://tec.openplanner.team/stops/Bucccre2"], ["https://tec.openplanner.team/stops/LBgbaga2", "https://tec.openplanner.team/stops/LWahott2"], ["https://tec.openplanner.team/stops/N512aqa", "https://tec.openplanner.team/stops/N512arb"], ["https://tec.openplanner.team/stops/Cmlm2411", "https://tec.openplanner.team/stops/Cmlphai1"], ["https://tec.openplanner.team/stops/X721aaa", "https://tec.openplanner.team/stops/X721afb"], ["https://tec.openplanner.team/stops/X904aca", "https://tec.openplanner.team/stops/X904acb"], ["https://tec.openplanner.team/stops/LFsphar1", "https://tec.openplanner.team/stops/LFsphar2"], ["https://tec.openplanner.team/stops/H4oe150a", "https://tec.openplanner.team/stops/H4oe151a"], ["https://tec.openplanner.team/stops/Lbocruc1", "https://tec.openplanner.team/stops/Lbofrai2"], ["https://tec.openplanner.team/stops/Lsmberg1", "https://tec.openplanner.team/stops/Lveinva2"], ["https://tec.openplanner.team/stops/Bnivgam1", "https://tec.openplanner.team/stops/Bnivh%C3%B4p2"], ["https://tec.openplanner.team/stops/N308azb", "https://tec.openplanner.team/stops/N368aaa"], ["https://tec.openplanner.team/stops/LVIcarm1", "https://tec.openplanner.team/stops/LVIcarm2"], ["https://tec.openplanner.team/stops/X595adb", "https://tec.openplanner.team/stops/X595aeb"], ["https://tec.openplanner.team/stops/N117aub", "https://tec.openplanner.team/stops/N117aud"], ["https://tec.openplanner.team/stops/Cchparc3", "https://tec.openplanner.team/stops/Cchparc5"], ["https://tec.openplanner.team/stops/N515apa", "https://tec.openplanner.team/stops/N515ara"], ["https://tec.openplanner.team/stops/H4fl113b", "https://tec.openplanner.team/stops/H4fl115a"], ["https://tec.openplanner.team/stops/LAo161-1", "https://tec.openplanner.team/stops/LAo170-1"], ["https://tec.openplanner.team/stops/X982bda", "https://tec.openplanner.team/stops/X982bja"], ["https://tec.openplanner.team/stops/LATdony1", "https://tec.openplanner.team/stops/LHUtfal1"], ["https://tec.openplanner.team/stops/N351ata", "https://tec.openplanner.team/stops/X358afa"], ["https://tec.openplanner.team/stops/Livgera1", "https://tec.openplanner.team/stops/Livmoul2"], ["https://tec.openplanner.team/stops/H4ce101b", "https://tec.openplanner.team/stops/H4ce102a"], ["https://tec.openplanner.team/stops/N540acc", "https://tec.openplanner.team/stops/N540ana"], ["https://tec.openplanner.team/stops/Clibrun1", "https://tec.openplanner.team/stops/Clihame2"], ["https://tec.openplanner.team/stops/H4ga168b", "https://tec.openplanner.team/stops/H4ga169a"], ["https://tec.openplanner.team/stops/H1hh113b", "https://tec.openplanner.team/stops/H1hh114a"], ["https://tec.openplanner.team/stops/LLecarr3", "https://tec.openplanner.team/stops/X547ahb"], ["https://tec.openplanner.team/stops/LOmrela1", "https://tec.openplanner.team/stops/LOmrela2"], ["https://tec.openplanner.team/stops/Btgrpla1", "https://tec.openplanner.team/stops/N584aga"], ["https://tec.openplanner.team/stops/H4ty311b", "https://tec.openplanner.team/stops/H4vx366b"], ["https://tec.openplanner.team/stops/X898afa", "https://tec.openplanner.team/stops/X898afb"], ["https://tec.openplanner.team/stops/LQafond1", "https://tec.openplanner.team/stops/LQafond2"], ["https://tec.openplanner.team/stops/Cgpleco1", "https://tec.openplanner.team/stops/Cgpmoul2"], ["https://tec.openplanner.team/stops/LLOchpl1", "https://tec.openplanner.team/stops/LRRecsc*"], ["https://tec.openplanner.team/stops/Lsnfont2", "https://tec.openplanner.team/stops/Ltihorl1"], ["https://tec.openplanner.team/stops/N352acb", "https://tec.openplanner.team/stops/N352aeb"], ["https://tec.openplanner.team/stops/X601ada", "https://tec.openplanner.team/stops/X601ala"], ["https://tec.openplanner.team/stops/H1te180b", "https://tec.openplanner.team/stops/H1te191a"], ["https://tec.openplanner.team/stops/LNCesne1", "https://tec.openplanner.team/stops/LNCtour1"], ["https://tec.openplanner.team/stops/Ladneuv1", "https://tec.openplanner.team/stops/Lvecrot2"], ["https://tec.openplanner.team/stops/H1at109a", "https://tec.openplanner.team/stops/H1at110b"], ["https://tec.openplanner.team/stops/LSTchal1", "https://tec.openplanner.team/stops/LSTchal4"], ["https://tec.openplanner.team/stops/Lthfagn2", "https://tec.openplanner.team/stops/LWarema1"], ["https://tec.openplanner.team/stops/LBkwind1", "https://tec.openplanner.team/stops/LWEfati2"], ["https://tec.openplanner.team/stops/Bgligra2", "https://tec.openplanner.team/stops/Btlbche1"], ["https://tec.openplanner.team/stops/X641asa", "https://tec.openplanner.team/stops/X641asb"], ["https://tec.openplanner.team/stops/H1qp140b", "https://tec.openplanner.team/stops/H1qp142b"], ["https://tec.openplanner.team/stops/N202aec", "https://tec.openplanner.team/stops/N203afa"], ["https://tec.openplanner.team/stops/X804afa", "https://tec.openplanner.team/stops/X804bdb"], ["https://tec.openplanner.team/stops/Clbhvil1", "https://tec.openplanner.team/stops/Clbhvil2"], ["https://tec.openplanner.team/stops/LhEtivo2", "https://tec.openplanner.team/stops/LlNsc652"], ["https://tec.openplanner.team/stops/Lvegend2", "https://tec.openplanner.team/stops/Lvelobe2"], ["https://tec.openplanner.team/stops/H4ga167b", "https://tec.openplanner.team/stops/H4ga168b"], ["https://tec.openplanner.team/stops/Lveecol2", "https://tec.openplanner.team/stops/Lvehv--4"], ["https://tec.openplanner.team/stops/Bjodint2", "https://tec.openplanner.team/stops/NR10aba"], ["https://tec.openplanner.team/stops/H4bc102a", "https://tec.openplanner.team/stops/H4bc108a"], ["https://tec.openplanner.team/stops/LhSschn1", "https://tec.openplanner.team/stops/LhSwind2"], ["https://tec.openplanner.team/stops/N519aac", "https://tec.openplanner.team/stops/N519acb"], ["https://tec.openplanner.team/stops/Bgnvdep1", "https://tec.openplanner.team/stops/Bgnvoha6"], ["https://tec.openplanner.team/stops/N501dha", "https://tec.openplanner.team/stops/N501lkb"], ["https://tec.openplanner.team/stops/X731acb", "https://tec.openplanner.team/stops/X731aja"], ["https://tec.openplanner.team/stops/LhGadap1", "https://tec.openplanner.team/stops/LhGfl241"], ["https://tec.openplanner.team/stops/Lghencl2", "https://tec.openplanner.team/stops/Lghflot3"], ["https://tec.openplanner.team/stops/X636aqb", "https://tec.openplanner.team/stops/X636aqc"], ["https://tec.openplanner.team/stops/Bllnlen1", "https://tec.openplanner.team/stops/Bmsgaxp1"], ["https://tec.openplanner.team/stops/Bstecou2", "https://tec.openplanner.team/stops/Bstemco2"], ["https://tec.openplanner.team/stops/Lfhgara1", "https://tec.openplanner.team/stops/Lpomart1"], ["https://tec.openplanner.team/stops/X992afa", "https://tec.openplanner.team/stops/X992afb"], ["https://tec.openplanner.team/stops/H4ru241b", "https://tec.openplanner.team/stops/H4ru245b"], ["https://tec.openplanner.team/stops/X354afa", "https://tec.openplanner.team/stops/X354agb"], ["https://tec.openplanner.team/stops/X601boa", "https://tec.openplanner.team/stops/X601bob"], ["https://tec.openplanner.team/stops/LWechea1", "https://tec.openplanner.team/stops/LWelogi1"], ["https://tec.openplanner.team/stops/N244aka", "https://tec.openplanner.team/stops/N244asa"], ["https://tec.openplanner.team/stops/LNAbass2", "https://tec.openplanner.team/stops/LNAmart1"], ["https://tec.openplanner.team/stops/Blmlbif2", "https://tec.openplanner.team/stops/Brixpbs2"], ["https://tec.openplanner.team/stops/H4ce100a", "https://tec.openplanner.team/stops/H4mx115b"], ["https://tec.openplanner.team/stops/N534bda", "https://tec.openplanner.team/stops/N534byb"], ["https://tec.openplanner.team/stops/X663aca", "https://tec.openplanner.team/stops/X769arb"], ["https://tec.openplanner.team/stops/LNEbois1", "https://tec.openplanner.team/stops/LOLvill1"], ["https://tec.openplanner.team/stops/X661bca", "https://tec.openplanner.team/stops/X661bcb"], ["https://tec.openplanner.team/stops/LDOandr4", "https://tec.openplanner.team/stops/LDOjose1"], ["https://tec.openplanner.team/stops/X604aaa", "https://tec.openplanner.team/stops/X605afa"], ["https://tec.openplanner.team/stops/H4hu119a", "https://tec.openplanner.team/stops/H4hu120b"], ["https://tec.openplanner.team/stops/N158aab", "https://tec.openplanner.team/stops/N158aba"], ["https://tec.openplanner.team/stops/X715apa", "https://tec.openplanner.team/stops/X731aba"], ["https://tec.openplanner.team/stops/Clvorle1", "https://tec.openplanner.team/stops/Cmlsart2"], ["https://tec.openplanner.team/stops/H3bi102b", "https://tec.openplanner.team/stops/H3bi116b"], ["https://tec.openplanner.team/stops/Llgcadr4", "https://tec.openplanner.team/stops/Llgelis1"], ["https://tec.openplanner.team/stops/Cgpauln2", "https://tec.openplanner.team/stops/H2gy113b"], ["https://tec.openplanner.team/stops/LLUdoya2", "https://tec.openplanner.team/stops/LLUtill1"], ["https://tec.openplanner.team/stops/N501dga", "https://tec.openplanner.team/stops/N501dgb"], ["https://tec.openplanner.team/stops/X754ada", "https://tec.openplanner.team/stops/X754aqb"], ["https://tec.openplanner.team/stops/LCSpoud2", "https://tec.openplanner.team/stops/LCSpoud4"], ["https://tec.openplanner.team/stops/Cjuhopi1", "https://tec.openplanner.team/stops/Cjuhopi2"], ["https://tec.openplanner.team/stops/Bjcljau2", "https://tec.openplanner.team/stops/Bjdspon1"], ["https://tec.openplanner.team/stops/X727adb", "https://tec.openplanner.team/stops/X746aaa"], ["https://tec.openplanner.team/stops/N170aca", "https://tec.openplanner.team/stops/N170afa"], ["https://tec.openplanner.team/stops/LBkgrae2", "https://tec.openplanner.team/stops/LBkjenn1"], ["https://tec.openplanner.team/stops/H4wi161a", "https://tec.openplanner.team/stops/H4wi170b"], ["https://tec.openplanner.team/stops/LBJapol2", "https://tec.openplanner.team/stops/LBJlieg1"], ["https://tec.openplanner.team/stops/Cvrchap1", "https://tec.openplanner.team/stops/Cvrfcho2"], ["https://tec.openplanner.team/stops/N229ajb", "https://tec.openplanner.team/stops/N229akc"], ["https://tec.openplanner.team/stops/LREchif1", "https://tec.openplanner.team/stops/LREchif2"], ["https://tec.openplanner.team/stops/X993aba", "https://tec.openplanner.team/stops/X993abd"], ["https://tec.openplanner.team/stops/Crccano2", "https://tec.openplanner.team/stops/Crccano4"], ["https://tec.openplanner.team/stops/Bgliopp2", "https://tec.openplanner.team/stops/Bincdon2"], ["https://tec.openplanner.team/stops/LLUcdoy2", "https://tec.openplanner.team/stops/LLUlieg1"], ["https://tec.openplanner.team/stops/NR21abc", "https://tec.openplanner.team/stops/NR21abd"], ["https://tec.openplanner.team/stops/H1bl102a", "https://tec.openplanner.team/stops/H1bl104b"], ["https://tec.openplanner.team/stops/Ccyga05", "https://tec.openplanner.team/stops/Ccyga6"], ["https://tec.openplanner.team/stops/Bnivfch2", "https://tec.openplanner.team/stops/Bnivgen1"], ["https://tec.openplanner.team/stops/X718aba", "https://tec.openplanner.team/stops/X718afa"], ["https://tec.openplanner.team/stops/N312aab", "https://tec.openplanner.team/stops/N312aca"], ["https://tec.openplanner.team/stops/LHDpota1", "https://tec.openplanner.team/stops/LHDpota4"], ["https://tec.openplanner.team/stops/H1ch102a", "https://tec.openplanner.team/stops/H1ch102b"], ["https://tec.openplanner.team/stops/H1cd114a", "https://tec.openplanner.team/stops/H1cd114b"], ["https://tec.openplanner.team/stops/Bove4ko2", "https://tec.openplanner.team/stops/Bovetdo2"], ["https://tec.openplanner.team/stops/Bgzdgpa1", "https://tec.openplanner.team/stops/Bwavpar1"], ["https://tec.openplanner.team/stops/N145aka", "https://tec.openplanner.team/stops/N150abb"], ["https://tec.openplanner.team/stops/LGLgare*", "https://tec.openplanner.team/stops/LWidepo2"], ["https://tec.openplanner.team/stops/X979aga", "https://tec.openplanner.team/stops/X979agb"], ["https://tec.openplanner.team/stops/LBpecco3", "https://tec.openplanner.team/stops/LGEhosp1"], ["https://tec.openplanner.team/stops/X644ada", "https://tec.openplanner.team/stops/X644aeb"], ["https://tec.openplanner.team/stops/X796aeb", "https://tec.openplanner.team/stops/X986aka"], ["https://tec.openplanner.team/stops/LXoharz5", "https://tec.openplanner.team/stops/X599aga"], ["https://tec.openplanner.team/stops/LBslama1", "https://tec.openplanner.team/stops/NL73ada"], ["https://tec.openplanner.team/stops/X754akb", "https://tec.openplanner.team/stops/X754awa"], ["https://tec.openplanner.team/stops/LLg9---2", "https://tec.openplanner.team/stops/LLgmini2"], ["https://tec.openplanner.team/stops/LTIcime2", "https://tec.openplanner.team/stops/LTIdumo2"], ["https://tec.openplanner.team/stops/X743agb", "https://tec.openplanner.team/stops/X756aga"], ["https://tec.openplanner.team/stops/H4lz117a", "https://tec.openplanner.team/stops/H4lz117b"], ["https://tec.openplanner.team/stops/LHTbaud1", "https://tec.openplanner.team/stops/LHTbonn2"], ["https://tec.openplanner.team/stops/H4eq123a", "https://tec.openplanner.team/stops/H4rc231b"], ["https://tec.openplanner.team/stops/Lseathe1", "https://tec.openplanner.team/stops/Lsefori2"], ["https://tec.openplanner.team/stops/LVnflox1", "https://tec.openplanner.team/stops/LVnflox2"], ["https://tec.openplanner.team/stops/LWEbr051", "https://tec.openplanner.team/stops/LWEbr511"], ["https://tec.openplanner.team/stops/H2me116b", "https://tec.openplanner.team/stops/H2me117a"], ["https://tec.openplanner.team/stops/H4ag102b", "https://tec.openplanner.team/stops/H4ga163a"], ["https://tec.openplanner.team/stops/Crebrux1", "https://tec.openplanner.team/stops/Crecouc1"], ["https://tec.openplanner.team/stops/X891aab", "https://tec.openplanner.team/stops/X891abb"], ["https://tec.openplanner.team/stops/H4wa149a", "https://tec.openplanner.team/stops/H4wa149b"], ["https://tec.openplanner.team/stops/Llgbavi1", "https://tec.openplanner.team/stops/Llgongr4"], ["https://tec.openplanner.team/stops/X911aja", "https://tec.openplanner.team/stops/X911ajb"], ["https://tec.openplanner.team/stops/H1ha185a", "https://tec.openplanner.team/stops/H1ha185b"], ["https://tec.openplanner.team/stops/Bspkbeu1", "https://tec.openplanner.team/stops/H1bd102b"], ["https://tec.openplanner.team/stops/Llgbago1", "https://tec.openplanner.team/stops/Llgglai2"], ["https://tec.openplanner.team/stops/N145aea", "https://tec.openplanner.team/stops/N145aeb"], ["https://tec.openplanner.team/stops/X664apa", "https://tec.openplanner.team/stops/X664apb"], ["https://tec.openplanner.team/stops/H1tl120b", "https://tec.openplanner.team/stops/H1tl121a"], ["https://tec.openplanner.team/stops/X713aib", "https://tec.openplanner.team/stops/X713ama"], ["https://tec.openplanner.team/stops/Btlgast1", "https://tec.openplanner.team/stops/Btlgfto2"], ["https://tec.openplanner.team/stops/N501adb", "https://tec.openplanner.team/stops/N501aia"], ["https://tec.openplanner.team/stops/X901baa", "https://tec.openplanner.team/stops/X943aca"], ["https://tec.openplanner.team/stops/Lbbbuse1", "https://tec.openplanner.team/stops/Ljubruy2"], ["https://tec.openplanner.team/stops/H1ne149a", "https://tec.openplanner.team/stops/H1ne149b"], ["https://tec.openplanner.team/stops/Caircen1", "https://tec.openplanner.team/stops/Crsprai3"], ["https://tec.openplanner.team/stops/LGreg--1", "https://tec.openplanner.team/stops/LHDmc--1"], ["https://tec.openplanner.team/stops/N337aha", "https://tec.openplanner.team/stops/N337aia"], ["https://tec.openplanner.team/stops/LJSec--2", "https://tec.openplanner.team/stops/Lpevove2"], ["https://tec.openplanner.team/stops/Bnivchh1", "https://tec.openplanner.team/stops/Bnivfhu1"], ["https://tec.openplanner.team/stops/Clcfall3", "https://tec.openplanner.team/stops/Csscrot2"], ["https://tec.openplanner.team/stops/H1fl140b", "https://tec.openplanner.team/stops/H1fl142a"], ["https://tec.openplanner.team/stops/Bwatjbo2", "https://tec.openplanner.team/stops/Bwatpai1"], ["https://tec.openplanner.team/stops/LBNforg1", "https://tec.openplanner.team/stops/LDObran1"], ["https://tec.openplanner.team/stops/LEMeg--1", "https://tec.openplanner.team/stops/LLAchpl1"], ["https://tec.openplanner.team/stops/H1hn203a", "https://tec.openplanner.team/stops/H1hn203b"], ["https://tec.openplanner.team/stops/H4ha167a", "https://tec.openplanner.team/stops/H4me213b"], ["https://tec.openplanner.team/stops/X903afb", "https://tec.openplanner.team/stops/X904aaa"], ["https://tec.openplanner.team/stops/N532aeb", "https://tec.openplanner.team/stops/N532ajb"], ["https://tec.openplanner.team/stops/LAUmerc2", "https://tec.openplanner.team/stops/LRmha262"], ["https://tec.openplanner.team/stops/LaAdiep1", "https://tec.openplanner.team/stops/LaAzwei2"], ["https://tec.openplanner.team/stops/H1nm140a", "https://tec.openplanner.team/stops/H1nm141a"], ["https://tec.openplanner.team/stops/Lagfour2", "https://tec.openplanner.team/stops/Lagkink1"], ["https://tec.openplanner.team/stops/LCOcrom2", "https://tec.openplanner.team/stops/Lpelouh2"], ["https://tec.openplanner.team/stops/H4hg154a", "https://tec.openplanner.team/stops/H4hg154b"], ["https://tec.openplanner.team/stops/H4ty274b", "https://tec.openplanner.team/stops/H4ty352a"], ["https://tec.openplanner.team/stops/Bllncyc1", "https://tec.openplanner.team/stops/Bllnrge2"], ["https://tec.openplanner.team/stops/X716afa", "https://tec.openplanner.team/stops/X736aia"], ["https://tec.openplanner.team/stops/Cchicet1", "https://tec.openplanner.team/stops/Clomart2"], ["https://tec.openplanner.team/stops/Cmlclos1", "https://tec.openplanner.team/stops/Cmmbsit2"], ["https://tec.openplanner.team/stops/Brsrbbo2", "https://tec.openplanner.team/stops/Brsreco1"], ["https://tec.openplanner.team/stops/LNIbas-1", "https://tec.openplanner.team/stops/LSPsauv1"], ["https://tec.openplanner.team/stops/N141aoa", "https://tec.openplanner.team/stops/N141aob"], ["https://tec.openplanner.team/stops/H1ht126b", "https://tec.openplanner.team/stops/H1ht131a"], ["https://tec.openplanner.team/stops/LVAbuss1", "https://tec.openplanner.team/stops/LVAmaas1"], ["https://tec.openplanner.team/stops/LMoeg--2", "https://tec.openplanner.team/stops/LMovieu2"], ["https://tec.openplanner.team/stops/H1gh157a", "https://tec.openplanner.team/stops/H1gh165a"], ["https://tec.openplanner.team/stops/X804ama", "https://tec.openplanner.team/stops/X804amb"], ["https://tec.openplanner.team/stops/Lchcomm1", "https://tec.openplanner.team/stops/LHOmc--2"], ["https://tec.openplanner.team/stops/H4ty278a", "https://tec.openplanner.team/stops/H4ty299e"], ["https://tec.openplanner.team/stops/Loubiez3", "https://tec.openplanner.team/stops/Loubour1"], ["https://tec.openplanner.team/stops/Ccodubo2", "https://tec.openplanner.team/stops/Ccojaur4"], ["https://tec.openplanner.team/stops/Bllnfla2", "https://tec.openplanner.team/stops/Bllnfla3"], ["https://tec.openplanner.team/stops/Bmalcar2", "https://tec.openplanner.team/stops/Boppegl2"], ["https://tec.openplanner.team/stops/X224aea", "https://tec.openplanner.team/stops/X224aeb"], ["https://tec.openplanner.team/stops/X805adb", "https://tec.openplanner.team/stops/X805afb"], ["https://tec.openplanner.team/stops/LBBabat1", "https://tec.openplanner.team/stops/LBBcarr1"], ["https://tec.openplanner.team/stops/X818ada", "https://tec.openplanner.team/stops/X818aea"], ["https://tec.openplanner.team/stops/LBahaut1", "https://tec.openplanner.team/stops/LLrbecc1"], ["https://tec.openplanner.team/stops/Caujonc2", "https://tec.openplanner.team/stops/N543cqa"], ["https://tec.openplanner.team/stops/N353afd", "https://tec.openplanner.team/stops/N353ahb"], ["https://tec.openplanner.team/stops/Bspkbeu1", "https://tec.openplanner.team/stops/H1by101b"], ["https://tec.openplanner.team/stops/LBgbaga2", "https://tec.openplanner.team/stops/LBgnach1"], ["https://tec.openplanner.team/stops/Bbgeegl2", "https://tec.openplanner.team/stops/Bbgewal1"], ["https://tec.openplanner.team/stops/N343aeb", "https://tec.openplanner.team/stops/N343aob"], ["https://tec.openplanner.team/stops/H2hl113a", "https://tec.openplanner.team/stops/H2pe157a"], ["https://tec.openplanner.team/stops/H4bo121a", "https://tec.openplanner.team/stops/H4ea132b"], ["https://tec.openplanner.team/stops/X994aga", "https://tec.openplanner.team/stops/X995afb"], ["https://tec.openplanner.team/stops/Cgxfo141", "https://tec.openplanner.team/stops/Csochea1"], ["https://tec.openplanner.team/stops/Lseconc2", "https://tec.openplanner.team/stops/Lsecroi2"], ["https://tec.openplanner.team/stops/X774aba", "https://tec.openplanner.team/stops/X953ada"], ["https://tec.openplanner.team/stops/H2pe158a", "https://tec.openplanner.team/stops/H2pe158b"], ["https://tec.openplanner.team/stops/LmDgeme1", "https://tec.openplanner.team/stops/LmYeich1"], ["https://tec.openplanner.team/stops/LaLkabi1", "https://tec.openplanner.team/stops/LmAaldr2"], ["https://tec.openplanner.team/stops/Cmchai1", "https://tec.openplanner.team/stops/Cmchai2"], ["https://tec.openplanner.team/stops/X804baa", "https://tec.openplanner.team/stops/X804bab"], ["https://tec.openplanner.team/stops/Bhanmou2", "https://tec.openplanner.team/stops/LHNland2"], ["https://tec.openplanner.team/stops/N528awa", "https://tec.openplanner.team/stops/N528awb"], ["https://tec.openplanner.team/stops/LwLfuss2", "https://tec.openplanner.team/stops/LwLprum2"], ["https://tec.openplanner.team/stops/H2bh109b", "https://tec.openplanner.team/stops/H2bh117b"], ["https://tec.openplanner.team/stops/Louaout1", "https://tec.openplanner.team/stops/Loujouh1"], ["https://tec.openplanner.team/stops/N302aba", "https://tec.openplanner.team/stops/N302aca"], ["https://tec.openplanner.team/stops/Bptegna1", "https://tec.openplanner.team/stops/H3st119a"], ["https://tec.openplanner.team/stops/Cgobl%C3%A9r1", "https://tec.openplanner.team/stops/Cgoulb4"], ["https://tec.openplanner.team/stops/H4pq112a", "https://tec.openplanner.team/stops/H4wg122a"], ["https://tec.openplanner.team/stops/Bblagar1", "https://tec.openplanner.team/stops/Bblagar2"], ["https://tec.openplanner.team/stops/Bfelagb1", "https://tec.openplanner.team/stops/Bfelgar3"], ["https://tec.openplanner.team/stops/Bbsicea1", "https://tec.openplanner.team/stops/Bbsicea2"], ["https://tec.openplanner.team/stops/LhM07--2", "https://tec.openplanner.team/stops/LmCkirc2"], ["https://tec.openplanner.team/stops/X775aha", "https://tec.openplanner.team/stops/X775aib"], ["https://tec.openplanner.team/stops/LVttarg1", "https://tec.openplanner.team/stops/LVttarg2"], ["https://tec.openplanner.team/stops/LDmwaef2", "https://tec.openplanner.team/stops/LSGmale2"], ["https://tec.openplanner.team/stops/Ctarpoi2", "https://tec.openplanner.team/stops/N543bpb"], ["https://tec.openplanner.team/stops/Bjod7co2", "https://tec.openplanner.team/stops/Bjodcar2"], ["https://tec.openplanner.team/stops/Btubeur1", "https://tec.openplanner.team/stops/Btubmar2"], ["https://tec.openplanner.team/stops/LSPecho2", "https://tec.openplanner.team/stops/LWM759-1"], ["https://tec.openplanner.team/stops/LABvill2", "https://tec.openplanner.team/stops/LHNtonn1"], ["https://tec.openplanner.team/stops/H4ty309a", "https://tec.openplanner.team/stops/H4ty332c"], ["https://tec.openplanner.team/stops/Llgancd2", "https://tec.openplanner.team/stops/Llgoise1"], ["https://tec.openplanner.team/stops/H1ma231b", "https://tec.openplanner.team/stops/H1mj123b"], ["https://tec.openplanner.team/stops/Lagjard1", "https://tec.openplanner.team/stops/Lagrask1"], ["https://tec.openplanner.team/stops/Lmieg--2", "https://tec.openplanner.team/stops/Lmimc--2"], ["https://tec.openplanner.team/stops/H2sb228c", "https://tec.openplanner.team/stops/H2sb239c"], ["https://tec.openplanner.team/stops/Ldihvce2", "https://tec.openplanner.team/stops/Ldilyce*"], ["https://tec.openplanner.team/stops/Cfvplac2", "https://tec.openplanner.team/stops/H1fv100a"], ["https://tec.openplanner.team/stops/N534avb", "https://tec.openplanner.team/stops/N534bea"], ["https://tec.openplanner.team/stops/X769anb", "https://tec.openplanner.team/stops/X769aoa"], ["https://tec.openplanner.team/stops/LAYathe1", "https://tec.openplanner.team/stops/LAYathe2"], ["https://tec.openplanner.team/stops/Lgrmc--1", "https://tec.openplanner.team/stops/Lgrstou2"], ["https://tec.openplanner.team/stops/LCsraws2", "https://tec.openplanner.team/stops/LWDchpl1"], ["https://tec.openplanner.team/stops/Bwatath2", "https://tec.openplanner.team/stops/Bwatclo1"], ["https://tec.openplanner.team/stops/H1ms250a", "https://tec.openplanner.team/stops/H1ms298a"], ["https://tec.openplanner.team/stops/LHdvill2", "https://tec.openplanner.team/stops/LVtvalu1"], ["https://tec.openplanner.team/stops/Ladegli2", "https://tec.openplanner.team/stops/Ladfoot2"], ["https://tec.openplanner.team/stops/LLNogne2", "https://tec.openplanner.team/stops/LSpxhig2"], ["https://tec.openplanner.team/stops/H4bd108a", "https://tec.openplanner.team/stops/H4ma203a"], ["https://tec.openplanner.team/stops/Bbcocvb2", "https://tec.openplanner.team/stops/Bhptpla2"], ["https://tec.openplanner.team/stops/Cgythio2", "https://tec.openplanner.team/stops/CMsartc2"], ["https://tec.openplanner.team/stops/X870aba", "https://tec.openplanner.team/stops/X870aib"], ["https://tec.openplanner.team/stops/LHUzoni2", "https://tec.openplanner.team/stops/LTieg--1"], ["https://tec.openplanner.team/stops/X983adb", "https://tec.openplanner.team/stops/X983aga"], ["https://tec.openplanner.team/stops/Lrahoig1", "https://tec.openplanner.team/stops/LSAchef2"], ["https://tec.openplanner.team/stops/N531aab", "https://tec.openplanner.team/stops/N532amb"], ["https://tec.openplanner.team/stops/X615aya", "https://tec.openplanner.team/stops/X615azb"], ["https://tec.openplanner.team/stops/H4ha167a", "https://tec.openplanner.team/stops/H4mt222b"], ["https://tec.openplanner.team/stops/N548awb", "https://tec.openplanner.team/stops/N548ayb"], ["https://tec.openplanner.team/stops/X715agb", "https://tec.openplanner.team/stops/X715aha"], ["https://tec.openplanner.team/stops/H4ft132b", "https://tec.openplanner.team/stops/H4oq229b"], ["https://tec.openplanner.team/stops/X782aob", "https://tec.openplanner.team/stops/X783aba"], ["https://tec.openplanner.team/stops/N211ana", "https://tec.openplanner.team/stops/N211anb"], ["https://tec.openplanner.team/stops/Bmouegl1", "https://tec.openplanner.team/stops/Bottegl1"], ["https://tec.openplanner.team/stops/H4eh102b", "https://tec.openplanner.team/stops/H4he101a"], ["https://tec.openplanner.team/stops/X362abb", "https://tec.openplanner.team/stops/X371ajb"], ["https://tec.openplanner.team/stops/LmD181-2", "https://tec.openplanner.team/stops/LmDhoch3"], ["https://tec.openplanner.team/stops/Bdvmc431", "https://tec.openplanner.team/stops/Bdvmccu1"], ["https://tec.openplanner.team/stops/LHolexh1", "https://tec.openplanner.team/stops/LNvrout1"], ["https://tec.openplanner.team/stops/H3th126b", "https://tec.openplanner.team/stops/H3th129b"], ["https://tec.openplanner.team/stops/Lsnbure1", "https://tec.openplanner.team/stops/Lticime2"], ["https://tec.openplanner.team/stops/N122afb", "https://tec.openplanner.team/stops/N122agb"], ["https://tec.openplanner.team/stops/LHFcaqu2", "https://tec.openplanner.team/stops/LHFwaut1"], ["https://tec.openplanner.team/stops/X640anb", "https://tec.openplanner.team/stops/X640ava"], ["https://tec.openplanner.team/stops/Bgzddge1", "https://tec.openplanner.team/stops/Bgzddmo1"], ["https://tec.openplanner.team/stops/H1hc125b", "https://tec.openplanner.team/stops/H1hc127c"], ["https://tec.openplanner.team/stops/H1pw121a", "https://tec.openplanner.team/stops/H1pw121b"], ["https://tec.openplanner.team/stops/N101ana", "https://tec.openplanner.team/stops/N101anb"], ["https://tec.openplanner.team/stops/Bgdhlai1", "https://tec.openplanner.team/stops/Bgdhlai2"], ["https://tec.openplanner.team/stops/Llglaha1", "https://tec.openplanner.team/stops/Llglys-2"], ["https://tec.openplanner.team/stops/NL35aca", "https://tec.openplanner.team/stops/NL35acb"], ["https://tec.openplanner.team/stops/X910afd", "https://tec.openplanner.team/stops/X910aga"], ["https://tec.openplanner.team/stops/Csbplac1", "https://tec.openplanner.team/stops/H1sa114b"], ["https://tec.openplanner.team/stops/X739aba", "https://tec.openplanner.team/stops/X739aca"], ["https://tec.openplanner.team/stops/N234adb", "https://tec.openplanner.team/stops/N243adb"], ["https://tec.openplanner.team/stops/N343aoa", "https://tec.openplanner.team/stops/N350aeb"], ["https://tec.openplanner.team/stops/Bbstchn2", "https://tec.openplanner.team/stops/Bbsttab2"], ["https://tec.openplanner.team/stops/Ctipoui1", "https://tec.openplanner.team/stops/Ctisart1"], ["https://tec.openplanner.team/stops/LOuhalb1", "https://tec.openplanner.team/stops/LOuhalb2"], ["https://tec.openplanner.team/stops/H1sb146a", "https://tec.openplanner.team/stops/H1sb148b"], ["https://tec.openplanner.team/stops/H1br125a", "https://tec.openplanner.team/stops/H1br125b"], ["https://tec.openplanner.team/stops/X757aca", "https://tec.openplanner.team/stops/X757aea"], ["https://tec.openplanner.team/stops/LCsfize1", "https://tec.openplanner.team/stops/LFFruel2"], ["https://tec.openplanner.team/stops/N545aaa", "https://tec.openplanner.team/stops/N545aca"], ["https://tec.openplanner.team/stops/Bsjgegl2", "https://tec.openplanner.team/stops/Bzluegl1"], ["https://tec.openplanner.team/stops/Brebgar1", "https://tec.openplanner.team/stops/Brebhos1"], ["https://tec.openplanner.team/stops/LaMhe421", "https://tec.openplanner.team/stops/LaMwies1"], ["https://tec.openplanner.team/stops/H4eg105a", "https://tec.openplanner.team/stops/H4sl154b"], ["https://tec.openplanner.team/stops/Cchccom1", "https://tec.openplanner.team/stops/Cchccom2"], ["https://tec.openplanner.team/stops/H1pa103b", "https://tec.openplanner.team/stops/H1wa163b"], ["https://tec.openplanner.team/stops/LAWeg--2", "https://tec.openplanner.team/stops/LAWgill2"], ["https://tec.openplanner.team/stops/LLbquar1", "https://tec.openplanner.team/stops/LLbquar2"], ["https://tec.openplanner.team/stops/X870aab", "https://tec.openplanner.team/stops/X870ada"], ["https://tec.openplanner.team/stops/LCx728-2", "https://tec.openplanner.team/stops/LCxhame2"], ["https://tec.openplanner.team/stops/X919aeb", "https://tec.openplanner.team/stops/X919afb"], ["https://tec.openplanner.team/stops/LaTcolo1", "https://tec.openplanner.team/stops/LmCkirc1"], ["https://tec.openplanner.team/stops/N505aea", "https://tec.openplanner.team/stops/N505aeb"], ["https://tec.openplanner.team/stops/Lvcchau1", "https://tec.openplanner.team/stops/Lvcchau2"], ["https://tec.openplanner.team/stops/Caih1631", "https://tec.openplanner.team/stops/N543cca"], ["https://tec.openplanner.team/stops/Bvilcoq1", "https://tec.openplanner.team/stops/Bvilpar2"], ["https://tec.openplanner.team/stops/Lligara2", "https://tec.openplanner.team/stops/Lvochev2"], ["https://tec.openplanner.team/stops/H2ha129b", "https://tec.openplanner.team/stops/H2ha136b"], ["https://tec.openplanner.team/stops/N201aaa", "https://tec.openplanner.team/stops/N201aab"], ["https://tec.openplanner.team/stops/X601caa", "https://tec.openplanner.team/stops/X601dfa"], ["https://tec.openplanner.team/stops/Lcealig1", "https://tec.openplanner.team/stops/Lcesart2"], ["https://tec.openplanner.team/stops/X615aba", "https://tec.openplanner.team/stops/X615bia"], ["https://tec.openplanner.team/stops/H5el112d", "https://tec.openplanner.team/stops/H5el114b"], ["https://tec.openplanner.team/stops/Barcast1", "https://tec.openplanner.team/stops/Barcast2"], ["https://tec.openplanner.team/stops/LsVprum2", "https://tec.openplanner.team/stops/LsVprum3"], ["https://tec.openplanner.team/stops/Lanetie2", "https://tec.openplanner.team/stops/Llgnani2"], ["https://tec.openplanner.team/stops/N160adb", "https://tec.openplanner.team/stops/N160aeb"], ["https://tec.openplanner.team/stops/N549aea", "https://tec.openplanner.team/stops/N550ana"], ["https://tec.openplanner.team/stops/X812aaa", "https://tec.openplanner.team/stops/X812bab"], ["https://tec.openplanner.team/stops/X992aad", "https://tec.openplanner.team/stops/X992aca"], ["https://tec.openplanner.team/stops/H1gc122b", "https://tec.openplanner.team/stops/H1qy136a"], ["https://tec.openplanner.team/stops/H4de112b", "https://tec.openplanner.team/stops/H4de113b"], ["https://tec.openplanner.team/stops/Lgdmaye2", "https://tec.openplanner.team/stops/LWechpl2"], ["https://tec.openplanner.team/stops/LWOsudr1", "https://tec.openplanner.team/stops/LWOsudr2"], ["https://tec.openplanner.team/stops/H4co133b", "https://tec.openplanner.team/stops/H4rx142a"], ["https://tec.openplanner.team/stops/LbUjost2", "https://tec.openplanner.team/stops/LhUkreu2"], ["https://tec.openplanner.team/stops/Bhmmcge1", "https://tec.openplanner.team/stops/Bhmmlad2"], ["https://tec.openplanner.team/stops/H5el101b", "https://tec.openplanner.team/stops/H5el102b"], ["https://tec.openplanner.team/stops/Blascsl1", "https://tec.openplanner.team/stops/Blascsl2"], ["https://tec.openplanner.team/stops/H1bn114a", "https://tec.openplanner.team/stops/H1bn114b"], ["https://tec.openplanner.team/stops/Bottcpl2", "https://tec.openplanner.team/stops/Bottpry1"], ["https://tec.openplanner.team/stops/Llgcamp2", "https://tec.openplanner.team/stops/Llghugo1"], ["https://tec.openplanner.team/stops/X775agb", "https://tec.openplanner.team/stops/X775aja"], ["https://tec.openplanner.team/stops/Bquebut1", "https://tec.openplanner.team/stops/Bquereb1"], ["https://tec.openplanner.team/stops/H4ty307a", "https://tec.openplanner.team/stops/H4ty307b"], ["https://tec.openplanner.team/stops/LESlieg1", "https://tec.openplanner.team/stops/LESmc--1"], ["https://tec.openplanner.team/stops/Ccohotv1", "https://tec.openplanner.team/stops/Ccohuli2"], ["https://tec.openplanner.team/stops/H4fr144a", "https://tec.openplanner.team/stops/H4fr390a"], ["https://tec.openplanner.team/stops/H5pe153a", "https://tec.openplanner.team/stops/H5pe176a"], ["https://tec.openplanner.team/stops/X892abb", "https://tec.openplanner.team/stops/X892aia"], ["https://tec.openplanner.team/stops/X639aob", "https://tec.openplanner.team/stops/X639arb"], ["https://tec.openplanner.team/stops/N536adb", "https://tec.openplanner.team/stops/N536aea"], ["https://tec.openplanner.team/stops/LBTchai4", "https://tec.openplanner.team/stops/LBThaut1"], ["https://tec.openplanner.team/stops/LJEloum1", "https://tec.openplanner.team/stops/LJEniho1"], ["https://tec.openplanner.team/stops/H4ta116a", "https://tec.openplanner.team/stops/H4ta125c"], ["https://tec.openplanner.team/stops/N390abb", "https://tec.openplanner.team/stops/X349aaa"], ["https://tec.openplanner.team/stops/NL76alb", "https://tec.openplanner.team/stops/NL76bcb"], ["https://tec.openplanner.team/stops/Bcrncce1", "https://tec.openplanner.team/stops/N529acb"], ["https://tec.openplanner.team/stops/Becepon1", "https://tec.openplanner.team/stops/H2mi123b"], ["https://tec.openplanner.team/stops/Cmlgoff2", "https://tec.openplanner.team/stops/Cmltemp5"], ["https://tec.openplanner.team/stops/H2hg147b", "https://tec.openplanner.team/stops/H2hg153b"], ["https://tec.openplanner.team/stops/Blhufro2", "https://tec.openplanner.team/stops/Blhuibm2"], ["https://tec.openplanner.team/stops/LJeeg--1", "https://tec.openplanner.team/stops/LJelava2"], ["https://tec.openplanner.team/stops/N536agb", "https://tec.openplanner.team/stops/N536aqb"], ["https://tec.openplanner.team/stops/Ltichif1", "https://tec.openplanner.team/stops/Ltichif2"], ["https://tec.openplanner.team/stops/Bnivpri1", "https://tec.openplanner.team/stops/Bnivvcw1"], ["https://tec.openplanner.team/stops/LAWcite3", "https://tec.openplanner.team/stops/LHGikea2"], ["https://tec.openplanner.team/stops/N360adb", "https://tec.openplanner.team/stops/N360aea"], ["https://tec.openplanner.team/stops/X364aca", "https://tec.openplanner.team/stops/X364ada"], ["https://tec.openplanner.team/stops/Broscha1", "https://tec.openplanner.team/stops/Brosegl1"], ["https://tec.openplanner.team/stops/H1hr117b", "https://tec.openplanner.team/stops/H1hr126a"], ["https://tec.openplanner.team/stops/LLVboss1", "https://tec.openplanner.team/stops/X575aca"], ["https://tec.openplanner.team/stops/Cchba02", "https://tec.openplanner.team/stops/Cchfort1"], ["https://tec.openplanner.team/stops/Cdaptca2", "https://tec.openplanner.team/stops/Cmlthym2"], ["https://tec.openplanner.team/stops/H4ty312a", "https://tec.openplanner.team/stops/H4ty318a"], ["https://tec.openplanner.team/stops/Ljeheur1", "https://tec.openplanner.team/stops/Ljemake2"], ["https://tec.openplanner.team/stops/LDppana1", "https://tec.openplanner.team/stops/LDppana2"], ["https://tec.openplanner.team/stops/Btilgar1", "https://tec.openplanner.team/stops/Btilgar2"], ["https://tec.openplanner.team/stops/H4wu375a", "https://tec.openplanner.team/stops/H4wu375b"], ["https://tec.openplanner.team/stops/Lmodeja2", "https://tec.openplanner.team/stops/Lmoknae2"], ["https://tec.openplanner.team/stops/N244aoa", "https://tec.openplanner.team/stops/N244aob"], ["https://tec.openplanner.team/stops/N118acc", "https://tec.openplanner.team/stops/N118aya"], ["https://tec.openplanner.team/stops/X907acb", "https://tec.openplanner.team/stops/X907adb"], ["https://tec.openplanner.team/stops/X637aca", "https://tec.openplanner.team/stops/X637acb"], ["https://tec.openplanner.team/stops/Bchgegl1", "https://tec.openplanner.team/stops/Bchgpap1"], ["https://tec.openplanner.team/stops/H2se113a", "https://tec.openplanner.team/stops/H2se115a"], ["https://tec.openplanner.team/stops/LAYharz1", "https://tec.openplanner.team/stops/LAYthir2"], ["https://tec.openplanner.team/stops/H1mg108a", "https://tec.openplanner.team/stops/H1mg109a"], ["https://tec.openplanner.team/stops/Ljeegli6", "https://tec.openplanner.team/stops/Ljestat2"], ["https://tec.openplanner.team/stops/Cwgmart1", "https://tec.openplanner.team/stops/Cwgmart2"], ["https://tec.openplanner.team/stops/H4ve134a", "https://tec.openplanner.team/stops/H4ve134b"], ["https://tec.openplanner.team/stops/X757aic", "https://tec.openplanner.team/stops/X757anb"], ["https://tec.openplanner.team/stops/X948asb", "https://tec.openplanner.team/stops/X948aua"], ["https://tec.openplanner.team/stops/LAieg--3", "https://tec.openplanner.team/stops/LGlcarr1"], ["https://tec.openplanner.team/stops/H4am100a", "https://tec.openplanner.team/stops/H4am100b"], ["https://tec.openplanner.team/stops/H1gi118a", "https://tec.openplanner.team/stops/H1gi120a"], ["https://tec.openplanner.team/stops/LXomc--4", "https://tec.openplanner.team/stops/LXopeti1"], ["https://tec.openplanner.team/stops/H4ru242a", "https://tec.openplanner.team/stops/H4ru243a"], ["https://tec.openplanner.team/stops/Lsnecco1", "https://tec.openplanner.team/stops/Lsnecco3"], ["https://tec.openplanner.team/stops/H1gr119b", "https://tec.openplanner.team/stops/H1hr127b"], ["https://tec.openplanner.team/stops/LmHabzw2", "https://tec.openplanner.team/stops/LmHbien1"], ["https://tec.openplanner.team/stops/X899aba", "https://tec.openplanner.team/stops/X899ada"], ["https://tec.openplanner.team/stops/LREaube2", "https://tec.openplanner.team/stops/LREgar-1"], ["https://tec.openplanner.team/stops/LSerout2", "https://tec.openplanner.team/stops/LSetrix2"], ["https://tec.openplanner.team/stops/X371aba", "https://tec.openplanner.team/stops/X371abb"], ["https://tec.openplanner.team/stops/LwAlont1", "https://tec.openplanner.team/stops/LwAlont2"], ["https://tec.openplanner.team/stops/Bwancal1", "https://tec.openplanner.team/stops/Bwanthi1"], ["https://tec.openplanner.team/stops/Blascvi2", "https://tec.openplanner.team/stops/Blasvil2"], ["https://tec.openplanner.team/stops/X664ajb", "https://tec.openplanner.team/stops/X664ata"], ["https://tec.openplanner.team/stops/Ladmoli1", "https://tec.openplanner.team/stops/Ladverv2"], ["https://tec.openplanner.team/stops/Cthathe1", "https://tec.openplanner.team/stops/Cthrlef2"], ["https://tec.openplanner.team/stops/Bbchm381", "https://tec.openplanner.team/stops/Bwaucan1"], ["https://tec.openplanner.team/stops/N501kuc", "https://tec.openplanner.team/stops/N501lia"], ["https://tec.openplanner.team/stops/LCHeg--2", "https://tec.openplanner.team/stops/LCHsaul2"], ["https://tec.openplanner.team/stops/Cjubien1", "https://tec.openplanner.team/stops/Cjugohi2"], ["https://tec.openplanner.team/stops/N232aob", "https://tec.openplanner.team/stops/N286aab"], ["https://tec.openplanner.team/stops/H4gu111a", "https://tec.openplanner.team/stops/H4ta126b"], ["https://tec.openplanner.team/stops/X869aea", "https://tec.openplanner.team/stops/X870adb"], ["https://tec.openplanner.team/stops/LbRfrie1", "https://tec.openplanner.team/stops/LbRkirc1"], ["https://tec.openplanner.team/stops/H1gg114a", "https://tec.openplanner.team/stops/H1gg114b"], ["https://tec.openplanner.team/stops/H4mo154a", "https://tec.openplanner.team/stops/H4mo184b"], ["https://tec.openplanner.team/stops/Clggrfe1", "https://tec.openplanner.team/stops/Clgmaco1"], ["https://tec.openplanner.team/stops/N423acb", "https://tec.openplanner.team/stops/N423aea"], ["https://tec.openplanner.team/stops/X601aqa", "https://tec.openplanner.team/stops/X601aqb"], ["https://tec.openplanner.team/stops/N115aba", "https://tec.openplanner.team/stops/N147afb"], ["https://tec.openplanner.team/stops/Brixcme1", "https://tec.openplanner.team/stops/Brixpbs2"], ["https://tec.openplanner.team/stops/LREheyd1", "https://tec.openplanner.team/stops/LRErive1"], ["https://tec.openplanner.team/stops/N321aba", "https://tec.openplanner.team/stops/N323acb"], ["https://tec.openplanner.team/stops/X941ada", "https://tec.openplanner.team/stops/X942acb"], ["https://tec.openplanner.team/stops/Cchdrai2", "https://tec.openplanner.team/stops/CMwate2"], ["https://tec.openplanner.team/stops/H1ms360a", "https://tec.openplanner.team/stops/H1ms920a"], ["https://tec.openplanner.team/stops/H1je223a", "https://tec.openplanner.team/stops/H1je369a"], ["https://tec.openplanner.team/stops/H1bd101b", "https://tec.openplanner.team/stops/H1hq126a"], ["https://tec.openplanner.team/stops/LHAheml2", "https://tec.openplanner.team/stops/Lvicitw2"], ["https://tec.openplanner.team/stops/Bhalalb1", "https://tec.openplanner.team/stops/Bhalwat2"], ["https://tec.openplanner.team/stops/Bkrawil1", "https://tec.openplanner.team/stops/Bovesol1"], ["https://tec.openplanner.team/stops/X756ada", "https://tec.openplanner.team/stops/X756adb"], ["https://tec.openplanner.team/stops/Llgwild1", "https://tec.openplanner.team/stops/Llgwild6"], ["https://tec.openplanner.team/stops/LTGsucr1", "https://tec.openplanner.team/stops/LTGvill1"], ["https://tec.openplanner.team/stops/N505ala", "https://tec.openplanner.team/stops/N579acb"], ["https://tec.openplanner.team/stops/Ljuargi1", "https://tec.openplanner.team/stops/Ljumiux1"], ["https://tec.openplanner.team/stops/LFFchal1", "https://tec.openplanner.team/stops/LFFeg--2"], ["https://tec.openplanner.team/stops/H4ha171b", "https://tec.openplanner.team/stops/H4me213b"], ["https://tec.openplanner.team/stops/X767ada", "https://tec.openplanner.team/stops/X769aaa"], ["https://tec.openplanner.team/stops/X768aha", "https://tec.openplanner.team/stops/X768ahb"], ["https://tec.openplanner.team/stops/N308aaa", "https://tec.openplanner.team/stops/N308aba"], ["https://tec.openplanner.team/stops/LClsacr1", "https://tec.openplanner.team/stops/LThchar2"], ["https://tec.openplanner.team/stops/Crolema2", "https://tec.openplanner.team/stops/Crorpai1"], ["https://tec.openplanner.team/stops/LVbeg--1", "https://tec.openplanner.team/stops/LVbgend2"], ["https://tec.openplanner.team/stops/LMtegli2", "https://tec.openplanner.team/stops/LMttrou2"], ["https://tec.openplanner.team/stops/LCEhayo1", "https://tec.openplanner.team/stops/LCEhayo2"], ["https://tec.openplanner.team/stops/X952afb", "https://tec.openplanner.team/stops/X954aea"], ["https://tec.openplanner.team/stops/N540aia", "https://tec.openplanner.team/stops/N540alb"], ["https://tec.openplanner.team/stops/Cmaegal2", "https://tec.openplanner.team/stops/Cmastni1"], ["https://tec.openplanner.team/stops/Cjugend3", "https://tec.openplanner.team/stops/Cjuvign2"], ["https://tec.openplanner.team/stops/LLbmalm2", "https://tec.openplanner.team/stops/LLbvith2"], ["https://tec.openplanner.team/stops/Cgrchfe1", "https://tec.openplanner.team/stops/NC02aab"], ["https://tec.openplanner.team/stops/LOltill2", "https://tec.openplanner.team/stops/LOlvill2"], ["https://tec.openplanner.team/stops/LRObarr2", "https://tec.openplanner.team/stops/LWLtamb2"], ["https://tec.openplanner.team/stops/Cmaprov1", "https://tec.openplanner.team/stops/CMprov1"], ["https://tec.openplanner.team/stops/LBTnors2", "https://tec.openplanner.team/stops/LBTxhen1"], ["https://tec.openplanner.team/stops/LFRgode2", "https://tec.openplanner.team/stops/LFRrohe2"], ["https://tec.openplanner.team/stops/H1le117a", "https://tec.openplanner.team/stops/H1le125b"], ["https://tec.openplanner.team/stops/Bmsgbur2", "https://tec.openplanner.team/stops/Bmsgfon1"], ["https://tec.openplanner.team/stops/H4fr386a", "https://tec.openplanner.team/stops/H4fr393a"], ["https://tec.openplanner.team/stops/Lsmberg1", "https://tec.openplanner.team/stops/Lsmpost1"], ["https://tec.openplanner.team/stops/H2ha134a", "https://tec.openplanner.team/stops/H2ha135b"], ["https://tec.openplanner.team/stops/N527aaa", "https://tec.openplanner.team/stops/N533apb"], ["https://tec.openplanner.team/stops/Lhubriq2", "https://tec.openplanner.team/stops/Lhutann2"], ["https://tec.openplanner.team/stops/X354aha", "https://tec.openplanner.team/stops/X354ahb"], ["https://tec.openplanner.team/stops/Cprgran1", "https://tec.openplanner.team/stops/Cprgran2"], ["https://tec.openplanner.team/stops/X601aea", "https://tec.openplanner.team/stops/X601ala"], ["https://tec.openplanner.team/stops/Bsomh671", "https://tec.openplanner.team/stops/Bsompri1"], ["https://tec.openplanner.team/stops/LHUmess2", "https://tec.openplanner.team/stops/LTiec--1"], ["https://tec.openplanner.team/stops/H4ty329a", "https://tec.openplanner.team/stops/H4ty339b"], ["https://tec.openplanner.team/stops/LkEheyg2", "https://tec.openplanner.team/stops/LkEspor1"], ["https://tec.openplanner.team/stops/LWRcruc1", "https://tec.openplanner.team/stops/LWRgare1"], ["https://tec.openplanner.team/stops/N260aaa", "https://tec.openplanner.team/stops/N260aeb"], ["https://tec.openplanner.team/stops/H1pa112a", "https://tec.openplanner.team/stops/H1pa112b"], ["https://tec.openplanner.team/stops/N220aaa", "https://tec.openplanner.team/stops/X394aaa"], ["https://tec.openplanner.team/stops/Bauddel1", "https://tec.openplanner.team/stops/Baudhan2"], ["https://tec.openplanner.team/stops/Cjulamb2", "https://tec.openplanner.team/stops/Cjulamb4"], ["https://tec.openplanner.team/stops/LBkjenn1", "https://tec.openplanner.team/stops/LBkjenn2"], ["https://tec.openplanner.team/stops/X723aja", "https://tec.openplanner.team/stops/X723ajb"], ["https://tec.openplanner.team/stops/H1fa118a", "https://tec.openplanner.team/stops/H1pe131a"], ["https://tec.openplanner.team/stops/H4hu114a", "https://tec.openplanner.team/stops/H4hu122b"], ["https://tec.openplanner.team/stops/N207aab", "https://tec.openplanner.team/stops/N207acb"], ["https://tec.openplanner.team/stops/Lmndeso1", "https://tec.openplanner.team/stops/Lsmtini1"], ["https://tec.openplanner.team/stops/N534atc", "https://tec.openplanner.team/stops/N534ava"], ["https://tec.openplanner.team/stops/X901aqa", "https://tec.openplanner.team/stops/X901aqb"], ["https://tec.openplanner.team/stops/LLrlour1", "https://tec.openplanner.team/stops/LLrquar1"], ["https://tec.openplanner.team/stops/N501bfb", "https://tec.openplanner.team/stops/N501hsz"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N313aca"], ["https://tec.openplanner.team/stops/X824aja", "https://tec.openplanner.team/stops/X824ajb"], ["https://tec.openplanner.team/stops/N127aia", "https://tec.openplanner.team/stops/N127aib"], ["https://tec.openplanner.team/stops/X805aac", "https://tec.openplanner.team/stops/X805agb"], ["https://tec.openplanner.team/stops/Blilgar1", "https://tec.openplanner.team/stops/Blilhay1"], ["https://tec.openplanner.team/stops/LeYgros1", "https://tec.openplanner.team/stops/LeYgros2"], ["https://tec.openplanner.team/stops/X640arb", "https://tec.openplanner.team/stops/X640asa"], ["https://tec.openplanner.team/stops/H1et101b", "https://tec.openplanner.team/stops/H1et102a"], ["https://tec.openplanner.team/stops/NL35aga", "https://tec.openplanner.team/stops/NL35agb"], ["https://tec.openplanner.team/stops/Bmoucnd1", "https://tec.openplanner.team/stops/Bmoucnd2"], ["https://tec.openplanner.team/stops/X362ada", "https://tec.openplanner.team/stops/X362adb"], ["https://tec.openplanner.team/stops/LRRecdu2", "https://tec.openplanner.team/stops/LRRtrix1"], ["https://tec.openplanner.team/stops/Cmmlong1", "https://tec.openplanner.team/stops/Cmmlong2"], ["https://tec.openplanner.team/stops/LBRmout4", "https://tec.openplanner.team/stops/LVHbrai2"], ["https://tec.openplanner.team/stops/Crajasm3", "https://tec.openplanner.team/stops/Crajasm4"], ["https://tec.openplanner.team/stops/Cfrcoop1", "https://tec.openplanner.team/stops/Cfrmon4"], ["https://tec.openplanner.team/stops/Lanegal1", "https://tec.openplanner.team/stops/Lanegal2"], ["https://tec.openplanner.team/stops/N232bcb", "https://tec.openplanner.team/stops/N232bgb"], ["https://tec.openplanner.team/stops/Bbaubon1", "https://tec.openplanner.team/stops/Bbaubru1"], ["https://tec.openplanner.team/stops/LSIespe1", "https://tec.openplanner.team/stops/LSImewi1"], ["https://tec.openplanner.team/stops/LHgroso1", "https://tec.openplanner.team/stops/LHgtomb1"], ["https://tec.openplanner.team/stops/X660agb", "https://tec.openplanner.team/stops/X660ajb"], ["https://tec.openplanner.team/stops/Ctuplac3", "https://tec.openplanner.team/stops/Ctusold1"], ["https://tec.openplanner.team/stops/H1ho122a", "https://tec.openplanner.team/stops/H1ho122b"], ["https://tec.openplanner.team/stops/X902aya", "https://tec.openplanner.team/stops/X902bgb"], ["https://tec.openplanner.team/stops/Ccogera1", "https://tec.openplanner.team/stops/Ccogera2"], ["https://tec.openplanner.team/stops/H1gn148b", "https://tec.openplanner.team/stops/H1ol146b"], ["https://tec.openplanner.team/stops/N234aaa", "https://tec.openplanner.team/stops/N243adb"], ["https://tec.openplanner.team/stops/X743aca", "https://tec.openplanner.team/stops/X743ada"], ["https://tec.openplanner.team/stops/LJAcent2", "https://tec.openplanner.team/stops/LJAherb1"], ["https://tec.openplanner.team/stops/Cflvxsa1", "https://tec.openplanner.team/stops/Cwgpatr1"], ["https://tec.openplanner.team/stops/N551adb", "https://tec.openplanner.team/stops/N551aqb"], ["https://tec.openplanner.team/stops/H4ch115b", "https://tec.openplanner.team/stops/H4ty321b"], ["https://tec.openplanner.team/stops/N503aba", "https://tec.openplanner.team/stops/N503alb"], ["https://tec.openplanner.team/stops/X982aja", "https://tec.openplanner.team/stops/X982bxa"], ["https://tec.openplanner.team/stops/H1ne146a", "https://tec.openplanner.team/stops/H1ne146b"], ["https://tec.openplanner.team/stops/LHAleru1", "https://tec.openplanner.team/stops/Lvicitw2"], ["https://tec.openplanner.team/stops/LaMhe831", "https://tec.openplanner.team/stops/LeIkirr1"], ["https://tec.openplanner.team/stops/H4ir163a", "https://tec.openplanner.team/stops/H4ir164b"], ["https://tec.openplanner.team/stops/H5rx126b", "https://tec.openplanner.team/stops/H5rx127a"], ["https://tec.openplanner.team/stops/Bpielom2", "https://tec.openplanner.team/stops/Bpiepla2"], ["https://tec.openplanner.team/stops/Cfrfaub2", "https://tec.openplanner.team/stops/Cvp3til4"], ["https://tec.openplanner.team/stops/LNCneuv2", "https://tec.openplanner.team/stops/LRachen2"], ["https://tec.openplanner.team/stops/LHFappe1", "https://tec.openplanner.team/stops/LHFappe4"], ["https://tec.openplanner.team/stops/X654aja", "https://tec.openplanner.team/stops/X670arb"], ["https://tec.openplanner.team/stops/N584ada", "https://tec.openplanner.team/stops/N584alb"], ["https://tec.openplanner.team/stops/Lghhaut2", "https://tec.openplanner.team/stops/Lghwass1"], ["https://tec.openplanner.team/stops/Bwavgar1", "https://tec.openplanner.team/stops/Bwavgar8"], ["https://tec.openplanner.team/stops/Bhmmhde1", "https://tec.openplanner.team/stops/Btlgmar1"], ["https://tec.openplanner.team/stops/LSDheus1", "https://tec.openplanner.team/stops/LSDvill1"], ["https://tec.openplanner.team/stops/X641ada", "https://tec.openplanner.team/stops/X641agb"], ["https://tec.openplanner.team/stops/H4mv191b", "https://tec.openplanner.team/stops/H4oe149b"], ["https://tec.openplanner.team/stops/H1so131e", "https://tec.openplanner.team/stops/H1so131f"], ["https://tec.openplanner.team/stops/Lvevert1", "https://tec.openplanner.team/stops/Lvevert2"], ["https://tec.openplanner.team/stops/X902awa", "https://tec.openplanner.team/stops/X902baa"], ["https://tec.openplanner.team/stops/N103afb", "https://tec.openplanner.team/stops/N131aeb"], ["https://tec.openplanner.team/stops/X949aeb", "https://tec.openplanner.team/stops/X949ala"], ["https://tec.openplanner.team/stops/H4hu113b", "https://tec.openplanner.team/stops/H4hu117a"], ["https://tec.openplanner.team/stops/Bbrycar1", "https://tec.openplanner.team/stops/Bbryfon1"], ["https://tec.openplanner.team/stops/N501doa", "https://tec.openplanner.team/stops/N501dqb"], ["https://tec.openplanner.team/stops/X614apa", "https://tec.openplanner.team/stops/X614atb"], ["https://tec.openplanner.team/stops/H3bi102a", "https://tec.openplanner.team/stops/H3bi108b"], ["https://tec.openplanner.team/stops/Brsgecu1", "https://tec.openplanner.team/stops/Brsgecu2"], ["https://tec.openplanner.team/stops/N145aca", "https://tec.openplanner.team/stops/N145aec"], ["https://tec.openplanner.team/stops/H4ty293b", "https://tec.openplanner.team/stops/H4ty310b"], ["https://tec.openplanner.team/stops/Brsrpch2", "https://tec.openplanner.team/stops/Brsrrcu2"], ["https://tec.openplanner.team/stops/N124acb", "https://tec.openplanner.team/stops/N150aba"], ["https://tec.openplanner.team/stops/Ladpara1", "https://tec.openplanner.team/stops/Lvehv--1"], ["https://tec.openplanner.team/stops/Llggosw1", "https://tec.openplanner.team/stops/Llgmare5"], ["https://tec.openplanner.team/stops/N211aya", "https://tec.openplanner.team/stops/N225ahb"], ["https://tec.openplanner.team/stops/Bbgnton1", "https://tec.openplanner.team/stops/N530ahb"], ["https://tec.openplanner.team/stops/H2bh115b", "https://tec.openplanner.team/stops/H2mg142a"], ["https://tec.openplanner.team/stops/N424aea", "https://tec.openplanner.team/stops/N425aaa"], ["https://tec.openplanner.team/stops/H4cl112b", "https://tec.openplanner.team/stops/H4cl113b"], ["https://tec.openplanner.team/stops/N525aka", "https://tec.openplanner.team/stops/N525aza"], ["https://tec.openplanner.team/stops/LSDheus2", "https://tec.openplanner.team/stops/LTreg--1"], ["https://tec.openplanner.team/stops/Ladgron2", "https://tec.openplanner.team/stops/Ladplen*"], ["https://tec.openplanner.team/stops/H1hr120a", "https://tec.openplanner.team/stops/H1hr122a"], ["https://tec.openplanner.team/stops/N501hfa", "https://tec.openplanner.team/stops/N501hjc"], ["https://tec.openplanner.team/stops/H1fr115a", "https://tec.openplanner.team/stops/H1fr151b"], ["https://tec.openplanner.team/stops/Bhalh311", "https://tec.openplanner.team/stops/Bhalrat2"], ["https://tec.openplanner.team/stops/X604aba", "https://tec.openplanner.team/stops/X604abb"], ["https://tec.openplanner.team/stops/LSTparf2", "https://tec.openplanner.team/stops/LTPtroi2"], ["https://tec.openplanner.team/stops/Lagtilf1", "https://tec.openplanner.team/stops/Lagtilf2"], ["https://tec.openplanner.team/stops/H4bo121b", "https://tec.openplanner.team/stops/H4og211b"], ["https://tec.openplanner.team/stops/NL81ada", "https://tec.openplanner.team/stops/NL81adb"], ["https://tec.openplanner.team/stops/LLVeg--1", "https://tec.openplanner.team/stops/X575aea"], ["https://tec.openplanner.team/stops/N501idb", "https://tec.openplanner.team/stops/N501imb"], ["https://tec.openplanner.team/stops/H1ho131b", "https://tec.openplanner.team/stops/H1ho143a"], ["https://tec.openplanner.team/stops/X720aaa", "https://tec.openplanner.team/stops/X720aab"], ["https://tec.openplanner.team/stops/Cvtegli1", "https://tec.openplanner.team/stops/Cvtvail2"], ["https://tec.openplanner.team/stops/Caiecol1", "https://tec.openplanner.team/stops/Caioign3"], ["https://tec.openplanner.team/stops/LsEdorf1", "https://tec.openplanner.team/stops/LsVfeye2"], ["https://tec.openplanner.team/stops/Llgdoth2", "https://tec.openplanner.team/stops/Llgnata4"], ["https://tec.openplanner.team/stops/LPoneuf1", "https://tec.openplanner.team/stops/LTgsous1"], ["https://tec.openplanner.team/stops/Bwatclo1", "https://tec.openplanner.team/stops/Bwatgar3"], ["https://tec.openplanner.team/stops/X612aca", "https://tec.openplanner.team/stops/X612adb"], ["https://tec.openplanner.team/stops/X602acb", "https://tec.openplanner.team/stops/X623acb"], ["https://tec.openplanner.team/stops/LVIferm1", "https://tec.openplanner.team/stops/LVIlore2"], ["https://tec.openplanner.team/stops/LCLstat2", "https://tec.openplanner.team/stops/NL35adc"], ["https://tec.openplanner.team/stops/Lfhweri1", "https://tec.openplanner.team/stops/Lfhxhor1"], ["https://tec.openplanner.team/stops/X756abb", "https://tec.openplanner.team/stops/X756ada"], ["https://tec.openplanner.team/stops/N308ayb", "https://tec.openplanner.team/stops/N339aab"], ["https://tec.openplanner.team/stops/LAicarr1", "https://tec.openplanner.team/stops/LAicarr2"], ["https://tec.openplanner.team/stops/N225aea", "https://tec.openplanner.team/stops/N225aeb"], ["https://tec.openplanner.team/stops/N577akb", "https://tec.openplanner.team/stops/N578aab"], ["https://tec.openplanner.team/stops/Cchbrou2", "https://tec.openplanner.team/stops/Cchwate2"], ["https://tec.openplanner.team/stops/LLAbure1", "https://tec.openplanner.team/stops/LPlpomp1"], ["https://tec.openplanner.team/stops/N513abb", "https://tec.openplanner.team/stops/N513bhb"], ["https://tec.openplanner.team/stops/Lcefoxh2", "https://tec.openplanner.team/stops/Lcelhon2"], ["https://tec.openplanner.team/stops/LSTvaul2", "https://tec.openplanner.team/stops/LWneg--1"], ["https://tec.openplanner.team/stops/Barqbar1", "https://tec.openplanner.team/stops/Bnivmon1"], ["https://tec.openplanner.team/stops/LRObruy2", "https://tec.openplanner.team/stops/LROmons2"], ["https://tec.openplanner.team/stops/X725bca", "https://tec.openplanner.team/stops/X725bda"], ["https://tec.openplanner.team/stops/H4pi131b", "https://tec.openplanner.team/stops/H4wp153b"], ["https://tec.openplanner.team/stops/H2ll183a", "https://tec.openplanner.team/stops/H2ll260b"], ["https://tec.openplanner.team/stops/H1mb138a", "https://tec.openplanner.team/stops/H1mb168b"], ["https://tec.openplanner.team/stops/NC02aab", "https://tec.openplanner.team/stops/NC02abb"], ["https://tec.openplanner.team/stops/Cgylami2", "https://tec.openplanner.team/stops/Craferr1"], ["https://tec.openplanner.team/stops/H1hm174b", "https://tec.openplanner.team/stops/H1vg359a"], ["https://tec.openplanner.team/stops/N521alb", "https://tec.openplanner.team/stops/N527aca"], ["https://tec.openplanner.team/stops/Louoran1", "https://tec.openplanner.team/stops/Lsebelv1"], ["https://tec.openplanner.team/stops/Laleg--1", "https://tec.openplanner.team/stops/Laltrav2"], ["https://tec.openplanner.team/stops/N874acb", "https://tec.openplanner.team/stops/N894acb"], ["https://tec.openplanner.team/stops/Cmtchet2", "https://tec.openplanner.team/stops/Cmtrbla1"], ["https://tec.openplanner.team/stops/Crcpla1", "https://tec.openplanner.team/stops/Crcplac4"], ["https://tec.openplanner.team/stops/Bbst4br1", "https://tec.openplanner.team/stops/Cbtgemi2"], ["https://tec.openplanner.team/stops/NC14aea", "https://tec.openplanner.team/stops/NC14afb"], ["https://tec.openplanner.team/stops/LJSeg--1", "https://tec.openplanner.team/stops/LJSforg1"], ["https://tec.openplanner.team/stops/X605aab", "https://tec.openplanner.team/stops/X606abb"], ["https://tec.openplanner.team/stops/Bbstbou1", "https://tec.openplanner.team/stops/Bbstfch1"], ["https://tec.openplanner.team/stops/LmNlieb1", "https://tec.openplanner.team/stops/LmNsied1"], ["https://tec.openplanner.team/stops/H4ma201a", "https://tec.openplanner.team/stops/H4oq226a"], ["https://tec.openplanner.team/stops/H1ne148a", "https://tec.openplanner.team/stops/H1ne150a"], ["https://tec.openplanner.team/stops/Cclrgiv1", "https://tec.openplanner.team/stops/Ctuplac2"], ["https://tec.openplanner.team/stops/Laltrap1", "https://tec.openplanner.team/stops/Laltrap2"], ["https://tec.openplanner.team/stops/LSpcarr1", "https://tec.openplanner.team/stops/LSpcarr2"], ["https://tec.openplanner.team/stops/LVbpave1", "https://tec.openplanner.team/stops/NL78acb"], ["https://tec.openplanner.team/stops/N542aac", "https://tec.openplanner.team/stops/N542asb"], ["https://tec.openplanner.team/stops/N501cpa", "https://tec.openplanner.team/stops/N538aya"], ["https://tec.openplanner.team/stops/Llmbouv1", "https://tec.openplanner.team/stops/Llmeg--*"], ["https://tec.openplanner.team/stops/X641arb", "https://tec.openplanner.team/stops/X641avb"], ["https://tec.openplanner.team/stops/N501evb", "https://tec.openplanner.team/stops/N538ara"], ["https://tec.openplanner.team/stops/X982bka", "https://tec.openplanner.team/stops/X982bla"], ["https://tec.openplanner.team/stops/X773ahb", "https://tec.openplanner.team/stops/X773aoa"], ["https://tec.openplanner.team/stops/Llivina2", "https://tec.openplanner.team/stops/Lvtchpl4"], ["https://tec.openplanner.team/stops/LOLbout2", "https://tec.openplanner.team/stops/LSOboeu2"], ["https://tec.openplanner.team/stops/N501aoa", "https://tec.openplanner.team/stops/N501apa"], ["https://tec.openplanner.team/stops/Cmlsana2", "https://tec.openplanner.team/stops/Cmlsart1"], ["https://tec.openplanner.team/stops/Cjxdesc1", "https://tec.openplanner.team/stops/Cjxvalh2"], ["https://tec.openplanner.team/stops/H2sb239b", "https://tec.openplanner.team/stops/H2sb239d"], ["https://tec.openplanner.team/stops/Lverain1", "https://tec.openplanner.team/stops/Lvesomm3"], ["https://tec.openplanner.team/stops/Bgemgcw1", "https://tec.openplanner.team/stops/N522aeb"], ["https://tec.openplanner.team/stops/LETmagn1", "https://tec.openplanner.team/stops/LETmagn2"], ["https://tec.openplanner.team/stops/X727aha", "https://tec.openplanner.team/stops/X747aac"], ["https://tec.openplanner.team/stops/H1he103b", "https://tec.openplanner.team/stops/H1he111a"], ["https://tec.openplanner.team/stops/N308alb", "https://tec.openplanner.team/stops/N308bab"], ["https://tec.openplanner.team/stops/Bbgelre2", "https://tec.openplanner.team/stops/Bwaveur1"], ["https://tec.openplanner.team/stops/N218adb", "https://tec.openplanner.team/stops/N218aeb"], ["https://tec.openplanner.team/stops/X661aha", "https://tec.openplanner.team/stops/X661aja"], ["https://tec.openplanner.team/stops/LTPcarr1", "https://tec.openplanner.team/stops/LTPsatr2"], ["https://tec.openplanner.team/stops/H4ag104b", "https://tec.openplanner.team/stops/H4ag105b"], ["https://tec.openplanner.team/stops/LGMforg2", "https://tec.openplanner.team/stops/LGMvoue2"], ["https://tec.openplanner.team/stops/Ccychco1", "https://tec.openplanner.team/stops/NH01amb"], ["https://tec.openplanner.team/stops/X771aaa", "https://tec.openplanner.team/stops/X771aab"], ["https://tec.openplanner.team/stops/Cchsud07", "https://tec.openplanner.team/stops/Cchsud08"], ["https://tec.openplanner.team/stops/Bboncha1", "https://tec.openplanner.team/stops/Bdvm4ca1"], ["https://tec.openplanner.team/stops/Cluchbl4", "https://tec.openplanner.team/stops/Cpctunn1"], ["https://tec.openplanner.team/stops/H2lc168b", "https://tec.openplanner.team/stops/H2lc171b"], ["https://tec.openplanner.team/stops/LCvneu-1", "https://tec.openplanner.team/stops/LCvneuv4"], ["https://tec.openplanner.team/stops/X921apa", "https://tec.openplanner.team/stops/X923aob"], ["https://tec.openplanner.team/stops/Lanpast1", "https://tec.openplanner.team/stops/Lanplat1"], ["https://tec.openplanner.team/stops/N584boa", "https://tec.openplanner.team/stops/N584bob"], ["https://tec.openplanner.team/stops/Cthnord2", "https://tec.openplanner.team/stops/Cthpibl1"], ["https://tec.openplanner.team/stops/X870acb", "https://tec.openplanner.team/stops/X870ada"], ["https://tec.openplanner.team/stops/X653adc", "https://tec.openplanner.team/stops/X653add"], ["https://tec.openplanner.team/stops/N110afa", "https://tec.openplanner.team/stops/N110afb"], ["https://tec.openplanner.team/stops/H1ag105b", "https://tec.openplanner.team/stops/H1ag107b"], ["https://tec.openplanner.team/stops/H1fl134a", "https://tec.openplanner.team/stops/H1fl134b"], ["https://tec.openplanner.team/stops/X925ama", "https://tec.openplanner.team/stops/X925aob"], ["https://tec.openplanner.team/stops/Llgnico3", "https://tec.openplanner.team/stops/Llgnico5"], ["https://tec.openplanner.team/stops/Cfrmoul2", "https://tec.openplanner.team/stops/Cfrtry2"], ["https://tec.openplanner.team/stops/H4rm107b", "https://tec.openplanner.team/stops/H4rm107c"], ["https://tec.openplanner.team/stops/H5qu145b", "https://tec.openplanner.team/stops/H5qu154a"], ["https://tec.openplanner.team/stops/X926aab", "https://tec.openplanner.team/stops/X927aab"], ["https://tec.openplanner.team/stops/Cmaacac2", "https://tec.openplanner.team/stops/Cmacoll2"], ["https://tec.openplanner.team/stops/H1hy126a", "https://tec.openplanner.team/stops/H1hy126b"], ["https://tec.openplanner.team/stops/Lenhosp2", "https://tec.openplanner.team/stops/Lenmivi*"], ["https://tec.openplanner.team/stops/N226aaa", "https://tec.openplanner.team/stops/N338ahb"], ["https://tec.openplanner.team/stops/LsVhupp1", "https://tec.openplanner.team/stops/LsVrodt1"], ["https://tec.openplanner.team/stops/LGetroi1", "https://tec.openplanner.team/stops/LPbover2"], ["https://tec.openplanner.team/stops/Lrchype2", "https://tec.openplanner.team/stops/Lrclant1"], ["https://tec.openplanner.team/stops/X952ahb", "https://tec.openplanner.team/stops/X954adb"], ["https://tec.openplanner.team/stops/LSZchpl2", "https://tec.openplanner.team/stops/LSZptwa1"], ["https://tec.openplanner.team/stops/N564afb", "https://tec.openplanner.team/stops/N585ahb"], ["https://tec.openplanner.team/stops/LVIjacq1", "https://tec.openplanner.team/stops/LVIlore1"], ["https://tec.openplanner.team/stops/LBslama1", "https://tec.openplanner.team/stops/LBslama2"], ["https://tec.openplanner.team/stops/Bohnegl2", "https://tec.openplanner.team/stops/Bohnrpl2"], ["https://tec.openplanner.team/stops/H1ha192b", "https://tec.openplanner.team/stops/H1vh136c"], ["https://tec.openplanner.team/stops/LSAeg--1", "https://tec.openplanner.team/stops/LSAmous1"], ["https://tec.openplanner.team/stops/H1ms297b", "https://tec.openplanner.team/stops/H1ms932a"], ["https://tec.openplanner.team/stops/Cjuchli2", "https://tec.openplanner.team/stops/Cjuchli3"], ["https://tec.openplanner.team/stops/X614agb", "https://tec.openplanner.team/stops/X624abb"], ["https://tec.openplanner.team/stops/Lseboia2", "https://tec.openplanner.team/stops/Lsecime1"], ["https://tec.openplanner.team/stops/Bjodced2", "https://tec.openplanner.team/stops/Bjodppe1"], ["https://tec.openplanner.team/stops/Lbrdepo2", "https://tec.openplanner.team/stops/Lbrfagn2"], ["https://tec.openplanner.team/stops/N547ala", "https://tec.openplanner.team/stops/N547ald"], ["https://tec.openplanner.team/stops/N543aab", "https://tec.openplanner.team/stops/N543aeb"], ["https://tec.openplanner.team/stops/X641aza", "https://tec.openplanner.team/stops/X641azb"], ["https://tec.openplanner.team/stops/H1fl141a", "https://tec.openplanner.team/stops/H1fl141b"], ["https://tec.openplanner.team/stops/Bgdhcsh1", "https://tec.openplanner.team/stops/Bgdhlai2"], ["https://tec.openplanner.team/stops/Crcrwas1", "https://tec.openplanner.team/stops/Crcrwas2"], ["https://tec.openplanner.team/stops/N549aha", "https://tec.openplanner.team/stops/N549ahb"], ["https://tec.openplanner.team/stops/H1cu118b", "https://tec.openplanner.team/stops/H1cu120b"], ["https://tec.openplanner.team/stops/H1em101a", "https://tec.openplanner.team/stops/H1em105b"], ["https://tec.openplanner.team/stops/N232bfa", "https://tec.openplanner.team/stops/N232bvb"], ["https://tec.openplanner.team/stops/LGemari2", "https://tec.openplanner.team/stops/LMsec--2"], ["https://tec.openplanner.team/stops/H5bl118a", "https://tec.openplanner.team/stops/H5bl118b"], ["https://tec.openplanner.team/stops/H5at107b", "https://tec.openplanner.team/stops/H5at112a"], ["https://tec.openplanner.team/stops/Bndb4ch2", "https://tec.openplanner.team/stops/Btlgreg1"], ["https://tec.openplanner.team/stops/Ljucomb1", "https://tec.openplanner.team/stops/Ljuplpr2"], ["https://tec.openplanner.team/stops/X639amd", "https://tec.openplanner.team/stops/X640aaa"], ["https://tec.openplanner.team/stops/Louairl2", "https://tec.openplanner.team/stops/Lscchat2"], ["https://tec.openplanner.team/stops/X670apb", "https://tec.openplanner.team/stops/X670asb"], ["https://tec.openplanner.team/stops/LEMec--1", "https://tec.openplanner.team/stops/LEMeg--1"], ["https://tec.openplanner.team/stops/Bgzdpco1", "https://tec.openplanner.team/stops/Bgzdpco2"], ["https://tec.openplanner.team/stops/Cmlener2", "https://tec.openplanner.team/stops/Cmllait2"], ["https://tec.openplanner.team/stops/H4gu107a", "https://tec.openplanner.team/stops/H4ta130b"], ["https://tec.openplanner.team/stops/Bnetegl4", "https://tec.openplanner.team/stops/Bpecvme1"], ["https://tec.openplanner.team/stops/X766acb", "https://tec.openplanner.team/stops/X766aeb"], ["https://tec.openplanner.team/stops/N501isa", "https://tec.openplanner.team/stops/N501iwa"], ["https://tec.openplanner.team/stops/Lflcle-5", "https://tec.openplanner.team/stops/Lmaetan*"], ["https://tec.openplanner.team/stops/X733aga", "https://tec.openplanner.team/stops/X733aja"], ["https://tec.openplanner.team/stops/H4hx119a", "https://tec.openplanner.team/stops/H4hx120b"], ["https://tec.openplanner.team/stops/LVnourt2", "https://tec.openplanner.team/stops/LVnourt3"], ["https://tec.openplanner.team/stops/Cfmsncb1", "https://tec.openplanner.team/stops/Cfmsncb2"], ["https://tec.openplanner.team/stops/Cmehels2", "https://tec.openplanner.team/stops/Cmerlme1"], ["https://tec.openplanner.team/stops/Bclglbu2", "https://tec.openplanner.team/stops/Bclgvse1"], ["https://tec.openplanner.team/stops/H4ta126a", "https://tec.openplanner.team/stops/H4ta128a"], ["https://tec.openplanner.team/stops/H3lr109b", "https://tec.openplanner.team/stops/H3lr109c"], ["https://tec.openplanner.team/stops/H1cu117b", "https://tec.openplanner.team/stops/H1cu131b"], ["https://tec.openplanner.team/stops/Bgrmfon2", "https://tec.openplanner.team/stops/N522ata"], ["https://tec.openplanner.team/stops/Bperqui2", "https://tec.openplanner.team/stops/Bperrsr2"], ["https://tec.openplanner.team/stops/Bgliaau1", "https://tec.openplanner.team/stops/Bgliopp4"], ["https://tec.openplanner.team/stops/Bsoigar2", "https://tec.openplanner.team/stops/H3so166d"], ["https://tec.openplanner.team/stops/Btubbsc1", "https://tec.openplanner.team/stops/Btubegy2"], ["https://tec.openplanner.team/stops/LrOgara3", "https://tec.openplanner.team/stops/LwR129-2"], ["https://tec.openplanner.team/stops/X608aba", "https://tec.openplanner.team/stops/X608ajb"], ["https://tec.openplanner.team/stops/H2ll184b", "https://tec.openplanner.team/stops/H2ll188a"], ["https://tec.openplanner.team/stops/LbOdorf2", "https://tec.openplanner.team/stops/LbOhoff1"], ["https://tec.openplanner.team/stops/X638aaa", "https://tec.openplanner.team/stops/X638ada"], ["https://tec.openplanner.team/stops/N121ada", "https://tec.openplanner.team/stops/N121ajb"], ["https://tec.openplanner.team/stops/LHMaube1", "https://tec.openplanner.team/stops/LLCeg--1"], ["https://tec.openplanner.team/stops/Brebblo1", "https://tec.openplanner.team/stops/Brebvic2"], ["https://tec.openplanner.team/stops/H1ha182a", "https://tec.openplanner.team/stops/H1ha183a"], ["https://tec.openplanner.team/stops/Lhrbrou1", "https://tec.openplanner.team/stops/Lhrbrou2"], ["https://tec.openplanner.team/stops/N528acb", "https://tec.openplanner.team/stops/N551aaa"], ["https://tec.openplanner.team/stops/X902ata", "https://tec.openplanner.team/stops/X902atb"], ["https://tec.openplanner.team/stops/LBUplac2", "https://tec.openplanner.team/stops/LBUvall1"], ["https://tec.openplanner.team/stops/X809aeb", "https://tec.openplanner.team/stops/X850acb"], ["https://tec.openplanner.team/stops/N529aja", "https://tec.openplanner.team/stops/N584aoa"], ["https://tec.openplanner.team/stops/N501fyc", "https://tec.openplanner.team/stops/N501hyb"], ["https://tec.openplanner.team/stops/Lvegc-1*", "https://tec.openplanner.team/stops/Lveveou1"], ["https://tec.openplanner.team/stops/LHycent*", "https://tec.openplanner.team/stops/LXoharz3"], ["https://tec.openplanner.team/stops/N505afb", "https://tec.openplanner.team/stops/N505aja"], ["https://tec.openplanner.team/stops/Bnivpeu1", "https://tec.openplanner.team/stops/Bnivver1"], ["https://tec.openplanner.team/stops/X636adb", "https://tec.openplanner.team/stops/X636aea"], ["https://tec.openplanner.team/stops/H1eu101b", "https://tec.openplanner.team/stops/H1eu102b"], ["https://tec.openplanner.team/stops/H1ho125a", "https://tec.openplanner.team/stops/H1ho125c"], ["https://tec.openplanner.team/stops/Bnivace2", "https://tec.openplanner.team/stops/Bnivver2"], ["https://tec.openplanner.team/stops/LLOberl1", "https://tec.openplanner.team/stops/LRRecsc*"], ["https://tec.openplanner.team/stops/X890aaa", "https://tec.openplanner.team/stops/X890afa"], ["https://tec.openplanner.team/stops/Bitrecu1", "https://tec.openplanner.team/stops/Bitrpsr2"], ["https://tec.openplanner.team/stops/LFHjamo2", "https://tec.openplanner.team/stops/LFHsucr1"], ["https://tec.openplanner.team/stops/H1eu101b", "https://tec.openplanner.team/stops/H1lb137a"], ["https://tec.openplanner.team/stops/Benggar1", "https://tec.openplanner.team/stops/Bstetre2"], ["https://tec.openplanner.team/stops/H4ty319a", "https://tec.openplanner.team/stops/H4ty319b"], ["https://tec.openplanner.team/stops/H4ty281b", "https://tec.openplanner.team/stops/H4ty339b"], ["https://tec.openplanner.team/stops/X601bbf", "https://tec.openplanner.team/stops/X601cza"], ["https://tec.openplanner.team/stops/NH01asb", "https://tec.openplanner.team/stops/NH01aub"], ["https://tec.openplanner.team/stops/X945aca", "https://tec.openplanner.team/stops/X945adb"], ["https://tec.openplanner.team/stops/H1hi122b", "https://tec.openplanner.team/stops/H1ht126b"], ["https://tec.openplanner.team/stops/Llggee52", "https://tec.openplanner.team/stops/Llgrass2"], ["https://tec.openplanner.team/stops/X738abb", "https://tec.openplanner.team/stops/X754aqa"], ["https://tec.openplanner.team/stops/Bspkbeu1", "https://tec.openplanner.team/stops/Bspkkhe1"], ["https://tec.openplanner.team/stops/Ltichif2", "https://tec.openplanner.team/stops/Ltiecch2"], ["https://tec.openplanner.team/stops/H4ar172a", "https://tec.openplanner.team/stops/H4ar173a"], ["https://tec.openplanner.team/stops/H4ga147a", "https://tec.openplanner.team/stops/H4ga167a"], ["https://tec.openplanner.team/stops/X938ada", "https://tec.openplanner.team/stops/X950aca"], ["https://tec.openplanner.team/stops/H4mo152a", "https://tec.openplanner.team/stops/H4mo205b"], ["https://tec.openplanner.team/stops/Cgymara2", "https://tec.openplanner.team/stops/Cgynoir1"], ["https://tec.openplanner.team/stops/N109ada", "https://tec.openplanner.team/stops/N123adb"], ["https://tec.openplanner.team/stops/LLrdigu2", "https://tec.openplanner.team/stops/LLrscie1"], ["https://tec.openplanner.team/stops/Bbeubos2", "https://tec.openplanner.team/stops/N574adb"], ["https://tec.openplanner.team/stops/N116adb", "https://tec.openplanner.team/stops/N151ajf"], ["https://tec.openplanner.team/stops/Csocime2", "https://tec.openplanner.team/stops/Csoplac2"], ["https://tec.openplanner.team/stops/Cwfaldi1", "https://tec.openplanner.team/stops/Cwfreta2"], ["https://tec.openplanner.team/stops/LsVthom1", "https://tec.openplanner.team/stops/LsVthom2"], ["https://tec.openplanner.team/stops/H1ss350a", "https://tec.openplanner.team/stops/H1ss350b"], ["https://tec.openplanner.team/stops/X796acc", "https://tec.openplanner.team/stops/X796ada"], ["https://tec.openplanner.team/stops/Lmojans1", "https://tec.openplanner.team/stops/Lmoweri2"], ["https://tec.openplanner.team/stops/H1hn205a", "https://tec.openplanner.team/stops/H1hn210a"], ["https://tec.openplanner.team/stops/Cloauln1", "https://tec.openplanner.team/stops/Cloauln2"], ["https://tec.openplanner.team/stops/LMOcorn1", "https://tec.openplanner.team/stops/LMOf35-2"], ["https://tec.openplanner.team/stops/Lvedepa*", "https://tec.openplanner.team/stops/Lvegest2"], ["https://tec.openplanner.team/stops/LkEherg1", "https://tec.openplanner.team/stops/LkEsouf1"], ["https://tec.openplanner.team/stops/N137afb", "https://tec.openplanner.team/stops/N137aja"], ["https://tec.openplanner.team/stops/H1ha183a", "https://tec.openplanner.team/stops/H3bo102a"], ["https://tec.openplanner.team/stops/H2hp119c", "https://tec.openplanner.team/stops/H2ll260a"], ["https://tec.openplanner.team/stops/LLbpt--1", "https://tec.openplanner.team/stops/LLbquar1"], ["https://tec.openplanner.team/stops/Bbxlple2", "https://tec.openplanner.team/stops/Bixlfla2"], ["https://tec.openplanner.team/stops/LSSeg--1", "https://tec.openplanner.team/stops/LSSeg--2"], ["https://tec.openplanner.team/stops/X731adb", "https://tec.openplanner.team/stops/X986ala"], ["https://tec.openplanner.team/stops/Clomakr2", "https://tec.openplanner.team/stops/CMdesc1"], ["https://tec.openplanner.team/stops/LTPbeau1", "https://tec.openplanner.team/stops/LTPbeau2"], ["https://tec.openplanner.team/stops/LaAneul2", "https://tec.openplanner.team/stops/LkOaugu2"], ["https://tec.openplanner.team/stops/Lbrrobe1", "https://tec.openplanner.team/stops/Lbrrobe2"], ["https://tec.openplanner.team/stops/Blkbavo1", "https://tec.openplanner.team/stops/Bucccre2"], ["https://tec.openplanner.team/stops/H2lh129b", "https://tec.openplanner.team/stops/H2mm144a"], ["https://tec.openplanner.team/stops/Clrecol1", "https://tec.openplanner.team/stops/Clrwesp1"], ["https://tec.openplanner.team/stops/Cflpost2", "https://tec.openplanner.team/stops/Cwgrabi2"], ["https://tec.openplanner.team/stops/LaM266-1", "https://tec.openplanner.team/stops/LaMschw2"], ["https://tec.openplanner.team/stops/N529aba", "https://tec.openplanner.team/stops/N529aha"], ["https://tec.openplanner.team/stops/LBYwez-2", "https://tec.openplanner.team/stops/LHEcruc1"], ["https://tec.openplanner.team/stops/H1je220b", "https://tec.openplanner.team/stops/H1je369a"], ["https://tec.openplanner.team/stops/Lpecroi1", "https://tec.openplanner.team/stops/LWenouv1"], ["https://tec.openplanner.team/stops/H1ms283a", "https://tec.openplanner.team/stops/H1ms292a"], ["https://tec.openplanner.team/stops/X768ada", "https://tec.openplanner.team/stops/X768afb"], ["https://tec.openplanner.team/stops/H4de114a", "https://tec.openplanner.team/stops/H4de114b"], ["https://tec.openplanner.team/stops/Cpljonc1", "https://tec.openplanner.team/stops/Cpljonc2"], ["https://tec.openplanner.team/stops/NL35abb", "https://tec.openplanner.team/stops/NL35aca"], ["https://tec.openplanner.team/stops/Bkrapri1", "https://tec.openplanner.team/stops/Bkrawil2"], ["https://tec.openplanner.team/stops/X723ahb", "https://tec.openplanner.team/stops/X723aia"], ["https://tec.openplanner.team/stops/H4ae100b", "https://tec.openplanner.team/stops/H4ef113b"], ["https://tec.openplanner.team/stops/LHEcoll1", "https://tec.openplanner.team/stops/LHEnaza1"], ["https://tec.openplanner.team/stops/X923aja", "https://tec.openplanner.team/stops/X923anb"], ["https://tec.openplanner.team/stops/X902bcb", "https://tec.openplanner.team/stops/X999aqb"], ["https://tec.openplanner.team/stops/H1bu137a", "https://tec.openplanner.team/stops/H3bi108b"], ["https://tec.openplanner.team/stops/Csecarr2", "https://tec.openplanner.team/stops/Csefour1"], ["https://tec.openplanner.team/stops/LmTgers2", "https://tec.openplanner.team/stops/LmTschi2"], ["https://tec.openplanner.team/stops/Barcbav1", "https://tec.openplanner.team/stops/Barcpre1"], ["https://tec.openplanner.team/stops/LCLacbi2", "https://tec.openplanner.team/stops/NL78afb"], ["https://tec.openplanner.team/stops/H1ro136a", "https://tec.openplanner.team/stops/H1ro139b"], ["https://tec.openplanner.team/stops/X823afb", "https://tec.openplanner.team/stops/X823afd"], ["https://tec.openplanner.team/stops/Ccomiau1", "https://tec.openplanner.team/stops/Cvvgrsa1"], ["https://tec.openplanner.team/stops/N518aaa", "https://tec.openplanner.team/stops/N518abb"], ["https://tec.openplanner.team/stops/N131aha", "https://tec.openplanner.team/stops/N138ajb"], ["https://tec.openplanner.team/stops/X609aaa", "https://tec.openplanner.team/stops/X627abb"], ["https://tec.openplanner.team/stops/N357acb", "https://tec.openplanner.team/stops/N357afb"], ["https://tec.openplanner.team/stops/N229aaa", "https://tec.openplanner.team/stops/N229ada"], ["https://tec.openplanner.team/stops/NL73abb", "https://tec.openplanner.team/stops/NL73acb"], ["https://tec.openplanner.team/stops/LVeeg--1", "https://tec.openplanner.team/stops/LVGeg--5"], ["https://tec.openplanner.team/stops/LSTchef1", "https://tec.openplanner.team/stops/LSTchef2"], ["https://tec.openplanner.team/stops/LRmsmvo1", "https://tec.openplanner.team/stops/LRmsmvo3"], ["https://tec.openplanner.team/stops/LLUadze2", "https://tec.openplanner.team/stops/LLUalou1"], ["https://tec.openplanner.team/stops/LAmeg--2", "https://tec.openplanner.team/stops/LNHbarr1"], ["https://tec.openplanner.team/stops/X307aaa", "https://tec.openplanner.team/stops/X314aab"], ["https://tec.openplanner.team/stops/X786aia", "https://tec.openplanner.team/stops/X788aaa"], ["https://tec.openplanner.team/stops/N566ada", "https://tec.openplanner.team/stops/N566adb"], ["https://tec.openplanner.team/stops/X664agb", "https://tec.openplanner.team/stops/X665aab"], ["https://tec.openplanner.team/stops/N551aca", "https://tec.openplanner.team/stops/N551acb"], ["https://tec.openplanner.team/stops/Bcerpco2", "https://tec.openplanner.team/stops/Blasbgc2"], ["https://tec.openplanner.team/stops/N202aec", "https://tec.openplanner.team/stops/N254aha"], ["https://tec.openplanner.team/stops/Bptecal2", "https://tec.openplanner.team/stops/Bptemch2"], ["https://tec.openplanner.team/stops/N155aib", "https://tec.openplanner.team/stops/N155ajb"], ["https://tec.openplanner.team/stops/Bhalpar2", "https://tec.openplanner.team/stops/Bhalsro2"], ["https://tec.openplanner.team/stops/X750aqa", "https://tec.openplanner.team/stops/X750ata"], ["https://tec.openplanner.team/stops/LESmecp*", "https://tec.openplanner.team/stops/LESryon1"], ["https://tec.openplanner.team/stops/X758aga", "https://tec.openplanner.team/stops/X758aia"], ["https://tec.openplanner.team/stops/LGefron2", "https://tec.openplanner.team/stops/LGegrun2"], ["https://tec.openplanner.team/stops/Cjucouc1", "https://tec.openplanner.team/stops/Cjupuis2"], ["https://tec.openplanner.team/stops/H5pe126a", "https://tec.openplanner.team/stops/H5pe126b"], ["https://tec.openplanner.team/stops/LeUgeme1", "https://tec.openplanner.team/stops/LeUgeme2"], ["https://tec.openplanner.team/stops/NL77afa", "https://tec.openplanner.team/stops/NL77agb"], ["https://tec.openplanner.team/stops/H4ka392b", "https://tec.openplanner.team/stops/H4ka394a"], ["https://tec.openplanner.team/stops/N501gka", "https://tec.openplanner.team/stops/N501kcb"], ["https://tec.openplanner.team/stops/LlOdrei2", "https://tec.openplanner.team/stops/LsVeite2"], ["https://tec.openplanner.team/stops/LFTcroi1", "https://tec.openplanner.team/stops/LFTec--3"], ["https://tec.openplanner.team/stops/N534brb", "https://tec.openplanner.team/stops/N534bub"], ["https://tec.openplanner.team/stops/X638ajb", "https://tec.openplanner.team/stops/X638alb"], ["https://tec.openplanner.team/stops/Bbeaap51", "https://tec.openplanner.team/stops/Bbealbu3"], ["https://tec.openplanner.team/stops/Bosqcar2", "https://tec.openplanner.team/stops/Bvirduj2"], ["https://tec.openplanner.team/stops/Bnodblt1", "https://tec.openplanner.team/stops/Bpienod1"], ["https://tec.openplanner.team/stops/Lhulibe1", "https://tec.openplanner.team/stops/Lmnrame1"], ["https://tec.openplanner.team/stops/N559aca", "https://tec.openplanner.team/stops/N559acb"], ["https://tec.openplanner.team/stops/Cdametr1", "https://tec.openplanner.team/stops/Cdaviol2"], ["https://tec.openplanner.team/stops/X651aca", "https://tec.openplanner.team/stops/X651acd"], ["https://tec.openplanner.team/stops/Cmldeto1", "https://tec.openplanner.team/stops/Cmldeto2"], ["https://tec.openplanner.team/stops/Cbmmafr1", "https://tec.openplanner.team/stops/Cbmmafr2"], ["https://tec.openplanner.team/stops/X781aca", "https://tec.openplanner.team/stops/X781acb"], ["https://tec.openplanner.team/stops/N135aha", "https://tec.openplanner.team/stops/N135akb"], ["https://tec.openplanner.team/stops/H4by115a", "https://tec.openplanner.team/stops/H4by117b"], ["https://tec.openplanner.team/stops/H2hg267a", "https://tec.openplanner.team/stops/H2ll198a"], ["https://tec.openplanner.team/stops/LSLvaux1", "https://tec.openplanner.team/stops/LSLvaux2"], ["https://tec.openplanner.team/stops/Clbchlo2", "https://tec.openplanner.team/stops/Cthrwai2"], ["https://tec.openplanner.team/stops/X725bba", "https://tec.openplanner.team/stops/X725bfa"], ["https://tec.openplanner.team/stops/X996aca", "https://tec.openplanner.team/stops/X996ada"], ["https://tec.openplanner.team/stops/LwAkett1", "https://tec.openplanner.team/stops/LwAkett2"], ["https://tec.openplanner.team/stops/LAwec--1", "https://tec.openplanner.team/stops/LAweg--1"], ["https://tec.openplanner.team/stops/Bwlhppg2", "https://tec.openplanner.team/stops/Bwlhppg4"], ["https://tec.openplanner.team/stops/N501eda", "https://tec.openplanner.team/stops/N501kqa"], ["https://tec.openplanner.team/stops/H1ms263a", "https://tec.openplanner.team/stops/H1ms271b"], ["https://tec.openplanner.team/stops/LBCaube1", "https://tec.openplanner.team/stops/LMAchod2"], ["https://tec.openplanner.team/stops/X749acb", "https://tec.openplanner.team/stops/X756aec"], ["https://tec.openplanner.team/stops/N219acb", "https://tec.openplanner.team/stops/N219ada"], ["https://tec.openplanner.team/stops/Cctchea2", "https://tec.openplanner.team/stops/NC11aka"], ["https://tec.openplanner.team/stops/Cfmcent1", "https://tec.openplanner.team/stops/Cfmgrmo2"], ["https://tec.openplanner.team/stops/LOlvill1", "https://tec.openplanner.team/stops/LOlvill2"], ["https://tec.openplanner.team/stops/LTResse2", "https://tec.openplanner.team/stops/LTRlonh2"], ["https://tec.openplanner.team/stops/N543aua", "https://tec.openplanner.team/stops/N543aya"], ["https://tec.openplanner.team/stops/LTrrich1", "https://tec.openplanner.team/stops/LTrrich2"], ["https://tec.openplanner.team/stops/X738ada", "https://tec.openplanner.team/stops/X738aea"], ["https://tec.openplanner.team/stops/H4ve131b", "https://tec.openplanner.team/stops/H4ve135b"], ["https://tec.openplanner.team/stops/Cfcrerp1", "https://tec.openplanner.team/stops/Cfcrerp2"], ["https://tec.openplanner.team/stops/X653aca", "https://tec.openplanner.team/stops/X663akb"], ["https://tec.openplanner.team/stops/X725ajb", "https://tec.openplanner.team/stops/X725ana"], ["https://tec.openplanner.team/stops/H4ty274b", "https://tec.openplanner.team/stops/H4ty317b"], ["https://tec.openplanner.team/stops/Bneeace1", "https://tec.openplanner.team/stops/Bneelaa2"], ["https://tec.openplanner.team/stops/LBIrout1", "https://tec.openplanner.team/stops/LFOcomb4"], ["https://tec.openplanner.team/stops/H2ch107b", "https://tec.openplanner.team/stops/H2lh130b"], ["https://tec.openplanner.team/stops/H4pq115a", "https://tec.openplanner.team/stops/H4pq120a"], ["https://tec.openplanner.team/stops/LAivill1", "https://tec.openplanner.team/stops/LAivill2"], ["https://tec.openplanner.team/stops/Csbplac1", "https://tec.openplanner.team/stops/H1sa115b"], ["https://tec.openplanner.team/stops/Bclgavi2", "https://tec.openplanner.team/stops/Bclgvse2"], ["https://tec.openplanner.team/stops/Cmocalv1", "https://tec.openplanner.team/stops/Cmopn1"], ["https://tec.openplanner.team/stops/N539ara", "https://tec.openplanner.team/stops/N539asb"], ["https://tec.openplanner.team/stops/Bgemcro2", "https://tec.openplanner.team/stops/N522afa"], ["https://tec.openplanner.team/stops/LWabela2", "https://tec.openplanner.team/stops/LWacime1"], ["https://tec.openplanner.team/stops/NL77aaa", "https://tec.openplanner.team/stops/NL77aab"], ["https://tec.openplanner.team/stops/LSIgehe2", "https://tec.openplanner.team/stops/LSInd--2"], ["https://tec.openplanner.team/stops/Lgrbonn1", "https://tec.openplanner.team/stops/Lgrbonn6"], ["https://tec.openplanner.team/stops/LOTcarr1", "https://tec.openplanner.team/stops/LOTjacq2"], ["https://tec.openplanner.team/stops/H1gh173a", "https://tec.openplanner.team/stops/H1ms942a"], ["https://tec.openplanner.team/stops/Bgnvcha1", "https://tec.openplanner.team/stops/Blhupa11"], ["https://tec.openplanner.team/stops/Cdamare2", "https://tec.openplanner.team/stops/Cdaviol1"], ["https://tec.openplanner.team/stops/H5bs102c", "https://tec.openplanner.team/stops/H5pe145a"], ["https://tec.openplanner.team/stops/H2ha142a", "https://tec.openplanner.team/stops/H2hg160a"], ["https://tec.openplanner.team/stops/X994afa", "https://tec.openplanner.team/stops/X994afb"], ["https://tec.openplanner.team/stops/Csedoua2", "https://tec.openplanner.team/stops/Csepote1"], ["https://tec.openplanner.team/stops/LSPClem1", "https://tec.openplanner.team/stops/LSPClem2"], ["https://tec.openplanner.team/stops/LNCdoma2", "https://tec.openplanner.team/stops/LNClila2"], ["https://tec.openplanner.team/stops/X745aba", "https://tec.openplanner.team/stops/X745acb"], ["https://tec.openplanner.team/stops/H1wa132b", "https://tec.openplanner.team/stops/H1wa160a"], ["https://tec.openplanner.team/stops/Blanmde2", "https://tec.openplanner.team/stops/Blanraa2"], ["https://tec.openplanner.team/stops/N539afc", "https://tec.openplanner.team/stops/N539aub"], ["https://tec.openplanner.team/stops/Ljemont2", "https://tec.openplanner.team/stops/Lmogerm1"], ["https://tec.openplanner.team/stops/LhGcasi2", "https://tec.openplanner.team/stops/LlNm%C3%BChl2"], ["https://tec.openplanner.team/stops/LHNtill2", "https://tec.openplanner.team/stops/LVParal1"], ["https://tec.openplanner.team/stops/Bhmmcim2", "https://tec.openplanner.team/stops/Btlgbro1"], ["https://tec.openplanner.team/stops/H1he110b", "https://tec.openplanner.team/stops/H4be106a"], ["https://tec.openplanner.team/stops/N149aaa", "https://tec.openplanner.team/stops/N149aab"], ["https://tec.openplanner.team/stops/X654agb", "https://tec.openplanner.team/stops/X654aha"], ["https://tec.openplanner.team/stops/X879aeb", "https://tec.openplanner.team/stops/X879aoa"], ["https://tec.openplanner.team/stops/N501bvb", "https://tec.openplanner.team/stops/N501bwa"], ["https://tec.openplanner.team/stops/N310acb", "https://tec.openplanner.team/stops/N313aab"], ["https://tec.openplanner.team/stops/Cfrempe2", "https://tec.openplanner.team/stops/Cfrptfe2"], ["https://tec.openplanner.team/stops/H1gh168a", "https://tec.openplanner.team/stops/H1gh168b"], ["https://tec.openplanner.team/stops/H2ec103a", "https://tec.openplanner.team/stops/H2ec103b"], ["https://tec.openplanner.team/stops/Bottbou1", "https://tec.openplanner.team/stops/Bottppa4"], ["https://tec.openplanner.team/stops/N245abb", "https://tec.openplanner.team/stops/N287ada"], ["https://tec.openplanner.team/stops/N383aaa", "https://tec.openplanner.team/stops/N874ana"], ["https://tec.openplanner.team/stops/X754acb", "https://tec.openplanner.team/stops/X754arb"], ["https://tec.openplanner.team/stops/Lsearbo2", "https://tec.openplanner.team/stops/Lseathe2"], ["https://tec.openplanner.team/stops/Brxmcha2", "https://tec.openplanner.team/stops/Brxmcna2"], ["https://tec.openplanner.team/stops/Cmmptno1", "https://tec.openplanner.team/stops/Cmmramb1"], ["https://tec.openplanner.team/stops/N353ahb", "https://tec.openplanner.team/stops/N353awb"], ["https://tec.openplanner.team/stops/LLStrid1", "https://tec.openplanner.team/stops/LLStrid4"], ["https://tec.openplanner.team/stops/H1bb121a", "https://tec.openplanner.team/stops/H1bb146a"], ["https://tec.openplanner.team/stops/N241aaa", "https://tec.openplanner.team/stops/N241agb"], ["https://tec.openplanner.team/stops/Csecout2", "https://tec.openplanner.team/stops/Csemacq2"], ["https://tec.openplanner.team/stops/X822ada", "https://tec.openplanner.team/stops/X822ama"], ["https://tec.openplanner.team/stops/N533aab", "https://tec.openplanner.team/stops/N533aia"], ["https://tec.openplanner.team/stops/X661ara", "https://tec.openplanner.team/stops/X661arc"], ["https://tec.openplanner.team/stops/H1mb136b", "https://tec.openplanner.team/stops/H1mb168b"], ["https://tec.openplanner.team/stops/H1ms278b", "https://tec.openplanner.team/stops/H1ms926a"], ["https://tec.openplanner.team/stops/H3bi112b", "https://tec.openplanner.team/stops/H3bi115a"], ["https://tec.openplanner.team/stops/X633adc", "https://tec.openplanner.team/stops/X633alb"], ["https://tec.openplanner.team/stops/H1bo107a", "https://tec.openplanner.team/stops/H1hi124b"], ["https://tec.openplanner.team/stops/Brsgfbl4", "https://tec.openplanner.team/stops/Brsgman2"], ["https://tec.openplanner.team/stops/LeUarno1", "https://tec.openplanner.team/stops/LeUmeie2"], ["https://tec.openplanner.team/stops/Lceegth2", "https://tec.openplanner.team/stops/Lcemeta1"], ["https://tec.openplanner.team/stops/Bwatmlo2", "https://tec.openplanner.team/stops/Bwatpcs2"], ["https://tec.openplanner.team/stops/X609aga", "https://tec.openplanner.team/stops/X609aoa"], ["https://tec.openplanner.team/stops/N501fqd", "https://tec.openplanner.team/stops/N501lyb"], ["https://tec.openplanner.team/stops/Bobacou2", "https://tec.openplanner.team/stops/Cobvill2"], ["https://tec.openplanner.team/stops/N874abb", "https://tec.openplanner.team/stops/N874aeb"], ["https://tec.openplanner.team/stops/Bbwacol2", "https://tec.openplanner.team/stops/Bwavdel1"], ["https://tec.openplanner.team/stops/Llgbour2", "https://tec.openplanner.team/stops/Lscatme2"], ["https://tec.openplanner.team/stops/LTHbelv1", "https://tec.openplanner.team/stops/LTHroch1"], ["https://tec.openplanner.team/stops/Cwgcamp2", "https://tec.openplanner.team/stops/Cwgdeba2"], ["https://tec.openplanner.team/stops/Lrebriq1", "https://tec.openplanner.team/stops/Lrevaul1"], ["https://tec.openplanner.team/stops/H1mk117a", "https://tec.openplanner.team/stops/H1mk123b"], ["https://tec.openplanner.team/stops/Ccoha602", "https://tec.openplanner.team/stops/Cgpauln1"], ["https://tec.openplanner.team/stops/Bbcocvb1", "https://tec.openplanner.team/stops/Bbcocvb2"], ["https://tec.openplanner.team/stops/LAYfoot1", "https://tec.openplanner.team/stops/LAYfoot2"], ["https://tec.openplanner.team/stops/LACwass1", "https://tec.openplanner.team/stops/LAvchpl1"], ["https://tec.openplanner.team/stops/N315aaa", "https://tec.openplanner.team/stops/X361aca"], ["https://tec.openplanner.team/stops/X801ava", "https://tec.openplanner.team/stops/X801aza"], ["https://tec.openplanner.team/stops/LHEepur1", "https://tec.openplanner.team/stops/LHEhv--1"], ["https://tec.openplanner.team/stops/Bjaugar1", "https://tec.openplanner.team/stops/Bjaugar2"], ["https://tec.openplanner.team/stops/N543bbc", "https://tec.openplanner.team/stops/N554acc"], ["https://tec.openplanner.team/stops/LLNbeau1", "https://tec.openplanner.team/stops/LLNogne1"], ["https://tec.openplanner.team/stops/H1he103a", "https://tec.openplanner.team/stops/H1po132b"], ["https://tec.openplanner.team/stops/X398ada", "https://tec.openplanner.team/stops/X398agb"], ["https://tec.openplanner.team/stops/X801chb", "https://tec.openplanner.team/stops/X836afa"], ["https://tec.openplanner.team/stops/LCvneu-2", "https://tec.openplanner.team/stops/LLEfagn1"], ["https://tec.openplanner.team/stops/H4ty308e", "https://tec.openplanner.team/stops/H4ty309a"], ["https://tec.openplanner.team/stops/N231aca", "https://tec.openplanner.team/stops/N231acb"], ["https://tec.openplanner.team/stops/X609apa", "https://tec.openplanner.team/stops/X645aaa"], ["https://tec.openplanner.team/stops/Livpost2", "https://tec.openplanner.team/stops/Livroch1"], ["https://tec.openplanner.team/stops/H4os217a", "https://tec.openplanner.team/stops/H4os220a"], ["https://tec.openplanner.team/stops/Loucham4", "https://tec.openplanner.team/stops/Louroos1"], ["https://tec.openplanner.team/stops/LbAhull2", "https://tec.openplanner.team/stops/LhLdorf2"], ["https://tec.openplanner.team/stops/N501bfb", "https://tec.openplanner.team/stops/N501nba"], ["https://tec.openplanner.team/stops/X811aka", "https://tec.openplanner.team/stops/X811ama"], ["https://tec.openplanner.team/stops/Bbea3he2", "https://tec.openplanner.team/stops/Bbeascl1"], ["https://tec.openplanner.team/stops/LATmals2", "https://tec.openplanner.team/stops/LATmonu1"], ["https://tec.openplanner.team/stops/Cctbois2", "https://tec.openplanner.team/stops/Cctkais1"], ["https://tec.openplanner.team/stops/H1og132a", "https://tec.openplanner.team/stops/H1og132b"], ["https://tec.openplanner.team/stops/LDAalbe2", "https://tec.openplanner.team/stops/LDAptbo1"], ["https://tec.openplanner.team/stops/LRmkult2", "https://tec.openplanner.team/stops/LTEkl122"], ["https://tec.openplanner.team/stops/Clihame1", "https://tec.openplanner.team/stops/Ctmwaut2"], ["https://tec.openplanner.team/stops/Bhtibru2", "https://tec.openplanner.team/stops/Bwaurge1"], ["https://tec.openplanner.team/stops/LSGbail2", "https://tec.openplanner.team/stops/LSGec--2"], ["https://tec.openplanner.team/stops/H1sp353b", "https://tec.openplanner.team/stops/H1ss351b"], ["https://tec.openplanner.team/stops/H4mo180a", "https://tec.openplanner.team/stops/H4mo188b"], ["https://tec.openplanner.team/stops/X767aba", "https://tec.openplanner.team/stops/X768aca"], ["https://tec.openplanner.team/stops/LLgmini2", "https://tec.openplanner.team/stops/LSPsauv1"], ["https://tec.openplanner.team/stops/NR21afa", "https://tec.openplanner.team/stops/NR21afb"], ["https://tec.openplanner.team/stops/H4bh101a", "https://tec.openplanner.team/stops/H4bh104a"], ["https://tec.openplanner.team/stops/LSTchat2", "https://tec.openplanner.team/stops/LSTparf1"], ["https://tec.openplanner.team/stops/LFyanto1", "https://tec.openplanner.team/stops/LFypont1"], ["https://tec.openplanner.team/stops/LmD181-2", "https://tec.openplanner.team/stops/LmD27--1"], ["https://tec.openplanner.team/stops/Cjufauv2", "https://tec.openplanner.team/stops/Cjupier2"], ["https://tec.openplanner.team/stops/H1hi123a", "https://tec.openplanner.team/stops/H1hi123b"], ["https://tec.openplanner.team/stops/N104akb", "https://tec.openplanner.team/stops/N106aab"], ["https://tec.openplanner.team/stops/X394abb", "https://tec.openplanner.team/stops/X394adb"], ["https://tec.openplanner.team/stops/X892ada", "https://tec.openplanner.team/stops/X892adb"], ["https://tec.openplanner.team/stops/X889aca", "https://tec.openplanner.team/stops/X889aea"], ["https://tec.openplanner.team/stops/Ccyrmon1", "https://tec.openplanner.team/stops/Ccyrmon2"], ["https://tec.openplanner.team/stops/Lghhoco1", "https://tec.openplanner.team/stops/Lghremy1"], ["https://tec.openplanner.team/stops/H1cu123a", "https://tec.openplanner.team/stops/H1cu129b"], ["https://tec.openplanner.team/stops/H4av100a", "https://tec.openplanner.team/stops/H4av103a"], ["https://tec.openplanner.team/stops/Bboueta2", "https://tec.openplanner.team/stops/Btancnd1"], ["https://tec.openplanner.team/stops/LESmart1", "https://tec.openplanner.team/stops/LPLhout2"], ["https://tec.openplanner.team/stops/H4hu114b", "https://tec.openplanner.team/stops/H4hu115a"], ["https://tec.openplanner.team/stops/LLegare2", "https://tec.openplanner.team/stops/X547ana"], ["https://tec.openplanner.team/stops/Bbldass2", "https://tec.openplanner.team/stops/Bhmmjco1"], ["https://tec.openplanner.team/stops/X716aaa", "https://tec.openplanner.team/stops/X716abb"], ["https://tec.openplanner.team/stops/LESmich2", "https://tec.openplanner.team/stops/LESslmo1"], ["https://tec.openplanner.team/stops/X390aka", "https://tec.openplanner.team/stops/X998azb"], ["https://tec.openplanner.team/stops/X615aqb", "https://tec.openplanner.team/stops/X615atb"], ["https://tec.openplanner.team/stops/N149ada", "https://tec.openplanner.team/stops/N149adb"], ["https://tec.openplanner.team/stops/N515arb", "https://tec.openplanner.team/stops/N515asa"], ["https://tec.openplanner.team/stops/H1gh149a", "https://tec.openplanner.team/stops/H1ms932a"], ["https://tec.openplanner.team/stops/H1ms296c", "https://tec.openplanner.team/stops/H1ms904a"], ["https://tec.openplanner.team/stops/N544agb", "https://tec.openplanner.team/stops/N547aab"], ["https://tec.openplanner.team/stops/LVnetan2", "https://tec.openplanner.team/stops/LVnourt4"], ["https://tec.openplanner.team/stops/Cclmoul1", "https://tec.openplanner.team/stops/Cclmoul2"], ["https://tec.openplanner.team/stops/LStgare*", "https://tec.openplanner.team/stops/NL80abb"], ["https://tec.openplanner.team/stops/LBichen1", "https://tec.openplanner.team/stops/LBichen2"], ["https://tec.openplanner.team/stops/X736aga", "https://tec.openplanner.team/stops/X753abb"], ["https://tec.openplanner.team/stops/LBEhaye1", "https://tec.openplanner.team/stops/LBEhaye2"], ["https://tec.openplanner.team/stops/Cgonvro1", "https://tec.openplanner.team/stops/Cwxchap2"], ["https://tec.openplanner.team/stops/LVIhall1", "https://tec.openplanner.team/stops/LVIlore2"], ["https://tec.openplanner.team/stops/Lfhborg2", "https://tec.openplanner.team/stops/Livjeu-1"], ["https://tec.openplanner.team/stops/LPRcha-*", "https://tec.openplanner.team/stops/LPRmc--1"], ["https://tec.openplanner.team/stops/LCPlacr1", "https://tec.openplanner.team/stops/LSdbote1"], ["https://tec.openplanner.team/stops/LWeec--2", "https://tec.openplanner.team/stops/LWelogi2"], ["https://tec.openplanner.team/stops/LTHmaka1", "https://tec.openplanner.team/stops/LTHperr3"], ["https://tec.openplanner.team/stops/LBHgile1", "https://tec.openplanner.team/stops/LBHhuyn1"], ["https://tec.openplanner.team/stops/N225aaa", "https://tec.openplanner.team/stops/N225aab"], ["https://tec.openplanner.team/stops/H1en100a", "https://tec.openplanner.team/stops/H1mk112b"], ["https://tec.openplanner.team/stops/X942acb", "https://tec.openplanner.team/stops/X942aga"], ["https://tec.openplanner.team/stops/N211ara", "https://tec.openplanner.team/stops/N211bca"], ["https://tec.openplanner.team/stops/Ccuplai2", "https://tec.openplanner.team/stops/Ccutail1"], ["https://tec.openplanner.team/stops/N202aab", "https://tec.openplanner.team/stops/N202aga"], ["https://tec.openplanner.team/stops/H4ma399a", "https://tec.openplanner.team/stops/H4ma401a"], ["https://tec.openplanner.team/stops/LREhenu2", "https://tec.openplanner.team/stops/LREsoug4"], ["https://tec.openplanner.team/stops/N532aea", "https://tec.openplanner.team/stops/N532aeb"], ["https://tec.openplanner.team/stops/LSPclai1", "https://tec.openplanner.team/stops/LSPgend1"], ["https://tec.openplanner.team/stops/H4gu110b", "https://tec.openplanner.team/stops/H4gu112b"], ["https://tec.openplanner.team/stops/H1gr112a", "https://tec.openplanner.team/stops/H1gr112b"], ["https://tec.openplanner.team/stops/X687ajb", "https://tec.openplanner.team/stops/X687akb"], ["https://tec.openplanner.team/stops/H1hn208b", "https://tec.openplanner.team/stops/H1ms940b"], ["https://tec.openplanner.team/stops/H4ty282a", "https://tec.openplanner.team/stops/H4ty332b"], ["https://tec.openplanner.team/stops/X991aga", "https://tec.openplanner.team/stops/X991agb"], ["https://tec.openplanner.team/stops/LSOchau2", "https://tec.openplanner.team/stops/LSOcime1"], ["https://tec.openplanner.team/stops/Ljecoqu1", "https://tec.openplanner.team/stops/Ljecoqu2"], ["https://tec.openplanner.team/stops/X750aob", "https://tec.openplanner.team/stops/X750apa"], ["https://tec.openplanner.team/stops/Csefour1", "https://tec.openplanner.team/stops/N424aaa"], ["https://tec.openplanner.team/stops/H1by109b", "https://tec.openplanner.team/stops/H1hq127b"], ["https://tec.openplanner.team/stops/Ljuchap2", "https://tec.openplanner.team/stops/Llgaba-1"], ["https://tec.openplanner.team/stops/N301afa", "https://tec.openplanner.team/stops/N302aaa"], ["https://tec.openplanner.team/stops/X714aeb", "https://tec.openplanner.team/stops/X715aib"], ["https://tec.openplanner.team/stops/X753aba", "https://tec.openplanner.team/stops/X753abd"], ["https://tec.openplanner.team/stops/N501daa", "https://tec.openplanner.team/stops/N501dea"], ["https://tec.openplanner.team/stops/H1ca105a", "https://tec.openplanner.team/stops/H1ml112a"], ["https://tec.openplanner.team/stops/LOeelbe2", "https://tec.openplanner.team/stops/LOewaut2"], ["https://tec.openplanner.team/stops/LWarema2", "https://tec.openplanner.team/stops/LWathir1"], ["https://tec.openplanner.team/stops/Ctufleu4", "https://tec.openplanner.team/stops/Ctupont2"], ["https://tec.openplanner.team/stops/N357aba", "https://tec.openplanner.team/stops/N357abb"], ["https://tec.openplanner.team/stops/H4lz121a", "https://tec.openplanner.team/stops/H4lz121d"], ["https://tec.openplanner.team/stops/LSSeg--2", "https://tec.openplanner.team/stops/LSShous2"], ["https://tec.openplanner.team/stops/N310abb", "https://tec.openplanner.team/stops/N310aeb"], ["https://tec.openplanner.team/stops/LFAec--1", "https://tec.openplanner.team/stops/LFAec--2"], ["https://tec.openplanner.team/stops/X858aba", "https://tec.openplanner.team/stops/X858abb"], ["https://tec.openplanner.team/stops/Lceavia2", "https://tec.openplanner.team/stops/Lceviei2"], ["https://tec.openplanner.team/stops/Bbrycar2", "https://tec.openplanner.team/stops/Bbryvil1"], ["https://tec.openplanner.team/stops/LHUsart2", "https://tec.openplanner.team/stops/LHUvege1"], ["https://tec.openplanner.team/stops/N543aib", "https://tec.openplanner.team/stops/N543ala"], ["https://tec.openplanner.team/stops/Cgpplac2", "https://tec.openplanner.team/stops/H2gy109a"], ["https://tec.openplanner.team/stops/Cctfaub1", "https://tec.openplanner.team/stops/Cctjust2"], ["https://tec.openplanner.team/stops/N552aba", "https://tec.openplanner.team/stops/N552aca"], ["https://tec.openplanner.team/stops/H1sg142a", "https://tec.openplanner.team/stops/H1sg145b"], ["https://tec.openplanner.team/stops/Bnivche2", "https://tec.openplanner.team/stops/Bnivsnu2"], ["https://tec.openplanner.team/stops/H1ht131a", "https://tec.openplanner.team/stops/H1ht133b"], ["https://tec.openplanner.team/stops/Cgyrjau1", "https://tec.openplanner.team/stops/Cgystjo3"], ["https://tec.openplanner.team/stops/Cfmchap2", "https://tec.openplanner.team/stops/Cfmmart1"], ["https://tec.openplanner.team/stops/Bzlucam1", "https://tec.openplanner.team/stops/Bzlufbo2"], ["https://tec.openplanner.team/stops/X986afb", "https://tec.openplanner.team/stops/X986aia"], ["https://tec.openplanner.team/stops/Bptrcra2", "https://tec.openplanner.team/stops/Bptrlux2"], ["https://tec.openplanner.team/stops/Baeggar2", "https://tec.openplanner.team/stops/NR38acb"], ["https://tec.openplanner.team/stops/N232aab", "https://tec.openplanner.team/stops/N232afa"], ["https://tec.openplanner.team/stops/H1pd146a", "https://tec.openplanner.team/stops/H1wg124b"], ["https://tec.openplanner.team/stops/H4be103a", "https://tec.openplanner.team/stops/H4be103b"], ["https://tec.openplanner.team/stops/X809aba", "https://tec.openplanner.team/stops/X809aca"], ["https://tec.openplanner.team/stops/LmYkirc1", "https://tec.openplanner.team/stops/LmYkreu1"], ["https://tec.openplanner.team/stops/N348aaa", "https://tec.openplanner.team/stops/N353awa"], ["https://tec.openplanner.team/stops/X995aaa", "https://tec.openplanner.team/stops/X995aab"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N331ahb"], ["https://tec.openplanner.team/stops/H4lg103b", "https://tec.openplanner.team/stops/H4rm112a"], ["https://tec.openplanner.team/stops/H1fl138a", "https://tec.openplanner.team/stops/H1fl138b"], ["https://tec.openplanner.team/stops/H4ty264a", "https://tec.openplanner.team/stops/H4ty352a"], ["https://tec.openplanner.team/stops/Bhticbr1", "https://tec.openplanner.team/stops/Bhticbr2"], ["https://tec.openplanner.team/stops/NH01aua", "https://tec.openplanner.team/stops/NH01aub"], ["https://tec.openplanner.team/stops/Bolgfon2", "https://tec.openplanner.team/stops/Bpthcai1"], ["https://tec.openplanner.team/stops/H2an100b", "https://tec.openplanner.team/stops/H2an111a"], ["https://tec.openplanner.team/stops/N150aea", "https://tec.openplanner.team/stops/N150afa"], ["https://tec.openplanner.team/stops/N501hxz", "https://tec.openplanner.team/stops/N501ikb"], ["https://tec.openplanner.team/stops/Cchba11", "https://tec.openplanner.team/stops/Ccheden2"], ["https://tec.openplanner.team/stops/N132adb", "https://tec.openplanner.team/stops/N138aja"], ["https://tec.openplanner.team/stops/LBWeg--3", "https://tec.openplanner.team/stops/LBWfusi2"], ["https://tec.openplanner.team/stops/LMIeg--1", "https://tec.openplanner.team/stops/LSOgott2"], ["https://tec.openplanner.team/stops/LVGeg--1", "https://tec.openplanner.team/stops/LVGeg--2"], ["https://tec.openplanner.team/stops/X756aia", "https://tec.openplanner.team/stops/X756aja"], ["https://tec.openplanner.team/stops/X768afb", "https://tec.openplanner.team/stops/X769amb"], ["https://tec.openplanner.team/stops/LLrcour1", "https://tec.openplanner.team/stops/LLrcour2"], ["https://tec.openplanner.team/stops/H4co133a", "https://tec.openplanner.team/stops/H4co148b"], ["https://tec.openplanner.team/stops/Bneepne2", "https://tec.openplanner.team/stops/Bneesan2"], ["https://tec.openplanner.team/stops/Clrecol2", "https://tec.openplanner.team/stops/Clrmarl2"], ["https://tec.openplanner.team/stops/LBjcent1", "https://tec.openplanner.team/stops/LTB105-1"], ["https://tec.openplanner.team/stops/Bjancha2", "https://tec.openplanner.team/stops/Bjanegl2"], ["https://tec.openplanner.team/stops/X790aia", "https://tec.openplanner.team/stops/X790aib"], ["https://tec.openplanner.team/stops/H1ma233a", "https://tec.openplanner.team/stops/H1ma237a"], ["https://tec.openplanner.team/stops/X727aab", "https://tec.openplanner.team/stops/X754axb"], ["https://tec.openplanner.team/stops/N512aga", "https://tec.openplanner.team/stops/N512agc"], ["https://tec.openplanner.team/stops/H5rx105a", "https://tec.openplanner.team/stops/H5rx134a"], ["https://tec.openplanner.team/stops/X614anb", "https://tec.openplanner.team/stops/X614aob"], ["https://tec.openplanner.team/stops/LeYauto2", "https://tec.openplanner.team/stops/LeYdorf1"], ["https://tec.openplanner.team/stops/Bbbksth2", "https://tec.openplanner.team/stops/Bhaawdr2"], ["https://tec.openplanner.team/stops/LAYgare1", "https://tec.openplanner.team/stops/LAYpl--3"], ["https://tec.openplanner.team/stops/Blpgbat1", "https://tec.openplanner.team/stops/Bvxgpro1"], ["https://tec.openplanner.team/stops/X878aca", "https://tec.openplanner.team/stops/X898abb"], ["https://tec.openplanner.team/stops/H4ga155b", "https://tec.openplanner.team/stops/H4ha171a"], ["https://tec.openplanner.team/stops/Lwaelme2", "https://tec.openplanner.team/stops/Lwakipe2"], ["https://tec.openplanner.team/stops/Bnivhut2", "https://tec.openplanner.team/stops/Bnivmfr2"], ["https://tec.openplanner.team/stops/LMupont1", "https://tec.openplanner.team/stops/LMupont2"], ["https://tec.openplanner.team/stops/X750axb", "https://tec.openplanner.team/stops/X750ayb"], ["https://tec.openplanner.team/stops/LCRfize1", "https://tec.openplanner.team/stops/LCRgdrt1"], ["https://tec.openplanner.team/stops/N540aba", "https://tec.openplanner.team/stops/N549aba"], ["https://tec.openplanner.team/stops/X542aaa", "https://tec.openplanner.team/stops/X750axb"], ["https://tec.openplanner.team/stops/X888acb", "https://tec.openplanner.team/stops/X899aia"], ["https://tec.openplanner.team/stops/N232ata", "https://tec.openplanner.team/stops/N232aua"], ["https://tec.openplanner.team/stops/LGeforg1", "https://tec.openplanner.team/stops/LGesent1"], ["https://tec.openplanner.team/stops/LMawilh4", "https://tec.openplanner.team/stops/LTolijn*"], ["https://tec.openplanner.team/stops/LSsaxhe1", "https://tec.openplanner.team/stops/LSseg--2"], ["https://tec.openplanner.team/stops/H1bo106c", "https://tec.openplanner.team/stops/H1bo109a"], ["https://tec.openplanner.team/stops/Bpecdel1", "https://tec.openplanner.team/stops/Bpechos1"], ["https://tec.openplanner.team/stops/X982bab", "https://tec.openplanner.team/stops/X982cfa"], ["https://tec.openplanner.team/stops/Bovehst2", "https://tec.openplanner.team/stops/Bovelge1"], ["https://tec.openplanner.team/stops/LXobaty1", "https://tec.openplanner.team/stops/LXofans2"], ["https://tec.openplanner.team/stops/LeUbahn2", "https://tec.openplanner.team/stops/LeUschn2"], ["https://tec.openplanner.team/stops/X780afa", "https://tec.openplanner.team/stops/X780ajb"], ["https://tec.openplanner.team/stops/H4ae100a", "https://tec.openplanner.team/stops/H4ae102a"], ["https://tec.openplanner.team/stops/Cmchai2", "https://tec.openplanner.team/stops/Cmggthi2"], ["https://tec.openplanner.team/stops/LFsguil2", "https://tec.openplanner.team/stops/LFsphar2"], ["https://tec.openplanner.team/stops/H4cl113b", "https://tec.openplanner.team/stops/H4vx360a"], ["https://tec.openplanner.team/stops/X604abb", "https://tec.openplanner.team/stops/X634aab"], ["https://tec.openplanner.team/stops/H4co105a", "https://tec.openplanner.team/stops/H4co158a"], ["https://tec.openplanner.team/stops/LOLrafh2", "https://tec.openplanner.team/stops/LSOchau1"], ["https://tec.openplanner.team/stops/Bnvmfba2", "https://tec.openplanner.team/stops/N518aab"], ["https://tec.openplanner.team/stops/LBAfort2", "https://tec.openplanner.team/stops/LSAchef2"], ["https://tec.openplanner.team/stops/H5pe132a", "https://tec.openplanner.team/stops/H5pe132b"], ["https://tec.openplanner.team/stops/H2hp118a", "https://tec.openplanner.team/stops/H2hp121a"], ["https://tec.openplanner.team/stops/Lhrbrou2", "https://tec.openplanner.team/stops/Lhrferr2"], ["https://tec.openplanner.team/stops/H1pa111a", "https://tec.openplanner.team/stops/H1pa167a"], ["https://tec.openplanner.team/stops/X614ava", "https://tec.openplanner.team/stops/X615ara"], ["https://tec.openplanner.team/stops/Cfbcabi2", "https://tec.openplanner.team/stops/Cfbegli1"], ["https://tec.openplanner.team/stops/LMemaza2", "https://tec.openplanner.team/stops/LMeperk2"], ["https://tec.openplanner.team/stops/H1cu110b", "https://tec.openplanner.team/stops/H1cu118b"], ["https://tec.openplanner.team/stops/X750ala", "https://tec.openplanner.team/stops/X750alb"], ["https://tec.openplanner.team/stops/X769aea", "https://tec.openplanner.team/stops/X769afa"], ["https://tec.openplanner.team/stops/Croplom2", "https://tec.openplanner.team/stops/Croplom4"], ["https://tec.openplanner.team/stops/X601ccc", "https://tec.openplanner.team/stops/X602aob"], ["https://tec.openplanner.team/stops/LLUmc--2", "https://tec.openplanner.team/stops/LLUmont2"], ["https://tec.openplanner.team/stops/N543aha", "https://tec.openplanner.team/stops/N543ayb"], ["https://tec.openplanner.team/stops/X764aeb", "https://tec.openplanner.team/stops/X764afb"], ["https://tec.openplanner.team/stops/N348aeb", "https://tec.openplanner.team/stops/N349aab"], ["https://tec.openplanner.team/stops/Cldvign1", "https://tec.openplanner.team/stops/Clrecol1"], ["https://tec.openplanner.team/stops/LSMgare1", "https://tec.openplanner.team/stops/LSMlier1"], ["https://tec.openplanner.team/stops/Bdvm4ca1", "https://tec.openplanner.team/stops/Bdvm4ca2"], ["https://tec.openplanner.team/stops/LTyh51-2", "https://tec.openplanner.team/stops/LTyhapp4"], ["https://tec.openplanner.team/stops/Lvtlimi1", "https://tec.openplanner.team/stops/Lvtpata1"], ["https://tec.openplanner.team/stops/Bnilreg1", "https://tec.openplanner.team/stops/Bnilreg2"], ["https://tec.openplanner.team/stops/LAascie1", "https://tec.openplanner.team/stops/LAascie2"], ["https://tec.openplanner.team/stops/Bnivall1", "https://tec.openplanner.team/stops/Bnivpba2"], ["https://tec.openplanner.team/stops/LaAbush*", "https://tec.openplanner.team/stops/LaAelis2"], ["https://tec.openplanner.team/stops/H1ch103b", "https://tec.openplanner.team/stops/H1ch107a"], ["https://tec.openplanner.team/stops/Bgntalt1", "https://tec.openplanner.team/stops/Bgntcoo2"], ["https://tec.openplanner.team/stops/Cvsduve1", "https://tec.openplanner.team/stops/N530aab"], ["https://tec.openplanner.team/stops/X608ala", "https://tec.openplanner.team/stops/X609ama"], ["https://tec.openplanner.team/stops/H1vh137b", "https://tec.openplanner.team/stops/H3go103a"], ["https://tec.openplanner.team/stops/Bwatcap1", "https://tec.openplanner.team/stops/Bwatcom1"], ["https://tec.openplanner.team/stops/N515aid", "https://tec.openplanner.team/stops/N515ala"], ["https://tec.openplanner.team/stops/Lbeloui1", "https://tec.openplanner.team/stops/Ljuvieu2"], ["https://tec.openplanner.team/stops/N562atb", "https://tec.openplanner.team/stops/N562bfb"], ["https://tec.openplanner.team/stops/LBEcomm2", "https://tec.openplanner.team/stops/LNipre-2"], ["https://tec.openplanner.team/stops/H1bd103a", "https://tec.openplanner.team/stops/H1bd103b"], ["https://tec.openplanner.team/stops/LFPchat1", "https://tec.openplanner.team/stops/LFPchat2"], ["https://tec.openplanner.team/stops/Bmarcha2", "https://tec.openplanner.team/stops/Bwagmco1"], ["https://tec.openplanner.team/stops/LAWdefr1", "https://tec.openplanner.team/stops/LHGtong1"], ["https://tec.openplanner.team/stops/LMYvill1", "https://tec.openplanner.team/stops/LMYvill2"], ["https://tec.openplanner.team/stops/Lbbviad3", "https://tec.openplanner.team/stops/Lbhfaye2"], ["https://tec.openplanner.team/stops/H4pe124a", "https://tec.openplanner.team/stops/H4pe126a"], ["https://tec.openplanner.team/stops/N117ata", "https://tec.openplanner.team/stops/N117atb"], ["https://tec.openplanner.team/stops/X812bea", "https://tec.openplanner.team/stops/X812beb"], ["https://tec.openplanner.team/stops/H4ty291b", "https://tec.openplanner.team/stops/H4ty291c"], ["https://tec.openplanner.team/stops/LLTfall2", "https://tec.openplanner.team/stops/LMffoot1"], ["https://tec.openplanner.team/stops/Cvtchap1", "https://tec.openplanner.team/stops/Cvtvail1"], ["https://tec.openplanner.team/stops/N138afa", "https://tec.openplanner.team/stops/N423aga"], ["https://tec.openplanner.team/stops/N204aeb", "https://tec.openplanner.team/stops/N208aab"], ["https://tec.openplanner.team/stops/Clvorle1", "https://tec.openplanner.team/stops/Clvorle2"], ["https://tec.openplanner.team/stops/Llgatla1", "https://tec.openplanner.team/stops/Llginte2"], ["https://tec.openplanner.team/stops/H1sy148b", "https://tec.openplanner.team/stops/H1sy148c"], ["https://tec.openplanner.team/stops/X725aob", "https://tec.openplanner.team/stops/X725apa"], ["https://tec.openplanner.team/stops/Cgotech1", "https://tec.openplanner.team/stops/Cgotech2"], ["https://tec.openplanner.team/stops/Cmccet2", "https://tec.openplanner.team/stops/Cmcwir2"], ["https://tec.openplanner.team/stops/Lprdavi1", "https://tec.openplanner.team/stops/Lvegazo1"], ["https://tec.openplanner.team/stops/N118aoa", "https://tec.openplanner.team/stops/N118aob"], ["https://tec.openplanner.team/stops/Lhrlalo3", "https://tec.openplanner.team/stops/Lhrmare4"], ["https://tec.openplanner.team/stops/NL74afa", "https://tec.openplanner.team/stops/NL74afb"], ["https://tec.openplanner.team/stops/X801aua", "https://tec.openplanner.team/stops/X801aub"], ["https://tec.openplanner.team/stops/Clrcime2", "https://tec.openplanner.team/stops/Clrcite2"], ["https://tec.openplanner.team/stops/N539bab", "https://tec.openplanner.team/stops/N539bba"], ["https://tec.openplanner.team/stops/Bbeaap11", "https://tec.openplanner.team/stops/Bbeaap12"], ["https://tec.openplanner.team/stops/Lhrjaur1", "https://tec.openplanner.team/stops/Lhrmine1"], ["https://tec.openplanner.team/stops/Lsnferr1", "https://tec.openplanner.team/stops/Lsnmala3"], ["https://tec.openplanner.team/stops/H1qv113a", "https://tec.openplanner.team/stops/H1qv115a"], ["https://tec.openplanner.team/stops/LCPlebl2", "https://tec.openplanner.team/stops/LGmcite1"], ["https://tec.openplanner.team/stops/Cbfgare2", "https://tec.openplanner.team/stops/Cbfpauc1"], ["https://tec.openplanner.team/stops/LBTfoot1", "https://tec.openplanner.team/stops/LBTwauc1"], ["https://tec.openplanner.team/stops/Cmmpjou2", "https://tec.openplanner.team/stops/Cmmpjou4"], ["https://tec.openplanner.team/stops/H4mo191b", "https://tec.openplanner.team/stops/H4wa155a"], ["https://tec.openplanner.team/stops/N538aeb", "https://tec.openplanner.team/stops/N538ahb"], ["https://tec.openplanner.team/stops/NH03afa", "https://tec.openplanner.team/stops/NH03afb"], ["https://tec.openplanner.team/stops/Cjulamb1", "https://tec.openplanner.team/stops/Craferr1"], ["https://tec.openplanner.team/stops/X651aba", "https://tec.openplanner.team/stops/X651aca"], ["https://tec.openplanner.team/stops/LREhenu1", "https://tec.openplanner.team/stops/LREraph3"], ["https://tec.openplanner.team/stops/Blsmvan2", "https://tec.openplanner.team/stops/Bpelegl1"], ["https://tec.openplanner.team/stops/X902aub", "https://tec.openplanner.team/stops/X902awa"], ["https://tec.openplanner.team/stops/LBJapol2", "https://tec.openplanner.team/stops/LBJplan2"], ["https://tec.openplanner.team/stops/N506azb", "https://tec.openplanner.team/stops/N506bjb"], ["https://tec.openplanner.team/stops/NR21ahb", "https://tec.openplanner.team/stops/NR38afa"], ["https://tec.openplanner.team/stops/H1ht121a", "https://tec.openplanner.team/stops/H1ht121b"], ["https://tec.openplanner.team/stops/H1bd101a", "https://tec.openplanner.team/stops/H1bd102a"], ["https://tec.openplanner.team/stops/X902bfb", "https://tec.openplanner.team/stops/X902bgb"], ["https://tec.openplanner.team/stops/X659aca", "https://tec.openplanner.team/stops/X659ava"], ["https://tec.openplanner.team/stops/N312aaa", "https://tec.openplanner.team/stops/N360aeb"], ["https://tec.openplanner.team/stops/H1gg117b", "https://tec.openplanner.team/stops/H1gg145b"], ["https://tec.openplanner.team/stops/Bgemkal1", "https://tec.openplanner.team/stops/Bsaubbo1"], ["https://tec.openplanner.team/stops/H4ba101a", "https://tec.openplanner.team/stops/H4ba102a"], ["https://tec.openplanner.team/stops/H1al107a", "https://tec.openplanner.team/stops/H1al107b"], ["https://tec.openplanner.team/stops/X615amb", "https://tec.openplanner.team/stops/X615ana"], ["https://tec.openplanner.team/stops/N101aib", "https://tec.openplanner.team/stops/N101aoa"], ["https://tec.openplanner.team/stops/LTIpire1", "https://tec.openplanner.team/stops/LTIpres2"], ["https://tec.openplanner.team/stops/LScgore2", "https://tec.openplanner.team/stops/LTNsarl1"], ["https://tec.openplanner.team/stops/H1te184b", "https://tec.openplanner.team/stops/H1te187a"], ["https://tec.openplanner.team/stops/X940acb", "https://tec.openplanner.team/stops/X940agb"], ["https://tec.openplanner.team/stops/H1so132a", "https://tec.openplanner.team/stops/H1so141b"], ["https://tec.openplanner.team/stops/N244asb", "https://tec.openplanner.team/stops/N244aub"], ["https://tec.openplanner.team/stops/N501gka", "https://tec.openplanner.team/stops/N501gkb"], ["https://tec.openplanner.team/stops/LOUpres1", "https://tec.openplanner.team/stops/LOUvign1"], ["https://tec.openplanner.team/stops/Lcebail1", "https://tec.openplanner.team/stops/Lcebail2"], ["https://tec.openplanner.team/stops/LVAakke1", "https://tec.openplanner.team/stops/LVAwolf2"], ["https://tec.openplanner.team/stops/X687aha", "https://tec.openplanner.team/stops/X687aia"], ["https://tec.openplanner.team/stops/H1hn207a", "https://tec.openplanner.team/stops/H1mv241b"], ["https://tec.openplanner.team/stops/Cbmmafr2", "https://tec.openplanner.team/stops/Cbmpano2"], ["https://tec.openplanner.team/stops/H4ty283b", "https://tec.openplanner.team/stops/H4ty286a"], ["https://tec.openplanner.team/stops/X946ada", "https://tec.openplanner.team/stops/X946aib"], ["https://tec.openplanner.team/stops/X779adb", "https://tec.openplanner.team/stops/X912aga"], ["https://tec.openplanner.team/stops/N532ada", "https://tec.openplanner.team/stops/N533apb"], ["https://tec.openplanner.team/stops/LLeeco-1", "https://tec.openplanner.team/stops/LLescie1"], ["https://tec.openplanner.team/stops/N167adc", "https://tec.openplanner.team/stops/N167add"], ["https://tec.openplanner.team/stops/Crachap2", "https://tec.openplanner.team/stops/Cracime1"], ["https://tec.openplanner.team/stops/LrEborn1", "https://tec.openplanner.team/stops/LrErauw1"], ["https://tec.openplanner.team/stops/Clodesc1", "https://tec.openplanner.team/stops/Clomakr1"], ["https://tec.openplanner.team/stops/H4bn100b", "https://tec.openplanner.team/stops/H4pi133a"], ["https://tec.openplanner.team/stops/LHe3com2", "https://tec.openplanner.team/stops/LHemoul2"], ["https://tec.openplanner.team/stops/LFrfrai2", "https://tec.openplanner.team/stops/LFrvesd2"], ["https://tec.openplanner.team/stops/X989aba", "https://tec.openplanner.team/stops/X994adb"], ["https://tec.openplanner.team/stops/LLR4bra1", "https://tec.openplanner.team/stops/LLR4bra2"], ["https://tec.openplanner.team/stops/Bhandub2", "https://tec.openplanner.team/stops/LABvill2"], ["https://tec.openplanner.team/stops/LREfloh1", "https://tec.openplanner.team/stops/LREhaut2"], ["https://tec.openplanner.team/stops/N531adb", "https://tec.openplanner.team/stops/N568aba"], ["https://tec.openplanner.team/stops/X780aea", "https://tec.openplanner.team/stops/X780aeb"], ["https://tec.openplanner.team/stops/Bwav4sa1", "https://tec.openplanner.team/stops/Bwavbva1"], ["https://tec.openplanner.team/stops/X650abb", "https://tec.openplanner.team/stops/X650amb"], ["https://tec.openplanner.team/stops/LMYlieg1", "https://tec.openplanner.team/stops/X597ala"], ["https://tec.openplanner.team/stops/X725ata", "https://tec.openplanner.team/stops/X767aca"], ["https://tec.openplanner.team/stops/LOljean2", "https://tec.openplanner.team/stops/LScd45-1"], ["https://tec.openplanner.team/stops/N145ada", "https://tec.openplanner.team/stops/N149aab"], ["https://tec.openplanner.team/stops/H3lr109a", "https://tec.openplanner.team/stops/H3lr121b"], ["https://tec.openplanner.team/stops/X882aea", "https://tec.openplanner.team/stops/X882alb"], ["https://tec.openplanner.team/stops/LrOkirc2", "https://tec.openplanner.team/stops/LrOtria2"], ["https://tec.openplanner.team/stops/H1el136b", "https://tec.openplanner.team/stops/H1el137a"], ["https://tec.openplanner.team/stops/Ladegli1", "https://tec.openplanner.team/stops/Ladlaur1"], ["https://tec.openplanner.team/stops/X820aba", "https://tec.openplanner.team/stops/X820abb"], ["https://tec.openplanner.team/stops/LBveg--1", "https://tec.openplanner.team/stops/LBvviem4"], ["https://tec.openplanner.team/stops/X773aba", "https://tec.openplanner.team/stops/X773abb"], ["https://tec.openplanner.team/stops/Bchamco1", "https://tec.openplanner.team/stops/Bchamco2"], ["https://tec.openplanner.team/stops/X760aga", "https://tec.openplanner.team/stops/X762aeb"], ["https://tec.openplanner.team/stops/H5bs103b", "https://tec.openplanner.team/stops/H5pe128a"], ["https://tec.openplanner.team/stops/X820aaa", "https://tec.openplanner.team/stops/X820aab"], ["https://tec.openplanner.team/stops/LRGgend1", "https://tec.openplanner.team/stops/LRGgend2"], ["https://tec.openplanner.team/stops/LwYbruc4", "https://tec.openplanner.team/stops/LwYnr261"], ["https://tec.openplanner.team/stops/Cmastni2", "https://tec.openplanner.team/stops/Cmocalv4"], ["https://tec.openplanner.team/stops/Cbbcent2", "https://tec.openplanner.team/stops/Crcfdom1"], ["https://tec.openplanner.team/stops/N509bda", "https://tec.openplanner.team/stops/N509bdb"], ["https://tec.openplanner.team/stops/X595aea", "https://tec.openplanner.team/stops/X595aga"], ["https://tec.openplanner.team/stops/Bbeamon2", "https://tec.openplanner.team/stops/Bbeapim2"], ["https://tec.openplanner.team/stops/LMEeg--1", "https://tec.openplanner.team/stops/LMEpech1"], ["https://tec.openplanner.team/stops/Lanyser2", "https://tec.openplanner.team/stops/Lmobols1"], ["https://tec.openplanner.team/stops/Bovesog1", "https://tec.openplanner.team/stops/Bovevri1"], ["https://tec.openplanner.team/stops/X623afb", "https://tec.openplanner.team/stops/X623ahb"], ["https://tec.openplanner.team/stops/Bcrnnpl1", "https://tec.openplanner.team/stops/Bcrnpla1"], ["https://tec.openplanner.team/stops/H4hx113a", "https://tec.openplanner.team/stops/H4hx122a"], ["https://tec.openplanner.team/stops/LBUplac1", "https://tec.openplanner.team/stops/LBUvall2"], ["https://tec.openplanner.team/stops/X638ada", "https://tec.openplanner.team/stops/X638aeb"], ["https://tec.openplanner.team/stops/X882afa", "https://tec.openplanner.team/stops/X882amd"], ["https://tec.openplanner.team/stops/X605afb", "https://tec.openplanner.team/stops/X634aib"], ["https://tec.openplanner.team/stops/LHCcroy2", "https://tec.openplanner.team/stops/LHChoek3"], ["https://tec.openplanner.team/stops/LBahaut1", "https://tec.openplanner.team/stops/LBapeup2"], ["https://tec.openplanner.team/stops/X872ada", "https://tec.openplanner.team/stops/X872afa"], ["https://tec.openplanner.team/stops/LAUbirv2", "https://tec.openplanner.team/stops/LHMparq2"], ["https://tec.openplanner.team/stops/Lseboia1", "https://tec.openplanner.team/stops/Lseboia2"], ["https://tec.openplanner.team/stops/LGMhadr2", "https://tec.openplanner.team/stops/LTRpery1"], ["https://tec.openplanner.team/stops/LHEelva1", "https://tec.openplanner.team/stops/LHEelva2"], ["https://tec.openplanner.team/stops/H1tl119b", "https://tec.openplanner.team/stops/H1tl122b"], ["https://tec.openplanner.team/stops/Cctmari2", "https://tec.openplanner.team/stops/Cctrjus1"], ["https://tec.openplanner.team/stops/H1hr122a", "https://tec.openplanner.team/stops/H1hr124a"], ["https://tec.openplanner.team/stops/H1hc127c", "https://tec.openplanner.team/stops/H1hc150b"], ["https://tec.openplanner.team/stops/H4ml207a", "https://tec.openplanner.team/stops/H4ml208b"], ["https://tec.openplanner.team/stops/X733ahb", "https://tec.openplanner.team/stops/X734aib"], ["https://tec.openplanner.team/stops/X758acb", "https://tec.openplanner.team/stops/X758amb"], ["https://tec.openplanner.team/stops/N501lwb", "https://tec.openplanner.team/stops/N501mrb"], ["https://tec.openplanner.team/stops/LBUchpl2", "https://tec.openplanner.team/stops/LBUmara3"], ["https://tec.openplanner.team/stops/H2mo126a", "https://tec.openplanner.team/stops/H2mo126b"], ["https://tec.openplanner.team/stops/Cvrhab21", "https://tec.openplanner.team/stops/Cvrhab22"], ["https://tec.openplanner.team/stops/X359aka", "https://tec.openplanner.team/stops/X359ala"], ["https://tec.openplanner.team/stops/LATdieu1", "https://tec.openplanner.team/stops/LATphar2"], ["https://tec.openplanner.team/stops/N535aca", "https://tec.openplanner.team/stops/N535acb"], ["https://tec.openplanner.team/stops/H4po124a", "https://tec.openplanner.team/stops/H4po126b"], ["https://tec.openplanner.team/stops/X773ala", "https://tec.openplanner.team/stops/X773alb"], ["https://tec.openplanner.team/stops/LSkmarq1", "https://tec.openplanner.team/stops/LSkyern2"], ["https://tec.openplanner.team/stops/X806ahb", "https://tec.openplanner.team/stops/X806ajb"], ["https://tec.openplanner.team/stops/Brsgera1", "https://tec.openplanner.team/stops/Brsgfso2"], ["https://tec.openplanner.team/stops/H4do101a", "https://tec.openplanner.team/stops/H4do107d"], ["https://tec.openplanner.team/stops/Lsefoot2", "https://tec.openplanner.team/stops/Lsemyrt1"], ["https://tec.openplanner.team/stops/X901bia", "https://tec.openplanner.team/stops/X901bta"], ["https://tec.openplanner.team/stops/X802aga", "https://tec.openplanner.team/stops/X802aib"], ["https://tec.openplanner.team/stops/Lmobols2", "https://tec.openplanner.team/stops/Lmogoff2"], ["https://tec.openplanner.team/stops/N138aha", "https://tec.openplanner.team/stops/N141agb"], ["https://tec.openplanner.team/stops/H4cw105a", "https://tec.openplanner.team/stops/H4cw105b"], ["https://tec.openplanner.team/stops/NL72aaa", "https://tec.openplanner.team/stops/NL76aeb"], ["https://tec.openplanner.team/stops/N104aaa", "https://tec.openplanner.team/stops/N104aad"], ["https://tec.openplanner.team/stops/LrUbrac3", "https://tec.openplanner.team/stops/LrUkult1"], ["https://tec.openplanner.team/stops/H1qv112a", "https://tec.openplanner.team/stops/H1qv112b"], ["https://tec.openplanner.team/stops/LBIcabi1", "https://tec.openplanner.team/stops/LBIvill3"], ["https://tec.openplanner.team/stops/Llghaye2", "https://tec.openplanner.team/stops/Llgsorb1"], ["https://tec.openplanner.team/stops/X657ajb", "https://tec.openplanner.team/stops/X657aka"], ["https://tec.openplanner.team/stops/Chhsncb2", "https://tec.openplanner.team/stops/Chhthui2"], ["https://tec.openplanner.team/stops/Cclbarb1", "https://tec.openplanner.team/stops/Cclbarb2"], ["https://tec.openplanner.team/stops/X672afb", "https://tec.openplanner.team/stops/X672aoa"], ["https://tec.openplanner.team/stops/X942afa", "https://tec.openplanner.team/stops/X943aea"], ["https://tec.openplanner.team/stops/Bbghgli2", "https://tec.openplanner.team/stops/Bbghpln1"], ["https://tec.openplanner.team/stops/H1ag104a", "https://tec.openplanner.team/stops/H1ro133a"], ["https://tec.openplanner.team/stops/H1ms256a", "https://tec.openplanner.team/stops/H1ms301a"], ["https://tec.openplanner.team/stops/Bblmcel1", "https://tec.openplanner.team/stops/Bblmcel2"], ["https://tec.openplanner.team/stops/H1wi148b", "https://tec.openplanner.team/stops/H1wi153a"], ["https://tec.openplanner.team/stops/Crestan1", "https://tec.openplanner.team/stops/Crestan2"], ["https://tec.openplanner.team/stops/N514aga", "https://tec.openplanner.team/stops/N514aha"], ["https://tec.openplanner.team/stops/Cgyrdid2", "https://tec.openplanner.team/stops/Cgystbe1"], ["https://tec.openplanner.team/stops/N352ada", "https://tec.openplanner.team/stops/N352aea"], ["https://tec.openplanner.team/stops/X618ala", "https://tec.openplanner.team/stops/X619acb"], ["https://tec.openplanner.team/stops/X716aab", "https://tec.openplanner.team/stops/X716aeb"], ["https://tec.openplanner.team/stops/X548aab", "https://tec.openplanner.team/stops/X548afb"], ["https://tec.openplanner.team/stops/H1cv104b", "https://tec.openplanner.team/stops/H1lm107b"], ["https://tec.openplanner.team/stops/H4ea128a", "https://tec.openplanner.team/stops/H5qu145a"], ["https://tec.openplanner.team/stops/Llmcoop1", "https://tec.openplanner.team/stops/LWetrib2"], ["https://tec.openplanner.team/stops/NC44aaa", "https://tec.openplanner.team/stops/NC44aea"], ["https://tec.openplanner.team/stops/LlOdrei1", "https://tec.openplanner.team/stops/LnDrund2"], ["https://tec.openplanner.team/stops/H1te175a", "https://tec.openplanner.team/stops/H1te175b"], ["https://tec.openplanner.team/stops/Bmarfjo2", "https://tec.openplanner.team/stops/Bmarmco1"], ["https://tec.openplanner.team/stops/LGMstin2", "https://tec.openplanner.team/stops/LLUlieg2"], ["https://tec.openplanner.team/stops/H4pq119a", "https://tec.openplanner.team/stops/H4pq119b"], ["https://tec.openplanner.team/stops/N155aec", "https://tec.openplanner.team/stops/N155aed"], ["https://tec.openplanner.team/stops/H2sb224a", "https://tec.openplanner.team/stops/H2sb239b"], ["https://tec.openplanner.team/stops/X982ala", "https://tec.openplanner.team/stops/X982alb"], ["https://tec.openplanner.team/stops/LATcham*", "https://tec.openplanner.team/stops/LATpatu2"], ["https://tec.openplanner.team/stops/N565aba", "https://tec.openplanner.team/stops/N565aca"], ["https://tec.openplanner.team/stops/X878ada", "https://tec.openplanner.team/stops/X878adb"], ["https://tec.openplanner.team/stops/Lseegva1", "https://tec.openplanner.team/stops/Lseegva2"], ["https://tec.openplanner.team/stops/LSNbouh4", "https://tec.openplanner.team/stops/LSNmoul2"], ["https://tec.openplanner.team/stops/X721apa", "https://tec.openplanner.team/stops/X786aaa"], ["https://tec.openplanner.team/stops/Bsmgegl2", "https://tec.openplanner.team/stops/Bsmgres2"], ["https://tec.openplanner.team/stops/H1mj122a", "https://tec.openplanner.team/stops/H1mj122b"], ["https://tec.openplanner.team/stops/X725ava", "https://tec.openplanner.team/stops/X725axa"], ["https://tec.openplanner.team/stops/X664afa", "https://tec.openplanner.team/stops/X667aaa"], ["https://tec.openplanner.team/stops/Cthnord1", "https://tec.openplanner.team/stops/Cthvbas3"], ["https://tec.openplanner.team/stops/X902abb", "https://tec.openplanner.team/stops/X902atb"], ["https://tec.openplanner.team/stops/H4ft135b", "https://tec.openplanner.team/stops/H4ft135c"], ["https://tec.openplanner.team/stops/H4ma420b", "https://tec.openplanner.team/stops/H4oq409a"], ["https://tec.openplanner.team/stops/Llgform1", "https://tec.openplanner.team/stops/Llggill4"], ["https://tec.openplanner.team/stops/X615aka", "https://tec.openplanner.team/stops/X615alb"], ["https://tec.openplanner.team/stops/H1qu119a", "https://tec.openplanner.team/stops/H1wa155b"], ["https://tec.openplanner.team/stops/Bwavbmo1", "https://tec.openplanner.team/stops/Bwavnam1"], ["https://tec.openplanner.team/stops/X601aud", "https://tec.openplanner.team/stops/X601aya"], ["https://tec.openplanner.team/stops/NL73aea", "https://tec.openplanner.team/stops/NL73aeb"], ["https://tec.openplanner.team/stops/Cmonsnc1", "https://tec.openplanner.team/stops/H1ms400d"], ["https://tec.openplanner.team/stops/H2lh129b", "https://tec.openplanner.team/stops/H2mo146b"], ["https://tec.openplanner.team/stops/X595ada", "https://tec.openplanner.team/stops/X595agb"], ["https://tec.openplanner.team/stops/LmNbirt1", "https://tec.openplanner.team/stops/LmNsv872"], ["https://tec.openplanner.team/stops/Lceembo1", "https://tec.openplanner.team/stops/Lcepoul1"], ["https://tec.openplanner.team/stops/N529aeb", "https://tec.openplanner.team/stops/N529afa"], ["https://tec.openplanner.team/stops/N385adb", "https://tec.openplanner.team/stops/N385aed"], ["https://tec.openplanner.team/stops/H1au101a", "https://tec.openplanner.team/stops/H1el132b"], ["https://tec.openplanner.team/stops/N222aya", "https://tec.openplanner.team/stops/X222alb"], ["https://tec.openplanner.team/stops/X725bbb", "https://tec.openplanner.team/stops/X725bda"], ["https://tec.openplanner.team/stops/Bjodint1", "https://tec.openplanner.team/stops/NR10aaa"], ["https://tec.openplanner.team/stops/H1ci102a", "https://tec.openplanner.team/stops/H1ci102b"], ["https://tec.openplanner.team/stops/N201aka", "https://tec.openplanner.team/stops/N201akb"], ["https://tec.openplanner.team/stops/LrEfeck2", "https://tec.openplanner.team/stops/LrEkape1"], ["https://tec.openplanner.team/stops/LHarenn1", "https://tec.openplanner.team/stops/LHarenn4"], ["https://tec.openplanner.team/stops/X614aza", "https://tec.openplanner.team/stops/X614baa"], ["https://tec.openplanner.team/stops/Cjxpris2", "https://tec.openplanner.team/stops/Cmymoha2"], ["https://tec.openplanner.team/stops/Blmlbif2", "https://tec.openplanner.team/stops/Brsreco2"], ["https://tec.openplanner.team/stops/Barqhpe1", "https://tec.openplanner.team/stops/Barqres1"], ["https://tec.openplanner.team/stops/H4bc101c", "https://tec.openplanner.team/stops/H4tu170a"], ["https://tec.openplanner.team/stops/X614avb", "https://tec.openplanner.team/stops/X615aqb"], ["https://tec.openplanner.team/stops/Bmrl4ch1", "https://tec.openplanner.team/stops/Bnodeco1"], ["https://tec.openplanner.team/stops/N565ajb", "https://tec.openplanner.team/stops/N565ala"], ["https://tec.openplanner.team/stops/Bbiehpo1", "https://tec.openplanner.team/stops/Bbiehss1"], ["https://tec.openplanner.team/stops/Cplelec1", "https://tec.openplanner.team/stops/Cplelec2"], ["https://tec.openplanner.team/stops/Bgzdn252", "https://tec.openplanner.team/stops/Bgzdsta2"], ["https://tec.openplanner.team/stops/X685agb", "https://tec.openplanner.team/stops/X685apb"], ["https://tec.openplanner.team/stops/Bsgibla2", "https://tec.openplanner.team/stops/Bsgipha2"], ["https://tec.openplanner.team/stops/N549acb", "https://tec.openplanner.team/stops/N549agb"], ["https://tec.openplanner.team/stops/LkEbbl-*", "https://tec.openplanner.team/stops/LkEmax-2"], ["https://tec.openplanner.team/stops/LATmale1", "https://tec.openplanner.team/stops/LATmale2"], ["https://tec.openplanner.team/stops/X809abb", "https://tec.openplanner.team/stops/X858aga"], ["https://tec.openplanner.team/stops/LSpfond2", "https://tec.openplanner.team/stops/LSpogne2"], ["https://tec.openplanner.team/stops/Lcacris2", "https://tec.openplanner.team/stops/Lvchaus2"], ["https://tec.openplanner.team/stops/NC24aia", "https://tec.openplanner.team/stops/NC24aib"], ["https://tec.openplanner.team/stops/H4fa167a", "https://tec.openplanner.team/stops/H5el111b"], ["https://tec.openplanner.team/stops/N525aec", "https://tec.openplanner.team/stops/N525ahb"], ["https://tec.openplanner.team/stops/NH01ara", "https://tec.openplanner.team/stops/NH01asa"], ["https://tec.openplanner.team/stops/N120agb", "https://tec.openplanner.team/stops/N120aha"], ["https://tec.openplanner.team/stops/X756aha", "https://tec.openplanner.team/stops/X757ajb"], ["https://tec.openplanner.team/stops/Bhevcur1", "https://tec.openplanner.team/stops/Bhevcur2"], ["https://tec.openplanner.team/stops/Ccucroi1", "https://tec.openplanner.team/stops/Cculpre2"], ["https://tec.openplanner.team/stops/LCeterm2", "https://tec.openplanner.team/stops/LGAnovi1"], ["https://tec.openplanner.team/stops/NC11ara", "https://tec.openplanner.team/stops/NC11ard"], ["https://tec.openplanner.team/stops/X750ava", "https://tec.openplanner.team/stops/X750bkb"], ["https://tec.openplanner.team/stops/N515aja", "https://tec.openplanner.team/stops/N515ajb"], ["https://tec.openplanner.team/stops/Cgythio1", "https://tec.openplanner.team/stops/Cgythio2"], ["https://tec.openplanner.team/stops/LHmcite1", "https://tec.openplanner.team/stops/LLocruc1"], ["https://tec.openplanner.team/stops/H1ha194b", "https://tec.openplanner.team/stops/H1vh135a"], ["https://tec.openplanner.team/stops/Crcgare1", "https://tec.openplanner.team/stops/Crcrgar2"], ["https://tec.openplanner.team/stops/X619acb", "https://tec.openplanner.team/stops/X619adb"], ["https://tec.openplanner.team/stops/N254ada", "https://tec.openplanner.team/stops/N254aea"], ["https://tec.openplanner.team/stops/H4co104a", "https://tec.openplanner.team/stops/H4co158a"], ["https://tec.openplanner.team/stops/Lhragri1", "https://tec.openplanner.team/stops/Lhrmura1"], ["https://tec.openplanner.team/stops/Bcerpco1", "https://tec.openplanner.team/stops/Blasbti1"], ["https://tec.openplanner.team/stops/Lbrfusi1", "https://tec.openplanner.team/stops/Lbrrobe2"], ["https://tec.openplanner.team/stops/LbOre3b1", "https://tec.openplanner.team/stops/LbOvith1"], ["https://tec.openplanner.team/stops/X811aib", "https://tec.openplanner.team/stops/X811akb"], ["https://tec.openplanner.team/stops/Clupcfe1", "https://tec.openplanner.team/stops/Cvvpotv2"], ["https://tec.openplanner.team/stops/LAMhaut1", "https://tec.openplanner.team/stops/LAMhaut2"], ["https://tec.openplanner.team/stops/N506bjb", "https://tec.openplanner.team/stops/N506bnb"], ["https://tec.openplanner.team/stops/H2mo117b", "https://tec.openplanner.team/stops/H2mo119b"], ["https://tec.openplanner.team/stops/H4mo181b", "https://tec.openplanner.team/stops/H4rk101b"], ["https://tec.openplanner.team/stops/LhGcasi1", "https://tec.openplanner.team/stops/LkEmax-1"], ["https://tec.openplanner.team/stops/X729aca", "https://tec.openplanner.team/stops/X729ada"], ["https://tec.openplanner.team/stops/Cctjoue5", "https://tec.openplanner.team/stops/Cctjoue6"], ["https://tec.openplanner.team/stops/Bgoegma2", "https://tec.openplanner.team/stops/Bgoewat2"], ["https://tec.openplanner.team/stops/NR38aea", "https://tec.openplanner.team/stops/NR38afa"], ["https://tec.openplanner.team/stops/LhOfrie2", "https://tec.openplanner.team/stops/LhOzent1"], ["https://tec.openplanner.team/stops/H2lh132b", "https://tec.openplanner.team/stops/H2mo133b"], ["https://tec.openplanner.team/stops/LATdame2", "https://tec.openplanner.team/stops/LATrori2"], ["https://tec.openplanner.team/stops/X911alb", "https://tec.openplanner.team/stops/X911amb"], ["https://tec.openplanner.team/stops/H4mo157a", "https://tec.openplanner.team/stops/H4mo204a"], ["https://tec.openplanner.team/stops/Lbbviad3", "https://tec.openplanner.team/stops/Lgrwill2"], ["https://tec.openplanner.team/stops/H4pl111a", "https://tec.openplanner.team/stops/H4pl112b"], ["https://tec.openplanner.team/stops/N544aaa", "https://tec.openplanner.team/stops/N544aab"], ["https://tec.openplanner.team/stops/H1ob334b", "https://tec.openplanner.team/stops/H1ob361a"], ["https://tec.openplanner.team/stops/LODarbr1", "https://tec.openplanner.team/stops/X561abb"], ["https://tec.openplanner.team/stops/N520aba", "https://tec.openplanner.team/stops/N520abb"], ["https://tec.openplanner.team/stops/LFdbagu1", "https://tec.openplanner.team/stops/LFdbagu2"], ["https://tec.openplanner.team/stops/Bsamlon1", "https://tec.openplanner.team/stops/Bwagdeb1"], ["https://tec.openplanner.team/stops/X637aaa", "https://tec.openplanner.team/stops/X637aqb"], ["https://tec.openplanner.team/stops/LmI129-2", "https://tec.openplanner.team/stops/LmIkirc2"], ["https://tec.openplanner.team/stops/Bgligli1", "https://tec.openplanner.team/stops/Bglitro2"], ["https://tec.openplanner.team/stops/LOuathe1", "https://tec.openplanner.team/stops/LOumaro2"], ["https://tec.openplanner.team/stops/X650afe", "https://tec.openplanner.team/stops/X671agb"], ["https://tec.openplanner.team/stops/Cvppost1", "https://tec.openplanner.team/stops/Cvppost2"], ["https://tec.openplanner.team/stops/Lsmlina*", "https://tec.openplanner.team/stops/Lsmtini2"], ["https://tec.openplanner.team/stops/X878aaa", "https://tec.openplanner.team/stops/X879aab"], ["https://tec.openplanner.team/stops/H4ty276a", "https://tec.openplanner.team/stops/H4ty315a"], ["https://tec.openplanner.team/stops/X631aca", "https://tec.openplanner.team/stops/X631acb"], ["https://tec.openplanner.team/stops/N321aca", "https://tec.openplanner.team/stops/N321afb"], ["https://tec.openplanner.team/stops/Borblim2", "https://tec.openplanner.team/stops/Borbod92"], ["https://tec.openplanner.team/stops/LHVetoi2", "https://tec.openplanner.team/stops/LJAroue2"], ["https://tec.openplanner.team/stops/LbUgend2", "https://tec.openplanner.team/stops/LbUpost1"], ["https://tec.openplanner.team/stops/Lstscie1", "https://tec.openplanner.team/stops/Lsttech2"], ["https://tec.openplanner.team/stops/H4lg102a", "https://tec.openplanner.team/stops/H4lg103a"], ["https://tec.openplanner.team/stops/LbRfrie2", "https://tec.openplanner.team/stops/LtHkirc4"], ["https://tec.openplanner.team/stops/H1ms258a", "https://tec.openplanner.team/stops/H1ms258b"], ["https://tec.openplanner.team/stops/H1ni317a", "https://tec.openplanner.team/stops/H1ni317b"], ["https://tec.openplanner.team/stops/X759aaa", "https://tec.openplanner.team/stops/X886aga"], ["https://tec.openplanner.team/stops/X615ava", "https://tec.openplanner.team/stops/X615awb"], ["https://tec.openplanner.team/stops/Ldipl--2", "https://tec.openplanner.team/stops/Ldipl--5"], ["https://tec.openplanner.team/stops/N501eba", "https://tec.openplanner.team/stops/N501eby"], ["https://tec.openplanner.team/stops/Cluchbl1", "https://tec.openplanner.team/stops/Cluplve3"], ["https://tec.openplanner.team/stops/Bsauvmo1", "https://tec.openplanner.team/stops/Bsauvmo2"], ["https://tec.openplanner.team/stops/H1ls105a", "https://tec.openplanner.team/stops/H1ls106a"], ["https://tec.openplanner.team/stops/H1nm140a", "https://tec.openplanner.team/stops/H1nm141b"], ["https://tec.openplanner.team/stops/Cmlcent2", "https://tec.openplanner.team/stops/NC01ahb"], ["https://tec.openplanner.team/stops/X741aga", "https://tec.openplanner.team/stops/X741ahb"], ["https://tec.openplanner.team/stops/H4eg106a", "https://tec.openplanner.team/stops/H4ne136b"], ["https://tec.openplanner.team/stops/X717abb", "https://tec.openplanner.team/stops/X782apa"], ["https://tec.openplanner.team/stops/Cgrchas1", "https://tec.openplanner.team/stops/Cgrchas2"], ["https://tec.openplanner.team/stops/N543cja", "https://tec.openplanner.team/stops/N543cjb"], ["https://tec.openplanner.team/stops/X636aba", "https://tec.openplanner.team/stops/X670aqa"], ["https://tec.openplanner.team/stops/LCPoneu2", "https://tec.openplanner.team/stops/LPOchan2"], ["https://tec.openplanner.team/stops/LAMgreg1", "https://tec.openplanner.team/stops/LAMrich2"], ["https://tec.openplanner.team/stops/X950aab", "https://tec.openplanner.team/stops/X955aca"], ["https://tec.openplanner.team/stops/LLUadze1", "https://tec.openplanner.team/stops/LLUadze2"], ["https://tec.openplanner.team/stops/N521ava", "https://tec.openplanner.team/stops/N521avb"], ["https://tec.openplanner.team/stops/Lanfran2", "https://tec.openplanner.team/stops/Lanyser2"], ["https://tec.openplanner.team/stops/N513aoa", "https://tec.openplanner.team/stops/N513bfb"], ["https://tec.openplanner.team/stops/X601cva", "https://tec.openplanner.team/stops/X601dca"], ["https://tec.openplanner.team/stops/Bblacar2", "https://tec.openplanner.team/stops/Bbsicea1"], ["https://tec.openplanner.team/stops/Benggar1", "https://tec.openplanner.team/stops/Bptegna2"], ["https://tec.openplanner.team/stops/Bglicsm1", "https://tec.openplanner.team/stops/Btlbtho1"], ["https://tec.openplanner.team/stops/Bwatmsj6", "https://tec.openplanner.team/stops/Bwatsan1"], ["https://tec.openplanner.team/stops/Cctfrbe2", "https://tec.openplanner.team/stops/Cctrjus2"], ["https://tec.openplanner.team/stops/LeYwald2", "https://tec.openplanner.team/stops/LhSheid1"], ["https://tec.openplanner.team/stops/Bbghepi1", "https://tec.openplanner.team/stops/Bbghsar1"], ["https://tec.openplanner.team/stops/LBBlaga1", "https://tec.openplanner.team/stops/LBBodet2"], ["https://tec.openplanner.team/stops/LSTmast1", "https://tec.openplanner.team/stops/LSTmeiz2"], ["https://tec.openplanner.team/stops/H4pq112b", "https://tec.openplanner.team/stops/H4pq113a"], ["https://tec.openplanner.team/stops/Lsebico1", "https://tec.openplanner.team/stops/Lsehosp2"], ["https://tec.openplanner.team/stops/N562ama", "https://tec.openplanner.team/stops/N562bqa"], ["https://tec.openplanner.team/stops/Llgandr1", "https://tec.openplanner.team/stops/Llgfail1"], ["https://tec.openplanner.team/stops/Lselimi2", "https://tec.openplanner.team/stops/Lsestap2"], ["https://tec.openplanner.team/stops/LBsfer-1", "https://tec.openplanner.team/stops/LMHoha-2"], ["https://tec.openplanner.team/stops/Bchgbru2", "https://tec.openplanner.team/stops/Btsllnd1"], ["https://tec.openplanner.team/stops/Ljetout1", "https://tec.openplanner.team/stops/Ljetout2"], ["https://tec.openplanner.team/stops/N113abb", "https://tec.openplanner.team/stops/N139aca"], ["https://tec.openplanner.team/stops/H2go113a", "https://tec.openplanner.team/stops/H2go113b"], ["https://tec.openplanner.team/stops/Cgon51", "https://tec.openplanner.team/stops/Cjuepee1"], ["https://tec.openplanner.team/stops/LbTweyn1", "https://tec.openplanner.team/stops/LbUvith1"], ["https://tec.openplanner.team/stops/LSCeg--1", "https://tec.openplanner.team/stops/LSCeg--4"], ["https://tec.openplanner.team/stops/LAWjaur1", "https://tec.openplanner.team/stops/LAWvold1"], ["https://tec.openplanner.team/stops/Bniltri1", "https://tec.openplanner.team/stops/Bniltri2"], ["https://tec.openplanner.team/stops/LLrelec2", "https://tec.openplanner.team/stops/LLrhest2"], ["https://tec.openplanner.team/stops/Bcrnnca1", "https://tec.openplanner.team/stops/Bcrnnra2"], ["https://tec.openplanner.team/stops/N211arb", "https://tec.openplanner.team/stops/N211baa"], ["https://tec.openplanner.team/stops/Csesabo1", "https://tec.openplanner.team/stops/N424aba"], ["https://tec.openplanner.team/stops/Llaeg--2", "https://tec.openplanner.team/stops/Llaflot1"], ["https://tec.openplanner.team/stops/X793aea", "https://tec.openplanner.team/stops/X793agb"], ["https://tec.openplanner.team/stops/H4ae132d", "https://tec.openplanner.team/stops/H4ea130a"], ["https://tec.openplanner.team/stops/N554aga", "https://tec.openplanner.team/stops/N566aea"], ["https://tec.openplanner.team/stops/LnDrund2", "https://tec.openplanner.team/stops/LnDthel1"], ["https://tec.openplanner.team/stops/Lghfore1", "https://tec.openplanner.team/stops/Lghfore2"], ["https://tec.openplanner.team/stops/LSUroyo1", "https://tec.openplanner.team/stops/LTgjalh2"], ["https://tec.openplanner.team/stops/H4my120a", "https://tec.openplanner.team/stops/H4my122b"], ["https://tec.openplanner.team/stops/H4ch113b", "https://tec.openplanner.team/stops/H4vx363b"], ["https://tec.openplanner.team/stops/X768aab", "https://tec.openplanner.team/stops/X768aba"], ["https://tec.openplanner.team/stops/Bcrncjo1", "https://tec.openplanner.team/stops/Bernpon1"], ["https://tec.openplanner.team/stops/LOdbuis1", "https://tec.openplanner.team/stops/LVlleme3"], ["https://tec.openplanner.team/stops/H3so187a", "https://tec.openplanner.team/stops/H3so187b"], ["https://tec.openplanner.team/stops/X834acb", "https://tec.openplanner.team/stops/X834ada"], ["https://tec.openplanner.team/stops/Llabrou1", "https://tec.openplanner.team/stops/Llaeg--1"], ["https://tec.openplanner.team/stops/Btsllib2", "https://tec.openplanner.team/stops/Btslnil1"], ["https://tec.openplanner.team/stops/LTiterr1", "https://tec.openplanner.team/stops/LTiterr2"], ["https://tec.openplanner.team/stops/LHUchin*", "https://tec.openplanner.team/stops/NL80ava"], ["https://tec.openplanner.team/stops/NH01akb", "https://tec.openplanner.team/stops/NH01ala"], ["https://tec.openplanner.team/stops/X912aca", "https://tec.openplanner.team/stops/X912acb"], ["https://tec.openplanner.team/stops/Bgzdgth2", "https://tec.openplanner.team/stops/Bgzdpis1"], ["https://tec.openplanner.team/stops/Buccdho2", "https://tec.openplanner.team/stops/Buccobs1"], ["https://tec.openplanner.team/stops/H5rx106b", "https://tec.openplanner.team/stops/H5rx139a"], ["https://tec.openplanner.team/stops/Lligare1", "https://tec.openplanner.team/stops/Lligare2"], ["https://tec.openplanner.team/stops/Cdacolu2", "https://tec.openplanner.team/stops/Cdadest1"], ["https://tec.openplanner.team/stops/N368aba", "https://tec.openplanner.team/stops/N368acb"], ["https://tec.openplanner.team/stops/X661arb", "https://tec.openplanner.team/stops/X661arc"], ["https://tec.openplanner.team/stops/Cchwate2", "https://tec.openplanner.team/stops/Cchwate3"], ["https://tec.openplanner.team/stops/X812aua", "https://tec.openplanner.team/stops/X812bab"], ["https://tec.openplanner.team/stops/LEScham2", "https://tec.openplanner.team/stops/LESsouv1"], ["https://tec.openplanner.team/stops/X657afa", "https://tec.openplanner.team/stops/X657afb"], ["https://tec.openplanner.team/stops/Bwatcci2", "https://tec.openplanner.team/stops/Bwatceg1"], ["https://tec.openplanner.team/stops/N135aed", "https://tec.openplanner.team/stops/N135alb"], ["https://tec.openplanner.team/stops/H5qu142a", "https://tec.openplanner.team/stops/H5qu150a"], ["https://tec.openplanner.team/stops/LAUneuv5", "https://tec.openplanner.team/stops/LAUtism2"], ["https://tec.openplanner.team/stops/H1ha190b", "https://tec.openplanner.team/stops/H1ha192b"], ["https://tec.openplanner.team/stops/H2pe156b", "https://tec.openplanner.team/stops/H2re163a"], ["https://tec.openplanner.team/stops/X640ana", "https://tec.openplanner.team/stops/X640aoa"], ["https://tec.openplanner.team/stops/Chhegli2", "https://tec.openplanner.team/stops/Chhegli4"], ["https://tec.openplanner.team/stops/N111acb", "https://tec.openplanner.team/stops/N111adb"], ["https://tec.openplanner.team/stops/X809ada", "https://tec.openplanner.team/stops/X809afa"], ["https://tec.openplanner.team/stops/LMttrou1", "https://tec.openplanner.team/stops/LMttrou2"], ["https://tec.openplanner.team/stops/N135bfa", "https://tec.openplanner.team/stops/N135bga"], ["https://tec.openplanner.team/stops/H1cu118a", "https://tec.openplanner.team/stops/H1cu121a"], ["https://tec.openplanner.team/stops/N566aea", "https://tec.openplanner.team/stops/N566afa"], ["https://tec.openplanner.team/stops/N145adb", "https://tec.openplanner.team/stops/N145agb"], ["https://tec.openplanner.team/stops/N351ana", "https://tec.openplanner.team/stops/N357ada"], ["https://tec.openplanner.team/stops/Cprcits1", "https://tec.openplanner.team/stops/Cprlpre1"], ["https://tec.openplanner.team/stops/Cwfdupo2", "https://tec.openplanner.team/stops/Cwfplac1"], ["https://tec.openplanner.team/stops/N551arb", "https://tec.openplanner.team/stops/N551arc"], ["https://tec.openplanner.team/stops/X896aga", "https://tec.openplanner.team/stops/X896agb"], ["https://tec.openplanner.team/stops/Bdoncar2", "https://tec.openplanner.team/stops/Bgligli1"], ["https://tec.openplanner.team/stops/X945aba", "https://tec.openplanner.team/stops/X947aaa"], ["https://tec.openplanner.team/stops/H1el135b", "https://tec.openplanner.team/stops/H1wi152d"], ["https://tec.openplanner.team/stops/X982bga", "https://tec.openplanner.team/stops/X986aha"], ["https://tec.openplanner.team/stops/LkEbbl-1", "https://tec.openplanner.team/stops/LkEkirc2"], ["https://tec.openplanner.team/stops/Lhutann2", "https://tec.openplanner.team/stops/Lmnbass1"], ["https://tec.openplanner.team/stops/LeUclou1", "https://tec.openplanner.team/stops/LHthest2"], ["https://tec.openplanner.team/stops/H4mo134a", "https://tec.openplanner.team/stops/H4mo181d"], ["https://tec.openplanner.team/stops/LFemoul1", "https://tec.openplanner.team/stops/LFemoul2"], ["https://tec.openplanner.team/stops/X804adb", "https://tec.openplanner.team/stops/X804bea"], ["https://tec.openplanner.team/stops/H1ho138b", "https://tec.openplanner.team/stops/H1wl121a"], ["https://tec.openplanner.team/stops/N106aoa", "https://tec.openplanner.team/stops/N106ara"], ["https://tec.openplanner.team/stops/LENmc--2", "https://tec.openplanner.team/stops/LENsent1"], ["https://tec.openplanner.team/stops/Ccoha601", "https://tec.openplanner.team/stops/H2tz120a"], ["https://tec.openplanner.team/stops/X695afa", "https://tec.openplanner.team/stops/X695ala"], ["https://tec.openplanner.team/stops/X359acb", "https://tec.openplanner.team/stops/X371aba"], ["https://tec.openplanner.team/stops/LmYamel1", "https://tec.openplanner.team/stops/LmYamel2"], ["https://tec.openplanner.team/stops/N543azb", "https://tec.openplanner.team/stops/N543cga"], ["https://tec.openplanner.team/stops/Ctrecol3", "https://tec.openplanner.team/stops/Ctrecol4"], ["https://tec.openplanner.team/stops/LESecco2", "https://tec.openplanner.team/stops/LESmich1"], ["https://tec.openplanner.team/stops/LrAdrie5", "https://tec.openplanner.team/stops/LrAtitf2"], ["https://tec.openplanner.team/stops/N104afa", "https://tec.openplanner.team/stops/N104afb"], ["https://tec.openplanner.team/stops/LnUneun1", "https://tec.openplanner.team/stops/LnUneun2"], ["https://tec.openplanner.team/stops/X608ana", "https://tec.openplanner.team/stops/X608atb"], ["https://tec.openplanner.team/stops/H4mx118b", "https://tec.openplanner.team/stops/H4ve131a"], ["https://tec.openplanner.team/stops/LhGrote2", "https://tec.openplanner.team/stops/LkEschi1"], ["https://tec.openplanner.team/stops/N551aiy", "https://tec.openplanner.team/stops/N551aiz"], ["https://tec.openplanner.team/stops/Bbstrpo1", "https://tec.openplanner.team/stops/Bbstrpo2"], ["https://tec.openplanner.team/stops/H4mv192a", "https://tec.openplanner.team/stops/H4oe147b"], ["https://tec.openplanner.team/stops/H4be146a", "https://tec.openplanner.team/stops/H5bl120a"], ["https://tec.openplanner.team/stops/NL76aja", "https://tec.openplanner.team/stops/NL77ajb"], ["https://tec.openplanner.team/stops/X836acb", "https://tec.openplanner.team/stops/X836aib"], ["https://tec.openplanner.team/stops/Bmsgeco1", "https://tec.openplanner.team/stops/Bmsgmon2"], ["https://tec.openplanner.team/stops/Bzluegl2", "https://tec.openplanner.team/stops/Bzluvil1"], ["https://tec.openplanner.team/stops/LHodomm1", "https://tec.openplanner.team/stops/LHovach1"], ["https://tec.openplanner.team/stops/Cpl4bra3", "https://tec.openplanner.team/stops/Cplrond2"], ["https://tec.openplanner.team/stops/Cgygazo5", "https://tec.openplanner.team/stops/Cgygazo8"], ["https://tec.openplanner.team/stops/X757akb", "https://tec.openplanner.team/stops/X779aaa"], ["https://tec.openplanner.team/stops/N529afb", "https://tec.openplanner.team/stops/N584aoa"], ["https://tec.openplanner.team/stops/LBvnico2", "https://tec.openplanner.team/stops/LBvnico4"], ["https://tec.openplanner.team/stops/N531aua", "https://tec.openplanner.team/stops/N568abb"], ["https://tec.openplanner.team/stops/Bthsset1", "https://tec.openplanner.team/stops/NL37aib"], ["https://tec.openplanner.team/stops/LMgbatt2", "https://tec.openplanner.team/stops/LMgbern2"], ["https://tec.openplanner.team/stops/X902aqa", "https://tec.openplanner.team/stops/X902asa"], ["https://tec.openplanner.team/stops/Bnivver1", "https://tec.openplanner.team/stops/Bnivver2"], ["https://tec.openplanner.team/stops/LFUfleu2", "https://tec.openplanner.team/stops/LFUfonc1"], ["https://tec.openplanner.team/stops/Btslcej2", "https://tec.openplanner.team/stops/Btsllsc2"], ["https://tec.openplanner.team/stops/LGEhosp2", "https://tec.openplanner.team/stops/LGEvill2"], ["https://tec.openplanner.team/stops/X904ala", "https://tec.openplanner.team/stops/X907aba"], ["https://tec.openplanner.team/stops/Ltibalt2", "https://tec.openplanner.team/stops/Ltibell1"], ["https://tec.openplanner.team/stops/LTPlegr1", "https://tec.openplanner.team/stops/LTPtroi2"], ["https://tec.openplanner.team/stops/Loudemo1", "https://tec.openplanner.team/stops/Louencl2"], ["https://tec.openplanner.team/stops/X801baa", "https://tec.openplanner.team/stops/X801bja"], ["https://tec.openplanner.team/stops/Bnetace1", "https://tec.openplanner.team/stops/Bnetrbr2"], ["https://tec.openplanner.team/stops/Llgdelb2", "https://tec.openplanner.team/stops/Llgsimo1"], ["https://tec.openplanner.team/stops/X750acb", "https://tec.openplanner.team/stops/X750afb"], ["https://tec.openplanner.team/stops/X904afb", "https://tec.openplanner.team/stops/X904ahb"], ["https://tec.openplanner.team/stops/H1ms296c", "https://tec.openplanner.team/stops/H1ms296d"], ["https://tec.openplanner.team/stops/X746afb", "https://tec.openplanner.team/stops/X746agb"], ["https://tec.openplanner.team/stops/Blimbet3", "https://tec.openplanner.team/stops/Bottcpl2"], ["https://tec.openplanner.team/stops/X725afg", "https://tec.openplanner.team/stops/X725afh"], ["https://tec.openplanner.team/stops/H5at115a", "https://tec.openplanner.team/stops/H5at118b"], ["https://tec.openplanner.team/stops/LCFcarr2", "https://tec.openplanner.team/stops/LCFeg--1"], ["https://tec.openplanner.team/stops/Bhoegbr2", "https://tec.openplanner.team/stops/Bwbfbon2"], ["https://tec.openplanner.team/stops/LWDbure1", "https://tec.openplanner.team/stops/LWDchpl1"], ["https://tec.openplanner.team/stops/N222aba", "https://tec.openplanner.team/stops/X222afb"], ["https://tec.openplanner.team/stops/H4eg107a", "https://tec.openplanner.team/stops/H4eg107b"], ["https://tec.openplanner.team/stops/Cprgran2", "https://tec.openplanner.team/stops/NC11aoa"], ["https://tec.openplanner.team/stops/Blhufro1", "https://tec.openplanner.team/stops/Blhupqu1"], ["https://tec.openplanner.team/stops/H4pl135a", "https://tec.openplanner.team/stops/H4pl135b"], ["https://tec.openplanner.team/stops/N141ala", "https://tec.openplanner.team/stops/N141alb"], ["https://tec.openplanner.team/stops/LHMmarq1", "https://tec.openplanner.team/stops/LHMparq2"], ["https://tec.openplanner.team/stops/X926afb", "https://tec.openplanner.team/stops/X947aeb"], ["https://tec.openplanner.team/stops/Cmgvpa", "https://tec.openplanner.team/stops/Csyplac2"], ["https://tec.openplanner.team/stops/X358aca", "https://tec.openplanner.team/stops/X358acc"], ["https://tec.openplanner.team/stops/Lbrddef3", "https://tec.openplanner.team/stops/Lbrgrot2"], ["https://tec.openplanner.team/stops/LhEklos1", "https://tec.openplanner.team/stops/LhEtivo1"], ["https://tec.openplanner.team/stops/X792aba", "https://tec.openplanner.team/stops/X793aoa"], ["https://tec.openplanner.team/stops/X982aab", "https://tec.openplanner.team/stops/X982aad"], ["https://tec.openplanner.team/stops/N311aea", "https://tec.openplanner.team/stops/N311aec"], ["https://tec.openplanner.team/stops/Binccha2", "https://tec.openplanner.team/stops/Brxmbos2"], ["https://tec.openplanner.team/stops/X790ala", "https://tec.openplanner.team/stops/X790ama"], ["https://tec.openplanner.team/stops/N510afb", "https://tec.openplanner.team/stops/N513azb"], ["https://tec.openplanner.team/stops/X769aqb", "https://tec.openplanner.team/stops/X769atb"], ["https://tec.openplanner.team/stops/LbUjost3", "https://tec.openplanner.team/stops/LhUdenk1"], ["https://tec.openplanner.team/stops/H5bl115c", "https://tec.openplanner.team/stops/H5bl124b"], ["https://tec.openplanner.team/stops/Cdapige2", "https://tec.openplanner.team/stops/CMsacm2"], ["https://tec.openplanner.team/stops/LJAsuri1", "https://tec.openplanner.team/stops/LJAverv1"], ["https://tec.openplanner.team/stops/N509aia", "https://tec.openplanner.team/stops/N509bdb"], ["https://tec.openplanner.team/stops/H4ef165c", "https://tec.openplanner.team/stops/H4mb143b"], ["https://tec.openplanner.team/stops/LmTzoll2", "https://tec.openplanner.team/stops/LrTpost1"], ["https://tec.openplanner.team/stops/N562afb", "https://tec.openplanner.team/stops/N562bhb"], ["https://tec.openplanner.team/stops/LHMgulp2", "https://tec.openplanner.team/stops/LHMthys2"], ["https://tec.openplanner.team/stops/X666aka", "https://tec.openplanner.team/stops/X729aaa"], ["https://tec.openplanner.team/stops/NL75aba", "https://tec.openplanner.team/stops/NL75aca"], ["https://tec.openplanner.team/stops/Bnodtir4", "https://tec.openplanner.team/stops/Boplsma4"], ["https://tec.openplanner.team/stops/H4mo162a", "https://tec.openplanner.team/stops/H4mo167a"], ["https://tec.openplanner.team/stops/LwTkabi1", "https://tec.openplanner.team/stops/LwTkabi3"], ["https://tec.openplanner.team/stops/H1wa136a", "https://tec.openplanner.team/stops/H1wa140a"], ["https://tec.openplanner.team/stops/LVIdepo3", "https://tec.openplanner.team/stops/LVIhala3"], ["https://tec.openplanner.team/stops/LBseg--2", "https://tec.openplanner.team/stops/LBsfer-2"], ["https://tec.openplanner.team/stops/X907aca", "https://tec.openplanner.team/stops/X907acb"], ["https://tec.openplanner.team/stops/Cmygbbo3", "https://tec.openplanner.team/stops/Cmyrens2"], ["https://tec.openplanner.team/stops/LThbatt1", "https://tec.openplanner.team/stops/LThgare1"], ["https://tec.openplanner.team/stops/H1bx106a", "https://tec.openplanner.team/stops/H1mh116a"], ["https://tec.openplanner.team/stops/Cmcbriq2", "https://tec.openplanner.team/stops/Csysans2"], ["https://tec.openplanner.team/stops/N501jhb", "https://tec.openplanner.team/stops/N501jkb"], ["https://tec.openplanner.team/stops/LpEbins1", "https://tec.openplanner.team/stops/LpEbins2"], ["https://tec.openplanner.team/stops/H5at134a", "https://tec.openplanner.team/stops/H5at134b"], ["https://tec.openplanner.team/stops/H4er122a", "https://tec.openplanner.team/stops/H4er122b"], ["https://tec.openplanner.team/stops/N501gcb", "https://tec.openplanner.team/stops/N538aeb"], ["https://tec.openplanner.team/stops/Crojume2", "https://tec.openplanner.team/stops/Cropcan2"], ["https://tec.openplanner.team/stops/X615azb", "https://tec.openplanner.team/stops/X615bdb"], ["https://tec.openplanner.team/stops/N512anb", "https://tec.openplanner.team/stops/N512apa"], ["https://tec.openplanner.team/stops/LNHhome1", "https://tec.openplanner.team/stops/LTipont1"], ["https://tec.openplanner.team/stops/H4qu230b", "https://tec.openplanner.team/stops/H4qu408b"], ["https://tec.openplanner.team/stops/Bbiecoc2", "https://tec.openplanner.team/stops/Bbiesbi2"], ["https://tec.openplanner.team/stops/X675aab", "https://tec.openplanner.team/stops/X675aba"], ["https://tec.openplanner.team/stops/Cbfpoti1", "https://tec.openplanner.team/stops/Cbfpoti2"], ["https://tec.openplanner.team/stops/LENtour1", "https://tec.openplanner.team/stops/LSBsere2"], ["https://tec.openplanner.team/stops/Bettcha1", "https://tec.openplanner.team/stops/Bixepla2"], ["https://tec.openplanner.team/stops/Bbghgli1", "https://tec.openplanner.team/stops/Bstesar1"], ["https://tec.openplanner.team/stops/LCPhall1", "https://tec.openplanner.team/stops/LCPhall2"], ["https://tec.openplanner.team/stops/LBDfran2", "https://tec.openplanner.team/stops/LVEbors2"], ["https://tec.openplanner.team/stops/X659aqb", "https://tec.openplanner.team/stops/X659ava"], ["https://tec.openplanner.team/stops/N988aaa", "https://tec.openplanner.team/stops/N988aab"], ["https://tec.openplanner.team/stops/Cgncail1", "https://tec.openplanner.team/stops/Cgnpass1"], ["https://tec.openplanner.team/stops/H1gh157b", "https://tec.openplanner.team/stops/H1gh158b"], ["https://tec.openplanner.team/stops/LGLgare*", "https://tec.openplanner.team/stops/LGLgeer2"], ["https://tec.openplanner.team/stops/N501fub", "https://tec.openplanner.team/stops/N501hyb"], ["https://tec.openplanner.team/stops/Cgofert2", "https://tec.openplanner.team/stops/Ctmmana2"], ["https://tec.openplanner.team/stops/Bwatmsj1", "https://tec.openplanner.team/stops/Bwatmsj2"], ["https://tec.openplanner.team/stops/H2sb226a", "https://tec.openplanner.team/stops/H2sb266b"], ["https://tec.openplanner.team/stops/Bjaufca2", "https://tec.openplanner.team/stops/Bjaurgo1"], ["https://tec.openplanner.team/stops/Bcbqh452", "https://tec.openplanner.team/stops/Bcbqhai1"], ["https://tec.openplanner.team/stops/LlCauto2", "https://tec.openplanner.team/stops/LlCland1"], ["https://tec.openplanner.team/stops/Bgzdegl3", "https://tec.openplanner.team/stops/Bgzdgpa2"], ["https://tec.openplanner.team/stops/X982cea", "https://tec.openplanner.team/stops/X986aab"], ["https://tec.openplanner.team/stops/H1ba103a", "https://tec.openplanner.team/stops/H1ba103b"], ["https://tec.openplanner.team/stops/H3so168a", "https://tec.openplanner.team/stops/H3so168b"], ["https://tec.openplanner.team/stops/LABvill1", "https://tec.openplanner.team/stops/LHNtonn1"], ["https://tec.openplanner.team/stops/LMalarg3", "https://tec.openplanner.team/stops/LMalarg4"], ["https://tec.openplanner.team/stops/LkEbruc1", "https://tec.openplanner.team/stops/LkEbruc2"], ["https://tec.openplanner.team/stops/Lfhmalv2", "https://tec.openplanner.team/stops/Livgera3"], ["https://tec.openplanner.team/stops/X354aib", "https://tec.openplanner.team/stops/X858aab"], ["https://tec.openplanner.team/stops/Ljexhav1", "https://tec.openplanner.team/stops/Ljexhav4"], ["https://tec.openplanner.team/stops/H4ce102a", "https://tec.openplanner.team/stops/H4ce104a"], ["https://tec.openplanner.team/stops/Llgcond1", "https://tec.openplanner.team/stops/Llgpont2"], ["https://tec.openplanner.team/stops/N229aha", "https://tec.openplanner.team/stops/N229aoa"], ["https://tec.openplanner.team/stops/Lfhbott2", "https://tec.openplanner.team/stops/Lfhcime2"], ["https://tec.openplanner.team/stops/X775ahb", "https://tec.openplanner.team/stops/X775aja"], ["https://tec.openplanner.team/stops/Llaacca1", "https://tec.openplanner.team/stops/Lladete4"], ["https://tec.openplanner.team/stops/N213aca", "https://tec.openplanner.team/stops/N352aca"], ["https://tec.openplanner.team/stops/LHUloui1", "https://tec.openplanner.team/stops/LHUremy2"], ["https://tec.openplanner.team/stops/LkEgss-2", "https://tec.openplanner.team/stops/LkEneus2"], ["https://tec.openplanner.team/stops/N508apa", "https://tec.openplanner.team/stops/N508apb"], ["https://tec.openplanner.team/stops/Cauwauq2", "https://tec.openplanner.team/stops/N530agb"], ["https://tec.openplanner.team/stops/X734aka", "https://tec.openplanner.team/stops/X734and"], ["https://tec.openplanner.team/stops/Ccupdes1", "https://tec.openplanner.team/stops/Ccupdes4"], ["https://tec.openplanner.team/stops/N540adb", "https://tec.openplanner.team/stops/N540aib"], ["https://tec.openplanner.team/stops/X922akb", "https://tec.openplanner.team/stops/X922ala"], ["https://tec.openplanner.team/stops/X897aab", "https://tec.openplanner.team/stops/X897aba"], ["https://tec.openplanner.team/stops/LAVpequ2", "https://tec.openplanner.team/stops/LVHweri1"], ["https://tec.openplanner.team/stops/LSfcoll*", "https://tec.openplanner.team/stops/X512aib"], ["https://tec.openplanner.team/stops/H1ro130a", "https://tec.openplanner.team/stops/H1ro130b"], ["https://tec.openplanner.team/stops/X720aeb", "https://tec.openplanner.team/stops/X733aab"], ["https://tec.openplanner.team/stops/LSXbecc2", "https://tec.openplanner.team/stops/LSXvill2"], ["https://tec.openplanner.team/stops/Cbctile", "https://tec.openplanner.team/stops/Clftour1"], ["https://tec.openplanner.team/stops/H2pr114b", "https://tec.openplanner.team/stops/H2pr118a"], ["https://tec.openplanner.team/stops/Cchba05", "https://tec.openplanner.team/stops/CMba1"], ["https://tec.openplanner.team/stops/Bblacar1", "https://tec.openplanner.team/stops/Bblapri1"], ["https://tec.openplanner.team/stops/Benimar2", "https://tec.openplanner.team/stops/NR21ajb"], ["https://tec.openplanner.team/stops/H1ba101a", "https://tec.openplanner.team/stops/H1ba102a"], ["https://tec.openplanner.team/stops/N512asa", "https://tec.openplanner.team/stops/N512ata"], ["https://tec.openplanner.team/stops/LFlabba1", "https://tec.openplanner.team/stops/LFlpark*"], ["https://tec.openplanner.team/stops/LCxreno1", "https://tec.openplanner.team/stops/LLM4rou4"], ["https://tec.openplanner.team/stops/H4ty264b", "https://tec.openplanner.team/stops/H4ty306b"], ["https://tec.openplanner.team/stops/Cchalou1", "https://tec.openplanner.team/stops/Cchmott1"], ["https://tec.openplanner.team/stops/Bbchmin2", "https://tec.openplanner.team/stops/Bitrmon2"], ["https://tec.openplanner.team/stops/Ljuinte1", "https://tec.openplanner.team/stops/Ljuinte2"], ["https://tec.openplanner.team/stops/N122aga", "https://tec.openplanner.team/stops/N122agb"], ["https://tec.openplanner.team/stops/X760aeb", "https://tec.openplanner.team/stops/X762aeb"], ["https://tec.openplanner.team/stops/LGOhevr1", "https://tec.openplanner.team/stops/LGOhevr2"], ["https://tec.openplanner.team/stops/H1qy134a", "https://tec.openplanner.team/stops/H1qy134b"], ["https://tec.openplanner.team/stops/LROhaie2", "https://tec.openplanner.team/stops/LSorobe2"], ["https://tec.openplanner.team/stops/H1lb134a", "https://tec.openplanner.team/stops/H1qu108a"], ["https://tec.openplanner.team/stops/X767ada", "https://tec.openplanner.team/stops/X769ata"], ["https://tec.openplanner.team/stops/X735aaa", "https://tec.openplanner.team/stops/X735abc"], ["https://tec.openplanner.team/stops/H2pe154a", "https://tec.openplanner.team/stops/H2pe154b"], ["https://tec.openplanner.team/stops/X804ada", "https://tec.openplanner.team/stops/X804aea"], ["https://tec.openplanner.team/stops/Cvvmonu1", "https://tec.openplanner.team/stops/Cvvmonu2"], ["https://tec.openplanner.team/stops/LCPbell2", "https://tec.openplanner.team/stops/LCPone92"], ["https://tec.openplanner.team/stops/Bincbbo2", "https://tec.openplanner.team/stops/Bincegl2"], ["https://tec.openplanner.team/stops/LJAcham1", "https://tec.openplanner.team/stops/LJAgoff2"], ["https://tec.openplanner.team/stops/LmCkirc1", "https://tec.openplanner.team/stops/LwEdorf1"], ["https://tec.openplanner.team/stops/LSGsolo1", "https://tec.openplanner.team/stops/LSGsolo2"], ["https://tec.openplanner.team/stops/X840afa", "https://tec.openplanner.team/stops/X840afb"], ["https://tec.openplanner.team/stops/X736ada", "https://tec.openplanner.team/stops/X736aea"], ["https://tec.openplanner.team/stops/LHUcamp1", "https://tec.openplanner.team/stops/LHUec--2"], ["https://tec.openplanner.team/stops/LBscasi1", "https://tec.openplanner.team/stops/NL72aaa"], ["https://tec.openplanner.team/stops/LCeterm2", "https://tec.openplanner.team/stops/LOMdodi2"], ["https://tec.openplanner.team/stops/Bgemgjo1", "https://tec.openplanner.team/stops/N522bvd"], ["https://tec.openplanner.team/stops/H1hc127c", "https://tec.openplanner.team/stops/H5gr135a"], ["https://tec.openplanner.team/stops/LBIpost1", "https://tec.openplanner.team/stops/Lghlogi2"], ["https://tec.openplanner.team/stops/LACwass2", "https://tec.openplanner.team/stops/LBUrout1"], ["https://tec.openplanner.team/stops/H5rx106a", "https://tec.openplanner.team/stops/H5rx106b"], ["https://tec.openplanner.team/stops/H1gh165b", "https://tec.openplanner.team/stops/H1gh165c"], ["https://tec.openplanner.team/stops/X654aba", "https://tec.openplanner.team/stops/X654abb"], ["https://tec.openplanner.team/stops/Bvirbru1", "https://tec.openplanner.team/stops/Bvirpla1"], ["https://tec.openplanner.team/stops/Lsmberg1", "https://tec.openplanner.team/stops/Lsmdams2"], ["https://tec.openplanner.team/stops/Llgbida1", "https://tec.openplanner.team/stops/Llglaur1"], ["https://tec.openplanner.team/stops/LLAbure2", "https://tec.openplanner.team/stops/LPleclu2"], ["https://tec.openplanner.team/stops/N563anb", "https://tec.openplanner.team/stops/N570acb"], ["https://tec.openplanner.team/stops/N501eua", "https://tec.openplanner.team/stops/N501exa"], ["https://tec.openplanner.team/stops/N576akc", "https://tec.openplanner.team/stops/N576akd"], ["https://tec.openplanner.team/stops/LATcorp1", "https://tec.openplanner.team/stops/LATmals2"], ["https://tec.openplanner.team/stops/H1br127a", "https://tec.openplanner.team/stops/H3bo101a"], ["https://tec.openplanner.team/stops/X601bwa", "https://tec.openplanner.team/stops/X601bxb"], ["https://tec.openplanner.team/stops/Bnivrsa1", "https://tec.openplanner.team/stops/Bnivrsa2"], ["https://tec.openplanner.team/stops/Btubind1", "https://tec.openplanner.team/stops/Btubpla1"], ["https://tec.openplanner.team/stops/Bgnvpco3", "https://tec.openplanner.team/stops/Brixroi2"], ["https://tec.openplanner.team/stops/H2ll178a", "https://tec.openplanner.team/stops/H2ll180a"], ["https://tec.openplanner.team/stops/LLrhaut3", "https://tec.openplanner.team/stops/LREhaut1"], ["https://tec.openplanner.team/stops/N520abb", "https://tec.openplanner.team/stops/N520ajb"], ["https://tec.openplanner.team/stops/Cjuathe2", "https://tec.openplanner.team/stops/Clostan1"], ["https://tec.openplanner.team/stops/Lpevove2", "https://tec.openplanner.team/stops/LWevand2"], ["https://tec.openplanner.team/stops/NL77ana", "https://tec.openplanner.team/stops/NL78acb"], ["https://tec.openplanner.team/stops/Bfelpla1", "https://tec.openplanner.team/stops/Bfelpla2"], ["https://tec.openplanner.team/stops/LBBodet1", "https://tec.openplanner.team/stops/LBBodet2"], ["https://tec.openplanner.team/stops/Lchcomm2", "https://tec.openplanner.team/stops/Lchsaeg2"], ["https://tec.openplanner.team/stops/Ctubpos1", "https://tec.openplanner.team/stops/Ctubpos2"], ["https://tec.openplanner.team/stops/N565aja", "https://tec.openplanner.team/stops/N565ajb"], ["https://tec.openplanner.team/stops/LAUabat1", "https://tec.openplanner.team/stops/LAUcose2"], ["https://tec.openplanner.team/stops/LBivill1", "https://tec.openplanner.team/stops/LDObell1"], ["https://tec.openplanner.team/stops/Ctmsncb1", "https://tec.openplanner.team/stops/Ctmsncb2"], ["https://tec.openplanner.team/stops/LaAmise2", "https://tec.openplanner.team/stops/LaAseba1"], ["https://tec.openplanner.team/stops/X806adb", "https://tec.openplanner.team/stops/X806ala"], ["https://tec.openplanner.team/stops/X898aaa", "https://tec.openplanner.team/stops/X898afa"], ["https://tec.openplanner.team/stops/Cjojonc2", "https://tec.openplanner.team/stops/NC24ajb"], ["https://tec.openplanner.team/stops/H3so160a", "https://tec.openplanner.team/stops/H3so177a"], ["https://tec.openplanner.team/stops/H4ce100b", "https://tec.openplanner.team/stops/H4mx119a"], ["https://tec.openplanner.team/stops/X342afb", "https://tec.openplanner.team/stops/X354aca"], ["https://tec.openplanner.team/stops/X604ahb", "https://tec.openplanner.team/stops/X604akb"], ["https://tec.openplanner.team/stops/NC14aab", "https://tec.openplanner.team/stops/NC14apa"], ["https://tec.openplanner.team/stops/X953aca", "https://tec.openplanner.team/stops/X953acb"], ["https://tec.openplanner.team/stops/Blindel3", "https://tec.openplanner.team/stops/Blindel4"], ["https://tec.openplanner.team/stops/LARgare4", "https://tec.openplanner.team/stops/Lchorme1"], ["https://tec.openplanner.team/stops/LSGcolo1", "https://tec.openplanner.team/stops/LSGcolo2"], ["https://tec.openplanner.team/stops/Llgboux1", "https://tec.openplanner.team/stops/Llgmair2"], ["https://tec.openplanner.team/stops/X601bra", "https://tec.openplanner.team/stops/X601dfa"], ["https://tec.openplanner.team/stops/LwSschw1", "https://tec.openplanner.team/stops/LwSschw2"], ["https://tec.openplanner.team/stops/LeLbutg1", "https://tec.openplanner.team/stops/LeLbutg4"], ["https://tec.openplanner.team/stops/X994aeb", "https://tec.openplanner.team/stops/X994agb"], ["https://tec.openplanner.team/stops/LMNeg--1", "https://tec.openplanner.team/stops/LMsheid1"], ["https://tec.openplanner.team/stops/X738ada", "https://tec.openplanner.team/stops/X771adb"], ["https://tec.openplanner.team/stops/X605aba", "https://tec.openplanner.team/stops/X605abb"], ["https://tec.openplanner.team/stops/Bolphgr1", "https://tec.openplanner.team/stops/Bolphgr2"], ["https://tec.openplanner.team/stops/Lflrhot2", "https://tec.openplanner.team/stops/Lre3che1"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lvehauz2"], ["https://tec.openplanner.team/stops/H1sp357b", "https://tec.openplanner.team/stops/H1ss350a"], ["https://tec.openplanner.team/stops/Lsmh1801", "https://tec.openplanner.team/stops/Lvepoud1"], ["https://tec.openplanner.team/stops/N207afb", "https://tec.openplanner.team/stops/N209aca"], ["https://tec.openplanner.team/stops/Lvieg--1", "https://tec.openplanner.team/stops/Lvitour1"], ["https://tec.openplanner.team/stops/X812aka", "https://tec.openplanner.team/stops/X812akb"], ["https://tec.openplanner.team/stops/N151ajc", "https://tec.openplanner.team/stops/N152aaa"], ["https://tec.openplanner.team/stops/Botteco1", "https://tec.openplanner.team/stops/Botteco2"], ["https://tec.openplanner.team/stops/N301aka", "https://tec.openplanner.team/stops/N301ama"], ["https://tec.openplanner.team/stops/H1bx106a", "https://tec.openplanner.team/stops/H1bx107a"], ["https://tec.openplanner.team/stops/X822adb", "https://tec.openplanner.team/stops/X822aeb"], ["https://tec.openplanner.team/stops/N501cwa", "https://tec.openplanner.team/stops/N501cxa"], ["https://tec.openplanner.team/stops/N103aab", "https://tec.openplanner.team/stops/N103ada"], ["https://tec.openplanner.team/stops/X601aja", "https://tec.openplanner.team/stops/X601ajb"], ["https://tec.openplanner.team/stops/H1pa105a", "https://tec.openplanner.team/stops/H1qu108b"], ["https://tec.openplanner.team/stops/X733aab", "https://tec.openplanner.team/stops/X775ada"], ["https://tec.openplanner.team/stops/LWDcime1", "https://tec.openplanner.team/stops/LWDcime2"], ["https://tec.openplanner.team/stops/X766aea", "https://tec.openplanner.team/stops/X766afb"], ["https://tec.openplanner.team/stops/H4ta118a", "https://tec.openplanner.team/stops/H4ta118b"], ["https://tec.openplanner.team/stops/LrAputz1", "https://tec.openplanner.team/stops/LrAputz2"], ["https://tec.openplanner.team/stops/N204aab", "https://tec.openplanner.team/stops/N205adb"], ["https://tec.openplanner.team/stops/Bstemco2", "https://tec.openplanner.team/stops/Bstetre1"], ["https://tec.openplanner.team/stops/Bottgar1", "https://tec.openplanner.team/stops/Bottgar7"], ["https://tec.openplanner.team/stops/Bwatali1", "https://tec.openplanner.team/stops/Bwatgar2"], ["https://tec.openplanner.team/stops/N501icy", "https://tec.openplanner.team/stops/N501ipa"], ["https://tec.openplanner.team/stops/H2fy121b", "https://tec.openplanner.team/stops/H2lh127a"], ["https://tec.openplanner.team/stops/X660aib", "https://tec.openplanner.team/stops/X672aca"], ["https://tec.openplanner.team/stops/N539afa", "https://tec.openplanner.team/stops/N539afb"], ["https://tec.openplanner.team/stops/N135aya", "https://tec.openplanner.team/stops/N135ayb"], ["https://tec.openplanner.team/stops/Bgemgjo2", "https://tec.openplanner.team/stops/Bgemman1"], ["https://tec.openplanner.team/stops/N207aea", "https://tec.openplanner.team/stops/N209aaa"], ["https://tec.openplanner.team/stops/N525afb", "https://tec.openplanner.team/stops/N525ala"], ["https://tec.openplanner.team/stops/N501aea", "https://tec.openplanner.team/stops/N501afb"], ["https://tec.openplanner.team/stops/Csobail1", "https://tec.openplanner.team/stops/Csobail2"], ["https://tec.openplanner.team/stops/LHSheur1", "https://tec.openplanner.team/stops/LWOpier1"], ["https://tec.openplanner.team/stops/H4ka393a", "https://tec.openplanner.team/stops/H4ka393b"], ["https://tec.openplanner.team/stops/Cblbaiv1", "https://tec.openplanner.team/stops/Cmivert1"], ["https://tec.openplanner.team/stops/Ccufos71", "https://tec.openplanner.team/stops/Cculpre2"], ["https://tec.openplanner.team/stops/X801cla", "https://tec.openplanner.team/stops/X801clb"], ["https://tec.openplanner.team/stops/H4am101a", "https://tec.openplanner.team/stops/H4am113b"], ["https://tec.openplanner.team/stops/N141aia", "https://tec.openplanner.team/stops/N143abb"], ["https://tec.openplanner.team/stops/LCFcafe2", "https://tec.openplanner.team/stops/LHaodei1"], ["https://tec.openplanner.team/stops/Chhclde1", "https://tec.openplanner.team/stops/Cnapetr1"], ["https://tec.openplanner.team/stops/X831aca", "https://tec.openplanner.team/stops/X831ada"], ["https://tec.openplanner.team/stops/X670aka", "https://tec.openplanner.team/stops/X670akb"], ["https://tec.openplanner.team/stops/LVSbleu1", "https://tec.openplanner.team/stops/LVSeg--1"], ["https://tec.openplanner.team/stops/LLEfagn1", "https://tec.openplanner.team/stops/LLEgare1"], ["https://tec.openplanner.team/stops/H4pq117a", "https://tec.openplanner.team/stops/H4pq118a"], ["https://tec.openplanner.team/stops/Cjuhame3", "https://tec.openplanner.team/stops/Cjulamb4"], ["https://tec.openplanner.team/stops/Lvomoul1", "https://tec.openplanner.team/stops/Lvomoul2"], ["https://tec.openplanner.team/stops/Bgnpjbe1", "https://tec.openplanner.team/stops/Bgnpjbe2"], ["https://tec.openplanner.team/stops/LRachen1", "https://tec.openplanner.team/stops/LRachen2"], ["https://tec.openplanner.team/stops/Bbiesbi2", "https://tec.openplanner.team/stops/Bptbsar2"], ["https://tec.openplanner.team/stops/Bblamsj2", "https://tec.openplanner.team/stops/Bwatcro1"], ["https://tec.openplanner.team/stops/LHYnoid1", "https://tec.openplanner.team/stops/LHYnoid2"], ["https://tec.openplanner.team/stops/N218aaa", "https://tec.openplanner.team/stops/N385aba"], ["https://tec.openplanner.team/stops/Bthspha1", "https://tec.openplanner.team/stops/Bthspha2"], ["https://tec.openplanner.team/stops/Lbocarr1", "https://tec.openplanner.team/stops/Lbocarr2"], ["https://tec.openplanner.team/stops/N501iba", "https://tec.openplanner.team/stops/N501ibb"], ["https://tec.openplanner.team/stops/Bwatbca2", "https://tec.openplanner.team/stops/Bwatcci1"], ["https://tec.openplanner.team/stops/Bbch4br5", "https://tec.openplanner.team/stops/Bbch4br6"], ["https://tec.openplanner.team/stops/X802aja", "https://tec.openplanner.team/stops/X802ajb"], ["https://tec.openplanner.team/stops/H1gi120c", "https://tec.openplanner.team/stops/H1vs145b"], ["https://tec.openplanner.team/stops/LFPkape3", "https://tec.openplanner.team/stops/LFPkast2"], ["https://tec.openplanner.team/stops/N584bob", "https://tec.openplanner.team/stops/N584bqb"], ["https://tec.openplanner.team/stops/H4bq100b", "https://tec.openplanner.team/stops/H4bq102b"], ["https://tec.openplanner.team/stops/LTIgare2", "https://tec.openplanner.team/stops/LTIgare4"], ["https://tec.openplanner.team/stops/Broncan2", "https://tec.openplanner.team/stops/Bronrch2"], ["https://tec.openplanner.team/stops/N244apb", "https://tec.openplanner.team/stops/N244aqa"], ["https://tec.openplanner.team/stops/Lhrchar2", "https://tec.openplanner.team/stops/Lhrchar4"], ["https://tec.openplanner.team/stops/N504aca", "https://tec.openplanner.team/stops/N511aea"], ["https://tec.openplanner.team/stops/Bhevgro1", "https://tec.openplanner.team/stops/Bovesnh1"], ["https://tec.openplanner.team/stops/Lgdec--2", "https://tec.openplanner.team/stops/Lgdmaye1"], ["https://tec.openplanner.team/stops/Llgdarc1", "https://tec.openplanner.team/stops/Llgdarc2"], ["https://tec.openplanner.team/stops/Bmalcar2", "https://tec.openplanner.team/stops/Bsrbbas2"], ["https://tec.openplanner.team/stops/H1hw119a", "https://tec.openplanner.team/stops/H1hw119b"], ["https://tec.openplanner.team/stops/N548afa", "https://tec.openplanner.team/stops/N548afb"], ["https://tec.openplanner.team/stops/N534adb", "https://tec.openplanner.team/stops/N534aea"], ["https://tec.openplanner.team/stops/H1ms247a", "https://tec.openplanner.team/stops/H1ms247b"], ["https://tec.openplanner.team/stops/Ladfoot1", "https://tec.openplanner.team/stops/Ladhomb1"], ["https://tec.openplanner.team/stops/X601bma", "https://tec.openplanner.team/stops/X601cab"], ["https://tec.openplanner.team/stops/H1sg146a", "https://tec.openplanner.team/stops/H1sg146b"], ["https://tec.openplanner.team/stops/LFehaut2", "https://tec.openplanner.team/stops/LFethie1"], ["https://tec.openplanner.team/stops/LbEkirc*", "https://tec.openplanner.team/stops/LeLbutg4"], ["https://tec.openplanner.team/stops/N232aeb", "https://tec.openplanner.team/stops/N232bpb"], ["https://tec.openplanner.team/stops/X879aca", "https://tec.openplanner.team/stops/X879aha"], ["https://tec.openplanner.team/stops/N548asa", "https://tec.openplanner.team/stops/N548asb"], ["https://tec.openplanner.team/stops/N145aja", "https://tec.openplanner.team/stops/N150aab"], ["https://tec.openplanner.team/stops/N521aja", "https://tec.openplanner.team/stops/N521ajb"], ["https://tec.openplanner.team/stops/X685aia", "https://tec.openplanner.team/stops/X687aga"], ["https://tec.openplanner.team/stops/Bbchgod2", "https://tec.openplanner.team/stops/Bbchume2"], ["https://tec.openplanner.team/stops/X740aga", "https://tec.openplanner.team/stops/X985aaa"], ["https://tec.openplanner.team/stops/LBStong1", "https://tec.openplanner.team/stops/LBStong2"], ["https://tec.openplanner.team/stops/Canvane1", "https://tec.openplanner.team/stops/Canvane2"], ["https://tec.openplanner.team/stops/X673aeb", "https://tec.openplanner.team/stops/X674aab"], ["https://tec.openplanner.team/stops/X922aja", "https://tec.openplanner.team/stops/X922amb"], ["https://tec.openplanner.team/stops/LBlhaut1", "https://tec.openplanner.team/stops/LLUg82-2"], ["https://tec.openplanner.team/stops/LAyabri2", "https://tec.openplanner.team/stops/LAyheid1"], ["https://tec.openplanner.team/stops/H4bo114a", "https://tec.openplanner.team/stops/H4bo114c"], ["https://tec.openplanner.team/stops/X917aca", "https://tec.openplanner.team/stops/X917aea"], ["https://tec.openplanner.team/stops/Bgemga11", "https://tec.openplanner.team/stops/N522bvh"], ["https://tec.openplanner.team/stops/X921aob", "https://tec.openplanner.team/stops/X925aea"], ["https://tec.openplanner.team/stops/X886ahb", "https://tec.openplanner.team/stops/X899aja"], ["https://tec.openplanner.team/stops/Csecroi1", "https://tec.openplanner.team/stops/Csecroi2"], ["https://tec.openplanner.team/stops/X666ada", "https://tec.openplanner.team/stops/X666ala"], ["https://tec.openplanner.team/stops/X901afa", "https://tec.openplanner.team/stops/X901afb"], ["https://tec.openplanner.team/stops/Cfrbrin1", "https://tec.openplanner.team/stops/Cfrcoop3"], ["https://tec.openplanner.team/stops/H4bf107b", "https://tec.openplanner.team/stops/H4bs113a"], ["https://tec.openplanner.team/stops/X397aba", "https://tec.openplanner.team/stops/X398aab"], ["https://tec.openplanner.team/stops/H1ha184a", "https://tec.openplanner.team/stops/H1ha186b"], ["https://tec.openplanner.team/stops/N505ama", "https://tec.openplanner.team/stops/N512awb"], ["https://tec.openplanner.team/stops/N160aca", "https://tec.openplanner.team/stops/N160agb"], ["https://tec.openplanner.team/stops/N550acb", "https://tec.openplanner.team/stops/N550ada"], ["https://tec.openplanner.team/stops/N212aca", "https://tec.openplanner.team/stops/N212afb"], ["https://tec.openplanner.team/stops/H1he109b", "https://tec.openplanner.team/stops/H1he110a"], ["https://tec.openplanner.team/stops/LXofans1", "https://tec.openplanner.team/stops/LXofans2"], ["https://tec.openplanner.team/stops/Lagcler1", "https://tec.openplanner.team/stops/Lagcler2"], ["https://tec.openplanner.team/stops/Bclgpla1", "https://tec.openplanner.team/stops/Bdvmcsa1"], ["https://tec.openplanner.team/stops/LAOpres1", "https://tec.openplanner.team/stops/LLStrid1"], ["https://tec.openplanner.team/stops/Cslbarb1", "https://tec.openplanner.team/stops/Cvtmaro2"], ["https://tec.openplanner.team/stops/N152aac", "https://tec.openplanner.team/stops/N152abb"], ["https://tec.openplanner.team/stops/N511alb", "https://tec.openplanner.team/stops/N511atb"], ["https://tec.openplanner.team/stops/Cbckios1", "https://tec.openplanner.team/stops/Cbctile"], ["https://tec.openplanner.team/stops/Blimmer2", "https://tec.openplanner.team/stops/Blimsob2"], ["https://tec.openplanner.team/stops/X640aab", "https://tec.openplanner.team/stops/X640ada"], ["https://tec.openplanner.team/stops/X713ana", "https://tec.openplanner.team/stops/X713anb"], ["https://tec.openplanner.team/stops/N313aec", "https://tec.openplanner.team/stops/N329aab"], ["https://tec.openplanner.team/stops/H2ch105c", "https://tec.openplanner.team/stops/H2ch112b"], ["https://tec.openplanner.team/stops/X634ala", "https://tec.openplanner.team/stops/X654aab"], ["https://tec.openplanner.team/stops/N501bpb", "https://tec.openplanner.team/stops/N501btb"], ["https://tec.openplanner.team/stops/Bbourel1", "https://tec.openplanner.team/stops/Bbsthpl2"], ["https://tec.openplanner.team/stops/H1mm121b", "https://tec.openplanner.team/stops/H1mm132a"], ["https://tec.openplanner.team/stops/H1me112b", "https://tec.openplanner.team/stops/H1me117c"], ["https://tec.openplanner.team/stops/H1el136a", "https://tec.openplanner.team/stops/H1tl121b"], ["https://tec.openplanner.team/stops/N248aab", "https://tec.openplanner.team/stops/N248abb"], ["https://tec.openplanner.team/stops/N201ana", "https://tec.openplanner.team/stops/N202aha"], ["https://tec.openplanner.team/stops/LPLg90-1", "https://tec.openplanner.team/stops/LPLroth1"], ["https://tec.openplanner.team/stops/Lseaven2", "https://tec.openplanner.team/stops/Lsepuit1"], ["https://tec.openplanner.team/stops/X664aja", "https://tec.openplanner.team/stops/X664aoa"], ["https://tec.openplanner.team/stops/LFPloob1", "https://tec.openplanner.team/stops/LFProt-1"], ["https://tec.openplanner.team/stops/Louairl1", "https://tec.openplanner.team/stops/Louhauf1"], ["https://tec.openplanner.team/stops/Bgzdcen1", "https://tec.openplanner.team/stops/Bgzdn252"], ["https://tec.openplanner.team/stops/H1gy115a", "https://tec.openplanner.team/stops/H1le121a"], ["https://tec.openplanner.team/stops/NR10aaa", "https://tec.openplanner.team/stops/NR21afb"], ["https://tec.openplanner.team/stops/Bblafra1", "https://tec.openplanner.team/stops/Bblasse2"], ["https://tec.openplanner.team/stops/LsVhupp2", "https://tec.openplanner.team/stops/LsVrodt2"], ["https://tec.openplanner.team/stops/LMOecsp1", "https://tec.openplanner.team/stops/LMOf35-1"], ["https://tec.openplanner.team/stops/X780aab", "https://tec.openplanner.team/stops/X780abb"], ["https://tec.openplanner.team/stops/H1ms280d", "https://tec.openplanner.team/stops/H1ms936a"], ["https://tec.openplanner.team/stops/N501kfb", "https://tec.openplanner.team/stops/N501kid"], ["https://tec.openplanner.team/stops/LmHflor1", "https://tec.openplanner.team/stops/LmTgers2"], ["https://tec.openplanner.team/stops/LHEcruc1", "https://tec.openplanner.team/stops/LHEoutr1"], ["https://tec.openplanner.team/stops/N241ada", "https://tec.openplanner.team/stops/N241afa"], ["https://tec.openplanner.team/stops/Brebeau2", "https://tec.openplanner.team/stops/Brebras1"], ["https://tec.openplanner.team/stops/H5el112b", "https://tec.openplanner.team/stops/H5el112d"], ["https://tec.openplanner.team/stops/X224aga", "https://tec.openplanner.team/stops/X398aha"], ["https://tec.openplanner.team/stops/H1ms313a", "https://tec.openplanner.team/stops/H1ms313b"], ["https://tec.openplanner.team/stops/H2ec101b", "https://tec.openplanner.team/stops/H2ec108b"], ["https://tec.openplanner.team/stops/Bnetegl1", "https://tec.openplanner.team/stops/Bpecsta1"], ["https://tec.openplanner.team/stops/Ccugilb2", "https://tec.openplanner.team/stops/Cflvxsa2"], ["https://tec.openplanner.team/stops/Bnivmat1", "https://tec.openplanner.team/stops/Bnivrec1"], ["https://tec.openplanner.team/stops/LHEoutr1", "https://tec.openplanner.team/stops/LHEzoni1"], ["https://tec.openplanner.team/stops/LwAlont4", "https://tec.openplanner.team/stops/LwAstum2"], ["https://tec.openplanner.team/stops/X624aaa", "https://tec.openplanner.team/stops/X624aab"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LFdchau2"], ["https://tec.openplanner.team/stops/H1wa154a", "https://tec.openplanner.team/stops/H1wa158b"], ["https://tec.openplanner.team/stops/X670aaa", "https://tec.openplanner.team/stops/X670arb"], ["https://tec.openplanner.team/stops/H4fr144b", "https://tec.openplanner.team/stops/H4ty301a"], ["https://tec.openplanner.team/stops/Bboseco2", "https://tec.openplanner.team/stops/Bbosgar2"], ["https://tec.openplanner.team/stops/LbUverb2", "https://tec.openplanner.team/stops/LhObull1"], ["https://tec.openplanner.team/stops/X641aha", "https://tec.openplanner.team/stops/X641ahb"], ["https://tec.openplanner.team/stops/N243aaa", "https://tec.openplanner.team/stops/N243aeb"], ["https://tec.openplanner.team/stops/X939aga", "https://tec.openplanner.team/stops/X939aha"], ["https://tec.openplanner.team/stops/Bitrhou2", "https://tec.openplanner.team/stops/Bitrh%C3%BBl2"], ["https://tec.openplanner.team/stops/Btileco2", "https://tec.openplanner.team/stops/Btilhti2"], ["https://tec.openplanner.team/stops/X991aca", "https://tec.openplanner.team/stops/X991ahb"], ["https://tec.openplanner.team/stops/N568aab", "https://tec.openplanner.team/stops/N568abb"], ["https://tec.openplanner.team/stops/N538awa", "https://tec.openplanner.team/stops/N538awb"], ["https://tec.openplanner.team/stops/Lseecol1", "https://tec.openplanner.team/stops/Lsehaut2"], ["https://tec.openplanner.team/stops/N577ajb", "https://tec.openplanner.team/stops/N577akb"], ["https://tec.openplanner.team/stops/N202abb", "https://tec.openplanner.team/stops/N202aca"], ["https://tec.openplanner.team/stops/H1ca106a", "https://tec.openplanner.team/stops/H1ne144a"], ["https://tec.openplanner.team/stops/Lsechev1", "https://tec.openplanner.team/stops/Lsestap1"], ["https://tec.openplanner.team/stops/X901ada", "https://tec.openplanner.team/stops/X901aea"], ["https://tec.openplanner.team/stops/X663apa", "https://tec.openplanner.team/stops/X663awa"], ["https://tec.openplanner.team/stops/H1gr113a", "https://tec.openplanner.team/stops/H1gr123c"], ["https://tec.openplanner.team/stops/X724ada", "https://tec.openplanner.team/stops/X724afb"], ["https://tec.openplanner.team/stops/LmHabzw1", "https://tec.openplanner.team/stops/LmHdrei1"], ["https://tec.openplanner.team/stops/LHHlomb2", "https://tec.openplanner.team/stops/LVTforg1"], ["https://tec.openplanner.team/stops/N242afa", "https://tec.openplanner.team/stops/N242afb"], ["https://tec.openplanner.team/stops/Cjucopp2", "https://tec.openplanner.team/stops/Cjuhden3"], ["https://tec.openplanner.team/stops/H1bo110b", "https://tec.openplanner.team/stops/H1bo111b"], ["https://tec.openplanner.team/stops/X601bjb", "https://tec.openplanner.team/stops/X601dia"], ["https://tec.openplanner.team/stops/Cliburl2", "https://tec.openplanner.team/stops/Clihame2"], ["https://tec.openplanner.team/stops/X948aic", "https://tec.openplanner.team/stops/X948ajb"], ["https://tec.openplanner.team/stops/H1br131b", "https://tec.openplanner.team/stops/H1br134b"], ["https://tec.openplanner.team/stops/X715amb", "https://tec.openplanner.team/stops/X715apb"], ["https://tec.openplanner.team/stops/H2pr115a", "https://tec.openplanner.team/stops/H3br103a"], ["https://tec.openplanner.team/stops/H1mh113c", "https://tec.openplanner.team/stops/H1mh115a"], ["https://tec.openplanner.team/stops/Cmadeli2", "https://tec.openplanner.team/stops/Cmasncb2"], ["https://tec.openplanner.team/stops/Cbblacb1", "https://tec.openplanner.team/stops/Cstmarz1"], ["https://tec.openplanner.team/stops/H4cr110a", "https://tec.openplanner.team/stops/H4wt160a"], ["https://tec.openplanner.team/stops/H4hx112b", "https://tec.openplanner.team/stops/H4hx124a"], ["https://tec.openplanner.team/stops/Bnivfdu2", "https://tec.openplanner.team/stops/Bnivn971"], ["https://tec.openplanner.team/stops/Caihai81", "https://tec.openplanner.team/stops/Crsaise1"], ["https://tec.openplanner.team/stops/X921abb", "https://tec.openplanner.team/stops/X921ada"], ["https://tec.openplanner.team/stops/LMaburg4", "https://tec.openplanner.team/stops/LMazonn4"], ["https://tec.openplanner.team/stops/Bgnvpap2", "https://tec.openplanner.team/stops/Brsrpar1"], ["https://tec.openplanner.team/stops/N210aab", "https://tec.openplanner.team/stops/X210azb"], ["https://tec.openplanner.team/stops/Lmocalv2", "https://tec.openplanner.team/stops/Lmopeup2"], ["https://tec.openplanner.team/stops/Llgbwez1", "https://tec.openplanner.team/stops/Llgcham3"], ["https://tec.openplanner.team/stops/Lgrcour2", "https://tec.openplanner.team/stops/Llgcorn3"], ["https://tec.openplanner.team/stops/LSTchef1", "https://tec.openplanner.team/stops/LSTdero1"], ["https://tec.openplanner.team/stops/LWAfabr2", "https://tec.openplanner.team/stops/LWAgare*"], ["https://tec.openplanner.team/stops/Lbrgrot1", "https://tec.openplanner.team/stops/Llgatel1"], ["https://tec.openplanner.team/stops/LTaxhos1", "https://tec.openplanner.team/stops/LTaxhos2"], ["https://tec.openplanner.team/stops/Bsmgmas1", "https://tec.openplanner.team/stops/Bsmgpon1"], ["https://tec.openplanner.team/stops/X873aba", "https://tec.openplanner.team/stops/X873acb"], ["https://tec.openplanner.team/stops/Cpibois1", "https://tec.openplanner.team/stops/Cpicite2"], ["https://tec.openplanner.team/stops/H1gq153b", "https://tec.openplanner.team/stops/H1sy145a"], ["https://tec.openplanner.team/stops/H1qu106a", "https://tec.openplanner.team/stops/H1qu107a"], ["https://tec.openplanner.team/stops/Bottppa1", "https://tec.openplanner.team/stops/Bottppa2"], ["https://tec.openplanner.team/stops/Lghcise1", "https://tec.openplanner.team/stops/Lghcise2"], ["https://tec.openplanner.team/stops/X809aeb", "https://tec.openplanner.team/stops/X858aba"], ["https://tec.openplanner.team/stops/LMNentr2", "https://tec.openplanner.team/stops/LMNpann1"], ["https://tec.openplanner.team/stops/H3br103a", "https://tec.openplanner.team/stops/H3so187b"], ["https://tec.openplanner.team/stops/H1wz171a", "https://tec.openplanner.team/stops/H2pe161b"], ["https://tec.openplanner.team/stops/LBgcroi4", "https://tec.openplanner.team/stops/LHmferm2"], ["https://tec.openplanner.team/stops/Bbwacol1", "https://tec.openplanner.team/stops/Bwavbwa2"], ["https://tec.openplanner.team/stops/LCpegli1", "https://tec.openplanner.team/stops/LSPvigi1"], ["https://tec.openplanner.team/stops/H4do108b", "https://tec.openplanner.team/stops/H4sl155a"], ["https://tec.openplanner.team/stops/H1gh150a", "https://tec.openplanner.team/stops/H1gh162c"], ["https://tec.openplanner.team/stops/H5rx126a", "https://tec.openplanner.team/stops/H5rx126b"], ["https://tec.openplanner.team/stops/Cchparc4", "https://tec.openplanner.team/stops/Cmtrneu1"], ["https://tec.openplanner.team/stops/N580aaa", "https://tec.openplanner.team/stops/N580ahb"], ["https://tec.openplanner.team/stops/LMemaza1", "https://tec.openplanner.team/stops/LMemaza2"], ["https://tec.openplanner.team/stops/X850aoa", "https://tec.openplanner.team/stops/X872aab"], ["https://tec.openplanner.team/stops/Cnapair2", "https://tec.openplanner.team/stops/N137ada"], ["https://tec.openplanner.team/stops/LScgore1", "https://tec.openplanner.team/stops/LScgore2"], ["https://tec.openplanner.team/stops/N501fdd", "https://tec.openplanner.team/stops/N501lwb"], ["https://tec.openplanner.team/stops/X651aga", "https://tec.openplanner.team/stops/X659abb"], ["https://tec.openplanner.team/stops/X757aaa", "https://tec.openplanner.team/stops/X757aga"], ["https://tec.openplanner.team/stops/H1qg138a", "https://tec.openplanner.team/stops/H1qy133a"], ["https://tec.openplanner.team/stops/Crcgmah1", "https://tec.openplanner.team/stops/NH03afb"], ["https://tec.openplanner.team/stops/LRRcarr1", "https://tec.openplanner.team/stops/LRRlimi1"], ["https://tec.openplanner.team/stops/H4ar172b", "https://tec.openplanner.team/stops/H4ho120b"], ["https://tec.openplanner.team/stops/Bnilhau1", "https://tec.openplanner.team/stops/Bnilspe1"], ["https://tec.openplanner.team/stops/X876aeb", "https://tec.openplanner.team/stops/X887aab"], ["https://tec.openplanner.team/stops/H4og209a", "https://tec.openplanner.team/stops/H4og212b"], ["https://tec.openplanner.team/stops/Cwfghis2", "https://tec.openplanner.team/stops/Cwfmonu1"], ["https://tec.openplanner.team/stops/N236ala", "https://tec.openplanner.team/stops/N236alb"], ["https://tec.openplanner.team/stops/X983aab", "https://tec.openplanner.team/stops/X983aba"], ["https://tec.openplanner.team/stops/Cctpano2", "https://tec.openplanner.team/stops/Cctvche2"], ["https://tec.openplanner.team/stops/N502aaa", "https://tec.openplanner.team/stops/N502abb"], ["https://tec.openplanner.team/stops/H4mx118a", "https://tec.openplanner.team/stops/H4mx118b"], ["https://tec.openplanner.team/stops/LhEcolo2", "https://tec.openplanner.team/stops/LWEgare1"], ["https://tec.openplanner.team/stops/LVBbvin", "https://tec.openplanner.team/stops/LVBvaux1"], ["https://tec.openplanner.team/stops/H4fr394a", "https://tec.openplanner.team/stops/H4ka176b"], ["https://tec.openplanner.team/stops/N501bna", "https://tec.openplanner.team/stops/N501bnb"], ["https://tec.openplanner.team/stops/N217aba", "https://tec.openplanner.team/stops/N261afa"], ["https://tec.openplanner.team/stops/X753abc", "https://tec.openplanner.team/stops/X753abd"], ["https://tec.openplanner.team/stops/N501ena", "https://tec.openplanner.team/stops/N501eoa"], ["https://tec.openplanner.team/stops/X825agb", "https://tec.openplanner.team/stops/X826agb"], ["https://tec.openplanner.team/stops/H1hi123b", "https://tec.openplanner.team/stops/H1hi124a"], ["https://tec.openplanner.team/stops/Lsedavy1", "https://tec.openplanner.team/stops/Lsepudd2"], ["https://tec.openplanner.team/stops/Lvimc--1", "https://tec.openplanner.team/stops/Lvitomb1"], ["https://tec.openplanner.team/stops/H4ne138b", "https://tec.openplanner.team/stops/H4te260a"], ["https://tec.openplanner.team/stops/H2ll173a", "https://tec.openplanner.team/stops/H2sv216b"], ["https://tec.openplanner.team/stops/X812ama", "https://tec.openplanner.team/stops/X812ana"], ["https://tec.openplanner.team/stops/N543bab", "https://tec.openplanner.team/stops/N543bia"], ["https://tec.openplanner.team/stops/N506afa", "https://tec.openplanner.team/stops/N506aja"], ["https://tec.openplanner.team/stops/Bclgvmo1", "https://tec.openplanner.team/stops/Bclgvmo2"], ["https://tec.openplanner.team/stops/Crebrux1", "https://tec.openplanner.team/stops/Crewaha2"], ["https://tec.openplanner.team/stops/N558ama", "https://tec.openplanner.team/stops/N558amb"], ["https://tec.openplanner.team/stops/LRObarr1", "https://tec.openplanner.team/stops/LRObarr2"], ["https://tec.openplanner.team/stops/LBssucr2", "https://tec.openplanner.team/stops/LWNcham2"], ["https://tec.openplanner.team/stops/Bhanath2", "https://tec.openplanner.team/stops/LHNecpr1"], ["https://tec.openplanner.team/stops/H2ha135c", "https://tec.openplanner.team/stops/H2tr245b"], ["https://tec.openplanner.team/stops/H1si163a", "https://tec.openplanner.team/stops/H4bo179a"], ["https://tec.openplanner.team/stops/Bohnmes4", "https://tec.openplanner.team/stops/Bohnmon1"], ["https://tec.openplanner.team/stops/LFslign1", "https://tec.openplanner.team/stops/LFslign2"], ["https://tec.openplanner.team/stops/H1ms901a", "https://tec.openplanner.team/stops/H1ms902a"], ["https://tec.openplanner.team/stops/Bwavfol1", "https://tec.openplanner.team/stops/Bwavfol2"], ["https://tec.openplanner.team/stops/H1ms267b", "https://tec.openplanner.team/stops/H1ni322b"], ["https://tec.openplanner.team/stops/Bnivaba2", "https://tec.openplanner.team/stops/Bnivrsa2"], ["https://tec.openplanner.team/stops/X879akb", "https://tec.openplanner.team/stops/X879aob"], ["https://tec.openplanner.team/stops/LHmcarr1", "https://tec.openplanner.team/stops/LHmferm2"], ["https://tec.openplanner.team/stops/Barcpre1", "https://tec.openplanner.team/stops/Bnettir1"], ["https://tec.openplanner.team/stops/H1em106b", "https://tec.openplanner.team/stops/H1em108a"], ["https://tec.openplanner.team/stops/X921alb", "https://tec.openplanner.team/stops/X925aea"], ["https://tec.openplanner.team/stops/N528awb", "https://tec.openplanner.team/stops/N542apb"], ["https://tec.openplanner.team/stops/H1sy140a", "https://tec.openplanner.team/stops/H1sy141b"], ["https://tec.openplanner.team/stops/X619aia", "https://tec.openplanner.team/stops/X619aic"], ["https://tec.openplanner.team/stops/LHUeuro1", "https://tec.openplanner.team/stops/LHUpala1"], ["https://tec.openplanner.team/stops/Brixmar3", "https://tec.openplanner.team/stops/Brixpbs1"], ["https://tec.openplanner.team/stops/N542aea", "https://tec.openplanner.team/stops/N542aja"], ["https://tec.openplanner.team/stops/H1nm138b", "https://tec.openplanner.team/stops/H1si157a"], ["https://tec.openplanner.team/stops/LFrvesd1", "https://tec.openplanner.team/stops/LFrvesd2"], ["https://tec.openplanner.team/stops/LREgar-1", "https://tec.openplanner.team/stops/LREgar-2"], ["https://tec.openplanner.team/stops/N538bba", "https://tec.openplanner.team/stops/N538bbb"], ["https://tec.openplanner.team/stops/Bbchcab1", "https://tec.openplanner.team/stops/Bbchcab2"], ["https://tec.openplanner.team/stops/Crewaba2", "https://tec.openplanner.team/stops/Crewaha1"], ["https://tec.openplanner.team/stops/X911aia", "https://tec.openplanner.team/stops/X911ana"], ["https://tec.openplanner.team/stops/X774ahb", "https://tec.openplanner.team/stops/X775aib"], ["https://tec.openplanner.team/stops/Bbiehss1", "https://tec.openplanner.team/stops/Bbiehss2"], ["https://tec.openplanner.team/stops/LGetroi1", "https://tec.openplanner.team/stops/LSIgera2"], ["https://tec.openplanner.team/stops/H2lh129b", "https://tec.openplanner.team/stops/H2mo145a"], ["https://tec.openplanner.team/stops/X925aka", "https://tec.openplanner.team/stops/X925akb"], ["https://tec.openplanner.team/stops/Bjaufca1", "https://tec.openplanner.team/stops/Bjaupro1"], ["https://tec.openplanner.team/stops/H1nm139b", "https://tec.openplanner.team/stops/H1nm140b"], ["https://tec.openplanner.team/stops/X813aab", "https://tec.openplanner.team/stops/X813acb"], ["https://tec.openplanner.team/stops/X756aba", "https://tec.openplanner.team/stops/X756acb"], ["https://tec.openplanner.team/stops/Llonaes1", "https://tec.openplanner.team/stops/Lloross1"], ["https://tec.openplanner.team/stops/H1ls109a", "https://tec.openplanner.team/stops/H1me113a"], ["https://tec.openplanner.team/stops/H4ne139a", "https://tec.openplanner.team/stops/H4ne139b"], ["https://tec.openplanner.team/stops/N426aca", "https://tec.openplanner.team/stops/N426ada"], ["https://tec.openplanner.team/stops/X823acb", "https://tec.openplanner.team/stops/X823aga"], ["https://tec.openplanner.team/stops/X955aca", "https://tec.openplanner.team/stops/X955acb"], ["https://tec.openplanner.team/stops/Bboueta1", "https://tec.openplanner.team/stops/Bcerpco2"], ["https://tec.openplanner.team/stops/X661axc", "https://tec.openplanner.team/stops/X822ala"], ["https://tec.openplanner.team/stops/N501hzc", "https://tec.openplanner.team/stops/N501inb"], ["https://tec.openplanner.team/stops/Bmrsayw1", "https://tec.openplanner.team/stops/Bmrsmco1"], ["https://tec.openplanner.team/stops/Loubiez3", "https://tec.openplanner.team/stops/Loucent2"], ["https://tec.openplanner.team/stops/Cfldand1", "https://tec.openplanner.team/stops/Cflfaub1"], ["https://tec.openplanner.team/stops/H4hu116b", "https://tec.openplanner.team/stops/H4ld130a"], ["https://tec.openplanner.team/stops/Ccodubo2", "https://tec.openplanner.team/stops/Ccovies2"], ["https://tec.openplanner.team/stops/X982bcb", "https://tec.openplanner.team/stops/X982bdb"], ["https://tec.openplanner.team/stops/X790aab", "https://tec.openplanner.team/stops/X790ana"], ["https://tec.openplanner.team/stops/LBNburg2", "https://tec.openplanner.team/stops/LeUgeme2"], ["https://tec.openplanner.team/stops/N522aha", "https://tec.openplanner.team/stops/N522ama"], ["https://tec.openplanner.team/stops/LWamass1", "https://tec.openplanner.team/stops/LWamass2"], ["https://tec.openplanner.team/stops/N308abb", "https://tec.openplanner.team/stops/N308bfb"], ["https://tec.openplanner.team/stops/LHApthe2", "https://tec.openplanner.team/stops/LHAstal2"], ["https://tec.openplanner.team/stops/X986afa", "https://tec.openplanner.team/stops/X986aia"], ["https://tec.openplanner.team/stops/Llgcrev2", "https://tec.openplanner.team/stops/Llgvelb2"], ["https://tec.openplanner.team/stops/LWazoni1", "https://tec.openplanner.team/stops/LWLhagi1"], ["https://tec.openplanner.team/stops/LBpbruy1", "https://tec.openplanner.team/stops/LBpecco2"], ["https://tec.openplanner.team/stops/Cctbois4", "https://tec.openplanner.team/stops/Ccupays2"], ["https://tec.openplanner.team/stops/X224ada", "https://tec.openplanner.team/stops/X398aha"], ["https://tec.openplanner.team/stops/X601cma", "https://tec.openplanner.team/stops/X601csb"], ["https://tec.openplanner.team/stops/X664afb", "https://tec.openplanner.team/stops/X664aga"], ["https://tec.openplanner.team/stops/Bsaupco1", "https://tec.openplanner.team/stops/Bsauvmo1"], ["https://tec.openplanner.team/stops/X788ada", "https://tec.openplanner.team/stops/X788aea"], ["https://tec.openplanner.team/stops/Clddelh1", "https://tec.openplanner.team/stops/Cldplac2"], ["https://tec.openplanner.team/stops/LmI129-1", "https://tec.openplanner.team/stops/LmI36--1"], ["https://tec.openplanner.team/stops/N209abb", "https://tec.openplanner.team/stops/N209aeb"], ["https://tec.openplanner.team/stops/Cbbcrbo2", "https://tec.openplanner.team/stops/Cbblacb1"], ["https://tec.openplanner.team/stops/Bbgerlr2", "https://tec.openplanner.team/stops/Blmldmi1"], ["https://tec.openplanner.team/stops/Bflcneu1", "https://tec.openplanner.team/stops/NR27aaa"], ["https://tec.openplanner.team/stops/H1le120a", "https://tec.openplanner.team/stops/H1le121b"], ["https://tec.openplanner.team/stops/Lemarde2", "https://tec.openplanner.team/stops/Lemhuet2"], ["https://tec.openplanner.team/stops/Bhenard2", "https://tec.openplanner.team/stops/Bhenard4"], ["https://tec.openplanner.team/stops/Bblaaca1", "https://tec.openplanner.team/stops/Bblague2"], ["https://tec.openplanner.team/stops/Ccogrha1", "https://tec.openplanner.team/stops/Cpcchau"], ["https://tec.openplanner.team/stops/LLteg--1", "https://tec.openplanner.team/stops/LLtwanz1"], ["https://tec.openplanner.team/stops/X741aic", "https://tec.openplanner.team/stops/X741anb"], ["https://tec.openplanner.team/stops/X898aga", "https://tec.openplanner.team/stops/X898agb"], ["https://tec.openplanner.team/stops/LBKmare2", "https://tec.openplanner.team/stops/LLnec--2"], ["https://tec.openplanner.team/stops/Lqbchat1", "https://tec.openplanner.team/stops/Lqbchat2"], ["https://tec.openplanner.team/stops/Btubbot1", "https://tec.openplanner.team/stops/Btubbot2"], ["https://tec.openplanner.team/stops/H4eg104b", "https://tec.openplanner.team/stops/H4eg108b"], ["https://tec.openplanner.team/stops/Cflchel3", "https://tec.openplanner.team/stops/Cflchel4"], ["https://tec.openplanner.team/stops/N501ixd", "https://tec.openplanner.team/stops/N501jdb"], ["https://tec.openplanner.team/stops/H4ho120a", "https://tec.openplanner.team/stops/H4ho120b"], ["https://tec.openplanner.team/stops/Bfelcen1", "https://tec.openplanner.team/stops/Bfelcen2"], ["https://tec.openplanner.team/stops/X758aba", "https://tec.openplanner.team/stops/X758abb"], ["https://tec.openplanner.team/stops/X813aaa", "https://tec.openplanner.team/stops/X857aba"], ["https://tec.openplanner.team/stops/Bmalwop2", "https://tec.openplanner.team/stops/Boppcen4"], ["https://tec.openplanner.team/stops/Bjod7co2", "https://tec.openplanner.team/stops/Bjodfab1"], ["https://tec.openplanner.team/stops/Llieg--2", "https://tec.openplanner.team/stops/Lvochev1"], ["https://tec.openplanner.team/stops/LSyeg--2", "https://tec.openplanner.team/stops/LTNsarl2"], ["https://tec.openplanner.team/stops/LChvill*", "https://tec.openplanner.team/stops/LSZprie1"], ["https://tec.openplanner.team/stops/LVLbovy1", "https://tec.openplanner.team/stops/LVLbovy2"], ["https://tec.openplanner.team/stops/Lselibe2", "https://tec.openplanner.team/stops/Lsevand1"], ["https://tec.openplanner.team/stops/Ldicorb2", "https://tec.openplanner.team/stops/Ldidefo1"], ["https://tec.openplanner.team/stops/H4bn174a", "https://tec.openplanner.team/stops/H4pi135b"], ["https://tec.openplanner.team/stops/Lrelier1", "https://tec.openplanner.team/stops/LSAtrih1"], ["https://tec.openplanner.team/stops/H4pe126a", "https://tec.openplanner.team/stops/H4pe128a"], ["https://tec.openplanner.team/stops/H1ms281b", "https://tec.openplanner.team/stops/H1ms309a"], ["https://tec.openplanner.team/stops/Bgliaau2", "https://tec.openplanner.team/stops/Bglicsm1"], ["https://tec.openplanner.team/stops/LHUpsar1", "https://tec.openplanner.team/stops/NL76ala"], ["https://tec.openplanner.team/stops/N579aba", "https://tec.openplanner.team/stops/N579aca"], ["https://tec.openplanner.team/stops/N501avb", "https://tec.openplanner.team/stops/N501cva"], ["https://tec.openplanner.team/stops/H1pe130a", "https://tec.openplanner.team/stops/H1pe131b"], ["https://tec.openplanner.team/stops/LCShoux2", "https://tec.openplanner.team/stops/LVTeg--1"], ["https://tec.openplanner.team/stops/LbAhenk1", "https://tec.openplanner.team/stops/LbAhull1"], ["https://tec.openplanner.team/stops/Bbealbu4", "https://tec.openplanner.team/stops/Bbealou2"], ["https://tec.openplanner.team/stops/X713aba", "https://tec.openplanner.team/stops/X713aca"], ["https://tec.openplanner.team/stops/X639aja", "https://tec.openplanner.team/stops/X639anb"], ["https://tec.openplanner.team/stops/Bchgflo1", "https://tec.openplanner.team/stops/Blontry2"], ["https://tec.openplanner.team/stops/X664ala", "https://tec.openplanner.team/stops/X664asa"], ["https://tec.openplanner.team/stops/LWOwa161", "https://tec.openplanner.team/stops/LWOwa162"], ["https://tec.openplanner.team/stops/Ctafran2", "https://tec.openplanner.team/stops/Ctaphaz1"], ["https://tec.openplanner.team/stops/Cgymara1", "https://tec.openplanner.team/stops/Cgywaut4"], ["https://tec.openplanner.team/stops/X720aab", "https://tec.openplanner.team/stops/X720adb"], ["https://tec.openplanner.team/stops/Lvochev1", "https://tec.openplanner.team/stops/Lvoplac2"], ["https://tec.openplanner.team/stops/H1as100a", "https://tec.openplanner.team/stops/H1as100b"], ["https://tec.openplanner.team/stops/Bnstver1", "https://tec.openplanner.team/stops/Bnstver2"], ["https://tec.openplanner.team/stops/LOewaut1", "https://tec.openplanner.team/stops/LOewaut2"], ["https://tec.openplanner.team/stops/LXoharz5", "https://tec.openplanner.team/stops/LXoharz6"], ["https://tec.openplanner.team/stops/H4fr142a", "https://tec.openplanner.team/stops/H4fr389a"], ["https://tec.openplanner.team/stops/LeYauss2", "https://tec.openplanner.team/stops/LeYdorf2"], ["https://tec.openplanner.team/stops/H4ty292a", "https://tec.openplanner.team/stops/H4ty330b"], ["https://tec.openplanner.team/stops/X666aba", "https://tec.openplanner.team/stops/X666aca"], ["https://tec.openplanner.team/stops/N509alb", "https://tec.openplanner.team/stops/N510adb"], ["https://tec.openplanner.team/stops/X896aab", "https://tec.openplanner.team/stops/X995adc"], ["https://tec.openplanner.team/stops/LaRkape2", "https://tec.openplanner.team/stops/LrUoudl2"], ["https://tec.openplanner.team/stops/Blhusor1", "https://tec.openplanner.team/stops/Brsrpar1"], ["https://tec.openplanner.team/stops/X633aka", "https://tec.openplanner.team/stops/X633akb"], ["https://tec.openplanner.team/stops/Bsenpeu1", "https://tec.openplanner.team/stops/Bsenpeu2"], ["https://tec.openplanner.team/stops/Bnivcol1", "https://tec.openplanner.team/stops/Bnivh%C3%B4p1"], ["https://tec.openplanner.team/stops/H1qp141b", "https://tec.openplanner.team/stops/H1qp150a"], ["https://tec.openplanner.team/stops/LmD181-2", "https://tec.openplanner.team/stops/LmDwei32"], ["https://tec.openplanner.team/stops/N501eby", "https://tec.openplanner.team/stops/N501fwa"], ["https://tec.openplanner.team/stops/Bnivhon2", "https://tec.openplanner.team/stops/Bthivil1"], ["https://tec.openplanner.team/stops/H2fy122b", "https://tec.openplanner.team/stops/H2fy123a"], ["https://tec.openplanner.team/stops/N519aha", "https://tec.openplanner.team/stops/N519ahb"], ["https://tec.openplanner.team/stops/Bgntffo1", "https://tec.openplanner.team/stops/Bgntpla1"], ["https://tec.openplanner.team/stops/N506aga", "https://tec.openplanner.team/stops/N556ada"], ["https://tec.openplanner.team/stops/Llmdavi2", "https://tec.openplanner.team/stops/Llmlaro2"], ["https://tec.openplanner.team/stops/Loubonc1", "https://tec.openplanner.team/stops/Loucorn1"], ["https://tec.openplanner.team/stops/Bovecha1", "https://tec.openplanner.team/stops/Bpecdel2"], ["https://tec.openplanner.team/stops/H1hr121d", "https://tec.openplanner.team/stops/H2pr119a"], ["https://tec.openplanner.team/stops/Bwatdco1", "https://tec.openplanner.team/stops/Bwatlbs1"], ["https://tec.openplanner.team/stops/N514aaa", "https://tec.openplanner.team/stops/N514akb"], ["https://tec.openplanner.team/stops/H4wn124a", "https://tec.openplanner.team/stops/H4wn131a"], ["https://tec.openplanner.team/stops/H5el105a", "https://tec.openplanner.team/stops/H5rx132b"], ["https://tec.openplanner.team/stops/H4fo115b", "https://tec.openplanner.team/stops/H4fo119b"], ["https://tec.openplanner.team/stops/H1fr114a", "https://tec.openplanner.team/stops/H1fr128b"], ["https://tec.openplanner.team/stops/Lmntast1", "https://tec.openplanner.team/stops/Lmntast3"], ["https://tec.openplanner.team/stops/LBHhuyn1", "https://tec.openplanner.team/stops/LBHinva2"], ["https://tec.openplanner.team/stops/H2hp123d", "https://tec.openplanner.team/stops/H2hp261b"], ["https://tec.openplanner.team/stops/Lrocort1", "https://tec.openplanner.team/stops/Lrosoxh1"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X770aaa"], ["https://tec.openplanner.team/stops/LmRkreu1", "https://tec.openplanner.team/stops/LmRkreu3"], ["https://tec.openplanner.team/stops/N165aba", "https://tec.openplanner.team/stops/N168aaa"], ["https://tec.openplanner.team/stops/N311aba", "https://tec.openplanner.team/stops/N311abb"], ["https://tec.openplanner.team/stops/X982bjb", "https://tec.openplanner.team/stops/X982bld"], ["https://tec.openplanner.team/stops/LCRecmo2", "https://tec.openplanner.team/stops/LCRfize1"], ["https://tec.openplanner.team/stops/LSPecho1", "https://tec.openplanner.team/stops/LSPgend2"], ["https://tec.openplanner.team/stops/X636ana", "https://tec.openplanner.team/stops/X648aab"], ["https://tec.openplanner.team/stops/Lcemalv2", "https://tec.openplanner.team/stops/Lgrorch2"], ["https://tec.openplanner.team/stops/LWOmart2", "https://tec.openplanner.team/stops/LWOwa162"], ["https://tec.openplanner.team/stops/Blthwav1", "https://tec.openplanner.team/stops/Blthwav4"], ["https://tec.openplanner.team/stops/X618abb", "https://tec.openplanner.team/stops/X618anb"], ["https://tec.openplanner.team/stops/H4ty314c", "https://tec.openplanner.team/stops/H4ty354b"], ["https://tec.openplanner.team/stops/LENengi1", "https://tec.openplanner.team/stops/LENengi2"], ["https://tec.openplanner.team/stops/Brixcab1", "https://tec.openplanner.team/stops/Brixpao3"], ["https://tec.openplanner.team/stops/H1mv239a", "https://tec.openplanner.team/stops/H1mv242b"], ["https://tec.openplanner.team/stops/X917ada", "https://tec.openplanner.team/stops/X917aea"], ["https://tec.openplanner.team/stops/LrDzoll4", "https://tec.openplanner.team/stops/LrEfeck1"], ["https://tec.openplanner.team/stops/X316acb", "https://tec.openplanner.team/stops/X317aaa"], ["https://tec.openplanner.team/stops/LKmdani2", "https://tec.openplanner.team/stops/LKmmelo1"], ["https://tec.openplanner.team/stops/LeUoe542", "https://tec.openplanner.team/stops/LeUwais1"], ["https://tec.openplanner.team/stops/Ltigare1", "https://tec.openplanner.team/stops/Ltipass2"], ["https://tec.openplanner.team/stops/Clrcomb1", "https://tec.openplanner.team/stops/Clrhava1"], ["https://tec.openplanner.team/stops/Cgocolo2", "https://tec.openplanner.team/stops/Cjuchli4"], ["https://tec.openplanner.team/stops/Lbrgrot2", "https://tec.openplanner.team/stops/Llgatel1"], ["https://tec.openplanner.team/stops/H1ms280a", "https://tec.openplanner.team/stops/H1ms280d"], ["https://tec.openplanner.team/stops/H4bo182a", "https://tec.openplanner.team/stops/H4og210a"], ["https://tec.openplanner.team/stops/LbOdorf2", "https://tec.openplanner.team/stops/LbOkalv2"], ["https://tec.openplanner.team/stops/Lhrdron1", "https://tec.openplanner.team/stops/Lhrmura2"], ["https://tec.openplanner.team/stops/N501aia", "https://tec.openplanner.team/stops/N501bka"], ["https://tec.openplanner.team/stops/N331acb", "https://tec.openplanner.team/stops/N331aja"], ["https://tec.openplanner.team/stops/H1hy130a", "https://tec.openplanner.team/stops/H1hy130b"], ["https://tec.openplanner.team/stops/LhRandl2", "https://tec.openplanner.team/stops/LmFdorf1"], ["https://tec.openplanner.team/stops/Ccacoup1", "https://tec.openplanner.team/stops/Cfnegli1"], ["https://tec.openplanner.team/stops/H1fr123b", "https://tec.openplanner.team/stops/H1fr128a"], ["https://tec.openplanner.team/stops/Cciferr1", "https://tec.openplanner.team/stops/Ccircar1"], ["https://tec.openplanner.team/stops/X882aba", "https://tec.openplanner.team/stops/X882ama"], ["https://tec.openplanner.team/stops/LHcaube1", "https://tec.openplanner.team/stops/LJAmari1"], ["https://tec.openplanner.team/stops/NL78aja", "https://tec.openplanner.team/stops/NL78ajb"], ["https://tec.openplanner.team/stops/H1bb117b", "https://tec.openplanner.team/stops/H1bb119b"], ["https://tec.openplanner.team/stops/N553ada", "https://tec.openplanner.team/stops/N553alb"], ["https://tec.openplanner.team/stops/X942abd", "https://tec.openplanner.team/stops/X942adb"], ["https://tec.openplanner.team/stops/Cmtpblo2", "https://tec.openplanner.team/stops/Cmtprey2"], ["https://tec.openplanner.team/stops/H1er113a", "https://tec.openplanner.team/stops/H1er113b"], ["https://tec.openplanner.team/stops/H1gr113b", "https://tec.openplanner.team/stops/H1gr115b"], ["https://tec.openplanner.team/stops/N138aga", "https://tec.openplanner.team/stops/N423abb"], ["https://tec.openplanner.team/stops/H4pp123b", "https://tec.openplanner.team/stops/H4qu230c"], ["https://tec.openplanner.team/stops/LeUcamp2", "https://tec.openplanner.team/stops/LMedoum1"], ["https://tec.openplanner.team/stops/H4ty341a", "https://tec.openplanner.team/stops/H4ty350b"], ["https://tec.openplanner.team/stops/Brixble5", "https://tec.openplanner.team/stops/Brixcab1"], ["https://tec.openplanner.team/stops/X725aub", "https://tec.openplanner.team/stops/X725avb"], ["https://tec.openplanner.team/stops/LMOm48-1", "https://tec.openplanner.team/stops/LMOpiss2"], ["https://tec.openplanner.team/stops/H4ca120a", "https://tec.openplanner.team/stops/H4ca120b"], ["https://tec.openplanner.team/stops/Bwavcui1", "https://tec.openplanner.team/stops/Bwavtas4"], ["https://tec.openplanner.team/stops/X818ajb", "https://tec.openplanner.team/stops/X818akb"], ["https://tec.openplanner.team/stops/Lheaaz-2", "https://tec.openplanner.team/stops/LHSvina2"], ["https://tec.openplanner.team/stops/LeUcamp1", "https://tec.openplanner.team/stops/LMedoum1"], ["https://tec.openplanner.team/stops/N311aab", "https://tec.openplanner.team/stops/N311adb"], ["https://tec.openplanner.team/stops/X921aia", "https://tec.openplanner.team/stops/X921aib"], ["https://tec.openplanner.team/stops/Cvstouv1", "https://tec.openplanner.team/stops/Cvstouv2"], ["https://tec.openplanner.team/stops/H3br102a", "https://tec.openplanner.team/stops/H3br107b"], ["https://tec.openplanner.team/stops/N562bib", "https://tec.openplanner.team/stops/N562bla"], ["https://tec.openplanner.team/stops/N517aaa", "https://tec.openplanner.team/stops/N517afb"], ["https://tec.openplanner.team/stops/H2fy122a", "https://tec.openplanner.team/stops/H2lh131b"], ["https://tec.openplanner.team/stops/N501gga", "https://tec.openplanner.team/stops/N501lqb"], ["https://tec.openplanner.team/stops/N501cmd", "https://tec.openplanner.team/stops/N501ehb"], ["https://tec.openplanner.team/stops/LHUdeni4", "https://tec.openplanner.team/stops/LHUgodi2"], ["https://tec.openplanner.team/stops/LDOanes1", "https://tec.openplanner.team/stops/LDOchev1"], ["https://tec.openplanner.team/stops/N555aba", "https://tec.openplanner.team/stops/N573aca"], ["https://tec.openplanner.team/stops/H1au100a", "https://tec.openplanner.team/stops/H1au103a"], ["https://tec.openplanner.team/stops/N118ada", "https://tec.openplanner.team/stops/N118alb"], ["https://tec.openplanner.team/stops/H1hw123b", "https://tec.openplanner.team/stops/H1so136c"], ["https://tec.openplanner.team/stops/N501hca", "https://tec.openplanner.team/stops/N501hcb"], ["https://tec.openplanner.team/stops/LBichat1", "https://tec.openplanner.team/stops/LBivi--2"], ["https://tec.openplanner.team/stops/Bhvlbet1", "https://tec.openplanner.team/stops/Bhvlpla1"], ["https://tec.openplanner.team/stops/N519adb", "https://tec.openplanner.team/stops/N519ala"], ["https://tec.openplanner.team/stops/LCOcarr1", "https://tec.openplanner.team/stops/LCOcarr2"], ["https://tec.openplanner.team/stops/LHaxhor1", "https://tec.openplanner.team/stops/X982aha"], ["https://tec.openplanner.team/stops/Bbst4br2", "https://tec.openplanner.team/stops/Bbst4br3"], ["https://tec.openplanner.team/stops/LTRpeec2", "https://tec.openplanner.team/stops/LTRpery1"], ["https://tec.openplanner.team/stops/LMIgare1", "https://tec.openplanner.team/stops/LMIpast2"], ["https://tec.openplanner.team/stops/N543bbc", "https://tec.openplanner.team/stops/N554acb"], ["https://tec.openplanner.team/stops/LPbeg--1", "https://tec.openplanner.team/stops/LPbusin1"], ["https://tec.openplanner.team/stops/LnUcamp1", "https://tec.openplanner.team/stops/LnUcamp2"], ["https://tec.openplanner.team/stops/N529aja", "https://tec.openplanner.team/stops/N529akb"], ["https://tec.openplanner.team/stops/LoDmuhl1", "https://tec.openplanner.team/stops/LoDulf-2"], ["https://tec.openplanner.team/stops/Llginte2", "https://tec.openplanner.team/stops/Llglill2"], ["https://tec.openplanner.team/stops/LaAlinz2", "https://tec.openplanner.team/stops/LkOaugu2"], ["https://tec.openplanner.team/stops/N519acb", "https://tec.openplanner.team/stops/N519aga"], ["https://tec.openplanner.team/stops/X904aeb", "https://tec.openplanner.team/stops/X904ana"], ["https://tec.openplanner.team/stops/H1ha193b", "https://tec.openplanner.team/stops/H1ms270a"], ["https://tec.openplanner.team/stops/LPLroth1", "https://tec.openplanner.team/stops/LRRcole1"], ["https://tec.openplanner.team/stops/LMOelva2", "https://tec.openplanner.team/stops/LMOmome1"], ["https://tec.openplanner.team/stops/Canbruy2", "https://tec.openplanner.team/stops/Canmonu5"], ["https://tec.openplanner.team/stops/H5pe126b", "https://tec.openplanner.team/stops/H5pe147b"], ["https://tec.openplanner.team/stops/LSPcomm1", "https://tec.openplanner.team/stops/LSProya2"], ["https://tec.openplanner.team/stops/H1ls105b", "https://tec.openplanner.team/stops/H1mc126b"], ["https://tec.openplanner.team/stops/N505akb", "https://tec.openplanner.team/stops/N511aib"], ["https://tec.openplanner.team/stops/X637aca", "https://tec.openplanner.team/stops/X637aqb"], ["https://tec.openplanner.team/stops/Bjanegl3", "https://tec.openplanner.team/stops/Bjaurgo1"], ["https://tec.openplanner.team/stops/LBoegli2", "https://tec.openplanner.team/stops/LBQmaye2"], ["https://tec.openplanner.team/stops/Bborcro1", "https://tec.openplanner.team/stops/Bfelpmo1"], ["https://tec.openplanner.team/stops/LHOmc--2", "https://tec.openplanner.team/stops/LSRbouh1"], ["https://tec.openplanner.team/stops/N509aca", "https://tec.openplanner.team/stops/N509afb"], ["https://tec.openplanner.team/stops/X696afa", "https://tec.openplanner.team/stops/X696aga"], ["https://tec.openplanner.team/stops/LSTdero1", "https://tec.openplanner.team/stops/LSTdero2"], ["https://tec.openplanner.team/stops/LCSgend1", "https://tec.openplanner.team/stops/LCSpoud1"], ["https://tec.openplanner.team/stops/X811abb", "https://tec.openplanner.team/stops/X811aqb"], ["https://tec.openplanner.team/stops/Lbhgare2", "https://tec.openplanner.team/stops/Lromerl1"], ["https://tec.openplanner.team/stops/H5bl117b", "https://tec.openplanner.team/stops/H5bl117c"], ["https://tec.openplanner.team/stops/LESpont1", "https://tec.openplanner.team/stops/LESpont4"], ["https://tec.openplanner.team/stops/X636agb", "https://tec.openplanner.team/stops/X636aib"], ["https://tec.openplanner.team/stops/Cdaptca1", "https://tec.openplanner.team/stops/Cdaptca2"], ["https://tec.openplanner.team/stops/N549aaa", "https://tec.openplanner.team/stops/N549aca"], ["https://tec.openplanner.team/stops/H5at124a", "https://tec.openplanner.team/stops/H5at137b"], ["https://tec.openplanner.team/stops/Broneco1", "https://tec.openplanner.team/stops/Bvirflu1"], ["https://tec.openplanner.team/stops/X979aaa", "https://tec.openplanner.team/stops/X979ahb"], ["https://tec.openplanner.team/stops/X925aja", "https://tec.openplanner.team/stops/X926aaa"], ["https://tec.openplanner.team/stops/LJueg--1", "https://tec.openplanner.team/stops/LJuhaie1"], ["https://tec.openplanner.team/stops/NL76ajb", "https://tec.openplanner.team/stops/NL77ajb"], ["https://tec.openplanner.team/stops/X602aib", "https://tec.openplanner.team/stops/X602ajb"], ["https://tec.openplanner.team/stops/X897aab", "https://tec.openplanner.team/stops/X898aha"], ["https://tec.openplanner.team/stops/N501esa", "https://tec.openplanner.team/stops/X501esb"], ["https://tec.openplanner.team/stops/H4ty318b", "https://tec.openplanner.team/stops/H4ty321a"], ["https://tec.openplanner.team/stops/X713aja", "https://tec.openplanner.team/stops/X713ajb"], ["https://tec.openplanner.team/stops/H1mj128a", "https://tec.openplanner.team/stops/H1mj128b"], ["https://tec.openplanner.team/stops/Bmoucoq1", "https://tec.openplanner.team/stops/Bottrfa4"], ["https://tec.openplanner.team/stops/Lantonn1", "https://tec.openplanner.team/stops/Lantonn2"], ["https://tec.openplanner.team/stops/Cmlpche1", "https://tec.openplanner.team/stops/Cmlpomm1"], ["https://tec.openplanner.team/stops/N505aja", "https://tec.openplanner.team/stops/N505ajb"], ["https://tec.openplanner.team/stops/LSGcolo2", "https://tec.openplanner.team/stops/LSkchwa2"], ["https://tec.openplanner.team/stops/LCtcref1", "https://tec.openplanner.team/stops/X780aca"], ["https://tec.openplanner.team/stops/N209aca", "https://tec.openplanner.team/stops/N209ada"], ["https://tec.openplanner.team/stops/X782afa", "https://tec.openplanner.team/stops/X782aga"], ["https://tec.openplanner.team/stops/X718aab", "https://tec.openplanner.team/stops/X718aka"], ["https://tec.openplanner.team/stops/X650adb", "https://tec.openplanner.team/stops/X650aib"], ["https://tec.openplanner.team/stops/H4mo154a", "https://tec.openplanner.team/stops/H4mo163a"], ["https://tec.openplanner.team/stops/NH01aia", "https://tec.openplanner.team/stops/NH01aoa"], ["https://tec.openplanner.team/stops/Cjudest1", "https://tec.openplanner.team/stops/Cjudest4"], ["https://tec.openplanner.team/stops/Ljhmany2", "https://tec.openplanner.team/stops/LPobois2"], ["https://tec.openplanner.team/stops/Cthcrom2", "https://tec.openplanner.team/stops/Cthpibl1"], ["https://tec.openplanner.team/stops/X724afa", "https://tec.openplanner.team/stops/X724aia"], ["https://tec.openplanner.team/stops/N534bpa", "https://tec.openplanner.team/stops/N553aoa"], ["https://tec.openplanner.team/stops/Cauushm2", "https://tec.openplanner.team/stops/Cauwauq2"], ["https://tec.openplanner.team/stops/X657aia", "https://tec.openplanner.team/stops/X657amb"], ["https://tec.openplanner.team/stops/X826ada", "https://tec.openplanner.team/stops/X826aha"], ["https://tec.openplanner.team/stops/N501etb", "https://tec.openplanner.team/stops/N501etz"], ["https://tec.openplanner.team/stops/X662arb", "https://tec.openplanner.team/stops/X662atb"], ["https://tec.openplanner.team/stops/Lcefoxh1", "https://tec.openplanner.team/stops/Lcesart1"], ["https://tec.openplanner.team/stops/H2ma208a", "https://tec.openplanner.team/stops/H2ma265a"], ["https://tec.openplanner.team/stops/H2fa103a", "https://tec.openplanner.team/stops/H2mg135a"], ["https://tec.openplanner.team/stops/H1hy125a", "https://tec.openplanner.team/stops/H1hy126a"], ["https://tec.openplanner.team/stops/Llgdepo2", "https://tec.openplanner.team/stops/Llgdepo6"], ["https://tec.openplanner.team/stops/LFLcent2", "https://tec.openplanner.team/stops/LFLcher1"], ["https://tec.openplanner.team/stops/LbOkalv1", "https://tec.openplanner.team/stops/LbOkalv2"], ["https://tec.openplanner.team/stops/Ccifies2", "https://tec.openplanner.team/stops/Clvimtr2"], ["https://tec.openplanner.team/stops/Bcbqcoi1", "https://tec.openplanner.team/stops/Bcbqcoi2"], ["https://tec.openplanner.team/stops/X923ala", "https://tec.openplanner.team/stops/X923aqb"], ["https://tec.openplanner.team/stops/LLxcite1", "https://tec.openplanner.team/stops/LMgberw2"], ["https://tec.openplanner.team/stops/Ccpbrun2", "https://tec.openplanner.team/stops/Ccppn2"], ["https://tec.openplanner.team/stops/LmHschm1", "https://tec.openplanner.team/stops/LmHschm2"], ["https://tec.openplanner.team/stops/N530aea", "https://tec.openplanner.team/stops/N530afa"], ["https://tec.openplanner.team/stops/Lsecoll1", "https://tec.openplanner.team/stops/Lsecoll2"], ["https://tec.openplanner.team/stops/NC44aha", "https://tec.openplanner.team/stops/NC44ahb"], ["https://tec.openplanner.team/stops/LGecite1", "https://tec.openplanner.team/stops/LGevygh2"], ["https://tec.openplanner.team/stops/X757ahb", "https://tec.openplanner.team/stops/X757ana"], ["https://tec.openplanner.team/stops/H4bs110b", "https://tec.openplanner.team/stops/H4bs112a"], ["https://tec.openplanner.team/stops/Llonaes2", "https://tec.openplanner.team/stops/Lloretr2"], ["https://tec.openplanner.team/stops/H4qu230a", "https://tec.openplanner.team/stops/H4qu230c"], ["https://tec.openplanner.team/stops/LENoule1", "https://tec.openplanner.team/stops/LENtour1"], ["https://tec.openplanner.team/stops/Llgcbat1", "https://tec.openplanner.team/stops/Llgjasm2"], ["https://tec.openplanner.team/stops/Lfhhaso2", "https://tec.openplanner.team/stops/Lfh-sci1"], ["https://tec.openplanner.team/stops/H4ff118a", "https://tec.openplanner.team/stops/H4ff120b"], ["https://tec.openplanner.team/stops/Llgauxc2", "https://tec.openplanner.team/stops/Llgborg2"], ["https://tec.openplanner.team/stops/N579abb", "https://tec.openplanner.team/stops/N580agb"], ["https://tec.openplanner.team/stops/Lghfors1", "https://tec.openplanner.team/stops/Lghneuv1"], ["https://tec.openplanner.team/stops/Bmarchn1", "https://tec.openplanner.team/stops/Bmarlor2"], ["https://tec.openplanner.team/stops/N219aea", "https://tec.openplanner.team/stops/N219aeb"], ["https://tec.openplanner.team/stops/X985adb", "https://tec.openplanner.team/stops/X985aeb"], ["https://tec.openplanner.team/stops/Beclpla1", "https://tec.openplanner.team/stops/H2ec102a"], ["https://tec.openplanner.team/stops/N152aaf", "https://tec.openplanner.team/stops/N152ade"], ["https://tec.openplanner.team/stops/N243aeb", "https://tec.openplanner.team/stops/N252abb"], ["https://tec.openplanner.team/stops/LCF2spa1", "https://tec.openplanner.team/stops/LCFmoul2"], ["https://tec.openplanner.team/stops/H1fr107e", "https://tec.openplanner.team/stops/H1fr123a"], ["https://tec.openplanner.team/stops/Cciqueu1", "https://tec.openplanner.team/stops/NC02ava"], ["https://tec.openplanner.team/stops/H1ha182b", "https://tec.openplanner.team/stops/H1ha188a"], ["https://tec.openplanner.team/stops/LWOcomm2", "https://tec.openplanner.team/stops/LWOunio2"], ["https://tec.openplanner.team/stops/H1hv131b", "https://tec.openplanner.team/stops/H1hv135b"], ["https://tec.openplanner.team/stops/LBRpt--1", "https://tec.openplanner.team/stops/LBRruel2"], ["https://tec.openplanner.team/stops/N323aca", "https://tec.openplanner.team/stops/N323acb"], ["https://tec.openplanner.team/stops/H4ga169a", "https://tec.openplanner.team/stops/H4ga169b"], ["https://tec.openplanner.team/stops/N241aea", "https://tec.openplanner.team/stops/N241afa"], ["https://tec.openplanner.team/stops/X615azb", "https://tec.openplanner.team/stops/X616ajb"], ["https://tec.openplanner.team/stops/N163aba", "https://tec.openplanner.team/stops/N569anb"], ["https://tec.openplanner.team/stops/LGObeth2", "https://tec.openplanner.team/stops/LGOmous1"], ["https://tec.openplanner.team/stops/N236ada", "https://tec.openplanner.team/stops/N236aeb"], ["https://tec.openplanner.team/stops/Bgnvfai2", "https://tec.openplanner.team/stops/Bgnvtil2"], ["https://tec.openplanner.team/stops/N501irb", "https://tec.openplanner.team/stops/N501isa"], ["https://tec.openplanner.team/stops/X638arb", "https://tec.openplanner.team/stops/X639aab"], ["https://tec.openplanner.team/stops/Btlbegl1", "https://tec.openplanner.team/stops/Btlbegl3"], ["https://tec.openplanner.team/stops/N580abb", "https://tec.openplanner.team/stops/N580aea"], ["https://tec.openplanner.team/stops/H1er111b", "https://tec.openplanner.team/stops/H1er113a"], ["https://tec.openplanner.team/stops/Bcbqrog2", "https://tec.openplanner.team/stops/Bcbqtub2"], ["https://tec.openplanner.team/stops/N201aeb", "https://tec.openplanner.team/stops/N201aef"], ["https://tec.openplanner.team/stops/N515ana", "https://tec.openplanner.team/stops/N515ata"], ["https://tec.openplanner.team/stops/LCSfagn2", "https://tec.openplanner.team/stops/LCSpoud4"], ["https://tec.openplanner.team/stops/H4mx114a", "https://tec.openplanner.team/stops/H4po128b"], ["https://tec.openplanner.team/stops/Cjudaxi2", "https://tec.openplanner.team/stops/Cralimi2"], ["https://tec.openplanner.team/stops/Cptccas1", "https://tec.openplanner.team/stops/Cptchea1"], ["https://tec.openplanner.team/stops/LBLgobc2", "https://tec.openplanner.team/stops/LCEboll2"], ["https://tec.openplanner.team/stops/NL76bca", "https://tec.openplanner.team/stops/NL77aha"], ["https://tec.openplanner.team/stops/LSlbail2", "https://tec.openplanner.team/stops/X919aab"], ["https://tec.openplanner.team/stops/Blthvil1", "https://tec.openplanner.team/stops/Bmlngvi2"], ["https://tec.openplanner.team/stops/Lglsana1", "https://tec.openplanner.team/stops/Lglvand1"], ["https://tec.openplanner.team/stops/Creespi1", "https://tec.openplanner.team/stops/Crewaha2"], ["https://tec.openplanner.team/stops/LTicime2", "https://tec.openplanner.team/stops/LTiforg2"], ["https://tec.openplanner.team/stops/N232asb", "https://tec.openplanner.team/stops/N291aca"], ["https://tec.openplanner.team/stops/N543anh", "https://tec.openplanner.team/stops/N543aoa"], ["https://tec.openplanner.team/stops/X652aea", "https://tec.openplanner.team/stops/X652aeb"], ["https://tec.openplanner.team/stops/LHCandr2", "https://tec.openplanner.team/stops/LHCcroy1"], ["https://tec.openplanner.team/stops/H5qu150a", "https://tec.openplanner.team/stops/H5qu150b"], ["https://tec.openplanner.team/stops/X638ahb", "https://tec.openplanner.team/stops/X638aib"], ["https://tec.openplanner.team/stops/H1au102a", "https://tec.openplanner.team/stops/H1au103a"], ["https://tec.openplanner.team/stops/Bglarha1", "https://tec.openplanner.team/stops/Bgnppra1"], ["https://tec.openplanner.team/stops/X938aab", "https://tec.openplanner.team/stops/X938abb"], ["https://tec.openplanner.team/stops/X658aca", "https://tec.openplanner.team/stops/X659aib"], ["https://tec.openplanner.team/stops/H4ru244b", "https://tec.openplanner.team/stops/H4wc374b"], ["https://tec.openplanner.team/stops/H4my121a", "https://tec.openplanner.team/stops/H4my121b"], ["https://tec.openplanner.team/stops/LAYfoot1", "https://tec.openplanner.team/stops/LMvrabo1"], ["https://tec.openplanner.team/stops/X870aeb", "https://tec.openplanner.team/stops/X880agb"], ["https://tec.openplanner.team/stops/NH01agd", "https://tec.openplanner.team/stops/NH01alb"], ["https://tec.openplanner.team/stops/LeYgros1", "https://tec.openplanner.team/stops/LeYmuhl1"], ["https://tec.openplanner.team/stops/H1ms301a", "https://tec.openplanner.team/stops/H1ms360a"], ["https://tec.openplanner.team/stops/N533aga", "https://tec.openplanner.team/stops/N533amb"], ["https://tec.openplanner.team/stops/LBRgend1", "https://tec.openplanner.team/stops/LBRpt--2"], ["https://tec.openplanner.team/stops/N351afb", "https://tec.openplanner.team/stops/N351ahb"], ["https://tec.openplanner.team/stops/N501hlx", "https://tec.openplanner.team/stops/N501nda"], ["https://tec.openplanner.team/stops/X811afa", "https://tec.openplanner.team/stops/X811afb"], ["https://tec.openplanner.team/stops/LMHmeha1", "https://tec.openplanner.team/stops/LWNcime1"], ["https://tec.openplanner.team/stops/Bvirflu2", "https://tec.openplanner.team/stops/Bvirfpo1"], ["https://tec.openplanner.team/stops/H4lz124b", "https://tec.openplanner.team/stops/H4lz127a"], ["https://tec.openplanner.team/stops/Bbeascl2", "https://tec.openplanner.team/stops/Bmlnbpr2"], ["https://tec.openplanner.team/stops/LTHroch2", "https://tec.openplanner.team/stops/LTHwaux1"], ["https://tec.openplanner.team/stops/N516ahb", "https://tec.openplanner.team/stops/N516ana"], ["https://tec.openplanner.team/stops/N311ada", "https://tec.openplanner.team/stops/N311adb"], ["https://tec.openplanner.team/stops/Bwatjbo1", "https://tec.openplanner.team/stops/Bwatjbo2"], ["https://tec.openplanner.team/stops/H1bl102a", "https://tec.openplanner.team/stops/H1eq116a"], ["https://tec.openplanner.team/stops/X804bfa", "https://tec.openplanner.team/stops/X804bfb"], ["https://tec.openplanner.team/stops/LENmc--1", "https://tec.openplanner.team/stops/LENmc--2"], ["https://tec.openplanner.team/stops/LSG172-1", "https://tec.openplanner.team/stops/LSG172-2"], ["https://tec.openplanner.team/stops/H1ms257a", "https://tec.openplanner.team/stops/H1ss349a"], ["https://tec.openplanner.team/stops/Lhuchev2", "https://tec.openplanner.team/stops/Lhuferm2"], ["https://tec.openplanner.team/stops/LTOcime1", "https://tec.openplanner.team/stops/LTOeg--1"], ["https://tec.openplanner.team/stops/Bbea3he1", "https://tec.openplanner.team/stops/Bbea3he2"], ["https://tec.openplanner.team/stops/LJU51--1", "https://tec.openplanner.team/stops/LJUfort1"], ["https://tec.openplanner.team/stops/H4mx118b", "https://tec.openplanner.team/stops/H4mx119a"], ["https://tec.openplanner.team/stops/Cjudest3", "https://tec.openplanner.team/stops/Clooues1"], ["https://tec.openplanner.team/stops/LClsacr2", "https://tec.openplanner.team/stops/LELeg--2"], ["https://tec.openplanner.team/stops/Llgstev1", "https://tec.openplanner.team/stops/Llgstev2"], ["https://tec.openplanner.team/stops/Becepco2", "https://tec.openplanner.team/stops/Becesbo1"], ["https://tec.openplanner.team/stops/LHecime2", "https://tec.openplanner.team/stops/LHSheur2"], ["https://tec.openplanner.team/stops/Bborche2", "https://tec.openplanner.team/stops/Bnivfhu1"], ["https://tec.openplanner.team/stops/Lmnhorl1", "https://tec.openplanner.team/stops/Lsmstad2"], ["https://tec.openplanner.team/stops/H4rk101a", "https://tec.openplanner.team/stops/H4tg162a"], ["https://tec.openplanner.team/stops/H1je219a", "https://tec.openplanner.team/stops/H1je221b"], ["https://tec.openplanner.team/stops/Bgzddge4", "https://tec.openplanner.team/stops/Bgzddur1"], ["https://tec.openplanner.team/stops/X717agd", "https://tec.openplanner.team/stops/X781adb"], ["https://tec.openplanner.team/stops/X595acb", "https://tec.openplanner.team/stops/X713anb"], ["https://tec.openplanner.team/stops/H4lz125a", "https://tec.openplanner.team/stops/H4lz162b"], ["https://tec.openplanner.team/stops/LOLcroi2", "https://tec.openplanner.team/stops/LOLvill1"], ["https://tec.openplanner.team/stops/Bblatet1", "https://tec.openplanner.team/stops/Bbsivi11"], ["https://tec.openplanner.team/stops/LLVerri1", "https://tec.openplanner.team/stops/X561aaa"], ["https://tec.openplanner.team/stops/N510acb", "https://tec.openplanner.team/stops/N510acf"], ["https://tec.openplanner.team/stops/X812aca", "https://tec.openplanner.team/stops/X812agb"], ["https://tec.openplanner.team/stops/N507aad", "https://tec.openplanner.team/stops/NL68aga"], ["https://tec.openplanner.team/stops/Cgyobse2", "https://tec.openplanner.team/stops/Cgyplst2"], ["https://tec.openplanner.team/stops/N534aub", "https://tec.openplanner.team/stops/N534bwb"], ["https://tec.openplanner.team/stops/LXocomb1", "https://tec.openplanner.team/stops/LXocomb2"], ["https://tec.openplanner.team/stops/N584baa", "https://tec.openplanner.team/stops/N584boa"], ["https://tec.openplanner.team/stops/LeUolen1", "https://tec.openplanner.team/stops/LeUrote2"], ["https://tec.openplanner.team/stops/X626ada", "https://tec.openplanner.team/stops/X626ala"], ["https://tec.openplanner.team/stops/LFacruc1", "https://tec.openplanner.team/stops/LVMfoli2"], ["https://tec.openplanner.team/stops/Cgofleu2", "https://tec.openplanner.team/stops/CMleop2"], ["https://tec.openplanner.team/stops/LkEgds-1", "https://tec.openplanner.team/stops/LkEheyg2"], ["https://tec.openplanner.team/stops/LHCauwe4", "https://tec.openplanner.team/stops/LHCponc3"], ["https://tec.openplanner.team/stops/X889aaa", "https://tec.openplanner.team/stops/X889aba"], ["https://tec.openplanner.team/stops/X615aqa", "https://tec.openplanner.team/stops/X615atb"], ["https://tec.openplanner.team/stops/LFLcher1", "https://tec.openplanner.team/stops/LFLcher2"], ["https://tec.openplanner.team/stops/LCeterm1", "https://tec.openplanner.team/stops/LLWchat1"], ["https://tec.openplanner.team/stops/LFFeg--1", "https://tec.openplanner.team/stops/LFFmagr1"], ["https://tec.openplanner.team/stops/Cbtstac2", "https://tec.openplanner.team/stops/Cgnbast1"], ["https://tec.openplanner.team/stops/H4wc373a", "https://tec.openplanner.team/stops/H4wc374a"], ["https://tec.openplanner.team/stops/LHUaron1", "https://tec.openplanner.team/stops/LHUlieg1"], ["https://tec.openplanner.team/stops/N106aea", "https://tec.openplanner.team/stops/N137ahb"], ["https://tec.openplanner.team/stops/H4av106c", "https://tec.openplanner.team/stops/H4cr111b"], ["https://tec.openplanner.team/stops/Ccuoise1", "https://tec.openplanner.team/stops/Ccuoise2"], ["https://tec.openplanner.team/stops/N547amb", "https://tec.openplanner.team/stops/N553aqa"], ["https://tec.openplanner.team/stops/LGMdrev2", "https://tec.openplanner.team/stops/LTRespe2"], ["https://tec.openplanner.team/stops/H4ca120b", "https://tec.openplanner.team/stops/H4wi162a"], ["https://tec.openplanner.team/stops/N501gsa", "https://tec.openplanner.team/stops/N501gza"], ["https://tec.openplanner.team/stops/LWAipes1", "https://tec.openplanner.team/stops/LWAloui2"], ["https://tec.openplanner.team/stops/H4fr141b", "https://tec.openplanner.team/stops/H4ma417a"], ["https://tec.openplanner.team/stops/Cvpsncb1", "https://tec.openplanner.team/stops/Cvpsthu1"], ["https://tec.openplanner.team/stops/H1bi101a", "https://tec.openplanner.team/stops/H1bu143a"], ["https://tec.openplanner.team/stops/LVEbors2", "https://tec.openplanner.team/stops/LVEcacq2"], ["https://tec.openplanner.team/stops/Broneco2", "https://tec.openplanner.team/stops/Bronrch2"], ["https://tec.openplanner.team/stops/Lmapomm1", "https://tec.openplanner.team/stops/LPRbayb1"], ["https://tec.openplanner.team/stops/X665aba", "https://tec.openplanner.team/stops/X666aba"], ["https://tec.openplanner.team/stops/X948ajb", "https://tec.openplanner.team/stops/X948ara"], ["https://tec.openplanner.team/stops/LbOvith1", "https://tec.openplanner.team/stops/LnErech2"], ["https://tec.openplanner.team/stops/N548awa", "https://tec.openplanner.team/stops/N571aca"], ["https://tec.openplanner.team/stops/N137ajb", "https://tec.openplanner.team/stops/N161aea"], ["https://tec.openplanner.team/stops/X860aaa", "https://tec.openplanner.team/stops/X860aba"], ["https://tec.openplanner.team/stops/H4ty310a", "https://tec.openplanner.team/stops/H4ty324a"], ["https://tec.openplanner.team/stops/N501hsy", "https://tec.openplanner.team/stops/N501nba"], ["https://tec.openplanner.team/stops/Lhrmemo2", "https://tec.openplanner.team/stops/Lvtlimi1"], ["https://tec.openplanner.team/stops/N539apa", "https://tec.openplanner.team/stops/N539bca"], ["https://tec.openplanner.team/stops/N167aeb", "https://tec.openplanner.team/stops/N167aha"], ["https://tec.openplanner.team/stops/X886aca", "https://tec.openplanner.team/stops/X886adb"], ["https://tec.openplanner.team/stops/X801aga", "https://tec.openplanner.team/stops/X801aha"], ["https://tec.openplanner.team/stops/N229aib", "https://tec.openplanner.team/stops/N231aba"], ["https://tec.openplanner.team/stops/LTrmort1", "https://tec.openplanner.team/stops/LTrmort2"], ["https://tec.openplanner.team/stops/X780aeb", "https://tec.openplanner.team/stops/X780afa"], ["https://tec.openplanner.team/stops/LkEhaag2", "https://tec.openplanner.team/stops/LkEkric1"], ["https://tec.openplanner.team/stops/X891aaa", "https://tec.openplanner.team/stops/X891aab"], ["https://tec.openplanner.team/stops/N548afb", "https://tec.openplanner.team/stops/N569ala"], ["https://tec.openplanner.team/stops/N244apa", "https://tec.openplanner.team/stops/N244apb"], ["https://tec.openplanner.team/stops/Brsgfso1", "https://tec.openplanner.team/stops/Brsgfso2"], ["https://tec.openplanner.team/stops/Caih1631", "https://tec.openplanner.team/stops/Ctaphaz1"], ["https://tec.openplanner.team/stops/LBQmaye1", "https://tec.openplanner.team/stops/LBQmaye2"], ["https://tec.openplanner.team/stops/N534bkh", "https://tec.openplanner.team/stops/N534bmb"], ["https://tec.openplanner.team/stops/LOVchen1", "https://tec.openplanner.team/stops/LOVhetr2"], ["https://tec.openplanner.team/stops/LLWcarr2", "https://tec.openplanner.team/stops/LVBdela1"], ["https://tec.openplanner.team/stops/X721alb", "https://tec.openplanner.team/stops/X721anb"], ["https://tec.openplanner.team/stops/LBIvill1", "https://tec.openplanner.team/stops/LBIvill3"], ["https://tec.openplanner.team/stops/H1mm125a", "https://tec.openplanner.team/stops/H1mm132b"], ["https://tec.openplanner.team/stops/H4ae100a", "https://tec.openplanner.team/stops/H4ef109a"], ["https://tec.openplanner.team/stops/LJveg--1", "https://tec.openplanner.team/stops/X576acb"], ["https://tec.openplanner.team/stops/N514afb", "https://tec.openplanner.team/stops/N514aga"], ["https://tec.openplanner.team/stops/LmDhoch3", "https://tec.openplanner.team/stops/LmDhoch4"], ["https://tec.openplanner.team/stops/X982bja", "https://tec.openplanner.team/stops/X982bua"], ["https://tec.openplanner.team/stops/X725aob", "https://tec.openplanner.team/stops/X725bgb"], ["https://tec.openplanner.team/stops/N542acb", "https://tec.openplanner.team/stops/N542ala"], ["https://tec.openplanner.team/stops/X938abb", "https://tec.openplanner.team/stops/X939afb"], ["https://tec.openplanner.team/stops/Cmamons1", "https://tec.openplanner.team/stops/Cmasncb1"], ["https://tec.openplanner.team/stops/X615ana", "https://tec.openplanner.team/stops/X615anb"], ["https://tec.openplanner.team/stops/Crefont2", "https://tec.openplanner.team/stops/Creha761"], ["https://tec.openplanner.team/stops/Cchhopi1", "https://tec.openplanner.team/stops/Cchvhau2"], ["https://tec.openplanner.team/stops/LPUmer-1", "https://tec.openplanner.team/stops/LPUmer-2"], ["https://tec.openplanner.team/stops/N167add", "https://tec.openplanner.team/stops/N167ahb"], ["https://tec.openplanner.team/stops/X869adb", "https://tec.openplanner.team/stops/X870ajb"], ["https://tec.openplanner.team/stops/H4mo204b", "https://tec.openplanner.team/stops/H4mo205b"], ["https://tec.openplanner.team/stops/Cpthaud2", "https://tec.openplanner.team/stops/Cptrebe2"], ["https://tec.openplanner.team/stops/X638aca", "https://tec.openplanner.team/stops/X638afb"], ["https://tec.openplanner.team/stops/Bhlvgar2", "https://tec.openplanner.team/stops/Blpgcmo1"], ["https://tec.openplanner.team/stops/Bblaadm1", "https://tec.openplanner.team/stops/Bblajap1"], ["https://tec.openplanner.team/stops/LmHdrei1", "https://tec.openplanner.team/stops/LmHdrei2"], ["https://tec.openplanner.team/stops/X653aaa", "https://tec.openplanner.team/stops/X667abb"], ["https://tec.openplanner.team/stops/N506aca", "https://tec.openplanner.team/stops/N506aqb"], ["https://tec.openplanner.team/stops/LPLphar1", "https://tec.openplanner.team/stops/LPLruis2"], ["https://tec.openplanner.team/stops/H2hg265a", "https://tec.openplanner.team/stops/H2hg270a"], ["https://tec.openplanner.team/stops/Bmrspel2", "https://tec.openplanner.team/stops/Bmrswag1"], ["https://tec.openplanner.team/stops/Bnivhon1", "https://tec.openplanner.team/stops/Bnivpgr2"], ["https://tec.openplanner.team/stops/N548agb", "https://tec.openplanner.team/stops/N548aia"], ["https://tec.openplanner.team/stops/N533ana", "https://tec.openplanner.team/stops/N533apb"], ["https://tec.openplanner.team/stops/Lvcdumo1", "https://tec.openplanner.team/stops/Lvcdumo2"], ["https://tec.openplanner.team/stops/H1hg180a", "https://tec.openplanner.team/stops/H1hg180b"], ["https://tec.openplanner.team/stops/Bgnpegl2", "https://tec.openplanner.team/stops/Bgnpegl3"], ["https://tec.openplanner.team/stops/N580afa", "https://tec.openplanner.team/stops/N580afb"], ["https://tec.openplanner.team/stops/X601abb", "https://tec.openplanner.team/stops/X601adb"], ["https://tec.openplanner.team/stops/LVIgare1", "https://tec.openplanner.team/stops/LVIgare2"], ["https://tec.openplanner.team/stops/Barchoc1", "https://tec.openplanner.team/stops/Bnettou1"], ["https://tec.openplanner.team/stops/X660acb", "https://tec.openplanner.team/stops/X660aea"], ["https://tec.openplanner.team/stops/N584bpa", "https://tec.openplanner.team/stops/N584bqb"], ["https://tec.openplanner.team/stops/N155aja", "https://tec.openplanner.team/stops/N160acb"], ["https://tec.openplanner.team/stops/Bchgbar1", "https://tec.openplanner.team/stops/Bchgqve1"], ["https://tec.openplanner.team/stops/N501axb", "https://tec.openplanner.team/stops/N501cdc"], ["https://tec.openplanner.team/stops/Cgrchea1", "https://tec.openplanner.team/stops/Cgrlorm2"], ["https://tec.openplanner.team/stops/Bnivfhu2", "https://tec.openplanner.team/stops/Bnivzon1"], ["https://tec.openplanner.team/stops/Bblagar7", "https://tec.openplanner.team/stops/Bblapje2"], ["https://tec.openplanner.team/stops/Beclron1", "https://tec.openplanner.team/stops/Bhptegl2"], ["https://tec.openplanner.team/stops/LCFcafe1", "https://tec.openplanner.team/stops/LCFmoul1"], ["https://tec.openplanner.team/stops/Ldilyce*", "https://tec.openplanner.team/stops/Lprorem2"], ["https://tec.openplanner.team/stops/Bcrbcel1", "https://tec.openplanner.team/stops/Bmsggra2"], ["https://tec.openplanner.team/stops/LCRfavr1", "https://tec.openplanner.team/stops/LCRfize2"], ["https://tec.openplanner.team/stops/N538aza", "https://tec.openplanner.team/stops/N539ayb"], ["https://tec.openplanner.team/stops/Lmocail2", "https://tec.openplanner.team/stops/Lsnpaqu2"], ["https://tec.openplanner.team/stops/Cbcha652", "https://tec.openplanner.team/stops/Cbckios2"], ["https://tec.openplanner.team/stops/LSGmall1", "https://tec.openplanner.team/stops/LSGsurf1"], ["https://tec.openplanner.team/stops/LTPabat1", "https://tec.openplanner.team/stops/LTPhenr1"], ["https://tec.openplanner.team/stops/N501aua", "https://tec.openplanner.team/stops/N501exa"], ["https://tec.openplanner.team/stops/LTNcarr4", "https://tec.openplanner.team/stops/LTNmont1"], ["https://tec.openplanner.team/stops/Bbcocvb1", "https://tec.openplanner.team/stops/Bhenrcr1"], ["https://tec.openplanner.team/stops/Blpgeco1", "https://tec.openplanner.team/stops/Blpgvil1"], ["https://tec.openplanner.team/stops/H4jm117b", "https://tec.openplanner.team/stops/H4jm117c"], ["https://tec.openplanner.team/stops/LHHecol2", "https://tec.openplanner.team/stops/LHHindu2"], ["https://tec.openplanner.team/stops/H4ff117b", "https://tec.openplanner.team/stops/H4ff121a"], ["https://tec.openplanner.team/stops/X789aaa", "https://tec.openplanner.team/stops/X789ajb"], ["https://tec.openplanner.team/stops/Llgerac2", "https://tec.openplanner.team/stops/Llglaur1"], ["https://tec.openplanner.team/stops/LOTmonu1", "https://tec.openplanner.team/stops/LOTtong1"], ["https://tec.openplanner.team/stops/H1he101a", "https://tec.openplanner.team/stops/H1he107a"], ["https://tec.openplanner.team/stops/X908amb", "https://tec.openplanner.team/stops/X908anb"], ["https://tec.openplanner.team/stops/Cmlipsm2", "https://tec.openplanner.team/stops/Cmlpche2"], ["https://tec.openplanner.team/stops/X921agb", "https://tec.openplanner.team/stops/X921akb"], ["https://tec.openplanner.team/stops/LJEchat4", "https://tec.openplanner.team/stops/LJEerno1"], ["https://tec.openplanner.team/stops/LWElanc1", "https://tec.openplanner.team/stops/LWElanc2"], ["https://tec.openplanner.team/stops/Bwatrsg1", "https://tec.openplanner.team/stops/Bwatrsg2"], ["https://tec.openplanner.team/stops/Cfohopi2", "https://tec.openplanner.team/stops/Cfovent1"], ["https://tec.openplanner.team/stops/Bbiecim1", "https://tec.openplanner.team/stops/Bbiecim2"], ["https://tec.openplanner.team/stops/Lhrathe2", "https://tec.openplanner.team/stops/Lhrpepi2"], ["https://tec.openplanner.team/stops/LrOkirc2", "https://tec.openplanner.team/stops/LrOn14-1"], ["https://tec.openplanner.team/stops/N312aaa", "https://tec.openplanner.team/stops/X892ajb"], ["https://tec.openplanner.team/stops/N117abb", "https://tec.openplanner.team/stops/N117ajb"], ["https://tec.openplanner.team/stops/N343aca", "https://tec.openplanner.team/stops/N343acb"], ["https://tec.openplanner.team/stops/H2tr247a", "https://tec.openplanner.team/stops/H2tr254a"], ["https://tec.openplanner.team/stops/LTgchar8", "https://tec.openplanner.team/stops/LTgcime2"], ["https://tec.openplanner.team/stops/Cgy4bra2", "https://tec.openplanner.team/stops/Cgymetr2"], ["https://tec.openplanner.team/stops/Cfocobe2", "https://tec.openplanner.team/stops/Cfosurs2"], ["https://tec.openplanner.team/stops/Llgcham6", "https://tec.openplanner.team/stops/Llgdouf1"], ["https://tec.openplanner.team/stops/Bjodint1", "https://tec.openplanner.team/stops/Bjodint2"], ["https://tec.openplanner.team/stops/H4he106b", "https://tec.openplanner.team/stops/H4ob124b"], ["https://tec.openplanner.team/stops/H4ty291c", "https://tec.openplanner.team/stops/H4ty310a"], ["https://tec.openplanner.team/stops/X608aga", "https://tec.openplanner.team/stops/X608ahb"], ["https://tec.openplanner.team/stops/Cragoss1", "https://tec.openplanner.team/stops/Cralimi2"], ["https://tec.openplanner.team/stops/X801aqb", "https://tec.openplanner.team/stops/X801ckb"], ["https://tec.openplanner.team/stops/H1cd111a", "https://tec.openplanner.team/stops/H1cd112a"], ["https://tec.openplanner.team/stops/N543bia", "https://tec.openplanner.team/stops/N543cpa"], ["https://tec.openplanner.team/stops/Bspkdon1", "https://tec.openplanner.team/stops/Bspkdon2"], ["https://tec.openplanner.team/stops/N308apa", "https://tec.openplanner.team/stops/N308bcb"], ["https://tec.openplanner.team/stops/X636ayb", "https://tec.openplanner.team/stops/X636aza"], ["https://tec.openplanner.team/stops/H4wi164a", "https://tec.openplanner.team/stops/H4wi164b"], ["https://tec.openplanner.team/stops/LBscasi2", "https://tec.openplanner.team/stops/NL72aab"], ["https://tec.openplanner.team/stops/NL57adc", "https://tec.openplanner.team/stops/NL57aha"], ["https://tec.openplanner.team/stops/Bgliopp2", "https://tec.openplanner.team/stops/Bgliopp3"], ["https://tec.openplanner.team/stops/H2an103b", "https://tec.openplanner.team/stops/H2an109b"], ["https://tec.openplanner.team/stops/N568aab", "https://tec.openplanner.team/stops/N568aeb"], ["https://tec.openplanner.team/stops/Llgjenn2", "https://tec.openplanner.team/stops/Llgsorb2"], ["https://tec.openplanner.team/stops/N343ada", "https://tec.openplanner.team/stops/X344aea"], ["https://tec.openplanner.team/stops/Bsomwav1", "https://tec.openplanner.team/stops/N584avb"], ["https://tec.openplanner.team/stops/H4au100a", "https://tec.openplanner.team/stops/H4au100b"], ["https://tec.openplanner.team/stops/H4li179d", "https://tec.openplanner.team/stops/H4mb202a"], ["https://tec.openplanner.team/stops/Crcegli2", "https://tec.openplanner.team/stops/Crcegli3"], ["https://tec.openplanner.team/stops/X721apb", "https://tec.openplanner.team/stops/X721ata"], ["https://tec.openplanner.team/stops/N501dha", "https://tec.openplanner.team/stops/N501jta"], ["https://tec.openplanner.team/stops/Cgyhaie2", "https://tec.openplanner.team/stops/Cgymest2"], ["https://tec.openplanner.team/stops/LFypfei2", "https://tec.openplanner.team/stops/LsHlenz2"], ["https://tec.openplanner.team/stops/LkTraer1", "https://tec.openplanner.team/stops/LrAbe601"], ["https://tec.openplanner.team/stops/H3so173a", "https://tec.openplanner.team/stops/H3so184b"], ["https://tec.openplanner.team/stops/N562aya", "https://tec.openplanner.team/stops/N562bfa"], ["https://tec.openplanner.team/stops/X637aab", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/Bwavche1", "https://tec.openplanner.team/stops/Bwavlca1"], ["https://tec.openplanner.team/stops/LAMcoll2", "https://tec.openplanner.team/stops/LAMjeha1"], ["https://tec.openplanner.team/stops/N141aaa", "https://tec.openplanner.team/stops/N141apb"], ["https://tec.openplanner.team/stops/X949ama", "https://tec.openplanner.team/stops/X949amb"], ["https://tec.openplanner.team/stops/H5at128a", "https://tec.openplanner.team/stops/H5ma185a"], ["https://tec.openplanner.team/stops/Chpplac1", "https://tec.openplanner.team/stops/Cwxplac2"], ["https://tec.openplanner.team/stops/LOLfoss1", "https://tec.openplanner.team/stops/LOLfoss2"], ["https://tec.openplanner.team/stops/N134aab", "https://tec.openplanner.team/stops/N134aac"], ["https://tec.openplanner.team/stops/X636aab", "https://tec.openplanner.team/stops/X636apa"], ["https://tec.openplanner.team/stops/X790afa", "https://tec.openplanner.team/stops/X790aib"], ["https://tec.openplanner.team/stops/H1gi120a", "https://tec.openplanner.team/stops/H1gi120d"], ["https://tec.openplanner.team/stops/Cmocime2", "https://tec.openplanner.team/stops/Cmogtri1"], ["https://tec.openplanner.team/stops/Cfrmon4", "https://tec.openplanner.team/stops/Cfrsour1"], ["https://tec.openplanner.team/stops/N214aca", "https://tec.openplanner.team/stops/N214aeb"], ["https://tec.openplanner.team/stops/LTPgare*", "https://tec.openplanner.team/stops/LTPpisc2"], ["https://tec.openplanner.team/stops/N539axa", "https://tec.openplanner.team/stops/N539axb"], ["https://tec.openplanner.team/stops/Lprsher2", "https://tec.openplanner.team/stops/Lprspra2"], ["https://tec.openplanner.team/stops/Lmihale2", "https://tec.openplanner.team/stops/Lmitroi2"], ["https://tec.openplanner.team/stops/Ljubrec1", "https://tec.openplanner.team/stops/Ljubrec3"], ["https://tec.openplanner.team/stops/LSMec--1", "https://tec.openplanner.team/stops/LSMec--2"], ["https://tec.openplanner.team/stops/X602apa", "https://tec.openplanner.team/stops/X602apb"], ["https://tec.openplanner.team/stops/N547aib", "https://tec.openplanner.team/stops/N548awb"], ["https://tec.openplanner.team/stops/N232asb", "https://tec.openplanner.team/stops/N232caa"], ["https://tec.openplanner.team/stops/H2hp124c", "https://tec.openplanner.team/stops/H2hp262b"], ["https://tec.openplanner.team/stops/X752aca", "https://tec.openplanner.team/stops/X752acb"], ["https://tec.openplanner.team/stops/H2re165a", "https://tec.openplanner.team/stops/H2re165b"], ["https://tec.openplanner.team/stops/H4bu109b", "https://tec.openplanner.team/stops/H4fa167a"], ["https://tec.openplanner.team/stops/Blinbru2", "https://tec.openplanner.team/stops/Brach121"], ["https://tec.openplanner.team/stops/H1cd110a", "https://tec.openplanner.team/stops/H1ne148a"], ["https://tec.openplanner.team/stops/H4ma204b", "https://tec.openplanner.team/stops/H4oq229b"], ["https://tec.openplanner.team/stops/LHUmari2", "https://tec.openplanner.team/stops/LHUtfal1"], ["https://tec.openplanner.team/stops/Lhrdeme3", "https://tec.openplanner.team/stops/Lhrstev1"], ["https://tec.openplanner.team/stops/X663aqb", "https://tec.openplanner.team/stops/X663aqc"], ["https://tec.openplanner.team/stops/Bwbfgar2", "https://tec.openplanner.team/stops/Bwbfhip1"], ["https://tec.openplanner.team/stops/H4mv189b", "https://tec.openplanner.team/stops/H4mv189c"], ["https://tec.openplanner.team/stops/N230aia", "https://tec.openplanner.team/stops/N230aib"], ["https://tec.openplanner.team/stops/H2ll180b", "https://tec.openplanner.team/stops/H2sv259a"], ["https://tec.openplanner.team/stops/LFFcouv1", "https://tec.openplanner.team/stops/LFFmonu2"], ["https://tec.openplanner.team/stops/H4mx117b", "https://tec.openplanner.team/stops/H4po127b"], ["https://tec.openplanner.team/stops/X804aqa", "https://tec.openplanner.team/stops/X804aza"], ["https://tec.openplanner.team/stops/Bdoncen2", "https://tec.openplanner.team/stops/Bgligli1"], ["https://tec.openplanner.team/stops/Cmopn4", "https://tec.openplanner.team/stops/Cmopn6"], ["https://tec.openplanner.team/stops/Bbaldot1", "https://tec.openplanner.team/stops/N584ama"], ["https://tec.openplanner.team/stops/X790aib", "https://tec.openplanner.team/stops/X790alb"], ["https://tec.openplanner.team/stops/N501kea", "https://tec.openplanner.team/stops/N501kga"], ["https://tec.openplanner.team/stops/Bquegob1", "https://tec.openplanner.team/stops/Bquegob4"], ["https://tec.openplanner.team/stops/H2hg154e", "https://tec.openplanner.team/stops/H3lr108a"], ["https://tec.openplanner.team/stops/Ladneuv1", "https://tec.openplanner.team/stops/Ladwooz1"], ["https://tec.openplanner.team/stops/X824aia", "https://tec.openplanner.team/stops/X824alb"], ["https://tec.openplanner.team/stops/X650akb", "https://tec.openplanner.team/stops/X650amb"], ["https://tec.openplanner.team/stops/LHocroi2", "https://tec.openplanner.team/stops/LJedonc4"], ["https://tec.openplanner.team/stops/Cfnegli1", "https://tec.openplanner.team/stops/N162adb"], ["https://tec.openplanner.team/stops/X771ada", "https://tec.openplanner.team/stops/X771aeb"], ["https://tec.openplanner.team/stops/LWDhous1", "https://tec.openplanner.team/stops/LWDsott3"], ["https://tec.openplanner.team/stops/N501aob", "https://tec.openplanner.team/stops/N501fjd"], ["https://tec.openplanner.team/stops/H4ry132a", "https://tec.openplanner.team/stops/H4ry132b"], ["https://tec.openplanner.team/stops/N232bya", "https://tec.openplanner.team/stops/N232bzb"], ["https://tec.openplanner.team/stops/Blineco1", "https://tec.openplanner.team/stops/Blineco2"], ["https://tec.openplanner.team/stops/Cwfaldi1", "https://tec.openplanner.team/stops/Cwfaldi2"], ["https://tec.openplanner.team/stops/Cjualed1", "https://tec.openplanner.team/stops/Cjuloos2"], ["https://tec.openplanner.team/stops/X982cbb", "https://tec.openplanner.team/stops/X986aha"], ["https://tec.openplanner.team/stops/LLOnand2", "https://tec.openplanner.team/stops/LTatult3"], ["https://tec.openplanner.team/stops/H4mo172a", "https://tec.openplanner.team/stops/H4mo208a"], ["https://tec.openplanner.team/stops/X750aaa", "https://tec.openplanner.team/stops/X750aka"], ["https://tec.openplanner.team/stops/H4oq225a", "https://tec.openplanner.team/stops/H4oq409b"], ["https://tec.openplanner.team/stops/LlOdrei1", "https://tec.openplanner.team/stops/LwSbrei2"], ["https://tec.openplanner.team/stops/H4pq116a", "https://tec.openplanner.team/stops/H4pq118a"], ["https://tec.openplanner.team/stops/N509ana", "https://tec.openplanner.team/stops/N510aab"], ["https://tec.openplanner.team/stops/X663ahc", "https://tec.openplanner.team/stops/X663ahd"], ["https://tec.openplanner.team/stops/Ldimont1", "https://tec.openplanner.team/stops/Ldineuf1"], ["https://tec.openplanner.team/stops/LbTathe1", "https://tec.openplanner.team/stops/LbTkreu4"], ["https://tec.openplanner.team/stops/Lbococh1", "https://tec.openplanner.team/stops/Lbotige1"], ["https://tec.openplanner.team/stops/H1hn205a", "https://tec.openplanner.team/stops/H1hn205b"], ["https://tec.openplanner.team/stops/Lmojans1", "https://tec.openplanner.team/stops/Lmopech2"], ["https://tec.openplanner.team/stops/Bbaltba1", "https://tec.openplanner.team/stops/N561aea"], ["https://tec.openplanner.team/stops/N118anc", "https://tec.openplanner.team/stops/N118apa"], ["https://tec.openplanner.team/stops/LeUnopr1", "https://tec.openplanner.team/stops/LeUrote1"], ["https://tec.openplanner.team/stops/LkEneus2", "https://tec.openplanner.team/stops/LkEsada2"], ["https://tec.openplanner.team/stops/N220acb", "https://tec.openplanner.team/stops/N220ada"], ["https://tec.openplanner.team/stops/X985abb", "https://tec.openplanner.team/stops/X985acb"], ["https://tec.openplanner.team/stops/NL74acb", "https://tec.openplanner.team/stops/NL74aia"], ["https://tec.openplanner.team/stops/LmHbahn1", "https://tec.openplanner.team/stops/LmHvenn1"], ["https://tec.openplanner.team/stops/Bwaveur2", "https://tec.openplanner.team/stops/Bwavtpi2"], ["https://tec.openplanner.team/stops/X614aab", "https://tec.openplanner.team/stops/X614aja"], ["https://tec.openplanner.team/stops/H2ha135b", "https://tec.openplanner.team/stops/H2tr245a"], ["https://tec.openplanner.team/stops/N521acb", "https://tec.openplanner.team/stops/N523aaa"], ["https://tec.openplanner.team/stops/LBPboir2", "https://tec.openplanner.team/stops/LBPrueg1"], ["https://tec.openplanner.team/stops/N534bnh", "https://tec.openplanner.team/stops/N534bog"], ["https://tec.openplanner.team/stops/X780ahb", "https://tec.openplanner.team/stops/X780ata"], ["https://tec.openplanner.team/stops/H3bi101b", "https://tec.openplanner.team/stops/H3bi119b"], ["https://tec.openplanner.team/stops/X925aga", "https://tec.openplanner.team/stops/X925aoa"], ["https://tec.openplanner.team/stops/Canplal2", "https://tec.openplanner.team/stops/H2an111b"], ["https://tec.openplanner.team/stops/N561aia", "https://tec.openplanner.team/stops/N584aqb"], ["https://tec.openplanner.team/stops/Ladloup2", "https://tec.openplanner.team/stops/Lvevert2"], ["https://tec.openplanner.team/stops/H1so142b", "https://tec.openplanner.team/stops/H1so142d"], ["https://tec.openplanner.team/stops/X658aab", "https://tec.openplanner.team/stops/X658abb"], ["https://tec.openplanner.team/stops/X639aaa", "https://tec.openplanner.team/stops/X639aba"], ["https://tec.openplanner.team/stops/X907aha", "https://tec.openplanner.team/stops/X907aia"], ["https://tec.openplanner.team/stops/N511arb", "https://tec.openplanner.team/stops/N511ata"], ["https://tec.openplanner.team/stops/Lsecast1", "https://tec.openplanner.team/stops/Lseresi1"], ["https://tec.openplanner.team/stops/X620adb", "https://tec.openplanner.team/stops/X621aab"], ["https://tec.openplanner.team/stops/N533amb", "https://tec.openplanner.team/stops/N533amc"], ["https://tec.openplanner.team/stops/LLbcafe2", "https://tec.openplanner.team/stops/LrErauw2"], ["https://tec.openplanner.team/stops/X788aba", "https://tec.openplanner.team/stops/X788abd"], ["https://tec.openplanner.team/stops/N548afb", "https://tec.openplanner.team/stops/N571afa"], ["https://tec.openplanner.team/stops/N543bgc", "https://tec.openplanner.team/stops/N543bgd"], ["https://tec.openplanner.team/stops/Btstbes2", "https://tec.openplanner.team/stops/N524ala"], ["https://tec.openplanner.team/stops/N529aka", "https://tec.openplanner.team/stops/N529akb"], ["https://tec.openplanner.team/stops/LTEcamp2", "https://tec.openplanner.team/stops/LTEnuro2"], ["https://tec.openplanner.team/stops/N534blg", "https://tec.openplanner.team/stops/N534bua"], ["https://tec.openplanner.team/stops/LoDcorn1", "https://tec.openplanner.team/stops/LoDulf-1"], ["https://tec.openplanner.team/stops/X612aaa", "https://tec.openplanner.team/stops/X612aea"], ["https://tec.openplanner.team/stops/H4ta124a", "https://tec.openplanner.team/stops/H4ta124b"], ["https://tec.openplanner.team/stops/LFebas-1", "https://tec.openplanner.team/stops/LSReg--2"], ["https://tec.openplanner.team/stops/H4lu126a", "https://tec.openplanner.team/stops/H4mo193b"], ["https://tec.openplanner.team/stops/X601dbb", "https://tec.openplanner.team/stops/X612afb"], ["https://tec.openplanner.team/stops/X659add", "https://tec.openplanner.team/stops/X659ava"], ["https://tec.openplanner.team/stops/N561aga", "https://tec.openplanner.team/stops/N561aia"], ["https://tec.openplanner.team/stops/N501hda", "https://tec.openplanner.team/stops/N501hdb"], ["https://tec.openplanner.team/stops/X639asa", "https://tec.openplanner.team/stops/X639asb"], ["https://tec.openplanner.team/stops/Caujonc2", "https://tec.openplanner.team/stops/N543ang"], ["https://tec.openplanner.team/stops/N121aca", "https://tec.openplanner.team/stops/N121aea"], ["https://tec.openplanner.team/stops/N512aia", "https://tec.openplanner.team/stops/N512aid"], ["https://tec.openplanner.team/stops/N383aaa", "https://tec.openplanner.team/stops/N383aab"], ["https://tec.openplanner.team/stops/N232afb", "https://tec.openplanner.team/stops/N232aga"], ["https://tec.openplanner.team/stops/H4mo174a", "https://tec.openplanner.team/stops/H4mo181d"], ["https://tec.openplanner.team/stops/N205abb", "https://tec.openplanner.team/stops/N205ada"], ["https://tec.openplanner.team/stops/X663akb", "https://tec.openplanner.team/stops/X663alb"], ["https://tec.openplanner.team/stops/H2ll197a", "https://tec.openplanner.team/stops/H2ll197b"], ["https://tec.openplanner.team/stops/Ccoconf2", "https://tec.openplanner.team/stops/Ccocorb1"], ["https://tec.openplanner.team/stops/H1en104d", "https://tec.openplanner.team/stops/H1en105a"], ["https://tec.openplanner.team/stops/Cmymarb2", "https://tec.openplanner.team/stops/Cmyronc2"], ["https://tec.openplanner.team/stops/LeIjoha1", "https://tec.openplanner.team/stops/LeIkreu4"], ["https://tec.openplanner.team/stops/N512acb", "https://tec.openplanner.team/stops/N512agd"], ["https://tec.openplanner.team/stops/LCaalou2", "https://tec.openplanner.team/stops/LCacoop1"], ["https://tec.openplanner.team/stops/LHUremy1", "https://tec.openplanner.team/stops/NL80ahb"], ["https://tec.openplanner.team/stops/Cchmont2", "https://tec.openplanner.team/stops/Cchrmon1"], ["https://tec.openplanner.team/stops/X721aga", "https://tec.openplanner.team/stops/X721ahb"], ["https://tec.openplanner.team/stops/X342aca", "https://tec.openplanner.team/stops/X342ada"], ["https://tec.openplanner.team/stops/Lmabott1", "https://tec.openplanner.team/stops/Lmaelhe2"], ["https://tec.openplanner.team/stops/LAwfans2", "https://tec.openplanner.team/stops/LHrchat1"], ["https://tec.openplanner.team/stops/X779abb", "https://tec.openplanner.team/stops/X779aib"], ["https://tec.openplanner.team/stops/Lflsana1", "https://tec.openplanner.team/stops/Lropass1"], ["https://tec.openplanner.team/stops/H4ta129b", "https://tec.openplanner.team/stops/H4ta130b"], ["https://tec.openplanner.team/stops/N351akc", "https://tec.openplanner.team/stops/N351asb"], ["https://tec.openplanner.team/stops/H1br132b", "https://tec.openplanner.team/stops/H1ev113b"], ["https://tec.openplanner.team/stops/LOmpont1", "https://tec.openplanner.team/stops/LOmpont2"], ["https://tec.openplanner.team/stops/Ccubric1", "https://tec.openplanner.team/stops/Ccupays1"], ["https://tec.openplanner.team/stops/Cgualno2", "https://tec.openplanner.team/stops/Ctybaco2"], ["https://tec.openplanner.team/stops/X653aba", "https://tec.openplanner.team/stops/X653aca"], ["https://tec.openplanner.team/stops/Btubbot1", "https://tec.openplanner.team/stops/Btubpir1"], ["https://tec.openplanner.team/stops/Llggrav1", "https://tec.openplanner.team/stops/Llgstap2"], ["https://tec.openplanner.team/stops/Bcrbast1", "https://tec.openplanner.team/stops/Bcrbhir1"], ["https://tec.openplanner.team/stops/Bmlngvi1", "https://tec.openplanner.team/stops/Bmlngvi2"], ["https://tec.openplanner.team/stops/Cgdberl2", "https://tec.openplanner.team/stops/H1mb125a"], ["https://tec.openplanner.team/stops/X363aca", "https://tec.openplanner.team/stops/X363acb"], ["https://tec.openplanner.team/stops/H5el101a", "https://tec.openplanner.team/stops/H5rx131a"], ["https://tec.openplanner.team/stops/H4he107b", "https://tec.openplanner.team/stops/H4wg121a"], ["https://tec.openplanner.team/stops/X939afa", "https://tec.openplanner.team/stops/X939afb"], ["https://tec.openplanner.team/stops/LHueg--2", "https://tec.openplanner.team/stops/LHupont2"], ["https://tec.openplanner.team/stops/Cvscomb1", "https://tec.openplanner.team/stops/N530ahb"], ["https://tec.openplanner.team/stops/H2ep145a", "https://tec.openplanner.team/stops/H3bi113b"], ["https://tec.openplanner.team/stops/X633abb", "https://tec.openplanner.team/stops/X633aca"], ["https://tec.openplanner.team/stops/LVBvill2", "https://tec.openplanner.team/stops/LWDchpl1"], ["https://tec.openplanner.team/stops/LWAchpg1", "https://tec.openplanner.team/stops/LWAmouh2"], ["https://tec.openplanner.team/stops/Cpclarm2", "https://tec.openplanner.team/stops/Cpclibe3"], ["https://tec.openplanner.team/stops/Bbeagae2", "https://tec.openplanner.team/stops/Bsrgm102"], ["https://tec.openplanner.team/stops/Btstche1", "https://tec.openplanner.team/stops/Btstche2"], ["https://tec.openplanner.team/stops/LCRabbe1", "https://tec.openplanner.team/stops/LCRchpl2"], ["https://tec.openplanner.team/stops/H5ar104a", "https://tec.openplanner.team/stops/H5me106a"], ["https://tec.openplanner.team/stops/LeYberl1", "https://tec.openplanner.team/stops/LeYberl2"], ["https://tec.openplanner.team/stops/Cgylami1", "https://tec.openplanner.team/stops/Cjulamb1"], ["https://tec.openplanner.team/stops/Bboupde2", "https://tec.openplanner.team/stops/Bsmgmas1"], ["https://tec.openplanner.team/stops/Bbonbcr1", "https://tec.openplanner.team/stops/Bbonegl1"], ["https://tec.openplanner.team/stops/X788adb", "https://tec.openplanner.team/stops/X788aea"], ["https://tec.openplanner.team/stops/Lrcauto2", "https://tec.openplanner.team/stops/Lrctec-1"], ["https://tec.openplanner.team/stops/LmI129-2", "https://tec.openplanner.team/stops/LmI36--1"], ["https://tec.openplanner.team/stops/LATcorn2", "https://tec.openplanner.team/stops/LATpatu2"], ["https://tec.openplanner.team/stops/X626afb", "https://tec.openplanner.team/stops/X663aca"], ["https://tec.openplanner.team/stops/Bneecha3", "https://tec.openplanner.team/stops/Bneeegl2"], ["https://tec.openplanner.team/stops/Loubiez1", "https://tec.openplanner.team/stops/Loubiez2"], ["https://tec.openplanner.team/stops/X657aeb", "https://tec.openplanner.team/stops/X658aeb"], ["https://tec.openplanner.team/stops/H4ff120a", "https://tec.openplanner.team/stops/H4ff120b"], ["https://tec.openplanner.team/stops/X358aea", "https://tec.openplanner.team/stops/X358aeb"], ["https://tec.openplanner.team/stops/LHrparc1", "https://tec.openplanner.team/stops/LHrprie1"], ["https://tec.openplanner.team/stops/N221aba", "https://tec.openplanner.team/stops/X394aga"], ["https://tec.openplanner.team/stops/N579ada", "https://tec.openplanner.team/stops/N579adb"], ["https://tec.openplanner.team/stops/X781aba", "https://tec.openplanner.team/stops/X781aha"], ["https://tec.openplanner.team/stops/LGe4bra1", "https://tec.openplanner.team/stops/LGepeck2"], ["https://tec.openplanner.team/stops/N511ana", "https://tec.openplanner.team/stops/N511arb"], ["https://tec.openplanner.team/stops/LSPpomp1", "https://tec.openplanner.team/stops/LSPpomp2"], ["https://tec.openplanner.team/stops/LCxbeau1", "https://tec.openplanner.team/stops/LHEpriv2"], ["https://tec.openplanner.team/stops/X858ada", "https://tec.openplanner.team/stops/X858ahb"], ["https://tec.openplanner.team/stops/LrEochs1", "https://tec.openplanner.team/stops/LrEochs2"], ["https://tec.openplanner.team/stops/LHTboul2", "https://tec.openplanner.team/stops/LHTeg--5"], ["https://tec.openplanner.team/stops/X615aya", "https://tec.openplanner.team/stops/X615bgb"], ["https://tec.openplanner.team/stops/Ldidefo2", "https://tec.openplanner.team/stops/Ldihusq2"], ["https://tec.openplanner.team/stops/N132ada", "https://tec.openplanner.team/stops/N138aja"], ["https://tec.openplanner.team/stops/LHcaube1", "https://tec.openplanner.team/stops/LHceg--1"], ["https://tec.openplanner.team/stops/Lghflot3", "https://tec.openplanner.team/stops/Lghwall2"], ["https://tec.openplanner.team/stops/Lpegole2", "https://tec.openplanner.team/stops/LWegdry2"], ["https://tec.openplanner.team/stops/N512aka", "https://tec.openplanner.team/stops/N512ara"], ["https://tec.openplanner.team/stops/H1ls105a", "https://tec.openplanner.team/stops/H1ls106b"], ["https://tec.openplanner.team/stops/H1gn148b", "https://tec.openplanner.team/stops/H1gn151a"], ["https://tec.openplanner.team/stops/H2fy120d", "https://tec.openplanner.team/stops/H2mg142b"], ["https://tec.openplanner.team/stops/LNEbo472", "https://tec.openplanner.team/stops/LSNfays2"], ["https://tec.openplanner.team/stops/Lfhchaf4", "https://tec.openplanner.team/stops/Lfhgare2"], ["https://tec.openplanner.team/stops/N150aab", "https://tec.openplanner.team/stops/N150abb"], ["https://tec.openplanner.team/stops/Cgzhour3", "https://tec.openplanner.team/stops/Cgzoctr2"], ["https://tec.openplanner.team/stops/Bmrleco3", "https://tec.openplanner.team/stops/Bmrlnce1"], ["https://tec.openplanner.team/stops/N562bhb", "https://tec.openplanner.team/stops/N562bjb"], ["https://tec.openplanner.team/stops/Lhrbell1", "https://tec.openplanner.team/stops/Lhrmare1"], ["https://tec.openplanner.team/stops/N509aab", "https://tec.openplanner.team/stops/N513bib"], ["https://tec.openplanner.team/stops/Btubdeh2", "https://tec.openplanner.team/stops/Btubnav2"], ["https://tec.openplanner.team/stops/Cauwauq1", "https://tec.openplanner.team/stops/N534beb"], ["https://tec.openplanner.team/stops/N550alb", "https://tec.openplanner.team/stops/N565ada"], ["https://tec.openplanner.team/stops/LbTgeme1", "https://tec.openplanner.team/stops/LsHlenz2"], ["https://tec.openplanner.team/stops/Bgoesch1", "https://tec.openplanner.team/stops/Bgoesch3"], ["https://tec.openplanner.team/stops/H4be101a", "https://tec.openplanner.team/stops/H4be108a"], ["https://tec.openplanner.team/stops/Lagptba2", "https://tec.openplanner.team/stops/Lgrside1"], ["https://tec.openplanner.team/stops/X982baa", "https://tec.openplanner.team/stops/X982cda"], ["https://tec.openplanner.team/stops/X397aab", "https://tec.openplanner.team/stops/X397aac"], ["https://tec.openplanner.team/stops/Creha761", "https://tec.openplanner.team/stops/Creha762"], ["https://tec.openplanner.team/stops/H4ka175b", "https://tec.openplanner.team/stops/H4ob108b"], ["https://tec.openplanner.team/stops/LHCpaci2", "https://tec.openplanner.team/stops/LMNswar1"], ["https://tec.openplanner.team/stops/N544abc", "https://tec.openplanner.team/stops/N544aea"], ["https://tec.openplanner.team/stops/H1et101a", "https://tec.openplanner.team/stops/H1ju119b"], ["https://tec.openplanner.team/stops/X801bva", "https://tec.openplanner.team/stops/X801bxa"], ["https://tec.openplanner.team/stops/Bgemcha1", "https://tec.openplanner.team/stops/Bgrmfon1"], ["https://tec.openplanner.team/stops/Blascsl2", "https://tec.openplanner.team/stops/Bohnr731"], ["https://tec.openplanner.team/stops/Blhugai1", "https://tec.openplanner.team/stops/Bohnhan1"], ["https://tec.openplanner.team/stops/X670ara", "https://tec.openplanner.team/stops/X670arb"], ["https://tec.openplanner.team/stops/Cjudaxi1", "https://tec.openplanner.team/stops/Cjudaxi2"], ["https://tec.openplanner.team/stops/H4ty267b", "https://tec.openplanner.team/stops/H4ty287b"], ["https://tec.openplanner.team/stops/H4an104b", "https://tec.openplanner.team/stops/H4an111b"], ["https://tec.openplanner.team/stops/LFUfonc2", "https://tec.openplanner.team/stops/LWDfuma1"], ["https://tec.openplanner.team/stops/H4eh104b", "https://tec.openplanner.team/stops/H4he101b"], ["https://tec.openplanner.team/stops/H1he110b", "https://tec.openplanner.team/stops/H4be101a"], ["https://tec.openplanner.team/stops/LBTchai2", "https://tec.openplanner.team/stops/LCHsaul2"], ["https://tec.openplanner.team/stops/LWAathe1", "https://tec.openplanner.team/stops/LWAathe2"], ["https://tec.openplanner.team/stops/LFTcroi2", "https://tec.openplanner.team/stops/LNAbois2"], ["https://tec.openplanner.team/stops/Ctrpn2", "https://tec.openplanner.team/stops/Ctrrpla1"], ["https://tec.openplanner.team/stops/X801abb", "https://tec.openplanner.team/stops/X898ama"], ["https://tec.openplanner.team/stops/LFochap1", "https://tec.openplanner.team/stops/LGOcana1"], ["https://tec.openplanner.team/stops/LBahome1", "https://tec.openplanner.team/stops/LBalacr2"], ["https://tec.openplanner.team/stops/Bbchdra2", "https://tec.openplanner.team/stops/Bbchmin1"], ["https://tec.openplanner.team/stops/N302afa", "https://tec.openplanner.team/stops/N331aaa"], ["https://tec.openplanner.team/stops/N160ada", "https://tec.openplanner.team/stops/N160aha"], ["https://tec.openplanner.team/stops/H1hv132a", "https://tec.openplanner.team/stops/H1hv136b"], ["https://tec.openplanner.team/stops/H2bh111b", "https://tec.openplanner.team/stops/H2mg143b"], ["https://tec.openplanner.team/stops/Bllngar4", "https://tec.openplanner.team/stops/Bllnmet1"], ["https://tec.openplanner.team/stops/N229aia", "https://tec.openplanner.team/stops/N229ajb"], ["https://tec.openplanner.team/stops/N305aba", "https://tec.openplanner.team/stops/N305aca"], ["https://tec.openplanner.team/stops/Bgdhbvu1", "https://tec.openplanner.team/stops/Bgdhmet2"], ["https://tec.openplanner.team/stops/LJEchat1", "https://tec.openplanner.team/stops/LJEpaqu2"], ["https://tec.openplanner.team/stops/X752aba", "https://tec.openplanner.team/stops/X757aca"], ["https://tec.openplanner.team/stops/X898aba", "https://tec.openplanner.team/stops/X898afa"], ["https://tec.openplanner.team/stops/Ctucomm2", "https://tec.openplanner.team/stops/NC28aha"], ["https://tec.openplanner.team/stops/H4au143a", "https://tec.openplanner.team/stops/H4au144b"], ["https://tec.openplanner.team/stops/LBCaube2", "https://tec.openplanner.team/stops/LBCtros2"], ["https://tec.openplanner.team/stops/Clrrhau1", "https://tec.openplanner.team/stops/Clrwesp2"], ["https://tec.openplanner.team/stops/H1ms907a", "https://tec.openplanner.team/stops/H1ms910a"], ["https://tec.openplanner.team/stops/H4ga151a", "https://tec.openplanner.team/stops/H4vz367a"], ["https://tec.openplanner.team/stops/H1ht121b", "https://tec.openplanner.team/stops/H1tl120a"], ["https://tec.openplanner.team/stops/Bmelenf2", "https://tec.openplanner.team/stops/Btilhti2"], ["https://tec.openplanner.team/stops/Ccobour1", "https://tec.openplanner.team/stops/Csochea2"], ["https://tec.openplanner.team/stops/X901bla", "https://tec.openplanner.team/stops/X901bma"], ["https://tec.openplanner.team/stops/H4vx362b", "https://tec.openplanner.team/stops/H4vx364c"], ["https://tec.openplanner.team/stops/N562bib", "https://tec.openplanner.team/stops/N562bsa"], ["https://tec.openplanner.team/stops/H4ma398b", "https://tec.openplanner.team/stops/H4oq226a"], ["https://tec.openplanner.team/stops/LJeeg--2", "https://tec.openplanner.team/stops/LJelava2"], ["https://tec.openplanner.team/stops/H1he109a", "https://tec.openplanner.team/stops/H1qv112b"], ["https://tec.openplanner.team/stops/LCscarr2", "https://tec.openplanner.team/stops/LCschen1"], ["https://tec.openplanner.team/stops/X362aab", "https://tec.openplanner.team/stops/X362abb"], ["https://tec.openplanner.team/stops/X773aca", "https://tec.openplanner.team/stops/X908acb"], ["https://tec.openplanner.team/stops/N548agd", "https://tec.openplanner.team/stops/N569adb"], ["https://tec.openplanner.team/stops/N501bbc", "https://tec.openplanner.team/stops/N501cvb"], ["https://tec.openplanner.team/stops/H2ha139a", "https://tec.openplanner.team/stops/H2ha139b"], ["https://tec.openplanner.team/stops/Bitrbvo2", "https://tec.openplanner.team/stops/Bosqgar2"], ["https://tec.openplanner.team/stops/H4bw102a", "https://tec.openplanner.team/stops/H4co151a"], ["https://tec.openplanner.team/stops/X839afa", "https://tec.openplanner.team/stops/X840abb"], ["https://tec.openplanner.team/stops/LTecent1", "https://tec.openplanner.team/stops/LTecent4"], ["https://tec.openplanner.team/stops/X940aea", "https://tec.openplanner.team/stops/X941ada"], ["https://tec.openplanner.team/stops/LBWfusi1", "https://tec.openplanner.team/stops/LBWfusi2"], ["https://tec.openplanner.team/stops/Bllnald1", "https://tec.openplanner.team/stops/Bllngar2"], ["https://tec.openplanner.team/stops/X742afa", "https://tec.openplanner.team/stops/X743aab"], ["https://tec.openplanner.team/stops/Lrofont*", "https://tec.openplanner.team/stops/Lrofont1"], ["https://tec.openplanner.team/stops/H1hr127b", "https://tec.openplanner.team/stops/H1to152a"], ["https://tec.openplanner.team/stops/H2jo162b", "https://tec.openplanner.team/stops/H2jo164b"], ["https://tec.openplanner.team/stops/N550abd", "https://tec.openplanner.team/stops/N550anb"], ["https://tec.openplanner.team/stops/Bhen5ma1", "https://tec.openplanner.team/stops/Bhenfla2"], ["https://tec.openplanner.team/stops/N538amb", "https://tec.openplanner.team/stops/N538amc"], ["https://tec.openplanner.team/stops/LeIkirr1", "https://tec.openplanner.team/stops/LeIkreu1"], ["https://tec.openplanner.team/stops/X354ada", "https://tec.openplanner.team/stops/X354aeb"], ["https://tec.openplanner.team/stops/X793afb", "https://tec.openplanner.team/stops/X793afd"], ["https://tec.openplanner.team/stops/X917aha", "https://tec.openplanner.team/stops/X917aka"], ["https://tec.openplanner.team/stops/X801axb", "https://tec.openplanner.team/stops/X801aza"], ["https://tec.openplanner.team/stops/H1hh113a", "https://tec.openplanner.team/stops/H1hh113b"], ["https://tec.openplanner.team/stops/LBSchar2", "https://tec.openplanner.team/stops/LBSvi321"], ["https://tec.openplanner.team/stops/H4er121b", "https://tec.openplanner.team/stops/H4er125a"], ["https://tec.openplanner.team/stops/H4ty347a", "https://tec.openplanner.team/stops/H4ty416a"], ["https://tec.openplanner.team/stops/Cmychpl1", "https://tec.openplanner.team/stops/Cmychpl2"], ["https://tec.openplanner.team/stops/Crocpai2", "https://tec.openplanner.team/stops/Crorogn2"], ["https://tec.openplanner.team/stops/Lbopote2", "https://tec.openplanner.team/stops/Lbotige2"], ["https://tec.openplanner.team/stops/N501fxb", "https://tec.openplanner.team/stops/N501lbd"], ["https://tec.openplanner.team/stops/H2hp114b", "https://tec.openplanner.team/stops/H2ll172d"], ["https://tec.openplanner.team/stops/LAvchpl1", "https://tec.openplanner.team/stops/LBUrout1"], ["https://tec.openplanner.team/stops/Cctmari2", "https://tec.openplanner.team/stops/NC11aib"], ["https://tec.openplanner.team/stops/X615aub", "https://tec.openplanner.team/stops/X615bda"], ["https://tec.openplanner.team/stops/Bgntcom1", "https://tec.openplanner.team/stops/Bmelegl2"], ["https://tec.openplanner.team/stops/N506ama", "https://tec.openplanner.team/stops/NL67ada"], ["https://tec.openplanner.team/stops/X394aea", "https://tec.openplanner.team/stops/X396aea"], ["https://tec.openplanner.team/stops/LWelogi2", "https://tec.openplanner.team/stops/LWepost4"], ["https://tec.openplanner.team/stops/H4ir167b", "https://tec.openplanner.team/stops/H5at129b"], ["https://tec.openplanner.team/stops/X746aba", "https://tec.openplanner.team/stops/X746abb"], ["https://tec.openplanner.team/stops/N501fdb", "https://tec.openplanner.team/stops/N501fdd"], ["https://tec.openplanner.team/stops/Bcrncor1", "https://tec.openplanner.team/stops/Bsgeqpb1"], ["https://tec.openplanner.team/stops/X942afb", "https://tec.openplanner.team/stops/X943aea"], ["https://tec.openplanner.team/stops/H2ma206a", "https://tec.openplanner.team/stops/H2ma206b"], ["https://tec.openplanner.team/stops/H1gy111b", "https://tec.openplanner.team/stops/H1le129a"], ["https://tec.openplanner.team/stops/Lcelhon3", "https://tec.openplanner.team/stops/Lcemc--2"], ["https://tec.openplanner.team/stops/LeYloos2", "https://tec.openplanner.team/stops/LeYmero2"], ["https://tec.openplanner.team/stops/N513aea", "https://tec.openplanner.team/stops/N513aeb"], ["https://tec.openplanner.team/stops/LBUchpl1", "https://tec.openplanner.team/stops/NL68afa"], ["https://tec.openplanner.team/stops/LWDeg--1", "https://tec.openplanner.team/stops/LWDplac1"], ["https://tec.openplanner.team/stops/H1qy135a", "https://tec.openplanner.team/stops/H1qy135b"], ["https://tec.openplanner.team/stops/Bnetrbr1", "https://tec.openplanner.team/stops/Bnetvan1"], ["https://tec.openplanner.team/stops/Brsrfen1", "https://tec.openplanner.team/stops/Brsrpch2"], ["https://tec.openplanner.team/stops/Bchgrco1", "https://tec.openplanner.team/stops/Bgisber2"], ["https://tec.openplanner.team/stops/LLmeg--2", "https://tec.openplanner.team/stops/LLmvand1"], ["https://tec.openplanner.team/stops/Blimegl2", "https://tec.openplanner.team/stops/Blimeur2"], ["https://tec.openplanner.team/stops/Lpecaze2", "https://tec.openplanner.team/stops/Lpeprev2"], ["https://tec.openplanner.team/stops/H4hx118a", "https://tec.openplanner.team/stops/H4hx120b"], ["https://tec.openplanner.team/stops/LHZ8mai2", "https://tec.openplanner.team/stops/LHZec--2"], ["https://tec.openplanner.team/stops/H4ms145a", "https://tec.openplanner.team/stops/H4ms145b"], ["https://tec.openplanner.team/stops/Bhenfer1", "https://tec.openplanner.team/stops/Bquegen2"], ["https://tec.openplanner.team/stops/LBEairp1", "https://tec.openplanner.team/stops/LBEhaye1"], ["https://tec.openplanner.team/stops/LCPaywa1", "https://tec.openplanner.team/stops/LCPhall1"], ["https://tec.openplanner.team/stops/Bwavgar4", "https://tec.openplanner.team/stops/Bwavtpi2"], ["https://tec.openplanner.team/stops/LLWcarr1", "https://tec.openplanner.team/stops/LTOcime2"], ["https://tec.openplanner.team/stops/LNOning1", "https://tec.openplanner.team/stops/LNOsedo1"], ["https://tec.openplanner.team/stops/H2re165b", "https://tec.openplanner.team/stops/H2re168a"], ["https://tec.openplanner.team/stops/LeUbahn5", "https://tec.openplanner.team/stops/LeUschn2"], ["https://tec.openplanner.team/stops/LLRptma2", "https://tec.openplanner.team/stops/LLRvill2"], ["https://tec.openplanner.team/stops/Crg3arb1", "https://tec.openplanner.team/stops/Cthgend2"], ["https://tec.openplanner.team/stops/X953ada", "https://tec.openplanner.team/stops/X954aga"], ["https://tec.openplanner.team/stops/N501loa", "https://tec.openplanner.team/stops/N528ahb"], ["https://tec.openplanner.team/stops/Lseaite2", "https://tec.openplanner.team/stops/Lsestap2"], ["https://tec.openplanner.team/stops/H4ty300b", "https://tec.openplanner.team/stops/H4ty329b"], ["https://tec.openplanner.team/stops/LBEhaye1", "https://tec.openplanner.team/stops/LBEtroo1"], ["https://tec.openplanner.team/stops/X731aha", "https://tec.openplanner.team/stops/X731aia"], ["https://tec.openplanner.team/stops/H1he106a", "https://tec.openplanner.team/stops/H1he106b"], ["https://tec.openplanner.team/stops/H2ml110a", "https://tec.openplanner.team/stops/H2ml110b"], ["https://tec.openplanner.team/stops/X801bzb", "https://tec.openplanner.team/stops/X801caa"], ["https://tec.openplanner.team/stops/Bcsebde2", "https://tec.openplanner.team/stops/Bcsemon2"], ["https://tec.openplanner.team/stops/X912acb", "https://tec.openplanner.team/stops/X912aea"], ["https://tec.openplanner.team/stops/Lcefoxh1", "https://tec.openplanner.team/stops/Lcepass1"], ["https://tec.openplanner.team/stops/X733abb", "https://tec.openplanner.team/stops/X733acb"], ["https://tec.openplanner.team/stops/N140aaa", "https://tec.openplanner.team/stops/N140aab"], ["https://tec.openplanner.team/stops/X850aca", "https://tec.openplanner.team/stops/X850acb"], ["https://tec.openplanner.team/stops/H1mb131b", "https://tec.openplanner.team/stops/H1mb137b"], ["https://tec.openplanner.team/stops/Cgrcent1", "https://tec.openplanner.team/stops/NC14anb"], ["https://tec.openplanner.team/stops/X611aba", "https://tec.openplanner.team/stops/X643aab"], ["https://tec.openplanner.team/stops/H1hw118a", "https://tec.openplanner.team/stops/H1so136b"], ["https://tec.openplanner.team/stops/Ljuinte2", "https://tec.openplanner.team/stops/Llgchan1"], ["https://tec.openplanner.team/stops/X882ajb", "https://tec.openplanner.team/stops/X882aka"], ["https://tec.openplanner.team/stops/H4ty384a", "https://tec.openplanner.team/stops/H4ty384b"], ["https://tec.openplanner.team/stops/X396aaa", "https://tec.openplanner.team/stops/X396aba"], ["https://tec.openplanner.team/stops/X804aca", "https://tec.openplanner.team/stops/X882alb"], ["https://tec.openplanner.team/stops/LMici091", "https://tec.openplanner.team/stops/LMisour1"], ["https://tec.openplanner.team/stops/N503aca", "https://tec.openplanner.team/stops/N503acb"], ["https://tec.openplanner.team/stops/X831aba", "https://tec.openplanner.team/stops/X831abb"], ["https://tec.openplanner.team/stops/X631aab", "https://tec.openplanner.team/stops/X631adb"], ["https://tec.openplanner.team/stops/LWeec--1", "https://tec.openplanner.team/stops/LWeec--2"], ["https://tec.openplanner.team/stops/Lvebiol1", "https://tec.openplanner.team/stops/Lvewall1"], ["https://tec.openplanner.team/stops/X942aga", "https://tec.openplanner.team/stops/X942agb"], ["https://tec.openplanner.team/stops/X758aeb", "https://tec.openplanner.team/stops/X758afa"], ["https://tec.openplanner.team/stops/H1ba113a", "https://tec.openplanner.team/stops/H1ba113b"], ["https://tec.openplanner.team/stops/Llocime1", "https://tec.openplanner.team/stops/Llocime2"], ["https://tec.openplanner.team/stops/H1sg144b", "https://tec.openplanner.team/stops/H1te177b"], ["https://tec.openplanner.team/stops/Cvlcen1", "https://tec.openplanner.team/stops/NH21aca"], ["https://tec.openplanner.team/stops/LScgore2", "https://tec.openplanner.team/stops/LScread2"], ["https://tec.openplanner.team/stops/N528aea", "https://tec.openplanner.team/stops/N528aeb"], ["https://tec.openplanner.team/stops/LAxbott1", "https://tec.openplanner.team/stops/Lhepaqu2"], ["https://tec.openplanner.team/stops/Ccupres2", "https://tec.openplanner.team/stops/Ccusole1"], ["https://tec.openplanner.team/stops/H4wn138a", "https://tec.openplanner.team/stops/H4wn138b"], ["https://tec.openplanner.team/stops/N534ara", "https://tec.openplanner.team/stops/N534arb"], ["https://tec.openplanner.team/stops/LWAclos2", "https://tec.openplanner.team/stops/LWAipes1"], ["https://tec.openplanner.team/stops/LElcent2", "https://tec.openplanner.team/stops/LElgerd4"], ["https://tec.openplanner.team/stops/N141alb", "https://tec.openplanner.team/stops/N143abb"], ["https://tec.openplanner.team/stops/Lsecime2", "https://tec.openplanner.team/stops/Lsefive1"], ["https://tec.openplanner.team/stops/LDLbeau2", "https://tec.openplanner.team/stops/LDLgran2"], ["https://tec.openplanner.team/stops/Lhrdeme1", "https://tec.openplanner.team/stops/Lhrpwan2"], ["https://tec.openplanner.team/stops/X948ada", "https://tec.openplanner.team/stops/X948adb"], ["https://tec.openplanner.team/stops/Llgbaya1", "https://tec.openplanner.team/stops/Llgbaya4"], ["https://tec.openplanner.team/stops/Bblmcel1", "https://tec.openplanner.team/stops/Bnil3fo1"], ["https://tec.openplanner.team/stops/Lsekubo2", "https://tec.openplanner.team/stops/Lsekubo3"], ["https://tec.openplanner.team/stops/Ldimeun2", "https://tec.openplanner.team/stops/Ldipl--2"], ["https://tec.openplanner.team/stops/Clibrun2", "https://tec.openplanner.team/stops/Cvvmonu2"], ["https://tec.openplanner.team/stops/H4ty273a", "https://tec.openplanner.team/stops/H4ty295d"], ["https://tec.openplanner.team/stops/Brixcme2", "https://tec.openplanner.team/stops/Brsrber1"], ["https://tec.openplanner.team/stops/LSTchen1", "https://tec.openplanner.team/stops/LSTdero1"], ["https://tec.openplanner.team/stops/X780ada", "https://tec.openplanner.team/stops/X780aga"], ["https://tec.openplanner.team/stops/LHemoul1", "https://tec.openplanner.team/stops/LOUsorb1"], ["https://tec.openplanner.team/stops/LCPhall2", "https://tec.openplanner.team/stops/LHycent*"], ["https://tec.openplanner.team/stops/X806abb", "https://tec.openplanner.team/stops/X806akb"], ["https://tec.openplanner.team/stops/X650aea", "https://tec.openplanner.team/stops/X650aib"], ["https://tec.openplanner.team/stops/H1hh109a", "https://tec.openplanner.team/stops/H1hh114a"], ["https://tec.openplanner.team/stops/N214aea", "https://tec.openplanner.team/stops/N214afa"], ["https://tec.openplanner.team/stops/Bneeblo1", "https://tec.openplanner.team/stops/Bneehou2"], ["https://tec.openplanner.team/stops/H4ve137a", "https://tec.openplanner.team/stops/H4ve137b"], ["https://tec.openplanner.team/stops/H4ga150b", "https://tec.openplanner.team/stops/H4ha168a"], ["https://tec.openplanner.team/stops/X991aka", "https://tec.openplanner.team/stops/X993aea"], ["https://tec.openplanner.team/stops/Llgcroi1", "https://tec.openplanner.team/stops/Llgfred1"], ["https://tec.openplanner.team/stops/X734aib", "https://tec.openplanner.team/stops/X734ajb"], ["https://tec.openplanner.team/stops/Cplbbro2", "https://tec.openplanner.team/stops/NC11ama"], ["https://tec.openplanner.team/stops/H2ma264a", "https://tec.openplanner.team/stops/H2tr248b"], ["https://tec.openplanner.team/stops/LENparc1", "https://tec.openplanner.team/stops/LENparc2"], ["https://tec.openplanner.team/stops/LLGramk1", "https://tec.openplanner.team/stops/LORvill2"], ["https://tec.openplanner.team/stops/Csecout1", "https://tec.openplanner.team/stops/Csemacq2"], ["https://tec.openplanner.team/stops/X713aia", "https://tec.openplanner.team/stops/X714aea"], ["https://tec.openplanner.team/stops/Cpclarm1", "https://tec.openplanner.team/stops/Cpcndce2"], ["https://tec.openplanner.team/stops/Bwatabs1", "https://tec.openplanner.team/stops/Bwatrsg1"], ["https://tec.openplanner.team/stops/Bbstbou2", "https://tec.openplanner.team/stops/Bbstfch2"], ["https://tec.openplanner.team/stops/Cmaest1", "https://tec.openplanner.team/stops/Cmmn1172"], ["https://tec.openplanner.team/stops/LHUhaum3", "https://tec.openplanner.team/stops/LHUpsar2"], ["https://tec.openplanner.team/stops/Blmlcar1", "https://tec.openplanner.team/stops/Blmlcim2"], ["https://tec.openplanner.team/stops/H2an100b", "https://tec.openplanner.team/stops/H2an104a"], ["https://tec.openplanner.team/stops/H1hl122a", "https://tec.openplanner.team/stops/H1hl124a"], ["https://tec.openplanner.team/stops/H2gy100a", "https://tec.openplanner.team/stops/H2tz117b"], ["https://tec.openplanner.team/stops/H4fa124b", "https://tec.openplanner.team/stops/H4fa126a"], ["https://tec.openplanner.team/stops/H4fa126c", "https://tec.openplanner.team/stops/H4fa126d"], ["https://tec.openplanner.team/stops/H1ci104a", "https://tec.openplanner.team/stops/H1mv243b"], ["https://tec.openplanner.team/stops/LOMeg--1", "https://tec.openplanner.team/stops/LOMeg--2"], ["https://tec.openplanner.team/stops/H1pd145a", "https://tec.openplanner.team/stops/H1sb149a"], ["https://tec.openplanner.team/stops/LMHec--1", "https://tec.openplanner.team/stops/NL73aea"], ["https://tec.openplanner.team/stops/Bbaubon1", "https://tec.openplanner.team/stops/Bnivpba1"], ["https://tec.openplanner.team/stops/N360aca", "https://tec.openplanner.team/stops/N360acb"], ["https://tec.openplanner.team/stops/X654ada", "https://tec.openplanner.team/stops/X654aeb"], ["https://tec.openplanner.team/stops/H2sb258b", "https://tec.openplanner.team/stops/H3lr110a"], ["https://tec.openplanner.team/stops/Bnetegl2", "https://tec.openplanner.team/stops/Bnetegl3"], ["https://tec.openplanner.team/stops/H4ty324a", "https://tec.openplanner.team/stops/H4ty324c"], ["https://tec.openplanner.team/stops/H1ne141b", "https://tec.openplanner.team/stops/H1ne149b"], ["https://tec.openplanner.team/stops/N501baa", "https://tec.openplanner.team/stops/N501beb"], ["https://tec.openplanner.team/stops/LkTlibe2", "https://tec.openplanner.team/stops/LwAkett2"], ["https://tec.openplanner.team/stops/H1gi122a", "https://tec.openplanner.team/stops/H1gi154a"], ["https://tec.openplanner.team/stops/H1cd114a", "https://tec.openplanner.team/stops/H1ne138a"], ["https://tec.openplanner.team/stops/N145aia", "https://tec.openplanner.team/stops/N145aja"], ["https://tec.openplanner.team/stops/LHhchau2", "https://tec.openplanner.team/stops/LHhvivi1"], ["https://tec.openplanner.team/stops/H1ob330a", "https://tec.openplanner.team/stops/H1ob339a"], ["https://tec.openplanner.team/stops/X637akb", "https://tec.openplanner.team/stops/X638aea"], ["https://tec.openplanner.team/stops/Cgpauln1", "https://tec.openplanner.team/stops/Cgplhoi1"], ["https://tec.openplanner.team/stops/X779adb", "https://tec.openplanner.team/stops/X779aib"], ["https://tec.openplanner.team/stops/N501gzy", "https://tec.openplanner.team/stops/N501zca"], ["https://tec.openplanner.team/stops/Cthvbas1", "https://tec.openplanner.team/stops/Cthvbas2"], ["https://tec.openplanner.team/stops/Ctaallo1", "https://tec.openplanner.team/stops/Ctaallo2"], ["https://tec.openplanner.team/stops/X771adb", "https://tec.openplanner.team/stops/X771aib"], ["https://tec.openplanner.team/stops/X804akb", "https://tec.openplanner.team/stops/X804bwa"], ["https://tec.openplanner.team/stops/X773ama", "https://tec.openplanner.team/stops/X773ana"], ["https://tec.openplanner.team/stops/LHDmc--1", "https://tec.openplanner.team/stops/LHDmc--2"], ["https://tec.openplanner.team/stops/N509arb", "https://tec.openplanner.team/stops/N509avb"], ["https://tec.openplanner.team/stops/LBPauto2", "https://tec.openplanner.team/stops/LBPboir1"], ["https://tec.openplanner.team/stops/N232ata", "https://tec.openplanner.team/stops/N232bgb"], ["https://tec.openplanner.team/stops/H2mo124b", "https://tec.openplanner.team/stops/H2mo131b"], ["https://tec.openplanner.team/stops/X948asa", "https://tec.openplanner.team/stops/X948awa"], ["https://tec.openplanner.team/stops/X747afa", "https://tec.openplanner.team/stops/X747akb"], ["https://tec.openplanner.team/stops/LTecent2", "https://tec.openplanner.team/stops/LTestat1"], ["https://tec.openplanner.team/stops/Btslhau1", "https://tec.openplanner.team/stops/Btsllsc1"], ["https://tec.openplanner.team/stops/LFmeg--1", "https://tec.openplanner.team/stops/LFmeg--2"], ["https://tec.openplanner.team/stops/N104afb", "https://tec.openplanner.team/stops/N104akb"], ["https://tec.openplanner.team/stops/NR21aab", "https://tec.openplanner.team/stops/NR21aha"], ["https://tec.openplanner.team/stops/Bnivfro1", "https://tec.openplanner.team/stops/Bnivzep1"], ["https://tec.openplanner.team/stops/Bchacen1", "https://tec.openplanner.team/stops/Bhvltol2"], ["https://tec.openplanner.team/stops/Bitrh%C3%BBl1", "https://tec.openplanner.team/stops/Bronpfe2"], ["https://tec.openplanner.team/stops/N513ahb", "https://tec.openplanner.team/stops/N513bfb"], ["https://tec.openplanner.team/stops/Bcrncjo2", "https://tec.openplanner.team/stops/Bcrntru1"], ["https://tec.openplanner.team/stops/N231afb", "https://tec.openplanner.team/stops/N231agb"], ["https://tec.openplanner.team/stops/LhOfrie1", "https://tec.openplanner.team/stops/LhOokat2"], ["https://tec.openplanner.team/stops/H1ho122c", "https://tec.openplanner.team/stops/H1ho137a"], ["https://tec.openplanner.team/stops/Llgcrah2", "https://tec.openplanner.team/stops/Llgwild6"], ["https://tec.openplanner.team/stops/LMRmont2", "https://tec.openplanner.team/stops/LtEnatu1"], ["https://tec.openplanner.team/stops/N232beb", "https://tec.openplanner.team/stops/N261aea"], ["https://tec.openplanner.team/stops/LRmha261", "https://tec.openplanner.team/stops/LRmhage8"], ["https://tec.openplanner.team/stops/H4ta117a", "https://tec.openplanner.team/stops/H4ta117b"], ["https://tec.openplanner.team/stops/Blonegl1", "https://tec.openplanner.team/stops/Blonegl2"], ["https://tec.openplanner.team/stops/LSPastr2", "https://tec.openplanner.team/stops/LSPClem1"], ["https://tec.openplanner.team/stops/LNIdoma2", "https://tec.openplanner.team/stops/LSPfrai2"], ["https://tec.openplanner.team/stops/LeYauss1", "https://tec.openplanner.team/stops/LeYvoge1"], ["https://tec.openplanner.team/stops/Bchgqve2", "https://tec.openplanner.team/stops/Btsllbv2"], ["https://tec.openplanner.team/stops/H4ka181b", "https://tec.openplanner.team/stops/H4ty270b"], ["https://tec.openplanner.team/stops/X660adb", "https://tec.openplanner.team/stops/X660afa"], ["https://tec.openplanner.team/stops/Bbxlple2", "https://tec.openplanner.team/stops/Bbxltou1"], ["https://tec.openplanner.team/stops/N543aha", "https://tec.openplanner.team/stops/N543ahb"], ["https://tec.openplanner.team/stops/Cchdigu1", "https://tec.openplanner.team/stops/CMvil2"], ["https://tec.openplanner.team/stops/H1ba101b", "https://tec.openplanner.team/stops/H1te185a"], ["https://tec.openplanner.team/stops/X667aab", "https://tec.openplanner.team/stops/X667adb"], ["https://tec.openplanner.team/stops/X786aaa", "https://tec.openplanner.team/stops/X786ajb"], ["https://tec.openplanner.team/stops/LMsbusc2", "https://tec.openplanner.team/stops/LMspont2"], ["https://tec.openplanner.team/stops/Clomart1", "https://tec.openplanner.team/stops/CMtsan2"], ["https://tec.openplanner.team/stops/LmEdorf1", "https://tec.openplanner.team/stops/LmNlieb2"], ["https://tec.openplanner.team/stops/Cjuchli2", "https://tec.openplanner.team/stops/Cjumall6"], ["https://tec.openplanner.team/stops/Bdonlat2", "https://tec.openplanner.team/stops/Bincdon1"], ["https://tec.openplanner.team/stops/N516ama", "https://tec.openplanner.team/stops/N516aqb"], ["https://tec.openplanner.team/stops/Bmelegl1", "https://tec.openplanner.team/stops/Bsmgbsa1"], ["https://tec.openplanner.team/stops/N501heb", "https://tec.openplanner.team/stops/N501zea"], ["https://tec.openplanner.team/stops/N138aab", "https://tec.openplanner.team/stops/N138aac"], ["https://tec.openplanner.team/stops/H1ca184b", "https://tec.openplanner.team/stops/H1ne144a"], ["https://tec.openplanner.team/stops/X747aja", "https://tec.openplanner.team/stops/X749adb"], ["https://tec.openplanner.team/stops/LBieg--3", "https://tec.openplanner.team/stops/LHCbois1"], ["https://tec.openplanner.team/stops/LwYbrkr1", "https://tec.openplanner.team/stops/LwYnr261"], ["https://tec.openplanner.team/stops/LnEkirc1", "https://tec.openplanner.team/stops/LnEleje1"], ["https://tec.openplanner.team/stops/H4ru243a", "https://tec.openplanner.team/stops/H4ru245a"], ["https://tec.openplanner.team/stops/N212adb", "https://tec.openplanner.team/stops/N348aab"], ["https://tec.openplanner.team/stops/Lcaboun4", "https://tec.openplanner.team/stops/Lrofont1"], ["https://tec.openplanner.team/stops/H4ty335a", "https://tec.openplanner.team/stops/H4ty335b"], ["https://tec.openplanner.team/stops/LaSbahn2", "https://tec.openplanner.team/stops/LaSkape2"], ["https://tec.openplanner.team/stops/X633aca", "https://tec.openplanner.team/stops/X633ada"], ["https://tec.openplanner.team/stops/H4tg162a", "https://tec.openplanner.team/stops/H4tg162b"], ["https://tec.openplanner.team/stops/X948amc", "https://tec.openplanner.team/stops/X948ana"], ["https://tec.openplanner.team/stops/LVIferm2", "https://tec.openplanner.team/stops/LVImons2"], ["https://tec.openplanner.team/stops/X662aba", "https://tec.openplanner.team/stops/X662aeb"], ["https://tec.openplanner.team/stops/LMgbatt1", "https://tec.openplanner.team/stops/LMgkrui1"], ["https://tec.openplanner.team/stops/Cbwmato2", "https://tec.openplanner.team/stops/Cbwmvri1"], ["https://tec.openplanner.team/stops/N146adb", "https://tec.openplanner.team/stops/N146aea"], ["https://tec.openplanner.team/stops/Cthegli2", "https://tec.openplanner.team/stops/Cthrlef2"], ["https://tec.openplanner.team/stops/N557agb", "https://tec.openplanner.team/stops/N557ahb"], ["https://tec.openplanner.team/stops/X770afa", "https://tec.openplanner.team/stops/X770afb"], ["https://tec.openplanner.team/stops/H2ca112b", "https://tec.openplanner.team/stops/H2ca115a"], ["https://tec.openplanner.team/stops/H4eg101a", "https://tec.openplanner.team/stops/H4eg101c"], ["https://tec.openplanner.team/stops/Bcsgcou1", "https://tec.openplanner.team/stops/Bmrscol1"], ["https://tec.openplanner.team/stops/Lmopota2", "https://tec.openplanner.team/stops/Lmovand4"], ["https://tec.openplanner.team/stops/Cgofert2", "https://tec.openplanner.team/stops/Cgorosa2"], ["https://tec.openplanner.team/stops/Bkrawil1", "https://tec.openplanner.team/stops/Bwolkra2"], ["https://tec.openplanner.team/stops/H4ef163a", "https://tec.openplanner.team/stops/H4hq130a"], ["https://tec.openplanner.team/stops/N538aia", "https://tec.openplanner.team/stops/N538alb"], ["https://tec.openplanner.team/stops/LWagare*", "https://tec.openplanner.team/stops/LWastei1"], ["https://tec.openplanner.team/stops/LBHgile1", "https://tec.openplanner.team/stops/LFochap2"], ["https://tec.openplanner.team/stops/H4bo119b", "https://tec.openplanner.team/stops/H5qu140a"], ["https://tec.openplanner.team/stops/N206ada", "https://tec.openplanner.team/stops/N220aab"], ["https://tec.openplanner.team/stops/Cmaroya1", "https://tec.openplanner.team/stops/Cmaroya2"], ["https://tec.openplanner.team/stops/Lagsauh2", "https://tec.openplanner.team/stops/Lemmath1"], ["https://tec.openplanner.team/stops/X902aub", "https://tec.openplanner.team/stops/X902bba"], ["https://tec.openplanner.team/stops/H4bn173a", "https://tec.openplanner.team/stops/H4pi130a"], ["https://tec.openplanner.team/stops/X358ada", "https://tec.openplanner.team/stops/X358aea"], ["https://tec.openplanner.team/stops/X923aaa", "https://tec.openplanner.team/stops/X923aoa"], ["https://tec.openplanner.team/stops/Ccogera1", "https://tec.openplanner.team/stops/Crocpai2"], ["https://tec.openplanner.team/stops/X788ahb", "https://tec.openplanner.team/stops/X790agb"], ["https://tec.openplanner.team/stops/X850ala", "https://tec.openplanner.team/stops/X850amb"], ["https://tec.openplanner.team/stops/N506bkb", "https://tec.openplanner.team/stops/N506bnb"], ["https://tec.openplanner.team/stops/N244aib", "https://tec.openplanner.team/stops/N251abb"], ["https://tec.openplanner.team/stops/Bgnvgir1", "https://tec.openplanner.team/stops/Blhumpo4"], ["https://tec.openplanner.team/stops/N120alb", "https://tec.openplanner.team/stops/N244aqa"], ["https://tec.openplanner.team/stops/X801bka", "https://tec.openplanner.team/stops/X801cgb"], ["https://tec.openplanner.team/stops/N528ada", "https://tec.openplanner.team/stops/N528arc"], ["https://tec.openplanner.team/stops/H1bl100a", "https://tec.openplanner.team/stops/H1sb147a"], ["https://tec.openplanner.team/stops/X908aia", "https://tec.openplanner.team/stops/X908aib"], ["https://tec.openplanner.team/stops/X653aab", "https://tec.openplanner.team/stops/X653abb"], ["https://tec.openplanner.team/stops/X757aeb", "https://tec.openplanner.team/stops/X757afb"], ["https://tec.openplanner.team/stops/Bhlvlou2", "https://tec.openplanner.team/stops/Bhlvvil2"], ["https://tec.openplanner.team/stops/Bcercsa2", "https://tec.openplanner.team/stops/Bmoucoq2"], ["https://tec.openplanner.team/stops/Btsllib1", "https://tec.openplanner.team/stops/Btsllib2"], ["https://tec.openplanner.team/stops/X640aca", "https://tec.openplanner.team/stops/X640acb"], ["https://tec.openplanner.team/stops/Cmocime1", "https://tec.openplanner.team/stops/Cmocime2"], ["https://tec.openplanner.team/stops/Cauushm2", "https://tec.openplanner.team/stops/N543aza"], ["https://tec.openplanner.team/stops/LNOning2", "https://tec.openplanner.team/stops/LREchif1"], ["https://tec.openplanner.team/stops/N101acb", "https://tec.openplanner.team/stops/N118aoa"], ["https://tec.openplanner.team/stops/Csychap4", "https://tec.openplanner.team/stops/Csyplac2"], ["https://tec.openplanner.team/stops/Bwatgar3", "https://tec.openplanner.team/stops/Bwatifr2"], ["https://tec.openplanner.team/stops/X982bba", "https://tec.openplanner.team/stops/X982cda"], ["https://tec.openplanner.team/stops/N519aja", "https://tec.openplanner.team/stops/N519ajb"], ["https://tec.openplanner.team/stops/Cvstouv1", "https://tec.openplanner.team/stops/N530aea"], ["https://tec.openplanner.team/stops/H2ll188b", "https://tec.openplanner.team/stops/H2ll267a"], ["https://tec.openplanner.team/stops/N113aea", "https://tec.openplanner.team/stops/N113agb"], ["https://tec.openplanner.team/stops/H2hp119a", "https://tec.openplanner.team/stops/H2hp119c"], ["https://tec.openplanner.team/stops/Lthfren2", "https://tec.openplanner.team/stops/LWazoni1"], ["https://tec.openplanner.team/stops/X672aea", "https://tec.openplanner.team/stops/X672aeb"], ["https://tec.openplanner.team/stops/LSerout1", "https://tec.openplanner.team/stops/LVbstre2"], ["https://tec.openplanner.team/stops/LkAmess1", "https://tec.openplanner.team/stops/LmTreic1"], ["https://tec.openplanner.team/stops/X636ava", "https://tec.openplanner.team/stops/X636bhb"], ["https://tec.openplanner.team/stops/H1au112a", "https://tec.openplanner.team/stops/H1on129a"], ["https://tec.openplanner.team/stops/Bptrgri1", "https://tec.openplanner.team/stops/Bptrpla2"], ["https://tec.openplanner.team/stops/Bsenpbi1", "https://tec.openplanner.team/stops/Bsensab1"], ["https://tec.openplanner.team/stops/Cgzhour1", "https://tec.openplanner.team/stops/Cgzhour3"], ["https://tec.openplanner.team/stops/H1ag106a", "https://tec.openplanner.team/stops/H1ag106b"], ["https://tec.openplanner.team/stops/X641aia", "https://tec.openplanner.team/stops/X641amb"], ["https://tec.openplanner.team/stops/H4ep127a", "https://tec.openplanner.team/stops/H4ep127b"], ["https://tec.openplanner.team/stops/Llxeg--2", "https://tec.openplanner.team/stops/Lwaaube1"], ["https://tec.openplanner.team/stops/X812acb", "https://tec.openplanner.team/stops/X860aaa"], ["https://tec.openplanner.team/stops/LsVgore1", "https://tec.openplanner.team/stops/LsVsage2"], ["https://tec.openplanner.team/stops/LOUvign1", "https://tec.openplanner.team/stops/Lvichpl1"], ["https://tec.openplanner.team/stops/Bdvmcbo1", "https://tec.openplanner.team/stops/Bdvmccu2"], ["https://tec.openplanner.team/stops/N552aca", "https://tec.openplanner.team/stops/N552adb"], ["https://tec.openplanner.team/stops/Lrecomp2", "https://tec.openplanner.team/stops/Lremonu2"], ["https://tec.openplanner.team/stops/N101alb", "https://tec.openplanner.team/stops/N153aab"], ["https://tec.openplanner.team/stops/LBQmaye2", "https://tec.openplanner.team/stops/LBQplac1"], ["https://tec.openplanner.team/stops/N423afb", "https://tec.openplanner.team/stops/NH21afa"], ["https://tec.openplanner.team/stops/H1th181a", "https://tec.openplanner.team/stops/H3go100b"], ["https://tec.openplanner.team/stops/H4vz368a", "https://tec.openplanner.team/stops/H4vz370b"], ["https://tec.openplanner.team/stops/LPAeg--1", "https://tec.openplanner.team/stops/LPAmc--1"], ["https://tec.openplanner.team/stops/X822aja", "https://tec.openplanner.team/stops/X836ajb"], ["https://tec.openplanner.team/stops/Cgxbeau1", "https://tec.openplanner.team/stops/Cgxcite2"], ["https://tec.openplanner.team/stops/X662aca", "https://tec.openplanner.team/stops/X662aga"], ["https://tec.openplanner.team/stops/Bwavgar2", "https://tec.openplanner.team/stops/Bwavgar8"], ["https://tec.openplanner.team/stops/LSLfler2", "https://tec.openplanner.team/stops/LSLprov2"], ["https://tec.openplanner.team/stops/Cfcrerp2", "https://tec.openplanner.team/stops/Cvrhab22"], ["https://tec.openplanner.team/stops/H1ms293b", "https://tec.openplanner.team/stops/H1ms296d"], ["https://tec.openplanner.team/stops/LBUchpl1", "https://tec.openplanner.team/stops/LBUplac1"], ["https://tec.openplanner.team/stops/Cfachap1", "https://tec.openplanner.team/stops/Cfaplma1"], ["https://tec.openplanner.team/stops/LRuegli1", "https://tec.openplanner.team/stops/LSegott1"], ["https://tec.openplanner.team/stops/LAbchpl2", "https://tec.openplanner.team/stops/LTNmont1"], ["https://tec.openplanner.team/stops/LmS11--2", "https://tec.openplanner.team/stops/LmSkape1"], ["https://tec.openplanner.team/stops/X982bkb", "https://tec.openplanner.team/stops/X982bld"], ["https://tec.openplanner.team/stops/Cmonvci2", "https://tec.openplanner.team/stops/Cmoprov2"], ["https://tec.openplanner.team/stops/LBVcent2", "https://tec.openplanner.team/stops/LBVplan1"], ["https://tec.openplanner.team/stops/Cfvombo1", "https://tec.openplanner.team/stops/Cfvplac2"], ["https://tec.openplanner.team/stops/X774add", "https://tec.openplanner.team/stops/X774afa"], ["https://tec.openplanner.team/stops/LGmeg--1", "https://tec.openplanner.team/stops/LGmloti1"], ["https://tec.openplanner.team/stops/LARgare3", "https://tec.openplanner.team/stops/LRIcent2"], ["https://tec.openplanner.team/stops/LwYbruc4", "https://tec.openplanner.team/stops/LwYneue2"], ["https://tec.openplanner.team/stops/Llgbour2", "https://tec.openplanner.team/stops/Llgcmes1"], ["https://tec.openplanner.team/stops/LCRfize2", "https://tec.openplanner.team/stops/LTyhapp1"], ["https://tec.openplanner.team/stops/X718aka", "https://tec.openplanner.team/stops/X718akb"], ["https://tec.openplanner.team/stops/H1ml109b", "https://tec.openplanner.team/stops/H1ml110a"], ["https://tec.openplanner.team/stops/Bpiepla1", "https://tec.openplanner.team/stops/Bpiesta2"], ["https://tec.openplanner.team/stops/Lsnferr2", "https://tec.openplanner.team/stops/Lsnlhon2"], ["https://tec.openplanner.team/stops/N504acb", "https://tec.openplanner.team/stops/N511aaa"], ["https://tec.openplanner.team/stops/LGe4bra1", "https://tec.openplanner.team/stops/LGe4bra2"], ["https://tec.openplanner.team/stops/LgRha211", "https://tec.openplanner.team/stops/LgRha212"], ["https://tec.openplanner.team/stops/LmNmerl1", "https://tec.openplanner.team/stops/LmNmerl2"], ["https://tec.openplanner.team/stops/Cmosaba1", "https://tec.openplanner.team/stops/Cmoscap1"], ["https://tec.openplanner.team/stops/LOVeg--1", "https://tec.openplanner.team/stops/LWLtamb2"], ["https://tec.openplanner.team/stops/Bbuzcom1", "https://tec.openplanner.team/stops/Bbuzeta2"], ["https://tec.openplanner.team/stops/X615ada", "https://tec.openplanner.team/stops/X615baa"], ["https://tec.openplanner.team/stops/Lsn184-2", "https://tec.openplanner.team/stops/Lsnagne1"], ["https://tec.openplanner.team/stops/X824aea", "https://tec.openplanner.team/stops/X824aeb"], ["https://tec.openplanner.team/stops/Llgbida1", "https://tec.openplanner.team/stops/Llghlau2"], ["https://tec.openplanner.team/stops/H2lc169a", "https://tec.openplanner.team/stops/H2lc169b"], ["https://tec.openplanner.team/stops/Cfobriq1", "https://tec.openplanner.team/stops/Cfoermi1"], ["https://tec.openplanner.team/stops/N509bfa", "https://tec.openplanner.team/stops/N509bfb"], ["https://tec.openplanner.team/stops/X734anc", "https://tec.openplanner.team/stops/X734apa"], ["https://tec.openplanner.team/stops/H4ar103b", "https://tec.openplanner.team/stops/H4lg103b"], ["https://tec.openplanner.team/stops/H4mo175a", "https://tec.openplanner.team/stops/H4mo175b"], ["https://tec.openplanner.team/stops/H4jm117b", "https://tec.openplanner.team/stops/H4we139b"], ["https://tec.openplanner.team/stops/Ccocoup2", "https://tec.openplanner.team/stops/Ccostan2"], ["https://tec.openplanner.team/stops/LBPmili2", "https://tec.openplanner.team/stops/LBPunic1"], ["https://tec.openplanner.team/stops/LLrfrai1", "https://tec.openplanner.team/stops/LLrmc--3"], ["https://tec.openplanner.team/stops/Bitrcan2", "https://tec.openplanner.team/stops/Bvirgar2"], ["https://tec.openplanner.team/stops/Bmaregl1", "https://tec.openplanner.team/stops/Bmarmru2"], ["https://tec.openplanner.team/stops/Llgcbat2", "https://tec.openplanner.team/stops/Llgtill1"], ["https://tec.openplanner.team/stops/H1ms253b", "https://tec.openplanner.team/stops/H1ms910a"], ["https://tec.openplanner.team/stops/N501agb", "https://tec.openplanner.team/stops/N501cla"], ["https://tec.openplanner.team/stops/X782aaa", "https://tec.openplanner.team/stops/X782apa"], ["https://tec.openplanner.team/stops/Bbsifmo2", "https://tec.openplanner.team/stops/Bwaunop1"], ["https://tec.openplanner.team/stops/N212aha", "https://tec.openplanner.team/stops/N212atb"], ["https://tec.openplanner.team/stops/H5rx101b", "https://tec.openplanner.team/stops/H5rx135b"], ["https://tec.openplanner.team/stops/LBLcalv1", "https://tec.openplanner.team/stops/LBLcalv2"], ["https://tec.openplanner.team/stops/Bbryvil1", "https://tec.openplanner.team/stops/Bbryvil2"], ["https://tec.openplanner.team/stops/N874aab", "https://tec.openplanner.team/stops/N874agb"], ["https://tec.openplanner.team/stops/Bwspmon1", "https://tec.openplanner.team/stops/Bwspmon2"], ["https://tec.openplanner.team/stops/H4ef111a", "https://tec.openplanner.team/stops/H4po127b"], ["https://tec.openplanner.team/stops/H4hx121a", "https://tec.openplanner.team/stops/H4mo160a"], ["https://tec.openplanner.team/stops/N232ara", "https://tec.openplanner.team/stops/N232bra"], ["https://tec.openplanner.team/stops/LON21--2", "https://tec.openplanner.team/stops/LONcroi2"], ["https://tec.openplanner.team/stops/X611aaa", "https://tec.openplanner.team/stops/X611aba"], ["https://tec.openplanner.team/stops/Bbcocou1", "https://tec.openplanner.team/stops/Bbcogpl1"], ["https://tec.openplanner.team/stops/LESamos2", "https://tec.openplanner.team/stops/LESecco1"], ["https://tec.openplanner.team/stops/LFEague1", "https://tec.openplanner.team/stops/LFtcarr2"], ["https://tec.openplanner.team/stops/H4we135a", "https://tec.openplanner.team/stops/H4we138b"], ["https://tec.openplanner.team/stops/X750ama", "https://tec.openplanner.team/stops/X750bna"], ["https://tec.openplanner.team/stops/Lghalli2", "https://tec.openplanner.team/stops/Lghpero1"], ["https://tec.openplanner.team/stops/X801bdc", "https://tec.openplanner.team/stops/X801bea"], ["https://tec.openplanner.team/stops/X783aca", "https://tec.openplanner.team/stops/X783acc"], ["https://tec.openplanner.team/stops/H4bs110a", "https://tec.openplanner.team/stops/H4bs113a"], ["https://tec.openplanner.team/stops/Boppcar1", "https://tec.openplanner.team/stops/Boppcen4"], ["https://tec.openplanner.team/stops/X649adb", "https://tec.openplanner.team/stops/X649adc"], ["https://tec.openplanner.team/stops/X812aja", "https://tec.openplanner.team/stops/X812ajb"], ["https://tec.openplanner.team/stops/H4hu121b", "https://tec.openplanner.team/stops/H4og214b"], ["https://tec.openplanner.team/stops/Buccvch1", "https://tec.openplanner.team/stops/Buccvch2"], ["https://tec.openplanner.team/stops/Cmlm2411", "https://tec.openplanner.team/stops/Cmlm2412"], ["https://tec.openplanner.team/stops/Cprlpre1", "https://tec.openplanner.team/stops/NC11arb"], ["https://tec.openplanner.team/stops/X713aab", "https://tec.openplanner.team/stops/X713aca"], ["https://tec.openplanner.team/stops/Canpeup2", "https://tec.openplanner.team/stops/Canresi1"], ["https://tec.openplanner.team/stops/H2mo125a", "https://tec.openplanner.team/stops/H2mo130c"], ["https://tec.openplanner.team/stops/Bllnfla2", "https://tec.openplanner.team/stops/Bwavcui1"], ["https://tec.openplanner.team/stops/N502ada", "https://tec.openplanner.team/stops/N502adb"], ["https://tec.openplanner.team/stops/Cdamest1", "https://tec.openplanner.team/stops/Cdamest2"], ["https://tec.openplanner.team/stops/Bwatcro2", "https://tec.openplanner.team/stops/Bwatifr1"], ["https://tec.openplanner.team/stops/Bnivgam1", "https://tec.openplanner.team/stops/Bnivgam2"], ["https://tec.openplanner.team/stops/N501ida", "https://tec.openplanner.team/stops/N501idb"], ["https://tec.openplanner.team/stops/LARauto4", "https://tec.openplanner.team/stops/LHAmonu1"], ["https://tec.openplanner.team/stops/LsVeite1", "https://tec.openplanner.team/stops/LwLkirc1"], ["https://tec.openplanner.team/stops/LTechpl1", "https://tec.openplanner.team/stops/LTechpl2"], ["https://tec.openplanner.team/stops/H1gn147b", "https://tec.openplanner.team/stops/H1gn150b"], ["https://tec.openplanner.team/stops/H1au100b", "https://tec.openplanner.team/stops/H1on128c"], ["https://tec.openplanner.team/stops/Lbrdepo1", "https://tec.openplanner.team/stops/Lbrfagn1"], ["https://tec.openplanner.team/stops/H4an105b", "https://tec.openplanner.team/stops/H4an111b"], ["https://tec.openplanner.team/stops/X985ada", "https://tec.openplanner.team/stops/X985afb"], ["https://tec.openplanner.team/stops/LWapl--1", "https://tec.openplanner.team/stops/LWapl--4"], ["https://tec.openplanner.team/stops/Crccarr2", "https://tec.openplanner.team/stops/Crclorc2"], ["https://tec.openplanner.team/stops/LHNgare2", "https://tec.openplanner.team/stops/LHNgend1"], ["https://tec.openplanner.team/stops/Bllnfla1", "https://tec.openplanner.team/stops/Bllnfla3"], ["https://tec.openplanner.team/stops/X993adb", "https://tec.openplanner.team/stops/X993aja"], ["https://tec.openplanner.team/stops/Bhen5ma2", "https://tec.openplanner.team/stops/Bhenasc2"], ["https://tec.openplanner.team/stops/Lenclar1", "https://tec.openplanner.team/stops/Llmhalt2"], ["https://tec.openplanner.team/stops/H4ep127a", "https://tec.openplanner.team/stops/H4ft134b"], ["https://tec.openplanner.team/stops/Blineco1", "https://tec.openplanner.team/stops/Blinhue2"], ["https://tec.openplanner.team/stops/N513alb", "https://tec.openplanner.team/stops/N513ara"], ["https://tec.openplanner.team/stops/X721agb", "https://tec.openplanner.team/stops/X721ajb"], ["https://tec.openplanner.team/stops/Lfllapi4", "https://tec.openplanner.team/stops/Lfllapi5"], ["https://tec.openplanner.team/stops/H4bv145a", "https://tec.openplanner.team/stops/H4os223a"], ["https://tec.openplanner.team/stops/X760aca", "https://tec.openplanner.team/stops/X760acb"], ["https://tec.openplanner.team/stops/LSygerm2", "https://tec.openplanner.team/stops/LWZponh1"], ["https://tec.openplanner.team/stops/H4mv191a", "https://tec.openplanner.team/stops/H4mv191b"], ["https://tec.openplanner.team/stops/N512avb", "https://tec.openplanner.team/stops/N512awb"], ["https://tec.openplanner.team/stops/Csoplac1", "https://tec.openplanner.team/stops/Csoplac2"], ["https://tec.openplanner.team/stops/Cbbcent1", "https://tec.openplanner.team/stops/Cbblacb2"], ["https://tec.openplanner.team/stops/H1bo105a", "https://tec.openplanner.team/stops/H1bo106a"], ["https://tec.openplanner.team/stops/LCLacbi1", "https://tec.openplanner.team/stops/LCLscie2"], ["https://tec.openplanner.team/stops/LSNbouh4", "https://tec.openplanner.team/stops/LSNchen3"], ["https://tec.openplanner.team/stops/Cmehels1", "https://tec.openplanner.team/stops/Cmesncv3"], ["https://tec.openplanner.team/stops/Bcrnpla4", "https://tec.openplanner.team/stops/Bcrnvic1"], ["https://tec.openplanner.team/stops/N558aea", "https://tec.openplanner.team/stops/N558ajb"], ["https://tec.openplanner.team/stops/Lanegal2", "https://tec.openplanner.team/stops/Lanpisc1"], ["https://tec.openplanner.team/stops/LeUkabe1", "https://tec.openplanner.team/stops/LeUmalm2"], ["https://tec.openplanner.team/stops/X638aka", "https://tec.openplanner.team/stops/X652aeb"], ["https://tec.openplanner.team/stops/H1ba105a", "https://tec.openplanner.team/stops/H1vt192a"], ["https://tec.openplanner.team/stops/N235aea", "https://tec.openplanner.team/stops/N235aeb"], ["https://tec.openplanner.team/stops/X670aaa", "https://tec.openplanner.team/stops/X670aab"], ["https://tec.openplanner.team/stops/H1ht135b", "https://tec.openplanner.team/stops/H1ht136a"], ["https://tec.openplanner.team/stops/N501hxb", "https://tec.openplanner.team/stops/N501hxy"], ["https://tec.openplanner.team/stops/H1bx105a", "https://tec.openplanner.team/stops/H1qv115a"], ["https://tec.openplanner.team/stops/LSZmonu4", "https://tec.openplanner.team/stops/LSZmonu5"], ["https://tec.openplanner.team/stops/Brsgece2", "https://tec.openplanner.team/stops/Brsgfso2"], ["https://tec.openplanner.team/stops/N543ajb", "https://tec.openplanner.team/stops/N543aoa"], ["https://tec.openplanner.team/stops/LSIcour2", "https://tec.openplanner.team/stops/LSIvieu2"], ["https://tec.openplanner.team/stops/H4ty308a", "https://tec.openplanner.team/stops/H4ty338b"], ["https://tec.openplanner.team/stops/H4mv187b", "https://tec.openplanner.team/stops/H4mv188a"], ["https://tec.openplanner.team/stops/X995aca", "https://tec.openplanner.team/stops/X995acb"], ["https://tec.openplanner.team/stops/H1fl140a", "https://tec.openplanner.team/stops/H1fl140b"], ["https://tec.openplanner.team/stops/H1mv240b", "https://tec.openplanner.team/stops/H1mv242a"], ["https://tec.openplanner.team/stops/LWZponb1", "https://tec.openplanner.team/stops/LWZponb2"], ["https://tec.openplanner.team/stops/Lsebelv2", "https://tec.openplanner.team/stops/Lsepaqu2"], ["https://tec.openplanner.team/stops/LFmbure2", "https://tec.openplanner.team/stops/LFmcarr1"], ["https://tec.openplanner.team/stops/H4ka182b", "https://tec.openplanner.team/stops/H4ka183a"], ["https://tec.openplanner.team/stops/N139aea", "https://tec.openplanner.team/stops/N140aaa"], ["https://tec.openplanner.team/stops/H4fr141a", "https://tec.openplanner.team/stops/H4ma401b"], ["https://tec.openplanner.team/stops/Bgnvdep1", "https://tec.openplanner.team/stops/Bgnvtil2"], ["https://tec.openplanner.team/stops/Cgzhour3", "https://tec.openplanner.team/stops/Cthrpoi1"], ["https://tec.openplanner.team/stops/LaM266-1", "https://tec.openplanner.team/stops/LaMbull2"], ["https://tec.openplanner.team/stops/X633aea", "https://tec.openplanner.team/stops/X633afb"], ["https://tec.openplanner.team/stops/X801avb", "https://tec.openplanner.team/stops/X801awb"], ["https://tec.openplanner.team/stops/Btstbbu1", "https://tec.openplanner.team/stops/N541ada"], ["https://tec.openplanner.team/stops/X601boa", "https://tec.openplanner.team/stops/X601bub"], ["https://tec.openplanner.team/stops/H4co142a", "https://tec.openplanner.team/stops/H4co144b"], ["https://tec.openplanner.team/stops/LnIkirc2", "https://tec.openplanner.team/stops/LnIschw1"], ["https://tec.openplanner.team/stops/LGLc12-3", "https://tec.openplanner.team/stops/LGLeg--2"], ["https://tec.openplanner.team/stops/Bblmcel1", "https://tec.openplanner.team/stops/Bcrbgro1"], ["https://tec.openplanner.team/stops/LCFmoul1", "https://tec.openplanner.team/stops/LHaodei2"], ["https://tec.openplanner.team/stops/X370aca", "https://tec.openplanner.team/stops/X370acb"], ["https://tec.openplanner.team/stops/N115aaa", "https://tec.openplanner.team/stops/N117baa"], ["https://tec.openplanner.team/stops/H4ce100a", "https://tec.openplanner.team/stops/H4mx119b"], ["https://tec.openplanner.team/stops/X901bbb", "https://tec.openplanner.team/stops/X922aba"], ["https://tec.openplanner.team/stops/LHTcerc1", "https://tec.openplanner.team/stops/LHTmonu1"], ["https://tec.openplanner.team/stops/LsHkirc1", "https://tec.openplanner.team/stops/LsHkreu3"], ["https://tec.openplanner.team/stops/Lghfore2", "https://tec.openplanner.team/stops/Lghreyn1"], ["https://tec.openplanner.team/stops/N251aba", "https://tec.openplanner.team/stops/N251abb"], ["https://tec.openplanner.team/stops/Bronn391", "https://tec.openplanner.team/stops/Bronn392"], ["https://tec.openplanner.team/stops/X621aba", "https://tec.openplanner.team/stops/X621abb"], ["https://tec.openplanner.team/stops/LmIvale4", "https://tec.openplanner.team/stops/LvAschr2"], ["https://tec.openplanner.team/stops/LVlleme4", "https://tec.openplanner.team/stops/LVlroua4"], ["https://tec.openplanner.team/stops/Blthbss1", "https://tec.openplanner.team/stops/Brxmhai1"], ["https://tec.openplanner.team/stops/H4lz122a", "https://tec.openplanner.team/stops/H4lz157a"], ["https://tec.openplanner.team/stops/H4vz368b", "https://tec.openplanner.team/stops/H4vz370b"], ["https://tec.openplanner.team/stops/LTaeg--2", "https://tec.openplanner.team/stops/LTatult1"], ["https://tec.openplanner.team/stops/X754ada", "https://tec.openplanner.team/stops/X754adb"], ["https://tec.openplanner.team/stops/X923aha", "https://tec.openplanner.team/stops/X923aia"], ["https://tec.openplanner.team/stops/H4ef163a", "https://tec.openplanner.team/stops/H4ef163b"], ["https://tec.openplanner.team/stops/N151aab", "https://tec.openplanner.team/stops/N151aib"], ["https://tec.openplanner.team/stops/Bcrncce1", "https://tec.openplanner.team/stops/Bcrncce2"], ["https://tec.openplanner.team/stops/LCxcouv2", "https://tec.openplanner.team/stops/LCxfawe1"], ["https://tec.openplanner.team/stops/N515aoa", "https://tec.openplanner.team/stops/NR27aaa"], ["https://tec.openplanner.team/stops/X659aga", "https://tec.openplanner.team/stops/X659ana"], ["https://tec.openplanner.team/stops/Canplch4", "https://tec.openplanner.team/stops/Clbhour1"], ["https://tec.openplanner.team/stops/Bixlaca1", "https://tec.openplanner.team/stops/Buccdef2"], ["https://tec.openplanner.team/stops/H4fr388a", "https://tec.openplanner.team/stops/H4fr393a"], ["https://tec.openplanner.team/stops/Caih1632", "https://tec.openplanner.team/stops/N543cbb"], ["https://tec.openplanner.team/stops/N134abb", "https://tec.openplanner.team/stops/N134aea"], ["https://tec.openplanner.team/stops/N502aab", "https://tec.openplanner.team/stops/N502aca"], ["https://tec.openplanner.team/stops/Cthalli1", "https://tec.openplanner.team/stops/Cthrlef2"], ["https://tec.openplanner.team/stops/X721abb", "https://tec.openplanner.team/stops/X721aia"], ["https://tec.openplanner.team/stops/N509bga", "https://tec.openplanner.team/stops/N511afb"], ["https://tec.openplanner.team/stops/N135aaa", "https://tec.openplanner.team/stops/N135aab"], ["https://tec.openplanner.team/stops/X925aib", "https://tec.openplanner.team/stops/X926aaa"], ["https://tec.openplanner.team/stops/H4bf107a", "https://tec.openplanner.team/stops/H4bf109b"], ["https://tec.openplanner.team/stops/X633aab", "https://tec.openplanner.team/stops/X633abb"], ["https://tec.openplanner.team/stops/H3go103a", "https://tec.openplanner.team/stops/H3lr116a"], ["https://tec.openplanner.team/stops/N505agb", "https://tec.openplanner.team/stops/N536acb"], ["https://tec.openplanner.team/stops/LHUgole2", "https://tec.openplanner.team/stops/LHUsauv3"], ["https://tec.openplanner.team/stops/LLSbajo2", "https://tec.openplanner.team/stops/LLStrid2"], ["https://tec.openplanner.team/stops/LVAgemm2", "https://tec.openplanner.team/stops/LVAwolf1"], ["https://tec.openplanner.team/stops/N170aea", "https://tec.openplanner.team/stops/N571aaa"], ["https://tec.openplanner.team/stops/H1bd103a", "https://tec.openplanner.team/stops/H1hq129a"], ["https://tec.openplanner.team/stops/Balswsa1", "https://tec.openplanner.team/stops/Balswsa2"], ["https://tec.openplanner.team/stops/Cbmgrav1", "https://tec.openplanner.team/stops/Cbmgrav2"], ["https://tec.openplanner.team/stops/H4ir161a", "https://tec.openplanner.team/stops/H4vd230a"], ["https://tec.openplanner.team/stops/LHTbaud1", "https://tec.openplanner.team/stops/LHTdelh1"], ["https://tec.openplanner.team/stops/N309acb", "https://tec.openplanner.team/stops/N350aea"], ["https://tec.openplanner.team/stops/N506aka", "https://tec.openplanner.team/stops/N558aab"], ["https://tec.openplanner.team/stops/N511aja", "https://tec.openplanner.team/stops/N511ala"], ["https://tec.openplanner.team/stops/X992ajb", "https://tec.openplanner.team/stops/X992akb"], ["https://tec.openplanner.team/stops/H4we135b", "https://tec.openplanner.team/stops/H4we137c"], ["https://tec.openplanner.team/stops/LELhard2", "https://tec.openplanner.team/stops/LHCquat4"], ["https://tec.openplanner.team/stops/Bbosdra2", "https://tec.openplanner.team/stops/Btiegoo2"], ["https://tec.openplanner.team/stops/LAYchal1", "https://tec.openplanner.team/stops/LAYecol2"], ["https://tec.openplanner.team/stops/LAYcorn2", "https://tec.openplanner.team/stops/LAYfoot1"], ["https://tec.openplanner.team/stops/X911aja", "https://tec.openplanner.team/stops/X911anb"], ["https://tec.openplanner.team/stops/N261aaa", "https://tec.openplanner.team/stops/N261aab"], ["https://tec.openplanner.team/stops/X653adb", "https://tec.openplanner.team/stops/X653adc"], ["https://tec.openplanner.team/stops/LBKmare1", "https://tec.openplanner.team/stops/LBKmoes2"], ["https://tec.openplanner.team/stops/H4te253b", "https://tec.openplanner.team/stops/H4te261a"], ["https://tec.openplanner.team/stops/N501dwa", "https://tec.openplanner.team/stops/N501kha"], ["https://tec.openplanner.team/stops/N527ada", "https://tec.openplanner.team/stops/N527adb"], ["https://tec.openplanner.team/stops/H5bl115a", "https://tec.openplanner.team/stops/H5bl115b"], ["https://tec.openplanner.team/stops/Clbbonn1", "https://tec.openplanner.team/stops/Clbbonn2"], ["https://tec.openplanner.team/stops/H5is170b", "https://tec.openplanner.team/stops/H5is171b"], ["https://tec.openplanner.team/stops/LJUfort1", "https://tec.openplanner.team/stops/Llaacca1"], ["https://tec.openplanner.team/stops/N151aba", "https://tec.openplanner.team/stops/N151akb"], ["https://tec.openplanner.team/stops/Bhalh312", "https://tec.openplanner.team/stops/Bhalrat2"], ["https://tec.openplanner.team/stops/Lmnhorl3", "https://tec.openplanner.team/stops/Lsmstad2"], ["https://tec.openplanner.team/stops/H4gu108c", "https://tec.openplanner.team/stops/H4we138a"], ["https://tec.openplanner.team/stops/LeYroth2", "https://tec.openplanner.team/stops/LhSwind2"], ["https://tec.openplanner.team/stops/X765abb", "https://tec.openplanner.team/stops/X765afa"], ["https://tec.openplanner.team/stops/H1bu136a", "https://tec.openplanner.team/stops/H1vb147a"], ["https://tec.openplanner.team/stops/N501caa", "https://tec.openplanner.team/stops/N501cab"], ["https://tec.openplanner.team/stops/H1ag104b", "https://tec.openplanner.team/stops/H1ag105b"], ["https://tec.openplanner.team/stops/X615agb", "https://tec.openplanner.team/stops/X615aib"], ["https://tec.openplanner.team/stops/N528aua", "https://tec.openplanner.team/stops/N528ava"], ["https://tec.openplanner.team/stops/N542aha", "https://tec.openplanner.team/stops/N542aia"], ["https://tec.openplanner.team/stops/Cvpcour1", "https://tec.openplanner.team/stops/Cvpplan1"], ["https://tec.openplanner.team/stops/H4og215b", "https://tec.openplanner.team/stops/H4to136b"], ["https://tec.openplanner.team/stops/Bwatcpl2", "https://tec.openplanner.team/stops/Bwatrsg1"], ["https://tec.openplanner.team/stops/N201ara", "https://tec.openplanner.team/stops/N201arb"], ["https://tec.openplanner.team/stops/H1ha188a", "https://tec.openplanner.team/stops/H1ha196a"], ["https://tec.openplanner.team/stops/Bhtipir2", "https://tec.openplanner.team/stops/Bhtipir3"], ["https://tec.openplanner.team/stops/LSNgerm1", "https://tec.openplanner.team/stops/LWevalf2"], ["https://tec.openplanner.team/stops/X396aba", "https://tec.openplanner.team/stops/X396acb"], ["https://tec.openplanner.team/stops/N511aha", "https://tec.openplanner.team/stops/N511ahb"], ["https://tec.openplanner.team/stops/LTgchar7", "https://tec.openplanner.team/stops/LTgcime2"], ["https://tec.openplanner.team/stops/X636aba", "https://tec.openplanner.team/stops/X670ala"], ["https://tec.openplanner.team/stops/N501fsa", "https://tec.openplanner.team/stops/N501fub"], ["https://tec.openplanner.team/stops/LDmdomm2", "https://tec.openplanner.team/stops/LDmeg--2"], ["https://tec.openplanner.team/stops/Llgtill1", "https://tec.openplanner.team/stops/Llgvalu1"], ["https://tec.openplanner.team/stops/Bboseco1", "https://tec.openplanner.team/stops/Bbosgar1"], ["https://tec.openplanner.team/stops/LFPchat2", "https://tec.openplanner.team/stops/LFProt-1"], ["https://tec.openplanner.team/stops/Llgegwa1", "https://tec.openplanner.team/stops/Llgplat2"], ["https://tec.openplanner.team/stops/Cgzchab3", "https://tec.openplanner.team/stops/Cgzfarc1"], ["https://tec.openplanner.team/stops/H4ef110a", "https://tec.openplanner.team/stops/H4ef113c"], ["https://tec.openplanner.team/stops/N576aka", "https://tec.openplanner.team/stops/N576akb"], ["https://tec.openplanner.team/stops/Bneeblo2", "https://tec.openplanner.team/stops/Bneesjo1"], ["https://tec.openplanner.team/stops/N506alb", "https://tec.openplanner.team/stops/N506boa"], ["https://tec.openplanner.team/stops/LCTfair1", "https://tec.openplanner.team/stops/LCTfair2"], ["https://tec.openplanner.team/stops/Bsdavpe1", "https://tec.openplanner.team/stops/Csdnive2"], ["https://tec.openplanner.team/stops/H2ec108b", "https://tec.openplanner.team/stops/H2ec110b"], ["https://tec.openplanner.team/stops/LHhvivi2", "https://tec.openplanner.team/stops/NL30ajb"], ["https://tec.openplanner.team/stops/H1gi120d", "https://tec.openplanner.team/stops/H1gi122a"], ["https://tec.openplanner.team/stops/N117bda", "https://tec.openplanner.team/stops/N117bdb"], ["https://tec.openplanner.team/stops/NH01aqb", "https://tec.openplanner.team/stops/NH01ara"], ["https://tec.openplanner.team/stops/N507aqb", "https://tec.openplanner.team/stops/N516aqa"], ["https://tec.openplanner.team/stops/H5fl100b", "https://tec.openplanner.team/stops/H5wo129a"], ["https://tec.openplanner.team/stops/Bsgimor1", "https://tec.openplanner.team/stops/Bsgipmo1"], ["https://tec.openplanner.team/stops/X740afa", "https://tec.openplanner.team/stops/X759afa"], ["https://tec.openplanner.team/stops/Cciqueu2", "https://tec.openplanner.team/stops/Ccisart1"], ["https://tec.openplanner.team/stops/Bllnpaf2", "https://tec.openplanner.team/stops/Bllnpaf4"], ["https://tec.openplanner.team/stops/X731akb", "https://tec.openplanner.team/stops/X731amb"], ["https://tec.openplanner.team/stops/X614aca", "https://tec.openplanner.team/stops/X614ada"], ["https://tec.openplanner.team/stops/N166aaa", "https://tec.openplanner.team/stops/N166ada"], ["https://tec.openplanner.team/stops/X623aca", "https://tec.openplanner.team/stops/X623acb"], ["https://tec.openplanner.team/stops/N123abb", "https://tec.openplanner.team/stops/N123aca"], ["https://tec.openplanner.team/stops/H5at111a", "https://tec.openplanner.team/stops/H5at111b"], ["https://tec.openplanner.team/stops/Bvircsj2", "https://tec.openplanner.team/stops/Bvirmbr1"], ["https://tec.openplanner.team/stops/H2ec101a", "https://tec.openplanner.team/stops/H2ec101b"], ["https://tec.openplanner.team/stops/X947abb", "https://tec.openplanner.team/stops/X948aia"], ["https://tec.openplanner.team/stops/Lstbota3", "https://tec.openplanner.team/stops/LTIdamr1"], ["https://tec.openplanner.team/stops/LSZclem1", "https://tec.openplanner.team/stops/LTgsous1"], ["https://tec.openplanner.team/stops/Bblagar1", "https://tec.openplanner.team/stops/Bblagard"], ["https://tec.openplanner.team/stops/LVEdTEC1", "https://tec.openplanner.team/stops/LVEjard1"], ["https://tec.openplanner.team/stops/Cvlcalv1", "https://tec.openplanner.team/stops/Cvlcalv2"], ["https://tec.openplanner.team/stops/X756acb", "https://tec.openplanner.team/stops/X756adb"], ["https://tec.openplanner.team/stops/LLmpt--1", "https://tec.openplanner.team/stops/LLmvand1"], ["https://tec.openplanner.team/stops/LHAheml1", "https://tec.openplanner.team/stops/LHAlacr2"], ["https://tec.openplanner.team/stops/N153aba", "https://tec.openplanner.team/stops/N153ada"], ["https://tec.openplanner.team/stops/X542aab", "https://tec.openplanner.team/stops/X542abb"], ["https://tec.openplanner.team/stops/H4pl116a", "https://tec.openplanner.team/stops/H4pl116b"], ["https://tec.openplanner.team/stops/X641afb", "https://tec.openplanner.team/stops/X641aqa"], ["https://tec.openplanner.team/stops/N212afa", "https://tec.openplanner.team/stops/N212afb"], ["https://tec.openplanner.team/stops/Btubeur1", "https://tec.openplanner.team/stops/Btubnco2"], ["https://tec.openplanner.team/stops/Cmmbmad1", "https://tec.openplanner.team/stops/Cmmpjou4"], ["https://tec.openplanner.team/stops/N134afa", "https://tec.openplanner.team/stops/N153abb"], ["https://tec.openplanner.team/stops/Lflheid2", "https://tec.openplanner.team/stops/Lqbchat1"], ["https://tec.openplanner.team/stops/N501kmy", "https://tec.openplanner.team/stops/N501nea"], ["https://tec.openplanner.team/stops/LBzec--1", "https://tec.openplanner.team/stops/LCewaut1"], ["https://tec.openplanner.team/stops/X902afc", "https://tec.openplanner.team/stops/X999aia"], ["https://tec.openplanner.team/stops/H2go116a", "https://tec.openplanner.team/stops/H2go116b"], ["https://tec.openplanner.team/stops/Lmldama1", "https://tec.openplanner.team/stops/Lmlec--4"], ["https://tec.openplanner.team/stops/LAWbrou2", "https://tec.openplanner.team/stops/LBIpont1"], ["https://tec.openplanner.team/stops/LESflag1", "https://tec.openplanner.team/stops/LLNcime1"], ["https://tec.openplanner.team/stops/LBIcarg1", "https://tec.openplanner.team/stops/Lmlpech2"], ["https://tec.openplanner.team/stops/H2ca105a", "https://tec.openplanner.team/stops/H2ca116a"], ["https://tec.openplanner.team/stops/LLtrout2", "https://tec.openplanner.team/stops/NL57aha"], ["https://tec.openplanner.team/stops/Crcpla2", "https://tec.openplanner.team/stops/Crcplac4"], ["https://tec.openplanner.team/stops/N231aga", "https://tec.openplanner.team/stops/N231aha"], ["https://tec.openplanner.team/stops/H4pq119b", "https://tec.openplanner.team/stops/H4pq120b"], ["https://tec.openplanner.team/stops/H1po135a", "https://tec.openplanner.team/stops/H1po135d"], ["https://tec.openplanner.team/stops/LCscarr1", "https://tec.openplanner.team/stops/LCscarr2"], ["https://tec.openplanner.team/stops/Crswaut1", "https://tec.openplanner.team/stops/N543cnb"], ["https://tec.openplanner.team/stops/Bmarlor2", "https://tec.openplanner.team/stops/Bmarvil1"], ["https://tec.openplanner.team/stops/LVBeg--2", "https://tec.openplanner.team/stops/LVBvaux1"], ["https://tec.openplanner.team/stops/Cselibe2", "https://tec.openplanner.team/stops/Csemacq1"], ["https://tec.openplanner.team/stops/LeUmalm1", "https://tec.openplanner.team/stops/LeUoe541"], ["https://tec.openplanner.team/stops/N101aab", "https://tec.openplanner.team/stops/N101aia"], ["https://tec.openplanner.team/stops/N509aub", "https://tec.openplanner.team/stops/N509ava"], ["https://tec.openplanner.team/stops/H1by102a", "https://tec.openplanner.team/stops/H1by106b"], ["https://tec.openplanner.team/stops/N232asa", "https://tec.openplanner.team/stops/N270aga"], ["https://tec.openplanner.team/stops/Cmmjami1", "https://tec.openplanner.team/stops/Cmmjami3"], ["https://tec.openplanner.team/stops/X818apb", "https://tec.openplanner.team/stops/X818aqb"], ["https://tec.openplanner.team/stops/X742aga", "https://tec.openplanner.team/stops/X743aaa"], ["https://tec.openplanner.team/stops/X921aha", "https://tec.openplanner.team/stops/X921ahb"], ["https://tec.openplanner.team/stops/H1ci106a", "https://tec.openplanner.team/stops/H1fr151b"], ["https://tec.openplanner.team/stops/LWAathe2", "https://tec.openplanner.team/stops/LWAfabr1"], ["https://tec.openplanner.team/stops/Cvssncv1", "https://tec.openplanner.team/stops/Cvssncv2"], ["https://tec.openplanner.team/stops/Cgocnor2", "https://tec.openplanner.team/stops/Cgoetun5"], ["https://tec.openplanner.team/stops/Cptchea1", "https://tec.openplanner.team/stops/H2tz117a"], ["https://tec.openplanner.team/stops/X602ana", "https://tec.openplanner.team/stops/X602apa"], ["https://tec.openplanner.team/stops/LOLbout1", "https://tec.openplanner.team/stops/LOLcroi1"], ["https://tec.openplanner.team/stops/N531afh", "https://tec.openplanner.team/stops/N534bma"], ["https://tec.openplanner.team/stops/LFyanto2", "https://tec.openplanner.team/stops/LFyWarc1"], ["https://tec.openplanner.team/stops/H1ml110a", "https://tec.openplanner.team/stops/H1ml110b"], ["https://tec.openplanner.team/stops/H4th140b", "https://tec.openplanner.team/stops/H4th142b"], ["https://tec.openplanner.team/stops/LBhsign1", "https://tec.openplanner.team/stops/LMRmont1"], ["https://tec.openplanner.team/stops/Lfhcoop2", "https://tec.openplanner.team/stops/Lfhpast1"], ["https://tec.openplanner.team/stops/H1qu101b", "https://tec.openplanner.team/stops/H1qu111a"], ["https://tec.openplanner.team/stops/Canplch3", "https://tec.openplanner.team/stops/Canplch4"], ["https://tec.openplanner.team/stops/X825abb", "https://tec.openplanner.team/stops/X825agb"], ["https://tec.openplanner.team/stops/Cmtchas1", "https://tec.openplanner.team/stops/Cmtduch1"], ["https://tec.openplanner.team/stops/LTaabba2", "https://tec.openplanner.team/stops/LTaeg--2"], ["https://tec.openplanner.team/stops/Lhrdeme2", "https://tec.openplanner.team/stops/Lhrpwan2"], ["https://tec.openplanner.team/stops/N106akb", "https://tec.openplanner.team/stops/N137aja"], ["https://tec.openplanner.team/stops/H4av105a", "https://tec.openplanner.team/stops/H4av107b"], ["https://tec.openplanner.team/stops/X782aga", "https://tec.openplanner.team/stops/X782ajb"], ["https://tec.openplanner.team/stops/LWOpier1", "https://tec.openplanner.team/stops/LWOruis1"], ["https://tec.openplanner.team/stops/Bmlnpab2", "https://tec.openplanner.team/stops/Bmlnsms2"], ["https://tec.openplanner.team/stops/H4te250a", "https://tec.openplanner.team/stops/H4te256b"], ["https://tec.openplanner.team/stops/LCReg--1", "https://tec.openplanner.team/stops/LCRrape1"], ["https://tec.openplanner.team/stops/H4pe124b", "https://tec.openplanner.team/stops/H4pe125b"], ["https://tec.openplanner.team/stops/N501ckb", "https://tec.openplanner.team/stops/N501joa"], ["https://tec.openplanner.team/stops/X639ara", "https://tec.openplanner.team/stops/X639asb"], ["https://tec.openplanner.team/stops/LCpvill2", "https://tec.openplanner.team/stops/LWM759-1"], ["https://tec.openplanner.team/stops/N232bvb", "https://tec.openplanner.team/stops/N260aea"], ["https://tec.openplanner.team/stops/H3lr113b", "https://tec.openplanner.team/stops/H3lr132a"], ["https://tec.openplanner.team/stops/Llgnaes2", "https://tec.openplanner.team/stops/Llgnani1"], ["https://tec.openplanner.team/stops/N301aca", "https://tec.openplanner.team/stops/N301ada"], ["https://tec.openplanner.team/stops/LREgare1", "https://tec.openplanner.team/stops/LREgrot1"], ["https://tec.openplanner.team/stops/Llgatla2", "https://tec.openplanner.team/stops/Llginte1"], ["https://tec.openplanner.team/stops/X664amb", "https://tec.openplanner.team/stops/X664ana"], ["https://tec.openplanner.team/stops/Cgyaudu2", "https://tec.openplanner.team/stops/Cgyhstj2"], ["https://tec.openplanner.team/stops/X982aca", "https://tec.openplanner.team/stops/X982bta"], ["https://tec.openplanner.team/stops/Lglcoun2", "https://tec.openplanner.team/stops/Lglsana2"], ["https://tec.openplanner.team/stops/LaAneul1", "https://tec.openplanner.team/stops/LaAneul2"], ["https://tec.openplanner.team/stops/N581abb", "https://tec.openplanner.team/stops/N581aca"], ["https://tec.openplanner.team/stops/X982axb", "https://tec.openplanner.team/stops/X982cda"], ["https://tec.openplanner.team/stops/N207ada", "https://tec.openplanner.team/stops/N207adb"], ["https://tec.openplanner.team/stops/Lghbonn2", "https://tec.openplanner.team/stops/Lghremy1"], ["https://tec.openplanner.team/stops/X886aba", "https://tec.openplanner.team/stops/X886aca"], ["https://tec.openplanner.team/stops/N506ara", "https://tec.openplanner.team/stops/N506asb"], ["https://tec.openplanner.team/stops/H1mm125d", "https://tec.openplanner.team/stops/H1mm127b"], ["https://tec.openplanner.team/stops/N515agb", "https://tec.openplanner.team/stops/N515aja"], ["https://tec.openplanner.team/stops/X771aba", "https://tec.openplanner.team/stops/X771aeb"], ["https://tec.openplanner.team/stops/Lagmoli2", "https://tec.openplanner.team/stops/Llgpari1"], ["https://tec.openplanner.team/stops/Cli4bra2", "https://tec.openplanner.team/stops/Clulidl2"], ["https://tec.openplanner.team/stops/Bcsebde2", "https://tec.openplanner.team/stops/Bcseeco1"], ["https://tec.openplanner.team/stops/H2gy101b", "https://tec.openplanner.team/stops/H2gy106b"], ["https://tec.openplanner.team/stops/Lheazz-1", "https://tec.openplanner.team/stops/Lheente1"], ["https://tec.openplanner.team/stops/LSTgran1", "https://tec.openplanner.team/stops/LSTgran2"], ["https://tec.openplanner.team/stops/LCPcomb1", "https://tec.openplanner.team/stops/LCPcomb2"], ["https://tec.openplanner.team/stops/Cdagoss1", "https://tec.openplanner.team/stops/Cmaest1"], ["https://tec.openplanner.team/stops/LFFmonu1", "https://tec.openplanner.team/stops/LFFmonu2"], ["https://tec.openplanner.team/stops/N117ama", "https://tec.openplanner.team/stops/N117aqb"], ["https://tec.openplanner.team/stops/Cnahahe2", "https://tec.openplanner.team/stops/Cnamonn2"], ["https://tec.openplanner.team/stops/Cmregli4", "https://tec.openplanner.team/stops/N162abb"], ["https://tec.openplanner.team/stops/LAvcani2", "https://tec.openplanner.team/stops/LMXroye2"], ["https://tec.openplanner.team/stops/H1bo103a", "https://tec.openplanner.team/stops/H1sg145b"], ["https://tec.openplanner.team/stops/H1eu105b", "https://tec.openplanner.team/stops/H1sb145b"], ["https://tec.openplanner.team/stops/Cgxcite2", "https://tec.openplanner.team/stops/Cgxptt1"], ["https://tec.openplanner.team/stops/Cronova1", "https://tec.openplanner.team/stops/Crowall1"], ["https://tec.openplanner.team/stops/LROcham2", "https://tec.openplanner.team/stops/LWabela2"], ["https://tec.openplanner.team/stops/Lstbota2", "https://tec.openplanner.team/stops/Lstchim2"], ["https://tec.openplanner.team/stops/Lbrlama1", "https://tec.openplanner.team/stops/Lgrfort1"], ["https://tec.openplanner.team/stops/X723acb", "https://tec.openplanner.team/stops/X723ala"], ["https://tec.openplanner.team/stops/Cjuhden1", "https://tec.openplanner.team/stops/Cjuhden4"], ["https://tec.openplanner.team/stops/X619ahb", "https://tec.openplanner.team/stops/X619aka"], ["https://tec.openplanner.team/stops/Lhr3jui1", "https://tec.openplanner.team/stops/Lhrbrou2"], ["https://tec.openplanner.team/stops/H5el101b", "https://tec.openplanner.team/stops/H5el110b"], ["https://tec.openplanner.team/stops/X641asb", "https://tec.openplanner.team/stops/X821aaa"], ["https://tec.openplanner.team/stops/H1ms305a", "https://tec.openplanner.team/stops/H1ob361b"], ["https://tec.openplanner.team/stops/H1ms942a", "https://tec.openplanner.team/stops/H1ni323b"], ["https://tec.openplanner.team/stops/LFEland1", "https://tec.openplanner.team/stops/LFtcarr2"], ["https://tec.openplanner.team/stops/H4ca121b", "https://tec.openplanner.team/stops/H4ca123a"], ["https://tec.openplanner.team/stops/X897aub", "https://tec.openplanner.team/stops/X897ava"], ["https://tec.openplanner.team/stops/H4bc108a", "https://tec.openplanner.team/stops/H4wr177a"], ["https://tec.openplanner.team/stops/Lsephar1", "https://tec.openplanner.team/stops/Lsephar2"], ["https://tec.openplanner.team/stops/X646aba", "https://tec.openplanner.team/stops/X646aca"], ["https://tec.openplanner.team/stops/H2fy120c", "https://tec.openplanner.team/stops/H2mg142b"], ["https://tec.openplanner.team/stops/Crorpai1", "https://tec.openplanner.team/stops/Crorpai2"], ["https://tec.openplanner.team/stops/NR10aab", "https://tec.openplanner.team/stops/NR10aba"], ["https://tec.openplanner.team/stops/H1by108e", "https://tec.openplanner.team/stops/H1sy143d"], ["https://tec.openplanner.team/stops/Csbberg1", "https://tec.openplanner.team/stops/H1fv102b"], ["https://tec.openplanner.team/stops/LAUjean1", "https://tec.openplanner.team/stops/LSJlabe2"], ["https://tec.openplanner.team/stops/Bjodgai1", "https://tec.openplanner.team/stops/Bmlngvi1"], ["https://tec.openplanner.team/stops/X633agc", "https://tec.openplanner.team/stops/X653adc"], ["https://tec.openplanner.team/stops/LAMceri2", "https://tec.openplanner.team/stops/LAMcloc1"], ["https://tec.openplanner.team/stops/LFLcher2", "https://tec.openplanner.team/stops/LFLetoi2"], ["https://tec.openplanner.team/stops/Cfrcham1", "https://tec.openplanner.team/stops/Cfrplac6"], ["https://tec.openplanner.team/stops/LDLboul1", "https://tec.openplanner.team/stops/LDLheid1"], ["https://tec.openplanner.team/stops/X672acb", "https://tec.openplanner.team/stops/X672alb"], ["https://tec.openplanner.team/stops/N232aja", "https://tec.openplanner.team/stops/N232ajb"], ["https://tec.openplanner.team/stops/LLAcalv1", "https://tec.openplanner.team/stops/LLAcalv2"], ["https://tec.openplanner.team/stops/H5fl102c", "https://tec.openplanner.team/stops/H5fl103b"], ["https://tec.openplanner.team/stops/X307aba", "https://tec.openplanner.team/stops/X359agb"], ["https://tec.openplanner.team/stops/LNCmarc1", "https://tec.openplanner.team/stops/LRachen*"], ["https://tec.openplanner.team/stops/H4er125b", "https://tec.openplanner.team/stops/H4wu420a"], ["https://tec.openplanner.team/stops/Cladura4", "https://tec.openplanner.team/stops/NC23aeb"], ["https://tec.openplanner.team/stops/N166aba", "https://tec.openplanner.team/stops/N565aia"], ["https://tec.openplanner.team/stops/H1fr113a", "https://tec.openplanner.team/stops/H1lb136a"], ["https://tec.openplanner.team/stops/N308ahb", "https://tec.openplanner.team/stops/N308ama"], ["https://tec.openplanner.team/stops/H4hq129a", "https://tec.openplanner.team/stops/H4hq133a"], ["https://tec.openplanner.team/stops/X723aea", "https://tec.openplanner.team/stops/X766aga"], ["https://tec.openplanner.team/stops/LLirout1", "https://tec.openplanner.team/stops/LLirout2"], ["https://tec.openplanner.team/stops/LFMstat1", "https://tec.openplanner.team/stops/LFMvoge1"], ["https://tec.openplanner.team/stops/N579aaa", "https://tec.openplanner.team/stops/N580aaa"], ["https://tec.openplanner.team/stops/Llg20ao1", "https://tec.openplanner.team/stops/Llgcroi4"], ["https://tec.openplanner.team/stops/Bhenron2", "https://tec.openplanner.team/stops/Bquevel2"], ["https://tec.openplanner.team/stops/X870aeb", "https://tec.openplanner.team/stops/X870aga"], ["https://tec.openplanner.team/stops/Llgstev2", "https://tec.openplanner.team/stops/Llgvalu2"], ["https://tec.openplanner.team/stops/Bblaniv1", "https://tec.openplanner.team/stops/Bblavhu2"], ["https://tec.openplanner.team/stops/X802akb", "https://tec.openplanner.team/stops/X802aza"], ["https://tec.openplanner.team/stops/N141anb", "https://tec.openplanner.team/stops/N141aoa"], ["https://tec.openplanner.team/stops/X857aab", "https://tec.openplanner.team/stops/X857aba"], ["https://tec.openplanner.team/stops/X982cea", "https://tec.openplanner.team/stops/X983acb"], ["https://tec.openplanner.team/stops/X644aba", "https://tec.openplanner.team/stops/X644aca"], ["https://tec.openplanner.team/stops/Cdasama1", "https://tec.openplanner.team/stops/CMsacm2"], ["https://tec.openplanner.team/stops/LESchpl1", "https://tec.openplanner.team/stops/LPOpass2"], ["https://tec.openplanner.team/stops/N501cba", "https://tec.openplanner.team/stops/N501mpa"], ["https://tec.openplanner.team/stops/H3so153a", "https://tec.openplanner.team/stops/H3so160a"], ["https://tec.openplanner.team/stops/X651adb", "https://tec.openplanner.team/stops/X651afb"], ["https://tec.openplanner.team/stops/Llgfont1", "https://tec.openplanner.team/stops/Llghull2"], ["https://tec.openplanner.team/stops/Cgzoctr2", "https://tec.openplanner.team/stops/Cthha501"], ["https://tec.openplanner.team/stops/Cfrplac1", "https://tec.openplanner.team/stops/Cfrplac4"], ["https://tec.openplanner.team/stops/LFOchpl1", "https://tec.openplanner.team/stops/LFOmc--1"], ["https://tec.openplanner.team/stops/X756aja", "https://tec.openplanner.team/stops/X756ajb"], ["https://tec.openplanner.team/stops/N211aeb", "https://tec.openplanner.team/stops/N211awb"], ["https://tec.openplanner.team/stops/Ctrplac1", "https://tec.openplanner.team/stops/Ctrrpla2"], ["https://tec.openplanner.team/stops/X804bua", "https://tec.openplanner.team/stops/X827aab"], ["https://tec.openplanner.team/stops/X731acc", "https://tec.openplanner.team/stops/X731aja"], ["https://tec.openplanner.team/stops/Lve-isi2", "https://tec.openplanner.team/stops/Lvepris1"], ["https://tec.openplanner.team/stops/Cbfbies1", "https://tec.openplanner.team/stops/Cbfgare1"], ["https://tec.openplanner.team/stops/LHNgend3", "https://tec.openplanner.team/stops/LVPcoeu1"], ["https://tec.openplanner.team/stops/Cbcegli6", "https://tec.openplanner.team/stops/Cbckios1"], ["https://tec.openplanner.team/stops/H4an105b", "https://tec.openplanner.team/stops/H4rs119b"], ["https://tec.openplanner.team/stops/Cgoboll4", "https://tec.openplanner.team/stops/Cgostex1"], ["https://tec.openplanner.team/stops/LCnvill1", "https://tec.openplanner.team/stops/LLUadze1"], ["https://tec.openplanner.team/stops/X547afb", "https://tec.openplanner.team/stops/X547ana"], ["https://tec.openplanner.team/stops/LSDvill1", "https://tec.openplanner.team/stops/LSDvill2"], ["https://tec.openplanner.team/stops/X358acc", "https://tec.openplanner.team/stops/X991aaa"], ["https://tec.openplanner.team/stops/Bottcbp1", "https://tec.openplanner.team/stops/Bottpar1"], ["https://tec.openplanner.team/stops/LOMdTEC2", "https://tec.openplanner.team/stops/LOMware2"], ["https://tec.openplanner.team/stops/X601alb", "https://tec.openplanner.team/stops/X601ctb"], ["https://tec.openplanner.team/stops/LAivill1", "https://tec.openplanner.team/stops/Lccawir1"], ["https://tec.openplanner.team/stops/Cmlhubi1", "https://tec.openplanner.team/stops/Cmlipsm2"], ["https://tec.openplanner.team/stops/X738acb", "https://tec.openplanner.team/stops/X738ada"], ["https://tec.openplanner.team/stops/Cslegli1", "https://tec.openplanner.team/stops/Cslegli2"], ["https://tec.openplanner.team/stops/N513bib", "https://tec.openplanner.team/stops/N516acb"], ["https://tec.openplanner.team/stops/LFemoul2", "https://tec.openplanner.team/stops/LRIhous2"], ["https://tec.openplanner.team/stops/N232aya", "https://tec.openplanner.team/stops/N232bob"], ["https://tec.openplanner.team/stops/H4wi168b", "https://tec.openplanner.team/stops/H4wi169b"], ["https://tec.openplanner.team/stops/Bgoegma1", "https://tec.openplanner.team/stops/Bpiepnd2"], ["https://tec.openplanner.team/stops/LHrcarr1", "https://tec.openplanner.team/stops/LHrparc1"], ["https://tec.openplanner.team/stops/H1vt193b", "https://tec.openplanner.team/stops/H1vt196b"], ["https://tec.openplanner.team/stops/LGorysa2", "https://tec.openplanner.team/stops/Lpeflec2"], ["https://tec.openplanner.team/stops/H1sb145a", "https://tec.openplanner.team/stops/H1sb148a"], ["https://tec.openplanner.team/stops/X802adb", "https://tec.openplanner.team/stops/X802aea"], ["https://tec.openplanner.team/stops/Llglamb1", "https://tec.openplanner.team/stops/Llgsorb1"], ["https://tec.openplanner.team/stops/Bblamsj1", "https://tec.openplanner.team/stops/Bblamsj2"], ["https://tec.openplanner.team/stops/Bhoealt2", "https://tec.openplanner.team/stops/Btiegar1"], ["https://tec.openplanner.team/stops/X601agb", "https://tec.openplanner.team/stops/X663ahd"], ["https://tec.openplanner.team/stops/N505aca", "https://tec.openplanner.team/stops/N505afb"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X670aha"], ["https://tec.openplanner.team/stops/LVefont1", "https://tec.openplanner.team/stops/LVevill2"], ["https://tec.openplanner.team/stops/H4ff118b", "https://tec.openplanner.team/stops/H4ff122a"], ["https://tec.openplanner.team/stops/LhPhale2", "https://tec.openplanner.team/stops/LvAwere1"], ["https://tec.openplanner.team/stops/N202ahb", "https://tec.openplanner.team/stops/N204ajb"], ["https://tec.openplanner.team/stops/Cgyruis2", "https://tec.openplanner.team/stops/CMsartc2"], ["https://tec.openplanner.team/stops/Lghjans2", "https://tec.openplanner.team/stops/Lghviad1"], ["https://tec.openplanner.team/stops/Llgcbat1", "https://tec.openplanner.team/stops/Llgoise2"], ["https://tec.openplanner.team/stops/LaHzoll*", "https://tec.openplanner.team/stops/LmHflor2"], ["https://tec.openplanner.team/stops/H5st163b", "https://tec.openplanner.team/stops/H5st168a"], ["https://tec.openplanner.team/stops/N501beb", "https://tec.openplanner.team/stops/N501nca"], ["https://tec.openplanner.team/stops/X804apa", "https://tec.openplanner.team/stops/X804apb"], ["https://tec.openplanner.team/stops/LENchem1", "https://tec.openplanner.team/stops/LENchem2"], ["https://tec.openplanner.team/stops/LCReg--2", "https://tec.openplanner.team/stops/LCRrape1"], ["https://tec.openplanner.team/stops/Lpedeta2", "https://tec.openplanner.team/stops/LTAchau2"], ["https://tec.openplanner.team/stops/Llgboux1", "https://tec.openplanner.team/stops/Lvtlomb4"], ["https://tec.openplanner.team/stops/H4ws159a", "https://tec.openplanner.team/stops/H4ws160b"], ["https://tec.openplanner.team/stops/H1ms305a", "https://tec.openplanner.team/stops/H1ms313a"], ["https://tec.openplanner.team/stops/LFtcarr1", "https://tec.openplanner.team/stops/LFtcarr2"], ["https://tec.openplanner.team/stops/N153afa", "https://tec.openplanner.team/stops/N153afb"], ["https://tec.openplanner.team/stops/H4hq133c", "https://tec.openplanner.team/stops/H4hq133d"], ["https://tec.openplanner.team/stops/H1hw124b", "https://tec.openplanner.team/stops/H1ls105a"], ["https://tec.openplanner.team/stops/LFrcent1", "https://tec.openplanner.team/stops/LFReg--1"], ["https://tec.openplanner.team/stops/Caibino1", "https://tec.openplanner.team/stops/Caiegli1"], ["https://tec.openplanner.team/stops/LERboss2", "https://tec.openplanner.team/stops/LERpouh1"], ["https://tec.openplanner.team/stops/H1le117a", "https://tec.openplanner.team/stops/H1le120b"], ["https://tec.openplanner.team/stops/X804awb", "https://tec.openplanner.team/stops/X804bgb"], ["https://tec.openplanner.team/stops/N531aib", "https://tec.openplanner.team/stops/N531amb"], ["https://tec.openplanner.team/stops/LHrchat2", "https://tec.openplanner.team/stops/LHreg--1"], ["https://tec.openplanner.team/stops/X820aga", "https://tec.openplanner.team/stops/X821aab"], ["https://tec.openplanner.team/stops/N528aca", "https://tec.openplanner.team/stops/N528acb"], ["https://tec.openplanner.team/stops/Lcemc--2", "https://tec.openplanner.team/stops/Lcepont6"], ["https://tec.openplanner.team/stops/LlNhube2", "https://tec.openplanner.team/stops/LlNlimb1"], ["https://tec.openplanner.team/stops/Bracgar1", "https://tec.openplanner.team/stops/Brach122"], ["https://tec.openplanner.team/stops/Bniv4co1", "https://tec.openplanner.team/stops/Bnivrwi1"], ["https://tec.openplanner.team/stops/Cbbcrbo1", "https://tec.openplanner.team/stops/Cbbcrbo2"], ["https://tec.openplanner.team/stops/Cplelec2", "https://tec.openplanner.team/stops/Cplrmon2"], ["https://tec.openplanner.team/stops/Lvcfogu6", "https://tec.openplanner.team/stops/Lvcvand2"], ["https://tec.openplanner.team/stops/H1ba101b", "https://tec.openplanner.team/stops/H1ba102b"], ["https://tec.openplanner.team/stops/N534bsb", "https://tec.openplanner.team/stops/N568aeb"], ["https://tec.openplanner.team/stops/N211aib", "https://tec.openplanner.team/stops/N211ala"], ["https://tec.openplanner.team/stops/LSssurl2", "https://tec.openplanner.team/stops/N506azb"], ["https://tec.openplanner.team/stops/Cwgcamp1", "https://tec.openplanner.team/stops/Cwgdeba2"], ["https://tec.openplanner.team/stops/NL76ahb", "https://tec.openplanner.team/stops/NL77abb"], ["https://tec.openplanner.team/stops/Bbstegl1", "https://tec.openplanner.team/stops/Bbstegl2"], ["https://tec.openplanner.team/stops/Cdagoss1", "https://tec.openplanner.team/stops/Cdagoss2"], ["https://tec.openplanner.team/stops/LSkathe1", "https://tec.openplanner.team/stops/LYechpl1"], ["https://tec.openplanner.team/stops/Berncim1", "https://tec.openplanner.team/stops/Bwlhpmt4"], ["https://tec.openplanner.team/stops/H3so160a", "https://tec.openplanner.team/stops/H3so162a"], ["https://tec.openplanner.team/stops/H1bd101b", "https://tec.openplanner.team/stops/H1bd103a"], ["https://tec.openplanner.team/stops/LOcalbe1", "https://tec.openplanner.team/stops/LTNmont1"], ["https://tec.openplanner.team/stops/LTestat1", "https://tec.openplanner.team/stops/NL35add"], ["https://tec.openplanner.team/stops/LSkb1351", "https://tec.openplanner.team/stops/LSkmarq1"], ["https://tec.openplanner.team/stops/X901ala", "https://tec.openplanner.team/stops/X901aub"], ["https://tec.openplanner.team/stops/H4ch114a", "https://tec.openplanner.team/stops/H4ch116b"], ["https://tec.openplanner.team/stops/X740aeb", "https://tec.openplanner.team/stops/X912aga"], ["https://tec.openplanner.team/stops/H1do116a", "https://tec.openplanner.team/stops/H1do116b"], ["https://tec.openplanner.team/stops/X637aqa", "https://tec.openplanner.team/stops/X637aqb"], ["https://tec.openplanner.team/stops/Lghgend1", "https://tec.openplanner.team/stops/Lghgoll1"], ["https://tec.openplanner.team/stops/Llgbois1", "https://tec.openplanner.team/stops/Llgcrah2"], ["https://tec.openplanner.team/stops/LBDcarr2", "https://tec.openplanner.team/stops/LVEbors1"], ["https://tec.openplanner.team/stops/LaAnorm1", "https://tec.openplanner.team/stops/LlCgren1"], ["https://tec.openplanner.team/stops/H4lp122b", "https://tec.openplanner.team/stops/H4mg139a"], ["https://tec.openplanner.team/stops/N212abb", "https://tec.openplanner.team/stops/N212ada"], ["https://tec.openplanner.team/stops/LATfont1", "https://tec.openplanner.team/stops/LVNcoop1"], ["https://tec.openplanner.team/stops/H4mo135a", "https://tec.openplanner.team/stops/H4mo167a"], ["https://tec.openplanner.team/stops/LBIbois1", "https://tec.openplanner.team/stops/LBIcabi1"], ["https://tec.openplanner.team/stops/X728aba", "https://tec.openplanner.team/stops/X748aca"], ["https://tec.openplanner.team/stops/N542abb", "https://tec.openplanner.team/stops/N542ara"], ["https://tec.openplanner.team/stops/Bwatcrf1", "https://tec.openplanner.team/stops/Bwatlbs1"], ["https://tec.openplanner.team/stops/Cgymest2", "https://tec.openplanner.team/stops/Cgystbe2"], ["https://tec.openplanner.team/stops/Bbea3he1", "https://tec.openplanner.team/stops/Bbeascl1"], ["https://tec.openplanner.team/stops/N501bza", "https://tec.openplanner.team/stops/N502ada"], ["https://tec.openplanner.team/stops/X717agc", "https://tec.openplanner.team/stops/X717aia"], ["https://tec.openplanner.team/stops/Llgbavi1", "https://tec.openplanner.team/stops/Llgpoli2"], ["https://tec.openplanner.team/stops/X837aea", "https://tec.openplanner.team/stops/X837aed"], ["https://tec.openplanner.team/stops/H2lh125b", "https://tec.openplanner.team/stops/H2lh129b"], ["https://tec.openplanner.team/stops/X316aba", "https://tec.openplanner.team/stops/X318aca"], ["https://tec.openplanner.team/stops/Bjodced1", "https://tec.openplanner.team/stops/Bjodpvi1"], ["https://tec.openplanner.team/stops/N206aaa", "https://tec.openplanner.team/stops/N207aca"], ["https://tec.openplanner.team/stops/Livfays2", "https://tec.openplanner.team/stops/LRacime2"], ["https://tec.openplanner.team/stops/LSOboeu2", "https://tec.openplanner.team/stops/LSOtrou2"], ["https://tec.openplanner.team/stops/H4ss154b", "https://tec.openplanner.team/stops/H4ss158b"], ["https://tec.openplanner.team/stops/H4er122a", "https://tec.openplanner.team/stops/H4sm247a"], ["https://tec.openplanner.team/stops/Cthalou2", "https://tec.openplanner.team/stops/Cthrpoi1"], ["https://tec.openplanner.team/stops/N513aza", "https://tec.openplanner.team/stops/N513azb"], ["https://tec.openplanner.team/stops/N542aga", "https://tec.openplanner.team/stops/N542ahb"], ["https://tec.openplanner.team/stops/X661ala", "https://tec.openplanner.team/stops/X661axa"], ["https://tec.openplanner.team/stops/LwMzoll2", "https://tec.openplanner.team/stops/X769arb"], ["https://tec.openplanner.team/stops/Bhlvlou1", "https://tec.openplanner.team/stops/Bhlvvil1"], ["https://tec.openplanner.team/stops/N562aeb", "https://tec.openplanner.team/stops/N562afb"], ["https://tec.openplanner.team/stops/H4mo156b", "https://tec.openplanner.team/stops/H4mo204b"], ["https://tec.openplanner.team/stops/Cvlgrta1", "https://tec.openplanner.team/stops/Cvllerm2"], ["https://tec.openplanner.team/stops/H1hw122a", "https://tec.openplanner.team/stops/H1hw125a"], ["https://tec.openplanner.team/stops/Bbcogar1", "https://tec.openplanner.team/stops/Bbcoser2"], ["https://tec.openplanner.team/stops/N513ana", "https://tec.openplanner.team/stops/N513anb"], ["https://tec.openplanner.team/stops/LBkdahl1", "https://tec.openplanner.team/stops/LBkdahl2"], ["https://tec.openplanner.team/stops/H4ft138a", "https://tec.openplanner.team/stops/H4wu375a"], ["https://tec.openplanner.team/stops/Ltibalt1", "https://tec.openplanner.team/stops/Ltithie2"], ["https://tec.openplanner.team/stops/H1ha200b", "https://tec.openplanner.team/stops/H1vh135a"], ["https://tec.openplanner.team/stops/LeUkirc1", "https://tec.openplanner.team/stops/LeUsch%C3%B61"], ["https://tec.openplanner.team/stops/H1ht124b", "https://tec.openplanner.team/stops/H1po139a"], ["https://tec.openplanner.team/stops/LBNlong1", "https://tec.openplanner.team/stops/LBNvill1"], ["https://tec.openplanner.team/stops/Bquereb1", "https://tec.openplanner.team/stops/Bquereb2"], ["https://tec.openplanner.team/stops/Bptecal1", "https://tec.openplanner.team/stops/H1hv131a"], ["https://tec.openplanner.team/stops/Croheig2", "https://tec.openplanner.team/stops/Cropcan1"], ["https://tec.openplanner.team/stops/H1ci106a", "https://tec.openplanner.team/stops/H1mv240a"], ["https://tec.openplanner.team/stops/H4es117b", "https://tec.openplanner.team/stops/H4ev120a"], ["https://tec.openplanner.team/stops/N527aca", "https://tec.openplanner.team/stops/N527ada"], ["https://tec.openplanner.team/stops/Bsgihmo1", "https://tec.openplanner.team/stops/Bsgipha1"], ["https://tec.openplanner.team/stops/N343aca", "https://tec.openplanner.team/stops/N343amb"], ["https://tec.openplanner.team/stops/H4wu376b", "https://tec.openplanner.team/stops/H4wu420a"], ["https://tec.openplanner.team/stops/LaNmuhl1", "https://tec.openplanner.team/stops/LeMnr12"], ["https://tec.openplanner.team/stops/LRChote2", "https://tec.openplanner.team/stops/LRCviad2"], ["https://tec.openplanner.team/stops/N231abb", "https://tec.openplanner.team/stops/N231ada"], ["https://tec.openplanner.team/stops/N501mua", "https://tec.openplanner.team/stops/N527aca"], ["https://tec.openplanner.team/stops/H1to153a", "https://tec.openplanner.team/stops/H1to153d"], ["https://tec.openplanner.team/stops/LHFappe2", "https://tec.openplanner.team/stops/LSChane2"], ["https://tec.openplanner.team/stops/Lsccdor1", "https://tec.openplanner.team/stops/Lscchat2"], ["https://tec.openplanner.team/stops/Ccubric2", "https://tec.openplanner.team/stops/Ccucora2"], ["https://tec.openplanner.team/stops/LPLcarr2", "https://tec.openplanner.team/stops/LPLcarr4"], ["https://tec.openplanner.team/stops/N560acb", "https://tec.openplanner.team/stops/N560adb"], ["https://tec.openplanner.team/stops/Lvomoul1", "https://tec.openplanner.team/stops/Lvovent2"], ["https://tec.openplanner.team/stops/X614agb", "https://tec.openplanner.team/stops/X616aja"], ["https://tec.openplanner.team/stops/LNveg--1", "https://tec.openplanner.team/stops/LNveg--2"], ["https://tec.openplanner.team/stops/NR30aaa", "https://tec.openplanner.team/stops/NR30aba"], ["https://tec.openplanner.team/stops/H3so177b", "https://tec.openplanner.team/stops/H3so178b"], ["https://tec.openplanner.team/stops/N569ala", "https://tec.openplanner.team/stops/N569ama"], ["https://tec.openplanner.team/stops/N209akb", "https://tec.openplanner.team/stops/N209alb"], ["https://tec.openplanner.team/stops/Llgfont4", "https://tec.openplanner.team/stops/Llgjose1"], ["https://tec.openplanner.team/stops/NL30aka", "https://tec.openplanner.team/stops/NL68aab"], ["https://tec.openplanner.team/stops/X822aba", "https://tec.openplanner.team/stops/X822abb"], ["https://tec.openplanner.team/stops/X769aab", "https://tec.openplanner.team/stops/X769abb"], ["https://tec.openplanner.team/stops/Cmtrbra2", "https://tec.openplanner.team/stops/Cmtrneu2"], ["https://tec.openplanner.team/stops/X396ada", "https://tec.openplanner.team/stops/X396adb"], ["https://tec.openplanner.team/stops/Bpthcai1", "https://tec.openplanner.team/stops/Bpthrsp1"], ["https://tec.openplanner.team/stops/LhGkirc4", "https://tec.openplanner.team/stops/LhGknip1"], ["https://tec.openplanner.team/stops/Lbrchur1", "https://tec.openplanner.team/stops/Lbrfoid3"], ["https://tec.openplanner.team/stops/X633afb", "https://tec.openplanner.team/stops/X633agb"], ["https://tec.openplanner.team/stops/N501aka", "https://tec.openplanner.team/stops/N501bca"], ["https://tec.openplanner.team/stops/H1gh144a", "https://tec.openplanner.team/stops/H1gh155b"], ["https://tec.openplanner.team/stops/Lmlec--1", "https://tec.openplanner.team/stops/Lmlmaqu1"], ["https://tec.openplanner.team/stops/X747adb", "https://tec.openplanner.team/stops/X747aea"], ["https://tec.openplanner.team/stops/LmNkess1", "https://tec.openplanner.team/stops/LmNkrew1"], ["https://tec.openplanner.team/stops/LMgberw1", "https://tec.openplanner.team/stops/LVImons2"], ["https://tec.openplanner.team/stops/Lghcise1", "https://tec.openplanner.team/stops/Lmopeup1"], ["https://tec.openplanner.team/stops/X925apa", "https://tec.openplanner.team/stops/X925ata"], ["https://tec.openplanner.team/stops/LMotrem2", "https://tec.openplanner.team/stops/LTrrich1"], ["https://tec.openplanner.team/stops/LBiroch1", "https://tec.openplanner.team/stops/LDOastr1"], ["https://tec.openplanner.team/stops/H4ml208a", "https://tec.openplanner.team/stops/H4ml208b"], ["https://tec.openplanner.team/stops/X911afa", "https://tec.openplanner.team/stops/X911ata"], ["https://tec.openplanner.team/stops/LLmcheg3", "https://tec.openplanner.team/stops/LLmcheg4"], ["https://tec.openplanner.team/stops/X805aka", "https://tec.openplanner.team/stops/X805akb"], ["https://tec.openplanner.team/stops/Lrchero2", "https://tec.openplanner.team/stops/Lrcpaqu1"], ["https://tec.openplanner.team/stops/N521aea", "https://tec.openplanner.team/stops/N521afa"], ["https://tec.openplanner.team/stops/LATguis2", "https://tec.openplanner.team/stops/LATlena1"], ["https://tec.openplanner.team/stops/Cmlfeba2", "https://tec.openplanner.team/stops/Cmlipsm2"], ["https://tec.openplanner.team/stops/H1hw119a", "https://tec.openplanner.team/stops/H1hw124a"], ["https://tec.openplanner.team/stops/N385aad", "https://tec.openplanner.team/stops/N385acb"], ["https://tec.openplanner.team/stops/X615bda", "https://tec.openplanner.team/stops/X695aka"], ["https://tec.openplanner.team/stops/H1sg146a", "https://tec.openplanner.team/stops/H1sg149a"], ["https://tec.openplanner.team/stops/H4lz118b", "https://tec.openplanner.team/stops/H4lz128a"], ["https://tec.openplanner.team/stops/Bmarcat2", "https://tec.openplanner.team/stops/Bmaregl1"], ["https://tec.openplanner.team/stops/Bwaubru1", "https://tec.openplanner.team/stops/Bwaunou1"], ["https://tec.openplanner.team/stops/H1gh162c", "https://tec.openplanner.team/stops/H1gh165a"], ["https://tec.openplanner.team/stops/LeUcroi1", "https://tec.openplanner.team/stops/LeUmalm2"], ["https://tec.openplanner.team/stops/Bcbqa361", "https://tec.openplanner.team/stops/Bcbqrog2"], ["https://tec.openplanner.team/stops/Canboni2", "https://tec.openplanner.team/stops/Canfief2"], ["https://tec.openplanner.team/stops/N539aca", "https://tec.openplanner.team/stops/N540aeb"], ["https://tec.openplanner.team/stops/LrAeife1", "https://tec.openplanner.team/stops/LrAwald1"], ["https://tec.openplanner.team/stops/X850aga", "https://tec.openplanner.team/stops/X850aja"], ["https://tec.openplanner.team/stops/X986aja", "https://tec.openplanner.team/stops/X986ama"], ["https://tec.openplanner.team/stops/X801chb", "https://tec.openplanner.team/stops/X801cia"], ["https://tec.openplanner.team/stops/LAMecse*", "https://tec.openplanner.team/stops/LAmshel2"], ["https://tec.openplanner.team/stops/Cgdfoca1", "https://tec.openplanner.team/stops/Cgdfoca2"], ["https://tec.openplanner.team/stops/N541aba", "https://tec.openplanner.team/stops/N541abb"], ["https://tec.openplanner.team/stops/N103aea", "https://tec.openplanner.team/stops/N103agb"], ["https://tec.openplanner.team/stops/LCSpoud2", "https://tec.openplanner.team/stops/LENindu1"], ["https://tec.openplanner.team/stops/N501icb", "https://tec.openplanner.team/stops/N501ipb"], ["https://tec.openplanner.team/stops/H1be101b", "https://tec.openplanner.team/stops/H1mc129a"], ["https://tec.openplanner.team/stops/LhRwere1", "https://tec.openplanner.team/stops/LwEdorf1"], ["https://tec.openplanner.team/stops/Lagfour2", "https://tec.openplanner.team/stops/Llgpont2"], ["https://tec.openplanner.team/stops/X871aba", "https://tec.openplanner.team/stops/X871acb"], ["https://tec.openplanner.team/stops/Bvirbru2", "https://tec.openplanner.team/stops/Bvirvol1"], ["https://tec.openplanner.team/stops/LMOlens1", "https://tec.openplanner.team/stops/LTychev2"], ["https://tec.openplanner.team/stops/X998aaa", "https://tec.openplanner.team/stops/X998aza"], ["https://tec.openplanner.team/stops/N211acb", "https://tec.openplanner.team/stops/N211avb"], ["https://tec.openplanner.team/stops/H1mm127b", "https://tec.openplanner.team/stops/H1mm128b"], ["https://tec.openplanner.team/stops/Lmohomv1", "https://tec.openplanner.team/stops/Lsnbrac1"], ["https://tec.openplanner.team/stops/N559abb", "https://tec.openplanner.team/stops/N559aea"], ["https://tec.openplanner.team/stops/X669agb", "https://tec.openplanner.team/stops/X672aea"], ["https://tec.openplanner.team/stops/N518aab", "https://tec.openplanner.team/stops/N518acc"], ["https://tec.openplanner.team/stops/H2pe155a", "https://tec.openplanner.team/stops/H2pe160a"], ["https://tec.openplanner.team/stops/H5qu139a", "https://tec.openplanner.team/stops/H5qu154b"], ["https://tec.openplanner.team/stops/Cfmnoci2", "https://tec.openplanner.team/stops/Cfmtrie2"], ["https://tec.openplanner.team/stops/H1wi148c", "https://tec.openplanner.team/stops/H1wi157a"], ["https://tec.openplanner.team/stops/H1qu102b", "https://tec.openplanner.team/stops/H1wl121b"], ["https://tec.openplanner.team/stops/Clolidl1", "https://tec.openplanner.team/stops/Clooues4"], ["https://tec.openplanner.team/stops/Cfcctru2", "https://tec.openplanner.team/stops/Cfcrerp2"], ["https://tec.openplanner.team/stops/N423agb", "https://tec.openplanner.team/stops/NH21ahb"], ["https://tec.openplanner.team/stops/H4bh100b", "https://tec.openplanner.team/stops/H4bh101b"], ["https://tec.openplanner.team/stops/LBichat2", "https://tec.openplanner.team/stops/LBichen2"], ["https://tec.openplanner.team/stops/Bpthcgo2", "https://tec.openplanner.team/stops/Bpthrsp1"], ["https://tec.openplanner.team/stops/Bglache1", "https://tec.openplanner.team/stops/Bglacsr1"], ["https://tec.openplanner.team/stops/H4av107a", "https://tec.openplanner.team/stops/H4av107b"], ["https://tec.openplanner.team/stops/Bchgcha1", "https://tec.openplanner.team/stops/Btslpic6"], ["https://tec.openplanner.team/stops/LWegdry1", "https://tec.openplanner.team/stops/LWerola1"], ["https://tec.openplanner.team/stops/X607aba", "https://tec.openplanner.team/stops/X607abb"], ["https://tec.openplanner.team/stops/N501ema", "https://tec.openplanner.team/stops/N501emb"], ["https://tec.openplanner.team/stops/N578aca", "https://tec.openplanner.team/stops/N578acb"], ["https://tec.openplanner.team/stops/X804aeb", "https://tec.openplanner.team/stops/X804beb"], ["https://tec.openplanner.team/stops/Lmndeso2", "https://tec.openplanner.team/stops/Lsmtini1"], ["https://tec.openplanner.team/stops/LSceg--2", "https://tec.openplanner.team/stops/LVTtrou2"], ["https://tec.openplanner.team/stops/X344aca", "https://tec.openplanner.team/stops/X344ada"], ["https://tec.openplanner.team/stops/X921ama", "https://tec.openplanner.team/stops/X921amb"], ["https://tec.openplanner.team/stops/LOcalbe2", "https://tec.openplanner.team/stops/LOcchat2"], ["https://tec.openplanner.team/stops/X757aea", "https://tec.openplanner.team/stops/X757aia"], ["https://tec.openplanner.team/stops/N543bpb", "https://tec.openplanner.team/stops/N543bpc"], ["https://tec.openplanner.team/stops/N223aaa", "https://tec.openplanner.team/stops/N223aab"], ["https://tec.openplanner.team/stops/LCOeg--1", "https://tec.openplanner.team/stops/Lpelouh1"], ["https://tec.openplanner.team/stops/N125abb", "https://tec.openplanner.team/stops/N125acb"], ["https://tec.openplanner.team/stops/H1bs110a", "https://tec.openplanner.team/stops/H1bs110c"], ["https://tec.openplanner.team/stops/X754ala", "https://tec.openplanner.team/stops/X754ama"], ["https://tec.openplanner.team/stops/NL74aha", "https://tec.openplanner.team/stops/NL74ahc"], ["https://tec.openplanner.team/stops/X394afa", "https://tec.openplanner.team/stops/X394aga"], ["https://tec.openplanner.team/stops/N118anc", "https://tec.openplanner.team/stops/N118axb"], ["https://tec.openplanner.team/stops/X664aid", "https://tec.openplanner.team/stops/X665aab"], ["https://tec.openplanner.team/stops/LlgguilC", "https://tec.openplanner.team/stops/Llgoise1"], ["https://tec.openplanner.team/stops/N516ajb", "https://tec.openplanner.team/stops/N516aoa"], ["https://tec.openplanner.team/stops/H4rm107b", "https://tec.openplanner.team/stops/H4rm111b"], ["https://tec.openplanner.team/stops/LXHeg--2", "https://tec.openplanner.team/stops/LXHfond2"], ["https://tec.openplanner.team/stops/N581aab", "https://tec.openplanner.team/stops/N581acb"], ["https://tec.openplanner.team/stops/H2gy100a", "https://tec.openplanner.team/stops/H2gy103a"], ["https://tec.openplanner.team/stops/Btubfab2", "https://tec.openplanner.team/stops/Btubnco2"], ["https://tec.openplanner.team/stops/Ltibord2", "https://tec.openplanner.team/stops/Ltimarr2"], ["https://tec.openplanner.team/stops/H4lz127b", "https://tec.openplanner.team/stops/H4lz164a"], ["https://tec.openplanner.team/stops/Bohnegl2", "https://tec.openplanner.team/stops/Bohnmon2"], ["https://tec.openplanner.team/stops/LBahome2", "https://tec.openplanner.team/stops/LLUalou1"], ["https://tec.openplanner.team/stops/LLGcarr1", "https://tec.openplanner.team/stops/LLGec--*"], ["https://tec.openplanner.team/stops/X743afa", "https://tec.openplanner.team/stops/X744aab"], ["https://tec.openplanner.team/stops/Ctrdelb2", "https://tec.openplanner.team/stops/Ctrterm2"], ["https://tec.openplanner.team/stops/X948ajc", "https://tec.openplanner.team/stops/X948aka"], ["https://tec.openplanner.team/stops/N535aba", "https://tec.openplanner.team/stops/N535acd"], ["https://tec.openplanner.team/stops/X872aaa", "https://tec.openplanner.team/stops/X872aab"], ["https://tec.openplanner.team/stops/LPAbrun1", "https://tec.openplanner.team/stops/LPAbrun2"], ["https://tec.openplanner.team/stops/X773aja", "https://tec.openplanner.team/stops/X774aad"], ["https://tec.openplanner.team/stops/X879ahb", "https://tec.openplanner.team/stops/X879anb"], ["https://tec.openplanner.team/stops/Csylaha2", "https://tec.openplanner.team/stops/Csyplac2"], ["https://tec.openplanner.team/stops/H1em101a", "https://tec.openplanner.team/stops/H1em101b"], ["https://tec.openplanner.team/stops/Clusncb1", "https://tec.openplanner.team/stops/H2lu100d"], ["https://tec.openplanner.team/stops/Lmochpl1", "https://tec.openplanner.team/stops/Lmopast2"], ["https://tec.openplanner.team/stops/LHHplac2", "https://tec.openplanner.team/stops/LHHtill2"], ["https://tec.openplanner.team/stops/LTRlonh1", "https://tec.openplanner.team/stops/LTRsain2"], ["https://tec.openplanner.team/stops/LNvrout1", "https://tec.openplanner.team/stops/LNvrout2"], ["https://tec.openplanner.team/stops/H1gr111b", "https://tec.openplanner.team/stops/H1hr128c"], ["https://tec.openplanner.team/stops/LPT97--2", "https://tec.openplanner.team/stops/LPurech2"], ["https://tec.openplanner.team/stops/X641axb", "https://tec.openplanner.team/stops/X641ayb"], ["https://tec.openplanner.team/stops/LWechea1", "https://tec.openplanner.team/stops/LWetrib1"], ["https://tec.openplanner.team/stops/N310aab", "https://tec.openplanner.team/stops/N313aaa"], ["https://tec.openplanner.team/stops/H5at107a", "https://tec.openplanner.team/stops/H5at142a"], ["https://tec.openplanner.team/stops/LLUreut1", "https://tec.openplanner.team/stops/LLUtrol1"], ["https://tec.openplanner.team/stops/H4hu116b", "https://tec.openplanner.team/stops/H4ld125a"], ["https://tec.openplanner.team/stops/H4wa148a", "https://tec.openplanner.team/stops/H4wa156a"], ["https://tec.openplanner.team/stops/Brixape2", "https://tec.openplanner.team/stops/Brixpbs1"], ["https://tec.openplanner.team/stops/Bbgepau1", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://tec.openplanner.team/stops/Ljuvieu1", "https://tec.openplanner.team/stops/LMFmerl1"], ["https://tec.openplanner.team/stops/X601bma", "https://tec.openplanner.team/stops/X601bmb"], ["https://tec.openplanner.team/stops/Bwatle32", "https://tec.openplanner.team/stops/Bwatmbv1"], ["https://tec.openplanner.team/stops/LTPgare*", "https://tec.openplanner.team/stops/LTPpisc1"], ["https://tec.openplanner.team/stops/N894aga", "https://tec.openplanner.team/stops/N894age"], ["https://tec.openplanner.team/stops/X927acb", "https://tec.openplanner.team/stops/X986ala"], ["https://tec.openplanner.team/stops/Lbocond2", "https://tec.openplanner.team/stops/LPLstri2"], ["https://tec.openplanner.team/stops/Clsferr1", "https://tec.openplanner.team/stops/H1ls108a"], ["https://tec.openplanner.team/stops/H2mo117a", "https://tec.openplanner.team/stops/H2mo130b"], ["https://tec.openplanner.team/stops/LrApont1", "https://tec.openplanner.team/stops/LrApont2"], ["https://tec.openplanner.team/stops/Bgemman2", "https://tec.openplanner.team/stops/N522afb"], ["https://tec.openplanner.team/stops/H4bo121a", "https://tec.openplanner.team/stops/H4og211a"], ["https://tec.openplanner.team/stops/N149aka", "https://tec.openplanner.team/stops/N149akb"], ["https://tec.openplanner.team/stops/Bhengri2", "https://tec.openplanner.team/stops/Bvirbru1"], ["https://tec.openplanner.team/stops/X364acb", "https://tec.openplanner.team/stops/X364ada"], ["https://tec.openplanner.team/stops/Bwlhppg1", "https://tec.openplanner.team/stops/Bwlhppg4"], ["https://tec.openplanner.team/stops/LLVcent1", "https://tec.openplanner.team/stops/X575aea"], ["https://tec.openplanner.team/stops/LHHindu2", "https://tec.openplanner.team/stops/LHHronh1"], ["https://tec.openplanner.team/stops/X361abb", "https://tec.openplanner.team/stops/X362aaa"], ["https://tec.openplanner.team/stops/N534aph", "https://tec.openplanner.team/stops/N534caa"], ["https://tec.openplanner.team/stops/Llxec--2", "https://tec.openplanner.team/stops/Lwapomp1"], ["https://tec.openplanner.team/stops/X886ahb", "https://tec.openplanner.team/stops/X889acb"], ["https://tec.openplanner.team/stops/X361aaa", "https://tec.openplanner.team/stops/X371afb"], ["https://tec.openplanner.team/stops/H1hm176a", "https://tec.openplanner.team/stops/H1hm177a"], ["https://tec.openplanner.team/stops/LhSbruc1", "https://tec.openplanner.team/stops/LhSschn1"], ["https://tec.openplanner.team/stops/Lvteg--1", "https://tec.openplanner.team/stops/Lvtfrai2"], ["https://tec.openplanner.team/stops/Bgliegl1", "https://tec.openplanner.team/stops/Bgliron1"], ["https://tec.openplanner.team/stops/N123abb", "https://tec.openplanner.team/stops/N150aba"], ["https://tec.openplanner.team/stops/Loucent1", "https://tec.openplanner.team/stops/Lougoff1"], ["https://tec.openplanner.team/stops/Bwaubru2", "https://tec.openplanner.team/stops/Bwaunce2"], ["https://tec.openplanner.team/stops/LOLrafh1", "https://tec.openplanner.team/stops/LSOchau1"], ["https://tec.openplanner.team/stops/X801bdd", "https://tec.openplanner.team/stops/X801ckb"], ["https://tec.openplanner.team/stops/Cchcaya1", "https://tec.openplanner.team/stops/Clomart2"], ["https://tec.openplanner.team/stops/LPOecol1", "https://tec.openplanner.team/stops/LPOwaut1"], ["https://tec.openplanner.team/stops/Bquegob1", "https://tec.openplanner.team/stops/Brebcgi1"], ["https://tec.openplanner.team/stops/Cfmgara1", "https://tec.openplanner.team/stops/Csostoc2"], ["https://tec.openplanner.team/stops/Cjugohi4", "https://tec.openplanner.team/stops/Cjuquai2"], ["https://tec.openplanner.team/stops/Crccano3", "https://tec.openplanner.team/stops/Crccano4"], ["https://tec.openplanner.team/stops/H1ml109a", "https://tec.openplanner.team/stops/H1ml111a"], ["https://tec.openplanner.team/stops/X888aba", "https://tec.openplanner.team/stops/X888abb"], ["https://tec.openplanner.team/stops/Lhufila1", "https://tec.openplanner.team/stops/LPoxhav1"], ["https://tec.openplanner.team/stops/H2ca105b", "https://tec.openplanner.team/stops/H2ca115a"], ["https://tec.openplanner.team/stops/H4ty281b", "https://tec.openplanner.team/stops/H4ty334b"], ["https://tec.openplanner.team/stops/N222abb", "https://tec.openplanner.team/stops/X222afb"], ["https://tec.openplanner.team/stops/N235aha", "https://tec.openplanner.team/stops/N236anb"], ["https://tec.openplanner.team/stops/N501gzy", "https://tec.openplanner.team/stops/N501hia"], ["https://tec.openplanner.team/stops/Ccoforr1", "https://tec.openplanner.team/stops/Ccorian1"], ["https://tec.openplanner.team/stops/LBGcent2", "https://tec.openplanner.team/stops/LBGjacq1"], ["https://tec.openplanner.team/stops/X663ada", "https://tec.openplanner.team/stops/X663aeb"], ["https://tec.openplanner.team/stops/Ctaallo2", "https://tec.openplanner.team/stops/Ctapn1"], ["https://tec.openplanner.team/stops/Cgxvvel1", "https://tec.openplanner.team/stops/Crorogn2"], ["https://tec.openplanner.team/stops/Bcrncce2", "https://tec.openplanner.team/stops/Bsgeqpb2"], ["https://tec.openplanner.team/stops/Lghmaha1", "https://tec.openplanner.team/stops/Lghmaha2"], ["https://tec.openplanner.team/stops/H5qu139b", "https://tec.openplanner.team/stops/H5qu150b"], ["https://tec.openplanner.team/stops/H1he101b", "https://tec.openplanner.team/stops/H1he102a"], ["https://tec.openplanner.team/stops/N513asb", "https://tec.openplanner.team/stops/N513ata"], ["https://tec.openplanner.team/stops/X982aac", "https://tec.openplanner.team/stops/X982aad"], ["https://tec.openplanner.team/stops/X605aea", "https://tec.openplanner.team/stops/X605agb"], ["https://tec.openplanner.team/stops/H2lh131a", "https://tec.openplanner.team/stops/H2lh131b"], ["https://tec.openplanner.team/stops/H2mm140a", "https://tec.openplanner.team/stops/H2mm140b"], ["https://tec.openplanner.team/stops/Ljubonf1", "https://tec.openplanner.team/stops/Ljuchaf2"], ["https://tec.openplanner.team/stops/Cjuvand1", "https://tec.openplanner.team/stops/Cjuvand2"], ["https://tec.openplanner.team/stops/LBTchai3", "https://tec.openplanner.team/stops/LBTxhen4"], ["https://tec.openplanner.team/stops/LFPdeme2", "https://tec.openplanner.team/stops/LFProt-2"], ["https://tec.openplanner.team/stops/N535ahb", "https://tec.openplanner.team/stops/N535ama"], ["https://tec.openplanner.team/stops/LNCchev2", "https://tec.openplanner.team/stops/LNCpi331"], ["https://tec.openplanner.team/stops/Livvill2", "https://tec.openplanner.team/stops/LRagrch2"], ["https://tec.openplanner.team/stops/X925agb", "https://tec.openplanner.team/stops/X925aka"], ["https://tec.openplanner.team/stops/H1do117a", "https://tec.openplanner.team/stops/H1do117b"], ["https://tec.openplanner.team/stops/Llgrass2", "https://tec.openplanner.team/stops/Llgrull1"], ["https://tec.openplanner.team/stops/Btsleco2", "https://tec.openplanner.team/stops/Btsllnd2"], ["https://tec.openplanner.team/stops/H4th142a", "https://tec.openplanner.team/stops/H4th142b"], ["https://tec.openplanner.team/stops/N528atb", "https://tec.openplanner.team/stops/N542aob"], ["https://tec.openplanner.team/stops/LmHbahn1", "https://tec.openplanner.team/stops/LmHbahn2"], ["https://tec.openplanner.team/stops/H1ci104a", "https://tec.openplanner.team/stops/H1ci104b"], ["https://tec.openplanner.team/stops/X784ahb", "https://tec.openplanner.team/stops/X784aia"], ["https://tec.openplanner.team/stops/Blhumga2", "https://tec.openplanner.team/stops/Blhunys2"], ["https://tec.openplanner.team/stops/N501kla", "https://tec.openplanner.team/stops/N501klb"], ["https://tec.openplanner.team/stops/Blsmcha1", "https://tec.openplanner.team/stops/Blsmjja1"], ["https://tec.openplanner.team/stops/LbUkrin1", "https://tec.openplanner.team/stops/LlSbuch1"], ["https://tec.openplanner.team/stops/LhGknip1", "https://tec.openplanner.team/stops/LhGlang1"], ["https://tec.openplanner.team/stops/N501cta", "https://tec.openplanner.team/stops/N501ctb"], ["https://tec.openplanner.team/stops/Cchdrai1", "https://tec.openplanner.team/stops/Cchdrai2"], ["https://tec.openplanner.team/stops/Cciarfr2", "https://tec.openplanner.team/stops/Ccipano1"], ["https://tec.openplanner.team/stops/H4to136a", "https://tec.openplanner.team/stops/H4to136b"], ["https://tec.openplanner.team/stops/LrAdrie5", "https://tec.openplanner.team/stops/LrAneue1"], ["https://tec.openplanner.team/stops/LNCrami1", "https://tec.openplanner.team/stops/LNCvann1"], ["https://tec.openplanner.team/stops/H1cd113a", "https://tec.openplanner.team/stops/H1ne145b"], ["https://tec.openplanner.team/stops/LSSeg--1", "https://tec.openplanner.team/stops/LSSjeun1"], ["https://tec.openplanner.team/stops/H4hg154a", "https://tec.openplanner.team/stops/H4mv187a"], ["https://tec.openplanner.team/stops/NH01aba", "https://tec.openplanner.team/stops/NH01anb"], ["https://tec.openplanner.team/stops/X817aca", "https://tec.openplanner.team/stops/X817acb"], ["https://tec.openplanner.team/stops/H4mb202b", "https://tec.openplanner.team/stops/H4mb205b"], ["https://tec.openplanner.team/stops/Bjdsjso1", "https://tec.openplanner.team/stops/Bjdspon2"], ["https://tec.openplanner.team/stops/Bmsgcap1", "https://tec.openplanner.team/stops/Bmsgstj2"], ["https://tec.openplanner.team/stops/NH21afa", "https://tec.openplanner.team/stops/NH21aga"], ["https://tec.openplanner.team/stops/Lpebeco1", "https://tec.openplanner.team/stops/Lpeflec2"], ["https://tec.openplanner.team/stops/LNIbas-2", "https://tec.openplanner.team/stops/LSZpont2"], ["https://tec.openplanner.team/stops/H1vh135a", "https://tec.openplanner.team/stops/H1vh135b"], ["https://tec.openplanner.team/stops/H2ca103a", "https://tec.openplanner.team/stops/H2ca103c"], ["https://tec.openplanner.team/stops/H2ll172a", "https://tec.openplanner.team/stops/H2ll196b"], ["https://tec.openplanner.team/stops/LeI39--3", "https://tec.openplanner.team/stops/LeIpiro3"], ["https://tec.openplanner.team/stops/H4ty273b", "https://tec.openplanner.team/stops/H4ty273d"], ["https://tec.openplanner.team/stops/Lmiensp*", "https://tec.openplanner.team/stops/Lmimili1"], ["https://tec.openplanner.team/stops/N501axb", "https://tec.openplanner.team/stops/N501azb"], ["https://tec.openplanner.team/stops/X754aea", "https://tec.openplanner.team/stops/X754ana"], ["https://tec.openplanner.team/stops/Bborche2", "https://tec.openplanner.team/stops/Bmoncab1"], ["https://tec.openplanner.team/stops/N535aea", "https://tec.openplanner.team/stops/N535aeb"], ["https://tec.openplanner.team/stops/Beclron1", "https://tec.openplanner.team/stops/Beclron2"], ["https://tec.openplanner.team/stops/Cmllait1", "https://tec.openplanner.team/stops/Cmllait2"], ["https://tec.openplanner.team/stops/LsVeite1", "https://tec.openplanner.team/stops/LsVeite2"], ["https://tec.openplanner.team/stops/Baegd741", "https://tec.openplanner.team/stops/Baegd742"], ["https://tec.openplanner.team/stops/Bmrl4ch2", "https://tec.openplanner.team/stops/Bmrlegl1"], ["https://tec.openplanner.team/stops/Cflchap4", "https://tec.openplanner.team/stops/Cwgmell4"], ["https://tec.openplanner.team/stops/LCLgend2", "https://tec.openplanner.team/stops/LCLstat1"], ["https://tec.openplanner.team/stops/Cjxpris2", "https://tec.openplanner.team/stops/Cnapetr2"], ["https://tec.openplanner.team/stops/Bohncha2", "https://tec.openplanner.team/stops/Bohnpla1"], ["https://tec.openplanner.team/stops/LFyec--1", "https://tec.openplanner.team/stops/LFymare4"], ["https://tec.openplanner.team/stops/N501dzb", "https://tec.openplanner.team/stops/N501eaa"], ["https://tec.openplanner.team/stops/N101aha", "https://tec.openplanner.team/stops/N101apa"], ["https://tec.openplanner.team/stops/N235aga", "https://tec.openplanner.team/stops/N235aha"], ["https://tec.openplanner.team/stops/Cmamons2", "https://tec.openplanner.team/stops/Cmasncb2"], ["https://tec.openplanner.team/stops/N519amb", "https://tec.openplanner.team/stops/N525afb"], ["https://tec.openplanner.team/stops/N507aia", "https://tec.openplanner.team/stops/N507aib"], ["https://tec.openplanner.team/stops/NL78abb", "https://tec.openplanner.team/stops/NL78aka"], ["https://tec.openplanner.team/stops/Bmlnbpr2", "https://tec.openplanner.team/stops/Bmlnmbo1"], ["https://tec.openplanner.team/stops/N383acb", "https://tec.openplanner.team/stops/N383aeb"], ["https://tec.openplanner.team/stops/X741aba", "https://tec.openplanner.team/stops/X741abc"], ["https://tec.openplanner.team/stops/LAbbass2", "https://tec.openplanner.team/stops/LRtmame2"], ["https://tec.openplanner.team/stops/Cdajume2", "https://tec.openplanner.team/stops/Cmabegh2"], ["https://tec.openplanner.team/stops/H4bc101b", "https://tec.openplanner.team/stops/H5bl116b"], ["https://tec.openplanner.team/stops/Llgsime2", "https://tec.openplanner.team/stops/Llgtcha2"], ["https://tec.openplanner.team/stops/LSkathe1", "https://tec.openplanner.team/stops/LSkdouf1"], ["https://tec.openplanner.team/stops/Cfcecol1", "https://tec.openplanner.team/stops/Cfcsaut3"], ["https://tec.openplanner.team/stops/LdUkreu1", "https://tec.openplanner.team/stops/LeSkreu2"], ["https://tec.openplanner.team/stops/Bbaubru1", "https://tec.openplanner.team/stops/Bniv4co1"], ["https://tec.openplanner.team/stops/Lbrfagn2", "https://tec.openplanner.team/stops/Lbrfune*"], ["https://tec.openplanner.team/stops/LRGcana1", "https://tec.openplanner.team/stops/LRGgend3"], ["https://tec.openplanner.team/stops/X782aba", "https://tec.openplanner.team/stops/X782ada"], ["https://tec.openplanner.team/stops/Llglamb1", "https://tec.openplanner.team/stops/Llglamb2"], ["https://tec.openplanner.team/stops/LCltrib2", "https://tec.openplanner.team/stops/LThnouv1"], ["https://tec.openplanner.team/stops/NL37aba", "https://tec.openplanner.team/stops/NL37aob"], ["https://tec.openplanner.team/stops/LeYloos1", "https://tec.openplanner.team/stops/LeYteeh2"], ["https://tec.openplanner.team/stops/N508acb", "https://tec.openplanner.team/stops/N516aqb"], ["https://tec.openplanner.team/stops/LHuetat1", "https://tec.openplanner.team/stops/LHurobi1"], ["https://tec.openplanner.team/stops/Lemcort2", "https://tec.openplanner.team/stops/Lemparc2"], ["https://tec.openplanner.team/stops/Bblaaca1", "https://tec.openplanner.team/stops/Bblaelo1"], ["https://tec.openplanner.team/stops/N138aha", "https://tec.openplanner.team/stops/N426aab"], ["https://tec.openplanner.team/stops/X659aaa", "https://tec.openplanner.team/stops/X659aya"], ["https://tec.openplanner.team/stops/LrOfrie1", "https://tec.openplanner.team/stops/LrOgara2"], ["https://tec.openplanner.team/stops/Blemmar2", "https://tec.openplanner.team/stops/Blemwob1"], ["https://tec.openplanner.team/stops/N501fdc", "https://tec.openplanner.team/stops/N501lzb"], ["https://tec.openplanner.team/stops/Ctuosso1", "https://tec.openplanner.team/stops/NC28agb"], ["https://tec.openplanner.team/stops/N141ahb", "https://tec.openplanner.team/stops/N143ada"], ["https://tec.openplanner.team/stops/N542aac", "https://tec.openplanner.team/stops/N542acc"], ["https://tec.openplanner.team/stops/X601aeb", "https://tec.openplanner.team/stops/X601btb"], ["https://tec.openplanner.team/stops/X925adb", "https://tec.openplanner.team/stops/X925afa"], ["https://tec.openplanner.team/stops/X390akb", "https://tec.openplanner.team/stops/X991aea"], ["https://tec.openplanner.team/stops/X876afa", "https://tec.openplanner.team/stops/X877acb"], ["https://tec.openplanner.team/stops/LTrchar2", "https://tec.openplanner.team/stops/LTrgibe2"], ["https://tec.openplanner.team/stops/N507aka", "https://tec.openplanner.team/stops/N507alc"], ["https://tec.openplanner.team/stops/X661aaa", "https://tec.openplanner.team/stops/X661abb"], ["https://tec.openplanner.team/stops/Bbeaap51", "https://tec.openplanner.team/stops/Bbeaneu3"], ["https://tec.openplanner.team/stops/Cluberl2", "https://tec.openplanner.team/stops/Cluplve4"], ["https://tec.openplanner.team/stops/LMfbuck1", "https://tec.openplanner.team/stops/LOtthie2"], ["https://tec.openplanner.team/stops/LBamate1", "https://tec.openplanner.team/stops/LBamate2"], ["https://tec.openplanner.team/stops/Bjausan1", "https://tec.openplanner.team/stops/Bmrl4ch2"], ["https://tec.openplanner.team/stops/H2ma203b", "https://tec.openplanner.team/stops/H2ma206b"], ["https://tec.openplanner.team/stops/LARarge1", "https://tec.openplanner.team/stops/LRIcent2"], ["https://tec.openplanner.team/stops/N562aha", "https://tec.openplanner.team/stops/N562aia"], ["https://tec.openplanner.team/stops/H5rx134a", "https://tec.openplanner.team/stops/H5rx134b"], ["https://tec.openplanner.team/stops/LNEbo471", "https://tec.openplanner.team/stops/LXHfalh1"], ["https://tec.openplanner.team/stops/H4to133a", "https://tec.openplanner.team/stops/H5at136a"], ["https://tec.openplanner.team/stops/X781aca", "https://tec.openplanner.team/stops/X781ahb"], ["https://tec.openplanner.team/stops/X802apa", "https://tec.openplanner.team/stops/X802apb"], ["https://tec.openplanner.team/stops/LMechpl1", "https://tec.openplanner.team/stops/LMemora2"], ["https://tec.openplanner.team/stops/LMOf21-1", "https://tec.openplanner.team/stops/LMOf21-2"], ["https://tec.openplanner.team/stops/Cwfmoul2", "https://tec.openplanner.team/stops/NC12aab"], ["https://tec.openplanner.team/stops/Llgdony2", "https://tec.openplanner.team/stops/Llgmair2"], ["https://tec.openplanner.team/stops/Cbfdufa1", "https://tec.openplanner.team/stops/Cctlimi1"], ["https://tec.openplanner.team/stops/X624afa", "https://tec.openplanner.team/stops/X624ala"], ["https://tec.openplanner.team/stops/LSZlegr1", "https://tec.openplanner.team/stops/LWycarr2"], ["https://tec.openplanner.team/stops/Cgocrus1", "https://tec.openplanner.team/stops/Cgocrus2"], ["https://tec.openplanner.team/stops/H4rx175b", "https://tec.openplanner.team/stops/H4tf147b"], ["https://tec.openplanner.team/stops/Lanpast2", "https://tec.openplanner.team/stops/Lanplat1"], ["https://tec.openplanner.team/stops/N135axa", "https://tec.openplanner.team/stops/N135bha"], ["https://tec.openplanner.team/stops/X806aja", "https://tec.openplanner.team/stops/X807adb"], ["https://tec.openplanner.team/stops/X911ala", "https://tec.openplanner.team/stops/X911amb"], ["https://tec.openplanner.team/stops/LPAeg--2", "https://tec.openplanner.team/stops/LSLhall*"], ["https://tec.openplanner.team/stops/LSNchen3", "https://tec.openplanner.team/stops/LSNnoul2"], ["https://tec.openplanner.team/stops/H4va231a", "https://tec.openplanner.team/stops/H4va234b"], ["https://tec.openplanner.team/stops/N351ata", "https://tec.openplanner.team/stops/N351atc"], ["https://tec.openplanner.team/stops/Blhugai1", "https://tec.openplanner.team/stops/Bwatber1"], ["https://tec.openplanner.team/stops/LJelava2", "https://tec.openplanner.team/stops/LJetrih1"], ["https://tec.openplanner.team/stops/NR21aaa", "https://tec.openplanner.team/stops/NR21afb"], ["https://tec.openplanner.team/stops/Cmareun1", "https://tec.openplanner.team/stops/CMprov1"], ["https://tec.openplanner.team/stops/LAMmc--1", "https://tec.openplanner.team/stops/LAMrich2"], ["https://tec.openplanner.team/stops/N261aba", "https://tec.openplanner.team/stops/N261acb"], ["https://tec.openplanner.team/stops/N137aeb", "https://tec.openplanner.team/stops/N137aec"], ["https://tec.openplanner.team/stops/Cjuhame1", "https://tec.openplanner.team/stops/Cjuhame2"], ["https://tec.openplanner.team/stops/Ljexhav3", "https://tec.openplanner.team/stops/Lmomine1"], ["https://tec.openplanner.team/stops/Lfhcime1", "https://tec.openplanner.team/stops/Lfhcime2"], ["https://tec.openplanner.team/stops/H4bh100a", "https://tec.openplanner.team/stops/H4jm117a"], ["https://tec.openplanner.team/stops/Ccuhaie1", "https://tec.openplanner.team/stops/Ccutrav4"], ["https://tec.openplanner.team/stops/Lsearbo2", "https://tec.openplanner.team/stops/Lsevill2"], ["https://tec.openplanner.team/stops/Llgfont1", "https://tec.openplanner.team/stops/Llgfont2"], ["https://tec.openplanner.team/stops/LaMadam2", "https://tec.openplanner.team/stops/LmI82--2"], ["https://tec.openplanner.team/stops/LwLprum1", "https://tec.openplanner.team/stops/LwLprum2"], ["https://tec.openplanner.team/stops/X730afb", "https://tec.openplanner.team/stops/X730aga"], ["https://tec.openplanner.team/stops/Cfcchas1", "https://tec.openplanner.team/stops/Cfcchas2"], ["https://tec.openplanner.team/stops/LlgOPER2", "https://tec.openplanner.team/stops/LlgOPER3"], ["https://tec.openplanner.team/stops/X687aaa", "https://tec.openplanner.team/stops/X687afa"], ["https://tec.openplanner.team/stops/LBBcamp1", "https://tec.openplanner.team/stops/LBBodet1"], ["https://tec.openplanner.team/stops/N505aba", "https://tec.openplanner.team/stops/N505ala"], ["https://tec.openplanner.team/stops/H1bu136b", "https://tec.openplanner.team/stops/H1bu138a"], ["https://tec.openplanner.team/stops/X949aib", "https://tec.openplanner.team/stops/X949aka"], ["https://tec.openplanner.team/stops/LWOrout1", "https://tec.openplanner.team/stops/LWOrout2"], ["https://tec.openplanner.team/stops/Cmocalv1", "https://tec.openplanner.team/stops/Cmoruau2"], ["https://tec.openplanner.team/stops/LWAalou1", "https://tec.openplanner.team/stops/LWAmouh2"], ["https://tec.openplanner.team/stops/N537abb", "https://tec.openplanner.team/stops/N537acb"], ["https://tec.openplanner.team/stops/X725aqb", "https://tec.openplanner.team/stops/X725beb"], ["https://tec.openplanner.team/stops/N110aaa", "https://tec.openplanner.team/stops/N110aab"], ["https://tec.openplanner.team/stops/Cdajume1", "https://tec.openplanner.team/stops/Cmafafe1"], ["https://tec.openplanner.team/stops/Lgrlimi1", "https://tec.openplanner.team/stops/Llgguer1"], ["https://tec.openplanner.team/stops/Bbrycar1", "https://tec.openplanner.team/stops/Bsampli1"], ["https://tec.openplanner.team/stops/LENengi1", "https://tec.openplanner.team/stops/LENpt--2"], ["https://tec.openplanner.team/stops/Cfasamb2", "https://tec.openplanner.team/stops/Cplrmon2"], ["https://tec.openplanner.team/stops/H5qu149a", "https://tec.openplanner.team/stops/H5qu152a"], ["https://tec.openplanner.team/stops/H1so133a", "https://tec.openplanner.team/stops/H1so139c"], ["https://tec.openplanner.team/stops/X812acb", "https://tec.openplanner.team/stops/X812aia"], ["https://tec.openplanner.team/stops/H1he107b", "https://tec.openplanner.team/stops/H1he111b"], ["https://tec.openplanner.team/stops/LAtaube1", "https://tec.openplanner.team/stops/LOCloup1"], ["https://tec.openplanner.team/stops/Cprgran2", "https://tec.openplanner.team/stops/NC44aga"], ["https://tec.openplanner.team/stops/Lagmoli2", "https://tec.openplanner.team/stops/Llgrome1"], ["https://tec.openplanner.team/stops/X595aha", "https://tec.openplanner.team/stops/X595ahb"], ["https://tec.openplanner.team/stops/H1au111a", "https://tec.openplanner.team/stops/H1au113a"], ["https://tec.openplanner.team/stops/Bitrcan2", "https://tec.openplanner.team/stops/Bitrcha2"], ["https://tec.openplanner.team/stops/X616abb", "https://tec.openplanner.team/stops/X616adb"], ["https://tec.openplanner.team/stops/X758aca", "https://tec.openplanner.team/stops/X758acb"], ["https://tec.openplanner.team/stops/LNCdoma3", "https://tec.openplanner.team/stops/LRRchen1"], ["https://tec.openplanner.team/stops/N236ama", "https://tec.openplanner.team/stops/N236amb"], ["https://tec.openplanner.team/stops/H1at109b", "https://tec.openplanner.team/stops/H1do119a"], ["https://tec.openplanner.team/stops/LbOdorf2", "https://tec.openplanner.team/stops/LbOvith2"], ["https://tec.openplanner.team/stops/N501dsa", "https://tec.openplanner.team/stops/N501dsb"], ["https://tec.openplanner.team/stops/H1je221a", "https://tec.openplanner.team/stops/H1je360a"], ["https://tec.openplanner.team/stops/H1cd110a", "https://tec.openplanner.team/stops/H1cd114a"], ["https://tec.openplanner.team/stops/X631ada", "https://tec.openplanner.team/stops/X644aea"], ["https://tec.openplanner.team/stops/Lanadmi2", "https://tec.openplanner.team/stops/Lanschu2"], ["https://tec.openplanner.team/stops/N501hab", "https://tec.openplanner.team/stops/N501icy"], ["https://tec.openplanner.team/stops/H2pe155b", "https://tec.openplanner.team/stops/H2pe157b"], ["https://tec.openplanner.team/stops/N535ajb", "https://tec.openplanner.team/stops/N539ayb"], ["https://tec.openplanner.team/stops/N549aca", "https://tec.openplanner.team/stops/N549acb"], ["https://tec.openplanner.team/stops/H1mm128a", "https://tec.openplanner.team/stops/H1mm128b"], ["https://tec.openplanner.team/stops/LGrchpl1", "https://tec.openplanner.team/stops/LHDpota3"], ["https://tec.openplanner.team/stops/H5rx104a", "https://tec.openplanner.team/stops/H5rx121a"], ["https://tec.openplanner.team/stops/Bquegob4", "https://tec.openplanner.team/stops/Brebeau1"], ["https://tec.openplanner.team/stops/X614aea", "https://tec.openplanner.team/stops/X614ayb"], ["https://tec.openplanner.team/stops/LlNsc652", "https://tec.openplanner.team/stops/LlNschu1"], ["https://tec.openplanner.team/stops/X607ada", "https://tec.openplanner.team/stops/X607aib"], ["https://tec.openplanner.team/stops/LCRfavr2", "https://tec.openplanner.team/stops/LTywyna2"], ["https://tec.openplanner.team/stops/LeI39--4", "https://tec.openplanner.team/stops/LeIpiro3"], ["https://tec.openplanner.team/stops/N584avb", "https://tec.openplanner.team/stops/N584axb"], ["https://tec.openplanner.team/stops/H1cu120a", "https://tec.openplanner.team/stops/H1je221a"], ["https://tec.openplanner.team/stops/X713aca", "https://tec.openplanner.team/stops/X713acb"], ["https://tec.openplanner.team/stops/NL80aca", "https://tec.openplanner.team/stops/NL80aib"], ["https://tec.openplanner.team/stops/H2hp116a", "https://tec.openplanner.team/stops/H2ll172d"], ["https://tec.openplanner.team/stops/Lghneuv2", "https://tec.openplanner.team/stops/Lghprea4"], ["https://tec.openplanner.team/stops/Crccamp1", "https://tec.openplanner.team/stops/Crccamp2"], ["https://tec.openplanner.team/stops/H1go174a", "https://tec.openplanner.team/stops/H1mx122b"], ["https://tec.openplanner.team/stops/X695ada", "https://tec.openplanner.team/stops/X696aja"], ["https://tec.openplanner.team/stops/Bquebut1", "https://tec.openplanner.team/stops/Bquecge1"], ["https://tec.openplanner.team/stops/X664aab", "https://tec.openplanner.team/stops/X665aab"], ["https://tec.openplanner.team/stops/LNCpi331", "https://tec.openplanner.team/stops/LRR2egl1"], ["https://tec.openplanner.team/stops/Blhulor2", "https://tec.openplanner.team/stops/Blhurcl1"], ["https://tec.openplanner.team/stops/NL78aca", "https://tec.openplanner.team/stops/NL78afa"], ["https://tec.openplanner.team/stops/X342aaa", "https://tec.openplanner.team/stops/X342aab"], ["https://tec.openplanner.team/stops/N531aka", "https://tec.openplanner.team/stops/N576aia"], ["https://tec.openplanner.team/stops/Bgnvcha2", "https://tec.openplanner.team/stops/Blhumpo3"], ["https://tec.openplanner.team/stops/H4ms144a", "https://tec.openplanner.team/stops/H4ms166a"], ["https://tec.openplanner.team/stops/N230aab", "https://tec.openplanner.team/stops/N230aja"], ["https://tec.openplanner.team/stops/Cbecarr1", "https://tec.openplanner.team/stops/N161abc"], ["https://tec.openplanner.team/stops/Llgbavi4", "https://tec.openplanner.team/stops/Llgsime2"], ["https://tec.openplanner.team/stops/X804bjb", "https://tec.openplanner.team/stops/X804bya"], ["https://tec.openplanner.team/stops/LACeg--1", "https://tec.openplanner.team/stops/LACeg--2"], ["https://tec.openplanner.team/stops/N501cmd", "https://tec.openplanner.team/stops/N501eha"], ["https://tec.openplanner.team/stops/LXoeg--3", "https://tec.openplanner.team/stops/LXopier2"], ["https://tec.openplanner.team/stops/LCTpt--1", "https://tec.openplanner.team/stops/LCTpt--2"], ["https://tec.openplanner.team/stops/H4ty268a", "https://tec.openplanner.team/stops/H4ty268b"], ["https://tec.openplanner.team/stops/LjeGRPME", "https://tec.openplanner.team/stops/Lsekubo4"], ["https://tec.openplanner.team/stops/N302aab", "https://tec.openplanner.team/stops/N302acb"], ["https://tec.openplanner.team/stops/X666aha", "https://tec.openplanner.team/stops/X666aib"], ["https://tec.openplanner.team/stops/H1vb141a", "https://tec.openplanner.team/stops/H1vb142b"], ["https://tec.openplanner.team/stops/H1ry137a", "https://tec.openplanner.team/stops/H1ry137b"], ["https://tec.openplanner.team/stops/LCEcent1", "https://tec.openplanner.team/stops/LCEcent2"], ["https://tec.openplanner.team/stops/X940aea", "https://tec.openplanner.team/stops/X940aed"], ["https://tec.openplanner.team/stops/N503aaa", "https://tec.openplanner.team/stops/N503aab"], ["https://tec.openplanner.team/stops/Bdoncar2", "https://tec.openplanner.team/stops/Bdoncen1"], ["https://tec.openplanner.team/stops/H5pe129b", "https://tec.openplanner.team/stops/H5pe142a"], ["https://tec.openplanner.team/stops/H1to151a", "https://tec.openplanner.team/stops/H1to152a"], ["https://tec.openplanner.team/stops/N521aib", "https://tec.openplanner.team/stops/N521aob"], ["https://tec.openplanner.team/stops/X725aoa", "https://tec.openplanner.team/stops/X725bgb"], ["https://tec.openplanner.team/stops/N523aaa", "https://tec.openplanner.team/stops/N523aca"], ["https://tec.openplanner.team/stops/LbTgeme2", "https://tec.openplanner.team/stops/LwYbruc4"], ["https://tec.openplanner.team/stops/Llgcham7", "https://tec.openplanner.team/stops/Llgguer1"], ["https://tec.openplanner.team/stops/LSBdelc2", "https://tec.openplanner.team/stops/LSGec--1"], ["https://tec.openplanner.team/stops/NL74aab", "https://tec.openplanner.team/stops/NL74aad"], ["https://tec.openplanner.team/stops/H4an111a", "https://tec.openplanner.team/stops/H4rs118a"], ["https://tec.openplanner.team/stops/LLAbure1", "https://tec.openplanner.team/stops/LLAbure2"], ["https://tec.openplanner.team/stops/H4mo137a", "https://tec.openplanner.team/stops/H4wa148a"], ["https://tec.openplanner.team/stops/LFrfrai1", "https://tec.openplanner.team/stops/LTRryta1"], ["https://tec.openplanner.team/stops/X601coa", "https://tec.openplanner.team/stops/X601cva"], ["https://tec.openplanner.team/stops/H1hw125b", "https://tec.openplanner.team/stops/H1ls109b"], ["https://tec.openplanner.team/stops/Lmimili2", "https://tec.openplanner.team/stops/Lvtcime1"], ["https://tec.openplanner.team/stops/Btieast1", "https://tec.openplanner.team/stops/LMastat4"], ["https://tec.openplanner.team/stops/LOTferm1", "https://tec.openplanner.team/stops/LXhmara2"], ["https://tec.openplanner.team/stops/LBavive1", "https://tec.openplanner.team/stops/LBavive2"], ["https://tec.openplanner.team/stops/N504aaa", "https://tec.openplanner.team/stops/N504aab"], ["https://tec.openplanner.team/stops/N536aga", "https://tec.openplanner.team/stops/N536agb"], ["https://tec.openplanner.team/stops/Balssvi2", "https://tec.openplanner.team/stops/Balswin2"], ["https://tec.openplanner.team/stops/NL74aca", "https://tec.openplanner.team/stops/NL74afa"], ["https://tec.openplanner.team/stops/H2sb258b", "https://tec.openplanner.team/stops/H2sb259b"], ["https://tec.openplanner.team/stops/N301aba", "https://tec.openplanner.team/stops/N301aib"], ["https://tec.openplanner.team/stops/X993abc", "https://tec.openplanner.team/stops/X993aha"], ["https://tec.openplanner.team/stops/Bgzdcwa1", "https://tec.openplanner.team/stops/Bgzdgli2"], ["https://tec.openplanner.team/stops/LAWdefu3", "https://tec.openplanner.team/stops/LAWeg--2"], ["https://tec.openplanner.team/stops/Cbufron2", "https://tec.openplanner.team/stops/Ccacoup2"], ["https://tec.openplanner.team/stops/LSTchat2", "https://tec.openplanner.team/stops/LSTgran1"], ["https://tec.openplanner.team/stops/NL68aab", "https://tec.openplanner.team/stops/NL68aad"], ["https://tec.openplanner.team/stops/Bohngai2", "https://tec.openplanner.team/stops/Bohnrph1"], ["https://tec.openplanner.team/stops/H4ha169b", "https://tec.openplanner.team/stops/H4ha170b"], ["https://tec.openplanner.team/stops/Cchcime1", "https://tec.openplanner.team/stops/Cchfaub2"], ["https://tec.openplanner.team/stops/Bsomtnd2", "https://tec.openplanner.team/stops/N584ada"], ["https://tec.openplanner.team/stops/NB33ajb", "https://tec.openplanner.team/stops/NB59akb"], ["https://tec.openplanner.team/stops/LtH37c-1", "https://tec.openplanner.team/stops/LtH37c-2"], ["https://tec.openplanner.team/stops/LWDcime1", "https://tec.openplanner.team/stops/LWDmass2"], ["https://tec.openplanner.team/stops/LlgguilF", "https://tec.openplanner.team/stops/Llgjoie2"], ["https://tec.openplanner.team/stops/LBhcent2", "https://tec.openplanner.team/stops/LBhsign2"], ["https://tec.openplanner.team/stops/X919aab", "https://tec.openplanner.team/stops/X921ada"], ["https://tec.openplanner.team/stops/Lvoec--2", "https://tec.openplanner.team/stops/Lvoeg--1"], ["https://tec.openplanner.team/stops/Lseathe2", "https://tec.openplanner.team/stops/Lseboia1"], ["https://tec.openplanner.team/stops/X801aia", "https://tec.openplanner.team/stops/X801aib"], ["https://tec.openplanner.team/stops/LFRgode1", "https://tec.openplanner.team/stops/LFRgode2"], ["https://tec.openplanner.team/stops/Clooues2", "https://tec.openplanner.team/stops/Clooues3"], ["https://tec.openplanner.team/stops/LkEhaag1", "https://tec.openplanner.team/stops/LlNsc651"], ["https://tec.openplanner.team/stops/H1hr118c", "https://tec.openplanner.team/stops/H1hr122b"], ["https://tec.openplanner.team/stops/X939ahb", "https://tec.openplanner.team/stops/X940aha"], ["https://tec.openplanner.team/stops/N528aka", "https://tec.openplanner.team/stops/N528ara"], ["https://tec.openplanner.team/stops/H1gh158a", "https://tec.openplanner.team/stops/H1gh165a"], ["https://tec.openplanner.team/stops/X982baa", "https://tec.openplanner.team/stops/X996acb"], ["https://tec.openplanner.team/stops/N564aba", "https://tec.openplanner.team/stops/N564acb"], ["https://tec.openplanner.team/stops/LBEmich1", "https://tec.openplanner.team/stops/LBEssab1"], ["https://tec.openplanner.team/stops/H1qy134b", "https://tec.openplanner.team/stops/H1qy136b"], ["https://tec.openplanner.team/stops/LHUhsar1", "https://tec.openplanner.team/stops/LHUhsar2"], ["https://tec.openplanner.team/stops/Lmoknae3", "https://tec.openplanner.team/stops/Lmoknae4"], ["https://tec.openplanner.team/stops/H1qu105a", "https://tec.openplanner.team/stops/H1wl123a"], ["https://tec.openplanner.team/stops/LhGkirc1", "https://tec.openplanner.team/stops/LhGlang1"], ["https://tec.openplanner.team/stops/Laltrav1", "https://tec.openplanner.team/stops/Llaeg--2"], ["https://tec.openplanner.team/stops/X714aea", "https://tec.openplanner.team/stops/X731aja"], ["https://tec.openplanner.team/stops/Cnabult3", "https://tec.openplanner.team/stops/Cnaplan2"], ["https://tec.openplanner.team/stops/N573aba", "https://tec.openplanner.team/stops/N573acb"], ["https://tec.openplanner.team/stops/LATcorp1", "https://tec.openplanner.team/stops/LHUzoni2"], ["https://tec.openplanner.team/stops/X639aka", "https://tec.openplanner.team/stops/X639akb"], ["https://tec.openplanner.team/stops/LWOplat1", "https://tec.openplanner.team/stops/LWOunio1"], ["https://tec.openplanner.team/stops/X937aba", "https://tec.openplanner.team/stops/X937aga"], ["https://tec.openplanner.team/stops/LSOboeu1", "https://tec.openplanner.team/stops/LSOtrou1"], ["https://tec.openplanner.team/stops/H1qu106b", "https://tec.openplanner.team/stops/H1qu116a"], ["https://tec.openplanner.team/stops/Blilwit1", "https://tec.openplanner.team/stops/Clproi1"], ["https://tec.openplanner.team/stops/H1ht121b", "https://tec.openplanner.team/stops/H1ht135a"], ["https://tec.openplanner.team/stops/X908adb", "https://tec.openplanner.team/stops/X911aoa"], ["https://tec.openplanner.team/stops/X653ada", "https://tec.openplanner.team/stops/X653adc"], ["https://tec.openplanner.team/stops/N311adb", "https://tec.openplanner.team/stops/N311afb"], ["https://tec.openplanner.team/stops/Brsrabe2", "https://tec.openplanner.team/stops/Brsrbbo2"], ["https://tec.openplanner.team/stops/LBItnt-*", "https://tec.openplanner.team/stops/Lmltrix*"], ["https://tec.openplanner.team/stops/LWechpl1", "https://tec.openplanner.team/stops/LWechpl2"], ["https://tec.openplanner.team/stops/N211aca", "https://tec.openplanner.team/stops/N211acb"], ["https://tec.openplanner.team/stops/Llgjoie1", "https://tec.openplanner.team/stops/Llgjoie3"], ["https://tec.openplanner.team/stops/X601bha", "https://tec.openplanner.team/stops/X601ceb"], ["https://tec.openplanner.team/stops/X771aab", "https://tec.openplanner.team/stops/X773aaa"], ["https://tec.openplanner.team/stops/H4ch117a", "https://tec.openplanner.team/stops/H4ch120b"], ["https://tec.openplanner.team/stops/NC14aaa", "https://tec.openplanner.team/stops/NC14apa"], ["https://tec.openplanner.team/stops/Blmlfau2", "https://tec.openplanner.team/stops/Blmlvex1"], ["https://tec.openplanner.team/stops/LTEkerk2", "https://tec.openplanner.team/stops/LTEziho1"], ["https://tec.openplanner.team/stops/N562bmb", "https://tec.openplanner.team/stops/N562boa"], ["https://tec.openplanner.team/stops/H4fg116a", "https://tec.openplanner.team/stops/H4fg116b"], ["https://tec.openplanner.team/stops/H1hh117a", "https://tec.openplanner.team/stops/H1hh117b"], ["https://tec.openplanner.team/stops/Ccabois1", "https://tec.openplanner.team/stops/Ccaegli2"], ["https://tec.openplanner.team/stops/X784aab", "https://tec.openplanner.team/stops/X784abb"], ["https://tec.openplanner.team/stops/X615aea", "https://tec.openplanner.team/stops/X615aib"], ["https://tec.openplanner.team/stops/Lbocorn2", "https://tec.openplanner.team/stops/Louaout2"], ["https://tec.openplanner.team/stops/Ljecoqu1", "https://tec.openplanner.team/stops/LjeGRPME"], ["https://tec.openplanner.team/stops/N534adb", "https://tec.openplanner.team/stops/N553ahb"], ["https://tec.openplanner.team/stops/LGOcana1", "https://tec.openplanner.team/stops/LGOdelv2"], ["https://tec.openplanner.team/stops/Bhmmpos1", "https://tec.openplanner.team/stops/Bhmmpos2"], ["https://tec.openplanner.team/stops/NH01aja", "https://tec.openplanner.team/stops/NH01ajb"], ["https://tec.openplanner.team/stops/LWDplac2", "https://tec.openplanner.team/stops/LWDsott1"], ["https://tec.openplanner.team/stops/N549adb", "https://tec.openplanner.team/stops/N549aib"], ["https://tec.openplanner.team/stops/X801bra", "https://tec.openplanner.team/stops/X801bzb"], ["https://tec.openplanner.team/stops/LSsaxhe2", "https://tec.openplanner.team/stops/LSznoel1"], ["https://tec.openplanner.team/stops/LHMbami2", "https://tec.openplanner.team/stops/LHMsipp2"], ["https://tec.openplanner.team/stops/Crebrux2", "https://tec.openplanner.team/stops/Crefont2"], ["https://tec.openplanner.team/stops/X910afb", "https://tec.openplanner.team/stops/X910agb"], ["https://tec.openplanner.team/stops/H4ta130a", "https://tec.openplanner.team/stops/H4ta132b"], ["https://tec.openplanner.team/stops/H4pi132b", "https://tec.openplanner.team/stops/H4pi134a"], ["https://tec.openplanner.team/stops/N501bwa", "https://tec.openplanner.team/stops/N501bwb"], ["https://tec.openplanner.team/stops/Bfledpi2", "https://tec.openplanner.team/stops/Cflchel4"], ["https://tec.openplanner.team/stops/Bolgeva2", "https://tec.openplanner.team/stops/Bolgmpl1"], ["https://tec.openplanner.team/stops/X991aka", "https://tec.openplanner.team/stops/X991ala"], ["https://tec.openplanner.team/stops/LBhschu1", "https://tec.openplanner.team/stops/X792abb"], ["https://tec.openplanner.team/stops/H4fg116b", "https://tec.openplanner.team/stops/H4wn125a"], ["https://tec.openplanner.team/stops/N532aca", "https://tec.openplanner.team/stops/N532ada"], ["https://tec.openplanner.team/stops/X908aqa", "https://tec.openplanner.team/stops/X910aab"], ["https://tec.openplanner.team/stops/LEnchan1", "https://tec.openplanner.team/stops/LEnvill2"], ["https://tec.openplanner.team/stops/Bbgnvel1", "https://tec.openplanner.team/stops/N584bqa"], ["https://tec.openplanner.team/stops/LDapota1", "https://tec.openplanner.team/stops/LOMcabi2"], ["https://tec.openplanner.team/stops/Cfovent1", "https://tec.openplanner.team/stops/Cfowall1"], ["https://tec.openplanner.team/stops/Lmibove3", "https://tec.openplanner.team/stops/Lmicoop1"], ["https://tec.openplanner.team/stops/LROcent1", "https://tec.openplanner.team/stops/LROrtba2"], ["https://tec.openplanner.team/stops/H2pr114a", "https://tec.openplanner.team/stops/H2pr114b"], ["https://tec.openplanner.team/stops/X754anb", "https://tec.openplanner.team/stops/X754aob"], ["https://tec.openplanner.team/stops/LPrcarr2", "https://tec.openplanner.team/stops/X261aaa"], ["https://tec.openplanner.team/stops/H1ob339a", "https://tec.openplanner.team/stops/H1sd344a"], ["https://tec.openplanner.team/stops/H4fr143a", "https://tec.openplanner.team/stops/H4te254a"], ["https://tec.openplanner.team/stops/H1sa113b", "https://tec.openplanner.team/stops/H1sa115b"], ["https://tec.openplanner.team/stops/Bbgerlr2", "https://tec.openplanner.team/stops/Bbgewal2"], ["https://tec.openplanner.team/stops/Ccybouc2", "https://tec.openplanner.team/stops/NH01aea"], ["https://tec.openplanner.team/stops/LAyabri1", "https://tec.openplanner.team/stops/LSHmais1"], ["https://tec.openplanner.team/stops/Lfhdonn2", "https://tec.openplanner.team/stops/Lsecris3"], ["https://tec.openplanner.team/stops/H5rx139a", "https://tec.openplanner.team/stops/H5rx140a"], ["https://tec.openplanner.team/stops/Lccawir1", "https://tec.openplanner.team/stops/LENgend1"], ["https://tec.openplanner.team/stops/Lancolr1", "https://tec.openplanner.team/stops/Lanegal1"], ["https://tec.openplanner.team/stops/LBWbatt1", "https://tec.openplanner.team/stops/LVImons1"], ["https://tec.openplanner.team/stops/X639apa", "https://tec.openplanner.team/stops/X639asb"], ["https://tec.openplanner.team/stops/Buccdch1", "https://tec.openplanner.team/stops/Buccdch2"], ["https://tec.openplanner.team/stops/Bneersa2", "https://tec.openplanner.team/stops/Bneesj32"], ["https://tec.openplanner.team/stops/X901adb", "https://tec.openplanner.team/stops/X901aea"], ["https://tec.openplanner.team/stops/LWAeloi1", "https://tec.openplanner.team/stops/LWAeloi2"], ["https://tec.openplanner.team/stops/H4hq130b", "https://tec.openplanner.team/stops/H4mb143b"], ["https://tec.openplanner.team/stops/X725aka", "https://tec.openplanner.team/stops/X725ama"], ["https://tec.openplanner.team/stops/X601bub", "https://tec.openplanner.team/stops/X601dha"], ["https://tec.openplanner.team/stops/H5at106a", "https://tec.openplanner.team/stops/H5at116a"], ["https://tec.openplanner.team/stops/N509aca", "https://tec.openplanner.team/stops/N511aqa"], ["https://tec.openplanner.team/stops/LFCkett1", "https://tec.openplanner.team/stops/LWRchem2"], ["https://tec.openplanner.team/stops/X663aea", "https://tec.openplanner.team/stops/X663aga"], ["https://tec.openplanner.team/stops/Bjodcad2", "https://tec.openplanner.team/stops/Bjodgar1"], ["https://tec.openplanner.team/stops/X608aeb", "https://tec.openplanner.team/stops/X608ayb"], ["https://tec.openplanner.team/stops/N201aoa", "https://tec.openplanner.team/stops/N201aob"], ["https://tec.openplanner.team/stops/X908aca", "https://tec.openplanner.team/stops/X954aba"], ["https://tec.openplanner.team/stops/X630ada", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/X637aba", "https://tec.openplanner.team/stops/X637abb"], ["https://tec.openplanner.team/stops/Cmtplac3", "https://tec.openplanner.team/stops/Cmtplac4"], ["https://tec.openplanner.team/stops/LBDcarr1", "https://tec.openplanner.team/stops/LVEcacq1"], ["https://tec.openplanner.team/stops/LTiflor2", "https://tec.openplanner.team/stops/LTiruel1"], ["https://tec.openplanner.team/stops/Lprmerc*", "https://tec.openplanner.team/stops/Lprthie2"], ["https://tec.openplanner.team/stops/N337aga", "https://tec.openplanner.team/stops/N337agb"], ["https://tec.openplanner.team/stops/X716acb", "https://tec.openplanner.team/stops/X736aia"], ["https://tec.openplanner.team/stops/N201aqb", "https://tec.openplanner.team/stops/N201awa"], ["https://tec.openplanner.team/stops/Lsemaha2", "https://tec.openplanner.team/stops/Lserena2"], ["https://tec.openplanner.team/stops/Lrcchpl2", "https://tec.openplanner.team/stops/Lvoplac1"], ["https://tec.openplanner.team/stops/X771adb", "https://tec.openplanner.team/stops/X773amb"], ["https://tec.openplanner.team/stops/LnEkirc2", "https://tec.openplanner.team/stops/LnEkirc3"], ["https://tec.openplanner.team/stops/H3bi108a", "https://tec.openplanner.team/stops/H3bi108b"], ["https://tec.openplanner.team/stops/H1hh109b", "https://tec.openplanner.team/stops/H1hh113a"], ["https://tec.openplanner.team/stops/LATmale2", "https://tec.openplanner.team/stops/LWNfani1"], ["https://tec.openplanner.team/stops/N513axb", "https://tec.openplanner.team/stops/N520aba"], ["https://tec.openplanner.team/stops/N513aza", "https://tec.openplanner.team/stops/N516adb"], ["https://tec.openplanner.team/stops/Bgnpgar2", "https://tec.openplanner.team/stops/Bwaypon1"], ["https://tec.openplanner.team/stops/X775aaa", "https://tec.openplanner.team/stops/X953aaa"], ["https://tec.openplanner.team/stops/Cpllimi1", "https://tec.openplanner.team/stops/Cpllimi3"], ["https://tec.openplanner.team/stops/H4bf108b", "https://tec.openplanner.team/stops/H4bn173a"], ["https://tec.openplanner.team/stops/Bixlozo2", "https://tec.openplanner.team/stops/Buccvch2"], ["https://tec.openplanner.team/stops/LWAcham1", "https://tec.openplanner.team/stops/LWAhart1"], ["https://tec.openplanner.team/stops/LFUfonc2", "https://tec.openplanner.team/stops/LHuetat1"], ["https://tec.openplanner.team/stops/X901agb", "https://tec.openplanner.team/stops/X902aub"], ["https://tec.openplanner.team/stops/H4oq229b", "https://tec.openplanner.team/stops/H4oq409b"], ["https://tec.openplanner.team/stops/N160aea", "https://tec.openplanner.team/stops/N160afa"], ["https://tec.openplanner.team/stops/LHueg--1", "https://tec.openplanner.team/stops/NL73acb"], ["https://tec.openplanner.team/stops/X804btb", "https://tec.openplanner.team/stops/X818aaa"], ["https://tec.openplanner.team/stops/X822agb", "https://tec.openplanner.team/stops/X822aka"], ["https://tec.openplanner.team/stops/Buccchu1", "https://tec.openplanner.team/stops/Buccgob1"], ["https://tec.openplanner.team/stops/LBegare1", "https://tec.openplanner.team/stops/LBegare2"], ["https://tec.openplanner.team/stops/Bbgelre2", "https://tec.openplanner.team/stops/Bwavbmo1"], ["https://tec.openplanner.team/stops/H5el104a", "https://tec.openplanner.team/stops/H5wo130a"], ["https://tec.openplanner.team/stops/Brebgpl1", "https://tec.openplanner.team/stops/Brebhos1"], ["https://tec.openplanner.team/stops/Llggcha1", "https://tec.openplanner.team/stops/Lsntvbi2"], ["https://tec.openplanner.team/stops/Lgrorch1", "https://tec.openplanner.team/stops/Lgrorch2"], ["https://tec.openplanner.team/stops/LCPcomm1", "https://tec.openplanner.team/stops/LCPlebl1"], ["https://tec.openplanner.team/stops/N544aba", "https://tec.openplanner.team/stops/N544afb"], ["https://tec.openplanner.team/stops/Cfaterg6", "https://tec.openplanner.team/stops/Crsapol2"], ["https://tec.openplanner.team/stops/Brsreco1", "https://tec.openplanner.team/stops/Brsreco2"], ["https://tec.openplanner.team/stops/LVNroua2", "https://tec.openplanner.team/stops/LWzwanz2"], ["https://tec.openplanner.team/stops/Bnivpla2", "https://tec.openplanner.team/stops/Bnivsse1"], ["https://tec.openplanner.team/stops/N510aca", "https://tec.openplanner.team/stops/N510aea"], ["https://tec.openplanner.team/stops/H4gu107b", "https://tec.openplanner.team/stops/H4ry130a"], ["https://tec.openplanner.team/stops/LCAwals2", "https://tec.openplanner.team/stops/LPcforg1"], ["https://tec.openplanner.team/stops/Blanath2", "https://tec.openplanner.team/stops/Blankal4"], ["https://tec.openplanner.team/stops/H1bl104b", "https://tec.openplanner.team/stops/H1bl105b"], ["https://tec.openplanner.team/stops/X621aca", "https://tec.openplanner.team/stops/X621adb"], ["https://tec.openplanner.team/stops/Brixpje2", "https://tec.openplanner.team/stops/Brixpro2"], ["https://tec.openplanner.team/stops/Cgrgrce2", "https://tec.openplanner.team/stops/Cnaplan1"], ["https://tec.openplanner.team/stops/Lprorem1", "https://tec.openplanner.team/stops/Lprorem2"], ["https://tec.openplanner.team/stops/X351aba", "https://tec.openplanner.team/stops/X351acb"], ["https://tec.openplanner.team/stops/H1fl133b", "https://tec.openplanner.team/stops/H1fl141a"], ["https://tec.openplanner.team/stops/H4br110a", "https://tec.openplanner.team/stops/H4cl114a"], ["https://tec.openplanner.team/stops/N501arb", "https://tec.openplanner.team/stops/N501cdb"], ["https://tec.openplanner.team/stops/Ccyfroi1", "https://tec.openplanner.team/stops/NH01aea"], ["https://tec.openplanner.team/stops/Bgemkal2", "https://tec.openplanner.team/stops/N522aca"], ["https://tec.openplanner.team/stops/H1vt193a", "https://tec.openplanner.team/stops/H1vt194b"], ["https://tec.openplanner.team/stops/LOuouff1", "https://tec.openplanner.team/stops/LOurena1"], ["https://tec.openplanner.team/stops/X925akb", "https://tec.openplanner.team/stops/X947aeb"], ["https://tec.openplanner.team/stops/X665aba", "https://tec.openplanner.team/stops/X666ahb"], ["https://tec.openplanner.team/stops/Llgbry-1", "https://tec.openplanner.team/stops/Llghori1"], ["https://tec.openplanner.team/stops/N501coa", "https://tec.openplanner.team/stops/N535aaa"], ["https://tec.openplanner.team/stops/LBTcarr4", "https://tec.openplanner.team/stops/LHEbeau1"], ["https://tec.openplanner.team/stops/H1pe131a", "https://tec.openplanner.team/stops/H1vb143a"], ["https://tec.openplanner.team/stops/LMEwerg1", "https://tec.openplanner.team/stops/LSOladr2"], ["https://tec.openplanner.team/stops/X907abb", "https://tec.openplanner.team/stops/X907ajb"], ["https://tec.openplanner.team/stops/Lvefluc2", "https://tec.openplanner.team/stops/Lvepire1"], ["https://tec.openplanner.team/stops/X724aha", "https://tec.openplanner.team/stops/X766aaa"], ["https://tec.openplanner.team/stops/Bgntalt1", "https://tec.openplanner.team/stops/Bgntalt4"], ["https://tec.openplanner.team/stops/LLecolo1", "https://tec.openplanner.team/stops/X547ahb"], ["https://tec.openplanner.team/stops/LOUbarr1", "https://tec.openplanner.team/stops/LOUbarr3"], ["https://tec.openplanner.team/stops/H2jo163a", "https://tec.openplanner.team/stops/H2jo164b"], ["https://tec.openplanner.team/stops/X773acb", "https://tec.openplanner.team/stops/X954aba"], ["https://tec.openplanner.team/stops/X818adb", "https://tec.openplanner.team/stops/X818aeb"], ["https://tec.openplanner.team/stops/H2ll184a", "https://tec.openplanner.team/stops/H2ll187c"], ["https://tec.openplanner.team/stops/LPAmc--2", "https://tec.openplanner.team/stops/LSLhall*"], ["https://tec.openplanner.team/stops/X623aea", "https://tec.openplanner.team/stops/X623aeb"], ["https://tec.openplanner.team/stops/NL67abb", "https://tec.openplanner.team/stops/NL72acb"], ["https://tec.openplanner.team/stops/Bmaregl1", "https://tec.openplanner.team/stops/Btilmar1"], ["https://tec.openplanner.team/stops/X607aha", "https://tec.openplanner.team/stops/X607aia"], ["https://tec.openplanner.team/stops/LHGbeur3", "https://tec.openplanner.team/stops/LXhvina1"], ["https://tec.openplanner.team/stops/N501grd", "https://tec.openplanner.team/stops/N501grg"], ["https://tec.openplanner.team/stops/H4pp122b", "https://tec.openplanner.team/stops/H4qu408a"], ["https://tec.openplanner.team/stops/LBpcren2", "https://tec.openplanner.team/stops/LBpecco4"], ["https://tec.openplanner.team/stops/X986abb", "https://tec.openplanner.team/stops/X986asa"], ["https://tec.openplanner.team/stops/LWHtrui1", "https://tec.openplanner.team/stops/LWHwaas4"], ["https://tec.openplanner.team/stops/Lprdavi1", "https://tec.openplanner.team/stops/Lvefanc2"], ["https://tec.openplanner.team/stops/Cbuegl1", "https://tec.openplanner.team/stops/Cbupla1"], ["https://tec.openplanner.team/stops/LhP25--2", "https://tec.openplanner.team/stops/LhPhale1"], ["https://tec.openplanner.team/stops/LSochal2", "https://tec.openplanner.team/stops/LSoeg--2"], ["https://tec.openplanner.team/stops/Cmamonu2", "https://tec.openplanner.team/stops/Cmychap4"], ["https://tec.openplanner.team/stops/LsVgesc1", "https://tec.openplanner.team/stops/LsVhupp2"], ["https://tec.openplanner.team/stops/H4ef111a", "https://tec.openplanner.team/stops/H4ef111b"], ["https://tec.openplanner.team/stops/Bsences2", "https://tec.openplanner.team/stops/H2se107a"], ["https://tec.openplanner.team/stops/N512ada", "https://tec.openplanner.team/stops/N512apb"], ["https://tec.openplanner.team/stops/Cchba04", "https://tec.openplanner.team/stops/CMba1"], ["https://tec.openplanner.team/stops/Bnivbpe1", "https://tec.openplanner.team/stops/Bptrlux1"], ["https://tec.openplanner.team/stops/H1gh171a", "https://tec.openplanner.team/stops/H1gh171b"], ["https://tec.openplanner.team/stops/LOucarr3", "https://tec.openplanner.team/stops/LOucarr4"], ["https://tec.openplanner.team/stops/X979ada", "https://tec.openplanner.team/stops/X979adb"], ["https://tec.openplanner.team/stops/N137aec", "https://tec.openplanner.team/stops/N137agb"], ["https://tec.openplanner.team/stops/Lhuecol1", "https://tec.openplanner.team/stops/Lhuecol2"], ["https://tec.openplanner.team/stops/N501lda", "https://tec.openplanner.team/stops/N538abb"], ["https://tec.openplanner.team/stops/LAUmerc1", "https://tec.openplanner.team/stops/LAUmerc2"], ["https://tec.openplanner.team/stops/Bptrman1", "https://tec.openplanner.team/stops/Bptrman2"], ["https://tec.openplanner.team/stops/X734aha", "https://tec.openplanner.team/stops/X953aaa"], ["https://tec.openplanner.team/stops/N209ada", "https://tec.openplanner.team/stops/N209aea"], ["https://tec.openplanner.team/stops/Bblmpro1", "https://tec.openplanner.team/stops/Bnilpie1"], ["https://tec.openplanner.team/stops/Cmesncv3", "https://tec.openplanner.team/stops/Cvpcour1"], ["https://tec.openplanner.team/stops/H4mo204a", "https://tec.openplanner.team/stops/H4mo205b"], ["https://tec.openplanner.team/stops/H2ma203a", "https://tec.openplanner.team/stops/H2ma210a"], ["https://tec.openplanner.team/stops/X882aha", "https://tec.openplanner.team/stops/X898aeb"], ["https://tec.openplanner.team/stops/N139aeb", "https://tec.openplanner.team/stops/N146afb"], ["https://tec.openplanner.team/stops/X620aga", "https://tec.openplanner.team/stops/X620agb"], ["https://tec.openplanner.team/stops/X889adb", "https://tec.openplanner.team/stops/X889aeb"], ["https://tec.openplanner.team/stops/Blimrof1", "https://tec.openplanner.team/stops/Brixble5"], ["https://tec.openplanner.team/stops/H4bo116a", "https://tec.openplanner.team/stops/H4bo122b"], ["https://tec.openplanner.team/stops/Bvircen2", "https://tec.openplanner.team/stops/Bvirmav2"], ["https://tec.openplanner.team/stops/N501dqa", "https://tec.openplanner.team/stops/N501mvd"], ["https://tec.openplanner.team/stops/N530ada", "https://tec.openplanner.team/stops/N530aja"], ["https://tec.openplanner.team/stops/Lfhmalv1", "https://tec.openplanner.team/stops/Livgera3"], ["https://tec.openplanner.team/stops/H2hp119b", "https://tec.openplanner.team/stops/H2ll260a"], ["https://tec.openplanner.team/stops/Cmocime1", "https://tec.openplanner.team/stops/Cmosaba3"], ["https://tec.openplanner.team/stops/LLbmalm1", "https://tec.openplanner.team/stops/LLbpt--2"], ["https://tec.openplanner.team/stops/LGetroi1", "https://tec.openplanner.team/stops/LGetroi2"], ["https://tec.openplanner.team/stops/X946ada", "https://tec.openplanner.team/stops/X946adb"], ["https://tec.openplanner.team/stops/NC44ada", "https://tec.openplanner.team/stops/NC44adb"], ["https://tec.openplanner.team/stops/Cgocrus2", "https://tec.openplanner.team/stops/Cgon52"], ["https://tec.openplanner.team/stops/H1fv103b", "https://tec.openplanner.team/stops/H1ls105b"], ["https://tec.openplanner.team/stops/N513acd", "https://tec.openplanner.team/stops/N513adb"], ["https://tec.openplanner.team/stops/Chthttr2", "https://tec.openplanner.team/stops/Cthbifu1"], ["https://tec.openplanner.team/stops/N235aba", "https://tec.openplanner.team/stops/N235abb"], ["https://tec.openplanner.team/stops/Cchsud10", "https://tec.openplanner.team/stops/Cchsud18"], ["https://tec.openplanner.team/stops/H1ch101b", "https://tec.openplanner.team/stops/H1hh116a"], ["https://tec.openplanner.team/stops/H4ma202b", "https://tec.openplanner.team/stops/H4ma400a"], ["https://tec.openplanner.team/stops/LLR4bra1", "https://tec.openplanner.team/stops/LLRgdma1"], ["https://tec.openplanner.team/stops/Bnivgpl2", "https://tec.openplanner.team/stops/Bnivpso2"], ["https://tec.openplanner.team/stops/LWbboeg2", "https://tec.openplanner.team/stops/LWbregn1"], ["https://tec.openplanner.team/stops/N512adb", "https://tec.openplanner.team/stops/N512aua"], ["https://tec.openplanner.team/stops/N348abb", "https://tec.openplanner.team/stops/N348acb"], ["https://tec.openplanner.team/stops/N204acb", "https://tec.openplanner.team/stops/N204afa"], ["https://tec.openplanner.team/stops/Lghcoqs2", "https://tec.openplanner.team/stops/Lghpier1"], ["https://tec.openplanner.team/stops/LWRferm1", "https://tec.openplanner.team/stops/LWRtroi2"], ["https://tec.openplanner.team/stops/H4ct111a", "https://tec.openplanner.team/stops/H5pe130a"], ["https://tec.openplanner.team/stops/Bhaldbo1", "https://tec.openplanner.team/stops/Blempuc2"], ["https://tec.openplanner.team/stops/LFCscho2", "https://tec.openplanner.team/stops/LFCvoge4"], ["https://tec.openplanner.team/stops/H1ho123b", "https://tec.openplanner.team/stops/H1ho140b"], ["https://tec.openplanner.team/stops/N522ata", "https://tec.openplanner.team/stops/N529aea"], ["https://tec.openplanner.team/stops/LGrfont1", "https://tec.openplanner.team/stops/LORherl1"], ["https://tec.openplanner.team/stops/Bmalper1", "https://tec.openplanner.team/stops/Borbod91"], ["https://tec.openplanner.team/stops/LNCesne1", "https://tec.openplanner.team/stops/LNCesne2"], ["https://tec.openplanner.team/stops/X735abb", "https://tec.openplanner.team/stops/X735acb"], ["https://tec.openplanner.team/stops/X925ama", "https://tec.openplanner.team/stops/X949aea"], ["https://tec.openplanner.team/stops/Bblaece1", "https://tec.openplanner.team/stops/Bblapri1"], ["https://tec.openplanner.team/stops/Cstdona5", "https://tec.openplanner.team/stops/Cstdona6"], ["https://tec.openplanner.team/stops/LHMa2322", "https://tec.openplanner.team/stops/LRmmabr2"], ["https://tec.openplanner.team/stops/X717aaa", "https://tec.openplanner.team/stops/X717aeb"], ["https://tec.openplanner.team/stops/Bitrcha2", "https://tec.openplanner.team/stops/Bitrmde1"], ["https://tec.openplanner.team/stops/X662aca", "https://tec.openplanner.team/stops/X663afb"], ["https://tec.openplanner.team/stops/LLRgdma2", "https://tec.openplanner.team/stops/LLStour2"], ["https://tec.openplanner.team/stops/N214aga", "https://tec.openplanner.team/stops/N214ahb"], ["https://tec.openplanner.team/stops/Lrahoig1", "https://tec.openplanner.team/stops/Lrahoig2"], ["https://tec.openplanner.team/stops/Bborbif1", "https://tec.openplanner.team/stops/Bborche1"], ["https://tec.openplanner.team/stops/X904ada", "https://tec.openplanner.team/stops/X904aeb"], ["https://tec.openplanner.team/stops/X823aaa", "https://tec.openplanner.team/stops/X823aba"], ["https://tec.openplanner.team/stops/N311adb", "https://tec.openplanner.team/stops/N368aca"], ["https://tec.openplanner.team/stops/H5rx110a", "https://tec.openplanner.team/stops/H5rx110b"], ["https://tec.openplanner.team/stops/X670ana", "https://tec.openplanner.team/stops/X670aob"], ["https://tec.openplanner.team/stops/X801abb", "https://tec.openplanner.team/stops/X802aqa"], ["https://tec.openplanner.team/stops/Ccipier2", "https://tec.openplanner.team/stops/Cmtcapi2"], ["https://tec.openplanner.team/stops/N202aha", "https://tec.openplanner.team/stops/N202aib"], ["https://tec.openplanner.team/stops/LGe4bra1", "https://tec.openplanner.team/stops/LGesent1"], ["https://tec.openplanner.team/stops/N228aea", "https://tec.openplanner.team/stops/N228aeb"], ["https://tec.openplanner.team/stops/X627aba", "https://tec.openplanner.team/stops/X627abb"], ["https://tec.openplanner.team/stops/Bsammon2", "https://tec.openplanner.team/stops/Bsammon3"], ["https://tec.openplanner.team/stops/H1bi100a", "https://tec.openplanner.team/stops/H1bi104b"], ["https://tec.openplanner.team/stops/Cgyblob1", "https://tec.openplanner.team/stops/Cgygayo4"], ["https://tec.openplanner.team/stops/N534awb", "https://tec.openplanner.team/stops/N534awc"], ["https://tec.openplanner.team/stops/Cmazone2", "https://tec.openplanner.team/stops/Cmazsnc1"], ["https://tec.openplanner.team/stops/NB33aha", "https://tec.openplanner.team/stops/NB33ahb"], ["https://tec.openplanner.team/stops/Bllngar3", "https://tec.openplanner.team/stops/Bllngar4"], ["https://tec.openplanner.team/stops/Bhancre1", "https://tec.openplanner.team/stops/Bhanmou1"], ["https://tec.openplanner.team/stops/X615ada", "https://tec.openplanner.team/stops/X615afb"], ["https://tec.openplanner.team/stops/Blkbavo1", "https://tec.openplanner.team/stops/Blkbbvh1"], ["https://tec.openplanner.team/stops/X804aqb", "https://tec.openplanner.team/stops/X804ara"], ["https://tec.openplanner.team/stops/X636aea", "https://tec.openplanner.team/stops/X636aha"], ["https://tec.openplanner.team/stops/Llgrome1", "https://tec.openplanner.team/stops/Llgrome2"], ["https://tec.openplanner.team/stops/N245aaa", "https://tec.openplanner.team/stops/N248aca"], ["https://tec.openplanner.team/stops/X801amb", "https://tec.openplanner.team/stops/X899abb"], ["https://tec.openplanner.team/stops/H5qu140a", "https://tec.openplanner.team/stops/H5st169a"], ["https://tec.openplanner.team/stops/LBNburg2", "https://tec.openplanner.team/stops/LBNover1"], ["https://tec.openplanner.team/stops/Bolggar1", "https://tec.openplanner.team/stops/Bolggar2"], ["https://tec.openplanner.team/stops/LOchalo1", "https://tec.openplanner.team/stops/NL35agb"], ["https://tec.openplanner.team/stops/Lvtpata1", "https://tec.openplanner.team/stops/Lvtpata2"], ["https://tec.openplanner.team/stops/X879agb", "https://tec.openplanner.team/stops/X879asb"], ["https://tec.openplanner.team/stops/Lmihale2", "https://tec.openplanner.team/stops/Lmimc--1"], ["https://tec.openplanner.team/stops/N552aba", "https://tec.openplanner.team/stops/N568adb"], ["https://tec.openplanner.team/stops/N528amb", "https://tec.openplanner.team/stops/N528atb"], ["https://tec.openplanner.team/stops/H4ce107a", "https://tec.openplanner.team/stops/H4ef112a"], ["https://tec.openplanner.team/stops/Csawagn1", "https://tec.openplanner.team/stops/Csawagn2"], ["https://tec.openplanner.team/stops/LREaube1", "https://tec.openplanner.team/stops/LREgare1"], ["https://tec.openplanner.team/stops/X779acb", "https://tec.openplanner.team/stops/X779aib"], ["https://tec.openplanner.team/stops/X919aja", "https://tec.openplanner.team/stops/X919aka"], ["https://tec.openplanner.team/stops/LmTgers1", "https://tec.openplanner.team/stops/LmTgers2"], ["https://tec.openplanner.team/stops/LWEcool1", "https://tec.openplanner.team/stops/LWEcool2"], ["https://tec.openplanner.team/stops/Bgembsg1", "https://tec.openplanner.team/stops/N522akb"], ["https://tec.openplanner.team/stops/Blhugai1", "https://tec.openplanner.team/stops/Brsgm802"], ["https://tec.openplanner.team/stops/H4og216a", "https://tec.openplanner.team/stops/H4og216b"], ["https://tec.openplanner.team/stops/N220aca", "https://tec.openplanner.team/stops/N220acb"], ["https://tec.openplanner.team/stops/N352afa", "https://tec.openplanner.team/stops/N352afb"], ["https://tec.openplanner.team/stops/N538aeb", "https://tec.openplanner.team/stops/N539ana"], ["https://tec.openplanner.team/stops/Lceprog1", "https://tec.openplanner.team/stops/Lceprog2"], ["https://tec.openplanner.team/stops/Llgcong1", "https://tec.openplanner.team/stops/Llgcong2"], ["https://tec.openplanner.team/stops/X876aca", "https://tec.openplanner.team/stops/X877adb"], ["https://tec.openplanner.team/stops/Bwlhpmt1", "https://tec.openplanner.team/stops/Bwlhpmt4"], ["https://tec.openplanner.team/stops/Bosqcim2", "https://tec.openplanner.team/stops/Btubois1"], ["https://tec.openplanner.team/stops/Lsefoot2", "https://tec.openplanner.team/stops/Lsemaqu1"], ["https://tec.openplanner.team/stops/Lrcastr2", "https://tec.openplanner.team/stops/Lrclant2"], ["https://tec.openplanner.team/stops/N501hja", "https://tec.openplanner.team/stops/N501hjb"], ["https://tec.openplanner.team/stops/Cgynoir1", "https://tec.openplanner.team/stops/CMmarab1"], ["https://tec.openplanner.team/stops/H2sb225b", "https://tec.openplanner.team/stops/H3lr132b"], ["https://tec.openplanner.team/stops/X696aaa", "https://tec.openplanner.team/stops/X696aca"], ["https://tec.openplanner.team/stops/LrAneue1", "https://tec.openplanner.team/stops/LrApont1"], ["https://tec.openplanner.team/stops/H4hs137a", "https://tec.openplanner.team/stops/H4mb139a"], ["https://tec.openplanner.team/stops/Bdlvpco2", "https://tec.openplanner.team/stops/Bdvm4ca2"], ["https://tec.openplanner.team/stops/Cmlbevu2", "https://tec.openplanner.team/stops/Cmlvitf2"], ["https://tec.openplanner.team/stops/Bronfou1", "https://tec.openplanner.team/stops/Bvirmbr2"], ["https://tec.openplanner.team/stops/X576aga", "https://tec.openplanner.team/stops/X576agb"], ["https://tec.openplanner.team/stops/H4tp143b", "https://tec.openplanner.team/stops/H4tp145b"], ["https://tec.openplanner.team/stops/N501ajb", "https://tec.openplanner.team/stops/N501aob"], ["https://tec.openplanner.team/stops/H4au100a", "https://tec.openplanner.team/stops/H4ea132c"], ["https://tec.openplanner.team/stops/X763ada", "https://tec.openplanner.team/stops/X763aea"], ["https://tec.openplanner.team/stops/Bmlngch1", "https://tec.openplanner.team/stops/Bmlngch2"], ["https://tec.openplanner.team/stops/Lsebeau*", "https://tec.openplanner.team/stops/Lsebeau1"], ["https://tec.openplanner.team/stops/LWbburn1", "https://tec.openplanner.team/stops/LWberno2"], ["https://tec.openplanner.team/stops/X734abb", "https://tec.openplanner.team/stops/X735abc"], ["https://tec.openplanner.team/stops/N134aea", "https://tec.openplanner.team/stops/N134ala"], ["https://tec.openplanner.team/stops/LFabraa1", "https://tec.openplanner.team/stops/LFacruc2"], ["https://tec.openplanner.team/stops/X789aca", "https://tec.openplanner.team/stops/X789acb"], ["https://tec.openplanner.team/stops/Btileco1", "https://tec.openplanner.team/stops/Btilmon1"], ["https://tec.openplanner.team/stops/X639akb", "https://tec.openplanner.team/stops/X639amd"], ["https://tec.openplanner.team/stops/Ccugrtr1", "https://tec.openplanner.team/stops/Ccutill3"], ["https://tec.openplanner.team/stops/Lfhdone2", "https://tec.openplanner.team/stops/Lfhnrou1"], ["https://tec.openplanner.team/stops/LlgLEOP1", "https://tec.openplanner.team/stops/Llgnage2"], ["https://tec.openplanner.team/stops/H2pe160a", "https://tec.openplanner.team/stops/H2pe160b"], ["https://tec.openplanner.team/stops/H1as100b", "https://tec.openplanner.team/stops/H1bn113a"], ["https://tec.openplanner.team/stops/N215acb", "https://tec.openplanner.team/stops/N215acd"], ["https://tec.openplanner.team/stops/X872abb", "https://tec.openplanner.team/stops/X872afa"], ["https://tec.openplanner.team/stops/LsVbs--*", "https://tec.openplanner.team/stops/LsVgore1"], ["https://tec.openplanner.team/stops/Cjxplac1", "https://tec.openplanner.team/stops/Cjxplac2"], ["https://tec.openplanner.team/stops/LFFmonu2", "https://tec.openplanner.team/stops/LFFruel2"], ["https://tec.openplanner.team/stops/Ljubonf1", "https://tec.openplanner.team/stops/Ljudeme4"], ["https://tec.openplanner.team/stops/X738aba", "https://tec.openplanner.team/stops/X739aca"], ["https://tec.openplanner.team/stops/Becebju1", "https://tec.openplanner.team/stops/Becebju2"], ["https://tec.openplanner.team/stops/Lsehtsa1", "https://tec.openplanner.team/stops/Lsehtsa2"], ["https://tec.openplanner.team/stops/Cfcchas2", "https://tec.openplanner.team/stops/Crccarr1"], ["https://tec.openplanner.team/stops/N528abb", "https://tec.openplanner.team/stops/N528afy"], ["https://tec.openplanner.team/stops/X823afa", "https://tec.openplanner.team/stops/X823aff"], ["https://tec.openplanner.team/stops/N531ama", "https://tec.openplanner.team/stops/N531amb"], ["https://tec.openplanner.team/stops/Clrmarl4", "https://tec.openplanner.team/stops/Clrpast1"], ["https://tec.openplanner.team/stops/Ccimont2", "https://tec.openplanner.team/stops/Ccisolv2"], ["https://tec.openplanner.team/stops/N557aib", "https://tec.openplanner.team/stops/N557ajb"], ["https://tec.openplanner.team/stops/H2sb224a", "https://tec.openplanner.team/stops/H2sb225a"], ["https://tec.openplanner.team/stops/LEN101-2", "https://tec.openplanner.team/stops/LENoule2"], ["https://tec.openplanner.team/stops/Ccpblpo2", "https://tec.openplanner.team/stops/H2ch108b"], ["https://tec.openplanner.team/stops/X896aec", "https://tec.openplanner.team/stops/X995aca"], ["https://tec.openplanner.team/stops/Btubhoq1", "https://tec.openplanner.team/stops/Btubstq1"], ["https://tec.openplanner.team/stops/N232bja", "https://tec.openplanner.team/stops/N232cba"], ["https://tec.openplanner.team/stops/N244atb", "https://tec.openplanner.team/stops/N244ava"], ["https://tec.openplanner.team/stops/X921alb", "https://tec.openplanner.team/stops/X921ara"], ["https://tec.openplanner.team/stops/Bsmgegl2", "https://tec.openplanner.team/stops/Bsmgmas2"], ["https://tec.openplanner.team/stops/X636aga", "https://tec.openplanner.team/stops/X636aib"], ["https://tec.openplanner.team/stops/LJUmate1", "https://tec.openplanner.team/stops/LJUmc--1"], ["https://tec.openplanner.team/stops/Cnadrev2", "https://tec.openplanner.team/stops/Cnaplbu2"], ["https://tec.openplanner.team/stops/N425aea", "https://tec.openplanner.team/stops/N425aeb"], ["https://tec.openplanner.team/stops/H1fl137b", "https://tec.openplanner.team/stops/H1fl370a"], ["https://tec.openplanner.team/stops/H2ch105d", "https://tec.openplanner.team/stops/H2ch112a"], ["https://tec.openplanner.team/stops/X850aka", "https://tec.openplanner.team/stops/X850akb"], ["https://tec.openplanner.team/stops/Cnaha561", "https://tec.openplanner.team/stops/Cnaha562"], ["https://tec.openplanner.team/stops/Lhrdron2", "https://tec.openplanner.team/stops/Lhrhenr1"], ["https://tec.openplanner.team/stops/X801abb", "https://tec.openplanner.team/stops/X801abc"], ["https://tec.openplanner.team/stops/H1hr115b", "https://tec.openplanner.team/stops/H1hr124b"], ["https://tec.openplanner.team/stops/X757aha", "https://tec.openplanner.team/stops/X757ahb"], ["https://tec.openplanner.team/stops/Bnodlce1", "https://tec.openplanner.team/stops/Boplham1"], ["https://tec.openplanner.team/stops/H4ka174b", "https://tec.openplanner.team/stops/H4ka188a"], ["https://tec.openplanner.team/stops/X820ahb", "https://tec.openplanner.team/stops/X820aib"], ["https://tec.openplanner.team/stops/X746aab", "https://tec.openplanner.team/stops/X746abb"], ["https://tec.openplanner.team/stops/Bhenmal2", "https://tec.openplanner.team/stops/Bhenrcr2"], ["https://tec.openplanner.team/stops/N529aeb", "https://tec.openplanner.team/stops/N529akb"], ["https://tec.openplanner.team/stops/LBNeup22", "https://tec.openplanner.team/stops/LhElont2"], ["https://tec.openplanner.team/stops/LBUvall1", "https://tec.openplanner.team/stops/LLtrout2"], ["https://tec.openplanner.team/stops/N538ata", "https://tec.openplanner.team/stops/N538atc"], ["https://tec.openplanner.team/stops/LgRzent2", "https://tec.openplanner.team/stops/LoDscha2"], ["https://tec.openplanner.team/stops/Ccyfroi1", "https://tec.openplanner.team/stops/Ccyfroi2"], ["https://tec.openplanner.team/stops/H5qu149b", "https://tec.openplanner.team/stops/H5qu182b"], ["https://tec.openplanner.team/stops/Cgofbru1", "https://tec.openplanner.team/stops/CMfbru2"], ["https://tec.openplanner.team/stops/H1lb138a", "https://tec.openplanner.team/stops/H1lb152b"], ["https://tec.openplanner.team/stops/X917aaa", "https://tec.openplanner.team/stops/X917aab"], ["https://tec.openplanner.team/stops/N232aba", "https://tec.openplanner.team/stops/N261acb"], ["https://tec.openplanner.team/stops/X817aeb", "https://tec.openplanner.team/stops/X817aga"], ["https://tec.openplanner.team/stops/Barqhpe1", "https://tec.openplanner.team/stops/Barqhpe2"], ["https://tec.openplanner.team/stops/Lsebuil1", "https://tec.openplanner.team/stops/Lsehtsa1"], ["https://tec.openplanner.team/stops/N509aea", "https://tec.openplanner.team/stops/N509aeb"], ["https://tec.openplanner.team/stops/LnEleje1", "https://tec.openplanner.team/stops/LnEmett2"], ["https://tec.openplanner.team/stops/Bblmwma1", "https://tec.openplanner.team/stops/Bwlhpma1"], ["https://tec.openplanner.team/stops/LWRbois1", "https://tec.openplanner.team/stops/LWRbois2"], ["https://tec.openplanner.team/stops/LAyheid1", "https://tec.openplanner.team/stops/Lflrhot1"], ["https://tec.openplanner.team/stops/X760aca", "https://tec.openplanner.team/stops/X788aea"], ["https://tec.openplanner.team/stops/X942abe", "https://tec.openplanner.team/stops/X942aca"], ["https://tec.openplanner.team/stops/Craappa2", "https://tec.openplanner.team/stops/Cracave2"], ["https://tec.openplanner.team/stops/H4po127b", "https://tec.openplanner.team/stops/H4po128b"], ["https://tec.openplanner.team/stops/LkEbbl-*", "https://tec.openplanner.team/stops/LkEkirc2"], ["https://tec.openplanner.team/stops/LHUdeni2", "https://tec.openplanner.team/stops/LHUfonc2"], ["https://tec.openplanner.team/stops/N210aab", "https://tec.openplanner.team/stops/NL81ahb"], ["https://tec.openplanner.team/stops/LmI82--1", "https://tec.openplanner.team/stops/LmIcafe2"], ["https://tec.openplanner.team/stops/LNIhaut2", "https://tec.openplanner.team/stops/LSZpont2"], ["https://tec.openplanner.team/stops/LhOholz2", "https://tec.openplanner.team/stops/LhOukat2"], ["https://tec.openplanner.team/stops/H4lz155a", "https://tec.openplanner.team/stops/H4lz160a"], ["https://tec.openplanner.team/stops/H1gg145a", "https://tec.openplanner.team/stops/H1gg146b"], ["https://tec.openplanner.team/stops/LWahott1", "https://tec.openplanner.team/stops/LWahott2"], ["https://tec.openplanner.team/stops/X818aka", "https://tec.openplanner.team/stops/X818alb"], ["https://tec.openplanner.team/stops/X910acb", "https://tec.openplanner.team/stops/X951acb"], ["https://tec.openplanner.team/stops/Lhulibe1", "https://tec.openplanner.team/stops/Lhurouh1"], ["https://tec.openplanner.team/stops/X607adb", "https://tec.openplanner.team/stops/X621aba"], ["https://tec.openplanner.team/stops/LLEgare1", "https://tec.openplanner.team/stops/LSMgare2"], ["https://tec.openplanner.team/stops/LPUalbe2", "https://tec.openplanner.team/stops/LPUmer-2"], ["https://tec.openplanner.team/stops/N576aca", "https://tec.openplanner.team/stops/N576acb"], ["https://tec.openplanner.team/stops/Bllnlb12", "https://tec.openplanner.team/stops/Bllnpsc1"], ["https://tec.openplanner.team/stops/X766adb", "https://tec.openplanner.team/stops/X766afb"], ["https://tec.openplanner.team/stops/Lagcile1", "https://tec.openplanner.team/stops/Lgrside1"], ["https://tec.openplanner.team/stops/N515aja", "https://tec.openplanner.team/stops/N515aoa"], ["https://tec.openplanner.team/stops/LCOdrol1", "https://tec.openplanner.team/stops/LSNretr1"], ["https://tec.openplanner.team/stops/LMNgare1", "https://tec.openplanner.team/stops/LPbtene1"], ["https://tec.openplanner.team/stops/Ccubric1", "https://tec.openplanner.team/stops/Ccucorb1"], ["https://tec.openplanner.team/stops/LNEpass1", "https://tec.openplanner.team/stops/LNEpass2"], ["https://tec.openplanner.team/stops/Lboastr1", "https://tec.openplanner.team/stops/Lbomc--5"], ["https://tec.openplanner.team/stops/LARarge2", "https://tec.openplanner.team/stops/LRIcent2"], ["https://tec.openplanner.team/stops/Bbealon3", "https://tec.openplanner.team/stops/Bbealon4"], ["https://tec.openplanner.team/stops/LVlplan1", "https://tec.openplanner.team/stops/LVlplan2"], ["https://tec.openplanner.team/stops/X941afb", "https://tec.openplanner.team/stops/X941ahb"], ["https://tec.openplanner.team/stops/N115abb", "https://tec.openplanner.team/stops/N115ada"], ["https://tec.openplanner.team/stops/N557aea", "https://tec.openplanner.team/stops/N557aib"], ["https://tec.openplanner.team/stops/X948afa", "https://tec.openplanner.team/stops/X948afb"], ["https://tec.openplanner.team/stops/N501aka", "https://tec.openplanner.team/stops/N501mca"], ["https://tec.openplanner.team/stops/N201awa", "https://tec.openplanner.team/stops/N201awb"], ["https://tec.openplanner.team/stops/Bjodcoi1", "https://tec.openplanner.team/stops/Bjodcoi2"], ["https://tec.openplanner.team/stops/Lgdstoc1", "https://tec.openplanner.team/stops/Lgdstoc2"], ["https://tec.openplanner.team/stops/Bchgflo2", "https://tec.openplanner.team/stops/Bchgqve3"], ["https://tec.openplanner.team/stops/Caihai81", "https://tec.openplanner.team/stops/Caistro2"], ["https://tec.openplanner.team/stops/LaTcolo2", "https://tec.openplanner.team/stops/LmCkirc1"], ["https://tec.openplanner.team/stops/X624adb", "https://tec.openplanner.team/stops/X624akb"], ["https://tec.openplanner.team/stops/N501aja", "https://tec.openplanner.team/stops/N501akb"], ["https://tec.openplanner.team/stops/LBafagn1", "https://tec.openplanner.team/stops/LLUcdoy1"], ["https://tec.openplanner.team/stops/N287aba", "https://tec.openplanner.team/stops/N287aca"], ["https://tec.openplanner.team/stops/H1pa108a", "https://tec.openplanner.team/stops/H1pa109b"], ["https://tec.openplanner.team/stops/X673aba", "https://tec.openplanner.team/stops/X821aab"], ["https://tec.openplanner.team/stops/H1ss348a", "https://tec.openplanner.team/stops/H1ss348b"], ["https://tec.openplanner.team/stops/N544aaa", "https://tec.openplanner.team/stops/N544aea"], ["https://tec.openplanner.team/stops/Buccbas1", "https://tec.openplanner.team/stops/Buccbas2"], ["https://tec.openplanner.team/stops/LSLhale2", "https://tec.openplanner.team/stops/LSLvaux2"], ["https://tec.openplanner.team/stops/X911ala", "https://tec.openplanner.team/stops/X911aua"], ["https://tec.openplanner.team/stops/N535ada", "https://tec.openplanner.team/stops/N535ana"], ["https://tec.openplanner.team/stops/H1ms282a", "https://tec.openplanner.team/stops/H1ms282b"], ["https://tec.openplanner.team/stops/N543cfa", "https://tec.openplanner.team/stops/N543cfb"], ["https://tec.openplanner.team/stops/N349aaa", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/Bmartil2", "https://tec.openplanner.team/stops/Csa4mai2"], ["https://tec.openplanner.team/stops/H4ta118b", "https://tec.openplanner.team/stops/H4ta123a"], ["https://tec.openplanner.team/stops/X878aaa", "https://tec.openplanner.team/stops/X878aab"], ["https://tec.openplanner.team/stops/LHaxhor1", "https://tec.openplanner.team/stops/LHaxhor2"], ["https://tec.openplanner.team/stops/Brixroi1", "https://tec.openplanner.team/stops/Brixroi2"], ["https://tec.openplanner.team/stops/Cptrebe1", "https://tec.openplanner.team/stops/Cptrebe2"], ["https://tec.openplanner.team/stops/Bcsepes2", "https://tec.openplanner.team/stops/Bmoucnd1"], ["https://tec.openplanner.team/stops/Cmychau1", "https://tec.openplanner.team/stops/Cmychau2"], ["https://tec.openplanner.team/stops/H2ha135c", "https://tec.openplanner.team/stops/H2ha137b"], ["https://tec.openplanner.team/stops/Cmcbriq4", "https://tec.openplanner.team/stops/Cmchai2"], ["https://tec.openplanner.team/stops/LaAmise1", "https://tec.openplanner.team/stops/LaApost2"], ["https://tec.openplanner.team/stops/Lccuner2", "https://tec.openplanner.team/stops/LRArami1"], ["https://tec.openplanner.team/stops/H1hr121c", "https://tec.openplanner.team/stops/H1hr125a"], ["https://tec.openplanner.team/stops/H1ba109b", "https://tec.openplanner.team/stops/H1ba117a"], ["https://tec.openplanner.team/stops/N228acb", "https://tec.openplanner.team/stops/N261aga"], ["https://tec.openplanner.team/stops/H5st168a", "https://tec.openplanner.team/stops/H5st169a"], ["https://tec.openplanner.team/stops/X948aka", "https://tec.openplanner.team/stops/X948ala"], ["https://tec.openplanner.team/stops/LHTboul2", "https://tec.openplanner.team/stops/LHTcarr2"], ["https://tec.openplanner.team/stops/H5el112a", "https://tec.openplanner.team/stops/H5el114b"], ["https://tec.openplanner.team/stops/Cflchap1", "https://tec.openplanner.team/stops/Cfldand1"], ["https://tec.openplanner.team/stops/LHTboul1", "https://tec.openplanner.team/stops/LHTcarr1"], ["https://tec.openplanner.team/stops/X664aqa", "https://tec.openplanner.team/stops/X664ara"], ["https://tec.openplanner.team/stops/Ccuhaie1", "https://tec.openplanner.team/stops/Ccuhaie2"], ["https://tec.openplanner.team/stops/Lvtathe1", "https://tec.openplanner.team/stops/Lvtfrai2"], ["https://tec.openplanner.team/stops/N507afa", "https://tec.openplanner.team/stops/N507aib"], ["https://tec.openplanner.team/stops/X661aob", "https://tec.openplanner.team/stops/X661aqb"], ["https://tec.openplanner.team/stops/LAWchpl1", "https://tec.openplanner.team/stops/LFOchpl1"], ["https://tec.openplanner.team/stops/LFochap2", "https://tec.openplanner.team/stops/LJAdeho4"], ["https://tec.openplanner.team/stops/H4ty287a", "https://tec.openplanner.team/stops/H4ty383b"], ["https://tec.openplanner.team/stops/Bcbqegl2", "https://tec.openplanner.team/stops/Bcbqpon1"], ["https://tec.openplanner.team/stops/LTgjalh2", "https://tec.openplanner.team/stops/LTgvill2"], ["https://tec.openplanner.team/stops/Llgegwa1", "https://tec.openplanner.team/stops/Llgwild1"], ["https://tec.openplanner.team/stops/N346aaa", "https://tec.openplanner.team/stops/N347acb"], ["https://tec.openplanner.team/stops/LSx309-2", "https://tec.openplanner.team/stops/LSxeg--1"], ["https://tec.openplanner.team/stops/N533aaa", "https://tec.openplanner.team/stops/N551aba"], ["https://tec.openplanner.team/stops/LBRbriv2", "https://tec.openplanner.team/stops/LBRpier2"], ["https://tec.openplanner.team/stops/Lsnagne1", "https://tec.openplanner.team/stops/Lsnecco3"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X774ada"], ["https://tec.openplanner.team/stops/X659awb", "https://tec.openplanner.team/stops/X659baa"], ["https://tec.openplanner.team/stops/X777aba", "https://tec.openplanner.team/stops/X784abb"], ["https://tec.openplanner.team/stops/NL77ada", "https://tec.openplanner.team/stops/NL77aga"], ["https://tec.openplanner.team/stops/Bhencha1", "https://tec.openplanner.team/stops/Bhenhau1"], ["https://tec.openplanner.team/stops/Lagrask1", "https://tec.openplanner.team/stops/Lemjoba1"], ["https://tec.openplanner.team/stops/Caccent1", "https://tec.openplanner.team/stops/NC24afb"], ["https://tec.openplanner.team/stops/N562aka", "https://tec.openplanner.team/stops/N562asb"], ["https://tec.openplanner.team/stops/Bbsggot2", "https://tec.openplanner.team/stops/Bndbnod2"], ["https://tec.openplanner.team/stops/H4ta117b", "https://tec.openplanner.team/stops/H4ta122a"], ["https://tec.openplanner.team/stops/Bbsivil1", "https://tec.openplanner.team/stops/Bbsivil2"], ["https://tec.openplanner.team/stops/Bchgbru2", "https://tec.openplanner.team/stops/Btsllbv1"], ["https://tec.openplanner.team/stops/H5bl141a", "https://tec.openplanner.team/stops/H5qu182b"], ["https://tec.openplanner.team/stops/Bcbqcht2", "https://tec.openplanner.team/stops/Bcbqegl1"], ["https://tec.openplanner.team/stops/X608aua", "https://tec.openplanner.team/stops/X608ayb"], ["https://tec.openplanner.team/stops/Llghenr2", "https://tec.openplanner.team/stops/Llgrain1"], ["https://tec.openplanner.team/stops/X601bsa", "https://tec.openplanner.team/stops/X601cca"], ["https://tec.openplanner.team/stops/Llgmara1", "https://tec.openplanner.team/stops/Llgnyst2"], ["https://tec.openplanner.team/stops/X922aja", "https://tec.openplanner.team/stops/X942agb"], ["https://tec.openplanner.team/stops/H2ec103b", "https://tec.openplanner.team/stops/H3br101b"], ["https://tec.openplanner.team/stops/LODvill1", "https://tec.openplanner.team/stops/XODvill2"], ["https://tec.openplanner.team/stops/H1gg146b", "https://tec.openplanner.team/stops/H1pe130b"], ["https://tec.openplanner.team/stops/H1he111b", "https://tec.openplanner.team/stops/H4be106a"], ["https://tec.openplanner.team/stops/N501fta", "https://tec.openplanner.team/stops/N501fyc"], ["https://tec.openplanner.team/stops/Csesabo1", "https://tec.openplanner.team/stops/N425aaa"], ["https://tec.openplanner.team/stops/N229aaa", "https://tec.openplanner.team/stops/N232asa"], ["https://tec.openplanner.team/stops/X602ada", "https://tec.openplanner.team/stops/X602aea"], ["https://tec.openplanner.team/stops/N106ada", "https://tec.openplanner.team/stops/N106aqb"], ["https://tec.openplanner.team/stops/N519aba", "https://tec.openplanner.team/stops/N519abb"], ["https://tec.openplanner.team/stops/LWHkape1", "https://tec.openplanner.team/stops/LWHkape2"], ["https://tec.openplanner.team/stops/Cjumarc2", "https://tec.openplanner.team/stops/Cjumarc3"], ["https://tec.openplanner.team/stops/X351ada", "https://tec.openplanner.team/stops/X351adb"], ["https://tec.openplanner.team/stops/X891aca", "https://tec.openplanner.team/stops/X892abb"], ["https://tec.openplanner.team/stops/Lougare2", "https://tec.openplanner.team/stops/Loutras1"], ["https://tec.openplanner.team/stops/X354aga", "https://tec.openplanner.team/stops/X354ahb"], ["https://tec.openplanner.team/stops/Bmalsmc2", "https://tec.openplanner.team/stops/Bmalwop1"], ["https://tec.openplanner.team/stops/N522ajb", "https://tec.openplanner.team/stops/N522ara"], ["https://tec.openplanner.team/stops/H1wa144b", "https://tec.openplanner.team/stops/H1wa146a"], ["https://tec.openplanner.team/stops/Lhrlaix1", "https://tec.openplanner.team/stops/Lhrlamb2"], ["https://tec.openplanner.team/stops/H4lz121d", "https://tec.openplanner.team/stops/H4lz157a"], ["https://tec.openplanner.team/stops/H2ll196a", "https://tec.openplanner.team/stops/H2ll196b"], ["https://tec.openplanner.team/stops/X986aia", "https://tec.openplanner.team/stops/X986ata"], ["https://tec.openplanner.team/stops/Lhecarc2", "https://tec.openplanner.team/stops/Lhelait2"], ["https://tec.openplanner.team/stops/Bgnvcom2", "https://tec.openplanner.team/stops/Brixala2"], ["https://tec.openplanner.team/stops/X713aaa", "https://tec.openplanner.team/stops/X713aab"], ["https://tec.openplanner.team/stops/H1ha190b", "https://tec.openplanner.team/stops/H1ha196b"], ["https://tec.openplanner.team/stops/H4eh100a", "https://tec.openplanner.team/stops/H4eh100b"], ["https://tec.openplanner.team/stops/N351ara", "https://tec.openplanner.team/stops/N351arb"], ["https://tec.openplanner.team/stops/Bbsgbos1", "https://tec.openplanner.team/stops/Bbsggot1"], ["https://tec.openplanner.team/stops/LEnchan1", "https://tec.openplanner.team/stops/NL67abb"], ["https://tec.openplanner.team/stops/N535aaa", "https://tec.openplanner.team/stops/N535adb"], ["https://tec.openplanner.team/stops/N209ana", "https://tec.openplanner.team/stops/N209anb"], ["https://tec.openplanner.team/stops/X908aab", "https://tec.openplanner.team/stops/X908anb"], ["https://tec.openplanner.team/stops/Cfrcham1", "https://tec.openplanner.team/stops/Cfrfaub2"], ["https://tec.openplanner.team/stops/X637agd", "https://tec.openplanner.team/stops/X637aja"], ["https://tec.openplanner.team/stops/X744aeb", "https://tec.openplanner.team/stops/X746ahb"], ["https://tec.openplanner.team/stops/Lalverr2", "https://tec.openplanner.team/stops/Llabrou2"], ["https://tec.openplanner.team/stops/N337aia", "https://tec.openplanner.team/stops/N338aia"], ["https://tec.openplanner.team/stops/H4ma400b", "https://tec.openplanner.team/stops/H4ma401b"], ["https://tec.openplanner.team/stops/LFfeg--1", "https://tec.openplanner.team/stops/LFfeg--2"], ["https://tec.openplanner.team/stops/LFPstro2", "https://tec.openplanner.team/stops/LVu40--1"], ["https://tec.openplanner.team/stops/H2hp123c", "https://tec.openplanner.team/stops/H2hp262a"], ["https://tec.openplanner.team/stops/LAo170-1", "https://tec.openplanner.team/stops/LTPnoup2"], ["https://tec.openplanner.team/stops/LCTmonu1", "https://tec.openplanner.team/stops/LGmhumb1"], ["https://tec.openplanner.team/stops/Buccdho1", "https://tec.openplanner.team/stops/Buccobs1"], ["https://tec.openplanner.team/stops/H1ms245b", "https://tec.openplanner.team/stops/H1ms269a"], ["https://tec.openplanner.team/stops/Crcplac3", "https://tec.openplanner.team/stops/NH03aga"], ["https://tec.openplanner.team/stops/LdElamb2", "https://tec.openplanner.team/stops/LiVdorf2"], ["https://tec.openplanner.team/stops/LDppana2", "https://tec.openplanner.team/stops/LDpulve1"], ["https://tec.openplanner.team/stops/Ladchat1", "https://tec.openplanner.team/stops/Ladchat2"], ["https://tec.openplanner.team/stops/X999aja", "https://tec.openplanner.team/stops/X999aub"], ["https://tec.openplanner.team/stops/Blhuone1", "https://tec.openplanner.team/stops/Blhupcl2"], ["https://tec.openplanner.team/stops/N232asa", "https://tec.openplanner.team/stops/N260aeb"], ["https://tec.openplanner.team/stops/N232aaa", "https://tec.openplanner.team/stops/N232aga"], ["https://tec.openplanner.team/stops/LFIeg--1", "https://tec.openplanner.team/stops/LMYmont2"], ["https://tec.openplanner.team/stops/LAYambl2", "https://tec.openplanner.team/stops/LAYthir2"], ["https://tec.openplanner.team/stops/Cthoues1", "https://tec.openplanner.team/stops/Cthrwai2"], ["https://tec.openplanner.team/stops/H4mo132a", "https://tec.openplanner.team/stops/H4mo162a"], ["https://tec.openplanner.team/stops/X713ada", "https://tec.openplanner.team/stops/X713anb"], ["https://tec.openplanner.team/stops/H5bl122a", "https://tec.openplanner.team/stops/H5bl143a"], ["https://tec.openplanner.team/stops/LHTbaud2", "https://tec.openplanner.team/stops/LHTmonu1"], ["https://tec.openplanner.team/stops/H4or116b", "https://tec.openplanner.team/stops/H4rs117a"], ["https://tec.openplanner.team/stops/LWApt--1", "https://tec.openplanner.team/stops/LWApt--2"], ["https://tec.openplanner.team/stops/LAyegli2", "https://tec.openplanner.team/stops/LMIeg--1"], ["https://tec.openplanner.team/stops/H4hs135b", "https://tec.openplanner.team/stops/H4th141a"], ["https://tec.openplanner.team/stops/Cgogrco2", "https://tec.openplanner.team/stops/Ctmazeb1"], ["https://tec.openplanner.team/stops/N232bma", "https://tec.openplanner.team/stops/N232bna"], ["https://tec.openplanner.team/stops/Bstecou1", "https://tec.openplanner.team/stops/Bstecou2"], ["https://tec.openplanner.team/stops/Louduna*", "https://tec.openplanner.team/stops/Loutras1"], ["https://tec.openplanner.team/stops/H1pa104a", "https://tec.openplanner.team/stops/H1pa108b"], ["https://tec.openplanner.team/stops/LHgdari1", "https://tec.openplanner.team/stops/LHgroso2"], ["https://tec.openplanner.team/stops/LSkoran1", "https://tec.openplanner.team/stops/LSktinc2"], ["https://tec.openplanner.team/stops/H1do109a", "https://tec.openplanner.team/stops/H1do117b"], ["https://tec.openplanner.team/stops/LLReg--1", "https://tec.openplanner.team/stops/LLRsalm1"], ["https://tec.openplanner.team/stops/NC11afa", "https://tec.openplanner.team/stops/NC11ama"], ["https://tec.openplanner.team/stops/H1mk114a", "https://tec.openplanner.team/stops/H1mk114b"], ["https://tec.openplanner.team/stops/LaUkirc*", "https://tec.openplanner.team/stops/LsF39--1"], ["https://tec.openplanner.team/stops/N241afa", "https://tec.openplanner.team/stops/N585abb"], ["https://tec.openplanner.team/stops/Cgogrco1", "https://tec.openplanner.team/stops/Cjucar01"], ["https://tec.openplanner.team/stops/N113ada", "https://tec.openplanner.team/stops/N113aga"], ["https://tec.openplanner.team/stops/Bstmpla2", "https://tec.openplanner.team/stops/N561aba"], ["https://tec.openplanner.team/stops/N508abb", "https://tec.openplanner.team/stops/N508aea"], ["https://tec.openplanner.team/stops/H5rx103a", "https://tec.openplanner.team/stops/H5rx128b"], ["https://tec.openplanner.team/stops/X731aba", "https://tec.openplanner.team/stops/X731aga"], ["https://tec.openplanner.team/stops/LAweg--2", "https://tec.openplanner.team/stops/LAYfoot1"], ["https://tec.openplanner.team/stops/Bsjgegl2", "https://tec.openplanner.team/stops/Bsjgmil1"], ["https://tec.openplanner.team/stops/N525ana", "https://tec.openplanner.team/stops/N525anb"], ["https://tec.openplanner.team/stops/H1gr118a", "https://tec.openplanner.team/stops/H1gr122a"], ["https://tec.openplanner.team/stops/N501ehb", "https://tec.openplanner.team/stops/N501emb"], ["https://tec.openplanner.team/stops/Lvcdumo2", "https://tec.openplanner.team/stops/Lvcsapi1"], ["https://tec.openplanner.team/stops/Cthdeco1", "https://tec.openplanner.team/stops/Cthrpoi1"], ["https://tec.openplanner.team/stops/X731afb", "https://tec.openplanner.team/stops/X986ala"], ["https://tec.openplanner.team/stops/NL76abb", "https://tec.openplanner.team/stops/NL76asa"], ["https://tec.openplanner.team/stops/LVBmonu2", "https://tec.openplanner.team/stops/LVBmonu3"], ["https://tec.openplanner.team/stops/LaAburt1", "https://tec.openplanner.team/stops/LaAburt2"], ["https://tec.openplanner.team/stops/X904afb", "https://tec.openplanner.team/stops/X904anb"], ["https://tec.openplanner.team/stops/Ccotemp1", "https://tec.openplanner.team/stops/Ccotemp2"], ["https://tec.openplanner.team/stops/Llgborn1", "https://tec.openplanner.team/stops/Llgborn2"], ["https://tec.openplanner.team/stops/N122aia", "https://tec.openplanner.team/stops/N122aib"], ["https://tec.openplanner.team/stops/H1pa103b", "https://tec.openplanner.team/stops/H1wa138b"], ["https://tec.openplanner.team/stops/H1te178b", "https://tec.openplanner.team/stops/H1te191b"], ["https://tec.openplanner.team/stops/H4lg102b", "https://tec.openplanner.team/stops/H4rm112b"], ["https://tec.openplanner.team/stops/H4gu109a", "https://tec.openplanner.team/stops/H4sm247a"], ["https://tec.openplanner.team/stops/X658agc", "https://tec.openplanner.team/stops/X659aib"], ["https://tec.openplanner.team/stops/Bglibui1", "https://tec.openplanner.team/stops/NB59akb"], ["https://tec.openplanner.team/stops/N232afa", "https://tec.openplanner.team/stops/N286aab"], ["https://tec.openplanner.team/stops/H2tr247b", "https://tec.openplanner.team/stops/H2tr253b"], ["https://tec.openplanner.team/stops/Cfrempe1", "https://tec.openplanner.team/stops/Cfrfaub4"], ["https://tec.openplanner.team/stops/N509acc", "https://tec.openplanner.team/stops/N509afa"], ["https://tec.openplanner.team/stops/H1si167a", "https://tec.openplanner.team/stops/H1si167b"], ["https://tec.openplanner.team/stops/Bjodfab1", "https://tec.openplanner.team/stops/Bjodrrg1"], ["https://tec.openplanner.team/stops/N230adb", "https://tec.openplanner.team/stops/N230ajb"], ["https://tec.openplanner.team/stops/LhMwing2", "https://tec.openplanner.team/stops/LsCbrau2"], ["https://tec.openplanner.team/stops/H4mo137a", "https://tec.openplanner.team/stops/H4mo137b"], ["https://tec.openplanner.team/stops/LeIpiro4", "https://tec.openplanner.team/stops/LsHlenz1"], ["https://tec.openplanner.team/stops/Cgysole1", "https://tec.openplanner.team/stops/CMsolei1"], ["https://tec.openplanner.team/stops/N349agb", "https://tec.openplanner.team/stops/X349aic"], ["https://tec.openplanner.team/stops/LmYwall1", "https://tec.openplanner.team/stops/LsVgend2"], ["https://tec.openplanner.team/stops/X982aka", "https://tec.openplanner.team/stops/X982bya"], ["https://tec.openplanner.team/stops/X669aea", "https://tec.openplanner.team/stops/X669aeb"], ["https://tec.openplanner.team/stops/Bleugar1", "https://tec.openplanner.team/stops/Bwolkra2"], ["https://tec.openplanner.team/stops/Beclbse1", "https://tec.openplanner.team/stops/Beclpla2"], ["https://tec.openplanner.team/stops/LlgCATH1", "https://tec.openplanner.team/stops/Llgcroi1"], ["https://tec.openplanner.team/stops/N229asa", "https://tec.openplanner.team/stops/N230aaa"], ["https://tec.openplanner.team/stops/LeYloos2", "https://tec.openplanner.team/stops/LhSwind2"], ["https://tec.openplanner.team/stops/Cfcctru1", "https://tec.openplanner.team/stops/Cfcctru2"], ["https://tec.openplanner.team/stops/H4rx143b", "https://tec.openplanner.team/stops/H4tf147b"], ["https://tec.openplanner.team/stops/Buccpin2", "https://tec.openplanner.team/stops/Buccpor2"], ["https://tec.openplanner.team/stops/Csycant2", "https://tec.openplanner.team/stops/Csysans1"], ["https://tec.openplanner.team/stops/Lalecmo1", "https://tec.openplanner.team/stops/Lalecmo2"], ["https://tec.openplanner.team/stops/N337aea", "https://tec.openplanner.team/stops/N337aeb"], ["https://tec.openplanner.team/stops/Bcbqcim1", "https://tec.openplanner.team/stops/Blemsta1"], ["https://tec.openplanner.team/stops/N515anb", "https://tec.openplanner.team/stops/N516aoc"], ["https://tec.openplanner.team/stops/X358afa", "https://tec.openplanner.team/stops/X358afb"], ["https://tec.openplanner.team/stops/LLelans2", "https://tec.openplanner.team/stops/X576afb"], ["https://tec.openplanner.team/stops/LElgerd1", "https://tec.openplanner.team/stops/LElgerd4"], ["https://tec.openplanner.team/stops/Cnacent1", "https://tec.openplanner.team/stops/Cnadepo2"], ["https://tec.openplanner.team/stops/LLnlimb1", "https://tec.openplanner.team/stops/LOeelbe1"], ["https://tec.openplanner.team/stops/Bpelegl4", "https://tec.openplanner.team/stops/Bpelf962"], ["https://tec.openplanner.team/stops/LFychpl1", "https://tec.openplanner.team/stops/LONcroi2"], ["https://tec.openplanner.team/stops/Cgogb2", "https://tec.openplanner.team/stops/Cjumade4"], ["https://tec.openplanner.team/stops/LoEauto1", "https://tec.openplanner.team/stops/LrD28--2"], ["https://tec.openplanner.team/stops/H1ho128a", "https://tec.openplanner.team/stops/H1wa137b"], ["https://tec.openplanner.team/stops/LSHmais2", "https://tec.openplanner.team/stops/LSOtheu2"], ["https://tec.openplanner.team/stops/Lanfont1", "https://tec.openplanner.team/stops/Llgchau1"], ["https://tec.openplanner.team/stops/N134ajb", "https://tec.openplanner.team/stops/N152abd"], ["https://tec.openplanner.team/stops/Bblaast1", "https://tec.openplanner.team/stops/Bblagar4"], ["https://tec.openplanner.team/stops/N525acb", "https://tec.openplanner.team/stops/N525aua"], ["https://tec.openplanner.team/stops/H4my121b", "https://tec.openplanner.team/stops/H4my123b"], ["https://tec.openplanner.team/stops/LBSgeer2", "https://tec.openplanner.team/stops/LBSkann2"], ["https://tec.openplanner.team/stops/H1em102b", "https://tec.openplanner.team/stops/H1em110b"], ["https://tec.openplanner.team/stops/N117aab", "https://tec.openplanner.team/stops/N117aca"], ["https://tec.openplanner.team/stops/Bbiemor1", "https://tec.openplanner.team/stops/Bgzdast1"], ["https://tec.openplanner.team/stops/LLAvi651", "https://tec.openplanner.team/stops/LMgkrui2"], ["https://tec.openplanner.team/stops/Bmarlor2", "https://tec.openplanner.team/stops/Bmartil1"], ["https://tec.openplanner.team/stops/X659ava", "https://tec.openplanner.team/stops/X659bab"], ["https://tec.openplanner.team/stops/Lvochev2", "https://tec.openplanner.team/stops/Lvoplac2"], ["https://tec.openplanner.team/stops/Bptrcra2", "https://tec.openplanner.team/stops/Bptrman2"], ["https://tec.openplanner.team/stops/X604aja", "https://tec.openplanner.team/stops/X624alb"], ["https://tec.openplanner.team/stops/H2gy109b", "https://tec.openplanner.team/stops/H2gy113b"], ["https://tec.openplanner.team/stops/Cfmltas1", "https://tec.openplanner.team/stops/Cfmsncb2"], ["https://tec.openplanner.team/stops/X901aqa", "https://tec.openplanner.team/stops/X901blb"], ["https://tec.openplanner.team/stops/Chhdubr2", "https://tec.openplanner.team/stops/Chhthui1"], ["https://tec.openplanner.team/stops/H1ms253a", "https://tec.openplanner.team/stops/H1ms276a"], ["https://tec.openplanner.team/stops/X636ara", "https://tec.openplanner.team/stops/X636aua"], ["https://tec.openplanner.team/stops/H1cu115b", "https://tec.openplanner.team/stops/H1cu118a"], ["https://tec.openplanner.team/stops/H3bi105d", "https://tec.openplanner.team/stops/H3bi119b"], ["https://tec.openplanner.team/stops/Cjufauv1", "https://tec.openplanner.team/stops/Cjufauv2"], ["https://tec.openplanner.team/stops/Llgmagh2", "https://tec.openplanner.team/stops/Llgmare1"], ["https://tec.openplanner.team/stops/X758ada", "https://tec.openplanner.team/stops/X758amb"], ["https://tec.openplanner.team/stops/H4lp125b", "https://tec.openplanner.team/stops/H4lp126b"], ["https://tec.openplanner.team/stops/N557aga", "https://tec.openplanner.team/stops/N558aja"], ["https://tec.openplanner.team/stops/Blpgcmo1", "https://tec.openplanner.team/stops/Bnivfdu2"], ["https://tec.openplanner.team/stops/Bpercsp1", "https://tec.openplanner.team/stops/Bpercsp2"], ["https://tec.openplanner.team/stops/X613acb", "https://tec.openplanner.team/stops/X613ada"], ["https://tec.openplanner.team/stops/LhLdorf2", "https://tec.openplanner.team/stops/LlSzoll2"], ["https://tec.openplanner.team/stops/Crcegli3", "https://tec.openplanner.team/stops/Crcegli4"], ["https://tec.openplanner.team/stops/X888aea", "https://tec.openplanner.team/stops/X888aeb"], ["https://tec.openplanner.team/stops/Bgemfbo2", "https://tec.openplanner.team/stops/N522bvf"], ["https://tec.openplanner.team/stops/Cmlgche2", "https://tec.openplanner.team/stops/Cmlvxmo2"], ["https://tec.openplanner.team/stops/N548awa", "https://tec.openplanner.team/stops/N548ayb"], ["https://tec.openplanner.team/stops/LBNforg2", "https://tec.openplanner.team/stops/LDOandr3"], ["https://tec.openplanner.team/stops/Braclin1", "https://tec.openplanner.team/stops/Braclin2"], ["https://tec.openplanner.team/stops/Lvtathe2", "https://tec.openplanner.team/stops/Lvteg--1"], ["https://tec.openplanner.team/stops/H1br122b", "https://tec.openplanner.team/stops/H1ev116a"], ["https://tec.openplanner.team/stops/Buccron2", "https://tec.openplanner.team/stops/Buccvbe2"], ["https://tec.openplanner.team/stops/H1cd114a", "https://tec.openplanner.team/stops/H1ne150a"], ["https://tec.openplanner.team/stops/LEMgren*", "https://tec.openplanner.team/stops/LMalamb4"], ["https://tec.openplanner.team/stops/Bcseaba2", "https://tec.openplanner.team/stops/Bcsebea4"], ["https://tec.openplanner.team/stops/Bosqcim1", "https://tec.openplanner.team/stops/Bosqsam1"], ["https://tec.openplanner.team/stops/N543avh", "https://tec.openplanner.team/stops/N543cqb"], ["https://tec.openplanner.team/stops/X939adb", "https://tec.openplanner.team/stops/X939aea"], ["https://tec.openplanner.team/stops/Cbblacb2", "https://tec.openplanner.team/stops/Cclbarb1"], ["https://tec.openplanner.team/stops/H1bu137b", "https://tec.openplanner.team/stops/H2ep145b"], ["https://tec.openplanner.team/stops/X946adb", "https://tec.openplanner.team/stops/X946aia"], ["https://tec.openplanner.team/stops/N355aba", "https://tec.openplanner.team/stops/N355abb"], ["https://tec.openplanner.team/stops/Lghhoco1", "https://tec.openplanner.team/stops/Lghmavi1"], ["https://tec.openplanner.team/stops/N501bsa", "https://tec.openplanner.team/stops/N501bxa"], ["https://tec.openplanner.team/stops/H1fr114a", "https://tec.openplanner.team/stops/H1fr124a"], ["https://tec.openplanner.team/stops/Ccoacie1", "https://tec.openplanner.team/stops/Ccocorb1"], ["https://tec.openplanner.team/stops/X734aba", "https://tec.openplanner.team/stops/X734abb"], ["https://tec.openplanner.team/stops/N115abb", "https://tec.openplanner.team/stops/N147afa"], ["https://tec.openplanner.team/stops/Ljuchap2", "https://tec.openplanner.team/stops/Ljulieg1"], ["https://tec.openplanner.team/stops/N540adb", "https://tec.openplanner.team/stops/N540amb"], ["https://tec.openplanner.team/stops/Bwancal2", "https://tec.openplanner.team/stops/Bwancal3"], ["https://tec.openplanner.team/stops/LHTdelh1", "https://tec.openplanner.team/stops/LHTdelh2"], ["https://tec.openplanner.team/stops/LwAlont1", "https://tec.openplanner.team/stops/LwAprei1"], ["https://tec.openplanner.team/stops/N232bwa", "https://tec.openplanner.team/stops/N232bwb"], ["https://tec.openplanner.team/stops/X991akb", "https://tec.openplanner.team/stops/X991ala"], ["https://tec.openplanner.team/stops/H1gh143b", "https://tec.openplanner.team/stops/H1je225a"], ["https://tec.openplanner.team/stops/N222aca", "https://tec.openplanner.team/stops/N223aaa"], ["https://tec.openplanner.team/stops/LHFhard1", "https://tec.openplanner.team/stops/LVEroum1"], ["https://tec.openplanner.team/stops/H2hg144a", "https://tec.openplanner.team/stops/H2ll176c"], ["https://tec.openplanner.team/stops/X808afa", "https://tec.openplanner.team/stops/X834adb"], ["https://tec.openplanner.team/stops/Blasclo1", "https://tec.openplanner.team/stops/Bohnr731"], ["https://tec.openplanner.team/stops/Lghalle1", "https://tec.openplanner.team/stops/Lghcoqs2"], ["https://tec.openplanner.team/stops/LVEhali1", "https://tec.openplanner.team/stops/LVEhali2"], ["https://tec.openplanner.team/stops/N501cpb", "https://tec.openplanner.team/stops/N501cub"], ["https://tec.openplanner.team/stops/H1ch100a", "https://tec.openplanner.team/stops/H5ma181a"], ["https://tec.openplanner.team/stops/Cdajume1", "https://tec.openplanner.team/stops/Cdanvpr2"], ["https://tec.openplanner.team/stops/LLrdrev1", "https://tec.openplanner.team/stops/LLrmeno1"], ["https://tec.openplanner.team/stops/Cmchai2", "https://tec.openplanner.team/stops/Cmgtour2"], ["https://tec.openplanner.team/stops/Bkrabhu2", "https://tec.openplanner.team/stops/Bovelge1"], ["https://tec.openplanner.team/stops/H1gr110b", "https://tec.openplanner.team/stops/H1hr127b"], ["https://tec.openplanner.team/stops/H4lp119a", "https://tec.openplanner.team/stops/H4lp119b"], ["https://tec.openplanner.team/stops/N874aga", "https://tec.openplanner.team/stops/N874aha"], ["https://tec.openplanner.team/stops/X793aja", "https://tec.openplanner.team/stops/X793aka"], ["https://tec.openplanner.team/stops/Bblabos2", "https://tec.openplanner.team/stops/Bblacar2"], ["https://tec.openplanner.team/stops/LENecol2", "https://tec.openplanner.team/stops/LENmc--1"], ["https://tec.openplanner.team/stops/LMoeg--1", "https://tec.openplanner.team/stops/LMoeg--2"], ["https://tec.openplanner.team/stops/N518aba", "https://tec.openplanner.team/stops/N519aha"], ["https://tec.openplanner.team/stops/X927aab", "https://tec.openplanner.team/stops/X927aba"], ["https://tec.openplanner.team/stops/N503agb", "https://tec.openplanner.team/stops/N535aoa"], ["https://tec.openplanner.team/stops/Blanath2", "https://tec.openplanner.team/stops/Blanraa2"], ["https://tec.openplanner.team/stops/LSTparf1", "https://tec.openplanner.team/stops/LTPtroi1"], ["https://tec.openplanner.team/stops/X836aaa", "https://tec.openplanner.team/stops/X836aab"], ["https://tec.openplanner.team/stops/LHGtron1", "https://tec.openplanner.team/stops/LHGtron2"], ["https://tec.openplanner.team/stops/N232bha", "https://tec.openplanner.team/stops/N232bla"], ["https://tec.openplanner.team/stops/Cmlasie2", "https://tec.openplanner.team/stops/Cmlcazi1"], ["https://tec.openplanner.team/stops/Bsompri1", "https://tec.openplanner.team/stops/Bsompri2"], ["https://tec.openplanner.team/stops/Bplncsd2", "https://tec.openplanner.team/stops/Bwatvco2"], ["https://tec.openplanner.team/stops/LSUroyo1", "https://tec.openplanner.team/stops/LSUroyo2"], ["https://tec.openplanner.team/stops/LeUstad1", "https://tec.openplanner.team/stops/LeUstad2"], ["https://tec.openplanner.team/stops/N243aca", "https://tec.openplanner.team/stops/N243acb"], ["https://tec.openplanner.team/stops/LHMbelv2", "https://tec.openplanner.team/stops/LHMhind1"], ["https://tec.openplanner.team/stops/Cgzabur1", "https://tec.openplanner.team/stops/Cgzplac4"], ["https://tec.openplanner.team/stops/Bsmgegl1", "https://tec.openplanner.team/stops/Bvilpar1"], ["https://tec.openplanner.team/stops/X982axa", "https://tec.openplanner.team/stops/X982axb"], ["https://tec.openplanner.team/stops/N509akb", "https://tec.openplanner.team/stops/N509alb"], ["https://tec.openplanner.team/stops/Cvp3til4", "https://tec.openplanner.team/stops/Cvp3til5"], ["https://tec.openplanner.team/stops/X756aja", "https://tec.openplanner.team/stops/X779aga"], ["https://tec.openplanner.team/stops/Bbchboi1", "https://tec.openplanner.team/stops/Bwaucig1"], ["https://tec.openplanner.team/stops/X639ana", "https://tec.openplanner.team/stops/X640ata"], ["https://tec.openplanner.team/stops/X833aba", "https://tec.openplanner.team/stops/X833acb"], ["https://tec.openplanner.team/stops/N153aeb", "https://tec.openplanner.team/stops/N154ada"], ["https://tec.openplanner.team/stops/Bwatcap1", "https://tec.openplanner.team/stops/Bwatprp2"], ["https://tec.openplanner.team/stops/Lhrpaep*", "https://tec.openplanner.team/stops/Lhrthie1"], ["https://tec.openplanner.team/stops/Bqueblo2", "https://tec.openplanner.team/stops/Btubren2"], ["https://tec.openplanner.team/stops/Blilton1", "https://tec.openplanner.team/stops/Blilwit1"], ["https://tec.openplanner.team/stops/Lflcime1", "https://tec.openplanner.team/stops/Lflmc--1"], ["https://tec.openplanner.team/stops/Cgplhoi2", "https://tec.openplanner.team/stops/H2gy108a"], ["https://tec.openplanner.team/stops/H1el133b", "https://tec.openplanner.team/stops/H1el136b"], ["https://tec.openplanner.team/stops/Bbeamon1", "https://tec.openplanner.team/stops/Bbeapim2"], ["https://tec.openplanner.team/stops/X823afc", "https://tec.openplanner.team/stops/X823aff"], ["https://tec.openplanner.team/stops/LlOdrei1", "https://tec.openplanner.team/stops/LsVeite2"], ["https://tec.openplanner.team/stops/H5pe147a", "https://tec.openplanner.team/stops/H5pe175a"], ["https://tec.openplanner.team/stops/X897acb", "https://tec.openplanner.team/stops/X897aja"], ["https://tec.openplanner.team/stops/H5rx120a", "https://tec.openplanner.team/stops/H5rx120b"], ["https://tec.openplanner.team/stops/X654aia", "https://tec.openplanner.team/stops/X654aib"], ["https://tec.openplanner.team/stops/X601bga", "https://tec.openplanner.team/stops/X601bxb"], ["https://tec.openplanner.team/stops/X770afa", "https://tec.openplanner.team/stops/X774acb"], ["https://tec.openplanner.team/stops/LAWcite4", "https://tec.openplanner.team/stops/LAWcite6"], ["https://tec.openplanner.team/stops/NL77ana", "https://tec.openplanner.team/stops/NL78ahb"], ["https://tec.openplanner.team/stops/X982abb", "https://tec.openplanner.team/stops/X982btb"], ["https://tec.openplanner.team/stops/Bblaadm2", "https://tec.openplanner.team/stops/Bblajap1"], ["https://tec.openplanner.team/stops/LAMcime2", "https://tec.openplanner.team/stops/LAMpirk2"], ["https://tec.openplanner.team/stops/Binclib1", "https://tec.openplanner.team/stops/Binclib2"], ["https://tec.openplanner.team/stops/LWscona1", "https://tec.openplanner.team/stops/LWscona2"], ["https://tec.openplanner.team/stops/LAUabat1", "https://tec.openplanner.team/stops/LAUbour4"], ["https://tec.openplanner.team/stops/Lsmdepo1", "https://tec.openplanner.team/stops/Lsmecol1"], ["https://tec.openplanner.team/stops/Lhrmine1", "https://tec.openplanner.team/stops/Ljuauto2"], ["https://tec.openplanner.team/stops/H4ea131a", "https://tec.openplanner.team/stops/H4ea131b"], ["https://tec.openplanner.team/stops/X898aaa", "https://tec.openplanner.team/stops/X898aab"], ["https://tec.openplanner.team/stops/Lflec--1", "https://tec.openplanner.team/stops/Lflweri2"], ["https://tec.openplanner.team/stops/X390ala", "https://tec.openplanner.team/stops/X390ana"], ["https://tec.openplanner.team/stops/X818aqa", "https://tec.openplanner.team/stops/X818ara"], ["https://tec.openplanner.team/stops/N513ava", "https://tec.openplanner.team/stops/N514aga"], ["https://tec.openplanner.team/stops/LHAcite2", "https://tec.openplanner.team/stops/LHAclin2"], ["https://tec.openplanner.team/stops/LeUkehr3", "https://tec.openplanner.team/stops/LeUkirc1"], ["https://tec.openplanner.team/stops/H1gh163a", "https://tec.openplanner.team/stops/H1gh167a"], ["https://tec.openplanner.team/stops/H1hc125b", "https://tec.openplanner.team/stops/H5gr137b"], ["https://tec.openplanner.team/stops/Bincegl2", "https://tec.openplanner.team/stops/Boppcen3"], ["https://tec.openplanner.team/stops/H4an111a", "https://tec.openplanner.team/stops/H4an111c"], ["https://tec.openplanner.team/stops/N117aoc", "https://tec.openplanner.team/stops/N117bcb"], ["https://tec.openplanner.team/stops/Bchgbar2", "https://tec.openplanner.team/stops/Bchgqve1"], ["https://tec.openplanner.team/stops/X719aab", "https://tec.openplanner.team/stops/X720aaa"], ["https://tec.openplanner.team/stops/H4bn173a", "https://tec.openplanner.team/stops/H4wp151b"], ["https://tec.openplanner.team/stops/H5wo127b", "https://tec.openplanner.team/stops/H5wo136b"], ["https://tec.openplanner.team/stops/Bdlvpco2", "https://tec.openplanner.team/stops/Bgzdfpo1"], ["https://tec.openplanner.team/stops/X723aca", "https://tec.openplanner.team/stops/X723acb"], ["https://tec.openplanner.team/stops/X808aac", "https://tec.openplanner.team/stops/X808aja"], ["https://tec.openplanner.team/stops/X654aga", "https://tec.openplanner.team/stops/X654aha"], ["https://tec.openplanner.team/stops/N390ada", "https://tec.openplanner.team/stops/N390adb"], ["https://tec.openplanner.team/stops/Cmtchet1", "https://tec.openplanner.team/stops/Cmtneuv2"], ["https://tec.openplanner.team/stops/Bwatcpl1", "https://tec.openplanner.team/stops/Bwatcpl2"], ["https://tec.openplanner.team/stops/Bronn392", "https://tec.openplanner.team/stops/Bronpfe2"], ["https://tec.openplanner.team/stops/X354aha", "https://tec.openplanner.team/stops/X858aha"], ["https://tec.openplanner.team/stops/LVLecco1", "https://tec.openplanner.team/stops/LVLmart1"], ["https://tec.openplanner.team/stops/Cgdberl1", "https://tec.openplanner.team/stops/Cgdfras1"], ["https://tec.openplanner.team/stops/LTRcite1", "https://tec.openplanner.team/stops/LTRferm1"], ["https://tec.openplanner.team/stops/Ldichat2", "https://tec.openplanner.team/stops/Ldihusq2"], ["https://tec.openplanner.team/stops/H1gc122a", "https://tec.openplanner.team/stops/H1gc124a"], ["https://tec.openplanner.team/stops/N506aza", "https://tec.openplanner.team/stops/N506beb"], ["https://tec.openplanner.team/stops/H4ss154b", "https://tec.openplanner.team/stops/H4ss158a"], ["https://tec.openplanner.team/stops/Bcer4br2", "https://tec.openplanner.team/stops/Bcer4br4"], ["https://tec.openplanner.team/stops/H4rm111b", "https://tec.openplanner.team/stops/H4ta120a"], ["https://tec.openplanner.team/stops/LPtchpl1", "https://tec.openplanner.team/stops/LRchaie2"], ["https://tec.openplanner.team/stops/N211aea", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/LSZarbe2", "https://tec.openplanner.team/stops/LSZheid2"], ["https://tec.openplanner.team/stops/H1hm173a", "https://tec.openplanner.team/stops/H1nv324b"], ["https://tec.openplanner.team/stops/N201aob", "https://tec.openplanner.team/stops/N201aoc"], ["https://tec.openplanner.team/stops/H4wp152b", "https://tec.openplanner.team/stops/H4wp153b"], ["https://tec.openplanner.team/stops/Lghcham2", "https://tec.openplanner.team/stops/Lghwass2"], ["https://tec.openplanner.team/stops/N557afa", "https://tec.openplanner.team/stops/N557ahb"], ["https://tec.openplanner.team/stops/N501cmb", "https://tec.openplanner.team/stops/N501eoa"], ["https://tec.openplanner.team/stops/LMipoti2", "https://tec.openplanner.team/stops/LMisour2"], ["https://tec.openplanner.team/stops/N516ala", "https://tec.openplanner.team/stops/N516alb"], ["https://tec.openplanner.team/stops/N121aha", "https://tec.openplanner.team/stops/N121ahb"], ["https://tec.openplanner.team/stops/X664ama", "https://tec.openplanner.team/stops/X664amb"], ["https://tec.openplanner.team/stops/N501gpa", "https://tec.openplanner.team/stops/N501gpb"], ["https://tec.openplanner.team/stops/LBVclig2", "https://tec.openplanner.team/stops/LSTmeiz1"], ["https://tec.openplanner.team/stops/H3so161b", "https://tec.openplanner.team/stops/H3so176b"], ["https://tec.openplanner.team/stops/N121adb", "https://tec.openplanner.team/stops/N121ajb"], ["https://tec.openplanner.team/stops/X946aia", "https://tec.openplanner.team/stops/X948aba"], ["https://tec.openplanner.team/stops/Cgyduss4", "https://tec.openplanner.team/stops/Cjuhame3"], ["https://tec.openplanner.team/stops/Cprcits2", "https://tec.openplanner.team/stops/Cprvsar2"], ["https://tec.openplanner.team/stops/H1fr111b", "https://tec.openplanner.team/stops/H1ge116a"], ["https://tec.openplanner.team/stops/Cchsud07", "https://tec.openplanner.team/stops/Cchsud13"], ["https://tec.openplanner.team/stops/H4mo132b", "https://tec.openplanner.team/stops/H4mo170a"], ["https://tec.openplanner.team/stops/LhEherb1", "https://tec.openplanner.team/stops/LhElont1"], ["https://tec.openplanner.team/stops/N511afb", "https://tec.openplanner.team/stops/N511agb"], ["https://tec.openplanner.team/stops/X912aaa", "https://tec.openplanner.team/stops/X912aab"], ["https://tec.openplanner.team/stops/Bnivlpa1", "https://tec.openplanner.team/stops/Bnivlpa2"], ["https://tec.openplanner.team/stops/H4mt216b", "https://tec.openplanner.team/stops/H4mx116b"], ["https://tec.openplanner.team/stops/LTHmont1", "https://tec.openplanner.team/stops/LTHmont2"], ["https://tec.openplanner.team/stops/Ctafran1", "https://tec.openplanner.team/stops/Ctafran2"], ["https://tec.openplanner.team/stops/X561aba", "https://tec.openplanner.team/stops/X561aca"], ["https://tec.openplanner.team/stops/LHEches2", "https://tec.openplanner.team/stops/LHEchex1"], ["https://tec.openplanner.team/stops/Cmmadma1", "https://tec.openplanner.team/stops/Cmmpast1"], ["https://tec.openplanner.team/stops/Ladpara1", "https://tec.openplanner.team/stops/Lverain1"], ["https://tec.openplanner.team/stops/Lmndari2", "https://tec.openplanner.team/stops/Lsmtini3"], ["https://tec.openplanner.team/stops/LHYlinc4", "https://tec.openplanner.team/stops/LHYnoid2"], ["https://tec.openplanner.team/stops/N103acc", "https://tec.openplanner.team/stops/N131aeb"], ["https://tec.openplanner.team/stops/LaAzwei1", "https://tec.openplanner.team/stops/LkOaugu2"], ["https://tec.openplanner.team/stops/LOehart1", "https://tec.openplanner.team/stops/LWAeloi1"], ["https://tec.openplanner.team/stops/N162aab", "https://tec.openplanner.team/stops/N162abb"], ["https://tec.openplanner.team/stops/N512aca", "https://tec.openplanner.team/stops/NL57aeb"], ["https://tec.openplanner.team/stops/N569afa", "https://tec.openplanner.team/stops/N569afb"], ["https://tec.openplanner.team/stops/X747aea", "https://tec.openplanner.team/stops/X747aeb"], ["https://tec.openplanner.team/stops/Llgpire1", "https://tec.openplanner.team/stops/Llgpire2"], ["https://tec.openplanner.team/stops/X786aha", "https://tec.openplanner.team/stops/X786aia"], ["https://tec.openplanner.team/stops/Bglacsr1", "https://tec.openplanner.team/stops/Bgnppra1"], ["https://tec.openplanner.team/stops/LGAbois1", "https://tec.openplanner.team/stops/LWAaxhe1"], ["https://tec.openplanner.team/stops/LlgPRVo2", "https://tec.openplanner.team/stops/Llgverg1"], ["https://tec.openplanner.team/stops/X901aib", "https://tec.openplanner.team/stops/X901bsa"], ["https://tec.openplanner.team/stops/LBPmais2", "https://tec.openplanner.team/stops/LSLfler1"], ["https://tec.openplanner.team/stops/N537aga", "https://tec.openplanner.team/stops/N537ajb"], ["https://tec.openplanner.team/stops/Bcbqtub2", "https://tec.openplanner.team/stops/Bitrpri1"], ["https://tec.openplanner.team/stops/H4bn101a", "https://tec.openplanner.team/stops/H4bn101b"], ["https://tec.openplanner.team/stops/N874aaa", "https://tec.openplanner.team/stops/N874aab"], ["https://tec.openplanner.team/stops/X804bga", "https://tec.openplanner.team/stops/X804bqa"], ["https://tec.openplanner.team/stops/H1bo112a", "https://tec.openplanner.team/stops/H1sg145b"], ["https://tec.openplanner.team/stops/N501hmb", "https://tec.openplanner.team/stops/N501isb"], ["https://tec.openplanner.team/stops/Cpclibe1", "https://tec.openplanner.team/stops/Cpclibe4"], ["https://tec.openplanner.team/stops/Lprchat2", "https://tec.openplanner.team/stops/Lprpous1"], ["https://tec.openplanner.team/stops/X608aca", "https://tec.openplanner.team/stops/X608acb"], ["https://tec.openplanner.team/stops/N141aga", "https://tec.openplanner.team/stops/N141agb"], ["https://tec.openplanner.team/stops/Bosqcar1", "https://tec.openplanner.team/stops/Bosqcar2"], ["https://tec.openplanner.team/stops/Canterr2", "https://tec.openplanner.team/stops/H2an104a"], ["https://tec.openplanner.team/stops/LOmlime1", "https://tec.openplanner.team/stops/LOmlime2"], ["https://tec.openplanner.team/stops/LLAchpl2", "https://tec.openplanner.team/stops/LLAeg--2"], ["https://tec.openplanner.team/stops/X824aea", "https://tec.openplanner.team/stops/X824aga"], ["https://tec.openplanner.team/stops/X901bba", "https://tec.openplanner.team/stops/X901bma"], ["https://tec.openplanner.team/stops/Clb4dgi2", "https://tec.openplanner.team/stops/Clbpepi1"], ["https://tec.openplanner.team/stops/N145acb", "https://tec.openplanner.team/stops/N145agb"], ["https://tec.openplanner.team/stops/H4ma398b", "https://tec.openplanner.team/stops/H4ma419b"], ["https://tec.openplanner.team/stops/LaMahof1", "https://tec.openplanner.team/stops/LsHkreu4"], ["https://tec.openplanner.team/stops/Ladchat2", "https://tec.openplanner.team/stops/LThplen1"], ["https://tec.openplanner.team/stops/Lhrlalo4", "https://tec.openplanner.team/stops/Ljudeme4"], ["https://tec.openplanner.team/stops/LnEfrie1", "https://tec.openplanner.team/stops/LnErech1"], ["https://tec.openplanner.team/stops/Blaneli1", "https://tec.openplanner.team/stops/Blankal3"], ["https://tec.openplanner.team/stops/X801bha", "https://tec.openplanner.team/stops/X801bjb"], ["https://tec.openplanner.team/stops/Bvirhsa2", "https://tec.openplanner.team/stops/Bvirrbo1"], ["https://tec.openplanner.team/stops/LHChomb2", "https://tec.openplanner.team/stops/LHMhof-2"], ["https://tec.openplanner.team/stops/Bwatmch1", "https://tec.openplanner.team/stops/Bwatmch3"], ["https://tec.openplanner.team/stops/X731aka", "https://tec.openplanner.team/stops/X731ama"], ["https://tec.openplanner.team/stops/Csiegli1", "https://tec.openplanner.team/stops/N106afb"], ["https://tec.openplanner.team/stops/H4mv195a", "https://tec.openplanner.team/stops/H4mv197a"], ["https://tec.openplanner.team/stops/Bneedia1", "https://tec.openplanner.team/stops/Bneeegl1"], ["https://tec.openplanner.team/stops/Clb4bra1", "https://tec.openplanner.team/stops/Clb4bra2"], ["https://tec.openplanner.team/stops/Llgjenn1", "https://tec.openplanner.team/stops/Llgjenn4"], ["https://tec.openplanner.team/stops/H4ka192a", "https://tec.openplanner.team/stops/H4ka399a"], ["https://tec.openplanner.team/stops/N205aca", "https://tec.openplanner.team/stops/N220adb"], ["https://tec.openplanner.team/stops/N117aga", "https://tec.openplanner.team/stops/N117ata"], ["https://tec.openplanner.team/stops/Bdvmcsa2", "https://tec.openplanner.team/stops/Bdvmsar2"], ["https://tec.openplanner.team/stops/N874amc", "https://tec.openplanner.team/stops/N874ana"], ["https://tec.openplanner.team/stops/H4bo118a", "https://tec.openplanner.team/stops/H4bo118b"], ["https://tec.openplanner.team/stops/Bhlvgar1", "https://tec.openplanner.team/stops/Crewaba1"], ["https://tec.openplanner.team/stops/Cnahous1", "https://tec.openplanner.team/stops/NC14aqa"], ["https://tec.openplanner.team/stops/X766agb", "https://tec.openplanner.team/stops/X766ahb"], ["https://tec.openplanner.team/stops/H4be112a", "https://tec.openplanner.team/stops/H4be112b"], ["https://tec.openplanner.team/stops/LOcchat2", "https://tec.openplanner.team/stops/LOchalo2"], ["https://tec.openplanner.team/stops/X763aaa", "https://tec.openplanner.team/stops/X763adb"], ["https://tec.openplanner.team/stops/X812aba", "https://tec.openplanner.team/stops/X812ata"], ["https://tec.openplanner.team/stops/X749aab", "https://tec.openplanner.team/stops/X754acb"], ["https://tec.openplanner.team/stops/Bbsicen2", "https://tec.openplanner.team/stops/Bhtihau1"], ["https://tec.openplanner.team/stops/LJSforg2", "https://tec.openplanner.team/stops/Lpechin2"], ["https://tec.openplanner.team/stops/N529abb", "https://tec.openplanner.team/stops/N529aia"], ["https://tec.openplanner.team/stops/H2ec103a", "https://tec.openplanner.team/stops/H3br101b"], ["https://tec.openplanner.team/stops/H4og215a", "https://tec.openplanner.team/stops/H4og215b"], ["https://tec.openplanner.team/stops/N331aab", "https://tec.openplanner.team/stops/N331afc"], ["https://tec.openplanner.team/stops/LWbburn2", "https://tec.openplanner.team/stops/LWberno2"], ["https://tec.openplanner.team/stops/X637aeb", "https://tec.openplanner.team/stops/X637aga"], ["https://tec.openplanner.team/stops/LWAloui1", "https://tec.openplanner.team/stops/LWAloui2"], ["https://tec.openplanner.team/stops/H1sy138a", "https://tec.openplanner.team/stops/H1sy147b"], ["https://tec.openplanner.team/stops/Llgangl1", "https://tec.openplanner.team/stops/Llgelis1"], ["https://tec.openplanner.team/stops/Cmorgof1", "https://tec.openplanner.team/stops/Cmosaba4"], ["https://tec.openplanner.team/stops/N323acb", "https://tec.openplanner.team/stops/N894adb"], ["https://tec.openplanner.team/stops/N501crb", "https://tec.openplanner.team/stops/N501csb"], ["https://tec.openplanner.team/stops/X620aca", "https://tec.openplanner.team/stops/X622afa"], ["https://tec.openplanner.team/stops/Blmlbou2", "https://tec.openplanner.team/stops/Blmlvex2"], ["https://tec.openplanner.team/stops/X917afa", "https://tec.openplanner.team/stops/X917afb"], ["https://tec.openplanner.team/stops/Bbourel1", "https://tec.openplanner.team/stops/Bbstcoi2"], ["https://tec.openplanner.team/stops/Cvp3til1", "https://tec.openplanner.team/stops/Cvp3til2"], ["https://tec.openplanner.team/stops/LVIhall2", "https://tec.openplanner.team/stops/LVIjacq2"], ["https://tec.openplanner.team/stops/N211aka", "https://tec.openplanner.team/stops/N214ajb"], ["https://tec.openplanner.team/stops/H1cu124b", "https://tec.openplanner.team/stops/H1cu130a"], ["https://tec.openplanner.team/stops/H3so158b", "https://tec.openplanner.team/stops/H3so162b"], ["https://tec.openplanner.team/stops/LSPastr1", "https://tec.openplanner.team/stops/LSProya1"], ["https://tec.openplanner.team/stops/N501ixc", "https://tec.openplanner.team/stops/N501jba"], ["https://tec.openplanner.team/stops/Llglill1", "https://tec.openplanner.team/stops/Llgrass2"], ["https://tec.openplanner.team/stops/Cacragu2", "https://tec.openplanner.team/stops/Cacscav1"], ["https://tec.openplanner.team/stops/LLNcruc2", "https://tec.openplanner.team/stops/LSpxhig2"], ["https://tec.openplanner.team/stops/Bgzdcen1", "https://tec.openplanner.team/stops/Bgzdsta2"], ["https://tec.openplanner.team/stops/N543axa", "https://tec.openplanner.team/stops/N543cpa"], ["https://tec.openplanner.team/stops/LJEchat4", "https://tec.openplanner.team/stops/LJEverd2"], ["https://tec.openplanner.team/stops/LRMeg--1", "https://tec.openplanner.team/stops/X595abb"], ["https://tec.openplanner.team/stops/LFR201-1", "https://tec.openplanner.team/stops/LFRsp1-1"], ["https://tec.openplanner.team/stops/H2hg265b", "https://tec.openplanner.team/stops/H2hg270b"], ["https://tec.openplanner.team/stops/Cmmgadi1", "https://tec.openplanner.team/stops/Cmypela1"], ["https://tec.openplanner.team/stops/X576aea", "https://tec.openplanner.team/stops/X576agb"], ["https://tec.openplanner.team/stops/X617ahb", "https://tec.openplanner.team/stops/X618apa"], ["https://tec.openplanner.team/stops/N204aca", "https://tec.openplanner.team/stops/N204afb"], ["https://tec.openplanner.team/stops/X801bqa", "https://tec.openplanner.team/stops/X801bra"], ["https://tec.openplanner.team/stops/LFdchau4", "https://tec.openplanner.team/stops/LLMfond1"], ["https://tec.openplanner.team/stops/Lenhosp1", "https://tec.openplanner.team/stops/Lenplac5"], ["https://tec.openplanner.team/stops/H4ir165b", "https://tec.openplanner.team/stops/H4ir166b"], ["https://tec.openplanner.team/stops/X659avb", "https://tec.openplanner.team/stops/X659bab"], ["https://tec.openplanner.team/stops/H4bh103a", "https://tec.openplanner.team/stops/H4ry129b"], ["https://tec.openplanner.team/stops/H5st167a", "https://tec.openplanner.team/stops/H5st168a"], ["https://tec.openplanner.team/stops/H1hw125b", "https://tec.openplanner.team/stops/H1so136c"], ["https://tec.openplanner.team/stops/LPRmc--3", "https://tec.openplanner.team/stops/LPRvill2"], ["https://tec.openplanner.team/stops/LkEfrie2", "https://tec.openplanner.team/stops/LkEmax-1"], ["https://tec.openplanner.team/stops/Clvmesa2", "https://tec.openplanner.team/stops/Clvndam2"], ["https://tec.openplanner.team/stops/N501aia", "https://tec.openplanner.team/stops/N502adb"], ["https://tec.openplanner.team/stops/Cci4bra4", "https://tec.openplanner.team/stops/Cmlhauc2"], ["https://tec.openplanner.team/stops/LLxcana1", "https://tec.openplanner.team/stops/LLxmonu1"], ["https://tec.openplanner.team/stops/N104aad", "https://tec.openplanner.team/stops/N118avb"], ["https://tec.openplanner.team/stops/LnErech1", "https://tec.openplanner.team/stops/LoEbach2"], ["https://tec.openplanner.team/stops/Brsggea1", "https://tec.openplanner.team/stops/Brsggea2"], ["https://tec.openplanner.team/stops/LAicarr2", "https://tec.openplanner.team/stops/LENarde2"], ["https://tec.openplanner.team/stops/N522aia", "https://tec.openplanner.team/stops/N576aaa"], ["https://tec.openplanner.team/stops/Bchgbru1", "https://tec.openplanner.team/stops/Bchgbru2"], ["https://tec.openplanner.team/stops/H4mo188a", "https://tec.openplanner.team/stops/H4mo188b"], ["https://tec.openplanner.team/stops/H4ra159a", "https://tec.openplanner.team/stops/H4tu170a"], ["https://tec.openplanner.team/stops/LbUgend1", "https://tec.openplanner.team/stops/LbUgend2"], ["https://tec.openplanner.team/stops/H3go101b", "https://tec.openplanner.team/stops/H3go104a"], ["https://tec.openplanner.team/stops/X714acb", "https://tec.openplanner.team/stops/X715ajb"], ["https://tec.openplanner.team/stops/Cthnord1", "https://tec.openplanner.team/stops/Cthnord2"], ["https://tec.openplanner.team/stops/Bdvminc1", "https://tec.openplanner.team/stops/Bdvmtve1"], ["https://tec.openplanner.team/stops/H4pq113b", "https://tec.openplanner.team/stops/H4pq115b"], ["https://tec.openplanner.team/stops/Lmodeja1", "https://tec.openplanner.team/stops/Lmodeja2"], ["https://tec.openplanner.team/stops/Lfh-sci1", "https://tec.openplanner.team/stops/Lseivoz2"], ["https://tec.openplanner.team/stops/N425afb", "https://tec.openplanner.team/stops/N425aga"], ["https://tec.openplanner.team/stops/Btubbot2", "https://tec.openplanner.team/stops/Btubsal1"], ["https://tec.openplanner.team/stops/H4ty327a", "https://tec.openplanner.team/stops/H4ty348a"], ["https://tec.openplanner.team/stops/LSCc39-2", "https://tec.openplanner.team/stops/LSCeg--4"], ["https://tec.openplanner.team/stops/Lfhgare1", "https://tec.openplanner.team/stops/Lfhnrou1"], ["https://tec.openplanner.team/stops/LMAcime1", "https://tec.openplanner.team/stops/LMApl--1"], ["https://tec.openplanner.team/stops/Bcrbast2", "https://tec.openplanner.team/stops/Bcrbhir1"], ["https://tec.openplanner.team/stops/LAmeclu1", "https://tec.openplanner.team/stops/LATpatu1"], ["https://tec.openplanner.team/stops/Bsgetri2", "https://tec.openplanner.team/stops/Bvilpar2"], ["https://tec.openplanner.team/stops/H4ka182b", "https://tec.openplanner.team/stops/H4ka394a"], ["https://tec.openplanner.team/stops/X902aba", "https://tec.openplanner.team/stops/X999aqa"], ["https://tec.openplanner.team/stops/X650aeb", "https://tec.openplanner.team/stops/X650aia"], ["https://tec.openplanner.team/stops/Bllncyc1", "https://tec.openplanner.team/stops/Bllngal1"], ["https://tec.openplanner.team/stops/N538amc", "https://tec.openplanner.team/stops/N538amd"], ["https://tec.openplanner.team/stops/Blemwob3", "https://tec.openplanner.team/stops/Bstecal1"], ["https://tec.openplanner.team/stops/Bbeubos1", "https://tec.openplanner.team/stops/N524aba"], ["https://tec.openplanner.team/stops/H2hp114a", "https://tec.openplanner.team/stops/H2hp119b"], ["https://tec.openplanner.team/stops/LeYwess1", "https://tec.openplanner.team/stops/LlCland1"], ["https://tec.openplanner.team/stops/H2ca100b", "https://tec.openplanner.team/stops/H2mo127c"], ["https://tec.openplanner.team/stops/LmHabzw1", "https://tec.openplanner.team/stops/LmHabzw2"], ["https://tec.openplanner.team/stops/X784agb", "https://tec.openplanner.team/stops/X784aha"], ["https://tec.openplanner.team/stops/X774ada", "https://tec.openplanner.team/stops/X774aec"], ["https://tec.openplanner.team/stops/Csepote1", "https://tec.openplanner.team/stops/Csepote2"], ["https://tec.openplanner.team/stops/LGmcent1", "https://tec.openplanner.team/stops/LGmcite1"], ["https://tec.openplanner.team/stops/X717afa", "https://tec.openplanner.team/stops/X717aja"], ["https://tec.openplanner.team/stops/N149akb", "https://tec.openplanner.team/stops/N149ala"], ["https://tec.openplanner.team/stops/Ceregl1", "https://tec.openplanner.team/stops/Ceregl2"], ["https://tec.openplanner.team/stops/X653add", "https://tec.openplanner.team/stops/X653aea"], ["https://tec.openplanner.team/stops/Cctmine1", "https://tec.openplanner.team/stops/Ccunvus2"], ["https://tec.openplanner.team/stops/LSevitu3", "https://tec.openplanner.team/stops/LSevitu4"], ["https://tec.openplanner.team/stops/X890abb", "https://tec.openplanner.team/stops/X890afa"], ["https://tec.openplanner.team/stops/X658aha", "https://tec.openplanner.team/stops/X658ahb"], ["https://tec.openplanner.team/stops/N501gnb", "https://tec.openplanner.team/stops/N501hhb"], ["https://tec.openplanner.team/stops/Cgxchan1", "https://tec.openplanner.team/stops/Cgxwaut1"], ["https://tec.openplanner.team/stops/LPOchan1", "https://tec.openplanner.team/stops/LPOecol2"], ["https://tec.openplanner.team/stops/H1em103b", "https://tec.openplanner.team/stops/H1em108b"], ["https://tec.openplanner.team/stops/NL76ala", "https://tec.openplanner.team/stops/NL76alc"], ["https://tec.openplanner.team/stops/H5rx114a", "https://tec.openplanner.team/stops/H5rx126a"], ["https://tec.openplanner.team/stops/Cfaecwa1", "https://tec.openplanner.team/stops/Cflvxsa2"], ["https://tec.openplanner.team/stops/LOeelbe1", "https://tec.openplanner.team/stops/LOeelbe2"], ["https://tec.openplanner.team/stops/X824abb", "https://tec.openplanner.team/stops/X824aca"], ["https://tec.openplanner.team/stops/X661ama", "https://tec.openplanner.team/stops/X661aob"], ["https://tec.openplanner.team/stops/N424acb", "https://tec.openplanner.team/stops/N424ada"], ["https://tec.openplanner.team/stops/LMalune3", "https://tec.openplanner.team/stops/LMawilh3"], ["https://tec.openplanner.team/stops/Bbch4br3", "https://tec.openplanner.team/stops/Bbchcbl2"], ["https://tec.openplanner.team/stops/X896afb", "https://tec.openplanner.team/stops/X896ahb"], ["https://tec.openplanner.team/stops/H2ll181a", "https://tec.openplanner.team/stops/H2ll196a"], ["https://tec.openplanner.team/stops/N501bxa", "https://tec.openplanner.team/stops/N501bxb"], ["https://tec.openplanner.team/stops/LWEbruy2", "https://tec.openplanner.team/stops/LWEwilc2"], ["https://tec.openplanner.team/stops/Llglema1", "https://tec.openplanner.team/stops/Llgrome2"], ["https://tec.openplanner.team/stops/Llgelis2", "https://tec.openplanner.team/stops/Llghugo1"], ["https://tec.openplanner.team/stops/N501ejd", "https://tec.openplanner.team/stops/N501ena"], ["https://tec.openplanner.team/stops/X601bpa", "https://tec.openplanner.team/stops/X601bpb"], ["https://tec.openplanner.team/stops/Bcrncce1", "https://tec.openplanner.team/stops/Bcrncor1"], ["https://tec.openplanner.team/stops/LAyegli2", "https://tec.openplanner.team/stops/LSOtheu2"], ["https://tec.openplanner.team/stops/Cobbuze1", "https://tec.openplanner.team/stops/Cobmara2"], ["https://tec.openplanner.team/stops/LWahott1", "https://tec.openplanner.team/stops/LWazoni1"], ["https://tec.openplanner.team/stops/N507akb", "https://tec.openplanner.team/stops/N507ama"], ["https://tec.openplanner.team/stops/N229ajb", "https://tec.openplanner.team/stops/N229aua"], ["https://tec.openplanner.team/stops/Bjcljau1", "https://tec.openplanner.team/stops/Bjcljau2"], ["https://tec.openplanner.team/stops/N508ama", "https://tec.openplanner.team/stops/N508amb"], ["https://tec.openplanner.team/stops/Barqbco1", "https://tec.openplanner.team/stops/Bborbif2"], ["https://tec.openplanner.team/stops/LHUhaum2", "https://tec.openplanner.team/stops/LHUhaum3"], ["https://tec.openplanner.team/stops/H4ro156a", "https://tec.openplanner.team/stops/H5pe135b"], ["https://tec.openplanner.team/stops/H1sy144a", "https://tec.openplanner.team/stops/H1sy144b"], ["https://tec.openplanner.team/stops/X725aia", "https://tec.openplanner.team/stops/X725aib"], ["https://tec.openplanner.team/stops/Chhegli3", "https://tec.openplanner.team/stops/Cmx4che2"], ["https://tec.openplanner.team/stops/H1gh150a", "https://tec.openplanner.team/stops/H1gh157a"], ["https://tec.openplanner.team/stops/X812ava", "https://tec.openplanner.team/stops/X812baa"], ["https://tec.openplanner.team/stops/H1to152a", "https://tec.openplanner.team/stops/H1to154a"], ["https://tec.openplanner.team/stops/X773akb", "https://tec.openplanner.team/stops/X773ala"], ["https://tec.openplanner.team/stops/X601bbb", "https://tec.openplanner.team/stops/X601bbe"], ["https://tec.openplanner.team/stops/LLUvent2", "https://tec.openplanner.team/stops/LLUvent5"], ["https://tec.openplanner.team/stops/LlgCATH1", "https://tec.openplanner.team/stops/Llgpier2"], ["https://tec.openplanner.team/stops/X609aib", "https://tec.openplanner.team/stops/X609alb"], ["https://tec.openplanner.team/stops/Csuptou2", "https://tec.openplanner.team/stops/Csysans2"], ["https://tec.openplanner.team/stops/H4fl115a", "https://tec.openplanner.team/stops/H4mg139a"], ["https://tec.openplanner.team/stops/H1te183a", "https://tec.openplanner.team/stops/H1te187a"], ["https://tec.openplanner.team/stops/LVAbloe1", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://tec.openplanner.team/stops/H5bs102a", "https://tec.openplanner.team/stops/H5bs102d"], ["https://tec.openplanner.team/stops/Cgy3012", "https://tec.openplanner.team/stops/Cgystjo4"], ["https://tec.openplanner.team/stops/H4bh102b", "https://tec.openplanner.team/stops/H4bh102d"], ["https://tec.openplanner.team/stops/N501crc", "https://tec.openplanner.team/stops/N501csa"], ["https://tec.openplanner.team/stops/Cmgbrou2", "https://tec.openplanner.team/stops/Cmgpla2"], ["https://tec.openplanner.team/stops/Bsmgmar1", "https://tec.openplanner.team/stops/Bvilvil4"], ["https://tec.openplanner.team/stops/Bblapri1", "https://tec.openplanner.team/stops/Brsggar2"], ["https://tec.openplanner.team/stops/LRRelec2", "https://tec.openplanner.team/stops/LRRelec3"], ["https://tec.openplanner.team/stops/X731afb", "https://tec.openplanner.team/stops/X928aab"], ["https://tec.openplanner.team/stops/NL74ada", "https://tec.openplanner.team/stops/NL74afa"], ["https://tec.openplanner.team/stops/X901axa", "https://tec.openplanner.team/stops/X901baa"], ["https://tec.openplanner.team/stops/H1hi122b", "https://tec.openplanner.team/stops/H1tl120a"], ["https://tec.openplanner.team/stops/H1ml111b", "https://tec.openplanner.team/stops/H1ml112b"], ["https://tec.openplanner.team/stops/N531ana", "https://tec.openplanner.team/stops/N531anb"], ["https://tec.openplanner.team/stops/LFFmarc2", "https://tec.openplanner.team/stops/LVEbors2"], ["https://tec.openplanner.team/stops/LLTcent2", "https://tec.openplanner.team/stops/LLTeg--1"], ["https://tec.openplanner.team/stops/N209aab", "https://tec.openplanner.team/stops/N209ama"], ["https://tec.openplanner.team/stops/X652afc", "https://tec.openplanner.team/stops/X652agb"], ["https://tec.openplanner.team/stops/Ctubpos4", "https://tec.openplanner.team/stops/Ctucour2"], ["https://tec.openplanner.team/stops/N551aeb", "https://tec.openplanner.team/stops/N551aec"], ["https://tec.openplanner.team/stops/LHFec--2", "https://tec.openplanner.team/stops/LHFec--3"], ["https://tec.openplanner.team/stops/LMfpeni*", "https://tec.openplanner.team/stops/LMfpral2"], ["https://tec.openplanner.team/stops/X749acb", "https://tec.openplanner.team/stops/X749afb"], ["https://tec.openplanner.team/stops/X346akb", "https://tec.openplanner.team/stops/X369aab"], ["https://tec.openplanner.team/stops/H1so131b", "https://tec.openplanner.team/stops/H1so133b"], ["https://tec.openplanner.team/stops/Bheneco2", "https://tec.openplanner.team/stops/Bhenpln2"], ["https://tec.openplanner.team/stops/LHmcarr1", "https://tec.openplanner.team/stops/LHmcite1"], ["https://tec.openplanner.team/stops/Llgcadr3", "https://tec.openplanner.team/stops/Llgcadr4"], ["https://tec.openplanner.team/stops/H1gn149a", "https://tec.openplanner.team/stops/H1gn152a"], ["https://tec.openplanner.team/stops/Lsehya-1", "https://tec.openplanner.team/stops/Lsehya-4"], ["https://tec.openplanner.team/stops/Bgzddmo2", "https://tec.openplanner.team/stops/Bgzddur2"], ["https://tec.openplanner.team/stops/X614aab", "https://tec.openplanner.team/stops/X614aka"], ["https://tec.openplanner.team/stops/X601dba", "https://tec.openplanner.team/stops/X601dca"], ["https://tec.openplanner.team/stops/X733aia", "https://tec.openplanner.team/stops/X733aib"], ["https://tec.openplanner.team/stops/LrUkult1", "https://tec.openplanner.team/stops/LsBzent1"], ["https://tec.openplanner.team/stops/LeUkabe1", "https://tec.openplanner.team/stops/LeUolen1"], ["https://tec.openplanner.team/stops/H4ma162a", "https://tec.openplanner.team/stops/H4mg139b"], ["https://tec.openplanner.team/stops/LEHhaut1", "https://tec.openplanner.team/stops/LEHpech2"], ["https://tec.openplanner.team/stops/LHUeuro1", "https://tec.openplanner.team/stops/LHUlebe5"], ["https://tec.openplanner.team/stops/N542aea", "https://tec.openplanner.team/stops/N542afa"], ["https://tec.openplanner.team/stops/Ljucrah2", "https://tec.openplanner.team/stops/Ljuetie3"], ["https://tec.openplanner.team/stops/LBEpier1", "https://tec.openplanner.team/stops/Lcaboun3"], ["https://tec.openplanner.team/stops/X607ahb", "https://tec.openplanner.team/stops/X607akb"], ["https://tec.openplanner.team/stops/H4ba101a", "https://tec.openplanner.team/stops/H4ga151a"], ["https://tec.openplanner.team/stops/LVleg--3", "https://tec.openplanner.team/stops/LVleg--5"], ["https://tec.openplanner.team/stops/X979afb", "https://tec.openplanner.team/stops/X979agb"], ["https://tec.openplanner.team/stops/Cwfmoul1", "https://tec.openplanner.team/stops/NC23aaa"], ["https://tec.openplanner.team/stops/LwLkirc1", "https://tec.openplanner.team/stops/LwLprum1"], ["https://tec.openplanner.team/stops/Blhurcl1", "https://tec.openplanner.team/stops/Bovejme2"], ["https://tec.openplanner.team/stops/N524ada", "https://tec.openplanner.team/stops/N524adb"], ["https://tec.openplanner.team/stops/LrDhind2", "https://tec.openplanner.team/stops/LrDkirc1"], ["https://tec.openplanner.team/stops/N229agb", "https://tec.openplanner.team/stops/N229amb"], ["https://tec.openplanner.team/stops/X779aba", "https://tec.openplanner.team/stops/X779abb"], ["https://tec.openplanner.team/stops/Ladabot2", "https://tec.openplanner.team/stops/Ladstat1"], ["https://tec.openplanner.team/stops/N540aea", "https://tec.openplanner.team/stops/N540afa"], ["https://tec.openplanner.team/stops/LRmrode1", "https://tec.openplanner.team/stops/LVu40--2"], ["https://tec.openplanner.team/stops/H2bh103a", "https://tec.openplanner.team/stops/H2mg135b"], ["https://tec.openplanner.team/stops/N507aea", "https://tec.openplanner.team/stops/N507aia"], ["https://tec.openplanner.team/stops/Ljecocc2", "https://tec.openplanner.team/stops/Ljejoli1"], ["https://tec.openplanner.team/stops/X836aba", "https://tec.openplanner.team/stops/X836abb"], ["https://tec.openplanner.team/stops/N135aqa", "https://tec.openplanner.team/stops/N135aqb"], ["https://tec.openplanner.team/stops/LAUneuv3", "https://tec.openplanner.team/stops/LRmhage7"], ["https://tec.openplanner.team/stops/Cfaauln1", "https://tec.openplanner.team/stops/Cflspir2"], ["https://tec.openplanner.team/stops/Lpeptle2", "https://tec.openplanner.team/stops/LWeec--1"], ["https://tec.openplanner.team/stops/Csdbosq1", "https://tec.openplanner.team/stops/Csdjeme2"], ["https://tec.openplanner.team/stops/Lsebico2", "https://tec.openplanner.team/stops/Lsevand1"], ["https://tec.openplanner.team/stops/Bpecsta1", "https://tec.openplanner.team/stops/Bpecvme1"], ["https://tec.openplanner.team/stops/X801coa", "https://tec.openplanner.team/stops/X801cob"], ["https://tec.openplanner.team/stops/LWAlieg2", "https://tec.openplanner.team/stops/LWAvand1"], ["https://tec.openplanner.team/stops/H1ju120c", "https://tec.openplanner.team/stops/H1ju121b"], ["https://tec.openplanner.team/stops/LlNbusc2", "https://tec.openplanner.team/stops/LlNsc651"], ["https://tec.openplanner.team/stops/X661ala", "https://tec.openplanner.team/stops/X817afb"], ["https://tec.openplanner.team/stops/N522aha", "https://tec.openplanner.team/stops/N522ahb"], ["https://tec.openplanner.team/stops/Cprlpre2", "https://tec.openplanner.team/stops/NC11arb"], ["https://tec.openplanner.team/stops/H1gc123b", "https://tec.openplanner.team/stops/H1qy136a"], ["https://tec.openplanner.team/stops/X615aaa", "https://tec.openplanner.team/stops/X615bia"], ["https://tec.openplanner.team/stops/LBLplac1", "https://tec.openplanner.team/stops/LBLplac4"], ["https://tec.openplanner.team/stops/Blhutco1", "https://tec.openplanner.team/stops/Blhutco4"], ["https://tec.openplanner.team/stops/LSBjoli1", "https://tec.openplanner.team/stops/LSBrouf3"], ["https://tec.openplanner.team/stops/X910aha", "https://tec.openplanner.team/stops/X910ahb"], ["https://tec.openplanner.team/stops/X938aba", "https://tec.openplanner.team/stops/X938abb"], ["https://tec.openplanner.team/stops/LrOgara2", "https://tec.openplanner.team/stops/LrOgara3"], ["https://tec.openplanner.team/stops/Lflcle-2", "https://tec.openplanner.team/stops/Lflpaeu1"], ["https://tec.openplanner.team/stops/LmDgeme1", "https://tec.openplanner.team/stops/LmYkreu2"], ["https://tec.openplanner.team/stops/LhSgete2", "https://tec.openplanner.team/stops/LhSkirc2"], ["https://tec.openplanner.team/stops/LSGcarr2", "https://tec.openplanner.team/stops/LSGeg--4"], ["https://tec.openplanner.team/stops/Lvcfogu1", "https://tec.openplanner.team/stops/Lvcpost1"], ["https://tec.openplanner.team/stops/Barqpla1", "https://tec.openplanner.team/stops/Bfelagb1"], ["https://tec.openplanner.team/stops/H4an106b", "https://tec.openplanner.team/stops/H4an107b"], ["https://tec.openplanner.team/stops/X663aga", "https://tec.openplanner.team/stops/X663aha"], ["https://tec.openplanner.team/stops/LaR1G--1", "https://tec.openplanner.team/stops/LbHzent1"], ["https://tec.openplanner.team/stops/X756aha", "https://tec.openplanner.team/stops/X756ahb"], ["https://tec.openplanner.team/stops/Blemhon2", "https://tec.openplanner.team/stops/Blemmar2"], ["https://tec.openplanner.team/stops/X671abb", "https://tec.openplanner.team/stops/X671adb"], ["https://tec.openplanner.team/stops/LSChane1", "https://tec.openplanner.team/stops/LSChane2"], ["https://tec.openplanner.team/stops/N232boa", "https://tec.openplanner.team/stops/N232bob"], ["https://tec.openplanner.team/stops/N515aeb", "https://tec.openplanner.team/stops/N517aab"], ["https://tec.openplanner.team/stops/LOLvill1", "https://tec.openplanner.team/stops/LOLvill4"], ["https://tec.openplanner.team/stops/X636apb", "https://tec.openplanner.team/stops/X636aqd"], ["https://tec.openplanner.team/stops/Lemcort2", "https://tec.openplanner.team/stops/Lemeg--1"], ["https://tec.openplanner.team/stops/Bbch4br1", "https://tec.openplanner.team/stops/Bbch4br4"], ["https://tec.openplanner.team/stops/LaHzoll*", "https://tec.openplanner.team/stops/LmNlieb1"], ["https://tec.openplanner.team/stops/N501iob", "https://tec.openplanner.team/stops/N501isb"], ["https://tec.openplanner.team/stops/Cfamonu1", "https://tec.openplanner.team/stops/Cfamonu2"], ["https://tec.openplanner.team/stops/LAMjaur1", "https://tec.openplanner.team/stops/LAMjaur2"], ["https://tec.openplanner.team/stops/Bglibui1", "https://tec.openplanner.team/stops/Bjodpce2"], ["https://tec.openplanner.team/stops/Brebeau1", "https://tec.openplanner.team/stops/Brebmtg2"], ["https://tec.openplanner.team/stops/H1je215a", "https://tec.openplanner.team/stops/H1je217a"], ["https://tec.openplanner.team/stops/H1he109b", "https://tec.openplanner.team/stops/H1qv112b"], ["https://tec.openplanner.team/stops/LBdcarr1", "https://tec.openplanner.team/stops/LSMec--2"], ["https://tec.openplanner.team/stops/Blineco2", "https://tec.openplanner.team/stops/Blingar3"], ["https://tec.openplanner.team/stops/Bquebre1", "https://tec.openplanner.team/stops/Bquebth3"], ["https://tec.openplanner.team/stops/LBaeg--1", "https://tec.openplanner.team/stops/LBafagn2"], ["https://tec.openplanner.team/stops/H1ht128a", "https://tec.openplanner.team/stops/H1vt195b"], ["https://tec.openplanner.team/stops/H1fv102a", "https://tec.openplanner.team/stops/H1sa112a"], ["https://tec.openplanner.team/stops/X390apa", "https://tec.openplanner.team/stops/X390apb"], ["https://tec.openplanner.team/stops/Crcpcom1", "https://tec.openplanner.team/stops/Crcpcom2"], ["https://tec.openplanner.team/stops/Lagjard1", "https://tec.openplanner.team/stops/Lagjard2"], ["https://tec.openplanner.team/stops/Crclorc1", "https://tec.openplanner.team/stops/Crclorc2"], ["https://tec.openplanner.team/stops/Cmldeto1", "https://tec.openplanner.team/stops/Cmlpbay2"], ["https://tec.openplanner.team/stops/H1sd344a", "https://tec.openplanner.team/stops/H1sd347a"], ["https://tec.openplanner.team/stops/N134aaa", "https://tec.openplanner.team/stops/N134abb"], ["https://tec.openplanner.team/stops/N512axa", "https://tec.openplanner.team/stops/N512axb"], ["https://tec.openplanner.team/stops/LOTsav-1", "https://tec.openplanner.team/stops/LRUhama1"], ["https://tec.openplanner.team/stops/X762adb", "https://tec.openplanner.team/stops/X764aaa"], ["https://tec.openplanner.team/stops/X664aaa", "https://tec.openplanner.team/stops/X667aba"], ["https://tec.openplanner.team/stops/LvAwere1", "https://tec.openplanner.team/stops/LvAwere2"], ["https://tec.openplanner.team/stops/X663ana", "https://tec.openplanner.team/stops/X663ara"], ["https://tec.openplanner.team/stops/N532aba", "https://tec.openplanner.team/stops/N532amb"], ["https://tec.openplanner.team/stops/N534ayb", "https://tec.openplanner.team/stops/N534cbh"], ["https://tec.openplanner.team/stops/X640aqb", "https://tec.openplanner.team/stops/X640aua"], ["https://tec.openplanner.team/stops/Bjodath3", "https://tec.openplanner.team/stops/Bjodint2"], ["https://tec.openplanner.team/stops/Lcemalv2", "https://tec.openplanner.team/stops/Lcepepi1"], ["https://tec.openplanner.team/stops/LSpshin2", "https://tec.openplanner.team/stops/LSpunio2"], ["https://tec.openplanner.team/stops/H4do105a", "https://tec.openplanner.team/stops/H4mo195b"], ["https://tec.openplanner.team/stops/Csecarr1", "https://tec.openplanner.team/stops/N424aba"], ["https://tec.openplanner.team/stops/LCscarr1", "https://tec.openplanner.team/stops/LCseg--1"], ["https://tec.openplanner.team/stops/H1ms250a", "https://tec.openplanner.team/stops/H1ms259a"], ["https://tec.openplanner.team/stops/H4rm108a", "https://tec.openplanner.team/stops/H4ta127a"], ["https://tec.openplanner.team/stops/Bgrhcro2", "https://tec.openplanner.team/stops/Bgrhhot2"], ["https://tec.openplanner.team/stops/Lprmoin2", "https://tec.openplanner.team/stops/Lprorph2"], ["https://tec.openplanner.team/stops/H4ob109a", "https://tec.openplanner.team/stops/H4ob124a"], ["https://tec.openplanner.team/stops/H1mh112a", "https://tec.openplanner.team/stops/H1mh116a"], ["https://tec.openplanner.team/stops/N505agb", "https://tec.openplanner.team/stops/N505aoa"], ["https://tec.openplanner.team/stops/N534amg", "https://tec.openplanner.team/stops/N534asb"], ["https://tec.openplanner.team/stops/LATpatu1", "https://tec.openplanner.team/stops/LATpatu2"], ["https://tec.openplanner.team/stops/Bperalv1", "https://tec.openplanner.team/stops/Btlbegl4"], ["https://tec.openplanner.team/stops/LeMdorf1", "https://tec.openplanner.team/stops/LeMnr11"], ["https://tec.openplanner.team/stops/LESfoot2", "https://tec.openplanner.team/stops/LESmont2"], ["https://tec.openplanner.team/stops/Cthathe4", "https://tec.openplanner.team/stops/Cthgend1"], ["https://tec.openplanner.team/stops/LOdcris1", "https://tec.openplanner.team/stops/LOdmonu2"], ["https://tec.openplanner.team/stops/N155aaa", "https://tec.openplanner.team/stops/N155agb"], ["https://tec.openplanner.team/stops/LBPxhav2", "https://tec.openplanner.team/stops/LSLhale1"], ["https://tec.openplanner.team/stops/X730aaa", "https://tec.openplanner.team/stops/X730aba"], ["https://tec.openplanner.team/stops/LRObruy4", "https://tec.openplanner.team/stops/LROcham1"], ["https://tec.openplanner.team/stops/H1mr126a", "https://tec.openplanner.team/stops/H1mr126b"], ["https://tec.openplanner.team/stops/X943ada", "https://tec.openplanner.team/stops/X943adb"], ["https://tec.openplanner.team/stops/X630aab", "https://tec.openplanner.team/stops/X638ajb"], ["https://tec.openplanner.team/stops/H3so184a", "https://tec.openplanner.team/stops/H3so185b"], ["https://tec.openplanner.team/stops/LBEairp2", "https://tec.openplanner.team/stops/LBEhaye1"], ["https://tec.openplanner.team/stops/X724agb", "https://tec.openplanner.team/stops/X724ahb"], ["https://tec.openplanner.team/stops/Lrocort1", "https://tec.openplanner.team/stops/Lronamo1"], ["https://tec.openplanner.team/stops/Bllnhoc2", "https://tec.openplanner.team/stops/Bwavtas1"], ["https://tec.openplanner.team/stops/N311aba", "https://tec.openplanner.team/stops/N311afa"], ["https://tec.openplanner.team/stops/LCF2spa2", "https://tec.openplanner.team/stops/LCFmoul2"], ["https://tec.openplanner.team/stops/Cgyhaie1", "https://tec.openplanner.team/stops/Cgyralb1"], ["https://tec.openplanner.team/stops/N539afb", "https://tec.openplanner.team/stops/N539afd"], ["https://tec.openplanner.team/stops/H4ft133a", "https://tec.openplanner.team/stops/H4ft135b"], ["https://tec.openplanner.team/stops/NL74adb", "https://tec.openplanner.team/stops/NL74afb"], ["https://tec.openplanner.team/stops/X774agb", "https://tec.openplanner.team/stops/X775aga"], ["https://tec.openplanner.team/stops/LBPrueg2", "https://tec.openplanner.team/stops/LSLvaux1"], ["https://tec.openplanner.team/stops/Bmouegl2", "https://tec.openplanner.team/stops/Bottegl1"], ["https://tec.openplanner.team/stops/X624aeb", "https://tec.openplanner.team/stops/X624alb"], ["https://tec.openplanner.team/stops/LLebrux1", "https://tec.openplanner.team/stops/LLefali1"], ["https://tec.openplanner.team/stops/H1wa132b", "https://tec.openplanner.team/stops/H1wa151a"], ["https://tec.openplanner.team/stops/H1sb149a", "https://tec.openplanner.team/stops/H1sb149b"], ["https://tec.openplanner.team/stops/Cjxpris1", "https://tec.openplanner.team/stops/Cnachcu1"], ["https://tec.openplanner.team/stops/Cchvhau1", "https://tec.openplanner.team/stops/Cchvhau2"], ["https://tec.openplanner.team/stops/Cwgplac1", "https://tec.openplanner.team/stops/Cwgrabi1"], ["https://tec.openplanner.team/stops/N501fya", "https://tec.openplanner.team/stops/N501fyc"], ["https://tec.openplanner.team/stops/LCLacbi2", "https://tec.openplanner.team/stops/LCLstat2"], ["https://tec.openplanner.team/stops/N539afc", "https://tec.openplanner.team/stops/N540aga"], ["https://tec.openplanner.team/stops/N584bnb", "https://tec.openplanner.team/stops/N584cbb"], ["https://tec.openplanner.team/stops/Laleg--2", "https://tec.openplanner.team/stops/Lancoop2"], ["https://tec.openplanner.team/stops/LCPcomb1", "https://tec.openplanner.team/stops/LCPconf1"], ["https://tec.openplanner.team/stops/H1at109b", "https://tec.openplanner.team/stops/H1do119b"], ["https://tec.openplanner.team/stops/H4er121b", "https://tec.openplanner.team/stops/H4oq223a"], ["https://tec.openplanner.team/stops/X765acb", "https://tec.openplanner.team/stops/X765afa"], ["https://tec.openplanner.team/stops/H4to139a", "https://tec.openplanner.team/stops/H4to139c"], ["https://tec.openplanner.team/stops/X754asb", "https://tec.openplanner.team/stops/X779afb"], ["https://tec.openplanner.team/stops/Bjodeco3", "https://tec.openplanner.team/stops/Bjodsje2"], ["https://tec.openplanner.team/stops/N538aua", "https://tec.openplanner.team/stops/N538bbb"], ["https://tec.openplanner.team/stops/LCPhall1", "https://tec.openplanner.team/stops/LMvgare2"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LSJeg--1"], ["https://tec.openplanner.team/stops/N519ajb", "https://tec.openplanner.team/stops/N525aga"], ["https://tec.openplanner.team/stops/LFTec--2", "https://tec.openplanner.team/stops/LSygerm1"], ["https://tec.openplanner.team/stops/LDLbois1", "https://tec.openplanner.team/stops/LDLbois2"], ["https://tec.openplanner.team/stops/LPRfour2", "https://tec.openplanner.team/stops/LSHmais2"], ["https://tec.openplanner.team/stops/Lmlhaut2", "https://tec.openplanner.team/stops/Lmlmaqu1"], ["https://tec.openplanner.team/stops/X633akb", "https://tec.openplanner.team/stops/X634aab"], ["https://tec.openplanner.team/stops/N308asa", "https://tec.openplanner.team/stops/N308asb"], ["https://tec.openplanner.team/stops/H1eo108a", "https://tec.openplanner.team/stops/H1mj128b"], ["https://tec.openplanner.team/stops/H4ty341a", "https://tec.openplanner.team/stops/H4ty356a"], ["https://tec.openplanner.team/stops/LHehacc1", "https://tec.openplanner.team/stops/LOUbleu1"], ["https://tec.openplanner.team/stops/X773acb", "https://tec.openplanner.team/stops/X773adb"], ["https://tec.openplanner.team/stops/X615aua", "https://tec.openplanner.team/stops/X615ava"], ["https://tec.openplanner.team/stops/H1ch102b", "https://tec.openplanner.team/stops/H5ma181a"], ["https://tec.openplanner.team/stops/X912abb", "https://tec.openplanner.team/stops/X912adb"], ["https://tec.openplanner.team/stops/X768aaa", "https://tec.openplanner.team/stops/X768aab"], ["https://tec.openplanner.team/stops/X725aga", "https://tec.openplanner.team/stops/X725aib"], ["https://tec.openplanner.team/stops/Lsephar1", "https://tec.openplanner.team/stops/Lsepuit1"], ["https://tec.openplanner.team/stops/X908aoa", "https://tec.openplanner.team/stops/X908aob"], ["https://tec.openplanner.team/stops/N501eab", "https://tec.openplanner.team/stops/N501epd"], ["https://tec.openplanner.team/stops/N132aaa", "https://tec.openplanner.team/stops/N135aab"], ["https://tec.openplanner.team/stops/LAWcite6", "https://tec.openplanner.team/stops/LAWdefu3"], ["https://tec.openplanner.team/stops/N524akb", "https://tec.openplanner.team/stops/N524ama"], ["https://tec.openplanner.team/stops/X901bba", "https://tec.openplanner.team/stops/X922abb"], ["https://tec.openplanner.team/stops/H4og206a", "https://tec.openplanner.team/stops/H4og212a"], ["https://tec.openplanner.team/stops/N517aaa", "https://tec.openplanner.team/stops/N517aca"], ["https://tec.openplanner.team/stops/Cci28ju1", "https://tec.openplanner.team/stops/Cciethi1"], ["https://tec.openplanner.team/stops/H4es112b", "https://tec.openplanner.team/stops/H4es113a"], ["https://tec.openplanner.team/stops/H4fr146a", "https://tec.openplanner.team/stops/H4fr390a"], ["https://tec.openplanner.team/stops/N353afc", "https://tec.openplanner.team/stops/N353afd"], ["https://tec.openplanner.team/stops/Lseespe2", "https://tec.openplanner.team/stops/Lsetroq1"], ["https://tec.openplanner.team/stops/X922aba", "https://tec.openplanner.team/stops/X922acb"], ["https://tec.openplanner.team/stops/H1mb135b", "https://tec.openplanner.team/stops/H1mb166a"], ["https://tec.openplanner.team/stops/LAMvert1", "https://tec.openplanner.team/stops/LOmvill3"], ["https://tec.openplanner.team/stops/H4co106a", "https://tec.openplanner.team/stops/H4co134a"], ["https://tec.openplanner.team/stops/X806aia", "https://tec.openplanner.team/stops/X808aka"], ["https://tec.openplanner.team/stops/Lreclou1", "https://tec.openplanner.team/stops/Lreec--2"], ["https://tec.openplanner.team/stops/X342ada", "https://tec.openplanner.team/stops/X342afa"], ["https://tec.openplanner.team/stops/X788aaa", "https://tec.openplanner.team/stops/X789aia"], ["https://tec.openplanner.team/stops/Blmlcle1", "https://tec.openplanner.team/stops/Blmldmi2"], ["https://tec.openplanner.team/stops/Ladjaur1", "https://tec.openplanner.team/stops/Ladjaur2"], ["https://tec.openplanner.team/stops/Ccpetan2", "https://tec.openplanner.team/stops/Cptrebe2"], ["https://tec.openplanner.team/stops/Loucorn1", "https://tec.openplanner.team/stops/Lousimo2"], ["https://tec.openplanner.team/stops/X670ala", "https://tec.openplanner.team/stops/X670amb"], ["https://tec.openplanner.team/stops/N532aga", "https://tec.openplanner.team/stops/N532ajb"], ["https://tec.openplanner.team/stops/Clvchar2", "https://tec.openplanner.team/stops/Clvlove1"], ["https://tec.openplanner.team/stops/Bplnbal1", "https://tec.openplanner.team/stops/Bplnbal2"], ["https://tec.openplanner.team/stops/H1an103b", "https://tec.openplanner.team/stops/H1bx104b"], ["https://tec.openplanner.team/stops/H4ha168b", "https://tec.openplanner.team/stops/H4ha171b"], ["https://tec.openplanner.team/stops/X850afb", "https://tec.openplanner.team/stops/X850aja"], ["https://tec.openplanner.team/stops/Lmitech2", "https://tec.openplanner.team/stops/Lvtcime2"], ["https://tec.openplanner.team/stops/H5is168b", "https://tec.openplanner.team/stops/H5is174b"], ["https://tec.openplanner.team/stops/H1ms264a", "https://tec.openplanner.team/stops/H1ms264b"], ["https://tec.openplanner.team/stops/N544aea", "https://tec.openplanner.team/stops/N544aeb"], ["https://tec.openplanner.team/stops/H4bi156b", "https://tec.openplanner.team/stops/H4ne136b"], ["https://tec.openplanner.team/stops/Bgdhbvu2", "https://tec.openplanner.team/stops/Bgdhdet1"], ["https://tec.openplanner.team/stops/N565aaa", "https://tec.openplanner.team/stops/N565aab"], ["https://tec.openplanner.team/stops/N204ala", "https://tec.openplanner.team/stops/N204alb"], ["https://tec.openplanner.team/stops/X748abb", "https://tec.openplanner.team/stops/X748adb"], ["https://tec.openplanner.team/stops/NB33aka", "https://tec.openplanner.team/stops/NB33akb"], ["https://tec.openplanner.team/stops/N521ala", "https://tec.openplanner.team/stops/N527aaa"], ["https://tec.openplanner.team/stops/Bmlnbpr1", "https://tec.openplanner.team/stops/Bmlnbpr2"], ["https://tec.openplanner.team/stops/LBBlaga2", "https://tec.openplanner.team/stops/X222ala"], ["https://tec.openplanner.team/stops/LMYmont1", "https://tec.openplanner.team/stops/X796agb"], ["https://tec.openplanner.team/stops/X637aca", "https://tec.openplanner.team/stops/X637ala"], ["https://tec.openplanner.team/stops/Cgdcent2", "https://tec.openplanner.team/stops/Cgdrhau2"], ["https://tec.openplanner.team/stops/N501hkb", "https://tec.openplanner.team/stops/N501lra"], ["https://tec.openplanner.team/stops/H4co108b", "https://tec.openplanner.team/stops/H4co146a"], ["https://tec.openplanner.team/stops/H1ba109a", "https://tec.openplanner.team/stops/H1ba109b"], ["https://tec.openplanner.team/stops/LODarbr1", "https://tec.openplanner.team/stops/LODvill1"], ["https://tec.openplanner.team/stops/Cchba1", "https://tec.openplanner.team/stops/CMba1"], ["https://tec.openplanner.team/stops/H4wp150b", "https://tec.openplanner.team/stops/H4wp152b"], ["https://tec.openplanner.team/stops/H4am100a", "https://tec.openplanner.team/stops/H4an107a"], ["https://tec.openplanner.team/stops/Llxec--1", "https://tec.openplanner.team/stops/Lrafusi2"], ["https://tec.openplanner.team/stops/Lsnecco1", "https://tec.openplanner.team/stops/Lsnlibe1"], ["https://tec.openplanner.team/stops/LBQmaye2", "https://tec.openplanner.team/stops/LSlbail2"], ["https://tec.openplanner.team/stops/LgAnr491", "https://tec.openplanner.team/stops/LgAnr492"], ["https://tec.openplanner.team/stops/H4ha167b", "https://tec.openplanner.team/stops/H4ha168a"], ["https://tec.openplanner.team/stops/X641aua", "https://tec.openplanner.team/stops/X641avb"], ["https://tec.openplanner.team/stops/Bohnbra1", "https://tec.openplanner.team/stops/Bohnrpl1"], ["https://tec.openplanner.team/stops/N549ada", "https://tec.openplanner.team/stops/N578aaa"], ["https://tec.openplanner.team/stops/NL77ada", "https://tec.openplanner.team/stops/NL78ajb"], ["https://tec.openplanner.team/stops/Cmomoul3", "https://tec.openplanner.team/stops/Cmopn4"], ["https://tec.openplanner.team/stops/X982bfb", "https://tec.openplanner.team/stops/X982bua"], ["https://tec.openplanner.team/stops/Cjucouc2", "https://tec.openplanner.team/stops/Cjuvand2"], ["https://tec.openplanner.team/stops/N308ada", "https://tec.openplanner.team/stops/N311agb"], ["https://tec.openplanner.team/stops/N534aqa", "https://tec.openplanner.team/stops/N534asb"], ["https://tec.openplanner.team/stops/Cmmami1", "https://tec.openplanner.team/stops/Cmmbmad2"], ["https://tec.openplanner.team/stops/Bchgflo1", "https://tec.openplanner.team/stops/Bchgflo2"], ["https://tec.openplanner.team/stops/LNEgaul2", "https://tec.openplanner.team/stops/LNEvand2"], ["https://tec.openplanner.team/stops/Bgrhhot2", "https://tec.openplanner.team/stops/N518abb"], ["https://tec.openplanner.team/stops/Llgcime1", "https://tec.openplanner.team/stops/Llggerm1"], ["https://tec.openplanner.team/stops/LHNcoll1", "https://tec.openplanner.team/stops/LHNhall2"], ["https://tec.openplanner.team/stops/X907ajb", "https://tec.openplanner.team/stops/X908asb"], ["https://tec.openplanner.team/stops/N217ada", "https://tec.openplanner.team/stops/N217adb"], ["https://tec.openplanner.team/stops/H1pa106c", "https://tec.openplanner.team/stops/H1pa120b"], ["https://tec.openplanner.team/stops/Llgbene1", "https://tec.openplanner.team/stops/Llgcour3"], ["https://tec.openplanner.team/stops/Lcapisc2", "https://tec.openplanner.team/stops/Lrosaun1"], ["https://tec.openplanner.team/stops/LHCbran2", "https://tec.openplanner.team/stops/LWEwilc1"], ["https://tec.openplanner.team/stops/Bdoncar1", "https://tec.openplanner.team/stops/Bgliopp1"], ["https://tec.openplanner.team/stops/X826ada", "https://tec.openplanner.team/stops/X826adb"], ["https://tec.openplanner.team/stops/X637ala", "https://tec.openplanner.team/stops/X637alb"], ["https://tec.openplanner.team/stops/LJvmart1", "https://tec.openplanner.team/stops/X576ada"], ["https://tec.openplanner.team/stops/LSOdow%C3%A91", "https://tec.openplanner.team/stops/LSOdow%C3%A92"], ["https://tec.openplanner.team/stops/H1sb145a", "https://tec.openplanner.team/stops/H1sb151b"], ["https://tec.openplanner.team/stops/Llghaye2", "https://tec.openplanner.team/stops/Llglamb1"], ["https://tec.openplanner.team/stops/Cbmclar2", "https://tec.openplanner.team/stops/Cbmgare1"], ["https://tec.openplanner.team/stops/LbOkalv1", "https://tec.openplanner.team/stops/LbOvith1"], ["https://tec.openplanner.team/stops/Ljudeme1", "https://tec.openplanner.team/stops/Ljudeme2"], ["https://tec.openplanner.team/stops/Ljeblum2", "https://tec.openplanner.team/stops/Ljeheur2"], ["https://tec.openplanner.team/stops/N501dsb", "https://tec.openplanner.team/stops/N501jta"], ["https://tec.openplanner.team/stops/NH01aoa", "https://tec.openplanner.team/stops/NH01apb"], ["https://tec.openplanner.team/stops/N505aca", "https://tec.openplanner.team/stops/N505aoa"], ["https://tec.openplanner.team/stops/LRmrode2", "https://tec.openplanner.team/stops/LRmsmvo2"], ["https://tec.openplanner.team/stops/Lflmaxi2", "https://tec.openplanner.team/stops/Lflmaxi4"], ["https://tec.openplanner.team/stops/H1et100a", "https://tec.openplanner.team/stops/H1et100b"], ["https://tec.openplanner.team/stops/LVbeg--1", "https://tec.openplanner.team/stops/LVbsurr1"], ["https://tec.openplanner.team/stops/N501hxa", "https://tec.openplanner.team/stops/N501icb"], ["https://tec.openplanner.team/stops/Lgrlimi4", "https://tec.openplanner.team/stops/Llgmulh2"], ["https://tec.openplanner.team/stops/Canboha2", "https://tec.openplanner.team/stops/Canh1942"], ["https://tec.openplanner.team/stops/Ljeblum1", "https://tec.openplanner.team/stops/Ljeblum2"], ["https://tec.openplanner.team/stops/Clbptno3", "https://tec.openplanner.team/stops/Cthpano1"], ["https://tec.openplanner.team/stops/LmIvale1", "https://tec.openplanner.team/stops/LmIvale2"], ["https://tec.openplanner.team/stops/LBTwauc2", "https://tec.openplanner.team/stops/LLMeg--2"], ["https://tec.openplanner.team/stops/N106aia", "https://tec.openplanner.team/stops/N106ajb"], ["https://tec.openplanner.team/stops/X396aeb", "https://tec.openplanner.team/stops/X397aab"], ["https://tec.openplanner.team/stops/N509acb", "https://tec.openplanner.team/stops/N509acc"], ["https://tec.openplanner.team/stops/N540aia", "https://tec.openplanner.team/stops/N540ama"], ["https://tec.openplanner.team/stops/Cdapige1", "https://tec.openplanner.team/stops/CMpige1"], ["https://tec.openplanner.team/stops/N537agb", "https://tec.openplanner.team/stops/N537aha"], ["https://tec.openplanner.team/stops/Cflcarr2", "https://tec.openplanner.team/stops/Cflcent1"], ["https://tec.openplanner.team/stops/Csyjumo2", "https://tec.openplanner.team/stops/Csysans1"], ["https://tec.openplanner.team/stops/Ccstord2", "https://tec.openplanner.team/stops/Chhegli2"], ["https://tec.openplanner.team/stops/X646aab", "https://tec.openplanner.team/stops/X646aca"], ["https://tec.openplanner.team/stops/LSteg--1", "https://tec.openplanner.team/stops/LStroch2"], ["https://tec.openplanner.team/stops/X717aba", "https://tec.openplanner.team/stops/X782aab"], ["https://tec.openplanner.team/stops/Bmarchn1", "https://tec.openplanner.team/stops/Bmarchn2"], ["https://tec.openplanner.team/stops/H4la197a", "https://tec.openplanner.team/stops/H4ma203b"], ["https://tec.openplanner.team/stops/LWblesp1", "https://tec.openplanner.team/stops/X512ajb"], ["https://tec.openplanner.team/stops/Bcbqcha1", "https://tec.openplanner.team/stops/Bcbqcim2"], ["https://tec.openplanner.team/stops/N331aha", "https://tec.openplanner.team/stops/N331akb"], ["https://tec.openplanner.team/stops/H4fl114a", "https://tec.openplanner.team/stops/H4fl179a"], ["https://tec.openplanner.team/stops/NL76adb", "https://tec.openplanner.team/stops/NL76aea"], ["https://tec.openplanner.team/stops/LbTaral1", "https://tec.openplanner.team/stops/LsHfrie2"], ["https://tec.openplanner.team/stops/Chhbiet1", "https://tec.openplanner.team/stops/Chhdubr2"], ["https://tec.openplanner.team/stops/LVBcarr1", "https://tec.openplanner.team/stops/LVBrmon1"], ["https://tec.openplanner.team/stops/Cbcegli3", "https://tec.openplanner.team/stops/Cbckios2"], ["https://tec.openplanner.team/stops/N212ahb", "https://tec.openplanner.team/stops/N212ajb"], ["https://tec.openplanner.team/stops/Bmanati1", "https://tec.openplanner.team/stops/H2mg144b"], ["https://tec.openplanner.team/stops/Cjualtr1", "https://tec.openplanner.team/stops/Cjudevo1"], ["https://tec.openplanner.team/stops/H1bl100a", "https://tec.openplanner.team/stops/H1bl106a"], ["https://tec.openplanner.team/stops/LAxbott2", "https://tec.openplanner.team/stops/LFsec--2"], ["https://tec.openplanner.team/stops/N501irb", "https://tec.openplanner.team/stops/N501iwa"], ["https://tec.openplanner.team/stops/H4hq134a", "https://tec.openplanner.team/stops/H4hq134b"], ["https://tec.openplanner.team/stops/LBivill1", "https://tec.openplanner.team/stops/LDOprev2"], ["https://tec.openplanner.team/stops/N232aqa", "https://tec.openplanner.team/stops/N232aza"], ["https://tec.openplanner.team/stops/Bitrbvo1", "https://tec.openplanner.team/stops/Bosqsam2"], ["https://tec.openplanner.team/stops/Bcbqcht1", "https://tec.openplanner.team/stops/Bcbqpon2"], ["https://tec.openplanner.team/stops/X663aeb", "https://tec.openplanner.team/stops/X663afb"], ["https://tec.openplanner.team/stops/H4th139a", "https://tec.openplanner.team/stops/H4th139b"], ["https://tec.openplanner.team/stops/LmNha152", "https://tec.openplanner.team/stops/LmNkrew2"], ["https://tec.openplanner.team/stops/LmDdenk1", "https://tec.openplanner.team/stops/LmDkirc1"], ["https://tec.openplanner.team/stops/N547amb", "https://tec.openplanner.team/stops/N547anb"], ["https://tec.openplanner.team/stops/N533aga", "https://tec.openplanner.team/stops/N533aha"], ["https://tec.openplanner.team/stops/LPLhest2", "https://tec.openplanner.team/stops/LRRcole1"], ["https://tec.openplanner.team/stops/X634aga", "https://tec.openplanner.team/stops/X634agb"], ["https://tec.openplanner.team/stops/LWAeloi1", "https://tec.openplanner.team/stops/LWAlpre1"], ["https://tec.openplanner.team/stops/Bnivbos2", "https://tec.openplanner.team/stops/Bnivsci1"], ["https://tec.openplanner.team/stops/H4fo117b", "https://tec.openplanner.team/stops/H4fo117c"], ["https://tec.openplanner.team/stops/LTaabba2", "https://tec.openplanner.team/stops/LVnvieg1"], ["https://tec.openplanner.team/stops/Lmodeni2", "https://tec.openplanner.team/stops/Lmoknae2"], ["https://tec.openplanner.team/stops/LmYamel2", "https://tec.openplanner.team/stops/LwL100-2"], ["https://tec.openplanner.team/stops/H1el134a", "https://tec.openplanner.team/stops/H1el140b"], ["https://tec.openplanner.team/stops/LLApavi2", "https://tec.openplanner.team/stops/Llxcite2"], ["https://tec.openplanner.team/stops/LhSfrei1", "https://tec.openplanner.team/stops/LhSfrei2"], ["https://tec.openplanner.team/stops/Csasncb1", "https://tec.openplanner.team/stops/Csasncb2"], ["https://tec.openplanner.team/stops/LHUfont1", "https://tec.openplanner.team/stops/LSteg--2"], ["https://tec.openplanner.team/stops/LAUbour2", "https://tec.openplanner.team/stops/LAUvict4"], ["https://tec.openplanner.team/stops/N539aba", "https://tec.openplanner.team/stops/N539aga"], ["https://tec.openplanner.team/stops/N534apg", "https://tec.openplanner.team/stops/N543agb"], ["https://tec.openplanner.team/stops/Bsteegl1", "https://tec.openplanner.team/stops/Bstesar1"], ["https://tec.openplanner.team/stops/Bbchdev1", "https://tec.openplanner.team/stops/Bbchndb2"], ["https://tec.openplanner.team/stops/NL74ahc", "https://tec.openplanner.team/stops/NL74ahd"], ["https://tec.openplanner.team/stops/Bjodced1", "https://tec.openplanner.team/stops/Bjodced2"], ["https://tec.openplanner.team/stops/X775aca", "https://tec.openplanner.team/stops/X775aea"], ["https://tec.openplanner.team/stops/Lgrlimi2", "https://tec.openplanner.team/stops/Lgrlimi3"], ["https://tec.openplanner.team/stops/LFFpier1", "https://tec.openplanner.team/stops/LFFpier2"], ["https://tec.openplanner.team/stops/X720ada", "https://tec.openplanner.team/stops/X721arb"], ["https://tec.openplanner.team/stops/N521abb", "https://tec.openplanner.team/stops/N521ada"], ["https://tec.openplanner.team/stops/N244aub", "https://tec.openplanner.team/stops/N244ava"], ["https://tec.openplanner.team/stops/X715afb", "https://tec.openplanner.team/stops/X715aga"], ["https://tec.openplanner.team/stops/Cthalou2", "https://tec.openplanner.team/stops/Cthenmi1"], ["https://tec.openplanner.team/stops/Lccaigr1", "https://tec.openplanner.team/stops/Lccuner2"], ["https://tec.openplanner.team/stops/N542aga", "https://tec.openplanner.team/stops/N542aka"], ["https://tec.openplanner.team/stops/LrcarsT2", "https://tec.openplanner.team/stops/Lrchero1"], ["https://tec.openplanner.team/stops/H4ka392a", "https://tec.openplanner.team/stops/H4ob108b"], ["https://tec.openplanner.team/stops/Cbfcham3", "https://tec.openplanner.team/stops/Cbfcham4"], ["https://tec.openplanner.team/stops/H1so131e", "https://tec.openplanner.team/stops/H1so142b"], ["https://tec.openplanner.team/stops/LFR201-1", "https://tec.openplanner.team/stops/LFRbaro2"], ["https://tec.openplanner.team/stops/LMIeg--2", "https://tec.openplanner.team/stops/LSOdow%C3%A92"], ["https://tec.openplanner.team/stops/X754apa", "https://tec.openplanner.team/stops/X754avb"], ["https://tec.openplanner.team/stops/LStroch1", "https://tec.openplanner.team/stops/LWNwavr2"], ["https://tec.openplanner.team/stops/N988aca", "https://tec.openplanner.team/stops/X874apa"], ["https://tec.openplanner.team/stops/H1mk107b", "https://tec.openplanner.team/stops/H1mk123a"], ["https://tec.openplanner.team/stops/LSMeg--1", "https://tec.openplanner.team/stops/LSMpoin1"], ["https://tec.openplanner.team/stops/X818anb", "https://tec.openplanner.team/stops/X820ama"], ["https://tec.openplanner.team/stops/Bthscbl2", "https://tec.openplanner.team/stops/NL37aka"], ["https://tec.openplanner.team/stops/NL68abb", "https://tec.openplanner.team/stops/NL68afa"], ["https://tec.openplanner.team/stops/Lenauln1", "https://tec.openplanner.team/stops/Lvehauz3"], ["https://tec.openplanner.team/stops/Bzluqga1", "https://tec.openplanner.team/stops/Bzluvil2"], ["https://tec.openplanner.team/stops/X601afb", "https://tec.openplanner.team/stops/X662aqa"], ["https://tec.openplanner.team/stops/H5rx115a", "https://tec.openplanner.team/stops/H5rx149a"], ["https://tec.openplanner.team/stops/X601bfa", "https://tec.openplanner.team/stops/X601bgb"], ["https://tec.openplanner.team/stops/Cobhaut1", "https://tec.openplanner.team/stops/Cobnive1"], ["https://tec.openplanner.team/stops/Llggosw1", "https://tec.openplanner.team/stops/Llgmare6"], ["https://tec.openplanner.team/stops/X609adb", "https://tec.openplanner.team/stops/X609afa"], ["https://tec.openplanner.team/stops/N514acb", "https://tec.openplanner.team/stops/N516aob"], ["https://tec.openplanner.team/stops/Ccyga1", "https://tec.openplanner.team/stops/Ccyga4"], ["https://tec.openplanner.team/stops/X747aab", "https://tec.openplanner.team/stops/X747abb"], ["https://tec.openplanner.team/stops/Cfcgar1", "https://tec.openplanner.team/stops/Cfcgrat2"], ["https://tec.openplanner.team/stops/LFOchab1", "https://tec.openplanner.team/stops/LVlfooz3"], ["https://tec.openplanner.team/stops/LlNbruc2", "https://tec.openplanner.team/stops/LlNlimb2"], ["https://tec.openplanner.team/stops/Llgamer1", "https://tec.openplanner.team/stops/Llgdouf1"], ["https://tec.openplanner.team/stops/N387aha", "https://tec.openplanner.team/stops/N387ahb"], ["https://tec.openplanner.team/stops/LHGikea1", "https://tec.openplanner.team/stops/LHGikea2"], ["https://tec.openplanner.team/stops/X801aib", "https://tec.openplanner.team/stops/X801alb"], ["https://tec.openplanner.team/stops/N301adb", "https://tec.openplanner.team/stops/N301aib"], ["https://tec.openplanner.team/stops/H4og207a", "https://tec.openplanner.team/stops/H4vd230a"], ["https://tec.openplanner.team/stops/Cflglav2", "https://tec.openplanner.team/stops/Cflmarq2"], ["https://tec.openplanner.team/stops/Lgrfalc2", "https://tec.openplanner.team/stops/Lgrrein2"], ["https://tec.openplanner.team/stops/X790acb", "https://tec.openplanner.team/stops/X790anb"], ["https://tec.openplanner.team/stops/LBpberl1", "https://tec.openplanner.team/stops/LBpberl2"], ["https://tec.openplanner.team/stops/Cgxalli2", "https://tec.openplanner.team/stops/Cgxmaco2"], ["https://tec.openplanner.team/stops/N506abb", "https://tec.openplanner.team/stops/N512axa"], ["https://tec.openplanner.team/stops/H4gr108b", "https://tec.openplanner.team/stops/H4gr111b"], ["https://tec.openplanner.team/stops/N232bxa", "https://tec.openplanner.team/stops/N291aca"], ["https://tec.openplanner.team/stops/Clomari5", "https://tec.openplanner.team/stops/Clostan2"], ["https://tec.openplanner.team/stops/Lghjans1", "https://tec.openplanner.team/stops/Lghmeun4"], ["https://tec.openplanner.team/stops/X804boa", "https://tec.openplanner.team/stops/X804bpb"], ["https://tec.openplanner.team/stops/LTrchar1", "https://tec.openplanner.team/stops/LTrmort2"], ["https://tec.openplanner.team/stops/Cgzcver1", "https://tec.openplanner.team/stops/Cmyjaci2"], ["https://tec.openplanner.team/stops/X608aca", "https://tec.openplanner.team/stops/X608afb"], ["https://tec.openplanner.team/stops/N134afa", "https://tec.openplanner.team/stops/N134afb"], ["https://tec.openplanner.team/stops/H3so157a", "https://tec.openplanner.team/stops/H3so178b"], ["https://tec.openplanner.team/stops/LTamag1", "https://tec.openplanner.team/stops/LTaouch1"], ["https://tec.openplanner.team/stops/Cmechnd2", "https://tec.openplanner.team/stops/Cmesafi2"], ["https://tec.openplanner.team/stops/H2ep144a", "https://tec.openplanner.team/stops/H2re174b"], ["https://tec.openplanner.team/stops/LTipont1", "https://tec.openplanner.team/stops/LTipont2"], ["https://tec.openplanner.team/stops/H1pw122b", "https://tec.openplanner.team/stops/H1wg131a"], ["https://tec.openplanner.team/stops/X925aia", "https://tec.openplanner.team/stops/X996aab"], ["https://tec.openplanner.team/stops/LFAsauv1", "https://tec.openplanner.team/stops/LFAsauv2"], ["https://tec.openplanner.team/stops/Bgrmpsn1", "https://tec.openplanner.team/stops/Bgrmpsn2"], ["https://tec.openplanner.team/stops/LBichen1", "https://tec.openplanner.team/stops/LDOastr1"], ["https://tec.openplanner.team/stops/Llgandr1", "https://tec.openplanner.team/stops/Llgbruy1"], ["https://tec.openplanner.team/stops/LClange1", "https://tec.openplanner.team/stops/LFdbruy2"], ["https://tec.openplanner.team/stops/N147acb", "https://tec.openplanner.team/stops/N147ada"], ["https://tec.openplanner.team/stops/Llggram2", "https://tec.openplanner.team/stops/Llghoub2"], ["https://tec.openplanner.team/stops/Clupcfe2", "https://tec.openplanner.team/stops/Cvvcime1"], ["https://tec.openplanner.team/stops/LBPmili2", "https://tec.openplanner.team/stops/LGLbrus2"], ["https://tec.openplanner.team/stops/Clfbarr1", "https://tec.openplanner.team/stops/Clfpomm1"], ["https://tec.openplanner.team/stops/Bmarcat2", "https://tec.openplanner.team/stops/Bmargve2"], ["https://tec.openplanner.team/stops/LCPgare1", "https://tec.openplanner.team/stops/LCPscay2"], ["https://tec.openplanner.team/stops/LrUweve1", "https://tec.openplanner.team/stops/LrUweve2"], ["https://tec.openplanner.team/stops/Bbosdra1", "https://tec.openplanner.team/stops/Bbosdra2"], ["https://tec.openplanner.team/stops/X621adb", "https://tec.openplanner.team/stops/X621aeb"], ["https://tec.openplanner.team/stops/LRmkast*", "https://tec.openplanner.team/stops/LTEzinn2"], ["https://tec.openplanner.team/stops/X923ana", "https://tec.openplanner.team/stops/X923anb"], ["https://tec.openplanner.team/stops/LESchac1", "https://tec.openplanner.team/stops/LFNfo161"], ["https://tec.openplanner.team/stops/N521ara", "https://tec.openplanner.team/stops/N521arb"], ["https://tec.openplanner.team/stops/N135bea", "https://tec.openplanner.team/stops/N135beb"], ["https://tec.openplanner.team/stops/Cjudewe1", "https://tec.openplanner.team/stops/Cjudewe2"], ["https://tec.openplanner.team/stops/N532aab", "https://tec.openplanner.team/stops/N574aeb"], ["https://tec.openplanner.team/stops/X747alb", "https://tec.openplanner.team/stops/X754afb"], ["https://tec.openplanner.team/stops/H1mk109a", "https://tec.openplanner.team/stops/H1mk117a"], ["https://tec.openplanner.team/stops/LgAnr491", "https://tec.openplanner.team/stops/LsVlust2"], ["https://tec.openplanner.team/stops/Bnivhon1", "https://tec.openplanner.team/stops/Bnivpal1"], ["https://tec.openplanner.team/stops/Blthwav3", "https://tec.openplanner.team/stops/Blthwav4"], ["https://tec.openplanner.team/stops/H1ba117b", "https://tec.openplanner.team/stops/H1ba119c"], ["https://tec.openplanner.team/stops/Loucoti2", "https://tec.openplanner.team/stops/Louwuid1"], ["https://tec.openplanner.team/stops/Bgzdfpo1", "https://tec.openplanner.team/stops/Bgzdfpo2"], ["https://tec.openplanner.team/stops/H1al107a", "https://tec.openplanner.team/stops/H1bs110a"], ["https://tec.openplanner.team/stops/LHFec--1", "https://tec.openplanner.team/stops/LHFec--3"], ["https://tec.openplanner.team/stops/Brixga11", "https://tec.openplanner.team/stops/Brixpje1"], ["https://tec.openplanner.team/stops/Ccojaur1", "https://tec.openplanner.team/stops/Ccotrie3"], ["https://tec.openplanner.team/stops/X802ada", "https://tec.openplanner.team/stops/X802asb"], ["https://tec.openplanner.team/stops/Bhalkrk1", "https://tec.openplanner.team/stops/Bhalomo1"], ["https://tec.openplanner.team/stops/Cvrfema1", "https://tec.openplanner.team/stops/Cvrfema2"], ["https://tec.openplanner.team/stops/H4fr140b", "https://tec.openplanner.team/stops/H4fr143b"], ["https://tec.openplanner.team/stops/Bnivace2", "https://tec.openplanner.team/stops/Bnivfle2"], ["https://tec.openplanner.team/stops/Bovetsa2", "https://tec.openplanner.team/stops/Brsregl2"], ["https://tec.openplanner.team/stops/H1wg125b", "https://tec.openplanner.team/stops/H1wg125c"], ["https://tec.openplanner.team/stops/LEMec--1", "https://tec.openplanner.team/stops/LLAchpl1"], ["https://tec.openplanner.team/stops/X614aqa", "https://tec.openplanner.team/stops/X614aqb"], ["https://tec.openplanner.team/stops/NC44aea", "https://tec.openplanner.team/stops/NC44aga"], ["https://tec.openplanner.team/stops/H4al100b", "https://tec.openplanner.team/stops/H4ty353a"], ["https://tec.openplanner.team/stops/H2sv211a", "https://tec.openplanner.team/stops/H2sv220b"], ["https://tec.openplanner.team/stops/Llgomal1", "https://tec.openplanner.team/stops/Llgschm1"], ["https://tec.openplanner.team/stops/H2mg150b", "https://tec.openplanner.team/stops/H2se115a"], ["https://tec.openplanner.team/stops/X610aca", "https://tec.openplanner.team/stops/X610adb"], ["https://tec.openplanner.team/stops/Llgcmes1", "https://tec.openplanner.team/stops/Llgcmes2"], ["https://tec.openplanner.team/stops/N540aab", "https://tec.openplanner.team/stops/N540abb"], ["https://tec.openplanner.team/stops/LMtcent1", "https://tec.openplanner.team/stops/LMtegli1"], ["https://tec.openplanner.team/stops/X685afb", "https://tec.openplanner.team/stops/X685agb"], ["https://tec.openplanner.team/stops/LOrchau1", "https://tec.openplanner.team/stops/LORec--*"], ["https://tec.openplanner.team/stops/N103aaa", "https://tec.openplanner.team/stops/N103acc"], ["https://tec.openplanner.team/stops/H4ty265a", "https://tec.openplanner.team/stops/H4ty276a"], ["https://tec.openplanner.team/stops/H4fa125a", "https://tec.openplanner.team/stops/H4ms145a"], ["https://tec.openplanner.team/stops/Bplnbal2", "https://tec.openplanner.team/stops/Clpalli1"], ["https://tec.openplanner.team/stops/Bbcogpl1", "https://tec.openplanner.team/stops/Bbcolno2"], ["https://tec.openplanner.team/stops/Clb4dgi1", "https://tec.openplanner.team/stops/Clbchar2"], ["https://tec.openplanner.team/stops/LTRfica1", "https://tec.openplanner.team/stops/LTRgare1"], ["https://tec.openplanner.team/stops/H1sy140b", "https://tec.openplanner.team/stops/H1sy145b"], ["https://tec.openplanner.team/stops/N501mxb", "https://tec.openplanner.team/stops/N533anb"], ["https://tec.openplanner.team/stops/Cfacamp1", "https://tec.openplanner.team/stops/Cfacamp4"], ["https://tec.openplanner.team/stops/X809aab", "https://tec.openplanner.team/stops/X858afb"], ["https://tec.openplanner.team/stops/X602aaa", "https://tec.openplanner.team/stops/X602adb"], ["https://tec.openplanner.team/stops/LBdcime1", "https://tec.openplanner.team/stops/LBdcime2"], ["https://tec.openplanner.team/stops/Cjuecha2", "https://tec.openplanner.team/stops/Cragill2"], ["https://tec.openplanner.team/stops/Cctsncb3", "https://tec.openplanner.team/stops/Cctsncb4"], ["https://tec.openplanner.team/stops/H4jm116b", "https://tec.openplanner.team/stops/H4we138b"], ["https://tec.openplanner.team/stops/Cjuchli1", "https://tec.openplanner.team/stops/Cjuchli4"], ["https://tec.openplanner.team/stops/Canjon3", "https://tec.openplanner.team/stops/Canjonc2"], ["https://tec.openplanner.team/stops/LwYcafe1", "https://tec.openplanner.team/stops/LwYkirc1"], ["https://tec.openplanner.team/stops/H1ms271b", "https://tec.openplanner.team/stops/H1ms313b"], ["https://tec.openplanner.team/stops/X850aka", "https://tec.openplanner.team/stops/X872acb"], ["https://tec.openplanner.team/stops/Bottcro2", "https://tec.openplanner.team/stops/Bottgar8"], ["https://tec.openplanner.team/stops/N101ajb", "https://tec.openplanner.team/stops/N151aka"], ["https://tec.openplanner.team/stops/Lpeptra1", "https://tec.openplanner.team/stops/LWevand1"], ["https://tec.openplanner.team/stops/H4ne137a", "https://tec.openplanner.team/stops/H4ne145b"], ["https://tec.openplanner.team/stops/H4rm109a", "https://tec.openplanner.team/stops/H4rm111b"], ["https://tec.openplanner.team/stops/Cpcbrig1", "https://tec.openplanner.team/stops/Cpccpas1"], ["https://tec.openplanner.team/stops/Llgmart1", "https://tec.openplanner.team/stops/Llgmart2"], ["https://tec.openplanner.team/stops/H5st166b", "https://tec.openplanner.team/stops/H5st168a"], ["https://tec.openplanner.team/stops/H4ty340a", "https://tec.openplanner.team/stops/H4ty384a"], ["https://tec.openplanner.team/stops/Canrsta1", "https://tec.openplanner.team/stops/Canrsta2"], ["https://tec.openplanner.team/stops/LJEpaqu1", "https://tec.openplanner.team/stops/LJEpaqu2"], ["https://tec.openplanner.team/stops/H1ro137a", "https://tec.openplanner.team/stops/H1ro137b"], ["https://tec.openplanner.team/stops/H1qu101a", "https://tec.openplanner.team/stops/H1qu101b"], ["https://tec.openplanner.team/stops/Cgualno2", "https://tec.openplanner.team/stops/Cnapair2"], ["https://tec.openplanner.team/stops/LBhsign1", "https://tec.openplanner.team/stops/LBhsign2"], ["https://tec.openplanner.team/stops/LbTaral1", "https://tec.openplanner.team/stops/LbTgeme1"], ["https://tec.openplanner.team/stops/LWHkape2", "https://tec.openplanner.team/stops/LWHkerk1"], ["https://tec.openplanner.team/stops/LaMbrei1", "https://tec.openplanner.team/stops/LaMbrei2"], ["https://tec.openplanner.team/stops/Cgyblob1", "https://tec.openplanner.team/stops/Cgyplvi2"], ["https://tec.openplanner.team/stops/LBTwauc2", "https://tec.openplanner.team/stops/LThpoli2"], ["https://tec.openplanner.team/stops/X307ada", "https://tec.openplanner.team/stops/X316aca"], ["https://tec.openplanner.team/stops/N124aaa", "https://tec.openplanner.team/stops/N124aac"], ["https://tec.openplanner.team/stops/X901awa", "https://tec.openplanner.team/stops/X901aza"], ["https://tec.openplanner.team/stops/X371aca", "https://tec.openplanner.team/stops/X371adb"], ["https://tec.openplanner.team/stops/N115aaa", "https://tec.openplanner.team/stops/N115aab"], ["https://tec.openplanner.team/stops/Lhrmemo2", "https://tec.openplanner.team/stops/Lhrspi-2"], ["https://tec.openplanner.team/stops/LbAhenk2", "https://tec.openplanner.team/stops/LmNsied1"], ["https://tec.openplanner.team/stops/H1br130a", "https://tec.openplanner.team/stops/H1br131a"], ["https://tec.openplanner.team/stops/H1je212b", "https://tec.openplanner.team/stops/H1je360b"], ["https://tec.openplanner.team/stops/X595adb", "https://tec.openplanner.team/stops/X713anb"], ["https://tec.openplanner.team/stops/X986abb", "https://tec.openplanner.team/stops/X986acb"], ["https://tec.openplanner.team/stops/H1bo101a", "https://tec.openplanner.team/stops/H1bo111b"], ["https://tec.openplanner.team/stops/Beclesp1", "https://tec.openplanner.team/stops/Beclpla2"], ["https://tec.openplanner.team/stops/Lhrchar4", "https://tec.openplanner.team/stops/Llghori1"], ["https://tec.openplanner.team/stops/X804aka", "https://tec.openplanner.team/stops/X804bqa"], ["https://tec.openplanner.team/stops/LLgcent1", "https://tec.openplanner.team/stops/LRCviad1"], ["https://tec.openplanner.team/stops/N261afa", "https://tec.openplanner.team/stops/N261afb"], ["https://tec.openplanner.team/stops/NL76aba", "https://tec.openplanner.team/stops/NL76afa"], ["https://tec.openplanner.team/stops/Lgrcrac2", "https://tec.openplanner.team/stops/Lgrdeni1"], ["https://tec.openplanner.team/stops/H1ge115a", "https://tec.openplanner.team/stops/H1ge115b"], ["https://tec.openplanner.team/stops/Ladclem1", "https://tec.openplanner.team/stops/Ladpire3"], ["https://tec.openplanner.team/stops/Bfelcsa1", "https://tec.openplanner.team/stops/Bfelfde1"], ["https://tec.openplanner.team/stops/LmI129-1", "https://tec.openplanner.team/stops/LmRmuhl2"], ["https://tec.openplanner.team/stops/LHHindu2", "https://tec.openplanner.team/stops/LHHlomb2"], ["https://tec.openplanner.team/stops/Cjuplho2", "https://tec.openplanner.team/stops/Cjurevo1"], ["https://tec.openplanner.team/stops/H4ch120a", "https://tec.openplanner.team/stops/H4vx364c"], ["https://tec.openplanner.team/stops/LaAdiep2", "https://tec.openplanner.team/stops/LaAneul2"], ["https://tec.openplanner.team/stops/H4we134b", "https://tec.openplanner.team/stops/H4we135a"], ["https://tec.openplanner.team/stops/Clvmesa1", "https://tec.openplanner.team/stops/Clvmesa2"], ["https://tec.openplanner.team/stops/X801cga", "https://tec.openplanner.team/stops/X801cgb"], ["https://tec.openplanner.team/stops/H4wn128b", "https://tec.openplanner.team/stops/H4wn138b"], ["https://tec.openplanner.team/stops/H2bh103c", "https://tec.openplanner.team/stops/H2bh103d"], ["https://tec.openplanner.team/stops/LTRespe1", "https://tec.openplanner.team/stops/LTRespe2"], ["https://tec.openplanner.team/stops/N538aea", "https://tec.openplanner.team/stops/N538afb"], ["https://tec.openplanner.team/stops/Cmmcomb1", "https://tec.openplanner.team/stops/Cmymoha2"], ["https://tec.openplanner.team/stops/LEHpech1", "https://tec.openplanner.team/stops/LRAgrot2"], ["https://tec.openplanner.team/stops/H5wo129b", "https://tec.openplanner.team/stops/H5wo130a"], ["https://tec.openplanner.team/stops/H4be102b", "https://tec.openplanner.team/stops/H4be105a"], ["https://tec.openplanner.team/stops/X880aca", "https://tec.openplanner.team/stops/X880ada"], ["https://tec.openplanner.team/stops/Cctberg1", "https://tec.openplanner.team/stops/Cctmine1"], ["https://tec.openplanner.team/stops/X796afa", "https://tec.openplanner.team/stops/X796agb"], ["https://tec.openplanner.team/stops/X725axa", "https://tec.openplanner.team/stops/X725beb"], ["https://tec.openplanner.team/stops/Cjucouc1", "https://tec.openplanner.team/stops/Cjucouc2"], ["https://tec.openplanner.team/stops/LHDlibi2", "https://tec.openplanner.team/stops/LHDmc--2"], ["https://tec.openplanner.team/stops/X666aaa", "https://tec.openplanner.team/stops/X666abb"], ["https://tec.openplanner.team/stops/Lsmh3021", "https://tec.openplanner.team/stops/Lvepoud1"], ["https://tec.openplanner.team/stops/X561aab", "https://tec.openplanner.team/stops/X561aea"], ["https://tec.openplanner.team/stops/Lsedavy2", "https://tec.openplanner.team/stops/Lseivoz1"], ["https://tec.openplanner.team/stops/X615beb", "https://tec.openplanner.team/stops/X616abb"], ["https://tec.openplanner.team/stops/LPutins1", "https://tec.openplanner.team/stops/X792abb"], ["https://tec.openplanner.team/stops/LTibarb2", "https://tec.openplanner.team/stops/LTipont1"], ["https://tec.openplanner.team/stops/Bnivind1", "https://tec.openplanner.team/stops/Bnivrec2"], ["https://tec.openplanner.team/stops/LLOberl1", "https://tec.openplanner.team/stops/LRRtrix1"], ["https://tec.openplanner.team/stops/X661ada", "https://tec.openplanner.team/stops/X661ayc"], ["https://tec.openplanner.team/stops/H1cu108a", "https://tec.openplanner.team/stops/H1cu108b"], ["https://tec.openplanner.team/stops/X982aha", "https://tec.openplanner.team/stops/X982ahb"], ["https://tec.openplanner.team/stops/H1ha187a", "https://tec.openplanner.team/stops/H1ha187b"], ["https://tec.openplanner.team/stops/H1be100a", "https://tec.openplanner.team/stops/H1er108a"], ["https://tec.openplanner.team/stops/LhSwind2", "https://tec.openplanner.team/stops/LwAschu1"], ["https://tec.openplanner.team/stops/LAmeg--2", "https://tec.openplanner.team/stops/LAmwaut1"], ["https://tec.openplanner.team/stops/X763aba", "https://tec.openplanner.team/stops/X763aeb"], ["https://tec.openplanner.team/stops/LFTeg--2", "https://tec.openplanner.team/stops/LFTneur*"], ["https://tec.openplanner.team/stops/Bhmmcha1", "https://tec.openplanner.team/stops/Bhmmpos2"], ["https://tec.openplanner.team/stops/LAwfans2", "https://tec.openplanner.team/stops/LMvgare1"], ["https://tec.openplanner.team/stops/H5bl115b", "https://tec.openplanner.team/stops/H5bl115d"], ["https://tec.openplanner.team/stops/X993ada", "https://tec.openplanner.team/stops/X993adb"], ["https://tec.openplanner.team/stops/N507ahb", "https://tec.openplanner.team/stops/N507aia"], ["https://tec.openplanner.team/stops/Llgschm1", "https://tec.openplanner.team/stops/Llgschm2"], ["https://tec.openplanner.team/stops/LCxeg--2", "https://tec.openplanner.team/stops/LCxfawe2"], ["https://tec.openplanner.team/stops/LLrc1992", "https://tec.openplanner.team/stops/LLrcour2"], ["https://tec.openplanner.team/stops/LlNlimb2", "https://tec.openplanner.team/stops/LlNschu2"], ["https://tec.openplanner.team/stops/LwYcafe2", "https://tec.openplanner.team/stops/LwYsarl2"], ["https://tec.openplanner.team/stops/Loutrix2", "https://tec.openplanner.team/stops/Loutroi1"], ["https://tec.openplanner.team/stops/X757aia", "https://tec.openplanner.team/stops/X757anb"], ["https://tec.openplanner.team/stops/LAYsupe1", "https://tec.openplanner.team/stops/LAYsupe2"], ["https://tec.openplanner.team/stops/N509ana", "https://tec.openplanner.team/stops/N510aea"], ["https://tec.openplanner.team/stops/Bheneco2", "https://tec.openplanner.team/stops/Bhensei2"], ["https://tec.openplanner.team/stops/X725aja", "https://tec.openplanner.team/stops/X725ana"], ["https://tec.openplanner.team/stops/Bcrntru2", "https://tec.openplanner.team/stops/N529abc"], ["https://tec.openplanner.team/stops/N534bng", "https://tec.openplanner.team/stops/N534cbg"], ["https://tec.openplanner.team/stops/Bnivmat1", "https://tec.openplanner.team/stops/Bnivvco2"], ["https://tec.openplanner.team/stops/Blthbss2", "https://tec.openplanner.team/stops/Blthwav3"], ["https://tec.openplanner.team/stops/H1cu121a", "https://tec.openplanner.team/stops/H1cu128a"], ["https://tec.openplanner.team/stops/Bnodblt2", "https://tec.openplanner.team/stops/Boplsma4"], ["https://tec.openplanner.team/stops/Csurela2", "https://tec.openplanner.team/stops/Csurela4"], ["https://tec.openplanner.team/stops/H4ir165a", "https://tec.openplanner.team/stops/H4ir165b"], ["https://tec.openplanner.team/stops/Blhusor1", "https://tec.openplanner.team/stops/Bovevri1"], ["https://tec.openplanner.team/stops/Lemeg--2", "https://tec.openplanner.team/stops/Lemmc--2"], ["https://tec.openplanner.team/stops/X801cja", "https://tec.openplanner.team/stops/X801cjb"], ["https://tec.openplanner.team/stops/Lmocalv1", "https://tec.openplanner.team/stops/Lmocalv2"], ["https://tec.openplanner.team/stops/H4gr109a", "https://tec.openplanner.team/stops/H4gr112b"], ["https://tec.openplanner.team/stops/Cgygazo1", "https://tec.openplanner.team/stops/Cgygazo2"], ["https://tec.openplanner.team/stops/LaSkape1", "https://tec.openplanner.team/stops/LhGbahn4"], ["https://tec.openplanner.team/stops/N543ajb", "https://tec.openplanner.team/stops/N543cga"], ["https://tec.openplanner.team/stops/N225aha", "https://tec.openplanner.team/stops/N225ahb"], ["https://tec.openplanner.team/stops/X595aba", "https://tec.openplanner.team/stops/X595acb"], ["https://tec.openplanner.team/stops/LRChote1", "https://tec.openplanner.team/stops/LTPsatr1"], ["https://tec.openplanner.team/stops/N301aia", "https://tec.openplanner.team/stops/N301aib"], ["https://tec.openplanner.team/stops/X782ala", "https://tec.openplanner.team/stops/X782alb"], ["https://tec.openplanner.team/stops/N545aab", "https://tec.openplanner.team/stops/N552abb"], ["https://tec.openplanner.team/stops/LbUverb1", "https://tec.openplanner.team/stops/LbUverb2"], ["https://tec.openplanner.team/stops/X982ara", "https://tec.openplanner.team/stops/X982arb"], ["https://tec.openplanner.team/stops/N538aaa", "https://tec.openplanner.team/stops/N538aab"], ["https://tec.openplanner.team/stops/Bernpla1", "https://tec.openplanner.team/stops/Bwlhpmt4"], ["https://tec.openplanner.team/stops/Cmonsnc1", "https://tec.openplanner.team/stops/H1ms280d"], ["https://tec.openplanner.team/stops/Bnivtra1", "https://tec.openplanner.team/stops/Bnivtra2"], ["https://tec.openplanner.team/stops/X318aba", "https://tec.openplanner.team/stops/X318abb"], ["https://tec.openplanner.team/stops/Lmlbaro1", "https://tec.openplanner.team/stops/Lmleg--1"], ["https://tec.openplanner.team/stops/N162aaa", "https://tec.openplanner.team/stops/N162aab"], ["https://tec.openplanner.team/stops/N260aab", "https://tec.openplanner.team/stops/N260abb"], ["https://tec.openplanner.team/stops/X636ala", "https://tec.openplanner.team/stops/X636apa"], ["https://tec.openplanner.team/stops/LBKmoes1", "https://tec.openplanner.team/stops/LWAeloi2"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Lanpont1"], ["https://tec.openplanner.team/stops/N120adc", "https://tec.openplanner.team/stops/N120aeb"], ["https://tec.openplanner.team/stops/LsVmolk1", "https://tec.openplanner.team/stops/LwSgeme2"], ["https://tec.openplanner.team/stops/H1by106b", "https://tec.openplanner.team/stops/H1sy140b"], ["https://tec.openplanner.team/stops/N532akb", "https://tec.openplanner.team/stops/N568abb"], ["https://tec.openplanner.team/stops/Bkrapri1", "https://tec.openplanner.team/stops/Bkrawil1"], ["https://tec.openplanner.team/stops/LWHzave1", "https://tec.openplanner.team/stops/LWscona1"], ["https://tec.openplanner.team/stops/Bbcodam4", "https://tec.openplanner.team/stops/Bbcopre1"], ["https://tec.openplanner.team/stops/Bolgcsa2", "https://tec.openplanner.team/stops/Bolgsha2"], ["https://tec.openplanner.team/stops/H5at120a", "https://tec.openplanner.team/stops/H5at120b"], ["https://tec.openplanner.team/stops/H4pp123a", "https://tec.openplanner.team/stops/H4qu230c"], ["https://tec.openplanner.team/stops/N550aaa", "https://tec.openplanner.team/stops/N550aab"], ["https://tec.openplanner.team/stops/N501goa", "https://tec.openplanner.team/stops/N501ikb"], ["https://tec.openplanner.team/stops/X769afa", "https://tec.openplanner.team/stops/X769asa"], ["https://tec.openplanner.team/stops/X614avb", "https://tec.openplanner.team/stops/X615ala"], ["https://tec.openplanner.team/stops/H4bo112a", "https://tec.openplanner.team/stops/H4bo118c"], ["https://tec.openplanner.team/stops/Brxmcna2", "https://tec.openplanner.team/stops/Brxmhai4"], ["https://tec.openplanner.team/stops/N353afd", "https://tec.openplanner.team/stops/N383aab"], ["https://tec.openplanner.team/stops/Lemjacq1", "https://tec.openplanner.team/stops/Lemsart1"], ["https://tec.openplanner.team/stops/Bdvminc2", "https://tec.openplanner.team/stops/Bgisber2"], ["https://tec.openplanner.team/stops/X919acb", "https://tec.openplanner.team/stops/X919ada"], ["https://tec.openplanner.team/stops/N562aea", "https://tec.openplanner.team/stops/N562azb"], ["https://tec.openplanner.team/stops/Bnivpve2", "https://tec.openplanner.team/stops/Bnivsba1"], ["https://tec.openplanner.team/stops/X601bpa", "https://tec.openplanner.team/stops/X601bza"], ["https://tec.openplanner.team/stops/Cgobl%C3%A9r2", "https://tec.openplanner.team/stops/Cgonvro1"], ["https://tec.openplanner.team/stops/H1ma230a", "https://tec.openplanner.team/stops/H1ob339b"], ["https://tec.openplanner.team/stops/X762aab", "https://tec.openplanner.team/stops/X763aga"], ["https://tec.openplanner.team/stops/N115acb", "https://tec.openplanner.team/stops/N118aka"], ["https://tec.openplanner.team/stops/X773agb", "https://tec.openplanner.team/stops/X773aob"], ["https://tec.openplanner.team/stops/Brsrfen2", "https://tec.openplanner.team/stops/Brsrpar1"], ["https://tec.openplanner.team/stops/LBNgarn1", "https://tec.openplanner.team/stops/LBNgarn2"], ["https://tec.openplanner.team/stops/H4ta116b", "https://tec.openplanner.team/stops/H4ta117a"], ["https://tec.openplanner.team/stops/LMIcamp2", "https://tec.openplanner.team/stops/LMIeg--2"], ["https://tec.openplanner.team/stops/N529ahb", "https://tec.openplanner.team/stops/N529aja"], ["https://tec.openplanner.team/stops/Bgzddge2", "https://tec.openplanner.team/stops/Bgzdpis2"], ["https://tec.openplanner.team/stops/X982akb", "https://tec.openplanner.team/stops/X982bra"], ["https://tec.openplanner.team/stops/LaMahof1", "https://tec.openplanner.team/stops/LaMgeme*"], ["https://tec.openplanner.team/stops/Bpthfus2", "https://tec.openplanner.team/stops/Bwanthi1"], ["https://tec.openplanner.team/stops/Cgzclef1", "https://tec.openplanner.team/stops/Cgzplac4"], ["https://tec.openplanner.team/stops/LCHfond2", "https://tec.openplanner.team/stops/Lprthie2"], ["https://tec.openplanner.team/stops/LFsphar2", "https://tec.openplanner.team/stops/LSLstra2"], ["https://tec.openplanner.team/stops/X872afa", "https://tec.openplanner.team/stops/X872aga"], ["https://tec.openplanner.team/stops/N519abb", "https://tec.openplanner.team/stops/N519adb"], ["https://tec.openplanner.team/stops/NH03aea", "https://tec.openplanner.team/stops/NH03afb"], ["https://tec.openplanner.team/stops/X762aea", "https://tec.openplanner.team/stops/X764afb"], ["https://tec.openplanner.team/stops/LSsaxhe1", "https://tec.openplanner.team/stops/N506bfa"], ["https://tec.openplanner.team/stops/H4ht172b", "https://tec.openplanner.team/stops/H4ht173b"], ["https://tec.openplanner.team/stops/Bwatgge1", "https://tec.openplanner.team/stops/Bwatzod1"], ["https://tec.openplanner.team/stops/H4ma203a", "https://tec.openplanner.team/stops/H4ma411a"], ["https://tec.openplanner.team/stops/LVLgotr4", "https://tec.openplanner.team/stops/LVLgrum2"], ["https://tec.openplanner.team/stops/LVBmonu3", "https://tec.openplanner.team/stops/LVBrmon1"], ["https://tec.openplanner.team/stops/H4bo120b", "https://tec.openplanner.team/stops/H4bo181a"], ["https://tec.openplanner.team/stops/Cvscomb1", "https://tec.openplanner.team/stops/N530aba"], ["https://tec.openplanner.team/stops/Llgbois2", "https://tec.openplanner.team/stops/Llgseel2"], ["https://tec.openplanner.team/stops/N557aea", "https://tec.openplanner.team/stops/N560aba"], ["https://tec.openplanner.team/stops/X948afa", "https://tec.openplanner.team/stops/X948aub"], ["https://tec.openplanner.team/stops/H1cu108b", "https://tec.openplanner.team/stops/H1ms247b"], ["https://tec.openplanner.team/stops/Bperros1", "https://tec.openplanner.team/stops/Bperros2"], ["https://tec.openplanner.team/stops/X897ara", "https://tec.openplanner.team/stops/X897arb"], ["https://tec.openplanner.team/stops/X636acb", "https://tec.openplanner.team/stops/X636bia"], ["https://tec.openplanner.team/stops/Lghwall1", "https://tec.openplanner.team/stops/Lghwall2"], ["https://tec.openplanner.team/stops/Caibras1", "https://tec.openplanner.team/stops/N543chb"], ["https://tec.openplanner.team/stops/X725aaa", "https://tec.openplanner.team/stops/X754axa"], ["https://tec.openplanner.team/stops/X718afb", "https://tec.openplanner.team/stops/X718aga"], ["https://tec.openplanner.team/stops/Brebchb2", "https://tec.openplanner.team/stops/Brebpca1"], ["https://tec.openplanner.team/stops/H1ma233c", "https://tec.openplanner.team/stops/H1ma237b"], ["https://tec.openplanner.team/stops/Lemjoba2", "https://tec.openplanner.team/stops/Lemmath2"], ["https://tec.openplanner.team/stops/X602aba", "https://tec.openplanner.team/stops/X624alb"], ["https://tec.openplanner.team/stops/Bstmpla1", "https://tec.openplanner.team/stops/N561afa"], ["https://tec.openplanner.team/stops/N118alb", "https://tec.openplanner.team/stops/N118aoa"], ["https://tec.openplanner.team/stops/H1ne140a", "https://tec.openplanner.team/stops/H1ne142a"], ["https://tec.openplanner.team/stops/LLegare1", "https://tec.openplanner.team/stops/LLegare2"], ["https://tec.openplanner.team/stops/X789aab", "https://tec.openplanner.team/stops/X789abb"], ["https://tec.openplanner.team/stops/H1qu109a", "https://tec.openplanner.team/stops/H1qu112b"], ["https://tec.openplanner.team/stops/LWaanto2", "https://tec.openplanner.team/stops/LWarema2"], ["https://tec.openplanner.team/stops/N538apb", "https://tec.openplanner.team/stops/N538asa"], ["https://tec.openplanner.team/stops/N120aha", "https://tec.openplanner.team/stops/N120ahb"], ["https://tec.openplanner.team/stops/H5bl116a", "https://tec.openplanner.team/stops/H5bl143b"], ["https://tec.openplanner.team/stops/N501hua", "https://tec.openplanner.team/stops/N501hzc"], ["https://tec.openplanner.team/stops/N242aeb", "https://tec.openplanner.team/stops/N242afa"], ["https://tec.openplanner.team/stops/H4te257a", "https://tec.openplanner.team/stops/H4te257b"], ["https://tec.openplanner.team/stops/Lvo60--1", "https://tec.openplanner.team/stops/Lvomoul2"], ["https://tec.openplanner.team/stops/H4do105a", "https://tec.openplanner.team/stops/H4do202a"], ["https://tec.openplanner.team/stops/N351ama", "https://tec.openplanner.team/stops/N351ava"], ["https://tec.openplanner.team/stops/N170aab", "https://tec.openplanner.team/stops/N170aba"], ["https://tec.openplanner.team/stops/Clrmarl2", "https://tec.openplanner.team/stops/CMpara2"], ["https://tec.openplanner.team/stops/LAugara1", "https://tec.openplanner.team/stops/LBOande1"], ["https://tec.openplanner.team/stops/H4ba103a", "https://tec.openplanner.team/stops/H4ml206a"], ["https://tec.openplanner.team/stops/H5rx143b", "https://tec.openplanner.team/stops/H5rx149a"], ["https://tec.openplanner.team/stops/X822aaa", "https://tec.openplanner.team/stops/X822aea"], ["https://tec.openplanner.team/stops/Barqpla2", "https://tec.openplanner.team/stops/Barqpwa1"], ["https://tec.openplanner.team/stops/LAbbass1", "https://tec.openplanner.team/stops/LSevitu2"], ["https://tec.openplanner.team/stops/X667aca", "https://tec.openplanner.team/stops/X667aeb"], ["https://tec.openplanner.team/stops/Bjodcoi2", "https://tec.openplanner.team/stops/NR21aca"], ["https://tec.openplanner.team/stops/Crebien1", "https://tec.openplanner.team/stops/Crestan1"], ["https://tec.openplanner.team/stops/LTAchau1", "https://tec.openplanner.team/stops/LTAchau2"], ["https://tec.openplanner.team/stops/N118aha", "https://tec.openplanner.team/stops/N118ata"], ["https://tec.openplanner.team/stops/Cfmcent1", "https://tec.openplanner.team/stops/Cfmgrmo1"], ["https://tec.openplanner.team/stops/X390aib", "https://tec.openplanner.team/stops/X992abb"], ["https://tec.openplanner.team/stops/LBLcalv1", "https://tec.openplanner.team/stops/LCEplac2"], ["https://tec.openplanner.team/stops/Bolgsha1", "https://tec.openplanner.team/stops/Bolgsha2"], ["https://tec.openplanner.team/stops/H1ha193b", "https://tec.openplanner.team/stops/H1ob341a"], ["https://tec.openplanner.team/stops/H1hm175b", "https://tec.openplanner.team/stops/H1ss351a"], ["https://tec.openplanner.team/stops/Cfbcal1", "https://tec.openplanner.team/stops/Cfcecol1"], ["https://tec.openplanner.team/stops/Lanpisc2", "https://tec.openplanner.team/stops/Lglmoul2"], ["https://tec.openplanner.team/stops/Llghaut1", "https://tec.openplanner.team/stops/Llgseel1"], ["https://tec.openplanner.team/stops/Bottegl3", "https://tec.openplanner.team/stops/Bottegl4"], ["https://tec.openplanner.team/stops/N106acb", "https://tec.openplanner.team/stops/N106adb"], ["https://tec.openplanner.team/stops/H1te180a", "https://tec.openplanner.team/stops/H1te191a"], ["https://tec.openplanner.team/stops/Ljuauto2", "https://tec.openplanner.team/stops/Lsweg--2"], ["https://tec.openplanner.team/stops/H1so131a", "https://tec.openplanner.team/stops/H1so131f"], ["https://tec.openplanner.team/stops/N535aib", "https://tec.openplanner.team/stops/N564acb"], ["https://tec.openplanner.team/stops/Barqbar2", "https://tec.openplanner.team/stops/Bptrgri2"], ["https://tec.openplanner.team/stops/H1bo104a", "https://tec.openplanner.team/stops/H1bo150a"], ["https://tec.openplanner.team/stops/H1al106a", "https://tec.openplanner.team/stops/H1qp142b"], ["https://tec.openplanner.team/stops/X721aoa", "https://tec.openplanner.team/stops/X721aob"], ["https://tec.openplanner.team/stops/Cgxvkho2", "https://tec.openplanner.team/stops/Cgxvkho3"], ["https://tec.openplanner.team/stops/Blthwav2", "https://tec.openplanner.team/stops/Bmlnegl1"], ["https://tec.openplanner.team/stops/Cmacart4", "https://tec.openplanner.team/stops/CMcart2"], ["https://tec.openplanner.team/stops/X923aeb", "https://tec.openplanner.team/stops/X923afa"], ["https://tec.openplanner.team/stops/N204aga", "https://tec.openplanner.team/stops/N204agb"], ["https://tec.openplanner.team/stops/X925aka", "https://tec.openplanner.team/stops/X947adb"], ["https://tec.openplanner.team/stops/N301aka", "https://tec.openplanner.team/stops/N331aea"], ["https://tec.openplanner.team/stops/Bgnvpap1", "https://tec.openplanner.team/stops/Brixpje2"], ["https://tec.openplanner.team/stops/Cnagrro2", "https://tec.openplanner.team/stops/Cnanoir1"], ["https://tec.openplanner.team/stops/H4ty287a", "https://tec.openplanner.team/stops/H4ty346a"], ["https://tec.openplanner.team/stops/N501cnb", "https://tec.openplanner.team/stops/N501cua"], ["https://tec.openplanner.team/stops/LWAor--1", "https://tec.openplanner.team/stops/LWAvand1"], ["https://tec.openplanner.team/stops/Lanfran2", "https://tec.openplanner.team/stops/Lanfran3"], ["https://tec.openplanner.team/stops/X636aqc", "https://tec.openplanner.team/stops/X636ara"], ["https://tec.openplanner.team/stops/LHMa2321", "https://tec.openplanner.team/stops/LHMaube1"], ["https://tec.openplanner.team/stops/X660aab", "https://tec.openplanner.team/stops/X661akb"], ["https://tec.openplanner.team/stops/X649aba", "https://tec.openplanner.team/stops/X649abb"], ["https://tec.openplanner.team/stops/Ctmazeb1", "https://tec.openplanner.team/stops/Ctmsncb1"], ["https://tec.openplanner.team/stops/X657ada", "https://tec.openplanner.team/stops/X742adb"], ["https://tec.openplanner.team/stops/H1hn207b", "https://tec.openplanner.team/stops/H1hn363a"], ["https://tec.openplanner.team/stops/N204aib", "https://tec.openplanner.team/stops/N204akb"], ["https://tec.openplanner.team/stops/X907aib", "https://tec.openplanner.team/stops/X950aaa"], ["https://tec.openplanner.team/stops/LCxwarr1", "https://tec.openplanner.team/stops/LHEpriv1"], ["https://tec.openplanner.team/stops/H4fr394a", "https://tec.openplanner.team/stops/H4ty340a"], ["https://tec.openplanner.team/stops/X999aeb", "https://tec.openplanner.team/stops/X999afa"], ["https://tec.openplanner.team/stops/N308aic", "https://tec.openplanner.team/stops/N308alb"], ["https://tec.openplanner.team/stops/H4ty358a", "https://tec.openplanner.team/stops/H4ty381b"], ["https://tec.openplanner.team/stops/LSPtonn1", "https://tec.openplanner.team/stops/LSPtonn2"], ["https://tec.openplanner.team/stops/X801ata", "https://tec.openplanner.team/stops/X801atb"], ["https://tec.openplanner.team/stops/NH01alb", "https://tec.openplanner.team/stops/NH01ama"], ["https://tec.openplanner.team/stops/N346ada", "https://tec.openplanner.team/stops/X892abb"], ["https://tec.openplanner.team/stops/Crg3arb2", "https://tec.openplanner.team/stops/Crgmgri2"], ["https://tec.openplanner.team/stops/Cgogb1", "https://tec.openplanner.team/stops/CMleop2"], ["https://tec.openplanner.team/stops/X808afa", "https://tec.openplanner.team/stops/X808amb"], ["https://tec.openplanner.team/stops/H1gr110b", "https://tec.openplanner.team/stops/H1gr116a"], ["https://tec.openplanner.team/stops/X616abb", "https://tec.openplanner.team/stops/X616aia"], ["https://tec.openplanner.team/stops/H4wr173b", "https://tec.openplanner.team/stops/H4wr173c"], ["https://tec.openplanner.team/stops/N131aha", "https://tec.openplanner.team/stops/N131ahb"], ["https://tec.openplanner.team/stops/NL76aea", "https://tec.openplanner.team/stops/NL76aeb"], ["https://tec.openplanner.team/stops/H4bh103a", "https://tec.openplanner.team/stops/H4ma162a"], ["https://tec.openplanner.team/stops/H1fr130a", "https://tec.openplanner.team/stops/H1fr130b"], ["https://tec.openplanner.team/stops/X804bja", "https://tec.openplanner.team/stops/X804byb"], ["https://tec.openplanner.team/stops/Clrhava1", "https://tec.openplanner.team/stops/Clrhava2"], ["https://tec.openplanner.team/stops/Cbwcab2", "https://tec.openplanner.team/stops/Cbwdoua1"], ["https://tec.openplanner.team/stops/H4co109a", "https://tec.openplanner.team/stops/H4co144b"], ["https://tec.openplanner.team/stops/N423aba", "https://tec.openplanner.team/stops/N423abb"], ["https://tec.openplanner.team/stops/X766abb", "https://tec.openplanner.team/stops/X768amb"], ["https://tec.openplanner.team/stops/X619aja", "https://tec.openplanner.team/stops/X619ajb"], ["https://tec.openplanner.team/stops/Bllnchv1", "https://tec.openplanner.team/stops/Bllngar1"], ["https://tec.openplanner.team/stops/LORgend1", "https://tec.openplanner.team/stops/LORvill3"], ["https://tec.openplanner.team/stops/H1ro135a", "https://tec.openplanner.team/stops/H1ro140b"], ["https://tec.openplanner.team/stops/N558ana", "https://tec.openplanner.team/stops/NL76aeb"], ["https://tec.openplanner.team/stops/N315aab", "https://tec.openplanner.team/stops/N365aab"], ["https://tec.openplanner.team/stops/N383aaa", "https://tec.openplanner.team/stops/N988abb"], ["https://tec.openplanner.team/stops/X992aha", "https://tec.openplanner.team/stops/X993aga"], ["https://tec.openplanner.team/stops/X811aaa", "https://tec.openplanner.team/stops/X811adb"], ["https://tec.openplanner.team/stops/LWbcarr2", "https://tec.openplanner.team/stops/LWbregn2"], ["https://tec.openplanner.team/stops/LSMlier1", "https://tec.openplanner.team/stops/LSMpoin2"], ["https://tec.openplanner.team/stops/Cctbinc1", "https://tec.openplanner.team/stops/NC11afb"], ["https://tec.openplanner.team/stops/Llgnaim1", "https://tec.openplanner.team/stops/Llgnani2"], ["https://tec.openplanner.team/stops/N528aia", "https://tec.openplanner.team/stops/N528aib"], ["https://tec.openplanner.team/stops/Crccano1", "https://tec.openplanner.team/stops/Crcrwas1"], ["https://tec.openplanner.team/stops/H4an106a", "https://tec.openplanner.team/stops/H4an106b"], ["https://tec.openplanner.team/stops/Bgdhbvu1", "https://tec.openplanner.team/stops/Bgdhbvu2"], ["https://tec.openplanner.team/stops/NL57aeb", "https://tec.openplanner.team/stops/NL57aka"], ["https://tec.openplanner.team/stops/X765aga", "https://tec.openplanner.team/stops/X765agb"], ["https://tec.openplanner.team/stops/N576aba", "https://tec.openplanner.team/stops/N576abb"], ["https://tec.openplanner.team/stops/N543alb", "https://tec.openplanner.team/stops/N543cga"], ["https://tec.openplanner.team/stops/H1fr107c", "https://tec.openplanner.team/stops/H1fr128b"], ["https://tec.openplanner.team/stops/Cfmchau2", "https://tec.openplanner.team/stops/Cfmpui81"], ["https://tec.openplanner.team/stops/Lmlcrot*", "https://tec.openplanner.team/stops/Lmlcrot3"], ["https://tec.openplanner.team/stops/H5rx104b", "https://tec.openplanner.team/stops/H5rx121b"], ["https://tec.openplanner.team/stops/X911aha", "https://tec.openplanner.team/stops/X911ahb"], ["https://tec.openplanner.team/stops/N135avb", "https://tec.openplanner.team/stops/N135bfa"], ["https://tec.openplanner.team/stops/Lrccomm1", "https://tec.openplanner.team/stops/Lrccomm2"], ["https://tec.openplanner.team/stops/X623aeb", "https://tec.openplanner.team/stops/X624amb"], ["https://tec.openplanner.team/stops/H4ta121b", "https://tec.openplanner.team/stops/H4ta129a"], ["https://tec.openplanner.team/stops/LLRsalm1", "https://tec.openplanner.team/stops/LLRsalm2"], ["https://tec.openplanner.team/stops/X801afb", "https://tec.openplanner.team/stops/X801aga"], ["https://tec.openplanner.team/stops/Blhulor2", "https://tec.openplanner.team/stops/Blhuone2"], ["https://tec.openplanner.team/stops/X601aja", "https://tec.openplanner.team/stops/X662atb"], ["https://tec.openplanner.team/stops/Blemwob2", "https://tec.openplanner.team/stops/Blemwob4"], ["https://tec.openplanner.team/stops/X609aoa", "https://tec.openplanner.team/stops/X631aaa"], ["https://tec.openplanner.team/stops/H1he109a", "https://tec.openplanner.team/stops/H1qv116b"], ["https://tec.openplanner.team/stops/H1ca100a", "https://tec.openplanner.team/stops/H1ca108b"], ["https://tec.openplanner.team/stops/Bbiefon1", "https://tec.openplanner.team/stops/Bndbdra1"], ["https://tec.openplanner.team/stops/N106ajb", "https://tec.openplanner.team/stops/N106aka"], ["https://tec.openplanner.team/stops/LGecime1", "https://tec.openplanner.team/stops/LVkinst1"], ["https://tec.openplanner.team/stops/N539aka", "https://tec.openplanner.team/stops/N539ama"], ["https://tec.openplanner.team/stops/H4lh161a", "https://tec.openplanner.team/stops/H5el104b"], ["https://tec.openplanner.team/stops/LJAboli1", "https://tec.openplanner.team/stops/LJAwerf1"], ["https://tec.openplanner.team/stops/LVthest4", "https://tec.openplanner.team/stops/LVtvalu2"], ["https://tec.openplanner.team/stops/Lbhhomv2", "https://tec.openplanner.team/stops/Ljumart2"], ["https://tec.openplanner.team/stops/LWZdtec2", "https://tec.openplanner.team/stops/LWZeg--1"], ["https://tec.openplanner.team/stops/X629acb", "https://tec.openplanner.team/stops/X647aab"], ["https://tec.openplanner.team/stops/Llgatla1", "https://tec.openplanner.team/stops/Llgatla2"], ["https://tec.openplanner.team/stops/LOurena1", "https://tec.openplanner.team/stops/LOurena2"], ["https://tec.openplanner.team/stops/LHEepur1", "https://tec.openplanner.team/stops/LHEepur2"], ["https://tec.openplanner.team/stops/X818agb", "https://tec.openplanner.team/stops/X818avb"], ["https://tec.openplanner.team/stops/Ccocoup1", "https://tec.openplanner.team/stops/Ccostan1"], ["https://tec.openplanner.team/stops/Cbiseur1", "https://tec.openplanner.team/stops/Cgzblob2"], ["https://tec.openplanner.team/stops/LHAarge1", "https://tec.openplanner.team/stops/LHTlieg2"], ["https://tec.openplanner.team/stops/X608avb", "https://tec.openplanner.team/stops/X608aza"], ["https://tec.openplanner.team/stops/Lkinyst2", "https://tec.openplanner.team/stops/Lkivolg1"], ["https://tec.openplanner.team/stops/H4hg156a", "https://tec.openplanner.team/stops/H4hg159a"], ["https://tec.openplanner.team/stops/X222aza", "https://tec.openplanner.team/stops/X222azb"], ["https://tec.openplanner.team/stops/Cnapetr1", "https://tec.openplanner.team/stops/Cnapetr2"], ["https://tec.openplanner.team/stops/N534bog", "https://tec.openplanner.team/stops/N534byb"], ["https://tec.openplanner.team/stops/N343aka", "https://tec.openplanner.team/stops/N343akb"], ["https://tec.openplanner.team/stops/Lagviad2", "https://tec.openplanner.team/stops/Lemdupo1"], ["https://tec.openplanner.team/stops/LrApark2", "https://tec.openplanner.team/stops/LrAverb1"], ["https://tec.openplanner.team/stops/X626aeb", "https://tec.openplanner.team/stops/X626afa"], ["https://tec.openplanner.team/stops/Cnapair1", "https://tec.openplanner.team/stops/Cnapair2"], ["https://tec.openplanner.team/stops/Bbiecim2", "https://tec.openplanner.team/stops/Bbiepre2"], ["https://tec.openplanner.team/stops/H4fa124a", "https://tec.openplanner.team/stops/H4ms145b"], ["https://tec.openplanner.team/stops/NL76aha", "https://tec.openplanner.team/stops/NL76amb"], ["https://tec.openplanner.team/stops/LFEhoup1", "https://tec.openplanner.team/stops/X597aob"], ["https://tec.openplanner.team/stops/Bsomwav2", "https://tec.openplanner.team/stops/N584asa"], ["https://tec.openplanner.team/stops/X619aab", "https://tec.openplanner.team/stops/X620afb"], ["https://tec.openplanner.team/stops/LACwass2", "https://tec.openplanner.team/stops/NL30ajb"], ["https://tec.openplanner.team/stops/H4lz125b", "https://tec.openplanner.team/stops/H4lz128b"], ["https://tec.openplanner.team/stops/X767aaa", "https://tec.openplanner.team/stops/X767aac"], ["https://tec.openplanner.team/stops/N201aia", "https://tec.openplanner.team/stops/N201ava"], ["https://tec.openplanner.team/stops/X307adb", "https://tec.openplanner.team/stops/X317aba"], ["https://tec.openplanner.team/stops/Bllnlen2", "https://tec.openplanner.team/stops/Bllnrod4"], ["https://tec.openplanner.team/stops/LMYroin2", "https://tec.openplanner.team/stops/X597alb"], ["https://tec.openplanner.team/stops/LOehart2", "https://tec.openplanner.team/stops/LWAhart1"], ["https://tec.openplanner.team/stops/Llgnico*", "https://tec.openplanner.team/stops/Llgnico1"], ["https://tec.openplanner.team/stops/Lougare1", "https://tec.openplanner.team/stops/Lougare3"], ["https://tec.openplanner.team/stops/X649acb", "https://tec.openplanner.team/stops/X649adc"], ["https://tec.openplanner.team/stops/H3th126a", "https://tec.openplanner.team/stops/H3th129a"], ["https://tec.openplanner.team/stops/X954afb", "https://tec.openplanner.team/stops/X954agb"], ["https://tec.openplanner.team/stops/Llgatla2", "https://tec.openplanner.team/stops/Llgfoy-1"], ["https://tec.openplanner.team/stops/N215aab", "https://tec.openplanner.team/stops/N228acb"], ["https://tec.openplanner.team/stops/N564aeb", "https://tec.openplanner.team/stops/N585ahb"], ["https://tec.openplanner.team/stops/LSGcarr2", "https://tec.openplanner.team/stops/LYechpl1"], ["https://tec.openplanner.team/stops/Cctpano1", "https://tec.openplanner.team/stops/Cctpche2"], ["https://tec.openplanner.team/stops/N236abb", "https://tec.openplanner.team/stops/N236acb"], ["https://tec.openplanner.team/stops/X763agb", "https://tec.openplanner.team/stops/X763aia"], ["https://tec.openplanner.team/stops/LeUath%C3%A41", "https://tec.openplanner.team/stops/LeUgend2"], ["https://tec.openplanner.team/stops/N120ahb", "https://tec.openplanner.team/stops/N248aeb"], ["https://tec.openplanner.team/stops/Crg3arb1", "https://tec.openplanner.team/stops/Cthhvil6"], ["https://tec.openplanner.team/stops/N235afa", "https://tec.openplanner.team/stops/N235agb"], ["https://tec.openplanner.team/stops/Cgolimi1", "https://tec.openplanner.team/stops/Cgolimi2"], ["https://tec.openplanner.team/stops/H1sd343a", "https://tec.openplanner.team/stops/H3go100b"], ["https://tec.openplanner.team/stops/LPRcha-*", "https://tec.openplanner.team/stops/LPReg--1"], ["https://tec.openplanner.team/stops/H1og130a", "https://tec.openplanner.team/stops/H1og134b"], ["https://tec.openplanner.team/stops/LrAkape2", "https://tec.openplanner.team/stops/LrAplat2"], ["https://tec.openplanner.team/stops/Lghcham1", "https://tec.openplanner.team/stops/Lghfore2"], ["https://tec.openplanner.team/stops/Lre3che1", "https://tec.openplanner.team/stops/Lrevaul2"], ["https://tec.openplanner.team/stops/H1pa106c", "https://tec.openplanner.team/stops/H1pa111b"], ["https://tec.openplanner.team/stops/X713ajc", "https://tec.openplanner.team/stops/X713ana"], ["https://tec.openplanner.team/stops/Bbsigaz2", "https://tec.openplanner.team/stops/Blilgar1"], ["https://tec.openplanner.team/stops/N506aqb", "https://tec.openplanner.team/stops/N506asb"], ["https://tec.openplanner.team/stops/Lstpoly1", "https://tec.openplanner.team/stops/Lstscie1"], ["https://tec.openplanner.team/stops/H4ty264b", "https://tec.openplanner.team/stops/H4ty320b"], ["https://tec.openplanner.team/stops/LRmmabr1", "https://tec.openplanner.team/stops/LRmstat1"], ["https://tec.openplanner.team/stops/LMsalen1", "https://tec.openplanner.team/stops/LMsalen2"], ["https://tec.openplanner.team/stops/X955aea", "https://tec.openplanner.team/stops/X955ahb"], ["https://tec.openplanner.team/stops/Ljubord1", "https://tec.openplanner.team/stops/Ljubrec2"], ["https://tec.openplanner.team/stops/X735aba", "https://tec.openplanner.team/stops/X735abc"], ["https://tec.openplanner.team/stops/Bchgbel1", "https://tec.openplanner.team/stops/Bchgbel2"], ["https://tec.openplanner.team/stops/Bgrhcen1", "https://tec.openplanner.team/stops/Bgrhcen2"], ["https://tec.openplanner.team/stops/Llgvero2", "https://tec.openplanner.team/stops/Llgvero3"], ["https://tec.openplanner.team/stops/Cbwmato2", "https://tec.openplanner.team/stops/Cmqcend2"], ["https://tec.openplanner.team/stops/LCx728-1", "https://tec.openplanner.team/stops/LCxhame1"], ["https://tec.openplanner.team/stops/X713adb", "https://tec.openplanner.team/stops/X713ajc"], ["https://tec.openplanner.team/stops/Lalchar2", "https://tec.openplanner.team/stops/Laltrav1"], ["https://tec.openplanner.team/stops/LBEnina4", "https://tec.openplanner.team/stops/LBEnina6"], ["https://tec.openplanner.team/stops/H4ty285b", "https://tec.openplanner.team/stops/H4ty346b"], ["https://tec.openplanner.team/stops/H1ge179a", "https://tec.openplanner.team/stops/H1no141a"], ["https://tec.openplanner.team/stops/Cobobjo2", "https://tec.openplanner.team/stops/Cpcplac4"], ["https://tec.openplanner.team/stops/LESmont1", "https://tec.openplanner.team/stops/LESmont2"], ["https://tec.openplanner.team/stops/LRMeg--1", "https://tec.openplanner.team/stops/LSfcoll*"], ["https://tec.openplanner.team/stops/Cgobl%C3%A9r1", "https://tec.openplanner.team/stops/Cgoboll3"], ["https://tec.openplanner.team/stops/N503aca", "https://tec.openplanner.team/stops/N503agb"], ["https://tec.openplanner.team/stops/X890adb", "https://tec.openplanner.team/stops/X891acb"], ["https://tec.openplanner.team/stops/H2pe154a", "https://tec.openplanner.team/stops/H3bi118b"], ["https://tec.openplanner.team/stops/LTEnuro1", "https://tec.openplanner.team/stops/LTEzinn2"], ["https://tec.openplanner.team/stops/N544aab", "https://tec.openplanner.team/stops/N544aeb"], ["https://tec.openplanner.team/stops/LPRvill1", "https://tec.openplanner.team/stops/LTRcite1"], ["https://tec.openplanner.team/stops/X363aab", "https://tec.openplanner.team/stops/X363ada"], ["https://tec.openplanner.team/stops/X672adb", "https://tec.openplanner.team/stops/X672apa"], ["https://tec.openplanner.team/stops/LLrc1652", "https://tec.openplanner.team/stops/LLrc1992"], ["https://tec.openplanner.team/stops/Cmafafe2", "https://tec.openplanner.team/stops/Cmmbsit2"], ["https://tec.openplanner.team/stops/H1hw124b", "https://tec.openplanner.team/stops/H1mc126b"], ["https://tec.openplanner.team/stops/LLTcoop2", "https://tec.openplanner.team/stops/LLThosd1"], ["https://tec.openplanner.team/stops/H4ty307b", "https://tec.openplanner.team/stops/H4ty338a"], ["https://tec.openplanner.team/stops/Lhujonc1", "https://tec.openplanner.team/stops/Lhutran1"], ["https://tec.openplanner.team/stops/N522acb", "https://tec.openplanner.team/stops/N522afb"], ["https://tec.openplanner.team/stops/Brebvic1", "https://tec.openplanner.team/stops/Brebvic2"], ["https://tec.openplanner.team/stops/Ljuchap2", "https://tec.openplanner.team/stops/Llgatel1"], ["https://tec.openplanner.team/stops/LREelse2", "https://tec.openplanner.team/stops/LREgrot3"], ["https://tec.openplanner.team/stops/X721akb", "https://tec.openplanner.team/stops/X721amb"], ["https://tec.openplanner.team/stops/LmRh%C3%B6811", "https://tec.openplanner.team/stops/LmRh%C3%B6812"], ["https://tec.openplanner.team/stops/H1ms364a", "https://tec.openplanner.team/stops/H1ms908a"], ["https://tec.openplanner.team/stops/Ccugend2", "https://tec.openplanner.team/stops/NC02aob"], ["https://tec.openplanner.team/stops/N501fhb", "https://tec.openplanner.team/stops/N501ltb"], ["https://tec.openplanner.team/stops/LFAec--1", "https://tec.openplanner.team/stops/LFAsauv2"], ["https://tec.openplanner.team/stops/Cgyduss1", "https://tec.openplanner.team/stops/Cjulamb1"], ["https://tec.openplanner.team/stops/X780ada", "https://tec.openplanner.team/stops/X780akb"], ["https://tec.openplanner.team/stops/LDpulve2", "https://tec.openplanner.team/stops/LFMkrin2"], ["https://tec.openplanner.team/stops/LVLcent1", "https://tec.openplanner.team/stops/LVNcoop1"], ["https://tec.openplanner.team/stops/H1an100a", "https://tec.openplanner.team/stops/H1an101b"], ["https://tec.openplanner.team/stops/X769aga", "https://tec.openplanner.team/stops/X769arb"], ["https://tec.openplanner.team/stops/Lhrcols1", "https://tec.openplanner.team/stops/Lhrcols4"], ["https://tec.openplanner.team/stops/H4cw107a", "https://tec.openplanner.team/stops/H4gz115a"], ["https://tec.openplanner.team/stops/Lemsart1", "https://tec.openplanner.team/stops/Lemsely1"], ["https://tec.openplanner.team/stops/LJAboli1", "https://tec.openplanner.team/stops/LJAfawe2"], ["https://tec.openplanner.team/stops/LhRkirc1", "https://tec.openplanner.team/stops/LhRkirc2"], ["https://tec.openplanner.team/stops/X599afc", "https://tec.openplanner.team/stops/X599afd"], ["https://tec.openplanner.team/stops/LBSchpl2", "https://tec.openplanner.team/stops/LMalamb4"], ["https://tec.openplanner.team/stops/N571aca", "https://tec.openplanner.team/stops/N573amb"], ["https://tec.openplanner.team/stops/LLzcruc2", "https://tec.openplanner.team/stops/LSTvaul1"], ["https://tec.openplanner.team/stops/Bwatgar1", "https://tec.openplanner.team/stops/Bwattri1"], ["https://tec.openplanner.team/stops/LFRrohe2", "https://tec.openplanner.team/stops/LFRspa-2"], ["https://tec.openplanner.team/stops/LBvviem3", "https://tec.openplanner.team/stops/LBvviem4"], ["https://tec.openplanner.team/stops/CMtirou1", "https://tec.openplanner.team/stops/NC01aha"], ["https://tec.openplanner.team/stops/X734ada", "https://tec.openplanner.team/stops/X734adb"], ["https://tec.openplanner.team/stops/X871aab", "https://tec.openplanner.team/stops/X871abb"], ["https://tec.openplanner.team/stops/H1do110a", "https://tec.openplanner.team/stops/H1do124a"], ["https://tec.openplanner.team/stops/H4bq154b", "https://tec.openplanner.team/stops/H4li178a"], ["https://tec.openplanner.team/stops/LTBeg--1", "https://tec.openplanner.team/stops/LTBeg--2"], ["https://tec.openplanner.team/stops/X954abb", "https://tec.openplanner.team/stops/X954aha"], ["https://tec.openplanner.team/stops/LThbatt2", "https://tec.openplanner.team/stops/LTheg--2"], ["https://tec.openplanner.team/stops/LaNmuhl3", "https://tec.openplanner.team/stops/LmNbirt1"], ["https://tec.openplanner.team/stops/LMOcorn2", "https://tec.openplanner.team/stops/LMOcorn4"], ["https://tec.openplanner.team/stops/X828aaa", "https://tec.openplanner.team/stops/X828aab"], ["https://tec.openplanner.team/stops/LOmvill3", "https://tec.openplanner.team/stops/LOmvill4"], ["https://tec.openplanner.team/stops/H4lg103b", "https://tec.openplanner.team/stops/H4rm112b"], ["https://tec.openplanner.team/stops/H2sb223b", "https://tec.openplanner.team/stops/H2sb243b"], ["https://tec.openplanner.team/stops/H4po130a", "https://tec.openplanner.team/stops/H4po130b"], ["https://tec.openplanner.team/stops/X640arb", "https://tec.openplanner.team/stops/X642aac"], ["https://tec.openplanner.team/stops/X736adb", "https://tec.openplanner.team/stops/X736agb"], ["https://tec.openplanner.team/stops/Lgrfalc2", "https://tec.openplanner.team/stops/Llgstap1"], ["https://tec.openplanner.team/stops/LmNkess2", "https://tec.openplanner.team/stops/LmNkrew1"], ["https://tec.openplanner.team/stops/N134aga", "https://tec.openplanner.team/stops/N154aba"], ["https://tec.openplanner.team/stops/LPLfp2-1", "https://tec.openplanner.team/stops/LPLstat2"], ["https://tec.openplanner.team/stops/LMHmeha1", "https://tec.openplanner.team/stops/LWzfuma1"], ["https://tec.openplanner.team/stops/H1bu136a", "https://tec.openplanner.team/stops/H3bi108a"], ["https://tec.openplanner.team/stops/LHolexh2", "https://tec.openplanner.team/stops/LHolone1"], ["https://tec.openplanner.team/stops/X739ahb", "https://tec.openplanner.team/stops/X912aja"], ["https://tec.openplanner.team/stops/LhUkape1", "https://tec.openplanner.team/stops/LhUkape2"], ["https://tec.openplanner.team/stops/Bwatpro1", "https://tec.openplanner.team/stops/Bwatpro2"], ["https://tec.openplanner.team/stops/H4lg101a", "https://tec.openplanner.team/stops/H4rm111a"], ["https://tec.openplanner.team/stops/Lprcard2", "https://tec.openplanner.team/stops/LWetrib2"], ["https://tec.openplanner.team/stops/LFPdeme1", "https://tec.openplanner.team/stops/LFPdeme2"], ["https://tec.openplanner.team/stops/N565aib", "https://tec.openplanner.team/stops/N565aic"], ["https://tec.openplanner.team/stops/N577aaa", "https://tec.openplanner.team/stops/N577aab"], ["https://tec.openplanner.team/stops/LEMgren*", "https://tec.openplanner.team/stops/LMazonn4"], ["https://tec.openplanner.team/stops/Bleugar1", "https://tec.openplanner.team/stops/Bleunaa1"], ["https://tec.openplanner.team/stops/X801atb", "https://tec.openplanner.team/stops/X889aeb"], ["https://tec.openplanner.team/stops/LDmhave2", "https://tec.openplanner.team/stops/LSGsolo1"], ["https://tec.openplanner.team/stops/LSPbass2", "https://tec.openplanner.team/stops/LSPfrai1"], ["https://tec.openplanner.team/stops/X597aaa", "https://tec.openplanner.team/stops/X597ana"], ["https://tec.openplanner.team/stops/X610aja", "https://tec.openplanner.team/stops/X611aba"], ["https://tec.openplanner.team/stops/X224aca", "https://tec.openplanner.team/stops/X398aha"], ["https://tec.openplanner.team/stops/N127baa", "https://tec.openplanner.team/stops/N127bja"], ["https://tec.openplanner.team/stops/Bmalsmc1", "https://tec.openplanner.team/stops/Bopprju1"], ["https://tec.openplanner.team/stops/N501aeb", "https://tec.openplanner.team/stops/N501agb"], ["https://tec.openplanner.team/stops/H1so131f", "https://tec.openplanner.team/stops/H1so133b"], ["https://tec.openplanner.team/stops/X662aia", "https://tec.openplanner.team/stops/X662aja"], ["https://tec.openplanner.team/stops/LSZarbe2", "https://tec.openplanner.team/stops/LTgwarf2"], ["https://tec.openplanner.team/stops/LeUarno1", "https://tec.openplanner.team/stops/LHthest2"], ["https://tec.openplanner.team/stops/H1le124a", "https://tec.openplanner.team/stops/H1le124b"], ["https://tec.openplanner.team/stops/Ccppn1", "https://tec.openplanner.team/stops/Ccppn2"], ["https://tec.openplanner.team/stops/N536afa", "https://tec.openplanner.team/stops/N536afb"], ["https://tec.openplanner.team/stops/N538anb", "https://tec.openplanner.team/stops/N538apa"], ["https://tec.openplanner.team/stops/Lvecase1", "https://tec.openplanner.team/stops/Lvecite2"], ["https://tec.openplanner.team/stops/H2mo124b", "https://tec.openplanner.team/stops/H2mo143b"], ["https://tec.openplanner.team/stops/LVLgotr2", "https://tec.openplanner.team/stops/LVLmart1"], ["https://tec.openplanner.team/stops/N551aha", "https://tec.openplanner.team/stops/N551ahb"], ["https://tec.openplanner.team/stops/Bbstpan1", "https://tec.openplanner.team/stops/Bbstpan2"], ["https://tec.openplanner.team/stops/Bnivfle1", "https://tec.openplanner.team/stops/Bnivpeu2"], ["https://tec.openplanner.team/stops/LSTchat1", "https://tec.openplanner.team/stops/LSTvaul2"], ["https://tec.openplanner.team/stops/LCUgale1", "https://tec.openplanner.team/stops/LCUgale2"], ["https://tec.openplanner.team/stops/H4jm117b", "https://tec.openplanner.team/stops/H4le128a"], ["https://tec.openplanner.team/stops/Btslhau1", "https://tec.openplanner.team/stops/Btsllec1"], ["https://tec.openplanner.team/stops/Cfmltas2", "https://tec.openplanner.team/stops/Cptcamb1"], ["https://tec.openplanner.team/stops/Buccchu1", "https://tec.openplanner.team/stops/Buccdho2"], ["https://tec.openplanner.team/stops/LWOmart1", "https://tec.openplanner.team/stops/LWOmart2"], ["https://tec.openplanner.team/stops/H5qu146a", "https://tec.openplanner.team/stops/H5qu153a"], ["https://tec.openplanner.team/stops/LeLdorf2", "https://tec.openplanner.team/stops/LwRkirc2"], ["https://tec.openplanner.team/stops/LTIp%C3%A9pi2", "https://tec.openplanner.team/stops/LTIsain1"], ["https://tec.openplanner.team/stops/X897amb", "https://tec.openplanner.team/stops/X897ana"], ["https://tec.openplanner.team/stops/Lglsana1", "https://tec.openplanner.team/stops/Llgchau1"], ["https://tec.openplanner.team/stops/Ccyfede1", "https://tec.openplanner.team/stops/Csrcant2"], ["https://tec.openplanner.team/stops/Cmlcaya2", "https://tec.openplanner.team/stops/Cmllait2"], ["https://tec.openplanner.team/stops/H1sd342a", "https://tec.openplanner.team/stops/H1sd347a"], ["https://tec.openplanner.team/stops/Ctucour1", "https://tec.openplanner.team/stops/Cturoge2"], ["https://tec.openplanner.team/stops/Lprhodi1", "https://tec.openplanner.team/stops/Lprhodi2"], ["https://tec.openplanner.team/stops/N151aia", "https://tec.openplanner.team/stops/N153abb"], ["https://tec.openplanner.team/stops/H4ld123a", "https://tec.openplanner.team/stops/H4ld129b"], ["https://tec.openplanner.team/stops/LBslama2", "https://tec.openplanner.team/stops/NL67abb"], ["https://tec.openplanner.team/stops/N426aab", "https://tec.openplanner.team/stops/N426afa"], ["https://tec.openplanner.team/stops/Bixllep2", "https://tec.openplanner.team/stops/Bsgimca2"], ["https://tec.openplanner.team/stops/X793ahb", "https://tec.openplanner.team/stops/X793ajb"], ["https://tec.openplanner.team/stops/Cfvombo1", "https://tec.openplanner.team/stops/Csbberg1"], ["https://tec.openplanner.team/stops/H1eo104a", "https://tec.openplanner.team/stops/H1eo107b"], ["https://tec.openplanner.team/stops/X685aca", "https://tec.openplanner.team/stops/X685aib"], ["https://tec.openplanner.team/stops/Llgfusc4", "https://tec.openplanner.team/stops/Llghec-1"], ["https://tec.openplanner.team/stops/H1gi121b", "https://tec.openplanner.team/stops/H1gi122b"], ["https://tec.openplanner.team/stops/LBLwaid1", "https://tec.openplanner.team/stops/LTrrich1"], ["https://tec.openplanner.team/stops/Btileco2", "https://tec.openplanner.team/stops/Bvlvmar2"], ["https://tec.openplanner.team/stops/X657aca", "https://tec.openplanner.team/stops/X657ada"], ["https://tec.openplanner.team/stops/H2ca100a", "https://tec.openplanner.team/stops/H2ca100b"], ["https://tec.openplanner.team/stops/LSBrouf2", "https://tec.openplanner.team/stops/LSBrouf3"], ["https://tec.openplanner.team/stops/H5el112c", "https://tec.openplanner.team/stops/H5el116b"], ["https://tec.openplanner.team/stops/N137ajb", "https://tec.openplanner.team/stops/N162afa"], ["https://tec.openplanner.team/stops/LHFappe2", "https://tec.openplanner.team/stops/LHFappe4"], ["https://tec.openplanner.team/stops/Cgzlera2", "https://tec.openplanner.team/stops/Cgzrust2"], ["https://tec.openplanner.team/stops/N539apa", "https://tec.openplanner.team/stops/N539ava"], ["https://tec.openplanner.team/stops/Bspkbeu2", "https://tec.openplanner.team/stops/Bspkker2"], ["https://tec.openplanner.team/stops/LHgpost2", "https://tec.openplanner.team/stops/LHgtomb2"], ["https://tec.openplanner.team/stops/Cflglav1", "https://tec.openplanner.team/stops/Cflpost1"], ["https://tec.openplanner.team/stops/X829aeb", "https://tec.openplanner.team/stops/X831aca"], ["https://tec.openplanner.team/stops/LFmlens2", "https://tec.openplanner.team/stops/LFmpoin2"], ["https://tec.openplanner.team/stops/H1ch107b", "https://tec.openplanner.team/stops/H1hh116a"], ["https://tec.openplanner.team/stops/N558amb", "https://tec.openplanner.team/stops/N559aba"], ["https://tec.openplanner.team/stops/Lgrlimi1", "https://tec.openplanner.team/stops/Llgsimo1"], ["https://tec.openplanner.team/stops/N310aba", "https://tec.openplanner.team/stops/N310abb"], ["https://tec.openplanner.team/stops/Bnivasa1", "https://tec.openplanner.team/stops/Bnivsba2"], ["https://tec.openplanner.team/stops/H4bo115b", "https://tec.openplanner.team/stops/H4hu113a"], ["https://tec.openplanner.team/stops/Lchsa632", "https://tec.openplanner.team/stops/Lchtche2"], ["https://tec.openplanner.team/stops/X743aba", "https://tec.openplanner.team/stops/X743aca"], ["https://tec.openplanner.team/stops/Lalmakr2", "https://tec.openplanner.team/stops/Lanpast1"], ["https://tec.openplanner.team/stops/Cnacent3", "https://tec.openplanner.team/stops/Cnaha562"], ["https://tec.openplanner.team/stops/Bperrcr1", "https://tec.openplanner.team/stops/Bperrsr1"], ["https://tec.openplanner.team/stops/LTobilz1", "https://tec.openplanner.team/stops/LToluik1"], ["https://tec.openplanner.team/stops/N135aea", "https://tec.openplanner.team/stops/N135aeb"], ["https://tec.openplanner.team/stops/N555aba", "https://tec.openplanner.team/stops/N555acb"], ["https://tec.openplanner.team/stops/N551aha", "https://tec.openplanner.team/stops/N568acb"], ["https://tec.openplanner.team/stops/Lrcpaqu1", "https://tec.openplanner.team/stops/Lrcrars1"], ["https://tec.openplanner.team/stops/LAmcorn1", "https://tec.openplanner.team/stops/LNHbarr1"], ["https://tec.openplanner.team/stops/Boveklo2", "https://tec.openplanner.team/stops/Bovepla2"], ["https://tec.openplanner.team/stops/Bcrnegl1", "https://tec.openplanner.team/stops/Bcrnnpl1"], ["https://tec.openplanner.team/stops/H4mv191b", "https://tec.openplanner.team/stops/H4os223b"], ["https://tec.openplanner.team/stops/X685aia", "https://tec.openplanner.team/stops/X696aea"], ["https://tec.openplanner.team/stops/H1qg138d", "https://tec.openplanner.team/stops/H1qy134a"], ["https://tec.openplanner.team/stops/Cmccet2", "https://tec.openplanner.team/stops/Cmcceta1"], ["https://tec.openplanner.team/stops/Bndb4ch1", "https://tec.openplanner.team/stops/Bndbpco1"], ["https://tec.openplanner.team/stops/N104aac", "https://tec.openplanner.team/stops/N104acb"], ["https://tec.openplanner.team/stops/LSPjoli2", "https://tec.openplanner.team/stops/LSPwarf1"], ["https://tec.openplanner.team/stops/LlNhube1", "https://tec.openplanner.team/stops/LlNhube2"], ["https://tec.openplanner.team/stops/Lseconc2", "https://tec.openplanner.team/stops/Lsetroq2"], ["https://tec.openplanner.team/stops/X808aba", "https://tec.openplanner.team/stops/X808ajb"], ["https://tec.openplanner.team/stops/X342afb", "https://tec.openplanner.team/stops/X359aaa"], ["https://tec.openplanner.team/stops/N512ada", "https://tec.openplanner.team/stops/N512adb"], ["https://tec.openplanner.team/stops/X608adb", "https://tec.openplanner.team/stops/X608afa"], ["https://tec.openplanner.team/stops/N506acb", "https://tec.openplanner.team/stops/N506bia"], ["https://tec.openplanner.team/stops/X774aca", "https://tec.openplanner.team/stops/X774acb"], ["https://tec.openplanner.team/stops/N511aka", "https://tec.openplanner.team/stops/N511akb"], ["https://tec.openplanner.team/stops/H1gr115b", "https://tec.openplanner.team/stops/H1gr120b"], ["https://tec.openplanner.team/stops/LWRchem2", "https://tec.openplanner.team/stops/LWRcruc1"], ["https://tec.openplanner.team/stops/X878aaa", "https://tec.openplanner.team/stops/X995aga"], ["https://tec.openplanner.team/stops/LDoeg--1", "https://tec.openplanner.team/stops/LHFcaqu2"], ["https://tec.openplanner.team/stops/LTreg--1", "https://tec.openplanner.team/stops/LTrrich2"], ["https://tec.openplanner.team/stops/H2pe157b", "https://tec.openplanner.team/stops/H2pe158a"], ["https://tec.openplanner.team/stops/LVLf10-1", "https://tec.openplanner.team/stops/LVLf10-2"], ["https://tec.openplanner.team/stops/H1er109a", "https://tec.openplanner.team/stops/H1er109b"], ["https://tec.openplanner.team/stops/X923aaa", "https://tec.openplanner.team/stops/X923aab"], ["https://tec.openplanner.team/stops/H1ht121a", "https://tec.openplanner.team/stops/H1ht136a"], ["https://tec.openplanner.team/stops/Bolggar2", "https://tec.openplanner.team/stops/Bolppla2"], ["https://tec.openplanner.team/stops/Cjuapca2", "https://tec.openplanner.team/stops/Cjutrou1"], ["https://tec.openplanner.team/stops/H1cu119a", "https://tec.openplanner.team/stops/H1cu128a"], ["https://tec.openplanner.team/stops/Bgnvcom1", "https://tec.openplanner.team/stops/Brixala1"], ["https://tec.openplanner.team/stops/X734apb", "https://tec.openplanner.team/stops/X734aqa"], ["https://tec.openplanner.team/stops/X724aaa", "https://tec.openplanner.team/stops/X724abb"], ["https://tec.openplanner.team/stops/H1qv110b", "https://tec.openplanner.team/stops/H1qv114a"], ["https://tec.openplanner.team/stops/X782alb", "https://tec.openplanner.team/stops/X782ana"], ["https://tec.openplanner.team/stops/X717afb", "https://tec.openplanner.team/stops/X718aga"], ["https://tec.openplanner.team/stops/Cmtplac7", "https://tec.openplanner.team/stops/Cmtplac8"], ["https://tec.openplanner.team/stops/X669agb", "https://tec.openplanner.team/stops/X669agc"], ["https://tec.openplanner.team/stops/H2fa105a", "https://tec.openplanner.team/stops/H2hg268b"], ["https://tec.openplanner.team/stops/LCEinst1", "https://tec.openplanner.team/stops/LCEplac1"], ["https://tec.openplanner.team/stops/LlZbell2", "https://tec.openplanner.team/stops/LmNmerl2"], ["https://tec.openplanner.team/stops/H2ma208b", "https://tec.openplanner.team/stops/H2sb232b"], ["https://tec.openplanner.team/stops/Bnivhon2", "https://tec.openplanner.team/stops/Bnivpgr2"], ["https://tec.openplanner.team/stops/Lcemc--1", "https://tec.openplanner.team/stops/Lcepont1"], ["https://tec.openplanner.team/stops/Cgzmira3", "https://tec.openplanner.team/stops/Cthha501"], ["https://tec.openplanner.team/stops/Llgcurt1", "https://tec.openplanner.team/stops/Llghong1"], ["https://tec.openplanner.team/stops/N501fla", "https://tec.openplanner.team/stops/N501lwa"], ["https://tec.openplanner.team/stops/N145aec", "https://tec.openplanner.team/stops/N149aca"], ["https://tec.openplanner.team/stops/H4lp124b", "https://tec.openplanner.team/stops/H4my121b"], ["https://tec.openplanner.team/stops/H2ca116a", "https://tec.openplanner.team/stops/H2ca116b"], ["https://tec.openplanner.team/stops/LAMec--1", "https://tec.openplanner.team/stops/LAMec--2"], ["https://tec.openplanner.team/stops/H4ty303a", "https://tec.openplanner.team/stops/H4ty353b"], ["https://tec.openplanner.team/stops/N425acb", "https://tec.openplanner.team/stops/N425ada"], ["https://tec.openplanner.team/stops/X925ajb", "https://tec.openplanner.team/stops/X996aha"], ["https://tec.openplanner.team/stops/H1sg149b", "https://tec.openplanner.team/stops/H1te182a"], ["https://tec.openplanner.team/stops/H4ty306b", "https://tec.openplanner.team/stops/H4ty352a"], ["https://tec.openplanner.team/stops/N538akb", "https://tec.openplanner.team/stops/N538ara"], ["https://tec.openplanner.team/stops/Beclaub2", "https://tec.openplanner.team/stops/H2ec104b"], ["https://tec.openplanner.team/stops/LSPbalm2", "https://tec.openplanner.team/stops/LSPcomm1"], ["https://tec.openplanner.team/stops/Baegegl2", "https://tec.openplanner.team/stops/Baeggar1"], ["https://tec.openplanner.team/stops/N522bvg", "https://tec.openplanner.team/stops/N522bvh"], ["https://tec.openplanner.team/stops/H1ju119a", "https://tec.openplanner.team/stops/H1ju120c"], ["https://tec.openplanner.team/stops/LFArela5", "https://tec.openplanner.team/stops/LVBbvin"], ["https://tec.openplanner.team/stops/LsTgren1", "https://tec.openplanner.team/stops/LwPdorf2"], ["https://tec.openplanner.team/stops/H5at114a", "https://tec.openplanner.team/stops/H5at142a"], ["https://tec.openplanner.team/stops/LTiec--2", "https://tec.openplanner.team/stops/LTiforg2"], ["https://tec.openplanner.team/stops/H4mt216b", "https://tec.openplanner.team/stops/H4mt220b"], ["https://tec.openplanner.team/stops/N248aeb", "https://tec.openplanner.team/stops/N340agb"], ["https://tec.openplanner.team/stops/H4ve135a", "https://tec.openplanner.team/stops/H4ve140a"], ["https://tec.openplanner.team/stops/N536acb", "https://tec.openplanner.team/stops/N562blb"], ["https://tec.openplanner.team/stops/Balsnay2", "https://tec.openplanner.team/stops/Balswsa2"], ["https://tec.openplanner.team/stops/H1ms296a", "https://tec.openplanner.team/stops/H1ms296d"], ["https://tec.openplanner.team/stops/Bsrbbas2", "https://tec.openplanner.team/stops/Bsrbtil1"], ["https://tec.openplanner.team/stops/X804aia", "https://tec.openplanner.team/stops/X804aya"], ["https://tec.openplanner.team/stops/LHHroua1", "https://tec.openplanner.team/stops/LSGmall2"], ["https://tec.openplanner.team/stops/LaLkirc*", "https://tec.openplanner.team/stops/LBhschu2"], ["https://tec.openplanner.team/stops/H4bx167a", "https://tec.openplanner.team/stops/H4rm110a"], ["https://tec.openplanner.team/stops/LTPbeau1", "https://tec.openplanner.team/stops/LTPpisc1"], ["https://tec.openplanner.team/stops/H1mb137a", "https://tec.openplanner.team/stops/H1mb137b"], ["https://tec.openplanner.team/stops/Bbldgar1", "https://tec.openplanner.team/stops/Bbldgar2"], ["https://tec.openplanner.team/stops/H4ty310a", "https://tec.openplanner.team/stops/H4ty310b"], ["https://tec.openplanner.team/stops/LWblesp2", "https://tec.openplanner.team/stops/LWbregn2"], ["https://tec.openplanner.team/stops/N534arb", "https://tec.openplanner.team/stops/N534bga"], ["https://tec.openplanner.team/stops/N508apb", "https://tec.openplanner.team/stops/N516abb"], ["https://tec.openplanner.team/stops/Bovetsa2", "https://tec.openplanner.team/stops/Bwavtrt1"], ["https://tec.openplanner.team/stops/X780aeb", "https://tec.openplanner.team/stops/X790aja"], ["https://tec.openplanner.team/stops/H1qu119b", "https://tec.openplanner.team/stops/H1wa147b"], ["https://tec.openplanner.team/stops/H5el107a", "https://tec.openplanner.team/stops/H5el107b"], ["https://tec.openplanner.team/stops/Ljuvieu1", "https://tec.openplanner.team/stops/Ljuvieu2"], ["https://tec.openplanner.team/stops/N501gca", "https://tec.openplanner.team/stops/N501ljb"], ["https://tec.openplanner.team/stops/X614afa", "https://tec.openplanner.team/stops/X614awb"], ["https://tec.openplanner.team/stops/N254abb", "https://tec.openplanner.team/stops/N254acb"], ["https://tec.openplanner.team/stops/X638ada", "https://tec.openplanner.team/stops/X638aea"], ["https://tec.openplanner.team/stops/X659ana", "https://tec.openplanner.team/stops/X659aza"], ["https://tec.openplanner.team/stops/Cgyduss1", "https://tec.openplanner.team/stops/Cgyduss4"], ["https://tec.openplanner.team/stops/Cfobriq1", "https://tec.openplanner.team/stops/Cfomays1"], ["https://tec.openplanner.team/stops/LBkcarr2", "https://tec.openplanner.team/stops/LlNbusc1"], ["https://tec.openplanner.team/stops/X601aab", "https://tec.openplanner.team/stops/X601ada"], ["https://tec.openplanner.team/stops/Chpceri2", "https://tec.openplanner.team/stops/Chpplac2"], ["https://tec.openplanner.team/stops/N203acb", "https://tec.openplanner.team/stops/N562aza"], ["https://tec.openplanner.team/stops/Bitrgnt2", "https://tec.openplanner.team/stops/Bitrmde2"], ["https://tec.openplanner.team/stops/H2pe162a", "https://tec.openplanner.team/stops/H2sv217b"], ["https://tec.openplanner.team/stops/N516alb", "https://tec.openplanner.team/stops/N516anb"], ["https://tec.openplanner.team/stops/X627aab", "https://tec.openplanner.team/stops/X629aab"], ["https://tec.openplanner.team/stops/X879aca", "https://tec.openplanner.team/stops/X879acb"], ["https://tec.openplanner.team/stops/Llgform1", "https://tec.openplanner.team/stops/Llgsnap3"], ["https://tec.openplanner.team/stops/H4ea127b", "https://tec.openplanner.team/stops/H4ea134b"], ["https://tec.openplanner.team/stops/LLrlour1", "https://tec.openplanner.team/stops/LTHmont1"], ["https://tec.openplanner.team/stops/Ljhsart1", "https://tec.openplanner.team/stops/Lmnjeha1"], ["https://tec.openplanner.team/stops/Bmonbor1", "https://tec.openplanner.team/stops/Bmonbor2"], ["https://tec.openplanner.team/stops/Cwgcamp1", "https://tec.openplanner.team/stops/Cwgplac1"], ["https://tec.openplanner.team/stops/X672aaa", "https://tec.openplanner.team/stops/X672apa"], ["https://tec.openplanner.team/stops/LFMstat2", "https://tec.openplanner.team/stops/LFPknap1"], ["https://tec.openplanner.team/stops/Lpegiet2", "https://tec.openplanner.team/stops/Lpeptle2"], ["https://tec.openplanner.team/stops/X985aca", "https://tec.openplanner.team/stops/X985ada"], ["https://tec.openplanner.team/stops/N135aec", "https://tec.openplanner.team/stops/N135aed"], ["https://tec.openplanner.team/stops/Lsnbrac1", "https://tec.openplanner.team/stops/Lsnbrac3"], ["https://tec.openplanner.team/stops/H4am101b", "https://tec.openplanner.team/stops/H4rs117a"], ["https://tec.openplanner.team/stops/Bqueaga1", "https://tec.openplanner.team/stops/Bquepbr1"], ["https://tec.openplanner.team/stops/N212aha", "https://tec.openplanner.team/stops/N212ahb"], ["https://tec.openplanner.team/stops/LFTcroi3", "https://tec.openplanner.team/stops/LFTeg--2"], ["https://tec.openplanner.team/stops/H2mo126a", "https://tec.openplanner.team/stops/H2mo145a"], ["https://tec.openplanner.team/stops/LOCbois1", "https://tec.openplanner.team/stops/N223abb"], ["https://tec.openplanner.team/stops/N501aha", "https://tec.openplanner.team/stops/N501cla"], ["https://tec.openplanner.team/stops/X615apa", "https://tec.openplanner.team/stops/X615asa"], ["https://tec.openplanner.team/stops/H2ma204b", "https://tec.openplanner.team/stops/H3th130b"], ["https://tec.openplanner.team/stops/N522abb", "https://tec.openplanner.team/stops/N522afa"], ["https://tec.openplanner.team/stops/Croegli1", "https://tec.openplanner.team/stops/Crojume2"], ["https://tec.openplanner.team/stops/LTPsatr1", "https://tec.openplanner.team/stops/LTPsatr2"], ["https://tec.openplanner.team/stops/N202aba", "https://tec.openplanner.team/stops/N254aha"], ["https://tec.openplanner.team/stops/Cchprun2", "https://tec.openplanner.team/stops/Cchtiro3"], ["https://tec.openplanner.team/stops/N120abb", "https://tec.openplanner.team/stops/N120abd"], ["https://tec.openplanner.team/stops/N521aba", "https://tec.openplanner.team/stops/N521aqa"], ["https://tec.openplanner.team/stops/N117bca", "https://tec.openplanner.team/stops/N117bcb"], ["https://tec.openplanner.team/stops/X757aab", "https://tec.openplanner.team/stops/X758aea"], ["https://tec.openplanner.team/stops/Lrcastr2", "https://tec.openplanner.team/stops/Lrcastr4"], ["https://tec.openplanner.team/stops/Btslcej1", "https://tec.openplanner.team/stops/Btslcej2"], ["https://tec.openplanner.team/stops/Lsmcime*", "https://tec.openplanner.team/stops/Lsmh3022"], ["https://tec.openplanner.team/stops/Bbcocou1", "https://tec.openplanner.team/stops/Bbcopre1"], ["https://tec.openplanner.team/stops/H1fr151a", "https://tec.openplanner.team/stops/H1fr151b"], ["https://tec.openplanner.team/stops/X650aba", "https://tec.openplanner.team/stops/X650abb"], ["https://tec.openplanner.team/stops/H1ci103a", "https://tec.openplanner.team/stops/H1hn206b"], ["https://tec.openplanner.team/stops/N234aaa", "https://tec.openplanner.team/stops/N234aca"], ["https://tec.openplanner.team/stops/H1al106a", "https://tec.openplanner.team/stops/H1go169a"], ["https://tec.openplanner.team/stops/Bfelada1", "https://tec.openplanner.team/stops/Bfelrav1"], ["https://tec.openplanner.team/stops/X640aab", "https://tec.openplanner.team/stops/X675aab"], ["https://tec.openplanner.team/stops/N540ada", "https://tec.openplanner.team/stops/N540adb"], ["https://tec.openplanner.team/stops/Lbocomm2", "https://tec.openplanner.team/stops/Lstchu-4"], ["https://tec.openplanner.team/stops/Llgnico1", "https://tec.openplanner.team/stops/LlgnicT1"], ["https://tec.openplanner.team/stops/LBieg--3", "https://tec.openplanner.team/stops/LSubass1"], ["https://tec.openplanner.team/stops/Cjuheig1", "https://tec.openplanner.team/stops/Crojume1"], ["https://tec.openplanner.team/stops/X902ajb", "https://tec.openplanner.team/stops/X902ama"], ["https://tec.openplanner.team/stops/X715aia", "https://tec.openplanner.team/stops/X715aqa"], ["https://tec.openplanner.team/stops/LBIcabi1", "https://tec.openplanner.team/stops/LBIhann2"], ["https://tec.openplanner.team/stops/LkEcoop1", "https://tec.openplanner.team/stops/LkEwolf1"], ["https://tec.openplanner.team/stops/H1br132a", "https://tec.openplanner.team/stops/H1ev149b"], ["https://tec.openplanner.team/stops/LMolone1", "https://tec.openplanner.team/stops/LMovich1"], ["https://tec.openplanner.team/stops/N547ama", "https://tec.openplanner.team/stops/N548acb"], ["https://tec.openplanner.team/stops/Cjumall1", "https://tec.openplanner.team/stops/Cjuspin1"], ["https://tec.openplanner.team/stops/H1as102b", "https://tec.openplanner.team/stops/H1nv324a"], ["https://tec.openplanner.team/stops/H1he104a", "https://tec.openplanner.team/stops/H1he104b"], ["https://tec.openplanner.team/stops/H1ag104a", "https://tec.openplanner.team/stops/H1ro140a"], ["https://tec.openplanner.team/stops/X904aba", "https://tec.openplanner.team/stops/X904abb"], ["https://tec.openplanner.team/stops/N560aab", "https://tec.openplanner.team/stops/N560adb"], ["https://tec.openplanner.team/stops/Louencl1", "https://tec.openplanner.team/stops/Louencl2"], ["https://tec.openplanner.team/stops/Lrelier1", "https://tec.openplanner.team/stops/Lrelier2"], ["https://tec.openplanner.team/stops/X622aaa", "https://tec.openplanner.team/stops/X622aea"], ["https://tec.openplanner.team/stops/X805akb", "https://tec.openplanner.team/stops/X873aba"], ["https://tec.openplanner.team/stops/Bnivgam1", "https://tec.openplanner.team/stops/Bnivmet2"], ["https://tec.openplanner.team/stops/Llghugo2", "https://tec.openplanner.team/stops/Llgplat2"], ["https://tec.openplanner.team/stops/Cauushm1", "https://tec.openplanner.team/stops/N543aja"], ["https://tec.openplanner.team/stops/N111aca", "https://tec.openplanner.team/stops/N111aeb"], ["https://tec.openplanner.team/stops/N232bwa", "https://tec.openplanner.team/stops/N260afa"], ["https://tec.openplanner.team/stops/Cmldeto1", "https://tec.openplanner.team/stops/Cmlrang1"], ["https://tec.openplanner.team/stops/Laddelc2", "https://tec.openplanner.team/stops/Ladxhen2"], ["https://tec.openplanner.team/stops/H1ss350b", "https://tec.openplanner.team/stops/H1ss351b"], ["https://tec.openplanner.team/stops/X669abc", "https://tec.openplanner.team/stops/X672aeb"], ["https://tec.openplanner.team/stops/LBEchan2", "https://tec.openplanner.team/stops/LBEhaye2"], ["https://tec.openplanner.team/stops/Bwavnam2", "https://tec.openplanner.team/stops/Bwavnam4"], ["https://tec.openplanner.team/stops/Lghmaha1", "https://tec.openplanner.team/stops/Lghpier2"], ["https://tec.openplanner.team/stops/N146aea", "https://tec.openplanner.team/stops/N146aeb"], ["https://tec.openplanner.team/stops/X892aga", "https://tec.openplanner.team/stops/X892agb"], ["https://tec.openplanner.team/stops/X993adb", "https://tec.openplanner.team/stops/X995aca"], ["https://tec.openplanner.team/stops/Ctachst2", "https://tec.openplanner.team/stops/Ctaprai3"], ["https://tec.openplanner.team/stops/Bpthcgo1", "https://tec.openplanner.team/stops/Bpthcgo2"], ["https://tec.openplanner.team/stops/Lagarde1", "https://tec.openplanner.team/stops/Lgrgoff1"], ["https://tec.openplanner.team/stops/LmUkape2", "https://tec.openplanner.team/stops/LrOtria2"], ["https://tec.openplanner.team/stops/H2ll177b", "https://tec.openplanner.team/stops/H2ll190b"], ["https://tec.openplanner.team/stops/X898afa", "https://tec.openplanner.team/stops/X898aob"], ["https://tec.openplanner.team/stops/Lcealig2", "https://tec.openplanner.team/stops/Lceludg1"], ["https://tec.openplanner.team/stops/N208aab", "https://tec.openplanner.team/stops/N209alb"], ["https://tec.openplanner.team/stops/LHUanth1", "https://tec.openplanner.team/stops/LHUfont2"], ["https://tec.openplanner.team/stops/LATcham*", "https://tec.openplanner.team/stops/LATfont1"], ["https://tec.openplanner.team/stops/X897axa", "https://tec.openplanner.team/stops/X951acb"], ["https://tec.openplanner.team/stops/N132afa", "https://tec.openplanner.team/stops/N136aaa"], ["https://tec.openplanner.team/stops/LWAmois2", "https://tec.openplanner.team/stops/LWAor--2"], ["https://tec.openplanner.team/stops/N528aqb", "https://tec.openplanner.team/stops/N528ata"], ["https://tec.openplanner.team/stops/X618aeb", "https://tec.openplanner.team/stops/X696ada"], ["https://tec.openplanner.team/stops/LLUgend2", "https://tec.openplanner.team/stops/LLUpier1"], ["https://tec.openplanner.team/stops/Clocroi1", "https://tec.openplanner.team/stops/Clogfay1"], ["https://tec.openplanner.team/stops/LBkwind1", "https://tec.openplanner.team/stops/LWEmito1"], ["https://tec.openplanner.team/stops/Cmehels1", "https://tec.openplanner.team/stops/Cmerdby2"], ["https://tec.openplanner.team/stops/Cgzabau2", "https://tec.openplanner.team/stops/Cgzdeve1"], ["https://tec.openplanner.team/stops/LSoboul1", "https://tec.openplanner.team/stops/LSoeg--1"], ["https://tec.openplanner.team/stops/LAvambr1", "https://tec.openplanner.team/stops/LAvatri2"], ["https://tec.openplanner.team/stops/H1mj122a", "https://tec.openplanner.team/stops/H1mj129a"], ["https://tec.openplanner.team/stops/LFIinse2", "https://tec.openplanner.team/stops/LMYroin2"], ["https://tec.openplanner.team/stops/N543bia", "https://tec.openplanner.team/stops/N543bta"], ["https://tec.openplanner.team/stops/H4do202a", "https://tec.openplanner.team/stops/H4mo192a"], ["https://tec.openplanner.team/stops/H3bi101b", "https://tec.openplanner.team/stops/H3bi110b"], ["https://tec.openplanner.team/stops/LGegare1", "https://tec.openplanner.team/stops/LkEsouf2"], ["https://tec.openplanner.team/stops/H4ty343b", "https://tec.openplanner.team/stops/H4ty345b"], ["https://tec.openplanner.team/stops/Bjodcar1", "https://tec.openplanner.team/stops/Bjodgar1"], ["https://tec.openplanner.team/stops/Bsengma1", "https://tec.openplanner.team/stops/Bsenpeu2"], ["https://tec.openplanner.team/stops/Brsgece2", "https://tec.openplanner.team/stops/Brsgera2"], ["https://tec.openplanner.team/stops/Bitrpri2", "https://tec.openplanner.team/stops/Bosqpqu2"], ["https://tec.openplanner.team/stops/H1ev112a", "https://tec.openplanner.team/stops/H1ev114a"], ["https://tec.openplanner.team/stops/Cgy4bra1", "https://tec.openplanner.team/stops/Cgyhstj2"], ["https://tec.openplanner.team/stops/N218aab", "https://tec.openplanner.team/stops/N218aba"], ["https://tec.openplanner.team/stops/LNAmart2", "https://tec.openplanner.team/stops/LSSvill2"], ["https://tec.openplanner.team/stops/Bsengma2", "https://tec.openplanner.team/stops/H2se105a"], ["https://tec.openplanner.team/stops/Becepri1", "https://tec.openplanner.team/stops/H2ec106b"], ["https://tec.openplanner.team/stops/X808aha", "https://tec.openplanner.team/stops/X808akb"], ["https://tec.openplanner.team/stops/H4mo181d", "https://tec.openplanner.team/stops/H4mo183a"], ["https://tec.openplanner.team/stops/X757aka", "https://tec.openplanner.team/stops/X757ala"], ["https://tec.openplanner.team/stops/Cfaheni1", "https://tec.openplanner.team/stops/Cpl4bra2"], ["https://tec.openplanner.team/stops/H1ol137b", "https://tec.openplanner.team/stops/H1ol145b"], ["https://tec.openplanner.team/stops/Loudela2", "https://tec.openplanner.team/stops/Lseblan*"], ["https://tec.openplanner.team/stops/X657afa", "https://tec.openplanner.team/stops/X670aoa"], ["https://tec.openplanner.team/stops/X361aca", "https://tec.openplanner.team/stops/X362ada"], ["https://tec.openplanner.team/stops/LBjvill3", "https://tec.openplanner.team/stops/LTB105-2"], ["https://tec.openplanner.team/stops/H1je216a", "https://tec.openplanner.team/stops/H1qu101b"], ["https://tec.openplanner.team/stops/LAWkone2", "https://tec.openplanner.team/stops/LAWroug1"], ["https://tec.openplanner.team/stops/Bcrbrpb1", "https://tec.openplanner.team/stops/Bmsgrco1"], ["https://tec.openplanner.team/stops/Bnivrsa2", "https://tec.openplanner.team/stops/Bnivsba1"], ["https://tec.openplanner.team/stops/X897axb", "https://tec.openplanner.team/stops/X993aja"], ["https://tec.openplanner.team/stops/LSdbote2", "https://tec.openplanner.team/stops/LSdsar52"], ["https://tec.openplanner.team/stops/NL76arb", "https://tec.openplanner.team/stops/NL76asb"], ["https://tec.openplanner.team/stops/N390adb", "https://tec.openplanner.team/stops/X991aeb"], ["https://tec.openplanner.team/stops/Blhumpo2", "https://tec.openplanner.team/stops/Blhumpo3"], ["https://tec.openplanner.team/stops/N501bcb", "https://tec.openplanner.team/stops/N501mca"], ["https://tec.openplanner.team/stops/Chhclde2", "https://tec.openplanner.team/stops/Ctybaco1"], ["https://tec.openplanner.team/stops/X616afb", "https://tec.openplanner.team/stops/X625agb"], ["https://tec.openplanner.team/stops/LrUweve2", "https://tec.openplanner.team/stops/LsF39--2"], ["https://tec.openplanner.team/stops/LCsraws2", "https://tec.openplanner.team/stops/LVBneuv1"], ["https://tec.openplanner.team/stops/N501hvb", "https://tec.openplanner.team/stops/N501hyb"], ["https://tec.openplanner.team/stops/Cmtcapi1", "https://tec.openplanner.team/stops/Cmtfoye2"], ["https://tec.openplanner.team/stops/LHUchpl1", "https://tec.openplanner.team/stops/LHUec--1"], ["https://tec.openplanner.team/stops/LSEquar1", "https://tec.openplanner.team/stops/LSpfond2"], ["https://tec.openplanner.team/stops/X752acb", "https://tec.openplanner.team/stops/X757acb"], ["https://tec.openplanner.team/stops/LlNbruc1", "https://tec.openplanner.team/stops/LlNlimb2"], ["https://tec.openplanner.team/stops/H1ms254d", "https://tec.openplanner.team/stops/H1ms260b"], ["https://tec.openplanner.team/stops/X896afb", "https://tec.openplanner.team/stops/X897apb"], ["https://tec.openplanner.team/stops/X750bab", "https://tec.openplanner.team/stops/X780aja"], ["https://tec.openplanner.team/stops/H1eu105a", "https://tec.openplanner.team/stops/H1eu105b"], ["https://tec.openplanner.team/stops/Brsgsan1", "https://tec.openplanner.team/stops/Buccptj1"], ["https://tec.openplanner.team/stops/Brosegl1", "https://tec.openplanner.team/stops/H2gy101b"], ["https://tec.openplanner.team/stops/LMHoha-2", "https://tec.openplanner.team/stops/LMHtill2"], ["https://tec.openplanner.team/stops/Lscbour2", "https://tec.openplanner.team/stops/Lscpamp1"], ["https://tec.openplanner.team/stops/LTIgare3", "https://tec.openplanner.team/stops/LTIpres1"], ["https://tec.openplanner.team/stops/N312abb", "https://tec.openplanner.team/stops/N312ada"], ["https://tec.openplanner.team/stops/LCxc6192", "https://tec.openplanner.team/stops/LCxcour2"], ["https://tec.openplanner.team/stops/LCsbors2", "https://tec.openplanner.team/stops/LCscarr4"], ["https://tec.openplanner.team/stops/H2ha138b", "https://tec.openplanner.team/stops/H2ha139b"], ["https://tec.openplanner.team/stops/N534aph", "https://tec.openplanner.team/stops/N534awb"], ["https://tec.openplanner.team/stops/N529acb", "https://tec.openplanner.team/stops/N529aia"], ["https://tec.openplanner.team/stops/H4wi161a", "https://tec.openplanner.team/stops/H4wi161b"], ["https://tec.openplanner.team/stops/X804ayb", "https://tec.openplanner.team/stops/X804baa"], ["https://tec.openplanner.team/stops/Cctvche2", "https://tec.openplanner.team/stops/NC11ala"], ["https://tec.openplanner.team/stops/Bmelegl2", "https://tec.openplanner.team/stops/Bmelmqu2"], ["https://tec.openplanner.team/stops/X659aga", "https://tec.openplanner.team/stops/X659ata"], ["https://tec.openplanner.team/stops/X764afb", "https://tec.openplanner.team/stops/X791aab"], ["https://tec.openplanner.team/stops/N349aga", "https://tec.openplanner.team/stops/X349aic"], ["https://tec.openplanner.team/stops/LFCotte2", "https://tec.openplanner.team/stops/LFMrijk2"], ["https://tec.openplanner.team/stops/H4do106b", "https://tec.openplanner.team/stops/H4ev119a"], ["https://tec.openplanner.team/stops/LhSfrei2", "https://tec.openplanner.team/stops/LhSkape2"], ["https://tec.openplanner.team/stops/N201aoc", "https://tec.openplanner.team/stops/N201awb"], ["https://tec.openplanner.team/stops/LAWaube1", "https://tec.openplanner.team/stops/LAWvold2"], ["https://tec.openplanner.team/stops/H5el111b", "https://tec.openplanner.team/stops/H5rx104a"], ["https://tec.openplanner.team/stops/H1cu111b", "https://tec.openplanner.team/stops/H1cu113a"], ["https://tec.openplanner.team/stops/X662aga", "https://tec.openplanner.team/stops/X662ana"], ["https://tec.openplanner.team/stops/Bwatms09", "https://tec.openplanner.team/stops/Bwatmsj8"], ["https://tec.openplanner.team/stops/Cmlchan1", "https://tec.openplanner.team/stops/Cmltomb2"], ["https://tec.openplanner.team/stops/N512anb", "https://tec.openplanner.team/stops/NL68adc"], ["https://tec.openplanner.team/stops/N118aqb", "https://tec.openplanner.team/stops/N118aub"], ["https://tec.openplanner.team/stops/H4to133b", "https://tec.openplanner.team/stops/H5at136a"], ["https://tec.openplanner.team/stops/N528aoa", "https://tec.openplanner.team/stops/N528apb"], ["https://tec.openplanner.team/stops/X760aaa", "https://tec.openplanner.team/stops/X760abb"], ["https://tec.openplanner.team/stops/X939afa", "https://tec.openplanner.team/stops/X940aga"], ["https://tec.openplanner.team/stops/X664alb", "https://tec.openplanner.team/stops/X664ama"], ["https://tec.openplanner.team/stops/Llgchai1", "https://tec.openplanner.team/stops/Llggerm2"], ["https://tec.openplanner.team/stops/X991aaa", "https://tec.openplanner.team/stops/X991afb"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X774aec"], ["https://tec.openplanner.team/stops/Crsaise4", "https://tec.openplanner.team/stops/Crswaut2"], ["https://tec.openplanner.team/stops/H4ka178b", "https://tec.openplanner.team/stops/H4ka185b"], ["https://tec.openplanner.team/stops/N538aza", "https://tec.openplanner.team/stops/N538azb"], ["https://tec.openplanner.team/stops/Cfmnoci1", "https://tec.openplanner.team/stops/Cfmnoci2"], ["https://tec.openplanner.team/stops/Cgocolo1", "https://tec.openplanner.team/stops/Cgorosa2"], ["https://tec.openplanner.team/stops/LClsacr1", "https://tec.openplanner.team/stops/LClsacr2"], ["https://tec.openplanner.team/stops/H2fy122a", "https://tec.openplanner.team/stops/H2fy122b"], ["https://tec.openplanner.team/stops/H4lz117a", "https://tec.openplanner.team/stops/H4lz128a"], ["https://tec.openplanner.team/stops/LRReg--1", "https://tec.openplanner.team/stops/LRReg--2"], ["https://tec.openplanner.team/stops/LVBmonu1", "https://tec.openplanner.team/stops/LVBvill2"], ["https://tec.openplanner.team/stops/Cgdfoca2", "https://tec.openplanner.team/stops/Csylaha2"], ["https://tec.openplanner.team/stops/X758afa", "https://tec.openplanner.team/stops/X758agb"], ["https://tec.openplanner.team/stops/Ljemont1", "https://tec.openplanner.team/stops/Ljexhav3"], ["https://tec.openplanner.team/stops/N204aaa", "https://tec.openplanner.team/stops/N205aba"], ["https://tec.openplanner.team/stops/Csocime1", "https://tec.openplanner.team/stops/Ctrepin2"], ["https://tec.openplanner.team/stops/N254aga", "https://tec.openplanner.team/stops/N254agb"], ["https://tec.openplanner.team/stops/H1ss348a", "https://tec.openplanner.team/stops/H1ss351a"], ["https://tec.openplanner.team/stops/H1hl123b", "https://tec.openplanner.team/stops/H1hl126a"], ["https://tec.openplanner.team/stops/X877aca", "https://tec.openplanner.team/stops/X877ada"], ["https://tec.openplanner.team/stops/X736afa", "https://tec.openplanner.team/stops/X753abb"], ["https://tec.openplanner.team/stops/Bwatran2", "https://tec.openplanner.team/stops/Bwatrte1"], ["https://tec.openplanner.team/stops/X801bbb", "https://tec.openplanner.team/stops/X801bha"], ["https://tec.openplanner.team/stops/Bblapra2", "https://tec.openplanner.team/stops/Bwaunce1"], ["https://tec.openplanner.team/stops/X695aba", "https://tec.openplanner.team/stops/X695aca"], ["https://tec.openplanner.team/stops/N232arb", "https://tec.openplanner.team/stops/N232bra"], ["https://tec.openplanner.team/stops/Lvearle4", "https://tec.openplanner.team/stops/Lvewaut1"], ["https://tec.openplanner.team/stops/LTIgare1", "https://tec.openplanner.team/stops/LTIgare3"], ["https://tec.openplanner.team/stops/Bhanath2", "https://tec.openplanner.team/stops/LHNathe1"], ["https://tec.openplanner.team/stops/X911adb", "https://tec.openplanner.team/stops/X911ava"], ["https://tec.openplanner.team/stops/LVSpn--1", "https://tec.openplanner.team/stops/LVSpn--2"], ["https://tec.openplanner.team/stops/H1fy121a", "https://tec.openplanner.team/stops/H1fy142a"], ["https://tec.openplanner.team/stops/LERdeho1", "https://tec.openplanner.team/stops/LHseg--1"], ["https://tec.openplanner.team/stops/Cragoss2", "https://tec.openplanner.team/stops/Crasocq1"], ["https://tec.openplanner.team/stops/Bpernov1", "https://tec.openplanner.team/stops/Bperrsr1"], ["https://tec.openplanner.team/stops/LkAmess2", "https://tec.openplanner.team/stops/LkAsonn1"], ["https://tec.openplanner.team/stops/N337aha", "https://tec.openplanner.team/stops/N339aca"], ["https://tec.openplanner.team/stops/LSTparf1", "https://tec.openplanner.team/stops/LSTparf2"], ["https://tec.openplanner.team/stops/Ccaegli3", "https://tec.openplanner.team/stops/Ccaegli4"], ["https://tec.openplanner.team/stops/Llgbobu1", "https://tec.openplanner.team/stops/Lmochar1"], ["https://tec.openplanner.team/stops/LCPaube1", "https://tec.openplanner.team/stops/LCPaube2"], ["https://tec.openplanner.team/stops/X777aab", "https://tec.openplanner.team/stops/X777aba"], ["https://tec.openplanner.team/stops/LTRferm1", "https://tec.openplanner.team/stops/LTRferm2"], ["https://tec.openplanner.team/stops/N551agb", "https://tec.openplanner.team/stops/N551aqb"], ["https://tec.openplanner.team/stops/Cmaleri2", "https://tec.openplanner.team/stops/Cmastma4"], ["https://tec.openplanner.team/stops/N121aea", "https://tec.openplanner.team/stops/N121aeb"], ["https://tec.openplanner.team/stops/LThhoul1", "https://tec.openplanner.team/stops/LThsere1"], ["https://tec.openplanner.team/stops/X731aga", "https://tec.openplanner.team/stops/X731ahb"], ["https://tec.openplanner.team/stops/LmHschm2", "https://tec.openplanner.team/stops/LrOwahl1"], ["https://tec.openplanner.team/stops/N348aeb", "https://tec.openplanner.team/stops/N351ara"], ["https://tec.openplanner.team/stops/LCvmonu1", "https://tec.openplanner.team/stops/LLEgare1"], ["https://tec.openplanner.team/stops/X734and", "https://tec.openplanner.team/stops/X775acb"], ["https://tec.openplanner.team/stops/N201akb", "https://tec.openplanner.team/stops/N211akb"], ["https://tec.openplanner.team/stops/Lbotilf1", "https://tec.openplanner.team/stops/Lbotilf2"], ["https://tec.openplanner.team/stops/H4mv190a", "https://tec.openplanner.team/stops/H4mv195a"], ["https://tec.openplanner.team/stops/LaAdiep1", "https://tec.openplanner.team/stops/LaAlinz2"], ["https://tec.openplanner.team/stops/H1vs144a", "https://tec.openplanner.team/stops/H1vs146a"], ["https://tec.openplanner.team/stops/LAWdefu3", "https://tec.openplanner.team/stops/LBIpont2"], ["https://tec.openplanner.team/stops/LmTkirc1", "https://tec.openplanner.team/stops/LmTkirc2"], ["https://tec.openplanner.team/stops/X740aab", "https://tec.openplanner.team/stops/X740aca"], ["https://tec.openplanner.team/stops/Bglacsr1", "https://tec.openplanner.team/stops/Bwaypav1"], ["https://tec.openplanner.team/stops/H1bn114b", "https://tec.openplanner.team/stops/H1bn148b"], ["https://tec.openplanner.team/stops/X622aca", "https://tec.openplanner.team/stops/X622ada"], ["https://tec.openplanner.team/stops/Llglave1", "https://tec.openplanner.team/stops/Llglave2"], ["https://tec.openplanner.team/stops/Bcbqegl2", "https://tec.openplanner.team/stops/Bcbqufo2"], ["https://tec.openplanner.team/stops/H4bc104b", "https://tec.openplanner.team/stops/H5bl116a"], ["https://tec.openplanner.team/stops/Llgcoro2", "https://tec.openplanner.team/stops/Llgtir-2"], ["https://tec.openplanner.team/stops/X922ada", "https://tec.openplanner.team/stops/X922aeb"], ["https://tec.openplanner.team/stops/Cvvmonu2", "https://tec.openplanner.team/stops/Cvvsncb1"], ["https://tec.openplanner.team/stops/Bbcolno1", "https://tec.openplanner.team/stops/H3br102a"], ["https://tec.openplanner.team/stops/N232aha", "https://tec.openplanner.team/stops/N232bpb"], ["https://tec.openplanner.team/stops/LVPgrot1", "https://tec.openplanner.team/stops/LVPgrot4"], ["https://tec.openplanner.team/stops/LHarenn1", "https://tec.openplanner.team/stops/LOurena2"], ["https://tec.openplanner.team/stops/Ccyga7", "https://tec.openplanner.team/stops/NH01akb"], ["https://tec.openplanner.team/stops/X777aba", "https://tec.openplanner.team/stops/X784aia"], ["https://tec.openplanner.team/stops/N533ada", "https://tec.openplanner.team/stops/N568aca"], ["https://tec.openplanner.team/stops/Bsencen2", "https://tec.openplanner.team/stops/Bsences2"], ["https://tec.openplanner.team/stops/Clbecol1", "https://tec.openplanner.team/stops/Clbecol2"], ["https://tec.openplanner.team/stops/LERpouh1", "https://tec.openplanner.team/stops/X512aib"], ["https://tec.openplanner.team/stops/LMNjard1", "https://tec.openplanner.team/stops/LMNjard2"], ["https://tec.openplanner.team/stops/Csspn1", "https://tec.openplanner.team/stops/Csygare1"], ["https://tec.openplanner.team/stops/H4bc101c", "https://tec.openplanner.team/stops/H5pe128a"], ["https://tec.openplanner.team/stops/Cgoloca1", "https://tec.openplanner.team/stops/Cgosoux2"], ["https://tec.openplanner.team/stops/X952adb", "https://tec.openplanner.team/stops/X952aia"], ["https://tec.openplanner.team/stops/Lcapisc2", "https://tec.openplanner.team/stops/Lvcchau2"], ["https://tec.openplanner.team/stops/H1al146a", "https://tec.openplanner.team/stops/H1fy143a"], ["https://tec.openplanner.team/stops/H1nm138a", "https://tec.openplanner.team/stops/H1nm139b"], ["https://tec.openplanner.team/stops/LWabela1", "https://tec.openplanner.team/stops/LWargeu1"], ["https://tec.openplanner.team/stops/X725ala", "https://tec.openplanner.team/stops/X725ama"], ["https://tec.openplanner.team/stops/H1ge116b", "https://tec.openplanner.team/stops/H1sb144b"], ["https://tec.openplanner.team/stops/N551ahb", "https://tec.openplanner.team/stops/N552acb"], ["https://tec.openplanner.team/stops/N161aab", "https://tec.openplanner.team/stops/N161abd"], ["https://tec.openplanner.team/stops/X910adb", "https://tec.openplanner.team/stops/X910afc"], ["https://tec.openplanner.team/stops/LLYtir-1", "https://tec.openplanner.team/stops/LOMdTEC2"], ["https://tec.openplanner.team/stops/X774aba", "https://tec.openplanner.team/stops/X954agb"], ["https://tec.openplanner.team/stops/H4bo178a", "https://tec.openplanner.team/stops/H4bo178b"], ["https://tec.openplanner.team/stops/Bsomtce1", "https://tec.openplanner.team/stops/N584bna"], ["https://tec.openplanner.team/stops/H1ro135b", "https://tec.openplanner.team/stops/H1ro138a"], ["https://tec.openplanner.team/stops/N501meb", "https://tec.openplanner.team/stops/N501mez"], ["https://tec.openplanner.team/stops/N111aeb", "https://tec.openplanner.team/stops/N113aba"], ["https://tec.openplanner.team/stops/X899aaa", "https://tec.openplanner.team/stops/X899adb"], ["https://tec.openplanner.team/stops/LROchap1", "https://tec.openplanner.team/stops/LWaruth2"], ["https://tec.openplanner.team/stops/N501lgb", "https://tec.openplanner.team/stops/N501ljb"], ["https://tec.openplanner.team/stops/Cmofosb2", "https://tec.openplanner.team/stops/Cmogrbu2"], ["https://tec.openplanner.team/stops/Llmcomb1", "https://tec.openplanner.team/stops/Llmdavi2"], ["https://tec.openplanner.team/stops/Bcsebde1", "https://tec.openplanner.team/stops/Bcsepes2"], ["https://tec.openplanner.team/stops/H1mk110a", "https://tec.openplanner.team/stops/H1mk116b"], ["https://tec.openplanner.team/stops/LBSneuv1", "https://tec.openplanner.team/stops/LBStec-2"], ["https://tec.openplanner.team/stops/Bquebut2", "https://tec.openplanner.team/stops/Bquecar1"], ["https://tec.openplanner.team/stops/LGrchpl1", "https://tec.openplanner.team/stops/LGrchpl2"], ["https://tec.openplanner.team/stops/X948arb", "https://tec.openplanner.team/stops/X948awa"], ["https://tec.openplanner.team/stops/N117aba", "https://tec.openplanner.team/stops/N117ajb"], ["https://tec.openplanner.team/stops/LBTwauc1", "https://tec.openplanner.team/stops/LBTwauc2"], ["https://tec.openplanner.team/stops/H1gn148b", "https://tec.openplanner.team/stops/H1gn149b"], ["https://tec.openplanner.team/stops/H2go114a", "https://tec.openplanner.team/stops/H2go114c"], ["https://tec.openplanner.team/stops/X742aaa", "https://tec.openplanner.team/stops/X742abb"], ["https://tec.openplanner.team/stops/H4ir162a", "https://tec.openplanner.team/stops/H4ir163c"], ["https://tec.openplanner.team/stops/Cflfaub1", "https://tec.openplanner.team/stops/Cflgazo2"], ["https://tec.openplanner.team/stops/N387aab", "https://tec.openplanner.team/stops/N387aha"], ["https://tec.openplanner.team/stops/N501dpb", "https://tec.openplanner.team/stops/N501ggb"], ["https://tec.openplanner.team/stops/X908ajb", "https://tec.openplanner.team/stops/X908amb"], ["https://tec.openplanner.team/stops/H1ho133a", "https://tec.openplanner.team/stops/H1ho135a"], ["https://tec.openplanner.team/stops/LMNcite2", "https://tec.openplanner.team/stops/LPbec--2"], ["https://tec.openplanner.team/stops/N230ahb", "https://tec.openplanner.team/stops/N231abb"], ["https://tec.openplanner.team/stops/Cchsud06", "https://tec.openplanner.team/stops/Cchsud07"], ["https://tec.openplanner.team/stops/LCpeg-*", "https://tec.openplanner.team/stops/LWMcent1"], ["https://tec.openplanner.team/stops/LESfont2", "https://tec.openplanner.team/stops/LFNtill1"], ["https://tec.openplanner.team/stops/Bjanegl1", "https://tec.openplanner.team/stops/Bjanegl2"], ["https://tec.openplanner.team/stops/LBEtroo1", "https://tec.openplanner.team/stops/LBEtroo2"], ["https://tec.openplanner.team/stops/LVIcarm2", "https://tec.openplanner.team/stops/LVIcarm3"], ["https://tec.openplanner.team/stops/X654aab", "https://tec.openplanner.team/stops/X654abb"], ["https://tec.openplanner.team/stops/Bquegen2", "https://tec.openplanner.team/stops/Brebcgi1"], ["https://tec.openplanner.team/stops/Cthhvil1", "https://tec.openplanner.team/stops/Cthnsnc"], ["https://tec.openplanner.team/stops/LrOgara3", "https://tec.openplanner.team/stops/LrOn14-1"], ["https://tec.openplanner.team/stops/X754aoa", "https://tec.openplanner.team/stops/X754apb"], ["https://tec.openplanner.team/stops/Bnivari2", "https://tec.openplanner.team/stops/Bnivphm2"], ["https://tec.openplanner.team/stops/Bvxgeta1", "https://tec.openplanner.team/stops/Cgnquer1"], ["https://tec.openplanner.team/stops/X907aba", "https://tec.openplanner.team/stops/X939acb"], ["https://tec.openplanner.team/stops/Cgycvie2", "https://tec.openplanner.team/stops/Cgynuto2"], ["https://tec.openplanner.team/stops/LNEbo471", "https://tec.openplanner.team/stops/LOLbout1"], ["https://tec.openplanner.team/stops/LScgore1", "https://tec.openplanner.team/stops/LYEphar1"], ["https://tec.openplanner.team/stops/Bgrmpsn2", "https://tec.openplanner.team/stops/N522aua"], ["https://tec.openplanner.team/stops/LVBeg--2", "https://tec.openplanner.team/stops/LVBrmon1"], ["https://tec.openplanner.team/stops/Caiegli2", "https://tec.openplanner.team/stops/Caircen1"], ["https://tec.openplanner.team/stops/LbAhenk1", "https://tec.openplanner.team/stops/LmNsied1"], ["https://tec.openplanner.team/stops/Cfachap2", "https://tec.openplanner.team/stops/Cfaheni4"], ["https://tec.openplanner.team/stops/LPAeg--2", "https://tec.openplanner.team/stops/LPAmc--1"], ["https://tec.openplanner.team/stops/NL57afb", "https://tec.openplanner.team/stops/NL57aha"], ["https://tec.openplanner.team/stops/LnErech1", "https://tec.openplanner.team/stops/LrEfeck2"], ["https://tec.openplanner.team/stops/Lagpn6-1", "https://tec.openplanner.team/stops/LTIgare3"], ["https://tec.openplanner.team/stops/LHMaube1", "https://tec.openplanner.team/stops/LHMaube2"], ["https://tec.openplanner.team/stops/Bwatmco2", "https://tec.openplanner.team/stops/Bwatnro1"], ["https://tec.openplanner.team/stops/Bjaneco1", "https://tec.openplanner.team/stops/Bjanegl1"], ["https://tec.openplanner.team/stops/Bmarlor1", "https://tec.openplanner.team/stops/Bvlvmar2"], ["https://tec.openplanner.team/stops/LAUjean1", "https://tec.openplanner.team/stops/LFProt-1"], ["https://tec.openplanner.team/stops/Bwaveur1", "https://tec.openplanner.team/stops/Bwavtpi2"], ["https://tec.openplanner.team/stops/LCPcomp2", "https://tec.openplanner.team/stops/LCPvign2"], ["https://tec.openplanner.team/stops/LNCchev1", "https://tec.openplanner.team/stops/LNCneuv3"], ["https://tec.openplanner.team/stops/X790amb", "https://tec.openplanner.team/stops/X793aab"], ["https://tec.openplanner.team/stops/Bgzdpco2", "https://tec.openplanner.team/stops/Bgzdpos3"], ["https://tec.openplanner.team/stops/N229ala", "https://tec.openplanner.team/stops/N229asa"], ["https://tec.openplanner.team/stops/Lcchala1", "https://tec.openplanner.team/stops/LRarami2"], ["https://tec.openplanner.team/stops/X943aab", "https://tec.openplanner.team/stops/X943agb"], ["https://tec.openplanner.team/stops/H4ro154b", "https://tec.openplanner.team/stops/H4ro157b"], ["https://tec.openplanner.team/stops/Llgbida1", "https://tec.openplanner.team/stops/Llgware2"], ["https://tec.openplanner.team/stops/Lbhbalt1", "https://tec.openplanner.team/stops/LMFmoul1"], ["https://tec.openplanner.team/stops/H4ev118b", "https://tec.openplanner.team/stops/H4ev126b"], ["https://tec.openplanner.team/stops/Bcrbgro2", "https://tec.openplanner.team/stops/Bcrbtho2"], ["https://tec.openplanner.team/stops/Lghwall2", "https://tec.openplanner.team/stops/Llochar1"], ["https://tec.openplanner.team/stops/Bnivfch1", "https://tec.openplanner.team/stops/Bnivpso2"], ["https://tec.openplanner.team/stops/Lsehcoc2", "https://tec.openplanner.team/stops/Lsetrav2"], ["https://tec.openplanner.team/stops/LFChofv2", "https://tec.openplanner.team/stops/LFClage2"], ["https://tec.openplanner.team/stops/H1sa115a", "https://tec.openplanner.team/stops/H1sa115b"], ["https://tec.openplanner.team/stops/Bmsgeco1", "https://tec.openplanner.team/stops/Bmsgpap1"], ["https://tec.openplanner.team/stops/X836abb", "https://tec.openplanner.team/stops/X836aca"], ["https://tec.openplanner.team/stops/N232ahb", "https://tec.openplanner.team/stops/N261abb"], ["https://tec.openplanner.team/stops/N513ala", "https://tec.openplanner.team/stops/N513ara"], ["https://tec.openplanner.team/stops/LAYpl--1", "https://tec.openplanner.team/stops/LAYpl--2"], ["https://tec.openplanner.team/stops/Cflspir2", "https://tec.openplanner.team/stops/Cflvxca2"], ["https://tec.openplanner.team/stops/Csubosa2", "https://tec.openplanner.team/stops/Csygare3"], ["https://tec.openplanner.team/stops/N343aaa", "https://tec.openplanner.team/stops/N343aab"], ["https://tec.openplanner.team/stops/LCRgdrt1", "https://tec.openplanner.team/stops/LCRgdrt2"], ["https://tec.openplanner.team/stops/Lticime2", "https://tec.openplanner.team/stops/Ltiegl-*"], ["https://tec.openplanner.team/stops/Llglamb2", "https://tec.openplanner.team/stops/Llgsorb2"], ["https://tec.openplanner.team/stops/Btslcej2", "https://tec.openplanner.team/stops/Btslegl1"], ["https://tec.openplanner.team/stops/X601ctb", "https://tec.openplanner.team/stops/X601dia"], ["https://tec.openplanner.team/stops/X747afb", "https://tec.openplanner.team/stops/X747aia"], ["https://tec.openplanner.team/stops/LSdencl*", "https://tec.openplanner.team/stops/LSdsa452"], ["https://tec.openplanner.team/stops/Bhenmal1", "https://tec.openplanner.team/stops/Bhenmal2"], ["https://tec.openplanner.team/stops/Bllnlb52", "https://tec.openplanner.team/stops/Bllnrge2"], ["https://tec.openplanner.team/stops/H4bl104a", "https://tec.openplanner.team/stops/H4ha169b"], ["https://tec.openplanner.team/stops/Loudemo1", "https://tec.openplanner.team/stops/Louroos2"], ["https://tec.openplanner.team/stops/H4ef111b", "https://tec.openplanner.team/stops/H4ef112a"], ["https://tec.openplanner.team/stops/X634aka", "https://tec.openplanner.team/stops/X634akb"], ["https://tec.openplanner.team/stops/Lhrjaur2", "https://tec.openplanner.team/stops/Lhrmine2"], ["https://tec.openplanner.team/stops/Bwatsan1", "https://tec.openplanner.team/stops/Bwatsan2"], ["https://tec.openplanner.team/stops/H1fr119a", "https://tec.openplanner.team/stops/H1no141b"], ["https://tec.openplanner.team/stops/X601cba", "https://tec.openplanner.team/stops/X602aob"], ["https://tec.openplanner.team/stops/X808adb", "https://tec.openplanner.team/stops/X808agb"], ["https://tec.openplanner.team/stops/LPAvill2", "https://tec.openplanner.team/stops/LWinavi1"], ["https://tec.openplanner.team/stops/LbUmurr1", "https://tec.openplanner.team/stops/LhUrich1"], ["https://tec.openplanner.team/stops/X806ada", "https://tec.openplanner.team/stops/X806ala"], ["https://tec.openplanner.team/stops/H2ha133b", "https://tec.openplanner.team/stops/H2hg146a"], ["https://tec.openplanner.team/stops/Cgocolo2", "https://tec.openplanner.team/stops/Cjugend3"], ["https://tec.openplanner.team/stops/H4mb204a", "https://tec.openplanner.team/stops/H4mb205a"], ["https://tec.openplanner.team/stops/H2tr245a", "https://tec.openplanner.team/stops/H2tr245b"], ["https://tec.openplanner.team/stops/X837aec", "https://tec.openplanner.team/stops/X837aed"], ["https://tec.openplanner.team/stops/X359ahb", "https://tec.openplanner.team/stops/X359aib"], ["https://tec.openplanner.team/stops/Cfcgrat2", "https://tec.openplanner.team/stops/Cfcstan1"], ["https://tec.openplanner.team/stops/X639aka", "https://tec.openplanner.team/stops/X639ata"], ["https://tec.openplanner.team/stops/H3bo100d", "https://tec.openplanner.team/stops/H3bo101a"], ["https://tec.openplanner.team/stops/N562ata", "https://tec.openplanner.team/stops/N562atb"], ["https://tec.openplanner.team/stops/Cmastfi2", "https://tec.openplanner.team/stops/Cmomoul4"], ["https://tec.openplanner.team/stops/H4te250b", "https://tec.openplanner.team/stops/H4te257a"], ["https://tec.openplanner.team/stops/H1pa100a", "https://tec.openplanner.team/stops/H1pd145a"], ["https://tec.openplanner.team/stops/Cgrcent2", "https://tec.openplanner.team/stops/NC14anb"], ["https://tec.openplanner.team/stops/H4ga165a", "https://tec.openplanner.team/stops/H4ga171b"], ["https://tec.openplanner.team/stops/H1fr118b", "https://tec.openplanner.team/stops/H1fr119a"], ["https://tec.openplanner.team/stops/LaMschr1", "https://tec.openplanner.team/stops/LeIdeid1"], ["https://tec.openplanner.team/stops/CMjans1", "https://tec.openplanner.team/stops/Cmtpire1"], ["https://tec.openplanner.team/stops/LROcent2", "https://tec.openplanner.team/stops/LROchap1"], ["https://tec.openplanner.team/stops/H1fl136b", "https://tec.openplanner.team/stops/H1fl136c"], ["https://tec.openplanner.team/stops/H1do109b", "https://tec.openplanner.team/stops/H1do129a"], ["https://tec.openplanner.team/stops/X982cba", "https://tec.openplanner.team/stops/X986aha"], ["https://tec.openplanner.team/stops/N513agc", "https://tec.openplanner.team/stops/N513bab"], ["https://tec.openplanner.team/stops/LHYdogn1", "https://tec.openplanner.team/stops/LHYdogn2"], ["https://tec.openplanner.team/stops/N584asa", "https://tec.openplanner.team/stops/N584asb"], ["https://tec.openplanner.team/stops/N506aaa", "https://tec.openplanner.team/stops/N506aab"], ["https://tec.openplanner.team/stops/N308aab", "https://tec.openplanner.team/stops/N308acb"], ["https://tec.openplanner.team/stops/Bpthfus1", "https://tec.openplanner.team/stops/Bthspha1"], ["https://tec.openplanner.team/stops/LrDschl2", "https://tec.openplanner.team/stops/LrEmeil1"], ["https://tec.openplanner.team/stops/H2hp124a", "https://tec.openplanner.team/stops/H2hp124b"], ["https://tec.openplanner.team/stops/Cml5ave2", "https://tec.openplanner.team/stops/Cmlsart1"], ["https://tec.openplanner.team/stops/X766aeb", "https://tec.openplanner.team/stops/X791aca"], ["https://tec.openplanner.team/stops/N988aba", "https://tec.openplanner.team/stops/X876aaa"], ["https://tec.openplanner.team/stops/Lbocorn2", "https://tec.openplanner.team/stops/Loumatt1"], ["https://tec.openplanner.team/stops/N509awa", "https://tec.openplanner.team/stops/N511aqa"], ["https://tec.openplanner.team/stops/LESlieg1", "https://tec.openplanner.team/stops/LESslmo1"], ["https://tec.openplanner.team/stops/H4gr112a", "https://tec.openplanner.team/stops/H4gr112b"], ["https://tec.openplanner.team/stops/Llgbruy2", "https://tec.openplanner.team/stops/Llgfail2"], ["https://tec.openplanner.team/stops/H5pe125b", "https://tec.openplanner.team/stops/H5pe128b"], ["https://tec.openplanner.team/stops/Ccunove2", "https://tec.openplanner.team/stops/Cgysarr1"], ["https://tec.openplanner.team/stops/LSZptwa2", "https://tec.openplanner.team/stops/LWycabi1"], ["https://tec.openplanner.team/stops/N132aaa", "https://tec.openplanner.team/stops/N132acb"], ["https://tec.openplanner.team/stops/H5ma181a", "https://tec.openplanner.team/stops/H5ma186b"], ["https://tec.openplanner.team/stops/Cjxthom1", "https://tec.openplanner.team/stops/Cmymoha2"], ["https://tec.openplanner.team/stops/Lmoboeu4", "https://tec.openplanner.team/stops/Lmoknae4"], ["https://tec.openplanner.team/stops/LMHplac1", "https://tec.openplanner.team/stops/LMHplac4"], ["https://tec.openplanner.team/stops/LVBneuv1", "https://tec.openplanner.team/stops/LVBneuv2"], ["https://tec.openplanner.team/stops/Cbuegl2", "https://tec.openplanner.team/stops/Cbuplac4"], ["https://tec.openplanner.team/stops/H4ag107b", "https://tec.openplanner.team/stops/H4fo118b"], ["https://tec.openplanner.team/stops/X602aab", "https://tec.openplanner.team/stops/X602aba"], ["https://tec.openplanner.team/stops/H4ss156a", "https://tec.openplanner.team/stops/H4ss156b"], ["https://tec.openplanner.team/stops/LHUpsar1", "https://tec.openplanner.team/stops/LHUpsar2"], ["https://tec.openplanner.team/stops/Cbfdufa1", "https://tec.openplanner.team/stops/Cci4092"], ["https://tec.openplanner.team/stops/H4ty270a", "https://tec.openplanner.team/stops/H4ty270b"], ["https://tec.openplanner.team/stops/LAYambl1", "https://tec.openplanner.team/stops/LAYambl2"], ["https://tec.openplanner.team/stops/N516aqa", "https://tec.openplanner.team/stops/N581acb"], ["https://tec.openplanner.team/stops/H4av103b", "https://tec.openplanner.team/stops/H4de112b"], ["https://tec.openplanner.team/stops/N166aba", "https://tec.openplanner.team/stops/N565abb"], ["https://tec.openplanner.team/stops/Llgphol2", "https://tec.openplanner.team/stops/Llgphol3"], ["https://tec.openplanner.team/stops/H4ep127a", "https://tec.openplanner.team/stops/H4la197a"], ["https://tec.openplanner.team/stops/N153acb", "https://tec.openplanner.team/stops/N153afb"], ["https://tec.openplanner.team/stops/Bcrnnca1", "https://tec.openplanner.team/stops/Bwlhpec1"], ["https://tec.openplanner.team/stops/H1wi147b", "https://tec.openplanner.team/stops/H1wi153a"], ["https://tec.openplanner.team/stops/N569ada", "https://tec.openplanner.team/stops/N569adb"], ["https://tec.openplanner.team/stops/LMAwavr2", "https://tec.openplanner.team/stops/LMisour1"], ["https://tec.openplanner.team/stops/Cgoathe2", "https://tec.openplanner.team/stops/Ctmsncb1"], ["https://tec.openplanner.team/stops/N549afb", "https://tec.openplanner.team/stops/N549aib"], ["https://tec.openplanner.team/stops/Loufleu1", "https://tec.openplanner.team/stops/Lousite3"], ["https://tec.openplanner.team/stops/N228aeb", "https://tec.openplanner.team/stops/N270aaa"], ["https://tec.openplanner.team/stops/N574aba", "https://tec.openplanner.team/stops/N574agb"], ["https://tec.openplanner.team/stops/H1ls107a", "https://tec.openplanner.team/stops/H1ls107b"], ["https://tec.openplanner.team/stops/X945ada", "https://tec.openplanner.team/stops/X945aea"], ["https://tec.openplanner.team/stops/LSEec--1", "https://tec.openplanner.team/stops/LSEec--2"], ["https://tec.openplanner.team/stops/LSPjoli1", "https://tec.openplanner.team/stops/LSZdepo1"], ["https://tec.openplanner.team/stops/H3so153a", "https://tec.openplanner.team/stops/H3so164a"], ["https://tec.openplanner.team/stops/H4ld128b", "https://tec.openplanner.team/stops/H4to138b"], ["https://tec.openplanner.team/stops/LVRchpl1", "https://tec.openplanner.team/stops/X782aha"], ["https://tec.openplanner.team/stops/LCTcret2", "https://tec.openplanner.team/stops/LFIinse2"], ["https://tec.openplanner.team/stops/X839aab", "https://tec.openplanner.team/stops/X839abb"], ["https://tec.openplanner.team/stops/H4ty296b", "https://tec.openplanner.team/stops/H4ty379a"], ["https://tec.openplanner.team/stops/LCSgend1", "https://tec.openplanner.team/stops/LCSgend2"], ["https://tec.openplanner.team/stops/H1an101b", "https://tec.openplanner.team/stops/H1an103a"], ["https://tec.openplanner.team/stops/Ctusold1", "https://tec.openplanner.team/stops/NC28aea"], ["https://tec.openplanner.team/stops/Cmaegli2", "https://tec.openplanner.team/stops/Cmarroy1"], ["https://tec.openplanner.team/stops/X672aia", "https://tec.openplanner.team/stops/X672aid"], ["https://tec.openplanner.team/stops/X634afb", "https://tec.openplanner.team/stops/X634agb"], ["https://tec.openplanner.team/stops/Bsgetri2", "https://tec.openplanner.team/stops/Bsgevil2"], ["https://tec.openplanner.team/stops/LHUloui1", "https://tec.openplanner.team/stops/NL80apa"], ["https://tec.openplanner.team/stops/H1hc152a", "https://tec.openplanner.team/stops/H1he103a"], ["https://tec.openplanner.team/stops/Cbmind3", "https://tec.openplanner.team/stops/Cbmmafr2"], ["https://tec.openplanner.team/stops/Livgera3", "https://tec.openplanner.team/stops/Livpost1"], ["https://tec.openplanner.team/stops/H1hh110a", "https://tec.openplanner.team/stops/H1hh115a"], ["https://tec.openplanner.team/stops/Cctrobe1", "https://tec.openplanner.team/stops/Cctsold1"], ["https://tec.openplanner.team/stops/Csachas1", "https://tec.openplanner.team/stops/Cwgmell3"], ["https://tec.openplanner.team/stops/Cbfbies1", "https://tec.openplanner.team/stops/Cbfpoti1"], ["https://tec.openplanner.team/stops/H2jo162a", "https://tec.openplanner.team/stops/H2jo162b"], ["https://tec.openplanner.team/stops/N501bsa", "https://tec.openplanner.team/stops/N501bsb"], ["https://tec.openplanner.team/stops/X658agb", "https://tec.openplanner.team/stops/X658agc"], ["https://tec.openplanner.team/stops/Bdoncen1", "https://tec.openplanner.team/stops/Bdonlat2"], ["https://tec.openplanner.team/stops/X734aka", "https://tec.openplanner.team/stops/X734apa"], ["https://tec.openplanner.team/stops/LCeterm2", "https://tec.openplanner.team/stops/LLWpier1"], ["https://tec.openplanner.team/stops/H1mb128b", "https://tec.openplanner.team/stops/H1mb129a"], ["https://tec.openplanner.team/stops/H5wo122a", "https://tec.openplanner.team/stops/H5wo122b"], ["https://tec.openplanner.team/stops/X912aba", "https://tec.openplanner.team/stops/X912acb"], ["https://tec.openplanner.team/stops/LWApr%C3%A9s3", "https://tec.openplanner.team/stops/LWApr%C3%A9s4"], ["https://tec.openplanner.team/stops/X736abb", "https://tec.openplanner.team/stops/X952aeb"], ["https://tec.openplanner.team/stops/N141acb", "https://tec.openplanner.team/stops/N141agb"], ["https://tec.openplanner.team/stops/LFCdree1", "https://tec.openplanner.team/stops/LFChofv2"], ["https://tec.openplanner.team/stops/Clafaub1", "https://tec.openplanner.team/stops/Clafaub2"], ["https://tec.openplanner.team/stops/LBTwauc1", "https://tec.openplanner.team/stops/LThpoli1"], ["https://tec.openplanner.team/stops/H1ba116a", "https://tec.openplanner.team/stops/H1qu104b"], ["https://tec.openplanner.team/stops/N501lcy", "https://tec.openplanner.team/stops/N501lcz"], ["https://tec.openplanner.team/stops/N308ada", "https://tec.openplanner.team/stops/N311aga"], ["https://tec.openplanner.team/stops/H1ge116a", "https://tec.openplanner.team/stops/H1sb144b"], ["https://tec.openplanner.team/stops/Lflcime2", "https://tec.openplanner.team/stops/Lflpaeu1"], ["https://tec.openplanner.team/stops/X869aea", "https://tec.openplanner.team/stops/X871abb"], ["https://tec.openplanner.team/stops/LWEcite1", "https://tec.openplanner.team/stops/LWEgend1"], ["https://tec.openplanner.team/stops/Cjxpann1", "https://tec.openplanner.team/stops/Cmyboci1"], ["https://tec.openplanner.team/stops/Cmlhubi1", "https://tec.openplanner.team/stops/Cmlmatc2"], ["https://tec.openplanner.team/stops/Laddelc1", "https://tec.openplanner.team/stops/Ladfoot1"], ["https://tec.openplanner.team/stops/Lceegth1", "https://tec.openplanner.team/stops/Lcesart1"], ["https://tec.openplanner.team/stops/Lvehv--1", "https://tec.openplanner.team/stops/Lvevert1"], ["https://tec.openplanner.team/stops/LTRsain1", "https://tec.openplanner.team/stops/LTRthie1"], ["https://tec.openplanner.team/stops/X901aab", "https://tec.openplanner.team/stops/X901bsa"], ["https://tec.openplanner.team/stops/X765aaa", "https://tec.openplanner.team/stops/X766afa"], ["https://tec.openplanner.team/stops/LFlabba1", "https://tec.openplanner.team/stops/LFlabba3"], ["https://tec.openplanner.team/stops/N424aca", "https://tec.openplanner.team/stops/N425aaa"], ["https://tec.openplanner.team/stops/N534abb", "https://tec.openplanner.team/stops/N534ada"], ["https://tec.openplanner.team/stops/LLAcalv2", "https://tec.openplanner.team/stops/LLAeg--1"], ["https://tec.openplanner.team/stops/Bboupde1", "https://tec.openplanner.team/stops/Bcerldo1"], ["https://tec.openplanner.team/stops/LJvmale1", "https://tec.openplanner.team/stops/X576ahb"], ["https://tec.openplanner.team/stops/Lbrcygn1", "https://tec.openplanner.team/stops/Lbrddef3"], ["https://tec.openplanner.team/stops/Bmsgcap2", "https://tec.openplanner.team/stops/Bmsgstj2"], ["https://tec.openplanner.team/stops/Lvegc--5", "https://tec.openplanner.team/stops/Lvethea1"], ["https://tec.openplanner.team/stops/LGlbour1", "https://tec.openplanner.team/stops/LGlcite2"], ["https://tec.openplanner.team/stops/LCEhayo2", "https://tec.openplanner.team/stops/LETfort4"], ["https://tec.openplanner.team/stops/LaRkape2", "https://tec.openplanner.team/stops/LmSluxh2"], ["https://tec.openplanner.team/stops/N353aea", "https://tec.openplanner.team/stops/N353aeb"], ["https://tec.openplanner.team/stops/Bjaurgo2", "https://tec.openplanner.team/stops/Bolphgr1"], ["https://tec.openplanner.team/stops/N209aba", "https://tec.openplanner.team/stops/N209aca"], ["https://tec.openplanner.team/stops/N425aga", "https://tec.openplanner.team/stops/N426acb"], ["https://tec.openplanner.team/stops/LDAbois1", "https://tec.openplanner.team/stops/LDAcite1"], ["https://tec.openplanner.team/stops/H4br110a", "https://tec.openplanner.team/stops/H4br111b"], ["https://tec.openplanner.team/stops/LJAhanq3", "https://tec.openplanner.team/stops/LJAhanq4"], ["https://tec.openplanner.team/stops/Lagpaix2", "https://tec.openplanner.team/stops/Lagresi2"], ["https://tec.openplanner.team/stops/Blsmbfe2", "https://tec.openplanner.team/stops/Blsmjja2"], ["https://tec.openplanner.team/stops/Blnzcar1", "https://tec.openplanner.team/stops/Blnzcar2"], ["https://tec.openplanner.team/stops/X898agb", "https://tec.openplanner.team/stops/X898akb"], ["https://tec.openplanner.team/stops/Lbrfagn1", "https://tec.openplanner.team/stops/Ljuathe1"], ["https://tec.openplanner.team/stops/X739adb", "https://tec.openplanner.team/stops/X739aeb"], ["https://tec.openplanner.team/stops/LDAbois1", "https://tec.openplanner.team/stops/LVIferm1"], ["https://tec.openplanner.team/stops/Cnadepo1", "https://tec.openplanner.team/stops/Cnalava4"], ["https://tec.openplanner.team/stops/Ccychco2", "https://tec.openplanner.team/stops/Ccyga7"], ["https://tec.openplanner.team/stops/Cchba2", "https://tec.openplanner.team/stops/Cchdaup1"], ["https://tec.openplanner.team/stops/Lfhvoye1", "https://tec.openplanner.team/stops/Lpocent2"], ["https://tec.openplanner.team/stops/LVLm10-2", "https://tec.openplanner.team/stops/LVLmabi1"], ["https://tec.openplanner.team/stops/X754afa", "https://tec.openplanner.team/stops/X754ana"], ["https://tec.openplanner.team/stops/Blnzcar2", "https://tec.openplanner.team/stops/N522aha"], ["https://tec.openplanner.team/stops/H2fa100b", "https://tec.openplanner.team/stops/H2fa107b"], ["https://tec.openplanner.team/stops/LHMchev2", "https://tec.openplanner.team/stops/LRmmabr2"], ["https://tec.openplanner.team/stops/H5at104b", "https://tec.openplanner.team/stops/H5at132a"], ["https://tec.openplanner.team/stops/LmOkape1", "https://tec.openplanner.team/stops/LrEkais3"], ["https://tec.openplanner.team/stops/X820aga", "https://tec.openplanner.team/stops/X820agd"], ["https://tec.openplanner.team/stops/LETec--1", "https://tec.openplanner.team/stops/LETfort4"], ["https://tec.openplanner.team/stops/LElgerd4", "https://tec.openplanner.team/stops/LElgerd5"], ["https://tec.openplanner.team/stops/N528aoa", "https://tec.openplanner.team/stops/N538adb"], ["https://tec.openplanner.team/stops/H1br120b", "https://tec.openplanner.team/stops/H1br128a"], ["https://tec.openplanner.team/stops/Bauddel2", "https://tec.openplanner.team/stops/Baudtri2"], ["https://tec.openplanner.team/stops/Lghneuv1", "https://tec.openplanner.team/stops/Lghprea4"], ["https://tec.openplanner.team/stops/X808agb", "https://tec.openplanner.team/stops/X811afb"], ["https://tec.openplanner.team/stops/N352aca", "https://tec.openplanner.team/stops/N352acb"], ["https://tec.openplanner.team/stops/H4ka189a", "https://tec.openplanner.team/stops/H4ka399a"], ["https://tec.openplanner.team/stops/H1po135b", "https://tec.openplanner.team/stops/H1po137b"], ["https://tec.openplanner.team/stops/LHUmess2", "https://tec.openplanner.team/stops/LTicime1"], ["https://tec.openplanner.team/stops/N571aaa", "https://tec.openplanner.team/stops/N571aab"], ["https://tec.openplanner.team/stops/H4wi167b", "https://tec.openplanner.team/stops/H4wi170a"], ["https://tec.openplanner.team/stops/Cmllait2", "https://tec.openplanner.team/stops/Cmlours1"], ["https://tec.openplanner.team/stops/X622ada", "https://tec.openplanner.team/stops/X622adb"], ["https://tec.openplanner.team/stops/H1he103b", "https://tec.openplanner.team/stops/H1mh115a"], ["https://tec.openplanner.team/stops/LLTcoop1", "https://tec.openplanner.team/stops/LLTcoop2"], ["https://tec.openplanner.team/stops/Bottgar2", "https://tec.openplanner.team/stops/Bottgar7"], ["https://tec.openplanner.team/stops/Ljerobi2", "https://tec.openplanner.team/stops/Ljerouy2"], ["https://tec.openplanner.team/stops/H1ba101b", "https://tec.openplanner.team/stops/H1ba106b"], ["https://tec.openplanner.team/stops/H1ca104a", "https://tec.openplanner.team/stops/H1ca104b"], ["https://tec.openplanner.team/stops/X619abc", "https://tec.openplanner.team/stops/X619ama"], ["https://tec.openplanner.team/stops/H2ll186a", "https://tec.openplanner.team/stops/H2sv259b"], ["https://tec.openplanner.team/stops/LCsraws2", "https://tec.openplanner.team/stops/LVLzoni1"], ["https://tec.openplanner.team/stops/LMOeg--2", "https://tec.openplanner.team/stops/LMOford1"], ["https://tec.openplanner.team/stops/X659ama", "https://tec.openplanner.team/stops/X742aba"], ["https://tec.openplanner.team/stops/LElcent1", "https://tec.openplanner.team/stops/LFTneur*"], ["https://tec.openplanner.team/stops/H5is169a", "https://tec.openplanner.team/stops/H5is169b"], ["https://tec.openplanner.team/stops/Cmgcabi1", "https://tec.openplanner.team/stops/Cmggthi1"], ["https://tec.openplanner.team/stops/N501jgb", "https://tec.openplanner.team/stops/N521aca"], ["https://tec.openplanner.team/stops/Bbosdra1", "https://tec.openplanner.team/stops/Bbosgar2"], ["https://tec.openplanner.team/stops/X902aca", "https://tec.openplanner.team/stops/X902anb"], ["https://tec.openplanner.team/stops/X615apb", "https://tec.openplanner.team/stops/X615aqb"], ["https://tec.openplanner.team/stops/Bptrman2", "https://tec.openplanner.team/stops/Bptrmar2"], ["https://tec.openplanner.team/stops/N232bda", "https://tec.openplanner.team/stops/N232bva"], ["https://tec.openplanner.team/stops/X640abb", "https://tec.openplanner.team/stops/X640aia"], ["https://tec.openplanner.team/stops/Bchgqve3", "https://tec.openplanner.team/stops/Bchgqve4"], ["https://tec.openplanner.team/stops/N501fmb", "https://tec.openplanner.team/stops/N501fna"], ["https://tec.openplanner.team/stops/LMubras1", "https://tec.openplanner.team/stops/LMupont2"], ["https://tec.openplanner.team/stops/LFtcarr1", "https://tec.openplanner.team/stops/LRMn58-2"], ["https://tec.openplanner.team/stops/X661amb", "https://tec.openplanner.team/stops/X661apa"], ["https://tec.openplanner.team/stops/Ccychap2", "https://tec.openplanner.team/stops/Ccypn2"], ["https://tec.openplanner.team/stops/N501ezb", "https://tec.openplanner.team/stops/N501lmb"], ["https://tec.openplanner.team/stops/Cmacart1", "https://tec.openplanner.team/stops/Cmareun2"], ["https://tec.openplanner.team/stops/X658aca", "https://tec.openplanner.team/stops/X658afa"], ["https://tec.openplanner.team/stops/H1mv238a", "https://tec.openplanner.team/stops/H1mv242a"], ["https://tec.openplanner.team/stops/Bgoevli2", "https://tec.openplanner.team/stops/Bgoewat2"], ["https://tec.openplanner.team/stops/N528aub", "https://tec.openplanner.team/stops/N528ava"], ["https://tec.openplanner.team/stops/N506boc", "https://tec.openplanner.team/stops/N506bsb"], ["https://tec.openplanner.team/stops/H5rx129b", "https://tec.openplanner.team/stops/H5rx149a"], ["https://tec.openplanner.team/stops/X782apa", "https://tec.openplanner.team/stops/X782apb"], ["https://tec.openplanner.team/stops/Lsn130-1", "https://tec.openplanner.team/stops/Lsnmala1"], ["https://tec.openplanner.team/stops/Bsaucre2", "https://tec.openplanner.team/stops/N541aca"], ["https://tec.openplanner.team/stops/N516anb", "https://tec.openplanner.team/stops/N516apa"], ["https://tec.openplanner.team/stops/X547aaa", "https://tec.openplanner.team/stops/X547acb"], ["https://tec.openplanner.team/stops/N131afb", "https://tec.openplanner.team/stops/N131agb"], ["https://tec.openplanner.team/stops/N232ada", "https://tec.openplanner.team/stops/N261acb"], ["https://tec.openplanner.team/stops/NL68adb", "https://tec.openplanner.team/stops/NL68add"], ["https://tec.openplanner.team/stops/Cgymest2", "https://tec.openplanner.team/stops/Cgyrrep2"], ["https://tec.openplanner.team/stops/Bjanegl4", "https://tec.openplanner.team/stops/NR30aba"], ["https://tec.openplanner.team/stops/X812aja", "https://tec.openplanner.team/stops/X812beb"], ["https://tec.openplanner.team/stops/X316aba", "https://tec.openplanner.team/stops/X316abb"], ["https://tec.openplanner.team/stops/Bpersyn1", "https://tec.openplanner.team/stops/Bpersyn2"], ["https://tec.openplanner.team/stops/X630abb", "https://tec.openplanner.team/stops/X644aea"], ["https://tec.openplanner.team/stops/LkAkirc1", "https://tec.openplanner.team/stops/LkAmess1"], ["https://tec.openplanner.team/stops/Ccacoup2", "https://tec.openplanner.team/stops/Ccaegli2"], ["https://tec.openplanner.team/stops/H1ba112b", "https://tec.openplanner.team/stops/H1ch142b"], ["https://tec.openplanner.team/stops/Lsepaqu1", "https://tec.openplanner.team/stops/Lseserv4"], ["https://tec.openplanner.team/stops/Cbufron1", "https://tec.openplanner.team/stops/Cbuplac4"], ["https://tec.openplanner.team/stops/Llgbaro1", "https://tec.openplanner.team/stops/Llgbaro2"], ["https://tec.openplanner.team/stops/Blindel1", "https://tec.openplanner.team/stops/Blindel2"], ["https://tec.openplanner.team/stops/Cmcceta1", "https://tec.openplanner.team/stops/Cmcwir2"], ["https://tec.openplanner.team/stops/H1je220a", "https://tec.openplanner.team/stops/H1je366b"], ["https://tec.openplanner.team/stops/Cfmtrie2", "https://tec.openplanner.team/stops/Cfobriq1"], ["https://tec.openplanner.team/stops/Bcrbgro1", "https://tec.openplanner.team/stops/Bnil3fo1"], ["https://tec.openplanner.team/stops/N533ala", "https://tec.openplanner.team/stops/N533anb"], ["https://tec.openplanner.team/stops/X939ada", "https://tec.openplanner.team/stops/X940agb"], ["https://tec.openplanner.team/stops/LMfange1", "https://tec.openplanner.team/stops/LMfbuck2"], ["https://tec.openplanner.team/stops/X911ajb", "https://tec.openplanner.team/stops/X911akb"], ["https://tec.openplanner.team/stops/LeUkirc1", "https://tec.openplanner.team/stops/LeUroll1"], ["https://tec.openplanner.team/stops/Bwavgar3", "https://tec.openplanner.team/stops/Bwavtpi2"], ["https://tec.openplanner.team/stops/Bmarcha1", "https://tec.openplanner.team/stops/Bwagcus2"], ["https://tec.openplanner.team/stops/LLNcime2", "https://tec.openplanner.team/stops/LLNeg--2"], ["https://tec.openplanner.team/stops/LMObouh1", "https://tec.openplanner.team/stops/LMObouh2"], ["https://tec.openplanner.team/stops/LbUmalm1", "https://tec.openplanner.team/stops/LbUmalm2"], ["https://tec.openplanner.team/stops/N353aaa", "https://tec.openplanner.team/stops/N353ada"], ["https://tec.openplanner.team/stops/X901aea", "https://tec.openplanner.team/stops/X902aza"], ["https://tec.openplanner.team/stops/LeUcroi1", "https://tec.openplanner.team/stops/LHthest1"], ["https://tec.openplanner.team/stops/LRmkast*", "https://tec.openplanner.team/stops/LRmmabr2"], ["https://tec.openplanner.team/stops/X949afa", "https://tec.openplanner.team/stops/X949ala"], ["https://tec.openplanner.team/stops/H1gi119b", "https://tec.openplanner.team/stops/H1hl122b"], ["https://tec.openplanner.team/stops/Laggare2", "https://tec.openplanner.team/stops/Lagjado6"], ["https://tec.openplanner.team/stops/H4mt216b", "https://tec.openplanner.team/stops/H4mx120b"], ["https://tec.openplanner.team/stops/Brebrog2", "https://tec.openplanner.team/stops/H2pr115b"], ["https://tec.openplanner.team/stops/N127acb", "https://tec.openplanner.team/stops/N127aea"], ["https://tec.openplanner.team/stops/Crolach2", "https://tec.openplanner.team/stops/Cronova2"], ["https://tec.openplanner.team/stops/LESevie1", "https://tec.openplanner.team/stops/LESgare*"], ["https://tec.openplanner.team/stops/N988aba", "https://tec.openplanner.team/stops/N988aca"], ["https://tec.openplanner.team/stops/H4ag102a", "https://tec.openplanner.team/stops/H4ga150a"], ["https://tec.openplanner.team/stops/Lsnecco3", "https://tec.openplanner.team/stops/Lsnferr2"], ["https://tec.openplanner.team/stops/LFreg--1", "https://tec.openplanner.team/stops/LFrvesd2"], ["https://tec.openplanner.team/stops/N211anb", "https://tec.openplanner.team/stops/N211azb"], ["https://tec.openplanner.team/stops/X663ata", "https://tec.openplanner.team/stops/X664amd"], ["https://tec.openplanner.team/stops/Lhrmemo2", "https://tec.openplanner.team/stops/Lmicoop1"], ["https://tec.openplanner.team/stops/Canresi2", "https://tec.openplanner.team/stops/Canterr2"], ["https://tec.openplanner.team/stops/Ccucorb3", "https://tec.openplanner.team/stops/Cgycorv2"], ["https://tec.openplanner.team/stops/X721aca", "https://tec.openplanner.team/stops/X721aib"], ["https://tec.openplanner.team/stops/N544aca", "https://tec.openplanner.team/stops/N544afb"], ["https://tec.openplanner.team/stops/Cdostco1", "https://tec.openplanner.team/stops/Cstbasc2"], ["https://tec.openplanner.team/stops/X903aea", "https://tec.openplanner.team/stops/X903agb"], ["https://tec.openplanner.team/stops/Bhenard4", "https://tec.openplanner.team/stops/Bhensei2"], ["https://tec.openplanner.team/stops/LCPlacr1", "https://tec.openplanner.team/stops/LCPlacr2"], ["https://tec.openplanner.team/stops/N513aua", "https://tec.openplanner.team/stops/N513ava"], ["https://tec.openplanner.team/stops/LBHhuyn2", "https://tec.openplanner.team/stops/LGObeth2"], ["https://tec.openplanner.team/stops/N554afa", "https://tec.openplanner.team/stops/N566aea"], ["https://tec.openplanner.team/stops/H2ll182a", "https://tec.openplanner.team/stops/H2ll196a"], ["https://tec.openplanner.team/stops/Bbonegl1", "https://tec.openplanner.team/stops/Bbonegl2"], ["https://tec.openplanner.team/stops/N158aba", "https://tec.openplanner.team/stops/N168aab"], ["https://tec.openplanner.team/stops/LVlfooz1", "https://tec.openplanner.team/stops/LVlfooz4"], ["https://tec.openplanner.team/stops/Lccawir2", "https://tec.openplanner.team/stops/LENgend1"], ["https://tec.openplanner.team/stops/Cfccabi2", "https://tec.openplanner.team/stops/Cfccol1"], ["https://tec.openplanner.team/stops/Cmbcime4", "https://tec.openplanner.team/stops/Crccano4"], ["https://tec.openplanner.team/stops/LlgOPER1", "https://tec.openplanner.team/stops/LlgOPER6"], ["https://tec.openplanner.team/stops/Bflcneu1", "https://tec.openplanner.team/stops/Bflcpco2"], ["https://tec.openplanner.team/stops/N331aia", "https://tec.openplanner.team/stops/N331ajb"], ["https://tec.openplanner.team/stops/H4bq100b", "https://tec.openplanner.team/stops/H4bq102a"], ["https://tec.openplanner.team/stops/LRteg--*", "https://tec.openplanner.team/stops/NL78afa"], ["https://tec.openplanner.team/stops/LTIgare2", "https://tec.openplanner.team/stops/LTIgare3"], ["https://tec.openplanner.team/stops/LrOn14-1", "https://tec.openplanner.team/stops/LrOwahl1"], ["https://tec.openplanner.team/stops/Cbweco1", "https://tec.openplanner.team/stops/Cbweco2"], ["https://tec.openplanner.team/stops/X696aka", "https://tec.openplanner.team/stops/X696ala"], ["https://tec.openplanner.team/stops/X636bdb", "https://tec.openplanner.team/stops/X636bha"], ["https://tec.openplanner.team/stops/X779afb", "https://tec.openplanner.team/stops/X779aga"], ["https://tec.openplanner.team/stops/H1cv100a", "https://tec.openplanner.team/stops/H1cv102a"], ["https://tec.openplanner.team/stops/X607aab", "https://tec.openplanner.team/stops/X629aab"], ["https://tec.openplanner.team/stops/N548afa", "https://tec.openplanner.team/stops/N548asa"], ["https://tec.openplanner.team/stops/LOMbrou1", "https://tec.openplanner.team/stops/LOMtomb2"], ["https://tec.openplanner.team/stops/NL75aaa", "https://tec.openplanner.team/stops/NL75aca"], ["https://tec.openplanner.team/stops/X801bdb", "https://tec.openplanner.team/stops/X801bea"], ["https://tec.openplanner.team/stops/X754aaa", "https://tec.openplanner.team/stops/X754abb"], ["https://tec.openplanner.team/stops/H1gn147a", "https://tec.openplanner.team/stops/H1gn147b"], ["https://tec.openplanner.team/stops/LPTblan2", "https://tec.openplanner.team/stops/LPTeg--2"], ["https://tec.openplanner.team/stops/LFMstat2", "https://tec.openplanner.team/stops/LFMvoge1"], ["https://tec.openplanner.team/stops/N538aba", "https://tec.openplanner.team/stops/N539aka"], ["https://tec.openplanner.team/stops/X641aga", "https://tec.openplanner.team/stops/X641agb"], ["https://tec.openplanner.team/stops/N349aca", "https://tec.openplanner.team/stops/N349adb"], ["https://tec.openplanner.team/stops/LAx17--1", "https://tec.openplanner.team/stops/LAxbott2"], ["https://tec.openplanner.team/stops/Cfoperz2", "https://tec.openplanner.team/stops/Cfovent1"], ["https://tec.openplanner.team/stops/X756aeb", "https://tec.openplanner.team/stops/X756aec"], ["https://tec.openplanner.team/stops/N217ada", "https://tec.openplanner.team/stops/N261afa"], ["https://tec.openplanner.team/stops/H3th133a", "https://tec.openplanner.team/stops/H3th135d"], ["https://tec.openplanner.team/stops/H1em104a", "https://tec.openplanner.team/stops/H1em106b"], ["https://tec.openplanner.team/stops/N110acb", "https://tec.openplanner.team/stops/N110ada"], ["https://tec.openplanner.team/stops/Bwatcha1", "https://tec.openplanner.team/stops/Bwategp1"], ["https://tec.openplanner.team/stops/H4ta125a", "https://tec.openplanner.team/stops/H4ta133b"], ["https://tec.openplanner.team/stops/N152abb", "https://tec.openplanner.team/stops/N152abd"], ["https://tec.openplanner.team/stops/X718aaa", "https://tec.openplanner.team/stops/X718aab"], ["https://tec.openplanner.team/stops/N352aba", "https://tec.openplanner.team/stops/N352aja"], ["https://tec.openplanner.team/stops/H3so156a", "https://tec.openplanner.team/stops/H3so174b"], ["https://tec.openplanner.team/stops/Cmtchet2", "https://tec.openplanner.team/stops/Cmtyern2"], ["https://tec.openplanner.team/stops/Bspkkhe2", "https://tec.openplanner.team/stops/H1mk110b"], ["https://tec.openplanner.team/stops/X802aba", "https://tec.openplanner.team/stops/X802aca"], ["https://tec.openplanner.team/stops/H4wi162a", "https://tec.openplanner.team/stops/H4wi163a"], ["https://tec.openplanner.team/stops/H1gr115a", "https://tec.openplanner.team/stops/H1gr123b"], ["https://tec.openplanner.team/stops/Lbocomm2", "https://tec.openplanner.team/stops/Lstvill2"], ["https://tec.openplanner.team/stops/X802aib", "https://tec.openplanner.team/stops/X802ajb"], ["https://tec.openplanner.team/stops/H1sa113a", "https://tec.openplanner.team/stops/H1sa115b"], ["https://tec.openplanner.team/stops/N539ala", "https://tec.openplanner.team/stops/N539aob"], ["https://tec.openplanner.team/stops/X642aac", "https://tec.openplanner.team/stops/X643aba"], ["https://tec.openplanner.team/stops/H2sv219a", "https://tec.openplanner.team/stops/H2sv221b"], ["https://tec.openplanner.team/stops/H1bx106b", "https://tec.openplanner.team/stops/H1bx107b"], ["https://tec.openplanner.team/stops/LnNzent2", "https://tec.openplanner.team/stops/LnUneun3"], ["https://tec.openplanner.team/stops/X954aea", "https://tec.openplanner.team/stops/X954aha"], ["https://tec.openplanner.team/stops/LHTlieg1", "https://tec.openplanner.team/stops/LHTlieg2"], ["https://tec.openplanner.team/stops/X782ana", "https://tec.openplanner.team/stops/X784ada"], ["https://tec.openplanner.team/stops/LSGcent1", "https://tec.openplanner.team/stops/LSGeg--4"], ["https://tec.openplanner.team/stops/Cprvsar2", "https://tec.openplanner.team/stops/N554aaa"], ["https://tec.openplanner.team/stops/X813aaa", "https://tec.openplanner.team/stops/X813abb"], ["https://tec.openplanner.team/stops/Lfhnrou2", "https://tec.openplanner.team/stops/Lfhtrxc1"], ["https://tec.openplanner.team/stops/X922amb", "https://tec.openplanner.team/stops/X923akb"], ["https://tec.openplanner.team/stops/H1gh159a", "https://tec.openplanner.team/stops/H1gh167b"], ["https://tec.openplanner.team/stops/Llmbouv1", "https://tec.openplanner.team/stops/Llmbouv2"], ["https://tec.openplanner.team/stops/NB33aja", "https://tec.openplanner.team/stops/NR38afb"], ["https://tec.openplanner.team/stops/LFAsauv2", "https://tec.openplanner.team/stops/LFAtomb1"], ["https://tec.openplanner.team/stops/N351atc", "https://tec.openplanner.team/stops/N390ama"], ["https://tec.openplanner.team/stops/N106aqa", "https://tec.openplanner.team/stops/N106aqb"], ["https://tec.openplanner.team/stops/X601cja", "https://tec.openplanner.team/stops/X626aea"], ["https://tec.openplanner.team/stops/LHAbont2", "https://tec.openplanner.team/stops/LHTlieg1"], ["https://tec.openplanner.team/stops/X717ada", "https://tec.openplanner.team/stops/X783aaa"], ["https://tec.openplanner.team/stops/LhGfrie1", "https://tec.openplanner.team/stops/LkEmax-1"], ["https://tec.openplanner.team/stops/N531ata", "https://tec.openplanner.team/stops/N534bkh"], ["https://tec.openplanner.team/stops/N514ahb", "https://tec.openplanner.team/stops/N514anb"], ["https://tec.openplanner.team/stops/H3so158b", "https://tec.openplanner.team/stops/H3so177b"], ["https://tec.openplanner.team/stops/H2ch102b", "https://tec.openplanner.team/stops/H2ch105d"], ["https://tec.openplanner.team/stops/Ljerose3", "https://tec.openplanner.team/stops/Ljerose4"], ["https://tec.openplanner.team/stops/X901beb", "https://tec.openplanner.team/stops/X901bqb"], ["https://tec.openplanner.team/stops/N351ata", "https://tec.openplanner.team/stops/X351ada"], ["https://tec.openplanner.team/stops/LATfont1", "https://tec.openplanner.team/stops/LATmonu1"], ["https://tec.openplanner.team/stops/LBImili1", "https://tec.openplanner.team/stops/LBIrout1"], ["https://tec.openplanner.team/stops/LVMcent1", "https://tec.openplanner.team/stops/LVMchpl1"], ["https://tec.openplanner.team/stops/Bwavcen1", "https://tec.openplanner.team/stops/Bwavgar1"], ["https://tec.openplanner.team/stops/N135ava", "https://tec.openplanner.team/stops/N135bfb"], ["https://tec.openplanner.team/stops/LFsbasc1", "https://tec.openplanner.team/stops/LFsphar2"], ["https://tec.openplanner.team/stops/H1ju120b", "https://tec.openplanner.team/stops/H1ju120c"], ["https://tec.openplanner.team/stops/X618aba", "https://tec.openplanner.team/stops/X625acb"], ["https://tec.openplanner.team/stops/N539aaa", "https://tec.openplanner.team/stops/N539abb"], ["https://tec.openplanner.team/stops/LPOpass2", "https://tec.openplanner.team/stops/LSdcent2"], ["https://tec.openplanner.team/stops/LHcgare2", "https://tec.openplanner.team/stops/LSWeg--3"], ["https://tec.openplanner.team/stops/Cchoues1", "https://tec.openplanner.team/stops/Cchoues3"], ["https://tec.openplanner.team/stops/Bbiecoc1", "https://tec.openplanner.team/stops/Bbsggot2"], ["https://tec.openplanner.team/stops/X615aja", "https://tec.openplanner.team/stops/X615aka"], ["https://tec.openplanner.team/stops/N501iab", "https://tec.openplanner.team/stops/N501idb"], ["https://tec.openplanner.team/stops/Bgnvgir2", "https://tec.openplanner.team/stops/Blasren2"], ["https://tec.openplanner.team/stops/X597aga", "https://tec.openplanner.team/stops/X597agb"], ["https://tec.openplanner.team/stops/LlgLAMB1", "https://tec.openplanner.team/stops/Llgrege2"], ["https://tec.openplanner.team/stops/LTAairi2", "https://tec.openplanner.team/stops/LTAbran2"], ["https://tec.openplanner.team/stops/LNAbass1", "https://tec.openplanner.team/stops/LNAbass2"], ["https://tec.openplanner.team/stops/X811ala", "https://tec.openplanner.team/stops/X811alb"], ["https://tec.openplanner.team/stops/X911aab", "https://tec.openplanner.team/stops/X911awa"], ["https://tec.openplanner.team/stops/H4co134a", "https://tec.openplanner.team/stops/H4co158b"], ["https://tec.openplanner.team/stops/LlSzoll2", "https://tec.openplanner.team/stops/LrOwahl1"], ["https://tec.openplanner.team/stops/H1ls109b", "https://tec.openplanner.team/stops/H1ls110b"], ["https://tec.openplanner.team/stops/Cnahous1", "https://tec.openplanner.team/stops/Cnaplbu2"], ["https://tec.openplanner.team/stops/Cchba1", "https://tec.openplanner.team/stops/Cchfort1"], ["https://tec.openplanner.team/stops/X804aaa", "https://tec.openplanner.team/stops/X818abb"], ["https://tec.openplanner.team/stops/Cgyobse1", "https://tec.openplanner.team/stops/Cgyplvi2"], ["https://tec.openplanner.team/stops/X908aca", "https://tec.openplanner.team/stops/X908acb"], ["https://tec.openplanner.team/stops/LLMjacq2", "https://tec.openplanner.team/stops/LThbatt2"], ["https://tec.openplanner.team/stops/H4ro155b", "https://tec.openplanner.team/stops/H5pe148b"], ["https://tec.openplanner.team/stops/N106aca", "https://tec.openplanner.team/stops/N137abb"], ["https://tec.openplanner.team/stops/H4er122b", "https://tec.openplanner.team/stops/H4er124b"], ["https://tec.openplanner.team/stops/LMucarr1", "https://tec.openplanner.team/stops/LMupont1"], ["https://tec.openplanner.team/stops/N509aga", "https://tec.openplanner.team/stops/N509agb"], ["https://tec.openplanner.team/stops/X919akd", "https://tec.openplanner.team/stops/X919aoa"], ["https://tec.openplanner.team/stops/Ljetout2", "https://tec.openplanner.team/stops/Ljetout3"], ["https://tec.openplanner.team/stops/H2hg160a", "https://tec.openplanner.team/stops/H2hg160b"], ["https://tec.openplanner.team/stops/LSdencl*", "https://tec.openplanner.team/stops/LVtchai1"], ["https://tec.openplanner.team/stops/X633aja", "https://tec.openplanner.team/stops/X634aaa"], ["https://tec.openplanner.team/stops/H1ml112a", "https://tec.openplanner.team/stops/H1ne140a"], ["https://tec.openplanner.team/stops/LHUcamp1", "https://tec.openplanner.team/stops/LTimalv2"], ["https://tec.openplanner.team/stops/H1do119a", "https://tec.openplanner.team/stops/H1do129a"], ["https://tec.openplanner.team/stops/X601axa", "https://tec.openplanner.team/stops/X601axb"], ["https://tec.openplanner.team/stops/X996ada", "https://tec.openplanner.team/stops/X996adb"], ["https://tec.openplanner.team/stops/Baudstr2", "https://tec.openplanner.team/stops/Bettars2"], ["https://tec.openplanner.team/stops/H5at107a", "https://tec.openplanner.team/stops/H5at134b"], ["https://tec.openplanner.team/stops/Llgatla2", "https://tec.openplanner.team/stops/Llgbaya1"], ["https://tec.openplanner.team/stops/X872ada", "https://tec.openplanner.team/stops/X890aea"], ["https://tec.openplanner.team/stops/H4hu114a", "https://tec.openplanner.team/stops/H4hu114b"], ["https://tec.openplanner.team/stops/X812ala", "https://tec.openplanner.team/stops/X812ama"], ["https://tec.openplanner.team/stops/Csbrago1", "https://tec.openplanner.team/stops/H1ls130a"], ["https://tec.openplanner.team/stops/N501loa", "https://tec.openplanner.team/stops/N501lob"], ["https://tec.openplanner.team/stops/X741ajb", "https://tec.openplanner.team/stops/X741ajc"], ["https://tec.openplanner.team/stops/Bbsicas1", "https://tec.openplanner.team/stops/Bbsicas2"], ["https://tec.openplanner.team/stops/H1bx104b", "https://tec.openplanner.team/stops/H1bx107b"], ["https://tec.openplanner.team/stops/Bbcoben2", "https://tec.openplanner.team/stops/H3br102a"], ["https://tec.openplanner.team/stops/H1ro132a", "https://tec.openplanner.team/stops/H1ro141b"], ["https://tec.openplanner.team/stops/H2sb243b", "https://tec.openplanner.team/stops/H2sb243c"], ["https://tec.openplanner.team/stops/LrUweve1", "https://tec.openplanner.team/stops/LsBzent2"], ["https://tec.openplanner.team/stops/LNEcouc1", "https://tec.openplanner.team/stops/LNEvand2"], ["https://tec.openplanner.team/stops/X723adb", "https://tec.openplanner.team/stops/X723afb"], ["https://tec.openplanner.team/stops/Crodebr1", "https://tec.openplanner.team/stops/Croegli2"], ["https://tec.openplanner.team/stops/H4lu125b", "https://tec.openplanner.team/stops/H4lu126b"], ["https://tec.openplanner.team/stops/Brebcha1", "https://tec.openplanner.team/stops/Brebmtg1"], ["https://tec.openplanner.team/stops/LlA43--1", "https://tec.openplanner.team/stops/LrUgeme1"], ["https://tec.openplanner.team/stops/X796acb", "https://tec.openplanner.team/stops/X796aga"], ["https://tec.openplanner.team/stops/LLrfont2", "https://tec.openplanner.team/stops/LLrmeno2"], ["https://tec.openplanner.team/stops/H2se106a", "https://tec.openplanner.team/stops/H2se115a"], ["https://tec.openplanner.team/stops/X614asb", "https://tec.openplanner.team/stops/X614ata"], ["https://tec.openplanner.team/stops/Bjodath1", "https://tec.openplanner.team/stops/Bjodcad1"], ["https://tec.openplanner.team/stops/LDOeg--1", "https://tec.openplanner.team/stops/LDOjose1"], ["https://tec.openplanner.team/stops/N385aab", "https://tec.openplanner.team/stops/N385aac"], ["https://tec.openplanner.team/stops/Lbrbass1", "https://tec.openplanner.team/stops/Lbrhvl-*"], ["https://tec.openplanner.team/stops/Csobrou2", "https://tec.openplanner.team/stops/Csostoc2"], ["https://tec.openplanner.team/stops/H4be106a", "https://tec.openplanner.team/stops/H4be109a"], ["https://tec.openplanner.team/stops/Cobmven1", "https://tec.openplanner.team/stops/Cpcegli2"], ["https://tec.openplanner.team/stops/H2mg149a", "https://tec.openplanner.team/stops/H2mg149b"], ["https://tec.openplanner.team/stops/H4ef113b", "https://tec.openplanner.team/stops/H4ef113d"], ["https://tec.openplanner.team/stops/N550ala", "https://tec.openplanner.team/stops/N550alb"], ["https://tec.openplanner.team/stops/LbThau11", "https://tec.openplanner.team/stops/LmRh%C3%B6812"], ["https://tec.openplanner.team/stops/H4we134a", "https://tec.openplanner.team/stops/H4we139b"], ["https://tec.openplanner.team/stops/LPbhaut2", "https://tec.openplanner.team/stops/LPbtene2"], ["https://tec.openplanner.team/stops/Bgntcha2", "https://tec.openplanner.team/stops/Bgntpla1"], ["https://tec.openplanner.team/stops/X713acb", "https://tec.openplanner.team/stops/X731aja"], ["https://tec.openplanner.team/stops/N521agb", "https://tec.openplanner.team/stops/N521aic"], ["https://tec.openplanner.team/stops/LrUbahn2", "https://tec.openplanner.team/stops/LrUbrac1"], ["https://tec.openplanner.team/stops/LWNberg1", "https://tec.openplanner.team/stops/LWNcime1"], ["https://tec.openplanner.team/stops/LSebott2", "https://tec.openplanner.team/stops/LSemc--4"], ["https://tec.openplanner.team/stops/H4mo198a", "https://tec.openplanner.team/stops/H4mo205b"], ["https://tec.openplanner.team/stops/N229ana", "https://tec.openplanner.team/stops/N229atb"], ["https://tec.openplanner.team/stops/LBslama2", "https://tec.openplanner.team/stops/LBsoha-2"], ["https://tec.openplanner.team/stops/H1ci102b", "https://tec.openplanner.team/stops/H1hn202b"], ["https://tec.openplanner.team/stops/X371abb", "https://tec.openplanner.team/stops/X371acb"], ["https://tec.openplanner.team/stops/H4mn100a", "https://tec.openplanner.team/stops/H4rx142a"], ["https://tec.openplanner.team/stops/H4ga154a", "https://tec.openplanner.team/stops/H4ha167a"], ["https://tec.openplanner.team/stops/H2ll178d", "https://tec.openplanner.team/stops/H2ll186b"], ["https://tec.openplanner.team/stops/H2pr115a", "https://tec.openplanner.team/stops/H2pr118a"], ["https://tec.openplanner.team/stops/N226ada", "https://tec.openplanner.team/stops/N338afb"], ["https://tec.openplanner.team/stops/LeIpiro3", "https://tec.openplanner.team/stops/LiV19--2"], ["https://tec.openplanner.team/stops/LHdfays1", "https://tec.openplanner.team/stops/LVtvalu1"], ["https://tec.openplanner.team/stops/X879ama", "https://tec.openplanner.team/stops/X879amb"], ["https://tec.openplanner.team/stops/LFTneur*", "https://tec.openplanner.team/stops/LNAbouh2"], ["https://tec.openplanner.team/stops/H5pe128a", "https://tec.openplanner.team/stops/H5pe148a"], ["https://tec.openplanner.team/stops/LSPmari2", "https://tec.openplanner.team/stops/LSPtonn2"], ["https://tec.openplanner.team/stops/H1mj129a", "https://tec.openplanner.team/stops/H1mj132b"], ["https://tec.openplanner.team/stops/Crebrux1", "https://tec.openplanner.team/stops/Creluth1"], ["https://tec.openplanner.team/stops/Bsamc7d1", "https://tec.openplanner.team/stops/Bsamfma2"], ["https://tec.openplanner.team/stops/LOdcris2", "https://tec.openplanner.team/stops/LRUhama2"], ["https://tec.openplanner.team/stops/X804aua", "https://tec.openplanner.team/stops/X804brb"], ["https://tec.openplanner.team/stops/X744aca", "https://tec.openplanner.team/stops/X744acb"], ["https://tec.openplanner.team/stops/Bllngar2", "https://tec.openplanner.team/stops/Bllnpeq1"], ["https://tec.openplanner.team/stops/LRGeg--1", "https://tec.openplanner.team/stops/LRGgrov2"], ["https://tec.openplanner.team/stops/N425abb", "https://tec.openplanner.team/stops/N425aha"], ["https://tec.openplanner.team/stops/LBEchan1", "https://tec.openplanner.team/stops/LBEtroo2"], ["https://tec.openplanner.team/stops/Bcrncor2", "https://tec.openplanner.team/stops/N529abb"], ["https://tec.openplanner.team/stops/Bwavfol1", "https://tec.openplanner.team/stops/Bwavmes2"], ["https://tec.openplanner.team/stops/H4hx115a", "https://tec.openplanner.team/stops/H4hx115b"], ["https://tec.openplanner.team/stops/Bmrspel2", "https://tec.openplanner.team/stops/Bwatvco2"], ["https://tec.openplanner.team/stops/NC14aba", "https://tec.openplanner.team/stops/NC44agb"], ["https://tec.openplanner.team/stops/Cchbrou1", "https://tec.openplanner.team/stops/Cchjaur2"], ["https://tec.openplanner.team/stops/Lglmoul2", "https://tec.openplanner.team/stops/Lmomarr1"], ["https://tec.openplanner.team/stops/N244ada", "https://tec.openplanner.team/stops/N244aea"], ["https://tec.openplanner.team/stops/X640alb", "https://tec.openplanner.team/stops/X640amb"], ["https://tec.openplanner.team/stops/H4ef113a", "https://tec.openplanner.team/stops/H4ef113c"], ["https://tec.openplanner.team/stops/Btstcar2", "https://tec.openplanner.team/stops/Btstcar4"], ["https://tec.openplanner.team/stops/Bjaugaz2", "https://tec.openplanner.team/stops/Bmrl4ch2"], ["https://tec.openplanner.team/stops/LsVprum3", "https://tec.openplanner.team/stops/LwL100-1"], ["https://tec.openplanner.team/stops/H4bo114c", "https://tec.openplanner.team/stops/H4bo119a"], ["https://tec.openplanner.team/stops/N501haa", "https://tec.openplanner.team/stops/N501icz"], ["https://tec.openplanner.team/stops/Cciarfr2", "https://tec.openplanner.team/stops/Ccigene2"], ["https://tec.openplanner.team/stops/N548ada", "https://tec.openplanner.team/stops/N548aka"], ["https://tec.openplanner.team/stops/H5rx137a", "https://tec.openplanner.team/stops/H5rx151a"], ["https://tec.openplanner.team/stops/Cjuecha1", "https://tec.openplanner.team/stops/Cjufrat2"], ["https://tec.openplanner.team/stops/X671aba", "https://tec.openplanner.team/stops/X671aca"], ["https://tec.openplanner.team/stops/X687aia", "https://tec.openplanner.team/stops/X687aja"], ["https://tec.openplanner.team/stops/H1bn148b", "https://tec.openplanner.team/stops/H1qp141b"], ["https://tec.openplanner.team/stops/Bnivall2", "https://tec.openplanner.team/stops/Bnivfhu2"], ["https://tec.openplanner.team/stops/X670aha", "https://tec.openplanner.team/stops/X670aib"], ["https://tec.openplanner.team/stops/Cgrbert2", "https://tec.openplanner.team/stops/NC14aia"], ["https://tec.openplanner.team/stops/X342aab", "https://tec.openplanner.team/stops/X342aca"], ["https://tec.openplanner.team/stops/H4ry130a", "https://tec.openplanner.team/stops/H4ta119a"], ["https://tec.openplanner.team/stops/LXhhaka2", "https://tec.openplanner.team/stops/LXhjupr3"], ["https://tec.openplanner.team/stops/Crgegli1", "https://tec.openplanner.team/stops/Cstdona6"], ["https://tec.openplanner.team/stops/Bovejme2", "https://tec.openplanner.team/stops/Bovelge2"], ["https://tec.openplanner.team/stops/H2be101a", "https://tec.openplanner.team/stops/H2be102a"], ["https://tec.openplanner.team/stops/Blmlvex2", "https://tec.openplanner.team/stops/Brsreco2"], ["https://tec.openplanner.team/stops/X734apa", "https://tec.openplanner.team/stops/X734aqa"], ["https://tec.openplanner.team/stops/N535aea", "https://tec.openplanner.team/stops/N535amb"], ["https://tec.openplanner.team/stops/H1wa155b", "https://tec.openplanner.team/stops/H1wa155d"], ["https://tec.openplanner.team/stops/LlgLAMB5", "https://tec.openplanner.team/stops/LlgLAMB7"], ["https://tec.openplanner.team/stops/X904ana", "https://tec.openplanner.team/stops/X904anb"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/Crcverr2"], ["https://tec.openplanner.team/stops/LETfort1", "https://tec.openplanner.team/stops/LETfort4"], ["https://tec.openplanner.team/stops/LDomoul1", "https://tec.openplanner.team/stops/LListie2"], ["https://tec.openplanner.team/stops/Cmlbeau1", "https://tec.openplanner.team/stops/Cmlthym2"], ["https://tec.openplanner.team/stops/LBTfoot2", "https://tec.openplanner.team/stops/LCxchal2"], ["https://tec.openplanner.team/stops/N528afy", "https://tec.openplanner.team/stops/N528afz"], ["https://tec.openplanner.team/stops/Bjodfco1", "https://tec.openplanner.team/stops/NR21agb"], ["https://tec.openplanner.team/stops/N501fpb", "https://tec.openplanner.team/stops/N501mfa"], ["https://tec.openplanner.team/stops/X601azb", "https://tec.openplanner.team/stops/X601bbd"], ["https://tec.openplanner.team/stops/H4or114a", "https://tec.openplanner.team/stops/H4or116a"], ["https://tec.openplanner.team/stops/Bnivga62", "https://tec.openplanner.team/stops/Bnivrwi2"], ["https://tec.openplanner.team/stops/LeUclou1", "https://tec.openplanner.team/stops/LeUclou2"], ["https://tec.openplanner.team/stops/Bblaece1", "https://tec.openplanner.team/stops/Bwatali1"], ["https://tec.openplanner.team/stops/X664ara", "https://tec.openplanner.team/stops/X664ata"], ["https://tec.openplanner.team/stops/LSNmoul1", "https://tec.openplanner.team/stops/LSNmoul4"], ["https://tec.openplanner.team/stops/N229aua", "https://tec.openplanner.team/stops/N230acb"], ["https://tec.openplanner.team/stops/Cmlavch1", "https://tec.openplanner.team/stops/Cmlbuis3"], ["https://tec.openplanner.team/stops/N501hjc", "https://tec.openplanner.team/stops/N501hlx"], ["https://tec.openplanner.team/stops/H1do116b", "https://tec.openplanner.team/stops/H1do126b"], ["https://tec.openplanner.team/stops/NR38ada", "https://tec.openplanner.team/stops/NR38aea"], ["https://tec.openplanner.team/stops/Cfcecol1", "https://tec.openplanner.team/stops/Cfcpla1"], ["https://tec.openplanner.team/stops/Lbococh2", "https://tec.openplanner.team/stops/Lseblan*"], ["https://tec.openplanner.team/stops/Ljhcarr1", "https://tec.openplanner.team/stops/Ljhheus2"], ["https://tec.openplanner.team/stops/X601bea", "https://tec.openplanner.team/stops/X601bha"], ["https://tec.openplanner.team/stops/Cgoathe1", "https://tec.openplanner.team/stops/Cgocapu2"], ["https://tec.openplanner.team/stops/LRGcana1", "https://tec.openplanner.team/stops/LRGcana2"], ["https://tec.openplanner.team/stops/H4er124b", "https://tec.openplanner.team/stops/H4ty322c"], ["https://tec.openplanner.team/stops/Llmbouv2", "https://tec.openplanner.team/stops/Llmeg--*"], ["https://tec.openplanner.team/stops/LVHbrai2", "https://tec.openplanner.team/stops/LVHtill1"], ["https://tec.openplanner.team/stops/Bhengou2", "https://tec.openplanner.team/stops/Bhenpln2"], ["https://tec.openplanner.team/stops/Bcsebde1", "https://tec.openplanner.team/stops/Bcseeco3"], ["https://tec.openplanner.team/stops/Bblapet1", "https://tec.openplanner.team/stops/Bblasol1"], ["https://tec.openplanner.team/stops/LGEpt--2", "https://tec.openplanner.team/stops/LLYcham1"], ["https://tec.openplanner.team/stops/N501lbd", "https://tec.openplanner.team/stops/N501lca"], ["https://tec.openplanner.team/stops/Bhenard2", "https://tec.openplanner.team/stops/Bhenmal1"], ["https://tec.openplanner.team/stops/N507aad", "https://tec.openplanner.team/stops/N512atb"], ["https://tec.openplanner.team/stops/Lghferr2", "https://tec.openplanner.team/stops/Lghvold2"], ["https://tec.openplanner.team/stops/N501aaz", "https://tec.openplanner.team/stops/N501hba"], ["https://tec.openplanner.team/stops/Lcegeor1", "https://tec.openplanner.team/stops/Lvcreve1"], ["https://tec.openplanner.team/stops/LVlledo1", "https://tec.openplanner.team/stops/LVlledo2"], ["https://tec.openplanner.team/stops/LWEpl--1", "https://tec.openplanner.team/stops/LWEpl--2"], ["https://tec.openplanner.team/stops/X752aba", "https://tec.openplanner.team/stops/X752acb"], ["https://tec.openplanner.team/stops/Cchdelf1", "https://tec.openplanner.team/stops/Cchvil21"], ["https://tec.openplanner.team/stops/Ldifoye1", "https://tec.openplanner.team/stops/Lprmerc*"], ["https://tec.openplanner.team/stops/H3so155a", "https://tec.openplanner.team/stops/H3so155b"], ["https://tec.openplanner.team/stops/H1pd141a", "https://tec.openplanner.team/stops/H1pd143a"], ["https://tec.openplanner.team/stops/N215aaa", "https://tec.openplanner.team/stops/N215aba"], ["https://tec.openplanner.team/stops/X947afa", "https://tec.openplanner.team/stops/X947afb"], ["https://tec.openplanner.team/stops/Llgborn2", "https://tec.openplanner.team/stops/Llgmaus2"], ["https://tec.openplanner.team/stops/N544afa", "https://tec.openplanner.team/stops/N547adb"], ["https://tec.openplanner.team/stops/Bbiefon1", "https://tec.openplanner.team/stops/Bbiesbi1"], ["https://tec.openplanner.team/stops/H1mq198a", "https://tec.openplanner.team/stops/H1mq200b"], ["https://tec.openplanner.team/stops/N501bib", "https://tec.openplanner.team/stops/N501bvb"], ["https://tec.openplanner.team/stops/Cvpbifu2", "https://tec.openplanner.team/stops/Cvpchat1"], ["https://tec.openplanner.team/stops/X624afa", "https://tec.openplanner.team/stops/X624aha"], ["https://tec.openplanner.team/stops/LCUmonu2", "https://tec.openplanner.team/stops/LEntrix2"], ["https://tec.openplanner.team/stops/LSIvieu1", "https://tec.openplanner.team/stops/LSIvieu2"], ["https://tec.openplanner.team/stops/N252acc", "https://tec.openplanner.team/stops/N252acd"], ["https://tec.openplanner.team/stops/LSPbalm1", "https://tec.openplanner.team/stops/LSPpelz2"], ["https://tec.openplanner.team/stops/LELhard2", "https://tec.openplanner.team/stops/LHCbois1"], ["https://tec.openplanner.team/stops/Cchalou2", "https://tec.openplanner.team/stops/Cchmott2"], ["https://tec.openplanner.team/stops/H1ge116b", "https://tec.openplanner.team/stops/H1ge117a"], ["https://tec.openplanner.team/stops/Lceavia1", "https://tec.openplanner.team/stops/Lceprog2"], ["https://tec.openplanner.team/stops/LFPkast2", "https://tec.openplanner.team/stops/LFPkerk1"], ["https://tec.openplanner.team/stops/X664ala", "https://tec.openplanner.team/stops/X664alb"], ["https://tec.openplanner.team/stops/LTIgare1", "https://tec.openplanner.team/stops/LTIpire1"], ["https://tec.openplanner.team/stops/Cmazsnc2", "https://tec.openplanner.team/stops/Cmomoul6"], ["https://tec.openplanner.team/stops/N508afb", "https://tec.openplanner.team/stops/N508ajb"], ["https://tec.openplanner.team/stops/LTywaut1", "https://tec.openplanner.team/stops/LTywyna2"], ["https://tec.openplanner.team/stops/H1ms263a", "https://tec.openplanner.team/stops/H1ms263b"], ["https://tec.openplanner.team/stops/N547aea", "https://tec.openplanner.team/stops/N547aeb"], ["https://tec.openplanner.team/stops/Cfrgare2", "https://tec.openplanner.team/stops/Cfrgare3"], ["https://tec.openplanner.team/stops/LAMpirk1", "https://tec.openplanner.team/stops/LAMpirk2"], ["https://tec.openplanner.team/stops/N509aub", "https://tec.openplanner.team/stops/N511ana"], ["https://tec.openplanner.team/stops/Cjumest1", "https://tec.openplanner.team/stops/Cjuvand2"], ["https://tec.openplanner.team/stops/X636avb", "https://tec.openplanner.team/stops/X636awb"], ["https://tec.openplanner.team/stops/H4ty292a", "https://tec.openplanner.team/stops/H4ty323a"], ["https://tec.openplanner.team/stops/LGreg--1", "https://tec.openplanner.team/stops/LGreg--2"], ["https://tec.openplanner.team/stops/LBgbaga2", "https://tec.openplanner.team/stops/LGDgdou2"], ["https://tec.openplanner.team/stops/Bgemkal2", "https://tec.openplanner.team/stops/N541acb"], ["https://tec.openplanner.team/stops/Cfmcent1", "https://tec.openplanner.team/stops/Cfmwaut2"], ["https://tec.openplanner.team/stops/LAYfoot2", "https://tec.openplanner.team/stops/LFLcarr1"], ["https://tec.openplanner.team/stops/H4wn127a", "https://tec.openplanner.team/stops/H4wn127b"], ["https://tec.openplanner.team/stops/Lpechin1", "https://tec.openplanner.team/stops/Lpecime1"], ["https://tec.openplanner.team/stops/Brebchb2", "https://tec.openplanner.team/stops/H3br107b"], ["https://tec.openplanner.team/stops/X739aea", "https://tec.openplanner.team/stops/X739aia"], ["https://tec.openplanner.team/stops/X784aca", "https://tec.openplanner.team/stops/X784afa"], ["https://tec.openplanner.team/stops/N543aua", "https://tec.openplanner.team/stops/N543bka"], ["https://tec.openplanner.team/stops/Cjumade0", "https://tec.openplanner.team/stops/Cjumade4"], ["https://tec.openplanner.team/stops/X608aoa", "https://tec.openplanner.team/stops/X608ara"], ["https://tec.openplanner.team/stops/Brixcro1", "https://tec.openplanner.team/stops/Brixeur5"], ["https://tec.openplanner.team/stops/LEN101-1", "https://tec.openplanner.team/stops/LENoule2"], ["https://tec.openplanner.team/stops/Lpegiet1", "https://tec.openplanner.team/stops/Lpeptle2"], ["https://tec.openplanner.team/stops/LWastei1", "https://tec.openplanner.team/stops/LWathir1"], ["https://tec.openplanner.team/stops/H5rx131a", "https://tec.openplanner.team/stops/H5rx132a"], ["https://tec.openplanner.team/stops/LLevaux1", "https://tec.openplanner.team/stops/LLevaux2"], ["https://tec.openplanner.team/stops/LLTcent1", "https://tec.openplanner.team/stops/LLTcent2"], ["https://tec.openplanner.team/stops/X837aaa", "https://tec.openplanner.team/stops/X839aea"], ["https://tec.openplanner.team/stops/LWycabi2", "https://tec.openplanner.team/stops/LWycarr2"], ["https://tec.openplanner.team/stops/Bwanorp2", "https://tec.openplanner.team/stops/Bwanwar1"], ["https://tec.openplanner.team/stops/H4ty333a", "https://tec.openplanner.team/stops/H4ty333b"], ["https://tec.openplanner.team/stops/LLNcime1", "https://tec.openplanner.team/stops/LLNeg--1"], ["https://tec.openplanner.team/stops/Bezegar2", "https://tec.openplanner.team/stops/Bezeksj1"], ["https://tec.openplanner.team/stops/N573aaa", "https://tec.openplanner.team/stops/N573aab"], ["https://tec.openplanner.team/stops/Ljumart2", "https://tec.openplanner.team/stops/Ljumesa1"], ["https://tec.openplanner.team/stops/LON02--1", "https://tec.openplanner.team/stops/Lthfagn1"], ["https://tec.openplanner.team/stops/X754ara", "https://tec.openplanner.team/stops/X754asb"], ["https://tec.openplanner.team/stops/H4pq114b", "https://tec.openplanner.team/stops/H4pq117b"], ["https://tec.openplanner.team/stops/LLvgare2", "https://tec.openplanner.team/stops/NL81aea"], ["https://tec.openplanner.team/stops/X899aga", "https://tec.openplanner.team/stops/X899aia"], ["https://tec.openplanner.team/stops/N101ana", "https://tec.openplanner.team/stops/N101aqb"], ["https://tec.openplanner.team/stops/Bjaugar5", "https://tec.openplanner.team/stops/Bjauvch2"], ["https://tec.openplanner.team/stops/Bbxlner2", "https://tec.openplanner.team/stops/Bettgle2"], ["https://tec.openplanner.team/stops/X761ada", "https://tec.openplanner.team/stops/X790aha"], ["https://tec.openplanner.team/stops/Ladpire1", "https://tec.openplanner.team/stops/Ladpire2"], ["https://tec.openplanner.team/stops/N501ioa", "https://tec.openplanner.team/stops/N501ira"], ["https://tec.openplanner.team/stops/LVSpota2", "https://tec.openplanner.team/stops/LVSslin4"], ["https://tec.openplanner.team/stops/Bllnhoc2", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://tec.openplanner.team/stops/LnEfrie1", "https://tec.openplanner.team/stops/LoEbach2"], ["https://tec.openplanner.team/stops/LBUvall2", "https://tec.openplanner.team/stops/NL68abb"], ["https://tec.openplanner.team/stops/Bobacar2", "https://tec.openplanner.team/stops/Bptrmar1"], ["https://tec.openplanner.team/stops/LCRecmo2", "https://tec.openplanner.team/stops/LCRfize2"], ["https://tec.openplanner.team/stops/H1at108a", "https://tec.openplanner.team/stops/H1at109a"], ["https://tec.openplanner.team/stops/H2be100a", "https://tec.openplanner.team/stops/H2ch101b"], ["https://tec.openplanner.team/stops/H1do120a", "https://tec.openplanner.team/stops/H1do120b"], ["https://tec.openplanner.team/stops/Bgemga12", "https://tec.openplanner.team/stops/N522bva"], ["https://tec.openplanner.team/stops/Btubcal1", "https://tec.openplanner.team/stops/Btubsam1"], ["https://tec.openplanner.team/stops/H1bi104b", "https://tec.openplanner.team/stops/H1mm131a"], ["https://tec.openplanner.team/stops/X904aab", "https://tec.openplanner.team/stops/X904abb"], ["https://tec.openplanner.team/stops/Ccogibr2", "https://tec.openplanner.team/stops/Ccopeti2"], ["https://tec.openplanner.team/stops/Cflcoro2", "https://tec.openplanner.team/stops/Cflspir1"], ["https://tec.openplanner.team/stops/Brsga151", "https://tec.openplanner.team/stops/Bwatcoq1"], ["https://tec.openplanner.team/stops/Llgerac1", "https://tec.openplanner.team/stops/Llgfoss2"], ["https://tec.openplanner.team/stops/N211apa", "https://tec.openplanner.team/stops/N211ava"], ["https://tec.openplanner.team/stops/H4wn130b", "https://tec.openplanner.team/stops/H4wn138a"], ["https://tec.openplanner.team/stops/X949ahb", "https://tec.openplanner.team/stops/X949ajb"], ["https://tec.openplanner.team/stops/LHmferm1", "https://tec.openplanner.team/stops/LHmferm2"], ["https://tec.openplanner.team/stops/N206aab", "https://tec.openplanner.team/stops/X206aza"], ["https://tec.openplanner.team/stops/Blonegl1", "https://tec.openplanner.team/stops/Bptbmco2"], ["https://tec.openplanner.team/stops/X658abb", "https://tec.openplanner.team/stops/X658aeb"], ["https://tec.openplanner.team/stops/Llgchau1", "https://tec.openplanner.team/stops/Llgpere2"], ["https://tec.openplanner.team/stops/Cfabnat2", "https://tec.openplanner.team/stops/Cfastan2"], ["https://tec.openplanner.team/stops/N244ama", "https://tec.openplanner.team/stops/N244ana"], ["https://tec.openplanner.team/stops/LAMdelh*", "https://tec.openplanner.team/stops/LAMdelh2"], ["https://tec.openplanner.team/stops/X721anb", "https://tec.openplanner.team/stops/X721arb"], ["https://tec.openplanner.team/stops/N501ika", "https://tec.openplanner.team/stops/N501ikb"], ["https://tec.openplanner.team/stops/H2fa105b", "https://tec.openplanner.team/stops/H2fa108a"], ["https://tec.openplanner.team/stops/LJAdeho4", "https://tec.openplanner.team/stops/LJAhanq2"], ["https://tec.openplanner.team/stops/X669aea", "https://tec.openplanner.team/stops/X672aid"], ["https://tec.openplanner.team/stops/Bcerpco1", "https://tec.openplanner.team/stops/Bottpin2"], ["https://tec.openplanner.team/stops/H1sy145b", "https://tec.openplanner.team/stops/H1sy150b"], ["https://tec.openplanner.team/stops/N139aca", "https://tec.openplanner.team/stops/N140aab"], ["https://tec.openplanner.team/stops/LWepost2", "https://tec.openplanner.team/stops/LWevand2"], ["https://tec.openplanner.team/stops/N543bob", "https://tec.openplanner.team/stops/N543cmb"], ["https://tec.openplanner.team/stops/X605aga", "https://tec.openplanner.team/stops/X605agb"], ["https://tec.openplanner.team/stops/N301ada", "https://tec.openplanner.team/stops/N301aib"], ["https://tec.openplanner.team/stops/Boplcar1", "https://tec.openplanner.team/stops/Boplcar2"], ["https://tec.openplanner.team/stops/Loudela2", "https://tec.openplanner.team/stops/Loutroi1"], ["https://tec.openplanner.team/stops/Lvegc--3", "https://tec.openplanner.team/stops/Lvevict1"], ["https://tec.openplanner.team/stops/LWibare2", "https://tec.openplanner.team/stops/LWipaif4"], ["https://tec.openplanner.team/stops/Crccano1", "https://tec.openplanner.team/stops/Crccano2"], ["https://tec.openplanner.team/stops/H4av107b", "https://tec.openplanner.team/stops/H4ss156a"], ["https://tec.openplanner.team/stops/Bolgcsa1", "https://tec.openplanner.team/stops/Bolphgr2"], ["https://tec.openplanner.team/stops/X790aca", "https://tec.openplanner.team/stops/X790acb"], ["https://tec.openplanner.team/stops/N106aka", "https://tec.openplanner.team/stops/N106akb"], ["https://tec.openplanner.team/stops/H4ga154b", "https://tec.openplanner.team/stops/H4ha167a"], ["https://tec.openplanner.team/stops/H1cu120a", "https://tec.openplanner.team/stops/H1je360a"], ["https://tec.openplanner.team/stops/H4mo138b", "https://tec.openplanner.team/stops/H4mo158b"], ["https://tec.openplanner.team/stops/X662afa", "https://tec.openplanner.team/stops/X662agb"], ["https://tec.openplanner.team/stops/LoUpete2", "https://tec.openplanner.team/stops/LsCback2"], ["https://tec.openplanner.team/stops/H1lm107a", "https://tec.openplanner.team/stops/H1to152a"], ["https://tec.openplanner.team/stops/X641abb", "https://tec.openplanner.team/stops/X641aca"], ["https://tec.openplanner.team/stops/X823afd", "https://tec.openplanner.team/stops/X823agb"], ["https://tec.openplanner.team/stops/Lrcauto1", "https://tec.openplanner.team/stops/Lrcrars1"], ["https://tec.openplanner.team/stops/LRmkerk2", "https://tec.openplanner.team/stops/LTEkl122"], ["https://tec.openplanner.team/stops/H4do102a", "https://tec.openplanner.team/stops/H4ev119a"], ["https://tec.openplanner.team/stops/LtHfrie1", "https://tec.openplanner.team/stops/LtHkirc3"], ["https://tec.openplanner.team/stops/H1bn113a", "https://tec.openplanner.team/stops/H1qy133b"], ["https://tec.openplanner.team/stops/LSogite1", "https://tec.openplanner.team/stops/LSogite2"], ["https://tec.openplanner.team/stops/H1ho128a", "https://tec.openplanner.team/stops/H1wa164b"], ["https://tec.openplanner.team/stops/N121aab", "https://tec.openplanner.team/stops/N158aaa"], ["https://tec.openplanner.team/stops/Lra4bra1", "https://tec.openplanner.team/stops/Lrapays1"], ["https://tec.openplanner.team/stops/LVu40--1", "https://tec.openplanner.team/stops/LVukabi1"], ["https://tec.openplanner.team/stops/LAUneuv4", "https://tec.openplanner.team/stops/LAUneuv6"], ["https://tec.openplanner.team/stops/Cslegli1", "https://tec.openplanner.team/stops/Cvtvail2"], ["https://tec.openplanner.team/stops/CMparc2", "https://tec.openplanner.team/stops/Cmtrneu1"], ["https://tec.openplanner.team/stops/Lhurigu1", "https://tec.openplanner.team/stops/Lhurigu2"], ["https://tec.openplanner.team/stops/N223aab", "https://tec.openplanner.team/stops/N223abb"], ["https://tec.openplanner.team/stops/H1ms288a", "https://tec.openplanner.team/stops/H1ms313a"], ["https://tec.openplanner.team/stops/X758adb", "https://tec.openplanner.team/stops/X758aea"], ["https://tec.openplanner.team/stops/LLOchpl1", "https://tec.openplanner.team/stops/LLOchpl2"], ["https://tec.openplanner.team/stops/N135aoa", "https://tec.openplanner.team/stops/N135aob"], ["https://tec.openplanner.team/stops/N508aab", "https://tec.openplanner.team/stops/N508afa"], ["https://tec.openplanner.team/stops/H1hl124b", "https://tec.openplanner.team/stops/H1hl126a"], ["https://tec.openplanner.team/stops/Ldipl--3", "https://tec.openplanner.team/stops/Ldipl--4"], ["https://tec.openplanner.team/stops/Cmtfabi2", "https://tec.openplanner.team/stops/Cmtstth2"], ["https://tec.openplanner.team/stops/LmHflor1", "https://tec.openplanner.team/stops/LmHflor2"], ["https://tec.openplanner.team/stops/NH01arb", "https://tec.openplanner.team/stops/NH01asa"], ["https://tec.openplanner.team/stops/Llgcham7", "https://tec.openplanner.team/stops/Llghars7"], ["https://tec.openplanner.team/stops/Lkinyst1", "https://tec.openplanner.team/stops/Lscatme1"], ["https://tec.openplanner.team/stops/X650aaa", "https://tec.openplanner.team/stops/X650aob"], ["https://tec.openplanner.team/stops/LOucarr4", "https://tec.openplanner.team/stops/LOumaro1"], ["https://tec.openplanner.team/stops/LSGec--2", "https://tec.openplanner.team/stops/LSGsolo2"], ["https://tec.openplanner.team/stops/X650ana", "https://tec.openplanner.team/stops/X652aab"], ["https://tec.openplanner.team/stops/Ccumasu1", "https://tec.openplanner.team/stops/Ccupdes3"], ["https://tec.openplanner.team/stops/Lbemc--2", "https://tec.openplanner.team/stops/Ljuvieu1"], ["https://tec.openplanner.team/stops/H1ms264a", "https://tec.openplanner.team/stops/H1ms269a"], ["https://tec.openplanner.team/stops/H1ms254b", "https://tec.openplanner.team/stops/H1ms266b"], ["https://tec.openplanner.team/stops/N111aba", "https://tec.openplanner.team/stops/N127bha"], ["https://tec.openplanner.team/stops/Btubmar1", "https://tec.openplanner.team/stops/Btubstq1"], ["https://tec.openplanner.team/stops/H4mo136a", "https://tec.openplanner.team/stops/H4mo184b"], ["https://tec.openplanner.team/stops/H1bb119a", "https://tec.openplanner.team/stops/H1bb120b"], ["https://tec.openplanner.team/stops/Bhenard3", "https://tec.openplanner.team/stops/Bhengri1"], ["https://tec.openplanner.team/stops/H1he110a", "https://tec.openplanner.team/stops/H1he110b"], ["https://tec.openplanner.team/stops/N581aba", "https://tec.openplanner.team/stops/N581abb"], ["https://tec.openplanner.team/stops/N521ala", "https://tec.openplanner.team/stops/N525alb"], ["https://tec.openplanner.team/stops/H3go100b", "https://tec.openplanner.team/stops/H3go103a"], ["https://tec.openplanner.team/stops/LMsec--1", "https://tec.openplanner.team/stops/LMsvill1"], ["https://tec.openplanner.team/stops/Caiegli1", "https://tec.openplanner.team/stops/Caioign3"], ["https://tec.openplanner.team/stops/Cprrvil2", "https://tec.openplanner.team/stops/NC11aob"], ["https://tec.openplanner.team/stops/LeIdeid1", "https://tec.openplanner.team/stops/LiVgirk2"], ["https://tec.openplanner.team/stops/LPRfour2", "https://tec.openplanner.team/stops/LTRchpl2"], ["https://tec.openplanner.team/stops/N201aga", "https://tec.openplanner.team/stops/N202acb"], ["https://tec.openplanner.team/stops/X802apb", "https://tec.openplanner.team/stops/X802aqa"], ["https://tec.openplanner.team/stops/Cthvbas2", "https://tec.openplanner.team/stops/Cthvbas3"], ["https://tec.openplanner.team/stops/H4es113a", "https://tec.openplanner.team/stops/H4ev125b"], ["https://tec.openplanner.team/stops/H1on129a", "https://tec.openplanner.team/stops/H1on129b"], ["https://tec.openplanner.team/stops/Csabrun1", "https://tec.openplanner.team/stops/Csabrun2"], ["https://tec.openplanner.team/stops/X619aab", "https://tec.openplanner.team/stops/X619adb"], ["https://tec.openplanner.team/stops/Cfccuch1", "https://tec.openplanner.team/stops/Cvrfema1"], ["https://tec.openplanner.team/stops/Bsgeegl2", "https://tec.openplanner.team/stops/Bsgeqpb2"], ["https://tec.openplanner.team/stops/LESpont1", "https://tec.openplanner.team/stops/LESpont3"], ["https://tec.openplanner.team/stops/NH21aga", "https://tec.openplanner.team/stops/NH21agb"], ["https://tec.openplanner.team/stops/Llgblon1", "https://tec.openplanner.team/stops/Llgcont1"], ["https://tec.openplanner.team/stops/LsHfrie1", "https://tec.openplanner.team/stops/LsHkirc1"], ["https://tec.openplanner.team/stops/N136ada", "https://tec.openplanner.team/stops/N143aaa"], ["https://tec.openplanner.team/stops/H2ha129d", "https://tec.openplanner.team/stops/H2ha141b"], ["https://tec.openplanner.team/stops/Lsebuis2", "https://tec.openplanner.team/stops/Lseruis2"], ["https://tec.openplanner.team/stops/X359aga", "https://tec.openplanner.team/stops/X359aja"], ["https://tec.openplanner.team/stops/H4oe147a", "https://tec.openplanner.team/stops/H4oe149a"], ["https://tec.openplanner.team/stops/Cvlbvir1", "https://tec.openplanner.team/stops/Cvlgrta1"], ["https://tec.openplanner.team/stops/Bborcro2", "https://tec.openplanner.team/stops/Bitrpar2"], ["https://tec.openplanner.team/stops/Llghugo1", "https://tec.openplanner.team/stops/Llghugo2"], ["https://tec.openplanner.team/stops/Bbosdra2", "https://tec.openplanner.team/stops/Bbosgar2"], ["https://tec.openplanner.team/stops/LrDsage2", "https://tec.openplanner.team/stops/LrDzoll3"], ["https://tec.openplanner.team/stops/H1hr118c", "https://tec.openplanner.team/stops/H1hr118d"], ["https://tec.openplanner.team/stops/H1by100c", "https://tec.openplanner.team/stops/H1by104a"], ["https://tec.openplanner.team/stops/H1cv104b", "https://tec.openplanner.team/stops/H1ml112b"], ["https://tec.openplanner.team/stops/H1gh158a", "https://tec.openplanner.team/stops/H1gh158b"], ["https://tec.openplanner.team/stops/N118aqa", "https://tec.openplanner.team/stops/N118aqb"], ["https://tec.openplanner.team/stops/H5bs102c", "https://tec.openplanner.team/stops/H5bs102d"], ["https://tec.openplanner.team/stops/Bvirflu1", "https://tec.openplanner.team/stops/Bvirvol1"], ["https://tec.openplanner.team/stops/H2an102b", "https://tec.openplanner.team/stops/H2an103a"], ["https://tec.openplanner.team/stops/N141aeb", "https://tec.openplanner.team/stops/N141apb"], ["https://tec.openplanner.team/stops/LBEmich1", "https://tec.openplanner.team/stops/LBEmich2"], ["https://tec.openplanner.team/stops/Bblacar1", "https://tec.openplanner.team/stops/Bblacar2"], ["https://tec.openplanner.team/stops/Lroeg--1", "https://tec.openplanner.team/stops/Lroeg--2"], ["https://tec.openplanner.team/stops/N143aab", "https://tec.openplanner.team/stops/N143acb"], ["https://tec.openplanner.team/stops/Lhrjaur2", "https://tec.openplanner.team/stops/Lhrlaix1"], ["https://tec.openplanner.team/stops/Bblamer1", "https://tec.openplanner.team/stops/Bblasta1"], ["https://tec.openplanner.team/stops/LAYnias2", "https://tec.openplanner.team/stops/LAYwerb1"], ["https://tec.openplanner.team/stops/X601bbe", "https://tec.openplanner.team/stops/X601bqa"], ["https://tec.openplanner.team/stops/Cfabnat1", "https://tec.openplanner.team/stops/Cfanvmo1"], ["https://tec.openplanner.team/stops/Bjodcsb2", "https://tec.openplanner.team/stops/Bjodmal1"], ["https://tec.openplanner.team/stops/LOrpont2", "https://tec.openplanner.team/stops/LTyhall1"], ["https://tec.openplanner.team/stops/LCFcarr2", "https://tec.openplanner.team/stops/LHarenn3"], ["https://tec.openplanner.team/stops/H2go117b", "https://tec.openplanner.team/stops/H2se115a"], ["https://tec.openplanner.team/stops/Llgbene1", "https://tec.openplanner.team/stops/Llgcroi4"], ["https://tec.openplanner.team/stops/X770adb", "https://tec.openplanner.team/stops/X770aea"], ["https://tec.openplanner.team/stops/X811aia", "https://tec.openplanner.team/stops/X811aib"], ["https://tec.openplanner.team/stops/LLWmonu1", "https://tec.openplanner.team/stops/LLWmonu2"], ["https://tec.openplanner.team/stops/LMHeg--1", "https://tec.openplanner.team/stops/LMHplac1"], ["https://tec.openplanner.team/stops/Cmastfi2", "https://tec.openplanner.team/stops/Cmocalv1"], ["https://tec.openplanner.team/stops/H1gy113a", "https://tec.openplanner.team/stops/H1og133a"], ["https://tec.openplanner.team/stops/X904ada", "https://tec.openplanner.team/stops/X992aga"], ["https://tec.openplanner.team/stops/H1em108a", "https://tec.openplanner.team/stops/H1em111b"], ["https://tec.openplanner.team/stops/Bgemga08", "https://tec.openplanner.team/stops/N522bvg"], ["https://tec.openplanner.team/stops/N577aha", "https://tec.openplanner.team/stops/N577ahb"], ["https://tec.openplanner.team/stops/LwYneue1", "https://tec.openplanner.team/stops/LwYneue2"], ["https://tec.openplanner.team/stops/Lvearle2", "https://tec.openplanner.team/stops/Lvewaut1"], ["https://tec.openplanner.team/stops/N385aeb", "https://tec.openplanner.team/stops/N385aec"], ["https://tec.openplanner.team/stops/N387aca", "https://tec.openplanner.team/stops/N387acc"], ["https://tec.openplanner.team/stops/LRRandr2", "https://tec.openplanner.team/stops/LRRrimi2"], ["https://tec.openplanner.team/stops/H4ty318a", "https://tec.openplanner.team/stops/H4ty324a"], ["https://tec.openplanner.team/stops/LrDrose4", "https://tec.openplanner.team/stops/LrDzoll4"], ["https://tec.openplanner.team/stops/Bndbdra2", "https://tec.openplanner.team/stops/Bndbpco2"], ["https://tec.openplanner.team/stops/LPTeg--2", "https://tec.openplanner.team/stops/X794aaa"], ["https://tec.openplanner.team/stops/H2pe154a", "https://tec.openplanner.team/stops/H3bi100a"], ["https://tec.openplanner.team/stops/N519ajb", "https://tec.openplanner.team/stops/N519akb"], ["https://tec.openplanner.team/stops/X602ama", "https://tec.openplanner.team/stops/X602apb"], ["https://tec.openplanner.team/stops/X994aea", "https://tec.openplanner.team/stops/X994afa"], ["https://tec.openplanner.team/stops/Cfrmoul1", "https://tec.openplanner.team/stops/Cfrtill1"], ["https://tec.openplanner.team/stops/X837aca", "https://tec.openplanner.team/stops/X837ada"], ["https://tec.openplanner.team/stops/N501bdb", "https://tec.openplanner.team/stops/N501mla"], ["https://tec.openplanner.team/stops/Cwflouv4", "https://tec.openplanner.team/stops/Cwfzola1"], ["https://tec.openplanner.team/stops/Lbrfagn1", "https://tec.openplanner.team/stops/Ljulieg1"], ["https://tec.openplanner.team/stops/H3so185b", "https://tec.openplanner.team/stops/H3so187b"], ["https://tec.openplanner.team/stops/Canh1941", "https://tec.openplanner.team/stops/Canpeup1"], ["https://tec.openplanner.team/stops/LFMrijk1", "https://tec.openplanner.team/stops/LFMvoge*"], ["https://tec.openplanner.team/stops/H1bn114b", "https://tec.openplanner.team/stops/H1ge179a"], ["https://tec.openplanner.team/stops/LMYchpl1", "https://tec.openplanner.team/stops/X796agb"], ["https://tec.openplanner.team/stops/LMfpeni*", "https://tec.openplanner.team/stops/NL57ala"], ["https://tec.openplanner.team/stops/LnIfrie2", "https://tec.openplanner.team/stops/LnIschw2"], ["https://tec.openplanner.team/stops/X801aha", "https://tec.openplanner.team/stops/X801ahb"], ["https://tec.openplanner.team/stops/X624ama", "https://tec.openplanner.team/stops/X624amb"], ["https://tec.openplanner.team/stops/X715aga", "https://tec.openplanner.team/stops/X715agb"], ["https://tec.openplanner.team/stops/LWOcomm2", "https://tec.openplanner.team/stops/LWOmart1"], ["https://tec.openplanner.team/stops/Cgycvie1", "https://tec.openplanner.team/stops/Cgyrrep1"], ["https://tec.openplanner.team/stops/Bmrqpla1", "https://tec.openplanner.team/stops/H1mk108d"], ["https://tec.openplanner.team/stops/X609aia", "https://tec.openplanner.team/stops/X609alb"], ["https://tec.openplanner.team/stops/H1em109b", "https://tec.openplanner.team/stops/H1ev115a"], ["https://tec.openplanner.team/stops/N532aja", "https://tec.openplanner.team/stops/N532ajb"], ["https://tec.openplanner.team/stops/H2tr252b", "https://tec.openplanner.team/stops/H2tr257b"], ["https://tec.openplanner.team/stops/Brebras1", "https://tec.openplanner.team/stops/Brebvic2"], ["https://tec.openplanner.team/stops/H1hg179a", "https://tec.openplanner.team/stops/H1hg181b"], ["https://tec.openplanner.team/stops/LlNhube2", "https://tec.openplanner.team/stops/LlNschu2"], ["https://tec.openplanner.team/stops/Llgmont2", "https://tec.openplanner.team/stops/Llgrain2"], ["https://tec.openplanner.team/stops/H4ba102b", "https://tec.openplanner.team/stops/H4ml206b"], ["https://tec.openplanner.team/stops/Bclgvmo2", "https://tec.openplanner.team/stops/Bcrbast2"], ["https://tec.openplanner.team/stops/Canmonu3", "https://tec.openplanner.team/stops/Canrsta2"], ["https://tec.openplanner.team/stops/Lsmrcim1", "https://tec.openplanner.team/stops/Lsmrcim2"], ["https://tec.openplanner.team/stops/H3so177a", "https://tec.openplanner.team/stops/H3so178a"], ["https://tec.openplanner.team/stops/H4ru238a", "https://tec.openplanner.team/stops/H4ty311a"], ["https://tec.openplanner.team/stops/H4os221a", "https://tec.openplanner.team/stops/H5wo132a"], ["https://tec.openplanner.team/stops/LAweg--2", "https://tec.openplanner.team/stops/LHrrard1"], ["https://tec.openplanner.team/stops/NL80aaa", "https://tec.openplanner.team/stops/NL80aab"], ["https://tec.openplanner.team/stops/N149aba", "https://tec.openplanner.team/stops/N149aca"], ["https://tec.openplanner.team/stops/H2be100a", "https://tec.openplanner.team/stops/H2mg152a"], ["https://tec.openplanner.team/stops/LPAbour2", "https://tec.openplanner.team/stops/LPAmosa2"], ["https://tec.openplanner.team/stops/Llgbert2", "https://tec.openplanner.team/stops/Llgbida1"], ["https://tec.openplanner.team/stops/Cfamonu8", "https://tec.openplanner.team/stops/Cpl4bra3"], ["https://tec.openplanner.team/stops/Cctfaub1", "https://tec.openplanner.team/stops/Cctrjus2"], ["https://tec.openplanner.team/stops/LHUfont1", "https://tec.openplanner.team/stops/NL80abb"], ["https://tec.openplanner.team/stops/Cbcegli1", "https://tec.openplanner.team/stops/Cbcha652"], ["https://tec.openplanner.team/stops/H4hx115b", "https://tec.openplanner.team/stops/H4wa150a"], ["https://tec.openplanner.team/stops/LoUhein2", "https://tec.openplanner.team/stops/LoUwelc2"], ["https://tec.openplanner.team/stops/LDapota1", "https://tec.openplanner.team/stops/LOMeg--2"], ["https://tec.openplanner.team/stops/X793aeb", "https://tec.openplanner.team/stops/X793aqa"], ["https://tec.openplanner.team/stops/X608aha", "https://tec.openplanner.team/stops/X621aea"], ["https://tec.openplanner.team/stops/Cmtdepo1", "https://tec.openplanner.team/stops/Cmtneuv2"], ["https://tec.openplanner.team/stops/X342afb", "https://tec.openplanner.team/stops/X363acb"], ["https://tec.openplanner.team/stops/N351aja", "https://tec.openplanner.team/stops/N351amb"], ["https://tec.openplanner.team/stops/Lropass1", "https://tec.openplanner.team/stops/Lrosoxh2"], ["https://tec.openplanner.team/stops/LGrfont2", "https://tec.openplanner.team/stops/LLGec--*"], ["https://tec.openplanner.team/stops/H2pe161a", "https://tec.openplanner.team/stops/H2tr251a"], ["https://tec.openplanner.team/stops/X750ayb", "https://tec.openplanner.team/stops/X750azb"], ["https://tec.openplanner.team/stops/N557aaa", "https://tec.openplanner.team/stops/N557aac"], ["https://tec.openplanner.team/stops/Bdlmflo2", "https://tec.openplanner.team/stops/Bwavbva2"], ["https://tec.openplanner.team/stops/LBRgend1", "https://tec.openplanner.team/stops/LBRtrag1"], ["https://tec.openplanner.team/stops/Blsmcha3", "https://tec.openplanner.team/stops/Blsmcha4"], ["https://tec.openplanner.team/stops/LaAzwei1", "https://tec.openplanner.team/stops/LhGscha*"], ["https://tec.openplanner.team/stops/LTRfend2", "https://tec.openplanner.team/stops/LTRmosb2"], ["https://tec.openplanner.team/stops/X725aka", "https://tec.openplanner.team/stops/X725ara"], ["https://tec.openplanner.team/stops/X317aab", "https://tec.openplanner.team/stops/X317aba"], ["https://tec.openplanner.team/stops/LBIbois1", "https://tec.openplanner.team/stops/LBIpont1"], ["https://tec.openplanner.team/stops/LHUetie*", "https://tec.openplanner.team/stops/LHUfont2"], ["https://tec.openplanner.team/stops/LHHgare2", "https://tec.openplanner.team/stops/LHHindu1"], ["https://tec.openplanner.team/stops/Ljeegli6", "https://tec.openplanner.team/stops/Ljelamb2"], ["https://tec.openplanner.team/stops/LLUtrol1", "https://tec.openplanner.team/stops/LLUtrol2"], ["https://tec.openplanner.team/stops/H4fo117a", "https://tec.openplanner.team/stops/H4fo117d"], ["https://tec.openplanner.team/stops/H4au143a", "https://tec.openplanner.team/stops/H4mb203a"], ["https://tec.openplanner.team/stops/LAUbour2", "https://tec.openplanner.team/stops/LAUcose2"], ["https://tec.openplanner.team/stops/LClange2", "https://tec.openplanner.team/stops/LCljose2"], ["https://tec.openplanner.team/stops/Ctrecol2", "https://tec.openplanner.team/stops/Ctrleju1"], ["https://tec.openplanner.team/stops/Broscha2", "https://tec.openplanner.team/stops/Cgpmoul2"], ["https://tec.openplanner.team/stops/X670adb", "https://tec.openplanner.team/stops/X670aka"], ["https://tec.openplanner.team/stops/LVnourt4", "https://tec.openplanner.team/stops/LVnrock1"], ["https://tec.openplanner.team/stops/N201aqb", "https://tec.openplanner.team/stops/N201arb"], ["https://tec.openplanner.team/stops/N127baa", "https://tec.openplanner.team/stops/N134afb"], ["https://tec.openplanner.team/stops/X359aga", "https://tec.openplanner.team/stops/X359amb"], ["https://tec.openplanner.team/stops/LJAcent1", "https://tec.openplanner.team/stops/LJAcime2"], ["https://tec.openplanner.team/stops/N305aaa", "https://tec.openplanner.team/stops/N305aab"], ["https://tec.openplanner.team/stops/Cclchap2", "https://tec.openplanner.team/stops/Cclrgiv1"], ["https://tec.openplanner.team/stops/H5qu140a", "https://tec.openplanner.team/stops/H5qu146a"], ["https://tec.openplanner.team/stops/H1hv131a", "https://tec.openplanner.team/stops/H1hv135a"], ["https://tec.openplanner.team/stops/N513axb", "https://tec.openplanner.team/stops/N520aha"], ["https://tec.openplanner.team/stops/N548ama", "https://tec.openplanner.team/stops/N548amb"], ["https://tec.openplanner.team/stops/N313ada", "https://tec.openplanner.team/stops/N313adb"], ["https://tec.openplanner.team/stops/LXocomb1", "https://tec.openplanner.team/stops/LXopier1"], ["https://tec.openplanner.team/stops/X818ara", "https://tec.openplanner.team/stops/X818awb"], ["https://tec.openplanner.team/stops/H1el140b", "https://tec.openplanner.team/stops/H1el140c"], ["https://tec.openplanner.team/stops/LVtchai2", "https://tec.openplanner.team/stops/LVtespo1"], ["https://tec.openplanner.team/stops/N127aeb", "https://tec.openplanner.team/stops/N139aca"], ["https://tec.openplanner.team/stops/Bernpon2", "https://tec.openplanner.team/stops/Bgemrom3"], ["https://tec.openplanner.team/stops/N501esz", "https://tec.openplanner.team/stops/X501esb"], ["https://tec.openplanner.team/stops/Bovehst2", "https://tec.openplanner.team/stops/Bovevnd1"], ["https://tec.openplanner.team/stops/Lveoctr3", "https://tec.openplanner.team/stops/Lverdep1"], ["https://tec.openplanner.team/stops/N501jda", "https://tec.openplanner.team/stops/N501jdb"], ["https://tec.openplanner.team/stops/Lfhcoop1", "https://tec.openplanner.team/stops/Lfhcoop2"], ["https://tec.openplanner.team/stops/LCEboll2", "https://tec.openplanner.team/stops/LCEinst2"], ["https://tec.openplanner.team/stops/LFRsp1-1", "https://tec.openplanner.team/stops/LSZpiro1"], ["https://tec.openplanner.team/stops/X757adb", "https://tec.openplanner.team/stops/X757aeb"], ["https://tec.openplanner.team/stops/N543acb", "https://tec.openplanner.team/stops/N543bdb"], ["https://tec.openplanner.team/stops/N232aya", "https://tec.openplanner.team/stops/N232ayb"], ["https://tec.openplanner.team/stops/N501bha", "https://tec.openplanner.team/stops/N501bib"], ["https://tec.openplanner.team/stops/Brsga151", "https://tec.openplanner.team/stops/Brsga811"], ["https://tec.openplanner.team/stops/LFebas-1", "https://tec.openplanner.team/stops/LFebas-2"], ["https://tec.openplanner.team/stops/Llgdart5", "https://tec.openplanner.team/stops/LlgguilB"], ["https://tec.openplanner.team/stops/X801bfa", "https://tec.openplanner.team/stops/X801bia"], ["https://tec.openplanner.team/stops/Bgntcbo1", "https://tec.openplanner.team/stops/Bgntcbo2"], ["https://tec.openplanner.team/stops/X608asa", "https://tec.openplanner.team/stops/X621aeb"], ["https://tec.openplanner.team/stops/LNEgaul1", "https://tec.openplanner.team/stops/LNEgaul4"], ["https://tec.openplanner.team/stops/Bwategp1", "https://tec.openplanner.team/stops/Bwatlbs2"], ["https://tec.openplanner.team/stops/Lcelhon2", "https://tec.openplanner.team/stops/Lcelhon3"], ["https://tec.openplanner.team/stops/H1hr120b", "https://tec.openplanner.team/stops/H1hr121b"], ["https://tec.openplanner.team/stops/LSsmond2", "https://tec.openplanner.team/stops/N506bsa"], ["https://tec.openplanner.team/stops/Cmqegl1", "https://tec.openplanner.team/stops/Cmqegl2"], ["https://tec.openplanner.team/stops/LDOastr1", "https://tec.openplanner.team/stops/LDOprev2"], ["https://tec.openplanner.team/stops/X986ajb", "https://tec.openplanner.team/stops/X986ala"], ["https://tec.openplanner.team/stops/Bperalv1", "https://tec.openplanner.team/stops/Bpergar3"], ["https://tec.openplanner.team/stops/LORruis1", "https://tec.openplanner.team/stops/LORvill1"], ["https://tec.openplanner.team/stops/LATguis2", "https://tec.openplanner.team/stops/LVLchem2"], ["https://tec.openplanner.team/stops/LOV62--1", "https://tec.openplanner.team/stops/LROrtba1"], ["https://tec.openplanner.team/stops/H4eg108a", "https://tec.openplanner.team/stops/H4sl154b"], ["https://tec.openplanner.team/stops/Bnilhau2", "https://tec.openplanner.team/stops/Bnilreg2"], ["https://tec.openplanner.team/stops/LSNfays1", "https://tec.openplanner.team/stops/LSNness2"], ["https://tec.openplanner.team/stops/Llgboux1", "https://tec.openplanner.team/stops/Lvtboux2"], ["https://tec.openplanner.team/stops/LOMcabi1", "https://tec.openplanner.team/stops/LOMeg--1"], ["https://tec.openplanner.team/stops/LaMwies1", "https://tec.openplanner.team/stops/LaMwies2"], ["https://tec.openplanner.team/stops/LHUsauv3", "https://tec.openplanner.team/stops/LHUsauv4"], ["https://tec.openplanner.team/stops/Bwlhcsr2", "https://tec.openplanner.team/stops/Bwlhswc1"], ["https://tec.openplanner.team/stops/N543ala", "https://tec.openplanner.team/stops/N543cla"], ["https://tec.openplanner.team/stops/N501cfc", "https://tec.openplanner.team/stops/N501cky"], ["https://tec.openplanner.team/stops/Bptrpla1", "https://tec.openplanner.team/stops/Bptrvil1"], ["https://tec.openplanner.team/stops/LVNleco2", "https://tec.openplanner.team/stops/LVNwanz1"], ["https://tec.openplanner.team/stops/Bglicsm2", "https://tec.openplanner.team/stops/Bglitro2"], ["https://tec.openplanner.team/stops/Lantonn2", "https://tec.openplanner.team/stops/Lrctec-1"], ["https://tec.openplanner.team/stops/Lghmavi1", "https://tec.openplanner.team/stops/Lmopota1"], ["https://tec.openplanner.team/stops/H4ag100a", "https://tec.openplanner.team/stops/H4ag106a"], ["https://tec.openplanner.team/stops/Csbsart1", "https://tec.openplanner.team/stops/H1sa112a"], ["https://tec.openplanner.team/stops/LSOdow%C3%A92", "https://tec.openplanner.team/stops/LSOgard2"], ["https://tec.openplanner.team/stops/Bcseaba1", "https://tec.openplanner.team/stops/Bcsegar1"], ["https://tec.openplanner.team/stops/X992aaa", "https://tec.openplanner.team/stops/X993aea"], ["https://tec.openplanner.team/stops/N526aaa", "https://tec.openplanner.team/stops/N526aba"], ["https://tec.openplanner.team/stops/N230aeb", "https://tec.openplanner.team/stops/N230afa"], ["https://tec.openplanner.team/stops/Cchccom2", "https://tec.openplanner.team/stops/Cmtneuv1"], ["https://tec.openplanner.team/stops/NL76aia", "https://tec.openplanner.team/stops/NL77acb"], ["https://tec.openplanner.team/stops/X604aab", "https://tec.openplanner.team/stops/X604abb"], ["https://tec.openplanner.team/stops/LFEmala1", "https://tec.openplanner.team/stops/X597apb"], ["https://tec.openplanner.team/stops/LWRcruc1", "https://tec.openplanner.team/stops/LWRcruc2"], ["https://tec.openplanner.team/stops/Ctilobb1", "https://tec.openplanner.team/stops/H1mc128a"], ["https://tec.openplanner.team/stops/H4tm140a", "https://tec.openplanner.team/stops/H4to131b"], ["https://tec.openplanner.team/stops/Bplnegl1", "https://tec.openplanner.team/stops/Cgncail2"], ["https://tec.openplanner.team/stops/H5rx120b", "https://tec.openplanner.team/stops/H5rx127a"], ["https://tec.openplanner.team/stops/LBWeg--4", "https://tec.openplanner.team/stops/LFCdree1"], ["https://tec.openplanner.team/stops/N236aia", "https://tec.openplanner.team/stops/N236aja"], ["https://tec.openplanner.team/stops/Cradado1", "https://tec.openplanner.team/stops/Crajasm4"], ["https://tec.openplanner.team/stops/N357ada", "https://tec.openplanner.team/stops/N357afb"], ["https://tec.openplanner.team/stops/Lhepaqu2", "https://tec.openplanner.team/stops/Lhrmeta2"], ["https://tec.openplanner.team/stops/X809aaa", "https://tec.openplanner.team/stops/X809aba"], ["https://tec.openplanner.team/stops/Bolgmpl1", "https://tec.openplanner.team/stops/Bpelf962"], ["https://tec.openplanner.team/stops/H1ch100a", "https://tec.openplanner.team/stops/H1ch104a"], ["https://tec.openplanner.team/stops/X734aha", "https://tec.openplanner.team/stops/X734aia"], ["https://tec.openplanner.team/stops/Bndbgar1", "https://tec.openplanner.team/stops/Btlgmou1"], ["https://tec.openplanner.team/stops/LFebas-2", "https://tec.openplanner.team/stops/LFemoul2"], ["https://tec.openplanner.team/stops/Cgoathe1", "https://tec.openplanner.team/stops/Cgofabr1"], ["https://tec.openplanner.team/stops/Lsephar2", "https://tec.openplanner.team/stops/Lsetrav1"], ["https://tec.openplanner.team/stops/Cci4bra3", "https://tec.openplanner.team/stops/Cmlaili2"], ["https://tec.openplanner.team/stops/LAYecol1", "https://tec.openplanner.team/stops/LAYpl--2"], ["https://tec.openplanner.team/stops/Bllngal1", "https://tec.openplanner.team/stops/Bllnmet2"], ["https://tec.openplanner.team/stops/N302aaa", "https://tec.openplanner.team/stops/N302aab"], ["https://tec.openplanner.team/stops/Ccoacar2", "https://tec.openplanner.team/stops/Ccohotv2"], ["https://tec.openplanner.team/stops/Llglave2", "https://tec.openplanner.team/stops/Llgmako1"], ["https://tec.openplanner.team/stops/X623ajb", "https://tec.openplanner.team/stops/X624ahb"], ["https://tec.openplanner.team/stops/Lvcdumo1", "https://tec.openplanner.team/stops/Lvcsapi2"], ["https://tec.openplanner.team/stops/Lstbold1", "https://tec.openplanner.team/stops/Lstbold2"], ["https://tec.openplanner.team/stops/LDppana1", "https://tec.openplanner.team/stops/LTErest2"], ["https://tec.openplanner.team/stops/Blimrof1", "https://tec.openplanner.team/stops/Brixcro1"], ["https://tec.openplanner.team/stops/H1ci103a", "https://tec.openplanner.team/stops/H1fr151b"], ["https://tec.openplanner.team/stops/X818asb", "https://tec.openplanner.team/stops/X818asd"], ["https://tec.openplanner.team/stops/X660acb", "https://tec.openplanner.team/stops/X660aib"], ["https://tec.openplanner.team/stops/H2ll176a", "https://tec.openplanner.team/stops/H2ll186a"], ["https://tec.openplanner.team/stops/LMfbuck1", "https://tec.openplanner.team/stops/LMffoot1"], ["https://tec.openplanner.team/stops/N117aqb", "https://tec.openplanner.team/stops/N117bcc"], ["https://tec.openplanner.team/stops/H4by115d", "https://tec.openplanner.team/stops/H4wp148a"], ["https://tec.openplanner.team/stops/Lrc594-1", "https://tec.openplanner.team/stops/Lrclohe1"], ["https://tec.openplanner.team/stops/H4ty308c", "https://tec.openplanner.team/stops/H4ty317b"], ["https://tec.openplanner.team/stops/Lhrlico2", "https://tec.openplanner.team/stops/Lhrtilm1"], ["https://tec.openplanner.team/stops/Brixwav2", "https://tec.openplanner.team/stops/Brixwav3"], ["https://tec.openplanner.team/stops/H4lh120b", "https://tec.openplanner.team/stops/H5wo127b"], ["https://tec.openplanner.team/stops/X672aba", "https://tec.openplanner.team/stops/X672adb"], ["https://tec.openplanner.team/stops/Bbiehpo2", "https://tec.openplanner.team/stops/Blontry2"], ["https://tec.openplanner.team/stops/X750avb", "https://tec.openplanner.team/stops/X750bfb"], ["https://tec.openplanner.team/stops/N522aja", "https://tec.openplanner.team/stops/N522aka"], ["https://tec.openplanner.team/stops/LHrreal1", "https://tec.openplanner.team/stops/LHrwaya1"], ["https://tec.openplanner.team/stops/Lthfren2", "https://tec.openplanner.team/stops/LWaccom1"], ["https://tec.openplanner.team/stops/N539aqb", "https://tec.openplanner.team/stops/N539ara"], ["https://tec.openplanner.team/stops/LGMhadr1", "https://tec.openplanner.team/stops/LGMhadr2"], ["https://tec.openplanner.team/stops/X746aea", "https://tec.openplanner.team/stops/X746agc"], ["https://tec.openplanner.team/stops/Bnivpal1", "https://tec.openplanner.team/stops/Bthivil3"], ["https://tec.openplanner.team/stops/H2sb239b", "https://tec.openplanner.team/stops/H2sb243d"], ["https://tec.openplanner.team/stops/Bwatbca1", "https://tec.openplanner.team/stops/Bwatcbo1"], ["https://tec.openplanner.team/stops/X952acb", "https://tec.openplanner.team/stops/X952aea"], ["https://tec.openplanner.team/stops/Brsggar2", "https://tec.openplanner.team/stops/Brsgtou1"], ["https://tec.openplanner.team/stops/N540acc", "https://tec.openplanner.team/stops/N540acd"], ["https://tec.openplanner.team/stops/Cjuecho1", "https://tec.openplanner.team/stops/Cjutrou1"], ["https://tec.openplanner.team/stops/Bnivphm2", "https://tec.openplanner.team/stops/Bnivvri1"], ["https://tec.openplanner.team/stops/Cmacart2", "https://tec.openplanner.team/stops/Cmadeli1"], ["https://tec.openplanner.team/stops/N150aka", "https://tec.openplanner.team/stops/N165acb"], ["https://tec.openplanner.team/stops/X789aaa", "https://tec.openplanner.team/stops/X789abb"], ["https://tec.openplanner.team/stops/Crojume1", "https://tec.openplanner.team/stops/Cropcan2"], ["https://tec.openplanner.team/stops/Clddelh2", "https://tec.openplanner.team/stops/Cldvign1"], ["https://tec.openplanner.team/stops/H4mo166a", "https://tec.openplanner.team/stops/H4mo177a"], ["https://tec.openplanner.team/stops/LDLbaye2", "https://tec.openplanner.team/stops/LDLboul1"], ["https://tec.openplanner.team/stops/Bhaldbo1", "https://tec.openplanner.team/stops/Blemwro2"], ["https://tec.openplanner.team/stops/Bgnpchb1", "https://tec.openplanner.team/stops/Bgnpjbe1"], ["https://tec.openplanner.team/stops/Cchdagn1", "https://tec.openplanner.team/stops/Cchdigu2"], ["https://tec.openplanner.team/stops/Crocona1", "https://tec.openplanner.team/stops/Cromart1"], ["https://tec.openplanner.team/stops/N509atb", "https://tec.openplanner.team/stops/N509aua"], ["https://tec.openplanner.team/stops/LBEnina1", "https://tec.openplanner.team/stops/LBEnina4"], ["https://tec.openplanner.team/stops/LPOleli2", "https://tec.openplanner.team/stops/LSdcent2"], ["https://tec.openplanner.team/stops/H4ft137b", "https://tec.openplanner.team/stops/H4wu377b"], ["https://tec.openplanner.team/stops/Ccuwain1", "https://tec.openplanner.team/stops/CMsolei1"], ["https://tec.openplanner.team/stops/N501jjb", "https://tec.openplanner.team/stops/N521adb"], ["https://tec.openplanner.team/stops/LHUgdpl2", "https://tec.openplanner.team/stops/LHUremy1"], ["https://tec.openplanner.team/stops/H1ms273a", "https://tec.openplanner.team/stops/H1ms314b"], ["https://tec.openplanner.team/stops/H4ru236b", "https://tec.openplanner.team/stops/H4ru243b"], ["https://tec.openplanner.team/stops/LEHhaut2", "https://tec.openplanner.team/stops/LEHmarc1"], ["https://tec.openplanner.team/stops/N236amb", "https://tec.openplanner.team/stops/N236aob"], ["https://tec.openplanner.team/stops/Lgrrein2", "https://tec.openplanner.team/stops/Lgrstou1"], ["https://tec.openplanner.team/stops/X619aka", "https://tec.openplanner.team/stops/X622aba"], ["https://tec.openplanner.team/stops/X879apa", "https://tec.openplanner.team/stops/X879asb"], ["https://tec.openplanner.team/stops/LXofont1", "https://tec.openplanner.team/stops/X599afc"], ["https://tec.openplanner.team/stops/Bbeaegl2", "https://tec.openplanner.team/stops/Bbearwa1"], ["https://tec.openplanner.team/stops/Bclgpla2", "https://tec.openplanner.team/stops/Bdvmcsa1"], ["https://tec.openplanner.team/stops/Lvcfogu4", "https://tec.openplanner.team/stops/Lvcpost1"], ["https://tec.openplanner.team/stops/Bjanfer2", "https://tec.openplanner.team/stops/NL75adb"], ["https://tec.openplanner.team/stops/Lflhott1", "https://tec.openplanner.team/stops/Lflmaxi4"], ["https://tec.openplanner.team/stops/N241afa", "https://tec.openplanner.team/stops/N241aga"], ["https://tec.openplanner.team/stops/X663aqa", "https://tec.openplanner.team/stops/X663aqb"], ["https://tec.openplanner.team/stops/LTPsatr2", "https://tec.openplanner.team/stops/LTPspay2"], ["https://tec.openplanner.team/stops/H4ir166b", "https://tec.openplanner.team/stops/H5at135a"], ["https://tec.openplanner.team/stops/H2ll180b", "https://tec.openplanner.team/stops/H2ll188a"], ["https://tec.openplanner.team/stops/LmYkirc2", "https://tec.openplanner.team/stops/LmYkreu2"], ["https://tec.openplanner.team/stops/Bbea3he2", "https://tec.openplanner.team/stops/Bmlncha2"], ["https://tec.openplanner.team/stops/N528ata", "https://tec.openplanner.team/stops/N542apa"], ["https://tec.openplanner.team/stops/H4ln127a", "https://tec.openplanner.team/stops/H4ne148a"], ["https://tec.openplanner.team/stops/N248ada", "https://tec.openplanner.team/stops/N248adb"], ["https://tec.openplanner.team/stops/H2hg271b", "https://tec.openplanner.team/stops/H2hg272b"], ["https://tec.openplanner.team/stops/Bottbru2", "https://tec.openplanner.team/stops/Bottppa2"], ["https://tec.openplanner.team/stops/X877aba", "https://tec.openplanner.team/stops/X877aga"], ["https://tec.openplanner.team/stops/X802ata", "https://tec.openplanner.team/stops/X802ayb"], ["https://tec.openplanner.team/stops/N501fsa", "https://tec.openplanner.team/stops/N501mra"], ["https://tec.openplanner.team/stops/N309aab", "https://tec.openplanner.team/stops/N309aac"], ["https://tec.openplanner.team/stops/H4hg158a", "https://tec.openplanner.team/stops/H4hg158b"], ["https://tec.openplanner.team/stops/LWRheyd1", "https://tec.openplanner.team/stops/LWRheyd2"], ["https://tec.openplanner.team/stops/N501grg", "https://tec.openplanner.team/stops/N501zea"], ["https://tec.openplanner.team/stops/LVAakke2", "https://tec.openplanner.team/stops/LVAwolf2"], ["https://tec.openplanner.team/stops/H1ht132b", "https://tec.openplanner.team/stops/H1si163a"], ["https://tec.openplanner.team/stops/X750aoa", "https://tec.openplanner.team/stops/X750blb"], ["https://tec.openplanner.team/stops/Cfaheni1", "https://tec.openplanner.team/stops/Cfaheni4"], ["https://tec.openplanner.team/stops/LmCkirc1", "https://tec.openplanner.team/stops/LmDelek2"], ["https://tec.openplanner.team/stops/X829aaa", "https://tec.openplanner.team/stops/X831aea"], ["https://tec.openplanner.team/stops/Cgregli1", "https://tec.openplanner.team/stops/Cgregli2"], ["https://tec.openplanner.team/stops/H4my122b", "https://tec.openplanner.team/stops/H4vz368a"], ["https://tec.openplanner.team/stops/LHbcent1", "https://tec.openplanner.team/stops/LJAchat2"], ["https://tec.openplanner.team/stops/LVParal2", "https://tec.openplanner.team/stops/LVPgrot2"], ["https://tec.openplanner.team/stops/LmD163-2", "https://tec.openplanner.team/stops/LmD27--1"], ["https://tec.openplanner.team/stops/H5ar100a", "https://tec.openplanner.team/stops/H5ar102a"], ["https://tec.openplanner.team/stops/N125aca", "https://tec.openplanner.team/stops/N125acb"], ["https://tec.openplanner.team/stops/LSHries2", "https://tec.openplanner.team/stops/LSOtheu2"], ["https://tec.openplanner.team/stops/Blilhay1", "https://tec.openplanner.team/stops/Blilwit1"], ["https://tec.openplanner.team/stops/H1te186a", "https://tec.openplanner.team/stops/H1te186b"], ["https://tec.openplanner.team/stops/Llgcour2", "https://tec.openplanner.team/stops/Llgcour3"], ["https://tec.openplanner.team/stops/LtHkreu3", "https://tec.openplanner.team/stops/LtHkreu4"], ["https://tec.openplanner.team/stops/LmD163-2", "https://tec.openplanner.team/stops/LmYamel2"], ["https://tec.openplanner.team/stops/Bjaugar4", "https://tec.openplanner.team/stops/Bjauvch2"], ["https://tec.openplanner.team/stops/H4av103b", "https://tec.openplanner.team/stops/H4av103c"], ["https://tec.openplanner.team/stops/N501era", "https://tec.openplanner.team/stops/N501erb"], ["https://tec.openplanner.team/stops/H1lb154a", "https://tec.openplanner.team/stops/H1qu108a"], ["https://tec.openplanner.team/stops/H1gn150a", "https://tec.openplanner.team/stops/H1gn150b"], ["https://tec.openplanner.team/stops/X626aaa", "https://tec.openplanner.team/stops/X626aab"], ["https://tec.openplanner.team/stops/Llgglai2", "https://tec.openplanner.team/stops/Llgoeil1"], ["https://tec.openplanner.team/stops/Blhugar1", "https://tec.openplanner.team/stops/Blhuone1"], ["https://tec.openplanner.team/stops/LAUcarr1", "https://tec.openplanner.team/stops/LAUpind1"], ["https://tec.openplanner.team/stops/N232asb", "https://tec.openplanner.team/stops/N232bsb"], ["https://tec.openplanner.team/stops/LrEdic71", "https://tec.openplanner.team/stops/LrEkape2"], ["https://tec.openplanner.team/stops/X756aaa", "https://tec.openplanner.team/stops/X756abb"], ["https://tec.openplanner.team/stops/Lhemilm1", "https://tec.openplanner.team/stops/Lhrmeta2"], ["https://tec.openplanner.team/stops/Cfrfaub1", "https://tec.openplanner.team/stops/Cfrfaub4"], ["https://tec.openplanner.team/stops/H5pe129a", "https://tec.openplanner.team/stops/H5pe146a"], ["https://tec.openplanner.team/stops/X615apa", "https://tec.openplanner.team/stops/X615brb"], ["https://tec.openplanner.team/stops/X982aea", "https://tec.openplanner.team/stops/X982bza"], ["https://tec.openplanner.team/stops/X394aeb", "https://tec.openplanner.team/stops/X396aeb"], ["https://tec.openplanner.team/stops/LMEense2", "https://tec.openplanner.team/stops/LMIterr2"], ["https://tec.openplanner.team/stops/Cml3fon1", "https://tec.openplanner.team/stops/Cmlhubi1"], ["https://tec.openplanner.team/stops/Cgopier2", "https://tec.openplanner.team/stops/Cgopier3"], ["https://tec.openplanner.team/stops/Bmarcat1", "https://tec.openplanner.team/stops/Btilsnc2"], ["https://tec.openplanner.team/stops/X876aca", "https://tec.openplanner.team/stops/X876afa"], ["https://tec.openplanner.team/stops/X766aga", "https://tec.openplanner.team/stops/X766ahb"], ["https://tec.openplanner.team/stops/H4me211b", "https://tec.openplanner.team/stops/H4me213a"], ["https://tec.openplanner.team/stops/H4hg155b", "https://tec.openplanner.team/stops/H4mv187a"], ["https://tec.openplanner.team/stops/X696aaa", "https://tec.openplanner.team/stops/X696aka"], ["https://tec.openplanner.team/stops/LBgcroi4", "https://tec.openplanner.team/stops/LBgcroi5"], ["https://tec.openplanner.team/stops/Llmbell1", "https://tec.openplanner.team/stops/Lvegazo1"], ["https://tec.openplanner.team/stops/X670anb", "https://tec.openplanner.team/stops/X670asa"], ["https://tec.openplanner.team/stops/LTHcent1", "https://tec.openplanner.team/stops/LTHmaka2"], ["https://tec.openplanner.team/stops/LEMeg--1", "https://tec.openplanner.team/stops/LEMeg--2"], ["https://tec.openplanner.team/stops/LHhmohe2", "https://tec.openplanner.team/stops/NL30ajb"], ["https://tec.openplanner.team/stops/LkTdorf1", "https://tec.openplanner.team/stops/LkTdorf2"], ["https://tec.openplanner.team/stops/X746aha", "https://tec.openplanner.team/stops/X746ahb"], ["https://tec.openplanner.team/stops/LFFeg--2", "https://tec.openplanner.team/stops/LFFmonu2"], ["https://tec.openplanner.team/stops/X804bua", "https://tec.openplanner.team/stops/X818aba"], ["https://tec.openplanner.team/stops/X759adb", "https://tec.openplanner.team/stops/X759agb"], ["https://tec.openplanner.team/stops/LFsherm1", "https://tec.openplanner.team/stops/LSLhale1"], ["https://tec.openplanner.team/stops/Lfhsoux1", "https://tec.openplanner.team/stops/Lfhsoux2"], ["https://tec.openplanner.team/stops/X822akb", "https://tec.openplanner.team/stops/X822alb"], ["https://tec.openplanner.team/stops/Cbzfrom1", "https://tec.openplanner.team/stops/Cluberl1"], ["https://tec.openplanner.team/stops/Lsmgdry2", "https://tec.openplanner.team/stops/Lvegest2"], ["https://tec.openplanner.team/stops/Cjumall1", "https://tec.openplanner.team/stops/Cjumall2"], ["https://tec.openplanner.team/stops/Lpecime2", "https://tec.openplanner.team/stops/Lpepano1"], ["https://tec.openplanner.team/stops/LhOzent2", "https://tec.openplanner.team/stops/LhUkape2"], ["https://tec.openplanner.team/stops/Cfmltas2", "https://tec.openplanner.team/stops/H2tz115b"], ["https://tec.openplanner.team/stops/LLbrecu2", "https://tec.openplanner.team/stops/LRcjard2"], ["https://tec.openplanner.team/stops/H4er125b", "https://tec.openplanner.team/stops/H4gu109a"], ["https://tec.openplanner.team/stops/LKmdrie1", "https://tec.openplanner.team/stops/LKmdrie2"], ["https://tec.openplanner.team/stops/N501cmb", "https://tec.openplanner.team/stops/N501cmc"], ["https://tec.openplanner.team/stops/LCPone91", "https://tec.openplanner.team/stops/LOncar-*"], ["https://tec.openplanner.team/stops/LSTgran2", "https://tec.openplanner.team/stops/LSTparf1"], ["https://tec.openplanner.team/stops/LLg9---1", "https://tec.openplanner.team/stops/LLg9---2"], ["https://tec.openplanner.team/stops/LeYteeh1", "https://tec.openplanner.team/stops/LrAbe602"], ["https://tec.openplanner.team/stops/LVLm10-1", "https://tec.openplanner.team/stops/LVLmart1"], ["https://tec.openplanner.team/stops/Bmlncle1", "https://tec.openplanner.team/stops/Bmlnpab2"], ["https://tec.openplanner.team/stops/LPRmc--1", "https://tec.openplanner.team/stops/LPRpeti1"], ["https://tec.openplanner.team/stops/X639aja", "https://tec.openplanner.team/stops/X640ata"], ["https://tec.openplanner.team/stops/Llgbonn2", "https://tec.openplanner.team/stops/Llgfoy-1"], ["https://tec.openplanner.team/stops/H4ga159a", "https://tec.openplanner.team/stops/H4vz370a"], ["https://tec.openplanner.team/stops/Ljubonf1", "https://tec.openplanner.team/stops/Ljufore1"], ["https://tec.openplanner.team/stops/H1wa157a", "https://tec.openplanner.team/stops/H1wa157b"], ["https://tec.openplanner.team/stops/H1no141a", "https://tec.openplanner.team/stops/H1no143b"], ["https://tec.openplanner.team/stops/N501cca", "https://tec.openplanner.team/stops/N502acb"], ["https://tec.openplanner.team/stops/N286aaa", "https://tec.openplanner.team/stops/N286aab"], ["https://tec.openplanner.team/stops/Lbococh1", "https://tec.openplanner.team/stops/Lbococh2"], ["https://tec.openplanner.team/stops/N301agb", "https://tec.openplanner.team/stops/N340aib"], ["https://tec.openplanner.team/stops/H1bs110c", "https://tec.openplanner.team/stops/H1qp142b"], ["https://tec.openplanner.team/stops/H4ka175a", "https://tec.openplanner.team/stops/H4ka175b"], ["https://tec.openplanner.team/stops/X949adb", "https://tec.openplanner.team/stops/X949ala"], ["https://tec.openplanner.team/stops/Lprcite2", "https://tec.openplanner.team/stops/Lprhodi1"], ["https://tec.openplanner.team/stops/X880aha", "https://tec.openplanner.team/stops/X880ahb"], ["https://tec.openplanner.team/stops/H4wr177a", "https://tec.openplanner.team/stops/H4wr177b"], ["https://tec.openplanner.team/stops/X939aaa", "https://tec.openplanner.team/stops/X939aab"], ["https://tec.openplanner.team/stops/Cgywaut1", "https://tec.openplanner.team/stops/CMmarab1"], ["https://tec.openplanner.team/stops/LOunebl2", "https://tec.openplanner.team/stops/LWZponb1"], ["https://tec.openplanner.team/stops/Btannda1", "https://tec.openplanner.team/stops/Btannda2"], ["https://tec.openplanner.team/stops/LMeeg--1", "https://tec.openplanner.team/stops/LMemaza2"], ["https://tec.openplanner.team/stops/Llgarmu1", "https://tec.openplanner.team/stops/Llgmare5"], ["https://tec.openplanner.team/stops/X636bfb", "https://tec.openplanner.team/stops/X636bga"], ["https://tec.openplanner.team/stops/Blhusor1", "https://tec.openplanner.team/stops/Bovesog2"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X744aba"], ["https://tec.openplanner.team/stops/H4ga155a", "https://tec.openplanner.team/stops/H4ha170a"], ["https://tec.openplanner.team/stops/LGegrun2", "https://tec.openplanner.team/stops/LVAwolf2"], ["https://tec.openplanner.team/stops/X595aba", "https://tec.openplanner.team/stops/X595aia"], ["https://tec.openplanner.team/stops/Llgegwa1", "https://tec.openplanner.team/stops/Llglimb1"], ["https://tec.openplanner.team/stops/H4mv187b", "https://tec.openplanner.team/stops/H4oe150a"], ["https://tec.openplanner.team/stops/Bchgcha2", "https://tec.openplanner.team/stops/Btsllbv2"], ["https://tec.openplanner.team/stops/Bquebre2", "https://tec.openplanner.team/stops/Bsteegl1"], ["https://tec.openplanner.team/stops/H2le176a", "https://tec.openplanner.team/stops/H2re175a"], ["https://tec.openplanner.team/stops/LLSba4-1", "https://tec.openplanner.team/stops/LLSba4-2"], ["https://tec.openplanner.team/stops/X908anb", "https://tec.openplanner.team/stops/X955aca"], ["https://tec.openplanner.team/stops/LNIbas-2", "https://tec.openplanner.team/stops/LSZheid2"], ["https://tec.openplanner.team/stops/Bottegl2", "https://tec.openplanner.team/stops/Bottpma1"], ["https://tec.openplanner.team/stops/LVleg--6", "https://tec.openplanner.team/stops/LVlroua2"], ["https://tec.openplanner.team/stops/N507ajb", "https://tec.openplanner.team/stops/N507aoa"], ["https://tec.openplanner.team/stops/Brebeau1", "https://tec.openplanner.team/stops/Bsteegl1"], ["https://tec.openplanner.team/stops/Bmartil1", "https://tec.openplanner.team/stops/Bmartil2"], ["https://tec.openplanner.team/stops/H4bo110b", "https://tec.openplanner.team/stops/H5qu140a"], ["https://tec.openplanner.team/stops/N118aga", "https://tec.openplanner.team/stops/N118agb"], ["https://tec.openplanner.team/stops/X739aia", "https://tec.openplanner.team/stops/X739aja"], ["https://tec.openplanner.team/stops/N539aga", "https://tec.openplanner.team/stops/N539agb"], ["https://tec.openplanner.team/stops/X902axa", "https://tec.openplanner.team/stops/X902aya"], ["https://tec.openplanner.team/stops/LWaruth1", "https://tec.openplanner.team/stops/LwYsarl1"], ["https://tec.openplanner.team/stops/LPcforg2", "https://tec.openplanner.team/stops/LTGsucr2"], ["https://tec.openplanner.team/stops/H4am113a", "https://tec.openplanner.team/stops/H4an108b"], ["https://tec.openplanner.team/stops/N551aia", "https://tec.openplanner.team/stops/N551akb"], ["https://tec.openplanner.team/stops/Caimeno3", "https://tec.openplanner.team/stops/N543chb"], ["https://tec.openplanner.team/stops/Lhuecol2", "https://tec.openplanner.team/stops/Lmnhorl1"], ["https://tec.openplanner.team/stops/Bolgcsa2", "https://tec.openplanner.team/stops/Bolggar2"], ["https://tec.openplanner.team/stops/Bhmmcha2", "https://tec.openplanner.team/stops/Bhmmpos2"], ["https://tec.openplanner.team/stops/NH01aab", "https://tec.openplanner.team/stops/NH01ajb"], ["https://tec.openplanner.team/stops/LGMdrev1", "https://tec.openplanner.team/stops/LGMhadr2"], ["https://tec.openplanner.team/stops/N558aeb", "https://tec.openplanner.team/stops/N558ama"], ["https://tec.openplanner.team/stops/Bwagpco1", "https://tec.openplanner.team/stops/Cwgmell4"], ["https://tec.openplanner.team/stops/X890aea", "https://tec.openplanner.team/stops/X890afa"], ["https://tec.openplanner.team/stops/LSTchat2", "https://tec.openplanner.team/stops/LWneg--1"], ["https://tec.openplanner.team/stops/N501goa", "https://tec.openplanner.team/stops/N501hya"], ["https://tec.openplanner.team/stops/H1ag107a", "https://tec.openplanner.team/stops/H1qv114b"], ["https://tec.openplanner.team/stops/H4og208b", "https://tec.openplanner.team/stops/H4og213a"], ["https://tec.openplanner.team/stops/Ccpetan2", "https://tec.openplanner.team/stops/Ccpsecp2"], ["https://tec.openplanner.team/stops/NH01aod", "https://tec.openplanner.team/stops/NH01aub"], ["https://tec.openplanner.team/stops/H1ne138b", "https://tec.openplanner.team/stops/H1ne146a"], ["https://tec.openplanner.team/stops/X994aia", "https://tec.openplanner.team/stops/X994ala"], ["https://tec.openplanner.team/stops/Llgjasm1", "https://tec.openplanner.team/stops/Llgjasm2"], ["https://tec.openplanner.team/stops/X224afb", "https://tec.openplanner.team/stops/X394abb"], ["https://tec.openplanner.team/stops/LHGleje1", "https://tec.openplanner.team/stops/LHGleje2"], ["https://tec.openplanner.team/stops/Lgdec--1", "https://tec.openplanner.team/stops/Lgdhura1"], ["https://tec.openplanner.team/stops/N551aja", "https://tec.openplanner.team/stops/N551akb"], ["https://tec.openplanner.team/stops/H1hq128a", "https://tec.openplanner.team/stops/H1hq129a"], ["https://tec.openplanner.team/stops/N569aic", "https://tec.openplanner.team/stops/N569aja"], ["https://tec.openplanner.team/stops/X986asa", "https://tec.openplanner.team/stops/X986ata"], ["https://tec.openplanner.team/stops/Bixlfla1", "https://tec.openplanner.team/stops/Bixlfla2"], ["https://tec.openplanner.team/stops/N562aea", "https://tec.openplanner.team/stops/N562afb"], ["https://tec.openplanner.team/stops/N577afa", "https://tec.openplanner.team/stops/N577ahb"], ["https://tec.openplanner.team/stops/Lmncasi1", "https://tec.openplanner.team/stops/Lmnfawe2"], ["https://tec.openplanner.team/stops/Cjuathe1", "https://tec.openplanner.team/stops/Cjubrul4"], ["https://tec.openplanner.team/stops/N501gab", "https://tec.openplanner.team/stops/N501iga"], ["https://tec.openplanner.team/stops/N501mey", "https://tec.openplanner.team/stops/N501mez"], ["https://tec.openplanner.team/stops/H2sb225b", "https://tec.openplanner.team/stops/H2sb259a"], ["https://tec.openplanner.team/stops/H4ft132b", "https://tec.openplanner.team/stops/H4ft136a"], ["https://tec.openplanner.team/stops/Llgnico7", "https://tec.openplanner.team/stops/LlgnicT1"], ["https://tec.openplanner.team/stops/Bwavbmo2", "https://tec.openplanner.team/stops/Bwavnam2"], ["https://tec.openplanner.team/stops/LWAaxhe1", "https://tec.openplanner.team/stops/LWAlong1"], ["https://tec.openplanner.team/stops/X740acb", "https://tec.openplanner.team/stops/X740agb"], ["https://tec.openplanner.team/stops/N244aia", "https://tec.openplanner.team/stops/N245aab"], ["https://tec.openplanner.team/stops/Ccogrbu1", "https://tec.openplanner.team/stops/Ccosart2"], ["https://tec.openplanner.team/stops/X602aoa", "https://tec.openplanner.team/stops/X602aob"], ["https://tec.openplanner.team/stops/H1em106a", "https://tec.openplanner.team/stops/H1em106b"], ["https://tec.openplanner.team/stops/N302ada", "https://tec.openplanner.team/stops/N302adb"], ["https://tec.openplanner.team/stops/Clodupr1", "https://tec.openplanner.team/stops/Clogfay1"], ["https://tec.openplanner.team/stops/Lhuchev1", "https://tec.openplanner.team/stops/Lhulibe1"], ["https://tec.openplanner.team/stops/X953aeb", "https://tec.openplanner.team/stops/X954aga"], ["https://tec.openplanner.team/stops/Bbstasa2", "https://tec.openplanner.team/stops/Bbstpan2"], ["https://tec.openplanner.team/stops/LLrcomb2", "https://tec.openplanner.team/stops/LLrfrai1"], ["https://tec.openplanner.team/stops/H1og131a", "https://tec.openplanner.team/stops/H1og135a"], ["https://tec.openplanner.team/stops/H1cu117c", "https://tec.openplanner.team/stops/H1cu122b"], ["https://tec.openplanner.team/stops/LJAdeho1", "https://tec.openplanner.team/stops/LJAgoff1"], ["https://tec.openplanner.team/stops/LHStrez1", "https://tec.openplanner.team/stops/LHStrez2"], ["https://tec.openplanner.team/stops/LmR90--2", "https://tec.openplanner.team/stops/LmRkape2"], ["https://tec.openplanner.team/stops/LeYauto2", "https://tec.openplanner.team/stops/LhSwind1"], ["https://tec.openplanner.team/stops/H1ms270a", "https://tec.openplanner.team/stops/H1ms282b"], ["https://tec.openplanner.team/stops/H4os220a", "https://tec.openplanner.team/stops/H4os221b"], ["https://tec.openplanner.team/stops/Bhvlbet2", "https://tec.openplanner.team/stops/Bmsgbay1"], ["https://tec.openplanner.team/stops/LoUhein1", "https://tec.openplanner.team/stops/LoUhein2"], ["https://tec.openplanner.team/stops/Lflprev1", "https://tec.openplanner.team/stops/Lflprev2"], ["https://tec.openplanner.team/stops/X952aaa", "https://tec.openplanner.team/stops/X952ama"], ["https://tec.openplanner.team/stops/H1gh165a", "https://tec.openplanner.team/stops/H1gh165b"], ["https://tec.openplanner.team/stops/Lflprev2", "https://tec.openplanner.team/stops/Lrovand1"], ["https://tec.openplanner.team/stops/X718ada", "https://tec.openplanner.team/stops/X733afb"], ["https://tec.openplanner.team/stops/N214aia", "https://tec.openplanner.team/stops/N225aaa"], ["https://tec.openplanner.team/stops/Bwatabs2", "https://tec.openplanner.team/stops/Bwatbca2"], ["https://tec.openplanner.team/stops/X902aja", "https://tec.openplanner.team/stops/X902ama"], ["https://tec.openplanner.team/stops/N203adb", "https://tec.openplanner.team/stops/N203aea"], ["https://tec.openplanner.team/stops/N506atb", "https://tec.openplanner.team/stops/N506baa"], ["https://tec.openplanner.team/stops/N501edb", "https://tec.openplanner.team/stops/N501epb"], ["https://tec.openplanner.team/stops/LOTferm1", "https://tec.openplanner.team/stops/LOTmonu1"], ["https://tec.openplanner.team/stops/X804asa", "https://tec.openplanner.team/stops/X804avb"], ["https://tec.openplanner.team/stops/Bwatran1", "https://tec.openplanner.team/stops/Bwatran2"], ["https://tec.openplanner.team/stops/Lmlchev1", "https://tec.openplanner.team/stops/Lmlchev2"], ["https://tec.openplanner.team/stops/H1he105b", "https://tec.openplanner.team/stops/H1mh113b"], ["https://tec.openplanner.team/stops/H1ba109b", "https://tec.openplanner.team/stops/H1ba120a"], ["https://tec.openplanner.team/stops/X758ahb", "https://tec.openplanner.team/stops/X759aga"], ["https://tec.openplanner.team/stops/H5at111b", "https://tec.openplanner.team/stops/H5at235a"], ["https://tec.openplanner.team/stops/X661ahb", "https://tec.openplanner.team/stops/X661aib"], ["https://tec.openplanner.team/stops/Cfccol1", "https://tec.openplanner.team/stops/Cfcstan1"], ["https://tec.openplanner.team/stops/X897ava", "https://tec.openplanner.team/stops/X897awa"], ["https://tec.openplanner.team/stops/LBEbelf2", "https://tec.openplanner.team/stops/LBEoblu2"], ["https://tec.openplanner.team/stops/X837aeb", "https://tec.openplanner.team/stops/X837aec"], ["https://tec.openplanner.team/stops/Bthsset2", "https://tec.openplanner.team/stops/NL37aia"], ["https://tec.openplanner.team/stops/LDAcite2", "https://tec.openplanner.team/stops/LFemoul2"], ["https://tec.openplanner.team/stops/H4do103a", "https://tec.openplanner.team/stops/H4do104a"], ["https://tec.openplanner.team/stops/LhOukat1", "https://tec.openplanner.team/stops/LhOzent2"], ["https://tec.openplanner.team/stops/Lmogerm1", "https://tec.openplanner.team/stops/Lmovand4"], ["https://tec.openplanner.team/stops/H1hb197a", "https://tec.openplanner.team/stops/H1ht128b"], ["https://tec.openplanner.team/stops/Brsrcha1", "https://tec.openplanner.team/stops/Brsrpar2"], ["https://tec.openplanner.team/stops/Chhbiet2", "https://tec.openplanner.team/stops/Chhprai1"], ["https://tec.openplanner.team/stops/LFochap2", "https://tec.openplanner.team/stops/LJAhanq2"], ["https://tec.openplanner.team/stops/H4lp122a", "https://tec.openplanner.team/stops/H4lp125a"], ["https://tec.openplanner.team/stops/Brsggar1", "https://tec.openplanner.team/stops/Brsgtou1"], ["https://tec.openplanner.team/stops/N535afa", "https://tec.openplanner.team/stops/N535aub"], ["https://tec.openplanner.team/stops/Llgdelc1", "https://tec.openplanner.team/stops/Llgdelc2"], ["https://tec.openplanner.team/stops/Bhalwat1", "https://tec.openplanner.team/stops/Bhalwat2"], ["https://tec.openplanner.team/stops/Lvepala2", "https://tec.openplanner.team/stops/Lverain1"], ["https://tec.openplanner.team/stops/LvA12--4", "https://tec.openplanner.team/stops/LvAschw2"], ["https://tec.openplanner.team/stops/Cfrcham2", "https://tec.openplanner.team/stops/Cmeptmi2"], ["https://tec.openplanner.team/stops/Cmqbasv2", "https://tec.openplanner.team/stops/Cmqn5911"], ["https://tec.openplanner.team/stops/N501bpa", "https://tec.openplanner.team/stops/N501jma"], ["https://tec.openplanner.team/stops/N350aea", "https://tec.openplanner.team/stops/N350aeb"], ["https://tec.openplanner.team/stops/X904aia", "https://tec.openplanner.team/stops/X904ajb"], ["https://tec.openplanner.team/stops/X660aab", "https://tec.openplanner.team/stops/X661apa"], ["https://tec.openplanner.team/stops/LTychev1", "https://tec.openplanner.team/stops/LTyhapp4"], ["https://tec.openplanner.team/stops/LDmdomm1", "https://tec.openplanner.team/stops/LDmhave2"], ["https://tec.openplanner.team/stops/N212aka", "https://tec.openplanner.team/stops/N226ada"], ["https://tec.openplanner.team/stops/NC02bbb", "https://tec.openplanner.team/stops/NC14ahb"], ["https://tec.openplanner.team/stops/LBIbois2", "https://tec.openplanner.team/stops/LBIhann2"], ["https://tec.openplanner.team/stops/Bblapra1", "https://tec.openplanner.team/stops/Bblapra2"], ["https://tec.openplanner.team/stops/Louoran2", "https://tec.openplanner.team/stops/Lsepaqu2"], ["https://tec.openplanner.team/stops/LOtthie1", "https://tec.openplanner.team/stops/LVHbrai2"], ["https://tec.openplanner.team/stops/Cmoprov1", "https://tec.openplanner.team/stops/Cmoprov2"], ["https://tec.openplanner.team/stops/H4ga149b", "https://tec.openplanner.team/stops/H4ga165b"], ["https://tec.openplanner.team/stops/X877aia", "https://tec.openplanner.team/stops/X880acb"], ["https://tec.openplanner.team/stops/Cchparc2", "https://tec.openplanner.team/stops/Cchvhau2"], ["https://tec.openplanner.team/stops/H1br131a", "https://tec.openplanner.team/stops/H1br134b"], ["https://tec.openplanner.team/stops/Bspkbeu1", "https://tec.openplanner.team/stops/H1by109b"], ["https://tec.openplanner.team/stops/Llgcmes1", "https://tec.openplanner.team/stops/Lsccime2"], ["https://tec.openplanner.team/stops/N217aea", "https://tec.openplanner.team/stops/N287abb"], ["https://tec.openplanner.team/stops/Bnil3fo2", "https://tec.openplanner.team/stops/Bnilcab2"], ["https://tec.openplanner.team/stops/N501fta", "https://tec.openplanner.team/stops/N501fuz"], ["https://tec.openplanner.team/stops/X897alc", "https://tec.openplanner.team/stops/X897arb"], ["https://tec.openplanner.team/stops/LBCtros2", "https://tec.openplanner.team/stops/LCdchod2"], ["https://tec.openplanner.team/stops/LOcgdro3", "https://tec.openplanner.team/stops/NL35aga"], ["https://tec.openplanner.team/stops/Bsomtce1", "https://tec.openplanner.team/stops/N584aja"], ["https://tec.openplanner.team/stops/Loureno2", "https://tec.openplanner.team/stops/Lsttech1"], ["https://tec.openplanner.team/stops/N538aya", "https://tec.openplanner.team/stops/N538ayb"], ["https://tec.openplanner.team/stops/N512arb", "https://tec.openplanner.team/stops/N512asb"], ["https://tec.openplanner.team/stops/N501gda", "https://tec.openplanner.team/stops/N501mta"], ["https://tec.openplanner.team/stops/H1wa156b", "https://tec.openplanner.team/stops/H1wa160b"], ["https://tec.openplanner.team/stops/X643aaa", "https://tec.openplanner.team/stops/X643aab"], ["https://tec.openplanner.team/stops/LCsange1", "https://tec.openplanner.team/stops/LCsange2"], ["https://tec.openplanner.team/stops/LFemoul2", "https://tec.openplanner.team/stops/LFethie1"], ["https://tec.openplanner.team/stops/Bblacea1", "https://tec.openplanner.team/stops/Bblaece2"], ["https://tec.openplanner.team/stops/H1ms267a", "https://tec.openplanner.team/stops/H1ms281b"], ["https://tec.openplanner.team/stops/X939aba", "https://tec.openplanner.team/stops/X939aeb"], ["https://tec.openplanner.team/stops/X801abb", "https://tec.openplanner.team/stops/X898afb"], ["https://tec.openplanner.team/stops/N537acb", "https://tec.openplanner.team/stops/N562bib"], ["https://tec.openplanner.team/stops/X717aga", "https://tec.openplanner.team/stops/X717age"], ["https://tec.openplanner.team/stops/X922aea", "https://tec.openplanner.team/stops/X922afb"], ["https://tec.openplanner.team/stops/Bbchdra2", "https://tec.openplanner.team/stops/Bbchmin2"], ["https://tec.openplanner.team/stops/N118anb", "https://tec.openplanner.team/stops/N118atb"], ["https://tec.openplanner.team/stops/N368acb", "https://tec.openplanner.team/stops/N368ada"], ["https://tec.openplanner.team/stops/Cna4che1", "https://tec.openplanner.team/stops/Cna4che2"], ["https://tec.openplanner.team/stops/H4pe128a", "https://tec.openplanner.team/stops/H4pe128b"], ["https://tec.openplanner.team/stops/LSPxhou1", "https://tec.openplanner.team/stops/LSPxhou2"], ["https://tec.openplanner.team/stops/X770abb", "https://tec.openplanner.team/stops/X770aca"], ["https://tec.openplanner.team/stops/Bove4ko2", "https://tec.openplanner.team/stops/Brsrbbo2"], ["https://tec.openplanner.team/stops/X982boa", "https://tec.openplanner.team/stops/X982brb"], ["https://tec.openplanner.team/stops/NL77afb", "https://tec.openplanner.team/stops/NL77agb"], ["https://tec.openplanner.team/stops/LChvill*", "https://tec.openplanner.team/stops/LSW26--1"], ["https://tec.openplanner.team/stops/N137aea", "https://tec.openplanner.team/stops/N137aeb"], ["https://tec.openplanner.team/stops/X636awb", "https://tec.openplanner.team/stops/X636bba"], ["https://tec.openplanner.team/stops/Clomakr1", "https://tec.openplanner.team/stops/Clostan1"], ["https://tec.openplanner.team/stops/X713acb", "https://tec.openplanner.team/stops/X796ahb"], ["https://tec.openplanner.team/stops/CMcart1", "https://tec.openplanner.team/stops/CMcart2"], ["https://tec.openplanner.team/stops/Cgzfarc1", "https://tec.openplanner.team/stops/Cgzm1482"], ["https://tec.openplanner.team/stops/N548afb", "https://tec.openplanner.team/stops/N548agc"], ["https://tec.openplanner.team/stops/X903aca", "https://tec.openplanner.team/stops/X903adb"], ["https://tec.openplanner.team/stops/LNCneuv1", "https://tec.openplanner.team/stops/LNCneuv2"], ["https://tec.openplanner.team/stops/X999aba", "https://tec.openplanner.team/stops/X999abb"], ["https://tec.openplanner.team/stops/Bmarvil1", "https://tec.openplanner.team/stops/Csawagn1"], ["https://tec.openplanner.team/stops/Lalverr2", "https://tec.openplanner.team/stops/Lladete4"], ["https://tec.openplanner.team/stops/LHZ8mai1", "https://tec.openplanner.team/stops/LHZ8mai2"], ["https://tec.openplanner.team/stops/LTecent1", "https://tec.openplanner.team/stops/LTestat1"], ["https://tec.openplanner.team/stops/X796aaa", "https://tec.openplanner.team/stops/X796abb"], ["https://tec.openplanner.team/stops/Cliburl1", "https://tec.openplanner.team/stops/Cliegli2"], ["https://tec.openplanner.team/stops/Ljegare2", "https://tec.openplanner.team/stops/Ljeorda1"], ["https://tec.openplanner.team/stops/Lseaven1", "https://tec.openplanner.team/stops/Lsemara1"], ["https://tec.openplanner.team/stops/Llgbavi1", "https://tec.openplanner.team/stops/Llgbavi4"], ["https://tec.openplanner.team/stops/X654ahb", "https://tec.openplanner.team/stops/X670aaa"], ["https://tec.openplanner.team/stops/LDObell1", "https://tec.openplanner.team/stops/LDOprev2"], ["https://tec.openplanner.team/stops/X724afb", "https://tec.openplanner.team/stops/X724agb"], ["https://tec.openplanner.team/stops/LCTgare4", "https://tec.openplanner.team/stops/LCTmonu2"], ["https://tec.openplanner.team/stops/H4ty291a", "https://tec.openplanner.team/stops/H4ty352a"], ["https://tec.openplanner.team/stops/H1hv130a", "https://tec.openplanner.team/stops/H1hv133b"], ["https://tec.openplanner.team/stops/H4mo134a", "https://tec.openplanner.team/stops/H4mo165b"], ["https://tec.openplanner.team/stops/Canchbr1", "https://tec.openplanner.team/stops/Canchbr2"], ["https://tec.openplanner.team/stops/X354ada", "https://tec.openplanner.team/stops/X354aea"], ["https://tec.openplanner.team/stops/H5pe135b", "https://tec.openplanner.team/stops/H5pe146b"], ["https://tec.openplanner.team/stops/H1el137b", "https://tec.openplanner.team/stops/H1wi153a"], ["https://tec.openplanner.team/stops/LAYambl2", "https://tec.openplanner.team/stops/LAYnias1"], ["https://tec.openplanner.team/stops/X771ahb", "https://tec.openplanner.team/stops/X771ana"], ["https://tec.openplanner.team/stops/N166aab", "https://tec.openplanner.team/stops/N167aeb"], ["https://tec.openplanner.team/stops/H4os217a", "https://tec.openplanner.team/stops/H4os222b"], ["https://tec.openplanner.team/stops/H5bl122a", "https://tec.openplanner.team/stops/H5bl122b"], ["https://tec.openplanner.team/stops/Lmibove2", "https://tec.openplanner.team/stops/Lmieg--1"], ["https://tec.openplanner.team/stops/X818akb", "https://tec.openplanner.team/stops/X818ama"], ["https://tec.openplanner.team/stops/N540aca", "https://tec.openplanner.team/stops/N540afa"], ["https://tec.openplanner.team/stops/H1em111a", "https://tec.openplanner.team/stops/H1hl128a"], ["https://tec.openplanner.team/stops/N425aba", "https://tec.openplanner.team/stops/N425aca"], ["https://tec.openplanner.team/stops/Bclgeco1", "https://tec.openplanner.team/stops/Bnilhau1"], ["https://tec.openplanner.team/stops/H1fr109a", "https://tec.openplanner.team/stops/H1fr109b"], ["https://tec.openplanner.team/stops/N390aaa", "https://tec.openplanner.team/stops/X390aka"], ["https://tec.openplanner.team/stops/Ctynamu1", "https://tec.openplanner.team/stops/N137aea"], ["https://tec.openplanner.team/stops/N244aga", "https://tec.openplanner.team/stops/N244aha"], ["https://tec.openplanner.team/stops/H1nm138a", "https://tec.openplanner.team/stops/H1si164a"], ["https://tec.openplanner.team/stops/Bhvlpla1", "https://tec.openplanner.team/stops/Bhvltol2"], ["https://tec.openplanner.team/stops/Bbeaech2", "https://tec.openplanner.team/stops/Bbealon4"], ["https://tec.openplanner.team/stops/X346aka", "https://tec.openplanner.team/stops/X346alb"], ["https://tec.openplanner.team/stops/Lsephar1", "https://tec.openplanner.team/stops/Ltihala1"], ["https://tec.openplanner.team/stops/X804apb", "https://tec.openplanner.team/stops/X804bza"], ["https://tec.openplanner.team/stops/X759ada", "https://tec.openplanner.team/stops/X759afb"], ["https://tec.openplanner.team/stops/X620agb", "https://tec.openplanner.team/stops/X620ahb"], ["https://tec.openplanner.team/stops/X801apb", "https://tec.openplanner.team/stops/X801ckb"], ["https://tec.openplanner.team/stops/H4fr146b", "https://tec.openplanner.team/stops/H4ty348b"], ["https://tec.openplanner.team/stops/N343aaa", "https://tec.openplanner.team/stops/N365aca"], ["https://tec.openplanner.team/stops/H2pr116a", "https://tec.openplanner.team/stops/H2pr117a"], ["https://tec.openplanner.team/stops/X669acb", "https://tec.openplanner.team/stops/X669adb"], ["https://tec.openplanner.team/stops/N501hsa", "https://tec.openplanner.team/stops/N501hsy"], ["https://tec.openplanner.team/stops/LMOfleu2", "https://tec.openplanner.team/stops/LMOstat1"], ["https://tec.openplanner.team/stops/LCsfize1", "https://tec.openplanner.team/stops/LFFcouv2"], ["https://tec.openplanner.team/stops/LaAronh1", "https://tec.openplanner.team/stops/LaAseba1"], ["https://tec.openplanner.team/stops/X663abb", "https://tec.openplanner.team/stops/X663ada"], ["https://tec.openplanner.team/stops/X919aaa", "https://tec.openplanner.team/stops/X919aba"], ["https://tec.openplanner.team/stops/Bwavtas1", "https://tec.openplanner.team/stops/Bwavtas4"], ["https://tec.openplanner.team/stops/Cmobeau2", "https://tec.openplanner.team/stops/Cmovies2"], ["https://tec.openplanner.team/stops/Cobbuze2", "https://tec.openplanner.team/stops/Cobhaut2"], ["https://tec.openplanner.team/stops/H4ne138b", "https://tec.openplanner.team/stops/H4ne144b"], ["https://tec.openplanner.team/stops/X801ala", "https://tec.openplanner.team/stops/X801apa"], ["https://tec.openplanner.team/stops/X652ada", "https://tec.openplanner.team/stops/X652adb"], ["https://tec.openplanner.team/stops/H5qu149a", "https://tec.openplanner.team/stops/H5qu149b"], ["https://tec.openplanner.team/stops/X659ama", "https://tec.openplanner.team/stops/X659asa"], ["https://tec.openplanner.team/stops/Bwatmbv2", "https://tec.openplanner.team/stops/Bwatmlo2"], ["https://tec.openplanner.team/stops/LCvneuv5", "https://tec.openplanner.team/stops/LCvoufn2"], ["https://tec.openplanner.team/stops/X768aja", "https://tec.openplanner.team/stops/X768ajb"], ["https://tec.openplanner.team/stops/Cgyaudu1", "https://tec.openplanner.team/stops/Cgyaudu2"], ["https://tec.openplanner.team/stops/Brebblo2", "https://tec.openplanner.team/stops/Bstesar1"], ["https://tec.openplanner.team/stops/H1mk109b", "https://tec.openplanner.team/stops/H1mk117b"], ["https://tec.openplanner.team/stops/Bbstbxl2", "https://tec.openplanner.team/stops/Bwaypon2"], ["https://tec.openplanner.team/stops/LmRh%C3%B6fe1", "https://tec.openplanner.team/stops/LmRkape2"], ["https://tec.openplanner.team/stops/X618aib", "https://tec.openplanner.team/stops/X618akb"], ["https://tec.openplanner.team/stops/Bjodcsb1", "https://tec.openplanner.team/stops/Bjodmal2"], ["https://tec.openplanner.team/stops/H1bo112a", "https://tec.openplanner.team/stops/H1bo112b"], ["https://tec.openplanner.team/stops/Bborcro1", "https://tec.openplanner.team/stops/Bronpfe2"], ["https://tec.openplanner.team/stops/H5qu144a", "https://tec.openplanner.team/stops/H5qu144b"], ["https://tec.openplanner.team/stops/H3th130a", "https://tec.openplanner.team/stops/H3th133a"], ["https://tec.openplanner.team/stops/Cmlbras1", "https://tec.openplanner.team/stops/Cmlbras2"], ["https://tec.openplanner.team/stops/LLYchpl1", "https://tec.openplanner.team/stops/LLYchpl2"], ["https://tec.openplanner.team/stops/Bnivvai2", "https://tec.openplanner.team/stops/Bthivil1"], ["https://tec.openplanner.team/stops/Llgbell1", "https://tec.openplanner.team/stops/Llgstap2"], ["https://tec.openplanner.team/stops/Lourose5", "https://tec.openplanner.team/stops/Lousite4"], ["https://tec.openplanner.team/stops/Cmaduna2", "https://tec.openplanner.team/stops/Cmaleri2"], ["https://tec.openplanner.team/stops/N539ayb", "https://tec.openplanner.team/stops/N539aza"], ["https://tec.openplanner.team/stops/Cfrchfe1", "https://tec.openplanner.team/stops/Cfrchro1"], ["https://tec.openplanner.team/stops/X898ama", "https://tec.openplanner.team/stops/X898anb"], ["https://tec.openplanner.team/stops/X639acb", "https://tec.openplanner.team/stops/X639apa"], ["https://tec.openplanner.team/stops/X640aaa", "https://tec.openplanner.team/stops/X675aab"], ["https://tec.openplanner.team/stops/X886agb", "https://tec.openplanner.team/stops/X897afa"], ["https://tec.openplanner.team/stops/H4to133b", "https://tec.openplanner.team/stops/H5at130a"], ["https://tec.openplanner.team/stops/LAxchpl1", "https://tec.openplanner.team/stops/Lmitech1"], ["https://tec.openplanner.team/stops/Lfhgara1", "https://tec.openplanner.team/stops/Lfhrogn1"], ["https://tec.openplanner.team/stops/X724aia", "https://tec.openplanner.team/stops/X724aib"], ["https://tec.openplanner.team/stops/N337aea", "https://tec.openplanner.team/stops/N337aib"], ["https://tec.openplanner.team/stops/H4ff121a", "https://tec.openplanner.team/stops/H4ff121b"], ["https://tec.openplanner.team/stops/Ctarpoi1", "https://tec.openplanner.team/stops/N543bqa"], ["https://tec.openplanner.team/stops/H1bu140a", "https://tec.openplanner.team/stops/H1bu143b"], ["https://tec.openplanner.team/stops/N538axa", "https://tec.openplanner.team/stops/N538aya"], ["https://tec.openplanner.team/stops/H5pe125b", "https://tec.openplanner.team/stops/H5pe148a"], ["https://tec.openplanner.team/stops/X923aia", "https://tec.openplanner.team/stops/X923ajb"], ["https://tec.openplanner.team/stops/H2ca111a", "https://tec.openplanner.team/stops/H2ml114a"], ["https://tec.openplanner.team/stops/X659aba", "https://tec.openplanner.team/stops/X659avb"], ["https://tec.openplanner.team/stops/Lhucime1", "https://tec.openplanner.team/stops/Lhulibe1"], ["https://tec.openplanner.team/stops/LBgbaga4", "https://tec.openplanner.team/stops/LWahott1"], ["https://tec.openplanner.team/stops/Bgrmfon2", "https://tec.openplanner.team/stops/Bgrmpsn2"], ["https://tec.openplanner.team/stops/N509adb", "https://tec.openplanner.team/stops/N509aka"], ["https://tec.openplanner.team/stops/N503afa", "https://tec.openplanner.team/stops/N503afb"], ["https://tec.openplanner.team/stops/H4bf105b", "https://tec.openplanner.team/stops/H4bf109b"], ["https://tec.openplanner.team/stops/N501jha", "https://tec.openplanner.team/stops/N501jhb"], ["https://tec.openplanner.team/stops/Lousimo2", "https://tec.openplanner.team/stops/Louvand2"], ["https://tec.openplanner.team/stops/LWEhang1", "https://tec.openplanner.team/stops/LWEhosp3"], ["https://tec.openplanner.team/stops/H4do100a", "https://tec.openplanner.team/stops/H4do203a"], ["https://tec.openplanner.team/stops/X614aoa", "https://tec.openplanner.team/stops/X614aua"], ["https://tec.openplanner.team/stops/Cvp3til2", "https://tec.openplanner.team/stops/Cvpchat2"], ["https://tec.openplanner.team/stops/LSPec--2", "https://tec.openplanner.team/stops/LSPpomp1"], ["https://tec.openplanner.team/stops/H1vb143a", "https://tec.openplanner.team/stops/H1wz170a"], ["https://tec.openplanner.team/stops/Cgrlorm1", "https://tec.openplanner.team/stops/N160ahb"], ["https://tec.openplanner.team/stops/X601bnb", "https://tec.openplanner.team/stops/X601dda"], ["https://tec.openplanner.team/stops/H4ld127a", "https://tec.openplanner.team/stops/H4ld128a"], ["https://tec.openplanner.team/stops/LMsalen2", "https://tec.openplanner.team/stops/LPbpeti1"], ["https://tec.openplanner.team/stops/Bmarlor2", "https://tec.openplanner.team/stops/Bmarmco1"], ["https://tec.openplanner.team/stops/Ltithie1", "https://tec.openplanner.team/stops/Ltitill*"], ["https://tec.openplanner.team/stops/LROandr2", "https://tec.openplanner.team/stops/LROhaie2"], ["https://tec.openplanner.team/stops/LeUmalm1", "https://tec.openplanner.team/stops/LeUmalm2"], ["https://tec.openplanner.team/stops/N211aha", "https://tec.openplanner.team/stops/N211ahb"], ["https://tec.openplanner.team/stops/N135aeb", "https://tec.openplanner.team/stops/N135aoa"], ["https://tec.openplanner.team/stops/Llgcont1", "https://tec.openplanner.team/stops/Llgpara2"], ["https://tec.openplanner.team/stops/Cfmltas1", "https://tec.openplanner.team/stops/Cfmmart2"], ["https://tec.openplanner.team/stops/X713aia", "https://tec.openplanner.team/stops/X713ajd"], ["https://tec.openplanner.team/stops/H5qu144b", "https://tec.openplanner.team/stops/H5qu146a"], ["https://tec.openplanner.team/stops/X824aja", "https://tec.openplanner.team/stops/X831aca"], ["https://tec.openplanner.team/stops/X757aba", "https://tec.openplanner.team/stops/X757agb"], ["https://tec.openplanner.team/stops/N501lea", "https://tec.openplanner.team/stops/N501leb"], ["https://tec.openplanner.team/stops/H4ta128b", "https://tec.openplanner.team/stops/H4ta132b"], ["https://tec.openplanner.team/stops/X941aea", "https://tec.openplanner.team/stops/X941afb"], ["https://tec.openplanner.team/stops/Bvirbie4", "https://tec.openplanner.team/stops/Bvirpos2"], ["https://tec.openplanner.team/stops/N522aba", "https://tec.openplanner.team/stops/N522ala"], ["https://tec.openplanner.team/stops/LhDkreu1", "https://tec.openplanner.team/stops/LhPheps1"], ["https://tec.openplanner.team/stops/N301agb", "https://tec.openplanner.team/stops/N301ahb"], ["https://tec.openplanner.team/stops/Lemeg--1", "https://tec.openplanner.team/stops/Lemhenn1"], ["https://tec.openplanner.team/stops/LHAvall2", "https://tec.openplanner.team/stops/LHTlieg1"], ["https://tec.openplanner.team/stops/Crobass1", "https://tec.openplanner.team/stops/Crojume2"], ["https://tec.openplanner.team/stops/H4ty353a", "https://tec.openplanner.team/stops/H4ty360a"], ["https://tec.openplanner.team/stops/Bclgapi1", "https://tec.openplanner.team/stops/Bdlmflo1"], ["https://tec.openplanner.team/stops/Cgrchea2", "https://tec.openplanner.team/stops/Cgrsaul1"], ["https://tec.openplanner.team/stops/H1ch104a", "https://tec.openplanner.team/stops/H1ch104b"], ["https://tec.openplanner.team/stops/X979ahb", "https://tec.openplanner.team/stops/X979aia"], ["https://tec.openplanner.team/stops/X940aga", "https://tec.openplanner.team/stops/X940aha"], ["https://tec.openplanner.team/stops/X879aoa", "https://tec.openplanner.team/stops/X879apa"], ["https://tec.openplanner.team/stops/LBNforg2", "https://tec.openplanner.team/stops/LDObran1"], ["https://tec.openplanner.team/stops/X616ahb", "https://tec.openplanner.team/stops/X617aea"], ["https://tec.openplanner.team/stops/Bnivga11", "https://tec.openplanner.team/stops/Bnivrwi1"], ["https://tec.openplanner.team/stops/H1cd114a", "https://tec.openplanner.team/stops/H1ne146a"], ["https://tec.openplanner.team/stops/H4ru242a", "https://tec.openplanner.team/stops/H4wc374a"], ["https://tec.openplanner.team/stops/LHYlinc2", "https://tec.openplanner.team/stops/LHYlinc4"], ["https://tec.openplanner.team/stops/H2ep145b", "https://tec.openplanner.team/stops/H3bi113b"], ["https://tec.openplanner.team/stops/X623ada", "https://tec.openplanner.team/stops/X623aea"], ["https://tec.openplanner.team/stops/Llaeg--2", "https://tec.openplanner.team/stops/LXhcite1"], ["https://tec.openplanner.team/stops/LAIchpl2", "https://tec.openplanner.team/stops/LVBneuv2"], ["https://tec.openplanner.team/stops/X763acb", "https://tec.openplanner.team/stops/X763ada"], ["https://tec.openplanner.team/stops/Ccojaur3", "https://tec.openplanner.team/stops/Ccojaur4"], ["https://tec.openplanner.team/stops/X652aga", "https://tec.openplanner.team/stops/X652aha"], ["https://tec.openplanner.team/stops/LLTgole1", "https://tec.openplanner.team/stops/LLThosd1"], ["https://tec.openplanner.team/stops/Chpchea1", "https://tec.openplanner.team/stops/Cmesafi1"], ["https://tec.openplanner.team/stops/H4co110a", "https://tec.openplanner.team/stops/H4co142a"], ["https://tec.openplanner.team/stops/H4ga150a", "https://tec.openplanner.team/stops/H4ga163a"], ["https://tec.openplanner.team/stops/H1do115a", "https://tec.openplanner.team/stops/H1do115b"], ["https://tec.openplanner.team/stops/Landeja1", "https://tec.openplanner.team/stops/Landeja2"], ["https://tec.openplanner.team/stops/Bwancal1", "https://tec.openplanner.team/stops/Bwancal4"], ["https://tec.openplanner.team/stops/H4de114a", "https://tec.openplanner.team/stops/H5rx125b"], ["https://tec.openplanner.team/stops/Cfmtrie2", "https://tec.openplanner.team/stops/Cfomays1"], ["https://tec.openplanner.team/stops/H1ho124a", "https://tec.openplanner.team/stops/H1ho125c"], ["https://tec.openplanner.team/stops/Bwatnro1", "https://tec.openplanner.team/stops/Bwatnrs1"], ["https://tec.openplanner.team/stops/LTgbalm1", "https://tec.openplanner.team/stops/LTgbalm2"], ["https://tec.openplanner.team/stops/LLrfagn1", "https://tec.openplanner.team/stops/LLrfagn2"], ["https://tec.openplanner.team/stops/Llgblon2", "https://tec.openplanner.team/stops/Llgblon4"], ["https://tec.openplanner.team/stops/LBapeup2", "https://tec.openplanner.team/stops/LBavive2"], ["https://tec.openplanner.team/stops/Bjodcsb2", "https://tec.openplanner.team/stops/Bsrgcur1"], ["https://tec.openplanner.team/stops/Blemkap1", "https://tec.openplanner.team/stops/Blemkap2"], ["https://tec.openplanner.team/stops/Lemarti2", "https://tec.openplanner.team/stops/Lemboul1"], ["https://tec.openplanner.team/stops/NC14aua", "https://tec.openplanner.team/stops/NC14aub"], ["https://tec.openplanner.team/stops/H1ms360a", "https://tec.openplanner.team/stops/H1ms400d"], ["https://tec.openplanner.team/stops/Lmaelhe1", "https://tec.openplanner.team/stops/Lmaelhe2"], ["https://tec.openplanner.team/stops/Lmidarc1", "https://tec.openplanner.team/stops/Lvtlimi2"], ["https://tec.openplanner.team/stops/LHEgare1", "https://tec.openplanner.team/stops/LHEpriv2"], ["https://tec.openplanner.team/stops/N261agb", "https://tec.openplanner.team/stops/N261ahb"], ["https://tec.openplanner.team/stops/LVIeg--4", "https://tec.openplanner.team/stops/LVIjacq1"], ["https://tec.openplanner.team/stops/X653afb", "https://tec.openplanner.team/stops/X667aeb"], ["https://tec.openplanner.team/stops/H1bo109b", "https://tec.openplanner.team/stops/H1bo145a"], ["https://tec.openplanner.team/stops/Blascsl2", "https://tec.openplanner.team/stops/Blasren2"], ["https://tec.openplanner.team/stops/X808aja", "https://tec.openplanner.team/stops/X808alb"], ["https://tec.openplanner.team/stops/Cjugohi1", "https://tec.openplanner.team/stops/Cjuquai2"], ["https://tec.openplanner.team/stops/N241aca", "https://tec.openplanner.team/stops/N241afa"], ["https://tec.openplanner.team/stops/Cchfran2", "https://tec.openplanner.team/stops/Cchture1"], ["https://tec.openplanner.team/stops/X808aea", "https://tec.openplanner.team/stops/X811aaa"], ["https://tec.openplanner.team/stops/X608avb", "https://tec.openplanner.team/stops/X627aaa"], ["https://tec.openplanner.team/stops/X713aga", "https://tec.openplanner.team/stops/X713ahb"], ["https://tec.openplanner.team/stops/LAYsupe2", "https://tec.openplanner.team/stops/LFLetoi2"], ["https://tec.openplanner.team/stops/X739aca", "https://tec.openplanner.team/stops/X739ada"], ["https://tec.openplanner.team/stops/H4mt214b", "https://tec.openplanner.team/stops/H4mt220b"], ["https://tec.openplanner.team/stops/LhIfrie2", "https://tec.openplanner.team/stops/LhIkirc*"], ["https://tec.openplanner.team/stops/LHMbelv2", "https://tec.openplanner.team/stops/LHMec--1"], ["https://tec.openplanner.team/stops/Bnstmig1", "https://tec.openplanner.team/stops/H2na131a"], ["https://tec.openplanner.team/stops/LhPheps2", "https://tec.openplanner.team/stops/LhPprum2"], ["https://tec.openplanner.team/stops/X639aca", "https://tec.openplanner.team/stops/X639acd"], ["https://tec.openplanner.team/stops/X805aca", "https://tec.openplanner.team/stops/X805acb"], ["https://tec.openplanner.team/stops/Cmyecur1", "https://tec.openplanner.team/stops/Cmygrbr1"], ["https://tec.openplanner.team/stops/X614agb", "https://tec.openplanner.team/stops/X615aya"], ["https://tec.openplanner.team/stops/X641akb", "https://tec.openplanner.team/stops/X641arb"], ["https://tec.openplanner.team/stops/LVbcoul1", "https://tec.openplanner.team/stops/NL77anb"], ["https://tec.openplanner.team/stops/Lemarde1", "https://tec.openplanner.team/stops/Lemhenn1"], ["https://tec.openplanner.team/stops/LBkjenn2", "https://tec.openplanner.team/stops/LMNpt--2"], ["https://tec.openplanner.team/stops/LFemoul1", "https://tec.openplanner.team/stops/LTrmaro2"], ["https://tec.openplanner.team/stops/LPUmang2", "https://tec.openplanner.team/stops/LPUmer-2"], ["https://tec.openplanner.team/stops/H2le148a", "https://tec.openplanner.team/stops/H2le153b"], ["https://tec.openplanner.team/stops/H2ch101b", "https://tec.openplanner.team/stops/H2ch107a"], ["https://tec.openplanner.team/stops/X889aba", "https://tec.openplanner.team/stops/X889acb"], ["https://tec.openplanner.team/stops/H2mg138a", "https://tec.openplanner.team/stops/H2mg144b"], ["https://tec.openplanner.team/stops/Cgycvie1", "https://tec.openplanner.team/stops/Cgycvie2"], ["https://tec.openplanner.team/stops/N554abb", "https://tec.openplanner.team/stops/N554acc"], ["https://tec.openplanner.team/stops/Lveharm1", "https://tec.openplanner.team/stops/Lvethea1"], ["https://tec.openplanner.team/stops/X926adb", "https://tec.openplanner.team/stops/X927ada"], ["https://tec.openplanner.team/stops/Llgbaya1", "https://tec.openplanner.team/stops/Llgfoy-1"], ["https://tec.openplanner.team/stops/X892aea", "https://tec.openplanner.team/stops/X892aeb"], ["https://tec.openplanner.team/stops/LSNchen4", "https://tec.openplanner.team/stops/LSNfays2"], ["https://tec.openplanner.team/stops/N505alb", "https://tec.openplanner.team/stops/N579ada"], ["https://tec.openplanner.team/stops/LHvvill*", "https://tec.openplanner.team/stops/LrEochs1"], ["https://tec.openplanner.team/stops/X662aba", "https://tec.openplanner.team/stops/X662arb"], ["https://tec.openplanner.team/stops/X721asa", "https://tec.openplanner.team/stops/X786aab"], ["https://tec.openplanner.team/stops/Lghgros2", "https://tec.openplanner.team/stops/Lghmaha2"], ["https://tec.openplanner.team/stops/Cflchmo2", "https://tec.openplanner.team/stops/Cflsncb1"], ["https://tec.openplanner.team/stops/X982abb", "https://tec.openplanner.team/stops/X982bya"], ["https://tec.openplanner.team/stops/Bjodbat2", "https://tec.openplanner.team/stops/Bjodpce2"], ["https://tec.openplanner.team/stops/H1mv238b", "https://tec.openplanner.team/stops/H1mv240b"], ["https://tec.openplanner.team/stops/Btlgfto2", "https://tec.openplanner.team/stops/Btlgmee1"], ["https://tec.openplanner.team/stops/H4ef163a", "https://tec.openplanner.team/stops/H4hq134b"], ["https://tec.openplanner.team/stops/Bnivaig1", "https://tec.openplanner.team/stops/Bnivga71"], ["https://tec.openplanner.team/stops/Bblamsp1", "https://tec.openplanner.team/stops/Bblamsp3"], ["https://tec.openplanner.team/stops/N501hrb", "https://tec.openplanner.team/stops/N501iub"], ["https://tec.openplanner.team/stops/Lengran2", "https://tec.openplanner.team/stops/Lenplac5"], ["https://tec.openplanner.team/stops/LAYharz2", "https://tec.openplanner.team/stops/LAYnias2"], ["https://tec.openplanner.team/stops/Btlbcha2", "https://tec.openplanner.team/stops/Btlbtbe1"], ["https://tec.openplanner.team/stops/LFUchpl1", "https://tec.openplanner.team/stops/LFUfonc1"], ["https://tec.openplanner.team/stops/LCRabbe1", "https://tec.openplanner.team/stops/LRUhama2"], ["https://tec.openplanner.team/stops/LLmcarr1", "https://tec.openplanner.team/stops/LLmcarr2"], ["https://tec.openplanner.team/stops/Lbotige1", "https://tec.openplanner.team/stops/Lbotige2"], ["https://tec.openplanner.team/stops/LEntrix2", "https://tec.openplanner.team/stops/NL67aab"], ["https://tec.openplanner.team/stops/H1eo105b", "https://tec.openplanner.team/stops/H1eo107b"], ["https://tec.openplanner.team/stops/X979aab", "https://tec.openplanner.team/stops/X979aca"], ["https://tec.openplanner.team/stops/H4ce103a", "https://tec.openplanner.team/stops/H4ve135a"], ["https://tec.openplanner.team/stops/H1gi119c", "https://tec.openplanner.team/stops/H1ry137b"], ["https://tec.openplanner.team/stops/H1fa117a", "https://tec.openplanner.team/stops/H1fa120b"], ["https://tec.openplanner.team/stops/LFLcent1", "https://tec.openplanner.team/stops/LFLgara2"], ["https://tec.openplanner.team/stops/Cdamarc1", "https://tec.openplanner.team/stops/Cmarroy2"], ["https://tec.openplanner.team/stops/Becepro2", "https://tec.openplanner.team/stops/H3br101b"], ["https://tec.openplanner.team/stops/X801bea", "https://tec.openplanner.team/stops/X801cla"], ["https://tec.openplanner.team/stops/Bgrmpco1", "https://tec.openplanner.team/stops/N522asa"], ["https://tec.openplanner.team/stops/X770agb", "https://tec.openplanner.team/stops/X773ana"], ["https://tec.openplanner.team/stops/X742abb", "https://tec.openplanner.team/stops/X742aca"], ["https://tec.openplanner.team/stops/N331aab", "https://tec.openplanner.team/stops/N331adb"], ["https://tec.openplanner.team/stops/LOcchat1", "https://tec.openplanner.team/stops/LOchalo2"], ["https://tec.openplanner.team/stops/H4br108a", "https://tec.openplanner.team/stops/H4br108b"], ["https://tec.openplanner.team/stops/X753aca", "https://tec.openplanner.team/stops/X928aab"], ["https://tec.openplanner.team/stops/Ltihorl1", "https://tec.openplanner.team/stops/Ltihorl2"], ["https://tec.openplanner.team/stops/H4ry133b", "https://tec.openplanner.team/stops/H4ry140b"], ["https://tec.openplanner.team/stops/H1le118a", "https://tec.openplanner.team/stops/H1le118b"], ["https://tec.openplanner.team/stops/X739ala", "https://tec.openplanner.team/stops/X771abb"], ["https://tec.openplanner.team/stops/Ccyfroi2", "https://tec.openplanner.team/stops/Ccyga7"], ["https://tec.openplanner.team/stops/X614baa", "https://tec.openplanner.team/stops/X614bab"], ["https://tec.openplanner.team/stops/Cwgmutu1", "https://tec.openplanner.team/stops/Cwgmutu2"], ["https://tec.openplanner.team/stops/X991ada", "https://tec.openplanner.team/stops/X991adb"], ["https://tec.openplanner.team/stops/X749aaa", "https://tec.openplanner.team/stops/X749aab"], ["https://tec.openplanner.team/stops/Llgm%C3%A9di1", "https://tec.openplanner.team/stops/Llgm%C3%A9di2"], ["https://tec.openplanner.team/stops/N506aza", "https://tec.openplanner.team/stops/N506bjb"], ["https://tec.openplanner.team/stops/Bllncom2", "https://tec.openplanner.team/stops/Bllngle1"], ["https://tec.openplanner.team/stops/Lbocruc1", "https://tec.openplanner.team/stops/Lbooffe2"], ["https://tec.openplanner.team/stops/LSZstoc1", "https://tec.openplanner.team/stops/LWycabi1"], ["https://tec.openplanner.team/stops/N501ita", "https://tec.openplanner.team/stops/N501iua"], ["https://tec.openplanner.team/stops/Llgptlo2", "https://tec.openplanner.team/stops/Llgptlo3"], ["https://tec.openplanner.team/stops/N229ama", "https://tec.openplanner.team/stops/N229asa"], ["https://tec.openplanner.team/stops/H5rx101a", "https://tec.openplanner.team/stops/H5rx135a"], ["https://tec.openplanner.team/stops/LSTamer2", "https://tec.openplanner.team/stops/LSTdero2"], ["https://tec.openplanner.team/stops/N226ada", "https://tec.openplanner.team/stops/N387aba"], ["https://tec.openplanner.team/stops/LAvatri1", "https://tec.openplanner.team/stops/LAvatri2"], ["https://tec.openplanner.team/stops/N513ata", "https://tec.openplanner.team/stops/N513avb"], ["https://tec.openplanner.team/stops/Csschat2", "https://tec.openplanner.team/stops/Cssgare2"], ["https://tec.openplanner.team/stops/H1cu126b", "https://tec.openplanner.team/stops/H1cu132b"], ["https://tec.openplanner.team/stops/X817aaa", "https://tec.openplanner.team/stops/X820aha"], ["https://tec.openplanner.team/stops/H4es111b", "https://tec.openplanner.team/stops/H4ev120a"], ["https://tec.openplanner.team/stops/H1be103a", "https://tec.openplanner.team/stops/H1mc129a"], ["https://tec.openplanner.team/stops/LLrbecc1", "https://tec.openplanner.team/stops/LLrfont1"], ["https://tec.openplanner.team/stops/X812acb", "https://tec.openplanner.team/stops/X860aab"], ["https://tec.openplanner.team/stops/N543bma", "https://tec.openplanner.team/stops/N543bmb"], ["https://tec.openplanner.team/stops/LHAprei2", "https://tec.openplanner.team/stops/LVIvert1"], ["https://tec.openplanner.team/stops/X801bxb", "https://tec.openplanner.team/stops/X802aza"], ["https://tec.openplanner.team/stops/LTaeg--1", "https://tec.openplanner.team/stops/LTatult1"], ["https://tec.openplanner.team/stops/X793aab", "https://tec.openplanner.team/stops/X793ada"], ["https://tec.openplanner.team/stops/Ccufos71", "https://tec.openplanner.team/stops/Ccufos72"], ["https://tec.openplanner.team/stops/N501ejd", "https://tec.openplanner.team/stops/N501mvc"], ["https://tec.openplanner.team/stops/Llgddef1", "https://tec.openplanner.team/stops/Llgddef2"], ["https://tec.openplanner.team/stops/Clafaub1", "https://tec.openplanner.team/stops/NC23acb"], ["https://tec.openplanner.team/stops/N501dra", "https://tec.openplanner.team/stops/N501eea"], ["https://tec.openplanner.team/stops/N139aab", "https://tec.openplanner.team/stops/N139aba"], ["https://tec.openplanner.team/stops/Cgobl%C3%A9r1", "https://tec.openplanner.team/stops/Cwxchap1"], ["https://tec.openplanner.team/stops/Lhufont2", "https://tec.openplanner.team/stops/Lmndari2"], ["https://tec.openplanner.team/stops/X602aca", "https://tec.openplanner.team/stops/X602acb"], ["https://tec.openplanner.team/stops/N141aia", "https://tec.openplanner.team/stops/N141aja"], ["https://tec.openplanner.team/stops/Llgbass2", "https://tec.openplanner.team/stops/Llgomal2"], ["https://tec.openplanner.team/stops/H4bo110a", "https://tec.openplanner.team/stops/H5st162b"], ["https://tec.openplanner.team/stops/LNCcedr2", "https://tec.openplanner.team/stops/LNCspor1"], ["https://tec.openplanner.team/stops/N562alb", "https://tec.openplanner.team/stops/N562alc"], ["https://tec.openplanner.team/stops/N162aab", "https://tec.openplanner.team/stops/N162afb"], ["https://tec.openplanner.team/stops/Cauushm1", "https://tec.openplanner.team/stops/Cauwauq2"], ["https://tec.openplanner.team/stops/Bwspbos2", "https://tec.openplanner.team/stops/Bwspmon2"], ["https://tec.openplanner.team/stops/X786aha", "https://tec.openplanner.team/stops/X788abd"], ["https://tec.openplanner.team/stops/H4po124b", "https://tec.openplanner.team/stops/H4po129a"], ["https://tec.openplanner.team/stops/NR21abb", "https://tec.openplanner.team/stops/NR21acb"], ["https://tec.openplanner.team/stops/Bpersyn2", "https://tec.openplanner.team/stops/Btlbcul1"], ["https://tec.openplanner.team/stops/Cgyhstj1", "https://tec.openplanner.team/stops/Cgyplvi2"], ["https://tec.openplanner.team/stops/X818ana", "https://tec.openplanner.team/stops/X818anb"], ["https://tec.openplanner.team/stops/Llgcouv2", "https://tec.openplanner.team/stops/Llgcouv4"], ["https://tec.openplanner.team/stops/Crccamp2", "https://tec.openplanner.team/stops/Crcpla1"], ["https://tec.openplanner.team/stops/H1ms908a", "https://tec.openplanner.team/stops/H1ms926a"], ["https://tec.openplanner.team/stops/Bjaneco2", "https://tec.openplanner.team/stops/NR30aba"], ["https://tec.openplanner.team/stops/Lghferr1", "https://tec.openplanner.team/stops/Lghvold1"], ["https://tec.openplanner.team/stops/LBscime1", "https://tec.openplanner.team/stops/LBsoha-1"], ["https://tec.openplanner.team/stops/X636axb", "https://tec.openplanner.team/stops/X636ayb"], ["https://tec.openplanner.team/stops/LTPbeau1", "https://tec.openplanner.team/stops/LTPpreh2"], ["https://tec.openplanner.team/stops/LhRwere2", "https://tec.openplanner.team/stops/LwEdorf1"], ["https://tec.openplanner.team/stops/X601aua", "https://tec.openplanner.team/stops/X601baa"], ["https://tec.openplanner.team/stops/LhZkape2", "https://tec.openplanner.team/stops/LmFdorf2"], ["https://tec.openplanner.team/stops/LbUwirt1", "https://tec.openplanner.team/stops/LwRkirc1"], ["https://tec.openplanner.team/stops/N501knb", "https://tec.openplanner.team/stops/N501kpb"], ["https://tec.openplanner.team/stops/Lqbchat2", "https://tec.openplanner.team/stops/LSAhaye1"], ["https://tec.openplanner.team/stops/Btsllec2", "https://tec.openplanner.team/stops/Btsllsc1"], ["https://tec.openplanner.team/stops/N153ada", "https://tec.openplanner.team/stops/N153aeb"], ["https://tec.openplanner.team/stops/H4pp121b", "https://tec.openplanner.team/stops/H4pp123a"], ["https://tec.openplanner.team/stops/Bperqui2", "https://tec.openplanner.team/stops/N519asb"], ["https://tec.openplanner.team/stops/Llglema3", "https://tec.openplanner.team/stops/Llgtill2"], ["https://tec.openplanner.team/stops/LbTgeme1", "https://tec.openplanner.team/stops/LbTgeme2"], ["https://tec.openplanner.team/stops/X615ada", "https://tec.openplanner.team/stops/X615asb"], ["https://tec.openplanner.team/stops/Canterr2", "https://tec.openplanner.team/stops/H2an111b"], ["https://tec.openplanner.team/stops/H4ev120a", "https://tec.openplanner.team/stops/H4ev120b"], ["https://tec.openplanner.team/stops/X609aoa", "https://tec.openplanner.team/stops/X609aqb"], ["https://tec.openplanner.team/stops/X805aka", "https://tec.openplanner.team/stops/X807abb"], ["https://tec.openplanner.team/stops/X911afa", "https://tec.openplanner.team/stops/X911afb"], ["https://tec.openplanner.team/stops/Ctrsema1", "https://tec.openplanner.team/stops/Ctrsema2"], ["https://tec.openplanner.team/stops/Berncim2", "https://tec.openplanner.team/stops/Berngrt1"], ["https://tec.openplanner.team/stops/Lsepcha1", "https://tec.openplanner.team/stops/Lseserv4"], ["https://tec.openplanner.team/stops/LaNdord1", "https://tec.openplanner.team/stops/LhRandl2"], ["https://tec.openplanner.team/stops/X902afb", "https://tec.openplanner.team/stops/X902afc"], ["https://tec.openplanner.team/stops/LhM07--2", "https://tec.openplanner.team/stops/LhMdorf2"], ["https://tec.openplanner.team/stops/Cgonvro2", "https://tec.openplanner.team/stops/Clihame1"], ["https://tec.openplanner.team/stops/X923aba", "https://tec.openplanner.team/stops/X923abb"], ["https://tec.openplanner.team/stops/LXhjupr1", "https://tec.openplanner.team/stops/LXhvina2"], ["https://tec.openplanner.team/stops/X801bdb", "https://tec.openplanner.team/stops/X801cka"], ["https://tec.openplanner.team/stops/Benggar1", "https://tec.openplanner.team/stops/H1en104d"], ["https://tec.openplanner.team/stops/X903agb", "https://tec.openplanner.team/stops/X943aaa"], ["https://tec.openplanner.team/stops/H4ff117b", "https://tec.openplanner.team/stops/H4mb138a"], ["https://tec.openplanner.team/stops/Ccosart2", "https://tec.openplanner.team/stops/Crorogn2"], ["https://tec.openplanner.team/stops/LHMchbl1", "https://tec.openplanner.team/stops/LMNswar1"], ["https://tec.openplanner.team/stops/Llgcour1", "https://tec.openplanner.team/stops/Llgdouf1"], ["https://tec.openplanner.team/stops/Clfmonu2", "https://tec.openplanner.team/stops/H1tt104b"], ["https://tec.openplanner.team/stops/N150agb", "https://tec.openplanner.team/stops/N150ahb"], ["https://tec.openplanner.team/stops/N510abb", "https://tec.openplanner.team/stops/N513bha"], ["https://tec.openplanner.team/stops/Brsgfbl2", "https://tec.openplanner.team/stops/Brsgfbl3"], ["https://tec.openplanner.team/stops/X812aya", "https://tec.openplanner.team/stops/X812bba"], ["https://tec.openplanner.team/stops/X612aba", "https://tec.openplanner.team/stops/X623afa"], ["https://tec.openplanner.team/stops/X607agb", "https://tec.openplanner.team/stops/X607akb"], ["https://tec.openplanner.team/stops/Lveoctr2", "https://tec.openplanner.team/stops/Lveoctr3"], ["https://tec.openplanner.team/stops/LwSgeme1", "https://tec.openplanner.team/stops/LwSgeme2"], ["https://tec.openplanner.team/stops/H5el116a", "https://tec.openplanner.team/stops/H5el116b"], ["https://tec.openplanner.team/stops/Cnabult3", "https://tec.openplanner.team/stops/NC14aeb"], ["https://tec.openplanner.team/stops/H2ll177a", "https://tec.openplanner.team/stops/H2ll177b"], ["https://tec.openplanner.team/stops/H2lc169c", "https://tec.openplanner.team/stops/H2lc172b"], ["https://tec.openplanner.team/stops/LVIcarm4", "https://tec.openplanner.team/stops/LVIdeva1"], ["https://tec.openplanner.team/stops/X602aob", "https://tec.openplanner.team/stops/X602asa"], ["https://tec.openplanner.team/stops/X801bxa", "https://tec.openplanner.team/stops/X801cda"], ["https://tec.openplanner.team/stops/Lcepont1", "https://tec.openplanner.team/stops/Lcepont2"], ["https://tec.openplanner.team/stops/Cjumarc1", "https://tec.openplanner.team/stops/Cjumarc3"], ["https://tec.openplanner.team/stops/H1wi152c", "https://tec.openplanner.team/stops/H1wi157c"], ["https://tec.openplanner.team/stops/Bjodtpo1", "https://tec.openplanner.team/stops/Bpiejus2"], ["https://tec.openplanner.team/stops/X801bdc", "https://tec.openplanner.team/stops/X801bde"], ["https://tec.openplanner.team/stops/N507aac", "https://tec.openplanner.team/stops/NL30aka"], ["https://tec.openplanner.team/stops/N301abb", "https://tec.openplanner.team/stops/N301ada"], ["https://tec.openplanner.team/stops/Lhutill1", "https://tec.openplanner.team/stops/Lhutill2"], ["https://tec.openplanner.team/stops/X871aea", "https://tec.openplanner.team/stops/X877aia"], ["https://tec.openplanner.team/stops/Blontry1", "https://tec.openplanner.team/stops/Blontry2"], ["https://tec.openplanner.team/stops/X345aba", "https://tec.openplanner.team/stops/X345abb"], ["https://tec.openplanner.team/stops/X663aab", "https://tec.openplanner.team/stops/X663aqa"], ["https://tec.openplanner.team/stops/Cgxalli1", "https://tec.openplanner.team/stops/CMleer2"], ["https://tec.openplanner.team/stops/X610aja", "https://tec.openplanner.team/stops/X622aba"], ["https://tec.openplanner.team/stops/LBpcren1", "https://tec.openplanner.team/stops/LCAeg--1"], ["https://tec.openplanner.team/stops/Cpccpas1", "https://tec.openplanner.team/stops/Cpceclu2"], ["https://tec.openplanner.team/stops/Bdvmccu1", "https://tec.openplanner.team/stops/Bdvmsar2"], ["https://tec.openplanner.team/stops/Lhrlico2", "https://tec.openplanner.team/stops/Lhrlico3"], ["https://tec.openplanner.team/stops/LMibouv4", "https://tec.openplanner.team/stops/LMisour2"], ["https://tec.openplanner.team/stops/LACwass1", "https://tec.openplanner.team/stops/LACwass2"], ["https://tec.openplanner.team/stops/X904aba", "https://tec.openplanner.team/stops/X904aea"], ["https://tec.openplanner.team/stops/Bgliopp1", "https://tec.openplanner.team/stops/Bgliopp4"], ["https://tec.openplanner.team/stops/LBpecco2", "https://tec.openplanner.team/stops/LLStrid1"], ["https://tec.openplanner.team/stops/Bbchcbl2", "https://tec.openplanner.team/stops/Bbchrra3"], ["https://tec.openplanner.team/stops/H1mq198a", "https://tec.openplanner.team/stops/H1ol145b"], ["https://tec.openplanner.team/stops/Ctmdema1", "https://tec.openplanner.team/stops/Cvvmonu2"], ["https://tec.openplanner.team/stops/H2hp125a", "https://tec.openplanner.team/stops/H2hp125b"], ["https://tec.openplanner.team/stops/LHdfays1", "https://tec.openplanner.team/stops/LVnourt1"], ["https://tec.openplanner.team/stops/Btlbcul1", "https://tec.openplanner.team/stops/Btstw751"], ["https://tec.openplanner.team/stops/Lsebegu2", "https://tec.openplanner.team/stops/Lsephar2"], ["https://tec.openplanner.team/stops/LAUcarr2", "https://tec.openplanner.team/stops/LFdchau1"], ["https://tec.openplanner.team/stops/Clibrun1", "https://tec.openplanner.team/stops/Cliegli1"], ["https://tec.openplanner.team/stops/H5pe137a", "https://tec.openplanner.team/stops/H5pe147a"], ["https://tec.openplanner.team/stops/Llgpbay2", "https://tec.openplanner.team/stops/Llgpiet2"], ["https://tec.openplanner.team/stops/Cfomays1", "https://tec.openplanner.team/stops/Cgxcime1"], ["https://tec.openplanner.team/stops/Bhaldbo1", "https://tec.openplanner.team/stops/Bhalh311"], ["https://tec.openplanner.team/stops/X721agb", "https://tec.openplanner.team/stops/X721aka"], ["https://tec.openplanner.team/stops/H1hv136a", "https://tec.openplanner.team/stops/H1mk123b"], ["https://tec.openplanner.team/stops/X796aha", "https://tec.openplanner.team/stops/X796aia"], ["https://tec.openplanner.team/stops/X750bga", "https://tec.openplanner.team/stops/X750bna"], ["https://tec.openplanner.team/stops/H4cp103a", "https://tec.openplanner.team/stops/H4cw106a"], ["https://tec.openplanner.team/stops/N557aib", "https://tec.openplanner.team/stops/N562afb"], ["https://tec.openplanner.team/stops/N548akb", "https://tec.openplanner.team/stops/N548amb"], ["https://tec.openplanner.team/stops/Cgygazo2", "https://tec.openplanner.team/stops/Cgygazo5"], ["https://tec.openplanner.team/stops/Bmarpla1", "https://tec.openplanner.team/stops/Bvlvmar2"], ["https://tec.openplanner.team/stops/Livcoll2", "https://tec.openplanner.team/stops/Livpost1"], ["https://tec.openplanner.team/stops/LNCesne1", "https://tec.openplanner.team/stops/LNCrami1"], ["https://tec.openplanner.team/stops/Bhenfer2", "https://tec.openplanner.team/stops/Brebcgi1"], ["https://tec.openplanner.team/stops/H4oq225a", "https://tec.openplanner.team/stops/H4wu375a"], ["https://tec.openplanner.team/stops/Boppegl2", "https://tec.openplanner.team/stops/Borbod91"], ["https://tec.openplanner.team/stops/Bkrawil1", "https://tec.openplanner.team/stops/Bleugar1"], ["https://tec.openplanner.team/stops/LWEcite2", "https://tec.openplanner.team/stops/LWEcomp2"], ["https://tec.openplanner.team/stops/X829acb", "https://tec.openplanner.team/stops/X829adb"], ["https://tec.openplanner.team/stops/X870aea", "https://tec.openplanner.team/stops/X870agb"], ["https://tec.openplanner.team/stops/LmDbw--*", "https://tec.openplanner.team/stops/LmDkape2"], ["https://tec.openplanner.team/stops/H2me113a", "https://tec.openplanner.team/stops/H2me115a"], ["https://tec.openplanner.team/stops/Bixlaca2", "https://tec.openplanner.team/stops/Bixleix2"], ["https://tec.openplanner.team/stops/N538aka", "https://tec.openplanner.team/stops/N538asa"], ["https://tec.openplanner.team/stops/LBRtrag2", "https://tec.openplanner.team/stops/LLSba4-2"], ["https://tec.openplanner.team/stops/H4pq113b", "https://tec.openplanner.team/stops/H4pq119b"], ["https://tec.openplanner.team/stops/NL30aja", "https://tec.openplanner.team/stops/NL30ajb"], ["https://tec.openplanner.team/stops/N501ica", "https://tec.openplanner.team/stops/N501icb"], ["https://tec.openplanner.team/stops/X898aia", "https://tec.openplanner.team/stops/X898ajb"], ["https://tec.openplanner.team/stops/Cmeptmi6", "https://tec.openplanner.team/stops/Cmewaya2"], ["https://tec.openplanner.team/stops/X826aga", "https://tec.openplanner.team/stops/X826agb"], ["https://tec.openplanner.team/stops/Llgblon1", "https://tec.openplanner.team/stops/Llgvero3"], ["https://tec.openplanner.team/stops/H1hl124a", "https://tec.openplanner.team/stops/H1vs145b"], ["https://tec.openplanner.team/stops/X768aia", "https://tec.openplanner.team/stops/X768aka"], ["https://tec.openplanner.team/stops/Bllnjpa1", "https://tec.openplanner.team/stops/Bllnlb52"], ["https://tec.openplanner.team/stops/LAmeclu1", "https://tec.openplanner.team/stops/LATlena1"], ["https://tec.openplanner.team/stops/N536aob", "https://tec.openplanner.team/stops/N562aoa"], ["https://tec.openplanner.team/stops/X993abd", "https://tec.openplanner.team/stops/X993aca"], ["https://tec.openplanner.team/stops/H1ev113a", "https://tec.openplanner.team/stops/H1ev113b"], ["https://tec.openplanner.team/stops/LlgOPER5", "https://tec.openplanner.team/stops/LlgOPER6"], ["https://tec.openplanner.team/stops/LAivill2", "https://tec.openplanner.team/stops/LENgend1"], ["https://tec.openplanner.team/stops/Bgnvdep1", "https://tec.openplanner.team/stops/Bgnvoha4"], ["https://tec.openplanner.team/stops/X741aea", "https://tec.openplanner.team/stops/X741afa"], ["https://tec.openplanner.team/stops/X908aoa", "https://tec.openplanner.team/stops/X950aab"], ["https://tec.openplanner.team/stops/LhGadap1", "https://tec.openplanner.team/stops/LhGknip1"], ["https://tec.openplanner.team/stops/LWNcham1", "https://tec.openplanner.team/stops/LWNcime2"], ["https://tec.openplanner.team/stops/X806aab", "https://tec.openplanner.team/stops/X850ana"], ["https://tec.openplanner.team/stops/N231agb", "https://tec.openplanner.team/stops/N291aca"], ["https://tec.openplanner.team/stops/N311afa", "https://tec.openplanner.team/stops/N312aaa"], ["https://tec.openplanner.team/stops/LGLc12-3", "https://tec.openplanner.team/stops/LGLc50-3"], ["https://tec.openplanner.team/stops/Ladclem1", "https://tec.openplanner.team/stops/Ldimeun1"], ["https://tec.openplanner.team/stops/LCUgale2", "https://tec.openplanner.team/stops/LCUmora2"], ["https://tec.openplanner.team/stops/LSeaque3", "https://tec.openplanner.team/stops/LSeaque4"], ["https://tec.openplanner.team/stops/LeYauto1", "https://tec.openplanner.team/stops/LeYauto2"], ["https://tec.openplanner.team/stops/Bllngar7", "https://tec.openplanner.team/stops/Bllngar8"], ["https://tec.openplanner.team/stops/H2lh124b", "https://tec.openplanner.team/stops/H2mm140a"], ["https://tec.openplanner.team/stops/N501dtb", "https://tec.openplanner.team/stops/N501kjb"], ["https://tec.openplanner.team/stops/LGesent1", "https://tec.openplanner.team/stops/LGevygh1"], ["https://tec.openplanner.team/stops/H4ea131b", "https://tec.openplanner.team/stops/H4ea134a"], ["https://tec.openplanner.team/stops/LeUhook2", "https://tec.openplanner.team/stops/LeUwert1"], ["https://tec.openplanner.team/stops/Caiegli1", "https://tec.openplanner.team/stops/N554aaa"], ["https://tec.openplanner.team/stops/N215acb", "https://tec.openplanner.team/stops/N232bfb"], ["https://tec.openplanner.team/stops/Bblagar3", "https://tec.openplanner.team/stops/Bblagard"], ["https://tec.openplanner.team/stops/N214aia", "https://tec.openplanner.team/stops/N214aja"], ["https://tec.openplanner.team/stops/Lscbour2", "https://tec.openplanner.team/stops/Lscgare2"], ["https://tec.openplanner.team/stops/N150agb", "https://tec.openplanner.team/stops/N168aaa"], ["https://tec.openplanner.team/stops/LLUdoya2", "https://tec.openplanner.team/stops/LLUvent4"], ["https://tec.openplanner.team/stops/LHGtige1", "https://tec.openplanner.team/stops/LHGtige2"], ["https://tec.openplanner.team/stops/X754ada", "https://tec.openplanner.team/stops/X754aoa"], ["https://tec.openplanner.team/stops/LrEfeck1", "https://tec.openplanner.team/stops/LrEkape1"], ["https://tec.openplanner.team/stops/Bjodfco2", "https://tec.openplanner.team/stops/Bmrlsau2"], ["https://tec.openplanner.team/stops/LmR90--1", "https://tec.openplanner.team/stops/LmRmuhl2"], ["https://tec.openplanner.team/stops/Lvegera2", "https://tec.openplanner.team/stops/Lvehout1"], ["https://tec.openplanner.team/stops/N101aaa", "https://tec.openplanner.team/stops/N118aka"], ["https://tec.openplanner.team/stops/H1bb118a", "https://tec.openplanner.team/stops/H1bo107b"], ["https://tec.openplanner.team/stops/X640ata", "https://tec.openplanner.team/stops/X640atb"], ["https://tec.openplanner.team/stops/H5rx130a", "https://tec.openplanner.team/stops/H5rx130b"], ["https://tec.openplanner.team/stops/N501cya", "https://tec.openplanner.team/stops/N528aga"], ["https://tec.openplanner.team/stops/X622aeb", "https://tec.openplanner.team/stops/X622afb"], ["https://tec.openplanner.team/stops/Bquegob2", "https://tec.openplanner.team/stops/Brebraf2"], ["https://tec.openplanner.team/stops/Llgdepo1", "https://tec.openplanner.team/stops/Llgmagh2"], ["https://tec.openplanner.team/stops/Blinbru2", "https://tec.openplanner.team/stops/Blindel2"], ["https://tec.openplanner.team/stops/Bbrlvil2", "https://tec.openplanner.team/stops/Bhaless1"], ["https://tec.openplanner.team/stops/LBkcarr3", "https://tec.openplanner.team/stops/LMsheid1"], ["https://tec.openplanner.team/stops/N544afb", "https://tec.openplanner.team/stops/N547adb"], ["https://tec.openplanner.team/stops/LSZclem1", "https://tec.openplanner.team/stops/LSZclem2"], ["https://tec.openplanner.team/stops/H3so159a", "https://tec.openplanner.team/stops/H3so172a"], ["https://tec.openplanner.team/stops/Bclgpla1", "https://tec.openplanner.team/stops/Bclgvse2"], ["https://tec.openplanner.team/stops/Blaspch1", "https://tec.openplanner.team/stops/Blaspch2"], ["https://tec.openplanner.team/stops/Lagsauh1", "https://tec.openplanner.team/stops/Lemmath1"], ["https://tec.openplanner.team/stops/N106aba", "https://tec.openplanner.team/stops/N137abb"], ["https://tec.openplanner.team/stops/LlCgren1", "https://tec.openplanner.team/stops/LrAputz1"], ["https://tec.openplanner.team/stops/H1en102a", "https://tec.openplanner.team/stops/H1mk107a"], ["https://tec.openplanner.team/stops/H1ni315a", "https://tec.openplanner.team/stops/H1ni320b"], ["https://tec.openplanner.team/stops/X601bbb", "https://tec.openplanner.team/stops/X601cza"], ["https://tec.openplanner.team/stops/LMibouv4", "https://tec.openplanner.team/stops/LSTmast2"], ["https://tec.openplanner.team/stops/Lrcchpl2", "https://tec.openplanner.team/stops/Lrchero2"], ["https://tec.openplanner.team/stops/H1do115b", "https://tec.openplanner.team/stops/H1do125a"], ["https://tec.openplanner.team/stops/N550afa", "https://tec.openplanner.team/stops/N550afb"], ["https://tec.openplanner.team/stops/Lemlacr1", "https://tec.openplanner.team/stops/Lemlacr2"], ["https://tec.openplanner.team/stops/LMfpeni*", "https://tec.openplanner.team/stops/NL73aab"], ["https://tec.openplanner.team/stops/LHUomni2", "https://tec.openplanner.team/stops/LHUsaul1"], ["https://tec.openplanner.team/stops/Bnstpla2", "https://tec.openplanner.team/stops/H2na136a"], ["https://tec.openplanner.team/stops/Bmarcha2", "https://tec.openplanner.team/stops/Bmarchn1"], ["https://tec.openplanner.team/stops/Ljegoss2", "https://tec.openplanner.team/stops/Ljehotv1"], ["https://tec.openplanner.team/stops/Cbmgrav1", "https://tec.openplanner.team/stops/Cbmvalt2"], ["https://tec.openplanner.team/stops/LWNfani1", "https://tec.openplanner.team/stops/LWNwavr2"], ["https://tec.openplanner.team/stops/Blpgvil2", "https://tec.openplanner.team/stops/Cbtstac2"], ["https://tec.openplanner.team/stops/X736aab", "https://tec.openplanner.team/stops/X937aja"], ["https://tec.openplanner.team/stops/H1bb116b", "https://tec.openplanner.team/stops/H1bo104b"], ["https://tec.openplanner.team/stops/Bblagar6", "https://tec.openplanner.team/stops/Bblapje2"], ["https://tec.openplanner.team/stops/H4ru238b", "https://tec.openplanner.team/stops/H4ru239b"], ["https://tec.openplanner.team/stops/H4eq123a", "https://tec.openplanner.team/stops/H4rc232d"], ["https://tec.openplanner.team/stops/LNHhome2", "https://tec.openplanner.team/stops/LTipont1"], ["https://tec.openplanner.team/stops/Cmyvesa2", "https://tec.openplanner.team/stops/Cmyvesa3"], ["https://tec.openplanner.team/stops/Lrechap1", "https://tec.openplanner.team/stops/Lrechap2"], ["https://tec.openplanner.team/stops/LHUcomp1", "https://tec.openplanner.team/stops/LHUmari1"], ["https://tec.openplanner.team/stops/H1on128b", "https://tec.openplanner.team/stops/H1on129b"], ["https://tec.openplanner.team/stops/Ljubeyn1", "https://tec.openplanner.team/stops/Ljubeyn2"], ["https://tec.openplanner.team/stops/LWEpaul1", "https://tec.openplanner.team/stops/LWEpaul2"], ["https://tec.openplanner.team/stops/H1hy128a", "https://tec.openplanner.team/stops/H1qy131b"], ["https://tec.openplanner.team/stops/X727ada", "https://tec.openplanner.team/stops/X746aaa"], ["https://tec.openplanner.team/stops/LAYcorn2", "https://tec.openplanner.team/stops/LAYfoot2"], ["https://tec.openplanner.team/stops/Lmncasi2", "https://tec.openplanner.team/stops/Lmnfawe2"], ["https://tec.openplanner.team/stops/N313aea", "https://tec.openplanner.team/stops/N313aeb"], ["https://tec.openplanner.team/stops/LLTcent2", "https://tec.openplanner.team/stops/LLThosd2"], ["https://tec.openplanner.team/stops/LVNbale1", "https://tec.openplanner.team/stops/LVNbale2"], ["https://tec.openplanner.team/stops/LLMcouv1", "https://tec.openplanner.team/stops/LLMcouv2"], ["https://tec.openplanner.team/stops/Bllncom1", "https://tec.openplanner.team/stops/Bllngar9"], ["https://tec.openplanner.team/stops/H1gr116a", "https://tec.openplanner.team/stops/H1gr116b"], ["https://tec.openplanner.team/stops/H4bh103a", "https://tec.openplanner.team/stops/H4bh105b"], ["https://tec.openplanner.team/stops/X661aka", "https://tec.openplanner.team/stops/X661asb"], ["https://tec.openplanner.team/stops/LBalacr1", "https://tec.openplanner.team/stops/LBalacr2"], ["https://tec.openplanner.team/stops/Bgnvfai1", "https://tec.openplanner.team/stops/Blhugar2"], ["https://tec.openplanner.team/stops/Bernegl3", "https://tec.openplanner.team/stops/Bernrar1"], ["https://tec.openplanner.team/stops/H4ms146a", "https://tec.openplanner.team/stops/H4ms146b"], ["https://tec.openplanner.team/stops/Cgocnor2", "https://tec.openplanner.team/stops/Cgocnor4"], ["https://tec.openplanner.team/stops/Bpte1ma1", "https://tec.openplanner.team/stops/Brebpca2"], ["https://tec.openplanner.team/stops/LSHhade2", "https://tec.openplanner.team/stops/LSHries2"], ["https://tec.openplanner.team/stops/N506bod", "https://tec.openplanner.team/stops/N506bsb"], ["https://tec.openplanner.team/stops/H1ms268b", "https://tec.openplanner.team/stops/H1ms281a"], ["https://tec.openplanner.team/stops/Lsehya-1", "https://tec.openplanner.team/stops/Lsepair1"], ["https://tec.openplanner.team/stops/H2mo144a", "https://tec.openplanner.team/stops/H2mo144b"], ["https://tec.openplanner.team/stops/Bgnvgir2", "https://tec.openplanner.team/stops/Blhumga2"], ["https://tec.openplanner.team/stops/LEMeg--1", "https://tec.openplanner.team/stops/LLAbure2"], ["https://tec.openplanner.team/stops/X601asb", "https://tec.openplanner.team/stops/X601bwa"], ["https://tec.openplanner.team/stops/N501hya", "https://tec.openplanner.team/stops/N501ikb"], ["https://tec.openplanner.team/stops/H4la196a", "https://tec.openplanner.team/stops/H4la197a"], ["https://tec.openplanner.team/stops/LSRbouh2", "https://tec.openplanner.team/stops/LSReg--1"], ["https://tec.openplanner.team/stops/H2sv217b", "https://tec.openplanner.team/stops/H2sv221b"], ["https://tec.openplanner.team/stops/X617acb", "https://tec.openplanner.team/stops/X617aga"], ["https://tec.openplanner.team/stops/X786ahb", "https://tec.openplanner.team/stops/X786aib"], ["https://tec.openplanner.team/stops/N581aaa", "https://tec.openplanner.team/stops/N581aba"], ["https://tec.openplanner.team/stops/X730aga", "https://tec.openplanner.team/stops/X731afa"], ["https://tec.openplanner.team/stops/Bllncbr2", "https://tec.openplanner.team/stops/Bllnpaf2"], ["https://tec.openplanner.team/stops/N244aab", "https://tec.openplanner.team/stops/N244aca"], ["https://tec.openplanner.team/stops/Bsaupco1", "https://tec.openplanner.team/stops/N541abb"], ["https://tec.openplanner.team/stops/X606abb", "https://tec.openplanner.team/stops/X620afa"], ["https://tec.openplanner.team/stops/Lsecris3", "https://tec.openplanner.team/stops/Lsecris4"], ["https://tec.openplanner.team/stops/X804avb", "https://tec.openplanner.team/stops/X804bua"], ["https://tec.openplanner.team/stops/Canfief2", "https://tec.openplanner.team/stops/Canrsta1"], ["https://tec.openplanner.team/stops/N529aba", "https://tec.openplanner.team/stops/N529abd"], ["https://tec.openplanner.team/stops/N566aeb", "https://tec.openplanner.team/stops/N566afb"], ["https://tec.openplanner.team/stops/Bbghepi2", "https://tec.openplanner.team/stops/Bstecou1"], ["https://tec.openplanner.team/stops/H4by119b", "https://tec.openplanner.team/stops/H4ro155b"], ["https://tec.openplanner.team/stops/Bsaumlk1", "https://tec.openplanner.team/stops/Bsaumlk2"], ["https://tec.openplanner.team/stops/LMApl--2", "https://tec.openplanner.team/stops/LMAstei2"], ["https://tec.openplanner.team/stops/LXobaty1", "https://tec.openplanner.team/stops/X599agb"], ["https://tec.openplanner.team/stops/H4ty397a", "https://tec.openplanner.team/stops/H4ty397b"], ["https://tec.openplanner.team/stops/X615aha", "https://tec.openplanner.team/stops/X615apa"], ["https://tec.openplanner.team/stops/LTNmont1", "https://tec.openplanner.team/stops/LTNmont2"], ["https://tec.openplanner.team/stops/LAx41--2", "https://tec.openplanner.team/stops/LFsgend1"], ["https://tec.openplanner.team/stops/Cnacout1", "https://tec.openplanner.team/stops/NC14aqb"], ["https://tec.openplanner.team/stops/N231aba", "https://tec.openplanner.team/stops/N231abb"], ["https://tec.openplanner.team/stops/X741ala", "https://tec.openplanner.team/stops/X741aob"], ["https://tec.openplanner.team/stops/H4mt221b", "https://tec.openplanner.team/stops/H4mt222a"], ["https://tec.openplanner.team/stops/Lhrlico1", "https://tec.openplanner.team/stops/Lhrpwan2"], ["https://tec.openplanner.team/stops/LHEcoll1", "https://tec.openplanner.team/stops/LHEhv--1"], ["https://tec.openplanner.team/stops/Bwatbce2", "https://tec.openplanner.team/stops/Bwatmco2"], ["https://tec.openplanner.team/stops/Bquecge2", "https://tec.openplanner.team/stops/Bquegen2"], ["https://tec.openplanner.team/stops/H4te248b", "https://tec.openplanner.team/stops/H4te252b"], ["https://tec.openplanner.team/stops/LFCkett2", "https://tec.openplanner.team/stops/LFCvoer2"], ["https://tec.openplanner.team/stops/Llgchal1", "https://tec.openplanner.team/stops/Llgchal2"], ["https://tec.openplanner.team/stops/Cdogrro1", "https://tec.openplanner.team/stops/Cdogrro2"], ["https://tec.openplanner.team/stops/X741ajc", "https://tec.openplanner.team/stops/X741aka"], ["https://tec.openplanner.team/stops/Cmlipsm3", "https://tec.openplanner.team/stops/Cmmbmad2"], ["https://tec.openplanner.team/stops/LBkcare*", "https://tec.openplanner.team/stops/LBkgrae1"], ["https://tec.openplanner.team/stops/H1hy127a", "https://tec.openplanner.team/stops/H1hy130b"], ["https://tec.openplanner.team/stops/Ladloup2", "https://tec.openplanner.team/stops/Ladpara1"], ["https://tec.openplanner.team/stops/LBEtrix2", "https://tec.openplanner.team/stops/LDLbois1"], ["https://tec.openplanner.team/stops/Bbcodam3", "https://tec.openplanner.team/stops/Bbcohou4"], ["https://tec.openplanner.team/stops/Lsechan1", "https://tec.openplanner.team/stops/Lsestap4"], ["https://tec.openplanner.team/stops/Bbaucba2", "https://tec.openplanner.team/stops/Bbautri1"], ["https://tec.openplanner.team/stops/LCOdrol2", "https://tec.openplanner.team/stops/Lpejonc1"], ["https://tec.openplanner.team/stops/Lagindu2", "https://tec.openplanner.team/stops/Lagsauh1"], ["https://tec.openplanner.team/stops/X901ana", "https://tec.openplanner.team/stops/X901bna"], ["https://tec.openplanner.team/stops/Cbbcent2", "https://tec.openplanner.team/stops/Cbblacb1"], ["https://tec.openplanner.team/stops/X850agb", "https://tec.openplanner.team/stops/X850anb"], ["https://tec.openplanner.team/stops/LLAeg--1", "https://tec.openplanner.team/stops/LLAvi651"], ["https://tec.openplanner.team/stops/LHMbami1", "https://tec.openplanner.team/stops/LMNheme2"], ["https://tec.openplanner.team/stops/X607agb", "https://tec.openplanner.team/stops/X620agb"], ["https://tec.openplanner.team/stops/Llianix3", "https://tec.openplanner.team/stops/Lmitech2"], ["https://tec.openplanner.team/stops/H4bw100b", "https://tec.openplanner.team/stops/H4co149a"], ["https://tec.openplanner.team/stops/X684aab", "https://tec.openplanner.team/stops/X688aaa"], ["https://tec.openplanner.team/stops/N118agb", "https://tec.openplanner.team/stops/N118ayb"], ["https://tec.openplanner.team/stops/Bnetegl3", "https://tec.openplanner.team/stops/Bnetrec2"], ["https://tec.openplanner.team/stops/N539bca", "https://tec.openplanner.team/stops/N539bda"], ["https://tec.openplanner.team/stops/X610acb", "https://tec.openplanner.team/stops/X610adb"], ["https://tec.openplanner.team/stops/X899aca", "https://tec.openplanner.team/stops/X899adb"], ["https://tec.openplanner.team/stops/N117aua", "https://tec.openplanner.team/stops/N117aud"], ["https://tec.openplanner.team/stops/LHFcaqu1", "https://tec.openplanner.team/stops/LHFec--2"], ["https://tec.openplanner.team/stops/LREairp1", "https://tec.openplanner.team/stops/LREhenu1"], ["https://tec.openplanner.team/stops/H4bv146b", "https://tec.openplanner.team/stops/H5at141a"], ["https://tec.openplanner.team/stops/Ladabot1", "https://tec.openplanner.team/stops/Ladabot2"], ["https://tec.openplanner.team/stops/X659apb", "https://tec.openplanner.team/stops/X659aua"], ["https://tec.openplanner.team/stops/LSGhagn1", "https://tec.openplanner.team/stops/LSGsolo2"], ["https://tec.openplanner.team/stops/H1ms293a", "https://tec.openplanner.team/stops/H1ms921a"], ["https://tec.openplanner.team/stops/H1br132b", "https://tec.openplanner.team/stops/H1ev116b"], ["https://tec.openplanner.team/stops/Lvteg--2", "https://tec.openplanner.team/stops/Lvtegli*"], ["https://tec.openplanner.team/stops/Ctarpoi2", "https://tec.openplanner.team/stops/N543bqb"], ["https://tec.openplanner.team/stops/Cpcathe2", "https://tec.openplanner.team/stops/Cpcegli1"], ["https://tec.openplanner.team/stops/H2ll189b", "https://tec.openplanner.team/stops/H2ll257a"], ["https://tec.openplanner.team/stops/LTPpreh1", "https://tec.openplanner.team/stops/LTPpreh2"], ["https://tec.openplanner.team/stops/H1ci102b", "https://tec.openplanner.team/stops/H1mv243b"], ["https://tec.openplanner.team/stops/LLVe75-1", "https://tec.openplanner.team/stops/X575adb"], ["https://tec.openplanner.team/stops/LBseg--1", "https://tec.openplanner.team/stops/LBsfer-2"], ["https://tec.openplanner.team/stops/Ljemeca2", "https://tec.openplanner.team/stops/Lsetroq2"], ["https://tec.openplanner.team/stops/Blnzcar1", "https://tec.openplanner.team/stops/N522aca"], ["https://tec.openplanner.team/stops/Bgoegma2", "https://tec.openplanner.team/stops/Bpienod2"], ["https://tec.openplanner.team/stops/H4ty274a", "https://tec.openplanner.team/stops/H4ty317b"], ["https://tec.openplanner.team/stops/H4ep127b", "https://tec.openplanner.team/stops/H4ep130b"], ["https://tec.openplanner.team/stops/N528agb", "https://tec.openplanner.team/stops/N528apa"], ["https://tec.openplanner.team/stops/H4mo178a", "https://tec.openplanner.team/stops/H4mo205a"], ["https://tec.openplanner.team/stops/X762adb", "https://tec.openplanner.team/stops/X762aea"], ["https://tec.openplanner.team/stops/Cgonvro2", "https://tec.openplanner.team/stops/Cgonvro3"], ["https://tec.openplanner.team/stops/N529aea", "https://tec.openplanner.team/stops/N529aeb"], ["https://tec.openplanner.team/stops/LbHzent1", "https://tec.openplanner.team/stops/LrUbrac3"], ["https://tec.openplanner.team/stops/N524acb", "https://tec.openplanner.team/stops/N541ada"], ["https://tec.openplanner.team/stops/N528abb", "https://tec.openplanner.team/stops/N528ara"], ["https://tec.openplanner.team/stops/Lvcbalt1", "https://tec.openplanner.team/stops/Lvcecol1"], ["https://tec.openplanner.team/stops/Bllncom1", "https://tec.openplanner.team/stops/Bllnfla2"], ["https://tec.openplanner.team/stops/LFyanto1", "https://tec.openplanner.team/stops/LsHlenz2"], ["https://tec.openplanner.team/stops/H2hg152b", "https://tec.openplanner.team/stops/H2hg156b"], ["https://tec.openplanner.team/stops/N232aab", "https://tec.openplanner.team/stops/N286aaa"], ["https://tec.openplanner.team/stops/LDmcruc1", "https://tec.openplanner.team/stops/LDmdegi1"], ["https://tec.openplanner.team/stops/X870aba", "https://tec.openplanner.team/stops/X870afa"], ["https://tec.openplanner.team/stops/N534amg", "https://tec.openplanner.team/stops/N534amh"], ["https://tec.openplanner.team/stops/H1qy132b", "https://tec.openplanner.team/stops/H1qy137a"], ["https://tec.openplanner.team/stops/Bhmmgar1", "https://tec.openplanner.team/stops/Bhmmpos1"], ["https://tec.openplanner.team/stops/N501bma", "https://tec.openplanner.team/stops/N501bna"], ["https://tec.openplanner.team/stops/Bbsggot1", "https://tec.openplanner.team/stops/Bhmmcge1"], ["https://tec.openplanner.team/stops/X983adb", "https://tec.openplanner.team/stops/X983aeb"], ["https://tec.openplanner.team/stops/N562blb", "https://tec.openplanner.team/stops/N562bnb"], ["https://tec.openplanner.team/stops/Lhrgall1", "https://tec.openplanner.team/stops/Lhrtunn1"], ["https://tec.openplanner.team/stops/N531aab", "https://tec.openplanner.team/stops/N531aua"], ["https://tec.openplanner.team/stops/CMmorg2", "https://tec.openplanner.team/stops/Cmoecol2"], ["https://tec.openplanner.team/stops/LAUbour2", "https://tec.openplanner.team/stops/LAUbour3"], ["https://tec.openplanner.team/stops/LPLarbo1", "https://tec.openplanner.team/stops/LPLaube2"], ["https://tec.openplanner.team/stops/X825abb", "https://tec.openplanner.team/stops/X826agb"], ["https://tec.openplanner.team/stops/H2hp114b", "https://tec.openplanner.team/stops/H2hp262b"], ["https://tec.openplanner.team/stops/X837aaa", "https://tec.openplanner.team/stops/X837abb"], ["https://tec.openplanner.team/stops/LOTmonu2", "https://tec.openplanner.team/stops/LOTsava1"], ["https://tec.openplanner.team/stops/LFLetoi2", "https://tec.openplanner.team/stops/LREraph3"], ["https://tec.openplanner.team/stops/H4mo159a", "https://tec.openplanner.team/stops/H4mo169a"], ["https://tec.openplanner.team/stops/X730aaa", "https://tec.openplanner.team/stops/X730afa"], ["https://tec.openplanner.team/stops/H2ml113b", "https://tec.openplanner.team/stops/H2mo119a"], ["https://tec.openplanner.team/stops/Cjufauv2", "https://tec.openplanner.team/stops/Cjuheig1"], ["https://tec.openplanner.team/stops/H1mq198a", "https://tec.openplanner.team/stops/H5is171b"], ["https://tec.openplanner.team/stops/X619afb", "https://tec.openplanner.team/stops/X696ada"], ["https://tec.openplanner.team/stops/X640anb", "https://tec.openplanner.team/stops/X640apb"], ["https://tec.openplanner.team/stops/Bptblma2", "https://tec.openplanner.team/stops/Bptbmco1"], ["https://tec.openplanner.team/stops/LHFwaut1", "https://tec.openplanner.team/stops/LHFwaut2"], ["https://tec.openplanner.team/stops/H4mt215b", "https://tec.openplanner.team/stops/H4mt216b"], ["https://tec.openplanner.team/stops/H1ca106a", "https://tec.openplanner.team/stops/H3so164a"], ["https://tec.openplanner.team/stops/H1fl133a", "https://tec.openplanner.team/stops/H1fl133f"], ["https://tec.openplanner.team/stops/Lsepapi1", "https://tec.openplanner.team/stops/Lsepapi3"], ["https://tec.openplanner.team/stops/Cmyboci1", "https://tec.openplanner.team/stops/Cmyvert1"], ["https://tec.openplanner.team/stops/H4mo148b", "https://tec.openplanner.team/stops/H4mo184a"], ["https://tec.openplanner.team/stops/Bincbbo3", "https://tec.openplanner.team/stops/Bincdon1"], ["https://tec.openplanner.team/stops/Cbmpano2", "https://tec.openplanner.team/stops/H1bt100a"], ["https://tec.openplanner.team/stops/X625abb", "https://tec.openplanner.team/stops/X625afb"], ["https://tec.openplanner.team/stops/N501eeb", "https://tec.openplanner.team/stops/N501kfb"], ["https://tec.openplanner.team/stops/Lrocort1", "https://tec.openplanner.team/stops/Lromc--2"], ["https://tec.openplanner.team/stops/N509ajb", "https://tec.openplanner.team/stops/N509ala"], ["https://tec.openplanner.team/stops/LSogare2", "https://tec.openplanner.team/stops/LtEnach1"], ["https://tec.openplanner.team/stops/Cpl4bra1", "https://tec.openplanner.team/stops/Cplcite1"], ["https://tec.openplanner.team/stops/Lghpero2", "https://tec.openplanner.team/stops/Lghremy2"], ["https://tec.openplanner.team/stops/X359aab", "https://tec.openplanner.team/stops/X371afb"], ["https://tec.openplanner.team/stops/X614asa", "https://tec.openplanner.team/stops/X614asb"], ["https://tec.openplanner.team/stops/X359adb", "https://tec.openplanner.team/stops/X359aka"], ["https://tec.openplanner.team/stops/Ccicent2", "https://tec.openplanner.team/stops/Ccipech1"], ["https://tec.openplanner.team/stops/N120amb", "https://tec.openplanner.team/stops/N121ahb"], ["https://tec.openplanner.team/stops/H1po132b", "https://tec.openplanner.team/stops/H1po135d"], ["https://tec.openplanner.team/stops/X650afe", "https://tec.openplanner.team/stops/X650aia"], ["https://tec.openplanner.team/stops/Cloravi1", "https://tec.openplanner.team/stops/Cloravi2"], ["https://tec.openplanner.team/stops/X927aba", "https://tec.openplanner.team/stops/X927ada"], ["https://tec.openplanner.team/stops/X611aca", "https://tec.openplanner.team/stops/X611aea"], ["https://tec.openplanner.team/stops/Caccarr2", "https://tec.openplanner.team/stops/NC24aka"], ["https://tec.openplanner.team/stops/X639aoa", "https://tec.openplanner.team/stops/X639apb"], ["https://tec.openplanner.team/stops/Cnahahe2", "https://tec.openplanner.team/stops/Cnarmon1"], ["https://tec.openplanner.team/stops/LCLscie1", "https://tec.openplanner.team/stops/LCLscie2"], ["https://tec.openplanner.team/stops/N215aca", "https://tec.openplanner.team/stops/N215acb"], ["https://tec.openplanner.team/stops/N101aea", "https://tec.openplanner.team/stops/N101ana"], ["https://tec.openplanner.team/stops/N202aba", "https://tec.openplanner.team/stops/N202aca"], ["https://tec.openplanner.team/stops/Cflcoro1", "https://tec.openplanner.team/stops/Cflcoro2"], ["https://tec.openplanner.team/stops/X742aea", "https://tec.openplanner.team/stops/X742aeb"], ["https://tec.openplanner.team/stops/LaMhe831", "https://tec.openplanner.team/stops/LmDwei31"], ["https://tec.openplanner.team/stops/X750aca", "https://tec.openplanner.team/stops/X750acb"], ["https://tec.openplanner.team/stops/LVleg--1", "https://tec.openplanner.team/stops/LVlroua4"], ["https://tec.openplanner.team/stops/Ccobour1", "https://tec.openplanner.team/stops/Cgxfo141"], ["https://tec.openplanner.team/stops/Bgemibb2", "https://tec.openplanner.team/stops/N522acb"], ["https://tec.openplanner.team/stops/N525aed", "https://tec.openplanner.team/stops/N525ala"], ["https://tec.openplanner.team/stops/N501ebz", "https://tec.openplanner.team/stops/N501kbb"], ["https://tec.openplanner.team/stops/H1gg146a", "https://tec.openplanner.team/stops/H1gg146b"], ["https://tec.openplanner.team/stops/N549aea", "https://tec.openplanner.team/stops/N550afb"], ["https://tec.openplanner.team/stops/LaAlinz2", "https://tec.openplanner.team/stops/LaAneul2"], ["https://tec.openplanner.team/stops/Bbealon4", "https://tec.openplanner.team/stops/Bbeascl1"], ["https://tec.openplanner.team/stops/H2ll194a", "https://tec.openplanner.team/stops/H2ll201b"], ["https://tec.openplanner.team/stops/X601caa", "https://tec.openplanner.team/stops/X612aba"], ["https://tec.openplanner.team/stops/H2lh126a", "https://tec.openplanner.team/stops/H2mo146a"], ["https://tec.openplanner.team/stops/LHMa2322", "https://tec.openplanner.team/stops/LHMaube2"], ["https://tec.openplanner.team/stops/Bhevgar1", "https://tec.openplanner.team/stops/Bhevgro2"], ["https://tec.openplanner.team/stops/H1me115a", "https://tec.openplanner.team/stops/H1me115b"], ["https://tec.openplanner.team/stops/Bpelegl2", "https://tec.openplanner.team/stops/Bpelegl4"], ["https://tec.openplanner.team/stops/Lbrchur2", "https://tec.openplanner.team/stops/Llgcorn3"], ["https://tec.openplanner.team/stops/H4mv196a", "https://tec.openplanner.team/stops/H4oe149a"], ["https://tec.openplanner.team/stops/X647aaa", "https://tec.openplanner.team/stops/X647aab"], ["https://tec.openplanner.team/stops/LeLkalt2", "https://tec.openplanner.team/stops/LeLzost2"], ["https://tec.openplanner.team/stops/Blascsl1", "https://tec.openplanner.team/stops/Blasren1"], ["https://tec.openplanner.team/stops/LHAvall1", "https://tec.openplanner.team/stops/LHAvall2"], ["https://tec.openplanner.team/stops/H2hl112a", "https://tec.openplanner.team/stops/H2hp118b"], ["https://tec.openplanner.team/stops/X609ama", "https://tec.openplanner.team/stops/X609ana"], ["https://tec.openplanner.team/stops/LmIkirc2", "https://tec.openplanner.team/stops/LmIzent1"], ["https://tec.openplanner.team/stops/H1br121a", "https://tec.openplanner.team/stops/H1br121b"], ["https://tec.openplanner.team/stops/Lrcastr1", "https://tec.openplanner.team/stops/Lrcastr4"], ["https://tec.openplanner.team/stops/N548aib", "https://tec.openplanner.team/stops/N569ada"], ["https://tec.openplanner.team/stops/LLteg--2", "https://tec.openplanner.team/stops/LLtrout2"], ["https://tec.openplanner.team/stops/N534bva", "https://tec.openplanner.team/stops/N534bvb"], ["https://tec.openplanner.team/stops/N503ala", "https://tec.openplanner.team/stops/N509bga"], ["https://tec.openplanner.team/stops/X834aca", "https://tec.openplanner.team/stops/X834acb"], ["https://tec.openplanner.team/stops/LBRruel1", "https://tec.openplanner.team/stops/LBRruel2"], ["https://tec.openplanner.team/stops/X925ada", "https://tec.openplanner.team/stops/X925ala"], ["https://tec.openplanner.team/stops/Lpecroi2", "https://tec.openplanner.team/stops/Lpevove1"], ["https://tec.openplanner.team/stops/LLAcalv1", "https://tec.openplanner.team/stops/LMgkrui2"], ["https://tec.openplanner.team/stops/X840aaa", "https://tec.openplanner.team/stops/X840agb"], ["https://tec.openplanner.team/stops/LKmcabi1", "https://tec.openplanner.team/stops/LKmcabi2"], ["https://tec.openplanner.team/stops/Bnilpco1", "https://tec.openplanner.team/stops/Bnilwal1"], ["https://tec.openplanner.team/stops/X919ada", "https://tec.openplanner.team/stops/X979ahb"], ["https://tec.openplanner.team/stops/Lkiblan1", "https://tec.openplanner.team/stops/Lkirenk1"], ["https://tec.openplanner.team/stops/H4me213b", "https://tec.openplanner.team/stops/H4mt222a"], ["https://tec.openplanner.team/stops/X664aca", "https://tec.openplanner.team/stops/X664add"], ["https://tec.openplanner.team/stops/X735aca", "https://tec.openplanner.team/stops/X736aja"], ["https://tec.openplanner.team/stops/Bnilpje1", "https://tec.openplanner.team/stops/Bniltri2"], ["https://tec.openplanner.team/stops/LBichat1", "https://tec.openplanner.team/stops/LBieg--3"], ["https://tec.openplanner.team/stops/Cmlgoff2", "https://tec.openplanner.team/stops/Cmlvpla1"], ["https://tec.openplanner.team/stops/LhRwere1", "https://tec.openplanner.team/stops/LhRwere2"], ["https://tec.openplanner.team/stops/N529aaa", "https://tec.openplanner.team/stops/N529aeb"], ["https://tec.openplanner.team/stops/X720aca", "https://tec.openplanner.team/stops/X720aeb"], ["https://tec.openplanner.team/stops/LBzec--2", "https://tec.openplanner.team/stops/LVBchau2"], ["https://tec.openplanner.team/stops/LCxchal1", "https://tec.openplanner.team/stops/LCxreno2"], ["https://tec.openplanner.team/stops/NL37aia", "https://tec.openplanner.team/stops/NL37ajb"], ["https://tec.openplanner.team/stops/Lreclou1", "https://tec.openplanner.team/stops/Lreclou2"], ["https://tec.openplanner.team/stops/N167aab", "https://tec.openplanner.team/stops/N167aga"], ["https://tec.openplanner.team/stops/H1fr113a", "https://tec.openplanner.team/stops/H1lb136b"], ["https://tec.openplanner.team/stops/NR21aga", "https://tec.openplanner.team/stops/NR21aha"], ["https://tec.openplanner.team/stops/Blimd672", "https://tec.openplanner.team/stops/Blimegl2"], ["https://tec.openplanner.team/stops/Lhrlalo2", "https://tec.openplanner.team/stops/Lhrlalo3"], ["https://tec.openplanner.team/stops/H1mb125a", "https://tec.openplanner.team/stops/H1mb130a"], ["https://tec.openplanner.team/stops/H1bo100a", "https://tec.openplanner.team/stops/H1bo109b"], ["https://tec.openplanner.team/stops/Lmitech2", "https://tec.openplanner.team/stops/Lvtcalv2"], ["https://tec.openplanner.team/stops/X363abb", "https://tec.openplanner.team/stops/X363adb"], ["https://tec.openplanner.team/stops/H2sb259a", "https://tec.openplanner.team/stops/H3lr113b"], ["https://tec.openplanner.team/stops/N501hhb", "https://tec.openplanner.team/stops/N501hia"], ["https://tec.openplanner.team/stops/H1ch132a", "https://tec.openplanner.team/stops/H5at131a"], ["https://tec.openplanner.team/stops/X601ana", "https://tec.openplanner.team/stops/X601cda"], ["https://tec.openplanner.team/stops/X750aea", "https://tec.openplanner.team/stops/X780adb"], ["https://tec.openplanner.team/stops/N508ajd", "https://tec.openplanner.team/stops/N513bib"], ["https://tec.openplanner.team/stops/LCxcour2", "https://tec.openplanner.team/stops/LCxfawe1"], ["https://tec.openplanner.team/stops/X812ara", "https://tec.openplanner.team/stops/X812aua"], ["https://tec.openplanner.team/stops/Cmlphai2", "https://tec.openplanner.team/stops/Cmlpomm1"], ["https://tec.openplanner.team/stops/Btgrdoc1", "https://tec.openplanner.team/stops/N584aga"], ["https://tec.openplanner.team/stops/X601bob", "https://tec.openplanner.team/stops/X601dga"], ["https://tec.openplanner.team/stops/LHUfoss*", "https://tec.openplanner.team/stops/NL80aca"], ["https://tec.openplanner.team/stops/Llgfont1", "https://tec.openplanner.team/stops/Llgjose1"], ["https://tec.openplanner.team/stops/LBEssab2", "https://tec.openplanner.team/stops/LPReg--1"], ["https://tec.openplanner.team/stops/N390ada", "https://tec.openplanner.team/stops/X390ana"], ["https://tec.openplanner.team/stops/H1te179b", "https://tec.openplanner.team/stops/H1te186a"], ["https://tec.openplanner.team/stops/LLrpape1", "https://tec.openplanner.team/stops/LLrpape4"], ["https://tec.openplanner.team/stops/LWDeg--2", "https://tec.openplanner.team/stops/LWDsieg1"], ["https://tec.openplanner.team/stops/X660aea", "https://tec.openplanner.team/stops/X840aaa"], ["https://tec.openplanner.team/stops/Bhevgro2", "https://tec.openplanner.team/stops/Bleunaa2"], ["https://tec.openplanner.team/stops/X623aba", "https://tec.openplanner.team/stops/X623acc"], ["https://tec.openplanner.team/stops/X784aha", "https://tec.openplanner.team/stops/X784aia"], ["https://tec.openplanner.team/stops/H5wo125a", "https://tec.openplanner.team/stops/H5wo126a"], ["https://tec.openplanner.team/stops/X899aba", "https://tec.openplanner.team/stops/X899agb"], ["https://tec.openplanner.team/stops/LOV48--1", "https://tec.openplanner.team/stops/LOVchen1"], ["https://tec.openplanner.team/stops/H1ms276a", "https://tec.openplanner.team/stops/H1ms284a"], ["https://tec.openplanner.team/stops/LHTdelh1", "https://tec.openplanner.team/stops/LHTmonu2"], ["https://tec.openplanner.team/stops/X770aea", "https://tec.openplanner.team/stops/X770aeb"], ["https://tec.openplanner.team/stops/LLWmonu2", "https://tec.openplanner.team/stops/LLWpier1"], ["https://tec.openplanner.team/stops/X837aba", "https://tec.openplanner.team/stops/X837acb"], ["https://tec.openplanner.team/stops/Bblapri1", "https://tec.openplanner.team/stops/Bwatali1"], ["https://tec.openplanner.team/stops/Bnilwal2", "https://tec.openplanner.team/stops/Bwspcar1"], ["https://tec.openplanner.team/stops/X614abb", "https://tec.openplanner.team/stops/X614ara"], ["https://tec.openplanner.team/stops/Cmymaco1", "https://tec.openplanner.team/stops/Cmypost2"], ["https://tec.openplanner.team/stops/N501jbb", "https://tec.openplanner.team/stops/N999aab"], ["https://tec.openplanner.team/stops/Bhalcbr1", "https://tec.openplanner.team/stops/Bhalvla1"], ["https://tec.openplanner.team/stops/X902aib", "https://tec.openplanner.team/stops/X992aba"], ["https://tec.openplanner.team/stops/H1ha185b", "https://tec.openplanner.team/stops/H1ha189b"], ["https://tec.openplanner.team/stops/LHUhsar1", "https://tec.openplanner.team/stops/LHUtrin1"], ["https://tec.openplanner.team/stops/X896ada", "https://tec.openplanner.team/stops/X896adb"], ["https://tec.openplanner.team/stops/Bllnald1", "https://tec.openplanner.team/stops/Bllnpeq1"], ["https://tec.openplanner.team/stops/LHNcoll1", "https://tec.openplanner.team/stops/LHNecpr1"], ["https://tec.openplanner.team/stops/N544ada", "https://tec.openplanner.team/stops/N545aab"], ["https://tec.openplanner.team/stops/X870aab", "https://tec.openplanner.team/stops/X880age"], ["https://tec.openplanner.team/stops/H1te190a", "https://tec.openplanner.team/stops/H1vt192a"], ["https://tec.openplanner.team/stops/N501jdb", "https://tec.openplanner.team/stops/N501jfb"], ["https://tec.openplanner.team/stops/LREheyd1", "https://tec.openplanner.team/stops/LREprea1"], ["https://tec.openplanner.team/stops/H1ne139b", "https://tec.openplanner.team/stops/H1ne150b"], ["https://tec.openplanner.team/stops/X654aib", "https://tec.openplanner.team/stops/X654ala"], ["https://tec.openplanner.team/stops/X765aaa", "https://tec.openplanner.team/stops/X765aab"], ["https://tec.openplanner.team/stops/X999aaa", "https://tec.openplanner.team/stops/X999acb"], ["https://tec.openplanner.team/stops/LmNha221", "https://tec.openplanner.team/stops/LmNstaa1"], ["https://tec.openplanner.team/stops/LJedonc3", "https://tec.openplanner.team/stops/LJedonc4"], ["https://tec.openplanner.team/stops/N135aga", "https://tec.openplanner.team/stops/N135aqb"], ["https://tec.openplanner.team/stops/LLAcalv2", "https://tec.openplanner.team/stops/LLApavi1"], ["https://tec.openplanner.team/stops/Lhrcols1", "https://tec.openplanner.team/stops/Lvtboux1"], ["https://tec.openplanner.team/stops/Cchcaya2", "https://tec.openplanner.team/stops/Cchicet1"], ["https://tec.openplanner.team/stops/H4mb140a", "https://tec.openplanner.team/stops/H4mb143d"], ["https://tec.openplanner.team/stops/Lvtauna2", "https://tec.openplanner.team/stops/Lvtlimi2"], ["https://tec.openplanner.team/stops/Btancre1", "https://tec.openplanner.team/stops/Btancre2"], ["https://tec.openplanner.team/stops/LLRbleh2", "https://tec.openplanner.team/stops/LPctrog2"], ["https://tec.openplanner.team/stops/LmHdrei2", "https://tec.openplanner.team/stops/LmHperl1"], ["https://tec.openplanner.team/stops/N214ada", "https://tec.openplanner.team/stops/N214aeb"], ["https://tec.openplanner.team/stops/X617adb", "https://tec.openplanner.team/stops/X617aeb"], ["https://tec.openplanner.team/stops/LGLeg--1", "https://tec.openplanner.team/stops/LGLeg--2"], ["https://tec.openplanner.team/stops/LnDdorf1", "https://tec.openplanner.team/stops/LnDthel1"], ["https://tec.openplanner.team/stops/H1bb119a", "https://tec.openplanner.team/stops/H1do120b"], ["https://tec.openplanner.team/stops/LRRchea1", "https://tec.openplanner.team/stops/LRRchea6"], ["https://tec.openplanner.team/stops/X773aga", "https://tec.openplanner.team/stops/X773aib"], ["https://tec.openplanner.team/stops/N211aca", "https://tec.openplanner.team/stops/N211avb"], ["https://tec.openplanner.team/stops/Bbcoeco1", "https://tec.openplanner.team/stops/Bbcogpl2"], ["https://tec.openplanner.team/stops/LMtegli2", "https://tec.openplanner.team/stops/LMttrou1"], ["https://tec.openplanner.team/stops/H4wu377b", "https://tec.openplanner.team/stops/H4wu420b"], ["https://tec.openplanner.team/stops/Lvealbe2", "https://tec.openplanner.team/stops/Lvevert1"], ["https://tec.openplanner.team/stops/LTatult1", "https://tec.openplanner.team/stops/LTatult2"], ["https://tec.openplanner.team/stops/Bbuzcom2", "https://tec.openplanner.team/stops/Bbuztai1"], ["https://tec.openplanner.team/stops/Ctuhouz1", "https://tec.openplanner.team/stops/Cturoge1"], ["https://tec.openplanner.team/stops/N201afa", "https://tec.openplanner.team/stops/N201afb"], ["https://tec.openplanner.team/stops/Lveherl2", "https://tec.openplanner.team/stops/Lvevieu2"], ["https://tec.openplanner.team/stops/Bblapin2", "https://tec.openplanner.team/stops/Brsg7fo2"], ["https://tec.openplanner.team/stops/Clgpavi1", "https://tec.openplanner.team/stops/Csslesc2"], ["https://tec.openplanner.team/stops/LeYmero2", "https://tec.openplanner.team/stops/LwAschu1"], ["https://tec.openplanner.team/stops/N353aha", "https://tec.openplanner.team/stops/N353ahb"], ["https://tec.openplanner.team/stops/LeUbush1", "https://tec.openplanner.team/stops/LeUgend1"], ["https://tec.openplanner.team/stops/LHUfali2", "https://tec.openplanner.team/stops/LHUfali3"], ["https://tec.openplanner.team/stops/Bwatlbs2", "https://tec.openplanner.team/stops/Bwatle31"], ["https://tec.openplanner.team/stops/H4bw102b", "https://tec.openplanner.team/stops/H4fg116b"], ["https://tec.openplanner.team/stops/X750baa", "https://tec.openplanner.team/stops/X780aia"], ["https://tec.openplanner.team/stops/X633abb", "https://tec.openplanner.team/stops/X653adc"], ["https://tec.openplanner.team/stops/LEnchan1", "https://tec.openplanner.team/stops/NL73ada"], ["https://tec.openplanner.team/stops/H2tr246a", "https://tec.openplanner.team/stops/H2tr254b"], ["https://tec.openplanner.team/stops/NL37aaa", "https://tec.openplanner.team/stops/NL37aob"], ["https://tec.openplanner.team/stops/H1ca100b", "https://tec.openplanner.team/stops/H1ca104a"], ["https://tec.openplanner.team/stops/X657acb", "https://tec.openplanner.team/stops/X657aja"], ["https://tec.openplanner.team/stops/Canmonu3", "https://tec.openplanner.team/stops/Canterr2"], ["https://tec.openplanner.team/stops/LLUalou2", "https://tec.openplanner.team/stops/LLUdoya1"], ["https://tec.openplanner.team/stops/LCnvill1", "https://tec.openplanner.team/stops/LREraph3"], ["https://tec.openplanner.team/stops/H4br109b", "https://tec.openplanner.team/stops/H4pe127b"], ["https://tec.openplanner.team/stops/Bgnpgar1", "https://tec.openplanner.team/stops/Bgnpgar2"], ["https://tec.openplanner.team/stops/Blingar3", "https://tec.openplanner.team/stops/Bpelegl3"], ["https://tec.openplanner.team/stops/X753aab", "https://tec.openplanner.team/stops/X945ada"], ["https://tec.openplanner.team/stops/X725arb", "https://tec.openplanner.team/stops/X725aua"], ["https://tec.openplanner.team/stops/Lchcomm2", "https://tec.openplanner.team/stops/Lchplai2"], ["https://tec.openplanner.team/stops/Cjugohi2", "https://tec.openplanner.team/stops/Cjumarc1"], ["https://tec.openplanner.team/stops/Cclbarb2", "https://tec.openplanner.team/stops/Cclrgiv2"], ["https://tec.openplanner.team/stops/H1tt104a", "https://tec.openplanner.team/stops/H1tt109a"], ["https://tec.openplanner.team/stops/LHUvege1", "https://tec.openplanner.team/stops/LHUvege2"], ["https://tec.openplanner.team/stops/X713afa", "https://tec.openplanner.team/stops/X713agb"], ["https://tec.openplanner.team/stops/X870aca", "https://tec.openplanner.team/stops/X870ada"], ["https://tec.openplanner.team/stops/H4fa125a", "https://tec.openplanner.team/stops/H4fa127a"], ["https://tec.openplanner.team/stops/X662aha", "https://tec.openplanner.team/stops/X662ara"], ["https://tec.openplanner.team/stops/Llgtunn2", "https://tec.openplanner.team/stops/Llgvalu1"], ["https://tec.openplanner.team/stops/Bbaulil2", "https://tec.openplanner.team/stops/Bnivpri2"], ["https://tec.openplanner.team/stops/Bbldvaa1", "https://tec.openplanner.team/stops/Bhevwzw1"], ["https://tec.openplanner.team/stops/Llochar1", "https://tec.openplanner.team/stops/Llochar3"], ["https://tec.openplanner.team/stops/Crajasm3", "https://tec.openplanner.team/stops/Crapaep2"], ["https://tec.openplanner.team/stops/H4co150a", "https://tec.openplanner.team/stops/H4co151a"], ["https://tec.openplanner.team/stops/H4hx110a", "https://tec.openplanner.team/stops/H4hx122b"], ["https://tec.openplanner.team/stops/LBRgend1", "https://tec.openplanner.team/stops/LBRmc--4"], ["https://tec.openplanner.team/stops/X812baa", "https://tec.openplanner.team/stops/X812bab"], ["https://tec.openplanner.team/stops/N516amc", "https://tec.openplanner.team/stops/N516aqb"], ["https://tec.openplanner.team/stops/LnEkirc3", "https://tec.openplanner.team/stops/LnEkirc4"], ["https://tec.openplanner.team/stops/X661aea", "https://tec.openplanner.team/stops/X661aha"], ["https://tec.openplanner.team/stops/H1tt106b", "https://tec.openplanner.team/stops/H1tt107a"], ["https://tec.openplanner.team/stops/LHScite2", "https://tec.openplanner.team/stops/LHSlava2"], ["https://tec.openplanner.team/stops/H2an100a", "https://tec.openplanner.team/stops/H2an100b"], ["https://tec.openplanner.team/stops/Bmrlegl2", "https://tec.openplanner.team/stops/Bnodeco1"], ["https://tec.openplanner.team/stops/N551adb", "https://tec.openplanner.team/stops/N551alb"], ["https://tec.openplanner.team/stops/Canrobe2", "https://tec.openplanner.team/stops/Canrtth2"], ["https://tec.openplanner.team/stops/N539aba", "https://tec.openplanner.team/stops/N539adb"], ["https://tec.openplanner.team/stops/X908aia", "https://tec.openplanner.team/stops/X910aja"], ["https://tec.openplanner.team/stops/NL74ahc", "https://tec.openplanner.team/stops/NL75abb"], ["https://tec.openplanner.team/stops/Bhancom1", "https://tec.openplanner.team/stops/LVParal2"], ["https://tec.openplanner.team/stops/Crbegli1", "https://tec.openplanner.team/stops/Crbegli2"], ["https://tec.openplanner.team/stops/X789aha", "https://tec.openplanner.team/stops/X789ahb"], ["https://tec.openplanner.team/stops/Cfrfede1", "https://tec.openplanner.team/stops/Csdpira1"], ["https://tec.openplanner.team/stops/LVMborl1", "https://tec.openplanner.team/stops/LVMborl2"], ["https://tec.openplanner.team/stops/N106afa", "https://tec.openplanner.team/stops/N106aga"], ["https://tec.openplanner.team/stops/Benimar4", "https://tec.openplanner.team/stops/NR21ajb"], ["https://tec.openplanner.team/stops/N241afb", "https://tec.openplanner.team/stops/N241aga"], ["https://tec.openplanner.team/stops/H4lz125a", "https://tec.openplanner.team/stops/H4lz125b"], ["https://tec.openplanner.team/stops/LSPplat1", "https://tec.openplanner.team/stops/LSPtonn2"], ["https://tec.openplanner.team/stops/X616aeb", "https://tec.openplanner.team/stops/X616ahb"], ["https://tec.openplanner.team/stops/H4br109b", "https://tec.openplanner.team/stops/H4hn114b"], ["https://tec.openplanner.team/stops/X673adb", "https://tec.openplanner.team/stops/X673aea"], ["https://tec.openplanner.team/stops/X721ata", "https://tec.openplanner.team/stops/X721atb"], ["https://tec.openplanner.team/stops/X641ada", "https://tec.openplanner.team/stops/X641adb"], ["https://tec.openplanner.team/stops/LSDheus1", "https://tec.openplanner.team/stops/LSDheus2"], ["https://tec.openplanner.team/stops/X939ada", "https://tec.openplanner.team/stops/X939adb"], ["https://tec.openplanner.team/stops/N110aba", "https://tec.openplanner.team/stops/N123acb"], ["https://tec.openplanner.team/stops/N230afb", "https://tec.openplanner.team/stops/N234adb"], ["https://tec.openplanner.team/stops/Landolh2", "https://tec.openplanner.team/stops/Lanfont1"], ["https://tec.openplanner.team/stops/X952aja", "https://tec.openplanner.team/stops/X952ajb"], ["https://tec.openplanner.team/stops/X666aia", "https://tec.openplanner.team/stops/X666aja"], ["https://tec.openplanner.team/stops/H1by104a", "https://tec.openplanner.team/stops/H1by104b"], ["https://tec.openplanner.team/stops/X796aaa", "https://tec.openplanner.team/stops/X986aca"], ["https://tec.openplanner.team/stops/H4ms144b", "https://tec.openplanner.team/stops/H4ms166b"], ["https://tec.openplanner.team/stops/X820aab", "https://tec.openplanner.team/stops/X820abb"], ["https://tec.openplanner.team/stops/H4lz126b", "https://tec.openplanner.team/stops/H4th142b"], ["https://tec.openplanner.team/stops/N135bba", "https://tec.openplanner.team/stops/N135bha"], ["https://tec.openplanner.team/stops/X941aeb", "https://tec.openplanner.team/stops/X941afb"], ["https://tec.openplanner.team/stops/Lsevecq1", "https://tec.openplanner.team/stops/Lsevecq2"], ["https://tec.openplanner.team/stops/Ccipech1", "https://tec.openplanner.team/stops/Cmttrie2"], ["https://tec.openplanner.team/stops/Llgbry-1", "https://tec.openplanner.team/stops/Lvtboux1"], ["https://tec.openplanner.team/stops/LHoetie2", "https://tec.openplanner.team/stops/LJesole2"], ["https://tec.openplanner.team/stops/X897aja", "https://tec.openplanner.team/stops/X897alc"], ["https://tec.openplanner.team/stops/Bovejme1", "https://tec.openplanner.team/stops/Bovelge2"], ["https://tec.openplanner.team/stops/H4pl114a", "https://tec.openplanner.team/stops/H4pl115a"], ["https://tec.openplanner.team/stops/N229aka", "https://tec.openplanner.team/stops/N229akc"], ["https://tec.openplanner.team/stops/LOTdelv2", "https://tec.openplanner.team/stops/LVlplan2"], ["https://tec.openplanner.team/stops/N514acb", "https://tec.openplanner.team/stops/N514aoa"], ["https://tec.openplanner.team/stops/Bbeacha1", "https://tec.openplanner.team/stops/Bbeamon1"], ["https://tec.openplanner.team/stops/H1hw125b", "https://tec.openplanner.team/stops/H1me117e"], ["https://tec.openplanner.team/stops/LMfbuck2", "https://tec.openplanner.team/stops/LMfeg--2"], ["https://tec.openplanner.team/stops/Lsccdor1", "https://tec.openplanner.team/stops/Lscferr1"], ["https://tec.openplanner.team/stops/H1le117a", "https://tec.openplanner.team/stops/H5is168b"], ["https://tec.openplanner.team/stops/N232bbb", "https://tec.openplanner.team/stops/N232bga"], ["https://tec.openplanner.team/stops/X911aca", "https://tec.openplanner.team/stops/X911ava"], ["https://tec.openplanner.team/stops/LhRandl1", "https://tec.openplanner.team/stops/LhRkirc2"], ["https://tec.openplanner.team/stops/H1hn364a", "https://tec.openplanner.team/stops/H1sp355a"], ["https://tec.openplanner.team/stops/Lseberg1", "https://tec.openplanner.team/stops/Lseberg4"], ["https://tec.openplanner.team/stops/LeUgb--1", "https://tec.openplanner.team/stops/LeUgutl1"], ["https://tec.openplanner.team/stops/H5pe145a", "https://tec.openplanner.team/stops/H5pe145b"], ["https://tec.openplanner.team/stops/NC14aoa", "https://tec.openplanner.team/stops/NC14apb"], ["https://tec.openplanner.team/stops/N506anb", "https://tec.openplanner.team/stops/N506bpb"], ["https://tec.openplanner.team/stops/H4mo133a", "https://tec.openplanner.team/stops/H4rk101b"], ["https://tec.openplanner.team/stops/X805aga", "https://tec.openplanner.team/stops/X807aba"], ["https://tec.openplanner.team/stops/LFMkrut1", "https://tec.openplanner.team/stops/LFPgeme2"], ["https://tec.openplanner.team/stops/Cgycime4", "https://tec.openplanner.team/stops/Cgytrie2"], ["https://tec.openplanner.team/stops/N574aab", "https://tec.openplanner.team/stops/N574adb"], ["https://tec.openplanner.team/stops/LCRvert1", "https://tec.openplanner.team/stops/LKmdrie1"], ["https://tec.openplanner.team/stops/LkEcoop1", "https://tec.openplanner.team/stops/LkEcoop2"], ["https://tec.openplanner.team/stops/LMOm64-1", "https://tec.openplanner.team/stops/LMOpiss1"], ["https://tec.openplanner.team/stops/N528aga", "https://tec.openplanner.team/stops/N528ahb"], ["https://tec.openplanner.team/stops/X869aaa", "https://tec.openplanner.team/stops/X869afb"], ["https://tec.openplanner.team/stops/Cobbusc1", "https://tec.openplanner.team/stops/Cobmven1"], ["https://tec.openplanner.team/stops/Cgocitn1", "https://tec.openplanner.team/stops/Cgocnor1"], ["https://tec.openplanner.team/stops/LeUauto2", "https://tec.openplanner.team/stops/LeUcamp2"], ["https://tec.openplanner.team/stops/Cchoues4", "https://tec.openplanner.team/stops/Cdapige2"], ["https://tec.openplanner.team/stops/H1bo103a", "https://tec.openplanner.team/stops/H1bo103b"], ["https://tec.openplanner.team/stops/H4eq123b", "https://tec.openplanner.team/stops/H4rc231c"], ["https://tec.openplanner.team/stops/H2ma202b", "https://tec.openplanner.team/stops/H2ma205a"], ["https://tec.openplanner.team/stops/LOUbarr1", "https://tec.openplanner.team/stops/LOUherm1"], ["https://tec.openplanner.team/stops/LOreg--2", "https://tec.openplanner.team/stops/LTotrui2"], ["https://tec.openplanner.team/stops/X618ada", "https://tec.openplanner.team/stops/X618aea"], ["https://tec.openplanner.team/stops/X608aca", "https://tec.openplanner.team/stops/X608ajb"], ["https://tec.openplanner.team/stops/N538awb", "https://tec.openplanner.team/stops/N539alb"], ["https://tec.openplanner.team/stops/Lan14ve1", "https://tec.openplanner.team/stops/Lanetie2"], ["https://tec.openplanner.team/stops/X723aba", "https://tec.openplanner.team/stops/X724aga"], ["https://tec.openplanner.team/stops/Cwgcamp2", "https://tec.openplanner.team/stops/Cwgrabi1"], ["https://tec.openplanner.team/stops/LCeanne1", "https://tec.openplanner.team/stops/LCeanne2"], ["https://tec.openplanner.team/stops/LLncime1", "https://tec.openplanner.team/stops/LLnpomp1"], ["https://tec.openplanner.team/stops/Bgisman1", "https://tec.openplanner.team/stops/Bgisman2"], ["https://tec.openplanner.team/stops/LmD163-2", "https://tec.openplanner.team/stops/LmDhoch4"], ["https://tec.openplanner.team/stops/N560aaa", "https://tec.openplanner.team/stops/N560aca"], ["https://tec.openplanner.team/stops/H1ba107b", "https://tec.openplanner.team/stops/H1qu111a"], ["https://tec.openplanner.team/stops/Btlgegl1", "https://tec.openplanner.team/stops/Btlgreg1"], ["https://tec.openplanner.team/stops/N536aeb", "https://tec.openplanner.team/stops/N580aaa"], ["https://tec.openplanner.team/stops/Ldimeun1", "https://tec.openplanner.team/stops/Ldipost1"], ["https://tec.openplanner.team/stops/LARgare3", "https://tec.openplanner.team/stops/LFebas-1"], ["https://tec.openplanner.team/stops/X921ala", "https://tec.openplanner.team/stops/X979aea"], ["https://tec.openplanner.team/stops/Lcegare2", "https://tec.openplanner.team/stops/Lcemc--2"], ["https://tec.openplanner.team/stops/Bmarcat2", "https://tec.openplanner.team/stops/Bmarmru2"], ["https://tec.openplanner.team/stops/N211apb", "https://tec.openplanner.team/stops/N211arb"], ["https://tec.openplanner.team/stops/X547adb", "https://tec.openplanner.team/stops/X547atb"], ["https://tec.openplanner.team/stops/LFEmala1", "https://tec.openplanner.team/stops/LFEplac1"], ["https://tec.openplanner.team/stops/Cplrmon1", "https://tec.openplanner.team/stops/Cplrond1"], ["https://tec.openplanner.team/stops/Bhmmcge2", "https://tec.openplanner.team/stops/Bndbnod2"], ["https://tec.openplanner.team/stops/X638ala", "https://tec.openplanner.team/stops/X638alb"], ["https://tec.openplanner.team/stops/N501epd", "https://tec.openplanner.team/stops/N501etz"], ["https://tec.openplanner.team/stops/LAMmc--2", "https://tec.openplanner.team/stops/LAMwall1"], ["https://tec.openplanner.team/stops/Bbcocou2", "https://tec.openplanner.team/stops/Bbcolno1"], ["https://tec.openplanner.team/stops/N352afa", "https://tec.openplanner.team/stops/N367ada"], ["https://tec.openplanner.team/stops/Ccobinc2", "https://tec.openplanner.team/stops/Ccoforr2"], ["https://tec.openplanner.team/stops/N539abb", "https://tec.openplanner.team/stops/N539afb"], ["https://tec.openplanner.team/stops/X747alb", "https://tec.openplanner.team/stops/X754akb"], ["https://tec.openplanner.team/stops/LMHoha-2", "https://tec.openplanner.team/stops/LWNcham1"], ["https://tec.openplanner.team/stops/N244abc", "https://tec.openplanner.team/stops/N244aca"], ["https://tec.openplanner.team/stops/LsVbell1", "https://tec.openplanner.team/stops/LsVbell2"], ["https://tec.openplanner.team/stops/H4br110a", "https://tec.openplanner.team/stops/H4pe128a"], ["https://tec.openplanner.team/stops/Ljhmany1", "https://tec.openplanner.team/stops/LPoewer1"], ["https://tec.openplanner.team/stops/LRMeg--1", "https://tec.openplanner.team/stops/LRMeg--2"], ["https://tec.openplanner.team/stops/N205aba", "https://tec.openplanner.team/stops/N205adb"], ["https://tec.openplanner.team/stops/LhEcolo2", "https://tec.openplanner.team/stops/LhElont1"], ["https://tec.openplanner.team/stops/X394aaa", "https://tec.openplanner.team/stops/X394aca"], ["https://tec.openplanner.team/stops/Lvelobe2", "https://tec.openplanner.team/stops/Lvepire1"], ["https://tec.openplanner.team/stops/H1as102a", "https://tec.openplanner.team/stops/H1hg178a"], ["https://tec.openplanner.team/stops/X743acb", "https://tec.openplanner.team/stops/X756aaa"], ["https://tec.openplanner.team/stops/N109aia", "https://tec.openplanner.team/stops/N122agb"], ["https://tec.openplanner.team/stops/Bohngai1", "https://tec.openplanner.team/stops/Bohnmon2"], ["https://tec.openplanner.team/stops/N501kid", "https://tec.openplanner.team/stops/N501kkb"], ["https://tec.openplanner.team/stops/LHrbast2", "https://tec.openplanner.team/stops/LHrreal2"], ["https://tec.openplanner.team/stops/H1ci103a", "https://tec.openplanner.team/stops/H1ci105a"], ["https://tec.openplanner.team/stops/X636aha", "https://tec.openplanner.team/stops/X636aja"], ["https://tec.openplanner.team/stops/N501byb", "https://tec.openplanner.team/stops/N501ckb"], ["https://tec.openplanner.team/stops/Cchdigu2", "https://tec.openplanner.team/stops/CMvil2"], ["https://tec.openplanner.team/stops/H4am100a", "https://tec.openplanner.team/stops/H4or115b"], ["https://tec.openplanner.team/stops/N563ana", "https://tec.openplanner.team/stops/N563anb"], ["https://tec.openplanner.team/stops/Lagarde1", "https://tec.openplanner.team/stops/Lagarde2"], ["https://tec.openplanner.team/stops/X641arb", "https://tec.openplanner.team/stops/X641aza"], ["https://tec.openplanner.team/stops/X817adb", "https://tec.openplanner.team/stops/X817afb"], ["https://tec.openplanner.team/stops/N313aeb", "https://tec.openplanner.team/stops/N331ajb"], ["https://tec.openplanner.team/stops/H4ro157b", "https://tec.openplanner.team/stops/H5pe127b"], ["https://tec.openplanner.team/stops/N211aka", "https://tec.openplanner.team/stops/N214aab"], ["https://tec.openplanner.team/stops/Bpthcgo2", "https://tec.openplanner.team/stops/Bpthfus2"], ["https://tec.openplanner.team/stops/H5gr135b", "https://tec.openplanner.team/stops/H5gr138b"], ["https://tec.openplanner.team/stops/H1ni315b", "https://tec.openplanner.team/stops/H1ni320a"], ["https://tec.openplanner.team/stops/Brsgrol1", "https://tec.openplanner.team/stops/Brsgter1"], ["https://tec.openplanner.team/stops/Ljejoli1", "https://tec.openplanner.team/stops/Ljejoli2"], ["https://tec.openplanner.team/stops/N301aka", "https://tec.openplanner.team/stops/X301ara"], ["https://tec.openplanner.team/stops/N526aeb", "https://tec.openplanner.team/stops/N527aba"], ["https://tec.openplanner.team/stops/LmUkape2", "https://tec.openplanner.team/stops/LmUzent2"], ["https://tec.openplanner.team/stops/LSZarbe1", "https://tec.openplanner.team/stops/LTgvill1"], ["https://tec.openplanner.team/stops/H4rx143a", "https://tec.openplanner.team/stops/H4rx175b"], ["https://tec.openplanner.team/stops/N577abb", "https://tec.openplanner.team/stops/N577ada"], ["https://tec.openplanner.team/stops/Llieg--1", "https://tec.openplanner.team/stops/Llieg--4"], ["https://tec.openplanner.team/stops/Lhrdelv2", "https://tec.openplanner.team/stops/Lhrstev2"], ["https://tec.openplanner.team/stops/H1mm126a", "https://tec.openplanner.team/stops/H1mm131b"], ["https://tec.openplanner.team/stops/Brixaug1", "https://tec.openplanner.team/stops/Brixpro3"], ["https://tec.openplanner.team/stops/H5rx125a", "https://tec.openplanner.team/stops/H5rx125b"], ["https://tec.openplanner.team/stops/X654ala", "https://tec.openplanner.team/stops/X654alb"], ["https://tec.openplanner.team/stops/LRemorr1", "https://tec.openplanner.team/stops/LRemorr4"], ["https://tec.openplanner.team/stops/X754aqa", "https://tec.openplanner.team/stops/X754arb"], ["https://tec.openplanner.team/stops/Bbchcbl1", "https://tec.openplanner.team/stops/Bbchndb1"], ["https://tec.openplanner.team/stops/Lhubarl2", "https://tec.openplanner.team/stops/Lmnrame1"], ["https://tec.openplanner.team/stops/H1ms280d", "https://tec.openplanner.team/stops/H1ms400d"], ["https://tec.openplanner.team/stops/Bjodced2", "https://tec.openplanner.team/stops/NR10aca"], ["https://tec.openplanner.team/stops/Lenauln2", "https://tec.openplanner.team/stops/Lenhouc1"], ["https://tec.openplanner.team/stops/Cluchbl4", "https://tec.openplanner.team/stops/Cpcndce2"], ["https://tec.openplanner.team/stops/LSTchef2", "https://tec.openplanner.team/stops/LSTcomm2"], ["https://tec.openplanner.team/stops/Btancnd2", "https://tec.openplanner.team/stops/Bvlvbth2"], ["https://tec.openplanner.team/stops/Cfrmoul2", "https://tec.openplanner.team/stops/Cfrplac1"], ["https://tec.openplanner.team/stops/LBApak2*", "https://tec.openplanner.team/stops/LSAmous1"], ["https://tec.openplanner.team/stops/Bcsemon1", "https://tec.openplanner.team/stops/Bcsemon2"], ["https://tec.openplanner.team/stops/H4fo116b", "https://tec.openplanner.team/stops/H4vz369b"], ["https://tec.openplanner.team/stops/LNIdoma2", "https://tec.openplanner.team/stops/LSPwarf2"], ["https://tec.openplanner.team/stops/Cgy4bra2", "https://tec.openplanner.team/stops/Cgygazo8"], ["https://tec.openplanner.team/stops/LbUbisc1", "https://tec.openplanner.team/stops/LbUpost1"], ["https://tec.openplanner.team/stops/H4ne135b", "https://tec.openplanner.team/stops/H4te260b"], ["https://tec.openplanner.team/stops/LLYcalv2", "https://tec.openplanner.team/stops/LTOcime1"], ["https://tec.openplanner.team/stops/N170aea", "https://tec.openplanner.team/stops/N170aeb"], ["https://tec.openplanner.team/stops/H2mo129a", "https://tec.openplanner.team/stops/H2mo143b"], ["https://tec.openplanner.team/stops/LhEcolo1", "https://tec.openplanner.team/stops/LhEklos2"], ["https://tec.openplanner.team/stops/LhIkirc*", "https://tec.openplanner.team/stops/LPutins2"], ["https://tec.openplanner.team/stops/Cmlcaya1", "https://tec.openplanner.team/stops/Cmllait2"], ["https://tec.openplanner.team/stops/Brsrber1", "https://tec.openplanner.team/stops/Brsrber2"], ["https://tec.openplanner.team/stops/H4ty308a", "https://tec.openplanner.team/stops/H4ty308d"], ["https://tec.openplanner.team/stops/H4fa124a", "https://tec.openplanner.team/stops/H4fa125a"], ["https://tec.openplanner.team/stops/H4bo179b", "https://tec.openplanner.team/stops/H4gr110b"], ["https://tec.openplanner.team/stops/LSSjeun1", "https://tec.openplanner.team/stops/LSSvill3"], ["https://tec.openplanner.team/stops/NR21aib", "https://tec.openplanner.team/stops/NR38aba"], ["https://tec.openplanner.team/stops/X664acb", "https://tec.openplanner.team/stops/X664adc"], ["https://tec.openplanner.team/stops/X921acb", "https://tec.openplanner.team/stops/X921apa"], ["https://tec.openplanner.team/stops/H1sy139b", "https://tec.openplanner.team/stops/H1sy140b"], ["https://tec.openplanner.team/stops/LBImili2", "https://tec.openplanner.team/stops/Lmltrix*"], ["https://tec.openplanner.team/stops/Cgzchab1", "https://tec.openplanner.team/stops/Cgzfarc1"], ["https://tec.openplanner.team/stops/Lsntvbi2", "https://tec.openplanner.team/stops/Lsntvbi3"], ["https://tec.openplanner.team/stops/LbUwirt1", "https://tec.openplanner.team/stops/LwR129-1"], ["https://tec.openplanner.team/stops/LACeg--1", "https://tec.openplanner.team/stops/NL74aja"], ["https://tec.openplanner.team/stops/H4hu121b", "https://tec.openplanner.team/stops/H4og207b"], ["https://tec.openplanner.team/stops/X307ada", "https://tec.openplanner.team/stops/X307adb"], ["https://tec.openplanner.team/stops/LLreque2", "https://tec.openplanner.team/stops/LLrmc--3"], ["https://tec.openplanner.team/stops/X908aoa", "https://tec.openplanner.team/stops/X955aca"], ["https://tec.openplanner.team/stops/LHaodei2", "https://tec.openplanner.team/stops/LOurena2"], ["https://tec.openplanner.team/stops/Cmmschw1", "https://tec.openplanner.team/stops/Cmmschw2"], ["https://tec.openplanner.team/stops/Cfawain2", "https://tec.openplanner.team/stops/Cfawain4"], ["https://tec.openplanner.team/stops/Llglema3", "https://tec.openplanner.team/stops/Llgrome2"], ["https://tec.openplanner.team/stops/N124aaa", "https://tec.openplanner.team/stops/N125abb"], ["https://tec.openplanner.team/stops/N501hka", "https://tec.openplanner.team/stops/N501hkb"], ["https://tec.openplanner.team/stops/LLYcham1", "https://tec.openplanner.team/stops/LLYplac1"], ["https://tec.openplanner.team/stops/Btsllec1", "https://tec.openplanner.team/stops/Bwspspa1"], ["https://tec.openplanner.team/stops/X671aab", "https://tec.openplanner.team/stops/X671aba"], ["https://tec.openplanner.team/stops/Cmadeli2", "https://tec.openplanner.team/stops/Cmahotv1"], ["https://tec.openplanner.team/stops/Cgxchan1", "https://tec.openplanner.team/stops/Cgxpair1"], ["https://tec.openplanner.team/stops/N115aaa", "https://tec.openplanner.team/stops/N115aeb"], ["https://tec.openplanner.team/stops/H3br107a", "https://tec.openplanner.team/stops/H3br107b"], ["https://tec.openplanner.team/stops/H1pw120a", "https://tec.openplanner.team/stops/H1wa146b"], ["https://tec.openplanner.team/stops/N501isa", "https://tec.openplanner.team/stops/N501isb"], ["https://tec.openplanner.team/stops/N501goa", "https://tec.openplanner.team/stops/N501lsb"], ["https://tec.openplanner.team/stops/Cjucopp1", "https://tec.openplanner.team/stops/Cjugill6"], ["https://tec.openplanner.team/stops/N547aja", "https://tec.openplanner.team/stops/N573apb"], ["https://tec.openplanner.team/stops/H4ty281a", "https://tec.openplanner.team/stops/H4ty307b"], ["https://tec.openplanner.team/stops/LhDkreu2", "https://tec.openplanner.team/stops/LhDkreu4"], ["https://tec.openplanner.team/stops/Canstat1", "https://tec.openplanner.team/stops/Canstat2"], ["https://tec.openplanner.team/stops/Brsgm301", "https://tec.openplanner.team/stops/Brsgm801"], ["https://tec.openplanner.team/stops/H1ge115a", "https://tec.openplanner.team/stops/H1ge179b"], ["https://tec.openplanner.team/stops/Cradest1", "https://tec.openplanner.team/stops/Crasabl1"], ["https://tec.openplanner.team/stops/H3so176a", "https://tec.openplanner.team/stops/H3so178a"], ["https://tec.openplanner.team/stops/Lpechin2", "https://tec.openplanner.team/stops/Lpeptle2"], ["https://tec.openplanner.team/stops/X662aqa", "https://tec.openplanner.team/stops/X662ara"], ["https://tec.openplanner.team/stops/H1ls130a", "https://tec.openplanner.team/stops/H1mm122c"], ["https://tec.openplanner.team/stops/N538aea", "https://tec.openplanner.team/stops/N538ajb"], ["https://tec.openplanner.team/stops/Bwatmgo4", "https://tec.openplanner.team/stops/Bwatms09"], ["https://tec.openplanner.team/stops/H4tu170a", "https://tec.openplanner.team/stops/H4wr174a"], ["https://tec.openplanner.team/stops/LSZroqu1", "https://tec.openplanner.team/stops/LSZroqu2"], ["https://tec.openplanner.team/stops/H4mb203a", "https://tec.openplanner.team/stops/H4vd230b"], ["https://tec.openplanner.team/stops/LaAzwei1", "https://tec.openplanner.team/stops/LhSfrei1"], ["https://tec.openplanner.team/stops/Brebblo1", "https://tec.openplanner.team/stops/Brebras1"], ["https://tec.openplanner.team/stops/H5st164a", "https://tec.openplanner.team/stops/H5st167a"], ["https://tec.openplanner.team/stops/Llithon1", "https://tec.openplanner.team/stops/Lvochev2"], ["https://tec.openplanner.team/stops/LkEcoop2", "https://tec.openplanner.team/stops/LkEgend2"], ["https://tec.openplanner.team/stops/Cgocalv4", "https://tec.openplanner.team/stops/Cgofabr2"], ["https://tec.openplanner.team/stops/Loucent1", "https://tec.openplanner.team/stops/Lougoff2"], ["https://tec.openplanner.team/stops/LATabba2", "https://tec.openplanner.team/stops/LATdieu1"], ["https://tec.openplanner.team/stops/Cmlhotv1", "https://tec.openplanner.team/stops/Cmlhotv2"], ["https://tec.openplanner.team/stops/X666aaa", "https://tec.openplanner.team/stops/X666agb"], ["https://tec.openplanner.team/stops/Cchcaya1", "https://tec.openplanner.team/stops/Clodrio3"], ["https://tec.openplanner.team/stops/N229aha", "https://tec.openplanner.team/stops/N291aaa"], ["https://tec.openplanner.team/stops/Bnilcim1", "https://tec.openplanner.team/stops/Bnilreg2"], ["https://tec.openplanner.team/stops/Bbiemse1", "https://tec.openplanner.team/stops/Bgzddmo2"], ["https://tec.openplanner.team/stops/LlChebs1", "https://tec.openplanner.team/stops/LrAmuhl1"], ["https://tec.openplanner.team/stops/X347ajb", "https://tec.openplanner.team/stops/X891acb"], ["https://tec.openplanner.team/stops/LBEoblu2", "https://tec.openplanner.team/stops/Lcacris2"], ["https://tec.openplanner.team/stops/X937ajb", "https://tec.openplanner.team/stops/X952ajb"], ["https://tec.openplanner.team/stops/N501avb", "https://tec.openplanner.team/stops/N501mua"], ["https://tec.openplanner.team/stops/Bnodblt1", "https://tec.openplanner.team/stops/Boplcsj2"], ["https://tec.openplanner.team/stops/Cfmchap1", "https://tec.openplanner.team/stops/Cfmgrmo2"], ["https://tec.openplanner.team/stops/Cfaecwa1", "https://tec.openplanner.team/stops/Cfawain1"], ["https://tec.openplanner.team/stops/X907aea", "https://tec.openplanner.team/stops/X907aia"], ["https://tec.openplanner.team/stops/X659aka", "https://tec.openplanner.team/stops/X659ama"], ["https://tec.openplanner.team/stops/N308aza", "https://tec.openplanner.team/stops/N311aea"], ["https://tec.openplanner.team/stops/X358acb", "https://tec.openplanner.team/stops/X358acd"], ["https://tec.openplanner.team/stops/Bcsebea3", "https://tec.openplanner.team/stops/Bmsgpap2"], ["https://tec.openplanner.team/stops/H2bh117b", "https://tec.openplanner.team/stops/H2bh119b"], ["https://tec.openplanner.team/stops/LeUarno2", "https://tec.openplanner.team/stops/LeUclou1"], ["https://tec.openplanner.team/stops/LBrmeiz1", "https://tec.openplanner.team/stops/LMici091"], ["https://tec.openplanner.team/stops/X790alb", "https://tec.openplanner.team/stops/X790amb"], ["https://tec.openplanner.team/stops/LAnchat1", "https://tec.openplanner.team/stops/LAnchat2"], ["https://tec.openplanner.team/stops/Lsecoop1", "https://tec.openplanner.team/stops/Lseresi1"], ["https://tec.openplanner.team/stops/LXoharz6", "https://tec.openplanner.team/stops/LXoroch1"], ["https://tec.openplanner.team/stops/H4ht173b", "https://tec.openplanner.team/stops/H4la196b"], ["https://tec.openplanner.team/stops/X640atb", "https://tec.openplanner.team/stops/X640aub"], ["https://tec.openplanner.team/stops/X663axa", "https://tec.openplanner.team/stops/X663aya"], ["https://tec.openplanner.team/stops/N230alb", "https://tec.openplanner.team/stops/N234aba"], ["https://tec.openplanner.team/stops/Lbrnanc2", "https://tec.openplanner.team/stops/Llgplai2"], ["https://tec.openplanner.team/stops/Clulidl1", "https://tec.openplanner.team/stops/Cvvcime2"], ["https://tec.openplanner.team/stops/Cblsall2", "https://tec.openplanner.team/stops/Crbreve2"], ["https://tec.openplanner.team/stops/X746aga", "https://tec.openplanner.team/stops/X746agd"], ["https://tec.openplanner.team/stops/N501cob", "https://tec.openplanner.team/stops/N501csb"], ["https://tec.openplanner.team/stops/Cobcent2", "https://tec.openplanner.team/stops/Cobmven1"], ["https://tec.openplanner.team/stops/Bblasse2", "https://tec.openplanner.team/stops/Bblasta1"], ["https://tec.openplanner.team/stops/N543cla", "https://tec.openplanner.team/stops/N543clb"], ["https://tec.openplanner.team/stops/Lfhbail1", "https://tec.openplanner.team/stops/Lsecris3"], ["https://tec.openplanner.team/stops/X952abb", "https://tec.openplanner.team/stops/X952aia"], ["https://tec.openplanner.team/stops/X316abb", "https://tec.openplanner.team/stops/X318aca"], ["https://tec.openplanner.team/stops/Bjodfco1", "https://tec.openplanner.team/stops/Bjodfco2"], ["https://tec.openplanner.team/stops/LdUespe2", "https://tec.openplanner.team/stops/LdUespe3"], ["https://tec.openplanner.team/stops/N201aab", "https://tec.openplanner.team/stops/N201aja"], ["https://tec.openplanner.team/stops/X937aaa", "https://tec.openplanner.team/stops/X937aga"], ["https://tec.openplanner.team/stops/LbUjost2", "https://tec.openplanner.team/stops/LkRrauw1"], ["https://tec.openplanner.team/stops/Cgzmarb1", "https://tec.openplanner.team/stops/Cgzvivi1"], ["https://tec.openplanner.team/stops/Cgxprad1", "https://tec.openplanner.team/stops/Cgxptt1"], ["https://tec.openplanner.team/stops/N118aua", "https://tec.openplanner.team/stops/N118avb"], ["https://tec.openplanner.team/stops/N543bka", "https://tec.openplanner.team/stops/N543cbc"], ["https://tec.openplanner.team/stops/Ccoforr2", "https://tec.openplanner.team/stops/Crocpai2"], ["https://tec.openplanner.team/stops/Lvtnico1", "https://tec.openplanner.team/stops/Lvtnico2"], ["https://tec.openplanner.team/stops/Bgrmfga1", "https://tec.openplanner.team/stops/Bgrmfga2"], ["https://tec.openplanner.team/stops/NL68aab", "https://tec.openplanner.team/stops/NL68aeb"], ["https://tec.openplanner.team/stops/LaLkirc*", "https://tec.openplanner.team/stops/X793afb"], ["https://tec.openplanner.team/stops/N526aba", "https://tec.openplanner.team/stops/N526abb"], ["https://tec.openplanner.team/stops/Lflrhot1", "https://tec.openplanner.team/stops/Lre3che1"], ["https://tec.openplanner.team/stops/Lcacaps1", "https://tec.openplanner.team/stops/Lcalaro1"], ["https://tec.openplanner.team/stops/Ctrsema1", "https://tec.openplanner.team/stops/H2tz115b"], ["https://tec.openplanner.team/stops/Cpljonc1", "https://tec.openplanner.team/stops/Cplrymo2"], ["https://tec.openplanner.team/stops/N141aoa", "https://tec.openplanner.team/stops/N146aab"], ["https://tec.openplanner.team/stops/Bquecge2", "https://tec.openplanner.team/stops/Bquevel1"], ["https://tec.openplanner.team/stops/LHUfali1", "https://tec.openplanner.team/stops/LHUresi3"], ["https://tec.openplanner.team/stops/H1cu122b", "https://tec.openplanner.team/stops/H1cu127a"], ["https://tec.openplanner.team/stops/H4mo190b", "https://tec.openplanner.team/stops/H4mo192a"], ["https://tec.openplanner.team/stops/Csecarr2", "https://tec.openplanner.team/stops/Csecout1"], ["https://tec.openplanner.team/stops/N125aca", "https://tec.openplanner.team/stops/N154acb"], ["https://tec.openplanner.team/stops/Lvehauz2", "https://tec.openplanner.team/stops/Lvehauz3"], ["https://tec.openplanner.team/stops/Lsebuil1", "https://tec.openplanner.team/stops/Lsebuil2"], ["https://tec.openplanner.team/stops/Bettgle2", "https://tec.openplanner.team/stops/Bettlha2"], ["https://tec.openplanner.team/stops/Lghcoqs1", "https://tec.openplanner.team/stops/Lghleon2"], ["https://tec.openplanner.team/stops/Bcrnrpc1", "https://tec.openplanner.team/stops/Bcrnrpc2"], ["https://tec.openplanner.team/stops/LMRmont1", "https://tec.openplanner.team/stops/LMRmont2"], ["https://tec.openplanner.team/stops/X804bza", "https://tec.openplanner.team/stops/X804bzb"], ["https://tec.openplanner.team/stops/LHhelia1", "https://tec.openplanner.team/stops/LHhvivi1"], ["https://tec.openplanner.team/stops/LJUmc--2", "https://tec.openplanner.team/stops/LVSslin3"], ["https://tec.openplanner.team/stops/Cjuspin2", "https://tec.openplanner.team/stops/Cjuunio1"], ["https://tec.openplanner.team/stops/H2ch108b", "https://tec.openplanner.team/stops/H2ch123c"], ["https://tec.openplanner.team/stops/Cmlasie1", "https://tec.openplanner.team/stops/Cmlstni1"], ["https://tec.openplanner.team/stops/Bgoegma1", "https://tec.openplanner.team/stops/Bgoestu2"], ["https://tec.openplanner.team/stops/Bbst4br2", "https://tec.openplanner.team/stops/Csdetan1"], ["https://tec.openplanner.team/stops/H1ma230a", "https://tec.openplanner.team/stops/H1ob333b"], ["https://tec.openplanner.team/stops/H2le146a", "https://tec.openplanner.team/stops/H2le176b"], ["https://tec.openplanner.team/stops/X741aha", "https://tec.openplanner.team/stops/X741apa"], ["https://tec.openplanner.team/stops/H4fr389a", "https://tec.openplanner.team/stops/H4fr393a"], ["https://tec.openplanner.team/stops/Lhrdron1", "https://tec.openplanner.team/stops/Lhrdron2"], ["https://tec.openplanner.team/stops/X636aib", "https://tec.openplanner.team/stops/X636amb"], ["https://tec.openplanner.team/stops/Becepri2", "https://tec.openplanner.team/stops/H2ec108a"], ["https://tec.openplanner.team/stops/X307aaa", "https://tec.openplanner.team/stops/X307aab"], ["https://tec.openplanner.team/stops/N562aia", "https://tec.openplanner.team/stops/N562atb"], ["https://tec.openplanner.team/stops/LeUbael2", "https://tec.openplanner.team/stops/LhEauto2"], ["https://tec.openplanner.team/stops/Bgnpegl3", "https://tec.openplanner.team/stops/Bgnppem1"], ["https://tec.openplanner.team/stops/Cbetrie1", "https://tec.openplanner.team/stops/Ccstord1"], ["https://tec.openplanner.team/stops/X870agb", "https://tec.openplanner.team/stops/X882aga"], ["https://tec.openplanner.team/stops/Lglmoul1", "https://tec.openplanner.team/stops/Lmochar1"], ["https://tec.openplanner.team/stops/Lmlcher1", "https://tec.openplanner.team/stops/Lmlmaqu4"], ["https://tec.openplanner.team/stops/X748afa", "https://tec.openplanner.team/stops/X769aga"], ["https://tec.openplanner.team/stops/LVAflat2", "https://tec.openplanner.team/stops/LVApark1"], ["https://tec.openplanner.team/stops/H4li179a", "https://tec.openplanner.team/stops/H4li179c"], ["https://tec.openplanner.team/stops/LmYwall1", "https://tec.openplanner.team/stops/LnEleje2"], ["https://tec.openplanner.team/stops/LMOeg--1", "https://tec.openplanner.team/stops/LMOelva1"], ["https://tec.openplanner.team/stops/N528aaa", "https://tec.openplanner.team/stops/N551aaa"], ["https://tec.openplanner.team/stops/LeUjuge2", "https://tec.openplanner.team/stops/LeUolen2"], ["https://tec.openplanner.team/stops/Crecouc2", "https://tec.openplanner.team/stops/Creshau2"], ["https://tec.openplanner.team/stops/X618aea", "https://tec.openplanner.team/stops/X618aeb"], ["https://tec.openplanner.team/stops/N101apb", "https://tec.openplanner.team/stops/N151aab"], ["https://tec.openplanner.team/stops/Brsgepr1", "https://tec.openplanner.team/stops/Brsggea2"], ["https://tec.openplanner.team/stops/H1ms284a", "https://tec.openplanner.team/stops/H1ms905a"], ["https://tec.openplanner.team/stops/Lvcecol1", "https://tec.openplanner.team/stops/Lvcreve1"], ["https://tec.openplanner.team/stops/Bglibui1", "https://tec.openplanner.team/stops/Bjdsjso2"], ["https://tec.openplanner.team/stops/X801awa", "https://tec.openplanner.team/stops/X801aza"], ["https://tec.openplanner.team/stops/N565aka", "https://tec.openplanner.team/stops/N565alb"], ["https://tec.openplanner.team/stops/Bfelcen1", "https://tec.openplanner.team/stops/Bfelpla2"], ["https://tec.openplanner.team/stops/Bblavhu2", "https://tec.openplanner.team/stops/Bwatwsc1"], ["https://tec.openplanner.team/stops/N894aca", "https://tec.openplanner.team/stops/N894acb"], ["https://tec.openplanner.team/stops/N569aeb", "https://tec.openplanner.team/stops/N569afb"], ["https://tec.openplanner.team/stops/Bcseeco1", "https://tec.openplanner.team/stops/Bcseeco3"], ["https://tec.openplanner.team/stops/Bmlncha2", "https://tec.openplanner.team/stops/Bmlngvi2"], ["https://tec.openplanner.team/stops/LOdmonu1", "https://tec.openplanner.team/stops/LVlleme1"], ["https://tec.openplanner.team/stops/N513adb", "https://tec.openplanner.team/stops/N513bbd"], ["https://tec.openplanner.team/stops/LaAneul2", "https://tec.openplanner.team/stops/LaAzwei2"], ["https://tec.openplanner.team/stops/X608aqa", "https://tec.openplanner.team/stops/X608aza"], ["https://tec.openplanner.team/stops/Cdametr1", "https://tec.openplanner.team/stops/Cdaviol1"], ["https://tec.openplanner.team/stops/Cmychau2", "https://tec.openplanner.team/stops/Cmypast1"], ["https://tec.openplanner.team/stops/X982aqa", "https://tec.openplanner.team/stops/X982aqc"], ["https://tec.openplanner.team/stops/Bwbfbon1", "https://tec.openplanner.team/stops/Bwbfbon2"], ["https://tec.openplanner.team/stops/LSktinc1", "https://tec.openplanner.team/stops/LSkwarf2"], ["https://tec.openplanner.team/stops/Lseathe1", "https://tec.openplanner.team/stops/Lseathe2"], ["https://tec.openplanner.team/stops/LMAhall1", "https://tec.openplanner.team/stops/LMAhall2"], ["https://tec.openplanner.team/stops/H4ka392a", "https://tec.openplanner.team/stops/H4ka394a"], ["https://tec.openplanner.team/stops/LSPbalm1", "https://tec.openplanner.team/stops/LSPpelz1"], ["https://tec.openplanner.team/stops/LHarenn3", "https://tec.openplanner.team/stops/LHarenn4"], ["https://tec.openplanner.team/stops/Bmalper1", "https://tec.openplanner.team/stops/Bmalper2"], ["https://tec.openplanner.team/stops/Chpcarp1", "https://tec.openplanner.team/stops/Chprobi1"], ["https://tec.openplanner.team/stops/N242aeb", "https://tec.openplanner.team/stops/N243ada"], ["https://tec.openplanner.team/stops/N530aga", "https://tec.openplanner.team/stops/N530ahb"], ["https://tec.openplanner.team/stops/H1ca109a", "https://tec.openplanner.team/stops/H1ca184a"], ["https://tec.openplanner.team/stops/X609ahb", "https://tec.openplanner.team/stops/X610abb"], ["https://tec.openplanner.team/stops/LHUtrin1", "https://tec.openplanner.team/stops/LTiespe4"], ["https://tec.openplanner.team/stops/N120aoc", "https://tec.openplanner.team/stops/N340abb"], ["https://tec.openplanner.team/stops/LgRhouf1", "https://tec.openplanner.team/stops/LgRhouf2"], ["https://tec.openplanner.team/stops/Boveker2", "https://tec.openplanner.team/stops/Bovetwe2"], ["https://tec.openplanner.team/stops/LSHhade1", "https://tec.openplanner.team/stops/LSHneuv1"], ["https://tec.openplanner.team/stops/Cwgpatr1", "https://tec.openplanner.team/stops/Cwgtill2"], ["https://tec.openplanner.team/stops/H1ca101a", "https://tec.openplanner.team/stops/H1sd344b"], ["https://tec.openplanner.team/stops/LBRpier2", "https://tec.openplanner.team/stops/LLRrape4"], ["https://tec.openplanner.team/stops/X601ayb", "https://tec.openplanner.team/stops/X601bra"], ["https://tec.openplanner.team/stops/Btubpla2", "https://tec.openplanner.team/stops/Btubsca1"], ["https://tec.openplanner.team/stops/Bgzdpis1", "https://tec.openplanner.team/stops/Bgzdpis2"], ["https://tec.openplanner.team/stops/N506bdb", "https://tec.openplanner.team/stops/N506bna"], ["https://tec.openplanner.team/stops/H1le127a", "https://tec.openplanner.team/stops/H1le127b"], ["https://tec.openplanner.team/stops/N558aja", "https://tec.openplanner.team/stops/N558ajb"], ["https://tec.openplanner.team/stops/LEnvill2", "https://tec.openplanner.team/stops/NL73aca"], ["https://tec.openplanner.team/stops/Bgrmfon1", "https://tec.openplanner.team/stops/N522akb"], ["https://tec.openplanner.team/stops/LkAbahn*", "https://tec.openplanner.team/stops/LmTreic1"], ["https://tec.openplanner.team/stops/LlgLAMB5", "https://tec.openplanner.team/stops/LlgR-Fr3"], ["https://tec.openplanner.team/stops/X801aja", "https://tec.openplanner.team/stops/X801alb"], ["https://tec.openplanner.team/stops/N151aja", "https://tec.openplanner.team/stops/N151ajf"], ["https://tec.openplanner.team/stops/Canmonu5", "https://tec.openplanner.team/stops/Canrsta1"], ["https://tec.openplanner.team/stops/Lceourt1", "https://tec.openplanner.team/stops/Lcepoul1"], ["https://tec.openplanner.team/stops/H2mi124a", "https://tec.openplanner.team/stops/H2mi124b"], ["https://tec.openplanner.team/stops/Lousite1", "https://tec.openplanner.team/stops/Lousite4"], ["https://tec.openplanner.team/stops/Llgnico2", "https://tec.openplanner.team/stops/Lsnlibe2"], ["https://tec.openplanner.team/stops/N501hsy", "https://tec.openplanner.team/stops/N501ida"], ["https://tec.openplanner.team/stops/Cfrmonu1", "https://tec.openplanner.team/stops/Cfrmonu5"], ["https://tec.openplanner.team/stops/LAieg--2", "https://tec.openplanner.team/stops/LENalun1"], ["https://tec.openplanner.team/stops/LJesole1", "https://tec.openplanner.team/stops/LJetrih1"], ["https://tec.openplanner.team/stops/N501daa", "https://tec.openplanner.team/stops/N501mua"], ["https://tec.openplanner.team/stops/Cgxchea2", "https://tec.openplanner.team/stops/Cgxdeba2"], ["https://tec.openplanner.team/stops/X742aba", "https://tec.openplanner.team/stops/X742acb"], ["https://tec.openplanner.team/stops/N232bab", "https://tec.openplanner.team/stops/N232bra"], ["https://tec.openplanner.team/stops/N231agb", "https://tec.openplanner.team/stops/N242adc"], ["https://tec.openplanner.team/stops/Lhrbass2", "https://tec.openplanner.team/stops/Lhrhenr1"], ["https://tec.openplanner.team/stops/H4ka174a", "https://tec.openplanner.team/stops/H4ka192b"], ["https://tec.openplanner.team/stops/Cgocat1", "https://tec.openplanner.team/stops/Cgorobe1"], ["https://tec.openplanner.team/stops/Lsestap2", "https://tec.openplanner.team/stops/Lsevill1"], ["https://tec.openplanner.team/stops/X923ada", "https://tec.openplanner.team/stops/X923ara"], ["https://tec.openplanner.team/stops/X743aaa", "https://tec.openplanner.team/stops/X743abb"], ["https://tec.openplanner.team/stops/Cdamare2", "https://tec.openplanner.team/stops/Cdamest2"], ["https://tec.openplanner.team/stops/Cgylouv2", "https://tec.openplanner.team/stops/Cgymetr1"], ["https://tec.openplanner.team/stops/LmIkirc1", "https://tec.openplanner.team/stops/LmIzent1"], ["https://tec.openplanner.team/stops/LGesent1", "https://tec.openplanner.team/stops/LMschap1"], ["https://tec.openplanner.team/stops/X908aaa", "https://tec.openplanner.team/stops/X908ala"], ["https://tec.openplanner.team/stops/NH01alb", "https://tec.openplanner.team/stops/NH01apb"], ["https://tec.openplanner.team/stops/X901bca", "https://tec.openplanner.team/stops/X943acb"], ["https://tec.openplanner.team/stops/LMibouv3", "https://tec.openplanner.team/stops/LMisour2"], ["https://tec.openplanner.team/stops/N149ahb", "https://tec.openplanner.team/stops/N149aia"], ["https://tec.openplanner.team/stops/H1qu102b", "https://tec.openplanner.team/stops/H1qu107b"], ["https://tec.openplanner.team/stops/H1bo108d", "https://tec.openplanner.team/stops/H1bo112b"], ["https://tec.openplanner.team/stops/Ccppn1", "https://tec.openplanner.team/stops/H2ch110b"], ["https://tec.openplanner.team/stops/Lfhchaf*", "https://tec.openplanner.team/stops/Lfhchaf2"], ["https://tec.openplanner.team/stops/X637aea", "https://tec.openplanner.team/stops/X637aka"], ["https://tec.openplanner.team/stops/N131aha", "https://tec.openplanner.team/stops/N132adb"], ["https://tec.openplanner.team/stops/LWAlieg1", "https://tec.openplanner.team/stops/LWAvisi2"], ["https://tec.openplanner.team/stops/Barqbco1", "https://tec.openplanner.team/stops/Bmoncab2"], ["https://tec.openplanner.team/stops/H4ty301b", "https://tec.openplanner.team/stops/H4ty301d"], ["https://tec.openplanner.team/stops/LFFchab1", "https://tec.openplanner.team/stops/LVLf37-1"], ["https://tec.openplanner.team/stops/X886ada", "https://tec.openplanner.team/stops/X886aea"], ["https://tec.openplanner.team/stops/LPobois2", "https://tec.openplanner.team/stops/LTgjalh2"], ["https://tec.openplanner.team/stops/LAo161-1", "https://tec.openplanner.team/stops/LTPwann1"], ["https://tec.openplanner.team/stops/Brebrha1", "https://tec.openplanner.team/stops/Brebvic2"], ["https://tec.openplanner.team/stops/LHFappe2", "https://tec.openplanner.team/stops/LVEmohi1"], ["https://tec.openplanner.team/stops/H2ec103a", "https://tec.openplanner.team/stops/H2ec110a"], ["https://tec.openplanner.team/stops/X837agb", "https://tec.openplanner.team/stops/X837aia"], ["https://tec.openplanner.team/stops/X903aab", "https://tec.openplanner.team/stops/X992aba"], ["https://tec.openplanner.team/stops/Ladboti1", "https://tec.openplanner.team/stops/Ladmoul2"], ["https://tec.openplanner.team/stops/N248adb", "https://tec.openplanner.team/stops/N340agb"], ["https://tec.openplanner.team/stops/H5rx104a", "https://tec.openplanner.team/stops/H5rx104b"], ["https://tec.openplanner.team/stops/X615ajb", "https://tec.openplanner.team/stops/X615aka"], ["https://tec.openplanner.team/stops/X907agb", "https://tec.openplanner.team/stops/X908ara"], ["https://tec.openplanner.team/stops/N222ayb", "https://tec.openplanner.team/stops/X222ala"], ["https://tec.openplanner.team/stops/H2ca106a", "https://tec.openplanner.team/stops/H2mo130b"], ["https://tec.openplanner.team/stops/H4ma201a", "https://tec.openplanner.team/stops/H4ma205b"], ["https://tec.openplanner.team/stops/Bohnegl2", "https://tec.openplanner.team/stops/Bwatber1"], ["https://tec.openplanner.team/stops/N548aga", "https://tec.openplanner.team/stops/N548agd"], ["https://tec.openplanner.team/stops/Lstchu-1", "https://tec.openplanner.team/stops/Lstchu-3"], ["https://tec.openplanner.team/stops/N323aaa", "https://tec.openplanner.team/stops/N387ahb"], ["https://tec.openplanner.team/stops/N531asb", "https://tec.openplanner.team/stops/N561aga"], ["https://tec.openplanner.team/stops/Cmaleri1", "https://tec.openplanner.team/stops/Cmazsnc2"], ["https://tec.openplanner.team/stops/LHChaut6", "https://tec.openplanner.team/stops/LHCponc3"], ["https://tec.openplanner.team/stops/Bblmcel2", "https://tec.openplanner.team/stops/Bhvltol2"], ["https://tec.openplanner.team/stops/Lglvand1", "https://tec.openplanner.team/stops/Llgchau2"], ["https://tec.openplanner.team/stops/X626aab", "https://tec.openplanner.team/stops/X626abb"], ["https://tec.openplanner.team/stops/Cnaplha1", "https://tec.openplanner.team/stops/Cnaplha3"], ["https://tec.openplanner.team/stops/LlgR-F1*", "https://tec.openplanner.team/stops/LlgR-Fr3"], ["https://tec.openplanner.team/stops/X622aea", "https://tec.openplanner.team/stops/X622afb"], ["https://tec.openplanner.team/stops/H5el111a", "https://tec.openplanner.team/stops/H5rx121a"], ["https://tec.openplanner.team/stops/H1ms278b", "https://tec.openplanner.team/stops/H1ms940b"], ["https://tec.openplanner.team/stops/Lhehoux1", "https://tec.openplanner.team/stops/Lhehoux2"], ["https://tec.openplanner.team/stops/LAwfans2", "https://tec.openplanner.team/stops/LSfcoll*"], ["https://tec.openplanner.team/stops/LHbcent2", "https://tec.openplanner.team/stops/LJAherb2"], ["https://tec.openplanner.team/stops/H4lz162b", "https://tec.openplanner.team/stops/H4lz164a"], ["https://tec.openplanner.team/stops/Bobacou2", "https://tec.openplanner.team/stops/Cobmven1"], ["https://tec.openplanner.team/stops/N874abb", "https://tec.openplanner.team/stops/N874afa"], ["https://tec.openplanner.team/stops/X774aha", "https://tec.openplanner.team/stops/X775aga"], ["https://tec.openplanner.team/stops/LAWchau2", "https://tec.openplanner.team/stops/LAWhein2"], ["https://tec.openplanner.team/stops/N349aba", "https://tec.openplanner.team/stops/N351aqa"], ["https://tec.openplanner.team/stops/Bfelcsa2", "https://tec.openplanner.team/stops/Bsenpeu1"], ["https://tec.openplanner.team/stops/H1bu140b", "https://tec.openplanner.team/stops/H1bu141b"], ["https://tec.openplanner.team/stops/N501hsb", "https://tec.openplanner.team/stops/N501hsz"], ["https://tec.openplanner.team/stops/N514ama", "https://tec.openplanner.team/stops/N515akb"], ["https://tec.openplanner.team/stops/Bbcocvb1", "https://tec.openplanner.team/stops/Bbcohou4"], ["https://tec.openplanner.team/stops/X618amb", "https://tec.openplanner.team/stops/X618aoa"], ["https://tec.openplanner.team/stops/H1fr124b", "https://tec.openplanner.team/stops/H1fr127b"], ["https://tec.openplanner.team/stops/X945aba", "https://tec.openplanner.team/stops/X948aqa"], ["https://tec.openplanner.team/stops/Cvpcdec2", "https://tec.openplanner.team/stops/Cvppost1"], ["https://tec.openplanner.team/stops/Cchvhau2", "https://tec.openplanner.team/stops/CMba2"], ["https://tec.openplanner.team/stops/LlgguilD", "https://tec.openplanner.team/stops/Llgoise1"], ["https://tec.openplanner.team/stops/LMalarg4", "https://tec.openplanner.team/stops/LPldoua3"], ["https://tec.openplanner.team/stops/N243acb", "https://tec.openplanner.team/stops/N243adb"], ["https://tec.openplanner.team/stops/X652aca", "https://tec.openplanner.team/stops/X652aeb"], ["https://tec.openplanner.team/stops/Loucorn1", "https://tec.openplanner.team/stops/Lougoff2"], ["https://tec.openplanner.team/stops/LeUhaas2", "https://tec.openplanner.team/stops/LeUolen2"], ["https://tec.openplanner.team/stops/H2ll191a", "https://tec.openplanner.team/stops/H2ll191b"], ["https://tec.openplanner.team/stops/X801cba", "https://tec.openplanner.team/stops/X801cca"], ["https://tec.openplanner.team/stops/H4mo132a", "https://tec.openplanner.team/stops/H4mo155b"], ["https://tec.openplanner.team/stops/X902ada", "https://tec.openplanner.team/stops/X902afa"], ["https://tec.openplanner.team/stops/N553adb", "https://tec.openplanner.team/stops/N553afb"], ["https://tec.openplanner.team/stops/N309abb", "https://tec.openplanner.team/stops/N309aca"], ["https://tec.openplanner.team/stops/X876aba", "https://tec.openplanner.team/stops/X876adb"], ["https://tec.openplanner.team/stops/N581aab", "https://tec.openplanner.team/stops/NL74aca"], ["https://tec.openplanner.team/stops/LFMkrin2", "https://tec.openplanner.team/stops/LFMveur2"], ["https://tec.openplanner.team/stops/Cbugara2", "https://tec.openplanner.team/stops/Cfnsenz1"], ["https://tec.openplanner.team/stops/N135aua", "https://tec.openplanner.team/stops/N135bfb"], ["https://tec.openplanner.team/stops/H1ba113b", "https://tec.openplanner.team/stops/H1je216a"], ["https://tec.openplanner.team/stops/Lbbgare2", "https://tec.openplanner.team/stops/Lcemalv2"], ["https://tec.openplanner.team/stops/X661alb", "https://tec.openplanner.team/stops/X661axa"], ["https://tec.openplanner.team/stops/H1as101b", "https://tec.openplanner.team/stops/H1as103c"], ["https://tec.openplanner.team/stops/X822ama", "https://tec.openplanner.team/stops/X822amb"], ["https://tec.openplanner.team/stops/LDaeg--1", "https://tec.openplanner.team/stops/LOMcabi2"], ["https://tec.openplanner.team/stops/N503aea", "https://tec.openplanner.team/stops/N580afa"], ["https://tec.openplanner.team/stops/Cmonvci1", "https://tec.openplanner.team/stops/Cmonvci2"], ["https://tec.openplanner.team/stops/X396aab", "https://tec.openplanner.team/stops/X396abb"], ["https://tec.openplanner.team/stops/H2ch112a", "https://tec.openplanner.team/stops/H2ch112b"], ["https://tec.openplanner.team/stops/N512abb", "https://tec.openplanner.team/stops/N512afb"], ["https://tec.openplanner.team/stops/LaFbruc1", "https://tec.openplanner.team/stops/LmCkirc2"], ["https://tec.openplanner.team/stops/LTIdonn1", "https://tec.openplanner.team/stops/LTIdumo1"], ["https://tec.openplanner.team/stops/H4av100a", "https://tec.openplanner.team/stops/H4av107a"], ["https://tec.openplanner.team/stops/Bwolkra1", "https://tec.openplanner.team/stops/Bwolvan1"], ["https://tec.openplanner.team/stops/LBafagn2", "https://tec.openplanner.team/stops/LNEcouc2"], ["https://tec.openplanner.team/stops/H1hn208a", "https://tec.openplanner.team/stops/H1hn210a"], ["https://tec.openplanner.team/stops/LFrcent1", "https://tec.openplanner.team/stops/LrEochs1"], ["https://tec.openplanner.team/stops/H4hq130a", "https://tec.openplanner.team/stops/H4hs135b"], ["https://tec.openplanner.team/stops/Cmeloti1", "https://tec.openplanner.team/stops/Cmerdby1"], ["https://tec.openplanner.team/stops/X716aaa", "https://tec.openplanner.team/stops/X716aba"], ["https://tec.openplanner.team/stops/Cpllimi2", "https://tec.openplanner.team/stops/Cpllimi5"], ["https://tec.openplanner.team/stops/N564aba", "https://tec.openplanner.team/stops/N564aca"], ["https://tec.openplanner.team/stops/Lhelait1", "https://tec.openplanner.team/stops/Lheterm*"], ["https://tec.openplanner.team/stops/Bgrhhot2", "https://tec.openplanner.team/stops/N519ahb"], ["https://tec.openplanner.team/stops/Lselimi1", "https://tec.openplanner.team/stops/Lsevecq1"], ["https://tec.openplanner.team/stops/N353aab", "https://tec.openplanner.team/stops/N353awa"], ["https://tec.openplanner.team/stops/H4wu377a", "https://tec.openplanner.team/stops/H4wu420b"], ["https://tec.openplanner.team/stops/Bbstcoi1", "https://tec.openplanner.team/stops/Bbstcoi2"], ["https://tec.openplanner.team/stops/H1og130a", "https://tec.openplanner.team/stops/H1og130b"], ["https://tec.openplanner.team/stops/N115aba", "https://tec.openplanner.team/stops/N170adb"], ["https://tec.openplanner.team/stops/X637ajb", "https://tec.openplanner.team/stops/X638aeb"], ["https://tec.openplanner.team/stops/X897ana", "https://tec.openplanner.team/stops/X897aqa"], ["https://tec.openplanner.team/stops/X625aba", "https://tec.openplanner.team/stops/X625acb"], ["https://tec.openplanner.team/stops/Bjdscnd1", "https://tec.openplanner.team/stops/Bjdscnd2"], ["https://tec.openplanner.team/stops/N543bbc", "https://tec.openplanner.team/stops/N543bfb"], ["https://tec.openplanner.team/stops/LHNgare1", "https://tec.openplanner.team/stops/LHNgare2"], ["https://tec.openplanner.team/stops/Lglvict2", "https://tec.openplanner.team/stops/Llgbobu1"], ["https://tec.openplanner.team/stops/N574abb", "https://tec.openplanner.team/stops/N576alb"], ["https://tec.openplanner.team/stops/LHNecpr4", "https://tec.openplanner.team/stops/LHNhall2"], ["https://tec.openplanner.team/stops/Blhutco3", "https://tec.openplanner.team/stops/Blhutco4"], ["https://tec.openplanner.team/stops/X993aib", "https://tec.openplanner.team/stops/X994aka"], ["https://tec.openplanner.team/stops/LAVstat2", "https://tec.openplanner.team/stops/LVPcrok2"], ["https://tec.openplanner.team/stops/N501cgb", "https://tec.openplanner.team/stops/N501cia"], ["https://tec.openplanner.team/stops/H1si157b", "https://tec.openplanner.team/stops/H1si167b"], ["https://tec.openplanner.team/stops/N353aea", "https://tec.openplanner.team/stops/N383acb"], ["https://tec.openplanner.team/stops/Csshouy1", "https://tec.openplanner.team/stops/Csshouy2"], ["https://tec.openplanner.team/stops/X601bja", "https://tec.openplanner.team/stops/X601bjb"], ["https://tec.openplanner.team/stops/Llgdelc2", "https://tec.openplanner.team/stops/Lsnlibe1"], ["https://tec.openplanner.team/stops/Bosqsam1", "https://tec.openplanner.team/stops/Bosqsam2"], ["https://tec.openplanner.team/stops/Lougros1", "https://tec.openplanner.team/stops/Loujouh2"], ["https://tec.openplanner.team/stops/LCIsucr1", "https://tec.openplanner.team/stops/LMXempe1"], ["https://tec.openplanner.team/stops/Cjubert1", "https://tec.openplanner.team/stops/Cjuregi2"], ["https://tec.openplanner.team/stops/X804ada", "https://tec.openplanner.team/stops/X804aza"], ["https://tec.openplanner.team/stops/X756aia", "https://tec.openplanner.team/stops/X779abb"], ["https://tec.openplanner.team/stops/Bpienod1", "https://tec.openplanner.team/stops/Bpienod2"], ["https://tec.openplanner.team/stops/LCpegli1", "https://tec.openplanner.team/stops/LCpvill1"], ["https://tec.openplanner.team/stops/LREhenu2", "https://tec.openplanner.team/stops/LREsoug3"], ["https://tec.openplanner.team/stops/LTEnuro1", "https://tec.openplanner.team/stops/LTEnuro2"], ["https://tec.openplanner.team/stops/N544aab", "https://tec.openplanner.team/stops/N544aba"], ["https://tec.openplanner.team/stops/H1ms268a", "https://tec.openplanner.team/stops/H1ms268b"], ["https://tec.openplanner.team/stops/LHolexh2", "https://tec.openplanner.team/stops/LHZcouv1"], ["https://tec.openplanner.team/stops/H1ol145b", "https://tec.openplanner.team/stops/H1ol146a"], ["https://tec.openplanner.team/stops/Crseuro1", "https://tec.openplanner.team/stops/Crspana4"], ["https://tec.openplanner.team/stops/LFmroye1", "https://tec.openplanner.team/stops/LFmroye2"], ["https://tec.openplanner.team/stops/N874aha", "https://tec.openplanner.team/stops/N874ahb"], ["https://tec.openplanner.team/stops/H4to131a", "https://tec.openplanner.team/stops/H4to131b"], ["https://tec.openplanner.team/stops/Bnivpro1", "https://tec.openplanner.team/stops/Bnivpro2"], ["https://tec.openplanner.team/stops/N503afb", "https://tec.openplanner.team/stops/N503aga"], ["https://tec.openplanner.team/stops/X901aeb", "https://tec.openplanner.team/stops/X901afb"], ["https://tec.openplanner.team/stops/N138aab", "https://tec.openplanner.team/stops/N423agb"], ["https://tec.openplanner.team/stops/Llgfusc1", "https://tec.openplanner.team/stops/Llghec-2"], ["https://tec.openplanner.team/stops/LAUhost2", "https://tec.openplanner.team/stops/LAUscha1"], ["https://tec.openplanner.team/stops/LMHmeha1", "https://tec.openplanner.team/stops/LMHmeha2"], ["https://tec.openplanner.team/stops/X750aob", "https://tec.openplanner.team/stops/X750bfa"], ["https://tec.openplanner.team/stops/H4ka186a", "https://tec.openplanner.team/stops/H4ka189a"], ["https://tec.openplanner.team/stops/LPReg--1", "https://tec.openplanner.team/stops/LTRespe1"], ["https://tec.openplanner.team/stops/X659aba", "https://tec.openplanner.team/stops/X659abb"], ["https://tec.openplanner.team/stops/N230ada", "https://tec.openplanner.team/stops/N230aka"], ["https://tec.openplanner.team/stops/H2pe154b", "https://tec.openplanner.team/stops/H3bi118b"], ["https://tec.openplanner.team/stops/Cmapeet1", "https://tec.openplanner.team/stops/Cmastch2"], ["https://tec.openplanner.team/stops/X921ajb", "https://tec.openplanner.team/stops/X921arb"], ["https://tec.openplanner.team/stops/Bblaall1", "https://tec.openplanner.team/stops/Bblague1"], ["https://tec.openplanner.team/stops/LhGfrie2", "https://tec.openplanner.team/stops/LhGgeme2"], ["https://tec.openplanner.team/stops/H1ms265b", "https://tec.openplanner.team/stops/H1ss352a"], ["https://tec.openplanner.team/stops/H4hx114b", "https://tec.openplanner.team/stops/H4hx122a"], ["https://tec.openplanner.team/stops/LHUecte1", "https://tec.openplanner.team/stops/NL80aha"], ["https://tec.openplanner.team/stops/Bnivbpe2", "https://tec.openplanner.team/stops/Bnivmon1"], ["https://tec.openplanner.team/stops/N543aib", "https://tec.openplanner.team/stops/N543ara"], ["https://tec.openplanner.team/stops/Cbfcham1", "https://tec.openplanner.team/stops/NC11aja"], ["https://tec.openplanner.team/stops/X624ada", "https://tec.openplanner.team/stops/X624aia"], ["https://tec.openplanner.team/stops/LFPgeme1", "https://tec.openplanner.team/stops/LFPkast1"], ["https://tec.openplanner.team/stops/LFR201-1", "https://tec.openplanner.team/stops/LSxeg--1"], ["https://tec.openplanner.team/stops/Lsecroi2", "https://tec.openplanner.team/stops/Lseespe2"], ["https://tec.openplanner.team/stops/LWAclos1", "https://tec.openplanner.team/stops/LWAeloi1"], ["https://tec.openplanner.team/stops/Bwavcar2", "https://tec.openplanner.team/stops/Bwavnep1"], ["https://tec.openplanner.team/stops/Bwatbno1", "https://tec.openplanner.team/stops/Bwatchb1"], ["https://tec.openplanner.team/stops/H4fg116b", "https://tec.openplanner.team/stops/H4wn129b"], ["https://tec.openplanner.team/stops/LaM266-2", "https://tec.openplanner.team/stops/LaMschw1"], ["https://tec.openplanner.team/stops/Clbchba2", "https://tec.openplanner.team/stops/Clbgare1"], ["https://tec.openplanner.team/stops/H4rm107c", "https://tec.openplanner.team/stops/H4rm107d"], ["https://tec.openplanner.team/stops/X614aeb", "https://tec.openplanner.team/stops/X614bab"], ["https://tec.openplanner.team/stops/X641ala", "https://tec.openplanner.team/stops/X641alb"], ["https://tec.openplanner.team/stops/Bvxgegl2", "https://tec.openplanner.team/stops/Cgnquer1"], ["https://tec.openplanner.team/stops/Bbcogar2", "https://tec.openplanner.team/stops/H3br108d"], ["https://tec.openplanner.team/stops/N232asa", "https://tec.openplanner.team/stops/N232btb"], ["https://tec.openplanner.team/stops/LBglign2", "https://tec.openplanner.team/stops/Lthfren1"], ["https://tec.openplanner.team/stops/H2mg149b", "https://tec.openplanner.team/stops/H2se114b"], ["https://tec.openplanner.team/stops/LLteg--2", "https://tec.openplanner.team/stops/NL57aha"], ["https://tec.openplanner.team/stops/Crofrio1", "https://tec.openplanner.team/stops/Croplom3"], ["https://tec.openplanner.team/stops/N203aab", "https://tec.openplanner.team/stops/N560abb"], ["https://tec.openplanner.team/stops/Cmchai1", "https://tec.openplanner.team/stops/Csecroi2"], ["https://tec.openplanner.team/stops/X316aca", "https://tec.openplanner.team/stops/X316acb"], ["https://tec.openplanner.team/stops/Bllnpsc1", "https://tec.openplanner.team/stops/Bllnpsc2"], ["https://tec.openplanner.team/stops/X948aua", "https://tec.openplanner.team/stops/X948aub"], ["https://tec.openplanner.team/stops/H1br128a", "https://tec.openplanner.team/stops/H1br128b"], ["https://tec.openplanner.team/stops/X945ada", "https://tec.openplanner.team/stops/X948aqa"], ["https://tec.openplanner.team/stops/X955aeb", "https://tec.openplanner.team/stops/X955agb"], ["https://tec.openplanner.team/stops/LFAscie2", "https://tec.openplanner.team/stops/LFUchpl2"], ["https://tec.openplanner.team/stops/LSAjacq1", "https://tec.openplanner.team/stops/LSAtrih1"], ["https://tec.openplanner.team/stops/X979aba", "https://tec.openplanner.team/stops/X979ada"], ["https://tec.openplanner.team/stops/N501cba", "https://tec.openplanner.team/stops/N501cja"], ["https://tec.openplanner.team/stops/Bnivros1", "https://tec.openplanner.team/stops/Bnivvcw1"], ["https://tec.openplanner.team/stops/N310aea", "https://tec.openplanner.team/stops/N343aeb"], ["https://tec.openplanner.team/stops/Baegm502", "https://tec.openplanner.team/stops/NR38adb"], ["https://tec.openplanner.team/stops/X898aoa", "https://tec.openplanner.team/stops/X898aob"], ["https://tec.openplanner.team/stops/Bbghepi2", "https://tec.openplanner.team/stops/Benggar1"], ["https://tec.openplanner.team/stops/X804aib", "https://tec.openplanner.team/stops/X804arb"], ["https://tec.openplanner.team/stops/H1al105b", "https://tec.openplanner.team/stops/H1al108a"], ["https://tec.openplanner.team/stops/LDAalbe2", "https://tec.openplanner.team/stops/LTrmaro2"], ["https://tec.openplanner.team/stops/LCPcomp1", "https://tec.openplanner.team/stops/LCPvign2"], ["https://tec.openplanner.team/stops/N531anb", "https://tec.openplanner.team/stops/N576afb"], ["https://tec.openplanner.team/stops/N501gdb", "https://tec.openplanner.team/stops/N501mta"], ["https://tec.openplanner.team/stops/X899abb", "https://tec.openplanner.team/stops/X899acb"], ["https://tec.openplanner.team/stops/H2re174b", "https://tec.openplanner.team/stops/H2re175b"], ["https://tec.openplanner.team/stops/Lhufont1", "https://tec.openplanner.team/stops/Lhutann1"], ["https://tec.openplanner.team/stops/X716acb", "https://tec.openplanner.team/stops/X735abc"], ["https://tec.openplanner.team/stops/Lbhfaye1", "https://tec.openplanner.team/stops/Ljuvert1"], ["https://tec.openplanner.team/stops/X878aca", "https://tec.openplanner.team/stops/X898aca"], ["https://tec.openplanner.team/stops/Lrcchpl2", "https://tec.openplanner.team/stops/Lvochev1"], ["https://tec.openplanner.team/stops/X614aka", "https://tec.openplanner.team/stops/X623aia"], ["https://tec.openplanner.team/stops/Bcrnegl2", "https://tec.openplanner.team/stops/Bcrnsge1"], ["https://tec.openplanner.team/stops/Berneco1", "https://tec.openplanner.team/stops/Berneco2"], ["https://tec.openplanner.team/stops/Canh1942", "https://tec.openplanner.team/stops/Canlalu1"], ["https://tec.openplanner.team/stops/X637aob", "https://tec.openplanner.team/stops/X638apa"], ["https://tec.openplanner.team/stops/LRmkerk1", "https://tec.openplanner.team/stops/LRmmabr1"], ["https://tec.openplanner.team/stops/H4fr391a", "https://tec.openplanner.team/stops/H4ty301d"], ["https://tec.openplanner.team/stops/H1ms303a", "https://tec.openplanner.team/stops/H1ms901a"], ["https://tec.openplanner.team/stops/H4ob108a", "https://tec.openplanner.team/stops/H4ob108b"], ["https://tec.openplanner.team/stops/LaR1G--1", "https://tec.openplanner.team/stops/LrUlasc2"], ["https://tec.openplanner.team/stops/Crodebr2", "https://tec.openplanner.team/stops/Crofrio1"], ["https://tec.openplanner.team/stops/H3lr113a", "https://tec.openplanner.team/stops/H3lr120a"], ["https://tec.openplanner.team/stops/Bdvmalo1", "https://tec.openplanner.team/stops/Bdvmcbo1"], ["https://tec.openplanner.team/stops/X761aaa", "https://tec.openplanner.team/stops/X762agb"], ["https://tec.openplanner.team/stops/N569aaa", "https://tec.openplanner.team/stops/N569aab"], ["https://tec.openplanner.team/stops/Buccchu1", "https://tec.openplanner.team/stops/Buccchu2"], ["https://tec.openplanner.team/stops/N553ahb", "https://tec.openplanner.team/stops/N553aqb"], ["https://tec.openplanner.team/stops/LFdchau2", "https://tec.openplanner.team/stops/LLMfond2"], ["https://tec.openplanner.team/stops/LoDulf-1", "https://tec.openplanner.team/stops/LoDulf-2"], ["https://tec.openplanner.team/stops/Lmndeso1", "https://tec.openplanner.team/stops/Lmneg--2"], ["https://tec.openplanner.team/stops/H5qu146a", "https://tec.openplanner.team/stops/H5qu158a"], ["https://tec.openplanner.team/stops/N547aeb", "https://tec.openplanner.team/stops/N550aja"], ["https://tec.openplanner.team/stops/LrEdic11", "https://tec.openplanner.team/stops/LrEdic71"], ["https://tec.openplanner.team/stops/N145ahb", "https://tec.openplanner.team/stops/N149aab"], ["https://tec.openplanner.team/stops/LBrbern2", "https://tec.openplanner.team/stops/LBrmeiz2"], ["https://tec.openplanner.team/stops/Lchsaro1", "https://tec.openplanner.team/stops/Lchsart1"], ["https://tec.openplanner.team/stops/Bgemcro1", "https://tec.openplanner.team/stops/Bgemgjo2"], ["https://tec.openplanner.team/stops/H1gh154b", "https://tec.openplanner.team/stops/H1gh159b"], ["https://tec.openplanner.team/stops/N150aaa", "https://tec.openplanner.team/stops/N150aab"], ["https://tec.openplanner.team/stops/X982blb", "https://tec.openplanner.team/stops/X982bqb"], ["https://tec.openplanner.team/stops/X911anb", "https://tec.openplanner.team/stops/X911aub"], ["https://tec.openplanner.team/stops/LHUdeni1", "https://tec.openplanner.team/stops/LHUdeni3"], ["https://tec.openplanner.team/stops/X750apa", "https://tec.openplanner.team/stops/X750blb"], ["https://tec.openplanner.team/stops/Lcegare1", "https://tec.openplanner.team/stops/Lcemc--1"], ["https://tec.openplanner.team/stops/X791aab", "https://tec.openplanner.team/stops/X791ada"], ["https://tec.openplanner.team/stops/X636afb", "https://tec.openplanner.team/stops/X636aha"], ["https://tec.openplanner.team/stops/X953aaa", "https://tec.openplanner.team/stops/X953aca"], ["https://tec.openplanner.team/stops/LSMgare1", "https://tec.openplanner.team/stops/LSMgare2"], ["https://tec.openplanner.team/stops/LBPeg--1", "https://tec.openplanner.team/stops/LBPeg--2"], ["https://tec.openplanner.team/stops/N524aha", "https://tec.openplanner.team/stops/N524ahb"], ["https://tec.openplanner.team/stops/Bmrlcch1", "https://tec.openplanner.team/stops/Bmrllgr1"], ["https://tec.openplanner.team/stops/N127aaa", "https://tec.openplanner.team/stops/N127acb"], ["https://tec.openplanner.team/stops/H1vt193a", "https://tec.openplanner.team/stops/H1vt196a"], ["https://tec.openplanner.team/stops/Cfocobe1", "https://tec.openplanner.team/stops/Cfosurs2"], ["https://tec.openplanner.team/stops/X948aaa", "https://tec.openplanner.team/stops/X948bab"], ["https://tec.openplanner.team/stops/Cjuchli2", "https://tec.openplanner.team/stops/Cjuhopi1"], ["https://tec.openplanner.team/stops/LBSpail4", "https://tec.openplanner.team/stops/LBStong1"], ["https://tec.openplanner.team/stops/Clodesc2", "https://tec.openplanner.team/stops/CMdesc1"], ["https://tec.openplanner.team/stops/H4by117b", "https://tec.openplanner.team/stops/H4tu172b"], ["https://tec.openplanner.team/stops/Barcsta2", "https://tec.openplanner.team/stops/Bgzdgth1"], ["https://tec.openplanner.team/stops/X741afb", "https://tec.openplanner.team/stops/X741apb"], ["https://tec.openplanner.team/stops/H4ne132d", "https://tec.openplanner.team/stops/H4tf147a"], ["https://tec.openplanner.team/stops/Llgfran1", "https://tec.openplanner.team/stops/Llglema2"], ["https://tec.openplanner.team/stops/X618ahb", "https://tec.openplanner.team/stops/X618aib"], ["https://tec.openplanner.team/stops/LwYbrkr1", "https://tec.openplanner.team/stops/LwYbruc3"], ["https://tec.openplanner.team/stops/H4co151a", "https://tec.openplanner.team/stops/H4wn130b"], ["https://tec.openplanner.team/stops/Bwatfva1", "https://tec.openplanner.team/stops/Bwatgib1"], ["https://tec.openplanner.team/stops/N510aaa", "https://tec.openplanner.team/stops/N510acb"], ["https://tec.openplanner.team/stops/Clsghoy1", "https://tec.openplanner.team/stops/H1ls108b"], ["https://tec.openplanner.team/stops/H2mo145a", "https://tec.openplanner.team/stops/H2mo145b"], ["https://tec.openplanner.team/stops/H5pe130a", "https://tec.openplanner.team/stops/H5pe130b"], ["https://tec.openplanner.team/stops/H2hl110a", "https://tec.openplanner.team/stops/H2sv216a"], ["https://tec.openplanner.team/stops/LHvvill*", "https://tec.openplanner.team/stops/LRfbeau2"], ["https://tec.openplanner.team/stops/LLescie1", "https://tec.openplanner.team/stops/LVRchpl1"], ["https://tec.openplanner.team/stops/N525aha", "https://tec.openplanner.team/stops/N525ahb"], ["https://tec.openplanner.team/stops/LlgguilE", "https://tec.openplanner.team/stops/LlgguilF"], ["https://tec.openplanner.team/stops/Cbbcrbo1", "https://tec.openplanner.team/stops/Cbmgrav1"], ["https://tec.openplanner.team/stops/H1hr118b", "https://tec.openplanner.team/stops/H1hr118d"], ["https://tec.openplanner.team/stops/Lgrclos1", "https://tec.openplanner.team/stops/Lgrclos2"], ["https://tec.openplanner.team/stops/H1ms905a", "https://tec.openplanner.team/stops/H1ms925a"], ["https://tec.openplanner.team/stops/LBSchpl1", "https://tec.openplanner.team/stops/LBSnouw1"], ["https://tec.openplanner.team/stops/X804anb", "https://tec.openplanner.team/stops/X804cba"], ["https://tec.openplanner.team/stops/Bohnmes1", "https://tec.openplanner.team/stops/Bohnmes4"], ["https://tec.openplanner.team/stops/LESslmo1", "https://tec.openplanner.team/stops/LTIcime1"], ["https://tec.openplanner.team/stops/X750anb", "https://tec.openplanner.team/stops/X750boa"], ["https://tec.openplanner.team/stops/H2gy106a", "https://tec.openplanner.team/stops/H2gy106b"], ["https://tec.openplanner.team/stops/H1je365a", "https://tec.openplanner.team/stops/H1je368a"], ["https://tec.openplanner.team/stops/X818aga", "https://tec.openplanner.team/stops/X818ahb"], ["https://tec.openplanner.team/stops/H1ha184b", "https://tec.openplanner.team/stops/H1ha187a"], ["https://tec.openplanner.team/stops/N525ala", "https://tec.openplanner.team/stops/N525alb"], ["https://tec.openplanner.team/stops/LBTfoot1", "https://tec.openplanner.team/stops/LBTfoot2"], ["https://tec.openplanner.team/stops/LLrlour1", "https://tec.openplanner.team/stops/LLrlour2"], ["https://tec.openplanner.team/stops/N562aga", "https://tec.openplanner.team/stops/N562aia"], ["https://tec.openplanner.team/stops/Lhemilm1", "https://tec.openplanner.team/stops/Lhrspi-1"], ["https://tec.openplanner.team/stops/Lprperr1", "https://tec.openplanner.team/stops/Lprperr2"], ["https://tec.openplanner.team/stops/N501ezb", "https://tec.openplanner.team/stops/N501jrb"], ["https://tec.openplanner.team/stops/LLmcarr1", "https://tec.openplanner.team/stops/LLmvand2"], ["https://tec.openplanner.team/stops/X601cha", "https://tec.openplanner.team/stops/X601cia"], ["https://tec.openplanner.team/stops/H4mo148a", "https://tec.openplanner.team/stops/H4mo148b"], ["https://tec.openplanner.team/stops/LmHdrei1", "https://tec.openplanner.team/stops/LmHvenn1"], ["https://tec.openplanner.team/stops/N152aaa", "https://tec.openplanner.team/stops/N152aaf"], ["https://tec.openplanner.team/stops/LBWfusi2", "https://tec.openplanner.team/stops/LWRgare2"], ["https://tec.openplanner.team/stops/LFychpl1", "https://tec.openplanner.team/stops/LiVkreu4"], ["https://tec.openplanner.team/stops/Bnivsto1", "https://tec.openplanner.team/stops/Bnivsto2"], ["https://tec.openplanner.team/stops/H1gc124b", "https://tec.openplanner.team/stops/H1go118a"], ["https://tec.openplanner.team/stops/LaAhaup2", "https://tec.openplanner.team/stops/LaAkapi2"], ["https://tec.openplanner.team/stops/X359aaa", "https://tec.openplanner.team/stops/X359abb"], ["https://tec.openplanner.team/stops/X765ada", "https://tec.openplanner.team/stops/X765afa"], ["https://tec.openplanner.team/stops/H1hm177b", "https://tec.openplanner.team/stops/H1ss351a"], ["https://tec.openplanner.team/stops/Cjuhopi2", "https://tec.openplanner.team/stops/CMcarr1"], ["https://tec.openplanner.team/stops/LTiruel1", "https://tec.openplanner.team/stops/LTiruel2"], ["https://tec.openplanner.team/stops/N103aia", "https://tec.openplanner.team/stops/N104aaa"], ["https://tec.openplanner.team/stops/Lkiecol1", "https://tec.openplanner.team/stops/Lkirenk1"], ["https://tec.openplanner.team/stops/Ltihorl1", "https://tec.openplanner.team/stops/Ltithie2"], ["https://tec.openplanner.team/stops/LHanest2", "https://tec.openplanner.team/stops/LHaxhor1"], ["https://tec.openplanner.team/stops/LeYdorf1", "https://tec.openplanner.team/stops/LeYmosc1"], ["https://tec.openplanner.team/stops/X802ada", "https://tec.openplanner.team/stops/X802afa"], ["https://tec.openplanner.team/stops/LHMchbl2", "https://tec.openplanner.team/stops/LSIgehe1"], ["https://tec.openplanner.team/stops/LNAbras2", "https://tec.openplanner.team/stops/LNAbras3"], ["https://tec.openplanner.team/stops/N512apa", "https://tec.openplanner.team/stops/N512apb"], ["https://tec.openplanner.team/stops/Bgerd321", "https://tec.openplanner.team/stops/NB33afa"], ["https://tec.openplanner.team/stops/N543aaa", "https://tec.openplanner.team/stops/N543acb"], ["https://tec.openplanner.team/stops/H4hu121a", "https://tec.openplanner.team/stops/H4og216b"], ["https://tec.openplanner.team/stops/H4vx365a", "https://tec.openplanner.team/stops/H4vx365b"], ["https://tec.openplanner.team/stops/Bsgeegl4", "https://tec.openplanner.team/stops/Bsgeqpb1"], ["https://tec.openplanner.team/stops/H4tp143a", "https://tec.openplanner.team/stops/H4tp145b"], ["https://tec.openplanner.team/stops/X610aeb", "https://tec.openplanner.team/stops/X610afa"], ["https://tec.openplanner.team/stops/Lmndeso2", "https://tec.openplanner.team/stops/Lmneg--2"], ["https://tec.openplanner.team/stops/X911asb", "https://tec.openplanner.team/stops/X911avb"], ["https://tec.openplanner.team/stops/H4cw104b", "https://tec.openplanner.team/stops/H4lz163a"], ["https://tec.openplanner.team/stops/N501aab", "https://tec.openplanner.team/stops/N501aaz"], ["https://tec.openplanner.team/stops/H1ca103b", "https://tec.openplanner.team/stops/H1ne144a"], ["https://tec.openplanner.team/stops/Bviravi1", "https://tec.openplanner.team/stops/Bviravi2"], ["https://tec.openplanner.team/stops/X901bna", "https://tec.openplanner.team/stops/X901bnb"], ["https://tec.openplanner.team/stops/LhP25--1", "https://tec.openplanner.team/stops/LhPhale1"], ["https://tec.openplanner.team/stops/X925ajb", "https://tec.openplanner.team/stops/X996aba"], ["https://tec.openplanner.team/stops/X901aha", "https://tec.openplanner.team/stops/X901aob"], ["https://tec.openplanner.team/stops/X808aaa", "https://tec.openplanner.team/stops/X808ada"], ["https://tec.openplanner.team/stops/LHHplac1", "https://tec.openplanner.team/stops/LHHtill2"], ["https://tec.openplanner.team/stops/X825aeb", "https://tec.openplanner.team/stops/X826abb"], ["https://tec.openplanner.team/stops/Lhrecol2", "https://tec.openplanner.team/stops/Lhrhenr1"], ["https://tec.openplanner.team/stops/Bcrncce2", "https://tec.openplanner.team/stops/Bgntalt3"], ["https://tec.openplanner.team/stops/LFRhock1", "https://tec.openplanner.team/stops/LSZpiro1"], ["https://tec.openplanner.team/stops/Lpebier2", "https://tec.openplanner.team/stops/Lpelouh1"], ["https://tec.openplanner.team/stops/H1fr111b", "https://tec.openplanner.team/stops/H1fr124b"], ["https://tec.openplanner.team/stops/Cfrcomp2", "https://tec.openplanner.team/stops/Cfrmon4"], ["https://tec.openplanner.team/stops/Cjualed1", "https://tec.openplanner.team/stops/Cjudest1"], ["https://tec.openplanner.team/stops/N563ama", "https://tec.openplanner.team/stops/N563amb"], ["https://tec.openplanner.team/stops/Lhrmemo1", "https://tec.openplanner.team/stops/Lhrunir1"], ["https://tec.openplanner.team/stops/N501anb", "https://tec.openplanner.team/stops/N501nca"], ["https://tec.openplanner.team/stops/LaMwies1", "https://tec.openplanner.team/stops/LeIkreu3"], ["https://tec.openplanner.team/stops/LSHhade1", "https://tec.openplanner.team/stops/LSOtheu2"], ["https://tec.openplanner.team/stops/Ladegli1", "https://tec.openplanner.team/stops/Ladlaur2"], ["https://tec.openplanner.team/stops/Bneecha2", "https://tec.openplanner.team/stops/Bneedia1"], ["https://tec.openplanner.team/stops/Btieast1", "https://tec.openplanner.team/stops/Btiegma1"], ["https://tec.openplanner.team/stops/LLzcruc1", "https://tec.openplanner.team/stops/LLzcruc2"], ["https://tec.openplanner.team/stops/LhMdorf1", "https://tec.openplanner.team/stops/LhMdorf2"], ["https://tec.openplanner.team/stops/Lrahoig1", "https://tec.openplanner.team/stops/Lrapays2"], ["https://tec.openplanner.team/stops/LeUmalm2", "https://tec.openplanner.team/stops/LeUschi1"], ["https://tec.openplanner.team/stops/Cvsduve2", "https://tec.openplanner.team/stops/Cvssncv2"], ["https://tec.openplanner.team/stops/X369aab", "https://tec.openplanner.team/stops/X369abb"], ["https://tec.openplanner.team/stops/H2ll182b", "https://tec.openplanner.team/stops/H2ll200a"], ["https://tec.openplanner.team/stops/Llgjenn2", "https://tec.openplanner.team/stops/Llgwiar4"], ["https://tec.openplanner.team/stops/LTobilz2", "https://tec.openplanner.team/stops/LTotrui2"], ["https://tec.openplanner.team/stops/LGe4bra1", "https://tec.openplanner.team/stops/LGeforg2"], ["https://tec.openplanner.team/stops/Cbufron2", "https://tec.openplanner.team/stops/Ceregl2"], ["https://tec.openplanner.team/stops/Loudemo2", "https://tec.openplanner.team/stops/Loutrix1"], ["https://tec.openplanner.team/stops/Cauptsa2", "https://tec.openplanner.team/stops/N530aca"], ["https://tec.openplanner.team/stops/X681aeb", "https://tec.openplanner.team/stops/X681afb"], ["https://tec.openplanner.team/stops/H5pe144a", "https://tec.openplanner.team/stops/H5pe150a"], ["https://tec.openplanner.team/stops/Bwavche1", "https://tec.openplanner.team/stops/Bwavnam4"], ["https://tec.openplanner.team/stops/LHUetie*", "https://tec.openplanner.team/stops/LSteg--2"], ["https://tec.openplanner.team/stops/Bhalgja2", "https://tec.openplanner.team/stops/Bhalrat1"], ["https://tec.openplanner.team/stops/LWEchat1", "https://tec.openplanner.team/stops/LWEcomp2"], ["https://tec.openplanner.team/stops/Bhalark2", "https://tec.openplanner.team/stops/Bhalber3"], ["https://tec.openplanner.team/stops/H1wa162b", "https://tec.openplanner.team/stops/H1wg131a"], ["https://tec.openplanner.team/stops/Blsmjja1", "https://tec.openplanner.team/stops/Blsmjja2"], ["https://tec.openplanner.team/stops/LFychpl2", "https://tec.openplanner.team/stops/LsHlenz1"], ["https://tec.openplanner.team/stops/LROgeuz1", "https://tec.openplanner.team/stops/LWalibo1"], ["https://tec.openplanner.team/stops/X720aba", "https://tec.openplanner.team/stops/X720aca"], ["https://tec.openplanner.team/stops/LSG172-2", "https://tec.openplanner.team/stops/LSGmall1"], ["https://tec.openplanner.team/stops/Ccohuli1", "https://tec.openplanner.team/stops/Ccotemp2"], ["https://tec.openplanner.team/stops/Lbogonh2", "https://tec.openplanner.team/stops/Lbotilf2"], ["https://tec.openplanner.team/stops/Cmadeli2", "https://tec.openplanner.team/stops/CMcart2"], ["https://tec.openplanner.team/stops/N551afa", "https://tec.openplanner.team/stops/N551afb"], ["https://tec.openplanner.team/stops/X614awa", "https://tec.openplanner.team/stops/X615anb"], ["https://tec.openplanner.team/stops/Chpceri2", "https://tec.openplanner.team/stops/Chpchea1"], ["https://tec.openplanner.team/stops/Csiegli1", "https://tec.openplanner.team/stops/N103aca"], ["https://tec.openplanner.team/stops/Bsgebou2", "https://tec.openplanner.team/stops/Bsgetri1"], ["https://tec.openplanner.team/stops/H4am113a", "https://tec.openplanner.team/stops/H4rs118b"], ["https://tec.openplanner.team/stops/X756aec", "https://tec.openplanner.team/stops/X756agd"], ["https://tec.openplanner.team/stops/Cfrgivr1", "https://tec.openplanner.team/stops/Cfrmonu1"], ["https://tec.openplanner.team/stops/X661aqb", "https://tec.openplanner.team/stops/X839aeb"], ["https://tec.openplanner.team/stops/X804aka", "https://tec.openplanner.team/stops/X804akb"], ["https://tec.openplanner.team/stops/Ccychba1", "https://tec.openplanner.team/stops/Ccycont2"], ["https://tec.openplanner.team/stops/Bjodath2", "https://tec.openplanner.team/stops/Bjodcar1"], ["https://tec.openplanner.team/stops/LDoeg--1", "https://tec.openplanner.team/stops/LDomoul2"], ["https://tec.openplanner.team/stops/Lalparc2", "https://tec.openplanner.team/stops/Lalverr2"], ["https://tec.openplanner.team/stops/Caiecol2", "https://tec.openplanner.team/stops/N543cia"], ["https://tec.openplanner.team/stops/Bqueaga1", "https://tec.openplanner.team/stops/Bquesta2"], ["https://tec.openplanner.team/stops/X812bab", "https://tec.openplanner.team/stops/X812bga"], ["https://tec.openplanner.team/stops/N554adb", "https://tec.openplanner.team/stops/N573apa"], ["https://tec.openplanner.team/stops/Cflchmo1", "https://tec.openplanner.team/stops/Cflchmo2"], ["https://tec.openplanner.team/stops/Cnachat2", "https://tec.openplanner.team/stops/Cnacout1"], ["https://tec.openplanner.team/stops/Cgywaut1", "https://tec.openplanner.team/stops/Cgywaut2"], ["https://tec.openplanner.team/stops/LGLbrus1", "https://tec.openplanner.team/stops/LGLbrus2"], ["https://tec.openplanner.team/stops/H1ne139a", "https://tec.openplanner.team/stops/H1ne139b"], ["https://tec.openplanner.team/stops/Cmgtour1", "https://tec.openplanner.team/stops/Cmgtour2"], ["https://tec.openplanner.team/stops/NC02aab", "https://tec.openplanner.team/stops/NC14ahb"], ["https://tec.openplanner.team/stops/LPohoeg2", "https://tec.openplanner.team/stops/LPoneuf1"], ["https://tec.openplanner.team/stops/X736aea", "https://tec.openplanner.team/stops/X736aga"], ["https://tec.openplanner.team/stops/LAufech1", "https://tec.openplanner.team/stops/LAuvici1"], ["https://tec.openplanner.team/stops/LHehacc1", "https://tec.openplanner.team/stops/LHTmoul2"], ["https://tec.openplanner.team/stops/LkAmess1", "https://tec.openplanner.team/stops/LkAsonn1"], ["https://tec.openplanner.team/stops/N538aea", "https://tec.openplanner.team/stops/N538ajd"], ["https://tec.openplanner.team/stops/LRaplac1", "https://tec.openplanner.team/stops/LRaplac2"], ["https://tec.openplanner.team/stops/Cstcent2", "https://tec.openplanner.team/stops/Cstdona6"], ["https://tec.openplanner.team/stops/LBgcroi4", "https://tec.openplanner.team/stops/LBgnach1"], ["https://tec.openplanner.team/stops/H4ta134b", "https://tec.openplanner.team/stops/H4wu420a"], ["https://tec.openplanner.team/stops/LLrgare1", "https://tec.openplanner.team/stops/LLrgare2"], ["https://tec.openplanner.team/stops/X763aca", "https://tec.openplanner.team/stops/X763acb"], ["https://tec.openplanner.team/stops/H1qg138b", "https://tec.openplanner.team/stops/H1qy133b"], ["https://tec.openplanner.team/stops/N201aoa", "https://tec.openplanner.team/stops/N219adb"], ["https://tec.openplanner.team/stops/Bnodeco2", "https://tec.openplanner.team/stops/Bnodtir1"], ["https://tec.openplanner.team/stops/LBStong2", "https://tec.openplanner.team/stops/LRGbett3"], ["https://tec.openplanner.team/stops/X911ama", "https://tec.openplanner.team/stops/X911aua"], ["https://tec.openplanner.team/stops/X804aja", "https://tec.openplanner.team/stops/X804aka"], ["https://tec.openplanner.team/stops/H5wo128b", "https://tec.openplanner.team/stops/H5wo129a"], ["https://tec.openplanner.team/stops/H4bd112b", "https://tec.openplanner.team/stops/H4ma411a"], ["https://tec.openplanner.team/stops/X869aaa", "https://tec.openplanner.team/stops/X869aba"], ["https://tec.openplanner.team/stops/Cwxchap1", "https://tec.openplanner.team/stops/Cwxplac1"], ["https://tec.openplanner.team/stops/H4fr392a", "https://tec.openplanner.team/stops/H4ty301d"], ["https://tec.openplanner.team/stops/N551aoa", "https://tec.openplanner.team/stops/N551aob"], ["https://tec.openplanner.team/stops/X512abb", "https://tec.openplanner.team/stops/X512aja"], ["https://tec.openplanner.team/stops/H1sa112b", "https://tec.openplanner.team/stops/H1sa114a"], ["https://tec.openplanner.team/stops/H4ru240a", "https://tec.openplanner.team/stops/H4ru244a"], ["https://tec.openplanner.team/stops/H1er109b", "https://tec.openplanner.team/stops/H1so142c"], ["https://tec.openplanner.team/stops/Bblabar1", "https://tec.openplanner.team/stops/Clpsola1"], ["https://tec.openplanner.team/stops/N584aea", "https://tec.openplanner.team/stops/N584aja"], ["https://tec.openplanner.team/stops/N308bjb", "https://tec.openplanner.team/stops/N312adb"], ["https://tec.openplanner.team/stops/N135ata", "https://tec.openplanner.team/stops/N135aua"], ["https://tec.openplanner.team/stops/NL76afa", "https://tec.openplanner.team/stops/NL76agb"], ["https://tec.openplanner.team/stops/LBEairp1", "https://tec.openplanner.team/stops/LBEairp2"], ["https://tec.openplanner.team/stops/X602aba", "https://tec.openplanner.team/stops/X633abb"], ["https://tec.openplanner.team/stops/X730aeb", "https://tec.openplanner.team/stops/X731afb"], ["https://tec.openplanner.team/stops/LWacime1", "https://tec.openplanner.team/stops/LWacime2"], ["https://tec.openplanner.team/stops/N236aca", "https://tec.openplanner.team/stops/N236acb"], ["https://tec.openplanner.team/stops/Csepost1", "https://tec.openplanner.team/stops/Cvtndam2"], ["https://tec.openplanner.team/stops/LQacabi1", "https://tec.openplanner.team/stops/LQafond2"], ["https://tec.openplanner.team/stops/H1ry135a", "https://tec.openplanner.team/stops/H1ry136a"], ["https://tec.openplanner.team/stops/Bblafra1", "https://tec.openplanner.team/stops/Bblafra2"], ["https://tec.openplanner.team/stops/N543axa", "https://tec.openplanner.team/stops/N543axb"], ["https://tec.openplanner.team/stops/LMoviel1", "https://tec.openplanner.team/stops/LMovieu2"], ["https://tec.openplanner.team/stops/H4mo156a", "https://tec.openplanner.team/stops/H4mo204b"], ["https://tec.openplanner.team/stops/H2sb239a", "https://tec.openplanner.team/stops/H2sb239c"], ["https://tec.openplanner.team/stops/Ccumasu2", "https://tec.openplanner.team/stops/Cpicite1"], ["https://tec.openplanner.team/stops/H5rx112a", "https://tec.openplanner.team/stops/H5rx145b"], ["https://tec.openplanner.team/stops/Llgjonr2", "https://tec.openplanner.team/stops/Llgmare1"], ["https://tec.openplanner.team/stops/LHDpota1", "https://tec.openplanner.team/stops/LLmcarr2"], ["https://tec.openplanner.team/stops/X768aib", "https://tec.openplanner.team/stops/X768ajb"], ["https://tec.openplanner.team/stops/N515afa", "https://tec.openplanner.team/stops/N517aca"], ["https://tec.openplanner.team/stops/H4ep127a", "https://tec.openplanner.team/stops/H4rm108a"], ["https://tec.openplanner.team/stops/H4le128b", "https://tec.openplanner.team/stops/H4ry130a"], ["https://tec.openplanner.team/stops/X806ajb", "https://tec.openplanner.team/stops/X808aka"], ["https://tec.openplanner.team/stops/H4ss158a", "https://tec.openplanner.team/stops/H4ss158b"], ["https://tec.openplanner.team/stops/X601aya", "https://tec.openplanner.team/stops/X601bka"], ["https://tec.openplanner.team/stops/Cgzabau2", "https://tec.openplanner.team/stops/Cgzchen2"], ["https://tec.openplanner.team/stops/Canjon3", "https://tec.openplanner.team/stops/Canstat1"], ["https://tec.openplanner.team/stops/H1mj122a", "https://tec.openplanner.team/stops/H1mj125a"], ["https://tec.openplanner.team/stops/N501epa", "https://tec.openplanner.team/stops/N501kqa"], ["https://tec.openplanner.team/stops/X888aca", "https://tec.openplanner.team/stops/X888ada"], ["https://tec.openplanner.team/stops/H3lr108b", "https://tec.openplanner.team/stops/H3lr110b"], ["https://tec.openplanner.team/stops/LAbchpl2", "https://tec.openplanner.team/stops/LTechpl1"], ["https://tec.openplanner.team/stops/Cmlbrac1", "https://tec.openplanner.team/stops/Cmlrous2"], ["https://tec.openplanner.team/stops/H3bi101b", "https://tec.openplanner.team/stops/H3bi105d"], ["https://tec.openplanner.team/stops/H1qu104a", "https://tec.openplanner.team/stops/H1wl123a"], ["https://tec.openplanner.team/stops/Bcseeco2", "https://tec.openplanner.team/stops/Bcseeco3"], ["https://tec.openplanner.team/stops/Cgyplst2", "https://tec.openplanner.team/stops/Cgywaut2"], ["https://tec.openplanner.team/stops/N502aba", "https://tec.openplanner.team/stops/N509ajb"], ["https://tec.openplanner.team/stops/LlNlimb1", "https://tec.openplanner.team/stops/LlNschu2"], ["https://tec.openplanner.team/stops/N577acb", "https://tec.openplanner.team/stops/N577aeb"], ["https://tec.openplanner.team/stops/H1te187a", "https://tec.openplanner.team/stops/H1te187b"], ["https://tec.openplanner.team/stops/Csychap1", "https://tec.openplanner.team/stops/Csychap3"], ["https://tec.openplanner.team/stops/H1ch102b", "https://tec.openplanner.team/stops/H4ab102a"], ["https://tec.openplanner.team/stops/LXHbois1", "https://tec.openplanner.team/stops/LXHbois2"], ["https://tec.openplanner.team/stops/Bnetace2", "https://tec.openplanner.team/stops/Bnetcor1"], ["https://tec.openplanner.team/stops/X547ahb", "https://tec.openplanner.team/stops/X547aib"], ["https://tec.openplanner.team/stops/Ctabaty3", "https://tec.openplanner.team/stops/Ctapn2"], ["https://tec.openplanner.team/stops/LiVdorf2", "https://tec.openplanner.team/stops/LmObahn*"], ["https://tec.openplanner.team/stops/H4ga148b", "https://tec.openplanner.team/stops/H4ga160a"], ["https://tec.openplanner.team/stops/Bnivbos1", "https://tec.openplanner.team/stops/Bnivbos2"], ["https://tec.openplanner.team/stops/LDomoul2", "https://tec.openplanner.team/stops/LLiforg2"], ["https://tec.openplanner.team/stops/H1br120b", "https://tec.openplanner.team/stops/H2tr248b"], ["https://tec.openplanner.team/stops/Cgosoux2", "https://tec.openplanner.team/stops/Cjuaero1"], ["https://tec.openplanner.team/stops/LNIbas-2", "https://tec.openplanner.team/stops/LTgcime1"], ["https://tec.openplanner.team/stops/Bvilcha2", "https://tec.openplanner.team/stops/Bvilcoq2"], ["https://tec.openplanner.team/stops/X636apa", "https://tec.openplanner.team/stops/X636apb"], ["https://tec.openplanner.team/stops/X661aua", "https://tec.openplanner.team/stops/X661ava"], ["https://tec.openplanner.team/stops/LLmvict1", "https://tec.openplanner.team/stops/LReeg--1"], ["https://tec.openplanner.team/stops/Lagbeno5", "https://tec.openplanner.team/stops/Lagmoli2"], ["https://tec.openplanner.team/stops/N424ada", "https://tec.openplanner.team/stops/N424adb"], ["https://tec.openplanner.team/stops/X354adb", "https://tec.openplanner.team/stops/X354aea"], ["https://tec.openplanner.team/stops/Cgxalli1", "https://tec.openplanner.team/stops/Cgxcite1"], ["https://tec.openplanner.team/stops/N343aeb", "https://tec.openplanner.team/stops/X343aic"], ["https://tec.openplanner.team/stops/Cmypela1", "https://tec.openplanner.team/stops/Cmyrens2"], ["https://tec.openplanner.team/stops/N507aba", "https://tec.openplanner.team/stops/NL30aka"], ["https://tec.openplanner.team/stops/H4oe152a", "https://tec.openplanner.team/stops/H4oe152b"], ["https://tec.openplanner.team/stops/Blig4br2", "https://tec.openplanner.team/stops/N584bpa"], ["https://tec.openplanner.team/stops/Bboueta1", "https://tec.openplanner.team/stops/Bbougar2"], ["https://tec.openplanner.team/stops/N110aha", "https://tec.openplanner.team/stops/N127aha"], ["https://tec.openplanner.team/stops/H4ea128b", "https://tec.openplanner.team/stops/H5qu145a"], ["https://tec.openplanner.team/stops/LAmeclu2", "https://tec.openplanner.team/stops/LTiterr1"], ["https://tec.openplanner.team/stops/N515asa", "https://tec.openplanner.team/stops/N515asb"], ["https://tec.openplanner.team/stops/LWeatel1", "https://tec.openplanner.team/stops/LWeatel2"], ["https://tec.openplanner.team/stops/X790aga", "https://tec.openplanner.team/stops/X790ahb"], ["https://tec.openplanner.team/stops/LMOfleu1", "https://tec.openplanner.team/stops/LMOstat1"], ["https://tec.openplanner.team/stops/LBJapol1", "https://tec.openplanner.team/stops/LMAalli2"], ["https://tec.openplanner.team/stops/N505aaa", "https://tec.openplanner.team/stops/N505ama"], ["https://tec.openplanner.team/stops/H4eg104a", "https://tec.openplanner.team/stops/H4ne135a"], ["https://tec.openplanner.team/stops/LHUlebe4", "https://tec.openplanner.team/stops/LHUlebe8"], ["https://tec.openplanner.team/stops/H4to136b", "https://tec.openplanner.team/stops/H4to137b"], ["https://tec.openplanner.team/stops/X850acb", "https://tec.openplanner.team/stops/X850adb"], ["https://tec.openplanner.team/stops/LNEtonv2", "https://tec.openplanner.team/stops/LNEvpn-1"], ["https://tec.openplanner.team/stops/N115afa", "https://tec.openplanner.team/stops/N115afb"], ["https://tec.openplanner.team/stops/N513aba", "https://tec.openplanner.team/stops/N513aea"], ["https://tec.openplanner.team/stops/Cmacreu2", "https://tec.openplanner.team/stops/Cmmecol1"], ["https://tec.openplanner.team/stops/Bnstgar1", "https://tec.openplanner.team/stops/Bnstmig1"], ["https://tec.openplanner.team/stops/Bhmmtou2", "https://tec.openplanner.team/stops/Bndbnod2"], ["https://tec.openplanner.team/stops/LFrcent2", "https://tec.openplanner.team/stops/LFReg--1"], ["https://tec.openplanner.team/stops/LATmale1", "https://tec.openplanner.team/stops/LATrori2"], ["https://tec.openplanner.team/stops/N538ahb", "https://tec.openplanner.team/stops/N538aib"], ["https://tec.openplanner.team/stops/H1ci105b", "https://tec.openplanner.team/stops/H1mv243a"], ["https://tec.openplanner.team/stops/Ljuprev3", "https://tec.openplanner.team/stops/Llgcouv2"], ["https://tec.openplanner.team/stops/Lhutran1", "https://tec.openplanner.team/stops/LPohoeg1"], ["https://tec.openplanner.team/stops/H4ne133b", "https://tec.openplanner.team/stops/H4ne140a"], ["https://tec.openplanner.team/stops/X630aca", "https://tec.openplanner.team/stops/X630adb"], ["https://tec.openplanner.team/stops/H1do116a", "https://tec.openplanner.team/stops/H1pd141a"], ["https://tec.openplanner.team/stops/H1je220d", "https://tec.openplanner.team/stops/H1je366b"], ["https://tec.openplanner.team/stops/H4cr111a", "https://tec.openplanner.team/stops/H4ff118a"], ["https://tec.openplanner.team/stops/H4ir166a", "https://tec.openplanner.team/stops/H5at141b"], ["https://tec.openplanner.team/stops/H1cu112a", "https://tec.openplanner.team/stops/H1cu123a"], ["https://tec.openplanner.team/stops/H3so170a", "https://tec.openplanner.team/stops/H3so173a"], ["https://tec.openplanner.team/stops/N569abb", "https://tec.openplanner.team/stops/N569aeb"], ["https://tec.openplanner.team/stops/X904aea", "https://tec.openplanner.team/stops/X904ana"], ["https://tec.openplanner.team/stops/Bmrlhau1", "https://tec.openplanner.team/stops/Bnodegl1"], ["https://tec.openplanner.team/stops/H4lp125a", "https://tec.openplanner.team/stops/H4pe127b"], ["https://tec.openplanner.team/stops/H3go103a", "https://tec.openplanner.team/stops/H3go105a"], ["https://tec.openplanner.team/stops/H4co104a", "https://tec.openplanner.team/stops/H4co110a"], ["https://tec.openplanner.team/stops/H1ms277a", "https://tec.openplanner.team/stops/H1ms302a"], ["https://tec.openplanner.team/stops/H4be105a", "https://tec.openplanner.team/stops/H4be111a"], ["https://tec.openplanner.team/stops/Cbmpopr2", "https://tec.openplanner.team/stops/H1bt100a"], ["https://tec.openplanner.team/stops/H4ve133b", "https://tec.openplanner.team/stops/H4ve134a"], ["https://tec.openplanner.team/stops/CMcarr1", "https://tec.openplanner.team/stops/CMcarr2"], ["https://tec.openplanner.team/stops/LHTcent2", "https://tec.openplanner.team/stops/LLxcana2"], ["https://tec.openplanner.team/stops/X991aaa", "https://tec.openplanner.team/stops/X991aab"], ["https://tec.openplanner.team/stops/N554aba", "https://tec.openplanner.team/stops/N555aba"], ["https://tec.openplanner.team/stops/H4hx109a", "https://tec.openplanner.team/stops/H4mo161a"], ["https://tec.openplanner.team/stops/LCAcruc1", "https://tec.openplanner.team/stops/LCAeg--2"], ["https://tec.openplanner.team/stops/LCxwarr1", "https://tec.openplanner.team/stops/LHEches3"], ["https://tec.openplanner.team/stops/X224aea", "https://tec.openplanner.team/stops/X398aha"], ["https://tec.openplanner.team/stops/Cmlhaie1", "https://tec.openplanner.team/stops/Cmlhaie2"], ["https://tec.openplanner.team/stops/N501ewa", "https://tec.openplanner.team/stops/N501hcc"], ["https://tec.openplanner.team/stops/H2ep145a", "https://tec.openplanner.team/stops/H2re166b"], ["https://tec.openplanner.team/stops/LSZarbe1", "https://tec.openplanner.team/stops/LSZheid1"], ["https://tec.openplanner.team/stops/X763aba", "https://tec.openplanner.team/stops/X765agb"], ["https://tec.openplanner.team/stops/NH21aea", "https://tec.openplanner.team/stops/NH21afa"], ["https://tec.openplanner.team/stops/H4mo157a", "https://tec.openplanner.team/stops/H4mo177a"], ["https://tec.openplanner.team/stops/Brsregl2", "https://tec.openplanner.team/stops/Brsregl4"], ["https://tec.openplanner.team/stops/Lmolagu2", "https://tec.openplanner.team/stops/Lmopota1"], ["https://tec.openplanner.team/stops/N539adb", "https://tec.openplanner.team/stops/N539aga"], ["https://tec.openplanner.team/stops/N573aeb", "https://tec.openplanner.team/stops/N573aib"], ["https://tec.openplanner.team/stops/X877aca", "https://tec.openplanner.team/stops/X877aia"], ["https://tec.openplanner.team/stops/N520aba", "https://tec.openplanner.team/stops/N520aha"], ["https://tec.openplanner.team/stops/X817aea", "https://tec.openplanner.team/stops/X817afb"], ["https://tec.openplanner.team/stops/LNEbo471", "https://tec.openplanner.team/stops/LNEbois2"], ["https://tec.openplanner.team/stops/H2ll198b", "https://tec.openplanner.team/stops/H2ll199a"], ["https://tec.openplanner.team/stops/Bblaniv2", "https://tec.openplanner.team/stops/Bwatwsc1"], ["https://tec.openplanner.team/stops/X637aaa", "https://tec.openplanner.team/stops/X637abb"], ["https://tec.openplanner.team/stops/X734afb", "https://tec.openplanner.team/stops/X734aga"], ["https://tec.openplanner.team/stops/X661aga", "https://tec.openplanner.team/stops/X661aya"], ["https://tec.openplanner.team/stops/X771acb", "https://tec.openplanner.team/stops/X773amb"], ["https://tec.openplanner.team/stops/X623aed", "https://tec.openplanner.team/stops/X623aja"], ["https://tec.openplanner.team/stops/Bcrbmsg1", "https://tec.openplanner.team/stops/Bcrbrpb1"], ["https://tec.openplanner.team/stops/Bcbqufo1", "https://tec.openplanner.team/stops/Btubcvi2"], ["https://tec.openplanner.team/stops/N525aja", "https://tec.openplanner.team/stops/N525azb"], ["https://tec.openplanner.team/stops/Llgptlo1", "https://tec.openplanner.team/stops/Llgptlo3"], ["https://tec.openplanner.team/stops/H2mo133b", "https://tec.openplanner.team/stops/H2mo135a"], ["https://tec.openplanner.team/stops/N533aeb", "https://tec.openplanner.team/stops/N551ajb"], ["https://tec.openplanner.team/stops/H1mv238a", "https://tec.openplanner.team/stops/H1mv238b"], ["https://tec.openplanner.team/stops/X636ama", "https://tec.openplanner.team/stops/X636ara"], ["https://tec.openplanner.team/stops/H1cv103a", "https://tec.openplanner.team/stops/H1lm105b"], ["https://tec.openplanner.team/stops/Bgnvoha2", "https://tec.openplanner.team/stops/Bgnvvol2"], ["https://tec.openplanner.team/stops/X759aaa", "https://tec.openplanner.team/stops/X886acb"], ["https://tec.openplanner.team/stops/X950abb", "https://tec.openplanner.team/stops/X950ada"], ["https://tec.openplanner.team/stops/N351alb", "https://tec.openplanner.team/stops/N351asa"], ["https://tec.openplanner.team/stops/LSCeg--3", "https://tec.openplanner.team/stops/LSChane1"], ["https://tec.openplanner.team/stops/Lsnfont1", "https://tec.openplanner.team/stops/Lsnlhon1"], ["https://tec.openplanner.team/stops/Lalecmo2", "https://tec.openplanner.team/stops/Laltrav2"], ["https://tec.openplanner.team/stops/X636aba", "https://tec.openplanner.team/stops/X670asb"], ["https://tec.openplanner.team/stops/LMOecsp3", "https://tec.openplanner.team/stops/LMOm48-1"], ["https://tec.openplanner.team/stops/X614aha", "https://tec.openplanner.team/stops/X614aya"], ["https://tec.openplanner.team/stops/H5bl117a", "https://tec.openplanner.team/stops/H5qu182a"], ["https://tec.openplanner.team/stops/X982aqb", "https://tec.openplanner.team/stops/X982aqc"], ["https://tec.openplanner.team/stops/Bwspbbo2", "https://tec.openplanner.team/stops/Bwsppos2"], ["https://tec.openplanner.team/stops/LBabeco3", "https://tec.openplanner.team/stops/LBabeco4"], ["https://tec.openplanner.team/stops/LSktinc2", "https://tec.openplanner.team/stops/LSkwarf2"], ["https://tec.openplanner.team/stops/N550alb", "https://tec.openplanner.team/stops/N565aaa"], ["https://tec.openplanner.team/stops/Lemcarm2", "https://tec.openplanner.team/stops/Lemmeha2"], ["https://tec.openplanner.team/stops/Loumatt1", "https://tec.openplanner.team/stops/Louvivi2"], ["https://tec.openplanner.team/stops/X723abb", "https://tec.openplanner.team/stops/X723aca"], ["https://tec.openplanner.team/stops/H4tm140b", "https://tec.openplanner.team/stops/H4to136b"], ["https://tec.openplanner.team/stops/Lstbota1", "https://tec.openplanner.team/stops/Lstbota2"], ["https://tec.openplanner.team/stops/Bblacha2", "https://tec.openplanner.team/stops/Bwatbca1"], ["https://tec.openplanner.team/stops/N219adb", "https://tec.openplanner.team/stops/N219afb"], ["https://tec.openplanner.team/stops/X953adb", "https://tec.openplanner.team/stops/X953aea"], ["https://tec.openplanner.team/stops/N501fpb", "https://tec.openplanner.team/stops/N501kvb"], ["https://tec.openplanner.team/stops/Bnivcma1", "https://tec.openplanner.team/stops/Bnivsnu1"], ["https://tec.openplanner.team/stops/X801asa", "https://tec.openplanner.team/stops/X801axb"], ["https://tec.openplanner.team/stops/N501bda", "https://tec.openplanner.team/stops/N501ieb"], ["https://tec.openplanner.team/stops/H5at119a", "https://tec.openplanner.team/stops/H5at127a"], ["https://tec.openplanner.team/stops/X780ajb", "https://tec.openplanner.team/stops/X793aoa"], ["https://tec.openplanner.team/stops/H5el110a", "https://tec.openplanner.team/stops/H5el117b"], ["https://tec.openplanner.team/stops/LMolone2", "https://tec.openplanner.team/stops/LMovich2"], ["https://tec.openplanner.team/stops/N501bia", "https://tec.openplanner.team/stops/N501bib"], ["https://tec.openplanner.team/stops/N113acb", "https://tec.openplanner.team/stops/N113aea"], ["https://tec.openplanner.team/stops/LSyeg--1", "https://tec.openplanner.team/stops/LSypesy1"], ["https://tec.openplanner.team/stops/LCLgend1", "https://tec.openplanner.team/stops/LCLgend2"], ["https://tec.openplanner.team/stops/Baudhan1", "https://tec.openplanner.team/stops/Baudsju1"], ["https://tec.openplanner.team/stops/LbTdoma1", "https://tec.openplanner.team/stops/LbThau12"], ["https://tec.openplanner.team/stops/N537aba", "https://tec.openplanner.team/stops/N537aha"], ["https://tec.openplanner.team/stops/H5at118b", "https://tec.openplanner.team/stops/H5at235b"], ["https://tec.openplanner.team/stops/Lbrplai2", "https://tec.openplanner.team/stops/Llgplai1"], ["https://tec.openplanner.team/stops/H1ho128a", "https://tec.openplanner.team/stops/H1ho140a"], ["https://tec.openplanner.team/stops/LSUroyo1", "https://tec.openplanner.team/stops/LTgvill2"], ["https://tec.openplanner.team/stops/X818afa", "https://tec.openplanner.team/stops/X818aua"], ["https://tec.openplanner.team/stops/Cluchbl2", "https://tec.openplanner.team/stops/Cpctunn1"], ["https://tec.openplanner.team/stops/Cmmbsit1", "https://tec.openplanner.team/stops/Cmmn1172"], ["https://tec.openplanner.team/stops/LOdbuis2", "https://tec.openplanner.team/stops/LVlledo1"], ["https://tec.openplanner.team/stops/Btslcej1", "https://tec.openplanner.team/stops/Btslegl2"], ["https://tec.openplanner.team/stops/Lhrathe*", "https://tec.openplanner.team/stops/Lhrhome1"], ["https://tec.openplanner.team/stops/Cgxcite2", "https://tec.openplanner.team/stops/Cgxwaut2"], ["https://tec.openplanner.team/stops/Lrc594-2", "https://tec.openplanner.team/stops/Lrclohe2"], ["https://tec.openplanner.team/stops/X879aaa", "https://tec.openplanner.team/stops/X879aqb"], ["https://tec.openplanner.team/stops/Lceconf2", "https://tec.openplanner.team/stops/Lceprog2"], ["https://tec.openplanner.team/stops/N501blb", "https://tec.openplanner.team/stops/N501bua"], ["https://tec.openplanner.team/stops/NL72aea", "https://tec.openplanner.team/stops/NL72afb"], ["https://tec.openplanner.team/stops/Lsepcha3", "https://tec.openplanner.team/stops/Lsepcha4"], ["https://tec.openplanner.team/stops/X948arb", "https://tec.openplanner.team/stops/X948asa"], ["https://tec.openplanner.team/stops/Ccabois2", "https://tec.openplanner.team/stops/Cerrver4"], ["https://tec.openplanner.team/stops/N528adb", "https://tec.openplanner.team/stops/N528asb"], ["https://tec.openplanner.team/stops/H4ch116a", "https://tec.openplanner.team/stops/H4ty278b"], ["https://tec.openplanner.team/stops/Cmogrbu2", "https://tec.openplanner.team/stops/Cmoscap1"], ["https://tec.openplanner.team/stops/LHexhav1", "https://tec.openplanner.team/stops/LHSheur2"], ["https://tec.openplanner.team/stops/Lrogene*", "https://tec.openplanner.team/stops/Lrogene2"], ["https://tec.openplanner.team/stops/H4rx176a", "https://tec.openplanner.team/stops/H4wa148a"], ["https://tec.openplanner.team/stops/X812aoa", "https://tec.openplanner.team/stops/X812ata"], ["https://tec.openplanner.team/stops/H5rx106b", "https://tec.openplanner.team/stops/H5rx139b"], ["https://tec.openplanner.team/stops/Crsrose1", "https://tec.openplanner.team/stops/Crsrose2"], ["https://tec.openplanner.team/stops/H1fr107c", "https://tec.openplanner.team/stops/H1fr113a"], ["https://tec.openplanner.team/stops/X812ana", "https://tec.openplanner.team/stops/X812ara"], ["https://tec.openplanner.team/stops/Ccotrie1", "https://tec.openplanner.team/stops/Ccotrie2"], ["https://tec.openplanner.team/stops/Llgbour1", "https://tec.openplanner.team/stops/Llgbour2"], ["https://tec.openplanner.team/stops/H1hc151b", "https://tec.openplanner.team/stops/H1hc152a"], ["https://tec.openplanner.team/stops/X661ada", "https://tec.openplanner.team/stops/X661aea"], ["https://tec.openplanner.team/stops/LSPchap2", "https://tec.openplanner.team/stops/LSPther2"], ["https://tec.openplanner.team/stops/H4li178a", "https://tec.openplanner.team/stops/H4li179a"], ["https://tec.openplanner.team/stops/LAUneuv5", "https://tec.openplanner.team/stops/LAUneuv6"], ["https://tec.openplanner.team/stops/X889aab", "https://tec.openplanner.team/stops/X889abb"], ["https://tec.openplanner.team/stops/X788abc", "https://tec.openplanner.team/stops/X789ahd"], ["https://tec.openplanner.team/stops/N106aab", "https://tec.openplanner.team/stops/N155acb"], ["https://tec.openplanner.team/stops/Lcchala1", "https://tec.openplanner.team/stops/Lfhmarn1"], ["https://tec.openplanner.team/stops/LHUfonc2", "https://tec.openplanner.team/stops/LHUhaum3"], ["https://tec.openplanner.team/stops/Cchalou1", "https://tec.openplanner.team/stops/Cgyrdid1"], ["https://tec.openplanner.team/stops/H4pl121a", "https://tec.openplanner.team/stops/H4pl137b"], ["https://tec.openplanner.team/stops/LHemoul1", "https://tec.openplanner.team/stops/LOUchen1"], ["https://tec.openplanner.team/stops/X770afb", "https://tec.openplanner.team/stops/X770agb"], ["https://tec.openplanner.team/stops/N145aha", "https://tec.openplanner.team/stops/N145aia"], ["https://tec.openplanner.team/stops/X685apa", "https://tec.openplanner.team/stops/X685apb"], ["https://tec.openplanner.team/stops/X769arb", "https://tec.openplanner.team/stops/X791aab"], ["https://tec.openplanner.team/stops/N113aga", "https://tec.openplanner.team/stops/N113agb"], ["https://tec.openplanner.team/stops/Bclgavi1", "https://tec.openplanner.team/stops/Bclgfva1"], ["https://tec.openplanner.team/stops/H4lg105a", "https://tec.openplanner.team/stops/H4lg106a"], ["https://tec.openplanner.team/stops/Ccyrmon1", "https://tec.openplanner.team/stops/Crbrgar1"], ["https://tec.openplanner.team/stops/N501jta", "https://tec.openplanner.team/stops/N501jtb"], ["https://tec.openplanner.team/stops/H1el135b", "https://tec.openplanner.team/stops/H1wi148b"], ["https://tec.openplanner.team/stops/X754aba", "https://tec.openplanner.team/stops/X754abb"], ["https://tec.openplanner.team/stops/H1pa109a", "https://tec.openplanner.team/stops/H1pa109b"], ["https://tec.openplanner.team/stops/N304aab", "https://tec.openplanner.team/stops/N304aba"], ["https://tec.openplanner.team/stops/LHMpatl1", "https://tec.openplanner.team/stops/LMNswar2"], ["https://tec.openplanner.team/stops/N501edb", "https://tec.openplanner.team/stops/N501gdb"], ["https://tec.openplanner.team/stops/N501fmb", "https://tec.openplanner.team/stops/N501lwa"], ["https://tec.openplanner.team/stops/LPOeg--2", "https://tec.openplanner.team/stops/LPOpass1"], ["https://tec.openplanner.team/stops/NL76aca", "https://tec.openplanner.team/stops/NL80acb"], ["https://tec.openplanner.team/stops/X713ada", "https://tec.openplanner.team/stops/X713aea"], ["https://tec.openplanner.team/stops/X946abb", "https://tec.openplanner.team/stops/X948afb"], ["https://tec.openplanner.team/stops/Bbaualz1", "https://tec.openplanner.team/stops/Bbaucai1"], ["https://tec.openplanner.team/stops/LSAjacq2", "https://tec.openplanner.team/stops/LSAmous1"], ["https://tec.openplanner.team/stops/H1og136b", "https://tec.openplanner.team/stops/H5fl101a"], ["https://tec.openplanner.team/stops/H4ar107a", "https://tec.openplanner.team/stops/H4ar177a"], ["https://tec.openplanner.team/stops/N331aca", "https://tec.openplanner.team/stops/N331aja"], ["https://tec.openplanner.team/stops/Bwaveur1", "https://tec.openplanner.team/stops/Bwavpao2"], ["https://tec.openplanner.team/stops/Cjucpui2", "https://tec.openplanner.team/stops/Cmacoll2"], ["https://tec.openplanner.team/stops/Cnanoir2", "https://tec.openplanner.team/stops/Cnarmon1"], ["https://tec.openplanner.team/stops/Cchbaza1", "https://tec.openplanner.team/stops/Cchwate4"], ["https://tec.openplanner.team/stops/H5bl123b", "https://tec.openplanner.team/stops/H5bl142b"], ["https://tec.openplanner.team/stops/LBHhuyn2", "https://tec.openplanner.team/stops/LBHinva2"], ["https://tec.openplanner.team/stops/Bovesol1", "https://tec.openplanner.team/stops/Bovesol2"], ["https://tec.openplanner.team/stops/Cwgmart1", "https://tec.openplanner.team/stops/Cwgrabi1"], ["https://tec.openplanner.team/stops/N229ala", "https://tec.openplanner.team/stops/N229aoa"], ["https://tec.openplanner.team/stops/Cbmgare2", "https://tec.openplanner.team/stops/H1tt109b"], ["https://tec.openplanner.team/stops/H4mv192a", "https://tec.openplanner.team/stops/H4oe152a"], ["https://tec.openplanner.team/stops/N501ega", "https://tec.openplanner.team/stops/N501ela"], ["https://tec.openplanner.team/stops/X735acb", "https://tec.openplanner.team/stops/X736ada"], ["https://tec.openplanner.team/stops/H1bo102a", "https://tec.openplanner.team/stops/H1hi122a"], ["https://tec.openplanner.team/stops/X661aua", "https://tec.openplanner.team/stops/X672abb"], ["https://tec.openplanner.team/stops/X836acb", "https://tec.openplanner.team/stops/X836ada"], ["https://tec.openplanner.team/stops/LeUmoor1", "https://tec.openplanner.team/stops/LeUnopr1"], ["https://tec.openplanner.team/stops/H1bo107a", "https://tec.openplanner.team/stops/H1bo109b"], ["https://tec.openplanner.team/stops/H4be108a", "https://tec.openplanner.team/stops/H4be147b"], ["https://tec.openplanner.team/stops/N548amb", "https://tec.openplanner.team/stops/N548ayb"], ["https://tec.openplanner.team/stops/X773acb", "https://tec.openplanner.team/stops/X908aca"], ["https://tec.openplanner.team/stops/N229alb", "https://tec.openplanner.team/stops/N229ara"], ["https://tec.openplanner.team/stops/Ltiferb1", "https://tec.openplanner.team/stops/Ltipass2"], ["https://tec.openplanner.team/stops/H1ob330b", "https://tec.openplanner.team/stops/H1ob335c"], ["https://tec.openplanner.team/stops/Bchgbel2", "https://tec.openplanner.team/stops/Btsllnd1"], ["https://tec.openplanner.team/stops/Ccusole1", "https://tec.openplanner.team/stops/Cgycime2"], ["https://tec.openplanner.team/stops/LBpecco1", "https://tec.openplanner.team/stops/LBpecco3"], ["https://tec.openplanner.team/stops/N150aia", "https://tec.openplanner.team/stops/N150aib"], ["https://tec.openplanner.team/stops/Lgrbonn1", "https://tec.openplanner.team/stops/Lgrlimi1"], ["https://tec.openplanner.team/stops/LhPhale1", "https://tec.openplanner.team/stops/LhPkirc2"], ["https://tec.openplanner.team/stops/Bnetace1", "https://tec.openplanner.team/stops/Bnetace2"], ["https://tec.openplanner.team/stops/H4fr146a", "https://tec.openplanner.team/stops/H4oq223b"], ["https://tec.openplanner.team/stops/N584aub", "https://tec.openplanner.team/stops/N584bpa"], ["https://tec.openplanner.team/stops/Bwbfckr2", "https://tec.openplanner.team/stops/Bwbfgar1"], ["https://tec.openplanner.team/stops/Barqhro4", "https://tec.openplanner.team/stops/Bfelbri2"], ["https://tec.openplanner.team/stops/Bsdafra1", "https://tec.openplanner.team/stops/Csdrofr1"], ["https://tec.openplanner.team/stops/X639ajb", "https://tec.openplanner.team/stops/X640ata"], ["https://tec.openplanner.team/stops/N501dgb", "https://tec.openplanner.team/stops/N501dja"], ["https://tec.openplanner.team/stops/N525aza", "https://tec.openplanner.team/stops/N525baa"], ["https://tec.openplanner.team/stops/Bjdscnd1", "https://tec.openplanner.team/stops/Bjdssta2"], ["https://tec.openplanner.team/stops/Crg3arb1", "https://tec.openplanner.team/stops/Crgmgri1"], ["https://tec.openplanner.team/stops/LbTkran1", "https://tec.openplanner.team/stops/LbTkreu1"], ["https://tec.openplanner.team/stops/Blhufro1", "https://tec.openplanner.team/stops/Blhutma1"], ["https://tec.openplanner.team/stops/Ltigare1", "https://tec.openplanner.team/stops/Ltigare2"], ["https://tec.openplanner.team/stops/Lligara2", "https://tec.openplanner.team/stops/LVSpn--2"], ["https://tec.openplanner.team/stops/N506bfb", "https://tec.openplanner.team/stops/N512axa"], ["https://tec.openplanner.team/stops/Lsn130-2", "https://tec.openplanner.team/stops/Lsnhoco2"], ["https://tec.openplanner.team/stops/X897afb", "https://tec.openplanner.team/stops/X897axa"], ["https://tec.openplanner.team/stops/N573ada", "https://tec.openplanner.team/stops/N573adb"], ["https://tec.openplanner.team/stops/N117aqa", "https://tec.openplanner.team/stops/N117ara"], ["https://tec.openplanner.team/stops/N152aba", "https://tec.openplanner.team/stops/N152abb"], ["https://tec.openplanner.team/stops/LLxnive1", "https://tec.openplanner.team/stops/LLxnive2"], ["https://tec.openplanner.team/stops/H4mo146a", "https://tec.openplanner.team/stops/H4mo182a"], ["https://tec.openplanner.team/stops/Bcsegal2", "https://tec.openplanner.team/stops/Bcsempl2"], ["https://tec.openplanner.team/stops/Bnivvcw1", "https://tec.openplanner.team/stops/Bnivvcw2"], ["https://tec.openplanner.team/stops/X908adb", "https://tec.openplanner.team/stops/X908afa"], ["https://tec.openplanner.team/stops/X996abb", "https://tec.openplanner.team/stops/X996adb"], ["https://tec.openplanner.team/stops/NL37aab", "https://tec.openplanner.team/stops/NL37aob"], ["https://tec.openplanner.team/stops/Lfhmarn1", "https://tec.openplanner.team/stops/Lfhncha1"], ["https://tec.openplanner.team/stops/N501aba", "https://tec.openplanner.team/stops/N503aab"], ["https://tec.openplanner.team/stops/Bgnvtil2", "https://tec.openplanner.team/stops/Bgnvvol2"], ["https://tec.openplanner.team/stops/Cchoues1", "https://tec.openplanner.team/stops/CMoues1"], ["https://tec.openplanner.team/stops/N232bia", "https://tec.openplanner.team/stops/N261aea"], ["https://tec.openplanner.team/stops/N538asa", "https://tec.openplanner.team/stops/N538axb"], ["https://tec.openplanner.team/stops/X982ana", "https://tec.openplanner.team/stops/X982aqc"], ["https://tec.openplanner.team/stops/Blhupri2", "https://tec.openplanner.team/stops/Bohnhan1"], ["https://tec.openplanner.team/stops/X725aff", "https://tec.openplanner.team/stops/X725bcb"], ["https://tec.openplanner.team/stops/LmTkirc2", "https://tec.openplanner.team/stops/LmTreic1"], ["https://tec.openplanner.team/stops/LSLabba1", "https://tec.openplanner.team/stops/LSLstra2"], ["https://tec.openplanner.team/stops/LrAberg1", "https://tec.openplanner.team/stops/LrAtitf1"], ["https://tec.openplanner.team/stops/H1ms297a", "https://tec.openplanner.team/stops/H1ms942a"], ["https://tec.openplanner.team/stops/LESlieg1", "https://tec.openplanner.team/stops/LESpaix1"], ["https://tec.openplanner.team/stops/Boppcen3", "https://tec.openplanner.team/stops/Bopprju1"], ["https://tec.openplanner.team/stops/X641abb", "https://tec.openplanner.team/stops/X646ada"], ["https://tec.openplanner.team/stops/H2ha142b", "https://tec.openplanner.team/stops/H2hg152a"], ["https://tec.openplanner.team/stops/H1ms265b", "https://tec.openplanner.team/stops/H1ms302a"], ["https://tec.openplanner.team/stops/LSLeg--1", "https://tec.openplanner.team/stops/LSLhall*"], ["https://tec.openplanner.team/stops/X769alb", "https://tec.openplanner.team/stops/X769ama"], ["https://tec.openplanner.team/stops/Balswwe1", "https://tec.openplanner.team/stops/Bbrlrph2"], ["https://tec.openplanner.team/stops/Crojume2", "https://tec.openplanner.team/stops/Cromart1"], ["https://tec.openplanner.team/stops/Bniv4co1", "https://tec.openplanner.team/stops/Bnivche2"], ["https://tec.openplanner.team/stops/H4jm118a", "https://tec.openplanner.team/stops/H4we136b"], ["https://tec.openplanner.team/stops/LCSfagn2", "https://tec.openplanner.team/stops/LHHcite2"], ["https://tec.openplanner.team/stops/N221aba", "https://tec.openplanner.team/stops/N221abb"], ["https://tec.openplanner.team/stops/Bspkbeu1", "https://tec.openplanner.team/stops/H1mk116a"], ["https://tec.openplanner.team/stops/Lvehv--2", "https://tec.openplanner.team/stops/Lverain1"], ["https://tec.openplanner.team/stops/LRccent1", "https://tec.openplanner.team/stops/LRfcent1"], ["https://tec.openplanner.team/stops/LMawilh3", "https://tec.openplanner.team/stops/LMawilh4"], ["https://tec.openplanner.team/stops/X512aaa", "https://tec.openplanner.team/stops/X512aab"], ["https://tec.openplanner.team/stops/Lghsimo3", "https://tec.openplanner.team/stops/Lmolagu1"], ["https://tec.openplanner.team/stops/N513awb", "https://tec.openplanner.team/stops/N523abb"], ["https://tec.openplanner.team/stops/X604aja", "https://tec.openplanner.team/stops/X625agb"], ["https://tec.openplanner.team/stops/H1ms302a", "https://tec.openplanner.team/stops/H1ss352b"], ["https://tec.openplanner.team/stops/N426adb", "https://tec.openplanner.team/stops/N426aea"], ["https://tec.openplanner.team/stops/H2pe159a", "https://tec.openplanner.team/stops/H3bi106b"], ["https://tec.openplanner.team/stops/Lagmair2", "https://tec.openplanner.team/stops/Lkiecol2"], ["https://tec.openplanner.team/stops/H4ty312a", "https://tec.openplanner.team/stops/H4ty322b"], ["https://tec.openplanner.team/stops/Cgrgrce1", "https://tec.openplanner.team/stops/NC14aqb"], ["https://tec.openplanner.team/stops/Cmlhauc2", "https://tec.openplanner.team/stops/NC02apa"], ["https://tec.openplanner.team/stops/H4oq224b", "https://tec.openplanner.team/stops/H4ty327b"], ["https://tec.openplanner.team/stops/Cflpost1", "https://tec.openplanner.team/stops/Cflpost2"], ["https://tec.openplanner.team/stops/N538ama", "https://tec.openplanner.team/stops/N538amb"], ["https://tec.openplanner.team/stops/N561aib", "https://tec.openplanner.team/stops/N561aic"], ["https://tec.openplanner.team/stops/LWEbruy1", "https://tec.openplanner.team/stops/LWEpaul1"], ["https://tec.openplanner.team/stops/H4eg106a", "https://tec.openplanner.team/stops/H4eg107b"], ["https://tec.openplanner.team/stops/X615arb", "https://tec.openplanner.team/stops/X687aia"], ["https://tec.openplanner.team/stops/H4ka393b", "https://tec.openplanner.team/stops/H4ka394b"], ["https://tec.openplanner.team/stops/X659acb", "https://tec.openplanner.team/stops/X659adb"], ["https://tec.openplanner.team/stops/H4ab101a", "https://tec.openplanner.team/stops/H4ab103a"], ["https://tec.openplanner.team/stops/Bbcoeco2", "https://tec.openplanner.team/stops/H3br102a"], ["https://tec.openplanner.team/stops/H4fo118a", "https://tec.openplanner.team/stops/H4fo118b"], ["https://tec.openplanner.team/stops/Cgzvivi1", "https://tec.openplanner.team/stops/Cgzvivi2"], ["https://tec.openplanner.team/stops/LbUbutg1", "https://tec.openplanner.team/stops/LbUpost1"], ["https://tec.openplanner.team/stops/Lvedepo*", "https://tec.openplanner.team/stops/Lverdep1"], ["https://tec.openplanner.team/stops/LSythie1", "https://tec.openplanner.team/stops/LSythie2"], ["https://tec.openplanner.team/stops/Lveabat1", "https://tec.openplanner.team/stops/Lvepala5"], ["https://tec.openplanner.team/stops/X823aba", "https://tec.openplanner.team/stops/X823abb"], ["https://tec.openplanner.team/stops/Balswsa1", "https://tec.openplanner.team/stops/Brsgrol2"], ["https://tec.openplanner.team/stops/X775ajb", "https://tec.openplanner.team/stops/X775aka"], ["https://tec.openplanner.team/stops/Bcsebea4", "https://tec.openplanner.team/stops/Bottcba1"], ["https://tec.openplanner.team/stops/Cjxpann1", "https://tec.openplanner.team/stops/Cmx3arb1"], ["https://tec.openplanner.team/stops/N207aaa", "https://tec.openplanner.team/stops/N207afb"], ["https://tec.openplanner.team/stops/LHuetat1", "https://tec.openplanner.team/stops/LMHmeha1"], ["https://tec.openplanner.team/stops/Llglonh1", "https://tec.openplanner.team/stops/Llglonh2"], ["https://tec.openplanner.team/stops/Lbhbalt1", "https://tec.openplanner.team/stops/Lflprev2"], ["https://tec.openplanner.team/stops/Lmndeso1", "https://tec.openplanner.team/stops/Lmntast2"], ["https://tec.openplanner.team/stops/Bwav4sa1", "https://tec.openplanner.team/stops/Bwavche2"], ["https://tec.openplanner.team/stops/N351afb", "https://tec.openplanner.team/stops/X351abb"], ["https://tec.openplanner.team/stops/LLrdrev1", "https://tec.openplanner.team/stops/LLrhaut2"], ["https://tec.openplanner.team/stops/N117azb", "https://tec.openplanner.team/stops/N147adb"], ["https://tec.openplanner.team/stops/X621aab", "https://tec.openplanner.team/stops/X622adb"], ["https://tec.openplanner.team/stops/Bhalvla1", "https://tec.openplanner.team/stops/Bwaucan1"], ["https://tec.openplanner.team/stops/H1on128a", "https://tec.openplanner.team/stops/H1on128b"], ["https://tec.openplanner.team/stops/H1gh143a", "https://tec.openplanner.team/stops/H1hh117b"], ["https://tec.openplanner.team/stops/N534abb", "https://tec.openplanner.team/stops/N534apg"], ["https://tec.openplanner.team/stops/LTicent1", "https://tec.openplanner.team/stops/LTimalv1"], ["https://tec.openplanner.team/stops/N537aha", "https://tec.openplanner.team/stops/N537ahb"], ["https://tec.openplanner.team/stops/X640aeb", "https://tec.openplanner.team/stops/X640afa"], ["https://tec.openplanner.team/stops/H2le146a", "https://tec.openplanner.team/stops/H2le146b"], ["https://tec.openplanner.team/stops/LaNmuhl1", "https://tec.openplanner.team/stops/LaNmuhl4"], ["https://tec.openplanner.team/stops/Cmlcaya2", "https://tec.openplanner.team/stops/Cmlvxmo2"], ["https://tec.openplanner.team/stops/X614ajb", "https://tec.openplanner.team/stops/X614aka"], ["https://tec.openplanner.team/stops/H4cw105b", "https://tec.openplanner.team/stops/H4cw106a"], ["https://tec.openplanner.team/stops/X802adb", "https://tec.openplanner.team/stops/X802apb"], ["https://tec.openplanner.team/stops/H1ba119b", "https://tec.openplanner.team/stops/H1ba119c"], ["https://tec.openplanner.team/stops/LBaeg--1", "https://tec.openplanner.team/stops/LNEgaul4"], ["https://tec.openplanner.team/stops/N151aia", "https://tec.openplanner.team/stops/N151aib"], ["https://tec.openplanner.team/stops/LBHgile2", "https://tec.openplanner.team/stops/LGObeth2"], ["https://tec.openplanner.team/stops/Ljeblum2", "https://tec.openplanner.team/stops/LjedTEC1"], ["https://tec.openplanner.team/stops/X641aza", "https://tec.openplanner.team/stops/X823aab"], ["https://tec.openplanner.team/stops/H1sy140a", "https://tec.openplanner.team/stops/H1to155a"], ["https://tec.openplanner.team/stops/Cmerdby1", "https://tec.openplanner.team/stops/Cmestas1"], ["https://tec.openplanner.team/stops/Lmojoan1", "https://tec.openplanner.team/stops/Lmolama2"], ["https://tec.openplanner.team/stops/LBAcent1", "https://tec.openplanner.team/stops/LBAcent2"], ["https://tec.openplanner.team/stops/H4ty285a", "https://tec.openplanner.team/stops/H4ty285c"], ["https://tec.openplanner.team/stops/Bnivind2", "https://tec.openplanner.team/stops/Bnivphm2"], ["https://tec.openplanner.team/stops/LLgmini2", "https://tec.openplanner.team/stops/LRCviad2"], ["https://tec.openplanner.team/stops/X639aca", "https://tec.openplanner.team/stops/X639apa"], ["https://tec.openplanner.team/stops/H2ca100a", "https://tec.openplanner.team/stops/H2ca109b"], ["https://tec.openplanner.team/stops/X261aaa", "https://tec.openplanner.team/stops/X261aab"], ["https://tec.openplanner.team/stops/LORgr8-1", "https://tec.openplanner.team/stops/LORruis1"], ["https://tec.openplanner.team/stops/Bllngar4", "https://tec.openplanner.team/stops/Bllngar5"], ["https://tec.openplanner.team/stops/Lrclant1", "https://tec.openplanner.team/stops/Lrcpaqu1"], ["https://tec.openplanner.team/stops/X618aia", "https://tec.openplanner.team/stops/X618aib"], ["https://tec.openplanner.team/stops/LAWchau1", "https://tec.openplanner.team/stops/LAWhein2"], ["https://tec.openplanner.team/stops/Lvefran1", "https://tec.openplanner.team/stops/Lveherl2"], ["https://tec.openplanner.team/stops/Bnivall1", "https://tec.openplanner.team/stops/Bnivchh1"], ["https://tec.openplanner.team/stops/N531aaa", "https://tec.openplanner.team/stops/N531aba"], ["https://tec.openplanner.team/stops/X639ana", "https://tec.openplanner.team/stops/X640aia"], ["https://tec.openplanner.team/stops/H1le117a", "https://tec.openplanner.team/stops/H1le129b"], ["https://tec.openplanner.team/stops/N547aab", "https://tec.openplanner.team/stops/N547ala"], ["https://tec.openplanner.team/stops/Lbrddef4", "https://tec.openplanner.team/stops/Llgrull1"], ["https://tec.openplanner.team/stops/X993ajb", "https://tec.openplanner.team/stops/X995aca"], ["https://tec.openplanner.team/stops/X892aea", "https://tec.openplanner.team/stops/X892ajb"], ["https://tec.openplanner.team/stops/LMYchpl1", "https://tec.openplanner.team/stops/LMYchpl2"], ["https://tec.openplanner.team/stops/N349aba", "https://tec.openplanner.team/stops/N349aeb"], ["https://tec.openplanner.team/stops/X758aea", "https://tec.openplanner.team/stops/X758aeb"], ["https://tec.openplanner.team/stops/N352aca", "https://tec.openplanner.team/stops/N352ajb"], ["https://tec.openplanner.team/stops/H4mo195a", "https://tec.openplanner.team/stops/H4mo195b"], ["https://tec.openplanner.team/stops/Bbeaap12", "https://tec.openplanner.team/stops/Bbeaegl2"], ["https://tec.openplanner.team/stops/N531aob", "https://tec.openplanner.team/stops/N531apb"], ["https://tec.openplanner.team/stops/LLTcoop1", "https://tec.openplanner.team/stops/LLTgole2"], ["https://tec.openplanner.team/stops/Ljerobi2", "https://tec.openplanner.team/stops/Ljetomb2"], ["https://tec.openplanner.team/stops/N232aea", "https://tec.openplanner.team/stops/N261aba"], ["https://tec.openplanner.team/stops/N501ksb", "https://tec.openplanner.team/stops/N501kxb"], ["https://tec.openplanner.team/stops/NL76acb", "https://tec.openplanner.team/stops/NL76ada"], ["https://tec.openplanner.team/stops/Bjodmal2", "https://tec.openplanner.team/stops/Bjodpce1"], ["https://tec.openplanner.team/stops/LHCmonu2", "https://tec.openplanner.team/stops/LHCmonu3"], ["https://tec.openplanner.team/stops/Lflec--1", "https://tec.openplanner.team/stops/Lflmc--1"], ["https://tec.openplanner.team/stops/Cmtpire2", "https://tec.openplanner.team/stops/Cmtrbla1"], ["https://tec.openplanner.team/stops/H1hl126a", "https://tec.openplanner.team/stops/H1vs144a"], ["https://tec.openplanner.team/stops/Llgbwez1", "https://tec.openplanner.team/stops/Llglair2"], ["https://tec.openplanner.team/stops/H4po125a", "https://tec.openplanner.team/stops/H4po127a"], ["https://tec.openplanner.team/stops/X610aha", "https://tec.openplanner.team/stops/X610aib"], ["https://tec.openplanner.team/stops/Llgcong1", "https://tec.openplanner.team/stops/Llgparc1"], ["https://tec.openplanner.team/stops/H4lp120a", "https://tec.openplanner.team/stops/H4lp122b"], ["https://tec.openplanner.team/stops/LSPmari1", "https://tec.openplanner.team/stops/LSPsous1"], ["https://tec.openplanner.team/stops/Cstplac1", "https://tec.openplanner.team/stops/Cstplac2"], ["https://tec.openplanner.team/stops/X734aqa", "https://tec.openplanner.team/stops/X734aqb"], ["https://tec.openplanner.team/stops/Ccuplai1", "https://tec.openplanner.team/stops/Ccuplai2"], ["https://tec.openplanner.team/stops/N542adb", "https://tec.openplanner.team/stops/N578aba"], ["https://tec.openplanner.team/stops/Lpebeco2", "https://tec.openplanner.team/stops/LTAairi2"], ["https://tec.openplanner.team/stops/N541aea", "https://tec.openplanner.team/stops/N541aeb"], ["https://tec.openplanner.team/stops/Ccodubo1", "https://tec.openplanner.team/stops/Ccodubo2"], ["https://tec.openplanner.team/stops/Clodrio3", "https://tec.openplanner.team/stops/Clodrio4"], ["https://tec.openplanner.team/stops/X612adb", "https://tec.openplanner.team/stops/X623aea"], ["https://tec.openplanner.team/stops/Lanadmi1", "https://tec.openplanner.team/stops/Lanstat2"], ["https://tec.openplanner.team/stops/LFIcabi1", "https://tec.openplanner.team/stops/LFIeg--2"], ["https://tec.openplanner.team/stops/Lhuchev2", "https://tec.openplanner.team/stops/Lhulibe2"], ["https://tec.openplanner.team/stops/H4ty286a", "https://tec.openplanner.team/stops/H4ty312b"], ["https://tec.openplanner.team/stops/N201aia", "https://tec.openplanner.team/stops/N201ajb"], ["https://tec.openplanner.team/stops/Bhoeboo1", "https://tec.openplanner.team/stops/Bovejme2"], ["https://tec.openplanner.team/stops/Lhrlico3", "https://tec.openplanner.team/stops/Lhrpwan1"], ["https://tec.openplanner.team/stops/N225acb", "https://tec.openplanner.team/stops/N225aeb"], ["https://tec.openplanner.team/stops/LMTdeho1", "https://tec.openplanner.team/stops/LXfcore1"], ["https://tec.openplanner.team/stops/H3bo103a", "https://tec.openplanner.team/stops/H3th127a"], ["https://tec.openplanner.team/stops/X999apa", "https://tec.openplanner.team/stops/X999asb"], ["https://tec.openplanner.team/stops/X759aca", "https://tec.openplanner.team/stops/X759acb"], ["https://tec.openplanner.team/stops/Llgandr2", "https://tec.openplanner.team/stops/Llgfail1"], ["https://tec.openplanner.team/stops/N507aoa", "https://tec.openplanner.team/stops/N507aob"], ["https://tec.openplanner.team/stops/N348aba", "https://tec.openplanner.team/stops/N353awb"], ["https://tec.openplanner.team/stops/Ccoh1211", "https://tec.openplanner.team/stops/Ccomiau2"], ["https://tec.openplanner.team/stops/Ctmdema1", "https://tec.openplanner.team/stops/Ctmdema2"], ["https://tec.openplanner.team/stops/Bclgvmo2", "https://tec.openplanner.team/stops/Bnilcim1"], ["https://tec.openplanner.team/stops/LLR4bra1", "https://tec.openplanner.team/stops/LLRptma2"], ["https://tec.openplanner.team/stops/LmHflor2", "https://tec.openplanner.team/stops/LmHschm1"], ["https://tec.openplanner.team/stops/H4ka175b", "https://tec.openplanner.team/stops/H4ka183b"], ["https://tec.openplanner.team/stops/X912aia", "https://tec.openplanner.team/stops/X912aja"], ["https://tec.openplanner.team/stops/LBhcent1", "https://tec.openplanner.team/stops/LBhsign2"], ["https://tec.openplanner.team/stops/LrDkirc1", "https://tec.openplanner.team/stops/LrEfeck1"], ["https://tec.openplanner.team/stops/H1by100a", "https://tec.openplanner.team/stops/H1by104a"], ["https://tec.openplanner.team/stops/X637acb", "https://tec.openplanner.team/stops/X637ada"], ["https://tec.openplanner.team/stops/LAVdepr1", "https://tec.openplanner.team/stops/LAVdepr2"], ["https://tec.openplanner.team/stops/N501aea", "https://tec.openplanner.team/stops/N501afa"], ["https://tec.openplanner.team/stops/LTaeg--1", "https://tec.openplanner.team/stops/LTaeg--2"], ["https://tec.openplanner.team/stops/Cfogaul2", "https://tec.openplanner.team/stops/Cfohopi1"], ["https://tec.openplanner.team/stops/Buccrac1", "https://tec.openplanner.team/stops/Buccrac2"], ["https://tec.openplanner.team/stops/H4wa151b", "https://tec.openplanner.team/stops/H4wa159b"], ["https://tec.openplanner.team/stops/LaMbull2", "https://tec.openplanner.team/stops/LaMmark1"], ["https://tec.openplanner.team/stops/Llggill2", "https://tec.openplanner.team/stops/Lsntvbi1"], ["https://tec.openplanner.team/stops/X614apa", "https://tec.openplanner.team/stops/X614apb"], ["https://tec.openplanner.team/stops/Bbcoeco2", "https://tec.openplanner.team/stops/Bbcoser1"], ["https://tec.openplanner.team/stops/X999ada", "https://tec.openplanner.team/stops/X999adb"], ["https://tec.openplanner.team/stops/Ccipech1", "https://tec.openplanner.team/stops/Cmtstan3"], ["https://tec.openplanner.team/stops/Bfledpi2", "https://tec.openplanner.team/stops/Bsamfma1"], ["https://tec.openplanner.team/stops/H1bb113b", "https://tec.openplanner.team/stops/H1bb114a"], ["https://tec.openplanner.team/stops/N127acb", "https://tec.openplanner.team/stops/N127bba"], ["https://tec.openplanner.team/stops/X948ala", "https://tec.openplanner.team/stops/X948amb"], ["https://tec.openplanner.team/stops/X561aba", "https://tec.openplanner.team/stops/X561aea"], ["https://tec.openplanner.team/stops/LBGvill1", "https://tec.openplanner.team/stops/LBGvill2"], ["https://tec.openplanner.team/stops/H4am101a", "https://tec.openplanner.team/stops/H4an108a"], ["https://tec.openplanner.team/stops/LhEbruc1", "https://tec.openplanner.team/stops/LhEcolo1"], ["https://tec.openplanner.team/stops/X608aga", "https://tec.openplanner.team/stops/X608aza"], ["https://tec.openplanner.team/stops/H1sy143a", "https://tec.openplanner.team/stops/H1sy150b"], ["https://tec.openplanner.team/stops/X802aba", "https://tec.openplanner.team/stops/X882ala"], ["https://tec.openplanner.team/stops/Cchmamb2", "https://tec.openplanner.team/stops/Cchmonu3"], ["https://tec.openplanner.team/stops/Lbobuil1", "https://tec.openplanner.team/stops/Lbomidi1"], ["https://tec.openplanner.team/stops/X739aab", "https://tec.openplanner.team/stops/X739aeb"], ["https://tec.openplanner.team/stops/X820aca", "https://tec.openplanner.team/stops/X820afa"], ["https://tec.openplanner.team/stops/Lvealbe2", "https://tec.openplanner.team/stops/Lvefran1"], ["https://tec.openplanner.team/stops/Llgbwez2", "https://tec.openplanner.team/stops/Llgcham3"], ["https://tec.openplanner.team/stops/LRRchea3", "https://tec.openplanner.team/stops/LRRelec3"], ["https://tec.openplanner.team/stops/LFPgeme1", "https://tec.openplanner.team/stops/LWRferm2"], ["https://tec.openplanner.team/stops/Lbocarr1", "https://tec.openplanner.team/stops/Lbocond2"], ["https://tec.openplanner.team/stops/Brsrabe1", "https://tec.openplanner.team/stops/Brsrbbo2"], ["https://tec.openplanner.team/stops/N549aaa", "https://tec.openplanner.team/stops/N578aab"], ["https://tec.openplanner.team/stops/N343aba", "https://tec.openplanner.team/stops/N343abb"], ["https://tec.openplanner.team/stops/Cmbcime4", "https://tec.openplanner.team/stops/Crbreve2"], ["https://tec.openplanner.team/stops/LHZcime1", "https://tec.openplanner.team/stops/LHZcime2"], ["https://tec.openplanner.team/stops/LWaruth1", "https://tec.openplanner.team/stops/LWaruth2"], ["https://tec.openplanner.team/stops/Lsmh1802", "https://tec.openplanner.team/stops/Lsmh3021"], ["https://tec.openplanner.team/stops/Bwavzno1", "https://tec.openplanner.team/stops/Bwavzno2"], ["https://tec.openplanner.team/stops/X774adc", "https://tec.openplanner.team/stops/X774afa"], ["https://tec.openplanner.team/stops/Cfmwaut2", "https://tec.openplanner.team/stops/Ctrsema1"], ["https://tec.openplanner.team/stops/Lvegazo1", "https://tec.openplanner.team/stops/Lveptle4"], ["https://tec.openplanner.team/stops/N244apb", "https://tec.openplanner.team/stops/N244ata"], ["https://tec.openplanner.team/stops/LGecime1", "https://tec.openplanner.team/stops/LGecime2"], ["https://tec.openplanner.team/stops/H3lr109c", "https://tec.openplanner.team/stops/H3lr117a"], ["https://tec.openplanner.team/stops/LMHec--1", "https://tec.openplanner.team/stops/LMHplac1"], ["https://tec.openplanner.team/stops/LBEairp4", "https://tec.openplanner.team/stops/LBEtroo1"], ["https://tec.openplanner.team/stops/X595ahb", "https://tec.openplanner.team/stops/X796aia"], ["https://tec.openplanner.team/stops/N357aca", "https://tec.openplanner.team/stops/X351ada"], ["https://tec.openplanner.team/stops/Crehout1", "https://tec.openplanner.team/stops/Crehout2"], ["https://tec.openplanner.team/stops/LHMchbl2", "https://tec.openplanner.team/stops/LHMhind2"], ["https://tec.openplanner.team/stops/LSkcomb2", "https://tec.openplanner.team/stops/LSkdouf2"], ["https://tec.openplanner.team/stops/X801bdb", "https://tec.openplanner.team/stops/X801bma"], ["https://tec.openplanner.team/stops/Cfaeclu2", "https://tec.openplanner.team/stops/Crseuro2"], ["https://tec.openplanner.team/stops/X685aia", "https://tec.openplanner.team/stops/X687afa"], ["https://tec.openplanner.team/stops/LLxcrem1", "https://tec.openplanner.team/stops/LLxcrem2"], ["https://tec.openplanner.team/stops/Bgntcoo1", "https://tec.openplanner.team/stops/Bgntcoo2"], ["https://tec.openplanner.team/stops/N122aaa", "https://tec.openplanner.team/stops/N122aba"], ["https://tec.openplanner.team/stops/N532aca", "https://tec.openplanner.team/stops/N533aqb"], ["https://tec.openplanner.team/stops/LVNbale2", "https://tec.openplanner.team/stops/LWzwanz2"], ["https://tec.openplanner.team/stops/H2ca109a", "https://tec.openplanner.team/stops/H2ca109b"], ["https://tec.openplanner.team/stops/Bsenpbi2", "https://tec.openplanner.team/stops/H2se109a"], ["https://tec.openplanner.team/stops/H4wp148a", "https://tec.openplanner.team/stops/H4wp148b"], ["https://tec.openplanner.team/stops/N513abb", "https://tec.openplanner.team/stops/N513acd"], ["https://tec.openplanner.team/stops/Cmopn1", "https://tec.openplanner.team/stops/Cmopn6"], ["https://tec.openplanner.team/stops/H1gy114b", "https://tec.openplanner.team/stops/H1le125a"], ["https://tec.openplanner.team/stops/LVPcoeu1", "https://tec.openplanner.team/stops/LVPcoeu2"], ["https://tec.openplanner.team/stops/N155ada", "https://tec.openplanner.team/stops/N155akb"], ["https://tec.openplanner.team/stops/X661ajb", "https://tec.openplanner.team/stops/X661bca"], ["https://tec.openplanner.team/stops/N584aka", "https://tec.openplanner.team/stops/N584alb"], ["https://tec.openplanner.team/stops/H2go117b", "https://tec.openplanner.team/stops/H2gy105b"], ["https://tec.openplanner.team/stops/Bhenhau2", "https://tec.openplanner.team/stops/Bhenmal1"], ["https://tec.openplanner.team/stops/N117aga", "https://tec.openplanner.team/stops/N145aib"], ["https://tec.openplanner.team/stops/X725acb", "https://tec.openplanner.team/stops/X725ahb"], ["https://tec.openplanner.team/stops/Cmtpblo1", "https://tec.openplanner.team/stops/Cmtprey1"], ["https://tec.openplanner.team/stops/LCvoufn1", "https://tec.openplanner.team/stops/LWblesp2"], ["https://tec.openplanner.team/stops/Lancolr2", "https://tec.openplanner.team/stops/Lanyser1"], ["https://tec.openplanner.team/stops/Cgysole2", "https://tec.openplanner.team/stops/CMsolei1"], ["https://tec.openplanner.team/stops/H2ll183a", "https://tec.openplanner.team/stops/H2ll201b"], ["https://tec.openplanner.team/stops/X989aea", "https://tec.openplanner.team/stops/X989afb"], ["https://tec.openplanner.team/stops/N340acb", "https://tec.openplanner.team/stops/N340acc"], ["https://tec.openplanner.team/stops/X641ahb", "https://tec.openplanner.team/stops/X641aib"], ["https://tec.openplanner.team/stops/LSU50--2", "https://tec.openplanner.team/stops/LSUroyo2"], ["https://tec.openplanner.team/stops/X318abb", "https://tec.openplanner.team/stops/X318ada"], ["https://tec.openplanner.team/stops/H2le147a", "https://tec.openplanner.team/stops/H2le150a"], ["https://tec.openplanner.team/stops/Cfcbobr2", "https://tec.openplanner.team/stops/Cfccuch2"], ["https://tec.openplanner.team/stops/Ccucorb1", "https://tec.openplanner.team/stops/Ccucorb2"], ["https://tec.openplanner.team/stops/H4wn126b", "https://tec.openplanner.team/stops/H4wn127a"], ["https://tec.openplanner.team/stops/X907acb", "https://tec.openplanner.team/stops/X939acb"], ["https://tec.openplanner.team/stops/N501dib", "https://tec.openplanner.team/stops/N501leb"], ["https://tec.openplanner.team/stops/H2lh132a", "https://tec.openplanner.team/stops/H2mo133b"], ["https://tec.openplanner.team/stops/H1hw125a", "https://tec.openplanner.team/stops/H1hw125b"], ["https://tec.openplanner.team/stops/H2hg268b", "https://tec.openplanner.team/stops/H2hg268c"], ["https://tec.openplanner.team/stops/Bbgerlr1", "https://tec.openplanner.team/stops/Bbgerlr2"], ["https://tec.openplanner.team/stops/H4ne143b", "https://tec.openplanner.team/stops/H4wa155b"], ["https://tec.openplanner.team/stops/X782aib", "https://tec.openplanner.team/stops/X782ajb"], ["https://tec.openplanner.team/stops/N347aeb", "https://tec.openplanner.team/stops/N347afb"], ["https://tec.openplanner.team/stops/H1mm121b", "https://tec.openplanner.team/stops/H1mm126b"], ["https://tec.openplanner.team/stops/LhSheid2", "https://tec.openplanner.team/stops/LkOgren2"], ["https://tec.openplanner.team/stops/Bsdabja2", "https://tec.openplanner.team/stops/Csdnive4"], ["https://tec.openplanner.team/stops/X615afb", "https://tec.openplanner.team/stops/X615bia"], ["https://tec.openplanner.team/stops/H4ce104a", "https://tec.openplanner.team/stops/H4ce108b"], ["https://tec.openplanner.team/stops/LMYmont2", "https://tec.openplanner.team/stops/X796aba"], ["https://tec.openplanner.team/stops/N577afb", "https://tec.openplanner.team/stops/N577ahb"], ["https://tec.openplanner.team/stops/Cmtplac1", "https://tec.openplanner.team/stops/Cmtplac7"], ["https://tec.openplanner.team/stops/N132aca", "https://tec.openplanner.team/stops/N152abc"], ["https://tec.openplanner.team/stops/H4lh120a", "https://tec.openplanner.team/stops/H4lh161b"], ["https://tec.openplanner.team/stops/X925amb", "https://tec.openplanner.team/stops/X925aob"], ["https://tec.openplanner.team/stops/X542aca", "https://tec.openplanner.team/stops/X542aia"], ["https://tec.openplanner.team/stops/LLrgobe1", "https://tec.openplanner.team/stops/LLrisa-*"], ["https://tec.openplanner.team/stops/H4ru245b", "https://tec.openplanner.team/stops/H4wc373b"], ["https://tec.openplanner.team/stops/H4wp148b", "https://tec.openplanner.team/stops/H4wp152b"], ["https://tec.openplanner.team/stops/X993ada", "https://tec.openplanner.team/stops/X993agb"], ["https://tec.openplanner.team/stops/LHApthe2", "https://tec.openplanner.team/stops/LHTmoul1"], ["https://tec.openplanner.team/stops/Bnilcab1", "https://tec.openplanner.team/stops/Bnilpor3"], ["https://tec.openplanner.team/stops/Cfomays1", "https://tec.openplanner.team/stops/Cgxfo142"], ["https://tec.openplanner.team/stops/Cjxpann1", "https://tec.openplanner.team/stops/Cjxpann2"], ["https://tec.openplanner.team/stops/X822abb", "https://tec.openplanner.team/stops/X822ana"], ["https://tec.openplanner.team/stops/X696aca", "https://tec.openplanner.team/stops/X696afa"], ["https://tec.openplanner.team/stops/X542aba", "https://tec.openplanner.team/stops/X777acb"], ["https://tec.openplanner.team/stops/N357aea", "https://tec.openplanner.team/stops/N988aaa"], ["https://tec.openplanner.team/stops/Bbsifmo2", "https://tec.openplanner.team/stops/Bbsipos2"], ["https://tec.openplanner.team/stops/X782aha", "https://tec.openplanner.team/stops/X784aea"], ["https://tec.openplanner.team/stops/H4me211c", "https://tec.openplanner.team/stops/H4ve134a"], ["https://tec.openplanner.team/stops/Bwatlbr1", "https://tec.openplanner.team/stops/Bwatle32"], ["https://tec.openplanner.team/stops/Cctsncb3", "https://tec.openplanner.team/stops/Cculgeo2"], ["https://tec.openplanner.team/stops/H4he103a", "https://tec.openplanner.team/stops/H4he106a"], ["https://tec.openplanner.team/stops/N551aba", "https://tec.openplanner.team/stops/N551afa"], ["https://tec.openplanner.team/stops/Btsleco1", "https://tec.openplanner.team/stops/Btslnil2"], ["https://tec.openplanner.team/stops/H2gy105b", "https://tec.openplanner.team/stops/H2gy106b"], ["https://tec.openplanner.team/stops/N170afa", "https://tec.openplanner.team/stops/NC14aba"], ["https://tec.openplanner.team/stops/Cacecol2", "https://tec.openplanner.team/stops/NC24aeb"], ["https://tec.openplanner.team/stops/Cflmarq1", "https://tec.openplanner.team/stops/Cflspir1"], ["https://tec.openplanner.team/stops/LGDgdou1", "https://tec.openplanner.team/stops/LXftche1"], ["https://tec.openplanner.team/stops/H4bo110a", "https://tec.openplanner.team/stops/H4bo179a"], ["https://tec.openplanner.team/stops/X752aaa", "https://tec.openplanner.team/stops/X752aab"], ["https://tec.openplanner.team/stops/H1po139b", "https://tec.openplanner.team/stops/H5gr137a"], ["https://tec.openplanner.team/stops/LSZchpl2", "https://tec.openplanner.team/stops/LSZeg--1"], ["https://tec.openplanner.team/stops/H2hp116b", "https://tec.openplanner.team/stops/H2ll181b"], ["https://tec.openplanner.team/stops/H1ba113b", "https://tec.openplanner.team/stops/H1qu111a"], ["https://tec.openplanner.team/stops/LEMgren*", "https://tec.openplanner.team/stops/LPldoua4"], ["https://tec.openplanner.team/stops/X768aia", "https://tec.openplanner.team/stops/X768amb"], ["https://tec.openplanner.team/stops/H5rx138b", "https://tec.openplanner.team/stops/H5rx143b"], ["https://tec.openplanner.team/stops/Btileco2", "https://tec.openplanner.team/stops/Btilsnc1"], ["https://tec.openplanner.team/stops/H5qu156c", "https://tec.openplanner.team/stops/H5qu182a"], ["https://tec.openplanner.team/stops/N141aja", "https://tec.openplanner.team/stops/N141anb"], ["https://tec.openplanner.team/stops/X669agc", "https://tec.openplanner.team/stops/X672afb"], ["https://tec.openplanner.team/stops/LaAhaup1", "https://tec.openplanner.team/stops/LaAhaup2"], ["https://tec.openplanner.team/stops/X684abb", "https://tec.openplanner.team/stops/X685afb"], ["https://tec.openplanner.team/stops/N521akb", "https://tec.openplanner.team/stops/N525afb"], ["https://tec.openplanner.team/stops/Lreclou2", "https://tec.openplanner.team/stops/Lrelier2"], ["https://tec.openplanner.team/stops/Bhmmcim1", "https://tec.openplanner.team/stops/Bhmmvdu1"], ["https://tec.openplanner.team/stops/LBBlaga2", "https://tec.openplanner.team/stops/LBBmc--1"], ["https://tec.openplanner.team/stops/Lkivolg1", "https://tec.openplanner.team/stops/Lkivolg2"], ["https://tec.openplanner.team/stops/Cchlamb1", "https://tec.openplanner.team/stops/Cchlamb2"], ["https://tec.openplanner.team/stops/Bneepne1", "https://tec.openplanner.team/stops/Bneervc2"], ["https://tec.openplanner.team/stops/LGMdrev2", "https://tec.openplanner.team/stops/LGMforg2"], ["https://tec.openplanner.team/stops/H4hn113a", "https://tec.openplanner.team/stops/H4hn115a"], ["https://tec.openplanner.team/stops/X937afa", "https://tec.openplanner.team/stops/X937ahb"], ["https://tec.openplanner.team/stops/Cgoclad2", "https://tec.openplanner.team/stops/Cgoulb1"], ["https://tec.openplanner.team/stops/N550agb", "https://tec.openplanner.team/stops/N550ana"], ["https://tec.openplanner.team/stops/N531aja", "https://tec.openplanner.team/stops/N531aqa"], ["https://tec.openplanner.team/stops/LVbsurr1", "https://tec.openplanner.team/stops/LVbsurr2"], ["https://tec.openplanner.team/stops/H2sv215a", "https://tec.openplanner.team/stops/H2sv218b"], ["https://tec.openplanner.team/stops/N501emb", "https://tec.openplanner.team/stops/N501kkb"], ["https://tec.openplanner.team/stops/Bfelrav2", "https://tec.openplanner.team/stops/H2se105a"], ["https://tec.openplanner.team/stops/LeYauto1", "https://tec.openplanner.team/stops/LeYdorf1"], ["https://tec.openplanner.team/stops/X897aaa", "https://tec.openplanner.team/stops/X898ahb"], ["https://tec.openplanner.team/stops/N141aaa", "https://tec.openplanner.team/stops/N425aba"], ["https://tec.openplanner.team/stops/H1qv110a", "https://tec.openplanner.team/stops/H1qv110b"], ["https://tec.openplanner.team/stops/H4ch114b", "https://tec.openplanner.team/stops/H4sm247b"], ["https://tec.openplanner.team/stops/Cjufrat1", "https://tec.openplanner.team/stops/Clocroi1"], ["https://tec.openplanner.team/stops/X897afa", "https://tec.openplanner.team/stops/X985ada"], ["https://tec.openplanner.team/stops/X921abb", "https://tec.openplanner.team/stops/X921adb"], ["https://tec.openplanner.team/stops/N538ava", "https://tec.openplanner.team/stops/N539awa"], ["https://tec.openplanner.team/stops/Chppack1", "https://tec.openplanner.team/stops/Cradest1"], ["https://tec.openplanner.team/stops/LGmhedo1", "https://tec.openplanner.team/stops/LGmhedo2"], ["https://tec.openplanner.team/stops/Bptemch1", "https://tec.openplanner.team/stops/Bptemch2"], ["https://tec.openplanner.team/stops/LKmdrie2", "https://tec.openplanner.team/stops/LKmeg--1"], ["https://tec.openplanner.team/stops/H1ro132a", "https://tec.openplanner.team/stops/H1ro137b"], ["https://tec.openplanner.team/stops/LWOcour1", "https://tec.openplanner.team/stops/LWOsass2"], ["https://tec.openplanner.team/stops/H2mo117a", "https://tec.openplanner.team/stops/H2mo119b"], ["https://tec.openplanner.team/stops/X940aeb", "https://tec.openplanner.team/stops/X940aed"], ["https://tec.openplanner.team/stops/Cchmott1", "https://tec.openplanner.team/stops/Cchmott2"], ["https://tec.openplanner.team/stops/LHAclin1", "https://tec.openplanner.team/stops/LVIhala4"], ["https://tec.openplanner.team/stops/X801cgb", "https://tec.openplanner.team/stops/X801cha"], ["https://tec.openplanner.team/stops/Clddelh1", "https://tec.openplanner.team/stops/Clddeve2"], ["https://tec.openplanner.team/stops/X361abb", "https://tec.openplanner.team/stops/X371aja"], ["https://tec.openplanner.team/stops/Balsnie1", "https://tec.openplanner.team/stops/Brsgfon2"], ["https://tec.openplanner.team/stops/X886aeb", "https://tec.openplanner.team/stops/X886afa"], ["https://tec.openplanner.team/stops/X663ara", "https://tec.openplanner.team/stops/X664apb"], ["https://tec.openplanner.team/stops/Crbhurt2", "https://tec.openplanner.team/stops/Crbreve1"], ["https://tec.openplanner.team/stops/LOmpont2", "https://tec.openplanner.team/stops/LOmrela2"], ["https://tec.openplanner.team/stops/N423abb", "https://tec.openplanner.team/stops/N423afa"], ["https://tec.openplanner.team/stops/N501anb", "https://tec.openplanner.team/stops/N501mbb"], ["https://tec.openplanner.team/stops/X812aba", "https://tec.openplanner.team/stops/X812aoa"], ["https://tec.openplanner.team/stops/N565afa", "https://tec.openplanner.team/stops/N565aib"], ["https://tec.openplanner.team/stops/Lanstat2", "https://tec.openplanner.team/stops/Llojeme4"], ["https://tec.openplanner.team/stops/Cpibois1", "https://tec.openplanner.team/stops/Cpipost1"], ["https://tec.openplanner.team/stops/LBbhupp2", "https://tec.openplanner.team/stops/LTPhenr1"], ["https://tec.openplanner.team/stops/N531aha", "https://tec.openplanner.team/stops/N531akb"], ["https://tec.openplanner.team/stops/Cmlange2", "https://tec.openplanner.team/stops/Cmtrbra2"], ["https://tec.openplanner.team/stops/Lglvict1", "https://tec.openplanner.team/stops/Lglvict2"], ["https://tec.openplanner.team/stops/LSzeg--1", "https://tec.openplanner.team/stops/LSzetoi2"], ["https://tec.openplanner.team/stops/Bborcro1", "https://tec.openplanner.team/stops/Bborcro2"], ["https://tec.openplanner.team/stops/X779aga", "https://tec.openplanner.team/stops/X779agb"], ["https://tec.openplanner.team/stops/Bcrnpla3", "https://tec.openplanner.team/stops/Bcrnpla4"], ["https://tec.openplanner.team/stops/Cflathe1", "https://tec.openplanner.team/stops/NC12adb"], ["https://tec.openplanner.team/stops/Loucent1", "https://tec.openplanner.team/stops/Lousite1"], ["https://tec.openplanner.team/stops/H1eu102a", "https://tec.openplanner.team/stops/H1eu102b"], ["https://tec.openplanner.team/stops/Lghberl1", "https://tec.openplanner.team/stops/Lmochan1"], ["https://tec.openplanner.team/stops/Ctrpn2", "https://tec.openplanner.team/stops/H2tz120a"], ["https://tec.openplanner.team/stops/LjeGRPMC", "https://tec.openplanner.team/stops/LjeGRPMD"], ["https://tec.openplanner.team/stops/H2ca101a", "https://tec.openplanner.team/stops/H2ca106b"], ["https://tec.openplanner.team/stops/LPRbayb2", "https://tec.openplanner.team/stops/LPRfour1"], ["https://tec.openplanner.team/stops/H3lr112a", "https://tec.openplanner.team/stops/H3lr120a"], ["https://tec.openplanner.team/stops/Bdlmgla2", "https://tec.openplanner.team/stops/Bwavlca2"], ["https://tec.openplanner.team/stops/Bwatmch3", "https://tec.openplanner.team/stops/Bwatpcs1"], ["https://tec.openplanner.team/stops/LaMadam1", "https://tec.openplanner.team/stops/LaMjous1"], ["https://tec.openplanner.team/stops/Bnivind1", "https://tec.openplanner.team/stops/Bnivtra1"], ["https://tec.openplanner.team/stops/Lrcchpl2", "https://tec.openplanner.team/stops/Lrcpaqu1"], ["https://tec.openplanner.team/stops/Bgnvgar1", "https://tec.openplanner.team/stops/Blhusor1"], ["https://tec.openplanner.team/stops/N534bub", "https://tec.openplanner.team/stops/N534bvb"], ["https://tec.openplanner.team/stops/X371abb", "https://tec.openplanner.team/stops/X371agb"], ["https://tec.openplanner.team/stops/N501hlb", "https://tec.openplanner.team/stops/N501hlx"], ["https://tec.openplanner.team/stops/H4ry129a", "https://tec.openplanner.team/stops/H4ry133b"], ["https://tec.openplanner.team/stops/LGetroi2", "https://tec.openplanner.team/stops/LSIgera2"], ["https://tec.openplanner.team/stops/N502aaa", "https://tec.openplanner.team/stops/N502aba"], ["https://tec.openplanner.team/stops/H1qv111b", "https://tec.openplanner.team/stops/H1qv113a"], ["https://tec.openplanner.team/stops/LhPprum1", "https://tec.openplanner.team/stops/LhPprum2"], ["https://tec.openplanner.team/stops/H1at110b", "https://tec.openplanner.team/stops/H1at110c"], ["https://tec.openplanner.team/stops/N170aga", "https://tec.openplanner.team/stops/N571akb"], ["https://tec.openplanner.team/stops/LkEbbl-2", "https://tec.openplanner.team/stops/LkEgds-1"], ["https://tec.openplanner.team/stops/Bperros2", "https://tec.openplanner.team/stops/NB33aeb"], ["https://tec.openplanner.team/stops/N501jna", "https://tec.openplanner.team/stops/N501jpa"], ["https://tec.openplanner.team/stops/H1au100a", "https://tec.openplanner.team/stops/H1mr123a"], ["https://tec.openplanner.team/stops/Csobail2", "https://tec.openplanner.team/stops/Csostoc1"], ["https://tec.openplanner.team/stops/H5ar104a", "https://tec.openplanner.team/stops/H5ar107a"], ["https://tec.openplanner.team/stops/Clacast1", "https://tec.openplanner.team/stops/Clafaub2"], ["https://tec.openplanner.team/stops/Bqueegl2", "https://tec.openplanner.team/stops/Bquepla2"], ["https://tec.openplanner.team/stops/N521asd", "https://tec.openplanner.team/stops/N521ata"], ["https://tec.openplanner.team/stops/X658adb", "https://tec.openplanner.team/stops/X658aeb"], ["https://tec.openplanner.team/stops/LSseg--1", "https://tec.openplanner.team/stops/LSseg--2"], ["https://tec.openplanner.team/stops/H1au111b", "https://tec.openplanner.team/stops/H1ro139a"], ["https://tec.openplanner.team/stops/N115ada", "https://tec.openplanner.team/stops/N115adb"], ["https://tec.openplanner.team/stops/LTNeau-1", "https://tec.openplanner.team/stops/LTNeau-2"], ["https://tec.openplanner.team/stops/Bbaualz2", "https://tec.openplanner.team/stops/Bbauham1"], ["https://tec.openplanner.team/stops/LLUlieg1", "https://tec.openplanner.team/stops/LLUmont1"], ["https://tec.openplanner.team/stops/LBKmoes2", "https://tec.openplanner.team/stops/LOeelbe1"], ["https://tec.openplanner.team/stops/N117bab", "https://tec.openplanner.team/stops/N147aea"], ["https://tec.openplanner.team/stops/LmDkirc1", "https://tec.openplanner.team/stops/LmDkirc2"], ["https://tec.openplanner.team/stops/H1gh147b", "https://tec.openplanner.team/stops/H1gh159a"], ["https://tec.openplanner.team/stops/NC14aqa", "https://tec.openplanner.team/stops/NC14aqb"], ["https://tec.openplanner.team/stops/Ccyga3", "https://tec.openplanner.team/stops/Ccygara1"], ["https://tec.openplanner.team/stops/Lthfagn2", "https://tec.openplanner.team/stops/LWalyce1"], ["https://tec.openplanner.team/stops/N534bng", "https://tec.openplanner.team/stops/N534bog"], ["https://tec.openplanner.team/stops/Bhalomo2", "https://tec.openplanner.team/stops/Bhalwat2"], ["https://tec.openplanner.team/stops/H1lb134a", "https://tec.openplanner.team/stops/H1lb134b"], ["https://tec.openplanner.team/stops/H1fr118a", "https://tec.openplanner.team/stops/H1no143b"], ["https://tec.openplanner.team/stops/N311aca", "https://tec.openplanner.team/stops/N311afa"], ["https://tec.openplanner.team/stops/N521asa", "https://tec.openplanner.team/stops/N521ata"], ["https://tec.openplanner.team/stops/N504aaa", "https://tec.openplanner.team/stops/N511aga"], ["https://tec.openplanner.team/stops/N132ada", "https://tec.openplanner.team/stops/N136aaa"], ["https://tec.openplanner.team/stops/NC44afa", "https://tec.openplanner.team/stops/NC44afb"], ["https://tec.openplanner.team/stops/X719abb", "https://tec.openplanner.team/stops/X720abb"], ["https://tec.openplanner.team/stops/Bzlufbo1", "https://tec.openplanner.team/stops/Bzluvil2"], ["https://tec.openplanner.team/stops/H2sv217b", "https://tec.openplanner.team/stops/H2tr257a"], ["https://tec.openplanner.team/stops/Lsnferr2", "https://tec.openplanner.team/stops/Lsnpaqu2"], ["https://tec.openplanner.team/stops/Crewaba2", "https://tec.openplanner.team/stops/Crewath2"], ["https://tec.openplanner.team/stops/X342aab", "https://tec.openplanner.team/stops/X342aha"], ["https://tec.openplanner.team/stops/LTHcent2", "https://tec.openplanner.team/stops/LTHec--2"], ["https://tec.openplanner.team/stops/LHCbois1", "https://tec.openplanner.team/stops/LHCquat4"], ["https://tec.openplanner.team/stops/X614bca", "https://tec.openplanner.team/stops/X626ala"], ["https://tec.openplanner.team/stops/X359aea", "https://tec.openplanner.team/stops/X359alb"], ["https://tec.openplanner.team/stops/Blsmcha2", "https://tec.openplanner.team/stops/Blsmcha3"], ["https://tec.openplanner.team/stops/X396adb", "https://tec.openplanner.team/stops/X396aea"], ["https://tec.openplanner.team/stops/Bmsgcap1", "https://tec.openplanner.team/stops/Bmsgcap2"], ["https://tec.openplanner.team/stops/Cvpcime1", "https://tec.openplanner.team/stops/Cvpcour2"], ["https://tec.openplanner.team/stops/N355aeb", "https://tec.openplanner.team/stops/N874agb"], ["https://tec.openplanner.team/stops/LWEgare1", "https://tec.openplanner.team/stops/LWEpl--1"], ["https://tec.openplanner.team/stops/H5rx126a", "https://tec.openplanner.team/stops/H5rx137b"], ["https://tec.openplanner.team/stops/Bjaufca1", "https://tec.openplanner.team/stops/Bjaugar3"], ["https://tec.openplanner.team/stops/Lghfors1", "https://tec.openplanner.team/stops/Ljerose4"], ["https://tec.openplanner.team/stops/Lmobrac2", "https://tec.openplanner.team/stops/Lsnbrac4"], ["https://tec.openplanner.team/stops/H1hh116a", "https://tec.openplanner.team/stops/H1hh117a"], ["https://tec.openplanner.team/stops/LJelava1", "https://tec.openplanner.team/stops/LMOstat2"], ["https://tec.openplanner.team/stops/N509aga", "https://tec.openplanner.team/stops/N509aka"], ["https://tec.openplanner.team/stops/Lpedeta1", "https://tec.openplanner.team/stops/Lpeflec2"], ["https://tec.openplanner.team/stops/Cpcarse1", "https://tec.openplanner.team/stops/Cpctrau2"], ["https://tec.openplanner.team/stops/X824aib", "https://tec.openplanner.team/stops/X824alb"], ["https://tec.openplanner.team/stops/LSHneuv1", "https://tec.openplanner.team/stops/LSHneuv2"], ["https://tec.openplanner.team/stops/X750aka", "https://tec.openplanner.team/stops/X780ata"], ["https://tec.openplanner.team/stops/X806aab", "https://tec.openplanner.team/stops/X806aia"], ["https://tec.openplanner.team/stops/Lsmrwan2", "https://tec.openplanner.team/stops/Lsmsech4"], ["https://tec.openplanner.team/stops/H4ty272a", "https://tec.openplanner.team/stops/H4ty313b"], ["https://tec.openplanner.team/stops/N234acb", "https://tec.openplanner.team/stops/N234afa"], ["https://tec.openplanner.team/stops/N217abb", "https://tec.openplanner.team/stops/N218aeb"], ["https://tec.openplanner.team/stops/H1fr112b", "https://tec.openplanner.team/stops/H1no143a"], ["https://tec.openplanner.team/stops/Bgemga10", "https://tec.openplanner.team/stops/N522bvh"], ["https://tec.openplanner.team/stops/N390aab", "https://tec.openplanner.team/stops/N390abb"], ["https://tec.openplanner.team/stops/Lghhoco2", "https://tec.openplanner.team/stops/Lghremy1"], ["https://tec.openplanner.team/stops/X904aka", "https://tec.openplanner.team/stops/X904ala"], ["https://tec.openplanner.team/stops/LLrmc--1", "https://tec.openplanner.team/stops/LLrmc--4"], ["https://tec.openplanner.team/stops/Cmlipsm3", "https://tec.openplanner.team/stops/Cmlrbru1"], ["https://tec.openplanner.team/stops/N528afy", "https://tec.openplanner.team/stops/N528ajb"], ["https://tec.openplanner.team/stops/Lghcoqs1", "https://tec.openplanner.team/stops/Lghcoqs2"], ["https://tec.openplanner.team/stops/LBjcent1", "https://tec.openplanner.team/stops/X715aka"], ["https://tec.openplanner.team/stops/N149aca", "https://tec.openplanner.team/stops/N149adb"], ["https://tec.openplanner.team/stops/LBNburg1", "https://tec.openplanner.team/stops/LBNover1"], ["https://tec.openplanner.team/stops/X910aha", "https://tec.openplanner.team/stops/X911aib"], ["https://tec.openplanner.team/stops/Cgyrjau1", "https://tec.openplanner.team/stops/Cmtduch2"], ["https://tec.openplanner.team/stops/H4wr173b", "https://tec.openplanner.team/stops/H4wr175b"], ["https://tec.openplanner.team/stops/Ljerobi1", "https://tec.openplanner.team/stops/Ljerouy2"], ["https://tec.openplanner.team/stops/NC11ama", "https://tec.openplanner.team/stops/NC11anb"], ["https://tec.openplanner.team/stops/LMfange2", "https://tec.openplanner.team/stops/LMffoot1"], ["https://tec.openplanner.team/stops/X633aia", "https://tec.openplanner.team/stops/X633aib"], ["https://tec.openplanner.team/stops/Bblaang2", "https://tec.openplanner.team/stops/Blilhay1"], ["https://tec.openplanner.team/stops/Louegla1", "https://tec.openplanner.team/stops/Louroos3"], ["https://tec.openplanner.team/stops/X344aeb", "https://tec.openplanner.team/stops/X363abb"], ["https://tec.openplanner.team/stops/H4bw100b", "https://tec.openplanner.team/stops/H4co103b"], ["https://tec.openplanner.team/stops/Cmlaili2", "https://tec.openplanner.team/stops/NC01afa"], ["https://tec.openplanner.team/stops/Bwatabs1", "https://tec.openplanner.team/stops/Bwatcci2"], ["https://tec.openplanner.team/stops/Bsdecdi1", "https://tec.openplanner.team/stops/N526aaa"], ["https://tec.openplanner.team/stops/Cthgend2", "https://tec.openplanner.team/stops/Cthhvil6"], ["https://tec.openplanner.team/stops/X636bfa", "https://tec.openplanner.team/stops/X636bga"], ["https://tec.openplanner.team/stops/H1bd100b", "https://tec.openplanner.team/stops/H1ol140b"], ["https://tec.openplanner.team/stops/Lemarde2", "https://tec.openplanner.team/stops/Lemfort1"], ["https://tec.openplanner.team/stops/X999ana", "https://tec.openplanner.team/stops/X999asa"], ["https://tec.openplanner.team/stops/Cmcbriq3", "https://tec.openplanner.team/stops/Cmcgoch1"], ["https://tec.openplanner.team/stops/LHUfrai1", "https://tec.openplanner.team/stops/LTiespe1"], ["https://tec.openplanner.team/stops/LlgCATH1", "https://tec.openplanner.team/stops/LlgOPER1"], ["https://tec.openplanner.team/stops/LMheg--1", "https://tec.openplanner.team/stops/LMheg--2"], ["https://tec.openplanner.team/stops/LHTeg--1", "https://tec.openplanner.team/stops/LHTmc--2"], ["https://tec.openplanner.team/stops/Cmlfeba1", "https://tec.openplanner.team/stops/Cmlipsm2"], ["https://tec.openplanner.team/stops/H4hx109b", "https://tec.openplanner.team/stops/H4mo191b"], ["https://tec.openplanner.team/stops/N234aba", "https://tec.openplanner.team/stops/N234aca"], ["https://tec.openplanner.team/stops/Lthfren1", "https://tec.openplanner.team/stops/Lthgros1"], ["https://tec.openplanner.team/stops/Ccicloc1", "https://tec.openplanner.team/stops/Ccicloc2"], ["https://tec.openplanner.team/stops/N540aaa", "https://tec.openplanner.team/stops/N540afa"], ["https://tec.openplanner.team/stops/Cflbrun1", "https://tec.openplanner.team/stops/Cflsncb3"], ["https://tec.openplanner.team/stops/X952aka", "https://tec.openplanner.team/stops/X955aaa"], ["https://tec.openplanner.team/stops/Bbeaap51", "https://tec.openplanner.team/stops/Bbeacha1"], ["https://tec.openplanner.team/stops/Ldicorb2", "https://tec.openplanner.team/stops/Ldihusq1"], ["https://tec.openplanner.team/stops/H4hx109a", "https://tec.openplanner.team/stops/H4mo148b"], ["https://tec.openplanner.team/stops/N538ada", "https://tec.openplanner.team/stops/N538adb"], ["https://tec.openplanner.team/stops/LEntrix1", "https://tec.openplanner.team/stops/LEnvill2"], ["https://tec.openplanner.team/stops/X937ala", "https://tec.openplanner.team/stops/X937alb"], ["https://tec.openplanner.team/stops/LPRbayb1", "https://tec.openplanner.team/stops/LPRmoul2"], ["https://tec.openplanner.team/stops/Cmychau2", "https://tec.openplanner.team/stops/Cmychpl2"], ["https://tec.openplanner.team/stops/LBPmili1", "https://tec.openplanner.team/stops/LGLc12-3"], ["https://tec.openplanner.team/stops/Ljugode1", "https://tec.openplanner.team/stops/Ljumiux1"], ["https://tec.openplanner.team/stops/H1ms362a", "https://tec.openplanner.team/stops/H1ob361a"], ["https://tec.openplanner.team/stops/X663ana", "https://tec.openplanner.team/stops/X664aoa"], ["https://tec.openplanner.team/stops/X639aja", "https://tec.openplanner.team/stops/X639akb"], ["https://tec.openplanner.team/stops/X925ahb", "https://tec.openplanner.team/stops/X925ana"], ["https://tec.openplanner.team/stops/Bvlvmar1", "https://tec.openplanner.team/stops/Bvlvpco1"], ["https://tec.openplanner.team/stops/LTIgare1", "https://tec.openplanner.team/stops/LTIpres1"], ["https://tec.openplanner.team/stops/LMFmerl2", "https://tec.openplanner.team/stops/Lqbecco1"], ["https://tec.openplanner.team/stops/N538acb", "https://tec.openplanner.team/stops/N538anb"], ["https://tec.openplanner.team/stops/Lanetie2", "https://tec.openplanner.team/stops/Lanrask1"], ["https://tec.openplanner.team/stops/X829adb", "https://tec.openplanner.team/stops/X829aea"], ["https://tec.openplanner.team/stops/LLYchpl2", "https://tec.openplanner.team/stops/LLYplac2"], ["https://tec.openplanner.team/stops/LDmcruc1", "https://tec.openplanner.team/stops/LDmhave2"], ["https://tec.openplanner.team/stops/H2sv216a", "https://tec.openplanner.team/stops/H2sv218a"], ["https://tec.openplanner.team/stops/N528aib", "https://tec.openplanner.team/stops/N528ara"], ["https://tec.openplanner.team/stops/X982aga", "https://tec.openplanner.team/stops/X982ahb"], ["https://tec.openplanner.team/stops/Cmygrbr4", "https://tec.openplanner.team/stops/Cmyoasi2"], ["https://tec.openplanner.team/stops/H1ho138b", "https://tec.openplanner.team/stops/H1wa143b"], ["https://tec.openplanner.team/stops/X781agb", "https://tec.openplanner.team/stops/X781ahb"], ["https://tec.openplanner.team/stops/H4ma398a", "https://tec.openplanner.team/stops/H4ma399a"], ["https://tec.openplanner.team/stops/Cgpmoul1", "https://tec.openplanner.team/stops/Cpcegli1"], ["https://tec.openplanner.team/stops/Cvpplan2", "https://tec.openplanner.team/stops/Cvpsawe1"], ["https://tec.openplanner.team/stops/H2tr251b", "https://tec.openplanner.team/stops/H2tr255a"], ["https://tec.openplanner.team/stops/N106acb", "https://tec.openplanner.team/stops/N106arb"], ["https://tec.openplanner.team/stops/Bclgmev1", "https://tec.openplanner.team/stops/Bclgvse2"], ["https://tec.openplanner.team/stops/LWAalou2", "https://tec.openplanner.team/stops/LWAlong3"], ["https://tec.openplanner.team/stops/X754awa", "https://tec.openplanner.team/stops/X754awb"], ["https://tec.openplanner.team/stops/Cchcase4", "https://tec.openplanner.team/stops/Cchparc2"], ["https://tec.openplanner.team/stops/H4ft134b", "https://tec.openplanner.team/stops/H4ma205b"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LAUvdab1"], ["https://tec.openplanner.team/stops/N425aba", "https://tec.openplanner.team/stops/N426aeb"], ["https://tec.openplanner.team/stops/Bchapir1", "https://tec.openplanner.team/stops/Bcharce2"], ["https://tec.openplanner.team/stops/H2ml113b", "https://tec.openplanner.team/stops/H2ml114b"], ["https://tec.openplanner.team/stops/Cctjust1", "https://tec.openplanner.team/stops/Cctrjus2"], ["https://tec.openplanner.team/stops/LLUgend1", "https://tec.openplanner.team/stops/LLUreut1"], ["https://tec.openplanner.team/stops/LRGchap2", "https://tec.openplanner.team/stops/LRGgrov1"], ["https://tec.openplanner.team/stops/LSkchwa1", "https://tec.openplanner.team/stops/LSkwarf3"], ["https://tec.openplanner.team/stops/Llmdavi2", "https://tec.openplanner.team/stops/Llmvill2"], ["https://tec.openplanner.team/stops/Bcrncen2", "https://tec.openplanner.team/stops/Bcrnegl2"], ["https://tec.openplanner.team/stops/H1ch103b", "https://tec.openplanner.team/stops/H1hh116a"], ["https://tec.openplanner.team/stops/LTHcime1", "https://tec.openplanner.team/stops/LTHjevo1"], ["https://tec.openplanner.team/stops/X804bdb", "https://tec.openplanner.team/stops/X804bfb"], ["https://tec.openplanner.team/stops/N204aba", "https://tec.openplanner.team/stops/N204abb"], ["https://tec.openplanner.team/stops/LNCrami1", "https://tec.openplanner.team/stops/LRRchea5"], ["https://tec.openplanner.team/stops/Bgemfbo1", "https://tec.openplanner.team/stops/Bgemrom4"], ["https://tec.openplanner.team/stops/X723ala", "https://tec.openplanner.team/stops/X723alb"], ["https://tec.openplanner.team/stops/X765aba", "https://tec.openplanner.team/stops/X765acb"], ["https://tec.openplanner.team/stops/LPRmc--2", "https://tec.openplanner.team/stops/LPRvill2"], ["https://tec.openplanner.team/stops/Bqueblo2", "https://tec.openplanner.team/stops/Bquevel1"], ["https://tec.openplanner.team/stops/X619aga", "https://tec.openplanner.team/stops/X619aha"], ["https://tec.openplanner.team/stops/Bbougbl2", "https://tec.openplanner.team/stops/Btanbth2"], ["https://tec.openplanner.team/stops/X640akb", "https://tec.openplanner.team/stops/X640ama"], ["https://tec.openplanner.team/stops/H4co103b", "https://tec.openplanner.team/stops/H4co141b"], ["https://tec.openplanner.team/stops/N343aja", "https://tec.openplanner.team/stops/N343ajb"], ["https://tec.openplanner.team/stops/H4re225b", "https://tec.openplanner.team/stops/H4re226a"], ["https://tec.openplanner.team/stops/N501hwa", "https://tec.openplanner.team/stops/N501iaa"], ["https://tec.openplanner.team/stops/LESmagr1", "https://tec.openplanner.team/stops/LESryon1"], ["https://tec.openplanner.team/stops/H4ty282b", "https://tec.openplanner.team/stops/H4ty307b"], ["https://tec.openplanner.team/stops/LSGcolo2", "https://tec.openplanner.team/stops/LSktinc1"], ["https://tec.openplanner.team/stops/LCEeg--1", "https://tec.openplanner.team/stops/LMIcamp1"], ["https://tec.openplanner.team/stops/Ccogibr2", "https://tec.openplanner.team/stops/Ccostan1"], ["https://tec.openplanner.team/stops/Lhrhenr1", "https://tec.openplanner.team/stops/Lhrsimo1"], ["https://tec.openplanner.team/stops/N106aja", "https://tec.openplanner.team/stops/N106alb"], ["https://tec.openplanner.team/stops/Cflcoro2", "https://tec.openplanner.team/stops/Cflmart2"], ["https://tec.openplanner.team/stops/X542adb", "https://tec.openplanner.team/stops/X542agb"], ["https://tec.openplanner.team/stops/LESathe1", "https://tec.openplanner.team/stops/LESmont1"], ["https://tec.openplanner.team/stops/Bcseche1", "https://tec.openplanner.team/stops/Bcseche2"], ["https://tec.openplanner.team/stops/Ljhcarr2", "https://tec.openplanner.team/stops/Ljhheus1"], ["https://tec.openplanner.team/stops/Bmrleco1", "https://tec.openplanner.team/stops/Bmrlhau1"], ["https://tec.openplanner.team/stops/X837aec", "https://tec.openplanner.team/stops/X837alb"], ["https://tec.openplanner.team/stops/N211apa", "https://tec.openplanner.team/stops/N211baa"], ["https://tec.openplanner.team/stops/H1ci106a", "https://tec.openplanner.team/stops/H1mv238a"], ["https://tec.openplanner.team/stops/X664aia", "https://tec.openplanner.team/stops/X664aid"], ["https://tec.openplanner.team/stops/H5wo128a", "https://tec.openplanner.team/stops/H5wo130a"], ["https://tec.openplanner.team/stops/N534axb", "https://tec.openplanner.team/stops/N534aya"], ["https://tec.openplanner.team/stops/H4ru236a", "https://tec.openplanner.team/stops/H4ru244a"], ["https://tec.openplanner.team/stops/LhSbruc2", "https://tec.openplanner.team/stops/LhSschn1"], ["https://tec.openplanner.team/stops/LHAlacr2", "https://tec.openplanner.team/stops/LHAleru1"], ["https://tec.openplanner.team/stops/X640aib", "https://tec.openplanner.team/stops/X640aua"], ["https://tec.openplanner.team/stops/Lpeeg--1", "https://tec.openplanner.team/stops/Lpejonc2"], ["https://tec.openplanner.team/stops/LeUnisp1", "https://tec.openplanner.team/stops/LeUstad1"], ["https://tec.openplanner.team/stops/Lverdep1", "https://tec.openplanner.team/stops/Lverdep2"], ["https://tec.openplanner.team/stops/Bmelegl1", "https://tec.openplanner.team/stops/Bmelsab2"], ["https://tec.openplanner.team/stops/LWepost2", "https://tec.openplanner.team/stops/LWepost4"], ["https://tec.openplanner.team/stops/Blincal2", "https://tec.openplanner.team/stops/Blincoo1"], ["https://tec.openplanner.team/stops/N512akb", "https://tec.openplanner.team/stops/N512ala"], ["https://tec.openplanner.team/stops/N525aoa", "https://tec.openplanner.team/stops/N525ata"], ["https://tec.openplanner.team/stops/Bneelaa1", "https://tec.openplanner.team/stops/Bracgar1"], ["https://tec.openplanner.team/stops/X609aba", "https://tec.openplanner.team/stops/X609aca"], ["https://tec.openplanner.team/stops/H4or113a", "https://tec.openplanner.team/stops/H4or113b"], ["https://tec.openplanner.team/stops/H4ma401b", "https://tec.openplanner.team/stops/H4ma417b"], ["https://tec.openplanner.team/stops/N565ada", "https://tec.openplanner.team/stops/N565aea"], ["https://tec.openplanner.team/stops/Bdvmccu2", "https://tec.openplanner.team/stops/Bdvmcsa2"], ["https://tec.openplanner.team/stops/Canlemo1", "https://tec.openplanner.team/stops/Canplch2"], ["https://tec.openplanner.team/stops/LeLzost1", "https://tec.openplanner.team/stops/LnIkirc1"], ["https://tec.openplanner.team/stops/Lflroms5", "https://tec.openplanner.team/stops/Lropass1"], ["https://tec.openplanner.team/stops/X804ala", "https://tec.openplanner.team/stops/X804anb"], ["https://tec.openplanner.team/stops/Ccygara1", "https://tec.openplanner.team/stops/Cvlcalv2"], ["https://tec.openplanner.team/stops/X602arb", "https://tec.openplanner.team/stops/X653aea"], ["https://tec.openplanner.team/stops/LAMec--2", "https://tec.openplanner.team/stops/LAMmc--1"], ["https://tec.openplanner.team/stops/N308aea", "https://tec.openplanner.team/stops/N308aia"], ["https://tec.openplanner.team/stops/LPTeg--1", "https://tec.openplanner.team/stops/X794aaa"], ["https://tec.openplanner.team/stops/N531anb", "https://tec.openplanner.team/stops/N531apb"], ["https://tec.openplanner.team/stops/N109aaa", "https://tec.openplanner.team/stops/N110adb"], ["https://tec.openplanner.team/stops/N501fqd", "https://tec.openplanner.team/stops/N501mkb"], ["https://tec.openplanner.team/stops/Livvill1", "https://tec.openplanner.team/stops/LRaplac2"], ["https://tec.openplanner.team/stops/N118akb", "https://tec.openplanner.team/stops/N147afb"], ["https://tec.openplanner.team/stops/N517aaa", "https://tec.openplanner.team/stops/N517afa"], ["https://tec.openplanner.team/stops/X619aha", "https://tec.openplanner.team/stops/X619ahb"], ["https://tec.openplanner.team/stops/X879aea", "https://tec.openplanner.team/stops/X879aeb"], ["https://tec.openplanner.team/stops/H1an100a", "https://tec.openplanner.team/stops/H1au100b"], ["https://tec.openplanner.team/stops/X979aja", "https://tec.openplanner.team/stops/X979akb"], ["https://tec.openplanner.team/stops/Ccocroi2", "https://tec.openplanner.team/stops/Ctrepin1"], ["https://tec.openplanner.team/stops/Brixga12", "https://tec.openplanner.team/stops/Brixga13"], ["https://tec.openplanner.team/stops/X743ada", "https://tec.openplanner.team/stops/X743adb"], ["https://tec.openplanner.team/stops/LGeforg2", "https://tec.openplanner.team/stops/LGepeck1"], ["https://tec.openplanner.team/stops/LWbboeg1", "https://tec.openplanner.team/stops/X512abb"], ["https://tec.openplanner.team/stops/LLOcreu2", "https://tec.openplanner.team/stops/LTatult3"], ["https://tec.openplanner.team/stops/X316aaa", "https://tec.openplanner.team/stops/X317aaa"], ["https://tec.openplanner.team/stops/N519adb", "https://tec.openplanner.team/stops/N519arb"], ["https://tec.openplanner.team/stops/LFCalte2", "https://tec.openplanner.team/stops/LFCvoer2"], ["https://tec.openplanner.team/stops/LAMvert1", "https://tec.openplanner.team/stops/LOmecol2"], ["https://tec.openplanner.team/stops/H4he103b", "https://tec.openplanner.team/stops/H4he107b"], ["https://tec.openplanner.team/stops/Bronn391", "https://tec.openplanner.team/stops/Bvirfpo1"], ["https://tec.openplanner.team/stops/Bsgeegl3", "https://tec.openplanner.team/stops/Bsgevil2"], ["https://tec.openplanner.team/stops/X342ada", "https://tec.openplanner.team/stops/X345aca"], ["https://tec.openplanner.team/stops/H1bb115a", "https://tec.openplanner.team/stops/H1bb117b"], ["https://tec.openplanner.team/stops/X942aab", "https://tec.openplanner.team/stops/X942abd"], ["https://tec.openplanner.team/stops/LBRmc--4", "https://tec.openplanner.team/stops/LBRtrag1"], ["https://tec.openplanner.team/stops/H4hx121b", "https://tec.openplanner.team/stops/H4hx122a"], ["https://tec.openplanner.team/stops/Bernegl4", "https://tec.openplanner.team/stops/Berngrt1"], ["https://tec.openplanner.team/stops/X620aba", "https://tec.openplanner.team/stops/X620ahb"], ["https://tec.openplanner.team/stops/Bnivbau2", "https://tec.openplanner.team/stops/Bnivite2"], ["https://tec.openplanner.team/stops/H4la198a", "https://tec.openplanner.team/stops/H4la198b"], ["https://tec.openplanner.team/stops/LOdbuis1", "https://tec.openplanner.team/stops/LOdmonu4"], ["https://tec.openplanner.team/stops/LkEherg1", "https://tec.openplanner.team/stops/LkEherg2"], ["https://tec.openplanner.team/stops/Cchbrou1", "https://tec.openplanner.team/stops/Cchbrou2"], ["https://tec.openplanner.team/stops/H1ho122b", "https://tec.openplanner.team/stops/H1ho139a"], ["https://tec.openplanner.team/stops/Btlgbro1", "https://tec.openplanner.team/stops/Btlgbro2"], ["https://tec.openplanner.team/stops/LHNland1", "https://tec.openplanner.team/stops/LHNland2"], ["https://tec.openplanner.team/stops/LbUpost1", "https://tec.openplanner.team/stops/LbUpost2"], ["https://tec.openplanner.team/stops/Bernpon1", "https://tec.openplanner.team/stops/Bernpon2"], ["https://tec.openplanner.team/stops/N135afb", "https://tec.openplanner.team/stops/N135aja"], ["https://tec.openplanner.team/stops/Lceourt2", "https://tec.openplanner.team/stops/Lemmeha2"], ["https://tec.openplanner.team/stops/LLAeg--2", "https://tec.openplanner.team/stops/LLAvi652"], ["https://tec.openplanner.team/stops/Bgdhcsh2", "https://tec.openplanner.team/stops/Bgdhpco2"], ["https://tec.openplanner.team/stops/LSPcomm1", "https://tec.openplanner.team/stops/LSPpomp1"], ["https://tec.openplanner.team/stops/Crgegli2", "https://tec.openplanner.team/stops/Cstdona6"], ["https://tec.openplanner.team/stops/Bsamfma1", "https://tec.openplanner.team/stops/Bsamlon2"], ["https://tec.openplanner.team/stops/Bgzdcwa1", "https://tec.openplanner.team/stops/Bgzdcwa2"], ["https://tec.openplanner.team/stops/N109aia", "https://tec.openplanner.team/stops/N110adb"], ["https://tec.openplanner.team/stops/H1hn204a", "https://tec.openplanner.team/stops/H1hn209b"], ["https://tec.openplanner.team/stops/H4ta122a", "https://tec.openplanner.team/stops/H4ta131a"], ["https://tec.openplanner.team/stops/N515aea", "https://tec.openplanner.team/stops/N515aeb"], ["https://tec.openplanner.team/stops/X618afb", "https://tec.openplanner.team/stops/X618apa"], ["https://tec.openplanner.team/stops/H2ch102a", "https://tec.openplanner.team/stops/H2ch109b"], ["https://tec.openplanner.team/stops/LSTchat2", "https://tec.openplanner.team/stops/LSTrema1"], ["https://tec.openplanner.team/stops/Lvtvici1", "https://tec.openplanner.team/stops/Lvtvici2"], ["https://tec.openplanner.team/stops/H4lh118a", "https://tec.openplanner.team/stops/H4oe149b"], ["https://tec.openplanner.team/stops/N501jia", "https://tec.openplanner.team/stops/N501jpa"], ["https://tec.openplanner.team/stops/X639aeb", "https://tec.openplanner.team/stops/X640ata"], ["https://tec.openplanner.team/stops/Bblabfo2", "https://tec.openplanner.team/stops/Bblamer1"], ["https://tec.openplanner.team/stops/X636agb", "https://tec.openplanner.team/stops/X636aja"], ["https://tec.openplanner.team/stops/Csychap2", "https://tec.openplanner.team/stops/Csyplac1"], ["https://tec.openplanner.team/stops/H1ba107a", "https://tec.openplanner.team/stops/H1ba113a"], ["https://tec.openplanner.team/stops/LBvnico2", "https://tec.openplanner.team/stops/LSChane2"], ["https://tec.openplanner.team/stops/N213aca", "https://tec.openplanner.team/stops/N367ada"], ["https://tec.openplanner.team/stops/H1qy131b", "https://tec.openplanner.team/stops/H1qy132a"], ["https://tec.openplanner.team/stops/Cflmarc1", "https://tec.openplanner.team/stops/Cwgmart1"], ["https://tec.openplanner.team/stops/H1mb128b", "https://tec.openplanner.team/stops/H1mb166a"], ["https://tec.openplanner.team/stops/Lsebuis2", "https://tec.openplanner.team/stops/Lsercha1"], ["https://tec.openplanner.team/stops/LBSnouw1", "https://tec.openplanner.team/stops/LRGbett3"], ["https://tec.openplanner.team/stops/Loucham2", "https://tec.openplanner.team/stops/Lougare2"], ["https://tec.openplanner.team/stops/Cvpchat2", "https://tec.openplanner.team/stops/Cvpsthu1"], ["https://tec.openplanner.team/stops/N423afa", "https://tec.openplanner.team/stops/N423aga"], ["https://tec.openplanner.team/stops/H4be145b", "https://tec.openplanner.team/stops/H5bl117c"], ["https://tec.openplanner.team/stops/LwAschu1", "https://tec.openplanner.team/stops/LwAstum2"], ["https://tec.openplanner.team/stops/Cragill1", "https://tec.openplanner.team/stops/Cramadi1"], ["https://tec.openplanner.team/stops/X908asa", "https://tec.openplanner.team/stops/X910aab"], ["https://tec.openplanner.team/stops/LFAbouc2", "https://tec.openplanner.team/stops/LFAtomb2"], ["https://tec.openplanner.team/stops/N505aja", "https://tec.openplanner.team/stops/N505ama"], ["https://tec.openplanner.team/stops/Cmmami1", "https://tec.openplanner.team/stops/Cmmcver1"], ["https://tec.openplanner.team/stops/H5bl123a", "https://tec.openplanner.team/stops/H5qu148a"], ["https://tec.openplanner.team/stops/H5pe149a", "https://tec.openplanner.team/stops/H5pe150b"], ["https://tec.openplanner.team/stops/X808adb", "https://tec.openplanner.team/stops/X811afb"], ["https://tec.openplanner.team/stops/Llgbene1", "https://tec.openplanner.team/stops/Llgptlo3"], ["https://tec.openplanner.team/stops/X650adb", "https://tec.openplanner.team/stops/X650aea"], ["https://tec.openplanner.team/stops/Bbghcar2", "https://tec.openplanner.team/stops/Bbghgli2"], ["https://tec.openplanner.team/stops/H2pe159b", "https://tec.openplanner.team/stops/H2pe160a"], ["https://tec.openplanner.team/stops/LCFcarr2", "https://tec.openplanner.team/stops/LHaodei1"], ["https://tec.openplanner.team/stops/N548aya", "https://tec.openplanner.team/stops/N571aca"], ["https://tec.openplanner.team/stops/Bwateco2", "https://tec.openplanner.team/stops/Bwatwsc1"], ["https://tec.openplanner.team/stops/Bettars2", "https://tec.openplanner.team/stops/Bettbue2"], ["https://tec.openplanner.team/stops/Lseberg2", "https://tec.openplanner.team/stops/Lsebuil1"], ["https://tec.openplanner.team/stops/LSkwarf2", "https://tec.openplanner.team/stops/LSkwarf4"], ["https://tec.openplanner.team/stops/H3go102a", "https://tec.openplanner.team/stops/H3lr116a"], ["https://tec.openplanner.team/stops/Llgnaim1", "https://tec.openplanner.team/stops/Llgwesp1"], ["https://tec.openplanner.team/stops/Balsbeg2", "https://tec.openplanner.team/stops/Bbrlrph1"], ["https://tec.openplanner.team/stops/Lrafusi2", "https://tec.openplanner.team/stops/Lwakipe1"], ["https://tec.openplanner.team/stops/Buccdef2", "https://tec.openplanner.team/stops/Buccgob2"], ["https://tec.openplanner.team/stops/N150abb", "https://tec.openplanner.team/stops/N150acb"], ["https://tec.openplanner.team/stops/X897aob", "https://tec.openplanner.team/stops/X897aod"], ["https://tec.openplanner.team/stops/X652abb", "https://tec.openplanner.team/stops/X652acd"], ["https://tec.openplanner.team/stops/Cbfplch1", "https://tec.openplanner.team/stops/Cbfstry2"], ["https://tec.openplanner.team/stops/N207add", "https://tec.openplanner.team/stops/N209amb"], ["https://tec.openplanner.team/stops/Bmalwop2", "https://tec.openplanner.team/stops/Bmalwvi1"], ["https://tec.openplanner.team/stops/Bdvm4ca1", "https://tec.openplanner.team/stops/Bdvmtve1"], ["https://tec.openplanner.team/stops/X789aja", "https://tec.openplanner.team/stops/X789ajb"], ["https://tec.openplanner.team/stops/Bpersyn2", "https://tec.openplanner.team/stops/Btstw751"], ["https://tec.openplanner.team/stops/LTiflor1", "https://tec.openplanner.team/stops/LTiruel1"], ["https://tec.openplanner.team/stops/N560aba", "https://tec.openplanner.team/stops/N560aca"], ["https://tec.openplanner.team/stops/Lmnchal2", "https://tec.openplanner.team/stops/Lsmh3022"], ["https://tec.openplanner.team/stops/H1bb146a", "https://tec.openplanner.team/stops/H1do115a"], ["https://tec.openplanner.team/stops/Lch179-1", "https://tec.openplanner.team/stops/Lchcomm2"], ["https://tec.openplanner.team/stops/X733aeb", "https://tec.openplanner.team/stops/X733afb"], ["https://tec.openplanner.team/stops/H5rx139b", "https://tec.openplanner.team/stops/H5rx140b"], ["https://tec.openplanner.team/stops/H1ni316b", "https://tec.openplanner.team/stops/H1ni317b"], ["https://tec.openplanner.team/stops/X837aca", "https://tec.openplanner.team/stops/X837aga"], ["https://tec.openplanner.team/stops/N512agd", "https://tec.openplanner.team/stops/NL57aea"], ["https://tec.openplanner.team/stops/X725aff", "https://tec.openplanner.team/stops/X725aha"], ["https://tec.openplanner.team/stops/H4mo167a", "https://tec.openplanner.team/stops/H4mo183a"], ["https://tec.openplanner.team/stops/H1me114b", "https://tec.openplanner.team/stops/H1me118b"], ["https://tec.openplanner.team/stops/H4ty350a", "https://tec.openplanner.team/stops/H4ty358b"], ["https://tec.openplanner.team/stops/X687aba", "https://tec.openplanner.team/stops/X687aca"], ["https://tec.openplanner.team/stops/Llgfusc1", "https://tec.openplanner.team/stops/Llgfusc6"], ["https://tec.openplanner.team/stops/N509awa", "https://tec.openplanner.team/stops/N509beb"], ["https://tec.openplanner.team/stops/Lmocail2", "https://tec.openplanner.team/stops/Lmomarr3"], ["https://tec.openplanner.team/stops/LWAclos2", "https://tec.openplanner.team/stops/LWAeloi2"], ["https://tec.openplanner.team/stops/Blaneli2", "https://tec.openplanner.team/stops/Blankal4"], ["https://tec.openplanner.team/stops/Cvvpotv1", "https://tec.openplanner.team/stops/Cvvsncb1"], ["https://tec.openplanner.team/stops/X733akb", "https://tec.openplanner.team/stops/X733alb"], ["https://tec.openplanner.team/stops/Cgywaut4", "https://tec.openplanner.team/stops/CMsartc1"], ["https://tec.openplanner.team/stops/Bhmmjco1", "https://tec.openplanner.team/stops/Bleugar1"], ["https://tec.openplanner.team/stops/H5bl119d", "https://tec.openplanner.team/stops/H5qu148a"], ["https://tec.openplanner.team/stops/Cgxpair2", "https://tec.openplanner.team/stops/Cmogtri2"], ["https://tec.openplanner.team/stops/LFlabba2", "https://tec.openplanner.team/stops/LOmlime1"], ["https://tec.openplanner.team/stops/N533alf", "https://tec.openplanner.team/stops/N533ana"], ["https://tec.openplanner.team/stops/H4vd230a", "https://tec.openplanner.team/stops/H4vd230b"], ["https://tec.openplanner.team/stops/Blimbet3", "https://tec.openplanner.team/stops/Blmlcim1"], ["https://tec.openplanner.team/stops/LHYwach2", "https://tec.openplanner.team/stops/LSpcarr2"], ["https://tec.openplanner.team/stops/H1ge117a", "https://tec.openplanner.team/stops/H1ge179a"], ["https://tec.openplanner.team/stops/Cselait1", "https://tec.openplanner.team/stops/Cselait2"], ["https://tec.openplanner.team/stops/LHYec--2", "https://tec.openplanner.team/stops/LHYnoid2"], ["https://tec.openplanner.team/stops/H4ld127b", "https://tec.openplanner.team/stops/H4ld128a"], ["https://tec.openplanner.team/stops/H1cu122a", "https://tec.openplanner.team/stops/H1je212b"], ["https://tec.openplanner.team/stops/N236ada", "https://tec.openplanner.team/stops/N236aha"], ["https://tec.openplanner.team/stops/N121aaa", "https://tec.openplanner.team/stops/N121aeb"], ["https://tec.openplanner.team/stops/Btlbegl1", "https://tec.openplanner.team/stops/Btlbtbe4"], ["https://tec.openplanner.team/stops/Ljuathe2", "https://tec.openplanner.team/stops/Ljucrah2"], ["https://tec.openplanner.team/stops/N260aaa", "https://tec.openplanner.team/stops/N270afd"], ["https://tec.openplanner.team/stops/LHFec--3", "https://tec.openplanner.team/stops/LHFwaut1"], ["https://tec.openplanner.team/stops/N501fbb", "https://tec.openplanner.team/stops/N501fhb"], ["https://tec.openplanner.team/stops/Cchvil1", "https://tec.openplanner.team/stops/CMvil2"], ["https://tec.openplanner.team/stops/N571aca", "https://tec.openplanner.team/stops/N571afa"], ["https://tec.openplanner.team/stops/NL76acb", "https://tec.openplanner.team/stops/NL80aba"], ["https://tec.openplanner.team/stops/N121aca", "https://tec.openplanner.team/stops/N121aia"], ["https://tec.openplanner.team/stops/LmDkape2", "https://tec.openplanner.team/stops/LsVfeye1"], ["https://tec.openplanner.team/stops/X947acb", "https://tec.openplanner.team/stops/X948aja"], ["https://tec.openplanner.team/stops/LSlbail2", "https://tec.openplanner.team/stops/X919afa"], ["https://tec.openplanner.team/stops/LBVlamo1", "https://tec.openplanner.team/stops/LRcsilo1"], ["https://tec.openplanner.team/stops/LJAverv1", "https://tec.openplanner.team/stops/LJAverv2"], ["https://tec.openplanner.team/stops/H1be102a", "https://tec.openplanner.team/stops/H1mb125a"], ["https://tec.openplanner.team/stops/N101adc", "https://tec.openplanner.team/stops/N118aoa"], ["https://tec.openplanner.team/stops/N351aja", "https://tec.openplanner.team/stops/N351ajd"], ["https://tec.openplanner.team/stops/X801adb", "https://tec.openplanner.team/stops/X801aga"], ["https://tec.openplanner.team/stops/X685ama", "https://tec.openplanner.team/stops/X685apb"], ["https://tec.openplanner.team/stops/H1le120b", "https://tec.openplanner.team/stops/H1le121b"], ["https://tec.openplanner.team/stops/H1sp354a", "https://tec.openplanner.team/stops/H1sp357a"], ["https://tec.openplanner.team/stops/X802aga", "https://tec.openplanner.team/stops/X822ahb"], ["https://tec.openplanner.team/stops/X774aga", "https://tec.openplanner.team/stops/X775aba"], ["https://tec.openplanner.team/stops/LHUhaum3", "https://tec.openplanner.team/stops/LHUhaut1"], ["https://tec.openplanner.team/stops/Lhuecol1", "https://tec.openplanner.team/stops/Lhurouh1"], ["https://tec.openplanner.team/stops/LLrchat1", "https://tec.openplanner.team/stops/LLreque1"], ["https://tec.openplanner.team/stops/H2ha138a", "https://tec.openplanner.team/stops/H2ha142a"], ["https://tec.openplanner.team/stops/Ccucora1", "https://tec.openplanner.team/stops/Cmtproc2"], ["https://tec.openplanner.team/stops/Llgcite1", "https://tec.openplanner.team/stops/Llgnage2"], ["https://tec.openplanner.team/stops/N501gaa", "https://tec.openplanner.team/stops/N501gab"], ["https://tec.openplanner.team/stops/N577agb", "https://tec.openplanner.team/stops/N577aja"], ["https://tec.openplanner.team/stops/LaFbruc2", "https://tec.openplanner.team/stops/LrGzent2"], ["https://tec.openplanner.team/stops/Bptrcra1", "https://tec.openplanner.team/stops/Bptrpla1"], ["https://tec.openplanner.team/stops/N151ajd", "https://tec.openplanner.team/stops/N152aac"], ["https://tec.openplanner.team/stops/LBscasi1", "https://tec.openplanner.team/stops/LBsfer-1"], ["https://tec.openplanner.team/stops/N516ahb", "https://tec.openplanner.team/stops/N516aja"], ["https://tec.openplanner.team/stops/LPUalbe1", "https://tec.openplanner.team/stops/LPUlecl2"], ["https://tec.openplanner.team/stops/LSzetoi2", "https://tec.openplanner.team/stops/N506bvb"], ["https://tec.openplanner.team/stops/H4ft132a", "https://tec.openplanner.team/stops/H4ft137b"], ["https://tec.openplanner.team/stops/X725awa", "https://tec.openplanner.team/stops/X725beb"], ["https://tec.openplanner.team/stops/N229aha", "https://tec.openplanner.team/stops/N229ahb"], ["https://tec.openplanner.team/stops/Bbea3he1", "https://tec.openplanner.team/stops/Bbeaech1"], ["https://tec.openplanner.team/stops/N426ada", "https://tec.openplanner.team/stops/N426adb"], ["https://tec.openplanner.team/stops/LLNeg--1", "https://tec.openplanner.team/stops/LLNeg--2"], ["https://tec.openplanner.team/stops/Lghcise2", "https://tec.openplanner.team/stops/Lmopeup2"], ["https://tec.openplanner.team/stops/Cgogrco1", "https://tec.openplanner.team/stops/Cgogrco2"], ["https://tec.openplanner.team/stops/H1gh145b", "https://tec.openplanner.team/stops/H1gh145d"], ["https://tec.openplanner.team/stops/X766aeb", "https://tec.openplanner.team/stops/X766afa"], ["https://tec.openplanner.team/stops/Bmrsayw2", "https://tec.openplanner.team/stops/Bmrsmco1"], ["https://tec.openplanner.team/stops/LAigrim1", "https://tec.openplanner.team/stops/LAigrim2"], ["https://tec.openplanner.team/stops/NL73aba", "https://tec.openplanner.team/stops/NL73abb"], ["https://tec.openplanner.team/stops/LCelabi1", "https://tec.openplanner.team/stops/LCelabi2"], ["https://tec.openplanner.team/stops/H1em105a", "https://tec.openplanner.team/stops/H1em111d"], ["https://tec.openplanner.team/stops/Cmlbuis4", "https://tec.openplanner.team/stops/Cmlm2411"], ["https://tec.openplanner.team/stops/Bgnpchb1", "https://tec.openplanner.team/stops/Cgnquer2"], ["https://tec.openplanner.team/stops/H1bs111b", "https://tec.openplanner.team/stops/H1bs112a"], ["https://tec.openplanner.team/stops/H1je220a", "https://tec.openplanner.team/stops/H1je220c"], ["https://tec.openplanner.team/stops/X344ada", "https://tec.openplanner.team/stops/X362ada"], ["https://tec.openplanner.team/stops/N235ada", "https://tec.openplanner.team/stops/N235afa"], ["https://tec.openplanner.team/stops/N254acb", "https://tec.openplanner.team/stops/N254aea"], ["https://tec.openplanner.team/stops/H4ty346a", "https://tec.openplanner.team/stops/H4ty383b"], ["https://tec.openplanner.team/stops/NC23aba", "https://tec.openplanner.team/stops/NC23abb"], ["https://tec.openplanner.team/stops/H1ge117b", "https://tec.openplanner.team/stops/H1ge151a"], ["https://tec.openplanner.team/stops/Brixaug1", "https://tec.openplanner.team/stops/Brixaug2"], ["https://tec.openplanner.team/stops/Lbrptbr3", "https://tec.openplanner.team/stops/Llgmara1"], ["https://tec.openplanner.team/stops/Lstchu-3", "https://tec.openplanner.team/stops/Lsteduc1"], ["https://tec.openplanner.team/stops/Chhegli1", "https://tec.openplanner.team/stops/Chhegli4"], ["https://tec.openplanner.team/stops/X775aga", "https://tec.openplanner.team/stops/X775ahb"], ["https://tec.openplanner.team/stops/LCtcref1", "https://tec.openplanner.team/stops/X788aga"], ["https://tec.openplanner.team/stops/N874ama", "https://tec.openplanner.team/stops/N874amb"], ["https://tec.openplanner.team/stops/Blingar3", "https://tec.openplanner.team/stops/Blingar4"], ["https://tec.openplanner.team/stops/X617aia", "https://tec.openplanner.team/stops/X625ada"], ["https://tec.openplanner.team/stops/LHCauwe4", "https://tec.openplanner.team/stops/LHChoof4"], ["https://tec.openplanner.team/stops/N548aab", "https://tec.openplanner.team/stops/N569afb"], ["https://tec.openplanner.team/stops/X688aaa", "https://tec.openplanner.team/stops/X769arb"], ["https://tec.openplanner.team/stops/LSMeg--1", "https://tec.openplanner.team/stops/LSMeg--2"], ["https://tec.openplanner.team/stops/H4av106b", "https://tec.openplanner.team/stops/H4mb143c"], ["https://tec.openplanner.team/stops/LCPcomm1", "https://tec.openplanner.team/stops/LCPcomm2"], ["https://tec.openplanner.team/stops/N544aba", "https://tec.openplanner.team/stops/N547aeb"], ["https://tec.openplanner.team/stops/Lloauto2", "https://tec.openplanner.team/stops/Llocime1"], ["https://tec.openplanner.team/stops/X626ala", "https://tec.openplanner.team/stops/X687ada"], ["https://tec.openplanner.team/stops/N218aca", "https://tec.openplanner.team/stops/N331aea"], ["https://tec.openplanner.team/stops/X811acb", "https://tec.openplanner.team/stops/X811akb"], ["https://tec.openplanner.team/stops/Brsgm802", "https://tec.openplanner.team/stops/Bwatmch1"], ["https://tec.openplanner.team/stops/N232axa", "https://tec.openplanner.team/stops/N232axb"], ["https://tec.openplanner.team/stops/Laggare2", "https://tec.openplanner.team/stops/Lagptba2"], ["https://tec.openplanner.team/stops/H2hp118a", "https://tec.openplanner.team/stops/H2hp125b"], ["https://tec.openplanner.team/stops/LCSgend2", "https://tec.openplanner.team/stops/LSGsurf2"], ["https://tec.openplanner.team/stops/Ccucroi2", "https://tec.openplanner.team/stops/Ccutill1"], ["https://tec.openplanner.team/stops/H4ld123a", "https://tec.openplanner.team/stops/H4ld126a"], ["https://tec.openplanner.team/stops/H1hr120b", "https://tec.openplanner.team/stops/H1hr125b"], ["https://tec.openplanner.team/stops/X638aka", "https://tec.openplanner.team/stops/X638amb"], ["https://tec.openplanner.team/stops/LTIchev1", "https://tec.openplanner.team/stops/LTIptme2"], ["https://tec.openplanner.team/stops/H4wa151a", "https://tec.openplanner.team/stops/H4wa159a"], ["https://tec.openplanner.team/stops/Llgavoc1", "https://tec.openplanner.team/stops/Llgnico7"], ["https://tec.openplanner.team/stops/LOVeg--2", "https://tec.openplanner.team/stops/LWLtamb2"], ["https://tec.openplanner.team/stops/H1ha188b", "https://tec.openplanner.team/stops/H1ha195a"], ["https://tec.openplanner.team/stops/Blmldmi1", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://tec.openplanner.team/stops/X804aia", "https://tec.openplanner.team/stops/X804aib"], ["https://tec.openplanner.team/stops/N510aab", "https://tec.openplanner.team/stops/N510aba"], ["https://tec.openplanner.team/stops/H4ty285a", "https://tec.openplanner.team/stops/H4ty335b"], ["https://tec.openplanner.team/stops/LdE179-1", "https://tec.openplanner.team/stops/LdElamb2"], ["https://tec.openplanner.team/stops/N121afb", "https://tec.openplanner.team/stops/N121agb"], ["https://tec.openplanner.team/stops/Lrecomp1", "https://tec.openplanner.team/stops/Lremonu1"], ["https://tec.openplanner.team/stops/LMEwerg1", "https://tec.openplanner.team/stops/LSOfech2"], ["https://tec.openplanner.team/stops/X826aab", "https://tec.openplanner.team/stops/X831aca"], ["https://tec.openplanner.team/stops/Crcpcom2", "https://tec.openplanner.team/stops/Crcplac4"], ["https://tec.openplanner.team/stops/Cbetrie1", "https://tec.openplanner.team/stops/Ctybaco1"], ["https://tec.openplanner.team/stops/X770aba", "https://tec.openplanner.team/stops/X771aia"], ["https://tec.openplanner.team/stops/N203aaa", "https://tec.openplanner.team/stops/N203afb"], ["https://tec.openplanner.team/stops/LhGrote1", "https://tec.openplanner.team/stops/LkEschi1"], ["https://tec.openplanner.team/stops/H1no143a", "https://tec.openplanner.team/stops/H1no143b"], ["https://tec.openplanner.team/stops/LFUgare2", "https://tec.openplanner.team/stops/LHupont1"], ["https://tec.openplanner.team/stops/LkEschi1", "https://tec.openplanner.team/stops/LkEzoll2"], ["https://tec.openplanner.team/stops/Bsomtnd1", "https://tec.openplanner.team/stops/N584aka"], ["https://tec.openplanner.team/stops/LpEzoll*", "https://tec.openplanner.team/stops/LrTbahn1"], ["https://tec.openplanner.team/stops/H3so157a", "https://tec.openplanner.team/stops/H3so169b"], ["https://tec.openplanner.team/stops/X804bka", "https://tec.openplanner.team/stops/X804bwb"], ["https://tec.openplanner.team/stops/N511akb", "https://tec.openplanner.team/stops/N511ala"], ["https://tec.openplanner.team/stops/H1me117f", "https://tec.openplanner.team/stops/H1mm127b"], ["https://tec.openplanner.team/stops/N501deb", "https://tec.openplanner.team/stops/N528aka"], ["https://tec.openplanner.team/stops/H2sb242a", "https://tec.openplanner.team/stops/H2sb266b"], ["https://tec.openplanner.team/stops/Cciecol1", "https://tec.openplanner.team/stops/Ccigill2"], ["https://tec.openplanner.team/stops/N514afb", "https://tec.openplanner.team/stops/N514ajb"], ["https://tec.openplanner.team/stops/Cfaeclu1", "https://tec.openplanner.team/stops/Cfaterg3"], ["https://tec.openplanner.team/stops/LBhschu1", "https://tec.openplanner.team/stops/X793anb"], ["https://tec.openplanner.team/stops/Lseaite2", "https://tec.openplanner.team/stops/Lselimi1"], ["https://tec.openplanner.team/stops/H1ho144a", "https://tec.openplanner.team/stops/H1ho147a"], ["https://tec.openplanner.team/stops/LHe3com1", "https://tec.openplanner.team/stops/LHexhav2"], ["https://tec.openplanner.team/stops/N120amb", "https://tec.openplanner.team/stops/N120anb"], ["https://tec.openplanner.team/stops/Bgnvbsi2", "https://tec.openplanner.team/stops/Bgnvtas1"], ["https://tec.openplanner.team/stops/X809aaa", "https://tec.openplanner.team/stops/X811aab"], ["https://tec.openplanner.team/stops/LBRbriv1", "https://tec.openplanner.team/stops/LVHbrai1"], ["https://tec.openplanner.team/stops/Cchhopi1", "https://tec.openplanner.team/stops/Cchwate3"], ["https://tec.openplanner.team/stops/Lhufont2", "https://tec.openplanner.team/stops/Lsmjalh1"], ["https://tec.openplanner.team/stops/LVLgotr1", "https://tec.openplanner.team/stops/LVLgotr2"], ["https://tec.openplanner.team/stops/N562aga", "https://tec.openplanner.team/stops/N562bsa"], ["https://tec.openplanner.team/stops/H4mt220a", "https://tec.openplanner.team/stops/H4mt220b"], ["https://tec.openplanner.team/stops/LCSpoud2", "https://tec.openplanner.team/stops/LENoule1"], ["https://tec.openplanner.team/stops/H1wi152d", "https://tec.openplanner.team/stops/H1wi157c"], ["https://tec.openplanner.team/stops/Ccurtra2", "https://tec.openplanner.team/stops/Ccuseba1"], ["https://tec.openplanner.team/stops/H1fl133d", "https://tec.openplanner.team/stops/H1fl133f"], ["https://tec.openplanner.team/stops/LTPec--2", "https://tec.openplanner.team/stops/LTPsalm2"], ["https://tec.openplanner.team/stops/H1bo108b", "https://tec.openplanner.team/stops/H1bo108c"], ["https://tec.openplanner.team/stops/Ctmmonu2", "https://tec.openplanner.team/stops/Ctmwaut1"], ["https://tec.openplanner.team/stops/H1mk109a", "https://tec.openplanner.team/stops/H1mk111a"], ["https://tec.openplanner.team/stops/N521asb", "https://tec.openplanner.team/stops/N521atb"], ["https://tec.openplanner.team/stops/X758agb", "https://tec.openplanner.team/stops/X758aia"], ["https://tec.openplanner.team/stops/Blpgcmo1", "https://tec.openplanner.team/stops/Blpgcmo2"], ["https://tec.openplanner.team/stops/LBRtrag1", "https://tec.openplanner.team/stops/LLReg--2"], ["https://tec.openplanner.team/stops/X623ajb", "https://tec.openplanner.team/stops/X624alb"], ["https://tec.openplanner.team/stops/Llglimb1", "https://tec.openplanner.team/stops/Llgwild1"], ["https://tec.openplanner.team/stops/H4ty341b", "https://tec.openplanner.team/stops/H4ty356c"], ["https://tec.openplanner.team/stops/X576aba", "https://tec.openplanner.team/stops/X576ada"], ["https://tec.openplanner.team/stops/LTIpire1", "https://tec.openplanner.team/stops/LTIpire2"], ["https://tec.openplanner.team/stops/Lprcite1", "https://tec.openplanner.team/stops/Lprcite2"], ["https://tec.openplanner.team/stops/Cctpche2", "https://tec.openplanner.team/stops/NC44aea"], ["https://tec.openplanner.team/stops/N534bqb", "https://tec.openplanner.team/stops/N534bsb"], ["https://tec.openplanner.team/stops/LWNberg2", "https://tec.openplanner.team/stops/LWNcime2"], ["https://tec.openplanner.team/stops/N117aca", "https://tec.openplanner.team/stops/N117bdd"], ["https://tec.openplanner.team/stops/H1gr120a", "https://tec.openplanner.team/stops/H1mk110a"], ["https://tec.openplanner.team/stops/H4ir164b", "https://tec.openplanner.team/stops/H4og215b"], ["https://tec.openplanner.team/stops/X822aia", "https://tec.openplanner.team/stops/X836aia"], ["https://tec.openplanner.team/stops/LGLobor1", "https://tec.openplanner.team/stops/LGLspor1"], ["https://tec.openplanner.team/stops/H4by115d", "https://tec.openplanner.team/stops/H4wp152b"], ["https://tec.openplanner.team/stops/Bbonegl1", "https://tec.openplanner.team/stops/Bdvm4ca1"], ["https://tec.openplanner.team/stops/Lboeg--1", "https://tec.openplanner.team/stops/Lbosart1"], ["https://tec.openplanner.team/stops/X614aqa", "https://tec.openplanner.team/stops/X614baa"], ["https://tec.openplanner.team/stops/LGLbrus2", "https://tec.openplanner.team/stops/LSLdall1"], ["https://tec.openplanner.team/stops/N525ata", "https://tec.openplanner.team/stops/N526aca"], ["https://tec.openplanner.team/stops/N117bba", "https://tec.openplanner.team/stops/N117bbb"], ["https://tec.openplanner.team/stops/N501dbb", "https://tec.openplanner.team/stops/N533aha"], ["https://tec.openplanner.team/stops/X661aaa", "https://tec.openplanner.team/stops/X822aja"], ["https://tec.openplanner.team/stops/H4lz158a", "https://tec.openplanner.team/stops/H4lz160a"], ["https://tec.openplanner.team/stops/LmDkoel2", "https://tec.openplanner.team/stops/LmDwei32"], ["https://tec.openplanner.team/stops/X941abb", "https://tec.openplanner.team/stops/X941acd"], ["https://tec.openplanner.team/stops/LBEabba1", "https://tec.openplanner.team/stops/LBEairp1"], ["https://tec.openplanner.team/stops/LBssucr2", "https://tec.openplanner.team/stops/NL72aea"], ["https://tec.openplanner.team/stops/Bwatbce1", "https://tec.openplanner.team/stops/Bwatnrs1"], ["https://tec.openplanner.team/stops/Bmartil1", "https://tec.openplanner.team/stops/Csa4mai2"], ["https://tec.openplanner.team/stops/N519aoa", "https://tec.openplanner.team/stops/N519aob"], ["https://tec.openplanner.team/stops/Crcpcom1", "https://tec.openplanner.team/stops/NH03aga"], ["https://tec.openplanner.team/stops/X661ata", "https://tec.openplanner.team/stops/X661atb"], ["https://tec.openplanner.team/stops/Cmacart2", "https://tec.openplanner.team/stops/Cmacart3"], ["https://tec.openplanner.team/stops/H4ef164a", "https://tec.openplanner.team/stops/H4fa127a"], ["https://tec.openplanner.team/stops/N580aea", "https://tec.openplanner.team/stops/N580aeb"], ["https://tec.openplanner.team/stops/LBichat1", "https://tec.openplanner.team/stops/LHCquat1"], ["https://tec.openplanner.team/stops/X750afb", "https://tec.openplanner.team/stops/X750bga"], ["https://tec.openplanner.team/stops/X759aeb", "https://tec.openplanner.team/stops/X837acb"], ["https://tec.openplanner.team/stops/LMIterr1", "https://tec.openplanner.team/stops/LSOathe1"], ["https://tec.openplanner.team/stops/LPRcha-*", "https://tec.openplanner.team/stops/LTRferm2"], ["https://tec.openplanner.team/stops/LMomonc2", "https://tec.openplanner.team/stops/LSDvill2"], ["https://tec.openplanner.team/stops/X673aea", "https://tec.openplanner.team/stops/X673aeb"], ["https://tec.openplanner.team/stops/N543aca", "https://tec.openplanner.team/stops/N543bxb"], ["https://tec.openplanner.team/stops/Cthalli3", "https://tec.openplanner.team/stops/Cthrlef2"], ["https://tec.openplanner.team/stops/X734afa", "https://tec.openplanner.team/stops/X734ara"], ["https://tec.openplanner.team/stops/H4al100a", "https://tec.openplanner.team/stops/H4ty278b"], ["https://tec.openplanner.team/stops/Lvcfogu4", "https://tec.openplanner.team/stops/Lvcvesd*"], ["https://tec.openplanner.team/stops/X717aaa", "https://tec.openplanner.team/stops/X718abb"], ["https://tec.openplanner.team/stops/NL76apb", "https://tec.openplanner.team/stops/NL76aqb"], ["https://tec.openplanner.team/stops/LDpzol-2", "https://tec.openplanner.team/stops/LFCotte2"], ["https://tec.openplanner.team/stops/Cgy4bra2", "https://tec.openplanner.team/stops/Cgyaudu1"], ["https://tec.openplanner.team/stops/Cmtplac5", "https://tec.openplanner.team/stops/Cmtplac8"], ["https://tec.openplanner.team/stops/N548adb", "https://tec.openplanner.team/stops/N548akb"], ["https://tec.openplanner.team/stops/Cfogaul1", "https://tec.openplanner.team/stops/Cfometr2"], ["https://tec.openplanner.team/stops/X825adb", "https://tec.openplanner.team/stops/X826aea"], ["https://tec.openplanner.team/stops/H4ro155a", "https://tec.openplanner.team/stops/H5pe148b"], ["https://tec.openplanner.team/stops/N501ffa", "https://tec.openplanner.team/stops/N501hab"], ["https://tec.openplanner.team/stops/Lghgoll1", "https://tec.openplanner.team/stops/Lghprea4"], ["https://tec.openplanner.team/stops/Lrchype2", "https://tec.openplanner.team/stops/Lrcpaqu1"], ["https://tec.openplanner.team/stops/LBjpech1", "https://tec.openplanner.team/stops/X576aea"], ["https://tec.openplanner.team/stops/Bottcro2", "https://tec.openplanner.team/stops/Bottpma1"], ["https://tec.openplanner.team/stops/LMXroye1", "https://tec.openplanner.team/stops/LMXroye2"], ["https://tec.openplanner.team/stops/H4pq112a", "https://tec.openplanner.team/stops/H4pq116a"], ["https://tec.openplanner.team/stops/N211ayb", "https://tec.openplanner.team/stops/N211bcb"], ["https://tec.openplanner.team/stops/LARparc1", "https://tec.openplanner.team/stops/LRIhous1"], ["https://tec.openplanner.team/stops/X820aaa", "https://tec.openplanner.team/stops/X822aab"], ["https://tec.openplanner.team/stops/LENalun2", "https://tec.openplanner.team/stops/LENarde2"], ["https://tec.openplanner.team/stops/LeYvoge1", "https://tec.openplanner.team/stops/LeYvoge2"], ["https://tec.openplanner.team/stops/H4bo113a", "https://tec.openplanner.team/stops/H4bo115b"], ["https://tec.openplanner.team/stops/Lghferr1", "https://tec.openplanner.team/stops/Lghferr2"], ["https://tec.openplanner.team/stops/N154aaa", "https://tec.openplanner.team/stops/N154aab"], ["https://tec.openplanner.team/stops/N106akb", "https://tec.openplanner.team/stops/N106alb"], ["https://tec.openplanner.team/stops/LPbover1", "https://tec.openplanner.team/stops/LVkinst1"], ["https://tec.openplanner.team/stops/N343akb", "https://tec.openplanner.team/stops/X345aaa"], ["https://tec.openplanner.team/stops/Lghgend2", "https://tec.openplanner.team/stops/Ljerouy2"], ["https://tec.openplanner.team/stops/H1hc126a", "https://tec.openplanner.team/stops/H1hc126b"], ["https://tec.openplanner.team/stops/N349ada", "https://tec.openplanner.team/stops/N349aea"], ["https://tec.openplanner.team/stops/X721apb", "https://tec.openplanner.team/stops/X721aqb"], ["https://tec.openplanner.team/stops/X636apa", "https://tec.openplanner.team/stops/X636aqd"], ["https://tec.openplanner.team/stops/Cgpcime2", "https://tec.openplanner.team/stops/H2gy100b"], ["https://tec.openplanner.team/stops/Lmigare1", "https://tec.openplanner.team/stops/Lmirca-2"], ["https://tec.openplanner.team/stops/Cci28ju2", "https://tec.openplanner.team/stops/Cciarfr1"], ["https://tec.openplanner.team/stops/X923aia", "https://tec.openplanner.team/stops/X923aqb"], ["https://tec.openplanner.team/stops/LBhcent1", "https://tec.openplanner.team/stops/LSochal1"], ["https://tec.openplanner.team/stops/LGeforg1", "https://tec.openplanner.team/stops/LMschap1"], ["https://tec.openplanner.team/stops/LBUchpl1", "https://tec.openplanner.team/stops/NL68abb"], ["https://tec.openplanner.team/stops/LGLcour4", "https://tec.openplanner.team/stops/LTolijn*"], ["https://tec.openplanner.team/stops/H1le128b", "https://tec.openplanner.team/stops/H1le129b"], ["https://tec.openplanner.team/stops/LBahome1", "https://tec.openplanner.team/stops/LLUalou1"], ["https://tec.openplanner.team/stops/X986agb", "https://tec.openplanner.team/stops/X986aja"], ["https://tec.openplanner.team/stops/H1ch107a", "https://tec.openplanner.team/stops/H1ch107b"], ["https://tec.openplanner.team/stops/X911aka", "https://tec.openplanner.team/stops/X911alb"], ["https://tec.openplanner.team/stops/LRAgrot1", "https://tec.openplanner.team/stops/LRArami1"], ["https://tec.openplanner.team/stops/LkEgend2", "https://tec.openplanner.team/stops/LkEkirc2"], ["https://tec.openplanner.team/stops/H2na132b", "https://tec.openplanner.team/stops/H2na133b"], ["https://tec.openplanner.team/stops/H1cu122a", "https://tec.openplanner.team/stops/H1cu122b"], ["https://tec.openplanner.team/stops/X904ala", "https://tec.openplanner.team/stops/X942acb"], ["https://tec.openplanner.team/stops/X742agb", "https://tec.openplanner.team/stops/X743aab"], ["https://tec.openplanner.team/stops/Lhrlalo4", "https://tec.openplanner.team/stops/Lhrmine2"], ["https://tec.openplanner.team/stops/Cbbjfeu1", "https://tec.openplanner.team/stops/Cbblacb2"], ["https://tec.openplanner.team/stops/Llgamer3", "https://tec.openplanner.team/stops/Llgongr1"], ["https://tec.openplanner.team/stops/H1mh113a", "https://tec.openplanner.team/stops/H1mh117a"], ["https://tec.openplanner.team/stops/H4bf105a", "https://tec.openplanner.team/stops/H4bf108a"], ["https://tec.openplanner.team/stops/LHMbach1", "https://tec.openplanner.team/stops/LHMthys1"], ["https://tec.openplanner.team/stops/N505anb", "https://tec.openplanner.team/stops/N512aua"], ["https://tec.openplanner.team/stops/H4ty313a", "https://tec.openplanner.team/stops/H4ty344b"], ["https://tec.openplanner.team/stops/Lvevert2", "https://tec.openplanner.team/stops/Lvevert4"], ["https://tec.openplanner.team/stops/Bnivaig1", "https://tec.openplanner.team/stops/Bnivaig2"], ["https://tec.openplanner.team/stops/N577aba", "https://tec.openplanner.team/stops/N577acb"], ["https://tec.openplanner.team/stops/Ladclem1", "https://tec.openplanner.team/stops/Ladmoli1"], ["https://tec.openplanner.team/stops/H5pe129a", "https://tec.openplanner.team/stops/H5pe129b"], ["https://tec.openplanner.team/stops/Lagpass2", "https://tec.openplanner.team/stops/Lemjacq2"], ["https://tec.openplanner.team/stops/X650aka", "https://tec.openplanner.team/stops/X650akb"], ["https://tec.openplanner.team/stops/Cblsall1", "https://tec.openplanner.team/stops/Cblsall2"], ["https://tec.openplanner.team/stops/N220aaa", "https://tec.openplanner.team/stops/N220aab"], ["https://tec.openplanner.team/stops/H4mo151a", "https://tec.openplanner.team/stops/H4mo151b"], ["https://tec.openplanner.team/stops/N232bta", "https://tec.openplanner.team/stops/N232btb"], ["https://tec.openplanner.team/stops/N209amb", "https://tec.openplanner.team/stops/NL79aaa"], ["https://tec.openplanner.team/stops/Becepco1", "https://tec.openplanner.team/stops/H2mi123a"], ["https://tec.openplanner.team/stops/LBApak2*", "https://tec.openplanner.team/stops/LETmagn1"], ["https://tec.openplanner.team/stops/N138aha", "https://tec.openplanner.team/stops/N143ada"], ["https://tec.openplanner.team/stops/LBRgare2", "https://tec.openplanner.team/stops/LLTeg--2"], ["https://tec.openplanner.team/stops/X615aga", "https://tec.openplanner.team/stops/X615aha"], ["https://tec.openplanner.team/stops/X670anb", "https://tec.openplanner.team/stops/X670aob"], ["https://tec.openplanner.team/stops/Blingar1", "https://tec.openplanner.team/stops/Blingar4"], ["https://tec.openplanner.team/stops/Caistro1", "https://tec.openplanner.team/stops/Caistro2"], ["https://tec.openplanner.team/stops/X667aba", "https://tec.openplanner.team/stops/X667abb"], ["https://tec.openplanner.team/stops/Lhujonc2", "https://tec.openplanner.team/stops/Lhulibe2"], ["https://tec.openplanner.team/stops/N357aca", "https://tec.openplanner.team/stops/N357afa"], ["https://tec.openplanner.team/stops/Cthalli1", "https://tec.openplanner.team/stops/Cthalli2"], ["https://tec.openplanner.team/stops/X876aaa", "https://tec.openplanner.team/stops/X877adb"], ["https://tec.openplanner.team/stops/Lfhsoux1", "https://tec.openplanner.team/stops/Lfhvoye2"], ["https://tec.openplanner.team/stops/Cculgeo2", "https://tec.openplanner.team/stops/Ccuwil2"], ["https://tec.openplanner.team/stops/X725aab", "https://tec.openplanner.team/stops/X754aja"], ["https://tec.openplanner.team/stops/LESmart2", "https://tec.openplanner.team/stops/LPLhout2"], ["https://tec.openplanner.team/stops/X750abb", "https://tec.openplanner.team/stops/X750ada"], ["https://tec.openplanner.team/stops/LHUlieg2", "https://tec.openplanner.team/stops/LHUpost4"], ["https://tec.openplanner.team/stops/H1hn363a", "https://tec.openplanner.team/stops/H1hn363b"], ["https://tec.openplanner.team/stops/N506ahb", "https://tec.openplanner.team/stops/N506ara"], ["https://tec.openplanner.team/stops/N135aha", "https://tec.openplanner.team/stops/N135ata"], ["https://tec.openplanner.team/stops/LREaube2", "https://tec.openplanner.team/stops/LREsp301"], ["https://tec.openplanner.team/stops/X637alb", "https://tec.openplanner.team/stops/X637aqb"], ["https://tec.openplanner.team/stops/X658aga", "https://tec.openplanner.team/stops/X658ahb"], ["https://tec.openplanner.team/stops/X925aia", "https://tec.openplanner.team/stops/X925apa"], ["https://tec.openplanner.team/stops/H5rx121a", "https://tec.openplanner.team/stops/H5rx134a"], ["https://tec.openplanner.team/stops/Ljubonf1", "https://tec.openplanner.team/stops/Ljuhava2"], ["https://tec.openplanner.team/stops/Cmyquen1", "https://tec.openplanner.team/stops/Cmywarc2"], ["https://tec.openplanner.team/stops/Cloauln1", "https://tec.openplanner.team/stops/Cloravi2"], ["https://tec.openplanner.team/stops/H1og133a", "https://tec.openplanner.team/stops/H1og133b"], ["https://tec.openplanner.team/stops/Lgrclas1", "https://tec.openplanner.team/stops/Lgrcoll2"], ["https://tec.openplanner.team/stops/LElgerd3", "https://tec.openplanner.team/stops/LTaxhos2"], ["https://tec.openplanner.team/stops/LBlplac1", "https://tec.openplanner.team/stops/LBlplac2"], ["https://tec.openplanner.team/stops/LOewaut2", "https://tec.openplanner.team/stops/LWAbett2"], ["https://tec.openplanner.team/stops/X982aba", "https://tec.openplanner.team/stops/X982bzb"], ["https://tec.openplanner.team/stops/Bosqsam1", "https://tec.openplanner.team/stops/Bvirdco1"], ["https://tec.openplanner.team/stops/H4he106b", "https://tec.openplanner.team/stops/H4pq114a"], ["https://tec.openplanner.team/stops/X809aca", "https://tec.openplanner.team/stops/X809acb"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X745aba"], ["https://tec.openplanner.team/stops/Cgxpair1", "https://tec.openplanner.team/stops/Cgxvkho2"], ["https://tec.openplanner.team/stops/LmHbahn1", "https://tec.openplanner.team/stops/LmTgers2"], ["https://tec.openplanner.team/stops/Btlbche2", "https://tec.openplanner.team/stops/NB33aeb"], ["https://tec.openplanner.team/stops/N988aaa", "https://tec.openplanner.team/stops/X876aaa"], ["https://tec.openplanner.team/stops/LeSdorf1", "https://tec.openplanner.team/stops/LeSkreu2"], ["https://tec.openplanner.team/stops/LdUespe1", "https://tec.openplanner.team/stops/LdUespe4"], ["https://tec.openplanner.team/stops/LCPbell1", "https://tec.openplanner.team/stops/LCPone92"], ["https://tec.openplanner.team/stops/Blmlcar1", "https://tec.openplanner.team/stops/Bottpry1"], ["https://tec.openplanner.team/stops/H5fl104b", "https://tec.openplanner.team/stops/H5wo123b"], ["https://tec.openplanner.team/stops/LTHcent2", "https://tec.openplanner.team/stops/LTHroch2"], ["https://tec.openplanner.team/stops/Cdostco2", "https://tec.openplanner.team/stops/Ctufleu1"], ["https://tec.openplanner.team/stops/N204abb", "https://tec.openplanner.team/stops/N204afa"], ["https://tec.openplanner.team/stops/Bjdsjso1", "https://tec.openplanner.team/stops/Bjdssta2"], ["https://tec.openplanner.team/stops/Bquecja1", "https://tec.openplanner.team/stops/Bqueegl2"], ["https://tec.openplanner.team/stops/LRacime1", "https://tec.openplanner.team/stops/LRaplac1"], ["https://tec.openplanner.team/stops/H5rx136a", "https://tec.openplanner.team/stops/H5rx137a"], ["https://tec.openplanner.team/stops/LFIcabi1", "https://tec.openplanner.team/stops/LVvbouv2"], ["https://tec.openplanner.team/stops/LCEcent2", "https://tec.openplanner.team/stops/LCEeg--2"], ["https://tec.openplanner.team/stops/Bhlvlou2", "https://tec.openplanner.team/stops/Blpglon1"], ["https://tec.openplanner.team/stops/X811alb", "https://tec.openplanner.team/stops/X811ama"], ["https://tec.openplanner.team/stops/Lheloti1", "https://tec.openplanner.team/stops/LOUsorb1"], ["https://tec.openplanner.team/stops/LCAwals1", "https://tec.openplanner.team/stops/LWHzave1"], ["https://tec.openplanner.team/stops/Baudvdu2", "https://tec.openplanner.team/stops/Bwbfeta2"], ["https://tec.openplanner.team/stops/X604afb", "https://tec.openplanner.team/stops/X604afc"], ["https://tec.openplanner.team/stops/LBVclig1", "https://tec.openplanner.team/stops/LBVclig2"], ["https://tec.openplanner.team/stops/H5at107a", "https://tec.openplanner.team/stops/H5at107b"], ["https://tec.openplanner.team/stops/NH01aab", "https://tec.openplanner.team/stops/NH01anb"], ["https://tec.openplanner.team/stops/X629aba", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/N141aaa", "https://tec.openplanner.team/stops/N426aeb"], ["https://tec.openplanner.team/stops/X670apc", "https://tec.openplanner.team/stops/X670asb"], ["https://tec.openplanner.team/stops/LPLline2", "https://tec.openplanner.team/stops/LRRcole1"], ["https://tec.openplanner.team/stops/H1br125b", "https://tec.openplanner.team/stops/H2pe161a"], ["https://tec.openplanner.team/stops/Cmqn5911", "https://tec.openplanner.team/stops/Cmqn5912"], ["https://tec.openplanner.team/stops/N506bva", "https://tec.openplanner.team/stops/N506bvb"], ["https://tec.openplanner.team/stops/X615ata", "https://tec.openplanner.team/stops/X687aja"], ["https://tec.openplanner.team/stops/Llgrame1", "https://tec.openplanner.team/stops/Llgrame2"], ["https://tec.openplanner.team/stops/LVlleno1", "https://tec.openplanner.team/stops/LVlroua1"], ["https://tec.openplanner.team/stops/Bclgvmo1", "https://tec.openplanner.team/stops/Bnilreg2"], ["https://tec.openplanner.team/stops/Csschat1", "https://tec.openplanner.team/stops/Csscrot2"], ["https://tec.openplanner.team/stops/LHGleje1", "https://tec.openplanner.team/stops/LHGtige1"], ["https://tec.openplanner.team/stops/X760aca", "https://tec.openplanner.team/stops/X786aha"], ["https://tec.openplanner.team/stops/LNEcouc1", "https://tec.openplanner.team/stops/LNEcouc2"], ["https://tec.openplanner.team/stops/Llgfoss1", "https://tec.openplanner.team/stops/Llglonh2"], ["https://tec.openplanner.team/stops/LHAclin1", "https://tec.openplanner.team/stops/LVIsouv3"], ["https://tec.openplanner.team/stops/N118acd", "https://tec.openplanner.team/stops/N118aha"], ["https://tec.openplanner.team/stops/LHUdeni2", "https://tec.openplanner.team/stops/LHUhaum3"], ["https://tec.openplanner.team/stops/Cplrond1", "https://tec.openplanner.team/stops/Cplrymo2"], ["https://tec.openplanner.team/stops/Barcpre1", "https://tec.openplanner.team/stops/Bgzdgli1"], ["https://tec.openplanner.team/stops/Bquecar1", "https://tec.openplanner.team/stops/Bquecar2"], ["https://tec.openplanner.team/stops/Ladfran1", "https://tec.openplanner.team/stops/Lvehodi4"], ["https://tec.openplanner.team/stops/X718aca", "https://tec.openplanner.team/stops/X718afb"], ["https://tec.openplanner.team/stops/Cjuathe1", "https://tec.openplanner.team/stops/Cjucomb2"], ["https://tec.openplanner.team/stops/Boplcar2", "https://tec.openplanner.team/stops/Boplsma3"], ["https://tec.openplanner.team/stops/Ldimont2", "https://tec.openplanner.team/stops/Lprdavi1"], ["https://tec.openplanner.team/stops/Llgbago1", "https://tec.openplanner.team/stops/Llgware1"], ["https://tec.openplanner.team/stops/LAMcloc1", "https://tec.openplanner.team/stops/LAMgare2"], ["https://tec.openplanner.team/stops/LROmons2", "https://tec.openplanner.team/stops/LWabela2"], ["https://tec.openplanner.team/stops/H1bo112b", "https://tec.openplanner.team/stops/H1ho131a"], ["https://tec.openplanner.team/stops/Llgongr3", "https://tec.openplanner.team/stops/Llgsime2"], ["https://tec.openplanner.team/stops/H2sb225b", "https://tec.openplanner.team/stops/H2sb243a"], ["https://tec.openplanner.team/stops/X342aca", "https://tec.openplanner.team/stops/X342ahb"], ["https://tec.openplanner.team/stops/X898ana", "https://tec.openplanner.team/stops/X898anb"], ["https://tec.openplanner.team/stops/LrAbe961", "https://tec.openplanner.team/stops/LrAbe962"], ["https://tec.openplanner.team/stops/LSPguer2", "https://tec.openplanner.team/stops/LSPsorb2"], ["https://tec.openplanner.team/stops/H1ba117b", "https://tec.openplanner.team/stops/H1ho129a"], ["https://tec.openplanner.team/stops/X982akb", "https://tec.openplanner.team/stops/X982bob"], ["https://tec.openplanner.team/stops/X890ada", "https://tec.openplanner.team/stops/X890aga"], ["https://tec.openplanner.team/stops/Crbreve1", "https://tec.openplanner.team/stops/Cslbhau2"], ["https://tec.openplanner.team/stops/X779abb", "https://tec.openplanner.team/stops/X779afa"], ["https://tec.openplanner.team/stops/X661aja", "https://tec.openplanner.team/stops/X661bca"], ["https://tec.openplanner.team/stops/N501dja", "https://tec.openplanner.team/stops/N538aqa"], ["https://tec.openplanner.team/stops/Blhugmo1", "https://tec.openplanner.team/stops/Blhutco3"], ["https://tec.openplanner.team/stops/Lgdec--2", "https://tec.openplanner.team/stops/LWetrib2"], ["https://tec.openplanner.team/stops/H2ha132b", "https://tec.openplanner.team/stops/H2sb235a"], ["https://tec.openplanner.team/stops/N201aja", "https://tec.openplanner.team/stops/N201alb"], ["https://tec.openplanner.team/stops/X982acb", "https://tec.openplanner.team/stops/X982bta"], ["https://tec.openplanner.team/stops/Lousite2", "https://tec.openplanner.team/stops/Lousite6"], ["https://tec.openplanner.team/stops/N385aaa", "https://tec.openplanner.team/stops/N385aab"], ["https://tec.openplanner.team/stops/Cmmbmad1", "https://tec.openplanner.team/stops/Cmmcver1"], ["https://tec.openplanner.team/stops/Bmalsmc1", "https://tec.openplanner.team/stops/Bsrbtil2"], ["https://tec.openplanner.team/stops/Lhecarc1", "https://tec.openplanner.team/stops/Lhelait2"], ["https://tec.openplanner.team/stops/LHbcent2", "https://tec.openplanner.team/stops/LJAhanq4"], ["https://tec.openplanner.team/stops/Cgzlera1", "https://tec.openplanner.team/stops/Cmyvesa2"], ["https://tec.openplanner.team/stops/H4wa149b", "https://tec.openplanner.team/stops/H4wa153b"], ["https://tec.openplanner.team/stops/LDOgare1", "https://tec.openplanner.team/stops/LDOviad2"], ["https://tec.openplanner.team/stops/Cmacart3", "https://tec.openplanner.team/stops/Cmamarc1"], ["https://tec.openplanner.team/stops/Bbeagae2", "https://tec.openplanner.team/stops/Bsrgcur1"], ["https://tec.openplanner.team/stops/H1cd111d", "https://tec.openplanner.team/stops/H1hr127a"], ["https://tec.openplanner.team/stops/LNEbois2", "https://tec.openplanner.team/stops/LOLcroi1"], ["https://tec.openplanner.team/stops/LLbquar2", "https://tec.openplanner.team/stops/LLbrecu1"], ["https://tec.openplanner.team/stops/Ccicent3", "https://tec.openplanner.team/stops/Ccicent4"], ["https://tec.openplanner.team/stops/LPRfond1", "https://tec.openplanner.team/stops/LPRpeti2"], ["https://tec.openplanner.team/stops/X831ada", "https://tec.openplanner.team/stops/X831aea"], ["https://tec.openplanner.team/stops/Llgdony2", "https://tec.openplanner.team/stops/Llgjonr2"], ["https://tec.openplanner.team/stops/H1el133a", "https://tec.openplanner.team/stops/H1el140b"], ["https://tec.openplanner.team/stops/X897aca", "https://tec.openplanner.team/stops/X897acb"], ["https://tec.openplanner.team/stops/Lemjacq2", "https://tec.openplanner.team/stops/Lempass1"], ["https://tec.openplanner.team/stops/X940aba", "https://tec.openplanner.team/stops/X948awa"], ["https://tec.openplanner.team/stops/LSZheid1", "https://tec.openplanner.team/stops/LTgsous1"], ["https://tec.openplanner.team/stops/N134aca", "https://tec.openplanner.team/stops/N134acb"], ["https://tec.openplanner.team/stops/H3so158a", "https://tec.openplanner.team/stops/H3so158b"], ["https://tec.openplanner.team/stops/N538aga", "https://tec.openplanner.team/stops/N538avb"], ["https://tec.openplanner.team/stops/X826afa", "https://tec.openplanner.team/stops/X826afb"], ["https://tec.openplanner.team/stops/LCOcrom1", "https://tec.openplanner.team/stops/LCOcrom2"], ["https://tec.openplanner.team/stops/X790aka", "https://tec.openplanner.team/stops/X790ama"], ["https://tec.openplanner.team/stops/Lghgoll2", "https://tec.openplanner.team/stops/Lghlieg1"], ["https://tec.openplanner.team/stops/Boveker2", "https://tec.openplanner.team/stops/Bovesol1"], ["https://tec.openplanner.team/stops/H4tu170b", "https://tec.openplanner.team/stops/H4tu172a"], ["https://tec.openplanner.team/stops/H1gr110a", "https://tec.openplanner.team/stops/H1hr126a"], ["https://tec.openplanner.team/stops/X741aja", "https://tec.openplanner.team/stops/X741ala"], ["https://tec.openplanner.team/stops/X715aja", "https://tec.openplanner.team/stops/X715akb"], ["https://tec.openplanner.team/stops/N521arb", "https://tec.openplanner.team/stops/N521ava"], ["https://tec.openplanner.team/stops/N310ada", "https://tec.openplanner.team/stops/N310aea"], ["https://tec.openplanner.team/stops/LELeg--1", "https://tec.openplanner.team/stops/LELhard1"], ["https://tec.openplanner.team/stops/LOmmer-1", "https://tec.openplanner.team/stops/LSeaque1"], ["https://tec.openplanner.team/stops/N235aea", "https://tec.openplanner.team/stops/N241aeb"], ["https://tec.openplanner.team/stops/LrAbotz1", "https://tec.openplanner.team/stops/LrApley2"], ["https://tec.openplanner.team/stops/LOuplac2", "https://tec.openplanner.team/stops/LOuplac3"], ["https://tec.openplanner.team/stops/LThhoul1", "https://tec.openplanner.team/stops/LThhoul2"], ["https://tec.openplanner.team/stops/LBscime2", "https://tec.openplanner.team/stops/LBsfer-1"], ["https://tec.openplanner.team/stops/Bwatifr1", "https://tec.openplanner.team/stops/Bwatrdu1"], ["https://tec.openplanner.team/stops/X681ada", "https://tec.openplanner.team/stops/X681aga"], ["https://tec.openplanner.team/stops/H1wz170a", "https://tec.openplanner.team/stops/H1wz173a"], ["https://tec.openplanner.team/stops/LFMkrut2", "https://tec.openplanner.team/stops/LFPkape4"], ["https://tec.openplanner.team/stops/H4rc231b", "https://tec.openplanner.team/stops/H4rc232b"], ["https://tec.openplanner.team/stops/X653aca", "https://tec.openplanner.team/stops/X663avb"], ["https://tec.openplanner.team/stops/N270aca", "https://tec.openplanner.team/stops/N270acb"], ["https://tec.openplanner.team/stops/N562bla", "https://tec.openplanner.team/stops/N562bsa"], ["https://tec.openplanner.team/stops/N501afb", "https://tec.openplanner.team/stops/N501aga"], ["https://tec.openplanner.team/stops/Lmobols1", "https://tec.openplanner.team/stops/Lmogoff2"], ["https://tec.openplanner.team/stops/X872aga", "https://tec.openplanner.team/stops/X890afa"], ["https://tec.openplanner.team/stops/Caccarr2", "https://tec.openplanner.team/stops/Cbfchla2"], ["https://tec.openplanner.team/stops/N123aba", "https://tec.openplanner.team/stops/N123abb"], ["https://tec.openplanner.team/stops/X664aoa", "https://tec.openplanner.team/stops/X769arb"], ["https://tec.openplanner.team/stops/Bcrnnpl2", "https://tec.openplanner.team/stops/Bcrnsge1"], ["https://tec.openplanner.team/stops/LHGbeur1", "https://tec.openplanner.team/stops/LOTcloe2"], ["https://tec.openplanner.team/stops/LTBeg--1", "https://tec.openplanner.team/stops/X714abb"], ["https://tec.openplanner.team/stops/Baegd741", "https://tec.openplanner.team/stops/Bramgar1"], ["https://tec.openplanner.team/stops/H1do108a", "https://tec.openplanner.team/stops/H1do114b"], ["https://tec.openplanner.team/stops/LCAeg--2", "https://tec.openplanner.team/stops/LTGvill2"], ["https://tec.openplanner.team/stops/Btubdeh2", "https://tec.openplanner.team/stops/Btubind1"], ["https://tec.openplanner.team/stops/Ldilyce*", "https://tec.openplanner.team/stops/Lprdavi1"], ["https://tec.openplanner.team/stops/X636afa", "https://tec.openplanner.team/stops/X636afb"], ["https://tec.openplanner.team/stops/H1gh365a", "https://tec.openplanner.team/stops/H1ni319a"], ["https://tec.openplanner.team/stops/N110aga", "https://tec.openplanner.team/stops/N124aba"], ["https://tec.openplanner.team/stops/LTychev1", "https://tec.openplanner.team/stops/LTyh24-2"], ["https://tec.openplanner.team/stops/H1hn207b", "https://tec.openplanner.team/stops/H1hn363b"], ["https://tec.openplanner.team/stops/LREsp901", "https://tec.openplanner.team/stops/LREsp902"], ["https://tec.openplanner.team/stops/X910aea", "https://tec.openplanner.team/stops/X910aeb"], ["https://tec.openplanner.team/stops/H1mr123b", "https://tec.openplanner.team/stops/H1mr125a"], ["https://tec.openplanner.team/stops/LHNtill2", "https://tec.openplanner.team/stops/LHNtonn1"], ["https://tec.openplanner.team/stops/Csesabo2", "https://tec.openplanner.team/stops/N425aha"], ["https://tec.openplanner.team/stops/X626aja", "https://tec.openplanner.team/stops/X626ajb"], ["https://tec.openplanner.team/stops/N573aoa", "https://tec.openplanner.team/stops/N573aob"], ["https://tec.openplanner.team/stops/H1cu113b", "https://tec.openplanner.team/stops/H1hn206a"], ["https://tec.openplanner.team/stops/Bottath1", "https://tec.openplanner.team/stops/Bottegl4"], ["https://tec.openplanner.team/stops/Cgotech1", "https://tec.openplanner.team/stops/Cwxplac2"], ["https://tec.openplanner.team/stops/N562ama", "https://tec.openplanner.team/stops/N562ata"], ["https://tec.openplanner.team/stops/H1cu124a", "https://tec.openplanner.team/stops/H1cu129a"], ["https://tec.openplanner.team/stops/N542aqa", "https://tec.openplanner.team/stops/N542asb"], ["https://tec.openplanner.team/stops/H4bv145a", "https://tec.openplanner.team/stops/H4bv145b"], ["https://tec.openplanner.team/stops/LLSba6-2", "https://tec.openplanner.team/stops/LLYhoch2"], ["https://tec.openplanner.team/stops/Lghbonn2", "https://tec.openplanner.team/stops/Lghhoco2"], ["https://tec.openplanner.team/stops/H1et101a", "https://tec.openplanner.team/stops/H1ju120c"], ["https://tec.openplanner.team/stops/N118azb", "https://tec.openplanner.team/stops/N118baa"], ["https://tec.openplanner.team/stops/H2lc171a", "https://tec.openplanner.team/stops/H2ll200a"], ["https://tec.openplanner.team/stops/X994aba", "https://tec.openplanner.team/stops/X994afa"], ["https://tec.openplanner.team/stops/X983aea", "https://tec.openplanner.team/stops/X996aga"], ["https://tec.openplanner.team/stops/LESchac1", "https://tec.openplanner.team/stops/LESflag1"], ["https://tec.openplanner.team/stops/Laleg--2", "https://tec.openplanner.team/stops/Lanschu2"], ["https://tec.openplanner.team/stops/H1be100b", "https://tec.openplanner.team/stops/H1so137a"], ["https://tec.openplanner.team/stops/LMforba2", "https://tec.openplanner.team/stops/LMfpral2"], ["https://tec.openplanner.team/stops/Cfrchro1", "https://tec.openplanner.team/stops/Cfrptfe2"], ["https://tec.openplanner.team/stops/N520aha", "https://tec.openplanner.team/stops/N520aib"], ["https://tec.openplanner.team/stops/Llgavro2", "https://tec.openplanner.team/stops/Llgbavr1"], ["https://tec.openplanner.team/stops/X664ana", "https://tec.openplanner.team/stops/X664anb"], ["https://tec.openplanner.team/stops/LvAkirc2", "https://tec.openplanner.team/stops/LvAschr1"], ["https://tec.openplanner.team/stops/Cpcgout2", "https://tec.openplanner.team/stops/Cpcplac4"], ["https://tec.openplanner.team/stops/X643aaa", "https://tec.openplanner.team/stops/X644acb"], ["https://tec.openplanner.team/stops/N537akb", "https://tec.openplanner.team/stops/N537alb"], ["https://tec.openplanner.team/stops/X982aka", "https://tec.openplanner.team/stops/X982bzb"], ["https://tec.openplanner.team/stops/H4lz127b", "https://tec.openplanner.team/stops/H4wp150b"], ["https://tec.openplanner.team/stops/LORgend1", "https://tec.openplanner.team/stops/LORgend2"], ["https://tec.openplanner.team/stops/N338aha", "https://tec.openplanner.team/stops/N338aia"], ["https://tec.openplanner.team/stops/Lsehya-4", "https://tec.openplanner.team/stops/Lsepair1"], ["https://tec.openplanner.team/stops/LScd45-1", "https://tec.openplanner.team/stops/LSevitu4"], ["https://tec.openplanner.team/stops/Bottbou1", "https://tec.openplanner.team/stops/Bottbou2"], ["https://tec.openplanner.team/stops/H1eu102b", "https://tec.openplanner.team/stops/H1eu104a"], ["https://tec.openplanner.team/stops/LbOvith2", "https://tec.openplanner.team/stops/LnEleje2"], ["https://tec.openplanner.team/stops/X954aba", "https://tec.openplanner.team/stops/X954abb"], ["https://tec.openplanner.team/stops/LLmeg--1", "https://tec.openplanner.team/stops/LLmvict1"], ["https://tec.openplanner.team/stops/Blinbru1", "https://tec.openplanner.team/stops/Blinbru2"], ["https://tec.openplanner.team/stops/LTPnoup1", "https://tec.openplanner.team/stops/LTPpreh1"], ["https://tec.openplanner.team/stops/LVLbovy1", "https://tec.openplanner.team/stops/LVLruis1"], ["https://tec.openplanner.team/stops/X750apb", "https://tec.openplanner.team/stops/X750bdb"], ["https://tec.openplanner.team/stops/Bquebre1", "https://tec.openplanner.team/stops/Brebeau1"], ["https://tec.openplanner.team/stops/Cplstfa2", "https://tec.openplanner.team/stops/Cplstfa3"], ["https://tec.openplanner.team/stops/Bhaless1", "https://tec.openplanner.team/stops/Bhalkrk1"], ["https://tec.openplanner.team/stops/X982caa", "https://tec.openplanner.team/stops/X986aaa"], ["https://tec.openplanner.team/stops/Bjodgai1", "https://tec.openplanner.team/stops/Bjodgai2"], ["https://tec.openplanner.team/stops/N501dpa", "https://tec.openplanner.team/stops/N501era"], ["https://tec.openplanner.team/stops/X801aaa", "https://tec.openplanner.team/stops/X802aub"], ["https://tec.openplanner.team/stops/LoUpete2", "https://tec.openplanner.team/stops/LoUwelc2"], ["https://tec.openplanner.team/stops/H1mk117a", "https://tec.openplanner.team/stops/H1mk117b"], ["https://tec.openplanner.team/stops/N501bbc", "https://tec.openplanner.team/stops/N501cza"], ["https://tec.openplanner.team/stops/N527acb", "https://tec.openplanner.team/stops/N527afb"], ["https://tec.openplanner.team/stops/H4ta119b", "https://tec.openplanner.team/stops/H4ta124a"], ["https://tec.openplanner.team/stops/Cbbjfeu2", "https://tec.openplanner.team/stops/Ccabois2"], ["https://tec.openplanner.team/stops/H5qu150b", "https://tec.openplanner.team/stops/H5qu154b"], ["https://tec.openplanner.team/stops/X955aba", "https://tec.openplanner.team/stops/X955adb"], ["https://tec.openplanner.team/stops/H1mh113b", "https://tec.openplanner.team/stops/H1mh115a"], ["https://tec.openplanner.team/stops/Cfacamp4", "https://tec.openplanner.team/stops/Cfaetoi2"], ["https://tec.openplanner.team/stops/LCseg--2", "https://tec.openplanner.team/stops/LCsfize1"], ["https://tec.openplanner.team/stops/LFIeg--1", "https://tec.openplanner.team/stops/LFIeg--2"], ["https://tec.openplanner.team/stops/Blmlvex1", "https://tec.openplanner.team/stops/Blmlvex2"], ["https://tec.openplanner.team/stops/H1ms245b", "https://tec.openplanner.team/stops/H1ms260b"], ["https://tec.openplanner.team/stops/N140aab", "https://tec.openplanner.team/stops/N143aaa"], ["https://tec.openplanner.team/stops/Ccocoup1", "https://tec.openplanner.team/stops/Ccohuli1"], ["https://tec.openplanner.team/stops/N115aab", "https://tec.openplanner.team/stops/N115adb"], ["https://tec.openplanner.team/stops/Btannda2", "https://tec.openplanner.team/stops/Btanpla4"], ["https://tec.openplanner.team/stops/Lbocond2", "https://tec.openplanner.team/stops/LTIcime1"], ["https://tec.openplanner.team/stops/N538amb", "https://tec.openplanner.team/stops/N538arb"], ["https://tec.openplanner.team/stops/LVEcacq1", "https://tec.openplanner.team/stops/LVEfize1"], ["https://tec.openplanner.team/stops/LAwfans1", "https://tec.openplanner.team/stops/LXoharz6"], ["https://tec.openplanner.team/stops/LkTgutl1", "https://tec.openplanner.team/stops/LkTgutl2"], ["https://tec.openplanner.team/stops/LHuherm2", "https://tec.openplanner.team/stops/NL73adb"], ["https://tec.openplanner.team/stops/Bernpon1", "https://tec.openplanner.team/stops/Bgemrom3"], ["https://tec.openplanner.team/stops/Bquebth1", "https://tec.openplanner.team/stops/Bquecro1"], ["https://tec.openplanner.team/stops/X836ada", "https://tec.openplanner.team/stops/X836adb"], ["https://tec.openplanner.team/stops/Llgbrab2", "https://tec.openplanner.team/stops/Llgstvi2"], ["https://tec.openplanner.team/stops/X836aca", "https://tec.openplanner.team/stops/X836acb"], ["https://tec.openplanner.team/stops/Cgysole1", "https://tec.openplanner.team/stops/Cgytrie2"], ["https://tec.openplanner.team/stops/H1qu101b", "https://tec.openplanner.team/stops/H1qu103b"], ["https://tec.openplanner.team/stops/Bgerd322", "https://tec.openplanner.team/stops/Bgerprg1"], ["https://tec.openplanner.team/stops/LeIkreu1", "https://tec.openplanner.team/stops/LeIpiro3"], ["https://tec.openplanner.team/stops/H1po130a", "https://tec.openplanner.team/stops/H1po130b"], ["https://tec.openplanner.team/stops/H5at112a", "https://tec.openplanner.team/stops/H5at134b"], ["https://tec.openplanner.team/stops/Cdamare1", "https://tec.openplanner.team/stops/Cloravi1"], ["https://tec.openplanner.team/stops/Cobbusc2", "https://tec.openplanner.team/stops/Cobmara2"], ["https://tec.openplanner.team/stops/LjeGRPMB", "https://tec.openplanner.team/stops/LjeGRPME"], ["https://tec.openplanner.team/stops/N584aba", "https://tec.openplanner.team/stops/N584aca"], ["https://tec.openplanner.team/stops/Bgntalt2", "https://tec.openplanner.team/stops/Bgntalt4"], ["https://tec.openplanner.team/stops/H4ch119a", "https://tec.openplanner.team/stops/H4ty278b"], ["https://tec.openplanner.team/stops/N528ava", "https://tec.openplanner.team/stops/N542apa"], ["https://tec.openplanner.team/stops/Lmlmich2", "https://tec.openplanner.team/stops/Lmlscie1"], ["https://tec.openplanner.team/stops/H4ag101b", "https://tec.openplanner.team/stops/H4ag104a"], ["https://tec.openplanner.team/stops/Bgdhlai2", "https://tec.openplanner.team/stops/Bgdhpco1"], ["https://tec.openplanner.team/stops/Bcer4br5", "https://tec.openplanner.team/stops/Bcerldo1"], ["https://tec.openplanner.team/stops/Lprceri2", "https://tec.openplanner.team/stops/Lprpous2"], ["https://tec.openplanner.team/stops/LPoneuf2", "https://tec.openplanner.team/stops/LPoxhav2"], ["https://tec.openplanner.team/stops/LWOpier1", "https://tec.openplanner.team/stops/LWOplat2"], ["https://tec.openplanner.team/stops/LBglign1", "https://tec.openplanner.team/stops/LLbvith2"], ["https://tec.openplanner.team/stops/X783abb", "https://tec.openplanner.team/stops/X783adb"], ["https://tec.openplanner.team/stops/X767aaa", "https://tec.openplanner.team/stops/X768acb"], ["https://tec.openplanner.team/stops/Bjodsme1", "https://tec.openplanner.team/stops/Bjodsme2"], ["https://tec.openplanner.team/stops/N571aab", "https://tec.openplanner.team/stops/N571abb"], ["https://tec.openplanner.team/stops/NL76aja", "https://tec.openplanner.team/stops/NL76ajb"], ["https://tec.openplanner.team/stops/Llmbell1", "https://tec.openplanner.team/stops/Llmbell2"], ["https://tec.openplanner.team/stops/Buccmer1", "https://tec.openplanner.team/stops/Buccmer2"], ["https://tec.openplanner.team/stops/N562acb", "https://tec.openplanner.team/stops/N562ahb"], ["https://tec.openplanner.team/stops/Llglaha1", "https://tec.openplanner.team/stops/Llgoeil1"], ["https://tec.openplanner.team/stops/LHodomm1", "https://tec.openplanner.team/stops/LHolexh2"], ["https://tec.openplanner.team/stops/Ltibord1", "https://tec.openplanner.team/stops/Ltihorl2"], ["https://tec.openplanner.team/stops/H1bb121a", "https://tec.openplanner.team/stops/H1hi124b"], ["https://tec.openplanner.team/stops/Bbaltba1", "https://tec.openplanner.team/stops/Bbgnton1"], ["https://tec.openplanner.team/stops/Lpemata2", "https://tec.openplanner.team/stops/Lpeprev1"], ["https://tec.openplanner.team/stops/X941aca", "https://tec.openplanner.team/stops/X941acd"], ["https://tec.openplanner.team/stops/Llieg--2", "https://tec.openplanner.team/stops/Llithon2"], ["https://tec.openplanner.team/stops/N155aha", "https://tec.openplanner.team/stops/N155ahb"], ["https://tec.openplanner.team/stops/Clfbarr4", "https://tec.openplanner.team/stops/Clfpomm2"], ["https://tec.openplanner.team/stops/Lvcchev1", "https://tec.openplanner.team/stops/Lvcchev3"], ["https://tec.openplanner.team/stops/LXHfond1", "https://tec.openplanner.team/stops/LXHfond2"], ["https://tec.openplanner.team/stops/Cwfdame2", "https://tec.openplanner.team/stops/Cwflouv4"], ["https://tec.openplanner.team/stops/Bqueblo1", "https://tec.openplanner.team/stops/Bquecge1"], ["https://tec.openplanner.team/stops/H1ms254e", "https://tec.openplanner.team/stops/H1ms279b"], ["https://tec.openplanner.team/stops/H1au111b", "https://tec.openplanner.team/stops/H1fy118a"], ["https://tec.openplanner.team/stops/Cctpano1", "https://tec.openplanner.team/stops/Cctvche2"], ["https://tec.openplanner.team/stops/LaAburt1", "https://tec.openplanner.team/stops/LaAmise1"], ["https://tec.openplanner.team/stops/LSceg--2", "https://tec.openplanner.team/stops/LTNsarl1"], ["https://tec.openplanner.team/stops/Bmalper2", "https://tec.openplanner.team/stops/Btstcar4"], ["https://tec.openplanner.team/stops/Cchprun2", "https://tec.openplanner.team/stops/CMtirou1"], ["https://tec.openplanner.team/stops/X953ada", "https://tec.openplanner.team/stops/X954agb"], ["https://tec.openplanner.team/stops/LSEquar1", "https://tec.openplanner.team/stops/LSEvill1"], ["https://tec.openplanner.team/stops/LGogare1", "https://tec.openplanner.team/stops/LGorysa2"], ["https://tec.openplanner.team/stops/Bcbqcoi2", "https://tec.openplanner.team/stops/Bcbqp252"], ["https://tec.openplanner.team/stops/N425aha", "https://tec.openplanner.team/stops/N425ahb"], ["https://tec.openplanner.team/stops/H1cu132a", "https://tec.openplanner.team/stops/H1je218b"], ["https://tec.openplanner.team/stops/H1bo103b", "https://tec.openplanner.team/stops/H1sg146b"], ["https://tec.openplanner.team/stops/H4ea129b", "https://tec.openplanner.team/stops/H4ea130b"], ["https://tec.openplanner.team/stops/N501aca", "https://tec.openplanner.team/stops/N503aca"], ["https://tec.openplanner.team/stops/Llgbrab1", "https://tec.openplanner.team/stops/Llgnati2"], ["https://tec.openplanner.team/stops/H4rc232c", "https://tec.openplanner.team/stops/H4rc232d"], ["https://tec.openplanner.team/stops/N562ata", "https://tec.openplanner.team/stops/N562bsa"], ["https://tec.openplanner.team/stops/H2ll180a", "https://tec.openplanner.team/stops/H2ll258a"], ["https://tec.openplanner.team/stops/X626aea", "https://tec.openplanner.team/stops/X626afa"], ["https://tec.openplanner.team/stops/LVthest1", "https://tec.openplanner.team/stops/LVtvalu2"], ["https://tec.openplanner.team/stops/LhObull1", "https://tec.openplanner.team/stops/LhPheps2"], ["https://tec.openplanner.team/stops/X764afb", "https://tec.openplanner.team/stops/X769arb"], ["https://tec.openplanner.team/stops/H4ae101b", "https://tec.openplanner.team/stops/H4ef113d"], ["https://tec.openplanner.team/stops/N308afb", "https://tec.openplanner.team/stops/N308asa"], ["https://tec.openplanner.team/stops/Cfrgivr2", "https://tec.openplanner.team/stops/Cfrsour1"], ["https://tec.openplanner.team/stops/X636afb", "https://tec.openplanner.team/stops/X636baa"], ["https://tec.openplanner.team/stops/Bnivaba1", "https://tec.openplanner.team/stops/Bnivpve2"], ["https://tec.openplanner.team/stops/LELchap2", "https://tec.openplanner.team/stops/LHChaut5"], ["https://tec.openplanner.team/stops/H4mb139a", "https://tec.openplanner.team/stops/H4mb140a"], ["https://tec.openplanner.team/stops/LHUpost2", "https://tec.openplanner.team/stops/LHUpost4"], ["https://tec.openplanner.team/stops/X820agb", "https://tec.openplanner.team/stops/X820ahb"], ["https://tec.openplanner.team/stops/LbUjost2", "https://tec.openplanner.team/stops/LhUdenk2"], ["https://tec.openplanner.team/stops/X733aeb", "https://tec.openplanner.team/stops/X734apb"], ["https://tec.openplanner.team/stops/LOUbarr2", "https://tec.openplanner.team/stops/Lvitour2"], ["https://tec.openplanner.team/stops/X822aba", "https://tec.openplanner.team/stops/X822apa"], ["https://tec.openplanner.team/stops/Llgabat2", "https://tec.openplanner.team/stops/Llgmare5"], ["https://tec.openplanner.team/stops/H1sg144b", "https://tec.openplanner.team/stops/H1te175a"], ["https://tec.openplanner.team/stops/N211aia", "https://tec.openplanner.team/stops/N211ala"], ["https://tec.openplanner.team/stops/Cmlphai1", "https://tec.openplanner.team/stops/Cmlphai2"], ["https://tec.openplanner.team/stops/X756aca", "https://tec.openplanner.team/stops/X756acb"], ["https://tec.openplanner.team/stops/H2mi125a", "https://tec.openplanner.team/stops/H2mi125b"], ["https://tec.openplanner.team/stops/N506aba", "https://tec.openplanner.team/stops/N506abb"], ["https://tec.openplanner.team/stops/Causart2", "https://tec.openplanner.team/stops/N543avh"], ["https://tec.openplanner.team/stops/N514aab", "https://tec.openplanner.team/stops/N514anb"], ["https://tec.openplanner.team/stops/H1bl101a", "https://tec.openplanner.team/stops/H1bl102a"], ["https://tec.openplanner.team/stops/NR27aaa", "https://tec.openplanner.team/stops/NR27aab"], ["https://tec.openplanner.team/stops/LMNgend2", "https://tec.openplanner.team/stops/LMNpann2"], ["https://tec.openplanner.team/stops/LaAgold2", "https://tec.openplanner.team/stops/LaAzwei2"], ["https://tec.openplanner.team/stops/N104aca", "https://tec.openplanner.team/stops/N104aea"], ["https://tec.openplanner.team/stops/H4wa155a", "https://tec.openplanner.team/stops/H4wa156a"], ["https://tec.openplanner.team/stops/Lcacasi1", "https://tec.openplanner.team/stops/Lcapisc2"], ["https://tec.openplanner.team/stops/Croball2", "https://tec.openplanner.team/stops/Crorpai2"], ["https://tec.openplanner.team/stops/Llojeme2", "https://tec.openplanner.team/stops/Llojeme3"], ["https://tec.openplanner.team/stops/Lsekubo2", "https://tec.openplanner.team/stops/Lsemara1"], ["https://tec.openplanner.team/stops/H1bb146b", "https://tec.openplanner.team/stops/H1do120a"], ["https://tec.openplanner.team/stops/H5rx125b", "https://tec.openplanner.team/stops/H5rx146a"], ["https://tec.openplanner.team/stops/H1nm139a", "https://tec.openplanner.team/stops/H1nm140b"], ["https://tec.openplanner.team/stops/Bosqcar1", "https://tec.openplanner.team/stops/Btubpir1"], ["https://tec.openplanner.team/stops/N101aba", "https://tec.openplanner.team/stops/N118aoa"], ["https://tec.openplanner.team/stops/N383afa", "https://tec.openplanner.team/stops/N874amc"], ["https://tec.openplanner.team/stops/Cmiegli2", "https://tec.openplanner.team/stops/Cmivert1"], ["https://tec.openplanner.team/stops/Bjodpvi2", "https://tec.openplanner.team/stops/Bjodsje2"], ["https://tec.openplanner.team/stops/Bvilcoq2", "https://tec.openplanner.team/stops/Bvilpar2"], ["https://tec.openplanner.team/stops/Csebasc2", "https://tec.openplanner.team/stops/Cselibe1"], ["https://tec.openplanner.team/stops/LaAkapi1", "https://tec.openplanner.team/stops/LaAlinz1"], ["https://tec.openplanner.team/stops/LREelse2", "https://tec.openplanner.team/stops/LREgar-2"], ["https://tec.openplanner.team/stops/LChxhav1", "https://tec.openplanner.team/stops/LJA65h-1"], ["https://tec.openplanner.team/stops/NL77aba", "https://tec.openplanner.team/stops/NL77abb"], ["https://tec.openplanner.team/stops/H4ea131a", "https://tec.openplanner.team/stops/H4tp145a"], ["https://tec.openplanner.team/stops/X670aqa", "https://tec.openplanner.team/stops/X670asb"], ["https://tec.openplanner.team/stops/N309aca", "https://tec.openplanner.team/stops/N343alb"], ["https://tec.openplanner.team/stops/N543aea", "https://tec.openplanner.team/stops/N543ara"], ["https://tec.openplanner.team/stops/LbTathe2", "https://tec.openplanner.team/stops/LbTkreu4"], ["https://tec.openplanner.team/stops/N204aha", "https://tec.openplanner.team/stops/N204ahb"], ["https://tec.openplanner.team/stops/LAWbrou1", "https://tec.openplanner.team/stops/LBIbois2"], ["https://tec.openplanner.team/stops/N562alc", "https://tec.openplanner.team/stops/N562bwa"], ["https://tec.openplanner.team/stops/H1ob335c", "https://tec.openplanner.team/stops/H1ob341a"], ["https://tec.openplanner.team/stops/LVEmohi1", "https://tec.openplanner.team/stops/LVEtomb1"], ["https://tec.openplanner.team/stops/LSBdelc2", "https://tec.openplanner.team/stops/LSktinc1"], ["https://tec.openplanner.team/stops/Cgrchfe1", "https://tec.openplanner.team/stops/Clvimtr3"], ["https://tec.openplanner.team/stops/LrDhind1", "https://tec.openplanner.team/stops/LrDhind2"], ["https://tec.openplanner.team/stops/N111abb", "https://tec.openplanner.team/stops/N111ada"], ["https://tec.openplanner.team/stops/H4mo136a", "https://tec.openplanner.team/stops/H4mo154a"], ["https://tec.openplanner.team/stops/LmYkirc2", "https://tec.openplanner.team/stops/LvA12--4"], ["https://tec.openplanner.team/stops/X771aca", "https://tec.openplanner.team/stops/X771aeb"], ["https://tec.openplanner.team/stops/LNEgare*", "https://tec.openplanner.team/stops/LNEvpn-2"], ["https://tec.openplanner.team/stops/LJU493-1", "https://tec.openplanner.team/stops/LXhcite1"], ["https://tec.openplanner.team/stops/X758ada", "https://tec.openplanner.team/stops/X758adb"], ["https://tec.openplanner.team/stops/X750asb", "https://tec.openplanner.team/stops/X750bab"], ["https://tec.openplanner.team/stops/H4lp122b", "https://tec.openplanner.team/stops/H4lp125b"], ["https://tec.openplanner.team/stops/Bbgerlr1", "https://tec.openplanner.team/stops/Blmlcle1"], ["https://tec.openplanner.team/stops/X801abc", "https://tec.openplanner.team/stops/X801acb"], ["https://tec.openplanner.team/stops/H3so153a", "https://tec.openplanner.team/stops/H3so169b"], ["https://tec.openplanner.team/stops/X741alb", "https://tec.openplanner.team/stops/X840aeb"], ["https://tec.openplanner.team/stops/Bwavdel1", "https://tec.openplanner.team/stops/Bwavfbe1"], ["https://tec.openplanner.team/stops/LXhjupr3", "https://tec.openplanner.team/stops/LXhnouv2"], ["https://tec.openplanner.team/stops/LMNeg--1", "https://tec.openplanner.team/stops/LMNeg--2"], ["https://tec.openplanner.team/stops/Cmlchan2", "https://tec.openplanner.team/stops/Cmlvxmo2"], ["https://tec.openplanner.team/stops/LAicarr2", "https://tec.openplanner.team/stops/LAivill1"], ["https://tec.openplanner.team/stops/H1ne141b", "https://tec.openplanner.team/stops/H1ne145a"], ["https://tec.openplanner.team/stops/Lheente1", "https://tec.openplanner.team/stops/Lheente2"], ["https://tec.openplanner.team/stops/Cctbinc2", "https://tec.openplanner.team/stops/NC11amb"], ["https://tec.openplanner.team/stops/N501baa", "https://tec.openplanner.team/stops/N501bab"], ["https://tec.openplanner.team/stops/X740aca", "https://tec.openplanner.team/stops/X740adb"], ["https://tec.openplanner.team/stops/H2sb231a", "https://tec.openplanner.team/stops/H2sb231d"], ["https://tec.openplanner.team/stops/Lbralbe1", "https://tec.openplanner.team/stops/Lbrquai1"], ["https://tec.openplanner.team/stops/Cmldupu1", "https://tec.openplanner.team/stops/Cmlrang1"], ["https://tec.openplanner.team/stops/H1mr124b", "https://tec.openplanner.team/stops/H1on128b"], ["https://tec.openplanner.team/stops/N308apb", "https://tec.openplanner.team/stops/N331agb"], ["https://tec.openplanner.team/stops/H4mo133a", "https://tec.openplanner.team/stops/H4mo181b"], ["https://tec.openplanner.team/stops/H1pa105a", "https://tec.openplanner.team/stops/H1pa110b"], ["https://tec.openplanner.team/stops/X674aaa", "https://tec.openplanner.team/stops/X820agb"], ["https://tec.openplanner.team/stops/H4mo158b", "https://tec.openplanner.team/stops/H4mo169a"], ["https://tec.openplanner.team/stops/X850aeb", "https://tec.openplanner.team/stops/X850alb"], ["https://tec.openplanner.team/stops/Ccodubo2", "https://tec.openplanner.team/stops/Cpcchau"], ["https://tec.openplanner.team/stops/X804akb", "https://tec.openplanner.team/stops/X804bwb"], ["https://tec.openplanner.team/stops/LSZarbe2", "https://tec.openplanner.team/stops/LTgbalm1"], ["https://tec.openplanner.team/stops/LSCc39-1", "https://tec.openplanner.team/stops/LSCchap1"], ["https://tec.openplanner.team/stops/H4ty326a", "https://tec.openplanner.team/stops/H4vx361b"], ["https://tec.openplanner.team/stops/N551aha", "https://tec.openplanner.team/stops/N551arb"], ["https://tec.openplanner.team/stops/LpEbins1", "https://tec.openplanner.team/stops/LtEnatu1"], ["https://tec.openplanner.team/stops/N541ada", "https://tec.openplanner.team/stops/N541adb"], ["https://tec.openplanner.team/stops/Bbghgli1", "https://tec.openplanner.team/stops/Bbghgli2"], ["https://tec.openplanner.team/stops/LsVmolk1", "https://tec.openplanner.team/stops/LsVmolk2"], ["https://tec.openplanner.team/stops/Cchplan1", "https://tec.openplanner.team/stops/CMlpla2"], ["https://tec.openplanner.team/stops/LHHtill1", "https://tec.openplanner.team/stops/LSG111-2"], ["https://tec.openplanner.team/stops/X718aab", "https://tec.openplanner.team/stops/X718abb"], ["https://tec.openplanner.team/stops/N573ama", "https://tec.openplanner.team/stops/N573aoa"], ["https://tec.openplanner.team/stops/H4ag102b", "https://tec.openplanner.team/stops/H4ag104b"], ["https://tec.openplanner.team/stops/N531aca", "https://tec.openplanner.team/stops/N531ada"], ["https://tec.openplanner.team/stops/LNCgene1", "https://tec.openplanner.team/stops/LNClila1"], ["https://tec.openplanner.team/stops/H1br124a", "https://tec.openplanner.team/stops/H1br124b"], ["https://tec.openplanner.team/stops/Bkrabhu2", "https://tec.openplanner.team/stops/Bovevnd1"], ["https://tec.openplanner.team/stops/LGeduc-2", "https://tec.openplanner.team/stops/LGeschr2"], ["https://tec.openplanner.team/stops/NL76ana", "https://tec.openplanner.team/stops/NL76aoa"], ["https://tec.openplanner.team/stops/N531acb", "https://tec.openplanner.team/stops/N531akb"], ["https://tec.openplanner.team/stops/Lbofrai1", "https://tec.openplanner.team/stops/Lbopote1"], ["https://tec.openplanner.team/stops/H4te258a", "https://tec.openplanner.team/stops/H4te259b"], ["https://tec.openplanner.team/stops/H1by104b", "https://tec.openplanner.team/stops/H1sy137a"], ["https://tec.openplanner.team/stops/LHUaron1", "https://tec.openplanner.team/stops/LHUecte1"], ["https://tec.openplanner.team/stops/N551apa", "https://tec.openplanner.team/stops/N551aqb"], ["https://tec.openplanner.team/stops/Lcealig1", "https://tec.openplanner.team/stops/Lceavia2"], ["https://tec.openplanner.team/stops/Ccyfede2", "https://tec.openplanner.team/stops/Crbhurt1"], ["https://tec.openplanner.team/stops/Ccupres1", "https://tec.openplanner.team/stops/Ccutill3"], ["https://tec.openplanner.team/stops/H1fl140b", "https://tec.openplanner.team/stops/H1je368a"], ["https://tec.openplanner.team/stops/H4an104a", "https://tec.openplanner.team/stops/H4cr110a"], ["https://tec.openplanner.team/stops/LMHeg--2", "https://tec.openplanner.team/stops/LMHplac1"], ["https://tec.openplanner.team/stops/X601bha", "https://tec.openplanner.team/stops/X601bhb"], ["https://tec.openplanner.team/stops/Cfaamio4", "https://tec.openplanner.team/stops/Cfaplma2"], ["https://tec.openplanner.team/stops/Csygare2", "https://tec.openplanner.team/stops/Csygare4"], ["https://tec.openplanner.team/stops/Lrcchar1", "https://tec.openplanner.team/stops/Lrccomm1"], ["https://tec.openplanner.team/stops/N507ada", "https://tec.openplanner.team/stops/NL30aka"], ["https://tec.openplanner.team/stops/Bnivbng1", "https://tec.openplanner.team/stops/Bnivbos1"], ["https://tec.openplanner.team/stops/X911afb", "https://tec.openplanner.team/stops/X911asa"], ["https://tec.openplanner.team/stops/LNIec--2", "https://tec.openplanner.team/stops/LSZjona2"], ["https://tec.openplanner.team/stops/Cgzlera2", "https://tec.openplanner.team/stops/Cgzrust1"], ["https://tec.openplanner.team/stops/H1ms299a", "https://tec.openplanner.team/stops/H1ms314a"], ["https://tec.openplanner.team/stops/N543bda", "https://tec.openplanner.team/stops/N566aeb"], ["https://tec.openplanner.team/stops/H3so167a", "https://tec.openplanner.team/stops/H3so173a"], ["https://tec.openplanner.team/stops/Cflcarr1", "https://tec.openplanner.team/stops/Cflchel4"], ["https://tec.openplanner.team/stops/Lbrfune*", "https://tec.openplanner.team/stops/Lgrfrai1"], ["https://tec.openplanner.team/stops/X364aaa", "https://tec.openplanner.team/stops/X371aia"], ["https://tec.openplanner.team/stops/N506anb", "https://tec.openplanner.team/stops/N537ala"], ["https://tec.openplanner.team/stops/Cgrgend1", "https://tec.openplanner.team/stops/NC14aob"], ["https://tec.openplanner.team/stops/N134aab", "https://tec.openplanner.team/stops/N135azb"], ["https://tec.openplanner.team/stops/H1ms247a", "https://tec.openplanner.team/stops/H1ms936a"], ["https://tec.openplanner.team/stops/X610adb", "https://tec.openplanner.team/stops/X610ahb"], ["https://tec.openplanner.team/stops/X907aba", "https://tec.openplanner.team/stops/X907ajb"], ["https://tec.openplanner.team/stops/Ljujaur2", "https://tec.openplanner.team/stops/Ljuplpr1"], ["https://tec.openplanner.team/stops/Lstchim1", "https://tec.openplanner.team/stops/Lstphys1"], ["https://tec.openplanner.team/stops/Btslegl1", "https://tec.openplanner.team/stops/Btsllbv2"], ["https://tec.openplanner.team/stops/X639aqb", "https://tec.openplanner.team/stops/X639aub"], ["https://tec.openplanner.team/stops/X901arb", "https://tec.openplanner.team/stops/X901bia"], ["https://tec.openplanner.team/stops/LCxbeau2", "https://tec.openplanner.team/stops/LCxwarr2"], ["https://tec.openplanner.team/stops/Cgofert2", "https://tec.openplanner.team/stops/Cgorosa3"], ["https://tec.openplanner.team/stops/LBSneuv2", "https://tec.openplanner.team/stops/LHScite1"], ["https://tec.openplanner.team/stops/LmObahn*", "https://tec.openplanner.team/stops/LmOkape2"], ["https://tec.openplanner.team/stops/N244aeb", "https://tec.openplanner.team/stops/N248aab"], ["https://tec.openplanner.team/stops/N501gma", "https://tec.openplanner.team/stops/N501iza"], ["https://tec.openplanner.team/stops/X725aqa", "https://tec.openplanner.team/stops/X725arb"], ["https://tec.openplanner.team/stops/N113aba", "https://tec.openplanner.team/stops/N127aeb"], ["https://tec.openplanner.team/stops/Laltrap2", "https://tec.openplanner.team/stops/Llabrou1"], ["https://tec.openplanner.team/stops/Clfmonu3", "https://tec.openplanner.team/stops/Clftour1"], ["https://tec.openplanner.team/stops/X793aha", "https://tec.openplanner.team/stops/X793aib"], ["https://tec.openplanner.team/stops/X896aaa", "https://tec.openplanner.team/stops/X896aba"], ["https://tec.openplanner.team/stops/X986aea", "https://tec.openplanner.team/stops/X986ata"], ["https://tec.openplanner.team/stops/X763aeb", "https://tec.openplanner.team/stops/X765agb"], ["https://tec.openplanner.team/stops/X624acb", "https://tec.openplanner.team/stops/X624ada"], ["https://tec.openplanner.team/stops/Livcoll1", "https://tec.openplanner.team/stops/Livcoll2"], ["https://tec.openplanner.team/stops/X760agb", "https://tec.openplanner.team/stops/X788aea"], ["https://tec.openplanner.team/stops/LDoeg--1", "https://tec.openplanner.team/stops/LHFcaqu1"], ["https://tec.openplanner.team/stops/LHAcite2", "https://tec.openplanner.team/stops/LHAprei1"], ["https://tec.openplanner.team/stops/LeLbutg1", "https://tec.openplanner.team/stops/LeLdorf2"], ["https://tec.openplanner.team/stops/X912aea", "https://tec.openplanner.team/stops/X912afb"], ["https://tec.openplanner.team/stops/LBIhann1", "https://tec.openplanner.team/stops/LBIvill1"], ["https://tec.openplanner.team/stops/LESecco1", "https://tec.openplanner.team/stops/LESecco2"], ["https://tec.openplanner.team/stops/X669afb", "https://tec.openplanner.team/stops/X669agd"], ["https://tec.openplanner.team/stops/LBThaut2", "https://tec.openplanner.team/stops/Lprmana4"], ["https://tec.openplanner.team/stops/H1wi147a", "https://tec.openplanner.team/stops/H1wi153b"], ["https://tec.openplanner.team/stops/H1ma237a", "https://tec.openplanner.team/stops/H1ma237b"], ["https://tec.openplanner.team/stops/Lrogene1", "https://tec.openplanner.team/stops/Lrogene2"], ["https://tec.openplanner.team/stops/LBNpleg2", "https://tec.openplanner.team/stops/LBNplei2"], ["https://tec.openplanner.team/stops/H5is168a", "https://tec.openplanner.team/stops/H5is168b"], ["https://tec.openplanner.team/stops/Cpcegli1", "https://tec.openplanner.team/stops/Cpcegli2"], ["https://tec.openplanner.team/stops/Cmitrie1", "https://tec.openplanner.team/stops/Cselait1"], ["https://tec.openplanner.team/stops/Crbreve1", "https://tec.openplanner.team/stops/Crclorc2"], ["https://tec.openplanner.team/stops/LVBchau1", "https://tec.openplanner.team/stops/LVBmonu4"], ["https://tec.openplanner.team/stops/Cpcarse2", "https://tec.openplanner.team/stops/Cpctrau2"], ["https://tec.openplanner.team/stops/LTiespe1", "https://tec.openplanner.team/stops/LTiruel2"], ["https://tec.openplanner.team/stops/N539aya", "https://tec.openplanner.team/stops/N564aca"], ["https://tec.openplanner.team/stops/LHFappe4", "https://tec.openplanner.team/stops/LHFhard1"], ["https://tec.openplanner.team/stops/X653aab", "https://tec.openplanner.team/stops/X653aeb"], ["https://tec.openplanner.team/stops/Bjancha1", "https://tec.openplanner.team/stops/Bjanegl1"], ["https://tec.openplanner.team/stops/Cgymast1", "https://tec.openplanner.team/stops/Cgyrrep2"], ["https://tec.openplanner.team/stops/H2mg142a", "https://tec.openplanner.team/stops/H2mg142b"], ["https://tec.openplanner.team/stops/LBLwaid2", "https://tec.openplanner.team/stops/LTrchar2"], ["https://tec.openplanner.team/stops/Ljeegli3", "https://tec.openplanner.team/stops/Ljejoli2"], ["https://tec.openplanner.team/stops/Cfaecmo1", "https://tec.openplanner.team/stops/Cfapiro1"], ["https://tec.openplanner.team/stops/X618alb", "https://tec.openplanner.team/stops/X619amb"], ["https://tec.openplanner.team/stops/LhRkirc2", "https://tec.openplanner.team/stops/LhRwere2"], ["https://tec.openplanner.team/stops/N584axb", "https://tec.openplanner.team/stops/N584ayb"], ["https://tec.openplanner.team/stops/LoDscha1", "https://tec.openplanner.team/stops/LtHkreu4"], ["https://tec.openplanner.team/stops/LESoneu3", "https://tec.openplanner.team/stops/LESoneu4"], ["https://tec.openplanner.team/stops/LHVgoro2", "https://tec.openplanner.team/stops/Lsmh3021"], ["https://tec.openplanner.team/stops/Cbfdufa2", "https://tec.openplanner.team/stops/Cbfplch2"], ["https://tec.openplanner.team/stops/H4fr143b", "https://tec.openplanner.team/stops/H4rc231c"], ["https://tec.openplanner.team/stops/X601cua", "https://tec.openplanner.team/stops/X601cub"], ["https://tec.openplanner.team/stops/X922aga", "https://tec.openplanner.team/stops/X922akb"], ["https://tec.openplanner.team/stops/LSGmall1", "https://tec.openplanner.team/stops/LSkoran1"], ["https://tec.openplanner.team/stops/X806aga", "https://tec.openplanner.team/stops/X873acb"], ["https://tec.openplanner.team/stops/Cmgarsi1", "https://tec.openplanner.team/stops/Cmgpla1"], ["https://tec.openplanner.team/stops/LSNretr1", "https://tec.openplanner.team/stops/LSNretr2"], ["https://tec.openplanner.team/stops/N201anb", "https://tec.openplanner.team/stops/N201aoa"], ["https://tec.openplanner.team/stops/X610aab", "https://tec.openplanner.team/stops/X610ahb"], ["https://tec.openplanner.team/stops/H4ty297a", "https://tec.openplanner.team/stops/H4ty314a"], ["https://tec.openplanner.team/stops/H4bo112b", "https://tec.openplanner.team/stops/H4hu120a"], ["https://tec.openplanner.team/stops/LdUkreu3", "https://tec.openplanner.team/stops/LeSdorf1"], ["https://tec.openplanner.team/stops/X604aea", "https://tec.openplanner.team/stops/X604aeb"], ["https://tec.openplanner.team/stops/N540apa", "https://tec.openplanner.team/stops/N540aqa"], ["https://tec.openplanner.team/stops/Bbgever1", "https://tec.openplanner.team/stops/Blmlvex2"], ["https://tec.openplanner.team/stops/H1ol137a", "https://tec.openplanner.team/stops/H5is168a"], ["https://tec.openplanner.team/stops/N313aca", "https://tec.openplanner.team/stops/N313aea"], ["https://tec.openplanner.team/stops/H1ms273a", "https://tec.openplanner.team/stops/H1ms913a"], ["https://tec.openplanner.team/stops/N552aca", "https://tec.openplanner.team/stops/N552ada"], ["https://tec.openplanner.team/stops/H4co109b", "https://tec.openplanner.team/stops/H4co142a"], ["https://tec.openplanner.team/stops/X879adb", "https://tec.openplanner.team/stops/X879afa"], ["https://tec.openplanner.team/stops/N539ata", "https://tec.openplanner.team/stops/N539beb"], ["https://tec.openplanner.team/stops/Bgrmpco1", "https://tec.openplanner.team/stops/Bgrmver1"], ["https://tec.openplanner.team/stops/X658abb", "https://tec.openplanner.team/stops/X671aeb"], ["https://tec.openplanner.team/stops/LhGgeme1", "https://tec.openplanner.team/stops/LhGkirc6"], ["https://tec.openplanner.team/stops/H1gr122a", "https://tec.openplanner.team/stops/H1sy140b"], ["https://tec.openplanner.team/stops/Bettgar1", "https://tec.openplanner.team/stops/Bixepla2"], ["https://tec.openplanner.team/stops/LTRgare0", "https://tec.openplanner.team/stops/LTRgare1"], ["https://tec.openplanner.team/stops/Lmndari2", "https://tec.openplanner.team/stops/Lsmnico2"], ["https://tec.openplanner.team/stops/N501ira", "https://tec.openplanner.team/stops/N501jcb"], ["https://tec.openplanner.team/stops/LBUchpl1", "https://tec.openplanner.team/stops/LBUmara3"], ["https://tec.openplanner.team/stops/H4ha168a", "https://tec.openplanner.team/stops/H4ha171b"], ["https://tec.openplanner.team/stops/X725aha", "https://tec.openplanner.team/stops/X725bcb"], ["https://tec.openplanner.team/stops/LAWgill1", "https://tec.openplanner.team/stops/LBIpost1"], ["https://tec.openplanner.team/stops/LmS11--2", "https://tec.openplanner.team/stops/LmSkape2"], ["https://tec.openplanner.team/stops/Lmopast1", "https://tec.openplanner.team/stops/Lmopave2"], ["https://tec.openplanner.team/stops/X599aga", "https://tec.openplanner.team/stops/X599agb"], ["https://tec.openplanner.team/stops/X764aaa", "https://tec.openplanner.team/stops/X764aga"], ["https://tec.openplanner.team/stops/Bfelcen2", "https://tec.openplanner.team/stops/Bfelpmo1"], ["https://tec.openplanner.team/stops/X718aka", "https://tec.openplanner.team/stops/X719ada"], ["https://tec.openplanner.team/stops/N524aab", "https://tec.openplanner.team/stops/N524abb"], ["https://tec.openplanner.team/stops/LwTkabi3", "https://tec.openplanner.team/stops/LwTzent1"], ["https://tec.openplanner.team/stops/X877aba", "https://tec.openplanner.team/stops/X880ada"], ["https://tec.openplanner.team/stops/X898abb", "https://tec.openplanner.team/stops/X898adb"], ["https://tec.openplanner.team/stops/N534arb", "https://tec.openplanner.team/stops/N534aua"], ["https://tec.openplanner.team/stops/Bincbbo2", "https://tec.openplanner.team/stops/Boppcar1"], ["https://tec.openplanner.team/stops/N506bta", "https://tec.openplanner.team/stops/N506bxa"], ["https://tec.openplanner.team/stops/N309aab", "https://tec.openplanner.team/stops/N313aea"], ["https://tec.openplanner.team/stops/Cgofbru1", "https://tec.openplanner.team/stops/Ctmsncb2"], ["https://tec.openplanner.team/stops/H2fy120c", "https://tec.openplanner.team/stops/H2fy120d"], ["https://tec.openplanner.team/stops/X791ada", "https://tec.openplanner.team/stops/X791adb"], ["https://tec.openplanner.team/stops/Llmcoop1", "https://tec.openplanner.team/stops/Llmeg--2"], ["https://tec.openplanner.team/stops/LLYcalv1", "https://tec.openplanner.team/stops/LTOplac1"], ["https://tec.openplanner.team/stops/H4hx119b", "https://tec.openplanner.team/stops/H4hx123a"], ["https://tec.openplanner.team/stops/Bbuzcom1", "https://tec.openplanner.team/stops/Bbuzeta1"], ["https://tec.openplanner.team/stops/N301apa", "https://tec.openplanner.team/stops/N302aea"], ["https://tec.openplanner.team/stops/LeYberl2", "https://tec.openplanner.team/stops/LeYwess1"], ["https://tec.openplanner.team/stops/LARauto1", "https://tec.openplanner.team/stops/LRItour2"], ["https://tec.openplanner.team/stops/H4mo175a", "https://tec.openplanner.team/stops/H4mo181b"], ["https://tec.openplanner.team/stops/H1ms920a", "https://tec.openplanner.team/stops/H1ms922a"], ["https://tec.openplanner.team/stops/LTRmosb1", "https://tec.openplanner.team/stops/LTRsain2"], ["https://tec.openplanner.team/stops/X826aaa", "https://tec.openplanner.team/stops/X833abb"], ["https://tec.openplanner.team/stops/X638aga", "https://tec.openplanner.team/stops/X638aob"], ["https://tec.openplanner.team/stops/N204aeb", "https://tec.openplanner.team/stops/N204afa"], ["https://tec.openplanner.team/stops/Lemboul1", "https://tec.openplanner.team/stops/Lemmusc1"], ["https://tec.openplanner.team/stops/X359afa", "https://tec.openplanner.team/stops/X359aja"], ["https://tec.openplanner.team/stops/Bsoihci1", "https://tec.openplanner.team/stops/H3so170a"], ["https://tec.openplanner.team/stops/Llmlaro1", "https://tec.openplanner.team/stops/Lprcite2"], ["https://tec.openplanner.team/stops/N207aeb", "https://tec.openplanner.team/stops/N207afa"], ["https://tec.openplanner.team/stops/Lpeatel2", "https://tec.openplanner.team/stops/Lpeptle1"], ["https://tec.openplanner.team/stops/Bcercab2", "https://tec.openplanner.team/stops/Bcerpco1"], ["https://tec.openplanner.team/stops/X623adb", "https://tec.openplanner.team/stops/X624amb"], ["https://tec.openplanner.team/stops/N349aga", "https://tec.openplanner.team/stops/N351aqa"], ["https://tec.openplanner.team/stops/LAMfrai1", "https://tec.openplanner.team/stops/LAMhaut1"], ["https://tec.openplanner.team/stops/H1bs110c", "https://tec.openplanner.team/stops/H1ge117a"], ["https://tec.openplanner.team/stops/LWAloui2", "https://tec.openplanner.team/stops/LWArege2"], ["https://tec.openplanner.team/stops/X719aeb", "https://tec.openplanner.team/stops/X719afa"], ["https://tec.openplanner.team/stops/H4hx121a", "https://tec.openplanner.team/stops/H4mo161a"], ["https://tec.openplanner.team/stops/H2sb257c", "https://tec.openplanner.team/stops/H3lr108a"], ["https://tec.openplanner.team/stops/H4br108a", "https://tec.openplanner.team/stops/H4jm118a"], ["https://tec.openplanner.team/stops/LTyhapp2", "https://tec.openplanner.team/stops/LTyhapp4"], ["https://tec.openplanner.team/stops/H1hr122a", "https://tec.openplanner.team/stops/H3so156a"], ["https://tec.openplanner.team/stops/H2pe161a", "https://tec.openplanner.team/stops/H2pe163a"], ["https://tec.openplanner.team/stops/H2fa107a", "https://tec.openplanner.team/stops/H2fa108b"], ["https://tec.openplanner.team/stops/LGreg--1", "https://tec.openplanner.team/stops/LORherl1"], ["https://tec.openplanner.team/stops/Bblaccm1", "https://tec.openplanner.team/stops/Bblamsj3"], ["https://tec.openplanner.team/stops/Bfelada1", "https://tec.openplanner.team/stops/Bfelbri3"], ["https://tec.openplanner.team/stops/LTicime1", "https://tec.openplanner.team/stops/LTigera1"], ["https://tec.openplanner.team/stops/Bbstcoi2", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/Lflmaxi1", "https://tec.openplanner.team/stops/Lflrhot2"], ["https://tec.openplanner.team/stops/N118aea", "https://tec.openplanner.team/stops/N118afb"], ["https://tec.openplanner.team/stops/H4we135a", "https://tec.openplanner.team/stops/H4we135b"], ["https://tec.openplanner.team/stops/Lceourt1", "https://tec.openplanner.team/stops/Lemdupo1"], ["https://tec.openplanner.team/stops/LmImirf1", "https://tec.openplanner.team/stops/LmR50--1"], ["https://tec.openplanner.team/stops/LBIcabi1", "https://tec.openplanner.team/stops/LBIpont1"], ["https://tec.openplanner.team/stops/X721aaa", "https://tec.openplanner.team/stops/X721aba"], ["https://tec.openplanner.team/stops/LSPsorb1", "https://tec.openplanner.team/stops/LSPsorb2"], ["https://tec.openplanner.team/stops/Blmlbou2", "https://tec.openplanner.team/stops/Blmlcim2"], ["https://tec.openplanner.team/stops/H1ho138a", "https://tec.openplanner.team/stops/H1ho138b"], ["https://tec.openplanner.team/stops/Bbeubos1", "https://tec.openplanner.team/stops/Bgembhe1"], ["https://tec.openplanner.team/stops/H4hx109a", "https://tec.openplanner.team/stops/H4hx124a"], ["https://tec.openplanner.team/stops/N117aub", "https://tec.openplanner.team/stops/N117aya"], ["https://tec.openplanner.team/stops/LkRrauw1", "https://tec.openplanner.team/stops/LkRrauw2"], ["https://tec.openplanner.team/stops/Cchparc3", "https://tec.openplanner.team/stops/Cchparc4"], ["https://tec.openplanner.team/stops/N515apa", "https://tec.openplanner.team/stops/N515aqd"], ["https://tec.openplanner.team/stops/LOmrela2", "https://tec.openplanner.team/stops/LRuegli1"], ["https://tec.openplanner.team/stops/N501esb", "https://tec.openplanner.team/stops/N501esy"], ["https://tec.openplanner.team/stops/LAo161-1", "https://tec.openplanner.team/stops/LAo170-2"], ["https://tec.openplanner.team/stops/Livgera1", "https://tec.openplanner.team/stops/Livpost1"], ["https://tec.openplanner.team/stops/N347aca", "https://tec.openplanner.team/stops/X346akb"], ["https://tec.openplanner.team/stops/Bgnpgen2", "https://tec.openplanner.team/stops/Bwaypon1"], ["https://tec.openplanner.team/stops/LLecarr3", "https://tec.openplanner.team/stops/X547aib"], ["https://tec.openplanner.team/stops/Lgrclas2", "https://tec.openplanner.team/stops/Llgcorn1"], ["https://tec.openplanner.team/stops/NC44acb", "https://tec.openplanner.team/stops/NC44ada"], ["https://tec.openplanner.team/stops/H4ty311b", "https://tec.openplanner.team/stops/H4vx366a"], ["https://tec.openplanner.team/stops/N501fgb", "https://tec.openplanner.team/stops/N501meb"], ["https://tec.openplanner.team/stops/Clvlove1", "https://tec.openplanner.team/stops/Clvndam2"], ["https://tec.openplanner.team/stops/X723aaa", "https://tec.openplanner.team/stops/X723aha"], ["https://tec.openplanner.team/stops/LBEtrix1", "https://tec.openplanner.team/stops/LDLbois1"], ["https://tec.openplanner.team/stops/Livvill2", "https://tec.openplanner.team/stops/LRarami2"], ["https://tec.openplanner.team/stops/H1te180b", "https://tec.openplanner.team/stops/H1te191b"], ["https://tec.openplanner.team/stops/X640ahb", "https://tec.openplanner.team/stops/X640aua"], ["https://tec.openplanner.team/stops/H1pa120a", "https://tec.openplanner.team/stops/H1pa120b"], ["https://tec.openplanner.team/stops/Llgelis2", "https://tec.openplanner.team/stops/Llgplat2"], ["https://tec.openplanner.team/stops/Lbrgrot1", "https://tec.openplanner.team/stops/Ljulieg2"], ["https://tec.openplanner.team/stops/N501hba", "https://tec.openplanner.team/stops/N501nda"], ["https://tec.openplanner.team/stops/LCLacbi1", "https://tec.openplanner.team/stops/LCLscie1"], ["https://tec.openplanner.team/stops/X663ahb", "https://tec.openplanner.team/stops/X663ahc"], ["https://tec.openplanner.team/stops/Bmarlor1", "https://tec.openplanner.team/stops/Bmartil2"], ["https://tec.openplanner.team/stops/X601aya", "https://tec.openplanner.team/stops/X601ayb"], ["https://tec.openplanner.team/stops/N564adb", "https://tec.openplanner.team/stops/N585ahb"], ["https://tec.openplanner.team/stops/Lhrlalo1", "https://tec.openplanner.team/stops/Lhrlalo2"], ["https://tec.openplanner.team/stops/LAvambr1", "https://tec.openplanner.team/stops/LAvatri1"], ["https://tec.openplanner.team/stops/N558aea", "https://tec.openplanner.team/stops/N558aga"], ["https://tec.openplanner.team/stops/Lmlcrot1", "https://tec.openplanner.team/stops/Lmlmich1"], ["https://tec.openplanner.team/stops/H1fa117b", "https://tec.openplanner.team/stops/H1pe132b"], ["https://tec.openplanner.team/stops/N516abb", "https://tec.openplanner.team/stops/N516alb"], ["https://tec.openplanner.team/stops/Buccdst1", "https://tec.openplanner.team/stops/Buccdst2"], ["https://tec.openplanner.team/stops/LmDbw--*", "https://tec.openplanner.team/stops/LmDelek2"], ["https://tec.openplanner.team/stops/Btsllsc2", "https://tec.openplanner.team/stops/Btslpic6"], ["https://tec.openplanner.team/stops/N229anb", "https://tec.openplanner.team/stops/N229aqa"], ["https://tec.openplanner.team/stops/Bllngar5", "https://tec.openplanner.team/stops/Bllngle1"], ["https://tec.openplanner.team/stops/H1qp140b", "https://tec.openplanner.team/stops/H1qp142a"], ["https://tec.openplanner.team/stops/Btlbmel2", "https://tec.openplanner.team/stops/Btlbtbe1"], ["https://tec.openplanner.team/stops/Lsmberg2", "https://tec.openplanner.team/stops/Lsmdams2"], ["https://tec.openplanner.team/stops/NC44afa", "https://tec.openplanner.team/stops/NC44aha"], ["https://tec.openplanner.team/stops/Cfccabi2", "https://tec.openplanner.team/stops/Cfcsaut4"], ["https://tec.openplanner.team/stops/Cthalli2", "https://tec.openplanner.team/stops/Cthhttr3"], ["https://tec.openplanner.team/stops/LSCc39-2", "https://tec.openplanner.team/stops/LSCchap2"], ["https://tec.openplanner.team/stops/Cfaterg6", "https://tec.openplanner.team/stops/Cfaysle1"], ["https://tec.openplanner.team/stops/Lfhgare1", "https://tec.openplanner.team/stops/Lfhtrxc1"], ["https://tec.openplanner.team/stops/Bgembsg1", "https://tec.openplanner.team/stops/Bgembsg2"], ["https://tec.openplanner.team/stops/H1bs110a", "https://tec.openplanner.team/stops/H1sb144b"], ["https://tec.openplanner.team/stops/LSIcour2", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://tec.openplanner.team/stops/LaAelis2", "https://tec.openplanner.team/stops/LaApost1"], ["https://tec.openplanner.team/stops/LTgsous1", "https://tec.openplanner.team/stops/LTgsous2"], ["https://tec.openplanner.team/stops/H4bc102a", "https://tec.openplanner.team/stops/H4bc108b"], ["https://tec.openplanner.team/stops/Cmonsnc1", "https://tec.openplanner.team/stops/H1ms936a"], ["https://tec.openplanner.team/stops/H1ev113a", "https://tec.openplanner.team/stops/H1ev149b"], ["https://tec.openplanner.team/stops/Bdlvpco1", "https://tec.openplanner.team/stops/Bdvmc031"], ["https://tec.openplanner.team/stops/Bobacou1", "https://tec.openplanner.team/stops/Cobmven1"], ["https://tec.openplanner.team/stops/Bhmmcim1", "https://tec.openplanner.team/stops/Bhmmlad1"], ["https://tec.openplanner.team/stops/H4co108a", "https://tec.openplanner.team/stops/H4co108b"], ["https://tec.openplanner.team/stops/N519aac", "https://tec.openplanner.team/stops/N519aca"], ["https://tec.openplanner.team/stops/LOchalo2", "https://tec.openplanner.team/stops/NL35agb"], ["https://tec.openplanner.team/stops/N507aib", "https://tec.openplanner.team/stops/N507aja"], ["https://tec.openplanner.team/stops/H1cu118b", "https://tec.openplanner.team/stops/H1fl139b"], ["https://tec.openplanner.team/stops/LBHinva1", "https://tec.openplanner.team/stops/LMemaza2"], ["https://tec.openplanner.team/stops/LPRpeti1", "https://tec.openplanner.team/stops/LPRpeti2"], ["https://tec.openplanner.team/stops/Lhuderu2", "https://tec.openplanner.team/stops/Lhuleke1"], ["https://tec.openplanner.team/stops/Bblaast2", "https://tec.openplanner.team/stops/Bblagar4"], ["https://tec.openplanner.team/stops/N228aaa", "https://tec.openplanner.team/stops/N228aca"], ["https://tec.openplanner.team/stops/Cchpala2", "https://tec.openplanner.team/stops/Cchriga1"], ["https://tec.openplanner.team/stops/H1hq124b", "https://tec.openplanner.team/stops/H1hq158a"], ["https://tec.openplanner.team/stops/N110afb", "https://tec.openplanner.team/stops/N114aab"], ["https://tec.openplanner.team/stops/NL68aca", "https://tec.openplanner.team/stops/NL68aga"], ["https://tec.openplanner.team/stops/X638afb", "https://tec.openplanner.team/stops/X638aga"], ["https://tec.openplanner.team/stops/Bwlhcsr1", "https://tec.openplanner.team/stops/Bwlhcsr2"], ["https://tec.openplanner.team/stops/LWeatel1", "https://tec.openplanner.team/stops/LWeec--2"], ["https://tec.openplanner.team/stops/LAWkone1", "https://tec.openplanner.team/stops/LAWkone2"], ["https://tec.openplanner.team/stops/Cmyoasi2", "https://tec.openplanner.team/stops/Cmyvesa1"], ["https://tec.openplanner.team/stops/LMOfleu1", "https://tec.openplanner.team/stops/LMOfleu2"], ["https://tec.openplanner.team/stops/LNAbass2", "https://tec.openplanner.team/stops/LNAmart2"], ["https://tec.openplanner.team/stops/LPLheid2", "https://tec.openplanner.team/stops/LPLstat2"], ["https://tec.openplanner.team/stops/H4ce100a", "https://tec.openplanner.team/stops/H4mx115a"], ["https://tec.openplanner.team/stops/N534bda", "https://tec.openplanner.team/stops/N534bya"], ["https://tec.openplanner.team/stops/N383ada", "https://tec.openplanner.team/stops/N383adb"], ["https://tec.openplanner.team/stops/H4lg100a", "https://tec.openplanner.team/stops/H4lg106a"], ["https://tec.openplanner.team/stops/H4av106b", "https://tec.openplanner.team/stops/H4av106d"], ["https://tec.openplanner.team/stops/LFTec--3", "https://tec.openplanner.team/stops/LTNsarl2"], ["https://tec.openplanner.team/stops/N519arb", "https://tec.openplanner.team/stops/N519asd"], ["https://tec.openplanner.team/stops/LBIaepo4", "https://tec.openplanner.team/stops/LBIairp1"], ["https://tec.openplanner.team/stops/NL37abb", "https://tec.openplanner.team/stops/NL37aob"], ["https://tec.openplanner.team/stops/Cgysarr2", "https://tec.openplanner.team/stops/Cravold2"], ["https://tec.openplanner.team/stops/N235acb", "https://tec.openplanner.team/stops/N235ada"], ["https://tec.openplanner.team/stops/X750aha", "https://tec.openplanner.team/stops/X750ala"], ["https://tec.openplanner.team/stops/Llgpier1", "https://tec.openplanner.team/stops/Llgqmar2"], ["https://tec.openplanner.team/stops/N135aib", "https://tec.openplanner.team/stops/N135aqb"], ["https://tec.openplanner.team/stops/Bjauvch1", "https://tec.openplanner.team/stops/Bjauwar1"], ["https://tec.openplanner.team/stops/LBkgrae2", "https://tec.openplanner.team/stops/LBkjenn2"], ["https://tec.openplanner.team/stops/X796acb", "https://tec.openplanner.team/stops/X796acc"], ["https://tec.openplanner.team/stops/Blinbru2", "https://tec.openplanner.team/stops/Blingar2"], ["https://tec.openplanner.team/stops/X993aba", "https://tec.openplanner.team/stops/X993abc"], ["https://tec.openplanner.team/stops/Crccano2", "https://tec.openplanner.team/stops/Crccano3"], ["https://tec.openplanner.team/stops/H4ar100b", "https://tec.openplanner.team/stops/H4ar104b"], ["https://tec.openplanner.team/stops/LSOtheu1", "https://tec.openplanner.team/stops/LSOtheu2"], ["https://tec.openplanner.team/stops/H4lp119b", "https://tec.openplanner.team/stops/H4lp126b"], ["https://tec.openplanner.team/stops/X723aib", "https://tec.openplanner.team/stops/X723ama"], ["https://tec.openplanner.team/stops/LVlledo1", "https://tec.openplanner.team/stops/LVlleme4"], ["https://tec.openplanner.team/stops/H1ch102a", "https://tec.openplanner.team/stops/H1ch104a"], ["https://tec.openplanner.team/stops/Bohnrpl1", "https://tec.openplanner.team/stops/Bwatgge2"], ["https://tec.openplanner.team/stops/X614atb", "https://tec.openplanner.team/stops/X614aub"], ["https://tec.openplanner.team/stops/Cmbborn2", "https://tec.openplanner.team/stops/Csuptou2"], ["https://tec.openplanner.team/stops/X775aaa", "https://tec.openplanner.team/stops/X775aba"], ["https://tec.openplanner.team/stops/Cmcegli3", "https://tec.openplanner.team/stops/Cmivert1"], ["https://tec.openplanner.team/stops/LBslama1", "https://tec.openplanner.team/stops/NL73adb"], ["https://tec.openplanner.team/stops/Cfaauln1", "https://tec.openplanner.team/stops/Cfawain2"], ["https://tec.openplanner.team/stops/X606aaa", "https://tec.openplanner.team/stops/X620ahb"], ["https://tec.openplanner.team/stops/H2mo123b", "https://tec.openplanner.team/stops/H2mo131a"], ["https://tec.openplanner.team/stops/X663ada", "https://tec.openplanner.team/stops/X663apa"], ["https://tec.openplanner.team/stops/H1wg125a", "https://tec.openplanner.team/stops/H1wg125c"], ["https://tec.openplanner.team/stops/H4hn113a", "https://tec.openplanner.team/stops/H4jm117c"], ["https://tec.openplanner.team/stops/X758afa", "https://tec.openplanner.team/stops/X758ama"], ["https://tec.openplanner.team/stops/Ljubeyn1", "https://tec.openplanner.team/stops/Ljugode1"], ["https://tec.openplanner.team/stops/H2gy103a", "https://tec.openplanner.team/stops/H2gy109a"], ["https://tec.openplanner.team/stops/X891aab", "https://tec.openplanner.team/stops/X891aba"], ["https://tec.openplanner.team/stops/Crebrux1", "https://tec.openplanner.team/stops/Crebrux2"], ["https://tec.openplanner.team/stops/X636akb", "https://tec.openplanner.team/stops/X636bcb"], ["https://tec.openplanner.team/stops/LAYchal1", "https://tec.openplanner.team/stops/LAYecol1"], ["https://tec.openplanner.team/stops/LTrgibe1", "https://tec.openplanner.team/stops/LTrmort1"], ["https://tec.openplanner.team/stops/H1ms282a", "https://tec.openplanner.team/stops/H1ms302a"], ["https://tec.openplanner.team/stops/Ljubonf1", "https://tec.openplanner.team/stops/Ljuroch1"], ["https://tec.openplanner.team/stops/Bboncha1", "https://tec.openplanner.team/stops/Bgzdfpo1"], ["https://tec.openplanner.team/stops/Bmrlhau2", "https://tec.openplanner.team/stops/Bpiehte1"], ["https://tec.openplanner.team/stops/H1tl120b", "https://tec.openplanner.team/stops/H1tl121b"], ["https://tec.openplanner.team/stops/NL74aad", "https://tec.openplanner.team/stops/NL74aea"], ["https://tec.openplanner.team/stops/H1gr116a", "https://tec.openplanner.team/stops/H1gr122b"], ["https://tec.openplanner.team/stops/Btlgast1", "https://tec.openplanner.team/stops/Btlgreg1"], ["https://tec.openplanner.team/stops/H1so131b", "https://tec.openplanner.team/stops/H1so142c"], ["https://tec.openplanner.team/stops/N390acb", "https://tec.openplanner.team/stops/N390adb"], ["https://tec.openplanner.team/stops/H1au102b", "https://tec.openplanner.team/stops/H1el132b"], ["https://tec.openplanner.team/stops/LHUsauv2", "https://tec.openplanner.team/stops/LHUsauv4"], ["https://tec.openplanner.team/stops/N337aha", "https://tec.openplanner.team/stops/N337aib"], ["https://tec.openplanner.team/stops/Bbiecoc1", "https://tec.openplanner.team/stops/Bbiepre1"], ["https://tec.openplanner.team/stops/X923aqa", "https://tec.openplanner.team/stops/X949aeb"], ["https://tec.openplanner.team/stops/H1gr115b", "https://tec.openplanner.team/stops/H1mk113a"], ["https://tec.openplanner.team/stops/Cfcstan2", "https://tec.openplanner.team/stops/Crccarr1"], ["https://tec.openplanner.team/stops/LeUkehr1", "https://tec.openplanner.team/stops/LeUstad1"], ["https://tec.openplanner.team/stops/Cci4bra1", "https://tec.openplanner.team/stops/Cmllait1"], ["https://tec.openplanner.team/stops/H1sy140a", "https://tec.openplanner.team/stops/H1sy145b"], ["https://tec.openplanner.team/stops/N501caa", "https://tec.openplanner.team/stops/N501cgb"], ["https://tec.openplanner.team/stops/Bdvminc1", "https://tec.openplanner.team/stops/Bgisman1"], ["https://tec.openplanner.team/stops/LAUmerc2", "https://tec.openplanner.team/stops/LRmha261"], ["https://tec.openplanner.team/stops/LaMjous1", "https://tec.openplanner.team/stops/LaMmark2"], ["https://tec.openplanner.team/stops/H4bd107a", "https://tec.openplanner.team/stops/H4bd108a"], ["https://tec.openplanner.team/stops/LClberw1", "https://tec.openplanner.team/stops/LClberw2"], ["https://tec.openplanner.team/stops/H1nm140a", "https://tec.openplanner.team/stops/H1nm140b"], ["https://tec.openplanner.team/stops/LAmeclu1", "https://tec.openplanner.team/stops/LAmvent3"], ["https://tec.openplanner.team/stops/LmDkape1", "https://tec.openplanner.team/stops/LmYeich1"], ["https://tec.openplanner.team/stops/H1me114b", "https://tec.openplanner.team/stops/H1me116b"], ["https://tec.openplanner.team/stops/N501fsa", "https://tec.openplanner.team/stops/N501fuz"], ["https://tec.openplanner.team/stops/Bquebth3", "https://tec.openplanner.team/stops/Brebeau1"], ["https://tec.openplanner.team/stops/Bhenrcr1", "https://tec.openplanner.team/stops/Bhenrcr2"], ["https://tec.openplanner.team/stops/LcRmuhl1", "https://tec.openplanner.team/stops/LcRmuhl2"], ["https://tec.openplanner.team/stops/N534ara", "https://tec.openplanner.team/stops/N561ada"], ["https://tec.openplanner.team/stops/X669ada", "https://tec.openplanner.team/stops/X669aea"], ["https://tec.openplanner.team/stops/X982aqb", "https://tec.openplanner.team/stops/X982bob"], ["https://tec.openplanner.team/stops/N507aea", "https://tec.openplanner.team/stops/N507apb"], ["https://tec.openplanner.team/stops/Brsga812", "https://tec.openplanner.team/stops/Brsggea2"], ["https://tec.openplanner.team/stops/Ccugail1", "https://tec.openplanner.team/stops/Ccugail2"], ["https://tec.openplanner.team/stops/X922aaa", "https://tec.openplanner.team/stops/X922abb"], ["https://tec.openplanner.team/stops/Lrcarse2", "https://tec.openplanner.team/stops/Lrclohe2"], ["https://tec.openplanner.team/stops/X224aea", "https://tec.openplanner.team/stops/X224afa"], ["https://tec.openplanner.team/stops/X754ava", "https://tec.openplanner.team/stops/X754avb"], ["https://tec.openplanner.team/stops/LCPlacr1", "https://tec.openplanner.team/stops/LPOchan2"], ["https://tec.openplanner.team/stops/Lhr1ave5", "https://tec.openplanner.team/stops/Lhrhurb1"], ["https://tec.openplanner.team/stops/LBRmout3", "https://tec.openplanner.team/stops/LVHbrai1"], ["https://tec.openplanner.team/stops/X818ada", "https://tec.openplanner.team/stops/X818adb"], ["https://tec.openplanner.team/stops/CMmari1", "https://tec.openplanner.team/stops/CMmari2"], ["https://tec.openplanner.team/stops/X889aaa", "https://tec.openplanner.team/stops/X899aja"], ["https://tec.openplanner.team/stops/X808afa", "https://tec.openplanner.team/stops/X808aha"], ["https://tec.openplanner.team/stops/H5fl100b", "https://tec.openplanner.team/stops/H5wo128b"], ["https://tec.openplanner.team/stops/LAVdepr1", "https://tec.openplanner.team/stops/LCIsucr2"], ["https://tec.openplanner.team/stops/X941aab", "https://tec.openplanner.team/stops/X948ata"], ["https://tec.openplanner.team/stops/Ccspla", "https://tec.openplanner.team/stops/Cmxpleg2"], ["https://tec.openplanner.team/stops/X768acb", "https://tec.openplanner.team/stops/X768adb"], ["https://tec.openplanner.team/stops/Bengvma1", "https://tec.openplanner.team/stops/H1en105a"], ["https://tec.openplanner.team/stops/LWabela1", "https://tec.openplanner.team/stops/LWargeu2"], ["https://tec.openplanner.team/stops/H4bo121a", "https://tec.openplanner.team/stops/H4ea132c"], ["https://tec.openplanner.team/stops/Bbgeegl2", "https://tec.openplanner.team/stops/Bbgerlr2"], ["https://tec.openplanner.team/stops/H4wi166a", "https://tec.openplanner.team/stops/H5pe144a"], ["https://tec.openplanner.team/stops/H1ms313b", "https://tec.openplanner.team/stops/H1ob331b"], ["https://tec.openplanner.team/stops/X774aca", "https://tec.openplanner.team/stops/X775aaa"], ["https://tec.openplanner.team/stops/Bvlvpco1", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/N533adb", "https://tec.openplanner.team/stops/N533aeb"], ["https://tec.openplanner.team/stops/Bhlvgar2", "https://tec.openplanner.team/stops/Bnivn971"], ["https://tec.openplanner.team/stops/Bgntalt3", "https://tec.openplanner.team/stops/Bgntalt4"], ["https://tec.openplanner.team/stops/LGrchpl2", "https://tec.openplanner.team/stops/LGreg--2"], ["https://tec.openplanner.team/stops/Cfbcabi1", "https://tec.openplanner.team/stops/NH03adb"], ["https://tec.openplanner.team/stops/LJEerno2", "https://tec.openplanner.team/stops/LJEverd2"], ["https://tec.openplanner.team/stops/LmIcafe1", "https://tec.openplanner.team/stops/LmRmuhl1"], ["https://tec.openplanner.team/stops/Cvtgsar2", "https://tec.openplanner.team/stops/Cvtvois2"], ["https://tec.openplanner.team/stops/LPAchpl1", "https://tec.openplanner.team/stops/LPAmc--2"], ["https://tec.openplanner.team/stops/LMubras1", "https://tec.openplanner.team/stops/LSDheus2"], ["https://tec.openplanner.team/stops/N554acb", "https://tec.openplanner.team/stops/N573aqa"], ["https://tec.openplanner.team/stops/LFChuis1", "https://tec.openplanner.team/stops/LFCkerk2"], ["https://tec.openplanner.team/stops/LRChote1", "https://tec.openplanner.team/stops/LRCviad1"], ["https://tec.openplanner.team/stops/H3bi118a", "https://tec.openplanner.team/stops/H3bi118b"], ["https://tec.openplanner.team/stops/LFychpl1", "https://tec.openplanner.team/stops/LFymare3"], ["https://tec.openplanner.team/stops/H4er124b", "https://tec.openplanner.team/stops/H4ty283b"], ["https://tec.openplanner.team/stops/LwLfuss2", "https://tec.openplanner.team/stops/LwLprum1"], ["https://tec.openplanner.team/stops/N254aab", "https://tec.openplanner.team/stops/N570aaa"], ["https://tec.openplanner.team/stops/Bvircsj2", "https://tec.openplanner.team/stops/Bvirmbr2"], ["https://tec.openplanner.team/stops/LOVhetr2", "https://tec.openplanner.team/stops/LSorobe2"], ["https://tec.openplanner.team/stops/Cpthaud2", "https://tec.openplanner.team/stops/H2ca105b"], ["https://tec.openplanner.team/stops/LMvrabo2", "https://tec.openplanner.team/stops/LSphote1"], ["https://tec.openplanner.team/stops/Lhrlaix2", "https://tec.openplanner.team/stops/Lhrsimo4"], ["https://tec.openplanner.team/stops/Chhegli3", "https://tec.openplanner.team/stops/Chhprai1"], ["https://tec.openplanner.team/stops/X898aga", "https://tec.openplanner.team/stops/X898akb"], ["https://tec.openplanner.team/stops/X756acb", "https://tec.openplanner.team/stops/X756ahb"], ["https://tec.openplanner.team/stops/Cchlefe1", "https://tec.openplanner.team/stops/CMsama1"], ["https://tec.openplanner.team/stops/X911ahb", "https://tec.openplanner.team/stops/X911ata"], ["https://tec.openplanner.team/stops/LTrchar2", "https://tec.openplanner.team/stops/LTrrich2"], ["https://tec.openplanner.team/stops/N554aeb", "https://tec.openplanner.team/stops/N554agb"], ["https://tec.openplanner.team/stops/Bitrmde1", "https://tec.openplanner.team/stops/Bitrmde2"], ["https://tec.openplanner.team/stops/N539bbb", "https://tec.openplanner.team/stops/N540aqa"], ["https://tec.openplanner.team/stops/LAo161-2", "https://tec.openplanner.team/stops/LAo170-2"], ["https://tec.openplanner.team/stops/LABvill2", "https://tec.openplanner.team/stops/LHNtonn2"], ["https://tec.openplanner.team/stops/LLGcarr2", "https://tec.openplanner.team/stops/LLGramk1"], ["https://tec.openplanner.team/stops/H4mo144a", "https://tec.openplanner.team/stops/H4mo154a"], ["https://tec.openplanner.team/stops/X728aba", "https://tec.openplanner.team/stops/X729aca"], ["https://tec.openplanner.team/stops/Lvevieu1", "https://tec.openplanner.team/stops/Lvevieu2"], ["https://tec.openplanner.team/stops/Bcer4br4", "https://tec.openplanner.team/stops/Bcercab2"], ["https://tec.openplanner.team/stops/H5fl102d", "https://tec.openplanner.team/stops/H5wo136a"], ["https://tec.openplanner.team/stops/X633agc", "https://tec.openplanner.team/stops/X633aha"], ["https://tec.openplanner.team/stops/Lsmtini2", "https://tec.openplanner.team/stops/Lsmtini3"], ["https://tec.openplanner.team/stops/X770afb", "https://tec.openplanner.team/stops/X774acb"], ["https://tec.openplanner.team/stops/Brsgsan2", "https://tec.openplanner.team/stops/Brsgtou2"], ["https://tec.openplanner.team/stops/LBIcarg1", "https://tec.openplanner.team/stops/Lmltrix*"], ["https://tec.openplanner.team/stops/N534avb", "https://tec.openplanner.team/stops/N534beb"], ["https://tec.openplanner.team/stops/N234aea", "https://tec.openplanner.team/stops/N550acb"], ["https://tec.openplanner.team/stops/H2hg267a", "https://tec.openplanner.team/stops/H2ll176c"], ["https://tec.openplanner.team/stops/N554ahb", "https://tec.openplanner.team/stops/N566aea"], ["https://tec.openplanner.team/stops/H4mt219a", "https://tec.openplanner.team/stops/H4mx118a"], ["https://tec.openplanner.team/stops/H2hg154c", "https://tec.openplanner.team/stops/H2hg154e"], ["https://tec.openplanner.team/stops/H4we135b", "https://tec.openplanner.team/stops/H4we139a"], ["https://tec.openplanner.team/stops/LLtrout2", "https://tec.openplanner.team/stops/NL57akb"], ["https://tec.openplanner.team/stops/H5rx129a", "https://tec.openplanner.team/stops/H5rx138b"], ["https://tec.openplanner.team/stops/X769anb", "https://tec.openplanner.team/stops/X769apb"], ["https://tec.openplanner.team/stops/LAYathe1", "https://tec.openplanner.team/stops/LAYcher1"], ["https://tec.openplanner.team/stops/N222aba", "https://tec.openplanner.team/stops/X394aga"], ["https://tec.openplanner.team/stops/Cfmcent2", "https://tec.openplanner.team/stops/Cfmgrmo2"], ["https://tec.openplanner.team/stops/Lgrdefr1", "https://tec.openplanner.team/stops/Lgrdefr4"], ["https://tec.openplanner.team/stops/Loubour1", "https://tec.openplanner.team/stops/Loubour2"], ["https://tec.openplanner.team/stops/LMEgare1", "https://tec.openplanner.team/stops/LMEwerg1"], ["https://tec.openplanner.team/stops/X817acb", "https://tec.openplanner.team/stops/X817ada"], ["https://tec.openplanner.team/stops/H3lr106b", "https://tec.openplanner.team/stops/H3lr116a"], ["https://tec.openplanner.team/stops/Bbeagae1", "https://tec.openplanner.team/stops/Bmlngvi2"], ["https://tec.openplanner.team/stops/X605adb", "https://tec.openplanner.team/stops/X605afb"], ["https://tec.openplanner.team/stops/Ladegli2", "https://tec.openplanner.team/stops/Ladfoot1"], ["https://tec.openplanner.team/stops/H4bh104b", "https://tec.openplanner.team/stops/H4lp120a"], ["https://tec.openplanner.team/stops/N501dwb", "https://tec.openplanner.team/stops/N501kmb"], ["https://tec.openplanner.team/stops/X804adb", "https://tec.openplanner.team/stops/X804aea"], ["https://tec.openplanner.team/stops/X949ada", "https://tec.openplanner.team/stops/X949aga"], ["https://tec.openplanner.team/stops/H2bh120a", "https://tec.openplanner.team/stops/H2mg141b"], ["https://tec.openplanner.team/stops/Lgdhura1", "https://tec.openplanner.team/stops/LMheg--1"], ["https://tec.openplanner.team/stops/Bblaegl1", "https://tec.openplanner.team/stops/Bblaegl2"], ["https://tec.openplanner.team/stops/N543aua", "https://tec.openplanner.team/stops/N543aub"], ["https://tec.openplanner.team/stops/Brixaug3", "https://tec.openplanner.team/stops/Brixchw1"], ["https://tec.openplanner.team/stops/Bjanfer1", "https://tec.openplanner.team/stops/NL75adb"], ["https://tec.openplanner.team/stops/X362abb", "https://tec.openplanner.team/stops/X371aja"], ["https://tec.openplanner.team/stops/H2tz115a", "https://tec.openplanner.team/stops/H2tz115b"], ["https://tec.openplanner.team/stops/N211akb", "https://tec.openplanner.team/stops/N211ayb"], ["https://tec.openplanner.team/stops/LHolexh1", "https://tec.openplanner.team/stops/LNvrout2"], ["https://tec.openplanner.team/stops/X779aia", "https://tec.openplanner.team/stops/X779aib"], ["https://tec.openplanner.team/stops/Cmlbeau2", "https://tec.openplanner.team/stops/Cmlbeau4"], ["https://tec.openplanner.team/stops/Cchsud10", "https://tec.openplanner.team/stops/CMsud1"], ["https://tec.openplanner.team/stops/N521aga", "https://tec.openplanner.team/stops/N521apb"], ["https://tec.openplanner.team/stops/H1hc125b", "https://tec.openplanner.team/stops/H1hc127d"], ["https://tec.openplanner.team/stops/X910afd", "https://tec.openplanner.team/stops/X910agb"], ["https://tec.openplanner.team/stops/Bgdhlai1", "https://tec.openplanner.team/stops/Bgdhmet1"], ["https://tec.openplanner.team/stops/LMAgdfa2", "https://tec.openplanner.team/stops/LMApl--2"], ["https://tec.openplanner.team/stops/H1ha186a", "https://tec.openplanner.team/stops/H1ha195b"], ["https://tec.openplanner.team/stops/LBSchpl2", "https://tec.openplanner.team/stops/LBSvi322"], ["https://tec.openplanner.team/stops/H1sb146a", "https://tec.openplanner.team/stops/H1sb148a"], ["https://tec.openplanner.team/stops/X664amb", "https://tec.openplanner.team/stops/X664amd"], ["https://tec.openplanner.team/stops/X757aca", "https://tec.openplanner.team/stops/X757aeb"], ["https://tec.openplanner.team/stops/LCsfize1", "https://tec.openplanner.team/stops/LFFruel1"], ["https://tec.openplanner.team/stops/N545aaa", "https://tec.openplanner.team/stops/N545acb"], ["https://tec.openplanner.team/stops/Lghencl1", "https://tec.openplanner.team/stops/Lghfore1"], ["https://tec.openplanner.team/stops/H2mo119b", "https://tec.openplanner.team/stops/H2mo131a"], ["https://tec.openplanner.team/stops/Cfmcoro1", "https://tec.openplanner.team/stops/Cfmnoci1"], ["https://tec.openplanner.team/stops/Ctm4che2", "https://tec.openplanner.team/stops/Ctmmana2"], ["https://tec.openplanner.team/stops/N509afa", "https://tec.openplanner.team/stops/N509agb"], ["https://tec.openplanner.team/stops/H2se105a", "https://tec.openplanner.team/stops/H2se107a"], ["https://tec.openplanner.team/stops/Ccuwain1", "https://tec.openplanner.team/stops/Cgyruis1"], ["https://tec.openplanner.team/stops/H4ir167a", "https://tec.openplanner.team/stops/H4ir167b"], ["https://tec.openplanner.team/stops/NL35adc", "https://tec.openplanner.team/stops/NL35add"], ["https://tec.openplanner.team/stops/LATdony1", "https://tec.openplanner.team/stops/LATmale1"], ["https://tec.openplanner.team/stops/LLbquar1", "https://tec.openplanner.team/stops/LLbrecu1"], ["https://tec.openplanner.team/stops/X806ada", "https://tec.openplanner.team/stops/X806adb"], ["https://tec.openplanner.team/stops/Ccicent2", "https://tec.openplanner.team/stops/Ccicent4"], ["https://tec.openplanner.team/stops/Bwatb4s1", "https://tec.openplanner.team/stops/Bwatb4s2"], ["https://tec.openplanner.team/stops/N501hma", "https://tec.openplanner.team/stops/N501iub"], ["https://tec.openplanner.team/stops/LMOchen1", "https://tec.openplanner.team/stops/LMOeg--1"], ["https://tec.openplanner.team/stops/H2tr245a", "https://tec.openplanner.team/stops/H2tr254a"], ["https://tec.openplanner.team/stops/Cmeloti2", "https://tec.openplanner.team/stops/Cmerued2"], ["https://tec.openplanner.team/stops/Cbfcham2", "https://tec.openplanner.team/stops/Cbfpoti2"], ["https://tec.openplanner.team/stops/Crasabl1", "https://tec.openplanner.team/stops/Crasabl3"], ["https://tec.openplanner.team/stops/X872acb", "https://tec.openplanner.team/stops/X872adb"], ["https://tec.openplanner.team/stops/H2ha129b", "https://tec.openplanner.team/stops/H2ha137b"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lenhosp2"], ["https://tec.openplanner.team/stops/Cdagoss1", "https://tec.openplanner.team/stops/Cmacreu2"], ["https://tec.openplanner.team/stops/H4bv145c", "https://tec.openplanner.team/stops/H5at235a"], ["https://tec.openplanner.team/stops/Lcebois1", "https://tec.openplanner.team/stops/Lcebois2"], ["https://tec.openplanner.team/stops/N501anz", "https://tec.openplanner.team/stops/N501mbb"], ["https://tec.openplanner.team/stops/X818afa", "https://tec.openplanner.team/stops/X818ala"], ["https://tec.openplanner.team/stops/X601caa", "https://tec.openplanner.team/stops/X601dea"], ["https://tec.openplanner.team/stops/CMjans1", "https://tec.openplanner.team/stops/Cmtrneu1"], ["https://tec.openplanner.team/stops/X882agb", "https://tec.openplanner.team/stops/X882akb"], ["https://tec.openplanner.team/stops/H1on128d", "https://tec.openplanner.team/stops/H1ro140b"], ["https://tec.openplanner.team/stops/LROcent2", "https://tec.openplanner.team/stops/LROhaie2"], ["https://tec.openplanner.team/stops/H4be111a", "https://tec.openplanner.team/stops/H4be149a"], ["https://tec.openplanner.team/stops/X808ada", "https://tec.openplanner.team/stops/X808adb"], ["https://tec.openplanner.team/stops/N524afa", "https://tec.openplanner.team/stops/N524ahb"], ["https://tec.openplanner.team/stops/X818afb", "https://tec.openplanner.team/stops/X818awb"], ["https://tec.openplanner.team/stops/LAOpres2", "https://tec.openplanner.team/stops/LLStour2"], ["https://tec.openplanner.team/stops/LkEhatt2", "https://tec.openplanner.team/stops/LkEzoll1"], ["https://tec.openplanner.team/stops/LSAeg--2", "https://tec.openplanner.team/stops/LSAvieu1"], ["https://tec.openplanner.team/stops/Lmnfawe1", "https://tec.openplanner.team/stops/Lmnrame2"], ["https://tec.openplanner.team/stops/N506aaa", "https://tec.openplanner.team/stops/N506aka"], ["https://tec.openplanner.team/stops/H4de112b", "https://tec.openplanner.team/stops/H4de114a"], ["https://tec.openplanner.team/stops/H2ll194a", "https://tec.openplanner.team/stops/H2ll260b"], ["https://tec.openplanner.team/stops/Cbcha652", "https://tec.openplanner.team/stops/Cthstre2"], ["https://tec.openplanner.team/stops/H5el101b", "https://tec.openplanner.team/stops/H5el102a"], ["https://tec.openplanner.team/stops/Lmopave1", "https://tec.openplanner.team/stops/Lsnlhon2"], ["https://tec.openplanner.team/stops/Bbsgrve2", "https://tec.openplanner.team/stops/Bnetcor1"], ["https://tec.openplanner.team/stops/Bottcpl2", "https://tec.openplanner.team/stops/Bottpry2"], ["https://tec.openplanner.team/stops/X804ala", "https://tec.openplanner.team/stops/X804bma"], ["https://tec.openplanner.team/stops/N512aid", "https://tec.openplanner.team/stops/NL57aeb"], ["https://tec.openplanner.team/stops/LmDelek1", "https://tec.openplanner.team/stops/LmYkirc1"], ["https://tec.openplanner.team/stops/LESlieg1", "https://tec.openplanner.team/stops/LESmich2"], ["https://tec.openplanner.team/stops/H4fa128b", "https://tec.openplanner.team/stops/H4fa167a"], ["https://tec.openplanner.team/stops/LNOpt--1", "https://tec.openplanner.team/stops/LNOpt--2"], ["https://tec.openplanner.team/stops/H2ha142b", "https://tec.openplanner.team/stops/H2hg160a"], ["https://tec.openplanner.team/stops/Bblacha2", "https://tec.openplanner.team/stops/Bblamsp4"], ["https://tec.openplanner.team/stops/N113aeb", "https://tec.openplanner.team/stops/N113afb"], ["https://tec.openplanner.team/stops/Cmbcime4", "https://tec.openplanner.team/stops/Csufrom6"], ["https://tec.openplanner.team/stops/X717agd", "https://tec.openplanner.team/stops/X718aja"], ["https://tec.openplanner.team/stops/N230aab", "https://tec.openplanner.team/stops/N230abb"], ["https://tec.openplanner.team/stops/LWAathe1", "https://tec.openplanner.team/stops/LWApt--2"], ["https://tec.openplanner.team/stops/H4ta116a", "https://tec.openplanner.team/stops/H4ta125b"], ["https://tec.openplanner.team/stops/Cmltomb1", "https://tec.openplanner.team/stops/Cmltomb2"], ["https://tec.openplanner.team/stops/Becepon1", "https://tec.openplanner.team/stops/H2mi123a"], ["https://tec.openplanner.team/stops/H2mg150a", "https://tec.openplanner.team/stops/H2se113b"], ["https://tec.openplanner.team/stops/H4co106a", "https://tec.openplanner.team/stops/H4co157b"], ["https://tec.openplanner.team/stops/LXofont1", "https://tec.openplanner.team/stops/LXofont2"], ["https://tec.openplanner.team/stops/Bhticbr2", "https://tec.openplanner.team/stops/Bhtihau1"], ["https://tec.openplanner.team/stops/LoUwelc2", "https://tec.openplanner.team/stops/LsF39--1"], ["https://tec.openplanner.team/stops/Lmopans1", "https://tec.openplanner.team/stops/Lmopans4"], ["https://tec.openplanner.team/stops/Btstw751", "https://tec.openplanner.team/stops/N524ala"], ["https://tec.openplanner.team/stops/X897aba", "https://tec.openplanner.team/stops/X897aeb"], ["https://tec.openplanner.team/stops/N536agb", "https://tec.openplanner.team/stops/N536aqa"], ["https://tec.openplanner.team/stops/Ltichif1", "https://tec.openplanner.team/stops/Ltichif3"], ["https://tec.openplanner.team/stops/Bnivpri1", "https://tec.openplanner.team/stops/Bnivvcw2"], ["https://tec.openplanner.team/stops/H1hl123a", "https://tec.openplanner.team/stops/H1hl123b"], ["https://tec.openplanner.team/stops/Cfobriq2", "https://tec.openplanner.team/stops/Cfoperz1"], ["https://tec.openplanner.team/stops/LARarge2", "https://tec.openplanner.team/stops/LARparc2"], ["https://tec.openplanner.team/stops/LAyfren1", "https://tec.openplanner.team/stops/Lflhott1"], ["https://tec.openplanner.team/stops/H1te177a", "https://tec.openplanner.team/stops/H1te188a"], ["https://tec.openplanner.team/stops/LBIhann2", "https://tec.openplanner.team/stops/LBIvill2"], ["https://tec.openplanner.team/stops/LAWcite3", "https://tec.openplanner.team/stops/LHGikea1"], ["https://tec.openplanner.team/stops/N548acd", "https://tec.openplanner.team/stops/N548akb"], ["https://tec.openplanner.team/stops/N347afb", "https://tec.openplanner.team/stops/X347aaa"], ["https://tec.openplanner.team/stops/N360adb", "https://tec.openplanner.team/stops/N360aeb"], ["https://tec.openplanner.team/stops/X621aea", "https://tec.openplanner.team/stops/X621aeb"], ["https://tec.openplanner.team/stops/H1hr117b", "https://tec.openplanner.team/stops/H1hr126b"], ["https://tec.openplanner.team/stops/Broscha1", "https://tec.openplanner.team/stops/Broscha2"], ["https://tec.openplanner.team/stops/LBSchpl2", "https://tec.openplanner.team/stops/LWOunio2"], ["https://tec.openplanner.team/stops/LHGikea2", "https://tec.openplanner.team/stops/LHGtong2"], ["https://tec.openplanner.team/stops/X609aca", "https://tec.openplanner.team/stops/X609ada"], ["https://tec.openplanner.team/stops/H2ch108a", "https://tec.openplanner.team/stops/H2ch111b"], ["https://tec.openplanner.team/stops/Blmlpla1", "https://tec.openplanner.team/stops/Blmlpla2"], ["https://tec.openplanner.team/stops/H4ty312a", "https://tec.openplanner.team/stops/H4ty318b"], ["https://tec.openplanner.team/stops/N217aca", "https://tec.openplanner.team/stops/N218adb"], ["https://tec.openplanner.team/stops/Cdasama1", "https://tec.openplanner.team/stops/CMsacm1"], ["https://tec.openplanner.team/stops/LaAgold1", "https://tec.openplanner.team/stops/LaAgold2"], ["https://tec.openplanner.team/stops/X907acb", "https://tec.openplanner.team/stops/X907ada"], ["https://tec.openplanner.team/stops/LSPcomm1", "https://tec.openplanner.team/stops/LSPcomm2"], ["https://tec.openplanner.team/stops/H2ma204a", "https://tec.openplanner.team/stops/H2ma208a"], ["https://tec.openplanner.team/stops/H1mg108a", "https://tec.openplanner.team/stops/H1mg108b"], ["https://tec.openplanner.team/stops/H1mc126b", "https://tec.openplanner.team/stops/H1mc129b"], ["https://tec.openplanner.team/stops/H4ve134a", "https://tec.openplanner.team/stops/H4ve136a"], ["https://tec.openplanner.team/stops/N338aeb", "https://tec.openplanner.team/stops/N338afb"], ["https://tec.openplanner.team/stops/Bsaubra2", "https://tec.openplanner.team/stops/Bsaumlk3"], ["https://tec.openplanner.team/stops/H1gi118a", "https://tec.openplanner.team/stops/H1gi120b"], ["https://tec.openplanner.team/stops/LeUjuge1", "https://tec.openplanner.team/stops/LeUolen2"], ["https://tec.openplanner.team/stops/H1ma234a", "https://tec.openplanner.team/stops/H1ms281b"], ["https://tec.openplanner.team/stops/LPtrefa1", "https://tec.openplanner.team/stops/LRfcent1"], ["https://tec.openplanner.team/stops/H1je367a", "https://tec.openplanner.team/stops/H1qu112b"], ["https://tec.openplanner.team/stops/X899aba", "https://tec.openplanner.team/stops/X899acb"], ["https://tec.openplanner.team/stops/N501hsa", "https://tec.openplanner.team/stops/N501ida"], ["https://tec.openplanner.team/stops/N302acb", "https://tec.openplanner.team/stops/N302adb"], ["https://tec.openplanner.team/stops/Bwancal1", "https://tec.openplanner.team/stops/Bwanorp2"], ["https://tec.openplanner.team/stops/LHTcerc4", "https://tec.openplanner.team/stops/LHTeg--1"], ["https://tec.openplanner.team/stops/Bitrcen1", "https://tec.openplanner.team/stops/Bitrmon1"], ["https://tec.openplanner.team/stops/Cjucouc2", "https://tec.openplanner.team/stops/Cjupuis2"], ["https://tec.openplanner.team/stops/NL74ajb", "https://tec.openplanner.team/stops/NL75aca"], ["https://tec.openplanner.team/stops/H1gg114a", "https://tec.openplanner.team/stops/H1gg116a"], ["https://tec.openplanner.team/stops/LiVkreu1", "https://tec.openplanner.team/stops/LiVkreu2"], ["https://tec.openplanner.team/stops/N308abb", "https://tec.openplanner.team/stops/N385adb"], ["https://tec.openplanner.team/stops/H4eh104b", "https://tec.openplanner.team/stops/H4po124a"], ["https://tec.openplanner.team/stops/X747abb", "https://tec.openplanner.team/stops/X747acb"], ["https://tec.openplanner.team/stops/LBSvi521", "https://tec.openplanner.team/stops/LBSvi522"], ["https://tec.openplanner.team/stops/H5pe132b", "https://tec.openplanner.team/stops/H5pe142a"], ["https://tec.openplanner.team/stops/Clggrfe1", "https://tec.openplanner.team/stops/Clgmaco2"], ["https://tec.openplanner.team/stops/Bdlmgla3", "https://tec.openplanner.team/stops/Bdlmgla4"], ["https://tec.openplanner.team/stops/N544ada", "https://tec.openplanner.team/stops/N544adb"], ["https://tec.openplanner.team/stops/LREheyd1", "https://tec.openplanner.team/stops/LRErive2"], ["https://tec.openplanner.team/stops/N321aba", "https://tec.openplanner.team/stops/N321ada"], ["https://tec.openplanner.team/stops/H1je223a", "https://tec.openplanner.team/stops/H1je369b"], ["https://tec.openplanner.team/stops/H1bd101b", "https://tec.openplanner.team/stops/H1hq126b"], ["https://tec.openplanner.team/stops/H1fl134a", "https://tec.openplanner.team/stops/H1je368a"], ["https://tec.openplanner.team/stops/X858aaa", "https://tec.openplanner.team/stops/X858agb"], ["https://tec.openplanner.team/stops/Btstbbu2", "https://tec.openplanner.team/stops/N524adb"], ["https://tec.openplanner.team/stops/N501ila", "https://tec.openplanner.team/stops/N501iqb"], ["https://tec.openplanner.team/stops/Llgchai1", "https://tec.openplanner.team/stops/Llgplop2"], ["https://tec.openplanner.team/stops/LLmpt--2", "https://tec.openplanner.team/stops/LLmvict2"], ["https://tec.openplanner.team/stops/Llgwild1", "https://tec.openplanner.team/stops/Llgwild8"], ["https://tec.openplanner.team/stops/Bbgncnd2", "https://tec.openplanner.team/stops/Bbgnvel2"], ["https://tec.openplanner.team/stops/Cgpchgo2", "https://tec.openplanner.team/stops/Cgpcime2"], ["https://tec.openplanner.team/stops/X620aeb", "https://tec.openplanner.team/stops/X620afa"], ["https://tec.openplanner.team/stops/H1po138a", "https://tec.openplanner.team/stops/H1po138b"], ["https://tec.openplanner.team/stops/LOljean1", "https://tec.openplanner.team/stops/LOltill1"], ["https://tec.openplanner.team/stops/H4ss155b", "https://tec.openplanner.team/stops/H4ss158a"], ["https://tec.openplanner.team/stops/H1hc126b", "https://tec.openplanner.team/stops/H1he103a"], ["https://tec.openplanner.team/stops/LaNmuhl3", "https://tec.openplanner.team/stops/LeMdorf2"], ["https://tec.openplanner.team/stops/Bwavbwa2", "https://tec.openplanner.team/stops/Bwavlon2"], ["https://tec.openplanner.team/stops/Bboufsm1", "https://tec.openplanner.team/stops/Bbstcoi1"], ["https://tec.openplanner.team/stops/LATguis2", "https://tec.openplanner.team/stops/LVLpane2"], ["https://tec.openplanner.team/stops/LClsacr1", "https://tec.openplanner.team/stops/LThchar1"], ["https://tec.openplanner.team/stops/LWAipes1", "https://tec.openplanner.team/stops/LWAor--2"], ["https://tec.openplanner.team/stops/LVbeg--1", "https://tec.openplanner.team/stops/LVbgend1"], ["https://tec.openplanner.team/stops/X618adb", "https://tec.openplanner.team/stops/X619afb"], ["https://tec.openplanner.team/stops/Balsbeg1", "https://tec.openplanner.team/stops/Bbrlrph1"], ["https://tec.openplanner.team/stops/H5wo129a", "https://tec.openplanner.team/stops/H5wo129b"], ["https://tec.openplanner.team/stops/N555aca", "https://tec.openplanner.team/stops/NC11ara"], ["https://tec.openplanner.team/stops/Cgystjo3", "https://tec.openplanner.team/stops/Cgystjo4"], ["https://tec.openplanner.team/stops/Loualbe2", "https://tec.openplanner.team/stops/Louroos2"], ["https://tec.openplanner.team/stops/LLbmalm2", "https://tec.openplanner.team/stops/LLbvith1"], ["https://tec.openplanner.team/stops/Cmaprov1", "https://tec.openplanner.team/stops/CMprov2"], ["https://tec.openplanner.team/stops/H5pe147b", "https://tec.openplanner.team/stops/H5pe147c"], ["https://tec.openplanner.team/stops/X824aaa", "https://tec.openplanner.team/stops/X824aba"], ["https://tec.openplanner.team/stops/LoEauto2", "https://tec.openplanner.team/stops/LoEbach2"], ["https://tec.openplanner.team/stops/Becepro1", "https://tec.openplanner.team/stops/Beceres1"], ["https://tec.openplanner.team/stops/X608ala", "https://tec.openplanner.team/stops/X608ana"], ["https://tec.openplanner.team/stops/H1do108b", "https://tec.openplanner.team/stops/H1do117b"], ["https://tec.openplanner.team/stops/H4ma200b", "https://tec.openplanner.team/stops/H4ma203b"], ["https://tec.openplanner.team/stops/N141aaa", "https://tec.openplanner.team/stops/N146aeb"], ["https://tec.openplanner.team/stops/Lmopech2", "https://tec.openplanner.team/stops/Lmopota1"], ["https://tec.openplanner.team/stops/X725asa", "https://tec.openplanner.team/stops/X725aub"], ["https://tec.openplanner.team/stops/H4fr386a", "https://tec.openplanner.team/stops/H4fr392a"], ["https://tec.openplanner.team/stops/H5at104b", "https://tec.openplanner.team/stops/H5at116d"], ["https://tec.openplanner.team/stops/N531aib", "https://tec.openplanner.team/stops/N531ara"], ["https://tec.openplanner.team/stops/LETec--1", "https://tec.openplanner.team/stops/LETmagn1"], ["https://tec.openplanner.team/stops/H2ha134a", "https://tec.openplanner.team/stops/H2ha134b"], ["https://tec.openplanner.team/stops/Llggerm1", "https://tec.openplanner.team/stops/Llgtawe0"], ["https://tec.openplanner.team/stops/X758aea", "https://tec.openplanner.team/stops/X758aha"], ["https://tec.openplanner.team/stops/LNCchev4", "https://tec.openplanner.team/stops/LNCloui1"], ["https://tec.openplanner.team/stops/Cgzoctr1", "https://tec.openplanner.team/stops/Cgzoctr3"], ["https://tec.openplanner.team/stops/Bracgar1", "https://tec.openplanner.team/stops/Bracrpe1"], ["https://tec.openplanner.team/stops/Cfmchau1", "https://tec.openplanner.team/stops/Cfmnoci1"], ["https://tec.openplanner.team/stops/LMOecsp2", "https://tec.openplanner.team/stops/LMOfleu1"], ["https://tec.openplanner.team/stops/N501bwa", "https://tec.openplanner.team/stops/N501mib"], ["https://tec.openplanner.team/stops/Crebien3", "https://tec.openplanner.team/stops/Creespi1"], ["https://tec.openplanner.team/stops/N506bbb", "https://tec.openplanner.team/stops/N506bdb"], ["https://tec.openplanner.team/stops/H2tr245b", "https://tec.openplanner.team/stops/H2tr254a"], ["https://tec.openplanner.team/stops/LSssurl2", "https://tec.openplanner.team/stops/N506bma"], ["https://tec.openplanner.team/stops/H4hx114a", "https://tec.openplanner.team/stops/H4hx114b"], ["https://tec.openplanner.team/stops/LaM266-2", "https://tec.openplanner.team/stops/LaMbull2"], ["https://tec.openplanner.team/stops/LEnchan1", "https://tec.openplanner.team/stops/LEnchan2"], ["https://tec.openplanner.team/stops/X741aab", "https://tec.openplanner.team/stops/X741abb"], ["https://tec.openplanner.team/stops/LeUcroi1", "https://tec.openplanner.team/stops/LeUoe541"], ["https://tec.openplanner.team/stops/H1bu142a", "https://tec.openplanner.team/stops/H2ep172b"], ["https://tec.openplanner.team/stops/LSPentr1", "https://tec.openplanner.team/stops/LSProya1"], ["https://tec.openplanner.team/stops/LAx41--1", "https://tec.openplanner.team/stops/LAxchpl1"], ["https://tec.openplanner.team/stops/X685afa", "https://tec.openplanner.team/stops/X685ama"], ["https://tec.openplanner.team/stops/LOCeg--1", "https://tec.openplanner.team/stops/LOChuy-1"], ["https://tec.openplanner.team/stops/LWagare*", "https://tec.openplanner.team/stops/LWathir2"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N313abb"], ["https://tec.openplanner.team/stops/X741agb", "https://tec.openplanner.team/stops/X741ahb"], ["https://tec.openplanner.team/stops/Becebju2", "https://tec.openplanner.team/stops/H3br100b"], ["https://tec.openplanner.team/stops/Ccpetan2", "https://tec.openplanner.team/stops/H2ch125a"], ["https://tec.openplanner.team/stops/X640arb", "https://tec.openplanner.team/stops/X640asb"], ["https://tec.openplanner.team/stops/H1et101b", "https://tec.openplanner.team/stops/H1et102b"], ["https://tec.openplanner.team/stops/LeYgros1", "https://tec.openplanner.team/stops/LeYheid1"], ["https://tec.openplanner.team/stops/Bmoucnd1", "https://tec.openplanner.team/stops/Bmoucoq1"], ["https://tec.openplanner.team/stops/Cmmlong1", "https://tec.openplanner.team/stops/Cmmmarb1"], ["https://tec.openplanner.team/stops/Lagtilf2", "https://tec.openplanner.team/stops/Lcebois1"], ["https://tec.openplanner.team/stops/Ccybeau2", "https://tec.openplanner.team/stops/Crbrgar1"], ["https://tec.openplanner.team/stops/LBRmout4", "https://tec.openplanner.team/stops/LVHbrai1"], ["https://tec.openplanner.team/stops/N232bcb", "https://tec.openplanner.team/stops/N232bga"], ["https://tec.openplanner.team/stops/Llgavoc2", "https://tec.openplanner.team/stops/Llgrame2"], ["https://tec.openplanner.team/stops/LSIespe1", "https://tec.openplanner.team/stops/LSImewi2"], ["https://tec.openplanner.team/stops/LWenouv1", "https://tec.openplanner.team/stops/LWexhav2"], ["https://tec.openplanner.team/stops/H1ho122a", "https://tec.openplanner.team/stops/H1ho122c"], ["https://tec.openplanner.team/stops/H2na134b", "https://tec.openplanner.team/stops/H2na136a"], ["https://tec.openplanner.team/stops/X743aca", "https://tec.openplanner.team/stops/X743adb"], ["https://tec.openplanner.team/stops/N522ata", "https://tec.openplanner.team/stops/N576ama"], ["https://tec.openplanner.team/stops/Ladthom1", "https://tec.openplanner.team/stops/Lvehomb2"], ["https://tec.openplanner.team/stops/LCEcent1", "https://tec.openplanner.team/stops/LMIcamp1"], ["https://tec.openplanner.team/stops/H2ep144b", "https://tec.openplanner.team/stops/H2ep172a"], ["https://tec.openplanner.team/stops/LCHeg--2", "https://tec.openplanner.team/stops/Lprspra1"], ["https://tec.openplanner.team/stops/LAOeg--2", "https://tec.openplanner.team/stops/LBpecco2"], ["https://tec.openplanner.team/stops/H1pa110a", "https://tec.openplanner.team/stops/H1pa110b"], ["https://tec.openplanner.team/stops/H2ll257c", "https://tec.openplanner.team/stops/H2ll257d"], ["https://tec.openplanner.team/stops/X721ama", "https://tec.openplanner.team/stops/X721anb"], ["https://tec.openplanner.team/stops/Cfrfede1", "https://tec.openplanner.team/stops/Csdetan1"], ["https://tec.openplanner.team/stops/LHCkoul1", "https://tec.openplanner.team/stops/LHCmonu4"], ["https://tec.openplanner.team/stops/H5rx126b", "https://tec.openplanner.team/stops/H5rx127b"], ["https://tec.openplanner.team/stops/H1cu114a", "https://tec.openplanner.team/stops/H1cu122a"], ["https://tec.openplanner.team/stops/LLrmc--2", "https://tec.openplanner.team/stops/LLrmc--4"], ["https://tec.openplanner.team/stops/X764acb", "https://tec.openplanner.team/stops/X764adb"], ["https://tec.openplanner.team/stops/LREsoug2", "https://tec.openplanner.team/stops/LREsoug4"], ["https://tec.openplanner.team/stops/LPclaro1", "https://tec.openplanner.team/stops/LPctrog2"], ["https://tec.openplanner.team/stops/H1em106a", "https://tec.openplanner.team/stops/H1vb143a"], ["https://tec.openplanner.team/stops/Lghhaut2", "https://tec.openplanner.team/stops/Lghwass2"], ["https://tec.openplanner.team/stops/Ljekess2", "https://tec.openplanner.team/stops/Lseespe2"], ["https://tec.openplanner.team/stops/LWLhagi2", "https://tec.openplanner.team/stops/LXfsolw1"], ["https://tec.openplanner.team/stops/X626ada", "https://tec.openplanner.team/stops/X626aha"], ["https://tec.openplanner.team/stops/H4ne136b", "https://tec.openplanner.team/stops/H4te256a"], ["https://tec.openplanner.team/stops/LSDheus1", "https://tec.openplanner.team/stops/LSDvill2"], ["https://tec.openplanner.team/stops/H2fy119b", "https://tec.openplanner.team/stops/H2fy123a"], ["https://tec.openplanner.team/stops/LCxwade2", "https://tec.openplanner.team/stops/LJueg--1"], ["https://tec.openplanner.team/stops/LHGtige2", "https://tec.openplanner.team/stops/LHGtron2"], ["https://tec.openplanner.team/stops/Cbfcham3", "https://tec.openplanner.team/stops/Cbfpoti2"], ["https://tec.openplanner.team/stops/Ctufleu2", "https://tec.openplanner.team/stops/Cturoge2"], ["https://tec.openplanner.team/stops/LeUkirc1", "https://tec.openplanner.team/stops/LeUvoul1"], ["https://tec.openplanner.team/stops/H4ty334b", "https://tec.openplanner.team/stops/H4ty343b"], ["https://tec.openplanner.team/stops/Ljewale1", "https://tec.openplanner.team/stops/Ljewale3"], ["https://tec.openplanner.team/stops/NL80aba", "https://tec.openplanner.team/stops/NL80acb"], ["https://tec.openplanner.team/stops/LBWeg--4", "https://tec.openplanner.team/stops/LBWfusi2"], ["https://tec.openplanner.team/stops/LBKmoes1", "https://tec.openplanner.team/stops/LBKmoes2"], ["https://tec.openplanner.team/stops/Bbrycar1", "https://tec.openplanner.team/stops/Bbrycar2"], ["https://tec.openplanner.team/stops/X982apb", "https://tec.openplanner.team/stops/X982aub"], ["https://tec.openplanner.team/stops/X897agb", "https://tec.openplanner.team/stops/X897ara"], ["https://tec.openplanner.team/stops/LTPsalm1", "https://tec.openplanner.team/stops/LTPsalm2"], ["https://tec.openplanner.team/stops/H4ep131a", "https://tec.openplanner.team/stops/H4rm109a"], ["https://tec.openplanner.team/stops/LHUhaum2", "https://tec.openplanner.team/stops/LTimalv2"], ["https://tec.openplanner.team/stops/H3bi102a", "https://tec.openplanner.team/stops/H3bi108a"], ["https://tec.openplanner.team/stops/N145aca", "https://tec.openplanner.team/stops/N145aed"], ["https://tec.openplanner.team/stops/H1cu112b", "https://tec.openplanner.team/stops/H1cu121b"], ["https://tec.openplanner.team/stops/N211aya", "https://tec.openplanner.team/stops/N225aha"], ["https://tec.openplanner.team/stops/LkEbruc2", "https://tec.openplanner.team/stops/LkEkric2"], ["https://tec.openplanner.team/stops/Cjubert1", "https://tec.openplanner.team/stops/Cjufagn4"], ["https://tec.openplanner.team/stops/Cmlaili1", "https://tec.openplanner.team/stops/Cmtrdec2"], ["https://tec.openplanner.team/stops/H4av102a", "https://tec.openplanner.team/stops/H4av106b"], ["https://tec.openplanner.team/stops/N232bbb", "https://tec.openplanner.team/stops/N232bca"], ["https://tec.openplanner.team/stops/H1hn364a", "https://tec.openplanner.team/stops/H1ss349a"], ["https://tec.openplanner.team/stops/H2bh115b", "https://tec.openplanner.team/stops/H2mg142b"], ["https://tec.openplanner.team/stops/H1wz171a", "https://tec.openplanner.team/stops/H1wz171b"], ["https://tec.openplanner.team/stops/X359aha", "https://tec.openplanner.team/stops/X359aia"], ["https://tec.openplanner.team/stops/H4pl112b", "https://tec.openplanner.team/stops/H4wn126b"], ["https://tec.openplanner.team/stops/N424aea", "https://tec.openplanner.team/stops/N425aab"], ["https://tec.openplanner.team/stops/H5qu141b", "https://tec.openplanner.team/stops/H5qu144b"], ["https://tec.openplanner.team/stops/LHGvill2", "https://tec.openplanner.team/stops/LVltige2"], ["https://tec.openplanner.team/stops/X614agb", "https://tec.openplanner.team/stops/X616adb"], ["https://tec.openplanner.team/stops/N501hfa", "https://tec.openplanner.team/stops/N501hjb"], ["https://tec.openplanner.team/stops/H2bh109a", "https://tec.openplanner.team/stops/H2lc169b"], ["https://tec.openplanner.team/stops/Lprferm1", "https://tec.openplanner.team/stops/Lprtill2"], ["https://tec.openplanner.team/stops/Lagtilf1", "https://tec.openplanner.team/stops/Lagviad1"], ["https://tec.openplanner.team/stops/LOMdTEC1", "https://tec.openplanner.team/stops/LOMdTEC2"], ["https://tec.openplanner.team/stops/H4mt222a", "https://tec.openplanner.team/stops/H4mt222b"], ["https://tec.openplanner.team/stops/Beclfde1", "https://tec.openplanner.team/stops/Broncan2"], ["https://tec.openplanner.team/stops/N229aab", "https://tec.openplanner.team/stops/N232asa"], ["https://tec.openplanner.team/stops/X923adb", "https://tec.openplanner.team/stops/X923afa"], ["https://tec.openplanner.team/stops/H2ca115a", "https://tec.openplanner.team/stops/H2ch125a"], ["https://tec.openplanner.team/stops/LBiroch1", "https://tec.openplanner.team/stops/LDOastr2"], ["https://tec.openplanner.team/stops/Lvegazo1", "https://tec.openplanner.team/stops/Lveveou2"], ["https://tec.openplanner.team/stops/H4ag100a", "https://tec.openplanner.team/stops/H4ag101b"], ["https://tec.openplanner.team/stops/N543aga", "https://tec.openplanner.team/stops/N543byb"], ["https://tec.openplanner.team/stops/Bgrmver1", "https://tec.openplanner.team/stops/N522ara"], ["https://tec.openplanner.team/stops/H2hg149a", "https://tec.openplanner.team/stops/H2hg154b"], ["https://tec.openplanner.team/stops/LmNelis2", "https://tec.openplanner.team/stops/LmNha152"], ["https://tec.openplanner.team/stops/X619afa", "https://tec.openplanner.team/stops/X619afb"], ["https://tec.openplanner.team/stops/N501gbb", "https://tec.openplanner.team/stops/N501lda"], ["https://tec.openplanner.team/stops/H1wz169a", "https://tec.openplanner.team/stops/H3bi115b"], ["https://tec.openplanner.team/stops/H1vh137a", "https://tec.openplanner.team/stops/H3go103a"], ["https://tec.openplanner.team/stops/LCLstat2", "https://tec.openplanner.team/stops/NL35add"], ["https://tec.openplanner.team/stops/Lfllapi2", "https://tec.openplanner.team/stops/Lflroms5"], ["https://tec.openplanner.team/stops/Lfhweri1", "https://tec.openplanner.team/stops/Lfhweri2"], ["https://tec.openplanner.team/stops/LOMbrou1", "https://tec.openplanner.team/stops/LOMdodi1"], ["https://tec.openplanner.team/stops/N308ayb", "https://tec.openplanner.team/stops/N339aaa"], ["https://tec.openplanner.team/stops/N207aeb", "https://tec.openplanner.team/stops/N209aba"], ["https://tec.openplanner.team/stops/N577akb", "https://tec.openplanner.team/stops/N578aaa"], ["https://tec.openplanner.team/stops/H4ry141a", "https://tec.openplanner.team/stops/H4ry141b"], ["https://tec.openplanner.team/stops/Bwaubru1", "https://tec.openplanner.team/stops/Bwaubru2"], ["https://tec.openplanner.team/stops/LHMbach1", "https://tec.openplanner.team/stops/LHMbach4"], ["https://tec.openplanner.team/stops/H1gh162c", "https://tec.openplanner.team/stops/H1gh166b"], ["https://tec.openplanner.team/stops/LHUmess1", "https://tec.openplanner.team/stops/LHUmess2"], ["https://tec.openplanner.team/stops/H4ka187a", "https://tec.openplanner.team/stops/H4ty397a"], ["https://tec.openplanner.team/stops/Lcefoxh2", "https://tec.openplanner.team/stops/Lcelhon3"], ["https://tec.openplanner.team/stops/LLxcana2", "https://tec.openplanner.team/stops/LLxeclu2"], ["https://tec.openplanner.team/stops/LLrhaut3", "https://tec.openplanner.team/stops/LNOning2"], ["https://tec.openplanner.team/stops/Cmtpblo1", "https://tec.openplanner.team/stops/Cmtpblo2"], ["https://tec.openplanner.team/stops/Boppegl2", "https://tec.openplanner.team/stops/Bsrbbas1"], ["https://tec.openplanner.team/stops/H4mt220a", "https://tec.openplanner.team/stops/H4mx116b"], ["https://tec.openplanner.team/stops/X725bca", "https://tec.openplanner.team/stops/X725bcb"], ["https://tec.openplanner.team/stops/H4ft135c", "https://tec.openplanner.team/stops/H4ft135d"], ["https://tec.openplanner.team/stops/X615ala", "https://tec.openplanner.team/stops/X615alb"], ["https://tec.openplanner.team/stops/X754ana", "https://tec.openplanner.team/stops/X754anb"], ["https://tec.openplanner.team/stops/LVLruis1", "https://tec.openplanner.team/stops/LVLzoni2"], ["https://tec.openplanner.team/stops/X802aeb", "https://tec.openplanner.team/stops/X818aia"], ["https://tec.openplanner.team/stops/Cgzchab2", "https://tec.openplanner.team/stops/Cgzpjeu1"], ["https://tec.openplanner.team/stops/LrAgier1", "https://tec.openplanner.team/stops/LrAplat2"], ["https://tec.openplanner.team/stops/Cgofert1", "https://tec.openplanner.team/stops/Cvvgrsa1"], ["https://tec.openplanner.team/stops/LJSeg--1", "https://tec.openplanner.team/stops/LJSeg--2"], ["https://tec.openplanner.team/stops/Lceludg1", "https://tec.openplanner.team/stops/Lceviei2"], ["https://tec.openplanner.team/stops/H5qu139a", "https://tec.openplanner.team/stops/H5qu150b"], ["https://tec.openplanner.team/stops/H1ag104a", "https://tec.openplanner.team/stops/H1ag104b"], ["https://tec.openplanner.team/stops/X716afb", "https://tec.openplanner.team/stops/X736aia"], ["https://tec.openplanner.team/stops/LCxwarr2", "https://tec.openplanner.team/stops/LHEchex2"], ["https://tec.openplanner.team/stops/H3br110a", "https://tec.openplanner.team/stops/H3br110b"], ["https://tec.openplanner.team/stops/X729aab", "https://tec.openplanner.team/stops/X729aac"], ["https://tec.openplanner.team/stops/N574ada", "https://tec.openplanner.team/stops/N574aea"], ["https://tec.openplanner.team/stops/H2le151b", "https://tec.openplanner.team/stops/H2le152a"], ["https://tec.openplanner.team/stops/X624aca", "https://tec.openplanner.team/stops/X624ama"], ["https://tec.openplanner.team/stops/LWNbeto1", "https://tec.openplanner.team/stops/LWNbeto2"], ["https://tec.openplanner.team/stops/N534amg", "https://tec.openplanner.team/stops/N543ckb"], ["https://tec.openplanner.team/stops/Lagarde1", "https://tec.openplanner.team/stops/Lagcler2"], ["https://tec.openplanner.team/stops/H4bh100b", "https://tec.openplanner.team/stops/H4bh105a"], ["https://tec.openplanner.team/stops/Bmargve1", "https://tec.openplanner.team/stops/Bvlvmar2"], ["https://tec.openplanner.team/stops/Bwatcpe1", "https://tec.openplanner.team/stops/Bwatvco1"], ["https://tec.openplanner.team/stops/X982bka", "https://tec.openplanner.team/stops/X982bkb"], ["https://tec.openplanner.team/stops/Ctubpos1", "https://tec.openplanner.team/stops/NC28aea"], ["https://tec.openplanner.team/stops/H4ch118a", "https://tec.openplanner.team/stops/H4vx364b"], ["https://tec.openplanner.team/stops/X624afb", "https://tec.openplanner.team/stops/X624alb"], ["https://tec.openplanner.team/stops/N501aoa", "https://tec.openplanner.team/stops/N501apb"], ["https://tec.openplanner.team/stops/N304abb", "https://tec.openplanner.team/stops/N315aaa"], ["https://tec.openplanner.team/stops/LBVclig2", "https://tec.openplanner.team/stops/LMAfali2"], ["https://tec.openplanner.team/stops/Braccen2", "https://tec.openplanner.team/stops/Braclin1"], ["https://tec.openplanner.team/stops/H4be103b", "https://tec.openplanner.team/stops/H4be112a"], ["https://tec.openplanner.team/stops/LATmale1", "https://tec.openplanner.team/stops/LWNwavr3"], ["https://tec.openplanner.team/stops/H4hg157a", "https://tec.openplanner.team/stops/H4hg160a"], ["https://tec.openplanner.team/stops/N241aca", "https://tec.openplanner.team/stops/N585alb"], ["https://tec.openplanner.team/stops/X727aha", "https://tec.openplanner.team/stops/X747aba"], ["https://tec.openplanner.team/stops/LHUanth2", "https://tec.openplanner.team/stops/LHUfont2"], ["https://tec.openplanner.team/stops/LJU51--1", "https://tec.openplanner.team/stops/LVSslin2"], ["https://tec.openplanner.team/stops/LPOleli2", "https://tec.openplanner.team/stops/LPOpass2"], ["https://tec.openplanner.team/stops/X801cfb", "https://tec.openplanner.team/stops/X801cla"], ["https://tec.openplanner.team/stops/Cjudaxi2", "https://tec.openplanner.team/stops/Cjurevo2"], ["https://tec.openplanner.team/stops/Cstdona4", "https://tec.openplanner.team/stops/Cstdona5"], ["https://tec.openplanner.team/stops/Cbmzoni2", "https://tec.openplanner.team/stops/H1tt106a"], ["https://tec.openplanner.team/stops/N501hza", "https://tec.openplanner.team/stops/N501hzc"], ["https://tec.openplanner.team/stops/N534aya", "https://tec.openplanner.team/stops/N534byb"], ["https://tec.openplanner.team/stops/LaAbush*", "https://tec.openplanner.team/stops/LMastat4"], ["https://tec.openplanner.team/stops/N149aia", "https://tec.openplanner.team/stops/N149ala"], ["https://tec.openplanner.team/stops/LGMforg2", "https://tec.openplanner.team/stops/LGMvoue1"], ["https://tec.openplanner.team/stops/H4ag104b", "https://tec.openplanner.team/stops/H4ag105a"], ["https://tec.openplanner.team/stops/LSPbalm2", "https://tec.openplanner.team/stops/LSPwarf1"], ["https://tec.openplanner.team/stops/Lghwall*", "https://tec.openplanner.team/stops/Llochar1"], ["https://tec.openplanner.team/stops/H2lc168b", "https://tec.openplanner.team/stops/H2lc171a"], ["https://tec.openplanner.team/stops/LCvneu-1", "https://tec.openplanner.team/stops/LCvneuf2"], ["https://tec.openplanner.team/stops/H1ms273a", "https://tec.openplanner.team/stops/H1ms289a"], ["https://tec.openplanner.team/stops/N351agb", "https://tec.openplanner.team/stops/N351amb"], ["https://tec.openplanner.team/stops/Cthnord2", "https://tec.openplanner.team/stops/Cthpibl2"], ["https://tec.openplanner.team/stops/H1er112a", "https://tec.openplanner.team/stops/H1so142c"], ["https://tec.openplanner.team/stops/N110afa", "https://tec.openplanner.team/stops/N110aga"], ["https://tec.openplanner.team/stops/LBvviem2", "https://tec.openplanner.team/stops/LBvviem4"], ["https://tec.openplanner.team/stops/X926aab", "https://tec.openplanner.team/stops/X927aaa"], ["https://tec.openplanner.team/stops/LTHec--1", "https://tec.openplanner.team/stops/LTHjevo1"], ["https://tec.openplanner.team/stops/H2ll200a", "https://tec.openplanner.team/stops/H2ll200b"], ["https://tec.openplanner.team/stops/Btsleco1", "https://tec.openplanner.team/stops/Btsllib1"], ["https://tec.openplanner.team/stops/Lprhodi1", "https://tec.openplanner.team/stops/Lprorem1"], ["https://tec.openplanner.team/stops/Cgy4bra2", "https://tec.openplanner.team/stops/Cgylouv2"], ["https://tec.openplanner.team/stops/H1ba105a", "https://tec.openplanner.team/stops/H1te190a"], ["https://tec.openplanner.team/stops/N232ava", "https://tec.openplanner.team/stops/N232bha"], ["https://tec.openplanner.team/stops/LTIdonn2", "https://tec.openplanner.team/stops/LTIptme1"], ["https://tec.openplanner.team/stops/Btubfab2", "https://tec.openplanner.team/stops/Btubmfa1"], ["https://tec.openplanner.team/stops/Bhevhha1", "https://tec.openplanner.team/stops/Bovesnh2"], ["https://tec.openplanner.team/stops/X657afb", "https://tec.openplanner.team/stops/X657aha"], ["https://tec.openplanner.team/stops/Lpeptra1", "https://tec.openplanner.team/stops/LWenouv1"], ["https://tec.openplanner.team/stops/Canresi1", "https://tec.openplanner.team/stops/H2an102b"], ["https://tec.openplanner.team/stops/H1ba104b", "https://tec.openplanner.team/stops/H1ba119b"], ["https://tec.openplanner.team/stops/Cprvsar1", "https://tec.openplanner.team/stops/N554aaa"], ["https://tec.openplanner.team/stops/Clgmaco2", "https://tec.openplanner.team/stops/H1be103a"], ["https://tec.openplanner.team/stops/H1ms297b", "https://tec.openplanner.team/stops/H1ms935a"], ["https://tec.openplanner.team/stops/Canjon3", "https://tec.openplanner.team/stops/Cfocobe1"], ["https://tec.openplanner.team/stops/N343ada", "https://tec.openplanner.team/stops/X343aha"], ["https://tec.openplanner.team/stops/X614agb", "https://tec.openplanner.team/stops/X624aba"], ["https://tec.openplanner.team/stops/LaAhaup1", "https://tec.openplanner.team/stops/LaAmise1"], ["https://tec.openplanner.team/stops/Lbrdepo2", "https://tec.openplanner.team/stops/Lbrfagn1"], ["https://tec.openplanner.team/stops/H4bl105a", "https://tec.openplanner.team/stops/H4bl106b"], ["https://tec.openplanner.team/stops/Beclesp1", "https://tec.openplanner.team/stops/H2ec104b"], ["https://tec.openplanner.team/stops/Bhevhha1", "https://tec.openplanner.team/stops/Bhevl3l2"], ["https://tec.openplanner.team/stops/LBUmara2", "https://tec.openplanner.team/stops/NL30aja"], ["https://tec.openplanner.team/stops/Llgjenn1", "https://tec.openplanner.team/stops/Llgwiar4"], ["https://tec.openplanner.team/stops/X659ara", "https://tec.openplanner.team/stops/X660aga"], ["https://tec.openplanner.team/stops/LaMbrei1", "https://tec.openplanner.team/stops/LaMwies2"], ["https://tec.openplanner.team/stops/X636apa", "https://tec.openplanner.team/stops/X636bjb"], ["https://tec.openplanner.team/stops/Bgdhcsh1", "https://tec.openplanner.team/stops/Bgdhmet1"], ["https://tec.openplanner.team/stops/Cmqchap2", "https://tec.openplanner.team/stops/Cmqegl2"], ["https://tec.openplanner.team/stops/N302aea", "https://tec.openplanner.team/stops/N302afa"], ["https://tec.openplanner.team/stops/LWAbett2", "https://tec.openplanner.team/stops/LWAwila1"], ["https://tec.openplanner.team/stops/Brsg7fo2", "https://tec.openplanner.team/stops/Bwaunou1"], ["https://tec.openplanner.team/stops/N232bua", "https://tec.openplanner.team/stops/N232bub"], ["https://tec.openplanner.team/stops/Ljucomb1", "https://tec.openplanner.team/stops/Ljuprev1"], ["https://tec.openplanner.team/stops/LHXfont2", "https://tec.openplanner.team/stops/LHXn47-3"], ["https://tec.openplanner.team/stops/H1ml112a", "https://tec.openplanner.team/stops/H1ne146a"], ["https://tec.openplanner.team/stops/Louairl2", "https://tec.openplanner.team/stops/Lscchat1"], ["https://tec.openplanner.team/stops/N241aeb", "https://tec.openplanner.team/stops/N270aab"], ["https://tec.openplanner.team/stops/N337aeb", "https://tec.openplanner.team/stops/N337afb"], ["https://tec.openplanner.team/stops/Cmlener2", "https://tec.openplanner.team/stops/Cmllait1"], ["https://tec.openplanner.team/stops/Bbgepau1", "https://tec.openplanner.team/stops/Bwaveur1"], ["https://tec.openplanner.team/stops/H4ta119a", "https://tec.openplanner.team/stops/H4ta119b"], ["https://tec.openplanner.team/stops/X636bga", "https://tec.openplanner.team/stops/X649aca"], ["https://tec.openplanner.team/stops/N501isa", "https://tec.openplanner.team/stops/N501iwb"], ["https://tec.openplanner.team/stops/H4hq129b", "https://tec.openplanner.team/stops/H4hq133c"], ["https://tec.openplanner.team/stops/H4be146b", "https://tec.openplanner.team/stops/H5bl120b"], ["https://tec.openplanner.team/stops/Cmehels2", "https://tec.openplanner.team/stops/Cmerlme2"], ["https://tec.openplanner.team/stops/Bwavfbe2", "https://tec.openplanner.team/stops/Bwavnam3"], ["https://tec.openplanner.team/stops/X738adb", "https://tec.openplanner.team/stops/X754aha"], ["https://tec.openplanner.team/stops/X771abb", "https://tec.openplanner.team/stops/X773afb"], ["https://tec.openplanner.team/stops/Clsferr1", "https://tec.openplanner.team/stops/H1ls108b"], ["https://tec.openplanner.team/stops/H4ta126a", "https://tec.openplanner.team/stops/H4ta128b"], ["https://tec.openplanner.team/stops/LCogara2", "https://tec.openplanner.team/stops/LTPlegr2"], ["https://tec.openplanner.team/stops/Bjaurgo1", "https://tec.openplanner.team/stops/NR30abb"], ["https://tec.openplanner.team/stops/N531abb", "https://tec.openplanner.team/stops/N531aua"], ["https://tec.openplanner.team/stops/Llgcong3", "https://tec.openplanner.team/stops/Llgpier1"], ["https://tec.openplanner.team/stops/N874aia", "https://tec.openplanner.team/stops/N874aka"], ["https://tec.openplanner.team/stops/LVIacac1", "https://tec.openplanner.team/stops/LVItcm-1"], ["https://tec.openplanner.team/stops/N501fya", "https://tec.openplanner.team/stops/N501zaa"], ["https://tec.openplanner.team/stops/Btubbsc1", "https://tec.openplanner.team/stops/Btubcim1"], ["https://tec.openplanner.team/stops/X747acb", "https://tec.openplanner.team/stops/X747aia"], ["https://tec.openplanner.team/stops/Lbrptbr1", "https://tec.openplanner.team/stops/Llgbarb2"], ["https://tec.openplanner.team/stops/LVvbouv1", "https://tec.openplanner.team/stops/LVvbouv2"], ["https://tec.openplanner.team/stops/LGOdelv2", "https://tec.openplanner.team/stops/LHVeg--2"], ["https://tec.openplanner.team/stops/H2ll184b", "https://tec.openplanner.team/stops/H2ll188b"], ["https://tec.openplanner.team/stops/LNClila1", "https://tec.openplanner.team/stops/LRRcarr1"], ["https://tec.openplanner.team/stops/LbOdorf2", "https://tec.openplanner.team/stops/LbOhoff2"], ["https://tec.openplanner.team/stops/Bwavdmo2", "https://tec.openplanner.team/stops/Bwavvpr2"], ["https://tec.openplanner.team/stops/X650ada", "https://tec.openplanner.team/stops/X650ahb"], ["https://tec.openplanner.team/stops/LCxbeau1", "https://tec.openplanner.team/stops/LCxeg--1"], ["https://tec.openplanner.team/stops/N232ara", "https://tec.openplanner.team/stops/N232arb"], ["https://tec.openplanner.team/stops/X938aaa", "https://tec.openplanner.team/stops/X939aeb"], ["https://tec.openplanner.team/stops/H1ha182a", "https://tec.openplanner.team/stops/H1ha182b"], ["https://tec.openplanner.team/stops/X870agb", "https://tec.openplanner.team/stops/X870ahb"], ["https://tec.openplanner.team/stops/Bcrncor1", "https://tec.openplanner.team/stops/Bcrnsge2"], ["https://tec.openplanner.team/stops/N102aca", "https://tec.openplanner.team/stops/N104aaa"], ["https://tec.openplanner.team/stops/N552abb", "https://tec.openplanner.team/stops/N553aca"], ["https://tec.openplanner.team/stops/Bnivpeu1", "https://tec.openplanner.team/stops/Bnivver2"], ["https://tec.openplanner.team/stops/H1eu101b", "https://tec.openplanner.team/stops/H1eu103a"], ["https://tec.openplanner.team/stops/N308aha", "https://tec.openplanner.team/stops/N308aka"], ["https://tec.openplanner.team/stops/N501ida", "https://tec.openplanner.team/stops/N501nba"], ["https://tec.openplanner.team/stops/X398abb", "https://tec.openplanner.team/stops/X398aea"], ["https://tec.openplanner.team/stops/Llggee52", "https://tec.openplanner.team/stops/Llgrass1"], ["https://tec.openplanner.team/stops/LTamag2", "https://tec.openplanner.team/stops/LTamoul2"], ["https://tec.openplanner.team/stops/H4ar172a", "https://tec.openplanner.team/stops/H4ar173b"], ["https://tec.openplanner.team/stops/Ccugrtr1", "https://tec.openplanner.team/stops/Ccuplai2"], ["https://tec.openplanner.team/stops/X659aka", "https://tec.openplanner.team/stops/X659asa"], ["https://tec.openplanner.team/stops/N513acb", "https://tec.openplanner.team/stops/N513acd"], ["https://tec.openplanner.team/stops/Cgxwaut1", "https://tec.openplanner.team/stops/Cgxwaut2"], ["https://tec.openplanner.team/stops/Bohnmon1", "https://tec.openplanner.team/stops/Bohnrph2"], ["https://tec.openplanner.team/stops/LkEbbl-2", "https://tec.openplanner.team/stops/LkEkirc2"], ["https://tec.openplanner.team/stops/N109ada", "https://tec.openplanner.team/stops/N123ada"], ["https://tec.openplanner.team/stops/Cmobeau2", "https://tec.openplanner.team/stops/Cromart1"], ["https://tec.openplanner.team/stops/Cptberg1", "https://tec.openplanner.team/stops/Cpttraz1"], ["https://tec.openplanner.team/stops/Bnivfdu1", "https://tec.openplanner.team/stops/Clproi1"], ["https://tec.openplanner.team/stops/N110aba", "https://tec.openplanner.team/stops/N110ada"], ["https://tec.openplanner.team/stops/X663avb", "https://tec.openplanner.team/stops/X667aaa"], ["https://tec.openplanner.team/stops/Bbsivil1", "https://tec.openplanner.team/stops/Blilhay1"], ["https://tec.openplanner.team/stops/X921aib", "https://tec.openplanner.team/stops/X921arb"], ["https://tec.openplanner.team/stops/NC02aba", "https://tec.openplanner.team/stops/NC24aib"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X724ada"], ["https://tec.openplanner.team/stops/Cwfaldi1", "https://tec.openplanner.team/stops/Cwfreta1"], ["https://tec.openplanner.team/stops/H4te251a", "https://tec.openplanner.team/stops/H4te253b"], ["https://tec.openplanner.team/stops/Csocime2", "https://tec.openplanner.team/stops/Csoplac1"], ["https://tec.openplanner.team/stops/LAnchat1", "https://tec.openplanner.team/stops/LAncoup2"], ["https://tec.openplanner.team/stops/H4wa159a", "https://tec.openplanner.team/stops/H4wa159b"], ["https://tec.openplanner.team/stops/H4ty276b", "https://tec.openplanner.team/stops/H4ty299a"], ["https://tec.openplanner.team/stops/Chhclde2", "https://tec.openplanner.team/stops/Chhsncb1"], ["https://tec.openplanner.team/stops/H1wg124b", "https://tec.openplanner.team/stops/H1wg125b"], ["https://tec.openplanner.team/stops/Lmopast2", "https://tec.openplanner.team/stops/Lsnfoot2"], ["https://tec.openplanner.team/stops/H3so171a", "https://tec.openplanner.team/stops/H3so171b"], ["https://tec.openplanner.team/stops/Lhubarl1", "https://tec.openplanner.team/stops/LPoewer1"], ["https://tec.openplanner.team/stops/Cgymest1", "https://tec.openplanner.team/stops/Cgyrrep1"], ["https://tec.openplanner.team/stops/NL74acb", "https://tec.openplanner.team/stops/NL74afa"], ["https://tec.openplanner.team/stops/LWaccom1", "https://tec.openplanner.team/stops/LWahetr2"], ["https://tec.openplanner.team/stops/H1ca106b", "https://tec.openplanner.team/stops/H1ca108b"], ["https://tec.openplanner.team/stops/LLbpt--1", "https://tec.openplanner.team/stops/LLbquar2"], ["https://tec.openplanner.team/stops/Lsnvand1", "https://tec.openplanner.team/stops/Lsnvand3"], ["https://tec.openplanner.team/stops/N244adb", "https://tec.openplanner.team/stops/N244aea"], ["https://tec.openplanner.team/stops/Bmrllgr1", "https://tec.openplanner.team/stops/Bmrllgr2"], ["https://tec.openplanner.team/stops/X937aaa", "https://tec.openplanner.team/stops/X937aab"], ["https://tec.openplanner.team/stops/H4ef162a", "https://tec.openplanner.team/stops/H4ef164b"], ["https://tec.openplanner.team/stops/X636ada", "https://tec.openplanner.team/stops/X636adb"], ["https://tec.openplanner.team/stops/X681aha", "https://tec.openplanner.team/stops/X681aia"], ["https://tec.openplanner.team/stops/H4be114a", "https://tec.openplanner.team/stops/H4be147a"], ["https://tec.openplanner.team/stops/Bbeaneu4", "https://tec.openplanner.team/stops/Btlgfto1"], ["https://tec.openplanner.team/stops/H2lh129b", "https://tec.openplanner.team/stops/H2mm144b"], ["https://tec.openplanner.team/stops/X804apa", "https://tec.openplanner.team/stops/X882agb"], ["https://tec.openplanner.team/stops/N562bob", "https://tec.openplanner.team/stops/N562bwb"], ["https://tec.openplanner.team/stops/X615aab", "https://tec.openplanner.team/stops/X615afb"], ["https://tec.openplanner.team/stops/X637ara", "https://tec.openplanner.team/stops/X637arb"], ["https://tec.openplanner.team/stops/Lagchen1", "https://tec.openplanner.team/stops/Lkiecol2"], ["https://tec.openplanner.team/stops/N534bqa", "https://tec.openplanner.team/stops/N553aoa"], ["https://tec.openplanner.team/stops/N529aba", "https://tec.openplanner.team/stops/N529ahb"], ["https://tec.openplanner.team/stops/H4ty285c", "https://tec.openplanner.team/stops/H4ty287b"], ["https://tec.openplanner.team/stops/NL77adb", "https://tec.openplanner.team/stops/NL77afa"], ["https://tec.openplanner.team/stops/X661abb", "https://tec.openplanner.team/stops/X661aca"], ["https://tec.openplanner.team/stops/LHSfexh1", "https://tec.openplanner.team/stops/LHStrez1"], ["https://tec.openplanner.team/stops/Blascim1", "https://tec.openplanner.team/stops/Blascim2"], ["https://tec.openplanner.team/stops/Lfhtrca1", "https://tec.openplanner.team/stops/Lfhtrxc1"], ["https://tec.openplanner.team/stops/X768ada", "https://tec.openplanner.team/stops/X768aga"], ["https://tec.openplanner.team/stops/H1gh144a", "https://tec.openplanner.team/stops/H1je212b"], ["https://tec.openplanner.team/stops/X768aga", "https://tec.openplanner.team/stops/X768ahb"], ["https://tec.openplanner.team/stops/X713ajb", "https://tec.openplanner.team/stops/X713ajd"], ["https://tec.openplanner.team/stops/LbUhuge2", "https://tec.openplanner.team/stops/LhUkreu2"], ["https://tec.openplanner.team/stops/LAyabri2", "https://tec.openplanner.team/stops/Lre3che1"], ["https://tec.openplanner.team/stops/LSerout1", "https://tec.openplanner.team/stops/LSerout2"], ["https://tec.openplanner.team/stops/X620ada", "https://tec.openplanner.team/stops/X621aab"], ["https://tec.openplanner.team/stops/X923aja", "https://tec.openplanner.team/stops/X923ana"], ["https://tec.openplanner.team/stops/LkTgutl2", "https://tec.openplanner.team/stops/LwAkett1"], ["https://tec.openplanner.team/stops/X949afb", "https://tec.openplanner.team/stops/X949aga"], ["https://tec.openplanner.team/stops/Csecarr2", "https://tec.openplanner.team/stops/Csefour2"], ["https://tec.openplanner.team/stops/LFyec--1", "https://tec.openplanner.team/stops/LFypont1"], ["https://tec.openplanner.team/stops/H4tp146b", "https://tec.openplanner.team/stops/H4wp150c"], ["https://tec.openplanner.team/stops/X766acb", "https://tec.openplanner.team/stops/X791adb"], ["https://tec.openplanner.team/stops/X640ajb", "https://tec.openplanner.team/stops/X640aua"], ["https://tec.openplanner.team/stops/LkEkric1", "https://tec.openplanner.team/stops/LkEkric2"], ["https://tec.openplanner.team/stops/N506bha", "https://tec.openplanner.team/stops/N506bnb"], ["https://tec.openplanner.team/stops/X762ada", "https://tec.openplanner.team/stops/X762adb"], ["https://tec.openplanner.team/stops/Llgcorn1", "https://tec.openplanner.team/stops/Llgcorn3"], ["https://tec.openplanner.team/stops/LFdeg--2", "https://tec.openplanner.team/stops/LFdeg--4"], ["https://tec.openplanner.team/stops/H2hg266b", "https://tec.openplanner.team/stops/H2hg267a"], ["https://tec.openplanner.team/stops/H1ma230a", "https://tec.openplanner.team/stops/H1ob327b"], ["https://tec.openplanner.team/stops/Lmncasi1", "https://tec.openplanner.team/stops/Lmnrame2"], ["https://tec.openplanner.team/stops/N229aaa", "https://tec.openplanner.team/stops/N229adb"], ["https://tec.openplanner.team/stops/X746alb", "https://tec.openplanner.team/stops/X746ama"], ["https://tec.openplanner.team/stops/Cvlcen2", "https://tec.openplanner.team/stops/NH01aha"], ["https://tec.openplanner.team/stops/Ctychen3", "https://tec.openplanner.team/stops/N137aec"], ["https://tec.openplanner.team/stops/Cfcecol1", "https://tec.openplanner.team/stops/Cfcecol2"], ["https://tec.openplanner.team/stops/Ljhcarr1", "https://tec.openplanner.team/stops/Ljhmany2"], ["https://tec.openplanner.team/stops/LRmsmvo1", "https://tec.openplanner.team/stops/LRmsmvo2"], ["https://tec.openplanner.team/stops/X801cfa", "https://tec.openplanner.team/stops/X801cfb"], ["https://tec.openplanner.team/stops/Becepri2", "https://tec.openplanner.team/stops/H2ec103a"], ["https://tec.openplanner.team/stops/Bbaucba1", "https://tec.openplanner.team/stops/Bbaulos1"], ["https://tec.openplanner.team/stops/H5el102a", "https://tec.openplanner.team/stops/H5el110a"], ["https://tec.openplanner.team/stops/X307aaa", "https://tec.openplanner.team/stops/X314aaa"], ["https://tec.openplanner.team/stops/Cmlbruy2", "https://tec.openplanner.team/stops/Cmlsana1"], ["https://tec.openplanner.team/stops/H4hg159b", "https://tec.openplanner.team/stops/H4mv189c"], ["https://tec.openplanner.team/stops/Bitrecu2", "https://tec.openplanner.team/stops/Bitrgnt1"], ["https://tec.openplanner.team/stops/X880aca", "https://tec.openplanner.team/stops/X880afb"], ["https://tec.openplanner.team/stops/H1go169a", "https://tec.openplanner.team/stops/H1go174a"], ["https://tec.openplanner.team/stops/N513apa", "https://tec.openplanner.team/stops/N513arb"], ["https://tec.openplanner.team/stops/N223aba", "https://tec.openplanner.team/stops/N223abb"], ["https://tec.openplanner.team/stops/X624aja", "https://tec.openplanner.team/stops/X624ajb"], ["https://tec.openplanner.team/stops/X982akb", "https://tec.openplanner.team/stops/X982bzb"], ["https://tec.openplanner.team/stops/N221ada", "https://tec.openplanner.team/stops/X210azb"], ["https://tec.openplanner.team/stops/H1ms293a", "https://tec.openplanner.team/stops/H1ms296d"], ["https://tec.openplanner.team/stops/Lmobras2", "https://tec.openplanner.team/stops/Lmochpl1"], ["https://tec.openplanner.team/stops/N123aaa", "https://tec.openplanner.team/stops/N150aea"], ["https://tec.openplanner.team/stops/N542aac", "https://tec.openplanner.team/stops/N542aoa"], ["https://tec.openplanner.team/stops/Bsences1", "https://tec.openplanner.team/stops/Bsences2"], ["https://tec.openplanner.team/stops/X876afa", "https://tec.openplanner.team/stops/X877aia"], ["https://tec.openplanner.team/stops/LPLmonu1", "https://tec.openplanner.team/stops/LPLstri1"], ["https://tec.openplanner.team/stops/Bbeaap51", "https://tec.openplanner.team/stops/Bbealbu4"], ["https://tec.openplanner.team/stops/H4ga160a", "https://tec.openplanner.team/stops/H4ha170b"], ["https://tec.openplanner.team/stops/LSZstoc1", "https://tec.openplanner.team/stops/LSZstoc2"], ["https://tec.openplanner.team/stops/X651aca", "https://tec.openplanner.team/stops/X651ada"], ["https://tec.openplanner.team/stops/LFOchab2", "https://tec.openplanner.team/stops/LVlledo2"], ["https://tec.openplanner.team/stops/N538ayb", "https://tec.openplanner.team/stops/N538bab"], ["https://tec.openplanner.team/stops/N511aja", "https://tec.openplanner.team/stops/N511asa"], ["https://tec.openplanner.team/stops/LMffoot1", "https://tec.openplanner.team/stops/LVHbrai2"], ["https://tec.openplanner.team/stops/H4ka185b", "https://tec.openplanner.team/stops/H4mt218a"], ["https://tec.openplanner.team/stops/LClange2", "https://tec.openplanner.team/stops/LLMjacq1"], ["https://tec.openplanner.team/stops/Bsamlon1", "https://tec.openplanner.team/stops/Bsamlon2"], ["https://tec.openplanner.team/stops/Bmsgfon2", "https://tec.openplanner.team/stops/Bmsgstj1"], ["https://tec.openplanner.team/stops/Clbchlo2", "https://tec.openplanner.team/stops/Cthrwai1"], ["https://tec.openplanner.team/stops/H5gr135a", "https://tec.openplanner.team/stops/H5qu144b"], ["https://tec.openplanner.team/stops/X996aca", "https://tec.openplanner.team/stops/X996adb"], ["https://tec.openplanner.team/stops/N502acb", "https://tec.openplanner.team/stops/N510abb"], ["https://tec.openplanner.team/stops/LAwec--1", "https://tec.openplanner.team/stops/LAwec--2"], ["https://tec.openplanner.team/stops/X992adb", "https://tec.openplanner.team/stops/X992aia"], ["https://tec.openplanner.team/stops/Bwlhppg2", "https://tec.openplanner.team/stops/Bwlhppg3"], ["https://tec.openplanner.team/stops/N217aab", "https://tec.openplanner.team/stops/N217aba"], ["https://tec.openplanner.team/stops/LSevitu2", "https://tec.openplanner.team/stops/LSevitu3"], ["https://tec.openplanner.team/stops/H1bo102a", "https://tec.openplanner.team/stops/H1te178a"], ["https://tec.openplanner.team/stops/H1je217b", "https://tec.openplanner.team/stops/H1je219b"], ["https://tec.openplanner.team/stops/N540afa", "https://tec.openplanner.team/stops/N540afb"], ["https://tec.openplanner.team/stops/LOMcabi2", "https://tec.openplanner.team/stops/LOMdTEC1"], ["https://tec.openplanner.team/stops/Cfmcent1", "https://tec.openplanner.team/stops/Cfmwaut1"], ["https://tec.openplanner.team/stops/Bchgbel1", "https://tec.openplanner.team/stops/Blontry2"], ["https://tec.openplanner.team/stops/LHTcarr1", "https://tec.openplanner.team/stops/LVIvert1"], ["https://tec.openplanner.team/stops/N549aeb", "https://tec.openplanner.team/stops/N577aab"], ["https://tec.openplanner.team/stops/LHAleru1", "https://tec.openplanner.team/stops/LHAstal1"], ["https://tec.openplanner.team/stops/Cmehame2", "https://tec.openplanner.team/stops/Cmewaya1"], ["https://tec.openplanner.team/stops/X738ada", "https://tec.openplanner.team/stops/X738aeb"], ["https://tec.openplanner.team/stops/Cflchap1", "https://tec.openplanner.team/stops/Cflmarc2"], ["https://tec.openplanner.team/stops/X811ama", "https://tec.openplanner.team/stops/X811ana"], ["https://tec.openplanner.team/stops/Lmopave1", "https://tec.openplanner.team/stops/Lmopave2"], ["https://tec.openplanner.team/stops/LHUecte1", "https://tec.openplanner.team/stops/LHUecte2"], ["https://tec.openplanner.team/stops/N208aab", "https://tec.openplanner.team/stops/N559acb"], ["https://tec.openplanner.team/stops/H1si157a", "https://tec.openplanner.team/stops/H1vt195a"], ["https://tec.openplanner.team/stops/H1ma237a", "https://tec.openplanner.team/stops/H1ob331b"], ["https://tec.openplanner.team/stops/LAUabat2", "https://tec.openplanner.team/stops/LAUneuv3"], ["https://tec.openplanner.team/stops/Cgzabau1", "https://tec.openplanner.team/stops/Cgzchen2"], ["https://tec.openplanner.team/stops/H2ch107b", "https://tec.openplanner.team/stops/H2lh130a"], ["https://tec.openplanner.team/stops/Lvccime2", "https://tec.openplanner.team/stops/Lvcpost1"], ["https://tec.openplanner.team/stops/N506beb", "https://tec.openplanner.team/stops/N506bib"], ["https://tec.openplanner.team/stops/LBdcime2", "https://tec.openplanner.team/stops/LLrfagn2"], ["https://tec.openplanner.team/stops/Bquebth3", "https://tec.openplanner.team/stops/Bquebuc1"], ["https://tec.openplanner.team/stops/H5bs102b", "https://tec.openplanner.team/stops/H5pe145b"], ["https://tec.openplanner.team/stops/Csa4mai2", "https://tec.openplanner.team/stops/Csasncb2"], ["https://tec.openplanner.team/stops/H1do114a", "https://tec.openplanner.team/stops/H1do117a"], ["https://tec.openplanner.team/stops/H2bh121b", "https://tec.openplanner.team/stops/H2fa108a"], ["https://tec.openplanner.team/stops/Bgemcro2", "https://tec.openplanner.team/stops/N522aeb"], ["https://tec.openplanner.team/stops/LAUmerc1", "https://tec.openplanner.team/stops/LRmmabr1"], ["https://tec.openplanner.team/stops/Lrc594-1", "https://tec.openplanner.team/stops/Lvopaqu1"], ["https://tec.openplanner.team/stops/N103abb", "https://tec.openplanner.team/stops/N106afa"], ["https://tec.openplanner.team/stops/Lemlami1", "https://tec.openplanner.team/stops/Lemlami2"], ["https://tec.openplanner.team/stops/X917aja", "https://tec.openplanner.team/stops/X917aka"], ["https://tec.openplanner.team/stops/Lroeg--2", "https://tec.openplanner.team/stops/Lroeg--4"], ["https://tec.openplanner.team/stops/Lgrbonn1", "https://tec.openplanner.team/stops/Lgrbonn3"], ["https://tec.openplanner.team/stops/H4og210a", "https://tec.openplanner.team/stops/H4og211b"], ["https://tec.openplanner.team/stops/LlgPRVo1", "https://tec.openplanner.team/stops/Lrcstad1"], ["https://tec.openplanner.team/stops/H5bs102c", "https://tec.openplanner.team/stops/H5pe145b"], ["https://tec.openplanner.team/stops/X999aeb", "https://tec.openplanner.team/stops/X999aoa"], ["https://tec.openplanner.team/stops/X925ana", "https://tec.openplanner.team/stops/X925ata"], ["https://tec.openplanner.team/stops/X359aab", "https://tec.openplanner.team/stops/X361aaa"], ["https://tec.openplanner.team/stops/H1mv242a", "https://tec.openplanner.team/stops/H1mv242b"], ["https://tec.openplanner.team/stops/LESathe1", "https://tec.openplanner.team/stops/LESecco1"], ["https://tec.openplanner.team/stops/Bbstchv2", "https://tec.openplanner.team/stops/Btancre1"], ["https://tec.openplanner.team/stops/H1wa132b", "https://tec.openplanner.team/stops/H1wa160b"], ["https://tec.openplanner.team/stops/LTNegli2", "https://tec.openplanner.team/stops/LTNmont1"], ["https://tec.openplanner.team/stops/X948alb", "https://tec.openplanner.team/stops/X948baa"], ["https://tec.openplanner.team/stops/LRchaie1", "https://tec.openplanner.team/stops/LRcsilo1"], ["https://tec.openplanner.team/stops/X731afa", "https://tec.openplanner.team/stops/X731aka"], ["https://tec.openplanner.team/stops/Cfrchro1", "https://tec.openplanner.team/stops/Cfrchro2"], ["https://tec.openplanner.team/stops/Cctkais1", "https://tec.openplanner.team/stops/Cctkais2"], ["https://tec.openplanner.team/stops/X750agb", "https://tec.openplanner.team/stops/X750bfa"], ["https://tec.openplanner.team/stops/X770aca", "https://tec.openplanner.team/stops/X770acb"], ["https://tec.openplanner.team/stops/X654agb", "https://tec.openplanner.team/stops/X654ahb"], ["https://tec.openplanner.team/stops/Lmochpl2", "https://tec.openplanner.team/stops/Lmodeni1"], ["https://tec.openplanner.team/stops/H1je221a", "https://tec.openplanner.team/stops/H1je221b"], ["https://tec.openplanner.team/stops/LNIdoma2", "https://tec.openplanner.team/stops/LSZjona2"], ["https://tec.openplanner.team/stops/LPutins2", "https://tec.openplanner.team/stops/LrDsage1"], ["https://tec.openplanner.team/stops/X619aea", "https://tec.openplanner.team/stops/X619afa"], ["https://tec.openplanner.team/stops/H1bb119b", "https://tec.openplanner.team/stops/H1bb120b"], ["https://tec.openplanner.team/stops/X663atb", "https://tec.openplanner.team/stops/X663ava"], ["https://tec.openplanner.team/stops/X939afb", "https://tec.openplanner.team/stops/X939aga"], ["https://tec.openplanner.team/stops/Ccheden2", "https://tec.openplanner.team/stops/Cchture1"], ["https://tec.openplanner.team/stops/LATdony1", "https://tec.openplanner.team/stops/LWNwavr3"], ["https://tec.openplanner.team/stops/NL81aeb", "https://tec.openplanner.team/stops/NL81afb"], ["https://tec.openplanner.team/stops/Cjupuis2", "https://tec.openplanner.team/stops/Clooues4"], ["https://tec.openplanner.team/stops/N310acb", "https://tec.openplanner.team/stops/N313aaa"], ["https://tec.openplanner.team/stops/H1gh168a", "https://tec.openplanner.team/stops/H1gh171a"], ["https://tec.openplanner.team/stops/LPRcasi1", "https://tec.openplanner.team/stops/LTRlonh2"], ["https://tec.openplanner.team/stops/Bquegob4", "https://tec.openplanner.team/stops/Brebmtg2"], ["https://tec.openplanner.team/stops/LLxconj1", "https://tec.openplanner.team/stops/LLxmonu2"], ["https://tec.openplanner.team/stops/Lstchu-1", "https://tec.openplanner.team/stops/Lsteduc1"], ["https://tec.openplanner.team/stops/N231aha", "https://tec.openplanner.team/stops/N291aab"], ["https://tec.openplanner.team/stops/N539aya", "https://tec.openplanner.team/stops/N539baa"], ["https://tec.openplanner.team/stops/X604afc", "https://tec.openplanner.team/stops/X633akb"], ["https://tec.openplanner.team/stops/Cmmptno1", "https://tec.openplanner.team/stops/Cmmramb2"], ["https://tec.openplanner.team/stops/N584avb", "https://tec.openplanner.team/stops/N584bnb"], ["https://tec.openplanner.team/stops/N501heb", "https://tec.openplanner.team/stops/N501mqa"], ["https://tec.openplanner.team/stops/LVSslin3", "https://tec.openplanner.team/stops/LVSslin4"], ["https://tec.openplanner.team/stops/Bgnvoha1", "https://tec.openplanner.team/stops/Bgnvoha2"], ["https://tec.openplanner.team/stops/X750alb", "https://tec.openplanner.team/stops/X750ama"], ["https://tec.openplanner.team/stops/LAMec--2", "https://tec.openplanner.team/stops/LAMrich2"], ["https://tec.openplanner.team/stops/H1bb121a", "https://tec.openplanner.team/stops/H1bb121b"], ["https://tec.openplanner.team/stops/N241aaa", "https://tec.openplanner.team/stops/N241aga"], ["https://tec.openplanner.team/stops/Cramadi1", "https://tec.openplanner.team/stops/Cramadi2"], ["https://tec.openplanner.team/stops/X661ara", "https://tec.openplanner.team/stops/X661arb"], ["https://tec.openplanner.team/stops/Lmlguis1", "https://tec.openplanner.team/stops/Lpomart1"], ["https://tec.openplanner.team/stops/Bwatmlo2", "https://tec.openplanner.team/stops/Bwatpcs1"], ["https://tec.openplanner.team/stops/Bbwacol2", "https://tec.openplanner.team/stops/Bwavdel2"], ["https://tec.openplanner.team/stops/LTHbelv1", "https://tec.openplanner.team/stops/LTHroch2"], ["https://tec.openplanner.team/stops/LJAbois1", "https://tec.openplanner.team/stops/Lmnjeha2"], ["https://tec.openplanner.team/stops/N542aoa", "https://tec.openplanner.team/stops/N542aqa"], ["https://tec.openplanner.team/stops/X790ama", "https://tec.openplanner.team/stops/X793aha"], ["https://tec.openplanner.team/stops/N543bib", "https://tec.openplanner.team/stops/N543bta"], ["https://tec.openplanner.team/stops/Cfrcham1", "https://tec.openplanner.team/stops/Cfrcham2"], ["https://tec.openplanner.team/stops/X779aab", "https://tec.openplanner.team/stops/X779aba"], ["https://tec.openplanner.team/stops/Bbstasa1", "https://tec.openplanner.team/stops/Bbstasa2"], ["https://tec.openplanner.team/stops/H2sv213a", "https://tec.openplanner.team/stops/H2sv220b"], ["https://tec.openplanner.team/stops/LWHwaas1", "https://tec.openplanner.team/stops/LWHwaas3"], ["https://tec.openplanner.team/stops/LAMcoll1", "https://tec.openplanner.team/stops/LAMcoll2"], ["https://tec.openplanner.team/stops/LWAfabr1", "https://tec.openplanner.team/stops/LWAgare*"], ["https://tec.openplanner.team/stops/X758adb", "https://tec.openplanner.team/stops/X758amb"], ["https://tec.openplanner.team/stops/X730ada", "https://tec.openplanner.team/stops/X730aeb"], ["https://tec.openplanner.team/stops/Bbststa1", "https://tec.openplanner.team/stops/Blpgeco2"], ["https://tec.openplanner.team/stops/N315aaa", "https://tec.openplanner.team/stops/X361acb"], ["https://tec.openplanner.team/stops/LSzsurl1", "https://tec.openplanner.team/stops/LSzsurl2"], ["https://tec.openplanner.team/stops/Bbgever2", "https://tec.openplanner.team/stops/Bwavrij2"], ["https://tec.openplanner.team/stops/N501fbb", "https://tec.openplanner.team/stops/N501lyb"], ["https://tec.openplanner.team/stops/Bquebth2", "https://tec.openplanner.team/stops/Bquebuc1"], ["https://tec.openplanner.team/stops/X725aoa", "https://tec.openplanner.team/stops/X725bca"], ["https://tec.openplanner.team/stops/Bhen5ma1", "https://tec.openplanner.team/stops/Bhenasc2"], ["https://tec.openplanner.team/stops/LHYec--1", "https://tec.openplanner.team/stops/LHYlinc1"], ["https://tec.openplanner.team/stops/X398ada", "https://tec.openplanner.team/stops/X398aga"], ["https://tec.openplanner.team/stops/Barcast2", "https://tec.openplanner.team/stops/Bgzdcen1"], ["https://tec.openplanner.team/stops/X547ana", "https://tec.openplanner.team/stops/X547anb"], ["https://tec.openplanner.team/stops/LSBdelc2", "https://tec.openplanner.team/stops/LSGmale2"], ["https://tec.openplanner.team/stops/H4au144a", "https://tec.openplanner.team/stops/H4mb203a"], ["https://tec.openplanner.team/stops/X638afa", "https://tec.openplanner.team/stops/X638aga"], ["https://tec.openplanner.team/stops/N513awb", "https://tec.openplanner.team/stops/N521ada"], ["https://tec.openplanner.team/stops/Lsecris1", "https://tec.openplanner.team/stops/Lsefive1"], ["https://tec.openplanner.team/stops/Lfljupi1", "https://tec.openplanner.team/stops/Lrelier1"], ["https://tec.openplanner.team/stops/N101ala", "https://tec.openplanner.team/stops/N151aaa"], ["https://tec.openplanner.team/stops/X991aja", "https://tec.openplanner.team/stops/X991ajb"], ["https://tec.openplanner.team/stops/LToluik1", "https://tec.openplanner.team/stops/LTowijk2"], ["https://tec.openplanner.team/stops/Caibino1", "https://tec.openplanner.team/stops/N543cja"], ["https://tec.openplanner.team/stops/X750bmb", "https://tec.openplanner.team/stops/X784aaa"], ["https://tec.openplanner.team/stops/N101aka", "https://tec.openplanner.team/stops/N101aua"], ["https://tec.openplanner.team/stops/LGHplai2", "https://tec.openplanner.team/stops/X542aeb"], ["https://tec.openplanner.team/stops/H4os217a", "https://tec.openplanner.team/stops/H4os217b"], ["https://tec.openplanner.team/stops/Ccobinc1", "https://tec.openplanner.team/stops/Csoplac1"], ["https://tec.openplanner.team/stops/LVBvaux1", "https://tec.openplanner.team/stops/LWDchpl2"], ["https://tec.openplanner.team/stops/H4hn115b", "https://tec.openplanner.team/stops/H4lp125a"], ["https://tec.openplanner.team/stops/X663ama", "https://tec.openplanner.team/stops/X663aob"], ["https://tec.openplanner.team/stops/X664anb", "https://tec.openplanner.team/stops/X664asa"], ["https://tec.openplanner.team/stops/N501bfb", "https://tec.openplanner.team/stops/N501nbb"], ["https://tec.openplanner.team/stops/LGorysa1", "https://tec.openplanner.team/stops/LNEbois2"], ["https://tec.openplanner.team/stops/LHuetat2", "https://tec.openplanner.team/stops/LHurobi2"], ["https://tec.openplanner.team/stops/X811aka", "https://tec.openplanner.team/stops/X811alb"], ["https://tec.openplanner.team/stops/LOTferm1", "https://tec.openplanner.team/stops/LXhhaka1"], ["https://tec.openplanner.team/stops/N311aca", "https://tec.openplanner.team/stops/N360aab"], ["https://tec.openplanner.team/stops/H2mg136a", "https://tec.openplanner.team/stops/H2mg136b"], ["https://tec.openplanner.team/stops/N141apb", "https://tec.openplanner.team/stops/N426aaa"], ["https://tec.openplanner.team/stops/LTaabba2", "https://tec.openplanner.team/stops/LTaouch2"], ["https://tec.openplanner.team/stops/LBdcarr1", "https://tec.openplanner.team/stops/LBdcime1"], ["https://tec.openplanner.team/stops/LMEwerg1", "https://tec.openplanner.team/stops/LMEwerg2"], ["https://tec.openplanner.team/stops/Cjxetri1", "https://tec.openplanner.team/stops/Cjxvalh2"], ["https://tec.openplanner.team/stops/H1sp353b", "https://tec.openplanner.team/stops/H1ss351a"], ["https://tec.openplanner.team/stops/LSGbail2", "https://tec.openplanner.team/stops/LSGec--1"], ["https://tec.openplanner.team/stops/N531ajb", "https://tec.openplanner.team/stops/N534bxb"], ["https://tec.openplanner.team/stops/N501eta", "https://tec.openplanner.team/stops/N501kma"], ["https://tec.openplanner.team/stops/LFyanto1", "https://tec.openplanner.team/stops/LFypfei2"], ["https://tec.openplanner.team/stops/N141agb", "https://tec.openplanner.team/stops/N426aab"], ["https://tec.openplanner.team/stops/X394abb", "https://tec.openplanner.team/stops/X394aca"], ["https://tec.openplanner.team/stops/N501fjb", "https://tec.openplanner.team/stops/N501meb"], ["https://tec.openplanner.team/stops/LaAelis1", "https://tec.openplanner.team/stops/LaAelis2"], ["https://tec.openplanner.team/stops/H5bl117a", "https://tec.openplanner.team/stops/H5bl118b"], ["https://tec.openplanner.team/stops/X601cqa", "https://tec.openplanner.team/stops/X601cxa"], ["https://tec.openplanner.team/stops/N501hob", "https://tec.openplanner.team/stops/N501iqb"], ["https://tec.openplanner.team/stops/Bboueta2", "https://tec.openplanner.team/stops/Btancnd2"], ["https://tec.openplanner.team/stops/X789ada", "https://tec.openplanner.team/stops/X789ajb"], ["https://tec.openplanner.team/stops/H4ce105a", "https://tec.openplanner.team/stops/H4ce106b"], ["https://tec.openplanner.team/stops/Lveabat1", "https://tec.openplanner.team/stops/Lvecote2"], ["https://tec.openplanner.team/stops/H4be145b", "https://tec.openplanner.team/stops/H5bl122a"], ["https://tec.openplanner.team/stops/Lmoboeu1", "https://tec.openplanner.team/stops/Lmoknae4"], ["https://tec.openplanner.team/stops/H4ty314c", "https://tec.openplanner.team/stops/H4ty314d"], ["https://tec.openplanner.team/stops/Cfcrdpr1", "https://tec.openplanner.team/stops/Cfcrdpr2"], ["https://tec.openplanner.team/stops/H4mt215a", "https://tec.openplanner.team/stops/H4mt222b"], ["https://tec.openplanner.team/stops/N531ana", "https://tec.openplanner.team/stops/N576afb"], ["https://tec.openplanner.team/stops/LrAiter2", "https://tec.openplanner.team/stops/LrAplat2"], ["https://tec.openplanner.team/stops/LHumoul1", "https://tec.openplanner.team/stops/LHumoul2"], ["https://tec.openplanner.team/stops/Crg3arb1", "https://tec.openplanner.team/stops/Cthstre1"], ["https://tec.openplanner.team/stops/Cthha502", "https://tec.openplanner.team/stops/Cthrpoi2"], ["https://tec.openplanner.team/stops/LVIhall1", "https://tec.openplanner.team/stops/LVIlore1"], ["https://tec.openplanner.team/stops/N560adb", "https://tec.openplanner.team/stops/N562aza"], ["https://tec.openplanner.team/stops/H1ba110b", "https://tec.openplanner.team/stops/H1gh371a"], ["https://tec.openplanner.team/stops/X912afa", "https://tec.openplanner.team/stops/X912aia"], ["https://tec.openplanner.team/stops/N544aba", "https://tec.openplanner.team/stops/N550aka"], ["https://tec.openplanner.team/stops/Cchriga1", "https://tec.openplanner.team/stops/Cchriga2"], ["https://tec.openplanner.team/stops/H4hu117a", "https://tec.openplanner.team/stops/H4hu119b"], ["https://tec.openplanner.team/stops/X723agb", "https://tec.openplanner.team/stops/X723ala"], ["https://tec.openplanner.team/stops/H4ka187a", "https://tec.openplanner.team/stops/H4ty342b"], ["https://tec.openplanner.team/stops/X733abb", "https://tec.openplanner.team/stops/X734aob"], ["https://tec.openplanner.team/stops/LAuchau1", "https://tec.openplanner.team/stops/LAugara1"], ["https://tec.openplanner.team/stops/X765aca", "https://tec.openplanner.team/stops/X765ada"], ["https://tec.openplanner.team/stops/H1ms313a", "https://tec.openplanner.team/stops/H1ob361b"], ["https://tec.openplanner.team/stops/N211ara", "https://tec.openplanner.team/stops/N211bcb"], ["https://tec.openplanner.team/stops/N147abb", "https://tec.openplanner.team/stops/N147afb"], ["https://tec.openplanner.team/stops/LBMecol2", "https://tec.openplanner.team/stops/X982bmb"], ["https://tec.openplanner.team/stops/X898aja", "https://tec.openplanner.team/stops/X898anb"], ["https://tec.openplanner.team/stops/X908aja", "https://tec.openplanner.team/stops/X908aka"], ["https://tec.openplanner.team/stops/Bneeegl1", "https://tec.openplanner.team/stops/Bneesan2"], ["https://tec.openplanner.team/stops/X660abb", "https://tec.openplanner.team/stops/X660aca"], ["https://tec.openplanner.team/stops/LFNfo161", "https://tec.openplanner.team/stops/LFNlato1"], ["https://tec.openplanner.team/stops/N211aga", "https://tec.openplanner.team/stops/N212acb"], ["https://tec.openplanner.team/stops/Bwatpct1", "https://tec.openplanner.team/stops/Bwatpct2"], ["https://tec.openplanner.team/stops/LOucarr2", "https://tec.openplanner.team/stops/LOuplac3"], ["https://tec.openplanner.team/stops/LSPclai1", "https://tec.openplanner.team/stops/LSPgare*"], ["https://tec.openplanner.team/stops/LTEkerk2", "https://tec.openplanner.team/stops/LTEzinn2"], ["https://tec.openplanner.team/stops/N106aba", "https://tec.openplanner.team/stops/N106arb"], ["https://tec.openplanner.team/stops/N525aib", "https://tec.openplanner.team/stops/N525aza"], ["https://tec.openplanner.team/stops/H4ty282a", "https://tec.openplanner.team/stops/H4ty332a"], ["https://tec.openplanner.team/stops/LVncarr2", "https://tec.openplanner.team/stops/LVnrock2"], ["https://tec.openplanner.team/stops/N234afa", "https://tec.openplanner.team/stops/N234afb"], ["https://tec.openplanner.team/stops/Csefour1", "https://tec.openplanner.team/stops/N424aab"], ["https://tec.openplanner.team/stops/H1by109b", "https://tec.openplanner.team/stops/H1hq127a"], ["https://tec.openplanner.team/stops/LMHcant2", "https://tec.openplanner.team/stops/LMHec--1"], ["https://tec.openplanner.team/stops/Lhucime1", "https://tec.openplanner.team/stops/Lhurouh1"], ["https://tec.openplanner.team/stops/Bmrqpla1", "https://tec.openplanner.team/stops/H1mk117b"], ["https://tec.openplanner.team/stops/N230ada", "https://tec.openplanner.team/stops/N230aga"], ["https://tec.openplanner.team/stops/H2ma202b", "https://tec.openplanner.team/stops/H3bo103a"], ["https://tec.openplanner.team/stops/LWDplac2", "https://tec.openplanner.team/stops/LWDsieg2"], ["https://tec.openplanner.team/stops/H2ch104b", "https://tec.openplanner.team/stops/H2ch112a"], ["https://tec.openplanner.team/stops/H1eu107a", "https://tec.openplanner.team/stops/H1lb136b"], ["https://tec.openplanner.team/stops/X901abb", "https://tec.openplanner.team/stops/X901bra"], ["https://tec.openplanner.team/stops/LSSeg--2", "https://tec.openplanner.team/stops/LSSfont1"], ["https://tec.openplanner.team/stops/N310abb", "https://tec.openplanner.team/stops/N310aea"], ["https://tec.openplanner.team/stops/Bsenbmc2", "https://tec.openplanner.team/stops/Bsenpbi2"], ["https://tec.openplanner.team/stops/Cjudest2", "https://tec.openplanner.team/stops/Cloauln2"], ["https://tec.openplanner.team/stops/Lpeathe*", "https://tec.openplanner.team/stops/Lpejonc2"], ["https://tec.openplanner.team/stops/Cbmind1", "https://tec.openplanner.team/stops/Cbmind4"], ["https://tec.openplanner.team/stops/N120add", "https://tec.openplanner.team/stops/N301ajb"], ["https://tec.openplanner.team/stops/N387aaa", "https://tec.openplanner.team/stops/N387aab"], ["https://tec.openplanner.team/stops/Cmlgoff2", "https://tec.openplanner.team/stops/Cmlmatc1"], ["https://tec.openplanner.team/stops/N552aba", "https://tec.openplanner.team/stops/N552abb"], ["https://tec.openplanner.team/stops/H2mo131a", "https://tec.openplanner.team/stops/H2mo131b"], ["https://tec.openplanner.team/stops/H1sg142a", "https://tec.openplanner.team/stops/H1sg145a"], ["https://tec.openplanner.team/stops/Cgocnor4", "https://tec.openplanner.team/stops/Cjuaero2"], ["https://tec.openplanner.team/stops/LNAbass2", "https://tec.openplanner.team/stops/LTamag1"], ["https://tec.openplanner.team/stops/Cmlbruy1", "https://tec.openplanner.team/stops/Cmlsana1"], ["https://tec.openplanner.team/stops/H4te248a", "https://tec.openplanner.team/stops/H4te259a"], ["https://tec.openplanner.team/stops/Cjugohi2", "https://tec.openplanner.team/stops/Cjuquai2"], ["https://tec.openplanner.team/stops/H1ht131a", "https://tec.openplanner.team/stops/H1ht136a"], ["https://tec.openplanner.team/stops/H4tp146a", "https://tec.openplanner.team/stops/H4tu171b"], ["https://tec.openplanner.team/stops/X793aeb", "https://tec.openplanner.team/stops/X793agb"], ["https://tec.openplanner.team/stops/N501bpa", "https://tec.openplanner.team/stops/N999aab"], ["https://tec.openplanner.team/stops/Lagpass2", "https://tec.openplanner.team/stops/Lagstre1"], ["https://tec.openplanner.team/stops/Bptrcra2", "https://tec.openplanner.team/stops/Bptrlux1"], ["https://tec.openplanner.team/stops/Baeggar2", "https://tec.openplanner.team/stops/NR38aca"], ["https://tec.openplanner.team/stops/H4be103a", "https://tec.openplanner.team/stops/H4be104d"], ["https://tec.openplanner.team/stops/X809aba", "https://tec.openplanner.team/stops/X809abb"], ["https://tec.openplanner.team/stops/LmYkirc1", "https://tec.openplanner.team/stops/LmYkirc2"], ["https://tec.openplanner.team/stops/X780agb", "https://tec.openplanner.team/stops/X780aia"], ["https://tec.openplanner.team/stops/LBKmare1", "https://tec.openplanner.team/stops/LLnec--2"], ["https://tec.openplanner.team/stops/LLVfour1", "https://tec.openplanner.team/stops/LTB105-2"], ["https://tec.openplanner.team/stops/Crewaha1", "https://tec.openplanner.team/stops/Crewatb2"], ["https://tec.openplanner.team/stops/N150aea", "https://tec.openplanner.team/stops/N150aed"], ["https://tec.openplanner.team/stops/Buccdch1", "https://tec.openplanner.team/stops/Buccdst1"], ["https://tec.openplanner.team/stops/N533aea", "https://tec.openplanner.team/stops/N551afa"], ["https://tec.openplanner.team/stops/Lveleje1", "https://tec.openplanner.team/stops/Lveoctr3"], ["https://tec.openplanner.team/stops/LATlena2", "https://tec.openplanner.team/stops/LATpatu2"], ["https://tec.openplanner.team/stops/N225ahb", "https://tec.openplanner.team/stops/N226aba"], ["https://tec.openplanner.team/stops/Lbobuil1", "https://tec.openplanner.team/stops/Lbocorn2"], ["https://tec.openplanner.team/stops/Bwatpro1", "https://tec.openplanner.team/stops/Bwatsuc1"], ["https://tec.openplanner.team/stops/NL79aaa", "https://tec.openplanner.team/stops/NL79aab"], ["https://tec.openplanner.team/stops/N501dia", "https://tec.openplanner.team/stops/N501dib"], ["https://tec.openplanner.team/stops/H2pe161a", "https://tec.openplanner.team/stops/H2tr253a"], ["https://tec.openplanner.team/stops/LFPdeme1", "https://tec.openplanner.team/stops/LFProt-1"], ["https://tec.openplanner.team/stops/Bjancha2", "https://tec.openplanner.team/stops/Bjanegl3"], ["https://tec.openplanner.team/stops/H1eu102a", "https://tec.openplanner.team/stops/H1lb137a"], ["https://tec.openplanner.team/stops/X662agb", "https://tec.openplanner.team/stops/X662ara"], ["https://tec.openplanner.team/stops/H1by106b", "https://tec.openplanner.team/stops/H1mk116a"], ["https://tec.openplanner.team/stops/LHUbatt1", "https://tec.openplanner.team/stops/NL80aib"], ["https://tec.openplanner.team/stops/N501ega", "https://tec.openplanner.team/stops/N501kla"], ["https://tec.openplanner.team/stops/Cgzcour1", "https://tec.openplanner.team/stops/Cgzcour2"], ["https://tec.openplanner.team/stops/N512aga", "https://tec.openplanner.team/stops/N512agb"], ["https://tec.openplanner.team/stops/X804aib", "https://tec.openplanner.team/stops/X804aya"], ["https://tec.openplanner.team/stops/Lghchap1", "https://tec.openplanner.team/stops/Lghhoco2"], ["https://tec.openplanner.team/stops/Baegd741", "https://tec.openplanner.team/stops/Boffegl2"], ["https://tec.openplanner.team/stops/LLGec--*", "https://tec.openplanner.team/stops/LORvill2"], ["https://tec.openplanner.team/stops/Bbbksth2", "https://tec.openplanner.team/stops/Bhaawdr1"], ["https://tec.openplanner.team/stops/X695aea", "https://tec.openplanner.team/stops/X695afa"], ["https://tec.openplanner.team/stops/Crcfdom2", "https://tec.openplanner.team/stops/Crcrlf2"], ["https://tec.openplanner.team/stops/Bbstpon2", "https://tec.openplanner.team/stops/Bbststa1"], ["https://tec.openplanner.team/stops/LPAmc--2", "https://tec.openplanner.team/stops/LVSpota1"], ["https://tec.openplanner.team/stops/LCRfize1", "https://tec.openplanner.team/stops/LCRfize2"], ["https://tec.openplanner.team/stops/X781adb", "https://tec.openplanner.team/stops/X781aea"], ["https://tec.openplanner.team/stops/Bblabfo1", "https://tec.openplanner.team/stops/Bblavhu2"], ["https://tec.openplanner.team/stops/H2tr254a", "https://tec.openplanner.team/stops/H2tr254b"], ["https://tec.openplanner.team/stops/X542aaa", "https://tec.openplanner.team/stops/X750axa"], ["https://tec.openplanner.team/stops/N557aac", "https://tec.openplanner.team/stops/N557abb"], ["https://tec.openplanner.team/stops/X995afb", "https://tec.openplanner.team/stops/X995aga"], ["https://tec.openplanner.team/stops/X811anb", "https://tec.openplanner.team/stops/X811apb"], ["https://tec.openplanner.team/stops/Bpecdel1", "https://tec.openplanner.team/stops/Bpecdel2"], ["https://tec.openplanner.team/stops/X901agb", "https://tec.openplanner.team/stops/X902bba"], ["https://tec.openplanner.team/stops/Lghmont1", "https://tec.openplanner.team/stops/Lghmont2"], ["https://tec.openplanner.team/stops/LCtcref1", "https://tec.openplanner.team/stops/X780adb"], ["https://tec.openplanner.team/stops/LBegare1", "https://tec.openplanner.team/stops/LBevill1"], ["https://tec.openplanner.team/stops/Lstamph2", "https://tec.openplanner.team/stops/Lsttech2"], ["https://tec.openplanner.team/stops/LmDdenk2", "https://tec.openplanner.team/stops/LmDkirc2"], ["https://tec.openplanner.team/stops/H4ae100a", "https://tec.openplanner.team/stops/H4ae102b"], ["https://tec.openplanner.team/stops/LFsguil2", "https://tec.openplanner.team/stops/LFsphar1"], ["https://tec.openplanner.team/stops/X979aia", "https://tec.openplanner.team/stops/X979aib"], ["https://tec.openplanner.team/stops/Cstbasc1", "https://tec.openplanner.team/stops/Cstplac1"], ["https://tec.openplanner.team/stops/Blhumpo1", "https://tec.openplanner.team/stops/Blhumpo2"], ["https://tec.openplanner.team/stops/X802abb", "https://tec.openplanner.team/stops/X804aca"], ["https://tec.openplanner.team/stops/LOLcroi1", "https://tec.openplanner.team/stops/LOLvill1"], ["https://tec.openplanner.team/stops/LeUoe541", "https://tec.openplanner.team/stops/LHthest1"], ["https://tec.openplanner.team/stops/Cmmadma2", "https://tec.openplanner.team/stops/Cmmpast1"], ["https://tec.openplanner.team/stops/LBAcarr2", "https://tec.openplanner.team/stops/LBAfort2"], ["https://tec.openplanner.team/stops/LHUaron1", "https://tec.openplanner.team/stops/LHUgdpl1"], ["https://tec.openplanner.team/stops/X725aya", "https://tec.openplanner.team/stops/X725azb"], ["https://tec.openplanner.team/stops/N163aba", "https://tec.openplanner.team/stops/N163abb"], ["https://tec.openplanner.team/stops/Cauglac1", "https://tec.openplanner.team/stops/N543aza"], ["https://tec.openplanner.team/stops/X941aba", "https://tec.openplanner.team/stops/X941abb"], ["https://tec.openplanner.team/stops/N548aha", "https://tec.openplanner.team/stops/N569ada"], ["https://tec.openplanner.team/stops/X982blb", "https://tec.openplanner.team/stops/X982bld"], ["https://tec.openplanner.team/stops/Cmivert1", "https://tec.openplanner.team/stops/Cvtmaro1"], ["https://tec.openplanner.team/stops/Bwaak102", "https://tec.openplanner.team/stops/Bwaakap1"], ["https://tec.openplanner.team/stops/X653aaa", "https://tec.openplanner.team/stops/X653aab"], ["https://tec.openplanner.team/stops/LaMahof2", "https://tec.openplanner.team/stops/LaMpark2"], ["https://tec.openplanner.team/stops/Llgbass2", "https://tec.openplanner.team/stops/Llgfusc6"], ["https://tec.openplanner.team/stops/X351aba", "https://tec.openplanner.team/stops/X351aca"], ["https://tec.openplanner.team/stops/X601bla", "https://tec.openplanner.team/stops/X612acb"], ["https://tec.openplanner.team/stops/LCpegli2", "https://tec.openplanner.team/stops/LSPclai1"], ["https://tec.openplanner.team/stops/H4ro155a", "https://tec.openplanner.team/stops/H5pe127b"], ["https://tec.openplanner.team/stops/X801abc", "https://tec.openplanner.team/stops/X899abb"], ["https://tec.openplanner.team/stops/X769aea", "https://tec.openplanner.team/stops/X769aeb"], ["https://tec.openplanner.team/stops/LARauto3", "https://tec.openplanner.team/stops/LRIcent2"], ["https://tec.openplanner.team/stops/Croplom2", "https://tec.openplanner.team/stops/Croplom3"], ["https://tec.openplanner.team/stops/Bsrbbas1", "https://tec.openplanner.team/stops/Bsrbtil1"], ["https://tec.openplanner.team/stops/N508acb", "https://tec.openplanner.team/stops/N516aab"], ["https://tec.openplanner.team/stops/LTyh51-2", "https://tec.openplanner.team/stops/LTyhapp3"], ["https://tec.openplanner.team/stops/N501fxa", "https://tec.openplanner.team/stops/N501zba"], ["https://tec.openplanner.team/stops/H1to154a", "https://tec.openplanner.team/stops/H1to154b"], ["https://tec.openplanner.team/stops/Lvtlimi1", "https://tec.openplanner.team/stops/Lvtpata2"], ["https://tec.openplanner.team/stops/LAUabat1", "https://tec.openplanner.team/stops/LAUbour1"], ["https://tec.openplanner.team/stops/X804abb", "https://tec.openplanner.team/stops/X804cbb"], ["https://tec.openplanner.team/stops/X921afb", "https://tec.openplanner.team/stops/X921apa"], ["https://tec.openplanner.team/stops/N534ava", "https://tec.openplanner.team/stops/N534bbb"], ["https://tec.openplanner.team/stops/Bblamp5", "https://tec.openplanner.team/stops/Bblamsp4"], ["https://tec.openplanner.team/stops/LBjvill1", "https://tec.openplanner.team/stops/X575aib"], ["https://tec.openplanner.team/stops/H1br132a", "https://tec.openplanner.team/stops/H1br132b"], ["https://tec.openplanner.team/stops/LVLbovy2", "https://tec.openplanner.team/stops/LVLeg--2"], ["https://tec.openplanner.team/stops/LHNvill2", "https://tec.openplanner.team/stops/NL37aob"], ["https://tec.openplanner.team/stops/H1ms299a", "https://tec.openplanner.team/stops/H1ni322b"], ["https://tec.openplanner.team/stops/N506aba", "https://tec.openplanner.team/stops/N506bla"], ["https://tec.openplanner.team/stops/Bgntalt1", "https://tec.openplanner.team/stops/Bgntcoo1"], ["https://tec.openplanner.team/stops/X342abb", "https://tec.openplanner.team/stops/X354aca"], ["https://tec.openplanner.team/stops/LeLsied2", "https://tec.openplanner.team/stops/LeLzost2"], ["https://tec.openplanner.team/stops/Lgrtomb1", "https://tec.openplanner.team/stops/Lgrtomb2"], ["https://tec.openplanner.team/stops/Cwfcast2", "https://tec.openplanner.team/stops/N543bma"], ["https://tec.openplanner.team/stops/Ltihala2", "https://tec.openplanner.team/stops/Ltimarq2"], ["https://tec.openplanner.team/stops/LhOokat2", "https://tec.openplanner.team/stops/LhOzent1"], ["https://tec.openplanner.team/stops/X780aba", "https://tec.openplanner.team/stops/X780aeb"], ["https://tec.openplanner.team/stops/Csobrou1", "https://tec.openplanner.team/stops/Csostoc2"], ["https://tec.openplanner.team/stops/Bmarcha2", "https://tec.openplanner.team/stops/Bwagmco2"], ["https://tec.openplanner.team/stops/X612aab", "https://tec.openplanner.team/stops/X613aaa"], ["https://tec.openplanner.team/stops/X901aub", "https://tec.openplanner.team/stops/X901beb"], ["https://tec.openplanner.team/stops/Llgdarc1", "https://tec.openplanner.team/stops/Llghec-2"], ["https://tec.openplanner.team/stops/LStroch1", "https://tec.openplanner.team/stops/LStroch2"], ["https://tec.openplanner.team/stops/Bblasmo2", "https://tec.openplanner.team/stops/Bblatet1"], ["https://tec.openplanner.team/stops/Ljehotv1", "https://tec.openplanner.team/stops/Lsekubo4"], ["https://tec.openplanner.team/stops/H4tm140a", "https://tec.openplanner.team/stops/H4to139a"], ["https://tec.openplanner.team/stops/Llggeer3", "https://tec.openplanner.team/stops/Llgrass1"], ["https://tec.openplanner.team/stops/N580abb", "https://tec.openplanner.team/stops/N580adb"], ["https://tec.openplanner.team/stops/Bohnmes1", "https://tec.openplanner.team/stops/Bohnrph2"], ["https://tec.openplanner.team/stops/Bglarha1", "https://tec.openplanner.team/stops/Cglbras2"], ["https://tec.openplanner.team/stops/X714aea", "https://tec.openplanner.team/stops/X714aeb"], ["https://tec.openplanner.team/stops/X991afa", "https://tec.openplanner.team/stops/X991afb"], ["https://tec.openplanner.team/stops/Lhrlalo3", "https://tec.openplanner.team/stops/Lhrmare8"], ["https://tec.openplanner.team/stops/Cchbrou2", "https://tec.openplanner.team/stops/Cchmonu4"], ["https://tec.openplanner.team/stops/X801aua", "https://tec.openplanner.team/stops/X801ava"], ["https://tec.openplanner.team/stops/Lcefoxh2", "https://tec.openplanner.team/stops/Lcesart2"], ["https://tec.openplanner.team/stops/Csrcant1", "https://tec.openplanner.team/stops/NH01apa"], ["https://tec.openplanner.team/stops/Lsnferr1", "https://tec.openplanner.team/stops/Lsnmala4"], ["https://tec.openplanner.team/stops/X719aca", "https://tec.openplanner.team/stops/X719aeb"], ["https://tec.openplanner.team/stops/H1qv113a", "https://tec.openplanner.team/stops/H1qv114b"], ["https://tec.openplanner.team/stops/Llgchar1", "https://tec.openplanner.team/stops/Llgvero2"], ["https://tec.openplanner.team/stops/H4co146a", "https://tec.openplanner.team/stops/H4co146b"], ["https://tec.openplanner.team/stops/X820ada", "https://tec.openplanner.team/stops/X820adb"], ["https://tec.openplanner.team/stops/LBTfoot1", "https://tec.openplanner.team/stops/LBTwauc2"], ["https://tec.openplanner.team/stops/Cmmpjou2", "https://tec.openplanner.team/stops/Cmmpjou3"], ["https://tec.openplanner.team/stops/N577aeb", "https://tec.openplanner.team/stops/N577agb"], ["https://tec.openplanner.team/stops/X763aeb", "https://tec.openplanner.team/stops/X763afb"], ["https://tec.openplanner.team/stops/X615ala", "https://tec.openplanner.team/stops/X615apb"], ["https://tec.openplanner.team/stops/Lmieg--1", "https://tec.openplanner.team/stops/Lmieg--2"], ["https://tec.openplanner.team/stops/NH03afa", "https://tec.openplanner.team/stops/NH03aga"], ["https://tec.openplanner.team/stops/N352afb", "https://tec.openplanner.team/stops/N355ada"], ["https://tec.openplanner.team/stops/X979ada", "https://tec.openplanner.team/stops/X979aga"], ["https://tec.openplanner.team/stops/X902aub", "https://tec.openplanner.team/stops/X902ava"], ["https://tec.openplanner.team/stops/LTreg--1", "https://tec.openplanner.team/stops/LTrgibe1"], ["https://tec.openplanner.team/stops/LrDhund1", "https://tec.openplanner.team/stops/LrDhund2"], ["https://tec.openplanner.team/stops/N501gaa", "https://tec.openplanner.team/stops/N501iga"], ["https://tec.openplanner.team/stops/H1ho131a", "https://tec.openplanner.team/stops/H1sg147a"], ["https://tec.openplanner.team/stops/Bbsifmo1", "https://tec.openplanner.team/stops/Bhtipir2"], ["https://tec.openplanner.team/stops/H1bd101a", "https://tec.openplanner.team/stops/H1bd101b"], ["https://tec.openplanner.team/stops/X902bfb", "https://tec.openplanner.team/stops/X902bga"], ["https://tec.openplanner.team/stops/X982arb", "https://tec.openplanner.team/stops/X982asb"], ["https://tec.openplanner.team/stops/X773ajb", "https://tec.openplanner.team/stops/X954ahb"], ["https://tec.openplanner.team/stops/N308baa", "https://tec.openplanner.team/stops/N308bab"], ["https://tec.openplanner.team/stops/X770agb", "https://tec.openplanner.team/stops/X771ana"], ["https://tec.openplanner.team/stops/H2fa101a", "https://tec.openplanner.team/stops/H2fa103a"], ["https://tec.openplanner.team/stops/X982bob", "https://tec.openplanner.team/stops/X982brb"], ["https://tec.openplanner.team/stops/N103aia", "https://tec.openplanner.team/stops/N104ada"], ["https://tec.openplanner.team/stops/LaTcolo1", "https://tec.openplanner.team/stops/LaTcolo2"], ["https://tec.openplanner.team/stops/Btslpic5", "https://tec.openplanner.team/stops/Btslpic6"], ["https://tec.openplanner.team/stops/H4rs117a", "https://tec.openplanner.team/stops/H5rx112a"], ["https://tec.openplanner.team/stops/X804amb", "https://tec.openplanner.team/stops/X804byb"], ["https://tec.openplanner.team/stops/H1so132a", "https://tec.openplanner.team/stops/H1so141a"], ["https://tec.openplanner.team/stops/Lpebeco2", "https://tec.openplanner.team/stops/Lpeflec2"], ["https://tec.openplanner.team/stops/LdE179-2", "https://tec.openplanner.team/stops/LdEkreu1"], ["https://tec.openplanner.team/stops/Cfcsaut3", "https://tec.openplanner.team/stops/Cfcsaut4"], ["https://tec.openplanner.team/stops/LOUpres1", "https://tec.openplanner.team/stops/LOUvign2"], ["https://tec.openplanner.team/stops/H4bo116a", "https://tec.openplanner.team/stops/H4bo178a"], ["https://tec.openplanner.team/stops/LmRh%C3%B6fe2", "https://tec.openplanner.team/stops/LmRkape2"], ["https://tec.openplanner.team/stops/Bhoeboo1", "https://tec.openplanner.team/stops/Bovejei1"], ["https://tec.openplanner.team/stops/LeYdepo1", "https://tec.openplanner.team/stops/LeYfeld1"], ["https://tec.openplanner.team/stops/H1si156d", "https://tec.openplanner.team/stops/H1si163a"], ["https://tec.openplanner.team/stops/X926aea", "https://tec.openplanner.team/stops/X926aeb"], ["https://tec.openplanner.team/stops/Bwatgar3", "https://tec.openplanner.team/stops/Bwatgar4"], ["https://tec.openplanner.team/stops/X672aba", "https://tec.openplanner.team/stops/X672aob"], ["https://tec.openplanner.team/stops/N532ada", "https://tec.openplanner.team/stops/N533aqc"], ["https://tec.openplanner.team/stops/LLeeco-1", "https://tec.openplanner.team/stops/LLescie2"], ["https://tec.openplanner.team/stops/N167adc", "https://tec.openplanner.team/stops/N167aga"], ["https://tec.openplanner.team/stops/Chthttr2", "https://tec.openplanner.team/stops/Cthdeco2"], ["https://tec.openplanner.team/stops/Clodesc1", "https://tec.openplanner.team/stops/Clomakr2"], ["https://tec.openplanner.team/stops/X903ada", "https://tec.openplanner.team/stops/X903adb"], ["https://tec.openplanner.team/stops/LHe3com2", "https://tec.openplanner.team/stops/LHemoul1"], ["https://tec.openplanner.team/stops/X760aab", "https://tec.openplanner.team/stops/X760abb"], ["https://tec.openplanner.team/stops/LCocasc2", "https://tec.openplanner.team/stops/LRChote2"], ["https://tec.openplanner.team/stops/X901bma", "https://tec.openplanner.team/stops/X901bmb"], ["https://tec.openplanner.team/stops/H4fr385a", "https://tec.openplanner.team/stops/H4fr392a"], ["https://tec.openplanner.team/stops/H1qu103a", "https://tec.openplanner.team/stops/H1qu109a"], ["https://tec.openplanner.team/stops/X818amb", "https://tec.openplanner.team/stops/X818aub"], ["https://tec.openplanner.team/stops/N501chb", "https://tec.openplanner.team/stops/N501jla"], ["https://tec.openplanner.team/stops/X789aaa", "https://tec.openplanner.team/stops/X789aib"], ["https://tec.openplanner.team/stops/NC11arb", "https://tec.openplanner.team/stops/NC44ada"], ["https://tec.openplanner.team/stops/N531adb", "https://tec.openplanner.team/stops/N568abb"], ["https://tec.openplanner.team/stops/H1by100a", "https://tec.openplanner.team/stops/H1by101a"], ["https://tec.openplanner.team/stops/Cprcits2", "https://tec.openplanner.team/stops/Cprlpre1"], ["https://tec.openplanner.team/stops/LCRecmo1", "https://tec.openplanner.team/stops/LTyhapp2"], ["https://tec.openplanner.team/stops/LVIeg--1", "https://tec.openplanner.team/stops/LVIhv--2"], ["https://tec.openplanner.team/stops/LAwfans2", "https://tec.openplanner.team/stops/LXoroch2"], ["https://tec.openplanner.team/stops/H4hu116a", "https://tec.openplanner.team/stops/H4hu116b"], ["https://tec.openplanner.team/stops/LPRcha-*", "https://tec.openplanner.team/stops/LTRcite1"], ["https://tec.openplanner.team/stops/LHthest1", "https://tec.openplanner.team/stops/LMedoum1"], ["https://tec.openplanner.team/stops/X937aba", "https://tec.openplanner.team/stops/X952ama"], ["https://tec.openplanner.team/stops/LBkcarr4", "https://tec.openplanner.team/stops/LBkgrae1"], ["https://tec.openplanner.team/stops/Bsdampe1", "https://tec.openplanner.team/stops/Bsdampe2"], ["https://tec.openplanner.team/stops/LHEoutr1", "https://tec.openplanner.team/stops/LHEoutr2"], ["https://tec.openplanner.team/stops/LeUmalm2", "https://tec.openplanner.team/stops/LeUolen1"], ["https://tec.openplanner.team/stops/X747aab", "https://tec.openplanner.team/stops/X754azb"], ["https://tec.openplanner.team/stops/LHrlorc1", "https://tec.openplanner.team/stops/LHrprie1"], ["https://tec.openplanner.team/stops/X820aba", "https://tec.openplanner.team/stops/X820ada"], ["https://tec.openplanner.team/stops/N550aja", "https://tec.openplanner.team/stops/N550ajb"], ["https://tec.openplanner.team/stops/X651aeb", "https://tec.openplanner.team/stops/X651afb"], ["https://tec.openplanner.team/stops/LGmeg--1", "https://tec.openplanner.team/stops/LGmeg--2"], ["https://tec.openplanner.team/stops/Lprmana2", "https://tec.openplanner.team/stops/Lprmana3"], ["https://tec.openplanner.team/stops/X818ana", "https://tec.openplanner.team/stops/X820ama"], ["https://tec.openplanner.team/stops/N552aaa", "https://tec.openplanner.team/stops/N552adb"], ["https://tec.openplanner.team/stops/LSCc39-2", "https://tec.openplanner.team/stops/LVEtomb2"], ["https://tec.openplanner.team/stops/N355aba", "https://tec.openplanner.team/stops/N874agb"], ["https://tec.openplanner.team/stops/N509bda", "https://tec.openplanner.team/stops/N509bea"], ["https://tec.openplanner.team/stops/X595aea", "https://tec.openplanner.team/stops/X595afc"], ["https://tec.openplanner.team/stops/LCPconf2", "https://tec.openplanner.team/stops/LCPlacr2"], ["https://tec.openplanner.team/stops/X620aea", "https://tec.openplanner.team/stops/X620afa"], ["https://tec.openplanner.team/stops/LLOhest2", "https://tec.openplanner.team/stops/LVttarg1"], ["https://tec.openplanner.team/stops/Lgdegli1", "https://tec.openplanner.team/stops/Lgdegli2"], ["https://tec.openplanner.team/stops/Lrcstad1", "https://tec.openplanner.team/stops/Lrcstad2"], ["https://tec.openplanner.team/stops/Bovesog1", "https://tec.openplanner.team/stops/Bovevnd2"], ["https://tec.openplanner.team/stops/H4hx113a", "https://tec.openplanner.team/stops/H4hx122b"], ["https://tec.openplanner.team/stops/N245aaa", "https://tec.openplanner.team/stops/N245aab"], ["https://tec.openplanner.team/stops/Bhalgja2", "https://tec.openplanner.team/stops/Bhalh312"], ["https://tec.openplanner.team/stops/Cctmine1", "https://tec.openplanner.team/stops/Cctvill2"], ["https://tec.openplanner.team/stops/LBNburg2", "https://tec.openplanner.team/stops/LBNgarn2"], ["https://tec.openplanner.team/stops/LBahaut1", "https://tec.openplanner.team/stops/LBapeup1"], ["https://tec.openplanner.team/stops/Lanfran1", "https://tec.openplanner.team/stops/Lansarm1"], ["https://tec.openplanner.team/stops/N139aba", "https://tec.openplanner.team/stops/N139abb"], ["https://tec.openplanner.team/stops/X872ada", "https://tec.openplanner.team/stops/X872afb"], ["https://tec.openplanner.team/stops/LDmdegi1", "https://tec.openplanner.team/stops/LHocroi2"], ["https://tec.openplanner.team/stops/Bblasmo2", "https://tec.openplanner.team/stops/Bbsivi11"], ["https://tec.openplanner.team/stops/Bjaneco2", "https://tec.openplanner.team/stops/Bjanegl4"], ["https://tec.openplanner.team/stops/H1hr122a", "https://tec.openplanner.team/stops/H1hr122b"], ["https://tec.openplanner.team/stops/Clrcime2", "https://tec.openplanner.team/stops/CMleer1"], ["https://tec.openplanner.team/stops/X910aaa", "https://tec.openplanner.team/stops/X910aab"], ["https://tec.openplanner.team/stops/Bnivrsh1", "https://tec.openplanner.team/stops/Bnivrsh2"], ["https://tec.openplanner.team/stops/H4ml207a", "https://tec.openplanner.team/stops/H4ml209a"], ["https://tec.openplanner.team/stops/H1by100b", "https://tec.openplanner.team/stops/H1by100c"], ["https://tec.openplanner.team/stops/X626aaa", "https://tec.openplanner.team/stops/X626aka"], ["https://tec.openplanner.team/stops/Cmtduch1", "https://tec.openplanner.team/stops/Cmtfabi1"], ["https://tec.openplanner.team/stops/X758acb", "https://tec.openplanner.team/stops/X758ama"], ["https://tec.openplanner.team/stops/Bllnfeq1", "https://tec.openplanner.team/stops/Bllnpeq1"], ["https://tec.openplanner.team/stops/Cflgazo1", "https://tec.openplanner.team/stops/Cflsncb2"], ["https://tec.openplanner.team/stops/LSeaque2", "https://tec.openplanner.team/stops/LSeec--2"], ["https://tec.openplanner.team/stops/N501grc", "https://tec.openplanner.team/stops/N501mha"], ["https://tec.openplanner.team/stops/Ljeespe1", "https://tec.openplanner.team/stops/Lsetroq2"], ["https://tec.openplanner.team/stops/X359aka", "https://tec.openplanner.team/stops/X359alb"], ["https://tec.openplanner.team/stops/LSkmarq1", "https://tec.openplanner.team/stops/LSkyern1"], ["https://tec.openplanner.team/stops/H4we134b", "https://tec.openplanner.team/stops/H4we139b"], ["https://tec.openplanner.team/stops/X809abb", "https://tec.openplanner.team/stops/X809aca"], ["https://tec.openplanner.team/stops/Bezeksj1", "https://tec.openplanner.team/stops/Bezeksj2"], ["https://tec.openplanner.team/stops/H4ab102a", "https://tec.openplanner.team/stops/H4ab103a"], ["https://tec.openplanner.team/stops/N102aca", "https://tec.openplanner.team/stops/N152aac"], ["https://tec.openplanner.team/stops/Bbghsta3", "https://tec.openplanner.team/stops/Bbghsta4"], ["https://tec.openplanner.team/stops/N539alb", "https://tec.openplanner.team/stops/N539ana"], ["https://tec.openplanner.team/stops/Bbaucba1", "https://tec.openplanner.team/stops/Bnivpri2"], ["https://tec.openplanner.team/stops/X650aba", "https://tec.openplanner.team/stops/X650ajb"], ["https://tec.openplanner.team/stops/LMNentr2", "https://tec.openplanner.team/stops/LMNgend2"], ["https://tec.openplanner.team/stops/N505aga", "https://tec.openplanner.team/stops/N505agb"], ["https://tec.openplanner.team/stops/Bniv4co2", "https://tec.openplanner.team/stops/Bnivche2"], ["https://tec.openplanner.team/stops/LREairp1", "https://tec.openplanner.team/stops/LREchal2"], ["https://tec.openplanner.team/stops/N104aaa", "https://tec.openplanner.team/stops/N104aba"], ["https://tec.openplanner.team/stops/H5gr138b", "https://tec.openplanner.team/stops/H5st169a"], ["https://tec.openplanner.team/stops/H4cl112a", "https://tec.openplanner.team/stops/H4cl113a"], ["https://tec.openplanner.team/stops/X801ama", "https://tec.openplanner.team/stops/X899aib"], ["https://tec.openplanner.team/stops/X651aga", "https://tec.openplanner.team/stops/X659aya"], ["https://tec.openplanner.team/stops/X672afb", "https://tec.openplanner.team/stops/X672alb"], ["https://tec.openplanner.team/stops/X942afa", "https://tec.openplanner.team/stops/X943aeb"], ["https://tec.openplanner.team/stops/Cpccpas1", "https://tec.openplanner.team/stops/Cpcwaut1"], ["https://tec.openplanner.team/stops/LXHeg--1", "https://tec.openplanner.team/stops/LXHmart1"], ["https://tec.openplanner.team/stops/Lsepaqu1", "https://tec.openplanner.team/stops/Lsercha1"], ["https://tec.openplanner.team/stops/H1hg179b", "https://tec.openplanner.team/stops/H1hg181b"], ["https://tec.openplanner.team/stops/H2mo125a", "https://tec.openplanner.team/stops/H2mo125b"], ["https://tec.openplanner.team/stops/Clshafa1", "https://tec.openplanner.team/stops/H1ls130a"], ["https://tec.openplanner.team/stops/Cmmgadi2", "https://tec.openplanner.team/stops/Cmmlong2"], ["https://tec.openplanner.team/stops/X917ajb", "https://tec.openplanner.team/stops/X919anb"], ["https://tec.openplanner.team/stops/X398afa", "https://tec.openplanner.team/stops/X398aia"], ["https://tec.openplanner.team/stops/Ccychco1", "https://tec.openplanner.team/stops/Ccyga4"], ["https://tec.openplanner.team/stops/N514aga", "https://tec.openplanner.team/stops/N514agb"], ["https://tec.openplanner.team/stops/N352ada", "https://tec.openplanner.team/stops/N352adb"], ["https://tec.openplanner.team/stops/LhGkirc2", "https://tec.openplanner.team/stops/LhGlang1"], ["https://tec.openplanner.team/stops/Cmlthym1", "https://tec.openplanner.team/stops/Cmmbsit2"], ["https://tec.openplanner.team/stops/Cfcctru1", "https://tec.openplanner.team/stops/Cfcrerp1"], ["https://tec.openplanner.team/stops/LBBodet2", "https://tec.openplanner.team/stops/X222afa"], ["https://tec.openplanner.team/stops/X774acb", "https://tec.openplanner.team/stops/X774afa"], ["https://tec.openplanner.team/stops/H4ha171a", "https://tec.openplanner.team/stops/H4me213a"], ["https://tec.openplanner.team/stops/H2fa100a", "https://tec.openplanner.team/stops/H2fa112b"], ["https://tec.openplanner.team/stops/N551agc", "https://tec.openplanner.team/stops/N551ara"], ["https://tec.openplanner.team/stops/LSZarze3", "https://tec.openplanner.team/stops/LSZarze4"], ["https://tec.openplanner.team/stops/Bmarfjo2", "https://tec.openplanner.team/stops/Bmargve2"], ["https://tec.openplanner.team/stops/LsVprum4", "https://tec.openplanner.team/stops/LwLfuss1"], ["https://tec.openplanner.team/stops/Lsechan1", "https://tec.openplanner.team/stops/Lsefoot2"], ["https://tec.openplanner.team/stops/Bpielom1", "https://tec.openplanner.team/stops/Bpielom2"], ["https://tec.openplanner.team/stops/X614apb", "https://tec.openplanner.team/stops/X614aqa"], ["https://tec.openplanner.team/stops/Llgbavi1", "https://tec.openplanner.team/stops/Llgkurt1"], ["https://tec.openplanner.team/stops/H4ty311b", "https://tec.openplanner.team/stops/H4wc373b"], ["https://tec.openplanner.team/stops/H4bl106a", "https://tec.openplanner.team/stops/H4ga156a"], ["https://tec.openplanner.team/stops/LCpeg-*", "https://tec.openplanner.team/stops/LSPherd1"], ["https://tec.openplanner.team/stops/Lhrathe1", "https://tec.openplanner.team/stops/Lhrpepi2"], ["https://tec.openplanner.team/stops/Cci4bra1", "https://tec.openplanner.team/stops/Ccinali1"], ["https://tec.openplanner.team/stops/H2ha135c", "https://tec.openplanner.team/stops/H2hg153a"], ["https://tec.openplanner.team/stops/Btubhoq1", "https://tec.openplanner.team/stops/Btubhoq2"], ["https://tec.openplanner.team/stops/N565aba", "https://tec.openplanner.team/stops/N565abb"], ["https://tec.openplanner.team/stops/H1gh153b", "https://tec.openplanner.team/stops/H1je211a"], ["https://tec.openplanner.team/stops/Bndbgar1", "https://tec.openplanner.team/stops/Bndbgar2"], ["https://tec.openplanner.team/stops/LGMforg1", "https://tec.openplanner.team/stops/LGMforg2"], ["https://tec.openplanner.team/stops/LkOgren2", "https://tec.openplanner.team/stops/LkOzoll2"], ["https://tec.openplanner.team/stops/Bsmgegl2", "https://tec.openplanner.team/stops/Bsmgres1"], ["https://tec.openplanner.team/stops/H1ba105a", "https://tec.openplanner.team/stops/H1vt196a"], ["https://tec.openplanner.team/stops/Cnadrev2", "https://tec.openplanner.team/stops/Cnanoir1"], ["https://tec.openplanner.team/stops/X902abb", "https://tec.openplanner.team/stops/X902ata"], ["https://tec.openplanner.team/stops/X623aaa", "https://tec.openplanner.team/stops/X623aka"], ["https://tec.openplanner.team/stops/X757aha", "https://tec.openplanner.team/stops/X757ajb"], ["https://tec.openplanner.team/stops/X750aeb", "https://tec.openplanner.team/stops/X750bma"], ["https://tec.openplanner.team/stops/LLReg--2", "https://tec.openplanner.team/stops/LLStour2"], ["https://tec.openplanner.team/stops/X669agc", "https://tec.openplanner.team/stops/X669agd"], ["https://tec.openplanner.team/stops/LBmbara2", "https://tec.openplanner.team/stops/LJAbell2"], ["https://tec.openplanner.team/stops/LDpzol-2", "https://tec.openplanner.team/stops/LTEcamp2"], ["https://tec.openplanner.team/stops/X601aud", "https://tec.openplanner.team/stops/X601axb"], ["https://tec.openplanner.team/stops/X789aia", "https://tec.openplanner.team/stops/X789aib"], ["https://tec.openplanner.team/stops/X595ada", "https://tec.openplanner.team/stops/X595aea"], ["https://tec.openplanner.team/stops/X911aaa", "https://tec.openplanner.team/stops/X911awa"], ["https://tec.openplanner.team/stops/N501dhb", "https://tec.openplanner.team/stops/N501gcb"], ["https://tec.openplanner.team/stops/X602akb", "https://tec.openplanner.team/stops/X602alb"], ["https://tec.openplanner.team/stops/Bohnegl1", "https://tec.openplanner.team/stops/Bohngai1"], ["https://tec.openplanner.team/stops/X770aeb", "https://tec.openplanner.team/stops/X774ada"], ["https://tec.openplanner.team/stops/H1qu105a", "https://tec.openplanner.team/stops/H1qu110b"], ["https://tec.openplanner.team/stops/H1mc126a", "https://tec.openplanner.team/stops/H1mc128b"], ["https://tec.openplanner.team/stops/X661abb", "https://tec.openplanner.team/stops/X661axa"], ["https://tec.openplanner.team/stops/X725bbb", "https://tec.openplanner.team/stops/X725bdb"], ["https://tec.openplanner.team/stops/LFIcabi1", "https://tec.openplanner.team/stops/LMYmont2"], ["https://tec.openplanner.team/stops/H1ho141a", "https://tec.openplanner.team/stops/H1ho142b"], ["https://tec.openplanner.team/stops/LFPgeme2", "https://tec.openplanner.team/stops/LFPkerk2"], ["https://tec.openplanner.team/stops/LBPboir1", "https://tec.openplanner.team/stops/LRGmoul1"], ["https://tec.openplanner.team/stops/Lhrchar2", "https://tec.openplanner.team/stops/Lhrpaep2"], ["https://tec.openplanner.team/stops/N232aca", "https://tec.openplanner.team/stops/N232ada"], ["https://tec.openplanner.team/stops/H2jo161d", "https://tec.openplanner.team/stops/H2jo162a"], ["https://tec.openplanner.team/stops/X938ada", "https://tec.openplanner.team/stops/X938adb"], ["https://tec.openplanner.team/stops/H5bl143a", "https://tec.openplanner.team/stops/H5bl143b"], ["https://tec.openplanner.team/stops/Cfldand1", "https://tec.openplanner.team/stops/Cflsncb3"], ["https://tec.openplanner.team/stops/LBpbruy2", "https://tec.openplanner.team/stops/LBpcren1"], ["https://tec.openplanner.team/stops/Cwgmell3", "https://tec.openplanner.team/stops/Cwgmell4"], ["https://tec.openplanner.team/stops/X614aza", "https://tec.openplanner.team/stops/X614azb"], ["https://tec.openplanner.team/stops/Bdlmgla1", "https://tec.openplanner.team/stops/Bdlmgla2"], ["https://tec.openplanner.team/stops/Cfcecol2", "https://tec.openplanner.team/stops/Cfcrdpr1"], ["https://tec.openplanner.team/stops/Bbldass1", "https://tec.openplanner.team/stops/Bbldgar1"], ["https://tec.openplanner.team/stops/Bbiehpo1", "https://tec.openplanner.team/stops/Bbiehpo2"], ["https://tec.openplanner.team/stops/H1do119b", "https://tec.openplanner.team/stops/H1fy119a"], ["https://tec.openplanner.team/stops/N562bma", "https://tec.openplanner.team/stops/N562bob"], ["https://tec.openplanner.team/stops/N551aja", "https://tec.openplanner.team/stops/N551aka"], ["https://tec.openplanner.team/stops/LkEl1212", "https://tec.openplanner.team/stops/LMsvill1"], ["https://tec.openplanner.team/stops/LLrhest1", "https://tec.openplanner.team/stops/LLrquar2"], ["https://tec.openplanner.team/stops/Lmitroi1", "https://tec.openplanner.team/stops/Lvtbocl2"], ["https://tec.openplanner.team/stops/N549acb", "https://tec.openplanner.team/stops/N549aga"], ["https://tec.openplanner.team/stops/Lalhomb1", "https://tec.openplanner.team/stops/Lancoop1"], ["https://tec.openplanner.team/stops/Cmastch2", "https://tec.openplanner.team/stops/Cmastch4"], ["https://tec.openplanner.team/stops/Ctuplac2", "https://tec.openplanner.team/stops/NC28agb"], ["https://tec.openplanner.team/stops/Bwatfau1", "https://tec.openplanner.team/stops/Bwatlbs2"], ["https://tec.openplanner.team/stops/LCn4---1", "https://tec.openplanner.team/stops/LLUg82-2"], ["https://tec.openplanner.team/stops/H4ae102b", "https://tec.openplanner.team/stops/H5rx112a"], ["https://tec.openplanner.team/stops/Lghbonn1", "https://tec.openplanner.team/stops/Lghbonn2"], ["https://tec.openplanner.team/stops/H4bw100b", "https://tec.openplanner.team/stops/H4bw101b"], ["https://tec.openplanner.team/stops/X734aja", "https://tec.openplanner.team/stops/X953aaa"], ["https://tec.openplanner.team/stops/Lmncasi1", "https://tec.openplanner.team/stops/Lsmjalh1"], ["https://tec.openplanner.team/stops/LTRespe1", "https://tec.openplanner.team/stops/LTRoasi2"], ["https://tec.openplanner.team/stops/H1gy114a", "https://tec.openplanner.team/stops/H1gy114b"], ["https://tec.openplanner.team/stops/X659aga", "https://tec.openplanner.team/stops/X659agb"], ["https://tec.openplanner.team/stops/Louetan2", "https://tec.openplanner.team/stops/Lougoff2"], ["https://tec.openplanner.team/stops/X818aka", "https://tec.openplanner.team/stops/X818ala"], ["https://tec.openplanner.team/stops/X739aga", "https://tec.openplanner.team/stops/X739agb"], ["https://tec.openplanner.team/stops/Bglitro2", "https://tec.openplanner.team/stops/Bglitro3"], ["https://tec.openplanner.team/stops/LOVeg--1", "https://tec.openplanner.team/stops/LSogite1"], ["https://tec.openplanner.team/stops/N534aba", "https://tec.openplanner.team/stops/N534aga"], ["https://tec.openplanner.team/stops/Laggare1", "https://tec.openplanner.team/stops/Laggare2"], ["https://tec.openplanner.team/stops/H1cv101a", "https://tec.openplanner.team/stops/H1et100a"], ["https://tec.openplanner.team/stops/NC11ara", "https://tec.openplanner.team/stops/NC11arb"], ["https://tec.openplanner.team/stops/Bhaltre1", "https://tec.openplanner.team/stops/Bhaltre2"], ["https://tec.openplanner.team/stops/N308bca", "https://tec.openplanner.team/stops/N331adb"], ["https://tec.openplanner.team/stops/X733aea", "https://tec.openplanner.team/stops/X734apb"], ["https://tec.openplanner.team/stops/X750aga", "https://tec.openplanner.team/stops/X750alb"], ["https://tec.openplanner.team/stops/N254ada", "https://tec.openplanner.team/stops/N254adb"], ["https://tec.openplanner.team/stops/X788aca", "https://tec.openplanner.team/stops/X788ada"], ["https://tec.openplanner.team/stops/LPbover1", "https://tec.openplanner.team/stops/LPbpl--1"], ["https://tec.openplanner.team/stops/N115abb", "https://tec.openplanner.team/stops/N115afb"], ["https://tec.openplanner.team/stops/LRmhage7", "https://tec.openplanner.team/stops/LRmhage8"], ["https://tec.openplanner.team/stops/N270afa", "https://tec.openplanner.team/stops/N270aga"], ["https://tec.openplanner.team/stops/H2ma203b", "https://tec.openplanner.team/stops/H2ma209a"], ["https://tec.openplanner.team/stops/LFRbaro2", "https://tec.openplanner.team/stops/LFRhock4"], ["https://tec.openplanner.team/stops/H2mo117b", "https://tec.openplanner.team/stops/H2mo119a"], ["https://tec.openplanner.team/stops/H2hl110a", "https://tec.openplanner.team/stops/H2pe157a"], ["https://tec.openplanner.team/stops/H1gg116a", "https://tec.openplanner.team/stops/H1mb125a"], ["https://tec.openplanner.team/stops/Lkinyst2", "https://tec.openplanner.team/stops/Loureno2"], ["https://tec.openplanner.team/stops/X756agb", "https://tec.openplanner.team/stops/X756agd"], ["https://tec.openplanner.team/stops/X624adb", "https://tec.openplanner.team/stops/X624aga"], ["https://tec.openplanner.team/stops/Bottcbp2", "https://tec.openplanner.team/stops/Botteco2"], ["https://tec.openplanner.team/stops/LVBmonu1", "https://tec.openplanner.team/stops/LVBmonu3"], ["https://tec.openplanner.team/stops/H2lh132b", "https://tec.openplanner.team/stops/H2mo135a"], ["https://tec.openplanner.team/stops/LBTcarr1", "https://tec.openplanner.team/stops/LBTcarr2"], ["https://tec.openplanner.team/stops/Ctucamb1", "https://tec.openplanner.team/stops/Ctucamb2"], ["https://tec.openplanner.team/stops/N501aib", "https://tec.openplanner.team/stops/N501bqa"], ["https://tec.openplanner.team/stops/X637aaa", "https://tec.openplanner.team/stops/X637ara"], ["https://tec.openplanner.team/stops/N349aaa", "https://tec.openplanner.team/stops/N349aab"], ["https://tec.openplanner.team/stops/Cchheig1", "https://tec.openplanner.team/stops/Cchoues5"], ["https://tec.openplanner.team/stops/LAyfren1", "https://tec.openplanner.team/stops/LAyfren2"], ["https://tec.openplanner.team/stops/X657aeb", "https://tec.openplanner.team/stops/X658abb"], ["https://tec.openplanner.team/stops/NL77akb", "https://tec.openplanner.team/stops/NL78akb"], ["https://tec.openplanner.team/stops/X619aba", "https://tec.openplanner.team/stops/X619abc"], ["https://tec.openplanner.team/stops/N101apa", "https://tec.openplanner.team/stops/N101apb"], ["https://tec.openplanner.team/stops/H1mj127a", "https://tec.openplanner.team/stops/H1mj131a"], ["https://tec.openplanner.team/stops/N111aba", "https://tec.openplanner.team/stops/N111ada"], ["https://tec.openplanner.team/stops/H4lg102a", "https://tec.openplanner.team/stops/H4lg102b"], ["https://tec.openplanner.team/stops/N536aea", "https://tec.openplanner.team/stops/N580ada"], ["https://tec.openplanner.team/stops/LBSneuv1", "https://tec.openplanner.team/stops/LHStrez1"], ["https://tec.openplanner.team/stops/LsVgrun1", "https://tec.openplanner.team/stops/LsVsimo1"], ["https://tec.openplanner.team/stops/N301aga", "https://tec.openplanner.team/stops/N301ahb"], ["https://tec.openplanner.team/stops/X651afa", "https://tec.openplanner.team/stops/X658aaa"], ["https://tec.openplanner.team/stops/LCUjonc1", "https://tec.openplanner.team/stops/NL57ala"], ["https://tec.openplanner.team/stops/N501eba", "https://tec.openplanner.team/stops/N501ebz"], ["https://tec.openplanner.team/stops/H4ty299a", "https://tec.openplanner.team/stops/H4ty299c"], ["https://tec.openplanner.team/stops/H1ls105a", "https://tec.openplanner.team/stops/H1ls105b"], ["https://tec.openplanner.team/stops/LJEmalg1", "https://tec.openplanner.team/stops/LJEpaqu2"], ["https://tec.openplanner.team/stops/N551aob", "https://tec.openplanner.team/stops/N577aca"], ["https://tec.openplanner.team/stops/Bhevcur2", "https://tec.openplanner.team/stops/Bhvlbet2"], ["https://tec.openplanner.team/stops/H2sb223a", "https://tec.openplanner.team/stops/H2sb228c"], ["https://tec.openplanner.team/stops/LBgnach2", "https://tec.openplanner.team/stops/LGmeg--2"], ["https://tec.openplanner.team/stops/H4mt214a", "https://tec.openplanner.team/stops/H4mt214b"], ["https://tec.openplanner.team/stops/Bborppa1", "https://tec.openplanner.team/stops/Bitrpar1"], ["https://tec.openplanner.team/stops/LFlabba4", "https://tec.openplanner.team/stops/LFlpark*"], ["https://tec.openplanner.team/stops/N118adb", "https://tec.openplanner.team/stops/N118aea"], ["https://tec.openplanner.team/stops/N346aaa", "https://tec.openplanner.team/stops/N347aga"], ["https://tec.openplanner.team/stops/H4cw107b", "https://tec.openplanner.team/stops/H4lz155a"], ["https://tec.openplanner.team/stops/H4lz127a", "https://tec.openplanner.team/stops/H4lz127b"], ["https://tec.openplanner.team/stops/LBRmc--2", "https://tec.openplanner.team/stops/LBRmc--3"], ["https://tec.openplanner.team/stops/Bwaab122", "https://tec.openplanner.team/stops/Bwaak102"], ["https://tec.openplanner.team/stops/H5qu156b", "https://tec.openplanner.team/stops/H5qu156d"], ["https://tec.openplanner.team/stops/Bblacar2", "https://tec.openplanner.team/stops/Bbsicea2"], ["https://tec.openplanner.team/stops/X747aca", "https://tec.openplanner.team/stops/X747afb"], ["https://tec.openplanner.team/stops/X601axb", "https://tec.openplanner.team/stops/X601ayb"], ["https://tec.openplanner.team/stops/N103aeb", "https://tec.openplanner.team/stops/N131aeb"], ["https://tec.openplanner.team/stops/LBBlaga1", "https://tec.openplanner.team/stops/LBBmc--1"], ["https://tec.openplanner.team/stops/Bblacha2", "https://tec.openplanner.team/stops/Bwatcbo1"], ["https://tec.openplanner.team/stops/N235aca", "https://tec.openplanner.team/stops/N235afa"], ["https://tec.openplanner.team/stops/H4ka185b", "https://tec.openplanner.team/stops/H4ru243b"], ["https://tec.openplanner.team/stops/Cgotech1", "https://tec.openplanner.team/stops/Cwxchap1"], ["https://tec.openplanner.team/stops/Lselimi2", "https://tec.openplanner.team/stops/Lsestap3"], ["https://tec.openplanner.team/stops/Llgandr1", "https://tec.openplanner.team/stops/Llgfail2"], ["https://tec.openplanner.team/stops/Cmoprov1", "https://tec.openplanner.team/stops/Cmovies1"], ["https://tec.openplanner.team/stops/X775aea", "https://tec.openplanner.team/stops/X775aeb"], ["https://tec.openplanner.team/stops/N501bda", "https://tec.openplanner.team/stops/N501ihy"], ["https://tec.openplanner.team/stops/LWAcost2", "https://tec.openplanner.team/stops/LWApr%C3%A9s4"], ["https://tec.openplanner.team/stops/H1ni323a", "https://tec.openplanner.team/stops/H1ni323b"], ["https://tec.openplanner.team/stops/X869ada", "https://tec.openplanner.team/stops/X869adb"], ["https://tec.openplanner.team/stops/X773amb", "https://tec.openplanner.team/stops/X773ana"], ["https://tec.openplanner.team/stops/Lflgare1", "https://tec.openplanner.team/stops/Lfllapi4"], ["https://tec.openplanner.team/stops/Lancoop1", "https://tec.openplanner.team/stops/Lancoop2"], ["https://tec.openplanner.team/stops/LLrelec2", "https://tec.openplanner.team/stops/LLrhest1"], ["https://tec.openplanner.team/stops/LHNtill2", "https://tec.openplanner.team/stops/LPcforg1"], ["https://tec.openplanner.team/stops/H1te173a", "https://tec.openplanner.team/stops/H1te184a"], ["https://tec.openplanner.team/stops/H2pe158a", "https://tec.openplanner.team/stops/H2re167b"], ["https://tec.openplanner.team/stops/Bllnlb11", "https://tec.openplanner.team/stops/Bllnlb12"], ["https://tec.openplanner.team/stops/N106ada", "https://tec.openplanner.team/stops/N106adb"], ["https://tec.openplanner.team/stops/LPOleli1", "https://tec.openplanner.team/stops/LPOleli2"], ["https://tec.openplanner.team/stops/H4ta115a", "https://tec.openplanner.team/stops/H4ta127b"], ["https://tec.openplanner.team/stops/X684aab", "https://tec.openplanner.team/stops/X684abb"], ["https://tec.openplanner.team/stops/LHUfrai1", "https://tec.openplanner.team/stops/LHUvege2"], ["https://tec.openplanner.team/stops/Loutrix1", "https://tec.openplanner.team/stops/Loutrix2"], ["https://tec.openplanner.team/stops/Barqbco1", "https://tec.openplanner.team/stops/Barqpwa1"], ["https://tec.openplanner.team/stops/Cjuledo2", "https://tec.openplanner.team/stops/Cjuplco3"], ["https://tec.openplanner.team/stops/N521aca", "https://tec.openplanner.team/stops/N521acb"], ["https://tec.openplanner.team/stops/Bgnvbsi1", "https://tec.openplanner.team/stops/Blhugar1"], ["https://tec.openplanner.team/stops/H1ba100a", "https://tec.openplanner.team/stops/H1ba105b"], ["https://tec.openplanner.team/stops/X576agb", "https://tec.openplanner.team/stops/X782apa"], ["https://tec.openplanner.team/stops/Ceqcfra1", "https://tec.openplanner.team/stops/H1er107a"], ["https://tec.openplanner.team/stops/Bllnein4", "https://tec.openplanner.team/stops/Bllnrge2"], ["https://tec.openplanner.team/stops/Bblager1", "https://tec.openplanner.team/stops/Clpnapo1"], ["https://tec.openplanner.team/stops/N301akb", "https://tec.openplanner.team/stops/N301ama"], ["https://tec.openplanner.team/stops/NL76aib", "https://tec.openplanner.team/stops/NL76ama"], ["https://tec.openplanner.team/stops/H1fr107c", "https://tec.openplanner.team/stops/H1fr107d"], ["https://tec.openplanner.team/stops/H1sd344b", "https://tec.openplanner.team/stops/H1sd347a"], ["https://tec.openplanner.team/stops/N547aba", "https://tec.openplanner.team/stops/N547ada"], ["https://tec.openplanner.team/stops/X812aua", "https://tec.openplanner.team/stops/X812bea"], ["https://tec.openplanner.team/stops/Cchwate2", "https://tec.openplanner.team/stops/Cchwate4"], ["https://tec.openplanner.team/stops/Bezeksj4", "https://tec.openplanner.team/stops/Bneeblo2"], ["https://tec.openplanner.team/stops/Bwatcci2", "https://tec.openplanner.team/stops/Bwatceg2"], ["https://tec.openplanner.team/stops/H5qu142a", "https://tec.openplanner.team/stops/H5qu150b"], ["https://tec.openplanner.team/stops/Brsgfbl4", "https://tec.openplanner.team/stops/Brsggol1"], ["https://tec.openplanner.team/stops/X809ada", "https://tec.openplanner.team/stops/X809aeb"], ["https://tec.openplanner.team/stops/X738abb", "https://tec.openplanner.team/stops/X739aca"], ["https://tec.openplanner.team/stops/X342aaa", "https://tec.openplanner.team/stops/X354aga"], ["https://tec.openplanner.team/stops/LBkcarr3", "https://tec.openplanner.team/stops/LBkdahl1"], ["https://tec.openplanner.team/stops/X837afa", "https://tec.openplanner.team/stops/X837aja"], ["https://tec.openplanner.team/stops/H1cu118a", "https://tec.openplanner.team/stops/H1cu120b"], ["https://tec.openplanner.team/stops/H4pl121a", "https://tec.openplanner.team/stops/H4pl121b"], ["https://tec.openplanner.team/stops/N566aea", "https://tec.openplanner.team/stops/N566aeb"], ["https://tec.openplanner.team/stops/N151abb", "https://tec.openplanner.team/stops/N151ajc"], ["https://tec.openplanner.team/stops/H1hl124b", "https://tec.openplanner.team/stops/H1ry137b"], ["https://tec.openplanner.team/stops/N145adb", "https://tec.openplanner.team/stops/N145aga"], ["https://tec.openplanner.team/stops/H4ta121a", "https://tec.openplanner.team/stops/H4ta122b"], ["https://tec.openplanner.team/stops/H4bw102a", "https://tec.openplanner.team/stops/H4bw102b"], ["https://tec.openplanner.team/stops/X602anb", "https://tec.openplanner.team/stops/X602asa"], ["https://tec.openplanner.team/stops/X896aga", "https://tec.openplanner.team/stops/X896ahb"], ["https://tec.openplanner.team/stops/X601ala", "https://tec.openplanner.team/stops/X601bxb"], ["https://tec.openplanner.team/stops/LkTraer2", "https://tec.openplanner.team/stops/LwAschu1"], ["https://tec.openplanner.team/stops/X837aab", "https://tec.openplanner.team/stops/X837aca"], ["https://tec.openplanner.team/stops/Clbhvil2", "https://tec.openplanner.team/stops/Clbptno1"], ["https://tec.openplanner.team/stops/LGEcons1", "https://tec.openplanner.team/stops/LGEcons2"], ["https://tec.openplanner.team/stops/LPAbour1", "https://tec.openplanner.team/stops/LWipaif3"], ["https://tec.openplanner.team/stops/H4gu108c", "https://tec.openplanner.team/stops/H4we138b"], ["https://tec.openplanner.team/stops/N106aoa", "https://tec.openplanner.team/stops/N106apa"], ["https://tec.openplanner.team/stops/Llgarmu1", "https://tec.openplanner.team/stops/Llgbonn2"], ["https://tec.openplanner.team/stops/LeLdorf2", "https://tec.openplanner.team/stops/LkAsonn2"], ["https://tec.openplanner.team/stops/Bblaccm1", "https://tec.openplanner.team/stops/Bwatcro2"], ["https://tec.openplanner.team/stops/H1og136b", "https://tec.openplanner.team/stops/H5fl104b"], ["https://tec.openplanner.team/stops/X601cca", "https://tec.openplanner.team/stops/X602ahb"], ["https://tec.openplanner.team/stops/LPLarbo1", "https://tec.openplanner.team/stops/LPLphar1"], ["https://tec.openplanner.team/stops/H2ch103b", "https://tec.openplanner.team/stops/H2ch105a"], ["https://tec.openplanner.team/stops/H4bn174b", "https://tec.openplanner.team/stops/H4pi136b"], ["https://tec.openplanner.team/stops/LnUneun1", "https://tec.openplanner.team/stops/LnUneun3"], ["https://tec.openplanner.team/stops/H1ha183a", "https://tec.openplanner.team/stops/H1vg359b"], ["https://tec.openplanner.team/stops/H4do202a", "https://tec.openplanner.team/stops/H4do202b"], ["https://tec.openplanner.team/stops/X804bob", "https://tec.openplanner.team/stops/X804bra"], ["https://tec.openplanner.team/stops/Chhbiet2", "https://tec.openplanner.team/stops/Cmx3arb2"], ["https://tec.openplanner.team/stops/X650aab", "https://tec.openplanner.team/stops/X650abb"], ["https://tec.openplanner.team/stops/Brixaug3", "https://tec.openplanner.team/stops/Brixwav3"], ["https://tec.openplanner.team/stops/LaMadam2", "https://tec.openplanner.team/stops/LmIzent1"], ["https://tec.openplanner.team/stops/LhGrote2", "https://tec.openplanner.team/stops/LkEschi2"], ["https://tec.openplanner.team/stops/H1mh115a", "https://tec.openplanner.team/stops/H1po132b"], ["https://tec.openplanner.team/stops/X937adb", "https://tec.openplanner.team/stops/X937akb"], ["https://tec.openplanner.team/stops/Bmanati2", "https://tec.openplanner.team/stops/H2mg139c"], ["https://tec.openplanner.team/stops/LSJeg--2", "https://tec.openplanner.team/stops/LSJlabe2"], ["https://tec.openplanner.team/stops/N146aaa", "https://tec.openplanner.team/stops/N146aba"], ["https://tec.openplanner.team/stops/LFEmala2", "https://tec.openplanner.team/stops/X597aga"], ["https://tec.openplanner.team/stops/LaTcolo2", "https://tec.openplanner.team/stops/LrGzent1"], ["https://tec.openplanner.team/stops/N260aba", "https://tec.openplanner.team/stops/N270aca"], ["https://tec.openplanner.team/stops/Bbchboi1", "https://tec.openplanner.team/stops/Bbchsac1"], ["https://tec.openplanner.team/stops/Csubosa2", "https://tec.openplanner.team/stops/Csuegli"], ["https://tec.openplanner.team/stops/LMgbatt2", "https://tec.openplanner.team/stops/LMgbern1"], ["https://tec.openplanner.team/stops/X902aqa", "https://tec.openplanner.team/stops/X902ara"], ["https://tec.openplanner.team/stops/Bnivfhu1", "https://tec.openplanner.team/stops/Bnivlpa1"], ["https://tec.openplanner.team/stops/N562aoa", "https://tec.openplanner.team/stops/N570aaa"], ["https://tec.openplanner.team/stops/Lbocarr2", "https://tec.openplanner.team/stops/Lbotilf2"], ["https://tec.openplanner.team/stops/H4ef164b", "https://tec.openplanner.team/stops/H4ss153a"], ["https://tec.openplanner.team/stops/Lpeptle1", "https://tec.openplanner.team/stops/LWeec--1"], ["https://tec.openplanner.team/stops/LLSbajo1", "https://tec.openplanner.team/stops/LLStrid1"], ["https://tec.openplanner.team/stops/N135aab", "https://tec.openplanner.team/stops/N135aba"], ["https://tec.openplanner.team/stops/Llgcadr6", "https://tec.openplanner.team/stops/LlgOPER5"], ["https://tec.openplanner.team/stops/LaAburt1", "https://tec.openplanner.team/stops/LaAhaup2"], ["https://tec.openplanner.team/stops/X750acb", "https://tec.openplanner.team/stops/X750afa"], ["https://tec.openplanner.team/stops/Bgnvcha1", "https://tec.openplanner.team/stops/Bgnvtil2"], ["https://tec.openplanner.team/stops/LBzvill1", "https://tec.openplanner.team/stops/LCeanne2"], ["https://tec.openplanner.team/stops/H1cu131a", "https://tec.openplanner.team/stops/H1cu131b"], ["https://tec.openplanner.team/stops/H5at115a", "https://tec.openplanner.team/stops/H5at120b"], ["https://tec.openplanner.team/stops/Bhoegbr2", "https://tec.openplanner.team/stops/Bwbfbon1"], ["https://tec.openplanner.team/stops/LWDbure1", "https://tec.openplanner.team/stops/LWDchpl2"], ["https://tec.openplanner.team/stops/LSMec--2", "https://tec.openplanner.team/stops/LSMpoin2"], ["https://tec.openplanner.team/stops/LlgPTAV3", "https://tec.openplanner.team/stops/LlgPTAV6"], ["https://tec.openplanner.team/stops/Ctucour2", "https://tec.openplanner.team/stops/Cturoge2"], ["https://tec.openplanner.team/stops/Bnivfro1", "https://tec.openplanner.team/stops/Bnivfro2"], ["https://tec.openplanner.team/stops/Lflcle-3", "https://tec.openplanner.team/stops/Lflcle-4"], ["https://tec.openplanner.team/stops/Cgyaudu1", "https://tec.openplanner.team/stops/Cgygazo5"], ["https://tec.openplanner.team/stops/X718afa", "https://tec.openplanner.team/stops/X718afb"], ["https://tec.openplanner.team/stops/Csoplac1", "https://tec.openplanner.team/stops/Ctrepin2"], ["https://tec.openplanner.team/stops/LDAandr2", "https://tec.openplanner.team/stops/LDAchau1"], ["https://tec.openplanner.team/stops/Lligara2", "https://tec.openplanner.team/stops/LVSbleu2"], ["https://tec.openplanner.team/stops/Bnivjli2", "https://tec.openplanner.team/stops/Bnivphs2"], ["https://tec.openplanner.team/stops/X358aca", "https://tec.openplanner.team/stops/X358acb"], ["https://tec.openplanner.team/stops/Lvtauna2", "https://tec.openplanner.team/stops/Lvtbocl2"], ["https://tec.openplanner.team/stops/LhEklos1", "https://tec.openplanner.team/stops/LhEtivo2"], ["https://tec.openplanner.team/stops/H4ca124b", "https://tec.openplanner.team/stops/H4fl115a"], ["https://tec.openplanner.team/stops/LATdame2", "https://tec.openplanner.team/stops/LWNbeto1"], ["https://tec.openplanner.team/stops/LmTreic1", "https://tec.openplanner.team/stops/LmTzoll1"], ["https://tec.openplanner.team/stops/X747aka", "https://tec.openplanner.team/stops/X747ala"], ["https://tec.openplanner.team/stops/LFRhock4", "https://tec.openplanner.team/stops/LSx309-1"], ["https://tec.openplanner.team/stops/H1ch141a", "https://tec.openplanner.team/stops/H1ch141b"], ["https://tec.openplanner.team/stops/H3so159b", "https://tec.openplanner.team/stops/H3so178b"], ["https://tec.openplanner.team/stops/X790ala", "https://tec.openplanner.team/stops/X790amb"], ["https://tec.openplanner.team/stops/LbUjost3", "https://tec.openplanner.team/stops/LhUdenk2"], ["https://tec.openplanner.team/stops/Cmtpire1", "https://tec.openplanner.team/stops/Cmtrbra2"], ["https://tec.openplanner.team/stops/LJAsuri1", "https://tec.openplanner.team/stops/LJAverv2"], ["https://tec.openplanner.team/stops/Ccigill1", "https://tec.openplanner.team/stops/Cciqueu2"], ["https://tec.openplanner.team/stops/H5bl115c", "https://tec.openplanner.team/stops/H5bl141a"], ["https://tec.openplanner.team/stops/LOmecol2", "https://tec.openplanner.team/stops/LOmvill2"], ["https://tec.openplanner.team/stops/Cdapige2", "https://tec.openplanner.team/stops/CMsacm1"], ["https://tec.openplanner.team/stops/N509aia", "https://tec.openplanner.team/stops/N509bda"], ["https://tec.openplanner.team/stops/LSOgott2", "https://tec.openplanner.team/stops/LSOtheu1"], ["https://tec.openplanner.team/stops/Lougare2", "https://tec.openplanner.team/stops/Lscbarg2"], ["https://tec.openplanner.team/stops/X801aqa", "https://tec.openplanner.team/stops/X801asa"], ["https://tec.openplanner.team/stops/N531ala", "https://tec.openplanner.team/stops/N531alb"], ["https://tec.openplanner.team/stops/Lsefoot1", "https://tec.openplanner.team/stops/Lsefoot2"], ["https://tec.openplanner.team/stops/LwTkabi1", "https://tec.openplanner.team/stops/LwTkabi4"], ["https://tec.openplanner.team/stops/LBseg--2", "https://tec.openplanner.team/stops/LBsfer-1"], ["https://tec.openplanner.team/stops/Llgbaro4", "https://tec.openplanner.team/stops/Llghesb1"], ["https://tec.openplanner.team/stops/H4ef163b", "https://tec.openplanner.team/stops/H4hq133d"], ["https://tec.openplanner.team/stops/N121aba", "https://tec.openplanner.team/stops/N122ahb"], ["https://tec.openplanner.team/stops/NL76amb", "https://tec.openplanner.team/stops/NL76ana"], ["https://tec.openplanner.team/stops/LHmcite1", "https://tec.openplanner.team/stops/LMAbijo1"], ["https://tec.openplanner.team/stops/LSkmarq2", "https://tec.openplanner.team/stops/LYechpl2"], ["https://tec.openplanner.team/stops/Llghoch4", "https://tec.openplanner.team/stops/Llgmart2"], ["https://tec.openplanner.team/stops/Bwavbwa1", "https://tec.openplanner.team/stops/Bwavbwa2"], ["https://tec.openplanner.team/stops/H4ry129b", "https://tec.openplanner.team/stops/H4ry141b"], ["https://tec.openplanner.team/stops/Bperalv2", "https://tec.openplanner.team/stops/Btlbegl4"], ["https://tec.openplanner.team/stops/N229ada", "https://tec.openplanner.team/stops/N229adb"], ["https://tec.openplanner.team/stops/Ljuetie2", "https://tec.openplanner.team/stops/Ljuetie3"], ["https://tec.openplanner.team/stops/X742aaa", "https://tec.openplanner.team/stops/X752aba"], ["https://tec.openplanner.team/stops/Lalecmo1", "https://tec.openplanner.team/stops/Lalhomb1"], ["https://tec.openplanner.team/stops/NH01anb", "https://tec.openplanner.team/stops/NH01atb"], ["https://tec.openplanner.team/stops/N501jhb", "https://tec.openplanner.team/stops/N501jka"], ["https://tec.openplanner.team/stops/LLnlimb1", "https://tec.openplanner.team/stops/LOewaut2"], ["https://tec.openplanner.team/stops/Cvstouv1", "https://tec.openplanner.team/stops/Cwfdupo2"], ["https://tec.openplanner.team/stops/Lvtnico*", "https://tec.openplanner.team/stops/Lvtnico2"], ["https://tec.openplanner.team/stops/H1th182a", "https://tec.openplanner.team/stops/H3go104a"], ["https://tec.openplanner.team/stops/Becepro2", "https://tec.openplanner.team/stops/Becesbo1"], ["https://tec.openplanner.team/stops/N501iea", "https://tec.openplanner.team/stops/N501iqa"], ["https://tec.openplanner.team/stops/N117arb", "https://tec.openplanner.team/stops/N571agb"], ["https://tec.openplanner.team/stops/N565aia", "https://tec.openplanner.team/stops/N565aic"], ["https://tec.openplanner.team/stops/Cjxplac2", "https://tec.openplanner.team/stops/Cjxpris2"], ["https://tec.openplanner.team/stops/LDOanes1", "https://tec.openplanner.team/stops/LDOanes2"], ["https://tec.openplanner.team/stops/H3so154b", "https://tec.openplanner.team/stops/H3so155b"], ["https://tec.openplanner.team/stops/X901aaa", "https://tec.openplanner.team/stops/X901aib"], ["https://tec.openplanner.team/stops/Llgbron1", "https://tec.openplanner.team/stops/Llgvero3"], ["https://tec.openplanner.team/stops/Cgpplac2", "https://tec.openplanner.team/stops/H2gy100b"], ["https://tec.openplanner.team/stops/NH01asa", "https://tec.openplanner.team/stops/NH01ata"], ["https://tec.openplanner.team/stops/N214aja", "https://tec.openplanner.team/stops/N236aha"], ["https://tec.openplanner.team/stops/Cjugohi2", "https://tec.openplanner.team/stops/Cjugohi4"], ["https://tec.openplanner.team/stops/Ltichif1", "https://tec.openplanner.team/stops/Ltiferb1"], ["https://tec.openplanner.team/stops/X660aha", "https://tec.openplanner.team/stops/X660aia"], ["https://tec.openplanner.team/stops/X616abb", "https://tec.openplanner.team/stops/X695aaa"], ["https://tec.openplanner.team/stops/X901baa", "https://tec.openplanner.team/stops/X922aka"], ["https://tec.openplanner.team/stops/LCPcomp1", "https://tec.openplanner.team/stops/LXocomb1"], ["https://tec.openplanner.team/stops/Cfmltas1", "https://tec.openplanner.team/stops/Cfmsncb1"], ["https://tec.openplanner.team/stops/H1pa112b", "https://tec.openplanner.team/stops/H1pa118a"], ["https://tec.openplanner.team/stops/Lanothe1", "https://tec.openplanner.team/stops/Lrcchar1"], ["https://tec.openplanner.team/stops/Bwatmsj1", "https://tec.openplanner.team/stops/Bwatmsj5"], ["https://tec.openplanner.team/stops/LsC216-1", "https://tec.openplanner.team/stops/LsCback2"], ["https://tec.openplanner.team/stops/N351aha", "https://tec.openplanner.team/stops/X351abb"], ["https://tec.openplanner.team/stops/H2sb226a", "https://tec.openplanner.team/stops/H2sb266a"], ["https://tec.openplanner.team/stops/Bwavvpr1", "https://tec.openplanner.team/stops/Bwavvpr2"], ["https://tec.openplanner.team/stops/Lmlcrot2", "https://tec.openplanner.team/stops/Lmlhaut1"], ["https://tec.openplanner.team/stops/Llgjoie3", "https://tec.openplanner.team/stops/Llgwall1"], ["https://tec.openplanner.team/stops/LlCauto2", "https://tec.openplanner.team/stops/LlCland2"], ["https://tec.openplanner.team/stops/Lstchas2", "https://tec.openplanner.team/stops/Lsttech2"], ["https://tec.openplanner.team/stops/Lsemany1", "https://tec.openplanner.team/stops/Lsemany2"], ["https://tec.openplanner.team/stops/LdUespe4", "https://tec.openplanner.team/stops/LeSkreu2"], ["https://tec.openplanner.team/stops/H4te254a", "https://tec.openplanner.team/stops/H4te256b"], ["https://tec.openplanner.team/stops/H4fa126b", "https://tec.openplanner.team/stops/H4fa127b"], ["https://tec.openplanner.team/stops/Lgrfass1", "https://tec.openplanner.team/stops/Lgrjobe2"], ["https://tec.openplanner.team/stops/N533amc", "https://tec.openplanner.team/stops/N533aqb"], ["https://tec.openplanner.team/stops/Bfelrav2", "https://tec.openplanner.team/stops/Bptrgri2"], ["https://tec.openplanner.team/stops/N301aab", "https://tec.openplanner.team/stops/N301apb"], ["https://tec.openplanner.team/stops/N501cka", "https://tec.openplanner.team/stops/N501ckz"], ["https://tec.openplanner.team/stops/Cwfanci1", "https://tec.openplanner.team/stops/Cwfzola1"], ["https://tec.openplanner.team/stops/X946adb", "https://tec.openplanner.team/stops/X946aib"], ["https://tec.openplanner.team/stops/Lghhoco1", "https://tec.openplanner.team/stops/Lghmont2"], ["https://tec.openplanner.team/stops/NL57ala", "https://tec.openplanner.team/stops/NL73aaa"], ["https://tec.openplanner.team/stops/Bsaumlp2", "https://tec.openplanner.team/stops/N541ada"], ["https://tec.openplanner.team/stops/H5wo123b", "https://tec.openplanner.team/stops/H5wo124b"], ["https://tec.openplanner.team/stops/N145akb", "https://tec.openplanner.team/stops/N150ada"], ["https://tec.openplanner.team/stops/Cfacamp1", "https://tec.openplanner.team/stops/Cpl4bra2"], ["https://tec.openplanner.team/stops/X719aaa", "https://tec.openplanner.team/stops/X789aba"], ["https://tec.openplanner.team/stops/H1qu100a", "https://tec.openplanner.team/stops/H1qu102a"], ["https://tec.openplanner.team/stops/H4ga150a", "https://tec.openplanner.team/stops/H4ga150b"], ["https://tec.openplanner.team/stops/LLOberl1", "https://tec.openplanner.team/stops/LLOberl2"], ["https://tec.openplanner.team/stops/Lsefori1", "https://tec.openplanner.team/stops/Lseverh2"], ["https://tec.openplanner.team/stops/LLefali1", "https://tec.openplanner.team/stops/LVRchpl1"], ["https://tec.openplanner.team/stops/LAmvent2", "https://tec.openplanner.team/stops/LVLchem1"], ["https://tec.openplanner.team/stops/LkTlibe1", "https://tec.openplanner.team/stops/LwAkett2"], ["https://tec.openplanner.team/stops/N501ada", "https://tec.openplanner.team/stops/N501aia"], ["https://tec.openplanner.team/stops/X877aaa", "https://tec.openplanner.team/stops/X877aga"], ["https://tec.openplanner.team/stops/Lgreg--2", "https://tec.openplanner.team/stops/Lgrgoff2"], ["https://tec.openplanner.team/stops/Bqueblo1", "https://tec.openplanner.team/stops/Bquesta1"], ["https://tec.openplanner.team/stops/LSXbecc2", "https://tec.openplanner.team/stops/LSXvill1"], ["https://tec.openplanner.team/stops/Lhecarc*", "https://tec.openplanner.team/stops/Lheneuv1"], ["https://tec.openplanner.team/stops/LTgbalm1", "https://tec.openplanner.team/stops/LTgvill2"], ["https://tec.openplanner.team/stops/Bnilcha1", "https://tec.openplanner.team/stops/Bwlhpmt3"], ["https://tec.openplanner.team/stops/Bblacar1", "https://tec.openplanner.team/stops/Bblapra2"], ["https://tec.openplanner.team/stops/Bbautri1", "https://tec.openplanner.team/stops/Bnivpri2"], ["https://tec.openplanner.team/stops/Bwaypav1", "https://tec.openplanner.team/stops/Cwspavi1"], ["https://tec.openplanner.team/stops/LHFhard1", "https://tec.openplanner.team/stops/LVEstat1"], ["https://tec.openplanner.team/stops/H1ba101a", "https://tec.openplanner.team/stops/H1ba101b"], ["https://tec.openplanner.team/stops/X715aab", "https://tec.openplanner.team/stops/X716aab"], ["https://tec.openplanner.team/stops/N512asa", "https://tec.openplanner.team/stops/N512atb"], ["https://tec.openplanner.team/stops/Bgnppem1", "https://tec.openplanner.team/stops/Bwaypon1"], ["https://tec.openplanner.team/stops/Lemarti2", "https://tec.openplanner.team/stops/Lemfort1"], ["https://tec.openplanner.team/stops/LrAkape2", "https://tec.openplanner.team/stops/LrAputz1"], ["https://tec.openplanner.team/stops/Bkrabhu2", "https://tec.openplanner.team/stops/Bovejei1"], ["https://tec.openplanner.team/stops/Bclgmev2", "https://tec.openplanner.team/stops/Bclgpla2"], ["https://tec.openplanner.team/stops/LCxreno1", "https://tec.openplanner.team/stops/LLM4rou5"], ["https://tec.openplanner.team/stops/H4ne134b", "https://tec.openplanner.team/stops/H4ne138a"], ["https://tec.openplanner.team/stops/N531acb", "https://tec.openplanner.team/stops/N531aha"], ["https://tec.openplanner.team/stops/Blhugai1", "https://tec.openplanner.team/stops/Blhuibm2"], ["https://tec.openplanner.team/stops/H2fy121a", "https://tec.openplanner.team/stops/H2fy122b"], ["https://tec.openplanner.team/stops/H4hx124a", "https://tec.openplanner.team/stops/H4hx124b"], ["https://tec.openplanner.team/stops/H1bi101b", "https://tec.openplanner.team/stops/H1mg109b"], ["https://tec.openplanner.team/stops/X723afa", "https://tec.openplanner.team/stops/X723aja"], ["https://tec.openplanner.team/stops/X754ata", "https://tec.openplanner.team/stops/X754aub"], ["https://tec.openplanner.team/stops/LSZcock2", "https://tec.openplanner.team/stops/LSZgare2"], ["https://tec.openplanner.team/stops/X640ala", "https://tec.openplanner.team/stops/X640alb"], ["https://tec.openplanner.team/stops/X661aia", "https://tec.openplanner.team/stops/X661atb"], ["https://tec.openplanner.team/stops/LeUstad1", "https://tec.openplanner.team/stops/LeUwert3"], ["https://tec.openplanner.team/stops/LDLboul1", "https://tec.openplanner.team/stops/LLNbeau2"], ["https://tec.openplanner.team/stops/Cvvmonu1", "https://tec.openplanner.team/stops/Cvvsncb1"], ["https://tec.openplanner.team/stops/X634aja", "https://tec.openplanner.team/stops/X634aka"], ["https://tec.openplanner.team/stops/Lbhgare1", "https://tec.openplanner.team/stops/Ljuvieu1"], ["https://tec.openplanner.team/stops/X595aia", "https://tec.openplanner.team/stops/X713anb"], ["https://tec.openplanner.team/stops/Llgangl2", "https://tec.openplanner.team/stops/Llghoch3"], ["https://tec.openplanner.team/stops/H5qu141b", "https://tec.openplanner.team/stops/H5qu152b"], ["https://tec.openplanner.team/stops/Bdonlat2", "https://tec.openplanner.team/stops/Brxmbos1"], ["https://tec.openplanner.team/stops/X639aca", "https://tec.openplanner.team/stops/X639acc"], ["https://tec.openplanner.team/stops/Bgzdgpa2", "https://tec.openplanner.team/stops/Bpecvme2"], ["https://tec.openplanner.team/stops/LORgr8-1", "https://tec.openplanner.team/stops/LORlieg1"], ["https://tec.openplanner.team/stops/X833aaa", "https://tec.openplanner.team/stops/X833aca"], ["https://tec.openplanner.team/stops/LHUfoss*", "https://tec.openplanner.team/stops/LHUneuv2"], ["https://tec.openplanner.team/stops/H4ty287b", "https://tec.openplanner.team/stops/H4ty358b"], ["https://tec.openplanner.team/stops/X629aab", "https://tec.openplanner.team/stops/X647aab"], ["https://tec.openplanner.team/stops/LBsoha-2", "https://tec.openplanner.team/stops/NL72adb"], ["https://tec.openplanner.team/stops/LhGfrie2", "https://tec.openplanner.team/stops/LlNm%C3%BChl2"], ["https://tec.openplanner.team/stops/LSPplat2", "https://tec.openplanner.team/stops/LSPptch2"], ["https://tec.openplanner.team/stops/LsVfrde1", "https://tec.openplanner.team/stops/LsVviel1"], ["https://tec.openplanner.team/stops/N547aha", "https://tec.openplanner.team/stops/N547ahb"], ["https://tec.openplanner.team/stops/Blincal1", "https://tec.openplanner.team/stops/Blingar3"], ["https://tec.openplanner.team/stops/X991aab", "https://tec.openplanner.team/stops/X991acb"], ["https://tec.openplanner.team/stops/X657aaa", "https://tec.openplanner.team/stops/X657amb"], ["https://tec.openplanner.team/stops/LBIpost1", "https://tec.openplanner.team/stops/Lghlogi1"], ["https://tec.openplanner.team/stops/Bvirbru1", "https://tec.openplanner.team/stops/Bvirmbr2"], ["https://tec.openplanner.team/stops/LJuhaie1", "https://tec.openplanner.team/stops/LJuhaie2"], ["https://tec.openplanner.team/stops/X986ala", "https://tec.openplanner.team/stops/X986alc"], ["https://tec.openplanner.team/stops/Ctyhame2", "https://tec.openplanner.team/stops/N137aib"], ["https://tec.openplanner.team/stops/LMYchpl1", "https://tec.openplanner.team/stops/LMYlieg2"], ["https://tec.openplanner.team/stops/N563anb", "https://tec.openplanner.team/stops/N570aga"], ["https://tec.openplanner.team/stops/Ladpara1", "https://tec.openplanner.team/stops/Ladthom1"], ["https://tec.openplanner.team/stops/H5at115b", "https://tec.openplanner.team/stops/H5at120b"], ["https://tec.openplanner.team/stops/Cmeptmi2", "https://tec.openplanner.team/stops/Cmerued1"], ["https://tec.openplanner.team/stops/N117atb", "https://tec.openplanner.team/stops/N569aib"], ["https://tec.openplanner.team/stops/Bovesnh2", "https://tec.openplanner.team/stops/Bovetwe2"], ["https://tec.openplanner.team/stops/LhOfrie2", "https://tec.openplanner.team/stops/LhUkreu2"], ["https://tec.openplanner.team/stops/H4ce104b", "https://tec.openplanner.team/stops/H4ce108b"], ["https://tec.openplanner.team/stops/N540ajb", "https://tec.openplanner.team/stops/N540aka"], ["https://tec.openplanner.team/stops/NL77ana", "https://tec.openplanner.team/stops/NL78aaa"], ["https://tec.openplanner.team/stops/H5pe127b", "https://tec.openplanner.team/stops/H5pe148b"], ["https://tec.openplanner.team/stops/Cgocat2", "https://tec.openplanner.team/stops/Cgocnor4"], ["https://tec.openplanner.team/stops/X753aab", "https://tec.openplanner.team/stops/X753abd"], ["https://tec.openplanner.team/stops/Ccocroi1", "https://tec.openplanner.team/stops/Ctrepin1"], ["https://tec.openplanner.team/stops/LaAmise2", "https://tec.openplanner.team/stops/LaAronh2"], ["https://tec.openplanner.team/stops/LbTmons1", "https://tec.openplanner.team/stops/LnIschw1"], ["https://tec.openplanner.team/stops/H4os220b", "https://tec.openplanner.team/stops/H4os222b"], ["https://tec.openplanner.team/stops/X898aaa", "https://tec.openplanner.team/stops/X898afb"], ["https://tec.openplanner.team/stops/NL77aha", "https://tec.openplanner.team/stops/NL77aib"], ["https://tec.openplanner.team/stops/H1hl122b", "https://tec.openplanner.team/stops/H1vs145b"], ["https://tec.openplanner.team/stops/H1so143b", "https://tec.openplanner.team/stops/H1so145b"], ["https://tec.openplanner.team/stops/LeUoe541", "https://tec.openplanner.team/stops/LeUoe542"], ["https://tec.openplanner.team/stops/N321afb", "https://tec.openplanner.team/stops/N367adb"], ["https://tec.openplanner.team/stops/Ctabaty3", "https://tec.openplanner.team/stops/N543cfb"], ["https://tec.openplanner.team/stops/Bvilcha1", "https://tec.openplanner.team/stops/Bvilvil1"], ["https://tec.openplanner.team/stops/Cfrgare4", "https://tec.openplanner.team/stops/Cfrmonu1"], ["https://tec.openplanner.team/stops/NL74aaa", "https://tec.openplanner.team/stops/NL74aac"], ["https://tec.openplanner.team/stops/N501aia", "https://tec.openplanner.team/stops/N501aib"], ["https://tec.openplanner.team/stops/H1hh116a", "https://tec.openplanner.team/stops/H5me105a"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lvehauz3"], ["https://tec.openplanner.team/stops/Lbrmour2", "https://tec.openplanner.team/stops/Llglill2"], ["https://tec.openplanner.team/stops/X601bub", "https://tec.openplanner.team/stops/X601bva"], ["https://tec.openplanner.team/stops/Bnivros1", "https://tec.openplanner.team/stops/Bnivros2"], ["https://tec.openplanner.team/stops/H4me211a", "https://tec.openplanner.team/stops/H4ve137b"], ["https://tec.openplanner.team/stops/X812aka", "https://tec.openplanner.team/stops/X812ala"], ["https://tec.openplanner.team/stops/LAmcorn2", "https://tec.openplanner.team/stops/LAMecse*"], ["https://tec.openplanner.team/stops/X818aob", "https://tec.openplanner.team/stops/X818apa"], ["https://tec.openplanner.team/stops/Cmmheur1", "https://tec.openplanner.team/stops/Cmmheur2"], ["https://tec.openplanner.team/stops/Clgmaco2", "https://tec.openplanner.team/stops/H1mc128b"], ["https://tec.openplanner.team/stops/N312ada", "https://tec.openplanner.team/stops/N312adb"], ["https://tec.openplanner.team/stops/H1bx106a", "https://tec.openplanner.team/stops/H1bx106b"], ["https://tec.openplanner.team/stops/H4ty356b", "https://tec.openplanner.team/stops/H4ty356c"], ["https://tec.openplanner.team/stops/X561adb", "https://tec.openplanner.team/stops/X561aea"], ["https://tec.openplanner.team/stops/Bincfer1", "https://tec.openplanner.team/stops/Bincfer2"], ["https://tec.openplanner.team/stops/N501cwa", "https://tec.openplanner.team/stops/N501cxb"], ["https://tec.openplanner.team/stops/X739ala", "https://tec.openplanner.team/stops/X773aaa"], ["https://tec.openplanner.team/stops/Cmmschw2", "https://tec.openplanner.team/stops/Cmygbbo2"], ["https://tec.openplanner.team/stops/X601aja", "https://tec.openplanner.team/stops/X601aka"], ["https://tec.openplanner.team/stops/LVLecco1", "https://tec.openplanner.team/stops/LVLgotr2"], ["https://tec.openplanner.team/stops/H1mr124a", "https://tec.openplanner.team/stops/H1mr126a"], ["https://tec.openplanner.team/stops/Lsehcoc1", "https://tec.openplanner.team/stops/Lsephar2"], ["https://tec.openplanner.team/stops/Lagcolo1", "https://tec.openplanner.team/stops/Lemmath2"], ["https://tec.openplanner.team/stops/LNCchau2", "https://tec.openplanner.team/stops/LNCvill1"], ["https://tec.openplanner.team/stops/Bhmmbog1", "https://tec.openplanner.team/stops/Bleugar1"], ["https://tec.openplanner.team/stops/Cgxwaut1", "https://tec.openplanner.team/stops/Crorogn2"], ["https://tec.openplanner.team/stops/LVEdTEC2", "https://tec.openplanner.team/stops/LVEfize2"], ["https://tec.openplanner.team/stops/X610aab", "https://tec.openplanner.team/stops/X610aia"], ["https://tec.openplanner.team/stops/H2me114b", "https://tec.openplanner.team/stops/H2me117a"], ["https://tec.openplanner.team/stops/Bottgar1", "https://tec.openplanner.team/stops/Bottgar8"], ["https://tec.openplanner.team/stops/Bwatali1", "https://tec.openplanner.team/stops/Bwatgar1"], ["https://tec.openplanner.team/stops/LMfange1", "https://tec.openplanner.team/stops/LMfsart1"], ["https://tec.openplanner.team/stops/X636aaa", "https://tec.openplanner.team/stops/X636aab"], ["https://tec.openplanner.team/stops/LAVdepr1", "https://tec.openplanner.team/stops/LAVstat2"], ["https://tec.openplanner.team/stops/X818aab", "https://tec.openplanner.team/stops/X818abb"], ["https://tec.openplanner.team/stops/LHAprei2", "https://tec.openplanner.team/stops/LVIpneu2"], ["https://tec.openplanner.team/stops/LbTcarm2", "https://tec.openplanner.team/stops/LbTweyn2"], ["https://tec.openplanner.team/stops/Cmmgadi1", "https://tec.openplanner.team/stops/Cmmphai1"], ["https://tec.openplanner.team/stops/H4ka393a", "https://tec.openplanner.team/stops/H4ka394a"], ["https://tec.openplanner.team/stops/Buccrac1", "https://tec.openplanner.team/stops/Buccvoi2"], ["https://tec.openplanner.team/stops/Cjufagn4", "https://tec.openplanner.team/stops/CMmade1"], ["https://tec.openplanner.team/stops/NL57add", "https://tec.openplanner.team/stops/NL57aia"], ["https://tec.openplanner.team/stops/H4rm108a", "https://tec.openplanner.team/stops/H4rm113b"], ["https://tec.openplanner.team/stops/Ccufos71", "https://tec.openplanner.team/stops/Cculpre1"], ["https://tec.openplanner.team/stops/Cnaferr1", "https://tec.openplanner.team/stops/Cnanoir1"], ["https://tec.openplanner.team/stops/Cfrplac6", "https://tec.openplanner.team/stops/Cliburl2"], ["https://tec.openplanner.team/stops/H1ev114a", "https://tec.openplanner.team/stops/H1ev115b"], ["https://tec.openplanner.team/stops/Bolgegl4", "https://tec.openplanner.team/stops/Bolgeva1"], ["https://tec.openplanner.team/stops/Lwaeau-2", "https://tec.openplanner.team/stops/Lwaelme2"], ["https://tec.openplanner.team/stops/Lhuleke2", "https://tec.openplanner.team/stops/Lvelobe1"], ["https://tec.openplanner.team/stops/LWNchar1", "https://tec.openplanner.team/stops/LWNcime2"], ["https://tec.openplanner.team/stops/LMYmont1", "https://tec.openplanner.team/stops/LMYroin1"], ["https://tec.openplanner.team/stops/X938aab", "https://tec.openplanner.team/stops/X950acb"], ["https://tec.openplanner.team/stops/Lrcarse1", "https://tec.openplanner.team/stops/Lrcarse2"], ["https://tec.openplanner.team/stops/LCFcafe2", "https://tec.openplanner.team/stops/LHaodei2"], ["https://tec.openplanner.team/stops/H1mm131a", "https://tec.openplanner.team/stops/H1vb147b"], ["https://tec.openplanner.team/stops/X831aca", "https://tec.openplanner.team/stops/X831acb"], ["https://tec.openplanner.team/stops/Bbeacha1", "https://tec.openplanner.team/stops/Btlgmee2"], ["https://tec.openplanner.team/stops/X670aka", "https://tec.openplanner.team/stops/X670ala"], ["https://tec.openplanner.team/stops/LVSbleu1", "https://tec.openplanner.team/stops/LVSeg--2"], ["https://tec.openplanner.team/stops/H4pq117a", "https://tec.openplanner.team/stops/H4pq117b"], ["https://tec.openplanner.team/stops/Cjuhame3", "https://tec.openplanner.team/stops/Cjulamb3"], ["https://tec.openplanner.team/stops/LRGcana2", "https://tec.openplanner.team/stops/LRGgend1"], ["https://tec.openplanner.team/stops/Cgpchgo1", "https://tec.openplanner.team/stops/Cgpcime1"], ["https://tec.openplanner.team/stops/Btlbcha1", "https://tec.openplanner.team/stops/Btlbcul2"], ["https://tec.openplanner.team/stops/LWZeg--1", "https://tec.openplanner.team/stops/LWZponh1"], ["https://tec.openplanner.team/stops/Bblamsj2", "https://tec.openplanner.team/stops/Bwatcro2"], ["https://tec.openplanner.team/stops/Bjaugar3", "https://tec.openplanner.team/stops/Bjaugar4"], ["https://tec.openplanner.team/stops/Bthspha1", "https://tec.openplanner.team/stops/Bthsset1"], ["https://tec.openplanner.team/stops/LMamuse3", "https://tec.openplanner.team/stops/LMaslav3"], ["https://tec.openplanner.team/stops/LROmorf1", "https://tec.openplanner.team/stops/LWLeg--3"], ["https://tec.openplanner.team/stops/LgRha211", "https://tec.openplanner.team/stops/LgRzent1"], ["https://tec.openplanner.team/stops/N147ada", "https://tec.openplanner.team/stops/N147adb"], ["https://tec.openplanner.team/stops/X659ara", "https://tec.openplanner.team/stops/X659awb"], ["https://tec.openplanner.team/stops/Cflpost2", "https://tec.openplanner.team/stops/Cwgdeba2"], ["https://tec.openplanner.team/stops/Lmlec--1", "https://tec.openplanner.team/stops/Lmlec--2"], ["https://tec.openplanner.team/stops/LHOgymn1", "https://tec.openplanner.team/stops/LHOmc--1"], ["https://tec.openplanner.team/stops/Bwatfva1", "https://tec.openplanner.team/stops/Bwatnrs2"], ["https://tec.openplanner.team/stops/Bwavtas2", "https://tec.openplanner.team/stops/Bwavtas4"], ["https://tec.openplanner.team/stops/H4bq100a", "https://tec.openplanner.team/stops/H4og211a"], ["https://tec.openplanner.team/stops/LDObell1", "https://tec.openplanner.team/stops/LSubass1"], ["https://tec.openplanner.team/stops/X602aba", "https://tec.openplanner.team/stops/X602abb"], ["https://tec.openplanner.team/stops/Cmoscap1", "https://tec.openplanner.team/stops/Cmoscap2"], ["https://tec.openplanner.team/stops/Lgdec--2", "https://tec.openplanner.team/stops/Lgdhura2"], ["https://tec.openplanner.team/stops/LlZkirc1", "https://tec.openplanner.team/stops/LmNsv872"], ["https://tec.openplanner.team/stops/X892acb", "https://tec.openplanner.team/stops/X892aha"], ["https://tec.openplanner.team/stops/Crehout1", "https://tec.openplanner.team/stops/Creshau2"], ["https://tec.openplanner.team/stops/LCvoufn1", "https://tec.openplanner.team/stops/LTBeg--1"], ["https://tec.openplanner.team/stops/X879aca", "https://tec.openplanner.team/stops/X879ahb"], ["https://tec.openplanner.team/stops/N521aja", "https://tec.openplanner.team/stops/N521aka"], ["https://tec.openplanner.team/stops/X685aia", "https://tec.openplanner.team/stops/X685ama"], ["https://tec.openplanner.team/stops/H4hg156a", "https://tec.openplanner.team/stops/H4mv189c"], ["https://tec.openplanner.team/stops/Csslesc2", "https://tec.openplanner.team/stops/Csygare1"], ["https://tec.openplanner.team/stops/LBegare2", "https://tec.openplanner.team/stops/LWHkape1"], ["https://tec.openplanner.team/stops/H4bo114a", "https://tec.openplanner.team/stops/H4bo114b"], ["https://tec.openplanner.team/stops/N543ara", "https://tec.openplanner.team/stops/N543arb"], ["https://tec.openplanner.team/stops/Bbeaap11", "https://tec.openplanner.team/stops/Bmlncle1"], ["https://tec.openplanner.team/stops/LSZsolw1", "https://tec.openplanner.team/stops/LWycarr2"], ["https://tec.openplanner.team/stops/X807aba", "https://tec.openplanner.team/stops/X807abb"], ["https://tec.openplanner.team/stops/N206ada", "https://tec.openplanner.team/stops/N206adb"], ["https://tec.openplanner.team/stops/H4ta125a", "https://tec.openplanner.team/stops/H4ta125c"], ["https://tec.openplanner.team/stops/X641ahb", "https://tec.openplanner.team/stops/X641amb"], ["https://tec.openplanner.team/stops/X666ada", "https://tec.openplanner.team/stops/X666alb"], ["https://tec.openplanner.team/stops/X763aaa", "https://tec.openplanner.team/stops/X764aaa"], ["https://tec.openplanner.team/stops/N539awb", "https://tec.openplanner.team/stops/N539bab"], ["https://tec.openplanner.team/stops/Caibras1", "https://tec.openplanner.team/stops/Caimeno4"], ["https://tec.openplanner.team/stops/H1hn204b", "https://tec.openplanner.team/stops/H1mv241b"], ["https://tec.openplanner.team/stops/Cmtchet2", "https://tec.openplanner.team/stops/Cmtdepo2"], ["https://tec.openplanner.team/stops/N212aca", "https://tec.openplanner.team/stops/N212aea"], ["https://tec.openplanner.team/stops/X882ahb", "https://tec.openplanner.team/stops/X882alb"], ["https://tec.openplanner.team/stops/Bfelgar2", "https://tec.openplanner.team/stops/Bfelgar3"], ["https://tec.openplanner.team/stops/Bhalath1", "https://tec.openplanner.team/stops/Blkbbvh2"], ["https://tec.openplanner.team/stops/Lcehipp2", "https://tec.openplanner.team/stops/Lgrorch2"], ["https://tec.openplanner.team/stops/X775alb", "https://tec.openplanner.team/stops/X775ama"], ["https://tec.openplanner.team/stops/Bgnvgir1", "https://tec.openplanner.team/stops/Bgnvgir2"], ["https://tec.openplanner.team/stops/LLYplac1", "https://tec.openplanner.team/stops/LLYplac2"], ["https://tec.openplanner.team/stops/LVSslin1", "https://tec.openplanner.team/stops/LVSslin2"], ["https://tec.openplanner.team/stops/N201ajb", "https://tec.openplanner.team/stops/N201ala"], ["https://tec.openplanner.team/stops/LaAzwei1", "https://tec.openplanner.team/stops/LaAzwei2"], ["https://tec.openplanner.team/stops/Bhercsj1", "https://tec.openplanner.team/stops/Bpiepla1"], ["https://tec.openplanner.team/stops/Berngrt2", "https://tec.openplanner.team/stops/Bwspbos2"], ["https://tec.openplanner.team/stops/LLRbleh1", "https://tec.openplanner.team/stops/LPctrog2"], ["https://tec.openplanner.team/stops/LSPherd1", "https://tec.openplanner.team/stops/LSPsauv1"], ["https://tec.openplanner.team/stops/N516ama", "https://tec.openplanner.team/stops/N581abb"], ["https://tec.openplanner.team/stops/LHNcreh1", "https://tec.openplanner.team/stops/LHNwaut2"], ["https://tec.openplanner.team/stops/H5gr135b", "https://tec.openplanner.team/stops/H5gr138a"], ["https://tec.openplanner.team/stops/N501aaa", "https://tec.openplanner.team/stops/N501giz"], ["https://tec.openplanner.team/stops/LBYwez-1", "https://tec.openplanner.team/stops/Lgdblom2"], ["https://tec.openplanner.team/stops/LBBodet2", "https://tec.openplanner.team/stops/NL82aga"], ["https://tec.openplanner.team/stops/LgAdorf1", "https://tec.openplanner.team/stops/LnUneun2"], ["https://tec.openplanner.team/stops/Cfaterg6", "https://tec.openplanner.team/stops/N543cna"], ["https://tec.openplanner.team/stops/X805ada", "https://tec.openplanner.team/stops/X805adb"], ["https://tec.openplanner.team/stops/H1lb137b", "https://tec.openplanner.team/stops/H1lb154b"], ["https://tec.openplanner.team/stops/LAnfall1", "https://tec.openplanner.team/stops/LVtespo2"], ["https://tec.openplanner.team/stops/X651acd", "https://tec.openplanner.team/stops/X651afb"], ["https://tec.openplanner.team/stops/X664aja", "https://tec.openplanner.team/stops/X664aob"], ["https://tec.openplanner.team/stops/Bcharce2", "https://tec.openplanner.team/stops/Bhvltol2"], ["https://tec.openplanner.team/stops/Bosqpco1", "https://tec.openplanner.team/stops/Bosqpqu2"], ["https://tec.openplanner.team/stops/X614aba", "https://tec.openplanner.team/stops/X614aob"], ["https://tec.openplanner.team/stops/X996aga", "https://tec.openplanner.team/stops/X996agb"], ["https://tec.openplanner.team/stops/H1gy115a", "https://tec.openplanner.team/stops/H1le122d"], ["https://tec.openplanner.team/stops/N565abb", "https://tec.openplanner.team/stops/N565aea"], ["https://tec.openplanner.team/stops/X783aab", "https://tec.openplanner.team/stops/X783adb"], ["https://tec.openplanner.team/stops/X802afa", "https://tec.openplanner.team/stops/X802aya"], ["https://tec.openplanner.team/stops/N513alb", "https://tec.openplanner.team/stops/N513bbc"], ["https://tec.openplanner.team/stops/Boplcar4", "https://tec.openplanner.team/stops/Boplham2"], ["https://tec.openplanner.team/stops/X780aab", "https://tec.openplanner.team/stops/X780aca"], ["https://tec.openplanner.team/stops/H1fr130b", "https://tec.openplanner.team/stops/H1fr152a"], ["https://tec.openplanner.team/stops/H1hw125b", "https://tec.openplanner.team/stops/H1so132a"], ["https://tec.openplanner.team/stops/Cchfaub2", "https://tec.openplanner.team/stops/Cchmott2"], ["https://tec.openplanner.team/stops/X609acb", "https://tec.openplanner.team/stops/X609ada"], ["https://tec.openplanner.team/stops/N568adb", "https://tec.openplanner.team/stops/N568aeb"], ["https://tec.openplanner.team/stops/N528aib", "https://tec.openplanner.team/stops/N528aka"], ["https://tec.openplanner.team/stops/LHCauwe3", "https://tec.openplanner.team/stops/LHChoof4"], ["https://tec.openplanner.team/stops/X715aaa", "https://tec.openplanner.team/stops/X715aab"], ["https://tec.openplanner.team/stops/X792aba", "https://tec.openplanner.team/stops/X792abb"], ["https://tec.openplanner.team/stops/H1hr116a", "https://tec.openplanner.team/stops/H1hr116b"], ["https://tec.openplanner.team/stops/LWerola1", "https://tec.openplanner.team/stops/LWevalf2"], ["https://tec.openplanner.team/stops/Bfelbri1", "https://tec.openplanner.team/stops/Bfelbri3"], ["https://tec.openplanner.team/stops/Bchgbru1", "https://tec.openplanner.team/stops/Bchgqve1"], ["https://tec.openplanner.team/stops/Bhevhha2", "https://tec.openplanner.team/stops/Bhevl3l2"], ["https://tec.openplanner.team/stops/LAVdepr2", "https://tec.openplanner.team/stops/LCIsucr2"], ["https://tec.openplanner.team/stops/Lanpisc2", "https://tec.openplanner.team/stops/Lglvict1"], ["https://tec.openplanner.team/stops/H4fr144b", "https://tec.openplanner.team/stops/H4ty301d"], ["https://tec.openplanner.team/stops/Bitrhou2", "https://tec.openplanner.team/stops/Bitrmde1"], ["https://tec.openplanner.team/stops/LEMgren*", "https://tec.openplanner.team/stops/LPlchpl2"], ["https://tec.openplanner.team/stops/Btileco2", "https://tec.openplanner.team/stops/Btilhti1"], ["https://tec.openplanner.team/stops/N568aab", "https://tec.openplanner.team/stops/N568aba"], ["https://tec.openplanner.team/stops/Cjxegli2", "https://tec.openplanner.team/stops/Cjxplac2"], ["https://tec.openplanner.team/stops/Bllncyc1", "https://tec.openplanner.team/stops/Bllnein4"], ["https://tec.openplanner.team/stops/Bolgegl1", "https://tec.openplanner.team/stops/Bolgegl4"], ["https://tec.openplanner.team/stops/X773aja", "https://tec.openplanner.team/stops/X773alb"], ["https://tec.openplanner.team/stops/X901ada", "https://tec.openplanner.team/stops/X901adb"], ["https://tec.openplanner.team/stops/Lsmpost1", "https://tec.openplanner.team/stops/Lsmtini2"], ["https://tec.openplanner.team/stops/LrAneud1", "https://tec.openplanner.team/stops/LrApley1"], ["https://tec.openplanner.team/stops/X801bua", "https://tec.openplanner.team/stops/X802aua"], ["https://tec.openplanner.team/stops/Bbsivil2", "https://tec.openplanner.team/stops/Bbsivil3"], ["https://tec.openplanner.team/stops/LmHabzw1", "https://tec.openplanner.team/stops/LmHdrei2"], ["https://tec.openplanner.team/stops/X784agb", "https://tec.openplanner.team/stops/X784alb"], ["https://tec.openplanner.team/stops/N230aja", "https://tec.openplanner.team/stops/N540aab"], ["https://tec.openplanner.team/stops/X768akb", "https://tec.openplanner.team/stops/X768amb"], ["https://tec.openplanner.team/stops/X948aic", "https://tec.openplanner.team/stops/X948aja"], ["https://tec.openplanner.team/stops/LWHzave1", "https://tec.openplanner.team/stops/LWHzave2"], ["https://tec.openplanner.team/stops/X779aeb", "https://tec.openplanner.team/stops/X779afa"], ["https://tec.openplanner.team/stops/LCPconf1", "https://tec.openplanner.team/stops/LCPconf2"], ["https://tec.openplanner.team/stops/H1mh113c", "https://tec.openplanner.team/stops/H1mh115b"], ["https://tec.openplanner.team/stops/LaNdorf2", "https://tec.openplanner.team/stops/LhRandl1"], ["https://tec.openplanner.team/stops/Chprobi1", "https://tec.openplanner.team/stops/Chprobi2"], ["https://tec.openplanner.team/stops/Cmltemp3", "https://tec.openplanner.team/stops/Cmltemp5"], ["https://tec.openplanner.team/stops/H4ga162a", "https://tec.openplanner.team/stops/H4vz369a"], ["https://tec.openplanner.team/stops/H2bh113a", "https://tec.openplanner.team/stops/H2ll194a"], ["https://tec.openplanner.team/stops/H1og133a", "https://tec.openplanner.team/stops/H4os217a"], ["https://tec.openplanner.team/stops/Bbch4br3", "https://tec.openplanner.team/stops/Bbch4br4"], ["https://tec.openplanner.team/stops/H2mo117a", "https://tec.openplanner.team/stops/H2mo125a"], ["https://tec.openplanner.team/stops/LhOfrie1", "https://tec.openplanner.team/stops/LhZkape1"], ["https://tec.openplanner.team/stops/LAUbirv1", "https://tec.openplanner.team/stops/LLCeg--1"], ["https://tec.openplanner.team/stops/Llgbry-1", "https://tec.openplanner.team/stops/Llgpiet2"], ["https://tec.openplanner.team/stops/Cgonvro1", "https://tec.openplanner.team/stops/Cgorobe1"], ["https://tec.openplanner.team/stops/Bbiehec2", "https://tec.openplanner.team/stops/Bbiehev1"], ["https://tec.openplanner.team/stops/LVIdeva2", "https://tec.openplanner.team/stops/LVIecol1"], ["https://tec.openplanner.team/stops/NL37aka", "https://tec.openplanner.team/stops/NL74aja"], ["https://tec.openplanner.team/stops/LbUmors2", "https://tec.openplanner.team/stops/LhDkreu1"], ["https://tec.openplanner.team/stops/Bptbsar1", "https://tec.openplanner.team/stops/Bptbsar2"], ["https://tec.openplanner.team/stops/LSTchef1", "https://tec.openplanner.team/stops/LSTdero2"], ["https://tec.openplanner.team/stops/X820abb", "https://tec.openplanner.team/stops/X820ada"], ["https://tec.openplanner.team/stops/Brixpje1", "https://tec.openplanner.team/stops/Brsrber1"], ["https://tec.openplanner.team/stops/LWAlong1", "https://tec.openplanner.team/stops/LWAlong5"], ["https://tec.openplanner.team/stops/Bsmgmas1", "https://tec.openplanner.team/stops/Bsmgpon2"], ["https://tec.openplanner.team/stops/Bcercab1", "https://tec.openplanner.team/stops/Bcercab2"], ["https://tec.openplanner.team/stops/LTB105-2", "https://tec.openplanner.team/stops/LTBeg--2"], ["https://tec.openplanner.team/stops/H1qu106a", "https://tec.openplanner.team/stops/H1qu107b"], ["https://tec.openplanner.team/stops/H5st164a", "https://tec.openplanner.team/stops/H5st166b"], ["https://tec.openplanner.team/stops/Bottppa1", "https://tec.openplanner.team/stops/Bottppa4"], ["https://tec.openplanner.team/stops/Lbbgare2", "https://tec.openplanner.team/stops/Ljubrec1"], ["https://tec.openplanner.team/stops/Cmaegal2", "https://tec.openplanner.team/stops/Crobass2"], ["https://tec.openplanner.team/stops/X774adb", "https://tec.openplanner.team/stops/X774adc"], ["https://tec.openplanner.team/stops/Lprferm2", "https://tec.openplanner.team/stops/LWetrib2"], ["https://tec.openplanner.team/stops/LAWaube1", "https://tec.openplanner.team/stops/LAWcorn1"], ["https://tec.openplanner.team/stops/Cgoobse1", "https://tec.openplanner.team/stops/Cgostro2"], ["https://tec.openplanner.team/stops/LkAsonn2", "https://tec.openplanner.team/stops/LmHschm2"], ["https://tec.openplanner.team/stops/H4be100a", "https://tec.openplanner.team/stops/H4be149b"], ["https://tec.openplanner.team/stops/H1bo108a", "https://tec.openplanner.team/stops/H1bo110a"], ["https://tec.openplanner.team/stops/X796aba", "https://tec.openplanner.team/stops/X796aga"], ["https://tec.openplanner.team/stops/N232ada", "https://tec.openplanner.team/stops/N232aga"], ["https://tec.openplanner.team/stops/LWbcarr1", "https://tec.openplanner.team/stops/X512aaa"], ["https://tec.openplanner.team/stops/Blimrof1", "https://tec.openplanner.team/stops/Brixape1"], ["https://tec.openplanner.team/stops/Bblavba1", "https://tec.openplanner.team/stops/Bwatbca2"], ["https://tec.openplanner.team/stops/H4do108b", "https://tec.openplanner.team/stops/H4sl155b"], ["https://tec.openplanner.team/stops/LBieg--3", "https://tec.openplanner.team/stops/LDObell1"], ["https://tec.openplanner.team/stops/LeUschn1", "https://tec.openplanner.team/stops/LeUwert1"], ["https://tec.openplanner.team/stops/Bnivace2", "https://tec.openplanner.team/stops/Bnivrec2"], ["https://tec.openplanner.team/stops/Bviravi2", "https://tec.openplanner.team/stops/Bvirduj2"], ["https://tec.openplanner.team/stops/H4ar172b", "https://tec.openplanner.team/stops/H4ho120a"], ["https://tec.openplanner.team/stops/Bnilhau1", "https://tec.openplanner.team/stops/Bnilspe2"], ["https://tec.openplanner.team/stops/LVAbloe1", "https://tec.openplanner.team/stops/LVAmaas1"], ["https://tec.openplanner.team/stops/H1pa117a", "https://tec.openplanner.team/stops/H1pa166b"], ["https://tec.openplanner.team/stops/Bjodbat1", "https://tec.openplanner.team/stops/Bjodpce1"], ["https://tec.openplanner.team/stops/X908asa", "https://tec.openplanner.team/stops/X951acb"], ["https://tec.openplanner.team/stops/H1hi123b", "https://tec.openplanner.team/stops/H1hi124b"], ["https://tec.openplanner.team/stops/X825agb", "https://tec.openplanner.team/stops/X826aga"], ["https://tec.openplanner.team/stops/N347aca", "https://tec.openplanner.team/stops/X347aab"], ["https://tec.openplanner.team/stops/Cladura5", "https://tec.openplanner.team/stops/NC23aeb"], ["https://tec.openplanner.team/stops/X812ama", "https://tec.openplanner.team/stops/X812aqa"], ["https://tec.openplanner.team/stops/N543bab", "https://tec.openplanner.team/stops/N543bfb"], ["https://tec.openplanner.team/stops/LWaanto2", "https://tec.openplanner.team/stops/LWacime1"], ["https://tec.openplanner.team/stops/N202aia", "https://tec.openplanner.team/stops/N204ajb"], ["https://tec.openplanner.team/stops/Bgdhdet1", "https://tec.openplanner.team/stops/Bwaak102"], ["https://tec.openplanner.team/stops/LbAhenk1", "https://tec.openplanner.team/stops/LhBdorf1"], ["https://tec.openplanner.team/stops/N506afa", "https://tec.openplanner.team/stops/N506ajb"], ["https://tec.openplanner.team/stops/Cfmmart2", "https://tec.openplanner.team/stops/Cfmsncb1"], ["https://tec.openplanner.team/stops/X824ala", "https://tec.openplanner.team/stops/X824alb"], ["https://tec.openplanner.team/stops/LOltill1", "https://tec.openplanner.team/stops/LOltill2"], ["https://tec.openplanner.team/stops/H1mj123a", "https://tec.openplanner.team/stops/H1mj123b"], ["https://tec.openplanner.team/stops/N551anb", "https://tec.openplanner.team/stops/N551aoa"], ["https://tec.openplanner.team/stops/LCvneu-2", "https://tec.openplanner.team/stops/LHrparc1"], ["https://tec.openplanner.team/stops/N501bba", "https://tec.openplanner.team/stops/N501cda"], ["https://tec.openplanner.team/stops/H1cv104a", "https://tec.openplanner.team/stops/H1lm105b"], ["https://tec.openplanner.team/stops/X602ada", "https://tec.openplanner.team/stops/X602apb"], ["https://tec.openplanner.team/stops/H2ha135c", "https://tec.openplanner.team/stops/H2tr246a"], ["https://tec.openplanner.team/stops/LaAnorm1", "https://tec.openplanner.team/stops/LrTbahn2"], ["https://tec.openplanner.team/stops/N501cqb", "https://tec.openplanner.team/stops/N501ctb"], ["https://tec.openplanner.team/stops/N505aob", "https://tec.openplanner.team/stops/N579abb"], ["https://tec.openplanner.team/stops/X902anb", "https://tec.openplanner.team/stops/X902bcb"], ["https://tec.openplanner.team/stops/Ccpblpo2", "https://tec.openplanner.team/stops/H2ch123c"], ["https://tec.openplanner.team/stops/NH01ana", "https://tec.openplanner.team/stops/NH01aub"], ["https://tec.openplanner.team/stops/H1do117a", "https://tec.openplanner.team/stops/H1do124a"], ["https://tec.openplanner.team/stops/Bnivaba2", "https://tec.openplanner.team/stops/Bnivrsa1"], ["https://tec.openplanner.team/stops/H1fl133c", "https://tec.openplanner.team/stops/H1fl137a"], ["https://tec.openplanner.team/stops/X986aea", "https://tec.openplanner.team/stops/X986afa"], ["https://tec.openplanner.team/stops/H1gn149a", "https://tec.openplanner.team/stops/H1gq153b"], ["https://tec.openplanner.team/stops/Bgzddmo2", "https://tec.openplanner.team/stops/Bgzdgli1"], ["https://tec.openplanner.team/stops/LHUtrin2", "https://tec.openplanner.team/stops/NL76bca"], ["https://tec.openplanner.team/stops/Lagpass1", "https://tec.openplanner.team/stops/Lagpass2"], ["https://tec.openplanner.team/stops/N346aab", "https://tec.openplanner.team/stops/N346ada"], ["https://tec.openplanner.team/stops/H4fl179a", "https://tec.openplanner.team/stops/H4fl179b"], ["https://tec.openplanner.team/stops/X804alb", "https://tec.openplanner.team/stops/X804alc"], ["https://tec.openplanner.team/stops/Bwatnro2", "https://tec.openplanner.team/stops/Bwatnrs1"], ["https://tec.openplanner.team/stops/LLrc_ip3", "https://tec.openplanner.team/stops/LWMchpl2"], ["https://tec.openplanner.team/stops/N501haa", "https://tec.openplanner.team/stops/N501hxa"], ["https://tec.openplanner.team/stops/Brixmar3", "https://tec.openplanner.team/stops/Brixpbs2"], ["https://tec.openplanner.team/stops/Cchba03", "https://tec.openplanner.team/stops/CMba1"], ["https://tec.openplanner.team/stops/H1nm138b", "https://tec.openplanner.team/stops/H1si155b"], ["https://tec.openplanner.team/stops/H5rx137a", "https://tec.openplanner.team/stops/H5rx138a"], ["https://tec.openplanner.team/stops/X660aaa", "https://tec.openplanner.team/stops/X660aba"], ["https://tec.openplanner.team/stops/Cdogrro2", "https://tec.openplanner.team/stops/Cstplac2"], ["https://tec.openplanner.team/stops/X719abb", "https://tec.openplanner.team/stops/X719ada"], ["https://tec.openplanner.team/stops/LREgar-1", "https://tec.openplanner.team/stops/LREgare1"], ["https://tec.openplanner.team/stops/H5pe125a", "https://tec.openplanner.team/stops/H5pe127b"], ["https://tec.openplanner.team/stops/X670aha", "https://tec.openplanner.team/stops/X670ara"], ["https://tec.openplanner.team/stops/H4an107b", "https://tec.openplanner.team/stops/H4pp121b"], ["https://tec.openplanner.team/stops/H4ea129a", "https://tec.openplanner.team/stops/H4ea132b"], ["https://tec.openplanner.team/stops/LDAcite2", "https://tec.openplanner.team/stops/LDArich1"], ["https://tec.openplanner.team/stops/H2sv212a", "https://tec.openplanner.team/stops/H2sv217b"], ["https://tec.openplanner.team/stops/Cmtplac4", "https://tec.openplanner.team/stops/Cmtplac8"], ["https://tec.openplanner.team/stops/X911aia", "https://tec.openplanner.team/stops/X911anb"], ["https://tec.openplanner.team/stops/N501hia", "https://tec.openplanner.team/stops/N501mqa"], ["https://tec.openplanner.team/stops/Bbcohou3", "https://tec.openplanner.team/stops/Bhenasc1"], ["https://tec.openplanner.team/stops/N874afa", "https://tec.openplanner.team/stops/N874aha"], ["https://tec.openplanner.team/stops/X774ahb", "https://tec.openplanner.team/stops/X775aga"], ["https://tec.openplanner.team/stops/Cgplutt1", "https://tec.openplanner.team/stops/H2gy108a"], ["https://tec.openplanner.team/stops/LGetroi1", "https://tec.openplanner.team/stops/LSIgera1"], ["https://tec.openplanner.team/stops/N540aka", "https://tec.openplanner.team/stops/N540alb"], ["https://tec.openplanner.team/stops/LeI39--3", "https://tec.openplanner.team/stops/LeI39--4"], ["https://tec.openplanner.team/stops/X813aab", "https://tec.openplanner.team/stops/X813aca"], ["https://tec.openplanner.team/stops/H4an107a", "https://tec.openplanner.team/stops/H4or115a"], ["https://tec.openplanner.team/stops/LVMfoli1", "https://tec.openplanner.team/stops/LVMfoli2"], ["https://tec.openplanner.team/stops/N232bva", "https://tec.openplanner.team/stops/N260aea"], ["https://tec.openplanner.team/stops/Llonaes1", "https://tec.openplanner.team/stops/Lloretr2"], ["https://tec.openplanner.team/stops/N515aib", "https://tec.openplanner.team/stops/N515ata"], ["https://tec.openplanner.team/stops/LHEcoll1", "https://tec.openplanner.team/stops/LHEepur2"], ["https://tec.openplanner.team/stops/N507aab", "https://tec.openplanner.team/stops/NL68aaa"], ["https://tec.openplanner.team/stops/LAmvent1", "https://tec.openplanner.team/stops/LAmvent3"], ["https://tec.openplanner.team/stops/Bottath1", "https://tec.openplanner.team/stops/Bottgar3"], ["https://tec.openplanner.team/stops/Bgercen2", "https://tec.openplanner.team/stops/NB33aia"], ["https://tec.openplanner.team/stops/Cbimonu2", "https://tec.openplanner.team/stops/Cthalou2"], ["https://tec.openplanner.team/stops/LWAlong2", "https://tec.openplanner.team/stops/LWAloui1"], ["https://tec.openplanner.team/stops/Ccoh1211", "https://tec.openplanner.team/stops/Cronova1"], ["https://tec.openplanner.team/stops/Btubren1", "https://tec.openplanner.team/stops/Bvirrbo1"], ["https://tec.openplanner.team/stops/N553afa", "https://tec.openplanner.team/stops/N553ajb"], ["https://tec.openplanner.team/stops/X634aca", "https://tec.openplanner.team/stops/X634aea"], ["https://tec.openplanner.team/stops/N222aeb", "https://tec.openplanner.team/stops/X222azb"], ["https://tec.openplanner.team/stops/N501ima", "https://tec.openplanner.team/stops/N501nca"], ["https://tec.openplanner.team/stops/H3br100a", "https://tec.openplanner.team/stops/H3br110a"], ["https://tec.openplanner.team/stops/LHNgend2", "https://tec.openplanner.team/stops/LHNgend3"], ["https://tec.openplanner.team/stops/N501fya", "https://tec.openplanner.team/stops/N501iga"], ["https://tec.openplanner.team/stops/Cfrmon3", "https://tec.openplanner.team/stops/Cfrmonu1"], ["https://tec.openplanner.team/stops/LAUcose2", "https://tec.openplanner.team/stops/LFdbagu2"], ["https://tec.openplanner.team/stops/N161aab", "https://tec.openplanner.team/stops/N161aeb"], ["https://tec.openplanner.team/stops/H1te185b", "https://tec.openplanner.team/stops/H1te187b"], ["https://tec.openplanner.team/stops/X910adb", "https://tec.openplanner.team/stops/X910aia"], ["https://tec.openplanner.team/stops/Bsaupco1", "https://tec.openplanner.team/stops/Bsaupco2"], ["https://tec.openplanner.team/stops/LAUbirv1", "https://tec.openplanner.team/stops/LClflor1"], ["https://tec.openplanner.team/stops/X788ada", "https://tec.openplanner.team/stops/X788adb"], ["https://tec.openplanner.team/stops/Lhemilm1", "https://tec.openplanner.team/stops/Lhemilm2"], ["https://tec.openplanner.team/stops/LMfange2", "https://tec.openplanner.team/stops/LMfbacu1"], ["https://tec.openplanner.team/stops/H2an109a", "https://tec.openplanner.team/stops/H2ml114a"], ["https://tec.openplanner.team/stops/LFMkrut1", "https://tec.openplanner.team/stops/LVu03--1"], ["https://tec.openplanner.team/stops/Crobass2", "https://tec.openplanner.team/stops/Cromonn1"], ["https://tec.openplanner.team/stops/LmI129-1", "https://tec.openplanner.team/stops/LmI129-2"], ["https://tec.openplanner.team/stops/X782akb", "https://tec.openplanner.team/stops/X782ala"], ["https://tec.openplanner.team/stops/N209abb", "https://tec.openplanner.team/stops/N209afa"], ["https://tec.openplanner.team/stops/N562bia", "https://tec.openplanner.team/stops/N562bkb"], ["https://tec.openplanner.team/stops/Cvtgsar2", "https://tec.openplanner.team/stops/Cvthoeu1"], ["https://tec.openplanner.team/stops/LrEdic11", "https://tec.openplanner.team/stops/LrEviel2"], ["https://tec.openplanner.team/stops/Lmohomv2", "https://tec.openplanner.team/stops/Lmoweri1"], ["https://tec.openplanner.team/stops/Lvcfogu1", "https://tec.openplanner.team/stops/Lvcvand2"], ["https://tec.openplanner.team/stops/X983abb", "https://tec.openplanner.team/stops/X986aab"], ["https://tec.openplanner.team/stops/Cfnegli2", "https://tec.openplanner.team/stops/N162aea"], ["https://tec.openplanner.team/stops/Blemwob1", "https://tec.openplanner.team/stops/Blemwob2"], ["https://tec.openplanner.team/stops/LFCvoge3", "https://tec.openplanner.team/stops/LWRchem2"], ["https://tec.openplanner.team/stops/Bottcco2", "https://tec.openplanner.team/stops/Bottcro2"], ["https://tec.openplanner.team/stops/Bcrnsge2", "https://tec.openplanner.team/stops/Bsgeqpb1"], ["https://tec.openplanner.team/stops/H4ch113a", "https://tec.openplanner.team/stops/H4vx364d"], ["https://tec.openplanner.team/stops/Cmyedpa2", "https://tec.openplanner.team/stops/Cmyronc2"], ["https://tec.openplanner.team/stops/LMvrabo2", "https://tec.openplanner.team/stops/LSpcarr2"], ["https://tec.openplanner.team/stops/Bbryfon2", "https://tec.openplanner.team/stops/Bwagdeb2"], ["https://tec.openplanner.team/stops/LWNbeto2", "https://tec.openplanner.team/stops/LWNfani2"], ["https://tec.openplanner.team/stops/Lqbchat1", "https://tec.openplanner.team/stops/Lqbeg--1"], ["https://tec.openplanner.team/stops/N202afa", "https://tec.openplanner.team/stops/N204alb"], ["https://tec.openplanner.team/stops/LVLeg--1", "https://tec.openplanner.team/stops/LVLeg--2"], ["https://tec.openplanner.team/stops/LHUalbe1", "https://tec.openplanner.team/stops/LHUpost4"], ["https://tec.openplanner.team/stops/H4ho120a", "https://tec.openplanner.team/stops/H4ho121a"], ["https://tec.openplanner.team/stops/X758aba", "https://tec.openplanner.team/stops/X758aca"], ["https://tec.openplanner.team/stops/Bfelcen1", "https://tec.openplanner.team/stops/Bfelcsa1"], ["https://tec.openplanner.team/stops/X813aaa", "https://tec.openplanner.team/stops/X857abb"], ["https://tec.openplanner.team/stops/Bjod7co2", "https://tec.openplanner.team/stops/Bjodeco3"], ["https://tec.openplanner.team/stops/H1wa136b", "https://tec.openplanner.team/stops/H1wa137a"], ["https://tec.openplanner.team/stops/Lvejeha2", "https://tec.openplanner.team/stops/Lvelobe2"], ["https://tec.openplanner.team/stops/H4pe126a", "https://tec.openplanner.team/stops/H4pe128b"], ["https://tec.openplanner.team/stops/LwL100-2", "https://tec.openplanner.team/stops/LwLkirc2"], ["https://tec.openplanner.team/stops/N579aba", "https://tec.openplanner.team/stops/N579acb"], ["https://tec.openplanner.team/stops/Ldihvce2", "https://tec.openplanner.team/stops/Ldineuf2"], ["https://tec.openplanner.team/stops/H2tr249a", "https://tec.openplanner.team/stops/H2tr256b"], ["https://tec.openplanner.team/stops/Bbealbu4", "https://tec.openplanner.team/stops/Bbealou1"], ["https://tec.openplanner.team/stops/X773aha", "https://tec.openplanner.team/stops/X773aoa"], ["https://tec.openplanner.team/stops/Cprcits1", "https://tec.openplanner.team/stops/Cprvsar2"], ["https://tec.openplanner.team/stops/X713aba", "https://tec.openplanner.team/stops/X713acb"], ["https://tec.openplanner.team/stops/X769aba", "https://tec.openplanner.team/stops/X769abb"], ["https://tec.openplanner.team/stops/X639aja", "https://tec.openplanner.team/stops/X639ana"], ["https://tec.openplanner.team/stops/N534ayb", "https://tec.openplanner.team/stops/N534byb"], ["https://tec.openplanner.team/stops/H2jo162b", "https://tec.openplanner.team/stops/H2lh129a"], ["https://tec.openplanner.team/stops/LHEgare2", "https://tec.openplanner.team/stops/LHEpriv1"], ["https://tec.openplanner.team/stops/Cgocnor4", "https://tec.openplanner.team/stops/Cgosoux2"], ["https://tec.openplanner.team/stops/N343akb", "https://tec.openplanner.team/stops/N343alb"], ["https://tec.openplanner.team/stops/Lcemalv2", "https://tec.openplanner.team/stops/Lcemalv3"], ["https://tec.openplanner.team/stops/LMNheme1", "https://tec.openplanner.team/stops/LMNswar1"], ["https://tec.openplanner.team/stops/LTIdjal2", "https://tec.openplanner.team/stops/LTIp%C3%A9pi1"], ["https://tec.openplanner.team/stops/X595afc", "https://tec.openplanner.team/stops/X796aha"], ["https://tec.openplanner.team/stops/N538acb", "https://tec.openplanner.team/stops/N538akb"], ["https://tec.openplanner.team/stops/LElgerd3", "https://tec.openplanner.team/stops/LOumaro1"], ["https://tec.openplanner.team/stops/LeYauss2", "https://tec.openplanner.team/stops/LeYdorf1"], ["https://tec.openplanner.team/stops/H4bd110b", "https://tec.openplanner.team/stops/H4ht172a"], ["https://tec.openplanner.team/stops/LCxcouv1", "https://tec.openplanner.team/stops/LCxwade2"], ["https://tec.openplanner.team/stops/X666aba", "https://tec.openplanner.team/stops/X666acb"], ["https://tec.openplanner.team/stops/Caibras2", "https://tec.openplanner.team/stops/Caiecol1"], ["https://tec.openplanner.team/stops/Bpercsp2", "https://tec.openplanner.team/stops/Bpergar1"], ["https://tec.openplanner.team/stops/N501bfb", "https://tec.openplanner.team/stops/N501bfz"], ["https://tec.openplanner.team/stops/N301aaa", "https://tec.openplanner.team/stops/N301ahb"], ["https://tec.openplanner.team/stops/Bgercen2", "https://tec.openplanner.team/stops/Bgrhcro1"], ["https://tec.openplanner.team/stops/LAMmc--1", "https://tec.openplanner.team/stops/LAMmc--2"], ["https://tec.openplanner.team/stops/LsVgils2", "https://tec.openplanner.team/stops/LsVhunn1"], ["https://tec.openplanner.team/stops/LMIpatr4", "https://tec.openplanner.team/stops/LMIterr2"], ["https://tec.openplanner.team/stops/LJU493-1", "https://tec.openplanner.team/stops/LWinavi1"], ["https://tec.openplanner.team/stops/Bclgmev1", "https://tec.openplanner.team/stops/Bclgmev2"], ["https://tec.openplanner.team/stops/N516aoa", "https://tec.openplanner.team/stops/N516aob"], ["https://tec.openplanner.team/stops/H2ch121a", "https://tec.openplanner.team/stops/H2ch121b"], ["https://tec.openplanner.team/stops/Bbeaegl1", "https://tec.openplanner.team/stops/Bbeaegl2"], ["https://tec.openplanner.team/stops/N516aha", "https://tec.openplanner.team/stops/N516aib"], ["https://tec.openplanner.team/stops/Bjanfer1", "https://tec.openplanner.team/stops/NR30aba"], ["https://tec.openplanner.team/stops/H1si154a", "https://tec.openplanner.team/stops/H1si169b"], ["https://tec.openplanner.team/stops/N535abb", "https://tec.openplanner.team/stops/N535ada"], ["https://tec.openplanner.team/stops/Bnivhon2", "https://tec.openplanner.team/stops/Bthivil2"], ["https://tec.openplanner.team/stops/X695aha", "https://tec.openplanner.team/stops/X695ala"], ["https://tec.openplanner.team/stops/Lsnbure1", "https://tec.openplanner.team/stops/Ltihorl2"], ["https://tec.openplanner.team/stops/Bgntffo1", "https://tec.openplanner.team/stops/Bgntffo2"], ["https://tec.openplanner.team/stops/Lceourt1", "https://tec.openplanner.team/stops/Lceourt2"], ["https://tec.openplanner.team/stops/LVPeg--1", "https://tec.openplanner.team/stops/LVPeg--2"], ["https://tec.openplanner.team/stops/LBEbelf1", "https://tec.openplanner.team/stops/LBEoblu1"], ["https://tec.openplanner.team/stops/N211aea", "https://tec.openplanner.team/stops/N211awb"], ["https://tec.openplanner.team/stops/LHZbren1", "https://tec.openplanner.team/stops/LHZcime1"], ["https://tec.openplanner.team/stops/N514aaa", "https://tec.openplanner.team/stops/N514aka"], ["https://tec.openplanner.team/stops/H1fr114a", "https://tec.openplanner.team/stops/H1fr129a"], ["https://tec.openplanner.team/stops/Bblaeur1", "https://tec.openplanner.team/stops/Bblamer2"], ["https://tec.openplanner.team/stops/Lmntast1", "https://tec.openplanner.team/stops/Lmntast2"], ["https://tec.openplanner.team/stops/Bblapin1", "https://tec.openplanner.team/stops/Bblapri1"], ["https://tec.openplanner.team/stops/X808aab", "https://tec.openplanner.team/stops/X808adb"], ["https://tec.openplanner.team/stops/LmRkreu1", "https://tec.openplanner.team/stops/LmRkreu2"], ["https://tec.openplanner.team/stops/N201aec", "https://tec.openplanner.team/stops/N201aef"], ["https://tec.openplanner.team/stops/N501mia", "https://tec.openplanner.team/stops/N501mib"], ["https://tec.openplanner.team/stops/H2sb221b", "https://tec.openplanner.team/stops/H2sb223a"], ["https://tec.openplanner.team/stops/Cgxmorg1", "https://tec.openplanner.team/stops/Cgxprad1"], ["https://tec.openplanner.team/stops/N343aja", "https://tec.openplanner.team/stops/N343aob"], ["https://tec.openplanner.team/stops/N311aba", "https://tec.openplanner.team/stops/N311aca"], ["https://tec.openplanner.team/stops/Bbcohou4", "https://tec.openplanner.team/stops/H2ec110b"], ["https://tec.openplanner.team/stops/H1hh114a", "https://tec.openplanner.team/stops/H1hh118a"], ["https://tec.openplanner.team/stops/LSPecho1", "https://tec.openplanner.team/stops/LSPgend1"], ["https://tec.openplanner.team/stops/H1do120a", "https://tec.openplanner.team/stops/H1do131d"], ["https://tec.openplanner.team/stops/H2mo119b", "https://tec.openplanner.team/stops/H2mo125b"], ["https://tec.openplanner.team/stops/LwAkape1", "https://tec.openplanner.team/stops/LwArabo1"], ["https://tec.openplanner.team/stops/Lvehopi4", "https://tec.openplanner.team/stops/Lvehopi5"], ["https://tec.openplanner.team/stops/LLNcruc1", "https://tec.openplanner.team/stops/LLNcruc2"], ["https://tec.openplanner.team/stops/H2ha142a", "https://tec.openplanner.team/stops/H2ha142b"], ["https://tec.openplanner.team/stops/N349aab", "https://tec.openplanner.team/stops/N351aqa"], ["https://tec.openplanner.team/stops/LGHplai1", "https://tec.openplanner.team/stops/LTPbeau1"], ["https://tec.openplanner.team/stops/Bgnvpco3", "https://tec.openplanner.team/stops/Blasren2"], ["https://tec.openplanner.team/stops/H4er125a", "https://tec.openplanner.team/stops/H4gu109a"], ["https://tec.openplanner.team/stops/LKmdani2", "https://tec.openplanner.team/stops/LKmdrie2"], ["https://tec.openplanner.team/stops/Ccogibr2", "https://tec.openplanner.team/stops/Ccovies1"], ["https://tec.openplanner.team/stops/Cauromi2", "https://tec.openplanner.team/stops/N543awh"], ["https://tec.openplanner.team/stops/H2sb235a", "https://tec.openplanner.team/stops/H2sb238a"], ["https://tec.openplanner.team/stops/LVPcoeu2", "https://tec.openplanner.team/stops/LVPduvi2"], ["https://tec.openplanner.team/stops/Clrcomb1", "https://tec.openplanner.team/stops/Clrhava2"], ["https://tec.openplanner.team/stops/X952aha", "https://tec.openplanner.team/stops/X954adb"], ["https://tec.openplanner.team/stops/Brsga151", "https://tec.openplanner.team/stops/Bwategp1"], ["https://tec.openplanner.team/stops/N584bnb", "https://tec.openplanner.team/stops/N584cba"], ["https://tec.openplanner.team/stops/Cbmmafr1", "https://tec.openplanner.team/stops/Cssgare2"], ["https://tec.openplanner.team/stops/N524abb", "https://tec.openplanner.team/stops/N524amb"], ["https://tec.openplanner.team/stops/X739aja", "https://tec.openplanner.team/stops/X912aga"], ["https://tec.openplanner.team/stops/LVEeg--1", "https://tec.openplanner.team/stops/LVEeg--2"], ["https://tec.openplanner.team/stops/H4bo182a", "https://tec.openplanner.team/stops/H4og210b"], ["https://tec.openplanner.team/stops/H2lc169d", "https://tec.openplanner.team/stops/H2lc172b"], ["https://tec.openplanner.team/stops/LFProt-2", "https://tec.openplanner.team/stops/LVukabi1"], ["https://tec.openplanner.team/stops/LeUnisp1", "https://tec.openplanner.team/stops/LeUwert3"], ["https://tec.openplanner.team/stops/NL78aja", "https://tec.openplanner.team/stops/NL78aka"], ["https://tec.openplanner.team/stops/LVSeg--2", "https://tec.openplanner.team/stops/LVSslin1"], ["https://tec.openplanner.team/stops/H1bb117b", "https://tec.openplanner.team/stops/H1bb120a"], ["https://tec.openplanner.team/stops/Bgntcom1", "https://tec.openplanner.team/stops/Bgnttma1"], ["https://tec.openplanner.team/stops/Llgangl2", "https://tec.openplanner.team/stops/Llgelis1"], ["https://tec.openplanner.team/stops/X937aha", "https://tec.openplanner.team/stops/X937aia"], ["https://tec.openplanner.team/stops/X870afa", "https://tec.openplanner.team/stops/X870aib"], ["https://tec.openplanner.team/stops/X607ada", "https://tec.openplanner.team/stops/X607adb"], ["https://tec.openplanner.team/stops/X342aeb", "https://tec.openplanner.team/stops/X354aca"], ["https://tec.openplanner.team/stops/N134acb", "https://tec.openplanner.team/stops/N134aja"], ["https://tec.openplanner.team/stops/LFTeg--1", "https://tec.openplanner.team/stops/LFTneur*"], ["https://tec.openplanner.team/stops/Bolgcsa1", "https://tec.openplanner.team/stops/Bolgegl2"], ["https://tec.openplanner.team/stops/LRRoser2", "https://tec.openplanner.team/stops/LTaeg--1"], ["https://tec.openplanner.team/stops/H4fr144a", "https://tec.openplanner.team/stops/H4ty328a"], ["https://tec.openplanner.team/stops/Ladotto1", "https://tec.openplanner.team/stops/Ladotto2"], ["https://tec.openplanner.team/stops/H1mm122a", "https://tec.openplanner.team/stops/H1mm122b"], ["https://tec.openplanner.team/stops/LeUcamp2", "https://tec.openplanner.team/stops/LMedoum2"], ["https://tec.openplanner.team/stops/Lheloti1", "https://tec.openplanner.team/stops/Lheterm*"], ["https://tec.openplanner.team/stops/Blingar1", "https://tec.openplanner.team/stops/Brach121"], ["https://tec.openplanner.team/stops/H4pl121b", "https://tec.openplanner.team/stops/H4pl122b"], ["https://tec.openplanner.team/stops/Cgocitn1", "https://tec.openplanner.team/stops/Cgomoul1"], ["https://tec.openplanner.team/stops/H2sv221a", "https://tec.openplanner.team/stops/H2sv221b"], ["https://tec.openplanner.team/stops/LBrneli2", "https://tec.openplanner.team/stops/LMApape2"], ["https://tec.openplanner.team/stops/H5el101a", "https://tec.openplanner.team/stops/H5el102b"], ["https://tec.openplanner.team/stops/N558ada", "https://tec.openplanner.team/stops/N558agb"], ["https://tec.openplanner.team/stops/H5rx104b", "https://tec.openplanner.team/stops/H5rx105a"], ["https://tec.openplanner.team/stops/Bnivn971", "https://tec.openplanner.team/stops/Bnivvai2"], ["https://tec.openplanner.team/stops/N109aaa", "https://tec.openplanner.team/stops/N109aia"], ["https://tec.openplanner.team/stops/LFsbasc2", "https://tec.openplanner.team/stops/LVSpn--2"], ["https://tec.openplanner.team/stops/LWOsass2", "https://tec.openplanner.team/stops/LWOwa162"], ["https://tec.openplanner.team/stops/H4th140a", "https://tec.openplanner.team/stops/H4th141b"], ["https://tec.openplanner.team/stops/N517aaa", "https://tec.openplanner.team/stops/N517aba"], ["https://tec.openplanner.team/stops/N118akb", "https://tec.openplanner.team/stops/N147abb"], ["https://tec.openplanner.team/stops/N501gga", "https://tec.openplanner.team/stops/N501lqa"], ["https://tec.openplanner.team/stops/N338aab", "https://tec.openplanner.team/stops/N338agb"], ["https://tec.openplanner.team/stops/N501cmd", "https://tec.openplanner.team/stops/N501emb"], ["https://tec.openplanner.team/stops/LHemoul1", "https://tec.openplanner.team/stops/LOUherm1"], ["https://tec.openplanner.team/stops/H1me112a", "https://tec.openplanner.team/stops/H1me117e"], ["https://tec.openplanner.team/stops/Canh1941", "https://tec.openplanner.team/stops/Cfosurs2"], ["https://tec.openplanner.team/stops/LJEloum1", "https://tec.openplanner.team/stops/LJEloum2"], ["https://tec.openplanner.team/stops/Cmyfoym1", "https://tec.openplanner.team/stops/Cmyquen1"], ["https://tec.openplanner.team/stops/H1au100a", "https://tec.openplanner.team/stops/H1au102b"], ["https://tec.openplanner.team/stops/LAMcoll1", "https://tec.openplanner.team/stops/LAMjeha1"], ["https://tec.openplanner.team/stops/N118ada", "https://tec.openplanner.team/stops/N118ala"], ["https://tec.openplanner.team/stops/H1hw123b", "https://tec.openplanner.team/stops/H1so136b"], ["https://tec.openplanner.team/stops/Bhvlbet1", "https://tec.openplanner.team/stops/Bhvlpla2"], ["https://tec.openplanner.team/stops/N519adb", "https://tec.openplanner.team/stops/N519alb"], ["https://tec.openplanner.team/stops/Lcheg--2", "https://tec.openplanner.team/stops/Lvieg--1"], ["https://tec.openplanner.team/stops/X897aba", "https://tec.openplanner.team/stops/X897aod"], ["https://tec.openplanner.team/stops/LMIgare1", "https://tec.openplanner.team/stops/LMIpatr3"], ["https://tec.openplanner.team/stops/LbOdorf1", "https://tec.openplanner.team/stops/LbOkalv2"], ["https://tec.openplanner.team/stops/LnUcamp1", "https://tec.openplanner.team/stops/LnUhohe1"], ["https://tec.openplanner.team/stops/Ceqmeti1", "https://tec.openplanner.team/stops/H1er113a"], ["https://tec.openplanner.team/stops/Cchoues2", "https://tec.openplanner.team/stops/CMoues1"], ["https://tec.openplanner.team/stops/H4wi167a", "https://tec.openplanner.team/stops/H4wi170a"], ["https://tec.openplanner.team/stops/X604aja", "https://tec.openplanner.team/stops/X604ajb"], ["https://tec.openplanner.team/stops/LOucarr4", "https://tec.openplanner.team/stops/LOuplac3"], ["https://tec.openplanner.team/stops/Llginte2", "https://tec.openplanner.team/stops/Llglill1"], ["https://tec.openplanner.team/stops/Beclbse2", "https://tec.openplanner.team/stops/Beclesp2"], ["https://tec.openplanner.team/stops/X850afb", "https://tec.openplanner.team/stops/X850agb"], ["https://tec.openplanner.team/stops/LOdcris2", "https://tec.openplanner.team/stops/LOdmonu3"], ["https://tec.openplanner.team/stops/H1ho122b", "https://tec.openplanner.team/stops/H1ho134b"], ["https://tec.openplanner.team/stops/X663aac", "https://tec.openplanner.team/stops/X769arb"], ["https://tec.openplanner.team/stops/Bllnfle1", "https://tec.openplanner.team/stops/Bmsggra2"], ["https://tec.openplanner.team/stops/X640aoa", "https://tec.openplanner.team/stops/X641aia"], ["https://tec.openplanner.team/stops/N244aea", "https://tec.openplanner.team/stops/N244aub"], ["https://tec.openplanner.team/stops/Crsapol2", "https://tec.openplanner.team/stops/Crsmonu2"], ["https://tec.openplanner.team/stops/N505akb", "https://tec.openplanner.team/stops/N511aia"], ["https://tec.openplanner.team/stops/Bbuzeta1", "https://tec.openplanner.team/stops/Cobhaut2"], ["https://tec.openplanner.team/stops/NL76aha", "https://tec.openplanner.team/stops/NL77aba"], ["https://tec.openplanner.team/stops/N501jfb", "https://tec.openplanner.team/stops/N501jgb"], ["https://tec.openplanner.team/stops/H4co107a", "https://tec.openplanner.team/stops/H4co158a"], ["https://tec.openplanner.team/stops/LFEhoup1", "https://tec.openplanner.team/stops/X595aha"], ["https://tec.openplanner.team/stops/LBgcroi4", "https://tec.openplanner.team/stops/LGmhedo1"], ["https://tec.openplanner.team/stops/X811abb", "https://tec.openplanner.team/stops/X811ama"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/NH03ada"], ["https://tec.openplanner.team/stops/H2na131a", "https://tec.openplanner.team/stops/H2na131b"], ["https://tec.openplanner.team/stops/LMYlieg1", "https://tec.openplanner.team/stops/LMYroin2"], ["https://tec.openplanner.team/stops/Bnivbng1", "https://tec.openplanner.team/stops/Bptrmar1"], ["https://tec.openplanner.team/stops/LGrchpl2", "https://tec.openplanner.team/stops/LORroma1"], ["https://tec.openplanner.team/stops/LOccarr1", "https://tec.openplanner.team/stops/LOccarr2"], ["https://tec.openplanner.team/stops/Cwgcroi2", "https://tec.openplanner.team/stops/Cwgdeba1"], ["https://tec.openplanner.team/stops/H1cu110a", "https://tec.openplanner.team/stops/H1fl136b"], ["https://tec.openplanner.team/stops/H5wo125a", "https://tec.openplanner.team/stops/H5wo136b"], ["https://tec.openplanner.team/stops/H4bw101b", "https://tec.openplanner.team/stops/H4co150a"], ["https://tec.openplanner.team/stops/H1ca100b", "https://tec.openplanner.team/stops/H1ne144a"], ["https://tec.openplanner.team/stops/LPTblan1", "https://tec.openplanner.team/stops/LPTblan2"], ["https://tec.openplanner.team/stops/Cjxcoll1", "https://tec.openplanner.team/stops/Cjxcoll2"], ["https://tec.openplanner.team/stops/H1fr125b", "https://tec.openplanner.team/stops/H1lb153b"], ["https://tec.openplanner.team/stops/Bohnbra1", "https://tec.openplanner.team/stops/Bohnbra2"], ["https://tec.openplanner.team/stops/Loucoti1", "https://tec.openplanner.team/stops/Loucoti2"], ["https://tec.openplanner.team/stops/X985acb", "https://tec.openplanner.team/stops/X985adb"], ["https://tec.openplanner.team/stops/Lsnbrac2", "https://tec.openplanner.team/stops/Lsnbrac4"], ["https://tec.openplanner.team/stops/Cragill1", "https://tec.openplanner.team/stops/Cragill2"], ["https://tec.openplanner.team/stops/Llgjasm2", "https://tec.openplanner.team/stops/Llgmont2"], ["https://tec.openplanner.team/stops/H4ga159a", "https://tec.openplanner.team/stops/H4ga164a"], ["https://tec.openplanner.team/stops/X651aab", "https://tec.openplanner.team/stops/X651abb"], ["https://tec.openplanner.team/stops/X869aea", "https://tec.openplanner.team/stops/X871aeb"], ["https://tec.openplanner.team/stops/Bvirflu1", "https://tec.openplanner.team/stops/Bvirfpo1"], ["https://tec.openplanner.team/stops/LSGcolo2", "https://tec.openplanner.team/stops/LSkchwa1"], ["https://tec.openplanner.team/stops/N209aca", "https://tec.openplanner.team/stops/N209acb"], ["https://tec.openplanner.team/stops/X782afa", "https://tec.openplanner.team/stops/X782agb"], ["https://tec.openplanner.team/stops/LKmeg--1", "https://tec.openplanner.team/stops/LKmmelo1"], ["https://tec.openplanner.team/stops/Lghalle1", "https://tec.openplanner.team/stops/Lghprea2"], ["https://tec.openplanner.team/stops/Cfabnat1", "https://tec.openplanner.team/stops/Cfaecmo1"], ["https://tec.openplanner.team/stops/Cnabult3", "https://tec.openplanner.team/stops/Cnabult4"], ["https://tec.openplanner.team/stops/Cprcalv2", "https://tec.openplanner.team/stops/Cprgran2"], ["https://tec.openplanner.team/stops/N501ila", "https://tec.openplanner.team/stops/N501ilb"], ["https://tec.openplanner.team/stops/X826ada", "https://tec.openplanner.team/stops/X826ahb"], ["https://tec.openplanner.team/stops/X662arb", "https://tec.openplanner.team/stops/X662ata"], ["https://tec.openplanner.team/stops/N501etb", "https://tec.openplanner.team/stops/N501ety"], ["https://tec.openplanner.team/stops/H4jm117c", "https://tec.openplanner.team/stops/H4jm118a"], ["https://tec.openplanner.team/stops/LDaeg--2", "https://tec.openplanner.team/stops/LLYtir-1"], ["https://tec.openplanner.team/stops/H4ga161a", "https://tec.openplanner.team/stops/H4ga167a"], ["https://tec.openplanner.team/stops/Lchplai1", "https://tec.openplanner.team/stops/Lchtche1"], ["https://tec.openplanner.team/stops/Ljeblum2", "https://tec.openplanner.team/stops/Ljegare1"], ["https://tec.openplanner.team/stops/N531aqb", "https://tec.openplanner.team/stops/N531asc"], ["https://tec.openplanner.team/stops/LmHschm1", "https://tec.openplanner.team/stops/LmHumge1"], ["https://tec.openplanner.team/stops/LFFcouv2", "https://tec.openplanner.team/stops/LSCchap2"], ["https://tec.openplanner.team/stops/X757ahb", "https://tec.openplanner.team/stops/X757amb"], ["https://tec.openplanner.team/stops/LGecite1", "https://tec.openplanner.team/stops/LGevygh1"], ["https://tec.openplanner.team/stops/H4bs110b", "https://tec.openplanner.team/stops/H4bs113a"], ["https://tec.openplanner.team/stops/H2sb238b", "https://tec.openplanner.team/stops/H2sb271a"], ["https://tec.openplanner.team/stops/H1po139b", "https://tec.openplanner.team/stops/H5st162b"], ["https://tec.openplanner.team/stops/H4qu230a", "https://tec.openplanner.team/stops/H4qu230b"], ["https://tec.openplanner.team/stops/Lfhhaso2", "https://tec.openplanner.team/stops/Lfh-sci2"], ["https://tec.openplanner.team/stops/H4ff118a", "https://tec.openplanner.team/stops/H4ff122a"], ["https://tec.openplanner.team/stops/N106aba", "https://tec.openplanner.team/stops/N106abb"], ["https://tec.openplanner.team/stops/Bsaumlp1", "https://tec.openplanner.team/stops/Bwlhcsr2"], ["https://tec.openplanner.team/stops/X714aba", "https://tec.openplanner.team/stops/X714abb"], ["https://tec.openplanner.team/stops/Cmmplac1", "https://tec.openplanner.team/stops/Cmmplac2"], ["https://tec.openplanner.team/stops/LFebas-2", "https://tec.openplanner.team/stops/LRIhous2"], ["https://tec.openplanner.team/stops/X793aga", "https://tec.openplanner.team/stops/X793ahb"], ["https://tec.openplanner.team/stops/N152aaf", "https://tec.openplanner.team/stops/N152abe"], ["https://tec.openplanner.team/stops/Bezegar2", "https://tec.openplanner.team/stops/Btiegma1"], ["https://tec.openplanner.team/stops/Lveanne1", "https://tec.openplanner.team/stops/Lvewall1"], ["https://tec.openplanner.team/stops/X771ala", "https://tec.openplanner.team/stops/X771alb"], ["https://tec.openplanner.team/stops/LPleclu1", "https://tec.openplanner.team/stops/LPlpomp1"], ["https://tec.openplanner.team/stops/Cciqueu1", "https://tec.openplanner.team/stops/NC02avb"], ["https://tec.openplanner.team/stops/H1hv131b", "https://tec.openplanner.team/stops/H1hv135a"], ["https://tec.openplanner.team/stops/LAMrich1", "https://tec.openplanner.team/stops/LJEpaqu1"], ["https://tec.openplanner.team/stops/H4ga169a", "https://tec.openplanner.team/stops/H4ga170a"], ["https://tec.openplanner.team/stops/N241aea", "https://tec.openplanner.team/stops/N241aeb"], ["https://tec.openplanner.team/stops/N352aca", "https://tec.openplanner.team/stops/N367ada"], ["https://tec.openplanner.team/stops/N121aaa", "https://tec.openplanner.team/stops/N121aab"], ["https://tec.openplanner.team/stops/H5at235a", "https://tec.openplanner.team/stops/H5at235b"], ["https://tec.openplanner.team/stops/X638arb", "https://tec.openplanner.team/stops/X639aba"], ["https://tec.openplanner.team/stops/Btlbegl1", "https://tec.openplanner.team/stops/Btlbegl4"], ["https://tec.openplanner.team/stops/LCscarr3", "https://tec.openplanner.team/stops/LCscarr4"], ["https://tec.openplanner.team/stops/N501dza", "https://tec.openplanner.team/stops/N501jra"], ["https://tec.openplanner.team/stops/N580abb", "https://tec.openplanner.team/stops/N580afb"], ["https://tec.openplanner.team/stops/Lhrbass1", "https://tec.openplanner.team/stops/Lhrdron2"], ["https://tec.openplanner.team/stops/Cjufrat1", "https://tec.openplanner.team/stops/Cjufrat2"], ["https://tec.openplanner.team/stops/Cptccas1", "https://tec.openplanner.team/stops/Cptccas2"], ["https://tec.openplanner.team/stops/X902aca", "https://tec.openplanner.team/stops/X902bcb"], ["https://tec.openplanner.team/stops/Creespi1", "https://tec.openplanner.team/stops/Crewath1"], ["https://tec.openplanner.team/stops/X614awb", "https://tec.openplanner.team/stops/X615ava"], ["https://tec.openplanner.team/stops/LREgar-2", "https://tec.openplanner.team/stops/LREgrot3"], ["https://tec.openplanner.team/stops/Cmtdepo1", "https://tec.openplanner.team/stops/Cmtdepo2"], ["https://tec.openplanner.team/stops/Bvlvmar2", "https://tec.openplanner.team/stops/Bvlvpco2"], ["https://tec.openplanner.team/stops/LWaatel2", "https://tec.openplanner.team/stops/LWazoni1"], ["https://tec.openplanner.team/stops/N501fub", "https://tec.openplanner.team/stops/N501fuz"], ["https://tec.openplanner.team/stops/H4lg104a", "https://tec.openplanner.team/stops/H4ta115b"], ["https://tec.openplanner.team/stops/H1al107b", "https://tec.openplanner.team/stops/H1al108b"], ["https://tec.openplanner.team/stops/Llmdeba1", "https://tec.openplanner.team/stops/Llmdela1"], ["https://tec.openplanner.team/stops/X754arb", "https://tec.openplanner.team/stops/X754asb"], ["https://tec.openplanner.team/stops/H1au102a", "https://tec.openplanner.team/stops/H1au102b"], ["https://tec.openplanner.team/stops/X938aab", "https://tec.openplanner.team/stops/X938aba"], ["https://tec.openplanner.team/stops/H4ru244b", "https://tec.openplanner.team/stops/H4wc374a"], ["https://tec.openplanner.team/stops/H1gg146a", "https://tec.openplanner.team/stops/H1pe130b"], ["https://tec.openplanner.team/stops/X754ahb", "https://tec.openplanner.team/stops/X754akb"], ["https://tec.openplanner.team/stops/LCleg--1", "https://tec.openplanner.team/stops/LHChoof4"], ["https://tec.openplanner.team/stops/X805ahb", "https://tec.openplanner.team/stops/X869aeb"], ["https://tec.openplanner.team/stops/LHUbatt1", "https://tec.openplanner.team/stops/LHUecte2"], ["https://tec.openplanner.team/stops/N351afb", "https://tec.openplanner.team/stops/N351aha"], ["https://tec.openplanner.team/stops/LBEssab2", "https://tec.openplanner.team/stops/LTRpeec2"], ["https://tec.openplanner.team/stops/Bgntffo2", "https://tec.openplanner.team/stops/Bgntpla2"], ["https://tec.openplanner.team/stops/H4lz124b", "https://tec.openplanner.team/stops/H4lz128b"], ["https://tec.openplanner.team/stops/LTRchpl1", "https://tec.openplanner.team/stops/LTRmosb2"], ["https://tec.openplanner.team/stops/N516ahb", "https://tec.openplanner.team/stops/N516anb"], ["https://tec.openplanner.team/stops/LHHgare2", "https://tec.openplanner.team/stops/LHHtill1"], ["https://tec.openplanner.team/stops/LeYraaf2", "https://tec.openplanner.team/stops/LeYwess2"], ["https://tec.openplanner.team/stops/H4mo155a", "https://tec.openplanner.team/stops/H4rx175a"], ["https://tec.openplanner.team/stops/N549aab", "https://tec.openplanner.team/stops/N578aca"], ["https://tec.openplanner.team/stops/N516amb", "https://tec.openplanner.team/stops/N581abb"], ["https://tec.openplanner.team/stops/LhSfrei1", "https://tec.openplanner.team/stops/LhSgete3"], ["https://tec.openplanner.team/stops/Cnapair2", "https://tec.openplanner.team/stops/Cnating2"], ["https://tec.openplanner.team/stops/Lhuchev2", "https://tec.openplanner.team/stops/Lhuferm1"], ["https://tec.openplanner.team/stops/LTOcime1", "https://tec.openplanner.team/stops/LTOcime2"], ["https://tec.openplanner.team/stops/N539azb", "https://tec.openplanner.team/stops/N539bab"], ["https://tec.openplanner.team/stops/LJU51--1", "https://tec.openplanner.team/stops/LJUfort2"], ["https://tec.openplanner.team/stops/H4lp125a", "https://tec.openplanner.team/stops/H4lp126a"], ["https://tec.openplanner.team/stops/Bitrhou1", "https://tec.openplanner.team/stops/Bitrpar1"], ["https://tec.openplanner.team/stops/LTPnoup2", "https://tec.openplanner.team/stops/LTPsatr2"], ["https://tec.openplanner.team/stops/H5rx106a", "https://tec.openplanner.team/stops/H5rx147a"], ["https://tec.openplanner.team/stops/Bgzddge4", "https://tec.openplanner.team/stops/Bgzddur2"], ["https://tec.openplanner.team/stops/X994aja", "https://tec.openplanner.team/stops/X995add"], ["https://tec.openplanner.team/stops/Bhengou1", "https://tec.openplanner.team/stops/Bhensei1"], ["https://tec.openplanner.team/stops/X834aab", "https://tec.openplanner.team/stops/X860aab"], ["https://tec.openplanner.team/stops/N203aba", "https://tec.openplanner.team/stops/N560aaa"], ["https://tec.openplanner.team/stops/N534aub", "https://tec.openplanner.team/stops/N534bwa"], ["https://tec.openplanner.team/stops/X728aaa", "https://tec.openplanner.team/stops/X748aca"], ["https://tec.openplanner.team/stops/Cgyobse2", "https://tec.openplanner.team/stops/Cgyplvi1"], ["https://tec.openplanner.team/stops/H1ho124b", "https://tec.openplanner.team/stops/H1ho130b"], ["https://tec.openplanner.team/stops/N134ajb", "https://tec.openplanner.team/stops/N135bib"], ["https://tec.openplanner.team/stops/Ccyga05", "https://tec.openplanner.team/stops/NH01acb"], ["https://tec.openplanner.team/stops/Lagjado1", "https://tec.openplanner.team/stops/Lagpaix2"], ["https://tec.openplanner.team/stops/X817aaa", "https://tec.openplanner.team/stops/X817aeb"], ["https://tec.openplanner.team/stops/H2ch100c", "https://tec.openplanner.team/stops/H2ch108b"], ["https://tec.openplanner.team/stops/X512ajb", "https://tec.openplanner.team/stops/X713ala"], ["https://tec.openplanner.team/stops/X371aeb", "https://tec.openplanner.team/stops/X371aga"], ["https://tec.openplanner.team/stops/LkEgds-1", "https://tec.openplanner.team/stops/LkEkirc2"], ["https://tec.openplanner.team/stops/X889aaa", "https://tec.openplanner.team/stops/X889abb"], ["https://tec.openplanner.team/stops/N270aed", "https://tec.openplanner.team/stops/N270afa"], ["https://tec.openplanner.team/stops/LTRcarr1", "https://tec.openplanner.team/stops/LTRryta2"], ["https://tec.openplanner.team/stops/Cchsud0", "https://tec.openplanner.team/stops/Cchvil1"], ["https://tec.openplanner.team/stops/LBk79--1", "https://tec.openplanner.team/stops/LMsheid1"], ["https://tec.openplanner.team/stops/LhSgete3", "https://tec.openplanner.team/stops/LhSkape2"], ["https://tec.openplanner.team/stops/N501hqa", "https://tec.openplanner.team/stops/N501iba"], ["https://tec.openplanner.team/stops/Bclgapi2", "https://tec.openplanner.team/stops/Bdvmalo2"], ["https://tec.openplanner.team/stops/Bmsgfon1", "https://tec.openplanner.team/stops/Bmsgstj1"], ["https://tec.openplanner.team/stops/X896aia", "https://tec.openplanner.team/stops/X898aga"], ["https://tec.openplanner.team/stops/X727aea", "https://tec.openplanner.team/stops/X727afa"], ["https://tec.openplanner.team/stops/H1by104b", "https://tec.openplanner.team/stops/H1sy148b"], ["https://tec.openplanner.team/stops/Cctchea1", "https://tec.openplanner.team/stops/Cctchea2"], ["https://tec.openplanner.team/stops/LHggeer2", "https://tec.openplanner.team/stops/LOMdodi2"], ["https://tec.openplanner.team/stops/Ctucour1", "https://tec.openplanner.team/stops/Ctuecol1"], ["https://tec.openplanner.team/stops/N533aca", "https://tec.openplanner.team/stops/N551afa"], ["https://tec.openplanner.team/stops/H4cp103a", "https://tec.openplanner.team/stops/H4tp145b"], ["https://tec.openplanner.team/stops/X609adb", "https://tec.openplanner.team/stops/X609aeb"], ["https://tec.openplanner.team/stops/Bgembhe1", "https://tec.openplanner.team/stops/N541aeb"], ["https://tec.openplanner.team/stops/Cfamonu2", "https://tec.openplanner.team/stops/Cfamonu8"], ["https://tec.openplanner.team/stops/Clomari1", "https://tec.openplanner.team/stops/CMmari1"], ["https://tec.openplanner.team/stops/N501gsa", "https://tec.openplanner.team/stops/N501hba"], ["https://tec.openplanner.team/stops/Bblabos1", "https://tec.openplanner.team/stops/Bblacar1"], ["https://tec.openplanner.team/stops/Ccyfroi1", "https://tec.openplanner.team/stops/NH01aka"], ["https://tec.openplanner.team/stops/H4fr141b", "https://tec.openplanner.team/stops/H4ma411b"], ["https://tec.openplanner.team/stops/H1je360a", "https://tec.openplanner.team/stops/H1je360b"], ["https://tec.openplanner.team/stops/Lhuferm1", "https://tec.openplanner.team/stops/Lhurfay1"], ["https://tec.openplanner.team/stops/Cvpsncb1", "https://tec.openplanner.team/stops/Cvpsncb2"], ["https://tec.openplanner.team/stops/N562ala", "https://tec.openplanner.team/stops/N562alb"], ["https://tec.openplanner.team/stops/LbEkirc*", "https://tec.openplanner.team/stops/LwR140-2"], ["https://tec.openplanner.team/stops/LOuouff1", "https://tec.openplanner.team/stops/LOuouff2"], ["https://tec.openplanner.team/stops/Bottcli2", "https://tec.openplanner.team/stops/Bottvil2"], ["https://tec.openplanner.team/stops/H4pl116b", "https://tec.openplanner.team/stops/H4pl122b"], ["https://tec.openplanner.team/stops/N136aeb", "https://tec.openplanner.team/stops/N143ada"], ["https://tec.openplanner.team/stops/N137ajb", "https://tec.openplanner.team/stops/N161aab"], ["https://tec.openplanner.team/stops/LOmmer-2", "https://tec.openplanner.team/stops/LOmrela1"], ["https://tec.openplanner.team/stops/X812aia", "https://tec.openplanner.team/stops/X812aya"], ["https://tec.openplanner.team/stops/X860aaa", "https://tec.openplanner.team/stops/X860aab"], ["https://tec.openplanner.team/stops/N574aab", "https://tec.openplanner.team/stops/N576aea"], ["https://tec.openplanner.team/stops/LSEcent1", "https://tec.openplanner.team/stops/LSEquar1"], ["https://tec.openplanner.team/stops/Crgegli1", "https://tec.openplanner.team/stops/Crglyre1"], ["https://tec.openplanner.team/stops/N236acb", "https://tec.openplanner.team/stops/N236adb"], ["https://tec.openplanner.team/stops/X801aga", "https://tec.openplanner.team/stops/X801agb"], ["https://tec.openplanner.team/stops/H2ha139b", "https://tec.openplanner.team/stops/H2sb233c"], ["https://tec.openplanner.team/stops/Bspkbeu2", "https://tec.openplanner.team/stops/Bstetre2"], ["https://tec.openplanner.team/stops/X840abb", "https://tec.openplanner.team/stops/X840acb"], ["https://tec.openplanner.team/stops/LSAchef1", "https://tec.openplanner.team/stops/LSAvieu2"], ["https://tec.openplanner.team/stops/H4tg162b", "https://tec.openplanner.team/stops/H4tg170b"], ["https://tec.openplanner.team/stops/N203aaa", "https://tec.openplanner.team/stops/N203abb"], ["https://tec.openplanner.team/stops/Lghjans1", "https://tec.openplanner.team/stops/Lghmeun3"], ["https://tec.openplanner.team/stops/LhGrote1", "https://tec.openplanner.team/stops/LkEzoll2"], ["https://tec.openplanner.team/stops/LNCfawe1", "https://tec.openplanner.team/stops/LRRchea6"], ["https://tec.openplanner.team/stops/X390ajb", "https://tec.openplanner.team/stops/X390aka"], ["https://tec.openplanner.team/stops/LHMcruc1", "https://tec.openplanner.team/stops/LHMcruc2"], ["https://tec.openplanner.team/stops/N548afb", "https://tec.openplanner.team/stops/N569ajb"], ["https://tec.openplanner.team/stops/H1me112b", "https://tec.openplanner.team/stops/H1me117f"], ["https://tec.openplanner.team/stops/X723aba", "https://tec.openplanner.team/stops/X723alb"], ["https://tec.openplanner.team/stops/Bcseaba1", "https://tec.openplanner.team/stops/Bcseaba2"], ["https://tec.openplanner.team/stops/LGecime1", "https://tec.openplanner.team/stops/LGemari2"], ["https://tec.openplanner.team/stops/H1bu139a", "https://tec.openplanner.team/stops/H1bu139b"], ["https://tec.openplanner.team/stops/H1en101a", "https://tec.openplanner.team/stops/H1mk107a"], ["https://tec.openplanner.team/stops/Bsmgbsa1", "https://tec.openplanner.team/stops/Bsmgbsa2"], ["https://tec.openplanner.team/stops/N350ada", "https://tec.openplanner.team/stops/N350aeb"], ["https://tec.openplanner.team/stops/X869aeb", "https://tec.openplanner.team/stops/X873aaa"], ["https://tec.openplanner.team/stops/H1mm125a", "https://tec.openplanner.team/stops/H1mm132a"], ["https://tec.openplanner.team/stops/N506ava", "https://tec.openplanner.team/stops/N506awa"], ["https://tec.openplanner.team/stops/LBEpier2", "https://tec.openplanner.team/stops/LNipre-2"], ["https://tec.openplanner.team/stops/N390afa", "https://tec.openplanner.team/stops/N390afb"], ["https://tec.openplanner.team/stops/Cjubien2", "https://tec.openplanner.team/stops/Cjuquai1"], ["https://tec.openplanner.team/stops/Bernegl4", "https://tec.openplanner.team/stops/Bernrar2"], ["https://tec.openplanner.team/stops/N501hrb", "https://tec.openplanner.team/stops/N501hua"], ["https://tec.openplanner.team/stops/Bmasegl2", "https://tec.openplanner.team/stops/NB33aeb"], ["https://tec.openplanner.team/stops/Cpthaud2", "https://tec.openplanner.team/stops/Cptrebe1"], ["https://tec.openplanner.team/stops/Bhlvgar2", "https://tec.openplanner.team/stops/Blpgcmo2"], ["https://tec.openplanner.team/stops/X877abb", "https://tec.openplanner.team/stops/X877aca"], ["https://tec.openplanner.team/stops/N135bea", "https://tec.openplanner.team/stops/N135bha"], ["https://tec.openplanner.team/stops/Cmlbras2", "https://tec.openplanner.team/stops/Cmlhotv2"], ["https://tec.openplanner.team/stops/Lflcle-4", "https://tec.openplanner.team/stops/Lflcle-6"], ["https://tec.openplanner.team/stops/LTPec--2", "https://tec.openplanner.team/stops/LTPplco2"], ["https://tec.openplanner.team/stops/X747alb", "https://tec.openplanner.team/stops/X754afa"], ["https://tec.openplanner.team/stops/N533ahb", "https://tec.openplanner.team/stops/N551aba"], ["https://tec.openplanner.team/stops/Bmrlcch2", "https://tec.openplanner.team/stops/Bmrlsau2"], ["https://tec.openplanner.team/stops/X982azb", "https://tec.openplanner.team/stops/X982cda"], ["https://tec.openplanner.team/stops/Bmelmqu1", "https://tec.openplanner.team/stops/Bsmgbsa1"], ["https://tec.openplanner.team/stops/LmTzoll2", "https://tec.openplanner.team/stops/LtEnach2"], ["https://tec.openplanner.team/stops/H1sy144b", "https://tec.openplanner.team/stops/H1sy144c"], ["https://tec.openplanner.team/stops/LAYcher2", "https://tec.openplanner.team/stops/LAYcorn2"], ["https://tec.openplanner.team/stops/Bbxlmid1", "https://tec.openplanner.team/stops/Bsgipha3"], ["https://tec.openplanner.team/stops/LGLeg--2", "https://tec.openplanner.team/stops/LGLlaur2"], ["https://tec.openplanner.team/stops/H5bl120b", "https://tec.openplanner.team/stops/H5gr135a"], ["https://tec.openplanner.team/stops/CMdesc1", "https://tec.openplanner.team/stops/CMdesc2"], ["https://tec.openplanner.team/stops/LLnlimb2", "https://tec.openplanner.team/stops/LORroma1"], ["https://tec.openplanner.team/stops/H1so143a", "https://tec.openplanner.team/stops/H1so143b"], ["https://tec.openplanner.team/stops/Bbxlple2", "https://tec.openplanner.team/stops/Bettgle2"], ["https://tec.openplanner.team/stops/LAMweha1", "https://tec.openplanner.team/stops/LAMweha2"], ["https://tec.openplanner.team/stops/LLncime2", "https://tec.openplanner.team/stops/LPUmer-1"], ["https://tec.openplanner.team/stops/Ladandr1", "https://tec.openplanner.team/stops/Ladotto2"], ["https://tec.openplanner.team/stops/X879aja", "https://tec.openplanner.team/stops/X879aob"], ["https://tec.openplanner.team/stops/X601abb", "https://tec.openplanner.team/stops/X601ada"], ["https://tec.openplanner.team/stops/H4hx109b", "https://tec.openplanner.team/stops/H4hx124a"], ["https://tec.openplanner.team/stops/H4rm108b", "https://tec.openplanner.team/stops/H4ta115a"], ["https://tec.openplanner.team/stops/LlNbene1", "https://tec.openplanner.team/stops/LlNbene2"], ["https://tec.openplanner.team/stops/Cgrchea1", "https://tec.openplanner.team/stops/Cgrlorm1"], ["https://tec.openplanner.team/stops/LCFcafe1", "https://tec.openplanner.team/stops/LCFeg--2"], ["https://tec.openplanner.team/stops/LHUcomp2", "https://tec.openplanner.team/stops/LHUpala1"], ["https://tec.openplanner.team/stops/X917aab", "https://tec.openplanner.team/stops/X917aba"], ["https://tec.openplanner.team/stops/H2sv211a", "https://tec.openplanner.team/stops/H2sv220a"], ["https://tec.openplanner.team/stops/X750ara", "https://tec.openplanner.team/stops/X750bha"], ["https://tec.openplanner.team/stops/H4pi131a", "https://tec.openplanner.team/stops/H4pi131b"], ["https://tec.openplanner.team/stops/Cplstfa1", "https://tec.openplanner.team/stops/Cplstfa2"], ["https://tec.openplanner.team/stops/X660afb", "https://tec.openplanner.team/stops/X840aeb"], ["https://tec.openplanner.team/stops/Bmlncha1", "https://tec.openplanner.team/stops/Bmlnegl1"], ["https://tec.openplanner.team/stops/X946acb", "https://tec.openplanner.team/stops/X946adb"], ["https://tec.openplanner.team/stops/LBEabba1", "https://tec.openplanner.team/stops/LBEcomm1"], ["https://tec.openplanner.team/stops/X758aab", "https://tec.openplanner.team/stops/X840acb"], ["https://tec.openplanner.team/stops/Bmartil1", "https://tec.openplanner.team/stops/Csawagn2"], ["https://tec.openplanner.team/stops/Blpgeco1", "https://tec.openplanner.team/stops/Blpglon2"], ["https://tec.openplanner.team/stops/Llochar4", "https://tec.openplanner.team/stops/Lloross2"], ["https://tec.openplanner.team/stops/Cmacart2", "https://tec.openplanner.team/stops/Cmamarc1"], ["https://tec.openplanner.team/stops/X943aca", "https://tec.openplanner.team/stops/X943afb"], ["https://tec.openplanner.team/stops/X616aab", "https://tec.openplanner.team/stops/X616aea"], ["https://tec.openplanner.team/stops/N120aaa", "https://tec.openplanner.team/stops/N120ama"], ["https://tec.openplanner.team/stops/NR38aca", "https://tec.openplanner.team/stops/NR38ada"], ["https://tec.openplanner.team/stops/X369aaa", "https://tec.openplanner.team/stops/X858abb"], ["https://tec.openplanner.team/stops/Ccychco1", "https://tec.openplanner.team/stops/NH01aha"], ["https://tec.openplanner.team/stops/Clb4dgi1", "https://tec.openplanner.team/stops/Clbbonn3"], ["https://tec.openplanner.team/stops/Cgoetun2", "https://tec.openplanner.team/stops/Cgopier3"], ["https://tec.openplanner.team/stops/H4rm108a", "https://tec.openplanner.team/stops/H4ta118a"], ["https://tec.openplanner.team/stops/H2ca102a", "https://tec.openplanner.team/stops/H2ml114a"], ["https://tec.openplanner.team/stops/X818aja", "https://tec.openplanner.team/stops/X818ajb"], ["https://tec.openplanner.team/stops/H1ht136a", "https://tec.openplanner.team/stops/H1ht136b"], ["https://tec.openplanner.team/stops/X633aib", "https://tec.openplanner.team/stops/X633ama"], ["https://tec.openplanner.team/stops/Cgynoir2", "https://tec.openplanner.team/stops/Cgytrie1"], ["https://tec.openplanner.team/stops/X730aab", "https://tec.openplanner.team/stops/X730aba"], ["https://tec.openplanner.team/stops/H2tr247a", "https://tec.openplanner.team/stops/H2tr253b"], ["https://tec.openplanner.team/stops/H5me105a", "https://tec.openplanner.team/stops/H5me106a"], ["https://tec.openplanner.team/stops/X898aha", "https://tec.openplanner.team/stops/X898aia"], ["https://tec.openplanner.team/stops/Cradest2", "https://tec.openplanner.team/stops/Crasabl2"], ["https://tec.openplanner.team/stops/X687aja", "https://tec.openplanner.team/stops/X687akb"], ["https://tec.openplanner.team/stops/Cbmplac1", "https://tec.openplanner.team/stops/Cbmpopr2"], ["https://tec.openplanner.team/stops/H1cd111a", "https://tec.openplanner.team/stops/H1cd111d"], ["https://tec.openplanner.team/stops/Ccacoup1", "https://tec.openplanner.team/stops/Cmregli4"], ["https://tec.openplanner.team/stops/Bolgegl2", "https://tec.openplanner.team/stops/Bolgsha2"], ["https://tec.openplanner.team/stops/LLescie2", "https://tec.openplanner.team/stops/LVRchpl1"], ["https://tec.openplanner.team/stops/Bitrhou2", "https://tec.openplanner.team/stops/Bitrpar1"], ["https://tec.openplanner.team/stops/X925akb", "https://tec.openplanner.team/stops/X925apa"], ["https://tec.openplanner.team/stops/H4bo113a", "https://tec.openplanner.team/stops/H4bo118d"], ["https://tec.openplanner.team/stops/N568aab", "https://tec.openplanner.team/stops/N568aea"], ["https://tec.openplanner.team/stops/Llgjenn2", "https://tec.openplanner.team/stops/Llgsnap3"], ["https://tec.openplanner.team/stops/Lvegend2", "https://tec.openplanner.team/stops/Lvevieu2"], ["https://tec.openplanner.team/stops/N343ada", "https://tec.openplanner.team/stops/X344acb"], ["https://tec.openplanner.team/stops/Clodesc2", "https://tec.openplanner.team/stops/Clomari2"], ["https://tec.openplanner.team/stops/LOCerzy1", "https://tec.openplanner.team/stops/LOCponc*"], ["https://tec.openplanner.team/stops/Lagviad1", "https://tec.openplanner.team/stops/Lceourt1"], ["https://tec.openplanner.team/stops/H4fa126a", "https://tec.openplanner.team/stops/H4fa128a"], ["https://tec.openplanner.team/stops/H1ne141a", "https://tec.openplanner.team/stops/H1ne141b"], ["https://tec.openplanner.team/stops/X616aha", "https://tec.openplanner.team/stops/X625ada"], ["https://tec.openplanner.team/stops/N539asa", "https://tec.openplanner.team/stops/N539beb"], ["https://tec.openplanner.team/stops/LVAakke2", "https://tec.openplanner.team/stops/LVAgemm2"], ["https://tec.openplanner.team/stops/X664aka", "https://tec.openplanner.team/stops/X664akb"], ["https://tec.openplanner.team/stops/H1te191a", "https://tec.openplanner.team/stops/H1te191b"], ["https://tec.openplanner.team/stops/N501dha", "https://tec.openplanner.team/stops/N501jtb"], ["https://tec.openplanner.team/stops/Lchsaec1", "https://tec.openplanner.team/stops/LHOmc--2"], ["https://tec.openplanner.team/stops/Bhanwav2", "https://tec.openplanner.team/stops/NL37alb"], ["https://tec.openplanner.team/stops/N562aya", "https://tec.openplanner.team/stops/N562azb"], ["https://tec.openplanner.team/stops/X637aab", "https://tec.openplanner.team/stops/X637ara"], ["https://tec.openplanner.team/stops/N218aaa", "https://tec.openplanner.team/stops/N218aab"], ["https://tec.openplanner.team/stops/N141aaa", "https://tec.openplanner.team/stops/N141aqa"], ["https://tec.openplanner.team/stops/Llgbida1", "https://tec.openplanner.team/stops/Llgerac2"], ["https://tec.openplanner.team/stops/Bbauegl1", "https://tec.openplanner.team/stops/Bbaulos1"], ["https://tec.openplanner.team/stops/H1gi120a", "https://tec.openplanner.team/stops/H1gi120c"], ["https://tec.openplanner.team/stops/Lglcoun1", "https://tec.openplanner.team/stops/Lglvict2"], ["https://tec.openplanner.team/stops/LHUathe1", "https://tec.openplanner.team/stops/LHUeuro1"], ["https://tec.openplanner.team/stops/LaRkape1", "https://tec.openplanner.team/stops/LaRkape2"], ["https://tec.openplanner.team/stops/X316aab", "https://tec.openplanner.team/stops/X317aaa"], ["https://tec.openplanner.team/stops/N214aca", "https://tec.openplanner.team/stops/N214aea"], ["https://tec.openplanner.team/stops/LBPauto1", "https://tec.openplanner.team/stops/LBPmais2"], ["https://tec.openplanner.team/stops/N539axa", "https://tec.openplanner.team/stops/N539aza"], ["https://tec.openplanner.team/stops/Ljubrec1", "https://tec.openplanner.team/stops/Ljubrec2"], ["https://tec.openplanner.team/stops/N501lwa", "https://tec.openplanner.team/stops/N501lwb"], ["https://tec.openplanner.team/stops/N528amb", "https://tec.openplanner.team/stops/N528aqa"], ["https://tec.openplanner.team/stops/N543cia", "https://tec.openplanner.team/stops/N543cib"], ["https://tec.openplanner.team/stops/Bblarbe1", "https://tec.openplanner.team/stops/Bblarbe2"], ["https://tec.openplanner.team/stops/X979aka", "https://tec.openplanner.team/stops/X982bsa"], ["https://tec.openplanner.team/stops/N501gra", "https://tec.openplanner.team/stops/N501grf"], ["https://tec.openplanner.team/stops/Blhupqu1", "https://tec.openplanner.team/stops/Blhutma1"], ["https://tec.openplanner.team/stops/Bperrsr2", "https://tec.openplanner.team/stops/Bperwil1"], ["https://tec.openplanner.team/stops/H2sb236c", "https://tec.openplanner.team/stops/H2sb236d"], ["https://tec.openplanner.team/stops/N547aib", "https://tec.openplanner.team/stops/N548awa"], ["https://tec.openplanner.team/stops/Cgyplvi1", "https://tec.openplanner.team/stops/Cgyplvi2"], ["https://tec.openplanner.team/stops/Btubbsc1", "https://tec.openplanner.team/stops/Btubmon1"], ["https://tec.openplanner.team/stops/Ladclem1", "https://tec.openplanner.team/stops/Ladpire2"], ["https://tec.openplanner.team/stops/Lmocalv2", "https://tec.openplanner.team/stops/Lmochan2"], ["https://tec.openplanner.team/stops/Lpechin2", "https://tec.openplanner.team/stops/Lpegiet2"], ["https://tec.openplanner.team/stops/Cml3fon1", "https://tec.openplanner.team/stops/Cmlfeba1"], ["https://tec.openplanner.team/stops/Croegli1", "https://tec.openplanner.team/stops/Croplom4"], ["https://tec.openplanner.team/stops/Cvthoeu2", "https://tec.openplanner.team/stops/Cvtndam2"], ["https://tec.openplanner.team/stops/Bjaugaz2", "https://tec.openplanner.team/stops/Bjauvch2"], ["https://tec.openplanner.team/stops/N502abb", "https://tec.openplanner.team/stops/N509ana"], ["https://tec.openplanner.team/stops/Brixblh3", "https://tec.openplanner.team/stops/Brixpla1"], ["https://tec.openplanner.team/stops/N106aha", "https://tec.openplanner.team/stops/N106aib"], ["https://tec.openplanner.team/stops/X922aib", "https://tec.openplanner.team/stops/X922alb"], ["https://tec.openplanner.team/stops/LFFcouv1", "https://tec.openplanner.team/stops/LFFmonu1"], ["https://tec.openplanner.team/stops/X639acd", "https://tec.openplanner.team/stops/X639adb"], ["https://tec.openplanner.team/stops/Cgocalv4", "https://tec.openplanner.team/stops/Cgomoul1"], ["https://tec.openplanner.team/stops/LEMgren*", "https://tec.openplanner.team/stops/LMaburg4"], ["https://tec.openplanner.team/stops/Caibino2", "https://tec.openplanner.team/stops/Caioign4"], ["https://tec.openplanner.team/stops/LSSfrai1", "https://tec.openplanner.team/stops/LSSjeun2"], ["https://tec.openplanner.team/stops/Cci4bra1", "https://tec.openplanner.team/stops/NC02apb"], ["https://tec.openplanner.team/stops/N261adb", "https://tec.openplanner.team/stops/N261aea"], ["https://tec.openplanner.team/stops/X991afb", "https://tec.openplanner.team/stops/X991agb"], ["https://tec.openplanner.team/stops/Berngrt2", "https://tec.openplanner.team/stops/Bgemkal1"], ["https://tec.openplanner.team/stops/LSOchau1", "https://tec.openplanner.team/stops/LSOcime1"], ["https://tec.openplanner.team/stops/Bohnhan2", "https://tec.openplanner.team/stops/Bohnrph1"], ["https://tec.openplanner.team/stops/LHNhall2", "https://tec.openplanner.team/stops/LHNwaut2"], ["https://tec.openplanner.team/stops/Bcbqcha1", "https://tec.openplanner.team/stops/Bhalker1"], ["https://tec.openplanner.team/stops/X650akb", "https://tec.openplanner.team/stops/X650ama"], ["https://tec.openplanner.team/stops/H1gc123a", "https://tec.openplanner.team/stops/H1gc123b"], ["https://tec.openplanner.team/stops/N132acb", "https://tec.openplanner.team/stops/N134ajb"], ["https://tec.openplanner.team/stops/Cfnegli1", "https://tec.openplanner.team/stops/N162ada"], ["https://tec.openplanner.team/stops/Lhurfay1", "https://tec.openplanner.team/stops/LTHroch1"], ["https://tec.openplanner.team/stops/Cmcegli2", "https://tec.openplanner.team/stops/Cmcwir2"], ["https://tec.openplanner.team/stops/N513acb", "https://tec.openplanner.team/stops/N513bha"], ["https://tec.openplanner.team/stops/Bcercsa1", "https://tec.openplanner.team/stops/Bcerldo2"], ["https://tec.openplanner.team/stops/X662afb", "https://tec.openplanner.team/stops/X662ara"], ["https://tec.openplanner.team/stops/LBGvill2", "https://tec.openplanner.team/stops/LLnlimb2"], ["https://tec.openplanner.team/stops/Lvc4bra1", "https://tec.openplanner.team/stops/Lvcbalt2"], ["https://tec.openplanner.team/stops/Lcacaps2", "https://tec.openplanner.team/stops/Lcapisc1"], ["https://tec.openplanner.team/stops/H4ry132a", "https://tec.openplanner.team/stops/H4ry140a"], ["https://tec.openplanner.team/stops/LHUcomp1", "https://tec.openplanner.team/stops/LHUfali3"], ["https://tec.openplanner.team/stops/Cfrcoop3", "https://tec.openplanner.team/stops/Cfrplac4"], ["https://tec.openplanner.team/stops/H4ob109b", "https://tec.openplanner.team/stops/H4ob110b"], ["https://tec.openplanner.team/stops/Lalexpa1", "https://tec.openplanner.team/stops/Lalexpa2"], ["https://tec.openplanner.team/stops/Cwfcule2", "https://tec.openplanner.team/stops/Cwfzola1"], ["https://tec.openplanner.team/stops/Lprchat1", "https://tec.openplanner.team/stops/Lprorph1"], ["https://tec.openplanner.team/stops/LPLcond1", "https://tec.openplanner.team/stops/LRRchen2"], ["https://tec.openplanner.team/stops/Cmmceri2", "https://tec.openplanner.team/stops/Cmmcver1"], ["https://tec.openplanner.team/stops/LPRmc--3", "https://tec.openplanner.team/stops/LTRcite1"], ["https://tec.openplanner.team/stops/Cjualed1", "https://tec.openplanner.team/stops/Cjumest1"], ["https://tec.openplanner.team/stops/Cbiseur2", "https://tec.openplanner.team/stops/Ctuhouz2"], ["https://tec.openplanner.team/stops/X796acc", "https://tec.openplanner.team/stops/X796aga"], ["https://tec.openplanner.team/stops/N509ana", "https://tec.openplanner.team/stops/N510aaa"], ["https://tec.openplanner.team/stops/X601baa", "https://tec.openplanner.team/stops/X601bda"], ["https://tec.openplanner.team/stops/H1wg124b", "https://tec.openplanner.team/stops/H1wg131b"], ["https://tec.openplanner.team/stops/Ldimont1", "https://tec.openplanner.team/stops/Ldineuf2"], ["https://tec.openplanner.team/stops/X791aba", "https://tec.openplanner.team/stops/X791acb"], ["https://tec.openplanner.team/stops/N522ala", "https://tec.openplanner.team/stops/N522apb"], ["https://tec.openplanner.team/stops/X878ada", "https://tec.openplanner.team/stops/X879aqa"], ["https://tec.openplanner.team/stops/Llabrou2", "https://tec.openplanner.team/stops/Llaflot2"], ["https://tec.openplanner.team/stops/NL74acb", "https://tec.openplanner.team/stops/NL74aib"], ["https://tec.openplanner.team/stops/X641aob", "https://tec.openplanner.team/stops/X823agb"], ["https://tec.openplanner.team/stops/X804alb", "https://tec.openplanner.team/stops/X804bma"], ["https://tec.openplanner.team/stops/Lhr3jui2", "https://tec.openplanner.team/stops/Lhrbrou2"], ["https://tec.openplanner.team/stops/X614ahb", "https://tec.openplanner.team/stops/X614baa"], ["https://tec.openplanner.team/stops/N534bnh", "https://tec.openplanner.team/stops/N534boh"], ["https://tec.openplanner.team/stops/Baudstr1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/H2ca106a", "https://tec.openplanner.team/stops/H2ca106b"], ["https://tec.openplanner.team/stops/LNCchev1", "https://tec.openplanner.team/stops/LNCchev4"], ["https://tec.openplanner.team/stops/Bchgcha2", "https://tec.openplanner.team/stops/Btslpic6"], ["https://tec.openplanner.team/stops/N561aia", "https://tec.openplanner.team/stops/N584aqa"], ["https://tec.openplanner.team/stops/Ladloup2", "https://tec.openplanner.team/stops/Lvevert4"], ["https://tec.openplanner.team/stops/X658aab", "https://tec.openplanner.team/stops/X658aba"], ["https://tec.openplanner.team/stops/H1ch101b", "https://tec.openplanner.team/stops/H5me105a"], ["https://tec.openplanner.team/stops/H4tp145b", "https://tec.openplanner.team/stops/H4wr174b"], ["https://tec.openplanner.team/stops/H5wo127a", "https://tec.openplanner.team/stops/H5wo127b"], ["https://tec.openplanner.team/stops/X639aaa", "https://tec.openplanner.team/stops/X639aab"], ["https://tec.openplanner.team/stops/Bwspbos1", "https://tec.openplanner.team/stops/Bwspbos2"], ["https://tec.openplanner.team/stops/LLz21--1", "https://tec.openplanner.team/stops/LLz21--2"], ["https://tec.openplanner.team/stops/X624ahb", "https://tec.openplanner.team/stops/X624alb"], ["https://tec.openplanner.team/stops/X801cib", "https://tec.openplanner.team/stops/X836aaa"], ["https://tec.openplanner.team/stops/N118aaa", "https://tec.openplanner.team/stops/N155acb"], ["https://tec.openplanner.team/stops/Lsmgdry2", "https://tec.openplanner.team/stops/Lsmstad2"], ["https://tec.openplanner.team/stops/LOMbrou2", "https://tec.openplanner.team/stops/LOMeg--1"], ["https://tec.openplanner.team/stops/N260aab", "https://tec.openplanner.team/stops/N260afb"], ["https://tec.openplanner.team/stops/Cmlpbay2", "https://tec.openplanner.team/stops/Cmlrang1"], ["https://tec.openplanner.team/stops/H4do102b", "https://tec.openplanner.team/stops/H4sl155b"], ["https://tec.openplanner.team/stops/H4ty317a", "https://tec.openplanner.team/stops/H4ty317b"], ["https://tec.openplanner.team/stops/Lgrclin3", "https://tec.openplanner.team/stops/Lgrwill2"], ["https://tec.openplanner.team/stops/Loucham1", "https://tec.openplanner.team/stops/Lougare1"], ["https://tec.openplanner.team/stops/N230afa", "https://tec.openplanner.team/stops/N230afb"], ["https://tec.openplanner.team/stops/Loubiez2", "https://tec.openplanner.team/stops/Louvira1"], ["https://tec.openplanner.team/stops/Lbocorn2", "https://tec.openplanner.team/stops/Lbosart2"], ["https://tec.openplanner.team/stops/H4vx362a", "https://tec.openplanner.team/stops/H4vx362b"], ["https://tec.openplanner.team/stops/LoDcorn1", "https://tec.openplanner.team/stops/LoDulf-2"], ["https://tec.openplanner.team/stops/X612aaa", "https://tec.openplanner.team/stops/X612aeb"], ["https://tec.openplanner.team/stops/H4lu126a", "https://tec.openplanner.team/stops/H4mo193a"], ["https://tec.openplanner.team/stops/N579aab", "https://tec.openplanner.team/stops/N579aeb"], ["https://tec.openplanner.team/stops/LNAanne2", "https://tec.openplanner.team/stops/LSSfont1"], ["https://tec.openplanner.team/stops/H1hq124a", "https://tec.openplanner.team/stops/H1hq124b"], ["https://tec.openplanner.team/stops/N424aba", "https://tec.openplanner.team/stops/N424aca"], ["https://tec.openplanner.team/stops/Csygare3", "https://tec.openplanner.team/stops/Csygare4"], ["https://tec.openplanner.team/stops/Csschat1", "https://tec.openplanner.team/stops/Csspn2"], ["https://tec.openplanner.team/stops/H1cu126a", "https://tec.openplanner.team/stops/H1cu132b"], ["https://tec.openplanner.team/stops/N235aaa", "https://tec.openplanner.team/stops/N236anb"], ["https://tec.openplanner.team/stops/LNEcouc1", "https://tec.openplanner.team/stops/LNEgaul3"], ["https://tec.openplanner.team/stops/X818acb", "https://tec.openplanner.team/stops/X818ala"], ["https://tec.openplanner.team/stops/H2hg266b", "https://tec.openplanner.team/stops/H2hg270b"], ["https://tec.openplanner.team/stops/N564aea", "https://tec.openplanner.team/stops/N564afb"], ["https://tec.openplanner.team/stops/Bwatle31", "https://tec.openplanner.team/stops/Bwatras1"], ["https://tec.openplanner.team/stops/Lghgros1", "https://tec.openplanner.team/stops/Lghgros2"], ["https://tec.openplanner.team/stops/Boveklo1", "https://tec.openplanner.team/stops/Boveklo2"], ["https://tec.openplanner.team/stops/H2mi122b", "https://tec.openplanner.team/stops/H2mi123b"], ["https://tec.openplanner.team/stops/Ccigill1", "https://tec.openplanner.team/stops/Cmlavch1"], ["https://tec.openplanner.team/stops/Bsdabja1", "https://tec.openplanner.team/stops/Bvlvpco2"], ["https://tec.openplanner.team/stops/Bblagar2", "https://tec.openplanner.team/stops/Bblagar3"], ["https://tec.openplanner.team/stops/Cgocalv6", "https://tec.openplanner.team/stops/CMcalv2"], ["https://tec.openplanner.team/stops/LHUremy1", "https://tec.openplanner.team/stops/NL80aha"], ["https://tec.openplanner.team/stops/Cchmont2", "https://tec.openplanner.team/stops/Cchrmon4"], ["https://tec.openplanner.team/stops/NL75acb", "https://tec.openplanner.team/stops/NL75adb"], ["https://tec.openplanner.team/stops/N127aja", "https://tec.openplanner.team/stops/N134ahb"], ["https://tec.openplanner.team/stops/LMTdeho1", "https://tec.openplanner.team/stops/LMTvill2"], ["https://tec.openplanner.team/stops/Bgnvdep2", "https://tec.openplanner.team/stops/Bgnvtil2"], ["https://tec.openplanner.team/stops/X937ahb", "https://tec.openplanner.team/stops/X937aib"], ["https://tec.openplanner.team/stops/X342aca", "https://tec.openplanner.team/stops/X342acb"], ["https://tec.openplanner.team/stops/Blmlcim1", "https://tec.openplanner.team/stops/Blmlcim2"], ["https://tec.openplanner.team/stops/Lmabott1", "https://tec.openplanner.team/stops/Lmaetan*"], ["https://tec.openplanner.team/stops/N226aaa", "https://tec.openplanner.team/stops/N226ada"], ["https://tec.openplanner.team/stops/N531apa", "https://tec.openplanner.team/stops/N584apa"], ["https://tec.openplanner.team/stops/X307abb", "https://tec.openplanner.team/stops/X307adb"], ["https://tec.openplanner.team/stops/H4bh102c", "https://tec.openplanner.team/stops/H4bh102d"], ["https://tec.openplanner.team/stops/N134aha", "https://tec.openplanner.team/stops/N154aba"], ["https://tec.openplanner.team/stops/H4ef163b", "https://tec.openplanner.team/stops/H4fa125b"], ["https://tec.openplanner.team/stops/X950aba", "https://tec.openplanner.team/stops/X950ada"], ["https://tec.openplanner.team/stops/Lvichpl2", "https://tec.openplanner.team/stops/Lvieg--1"], ["https://tec.openplanner.team/stops/N525aia", "https://tec.openplanner.team/stops/N525aza"], ["https://tec.openplanner.team/stops/H4ta129b", "https://tec.openplanner.team/stops/H4ta130a"], ["https://tec.openplanner.team/stops/X609aka", "https://tec.openplanner.team/stops/X609akb"], ["https://tec.openplanner.team/stops/Llggrav1", "https://tec.openplanner.team/stops/Llgstap1"], ["https://tec.openplanner.team/stops/LVBmonu3", "https://tec.openplanner.team/stops/LVBvill1"], ["https://tec.openplanner.team/stops/Llgcouv1", "https://tec.openplanner.team/stops/Llgcouv4"], ["https://tec.openplanner.team/stops/Ccoptca1", "https://tec.openplanner.team/stops/Cgofert1"], ["https://tec.openplanner.team/stops/H5el101a", "https://tec.openplanner.team/stops/H5rx131b"], ["https://tec.openplanner.team/stops/X363aca", "https://tec.openplanner.team/stops/X363ada"], ["https://tec.openplanner.team/stops/X939afa", "https://tec.openplanner.team/stops/X939aga"], ["https://tec.openplanner.team/stops/LHueg--2", "https://tec.openplanner.team/stops/LHupont1"], ["https://tec.openplanner.team/stops/LjedTEC2", "https://tec.openplanner.team/stops/Ljekess2"], ["https://tec.openplanner.team/stops/LSLdall2", "https://tec.openplanner.team/stops/LSLhall*"], ["https://tec.openplanner.team/stops/LDOgare1", "https://tec.openplanner.team/stops/LDOjose1"], ["https://tec.openplanner.team/stops/Bbst4br3", "https://tec.openplanner.team/stops/Bbst4br4"], ["https://tec.openplanner.team/stops/Binclon1", "https://tec.openplanner.team/stops/Brxmbos2"], ["https://tec.openplanner.team/stops/H2le147c", "https://tec.openplanner.team/stops/H2le151a"], ["https://tec.openplanner.team/stops/LVBvill2", "https://tec.openplanner.team/stops/LWDchpl2"], ["https://tec.openplanner.team/stops/N501aaa", "https://tec.openplanner.team/stops/N501aay"], ["https://tec.openplanner.team/stops/H4bd109a", "https://tec.openplanner.team/stops/H4bd111a"], ["https://tec.openplanner.team/stops/LWEbr051", "https://tec.openplanner.team/stops/LWEwall1"], ["https://tec.openplanner.team/stops/H5ar104a", "https://tec.openplanner.team/stops/H5me105a"], ["https://tec.openplanner.team/stops/N522abd", "https://tec.openplanner.team/stops/N522aga"], ["https://tec.openplanner.team/stops/X664aaa", "https://tec.openplanner.team/stops/X667acb"], ["https://tec.openplanner.team/stops/Cmyjaci2", "https://tec.openplanner.team/stops/Cmyronc2"], ["https://tec.openplanner.team/stops/H4bh102a", "https://tec.openplanner.team/stops/H4bh102c"], ["https://tec.openplanner.team/stops/Cgofabr2", "https://tec.openplanner.team/stops/CMbruy2"], ["https://tec.openplanner.team/stops/Lrcauto2", "https://tec.openplanner.team/stops/Lrctec-2"], ["https://tec.openplanner.team/stops/LmI129-2", "https://tec.openplanner.team/stops/LmI36--2"], ["https://tec.openplanner.team/stops/LATcorn2", "https://tec.openplanner.team/stops/LATpatu1"], ["https://tec.openplanner.team/stops/H1ms259a", "https://tec.openplanner.team/stops/H1ms936a"], ["https://tec.openplanner.team/stops/Bbxlmid4", "https://tec.openplanner.team/stops/Bbxltrv1"], ["https://tec.openplanner.team/stops/Cmlceri1", "https://tec.openplanner.team/stops/Cmmbmad2"], ["https://tec.openplanner.team/stops/X742ada", "https://tec.openplanner.team/stops/X742adb"], ["https://tec.openplanner.team/stops/N538acb", "https://tec.openplanner.team/stops/N538agb"], ["https://tec.openplanner.team/stops/X657aeb", "https://tec.openplanner.team/stops/X658aea"], ["https://tec.openplanner.team/stops/N167aaa", "https://tec.openplanner.team/stops/N167aba"], ["https://tec.openplanner.team/stops/LHVetoi2", "https://tec.openplanner.team/stops/LJAbois2"], ["https://tec.openplanner.team/stops/X369abb", "https://tec.openplanner.team/stops/X369aca"], ["https://tec.openplanner.team/stops/Bmoncab1", "https://tec.openplanner.team/stops/Bmoncab2"], ["https://tec.openplanner.team/stops/X750aza", "https://tec.openplanner.team/stops/X750azb"], ["https://tec.openplanner.team/stops/X609afa", "https://tec.openplanner.team/stops/X609ama"], ["https://tec.openplanner.team/stops/Cfmcent1", "https://tec.openplanner.team/stops/Cfmcent2"], ["https://tec.openplanner.team/stops/LaAnorm2", "https://tec.openplanner.team/stops/LlCgren1"], ["https://tec.openplanner.team/stops/Bhalber2", "https://tec.openplanner.team/stops/Bhalh311"], ["https://tec.openplanner.team/stops/Bbstmco2", "https://tec.openplanner.team/stops/Cbtlong1"], ["https://tec.openplanner.team/stops/Cgpcime2", "https://tec.openplanner.team/stops/Cgpplac1"], ["https://tec.openplanner.team/stops/Cmlbrac1", "https://tec.openplanner.team/stops/Cmlbrac2"], ["https://tec.openplanner.team/stops/X723ada", "https://tec.openplanner.team/stops/X723aea"], ["https://tec.openplanner.team/stops/H1so131a", "https://tec.openplanner.team/stops/H1so131e"], ["https://tec.openplanner.team/stops/Bvirbie3", "https://tec.openplanner.team/stops/Bvirmav2"], ["https://tec.openplanner.team/stops/X601cka", "https://tec.openplanner.team/stops/X601cwa"], ["https://tec.openplanner.team/stops/LNAbois2", "https://tec.openplanner.team/stops/LNAbouh2"], ["https://tec.openplanner.team/stops/X811aha", "https://tec.openplanner.team/stops/X811aia"], ["https://tec.openplanner.team/stops/Cbzfrom2", "https://tec.openplanner.team/stops/Creoudo1"], ["https://tec.openplanner.team/stops/H1ms272b", "https://tec.openplanner.team/stops/H1ms305a"], ["https://tec.openplanner.team/stops/H1gn148b", "https://tec.openplanner.team/stops/H1gn151b"], ["https://tec.openplanner.team/stops/X657aha", "https://tec.openplanner.team/stops/X657aka"], ["https://tec.openplanner.team/stops/N252aab", "https://tec.openplanner.team/stops/N252acd"], ["https://tec.openplanner.team/stops/X773aab", "https://tec.openplanner.team/stops/X773abb"], ["https://tec.openplanner.team/stops/LSDgris1", "https://tec.openplanner.team/stops/LSDgris2"], ["https://tec.openplanner.team/stops/H1al106a", "https://tec.openplanner.team/stops/H1qp150a"], ["https://tec.openplanner.team/stops/LeYmero1", "https://tec.openplanner.team/stops/LeYmero2"], ["https://tec.openplanner.team/stops/Cauglac2", "https://tec.openplanner.team/stops/Cauptsa1"], ["https://tec.openplanner.team/stops/LBzvill1", "https://tec.openplanner.team/stops/LLWchat2"], ["https://tec.openplanner.team/stops/Bmrleco3", "https://tec.openplanner.team/stops/Bmrlnce2"], ["https://tec.openplanner.team/stops/Llgdouf1", "https://tec.openplanner.team/stops/Llgm%C3%A9di2"], ["https://tec.openplanner.team/stops/LSU50--1", "https://tec.openplanner.team/stops/LSU50--2"], ["https://tec.openplanner.team/stops/LTBeg--1", "https://tec.openplanner.team/stops/X713alb"], ["https://tec.openplanner.team/stops/Lenplac1", "https://tec.openplanner.team/stops/Lenplac5"], ["https://tec.openplanner.team/stops/Csa4mai2", "https://tec.openplanner.team/stops/Csdbosq1"], ["https://tec.openplanner.team/stops/H1do108a", "https://tec.openplanner.team/stops/H1do108e"], ["https://tec.openplanner.team/stops/X619aga", "https://tec.openplanner.team/stops/X620afb"], ["https://tec.openplanner.team/stops/Csbsart1", "https://tec.openplanner.team/stops/H1fv102a"], ["https://tec.openplanner.team/stops/X922aha", "https://tec.openplanner.team/stops/X922ama"], ["https://tec.openplanner.team/stops/Cgxvkho1", "https://tec.openplanner.team/stops/Cmoecol1"], ["https://tec.openplanner.team/stops/N550alb", "https://tec.openplanner.team/stops/N565adb"], ["https://tec.openplanner.team/stops/H4ka174a", "https://tec.openplanner.team/stops/H4ka421a"], ["https://tec.openplanner.team/stops/Ctmazeb1", "https://tec.openplanner.team/stops/Ctmazeb2"], ["https://tec.openplanner.team/stops/Blonegl2", "https://tec.openplanner.team/stops/Blontry2"], ["https://tec.openplanner.team/stops/X781ada", "https://tec.openplanner.team/stops/X781aea"], ["https://tec.openplanner.team/stops/Lvoec--1", "https://tec.openplanner.team/stops/Lvoec--2"], ["https://tec.openplanner.team/stops/Crcverr1", "https://tec.openplanner.team/stops/NH03afa"], ["https://tec.openplanner.team/stops/H2mg141b", "https://tec.openplanner.team/stops/H2mg142a"], ["https://tec.openplanner.team/stops/Lchchau2", "https://tec.openplanner.team/stops/Lchec--1"], ["https://tec.openplanner.team/stops/LAYdieu1", "https://tec.openplanner.team/stops/LFLcher2"], ["https://tec.openplanner.team/stops/N562aka", "https://tec.openplanner.team/stops/N562bfb"], ["https://tec.openplanner.team/stops/LWOsass1", "https://tec.openplanner.team/stops/LWOwaer1"], ["https://tec.openplanner.team/stops/LAvcani1", "https://tec.openplanner.team/stops/LAvcani2"], ["https://tec.openplanner.team/stops/Bbrlpar1", "https://tec.openplanner.team/stops/Bbrlvil2"], ["https://tec.openplanner.team/stops/H4ty282b", "https://tec.openplanner.team/stops/H4ty332a"], ["https://tec.openplanner.team/stops/X982baa", "https://tec.openplanner.team/stops/X982cca"], ["https://tec.openplanner.team/stops/X651aaa", "https://tec.openplanner.team/stops/X651aeb"], ["https://tec.openplanner.team/stops/X982axb", "https://tec.openplanner.team/stops/X982aza"], ["https://tec.openplanner.team/stops/H4ea130a", "https://tec.openplanner.team/stops/H4ea134b"], ["https://tec.openplanner.team/stops/H4bv146a", "https://tec.openplanner.team/stops/H5at141a"], ["https://tec.openplanner.team/stops/Bnilegl1", "https://tec.openplanner.team/stops/Bnilhau2"], ["https://tec.openplanner.team/stops/X922afa", "https://tec.openplanner.team/stops/X922agb"], ["https://tec.openplanner.team/stops/X801bva", "https://tec.openplanner.team/stops/X801bxb"], ["https://tec.openplanner.team/stops/Bquecge1", "https://tec.openplanner.team/stops/Bquecge2"], ["https://tec.openplanner.team/stops/H3bi102b", "https://tec.openplanner.team/stops/H3bi108b"], ["https://tec.openplanner.team/stops/Bgemcha1", "https://tec.openplanner.team/stops/Bgrmfon2"], ["https://tec.openplanner.team/stops/LBThaut2", "https://tec.openplanner.team/stops/LCHsaul2"], ["https://tec.openplanner.team/stops/Bgembsg2", "https://tec.openplanner.team/stops/N522aja"], ["https://tec.openplanner.team/stops/H1gr110b", "https://tec.openplanner.team/stops/H1gr122b"], ["https://tec.openplanner.team/stops/Blhugai1", "https://tec.openplanner.team/stops/Bohnhan2"], ["https://tec.openplanner.team/stops/LDAbois2", "https://tec.openplanner.team/stops/LDArich1"], ["https://tec.openplanner.team/stops/LBpvue-2", "https://tec.openplanner.team/stops/LGEcons1"], ["https://tec.openplanner.team/stops/Lsemyrt2", "https://tec.openplanner.team/stops/Lsepcha2"], ["https://tec.openplanner.team/stops/N538asb", "https://tec.openplanner.team/stops/N538atb"], ["https://tec.openplanner.team/stops/H2le146a", "https://tec.openplanner.team/stops/H2re174b"], ["https://tec.openplanner.team/stops/LFUfonc2", "https://tec.openplanner.team/stops/LWDfuma2"], ["https://tec.openplanner.team/stops/N232beb", "https://tec.openplanner.team/stops/N232bfb"], ["https://tec.openplanner.team/stops/LVbcoul2", "https://tec.openplanner.team/stops/LVbsurr2"], ["https://tec.openplanner.team/stops/LFTcroi2", "https://tec.openplanner.team/stops/LNAbois1"], ["https://tec.openplanner.team/stops/LVLcent1", "https://tec.openplanner.team/stops/LWDplac1"], ["https://tec.openplanner.team/stops/Ccogode1", "https://tec.openplanner.team/stops/Ccoh1212"], ["https://tec.openplanner.team/stops/N101agc", "https://tec.openplanner.team/stops/N101aib"], ["https://tec.openplanner.team/stops/X615aba", "https://tec.openplanner.team/stops/X615ajb"], ["https://tec.openplanner.team/stops/Cpcegli2", "https://tec.openplanner.team/stops/Cpcplac3"], ["https://tec.openplanner.team/stops/Bohnmes2", "https://tec.openplanner.team/stops/Bohnpla1"], ["https://tec.openplanner.team/stops/H1ol140b", "https://tec.openplanner.team/stops/H1ol146b"], ["https://tec.openplanner.team/stops/Ctuhouz2", "https://tec.openplanner.team/stops/Ctupont4"], ["https://tec.openplanner.team/stops/X882aba", "https://tec.openplanner.team/stops/X882afb"], ["https://tec.openplanner.team/stops/Brixpla1", "https://tec.openplanner.team/stops/Brixrmo1"], ["https://tec.openplanner.team/stops/Binccha1", "https://tec.openplanner.team/stops/Binccha2"], ["https://tec.openplanner.team/stops/H4cw105a", "https://tec.openplanner.team/stops/H4hg159a"], ["https://tec.openplanner.team/stops/Bbealon4", "https://tec.openplanner.team/stops/Bbeardu2"], ["https://tec.openplanner.team/stops/LOTawan1", "https://tec.openplanner.team/stops/LOTdelv2"], ["https://tec.openplanner.team/stops/Bblacco2", "https://tec.openplanner.team/stops/Bwatbno2"], ["https://tec.openplanner.team/stops/Lpepano1", "https://tec.openplanner.team/stops/Lpetenn1"], ["https://tec.openplanner.team/stops/Bblacim2", "https://tec.openplanner.team/stops/Bblaljo1"], ["https://tec.openplanner.team/stops/H2bh111b", "https://tec.openplanner.team/stops/H2mg144a"], ["https://tec.openplanner.team/stops/N506aoa", "https://tec.openplanner.team/stops/N506bpb"], ["https://tec.openplanner.team/stops/X949aha", "https://tec.openplanner.team/stops/X949ajb"], ["https://tec.openplanner.team/stops/X621acb", "https://tec.openplanner.team/stops/X621aeb"], ["https://tec.openplanner.team/stops/Bgdhbvu1", "https://tec.openplanner.team/stops/Bgdhlai1"], ["https://tec.openplanner.team/stops/N357aaa", "https://tec.openplanner.team/stops/N357afb"], ["https://tec.openplanner.team/stops/H2ll196a", "https://tec.openplanner.team/stops/H2ll200b"], ["https://tec.openplanner.team/stops/X898aba", "https://tec.openplanner.team/stops/X898adb"], ["https://tec.openplanner.team/stops/LEScham2", "https://tec.openplanner.team/stops/LESfoot1"], ["https://tec.openplanner.team/stops/Bbgncnd2", "https://tec.openplanner.team/stops/N584alb"], ["https://tec.openplanner.team/stops/LATfont2", "https://tec.openplanner.team/stops/LATmonu2"], ["https://tec.openplanner.team/stops/X901bla", "https://tec.openplanner.team/stops/X901blb"], ["https://tec.openplanner.team/stops/Lrcauto1", "https://tec.openplanner.team/stops/Lrcauto2"], ["https://tec.openplanner.team/stops/Blasren1", "https://tec.openplanner.team/stops/Brixres1"], ["https://tec.openplanner.team/stops/H2fy122a", "https://tec.openplanner.team/stops/H2mg137a"], ["https://tec.openplanner.team/stops/N149abb", "https://tec.openplanner.team/stops/N149aia"], ["https://tec.openplanner.team/stops/X362aab", "https://tec.openplanner.team/stops/X362aba"], ["https://tec.openplanner.team/stops/N338aab", "https://tec.openplanner.team/stops/N339aab"], ["https://tec.openplanner.team/stops/H4gu107a", "https://tec.openplanner.team/stops/H4gu112a"], ["https://tec.openplanner.team/stops/LACwass2", "https://tec.openplanner.team/stops/LHhvivi2"], ["https://tec.openplanner.team/stops/N548agd", "https://tec.openplanner.team/stops/N569ada"], ["https://tec.openplanner.team/stops/N312adb", "https://tec.openplanner.team/stops/N313aaa"], ["https://tec.openplanner.team/stops/N145aha", "https://tec.openplanner.team/stops/N149aka"], ["https://tec.openplanner.team/stops/LlAdorf1", "https://tec.openplanner.team/stops/LoUober2"], ["https://tec.openplanner.team/stops/LSPfrai2", "https://tec.openplanner.team/stops/LSPwarf2"], ["https://tec.openplanner.team/stops/LTecent1", "https://tec.openplanner.team/stops/LTechpl1"], ["https://tec.openplanner.team/stops/Bllnald1", "https://tec.openplanner.team/stops/Bllngar3"], ["https://tec.openplanner.team/stops/Blpgvil1", "https://tec.openplanner.team/stops/Bvxgegl2"], ["https://tec.openplanner.team/stops/X742afa", "https://tec.openplanner.team/stops/X742aga"], ["https://tec.openplanner.team/stops/LPtrefa2", "https://tec.openplanner.team/stops/LRccent2"], ["https://tec.openplanner.team/stops/H1as104a", "https://tec.openplanner.team/stops/H1as154b"], ["https://tec.openplanner.team/stops/LCHgele1", "https://tec.openplanner.team/stops/LCHrhou2"], ["https://tec.openplanner.team/stops/LLOchpl1", "https://tec.openplanner.team/stops/LLOnand2"], ["https://tec.openplanner.team/stops/H4ev118a", "https://tec.openplanner.team/stops/H4ev120a"], ["https://tec.openplanner.team/stops/H2hp123c", "https://tec.openplanner.team/stops/H2hp123d"], ["https://tec.openplanner.team/stops/Bbldass1", "https://tec.openplanner.team/stops/Bnetegl2"], ["https://tec.openplanner.team/stops/X826aba", "https://tec.openplanner.team/stops/X826abb"], ["https://tec.openplanner.team/stops/Bnilcha1", "https://tec.openplanner.team/stops/Bnilcha2"], ["https://tec.openplanner.team/stops/Cmtfabi2", "https://tec.openplanner.team/stops/Cmtfoye1"], ["https://tec.openplanner.team/stops/X608aea", "https://tec.openplanner.team/stops/X608aeb"], ["https://tec.openplanner.team/stops/H3br112a", "https://tec.openplanner.team/stops/H3br112b"], ["https://tec.openplanner.team/stops/LoUwelc1", "https://tec.openplanner.team/stops/LsBzent2"], ["https://tec.openplanner.team/stops/Bosqgar1", "https://tec.openplanner.team/stops/Bosqgar2"], ["https://tec.openplanner.team/stops/X879alb", "https://tec.openplanner.team/stops/X879ama"], ["https://tec.openplanner.team/stops/Bgemga09", "https://tec.openplanner.team/stops/N522bvg"], ["https://tec.openplanner.team/stops/LVParal1", "https://tec.openplanner.team/stops/LVPgrot2"], ["https://tec.openplanner.team/stops/X650afc", "https://tec.openplanner.team/stops/X671aga"], ["https://tec.openplanner.team/stops/N232aaa", "https://tec.openplanner.team/stops/N232ana"], ["https://tec.openplanner.team/stops/LLrchat2", "https://tec.openplanner.team/stops/LLrfont2"], ["https://tec.openplanner.team/stops/LAwfans1", "https://tec.openplanner.team/stops/LXoroch2"], ["https://tec.openplanner.team/stops/LWAathe2", "https://tec.openplanner.team/stops/LWApr%C3%A9s4"], ["https://tec.openplanner.team/stops/LNIdoma1", "https://tec.openplanner.team/stops/LNIdoma2"], ["https://tec.openplanner.team/stops/Ljubois2", "https://tec.openplanner.team/stops/Ljuplpr1"], ["https://tec.openplanner.team/stops/Cmychpl1", "https://tec.openplanner.team/stops/Cmychpl4"], ["https://tec.openplanner.team/stops/LHEches3", "https://tec.openplanner.team/stops/LHEches4"], ["https://tec.openplanner.team/stops/X910aga", "https://tec.openplanner.team/stops/X910aib"], ["https://tec.openplanner.team/stops/H2fa109b", "https://tec.openplanner.team/stops/H2hg268b"], ["https://tec.openplanner.team/stops/Lhrgall1", "https://tec.openplanner.team/stops/Lhrlalo2"], ["https://tec.openplanner.team/stops/LHovach2", "https://tec.openplanner.team/stops/LHovill2"], ["https://tec.openplanner.team/stops/H4ty333a", "https://tec.openplanner.team/stops/H4ty397b"], ["https://tec.openplanner.team/stops/LHSheur2", "https://tec.openplanner.team/stops/LWOpier1"], ["https://tec.openplanner.team/stops/X618aab", "https://tec.openplanner.team/stops/X618aob"], ["https://tec.openplanner.team/stops/LNIhaut1", "https://tec.openplanner.team/stops/LSPsauv1"], ["https://tec.openplanner.team/stops/H4ms145b", "https://tec.openplanner.team/stops/H4ms146b"], ["https://tec.openplanner.team/stops/X759aaa", "https://tec.openplanner.team/stops/X759abb"], ["https://tec.openplanner.team/stops/H1sp353b", "https://tec.openplanner.team/stops/H1ss350b"], ["https://tec.openplanner.team/stops/X659aea", "https://tec.openplanner.team/stops/X659aoa"], ["https://tec.openplanner.team/stops/N501dia", "https://tec.openplanner.team/stops/N501jtb"], ["https://tec.openplanner.team/stops/LMYlieg2", "https://tec.openplanner.team/stops/LMYvill2"], ["https://tec.openplanner.team/stops/Bgntalt2", "https://tec.openplanner.team/stops/Bgntcoo2"], ["https://tec.openplanner.team/stops/X829ada", "https://tec.openplanner.team/stops/X830aab"], ["https://tec.openplanner.team/stops/N219aca", "https://tec.openplanner.team/stops/N219acb"], ["https://tec.openplanner.team/stops/N506ama", "https://tec.openplanner.team/stops/NL67adb"], ["https://tec.openplanner.team/stops/N501kcb", "https://tec.openplanner.team/stops/N501kqa"], ["https://tec.openplanner.team/stops/LSGbail2", "https://tec.openplanner.team/stops/LSGfoua2"], ["https://tec.openplanner.team/stops/Cgd4ven1", "https://tec.openplanner.team/stops/Cgdfoca1"], ["https://tec.openplanner.team/stops/N501fdb", "https://tec.openplanner.team/stops/N501fdc"], ["https://tec.openplanner.team/stops/H1pa104a", "https://tec.openplanner.team/stops/H1qu119a"], ["https://tec.openplanner.team/stops/LOUpres1", "https://tec.openplanner.team/stops/LOUpres2"], ["https://tec.openplanner.team/stops/LwL100-1", "https://tec.openplanner.team/stops/LwLfuss2"], ["https://tec.openplanner.team/stops/Cbiferm1", "https://tec.openplanner.team/stops/Crg3arb1"], ["https://tec.openplanner.team/stops/X942afb", "https://tec.openplanner.team/stops/X943adb"], ["https://tec.openplanner.team/stops/H1gy111b", "https://tec.openplanner.team/stops/H1le129b"], ["https://tec.openplanner.team/stops/H2ha134b", "https://tec.openplanner.team/stops/H2ha136b"], ["https://tec.openplanner.team/stops/LeYloos2", "https://tec.openplanner.team/stops/LeYmero1"], ["https://tec.openplanner.team/stops/Llgmean2", "https://tec.openplanner.team/stops/Llgptlo5"], ["https://tec.openplanner.team/stops/Bnivfch1", "https://tec.openplanner.team/stops/Bnivgpl3"], ["https://tec.openplanner.team/stops/H1qy135a", "https://tec.openplanner.team/stops/H1qy137a"], ["https://tec.openplanner.team/stops/X601bka", "https://tec.openplanner.team/stops/X601bqa"], ["https://tec.openplanner.team/stops/LHcbaro2", "https://tec.openplanner.team/stops/LHcgare1"], ["https://tec.openplanner.team/stops/Bbiehpo2", "https://tec.openplanner.team/stops/Bbiehss2"], ["https://tec.openplanner.team/stops/Berneco1", "https://tec.openplanner.team/stops/Bgemrom4"], ["https://tec.openplanner.team/stops/Blimegl2", "https://tec.openplanner.team/stops/Blimmer2"], ["https://tec.openplanner.team/stops/X756aab", "https://tec.openplanner.team/stops/X757ana"], ["https://tec.openplanner.team/stops/H4hx118a", "https://tec.openplanner.team/stops/H4hx119a"], ["https://tec.openplanner.team/stops/LHZ8mai2", "https://tec.openplanner.team/stops/LHZec--1"], ["https://tec.openplanner.team/stops/H4mt215a", "https://tec.openplanner.team/stops/H4mt222a"], ["https://tec.openplanner.team/stops/Bhenfer1", "https://tec.openplanner.team/stops/Bquegen1"], ["https://tec.openplanner.team/stops/H1gh173a", "https://tec.openplanner.team/stops/H1ms250a"], ["https://tec.openplanner.team/stops/Cfojoli1", "https://tec.openplanner.team/stops/Cforepo1"], ["https://tec.openplanner.team/stops/N121aeb", "https://tec.openplanner.team/stops/N121ajb"], ["https://tec.openplanner.team/stops/LLvferm2", "https://tec.openplanner.team/stops/LLvgare1"], ["https://tec.openplanner.team/stops/H4eg105a", "https://tec.openplanner.team/stops/H4sl154a"], ["https://tec.openplanner.team/stops/LNOning1", "https://tec.openplanner.team/stops/LNOsedo2"], ["https://tec.openplanner.team/stops/X604akb", "https://tec.openplanner.team/stops/X618aab"], ["https://tec.openplanner.team/stops/X818asa", "https://tec.openplanner.team/stops/X818aua"], ["https://tec.openplanner.team/stops/H4ty300b", "https://tec.openplanner.team/stops/H4ty329a"], ["https://tec.openplanner.team/stops/X731aha", "https://tec.openplanner.team/stops/X731aib"], ["https://tec.openplanner.team/stops/Bengvma2", "https://tec.openplanner.team/stops/H1en102a"], ["https://tec.openplanner.team/stops/Bnivgen2", "https://tec.openplanner.team/stops/Bnivsto1"], ["https://tec.openplanner.team/stops/Bwateco2", "https://tec.openplanner.team/stops/Bwatmsj2"], ["https://tec.openplanner.team/stops/LRmmabr1", "https://tec.openplanner.team/stops/LRmmabr2"], ["https://tec.openplanner.team/stops/X912acb", "https://tec.openplanner.team/stops/X912adb"], ["https://tec.openplanner.team/stops/X902aha", "https://tec.openplanner.team/stops/X999aaa"], ["https://tec.openplanner.team/stops/LBYegli1", "https://tec.openplanner.team/stops/LBYwez-1"], ["https://tec.openplanner.team/stops/H1fl133d", "https://tec.openplanner.team/stops/H1je369b"], ["https://tec.openplanner.team/stops/X910ada", "https://tec.openplanner.team/stops/X910aea"], ["https://tec.openplanner.team/stops/Bllnchv2", "https://tec.openplanner.team/stops/Bllnhoc1"], ["https://tec.openplanner.team/stops/Ljuinte2", "https://tec.openplanner.team/stops/Llgchan2"], ["https://tec.openplanner.team/stops/X882ajb", "https://tec.openplanner.team/stops/X882alb"], ["https://tec.openplanner.team/stops/H2sb225b", "https://tec.openplanner.team/stops/H3th135c"], ["https://tec.openplanner.team/stops/X396aaa", "https://tec.openplanner.team/stops/X396aab"], ["https://tec.openplanner.team/stops/Lseberg1", "https://tec.openplanner.team/stops/Lsebuil1"], ["https://tec.openplanner.team/stops/Cvtegli2", "https://tec.openplanner.team/stops/Cvtvois2"], ["https://tec.openplanner.team/stops/Bsgimca1", "https://tec.openplanner.team/stops/Bsgimor2"], ["https://tec.openplanner.team/stops/Cptegli3", "https://tec.openplanner.team/stops/Cptplac3"], ["https://tec.openplanner.team/stops/X664akb", "https://tec.openplanner.team/stops/X664ata"], ["https://tec.openplanner.team/stops/LMAalli1", "https://tec.openplanner.team/stops/LMAgdfa1"], ["https://tec.openplanner.team/stops/Ccupres2", "https://tec.openplanner.team/stops/Ccusole2"], ["https://tec.openplanner.team/stops/Lveanne1", "https://tec.openplanner.team/stops/Lvemahe2"], ["https://tec.openplanner.team/stops/X750aob", "https://tec.openplanner.team/stops/X750boa"], ["https://tec.openplanner.team/stops/LLOhest1", "https://tec.openplanner.team/stops/LVttarg1"], ["https://tec.openplanner.team/stops/LOTcarr2", "https://tec.openplanner.team/stops/LOTjacq1"], ["https://tec.openplanner.team/stops/Cmcegli3", "https://tec.openplanner.team/stops/Cmcegli4"], ["https://tec.openplanner.team/stops/X741acb", "https://tec.openplanner.team/stops/X741aea"], ["https://tec.openplanner.team/stops/Bcercsa2", "https://tec.openplanner.team/stops/Bcsepes1"], ["https://tec.openplanner.team/stops/Chpplac1", "https://tec.openplanner.team/stops/Chpplac2"], ["https://tec.openplanner.team/stops/LmRh%C3%B6811", "https://tec.openplanner.team/stops/LmRkreu3"], ["https://tec.openplanner.team/stops/LRachen*", "https://tec.openplanner.team/stops/LRagrch2"], ["https://tec.openplanner.team/stops/Bllncom2", "https://tec.openplanner.team/stops/Bllnfla3"], ["https://tec.openplanner.team/stops/Bblacco1", "https://tec.openplanner.team/stops/Bblacco2"], ["https://tec.openplanner.team/stops/LBkjenn2", "https://tec.openplanner.team/stops/LBkwind1"], ["https://tec.openplanner.team/stops/X806abb", "https://tec.openplanner.team/stops/X806aka"], ["https://tec.openplanner.team/stops/Bbaubru2", "https://tec.openplanner.team/stops/Bnivpba1"], ["https://tec.openplanner.team/stops/H4ty296a", "https://tec.openplanner.team/stops/H4ty305a"], ["https://tec.openplanner.team/stops/H3so154b", "https://tec.openplanner.team/stops/H3so175b"], ["https://tec.openplanner.team/stops/X907afb", "https://tec.openplanner.team/stops/X907agb"], ["https://tec.openplanner.team/stops/H1ms288a", "https://tec.openplanner.team/stops/H1ms288b"], ["https://tec.openplanner.team/stops/Bbiesbi1", "https://tec.openplanner.team/stops/Bptbsar1"], ["https://tec.openplanner.team/stops/Lvegend1", "https://tec.openplanner.team/stops/Lvevieu2"], ["https://tec.openplanner.team/stops/X954abb", "https://tec.openplanner.team/stops/X954aca"], ["https://tec.openplanner.team/stops/H1ba118a", "https://tec.openplanner.team/stops/H1ba118b"], ["https://tec.openplanner.team/stops/X904ajb", "https://tec.openplanner.team/stops/X904ala"], ["https://tec.openplanner.team/stops/H1tl119a", "https://tec.openplanner.team/stops/H1tl121a"], ["https://tec.openplanner.team/stops/N509ada", "https://tec.openplanner.team/stops/N509afa"], ["https://tec.openplanner.team/stops/LGAbois1", "https://tec.openplanner.team/stops/LGAnovi1"], ["https://tec.openplanner.team/stops/LPbpeti1", "https://tec.openplanner.team/stops/LVkinst1"], ["https://tec.openplanner.team/stops/N524aba", "https://tec.openplanner.team/stops/N525ajb"], ["https://tec.openplanner.team/stops/LVLgrum2", "https://tec.openplanner.team/stops/LVLmabi1"], ["https://tec.openplanner.team/stops/N203ada", "https://tec.openplanner.team/stops/N203aeb"], ["https://tec.openplanner.team/stops/Barqpla1", "https://tec.openplanner.team/stops/Bborbif2"], ["https://tec.openplanner.team/stops/H2gy100a", "https://tec.openplanner.team/stops/H2tz117a"], ["https://tec.openplanner.team/stops/Ccucora1", "https://tec.openplanner.team/stops/Cmtmoul1"], ["https://tec.openplanner.team/stops/X542ada", "https://tec.openplanner.team/stops/X542adb"], ["https://tec.openplanner.team/stops/Crobass1", "https://tec.openplanner.team/stops/Crobass2"], ["https://tec.openplanner.team/stops/H4ry131a", "https://tec.openplanner.team/stops/H4ry132b"], ["https://tec.openplanner.team/stops/LAUcent2", "https://tec.openplanner.team/stops/LFPstro1"], ["https://tec.openplanner.team/stops/H5at112a", "https://tec.openplanner.team/stops/H5at124a"], ["https://tec.openplanner.team/stops/H2fa102b", "https://tec.openplanner.team/stops/H2me114b"], ["https://tec.openplanner.team/stops/LBEmich1", "https://tec.openplanner.team/stops/LTRpery1"], ["https://tec.openplanner.team/stops/X715aea", "https://tec.openplanner.team/stops/X715amb"], ["https://tec.openplanner.team/stops/Cdaptca1", "https://tec.openplanner.team/stops/Cmlfstt2"], ["https://tec.openplanner.team/stops/Buccdef1", "https://tec.openplanner.team/stops/Buccdef2"], ["https://tec.openplanner.team/stops/LBavive2", "https://tec.openplanner.team/stops/LGogare1"], ["https://tec.openplanner.team/stops/X354afb", "https://tec.openplanner.team/stops/X359aba"], ["https://tec.openplanner.team/stops/X622adb", "https://tec.openplanner.team/stops/X622afb"], ["https://tec.openplanner.team/stops/Lbrmour2", "https://tec.openplanner.team/stops/Lbrplai1"], ["https://tec.openplanner.team/stops/LESmc--1", "https://tec.openplanner.team/stops/LESmich1"], ["https://tec.openplanner.team/stops/N506bcb", "https://tec.openplanner.team/stops/N506bda"], ["https://tec.openplanner.team/stops/X943aaa", "https://tec.openplanner.team/stops/X943agb"], ["https://tec.openplanner.team/stops/LOUpres1", "https://tec.openplanner.team/stops/Lviweri2"], ["https://tec.openplanner.team/stops/H3so162a", "https://tec.openplanner.team/stops/H3so162b"], ["https://tec.openplanner.team/stops/LMOf35-2", "https://tec.openplanner.team/stops/LMOfrel2"], ["https://tec.openplanner.team/stops/H1ch101b", "https://tec.openplanner.team/stops/H1ch104b"], ["https://tec.openplanner.team/stops/N509arb", "https://tec.openplanner.team/stops/N509ava"], ["https://tec.openplanner.team/stops/X771adb", "https://tec.openplanner.team/stops/X771aia"], ["https://tec.openplanner.team/stops/X773ama", "https://tec.openplanner.team/stops/X773amb"], ["https://tec.openplanner.team/stops/X719aaa", "https://tec.openplanner.team/stops/X786abb"], ["https://tec.openplanner.team/stops/LCljose2", "https://tec.openplanner.team/stops/LLMjacq1"], ["https://tec.openplanner.team/stops/X910aba", "https://tec.openplanner.team/stops/X910aja"], ["https://tec.openplanner.team/stops/N106aab", "https://tec.openplanner.team/stops/N137adb"], ["https://tec.openplanner.team/stops/Lhrthie1", "https://tec.openplanner.team/stops/Lhrvert1"], ["https://tec.openplanner.team/stops/N229aga", "https://tec.openplanner.team/stops/N229agb"], ["https://tec.openplanner.team/stops/Balsnie2", "https://tec.openplanner.team/stops/Balswsa2"], ["https://tec.openplanner.team/stops/LPurech2", "https://tec.openplanner.team/stops/LrEochs1"], ["https://tec.openplanner.team/stops/Cgncail2", "https://tec.openplanner.team/stops/Clproi2"], ["https://tec.openplanner.team/stops/Cbmmafr2", "https://tec.openplanner.team/stops/H1bt100a"], ["https://tec.openplanner.team/stops/Lceegth1", "https://tec.openplanner.team/stops/Lgrcral1"], ["https://tec.openplanner.team/stops/X601cja", "https://tec.openplanner.team/stops/X601cka"], ["https://tec.openplanner.team/stops/H2fy123a", "https://tec.openplanner.team/stops/H2fy123b"], ["https://tec.openplanner.team/stops/N301ana", "https://tec.openplanner.team/stops/N301anb"], ["https://tec.openplanner.team/stops/Cgpcime1", "https://tec.openplanner.team/stops/Cgpplac1"], ["https://tec.openplanner.team/stops/N104afb", "https://tec.openplanner.team/stops/N104aka"], ["https://tec.openplanner.team/stops/Bnivfro1", "https://tec.openplanner.team/stops/Bnivzep2"], ["https://tec.openplanner.team/stops/N231afb", "https://tec.openplanner.team/stops/N231aga"], ["https://tec.openplanner.team/stops/X784akb", "https://tec.openplanner.team/stops/X784ala"], ["https://tec.openplanner.team/stops/N528aba", "https://tec.openplanner.team/stops/N528afc"], ["https://tec.openplanner.team/stops/Ccogode2", "https://tec.openplanner.team/stops/Ccoh1212"], ["https://tec.openplanner.team/stops/Cgxchan2", "https://tec.openplanner.team/stops/Cgxwaut1"], ["https://tec.openplanner.team/stops/LMRmont2", "https://tec.openplanner.team/stops/LtEnatu2"], ["https://tec.openplanner.team/stops/Llgchai1", "https://tec.openplanner.team/stops/Llgtawe0"], ["https://tec.openplanner.team/stops/LBKmare1", "https://tec.openplanner.team/stops/LOeelbe1"], ["https://tec.openplanner.team/stops/H5wo130a", "https://tec.openplanner.team/stops/H5wo130b"], ["https://tec.openplanner.team/stops/LSPastr2", "https://tec.openplanner.team/stops/LSPClem2"], ["https://tec.openplanner.team/stops/N501gkb", "https://tec.openplanner.team/stops/N501kcb"], ["https://tec.openplanner.team/stops/H1so136b", "https://tec.openplanner.team/stops/H1so137b"], ["https://tec.openplanner.team/stops/Cfcplac3", "https://tec.openplanner.team/stops/Cfcplac4"], ["https://tec.openplanner.team/stops/Cgzchab2", "https://tec.openplanner.team/stops/Cgzchab3"], ["https://tec.openplanner.team/stops/LRMn58-1", "https://tec.openplanner.team/stops/LRMn58-2"], ["https://tec.openplanner.team/stops/X820aeb", "https://tec.openplanner.team/stops/X820aga"], ["https://tec.openplanner.team/stops/X741ahb", "https://tec.openplanner.team/stops/X741aib"], ["https://tec.openplanner.team/stops/H2sb257b", "https://tec.openplanner.team/stops/H2sb258a"], ["https://tec.openplanner.team/stops/Cmlcpar1", "https://tec.openplanner.team/stops/Cmltomb1"], ["https://tec.openplanner.team/stops/X713aea", "https://tec.openplanner.team/stops/X713afb"], ["https://tec.openplanner.team/stops/H1eo104a", "https://tec.openplanner.team/stops/H1eo106a"], ["https://tec.openplanner.team/stops/Chhplbe2", "https://tec.openplanner.team/stops/Chhsncb1"], ["https://tec.openplanner.team/stops/N127aaa", "https://tec.openplanner.team/stops/N127aja"], ["https://tec.openplanner.team/stops/H1bb146a", "https://tec.openplanner.team/stops/H1el137a"], ["https://tec.openplanner.team/stops/H1hl124a", "https://tec.openplanner.team/stops/H1ry137b"], ["https://tec.openplanner.team/stops/Clbentr1", "https://tec.openplanner.team/stops/Clbhvil1"], ["https://tec.openplanner.team/stops/X948aaa", "https://tec.openplanner.team/stops/X948apb"], ["https://tec.openplanner.team/stops/H5qu143d", "https://tec.openplanner.team/stops/H5qu156d"], ["https://tec.openplanner.team/stops/LCeanne2", "https://tec.openplanner.team/stops/LLWchat1"], ["https://tec.openplanner.team/stops/X547aqa", "https://tec.openplanner.team/stops/X547aqb"], ["https://tec.openplanner.team/stops/LDAbois1", "https://tec.openplanner.team/stops/LVImons1"], ["https://tec.openplanner.team/stops/H1ma233a", "https://tec.openplanner.team/stops/H1ms313b"], ["https://tec.openplanner.team/stops/H4hs136b", "https://tec.openplanner.team/stops/H4th141a"], ["https://tec.openplanner.team/stops/LsVfrde1", "https://tec.openplanner.team/stops/LsVfrde2"], ["https://tec.openplanner.team/stops/Bpelegl1", "https://tec.openplanner.team/stops/Bpelegl4"], ["https://tec.openplanner.team/stops/X637aka", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/LwYbrkr1", "https://tec.openplanner.team/stops/LwYnr262"], ["https://tec.openplanner.team/stops/H3so185a", "https://tec.openplanner.team/stops/H3so187a"], ["https://tec.openplanner.team/stops/H1br122a", "https://tec.openplanner.team/stops/H1br130b"], ["https://tec.openplanner.team/stops/X891aba", "https://tec.openplanner.team/stops/X891ada"], ["https://tec.openplanner.team/stops/H4ve132a", "https://tec.openplanner.team/stops/H4ve132b"], ["https://tec.openplanner.team/stops/X633aca", "https://tec.openplanner.team/stops/X633acb"], ["https://tec.openplanner.team/stops/Cgrgend1", "https://tec.openplanner.team/stops/NC14aub"], ["https://tec.openplanner.team/stops/Bbbksth1", "https://tec.openplanner.team/stops/Bnetace1"], ["https://tec.openplanner.team/stops/Cmastma1", "https://tec.openplanner.team/stops/Cmazsnc2"], ["https://tec.openplanner.team/stops/H4bw101a", "https://tec.openplanner.team/stops/H4co149a"], ["https://tec.openplanner.team/stops/Cchccom2", "https://tec.openplanner.team/stops/CMsama1"], ["https://tec.openplanner.team/stops/LHocroi1", "https://tec.openplanner.team/stops/LJesole2"], ["https://tec.openplanner.team/stops/N146adb", "https://tec.openplanner.team/stops/N146afb"], ["https://tec.openplanner.team/stops/N534bbb", "https://tec.openplanner.team/stops/N534bdb"], ["https://tec.openplanner.team/stops/H4eg101a", "https://tec.openplanner.team/stops/H4eg101d"], ["https://tec.openplanner.team/stops/Bcbqa361", "https://tec.openplanner.team/stops/Bhaltre2"], ["https://tec.openplanner.team/stops/H4ra159b", "https://tec.openplanner.team/stops/H4wr174b"], ["https://tec.openplanner.team/stops/Lhrmine1", "https://tec.openplanner.team/stops/Ljubonf2"], ["https://tec.openplanner.team/stops/LGEbern2", "https://tec.openplanner.team/stops/LGEpt--2"], ["https://tec.openplanner.team/stops/X763aea", "https://tec.openplanner.team/stops/X763afb"], ["https://tec.openplanner.team/stops/X808aba", "https://tec.openplanner.team/stops/X808abc"], ["https://tec.openplanner.team/stops/Ljuathe1", "https://tec.openplanner.team/stops/Ljuchap2"], ["https://tec.openplanner.team/stops/LmLbeil2", "https://tec.openplanner.team/stops/LoUzent1"], ["https://tec.openplanner.team/stops/H5el102b", "https://tec.openplanner.team/stops/H5el107b"], ["https://tec.openplanner.team/stops/Ljeegli6", "https://tec.openplanner.team/stops/Lseespe1"], ["https://tec.openplanner.team/stops/X658afa", "https://tec.openplanner.team/stops/X658afb"], ["https://tec.openplanner.team/stops/N206ada", "https://tec.openplanner.team/stops/N220aaa"], ["https://tec.openplanner.team/stops/N235aeb", "https://tec.openplanner.team/stops/N241acb"], ["https://tec.openplanner.team/stops/Cchsud11", "https://tec.openplanner.team/stops/CMsud1"], ["https://tec.openplanner.team/stops/X613abb", "https://tec.openplanner.team/stops/X614ana"], ["https://tec.openplanner.team/stops/N528aab", "https://tec.openplanner.team/stops/N528abb"], ["https://tec.openplanner.team/stops/LREhenu1", "https://tec.openplanner.team/stops/LREsoug3"], ["https://tec.openplanner.team/stops/N585aja", "https://tec.openplanner.team/stops/N585akb"], ["https://tec.openplanner.team/stops/Becepro2", "https://tec.openplanner.team/stops/H2ec100b"], ["https://tec.openplanner.team/stops/X358ada", "https://tec.openplanner.team/stops/X358adb"], ["https://tec.openplanner.team/stops/Bmangen1", "https://tec.openplanner.team/stops/Bmangen2"], ["https://tec.openplanner.team/stops/X744aab", "https://tec.openplanner.team/stops/X744abb"], ["https://tec.openplanner.team/stops/H2ma203a", "https://tec.openplanner.team/stops/H2ma206a"], ["https://tec.openplanner.team/stops/H1qv110b", "https://tec.openplanner.team/stops/H1qv112b"], ["https://tec.openplanner.team/stops/N120alb", "https://tec.openplanner.team/stops/N244apb"], ["https://tec.openplanner.team/stops/LBivi--1", "https://tec.openplanner.team/stops/LHChoof3"], ["https://tec.openplanner.team/stops/Lmlguis2", "https://tec.openplanner.team/stops/Lpoprie1"], ["https://tec.openplanner.team/stops/H4ty296b", "https://tec.openplanner.team/stops/H4ty314c"], ["https://tec.openplanner.team/stops/Lbhpeti1", "https://tec.openplanner.team/stops/Lbhpeti2"], ["https://tec.openplanner.team/stops/Bnilhau1", "https://tec.openplanner.team/stops/Btsllib1"], ["https://tec.openplanner.team/stops/N501drb", "https://tec.openplanner.team/stops/N501eea"], ["https://tec.openplanner.team/stops/X630ada", "https://tec.openplanner.team/stops/X638ada"], ["https://tec.openplanner.team/stops/LbUmolk1", "https://tec.openplanner.team/stops/LbUwirt1"], ["https://tec.openplanner.team/stops/Lvecrot1", "https://tec.openplanner.team/stops/Lvecrot2"], ["https://tec.openplanner.team/stops/H1bl100a", "https://tec.openplanner.team/stops/H1sb146b"], ["https://tec.openplanner.team/stops/X653aab", "https://tec.openplanner.team/stops/X653aba"], ["https://tec.openplanner.team/stops/Bhlvlou2", "https://tec.openplanner.team/stops/Bhlvvil3"], ["https://tec.openplanner.team/stops/H2mo127d", "https://tec.openplanner.team/stops/H2mo130c"], ["https://tec.openplanner.team/stops/Lpeflec1", "https://tec.openplanner.team/stops/Lpefler2"], ["https://tec.openplanner.team/stops/Cgzmira3", "https://tec.openplanner.team/stops/Cthha502"], ["https://tec.openplanner.team/stops/Csychap4", "https://tec.openplanner.team/stops/Csyplac1"], ["https://tec.openplanner.team/stops/N113aea", "https://tec.openplanner.team/stops/N114aab"], ["https://tec.openplanner.team/stops/H2hp119a", "https://tec.openplanner.team/stops/H2hp119d"], ["https://tec.openplanner.team/stops/H1bx105b", "https://tec.openplanner.team/stops/H1bx107b"], ["https://tec.openplanner.team/stops/X922aga", "https://tec.openplanner.team/stops/X922agb"], ["https://tec.openplanner.team/stops/H1cv100a", "https://tec.openplanner.team/stops/H1ml110a"], ["https://tec.openplanner.team/stops/H1te179a", "https://tec.openplanner.team/stops/H1te186a"], ["https://tec.openplanner.team/stops/LGLc50-3", "https://tec.openplanner.team/stops/LGLcour4"], ["https://tec.openplanner.team/stops/N118aia", "https://tec.openplanner.team/stops/N155acb"], ["https://tec.openplanner.team/stops/H1sg149b", "https://tec.openplanner.team/stops/H1te176b"], ["https://tec.openplanner.team/stops/LoUzent1", "https://tec.openplanner.team/stops/X685agb"], ["https://tec.openplanner.team/stops/LTNcarr2", "https://tec.openplanner.team/stops/LTNcarr4"], ["https://tec.openplanner.team/stops/LHhelia2", "https://tec.openplanner.team/stops/LHhmohe2"], ["https://tec.openplanner.team/stops/H1cu124a", "https://tec.openplanner.team/stops/H1fr115a"], ["https://tec.openplanner.team/stops/H4bl106a", "https://tec.openplanner.team/stops/H4tg262a"], ["https://tec.openplanner.team/stops/Lflheid1", "https://tec.openplanner.team/stops/LMFmoul2"], ["https://tec.openplanner.team/stops/Louairl1", "https://tec.openplanner.team/stops/Loubour1"], ["https://tec.openplanner.team/stops/Cgzhour1", "https://tec.openplanner.team/stops/Cgzhour2"], ["https://tec.openplanner.team/stops/LCRabbe2", "https://tec.openplanner.team/stops/LOdcris2"], ["https://tec.openplanner.team/stops/X769aia", "https://tec.openplanner.team/stops/X769asa"], ["https://tec.openplanner.team/stops/Bcrbbou2", "https://tec.openplanner.team/stops/Bcrbcel2"], ["https://tec.openplanner.team/stops/LBRgare2", "https://tec.openplanner.team/stops/LBRgend2"], ["https://tec.openplanner.team/stops/H1ch106a", "https://tec.openplanner.team/stops/H5ma181a"], ["https://tec.openplanner.team/stops/Cfrcomp2", "https://tec.openplanner.team/stops/Cfrempe1"], ["https://tec.openplanner.team/stops/X713ajd", "https://tec.openplanner.team/stops/X714aea"], ["https://tec.openplanner.team/stops/Cfvombo2", "https://tec.openplanner.team/stops/H1fv101b"], ["https://tec.openplanner.team/stops/LVNroua2", "https://tec.openplanner.team/stops/LWzfuma1"], ["https://tec.openplanner.team/stops/N230aea", "https://tec.openplanner.team/stops/N230afa"], ["https://tec.openplanner.team/stops/LFTcroi4", "https://tec.openplanner.team/stops/LFTeg--2"], ["https://tec.openplanner.team/stops/Lghmaha3", "https://tec.openplanner.team/stops/Lmlpech1"], ["https://tec.openplanner.team/stops/X850amb", "https://tec.openplanner.team/stops/X850anb"], ["https://tec.openplanner.team/stops/H4mt216b", "https://tec.openplanner.team/stops/H4mt217a"], ["https://tec.openplanner.team/stops/Ladegli1", "https://tec.openplanner.team/stops/Ladegli2"], ["https://tec.openplanner.team/stops/N234aba", "https://tec.openplanner.team/stops/N549aib"], ["https://tec.openplanner.team/stops/Cgxbeau1", "https://tec.openplanner.team/stops/Cgxcite1"], ["https://tec.openplanner.team/stops/H5at132b", "https://tec.openplanner.team/stops/H5ma185a"], ["https://tec.openplanner.team/stops/H1ms296a", "https://tec.openplanner.team/stops/H1ms296c"], ["https://tec.openplanner.team/stops/LhMdorf1", "https://tec.openplanner.team/stops/LhMmeil2"], ["https://tec.openplanner.team/stops/Cragoss1", "https://tec.openplanner.team/stops/Cravign2"], ["https://tec.openplanner.team/stops/N510afa", "https://tec.openplanner.team/stops/N510afb"], ["https://tec.openplanner.team/stops/X823aaa", "https://tec.openplanner.team/stops/X824agb"], ["https://tec.openplanner.team/stops/H1qu119a", "https://tec.openplanner.team/stops/H1qu119b"], ["https://tec.openplanner.team/stops/H4au100b", "https://tec.openplanner.team/stops/H4bq154a"], ["https://tec.openplanner.team/stops/Cgorosa2", "https://tec.openplanner.team/stops/Cgorosa3"], ["https://tec.openplanner.team/stops/X774add", "https://tec.openplanner.team/stops/X774afb"], ["https://tec.openplanner.team/stops/LwYbruc4", "https://tec.openplanner.team/stops/LwYneue1"], ["https://tec.openplanner.team/stops/N573aia", "https://tec.openplanner.team/stops/N573amb"], ["https://tec.openplanner.team/stops/LCRfize2", "https://tec.openplanner.team/stops/LTyhapp2"], ["https://tec.openplanner.team/stops/LGLecol2", "https://tec.openplanner.team/stops/LGLlaur1"], ["https://tec.openplanner.team/stops/N521afa", "https://tec.openplanner.team/stops/N521afb"], ["https://tec.openplanner.team/stops/Ccigene1", "https://tec.openplanner.team/stops/Ccisart2"], ["https://tec.openplanner.team/stops/X612ada", "https://tec.openplanner.team/stops/X623aea"], ["https://tec.openplanner.team/stops/Cthpibl2", "https://tec.openplanner.team/stops/Cthwaib1"], ["https://tec.openplanner.team/stops/N116aaa", "https://tec.openplanner.team/stops/N116aad"], ["https://tec.openplanner.team/stops/Llgpiet2", "https://tec.openplanner.team/stops/Llgthie1"], ["https://tec.openplanner.team/stops/H1be104a", "https://tec.openplanner.team/stops/H1be104b"], ["https://tec.openplanner.team/stops/Clb4dgi2", "https://tec.openplanner.team/stops/Clbecol2"], ["https://tec.openplanner.team/stops/H2lc169a", "https://tec.openplanner.team/stops/H2lc169c"], ["https://tec.openplanner.team/stops/Clsghoy1", "https://tec.openplanner.team/stops/H1hw119a"], ["https://tec.openplanner.team/stops/N509bfa", "https://tec.openplanner.team/stops/N509bga"], ["https://tec.openplanner.team/stops/H3lr109c", "https://tec.openplanner.team/stops/H3lr112b"], ["https://tec.openplanner.team/stops/X882afa", "https://tec.openplanner.team/stops/X882afb"], ["https://tec.openplanner.team/stops/LHDchar4", "https://tec.openplanner.team/stops/LHDlibi1"], ["https://tec.openplanner.team/stops/X734anc", "https://tec.openplanner.team/stops/X734aob"], ["https://tec.openplanner.team/stops/LBPmili2", "https://tec.openplanner.team/stops/LBPunic2"], ["https://tec.openplanner.team/stops/H1fl134b", "https://tec.openplanner.team/stops/H1fl140b"], ["https://tec.openplanner.team/stops/LOtthie1", "https://tec.openplanner.team/stops/LVsbrux1"], ["https://tec.openplanner.team/stops/Bbrlpar1", "https://tec.openplanner.team/stops/Brsgtou1"], ["https://tec.openplanner.team/stops/LBvnico1", "https://tec.openplanner.team/stops/LBvnico4"], ["https://tec.openplanner.team/stops/N232ana", "https://tec.openplanner.team/stops/N232bqb"], ["https://tec.openplanner.team/stops/Cgrlorm1", "https://tec.openplanner.team/stops/Cgrlorm2"], ["https://tec.openplanner.team/stops/N539aca", "https://tec.openplanner.team/stops/N542akb"], ["https://tec.openplanner.team/stops/X595aeb", "https://tec.openplanner.team/stops/X713anb"], ["https://tec.openplanner.team/stops/H4ne137b", "https://tec.openplanner.team/stops/H4ne143b"], ["https://tec.openplanner.team/stops/Cluchbl2", "https://tec.openplanner.team/stops/Clusncb4"], ["https://tec.openplanner.team/stops/Brixbou1", "https://tec.openplanner.team/stops/Brixdec1"], ["https://tec.openplanner.team/stops/LAMfrai1", "https://tec.openplanner.team/stops/LAMfrai2"], ["https://tec.openplanner.team/stops/H1do122a", "https://tec.openplanner.team/stops/H1do125a"], ["https://tec.openplanner.team/stops/Brsgera1", "https://tec.openplanner.team/stops/Brsggea2"], ["https://tec.openplanner.team/stops/X869aba", "https://tec.openplanner.team/stops/X882agb"], ["https://tec.openplanner.team/stops/X718aaa", "https://tec.openplanner.team/stops/X718akb"], ["https://tec.openplanner.team/stops/Cfmpui81", "https://tec.openplanner.team/stops/Cfmrrou2"], ["https://tec.openplanner.team/stops/N577ada", "https://tec.openplanner.team/stops/N577aib"], ["https://tec.openplanner.team/stops/Lemhenn2", "https://tec.openplanner.team/stops/Lvcreve1"], ["https://tec.openplanner.team/stops/LmNkirc1", "https://tec.openplanner.team/stops/LmNpost1"], ["https://tec.openplanner.team/stops/LHolone1", "https://tec.openplanner.team/stops/LHZec--1"], ["https://tec.openplanner.team/stops/Llgdepo1", "https://tec.openplanner.team/stops/Llgdepo6"], ["https://tec.openplanner.team/stops/Bbcocou1", "https://tec.openplanner.team/stops/Bbcoubo3"], ["https://tec.openplanner.team/stops/Cravign3", "https://tec.openplanner.team/stops/Cravign4"], ["https://tec.openplanner.team/stops/N506aab", "https://tec.openplanner.team/stops/N506bub"], ["https://tec.openplanner.team/stops/LFEague1", "https://tec.openplanner.team/stops/LFtcarr1"], ["https://tec.openplanner.team/stops/Cravign1", "https://tec.openplanner.team/stops/Cravign2"], ["https://tec.openplanner.team/stops/Lflmaxi1", "https://tec.openplanner.team/stops/Lflmaxi4"], ["https://tec.openplanner.team/stops/H4we135a", "https://tec.openplanner.team/stops/H4we139a"], ["https://tec.openplanner.team/stops/LMforba1", "https://tec.openplanner.team/stops/LMforba2"], ["https://tec.openplanner.team/stops/X783aca", "https://tec.openplanner.team/stops/X783acb"], ["https://tec.openplanner.team/stops/H4hu121b", "https://tec.openplanner.team/stops/H4og214a"], ["https://tec.openplanner.team/stops/Lceleje1", "https://tec.openplanner.team/stops/Lvcreve1"], ["https://tec.openplanner.team/stops/Caujonc2", "https://tec.openplanner.team/stops/Causart1"], ["https://tec.openplanner.team/stops/LBgcroi1", "https://tec.openplanner.team/stops/LBgcroi3"], ["https://tec.openplanner.team/stops/N501msa", "https://tec.openplanner.team/stops/N501msb"], ["https://tec.openplanner.team/stops/LOurena2", "https://tec.openplanner.team/stops/LVnvieg2"], ["https://tec.openplanner.team/stops/X804alc", "https://tec.openplanner.team/stops/X804bma"], ["https://tec.openplanner.team/stops/H2mo125a", "https://tec.openplanner.team/stops/H2mo130b"], ["https://tec.openplanner.team/stops/Bettbue2", "https://tec.openplanner.team/stops/Bixepla2"], ["https://tec.openplanner.team/stops/Btlbgla1", "https://tec.openplanner.team/stops/Btstcar4"], ["https://tec.openplanner.team/stops/X877afa", "https://tec.openplanner.team/stops/X877aga"], ["https://tec.openplanner.team/stops/Btlbche1", "https://tec.openplanner.team/stops/NB33aeb"], ["https://tec.openplanner.team/stops/Cpllimi3", "https://tec.openplanner.team/stops/Cpllimi5"], ["https://tec.openplanner.team/stops/Llivina2", "https://tec.openplanner.team/stops/Lvochev1"], ["https://tec.openplanner.team/stops/H1gn147b", "https://tec.openplanner.team/stops/H1gn151a"], ["https://tec.openplanner.team/stops/H1en101a", "https://tec.openplanner.team/stops/H1en101b"], ["https://tec.openplanner.team/stops/Cchoues3", "https://tec.openplanner.team/stops/Cchoues4"], ["https://tec.openplanner.team/stops/H4ty313b", "https://tec.openplanner.team/stops/H4ty323a"], ["https://tec.openplanner.team/stops/H4bl104a", "https://tec.openplanner.team/stops/H4bl105b"], ["https://tec.openplanner.team/stops/Cfohopi1", "https://tec.openplanner.team/stops/Cfowall1"], ["https://tec.openplanner.team/stops/LDomoul1", "https://tec.openplanner.team/stops/LReeg--1"], ["https://tec.openplanner.team/stops/Crccarr2", "https://tec.openplanner.team/stops/Crclorc1"], ["https://tec.openplanner.team/stops/LHNgare2", "https://tec.openplanner.team/stops/LHNgend4"], ["https://tec.openplanner.team/stops/H1po133a", "https://tec.openplanner.team/stops/H1po154a"], ["https://tec.openplanner.team/stops/LPbchat1", "https://tec.openplanner.team/stops/LPbover1"], ["https://tec.openplanner.team/stops/N116ada", "https://tec.openplanner.team/stops/N116adb"], ["https://tec.openplanner.team/stops/Bllnfla1", "https://tec.openplanner.team/stops/Bllnfla2"], ["https://tec.openplanner.team/stops/NC14ama", "https://tec.openplanner.team/stops/NC14aoe"], ["https://tec.openplanner.team/stops/Lenclar1", "https://tec.openplanner.team/stops/Llmhalt1"], ["https://tec.openplanner.team/stops/LAYchal1", "https://tec.openplanner.team/stops/LAYcont2"], ["https://tec.openplanner.team/stops/H1ol142b", "https://tec.openplanner.team/stops/H1ol144b"], ["https://tec.openplanner.team/stops/LrEkreu2", "https://tec.openplanner.team/stops/LrEviel2"], ["https://tec.openplanner.team/stops/X597alb", "https://tec.openplanner.team/stops/X796agb"], ["https://tec.openplanner.team/stops/Lvcpost1", "https://tec.openplanner.team/stops/Lvcvesd*"], ["https://tec.openplanner.team/stops/Cgpleco1", "https://tec.openplanner.team/stops/Cgpmoul1"], ["https://tec.openplanner.team/stops/N557aib", "https://tec.openplanner.team/stops/N560adb"], ["https://tec.openplanner.team/stops/H1me115a", "https://tec.openplanner.team/stops/H1so131b"], ["https://tec.openplanner.team/stops/X901aua", "https://tec.openplanner.team/stops/X901aub"], ["https://tec.openplanner.team/stops/Bsdacab2", "https://tec.openplanner.team/stops/Bvlvpco1"], ["https://tec.openplanner.team/stops/X650afc", "https://tec.openplanner.team/stops/X650afd"], ["https://tec.openplanner.team/stops/X939aaa", "https://tec.openplanner.team/stops/X940aea"], ["https://tec.openplanner.team/stops/Cbbcent1", "https://tec.openplanner.team/stops/Cbblacb1"], ["https://tec.openplanner.team/stops/H1bo105a", "https://tec.openplanner.team/stops/H1bo105b"], ["https://tec.openplanner.team/stops/Cmehels1", "https://tec.openplanner.team/stops/Cmesncv1"], ["https://tec.openplanner.team/stops/Bbeubos1", "https://tec.openplanner.team/stops/N541aeb"], ["https://tec.openplanner.team/stops/N562aib", "https://tec.openplanner.team/stops/N562aya"], ["https://tec.openplanner.team/stops/Louetan2", "https://tec.openplanner.team/stops/Loutroi1"], ["https://tec.openplanner.team/stops/Bclglbu1", "https://tec.openplanner.team/stops/Bcrbast1"], ["https://tec.openplanner.team/stops/X902aga", "https://tec.openplanner.team/stops/X902ahb"], ["https://tec.openplanner.team/stops/H4fr388a", "https://tec.openplanner.team/stops/H4ka393b"], ["https://tec.openplanner.team/stops/Cchdrai1", "https://tec.openplanner.team/stops/Cchwate1"], ["https://tec.openplanner.team/stops/X623aaa", "https://tec.openplanner.team/stops/X623agb"], ["https://tec.openplanner.team/stops/H1mg109a", "https://tec.openplanner.team/stops/H2an109b"], ["https://tec.openplanner.team/stops/H1ag105a", "https://tec.openplanner.team/stops/H1ag105b"], ["https://tec.openplanner.team/stops/Blhumpo4", "https://tec.openplanner.team/stops/Blhutco4"], ["https://tec.openplanner.team/stops/LFEland2", "https://tec.openplanner.team/stops/LMYvill1"], ["https://tec.openplanner.team/stops/LPAmosa2", "https://tec.openplanner.team/stops/LWidepo2"], ["https://tec.openplanner.team/stops/LWahott2", "https://tec.openplanner.team/stops/LWazoni2"], ["https://tec.openplanner.team/stops/H2pe158b", "https://tec.openplanner.team/stops/H2re167b"], ["https://tec.openplanner.team/stops/Bmrsayw2", "https://tec.openplanner.team/stops/Bohnmon2"], ["https://tec.openplanner.team/stops/LAmeclu1", "https://tec.openplanner.team/stops/LATcorn1"], ["https://tec.openplanner.team/stops/H4ka182b", "https://tec.openplanner.team/stops/H4ka183b"], ["https://tec.openplanner.team/stops/X610aea", "https://tec.openplanner.team/stops/X610afa"], ["https://tec.openplanner.team/stops/X808aha", "https://tec.openplanner.team/stops/X808aka"], ["https://tec.openplanner.team/stops/Ccypn1", "https://tec.openplanner.team/stops/NH01aea"], ["https://tec.openplanner.team/stops/Lveharm2", "https://tec.openplanner.team/stops/Lvevict1"], ["https://tec.openplanner.team/stops/LaM266-1", "https://tec.openplanner.team/stops/LaMbull1"], ["https://tec.openplanner.team/stops/Cgxalli1", "https://tec.openplanner.team/stops/Cgxprad4"], ["https://tec.openplanner.team/stops/LMnlogi1", "https://tec.openplanner.team/stops/N222aea"], ["https://tec.openplanner.team/stops/LDOandr3", "https://tec.openplanner.team/stops/LDOandr4"], ["https://tec.openplanner.team/stops/Cjucopp2", "https://tec.openplanner.team/stops/Cjudevo2"], ["https://tec.openplanner.team/stops/N110afb", "https://tec.openplanner.team/stops/N113ada"], ["https://tec.openplanner.team/stops/LbAhenk2", "https://tec.openplanner.team/stops/LhLbalt2"], ["https://tec.openplanner.team/stops/X897aaa", "https://tec.openplanner.team/stops/X897aba"], ["https://tec.openplanner.team/stops/Cmyoasi2", "https://tec.openplanner.team/stops/Cmyrays2"], ["https://tec.openplanner.team/stops/LDOandr2", "https://tec.openplanner.team/stops/LDOeg--1"], ["https://tec.openplanner.team/stops/Cbfstry2", "https://tec.openplanner.team/stops/NC24aia"], ["https://tec.openplanner.team/stops/H4ce100a", "https://tec.openplanner.team/stops/H4mx119a"], ["https://tec.openplanner.team/stops/N505aaa", "https://tec.openplanner.team/stops/N505aeb"], ["https://tec.openplanner.team/stops/Cnagrro1", "https://tec.openplanner.team/stops/Cnaplha1"], ["https://tec.openplanner.team/stops/X901bbb", "https://tec.openplanner.team/stops/X922acb"], ["https://tec.openplanner.team/stops/H1do111b", "https://tec.openplanner.team/stops/H1do129b"], ["https://tec.openplanner.team/stops/LAVeg--2", "https://tec.openplanner.team/stops/LAVpequ2"], ["https://tec.openplanner.team/stops/LHTcerc1", "https://tec.openplanner.team/stops/LHTmonu2"], ["https://tec.openplanner.team/stops/LmIvale4", "https://tec.openplanner.team/stops/LvAschr1"], ["https://tec.openplanner.team/stops/H4hu119a", "https://tec.openplanner.team/stops/H4hu121a"], ["https://tec.openplanner.team/stops/LMalune3", "https://tec.openplanner.team/stops/LMalune4"], ["https://tec.openplanner.team/stops/N532acb", "https://tec.openplanner.team/stops/N533aga"], ["https://tec.openplanner.team/stops/LBYwez-2", "https://tec.openplanner.team/stops/LXHeg--2"], ["https://tec.openplanner.team/stops/H4os217b", "https://tec.openplanner.team/stops/H4os220a"], ["https://tec.openplanner.team/stops/LRGile-1", "https://tec.openplanner.team/stops/LRGile-2"], ["https://tec.openplanner.team/stops/H4vz368b", "https://tec.openplanner.team/stops/H4vz370a"], ["https://tec.openplanner.team/stops/LTaeg--2", "https://tec.openplanner.team/stops/LTaouch2"], ["https://tec.openplanner.team/stops/H4ef163a", "https://tec.openplanner.team/stops/H4ef165a"], ["https://tec.openplanner.team/stops/X923aha", "https://tec.openplanner.team/stops/X923aja"], ["https://tec.openplanner.team/stops/X636aka", "https://tec.openplanner.team/stops/X636bcb"], ["https://tec.openplanner.team/stops/Bjdssta1", "https://tec.openplanner.team/stops/Bjdssta2"], ["https://tec.openplanner.team/stops/X983ada", "https://tec.openplanner.team/stops/X983adb"], ["https://tec.openplanner.team/stops/Lsmtini1", "https://tec.openplanner.team/stops/Lsmtini2"], ["https://tec.openplanner.team/stops/LHNhv--1", "https://tec.openplanner.team/stops/LHNland1"], ["https://tec.openplanner.team/stops/Blig4br2", "https://tec.openplanner.team/stops/Bsomtpm1"], ["https://tec.openplanner.team/stops/Cvrchap1", "https://tec.openplanner.team/stops/Cvrfcho1"], ["https://tec.openplanner.team/stops/Bquegob2", "https://tec.openplanner.team/stops/Brebcgi1"], ["https://tec.openplanner.team/stops/LwSgeme2", "https://tec.openplanner.team/stops/LwSschw2"], ["https://tec.openplanner.team/stops/N155aib", "https://tec.openplanner.team/stops/N170aab"], ["https://tec.openplanner.team/stops/LAWaube1", "https://tec.openplanner.team/stops/LAWvold1"], ["https://tec.openplanner.team/stops/N244ata", "https://tec.openplanner.team/stops/N244ava"], ["https://tec.openplanner.team/stops/Llgauxc2", "https://tec.openplanner.team/stops/Llggee52"], ["https://tec.openplanner.team/stops/Csabrun2", "https://tec.openplanner.team/stops/Cvpsncb1"], ["https://tec.openplanner.team/stops/LlgR-Fr*", "https://tec.openplanner.team/stops/LlgR-Fr3"], ["https://tec.openplanner.team/stops/Bnivbpe3", "https://tec.openplanner.team/stops/Bptrvil1"], ["https://tec.openplanner.team/stops/Ccofayt1", "https://tec.openplanner.team/stops/Ccomott1"], ["https://tec.openplanner.team/stops/H4bf107a", "https://tec.openplanner.team/stops/H4bf109a"], ["https://tec.openplanner.team/stops/LHUgole2", "https://tec.openplanner.team/stops/LHUsauv4"], ["https://tec.openplanner.team/stops/H1ms277a", "https://tec.openplanner.team/stops/H1ms311a"], ["https://tec.openplanner.team/stops/LCvneuv5", "https://tec.openplanner.team/stops/LWblesp2"], ["https://tec.openplanner.team/stops/N513bhb", "https://tec.openplanner.team/stops/N521asd"], ["https://tec.openplanner.team/stops/H1hn208a", "https://tec.openplanner.team/stops/H1ms278a"], ["https://tec.openplanner.team/stops/Bnivfle2", "https://tec.openplanner.team/stops/Bnivver2"], ["https://tec.openplanner.team/stops/LBTnors1", "https://tec.openplanner.team/stops/LBTxhen1"], ["https://tec.openplanner.team/stops/Bperwil1", "https://tec.openplanner.team/stops/N519aac"], ["https://tec.openplanner.team/stops/X749ada", "https://tec.openplanner.team/stops/X749afb"], ["https://tec.openplanner.team/stops/N309acb", "https://tec.openplanner.team/stops/N350adb"], ["https://tec.openplanner.team/stops/LRReg--1", "https://tec.openplanner.team/stops/LRRpost1"], ["https://tec.openplanner.team/stops/X901aga", "https://tec.openplanner.team/stops/X901ama"], ["https://tec.openplanner.team/stops/Csedoua1", "https://tec.openplanner.team/stops/Cselibe2"], ["https://tec.openplanner.team/stops/LAYchal1", "https://tec.openplanner.team/stops/LAYgare1"], ["https://tec.openplanner.team/stops/N111aab", "https://tec.openplanner.team/stops/N111aeb"], ["https://tec.openplanner.team/stops/H1ha185a", "https://tec.openplanner.team/stops/H1ha190a"], ["https://tec.openplanner.team/stops/Crebien2", "https://tec.openplanner.team/stops/Crebien3"], ["https://tec.openplanner.team/stops/X713aib", "https://tec.openplanner.team/stops/X713alb"], ["https://tec.openplanner.team/stops/N527ada", "https://tec.openplanner.team/stops/N527aea"], ["https://tec.openplanner.team/stops/Clbbonn1", "https://tec.openplanner.team/stops/Clbbonn3"], ["https://tec.openplanner.team/stops/LSJgrae2", "https://tec.openplanner.team/stops/LSJlabe2"], ["https://tec.openplanner.team/stops/LAUberg1", "https://tec.openplanner.team/stops/LAUmerc2"], ["https://tec.openplanner.team/stops/Cctsold2", "https://tec.openplanner.team/stops/Cctvict1"], ["https://tec.openplanner.team/stops/Lenauln1", "https://tec.openplanner.team/stops/Lenauln2"], ["https://tec.openplanner.team/stops/X615agb", "https://tec.openplanner.team/stops/X615aha"], ["https://tec.openplanner.team/stops/H1ci104a", "https://tec.openplanner.team/stops/H1hn206a"], ["https://tec.openplanner.team/stops/H4eh100b", "https://tec.openplanner.team/stops/H4eh101a"], ["https://tec.openplanner.team/stops/Cli4bra1", "https://tec.openplanner.team/stops/Clibrun2"], ["https://tec.openplanner.team/stops/X610afa", "https://tec.openplanner.team/stops/X622aba"], ["https://tec.openplanner.team/stops/X615ava", "https://tec.openplanner.team/stops/X615bha"], ["https://tec.openplanner.team/stops/N542aha", "https://tec.openplanner.team/stops/N542aib"], ["https://tec.openplanner.team/stops/LCAcruc2", "https://tec.openplanner.team/stops/LTGvill1"], ["https://tec.openplanner.team/stops/LBapeup1", "https://tec.openplanner.team/stops/LLUadze2"], ["https://tec.openplanner.team/stops/Lghchap2", "https://tec.openplanner.team/stops/Lghomni2"], ["https://tec.openplanner.team/stops/N118aza", "https://tec.openplanner.team/stops/N118baa"], ["https://tec.openplanner.team/stops/LHAvall2", "https://tec.openplanner.team/stops/LVIvert1"], ["https://tec.openplanner.team/stops/Cvpcour1", "https://tec.openplanner.team/stops/Cvpcour2"], ["https://tec.openplanner.team/stops/H4og215b", "https://tec.openplanner.team/stops/H4to136a"], ["https://tec.openplanner.team/stops/Bblafab1", "https://tec.openplanner.team/stops/Bblatet2"], ["https://tec.openplanner.team/stops/H2sv212a", "https://tec.openplanner.team/stops/H2tr257a"], ["https://tec.openplanner.team/stops/H4co149b", "https://tec.openplanner.team/stops/H4co162a"], ["https://tec.openplanner.team/stops/X741aga", "https://tec.openplanner.team/stops/X741ala"], ["https://tec.openplanner.team/stops/H1wz169b", "https://tec.openplanner.team/stops/H3bi115b"], ["https://tec.openplanner.team/stops/Bborppa1", "https://tec.openplanner.team/stops/Bitrcen1"], ["https://tec.openplanner.team/stops/Lkithie1", "https://tec.openplanner.team/stops/Lstchas2"], ["https://tec.openplanner.team/stops/N229agb", "https://tec.openplanner.team/stops/N229aqb"], ["https://tec.openplanner.team/stops/X805aea", "https://tec.openplanner.team/stops/X807acb"], ["https://tec.openplanner.team/stops/Bboseco1", "https://tec.openplanner.team/stops/Bboseco2"], ["https://tec.openplanner.team/stops/N260afa", "https://tec.openplanner.team/stops/N260afb"], ["https://tec.openplanner.team/stops/LFPchat2", "https://tec.openplanner.team/stops/LFProt-2"], ["https://tec.openplanner.team/stops/Cgzchab3", "https://tec.openplanner.team/stops/Cgzfarc2"], ["https://tec.openplanner.team/stops/H4ef110a", "https://tec.openplanner.team/stops/H4ef113b"], ["https://tec.openplanner.team/stops/N513aoa", "https://tec.openplanner.team/stops/N513apb"], ["https://tec.openplanner.team/stops/N576aka", "https://tec.openplanner.team/stops/N576ala"], ["https://tec.openplanner.team/stops/H1lm105a", "https://tec.openplanner.team/stops/H1to155b"], ["https://tec.openplanner.team/stops/LMgberw1", "https://tec.openplanner.team/stops/LVIferm2"], ["https://tec.openplanner.team/stops/LVAbuss1", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://tec.openplanner.team/stops/H2ll173b", "https://tec.openplanner.team/stops/H2ll193b"], ["https://tec.openplanner.team/stops/LMIpast2", "https://tec.openplanner.team/stops/LMIpatr4"], ["https://tec.openplanner.team/stops/X641ara", "https://tec.openplanner.team/stops/X641arb"], ["https://tec.openplanner.team/stops/X747aca", "https://tec.openplanner.team/stops/X747ala"], ["https://tec.openplanner.team/stops/X839ada", "https://tec.openplanner.team/stops/X839agb"], ["https://tec.openplanner.team/stops/N311aec", "https://tec.openplanner.team/stops/N311afa"], ["https://tec.openplanner.team/stops/LHUfali1", "https://tec.openplanner.team/stops/LHUfali2"], ["https://tec.openplanner.team/stops/Bwatlbs1", "https://tec.openplanner.team/stops/Bwatlbs2"], ["https://tec.openplanner.team/stops/H4te248b", "https://tec.openplanner.team/stops/H4te260b"], ["https://tec.openplanner.team/stops/N562aka", "https://tec.openplanner.team/stops/N562bwb"], ["https://tec.openplanner.team/stops/H2ec108b", "https://tec.openplanner.team/stops/H2ec110a"], ["https://tec.openplanner.team/stops/Cfcbosq2", "https://tec.openplanner.team/stops/Cfcsaut3"], ["https://tec.openplanner.team/stops/X746aaa", "https://tec.openplanner.team/stops/X747ajb"], ["https://tec.openplanner.team/stops/LLelava3", "https://tec.openplanner.team/stops/X547acb"], ["https://tec.openplanner.team/stops/X657aba", "https://tec.openplanner.team/stops/X657ada"], ["https://tec.openplanner.team/stops/Cmmcime1", "https://tec.openplanner.team/stops/Cmmmarb2"], ["https://tec.openplanner.team/stops/N510adb", "https://tec.openplanner.team/stops/N513bib"], ["https://tec.openplanner.team/stops/H4co107b", "https://tec.openplanner.team/stops/H4co144b"], ["https://tec.openplanner.team/stops/N113acb", "https://tec.openplanner.team/stops/N113adb"], ["https://tec.openplanner.team/stops/Bsgimor2", "https://tec.openplanner.team/stops/Bsgipmo1"], ["https://tec.openplanner.team/stops/Llglair2", "https://tec.openplanner.team/stops/Llgrema2"], ["https://tec.openplanner.team/stops/H1nm138a", "https://tec.openplanner.team/stops/H1nm139a"], ["https://tec.openplanner.team/stops/X614aca", "https://tec.openplanner.team/stops/X614adb"], ["https://tec.openplanner.team/stops/X897aga", "https://tec.openplanner.team/stops/X897agb"], ["https://tec.openplanner.team/stops/N503aea", "https://tec.openplanner.team/stops/N503aga"], ["https://tec.openplanner.team/stops/X623aca", "https://tec.openplanner.team/stops/X623acc"], ["https://tec.openplanner.team/stops/H1wg126a", "https://tec.openplanner.team/stops/H1wg126b"], ["https://tec.openplanner.team/stops/Llglill1", "https://tec.openplanner.team/stops/Llglill2"], ["https://tec.openplanner.team/stops/Cvtgsar2", "https://tec.openplanner.team/stops/Cvthoeu2"], ["https://tec.openplanner.team/stops/LCvneuv4", "https://tec.openplanner.team/stops/LCvoufn2"], ["https://tec.openplanner.team/stops/LHDlibi2", "https://tec.openplanner.team/stops/LLmcheg4"], ["https://tec.openplanner.team/stops/H4le127a", "https://tec.openplanner.team/stops/H4ry140b"], ["https://tec.openplanner.team/stops/N161aaa", "https://tec.openplanner.team/stops/N161afb"], ["https://tec.openplanner.team/stops/LRffroi1", "https://tec.openplanner.team/stops/LRffroi2"], ["https://tec.openplanner.team/stops/X955aab", "https://tec.openplanner.team/stops/X955abb"], ["https://tec.openplanner.team/stops/LwYbruc1", "https://tec.openplanner.team/stops/LwYbruc4"], ["https://tec.openplanner.team/stops/Cjuledo2", "https://tec.openplanner.team/stops/Cjuspin2"], ["https://tec.openplanner.team/stops/H4ft135c", "https://tec.openplanner.team/stops/H4ta118b"], ["https://tec.openplanner.team/stops/Cmacreu1", "https://tec.openplanner.team/stops/Cmmn1171"], ["https://tec.openplanner.team/stops/Ladjaur2", "https://tec.openplanner.team/stops/Ladpire2"], ["https://tec.openplanner.team/stops/N117asb", "https://tec.openplanner.team/stops/N571agb"], ["https://tec.openplanner.team/stops/Cna4che1", "https://tec.openplanner.team/stops/Cnapetr2"], ["https://tec.openplanner.team/stops/LLmpt--1", "https://tec.openplanner.team/stops/LLmvand2"], ["https://tec.openplanner.team/stops/N576aba", "https://tec.openplanner.team/stops/N576akd"], ["https://tec.openplanner.team/stops/H1le125b", "https://tec.openplanner.team/stops/H4re226a"], ["https://tec.openplanner.team/stops/H2hp116a", "https://tec.openplanner.team/stops/H2hp125a"], ["https://tec.openplanner.team/stops/N501dpb", "https://tec.openplanner.team/stops/N501erb"], ["https://tec.openplanner.team/stops/X614afb", "https://tec.openplanner.team/stops/X615bhb"], ["https://tec.openplanner.team/stops/Cmychap2", "https://tec.openplanner.team/stops/Cmypast2"], ["https://tec.openplanner.team/stops/Llgancd2", "https://tec.openplanner.team/stops/Llgmont1"], ["https://tec.openplanner.team/stops/H4bn100a", "https://tec.openplanner.team/stops/H4pi135b"], ["https://tec.openplanner.team/stops/Lvecase2", "https://tec.openplanner.team/stops/Lvecite2"], ["https://tec.openplanner.team/stops/N533alb", "https://tec.openplanner.team/stops/N533ana"], ["https://tec.openplanner.team/stops/LAWbrou2", "https://tec.openplanner.team/stops/LBIpont2"], ["https://tec.openplanner.team/stops/X982aqc", "https://tec.openplanner.team/stops/X982aya"], ["https://tec.openplanner.team/stops/Lmldama1", "https://tec.openplanner.team/stops/Lmleg--1"], ["https://tec.openplanner.team/stops/N531adb", "https://tec.openplanner.team/stops/N531amb"], ["https://tec.openplanner.team/stops/Crewaba1", "https://tec.openplanner.team/stops/Crewaha2"], ["https://tec.openplanner.team/stops/H1ms309a", "https://tec.openplanner.team/stops/H1ms309b"], ["https://tec.openplanner.team/stops/Cfaplma1", "https://tec.openplanner.team/stops/Cfaysle1"], ["https://tec.openplanner.team/stops/LBLfoxh2", "https://tec.openplanner.team/stops/LBLgobc2"], ["https://tec.openplanner.team/stops/H4cp103b", "https://tec.openplanner.team/stops/H4cw106a"], ["https://tec.openplanner.team/stops/N565aca", "https://tec.openplanner.team/stops/N565ada"], ["https://tec.openplanner.team/stops/N506bba", "https://tec.openplanner.team/stops/N506bda"], ["https://tec.openplanner.team/stops/X896aga", "https://tec.openplanner.team/stops/X898aga"], ["https://tec.openplanner.team/stops/LTEziho1", "https://tec.openplanner.team/stops/LTEziho2"], ["https://tec.openplanner.team/stops/X801bga", "https://tec.openplanner.team/stops/X801bha"], ["https://tec.openplanner.team/stops/Lgrmc--1", "https://tec.openplanner.team/stops/Lgrside1"], ["https://tec.openplanner.team/stops/Crcpla2", "https://tec.openplanner.team/stops/Crcplac3"], ["https://tec.openplanner.team/stops/X986aka", "https://tec.openplanner.team/stops/X986akb"], ["https://tec.openplanner.team/stops/X607aia", "https://tec.openplanner.team/stops/X607aka"], ["https://tec.openplanner.team/stops/H1mk116a", "https://tec.openplanner.team/stops/H1mk116b"], ["https://tec.openplanner.team/stops/H4de113a", "https://tec.openplanner.team/stops/H4wt159b"], ["https://tec.openplanner.team/stops/X346akb", "https://tec.openplanner.team/stops/X346alb"], ["https://tec.openplanner.team/stops/H4fo119a", "https://tec.openplanner.team/stops/H4ga166a"], ["https://tec.openplanner.team/stops/X818apb", "https://tec.openplanner.team/stops/X818ara"], ["https://tec.openplanner.team/stops/H1by102a", "https://tec.openplanner.team/stops/H1by103a"], ["https://tec.openplanner.team/stops/LaRkape1", "https://tec.openplanner.team/stops/LmSluxh2"], ["https://tec.openplanner.team/stops/Cmmjami1", "https://tec.openplanner.team/stops/Cmmjami4"], ["https://tec.openplanner.team/stops/LROhael1", "https://tec.openplanner.team/stops/LROrtba2"], ["https://tec.openplanner.team/stops/LESevie1", "https://tec.openplanner.team/stops/LFNlato1"], ["https://tec.openplanner.team/stops/H4ag102a", "https://tec.openplanner.team/stops/H4ag102b"], ["https://tec.openplanner.team/stops/Clrmarl1", "https://tec.openplanner.team/stops/CMpara1"], ["https://tec.openplanner.team/stops/Llghaut1", "https://tec.openplanner.team/stops/Llgwesp2"], ["https://tec.openplanner.team/stops/LFrec--1", "https://tec.openplanner.team/stops/LFreg--1"], ["https://tec.openplanner.team/stops/Loubonc2", "https://tec.openplanner.team/stops/Lourose4"], ["https://tec.openplanner.team/stops/LHUecte1", "https://tec.openplanner.team/stops/LHUpost1"], ["https://tec.openplanner.team/stops/LMheg--1", "https://tec.openplanner.team/stops/Lprceri2"], ["https://tec.openplanner.team/stops/H1ms272b", "https://tec.openplanner.team/stops/H1ms272c"], ["https://tec.openplanner.team/stops/N501kxb", "https://tec.openplanner.team/stops/N501mta"], ["https://tec.openplanner.team/stops/LiV19--2", "https://tec.openplanner.team/stops/LiVgirk2"], ["https://tec.openplanner.team/stops/Bbxlfro1", "https://tec.openplanner.team/stops/Bettgle2"], ["https://tec.openplanner.team/stops/H1te176a", "https://tec.openplanner.team/stops/H1te177a"], ["https://tec.openplanner.team/stops/H4bc101a", "https://tec.openplanner.team/stops/H4bc102a"], ["https://tec.openplanner.team/stops/H4te250a", "https://tec.openplanner.team/stops/H4te257a"], ["https://tec.openplanner.team/stops/Cacscav1", "https://tec.openplanner.team/stops/Cjojonc1"], ["https://tec.openplanner.team/stops/N229aca", "https://tec.openplanner.team/stops/N229ana"], ["https://tec.openplanner.team/stops/H4pe124b", "https://tec.openplanner.team/stops/H4pe125a"], ["https://tec.openplanner.team/stops/H1fv102a", "https://tec.openplanner.team/stops/H1ls129a"], ["https://tec.openplanner.team/stops/N501ckb", "https://tec.openplanner.team/stops/N501jla"], ["https://tec.openplanner.team/stops/X904aga", "https://tec.openplanner.team/stops/X943aga"], ["https://tec.openplanner.team/stops/NC44aga", "https://tec.openplanner.team/stops/NC44agb"], ["https://tec.openplanner.team/stops/N101arb", "https://tec.openplanner.team/stops/N145aea"], ["https://tec.openplanner.team/stops/LHUalbe2", "https://tec.openplanner.team/stops/NL80afa"], ["https://tec.openplanner.team/stops/Bnilcha2", "https://tec.openplanner.team/stops/Bniltri2"], ["https://tec.openplanner.team/stops/Boffegl1", "https://tec.openplanner.team/stops/Bramcom1"], ["https://tec.openplanner.team/stops/H3lr113b", "https://tec.openplanner.team/stops/H3lr121b"], ["https://tec.openplanner.team/stops/N301aca", "https://tec.openplanner.team/stops/N301adb"], ["https://tec.openplanner.team/stops/LREgare1", "https://tec.openplanner.team/stops/LREgrot2"], ["https://tec.openplanner.team/stops/Lsmcime1", "https://tec.openplanner.team/stops/Lsmrcim2"], ["https://tec.openplanner.team/stops/Llgatla2", "https://tec.openplanner.team/stops/Llginte2"], ["https://tec.openplanner.team/stops/N519ama", "https://tec.openplanner.team/stops/N520aeb"], ["https://tec.openplanner.team/stops/LHueg--1", "https://tec.openplanner.team/stops/LHumoul2"], ["https://tec.openplanner.team/stops/H4bl104a", "https://tec.openplanner.team/stops/H4ha169a"], ["https://tec.openplanner.team/stops/H1sy141a", "https://tec.openplanner.team/stops/H1to153c"], ["https://tec.openplanner.team/stops/H4ar104a", "https://tec.openplanner.team/stops/H4pl136a"], ["https://tec.openplanner.team/stops/N135aab", "https://tec.openplanner.team/stops/N135aed"], ["https://tec.openplanner.team/stops/H1ho122d", "https://tec.openplanner.team/stops/H1ho143a"], ["https://tec.openplanner.team/stops/X774agb", "https://tec.openplanner.team/stops/X775aba"], ["https://tec.openplanner.team/stops/Cgobruy1", "https://tec.openplanner.team/stops/CMfbru1"], ["https://tec.openplanner.team/stops/LHumoul2", "https://tec.openplanner.team/stops/LMfpeni*"], ["https://tec.openplanner.team/stops/X886aba", "https://tec.openplanner.team/stops/X886acb"], ["https://tec.openplanner.team/stops/LeUbell*", "https://tec.openplanner.team/stops/LeUvoss1"], ["https://tec.openplanner.team/stops/LATdony1", "https://tec.openplanner.team/stops/LATgill1"], ["https://tec.openplanner.team/stops/Cli4bra2", "https://tec.openplanner.team/stops/Clulidl1"], ["https://tec.openplanner.team/stops/H4mo146b", "https://tec.openplanner.team/stops/H4mo187a"], ["https://tec.openplanner.team/stops/H1bd101b", "https://tec.openplanner.team/stops/H1ol140b"], ["https://tec.openplanner.team/stops/Lvcchau1", "https://tec.openplanner.team/stops/Lvcsapi1"], ["https://tec.openplanner.team/stops/Lbhpeti1", "https://tec.openplanner.team/stops/Lroeg--1"], ["https://tec.openplanner.team/stops/Ltipass1", "https://tec.openplanner.team/stops/Ltipass2"], ["https://tec.openplanner.team/stops/Llgbavi0", "https://tec.openplanner.team/stops/Llgbavi1"], ["https://tec.openplanner.team/stops/N117ama", "https://tec.openplanner.team/stops/N117ara"], ["https://tec.openplanner.team/stops/LFFmonu1", "https://tec.openplanner.team/stops/LFFpier1"], ["https://tec.openplanner.team/stops/H1so141a", "https://tec.openplanner.team/stops/H1so141b"], ["https://tec.openplanner.team/stops/X902ada", "https://tec.openplanner.team/stops/X999aba"], ["https://tec.openplanner.team/stops/X792aba", "https://tec.openplanner.team/stops/X793ana"], ["https://tec.openplanner.team/stops/Lghmeun1", "https://tec.openplanner.team/stops/Ljetout4"], ["https://tec.openplanner.team/stops/H3lr112b", "https://tec.openplanner.team/stops/H3lr121a"], ["https://tec.openplanner.team/stops/H1on128d", "https://tec.openplanner.team/stops/H1ro136b"], ["https://tec.openplanner.team/stops/LbO52--2", "https://tec.openplanner.team/stops/LbOhoff2"], ["https://tec.openplanner.team/stops/Lpeeg--1", "https://tec.openplanner.team/stops/Lpeeg--2"], ["https://tec.openplanner.team/stops/Llgnico2", "https://tec.openplanner.team/stops/LlgnicT1"], ["https://tec.openplanner.team/stops/X812aaa", "https://tec.openplanner.team/stops/X812asa"], ["https://tec.openplanner.team/stops/Cfrchfe1", "https://tec.openplanner.team/stops/Cfrgare3"], ["https://tec.openplanner.team/stops/Balsbeg1", "https://tec.openplanner.team/stops/Balswsa2"], ["https://tec.openplanner.team/stops/Cgplhoi2", "https://tec.openplanner.team/stops/Cgplutt1"], ["https://tec.openplanner.team/stops/H4mo162a", "https://tec.openplanner.team/stops/H4mo174a"], ["https://tec.openplanner.team/stops/X636bbb", "https://tec.openplanner.team/stops/X636beb"], ["https://tec.openplanner.team/stops/X723acb", "https://tec.openplanner.team/stops/X723alb"], ["https://tec.openplanner.team/stops/Llgangl2", "https://tec.openplanner.team/stops/Llghoch1"], ["https://tec.openplanner.team/stops/Cmaleri1", "https://tec.openplanner.team/stops/Cmmplac3"], ["https://tec.openplanner.team/stops/H1hv132a", "https://tec.openplanner.team/stops/H1hv132b"], ["https://tec.openplanner.team/stops/H5el101b", "https://tec.openplanner.team/stops/H5el110a"], ["https://tec.openplanner.team/stops/N340afa", "https://tec.openplanner.team/stops/N340afb"], ["https://tec.openplanner.team/stops/LOTdelv1", "https://tec.openplanner.team/stops/LVlplan1"], ["https://tec.openplanner.team/stops/NL80aca", "https://tec.openplanner.team/stops/NL80acb"], ["https://tec.openplanner.team/stops/LMOelva1", "https://tec.openplanner.team/stops/LMOelva2"], ["https://tec.openplanner.team/stops/Bcrbrpb1", "https://tec.openplanner.team/stops/Bcrbrpb2"], ["https://tec.openplanner.team/stops/LThbatt1", "https://tec.openplanner.team/stops/LThsere1"], ["https://tec.openplanner.team/stops/N202aaa", "https://tec.openplanner.team/stops/N202aab"], ["https://tec.openplanner.team/stops/X646aba", "https://tec.openplanner.team/stops/X646abb"], ["https://tec.openplanner.team/stops/X659aba", "https://tec.openplanner.team/stops/X659ayb"], ["https://tec.openplanner.team/stops/Bgzdcen2", "https://tec.openplanner.team/stops/Bgzddub1"], ["https://tec.openplanner.team/stops/Bolgfon1", "https://tec.openplanner.team/stops/Bolgsha1"], ["https://tec.openplanner.team/stops/N132aaa", "https://tec.openplanner.team/stops/N132afa"], ["https://tec.openplanner.team/stops/Blmlmco1", "https://tec.openplanner.team/stops/Blmlqlo2"], ["https://tec.openplanner.team/stops/LAUjean1", "https://tec.openplanner.team/stops/LSJlabe1"], ["https://tec.openplanner.team/stops/H1er107a", "https://tec.openplanner.team/stops/H1er110b"], ["https://tec.openplanner.team/stops/Lanfran4", "https://tec.openplanner.team/stops/Lansarm2"], ["https://tec.openplanner.team/stops/Crocona2", "https://tec.openplanner.team/stops/Croplom2"], ["https://tec.openplanner.team/stops/N501iea", "https://tec.openplanner.team/stops/N501ieb"], ["https://tec.openplanner.team/stops/Cmyfoym1", "https://tec.openplanner.team/stops/Cmyfoym2"], ["https://tec.openplanner.team/stops/Lromc--1", "https://tec.openplanner.team/stops/Lromc--2"], ["https://tec.openplanner.team/stops/X672acb", "https://tec.openplanner.team/stops/X672aka"], ["https://tec.openplanner.team/stops/H4lh161a", "https://tec.openplanner.team/stops/H5el114b"], ["https://tec.openplanner.team/stops/H4hq131b", "https://tec.openplanner.team/stops/H4th139a"], ["https://tec.openplanner.team/stops/Blhulor1", "https://tec.openplanner.team/stops/Blhulor2"], ["https://tec.openplanner.team/stops/N584aqa", "https://tec.openplanner.team/stops/N584aqb"], ["https://tec.openplanner.team/stops/Cgzmira1", "https://tec.openplanner.team/stops/Cgzmira2"], ["https://tec.openplanner.team/stops/H2hg147b", "https://tec.openplanner.team/stops/H2hg157a"], ["https://tec.openplanner.team/stops/LCxchal1", "https://tec.openplanner.team/stops/LCxchal2"], ["https://tec.openplanner.team/stops/Cladura4", "https://tec.openplanner.team/stops/NC23afa"], ["https://tec.openplanner.team/stops/LHScite1", "https://tec.openplanner.team/stops/LHSfexh2"], ["https://tec.openplanner.team/stops/Cfobriq2", "https://tec.openplanner.team/stops/Cfogaul2"], ["https://tec.openplanner.team/stops/H1je211b", "https://tec.openplanner.team/stops/H1je369a"], ["https://tec.openplanner.team/stops/X740abd", "https://tec.openplanner.team/stops/X985adb"], ["https://tec.openplanner.team/stops/LWOrout2", "https://tec.openplanner.team/stops/LWOwa161"], ["https://tec.openplanner.team/stops/LMAgare*", "https://tec.openplanner.team/stops/LMApl--1"], ["https://tec.openplanner.team/stops/LFdeg--4", "https://tec.openplanner.team/stops/LLMfond1"], ["https://tec.openplanner.team/stops/N579aaa", "https://tec.openplanner.team/stops/N580aab"], ["https://tec.openplanner.team/stops/Lprmc--1", "https://tec.openplanner.team/stops/Lprmc--2"], ["https://tec.openplanner.team/stops/X910aia", "https://tec.openplanner.team/stops/X910ajb"], ["https://tec.openplanner.team/stops/H1vb142b", "https://tec.openplanner.team/stops/H1vb148b"], ["https://tec.openplanner.team/stops/LHegame1", "https://tec.openplanner.team/stops/LOUbleu2"], ["https://tec.openplanner.team/stops/LAWdefu4", "https://tec.openplanner.team/stops/LAWeg--2"], ["https://tec.openplanner.team/stops/Llgstev2", "https://tec.openplanner.team/stops/Llgvalu1"], ["https://tec.openplanner.team/stops/Bbxlmid1", "https://tec.openplanner.team/stops/Bbxlmid4"], ["https://tec.openplanner.team/stops/N551ara", "https://tec.openplanner.team/stops/N551arb"], ["https://tec.openplanner.team/stops/H4wu375a", "https://tec.openplanner.team/stops/H4wu420a"], ["https://tec.openplanner.team/stops/X644aba", "https://tec.openplanner.team/stops/X644abb"], ["https://tec.openplanner.team/stops/N501cga", "https://tec.openplanner.team/stops/N501cia"], ["https://tec.openplanner.team/stops/X614aaa", "https://tec.openplanner.team/stops/X614arb"], ["https://tec.openplanner.team/stops/LBEfagn1", "https://tec.openplanner.team/stops/LBEtroo1"], ["https://tec.openplanner.team/stops/H1si157a", "https://tec.openplanner.team/stops/H1si157b"], ["https://tec.openplanner.team/stops/NL81agb", "https://tec.openplanner.team/stops/NL81aha"], ["https://tec.openplanner.team/stops/X602aob", "https://tec.openplanner.team/stops/X653aca"], ["https://tec.openplanner.team/stops/Bvirhsa1", "https://tec.openplanner.team/stops/Bvirmav2"], ["https://tec.openplanner.team/stops/N501kcb", "https://tec.openplanner.team/stops/N501lfb"], ["https://tec.openplanner.team/stops/LNChock1", "https://tec.openplanner.team/stops/LRachen*"], ["https://tec.openplanner.team/stops/Cfrplac1", "https://tec.openplanner.team/stops/Cfrplac6"], ["https://tec.openplanner.team/stops/H1hh110a", "https://tec.openplanner.team/stops/H1hh111b"], ["https://tec.openplanner.team/stops/Ctrplac1", "https://tec.openplanner.team/stops/Ctrrpla4"], ["https://tec.openplanner.team/stops/H1by101a", "https://tec.openplanner.team/stops/H1by107b"], ["https://tec.openplanner.team/stops/Cgzvivi2", "https://tec.openplanner.team/stops/Ctuosso1"], ["https://tec.openplanner.team/stops/H1bo103b", "https://tec.openplanner.team/stops/H1bo112a"], ["https://tec.openplanner.team/stops/H4an105b", "https://tec.openplanner.team/stops/H4rs119a"], ["https://tec.openplanner.team/stops/X912aba", "https://tec.openplanner.team/stops/X912adb"], ["https://tec.openplanner.team/stops/X641aua", "https://tec.openplanner.team/stops/X641azb"], ["https://tec.openplanner.team/stops/X669aga", "https://tec.openplanner.team/stops/X672afb"], ["https://tec.openplanner.team/stops/N241afb", "https://tec.openplanner.team/stops/N270aab"], ["https://tec.openplanner.team/stops/H2ha137a", "https://tec.openplanner.team/stops/H2hg153a"], ["https://tec.openplanner.team/stops/X888acb", "https://tec.openplanner.team/stops/X897afa"], ["https://tec.openplanner.team/stops/N501kuc", "https://tec.openplanner.team/stops/N501lna"], ["https://tec.openplanner.team/stops/Bcseaba1", "https://tec.openplanner.team/stops/Bmoufil2"], ["https://tec.openplanner.team/stops/N136aea", "https://tec.openplanner.team/stops/N138aia"], ["https://tec.openplanner.team/stops/H4ag107b", "https://tec.openplanner.team/stops/H4pe128b"], ["https://tec.openplanner.team/stops/Cmymaco1", "https://tec.openplanner.team/stops/Cmywarc2"], ["https://tec.openplanner.team/stops/LAYsupe1", "https://tec.openplanner.team/stops/LREairp1"], ["https://tec.openplanner.team/stops/Cmlhubi1", "https://tec.openplanner.team/stops/Cmlhubi2"], ["https://tec.openplanner.team/stops/NL81afb", "https://tec.openplanner.team/stops/NL81agb"], ["https://tec.openplanner.team/stops/N343aab", "https://tec.openplanner.team/stops/X344acb"], ["https://tec.openplanner.team/stops/X839abc", "https://tec.openplanner.team/stops/X839acb"], ["https://tec.openplanner.team/stops/H2fa106a", "https://tec.openplanner.team/stops/H2fa109a"], ["https://tec.openplanner.team/stops/Crewatb1", "https://tec.openplanner.team/stops/Crewath1"], ["https://tec.openplanner.team/stops/Lpegole1", "https://tec.openplanner.team/stops/Lpemata2"], ["https://tec.openplanner.team/stops/Lsebuil2", "https://tec.openplanner.team/stops/Lsefive1"], ["https://tec.openplanner.team/stops/H1gh143a", "https://tec.openplanner.team/stops/H1hh110b"], ["https://tec.openplanner.team/stops/LhM07--1", "https://tec.openplanner.team/stops/LmCkirc2"], ["https://tec.openplanner.team/stops/N533anb", "https://tec.openplanner.team/stops/N533apa"], ["https://tec.openplanner.team/stops/H4bi100b", "https://tec.openplanner.team/stops/H4pq114a"], ["https://tec.openplanner.team/stops/N571abb", "https://tec.openplanner.team/stops/N571acb"], ["https://tec.openplanner.team/stops/LFFchal1", "https://tec.openplanner.team/stops/LFFmonu1"], ["https://tec.openplanner.team/stops/LBslama2", "https://tec.openplanner.team/stops/NL72adb"], ["https://tec.openplanner.team/stops/Bbchmai1", "https://tec.openplanner.team/stops/Bbchmin2"], ["https://tec.openplanner.team/stops/H5at127a", "https://tec.openplanner.team/stops/H5at139a"], ["https://tec.openplanner.team/stops/H4br110a", "https://tec.openplanner.team/stops/H4br111a"], ["https://tec.openplanner.team/stops/LhPhale2", "https://tec.openplanner.team/stops/LvAwere2"], ["https://tec.openplanner.team/stops/LHTcarr2", "https://tec.openplanner.team/stops/LHTptha4"], ["https://tec.openplanner.team/stops/N501hxa", "https://tec.openplanner.team/stops/N501inb"], ["https://tec.openplanner.team/stops/LBTwauc2", "https://tec.openplanner.team/stops/LLM4rou4"], ["https://tec.openplanner.team/stops/X601ccc", "https://tec.openplanner.team/stops/X602aha"], ["https://tec.openplanner.team/stops/LSZpiro1", "https://tec.openplanner.team/stops/LSZpiro2"], ["https://tec.openplanner.team/stops/H5st163b", "https://tec.openplanner.team/stops/H5st169b"], ["https://tec.openplanner.team/stops/N501beb", "https://tec.openplanner.team/stops/N501ncb"], ["https://tec.openplanner.team/stops/X681afa", "https://tec.openplanner.team/stops/X687aia"], ["https://tec.openplanner.team/stops/Lhrferr1", "https://tec.openplanner.team/stops/Lhrlaix1"], ["https://tec.openplanner.team/stops/H4hx117a", "https://tec.openplanner.team/stops/H4hx122a"], ["https://tec.openplanner.team/stops/N501bka", "https://tec.openplanner.team/stops/N501bqb"], ["https://tec.openplanner.team/stops/Cchtram2", "https://tec.openplanner.team/stops/Cchvil1"], ["https://tec.openplanner.team/stops/LmR50--1", "https://tec.openplanner.team/stops/LmRh%C3%B6fe1"], ["https://tec.openplanner.team/stops/H5el114a", "https://tec.openplanner.team/stops/H5el116a"], ["https://tec.openplanner.team/stops/N519aob", "https://tec.openplanner.team/stops/N519apb"], ["https://tec.openplanner.team/stops/X775aba", "https://tec.openplanner.team/stops/X775aca"], ["https://tec.openplanner.team/stops/H1le117a", "https://tec.openplanner.team/stops/H1le120a"], ["https://tec.openplanner.team/stops/Bdvmalo2", "https://tec.openplanner.team/stops/Bdvmcbo1"], ["https://tec.openplanner.team/stops/X804awb", "https://tec.openplanner.team/stops/X804bga"], ["https://tec.openplanner.team/stops/X769acb", "https://tec.openplanner.team/stops/X769aob"], ["https://tec.openplanner.team/stops/Cvsbois1", "https://tec.openplanner.team/stops/Cvsbois2"], ["https://tec.openplanner.team/stops/X901abb", "https://tec.openplanner.team/stops/X901acb"], ["https://tec.openplanner.team/stops/Bauddel2", "https://tec.openplanner.team/stops/Baudvdr1"], ["https://tec.openplanner.team/stops/N528aca", "https://tec.openplanner.team/stops/N528ada"], ["https://tec.openplanner.team/stops/Cfmchau1", "https://tec.openplanner.team/stops/Cfmtrie1"], ["https://tec.openplanner.team/stops/Cacecol2", "https://tec.openplanner.team/stops/Cacgare1"], ["https://tec.openplanner.team/stops/Bniv4co1", "https://tec.openplanner.team/stops/Bnivrwi2"], ["https://tec.openplanner.team/stops/N260aaa", "https://tec.openplanner.team/stops/N260aab"], ["https://tec.openplanner.team/stops/Lprmana1", "https://tec.openplanner.team/stops/Lprmana5"], ["https://tec.openplanner.team/stops/LAWcite4", "https://tec.openplanner.team/stops/LAWvold1"], ["https://tec.openplanner.team/stops/X908aaa", "https://tec.openplanner.team/stops/X955adb"], ["https://tec.openplanner.team/stops/Cfbcal2", "https://tec.openplanner.team/stops/Cfbegli1"], ["https://tec.openplanner.team/stops/LhSkape1", "https://tec.openplanner.team/stops/LwAschu1"], ["https://tec.openplanner.team/stops/Bovepla1", "https://tec.openplanner.team/stops/Bovevri2"], ["https://tec.openplanner.team/stops/Bjodcar2", "https://tec.openplanner.team/stops/Bsjgmil1"], ["https://tec.openplanner.team/stops/LSChane2", "https://tec.openplanner.team/stops/LVMcent1"], ["https://tec.openplanner.team/stops/LROcent1", "https://tec.openplanner.team/stops/LROchap1"], ["https://tec.openplanner.team/stops/H4fr145b", "https://tec.openplanner.team/stops/H4ma420a"], ["https://tec.openplanner.team/stops/H5at123a", "https://tec.openplanner.team/stops/H5at124a"], ["https://tec.openplanner.team/stops/X953aca", "https://tec.openplanner.team/stops/X953afb"], ["https://tec.openplanner.team/stops/NL74aaa", "https://tec.openplanner.team/stops/NL75aba"], ["https://tec.openplanner.team/stops/H4av106c", "https://tec.openplanner.team/stops/H4av106d"], ["https://tec.openplanner.team/stops/LmNha152", "https://tec.openplanner.team/stops/LmNmerl2"], ["https://tec.openplanner.team/stops/Bcrnvic1", "https://tec.openplanner.team/stops/Bcrnvic2"], ["https://tec.openplanner.team/stops/X370acb", "https://tec.openplanner.team/stops/X850ajb"], ["https://tec.openplanner.team/stops/X910aeb", "https://tec.openplanner.team/stops/X911akb"], ["https://tec.openplanner.team/stops/LEScarr2", "https://tec.openplanner.team/stops/LESmecp*"], ["https://tec.openplanner.team/stops/Bnetcor1", "https://tec.openplanner.team/stops/Bnetrtb1"], ["https://tec.openplanner.team/stops/Lghgend1", "https://tec.openplanner.team/stops/Lghgend2"], ["https://tec.openplanner.team/stops/Cfrcoop1", "https://tec.openplanner.team/stops/Cfrcoop3"], ["https://tec.openplanner.team/stops/N506ata", "https://tec.openplanner.team/stops/N506ava"], ["https://tec.openplanner.team/stops/N515ajb", "https://tec.openplanner.team/stops/N515aua"], ["https://tec.openplanner.team/stops/H1wl124a", "https://tec.openplanner.team/stops/H1wl126a"], ["https://tec.openplanner.team/stops/X902aya", "https://tec.openplanner.team/stops/X902baa"], ["https://tec.openplanner.team/stops/X576aba", "https://tec.openplanner.team/stops/X576aga"], ["https://tec.openplanner.team/stops/LBIbois1", "https://tec.openplanner.team/stops/LBIbois2"], ["https://tec.openplanner.team/stops/Ccodubo1", "https://tec.openplanner.team/stops/Ccogrha1"], ["https://tec.openplanner.team/stops/X728aba", "https://tec.openplanner.team/stops/X748adb"], ["https://tec.openplanner.team/stops/X850afa", "https://tec.openplanner.team/stops/X850alb"], ["https://tec.openplanner.team/stops/H5bl117b", "https://tec.openplanner.team/stops/H5qu182a"], ["https://tec.openplanner.team/stops/X609aqa", "https://tec.openplanner.team/stops/X627aca"], ["https://tec.openplanner.team/stops/N501bza", "https://tec.openplanner.team/stops/N502acb"], ["https://tec.openplanner.team/stops/N234aab", "https://tec.openplanner.team/stops/N244axa"], ["https://tec.openplanner.team/stops/X837aea", "https://tec.openplanner.team/stops/X837afa"], ["https://tec.openplanner.team/stops/X358acc", "https://tec.openplanner.team/stops/X358acd"], ["https://tec.openplanner.team/stops/X780abb", "https://tec.openplanner.team/stops/X780aca"], ["https://tec.openplanner.team/stops/Bmanfbg2", "https://tec.openplanner.team/stops/Bmangar1"], ["https://tec.openplanner.team/stops/H1pa105a", "https://tec.openplanner.team/stops/H1qu119a"], ["https://tec.openplanner.team/stops/N229amb", "https://tec.openplanner.team/stops/N229atb"], ["https://tec.openplanner.team/stops/LSOboeu2", "https://tec.openplanner.team/stops/LSOvoie1"], ["https://tec.openplanner.team/stops/X634aib", "https://tec.openplanner.team/stops/X634akb"], ["https://tec.openplanner.team/stops/X641ama", "https://tec.openplanner.team/stops/X641ayb"], ["https://tec.openplanner.team/stops/LmHbien2", "https://tec.openplanner.team/stops/LmHschm2"], ["https://tec.openplanner.team/stops/X804ata", "https://tec.openplanner.team/stops/X804avb"], ["https://tec.openplanner.team/stops/LbHzent1", "https://tec.openplanner.team/stops/LbHzent2"], ["https://tec.openplanner.team/stops/Bgzdast1", "https://tec.openplanner.team/stops/Bgzdast2"], ["https://tec.openplanner.team/stops/Lhuderu1", "https://tec.openplanner.team/stops/Lhuderu2"], ["https://tec.openplanner.team/stops/X626aja", "https://tec.openplanner.team/stops/X687aba"], ["https://tec.openplanner.team/stops/H1wz169a", "https://tec.openplanner.team/stops/H1wz169b"], ["https://tec.openplanner.team/stops/LSEquar2", "https://tec.openplanner.team/stops/LSEvill1"], ["https://tec.openplanner.team/stops/LBEcroi1", "https://tec.openplanner.team/stops/LBEmich1"], ["https://tec.openplanner.team/stops/N534aub", "https://tec.openplanner.team/stops/N534bdb"], ["https://tec.openplanner.team/stops/Cmgbras2", "https://tec.openplanner.team/stops/Cmgpn2"], ["https://tec.openplanner.team/stops/Bhlvlou1", "https://tec.openplanner.team/stops/Bhlvlou2"], ["https://tec.openplanner.team/stops/N562aeb", "https://tec.openplanner.team/stops/N562afa"], ["https://tec.openplanner.team/stops/H4an105b", "https://tec.openplanner.team/stops/H4cr110a"], ["https://tec.openplanner.team/stops/LWAcham1", "https://tec.openplanner.team/stops/LWAvisi1"], ["https://tec.openplanner.team/stops/Cctgiss1", "https://tec.openplanner.team/stops/Cctkais1"], ["https://tec.openplanner.team/stops/LJOchar2", "https://tec.openplanner.team/stops/LSOvoie2"], ["https://tec.openplanner.team/stops/H2pe160a", "https://tec.openplanner.team/stops/H2sv214a"], ["https://tec.openplanner.team/stops/X879asa", "https://tec.openplanner.team/stops/X879asb"], ["https://tec.openplanner.team/stops/Csemacq4", "https://tec.openplanner.team/stops/Csesabo1"], ["https://tec.openplanner.team/stops/Cbfcham3", "https://tec.openplanner.team/stops/Cbfgare2"], ["https://tec.openplanner.team/stops/H4mb142a", "https://tec.openplanner.team/stops/H4mb143b"], ["https://tec.openplanner.team/stops/H3so163b", "https://tec.openplanner.team/stops/H3so172a"], ["https://tec.openplanner.team/stops/N517aba", "https://tec.openplanner.team/stops/N581abb"], ["https://tec.openplanner.team/stops/X604aea", "https://tec.openplanner.team/stops/X604alb"], ["https://tec.openplanner.team/stops/LBNlong1", "https://tec.openplanner.team/stops/LBNvill2"], ["https://tec.openplanner.team/stops/Cwfdame1", "https://tec.openplanner.team/stops/Cwfdame2"], ["https://tec.openplanner.team/stops/X820aab", "https://tec.openplanner.team/stops/X820aib"], ["https://tec.openplanner.team/stops/X922aka", "https://tec.openplanner.team/stops/X922akb"], ["https://tec.openplanner.team/stops/NL78ahc", "https://tec.openplanner.team/stops/NL78akb"], ["https://tec.openplanner.team/stops/X982apb", "https://tec.openplanner.team/stops/X982aqc"], ["https://tec.openplanner.team/stops/X807acb", "https://tec.openplanner.team/stops/X808aha"], ["https://tec.openplanner.team/stops/H3bi102a", "https://tec.openplanner.team/stops/H3bi102b"], ["https://tec.openplanner.team/stops/N527aca", "https://tec.openplanner.team/stops/N527adb"], ["https://tec.openplanner.team/stops/Cnadrev1", "https://tec.openplanner.team/stops/Cnadrev2"], ["https://tec.openplanner.team/stops/N343aca", "https://tec.openplanner.team/stops/N343ana"], ["https://tec.openplanner.team/stops/H1ne143b", "https://tec.openplanner.team/stops/H1ne144a"], ["https://tec.openplanner.team/stops/N231abb", "https://tec.openplanner.team/stops/N231afb"], ["https://tec.openplanner.team/stops/Lrcarse1", "https://tec.openplanner.team/stops/Lrcprin1"], ["https://tec.openplanner.team/stops/LDOastr1", "https://tec.openplanner.team/stops/LDOastr2"], ["https://tec.openplanner.team/stops/LeUnopr2", "https://tec.openplanner.team/stops/LeUwais2"], ["https://tec.openplanner.team/stops/Lsccdor1", "https://tec.openplanner.team/stops/Lscchat1"], ["https://tec.openplanner.team/stops/X663ata", "https://tec.openplanner.team/stops/X664ana"], ["https://tec.openplanner.team/stops/X829aab", "https://tec.openplanner.team/stops/X831aca"], ["https://tec.openplanner.team/stops/LBVcent2", "https://tec.openplanner.team/stops/LBVzand2"], ["https://tec.openplanner.team/stops/N116aba", "https://tec.openplanner.team/stops/N116adb"], ["https://tec.openplanner.team/stops/Lmopast1", "https://tec.openplanner.team/stops/Lmoweri1"], ["https://tec.openplanner.team/stops/N560acb", "https://tec.openplanner.team/stops/N560ada"], ["https://tec.openplanner.team/stops/X669adb", "https://tec.openplanner.team/stops/X672aic"], ["https://tec.openplanner.team/stops/Lglvand2", "https://tec.openplanner.team/stops/Llgbago2"], ["https://tec.openplanner.team/stops/LHrkin-1", "https://tec.openplanner.team/stops/LREprea1"], ["https://tec.openplanner.team/stops/Ladlimi1", "https://tec.openplanner.team/stops/Ldineuf1"], ["https://tec.openplanner.team/stops/Ljuetie3", "https://tec.openplanner.team/stops/Ljujaur2"], ["https://tec.openplanner.team/stops/H2bh107a", "https://tec.openplanner.team/stops/H2ll194a"], ["https://tec.openplanner.team/stops/NR30aaa", "https://tec.openplanner.team/stops/NR30abb"], ["https://tec.openplanner.team/stops/LCSgend2", "https://tec.openplanner.team/stops/LHHroua2"], ["https://tec.openplanner.team/stops/H3so177b", "https://tec.openplanner.team/stops/H3so178a"], ["https://tec.openplanner.team/stops/N569ala", "https://tec.openplanner.team/stops/N569alb"], ["https://tec.openplanner.team/stops/N209akb", "https://tec.openplanner.team/stops/N209ala"], ["https://tec.openplanner.team/stops/LBPxhav2", "https://tec.openplanner.team/stops/LRGmoul2"], ["https://tec.openplanner.team/stops/NC11aja", "https://tec.openplanner.team/stops/NC11ajb"], ["https://tec.openplanner.team/stops/Benimar2", "https://tec.openplanner.team/stops/Benimar4"], ["https://tec.openplanner.team/stops/Bhalh311", "https://tec.openplanner.team/stops/Bhalh312"], ["https://tec.openplanner.team/stops/LROmorf1", "https://tec.openplanner.team/stops/LWLtamb1"], ["https://tec.openplanner.team/stops/Cchprun2", "https://tec.openplanner.team/stops/NC01aha"], ["https://tec.openplanner.team/stops/Bsompri1", "https://tec.openplanner.team/stops/N584axb"], ["https://tec.openplanner.team/stops/LhGkirc4", "https://tec.openplanner.team/stops/LhGkirc6"], ["https://tec.openplanner.team/stops/X747adb", "https://tec.openplanner.team/stops/X747afb"], ["https://tec.openplanner.team/stops/Cfocmed2", "https://tec.openplanner.team/stops/Cforepo1"], ["https://tec.openplanner.team/stops/LACwass2", "https://tec.openplanner.team/stops/LBUmara3"], ["https://tec.openplanner.team/stops/Bquepla1", "https://tec.openplanner.team/stops/Bquepla2"], ["https://tec.openplanner.team/stops/Lghcise1", "https://tec.openplanner.team/stops/Lmopeup2"], ["https://tec.openplanner.team/stops/N161abd", "https://tec.openplanner.team/stops/N161aeb"], ["https://tec.openplanner.team/stops/Csa4mai1", "https://tec.openplanner.team/stops/Csachas1"], ["https://tec.openplanner.team/stops/N521aea", "https://tec.openplanner.team/stops/N521aeb"], ["https://tec.openplanner.team/stops/Bmasegl2", "https://tec.openplanner.team/stops/Bmsaegl1"], ["https://tec.openplanner.team/stops/LATguis2", "https://tec.openplanner.team/stops/LATlena2"], ["https://tec.openplanner.team/stops/Cmlfeba2", "https://tec.openplanner.team/stops/Cmlipsm3"], ["https://tec.openplanner.team/stops/H1hw119a", "https://tec.openplanner.team/stops/H1hw124b"], ["https://tec.openplanner.team/stops/Lfllapi2", "https://tec.openplanner.team/stops/Lflmc--2"], ["https://tec.openplanner.team/stops/N385aad", "https://tec.openplanner.team/stops/N385aca"], ["https://tec.openplanner.team/stops/H1sg146a", "https://tec.openplanner.team/stops/H1sg149b"], ["https://tec.openplanner.team/stops/Lfljupi1", "https://tec.openplanner.team/stops/Lflweri2"], ["https://tec.openplanner.team/stops/H1cd111c", "https://tec.openplanner.team/stops/H1hr117a"], ["https://tec.openplanner.team/stops/N559aab", "https://tec.openplanner.team/stops/N560abb"], ["https://tec.openplanner.team/stops/X734aab", "https://tec.openplanner.team/stops/X734aba"], ["https://tec.openplanner.team/stops/Cmlbruy1", "https://tec.openplanner.team/stops/Cmlipsm3"], ["https://tec.openplanner.team/stops/Cmopn1", "https://tec.openplanner.team/stops/Cmovies1"], ["https://tec.openplanner.team/stops/X822aaa", "https://tec.openplanner.team/stops/X822amb"], ["https://tec.openplanner.team/stops/N349aca", "https://tec.openplanner.team/stops/N349ada"], ["https://tec.openplanner.team/stops/LeUcroi1", "https://tec.openplanner.team/stops/LeUmalm1"], ["https://tec.openplanner.team/stops/LSZptwa1", "https://tec.openplanner.team/stops/LSZptwa2"], ["https://tec.openplanner.team/stops/LaMmark1", "https://tec.openplanner.team/stops/LaMpost2"], ["https://tec.openplanner.team/stops/Cgxdeba1", "https://tec.openplanner.team/stops/Cgxdeba2"], ["https://tec.openplanner.team/stops/X986aja", "https://tec.openplanner.team/stops/X986aka"], ["https://tec.openplanner.team/stops/H1em111b", "https://tec.openplanner.team/stops/H1em111d"], ["https://tec.openplanner.team/stops/LAMecse*", "https://tec.openplanner.team/stops/LAmshel1"], ["https://tec.openplanner.team/stops/N541aba", "https://tec.openplanner.team/stops/N541aca"], ["https://tec.openplanner.team/stops/H1ni317b", "https://tec.openplanner.team/stops/H1ni318b"], ["https://tec.openplanner.team/stops/X733afb", "https://tec.openplanner.team/stops/X733agb"], ["https://tec.openplanner.team/stops/LREsech2", "https://tec.openplanner.team/stops/LREsoug4"], ["https://tec.openplanner.team/stops/Lanclon2", "https://tec.openplanner.team/stops/Llglaha2"], ["https://tec.openplanner.team/stops/LBDcarr1", "https://tec.openplanner.team/stops/LJEerno1"], ["https://tec.openplanner.team/stops/H3so156a", "https://tec.openplanner.team/stops/H3so178a"], ["https://tec.openplanner.team/stops/Bvirbru2", "https://tec.openplanner.team/stops/Bvirvol2"], ["https://tec.openplanner.team/stops/LHAheml2", "https://tec.openplanner.team/stops/LHAlacr2"], ["https://tec.openplanner.team/stops/X998aaa", "https://tec.openplanner.team/stops/X998azb"], ["https://tec.openplanner.team/stops/Cmmphai1", "https://tec.openplanner.team/stops/Cmmserv2"], ["https://tec.openplanner.team/stops/H2ll177a", "https://tec.openplanner.team/stops/H2ll189c"], ["https://tec.openplanner.team/stops/CMleer2", "https://tec.openplanner.team/stops/Cmoecol2"], ["https://tec.openplanner.team/stops/H4ty290a", "https://tec.openplanner.team/stops/H4ty302b"], ["https://tec.openplanner.team/stops/N538azb", "https://tec.openplanner.team/stops/N539axb"], ["https://tec.openplanner.team/stops/LAWcite2", "https://tec.openplanner.team/stops/LAWvold2"], ["https://tec.openplanner.team/stops/N211acb", "https://tec.openplanner.team/stops/N211ava"], ["https://tec.openplanner.team/stops/X724aaa", "https://tec.openplanner.team/stops/X725bfb"], ["https://tec.openplanner.team/stops/N518aab", "https://tec.openplanner.team/stops/N518acd"], ["https://tec.openplanner.team/stops/H2pe155a", "https://tec.openplanner.team/stops/H2pe159b"], ["https://tec.openplanner.team/stops/X542aaa", "https://tec.openplanner.team/stops/X542aab"], ["https://tec.openplanner.team/stops/X663aob", "https://tec.openplanner.team/stops/X663awa"], ["https://tec.openplanner.team/stops/Cfcctru2", "https://tec.openplanner.team/stops/Cfcrerp1"], ["https://tec.openplanner.team/stops/X750bda", "https://tec.openplanner.team/stops/X750bea"], ["https://tec.openplanner.team/stops/N232bjb", "https://tec.openplanner.team/stops/N261ada"], ["https://tec.openplanner.team/stops/Bbchsac1", "https://tec.openplanner.team/stops/Bbsifmo2"], ["https://tec.openplanner.team/stops/H1gh159a", "https://tec.openplanner.team/stops/H1gh160b"], ["https://tec.openplanner.team/stops/H4bc102a", "https://tec.openplanner.team/stops/H4tu170a"], ["https://tec.openplanner.team/stops/N423agb", "https://tec.openplanner.team/stops/NH21aha"], ["https://tec.openplanner.team/stops/LmD27--2", "https://tec.openplanner.team/stops/LmDdenk2"], ["https://tec.openplanner.team/stops/N526adb", "https://tec.openplanner.team/stops/N533apb"], ["https://tec.openplanner.team/stops/X769abb", "https://tec.openplanner.team/stops/X769ana"], ["https://tec.openplanner.team/stops/H2hp261b", "https://tec.openplanner.team/stops/H2mo146a"], ["https://tec.openplanner.team/stops/Bosqcar2", "https://tec.openplanner.team/stops/Bosqcim2"], ["https://tec.openplanner.team/stops/Ccpbrun2", "https://tec.openplanner.team/stops/H2ch123c"], ["https://tec.openplanner.team/stops/Cgzcorn2", "https://tec.openplanner.team/stops/Cgzcour2"], ["https://tec.openplanner.team/stops/Llgplat2", "https://tec.openplanner.team/stops/Llgvott1"], ["https://tec.openplanner.team/stops/X344aca", "https://tec.openplanner.team/stops/X344acb"], ["https://tec.openplanner.team/stops/Blmlqlo1", "https://tec.openplanner.team/stops/Blmlqlo2"], ["https://tec.openplanner.team/stops/N584aja", "https://tec.openplanner.team/stops/N584alb"], ["https://tec.openplanner.team/stops/LHEbeau2", "https://tec.openplanner.team/stops/LHEchex2"], ["https://tec.openplanner.team/stops/Broncan1", "https://tec.openplanner.team/stops/Bvirflu1"], ["https://tec.openplanner.team/stops/LTPcarr1", "https://tec.openplanner.team/stops/LTPcarr2"], ["https://tec.openplanner.team/stops/LMFmerl2", "https://tec.openplanner.team/stops/LMFmoul1"], ["https://tec.openplanner.team/stops/H4ty332b", "https://tec.openplanner.team/stops/H4ty332c"], ["https://tec.openplanner.team/stops/X880acb", "https://tec.openplanner.team/stops/X880ada"], ["https://tec.openplanner.team/stops/H1bo106b", "https://tec.openplanner.team/stops/H1bo109b"], ["https://tec.openplanner.team/stops/Ccufos71", "https://tec.openplanner.team/stops/Ccupbro1"], ["https://tec.openplanner.team/stops/Cdametr1", "https://tec.openplanner.team/stops/CMdamp2"], ["https://tec.openplanner.team/stops/H1bs110a", "https://tec.openplanner.team/stops/H1bs110b"], ["https://tec.openplanner.team/stops/LPUchpl1", "https://tec.openplanner.team/stops/LPUchpl2"], ["https://tec.openplanner.team/stops/X754ala", "https://tec.openplanner.team/stops/X754alb"], ["https://tec.openplanner.team/stops/X763afa", "https://tec.openplanner.team/stops/X763aha"], ["https://tec.openplanner.team/stops/NL74aha", "https://tec.openplanner.team/stops/NL74ahd"], ["https://tec.openplanner.team/stops/X664aid", "https://tec.openplanner.team/stops/X665aaa"], ["https://tec.openplanner.team/stops/Bsomtnd1", "https://tec.openplanner.team/stops/Bsomtpm1"], ["https://tec.openplanner.team/stops/Llgavoc2", "https://tec.openplanner.team/stops/Llgdelc*"], ["https://tec.openplanner.team/stops/X898aha", "https://tec.openplanner.team/stops/X898aib"], ["https://tec.openplanner.team/stops/Lqbecco1", "https://tec.openplanner.team/stops/Lqbeg--2"], ["https://tec.openplanner.team/stops/Bgligra2", "https://tec.openplanner.team/stops/Btlbtbe2"], ["https://tec.openplanner.team/stops/X921aoa", "https://tec.openplanner.team/stops/X979aea"], ["https://tec.openplanner.team/stops/LLmwaut2", "https://tec.openplanner.team/stops/LRemorr2"], ["https://tec.openplanner.team/stops/LGe4bra2", "https://tec.openplanner.team/stops/LGeschr1"], ["https://tec.openplanner.team/stops/LeUgeme2", "https://tec.openplanner.team/stops/LeUindu1"], ["https://tec.openplanner.team/stops/Bbchtry1", "https://tec.openplanner.team/stops/Bwaucan2"], ["https://tec.openplanner.team/stops/X626aca", "https://tec.openplanner.team/stops/X626acb"], ["https://tec.openplanner.team/stops/Brsrrcu1", "https://tec.openplanner.team/stops/Brsrrcu2"], ["https://tec.openplanner.team/stops/N581aab", "https://tec.openplanner.team/stops/N581aca"], ["https://tec.openplanner.team/stops/N501cba", "https://tec.openplanner.team/stops/N521aub"], ["https://tec.openplanner.team/stops/N501lnb", "https://tec.openplanner.team/stops/N501mfa"], ["https://tec.openplanner.team/stops/Lagmair4", "https://tec.openplanner.team/stops/Lagmair5"], ["https://tec.openplanner.team/stops/H1ms252d", "https://tec.openplanner.team/stops/H1ms940a"], ["https://tec.openplanner.team/stops/LBahome2", "https://tec.openplanner.team/stops/LLUalou2"], ["https://tec.openplanner.team/stops/Brsgleq1", "https://tec.openplanner.team/stops/Buccpes1"], ["https://tec.openplanner.team/stops/LSWscie2", "https://tec.openplanner.team/stops/LSZprie1"], ["https://tec.openplanner.team/stops/LBkdahl2", "https://tec.openplanner.team/stops/LMsalen1"], ["https://tec.openplanner.team/stops/H5el100a", "https://tec.openplanner.team/stops/H5rx134a"], ["https://tec.openplanner.team/stops/N547ahb", "https://tec.openplanner.team/stops/N573apb"], ["https://tec.openplanner.team/stops/N141aja", "https://tec.openplanner.team/stops/N141aoa"], ["https://tec.openplanner.team/stops/Bsambra2", "https://tec.openplanner.team/stops/Bsamlon2"], ["https://tec.openplanner.team/stops/N535aba", "https://tec.openplanner.team/stops/N535aea"], ["https://tec.openplanner.team/stops/LCPconf2", "https://tec.openplanner.team/stops/LCPscay1"], ["https://tec.openplanner.team/stops/X872aaa", "https://tec.openplanner.team/stops/X872aba"], ["https://tec.openplanner.team/stops/N556afb", "https://tec.openplanner.team/stops/N557aia"], ["https://tec.openplanner.team/stops/LPAbrun1", "https://tec.openplanner.team/stops/LPAchpl1"], ["https://tec.openplanner.team/stops/N561aba", "https://tec.openplanner.team/stops/N561aca"], ["https://tec.openplanner.team/stops/X681aeb", "https://tec.openplanner.team/stops/X696aea"], ["https://tec.openplanner.team/stops/LkAsonn2", "https://tec.openplanner.team/stops/LrOwahl1"], ["https://tec.openplanner.team/stops/LOMware1", "https://tec.openplanner.team/stops/LOMware2"], ["https://tec.openplanner.team/stops/X829aaa", "https://tec.openplanner.team/stops/X829aab"], ["https://tec.openplanner.team/stops/LAMcoll2", "https://tec.openplanner.team/stops/LAMviam2"], ["https://tec.openplanner.team/stops/N310aab", "https://tec.openplanner.team/stops/N312adb"], ["https://tec.openplanner.team/stops/Lreec--1", "https://tec.openplanner.team/stops/Lretill2"], ["https://tec.openplanner.team/stops/H4wa148a", "https://tec.openplanner.team/stops/H4wa156b"], ["https://tec.openplanner.team/stops/H1ne145a", "https://tec.openplanner.team/stops/H1ne149a"], ["https://tec.openplanner.team/stops/Lmicoop1", "https://tec.openplanner.team/stops/Lmidarc1"], ["https://tec.openplanner.team/stops/N220aaa", "https://tec.openplanner.team/stops/X224abb"], ["https://tec.openplanner.team/stops/LnUneun2", "https://tec.openplanner.team/stops/LsVlust1"], ["https://tec.openplanner.team/stops/X629aaa", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/X921abb", "https://tec.openplanner.team/stops/X921ama"], ["https://tec.openplanner.team/stops/H4gu108a", "https://tec.openplanner.team/stops/H4we134a"], ["https://tec.openplanner.team/stops/X738adb", "https://tec.openplanner.team/stops/X754ama"], ["https://tec.openplanner.team/stops/X604aaa", "https://tec.openplanner.team/stops/X604aab"], ["https://tec.openplanner.team/stops/N501kma", "https://tec.openplanner.team/stops/N501nea"], ["https://tec.openplanner.team/stops/LnDthel1", "https://tec.openplanner.team/stops/LwSgeme1"], ["https://tec.openplanner.team/stops/H1gy114b", "https://tec.openplanner.team/stops/H1gy116b"], ["https://tec.openplanner.team/stops/H1lb137a", "https://tec.openplanner.team/stops/H1pa106b"], ["https://tec.openplanner.team/stops/Cgonvro1", "https://tec.openplanner.team/stops/Cgosoux1"], ["https://tec.openplanner.team/stops/N149aka", "https://tec.openplanner.team/stops/N150aaa"], ["https://tec.openplanner.team/stops/H4bo121a", "https://tec.openplanner.team/stops/H4og211b"], ["https://tec.openplanner.team/stops/N248aaa", "https://tec.openplanner.team/stops/N248abb"], ["https://tec.openplanner.team/stops/X361abb", "https://tec.openplanner.team/stops/X362aab"], ["https://tec.openplanner.team/stops/Bgzdgst1", "https://tec.openplanner.team/stops/Bgzdgth1"], ["https://tec.openplanner.team/stops/Bcrbbou1", "https://tec.openplanner.team/stops/Bcrbbou2"], ["https://tec.openplanner.team/stops/N122afa", "https://tec.openplanner.team/stops/N122ahb"], ["https://tec.openplanner.team/stops/LAnchat2", "https://tec.openplanner.team/stops/LAnfall2"], ["https://tec.openplanner.team/stops/LBRgare1", "https://tec.openplanner.team/stops/LBRgare2"], ["https://tec.openplanner.team/stops/LaNmuhl4", "https://tec.openplanner.team/stops/LeMnr12"], ["https://tec.openplanner.team/stops/Livjeu-2", "https://tec.openplanner.team/stops/Lseivoz1"], ["https://tec.openplanner.team/stops/Bbcocvb2", "https://tec.openplanner.team/stops/Bbcohou4"], ["https://tec.openplanner.team/stops/H4he101a", "https://tec.openplanner.team/stops/H4he104b"], ["https://tec.openplanner.team/stops/X650ada", "https://tec.openplanner.team/stops/X650adb"], ["https://tec.openplanner.team/stops/LBIaepo2", "https://tec.openplanner.team/stops/LBIairp2"], ["https://tec.openplanner.team/stops/H1hm176a", "https://tec.openplanner.team/stops/H1hm176b"], ["https://tec.openplanner.team/stops/LBivi--1", "https://tec.openplanner.team/stops/LBivi--2"], ["https://tec.openplanner.team/stops/Lgrcour1", "https://tec.openplanner.team/stops/Llgcorn1"], ["https://tec.openplanner.team/stops/H2ma204a", "https://tec.openplanner.team/stops/H3th131a"], ["https://tec.openplanner.team/stops/Cmaegal2", "https://tec.openplanner.team/stops/Cromonn1"], ["https://tec.openplanner.team/stops/Ljuprev2", "https://tec.openplanner.team/stops/Ljuprev4"], ["https://tec.openplanner.team/stops/N351afa", "https://tec.openplanner.team/stops/N351afb"], ["https://tec.openplanner.team/stops/N102abb", "https://tec.openplanner.team/stops/N152aac"], ["https://tec.openplanner.team/stops/Bgliegl1", "https://tec.openplanner.team/stops/Bglitro1"], ["https://tec.openplanner.team/stops/H4hu113a", "https://tec.openplanner.team/stops/H4hu113b"], ["https://tec.openplanner.team/stops/N201aee", "https://tec.openplanner.team/stops/N201asb"], ["https://tec.openplanner.team/stops/LSJ38--1", "https://tec.openplanner.team/stops/LSJlabe2"], ["https://tec.openplanner.team/stops/Cgdfras2", "https://tec.openplanner.team/stops/Cgdrhau2"], ["https://tec.openplanner.team/stops/N501jsa", "https://tec.openplanner.team/stops/N538aqa"], ["https://tec.openplanner.team/stops/H4lz118a", "https://tec.openplanner.team/stops/H4th141b"], ["https://tec.openplanner.team/stops/H1eo103a", "https://tec.openplanner.team/stops/H1eo106b"], ["https://tec.openplanner.team/stops/LWNberg1", "https://tec.openplanner.team/stops/LWNberg2"], ["https://tec.openplanner.team/stops/X888aba", "https://tec.openplanner.team/stops/X888aca"], ["https://tec.openplanner.team/stops/H1ml109a", "https://tec.openplanner.team/stops/H1ml110b"], ["https://tec.openplanner.team/stops/Lmlboul2", "https://tec.openplanner.team/stops/Lmlcite*"], ["https://tec.openplanner.team/stops/H1qg138a", "https://tec.openplanner.team/stops/H1qy136a"], ["https://tec.openplanner.team/stops/Ldihote2", "https://tec.openplanner.team/stops/Ldiinte1"], ["https://tec.openplanner.team/stops/Lgrcoll1", "https://tec.openplanner.team/stops/Lgrrein1"], ["https://tec.openplanner.team/stops/N222abb", "https://tec.openplanner.team/stops/X222afa"], ["https://tec.openplanner.team/stops/Ljegoss2", "https://tec.openplanner.team/stops/Ljexhav2"], ["https://tec.openplanner.team/stops/H4do103b", "https://tec.openplanner.team/stops/H4do106a"], ["https://tec.openplanner.team/stops/Ccoforr1", "https://tec.openplanner.team/stops/Ccorian2"], ["https://tec.openplanner.team/stops/X738abb", "https://tec.openplanner.team/stops/X754atb"], ["https://tec.openplanner.team/stops/LTamag2", "https://tec.openplanner.team/stops/LTaxhos2"], ["https://tec.openplanner.team/stops/Cnacout2", "https://tec.openplanner.team/stops/Cnarmon1"], ["https://tec.openplanner.team/stops/LBGcent2", "https://tec.openplanner.team/stops/LBGgeer2"], ["https://tec.openplanner.team/stops/N501iza", "https://tec.openplanner.team/stops/N501jca"], ["https://tec.openplanner.team/stops/LkEbbl-2", "https://tec.openplanner.team/stops/LkEmax-2"], ["https://tec.openplanner.team/stops/LAyfren2", "https://tec.openplanner.team/stops/LAyheid1"], ["https://tec.openplanner.team/stops/Bblaelo1", "https://tec.openplanner.team/stops/Bblahop1"], ["https://tec.openplanner.team/stops/N534bga", "https://tec.openplanner.team/stops/N534bgb"], ["https://tec.openplanner.team/stops/Lghmaha1", "https://tec.openplanner.team/stops/Lghmaha3"], ["https://tec.openplanner.team/stops/Clvimtr1", "https://tec.openplanner.team/stops/Clvimtr3"], ["https://tec.openplanner.team/stops/Llggram4", "https://tec.openplanner.team/stops/Llgpari1"], ["https://tec.openplanner.team/stops/N506afa", "https://tec.openplanner.team/stops/N506asa"], ["https://tec.openplanner.team/stops/Lhefoot2", "https://tec.openplanner.team/stops/Lhehoux2"], ["https://tec.openplanner.team/stops/H1ha185a", "https://tec.openplanner.team/stops/H1ha191a"], ["https://tec.openplanner.team/stops/X923aca", "https://tec.openplanner.team/stops/X923acb"], ["https://tec.openplanner.team/stops/X939aca", "https://tec.openplanner.team/stops/X939aeb"], ["https://tec.openplanner.team/stops/LCPoneu1", "https://tec.openplanner.team/stops/LCPoneu2"], ["https://tec.openplanner.team/stops/Bwavfol1", "https://tec.openplanner.team/stops/Bwavpar1"], ["https://tec.openplanner.team/stops/Lmlprie1", "https://tec.openplanner.team/stops/Lmlscie2"], ["https://tec.openplanner.team/stops/Lloauto1", "https://tec.openplanner.team/stops/Llocime2"], ["https://tec.openplanner.team/stops/LSPdesc2", "https://tec.openplanner.team/stops/LSPherd1"], ["https://tec.openplanner.team/stops/N528atb", "https://tec.openplanner.team/stops/N542aoa"], ["https://tec.openplanner.team/stops/H1sy137a", "https://tec.openplanner.team/stops/H1sy148b"], ["https://tec.openplanner.team/stops/N304aab", "https://tec.openplanner.team/stops/N315aab"], ["https://tec.openplanner.team/stops/X818apa", "https://tec.openplanner.team/stops/X818aqb"], ["https://tec.openplanner.team/stops/Blsmcha1", "https://tec.openplanner.team/stops/Blsmcha4"], ["https://tec.openplanner.team/stops/LhGknip1", "https://tec.openplanner.team/stops/LhGknip2"], ["https://tec.openplanner.team/stops/H2sb234a", "https://tec.openplanner.team/stops/H2sb266a"], ["https://tec.openplanner.team/stops/N244adb", "https://tec.openplanner.team/stops/N244arb"], ["https://tec.openplanner.team/stops/LrAdrie5", "https://tec.openplanner.team/stops/LrAneue2"], ["https://tec.openplanner.team/stops/H5pe125a", "https://tec.openplanner.team/stops/H5pe145b"], ["https://tec.openplanner.team/stops/H1he109b", "https://tec.openplanner.team/stops/H1qv110b"], ["https://tec.openplanner.team/stops/LSSeg--1", "https://tec.openplanner.team/stops/LSShous2"], ["https://tec.openplanner.team/stops/Ccicouc2", "https://tec.openplanner.team/stops/Cmlaili1"], ["https://tec.openplanner.team/stops/LFPchat1", "https://tec.openplanner.team/stops/LVu40--1"], ["https://tec.openplanner.team/stops/Blimch%C3%A22", "https://tec.openplanner.team/stops/Bottpry2"], ["https://tec.openplanner.team/stops/NH21afa", "https://tec.openplanner.team/stops/NH21agb"], ["https://tec.openplanner.team/stops/LNIbas-2", "https://tec.openplanner.team/stops/LSZpont1"], ["https://tec.openplanner.team/stops/LFIinse1", "https://tec.openplanner.team/stops/LXoeg--4"], ["https://tec.openplanner.team/stops/X793acb", "https://tec.openplanner.team/stops/X793apa"], ["https://tec.openplanner.team/stops/H4ne132d", "https://tec.openplanner.team/stops/H4ne143b"], ["https://tec.openplanner.team/stops/LeI39--3", "https://tec.openplanner.team/stops/LeIkreu1"], ["https://tec.openplanner.team/stops/H2ll172a", "https://tec.openplanner.team/stops/H2ll196a"], ["https://tec.openplanner.team/stops/H2ca103a", "https://tec.openplanner.team/stops/H2ca103b"], ["https://tec.openplanner.team/stops/LATcham*", "https://tec.openplanner.team/stops/LVLmabi2"], ["https://tec.openplanner.team/stops/Cgotech2", "https://tec.openplanner.team/stops/Cwxchap1"], ["https://tec.openplanner.team/stops/Bborche2", "https://tec.openplanner.team/stops/Bmoncab2"], ["https://tec.openplanner.team/stops/N535aea", "https://tec.openplanner.team/stops/N535ahb"], ["https://tec.openplanner.team/stops/LENindu1", "https://tec.openplanner.team/stops/LENoule2"], ["https://tec.openplanner.team/stops/LsVeite1", "https://tec.openplanner.team/stops/LsVfeye1"], ["https://tec.openplanner.team/stops/Ccomott2", "https://tec.openplanner.team/stops/Cgofert1"], ["https://tec.openplanner.team/stops/Bohncha2", "https://tec.openplanner.team/stops/Bohnpla2"], ["https://tec.openplanner.team/stops/Btstbbu2", "https://tec.openplanner.team/stops/Btstpch2"], ["https://tec.openplanner.team/stops/H4ce103b", "https://tec.openplanner.team/stops/H4ce108a"], ["https://tec.openplanner.team/stops/N235aga", "https://tec.openplanner.team/stops/N235agb"], ["https://tec.openplanner.team/stops/H4po128a", "https://tec.openplanner.team/stops/H4po128b"], ["https://tec.openplanner.team/stops/X745acb", "https://tec.openplanner.team/stops/X745ada"], ["https://tec.openplanner.team/stops/Crcrgar1", "https://tec.openplanner.team/stops/Crcrgar2"], ["https://tec.openplanner.team/stops/NL78abb", "https://tec.openplanner.team/stops/NL78akb"], ["https://tec.openplanner.team/stops/Cthpano1", "https://tec.openplanner.team/stops/Cthrwai2"], ["https://tec.openplanner.team/stops/Bopplon1", "https://tec.openplanner.team/stops/Bsrbbas1"], ["https://tec.openplanner.team/stops/LWieg--*", "https://tec.openplanner.team/stops/LXhmara2"], ["https://tec.openplanner.team/stops/N383acb", "https://tec.openplanner.team/stops/N383aea"], ["https://tec.openplanner.team/stops/X741aba", "https://tec.openplanner.team/stops/X741abb"], ["https://tec.openplanner.team/stops/H1pa116a", "https://tec.openplanner.team/stops/H1pa116b"], ["https://tec.openplanner.team/stops/Ccychco2", "https://tec.openplanner.team/stops/NH01alb"], ["https://tec.openplanner.team/stops/X744aaa", "https://tec.openplanner.team/stops/X744aba"], ["https://tec.openplanner.team/stops/Cgobl%C3%A9r2", "https://tec.openplanner.team/stops/Cgoloca2"], ["https://tec.openplanner.team/stops/Bgntalt3", "https://tec.openplanner.team/stops/Bgnttma2"], ["https://tec.openplanner.team/stops/X741aha", "https://tec.openplanner.team/stops/X741ahb"], ["https://tec.openplanner.team/stops/H2mm136b", "https://tec.openplanner.team/stops/H2mo123b"], ["https://tec.openplanner.team/stops/N323aba", "https://tec.openplanner.team/stops/N368aea"], ["https://tec.openplanner.team/stops/H5fl102a", "https://tec.openplanner.team/stops/H5fl103b"], ["https://tec.openplanner.team/stops/X796afb", "https://tec.openplanner.team/stops/X986aka"], ["https://tec.openplanner.team/stops/N139aaa", "https://tec.openplanner.team/stops/N146aea"], ["https://tec.openplanner.team/stops/LAmeg--2", "https://tec.openplanner.team/stops/LNHhome2"], ["https://tec.openplanner.team/stops/X782aba", "https://tec.openplanner.team/stops/X782adb"], ["https://tec.openplanner.team/stops/Bnivga12", "https://tec.openplanner.team/stops/Bnivga21"], ["https://tec.openplanner.team/stops/Bflcpco1", "https://tec.openplanner.team/stops/N515aeb"], ["https://tec.openplanner.team/stops/H4er124a", "https://tec.openplanner.team/stops/H4ty322c"], ["https://tec.openplanner.team/stops/LMebove1", "https://tec.openplanner.team/stops/LMechpl2"], ["https://tec.openplanner.team/stops/LCltrib2", "https://tec.openplanner.team/stops/LThnouv2"], ["https://tec.openplanner.team/stops/Lmlcher1", "https://tec.openplanner.team/stops/Lmlcrot1"], ["https://tec.openplanner.team/stops/Cgymast2", "https://tec.openplanner.team/stops/Cjuhame3"], ["https://tec.openplanner.team/stops/Ctmmana2", "https://tec.openplanner.team/stops/Cvvsncb2"], ["https://tec.openplanner.team/stops/Lemcort2", "https://tec.openplanner.team/stops/Lemparc1"], ["https://tec.openplanner.team/stops/Cfbcabi1", "https://tec.openplanner.team/stops/Cfbegli1"], ["https://tec.openplanner.team/stops/LVEdTEC1", "https://tec.openplanner.team/stops/LVEstat2"], ["https://tec.openplanner.team/stops/Ctrchat2", "https://tec.openplanner.team/stops/Ctrrpla4"], ["https://tec.openplanner.team/stops/Lbopote2", "https://tec.openplanner.team/stops/Lsebonc1"], ["https://tec.openplanner.team/stops/NL68afa", "https://tec.openplanner.team/stops/NL68afb"], ["https://tec.openplanner.team/stops/NL78aab", "https://tec.openplanner.team/stops/NL78abb"], ["https://tec.openplanner.team/stops/LHCmais1", "https://tec.openplanner.team/stops/LHCmais2"], ["https://tec.openplanner.team/stops/X804aob", "https://tec.openplanner.team/stops/X804bsa"], ["https://tec.openplanner.team/stops/LSSfrai2", "https://tec.openplanner.team/stops/LSSvill1"], ["https://tec.openplanner.team/stops/Brsgepr1", "https://tec.openplanner.team/stops/Brsgepr2"], ["https://tec.openplanner.team/stops/Ctuosso1", "https://tec.openplanner.team/stops/NC28aga"], ["https://tec.openplanner.team/stops/N501fdc", "https://tec.openplanner.team/stops/N501lzy"], ["https://tec.openplanner.team/stops/X625aca", "https://tec.openplanner.team/stops/X625acb"], ["https://tec.openplanner.team/stops/Bbghsta2", "https://tec.openplanner.team/stops/Bbghsta4"], ["https://tec.openplanner.team/stops/Btubbot1", "https://tec.openplanner.team/stops/Btubcim2"], ["https://tec.openplanner.team/stops/LENarde1", "https://tec.openplanner.team/stops/LENgend2"], ["https://tec.openplanner.team/stops/X925adb", "https://tec.openplanner.team/stops/X925aea"], ["https://tec.openplanner.team/stops/X669afa", "https://tec.openplanner.team/stops/X669agd"], ["https://tec.openplanner.team/stops/LTrchar2", "https://tec.openplanner.team/stops/LTrmort1"], ["https://tec.openplanner.team/stops/N507aka", "https://tec.openplanner.team/stops/N507ald"], ["https://tec.openplanner.team/stops/H3so155a", "https://tec.openplanner.team/stops/H3so161a"], ["https://tec.openplanner.team/stops/Cluberl2", "https://tec.openplanner.team/stops/Cluplve3"], ["https://tec.openplanner.team/stops/Bjausan1", "https://tec.openplanner.team/stops/Bmrlcch1"], ["https://tec.openplanner.team/stops/Cfaauln1", "https://tec.openplanner.team/stops/Cfaauln2"], ["https://tec.openplanner.team/stops/Brach122", "https://tec.openplanner.team/stops/Bwaak102"], ["https://tec.openplanner.team/stops/N505adb", "https://tec.openplanner.team/stops/N505ahb"], ["https://tec.openplanner.team/stops/N527aaa", "https://tec.openplanner.team/stops/N527abb"], ["https://tec.openplanner.team/stops/H3lr106a", "https://tec.openplanner.team/stops/H3th126a"], ["https://tec.openplanner.team/stops/H4wi162b", "https://tec.openplanner.team/stops/H4wi163b"], ["https://tec.openplanner.team/stops/LSkbo832", "https://tec.openplanner.team/stops/LSkrena3"], ["https://tec.openplanner.team/stops/X715akb", "https://tec.openplanner.team/stops/X781abb"], ["https://tec.openplanner.team/stops/LChxhav1", "https://tec.openplanner.team/stops/LChxhav2"], ["https://tec.openplanner.team/stops/X806aja", "https://tec.openplanner.team/stops/X807ada"], ["https://tec.openplanner.team/stops/X713aba", "https://tec.openplanner.team/stops/X713ana"], ["https://tec.openplanner.team/stops/X919aea", "https://tec.openplanner.team/stops/X919aoa"], ["https://tec.openplanner.team/stops/N308anb", "https://tec.openplanner.team/stops/N312adb"], ["https://tec.openplanner.team/stops/N135axa", "https://tec.openplanner.team/stops/N135bhb"], ["https://tec.openplanner.team/stops/LBPeg--2", "https://tec.openplanner.team/stops/LSLhale1"], ["https://tec.openplanner.team/stops/N150afb", "https://tec.openplanner.team/stops/N150aga"], ["https://tec.openplanner.team/stops/N202acb", "https://tec.openplanner.team/stops/N202aga"], ["https://tec.openplanner.team/stops/Bwatath2", "https://tec.openplanner.team/stops/Bwatmco2"], ["https://tec.openplanner.team/stops/LARauto3", "https://tec.openplanner.team/stops/LARauto4"], ["https://tec.openplanner.team/stops/Lpelouh2", "https://tec.openplanner.team/stops/LTAchpl2"], ["https://tec.openplanner.team/stops/N218abb", "https://tec.openplanner.team/stops/N218aca"], ["https://tec.openplanner.team/stops/Cjuvpla1", "https://tec.openplanner.team/stops/Cmacoll1"], ["https://tec.openplanner.team/stops/LeUkehr1", "https://tec.openplanner.team/stops/LeUkirc1"], ["https://tec.openplanner.team/stops/LSNbouh4", "https://tec.openplanner.team/stops/LSNnoul2"], ["https://tec.openplanner.team/stops/Lalparc1", "https://tec.openplanner.team/stops/Lalverr2"], ["https://tec.openplanner.team/stops/H1ch142b", "https://tec.openplanner.team/stops/H1nm140a"], ["https://tec.openplanner.team/stops/X946afa", "https://tec.openplanner.team/stops/X946ahb"], ["https://tec.openplanner.team/stops/LTResse2", "https://tec.openplanner.team/stops/LTRmosb1"], ["https://tec.openplanner.team/stops/H2bh103c", "https://tec.openplanner.team/stops/H2mg135b"], ["https://tec.openplanner.team/stops/H4ve131b", "https://tec.openplanner.team/stops/H4ve132a"], ["https://tec.openplanner.team/stops/X982aaa", "https://tec.openplanner.team/stops/X982aab"], ["https://tec.openplanner.team/stops/X889abb", "https://tec.openplanner.team/stops/X889aea"], ["https://tec.openplanner.team/stops/Lghfors2", "https://tec.openplanner.team/stops/Ljerose4"], ["https://tec.openplanner.team/stops/N573aaa", "https://tec.openplanner.team/stops/N573aea"], ["https://tec.openplanner.team/stops/LBgcroi2", "https://tec.openplanner.team/stops/LGmhedo2"], ["https://tec.openplanner.team/stops/N506ajb", "https://tec.openplanner.team/stops/N506aqa"], ["https://tec.openplanner.team/stops/N131aeb", "https://tec.openplanner.team/stops/N423agb"], ["https://tec.openplanner.team/stops/Cmtfoye2", "https://tec.openplanner.team/stops/Cmtyern2"], ["https://tec.openplanner.team/stops/Cctsncb3", "https://tec.openplanner.team/stops/NC02aob"], ["https://tec.openplanner.team/stops/X721ajb", "https://tec.openplanner.team/stops/X721akb"], ["https://tec.openplanner.team/stops/H4pq115a", "https://tec.openplanner.team/stops/H4pq115b"], ["https://tec.openplanner.team/stops/LWEgare1", "https://tec.openplanner.team/stops/LWElanc1"], ["https://tec.openplanner.team/stops/X687aaa", "https://tec.openplanner.team/stops/X687aca"], ["https://tec.openplanner.team/stops/Cgrbert1", "https://tec.openplanner.team/stops/NC14aga"], ["https://tec.openplanner.team/stops/LBEbelf1", "https://tec.openplanner.team/stops/LBEbelf2"], ["https://tec.openplanner.team/stops/H1gg116b", "https://tec.openplanner.team/stops/H1gg117a"], ["https://tec.openplanner.team/stops/NC14apa", "https://tec.openplanner.team/stops/NC14apb"], ["https://tec.openplanner.team/stops/LBBcamp1", "https://tec.openplanner.team/stops/LBBodet2"], ["https://tec.openplanner.team/stops/Bgzdast2", "https://tec.openplanner.team/stops/Bgzdpco2"], ["https://tec.openplanner.team/stops/X949aib", "https://tec.openplanner.team/stops/X949akb"], ["https://tec.openplanner.team/stops/N531asa", "https://tec.openplanner.team/stops/N534bxa"], ["https://tec.openplanner.team/stops/X716acb", "https://tec.openplanner.team/stops/X718ajb"], ["https://tec.openplanner.team/stops/X640akb", "https://tec.openplanner.team/stops/X640ava"], ["https://tec.openplanner.team/stops/N542agb", "https://tec.openplanner.team/stops/N542aka"], ["https://tec.openplanner.team/stops/Cmocalv1", "https://tec.openplanner.team/stops/Cmoruau1"], ["https://tec.openplanner.team/stops/X715amb", "https://tec.openplanner.team/stops/X731abb"], ["https://tec.openplanner.team/stops/Lgrfrai2", "https://tec.openplanner.team/stops/Lgrfrhe2"], ["https://tec.openplanner.team/stops/LTPbeau2", "https://tec.openplanner.team/stops/LTPpisc2"], ["https://tec.openplanner.team/stops/N110aaa", "https://tec.openplanner.team/stops/N110aba"], ["https://tec.openplanner.team/stops/X925aob", "https://tec.openplanner.team/stops/X949amb"], ["https://tec.openplanner.team/stops/H1at108a", "https://tec.openplanner.team/stops/H1at108c"], ["https://tec.openplanner.team/stops/Cclchap1", "https://tec.openplanner.team/stops/Cclchap2"], ["https://tec.openplanner.team/stops/X767afa", "https://tec.openplanner.team/stops/X767aga"], ["https://tec.openplanner.team/stops/H4he103b", "https://tec.openplanner.team/stops/H4wg122a"], ["https://tec.openplanner.team/stops/N528arb", "https://tec.openplanner.team/stops/N528arc"], ["https://tec.openplanner.team/stops/X908aaa", "https://tec.openplanner.team/stops/X908aab"], ["https://tec.openplanner.team/stops/X762aca", "https://tec.openplanner.team/stops/X762acb"], ["https://tec.openplanner.team/stops/LrEkape2", "https://tec.openplanner.team/stops/LrEkirc1"], ["https://tec.openplanner.team/stops/H1sy138b", "https://tec.openplanner.team/stops/H1sy147b"], ["https://tec.openplanner.team/stops/X347aja", "https://tec.openplanner.team/stops/X370acb"], ["https://tec.openplanner.team/stops/Lflec--2", "https://tec.openplanner.team/stops/Lflmc--2"], ["https://tec.openplanner.team/stops/Cfrptfe2", "https://tec.openplanner.team/stops/Cvp3til4"], ["https://tec.openplanner.team/stops/H2pe156a", "https://tec.openplanner.team/stops/H2re163a"], ["https://tec.openplanner.team/stops/LETeg--1", "https://tec.openplanner.team/stops/LMIcamp2"], ["https://tec.openplanner.team/stops/X793abb", "https://tec.openplanner.team/stops/X793agb"], ["https://tec.openplanner.team/stops/X713aha", "https://tec.openplanner.team/stops/X713ama"], ["https://tec.openplanner.team/stops/LVIastr1", "https://tec.openplanner.team/stops/LVIgare1"], ["https://tec.openplanner.team/stops/X359adb", "https://tec.openplanner.team/stops/X371aba"], ["https://tec.openplanner.team/stops/Clrcomb1", "https://tec.openplanner.team/stops/Clrpast1"], ["https://tec.openplanner.team/stops/Cjxpris1", "https://tec.openplanner.team/stops/Cml5ave2"], ["https://tec.openplanner.team/stops/X595aha", "https://tec.openplanner.team/stops/X597aaa"], ["https://tec.openplanner.team/stops/X896aec", "https://tec.openplanner.team/stops/X896aib"], ["https://tec.openplanner.team/stops/Llgerac1", "https://tec.openplanner.team/stops/Llgerac2"], ["https://tec.openplanner.team/stops/X616abb", "https://tec.openplanner.team/stops/X616ada"], ["https://tec.openplanner.team/stops/LDAbois2", "https://tec.openplanner.team/stops/LDAcite2"], ["https://tec.openplanner.team/stops/LGLchap2", "https://tec.openplanner.team/stops/LGLdeni2"], ["https://tec.openplanner.team/stops/X731afa", "https://tec.openplanner.team/stops/X731afb"], ["https://tec.openplanner.team/stops/X658abb", "https://tec.openplanner.team/stops/X658ahb"], ["https://tec.openplanner.team/stops/X664aia", "https://tec.openplanner.team/stops/X664asa"], ["https://tec.openplanner.team/stops/H4bh100a", "https://tec.openplanner.team/stops/H4bh101a"], ["https://tec.openplanner.team/stops/N535ajb", "https://tec.openplanner.team/stops/N539aya"], ["https://tec.openplanner.team/stops/N506btb", "https://tec.openplanner.team/stops/N506bxb"], ["https://tec.openplanner.team/stops/N229aec", "https://tec.openplanner.team/stops/N229afb"], ["https://tec.openplanner.team/stops/Bkrawil2", "https://tec.openplanner.team/stops/Bwolkra2"], ["https://tec.openplanner.team/stops/LPbhaut1", "https://tec.openplanner.team/stops/LVkinst1"], ["https://tec.openplanner.team/stops/LClberw1", "https://tec.openplanner.team/stops/LLCeg--2"], ["https://tec.openplanner.team/stops/H1cd110b", "https://tec.openplanner.team/stops/H1cd113b"], ["https://tec.openplanner.team/stops/LSNbouh3", "https://tec.openplanner.team/stops/LSNchen4"], ["https://tec.openplanner.team/stops/X904ahb", "https://tec.openplanner.team/stops/X904aib"], ["https://tec.openplanner.team/stops/N501heb", "https://tec.openplanner.team/stops/N501mha"], ["https://tec.openplanner.team/stops/N232bsa", "https://tec.openplanner.team/stops/N232btb"], ["https://tec.openplanner.team/stops/X695ada", "https://tec.openplanner.team/stops/X696aia"], ["https://tec.openplanner.team/stops/Bquebut1", "https://tec.openplanner.team/stops/Bquecar2"], ["https://tec.openplanner.team/stops/X994ada", "https://tec.openplanner.team/stops/X994adb"], ["https://tec.openplanner.team/stops/LSPchap2", "https://tec.openplanner.team/stops/LSPchap3"], ["https://tec.openplanner.team/stops/Boplham1", "https://tec.openplanner.team/stops/Boplham2"], ["https://tec.openplanner.team/stops/LNIec--1", "https://tec.openplanner.team/stops/LNIec--2"], ["https://tec.openplanner.team/stops/H1qu100d", "https://tec.openplanner.team/stops/H1qu116a"], ["https://tec.openplanner.team/stops/Lagjado6", "https://tec.openplanner.team/stops/Llgcond2"], ["https://tec.openplanner.team/stops/LClbloc2", "https://tec.openplanner.team/stops/LCljose2"], ["https://tec.openplanner.team/stops/Bbaucai1", "https://tec.openplanner.team/stops/Bbaucai2"], ["https://tec.openplanner.team/stops/LHheg--2", "https://tec.openplanner.team/stops/LHhelia2"], ["https://tec.openplanner.team/stops/LACwass2", "https://tec.openplanner.team/stops/LAvchpl1"], ["https://tec.openplanner.team/stops/Bgnvcha2", "https://tec.openplanner.team/stops/Blhumpo4"], ["https://tec.openplanner.team/stops/N503ajb", "https://tec.openplanner.team/stops/N503ala"], ["https://tec.openplanner.team/stops/H4ms144a", "https://tec.openplanner.team/stops/H4ms146b"], ["https://tec.openplanner.team/stops/Bwatcoq1", "https://tec.openplanner.team/stops/Bwatlbs1"], ["https://tec.openplanner.team/stops/LLgcent1", "https://tec.openplanner.team/stops/LSMfroi1"], ["https://tec.openplanner.team/stops/Ccoha602", "https://tec.openplanner.team/stops/Cgpleco1"], ["https://tec.openplanner.team/stops/X666aha", "https://tec.openplanner.team/stops/X666aja"], ["https://tec.openplanner.team/stops/X718aea", "https://tec.openplanner.team/stops/X718agb"], ["https://tec.openplanner.team/stops/LABbert2", "https://tec.openplanner.team/stops/LBevill2"], ["https://tec.openplanner.team/stops/Cvtchap2", "https://tec.openplanner.team/stops/Cvtvail2"], ["https://tec.openplanner.team/stops/Ctmwaut1", "https://tec.openplanner.team/stops/Ctmwaut2"], ["https://tec.openplanner.team/stops/Cbctile", "https://tec.openplanner.team/stops/Csbberg1"], ["https://tec.openplanner.team/stops/LaAronh2", "https://tec.openplanner.team/stops/LkEherg2"], ["https://tec.openplanner.team/stops/H1to151a", "https://tec.openplanner.team/stops/H1to151b"], ["https://tec.openplanner.team/stops/H4os222a", "https://tec.openplanner.team/stops/H4os222b"], ["https://tec.openplanner.team/stops/Canpeup2", "https://tec.openplanner.team/stops/H2an102a"], ["https://tec.openplanner.team/stops/Bquebth2", "https://tec.openplanner.team/stops/Bquecro1"], ["https://tec.openplanner.team/stops/Lrcvinc2", "https://tec.openplanner.team/stops/Lvopaqu1"], ["https://tec.openplanner.team/stops/H5pe135b", "https://tec.openplanner.team/stops/H5pe153b"], ["https://tec.openplanner.team/stops/H1ht126a", "https://tec.openplanner.team/stops/H1te191b"], ["https://tec.openplanner.team/stops/H4an111a", "https://tec.openplanner.team/stops/H4rs118b"], ["https://tec.openplanner.team/stops/N111aba", "https://tec.openplanner.team/stops/N127aha"], ["https://tec.openplanner.team/stops/LHMaube2", "https://tec.openplanner.team/stops/LHMchev2"], ["https://tec.openplanner.team/stops/H4mo136a", "https://tec.openplanner.team/stops/H4mo161a"], ["https://tec.openplanner.team/stops/H1hw125b", "https://tec.openplanner.team/stops/H1ls109a"], ["https://tec.openplanner.team/stops/Lmimili2", "https://tec.openplanner.team/stops/Lvtcime2"], ["https://tec.openplanner.team/stops/N508aaa", "https://tec.openplanner.team/stops/N508afa"], ["https://tec.openplanner.team/stops/LFRhock1", "https://tec.openplanner.team/stops/LFRhock4"], ["https://tec.openplanner.team/stops/N521ala", "https://tec.openplanner.team/stops/N525ana"], ["https://tec.openplanner.team/stops/N535amd", "https://tec.openplanner.team/stops/N564acb"], ["https://tec.openplanner.team/stops/H2mg136a", "https://tec.openplanner.team/stops/H2mg141b"], ["https://tec.openplanner.team/stops/N536aga", "https://tec.openplanner.team/stops/N536aoa"], ["https://tec.openplanner.team/stops/X801ceb", "https://tec.openplanner.team/stops/X802aja"], ["https://tec.openplanner.team/stops/N135aua", "https://tec.openplanner.team/stops/N135aub"], ["https://tec.openplanner.team/stops/H4we137a", "https://tec.openplanner.team/stops/H4we137c"], ["https://tec.openplanner.team/stops/Bsamfma1", "https://tec.openplanner.team/stops/Bsamlon1"], ["https://tec.openplanner.team/stops/LARgare1", "https://tec.openplanner.team/stops/Lchorme2"], ["https://tec.openplanner.team/stops/LAvchpl2", "https://tec.openplanner.team/stops/NL74aja"], ["https://tec.openplanner.team/stops/Lsehosp1", "https://tec.openplanner.team/stops/Lseptsa2"], ["https://tec.openplanner.team/stops/CMmorg1", "https://tec.openplanner.team/stops/Cmoecol1"], ["https://tec.openplanner.team/stops/Cbufron2", "https://tec.openplanner.team/stops/Ccacoup1"], ["https://tec.openplanner.team/stops/X619aab", "https://tec.openplanner.team/stops/X619aga"], ["https://tec.openplanner.team/stops/LFyanto1", "https://tec.openplanner.team/stops/LFyanto2"], ["https://tec.openplanner.team/stops/Bohngai2", "https://tec.openplanner.team/stops/Bohnrph2"], ["https://tec.openplanner.team/stops/N510aeb", "https://tec.openplanner.team/stops/N513aza"], ["https://tec.openplanner.team/stops/H4he102b", "https://tec.openplanner.team/stops/H4he106b"], ["https://tec.openplanner.team/stops/N501coa", "https://tec.openplanner.team/stops/N501mdb"], ["https://tec.openplanner.team/stops/Bwsppos1", "https://tec.openplanner.team/stops/Bwsppos2"], ["https://tec.openplanner.team/stops/Bbchsac1", "https://tec.openplanner.team/stops/Bhtirin2"], ["https://tec.openplanner.team/stops/LHUalbe1", "https://tec.openplanner.team/stops/LHUaveu1"], ["https://tec.openplanner.team/stops/H1ro130b", "https://tec.openplanner.team/stops/H1ro133a"], ["https://tec.openplanner.team/stops/H4bw101b", "https://tec.openplanner.team/stops/H4co142a"], ["https://tec.openplanner.team/stops/N215aaa", "https://tec.openplanner.team/stops/N228aca"], ["https://tec.openplanner.team/stops/Lvoec--2", "https://tec.openplanner.team/stops/Lvoec--3"], ["https://tec.openplanner.team/stops/LBNlong2", "https://tec.openplanner.team/stops/LBNvill6"], ["https://tec.openplanner.team/stops/N331aga", "https://tec.openplanner.team/stops/N331aka"], ["https://tec.openplanner.team/stops/LSIgera2", "https://tec.openplanner.team/stops/LVAwolf2"], ["https://tec.openplanner.team/stops/N539afa", "https://tec.openplanner.team/stops/N539bfb"], ["https://tec.openplanner.team/stops/LrApark1", "https://tec.openplanner.team/stops/LtEnatu2"], ["https://tec.openplanner.team/stops/Cnabult3", "https://tec.openplanner.team/stops/Cnaplbu1"], ["https://tec.openplanner.team/stops/N423acb", "https://tec.openplanner.team/stops/N424adb"], ["https://tec.openplanner.team/stops/H2hl113a", "https://tec.openplanner.team/stops/H2hp124c"], ["https://tec.openplanner.team/stops/N574abb", "https://tec.openplanner.team/stops/N576aea"], ["https://tec.openplanner.team/stops/Beclpla1", "https://tec.openplanner.team/stops/Beclpla2"], ["https://tec.openplanner.team/stops/Lvichpl1", "https://tec.openplanner.team/stops/Lvichpl2"], ["https://tec.openplanner.team/stops/LTHec--2", "https://tec.openplanner.team/stops/LTHperr2"], ["https://tec.openplanner.team/stops/X937aba", "https://tec.openplanner.team/stops/X937adb"], ["https://tec.openplanner.team/stops/H2ha132a", "https://tec.openplanner.team/stops/H2ha141c"], ["https://tec.openplanner.team/stops/Bnodcab1", "https://tec.openplanner.team/stops/Bnodegl1"], ["https://tec.openplanner.team/stops/Ccybeau2", "https://tec.openplanner.team/stops/Ccyrmon2"], ["https://tec.openplanner.team/stops/Ljemeca1", "https://tec.openplanner.team/stops/Ljemeca2"], ["https://tec.openplanner.team/stops/H1ha189b", "https://tec.openplanner.team/stops/H1vh136a"], ["https://tec.openplanner.team/stops/N232aia", "https://tec.openplanner.team/stops/N232caa"], ["https://tec.openplanner.team/stops/Bhoealt2", "https://tec.openplanner.team/stops/Bzluqga2"], ["https://tec.openplanner.team/stops/H4ne145b", "https://tec.openplanner.team/stops/H4wa151b"], ["https://tec.openplanner.team/stops/H1ht121b", "https://tec.openplanner.team/stops/H1ht135b"], ["https://tec.openplanner.team/stops/H1do109b", "https://tec.openplanner.team/stops/H1do117b"], ["https://tec.openplanner.team/stops/X666adb", "https://tec.openplanner.team/stops/X666aea"], ["https://tec.openplanner.team/stops/H2bh120a", "https://tec.openplanner.team/stops/H2bh120b"], ["https://tec.openplanner.team/stops/Bboufsm1", "https://tec.openplanner.team/stops/Bbougar1"], ["https://tec.openplanner.team/stops/X653ada", "https://tec.openplanner.team/stops/X653adb"], ["https://tec.openplanner.team/stops/LbUgend1", "https://tec.openplanner.team/stops/LbUvith2"], ["https://tec.openplanner.team/stops/Llgjoie1", "https://tec.openplanner.team/stops/Llgjoie2"], ["https://tec.openplanner.team/stops/N538aua", "https://tec.openplanner.team/stops/N539awa"], ["https://tec.openplanner.team/stops/X771aab", "https://tec.openplanner.team/stops/X771abb"], ["https://tec.openplanner.team/stops/H4tu170a", "https://tec.openplanner.team/stops/H4tu172a"], ["https://tec.openplanner.team/stops/N211aga", "https://tec.openplanner.team/stops/N212agc"], ["https://tec.openplanner.team/stops/X760abb", "https://tec.openplanner.team/stops/X786ada"], ["https://tec.openplanner.team/stops/N511aqa", "https://tec.openplanner.team/stops/N511avb"], ["https://tec.openplanner.team/stops/Canh1941", "https://tec.openplanner.team/stops/Canlalu1"], ["https://tec.openplanner.team/stops/X801alb", "https://tec.openplanner.team/stops/X801amb"], ["https://tec.openplanner.team/stops/X661ara", "https://tec.openplanner.team/stops/X661bca"], ["https://tec.openplanner.team/stops/Bbsicas2", "https://tec.openplanner.team/stops/Bbsifml2"], ["https://tec.openplanner.team/stops/H1eu107a", "https://tec.openplanner.team/stops/H1lb152b"], ["https://tec.openplanner.team/stops/X940aec", "https://tec.openplanner.team/stops/X940afa"], ["https://tec.openplanner.team/stops/H4ba102b", "https://tec.openplanner.team/stops/H4ga151a"], ["https://tec.openplanner.team/stops/H2tr252b", "https://tec.openplanner.team/stops/H2tr254a"], ["https://tec.openplanner.team/stops/H1ms247b", "https://tec.openplanner.team/stops/H1ms936a"], ["https://tec.openplanner.team/stops/N501ewa", "https://tec.openplanner.team/stops/N501exa"], ["https://tec.openplanner.team/stops/X801bra", "https://tec.openplanner.team/stops/X801caa"], ["https://tec.openplanner.team/stops/LSsaxhe2", "https://tec.openplanner.team/stops/LSznoel2"], ["https://tec.openplanner.team/stops/Crebrux2", "https://tec.openplanner.team/stops/Creha761"], ["https://tec.openplanner.team/stops/H1ro134a", "https://tec.openplanner.team/stops/H1ro137a"], ["https://tec.openplanner.team/stops/N501lea", "https://tec.openplanner.team/stops/N538ahb"], ["https://tec.openplanner.team/stops/Blhueca2", "https://tec.openplanner.team/stops/Blhupa14"], ["https://tec.openplanner.team/stops/LCRchpl1", "https://tec.openplanner.team/stops/LTymahr2"], ["https://tec.openplanner.team/stops/N520aia", "https://tec.openplanner.team/stops/N520ajb"], ["https://tec.openplanner.team/stops/Bfledpi2", "https://tec.openplanner.team/stops/Cflchel3"], ["https://tec.openplanner.team/stops/Bgntcbo2", "https://tec.openplanner.team/stops/Bsomh671"], ["https://tec.openplanner.team/stops/Cgxmaco2", "https://tec.openplanner.team/stops/CMleer1"], ["https://tec.openplanner.team/stops/H4wr173c", "https://tec.openplanner.team/stops/H5qu148a"], ["https://tec.openplanner.team/stops/Cctfaub1", "https://tec.openplanner.team/stops/Cctstro3"], ["https://tec.openplanner.team/stops/H4lz161a", "https://tec.openplanner.team/stops/H4lz162a"], ["https://tec.openplanner.team/stops/X991aka", "https://tec.openplanner.team/stops/X991akb"], ["https://tec.openplanner.team/stops/H4ar107b", "https://tec.openplanner.team/stops/H4ar172b"], ["https://tec.openplanner.team/stops/N532aca", "https://tec.openplanner.team/stops/N532acb"], ["https://tec.openplanner.team/stops/LaM266-2", "https://tec.openplanner.team/stops/LaMjous2"], ["https://tec.openplanner.team/stops/N536aab", "https://tec.openplanner.team/stops/N563aaa"], ["https://tec.openplanner.team/stops/X808aba", "https://tec.openplanner.team/stops/X809afa"], ["https://tec.openplanner.team/stops/LWEgend2", "https://tec.openplanner.team/stops/LWEpl--1"], ["https://tec.openplanner.team/stops/H2sb223b", "https://tec.openplanner.team/stops/H2sb228c"], ["https://tec.openplanner.team/stops/H5rx139a", "https://tec.openplanner.team/stops/H5rx139b"], ["https://tec.openplanner.team/stops/H1en103a", "https://tec.openplanner.team/stops/H1en104d"], ["https://tec.openplanner.team/stops/Bneersa2", "https://tec.openplanner.team/stops/Bneesj31"], ["https://tec.openplanner.team/stops/X925afa", "https://tec.openplanner.team/stops/X925ama"], ["https://tec.openplanner.team/stops/X947aba", "https://tec.openplanner.team/stops/X947aeb"], ["https://tec.openplanner.team/stops/Cmachau1", "https://tec.openplanner.team/stops/Cmaprov2"], ["https://tec.openplanner.team/stops/X725aka", "https://tec.openplanner.team/stops/X725ala"], ["https://tec.openplanner.team/stops/Bmouegl1", "https://tec.openplanner.team/stops/Bottrfa1"], ["https://tec.openplanner.team/stops/Cmlchan2", "https://tec.openplanner.team/stops/Cmlours2"], ["https://tec.openplanner.team/stops/Ccheden1", "https://tec.openplanner.team/stops/Ccheden2"], ["https://tec.openplanner.team/stops/LkEspor1", "https://tec.openplanner.team/stops/LkEwolf1"], ["https://tec.openplanner.team/stops/Ladandr1", "https://tec.openplanner.team/stops/Ladboti2"], ["https://tec.openplanner.team/stops/N201aoa", "https://tec.openplanner.team/stops/N201apb"], ["https://tec.openplanner.team/stops/LeLdorf1", "https://tec.openplanner.team/stops/LkAsonn2"], ["https://tec.openplanner.team/stops/X609akb", "https://tec.openplanner.team/stops/X610afa"], ["https://tec.openplanner.team/stops/LNEcite2", "https://tec.openplanner.team/stops/LNEgare*"], ["https://tec.openplanner.team/stops/Cbiferm2", "https://tec.openplanner.team/stops/Cdogrro2"], ["https://tec.openplanner.team/stops/H1hr115a", "https://tec.openplanner.team/stops/H1hr129b"], ["https://tec.openplanner.team/stops/LSNmoul2", "https://tec.openplanner.team/stops/LSNretr2"], ["https://tec.openplanner.team/stops/LLOberl2", "https://tec.openplanner.team/stops/LRRcole1"], ["https://tec.openplanner.team/stops/Lbrnanc1", "https://tec.openplanner.team/stops/Lbrplai2"], ["https://tec.openplanner.team/stops/N501bua", "https://tec.openplanner.team/stops/N501eoa"], ["https://tec.openplanner.team/stops/N118apa", "https://tec.openplanner.team/stops/N118azb"], ["https://tec.openplanner.team/stops/LTiflor2", "https://tec.openplanner.team/stops/LTiruel2"], ["https://tec.openplanner.team/stops/Lhrchar3", "https://tec.openplanner.team/stops/Lhrdron1"], ["https://tec.openplanner.team/stops/Chhbiet1", "https://tec.openplanner.team/stops/Cmx3arb2"], ["https://tec.openplanner.team/stops/Bllnein3", "https://tec.openplanner.team/stops/Bllnrro2"], ["https://tec.openplanner.team/stops/LCPlacr2", "https://tec.openplanner.team/stops/LSdbote1"], ["https://tec.openplanner.team/stops/Cvlbvir1", "https://tec.openplanner.team/stops/Cvlpeau1"], ["https://tec.openplanner.team/stops/LJAcent1", "https://tec.openplanner.team/stops/LJAfawe1"], ["https://tec.openplanner.team/stops/LSZarze4", "https://tec.openplanner.team/stops/LSZsolw1"], ["https://tec.openplanner.team/stops/H1as104b", "https://tec.openplanner.team/stops/H1mv240b"], ["https://tec.openplanner.team/stops/X542afa", "https://tec.openplanner.team/stops/X750aza"], ["https://tec.openplanner.team/stops/Cbmind2", "https://tec.openplanner.team/stops/Cbmpano2"], ["https://tec.openplanner.team/stops/Cbmplac2", "https://tec.openplanner.team/stops/H1bt100a"], ["https://tec.openplanner.team/stops/H2sv213b", "https://tec.openplanner.team/stops/H2sv215b"], ["https://tec.openplanner.team/stops/N503ajc", "https://tec.openplanner.team/stops/N503akb"], ["https://tec.openplanner.team/stops/LCnvill1", "https://tec.openplanner.team/stops/LSpshin2"], ["https://tec.openplanner.team/stops/Cpllimi1", "https://tec.openplanner.team/stops/Cpllimi2"], ["https://tec.openplanner.team/stops/X877aea", "https://tec.openplanner.team/stops/X877aeb"], ["https://tec.openplanner.team/stops/LHHpt--3", "https://tec.openplanner.team/stops/LSkbo832"], ["https://tec.openplanner.team/stops/X901agb", "https://tec.openplanner.team/stops/X902ava"], ["https://tec.openplanner.team/stops/H1cd111c", "https://tec.openplanner.team/stops/H1cd111d"], ["https://tec.openplanner.team/stops/N160aea", "https://tec.openplanner.team/stops/N160aeb"], ["https://tec.openplanner.team/stops/Bhmmcsc1", "https://tec.openplanner.team/stops/Bhmmhde1"], ["https://tec.openplanner.team/stops/Buccchu1", "https://tec.openplanner.team/stops/Buccgob2"], ["https://tec.openplanner.team/stops/Cctjoue4", "https://tec.openplanner.team/stops/Cctjoue6"], ["https://tec.openplanner.team/stops/LXobaty1", "https://tec.openplanner.team/stops/LXobaty2"], ["https://tec.openplanner.team/stops/H5el104a", "https://tec.openplanner.team/stops/H5wo130b"], ["https://tec.openplanner.team/stops/LhUrich1", "https://tec.openplanner.team/stops/LmUzent2"], ["https://tec.openplanner.team/stops/Llggcha1", "https://tec.openplanner.team/stops/Lsntvbi1"], ["https://tec.openplanner.team/stops/LATdame1", "https://tec.openplanner.team/stops/LATrori2"], ["https://tec.openplanner.team/stops/Blhumpo1", "https://tec.openplanner.team/stops/Blhupa11"], ["https://tec.openplanner.team/stops/N365aaa", "https://tec.openplanner.team/stops/X361aca"], ["https://tec.openplanner.team/stops/Bllnfeq1", "https://tec.openplanner.team/stops/Bottbru2"], ["https://tec.openplanner.team/stops/X764aab", "https://tec.openplanner.team/stops/X765aea"], ["https://tec.openplanner.team/stops/H1mm131b", "https://tec.openplanner.team/stops/H1vb147b"], ["https://tec.openplanner.team/stops/H4co105a", "https://tec.openplanner.team/stops/H4co149a"], ["https://tec.openplanner.team/stops/N510aca", "https://tec.openplanner.team/stops/N510aeb"], ["https://tec.openplanner.team/stops/Llgbavi0", "https://tec.openplanner.team/stops/Llgkurt1"], ["https://tec.openplanner.team/stops/LHrcarr1", "https://tec.openplanner.team/stops/LHrfang1"], ["https://tec.openplanner.team/stops/X879afa", "https://tec.openplanner.team/stops/X879afb"], ["https://tec.openplanner.team/stops/X902afd", "https://tec.openplanner.team/stops/X902bca"], ["https://tec.openplanner.team/stops/N101aga", "https://tec.openplanner.team/stops/N101agc"], ["https://tec.openplanner.team/stops/H1ms285a", "https://tec.openplanner.team/stops/H1ms309a"], ["https://tec.openplanner.team/stops/N102aba", "https://tec.openplanner.team/stops/N151ajd"], ["https://tec.openplanner.team/stops/Bbstcha2", "https://tec.openplanner.team/stops/Cbtstac1"], ["https://tec.openplanner.team/stops/LSZcock1", "https://tec.openplanner.team/stops/LSZgare2"], ["https://tec.openplanner.team/stops/N348aeb", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/Cmlcpar1", "https://tec.openplanner.team/stops/Cmlmatc1"], ["https://tec.openplanner.team/stops/Ccyfroi1", "https://tec.openplanner.team/stops/NH01aeb"], ["https://tec.openplanner.team/stops/LPOleli1", "https://tec.openplanner.team/stops/LSdbvue2"], ["https://tec.openplanner.team/stops/X616acb", "https://tec.openplanner.team/stops/X616aja"], ["https://tec.openplanner.team/stops/Bbxlmid4", "https://tec.openplanner.team/stops/H1gy115b"], ["https://tec.openplanner.team/stops/X925akb", "https://tec.openplanner.team/stops/X947ada"], ["https://tec.openplanner.team/stops/Llgbwez2", "https://tec.openplanner.team/stops/Llgdouf1"], ["https://tec.openplanner.team/stops/H4ar177a", "https://tec.openplanner.team/stops/H4ar178a"], ["https://tec.openplanner.team/stops/H1ho141b", "https://tec.openplanner.team/stops/H1wg126a"], ["https://tec.openplanner.team/stops/Barcsta1", "https://tec.openplanner.team/stops/Bpecvme1"], ["https://tec.openplanner.team/stops/X901aia", "https://tec.openplanner.team/stops/X901arb"], ["https://tec.openplanner.team/stops/N547aha", "https://tec.openplanner.team/stops/N548awb"], ["https://tec.openplanner.team/stops/Lloretr1", "https://tec.openplanner.team/stops/Lloretr2"], ["https://tec.openplanner.team/stops/H4es108a", "https://tec.openplanner.team/stops/H4es108b"], ["https://tec.openplanner.team/stops/H1hm173a", "https://tec.openplanner.team/stops/H1hm173b"], ["https://tec.openplanner.team/stops/H2jo163a", "https://tec.openplanner.team/stops/H2jo164a"], ["https://tec.openplanner.team/stops/N231agb", "https://tec.openplanner.team/stops/N232byb"], ["https://tec.openplanner.team/stops/N528afa", "https://tec.openplanner.team/stops/N551aaa"], ["https://tec.openplanner.team/stops/X901avb", "https://tec.openplanner.team/stops/X901awb"], ["https://tec.openplanner.team/stops/H1wz169a", "https://tec.openplanner.team/stops/H3bi102a"], ["https://tec.openplanner.team/stops/H4ty295a", "https://tec.openplanner.team/stops/H4ty295d"], ["https://tec.openplanner.team/stops/LBLfoxh2", "https://tec.openplanner.team/stops/LBXhacb2"], ["https://tec.openplanner.team/stops/X607aha", "https://tec.openplanner.team/stops/X607ahb"], ["https://tec.openplanner.team/stops/Bsomtnd2", "https://tec.openplanner.team/stops/Bsomtpm1"], ["https://tec.openplanner.team/stops/H4pp122b", "https://tec.openplanner.team/stops/H4qu408b"], ["https://tec.openplanner.team/stops/Cbuegl1", "https://tec.openplanner.team/stops/Cbupla2"], ["https://tec.openplanner.team/stops/Bsammon1", "https://tec.openplanner.team/stops/Bsammon3"], ["https://tec.openplanner.team/stops/X804bzb", "https://tec.openplanner.team/stops/X831aaa"], ["https://tec.openplanner.team/stops/LWDsott1", "https://tec.openplanner.team/stops/LWDsott2"], ["https://tec.openplanner.team/stops/N137aec", "https://tec.openplanner.team/stops/N137aha"], ["https://tec.openplanner.team/stops/X839aba", "https://tec.openplanner.team/stops/X839acb"], ["https://tec.openplanner.team/stops/Lfhgare2", "https://tec.openplanner.team/stops/Lfhmalv2"], ["https://tec.openplanner.team/stops/Bndbgar1", "https://tec.openplanner.team/stops/Btlgegl1"], ["https://tec.openplanner.team/stops/H1fl142a", "https://tec.openplanner.team/stops/H1qu114a"], ["https://tec.openplanner.team/stops/N209ada", "https://tec.openplanner.team/stops/N209adb"], ["https://tec.openplanner.team/stops/Lrogene1", "https://tec.openplanner.team/stops/Lrosaun1"], ["https://tec.openplanner.team/stops/N244aja", "https://tec.openplanner.team/stops/N244ala"], ["https://tec.openplanner.team/stops/H4ha170a", "https://tec.openplanner.team/stops/H4ha171a"], ["https://tec.openplanner.team/stops/LHHindu1", "https://tec.openplanner.team/stops/LHHpt--4"], ["https://tec.openplanner.team/stops/Bwaygrg1", "https://tec.openplanner.team/stops/Bwaypav1"], ["https://tec.openplanner.team/stops/X621ada", "https://tec.openplanner.team/stops/X621aeb"], ["https://tec.openplanner.team/stops/X620aga", "https://tec.openplanner.team/stops/X621aaa"], ["https://tec.openplanner.team/stops/X889adb", "https://tec.openplanner.team/stops/X889aea"], ["https://tec.openplanner.team/stops/LPOpass1", "https://tec.openplanner.team/stops/LPOpass2"], ["https://tec.openplanner.team/stops/LaSbahn1", "https://tec.openplanner.team/stops/LaSkape1"], ["https://tec.openplanner.team/stops/N549afa", "https://tec.openplanner.team/stops/N549afb"], ["https://tec.openplanner.team/stops/X899ada", "https://tec.openplanner.team/stops/X899adb"], ["https://tec.openplanner.team/stops/Lghfors2", "https://tec.openplanner.team/stops/Lghleon2"], ["https://tec.openplanner.team/stops/Creluth1", "https://tec.openplanner.team/stops/Crestan1"], ["https://tec.openplanner.team/stops/Cplcite1", "https://tec.openplanner.team/stops/Cplstfa3"], ["https://tec.openplanner.team/stops/N501dtc", "https://tec.openplanner.team/stops/N501jtb"], ["https://tec.openplanner.team/stops/Brxmhai3", "https://tec.openplanner.team/stops/Brxmhai4"], ["https://tec.openplanner.team/stops/N543aaa", "https://tec.openplanner.team/stops/N543apa"], ["https://tec.openplanner.team/stops/N501dqa", "https://tec.openplanner.team/stops/N501mvc"], ["https://tec.openplanner.team/stops/LONcroi1", "https://tec.openplanner.team/stops/Lthfagn1"], ["https://tec.openplanner.team/stops/Bperalv2", "https://tec.openplanner.team/stops/Bpersyn2"], ["https://tec.openplanner.team/stops/H1do121a", "https://tec.openplanner.team/stops/H1el137b"], ["https://tec.openplanner.team/stops/H1cu111a", "https://tec.openplanner.team/stops/H1hn202a"], ["https://tec.openplanner.team/stops/H4wp150a", "https://tec.openplanner.team/stops/H4wp150c"], ["https://tec.openplanner.team/stops/N513acd", "https://tec.openplanner.team/stops/N513aea"], ["https://tec.openplanner.team/stops/LVPcrok1", "https://tec.openplanner.team/stops/LVPgrot3"], ["https://tec.openplanner.team/stops/H4ma202b", "https://tec.openplanner.team/stops/H4ma400b"], ["https://tec.openplanner.team/stops/Bbsiabb1", "https://tec.openplanner.team/stops/Bbsiabb2"], ["https://tec.openplanner.team/stops/LHTbeau2", "https://tec.openplanner.team/stops/LHTmoul1"], ["https://tec.openplanner.team/stops/LCn4---2", "https://tec.openplanner.team/stops/LCnvill1"], ["https://tec.openplanner.team/stops/Bwatbca1", "https://tec.openplanner.team/stops/Bwatbca2"], ["https://tec.openplanner.team/stops/N501bya", "https://tec.openplanner.team/stops/N501ckb"], ["https://tec.openplanner.team/stops/Lprceri1", "https://tec.openplanner.team/stops/Lprceri2"], ["https://tec.openplanner.team/stops/N522abc", "https://tec.openplanner.team/stops/N522aga"], ["https://tec.openplanner.team/stops/N120aaa", "https://tec.openplanner.team/stops/N120aab"], ["https://tec.openplanner.team/stops/Llgcite4", "https://tec.openplanner.team/stops/Llgcock2"], ["https://tec.openplanner.team/stops/X369aaa", "https://tec.openplanner.team/stops/X858agb"], ["https://tec.openplanner.team/stops/Bottpry1", "https://tec.openplanner.team/stops/Brixape2"], ["https://tec.openplanner.team/stops/LeUindu1", "https://tec.openplanner.team/stops/LkTkabi2"], ["https://tec.openplanner.team/stops/X725ata", "https://tec.openplanner.team/stops/X767aib"], ["https://tec.openplanner.team/stops/X979adb", "https://tec.openplanner.team/stops/X979aka"], ["https://tec.openplanner.team/stops/H4bo115a", "https://tec.openplanner.team/stops/H4bo178b"], ["https://tec.openplanner.team/stops/Lsesabl2", "https://tec.openplanner.team/stops/Lsevill1"], ["https://tec.openplanner.team/stops/Clbchba1", "https://tec.openplanner.team/stops/Cthgrat1"], ["https://tec.openplanner.team/stops/Lrecomp2", "https://tec.openplanner.team/stops/Lrevaul2"], ["https://tec.openplanner.team/stops/Bmalper1", "https://tec.openplanner.team/stops/Borbod92"], ["https://tec.openplanner.team/stops/LNCesne1", "https://tec.openplanner.team/stops/LNCfawe1"], ["https://tec.openplanner.team/stops/H4jm116b", "https://tec.openplanner.team/stops/H4we137d"], ["https://tec.openplanner.team/stops/X608agb", "https://tec.openplanner.team/stops/X608aza"], ["https://tec.openplanner.team/stops/X948aga", "https://tec.openplanner.team/stops/X948aha"], ["https://tec.openplanner.team/stops/X605aeb", "https://tec.openplanner.team/stops/X605afb"], ["https://tec.openplanner.team/stops/X734afa", "https://tec.openplanner.team/stops/X734agb"], ["https://tec.openplanner.team/stops/H1no140a", "https://tec.openplanner.team/stops/H1no142a"], ["https://tec.openplanner.team/stops/X618aha", "https://tec.openplanner.team/stops/X618ana"], ["https://tec.openplanner.team/stops/LHEoutr1", "https://tec.openplanner.team/stops/LHEvign1"], ["https://tec.openplanner.team/stops/N539aha", "https://tec.openplanner.team/stops/N539ara"], ["https://tec.openplanner.team/stops/N528afa", "https://tec.openplanner.team/stops/N528afb"], ["https://tec.openplanner.team/stops/X811aca", "https://tec.openplanner.team/stops/X811aia"], ["https://tec.openplanner.team/stops/Cselibe1", "https://tec.openplanner.team/stops/Cselibe2"], ["https://tec.openplanner.team/stops/Bborbif1", "https://tec.openplanner.team/stops/Bborbif2"], ["https://tec.openplanner.team/stops/LrUkult1", "https://tec.openplanner.team/stops/LrUkult2"], ["https://tec.openplanner.team/stops/H4ae102a", "https://tec.openplanner.team/stops/H5rx112a"], ["https://tec.openplanner.team/stops/Lcehipp2", "https://tec.openplanner.team/stops/Lcemeta2"], ["https://tec.openplanner.team/stops/X823aaa", "https://tec.openplanner.team/stops/X823aab"], ["https://tec.openplanner.team/stops/H1ms271b", "https://tec.openplanner.team/stops/H1ms288b"], ["https://tec.openplanner.team/stops/Lagmair1", "https://tec.openplanner.team/stops/Lkiecol2"], ["https://tec.openplanner.team/stops/LPRcasi2", "https://tec.openplanner.team/stops/LPRvill2"], ["https://tec.openplanner.team/stops/LFTcroi1", "https://tec.openplanner.team/stops/LNAdemo1"], ["https://tec.openplanner.team/stops/Ccipier2", "https://tec.openplanner.team/stops/Cmtcapi1"], ["https://tec.openplanner.team/stops/X877aba", "https://tec.openplanner.team/stops/X877abb"], ["https://tec.openplanner.team/stops/H4hq132b", "https://tec.openplanner.team/stops/H4hs135a"], ["https://tec.openplanner.team/stops/LhEtivo1", "https://tec.openplanner.team/stops/LlNbruc1"], ["https://tec.openplanner.team/stops/H1ch101b", "https://tec.openplanner.team/stops/H5ar102a"], ["https://tec.openplanner.team/stops/LWRheyd1", "https://tec.openplanner.team/stops/LWRtroi1"], ["https://tec.openplanner.team/stops/LaMbrei1", "https://tec.openplanner.team/stops/LaMhe421"], ["https://tec.openplanner.team/stops/Baudhde1", "https://tec.openplanner.team/stops/Baudvdu2"], ["https://tec.openplanner.team/stops/Bhanwav2", "https://tec.openplanner.team/stops/NL37aba"], ["https://tec.openplanner.team/stops/X911amb", "https://tec.openplanner.team/stops/X911aua"], ["https://tec.openplanner.team/stops/Lagcile1", "https://tec.openplanner.team/stops/Laggare1"], ["https://tec.openplanner.team/stops/LGogare2", "https://tec.openplanner.team/stops/LNEbois1"], ["https://tec.openplanner.team/stops/Blkbavo1", "https://tec.openplanner.team/stops/Blkbbvh2"], ["https://tec.openplanner.team/stops/Lsn184-2", "https://tec.openplanner.team/stops/Lsnlibe2"], ["https://tec.openplanner.team/stops/H4ka192b", "https://tec.openplanner.team/stops/H4ka399a"], ["https://tec.openplanner.team/stops/Cgocat1", "https://tec.openplanner.team/stops/Cgocat2"], ["https://tec.openplanner.team/stops/H5wo123a", "https://tec.openplanner.team/stops/H5wo134b"], ["https://tec.openplanner.team/stops/N562bkb", "https://tec.openplanner.team/stops/N562bsa"], ["https://tec.openplanner.team/stops/Lemacac1", "https://tec.openplanner.team/stops/Lemcarm2"], ["https://tec.openplanner.team/stops/Lhrlalo4", "https://tec.openplanner.team/stops/Lhrlamb1"], ["https://tec.openplanner.team/stops/H4ce107a", "https://tec.openplanner.team/stops/H4ef111b"], ["https://tec.openplanner.team/stops/N390abb", "https://tec.openplanner.team/stops/X998azb"], ["https://tec.openplanner.team/stops/H4ea127b", "https://tec.openplanner.team/stops/H4ea130a"], ["https://tec.openplanner.team/stops/NL77aab", "https://tec.openplanner.team/stops/NL77aca"], ["https://tec.openplanner.team/stops/LSMec--1", "https://tec.openplanner.team/stops/LSMeg--2"], ["https://tec.openplanner.team/stops/X618afa", "https://tec.openplanner.team/stops/X618ama"], ["https://tec.openplanner.team/stops/N531abb", "https://tec.openplanner.team/stops/N531ala"], ["https://tec.openplanner.team/stops/Cmtduch1", "https://tec.openplanner.team/stops/Cmtmath1"], ["https://tec.openplanner.team/stops/X919aja", "https://tec.openplanner.team/stops/X919ajd"], ["https://tec.openplanner.team/stops/LeUdepo1", "https://tec.openplanner.team/stops/LeUdepo2"], ["https://tec.openplanner.team/stops/X602aca", "https://tec.openplanner.team/stops/X623abb"], ["https://tec.openplanner.team/stops/LBUchpl2", "https://tec.openplanner.team/stops/LBUplac1"], ["https://tec.openplanner.team/stops/N220aca", "https://tec.openplanner.team/stops/N220ada"], ["https://tec.openplanner.team/stops/H4ma398a", "https://tec.openplanner.team/stops/H4oq226a"], ["https://tec.openplanner.team/stops/X982aza", "https://tec.openplanner.team/stops/X982cda"], ["https://tec.openplanner.team/stops/Cbwcab1", "https://tec.openplanner.team/stops/Cmggthi1"], ["https://tec.openplanner.team/stops/Bllngar1", "https://tec.openplanner.team/stops/Bllngar2"], ["https://tec.openplanner.team/stops/H4ep126b", "https://tec.openplanner.team/stops/H4ep128b"], ["https://tec.openplanner.team/stops/NC14agb", "https://tec.openplanner.team/stops/NC14ahb"], ["https://tec.openplanner.team/stops/X941adb", "https://tec.openplanner.team/stops/X942acb"], ["https://tec.openplanner.team/stops/N308beb", "https://tec.openplanner.team/stops/N308bfb"], ["https://tec.openplanner.team/stops/H4hn114a", "https://tec.openplanner.team/stops/H4hn114b"], ["https://tec.openplanner.team/stops/LClberw2", "https://tec.openplanner.team/stops/LLCeg--2"], ["https://tec.openplanner.team/stops/H5at108b", "https://tec.openplanner.team/stops/H5at116a"], ["https://tec.openplanner.team/stops/Bdlvpco2", "https://tec.openplanner.team/stops/Bdvm4ca1"], ["https://tec.openplanner.team/stops/H4ty287b", "https://tec.openplanner.team/stops/H4ty327b"], ["https://tec.openplanner.team/stops/Bmrspel1", "https://tec.openplanner.team/stops/Bohnrpl2"], ["https://tec.openplanner.team/stops/H2hg154b", "https://tec.openplanner.team/stops/H2hg154f"], ["https://tec.openplanner.team/stops/N360aab", "https://tec.openplanner.team/stops/N360adb"], ["https://tec.openplanner.team/stops/H4ar172b", "https://tec.openplanner.team/stops/H4pl135b"], ["https://tec.openplanner.team/stops/H2gy105a", "https://tec.openplanner.team/stops/H2gy106a"], ["https://tec.openplanner.team/stops/X763ada", "https://tec.openplanner.team/stops/X763adb"], ["https://tec.openplanner.team/stops/LAtaube1", "https://tec.openplanner.team/stops/NL35aba"], ["https://tec.openplanner.team/stops/N543bba", "https://tec.openplanner.team/stops/N543cpa"], ["https://tec.openplanner.team/stops/X871aea", "https://tec.openplanner.team/stops/X880acb"], ["https://tec.openplanner.team/stops/Btubfab1", "https://tec.openplanner.team/stops/Btubsam2"], ["https://tec.openplanner.team/stops/H1hi124a", "https://tec.openplanner.team/stops/H1hi124b"], ["https://tec.openplanner.team/stops/H4ve133b", "https://tec.openplanner.team/stops/H4ve140b"], ["https://tec.openplanner.team/stops/Cmcgoch1", "https://tec.openplanner.team/stops/Cmgcabi1"], ["https://tec.openplanner.team/stops/X639akb", "https://tec.openplanner.team/stops/X639alb"], ["https://tec.openplanner.team/stops/H1ms296d", "https://tec.openplanner.team/stops/H1ms923a"], ["https://tec.openplanner.team/stops/Ccugrtr1", "https://tec.openplanner.team/stops/Ccutill2"], ["https://tec.openplanner.team/stops/Bblagar6", "https://tec.openplanner.team/stops/Bblagar7"], ["https://tec.openplanner.team/stops/NC14abb", "https://tec.openplanner.team/stops/NC14ava"], ["https://tec.openplanner.team/stops/Cgosmoi2", "https://tec.openplanner.team/stops/Cjufauv2"], ["https://tec.openplanner.team/stops/Lsehya-2", "https://tec.openplanner.team/stops/Lsepapi1"], ["https://tec.openplanner.team/stops/Cflchap3", "https://tec.openplanner.team/stops/Cflchmo1"], ["https://tec.openplanner.team/stops/Blsmcha4", "https://tec.openplanner.team/stops/Bneelaa1"], ["https://tec.openplanner.team/stops/X783aab", "https://tec.openplanner.team/stops/X789aha"], ["https://tec.openplanner.team/stops/Lmncasi2", "https://tec.openplanner.team/stops/Lmnmart1"], ["https://tec.openplanner.team/stops/Lgdblom2", "https://tec.openplanner.team/stops/Lgdstoc2"], ["https://tec.openplanner.team/stops/N528abb", "https://tec.openplanner.team/stops/N528afc"], ["https://tec.openplanner.team/stops/N123aca", "https://tec.openplanner.team/stops/N123adb"], ["https://tec.openplanner.team/stops/X823afa", "https://tec.openplanner.team/stops/X823afd"], ["https://tec.openplanner.team/stops/X631aaa", "https://tec.openplanner.team/stops/X644aeb"], ["https://tec.openplanner.team/stops/Ccimont2", "https://tec.openplanner.team/stops/Ccisolv1"], ["https://tec.openplanner.team/stops/H2sb224a", "https://tec.openplanner.team/stops/H2sb224b"], ["https://tec.openplanner.team/stops/N120amb", "https://tec.openplanner.team/stops/N244ava"], ["https://tec.openplanner.team/stops/X999adb", "https://tec.openplanner.team/stops/X999aeb"], ["https://tec.openplanner.team/stops/LDLbeau1", "https://tec.openplanner.team/stops/LLNbeau2"], ["https://tec.openplanner.team/stops/Ccpblpo2", "https://tec.openplanner.team/stops/H2ch108a"], ["https://tec.openplanner.team/stops/H4va232b", "https://tec.openplanner.team/stops/H4vd230a"], ["https://tec.openplanner.team/stops/N232bja", "https://tec.openplanner.team/stops/N232cbb"], ["https://tec.openplanner.team/stops/X725aja", "https://tec.openplanner.team/stops/X725bgb"], ["https://tec.openplanner.team/stops/Bkrabhu1", "https://tec.openplanner.team/stops/Boveklo1"], ["https://tec.openplanner.team/stops/X636aga", "https://tec.openplanner.team/stops/X636aia"], ["https://tec.openplanner.team/stops/LJUmate1", "https://tec.openplanner.team/stops/LJUmate2"], ["https://tec.openplanner.team/stops/Cmlcent2", "https://tec.openplanner.team/stops/Cmlecha2"], ["https://tec.openplanner.team/stops/N331afb", "https://tec.openplanner.team/stops/N331afc"], ["https://tec.openplanner.team/stops/LhSfrep2", "https://tec.openplanner.team/stops/LkOzoll2"], ["https://tec.openplanner.team/stops/H4ty343b", "https://tec.openplanner.team/stops/H4ty405b"], ["https://tec.openplanner.team/stops/N514aca", "https://tec.openplanner.team/stops/N514aka"], ["https://tec.openplanner.team/stops/H1hn209a", "https://tec.openplanner.team/stops/H1ms312b"], ["https://tec.openplanner.team/stops/LAvchpl1", "https://tec.openplanner.team/stops/LAvrout2"], ["https://tec.openplanner.team/stops/Ccicloc2", "https://tec.openplanner.team/stops/Clvimtr3"], ["https://tec.openplanner.team/stops/X793aba", "https://tec.openplanner.team/stops/X793aea"], ["https://tec.openplanner.team/stops/N501lda", "https://tec.openplanner.team/stops/N501lnb"], ["https://tec.openplanner.team/stops/H4wn124d", "https://tec.openplanner.team/stops/H4wn128b"], ["https://tec.openplanner.team/stops/LCIneuv1", "https://tec.openplanner.team/stops/LCIpiet1"], ["https://tec.openplanner.team/stops/LOV48--2", "https://tec.openplanner.team/stops/LRObarr2"], ["https://tec.openplanner.team/stops/N203aba", "https://tec.openplanner.team/stops/N203afa"], ["https://tec.openplanner.team/stops/LTEkerk1", "https://tec.openplanner.team/stops/LTEkl121"], ["https://tec.openplanner.team/stops/H1hr115a", "https://tec.openplanner.team/stops/H1ne137a"], ["https://tec.openplanner.team/stops/LCRgdrt2", "https://tec.openplanner.team/stops/LCRrape1"], ["https://tec.openplanner.team/stops/LGEwalk1", "https://tec.openplanner.team/stops/LLSba9-1"], ["https://tec.openplanner.team/stops/X361aca", "https://tec.openplanner.team/stops/X361acb"], ["https://tec.openplanner.team/stops/N232bfa", "https://tec.openplanner.team/stops/N232bfb"], ["https://tec.openplanner.team/stops/X616aea", "https://tec.openplanner.team/stops/X616aeb"], ["https://tec.openplanner.team/stops/Cselait2", "https://tec.openplanner.team/stops/Csepost2"], ["https://tec.openplanner.team/stops/N260aab", "https://tec.openplanner.team/stops/N270acb"], ["https://tec.openplanner.team/stops/LJAbois1", "https://tec.openplanner.team/stops/LSU50--1"], ["https://tec.openplanner.team/stops/N538ata", "https://tec.openplanner.team/stops/N538atb"], ["https://tec.openplanner.team/stops/H2ec104b", "https://tec.openplanner.team/stops/H2ec105a"], ["https://tec.openplanner.team/stops/X907aeb", "https://tec.openplanner.team/stops/X907afb"], ["https://tec.openplanner.team/stops/X612aea", "https://tec.openplanner.team/stops/X612aeb"], ["https://tec.openplanner.team/stops/H1do108e", "https://tec.openplanner.team/stops/H1do109a"], ["https://tec.openplanner.team/stops/H2bh119a", "https://tec.openplanner.team/stops/H2bh121a"], ["https://tec.openplanner.team/stops/H1bo107b", "https://tec.openplanner.team/stops/H1bo109b"], ["https://tec.openplanner.team/stops/N528aca", "https://tec.openplanner.team/stops/N528ala"], ["https://tec.openplanner.team/stops/Lvtcime2", "https://tec.openplanner.team/stops/Lvtegli*"], ["https://tec.openplanner.team/stops/H5qu149b", "https://tec.openplanner.team/stops/H5qu156b"], ["https://tec.openplanner.team/stops/N110aha", "https://tec.openplanner.team/stops/N125aaa"], ["https://tec.openplanner.team/stops/Cgofbru1", "https://tec.openplanner.team/stops/CMfbru1"], ["https://tec.openplanner.team/stops/X955aaa", "https://tec.openplanner.team/stops/X955aga"], ["https://tec.openplanner.team/stops/Cfldand1", "https://tec.openplanner.team/stops/Cflmart1"], ["https://tec.openplanner.team/stops/LBVclig1", "https://tec.openplanner.team/stops/LBVzand2"], ["https://tec.openplanner.team/stops/Loubiez2", "https://tec.openplanner.team/stops/Louvira2"], ["https://tec.openplanner.team/stops/Bsaubra1", "https://tec.openplanner.team/stops/Bwspm372"], ["https://tec.openplanner.team/stops/X947adb", "https://tec.openplanner.team/stops/X948aka"], ["https://tec.openplanner.team/stops/H4vx362a", "https://tec.openplanner.team/stops/H4vx366a"], ["https://tec.openplanner.team/stops/X817aeb", "https://tec.openplanner.team/stops/X817agb"], ["https://tec.openplanner.team/stops/Lsebuil1", "https://tec.openplanner.team/stops/Lsehtsa2"], ["https://tec.openplanner.team/stops/Bglabra1", "https://tec.openplanner.team/stops/Bglarha1"], ["https://tec.openplanner.team/stops/Ccomott1", "https://tec.openplanner.team/stops/Crowall1"], ["https://tec.openplanner.team/stops/H2ec102a", "https://tec.openplanner.team/stops/H2ec110b"], ["https://tec.openplanner.team/stops/Bperrma1", "https://tec.openplanner.team/stops/Bpersyn1"], ["https://tec.openplanner.team/stops/Lghcoqs1", "https://tec.openplanner.team/stops/Lghprea4"], ["https://tec.openplanner.team/stops/H2bh108a", "https://tec.openplanner.team/stops/H2fa108b"], ["https://tec.openplanner.team/stops/H1ne138b", "https://tec.openplanner.team/stops/H1ne141a"], ["https://tec.openplanner.team/stops/N215acb", "https://tec.openplanner.team/stops/N232ceb"], ["https://tec.openplanner.team/stops/X829abb", "https://tec.openplanner.team/stops/X829aca"], ["https://tec.openplanner.team/stops/Beceres1", "https://tec.openplanner.team/stops/H2mi124a"], ["https://tec.openplanner.team/stops/LON02--2", "https://tec.openplanner.team/stops/LON21--1"], ["https://tec.openplanner.team/stops/Llgfoss1", "https://tec.openplanner.team/stops/Llghull2"], ["https://tec.openplanner.team/stops/X637aja", "https://tec.openplanner.team/stops/X638aoa"], ["https://tec.openplanner.team/stops/Bstemco1", "https://tec.openplanner.team/stops/Bstemco2"], ["https://tec.openplanner.team/stops/LHHroua1", "https://tec.openplanner.team/stops/LHHroua2"], ["https://tec.openplanner.team/stops/Bcrnnca1", "https://tec.openplanner.team/stops/Bernpla1"], ["https://tec.openplanner.team/stops/H4ty267b", "https://tec.openplanner.team/stops/H4ty268a"], ["https://tec.openplanner.team/stops/X662asa", "https://tec.openplanner.team/stops/X662ata"], ["https://tec.openplanner.team/stops/Bwatcoc1", "https://tec.openplanner.team/stops/Bwatmsj6"], ["https://tec.openplanner.team/stops/LbOlier2", "https://tec.openplanner.team/stops/LbOre152"], ["https://tec.openplanner.team/stops/NL81afa", "https://tec.openplanner.team/stops/NL81aga"], ["https://tec.openplanner.team/stops/H4hx113b", "https://tec.openplanner.team/stops/H4mo160a"], ["https://tec.openplanner.team/stops/H2ca108b", "https://tec.openplanner.team/stops/H2ca112b"], ["https://tec.openplanner.team/stops/NC14aob", "https://tec.openplanner.team/stops/NC14aoe"], ["https://tec.openplanner.team/stops/Cmyedpa4", "https://tec.openplanner.team/stops/Cmyronc2"], ["https://tec.openplanner.team/stops/X762acb", "https://tec.openplanner.team/stops/X762adb"], ["https://tec.openplanner.team/stops/LJEchat2", "https://tec.openplanner.team/stops/LJEerno1"], ["https://tec.openplanner.team/stops/H1el134b", "https://tec.openplanner.team/stops/H1el135b"], ["https://tec.openplanner.team/stops/Livmoul1", "https://tec.openplanner.team/stops/Livpost1"], ["https://tec.openplanner.team/stops/N120agb", "https://tec.openplanner.team/stops/N120anb"], ["https://tec.openplanner.team/stops/Laggare1", "https://tec.openplanner.team/stops/Lagjado6"], ["https://tec.openplanner.team/stops/LCLgend1", "https://tec.openplanner.team/stops/NL35adc"], ["https://tec.openplanner.team/stops/Ltibure1", "https://tec.openplanner.team/stops/Ltibure2"], ["https://tec.openplanner.team/stops/N507aad", "https://tec.openplanner.team/stops/N507abb"], ["https://tec.openplanner.team/stops/CMsartc2", "https://tec.openplanner.team/stops/CMsolei2"], ["https://tec.openplanner.team/stops/Bblaaca1", "https://tec.openplanner.team/stops/Bblaqsj2"], ["https://tec.openplanner.team/stops/Cfnegli2", "https://tec.openplanner.team/stops/Cfnsenz1"], ["https://tec.openplanner.team/stops/H1as154a", "https://tec.openplanner.team/stops/H1as154b"], ["https://tec.openplanner.team/stops/LbUmors2", "https://tec.openplanner.team/stops/LmRh%C3%B6812"], ["https://tec.openplanner.team/stops/X982ahb", "https://tec.openplanner.team/stops/X982aia"], ["https://tec.openplanner.team/stops/Lveherl1", "https://tec.openplanner.team/stops/Lvehopi4"], ["https://tec.openplanner.team/stops/Lboastr1", "https://tec.openplanner.team/stops/Lbomc--6"], ["https://tec.openplanner.team/stops/LNCecdo1", "https://tec.openplanner.team/stops/LNCspor1"], ["https://tec.openplanner.team/stops/N501aka", "https://tec.openplanner.team/stops/N501mbb"], ["https://tec.openplanner.team/stops/Lbrdepo1", "https://tec.openplanner.team/stops/Ljucrah2"], ["https://tec.openplanner.team/stops/X942aba", "https://tec.openplanner.team/stops/X942abb"], ["https://tec.openplanner.team/stops/H5at137a", "https://tec.openplanner.team/stops/H5at137b"], ["https://tec.openplanner.team/stops/Cmlpomm1", "https://tec.openplanner.team/stops/Cmltomb1"], ["https://tec.openplanner.team/stops/H1gg116a", "https://tec.openplanner.team/stops/H1mb130a"], ["https://tec.openplanner.team/stops/Ljupiet1", "https://tec.openplanner.team/stops/Ljupiet2"], ["https://tec.openplanner.team/stops/Caihai81", "https://tec.openplanner.team/stops/Caistro1"], ["https://tec.openplanner.team/stops/H4os220a", "https://tec.openplanner.team/stops/H4os222b"], ["https://tec.openplanner.team/stops/X779aab", "https://tec.openplanner.team/stops/X912aga"], ["https://tec.openplanner.team/stops/Cplbbro1", "https://tec.openplanner.team/stops/Cplelec1"], ["https://tec.openplanner.team/stops/LWAchpg1", "https://tec.openplanner.team/stops/LWAchpg2"], ["https://tec.openplanner.team/stops/X624adb", "https://tec.openplanner.team/stops/X624aka"], ["https://tec.openplanner.team/stops/Ldihusq1", "https://tec.openplanner.team/stops/Ldihusq2"], ["https://tec.openplanner.team/stops/LATjaur1", "https://tec.openplanner.team/stops/LATjaur2"], ["https://tec.openplanner.team/stops/Lsntvbi1", "https://tec.openplanner.team/stops/Lsntvbi2"], ["https://tec.openplanner.team/stops/N287aba", "https://tec.openplanner.team/stops/N287acb"], ["https://tec.openplanner.team/stops/Bettbue1", "https://tec.openplanner.team/stops/Bettlha1"], ["https://tec.openplanner.team/stops/Bnivn972", "https://tec.openplanner.team/stops/Bnivvai2"], ["https://tec.openplanner.team/stops/X601bfb", "https://tec.openplanner.team/stops/X601bgb"], ["https://tec.openplanner.team/stops/LSLhale2", "https://tec.openplanner.team/stops/LSLvaux1"], ["https://tec.openplanner.team/stops/H5bl116a", "https://tec.openplanner.team/stops/H5bl116b"], ["https://tec.openplanner.team/stops/LLnec--1", "https://tec.openplanner.team/stops/LLnpomp2"], ["https://tec.openplanner.team/stops/H4fr139b", "https://tec.openplanner.team/stops/H4ma418a"], ["https://tec.openplanner.team/stops/H4ta118b", "https://tec.openplanner.team/stops/H4ta123b"], ["https://tec.openplanner.team/stops/H2ha135c", "https://tec.openplanner.team/stops/H2ha136b"], ["https://tec.openplanner.team/stops/X639aab", "https://tec.openplanner.team/stops/X652ahb"], ["https://tec.openplanner.team/stops/N521aoa", "https://tec.openplanner.team/stops/N523aaa"], ["https://tec.openplanner.team/stops/NC14aba", "https://tec.openplanner.team/stops/NC44ahb"], ["https://tec.openplanner.team/stops/LSOtrou2", "https://tec.openplanner.team/stops/LSOvoie2"], ["https://tec.openplanner.team/stops/Bblafab2", "https://tec.openplanner.team/stops/Bblatet2"], ["https://tec.openplanner.team/stops/LrEkais2", "https://tec.openplanner.team/stops/Ltheg--2"], ["https://tec.openplanner.team/stops/LEHmarc1", "https://tec.openplanner.team/stops/LNCmc--1"], ["https://tec.openplanner.team/stops/Laltrap1", "https://tec.openplanner.team/stops/Llaeg--2"], ["https://tec.openplanner.team/stops/LrAbotz1", "https://tec.openplanner.team/stops/LrAbotz2"], ["https://tec.openplanner.team/stops/X948aka", "https://tec.openplanner.team/stops/X948akb"], ["https://tec.openplanner.team/stops/H4ma162a", "https://tec.openplanner.team/stops/H4ry132b"], ["https://tec.openplanner.team/stops/Bwatifr1", "https://tec.openplanner.team/stops/Bwatifr2"], ["https://tec.openplanner.team/stops/LHTboul1", "https://tec.openplanner.team/stops/LHTboul2"], ["https://tec.openplanner.team/stops/X664aqa", "https://tec.openplanner.team/stops/X664arb"], ["https://tec.openplanner.team/stops/X617aha", "https://tec.openplanner.team/stops/X625ada"], ["https://tec.openplanner.team/stops/H4bc106a", "https://tec.openplanner.team/stops/H4bc108b"], ["https://tec.openplanner.team/stops/H1hh110b", "https://tec.openplanner.team/stops/H1hh118b"], ["https://tec.openplanner.team/stops/Cbugara1", "https://tec.openplanner.team/stops/N103aea"], ["https://tec.openplanner.team/stops/X801ama", "https://tec.openplanner.team/stops/X801apa"], ["https://tec.openplanner.team/stops/N507afa", "https://tec.openplanner.team/stops/N507aga"], ["https://tec.openplanner.team/stops/LEBdoct2", "https://tec.openplanner.team/stops/LEBeg--2"], ["https://tec.openplanner.team/stops/H4te252a", "https://tec.openplanner.team/stops/H4te252b"], ["https://tec.openplanner.team/stops/N346aaa", "https://tec.openplanner.team/stops/N347aca"], ["https://tec.openplanner.team/stops/X910afd", "https://tec.openplanner.team/stops/X910aib"], ["https://tec.openplanner.team/stops/X616aea", "https://tec.openplanner.team/stops/X624aba"], ["https://tec.openplanner.team/stops/LaMahof1", "https://tec.openplanner.team/stops/LmRmuhl1"], ["https://tec.openplanner.team/stops/Bmalwvi2", "https://tec.openplanner.team/stops/Btlbtbe2"], ["https://tec.openplanner.team/stops/LHaodei2", "https://tec.openplanner.team/stops/LHarenn4"], ["https://tec.openplanner.team/stops/LLVboss1", "https://tec.openplanner.team/stops/LLVerri1"], ["https://tec.openplanner.team/stops/N529aab", "https://tec.openplanner.team/stops/N529aeb"], ["https://tec.openplanner.team/stops/Lagsauh2", "https://tec.openplanner.team/stops/Lagtenn2"], ["https://tec.openplanner.team/stops/Cjuecho2", "https://tec.openplanner.team/stops/Cjuplho2"], ["https://tec.openplanner.team/stops/H1ls109a", "https://tec.openplanner.team/stops/H1ls110b"], ["https://tec.openplanner.team/stops/Bhevcur2", "https://tec.openplanner.team/stops/Bvilcha1"], ["https://tec.openplanner.team/stops/N501nea", "https://tec.openplanner.team/stops/N501neb"], ["https://tec.openplanner.team/stops/Lemcarm2", "https://tec.openplanner.team/stops/Lemhenn2"], ["https://tec.openplanner.team/stops/Lsnagne1", "https://tec.openplanner.team/stops/Lsnecco1"], ["https://tec.openplanner.team/stops/N232acb", "https://tec.openplanner.team/stops/N286abb"], ["https://tec.openplanner.team/stops/X992aab", "https://tec.openplanner.team/stops/X992afa"], ["https://tec.openplanner.team/stops/N503aeb", "https://tec.openplanner.team/stops/N503afb"], ["https://tec.openplanner.team/stops/NL77ada", "https://tec.openplanner.team/stops/NL77afb"], ["https://tec.openplanner.team/stops/N558aab", "https://tec.openplanner.team/stops/N558ama"], ["https://tec.openplanner.team/stops/H1be100a", "https://tec.openplanner.team/stops/H1be100b"], ["https://tec.openplanner.team/stops/LRmstat2", "https://tec.openplanner.team/stops/LTEzinn1"], ["https://tec.openplanner.team/stops/LHe3com2", "https://tec.openplanner.team/stops/LHecime1"], ["https://tec.openplanner.team/stops/Lmoboeu1", "https://tec.openplanner.team/stops/Lmoboeu4"], ["https://tec.openplanner.team/stops/LDLbaye1", "https://tec.openplanner.team/stops/LDLbeau2"], ["https://tec.openplanner.team/stops/H2bh121a", "https://tec.openplanner.team/stops/H2fa108b"], ["https://tec.openplanner.team/stops/LFocent1", "https://tec.openplanner.team/stops/LFothie2"], ["https://tec.openplanner.team/stops/N232aoa", "https://tec.openplanner.team/stops/N251aab"], ["https://tec.openplanner.team/stops/N510adb", "https://tec.openplanner.team/stops/N513bia"], ["https://tec.openplanner.team/stops/N115aaa", "https://tec.openplanner.team/stops/N170aga"], ["https://tec.openplanner.team/stops/X608aua", "https://tec.openplanner.team/stops/X608aza"], ["https://tec.openplanner.team/stops/X869ada", "https://tec.openplanner.team/stops/X870ajb"], ["https://tec.openplanner.team/stops/Broncan1", "https://tec.openplanner.team/stops/Broncan2"], ["https://tec.openplanner.team/stops/Ccogrha2", "https://tec.openplanner.team/stops/Ccotrie4"], ["https://tec.openplanner.team/stops/Llghenr2", "https://tec.openplanner.team/stops/Llgrain2"], ["https://tec.openplanner.team/stops/H1cr100a", "https://tec.openplanner.team/stops/H1hl126b"], ["https://tec.openplanner.team/stops/X714adb", "https://tec.openplanner.team/stops/X715aib"], ["https://tec.openplanner.team/stops/Lhrlalo3", "https://tec.openplanner.team/stops/Ljudeme4"], ["https://tec.openplanner.team/stops/Cmestas1", "https://tec.openplanner.team/stops/Cmestas2"], ["https://tec.openplanner.team/stops/LESathe1", "https://tec.openplanner.team/stops/LESathe2"], ["https://tec.openplanner.team/stops/X982atb", "https://tec.openplanner.team/stops/X982baa"], ["https://tec.openplanner.team/stops/Cmlasie1", "https://tec.openplanner.team/stops/Cmlasie2"], ["https://tec.openplanner.team/stops/Ccugilb1", "https://tec.openplanner.team/stops/Ccugilb2"], ["https://tec.openplanner.team/stops/Bgisman2", "https://tec.openplanner.team/stops/Bnilhau1"], ["https://tec.openplanner.team/stops/Bndbgar2", "https://tec.openplanner.team/stops/Btlgmou1"], ["https://tec.openplanner.team/stops/N204aia", "https://tec.openplanner.team/stops/N204akb"], ["https://tec.openplanner.team/stops/N517adb", "https://tec.openplanner.team/stops/N517add"], ["https://tec.openplanner.team/stops/Cmghay1", "https://tec.openplanner.team/stops/Cmgpla1"], ["https://tec.openplanner.team/stops/LHUsart2", "https://tec.openplanner.team/stops/LTiespe1"], ["https://tec.openplanner.team/stops/H4ty290b", "https://tec.openplanner.team/stops/H4ty298a"], ["https://tec.openplanner.team/stops/LlEzoll1", "https://tec.openplanner.team/stops/LmLbeil1"], ["https://tec.openplanner.team/stops/Bgntalt3", "https://tec.openplanner.team/stops/Bsgeqpb2"], ["https://tec.openplanner.team/stops/N519aba", "https://tec.openplanner.team/stops/N519ada"], ["https://tec.openplanner.team/stops/LWHkape1", "https://tec.openplanner.team/stops/LWHmath1"], ["https://tec.openplanner.team/stops/Cgpmoul1", "https://tec.openplanner.team/stops/Cgpmoul2"], ["https://tec.openplanner.team/stops/Btslcej1", "https://tec.openplanner.team/stops/Btsllsc2"], ["https://tec.openplanner.team/stops/X731ada", "https://tec.openplanner.team/stops/X731ama"], ["https://tec.openplanner.team/stops/LTyhall1", "https://tec.openplanner.team/stops/LTywaut1"], ["https://tec.openplanner.team/stops/Lrc594-2", "https://tec.openplanner.team/stops/Lrccomm2"], ["https://tec.openplanner.team/stops/X891aca", "https://tec.openplanner.team/stops/X891ada"], ["https://tec.openplanner.team/stops/LDAptbo1", "https://tec.openplanner.team/stops/LDArich2"], ["https://tec.openplanner.team/stops/X750afa", "https://tec.openplanner.team/stops/X784aaa"], ["https://tec.openplanner.team/stops/N551aga", "https://tec.openplanner.team/stops/N551aib"], ["https://tec.openplanner.team/stops/LFyec--2", "https://tec.openplanner.team/stops/LWamass1"], ["https://tec.openplanner.team/stops/Bgntcha2", "https://tec.openplanner.team/stops/Bsgetri1"], ["https://tec.openplanner.team/stops/LRmkult2", "https://tec.openplanner.team/stops/LRmrode2"], ["https://tec.openplanner.team/stops/N539aya", "https://tec.openplanner.team/stops/N540aqa"], ["https://tec.openplanner.team/stops/LHEjose1", "https://tec.openplanner.team/stops/LJOchar1"], ["https://tec.openplanner.team/stops/LPlchpl1", "https://tec.openplanner.team/stops/LPldoua3"], ["https://tec.openplanner.team/stops/LMalune4", "https://tec.openplanner.team/stops/LMamuse4"], ["https://tec.openplanner.team/stops/LHMsipp1", "https://tec.openplanner.team/stops/LHMsipp2"], ["https://tec.openplanner.team/stops/N230ahb", "https://tec.openplanner.team/stops/N230aib"], ["https://tec.openplanner.team/stops/Beclbse2", "https://tec.openplanner.team/stops/H2ec108a"], ["https://tec.openplanner.team/stops/Cfmmart1", "https://tec.openplanner.team/stops/Cfmmart2"], ["https://tec.openplanner.team/stops/X713aaa", "https://tec.openplanner.team/stops/X713aba"], ["https://tec.openplanner.team/stops/H1ha190b", "https://tec.openplanner.team/stops/H1ha196a"], ["https://tec.openplanner.team/stops/H4eh100a", "https://tec.openplanner.team/stops/H4eh101a"], ["https://tec.openplanner.team/stops/N351ara", "https://tec.openplanner.team/stops/N351asa"], ["https://tec.openplanner.team/stops/X911aea", "https://tec.openplanner.team/stops/X911asa"], ["https://tec.openplanner.team/stops/Bbsgbos1", "https://tec.openplanner.team/stops/Bbsgrve2"], ["https://tec.openplanner.team/stops/LEnchan1", "https://tec.openplanner.team/stops/NL67aba"], ["https://tec.openplanner.team/stops/Blasren1", "https://tec.openplanner.team/stops/Brixchw1"], ["https://tec.openplanner.team/stops/Bhercsj1", "https://tec.openplanner.team/stops/Bhercsj2"], ["https://tec.openplanner.team/stops/NC24aga", "https://tec.openplanner.team/stops/NC24agb"], ["https://tec.openplanner.team/stops/Lsmeg--2", "https://tec.openplanner.team/stops/Lsmnico2"], ["https://tec.openplanner.team/stops/X609aab", "https://tec.openplanner.team/stops/X609aqb"], ["https://tec.openplanner.team/stops/H2mg137a", "https://tec.openplanner.team/stops/H2mg149a"], ["https://tec.openplanner.team/stops/Cfrcham1", "https://tec.openplanner.team/stops/Cfrfaub3"], ["https://tec.openplanner.team/stops/N501ena", "https://tec.openplanner.team/stops/N501klb"], ["https://tec.openplanner.team/stops/LNCneuv1", "https://tec.openplanner.team/stops/LNCsart2"], ["https://tec.openplanner.team/stops/H4wi167b", "https://tec.openplanner.team/stops/H5pe144a"], ["https://tec.openplanner.team/stops/X602anb", "https://tec.openplanner.team/stops/X602aoa"], ["https://tec.openplanner.team/stops/N585ahb", "https://tec.openplanner.team/stops/N585aia"], ["https://tec.openplanner.team/stops/LMupont2", "https://tec.openplanner.team/stops/LMuvill1"], ["https://tec.openplanner.team/stops/LPtrefa2", "https://tec.openplanner.team/stops/LRchaie2"], ["https://tec.openplanner.team/stops/H4ma400b", "https://tec.openplanner.team/stops/H4ma411a"], ["https://tec.openplanner.team/stops/N120aia", "https://tec.openplanner.team/stops/N120aib"], ["https://tec.openplanner.team/stops/Bdoncar2", "https://tec.openplanner.team/stops/Bgliopp4"], ["https://tec.openplanner.team/stops/X764aea", "https://tec.openplanner.team/stops/X764afb"], ["https://tec.openplanner.team/stops/N550abd", "https://tec.openplanner.team/stops/N550abe"], ["https://tec.openplanner.team/stops/Bnilcha1", "https://tec.openplanner.team/stops/Bnilpie1"], ["https://tec.openplanner.team/stops/LDppana2", "https://tec.openplanner.team/stops/LDpzol-2"], ["https://tec.openplanner.team/stops/Ladchat1", "https://tec.openplanner.team/stops/Laddelc2"], ["https://tec.openplanner.team/stops/LCPecli2", "https://tec.openplanner.team/stops/LMtcent1"], ["https://tec.openplanner.team/stops/N260abc", "https://tec.openplanner.team/stops/N270acb"], ["https://tec.openplanner.team/stops/LrUlasc1", "https://tec.openplanner.team/stops/LrUoudl2"], ["https://tec.openplanner.team/stops/H4mb138a", "https://tec.openplanner.team/stops/H4mb141a"], ["https://tec.openplanner.team/stops/Lsnlhon1", "https://tec.openplanner.team/stops/Lsnmala2"], ["https://tec.openplanner.team/stops/LTolijn*", "https://tec.openplanner.team/stops/LTowijk1"], ["https://tec.openplanner.team/stops/N538aca", "https://tec.openplanner.team/stops/N538akb"], ["https://tec.openplanner.team/stops/Lmojoan2", "https://tec.openplanner.team/stops/Lmopans1"], ["https://tec.openplanner.team/stops/H1ho138b", "https://tec.openplanner.team/stops/H1wl126a"], ["https://tec.openplanner.team/stops/LThgare2", "https://tec.openplanner.team/stops/LThnouv1"], ["https://tec.openplanner.team/stops/H1bi101b", "https://tec.openplanner.team/stops/H1bu143a"], ["https://tec.openplanner.team/stops/LHTbaud2", "https://tec.openplanner.team/stops/LHTmonu2"], ["https://tec.openplanner.team/stops/Lgdhura1", "https://tec.openplanner.team/stops/LMhvina2"], ["https://tec.openplanner.team/stops/N506baa", "https://tec.openplanner.team/stops/N506bad"], ["https://tec.openplanner.team/stops/Cgymetr1", "https://tec.openplanner.team/stops/Cgymetr2"], ["https://tec.openplanner.team/stops/Lrolecl1", "https://tec.openplanner.team/stops/Lrolecl2"], ["https://tec.openplanner.team/stops/Crapaep1", "https://tec.openplanner.team/stops/Cravign3"], ["https://tec.openplanner.team/stops/X646abb", "https://tec.openplanner.team/stops/X646aca"], ["https://tec.openplanner.team/stops/Crbhurt1", "https://tec.openplanner.team/stops/Crbreve1"], ["https://tec.openplanner.team/stops/N118acc", "https://tec.openplanner.team/stops/N118afa"], ["https://tec.openplanner.team/stops/N132ada", "https://tec.openplanner.team/stops/N132adb"], ["https://tec.openplanner.team/stops/H1ho128b", "https://tec.openplanner.team/stops/H1ho130b"], ["https://tec.openplanner.team/stops/N123acb", "https://tec.openplanner.team/stops/N124aca"], ["https://tec.openplanner.team/stops/H4wn123a", "https://tec.openplanner.team/stops/H4wn138a"], ["https://tec.openplanner.team/stops/N535amc", "https://tec.openplanner.team/stops/N564abb"], ["https://tec.openplanner.team/stops/Canegbr2", "https://tec.openplanner.team/stops/Canlemo1"], ["https://tec.openplanner.team/stops/LjeGRPMB", "https://tec.openplanner.team/stops/Ljelamb2"], ["https://tec.openplanner.team/stops/N501eta", "https://tec.openplanner.team/stops/N501kba"], ["https://tec.openplanner.team/stops/X223acb", "https://tec.openplanner.team/stops/X919aba"], ["https://tec.openplanner.team/stops/Ctynamu1", "https://tec.openplanner.team/stops/N137afa"], ["https://tec.openplanner.team/stops/H4or116a", "https://tec.openplanner.team/stops/H4or116b"], ["https://tec.openplanner.team/stops/N512abb", "https://tec.openplanner.team/stops/N512axb"], ["https://tec.openplanner.team/stops/H1pa104a", "https://tec.openplanner.team/stops/H1pa108a"], ["https://tec.openplanner.team/stops/X390aia", "https://tec.openplanner.team/stops/X902aha"], ["https://tec.openplanner.team/stops/H1bs112a", "https://tec.openplanner.team/stops/H1bs112b"], ["https://tec.openplanner.team/stops/X625afb", "https://tec.openplanner.team/stops/X625aga"], ["https://tec.openplanner.team/stops/LLbcafe1", "https://tec.openplanner.team/stops/LLbpt--1"], ["https://tec.openplanner.team/stops/LOrchau2", "https://tec.openplanner.team/stops/LORpave2"], ["https://tec.openplanner.team/stops/H4wa150a", "https://tec.openplanner.team/stops/H4wa159a"], ["https://tec.openplanner.team/stops/Lsmgdry1", "https://tec.openplanner.team/stops/Lveinva2"], ["https://tec.openplanner.team/stops/LaMades1", "https://tec.openplanner.team/stops/LaMades2"], ["https://tec.openplanner.team/stops/Ldihusq2", "https://tec.openplanner.team/stops/Ldilyce*"], ["https://tec.openplanner.team/stops/X902aqa", "https://tec.openplanner.team/stops/X902axa"], ["https://tec.openplanner.team/stops/N301aca", "https://tec.openplanner.team/stops/N302aea"], ["https://tec.openplanner.team/stops/H4lz122b", "https://tec.openplanner.team/stops/H4lz156b"], ["https://tec.openplanner.team/stops/Lvcdumo2", "https://tec.openplanner.team/stops/Lvcsapi2"], ["https://tec.openplanner.team/stops/H4ev126b", "https://tec.openplanner.team/stops/H4hx116b"], ["https://tec.openplanner.team/stops/Cthdeco1", "https://tec.openplanner.team/stops/Cthrlef2"], ["https://tec.openplanner.team/stops/NL76abb", "https://tec.openplanner.team/stops/NL76arb"], ["https://tec.openplanner.team/stops/Bclgpch1", "https://tec.openplanner.team/stops/Bllnlb51"], ["https://tec.openplanner.team/stops/LBSchpl2", "https://tec.openplanner.team/stops/LGLcour4"], ["https://tec.openplanner.team/stops/N117bda", "https://tec.openplanner.team/stops/N145acb"], ["https://tec.openplanner.team/stops/Cthalou1", "https://tec.openplanner.team/stops/Cthdeco2"], ["https://tec.openplanner.team/stops/H5rx135a", "https://tec.openplanner.team/stops/H5rx136a"], ["https://tec.openplanner.team/stops/Loudela1", "https://tec.openplanner.team/stops/Lsedese2"], ["https://tec.openplanner.team/stops/LhPkirc2", "https://tec.openplanner.team/stops/LhPprum2"], ["https://tec.openplanner.team/stops/LHUaron2", "https://tec.openplanner.team/stops/LHUlebe0"], ["https://tec.openplanner.team/stops/Ccomiau1", "https://tec.openplanner.team/stops/Cronova1"], ["https://tec.openplanner.team/stops/Cvlgrta1", "https://tec.openplanner.team/stops/NH21adb"], ["https://tec.openplanner.team/stops/Cgocapu2", "https://tec.openplanner.team/stops/Cgofabr1"], ["https://tec.openplanner.team/stops/LGmhedo1", "https://tec.openplanner.team/stops/LHmcarr2"], ["https://tec.openplanner.team/stops/Cjuhden3", "https://tec.openplanner.team/stops/Cjupllo1"], ["https://tec.openplanner.team/stops/Bglibui1", "https://tec.openplanner.team/stops/NB33alb"], ["https://tec.openplanner.team/stops/N232afa", "https://tec.openplanner.team/stops/N286aaa"], ["https://tec.openplanner.team/stops/H2tr247b", "https://tec.openplanner.team/stops/H2tr254a"], ["https://tec.openplanner.team/stops/X926afb", "https://tec.openplanner.team/stops/X947aab"], ["https://tec.openplanner.team/stops/Cmmcarr2", "https://tec.openplanner.team/stops/Cmmcime1"], ["https://tec.openplanner.team/stops/Lemparc2", "https://tec.openplanner.team/stops/Lemsely2"], ["https://tec.openplanner.team/stops/NB33afa", "https://tec.openplanner.team/stops/NB33ahb"], ["https://tec.openplanner.team/stops/Lhubouq2", "https://tec.openplanner.team/stops/Lhueg--1"], ["https://tec.openplanner.team/stops/Cgymetr2", "https://tec.openplanner.team/stops/CMgill1"], ["https://tec.openplanner.team/stops/X670aca", "https://tec.openplanner.team/stops/X670acb"], ["https://tec.openplanner.team/stops/Canmonu1", "https://tec.openplanner.team/stops/Canmonu2"], ["https://tec.openplanner.team/stops/Bjodfab1", "https://tec.openplanner.team/stops/Bjodrga2"], ["https://tec.openplanner.team/stops/Bhevgar2", "https://tec.openplanner.team/stops/Bhevgro2"], ["https://tec.openplanner.team/stops/N232aia", "https://tec.openplanner.team/stops/N232ajb"], ["https://tec.openplanner.team/stops/H5bl115c", "https://tec.openplanner.team/stops/H5bl121a"], ["https://tec.openplanner.team/stops/Bsomjon2", "https://tec.openplanner.team/stops/Bsomwav2"], ["https://tec.openplanner.team/stops/Cflcent1", "https://tec.openplanner.team/stops/Cflchmo2"], ["https://tec.openplanner.team/stops/N244aca", "https://tec.openplanner.team/stops/N251adb"], ["https://tec.openplanner.team/stops/Cgysole1", "https://tec.openplanner.team/stops/CMsolei2"], ["https://tec.openplanner.team/stops/LmYwall1", "https://tec.openplanner.team/stops/LsVgend1"], ["https://tec.openplanner.team/stops/H1hm174b", "https://tec.openplanner.team/stops/H1hm176a"], ["https://tec.openplanner.team/stops/X601csb", "https://tec.openplanner.team/stops/X601dib"], ["https://tec.openplanner.team/stops/N535afb", "https://tec.openplanner.team/stops/N535aib"], ["https://tec.openplanner.team/stops/Ljemabo1", "https://tec.openplanner.team/stops/Lmocoop2"], ["https://tec.openplanner.team/stops/Ladhomb1", "https://tec.openplanner.team/stops/Ladmoul2"], ["https://tec.openplanner.team/stops/N501hxa", "https://tec.openplanner.team/stops/N501hxy"], ["https://tec.openplanner.team/stops/Bleugar1", "https://tec.openplanner.team/stops/Bwolkra1"], ["https://tec.openplanner.team/stops/Canlemo1", "https://tec.openplanner.team/stops/Clbhour1"], ["https://tec.openplanner.team/stops/H2ec105a", "https://tec.openplanner.team/stops/H2me115a"], ["https://tec.openplanner.team/stops/Bsencen2", "https://tec.openplanner.team/stops/H2se107a"], ["https://tec.openplanner.team/stops/Bjdsjso2", "https://tec.openplanner.team/stops/Bjdssta2"], ["https://tec.openplanner.team/stops/Bflegar6", "https://tec.openplanner.team/stops/Cflsncb1"], ["https://tec.openplanner.team/stops/Cthenmi2", "https://tec.openplanner.team/stops/Cthrpoi1"], ["https://tec.openplanner.team/stops/LFabraa2", "https://tec.openplanner.team/stops/LFacruc2"], ["https://tec.openplanner.team/stops/Lwapomp1", "https://tec.openplanner.team/stops/Lwapont1"], ["https://tec.openplanner.team/stops/Llgborg2", "https://tec.openplanner.team/stops/Llgvolg2"], ["https://tec.openplanner.team/stops/Ljubods2", "https://tec.openplanner.team/stops/Ljubonf1"], ["https://tec.openplanner.team/stops/LGorysa1", "https://tec.openplanner.team/stops/LGorysa2"], ["https://tec.openplanner.team/stops/N244asa", "https://tec.openplanner.team/stops/N244asb"], ["https://tec.openplanner.team/stops/X746ajb", "https://tec.openplanner.team/stops/X746akb"], ["https://tec.openplanner.team/stops/N211aia", "https://tec.openplanner.team/stops/N211azb"], ["https://tec.openplanner.team/stops/Bnivbne2", "https://tec.openplanner.team/stops/Bnivbng1"], ["https://tec.openplanner.team/stops/H4rx143b", "https://tec.openplanner.team/stops/H4tf147a"], ["https://tec.openplanner.team/stops/LSyeg--2", "https://tec.openplanner.team/stops/LSygerm1"], ["https://tec.openplanner.team/stops/Bcbqcim1", "https://tec.openplanner.team/stops/Blemsta2"], ["https://tec.openplanner.team/stops/X901acb", "https://tec.openplanner.team/stops/X901bka"], ["https://tec.openplanner.team/stops/X804bsb", "https://tec.openplanner.team/stops/X804bua"], ["https://tec.openplanner.team/stops/N538axa", "https://tec.openplanner.team/stops/N538bbb"], ["https://tec.openplanner.team/stops/LCSmagn2", "https://tec.openplanner.team/stops/LSShous2"], ["https://tec.openplanner.team/stops/H4do103b", "https://tec.openplanner.team/stops/H4ev119a"], ["https://tec.openplanner.team/stops/H2hl110a", "https://tec.openplanner.team/stops/H2hl110b"], ["https://tec.openplanner.team/stops/N308aia", "https://tec.openplanner.team/stops/N308baa"], ["https://tec.openplanner.team/stops/X717aeb", "https://tec.openplanner.team/stops/X717afa"], ["https://tec.openplanner.team/stops/X608aqa", "https://tec.openplanner.team/stops/X621ada"], ["https://tec.openplanner.team/stops/N301aob", "https://tec.openplanner.team/stops/N302aea"], ["https://tec.openplanner.team/stops/LoEauto1", "https://tec.openplanner.team/stops/LrD28--1"], ["https://tec.openplanner.team/stops/N527aea", "https://tec.openplanner.team/stops/N527aeb"], ["https://tec.openplanner.team/stops/Cchdagn2", "https://tec.openplanner.team/stops/Cchsud01"], ["https://tec.openplanner.team/stops/Bblaast1", "https://tec.openplanner.team/stops/Bblagar1"], ["https://tec.openplanner.team/stops/N525acb", "https://tec.openplanner.team/stops/N525aub"], ["https://tec.openplanner.team/stops/Llgjose1", "https://tec.openplanner.team/stops/Llgnaim1"], ["https://tec.openplanner.team/stops/X659aha", "https://tec.openplanner.team/stops/X659aza"], ["https://tec.openplanner.team/stops/Clsghoy1", "https://tec.openplanner.team/stops/Clsstpi1"], ["https://tec.openplanner.team/stops/LETeg--2", "https://tec.openplanner.team/stops/LETmagn2"], ["https://tec.openplanner.team/stops/H5bs104b", "https://tec.openplanner.team/stops/H5pe125b"], ["https://tec.openplanner.team/stops/Bptrcra2", "https://tec.openplanner.team/stops/Bptrman1"], ["https://tec.openplanner.team/stops/X758aia", "https://tec.openplanner.team/stops/X758aka"], ["https://tec.openplanner.team/stops/Cfmltas1", "https://tec.openplanner.team/stops/Cfmmart1"], ["https://tec.openplanner.team/stops/X614aub", "https://tec.openplanner.team/stops/X614avb"], ["https://tec.openplanner.team/stops/X713aia", "https://tec.openplanner.team/stops/X714aba"], ["https://tec.openplanner.team/stops/N218ada", "https://tec.openplanner.team/stops/N218aeb"], ["https://tec.openplanner.team/stops/Llgmair2", "https://tec.openplanner.team/stops/Lvtnico*"], ["https://tec.openplanner.team/stops/LWDfuma1", "https://tec.openplanner.team/stops/LWDfuma2"], ["https://tec.openplanner.team/stops/X739aea", "https://tec.openplanner.team/stops/X739aeb"], ["https://tec.openplanner.team/stops/Bplncsd2", "https://tec.openplanner.team/stops/Bplnegl2"], ["https://tec.openplanner.team/stops/X636aja", "https://tec.openplanner.team/stops/X636ajb"], ["https://tec.openplanner.team/stops/N120abd", "https://tec.openplanner.team/stops/N302aba"], ["https://tec.openplanner.team/stops/X626ahb", "https://tec.openplanner.team/stops/X626aib"], ["https://tec.openplanner.team/stops/H1hv135a", "https://tec.openplanner.team/stops/H1mk123a"], ["https://tec.openplanner.team/stops/N138aga", "https://tec.openplanner.team/stops/N138aia"], ["https://tec.openplanner.team/stops/Blpgcmo1", "https://tec.openplanner.team/stops/Bnivfdu1"], ["https://tec.openplanner.team/stops/X615axb", "https://tec.openplanner.team/stops/X615bbb"], ["https://tec.openplanner.team/stops/X764ada", "https://tec.openplanner.team/stops/X765aea"], ["https://tec.openplanner.team/stops/Buccdef1", "https://tec.openplanner.team/stops/Buccgob1"], ["https://tec.openplanner.team/stops/Buccron2", "https://tec.openplanner.team/stops/Buccvbe1"], ["https://tec.openplanner.team/stops/N209ajc", "https://tec.openplanner.team/stops/N209akb"], ["https://tec.openplanner.team/stops/LBWbatt2", "https://tec.openplanner.team/stops/LBWfusi1"], ["https://tec.openplanner.team/stops/H1wz170b", "https://tec.openplanner.team/stops/H2pe161b"], ["https://tec.openplanner.team/stops/X716aba", "https://tec.openplanner.team/stops/X716afb"], ["https://tec.openplanner.team/stops/X811aba", "https://tec.openplanner.team/stops/X811ama"], ["https://tec.openplanner.team/stops/N501flb", "https://tec.openplanner.team/stops/N501fqa"], ["https://tec.openplanner.team/stops/N529afa", "https://tec.openplanner.team/stops/N529aja"], ["https://tec.openplanner.team/stops/H4bo110b", "https://tec.openplanner.team/stops/H5st161b"], ["https://tec.openplanner.team/stops/X804awa", "https://tec.openplanner.team/stops/X804bda"], ["https://tec.openplanner.team/stops/Balssvi1", "https://tec.openplanner.team/stops/Balswwe2"], ["https://tec.openplanner.team/stops/H1fr114a", "https://tec.openplanner.team/stops/H1fr122a"], ["https://tec.openplanner.team/stops/Lflchan1", "https://tec.openplanner.team/stops/Lmabott1"], ["https://tec.openplanner.team/stops/Bbourel1", "https://tec.openplanner.team/stops/Bcsgres1"], ["https://tec.openplanner.team/stops/N115abb", "https://tec.openplanner.team/stops/N147afb"], ["https://tec.openplanner.team/stops/N141acb", "https://tec.openplanner.team/stops/N143ada"], ["https://tec.openplanner.team/stops/Cmtfabi1", "https://tec.openplanner.team/stops/Cmtmath1"], ["https://tec.openplanner.team/stops/Bwancal2", "https://tec.openplanner.team/stops/Bwancal4"], ["https://tec.openplanner.team/stops/H4po125b", "https://tec.openplanner.team/stops/H4po127a"], ["https://tec.openplanner.team/stops/H1ha187a", "https://tec.openplanner.team/stops/H1ob330a"], ["https://tec.openplanner.team/stops/LWRbomb3", "https://tec.openplanner.team/stops/LWRbomb4"], ["https://tec.openplanner.team/stops/Bbeaneu3", "https://tec.openplanner.team/stops/Bbeaneu4"], ["https://tec.openplanner.team/stops/X877aaa", "https://tec.openplanner.team/stops/X877aca"], ["https://tec.openplanner.team/stops/X725afd", "https://tec.openplanner.team/stops/X725afe"], ["https://tec.openplanner.team/stops/Cjubien1", "https://tec.openplanner.team/stops/Cjuquai2"], ["https://tec.openplanner.team/stops/N531aea", "https://tec.openplanner.team/stops/N531afh"], ["https://tec.openplanner.team/stops/X601alb", "https://tec.openplanner.team/stops/X601bwa"], ["https://tec.openplanner.team/stops/H4ma400a", "https://tec.openplanner.team/stops/H4ma401a"], ["https://tec.openplanner.team/stops/Llglonh1", "https://tec.openplanner.team/stops/Llgmart2"], ["https://tec.openplanner.team/stops/Blnzcar2", "https://tec.openplanner.team/stops/N576aba"], ["https://tec.openplanner.team/stops/H3bi107b", "https://tec.openplanner.team/stops/H3bi112b"], ["https://tec.openplanner.team/stops/X986aaa", "https://tec.openplanner.team/stops/X986aab"], ["https://tec.openplanner.team/stops/Lghalle1", "https://tec.openplanner.team/stops/Lghcoqs1"], ["https://tec.openplanner.team/stops/Bblabar1", "https://tec.openplanner.team/stops/Bblapet1"], ["https://tec.openplanner.team/stops/Cctjoue6", "https://tec.openplanner.team/stops/Cpllimi1"], ["https://tec.openplanner.team/stops/Cvssncv2", "https://tec.openplanner.team/stops/N530aab"], ["https://tec.openplanner.team/stops/N501cpb", "https://tec.openplanner.team/stops/N501cua"], ["https://tec.openplanner.team/stops/X801aeb", "https://tec.openplanner.team/stops/X801ahb"], ["https://tec.openplanner.team/stops/LLrdrev1", "https://tec.openplanner.team/stops/LLrmeno2"], ["https://tec.openplanner.team/stops/Cmchai2", "https://tec.openplanner.team/stops/Cmgtour1"], ["https://tec.openplanner.team/stops/Lsebuil2", "https://tec.openplanner.team/stops/Lsecime1"], ["https://tec.openplanner.team/stops/H1lb137a", "https://tec.openplanner.team/stops/H1lb139b"], ["https://tec.openplanner.team/stops/N508aba", "https://tec.openplanner.team/stops/N508ada"], ["https://tec.openplanner.team/stops/Croegli2", "https://tec.openplanner.team/stops/Crojume2"], ["https://tec.openplanner.team/stops/N874aga", "https://tec.openplanner.team/stops/N874ahb"], ["https://tec.openplanner.team/stops/Lmleg--1", "https://tec.openplanner.team/stops/Lmleg--2"], ["https://tec.openplanner.team/stops/X793aja", "https://tec.openplanner.team/stops/X793ajb"], ["https://tec.openplanner.team/stops/H1ss351a", "https://tec.openplanner.team/stops/H1ss351b"], ["https://tec.openplanner.team/stops/H2lh130b", "https://tec.openplanner.team/stops/H2mo133a"], ["https://tec.openplanner.team/stops/N531acb", "https://tec.openplanner.team/stops/N531ada"], ["https://tec.openplanner.team/stops/Lhurouh2", "https://tec.openplanner.team/stops/Lhuwaid1"], ["https://tec.openplanner.team/stops/N540ala", "https://tec.openplanner.team/stops/N540ama"], ["https://tec.openplanner.team/stops/LPLbiol2", "https://tec.openplanner.team/stops/LPLc49-2"], ["https://tec.openplanner.team/stops/H2ca103c", "https://tec.openplanner.team/stops/H2ca116b"], ["https://tec.openplanner.team/stops/LENecol2", "https://tec.openplanner.team/stops/LENmc--2"], ["https://tec.openplanner.team/stops/LeLbutg4", "https://tec.openplanner.team/stops/LeLdorf2"], ["https://tec.openplanner.team/stops/LGegrun2", "https://tec.openplanner.team/stops/LGeschr2"], ["https://tec.openplanner.team/stops/Lhr4ave1", "https://tec.openplanner.team/stops/LOUchen2"], ["https://tec.openplanner.team/stops/H2re166b", "https://tec.openplanner.team/stops/H3bi106b"], ["https://tec.openplanner.team/stops/X734acb", "https://tec.openplanner.team/stops/X734adb"], ["https://tec.openplanner.team/stops/LROhael1", "https://tec.openplanner.team/stops/LWargeu2"], ["https://tec.openplanner.team/stops/Cjupn4", "https://tec.openplanner.team/stops/Clomakr2"], ["https://tec.openplanner.team/stops/N202ahb", "https://tec.openplanner.team/stops/N202aib"], ["https://tec.openplanner.team/stops/LwLfuss1", "https://tec.openplanner.team/stops/LwLprum2"], ["https://tec.openplanner.team/stops/Bnivind2", "https://tec.openplanner.team/stops/Bnivrec2"], ["https://tec.openplanner.team/stops/Bwspjon1", "https://tec.openplanner.team/stops/Bwspspa1"], ["https://tec.openplanner.team/stops/Bbgeegl1", "https://tec.openplanner.team/stops/Bwavrij2"], ["https://tec.openplanner.team/stops/N218afa", "https://tec.openplanner.team/stops/N337aea"], ["https://tec.openplanner.team/stops/LeLgrie1", "https://tec.openplanner.team/stops/LeLzost2"], ["https://tec.openplanner.team/stops/Lagkink1", "https://tec.openplanner.team/stops/Lagvall2"], ["https://tec.openplanner.team/stops/X660aba", "https://tec.openplanner.team/stops/X661akb"], ["https://tec.openplanner.team/stops/Blkbavo2", "https://tec.openplanner.team/stops/Blkbbeu2"], ["https://tec.openplanner.team/stops/N338afa", "https://tec.openplanner.team/stops/N387abb"], ["https://tec.openplanner.team/stops/Cjugill1", "https://tec.openplanner.team/stops/Cjugill4"], ["https://tec.openplanner.team/stops/Lvefran1", "https://tec.openplanner.team/stops/Lvegc--5"], ["https://tec.openplanner.team/stops/H1ms299a", "https://tec.openplanner.team/stops/H1ms314b"], ["https://tec.openplanner.team/stops/Bbchboi1", "https://tec.openplanner.team/stops/Bwaucig2"], ["https://tec.openplanner.team/stops/Bhercsj2", "https://tec.openplanner.team/stops/Bpiesta1"], ["https://tec.openplanner.team/stops/H1br122a", "https://tec.openplanner.team/stops/H1br126b"], ["https://tec.openplanner.team/stops/Cfrfede2", "https://tec.openplanner.team/stops/Cvpsncb2"], ["https://tec.openplanner.team/stops/LBIpost1", "https://tec.openplanner.team/stops/Lghhaut2"], ["https://tec.openplanner.team/stops/H1ca105a", "https://tec.openplanner.team/stops/H1mj125b"], ["https://tec.openplanner.team/stops/H2fa100b", "https://tec.openplanner.team/stops/H2fa102b"], ["https://tec.openplanner.team/stops/LBEfagn2", "https://tec.openplanner.team/stops/LNipre-2"], ["https://tec.openplanner.team/stops/H1el133b", "https://tec.openplanner.team/stops/H1el136a"], ["https://tec.openplanner.team/stops/H1bo101b", "https://tec.openplanner.team/stops/H1bo111b"], ["https://tec.openplanner.team/stops/X823afc", "https://tec.openplanner.team/stops/X823afd"], ["https://tec.openplanner.team/stops/X661axc", "https://tec.openplanner.team/stops/X817aca"], ["https://tec.openplanner.team/stops/H1ho137a", "https://tec.openplanner.team/stops/H1ho143c"], ["https://tec.openplanner.team/stops/N525aca", "https://tec.openplanner.team/stops/N525ajb"], ["https://tec.openplanner.team/stops/Btstbes1", "https://tec.openplanner.team/stops/Btstcar3"], ["https://tec.openplanner.team/stops/Btubind1", "https://tec.openplanner.team/stops/Btubsca1"], ["https://tec.openplanner.team/stops/LSubass1", "https://tec.openplanner.team/stops/LSubass2"], ["https://tec.openplanner.team/stops/N425agb", "https://tec.openplanner.team/stops/N425ahb"], ["https://tec.openplanner.team/stops/X907aba", "https://tec.openplanner.team/stops/X907abb"], ["https://tec.openplanner.team/stops/H1fl138b", "https://tec.openplanner.team/stops/H1lb134b"], ["https://tec.openplanner.team/stops/H2ca112b", "https://tec.openplanner.team/stops/H2ch107b"], ["https://tec.openplanner.team/stops/X734aab", "https://tec.openplanner.team/stops/X735aaa"], ["https://tec.openplanner.team/stops/Bnivn972", "https://tec.openplanner.team/stops/Bthivil3"], ["https://tec.openplanner.team/stops/X898aaa", "https://tec.openplanner.team/stops/X898aba"], ["https://tec.openplanner.team/stops/X783ada", "https://tec.openplanner.team/stops/X783adb"], ["https://tec.openplanner.team/stops/H4ce100b", "https://tec.openplanner.team/stops/H4mx115b"], ["https://tec.openplanner.team/stops/X390ala", "https://tec.openplanner.team/stops/X390anb"], ["https://tec.openplanner.team/stops/Blemkap1", "https://tec.openplanner.team/stops/Btubbai1"], ["https://tec.openplanner.team/stops/X818aqa", "https://tec.openplanner.team/stops/X818aqb"], ["https://tec.openplanner.team/stops/LHNgend1", "https://tec.openplanner.team/stops/LHNgend2"], ["https://tec.openplanner.team/stops/Crarmas2", "https://tec.openplanner.team/stops/Cravign1"], ["https://tec.openplanner.team/stops/LkEfrie1", "https://tec.openplanner.team/stops/LkEheyg1"], ["https://tec.openplanner.team/stops/X612aba", "https://tec.openplanner.team/stops/X612ada"], ["https://tec.openplanner.team/stops/LBahaut2", "https://tec.openplanner.team/stops/LTAairi2"], ["https://tec.openplanner.team/stops/X371adb", "https://tec.openplanner.team/stops/X371afa"], ["https://tec.openplanner.team/stops/X901boa", "https://tec.openplanner.team/stops/X901bsa"], ["https://tec.openplanner.team/stops/Lagcler2", "https://tec.openplanner.team/stops/Laggare2"], ["https://tec.openplanner.team/stops/Brixbai1", "https://tec.openplanner.team/stops/Brixblh3"], ["https://tec.openplanner.team/stops/N170aba", "https://tec.openplanner.team/stops/NC14aba"], ["https://tec.openplanner.team/stops/Bhalomo1", "https://tec.openplanner.team/stops/Bhalwat1"], ["https://tec.openplanner.team/stops/Cdasama1", "https://tec.openplanner.team/stops/CMlpla1"], ["https://tec.openplanner.team/stops/Bhantui1", "https://tec.openplanner.team/stops/Bthsvil1"], ["https://tec.openplanner.team/stops/N241aab", "https://tec.openplanner.team/stops/N270adb"], ["https://tec.openplanner.team/stops/X719aab", "https://tec.openplanner.team/stops/X719afb"], ["https://tec.openplanner.team/stops/N501blb", "https://tec.openplanner.team/stops/N501lqa"], ["https://tec.openplanner.team/stops/N207afb", "https://tec.openplanner.team/stops/N209ala"], ["https://tec.openplanner.team/stops/LAMdelh3", "https://tec.openplanner.team/stops/LAMhopi1"], ["https://tec.openplanner.team/stops/X654aga", "https://tec.openplanner.team/stops/X654agb"], ["https://tec.openplanner.team/stops/Candett1", "https://tec.openplanner.team/stops/H1bi103b"], ["https://tec.openplanner.team/stops/N390ada", "https://tec.openplanner.team/stops/N390aea"], ["https://tec.openplanner.team/stops/H1ol144a", "https://tec.openplanner.team/stops/H1ol145a"], ["https://tec.openplanner.team/stops/N501ixd", "https://tec.openplanner.team/stops/N521ahb"], ["https://tec.openplanner.team/stops/Bwanwar1", "https://tec.openplanner.team/stops/Bwanwar2"], ["https://tec.openplanner.team/stops/Bitrhou1", "https://tec.openplanner.team/stops/Bitrmde1"], ["https://tec.openplanner.team/stops/H1ry135c", "https://tec.openplanner.team/stops/H1ry136b"], ["https://tec.openplanner.team/stops/X771anb", "https://tec.openplanner.team/stops/X773ana"], ["https://tec.openplanner.team/stops/H1em110b", "https://tec.openplanner.team/stops/H1em111b"], ["https://tec.openplanner.team/stops/Cgpauln1", "https://tec.openplanner.team/stops/Cgpchen1"], ["https://tec.openplanner.team/stops/Cgdberl1", "https://tec.openplanner.team/stops/Cgdfras2"], ["https://tec.openplanner.team/stops/N571ada", "https://tec.openplanner.team/stops/N573aab"], ["https://tec.openplanner.team/stops/N522ahb", "https://tec.openplanner.team/stops/N522ana"], ["https://tec.openplanner.team/stops/X749aaa", "https://tec.openplanner.team/stops/X749afa"], ["https://tec.openplanner.team/stops/H1gc122a", "https://tec.openplanner.team/stops/H1gc123b"], ["https://tec.openplanner.team/stops/X760ada", "https://tec.openplanner.team/stops/X760aga"], ["https://tec.openplanner.team/stops/X716acb", "https://tec.openplanner.team/stops/X734abb"], ["https://tec.openplanner.team/stops/LeYberl1", "https://tec.openplanner.team/stops/LrApont1"], ["https://tec.openplanner.team/stops/Bcer4br2", "https://tec.openplanner.team/stops/Bcer4br3"], ["https://tec.openplanner.team/stops/N523aba", "https://tec.openplanner.team/stops/N523abb"], ["https://tec.openplanner.team/stops/X512abb", "https://tec.openplanner.team/stops/X595aad"], ["https://tec.openplanner.team/stops/X754ama", "https://tec.openplanner.team/stops/X754amb"], ["https://tec.openplanner.team/stops/Bhenfla2", "https://tec.openplanner.team/stops/Brebcgi1"], ["https://tec.openplanner.team/stops/LAMhaut1", "https://tec.openplanner.team/stops/LFlpark*"], ["https://tec.openplanner.team/stops/Bnstgar1", "https://tec.openplanner.team/stops/H2na131a"], ["https://tec.openplanner.team/stops/Bhmmcha2", "https://tec.openplanner.team/stops/Bndbnod2"], ["https://tec.openplanner.team/stops/N501evb", "https://tec.openplanner.team/stops/N501kfb"], ["https://tec.openplanner.team/stops/N501cmb", "https://tec.openplanner.team/stops/N501ena"], ["https://tec.openplanner.team/stops/LMipoti2", "https://tec.openplanner.team/stops/LMisour1"], ["https://tec.openplanner.team/stops/N121aha", "https://tec.openplanner.team/stops/N121aia"], ["https://tec.openplanner.team/stops/X664ama", "https://tec.openplanner.team/stops/X664amc"], ["https://tec.openplanner.team/stops/H1ms281a", "https://tec.openplanner.team/stops/H1ms309a"], ["https://tec.openplanner.team/stops/Cgyblob2", "https://tec.openplanner.team/stops/Cgynuto2"], ["https://tec.openplanner.team/stops/N501gpa", "https://tec.openplanner.team/stops/N501gpc"], ["https://tec.openplanner.team/stops/X660aib", "https://tec.openplanner.team/stops/X672aga"], ["https://tec.openplanner.team/stops/Bcrnncb2", "https://tec.openplanner.team/stops/Bcrnsge1"], ["https://tec.openplanner.team/stops/N151aaa", "https://tec.openplanner.team/stops/N151aia"], ["https://tec.openplanner.team/stops/N163aab", "https://tec.openplanner.team/stops/N569aaa"], ["https://tec.openplanner.team/stops/LAibego1", "https://tec.openplanner.team/stops/Lccaigr2"], ["https://tec.openplanner.team/stops/H1fr111b", "https://tec.openplanner.team/stops/H1ge115b"], ["https://tec.openplanner.team/stops/LBahaut1", "https://tec.openplanner.team/stops/LTHmont1"], ["https://tec.openplanner.team/stops/X650aja", "https://tec.openplanner.team/stops/X650ajb"], ["https://tec.openplanner.team/stops/N145ada", "https://tec.openplanner.team/stops/N149aca"], ["https://tec.openplanner.team/stops/Bgrhche2", "https://tec.openplanner.team/stops/NB33aeb"], ["https://tec.openplanner.team/stops/Lanc14v1", "https://tec.openplanner.team/stops/Lanrask1"], ["https://tec.openplanner.team/stops/Brebrog2", "https://tec.openplanner.team/stops/H2pr119b"], ["https://tec.openplanner.team/stops/N505aha", "https://tec.openplanner.team/stops/N505anb"], ["https://tec.openplanner.team/stops/N103acc", "https://tec.openplanner.team/stops/N131aea"], ["https://tec.openplanner.team/stops/Cauushm1", "https://tec.openplanner.team/stops/Cauwauq1"], ["https://tec.openplanner.team/stops/N531alb", "https://tec.openplanner.team/stops/N531aua"], ["https://tec.openplanner.team/stops/X786aha", "https://tec.openplanner.team/stops/X786ahb"], ["https://tec.openplanner.team/stops/Cchdelf2", "https://tec.openplanner.team/stops/Cchicet1"], ["https://tec.openplanner.team/stops/Ljucrah1", "https://tec.openplanner.team/stops/Ljucrah2"], ["https://tec.openplanner.team/stops/LSHfief1", "https://tec.openplanner.team/stops/LSHneuv1"], ["https://tec.openplanner.team/stops/H4hu120a", "https://tec.openplanner.team/stops/H4hu121a"], ["https://tec.openplanner.team/stops/X801bwb", "https://tec.openplanner.team/stops/X802aya"], ["https://tec.openplanner.team/stops/Bglitro1", "https://tec.openplanner.team/stops/Bglitro3"], ["https://tec.openplanner.team/stops/H1bu137b", "https://tec.openplanner.team/stops/H3bi113a"], ["https://tec.openplanner.team/stops/H2ch101b", "https://tec.openplanner.team/stops/H2ch109b"], ["https://tec.openplanner.team/stops/Bbcocvb2", "https://tec.openplanner.team/stops/H2ec110b"], ["https://tec.openplanner.team/stops/Llgnaes1", "https://tec.openplanner.team/stops/Llgverg2"], ["https://tec.openplanner.team/stops/Btsllec1", "https://tec.openplanner.team/stops/Btsllec2"], ["https://tec.openplanner.team/stops/Cthathe2", "https://tec.openplanner.team/stops/Cthathe4"], ["https://tec.openplanner.team/stops/X824aea", "https://tec.openplanner.team/stops/X824agb"], ["https://tec.openplanner.team/stops/H4ma398b", "https://tec.openplanner.team/stops/H4ma420a"], ["https://tec.openplanner.team/stops/Cjulamb3", "https://tec.openplanner.team/stops/Cjulamb4"], ["https://tec.openplanner.team/stops/H1er105a", "https://tec.openplanner.team/stops/H1er113a"], ["https://tec.openplanner.team/stops/N874anb", "https://tec.openplanner.team/stops/X874apa"], ["https://tec.openplanner.team/stops/N212ada", "https://tec.openplanner.team/stops/N213abb"], ["https://tec.openplanner.team/stops/Bvirhsa2", "https://tec.openplanner.team/stops/Bvirrbo2"], ["https://tec.openplanner.team/stops/Cbbjfeu2", "https://tec.openplanner.team/stops/Cerrver4"], ["https://tec.openplanner.team/stops/X731aka", "https://tec.openplanner.team/stops/X731akb"], ["https://tec.openplanner.team/stops/Cctvill1", "https://tec.openplanner.team/stops/Cctvill2"], ["https://tec.openplanner.team/stops/LCvneuv6", "https://tec.openplanner.team/stops/LCvoufn2"], ["https://tec.openplanner.team/stops/H4mv195a", "https://tec.openplanner.team/stops/H4mv197b"], ["https://tec.openplanner.team/stops/Bneedia1", "https://tec.openplanner.team/stops/Bneedia2"], ["https://tec.openplanner.team/stops/X763aab", "https://tec.openplanner.team/stops/X765afb"], ["https://tec.openplanner.team/stops/X822ajb", "https://tec.openplanner.team/stops/X836ajb"], ["https://tec.openplanner.team/stops/LmLbeil1", "https://tec.openplanner.team/stops/LwMzoll1"], ["https://tec.openplanner.team/stops/LCHgele2", "https://tec.openplanner.team/stops/Lprmerc*"], ["https://tec.openplanner.team/stops/N232ana", "https://tec.openplanner.team/stops/N232cca"], ["https://tec.openplanner.team/stops/N205aca", "https://tec.openplanner.team/stops/N220ada"], ["https://tec.openplanner.team/stops/LTPcarr2", "https://tec.openplanner.team/stops/LTPsalm1"], ["https://tec.openplanner.team/stops/Llgcadr4", "https://tec.openplanner.team/stops/LlgLAMB7"], ["https://tec.openplanner.team/stops/X870aaa", "https://tec.openplanner.team/stops/X870aia"], ["https://tec.openplanner.team/stops/N874amc", "https://tec.openplanner.team/stops/N874anb"], ["https://tec.openplanner.team/stops/H4bo118a", "https://tec.openplanner.team/stops/H4bo118c"], ["https://tec.openplanner.team/stops/H2me116a", "https://tec.openplanner.team/stops/H2me117a"], ["https://tec.openplanner.team/stops/LVnetan1", "https://tec.openplanner.team/stops/LVnourt1"], ["https://tec.openplanner.team/stops/H4do107c", "https://tec.openplanner.team/stops/H4do202b"], ["https://tec.openplanner.team/stops/Lanclon2", "https://tec.openplanner.team/stops/Llglys-2"], ["https://tec.openplanner.team/stops/N501etc", "https://tec.openplanner.team/stops/N501kba"], ["https://tec.openplanner.team/stops/Bgemkal1", "https://tec.openplanner.team/stops/Bgemkal2"], ["https://tec.openplanner.team/stops/N577ada", "https://tec.openplanner.team/stops/N577aea"], ["https://tec.openplanner.team/stops/N562bqa", "https://tec.openplanner.team/stops/N562bsb"], ["https://tec.openplanner.team/stops/Lvelobe1", "https://tec.openplanner.team/stops/Lvelobe2"], ["https://tec.openplanner.team/stops/H1gg114b", "https://tec.openplanner.team/stops/H1gg115a"], ["https://tec.openplanner.team/stops/Bwatmgo4", "https://tec.openplanner.team/stops/Bwatsan2"], ["https://tec.openplanner.team/stops/Cnabult3", "https://tec.openplanner.team/stops/NC14afa"], ["https://tec.openplanner.team/stops/X897ama", "https://tec.openplanner.team/stops/X897amb"], ["https://tec.openplanner.team/stops/N508ajd", "https://tec.openplanner.team/stops/N508apb"], ["https://tec.openplanner.team/stops/Livrame2", "https://tec.openplanner.team/stops/LRacime2"], ["https://tec.openplanner.team/stops/H2bh106a", "https://tec.openplanner.team/stops/H2bh114a"], ["https://tec.openplanner.team/stops/X766aaa", "https://tec.openplanner.team/stops/X766aab"], ["https://tec.openplanner.team/stops/N506aab", "https://tec.openplanner.team/stops/N506bwa"], ["https://tec.openplanner.team/stops/N331aab", "https://tec.openplanner.team/stops/N331afb"], ["https://tec.openplanner.team/stops/LJAmari2", "https://tec.openplanner.team/stops/LMechpl1"], ["https://tec.openplanner.team/stops/X637aeb", "https://tec.openplanner.team/stops/X637agd"], ["https://tec.openplanner.team/stops/Cjuepee1", "https://tec.openplanner.team/stops/Cjutrou1"], ["https://tec.openplanner.team/stops/LHMgulp1", "https://tec.openplanner.team/stops/LHMparq2"], ["https://tec.openplanner.team/stops/N515afa", "https://tec.openplanner.team/stops/NR27aaa"], ["https://tec.openplanner.team/stops/H4er122b", "https://tec.openplanner.team/stops/H4ty339b"], ["https://tec.openplanner.team/stops/Lhragri1", "https://tec.openplanner.team/stops/Lhrbrou1"], ["https://tec.openplanner.team/stops/N501gdb", "https://tec.openplanner.team/stops/N501gkb"], ["https://tec.openplanner.team/stops/LSGcent1", "https://tec.openplanner.team/stops/LSGcent2"], ["https://tec.openplanner.team/stops/N323acb", "https://tec.openplanner.team/stops/N894ada"], ["https://tec.openplanner.team/stops/H4av100b", "https://tec.openplanner.team/stops/H4ss156b"], ["https://tec.openplanner.team/stops/Berngrt2", "https://tec.openplanner.team/stops/Bwspmon2"], ["https://tec.openplanner.team/stops/N124aba", "https://tec.openplanner.team/stops/N124aca"], ["https://tec.openplanner.team/stops/H4bo179a", "https://tec.openplanner.team/stops/H4bo179b"], ["https://tec.openplanner.team/stops/H1te178a", "https://tec.openplanner.team/stops/H1te179b"], ["https://tec.openplanner.team/stops/H5st161b", "https://tec.openplanner.team/stops/H5st163a"], ["https://tec.openplanner.team/stops/H4li178a", "https://tec.openplanner.team/stops/H4mv197b"], ["https://tec.openplanner.team/stops/N501crb", "https://tec.openplanner.team/stops/N501csa"], ["https://tec.openplanner.team/stops/Lsechan2", "https://tec.openplanner.team/stops/Lselimi1"], ["https://tec.openplanner.team/stops/Cvp3til1", "https://tec.openplanner.team/stops/Cvp3til5"], ["https://tec.openplanner.team/stops/X790agb", "https://tec.openplanner.team/stops/X790aha"], ["https://tec.openplanner.team/stops/LHUcomp2", "https://tec.openplanner.team/stops/LHUfali3"], ["https://tec.openplanner.team/stops/LAmab752", "https://tec.openplanner.team/stops/LAmvent1"], ["https://tec.openplanner.team/stops/N524afb", "https://tec.openplanner.team/stops/N524aha"], ["https://tec.openplanner.team/stops/X623aja", "https://tec.openplanner.team/stops/X623ajb"], ["https://tec.openplanner.team/stops/H4ea130b", "https://tec.openplanner.team/stops/H4ea134a"], ["https://tec.openplanner.team/stops/LBafagn2", "https://tec.openplanner.team/stops/LLUcdoy1"], ["https://tec.openplanner.team/stops/H4ty313b", "https://tec.openplanner.team/stops/H4ty344b"], ["https://tec.openplanner.team/stops/X801cia", "https://tec.openplanner.team/stops/X836ada"], ["https://tec.openplanner.team/stops/H4gu110a", "https://tec.openplanner.team/stops/H4ta134a"], ["https://tec.openplanner.team/stops/N501ixc", "https://tec.openplanner.team/stops/N501jbb"], ["https://tec.openplanner.team/stops/H4rc234a", "https://tec.openplanner.team/stops/H4rc234c"], ["https://tec.openplanner.team/stops/X664aja", "https://tec.openplanner.team/stops/X664ata"], ["https://tec.openplanner.team/stops/Caicalv2", "https://tec.openplanner.team/stops/Cprsapv1"], ["https://tec.openplanner.team/stops/N254afb", "https://tec.openplanner.team/stops/N254agb"], ["https://tec.openplanner.team/stops/X717aba", "https://tec.openplanner.team/stops/X717abb"], ["https://tec.openplanner.team/stops/H1bs111a", "https://tec.openplanner.team/stops/H1bs112a"], ["https://tec.openplanner.team/stops/N340ada", "https://tec.openplanner.team/stops/N340aga"], ["https://tec.openplanner.team/stops/LRMeg--1", "https://tec.openplanner.team/stops/X595aca"], ["https://tec.openplanner.team/stops/Bwavfbe1", "https://tec.openplanner.team/stops/Bwavfbe2"], ["https://tec.openplanner.team/stops/N509ata", "https://tec.openplanner.team/stops/N509atb"], ["https://tec.openplanner.team/stops/X576aea", "https://tec.openplanner.team/stops/X576ahb"], ["https://tec.openplanner.team/stops/LCEboll2", "https://tec.openplanner.team/stops/LCEcent1"], ["https://tec.openplanner.team/stops/H2hg265b", "https://tec.openplanner.team/stops/H2hg270a"], ["https://tec.openplanner.team/stops/H4ir165b", "https://tec.openplanner.team/stops/H4ir166a"], ["https://tec.openplanner.team/stops/LHEcruc1", "https://tec.openplanner.team/stops/LHEvign1"], ["https://tec.openplanner.team/stops/N544acb", "https://tec.openplanner.team/stops/N544aea"], ["https://tec.openplanner.team/stops/Bwatb4s1", "https://tec.openplanner.team/stops/Bwatcpr1"], ["https://tec.openplanner.team/stops/Bwatmsj2", "https://tec.openplanner.team/stops/Bwatpai1"], ["https://tec.openplanner.team/stops/LBXhacb2", "https://tec.openplanner.team/stops/LMovieu1"], ["https://tec.openplanner.team/stops/H4fr142a", "https://tec.openplanner.team/stops/H4ka392a"], ["https://tec.openplanner.team/stops/Louaout2", "https://tec.openplanner.team/stops/Lstvill2"], ["https://tec.openplanner.team/stops/N501cla", "https://tec.openplanner.team/stops/N535aaa"], ["https://tec.openplanner.team/stops/LWEcite2", "https://tec.openplanner.team/stops/LWEeg--1"], ["https://tec.openplanner.team/stops/H1eu103a", "https://tec.openplanner.team/stops/H1eu104b"], ["https://tec.openplanner.team/stops/N104aad", "https://tec.openplanner.team/stops/N118ava"], ["https://tec.openplanner.team/stops/X641asa", "https://tec.openplanner.team/stops/X641azb"], ["https://tec.openplanner.team/stops/N425aea", "https://tec.openplanner.team/stops/N426ada"], ["https://tec.openplanner.team/stops/H3go101b", "https://tec.openplanner.team/stops/H3go104b"], ["https://tec.openplanner.team/stops/Bdvminc1", "https://tec.openplanner.team/stops/Bdvmtve2"], ["https://tec.openplanner.team/stops/Bbsicea2", "https://tec.openplanner.team/stops/Bwaunop1"], ["https://tec.openplanner.team/stops/Bgnvbsi1", "https://tec.openplanner.team/stops/Bgnvgar1"], ["https://tec.openplanner.team/stops/LGrfont1", "https://tec.openplanner.team/stops/LLGec--*"], ["https://tec.openplanner.team/stops/Btubbot2", "https://tec.openplanner.team/stops/Btubren2"], ["https://tec.openplanner.team/stops/Lfhgare1", "https://tec.openplanner.team/stops/Lfhnrou2"], ["https://tec.openplanner.team/stops/LMAcime1", "https://tec.openplanner.team/stops/LMApl--2"], ["https://tec.openplanner.team/stops/X613aab", "https://tec.openplanner.team/stops/X623aab"], ["https://tec.openplanner.team/stops/LESchac1", "https://tec.openplanner.team/stops/LPOwaut1"], ["https://tec.openplanner.team/stops/H4gr112a", "https://tec.openplanner.team/stops/H4ld124b"], ["https://tec.openplanner.team/stops/X902aba", "https://tec.openplanner.team/stops/X999aqb"], ["https://tec.openplanner.team/stops/Cthpibl1", "https://tec.openplanner.team/stops/Cthpibl2"], ["https://tec.openplanner.team/stops/X639aea", "https://tec.openplanner.team/stops/X639aub"], ["https://tec.openplanner.team/stops/H1pd143a", "https://tec.openplanner.team/stops/H1pd144b"], ["https://tec.openplanner.team/stops/Baudvdu2", "https://tec.openplanner.team/stops/Baudwav2"], ["https://tec.openplanner.team/stops/LHmferm1", "https://tec.openplanner.team/stops/LRcjard1"], ["https://tec.openplanner.team/stops/H1je213b", "https://tec.openplanner.team/stops/H1je225b"], ["https://tec.openplanner.team/stops/H2ca100b", "https://tec.openplanner.team/stops/H2mo127d"], ["https://tec.openplanner.team/stops/X806aab", "https://tec.openplanner.team/stops/X850aob"], ["https://tec.openplanner.team/stops/LeLherz1", "https://tec.openplanner.team/stops/LeLherz2"], ["https://tec.openplanner.team/stops/X784agb", "https://tec.openplanner.team/stops/X784ahb"], ["https://tec.openplanner.team/stops/Ljuauto1", "https://tec.openplanner.team/stops/Lsweg--1"], ["https://tec.openplanner.team/stops/X774ada", "https://tec.openplanner.team/stops/X774aeb"], ["https://tec.openplanner.team/stops/Llghaut1", "https://tec.openplanner.team/stops/Llglefe1"], ["https://tec.openplanner.team/stops/Ceregl1", "https://tec.openplanner.team/stops/Cerrver3"], ["https://tec.openplanner.team/stops/Blimbet3", "https://tec.openplanner.team/stops/Blimvcg2"], ["https://tec.openplanner.team/stops/LDpulve2", "https://tec.openplanner.team/stops/LDpzol-2"], ["https://tec.openplanner.team/stops/Cdamarc1", "https://tec.openplanner.team/stops/Cdaviol2"], ["https://tec.openplanner.team/stops/Bbiemor2", "https://tec.openplanner.team/stops/Bgzdpco2"], ["https://tec.openplanner.team/stops/X746agc", "https://tec.openplanner.team/stops/X746ahd"], ["https://tec.openplanner.team/stops/Bwlhcsr1", "https://tec.openplanner.team/stops/Bwlhswc1"], ["https://tec.openplanner.team/stops/LHUathe1", "https://tec.openplanner.team/stops/LHUomni2"], ["https://tec.openplanner.team/stops/Cbfstry2", "https://tec.openplanner.team/stops/NC02aba"], ["https://tec.openplanner.team/stops/NL76ala", "https://tec.openplanner.team/stops/NL76alb"], ["https://tec.openplanner.team/stops/Bnivhut1", "https://tec.openplanner.team/stops/Bnivhut2"], ["https://tec.openplanner.team/stops/X818ahb", "https://tec.openplanner.team/stops/X822agb"], ["https://tec.openplanner.team/stops/Bcrnrpc1", "https://tec.openplanner.team/stops/Bernpla1"], ["https://tec.openplanner.team/stops/H4bx167b", "https://tec.openplanner.team/stops/H4rm110a"], ["https://tec.openplanner.team/stops/LJvmale1", "https://tec.openplanner.team/stops/X781aaa"], ["https://tec.openplanner.team/stops/LMalune3", "https://tec.openplanner.team/stops/LMawilh4"], ["https://tec.openplanner.team/stops/LCn4---2", "https://tec.openplanner.team/stops/LSEec--1"], ["https://tec.openplanner.team/stops/LSEquar1", "https://tec.openplanner.team/stops/LSpshin2"], ["https://tec.openplanner.team/stops/Llgrame1", "https://tec.openplanner.team/stops/Llgwiar1"], ["https://tec.openplanner.team/stops/H1le128a", "https://tec.openplanner.team/stops/H1le129a"], ["https://tec.openplanner.team/stops/N534boh", "https://tec.openplanner.team/stops/N534bua"], ["https://tec.openplanner.team/stops/X747aha", "https://tec.openplanner.team/stops/X747aja"], ["https://tec.openplanner.team/stops/H4os217b", "https://tec.openplanner.team/stops/H4os222a"], ["https://tec.openplanner.team/stops/Cmqbasv2", "https://tec.openplanner.team/stops/X611aea"], ["https://tec.openplanner.team/stops/LWEbruy2", "https://tec.openplanner.team/stops/LWEwilc1"], ["https://tec.openplanner.team/stops/NC14aod", "https://tec.openplanner.team/stops/NC14aoe"], ["https://tec.openplanner.team/stops/Bcrncce1", "https://tec.openplanner.team/stops/Bcrncor2"], ["https://tec.openplanner.team/stops/LFArela5", "https://tec.openplanner.team/stops/LWDcime1"], ["https://tec.openplanner.team/stops/H4bh102d", "https://tec.openplanner.team/stops/H4bh104b"], ["https://tec.openplanner.team/stops/N101apa", "https://tec.openplanner.team/stops/N151aab"], ["https://tec.openplanner.team/stops/X364aba", "https://tec.openplanner.team/stops/X364abb"], ["https://tec.openplanner.team/stops/Bmlnsms1", "https://tec.openplanner.team/stops/Bmlnsms2"], ["https://tec.openplanner.team/stops/Bpieh171", "https://tec.openplanner.team/stops/Bpieh172"], ["https://tec.openplanner.team/stops/Cobbuze1", "https://tec.openplanner.team/stops/Cobmara1"], ["https://tec.openplanner.team/stops/H5rx110b", "https://tec.openplanner.team/stops/H5rx128a"], ["https://tec.openplanner.team/stops/LjeGRPMD", "https://tec.openplanner.team/stops/LjeGRPME"], ["https://tec.openplanner.team/stops/Cblsall1", "https://tec.openplanner.team/stops/Cslbarb1"], ["https://tec.openplanner.team/stops/X926aaa", "https://tec.openplanner.team/stops/X947aeb"], ["https://tec.openplanner.team/stops/Bnilpie1", "https://tec.openplanner.team/stops/Bwlhpec2"], ["https://tec.openplanner.team/stops/X633ahb", "https://tec.openplanner.team/stops/X633ala"], ["https://tec.openplanner.team/stops/LHthest1", "https://tec.openplanner.team/stops/LJAmari2"], ["https://tec.openplanner.team/stops/LVEmoul1", "https://tec.openplanner.team/stops/LYegeor2"], ["https://tec.openplanner.team/stops/LCpegli1", "https://tec.openplanner.team/stops/LSPvigi2"], ["https://tec.openplanner.team/stops/Blaspch1", "https://tec.openplanner.team/stops/Blasvil3"], ["https://tec.openplanner.team/stops/LCleg--1", "https://tec.openplanner.team/stops/LELchap2"], ["https://tec.openplanner.team/stops/H4me211a", "https://tec.openplanner.team/stops/H4me211c"], ["https://tec.openplanner.team/stops/X812ava", "https://tec.openplanner.team/stops/X812bab"], ["https://tec.openplanner.team/stops/Bndbdra1", "https://tec.openplanner.team/stops/Bndbnod1"], ["https://tec.openplanner.team/stops/X775aia", "https://tec.openplanner.team/stops/X775ajb"], ["https://tec.openplanner.team/stops/LLUvent2", "https://tec.openplanner.team/stops/LLUvent6"], ["https://tec.openplanner.team/stops/H4mv189a", "https://tec.openplanner.team/stops/H4mv189c"], ["https://tec.openplanner.team/stops/LNIec--1", "https://tec.openplanner.team/stops/LSPsauv1"], ["https://tec.openplanner.team/stops/LlgCATH1", "https://tec.openplanner.team/stops/Llgpier1"], ["https://tec.openplanner.team/stops/LMfpeni*", "https://tec.openplanner.team/stops/NL73aaa"], ["https://tec.openplanner.team/stops/LLrgare2", "https://tec.openplanner.team/stops/LSXvill2"], ["https://tec.openplanner.team/stops/Cselait1", "https://tec.openplanner.team/stops/Cvtchap2"], ["https://tec.openplanner.team/stops/N501dva", "https://tec.openplanner.team/stops/N501dvb"], ["https://tec.openplanner.team/stops/LHecime1", "https://tec.openplanner.team/stops/LHemoul2"], ["https://tec.openplanner.team/stops/H1te183a", "https://tec.openplanner.team/stops/H1te187b"], ["https://tec.openplanner.team/stops/Cmlstni1", "https://tec.openplanner.team/stops/Cmlstni2"], ["https://tec.openplanner.team/stops/X224adb", "https://tec.openplanner.team/stops/X224ahb"], ["https://tec.openplanner.team/stops/N244afa", "https://tec.openplanner.team/stops/N244anb"], ["https://tec.openplanner.team/stops/Bbeagae2", "https://tec.openplanner.team/stops/Btiegar2"], ["https://tec.openplanner.team/stops/LAWcorn2", "https://tec.openplanner.team/stops/LAWcorn4"], ["https://tec.openplanner.team/stops/Csobail2", "https://tec.openplanner.team/stops/Csochea1"], ["https://tec.openplanner.team/stops/H4pq119b", "https://tec.openplanner.team/stops/H4sl154a"], ["https://tec.openplanner.team/stops/X882aeb", "https://tec.openplanner.team/stops/X882amb"], ["https://tec.openplanner.team/stops/X601baa", "https://tec.openplanner.team/stops/X601bca"], ["https://tec.openplanner.team/stops/Bhmmcge2", "https://tec.openplanner.team/stops/Bhmmcha1"], ["https://tec.openplanner.team/stops/X749acb", "https://tec.openplanner.team/stops/X749afa"], ["https://tec.openplanner.team/stops/LHUanth1", "https://tec.openplanner.team/stops/LHUlebo1"], ["https://tec.openplanner.team/stops/X879akb", "https://tec.openplanner.team/stops/X879ala"], ["https://tec.openplanner.team/stops/H1fl133c", "https://tec.openplanner.team/stops/H1fl133f"], ["https://tec.openplanner.team/stops/Bwagsta1", "https://tec.openplanner.team/stops/Bwagsta2"], ["https://tec.openplanner.team/stops/N231abb", "https://tec.openplanner.team/stops/N242adc"], ["https://tec.openplanner.team/stops/H4mo150b", "https://tec.openplanner.team/stops/H4mo198a"], ["https://tec.openplanner.team/stops/Lgrbill1", "https://tec.openplanner.team/stops/Lgrcoll2"], ["https://tec.openplanner.team/stops/LBsfer-1", "https://tec.openplanner.team/stops/LBspiet1"], ["https://tec.openplanner.team/stops/Cchdrai1", "https://tec.openplanner.team/stops/CMwate2"], ["https://tec.openplanner.team/stops/N551agb", "https://tec.openplanner.team/stops/N551apa"], ["https://tec.openplanner.team/stops/X601dba", "https://tec.openplanner.team/stops/X601dbb"], ["https://tec.openplanner.team/stops/X641afa", "https://tec.openplanner.team/stops/X641afc"], ["https://tec.openplanner.team/stops/Cgynoir1", "https://tec.openplanner.team/stops/Cgytrie1"], ["https://tec.openplanner.team/stops/Llggill3", "https://tec.openplanner.team/stops/Llggill4"], ["https://tec.openplanner.team/stops/Borblim1", "https://tec.openplanner.team/stops/Borborb2"], ["https://tec.openplanner.team/stops/X788acb", "https://tec.openplanner.team/stops/X788ada"], ["https://tec.openplanner.team/stops/Ljucaba1", "https://tec.openplanner.team/stops/Ljuroch1"], ["https://tec.openplanner.team/stops/H1ht133a", "https://tec.openplanner.team/stops/H1vt194a"], ["https://tec.openplanner.team/stops/X602aoa", "https://tec.openplanner.team/stops/X653aca"], ["https://tec.openplanner.team/stops/X911aia", "https://tec.openplanner.team/stops/X911ajb"], ["https://tec.openplanner.team/stops/LTamoul1", "https://tec.openplanner.team/stops/LTaxhos1"], ["https://tec.openplanner.team/stops/X979afb", "https://tec.openplanner.team/stops/X979aga"], ["https://tec.openplanner.team/stops/LCaalou1", "https://tec.openplanner.team/stops/LCacoop1"], ["https://tec.openplanner.team/stops/LHUlebo1", "https://tec.openplanner.team/stops/LHUlebo2"], ["https://tec.openplanner.team/stops/LHUaveu2", "https://tec.openplanner.team/stops/NL80abb"], ["https://tec.openplanner.team/stops/N542akb", "https://tec.openplanner.team/stops/N542arb"], ["https://tec.openplanner.team/stops/X606abb", "https://tec.openplanner.team/stops/X620ahb"], ["https://tec.openplanner.team/stops/Bgnppra1", "https://tec.openplanner.team/stops/Cgnquer2"], ["https://tec.openplanner.team/stops/LSMchat2", "https://tec.openplanner.team/stops/LSMfroi1"], ["https://tec.openplanner.team/stops/N540aea", "https://tec.openplanner.team/stops/N540aeb"], ["https://tec.openplanner.team/stops/LRmrode1", "https://tec.openplanner.team/stops/LVu40--1"], ["https://tec.openplanner.team/stops/Blpghou1", "https://tec.openplanner.team/stops/Cgnpass1"], ["https://tec.openplanner.team/stops/H1cu119b", "https://tec.openplanner.team/stops/H1cu122a"], ["https://tec.openplanner.team/stops/LETsaiv1", "https://tec.openplanner.team/stops/Lretill2"], ["https://tec.openplanner.team/stops/Bpecsta1", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://tec.openplanner.team/stops/N231aba", "https://tec.openplanner.team/stops/N231afa"], ["https://tec.openplanner.team/stops/LCHgele2", "https://tec.openplanner.team/stops/Ldicorb2"], ["https://tec.openplanner.team/stops/Cbmclar1", "https://tec.openplanner.team/stops/Cbmclar2"], ["https://tec.openplanner.team/stops/Llgjenn2", "https://tec.openplanner.team/stops/Llgjenn3"], ["https://tec.openplanner.team/stops/N229ara", "https://tec.openplanner.team/stops/N229asb"], ["https://tec.openplanner.team/stops/Bmonbor2", "https://tec.openplanner.team/stops/Bnivmon1"], ["https://tec.openplanner.team/stops/Bbeaech1", "https://tec.openplanner.team/stops/Bbeascl1"], ["https://tec.openplanner.team/stops/Lemdieu2", "https://tec.openplanner.team/stops/Lemdupo2"], ["https://tec.openplanner.team/stops/LNAanne1", "https://tec.openplanner.team/stops/LNAplac2"], ["https://tec.openplanner.team/stops/H4mt222b", "https://tec.openplanner.team/stops/H4ru235a"], ["https://tec.openplanner.team/stops/N501fga", "https://tec.openplanner.team/stops/N501mjc"], ["https://tec.openplanner.team/stops/N235aga", "https://tec.openplanner.team/stops/N241aca"], ["https://tec.openplanner.team/stops/X396aca", "https://tec.openplanner.team/stops/X396ada"], ["https://tec.openplanner.team/stops/X661ala", "https://tec.openplanner.team/stops/X817afa"], ["https://tec.openplanner.team/stops/Cjuaero2", "https://tec.openplanner.team/stops/Cjuapca2"], ["https://tec.openplanner.team/stops/Bgoestu1", "https://tec.openplanner.team/stops/Bgoestu2"], ["https://tec.openplanner.team/stops/H4ty313a", "https://tec.openplanner.team/stops/H4ty405b"], ["https://tec.openplanner.team/stops/Bbeabme2", "https://tec.openplanner.team/stops/Bbeaegl2"], ["https://tec.openplanner.team/stops/LBLplac1", "https://tec.openplanner.team/stops/LBLplac2"], ["https://tec.openplanner.team/stops/LBEairp3", "https://tec.openplanner.team/stops/LBEairp4"], ["https://tec.openplanner.team/stops/X910aha", "https://tec.openplanner.team/stops/X910aja"], ["https://tec.openplanner.team/stops/Llg20ao3", "https://tec.openplanner.team/stops/Llgcock2"], ["https://tec.openplanner.team/stops/H1hh111b", "https://tec.openplanner.team/stops/H1hh115a"], ["https://tec.openplanner.team/stops/X604ahb", "https://tec.openplanner.team/stops/X625afb"], ["https://tec.openplanner.team/stops/Cbfgare2", "https://tec.openplanner.team/stops/Cctlimi2"], ["https://tec.openplanner.team/stops/Bitrbvo1", "https://tec.openplanner.team/stops/Bitrsar1"], ["https://tec.openplanner.team/stops/H4mb140a", "https://tec.openplanner.team/stops/H4mb141a"], ["https://tec.openplanner.team/stops/X812aya", "https://tec.openplanner.team/stops/X860aab"], ["https://tec.openplanner.team/stops/Louegla1", "https://tec.openplanner.team/stops/Louoran2"], ["https://tec.openplanner.team/stops/Llgplop2", "https://tec.openplanner.team/stops/Lvtfrai1"], ["https://tec.openplanner.team/stops/X836aja", "https://tec.openplanner.team/stops/X836ajb"], ["https://tec.openplanner.team/stops/Bsmgpla1", "https://tec.openplanner.team/stops/Bsmgpla2"], ["https://tec.openplanner.team/stops/X671aea", "https://tec.openplanner.team/stops/X671afb"], ["https://tec.openplanner.team/stops/LSGcarr2", "https://tec.openplanner.team/stops/LSGeg--3"], ["https://tec.openplanner.team/stops/Barqpla1", "https://tec.openplanner.team/stops/Bfelbri1"], ["https://tec.openplanner.team/stops/LLStrid2", "https://tec.openplanner.team/stops/LLStrid3"], ["https://tec.openplanner.team/stops/X663aga", "https://tec.openplanner.team/stops/X663agb"], ["https://tec.openplanner.team/stops/N522afb", "https://tec.openplanner.team/stops/N522aga"], ["https://tec.openplanner.team/stops/LPT97--1", "https://tec.openplanner.team/stops/LPTgran1"], ["https://tec.openplanner.team/stops/H1th180a", "https://tec.openplanner.team/stops/H1th181a"], ["https://tec.openplanner.team/stops/N528afc", "https://tec.openplanner.team/stops/N551aaa"], ["https://tec.openplanner.team/stops/H1ms267a", "https://tec.openplanner.team/stops/H1ms913a"], ["https://tec.openplanner.team/stops/X756aha", "https://tec.openplanner.team/stops/X756aia"], ["https://tec.openplanner.team/stops/LHHcite1", "https://tec.openplanner.team/stops/LHHtill1"], ["https://tec.openplanner.team/stops/Blemhon2", "https://tec.openplanner.team/stops/Blempuc1"], ["https://tec.openplanner.team/stops/Bottcco2", "https://tec.openplanner.team/stops/Bottgar1"], ["https://tec.openplanner.team/stops/Bgzdgpa2", "https://tec.openplanner.team/stops/Bgzdgst2"], ["https://tec.openplanner.team/stops/N501iob", "https://tec.openplanner.team/stops/N501isa"], ["https://tec.openplanner.team/stops/LFochap1", "https://tec.openplanner.team/stops/LFochap2"], ["https://tec.openplanner.team/stops/H2go114d", "https://tec.openplanner.team/stops/H2go116a"], ["https://tec.openplanner.team/stops/H1ms261a", "https://tec.openplanner.team/stops/H1ms272b"], ["https://tec.openplanner.team/stops/H2sb225a", "https://tec.openplanner.team/stops/H2sb243d"], ["https://tec.openplanner.team/stops/H1le118a", "https://tec.openplanner.team/stops/H1ol143a"], ["https://tec.openplanner.team/stops/Csregli1", "https://tec.openplanner.team/stops/NH01apa"], ["https://tec.openplanner.team/stops/LFOchab1", "https://tec.openplanner.team/stops/LFOchab2"], ["https://tec.openplanner.team/stops/Cciferr2", "https://tec.openplanner.team/stops/Ccivill1"], ["https://tec.openplanner.team/stops/H2hp119b", "https://tec.openplanner.team/stops/H2hp262a"], ["https://tec.openplanner.team/stops/X804bpa", "https://tec.openplanner.team/stops/X804bpb"], ["https://tec.openplanner.team/stops/Lhuchev1", "https://tec.openplanner.team/stops/Lhuchev2"], ["https://tec.openplanner.team/stops/N212afa", "https://tec.openplanner.team/stops/N212akb"], ["https://tec.openplanner.team/stops/H1au101a", "https://tec.openplanner.team/stops/H1mh112a"], ["https://tec.openplanner.team/stops/X982asa", "https://tec.openplanner.team/stops/X982bwa"], ["https://tec.openplanner.team/stops/H4wn125b", "https://tec.openplanner.team/stops/H4wn129b"], ["https://tec.openplanner.team/stops/Bbghsta1", "https://tec.openplanner.team/stops/Bstesar2"], ["https://tec.openplanner.team/stops/LHanest1", "https://tec.openplanner.team/stops/LHarenn1"], ["https://tec.openplanner.team/stops/N585aia", "https://tec.openplanner.team/stops/N585aib"], ["https://tec.openplanner.team/stops/N134aaa", "https://tec.openplanner.team/stops/N134ada"], ["https://tec.openplanner.team/stops/N234aea", "https://tec.openplanner.team/stops/N549aeb"], ["https://tec.openplanner.team/stops/X663ana", "https://tec.openplanner.team/stops/X663aqa"], ["https://tec.openplanner.team/stops/LSceg--2", "https://tec.openplanner.team/stops/LSceg--3"], ["https://tec.openplanner.team/stops/N101aca", "https://tec.openplanner.team/stops/N101acb"], ["https://tec.openplanner.team/stops/LCscarr1", "https://tec.openplanner.team/stops/LCschri2"], ["https://tec.openplanner.team/stops/H4do105a", "https://tec.openplanner.team/stops/H4mo195a"], ["https://tec.openplanner.team/stops/LPRecol1", "https://tec.openplanner.team/stops/LTRfica1"], ["https://tec.openplanner.team/stops/H1hr117a", "https://tec.openplanner.team/stops/H1hr128c"], ["https://tec.openplanner.team/stops/LSzetoi1", "https://tec.openplanner.team/stops/LSzsurl2"], ["https://tec.openplanner.team/stops/Bblaegl2", "https://tec.openplanner.team/stops/Bblasmo2"], ["https://tec.openplanner.team/stops/LBssucr1", "https://tec.openplanner.team/stops/NL72aeb"], ["https://tec.openplanner.team/stops/Bgrhcro2", "https://tec.openplanner.team/stops/Bgrhhot1"], ["https://tec.openplanner.team/stops/Lchorme1", "https://tec.openplanner.team/stops/Lchorme2"], ["https://tec.openplanner.team/stops/LSPmalc1", "https://tec.openplanner.team/stops/LWycabi1"], ["https://tec.openplanner.team/stops/Cmareun1", "https://tec.openplanner.team/stops/Cmareun2"], ["https://tec.openplanner.team/stops/H1ba114c", "https://tec.openplanner.team/stops/H1ba118a"], ["https://tec.openplanner.team/stops/H4ob109a", "https://tec.openplanner.team/stops/H4ob124b"], ["https://tec.openplanner.team/stops/Lsecoll2", "https://tec.openplanner.team/stops/Lsepuit1"], ["https://tec.openplanner.team/stops/N874aja", "https://tec.openplanner.team/stops/N874ajb"], ["https://tec.openplanner.team/stops/LVkchap1", "https://tec.openplanner.team/stops/LVkchap2"], ["https://tec.openplanner.team/stops/X661bba", "https://tec.openplanner.team/stops/X672abb"], ["https://tec.openplanner.team/stops/LWApt--1", "https://tec.openplanner.team/stops/LWAvisi1"], ["https://tec.openplanner.team/stops/LHChoek3", "https://tec.openplanner.team/stops/LHChoek4"], ["https://tec.openplanner.team/stops/LAMhopi3", "https://tec.openplanner.team/stops/LAMjaur2"], ["https://tec.openplanner.team/stops/LBmbara2", "https://tec.openplanner.team/stops/LMRmont2"], ["https://tec.openplanner.team/stops/N531aab", "https://tec.openplanner.team/stops/N531aub"], ["https://tec.openplanner.team/stops/X647aab", "https://tec.openplanner.team/stops/X648aab"], ["https://tec.openplanner.team/stops/LWHmath2", "https://tec.openplanner.team/stops/LWHtrui1"], ["https://tec.openplanner.team/stops/Cdagoss2", "https://tec.openplanner.team/stops/CMprov1"], ["https://tec.openplanner.team/stops/LESfoot2", "https://tec.openplanner.team/stops/LESmont1"], ["https://tec.openplanner.team/stops/LTAchpl1", "https://tec.openplanner.team/stops/LTHmont2"], ["https://tec.openplanner.team/stops/N211ana", "https://tec.openplanner.team/stops/N211bcb"], ["https://tec.openplanner.team/stops/X769apa", "https://tec.openplanner.team/stops/X769apb"], ["https://tec.openplanner.team/stops/N553ama", "https://tec.openplanner.team/stops/N553anb"], ["https://tec.openplanner.team/stops/Ccuhaie1", "https://tec.openplanner.team/stops/Ccuoise2"], ["https://tec.openplanner.team/stops/H4hn115a", "https://tec.openplanner.team/stops/H4jm117c"], ["https://tec.openplanner.team/stops/N520aeb", "https://tec.openplanner.team/stops/N523aca"], ["https://tec.openplanner.team/stops/X730aaa", "https://tec.openplanner.team/stops/X730aab"], ["https://tec.openplanner.team/stops/Cctjust1", "https://tec.openplanner.team/stops/Cctjust2"], ["https://tec.openplanner.team/stops/Buccron2", "https://tec.openplanner.team/stops/Bwbfhip2"], ["https://tec.openplanner.team/stops/N529aca", "https://tec.openplanner.team/stops/N529acb"], ["https://tec.openplanner.team/stops/N519aha", "https://tec.openplanner.team/stops/N519apa"], ["https://tec.openplanner.team/stops/LAYharz1", "https://tec.openplanner.team/stops/LHrrard2"], ["https://tec.openplanner.team/stops/Lcemeta1", "https://tec.openplanner.team/stops/Lcemeta2"], ["https://tec.openplanner.team/stops/Bjaugar5", "https://tec.openplanner.team/stops/Bjaugaz2"], ["https://tec.openplanner.team/stops/Ccohuli2", "https://tec.openplanner.team/stops/Ccostan1"], ["https://tec.openplanner.team/stops/LHHgare1", "https://tec.openplanner.team/stops/LSkrena3"], ["https://tec.openplanner.team/stops/N569aea", "https://tec.openplanner.team/stops/N569afb"], ["https://tec.openplanner.team/stops/H1br120a", "https://tec.openplanner.team/stops/H1ev112a"], ["https://tec.openplanner.team/stops/Bllnhoc2", "https://tec.openplanner.team/stops/Bwavtas2"], ["https://tec.openplanner.team/stops/N311aba", "https://tec.openplanner.team/stops/N311afb"], ["https://tec.openplanner.team/stops/N539aia", "https://tec.openplanner.team/stops/N539apa"], ["https://tec.openplanner.team/stops/N539afb", "https://tec.openplanner.team/stops/N539afc"], ["https://tec.openplanner.team/stops/Bbchmin1", "https://tec.openplanner.team/stops/Bbchmin2"], ["https://tec.openplanner.team/stops/Cgzcour2", "https://tec.openplanner.team/stops/Cgzplac3"], ["https://tec.openplanner.team/stops/Brebgar1", "https://tec.openplanner.team/stops/Brebrha2"], ["https://tec.openplanner.team/stops/H4br111a", "https://tec.openplanner.team/stops/H4pe127b"], ["https://tec.openplanner.team/stops/LaMhe421", "https://tec.openplanner.team/stops/LaMthei2"], ["https://tec.openplanner.team/stops/Lsedese1", "https://tec.openplanner.team/stops/Lseserv1"], ["https://tec.openplanner.team/stops/LBPrueg2", "https://tec.openplanner.team/stops/LSLprov1"], ["https://tec.openplanner.team/stops/LbOdorf1", "https://tec.openplanner.team/stops/LbOhoff1"], ["https://tec.openplanner.team/stops/LeUbell*", "https://tec.openplanner.team/stops/LeUmeie1"], ["https://tec.openplanner.team/stops/Bengvma2", "https://tec.openplanner.team/stops/H1en106a"], ["https://tec.openplanner.team/stops/N537ahb", "https://tec.openplanner.team/stops/N537aja"], ["https://tec.openplanner.team/stops/LrAeife2", "https://tec.openplanner.team/stops/LrAiter2"], ["https://tec.openplanner.team/stops/H4pl122a", "https://tec.openplanner.team/stops/H4pl122b"], ["https://tec.openplanner.team/stops/Cwgplac1", "https://tec.openplanner.team/stops/Cwgplac2"], ["https://tec.openplanner.team/stops/N122aba", "https://tec.openplanner.team/stops/N122acb"], ["https://tec.openplanner.team/stops/Lglvict2", "https://tec.openplanner.team/stops/Llgavoc2"], ["https://tec.openplanner.team/stops/N244ajb", "https://tec.openplanner.team/stops/N244amb"], ["https://tec.openplanner.team/stops/LFabraa2", "https://tec.openplanner.team/stops/LVMfoli2"], ["https://tec.openplanner.team/stops/N501ahb", "https://tec.openplanner.team/stops/N501bub"], ["https://tec.openplanner.team/stops/Ccyfede1", "https://tec.openplanner.team/stops/Cvtegli2"], ["https://tec.openplanner.team/stops/H2lc168a", "https://tec.openplanner.team/stops/H2lc171a"], ["https://tec.openplanner.team/stops/N202aca", "https://tec.openplanner.team/stops/N236aba"], ["https://tec.openplanner.team/stops/H4wi161a", "https://tec.openplanner.team/stops/H5pe139b"], ["https://tec.openplanner.team/stops/LROcent2", "https://tec.openplanner.team/stops/LROrtba1"], ["https://tec.openplanner.team/stops/H1ob328a", "https://tec.openplanner.team/stops/H1sd346a"], ["https://tec.openplanner.team/stops/H2sv218a", "https://tec.openplanner.team/stops/H2sv259a"], ["https://tec.openplanner.team/stops/H4to139a", "https://tec.openplanner.team/stops/H4to139d"], ["https://tec.openplanner.team/stops/Ladandr2", "https://tec.openplanner.team/stops/Ldimeun1"], ["https://tec.openplanner.team/stops/X806acb", "https://tec.openplanner.team/stops/X806ala"], ["https://tec.openplanner.team/stops/Lvtbocl1", "https://tec.openplanner.team/stops/Lvtbocl2"], ["https://tec.openplanner.team/stops/LWalyce1", "https://tec.openplanner.team/stops/LWalyce2"], ["https://tec.openplanner.team/stops/Bhevgar1", "https://tec.openplanner.team/stops/Bhevgro1"], ["https://tec.openplanner.team/stops/Crccano4", "https://tec.openplanner.team/stops/Crcrwas2"], ["https://tec.openplanner.team/stops/N531aua", "https://tec.openplanner.team/stops/N531aub"], ["https://tec.openplanner.team/stops/LLg9---1", "https://tec.openplanner.team/stops/LSMfroi1"], ["https://tec.openplanner.team/stops/H1cd110b", "https://tec.openplanner.team/stops/H1cd113a"], ["https://tec.openplanner.team/stops/Cchdigu4", "https://tec.openplanner.team/stops/Cchoues1"], ["https://tec.openplanner.team/stops/LBNplei1", "https://tec.openplanner.team/stops/LhElont2"], ["https://tec.openplanner.team/stops/Bolgcsa1", "https://tec.openplanner.team/stops/Bolgmpl1"], ["https://tec.openplanner.team/stops/Lrebriq2", "https://tec.openplanner.team/stops/Lrevaul1"], ["https://tec.openplanner.team/stops/LMvgare1", "https://tec.openplanner.team/stops/LMvrabo1"], ["https://tec.openplanner.team/stops/LHehacc1", "https://tec.openplanner.team/stops/LOUbleu2"], ["https://tec.openplanner.team/stops/X773acb", "https://tec.openplanner.team/stops/X773ada"], ["https://tec.openplanner.team/stops/LRmkult1", "https://tec.openplanner.team/stops/LRmmabr1"], ["https://tec.openplanner.team/stops/H1ch102b", "https://tec.openplanner.team/stops/H5ma181b"], ["https://tec.openplanner.team/stops/H4ca120a", "https://tec.openplanner.team/stops/H4ca124a"], ["https://tec.openplanner.team/stops/H2hg157b", "https://tec.openplanner.team/stops/H2hg265b"], ["https://tec.openplanner.team/stops/Bwavgar6", "https://tec.openplanner.team/stops/Bwavmes2"], ["https://tec.openplanner.team/stops/X908aoa", "https://tec.openplanner.team/stops/X908apb"], ["https://tec.openplanner.team/stops/N501eab", "https://tec.openplanner.team/stops/N501epb"], ["https://tec.openplanner.team/stops/LSIters2", "https://tec.openplanner.team/stops/LVApark2"], ["https://tec.openplanner.team/stops/X801apb", "https://tec.openplanner.team/stops/X889abb"], ["https://tec.openplanner.team/stops/H4bd109b", "https://tec.openplanner.team/stops/H4ma411b"], ["https://tec.openplanner.team/stops/X666aja", "https://tec.openplanner.team/stops/X666akb"], ["https://tec.openplanner.team/stops/Lsepcha2", "https://tec.openplanner.team/stops/Lsepcha3"], ["https://tec.openplanner.team/stops/X948ara", "https://tec.openplanner.team/stops/X948arb"], ["https://tec.openplanner.team/stops/N524akb", "https://tec.openplanner.team/stops/N524amb"], ["https://tec.openplanner.team/stops/LmIzent1", "https://tec.openplanner.team/stops/LvAschr2"], ["https://tec.openplanner.team/stops/H4og206a", "https://tec.openplanner.team/stops/H4og212b"], ["https://tec.openplanner.team/stops/LmNha222", "https://tec.openplanner.team/stops/LmNpost2"], ["https://tec.openplanner.team/stops/X639amb", "https://tec.openplanner.team/stops/X639arb"], ["https://tec.openplanner.team/stops/N501cmd", "https://tec.openplanner.team/stops/N501dna"], ["https://tec.openplanner.team/stops/H1ba111a", "https://tec.openplanner.team/stops/H1ba112b"], ["https://tec.openplanner.team/stops/Cmyfoym1", "https://tec.openplanner.team/stops/Cmypast1"], ["https://tec.openplanner.team/stops/X643aba", "https://tec.openplanner.team/stops/X646aaa"], ["https://tec.openplanner.team/stops/Cmlhauc1", "https://tec.openplanner.team/stops/Cmlhauc4"], ["https://tec.openplanner.team/stops/H4pp121a", "https://tec.openplanner.team/stops/H4ve140a"], ["https://tec.openplanner.team/stops/N543aea", "https://tec.openplanner.team/stops/N543ckb"], ["https://tec.openplanner.team/stops/N309aca", "https://tec.openplanner.team/stops/N309acb"], ["https://tec.openplanner.team/stops/H1mr123a", "https://tec.openplanner.team/stops/H1mr123b"], ["https://tec.openplanner.team/stops/Cflchel1", "https://tec.openplanner.team/stops/Cflchel2"], ["https://tec.openplanner.team/stops/Blmlcle1", "https://tec.openplanner.team/stops/Blmlgar1"], ["https://tec.openplanner.team/stops/X650afe", "https://tec.openplanner.team/stops/X658abb"], ["https://tec.openplanner.team/stops/X659ala", "https://tec.openplanner.team/stops/X742aba"], ["https://tec.openplanner.team/stops/LnNkirc2", "https://tec.openplanner.team/stops/LnNzent2"], ["https://tec.openplanner.team/stops/H1wa145b", "https://tec.openplanner.team/stops/H1wa150a"], ["https://tec.openplanner.team/stops/Bcrntru1", "https://tec.openplanner.team/stops/Bcrntru2"], ["https://tec.openplanner.team/stops/X769ala", "https://tec.openplanner.team/stops/X769ama"], ["https://tec.openplanner.team/stops/X619akb", "https://tec.openplanner.team/stops/X622aea"], ["https://tec.openplanner.team/stops/H1bo100a", "https://tec.openplanner.team/stops/H1bo145a"], ["https://tec.openplanner.team/stops/Llgmont1", "https://tec.openplanner.team/stops/Llgmont2"], ["https://tec.openplanner.team/stops/N215acc", "https://tec.openplanner.team/stops/N232ceb"], ["https://tec.openplanner.team/stops/N241agb", "https://tec.openplanner.team/stops/N270acb"], ["https://tec.openplanner.team/stops/X748abb", "https://tec.openplanner.team/stops/X748aca"], ["https://tec.openplanner.team/stops/X813aba", "https://tec.openplanner.team/stops/X813aca"], ["https://tec.openplanner.team/stops/NL77agb", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/H2ch110b", "https://tec.openplanner.team/stops/H2ch121a"], ["https://tec.openplanner.team/stops/LbOlier1", "https://tec.openplanner.team/stops/LbOlier2"], ["https://tec.openplanner.team/stops/LBBlaga2", "https://tec.openplanner.team/stops/X222azb"], ["https://tec.openplanner.team/stops/LMYmont1", "https://tec.openplanner.team/stops/X796aga"], ["https://tec.openplanner.team/stops/Cgdcent2", "https://tec.openplanner.team/stops/Cgdrhau1"], ["https://tec.openplanner.team/stops/H4ab102a", "https://tec.openplanner.team/stops/H5ma181b"], ["https://tec.openplanner.team/stops/N501hkb", "https://tec.openplanner.team/stops/N501lrb"], ["https://tec.openplanner.team/stops/X661aab", "https://tec.openplanner.team/stops/X836abb"], ["https://tec.openplanner.team/stops/H4co108b", "https://tec.openplanner.team/stops/H4co142a"], ["https://tec.openplanner.team/stops/H4co107a", "https://tec.openplanner.team/stops/H4co108b"], ["https://tec.openplanner.team/stops/N571ajb", "https://tec.openplanner.team/stops/N571aka"], ["https://tec.openplanner.team/stops/Cmttrie2", "https://tec.openplanner.team/stops/Cmtyern1"], ["https://tec.openplanner.team/stops/H4ta122a", "https://tec.openplanner.team/stops/H4ta123b"], ["https://tec.openplanner.team/stops/N509aca", "https://tec.openplanner.team/stops/N509acb"], ["https://tec.openplanner.team/stops/X642aab", "https://tec.openplanner.team/stops/X646aab"], ["https://tec.openplanner.team/stops/H4mx117a", "https://tec.openplanner.team/stops/H4po127b"], ["https://tec.openplanner.team/stops/LJelava2", "https://tec.openplanner.team/stops/LMOstat1"], ["https://tec.openplanner.team/stops/H4am100a", "https://tec.openplanner.team/stops/H4an107b"], ["https://tec.openplanner.team/stops/X639ama", "https://tec.openplanner.team/stops/X639ara"], ["https://tec.openplanner.team/stops/N347agb", "https://tec.openplanner.team/stops/X347ajb"], ["https://tec.openplanner.team/stops/X695aea", "https://tec.openplanner.team/stops/X695aja"], ["https://tec.openplanner.team/stops/Bhtibru1", "https://tec.openplanner.team/stops/Bitrfsc2"], ["https://tec.openplanner.team/stops/Louencl2", "https://tec.openplanner.team/stops/Louroos3"], ["https://tec.openplanner.team/stops/LmHabzw2", "https://tec.openplanner.team/stops/LmHdrei2"], ["https://tec.openplanner.team/stops/Bnivath2", "https://tec.openplanner.team/stops/Bnivver1"], ["https://tec.openplanner.team/stops/X784aha", "https://tec.openplanner.team/stops/X784alb"], ["https://tec.openplanner.team/stops/H4ha167b", "https://tec.openplanner.team/stops/H4ha168b"], ["https://tec.openplanner.team/stops/NB33aja", "https://tec.openplanner.team/stops/NB33aka"], ["https://tec.openplanner.team/stops/X760afb", "https://tec.openplanner.team/stops/X788afa"], ["https://tec.openplanner.team/stops/Bbgepau2", "https://tec.openplanner.team/stops/Bbgevil1"], ["https://tec.openplanner.team/stops/Cchhopi4", "https://tec.openplanner.team/stops/Cchwate3"], ["https://tec.openplanner.team/stops/N501awb", "https://tec.openplanner.team/stops/N501azb"], ["https://tec.openplanner.team/stops/H1so142a", "https://tec.openplanner.team/stops/H1so142b"], ["https://tec.openplanner.team/stops/Cjxcoll1", "https://tec.openplanner.team/stops/Cjxpann2"], ["https://tec.openplanner.team/stops/X601aba", "https://tec.openplanner.team/stops/X601adb"], ["https://tec.openplanner.team/stops/Bmsgbur1", "https://tec.openplanner.team/stops/Bottbru2"], ["https://tec.openplanner.team/stops/X817aba", "https://tec.openplanner.team/stops/X817aca"], ["https://tec.openplanner.team/stops/H4lh161a", "https://tec.openplanner.team/stops/H4oe151a"], ["https://tec.openplanner.team/stops/LWOcour2", "https://tec.openplanner.team/stops/LWOruis1"], ["https://tec.openplanner.team/stops/H4sm247b", "https://tec.openplanner.team/stops/H4ty322c"], ["https://tec.openplanner.team/stops/X614abb", "https://tec.openplanner.team/stops/X614amb"], ["https://tec.openplanner.team/stops/X729aaa", "https://tec.openplanner.team/stops/X745aea"], ["https://tec.openplanner.team/stops/LAYfoot1", "https://tec.openplanner.team/stops/LFLcarr2"], ["https://tec.openplanner.team/stops/X818aba", "https://tec.openplanner.team/stops/X818aca"], ["https://tec.openplanner.team/stops/Cgpchen1", "https://tec.openplanner.team/stops/H2gy113a"], ["https://tec.openplanner.team/stops/X917afb", "https://tec.openplanner.team/stops/X921ana"], ["https://tec.openplanner.team/stops/LNEgaul2", "https://tec.openplanner.team/stops/LNEvand1"], ["https://tec.openplanner.team/stops/X666aea", "https://tec.openplanner.team/stops/X666aeb"], ["https://tec.openplanner.team/stops/H5pe132b", "https://tec.openplanner.team/stops/H5pe149b"], ["https://tec.openplanner.team/stops/Bhmmmon1", "https://tec.openplanner.team/stops/Bhmmpos2"], ["https://tec.openplanner.team/stops/Cgxbeau2", "https://tec.openplanner.team/stops/Cgxmaco2"], ["https://tec.openplanner.team/stops/H4ry131b", "https://tec.openplanner.team/stops/H4ry140b"], ["https://tec.openplanner.team/stops/Croegli2", "https://tec.openplanner.team/stops/Cropcan2"], ["https://tec.openplanner.team/stops/LLAcalv2", "https://tec.openplanner.team/stops/LLAeg--2"], ["https://tec.openplanner.team/stops/H4ka175a", "https://tec.openplanner.team/stops/H4ob108a"], ["https://tec.openplanner.team/stops/Btanpla3", "https://tec.openplanner.team/stops/Btanvil1"], ["https://tec.openplanner.team/stops/X826ada", "https://tec.openplanner.team/stops/X826add"], ["https://tec.openplanner.team/stops/LLYcalv2", "https://tec.openplanner.team/stops/LLYchpl1"], ["https://tec.openplanner.team/stops/N222aba", "https://tec.openplanner.team/stops/N222ayb"], ["https://tec.openplanner.team/stops/H1ha189b", "https://tec.openplanner.team/stops/H1vh136b"], ["https://tec.openplanner.team/stops/NL74aja", "https://tec.openplanner.team/stops/NL74ajb"], ["https://tec.openplanner.team/stops/LmNelis1", "https://tec.openplanner.team/stops/LmNelis2"], ["https://tec.openplanner.team/stops/H1do130a", "https://tec.openplanner.team/stops/H1do130b"], ["https://tec.openplanner.team/stops/Bjodcsb1", "https://tec.openplanner.team/stops/Bjodcsb2"], ["https://tec.openplanner.team/stops/X983aca", "https://tec.openplanner.team/stops/X983acb"], ["https://tec.openplanner.team/stops/Cbmclar2", "https://tec.openplanner.team/stops/Cbmgrav2"], ["https://tec.openplanner.team/stops/X362aaa", "https://tec.openplanner.team/stops/X371aja"], ["https://tec.openplanner.team/stops/LCRf14-1", "https://tec.openplanner.team/stops/LCRf14-2"], ["https://tec.openplanner.team/stops/LSPec--1", "https://tec.openplanner.team/stops/LSPec--2"], ["https://tec.openplanner.team/stops/N507aha", "https://tec.openplanner.team/stops/N507aia"], ["https://tec.openplanner.team/stops/LBUplac2", "https://tec.openplanner.team/stops/NL30afa"], ["https://tec.openplanner.team/stops/H4ag102a", "https://tec.openplanner.team/stops/H4ga166a"], ["https://tec.openplanner.team/stops/LGecite1", "https://tec.openplanner.team/stops/LGeschr1"], ["https://tec.openplanner.team/stops/N211aca", "https://tec.openplanner.team/stops/N211bba"], ["https://tec.openplanner.team/stops/N501dvb", "https://tec.openplanner.team/stops/N501ejc"], ["https://tec.openplanner.team/stops/N515aga", "https://tec.openplanner.team/stops/N515aua"], ["https://tec.openplanner.team/stops/LVbeg--1", "https://tec.openplanner.team/stops/LVbeg--2"], ["https://tec.openplanner.team/stops/N212agc", "https://tec.openplanner.team/stops/N225ahb"], ["https://tec.openplanner.team/stops/LDAandr2", "https://tec.openplanner.team/stops/LMuvill2"], ["https://tec.openplanner.team/stops/X512aia", "https://tec.openplanner.team/stops/X512aib"], ["https://tec.openplanner.team/stops/LERboss1", "https://tec.openplanner.team/stops/LWberno1"], ["https://tec.openplanner.team/stops/N106aia", "https://tec.openplanner.team/stops/N106aka"], ["https://tec.openplanner.team/stops/N540aia", "https://tec.openplanner.team/stops/N540amb"], ["https://tec.openplanner.team/stops/N117aca", "https://tec.openplanner.team/stops/N147aaa"], ["https://tec.openplanner.team/stops/X651agb", "https://tec.openplanner.team/stops/X652aba"], ["https://tec.openplanner.team/stops/LLUpier2", "https://tec.openplanner.team/stops/LLUreut2"], ["https://tec.openplanner.team/stops/N229ahb", "https://tec.openplanner.team/stops/N291aaa"], ["https://tec.openplanner.team/stops/Ccstord2", "https://tec.openplanner.team/stops/Chhegli3"], ["https://tec.openplanner.team/stops/X646aab", "https://tec.openplanner.team/stops/X646ada"], ["https://tec.openplanner.team/stops/LLrc1652", "https://tec.openplanner.team/stops/LLrmaq-2"], ["https://tec.openplanner.team/stops/LAWchau1", "https://tec.openplanner.team/stops/LAWchau2"], ["https://tec.openplanner.team/stops/Cmmp2051", "https://tec.openplanner.team/stops/Cmmptno1"], ["https://tec.openplanner.team/stops/Bcbqcha1", "https://tec.openplanner.team/stops/Bcbqcoi1"], ["https://tec.openplanner.team/stops/N514aab", "https://tec.openplanner.team/stops/N514ajb"], ["https://tec.openplanner.team/stops/N542aab", "https://tec.openplanner.team/stops/N542acc"], ["https://tec.openplanner.team/stops/H5rx106a", "https://tec.openplanner.team/stops/H5rx113a"], ["https://tec.openplanner.team/stops/Ljhheus2", "https://tec.openplanner.team/stops/Ljhmany1"], ["https://tec.openplanner.team/stops/LFTneur*", "https://tec.openplanner.team/stops/LTamag1"], ["https://tec.openplanner.team/stops/X740aba", "https://tec.openplanner.team/stops/X740agb"], ["https://tec.openplanner.team/stops/X879aea", "https://tec.openplanner.team/stops/X882aab"], ["https://tec.openplanner.team/stops/N212ahb", "https://tec.openplanner.team/stops/N212aja"], ["https://tec.openplanner.team/stops/LSCeg--2", "https://tec.openplanner.team/stops/LVEtomb2"], ["https://tec.openplanner.team/stops/X870ada", "https://tec.openplanner.team/stops/X880aca"], ["https://tec.openplanner.team/stops/Lqbeg--2", "https://tec.openplanner.team/stops/LSAhaye2"], ["https://tec.openplanner.team/stops/X793ajb", "https://tec.openplanner.team/stops/X793akb"], ["https://tec.openplanner.team/stops/Cslbhau1", "https://tec.openplanner.team/stops/Cslbhau2"], ["https://tec.openplanner.team/stops/N553aab", "https://tec.openplanner.team/stops/N553aib"], ["https://tec.openplanner.team/stops/H4ty280a", "https://tec.openplanner.team/stops/H4ty315a"], ["https://tec.openplanner.team/stops/N501fub", "https://tec.openplanner.team/stops/N501fyc"], ["https://tec.openplanner.team/stops/H4ir165b", "https://tec.openplanner.team/stops/H5at119a"], ["https://tec.openplanner.team/stops/X369aba", "https://tec.openplanner.team/stops/X370adb"], ["https://tec.openplanner.team/stops/X901ala", "https://tec.openplanner.team/stops/X901bmb"], ["https://tec.openplanner.team/stops/N512ana", "https://tec.openplanner.team/stops/N512apa"], ["https://tec.openplanner.team/stops/LmDdenk1", "https://tec.openplanner.team/stops/LmDkirc2"], ["https://tec.openplanner.team/stops/LLrchat1", "https://tec.openplanner.team/stops/LLrhaut2"], ["https://tec.openplanner.team/stops/N533aga", "https://tec.openplanner.team/stops/N533agb"], ["https://tec.openplanner.team/stops/N547amb", "https://tec.openplanner.team/stops/N547ana"], ["https://tec.openplanner.team/stops/Barcast1", "https://tec.openplanner.team/stops/Bgzdn252"], ["https://tec.openplanner.team/stops/LCEboll1", "https://tec.openplanner.team/stops/LCEcent1"], ["https://tec.openplanner.team/stops/H4ga168a", "https://tec.openplanner.team/stops/H4ga168b"], ["https://tec.openplanner.team/stops/Cmlm2412", "https://tec.openplanner.team/stops/Cmlphai1"], ["https://tec.openplanner.team/stops/Cmachau1", "https://tec.openplanner.team/stops/Cmachau2"], ["https://tec.openplanner.team/stops/X607ahb", "https://tec.openplanner.team/stops/X620agb"], ["https://tec.openplanner.team/stops/Lmodeni2", "https://tec.openplanner.team/stops/Lmoknae3"], ["https://tec.openplanner.team/stops/Ccheden1", "https://tec.openplanner.team/stops/Cchpala2"], ["https://tec.openplanner.team/stops/X661awb", "https://tec.openplanner.team/stops/X661azb"], ["https://tec.openplanner.team/stops/LSG172-1", "https://tec.openplanner.team/stops/LSGmall1"], ["https://tec.openplanner.team/stops/H1el134a", "https://tec.openplanner.team/stops/H1el140c"], ["https://tec.openplanner.team/stops/Bwatgar4", "https://tec.openplanner.team/stops/Bwatgar5"], ["https://tec.openplanner.team/stops/H4bc104b", "https://tec.openplanner.team/stops/H4bc108a"], ["https://tec.openplanner.team/stops/Cblbaiv2", "https://tec.openplanner.team/stops/Cblcent1"], ["https://tec.openplanner.team/stops/Ladthom1", "https://tec.openplanner.team/stops/Lverain1"], ["https://tec.openplanner.team/stops/LLVcent1", "https://tec.openplanner.team/stops/LTBeg--2"], ["https://tec.openplanner.team/stops/Cbfegch1", "https://tec.openplanner.team/stops/Cbfpauc2"], ["https://tec.openplanner.team/stops/Bbchdev1", "https://tec.openplanner.team/stops/Bbchndb1"], ["https://tec.openplanner.team/stops/Cmyoasi1", "https://tec.openplanner.team/stops/Cmyvesa1"], ["https://tec.openplanner.team/stops/X715afb", "https://tec.openplanner.team/stops/X715ahb"], ["https://tec.openplanner.team/stops/N220ada", "https://tec.openplanner.team/stops/N224aba"], ["https://tec.openplanner.team/stops/LFClage1", "https://tec.openplanner.team/stops/LFClage2"], ["https://tec.openplanner.team/stops/X717agd", "https://tec.openplanner.team/stops/X781aha"], ["https://tec.openplanner.team/stops/X763aga", "https://tec.openplanner.team/stops/X763aha"], ["https://tec.openplanner.team/stops/X713ala", "https://tec.openplanner.team/stops/X713amb"], ["https://tec.openplanner.team/stops/X901aja", "https://tec.openplanner.team/stops/X901bpa"], ["https://tec.openplanner.team/stops/N212aba", "https://tec.openplanner.team/stops/N212ata"], ["https://tec.openplanner.team/stops/LGOmous1", "https://tec.openplanner.team/stops/LGOvill1"], ["https://tec.openplanner.team/stops/Cthalou2", "https://tec.openplanner.team/stops/Cthenmi2"], ["https://tec.openplanner.team/stops/H1cu114a", "https://tec.openplanner.team/stops/H1cu117a"], ["https://tec.openplanner.team/stops/Brebhos1", "https://tec.openplanner.team/stops/Brebrha1"], ["https://tec.openplanner.team/stops/LFMvoge*", "https://tec.openplanner.team/stops/LFMvoge2"], ["https://tec.openplanner.team/stops/N542aga", "https://tec.openplanner.team/stops/N542akb"], ["https://tec.openplanner.team/stops/NH01aea", "https://tec.openplanner.team/stops/NH01aeb"], ["https://tec.openplanner.team/stops/H4to133a", "https://tec.openplanner.team/stops/H4to133b"], ["https://tec.openplanner.team/stops/Cmychpl2", "https://tec.openplanner.team/stops/Cmyland5"], ["https://tec.openplanner.team/stops/X741aaa", "https://tec.openplanner.team/stops/X741aab"], ["https://tec.openplanner.team/stops/H4ty303a", "https://tec.openplanner.team/stops/H4ty314c"], ["https://tec.openplanner.team/stops/Bbaldot1", "https://tec.openplanner.team/stops/Bbgnton1"], ["https://tec.openplanner.team/stops/H1so131e", "https://tec.openplanner.team/stops/H1so142a"], ["https://tec.openplanner.team/stops/Lbocorn1", "https://tec.openplanner.team/stops/Louvivi1"], ["https://tec.openplanner.team/stops/X754apa", "https://tec.openplanner.team/stops/X754ava"], ["https://tec.openplanner.team/stops/Blimegl1", "https://tec.openplanner.team/stops/Blimeur1"], ["https://tec.openplanner.team/stops/X952aja", "https://tec.openplanner.team/stops/X955aaa"], ["https://tec.openplanner.team/stops/H1ca186a", "https://tec.openplanner.team/stops/H1sd344b"], ["https://tec.openplanner.team/stops/N531aia", "https://tec.openplanner.team/stops/N531amb"], ["https://tec.openplanner.team/stops/Bthscbl2", "https://tec.openplanner.team/stops/NL37alb"], ["https://tec.openplanner.team/stops/X773abb", "https://tec.openplanner.team/stops/X773ada"], ["https://tec.openplanner.team/stops/H1gg115a", "https://tec.openplanner.team/stops/H1gg145a"], ["https://tec.openplanner.team/stops/Cwfdame1", "https://tec.openplanner.team/stops/Cwflouv4"], ["https://tec.openplanner.team/stops/N353aaa", "https://tec.openplanner.team/stops/N353afc"], ["https://tec.openplanner.team/stops/Bneeace2", "https://tec.openplanner.team/stops/Bneeblo1"], ["https://tec.openplanner.team/stops/N223aba", "https://tec.openplanner.team/stops/X919ajb"], ["https://tec.openplanner.team/stops/H1qu108b", "https://tec.openplanner.team/stops/H1qu114b"], ["https://tec.openplanner.team/stops/Cctpano2", "https://tec.openplanner.team/stops/NC11ala"], ["https://tec.openplanner.team/stops/Cmlcpar2", "https://tec.openplanner.team/stops/Cmlhubi2"], ["https://tec.openplanner.team/stops/LRE154-2", "https://tec.openplanner.team/stops/LREhaut1"], ["https://tec.openplanner.team/stops/Clsferr1", "https://tec.openplanner.team/stops/Clsghoy1"], ["https://tec.openplanner.team/stops/H5rx115a", "https://tec.openplanner.team/stops/H5rx148a"], ["https://tec.openplanner.team/stops/Crbecol1", "https://tec.openplanner.team/stops/Crbecol2"], ["https://tec.openplanner.team/stops/X616aba", "https://tec.openplanner.team/stops/X616abb"], ["https://tec.openplanner.team/stops/N505aha", "https://tec.openplanner.team/stops/N506abb"], ["https://tec.openplanner.team/stops/N104aad", "https://tec.openplanner.team/stops/N104acb"], ["https://tec.openplanner.team/stops/N514acb", "https://tec.openplanner.team/stops/N514aob"], ["https://tec.openplanner.team/stops/Ccyga1", "https://tec.openplanner.team/stops/Ccyga3"], ["https://tec.openplanner.team/stops/LHcaube1", "https://tec.openplanner.team/stops/LJAbell1"], ["https://tec.openplanner.team/stops/X663ata", "https://tec.openplanner.team/stops/X663atb"], ["https://tec.openplanner.team/stops/N102aab", "https://tec.openplanner.team/stops/N104aad"], ["https://tec.openplanner.team/stops/LPLcarr2", "https://tec.openplanner.team/stops/LPLcite2"], ["https://tec.openplanner.team/stops/X790acb", "https://tec.openplanner.team/stops/X790ana"], ["https://tec.openplanner.team/stops/X805aga", "https://tec.openplanner.team/stops/X807acb"], ["https://tec.openplanner.team/stops/N232bxa", "https://tec.openplanner.team/stops/N291acb"], ["https://tec.openplanner.team/stops/N533ald", "https://tec.openplanner.team/stops/N533aob"], ["https://tec.openplanner.team/stops/LHTbonn2", "https://tec.openplanner.team/stops/LHTmc--1"], ["https://tec.openplanner.team/stops/X601aua", "https://tec.openplanner.team/stops/X601cra"], ["https://tec.openplanner.team/stops/LOMdTEC1", "https://tec.openplanner.team/stops/LOMware1"], ["https://tec.openplanner.team/stops/H2pe157a", "https://tec.openplanner.team/stops/H2pe158a"], ["https://tec.openplanner.team/stops/H2go116b", "https://tec.openplanner.team/stops/H2gy105b"], ["https://tec.openplanner.team/stops/N501nda", "https://tec.openplanner.team/stops/N501ndb"], ["https://tec.openplanner.team/stops/H4co151a", "https://tec.openplanner.team/stops/H4wn123a"], ["https://tec.openplanner.team/stops/Baegpon2", "https://tec.openplanner.team/stops/NR38adb"], ["https://tec.openplanner.team/stops/H2an103a", "https://tec.openplanner.team/stops/H2ml114a"], ["https://tec.openplanner.team/stops/LBLfoxh2", "https://tec.openplanner.team/stops/LMovieu1"], ["https://tec.openplanner.team/stops/LBOholt1", "https://tec.openplanner.team/stops/LBOholt2"], ["https://tec.openplanner.team/stops/Bcbqcim1", "https://tec.openplanner.team/stops/Bcbqcim2"], ["https://tec.openplanner.team/stops/Bdvmcbo2", "https://tec.openplanner.team/stops/Bwavbva1"], ["https://tec.openplanner.team/stops/LTamag1", "https://tec.openplanner.team/stops/LTaouch2"], ["https://tec.openplanner.team/stops/LPlpomp1", "https://tec.openplanner.team/stops/LPlpomp2"], ["https://tec.openplanner.team/stops/LSMfroi1", "https://tec.openplanner.team/stops/LTPhenr2"], ["https://tec.openplanner.team/stops/X925aia", "https://tec.openplanner.team/stops/X996aaa"], ["https://tec.openplanner.team/stops/LFEmala1", "https://tec.openplanner.team/stops/X597aga"], ["https://tec.openplanner.team/stops/X769aaa", "https://tec.openplanner.team/stops/X769abb"], ["https://tec.openplanner.team/stops/Llgandr1", "https://tec.openplanner.team/stops/Llgbruy2"], ["https://tec.openplanner.team/stops/Bwatfon1", "https://tec.openplanner.team/stops/Bwatpct2"], ["https://tec.openplanner.team/stops/Cprcalv2", "https://tec.openplanner.team/stops/NC44abb"], ["https://tec.openplanner.team/stops/Lflfort*", "https://tec.openplanner.team/stops/Lrecroi2"], ["https://tec.openplanner.team/stops/H2hg155d", "https://tec.openplanner.team/stops/H2hg158a"], ["https://tec.openplanner.team/stops/Bnvmfba1", "https://tec.openplanner.team/stops/Boffegl2"], ["https://tec.openplanner.team/stops/N548ahb", "https://tec.openplanner.team/stops/N548aib"], ["https://tec.openplanner.team/stops/Bbosdra1", "https://tec.openplanner.team/stops/Bbosgar1"], ["https://tec.openplanner.team/stops/H4ff115a", "https://tec.openplanner.team/stops/H4qu230c"], ["https://tec.openplanner.team/stops/LaSbahn2", "https://tec.openplanner.team/stops/LwArabo1"], ["https://tec.openplanner.team/stops/X752aca", "https://tec.openplanner.team/stops/X758aia"], ["https://tec.openplanner.team/stops/Buccfja1", "https://tec.openplanner.team/stops/Buccrac1"], ["https://tec.openplanner.team/stops/Cjulucq1", "https://tec.openplanner.team/stops/Cjuvand2"], ["https://tec.openplanner.team/stops/N150aja", "https://tec.openplanner.team/stops/N168aab"], ["https://tec.openplanner.team/stops/N534bxa", "https://tec.openplanner.team/stops/N534bxb"], ["https://tec.openplanner.team/stops/N125aab", "https://tec.openplanner.team/stops/N125abb"], ["https://tec.openplanner.team/stops/LHFappe1", "https://tec.openplanner.team/stops/LVEmohi2"], ["https://tec.openplanner.team/stops/LHFec--1", "https://tec.openplanner.team/stops/LHFec--2"], ["https://tec.openplanner.team/stops/Bsensab1", "https://tec.openplanner.team/stops/Bsensab2"], ["https://tec.openplanner.team/stops/Bcrbast2", "https://tec.openplanner.team/stops/Bnilcim1"], ["https://tec.openplanner.team/stops/N155acb", "https://tec.openplanner.team/stops/N155akb"], ["https://tec.openplanner.team/stops/Ccovies1", "https://tec.openplanner.team/stops/Ccovies2"], ["https://tec.openplanner.team/stops/LCIpiet2", "https://tec.openplanner.team/stops/LVHweri2"], ["https://tec.openplanner.team/stops/LSImewi1", "https://tec.openplanner.team/stops/LSImewi2"], ["https://tec.openplanner.team/stops/X802ada", "https://tec.openplanner.team/stops/X802asa"], ["https://tec.openplanner.team/stops/N212aea", "https://tec.openplanner.team/stops/N212aeb"], ["https://tec.openplanner.team/stops/Beclaub2", "https://tec.openplanner.team/stops/Beclesp1"], ["https://tec.openplanner.team/stops/LbUbutg2", "https://tec.openplanner.team/stops/LbUmalm2"], ["https://tec.openplanner.team/stops/LmNlieb2", "https://tec.openplanner.team/stops/LmNsied2"], ["https://tec.openplanner.team/stops/N501fwy", "https://tec.openplanner.team/stops/N501gta"], ["https://tec.openplanner.team/stops/X898akb", "https://tec.openplanner.team/stops/X898ana"], ["https://tec.openplanner.team/stops/N211aka", "https://tec.openplanner.team/stops/N214aaa"], ["https://tec.openplanner.team/stops/LDLboul2", "https://tec.openplanner.team/stops/LDLheid2"], ["https://tec.openplanner.team/stops/Cjuaero4", "https://tec.openplanner.team/stops/Cjudaxi1"], ["https://tec.openplanner.team/stops/Bmlncha1", "https://tec.openplanner.team/stops/Bmlnmbo1"], ["https://tec.openplanner.team/stops/X911asa", "https://tec.openplanner.team/stops/X911asb"], ["https://tec.openplanner.team/stops/Cjxdesc1", "https://tec.openplanner.team/stops/Cjxetri2"], ["https://tec.openplanner.team/stops/Brixaug1", "https://tec.openplanner.team/stops/Brixblh3"], ["https://tec.openplanner.team/stops/Croball1", "https://tec.openplanner.team/stops/Crorpai2"], ["https://tec.openplanner.team/stops/Ccpsecp1", "https://tec.openplanner.team/stops/Ccpsecp2"], ["https://tec.openplanner.team/stops/LSG111-1", "https://tec.openplanner.team/stops/LSG111-2"], ["https://tec.openplanner.team/stops/N103aaa", "https://tec.openplanner.team/stops/N103aba"], ["https://tec.openplanner.team/stops/N202aia", "https://tec.openplanner.team/stops/N219adb"], ["https://tec.openplanner.team/stops/LHApthe2", "https://tec.openplanner.team/stops/LHTboul2"], ["https://tec.openplanner.team/stops/H4ty265a", "https://tec.openplanner.team/stops/H4ty278b"], ["https://tec.openplanner.team/stops/Cjudaxi2", "https://tec.openplanner.team/stops/Cjuphil1"], ["https://tec.openplanner.team/stops/H1he101a", "https://tec.openplanner.team/stops/H1he102a"], ["https://tec.openplanner.team/stops/N236ajb", "https://tec.openplanner.team/stops/N236apa"], ["https://tec.openplanner.team/stops/X661aha", "https://tec.openplanner.team/stops/X661aia"], ["https://tec.openplanner.team/stops/Clb4dgi1", "https://tec.openplanner.team/stops/Clbecol1"], ["https://tec.openplanner.team/stops/LLrfagn1", "https://tec.openplanner.team/stops/LSMlier1"], ["https://tec.openplanner.team/stops/H4ty301c", "https://tec.openplanner.team/stops/H4ty340a"], ["https://tec.openplanner.team/stops/X921apa", "https://tec.openplanner.team/stops/X925afb"], ["https://tec.openplanner.team/stops/N501mxb", "https://tec.openplanner.team/stops/N533apa"], ["https://tec.openplanner.team/stops/Cdametr1", "https://tec.openplanner.team/stops/CMdamp1"], ["https://tec.openplanner.team/stops/X809aab", "https://tec.openplanner.team/stops/X858aga"], ["https://tec.openplanner.team/stops/H4ma200a", "https://tec.openplanner.team/stops/H4ma205b"], ["https://tec.openplanner.team/stops/LOmvill1", "https://tec.openplanner.team/stops/LOmvill3"], ["https://tec.openplanner.team/stops/N527adb", "https://tec.openplanner.team/stops/N527aeb"], ["https://tec.openplanner.team/stops/Btancre1", "https://tec.openplanner.team/stops/Bvlvbth2"], ["https://tec.openplanner.team/stops/H1ag105b", "https://tec.openplanner.team/stops/H1ag106b"], ["https://tec.openplanner.team/stops/H2gy105b", "https://tec.openplanner.team/stops/H2gy107b"], ["https://tec.openplanner.team/stops/Canjon3", "https://tec.openplanner.team/stops/Canjonc1"], ["https://tec.openplanner.team/stops/NH01aha", "https://tec.openplanner.team/stops/NH01amb"], ["https://tec.openplanner.team/stops/X750aja", "https://tec.openplanner.team/stops/X750bkb"], ["https://tec.openplanner.team/stops/H4lp126a", "https://tec.openplanner.team/stops/H4pe127b"], ["https://tec.openplanner.team/stops/LwYcafe1", "https://tec.openplanner.team/stops/LwYkirc2"], ["https://tec.openplanner.team/stops/N501mxa", "https://tec.openplanner.team/stops/N501mya"], ["https://tec.openplanner.team/stops/LBdmarr2", "https://tec.openplanner.team/stops/LLrfagn2"], ["https://tec.openplanner.team/stops/H4er121a", "https://tec.openplanner.team/stops/H4er123a"], ["https://tec.openplanner.team/stops/LAweg--1", "https://tec.openplanner.team/stops/LMvrabo1"], ["https://tec.openplanner.team/stops/LhEcolo1", "https://tec.openplanner.team/stops/LhElont3"], ["https://tec.openplanner.team/stops/H2ll180b", "https://tec.openplanner.team/stops/H2ll192a"], ["https://tec.openplanner.team/stops/N501hub", "https://tec.openplanner.team/stops/N501hzc"], ["https://tec.openplanner.team/stops/Cbckios1", "https://tec.openplanner.team/stops/Clfbarr4"], ["https://tec.openplanner.team/stops/Lpeptra1", "https://tec.openplanner.team/stops/LWevand2"], ["https://tec.openplanner.team/stops/Blhunys2", "https://tec.openplanner.team/stops/Bohngen2"], ["https://tec.openplanner.team/stops/LBOande2", "https://tec.openplanner.team/stops/LWRgare2"], ["https://tec.openplanner.team/stops/X757aga", "https://tec.openplanner.team/stops/X757ala"], ["https://tec.openplanner.team/stops/X870afb", "https://tec.openplanner.team/stops/X870ahb"], ["https://tec.openplanner.team/stops/Canmonu2", "https://tec.openplanner.team/stops/H2an106d"], ["https://tec.openplanner.team/stops/Cnacent4", "https://tec.openplanner.team/stops/Cnadepo2"], ["https://tec.openplanner.team/stops/X801ahb", "https://tec.openplanner.team/stops/X801amb"], ["https://tec.openplanner.team/stops/Lhrunir1", "https://tec.openplanner.team/stops/Lvtpata1"], ["https://tec.openplanner.team/stops/X812awa", "https://tec.openplanner.team/stops/X812baa"], ["https://tec.openplanner.team/stops/Chpchea1", "https://tec.openplanner.team/stops/Cwgmutu2"], ["https://tec.openplanner.team/stops/Cgzchab1", "https://tec.openplanner.team/stops/Cgzchab3"], ["https://tec.openplanner.team/stops/N505aab", "https://tec.openplanner.team/stops/N505ana"], ["https://tec.openplanner.team/stops/LWHkape2", "https://tec.openplanner.team/stops/LWHkerk2"], ["https://tec.openplanner.team/stops/LBAbooz2", "https://tec.openplanner.team/stops/LBLtroi1"], ["https://tec.openplanner.team/stops/LaMbrei1", "https://tec.openplanner.team/stops/LaMbull1"], ["https://tec.openplanner.team/stops/Lchsaec1", "https://tec.openplanner.team/stops/LHOgymn2"], ["https://tec.openplanner.team/stops/Cmoecol1", "https://tec.openplanner.team/stops/Cmychpl2"], ["https://tec.openplanner.team/stops/LBBcarr1", "https://tec.openplanner.team/stops/LCLacbi1"], ["https://tec.openplanner.team/stops/LLevaux1", "https://tec.openplanner.team/stops/X576afb"], ["https://tec.openplanner.team/stops/N124aaa", "https://tec.openplanner.team/stops/N124aab"], ["https://tec.openplanner.team/stops/LAMcoll2", "https://tec.openplanner.team/stops/LAMpirk2"], ["https://tec.openplanner.team/stops/LOLfoss1", "https://tec.openplanner.team/stops/LOLvill2"], ["https://tec.openplanner.team/stops/X345abb", "https://tec.openplanner.team/stops/X345aca"], ["https://tec.openplanner.team/stops/Cpiegli1", "https://tec.openplanner.team/stops/Cpiegli2"], ["https://tec.openplanner.team/stops/Ladfran1", "https://tec.openplanner.team/stops/Ldimont1"], ["https://tec.openplanner.team/stops/X664aca", "https://tec.openplanner.team/stops/X667ada"], ["https://tec.openplanner.team/stops/Cgotech2", "https://tec.openplanner.team/stops/Craplac3"], ["https://tec.openplanner.team/stops/X904ala", "https://tec.openplanner.team/stops/X943aeb"], ["https://tec.openplanner.team/stops/H1br130a", "https://tec.openplanner.team/stops/H1br130b"], ["https://tec.openplanner.team/stops/LTPgare*", "https://tec.openplanner.team/stops/LTPsalm1"], ["https://tec.openplanner.team/stops/Lsebegu2", "https://tec.openplanner.team/stops/Ltihala2"], ["https://tec.openplanner.team/stops/H4bf105b", "https://tec.openplanner.team/stops/H4ro156a"], ["https://tec.openplanner.team/stops/LDOchev1", "https://tec.openplanner.team/stops/LDOdavi2"], ["https://tec.openplanner.team/stops/LREaube1", "https://tec.openplanner.team/stops/LREaube2"], ["https://tec.openplanner.team/stops/X754aub", "https://tec.openplanner.team/stops/X779afb"], ["https://tec.openplanner.team/stops/H1bo101a", "https://tec.openplanner.team/stops/H1bo111a"], ["https://tec.openplanner.team/stops/X771abb", "https://tec.openplanner.team/stops/X773ala"], ["https://tec.openplanner.team/stops/X806aeb", "https://tec.openplanner.team/stops/X806ahb"], ["https://tec.openplanner.team/stops/H4to134a", "https://tec.openplanner.team/stops/H4to137b"], ["https://tec.openplanner.team/stops/H1ms265a", "https://tec.openplanner.team/stops/H1ss352a"], ["https://tec.openplanner.team/stops/X879amb", "https://tec.openplanner.team/stops/X879apa"], ["https://tec.openplanner.team/stops/N261afa", "https://tec.openplanner.team/stops/N261aha"], ["https://tec.openplanner.team/stops/N531asb", "https://tec.openplanner.team/stops/N534bxa"], ["https://tec.openplanner.team/stops/X602apa", "https://tec.openplanner.team/stops/X602asa"], ["https://tec.openplanner.team/stops/Lgrcrac2", "https://tec.openplanner.team/stops/Lgrdeni2"], ["https://tec.openplanner.team/stops/LFTcroi3", "https://tec.openplanner.team/stops/LFTcroi4"], ["https://tec.openplanner.team/stops/H1qu107a", "https://tec.openplanner.team/stops/H1qu107b"], ["https://tec.openplanner.team/stops/Livfays1", "https://tec.openplanner.team/stops/Livvill1"], ["https://tec.openplanner.team/stops/N501bma", "https://tec.openplanner.team/stops/N502adb"], ["https://tec.openplanner.team/stops/H5pe135a", "https://tec.openplanner.team/stops/H5pe142b"], ["https://tec.openplanner.team/stops/LSOcime2", "https://tec.openplanner.team/stops/LSOladr1"], ["https://tec.openplanner.team/stops/LLrfont2", "https://tec.openplanner.team/stops/LLrvill1"], ["https://tec.openplanner.team/stops/Clvmesa1", "https://tec.openplanner.team/stops/Clvorle1"], ["https://tec.openplanner.team/stops/Blindel5", "https://tec.openplanner.team/stops/Blinhue1"], ["https://tec.openplanner.team/stops/H4wn128b", "https://tec.openplanner.team/stops/H4wn139a"], ["https://tec.openplanner.team/stops/Bkrapri2", "https://tec.openplanner.team/stops/Bwolvan2"], ["https://tec.openplanner.team/stops/LOCloup1", "https://tec.openplanner.team/stops/NL35aca"], ["https://tec.openplanner.team/stops/LkAsonn1", "https://tec.openplanner.team/stops/LmHperl1"], ["https://tec.openplanner.team/stops/Cjuhame1", "https://tec.openplanner.team/stops/Crajasm2"], ["https://tec.openplanner.team/stops/X880aca", "https://tec.openplanner.team/stops/X880acb"], ["https://tec.openplanner.team/stops/Cjuplco2", "https://tec.openplanner.team/stops/Cjuplco3"], ["https://tec.openplanner.team/stops/Lagcler1", "https://tec.openplanner.team/stops/Lagrask2"], ["https://tec.openplanner.team/stops/LmDhoch1", "https://tec.openplanner.team/stops/LmDhoch2"], ["https://tec.openplanner.team/stops/LBIfore1", "https://tec.openplanner.team/stops/Lghwall1"], ["https://tec.openplanner.team/stops/N507aad", "https://tec.openplanner.team/stops/N507alc"], ["https://tec.openplanner.team/stops/N510aba", "https://tec.openplanner.team/stops/N510abb"], ["https://tec.openplanner.team/stops/LBgbaga3", "https://tec.openplanner.team/stops/LBgbaga4"], ["https://tec.openplanner.team/stops/Lmimili2", "https://tec.openplanner.team/stops/Lmimili4"], ["https://tec.openplanner.team/stops/Brsrber1", "https://tec.openplanner.team/stops/Brsrrcu2"], ["https://tec.openplanner.team/stops/LATabba2", "https://tec.openplanner.team/stops/LAThach2"], ["https://tec.openplanner.team/stops/LHDlibi2", "https://tec.openplanner.team/stops/LHDmc--1"], ["https://tec.openplanner.team/stops/X663agb", "https://tec.openplanner.team/stops/X663aia"], ["https://tec.openplanner.team/stops/LPutins1", "https://tec.openplanner.team/stops/X792aba"], ["https://tec.openplanner.team/stops/H1be100b", "https://tec.openplanner.team/stops/H1be104b"], ["https://tec.openplanner.team/stops/N232brb", "https://tec.openplanner.team/stops/N232bsb"], ["https://tec.openplanner.team/stops/Lmnmart2", "https://tec.openplanner.team/stops/Lsmrwan1"], ["https://tec.openplanner.team/stops/LESmart2", "https://tec.openplanner.team/stops/LPLstri2"], ["https://tec.openplanner.team/stops/Bcseche2", "https://tec.openplanner.team/stops/Bsmgsuz2"], ["https://tec.openplanner.team/stops/X982aha", "https://tec.openplanner.team/stops/X982aia"], ["https://tec.openplanner.team/stops/NB33alb", "https://tec.openplanner.team/stops/NB59akb"], ["https://tec.openplanner.team/stops/CMfont1", "https://tec.openplanner.team/stops/CMfont2"], ["https://tec.openplanner.team/stops/Ccoforr1", "https://tec.openplanner.team/stops/Ccostan2"], ["https://tec.openplanner.team/stops/LHUlieg2", "https://tec.openplanner.team/stops/LHUmala2"], ["https://tec.openplanner.team/stops/X750bpb", "https://tec.openplanner.team/stops/X784aba"], ["https://tec.openplanner.team/stops/LBGcent2", "https://tec.openplanner.team/stops/LBGroma1"], ["https://tec.openplanner.team/stops/N201ana", "https://tec.openplanner.team/stops/N201aoa"], ["https://tec.openplanner.team/stops/Lvegrap2", "https://tec.openplanner.team/stops/Lvehodi4"], ["https://tec.openplanner.team/stops/Cfaterg6", "https://tec.openplanner.team/stops/N543bmb"], ["https://tec.openplanner.team/stops/Llgwesp1", "https://tec.openplanner.team/stops/Llgwesp2"], ["https://tec.openplanner.team/stops/H5bl115b", "https://tec.openplanner.team/stops/H5bl115c"], ["https://tec.openplanner.team/stops/LLrc1992", "https://tec.openplanner.team/stops/LLrcour1"], ["https://tec.openplanner.team/stops/Cauglac1", "https://tec.openplanner.team/stops/N530aja"], ["https://tec.openplanner.team/stops/N232arb", "https://tec.openplanner.team/stops/N232bka"], ["https://tec.openplanner.team/stops/LXhmara1", "https://tec.openplanner.team/stops/LXhnouv1"], ["https://tec.openplanner.team/stops/Lhefoot2", "https://tec.openplanner.team/stops/Lheneuv4"], ["https://tec.openplanner.team/stops/Cchba08", "https://tec.openplanner.team/stops/CMba1"], ["https://tec.openplanner.team/stops/LXoharz6", "https://tec.openplanner.team/stops/LXoroch2"], ["https://tec.openplanner.team/stops/N166abb", "https://tec.openplanner.team/stops/N166aea"], ["https://tec.openplanner.team/stops/Bcrncjo2", "https://tec.openplanner.team/stops/Bgrmfga2"], ["https://tec.openplanner.team/stops/Lprhodi1", "https://tec.openplanner.team/stops/LWetrib2"], ["https://tec.openplanner.team/stops/H1sg149a", "https://tec.openplanner.team/stops/H1te176b"], ["https://tec.openplanner.team/stops/LLxeclu1", "https://tec.openplanner.team/stops/LLxeclu2"], ["https://tec.openplanner.team/stops/X601baa", "https://tec.openplanner.team/stops/X601bia"], ["https://tec.openplanner.team/stops/X746aga", "https://tec.openplanner.team/stops/X746agc"], ["https://tec.openplanner.team/stops/Lhrathe1", "https://tec.openplanner.team/stops/Lhrtilm2"], ["https://tec.openplanner.team/stops/H1cu121a", "https://tec.openplanner.team/stops/H1cu127b"], ["https://tec.openplanner.team/stops/N270aba", "https://tec.openplanner.team/stops/N270aca"], ["https://tec.openplanner.team/stops/Llgchai1", "https://tec.openplanner.team/stops/Lvtnico*"], ["https://tec.openplanner.team/stops/Llochar1", "https://tec.openplanner.team/stops/Lloross1"], ["https://tec.openplanner.team/stops/H2sb234a", "https://tec.openplanner.team/stops/H2sb234b"], ["https://tec.openplanner.team/stops/H2sb227a", "https://tec.openplanner.team/stops/H2sb258a"], ["https://tec.openplanner.team/stops/LVAflat1", "https://tec.openplanner.team/stops/LVAgemm1"], ["https://tec.openplanner.team/stops/N988aaa", "https://tec.openplanner.team/stops/X877adb"], ["https://tec.openplanner.team/stops/LPobois2", "https://tec.openplanner.team/stops/LPoewer2"], ["https://tec.openplanner.team/stops/N348aea", "https://tec.openplanner.team/stops/N348aeb"], ["https://tec.openplanner.team/stops/Blpgbat1", "https://tec.openplanner.team/stops/Cglfrom1"], ["https://tec.openplanner.team/stops/LTgcime2", "https://tec.openplanner.team/stops/LTgwarf2"], ["https://tec.openplanner.team/stops/N538aaa", "https://tec.openplanner.team/stops/N538aba"], ["https://tec.openplanner.team/stops/Bnivtra1", "https://tec.openplanner.team/stops/Bnivvai2"], ["https://tec.openplanner.team/stops/Bwatber1", "https://tec.openplanner.team/stops/Bwatgge2"], ["https://tec.openplanner.team/stops/LNCsera2", "https://tec.openplanner.team/stops/LPLcond1"], ["https://tec.openplanner.team/stops/H2hp114a", "https://tec.openplanner.team/stops/H2hp114b"], ["https://tec.openplanner.team/stops/X670aib", "https://tec.openplanner.team/stops/X670ara"], ["https://tec.openplanner.team/stops/LSxeg--1", "https://tec.openplanner.team/stops/LSxeg--2"], ["https://tec.openplanner.team/stops/Cpcarse1", "https://tec.openplanner.team/stops/Cpcchau"], ["https://tec.openplanner.team/stops/N162aaa", "https://tec.openplanner.team/stops/N162aca"], ["https://tec.openplanner.team/stops/N260aab", "https://tec.openplanner.team/stops/N260abc"], ["https://tec.openplanner.team/stops/LBKmoes1", "https://tec.openplanner.team/stops/LWAeloi1"], ["https://tec.openplanner.team/stops/LwYboui2", "https://tec.openplanner.team/stops/LwYsarl2"], ["https://tec.openplanner.team/stops/H2na136a", "https://tec.openplanner.team/stops/H2na136b"], ["https://tec.openplanner.team/stops/Cvvgrsa1", "https://tec.openplanner.team/stops/Cvvgrsa2"], ["https://tec.openplanner.team/stops/Bkrapri1", "https://tec.openplanner.team/stops/Bkrapri2"], ["https://tec.openplanner.team/stops/X940aaa", "https://tec.openplanner.team/stops/X940ada"], ["https://tec.openplanner.team/stops/N515aib", "https://tec.openplanner.team/stops/N515ala"], ["https://tec.openplanner.team/stops/LVSpota1", "https://tec.openplanner.team/stops/LVStige2"], ["https://tec.openplanner.team/stops/H4fr143b", "https://tec.openplanner.team/stops/H4ma399b"], ["https://tec.openplanner.team/stops/H4ep127b", "https://tec.openplanner.team/stops/H4rm108a"], ["https://tec.openplanner.team/stops/X769afa", "https://tec.openplanner.team/stops/X769arb"], ["https://tec.openplanner.team/stops/N141aea", "https://tec.openplanner.team/stops/N141aeb"], ["https://tec.openplanner.team/stops/X659agb", "https://tec.openplanner.team/stops/X659aha"], ["https://tec.openplanner.team/stops/Bnstver2", "https://tec.openplanner.team/stops/H3so187b"], ["https://tec.openplanner.team/stops/H1ro136a", "https://tec.openplanner.team/stops/H1ro136b"], ["https://tec.openplanner.team/stops/H1fr107a", "https://tec.openplanner.team/stops/H1fr113b"], ["https://tec.openplanner.team/stops/H1lb136a", "https://tec.openplanner.team/stops/H1lb138b"], ["https://tec.openplanner.team/stops/Louairl2", "https://tec.openplanner.team/stops/Louazot2"], ["https://tec.openplanner.team/stops/Llgfran1", "https://tec.openplanner.team/stops/Llgriva2"], ["https://tec.openplanner.team/stops/Bcrnrpc1", "https://tec.openplanner.team/stops/Bcrnvic1"], ["https://tec.openplanner.team/stops/Cpclarm1", "https://tec.openplanner.team/stops/Cvvpotv1"], ["https://tec.openplanner.team/stops/N115afa", "https://tec.openplanner.team/stops/N170agb"], ["https://tec.openplanner.team/stops/N508afa", "https://tec.openplanner.team/stops/N508afb"], ["https://tec.openplanner.team/stops/Bdvminc2", "https://tec.openplanner.team/stops/Bgisber1"], ["https://tec.openplanner.team/stops/N532abb", "https://tec.openplanner.team/stops/N532akb"], ["https://tec.openplanner.team/stops/Lmlchev2", "https://tec.openplanner.team/stops/Lpocent1"], ["https://tec.openplanner.team/stops/H4po127a", "https://tec.openplanner.team/stops/H4po128a"], ["https://tec.openplanner.team/stops/LFOcomb4", "https://tec.openplanner.team/stops/LVGeg--5"], ["https://tec.openplanner.team/stops/N115acb", "https://tec.openplanner.team/stops/N118akb"], ["https://tec.openplanner.team/stops/N501gfa", "https://tec.openplanner.team/stops/N501jaa"], ["https://tec.openplanner.team/stops/Ccuwain2", "https://tec.openplanner.team/stops/Cgyruis1"], ["https://tec.openplanner.team/stops/N534aba", "https://tec.openplanner.team/stops/N534abb"], ["https://tec.openplanner.team/stops/Bwavbmo2", "https://tec.openplanner.team/stops/Bwaveur1"], ["https://tec.openplanner.team/stops/N513apa", "https://tec.openplanner.team/stops/N513ara"], ["https://tec.openplanner.team/stops/LWAaxhe1", "https://tec.openplanner.team/stops/LWAloui1"], ["https://tec.openplanner.team/stops/X750aqa", "https://tec.openplanner.team/stops/X750bfb"], ["https://tec.openplanner.team/stops/Bnivga22", "https://tec.openplanner.team/stops/Bnivga32"], ["https://tec.openplanner.team/stops/X672aoa", "https://tec.openplanner.team/stops/X672aob"], ["https://tec.openplanner.team/stops/H1wi152c", "https://tec.openplanner.team/stops/H1wi152d"], ["https://tec.openplanner.team/stops/Bpthfus1", "https://tec.openplanner.team/stops/Bwanthi1"], ["https://tec.openplanner.team/stops/N501eia", "https://tec.openplanner.team/stops/N501eib"], ["https://tec.openplanner.team/stops/X872afa", "https://tec.openplanner.team/stops/X872agb"], ["https://tec.openplanner.team/stops/H4ta129b", "https://tec.openplanner.team/stops/H4ta134a"], ["https://tec.openplanner.team/stops/X812axa", "https://tec.openplanner.team/stops/X812aza"], ["https://tec.openplanner.team/stops/Ccubric1", "https://tec.openplanner.team/stops/Ccupays2"], ["https://tec.openplanner.team/stops/H4ht172b", "https://tec.openplanner.team/stops/H4ht173a"], ["https://tec.openplanner.team/stops/N528apb", "https://tec.openplanner.team/stops/N538adb"], ["https://tec.openplanner.team/stops/X370aca", "https://tec.openplanner.team/stops/X872acb"], ["https://tec.openplanner.team/stops/H4bo120b", "https://tec.openplanner.team/stops/H4bo182b"], ["https://tec.openplanner.team/stops/Cthegli1", "https://tec.openplanner.team/stops/Cthrlef2"], ["https://tec.openplanner.team/stops/X637aoa", "https://tec.openplanner.team/stops/X652aab"], ["https://tec.openplanner.team/stops/Cvscomb1", "https://tec.openplanner.team/stops/N530aha"], ["https://tec.openplanner.team/stops/N557aea", "https://tec.openplanner.team/stops/N560abb"], ["https://tec.openplanner.team/stops/X948afa", "https://tec.openplanner.team/stops/X948aua"], ["https://tec.openplanner.team/stops/X877ada", "https://tec.openplanner.team/stops/X877adb"], ["https://tec.openplanner.team/stops/H1cu108b", "https://tec.openplanner.team/stops/H1ms247a"], ["https://tec.openplanner.team/stops/N547ald", "https://tec.openplanner.team/stops/N547anb"], ["https://tec.openplanner.team/stops/LHbcent2", "https://tec.openplanner.team/stops/LJAchat2"], ["https://tec.openplanner.team/stops/X739aaa", "https://tec.openplanner.team/stops/X739aab"], ["https://tec.openplanner.team/stops/H1wi148b", "https://tec.openplanner.team/stops/H1wi148c"], ["https://tec.openplanner.team/stops/Cfometr1", "https://tec.openplanner.team/stops/Cfometr2"], ["https://tec.openplanner.team/stops/Ccychco1", "https://tec.openplanner.team/stops/Ccychco2"], ["https://tec.openplanner.team/stops/N522bvb", "https://tec.openplanner.team/stops/N522bvc"], ["https://tec.openplanner.team/stops/Cprbevu1", "https://tec.openplanner.team/stops/NC11aoa"], ["https://tec.openplanner.team/stops/LbTweyn2", "https://tec.openplanner.team/stops/LwR140-2"], ["https://tec.openplanner.team/stops/Cmacart3", "https://tec.openplanner.team/stops/Cmadeli1"], ["https://tec.openplanner.team/stops/Lseathe1", "https://tec.openplanner.team/stops/Lsebeau2"], ["https://tec.openplanner.team/stops/X792abb", "https://tec.openplanner.team/stops/X793anb"], ["https://tec.openplanner.team/stops/N209ahb", "https://tec.openplanner.team/stops/N209aic"], ["https://tec.openplanner.team/stops/Ljegare2", "https://tec.openplanner.team/stops/Ljekess1"], ["https://tec.openplanner.team/stops/H4mo137b", "https://tec.openplanner.team/stops/H4wa156a"], ["https://tec.openplanner.team/stops/Cgygazo3", "https://tec.openplanner.team/stops/Cmtchet2"], ["https://tec.openplanner.team/stops/X759abb", "https://tec.openplanner.team/stops/X759afa"], ["https://tec.openplanner.team/stops/Lvo60--1", "https://tec.openplanner.team/stops/Lvopaqu1"], ["https://tec.openplanner.team/stops/N346adb", "https://tec.openplanner.team/stops/X892acb"], ["https://tec.openplanner.team/stops/X937aib", "https://tec.openplanner.team/stops/X952aab"], ["https://tec.openplanner.team/stops/N501fmb", "https://tec.openplanner.team/stops/N501kwb"], ["https://tec.openplanner.team/stops/LCUmonu1", "https://tec.openplanner.team/stops/LCUmora1"], ["https://tec.openplanner.team/stops/H4ta117a", "https://tec.openplanner.team/stops/H4ta133a"], ["https://tec.openplanner.team/stops/Cragoss2", "https://tec.openplanner.team/stops/Craplac1"], ["https://tec.openplanner.team/stops/LTAchau1", "https://tec.openplanner.team/stops/LTAchpl1"], ["https://tec.openplanner.team/stops/Clftour2", "https://tec.openplanner.team/stops/Crglyre1"], ["https://tec.openplanner.team/stops/Ladjuif1", "https://tec.openplanner.team/stops/Ladjuif2"], ["https://tec.openplanner.team/stops/Lvefanc1", "https://tec.openplanner.team/stops/Lvegrap2"], ["https://tec.openplanner.team/stops/X888agb", "https://tec.openplanner.team/stops/X897ara"], ["https://tec.openplanner.team/stops/N506bdb", "https://tec.openplanner.team/stops/N506bhb"], ["https://tec.openplanner.team/stops/X641afa", "https://tec.openplanner.team/stops/X641akb"], ["https://tec.openplanner.team/stops/N511ana", "https://tec.openplanner.team/stops/N511anb"], ["https://tec.openplanner.team/stops/Ccobinc1", "https://tec.openplanner.team/stops/Ccobinc2"], ["https://tec.openplanner.team/stops/Llgpari2", "https://tec.openplanner.team/stops/Llgstvi3"], ["https://tec.openplanner.team/stops/H4mv190a", "https://tec.openplanner.team/stops/H4mv190b"], ["https://tec.openplanner.team/stops/N512aka", "https://tec.openplanner.team/stops/N512aua"], ["https://tec.openplanner.team/stops/Lgdhall*", "https://tec.openplanner.team/stops/Lgdmaye2"], ["https://tec.openplanner.team/stops/N209aja", "https://tec.openplanner.team/stops/N209aka"], ["https://tec.openplanner.team/stops/X613aab", "https://tec.openplanner.team/stops/X614ala"], ["https://tec.openplanner.team/stops/X597aaa", "https://tec.openplanner.team/stops/X796aia"], ["https://tec.openplanner.team/stops/X721aoa", "https://tec.openplanner.team/stops/X721apa"], ["https://tec.openplanner.team/stops/N533acb", "https://tec.openplanner.team/stops/N533adb"], ["https://tec.openplanner.team/stops/X925aka", "https://tec.openplanner.team/stops/X947ada"], ["https://tec.openplanner.team/stops/N543aeb", "https://tec.openplanner.team/stops/N543bxb"], ["https://tec.openplanner.team/stops/Bnivasa2", "https://tec.openplanner.team/stops/Bnivgen1"], ["https://tec.openplanner.team/stops/N230aaa", "https://tec.openplanner.team/stops/N540acd"], ["https://tec.openplanner.team/stops/H4ty287a", "https://tec.openplanner.team/stops/H4ty346b"], ["https://tec.openplanner.team/stops/Lcemeta1", "https://tec.openplanner.team/stops/Lcepepi2"], ["https://tec.openplanner.team/stops/X636aqc", "https://tec.openplanner.team/stops/X636aqd"], ["https://tec.openplanner.team/stops/Bsomh672", "https://tec.openplanner.team/stops/Bsomjon1"], ["https://tec.openplanner.team/stops/LHMa2321", "https://tec.openplanner.team/stops/LHMa2322"], ["https://tec.openplanner.team/stops/LPLruis1", "https://tec.openplanner.team/stops/LPLruis2"], ["https://tec.openplanner.team/stops/Llgcoro1", "https://tec.openplanner.team/stops/Llgtir-1"], ["https://tec.openplanner.team/stops/Cmg4bra1", "https://tec.openplanner.team/stops/Cmg4bra2"], ["https://tec.openplanner.team/stops/Bclgpch2", "https://tec.openplanner.team/stops/Bllnfla1"], ["https://tec.openplanner.team/stops/Cgobruy2", "https://tec.openplanner.team/stops/CMfbru1"], ["https://tec.openplanner.team/stops/X873aca", "https://tec.openplanner.team/stops/X873acb"], ["https://tec.openplanner.team/stops/Cpicite1", "https://tec.openplanner.team/stops/Cpicite2"], ["https://tec.openplanner.team/stops/H5rx101a", "https://tec.openplanner.team/stops/H5rx135b"], ["https://tec.openplanner.team/stops/N204aib", "https://tec.openplanner.team/stops/N204ala"], ["https://tec.openplanner.team/stops/X890aba", "https://tec.openplanner.team/stops/X890aea"], ["https://tec.openplanner.team/stops/H4fr394a", "https://tec.openplanner.team/stops/H4ty340b"], ["https://tec.openplanner.team/stops/Bnilegl2", "https://tec.openplanner.team/stops/Bnilspe4"], ["https://tec.openplanner.team/stops/X636bga", "https://tec.openplanner.team/stops/X636bgb"], ["https://tec.openplanner.team/stops/N308aic", "https://tec.openplanner.team/stops/N308ajb"], ["https://tec.openplanner.team/stops/H1bu142b", "https://tec.openplanner.team/stops/H2ep172a"], ["https://tec.openplanner.team/stops/N213aaa", "https://tec.openplanner.team/stops/N213aba"], ["https://tec.openplanner.team/stops/Cmltemp2", "https://tec.openplanner.team/stops/Cmltemp5"], ["https://tec.openplanner.team/stops/NH01alb", "https://tec.openplanner.team/stops/NH01amb"], ["https://tec.openplanner.team/stops/LBUvall1", "https://tec.openplanner.team/stops/LBUvall2"], ["https://tec.openplanner.team/stops/Lbbremy2", "https://tec.openplanner.team/stops/Ljubrec1"], ["https://tec.openplanner.team/stops/Ltibalt1", "https://tec.openplanner.team/stops/Ltibalt2"], ["https://tec.openplanner.team/stops/Cvpchat1", "https://tec.openplanner.team/stops/Cvpsthu1"], ["https://tec.openplanner.team/stops/LVIastr1", "https://tec.openplanner.team/stops/LVIdepo3"], ["https://tec.openplanner.team/stops/H4ft135a", "https://tec.openplanner.team/stops/H4ft135d"], ["https://tec.openplanner.team/stops/Lsnfont2", "https://tec.openplanner.team/stops/Lsnhorl1"], ["https://tec.openplanner.team/stops/LMAbass1", "https://tec.openplanner.team/stops/LMAcime1"], ["https://tec.openplanner.team/stops/X937aib", "https://tec.openplanner.team/stops/X937ajb"], ["https://tec.openplanner.team/stops/H1ms308c", "https://tec.openplanner.team/stops/H1ms940a"], ["https://tec.openplanner.team/stops/LBafagn1", "https://tec.openplanner.team/stops/LBahome2"], ["https://tec.openplanner.team/stops/X808aia", "https://tec.openplanner.team/stops/X808alb"], ["https://tec.openplanner.team/stops/X696ada", "https://tec.openplanner.team/stops/X696aea"], ["https://tec.openplanner.team/stops/H1ol140b", "https://tec.openplanner.team/stops/H1ol142b"], ["https://tec.openplanner.team/stops/H1pw122a", "https://tec.openplanner.team/stops/H1pw123b"], ["https://tec.openplanner.team/stops/NL72aea", "https://tec.openplanner.team/stops/NL76adb"], ["https://tec.openplanner.team/stops/LBJlieg1", "https://tec.openplanner.team/stops/LMAcomm2"], ["https://tec.openplanner.team/stops/N315aab", "https://tec.openplanner.team/stops/N365aaa"], ["https://tec.openplanner.team/stops/N383aaa", "https://tec.openplanner.team/stops/N988aca"], ["https://tec.openplanner.team/stops/LWbcarr2", "https://tec.openplanner.team/stops/LWbregn1"], ["https://tec.openplanner.team/stops/Bnivga22", "https://tec.openplanner.team/stops/Bnivga71"], ["https://tec.openplanner.team/stops/Bblacco2", "https://tec.openplanner.team/stops/Bwatb4s1"], ["https://tec.openplanner.team/stops/X837afb", "https://tec.openplanner.team/stops/X837aib"], ["https://tec.openplanner.team/stops/H1fr107c", "https://tec.openplanner.team/stops/H1fr125a"], ["https://tec.openplanner.team/stops/X658aba", "https://tec.openplanner.team/stops/X658abb"], ["https://tec.openplanner.team/stops/Cctbois1", "https://tec.openplanner.team/stops/Cctbois2"], ["https://tec.openplanner.team/stops/Cmecime2", "https://tec.openplanner.team/stops/Cvpplan1"], ["https://tec.openplanner.team/stops/H1ht121b", "https://tec.openplanner.team/stops/H1tl120b"], ["https://tec.openplanner.team/stops/LFRfagn2", "https://tec.openplanner.team/stops/LFRrohe2"], ["https://tec.openplanner.team/stops/LLelans2", "https://tec.openplanner.team/stops/X561aaa"], ["https://tec.openplanner.team/stops/LeUarno1", "https://tec.openplanner.team/stops/LeUclou1"], ["https://tec.openplanner.team/stops/X801afb", "https://tec.openplanner.team/stops/X801agb"], ["https://tec.openplanner.team/stops/X609aab", "https://tec.openplanner.team/stops/X609aob"], ["https://tec.openplanner.team/stops/LTHbelv1", "https://tec.openplanner.team/stops/LTHjevo1"], ["https://tec.openplanner.team/stops/H2sb228c", "https://tec.openplanner.team/stops/H2tr248a"], ["https://tec.openplanner.team/stops/Cmesafi2", "https://tec.openplanner.team/stops/Csasncb1"], ["https://tec.openplanner.team/stops/LSPfrai2", "https://tec.openplanner.team/stops/LSPtonn2"], ["https://tec.openplanner.team/stops/N501lia", "https://tec.openplanner.team/stops/N501lja"], ["https://tec.openplanner.team/stops/N539aka", "https://tec.openplanner.team/stops/N539amb"], ["https://tec.openplanner.team/stops/LMOchpl1", "https://tec.openplanner.team/stops/LMOfrel1"], ["https://tec.openplanner.team/stops/LFAwale1", "https://tec.openplanner.team/stops/LVBdela1"], ["https://tec.openplanner.team/stops/N511aua", "https://tec.openplanner.team/stops/N511aub"], ["https://tec.openplanner.team/stops/H4ht172a", "https://tec.openplanner.team/stops/H4ma203b"], ["https://tec.openplanner.team/stops/X730ada", "https://tec.openplanner.team/stops/X730aea"], ["https://tec.openplanner.team/stops/Bnivace1", "https://tec.openplanner.team/stops/Bnivcma1"], ["https://tec.openplanner.team/stops/LHMbami2", "https://tec.openplanner.team/stops/LMNheme2"], ["https://tec.openplanner.team/stops/Cjufagn4", "https://tec.openplanner.team/stops/Cjuregi2"], ["https://tec.openplanner.team/stops/X624aba", "https://tec.openplanner.team/stops/X624ama"], ["https://tec.openplanner.team/stops/X801chb", "https://tec.openplanner.team/stops/X836aea"], ["https://tec.openplanner.team/stops/X638afa", "https://tec.openplanner.team/stops/X638aob"], ["https://tec.openplanner.team/stops/LBLfoxh1", "https://tec.openplanner.team/stops/LBLgobc1"], ["https://tec.openplanner.team/stops/X730aba", "https://tec.openplanner.team/stops/X730aca"], ["https://tec.openplanner.team/stops/Llgcont1", "https://tec.openplanner.team/stops/LlgguilB"], ["https://tec.openplanner.team/stops/Cchcase3", "https://tec.openplanner.team/stops/Cchhopi2"], ["https://tec.openplanner.team/stops/X627aca", "https://tec.openplanner.team/stops/X627ada"], ["https://tec.openplanner.team/stops/Bsammon4", "https://tec.openplanner.team/stops/Bsampli1"], ["https://tec.openplanner.team/stops/Ladplen*", "https://tec.openplanner.team/stops/LThchar2"], ["https://tec.openplanner.team/stops/H1ms253a", "https://tec.openplanner.team/stops/H1ms912a"], ["https://tec.openplanner.team/stops/Lrclant3", "https://tec.openplanner.team/stops/Lrclant4"], ["https://tec.openplanner.team/stops/N501anb", "https://tec.openplanner.team/stops/N501anz"], ["https://tec.openplanner.team/stops/LMYchpl2", "https://tec.openplanner.team/stops/X597ala"], ["https://tec.openplanner.team/stops/N521ala", "https://tec.openplanner.team/stops/N525aba"], ["https://tec.openplanner.team/stops/N534bog", "https://tec.openplanner.team/stops/N534bya"], ["https://tec.openplanner.team/stops/Lagviad2", "https://tec.openplanner.team/stops/Lemdupo2"], ["https://tec.openplanner.team/stops/X757abb", "https://tec.openplanner.team/stops/X757aoa"], ["https://tec.openplanner.team/stops/N244aea", "https://tec.openplanner.team/stops/N248aca"], ["https://tec.openplanner.team/stops/X618aab", "https://tec.openplanner.team/stops/X618abb"], ["https://tec.openplanner.team/stops/X982bea", "https://tec.openplanner.team/stops/X982bka"], ["https://tec.openplanner.team/stops/X672aab", "https://tec.openplanner.team/stops/X817aga"], ["https://tec.openplanner.team/stops/X649aaa", "https://tec.openplanner.team/stops/X670aqb"], ["https://tec.openplanner.team/stops/H4wc372a", "https://tec.openplanner.team/stops/H4wc374a"], ["https://tec.openplanner.team/stops/H4eg108a", "https://tec.openplanner.team/stops/H4ln130a"], ["https://tec.openplanner.team/stops/X661alb", "https://tec.openplanner.team/stops/X661ava"], ["https://tec.openplanner.team/stops/Bsomwav2", "https://tec.openplanner.team/stops/N584asb"], ["https://tec.openplanner.team/stops/X394aea", "https://tec.openplanner.team/stops/X394afa"], ["https://tec.openplanner.team/stops/LSGec--1", "https://tec.openplanner.team/stops/LSGhagn2"], ["https://tec.openplanner.team/stops/X743aea", "https://tec.openplanner.team/stops/X744aaa"], ["https://tec.openplanner.team/stops/LAmarbo1", "https://tec.openplanner.team/stops/LAmbach1"], ["https://tec.openplanner.team/stops/X780abb", "https://tec.openplanner.team/stops/X790abb"], ["https://tec.openplanner.team/stops/H1cu110a", "https://tec.openplanner.team/stops/H1fl370a"], ["https://tec.openplanner.team/stops/LLUhotc2", "https://tec.openplanner.team/stops/LREfloh2"], ["https://tec.openplanner.team/stops/Ltibord1", "https://tec.openplanner.team/stops/Ltichif3"], ["https://tec.openplanner.team/stops/LFypfei1", "https://tec.openplanner.team/stops/LFypfei2"], ["https://tec.openplanner.team/stops/H1ha187b", "https://tec.openplanner.team/stops/H1ha195b"], ["https://tec.openplanner.team/stops/Bolpmre1", "https://tec.openplanner.team/stops/Bolpmre2"], ["https://tec.openplanner.team/stops/Lbocond2", "https://tec.openplanner.team/stops/Lbomidi2"], ["https://tec.openplanner.team/stops/LWDeg--1", "https://tec.openplanner.team/stops/LWDeg--2"], ["https://tec.openplanner.team/stops/Cmlcons1", "https://tec.openplanner.team/stops/Cmlgoff2"], ["https://tec.openplanner.team/stops/N212afb", "https://tec.openplanner.team/stops/N212ahb"], ["https://tec.openplanner.team/stops/N579aca", "https://tec.openplanner.team/stops/N579acb"], ["https://tec.openplanner.team/stops/H1me114a", "https://tec.openplanner.team/stops/H1me116b"], ["https://tec.openplanner.team/stops/X723ajb", "https://tec.openplanner.team/stops/X723akb"], ["https://tec.openplanner.team/stops/H4ev125b", "https://tec.openplanner.team/stops/H4ev126b"], ["https://tec.openplanner.team/stops/H1br131b", "https://tec.openplanner.team/stops/H1ev149b"], ["https://tec.openplanner.team/stops/H3th126a", "https://tec.openplanner.team/stops/H3th129b"], ["https://tec.openplanner.team/stops/Ctuplac3", "https://tec.openplanner.team/stops/NC28aea"], ["https://tec.openplanner.team/stops/X954afb", "https://tec.openplanner.team/stops/X954aha"], ["https://tec.openplanner.team/stops/N117agb", "https://tec.openplanner.team/stops/N117ajb"], ["https://tec.openplanner.team/stops/Cprrvil1", "https://tec.openplanner.team/stops/NC11aob"], ["https://tec.openplanner.team/stops/Lpecaze2", "https://tec.openplanner.team/stops/Lpegole2"], ["https://tec.openplanner.team/stops/LBBcamp2", "https://tec.openplanner.team/stops/NL81afa"], ["https://tec.openplanner.team/stops/N501ela", "https://tec.openplanner.team/stops/N501geb"], ["https://tec.openplanner.team/stops/H4hx118a", "https://tec.openplanner.team/stops/H4hx123a"], ["https://tec.openplanner.team/stops/Cmtchas2", "https://tec.openplanner.team/stops/Cmttkai1"], ["https://tec.openplanner.team/stops/Ccstord1", "https://tec.openplanner.team/stops/Chhsncb2"], ["https://tec.openplanner.team/stops/N501esb", "https://tec.openplanner.team/stops/N501nez"], ["https://tec.openplanner.team/stops/X738aea", "https://tec.openplanner.team/stops/X771aib"], ["https://tec.openplanner.team/stops/X636bgb", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/N539amb", "https://tec.openplanner.team/stops/N539ana"], ["https://tec.openplanner.team/stops/Cfojoli1", "https://tec.openplanner.team/stops/Cfojoli2"], ["https://tec.openplanner.team/stops/Bwavcin1", "https://tec.openplanner.team/stops/Bwavtrt1"], ["https://tec.openplanner.team/stops/LAibego1", "https://tec.openplanner.team/stops/LAicarr1"], ["https://tec.openplanner.team/stops/NL68aga", "https://tec.openplanner.team/stops/NL68agb"], ["https://tec.openplanner.team/stops/N120ahb", "https://tec.openplanner.team/stops/N248aea"], ["https://tec.openplanner.team/stops/LStgare*", "https://tec.openplanner.team/stops/NL80aab"], ["https://tec.openplanner.team/stops/X761abb", "https://tec.openplanner.team/stops/X761acb"], ["https://tec.openplanner.team/stops/X892aaa", "https://tec.openplanner.team/stops/X892aeb"], ["https://tec.openplanner.team/stops/LMNgend1", "https://tec.openplanner.team/stops/LMsheid2"], ["https://tec.openplanner.team/stops/N509beb", "https://tec.openplanner.team/stops/N509bfb"], ["https://tec.openplanner.team/stops/X809aab", "https://tec.openplanner.team/stops/X809aba"], ["https://tec.openplanner.team/stops/LhSgete1", "https://tec.openplanner.team/stops/LhSgete2"], ["https://tec.openplanner.team/stops/Lpeptwa1", "https://tec.openplanner.team/stops/Lpeptwa2"], ["https://tec.openplanner.team/stops/Brixbou2", "https://tec.openplanner.team/stops/Brixdec2"], ["https://tec.openplanner.team/stops/H1ca103b", "https://tec.openplanner.team/stops/H3so164a"], ["https://tec.openplanner.team/stops/N225aba", "https://tec.openplanner.team/stops/N225acb"], ["https://tec.openplanner.team/stops/X735aba", "https://tec.openplanner.team/stops/X735abb"], ["https://tec.openplanner.team/stops/Lansarm2", "https://tec.openplanner.team/stops/Lmogoff2"], ["https://tec.openplanner.team/stops/LCx728-1", "https://tec.openplanner.team/stops/LCxhame2"], ["https://tec.openplanner.team/stops/H1cu115b", "https://tec.openplanner.team/stops/H1je360b"], ["https://tec.openplanner.team/stops/N116abb", "https://tec.openplanner.team/stops/N151aja"], ["https://tec.openplanner.team/stops/LBVplan2", "https://tec.openplanner.team/stops/LLscent1"], ["https://tec.openplanner.team/stops/Bbgeegl1", "https://tec.openplanner.team/stops/Bbgever2"], ["https://tec.openplanner.team/stops/Llgomal1", "https://tec.openplanner.team/stops/Llgomal2"], ["https://tec.openplanner.team/stops/X636bfa", "https://tec.openplanner.team/stops/X649adc"], ["https://tec.openplanner.team/stops/Cflecga1", "https://tec.openplanner.team/stops/Cwgpatr2"], ["https://tec.openplanner.team/stops/X390aha", "https://tec.openplanner.team/stops/X390aja"], ["https://tec.openplanner.team/stops/X782aja", "https://tec.openplanner.team/stops/X782aka"], ["https://tec.openplanner.team/stops/N308aoa", "https://tec.openplanner.team/stops/X308akb"], ["https://tec.openplanner.team/stops/H2pe154a", "https://tec.openplanner.team/stops/H3bi118a"], ["https://tec.openplanner.team/stops/LEHhaut2", "https://tec.openplanner.team/stops/LRRmeta1"], ["https://tec.openplanner.team/stops/Cctbifu1", "https://tec.openplanner.team/stops/Cctmari1"], ["https://tec.openplanner.team/stops/LTEkerk2", "https://tec.openplanner.team/stops/LTEkl121"], ["https://tec.openplanner.team/stops/Btlbmel1", "https://tec.openplanner.team/stops/Btlbmel2"], ["https://tec.openplanner.team/stops/X639acb", "https://tec.openplanner.team/stops/X639acc"], ["https://tec.openplanner.team/stops/H2re163a", "https://tec.openplanner.team/stops/H2re174b"], ["https://tec.openplanner.team/stops/CMpara1", "https://tec.openplanner.team/stops/CMpara2"], ["https://tec.openplanner.team/stops/LLrc1652", "https://tec.openplanner.team/stops/LLrc1991"], ["https://tec.openplanner.team/stops/LLTcoop2", "https://tec.openplanner.team/stops/LLTgole2"], ["https://tec.openplanner.team/stops/LOurena1", "https://tec.openplanner.team/stops/X982bxb"], ["https://tec.openplanner.team/stops/Lhujonc1", "https://tec.openplanner.team/stops/Lhutran2"], ["https://tec.openplanner.team/stops/N135afa", "https://tec.openplanner.team/stops/N140aab"], ["https://tec.openplanner.team/stops/N301afa", "https://tec.openplanner.team/stops/N301aib"], ["https://tec.openplanner.team/stops/H4bf109a", "https://tec.openplanner.team/stops/H4bs114a"], ["https://tec.openplanner.team/stops/LPclaro1", "https://tec.openplanner.team/stops/LTGsucr1"], ["https://tec.openplanner.team/stops/X721akb", "https://tec.openplanner.team/stops/X721ama"], ["https://tec.openplanner.team/stops/Bobacar2", "https://tec.openplanner.team/stops/Bobacar3"], ["https://tec.openplanner.team/stops/H1ma231b", "https://tec.openplanner.team/stops/H1ni317a"], ["https://tec.openplanner.team/stops/Ccicouc1", "https://tec.openplanner.team/stops/Cciecol2"], ["https://tec.openplanner.team/stops/Cmlsart2", "https://tec.openplanner.team/stops/Cmlstni1"], ["https://tec.openplanner.team/stops/Ldimeun2", "https://tec.openplanner.team/stops/Ldipl--5"], ["https://tec.openplanner.team/stops/LNAmart1", "https://tec.openplanner.team/stops/LNAmart2"], ["https://tec.openplanner.team/stops/LFAec--1", "https://tec.openplanner.team/stops/LFAscie1"], ["https://tec.openplanner.team/stops/H4fr140a", "https://tec.openplanner.team/stops/H4ma420a"], ["https://tec.openplanner.team/stops/LDpulve2", "https://tec.openplanner.team/stops/LFMkrin1"], ["https://tec.openplanner.team/stops/N525aca", "https://tec.openplanner.team/stops/N525aub"], ["https://tec.openplanner.team/stops/X892aha", "https://tec.openplanner.team/stops/X892ahb"], ["https://tec.openplanner.team/stops/X639aba", "https://tec.openplanner.team/stops/X639aca"], ["https://tec.openplanner.team/stops/Lemsart1", "https://tec.openplanner.team/stops/Lemsart2"], ["https://tec.openplanner.team/stops/N543aea", "https://tec.openplanner.team/stops/N543aeb"], ["https://tec.openplanner.team/stops/Bblaast1", "https://tec.openplanner.team/stops/Bblaast2"], ["https://tec.openplanner.team/stops/Lsecroi2", "https://tec.openplanner.team/stops/Lsemara2"], ["https://tec.openplanner.team/stops/X937aka", "https://tec.openplanner.team/stops/X945aeb"], ["https://tec.openplanner.team/stops/N147aeb", "https://tec.openplanner.team/stops/N147afa"], ["https://tec.openplanner.team/stops/X734ada", "https://tec.openplanner.team/stops/X734aga"], ["https://tec.openplanner.team/stops/X871aab", "https://tec.openplanner.team/stops/X871aba"], ["https://tec.openplanner.team/stops/X641ala", "https://tec.openplanner.team/stops/X641axb"], ["https://tec.openplanner.team/stops/Bblamsp1", "https://tec.openplanner.team/stops/Bblaphi1"], ["https://tec.openplanner.team/stops/Cchheig2", "https://tec.openplanner.team/stops/CMdamp1"], ["https://tec.openplanner.team/stops/Llgmare1", "https://tec.openplanner.team/stops/Llgpoli2"], ["https://tec.openplanner.team/stops/N534apg", "https://tec.openplanner.team/stops/N534aph"], ["https://tec.openplanner.team/stops/Crs74em4", "https://tec.openplanner.team/stops/Crseuro1"], ["https://tec.openplanner.team/stops/H4ef162b", "https://tec.openplanner.team/stops/H4ef165b"], ["https://tec.openplanner.team/stops/H4ff115b", "https://tec.openplanner.team/stops/H4ff118a"], ["https://tec.openplanner.team/stops/LLvgare1", "https://tec.openplanner.team/stops/LLvgare2"], ["https://tec.openplanner.team/stops/X979aba", "https://tec.openplanner.team/stops/X979aeb"], ["https://tec.openplanner.team/stops/H5at112a", "https://tec.openplanner.team/stops/H5at132a"], ["https://tec.openplanner.team/stops/X739ahb", "https://tec.openplanner.team/stops/X912aia"], ["https://tec.openplanner.team/stops/N501cba", "https://tec.openplanner.team/stops/N501cia"], ["https://tec.openplanner.team/stops/Lscchat2", "https://tec.openplanner.team/stops/Lscferr1"], ["https://tec.openplanner.team/stops/Lceourt2", "https://tec.openplanner.team/stops/Lcepoul2"], ["https://tec.openplanner.team/stops/X601bob", "https://tec.openplanner.team/stops/X601bub"], ["https://tec.openplanner.team/stops/H4lg101a", "https://tec.openplanner.team/stops/H4rm111b"], ["https://tec.openplanner.team/stops/N565aib", "https://tec.openplanner.team/stops/N565aka"], ["https://tec.openplanner.team/stops/N301aab", "https://tec.openplanner.team/stops/N301aba"], ["https://tec.openplanner.team/stops/LHrchez1", "https://tec.openplanner.team/stops/LHrchez2"], ["https://tec.openplanner.team/stops/LeLdorf1", "https://tec.openplanner.team/stops/LkAsonn1"], ["https://tec.openplanner.team/stops/H4fa128b", "https://tec.openplanner.team/stops/H4ms144b"], ["https://tec.openplanner.team/stops/X640aha", "https://tec.openplanner.team/stops/X640ahb"], ["https://tec.openplanner.team/stops/X801atb", "https://tec.openplanner.team/stops/X889aea"], ["https://tec.openplanner.team/stops/N538alb", "https://tec.openplanner.team/stops/N538ama"], ["https://tec.openplanner.team/stops/LNEbo472", "https://tec.openplanner.team/stops/LXHfalh1"], ["https://tec.openplanner.team/stops/Lghchap1", "https://tec.openplanner.team/stops/Lghmont1"], ["https://tec.openplanner.team/stops/LSPbass2", "https://tec.openplanner.team/stops/LSPfrai2"], ["https://tec.openplanner.team/stops/Lmlbaro2", "https://tec.openplanner.team/stops/Lmlchev2"], ["https://tec.openplanner.team/stops/LeYauto2", "https://tec.openplanner.team/stops/LeYroth1"], ["https://tec.openplanner.team/stops/Lgdegli2", "https://tec.openplanner.team/stops/Lgdrena2"], ["https://tec.openplanner.team/stops/Cgymast1", "https://tec.openplanner.team/stops/Cgyrdid1"], ["https://tec.openplanner.team/stops/Cmastma2", "https://tec.openplanner.team/stops/CMmoul1"], ["https://tec.openplanner.team/stops/Bchadpt1", "https://tec.openplanner.team/stops/Bcrnnca2"], ["https://tec.openplanner.team/stops/X904aib", "https://tec.openplanner.team/stops/X904aka"], ["https://tec.openplanner.team/stops/Bmalsmc1", "https://tec.openplanner.team/stops/Bopprju2"], ["https://tec.openplanner.team/stops/Ldipiss1", "https://tec.openplanner.team/stops/Ldipost1"], ["https://tec.openplanner.team/stops/N209acb", "https://tec.openplanner.team/stops/N209adb"], ["https://tec.openplanner.team/stops/H2lh128a", "https://tec.openplanner.team/stops/H2lh132a"], ["https://tec.openplanner.team/stops/LBPauto2", "https://tec.openplanner.team/stops/LBPmais2"], ["https://tec.openplanner.team/stops/LSZarbe2", "https://tec.openplanner.team/stops/LTgwarf1"], ["https://tec.openplanner.team/stops/Llithon2", "https://tec.openplanner.team/stops/Lvochev2"], ["https://tec.openplanner.team/stops/LESchat2", "https://tec.openplanner.team/stops/LTIptme1"], ["https://tec.openplanner.team/stops/X614bra", "https://tec.openplanner.team/stops/X615arb"], ["https://tec.openplanner.team/stops/H2mo124b", "https://tec.openplanner.team/stops/H2mo144a"], ["https://tec.openplanner.team/stops/X634aba", "https://tec.openplanner.team/stops/X634acb"], ["https://tec.openplanner.team/stops/Lgreg--2", "https://tec.openplanner.team/stops/Lgrside2"], ["https://tec.openplanner.team/stops/Bhmmpos2", "https://tec.openplanner.team/stops/Bhmmtou1"], ["https://tec.openplanner.team/stops/LCUgale1", "https://tec.openplanner.team/stops/LCUjonc1"], ["https://tec.openplanner.team/stops/LTecent2", "https://tec.openplanner.team/stops/LTecent4"], ["https://tec.openplanner.team/stops/LsVgore2", "https://tec.openplanner.team/stops/LsVmolk2"], ["https://tec.openplanner.team/stops/Btslhau1", "https://tec.openplanner.team/stops/Btsllec2"], ["https://tec.openplanner.team/stops/X651aaa", "https://tec.openplanner.team/stops/X658aaa"], ["https://tec.openplanner.team/stops/N501gpb", "https://tec.openplanner.team/stops/N501gpz"], ["https://tec.openplanner.team/stops/H4ef164a", "https://tec.openplanner.team/stops/H4ef164b"], ["https://tec.openplanner.team/stops/Blemwro1", "https://tec.openplanner.team/stops/Blemwro2"], ["https://tec.openplanner.team/stops/X636anb", "https://tec.openplanner.team/stops/X636aqc"], ["https://tec.openplanner.team/stops/X605adb", "https://tec.openplanner.team/stops/X634akb"], ["https://tec.openplanner.team/stops/X750ana", "https://tec.openplanner.team/stops/X777acb"], ["https://tec.openplanner.team/stops/X641awa", "https://tec.openplanner.team/stops/X641awb"], ["https://tec.openplanner.team/stops/N120aca", "https://tec.openplanner.team/stops/N120acb"], ["https://tec.openplanner.team/stops/LHHecol1", "https://tec.openplanner.team/stops/LHHplac1"], ["https://tec.openplanner.team/stops/LJueg--2", "https://tec.openplanner.team/stops/LMolone2"], ["https://tec.openplanner.team/stops/Cfcchen2", "https://tec.openplanner.team/stops/Cvretan2"], ["https://tec.openplanner.team/stops/Clcfall3", "https://tec.openplanner.team/stops/Clcfall4"], ["https://tec.openplanner.team/stops/H1sd342a", "https://tec.openplanner.team/stops/H1sd346a"], ["https://tec.openplanner.team/stops/Llghaye2", "https://tec.openplanner.team/stops/Llghenr1"], ["https://tec.openplanner.team/stops/LaMahof2", "https://tec.openplanner.team/stops/LaMjous1"], ["https://tec.openplanner.team/stops/X739aga", "https://tec.openplanner.team/stops/X773abb"], ["https://tec.openplanner.team/stops/LmD163-1", "https://tec.openplanner.team/stops/LmD163-2"], ["https://tec.openplanner.team/stops/Cthcrom1", "https://tec.openplanner.team/stops/Cthwaib1"], ["https://tec.openplanner.team/stops/Ccycont2", "https://tec.openplanner.team/stops/Crbreve1"], ["https://tec.openplanner.team/stops/Cgzchab2", "https://tec.openplanner.team/stops/Cgzcour2"], ["https://tec.openplanner.team/stops/X820aeb", "https://tec.openplanner.team/stops/X820ama"], ["https://tec.openplanner.team/stops/H1ms285a", "https://tec.openplanner.team/stops/H1ms910a"], ["https://tec.openplanner.team/stops/NH01aqa", "https://tec.openplanner.team/stops/NH01aqb"], ["https://tec.openplanner.team/stops/X995adc", "https://tec.openplanner.team/stops/X995add"], ["https://tec.openplanner.team/stops/Bhptcha1", "https://tec.openplanner.team/stops/Bhptcha2"], ["https://tec.openplanner.team/stops/H1fl142a", "https://tec.openplanner.team/stops/H1fl142b"], ["https://tec.openplanner.team/stops/X657aca", "https://tec.openplanner.team/stops/X657adb"], ["https://tec.openplanner.team/stops/H1ob331b", "https://tec.openplanner.team/stops/H1ob341b"], ["https://tec.openplanner.team/stops/Bnstver1", "https://tec.openplanner.team/stops/H2mi125a"], ["https://tec.openplanner.team/stops/H1br121a", "https://tec.openplanner.team/stops/H1em110a"], ["https://tec.openplanner.team/stops/Caicalv2", "https://tec.openplanner.team/stops/NC11ana"], ["https://tec.openplanner.team/stops/H4do104a", "https://tec.openplanner.team/stops/H4do104b"], ["https://tec.openplanner.team/stops/H4mo161a", "https://tec.openplanner.team/stops/H4mo180a"], ["https://tec.openplanner.team/stops/H2ll182a", "https://tec.openplanner.team/stops/H2ll257a"], ["https://tec.openplanner.team/stops/Bspkbeu2", "https://tec.openplanner.team/stops/Bspkkhe1"], ["https://tec.openplanner.team/stops/Cbfchla1", "https://tec.openplanner.team/stops/Cbfusin1"], ["https://tec.openplanner.team/stops/Bwatpas1", "https://tec.openplanner.team/stops/Bwatrdu1"], ["https://tec.openplanner.team/stops/H4co151a", "https://tec.openplanner.team/stops/H4wn138a"], ["https://tec.openplanner.team/stops/LFmlens2", "https://tec.openplanner.team/stops/LFmpoin1"], ["https://tec.openplanner.team/stops/X773afb", "https://tec.openplanner.team/stops/X773agb"], ["https://tec.openplanner.team/stops/N558amb", "https://tec.openplanner.team/stops/N558amd"], ["https://tec.openplanner.team/stops/Bhenhau1", "https://tec.openplanner.team/stops/Bhenmal1"], ["https://tec.openplanner.team/stops/H1ht124a", "https://tec.openplanner.team/stops/H1ht135a"], ["https://tec.openplanner.team/stops/Bixllep1", "https://tec.openplanner.team/stops/Bixlpat1"], ["https://tec.openplanner.team/stops/H1gc123a", "https://tec.openplanner.team/stops/H1hy125a"], ["https://tec.openplanner.team/stops/LLxcbr-1", "https://tec.openplanner.team/stops/LLxcrem1"], ["https://tec.openplanner.team/stops/Lsmberg1", "https://tec.openplanner.team/stops/Lsmberg2"], ["https://tec.openplanner.team/stops/X743aba", "https://tec.openplanner.team/stops/X743acb"], ["https://tec.openplanner.team/stops/LmD181-1", "https://tec.openplanner.team/stops/LmDhoch3"], ["https://tec.openplanner.team/stops/H4ef109b", "https://tec.openplanner.team/stops/H4ef138a"], ["https://tec.openplanner.team/stops/X601aea", "https://tec.openplanner.team/stops/X601ara"], ["https://tec.openplanner.team/stops/LTobilz1", "https://tec.openplanner.team/stops/LTolijn*"], ["https://tec.openplanner.team/stops/N555aba", "https://tec.openplanner.team/stops/N555aca"], ["https://tec.openplanner.team/stops/N506bxa", "https://tec.openplanner.team/stops/N506bxb"], ["https://tec.openplanner.team/stops/Cchheig2", "https://tec.openplanner.team/stops/Cdadest1"], ["https://tec.openplanner.team/stops/LAascie2", "https://tec.openplanner.team/stops/LOChuy-1"], ["https://tec.openplanner.team/stops/Lrcpaqu1", "https://tec.openplanner.team/stops/Lrcrars2"], ["https://tec.openplanner.team/stops/Bcrnegl1", "https://tec.openplanner.team/stops/Bcrnnpl2"], ["https://tec.openplanner.team/stops/X725aea", "https://tec.openplanner.team/stops/X725awa"], ["https://tec.openplanner.team/stops/Btslegl1", "https://tec.openplanner.team/stops/Btslpic6"], ["https://tec.openplanner.team/stops/Cfrbrin2", "https://tec.openplanner.team/stops/Cfrsour2"], ["https://tec.openplanner.team/stops/Bndb4ch1", "https://tec.openplanner.team/stops/Bndbpco2"], ["https://tec.openplanner.team/stops/NB33akb", "https://tec.openplanner.team/stops/NB33alb"], ["https://tec.openplanner.team/stops/X818aga", "https://tec.openplanner.team/stops/X818aha"], ["https://tec.openplanner.team/stops/Bsmgres1", "https://tec.openplanner.team/stops/Bsmgres2"], ["https://tec.openplanner.team/stops/N214adb", "https://tec.openplanner.team/stops/N228aba"], ["https://tec.openplanner.team/stops/Ljuathe1", "https://tec.openplanner.team/stops/Ljuathe2"], ["https://tec.openplanner.team/stops/Buccfja1", "https://tec.openplanner.team/stops/Buccplj1"], ["https://tec.openplanner.team/stops/Lmagara2", "https://tec.openplanner.team/stops/Lrosoxh1"], ["https://tec.openplanner.team/stops/LNAdemo2", "https://tec.openplanner.team/stops/LYEphar2"], ["https://tec.openplanner.team/stops/Lagcler2", "https://tec.openplanner.team/stops/Lagtilf1"], ["https://tec.openplanner.team/stops/H2ha128b", "https://tec.openplanner.team/stops/H2hg145a"], ["https://tec.openplanner.team/stops/H1er109a", "https://tec.openplanner.team/stops/H1er110a"], ["https://tec.openplanner.team/stops/X923aaa", "https://tec.openplanner.team/stops/X923aba"], ["https://tec.openplanner.team/stops/H1ht121a", "https://tec.openplanner.team/stops/H1ht135b"], ["https://tec.openplanner.team/stops/Ccybeau1", "https://tec.openplanner.team/stops/Ccybeau2"], ["https://tec.openplanner.team/stops/X738aaa", "https://tec.openplanner.team/stops/X738aab"], ["https://tec.openplanner.team/stops/Bolggar2", "https://tec.openplanner.team/stops/Bolppla1"], ["https://tec.openplanner.team/stops/N528ada", "https://tec.openplanner.team/stops/N528aua"], ["https://tec.openplanner.team/stops/LJAroue1", "https://tec.openplanner.team/stops/LSU50--1"], ["https://tec.openplanner.team/stops/Cci4091", "https://tec.openplanner.team/stops/Cci4092"], ["https://tec.openplanner.team/stops/H4hx109b", "https://tec.openplanner.team/stops/H4hx115a"], ["https://tec.openplanner.team/stops/Lgrdemo1", "https://tec.openplanner.team/stops/Lgrdemo2"], ["https://tec.openplanner.team/stops/LlZbell2", "https://tec.openplanner.team/stops/LmNmerl1"], ["https://tec.openplanner.team/stops/Bvircen2", "https://tec.openplanner.team/stops/Bvirduj2"], ["https://tec.openplanner.team/stops/LORlieg1", "https://tec.openplanner.team/stops/LORmont2"], ["https://tec.openplanner.team/stops/Blemwob2", "https://tec.openplanner.team/stops/Bstecal2"], ["https://tec.openplanner.team/stops/Bbst4br3", "https://tec.openplanner.team/stops/Cbtbras1"], ["https://tec.openplanner.team/stops/Llglaha2", "https://tec.openplanner.team/stops/Llgoeil2"], ["https://tec.openplanner.team/stops/X879acb", "https://tec.openplanner.team/stops/X879aqb"], ["https://tec.openplanner.team/stops/Btsllib1", "https://tec.openplanner.team/stops/Btslnil1"], ["https://tec.openplanner.team/stops/N236afa", "https://tec.openplanner.team/stops/N236afb"], ["https://tec.openplanner.team/stops/Bovesog2", "https://tec.openplanner.team/stops/Bovevnd2"], ["https://tec.openplanner.team/stops/LAWdefr2", "https://tec.openplanner.team/stops/LAWxhen1"], ["https://tec.openplanner.team/stops/X943adb", "https://tec.openplanner.team/stops/X943aea"], ["https://tec.openplanner.team/stops/Lfhmalv1", "https://tec.openplanner.team/stops/Lfhmalv2"], ["https://tec.openplanner.team/stops/N229ama", "https://tec.openplanner.team/stops/N229aoa"], ["https://tec.openplanner.team/stops/H2bh118a", "https://tec.openplanner.team/stops/H2bh119a"], ["https://tec.openplanner.team/stops/LAYdieu2", "https://tec.openplanner.team/stops/LFLetoi2"], ["https://tec.openplanner.team/stops/Cblbaiv1", "https://tec.openplanner.team/stops/Cblbaiv2"], ["https://tec.openplanner.team/stops/LSSfont2", "https://tec.openplanner.team/stops/LSSfrai1"], ["https://tec.openplanner.team/stops/N145aec", "https://tec.openplanner.team/stops/N149acb"], ["https://tec.openplanner.team/stops/Loumatt1", "https://tec.openplanner.team/stops/Loumatt2"], ["https://tec.openplanner.team/stops/H4ce104a", "https://tec.openplanner.team/stops/H4ce106b"], ["https://tec.openplanner.team/stops/LHrreal1", "https://tec.openplanner.team/stops/LHrreal2"], ["https://tec.openplanner.team/stops/LhIfrie1", "https://tec.openplanner.team/stops/LrDneun1"], ["https://tec.openplanner.team/stops/LWHkerk2", "https://tec.openplanner.team/stops/LWHzave2"], ["https://tec.openplanner.team/stops/X725afe", "https://tec.openplanner.team/stops/X725aff"], ["https://tec.openplanner.team/stops/Lancoop2", "https://tec.openplanner.team/stops/Lanschu1"], ["https://tec.openplanner.team/stops/X940afa", "https://tec.openplanner.team/stops/X940agb"], ["https://tec.openplanner.team/stops/Bjaugar2", "https://tec.openplanner.team/stops/Bjaugar5"], ["https://tec.openplanner.team/stops/H2hg267a", "https://tec.openplanner.team/stops/H2hg267b"], ["https://tec.openplanner.team/stops/Bbgepau1", "https://tec.openplanner.team/stops/Bbgepau2"], ["https://tec.openplanner.team/stops/H1el140b", "https://tec.openplanner.team/stops/H1tl121a"], ["https://tec.openplanner.team/stops/X789aaa", "https://tec.openplanner.team/stops/X789aab"], ["https://tec.openplanner.team/stops/Cmqbert1", "https://tec.openplanner.team/stops/Cmqcend1"], ["https://tec.openplanner.team/stops/N576akb", "https://tec.openplanner.team/stops/N576akc"], ["https://tec.openplanner.team/stops/N506bqb", "https://tec.openplanner.team/stops/N506bsa"], ["https://tec.openplanner.team/stops/X736aaa", "https://tec.openplanner.team/stops/X736aab"], ["https://tec.openplanner.team/stops/Cfrcomp2", "https://tec.openplanner.team/stops/Cfrcoop1"], ["https://tec.openplanner.team/stops/Ljubord2", "https://tec.openplanner.team/stops/Ljubrec1"], ["https://tec.openplanner.team/stops/LeUkehr2", "https://tec.openplanner.team/stops/LeUkehr4"], ["https://tec.openplanner.team/stops/H4og211a", "https://tec.openplanner.team/stops/H4og211b"], ["https://tec.openplanner.team/stops/N221ada", "https://tec.openplanner.team/stops/N221adb"], ["https://tec.openplanner.team/stops/Lagstre1", "https://tec.openplanner.team/stops/Lemlami1"], ["https://tec.openplanner.team/stops/LTIdamr1", "https://tec.openplanner.team/stops/LTIecma1"], ["https://tec.openplanner.team/stops/H4ve135a", "https://tec.openplanner.team/stops/H4ve137b"], ["https://tec.openplanner.team/stops/N536acb", "https://tec.openplanner.team/stops/N562bla"], ["https://tec.openplanner.team/stops/Lchmarc2", "https://tec.openplanner.team/stops/Lchsaro2"], ["https://tec.openplanner.team/stops/Balsnay2", "https://tec.openplanner.team/stops/Balswwe1"], ["https://tec.openplanner.team/stops/X659adb", "https://tec.openplanner.team/stops/X659add"], ["https://tec.openplanner.team/stops/X943abb", "https://tec.openplanner.team/stops/X943acb"], ["https://tec.openplanner.team/stops/H1bd101a", "https://tec.openplanner.team/stops/H1hq127b"], ["https://tec.openplanner.team/stops/X652aaa", "https://tec.openplanner.team/stops/X652aba"], ["https://tec.openplanner.team/stops/LLmcheg4", "https://tec.openplanner.team/stops/LLmeg--2"], ["https://tec.openplanner.team/stops/Bbgncnd1", "https://tec.openplanner.team/stops/Bbgnvel2"], ["https://tec.openplanner.team/stops/LAVcime1", "https://tec.openplanner.team/stops/LAVpequ1"], ["https://tec.openplanner.team/stops/H2ll179a", "https://tec.openplanner.team/stops/H2sv216b"], ["https://tec.openplanner.team/stops/N311abb", "https://tec.openplanner.team/stops/N368ada"], ["https://tec.openplanner.team/stops/H1bo102b", "https://tec.openplanner.team/stops/H1te178a"], ["https://tec.openplanner.team/stops/LSPptch1", "https://tec.openplanner.team/stops/LSPptch2"], ["https://tec.openplanner.team/stops/H1ma233a", "https://tec.openplanner.team/stops/H1mj130b"], ["https://tec.openplanner.team/stops/Csiegli2", "https://tec.openplanner.team/stops/N106afb"], ["https://tec.openplanner.team/stops/LESoneu3", "https://tec.openplanner.team/stops/LVtchai1"], ["https://tec.openplanner.team/stops/Bchgcha2", "https://tec.openplanner.team/stops/Bchgqve2"], ["https://tec.openplanner.team/stops/Cjuheig1", "https://tec.openplanner.team/stops/Cjupier1"], ["https://tec.openplanner.team/stops/Llianix1", "https://tec.openplanner.team/stops/Lligare2"], ["https://tec.openplanner.team/stops/LFothie1", "https://tec.openplanner.team/stops/LJAdeho2"], ["https://tec.openplanner.team/stops/Ladegli1", "https://tec.openplanner.team/stops/Lveinva2"], ["https://tec.openplanner.team/stops/LPLbiol1", "https://tec.openplanner.team/stops/LPLbiol2"], ["https://tec.openplanner.team/stops/H5pe144a", "https://tec.openplanner.team/stops/H5pe146a"], ["https://tec.openplanner.team/stops/N501lja", "https://tec.openplanner.team/stops/N501lmb"], ["https://tec.openplanner.team/stops/Blsmjja1", "https://tec.openplanner.team/stops/Bolgmpl1"], ["https://tec.openplanner.team/stops/LNEec--1", "https://tec.openplanner.team/stops/LOL6che2"], ["https://tec.openplanner.team/stops/H1fr122a", "https://tec.openplanner.team/stops/H1fr124a"], ["https://tec.openplanner.team/stops/X317aaa", "https://tec.openplanner.team/stops/X317aab"], ["https://tec.openplanner.team/stops/X606aba", "https://tec.openplanner.team/stops/X636aoa"], ["https://tec.openplanner.team/stops/H4by115d", "https://tec.openplanner.team/stops/H4by116b"], ["https://tec.openplanner.team/stops/H1sb147b", "https://tec.openplanner.team/stops/H1sb150a"], ["https://tec.openplanner.team/stops/X638ada", "https://tec.openplanner.team/stops/X638adb"], ["https://tec.openplanner.team/stops/H4ws158b", "https://tec.openplanner.team/stops/H4ws159a"], ["https://tec.openplanner.team/stops/H2jo163a", "https://tec.openplanner.team/stops/H2ll260b"], ["https://tec.openplanner.team/stops/LSzcoop1", "https://tec.openplanner.team/stops/LSzsurl1"], ["https://tec.openplanner.team/stops/N543aga", "https://tec.openplanner.team/stops/N543agb"], ["https://tec.openplanner.team/stops/LAx17--2", "https://tec.openplanner.team/stops/LAxbott2"], ["https://tec.openplanner.team/stops/LAUbirv2", "https://tec.openplanner.team/stops/LHMchev1"], ["https://tec.openplanner.team/stops/LHDchar3", "https://tec.openplanner.team/stops/LHDmc--2"], ["https://tec.openplanner.team/stops/N424abb", "https://tec.openplanner.team/stops/N424acb"], ["https://tec.openplanner.team/stops/X790aaa", "https://tec.openplanner.team/stops/X790acb"], ["https://tec.openplanner.team/stops/H2ch104a", "https://tec.openplanner.team/stops/H2ch106a"], ["https://tec.openplanner.team/stops/LLrfrai1", "https://tec.openplanner.team/stops/LLrgobe2"], ["https://tec.openplanner.team/stops/Bsgebou2", "https://tec.openplanner.team/stops/Bsgetri2"], ["https://tec.openplanner.team/stops/LbEkirc*", "https://tec.openplanner.team/stops/LeLdorf2"], ["https://tec.openplanner.team/stops/X879aca", "https://tec.openplanner.team/stops/X879ada"], ["https://tec.openplanner.team/stops/Cwgcamp1", "https://tec.openplanner.team/stops/Cwgpatr2"], ["https://tec.openplanner.team/stops/H4ar103b", "https://tec.openplanner.team/stops/H4ar173b"], ["https://tec.openplanner.team/stops/Llghopo1", "https://tec.openplanner.team/stops/Llgparc1"], ["https://tec.openplanner.team/stops/X985aca", "https://tec.openplanner.team/stops/X985acb"], ["https://tec.openplanner.team/stops/Lsnbrac1", "https://tec.openplanner.team/stops/Lsnbrac2"], ["https://tec.openplanner.team/stops/Bllnfle2", "https://tec.openplanner.team/stops/Bllnjpa1"], ["https://tec.openplanner.team/stops/H4bo114a", "https://tec.openplanner.team/stops/H4bo181b"], ["https://tec.openplanner.team/stops/LOCbois1", "https://tec.openplanner.team/stops/N223aba"], ["https://tec.openplanner.team/stops/H1ca102b", "https://tec.openplanner.team/stops/H1ca103b"], ["https://tec.openplanner.team/stops/N511aia", "https://tec.openplanner.team/stops/N512ama"], ["https://tec.openplanner.team/stops/LsVrodt2", "https://tec.openplanner.team/stops/LsVsimo1"], ["https://tec.openplanner.team/stops/Cchcaya1", "https://tec.openplanner.team/stops/Cchicet1"], ["https://tec.openplanner.team/stops/H4do101a", "https://tec.openplanner.team/stops/H4do101b"], ["https://tec.openplanner.team/stops/N521aba", "https://tec.openplanner.team/stops/N521arb"], ["https://tec.openplanner.team/stops/H4ka179b", "https://tec.openplanner.team/stops/H4ka180a"], ["https://tec.openplanner.team/stops/LNCimpe1", "https://tec.openplanner.team/stops/LRRbonr1"], ["https://tec.openplanner.team/stops/X607aga", "https://tec.openplanner.team/stops/X607agb"], ["https://tec.openplanner.team/stops/LTiforg1", "https://tec.openplanner.team/stops/LTiterr2"], ["https://tec.openplanner.team/stops/H4ta134b", "https://tec.openplanner.team/stops/H4wu377b"], ["https://tec.openplanner.team/stops/N139aaa", "https://tec.openplanner.team/stops/N139aeb"], ["https://tec.openplanner.team/stops/H4bo114b", "https://tec.openplanner.team/stops/H4bo114c"], ["https://tec.openplanner.team/stops/N234aaa", "https://tec.openplanner.team/stops/N234abb"], ["https://tec.openplanner.team/stops/Bfelada1", "https://tec.openplanner.team/stops/Bfelrav2"], ["https://tec.openplanner.team/stops/N501kea", "https://tec.openplanner.team/stops/N501kna"], ["https://tec.openplanner.team/stops/N584cba", "https://tec.openplanner.team/stops/N584cbb"], ["https://tec.openplanner.team/stops/LkEcoop1", "https://tec.openplanner.team/stops/LkEwolf2"], ["https://tec.openplanner.team/stops/X601bda", "https://tec.openplanner.team/stops/X601bfb"], ["https://tec.openplanner.team/stops/H1ms257a", "https://tec.openplanner.team/stops/H1ms260b"], ["https://tec.openplanner.team/stops/Llgcurt1", "https://tec.openplanner.team/stops/Llgdepo2"], ["https://tec.openplanner.team/stops/LEnchan2", "https://tec.openplanner.team/stops/NL67aab"], ["https://tec.openplanner.team/stops/N534amg", "https://tec.openplanner.team/stops/N543aga"], ["https://tec.openplanner.team/stops/X664ata", "https://tec.openplanner.team/stops/X664atb"], ["https://tec.openplanner.team/stops/Cacgare1", "https://tec.openplanner.team/stops/Cacgare2"], ["https://tec.openplanner.team/stops/H1nm140a", "https://tec.openplanner.team/stops/H1si164a"], ["https://tec.openplanner.team/stops/Bperwil1", "https://tec.openplanner.team/stops/Bperwil2"], ["https://tec.openplanner.team/stops/H1ag104a", "https://tec.openplanner.team/stops/H1ro140b"], ["https://tec.openplanner.team/stops/H4ro157b", "https://tec.openplanner.team/stops/H5pe176a"], ["https://tec.openplanner.team/stops/N560aab", "https://tec.openplanner.team/stops/N560ada"], ["https://tec.openplanner.team/stops/LScgore1", "https://tec.openplanner.team/stops/LVTtrou2"], ["https://tec.openplanner.team/stops/LBieg--4", "https://tec.openplanner.team/stops/LBivill2"], ["https://tec.openplanner.team/stops/Bnivgam1", "https://tec.openplanner.team/stops/Bnivmet1"], ["https://tec.openplanner.team/stops/Cdamest1", "https://tec.openplanner.team/stops/Cdaviol1"], ["https://tec.openplanner.team/stops/LNoenne2", "https://tec.openplanner.team/stops/X917aia"], ["https://tec.openplanner.team/stops/Ccobour1", "https://tec.openplanner.team/stops/Cgxfo142"], ["https://tec.openplanner.team/stops/X618ala", "https://tec.openplanner.team/stops/X618alb"], ["https://tec.openplanner.team/stops/N501kva", "https://tec.openplanner.team/stops/N501kzb"], ["https://tec.openplanner.team/stops/N232bwa", "https://tec.openplanner.team/stops/N260afb"], ["https://tec.openplanner.team/stops/Lrcauto1", "https://tec.openplanner.team/stops/Lvtpepi2"], ["https://tec.openplanner.team/stops/Cgosmoi2", "https://tec.openplanner.team/stops/Cjuheig1"], ["https://tec.openplanner.team/stops/X736aca", "https://tec.openplanner.team/stops/X736ada"], ["https://tec.openplanner.team/stops/LESathe2", "https://tec.openplanner.team/stops/LESecco2"], ["https://tec.openplanner.team/stops/Lsefore1", "https://tec.openplanner.team/stops/Lsevill2"], ["https://tec.openplanner.team/stops/LBEchan2", "https://tec.openplanner.team/stops/LBEhaye1"], ["https://tec.openplanner.team/stops/LmNkrew1", "https://tec.openplanner.team/stops/LoUpete2"], ["https://tec.openplanner.team/stops/Bcseche1", "https://tec.openplanner.team/stops/Bsmgsuz1"], ["https://tec.openplanner.team/stops/LHThall4", "https://tec.openplanner.team/stops/LWOwaer1"], ["https://tec.openplanner.team/stops/Ctachst2", "https://tec.openplanner.team/stops/Ctapn2"], ["https://tec.openplanner.team/stops/LsVbs--*", "https://tec.openplanner.team/stops/LsVgrun1"], ["https://tec.openplanner.team/stops/H4ty325a", "https://tec.openplanner.team/stops/H4ty330c"], ["https://tec.openplanner.team/stops/X759acb", "https://tec.openplanner.team/stops/X759ada"], ["https://tec.openplanner.team/stops/Lre3che1", "https://tec.openplanner.team/stops/Lrebriq2"], ["https://tec.openplanner.team/stops/X921aba", "https://tec.openplanner.team/stops/X921abb"], ["https://tec.openplanner.team/stops/Bgnvfai1", "https://tec.openplanner.team/stops/Bgnvfai2"], ["https://tec.openplanner.team/stops/H5rx112a", "https://tec.openplanner.team/stops/H5rx136a"], ["https://tec.openplanner.team/stops/H2gy100b", "https://tec.openplanner.team/stops/H2gy109a"], ["https://tec.openplanner.team/stops/Lsebelv1", "https://tec.openplanner.team/stops/Lsebelv2"], ["https://tec.openplanner.team/stops/Cplrymo1", "https://tec.openplanner.team/stops/NC11aga"], ["https://tec.openplanner.team/stops/Ctufleu1", "https://tec.openplanner.team/stops/Cturoge2"], ["https://tec.openplanner.team/stops/LWAmois2", "https://tec.openplanner.team/stops/LWAor--1"], ["https://tec.openplanner.team/stops/LElgerd3", "https://tec.openplanner.team/stops/LTaabba1"], ["https://tec.openplanner.team/stops/Clocroi1", "https://tec.openplanner.team/stops/Clogfay2"], ["https://tec.openplanner.team/stops/N218acc", "https://tec.openplanner.team/stops/N331aea"], ["https://tec.openplanner.team/stops/X741aid", "https://tec.openplanner.team/stops/X741aoa"], ["https://tec.openplanner.team/stops/X991adb", "https://tec.openplanner.team/stops/X991ahb"], ["https://tec.openplanner.team/stops/Cgzabau2", "https://tec.openplanner.team/stops/Cgzfarc1"], ["https://tec.openplanner.team/stops/X727aga", "https://tec.openplanner.team/stops/X754axb"], ["https://tec.openplanner.team/stops/LBNhegg2", "https://tec.openplanner.team/stops/LBNruns2"], ["https://tec.openplanner.team/stops/N505aoa", "https://tec.openplanner.team/stops/N536acb"], ["https://tec.openplanner.team/stops/H1gh167b", "https://tec.openplanner.team/stops/H1gh168b"], ["https://tec.openplanner.team/stops/H4mb203a", "https://tec.openplanner.team/stops/H4mb205a"], ["https://tec.openplanner.team/stops/LeUrath1", "https://tec.openplanner.team/stops/LeUrath2"], ["https://tec.openplanner.team/stops/Boveker1", "https://tec.openplanner.team/stops/Bovesol1"], ["https://tec.openplanner.team/stops/Ccychap1", "https://tec.openplanner.team/stops/Ccygara1"], ["https://tec.openplanner.team/stops/Cnaha561", "https://tec.openplanner.team/stops/Cnating1"], ["https://tec.openplanner.team/stops/LGegare1", "https://tec.openplanner.team/stops/LkEsouf1"], ["https://tec.openplanner.team/stops/Bitrpri2", "https://tec.openplanner.team/stops/Bosqpco1"], ["https://tec.openplanner.team/stops/H4rc232b", "https://tec.openplanner.team/stops/H4rc232c"], ["https://tec.openplanner.team/stops/N209aeb", "https://tec.openplanner.team/stops/N209afa"], ["https://tec.openplanner.team/stops/Bbsttab1", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/X952alb", "https://tec.openplanner.team/stops/X955aaa"], ["https://tec.openplanner.team/stops/H1mk108d", "https://tec.openplanner.team/stops/H1mk117b"], ["https://tec.openplanner.team/stops/X774aeb", "https://tec.openplanner.team/stops/X774afb"], ["https://tec.openplanner.team/stops/Lalexpa1", "https://tec.openplanner.team/stops/Lrccomm1"], ["https://tec.openplanner.team/stops/Cgxcime1", "https://tec.openplanner.team/stops/Cgxmaco1"], ["https://tec.openplanner.team/stops/X604ada", "https://tec.openplanner.team/stops/X604aea"], ["https://tec.openplanner.team/stops/H4ga148b", "https://tec.openplanner.team/stops/H4ga165a"], ["https://tec.openplanner.team/stops/H1ms266a", "https://tec.openplanner.team/stops/H1ms266b"], ["https://tec.openplanner.team/stops/Blpgbat2", "https://tec.openplanner.team/stops/Blpghou2"], ["https://tec.openplanner.team/stops/Llgbaya2", "https://tec.openplanner.team/stops/Llgborg2"], ["https://tec.openplanner.team/stops/LBhcent1", "https://tec.openplanner.team/stops/LLycent*"], ["https://tec.openplanner.team/stops/X757aka", "https://tec.openplanner.team/stops/X757akb"], ["https://tec.openplanner.team/stops/X657afa", "https://tec.openplanner.team/stops/X670aob"], ["https://tec.openplanner.team/stops/LBjvill3", "https://tec.openplanner.team/stops/LTB105-1"], ["https://tec.openplanner.team/stops/X608afb", "https://tec.openplanner.team/stops/X608aib"], ["https://tec.openplanner.team/stops/LBHinva1", "https://tec.openplanner.team/stops/LMechpl1"], ["https://tec.openplanner.team/stops/LHMbelv1", "https://tec.openplanner.team/stops/LHMgulp1"], ["https://tec.openplanner.team/stops/LHXfont2", "https://tec.openplanner.team/stops/LSMtarg1"], ["https://tec.openplanner.team/stops/LaM266-1", "https://tec.openplanner.team/stops/LaMades2"], ["https://tec.openplanner.team/stops/Cgxalli1", "https://tec.openplanner.team/stops/Cgxalli2"], ["https://tec.openplanner.team/stops/N512aic", "https://tec.openplanner.team/stops/N512aid"], ["https://tec.openplanner.team/stops/LAOeg--1", "https://tec.openplanner.team/stops/LBpecco2"], ["https://tec.openplanner.team/stops/N166acb", "https://tec.openplanner.team/stops/N168aaa"], ["https://tec.openplanner.team/stops/H1sy139a", "https://tec.openplanner.team/stops/H1sy143a"], ["https://tec.openplanner.team/stops/LCHrhou1", "https://tec.openplanner.team/stops/LCHrhou2"], ["https://tec.openplanner.team/stops/H4mv195b", "https://tec.openplanner.team/stops/H4va231a"], ["https://tec.openplanner.team/stops/N150adb", "https://tec.openplanner.team/stops/N150aka"], ["https://tec.openplanner.team/stops/Lmlboul1", "https://tec.openplanner.team/stops/Lmlmich2"], ["https://tec.openplanner.team/stops/X663aia", "https://tec.openplanner.team/stops/X663ama"], ["https://tec.openplanner.team/stops/X629aba", "https://tec.openplanner.team/stops/X636atb"], ["https://tec.openplanner.team/stops/Lfhvoye1", "https://tec.openplanner.team/stops/Lfhvoye2"], ["https://tec.openplanner.team/stops/X902aia", "https://tec.openplanner.team/stops/X902ara"], ["https://tec.openplanner.team/stops/LAnvien1", "https://tec.openplanner.team/stops/LAnvien2"], ["https://tec.openplanner.team/stops/Bbgevil2", "https://tec.openplanner.team/stops/Bbgewal1"], ["https://tec.openplanner.team/stops/Cfomays1", "https://tec.openplanner.team/stops/CMpara2"], ["https://tec.openplanner.team/stops/N505aaa", "https://tec.openplanner.team/stops/N505aab"], ["https://tec.openplanner.team/stops/Lbhbalt2", "https://tec.openplanner.team/stops/LMFmoul1"], ["https://tec.openplanner.team/stops/LrUweve2", "https://tec.openplanner.team/stops/LsFcafe1"], ["https://tec.openplanner.team/stops/Cmtcapi1", "https://tec.openplanner.team/stops/Cmtfoye1"], ["https://tec.openplanner.team/stops/Csdjeme1", "https://tec.openplanner.team/stops/Csdjeme2"], ["https://tec.openplanner.team/stops/LSMec--1", "https://tec.openplanner.team/stops/LSMpoin2"], ["https://tec.openplanner.team/stops/X896afb", "https://tec.openplanner.team/stops/X897apa"], ["https://tec.openplanner.team/stops/N117aya", "https://tec.openplanner.team/stops/N147adb"], ["https://tec.openplanner.team/stops/X829abb", "https://tec.openplanner.team/stops/X829aeb"], ["https://tec.openplanner.team/stops/N261aab", "https://tec.openplanner.team/stops/N338ahb"], ["https://tec.openplanner.team/stops/LHGtige1", "https://tec.openplanner.team/stops/LHGvill2"], ["https://tec.openplanner.team/stops/LCxc6192", "https://tec.openplanner.team/stops/LCxcour1"], ["https://tec.openplanner.team/stops/X641aja", "https://tec.openplanner.team/stops/X641aka"], ["https://tec.openplanner.team/stops/LCsbors2", "https://tec.openplanner.team/stops/LCschen1"], ["https://tec.openplanner.team/stops/Llgpier1", "https://tec.openplanner.team/stops/Llgterr1"], ["https://tec.openplanner.team/stops/X756aaa", "https://tec.openplanner.team/stops/X756akb"], ["https://tec.openplanner.team/stops/H2ha138b", "https://tec.openplanner.team/stops/H2ha139a"], ["https://tec.openplanner.team/stops/LFAtomb2", "https://tec.openplanner.team/stops/LLTfall2"], ["https://tec.openplanner.team/stops/LHNhv--1", "https://tec.openplanner.team/stops/LHNwaut1"], ["https://tec.openplanner.team/stops/H1mk107a", "https://tec.openplanner.team/stops/H1mk107b"], ["https://tec.openplanner.team/stops/H5qu156a", "https://tec.openplanner.team/stops/H5qu156b"], ["https://tec.openplanner.team/stops/LCeanne2", "https://tec.openplanner.team/stops/LCewaut1"], ["https://tec.openplanner.team/stops/X361aaa", "https://tec.openplanner.team/stops/X361abb"], ["https://tec.openplanner.team/stops/Bmelegl2", "https://tec.openplanner.team/stops/Bmelmqu1"], ["https://tec.openplanner.team/stops/Lsecris4", "https://tec.openplanner.team/stops/Lsevico2"], ["https://tec.openplanner.team/stops/N340abb", "https://tec.openplanner.team/stops/N340aeb"], ["https://tec.openplanner.team/stops/LJUxhen2", "https://tec.openplanner.team/stops/LJUxhen3"], ["https://tec.openplanner.team/stops/H1wa149b", "https://tec.openplanner.team/stops/H1wa149c"], ["https://tec.openplanner.team/stops/N525aec", "https://tec.openplanner.team/stops/N525aed"], ["https://tec.openplanner.team/stops/Buccbou2", "https://tec.openplanner.team/stops/Bucceng2"], ["https://tec.openplanner.team/stops/Crolach1", "https://tec.openplanner.team/stops/Cronova1"], ["https://tec.openplanner.team/stops/Bnetrec1", "https://tec.openplanner.team/stops/Bnettou1"], ["https://tec.openplanner.team/stops/X982akb", "https://tec.openplanner.team/stops/X982aqb"], ["https://tec.openplanner.team/stops/H1cu112a", "https://tec.openplanner.team/stops/H1cu117c"], ["https://tec.openplanner.team/stops/X636ada", "https://tec.openplanner.team/stops/X670aqa"], ["https://tec.openplanner.team/stops/Lsepudd2", "https://tec.openplanner.team/stops/Lsevico2"], ["https://tec.openplanner.team/stops/Berneco2", "https://tec.openplanner.team/stops/Bgemman1"], ["https://tec.openplanner.team/stops/H1as103a", "https://tec.openplanner.team/stops/H1nv325a"], ["https://tec.openplanner.team/stops/N229arb", "https://tec.openplanner.team/stops/N230acb"], ["https://tec.openplanner.team/stops/NR27aab", "https://tec.openplanner.team/stops/NR27abb"], ["https://tec.openplanner.team/stops/H4co104a", "https://tec.openplanner.team/stops/H4co142a"], ["https://tec.openplanner.team/stops/LkEl1211", "https://tec.openplanner.team/stops/LkEl3251"], ["https://tec.openplanner.team/stops/H1ms277a", "https://tec.openplanner.team/stops/H1ms362a"], ["https://tec.openplanner.team/stops/X818aoa", "https://tec.openplanner.team/stops/X818apb"], ["https://tec.openplanner.team/stops/X638agb", "https://tec.openplanner.team/stops/X638ajb"], ["https://tec.openplanner.team/stops/X995abb", "https://tec.openplanner.team/stops/X995adb"], ["https://tec.openplanner.team/stops/N501gpc", "https://tec.openplanner.team/stops/N501gpd"], ["https://tec.openplanner.team/stops/X939afa", "https://tec.openplanner.team/stops/X940agb"], ["https://tec.openplanner.team/stops/X822ada", "https://tec.openplanner.team/stops/X822adb"], ["https://tec.openplanner.team/stops/Cbblacb1", "https://tec.openplanner.team/stops/Cbmvalt1"], ["https://tec.openplanner.team/stops/N101acb", "https://tec.openplanner.team/stops/N101ama"], ["https://tec.openplanner.team/stops/Louvivi1", "https://tec.openplanner.team/stops/Louvivi2"], ["https://tec.openplanner.team/stops/N543bda", "https://tec.openplanner.team/stops/N543bgc"], ["https://tec.openplanner.team/stops/N141abb", "https://tec.openplanner.team/stops/N141aoa"], ["https://tec.openplanner.team/stops/Lsmgdry1", "https://tec.openplanner.team/stops/Lsmgdry2"], ["https://tec.openplanner.team/stops/X601atb", "https://tec.openplanner.team/stops/X601cra"], ["https://tec.openplanner.team/stops/H2lh132b", "https://tec.openplanner.team/stops/H2mo135b"], ["https://tec.openplanner.team/stops/Lbopote1", "https://tec.openplanner.team/stops/Lbopote2"], ["https://tec.openplanner.team/stops/Cgdfoca2", "https://tec.openplanner.team/stops/Csylaha1"], ["https://tec.openplanner.team/stops/Ccorian2", "https://tec.openplanner.team/stops/Ccostan2"], ["https://tec.openplanner.team/stops/LVnflox1", "https://tec.openplanner.team/stops/LVnvieg1"], ["https://tec.openplanner.team/stops/X654aia", "https://tec.openplanner.team/stops/X667aea"], ["https://tec.openplanner.team/stops/H4te258b", "https://tec.openplanner.team/stops/H4te259b"], ["https://tec.openplanner.team/stops/H1ss348a", "https://tec.openplanner.team/stops/H1ss351b"], ["https://tec.openplanner.team/stops/X877aca", "https://tec.openplanner.team/stops/X877acb"], ["https://tec.openplanner.team/stops/LAYcorn2", "https://tec.openplanner.team/stops/LAYlieg1"], ["https://tec.openplanner.team/stops/LOuathe1", "https://tec.openplanner.team/stops/LOuplac2"], ["https://tec.openplanner.team/stops/X661aga", "https://tec.openplanner.team/stops/X661aub"], ["https://tec.openplanner.team/stops/LLApavi1", "https://tec.openplanner.team/stops/LLxcite1"], ["https://tec.openplanner.team/stops/Cgymara1", "https://tec.openplanner.team/stops/Cgynoir1"], ["https://tec.openplanner.team/stops/N101aeb", "https://tec.openplanner.team/stops/N147aab"], ["https://tec.openplanner.team/stops/X613aba", "https://tec.openplanner.team/stops/X613abb"], ["https://tec.openplanner.team/stops/H1fy121a", "https://tec.openplanner.team/stops/H1fy143a"], ["https://tec.openplanner.team/stops/H2tr255b", "https://tec.openplanner.team/stops/H2tr256b"], ["https://tec.openplanner.team/stops/Llgcrgu2", "https://tec.openplanner.team/stops/Llghoub2"], ["https://tec.openplanner.team/stops/X640aba", "https://tec.openplanner.team/stops/X640abb"], ["https://tec.openplanner.team/stops/Cfbcal1", "https://tec.openplanner.team/stops/Cfbcal2"], ["https://tec.openplanner.team/stops/LACeg--2", "https://tec.openplanner.team/stops/LAChann2"], ["https://tec.openplanner.team/stops/N337aha", "https://tec.openplanner.team/stops/N339acb"], ["https://tec.openplanner.team/stops/LBDcarr1", "https://tec.openplanner.team/stops/LBDcarr2"], ["https://tec.openplanner.team/stops/Bbchcab2", "https://tec.openplanner.team/stops/Bbchpil1"], ["https://tec.openplanner.team/stops/N528ama", "https://tec.openplanner.team/stops/N528anb"], ["https://tec.openplanner.team/stops/Brsgepr2", "https://tec.openplanner.team/stops/Brsggol2"], ["https://tec.openplanner.team/stops/Baegegl1", "https://tec.openplanner.team/stops/Bflcneu1"], ["https://tec.openplanner.team/stops/Lgrside1", "https://tec.openplanner.team/stops/Lgrside2"], ["https://tec.openplanner.team/stops/N101anb", "https://tec.openplanner.team/stops/N101arb"], ["https://tec.openplanner.team/stops/LTHturo2", "https://tec.openplanner.team/stops/LTHturo4"], ["https://tec.openplanner.team/stops/LHoetie1", "https://tec.openplanner.team/stops/LJesole2"], ["https://tec.openplanner.team/stops/H1pd142a", "https://tec.openplanner.team/stops/H1pd146a"], ["https://tec.openplanner.team/stops/N501eib", "https://tec.openplanner.team/stops/N501kcb"], ["https://tec.openplanner.team/stops/X601asb", "https://tec.openplanner.team/stops/X601cma"], ["https://tec.openplanner.team/stops/X734and", "https://tec.openplanner.team/stops/X775ada"], ["https://tec.openplanner.team/stops/LaAdiep1", "https://tec.openplanner.team/stops/LaAneul1"], ["https://tec.openplanner.team/stops/X872aga", "https://tec.openplanner.team/stops/X887aaa"], ["https://tec.openplanner.team/stops/H1fr109a", "https://tec.openplanner.team/stops/H1fr125b"], ["https://tec.openplanner.team/stops/Cgystjo3", "https://tec.openplanner.team/stops/Cmtmath1"], ["https://tec.openplanner.team/stops/N135aza", "https://tec.openplanner.team/stops/N135bia"], ["https://tec.openplanner.team/stops/N211aea", "https://tec.openplanner.team/stops/N219aca"], ["https://tec.openplanner.team/stops/N244aab", "https://tec.openplanner.team/stops/N244aha"], ["https://tec.openplanner.team/stops/Ccuhsti1", "https://tec.openplanner.team/stops/Ccuhsti2"], ["https://tec.openplanner.team/stops/LHmferm1", "https://tec.openplanner.team/stops/LLocruc2"], ["https://tec.openplanner.team/stops/Bcbqegl2", "https://tec.openplanner.team/stops/Bcbqufo1"], ["https://tec.openplanner.team/stops/H1ne147b", "https://tec.openplanner.team/stops/H1ne149b"], ["https://tec.openplanner.team/stops/Cvvmonu2", "https://tec.openplanner.team/stops/Cvvsncb2"], ["https://tec.openplanner.team/stops/Cmitrie1", "https://tec.openplanner.team/stops/Cvtmaro1"], ["https://tec.openplanner.team/stops/LBRmc--2", "https://tec.openplanner.team/stops/LBRpt--2"], ["https://tec.openplanner.team/stops/Bbghepi2", "https://tec.openplanner.team/stops/Bstetre2"], ["https://tec.openplanner.team/stops/X734ajb", "https://tec.openplanner.team/stops/X734aka"], ["https://tec.openplanner.team/stops/N217abb", "https://tec.openplanner.team/stops/N217acb"], ["https://tec.openplanner.team/stops/H1bd103b", "https://tec.openplanner.team/stops/H1hq128a"], ["https://tec.openplanner.team/stops/N214aea", "https://tec.openplanner.team/stops/N236ahb"], ["https://tec.openplanner.team/stops/LMAstei1", "https://tec.openplanner.team/stops/LMAstei2"], ["https://tec.openplanner.team/stops/N120ahb", "https://tec.openplanner.team/stops/N340aga"], ["https://tec.openplanner.team/stops/LeUgend2", "https://tec.openplanner.team/stops/LeUlasc1"], ["https://tec.openplanner.team/stops/N349aia", "https://tec.openplanner.team/stops/N351arb"], ["https://tec.openplanner.team/stops/N501awa", "https://tec.openplanner.team/stops/N527adb"], ["https://tec.openplanner.team/stops/Buccfja2", "https://tec.openplanner.team/stops/Buccham2"], ["https://tec.openplanner.team/stops/Lflsana2", "https://tec.openplanner.team/stops/Lmaetan*"], ["https://tec.openplanner.team/stops/N539aoa", "https://tec.openplanner.team/stops/N539apa"], ["https://tec.openplanner.team/stops/H4mo192a", "https://tec.openplanner.team/stops/H4mo206a"], ["https://tec.openplanner.team/stops/H4rx142a", "https://tec.openplanner.team/stops/H4tg170b"], ["https://tec.openplanner.team/stops/H2na135b", "https://tec.openplanner.team/stops/H3so172a"], ["https://tec.openplanner.team/stops/N161aab", "https://tec.openplanner.team/stops/N161aea"], ["https://tec.openplanner.team/stops/X999agb", "https://tec.openplanner.team/stops/X999aoa"], ["https://tec.openplanner.team/stops/LREsp302", "https://tec.openplanner.team/stops/LREsp902"], ["https://tec.openplanner.team/stops/H4bo178a", "https://tec.openplanner.team/stops/H4bo179a"], ["https://tec.openplanner.team/stops/X750bmb", "https://tec.openplanner.team/stops/X750bpa"], ["https://tec.openplanner.team/stops/N501meb", "https://tec.openplanner.team/stops/N501mey"], ["https://tec.openplanner.team/stops/Cbbcrbo2", "https://tec.openplanner.team/stops/Cbmvalt1"], ["https://tec.openplanner.team/stops/Crccarr2", "https://tec.openplanner.team/stops/NH03aeb"], ["https://tec.openplanner.team/stops/X899aaa", "https://tec.openplanner.team/stops/X899afa"], ["https://tec.openplanner.team/stops/LaMbull1", "https://tec.openplanner.team/stops/LaMmark1"], ["https://tec.openplanner.team/stops/H4le127a", "https://tec.openplanner.team/stops/H4ry130a"], ["https://tec.openplanner.team/stops/Lgrcour2", "https://tec.openplanner.team/stops/Lgrmagd2"], ["https://tec.openplanner.team/stops/N501lgb", "https://tec.openplanner.team/stops/N501lkb"], ["https://tec.openplanner.team/stops/Btslcej1", "https://tec.openplanner.team/stops/Btslenf1"], ["https://tec.openplanner.team/stops/Cjupuis2", "https://tec.openplanner.team/stops/Cmaacac2"], ["https://tec.openplanner.team/stops/LCxcham2", "https://tec.openplanner.team/stops/LCxfawe2"], ["https://tec.openplanner.team/stops/X631aba", "https://tec.openplanner.team/stops/X631abb"], ["https://tec.openplanner.team/stops/N501blb", "https://tec.openplanner.team/stops/N501bob"], ["https://tec.openplanner.team/stops/X734aca", "https://tec.openplanner.team/stops/X734adb"], ["https://tec.openplanner.team/stops/LHAcite1", "https://tec.openplanner.team/stops/LHAclin1"], ["https://tec.openplanner.team/stops/Buccdho2", "https://tec.openplanner.team/stops/Buccvch1"], ["https://tec.openplanner.team/stops/X657aha", "https://tec.openplanner.team/stops/X657aib"], ["https://tec.openplanner.team/stops/X742aaa", "https://tec.openplanner.team/stops/X742aca"], ["https://tec.openplanner.team/stops/H4ir162a", "https://tec.openplanner.team/stops/H4ir163d"], ["https://tec.openplanner.team/stops/H2sb225a", "https://tec.openplanner.team/stops/H2sb225b"], ["https://tec.openplanner.team/stops/LMalune4", "https://tec.openplanner.team/stops/LMawilh4"], ["https://tec.openplanner.team/stops/X904acb", "https://tec.openplanner.team/stops/X904aeb"], ["https://tec.openplanner.team/stops/Bcrbtho1", "https://tec.openplanner.team/stops/Bcrbtho2"], ["https://tec.openplanner.team/stops/H1ho133a", "https://tec.openplanner.team/stops/H1ho135b"], ["https://tec.openplanner.team/stops/LMNcite2", "https://tec.openplanner.team/stops/LPbec--1"], ["https://tec.openplanner.team/stops/Bsaubbo1", "https://tec.openplanner.team/stops/Bsaubbo2"], ["https://tec.openplanner.team/stops/LHChoof3", "https://tec.openplanner.team/stops/LHChoof4"], ["https://tec.openplanner.team/stops/LVIcarm2", "https://tec.openplanner.team/stops/LVIcarm4"], ["https://tec.openplanner.team/stops/X396aba", "https://tec.openplanner.team/stops/X901ala"], ["https://tec.openplanner.team/stops/N209aic", "https://tec.openplanner.team/stops/N209anb"], ["https://tec.openplanner.team/stops/Bsmgmar1", "https://tec.openplanner.team/stops/Bsmgmar2"], ["https://tec.openplanner.team/stops/LhGkirc3", "https://tec.openplanner.team/stops/LhGkirc4"], ["https://tec.openplanner.team/stops/Cthhvil1", "https://tec.openplanner.team/stops/Cthhvil6"], ["https://tec.openplanner.team/stops/H1cu118a", "https://tec.openplanner.team/stops/H1cu128a"], ["https://tec.openplanner.team/stops/N521aeb", "https://tec.openplanner.team/stops/N523abb"], ["https://tec.openplanner.team/stops/H4bd111a", "https://tec.openplanner.team/stops/H4te257b"], ["https://tec.openplanner.team/stops/X671aca", "https://tec.openplanner.team/stops/X671acb"], ["https://tec.openplanner.team/stops/Caicalv2", "https://tec.openplanner.team/stops/Crspair2"], ["https://tec.openplanner.team/stops/H2se109a", "https://tec.openplanner.team/stops/H2se114a"], ["https://tec.openplanner.team/stops/X769aba", "https://tec.openplanner.team/stops/X769aqb"], ["https://tec.openplanner.team/stops/Bclgavi1", "https://tec.openplanner.team/stops/Bclgavi2"], ["https://tec.openplanner.team/stops/N506afa", "https://tec.openplanner.team/stops/N506bpa"], ["https://tec.openplanner.team/stops/LBRbriv1", "https://tec.openplanner.team/stops/LBRbriv2"], ["https://tec.openplanner.team/stops/X663aub", "https://tec.openplanner.team/stops/X664anb"], ["https://tec.openplanner.team/stops/H2hl111a", "https://tec.openplanner.team/stops/H2sv211b"], ["https://tec.openplanner.team/stops/LBlhaut2", "https://tec.openplanner.team/stops/LLUmont1"], ["https://tec.openplanner.team/stops/Cfmcent2", "https://tec.openplanner.team/stops/Cfmwaut2"], ["https://tec.openplanner.team/stops/X615ayb", "https://tec.openplanner.team/stops/X615bbb"], ["https://tec.openplanner.team/stops/LTB105-1", "https://tec.openplanner.team/stops/X575aib"], ["https://tec.openplanner.team/stops/N562aca", "https://tec.openplanner.team/stops/N562agb"], ["https://tec.openplanner.team/stops/N243acb", "https://tec.openplanner.team/stops/N252ada"], ["https://tec.openplanner.team/stops/H1pa111b", "https://tec.openplanner.team/stops/H1pa167a"], ["https://tec.openplanner.team/stops/LVBeg--2", "https://tec.openplanner.team/stops/LVBrmon2"], ["https://tec.openplanner.team/stops/Cchwarm1", "https://tec.openplanner.team/stops/Cchwarm2"], ["https://tec.openplanner.team/stops/H2bh117a", "https://tec.openplanner.team/stops/H2bh119b"], ["https://tec.openplanner.team/stops/Lalbout2", "https://tec.openplanner.team/stops/Lalexpa2"], ["https://tec.openplanner.team/stops/N101aab", "https://tec.openplanner.team/stops/N101abb"], ["https://tec.openplanner.team/stops/H4fo119a", "https://tec.openplanner.team/stops/H4ga170a"], ["https://tec.openplanner.team/stops/Balswin2", "https://tec.openplanner.team/stops/Balswin3"], ["https://tec.openplanner.team/stops/Caiegli2", "https://tec.openplanner.team/stops/Caircen2"], ["https://tec.openplanner.team/stops/Lhrabho2", "https://tec.openplanner.team/stops/Lhrpont2"], ["https://tec.openplanner.team/stops/X390akb", "https://tec.openplanner.team/stops/X390alb"], ["https://tec.openplanner.team/stops/LFIeg--1", "https://tec.openplanner.team/stops/LMYroin2"], ["https://tec.openplanner.team/stops/N501bma", "https://tec.openplanner.team/stops/N501chc"], ["https://tec.openplanner.team/stops/N351aaa", "https://tec.openplanner.team/stops/N351agb"], ["https://tec.openplanner.team/stops/Bjaneco1", "https://tec.openplanner.team/stops/Bjaneco2"], ["https://tec.openplanner.team/stops/Cfccuch2", "https://tec.openplanner.team/stops/Cvretan2"], ["https://tec.openplanner.team/stops/LLelava1", "https://tec.openplanner.team/stops/LLescie2"], ["https://tec.openplanner.team/stops/LAUjean1", "https://tec.openplanner.team/stops/LFPloob1"], ["https://tec.openplanner.team/stops/X804afb", "https://tec.openplanner.team/stops/X804bdb"], ["https://tec.openplanner.team/stops/LTHchiv1", "https://tec.openplanner.team/stops/LTHturo1"], ["https://tec.openplanner.team/stops/H1cu130a", "https://tec.openplanner.team/stops/H1fr115a"], ["https://tec.openplanner.team/stops/LBIrout1", "https://tec.openplanner.team/stops/LBIvill4"], ["https://tec.openplanner.team/stops/X607ada", "https://tec.openplanner.team/stops/X647aab"], ["https://tec.openplanner.team/stops/N230aca", "https://tec.openplanner.team/stops/N230acb"], ["https://tec.openplanner.team/stops/LMheg--1", "https://tec.openplanner.team/stops/Lprmana4"], ["https://tec.openplanner.team/stops/Cwgmutu2", "https://tec.openplanner.team/stops/Cwgtill1"], ["https://tec.openplanner.team/stops/LDmhave1", "https://tec.openplanner.team/stops/LHFhard1"], ["https://tec.openplanner.team/stops/N501kxb", "https://tec.openplanner.team/stops/N501lib"], ["https://tec.openplanner.team/stops/X872aga", "https://tec.openplanner.team/stops/X876adb"], ["https://tec.openplanner.team/stops/Bgzdpco2", "https://tec.openplanner.team/stops/Bgzdpos2"], ["https://tec.openplanner.team/stops/X943aab", "https://tec.openplanner.team/stops/X943aga"], ["https://tec.openplanner.team/stops/H1mm127a", "https://tec.openplanner.team/stops/H1mm127b"], ["https://tec.openplanner.team/stops/H2fa109a", "https://tec.openplanner.team/stops/H2fa109b"], ["https://tec.openplanner.team/stops/Cgxmorg2", "https://tec.openplanner.team/stops/Cgxprad3"], ["https://tec.openplanner.team/stops/Clgmaco1", "https://tec.openplanner.team/stops/Clgrsoc1"], ["https://tec.openplanner.team/stops/N521aga", "https://tec.openplanner.team/stops/N521aha"], ["https://tec.openplanner.team/stops/Lretill2", "https://tec.openplanner.team/stops/LSAtrih1"], ["https://tec.openplanner.team/stops/X615afb", "https://tec.openplanner.team/stops/X681aca"], ["https://tec.openplanner.team/stops/H2an103a", "https://tec.openplanner.team/stops/H2an103b"], ["https://tec.openplanner.team/stops/H4mo148b", "https://tec.openplanner.team/stops/H4mo161a"], ["https://tec.openplanner.team/stops/H4bw101b", "https://tec.openplanner.team/stops/H4bw102b"], ["https://tec.openplanner.team/stops/NC14aoe", "https://tec.openplanner.team/stops/NC14apb"], ["https://tec.openplanner.team/stops/N517add", "https://tec.openplanner.team/stops/NL74ahc"], ["https://tec.openplanner.team/stops/N141aha", "https://tec.openplanner.team/stops/N141aib"], ["https://tec.openplanner.team/stops/N513ala", "https://tec.openplanner.team/stops/N513apb"], ["https://tec.openplanner.team/stops/N537aia", "https://tec.openplanner.team/stops/N537ajb"], ["https://tec.openplanner.team/stops/LAYpl--1", "https://tec.openplanner.team/stops/LAYpl--3"], ["https://tec.openplanner.team/stops/N351aka", "https://tec.openplanner.team/stops/N351akb"], ["https://tec.openplanner.team/stops/N501fjd", "https://tec.openplanner.team/stops/N501mjc"], ["https://tec.openplanner.team/stops/Bsgeegl1", "https://tec.openplanner.team/stops/Bsgeegl3"], ["https://tec.openplanner.team/stops/N550aga", "https://tec.openplanner.team/stops/N550ajb"], ["https://tec.openplanner.team/stops/Llglamb2", "https://tec.openplanner.team/stops/Llgsorb1"], ["https://tec.openplanner.team/stops/X601ctb", "https://tec.openplanner.team/stops/X601dib"], ["https://tec.openplanner.team/stops/LlCland1", "https://tec.openplanner.team/stops/LlCland2"], ["https://tec.openplanner.team/stops/LSdencl*", "https://tec.openplanner.team/stops/LSdsa451"], ["https://tec.openplanner.team/stops/Louoran2", "https://tec.openplanner.team/stops/Lsebelv2"], ["https://tec.openplanner.team/stops/N201ama", "https://tec.openplanner.team/stops/N211anb"], ["https://tec.openplanner.team/stops/X542abb", "https://tec.openplanner.team/stops/X542aca"], ["https://tec.openplanner.team/stops/Ccychba2", "https://tec.openplanner.team/stops/Ccycont2"], ["https://tec.openplanner.team/stops/Llgcadr6", "https://tec.openplanner.team/stops/Llgmart2"], ["https://tec.openplanner.team/stops/H1br123b", "https://tec.openplanner.team/stops/H1vg358a"], ["https://tec.openplanner.team/stops/Bquepbr1", "https://tec.openplanner.team/stops/Bstetre1"], ["https://tec.openplanner.team/stops/Cvrhaie1", "https://tec.openplanner.team/stops/Cvrhaie2"], ["https://tec.openplanner.team/stops/N235afb", "https://tec.openplanner.team/stops/N241acb"], ["https://tec.openplanner.team/stops/X801ala", "https://tec.openplanner.team/stops/X801ama"], ["https://tec.openplanner.team/stops/Bquecge1", "https://tec.openplanner.team/stops/Bquesta1"], ["https://tec.openplanner.team/stops/H1bl106a", "https://tec.openplanner.team/stops/H1pd146a"], ["https://tec.openplanner.team/stops/LeUbell*", "https://tec.openplanner.team/stops/LeUwetz2"], ["https://tec.openplanner.team/stops/Bsdafra1", "https://tec.openplanner.team/stops/Csdfboi1"], ["https://tec.openplanner.team/stops/H1ht122a", "https://tec.openplanner.team/stops/H1ht135b"], ["https://tec.openplanner.team/stops/X759acb", "https://tec.openplanner.team/stops/X759afb"], ["https://tec.openplanner.team/stops/LMOchen1", "https://tec.openplanner.team/stops/LMOchpl1"], ["https://tec.openplanner.team/stops/X791aca", "https://tec.openplanner.team/stops/X791ada"], ["https://tec.openplanner.team/stops/H4mb204a", "https://tec.openplanner.team/stops/H4mb204b"], ["https://tec.openplanner.team/stops/N308aba", "https://tec.openplanner.team/stops/N308asa"], ["https://tec.openplanner.team/stops/NL78aba", "https://tec.openplanner.team/stops/NL78abb"], ["https://tec.openplanner.team/stops/LHehacc2", "https://tec.openplanner.team/stops/LHTmoul2"], ["https://tec.openplanner.team/stops/Cgrcent2", "https://tec.openplanner.team/stops/NC14ama"], ["https://tec.openplanner.team/stops/X897abb", "https://tec.openplanner.team/stops/X897aca"], ["https://tec.openplanner.team/stops/LaMschr1", "https://tec.openplanner.team/stops/LeIkirr1"], ["https://tec.openplanner.team/stops/H4ty332a", "https://tec.openplanner.team/stops/H4ty332b"], ["https://tec.openplanner.team/stops/Bllngar1", "https://tec.openplanner.team/stops/Bllngar8"], ["https://tec.openplanner.team/stops/H1em102a", "https://tec.openplanner.team/stops/H1em111d"], ["https://tec.openplanner.team/stops/LSythie2", "https://tec.openplanner.team/stops/LWZbeem1"], ["https://tec.openplanner.team/stops/N117aqa", "https://tec.openplanner.team/stops/N117aub"], ["https://tec.openplanner.team/stops/H5rx113a", "https://tec.openplanner.team/stops/H5rx140b"], ["https://tec.openplanner.team/stops/H2fa101b", "https://tec.openplanner.team/stops/H2fa102b"], ["https://tec.openplanner.team/stops/H1do109b", "https://tec.openplanner.team/stops/H1do129b"], ["https://tec.openplanner.team/stops/N231afa", "https://tec.openplanner.team/stops/N291aaa"], ["https://tec.openplanner.team/stops/X775acb", "https://tec.openplanner.team/stops/X775ada"], ["https://tec.openplanner.team/stops/NL57ama", "https://tec.openplanner.team/stops/NL57amb"], ["https://tec.openplanner.team/stops/LHYdogn1", "https://tec.openplanner.team/stops/LHYec--1"], ["https://tec.openplanner.team/stops/H1hn209a", "https://tec.openplanner.team/stops/H1hn210b"], ["https://tec.openplanner.team/stops/N515aua", "https://tec.openplanner.team/stops/N515aub"], ["https://tec.openplanner.team/stops/Cgzclef1", "https://tec.openplanner.team/stops/Cgzclef2"], ["https://tec.openplanner.team/stops/X985aba", "https://tec.openplanner.team/stops/X985ada"], ["https://tec.openplanner.team/stops/H5gr138b", "https://tec.openplanner.team/stops/H5qu144a"], ["https://tec.openplanner.team/stops/N536aca", "https://tec.openplanner.team/stops/N562bnb"], ["https://tec.openplanner.team/stops/H2hp124a", "https://tec.openplanner.team/stops/H2hp124c"], ["https://tec.openplanner.team/stops/Ctrleju2", "https://tec.openplanner.team/stops/H2tz120a"], ["https://tec.openplanner.team/stops/X766aeb", "https://tec.openplanner.team/stops/X791abb"], ["https://tec.openplanner.team/stops/H1sy141b", "https://tec.openplanner.team/stops/H1to151a"], ["https://tec.openplanner.team/stops/Creespi2", "https://tec.openplanner.team/stops/Creluth1"], ["https://tec.openplanner.team/stops/H4hg155a", "https://tec.openplanner.team/stops/H4hg155b"], ["https://tec.openplanner.team/stops/X801atb", "https://tec.openplanner.team/stops/X836aaa"], ["https://tec.openplanner.team/stops/LOurena1", "https://tec.openplanner.team/stops/X982agb"], ["https://tec.openplanner.team/stops/H1ro134b", "https://tec.openplanner.team/stops/H1ro137a"], ["https://tec.openplanner.team/stops/Cfaecwa2", "https://tec.openplanner.team/stops/Cfanvmo1"], ["https://tec.openplanner.team/stops/H1vb141b", "https://tec.openplanner.team/stops/H1wz169a"], ["https://tec.openplanner.team/stops/LaAgold2", "https://tec.openplanner.team/stops/LaAronh2"], ["https://tec.openplanner.team/stops/Clafaub2", "https://tec.openplanner.team/stops/NC23afb"], ["https://tec.openplanner.team/stops/LWEcarr1", "https://tec.openplanner.team/stops/LWElanc2"], ["https://tec.openplanner.team/stops/N536apb", "https://tec.openplanner.team/stops/N562aob"], ["https://tec.openplanner.team/stops/LSZptwa2", "https://tec.openplanner.team/stops/LWycabi2"], ["https://tec.openplanner.team/stops/Bgzdcen2", "https://tec.openplanner.team/stops/Bgzdgli2"], ["https://tec.openplanner.team/stops/Csyplac1", "https://tec.openplanner.team/stops/Csyplac2"], ["https://tec.openplanner.team/stops/X903aaa", "https://tec.openplanner.team/stops/X903aab"], ["https://tec.openplanner.team/stops/X604aib", "https://tec.openplanner.team/stops/X604aja"], ["https://tec.openplanner.team/stops/N132aaa", "https://tec.openplanner.team/stops/N132aba"], ["https://tec.openplanner.team/stops/Lhelait2", "https://tec.openplanner.team/stops/LHSlava2"], ["https://tec.openplanner.team/stops/Bolgfon1", "https://tec.openplanner.team/stops/Bolgfon2"], ["https://tec.openplanner.team/stops/Cjxthom1", "https://tec.openplanner.team/stops/Cmymoha1"], ["https://tec.openplanner.team/stops/LRachen*", "https://tec.openplanner.team/stops/LRachen1"], ["https://tec.openplanner.team/stops/Brsgecu2", "https://tec.openplanner.team/stops/Brsgm302"], ["https://tec.openplanner.team/stops/Bbghsta1", "https://tec.openplanner.team/stops/Bbghsta4"], ["https://tec.openplanner.team/stops/Csylaha1", "https://tec.openplanner.team/stops/Csylaha2"], ["https://tec.openplanner.team/stops/N123aab", "https://tec.openplanner.team/stops/N123aba"], ["https://tec.openplanner.team/stops/X902bga", "https://tec.openplanner.team/stops/X902bgb"], ["https://tec.openplanner.team/stops/Lagboil1", "https://tec.openplanner.team/stops/Lkiecol2"], ["https://tec.openplanner.team/stops/LtHfrie1", "https://tec.openplanner.team/stops/LtHfrie2"], ["https://tec.openplanner.team/stops/LJEloum1", "https://tec.openplanner.team/stops/LJEtige1"], ["https://tec.openplanner.team/stops/X901aaa", "https://tec.openplanner.team/stops/X901arb"], ["https://tec.openplanner.team/stops/X822aab", "https://tec.openplanner.team/stops/X822aoa"], ["https://tec.openplanner.team/stops/LOuilc-*", "https://tec.openplanner.team/stops/X982btb"], ["https://tec.openplanner.team/stops/Brsggar2", "https://tec.openplanner.team/stops/Bwatali1"], ["https://tec.openplanner.team/stops/LHUchpl2", "https://tec.openplanner.team/stops/LHUfonc2"], ["https://tec.openplanner.team/stops/LcRmich2", "https://tec.openplanner.team/stops/LnNzent2"], ["https://tec.openplanner.team/stops/X748aca", "https://tec.openplanner.team/stops/X748adb"], ["https://tec.openplanner.team/stops/Llglave1", "https://tec.openplanner.team/stops/Llgschm2"], ["https://tec.openplanner.team/stops/H4av103b", "https://tec.openplanner.team/stops/H4de113a"], ["https://tec.openplanner.team/stops/Llgbago2", "https://tec.openplanner.team/stops/Llgglai2"], ["https://tec.openplanner.team/stops/X740abd", "https://tec.openplanner.team/stops/X985aaa"], ["https://tec.openplanner.team/stops/H4ty314b", "https://tec.openplanner.team/stops/H4ty314e"], ["https://tec.openplanner.team/stops/N516aia", "https://tec.openplanner.team/stops/N516aja"], ["https://tec.openplanner.team/stops/H4hq129a", "https://tec.openplanner.team/stops/H4hq129b"], ["https://tec.openplanner.team/stops/N153acb", "https://tec.openplanner.team/stops/N153afa"], ["https://tec.openplanner.team/stops/N346ada", "https://tec.openplanner.team/stops/X346ala"], ["https://tec.openplanner.team/stops/H1wi147b", "https://tec.openplanner.team/stops/H1wi153b"], ["https://tec.openplanner.team/stops/X911ada", "https://tec.openplanner.team/stops/X911aea"], ["https://tec.openplanner.team/stops/H4gr111a", "https://tec.openplanner.team/stops/H4gr111b"], ["https://tec.openplanner.team/stops/N166aab", "https://tec.openplanner.team/stops/N166ada"], ["https://tec.openplanner.team/stops/LHdvill1", "https://tec.openplanner.team/stops/LLOcreu1"], ["https://tec.openplanner.team/stops/X801agb", "https://tec.openplanner.team/stops/X801ahb"], ["https://tec.openplanner.team/stops/N501iva", "https://tec.openplanner.team/stops/N501iwb"], ["https://tec.openplanner.team/stops/LBEfagn1", "https://tec.openplanner.team/stops/LBEpier1"], ["https://tec.openplanner.team/stops/Btilhti1", "https://tec.openplanner.team/stops/Bvlvmar2"], ["https://tec.openplanner.team/stops/X602aja", "https://tec.openplanner.team/stops/X602ajb"], ["https://tec.openplanner.team/stops/N894aca", "https://tec.openplanner.team/stops/X887aaa"], ["https://tec.openplanner.team/stops/X750asa", "https://tec.openplanner.team/stops/X792aba"], ["https://tec.openplanner.team/stops/X646aaa", "https://tec.openplanner.team/stops/X646aab"], ["https://tec.openplanner.team/stops/Baudhde2", "https://tec.openplanner.team/stops/Bwbfckr2"], ["https://tec.openplanner.team/stops/Cmaegli2", "https://tec.openplanner.team/stops/Cmarroy2"], ["https://tec.openplanner.team/stops/Lrogene*", "https://tec.openplanner.team/stops/Lvcchau2"], ["https://tec.openplanner.team/stops/X672aia", "https://tec.openplanner.team/stops/X672aja"], ["https://tec.openplanner.team/stops/H1hh110a", "https://tec.openplanner.team/stops/H1hh115b"], ["https://tec.openplanner.team/stops/LESmc--1", "https://tec.openplanner.team/stops/LESpont4"], ["https://tec.openplanner.team/stops/H1br122a", "https://tec.openplanner.team/stops/H1ev116a"], ["https://tec.openplanner.team/stops/LSOladr2", "https://tec.openplanner.team/stops/LSOvoie2"], ["https://tec.openplanner.team/stops/Loutroi1", "https://tec.openplanner.team/stops/Louvand1"], ["https://tec.openplanner.team/stops/LBhschu2", "https://tec.openplanner.team/stops/X793akb"], ["https://tec.openplanner.team/stops/Cciecol2", "https://tec.openplanner.team/stops/Ccinali2"], ["https://tec.openplanner.team/stops/H2ha137a", "https://tec.openplanner.team/stops/H2hg156a"], ["https://tec.openplanner.team/stops/Clafaub1", "https://tec.openplanner.team/stops/Claptcf1"], ["https://tec.openplanner.team/stops/H1sy137d", "https://tec.openplanner.team/stops/H1sy147a"], ["https://tec.openplanner.team/stops/LBTwauc1", "https://tec.openplanner.team/stops/LThpoli2"], ["https://tec.openplanner.team/stops/Cbctile", "https://tec.openplanner.team/stops/Clfbarr4"], ["https://tec.openplanner.team/stops/H1cr100a", "https://tec.openplanner.team/stops/H1fa120b"], ["https://tec.openplanner.team/stops/H1ch101a", "https://tec.openplanner.team/stops/H1ch104a"], ["https://tec.openplanner.team/stops/H4eg105a", "https://tec.openplanner.team/stops/H4pq120b"], ["https://tec.openplanner.team/stops/X371aaa", "https://tec.openplanner.team/stops/X371agb"], ["https://tec.openplanner.team/stops/X839abc", "https://tec.openplanner.team/stops/X839agb"], ["https://tec.openplanner.team/stops/N132aea", "https://tec.openplanner.team/stops/N132agb"], ["https://tec.openplanner.team/stops/LSNgerm2", "https://tec.openplanner.team/stops/LWechpl2"], ["https://tec.openplanner.team/stops/H1ch100b", "https://tec.openplanner.team/stops/H1ch105b"], ["https://tec.openplanner.team/stops/X901afb", "https://tec.openplanner.team/stops/X901bga"], ["https://tec.openplanner.team/stops/NC14acb", "https://tec.openplanner.team/stops/NC14ada"], ["https://tec.openplanner.team/stops/Laddelc1", "https://tec.openplanner.team/stops/Ladfoot2"], ["https://tec.openplanner.team/stops/Lceegth1", "https://tec.openplanner.team/stops/Lceprog2"], ["https://tec.openplanner.team/stops/Cgywaut2", "https://tec.openplanner.team/stops/CMsartc2"], ["https://tec.openplanner.team/stops/X739agb", "https://tec.openplanner.team/stops/X739aia"], ["https://tec.openplanner.team/stops/X901aab", "https://tec.openplanner.team/stops/X901bsb"], ["https://tec.openplanner.team/stops/LAtaube1", "https://tec.openplanner.team/stops/LPrcarr2"], ["https://tec.openplanner.team/stops/Bottpma1", "https://tec.openplanner.team/stops/Bottvtc1"], ["https://tec.openplanner.team/stops/LFlabba1", "https://tec.openplanner.team/stops/LFlabba2"], ["https://tec.openplanner.team/stops/N236aib", "https://tec.openplanner.team/stops/N236ajb"], ["https://tec.openplanner.team/stops/Ltiecch1", "https://tec.openplanner.team/stops/Ltihorl2"], ["https://tec.openplanner.team/stops/N230aib", "https://tec.openplanner.team/stops/N230ajb"], ["https://tec.openplanner.team/stops/Lmaelhe1", "https://tec.openplanner.team/stops/Lmapomm1"], ["https://tec.openplanner.team/stops/Bhalalb1", "https://tec.openplanner.team/stops/Bhalkrk1"], ["https://tec.openplanner.team/stops/Cmtgrim2", "https://tec.openplanner.team/stops/Cmtstan3"], ["https://tec.openplanner.team/stops/LJvmale1", "https://tec.openplanner.team/stops/X576aib"], ["https://tec.openplanner.team/stops/Bgoemgr1", "https://tec.openplanner.team/stops/Bgoemgr2"], ["https://tec.openplanner.team/stops/H1ha189a", "https://tec.openplanner.team/stops/H1ha189b"], ["https://tec.openplanner.team/stops/Lbrcygn1", "https://tec.openplanner.team/stops/Lbrddef4"], ["https://tec.openplanner.team/stops/LAmshel2", "https://tec.openplanner.team/stops/LOmmer-1"], ["https://tec.openplanner.team/stops/LNEtonv2", "https://tec.openplanner.team/stops/LVosoir2"], ["https://tec.openplanner.team/stops/LFreg--2", "https://tec.openplanner.team/stops/LRfbeau2"], ["https://tec.openplanner.team/stops/Cmerlme1", "https://tec.openplanner.team/stops/Cmesncv3"], ["https://tec.openplanner.team/stops/Ljuargi1", "https://tec.openplanner.team/stops/Ljuhava1"], ["https://tec.openplanner.team/stops/LHEelva2", "https://tec.openplanner.team/stops/LMhvina2"], ["https://tec.openplanner.team/stops/H1he107a", "https://tec.openplanner.team/stops/H1he111a"], ["https://tec.openplanner.team/stops/N167aga", "https://tec.openplanner.team/stops/N167agb"], ["https://tec.openplanner.team/stops/LBaeg--1", "https://tec.openplanner.team/stops/LNEcouc2"], ["https://tec.openplanner.team/stops/Cfrcomp1", "https://tec.openplanner.team/stops/Cfrempe1"], ["https://tec.openplanner.team/stops/N209aba", "https://tec.openplanner.team/stops/N209abb"], ["https://tec.openplanner.team/stops/Bitrnus1", "https://tec.openplanner.team/stops/Bitrnus2"], ["https://tec.openplanner.team/stops/H1mb137b", "https://tec.openplanner.team/stops/H1mb138a"], ["https://tec.openplanner.team/stops/Btubaig1", "https://tec.openplanner.team/stops/Btubbsc1"], ["https://tec.openplanner.team/stops/H4au100b", "https://tec.openplanner.team/stops/H4ea134b"], ["https://tec.openplanner.team/stops/Loualbe2", "https://tec.openplanner.team/stops/Louense1"], ["https://tec.openplanner.team/stops/Bhenpla1", "https://tec.openplanner.team/stops/Bhenron2"], ["https://tec.openplanner.team/stops/Brebras2", "https://tec.openplanner.team/stops/Brebvic2"], ["https://tec.openplanner.team/stops/LAWchau1", "https://tec.openplanner.team/stops/LAWlonc2"], ["https://tec.openplanner.team/stops/LHVeg--1", "https://tec.openplanner.team/stops/LHVetoi1"], ["https://tec.openplanner.team/stops/Ccychco2", "https://tec.openplanner.team/stops/Ccyga6"], ["https://tec.openplanner.team/stops/H5pe130b", "https://tec.openplanner.team/stops/H5pe145a"], ["https://tec.openplanner.team/stops/X725afc", "https://tec.openplanner.team/stops/X725bca"], ["https://tec.openplanner.team/stops/N207add", "https://tec.openplanner.team/stops/X210azb"], ["https://tec.openplanner.team/stops/N501jqa", "https://tec.openplanner.team/stops/X501esb"], ["https://tec.openplanner.team/stops/X754afa", "https://tec.openplanner.team/stops/X754amb"], ["https://tec.openplanner.team/stops/LPLaube2", "https://tec.openplanner.team/stops/LPLroth2"], ["https://tec.openplanner.team/stops/H2fa100b", "https://tec.openplanner.team/stops/H2fa107a"], ["https://tec.openplanner.team/stops/H5at104b", "https://tec.openplanner.team/stops/H5at131a"], ["https://tec.openplanner.team/stops/Bmlncle2", "https://tec.openplanner.team/stops/Bmlnsmv2"], ["https://tec.openplanner.team/stops/LElgerd4", "https://tec.openplanner.team/stops/LElgerd6"], ["https://tec.openplanner.team/stops/H4ma202b", "https://tec.openplanner.team/stops/H4oq226a"], ["https://tec.openplanner.team/stops/Balswwe1", "https://tec.openplanner.team/stops/Balswwe2"], ["https://tec.openplanner.team/stops/H1eu101a", "https://tec.openplanner.team/stops/H1lb152a"], ["https://tec.openplanner.team/stops/Lcemc--2", "https://tec.openplanner.team/stops/Lceviei1"], ["https://tec.openplanner.team/stops/Bchadpt1", "https://tec.openplanner.team/stops/Bwlhpma2"], ["https://tec.openplanner.team/stops/N543aoa", "https://tec.openplanner.team/stops/N543awh"], ["https://tec.openplanner.team/stops/H4mo160a", "https://tec.openplanner.team/stops/H4mo172a"], ["https://tec.openplanner.team/stops/N501eea", "https://tec.openplanner.team/stops/N501kha"], ["https://tec.openplanner.team/stops/Cmllait2", "https://tec.openplanner.team/stops/Cmlours2"], ["https://tec.openplanner.team/stops/Candett2", "https://tec.openplanner.team/stops/Clbchar1"], ["https://tec.openplanner.team/stops/Lhrbass1", "https://tec.openplanner.team/stops/Lhrchar3"], ["https://tec.openplanner.team/stops/N232aea", "https://tec.openplanner.team/stops/N261afa"], ["https://tec.openplanner.team/stops/Bmangar1", "https://tec.openplanner.team/stops/H2mg137a"], ["https://tec.openplanner.team/stops/LCsraws2", "https://tec.openplanner.team/stops/LVLzoni2"], ["https://tec.openplanner.team/stops/X901bmb", "https://tec.openplanner.team/stops/X922aaa"], ["https://tec.openplanner.team/stops/X659ama", "https://tec.openplanner.team/stops/X742aab"], ["https://tec.openplanner.team/stops/X902bbb", "https://tec.openplanner.team/stops/X999aqa"], ["https://tec.openplanner.team/stops/LSlbail2", "https://tec.openplanner.team/stops/X919aoa"], ["https://tec.openplanner.team/stops/Cmgcabi1", "https://tec.openplanner.team/stops/Cmggthi2"], ["https://tec.openplanner.team/stops/H5is169a", "https://tec.openplanner.team/stops/H5is171a"], ["https://tec.openplanner.team/stops/X695aaa", "https://tec.openplanner.team/stops/X695aab"], ["https://tec.openplanner.team/stops/Cbmzoni1", "https://tec.openplanner.team/stops/Cbmzoni2"], ["https://tec.openplanner.team/stops/Cgoathe2", "https://tec.openplanner.team/stops/Cgofabr2"], ["https://tec.openplanner.team/stops/LeUvoss1", "https://tec.openplanner.team/stops/LkTraer1"], ["https://tec.openplanner.team/stops/Bptrman2", "https://tec.openplanner.team/stops/Bptrmar1"], ["https://tec.openplanner.team/stops/X942aaa", "https://tec.openplanner.team/stops/X942afa"], ["https://tec.openplanner.team/stops/H1bd101b", "https://tec.openplanner.team/stops/H1bd103b"], ["https://tec.openplanner.team/stops/N532aaa", "https://tec.openplanner.team/stops/N532ahb"], ["https://tec.openplanner.team/stops/H4hs137b", "https://tec.openplanner.team/stops/H4mb139a"], ["https://tec.openplanner.team/stops/LHNgend1", "https://tec.openplanner.team/stops/LHNtill1"], ["https://tec.openplanner.team/stops/X658aca", "https://tec.openplanner.team/stops/X658afb"], ["https://tec.openplanner.team/stops/X344aea", "https://tec.openplanner.team/stops/X363aaa"], ["https://tec.openplanner.team/stops/Bgoevli2", "https://tec.openplanner.team/stops/Bgoewat1"], ["https://tec.openplanner.team/stops/N150aja", "https://tec.openplanner.team/stops/N150ajb"], ["https://tec.openplanner.team/stops/LRRecdu2", "https://tec.openplanner.team/stops/LRReg--2"], ["https://tec.openplanner.team/stops/Lfhborg1", "https://tec.openplanner.team/stops/Lfhmalv1"], ["https://tec.openplanner.team/stops/X714acb", "https://tec.openplanner.team/stops/X714adb"], ["https://tec.openplanner.team/stops/N353afa", "https://tec.openplanner.team/stops/N353afc"], ["https://tec.openplanner.team/stops/N501gaa", "https://tec.openplanner.team/stops/N501hdb"], ["https://tec.openplanner.team/stops/H1hm174a", "https://tec.openplanner.team/stops/H1hm176a"], ["https://tec.openplanner.team/stops/N501aay", "https://tec.openplanner.team/stops/N501aua"], ["https://tec.openplanner.team/stops/X910aca", "https://tec.openplanner.team/stops/X910adb"], ["https://tec.openplanner.team/stops/Brsggol2", "https://tec.openplanner.team/stops/Brsgpbo1"], ["https://tec.openplanner.team/stops/LCRecmo1", "https://tec.openplanner.team/stops/LFmpoin1"], ["https://tec.openplanner.team/stops/N212aib", "https://tec.openplanner.team/stops/N212ajb"], ["https://tec.openplanner.team/stops/Cmtchet1", "https://tec.openplanner.team/stops/Cmtchet2"], ["https://tec.openplanner.team/stops/N232ada", "https://tec.openplanner.team/stops/N261aca"], ["https://tec.openplanner.team/stops/Bblmcel2", "https://tec.openplanner.team/stops/Bblmpro2"], ["https://tec.openplanner.team/stops/Cchblne1", "https://tec.openplanner.team/stops/Cchtour2"], ["https://tec.openplanner.team/stops/Bjanegl4", "https://tec.openplanner.team/stops/NR30abb"], ["https://tec.openplanner.team/stops/N501ljb", "https://tec.openplanner.team/stops/N501lna"], ["https://tec.openplanner.team/stops/N201aia", "https://tec.openplanner.team/stops/N201ala"], ["https://tec.openplanner.team/stops/N501joa", "https://tec.openplanner.team/stops/N521ada"], ["https://tec.openplanner.team/stops/X619aaa", "https://tec.openplanner.team/stops/X619abc"], ["https://tec.openplanner.team/stops/Bjodced1", "https://tec.openplanner.team/stops/Bjodsme1"], ["https://tec.openplanner.team/stops/X733aab", "https://tec.openplanner.team/stops/X775ama"], ["https://tec.openplanner.team/stops/H4pq113a", "https://tec.openplanner.team/stops/H4pq116b"], ["https://tec.openplanner.team/stops/LkAkirc1", "https://tec.openplanner.team/stops/LkAkirc2"], ["https://tec.openplanner.team/stops/N540adb", "https://tec.openplanner.team/stops/N540agb"], ["https://tec.openplanner.team/stops/Llgbaro1", "https://tec.openplanner.team/stops/Llgbaro4"], ["https://tec.openplanner.team/stops/N501fqb", "https://tec.openplanner.team/stops/N501fqd"], ["https://tec.openplanner.team/stops/X626agb", "https://tec.openplanner.team/stops/X626ajb"], ["https://tec.openplanner.team/stops/H1al105a", "https://tec.openplanner.team/stops/H1al107b"], ["https://tec.openplanner.team/stops/N506ala", "https://tec.openplanner.team/stops/N506ara"], ["https://tec.openplanner.team/stops/X804btb", "https://tec.openplanner.team/stops/X804cba"], ["https://tec.openplanner.team/stops/Bcrbgro1", "https://tec.openplanner.team/stops/Bnil3fo2"], ["https://tec.openplanner.team/stops/LoDscha1", "https://tec.openplanner.team/stops/LoDulf-1"], ["https://tec.openplanner.team/stops/H2hg145b", "https://tec.openplanner.team/stops/H2hg157b"], ["https://tec.openplanner.team/stops/Bbougar1", "https://tec.openplanner.team/stops/Bcerpco2"], ["https://tec.openplanner.team/stops/N120aib", "https://tec.openplanner.team/stops/N244aqa"], ["https://tec.openplanner.team/stops/X741aaa", "https://tec.openplanner.team/stops/X742aab"], ["https://tec.openplanner.team/stops/H1ms281a", "https://tec.openplanner.team/stops/H1ms281b"], ["https://tec.openplanner.team/stops/N573aqb", "https://tec.openplanner.team/stops/N573ara"], ["https://tec.openplanner.team/stops/Cglbras1", "https://tec.openplanner.team/stops/Cglbras2"], ["https://tec.openplanner.team/stops/LMfange1", "https://tec.openplanner.team/stops/LMfeg--1"], ["https://tec.openplanner.team/stops/X747aac", "https://tec.openplanner.team/stops/X747abb"], ["https://tec.openplanner.team/stops/Lretill1", "https://tec.openplanner.team/stops/Lretill2"], ["https://tec.openplanner.team/stops/H4ty334a", "https://tec.openplanner.team/stops/H4ty336b"], ["https://tec.openplanner.team/stops/LiVkreu4", "https://tec.openplanner.team/stops/LsHlenz1"], ["https://tec.openplanner.team/stops/Clomari2", "https://tec.openplanner.team/stops/CMmari2"], ["https://tec.openplanner.team/stops/Bsaubbo2", "https://tec.openplanner.team/stops/Bsaucre2"], ["https://tec.openplanner.team/stops/X750afb", "https://tec.openplanner.team/stops/X750ahb"], ["https://tec.openplanner.team/stops/Cgzgrru2", "https://tec.openplanner.team/stops/Cgzm1482"], ["https://tec.openplanner.team/stops/X820aab", "https://tec.openplanner.team/stops/X820afb"], ["https://tec.openplanner.team/stops/X840acb", "https://tec.openplanner.team/stops/X840acd"], ["https://tec.openplanner.team/stops/Croheig2", "https://tec.openplanner.team/stops/Crolach2"], ["https://tec.openplanner.team/stops/Cnaferr1", "https://tec.openplanner.team/stops/Cnaferr2"], ["https://tec.openplanner.team/stops/LScread2", "https://tec.openplanner.team/stops/LVTtrou2"], ["https://tec.openplanner.team/stops/X912aaa", "https://tec.openplanner.team/stops/X912aea"], ["https://tec.openplanner.team/stops/LMYroin1", "https://tec.openplanner.team/stops/X597alb"], ["https://tec.openplanner.team/stops/LBEfagn2", "https://tec.openplanner.team/stops/LBEpier2"], ["https://tec.openplanner.team/stops/X948ala", "https://tec.openplanner.team/stops/X948ama"], ["https://tec.openplanner.team/stops/Crolach2", "https://tec.openplanner.team/stops/Cropcan1"], ["https://tec.openplanner.team/stops/N988aba", "https://tec.openplanner.team/stops/N988abb"], ["https://tec.openplanner.team/stops/X725ana", "https://tec.openplanner.team/stops/X725aqb"], ["https://tec.openplanner.team/stops/Lsnecco3", "https://tec.openplanner.team/stops/Lsnferr1"], ["https://tec.openplanner.team/stops/H4ag106b", "https://tec.openplanner.team/stops/H4pe128a"], ["https://tec.openplanner.team/stops/X608ata", "https://tec.openplanner.team/stops/X608atb"], ["https://tec.openplanner.team/stops/LAWlonc1", "https://tec.openplanner.team/stops/LAWxhen2"], ["https://tec.openplanner.team/stops/X721aca", "https://tec.openplanner.team/stops/X721aia"], ["https://tec.openplanner.team/stops/H4ma418b", "https://tec.openplanner.team/stops/H4oq409a"], ["https://tec.openplanner.team/stops/Cdostco1", "https://tec.openplanner.team/stops/Cstbasc1"], ["https://tec.openplanner.team/stops/X903aea", "https://tec.openplanner.team/stops/X903afa"], ["https://tec.openplanner.team/stops/H1mk113a", "https://tec.openplanner.team/stops/H1mk114a"], ["https://tec.openplanner.team/stops/X979afa", "https://tec.openplanner.team/stops/X979aga"], ["https://tec.openplanner.team/stops/N513aua", "https://tec.openplanner.team/stops/N513aub"], ["https://tec.openplanner.team/stops/Bndbdra2", "https://tec.openplanner.team/stops/Btlgbro2"], ["https://tec.openplanner.team/stops/Blimegl2", "https://tec.openplanner.team/stops/Bottgar5"], ["https://tec.openplanner.team/stops/Lligare*", "https://tec.openplanner.team/stops/Lligare1"], ["https://tec.openplanner.team/stops/Ctuyser2", "https://tec.openplanner.team/stops/NC28aha"], ["https://tec.openplanner.team/stops/Btlgmee1", "https://tec.openplanner.team/stops/Btlgmee2"], ["https://tec.openplanner.team/stops/H3br107b", "https://tec.openplanner.team/stops/H3br122b"], ["https://tec.openplanner.team/stops/LLirout2", "https://tec.openplanner.team/stops/LRepous2"], ["https://tec.openplanner.team/stops/Bottcli1", "https://tec.openplanner.team/stops/Bottcli2"], ["https://tec.openplanner.team/stops/X757ajb", "https://tec.openplanner.team/stops/X757ama"], ["https://tec.openplanner.team/stops/H4bq100b", "https://tec.openplanner.team/stops/H4bq100c"], ["https://tec.openplanner.team/stops/Cgycime3", "https://tec.openplanner.team/stops/Cracave1"], ["https://tec.openplanner.team/stops/LWneg--1", "https://tec.openplanner.team/stops/X542afa"], ["https://tec.openplanner.team/stops/Lceavia2", "https://tec.openplanner.team/stops/Lcebarr2"], ["https://tec.openplanner.team/stops/H4ho119a", "https://tec.openplanner.team/stops/H4rx142a"], ["https://tec.openplanner.team/stops/Cvlcen2", "https://tec.openplanner.team/stops/Cvlpeau2"], ["https://tec.openplanner.team/stops/Lghfors2", "https://tec.openplanner.team/stops/Lmlbaro2"], ["https://tec.openplanner.team/stops/H1po137a", "https://tec.openplanner.team/stops/H5gr137a"], ["https://tec.openplanner.team/stops/N522ama", "https://tec.openplanner.team/stops/N522apb"], ["https://tec.openplanner.team/stops/LOMbrou1", "https://tec.openplanner.team/stops/LOMtomb1"], ["https://tec.openplanner.team/stops/NL75aaa", "https://tec.openplanner.team/stops/NL75acb"], ["https://tec.openplanner.team/stops/LWbregn1", "https://tec.openplanner.team/stops/LWbregn2"], ["https://tec.openplanner.team/stops/Clrpast1", "https://tec.openplanner.team/stops/Clrrhau2"], ["https://tec.openplanner.team/stops/H4ce104b", "https://tec.openplanner.team/stops/H4ce106b"], ["https://tec.openplanner.team/stops/Lfljupi1", "https://tec.openplanner.team/stops/Lfljupi2"], ["https://tec.openplanner.team/stops/H1ht122b", "https://tec.openplanner.team/stops/H1ht128a"], ["https://tec.openplanner.team/stops/LSpbawe2", "https://tec.openplanner.team/stops/LSpxhig1"], ["https://tec.openplanner.team/stops/LLelans1", "https://tec.openplanner.team/stops/X576aea"], ["https://tec.openplanner.team/stops/LbEkirc*", "https://tec.openplanner.team/stops/LbThau12"], ["https://tec.openplanner.team/stops/H1gi119c", "https://tec.openplanner.team/stops/H1hl122b"], ["https://tec.openplanner.team/stops/H3th133a", "https://tec.openplanner.team/stops/H3th135e"], ["https://tec.openplanner.team/stops/LCOcarr2", "https://tec.openplanner.team/stops/LCOeg--1"], ["https://tec.openplanner.team/stops/N343aja", "https://tec.openplanner.team/stops/X345aca"], ["https://tec.openplanner.team/stops/H1em104a", "https://tec.openplanner.team/stops/H1em107a"], ["https://tec.openplanner.team/stops/H2go117b", "https://tec.openplanner.team/stops/H2gy101a"], ["https://tec.openplanner.team/stops/LaMmark1", "https://tec.openplanner.team/stops/LaMmark2"], ["https://tec.openplanner.team/stops/Bhevjac1", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://tec.openplanner.team/stops/Cobobjo1", "https://tec.openplanner.team/stops/Cpcgout1"], ["https://tec.openplanner.team/stops/LCSpoud2", "https://tec.openplanner.team/stops/LENengi2"], ["https://tec.openplanner.team/stops/N511ajb", "https://tec.openplanner.team/stops/N511aka"], ["https://tec.openplanner.team/stops/H2ll183a", "https://tec.openplanner.team/stops/H2ll260a"], ["https://tec.openplanner.team/stops/H1qu102a", "https://tec.openplanner.team/stops/H1qu116a"], ["https://tec.openplanner.team/stops/N206ada", "https://tec.openplanner.team/stops/N208aaa"], ["https://tec.openplanner.team/stops/H4ta125a", "https://tec.openplanner.team/stops/H4ta133a"], ["https://tec.openplanner.team/stops/LFIinse1", "https://tec.openplanner.team/stops/LMYlieg1"], ["https://tec.openplanner.team/stops/N152abb", "https://tec.openplanner.team/stops/N152abc"], ["https://tec.openplanner.team/stops/Bvirbru2", "https://tec.openplanner.team/stops/Bvirmbr2"], ["https://tec.openplanner.team/stops/X397aba", "https://tec.openplanner.team/stops/X397abb"], ["https://tec.openplanner.team/stops/LCxreno1", "https://tec.openplanner.team/stops/LCxreno2"], ["https://tec.openplanner.team/stops/LAnvien1", "https://tec.openplanner.team/stops/LVnroch2"], ["https://tec.openplanner.team/stops/X802aba", "https://tec.openplanner.team/stops/X802abb"], ["https://tec.openplanner.team/stops/H4wi162a", "https://tec.openplanner.team/stops/H4wi162b"], ["https://tec.openplanner.team/stops/Cmacreu1", "https://tec.openplanner.team/stops/Cmacreu2"], ["https://tec.openplanner.team/stops/Bmanfbg1", "https://tec.openplanner.team/stops/H2mg138a"], ["https://tec.openplanner.team/stops/X808aga", "https://tec.openplanner.team/stops/X834aca"], ["https://tec.openplanner.team/stops/Barchez1", "https://tec.openplanner.team/stops/Bnettou1"], ["https://tec.openplanner.team/stops/Bcrbhir1", "https://tec.openplanner.team/stops/Bcrbros1"], ["https://tec.openplanner.team/stops/H1le119b", "https://tec.openplanner.team/stops/H1le125b"], ["https://tec.openplanner.team/stops/H3th134b", "https://tec.openplanner.team/stops/H3th135c"], ["https://tec.openplanner.team/stops/NL72aaa", "https://tec.openplanner.team/stops/NL72aba"], ["https://tec.openplanner.team/stops/LwArabo1", "https://tec.openplanner.team/stops/LwArabo2"], ["https://tec.openplanner.team/stops/N214afb", "https://tec.openplanner.team/stops/N226aaa"], ["https://tec.openplanner.team/stops/H2pe155a", "https://tec.openplanner.team/stops/H2pe155b"], ["https://tec.openplanner.team/stops/X721aja", "https://tec.openplanner.team/stops/X721ajb"], ["https://tec.openplanner.team/stops/Ladstat2", "https://tec.openplanner.team/stops/LThhoul1"], ["https://tec.openplanner.team/stops/X740aea", "https://tec.openplanner.team/stops/X757alb"], ["https://tec.openplanner.team/stops/Cmlecha1", "https://tec.openplanner.team/stops/Cmlecha2"], ["https://tec.openplanner.team/stops/LRCviad1", "https://tec.openplanner.team/stops/LTPhenr2"], ["https://tec.openplanner.team/stops/LlNbene1", "https://tec.openplanner.team/stops/LlNm%C3%BChl1"], ["https://tec.openplanner.team/stops/H4mo157b", "https://tec.openplanner.team/stops/H4mo170a"], ["https://tec.openplanner.team/stops/H1bl101a", "https://tec.openplanner.team/stops/H1pd143a"], ["https://tec.openplanner.team/stops/LAvrout1", "https://tec.openplanner.team/stops/LCIneuv1"], ["https://tec.openplanner.team/stops/LBLghuy2", "https://tec.openplanner.team/stops/LBLplac1"], ["https://tec.openplanner.team/stops/Bitrcro3", "https://tec.openplanner.team/stops/Bitrh%C3%BBl1"], ["https://tec.openplanner.team/stops/N351atc", "https://tec.openplanner.team/stops/N390amb"], ["https://tec.openplanner.team/stops/LmNkrew1", "https://tec.openplanner.team/stops/LsC216-2"], ["https://tec.openplanner.team/stops/X917aab", "https://tec.openplanner.team/stops/X919anb"], ["https://tec.openplanner.team/stops/N339aaa", "https://tec.openplanner.team/stops/N339aab"], ["https://tec.openplanner.team/stops/Ladlaur2", "https://tec.openplanner.team/stops/Ladwooz2"], ["https://tec.openplanner.team/stops/N509aaa", "https://tec.openplanner.team/stops/N509aea"], ["https://tec.openplanner.team/stops/X342ahb", "https://tec.openplanner.team/stops/X354aba"], ["https://tec.openplanner.team/stops/H2mg135a", "https://tec.openplanner.team/stops/H2mg144b"], ["https://tec.openplanner.team/stops/Bbautri1", "https://tec.openplanner.team/stops/Bbautri2"], ["https://tec.openplanner.team/stops/X989aba", "https://tec.openplanner.team/stops/X989acb"], ["https://tec.openplanner.team/stops/Brixaug1", "https://tec.openplanner.team/stops/Brixwav3"], ["https://tec.openplanner.team/stops/X758aab", "https://tec.openplanner.team/stops/X840aea"], ["https://tec.openplanner.team/stops/H2ch104a", "https://tec.openplanner.team/stops/H2ch112a"], ["https://tec.openplanner.team/stops/LXhnouv1", "https://tec.openplanner.team/stops/LXhnouv2"], ["https://tec.openplanner.team/stops/H1hg180b", "https://tec.openplanner.team/stops/H1qy131a"], ["https://tec.openplanner.team/stops/LVMcent1", "https://tec.openplanner.team/stops/LVMchpl2"], ["https://tec.openplanner.team/stops/Bwatali1", "https://tec.openplanner.team/stops/Bwattri1"], ["https://tec.openplanner.team/stops/X733ajb", "https://tec.openplanner.team/stops/X733aka"], ["https://tec.openplanner.team/stops/Cfvplac1", "https://tec.openplanner.team/stops/Cfvplac2"], ["https://tec.openplanner.team/stops/LCPhall2", "https://tec.openplanner.team/stops/LMvgare2"], ["https://tec.openplanner.team/stops/X757aea", "https://tec.openplanner.team/stops/X757aeb"], ["https://tec.openplanner.team/stops/LTPcarr1", "https://tec.openplanner.team/stops/LTPnoup1"], ["https://tec.openplanner.team/stops/H4ty357a", "https://tec.openplanner.team/stops/H4ty406a"], ["https://tec.openplanner.team/stops/Lhrchar1", "https://tec.openplanner.team/stops/Lhrpaep*"], ["https://tec.openplanner.team/stops/Cchoues1", "https://tec.openplanner.team/stops/Cchoues2"], ["https://tec.openplanner.team/stops/N351agb", "https://tec.openplanner.team/stops/N351avb"], ["https://tec.openplanner.team/stops/X657aia", "https://tec.openplanner.team/stops/X670aha"], ["https://tec.openplanner.team/stops/H4ef165c", "https://tec.openplanner.team/stops/H4hq130b"], ["https://tec.openplanner.team/stops/N234aeb", "https://tec.openplanner.team/stops/N550ada"], ["https://tec.openplanner.team/stops/X394afa", "https://tec.openplanner.team/stops/X396aea"], ["https://tec.openplanner.team/stops/X826adb", "https://tec.openplanner.team/stops/X826aea"], ["https://tec.openplanner.team/stops/N127aba", "https://tec.openplanner.team/stops/N134aea"], ["https://tec.openplanner.team/stops/LTNcarr1", "https://tec.openplanner.team/stops/LTNeau-2"], ["https://tec.openplanner.team/stops/Bgligra2", "https://tec.openplanner.team/stops/Btlbegl2"], ["https://tec.openplanner.team/stops/N232ava", "https://tec.openplanner.team/stops/N232ayb"], ["https://tec.openplanner.team/stops/LTAairi2", "https://tec.openplanner.team/stops/LTAbran1"], ["https://tec.openplanner.team/stops/Llgavoc1", "https://tec.openplanner.team/stops/Llgavoc2"], ["https://tec.openplanner.team/stops/LBmbara1", "https://tec.openplanner.team/stops/LMRmont2"], ["https://tec.openplanner.team/stops/X902afa", "https://tec.openplanner.team/stops/X902afd"], ["https://tec.openplanner.team/stops/Cgzchen1", "https://tec.openplanner.team/stops/Cgzmira3"], ["https://tec.openplanner.team/stops/LNAbass1", "https://tec.openplanner.team/stops/LNAbouh1"], ["https://tec.openplanner.team/stops/LOUbleu1", "https://tec.openplanner.team/stops/LOUpres1"], ["https://tec.openplanner.team/stops/H4co134a", "https://tec.openplanner.team/stops/H4co158a"], ["https://tec.openplanner.team/stops/N585aha", "https://tec.openplanner.team/stops/N585aka"], ["https://tec.openplanner.team/stops/LPAbrun1", "https://tec.openplanner.team/stops/LPAvill1"], ["https://tec.openplanner.team/stops/N538amc", "https://tec.openplanner.team/stops/N538arb"], ["https://tec.openplanner.team/stops/H4er122b", "https://tec.openplanner.team/stops/H4er124a"], ["https://tec.openplanner.team/stops/LCFchir2", "https://tec.openplanner.team/stops/LHaxhig1"], ["https://tec.openplanner.team/stops/H2hp114a", "https://tec.openplanner.team/stops/H2hp262a"], ["https://tec.openplanner.team/stops/X663aac", "https://tec.openplanner.team/stops/X664aoa"], ["https://tec.openplanner.team/stops/Llabriq1", "https://tec.openplanner.team/stops/Llabriq2"], ["https://tec.openplanner.team/stops/H4he102a", "https://tec.openplanner.team/stops/H4he105a"], ["https://tec.openplanner.team/stops/H1si169a", "https://tec.openplanner.team/stops/H1vt196b"], ["https://tec.openplanner.team/stops/X361aba", "https://tec.openplanner.team/stops/X371aib"], ["https://tec.openplanner.team/stops/X633aja", "https://tec.openplanner.team/stops/X633amb"], ["https://tec.openplanner.team/stops/Llgatla2", "https://tec.openplanner.team/stops/Llgbaya2"], ["https://tec.openplanner.team/stops/Llgbaya1", "https://tec.openplanner.team/stops/Llgpbay1"], ["https://tec.openplanner.team/stops/Croplom5", "https://tec.openplanner.team/stops/Crorpai1"], ["https://tec.openplanner.team/stops/X741ajb", "https://tec.openplanner.team/stops/X741aka"], ["https://tec.openplanner.team/stops/H1fr112a", "https://tec.openplanner.team/stops/H1no143a"], ["https://tec.openplanner.team/stops/Cjufrat1", "https://tec.openplanner.team/stops/Clogfay2"], ["https://tec.openplanner.team/stops/LFsec--1", "https://tec.openplanner.team/stops/LHSlava2"], ["https://tec.openplanner.team/stops/LMalune3", "https://tec.openplanner.team/stops/LMastat3"], ["https://tec.openplanner.team/stops/LeUgulc1", "https://tec.openplanner.team/stops/LeUwetz1"], ["https://tec.openplanner.team/stops/LNEcouc1", "https://tec.openplanner.team/stops/LNEvand1"], ["https://tec.openplanner.team/stops/H2go115b", "https://tec.openplanner.team/stops/H2go116a"], ["https://tec.openplanner.team/stops/N505anb", "https://tec.openplanner.team/stops/N512adb"], ["https://tec.openplanner.team/stops/Lgrcrac2", "https://tec.openplanner.team/stops/Lgrmagd2"], ["https://tec.openplanner.team/stops/Canresi1", "https://tec.openplanner.team/stops/Canrobe1"], ["https://tec.openplanner.team/stops/Crodebr1", "https://tec.openplanner.team/stops/Croegli1"], ["https://tec.openplanner.team/stops/N501ejc", "https://tec.openplanner.team/stops/N501ejd"], ["https://tec.openplanner.team/stops/X945aea", "https://tec.openplanner.team/stops/X945aeb"], ["https://tec.openplanner.team/stops/H1mm132a", "https://tec.openplanner.team/stops/H1mm132b"], ["https://tec.openplanner.team/stops/H1gh171a", "https://tec.openplanner.team/stops/H1hh117b"], ["https://tec.openplanner.team/stops/X666aab", "https://tec.openplanner.team/stops/X666abb"], ["https://tec.openplanner.team/stops/LSCeg--1", "https://tec.openplanner.team/stops/LVEtomb2"], ["https://tec.openplanner.team/stops/Balsnie1", "https://tec.openplanner.team/stops/Brsgfon1"], ["https://tec.openplanner.team/stops/H1hw121a", "https://tec.openplanner.team/stops/H1hw124b"], ["https://tec.openplanner.team/stops/Lagpass2", "https://tec.openplanner.team/stops/Lempass1"], ["https://tec.openplanner.team/stops/X633aia", "https://tec.openplanner.team/stops/X653adb"], ["https://tec.openplanner.team/stops/Brebcha1", "https://tec.openplanner.team/stops/Brebhos1"], ["https://tec.openplanner.team/stops/Cmobeau1", "https://tec.openplanner.team/stops/Cmomalg1"], ["https://tec.openplanner.team/stops/Lvearle1", "https://tec.openplanner.team/stops/Lvearle4"], ["https://tec.openplanner.team/stops/X938aaa", "https://tec.openplanner.team/stops/X938abb"], ["https://tec.openplanner.team/stops/N117aud", "https://tec.openplanner.team/stops/N117azb"], ["https://tec.openplanner.team/stops/N231afa", "https://tec.openplanner.team/stops/N231aha"], ["https://tec.openplanner.team/stops/Cmmpjou1", "https://tec.openplanner.team/stops/Cmmpjou3"], ["https://tec.openplanner.team/stops/H4be106a", "https://tec.openplanner.team/stops/H4be108a"], ["https://tec.openplanner.team/stops/X641avb", "https://tec.openplanner.team/stops/X641awb"], ["https://tec.openplanner.team/stops/N120abd", "https://tec.openplanner.team/stops/N120acb"], ["https://tec.openplanner.team/stops/H2mg149a", "https://tec.openplanner.team/stops/H2mg151a"], ["https://tec.openplanner.team/stops/N353aeb", "https://tec.openplanner.team/stops/N353afc"], ["https://tec.openplanner.team/stops/Bgliegl1", "https://tec.openplanner.team/stops/Bgligli2"], ["https://tec.openplanner.team/stops/Bbchsac1", "https://tec.openplanner.team/stops/Bwaucig2"], ["https://tec.openplanner.team/stops/LOdkeme1", "https://tec.openplanner.team/stops/LOdkeme2"], ["https://tec.openplanner.team/stops/N521agb", "https://tec.openplanner.team/stops/N521ahb"], ["https://tec.openplanner.team/stops/X721amb", "https://tec.openplanner.team/stops/X721aoa"], ["https://tec.openplanner.team/stops/N580aaa", "https://tec.openplanner.team/stops/N580aab"], ["https://tec.openplanner.team/stops/Blasren1", "https://tec.openplanner.team/stops/Blasren2"], ["https://tec.openplanner.team/stops/X982aya", "https://tec.openplanner.team/stops/X982bba"], ["https://tec.openplanner.team/stops/Lmlboul2", "https://tec.openplanner.team/stops/Lmlprie1"], ["https://tec.openplanner.team/stops/LSomonu1", "https://tec.openplanner.team/stops/LSomonu2"], ["https://tec.openplanner.team/stops/H4ty336a", "https://tec.openplanner.team/stops/H4ty343b"], ["https://tec.openplanner.team/stops/X813acb", "https://tec.openplanner.team/stops/X813adb"], ["https://tec.openplanner.team/stops/N501bna", "https://tec.openplanner.team/stops/N501bub"], ["https://tec.openplanner.team/stops/X614bbb", "https://tec.openplanner.team/stops/X614bca"], ["https://tec.openplanner.team/stops/Bptblma1", "https://tec.openplanner.team/stops/Bptblma2"], ["https://tec.openplanner.team/stops/X879ama", "https://tec.openplanner.team/stops/X879aoa"], ["https://tec.openplanner.team/stops/X901aha", "https://tec.openplanner.team/stops/X901bpa"], ["https://tec.openplanner.team/stops/Lthfren1", "https://tec.openplanner.team/stops/LWahott1"], ["https://tec.openplanner.team/stops/H4ba103a", "https://tec.openplanner.team/stops/H4ba103b"], ["https://tec.openplanner.team/stops/Csobail2", "https://tec.openplanner.team/stops/Csoplac2"], ["https://tec.openplanner.team/stops/N106adb", "https://tec.openplanner.team/stops/N106arb"], ["https://tec.openplanner.team/stops/Csdjeme2", "https://tec.openplanner.team/stops/Cvpsncb2"], ["https://tec.openplanner.team/stops/LSPmari2", "https://tec.openplanner.team/stops/LSPtonn1"], ["https://tec.openplanner.team/stops/Crebrux1", "https://tec.openplanner.team/stops/Crehout2"], ["https://tec.openplanner.team/stops/Bgoemgr2", "https://tec.openplanner.team/stops/Bgoevli1"], ["https://tec.openplanner.team/stops/H1cv104a", "https://tec.openplanner.team/stops/H1lm107b"], ["https://tec.openplanner.team/stops/X725aua", "https://tec.openplanner.team/stops/X725avb"], ["https://tec.openplanner.team/stops/LRGeg--1", "https://tec.openplanner.team/stops/LRGgrov1"], ["https://tec.openplanner.team/stops/N524aaa", "https://tec.openplanner.team/stops/N524aja"], ["https://tec.openplanner.team/stops/Bdoncar1", "https://tec.openplanner.team/stops/Bdonlat2"], ["https://tec.openplanner.team/stops/Livvill2", "https://tec.openplanner.team/stops/LRaplac2"], ["https://tec.openplanner.team/stops/NC14aba", "https://tec.openplanner.team/stops/NC44aga"], ["https://tec.openplanner.team/stops/N578aba", "https://tec.openplanner.team/stops/N578abb"], ["https://tec.openplanner.team/stops/H1ry134b", "https://tec.openplanner.team/stops/H1ry136b"], ["https://tec.openplanner.team/stops/Bsgimca2", "https://tec.openplanner.team/stops/Buccdst2"], ["https://tec.openplanner.team/stops/N244ada", "https://tec.openplanner.team/stops/N244adb"], ["https://tec.openplanner.team/stops/X640alb", "https://tec.openplanner.team/stops/X640ama"], ["https://tec.openplanner.team/stops/H5bl121a", "https://tec.openplanner.team/stops/H5bl121b"], ["https://tec.openplanner.team/stops/H2bh110c", "https://tec.openplanner.team/stops/H2bh111b"], ["https://tec.openplanner.team/stops/Btstcar2", "https://tec.openplanner.team/stops/Btstcar3"], ["https://tec.openplanner.team/stops/LBrbern1", "https://tec.openplanner.team/stops/LFRfagn2"], ["https://tec.openplanner.team/stops/H4ep126a", "https://tec.openplanner.team/stops/H4rm114a"], ["https://tec.openplanner.team/stops/LeUkabe1", "https://tec.openplanner.team/stops/LeUwais1"], ["https://tec.openplanner.team/stops/LKmcite2", "https://tec.openplanner.team/stops/LKmdani2"], ["https://tec.openplanner.team/stops/H5rx137a", "https://tec.openplanner.team/stops/H5rx150a"], ["https://tec.openplanner.team/stops/Bclgmev1", "https://tec.openplanner.team/stops/Bllnfle2"], ["https://tec.openplanner.team/stops/X671aba", "https://tec.openplanner.team/stops/X671abb"], ["https://tec.openplanner.team/stops/N501eba", "https://tec.openplanner.team/stops/N501fwz"], ["https://tec.openplanner.team/stops/LBNplei2", "https://tec.openplanner.team/stops/LBNvill6"], ["https://tec.openplanner.team/stops/LSSeg--1", "https://tec.openplanner.team/stops/LSSvill2"], ["https://tec.openplanner.team/stops/H2sv212a", "https://tec.openplanner.team/stops/H2sv219a"], ["https://tec.openplanner.team/stops/LkEhaag1", "https://tec.openplanner.team/stops/LkEhaag2"], ["https://tec.openplanner.team/stops/LSG111-2", "https://tec.openplanner.team/stops/LSG172-2"], ["https://tec.openplanner.team/stops/Ccomott1", "https://tec.openplanner.team/stops/Ccomott2"], ["https://tec.openplanner.team/stops/H1ms911a", "https://tec.openplanner.team/stops/H1ms914a"], ["https://tec.openplanner.team/stops/Cfldand2", "https://tec.openplanner.team/stops/Cflmart2"], ["https://tec.openplanner.team/stops/H4do104a", "https://tec.openplanner.team/stops/H4ev118b"], ["https://tec.openplanner.team/stops/N540aka", "https://tec.openplanner.team/stops/N540ara"], ["https://tec.openplanner.team/stops/N111aea", "https://tec.openplanner.team/stops/N111aeb"], ["https://tec.openplanner.team/stops/LSMchat2", "https://tec.openplanner.team/stops/LSMec--2"], ["https://tec.openplanner.team/stops/Cmlclos1", "https://tec.openplanner.team/stops/Cmlclos2"], ["https://tec.openplanner.team/stops/Lkiblan2", "https://tec.openplanner.team/stops/Lkirenk1"], ["https://tec.openplanner.team/stops/Blmlvex2", "https://tec.openplanner.team/stops/Brsregl2"], ["https://tec.openplanner.team/stops/LsVmolk2", "https://tec.openplanner.team/stops/LsVprum3"], ["https://tec.openplanner.team/stops/X806aab", "https://tec.openplanner.team/stops/X806abb"], ["https://tec.openplanner.team/stops/N232bvb", "https://tec.openplanner.team/stops/N232bwa"], ["https://tec.openplanner.team/stops/LPbusin1", "https://tec.openplanner.team/stops/LPbusin2"], ["https://tec.openplanner.team/stops/X734apa", "https://tec.openplanner.team/stops/X734apb"], ["https://tec.openplanner.team/stops/X626ajb", "https://tec.openplanner.team/stops/X688abb"], ["https://tec.openplanner.team/stops/Ccuphai3", "https://tec.openplanner.team/stops/Ccuphai4"], ["https://tec.openplanner.team/stops/LHCbran1", "https://tec.openplanner.team/stops/LHCbran2"], ["https://tec.openplanner.team/stops/Cmychpl4", "https://tec.openplanner.team/stops/Cmyplac2"], ["https://tec.openplanner.team/stops/Bgligli2", "https://tec.openplanner.team/stops/Bglitro1"], ["https://tec.openplanner.team/stops/X982bca", "https://tec.openplanner.team/stops/X982bcb"], ["https://tec.openplanner.team/stops/LSLprov1", "https://tec.openplanner.team/stops/LSLprov2"], ["https://tec.openplanner.team/stops/Bgemga10", "https://tec.openplanner.team/stops/N522bvc"], ["https://tec.openplanner.team/stops/LHEcoll1", "https://tec.openplanner.team/stops/LHEnaza2"], ["https://tec.openplanner.team/stops/X608abb", "https://tec.openplanner.team/stops/X608afb"], ["https://tec.openplanner.team/stops/Bmrl4ch2", "https://tec.openplanner.team/stops/Bmrleco4"], ["https://tec.openplanner.team/stops/Blimeur2", "https://tec.openplanner.team/stops/Blmlpla2"], ["https://tec.openplanner.team/stops/LLrmc--1", "https://tec.openplanner.team/stops/LLrmc--3"], ["https://tec.openplanner.team/stops/Cjudelv3", "https://tec.openplanner.team/stops/Cjudelv4"], ["https://tec.openplanner.team/stops/X601azb", "https://tec.openplanner.team/stops/X601bca"], ["https://tec.openplanner.team/stops/X629aaa", "https://tec.openplanner.team/stops/X630ada"], ["https://tec.openplanner.team/stops/Beclbse1", "https://tec.openplanner.team/stops/H2ec101b"], ["https://tec.openplanner.team/stops/H4mx114a", "https://tec.openplanner.team/stops/H4mx114b"], ["https://tec.openplanner.team/stops/X602ara", "https://tec.openplanner.team/stops/X602arb"], ["https://tec.openplanner.team/stops/Cthpano1", "https://tec.openplanner.team/stops/Cthpano2"], ["https://tec.openplanner.team/stops/Lmlmaqu2", "https://tec.openplanner.team/stops/Lmlscie2"], ["https://tec.openplanner.team/stops/LVHweri1", "https://tec.openplanner.team/stops/LVHweri2"], ["https://tec.openplanner.team/stops/Llgfoss1", "https://tec.openplanner.team/stops/Llgmart1"], ["https://tec.openplanner.team/stops/Llgwild6", "https://tec.openplanner.team/stops/Llgwild8"], ["https://tec.openplanner.team/stops/N501esa", "https://tec.openplanner.team/stops/N501esb"], ["https://tec.openplanner.team/stops/X739aja", "https://tec.openplanner.team/stops/X779adb"], ["https://tec.openplanner.team/stops/Lbbremy1", "https://tec.openplanner.team/stops/Lbbviad2"], ["https://tec.openplanner.team/stops/N229aua", "https://tec.openplanner.team/stops/N230aca"], ["https://tec.openplanner.team/stops/Lseconc2", "https://tec.openplanner.team/stops/Lseresi1"], ["https://tec.openplanner.team/stops/Cgyrjau1", "https://tec.openplanner.team/stops/Cmtmath1"], ["https://tec.openplanner.team/stops/NR38ada", "https://tec.openplanner.team/stops/NR38aeb"], ["https://tec.openplanner.team/stops/LJEerno2", "https://tec.openplanner.team/stops/LJEtige2"], ["https://tec.openplanner.team/stops/H1bd100b", "https://tec.openplanner.team/stops/H1bd101b"], ["https://tec.openplanner.team/stops/LAmbach1", "https://tec.openplanner.team/stops/LAmsart2"], ["https://tec.openplanner.team/stops/N506bea", "https://tec.openplanner.team/stops/N506bib"], ["https://tec.openplanner.team/stops/Cvp3til5", "https://tec.openplanner.team/stops/Cvpsncb2"], ["https://tec.openplanner.team/stops/X602aga", "https://tec.openplanner.team/stops/X602agb"], ["https://tec.openplanner.team/stops/H5rx114b", "https://tec.openplanner.team/stops/H5rx127b"], ["https://tec.openplanner.team/stops/LMebove1", "https://tec.openplanner.team/stops/LMeeg--1"], ["https://tec.openplanner.team/stops/Bitrecu2", "https://tec.openplanner.team/stops/Bitrpsr2"], ["https://tec.openplanner.team/stops/LGEpt--2", "https://tec.openplanner.team/stops/LLYcham2"], ["https://tec.openplanner.team/stops/LOTcloe2", "https://tec.openplanner.team/stops/LXhvina1"], ["https://tec.openplanner.team/stops/Cfmrrou1", "https://tec.openplanner.team/stops/Cfmrrou2"], ["https://tec.openplanner.team/stops/X398aha", "https://tec.openplanner.team/stops/X398aia"], ["https://tec.openplanner.team/stops/N351aqa", "https://tec.openplanner.team/stops/N351aqb"], ["https://tec.openplanner.team/stops/Llghaye1", "https://tec.openplanner.team/stops/Llghaye2"], ["https://tec.openplanner.team/stops/H4mo207a", "https://tec.openplanner.team/stops/H4mo207b"], ["https://tec.openplanner.team/stops/N346aaa", "https://tec.openplanner.team/stops/X346alb"], ["https://tec.openplanner.team/stops/LrOfrie1", "https://tec.openplanner.team/stops/LrOkirc2"], ["https://tec.openplanner.team/stops/Cchcase2", "https://tec.openplanner.team/stops/Cmtrneu1"], ["https://tec.openplanner.team/stops/N540aaa", "https://tec.openplanner.team/stops/N540abb"], ["https://tec.openplanner.team/stops/H1au101a", "https://tec.openplanner.team/stops/H1mh116a"], ["https://tec.openplanner.team/stops/X952aka", "https://tec.openplanner.team/stops/X954adb"], ["https://tec.openplanner.team/stops/X759aca", "https://tec.openplanner.team/stops/X759afb"], ["https://tec.openplanner.team/stops/N215aaa", "https://tec.openplanner.team/stops/N215aab"], ["https://tec.openplanner.team/stops/N543bda", "https://tec.openplanner.team/stops/N543bxa"], ["https://tec.openplanner.team/stops/Bmlngch1", "https://tec.openplanner.team/stops/Bsrgcur1"], ["https://tec.openplanner.team/stops/LLWcarr2", "https://tec.openplanner.team/stops/LLWmonu2"], ["https://tec.openplanner.team/stops/Lwaaube1", "https://tec.openplanner.team/stops/Lwapomp2"], ["https://tec.openplanner.team/stops/H1hc151a", "https://tec.openplanner.team/stops/H1he103a"], ["https://tec.openplanner.team/stops/H4ty325b", "https://tec.openplanner.team/stops/H4ty384a"], ["https://tec.openplanner.team/stops/X633ada", "https://tec.openplanner.team/stops/X633aeb"], ["https://tec.openplanner.team/stops/Lagbeno2", "https://tec.openplanner.team/stops/Lagboil1"], ["https://tec.openplanner.team/stops/LVeeg--2", "https://tec.openplanner.team/stops/LVefont1"], ["https://tec.openplanner.team/stops/Bneervc1", "https://tec.openplanner.team/stops/Bneervc2"], ["https://tec.openplanner.team/stops/LGLgeer1", "https://tec.openplanner.team/stops/LGLgeer2"], ["https://tec.openplanner.team/stops/H1ge116b", "https://tec.openplanner.team/stops/H1ge117b"], ["https://tec.openplanner.team/stops/Lceavia1", "https://tec.openplanner.team/stops/Lceprog1"], ["https://tec.openplanner.team/stops/N554aea", "https://tec.openplanner.team/stops/N554agb"], ["https://tec.openplanner.team/stops/N214aia", "https://tec.openplanner.team/stops/N225aea"], ["https://tec.openplanner.team/stops/Cgocnor4", "https://tec.openplanner.team/stops/Cgon52"], ["https://tec.openplanner.team/stops/H4lg100a", "https://tec.openplanner.team/stops/H4ta135b"], ["https://tec.openplanner.team/stops/X739aab", "https://tec.openplanner.team/stops/X779ada"], ["https://tec.openplanner.team/stops/N508afb", "https://tec.openplanner.team/stops/N508aja"], ["https://tec.openplanner.team/stops/Cfcchen2", "https://tec.openplanner.team/stops/Cfcecol4"], ["https://tec.openplanner.team/stops/Lvcbalt1", "https://tec.openplanner.team/stops/Lvcpost2"], ["https://tec.openplanner.team/stops/N165aaa", "https://tec.openplanner.team/stops/N165aba"], ["https://tec.openplanner.team/stops/H1by108c", "https://tec.openplanner.team/stops/H1by108e"], ["https://tec.openplanner.team/stops/Cfrgare2", "https://tec.openplanner.team/stops/Cfrgare4"], ["https://tec.openplanner.team/stops/LFsconc2", "https://tec.openplanner.team/stops/LFsphar1"], ["https://tec.openplanner.team/stops/H1el137b", "https://tec.openplanner.team/stops/H1wi147b"], ["https://tec.openplanner.team/stops/H4ae102b", "https://tec.openplanner.team/stops/H4mn100a"], ["https://tec.openplanner.team/stops/N150aba", "https://tec.openplanner.team/stops/N150acb"], ["https://tec.openplanner.team/stops/H3so154a", "https://tec.openplanner.team/stops/H3so154b"], ["https://tec.openplanner.team/stops/Bpercsp2", "https://tec.openplanner.team/stops/Bperrma1"], ["https://tec.openplanner.team/stops/LBgbaga2", "https://tec.openplanner.team/stops/LGDgdou1"], ["https://tec.openplanner.team/stops/H4ga148d", "https://tec.openplanner.team/stops/H4ga165a"], ["https://tec.openplanner.team/stops/N525aja", "https://tec.openplanner.team/stops/N525ajb"], ["https://tec.openplanner.team/stops/N301aaa", "https://tec.openplanner.team/stops/N301aab"], ["https://tec.openplanner.team/stops/Bquesta1", "https://tec.openplanner.team/stops/Bquesta2"], ["https://tec.openplanner.team/stops/N528alb", "https://tec.openplanner.team/stops/N528awa"], ["https://tec.openplanner.team/stops/X661bba", "https://tec.openplanner.team/stops/X672aob"], ["https://tec.openplanner.team/stops/Lpechin1", "https://tec.openplanner.team/stops/Lpechin2"], ["https://tec.openplanner.team/stops/X739aea", "https://tec.openplanner.team/stops/X739aja"], ["https://tec.openplanner.team/stops/LLrcour2", "https://tec.openplanner.team/stops/LLrpape2"], ["https://tec.openplanner.team/stops/Livgera5", "https://tec.openplanner.team/stops/Livgera6"], ["https://tec.openplanner.team/stops/H5rx131a", "https://tec.openplanner.team/stops/H5rx131b"], ["https://tec.openplanner.team/stops/Bquecro2", "https://tec.openplanner.team/stops/Bqueegl1"], ["https://tec.openplanner.team/stops/LAUabat2", "https://tec.openplanner.team/stops/LAUvict4"], ["https://tec.openplanner.team/stops/N511anb", "https://tec.openplanner.team/stops/N511arb"], ["https://tec.openplanner.team/stops/Bwanorp2", "https://tec.openplanner.team/stops/Bwanwar2"], ["https://tec.openplanner.team/stops/H1gh145a", "https://tec.openplanner.team/stops/H1gh145d"], ["https://tec.openplanner.team/stops/X749afa", "https://tec.openplanner.team/stops/X749afb"], ["https://tec.openplanner.team/stops/LRObruy4", "https://tec.openplanner.team/stops/LROmorf2"], ["https://tec.openplanner.team/stops/X796aca", "https://tec.openplanner.team/stops/X796acb"], ["https://tec.openplanner.team/stops/Clihame1", "https://tec.openplanner.team/stops/Clihame2"], ["https://tec.openplanner.team/stops/Bmrleco3", "https://tec.openplanner.team/stops/Bmrlhan1"], ["https://tec.openplanner.team/stops/LHNathe1", "https://tec.openplanner.team/stops/LHNecpr4"], ["https://tec.openplanner.team/stops/Lgrbonn3", "https://tec.openplanner.team/stops/Lgrbonn6"], ["https://tec.openplanner.team/stops/H4eg102a", "https://tec.openplanner.team/stops/H4eg102b"], ["https://tec.openplanner.team/stops/X899aga", "https://tec.openplanner.team/stops/X899ahb"], ["https://tec.openplanner.team/stops/N101ana", "https://tec.openplanner.team/stops/N101aqa"], ["https://tec.openplanner.team/stops/Lmlec--2", "https://tec.openplanner.team/stops/Lmlmaqu2"], ["https://tec.openplanner.team/stops/LBPmili2", "https://tec.openplanner.team/stops/LSLdall1"], ["https://tec.openplanner.team/stops/LWOrout1", "https://tec.openplanner.team/stops/LWOwaer1"], ["https://tec.openplanner.team/stops/Btstbes2", "https://tec.openplanner.team/stops/Btstw752"], ["https://tec.openplanner.team/stops/H2lc145a", "https://tec.openplanner.team/stops/H2ll194b"], ["https://tec.openplanner.team/stops/H1mr122a", "https://tec.openplanner.team/stops/H1wi152a"], ["https://tec.openplanner.team/stops/LBmbara1", "https://tec.openplanner.team/stops/LJAbell2"], ["https://tec.openplanner.team/stops/LCF2spa2", "https://tec.openplanner.team/stops/LHaodei2"], ["https://tec.openplanner.team/stops/X609ala", "https://tec.openplanner.team/stops/X609amb"], ["https://tec.openplanner.team/stops/N201aec", "https://tec.openplanner.team/stops/N201aee"], ["https://tec.openplanner.team/stops/LNAbras1", "https://tec.openplanner.team/stops/LTNsarl1"], ["https://tec.openplanner.team/stops/Bllnhoc2", "https://tec.openplanner.team/stops/Bwavtas3"], ["https://tec.openplanner.team/stops/Lsestap2", "https://tec.openplanner.team/stops/Lsevand1"], ["https://tec.openplanner.team/stops/Bobacar2", "https://tec.openplanner.team/stops/Bptrpla2"], ["https://tec.openplanner.team/stops/LCRecmo2", "https://tec.openplanner.team/stops/LCRgdrt1"], ["https://tec.openplanner.team/stops/N539bda", "https://tec.openplanner.team/stops/N539bdb"], ["https://tec.openplanner.team/stops/Lempass1", "https://tec.openplanner.team/stops/Lempass2"], ["https://tec.openplanner.team/stops/N360adc", "https://tec.openplanner.team/stops/N894ada"], ["https://tec.openplanner.team/stops/N519amb", "https://tec.openplanner.team/stops/N519apa"], ["https://tec.openplanner.team/stops/Bezeksj2", "https://tec.openplanner.team/stops/Bneeace2"], ["https://tec.openplanner.team/stops/N215acb", "https://tec.openplanner.team/stops/N261aha"], ["https://tec.openplanner.team/stops/LeUgend2", "https://tec.openplanner.team/stops/LeUrath2"], ["https://tec.openplanner.team/stops/H5qu149a", "https://tec.openplanner.team/stops/H5qu156d"], ["https://tec.openplanner.team/stops/X904aab", "https://tec.openplanner.team/stops/X904aba"], ["https://tec.openplanner.team/stops/N511aea", "https://tec.openplanner.team/stops/N511atb"], ["https://tec.openplanner.team/stops/Lagindu1", "https://tec.openplanner.team/stops/Lkithie1"], ["https://tec.openplanner.team/stops/Bsdafra1", "https://tec.openplanner.team/stops/Csdrofr2"], ["https://tec.openplanner.team/stops/Cgon51", "https://tec.openplanner.team/stops/Cjuapca2"], ["https://tec.openplanner.team/stops/Bmrleco1", "https://tec.openplanner.team/stops/Bmrleco4"], ["https://tec.openplanner.team/stops/N211apa", "https://tec.openplanner.team/stops/N211ara"], ["https://tec.openplanner.team/stops/LFCvoer1", "https://tec.openplanner.team/stops/LFCvoer2"], ["https://tec.openplanner.team/stops/N206aab", "https://tec.openplanner.team/stops/X206azb"], ["https://tec.openplanner.team/stops/LJAcham2", "https://tec.openplanner.team/stops/LJAgoff2"], ["https://tec.openplanner.team/stops/Blonegl1", "https://tec.openplanner.team/stops/Bptbmco1"], ["https://tec.openplanner.team/stops/Ccimont1", "https://tec.openplanner.team/stops/Ccipier1"], ["https://tec.openplanner.team/stops/N244ama", "https://tec.openplanner.team/stops/N244amb"], ["https://tec.openplanner.team/stops/H1cd110a", "https://tec.openplanner.team/stops/H1cd110b"], ["https://tec.openplanner.team/stops/LVLf10-2", "https://tec.openplanner.team/stops/LVLruis1"], ["https://tec.openplanner.team/stops/LhSbruc2", "https://tec.openplanner.team/stops/LhSgete3"], ["https://tec.openplanner.team/stops/LAyheid1", "https://tec.openplanner.team/stops/LSHmais1"], ["https://tec.openplanner.team/stops/H4bh100a", "https://tec.openplanner.team/stops/H4bh104a"], ["https://tec.openplanner.team/stops/H2fa105b", "https://tec.openplanner.team/stops/H2fa108b"], ["https://tec.openplanner.team/stops/H1gc124a", "https://tec.openplanner.team/stops/H1go174a"], ["https://tec.openplanner.team/stops/H2bh115b", "https://tec.openplanner.team/stops/H2fy120c"], ["https://tec.openplanner.team/stops/LWepost2", "https://tec.openplanner.team/stops/LWevand1"], ["https://tec.openplanner.team/stops/N543bob", "https://tec.openplanner.team/stops/N543cna"], ["https://tec.openplanner.team/stops/LBUchpl1", "https://tec.openplanner.team/stops/LHhmohe1"], ["https://tec.openplanner.team/stops/LkTsch%C3%B61", "https://tec.openplanner.team/stops/LkTtal-2"], ["https://tec.openplanner.team/stops/X824aac", "https://tec.openplanner.team/stops/X824abb"], ["https://tec.openplanner.team/stops/N509awb", "https://tec.openplanner.team/stops/N511ava"], ["https://tec.openplanner.team/stops/N501bza", "https://tec.openplanner.team/stops/N501cca"], ["https://tec.openplanner.team/stops/H1gy112a", "https://tec.openplanner.team/stops/H1gy114b"], ["https://tec.openplanner.team/stops/Cmlchan1", "https://tec.openplanner.team/stops/Cmlours2"], ["https://tec.openplanner.team/stops/H1gr113b", "https://tec.openplanner.team/stops/H1gr123d"], ["https://tec.openplanner.team/stops/Cjumarc3", "https://tec.openplanner.team/stops/Cjumarc4"], ["https://tec.openplanner.team/stops/Louduna*", "https://tec.openplanner.team/stops/Loumair1"], ["https://tec.openplanner.team/stops/X733aha", "https://tec.openplanner.team/stops/X734abb"], ["https://tec.openplanner.team/stops/Landeja2", "https://tec.openplanner.team/stops/Lanegal1"], ["https://tec.openplanner.team/stops/X397aba", "https://tec.openplanner.team/stops/X901amb"], ["https://tec.openplanner.team/stops/Lfhgara1", "https://tec.openplanner.team/stops/Lfhlons2"], ["https://tec.openplanner.team/stops/Cgocitn1", "https://tec.openplanner.team/stops/Cgofleu3"], ["https://tec.openplanner.team/stops/Cgomart1", "https://tec.openplanner.team/stops/Cgostro1"], ["https://tec.openplanner.team/stops/X890aab", "https://tec.openplanner.team/stops/X890aca"], ["https://tec.openplanner.team/stops/Bmsgpfo2", "https://tec.openplanner.team/stops/Bmsgrco2"], ["https://tec.openplanner.team/stops/X669aeb", "https://tec.openplanner.team/stops/X672aia"], ["https://tec.openplanner.team/stops/Bbiemse1", "https://tec.openplanner.team/stops/Bgzdpco2"], ["https://tec.openplanner.team/stops/LHheg--2", "https://tec.openplanner.team/stops/LHhmohe2"], ["https://tec.openplanner.team/stops/N101ara", "https://tec.openplanner.team/stops/N101arb"], ["https://tec.openplanner.team/stops/LtHfrie1", "https://tec.openplanner.team/stops/LtHkirc4"], ["https://tec.openplanner.team/stops/H4ty272b", "https://tec.openplanner.team/stops/H4ty308c"], ["https://tec.openplanner.team/stops/LTHbelv1", "https://tec.openplanner.team/stops/LTHbelv2"], ["https://tec.openplanner.team/stops/LXoeg--3", "https://tec.openplanner.team/stops/LXomc--3"], ["https://tec.openplanner.team/stops/Lanfran4", "https://tec.openplanner.team/stops/Lanpisc1"], ["https://tec.openplanner.team/stops/H1pa103a", "https://tec.openplanner.team/stops/H1pa117b"], ["https://tec.openplanner.team/stops/Bwatcoq1", "https://tec.openplanner.team/stops/Bwategp1"], ["https://tec.openplanner.team/stops/Borborb2", "https://tec.openplanner.team/stops/Borbtre1"], ["https://tec.openplanner.team/stops/Bfelcsa2", "https://tec.openplanner.team/stops/Bsencen1"], ["https://tec.openplanner.team/stops/LGeborn1", "https://tec.openplanner.team/stops/LGeborn2"], ["https://tec.openplanner.team/stops/LEBeg--1", "https://tec.openplanner.team/stops/LEBeg--2"], ["https://tec.openplanner.team/stops/LVu40--1", "https://tec.openplanner.team/stops/LVukabi2"], ["https://tec.openplanner.team/stops/X750aua", "https://tec.openplanner.team/stops/X750bhb"], ["https://tec.openplanner.team/stops/LMOchpl1", "https://tec.openplanner.team/stops/LMOchpl2"], ["https://tec.openplanner.team/stops/X717abb", "https://tec.openplanner.team/stops/X717aea"], ["https://tec.openplanner.team/stops/LBLcalv2", "https://tec.openplanner.team/stops/LBLvici3"], ["https://tec.openplanner.team/stops/N508aab", "https://tec.openplanner.team/stops/N508aeb"], ["https://tec.openplanner.team/stops/Btlbegl4", "https://tec.openplanner.team/stops/Btlbmel1"], ["https://tec.openplanner.team/stops/H1hl124b", "https://tec.openplanner.team/stops/H1hl126b"], ["https://tec.openplanner.team/stops/LHdvill2", "https://tec.openplanner.team/stops/LVnvieg1"], ["https://tec.openplanner.team/stops/Lverdep2", "https://tec.openplanner.team/stops/Lverogi2"], ["https://tec.openplanner.team/stops/X941aaa", "https://tec.openplanner.team/stops/X941abb"], ["https://tec.openplanner.team/stops/Llgavro1", "https://tec.openplanner.team/stops/Llgfail1"], ["https://tec.openplanner.team/stops/X601awb", "https://tec.openplanner.team/stops/X601cya"], ["https://tec.openplanner.team/stops/Llgcham7", "https://tec.openplanner.team/stops/Llghars5"], ["https://tec.openplanner.team/stops/N536ada", "https://tec.openplanner.team/stops/N536aeb"], ["https://tec.openplanner.team/stops/Cmgpla2", "https://tec.openplanner.team/stops/Cmgslo2"], ["https://tec.openplanner.team/stops/N204aja", "https://tec.openplanner.team/stops/N219adb"], ["https://tec.openplanner.team/stops/X721aea", "https://tec.openplanner.team/stops/X721afa"], ["https://tec.openplanner.team/stops/LSGec--2", "https://tec.openplanner.team/stops/LSGsolo1"], ["https://tec.openplanner.team/stops/LAUpind2", "https://tec.openplanner.team/stops/LAUscha1"], ["https://tec.openplanner.team/stops/X921aha", "https://tec.openplanner.team/stops/X921aqb"], ["https://tec.openplanner.team/stops/N150akb", "https://tec.openplanner.team/stops/N165aab"], ["https://tec.openplanner.team/stops/LMAgare*", "https://tec.openplanner.team/stops/LMAgdfa1"], ["https://tec.openplanner.team/stops/N508aaa", "https://tec.openplanner.team/stops/N508ama"], ["https://tec.openplanner.team/stops/N894aaa", "https://tec.openplanner.team/stops/N894aba"], ["https://tec.openplanner.team/stops/Lceegli*", "https://tec.openplanner.team/stops/Lceviei1"], ["https://tec.openplanner.team/stops/N232aqb", "https://tec.openplanner.team/stops/N232bka"], ["https://tec.openplanner.team/stops/X910acb", "https://tec.openplanner.team/stops/X910ada"], ["https://tec.openplanner.team/stops/Lgrdemo2", "https://tec.openplanner.team/stops/Lgrspir1"], ["https://tec.openplanner.team/stops/LNOpt--2", "https://tec.openplanner.team/stops/LRErive1"], ["https://tec.openplanner.team/stops/H2ha127a", "https://tec.openplanner.team/stops/H2ha143a"], ["https://tec.openplanner.team/stops/Lpocent1", "https://tec.openplanner.team/stops/Lpoprie2"], ["https://tec.openplanner.team/stops/LSOgard1", "https://tec.openplanner.team/stops/LSOgard2"], ["https://tec.openplanner.team/stops/Cclplac2", "https://tec.openplanner.team/stops/Cclrgiv2"], ["https://tec.openplanner.team/stops/H1em101b", "https://tec.openplanner.team/stops/H1em107b"], ["https://tec.openplanner.team/stops/Blmldmi1", "https://tec.openplanner.team/stops/Blmldmi2"], ["https://tec.openplanner.team/stops/LESpont1", "https://tec.openplanner.team/stops/LESpont2"], ["https://tec.openplanner.team/stops/NH21aga", "https://tec.openplanner.team/stops/NH21aha"], ["https://tec.openplanner.team/stops/Ccoacar1", "https://tec.openplanner.team/stops/Ccogode1"], ["https://tec.openplanner.team/stops/Lsechev1", "https://tec.openplanner.team/stops/Lsefoot1"], ["https://tec.openplanner.team/stops/LBveg--2", "https://tec.openplanner.team/stops/LBvnico4"], ["https://tec.openplanner.team/stops/Cchcime1", "https://tec.openplanner.team/stops/Cchdelf1"], ["https://tec.openplanner.team/stops/Bbbksth2", "https://tec.openplanner.team/stops/Bhmmcsc1"], ["https://tec.openplanner.team/stops/Lmitroi2", "https://tec.openplanner.team/stops/Lvtlomb2"], ["https://tec.openplanner.team/stops/N501dpa", "https://tec.openplanner.team/stops/N501dpb"], ["https://tec.openplanner.team/stops/Cflstan3", "https://tec.openplanner.team/stops/NC12adb"], ["https://tec.openplanner.team/stops/H2ha129d", "https://tec.openplanner.team/stops/H2ha141a"], ["https://tec.openplanner.team/stops/X624aha", "https://tec.openplanner.team/stops/X624ala"], ["https://tec.openplanner.team/stops/H4oe147a", "https://tec.openplanner.team/stops/H4oe149b"], ["https://tec.openplanner.team/stops/N511apa", "https://tec.openplanner.team/stops/N511avb"], ["https://tec.openplanner.team/stops/Ladfoot2", "https://tec.openplanner.team/stops/Ladjuif1"], ["https://tec.openplanner.team/stops/Cjugohi3", "https://tec.openplanner.team/stops/Cjugohi4"], ["https://tec.openplanner.team/stops/X636aca", "https://tec.openplanner.team/stops/X636bia"], ["https://tec.openplanner.team/stops/Cjxdesc1", "https://tec.openplanner.team/stops/Cnapetr2"], ["https://tec.openplanner.team/stops/LBJplan1", "https://tec.openplanner.team/stops/LBJplan2"], ["https://tec.openplanner.team/stops/LrUgeme1", "https://tec.openplanner.team/stops/LrUlasc2"], ["https://tec.openplanner.team/stops/LNHbarr1", "https://tec.openplanner.team/stops/LNHhome2"], ["https://tec.openplanner.team/stops/NC02ava", "https://tec.openplanner.team/stops/NC02avb"], ["https://tec.openplanner.team/stops/Bhalcbr1", "https://tec.openplanner.team/stops/Bhalcbr2"], ["https://tec.openplanner.team/stops/LStroch2", "https://tec.openplanner.team/stops/LWNfani1"], ["https://tec.openplanner.team/stops/LHUaron2", "https://tec.openplanner.team/stops/LHUdelc3"], ["https://tec.openplanner.team/stops/X907afa", "https://tec.openplanner.team/stops/X907afb"], ["https://tec.openplanner.team/stops/Cfabnat1", "https://tec.openplanner.team/stops/Cfanoci2"], ["https://tec.openplanner.team/stops/LMAbijo2", "https://tec.openplanner.team/stops/LMAbruy1"], ["https://tec.openplanner.team/stops/LHe3com1", "https://tec.openplanner.team/stops/LHecime1"], ["https://tec.openplanner.team/stops/Brixcme1", "https://tec.openplanner.team/stops/Brsrber2"], ["https://tec.openplanner.team/stops/X811aia", "https://tec.openplanner.team/stops/X811aja"], ["https://tec.openplanner.team/stops/Bgemga08", "https://tec.openplanner.team/stops/N522bvf"], ["https://tec.openplanner.team/stops/N501etb", "https://tec.openplanner.team/stops/N501etd"], ["https://tec.openplanner.team/stops/Lvieg--2", "https://tec.openplanner.team/stops/Lvitour1"], ["https://tec.openplanner.team/stops/Bpernov2", "https://tec.openplanner.team/stops/Bperwil2"], ["https://tec.openplanner.team/stops/LHCcoul2", "https://tec.openplanner.team/stops/LHCprog1"], ["https://tec.openplanner.team/stops/H1fl133c", "https://tec.openplanner.team/stops/H1je365a"], ["https://tec.openplanner.team/stops/N576acb", "https://tec.openplanner.team/stops/N576akd"], ["https://tec.openplanner.team/stops/Bboufsm1", "https://tec.openplanner.team/stops/Bbourel1"], ["https://tec.openplanner.team/stops/Llgbell1", "https://tec.openplanner.team/stops/Llgpari1"], ["https://tec.openplanner.team/stops/H4ty318a", "https://tec.openplanner.team/stops/H4ty324c"], ["https://tec.openplanner.team/stops/Bndbdra2", "https://tec.openplanner.team/stops/Bndbpco1"], ["https://tec.openplanner.team/stops/Btslcel2", "https://tec.openplanner.team/stops/Btstbbu2"], ["https://tec.openplanner.team/stops/N515aga", "https://tec.openplanner.team/stops/N515agb"], ["https://tec.openplanner.team/stops/N211aga", "https://tec.openplanner.team/stops/N211ava"], ["https://tec.openplanner.team/stops/X837ada", "https://tec.openplanner.team/stops/X837afb"], ["https://tec.openplanner.team/stops/H4ae102a", "https://tec.openplanner.team/stops/H4rs117a"], ["https://tec.openplanner.team/stops/Bmsgbay1", "https://tec.openplanner.team/stops/Bmsgpfo1"], ["https://tec.openplanner.team/stops/X994aea", "https://tec.openplanner.team/stops/X994aeb"], ["https://tec.openplanner.team/stops/Caioign3", "https://tec.openplanner.team/stops/Caioign4"], ["https://tec.openplanner.team/stops/X342aeb", "https://tec.openplanner.team/stops/X342aga"], ["https://tec.openplanner.team/stops/LSPclai1", "https://tec.openplanner.team/stops/LSPclai2"], ["https://tec.openplanner.team/stops/LOTsava2", "https://tec.openplanner.team/stops/LOTtong1"], ["https://tec.openplanner.team/stops/Lcapisc1", "https://tec.openplanner.team/stops/Lcapisc2"], ["https://tec.openplanner.team/stops/Lhrhosp2", "https://tec.openplanner.team/stops/Lhrmilm1"], ["https://tec.openplanner.team/stops/X793aga", "https://tec.openplanner.team/stops/X793aha"], ["https://tec.openplanner.team/stops/X687aba", "https://tec.openplanner.team/stops/X688aaa"], ["https://tec.openplanner.team/stops/Lmocail1", "https://tec.openplanner.team/stops/Lsnecco3"], ["https://tec.openplanner.team/stops/X725afc", "https://tec.openplanner.team/stops/X725afg"], ["https://tec.openplanner.team/stops/H4bh105a", "https://tec.openplanner.team/stops/H4bh105b"], ["https://tec.openplanner.team/stops/X715aga", "https://tec.openplanner.team/stops/X715aha"], ["https://tec.openplanner.team/stops/LCxross2", "https://tec.openplanner.team/stops/LCxwade2"], ["https://tec.openplanner.team/stops/LbUjost1", "https://tec.openplanner.team/stops/LmUzent1"], ["https://tec.openplanner.team/stops/LmDelek1", "https://tec.openplanner.team/stops/LmDgeme2"], ["https://tec.openplanner.team/stops/X609aia", "https://tec.openplanner.team/stops/X609aka"], ["https://tec.openplanner.team/stops/Cgxpair2", "https://tec.openplanner.team/stops/Cmocime2"], ["https://tec.openplanner.team/stops/X661acb", "https://tec.openplanner.team/stops/X661bca"], ["https://tec.openplanner.team/stops/H4ba102b", "https://tec.openplanner.team/stops/H4ga156a"], ["https://tec.openplanner.team/stops/N508aca", "https://tec.openplanner.team/stops/N508acb"], ["https://tec.openplanner.team/stops/LFlabba3", "https://tec.openplanner.team/stops/LFlpark*"], ["https://tec.openplanner.team/stops/LHgdari1", "https://tec.openplanner.team/stops/LOMdodi2"], ["https://tec.openplanner.team/stops/N515atb", "https://tec.openplanner.team/stops/N515aua"], ["https://tec.openplanner.team/stops/H2ep144a", "https://tec.openplanner.team/stops/H2ep144b"], ["https://tec.openplanner.team/stops/H4ba102b", "https://tec.openplanner.team/stops/H4ml206a"], ["https://tec.openplanner.team/stops/X812anb", "https://tec.openplanner.team/stops/X812aua"], ["https://tec.openplanner.team/stops/Bclgvmo2", "https://tec.openplanner.team/stops/Bcrbast1"], ["https://tec.openplanner.team/stops/Llgtcha1", "https://tec.openplanner.team/stops/Llgtcha2"], ["https://tec.openplanner.team/stops/Lvc4bra2", "https://tec.openplanner.team/stops/Lvcbalt1"], ["https://tec.openplanner.team/stops/X901aaa", "https://tec.openplanner.team/stops/X901bja"], ["https://tec.openplanner.team/stops/H4an105a", "https://tec.openplanner.team/stops/H4rs119b"], ["https://tec.openplanner.team/stops/H4ru238a", "https://tec.openplanner.team/stops/H4ty311b"], ["https://tec.openplanner.team/stops/N525aha", "https://tec.openplanner.team/stops/N525aza"], ["https://tec.openplanner.team/stops/LnIfrie1", "https://tec.openplanner.team/stops/LnIfrie2"], ["https://tec.openplanner.team/stops/N309aca", "https://tec.openplanner.team/stops/N343abb"], ["https://tec.openplanner.team/stops/Lsnhoco1", "https://tec.openplanner.team/stops/Lsntvbi3"], ["https://tec.openplanner.team/stops/Ljuathe2", "https://tec.openplanner.team/stops/Ljuetie3"], ["https://tec.openplanner.team/stops/Cbcegli1", "https://tec.openplanner.team/stops/Cbcha651"], ["https://tec.openplanner.team/stops/Ljhheus1", "https://tec.openplanner.team/stops/Ljhmany1"], ["https://tec.openplanner.team/stops/H1fa121b", "https://tec.openplanner.team/stops/H1vb143a"], ["https://tec.openplanner.team/stops/LAUscha2", "https://tec.openplanner.team/stops/LFProt-1"], ["https://tec.openplanner.team/stops/H2hg270a", "https://tec.openplanner.team/stops/H2ll176c"], ["https://tec.openplanner.team/stops/X671afb", "https://tec.openplanner.team/stops/X671agb"], ["https://tec.openplanner.team/stops/LAmwaut2", "https://tec.openplanner.team/stops/LNHhome1"], ["https://tec.openplanner.team/stops/X994alb", "https://tec.openplanner.team/stops/X994amb"], ["https://tec.openplanner.team/stops/LSInd--1", "https://tec.openplanner.team/stops/LSIroch2"], ["https://tec.openplanner.team/stops/N170aaa", "https://tec.openplanner.team/stops/N170aba"], ["https://tec.openplanner.team/stops/Berncim1", "https://tec.openplanner.team/stops/Bwspbbo2"], ["https://tec.openplanner.team/stops/Bcbqcht1", "https://tec.openplanner.team/stops/Bcbqufo2"], ["https://tec.openplanner.team/stops/LeUroll1", "https://tec.openplanner.team/stops/LkTdorf1"], ["https://tec.openplanner.team/stops/X342afb", "https://tec.openplanner.team/stops/X363aca"], ["https://tec.openplanner.team/stops/H2pr114a", "https://tec.openplanner.team/stops/H2pr118a"], ["https://tec.openplanner.team/stops/NC14aab", "https://tec.openplanner.team/stops/NC44aha"], ["https://tec.openplanner.team/stops/LSGcolo1", "https://tec.openplanner.team/stops/LSkathe2"], ["https://tec.openplanner.team/stops/N536acb", "https://tec.openplanner.team/stops/N537aba"], ["https://tec.openplanner.team/stops/Cgzplac1", "https://tec.openplanner.team/stops/Cgzplac2"], ["https://tec.openplanner.team/stops/H1po139a", "https://tec.openplanner.team/stops/H5st162b"], ["https://tec.openplanner.team/stops/H4po125a", "https://tec.openplanner.team/stops/H4po129b"], ["https://tec.openplanner.team/stops/H1si153b", "https://tec.openplanner.team/stops/H1si156a"], ["https://tec.openplanner.team/stops/N512ana", "https://tec.openplanner.team/stops/N512atb"], ["https://tec.openplanner.team/stops/Cbbcrbo1", "https://tec.openplanner.team/stops/Cssgare2"], ["https://tec.openplanner.team/stops/Lhutill2", "https://tec.openplanner.team/stops/Lvevieu2"], ["https://tec.openplanner.team/stops/H4ty267a", "https://tec.openplanner.team/stops/H4ty267b"], ["https://tec.openplanner.team/stops/N557aaa", "https://tec.openplanner.team/stops/N557aad"], ["https://tec.openplanner.team/stops/H1ry136a", "https://tec.openplanner.team/stops/H1ry136b"], ["https://tec.openplanner.team/stops/LBRgend1", "https://tec.openplanner.team/stops/LBRtrag2"], ["https://tec.openplanner.team/stops/H2ca111b", "https://tec.openplanner.team/stops/H2ml114a"], ["https://tec.openplanner.team/stops/Cgzdeve1", "https://tec.openplanner.team/stops/Cgzoctr1"], ["https://tec.openplanner.team/stops/LXhcite1", "https://tec.openplanner.team/stops/LXhcite2"], ["https://tec.openplanner.team/stops/Llgbobu6", "https://tec.openplanner.team/stops/Llgdelc1"], ["https://tec.openplanner.team/stops/LBQplac1", "https://tec.openplanner.team/stops/N223aba"], ["https://tec.openplanner.team/stops/H1el134a", "https://tec.openplanner.team/stops/H1el138a"], ["https://tec.openplanner.team/stops/Bjancha2", "https://tec.openplanner.team/stops/Bjaurgo2"], ["https://tec.openplanner.team/stops/H5at141a", "https://tec.openplanner.team/stops/H5at141b"], ["https://tec.openplanner.team/stops/LDOordi1", "https://tec.openplanner.team/stops/LGOhevr1"], ["https://tec.openplanner.team/stops/Bblavba1", "https://tec.openplanner.team/stops/Bwatcro1"], ["https://tec.openplanner.team/stops/H4fo117a", "https://tec.openplanner.team/stops/H4fo118a"], ["https://tec.openplanner.team/stops/Cjupier2", "https://tec.openplanner.team/stops/Cjuspin2"], ["https://tec.openplanner.team/stops/Ctrecol2", "https://tec.openplanner.team/stops/Ctrleju2"], ["https://tec.openplanner.team/stops/H1hr121d", "https://tec.openplanner.team/stops/H3so171a"], ["https://tec.openplanner.team/stops/X923aea", "https://tec.openplanner.team/stops/X923aga"], ["https://tec.openplanner.team/stops/N222aca", "https://tec.openplanner.team/stops/X222aza"], ["https://tec.openplanner.team/stops/N127baa", "https://tec.openplanner.team/stops/N134afa"], ["https://tec.openplanner.team/stops/H4vx361a", "https://tec.openplanner.team/stops/H4vx361b"], ["https://tec.openplanner.team/stops/LvA12--3", "https://tec.openplanner.team/stops/LvAschr1"], ["https://tec.openplanner.team/stops/Bbauham2", "https://tec.openplanner.team/stops/Bnivpal2"], ["https://tec.openplanner.team/stops/LATmale2", "https://tec.openplanner.team/stops/LWNbeto1"], ["https://tec.openplanner.team/stops/LCOcrom1", "https://tec.openplanner.team/stops/LSNchen3"], ["https://tec.openplanner.team/stops/H2sv213b", "https://tec.openplanner.team/stops/H2sv219b"], ["https://tec.openplanner.team/stops/LHUcamp2", "https://tec.openplanner.team/stops/LTieg--1"], ["https://tec.openplanner.team/stops/Lghcham2", "https://tec.openplanner.team/stops/Lghecol*"], ["https://tec.openplanner.team/stops/Llmdela2", "https://tec.openplanner.team/stops/LWenouv1"], ["https://tec.openplanner.team/stops/LGeforg1", "https://tec.openplanner.team/stops/LGeforg2"], ["https://tec.openplanner.team/stops/H4ab100b", "https://tec.openplanner.team/stops/H4ab102a"], ["https://tec.openplanner.team/stops/Chhegli1", "https://tec.openplanner.team/stops/Chhegli3"], ["https://tec.openplanner.team/stops/X775aga", "https://tec.openplanner.team/stops/X775aha"], ["https://tec.openplanner.team/stops/X371aeb", "https://tec.openplanner.team/stops/X371afb"], ["https://tec.openplanner.team/stops/Bmrleco2", "https://tec.openplanner.team/stops/Bmrleco4"], ["https://tec.openplanner.team/stops/N501jda", "https://tec.openplanner.team/stops/N501jea"], ["https://tec.openplanner.team/stops/Crcgmah1", "https://tec.openplanner.team/stops/Crcrgar1"], ["https://tec.openplanner.team/stops/H4mo132b", "https://tec.openplanner.team/stops/H4mo155a"], ["https://tec.openplanner.team/stops/LhRandl2", "https://tec.openplanner.team/stops/LwEdorf1"], ["https://tec.openplanner.team/stops/X983acb", "https://tec.openplanner.team/stops/X983adb"], ["https://tec.openplanner.team/stops/N544aba", "https://tec.openplanner.team/stops/N544abc"], ["https://tec.openplanner.team/stops/X659ala", "https://tec.openplanner.team/stops/X659ama"], ["https://tec.openplanner.team/stops/LSGeg--3", "https://tec.openplanner.team/stops/LSGeg--4"], ["https://tec.openplanner.team/stops/Lsmrcim2", "https://tec.openplanner.team/stops/Lsmsech4"], ["https://tec.openplanner.team/stops/Bbiecoc1", "https://tec.openplanner.team/stops/Bgzdpos2"], ["https://tec.openplanner.team/stops/N561ada", "https://tec.openplanner.team/stops/N561aha"], ["https://tec.openplanner.team/stops/Brsgm802", "https://tec.openplanner.team/stops/Bwatpct2"], ["https://tec.openplanner.team/stops/Brsga151", "https://tec.openplanner.team/stops/Brsga152"], ["https://tec.openplanner.team/stops/H2hg268c", "https://tec.openplanner.team/stops/H2hg271a"], ["https://tec.openplanner.team/stops/Lansarm2", "https://tec.openplanner.team/stops/Lmobols1"], ["https://tec.openplanner.team/stops/Llgdart5", "https://tec.openplanner.team/stops/LlgguilC"], ["https://tec.openplanner.team/stops/N501mua", "https://tec.openplanner.team/stops/N527adb"], ["https://tec.openplanner.team/stops/X609adb", "https://tec.openplanner.team/stops/X609ama"], ["https://tec.openplanner.team/stops/H1hr120b", "https://tec.openplanner.team/stops/H1hr121c"], ["https://tec.openplanner.team/stops/LDOastr1", "https://tec.openplanner.team/stops/LDOprev1"], ["https://tec.openplanner.team/stops/X986ajb", "https://tec.openplanner.team/stops/X986alb"], ["https://tec.openplanner.team/stops/LORruis1", "https://tec.openplanner.team/stops/LORthie1"], ["https://tec.openplanner.team/stops/Bllngal1", "https://tec.openplanner.team/stops/Bllngar4"], ["https://tec.openplanner.team/stops/H4wa151a", "https://tec.openplanner.team/stops/H4wa151b"], ["https://tec.openplanner.team/stops/H4ka193b", "https://tec.openplanner.team/stops/H4ka400a"], ["https://tec.openplanner.team/stops/N501gsa", "https://tec.openplanner.team/stops/N501hla"], ["https://tec.openplanner.team/stops/H1ms285a", "https://tec.openplanner.team/stops/H1ms304a"], ["https://tec.openplanner.team/stops/H1en103a", "https://tec.openplanner.team/stops/H1mk115a"], ["https://tec.openplanner.team/stops/X911aca", "https://tec.openplanner.team/stops/X911acb"], ["https://tec.openplanner.team/stops/Cmlcpar1", "https://tec.openplanner.team/stops/Cmlhubi2"], ["https://tec.openplanner.team/stops/X902aba", "https://tec.openplanner.team/stops/X902abb"], ["https://tec.openplanner.team/stops/LRGchap1", "https://tec.openplanner.team/stops/LRGchap2"], ["https://tec.openplanner.team/stops/X629aca", "https://tec.openplanner.team/stops/X629acb"], ["https://tec.openplanner.team/stops/Cnahahe1", "https://tec.openplanner.team/stops/Cnahahe2"], ["https://tec.openplanner.team/stops/N301adb", "https://tec.openplanner.team/stops/N301afc"], ["https://tec.openplanner.team/stops/LHGikea1", "https://tec.openplanner.team/stops/LHGleje1"], ["https://tec.openplanner.team/stops/Lrchype1", "https://tec.openplanner.team/stops/Lrchype2"], ["https://tec.openplanner.team/stops/LARauto4", "https://tec.openplanner.team/stops/LARgare3"], ["https://tec.openplanner.team/stops/LBDfran2", "https://tec.openplanner.team/stops/LJEniho2"], ["https://tec.openplanner.team/stops/H4eg108b", "https://tec.openplanner.team/stops/H4sl154b"], ["https://tec.openplanner.team/stops/H5at108a", "https://tec.openplanner.team/stops/H5at119a"], ["https://tec.openplanner.team/stops/X672aec", "https://tec.openplanner.team/stops/X672afb"], ["https://tec.openplanner.team/stops/LMaburg3", "https://tec.openplanner.team/stops/LMamuse4"], ["https://tec.openplanner.team/stops/Bnilhau2", "https://tec.openplanner.team/stops/Bnilreg1"], ["https://tec.openplanner.team/stops/Bfelrav2", "https://tec.openplanner.team/stops/Bsengma2"], ["https://tec.openplanner.team/stops/Lsnmala3", "https://tec.openplanner.team/stops/Lsnmala4"], ["https://tec.openplanner.team/stops/Llgboux1", "https://tec.openplanner.team/stops/Lvtboux1"], ["https://tec.openplanner.team/stops/H4ty310a", "https://tec.openplanner.team/stops/H4ty317a"], ["https://tec.openplanner.team/stops/LROmorf1", "https://tec.openplanner.team/stops/LWalibo2"], ["https://tec.openplanner.team/stops/LCRgdrt2", "https://tec.openplanner.team/stops/LFmbure1"], ["https://tec.openplanner.team/stops/Cbetrie1", "https://tec.openplanner.team/stops/Ctyhame1"], ["https://tec.openplanner.team/stops/X608ala", "https://tec.openplanner.team/stops/X609aeb"], ["https://tec.openplanner.team/stops/LLecolo1", "https://tec.openplanner.team/stops/X547aqb"], ["https://tec.openplanner.team/stops/Bsgetri1", "https://tec.openplanner.team/stops/Bsgevil1"], ["https://tec.openplanner.team/stops/Bptrpla1", "https://tec.openplanner.team/stops/Bptrvil2"], ["https://tec.openplanner.team/stops/Lreec--2", "https://tec.openplanner.team/stops/Lretill1"], ["https://tec.openplanner.team/stops/N251aab", "https://tec.openplanner.team/stops/N251abb"], ["https://tec.openplanner.team/stops/LmI36--1", "https://tec.openplanner.team/stops/LmIvale4"], ["https://tec.openplanner.team/stops/H2ch107a", "https://tec.openplanner.team/stops/H2ch107b"], ["https://tec.openplanner.team/stops/LHMcruc1", "https://tec.openplanner.team/stops/LHMpatl1"], ["https://tec.openplanner.team/stops/LkEschi1", "https://tec.openplanner.team/stops/LkEschi2"], ["https://tec.openplanner.team/stops/N501ada", "https://tec.openplanner.team/stops/N502ada"], ["https://tec.openplanner.team/stops/LlgOPER2", "https://tec.openplanner.team/stops/LlgR-Fr*"], ["https://tec.openplanner.team/stops/H4ag100a", "https://tec.openplanner.team/stops/H4ag107b"], ["https://tec.openplanner.team/stops/N526aaa", "https://tec.openplanner.team/stops/N526abb"], ["https://tec.openplanner.team/stops/Lprdavi2", "https://tec.openplanner.team/stops/Lprorem2"], ["https://tec.openplanner.team/stops/LrUweve2", "https://tec.openplanner.team/stops/LsBzent2"], ["https://tec.openplanner.team/stops/Cmmegli2", "https://tec.openplanner.team/stops/Cmmpast1"], ["https://tec.openplanner.team/stops/LHXfont1", "https://tec.openplanner.team/stops/LHXn47-3"], ["https://tec.openplanner.team/stops/Ccpbrun1", "https://tec.openplanner.team/stops/H2ch123b"], ["https://tec.openplanner.team/stops/H4rx142b", "https://tec.openplanner.team/stops/H4rx175b"], ["https://tec.openplanner.team/stops/N236aia", "https://tec.openplanner.team/stops/N236aib"], ["https://tec.openplanner.team/stops/N357ada", "https://tec.openplanner.team/stops/N357afa"], ["https://tec.openplanner.team/stops/Bwspmon2", "https://tec.openplanner.team/stops/Bwspmon3"], ["https://tec.openplanner.team/stops/Lsnferr1", "https://tec.openplanner.team/stops/Lsnferr2"], ["https://tec.openplanner.team/stops/LReeg--1", "https://tec.openplanner.team/stops/LRemonu2"], ["https://tec.openplanner.team/stops/X809aaa", "https://tec.openplanner.team/stops/X809aab"], ["https://tec.openplanner.team/stops/Cgysarr1", "https://tec.openplanner.team/stops/Cwgtill2"], ["https://tec.openplanner.team/stops/X734aha", "https://tec.openplanner.team/stops/X734ahb"], ["https://tec.openplanner.team/stops/Cctjoue5", "https://tec.openplanner.team/stops/Cpllimi2"], ["https://tec.openplanner.team/stops/LMAbijo1", "https://tec.openplanner.team/stops/LMAgb--2"], ["https://tec.openplanner.team/stops/H1ha184a", "https://tec.openplanner.team/stops/H1ss351b"], ["https://tec.openplanner.team/stops/X804bzb", "https://tec.openplanner.team/stops/X831aea"], ["https://tec.openplanner.team/stops/H5qu143b", "https://tec.openplanner.team/stops/H5qu152b"], ["https://tec.openplanner.team/stops/X812ajb", "https://tec.openplanner.team/stops/X812ala"], ["https://tec.openplanner.team/stops/H2ca101b", "https://tec.openplanner.team/stops/H2ca103c"], ["https://tec.openplanner.team/stops/Bndbgar1", "https://tec.openplanner.team/stops/Btlgreg1"], ["https://tec.openplanner.team/stops/Llgelis1", "https://tec.openplanner.team/stops/Llgelis2"], ["https://tec.openplanner.team/stops/Ccunove1", "https://tec.openplanner.team/stops/Ccunove2"], ["https://tec.openplanner.team/stops/H4ru246a", "https://tec.openplanner.team/stops/H4ru246b"], ["https://tec.openplanner.team/stops/Cchba11", "https://tec.openplanner.team/stops/Cchba12"], ["https://tec.openplanner.team/stops/Loucoti2", "https://tec.openplanner.team/stops/Louvira1"], ["https://tec.openplanner.team/stops/X758agb", "https://tec.openplanner.team/stops/X758ajb"], ["https://tec.openplanner.team/stops/LAYecol1", "https://tec.openplanner.team/stops/LAYpl--1"], ["https://tec.openplanner.team/stops/Ccoacar2", "https://tec.openplanner.team/stops/Ccohotv1"], ["https://tec.openplanner.team/stops/Llglave2", "https://tec.openplanner.team/stops/Llgmako2"], ["https://tec.openplanner.team/stops/LCelabi2", "https://tec.openplanner.team/stops/LFabraa2"], ["https://tec.openplanner.team/stops/N224agc", "https://tec.openplanner.team/stops/X398afa"], ["https://tec.openplanner.team/stops/Cgd4ven1", "https://tec.openplanner.team/stops/Clgpavi2"], ["https://tec.openplanner.team/stops/X774aac", "https://tec.openplanner.team/stops/X774acb"], ["https://tec.openplanner.team/stops/Bmrlhau1", "https://tec.openplanner.team/stops/Bpienod1"], ["https://tec.openplanner.team/stops/Lghreyn1", "https://tec.openplanner.team/stops/Lghreyn2"], ["https://tec.openplanner.team/stops/LNCneuv2", "https://tec.openplanner.team/stops/Lsedavy2"], ["https://tec.openplanner.team/stops/LAWcite1", "https://tec.openplanner.team/stops/LAWvold1"], ["https://tec.openplanner.team/stops/X919ama", "https://tec.openplanner.team/stops/X919amb"], ["https://tec.openplanner.team/stops/X877acb", "https://tec.openplanner.team/stops/X877adb"], ["https://tec.openplanner.team/stops/Cvretan2", "https://tec.openplanner.team/stops/Cvrfcho1"], ["https://tec.openplanner.team/stops/LCRfavr1", "https://tec.openplanner.team/stops/LCRfavr2"], ["https://tec.openplanner.team/stops/LaMschw1", "https://tec.openplanner.team/stops/LaMschw2"], ["https://tec.openplanner.team/stops/N235aba", "https://tec.openplanner.team/stops/N235afa"], ["https://tec.openplanner.team/stops/Cchsud10", "https://tec.openplanner.team/stops/Cchtram2"], ["https://tec.openplanner.team/stops/Buccpin1", "https://tec.openplanner.team/stops/Buccvbe1"], ["https://tec.openplanner.team/stops/H2sv211a", "https://tec.openplanner.team/stops/H2sv211b"], ["https://tec.openplanner.team/stops/Bnivpal1", "https://tec.openplanner.team/stops/Bthivil2"], ["https://tec.openplanner.team/stops/H2sb239b", "https://tec.openplanner.team/stops/H2sb243c"], ["https://tec.openplanner.team/stops/Bwatbca1", "https://tec.openplanner.team/stops/Bwatcci1"], ["https://tec.openplanner.team/stops/Cgrchfe2", "https://tec.openplanner.team/stops/Clvmesa1"], ["https://tec.openplanner.team/stops/LTRgare1", "https://tec.openplanner.team/stops/LTRgare4"], ["https://tec.openplanner.team/stops/Brsggar2", "https://tec.openplanner.team/stops/Brsgtou2"], ["https://tec.openplanner.team/stops/X892aca", "https://tec.openplanner.team/stops/X892acb"], ["https://tec.openplanner.team/stops/Bptrgri1", "https://tec.openplanner.team/stops/Bptrgri2"], ["https://tec.openplanner.team/stops/X617aia", "https://tec.openplanner.team/stops/X618aja"], ["https://tec.openplanner.team/stops/Clddelh2", "https://tec.openplanner.team/stops/Cldvign2"], ["https://tec.openplanner.team/stops/LDLbaye2", "https://tec.openplanner.team/stops/LDLboul2"], ["https://tec.openplanner.team/stops/N385aca", "https://tec.openplanner.team/stops/N385aea"], ["https://tec.openplanner.team/stops/X892aba", "https://tec.openplanner.team/stops/X892abb"], ["https://tec.openplanner.team/stops/Bgnpchb1", "https://tec.openplanner.team/stops/Bgnpjbe2"], ["https://tec.openplanner.team/stops/Cchdagn1", "https://tec.openplanner.team/stops/Cchdigu4"], ["https://tec.openplanner.team/stops/Lprchat1", "https://tec.openplanner.team/stops/Lprchat2"], ["https://tec.openplanner.team/stops/Clb4dgi1", "https://tec.openplanner.team/stops/Clbpepi1"], ["https://tec.openplanner.team/stops/Cfrcomp2", "https://tec.openplanner.team/stops/Cfrplac6"], ["https://tec.openplanner.team/stops/Ctmazeb2", "https://tec.openplanner.team/stops/Ctmmana1"], ["https://tec.openplanner.team/stops/Ccuwain1", "https://tec.openplanner.team/stops/CMsolei2"], ["https://tec.openplanner.team/stops/X759aeb", "https://tec.openplanner.team/stops/X837aec"], ["https://tec.openplanner.team/stops/N506bab", "https://tec.openplanner.team/stops/N506bod"], ["https://tec.openplanner.team/stops/H1ho123b", "https://tec.openplanner.team/stops/H1ho135b"], ["https://tec.openplanner.team/stops/LHUgdpl2", "https://tec.openplanner.team/stops/LHUremy2"], ["https://tec.openplanner.team/stops/LAVstat1", "https://tec.openplanner.team/stops/LLRrape2"], ["https://tec.openplanner.team/stops/H4ru236b", "https://tec.openplanner.team/stops/H4ru243a"], ["https://tec.openplanner.team/stops/Bbiecim1", "https://tec.openplanner.team/stops/Bbiepon2"], ["https://tec.openplanner.team/stops/X879apa", "https://tec.openplanner.team/stops/X879asa"], ["https://tec.openplanner.team/stops/LAYnias1", "https://tec.openplanner.team/stops/LAYwerb1"], ["https://tec.openplanner.team/stops/LFRrohe2", "https://tec.openplanner.team/stops/LSxeg--1"], ["https://tec.openplanner.team/stops/LLmetat1", "https://tec.openplanner.team/stops/LLmvand1"], ["https://tec.openplanner.team/stops/LGlbour1", "https://tec.openplanner.team/stops/LHolone2"], ["https://tec.openplanner.team/stops/X925ama", "https://tec.openplanner.team/stops/X949ahb"], ["https://tec.openplanner.team/stops/Bbgnton1", "https://tec.openplanner.team/stops/N584alb"], ["https://tec.openplanner.team/stops/LNAbouh1", "https://tec.openplanner.team/stops/LNAmart1"], ["https://tec.openplanner.team/stops/X880adb", "https://tec.openplanner.team/stops/X880afb"], ["https://tec.openplanner.team/stops/N241afa", "https://tec.openplanner.team/stops/N241afb"], ["https://tec.openplanner.team/stops/Cctvche1", "https://tec.openplanner.team/stops/NC11agb"], ["https://tec.openplanner.team/stops/Llmcoop2", "https://tec.openplanner.team/stops/Llmlaro2"], ["https://tec.openplanner.team/stops/N528ata", "https://tec.openplanner.team/stops/N542apb"], ["https://tec.openplanner.team/stops/X759aaa", "https://tec.openplanner.team/stops/X837alb"], ["https://tec.openplanner.team/stops/X397aac", "https://tec.openplanner.team/stops/X398acb"], ["https://tec.openplanner.team/stops/LEBmoul1", "https://tec.openplanner.team/stops/LEMec--1"], ["https://tec.openplanner.team/stops/X746aca", "https://tec.openplanner.team/stops/X746ala"], ["https://tec.openplanner.team/stops/H4mo163a", "https://tec.openplanner.team/stops/H4mo169a"], ["https://tec.openplanner.team/stops/H2hg271b", "https://tec.openplanner.team/stops/H2hg272a"], ["https://tec.openplanner.team/stops/Bottbru2", "https://tec.openplanner.team/stops/Bottppa1"], ["https://tec.openplanner.team/stops/X831aab", "https://tec.openplanner.team/stops/X831acb"], ["https://tec.openplanner.team/stops/N501fsa", "https://tec.openplanner.team/stops/N501mrb"], ["https://tec.openplanner.team/stops/N542amb", "https://tec.openplanner.team/stops/N578abb"], ["https://tec.openplanner.team/stops/N501grg", "https://tec.openplanner.team/stops/N501zda"], ["https://tec.openplanner.team/stops/X733aca", "https://tec.openplanner.team/stops/X734aob"], ["https://tec.openplanner.team/stops/X664aka", "https://tec.openplanner.team/stops/X664asa"], ["https://tec.openplanner.team/stops/Bohnrpl1", "https://tec.openplanner.team/stops/Bohnrsc2"], ["https://tec.openplanner.team/stops/Lmobrac2", "https://tec.openplanner.team/stops/Ltibure3"], ["https://tec.openplanner.team/stops/LVAakke2", "https://tec.openplanner.team/stops/LVAwolf1"], ["https://tec.openplanner.team/stops/N501bsa", "https://tec.openplanner.team/stops/N501mwa"], ["https://tec.openplanner.team/stops/H1je220b", "https://tec.openplanner.team/stops/H1je220d"], ["https://tec.openplanner.team/stops/LFlabba2", "https://tec.openplanner.team/stops/LSkkeri2"], ["https://tec.openplanner.team/stops/Louairl2", "https://tec.openplanner.team/stops/Lscstan2"], ["https://tec.openplanner.team/stops/N506aha", "https://tec.openplanner.team/stops/N506ahb"], ["https://tec.openplanner.team/stops/H2mg152a", "https://tec.openplanner.team/stops/H2mg153a"], ["https://tec.openplanner.team/stops/LFCvoer1", "https://tec.openplanner.team/stops/LWRcruc1"], ["https://tec.openplanner.team/stops/N547ana", "https://tec.openplanner.team/stops/N553ama"], ["https://tec.openplanner.team/stops/N147aaa", "https://tec.openplanner.team/stops/N147acb"], ["https://tec.openplanner.team/stops/Cpl4bra2", "https://tec.openplanner.team/stops/Cplcite1"], ["https://tec.openplanner.team/stops/Blimegl1", "https://tec.openplanner.team/stops/Bottcro2"], ["https://tec.openplanner.team/stops/X808aka", "https://tec.openplanner.team/stops/X808akb"], ["https://tec.openplanner.team/stops/H4he104a", "https://tec.openplanner.team/stops/H4he104b"], ["https://tec.openplanner.team/stops/Brixpro2", "https://tec.openplanner.team/stops/Brixpro4"], ["https://tec.openplanner.team/stops/Lemacac1", "https://tec.openplanner.team/stops/Lemdupo2"], ["https://tec.openplanner.team/stops/X826aaa", "https://tec.openplanner.team/stops/X826aab"], ["https://tec.openplanner.team/stops/Bjaugar4", "https://tec.openplanner.team/stops/Bjauwar1"], ["https://tec.openplanner.team/stops/X660aja", "https://tec.openplanner.team/stops/X660ajb"], ["https://tec.openplanner.team/stops/X754aeb", "https://tec.openplanner.team/stops/X754anb"], ["https://tec.openplanner.team/stops/H4ka180a", "https://tec.openplanner.team/stops/H4ka190a"], ["https://tec.openplanner.team/stops/H4ld126b", "https://tec.openplanner.team/stops/H4to131b"], ["https://tec.openplanner.team/stops/LWEcool1", "https://tec.openplanner.team/stops/LWEgare1"], ["https://tec.openplanner.team/stops/X901ana", "https://tec.openplanner.team/stops/X901apb"], ["https://tec.openplanner.team/stops/X756aaa", "https://tec.openplanner.team/stops/X756aba"], ["https://tec.openplanner.team/stops/N558aaa", "https://tec.openplanner.team/stops/NL67aca"], ["https://tec.openplanner.team/stops/X982aea", "https://tec.openplanner.team/stops/X982bzb"], ["https://tec.openplanner.team/stops/H2bh107b", "https://tec.openplanner.team/stops/H2jo164b"], ["https://tec.openplanner.team/stops/Beclbar2", "https://tec.openplanner.team/stops/H2me117b"], ["https://tec.openplanner.team/stops/X394aeb", "https://tec.openplanner.team/stops/X397aab"], ["https://tec.openplanner.team/stops/LkRrauw1", "https://tec.openplanner.team/stops/LmUzent1"], ["https://tec.openplanner.team/stops/LEScarr1", "https://tec.openplanner.team/stops/LESryon1"], ["https://tec.openplanner.team/stops/LSTec--1", "https://tec.openplanner.team/stops/LSTec--2"], ["https://tec.openplanner.team/stops/Cbimonu2", "https://tec.openplanner.team/stops/Cbiseur1"], ["https://tec.openplanner.team/stops/X673aba", "https://tec.openplanner.team/stops/X673ada"], ["https://tec.openplanner.team/stops/LsVfrie1", "https://tec.openplanner.team/stops/LsVhupp1"], ["https://tec.openplanner.team/stops/Cchabat1", "https://tec.openplanner.team/stops/Cchmott2"], ["https://tec.openplanner.team/stops/N501gab", "https://tec.openplanner.team/stops/N501grb"], ["https://tec.openplanner.team/stops/LSemc--1", "https://tec.openplanner.team/stops/LSerout1"], ["https://tec.openplanner.team/stops/Clvndam1", "https://tec.openplanner.team/stops/Clvndam2"], ["https://tec.openplanner.team/stops/H1hw120b", "https://tec.openplanner.team/stops/H1hw125a"], ["https://tec.openplanner.team/stops/X641avb", "https://tec.openplanner.team/stops/X641azb"], ["https://tec.openplanner.team/stops/Cselait2", "https://tec.openplanner.team/stops/Cvtchap2"], ["https://tec.openplanner.team/stops/Bmrspel1", "https://tec.openplanner.team/stops/Bohnmon2"], ["https://tec.openplanner.team/stops/Bsaumlk3", "https://tec.openplanner.team/stops/Bsauvmo2"], ["https://tec.openplanner.team/stops/Lbrmc--2", "https://tec.openplanner.team/stops/Lbrquai1"], ["https://tec.openplanner.team/stops/H4fo116a", "https://tec.openplanner.team/stops/H4fo116b"], ["https://tec.openplanner.team/stops/Clrplac1", "https://tec.openplanner.team/stops/Clrplac2"], ["https://tec.openplanner.team/stops/LHhmohe2", "https://tec.openplanner.team/stops/NL30aja"], ["https://tec.openplanner.team/stops/Bmanati1", "https://tec.openplanner.team/stops/Bsenbmc1"], ["https://tec.openplanner.team/stops/LPOecol1", "https://tec.openplanner.team/stops/LPOecol2"], ["https://tec.openplanner.team/stops/N501ajb", "https://tec.openplanner.team/stops/N501bfb"], ["https://tec.openplanner.team/stops/LFFeg--2", "https://tec.openplanner.team/stops/LFFmonu1"], ["https://tec.openplanner.team/stops/Bboutry2", "https://tec.openplanner.team/stops/Bbsttab2"], ["https://tec.openplanner.team/stops/X615beb", "https://tec.openplanner.team/stops/X616ajb"], ["https://tec.openplanner.team/stops/H1an102b", "https://tec.openplanner.team/stops/H1an103a"], ["https://tec.openplanner.team/stops/Csachas1", "https://tec.openplanner.team/stops/Csachas2"], ["https://tec.openplanner.team/stops/X927aaa", "https://tec.openplanner.team/stops/X927aab"], ["https://tec.openplanner.team/stops/Llgangl1", "https://tec.openplanner.team/stops/Llghoch3"], ["https://tec.openplanner.team/stops/LFsherm1", "https://tec.openplanner.team/stops/LSLhale2"], ["https://tec.openplanner.team/stops/Lagcolo1", "https://tec.openplanner.team/stops/LTIpres1"], ["https://tec.openplanner.team/stops/Blasbpr1", "https://tec.openplanner.team/stops/Blasvil1"], ["https://tec.openplanner.team/stops/H4ml206a", "https://tec.openplanner.team/stops/H4pi136b"], ["https://tec.openplanner.team/stops/H4bx108b", "https://tec.openplanner.team/stops/H4te253b"], ["https://tec.openplanner.team/stops/Cbzfrom1", "https://tec.openplanner.team/stops/Cluberl2"], ["https://tec.openplanner.team/stops/H2tr250a", "https://tec.openplanner.team/stops/H2tr257a"], ["https://tec.openplanner.team/stops/Lsepaqu1", "https://tec.openplanner.team/stops/Lsepcha1"], ["https://tec.openplanner.team/stops/H1le119a", "https://tec.openplanner.team/stops/H1le119b"], ["https://tec.openplanner.team/stops/Bmarmco1", "https://tec.openplanner.team/stops/Bmarpla2"], ["https://tec.openplanner.team/stops/Cmmgadi2", "https://tec.openplanner.team/stops/Cmmphai2"], ["https://tec.openplanner.team/stops/X824aia", "https://tec.openplanner.team/stops/X824aib"], ["https://tec.openplanner.team/stops/Btileco1", "https://tec.openplanner.team/stops/Btileco2"], ["https://tec.openplanner.team/stops/LHYlinc1", "https://tec.openplanner.team/stops/LHYlinc2"], ["https://tec.openplanner.team/stops/N501cmb", "https://tec.openplanner.team/stops/N501cnb"], ["https://tec.openplanner.team/stops/Lanothe1", "https://tec.openplanner.team/stops/Lanothe2"], ["https://tec.openplanner.team/stops/N236ana", "https://tec.openplanner.team/stops/N236aoa"], ["https://tec.openplanner.team/stops/X983aaa", "https://tec.openplanner.team/stops/X986abb"], ["https://tec.openplanner.team/stops/H2fa100a", "https://tec.openplanner.team/stops/H2fa101b"], ["https://tec.openplanner.team/stops/Bottbou2", "https://tec.openplanner.team/stops/Bottppa1"], ["https://tec.openplanner.team/stops/H1hr128a", "https://tec.openplanner.team/stops/H1hr128b"], ["https://tec.openplanner.team/stops/X878abb", "https://tec.openplanner.team/stops/X995aga"], ["https://tec.openplanner.team/stops/Bhenfla1", "https://tec.openplanner.team/stops/Brebcgi1"], ["https://tec.openplanner.team/stops/LRRbonr1", "https://tec.openplanner.team/stops/LRRlimi2"], ["https://tec.openplanner.team/stops/LVLm10-1", "https://tec.openplanner.team/stops/LVLmart2"], ["https://tec.openplanner.team/stops/Lceavia1", "https://tec.openplanner.team/stops/Lceavia2"], ["https://tec.openplanner.team/stops/N308agb", "https://tec.openplanner.team/stops/N308aha"], ["https://tec.openplanner.team/stops/X762abb", "https://tec.openplanner.team/stops/X786ajb"], ["https://tec.openplanner.team/stops/H4ga159a", "https://tec.openplanner.team/stops/H4vz370b"], ["https://tec.openplanner.team/stops/Cjualed1", "https://tec.openplanner.team/stops/Cjuledo2"], ["https://tec.openplanner.team/stops/H5ar103a", "https://tec.openplanner.team/stops/H5me105a"], ["https://tec.openplanner.team/stops/Lflchan1", "https://tec.openplanner.team/stops/Lflchan2"], ["https://tec.openplanner.team/stops/X770acb", "https://tec.openplanner.team/stops/X770adb"], ["https://tec.openplanner.team/stops/X768aib", "https://tec.openplanner.team/stops/X769aka"], ["https://tec.openplanner.team/stops/LHhchau1", "https://tec.openplanner.team/stops/N507aeb"], ["https://tec.openplanner.team/stops/X982aga", "https://tec.openplanner.team/stops/X982bxb"], ["https://tec.openplanner.team/stops/Lgrclas1", "https://tec.openplanner.team/stops/Lgrcour1"], ["https://tec.openplanner.team/stops/N584bbb", "https://tec.openplanner.team/stops/N584boa"], ["https://tec.openplanner.team/stops/Btannda1", "https://tec.openplanner.team/stops/Btanpla1"], ["https://tec.openplanner.team/stops/NC44afb", "https://tec.openplanner.team/stops/NC44agb"], ["https://tec.openplanner.team/stops/Ladotto2", "https://tec.openplanner.team/stops/Ladthom1"], ["https://tec.openplanner.team/stops/X822anb", "https://tec.openplanner.team/stops/X822aoa"], ["https://tec.openplanner.team/stops/LAUberg2", "https://tec.openplanner.team/stops/LAUcose1"], ["https://tec.openplanner.team/stops/LNCchev1", "https://tec.openplanner.team/stops/LNCloui1"], ["https://tec.openplanner.team/stops/H2le176a", "https://tec.openplanner.team/stops/H2re174b"], ["https://tec.openplanner.team/stops/H4ty305d", "https://tec.openplanner.team/stops/H4ty357a"], ["https://tec.openplanner.team/stops/H1fl140a", "https://tec.openplanner.team/stops/H1je368a"], ["https://tec.openplanner.team/stops/LeUbush1", "https://tec.openplanner.team/stops/LkTkabi2"], ["https://tec.openplanner.team/stops/H4mo147a", "https://tec.openplanner.team/stops/H4mo208b"], ["https://tec.openplanner.team/stops/X811alb", "https://tec.openplanner.team/stops/X811aob"], ["https://tec.openplanner.team/stops/X839aaa", "https://tec.openplanner.team/stops/X839abb"], ["https://tec.openplanner.team/stops/Ccuhaie2", "https://tec.openplanner.team/stops/Ccutrav4"], ["https://tec.openplanner.team/stops/X941aga", "https://tec.openplanner.team/stops/X949aja"], ["https://tec.openplanner.team/stops/Lgrclin3", "https://tec.openplanner.team/stops/Lgrorch1"], ["https://tec.openplanner.team/stops/Bhmmcha2", "https://tec.openplanner.team/stops/Bhmmtou2"], ["https://tec.openplanner.team/stops/H5at107a", "https://tec.openplanner.team/stops/H5at114a"], ["https://tec.openplanner.team/stops/H5rx125a", "https://tec.openplanner.team/stops/H5rx140a"], ["https://tec.openplanner.team/stops/N558aeb", "https://tec.openplanner.team/stops/N558afb"], ["https://tec.openplanner.team/stops/Cnagrro1", "https://tec.openplanner.team/stops/Cnagrro2"], ["https://tec.openplanner.team/stops/X850aja", "https://tec.openplanner.team/stops/X850ajb"], ["https://tec.openplanner.team/stops/N501goa", "https://tec.openplanner.team/stops/N501hxz"], ["https://tec.openplanner.team/stops/LRRmeta1", "https://tec.openplanner.team/stops/LRRoser2"], ["https://tec.openplanner.team/stops/NH01aod", "https://tec.openplanner.team/stops/NH01aua"], ["https://tec.openplanner.team/stops/X615aaa", "https://tec.openplanner.team/stops/X615ajb"], ["https://tec.openplanner.team/stops/H2hg144a", "https://tec.openplanner.team/stops/H2hg270a"], ["https://tec.openplanner.team/stops/LVlleno1", "https://tec.openplanner.team/stops/LVltige2"], ["https://tec.openplanner.team/stops/LMsalen2", "https://tec.openplanner.team/stops/LMsviad2"], ["https://tec.openplanner.team/stops/X760aca", "https://tec.openplanner.team/stops/X788aba"], ["https://tec.openplanner.team/stops/H1hq128a", "https://tec.openplanner.team/stops/H1hq158a"], ["https://tec.openplanner.team/stops/N569aic", "https://tec.openplanner.team/stops/N569ajb"], ["https://tec.openplanner.team/stops/Bblafra3", "https://tec.openplanner.team/stops/Bblasta1"], ["https://tec.openplanner.team/stops/LNEcouc1", "https://tec.openplanner.team/stops/LNEpass2"], ["https://tec.openplanner.team/stops/Bixlfla1", "https://tec.openplanner.team/stops/Bixllep1"], ["https://tec.openplanner.team/stops/H2mg136b", "https://tec.openplanner.team/stops/H2mg140b"], ["https://tec.openplanner.team/stops/Craappa2", "https://tec.openplanner.team/stops/Cradest1"], ["https://tec.openplanner.team/stops/Lousimo1", "https://tec.openplanner.team/stops/Lousimo2"], ["https://tec.openplanner.team/stops/Boveklo1", "https://tec.openplanner.team/stops/Bovevri1"], ["https://tec.openplanner.team/stops/NC24aeb", "https://tec.openplanner.team/stops/NC24afa"], ["https://tec.openplanner.team/stops/H4hg160a", "https://tec.openplanner.team/stops/H4hg160b"], ["https://tec.openplanner.team/stops/H1ro131b", "https://tec.openplanner.team/stops/H1ro137a"], ["https://tec.openplanner.team/stops/Lhrdeme3", "https://tec.openplanner.team/stops/Lhrhome2"], ["https://tec.openplanner.team/stops/X609aja", "https://tec.openplanner.team/stops/X610aia"], ["https://tec.openplanner.team/stops/Lcebarr2", "https://tec.openplanner.team/stops/Lcepont5"], ["https://tec.openplanner.team/stops/LHrchez2", "https://tec.openplanner.team/stops/LHrwaya1"], ["https://tec.openplanner.team/stops/Lgdhura2", "https://tec.openplanner.team/stops/Lprtour2"], ["https://tec.openplanner.team/stops/N152aad", "https://tec.openplanner.team/stops/N152abb"], ["https://tec.openplanner.team/stops/X666aka", "https://tec.openplanner.team/stops/X745aeb"], ["https://tec.openplanner.team/stops/N508ada", "https://tec.openplanner.team/stops/N508ama"], ["https://tec.openplanner.team/stops/NL76aab", "https://tec.openplanner.team/stops/NL76asa"], ["https://tec.openplanner.team/stops/LBSvi521", "https://tec.openplanner.team/stops/LWOsudr2"], ["https://tec.openplanner.team/stops/H4ro154a", "https://tec.openplanner.team/stops/H4ro154b"], ["https://tec.openplanner.team/stops/N505agb", "https://tec.openplanner.team/stops/N537aib"], ["https://tec.openplanner.team/stops/Cjuhame2", "https://tec.openplanner.team/stops/Cjulamb1"], ["https://tec.openplanner.team/stops/Bjanegl2", "https://tec.openplanner.team/stops/Bjanegl3"], ["https://tec.openplanner.team/stops/Lhuchev1", "https://tec.openplanner.team/stops/Lhulibe2"], ["https://tec.openplanner.team/stops/Ladfran1", "https://tec.openplanner.team/stops/Ladfran3"], ["https://tec.openplanner.team/stops/H1el140c", "https://tec.openplanner.team/stops/H1tl121a"], ["https://tec.openplanner.team/stops/Cgy3012", "https://tec.openplanner.team/stops/Cgyaudu2"], ["https://tec.openplanner.team/stops/Bnodtir2", "https://tec.openplanner.team/stops/Bnodtir4"], ["https://tec.openplanner.team/stops/X754agb", "https://tec.openplanner.team/stops/X754akb"], ["https://tec.openplanner.team/stops/H1cu117c", "https://tec.openplanner.team/stops/H1cu123a"], ["https://tec.openplanner.team/stops/X681aga", "https://tec.openplanner.team/stops/X687aka"], ["https://tec.openplanner.team/stops/Lrebriq1", "https://tec.openplanner.team/stops/Lrecomp2"], ["https://tec.openplanner.team/stops/Lstauna2", "https://tec.openplanner.team/stops/Lsteg--2"], ["https://tec.openplanner.team/stops/Lvcchau2", "https://tec.openplanner.team/stops/Lvcchev3"], ["https://tec.openplanner.team/stops/Llgcour3", "https://tec.openplanner.team/stops/Llgpitt1"], ["https://tec.openplanner.team/stops/Lflprev1", "https://tec.openplanner.team/stops/Lflroms2"], ["https://tec.openplanner.team/stops/H4ty299f", "https://tec.openplanner.team/stops/H4ty326b"], ["https://tec.openplanner.team/stops/N254aha", "https://tec.openplanner.team/stops/N254ahb"], ["https://tec.openplanner.team/stops/Lemjoba2", "https://tec.openplanner.team/stops/Lemsart2"], ["https://tec.openplanner.team/stops/LFsec--1", "https://tec.openplanner.team/stops/LFsec--2"], ["https://tec.openplanner.team/stops/Bplnbal2", "https://tec.openplanner.team/stops/Bplnfpa2"], ["https://tec.openplanner.team/stops/LHhvivi1", "https://tec.openplanner.team/stops/N507aeb"], ["https://tec.openplanner.team/stops/LPLc65-2", "https://tec.openplanner.team/stops/LPLcarr1"], ["https://tec.openplanner.team/stops/Lseaven1", "https://tec.openplanner.team/stops/Lseaven2"], ["https://tec.openplanner.team/stops/LEN42--2", "https://tec.openplanner.team/stops/LENchem2"], ["https://tec.openplanner.team/stops/H3so158a", "https://tec.openplanner.team/stops/H3so162a"], ["https://tec.openplanner.team/stops/Cgzbouh1", "https://tec.openplanner.team/stops/Cgzgrru1"], ["https://tec.openplanner.team/stops/N103aba", "https://tec.openplanner.team/stops/N103acc"], ["https://tec.openplanner.team/stops/H1cr100a", "https://tec.openplanner.team/stops/H1ry135c"], ["https://tec.openplanner.team/stops/Lsmlina*", "https://tec.openplanner.team/stops/Lsmlina2"], ["https://tec.openplanner.team/stops/X902aja", "https://tec.openplanner.team/stops/X902ala"], ["https://tec.openplanner.team/stops/X639aqa", "https://tec.openplanner.team/stops/X639aqb"], ["https://tec.openplanner.team/stops/N203adb", "https://tec.openplanner.team/stops/N203aeb"], ["https://tec.openplanner.team/stops/LLegare1", "https://tec.openplanner.team/stops/X547ana"], ["https://tec.openplanner.team/stops/LLOnand1", "https://tec.openplanner.team/stops/LRRrimi2"], ["https://tec.openplanner.team/stops/X940aha", "https://tec.openplanner.team/stops/X946ahb"], ["https://tec.openplanner.team/stops/LaAmise1", "https://tec.openplanner.team/stops/LaApost1"], ["https://tec.openplanner.team/stops/N310ada", "https://tec.openplanner.team/stops/N313aaa"], ["https://tec.openplanner.team/stops/LELeg--1", "https://tec.openplanner.team/stops/LELeg--2"], ["https://tec.openplanner.team/stops/Baegegl1", "https://tec.openplanner.team/stops/Bflcpco2"], ["https://tec.openplanner.team/stops/LDAalbe1", "https://tec.openplanner.team/stops/LDAchau1"], ["https://tec.openplanner.team/stops/X661ahb", "https://tec.openplanner.team/stops/X661aja"], ["https://tec.openplanner.team/stops/N503agb", "https://tec.openplanner.team/stops/N535aaa"], ["https://tec.openplanner.team/stops/H1mm128a", "https://tec.openplanner.team/stops/H1vb148a"], ["https://tec.openplanner.team/stops/H1ca106b", "https://tec.openplanner.team/stops/H1ca106c"], ["https://tec.openplanner.team/stops/Lsefoot1", "https://tec.openplanner.team/stops/Lsestap1"], ["https://tec.openplanner.team/stops/X804afb", "https://tec.openplanner.team/stops/X804aia"], ["https://tec.openplanner.team/stops/Llgpari2", "https://tec.openplanner.team/stops/Llgstvi2"], ["https://tec.openplanner.team/stops/Bnivcol1", "https://tec.openplanner.team/stops/Bnivsoi2"], ["https://tec.openplanner.team/stops/N534atb", "https://tec.openplanner.team/stops/N534atc"], ["https://tec.openplanner.team/stops/Bthsset2", "https://tec.openplanner.team/stops/NL37ajb"], ["https://tec.openplanner.team/stops/Barqbar2", "https://tec.openplanner.team/stops/Bptrvil2"], ["https://tec.openplanner.team/stops/Lmodeja2", "https://tec.openplanner.team/stops/Lsnfoot2"], ["https://tec.openplanner.team/stops/H4do103a", "https://tec.openplanner.team/stops/H4do103b"], ["https://tec.openplanner.team/stops/Cflmarc2", "https://tec.openplanner.team/stops/Cwgmell4"], ["https://tec.openplanner.team/stops/X925aea", "https://tec.openplanner.team/stops/X925ala"], ["https://tec.openplanner.team/stops/NL76aka", "https://tec.openplanner.team/stops/NL76akb"], ["https://tec.openplanner.team/stops/Ladplen*", "https://tec.openplanner.team/stops/LClsacr2"], ["https://tec.openplanner.team/stops/LGrfont1", "https://tec.openplanner.team/stops/LGrfont2"], ["https://tec.openplanner.team/stops/H1gh371a", "https://tec.openplanner.team/stops/H1gh371b"], ["https://tec.openplanner.team/stops/H2sb238a", "https://tec.openplanner.team/stops/H2sb238b"], ["https://tec.openplanner.team/stops/LSecomm2", "https://tec.openplanner.team/stops/LVbsurr1"], ["https://tec.openplanner.team/stops/N125acb", "https://tec.openplanner.team/stops/N149ahc"], ["https://tec.openplanner.team/stops/Chhbiet2", "https://tec.openplanner.team/stops/Chhprai2"], ["https://tec.openplanner.team/stops/Ldijean2", "https://tec.openplanner.team/stops/Ldipost1"], ["https://tec.openplanner.team/stops/H2sb223a", "https://tec.openplanner.team/stops/H2sb238b"], ["https://tec.openplanner.team/stops/LLNogne1", "https://tec.openplanner.team/stops/LSpbawe2"], ["https://tec.openplanner.team/stops/LSNecol3", "https://tec.openplanner.team/stops/LXHfond2"], ["https://tec.openplanner.team/stops/X617aca", "https://tec.openplanner.team/stops/X617acb"], ["https://tec.openplanner.team/stops/LFochap2", "https://tec.openplanner.team/stops/LJAhanq3"], ["https://tec.openplanner.team/stops/Brsggar1", "https://tec.openplanner.team/stops/Brsgter2"], ["https://tec.openplanner.team/stops/Crcegli4", "https://tec.openplanner.team/stops/Crcverr2"], ["https://tec.openplanner.team/stops/N535afa", "https://tec.openplanner.team/stops/N535atb"], ["https://tec.openplanner.team/stops/N501gcb", "https://tec.openplanner.team/stops/N501lkb"], ["https://tec.openplanner.team/stops/LOesour2", "https://tec.openplanner.team/stops/LWAhart1"], ["https://tec.openplanner.team/stops/Cmqbasv2", "https://tec.openplanner.team/stops/Cmqegl2"], ["https://tec.openplanner.team/stops/X618aaa", "https://tec.openplanner.team/stops/X618aab"], ["https://tec.openplanner.team/stops/H1pa104b", "https://tec.openplanner.team/stops/H1pa110a"], ["https://tec.openplanner.team/stops/X992aab", "https://tec.openplanner.team/stops/X992aac"], ["https://tec.openplanner.team/stops/Bcbqtub1", "https://tec.openplanner.team/stops/Bcbqtub2"], ["https://tec.openplanner.team/stops/Canfief1", "https://tec.openplanner.team/stops/Canrsta1"], ["https://tec.openplanner.team/stops/LBkcarr1", "https://tec.openplanner.team/stops/LlNbusc1"], ["https://tec.openplanner.team/stops/N308aic", "https://tec.openplanner.team/stops/N308bhb"], ["https://tec.openplanner.team/stops/LMHeg--2", "https://tec.openplanner.team/stops/NL73aea"], ["https://tec.openplanner.team/stops/Cfrfaub2", "https://tec.openplanner.team/stops/Cfrfaub4"], ["https://tec.openplanner.team/stops/N511atb", "https://tec.openplanner.team/stops/N511aua"], ["https://tec.openplanner.team/stops/Bcbqcht2", "https://tec.openplanner.team/stops/Bcbqpon2"], ["https://tec.openplanner.team/stops/Bnilegl1", "https://tec.openplanner.team/stops/Bnilreg1"], ["https://tec.openplanner.team/stops/X601aia", "https://tec.openplanner.team/stops/X662ata"], ["https://tec.openplanner.team/stops/H1br131a", "https://tec.openplanner.team/stops/H1br134a"], ["https://tec.openplanner.team/stops/Cchhopi2", "https://tec.openplanner.team/stops/Cchwate3"], ["https://tec.openplanner.team/stops/Cchfort1", "https://tec.openplanner.team/stops/Cchmamb2"], ["https://tec.openplanner.team/stops/N137aab", "https://tec.openplanner.team/stops/N137aba"], ["https://tec.openplanner.team/stops/Cvrchap2", "https://tec.openplanner.team/stops/Cvregl2"], ["https://tec.openplanner.team/stops/X982atb", "https://tec.openplanner.team/stops/X982aub"], ["https://tec.openplanner.team/stops/N217aea", "https://tec.openplanner.team/stops/N287aba"], ["https://tec.openplanner.team/stops/Bnil3fo2", "https://tec.openplanner.team/stops/Bnilcab1"], ["https://tec.openplanner.team/stops/N501bha", "https://tec.openplanner.team/stops/N501lpb"], ["https://tec.openplanner.team/stops/H1ch143a", "https://tec.openplanner.team/stops/H1ch143b"], ["https://tec.openplanner.team/stops/LBjflor1", "https://tec.openplanner.team/stops/LBjpech1"], ["https://tec.openplanner.team/stops/H1fr130a", "https://tec.openplanner.team/stops/H1fr152a"], ["https://tec.openplanner.team/stops/LFdeg--1", "https://tec.openplanner.team/stops/LFdeg--3"], ["https://tec.openplanner.team/stops/Clusncb4", "https://tec.openplanner.team/stops/Cpctunn2"], ["https://tec.openplanner.team/stops/Bbeabme1", "https://tec.openplanner.team/stops/Bbeaneu3"], ["https://tec.openplanner.team/stops/X650acb", "https://tec.openplanner.team/stops/X650ajb"], ["https://tec.openplanner.team/stops/Lhutann1", "https://tec.openplanner.team/stops/Lhuwaid2"], ["https://tec.openplanner.team/stops/Bbch4br2", "https://tec.openplanner.team/stops/Bbch4br6"], ["https://tec.openplanner.team/stops/X764abb", "https://tec.openplanner.team/stops/X764aga"], ["https://tec.openplanner.team/stops/N512arb", "https://tec.openplanner.team/stops/N512asa"], ["https://tec.openplanner.team/stops/LMXaven1", "https://tec.openplanner.team/stops/LMXempe1"], ["https://tec.openplanner.team/stops/X808aia", "https://tec.openplanner.team/stops/X808aja"], ["https://tec.openplanner.team/stops/Cmyrens2", "https://tec.openplanner.team/stops/Cmyvert1"], ["https://tec.openplanner.team/stops/H4ha167a", "https://tec.openplanner.team/stops/H4ru238b"], ["https://tec.openplanner.team/stops/X766abb", "https://tec.openplanner.team/stops/X768akb"], ["https://tec.openplanner.team/stops/LFemoul2", "https://tec.openplanner.team/stops/LFethie2"], ["https://tec.openplanner.team/stops/N525aed", "https://tec.openplanner.team/stops/N525afa"], ["https://tec.openplanner.team/stops/Lhrpaix2", "https://tec.openplanner.team/stops/Llgcoro1"], ["https://tec.openplanner.team/stops/Cfosurs2", "https://tec.openplanner.team/stops/Cptsncb1"], ["https://tec.openplanner.team/stops/N310acb", "https://tec.openplanner.team/stops/N310adb"], ["https://tec.openplanner.team/stops/Bblacea1", "https://tec.openplanner.team/stops/Bblaegl1"], ["https://tec.openplanner.team/stops/Lsehya-4", "https://tec.openplanner.team/stops/Lsemaqu2"], ["https://tec.openplanner.team/stops/X949agb", "https://tec.openplanner.team/stops/X949aja"], ["https://tec.openplanner.team/stops/N506aaa", "https://tec.openplanner.team/stops/N506bvb"], ["https://tec.openplanner.team/stops/X907agb", "https://tec.openplanner.team/stops/X907aib"], ["https://tec.openplanner.team/stops/Bborcro1", "https://tec.openplanner.team/stops/Bitrpar2"], ["https://tec.openplanner.team/stops/X657abb", "https://tec.openplanner.team/stops/X657acb"], ["https://tec.openplanner.team/stops/LOuilc-*", "https://tec.openplanner.team/stops/LOuplac2"], ["https://tec.openplanner.team/stops/N202afa", "https://tec.openplanner.team/stops/N202ahb"], ["https://tec.openplanner.team/stops/X982boa", "https://tec.openplanner.team/stops/X982bra"], ["https://tec.openplanner.team/stops/X750alb", "https://tec.openplanner.team/stops/X750bna"], ["https://tec.openplanner.team/stops/LVLbovy1", "https://tec.openplanner.team/stops/LVLruis2"], ["https://tec.openplanner.team/stops/H4er123b", "https://tec.openplanner.team/stops/H4er125a"], ["https://tec.openplanner.team/stops/LWAvand2", "https://tec.openplanner.team/stops/LWAvisi2"], ["https://tec.openplanner.team/stops/Clomakr1", "https://tec.openplanner.team/stops/Clostan2"], ["https://tec.openplanner.team/stops/Cgzfarc1", "https://tec.openplanner.team/stops/Cgzm1481"], ["https://tec.openplanner.team/stops/H1ci102a", "https://tec.openplanner.team/stops/H1hn206a"], ["https://tec.openplanner.team/stops/LOcalbe2", "https://tec.openplanner.team/stops/LTecent4"], ["https://tec.openplanner.team/stops/X921ahb", "https://tec.openplanner.team/stops/X921ajd"], ["https://tec.openplanner.team/stops/Lvecote2", "https://tec.openplanner.team/stops/Lvejeha2"], ["https://tec.openplanner.team/stops/H4ta121a", "https://tec.openplanner.team/stops/H4ta130a"], ["https://tec.openplanner.team/stops/H4ca123a", "https://tec.openplanner.team/stops/H4ca124a"], ["https://tec.openplanner.team/stops/X903aca", "https://tec.openplanner.team/stops/X903aga"], ["https://tec.openplanner.team/stops/H1gg115b", "https://tec.openplanner.team/stops/H1gg117b"], ["https://tec.openplanner.team/stops/LHUzoni3", "https://tec.openplanner.team/stops/LTiforg1"], ["https://tec.openplanner.team/stops/X664aaa", "https://tec.openplanner.team/stops/X664aca"], ["https://tec.openplanner.team/stops/LtH37c-2", "https://tec.openplanner.team/stops/LtHkreu3"], ["https://tec.openplanner.team/stops/H5rx129a", "https://tec.openplanner.team/stops/H5rx130a"], ["https://tec.openplanner.team/stops/Lseaven1", "https://tec.openplanner.team/stops/Lsemara2"], ["https://tec.openplanner.team/stops/Bnstmig1", "https://tec.openplanner.team/stops/Bnstver2"], ["https://tec.openplanner.team/stops/Cmqbert1", "https://tec.openplanner.team/stops/Csecroi1"], ["https://tec.openplanner.team/stops/Cnacout1", "https://tec.openplanner.team/stops/Cnacout2"], ["https://tec.openplanner.team/stops/H4fr140a", "https://tec.openplanner.team/stops/H4fr140b"], ["https://tec.openplanner.team/stops/X654ahb", "https://tec.openplanner.team/stops/X670aab"], ["https://tec.openplanner.team/stops/LHScite1", "https://tec.openplanner.team/stops/LHStrez1"], ["https://tec.openplanner.team/stops/LDObell1", "https://tec.openplanner.team/stops/LDOprev1"], ["https://tec.openplanner.team/stops/Llgbago2", "https://tec.openplanner.team/stops/Llgmass1"], ["https://tec.openplanner.team/stops/Lanhoud2", "https://tec.openplanner.team/stops/Lanhoud3"], ["https://tec.openplanner.team/stops/Bnivfdu1", "https://tec.openplanner.team/stops/Bnivpal2"], ["https://tec.openplanner.team/stops/Bhevwzw2", "https://tec.openplanner.team/stops/Bleugar1"], ["https://tec.openplanner.team/stops/H1ms296b", "https://tec.openplanner.team/stops/H1ms903a"], ["https://tec.openplanner.team/stops/X354ada", "https://tec.openplanner.team/stops/X354adb"], ["https://tec.openplanner.team/stops/N501jjb", "https://tec.openplanner.team/stops/N501jkb"], ["https://tec.openplanner.team/stops/N232aaa", "https://tec.openplanner.team/stops/N232abb"], ["https://tec.openplanner.team/stops/N245acb", "https://tec.openplanner.team/stops/N340aha"], ["https://tec.openplanner.team/stops/X804cba", "https://tec.openplanner.team/stops/X804cbb"], ["https://tec.openplanner.team/stops/X723aeb", "https://tec.openplanner.team/stops/X766afa"], ["https://tec.openplanner.team/stops/H4os217a", "https://tec.openplanner.team/stops/H4os222a"], ["https://tec.openplanner.team/stops/N127bfa", "https://tec.openplanner.team/stops/N127bha"], ["https://tec.openplanner.team/stops/CMsud1", "https://tec.openplanner.team/stops/CMsud2"], ["https://tec.openplanner.team/stops/N220aaa", "https://tec.openplanner.team/stops/N224aba"], ["https://tec.openplanner.team/stops/Lhrgall1", "https://tec.openplanner.team/stops/Lhrsimo4"], ["https://tec.openplanner.team/stops/LFAsauv1", "https://tec.openplanner.team/stops/LWDchab2"], ["https://tec.openplanner.team/stops/X801ceb", "https://tec.openplanner.team/stops/X802azb"], ["https://tec.openplanner.team/stops/LHYlinc3", "https://tec.openplanner.team/stops/LHYlinc4"], ["https://tec.openplanner.team/stops/H2ha127a", "https://tec.openplanner.team/stops/H2ha139b"], ["https://tec.openplanner.team/stops/X640aob", "https://tec.openplanner.team/stops/X641aib"], ["https://tec.openplanner.team/stops/Bgemgcw1", "https://tec.openplanner.team/stops/Bgemgjo1"], ["https://tec.openplanner.team/stops/N425aba", "https://tec.openplanner.team/stops/N425acb"], ["https://tec.openplanner.team/stops/LNIbas-2", "https://tec.openplanner.team/stops/LNIhaut2"], ["https://tec.openplanner.team/stops/Bclgeco1", "https://tec.openplanner.team/stops/Bnilhau2"], ["https://tec.openplanner.team/stops/Bbaulil1", "https://tec.openplanner.team/stops/Bbaulos1"], ["https://tec.openplanner.team/stops/Cgogrco2", "https://tec.openplanner.team/stops/Ctmazeb2"], ["https://tec.openplanner.team/stops/H4hn115a", "https://tec.openplanner.team/stops/H4jm117a"], ["https://tec.openplanner.team/stops/N390aaa", "https://tec.openplanner.team/stops/X390akb"], ["https://tec.openplanner.team/stops/LEShony1", "https://tec.openplanner.team/stops/LTIdumo1"], ["https://tec.openplanner.team/stops/Lprceri2", "https://tec.openplanner.team/stops/Lprtour1"], ["https://tec.openplanner.team/stops/Bohnbra2", "https://tec.openplanner.team/stops/Bohnrsc2"], ["https://tec.openplanner.team/stops/X649ada", "https://tec.openplanner.team/stops/X649adc"], ["https://tec.openplanner.team/stops/LCTfair2", "https://tec.openplanner.team/stops/LCTgare4"], ["https://tec.openplanner.team/stops/Cjugill4", "https://tec.openplanner.team/stops/CMbert2"], ["https://tec.openplanner.team/stops/H1me113a", "https://tec.openplanner.team/stops/H1me117e"], ["https://tec.openplanner.team/stops/Llglaha1", "https://tec.openplanner.team/stops/Llgoeil2"], ["https://tec.openplanner.team/stops/Bnivath2", "https://tec.openplanner.team/stops/Bnivpla2"], ["https://tec.openplanner.team/stops/LbUhuge2", "https://tec.openplanner.team/stops/LbUverb2"], ["https://tec.openplanner.team/stops/H2na133a", "https://tec.openplanner.team/stops/H2na136b"], ["https://tec.openplanner.team/stops/H1mj124a", "https://tec.openplanner.team/stops/H1mj130a"], ["https://tec.openplanner.team/stops/Cchlefe1", "https://tec.openplanner.team/stops/Cchvil22"], ["https://tec.openplanner.team/stops/H1as101a", "https://tec.openplanner.team/stops/H1as154b"], ["https://tec.openplanner.team/stops/N501kic", "https://tec.openplanner.team/stops/N501kid"], ["https://tec.openplanner.team/stops/X731aba", "https://tec.openplanner.team/stops/X731aca"], ["https://tec.openplanner.team/stops/H2pr116a", "https://tec.openplanner.team/stops/H2pr116b"], ["https://tec.openplanner.team/stops/X669acb", "https://tec.openplanner.team/stops/X669ada"], ["https://tec.openplanner.team/stops/X756aab", "https://tec.openplanner.team/stops/X757aea"], ["https://tec.openplanner.team/stops/N501hsa", "https://tec.openplanner.team/stops/N501hsb"], ["https://tec.openplanner.team/stops/Lbrptbr3", "https://tec.openplanner.team/stops/Lbrptbr5"], ["https://tec.openplanner.team/stops/Bcrnpla1", "https://tec.openplanner.team/stops/Bcrnpla2"], ["https://tec.openplanner.team/stops/LHceg--1", "https://tec.openplanner.team/stops/LSWeg--3"], ["https://tec.openplanner.team/stops/X734aia", "https://tec.openplanner.team/stops/X734arb"], ["https://tec.openplanner.team/stops/Clogfay2", "https://tec.openplanner.team/stops/Clojone1"], ["https://tec.openplanner.team/stops/Bnivga32", "https://tec.openplanner.team/stops/Bnivga51"], ["https://tec.openplanner.team/stops/X919aaa", "https://tec.openplanner.team/stops/X919aab"], ["https://tec.openplanner.team/stops/N170aaa", "https://tec.openplanner.team/stops/NC14ava"], ["https://tec.openplanner.team/stops/Cctpano1", "https://tec.openplanner.team/stops/Cctvche1"], ["https://tec.openplanner.team/stops/N501bda", "https://tec.openplanner.team/stops/N501mkb"], ["https://tec.openplanner.team/stops/Bgnvcha1", "https://tec.openplanner.team/stops/Bgnvfai2"], ["https://tec.openplanner.team/stops/H4ne138b", "https://tec.openplanner.team/stops/H4ne144c"], ["https://tec.openplanner.team/stops/X801ala", "https://tec.openplanner.team/stops/X801amb"], ["https://tec.openplanner.team/stops/LrUbahn1", "https://tec.openplanner.team/stops/LrUweve2"], ["https://tec.openplanner.team/stops/LORec--*", "https://tec.openplanner.team/stops/LTotrui2"], ["https://tec.openplanner.team/stops/Cmtmath1", "https://tec.openplanner.team/stops/Cmtmath2"], ["https://tec.openplanner.team/stops/Bwategl1", "https://tec.openplanner.team/stops/Bwatras1"], ["https://tec.openplanner.team/stops/H1me116a", "https://tec.openplanner.team/stops/H1mm125c"], ["https://tec.openplanner.team/stops/H1fr117a", "https://tec.openplanner.team/stops/H1fr117b"], ["https://tec.openplanner.team/stops/Lflpaeu1", "https://tec.openplanner.team/stops/Lflweri1"], ["https://tec.openplanner.team/stops/X608asb", "https://tec.openplanner.team/stops/X621aeb"], ["https://tec.openplanner.team/stops/LeUindu1", "https://tec.openplanner.team/stops/LeUindu2"], ["https://tec.openplanner.team/stops/N106ada", "https://tec.openplanner.team/stops/N137ahb"], ["https://tec.openplanner.team/stops/X879aka", "https://tec.openplanner.team/stops/X879alb"], ["https://tec.openplanner.team/stops/N118aab", "https://tec.openplanner.team/stops/N118axa"], ["https://tec.openplanner.team/stops/H3th130a", "https://tec.openplanner.team/stops/H3th133b"], ["https://tec.openplanner.team/stops/N349agb", "https://tec.openplanner.team/stops/X349aab"], ["https://tec.openplanner.team/stops/H4an111c", "https://tec.openplanner.team/stops/H4rs118a"], ["https://tec.openplanner.team/stops/Lmlec--4", "https://tec.openplanner.team/stops/Lmleg--2"], ["https://tec.openplanner.team/stops/Beclbse1", "https://tec.openplanner.team/stops/Beclpla1"], ["https://tec.openplanner.team/stops/Lsmh1801", "https://tec.openplanner.team/stops/Lsmh3021"], ["https://tec.openplanner.team/stops/X907aca", "https://tec.openplanner.team/stops/X907ajb"], ["https://tec.openplanner.team/stops/H1ca186a", "https://tec.openplanner.team/stops/H1ma230a"], ["https://tec.openplanner.team/stops/Bgercen1", "https://tec.openplanner.team/stops/Bgercen2"], ["https://tec.openplanner.team/stops/LhBdorf2", "https://tec.openplanner.team/stops/LhLdorf1"], ["https://tec.openplanner.team/stops/LBbhupp1", "https://tec.openplanner.team/stops/LTPbeau1"], ["https://tec.openplanner.team/stops/LFHjamo2", "https://tec.openplanner.team/stops/LHZbren1"], ["https://tec.openplanner.team/stops/N531aeb", "https://tec.openplanner.team/stops/N531akb"], ["https://tec.openplanner.team/stops/N202aaa", "https://tec.openplanner.team/stops/N203afa"], ["https://tec.openplanner.team/stops/LOUbarr2", "https://tec.openplanner.team/stops/LOUbleu1"], ["https://tec.openplanner.team/stops/Lfhgara1", "https://tec.openplanner.team/stops/Lfhpast1"], ["https://tec.openplanner.team/stops/LGOcana1", "https://tec.openplanner.team/stops/LGOmonu1"], ["https://tec.openplanner.team/stops/X641abb", "https://tec.openplanner.team/stops/X642aac"], ["https://tec.openplanner.team/stops/H1bu140a", "https://tec.openplanner.team/stops/H1bu141a"], ["https://tec.openplanner.team/stops/N538axa", "https://tec.openplanner.team/stops/N538axb"], ["https://tec.openplanner.team/stops/Ctarpoi1", "https://tec.openplanner.team/stops/N543bqb"], ["https://tec.openplanner.team/stops/H5pe125b", "https://tec.openplanner.team/stops/H5pe148b"], ["https://tec.openplanner.team/stops/Ccicouc1", "https://tec.openplanner.team/stops/Ccinali2"], ["https://tec.openplanner.team/stops/Lhucime1", "https://tec.openplanner.team/stops/Lhuleke2"], ["https://tec.openplanner.team/stops/Llglave2", "https://tec.openplanner.team/stops/Llgschm1"], ["https://tec.openplanner.team/stops/Brsrfen1", "https://tec.openplanner.team/stops/Brsrrcu2"], ["https://tec.openplanner.team/stops/Brixala1", "https://tec.openplanner.team/stops/Brixala2"], ["https://tec.openplanner.team/stops/H4mv188b", "https://tec.openplanner.team/stops/H4mv192a"], ["https://tec.openplanner.team/stops/Cgochfe1", "https://tec.openplanner.team/stops/Cgoetun5"], ["https://tec.openplanner.team/stops/N501jha", "https://tec.openplanner.team/stops/N501jia"], ["https://tec.openplanner.team/stops/H1bg110a", "https://tec.openplanner.team/stops/H1gc123a"], ["https://tec.openplanner.team/stops/LaAkapi1", "https://tec.openplanner.team/stops/LaAnorm2"], ["https://tec.openplanner.team/stops/Bolgrga1", "https://tec.openplanner.team/stops/Bpelf961"], ["https://tec.openplanner.team/stops/LMOlens2", "https://tec.openplanner.team/stops/LMOlens3"], ["https://tec.openplanner.team/stops/Ljudeme3", "https://tec.openplanner.team/stops/Ljuinte2"], ["https://tec.openplanner.team/stops/Bbiecoc2", "https://tec.openplanner.team/stops/Bbiehev1"], ["https://tec.openplanner.team/stops/X991aka", "https://tec.openplanner.team/stops/X992afb"], ["https://tec.openplanner.team/stops/X662aqb", "https://tec.openplanner.team/stops/X662atb"], ["https://tec.openplanner.team/stops/X769aja", "https://tec.openplanner.team/stops/X769ajb"], ["https://tec.openplanner.team/stops/Cci4bra2", "https://tec.openplanner.team/stops/Cci4bra3"], ["https://tec.openplanner.team/stops/Lgrfort1", "https://tec.openplanner.team/stops/Lgrfrcu2"], ["https://tec.openplanner.team/stops/H4lh118b", "https://tec.openplanner.team/stops/H5wo127b"], ["https://tec.openplanner.team/stops/Cgrlorm1", "https://tec.openplanner.team/stops/N160aha"], ["https://tec.openplanner.team/stops/Clvorle2", "https://tec.openplanner.team/stops/NC14aea"], ["https://tec.openplanner.team/stops/H4ld127a", "https://tec.openplanner.team/stops/H4ld127b"], ["https://tec.openplanner.team/stops/LeYgros2", "https://tec.openplanner.team/stops/LhSfrep2"], ["https://tec.openplanner.team/stops/LMsalen2", "https://tec.openplanner.team/stops/LPbpeti2"], ["https://tec.openplanner.team/stops/LCObouh2", "https://tec.openplanner.team/stops/LCOeg--2"], ["https://tec.openplanner.team/stops/Bbgever1", "https://tec.openplanner.team/stops/Bwavcin2"], ["https://tec.openplanner.team/stops/Bwatgib1", "https://tec.openplanner.team/stops/Bwatgib2"], ["https://tec.openplanner.team/stops/Ccugend2", "https://tec.openplanner.team/stops/Ccupbro2"], ["https://tec.openplanner.team/stops/N557aeb", "https://tec.openplanner.team/stops/N559aaa"], ["https://tec.openplanner.team/stops/X684aba", "https://tec.openplanner.team/stops/X685afa"], ["https://tec.openplanner.team/stops/Llgcite1", "https://tec.openplanner.team/stops/Llgcite2"], ["https://tec.openplanner.team/stops/H4ry131a", "https://tec.openplanner.team/stops/H4ry132a"], ["https://tec.openplanner.team/stops/Cfrcoop1", "https://tec.openplanner.team/stops/Cfrplac4"], ["https://tec.openplanner.team/stops/Lghreyn2", "https://tec.openplanner.team/stops/Lghwass2"], ["https://tec.openplanner.team/stops/Bbgerlr1", "https://tec.openplanner.team/stops/Blmlcle2"], ["https://tec.openplanner.team/stops/H3lr110a", "https://tec.openplanner.team/stops/H3lr110b"], ["https://tec.openplanner.team/stops/X643abb", "https://tec.openplanner.team/stops/X646abb"], ["https://tec.openplanner.team/stops/X940aga", "https://tec.openplanner.team/stops/X940agb"], ["https://tec.openplanner.team/stops/X879aoa", "https://tec.openplanner.team/stops/X879aob"], ["https://tec.openplanner.team/stops/Lsebeau1", "https://tec.openplanner.team/stops/Lsebeau2"], ["https://tec.openplanner.team/stops/LLTther1", "https://tec.openplanner.team/stops/LTOcime2"], ["https://tec.openplanner.team/stops/X735aab", "https://tec.openplanner.team/stops/X735acb"], ["https://tec.openplanner.team/stops/Lmohomv1", "https://tec.openplanner.team/stops/Lmohomv2"], ["https://tec.openplanner.team/stops/LHYlinc2", "https://tec.openplanner.team/stops/LHYlinc3"], ["https://tec.openplanner.team/stops/Llgblon4", "https://tec.openplanner.team/stops/Llgvero3"], ["https://tec.openplanner.team/stops/LBItnt-*", "https://tec.openplanner.team/stops/LCaalou1"], ["https://tec.openplanner.team/stops/LBpvue-1", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://tec.openplanner.team/stops/LHMbelv2", "https://tec.openplanner.team/stops/LMNswar2"], ["https://tec.openplanner.team/stops/H2ep145b", "https://tec.openplanner.team/stops/H3bi113a"], ["https://tec.openplanner.team/stops/H1pa105a", "https://tec.openplanner.team/stops/H1pa110a"], ["https://tec.openplanner.team/stops/X623ada", "https://tec.openplanner.team/stops/X623adb"], ["https://tec.openplanner.team/stops/Lgrramp1", "https://tec.openplanner.team/stops/Llggrav2"], ["https://tec.openplanner.team/stops/X652aga", "https://tec.openplanner.team/stops/X652ahb"], ["https://tec.openplanner.team/stops/X768aca", "https://tec.openplanner.team/stops/X768adb"], ["https://tec.openplanner.team/stops/LrD28--1", "https://tec.openplanner.team/stops/LrD28--2"], ["https://tec.openplanner.team/stops/Bnivhut2", "https://tec.openplanner.team/stops/Bnivsci2"], ["https://tec.openplanner.team/stops/N110aaa", "https://tec.openplanner.team/stops/N124aba"], ["https://tec.openplanner.team/stops/N343ajb", "https://tec.openplanner.team/stops/X345aaa"], ["https://tec.openplanner.team/stops/N509aoa", "https://tec.openplanner.team/stops/N509ata"], ["https://tec.openplanner.team/stops/H2hg269b", "https://tec.openplanner.team/stops/H2hg270b"], ["https://tec.openplanner.team/stops/H2bh105a", "https://tec.openplanner.team/stops/H2lc146b"], ["https://tec.openplanner.team/stops/Bwatnro1", "https://tec.openplanner.team/stops/Bwatnro2"], ["https://tec.openplanner.team/stops/LHUgodi1", "https://tec.openplanner.team/stops/LHUgodi2"], ["https://tec.openplanner.team/stops/N127aeb", "https://tec.openplanner.team/stops/N135beb"], ["https://tec.openplanner.team/stops/N222aca", "https://tec.openplanner.team/stops/N222acb"], ["https://tec.openplanner.team/stops/H4oq226a", "https://tec.openplanner.team/stops/H4oq226b"], ["https://tec.openplanner.team/stops/Cflmart2", "https://tec.openplanner.team/stops/NC23acb"], ["https://tec.openplanner.team/stops/LFmeg--1", "https://tec.openplanner.team/stops/LFmroye1"], ["https://tec.openplanner.team/stops/N501bra", "https://tec.openplanner.team/stops/N501mwb"], ["https://tec.openplanner.team/stops/H3lr120a", "https://tec.openplanner.team/stops/H3lr132a"], ["https://tec.openplanner.team/stops/Bbiemor1", "https://tec.openplanner.team/stops/Bbiepon2"], ["https://tec.openplanner.team/stops/LTAbran1", "https://tec.openplanner.team/stops/LTAchau1"], ["https://tec.openplanner.team/stops/H1qu107a", "https://tec.openplanner.team/stops/H1wl121b"], ["https://tec.openplanner.team/stops/N504aab", "https://tec.openplanner.team/stops/N511afa"], ["https://tec.openplanner.team/stops/LVIeg--4", "https://tec.openplanner.team/stops/LVIjacq2"], ["https://tec.openplanner.team/stops/Bhalber3", "https://tec.openplanner.team/stops/Bhalh311"], ["https://tec.openplanner.team/stops/H2ca103c", "https://tec.openplanner.team/stops/H2ca109b"], ["https://tec.openplanner.team/stops/Ccyfede1", "https://tec.openplanner.team/stops/Cslbhau2"], ["https://tec.openplanner.team/stops/LBjflor2", "https://tec.openplanner.team/stops/X575agb"], ["https://tec.openplanner.team/stops/LMApape2", "https://tec.openplanner.team/stops/LMAroch3"], ["https://tec.openplanner.team/stops/LFFmagr1", "https://tec.openplanner.team/stops/LFFmagr2"], ["https://tec.openplanner.team/stops/LFarhuy1", "https://tec.openplanner.team/stops/LWAclos2"], ["https://tec.openplanner.team/stops/Lmofays1", "https://tec.openplanner.team/stops/Lmoweri1"], ["https://tec.openplanner.team/stops/Btilmon2", "https://tec.openplanner.team/stops/Btilsnc2"], ["https://tec.openplanner.team/stops/N544aga", "https://tec.openplanner.team/stops/N545aab"], ["https://tec.openplanner.team/stops/Cthcrom1", "https://tec.openplanner.team/stops/Cthrwai1"], ["https://tec.openplanner.team/stops/H4ne132a", "https://tec.openplanner.team/stops/H4ne143b"], ["https://tec.openplanner.team/stops/H2hg144b", "https://tec.openplanner.team/stops/H2hg158a"], ["https://tec.openplanner.team/stops/LeYauss1", "https://tec.openplanner.team/stops/LeYdorf1"], ["https://tec.openplanner.team/stops/X739aca", "https://tec.openplanner.team/stops/X739adb"], ["https://tec.openplanner.team/stops/N501bzb", "https://tec.openplanner.team/stops/N501cca"], ["https://tec.openplanner.team/stops/H1fl133b", "https://tec.openplanner.team/stops/H1fl135a"], ["https://tec.openplanner.team/stops/LARauto3", "https://tec.openplanner.team/stops/LRItour2"], ["https://tec.openplanner.team/stops/Bwagpco2", "https://tec.openplanner.team/stops/Bwagsta1"], ["https://tec.openplanner.team/stops/N543aha", "https://tec.openplanner.team/stops/N543aua"], ["https://tec.openplanner.team/stops/X902aba", "https://tec.openplanner.team/stops/X902bbb"], ["https://tec.openplanner.team/stops/Cgrlorm2", "https://tec.openplanner.team/stops/NC14aub"], ["https://tec.openplanner.team/stops/N232apa", "https://tec.openplanner.team/stops/N232axb"], ["https://tec.openplanner.team/stops/Bmrlcch2", "https://tec.openplanner.team/stops/Bpieh172"], ["https://tec.openplanner.team/stops/NH01aqa", "https://tec.openplanner.team/stops/NH01ata"], ["https://tec.openplanner.team/stops/Ljecoqu2", "https://tec.openplanner.team/stops/Ljexhav1"], ["https://tec.openplanner.team/stops/X805aca", "https://tec.openplanner.team/stops/X805ada"], ["https://tec.openplanner.team/stops/LHEclef1", "https://tec.openplanner.team/stops/LJOferm2"], ["https://tec.openplanner.team/stops/LGHplai1", "https://tec.openplanner.team/stops/X542ahb"], ["https://tec.openplanner.team/stops/N301ama", "https://tec.openplanner.team/stops/N301amb"], ["https://tec.openplanner.team/stops/H4hx117a", "https://tec.openplanner.team/stops/H4hx117b"], ["https://tec.openplanner.team/stops/H4mx117a", "https://tec.openplanner.team/stops/H4mx117b"], ["https://tec.openplanner.team/stops/Bsamegl1", "https://tec.openplanner.team/stops/Bsamfma2"], ["https://tec.openplanner.team/stops/X612aeb", "https://tec.openplanner.team/stops/X613adb"], ["https://tec.openplanner.team/stops/H2ch101b", "https://tec.openplanner.team/stops/H2ch107b"], ["https://tec.openplanner.team/stops/LBBcarr1", "https://tec.openplanner.team/stops/LBBcarr2"], ["https://tec.openplanner.team/stops/H1br122a", "https://tec.openplanner.team/stops/H1br122b"], ["https://tec.openplanner.team/stops/LFFruel1", "https://tec.openplanner.team/stops/LFFruel2"], ["https://tec.openplanner.team/stops/LHUfali2", "https://tec.openplanner.team/stops/LHUresi3"], ["https://tec.openplanner.team/stops/X926adb", "https://tec.openplanner.team/stops/X927acb"], ["https://tec.openplanner.team/stops/X721aca", "https://tec.openplanner.team/stops/X786aaa"], ["https://tec.openplanner.team/stops/LLbrecu1", "https://tec.openplanner.team/stops/LLbvith1"], ["https://tec.openplanner.team/stops/Lkiecol2", "https://tec.openplanner.team/stops/Lkigare2"], ["https://tec.openplanner.team/stops/Bvirbru1", "https://tec.openplanner.team/stops/Bvircsj2"], ["https://tec.openplanner.team/stops/H5at104b", "https://tec.openplanner.team/stops/H5at106a"], ["https://tec.openplanner.team/stops/X892aea", "https://tec.openplanner.team/stops/X892afa"], ["https://tec.openplanner.team/stops/Lsmberg1", "https://tec.openplanner.team/stops/Lsmgdry1"], ["https://tec.openplanner.team/stops/H4la196b", "https://tec.openplanner.team/stops/H4la198c"], ["https://tec.openplanner.team/stops/N101aia", "https://tec.openplanner.team/stops/N101aob"], ["https://tec.openplanner.team/stops/H2ha129c", "https://tec.openplanner.team/stops/H2ha138a"], ["https://tec.openplanner.team/stops/H4bu108a", "https://tec.openplanner.team/stops/H4bu109a"], ["https://tec.openplanner.team/stops/LrDrose3", "https://tec.openplanner.team/stops/LrDzoll4"], ["https://tec.openplanner.team/stops/Becepco1", "https://tec.openplanner.team/stops/Becepon1"], ["https://tec.openplanner.team/stops/X601bga", "https://tec.openplanner.team/stops/X601bgb"], ["https://tec.openplanner.team/stops/H4ta132b", "https://tec.openplanner.team/stops/H4ta133b"], ["https://tec.openplanner.team/stops/LMAchod1", "https://tec.openplanner.team/stops/LMAchod2"], ["https://tec.openplanner.team/stops/Ctubpos1", "https://tec.openplanner.team/stops/Ctuhouz1"], ["https://tec.openplanner.team/stops/LkEsada1", "https://tec.openplanner.team/stops/LkEsada2"], ["https://tec.openplanner.team/stops/X761abb", "https://tec.openplanner.team/stops/X790ahb"], ["https://tec.openplanner.team/stops/Lhrespe1", "https://tec.openplanner.team/stops/Lwachal2"], ["https://tec.openplanner.team/stops/LNEcouc2", "https://tec.openplanner.team/stops/LNEgaul3"], ["https://tec.openplanner.team/stops/LAYcont1", "https://tec.openplanner.team/stops/LAYwerb2"], ["https://tec.openplanner.team/stops/X725aqa", "https://tec.openplanner.team/stops/X725ava"], ["https://tec.openplanner.team/stops/X804asa", "https://tec.openplanner.team/stops/X831aea"], ["https://tec.openplanner.team/stops/N163aab", "https://tec.openplanner.team/stops/N166aca"], ["https://tec.openplanner.team/stops/X820ada", "https://tec.openplanner.team/stops/X820ahb"], ["https://tec.openplanner.team/stops/LKmdani1", "https://tec.openplanner.team/stops/LKmdrie2"], ["https://tec.openplanner.team/stops/LmR50--2", "https://tec.openplanner.team/stops/LmRh%C3%B6812"], ["https://tec.openplanner.team/stops/Ctupont1", "https://tec.openplanner.team/stops/Cturoge2"], ["https://tec.openplanner.team/stops/LAYharz2", "https://tec.openplanner.team/stops/LAYnias1"], ["https://tec.openplanner.team/stops/LFUchpl1", "https://tec.openplanner.team/stops/LFUfleu2"], ["https://tec.openplanner.team/stops/LGrfont2", "https://tec.openplanner.team/stops/LLGcarr2"], ["https://tec.openplanner.team/stops/Livcoll1", "https://tec.openplanner.team/stops/Livroch2"], ["https://tec.openplanner.team/stops/H1eo105b", "https://tec.openplanner.team/stops/H1eo107a"], ["https://tec.openplanner.team/stops/X979aab", "https://tec.openplanner.team/stops/X979acb"], ["https://tec.openplanner.team/stops/N552aab", "https://tec.openplanner.team/stops/N552aba"], ["https://tec.openplanner.team/stops/H4og209b", "https://tec.openplanner.team/stops/H4og213b"], ["https://tec.openplanner.team/stops/Cgzm1481", "https://tec.openplanner.team/stops/Cgzm1482"], ["https://tec.openplanner.team/stops/LFLetoi1", "https://tec.openplanner.team/stops/LSpschi1"], ["https://tec.openplanner.team/stops/H1ho132b", "https://tec.openplanner.team/stops/H1ho142b"], ["https://tec.openplanner.team/stops/Lflroms2", "https://tec.openplanner.team/stops/Lrovand2"], ["https://tec.openplanner.team/stops/LTRfend2", "https://tec.openplanner.team/stops/LTRgare4"], ["https://tec.openplanner.team/stops/LHCandr1", "https://tec.openplanner.team/stops/LHChomb2"], ["https://tec.openplanner.team/stops/LFLcent1", "https://tec.openplanner.team/stops/LFLgara1"], ["https://tec.openplanner.team/stops/Blasbpr2", "https://tec.openplanner.team/stops/Blascim1"], ["https://tec.openplanner.team/stops/X576aca", "https://tec.openplanner.team/stops/X576aga"], ["https://tec.openplanner.team/stops/Bgrmpco1", "https://tec.openplanner.team/stops/N522asb"], ["https://tec.openplanner.team/stops/N331aab", "https://tec.openplanner.team/stops/N331ada"], ["https://tec.openplanner.team/stops/X759aea", "https://tec.openplanner.team/stops/X759aeb"], ["https://tec.openplanner.team/stops/N545aab", "https://tec.openplanner.team/stops/N553anb"], ["https://tec.openplanner.team/stops/X654aga", "https://tec.openplanner.team/stops/X654akb"], ["https://tec.openplanner.team/stops/H4bh103b", "https://tec.openplanner.team/stops/H4ma162a"], ["https://tec.openplanner.team/stops/H4ry133b", "https://tec.openplanner.team/stops/H4ry141a"], ["https://tec.openplanner.team/stops/H1ro133a", "https://tec.openplanner.team/stops/H4fl114a"], ["https://tec.openplanner.team/stops/X804aib", "https://tec.openplanner.team/stops/X804aja"], ["https://tec.openplanner.team/stops/LMfbuck1", "https://tec.openplanner.team/stops/LMfpral1"], ["https://tec.openplanner.team/stops/H4wa155b", "https://tec.openplanner.team/stops/H4wa156b"], ["https://tec.openplanner.team/stops/Lrelier2", "https://tec.openplanner.team/stops/Lretill2"], ["https://tec.openplanner.team/stops/Cgymast1", "https://tec.openplanner.team/stops/Cgystbe1"], ["https://tec.openplanner.team/stops/N132aab", "https://tec.openplanner.team/stops/N152aac"], ["https://tec.openplanner.team/stops/X749aaa", "https://tec.openplanner.team/stops/X749aba"], ["https://tec.openplanner.team/stops/Llgptlo2", "https://tec.openplanner.team/stops/Llgptlo4"], ["https://tec.openplanner.team/stops/Lhufont1", "https://tec.openplanner.team/stops/Lhufont2"], ["https://tec.openplanner.team/stops/Bllncom2", "https://tec.openplanner.team/stops/Bllngar9"], ["https://tec.openplanner.team/stops/N574aaa", "https://tec.openplanner.team/stops/N574ada"], ["https://tec.openplanner.team/stops/LXomc--3", "https://tec.openplanner.team/stops/LXopier2"], ["https://tec.openplanner.team/stops/Bwbfeta1", "https://tec.openplanner.team/stops/Bwbfeta2"], ["https://tec.openplanner.team/stops/Lsmcime2", "https://tec.openplanner.team/stops/Lsmrcim2"], ["https://tec.openplanner.team/stops/N304abb", "https://tec.openplanner.team/stops/N305aca"], ["https://tec.openplanner.team/stops/LAvatri1", "https://tec.openplanner.team/stops/LAvchpl1"], ["https://tec.openplanner.team/stops/LWAcham1", "https://tec.openplanner.team/stops/LWAperv1"], ["https://tec.openplanner.team/stops/Loucorn2", "https://tec.openplanner.team/stops/Lougoff2"], ["https://tec.openplanner.team/stops/H2hg267a", "https://tec.openplanner.team/stops/H2hg270a"], ["https://tec.openplanner.team/stops/N349aab", "https://tec.openplanner.team/stops/N349acb"], ["https://tec.openplanner.team/stops/LaSneuh1", "https://tec.openplanner.team/stops/LhGlang1"], ["https://tec.openplanner.team/stops/X361aab", "https://tec.openplanner.team/stops/X371aga"], ["https://tec.openplanner.team/stops/LLrbecc1", "https://tec.openplanner.team/stops/LLrfont2"], ["https://tec.openplanner.team/stops/X769aia", "https://tec.openplanner.team/stops/X769aka"], ["https://tec.openplanner.team/stops/H1ag107b", "https://tec.openplanner.team/stops/H1an102b"], ["https://tec.openplanner.team/stops/LSPbalm2", "https://tec.openplanner.team/stops/LSPjoli1"], ["https://tec.openplanner.team/stops/N501fba", "https://tec.openplanner.team/stops/N501fby"], ["https://tec.openplanner.team/stops/X639ala", "https://tec.openplanner.team/stops/X639amb"], ["https://tec.openplanner.team/stops/X793aab", "https://tec.openplanner.team/stops/X793acb"], ["https://tec.openplanner.team/stops/Bnivpla2", "https://tec.openplanner.team/stops/Bnivpso1"], ["https://tec.openplanner.team/stops/H2se114a", "https://tec.openplanner.team/stops/H2se114b"], ["https://tec.openplanner.team/stops/N501ejd", "https://tec.openplanner.team/stops/N501mvd"], ["https://tec.openplanner.team/stops/N423aca", "https://tec.openplanner.team/stops/N423acb"], ["https://tec.openplanner.team/stops/X937aba", "https://tec.openplanner.team/stops/X950ada"], ["https://tec.openplanner.team/stops/X879adb", "https://tec.openplanner.team/stops/X879agb"], ["https://tec.openplanner.team/stops/N501dra", "https://tec.openplanner.team/stops/N501eha"], ["https://tec.openplanner.team/stops/LCewaut2", "https://tec.openplanner.team/stops/LFalieg2"], ["https://tec.openplanner.team/stops/Cgobl%C3%A9r1", "https://tec.openplanner.team/stops/Cwxchap2"], ["https://tec.openplanner.team/stops/Bpieh172", "https://tec.openplanner.team/stops/Bpiehte2"], ["https://tec.openplanner.team/stops/Lhufont2", "https://tec.openplanner.team/stops/Lmndari1"], ["https://tec.openplanner.team/stops/Bmarmru2", "https://tec.openplanner.team/stops/Btilmar1"], ["https://tec.openplanner.team/stops/N141aia", "https://tec.openplanner.team/stops/N141ajb"], ["https://tec.openplanner.team/stops/Cbfcham1", "https://tec.openplanner.team/stops/Cbfcham2"], ["https://tec.openplanner.team/stops/Bwspbos2", "https://tec.openplanner.team/stops/Bwspmon3"], ["https://tec.openplanner.team/stops/H1ms261b", "https://tec.openplanner.team/stops/H1ms362a"], ["https://tec.openplanner.team/stops/LATmonu2", "https://tec.openplanner.team/stops/LATphar2"], ["https://tec.openplanner.team/stops/H4po124b", "https://tec.openplanner.team/stops/H4po129b"], ["https://tec.openplanner.team/stops/NR21abb", "https://tec.openplanner.team/stops/NR21aca"], ["https://tec.openplanner.team/stops/Crccamp2", "https://tec.openplanner.team/stops/Crcpcom2"], ["https://tec.openplanner.team/stops/X818ana", "https://tec.openplanner.team/stops/X818apa"], ["https://tec.openplanner.team/stops/H1hh112a", "https://tec.openplanner.team/stops/H1hh116a"], ["https://tec.openplanner.team/stops/NL80aua", "https://tec.openplanner.team/stops/NL80ava"], ["https://tec.openplanner.team/stops/LLM4rou2", "https://tec.openplanner.team/stops/LLM4rou4"], ["https://tec.openplanner.team/stops/LBscime1", "https://tec.openplanner.team/stops/LBsoha-2"], ["https://tec.openplanner.team/stops/X636axb", "https://tec.openplanner.team/stops/X636aza"], ["https://tec.openplanner.team/stops/LBjvill1", "https://tec.openplanner.team/stops/X576aib"], ["https://tec.openplanner.team/stops/LMAcomm1", "https://tec.openplanner.team/stops/LMAcomm2"], ["https://tec.openplanner.team/stops/LJesole2", "https://tec.openplanner.team/stops/LJetrih1"], ["https://tec.openplanner.team/stops/Lqbchat2", "https://tec.openplanner.team/stops/LSAhaye2"], ["https://tec.openplanner.team/stops/N521akb", "https://tec.openplanner.team/stops/N525ala"], ["https://tec.openplanner.team/stops/LBk79--2", "https://tec.openplanner.team/stops/LBkcarr4"], ["https://tec.openplanner.team/stops/H1eo108a", "https://tec.openplanner.team/stops/H1eo108b"], ["https://tec.openplanner.team/stops/LMgwith1", "https://tec.openplanner.team/stops/LMgwith2"], ["https://tec.openplanner.team/stops/NL67aca", "https://tec.openplanner.team/stops/NL67acb"], ["https://tec.openplanner.team/stops/Ljhsart1", "https://tec.openplanner.team/stops/Ljhsart2"], ["https://tec.openplanner.team/stops/H4oq228b", "https://tec.openplanner.team/stops/H4oq409a"], ["https://tec.openplanner.team/stops/LBLwaid1", "https://tec.openplanner.team/stops/LBLwaid2"], ["https://tec.openplanner.team/stops/Bitrcro3", "https://tec.openplanner.team/stops/Bronpfe1"], ["https://tec.openplanner.team/stops/N153ada", "https://tec.openplanner.team/stops/N154aba"], ["https://tec.openplanner.team/stops/LMOhero1", "https://tec.openplanner.team/stops/LMOmome1"], ["https://tec.openplanner.team/stops/N160aaa", "https://tec.openplanner.team/stops/N160aga"], ["https://tec.openplanner.team/stops/Cwflouv3", "https://tec.openplanner.team/stops/Cwfnamu2"], ["https://tec.openplanner.team/stops/LWAlong3", "https://tec.openplanner.team/stops/LWAwila1"], ["https://tec.openplanner.team/stops/Lsepcha1", "https://tec.openplanner.team/stops/Lseserv2"], ["https://tec.openplanner.team/stops/X902afb", "https://tec.openplanner.team/stops/X902afd"], ["https://tec.openplanner.team/stops/X804asb", "https://tec.openplanner.team/stops/X804avb"], ["https://tec.openplanner.team/stops/Bjausan2", "https://tec.openplanner.team/stops/NR21aja"], ["https://tec.openplanner.team/stops/N352abb", "https://tec.openplanner.team/stops/N353awa"], ["https://tec.openplanner.team/stops/Benggar1", "https://tec.openplanner.team/stops/H1en104a"], ["https://tec.openplanner.team/stops/X754aaa", "https://tec.openplanner.team/stops/X754asb"], ["https://tec.openplanner.team/stops/LMIbois2", "https://tec.openplanner.team/stops/LSOgard2"], ["https://tec.openplanner.team/stops/N501hzb", "https://tec.openplanner.team/stops/N501inb"], ["https://tec.openplanner.team/stops/Lhubriq2", "https://tec.openplanner.team/stops/Lmnbass1"], ["https://tec.openplanner.team/stops/LeUhaas3", "https://tec.openplanner.team/stops/LeUjuge2"], ["https://tec.openplanner.team/stops/X946aga", "https://tec.openplanner.team/stops/X946aha"], ["https://tec.openplanner.team/stops/LmTgers1", "https://tec.openplanner.team/stops/LmTschi1"], ["https://tec.openplanner.team/stops/X609ana", "https://tec.openplanner.team/stops/X609aob"], ["https://tec.openplanner.team/stops/N110acb", "https://tec.openplanner.team/stops/N114aab"], ["https://tec.openplanner.team/stops/Bjaupro1", "https://tec.openplanner.team/stops/Bjaupro2"], ["https://tec.openplanner.team/stops/Lligara1", "https://tec.openplanner.team/stops/Lvochev2"], ["https://tec.openplanner.team/stops/LlSbuch2", "https://tec.openplanner.team/stops/LlSzoll1"], ["https://tec.openplanner.team/stops/LwSgeme1", "https://tec.openplanner.team/stops/LwSschw1"], ["https://tec.openplanner.team/stops/H5el116a", "https://tec.openplanner.team/stops/H5el117a"], ["https://tec.openplanner.team/stops/Laleg--1", "https://tec.openplanner.team/stops/Lancoop2"], ["https://tec.openplanner.team/stops/Llgdepo6", "https://tec.openplanner.team/stops/Llgkurt1"], ["https://tec.openplanner.team/stops/Llgdepo1", "https://tec.openplanner.team/stops/Llgdepo5"], ["https://tec.openplanner.team/stops/N529abb", "https://tec.openplanner.team/stops/N529acb"], ["https://tec.openplanner.team/stops/Lgrdeni1", "https://tec.openplanner.team/stops/Lgrstou2"], ["https://tec.openplanner.team/stops/Cmomalg1", "https://tec.openplanner.team/stops/Cromart1"], ["https://tec.openplanner.team/stops/H2bh106a", "https://tec.openplanner.team/stops/H2bh119a"], ["https://tec.openplanner.team/stops/Lcepont1", "https://tec.openplanner.team/stops/Lcepoul1"], ["https://tec.openplanner.team/stops/Cjumarc1", "https://tec.openplanner.team/stops/Cjumarc4"], ["https://tec.openplanner.team/stops/LmYwall1", "https://tec.openplanner.team/stops/LmYwall2"], ["https://tec.openplanner.team/stops/H4hn114a", "https://tec.openplanner.team/stops/H4jm117c"], ["https://tec.openplanner.team/stops/Ctrvert1", "https://tec.openplanner.team/stops/Ctrvert2"], ["https://tec.openplanner.team/stops/Cmahotv1", "https://tec.openplanner.team/stops/Cmazone2"], ["https://tec.openplanner.team/stops/H4mo185a", "https://tec.openplanner.team/stops/H4mo198a"], ["https://tec.openplanner.team/stops/Bjodtpo1", "https://tec.openplanner.team/stops/Bpiejus1"], ["https://tec.openplanner.team/stops/LLR4bra2", "https://tec.openplanner.team/stops/LLRrape1"], ["https://tec.openplanner.team/stops/LHMgulp1", "https://tec.openplanner.team/stops/LHMgulp2"], ["https://tec.openplanner.team/stops/X801bdc", "https://tec.openplanner.team/stops/X801bdd"], ["https://tec.openplanner.team/stops/X804apa", "https://tec.openplanner.team/stops/X805afb"], ["https://tec.openplanner.team/stops/LBkcarr2", "https://tec.openplanner.team/stops/LWEfati1"], ["https://tec.openplanner.team/stops/Lronamo2", "https://tec.openplanner.team/stops/Lrosoxh1"], ["https://tec.openplanner.team/stops/LkTtal-1", "https://tec.openplanner.team/stops/LkTtal-2"], ["https://tec.openplanner.team/stops/N301abb", "https://tec.openplanner.team/stops/N301acb"], ["https://tec.openplanner.team/stops/Bhandub2", "https://tec.openplanner.team/stops/LHNtonn2"], ["https://tec.openplanner.team/stops/Lemambi1", "https://tec.openplanner.team/stops/Lemeg--2"], ["https://tec.openplanner.team/stops/Cgxalli1", "https://tec.openplanner.team/stops/CMleer1"], ["https://tec.openplanner.team/stops/LBpcren1", "https://tec.openplanner.team/stops/LCAcruc2"], ["https://tec.openplanner.team/stops/H1ni316a", "https://tec.openplanner.team/stops/H1ni317b"], ["https://tec.openplanner.team/stops/LPLcond2", "https://tec.openplanner.team/stops/LRRroth1"], ["https://tec.openplanner.team/stops/Bglabra1", "https://tec.openplanner.team/stops/Cglbras2"], ["https://tec.openplanner.team/stops/Bpiejus1", "https://tec.openplanner.team/stops/Bpielon2"], ["https://tec.openplanner.team/stops/H1mm121b", "https://tec.openplanner.team/stops/H1mm122a"], ["https://tec.openplanner.team/stops/LVEmoul2", "https://tec.openplanner.team/stops/LVEstat1"], ["https://tec.openplanner.team/stops/X745abb", "https://tec.openplanner.team/stops/X746ajb"], ["https://tec.openplanner.team/stops/N515apa", "https://tec.openplanner.team/stops/N515aqc"], ["https://tec.openplanner.team/stops/N207abb", "https://tec.openplanner.team/stops/N207aca"], ["https://tec.openplanner.team/stops/H4fl113b", "https://tec.openplanner.team/stops/H4fl114a"], ["https://tec.openplanner.team/stops/H1em109a", "https://tec.openplanner.team/stops/H1ev112a"], ["https://tec.openplanner.team/stops/X780aja", "https://tec.openplanner.team/stops/X793aoa"], ["https://tec.openplanner.team/stops/LbUbutg2", "https://tec.openplanner.team/stops/LwR140-2"], ["https://tec.openplanner.team/stops/LVNroua1", "https://tec.openplanner.team/stops/LWDplac2"], ["https://tec.openplanner.team/stops/Bhaldbo1", "https://tec.openplanner.team/stops/Bhalh312"], ["https://tec.openplanner.team/stops/N513alb", "https://tec.openplanner.team/stops/N513asa"], ["https://tec.openplanner.team/stops/X796aha", "https://tec.openplanner.team/stops/X796ahb"], ["https://tec.openplanner.team/stops/X823afa", "https://tec.openplanner.team/stops/X823aga"], ["https://tec.openplanner.team/stops/X801bqa", "https://tec.openplanner.team/stops/X801caa"], ["https://tec.openplanner.team/stops/N136aaa", "https://tec.openplanner.team/stops/N136adb"], ["https://tec.openplanner.team/stops/LWDchpl1", "https://tec.openplanner.team/stops/LWDchpl2"], ["https://tec.openplanner.team/stops/Lanfont1", "https://tec.openplanner.team/stops/Lanfont2"], ["https://tec.openplanner.team/stops/N548akb", "https://tec.openplanner.team/stops/N548ama"], ["https://tec.openplanner.team/stops/N503adb", "https://tec.openplanner.team/stops/N503afa"], ["https://tec.openplanner.team/stops/Cgygazo2", "https://tec.openplanner.team/stops/Cgygazo3"], ["https://tec.openplanner.team/stops/H4bi100b", "https://tec.openplanner.team/stops/H4te254a"], ["https://tec.openplanner.team/stops/X664aid", "https://tec.openplanner.team/stops/X664aja"], ["https://tec.openplanner.team/stops/Lghflot4", "https://tec.openplanner.team/stops/Lghwall2"], ["https://tec.openplanner.team/stops/N501arc", "https://tec.openplanner.team/stops/N501cdc"], ["https://tec.openplanner.team/stops/Boppegl2", "https://tec.openplanner.team/stops/Borbode2"], ["https://tec.openplanner.team/stops/Buccdst1", "https://tec.openplanner.team/stops/Buccmer1"], ["https://tec.openplanner.team/stops/Bbrlmez1", "https://tec.openplanner.team/stops/Blkbbeu2"], ["https://tec.openplanner.team/stops/LMucarr3", "https://tec.openplanner.team/stops/LMupont1"], ["https://tec.openplanner.team/stops/H1ms258a", "https://tec.openplanner.team/stops/H1ms288a"], ["https://tec.openplanner.team/stops/LJEmalg2", "https://tec.openplanner.team/stops/LJEpaqu2"], ["https://tec.openplanner.team/stops/H2me113a", "https://tec.openplanner.team/stops/H2me115b"], ["https://tec.openplanner.team/stops/Bixlaca2", "https://tec.openplanner.team/stops/Bixleix1"], ["https://tec.openplanner.team/stops/N552aab", "https://tec.openplanner.team/stops/N577aaa"], ["https://tec.openplanner.team/stops/LBRtrag2", "https://tec.openplanner.team/stops/LLSba4-1"], ["https://tec.openplanner.team/stops/LLiforg1", "https://tec.openplanner.team/stops/LSChane2"], ["https://tec.openplanner.team/stops/H4pq113b", "https://tec.openplanner.team/stops/H4pq120a"], ["https://tec.openplanner.team/stops/H4mv187b", "https://tec.openplanner.team/stops/H4mv194b"], ["https://tec.openplanner.team/stops/Cgy4bra1", "https://tec.openplanner.team/stops/Cgyaudu2"], ["https://tec.openplanner.team/stops/Lbobuil2", "https://tec.openplanner.team/stops/Louaout2"], ["https://tec.openplanner.team/stops/Bllnjpa1", "https://tec.openplanner.team/stops/Bllnlb51"], ["https://tec.openplanner.team/stops/X911aab", "https://tec.openplanner.team/stops/X911acb"], ["https://tec.openplanner.team/stops/Ctrleju1", "https://tec.openplanner.team/stops/Ctrpn1"], ["https://tec.openplanner.team/stops/X921acb", "https://tec.openplanner.team/stops/X923aob"], ["https://tec.openplanner.team/stops/Lhrpaep1", "https://tec.openplanner.team/stops/Lhrpaep2"], ["https://tec.openplanner.team/stops/Bobacou1", "https://tec.openplanner.team/stops/Cobvill2"], ["https://tec.openplanner.team/stops/X639aea", "https://tec.openplanner.team/stops/X639aqa"], ["https://tec.openplanner.team/stops/Ladxhen1", "https://tec.openplanner.team/stops/LHCcoul2"], ["https://tec.openplanner.team/stops/N232aza", "https://tec.openplanner.team/stops/N232bma"], ["https://tec.openplanner.team/stops/X741aea", "https://tec.openplanner.team/stops/X741aeb"], ["https://tec.openplanner.team/stops/X901ata", "https://tec.openplanner.team/stops/X901atb"], ["https://tec.openplanner.team/stops/H1ro136b", "https://tec.openplanner.team/stops/H1ro137b"], ["https://tec.openplanner.team/stops/X354afa", "https://tec.openplanner.team/stops/X354afb"], ["https://tec.openplanner.team/stops/N110afb", "https://tec.openplanner.team/stops/N110ahb"], ["https://tec.openplanner.team/stops/Lcavign2", "https://tec.openplanner.team/stops/Lvchenn2"], ["https://tec.openplanner.team/stops/H4hu116b", "https://tec.openplanner.team/stops/H4hu118b"], ["https://tec.openplanner.team/stops/Cmybefe2", "https://tec.openplanner.team/stops/Cmywarc1"], ["https://tec.openplanner.team/stops/X955abb", "https://tec.openplanner.team/stops/X955adb"], ["https://tec.openplanner.team/stops/N232aoa", "https://tec.openplanner.team/stops/N286aab"], ["https://tec.openplanner.team/stops/H1ne138b", "https://tec.openplanner.team/stops/H1ne150b"], ["https://tec.openplanner.team/stops/H4gu107b", "https://tec.openplanner.team/stops/H4gu112b"], ["https://tec.openplanner.team/stops/N509aqb", "https://tec.openplanner.team/stops/N511aoc"], ["https://tec.openplanner.team/stops/N501aca", "https://tec.openplanner.team/stops/N501afa"], ["https://tec.openplanner.team/stops/Blthbss1", "https://tec.openplanner.team/stops/Brxmbos1"], ["https://tec.openplanner.team/stops/N214aia", "https://tec.openplanner.team/stops/N214aib"], ["https://tec.openplanner.team/stops/LSpcarr2", "https://tec.openplanner.team/stops/LSpvanr1"], ["https://tec.openplanner.team/stops/H4gr110a", "https://tec.openplanner.team/stops/H4gr110b"], ["https://tec.openplanner.team/stops/LVEcacq2", "https://tec.openplanner.team/stops/LVEfize1"], ["https://tec.openplanner.team/stops/N221adb", "https://tec.openplanner.team/stops/X210azb"], ["https://tec.openplanner.team/stops/N236aha", "https://tec.openplanner.team/stops/N236ahb"], ["https://tec.openplanner.team/stops/X948aca", "https://tec.openplanner.team/stops/X948ada"], ["https://tec.openplanner.team/stops/N513aba", "https://tec.openplanner.team/stops/N513bfa"], ["https://tec.openplanner.team/stops/X608aba", "https://tec.openplanner.team/stops/X608abb"], ["https://tec.openplanner.team/stops/Csoperi1", "https://tec.openplanner.team/stops/Csoperi2"], ["https://tec.openplanner.team/stops/Lvegera2", "https://tec.openplanner.team/stops/Lvehout2"], ["https://tec.openplanner.team/stops/Borbtre1", "https://tec.openplanner.team/stops/Borbtre2"], ["https://tec.openplanner.team/stops/H1bb118a", "https://tec.openplanner.team/stops/H1bo107a"], ["https://tec.openplanner.team/stops/H4wi166b", "https://tec.openplanner.team/stops/H4wi168b"], ["https://tec.openplanner.team/stops/Livjeu-2", "https://tec.openplanner.team/stops/Lsedavy2"], ["https://tec.openplanner.team/stops/N532ana", "https://tec.openplanner.team/stops/N532anb"], ["https://tec.openplanner.team/stops/LaLkabi2", "https://tec.openplanner.team/stops/LaLkirc*"], ["https://tec.openplanner.team/stops/H4ru241a", "https://tec.openplanner.team/stops/H4ru245b"], ["https://tec.openplanner.team/stops/Lhrdeme3", "https://tec.openplanner.team/stops/Lhrespe2"], ["https://tec.openplanner.team/stops/H2sb257c", "https://tec.openplanner.team/stops/H2sb271a"], ["https://tec.openplanner.team/stops/N365aba", "https://tec.openplanner.team/stops/N365abb"], ["https://tec.openplanner.team/stops/N558anb", "https://tec.openplanner.team/stops/NL67aaa"], ["https://tec.openplanner.team/stops/X661aab", "https://tec.openplanner.team/stops/X661aba"], ["https://tec.openplanner.team/stops/H1sg145a", "https://tec.openplanner.team/stops/H1sg145b"], ["https://tec.openplanner.team/stops/N137aba", "https://tec.openplanner.team/stops/N137abb"], ["https://tec.openplanner.team/stops/H4ty295d", "https://tec.openplanner.team/stops/H4ty347a"], ["https://tec.openplanner.team/stops/Blinbru2", "https://tec.openplanner.team/stops/Blindel1"], ["https://tec.openplanner.team/stops/LRRecdu1", "https://tec.openplanner.team/stops/LRRecdu2"], ["https://tec.openplanner.team/stops/Llghull2", "https://tec.openplanner.team/stops/Llgsevr4"], ["https://tec.openplanner.team/stops/X641aya", "https://tec.openplanner.team/stops/X641ayb"], ["https://tec.openplanner.team/stops/LHAprei1", "https://tec.openplanner.team/stops/LHAprei2"], ["https://tec.openplanner.team/stops/X723aib", "https://tec.openplanner.team/stops/X723amb"], ["https://tec.openplanner.team/stops/N117aca", "https://tec.openplanner.team/stops/N117acb"], ["https://tec.openplanner.team/stops/X652aba", "https://tec.openplanner.team/stops/X652acd"], ["https://tec.openplanner.team/stops/LRIcent2", "https://tec.openplanner.team/stops/LRItour2"], ["https://tec.openplanner.team/stops/LeUschn2", "https://tec.openplanner.team/stops/LkTsch%C3%B62"], ["https://tec.openplanner.team/stops/LRtcarr1", "https://tec.openplanner.team/stops/LRtrame1"], ["https://tec.openplanner.team/stops/Lhragri1", "https://tec.openplanner.team/stops/Lhrvert1"], ["https://tec.openplanner.team/stops/N547aba", "https://tec.openplanner.team/stops/N548aab"], ["https://tec.openplanner.team/stops/Bnivace2", "https://tec.openplanner.team/stops/Bnivphm2"], ["https://tec.openplanner.team/stops/Lhrhome2", "https://tec.openplanner.team/stops/Lhrstev2"], ["https://tec.openplanner.team/stops/Bmarcha2", "https://tec.openplanner.team/stops/Bmarchn2"], ["https://tec.openplanner.team/stops/X717aia", "https://tec.openplanner.team/stops/X782apa"], ["https://tec.openplanner.team/stops/Cctpano2", "https://tec.openplanner.team/stops/Cctpche2"], ["https://tec.openplanner.team/stops/X601aqb", "https://tec.openplanner.team/stops/X601ceb"], ["https://tec.openplanner.team/stops/N301aha", "https://tec.openplanner.team/stops/N301ajb"], ["https://tec.openplanner.team/stops/H1sp355a", "https://tec.openplanner.team/stops/H1ss349a"], ["https://tec.openplanner.team/stops/Cnacout2", "https://tec.openplanner.team/stops/Cnaha562"], ["https://tec.openplanner.team/stops/H4ru238b", "https://tec.openplanner.team/stops/H4ru239a"], ["https://tec.openplanner.team/stops/Lenabat1", "https://tec.openplanner.team/stops/Llmdavi1"], ["https://tec.openplanner.team/stops/H1au100b", "https://tec.openplanner.team/stops/H1au103a"], ["https://tec.openplanner.team/stops/H4og214a", "https://tec.openplanner.team/stops/H4og214b"], ["https://tec.openplanner.team/stops/Lveepar2", "https://tec.openplanner.team/stops/Lvegest2"], ["https://tec.openplanner.team/stops/Lcceg--2", "https://tec.openplanner.team/stops/Lfhtrxc*"], ["https://tec.openplanner.team/stops/N550abe", "https://tec.openplanner.team/stops/N550acc"], ["https://tec.openplanner.team/stops/LCRf14-2", "https://tec.openplanner.team/stops/LCRrape1"], ["https://tec.openplanner.team/stops/Bbstbxl2", "https://tec.openplanner.team/stops/Bgnpgar2"], ["https://tec.openplanner.team/stops/LFreg--2", "https://tec.openplanner.team/stops/LHvvill*"], ["https://tec.openplanner.team/stops/Cchtiro4", "https://tec.openplanner.team/stops/CMtirou2"], ["https://tec.openplanner.team/stops/LLecolo1", "https://tec.openplanner.team/stops/X782aba"], ["https://tec.openplanner.team/stops/Lghcfer1", "https://tec.openplanner.team/stops/Lghviad2"], ["https://tec.openplanner.team/stops/H1en100b", "https://tec.openplanner.team/stops/H1mk107a"], ["https://tec.openplanner.team/stops/H1hy128a", "https://tec.openplanner.team/stops/H1qy132a"], ["https://tec.openplanner.team/stops/Bmrqgar2", "https://tec.openplanner.team/stops/Bmrqpla1"], ["https://tec.openplanner.team/stops/N261ahb", "https://tec.openplanner.team/stops/N337aia"], ["https://tec.openplanner.team/stops/LLTcent2", "https://tec.openplanner.team/stops/LLThosd1"], ["https://tec.openplanner.team/stops/Lmaelhe2", "https://tec.openplanner.team/stops/Lmaetan*"], ["https://tec.openplanner.team/stops/Btlgast2", "https://tec.openplanner.team/stops/Btlgmar1"], ["https://tec.openplanner.team/stops/X782aha", "https://tec.openplanner.team/stops/X782aia"], ["https://tec.openplanner.team/stops/Ltiplat1", "https://tec.openplanner.team/stops/Ltitill*"], ["https://tec.openplanner.team/stops/X639aib", "https://tec.openplanner.team/stops/X639akc"], ["https://tec.openplanner.team/stops/X907aia", "https://tec.openplanner.team/stops/X939acb"], ["https://tec.openplanner.team/stops/H5bl115a", "https://tec.openplanner.team/stops/H5bl123a"], ["https://tec.openplanner.team/stops/X902anb", "https://tec.openplanner.team/stops/X902asa"], ["https://tec.openplanner.team/stops/X661aka", "https://tec.openplanner.team/stops/X661asa"], ["https://tec.openplanner.team/stops/H1et100b", "https://tec.openplanner.team/stops/H1gh171a"], ["https://tec.openplanner.team/stops/H1ho134b", "https://tec.openplanner.team/stops/H1ho138a"], ["https://tec.openplanner.team/stops/N346aab", "https://tec.openplanner.team/stops/X346ala"], ["https://tec.openplanner.team/stops/H5at123a", "https://tec.openplanner.team/stops/H5at137a"], ["https://tec.openplanner.team/stops/Cmmceri1", "https://tec.openplanner.team/stops/Cmmcime2"], ["https://tec.openplanner.team/stops/LBDcarr1", "https://tec.openplanner.team/stops/LBDtill1"], ["https://tec.openplanner.team/stops/LSHhade2", "https://tec.openplanner.team/stops/LSHries1"], ["https://tec.openplanner.team/stops/LHUtrin2", "https://tec.openplanner.team/stops/NL77aia"], ["https://tec.openplanner.team/stops/Crseuro2", "https://tec.openplanner.team/stops/Crspana4"], ["https://tec.openplanner.team/stops/Cctpano1", "https://tec.openplanner.team/stops/NC11agb"], ["https://tec.openplanner.team/stops/H2tr246b", "https://tec.openplanner.team/stops/H2tr257b"], ["https://tec.openplanner.team/stops/H4la196a", "https://tec.openplanner.team/stops/H4la196b"], ["https://tec.openplanner.team/stops/H4do104b", "https://tec.openplanner.team/stops/H4ev124b"], ["https://tec.openplanner.team/stops/X725aba", "https://tec.openplanner.team/stops/X725aca"], ["https://tec.openplanner.team/stops/X750adb", "https://tec.openplanner.team/stops/X750aeb"], ["https://tec.openplanner.team/stops/N563aaa", "https://tec.openplanner.team/stops/N585alb"], ["https://tec.openplanner.team/stops/Bbuzcom1", "https://tec.openplanner.team/stops/Cobhaut2"], ["https://tec.openplanner.team/stops/N581aaa", "https://tec.openplanner.team/stops/N581abb"], ["https://tec.openplanner.team/stops/Blhubja1", "https://tec.openplanner.team/stops/Blhunys1"], ["https://tec.openplanner.team/stops/N501ibb", "https://tec.openplanner.team/stops/N501ifb"], ["https://tec.openplanner.team/stops/Lsmh3021", "https://tec.openplanner.team/stops/LSuusin1"], ["https://tec.openplanner.team/stops/Bsaupco1", "https://tec.openplanner.team/stops/N541aba"], ["https://tec.openplanner.team/stops/H4ty326b", "https://tec.openplanner.team/stops/H4vx365a"], ["https://tec.openplanner.team/stops/H4by119b", "https://tec.openplanner.team/stops/H4ro156a"], ["https://tec.openplanner.team/stops/H1le122a", "https://tec.openplanner.team/stops/H1le122d"], ["https://tec.openplanner.team/stops/LAx41--2", "https://tec.openplanner.team/stops/LFsgend2"], ["https://tec.openplanner.team/stops/N351aua", "https://tec.openplanner.team/stops/N351aub"], ["https://tec.openplanner.team/stops/LCPcomm2", "https://tec.openplanner.team/stops/LGmcent1"], ["https://tec.openplanner.team/stops/H4eg105a", "https://tec.openplanner.team/stops/H4eg105b"], ["https://tec.openplanner.team/stops/N349aia", "https://tec.openplanner.team/stops/X349aaa"], ["https://tec.openplanner.team/stops/LHEcoll1", "https://tec.openplanner.team/stops/LHEhv--2"], ["https://tec.openplanner.team/stops/H4te248b", "https://tec.openplanner.team/stops/H4te252a"], ["https://tec.openplanner.team/stops/N121aab", "https://tec.openplanner.team/stops/N122aca"], ["https://tec.openplanner.team/stops/X626acb", "https://tec.openplanner.team/stops/X626aeb"], ["https://tec.openplanner.team/stops/LWAcost2", "https://tec.openplanner.team/stops/LWAwegg2"], ["https://tec.openplanner.team/stops/LAumari1", "https://tec.openplanner.team/stops/LAUvdab1"], ["https://tec.openplanner.team/stops/X902aeb", "https://tec.openplanner.team/stops/X902aib"], ["https://tec.openplanner.team/stops/LTIdumo2", "https://tec.openplanner.team/stops/LTIpire1"], ["https://tec.openplanner.team/stops/LTyh24-1", "https://tec.openplanner.team/stops/LTyh24-2"], ["https://tec.openplanner.team/stops/LSx309-1", "https://tec.openplanner.team/stops/LSx309-2"], ["https://tec.openplanner.team/stops/Bbcodam3", "https://tec.openplanner.team/stops/Bbcohou3"], ["https://tec.openplanner.team/stops/LsVlind*", "https://tec.openplanner.team/stops/LsVviel2"], ["https://tec.openplanner.team/stops/Cbbcent2", "https://tec.openplanner.team/stops/Cbbcrbo2"], ["https://tec.openplanner.team/stops/X897apa", "https://tec.openplanner.team/stops/X898agb"], ["https://tec.openplanner.team/stops/H4lg104a", "https://tec.openplanner.team/stops/H4ta127b"], ["https://tec.openplanner.team/stops/N571abb", "https://tec.openplanner.team/stops/NC14ada"], ["https://tec.openplanner.team/stops/Cchrmon4", "https://tec.openplanner.team/stops/Cchvhau1"], ["https://tec.openplanner.team/stops/Llianix3", "https://tec.openplanner.team/stops/Lmitech1"], ["https://tec.openplanner.team/stops/N118agb", "https://tec.openplanner.team/stops/N118axa"], ["https://tec.openplanner.team/stops/Lrocort2", "https://tec.openplanner.team/stops/Lromc--1"], ["https://tec.openplanner.team/stops/LFChuis1", "https://tec.openplanner.team/stops/LFCkerk1"], ["https://tec.openplanner.team/stops/N505aoa", "https://tec.openplanner.team/stops/N580aga"], ["https://tec.openplanner.team/stops/Crbreve2", "https://tec.openplanner.team/stops/Crclorc2"], ["https://tec.openplanner.team/stops/N539bca", "https://tec.openplanner.team/stops/N539bcb"], ["https://tec.openplanner.team/stops/Lvepala7", "https://tec.openplanner.team/stops/Lvepala8"], ["https://tec.openplanner.team/stops/N254aab", "https://tec.openplanner.team/stops/N570acb"], ["https://tec.openplanner.team/stops/Cfrcoqu4", "https://tec.openplanner.team/stops/Cfrgare1"], ["https://tec.openplanner.team/stops/NL57aib", "https://tec.openplanner.team/stops/NL57amb"], ["https://tec.openplanner.team/stops/Ladabot1", "https://tec.openplanner.team/stops/Ladarev1"], ["https://tec.openplanner.team/stops/X657aea", "https://tec.openplanner.team/stops/X742adb"], ["https://tec.openplanner.team/stops/H1bn114a", "https://tec.openplanner.team/stops/H1no142a"], ["https://tec.openplanner.team/stops/LFrfrai1", "https://tec.openplanner.team/stops/LFrvesd1"], ["https://tec.openplanner.team/stops/LXofans2", "https://tec.openplanner.team/stops/X599agb"], ["https://tec.openplanner.team/stops/H4ty298b", "https://tec.openplanner.team/stops/H4ty352a"], ["https://tec.openplanner.team/stops/N547ahb", "https://tec.openplanner.team/stops/N547aib"], ["https://tec.openplanner.team/stops/N534aga", "https://tec.openplanner.team/stops/N534caa"], ["https://tec.openplanner.team/stops/N351aga", "https://tec.openplanner.team/stops/X351aba"], ["https://tec.openplanner.team/stops/NL76aib", "https://tec.openplanner.team/stops/NL77ada"], ["https://tec.openplanner.team/stops/Cpcathe2", "https://tec.openplanner.team/stops/Cpcegli2"], ["https://tec.openplanner.team/stops/LLC170-1", "https://tec.openplanner.team/stops/LLCeg--2"], ["https://tec.openplanner.team/stops/X733aha", "https://tec.openplanner.team/stops/X734aib"], ["https://tec.openplanner.team/stops/LLVe75-1", "https://tec.openplanner.team/stops/X575aea"], ["https://tec.openplanner.team/stops/X661aoa", "https://tec.openplanner.team/stops/X839aeb"], ["https://tec.openplanner.team/stops/Cmychap2", "https://tec.openplanner.team/stops/Cmysncb2"], ["https://tec.openplanner.team/stops/Bnivfle2", "https://tec.openplanner.team/stops/Bnivpeu2"], ["https://tec.openplanner.team/stops/N347afb", "https://tec.openplanner.team/stops/N347agb"], ["https://tec.openplanner.team/stops/Bgdhlai1", "https://tec.openplanner.team/stops/Bthsset1"], ["https://tec.openplanner.team/stops/Cthhvil1", "https://tec.openplanner.team/stops/Cthpibl2"], ["https://tec.openplanner.team/stops/Bcer4br4", "https://tec.openplanner.team/stops/Bcercab1"], ["https://tec.openplanner.team/stops/Btubcim2", "https://tec.openplanner.team/stops/Btubegy1"], ["https://tec.openplanner.team/stops/Lmieg--2", "https://tec.openplanner.team/stops/Lmimc--1"], ["https://tec.openplanner.team/stops/N248aba", "https://tec.openplanner.team/stops/N248acb"], ["https://tec.openplanner.team/stops/Cmacart3", "https://tec.openplanner.team/stops/CMcart2"], ["https://tec.openplanner.team/stops/Bhlvlou1", "https://tec.openplanner.team/stops/Blpglon2"], ["https://tec.openplanner.team/stops/Bhensei2", "https://tec.openplanner.team/stops/Btubren1"], ["https://tec.openplanner.team/stops/N122acb", "https://tec.openplanner.team/stops/N150aea"], ["https://tec.openplanner.team/stops/Lrchero1", "https://tec.openplanner.team/stops/Lrcprin1"], ["https://tec.openplanner.team/stops/N528agb", "https://tec.openplanner.team/stops/N528apb"], ["https://tec.openplanner.team/stops/LAYcont2", "https://tec.openplanner.team/stops/LAYdieu1"], ["https://tec.openplanner.team/stops/X762adb", "https://tec.openplanner.team/stops/X762aeb"], ["https://tec.openplanner.team/stops/LHUtfal1", "https://tec.openplanner.team/stops/LHUtfal2"], ["https://tec.openplanner.team/stops/Llgbert2", "https://tec.openplanner.team/stops/Llgmass2"], ["https://tec.openplanner.team/stops/H4ty381a", "https://tec.openplanner.team/stops/H4ty382a"], ["https://tec.openplanner.team/stops/LHUlieg1", "https://tec.openplanner.team/stops/LHUmala2"], ["https://tec.openplanner.team/stops/H1hc150a", "https://tec.openplanner.team/stops/H4be149b"], ["https://tec.openplanner.team/stops/LMEgare1", "https://tec.openplanner.team/stops/LMEgare2"], ["https://tec.openplanner.team/stops/N524acb", "https://tec.openplanner.team/stops/N541adb"], ["https://tec.openplanner.team/stops/Llgavro1", "https://tec.openplanner.team/stops/Llgborn1"], ["https://tec.openplanner.team/stops/Bllncom1", "https://tec.openplanner.team/stops/Bllnfla3"], ["https://tec.openplanner.team/stops/X818aqb", "https://tec.openplanner.team/stops/X818avb"], ["https://tec.openplanner.team/stops/Llgnani1", "https://tec.openplanner.team/stops/Llgnani2"], ["https://tec.openplanner.team/stops/Cfarcam1", "https://tec.openplanner.team/stops/Cfarcam2"], ["https://tec.openplanner.team/stops/H2hg152b", "https://tec.openplanner.team/stops/H2hg157a"], ["https://tec.openplanner.team/stops/LVEcacq1", "https://tec.openplanner.team/stops/LVEphar2"], ["https://tec.openplanner.team/stops/LDmcruc1", "https://tec.openplanner.team/stops/LDmcruc2"], ["https://tec.openplanner.team/stops/N535alb", "https://tec.openplanner.team/stops/N535asb"], ["https://tec.openplanner.team/stops/Lsecoll2", "https://tec.openplanner.team/stops/Lsephar1"], ["https://tec.openplanner.team/stops/Lvtcalv1", "https://tec.openplanner.team/stops/Lvtchpl1"], ["https://tec.openplanner.team/stops/X870aba", "https://tec.openplanner.team/stops/X870afb"], ["https://tec.openplanner.team/stops/Blthbss2", "https://tec.openplanner.team/stops/Bmlncha1"], ["https://tec.openplanner.team/stops/H1ht121b", "https://tec.openplanner.team/stops/H1po139a"], ["https://tec.openplanner.team/stops/H1qy132b", "https://tec.openplanner.team/stops/H1qy135b"], ["https://tec.openplanner.team/stops/N501bma", "https://tec.openplanner.team/stops/N501bmb"], ["https://tec.openplanner.team/stops/LbThutt2", "https://tec.openplanner.team/stops/LbTkran1"], ["https://tec.openplanner.team/stops/Lgdblom1", "https://tec.openplanner.team/stops/Lgdstoc1"], ["https://tec.openplanner.team/stops/Bmrqgar1", "https://tec.openplanner.team/stops/Bspkdon2"], ["https://tec.openplanner.team/stops/Bolgfon2", "https://tec.openplanner.team/stops/Bolpmre2"], ["https://tec.openplanner.team/stops/N521ahb", "https://tec.openplanner.team/stops/N521ama"], ["https://tec.openplanner.team/stops/Lcavign1", "https://tec.openplanner.team/stops/Lcavign2"], ["https://tec.openplanner.team/stops/Lbooffe1", "https://tec.openplanner.team/stops/Lbooffe2"], ["https://tec.openplanner.team/stops/H4th140b", "https://tec.openplanner.team/stops/H4th141b"], ["https://tec.openplanner.team/stops/H1ho128b", "https://tec.openplanner.team/stops/H1ho140a"], ["https://tec.openplanner.team/stops/LOTmonu2", "https://tec.openplanner.team/stops/LOTsava2"], ["https://tec.openplanner.team/stops/LROandr1", "https://tec.openplanner.team/stops/LROandr2"], ["https://tec.openplanner.team/stops/Lbrchur2", "https://tec.openplanner.team/stops/Lbrlama2"], ["https://tec.openplanner.team/stops/Bhalath1", "https://tec.openplanner.team/stops/Bhalgar2"], ["https://tec.openplanner.team/stops/N503alb", "https://tec.openplanner.team/stops/N509bfa"], ["https://tec.openplanner.team/stops/LRObruy4", "https://tec.openplanner.team/stops/LROcham2"], ["https://tec.openplanner.team/stops/H4av105a", "https://tec.openplanner.team/stops/H4av105b"], ["https://tec.openplanner.team/stops/N577aka", "https://tec.openplanner.team/stops/N577akb"], ["https://tec.openplanner.team/stops/LHHpt--1", "https://tec.openplanner.team/stops/LHHpt--2"], ["https://tec.openplanner.team/stops/X837ala", "https://tec.openplanner.team/stops/X837alb"], ["https://tec.openplanner.team/stops/Loubonc1", "https://tec.openplanner.team/stops/Loubonc2"], ["https://tec.openplanner.team/stops/Bgzddge1", "https://tec.openplanner.team/stops/Bgzddge2"], ["https://tec.openplanner.team/stops/LVukabi1", "https://tec.openplanner.team/stops/LVukabi2"], ["https://tec.openplanner.team/stops/LLReg--1", "https://tec.openplanner.team/stops/LLReg--2"], ["https://tec.openplanner.team/stops/LHUdelc2", "https://tec.openplanner.team/stops/LHUdelc3"], ["https://tec.openplanner.team/stops/Bptblma2", "https://tec.openplanner.team/stops/Bptbsar2"], ["https://tec.openplanner.team/stops/N321aeb", "https://tec.openplanner.team/stops/N323acb"], ["https://tec.openplanner.team/stops/H1fl133a", "https://tec.openplanner.team/stops/H1fl135a"], ["https://tec.openplanner.team/stops/H1ca100a", "https://tec.openplanner.team/stops/H1th181a"], ["https://tec.openplanner.team/stops/X836abb", "https://tec.openplanner.team/stops/X839aga"], ["https://tec.openplanner.team/stops/Bincbbo3", "https://tec.openplanner.team/stops/Bincdon2"], ["https://tec.openplanner.team/stops/N517add", "https://tec.openplanner.team/stops/NL75abb"], ["https://tec.openplanner.team/stops/Lrocort1", "https://tec.openplanner.team/stops/Lromc--1"], ["https://tec.openplanner.team/stops/H4gr111b", "https://tec.openplanner.team/stops/H4ld129a"], ["https://tec.openplanner.team/stops/LBTxhen4", "https://tec.openplanner.team/stops/LHEbeau2"], ["https://tec.openplanner.team/stops/Louairl2", "https://tec.openplanner.team/stops/Lsttech1"], ["https://tec.openplanner.team/stops/N501ela", "https://tec.openplanner.team/stops/N501erb"], ["https://tec.openplanner.team/stops/LwYkirc2", "https://tec.openplanner.team/stops/LwYnr262"], ["https://tec.openplanner.team/stops/N509ajb", "https://tec.openplanner.team/stops/N509alb"], ["https://tec.openplanner.team/stops/N534aea", "https://tec.openplanner.team/stops/N534aeb"], ["https://tec.openplanner.team/stops/Cgyhaie1", "https://tec.openplanner.team/stops/Cgyhaie2"], ["https://tec.openplanner.team/stops/Lhubriq1", "https://tec.openplanner.team/stops/Lhubriq2"], ["https://tec.openplanner.team/stops/H1hq127a", "https://tec.openplanner.team/stops/H1sy148a"], ["https://tec.openplanner.team/stops/Bbchmai2", "https://tec.openplanner.team/stops/Bwaurge1"], ["https://tec.openplanner.team/stops/Blhueca1", "https://tec.openplanner.team/stops/Blhupa12"], ["https://tec.openplanner.team/stops/X879arb", "https://tec.openplanner.team/stops/X879asb"], ["https://tec.openplanner.team/stops/LSPmalc1", "https://tec.openplanner.team/stops/LSPsauv1"], ["https://tec.openplanner.team/stops/Cvvcime2", "https://tec.openplanner.team/stops/Cvvpotv2"], ["https://tec.openplanner.team/stops/LCLgend2", "https://tec.openplanner.team/stops/NL78afb"], ["https://tec.openplanner.team/stops/X870aab", "https://tec.openplanner.team/stops/X870aia"], ["https://tec.openplanner.team/stops/H1mm125d", "https://tec.openplanner.team/stops/H1mm132b"], ["https://tec.openplanner.team/stops/LGEhosp1", "https://tec.openplanner.team/stops/LGEhosp2"], ["https://tec.openplanner.team/stops/Bottcba2", "https://tec.openplanner.team/stops/Bottcbp1"], ["https://tec.openplanner.team/stops/Cmmcarr2", "https://tec.openplanner.team/stops/Cmmptno2"], ["https://tec.openplanner.team/stops/X611aca", "https://tec.openplanner.team/stops/X611ada"], ["https://tec.openplanner.team/stops/LATmals1", "https://tec.openplanner.team/stops/LHUsaul1"], ["https://tec.openplanner.team/stops/X639aoa", "https://tec.openplanner.team/stops/X639aqa"], ["https://tec.openplanner.team/stops/X618aib", "https://tec.openplanner.team/stops/X618apa"], ["https://tec.openplanner.team/stops/N202aba", "https://tec.openplanner.team/stops/N202abb"], ["https://tec.openplanner.team/stops/LPLc49-1", "https://tec.openplanner.team/stops/LRRtrix1"], ["https://tec.openplanner.team/stops/X750aca", "https://tec.openplanner.team/stops/X750ada"], ["https://tec.openplanner.team/stops/Lvearle2", "https://tec.openplanner.team/stops/Lvearle4"], ["https://tec.openplanner.team/stops/Bottpin2", "https://tec.openplanner.team/stops/Brixbai2"], ["https://tec.openplanner.team/stops/Loubonc2", "https://tec.openplanner.team/stops/Lousite4"], ["https://tec.openplanner.team/stops/N524afa", "https://tec.openplanner.team/stops/N524aja"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LCxcour1"], ["https://tec.openplanner.team/stops/Bplncba1", "https://tec.openplanner.team/stops/Clpnapo2"], ["https://tec.openplanner.team/stops/N501dvb", "https://tec.openplanner.team/stops/N501hkb"], ["https://tec.openplanner.team/stops/Bjodeco3", "https://tec.openplanner.team/stops/Bjodpvi2"], ["https://tec.openplanner.team/stops/Lmnfawe1", "https://tec.openplanner.team/stops/Lmnjeha1"], ["https://tec.openplanner.team/stops/H4de112b", "https://tec.openplanner.team/stops/H4de114b"], ["https://tec.openplanner.team/stops/X758akb", "https://tec.openplanner.team/stops/X840aea"], ["https://tec.openplanner.team/stops/Bcerldo1", "https://tec.openplanner.team/stops/Bmoucoq2"], ["https://tec.openplanner.team/stops/LmIkirc2", "https://tec.openplanner.team/stops/LmIzent2"], ["https://tec.openplanner.team/stops/Blascsl1", "https://tec.openplanner.team/stops/Blasren2"], ["https://tec.openplanner.team/stops/H1ms271a", "https://tec.openplanner.team/stops/H1ms313b"], ["https://tec.openplanner.team/stops/X903afa", "https://tec.openplanner.team/stops/X943aaa"], ["https://tec.openplanner.team/stops/LSecomm1", "https://tec.openplanner.team/stops/LTiflor1"], ["https://tec.openplanner.team/stops/LnDdorf1", "https://tec.openplanner.team/stops/LwSschw1"], ["https://tec.openplanner.team/stops/H4ty328a", "https://tec.openplanner.team/stops/H4ty348a"], ["https://tec.openplanner.team/stops/Cgofleu3", "https://tec.openplanner.team/stops/Cgon52"], ["https://tec.openplanner.team/stops/Btanpla2", "https://tec.openplanner.team/stops/Btanpla4"], ["https://tec.openplanner.team/stops/N525adb", "https://tec.openplanner.team/stops/N525alb"], ["https://tec.openplanner.team/stops/H2re166a", "https://tec.openplanner.team/stops/H2re168b"], ["https://tec.openplanner.team/stops/LGMvoue1", "https://tec.openplanner.team/stops/LSEcent2"], ["https://tec.openplanner.team/stops/H1ge116a", "https://tec.openplanner.team/stops/H1ge151b"], ["https://tec.openplanner.team/stops/Bbsthpl1", "https://tec.openplanner.team/stops/Bbsttab1"], ["https://tec.openplanner.team/stops/Ltimarr1", "https://tec.openplanner.team/stops/Ltimarr2"], ["https://tec.openplanner.team/stops/H4ea131b", "https://tec.openplanner.team/stops/H5qu145b"], ["https://tec.openplanner.team/stops/X919ada", "https://tec.openplanner.team/stops/X979aha"], ["https://tec.openplanner.team/stops/LFEhoup1", "https://tec.openplanner.team/stops/LRMeg--1"], ["https://tec.openplanner.team/stops/N383afa", "https://tec.openplanner.team/stops/N874amb"], ["https://tec.openplanner.team/stops/LWAathe1", "https://tec.openplanner.team/stops/LWApt--1"], ["https://tec.openplanner.team/stops/LHdfays2", "https://tec.openplanner.team/stops/LVtvalu2"], ["https://tec.openplanner.team/stops/Llgdony2", "https://tec.openplanner.team/stops/Llggosw1"], ["https://tec.openplanner.team/stops/X735aca", "https://tec.openplanner.team/stops/X736ada"], ["https://tec.openplanner.team/stops/LOuhalb1", "https://tec.openplanner.team/stops/LVnvieg1"], ["https://tec.openplanner.team/stops/N132aga", "https://tec.openplanner.team/stops/N136aaa"], ["https://tec.openplanner.team/stops/H5fl102c", "https://tec.openplanner.team/stops/H5fl102d"], ["https://tec.openplanner.team/stops/N117bda", "https://tec.openplanner.team/stops/N147aaa"], ["https://tec.openplanner.team/stops/X783aba", "https://tec.openplanner.team/stops/X783acb"], ["https://tec.openplanner.team/stops/N501gpb", "https://tec.openplanner.team/stops/N501zaa"], ["https://tec.openplanner.team/stops/Cgygazo3", "https://tec.openplanner.team/stops/CMgazo2"], ["https://tec.openplanner.team/stops/X720aca", "https://tec.openplanner.team/stops/X720aea"], ["https://tec.openplanner.team/stops/X754aka", "https://tec.openplanner.team/stops/X754awb"], ["https://tec.openplanner.team/stops/Lghlieg1", "https://tec.openplanner.team/stops/Lghprea2"], ["https://tec.openplanner.team/stops/NL37aia", "https://tec.openplanner.team/stops/NL37aka"], ["https://tec.openplanner.team/stops/Bitreco1", "https://tec.openplanner.team/stops/Bitregl2"], ["https://tec.openplanner.team/stops/X806aia", "https://tec.openplanner.team/stops/X806ala"], ["https://tec.openplanner.team/stops/Bhalrat1", "https://tec.openplanner.team/stops/Bhalrat2"], ["https://tec.openplanner.team/stops/LwAkape2", "https://tec.openplanner.team/stops/LwAkett1"], ["https://tec.openplanner.team/stops/H1do110a", "https://tec.openplanner.team/stops/H1do115b"], ["https://tec.openplanner.team/stops/LRGderr1", "https://tec.openplanner.team/stops/LRGmoul2"], ["https://tec.openplanner.team/stops/Lmitech2", "https://tec.openplanner.team/stops/Lvtcalv1"], ["https://tec.openplanner.team/stops/N557aab", "https://tec.openplanner.team/stops/N557ahb"], ["https://tec.openplanner.team/stops/X363abb", "https://tec.openplanner.team/stops/X363ada"], ["https://tec.openplanner.team/stops/X805abb", "https://tec.openplanner.team/stops/X805aca"], ["https://tec.openplanner.team/stops/N501jqa", "https://tec.openplanner.team/stops/N501kea"], ["https://tec.openplanner.team/stops/N503ajc", "https://tec.openplanner.team/stops/N580afa"], ["https://tec.openplanner.team/stops/X610afa", "https://tec.openplanner.team/stops/X610aia"], ["https://tec.openplanner.team/stops/LSMchat1", "https://tec.openplanner.team/stops/LSMfroi1"], ["https://tec.openplanner.team/stops/Bbxlmid1", "https://tec.openplanner.team/stops/Buccdch2"], ["https://tec.openplanner.team/stops/H1bu138a", "https://tec.openplanner.team/stops/H2ep144b"], ["https://tec.openplanner.team/stops/X783aaa", "https://tec.openplanner.team/stops/X783abb"], ["https://tec.openplanner.team/stops/N390adb", "https://tec.openplanner.team/stops/N390amb"], ["https://tec.openplanner.team/stops/N532ajb", "https://tec.openplanner.team/stops/N532anb"], ["https://tec.openplanner.team/stops/N203afa", "https://tec.openplanner.team/stops/N203afb"], ["https://tec.openplanner.team/stops/Lgrfass1", "https://tec.openplanner.team/stops/Lgrspir1"], ["https://tec.openplanner.team/stops/N390ada", "https://tec.openplanner.team/stops/X390anb"], ["https://tec.openplanner.team/stops/Lflweri1", "https://tec.openplanner.team/stops/Lflweri2"], ["https://tec.openplanner.team/stops/N533agb", "https://tec.openplanner.team/stops/N533aoa"], ["https://tec.openplanner.team/stops/LBvviem3", "https://tec.openplanner.team/stops/LWAclos2"], ["https://tec.openplanner.team/stops/X561aaa", "https://tec.openplanner.team/stops/X561aab"], ["https://tec.openplanner.team/stops/NL57aia", "https://tec.openplanner.team/stops/NL57ama"], ["https://tec.openplanner.team/stops/X713acb", "https://tec.openplanner.team/stops/X713ajd"], ["https://tec.openplanner.team/stops/Bsaubra2", "https://tec.openplanner.team/stops/Bsaupco2"], ["https://tec.openplanner.team/stops/LWDeg--2", "https://tec.openplanner.team/stops/LWDplac2"], ["https://tec.openplanner.team/stops/Canegbr1", "https://tec.openplanner.team/stops/Canegbr2"], ["https://tec.openplanner.team/stops/LjeGRPMA", "https://tec.openplanner.team/stops/LjeGRPMB"], ["https://tec.openplanner.team/stops/X623aba", "https://tec.openplanner.team/stops/X623ada"], ["https://tec.openplanner.team/stops/X784aha", "https://tec.openplanner.team/stops/X784ahb"], ["https://tec.openplanner.team/stops/H5wo125a", "https://tec.openplanner.team/stops/H5wo126b"], ["https://tec.openplanner.team/stops/X681aca", "https://tec.openplanner.team/stops/X681aeb"], ["https://tec.openplanner.team/stops/X602aib", "https://tec.openplanner.team/stops/X602ara"], ["https://tec.openplanner.team/stops/X897aab", "https://tec.openplanner.team/stops/X897apa"], ["https://tec.openplanner.team/stops/Bitrcen1", "https://tec.openplanner.team/stops/Bitregl2"], ["https://tec.openplanner.team/stops/X801aia", "https://tec.openplanner.team/stops/X801bpa"], ["https://tec.openplanner.team/stops/N501kuc", "https://tec.openplanner.team/stops/N501lja"], ["https://tec.openplanner.team/stops/X901ara", "https://tec.openplanner.team/stops/X901bta"], ["https://tec.openplanner.team/stops/LAivill1", "https://tec.openplanner.team/stops/Lccuner1"], ["https://tec.openplanner.team/stops/LBSchar3", "https://tec.openplanner.team/stops/LBSneuv1"], ["https://tec.openplanner.team/stops/X902aib", "https://tec.openplanner.team/stops/X992abb"], ["https://tec.openplanner.team/stops/H1ha185b", "https://tec.openplanner.team/stops/H1ha189a"], ["https://tec.openplanner.team/stops/LHUhsar1", "https://tec.openplanner.team/stops/LHUtrin2"], ["https://tec.openplanner.team/stops/Bflccav2", "https://tec.openplanner.team/stops/Bflcpco2"], ["https://tec.openplanner.team/stops/H2mo126b", "https://tec.openplanner.team/stops/H2mo145a"], ["https://tec.openplanner.team/stops/LHNcoll1", "https://tec.openplanner.team/stops/LHNecpr4"], ["https://tec.openplanner.team/stops/Clggrfe1", "https://tec.openplanner.team/stops/Clgpavi1"], ["https://tec.openplanner.team/stops/Cgxbeau2", "https://tec.openplanner.team/stops/Cgxcime2"], ["https://tec.openplanner.team/stops/N501jdb", "https://tec.openplanner.team/stops/N501jfa"], ["https://tec.openplanner.team/stops/LLAcalv2", "https://tec.openplanner.team/stops/LLApavi2"], ["https://tec.openplanner.team/stops/Llgbene1", "https://tec.openplanner.team/stops/Llgcite4"], ["https://tec.openplanner.team/stops/X986akb", "https://tec.openplanner.team/stops/X986amb"], ["https://tec.openplanner.team/stops/Bglibui1", "https://tec.openplanner.team/stops/NB33ahb"], ["https://tec.openplanner.team/stops/Lvtauna2", "https://tec.openplanner.team/stops/Lvtlimi1"], ["https://tec.openplanner.team/stops/Bwatmbv1", "https://tec.openplanner.team/stops/Bwatmch3"], ["https://tec.openplanner.team/stops/X617adb", "https://tec.openplanner.team/stops/X617aea"], ["https://tec.openplanner.team/stops/LeUgeme1", "https://tec.openplanner.team/stops/LlNbruc1"], ["https://tec.openplanner.team/stops/Bcbqcoi1", "https://tec.openplanner.team/stops/Bcbqrog1"], ["https://tec.openplanner.team/stops/N207acb", "https://tec.openplanner.team/stops/N209alb"], ["https://tec.openplanner.team/stops/LMOlens1", "https://tec.openplanner.team/stops/LMOlens2"], ["https://tec.openplanner.team/stops/Cciqueu2", "https://tec.openplanner.team/stops/NC02avb"], ["https://tec.openplanner.team/stops/N104aea", "https://tec.openplanner.team/stops/N118ava"], ["https://tec.openplanner.team/stops/N505aca", "https://tec.openplanner.team/stops/N505acb"], ["https://tec.openplanner.team/stops/N501lna", "https://tec.openplanner.team/stops/N501mfa"], ["https://tec.openplanner.team/stops/N211aca", "https://tec.openplanner.team/stops/N211awa"], ["https://tec.openplanner.team/stops/H1cu115a", "https://tec.openplanner.team/stops/H1cu118a"], ["https://tec.openplanner.team/stops/LAUcent2", "https://tec.openplanner.team/stops/LAUneuv4"], ["https://tec.openplanner.team/stops/Lpecroi1", "https://tec.openplanner.team/stops/Lpecroi2"], ["https://tec.openplanner.team/stops/N540aia", "https://tec.openplanner.team/stops/N540aib"], ["https://tec.openplanner.team/stops/N127ada", "https://tec.openplanner.team/stops/N127adb"], ["https://tec.openplanner.team/stops/LTatult1", "https://tec.openplanner.team/stops/LTatult3"], ["https://tec.openplanner.team/stops/N139ada", "https://tec.openplanner.team/stops/N140aaa"], ["https://tec.openplanner.team/stops/Lpedeta2", "https://tec.openplanner.team/stops/LTAbran2"], ["https://tec.openplanner.team/stops/N423aaa", "https://tec.openplanner.team/stops/N423aab"], ["https://tec.openplanner.team/stops/LbUverb1", "https://tec.openplanner.team/stops/LhObull1"], ["https://tec.openplanner.team/stops/H2fy123b", "https://tec.openplanner.team/stops/H2fy123d"], ["https://tec.openplanner.team/stops/N236alb", "https://tec.openplanner.team/stops/N236aoa"], ["https://tec.openplanner.team/stops/H4ka178b", "https://tec.openplanner.team/stops/H4ru243b"], ["https://tec.openplanner.team/stops/Lagbeno2", "https://tec.openplanner.team/stops/Llgpari1"], ["https://tec.openplanner.team/stops/H4ka178a", "https://tec.openplanner.team/stops/H4ru243a"], ["https://tec.openplanner.team/stops/LEnchan1", "https://tec.openplanner.team/stops/NL73acb"], ["https://tec.openplanner.team/stops/X766ada", "https://tec.openplanner.team/stops/X766adb"], ["https://tec.openplanner.team/stops/X740aba", "https://tec.openplanner.team/stops/X740acb"], ["https://tec.openplanner.team/stops/Bchadpt1", "https://tec.openplanner.team/stops/Bwlhppg3"], ["https://tec.openplanner.team/stops/H1hl124b", "https://tec.openplanner.team/stops/H1vs146b"], ["https://tec.openplanner.team/stops/X992aaa", "https://tec.openplanner.team/stops/X993agb"], ["https://tec.openplanner.team/stops/N511akb", "https://tec.openplanner.team/stops/N511atb"], ["https://tec.openplanner.team/stops/LSMfroi1", "https://tec.openplanner.team/stops/LSMfroi2"], ["https://tec.openplanner.team/stops/LmLbeil2", "https://tec.openplanner.team/stops/LwMzoll2"], ["https://tec.openplanner.team/stops/LBachpl2", "https://tec.openplanner.team/stops/LBapeup1"], ["https://tec.openplanner.team/stops/H4ne138a", "https://tec.openplanner.team/stops/H4ne144c"], ["https://tec.openplanner.team/stops/X753aab", "https://tec.openplanner.team/stops/X945adb"], ["https://tec.openplanner.team/stops/H1ms310a", "https://tec.openplanner.team/stops/H1ms313b"], ["https://tec.openplanner.team/stops/LeYmuhl2", "https://tec.openplanner.team/stops/LhSfrep2"], ["https://tec.openplanner.team/stops/H4pp122b", "https://tec.openplanner.team/stops/H4qu230a"], ["https://tec.openplanner.team/stops/Cjugohi2", "https://tec.openplanner.team/stops/Cjumarc2"], ["https://tec.openplanner.team/stops/H4hx114a", "https://tec.openplanner.team/stops/H4hx117a"], ["https://tec.openplanner.team/stops/Bcsegar1", "https://tec.openplanner.team/stops/Bcsegar2"], ["https://tec.openplanner.team/stops/H1tt104a", "https://tec.openplanner.team/stops/H1tt109b"], ["https://tec.openplanner.team/stops/Llgcour1", "https://tec.openplanner.team/stops/Llgoutr3"], ["https://tec.openplanner.team/stops/X601bba", "https://tec.openplanner.team/stops/X601bbe"], ["https://tec.openplanner.team/stops/X902aca", "https://tec.openplanner.team/stops/X902asa"], ["https://tec.openplanner.team/stops/N232cea", "https://tec.openplanner.team/stops/N260aca"], ["https://tec.openplanner.team/stops/Creespi1", "https://tec.openplanner.team/stops/Creluth1"], ["https://tec.openplanner.team/stops/Baudulb1", "https://tec.openplanner.team/stops/Baudwav1"], ["https://tec.openplanner.team/stops/X901ala", "https://tec.openplanner.team/stops/X901beb"], ["https://tec.openplanner.team/stops/LODamco1", "https://tec.openplanner.team/stops/X548aea"], ["https://tec.openplanner.team/stops/H4ce100b", "https://tec.openplanner.team/stops/H4ce104b"], ["https://tec.openplanner.team/stops/N508amb", "https://tec.openplanner.team/stops/N508aoa"], ["https://tec.openplanner.team/stops/X733aib", "https://tec.openplanner.team/stops/X733ala"], ["https://tec.openplanner.team/stops/N309abb", "https://tec.openplanner.team/stops/N350adb"], ["https://tec.openplanner.team/stops/Bnivpve1", "https://tec.openplanner.team/stops/Bnivsho1"], ["https://tec.openplanner.team/stops/X362ada", "https://tec.openplanner.team/stops/X363acb"], ["https://tec.openplanner.team/stops/Lsecris4", "https://tec.openplanner.team/stops/Lsepudd2"], ["https://tec.openplanner.team/stops/H4co150a", "https://tec.openplanner.team/stops/H4co150b"], ["https://tec.openplanner.team/stops/Cgzabau2", "https://tec.openplanner.team/stops/Cmyjaci2"], ["https://tec.openplanner.team/stops/Llgcite1", "https://tec.openplanner.team/stops/LlgLEOP3"], ["https://tec.openplanner.team/stops/Bbaubon1", "https://tec.openplanner.team/stops/Bbaulil1"], ["https://tec.openplanner.team/stops/X601ara", "https://tec.openplanner.team/stops/X662aqa"], ["https://tec.openplanner.team/stops/N501jfb", "https://tec.openplanner.team/stops/N501jja"], ["https://tec.openplanner.team/stops/N585ala", "https://tec.openplanner.team/stops/N585alb"], ["https://tec.openplanner.team/stops/Blimeur1", "https://tec.openplanner.team/stops/Blimeur2"], ["https://tec.openplanner.team/stops/X802aia", "https://tec.openplanner.team/stops/X802aib"], ["https://tec.openplanner.team/stops/H4gz115a", "https://tec.openplanner.team/stops/H4th139b"], ["https://tec.openplanner.team/stops/Canrobe2", "https://tec.openplanner.team/stops/Canrtth3"], ["https://tec.openplanner.team/stops/H4ty319a", "https://tec.openplanner.team/stops/H4ty356c"], ["https://tec.openplanner.team/stops/N534bdb", "https://tec.openplanner.team/stops/N534bfa"], ["https://tec.openplanner.team/stops/Clolidl1", "https://tec.openplanner.team/stops/Cmapeet2"], ["https://tec.openplanner.team/stops/Bhancom1", "https://tec.openplanner.team/stops/LVParal1"], ["https://tec.openplanner.team/stops/X715afb", "https://tec.openplanner.team/stops/X715alb"], ["https://tec.openplanner.team/stops/LVMborl1", "https://tec.openplanner.team/stops/LVMcent1"], ["https://tec.openplanner.team/stops/N106afa", "https://tec.openplanner.team/stops/N106agb"], ["https://tec.openplanner.team/stops/LSPplat1", "https://tec.openplanner.team/stops/LSPtonn1"], ["https://tec.openplanner.team/stops/X626aja", "https://tec.openplanner.team/stops/X688abb"], ["https://tec.openplanner.team/stops/Clrcite2", "https://tec.openplanner.team/stops/Clrmarl2"], ["https://tec.openplanner.team/stops/Crodrai1", "https://tec.openplanner.team/stops/Crowilb2"], ["https://tec.openplanner.team/stops/N134ajb", "https://tec.openplanner.team/stops/N135ayb"], ["https://tec.openplanner.team/stops/X636ana", "https://tec.openplanner.team/stops/X636aoa"], ["https://tec.openplanner.team/stops/LrcarsT2", "https://tec.openplanner.team/stops/Lrcastr1"], ["https://tec.openplanner.team/stops/X641ada", "https://tec.openplanner.team/stops/X641aea"], ["https://tec.openplanner.team/stops/H1eu105b", "https://tec.openplanner.team/stops/H1eu107b"], ["https://tec.openplanner.team/stops/H2fy119b", "https://tec.openplanner.team/stops/H2fy122b"], ["https://tec.openplanner.team/stops/N230afb", "https://tec.openplanner.team/stops/N234ada"], ["https://tec.openplanner.team/stops/Lkinyst2", "https://tec.openplanner.team/stops/Lstchas2"], ["https://tec.openplanner.team/stops/N501mez", "https://tec.openplanner.team/stops/N501mla"], ["https://tec.openplanner.team/stops/X952aja", "https://tec.openplanner.team/stops/X952alb"], ["https://tec.openplanner.team/stops/X666aia", "https://tec.openplanner.team/stops/X666ajb"], ["https://tec.openplanner.team/stops/X740afa", "https://tec.openplanner.team/stops/X740afb"], ["https://tec.openplanner.team/stops/X796aaa", "https://tec.openplanner.team/stops/X986acb"], ["https://tec.openplanner.team/stops/Ctaprai3", "https://tec.openplanner.team/stops/N543bna"], ["https://tec.openplanner.team/stops/N531aia", "https://tec.openplanner.team/stops/N531aib"], ["https://tec.openplanner.team/stops/N566adb", "https://tec.openplanner.team/stops/N566afb"], ["https://tec.openplanner.team/stops/X897agb", "https://tec.openplanner.team/stops/X897aya"], ["https://tec.openplanner.team/stops/X982apb", "https://tec.openplanner.team/stops/X982brb"], ["https://tec.openplanner.team/stops/H4es117b", "https://tec.openplanner.team/stops/H4ev118b"], ["https://tec.openplanner.team/stops/N522ata", "https://tec.openplanner.team/stops/N522aua"], ["https://tec.openplanner.team/stops/Bblaegl1", "https://tec.openplanner.team/stops/Bwatcpl1"], ["https://tec.openplanner.team/stops/NB33aia", "https://tec.openplanner.team/stops/NB33ajb"], ["https://tec.openplanner.team/stops/LRtcarr2", "https://tec.openplanner.team/stops/LSebott1"], ["https://tec.openplanner.team/stops/Bmarlor1", "https://tec.openplanner.team/stops/Bmarmco2"], ["https://tec.openplanner.team/stops/H4pl114a", "https://tec.openplanner.team/stops/H4pl115b"], ["https://tec.openplanner.team/stops/X747aab", "https://tec.openplanner.team/stops/X747aca"], ["https://tec.openplanner.team/stops/Bgrmver2", "https://tec.openplanner.team/stops/Bgrmver3"], ["https://tec.openplanner.team/stops/LGMdrev2", "https://tec.openplanner.team/stops/LTRoasi2"], ["https://tec.openplanner.team/stops/N155aga", "https://tec.openplanner.team/stops/N155aja"], ["https://tec.openplanner.team/stops/LAMjaur2", "https://tec.openplanner.team/stops/LAMrich2"], ["https://tec.openplanner.team/stops/H1le117a", "https://tec.openplanner.team/stops/H5is168a"], ["https://tec.openplanner.team/stops/LhRandl1", "https://tec.openplanner.team/stops/LhRkirc1"], ["https://tec.openplanner.team/stops/Cmlcpar1", "https://tec.openplanner.team/stops/Cmlcpar2"], ["https://tec.openplanner.team/stops/LeUgb--1", "https://tec.openplanner.team/stops/LeUgutl2"], ["https://tec.openplanner.team/stops/Lbrmour2", "https://tec.openplanner.team/stops/Llgplai1"], ["https://tec.openplanner.team/stops/H4rx176a", "https://tec.openplanner.team/stops/H4rx176b"], ["https://tec.openplanner.team/stops/X790acb", "https://tec.openplanner.team/stops/X790aja"], ["https://tec.openplanner.team/stops/LlNsc651", "https://tec.openplanner.team/stops/LlNschu1"], ["https://tec.openplanner.team/stops/N574aab", "https://tec.openplanner.team/stops/N574abb"], ["https://tec.openplanner.team/stops/LESgare1", "https://tec.openplanner.team/stops/LESmont2"], ["https://tec.openplanner.team/stops/LMOm64-1", "https://tec.openplanner.team/stops/LMOpiss2"], ["https://tec.openplanner.team/stops/X826aab", "https://tec.openplanner.team/stops/X826aga"], ["https://tec.openplanner.team/stops/Cobbusc1", "https://tec.openplanner.team/stops/Cobmara2"], ["https://tec.openplanner.team/stops/Lagjard2", "https://tec.openplanner.team/stops/Lagrask2"], ["https://tec.openplanner.team/stops/X720aaa", "https://tec.openplanner.team/stops/X720adb"], ["https://tec.openplanner.team/stops/H2mo124a", "https://tec.openplanner.team/stops/H2mo124b"], ["https://tec.openplanner.team/stops/N501aka", "https://tec.openplanner.team/stops/N501apa"], ["https://tec.openplanner.team/stops/N543cka", "https://tec.openplanner.team/stops/N543cla"], ["https://tec.openplanner.team/stops/LOUbarr1", "https://tec.openplanner.team/stops/LOUherm2"], ["https://tec.openplanner.team/stops/LTrchar1", "https://tec.openplanner.team/stops/LTrchar2"], ["https://tec.openplanner.team/stops/X618ada", "https://tec.openplanner.team/stops/X618aeb"], ["https://tec.openplanner.team/stops/H4ne139a", "https://tec.openplanner.team/stops/H4te249b"], ["https://tec.openplanner.team/stops/X805aka", "https://tec.openplanner.team/stops/X806aha"], ["https://tec.openplanner.team/stops/Cwgcamp2", "https://tec.openplanner.team/stops/Cwgrabi2"], ["https://tec.openplanner.team/stops/LBEairp4", "https://tec.openplanner.team/stops/LBEfagn1"], ["https://tec.openplanner.team/stops/H1pw122b", "https://tec.openplanner.team/stops/H1wg124a"], ["https://tec.openplanner.team/stops/Blaneli1", "https://tec.openplanner.team/stops/Blanove2"], ["https://tec.openplanner.team/stops/N560aaa", "https://tec.openplanner.team/stops/N560acb"], ["https://tec.openplanner.team/stops/H1ba107b", "https://tec.openplanner.team/stops/H1qu111b"], ["https://tec.openplanner.team/stops/LwLkirc2", "https://tec.openplanner.team/stops/LwLprum1"], ["https://tec.openplanner.team/stops/Bwatfon1", "https://tec.openplanner.team/stops/Bwatran2"], ["https://tec.openplanner.team/stops/Cmeloti2", "https://tec.openplanner.team/stops/Cmewaya1"], ["https://tec.openplanner.team/stops/N585abb", "https://tec.openplanner.team/stops/N585ajb"], ["https://tec.openplanner.team/stops/H1au103a", "https://tec.openplanner.team/stops/H1au103b"], ["https://tec.openplanner.team/stops/X636arb", "https://tec.openplanner.team/stops/X636atb"], ["https://tec.openplanner.team/stops/Bhevjal1", "https://tec.openplanner.team/stops/Bhevl3l1"], ["https://tec.openplanner.team/stops/H1gi154b", "https://tec.openplanner.team/stops/H1hg179a"], ["https://tec.openplanner.team/stops/H1hr118a", "https://tec.openplanner.team/stops/H1hr124b"], ["https://tec.openplanner.team/stops/H1wa149c", "https://tec.openplanner.team/stops/H1wa156b"], ["https://tec.openplanner.team/stops/Bbcocou2", "https://tec.openplanner.team/stops/Bbcolno2"], ["https://tec.openplanner.team/stops/Ccobinc2", "https://tec.openplanner.team/stops/Ccoforr1"], ["https://tec.openplanner.team/stops/LVkchap2", "https://tec.openplanner.team/stops/LVkinst2"], ["https://tec.openplanner.team/stops/N501ffb", "https://tec.openplanner.team/stops/N501fqd"], ["https://tec.openplanner.team/stops/LHXmonu1", "https://tec.openplanner.team/stops/LLVfoss1"], ["https://tec.openplanner.team/stops/X715aaa", "https://tec.openplanner.team/stops/X716aca"], ["https://tec.openplanner.team/stops/N501dqb", "https://tec.openplanner.team/stops/N501mvd"], ["https://tec.openplanner.team/stops/LMHoha-2", "https://tec.openplanner.team/stops/LWNcham2"], ["https://tec.openplanner.team/stops/N244abb", "https://tec.openplanner.team/stops/N244amb"], ["https://tec.openplanner.team/stops/X721aqa", "https://tec.openplanner.team/stops/X721aqb"], ["https://tec.openplanner.team/stops/Ljhmany1", "https://tec.openplanner.team/stops/LPoewer2"], ["https://tec.openplanner.team/stops/LVHbrai1", "https://tec.openplanner.team/stops/LVHbrai2"], ["https://tec.openplanner.team/stops/X630aca", "https://tec.openplanner.team/stops/X638ada"], ["https://tec.openplanner.team/stops/Crcpla1", "https://tec.openplanner.team/stops/Crcrgar2"], ["https://tec.openplanner.team/stops/Cmlcent1", "https://tec.openplanner.team/stops/Cmlpbay2"], ["https://tec.openplanner.team/stops/LHgpost2", "https://tec.openplanner.team/stops/LOMdodi2"], ["https://tec.openplanner.team/stops/LORroma1", "https://tec.openplanner.team/stops/LTotrui2"], ["https://tec.openplanner.team/stops/LMOchpl2", "https://tec.openplanner.team/stops/LMOfrel2"], ["https://tec.openplanner.team/stops/X938aeb", "https://tec.openplanner.team/stops/X950acb"], ["https://tec.openplanner.team/stops/Bjodeco3", "https://tec.openplanner.team/stops/Bsrgm101"], ["https://tec.openplanner.team/stops/N874ala", "https://tec.openplanner.team/stops/X887aab"], ["https://tec.openplanner.team/stops/Beclaub2", "https://tec.openplanner.team/stops/Beclron1"], ["https://tec.openplanner.team/stops/Louaout1", "https://tec.openplanner.team/stops/Lstvill2"], ["https://tec.openplanner.team/stops/LVbpave1", "https://tec.openplanner.team/stops/NL77anb"], ["https://tec.openplanner.team/stops/LTRoasi1", "https://tec.openplanner.team/stops/LTRoasi2"], ["https://tec.openplanner.team/stops/LWNbeto1", "https://tec.openplanner.team/stops/LWNcime1"], ["https://tec.openplanner.team/stops/H1qv110a", "https://tec.openplanner.team/stops/H1qv114a"], ["https://tec.openplanner.team/stops/N553aba", "https://tec.openplanner.team/stops/N553aoa"], ["https://tec.openplanner.team/stops/N539aua", "https://tec.openplanner.team/stops/N539aub"], ["https://tec.openplanner.team/stops/N562aob", "https://tec.openplanner.team/stops/N563ama"], ["https://tec.openplanner.team/stops/H1te179a", "https://tec.openplanner.team/stops/H1vt194b"], ["https://tec.openplanner.team/stops/H1gc122b", "https://tec.openplanner.team/stops/H1gc124b"], ["https://tec.openplanner.team/stops/LAUbirv1", "https://tec.openplanner.team/stops/LAUbirv2"], ["https://tec.openplanner.team/stops/Lhrherm1", "https://tec.openplanner.team/stops/Lhrmemo2"], ["https://tec.openplanner.team/stops/H4gu111a", "https://tec.openplanner.team/stops/H4ta119a"], ["https://tec.openplanner.team/stops/Brixaug1", "https://tec.openplanner.team/stops/Brixpro2"], ["https://tec.openplanner.team/stops/LATmale1", "https://tec.openplanner.team/stops/LWNwavr5"], ["https://tec.openplanner.team/stops/N312acb", "https://tec.openplanner.team/stops/N312ada"], ["https://tec.openplanner.team/stops/H1mm126a", "https://tec.openplanner.team/stops/H1mm128a"], ["https://tec.openplanner.team/stops/H5pe128a", "https://tec.openplanner.team/stops/H5pe128b"], ["https://tec.openplanner.team/stops/H2be102a", "https://tec.openplanner.team/stops/H2mg137a"], ["https://tec.openplanner.team/stops/LClbloc2", "https://tec.openplanner.team/stops/LThelse1"], ["https://tec.openplanner.team/stops/Lhubarl2", "https://tec.openplanner.team/stops/Lmnrame2"], ["https://tec.openplanner.team/stops/H2lc168b", "https://tec.openplanner.team/stops/H2lc169b"], ["https://tec.openplanner.team/stops/LSTchef2", "https://tec.openplanner.team/stops/LSTcomm1"], ["https://tec.openplanner.team/stops/X921apa", "https://tec.openplanner.team/stops/X923apb"], ["https://tec.openplanner.team/stops/N501mxb", "https://tec.openplanner.team/stops/N533ald"], ["https://tec.openplanner.team/stops/N580aba", "https://tec.openplanner.team/stops/N580abb"], ["https://tec.openplanner.team/stops/Llgddef1", "https://tec.openplanner.team/stops/Llggeer3"], ["https://tec.openplanner.team/stops/H3lr109a", "https://tec.openplanner.team/stops/H3lr109b"], ["https://tec.openplanner.team/stops/N501ifa", "https://tec.openplanner.team/stops/N501ifb"], ["https://tec.openplanner.team/stops/N506bab", "https://tec.openplanner.team/stops/N506bac"], ["https://tec.openplanner.team/stops/Lvtbocl2", "https://tec.openplanner.team/stops/Lvtmeun1"], ["https://tec.openplanner.team/stops/Btancnd2", "https://tec.openplanner.team/stops/Bvlvbth1"], ["https://tec.openplanner.team/stops/N209aha", "https://tec.openplanner.team/stops/N209aka"], ["https://tec.openplanner.team/stops/Lgrmc--2", "https://tec.openplanner.team/stops/Lgrside2"], ["https://tec.openplanner.team/stops/H4fo116b", "https://tec.openplanner.team/stops/H4vz369a"], ["https://tec.openplanner.team/stops/X717aaa", "https://tec.openplanner.team/stops/X717aab"], ["https://tec.openplanner.team/stops/X921aoa", "https://tec.openplanner.team/stops/X979aob"], ["https://tec.openplanner.team/stops/LbUbisc1", "https://tec.openplanner.team/stops/LbUpost2"], ["https://tec.openplanner.team/stops/NH01aha", "https://tec.openplanner.team/stops/NH01aib"], ["https://tec.openplanner.team/stops/H2ll180b", "https://tec.openplanner.team/stops/H2ll258a"], ["https://tec.openplanner.team/stops/X657afb", "https://tec.openplanner.team/stops/X657agb"], ["https://tec.openplanner.team/stops/Bdlmflo1", "https://tec.openplanner.team/stops/Bdvmalo2"], ["https://tec.openplanner.team/stops/H1go169a", "https://tec.openplanner.team/stops/H1qy136b"], ["https://tec.openplanner.team/stops/Lseprog1", "https://tec.openplanner.team/stops/Lseprog2"], ["https://tec.openplanner.team/stops/H4ty308a", "https://tec.openplanner.team/stops/H4ty308c"], ["https://tec.openplanner.team/stops/H4fa124a", "https://tec.openplanner.team/stops/H4fa124b"], ["https://tec.openplanner.team/stops/LSSjeun1", "https://tec.openplanner.team/stops/LSSvill2"], ["https://tec.openplanner.team/stops/Barchez1", "https://tec.openplanner.team/stops/Barcsta2"], ["https://tec.openplanner.team/stops/Bincbbo4", "https://tec.openplanner.team/stops/Bincegl1"], ["https://tec.openplanner.team/stops/H1mv240b", "https://tec.openplanner.team/stops/H1nv325a"], ["https://tec.openplanner.team/stops/Brsgcfl1", "https://tec.openplanner.team/stops/Brsggea1"], ["https://tec.openplanner.team/stops/Cgzchab1", "https://tec.openplanner.team/stops/Cgzcour2"], ["https://tec.openplanner.team/stops/Cmamonu1", "https://tec.openplanner.team/stops/Cmychap1"], ["https://tec.openplanner.team/stops/LSPbass1", "https://tec.openplanner.team/stops/LSPbass2"], ["https://tec.openplanner.team/stops/LHolexh1", "https://tec.openplanner.team/stops/LHZcouv1"], ["https://tec.openplanner.team/stops/Llianix1", "https://tec.openplanner.team/stops/Lligare*"], ["https://tec.openplanner.team/stops/Llglema3", "https://tec.openplanner.team/stops/Llgrome1"], ["https://tec.openplanner.team/stops/LEMec--1", "https://tec.openplanner.team/stops/LEMeg--2"], ["https://tec.openplanner.team/stops/N510acf", "https://tec.openplanner.team/stops/N510afb"], ["https://tec.openplanner.team/stops/Lghfors2", "https://tec.openplanner.team/stops/Lmlguis1"], ["https://tec.openplanner.team/stops/X766acb", "https://tec.openplanner.team/stops/X766ahb"], ["https://tec.openplanner.team/stops/H1je212b", "https://tec.openplanner.team/stops/H1je215a"], ["https://tec.openplanner.team/stops/N501goa", "https://tec.openplanner.team/stops/N501lsa"], ["https://tec.openplanner.team/stops/N311aeb", "https://tec.openplanner.team/stops/N368abb"], ["https://tec.openplanner.team/stops/N136aab", "https://tec.openplanner.team/stops/N136adb"], ["https://tec.openplanner.team/stops/N321ada", "https://tec.openplanner.team/stops/N321aea"], ["https://tec.openplanner.team/stops/N135aqb", "https://tec.openplanner.team/stops/N135aub"], ["https://tec.openplanner.team/stops/Cjucopp1", "https://tec.openplanner.team/stops/Cjugill4"], ["https://tec.openplanner.team/stops/H4ty281a", "https://tec.openplanner.team/stops/H4ty307a"], ["https://tec.openplanner.team/stops/LhDkreu2", "https://tec.openplanner.team/stops/LhDkreu3"], ["https://tec.openplanner.team/stops/Brsgm301", "https://tec.openplanner.team/stops/Brsgm302"], ["https://tec.openplanner.team/stops/Llgcmes2", "https://tec.openplanner.team/stops/Llgjasm2"], ["https://tec.openplanner.team/stops/H4ka188b", "https://tec.openplanner.team/stops/H4ka190b"], ["https://tec.openplanner.team/stops/H1ge115a", "https://tec.openplanner.team/stops/H1ge179a"], ["https://tec.openplanner.team/stops/Ccunove2", "https://tec.openplanner.team/stops/Ccuplai2"], ["https://tec.openplanner.team/stops/LAUabat2", "https://tec.openplanner.team/stops/LRmha261"], ["https://tec.openplanner.team/stops/Cradest1", "https://tec.openplanner.team/stops/Crasabl2"], ["https://tec.openplanner.team/stops/H3so176a", "https://tec.openplanner.team/stops/H3so178b"], ["https://tec.openplanner.team/stops/Cmlbras2", "https://tec.openplanner.team/stops/Cmlrang1"], ["https://tec.openplanner.team/stops/X662aqa", "https://tec.openplanner.team/stops/X662arb"], ["https://tec.openplanner.team/stops/H5pe135a", "https://tec.openplanner.team/stops/H5pe135b"], ["https://tec.openplanner.team/stops/LElgerd1", "https://tec.openplanner.team/stops/LWZponh2"], ["https://tec.openplanner.team/stops/H1bu138a", "https://tec.openplanner.team/stops/H1bu139a"], ["https://tec.openplanner.team/stops/N501cpa", "https://tec.openplanner.team/stops/N501cqa"], ["https://tec.openplanner.team/stops/LnIkirc1", "https://tec.openplanner.team/stops/LwYsour4"], ["https://tec.openplanner.team/stops/Lemmeha2", "https://tec.openplanner.team/stops/Lvcreve1"], ["https://tec.openplanner.team/stops/N874afb", "https://tec.openplanner.team/stops/N874ahb"], ["https://tec.openplanner.team/stops/N501bqb", "https://tec.openplanner.team/stops/N501bub"], ["https://tec.openplanner.team/stops/LFOchpl2", "https://tec.openplanner.team/stops/LFOmc--2"], ["https://tec.openplanner.team/stops/H5st164a", "https://tec.openplanner.team/stops/H5st167b"], ["https://tec.openplanner.team/stops/Lagcler1", "https://tec.openplanner.team/stops/Lagpaix2"], ["https://tec.openplanner.team/stops/LSyec--2", "https://tec.openplanner.team/stops/LSygerm2"], ["https://tec.openplanner.team/stops/LLrfont1", "https://tec.openplanner.team/stops/LLrfont2"], ["https://tec.openplanner.team/stops/X342aea", "https://tec.openplanner.team/stops/X342aeb"], ["https://tec.openplanner.team/stops/N505afb", "https://tec.openplanner.team/stops/N505aoa"], ["https://tec.openplanner.team/stops/N548acb", "https://tec.openplanner.team/stops/N548ayb"], ["https://tec.openplanner.team/stops/Cfmgara1", "https://tec.openplanner.team/stops/Csobrou2"], ["https://tec.openplanner.team/stops/X640aaa", "https://tec.openplanner.team/stops/X640acb"], ["https://tec.openplanner.team/stops/Llgbaro2", "https://tec.openplanner.team/stops/Llgglai2"], ["https://tec.openplanner.team/stops/Bnivace2", "https://tec.openplanner.team/stops/Bnivvri2"], ["https://tec.openplanner.team/stops/Lsmgdry2", "https://tec.openplanner.team/stops/Lvedepa*"], ["https://tec.openplanner.team/stops/N134aea", "https://tec.openplanner.team/stops/N134afa"], ["https://tec.openplanner.team/stops/X822aca", "https://tec.openplanner.team/stops/X822acb"], ["https://tec.openplanner.team/stops/NL76aoa", "https://tec.openplanner.team/stops/NL76apa"], ["https://tec.openplanner.team/stops/Brsgter1", "https://tec.openplanner.team/stops/Brsgtou1"], ["https://tec.openplanner.team/stops/N141amc", "https://tec.openplanner.team/stops/N141anb"], ["https://tec.openplanner.team/stops/Bnodblt1", "https://tec.openplanner.team/stops/Boplcsj3"], ["https://tec.openplanner.team/stops/X750baa", "https://tec.openplanner.team/stops/X750bia"], ["https://tec.openplanner.team/stops/X390ajb", "https://tec.openplanner.team/stops/X991aea"], ["https://tec.openplanner.team/stops/Cfmchap1", "https://tec.openplanner.team/stops/Cfmmart1"], ["https://tec.openplanner.team/stops/N118aia", "https://tec.openplanner.team/stops/N155aka"], ["https://tec.openplanner.team/stops/LCxchal2", "https://tec.openplanner.team/stops/LCxreno2"], ["https://tec.openplanner.team/stops/N201aqa", "https://tec.openplanner.team/stops/N211ala"], ["https://tec.openplanner.team/stops/Lemacac2", "https://tec.openplanner.team/stops/Lemmeha1"], ["https://tec.openplanner.team/stops/X659aka", "https://tec.openplanner.team/stops/X659ala"], ["https://tec.openplanner.team/stops/LFslign2", "https://tec.openplanner.team/stops/LFsphar2"], ["https://tec.openplanner.team/stops/LeUbell1", "https://tec.openplanner.team/stops/LeUschu1"], ["https://tec.openplanner.team/stops/LFacruc2", "https://tec.openplanner.team/stops/LVMfoli2"], ["https://tec.openplanner.team/stops/H1gr116b", "https://tec.openplanner.team/stops/H1gr123d"], ["https://tec.openplanner.team/stops/X604aab", "https://tec.openplanner.team/stops/X634aib"], ["https://tec.openplanner.team/stops/LBrmeiz1", "https://tec.openplanner.team/stops/LMici092"], ["https://tec.openplanner.team/stops/N331afc", "https://tec.openplanner.team/stops/N331afd"], ["https://tec.openplanner.team/stops/Bblaniv2", "https://tec.openplanner.team/stops/Bwatmgo3"], ["https://tec.openplanner.team/stops/LFdchau3", "https://tec.openplanner.team/stops/LFdchau4"], ["https://tec.openplanner.team/stops/NL77ala", "https://tec.openplanner.team/stops/NL77ama"], ["https://tec.openplanner.team/stops/LLMcouv1", "https://tec.openplanner.team/stops/LLMjacq1"], ["https://tec.openplanner.team/stops/Llgjonr2", "https://tec.openplanner.team/stops/Llgmair2"], ["https://tec.openplanner.team/stops/Ctubpos4", "https://tec.openplanner.team/stops/Ctuyser2"], ["https://tec.openplanner.team/stops/N501cob", "https://tec.openplanner.team/stops/N501csa"], ["https://tec.openplanner.team/stops/Lvegc--4", "https://tec.openplanner.team/stops/Lveharm2"], ["https://tec.openplanner.team/stops/Bgemcro2", "https://tec.openplanner.team/stops/Bgemgjo1"], ["https://tec.openplanner.team/stops/Bllnmet1", "https://tec.openplanner.team/stops/Bllnpaf4"], ["https://tec.openplanner.team/stops/LWAperv1", "https://tec.openplanner.team/stops/LWApt--1"], ["https://tec.openplanner.team/stops/Bmaregl2", "https://tec.openplanner.team/stops/Btilmar2"], ["https://tec.openplanner.team/stops/Lmofays2", "https://tec.openplanner.team/stops/Lmolama2"], ["https://tec.openplanner.team/stops/Cmlgoff1", "https://tec.openplanner.team/stops/Cmlvitf2"], ["https://tec.openplanner.team/stops/N530afa", "https://tec.openplanner.team/stops/N530aia"], ["https://tec.openplanner.team/stops/LgHdorf1", "https://tec.openplanner.team/stops/LsVbs--*"], ["https://tec.openplanner.team/stops/N153aab", "https://tec.openplanner.team/stops/N153aca"], ["https://tec.openplanner.team/stops/H4tu171b", "https://tec.openplanner.team/stops/H4wp148a"], ["https://tec.openplanner.team/stops/X658ada", "https://tec.openplanner.team/stops/X658afb"], ["https://tec.openplanner.team/stops/Lsmberg2", "https://tec.openplanner.team/stops/Lsmtini1"], ["https://tec.openplanner.team/stops/LTicent2", "https://tec.openplanner.team/stops/LTieg--1"], ["https://tec.openplanner.team/stops/LBRpier2", "https://tec.openplanner.team/stops/LBRruel1"], ["https://tec.openplanner.team/stops/Cgzmarb1", "https://tec.openplanner.team/stops/Cgzvivi2"], ["https://tec.openplanner.team/stops/N513aaa", "https://tec.openplanner.team/stops/N513aab"], ["https://tec.openplanner.team/stops/Bgrmfga1", "https://tec.openplanner.team/stops/Bgrmfon1"], ["https://tec.openplanner.team/stops/N120aeb", "https://tec.openplanner.team/stops/N120aha"], ["https://tec.openplanner.team/stops/H3th134a", "https://tec.openplanner.team/stops/H3th135c"], ["https://tec.openplanner.team/stops/N524ada", "https://tec.openplanner.team/stops/N524ama"], ["https://tec.openplanner.team/stops/X371aga", "https://tec.openplanner.team/stops/X371agb"], ["https://tec.openplanner.team/stops/LoEauto2", "https://tec.openplanner.team/stops/LrDhund2"], ["https://tec.openplanner.team/stops/N519apa", "https://tec.openplanner.team/stops/N520aia"], ["https://tec.openplanner.team/stops/X608aia", "https://tec.openplanner.team/stops/X627aba"], ["https://tec.openplanner.team/stops/H5at128b", "https://tec.openplanner.team/stops/H5ma186a"], ["https://tec.openplanner.team/stops/Lveharm2", "https://tec.openplanner.team/stops/Lvehodi1"], ["https://tec.openplanner.team/stops/Bramcar2", "https://tec.openplanner.team/stops/Bramrdf1"], ["https://tec.openplanner.team/stops/N152abd", "https://tec.openplanner.team/stops/N152abe"], ["https://tec.openplanner.team/stops/Lvesomm1", "https://tec.openplanner.team/stops/Lvesomm2"], ["https://tec.openplanner.team/stops/X768ada", "https://tec.openplanner.team/stops/X768aed"], ["https://tec.openplanner.team/stops/Cpljonc1", "https://tec.openplanner.team/stops/Cplrymo1"], ["https://tec.openplanner.team/stops/LbUkrin2", "https://tec.openplanner.team/stops/LrOtria2"], ["https://tec.openplanner.team/stops/X620ada", "https://tec.openplanner.team/stops/X621aaa"], ["https://tec.openplanner.team/stops/N534blg", "https://tec.openplanner.team/stops/N534blh"], ["https://tec.openplanner.team/stops/Ltiecch2", "https://tec.openplanner.team/stops/Ltinico1"], ["https://tec.openplanner.team/stops/X902bcb", "https://tec.openplanner.team/stops/X999alb"], ["https://tec.openplanner.team/stops/Lchec--1", "https://tec.openplanner.team/stops/Lchec--2"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/Crcfdom2"], ["https://tec.openplanner.team/stops/H1mm121a", "https://tec.openplanner.team/stops/H1mm122c"], ["https://tec.openplanner.team/stops/LCsbors1", "https://tec.openplanner.team/stops/LCsraws1"], ["https://tec.openplanner.team/stops/Lanfont1", "https://tec.openplanner.team/stops/Lglsana1"], ["https://tec.openplanner.team/stops/N118ada", "https://tec.openplanner.team/stops/N155aib"], ["https://tec.openplanner.team/stops/Lvehauz2", "https://tec.openplanner.team/stops/Lveherl1"], ["https://tec.openplanner.team/stops/X888afa", "https://tec.openplanner.team/stops/X888afb"], ["https://tec.openplanner.team/stops/X601avb", "https://tec.openplanner.team/stops/X601cxa"], ["https://tec.openplanner.team/stops/LJAsuri2", "https://tec.openplanner.team/stops/LSUhage2"], ["https://tec.openplanner.team/stops/Cvlpeau1", "https://tec.openplanner.team/stops/NH21acb"], ["https://tec.openplanner.team/stops/LeUclou1", "https://tec.openplanner.team/stops/LeUmeye1"], ["https://tec.openplanner.team/stops/LHhelia1", "https://tec.openplanner.team/stops/LHhvivi2"], ["https://tec.openplanner.team/stops/LJUmc--2", "https://tec.openplanner.team/stops/LVSslin4"], ["https://tec.openplanner.team/stops/Cmlbuis3", "https://tec.openplanner.team/stops/Cmlbulp3"], ["https://tec.openplanner.team/stops/X901ana", "https://tec.openplanner.team/stops/X901bqa"], ["https://tec.openplanner.team/stops/N509bea", "https://tec.openplanner.team/stops/N509bfa"], ["https://tec.openplanner.team/stops/X818abb", "https://tec.openplanner.team/stops/X818aca"], ["https://tec.openplanner.team/stops/H5bl142a", "https://tec.openplanner.team/stops/H5bl142b"], ["https://tec.openplanner.team/stops/N118avc", "https://tec.openplanner.team/stops/N118avd"], ["https://tec.openplanner.team/stops/X982aea", "https://tec.openplanner.team/stops/X982aeb"], ["https://tec.openplanner.team/stops/H4ln129a", "https://tec.openplanner.team/stops/H4ln129b"], ["https://tec.openplanner.team/stops/LSkathe1", "https://tec.openplanner.team/stops/LSkathe2"], ["https://tec.openplanner.team/stops/N501ctb", "https://tec.openplanner.team/stops/N535apb"], ["https://tec.openplanner.team/stops/H1ci104b", "https://tec.openplanner.team/stops/H1ci105b"], ["https://tec.openplanner.team/stops/X636aib", "https://tec.openplanner.team/stops/X636ajb"], ["https://tec.openplanner.team/stops/X318aca", "https://tec.openplanner.team/stops/X364acb"], ["https://tec.openplanner.team/stops/H1mg108b", "https://tec.openplanner.team/stops/H1mg109a"], ["https://tec.openplanner.team/stops/Bbsicea2", "https://tec.openplanner.team/stops/Bbsigaz1"], ["https://tec.openplanner.team/stops/H5bs104a", "https://tec.openplanner.team/stops/H5bs104b"], ["https://tec.openplanner.team/stops/Llgbois1", "https://tec.openplanner.team/stops/Llgbois2"], ["https://tec.openplanner.team/stops/H2sb225b", "https://tec.openplanner.team/stops/H2sb227b"], ["https://tec.openplanner.team/stops/Cbetrie1", "https://tec.openplanner.team/stops/Ccspla"], ["https://tec.openplanner.team/stops/X992aga", "https://tec.openplanner.team/stops/X992aia"], ["https://tec.openplanner.team/stops/X715aca", "https://tec.openplanner.team/stops/X715acb"], ["https://tec.openplanner.team/stops/H1sg148b", "https://tec.openplanner.team/stops/H1sg150c"], ["https://tec.openplanner.team/stops/X793aaa", "https://tec.openplanner.team/stops/X793aab"], ["https://tec.openplanner.team/stops/Clcfall2", "https://tec.openplanner.team/stops/Clcfall3"], ["https://tec.openplanner.team/stops/LHGbeur4", "https://tec.openplanner.team/stops/LXhvina1"], ["https://tec.openplanner.team/stops/Bhandub1", "https://tec.openplanner.team/stops/Bhanmou2"], ["https://tec.openplanner.team/stops/X748afa", "https://tec.openplanner.team/stops/X769aca"], ["https://tec.openplanner.team/stops/H2hg152a", "https://tec.openplanner.team/stops/H2hg157b"], ["https://tec.openplanner.team/stops/H4my123b", "https://tec.openplanner.team/stops/H4vz369b"], ["https://tec.openplanner.team/stops/N102aca", "https://tec.openplanner.team/stops/N103aha"], ["https://tec.openplanner.team/stops/H4li179a", "https://tec.openplanner.team/stops/H4li179b"], ["https://tec.openplanner.team/stops/Csrcant1", "https://tec.openplanner.team/stops/Cvtvois1"], ["https://tec.openplanner.team/stops/LMOeg--1", "https://tec.openplanner.team/stops/LMOelva2"], ["https://tec.openplanner.team/stops/N534bra", "https://tec.openplanner.team/stops/N534bsa"], ["https://tec.openplanner.team/stops/LBkgrae1", "https://tec.openplanner.team/stops/LBkjenn1"], ["https://tec.openplanner.team/stops/N543cha", "https://tec.openplanner.team/stops/N543cia"], ["https://tec.openplanner.team/stops/Cctsncb1", "https://tec.openplanner.team/stops/Cctsncb3"], ["https://tec.openplanner.team/stops/N543aza", "https://tec.openplanner.team/stops/N543azb"], ["https://tec.openplanner.team/stops/X618aea", "https://tec.openplanner.team/stops/X618afa"], ["https://tec.openplanner.team/stops/LBNvill2", "https://tec.openplanner.team/stops/LBNvill6"], ["https://tec.openplanner.team/stops/Buccpes1", "https://tec.openplanner.team/stops/Buccpin1"], ["https://tec.openplanner.team/stops/Cciferr2", "https://tec.openplanner.team/stops/Ccipano1"], ["https://tec.openplanner.team/stops/Bglibui1", "https://tec.openplanner.team/stops/Bjdsjso1"], ["https://tec.openplanner.team/stops/Cbicamp2", "https://tec.openplanner.team/stops/Ctupont4"], ["https://tec.openplanner.team/stops/Lvisere1", "https://tec.openplanner.team/stops/Lviweri2"], ["https://tec.openplanner.team/stops/H4bo120b", "https://tec.openplanner.team/stops/H4bo122b"], ["https://tec.openplanner.team/stops/X876afa", "https://tec.openplanner.team/stops/X877adb"], ["https://tec.openplanner.team/stops/X812aga", "https://tec.openplanner.team/stops/X812agb"], ["https://tec.openplanner.team/stops/H2mo120b", "https://tec.openplanner.team/stops/H2mo138c"], ["https://tec.openplanner.team/stops/Cvscomb1", "https://tec.openplanner.team/stops/N530aab"], ["https://tec.openplanner.team/stops/LhLdorf1", "https://tec.openplanner.team/stops/LhLdorf2"], ["https://tec.openplanner.team/stops/LeYauto2", "https://tec.openplanner.team/stops/LhSbruc1"], ["https://tec.openplanner.team/stops/Bbst4br2", "https://tec.openplanner.team/stops/Cbtgemi2"], ["https://tec.openplanner.team/stops/X982aqa", "https://tec.openplanner.team/stops/X982aqb"], ["https://tec.openplanner.team/stops/Bwbfbon1", "https://tec.openplanner.team/stops/Bwbfckr1"], ["https://tec.openplanner.team/stops/NC14abb", "https://tec.openplanner.team/stops/NC44aha"], ["https://tec.openplanner.team/stops/LSktinc1", "https://tec.openplanner.team/stops/LSktinc2"], ["https://tec.openplanner.team/stops/X806aja", "https://tec.openplanner.team/stops/X807aaa"], ["https://tec.openplanner.team/stops/LPLc65-2", "https://tec.openplanner.team/stops/LPLline2"], ["https://tec.openplanner.team/stops/H5wo124a", "https://tec.openplanner.team/stops/H5wo133a"], ["https://tec.openplanner.team/stops/N242aeb", "https://tec.openplanner.team/stops/N243aab"], ["https://tec.openplanner.team/stops/Loubour1", "https://tec.openplanner.team/stops/Louhauf2"], ["https://tec.openplanner.team/stops/H1ca109a", "https://tec.openplanner.team/stops/H1ca109b"], ["https://tec.openplanner.team/stops/X609ahb", "https://tec.openplanner.team/stops/X610aba"], ["https://tec.openplanner.team/stops/H1ms263a", "https://tec.openplanner.team/stops/H1ms275b"], ["https://tec.openplanner.team/stops/Llmdela2", "https://tec.openplanner.team/stops/Lpecroi1"], ["https://tec.openplanner.team/stops/Canchbr1", "https://tec.openplanner.team/stops/Canstat2"], ["https://tec.openplanner.team/stops/H4an111b", "https://tec.openplanner.team/stops/H4rs119a"], ["https://tec.openplanner.team/stops/H4tu172a", "https://tec.openplanner.team/stops/H4tu172c"], ["https://tec.openplanner.team/stops/Canboha1", "https://tec.openplanner.team/stops/Canh1941"], ["https://tec.openplanner.team/stops/Cna6che1", "https://tec.openplanner.team/stops/Cnapetr1"], ["https://tec.openplanner.team/stops/LSHhade1", "https://tec.openplanner.team/stops/LSHneuv2"], ["https://tec.openplanner.team/stops/LGreg--1", "https://tec.openplanner.team/stops/LGrfont1"], ["https://tec.openplanner.team/stops/LvAwere1", "https://tec.openplanner.team/stops/LwEdorf1"], ["https://tec.openplanner.team/stops/X314aaa", "https://tec.openplanner.team/stops/X813adb"], ["https://tec.openplanner.team/stops/LGEwalk2", "https://tec.openplanner.team/stops/LLStrid3"], ["https://tec.openplanner.team/stops/NL77aib", "https://tec.openplanner.team/stops/NL77ajb"], ["https://tec.openplanner.team/stops/LrAbotz1", "https://tec.openplanner.team/stops/LrAiter1"], ["https://tec.openplanner.team/stops/LEnvill2", "https://tec.openplanner.team/stops/NL73abb"], ["https://tec.openplanner.team/stops/Brixcro1", "https://tec.openplanner.team/stops/Brixpao3"], ["https://tec.openplanner.team/stops/LHTboul2", "https://tec.openplanner.team/stops/LHTmoul1"], ["https://tec.openplanner.team/stops/LlgLAMB5", "https://tec.openplanner.team/stops/LlgR-Fr*"], ["https://tec.openplanner.team/stops/Loubonc2", "https://tec.openplanner.team/stops/Loucent1"], ["https://tec.openplanner.team/stops/X919aba", "https://tec.openplanner.team/stops/X919abb"], ["https://tec.openplanner.team/stops/LBIrout1", "https://tec.openplanner.team/stops/LFOchpl2"], ["https://tec.openplanner.team/stops/X757acb", "https://tec.openplanner.team/stops/X758aga"], ["https://tec.openplanner.team/stops/X928aaa", "https://tec.openplanner.team/stops/X945adb"], ["https://tec.openplanner.team/stops/H1ho125b", "https://tec.openplanner.team/stops/H1ho125c"], ["https://tec.openplanner.team/stops/Ccybouc3", "https://tec.openplanner.team/stops/NH01aea"], ["https://tec.openplanner.team/stops/LBRtrag2", "https://tec.openplanner.team/stops/LTOplac1"], ["https://tec.openplanner.team/stops/Cnagrro2", "https://tec.openplanner.team/stops/Cnaplha2"], ["https://tec.openplanner.team/stops/Bhmmsca1", "https://tec.openplanner.team/stops/Btlgmar1"], ["https://tec.openplanner.team/stops/Bitrcen2", "https://tec.openplanner.team/stops/Bitregl2"], ["https://tec.openplanner.team/stops/N501gia", "https://tec.openplanner.team/stops/N501giz"], ["https://tec.openplanner.team/stops/Bwatdco1", "https://tec.openplanner.team/stops/Bwatfia1"], ["https://tec.openplanner.team/stops/Bvirvol1", "https://tec.openplanner.team/stops/Bvirvol2"], ["https://tec.openplanner.team/stops/Cfrmonu1", "https://tec.openplanner.team/stops/Cfrmonu2"], ["https://tec.openplanner.team/stops/LWDbure2", "https://tec.openplanner.team/stops/LWDchpl2"], ["https://tec.openplanner.team/stops/Lvehv--4", "https://tec.openplanner.team/stops/Lvepala7"], ["https://tec.openplanner.team/stops/LkEkirc2", "https://tec.openplanner.team/stops/LkEsada1"], ["https://tec.openplanner.team/stops/N584apa", "https://tec.openplanner.team/stops/N584apb"], ["https://tec.openplanner.team/stops/Loucoti1", "https://tec.openplanner.team/stops/Loutroi1"], ["https://tec.openplanner.team/stops/X805ajb", "https://tec.openplanner.team/stops/X833aca"], ["https://tec.openplanner.team/stops/N141aba", "https://tec.openplanner.team/stops/N141abb"], ["https://tec.openplanner.team/stops/H4ty382b", "https://tec.openplanner.team/stops/H4ty383a"], ["https://tec.openplanner.team/stops/X601aib", "https://tec.openplanner.team/stops/X601ama"], ["https://tec.openplanner.team/stops/H1ht126a", "https://tec.openplanner.team/stops/H1ht131a"], ["https://tec.openplanner.team/stops/N501cra", "https://tec.openplanner.team/stops/N501crc"], ["https://tec.openplanner.team/stops/LREheyd2", "https://tec.openplanner.team/stops/LREsp901"], ["https://tec.openplanner.team/stops/X811aob", "https://tec.openplanner.team/stops/X812aya"], ["https://tec.openplanner.team/stops/LVIhall1", "https://tec.openplanner.team/stops/LVIjacq1"], ["https://tec.openplanner.team/stops/H4bw102a", "https://tec.openplanner.team/stops/H4wn131a"], ["https://tec.openplanner.team/stops/N149ahb", "https://tec.openplanner.team/stops/N149ahc"], ["https://tec.openplanner.team/stops/Ccupdes2", "https://tec.openplanner.team/stops/Ccupomp1"], ["https://tec.openplanner.team/stops/Bbosgar2", "https://tec.openplanner.team/stops/Bhoealt1"], ["https://tec.openplanner.team/stops/Cli4bra2", "https://tec.openplanner.team/stops/Cliegli1"], ["https://tec.openplanner.team/stops/H1hr116b", "https://tec.openplanner.team/stops/H1hr129a"], ["https://tec.openplanner.team/stops/Lfhchaf*", "https://tec.openplanner.team/stops/Lfhchaf3"], ["https://tec.openplanner.team/stops/LmAkirc1", "https://tec.openplanner.team/stops/X792abb"], ["https://tec.openplanner.team/stops/N534aeb", "https://tec.openplanner.team/stops/N553aoa"], ["https://tec.openplanner.team/stops/Bsgipmo2", "https://tec.openplanner.team/stops/Buccdch2"], ["https://tec.openplanner.team/stops/LBafagn1", "https://tec.openplanner.team/stops/LBafagn2"], ["https://tec.openplanner.team/stops/H4ty301b", "https://tec.openplanner.team/stops/H4ty301c"], ["https://tec.openplanner.team/stops/X601cta", "https://tec.openplanner.team/stops/X662aha"], ["https://tec.openplanner.team/stops/LFFchab1", "https://tec.openplanner.team/stops/LVLf10-2"], ["https://tec.openplanner.team/stops/Cvlcalv2", "https://tec.openplanner.team/stops/Cvlpeau2"], ["https://tec.openplanner.team/stops/X663atb", "https://tec.openplanner.team/stops/X663ayb"], ["https://tec.openplanner.team/stops/LAMdelh*", "https://tec.openplanner.team/stops/LAMhopi1"], ["https://tec.openplanner.team/stops/H4mo146a", "https://tec.openplanner.team/stops/H4mo146b"], ["https://tec.openplanner.team/stops/Crowilb1", "https://tec.openplanner.team/stops/Crowilb2"], ["https://tec.openplanner.team/stops/Lhrathe*", "https://tec.openplanner.team/stops/Lhrhome2"], ["https://tec.openplanner.team/stops/N501hab", "https://tec.openplanner.team/stops/N501ihz"], ["https://tec.openplanner.team/stops/LeYvoge2", "https://tec.openplanner.team/stops/LrAbe602"], ["https://tec.openplanner.team/stops/H2ec103a", "https://tec.openplanner.team/stops/H2ec110b"], ["https://tec.openplanner.team/stops/LLxconj1", "https://tec.openplanner.team/stops/LLxmonu1"], ["https://tec.openplanner.team/stops/X907agb", "https://tec.openplanner.team/stops/X908aqa"], ["https://tec.openplanner.team/stops/N222ayb", "https://tec.openplanner.team/stops/X222azb"], ["https://tec.openplanner.team/stops/X754acb", "https://tec.openplanner.team/stops/X754adb"], ["https://tec.openplanner.team/stops/Lanlona1", "https://tec.openplanner.team/stops/Lanlona2"], ["https://tec.openplanner.team/stops/Lstchu-1", "https://tec.openplanner.team/stops/Lstchu-2"], ["https://tec.openplanner.team/stops/LbUwhon1", "https://tec.openplanner.team/stops/LbUwhon2"], ["https://tec.openplanner.team/stops/X746ahb", "https://tec.openplanner.team/stops/X746ahc"], ["https://tec.openplanner.team/stops/LnDkreu1", "https://tec.openplanner.team/stops/LwSgeme1"], ["https://tec.openplanner.team/stops/H5rx106b", "https://tec.openplanner.team/stops/H5rx130a"], ["https://tec.openplanner.team/stops/H4ch113a", "https://tec.openplanner.team/stops/H4ch120a"], ["https://tec.openplanner.team/stops/N512alb", "https://tec.openplanner.team/stops/N512ama"], ["https://tec.openplanner.team/stops/Cmaleri1", "https://tec.openplanner.team/stops/Cmazsnc1"], ["https://tec.openplanner.team/stops/LRemonu1", "https://tec.openplanner.team/stops/LRemonu2"], ["https://tec.openplanner.team/stops/Cnaplha1", "https://tec.openplanner.team/stops/Cnaplha4"], ["https://tec.openplanner.team/stops/N501grg", "https://tec.openplanner.team/stops/N501mha"], ["https://tec.openplanner.team/stops/NC14aca", "https://tec.openplanner.team/stops/NC44adb"], ["https://tec.openplanner.team/stops/N501lxb", "https://tec.openplanner.team/stops/N501mfa"], ["https://tec.openplanner.team/stops/Lrafusi1", "https://tec.openplanner.team/stops/LSAvieu2"], ["https://tec.openplanner.team/stops/LHXmonu1", "https://tec.openplanner.team/stops/LHXn47-3"], ["https://tec.openplanner.team/stops/H1mv240a", "https://tec.openplanner.team/stops/H1mv240b"], ["https://tec.openplanner.team/stops/X608aia", "https://tec.openplanner.team/stops/X609aba"], ["https://tec.openplanner.team/stops/Lgrchar2", "https://tec.openplanner.team/stops/Lgrcoll2"], ["https://tec.openplanner.team/stops/N135avb", "https://tec.openplanner.team/stops/N135bbb"], ["https://tec.openplanner.team/stops/H4ss153a", "https://tec.openplanner.team/stops/H4ss158b"], ["https://tec.openplanner.team/stops/X921ana", "https://tec.openplanner.team/stops/X922afa"], ["https://tec.openplanner.team/stops/H4lz162b", "https://tec.openplanner.team/stops/H4lz163a"], ["https://tec.openplanner.team/stops/LSNgerm1", "https://tec.openplanner.team/stops/LSNgerm2"], ["https://tec.openplanner.team/stops/N548agd", "https://tec.openplanner.team/stops/N569anb"], ["https://tec.openplanner.team/stops/Brsgfbl1", "https://tec.openplanner.team/stops/Brsggol1"], ["https://tec.openplanner.team/stops/N106ajb", "https://tec.openplanner.team/stops/N106ara"], ["https://tec.openplanner.team/stops/X743abb", "https://tec.openplanner.team/stops/X756aaa"], ["https://tec.openplanner.team/stops/X602aqb", "https://tec.openplanner.team/stops/X602arb"], ["https://tec.openplanner.team/stops/H4ta119b", "https://tec.openplanner.team/stops/H4ta135b"], ["https://tec.openplanner.team/stops/H4ba102a", "https://tec.openplanner.team/stops/H4ga151a"], ["https://tec.openplanner.team/stops/Bthsvil1", "https://tec.openplanner.team/stops/Bthsvil2"], ["https://tec.openplanner.team/stops/X825aaa", "https://tec.openplanner.team/stops/X825aab"], ["https://tec.openplanner.team/stops/X222ala", "https://tec.openplanner.team/stops/X222azb"], ["https://tec.openplanner.team/stops/H1te182a", "https://tec.openplanner.team/stops/H1te183a"], ["https://tec.openplanner.team/stops/X940aea", "https://tec.openplanner.team/stops/X940aeb"], ["https://tec.openplanner.team/stops/X359aba", "https://tec.openplanner.team/stops/X359acb"], ["https://tec.openplanner.team/stops/Lalwaro1", "https://tec.openplanner.team/stops/Lalwaro2"], ["https://tec.openplanner.team/stops/X758adb", "https://tec.openplanner.team/stops/X758aha"], ["https://tec.openplanner.team/stops/N521aib", "https://tec.openplanner.team/stops/N521aic"], ["https://tec.openplanner.team/stops/H5pe129b", "https://tec.openplanner.team/stops/H5pe132a"], ["https://tec.openplanner.team/stops/LXoharz4", "https://tec.openplanner.team/stops/LXoharz5"], ["https://tec.openplanner.team/stops/Lsedese1", "https://tec.openplanner.team/stops/Lsepcha1"], ["https://tec.openplanner.team/stops/Cvpcdec2", "https://tec.openplanner.team/stops/Cvppost2"], ["https://tec.openplanner.team/stops/Lsteg--1", "https://tec.openplanner.team/stops/Lsteg--2"], ["https://tec.openplanner.team/stops/N501dob", "https://tec.openplanner.team/stops/N501dra"], ["https://tec.openplanner.team/stops/LDAalbe1", "https://tec.openplanner.team/stops/LTreg--1"], ["https://tec.openplanner.team/stops/N243acb", "https://tec.openplanner.team/stops/N243aea"], ["https://tec.openplanner.team/stops/Boplcsj2", "https://tec.openplanner.team/stops/Bpienod1"], ["https://tec.openplanner.team/stops/N513awb", "https://tec.openplanner.team/stops/N521afb"], ["https://tec.openplanner.team/stops/X793afb", "https://tec.openplanner.team/stops/X793aqa"], ["https://tec.openplanner.team/stops/Lrcvinc2", "https://tec.openplanner.team/stops/Lvoec--1"], ["https://tec.openplanner.team/stops/N338aaa", "https://tec.openplanner.team/stops/N338aab"], ["https://tec.openplanner.team/stops/Lsebegu1", "https://tec.openplanner.team/stops/Lsetrav2"], ["https://tec.openplanner.team/stops/X638abb", "https://tec.openplanner.team/stops/X638acb"], ["https://tec.openplanner.team/stops/X801cba", "https://tec.openplanner.team/stops/X801cda"], ["https://tec.openplanner.team/stops/H4mo132a", "https://tec.openplanner.team/stops/H4mo157a"], ["https://tec.openplanner.team/stops/X663ama", "https://tec.openplanner.team/stops/X663aoa"], ["https://tec.openplanner.team/stops/LSemc--2", "https://tec.openplanner.team/stops/LVbpave2"], ["https://tec.openplanner.team/stops/H4au143b", "https://tec.openplanner.team/stops/H4og207b"], ["https://tec.openplanner.team/stops/N106acb", "https://tec.openplanner.team/stops/N137aab"], ["https://tec.openplanner.team/stops/Cgysole1", "https://tec.openplanner.team/stops/Cgysole2"], ["https://tec.openplanner.team/stops/LESgran1", "https://tec.openplanner.team/stops/LEShony1"], ["https://tec.openplanner.team/stops/H1ag104b", "https://tec.openplanner.team/stops/H1on128d"], ["https://tec.openplanner.team/stops/H4es117a", "https://tec.openplanner.team/stops/H4ln127a"], ["https://tec.openplanner.team/stops/LARgare1", "https://tec.openplanner.team/stops/Lchorme1"], ["https://tec.openplanner.team/stops/X985aea", "https://tec.openplanner.team/stops/X985aeb"], ["https://tec.openplanner.team/stops/X739aea", "https://tec.openplanner.team/stops/X779ada"], ["https://tec.openplanner.team/stops/X850ajb", "https://tec.openplanner.team/stops/X850akb"], ["https://tec.openplanner.team/stops/H4ga163b", "https://tec.openplanner.team/stops/H4ha167b"], ["https://tec.openplanner.team/stops/X886aha", "https://tec.openplanner.team/stops/X886ahb"], ["https://tec.openplanner.team/stops/H1fy118a", "https://tec.openplanner.team/stops/H1mr123b"], ["https://tec.openplanner.team/stops/LSGec--1", "https://tec.openplanner.team/stops/LSGec--2"], ["https://tec.openplanner.team/stops/Bmargve1", "https://tec.openplanner.team/stops/Bmarmpr1"], ["https://tec.openplanner.team/stops/Lan14ve2", "https://tec.openplanner.team/stops/Lanclon2"], ["https://tec.openplanner.team/stops/LSeec--3", "https://tec.openplanner.team/stops/LSerout2"], ["https://tec.openplanner.team/stops/LTIdonn1", "https://tec.openplanner.team/stops/LTIdonn2"], ["https://tec.openplanner.team/stops/LWDbure2", "https://tec.openplanner.team/stops/LWDsieg1"], ["https://tec.openplanner.team/stops/N501dpa", "https://tec.openplanner.team/stops/N501erb"], ["https://tec.openplanner.team/stops/LFochap2", "https://tec.openplanner.team/stops/LGOmonu1"], ["https://tec.openplanner.team/stops/H4ho119b", "https://tec.openplanner.team/stops/H4pl111b"], ["https://tec.openplanner.team/stops/X768ajb", "https://tec.openplanner.team/stops/X768akb"], ["https://tec.openplanner.team/stops/N501fla", "https://tec.openplanner.team/stops/N501fmb"], ["https://tec.openplanner.team/stops/H1cv104b", "https://tec.openplanner.team/stops/H1to152a"], ["https://tec.openplanner.team/stops/H4ce105a", "https://tec.openplanner.team/stops/H4ce106a"], ["https://tec.openplanner.team/stops/X992aca", "https://tec.openplanner.team/stops/X992aia"], ["https://tec.openplanner.team/stops/LLegare2", "https://tec.openplanner.team/stops/X547aeb"], ["https://tec.openplanner.team/stops/Lhrlico1", "https://tec.openplanner.team/stops/Lhrlico2"], ["https://tec.openplanner.team/stops/X716aaa", "https://tec.openplanner.team/stops/X716aab"], ["https://tec.openplanner.team/stops/X548aaa", "https://tec.openplanner.team/stops/X548aab"], ["https://tec.openplanner.team/stops/N564aba", "https://tec.openplanner.team/stops/N564abb"], ["https://tec.openplanner.team/stops/Cjutrou1", "https://tec.openplanner.team/stops/Cjutrou3"], ["https://tec.openplanner.team/stops/H4rm111a", "https://tec.openplanner.team/stops/H4rm112b"], ["https://tec.openplanner.team/stops/Bniltri1", "https://tec.openplanner.team/stops/Bwspbbo1"], ["https://tec.openplanner.team/stops/Bcbqcht1", "https://tec.openplanner.team/stops/Btubois2"], ["https://tec.openplanner.team/stops/LBNruns2", "https://tec.openplanner.team/stops/LBNvill6"], ["https://tec.openplanner.team/stops/Lancoop1", "https://tec.openplanner.team/stops/Lanstat1"], ["https://tec.openplanner.team/stops/Bettgle1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/H4oq228a", "https://tec.openplanner.team/stops/H4oq228b"], ["https://tec.openplanner.team/stops/H1ob328b", "https://tec.openplanner.team/stops/H1sd342a"], ["https://tec.openplanner.team/stops/Bblagar5", "https://tec.openplanner.team/stops/Bblagard"], ["https://tec.openplanner.team/stops/X729aca", "https://tec.openplanner.team/stops/X748afa"], ["https://tec.openplanner.team/stops/X993aib", "https://tec.openplanner.team/stops/X994aja"], ["https://tec.openplanner.team/stops/LTHec--2", "https://tec.openplanner.team/stops/LTHwaux2"], ["https://tec.openplanner.team/stops/LAVstat2", "https://tec.openplanner.team/stops/LVPduvi1"], ["https://tec.openplanner.team/stops/LLrelec1", "https://tec.openplanner.team/stops/LLrhest1"], ["https://tec.openplanner.team/stops/Bchgbel1", "https://tec.openplanner.team/stops/Bchgegl1"], ["https://tec.openplanner.team/stops/N202aab", "https://tec.openplanner.team/stops/N202afa"], ["https://tec.openplanner.team/stops/Llgdelc2", "https://tec.openplanner.team/stops/Lsnlibe2"], ["https://tec.openplanner.team/stops/LSygerm1", "https://tec.openplanner.team/stops/LSygerm2"], ["https://tec.openplanner.team/stops/Bbgeegl1", "https://tec.openplanner.team/stops/Bbgeegl2"], ["https://tec.openplanner.team/stops/Lougros1", "https://tec.openplanner.team/stops/Loujouh1"], ["https://tec.openplanner.team/stops/H3so178a", "https://tec.openplanner.team/stops/H3so178b"], ["https://tec.openplanner.team/stops/LSythie1", "https://tec.openplanner.team/stops/LWZbeem1"], ["https://tec.openplanner.team/stops/X804ada", "https://tec.openplanner.team/stops/X804azb"], ["https://tec.openplanner.team/stops/Brsrabe2", "https://tec.openplanner.team/stops/Brsrfen1"], ["https://tec.openplanner.team/stops/H4ma399a", "https://tec.openplanner.team/stops/H4ma400a"], ["https://tec.openplanner.team/stops/H1po139b", "https://tec.openplanner.team/stops/H5st168b"], ["https://tec.openplanner.team/stops/Bsmgegl1", "https://tec.openplanner.team/stops/Bsmgres1"], ["https://tec.openplanner.team/stops/X985aha", "https://tec.openplanner.team/stops/X985ahb"], ["https://tec.openplanner.team/stops/H1ms268a", "https://tec.openplanner.team/stops/H1ms269a"], ["https://tec.openplanner.team/stops/N528aia", "https://tec.openplanner.team/stops/N528akb"], ["https://tec.openplanner.team/stops/Cfanvmo1", "https://tec.openplanner.team/stops/Cpibois2"], ["https://tec.openplanner.team/stops/H1ha183a", "https://tec.openplanner.team/stops/H1ha200a"], ["https://tec.openplanner.team/stops/Lvebiol1", "https://tec.openplanner.team/stops/Lvesomm3"], ["https://tec.openplanner.team/stops/N503afb", "https://tec.openplanner.team/stops/N503agb"], ["https://tec.openplanner.team/stops/X664akb", "https://tec.openplanner.team/stops/X664alb"], ["https://tec.openplanner.team/stops/H2bh119b", "https://tec.openplanner.team/stops/H2lc172a"], ["https://tec.openplanner.team/stops/LGEpt--2", "https://tec.openplanner.team/stops/LGEvill2"], ["https://tec.openplanner.team/stops/LhPhale2", "https://tec.openplanner.team/stops/LhPkirc2"], ["https://tec.openplanner.team/stops/N131aga", "https://tec.openplanner.team/stops/N131agb"], ["https://tec.openplanner.team/stops/Bmelegl1", "https://tec.openplanner.team/stops/Btilsce1"], ["https://tec.openplanner.team/stops/Caindsa2", "https://tec.openplanner.team/stops/Caistro1"], ["https://tec.openplanner.team/stops/X663ajb", "https://tec.openplanner.team/stops/X663akb"], ["https://tec.openplanner.team/stops/Cblcent1", "https://tec.openplanner.team/stops/Cslbarb1"], ["https://tec.openplanner.team/stops/N501kwb", "https://tec.openplanner.team/stops/N501lwa"], ["https://tec.openplanner.team/stops/Lligare*", "https://tec.openplanner.team/stops/Llivina1"], ["https://tec.openplanner.team/stops/X753aba", "https://tec.openplanner.team/stops/X753acb"], ["https://tec.openplanner.team/stops/X739ahb", "https://tec.openplanner.team/stops/X739aja"], ["https://tec.openplanner.team/stops/N234aca", "https://tec.openplanner.team/stops/N549aib"], ["https://tec.openplanner.team/stops/X876acb", "https://tec.openplanner.team/stops/X877adb"], ["https://tec.openplanner.team/stops/LVtespo2", "https://tec.openplanner.team/stops/LVthest4"], ["https://tec.openplanner.team/stops/N215aba", "https://tec.openplanner.team/stops/N215acc"], ["https://tec.openplanner.team/stops/N357aba", "https://tec.openplanner.team/stops/N357aeb"], ["https://tec.openplanner.team/stops/H4ty340b", "https://tec.openplanner.team/stops/H4ty384a"], ["https://tec.openplanner.team/stops/Bblaall1", "https://tec.openplanner.team/stops/Bblagar9"], ["https://tec.openplanner.team/stops/Bbchndb2", "https://tec.openplanner.team/stops/Bitrcha2"], ["https://tec.openplanner.team/stops/Crebrux2", "https://tec.openplanner.team/stops/Crerevi2"], ["https://tec.openplanner.team/stops/X739afb", "https://tec.openplanner.team/stops/X739agb"], ["https://tec.openplanner.team/stops/H1ha196a", "https://tec.openplanner.team/stops/H1ha196b"], ["https://tec.openplanner.team/stops/X624ada", "https://tec.openplanner.team/stops/X624aib"], ["https://tec.openplanner.team/stops/Lsecroi2", "https://tec.openplanner.team/stops/Lseespe1"], ["https://tec.openplanner.team/stops/N355aea", "https://tec.openplanner.team/stops/N383acb"], ["https://tec.openplanner.team/stops/N111ada", "https://tec.openplanner.team/stops/N111afa"], ["https://tec.openplanner.team/stops/Cbctile", "https://tec.openplanner.team/stops/H1bi101a"], ["https://tec.openplanner.team/stops/LWOcomm1", "https://tec.openplanner.team/stops/LWOunio1"], ["https://tec.openplanner.team/stops/Bchamco2", "https://tec.openplanner.team/stops/Bwlhppg4"], ["https://tec.openplanner.team/stops/H1ml111a", "https://tec.openplanner.team/stops/H1ml112b"], ["https://tec.openplanner.team/stops/X790akc", "https://tec.openplanner.team/stops/X790alb"], ["https://tec.openplanner.team/stops/Brsgsan1", "https://tec.openplanner.team/stops/Brsgtou2"], ["https://tec.openplanner.team/stops/Cfodepo1", "https://tec.openplanner.team/stops/Clrmarl4"], ["https://tec.openplanner.team/stops/H2ca104b", "https://tec.openplanner.team/stops/H2ca108b"], ["https://tec.openplanner.team/stops/N232asa", "https://tec.openplanner.team/stops/N232bta"], ["https://tec.openplanner.team/stops/Bhoegbr1", "https://tec.openplanner.team/stops/Brsgpbo2"], ["https://tec.openplanner.team/stops/Lmibove3", "https://tec.openplanner.team/stops/Lmigare1"], ["https://tec.openplanner.team/stops/Bsmgsuz1", "https://tec.openplanner.team/stops/Bsmgsuz2"], ["https://tec.openplanner.team/stops/H1ci104b", "https://tec.openplanner.team/stops/H1mv243a"], ["https://tec.openplanner.team/stops/Ljeegli6", "https://tec.openplanner.team/stops/Lsemara1"], ["https://tec.openplanner.team/stops/Crofrio1", "https://tec.openplanner.team/stops/Croplom7"], ["https://tec.openplanner.team/stops/Bgemga11", "https://tec.openplanner.team/stops/N522aja"], ["https://tec.openplanner.team/stops/H1ca107b", "https://tec.openplanner.team/stops/H1ca186b"], ["https://tec.openplanner.team/stops/Cgoetun1", "https://tec.openplanner.team/stops/Cgopier2"], ["https://tec.openplanner.team/stops/H1hl122b", "https://tec.openplanner.team/stops/H1hl124a"], ["https://tec.openplanner.team/stops/Bllnpsc1", "https://tec.openplanner.team/stops/Bllnrge2"], ["https://tec.openplanner.team/stops/H2ha138a", "https://tec.openplanner.team/stops/H2ha138b"], ["https://tec.openplanner.team/stops/X604afa", "https://tec.openplanner.team/stops/X604amb"], ["https://tec.openplanner.team/stops/LFAscie2", "https://tec.openplanner.team/stops/LFUfleu1"], ["https://tec.openplanner.team/stops/LBWeg--3", "https://tec.openplanner.team/stops/LBWeg--4"], ["https://tec.openplanner.team/stops/H4ty310b", "https://tec.openplanner.team/stops/H4ty351b"], ["https://tec.openplanner.team/stops/Lchmarc2", "https://tec.openplanner.team/stops/LHAheml1"], ["https://tec.openplanner.team/stops/X908abb", "https://tec.openplanner.team/stops/X954aba"], ["https://tec.openplanner.team/stops/Cjupllo1", "https://tec.openplanner.team/stops/Cjupn2"], ["https://tec.openplanner.team/stops/Clfmonu2", "https://tec.openplanner.team/stops/Ctisar1"], ["https://tec.openplanner.team/stops/X923ajb", "https://tec.openplanner.team/stops/X923ala"], ["https://tec.openplanner.team/stops/H2fa105a", "https://tec.openplanner.team/stops/H2fa105b"], ["https://tec.openplanner.team/stops/X601dia", "https://tec.openplanner.team/stops/X662aia"], ["https://tec.openplanner.team/stops/LHSfexh2", "https://tec.openplanner.team/stops/LHStrez1"], ["https://tec.openplanner.team/stops/H1al105b", "https://tec.openplanner.team/stops/H1al107b"], ["https://tec.openplanner.team/stops/Cmlstgi1", "https://tec.openplanner.team/stops/Cmlstgi2"], ["https://tec.openplanner.team/stops/H1ma234a", "https://tec.openplanner.team/stops/H1ms310b"], ["https://tec.openplanner.team/stops/Bgntalt4", "https://tec.openplanner.team/stops/Bsgeqpb2"], ["https://tec.openplanner.team/stops/Ccoh1212", "https://tec.openplanner.team/stops/Ccotemp1"], ["https://tec.openplanner.team/stops/LJA65h-2", "https://tec.openplanner.team/stops/LSW26--1"], ["https://tec.openplanner.team/stops/Canh1942", "https://tec.openplanner.team/stops/Canlalu2"], ["https://tec.openplanner.team/stops/LSTamer2", "https://tec.openplanner.team/stops/LSTchef2"], ["https://tec.openplanner.team/stops/Cmyfoym2", "https://tec.openplanner.team/stops/Cmyplac1"], ["https://tec.openplanner.team/stops/H2sv213b", "https://tec.openplanner.team/stops/H2tr246a"], ["https://tec.openplanner.team/stops/LmHbien1", "https://tec.openplanner.team/stops/LmHumge1"], ["https://tec.openplanner.team/stops/X685aga", "https://tec.openplanner.team/stops/X685agb"], ["https://tec.openplanner.team/stops/H1ms303a", "https://tec.openplanner.team/stops/H1ms400d"], ["https://tec.openplanner.team/stops/Ctilobb1", "https://tec.openplanner.team/stops/Ctisar2"], ["https://tec.openplanner.team/stops/LAyegli1", "https://tec.openplanner.team/stops/LSHmais1"], ["https://tec.openplanner.team/stops/H4ob108a", "https://tec.openplanner.team/stops/H4ob109a"], ["https://tec.openplanner.team/stops/Crodebr2", "https://tec.openplanner.team/stops/Crodrai2"], ["https://tec.openplanner.team/stops/Brsgpbo2", "https://tec.openplanner.team/stops/Bwbfbon2"], ["https://tec.openplanner.team/stops/X761aaa", "https://tec.openplanner.team/stops/X762aga"], ["https://tec.openplanner.team/stops/Cci22ao2", "https://tec.openplanner.team/stops/Ccimont1"], ["https://tec.openplanner.team/stops/X780afa", "https://tec.openplanner.team/stops/X780agb"], ["https://tec.openplanner.team/stops/Lgrorch1", "https://tec.openplanner.team/stops/Lgrwill2"], ["https://tec.openplanner.team/stops/H2ma205a", "https://tec.openplanner.team/stops/H2ma205b"], ["https://tec.openplanner.team/stops/LGMstin2", "https://tec.openplanner.team/stops/LGMvoue2"], ["https://tec.openplanner.team/stops/LBrbern2", "https://tec.openplanner.team/stops/LBrmeiz1"], ["https://tec.openplanner.team/stops/N229afb", "https://tec.openplanner.team/stops/N270aec"], ["https://tec.openplanner.team/stops/LFPstro1", "https://tec.openplanner.team/stops/LRmhage5"], ["https://tec.openplanner.team/stops/Lchsaro1", "https://tec.openplanner.team/stops/Lchsaro2"], ["https://tec.openplanner.team/stops/LCaresi2", "https://tec.openplanner.team/stops/LVefont2"], ["https://tec.openplanner.team/stops/Lghpero1", "https://tec.openplanner.team/stops/Lghsimo4"], ["https://tec.openplanner.team/stops/H1gh154b", "https://tec.openplanner.team/stops/H1gh159a"], ["https://tec.openplanner.team/stops/LENaout1", "https://tec.openplanner.team/stops/LENparc1"], ["https://tec.openplanner.team/stops/LkEsouf2", "https://tec.openplanner.team/stops/LkEwolf1"], ["https://tec.openplanner.team/stops/LHUdeni1", "https://tec.openplanner.team/stops/LHUdeni4"], ["https://tec.openplanner.team/stops/X643aab", "https://tec.openplanner.team/stops/X643aba"], ["https://tec.openplanner.team/stops/X717ada", "https://tec.openplanner.team/stops/X717ahb"], ["https://tec.openplanner.team/stops/Bwspbbo1", "https://tec.openplanner.team/stops/Bwsppos1"], ["https://tec.openplanner.team/stops/LARparc1", "https://tec.openplanner.team/stops/LVIpneu2"], ["https://tec.openplanner.team/stops/Lrchype1", "https://tec.openplanner.team/stops/Lrcpaqu1"], ["https://tec.openplanner.team/stops/H4ma204a", "https://tec.openplanner.team/stops/H4ma205b"], ["https://tec.openplanner.team/stops/N315aab", "https://tec.openplanner.team/stops/N329aaa"], ["https://tec.openplanner.team/stops/H5at129a", "https://tec.openplanner.team/stops/H5at129b"], ["https://tec.openplanner.team/stops/N512ava", "https://tec.openplanner.team/stops/N512avb"], ["https://tec.openplanner.team/stops/Bmrlcch1", "https://tec.openplanner.team/stops/Bmrllgr2"], ["https://tec.openplanner.team/stops/H1ob331b", "https://tec.openplanner.team/stops/H1ob334b"], ["https://tec.openplanner.team/stops/Cfocobe1", "https://tec.openplanner.team/stops/Cfosurs1"], ["https://tec.openplanner.team/stops/Cjuchli2", "https://tec.openplanner.team/stops/Cjuhopi2"], ["https://tec.openplanner.team/stops/Bblamp5", "https://tec.openplanner.team/stops/Bblamsp1"], ["https://tec.openplanner.team/stops/LOMcabi1", "https://tec.openplanner.team/stops/LOMtomb1"], ["https://tec.openplanner.team/stops/Lalchar2", "https://tec.openplanner.team/stops/Lloretr1"], ["https://tec.openplanner.team/stops/LMEwerg1", "https://tec.openplanner.team/stops/LSOvoie2"], ["https://tec.openplanner.team/stops/LhP25--1", "https://tec.openplanner.team/stops/LmRkreu3"], ["https://tec.openplanner.team/stops/X901aia", "https://tec.openplanner.team/stops/X901aib"], ["https://tec.openplanner.team/stops/Blhumga1", "https://tec.openplanner.team/stops/Blhumga2"], ["https://tec.openplanner.team/stops/Bbcoeca1", "https://tec.openplanner.team/stops/Bbcogar1"], ["https://tec.openplanner.team/stops/H4mo161a", "https://tec.openplanner.team/stops/H4mo186a"], ["https://tec.openplanner.team/stops/X901ada", "https://tec.openplanner.team/stops/X901boa"], ["https://tec.openplanner.team/stops/X618ahb", "https://tec.openplanner.team/stops/X618aia"], ["https://tec.openplanner.team/stops/H4ga171a", "https://tec.openplanner.team/stops/H4ga171b"], ["https://tec.openplanner.team/stops/Cgzchen2", "https://tec.openplanner.team/stops/Cgzmira3"], ["https://tec.openplanner.team/stops/LHUchh-2", "https://tec.openplanner.team/stops/NL80aia"], ["https://tec.openplanner.team/stops/H1ht124a", "https://tec.openplanner.team/stops/H1ht129a"], ["https://tec.openplanner.team/stops/Cchba12", "https://tec.openplanner.team/stops/Cdapige2"], ["https://tec.openplanner.team/stops/X780aba", "https://tec.openplanner.team/stops/X780akb"], ["https://tec.openplanner.team/stops/Lglmoul1", "https://tec.openplanner.team/stops/Lglmoul2"], ["https://tec.openplanner.team/stops/H1ju120d", "https://tec.openplanner.team/stops/H1mj126b"], ["https://tec.openplanner.team/stops/Clsghoy1", "https://tec.openplanner.team/stops/H1ls108a"], ["https://tec.openplanner.team/stops/X742adb", "https://tec.openplanner.team/stops/X742afb"], ["https://tec.openplanner.team/stops/LBVzand2", "https://tec.openplanner.team/stops/LBVzand4"], ["https://tec.openplanner.team/stops/LHegame1", "https://tec.openplanner.team/stops/LHegame3"], ["https://tec.openplanner.team/stops/Bsamc7d2", "https://tec.openplanner.team/stops/Bsamegl2"], ["https://tec.openplanner.team/stops/X754ajb", "https://tec.openplanner.team/stops/X754aza"], ["https://tec.openplanner.team/stops/Btstbes1", "https://tec.openplanner.team/stops/Btstcar2"], ["https://tec.openplanner.team/stops/N501hnb", "https://tec.openplanner.team/stops/N501jub"], ["https://tec.openplanner.team/stops/Chppack2", "https://tec.openplanner.team/stops/Crachap2"], ["https://tec.openplanner.team/stops/H5rx114a", "https://tec.openplanner.team/stops/H5rx136a"], ["https://tec.openplanner.team/stops/H1ba112a", "https://tec.openplanner.team/stops/H1ba112b"], ["https://tec.openplanner.team/stops/LBSchpl1", "https://tec.openplanner.team/stops/LBSnouw2"], ["https://tec.openplanner.team/stops/Bcrnegl1", "https://tec.openplanner.team/stops/Bcrnegl2"], ["https://tec.openplanner.team/stops/Lvegend1", "https://tec.openplanner.team/stops/Lvegend2"], ["https://tec.openplanner.team/stops/Blnzcar1", "https://tec.openplanner.team/stops/N541acb"], ["https://tec.openplanner.team/stops/Lvemull2", "https://tec.openplanner.team/stops/Lvepala9"], ["https://tec.openplanner.team/stops/Bucceng1", "https://tec.openplanner.team/stops/Buccmer1"], ["https://tec.openplanner.team/stops/Bndb4ch1", "https://tec.openplanner.team/stops/Bndb4ch2"], ["https://tec.openplanner.team/stops/Brebrog1", "https://tec.openplanner.team/stops/Brebrog2"], ["https://tec.openplanner.team/stops/X719aca", "https://tec.openplanner.team/stops/X720aaa"], ["https://tec.openplanner.team/stops/LREgar-2", "https://tec.openplanner.team/stops/LREgare2"], ["https://tec.openplanner.team/stops/N214adb", "https://tec.openplanner.team/stops/N226aaa"], ["https://tec.openplanner.team/stops/X644adb", "https://tec.openplanner.team/stops/X645abb"], ["https://tec.openplanner.team/stops/N501ejd", "https://tec.openplanner.team/stops/N501kpa"], ["https://tec.openplanner.team/stops/N506acb", "https://tec.openplanner.team/stops/N506blb"], ["https://tec.openplanner.team/stops/N122agb", "https://tec.openplanner.team/stops/N304abb"], ["https://tec.openplanner.team/stops/H2ch106a", "https://tec.openplanner.team/stops/H2go113a"], ["https://tec.openplanner.team/stops/Llgmare5", "https://tec.openplanner.team/stops/Llgmare6"], ["https://tec.openplanner.team/stops/NC01afa", "https://tec.openplanner.team/stops/NC01afb"], ["https://tec.openplanner.team/stops/X359aaa", "https://tec.openplanner.team/stops/X359aba"], ["https://tec.openplanner.team/stops/Bgzdpos2", "https://tec.openplanner.team/stops/Bgzdpos3"], ["https://tec.openplanner.team/stops/Cgrchas2", "https://tec.openplanner.team/stops/Cgregli1"], ["https://tec.openplanner.team/stops/X765ada", "https://tec.openplanner.team/stops/X765afb"], ["https://tec.openplanner.team/stops/H4ba101a", "https://tec.openplanner.team/stops/H4ba103a"], ["https://tec.openplanner.team/stops/X770agb", "https://tec.openplanner.team/stops/X771ahb"], ["https://tec.openplanner.team/stops/LVBchau1", "https://tec.openplanner.team/stops/LVBsevr2"], ["https://tec.openplanner.team/stops/LBLghuy3", "https://tec.openplanner.team/stops/LBLplac1"], ["https://tec.openplanner.team/stops/H4rs117a", "https://tec.openplanner.team/stops/H5rx112b"], ["https://tec.openplanner.team/stops/Ltihorl1", "https://tec.openplanner.team/stops/Ltithie1"], ["https://tec.openplanner.team/stops/LMIgare2", "https://tec.openplanner.team/stops/LMIpast1"], ["https://tec.openplanner.team/stops/X610aba", "https://tec.openplanner.team/stops/X610aca"], ["https://tec.openplanner.team/stops/LeYdorf1", "https://tec.openplanner.team/stops/LeYmosc2"], ["https://tec.openplanner.team/stops/X802ada", "https://tec.openplanner.team/stops/X802aeb"], ["https://tec.openplanner.team/stops/LNIbas-1", "https://tec.openplanner.team/stops/LNIhaut1"], ["https://tec.openplanner.team/stops/X615bea", "https://tec.openplanner.team/stops/X695aka"], ["https://tec.openplanner.team/stops/N501gpd", "https://tec.openplanner.team/stops/N501zaa"], ["https://tec.openplanner.team/stops/Bsgeegl4", "https://tec.openplanner.team/stops/Bsgeqpb2"], ["https://tec.openplanner.team/stops/N155afc", "https://tec.openplanner.team/stops/N160acb"], ["https://tec.openplanner.team/stops/N522ahb", "https://tec.openplanner.team/stops/N522aib"], ["https://tec.openplanner.team/stops/LFrfrai2", "https://tec.openplanner.team/stops/LTRryta1"], ["https://tec.openplanner.team/stops/LbTschw2", "https://tec.openplanner.team/stops/LbTweyn2"], ["https://tec.openplanner.team/stops/X769aib", "https://tec.openplanner.team/stops/X769ajb"], ["https://tec.openplanner.team/stops/LCsgend1", "https://tec.openplanner.team/stops/LCsgend2"], ["https://tec.openplanner.team/stops/Loumatt1", "https://tec.openplanner.team/stops/Lourose3"], ["https://tec.openplanner.team/stops/NL74ahb", "https://tec.openplanner.team/stops/NL74ahd"], ["https://tec.openplanner.team/stops/Ctufleu3", "https://tec.openplanner.team/stops/Ctupont2"], ["https://tec.openplanner.team/stops/Landeja1", "https://tec.openplanner.team/stops/Lanrois2"], ["https://tec.openplanner.team/stops/N501aab", "https://tec.openplanner.team/stops/N501aay"], ["https://tec.openplanner.team/stops/Llggcha4", "https://tec.openplanner.team/stops/Lsntvbi2"], ["https://tec.openplanner.team/stops/Bblatet1", "https://tec.openplanner.team/stops/Bbsibou1"], ["https://tec.openplanner.team/stops/N360aaa", "https://tec.openplanner.team/stops/N360aab"], ["https://tec.openplanner.team/stops/LhP25--1", "https://tec.openplanner.team/stops/LhP25--2"], ["https://tec.openplanner.team/stops/X636ava", "https://tec.openplanner.team/stops/X636awa"], ["https://tec.openplanner.team/stops/Csedoua5", "https://tec.openplanner.team/stops/Csepier1"], ["https://tec.openplanner.team/stops/H1ge115b", "https://tec.openplanner.team/stops/H1ge116a"], ["https://tec.openplanner.team/stops/X901aha", "https://tec.openplanner.team/stops/X901aoa"], ["https://tec.openplanner.team/stops/H4ne141b", "https://tec.openplanner.team/stops/H4ne144b"], ["https://tec.openplanner.team/stops/Ccupdes3", "https://tec.openplanner.team/stops/Ccupdes4"], ["https://tec.openplanner.team/stops/X601dbb", "https://tec.openplanner.team/stops/X626aab"], ["https://tec.openplanner.team/stops/N512adb", "https://tec.openplanner.team/stops/N512apb"], ["https://tec.openplanner.team/stops/X808aaa", "https://tec.openplanner.team/stops/X808adb"], ["https://tec.openplanner.team/stops/Ccugilb2", "https://tec.openplanner.team/stops/Ccutail2"], ["https://tec.openplanner.team/stops/H1er106b", "https://tec.openplanner.team/stops/H1er107a"], ["https://tec.openplanner.team/stops/X640afb", "https://tec.openplanner.team/stops/X640aka"], ["https://tec.openplanner.team/stops/Btlbche2", "https://tec.openplanner.team/stops/Btlbtho2"], ["https://tec.openplanner.team/stops/N143abb", "https://tec.openplanner.team/stops/N143acb"], ["https://tec.openplanner.team/stops/H1hv136a", "https://tec.openplanner.team/stops/H1mk117a"], ["https://tec.openplanner.team/stops/Clrhava2", "https://tec.openplanner.team/stops/Clrwesp2"], ["https://tec.openplanner.team/stops/H2sv216b", "https://tec.openplanner.team/stops/H2sv218a"], ["https://tec.openplanner.team/stops/N241adb", "https://tec.openplanner.team/stops/N241aea"], ["https://tec.openplanner.team/stops/LOthiro2", "https://tec.openplanner.team/stops/NL57amb"], ["https://tec.openplanner.team/stops/LBTchai3", "https://tec.openplanner.team/stops/LHEelva2"], ["https://tec.openplanner.team/stops/H4wi164b", "https://tec.openplanner.team/stops/H4wi175b"], ["https://tec.openplanner.team/stops/Buccdef2", "https://tec.openplanner.team/stops/Buccvch2"], ["https://tec.openplanner.team/stops/N522akb", "https://tec.openplanner.team/stops/N522asa"], ["https://tec.openplanner.team/stops/Bneecha2", "https://tec.openplanner.team/stops/Bneecha3"], ["https://tec.openplanner.team/stops/X542aba", "https://tec.openplanner.team/stops/X542abb"], ["https://tec.openplanner.team/stops/N536aea", "https://tec.openplanner.team/stops/N536aeb"], ["https://tec.openplanner.team/stops/X926aca", "https://tec.openplanner.team/stops/X926acb"], ["https://tec.openplanner.team/stops/LrAberg2", "https://tec.openplanner.team/stops/LrAbotz2"], ["https://tec.openplanner.team/stops/H1hn204b", "https://tec.openplanner.team/stops/H1hn207a"], ["https://tec.openplanner.team/stops/Lghsimo2", "https://tec.openplanner.team/stops/Lmopota1"], ["https://tec.openplanner.team/stops/N553afb", "https://tec.openplanner.team/stops/N553akb"], ["https://tec.openplanner.team/stops/N104aeb", "https://tec.openplanner.team/stops/N104afb"], ["https://tec.openplanner.team/stops/X925akb", "https://tec.openplanner.team/stops/X947afa"], ["https://tec.openplanner.team/stops/X595aea", "https://tec.openplanner.team/stops/X595afb"], ["https://tec.openplanner.team/stops/H2ll182b", "https://tec.openplanner.team/stops/H2ll200b"], ["https://tec.openplanner.team/stops/H5el100a", "https://tec.openplanner.team/stops/H5el101a"], ["https://tec.openplanner.team/stops/Bllnjpa1", "https://tec.openplanner.team/stops/Bmsggra3"], ["https://tec.openplanner.team/stops/X831aab", "https://tec.openplanner.team/stops/X833aca"], ["https://tec.openplanner.team/stops/Cml5ave2", "https://tec.openplanner.team/stops/Cnanoir1"], ["https://tec.openplanner.team/stops/Loudemo2", "https://tec.openplanner.team/stops/Louvira1"], ["https://tec.openplanner.team/stops/LSPptch1", "https://tec.openplanner.team/stops/LSPsous1"], ["https://tec.openplanner.team/stops/LhSfrep1", "https://tec.openplanner.team/stops/LhSkirc1"], ["https://tec.openplanner.team/stops/N103agb", "https://tec.openplanner.team/stops/N131aeb"], ["https://tec.openplanner.team/stops/X681aeb", "https://tec.openplanner.team/stops/X681aga"], ["https://tec.openplanner.team/stops/H1wz170b", "https://tec.openplanner.team/stops/H1wz173a"], ["https://tec.openplanner.team/stops/Ctynamu1", "https://tec.openplanner.team/stops/Ctynamu2"], ["https://tec.openplanner.team/stops/LFothie1", "https://tec.openplanner.team/stops/LJAgoff2"], ["https://tec.openplanner.team/stops/LTPec--1", "https://tec.openplanner.team/stops/LTPgare*"], ["https://tec.openplanner.team/stops/Cmehame1", "https://tec.openplanner.team/stops/Cmewaya2"], ["https://tec.openplanner.team/stops/N254abb", "https://tec.openplanner.team/stops/N254aha"], ["https://tec.openplanner.team/stops/Bsaubra1", "https://tec.openplanner.team/stops/Bsaumlk1"], ["https://tec.openplanner.team/stops/N117anb", "https://tec.openplanner.team/stops/N117bbb"], ["https://tec.openplanner.team/stops/H2pe154b", "https://tec.openplanner.team/stops/H2pe160a"], ["https://tec.openplanner.team/stops/Lvegazo1", "https://tec.openplanner.team/stops/Lvegera2"], ["https://tec.openplanner.team/stops/LFychpl2", "https://tec.openplanner.team/stops/LsHlenz2"], ["https://tec.openplanner.team/stops/X720aba", "https://tec.openplanner.team/stops/X720abb"], ["https://tec.openplanner.team/stops/LAUbirv2", "https://tec.openplanner.team/stops/LHMpatl2"], ["https://tec.openplanner.team/stops/N235abb", "https://tec.openplanner.team/stops/N235aca"], ["https://tec.openplanner.team/stops/LAyegli1", "https://tec.openplanner.team/stops/LAyegli2"], ["https://tec.openplanner.team/stops/X824afa", "https://tec.openplanner.team/stops/X824ahb"], ["https://tec.openplanner.team/stops/Barcbav1", "https://tec.openplanner.team/stops/Bgzdcwa1"], ["https://tec.openplanner.team/stops/N120ajb", "https://tec.openplanner.team/stops/N167aea"], ["https://tec.openplanner.team/stops/X756aec", "https://tec.openplanner.team/stops/X756agb"], ["https://tec.openplanner.team/stops/N134aja", "https://tec.openplanner.team/stops/N152abd"], ["https://tec.openplanner.team/stops/Crerevi2", "https://tec.openplanner.team/stops/Crestan2"], ["https://tec.openplanner.team/stops/Cfrgivr1", "https://tec.openplanner.team/stops/Cfrmon4"], ["https://tec.openplanner.team/stops/Ladjuif2", "https://tec.openplanner.team/stops/Ladxhen2"], ["https://tec.openplanner.team/stops/LCLstat1", "https://tec.openplanner.team/stops/NL78afb"], ["https://tec.openplanner.team/stops/Bsgimor1", "https://tec.openplanner.team/stops/Buccdch2"], ["https://tec.openplanner.team/stops/X740afa", "https://tec.openplanner.team/stops/X759abb"], ["https://tec.openplanner.team/stops/LDoeg--1", "https://tec.openplanner.team/stops/LDomoul1"], ["https://tec.openplanner.team/stops/H4ka188b", "https://tec.openplanner.team/stops/H4ka394b"], ["https://tec.openplanner.team/stops/X921akb", "https://tec.openplanner.team/stops/X979aab"], ["https://tec.openplanner.team/stops/H4wi166a", "https://tec.openplanner.team/stops/H4wi170a"], ["https://tec.openplanner.team/stops/X750aha", "https://tec.openplanner.team/stops/X750alb"], ["https://tec.openplanner.team/stops/N117arb", "https://tec.openplanner.team/stops/N117asb"], ["https://tec.openplanner.team/stops/N310aaa", "https://tec.openplanner.team/stops/N310aab"], ["https://tec.openplanner.team/stops/LRcsilo1", "https://tec.openplanner.team/stops/LRcsilo2"], ["https://tec.openplanner.team/stops/Btiegma1", "https://tec.openplanner.team/stops/LMastat4"], ["https://tec.openplanner.team/stops/N242ada", "https://tec.openplanner.team/stops/N251aab"], ["https://tec.openplanner.team/stops/LVleg--5", "https://tec.openplanner.team/stops/LVlroua2"], ["https://tec.openplanner.team/stops/H2tr255a", "https://tec.openplanner.team/stops/H2tr255b"], ["https://tec.openplanner.team/stops/LPohoeg2", "https://tec.openplanner.team/stops/LPoneuf2"], ["https://tec.openplanner.team/stops/LAufech1", "https://tec.openplanner.team/stops/LAUvdab1"], ["https://tec.openplanner.team/stops/X736aea", "https://tec.openplanner.team/stops/X736agb"], ["https://tec.openplanner.team/stops/H4ka188a", "https://tec.openplanner.team/stops/H4ka190a"], ["https://tec.openplanner.team/stops/LkAmess1", "https://tec.openplanner.team/stops/LkAmess2"], ["https://tec.openplanner.team/stops/N244abb", "https://tec.openplanner.team/stops/N244abc"], ["https://tec.openplanner.team/stops/Ccaegli2", "https://tec.openplanner.team/stops/Ccaegli3"], ["https://tec.openplanner.team/stops/LREhaut2", "https://tec.openplanner.team/stops/LRErive2"], ["https://tec.openplanner.team/stops/LWEhosp1", "https://tec.openplanner.team/stops/LWEhosp3"], ["https://tec.openplanner.team/stops/X941adb", "https://tec.openplanner.team/stops/X941aeb"], ["https://tec.openplanner.team/stops/LBgcroi4", "https://tec.openplanner.team/stops/LBglign2"], ["https://tec.openplanner.team/stops/N139aaa", "https://tec.openplanner.team/stops/N139aab"], ["https://tec.openplanner.team/stops/X763aca", "https://tec.openplanner.team/stops/X763aea"], ["https://tec.openplanner.team/stops/LBiberg1", "https://tec.openplanner.team/stops/LBiberg2"], ["https://tec.openplanner.team/stops/Bblaccm1", "https://tec.openplanner.team/stops/Bblacco2"], ["https://tec.openplanner.team/stops/Cstvape1", "https://tec.openplanner.team/stops/Cstvape2"], ["https://tec.openplanner.team/stops/H4ef109a", "https://tec.openplanner.team/stops/H4ef111b"], ["https://tec.openplanner.team/stops/LLnlimb1", "https://tec.openplanner.team/stops/LWAbett2"], ["https://tec.openplanner.team/stops/X804aja", "https://tec.openplanner.team/stops/X804ajb"], ["https://tec.openplanner.team/stops/LmImirf1", "https://tec.openplanner.team/stops/LmRkape1"], ["https://tec.openplanner.team/stops/X657ajb", "https://tec.openplanner.team/stops/X657anb"], ["https://tec.openplanner.team/stops/N209amb", "https://tec.openplanner.team/stops/N210aab"], ["https://tec.openplanner.team/stops/Cobbusc1", "https://tec.openplanner.team/stops/Cobbusc2"], ["https://tec.openplanner.team/stops/H2hg271a", "https://tec.openplanner.team/stops/H2hg272a"], ["https://tec.openplanner.team/stops/X869aaa", "https://tec.openplanner.team/stops/X869aab"], ["https://tec.openplanner.team/stops/X725aab", "https://tec.openplanner.team/stops/X754aza"], ["https://tec.openplanner.team/stops/X512abb", "https://tec.openplanner.team/stops/X512ajb"], ["https://tec.openplanner.team/stops/X611aca", "https://tec.openplanner.team/stops/X825aaa"], ["https://tec.openplanner.team/stops/Llggerm1", "https://tec.openplanner.team/stops/Lvtpepi1"], ["https://tec.openplanner.team/stops/N120ana", "https://tec.openplanner.team/stops/N120anb"], ["https://tec.openplanner.team/stops/NL67aaa", "https://tec.openplanner.team/stops/NL67aab"], ["https://tec.openplanner.team/stops/N308acb", "https://tec.openplanner.team/stops/N308beb"], ["https://tec.openplanner.team/stops/N584aea", "https://tec.openplanner.team/stops/N584aha"], ["https://tec.openplanner.team/stops/Ljejoli1", "https://tec.openplanner.team/stops/Ljeorda1"], ["https://tec.openplanner.team/stops/Bwanorp1", "https://tec.openplanner.team/stops/Bwanorp2"], ["https://tec.openplanner.team/stops/Cchfran1", "https://tec.openplanner.team/stops/Cchpala2"], ["https://tec.openplanner.team/stops/X802aoa", "https://tec.openplanner.team/stops/X802aya"], ["https://tec.openplanner.team/stops/LPLc49-2", "https://tec.openplanner.team/stops/LPLc65-1"], ["https://tec.openplanner.team/stops/Bmoucnd2", "https://tec.openplanner.team/stops/Bmoufil2"], ["https://tec.openplanner.team/stops/N340aha", "https://tec.openplanner.team/stops/N340ahb"], ["https://tec.openplanner.team/stops/X595abb", "https://tec.openplanner.team/stops/X595aca"], ["https://tec.openplanner.team/stops/H4ty338b", "https://tec.openplanner.team/stops/H4ty344b"], ["https://tec.openplanner.team/stops/Csepost1", "https://tec.openplanner.team/stops/Cvtndam3"], ["https://tec.openplanner.team/stops/LsVprum4", "https://tec.openplanner.team/stops/LwLprum2"], ["https://tec.openplanner.team/stops/N542aeb", "https://tec.openplanner.team/stops/N542ajb"], ["https://tec.openplanner.team/stops/Bblafra1", "https://tec.openplanner.team/stops/Bblafrn2"], ["https://tec.openplanner.team/stops/X908aha", "https://tec.openplanner.team/stops/X908ahb"], ["https://tec.openplanner.team/stops/X595aab", "https://tec.openplanner.team/stops/X595aia"], ["https://tec.openplanner.team/stops/H2sb239a", "https://tec.openplanner.team/stops/H2sb239d"], ["https://tec.openplanner.team/stops/Ccumasu2", "https://tec.openplanner.team/stops/Cpicite2"], ["https://tec.openplanner.team/stops/LHEcruc1", "https://tec.openplanner.team/stops/LHEcruc4"], ["https://tec.openplanner.team/stops/H1wa154b", "https://tec.openplanner.team/stops/H1wa159a"], ["https://tec.openplanner.team/stops/N301agb", "https://tec.openplanner.team/stops/N340abb"], ["https://tec.openplanner.team/stops/H1fr124a", "https://tec.openplanner.team/stops/H1fr152a"], ["https://tec.openplanner.team/stops/H4mv191a", "https://tec.openplanner.team/stops/H4oe149a"], ["https://tec.openplanner.team/stops/Bbldmun1", "https://tec.openplanner.team/stops/Bhaawdr2"], ["https://tec.openplanner.team/stops/N565aba", "https://tec.openplanner.team/stops/N565afb"], ["https://tec.openplanner.team/stops/H4ag104a", "https://tec.openplanner.team/stops/H4ag105b"], ["https://tec.openplanner.team/stops/H5rx113a", "https://tec.openplanner.team/stops/H5rx122a"], ["https://tec.openplanner.team/stops/Cmehels1", "https://tec.openplanner.team/stops/Cmehels2"], ["https://tec.openplanner.team/stops/LSoboul1", "https://tec.openplanner.team/stops/LSoboul2"], ["https://tec.openplanner.team/stops/Ctrecol1", "https://tec.openplanner.team/stops/Ctrleju1"], ["https://tec.openplanner.team/stops/H1mj122a", "https://tec.openplanner.team/stops/H1mj125b"], ["https://tec.openplanner.team/stops/N529ajb", "https://tec.openplanner.team/stops/N584aqa"], ["https://tec.openplanner.team/stops/X888aca", "https://tec.openplanner.team/stops/X888adb"], ["https://tec.openplanner.team/stops/LHtdros1", "https://tec.openplanner.team/stops/LHthest2"], ["https://tec.openplanner.team/stops/LAbchpl2", "https://tec.openplanner.team/stops/LTechpl2"], ["https://tec.openplanner.team/stops/N564aaa", "https://tec.openplanner.team/stops/N564aea"], ["https://tec.openplanner.team/stops/Bgliopp2", "https://tec.openplanner.team/stops/Boppcar2"], ["https://tec.openplanner.team/stops/Cjuspin1", "https://tec.openplanner.team/stops/Cjuvign1"], ["https://tec.openplanner.team/stops/N426acb", "https://tec.openplanner.team/stops/N426afb"], ["https://tec.openplanner.team/stops/LJSforg1", "https://tec.openplanner.team/stops/Lpetenn2"], ["https://tec.openplanner.team/stops/Bcseeco2", "https://tec.openplanner.team/stops/Bcsegar1"], ["https://tec.openplanner.team/stops/Csychap1", "https://tec.openplanner.team/stops/Csychap4"], ["https://tec.openplanner.team/stops/X363aba", "https://tec.openplanner.team/stops/X363abb"], ["https://tec.openplanner.team/stops/N506bpa", "https://tec.openplanner.team/stops/N537alb"], ["https://tec.openplanner.team/stops/Lmopave1", "https://tec.openplanner.team/stops/Lsnpaqu1"], ["https://tec.openplanner.team/stops/N218aab", "https://tec.openplanner.team/stops/N218afa"], ["https://tec.openplanner.team/stops/LTEkl122", "https://tec.openplanner.team/stops/LTEkl162"], ["https://tec.openplanner.team/stops/N512aqb", "https://tec.openplanner.team/stops/N512ata"], ["https://tec.openplanner.team/stops/X911aaa", "https://tec.openplanner.team/stops/X911ara"], ["https://tec.openplanner.team/stops/N212agb", "https://tec.openplanner.team/stops/N225ahb"], ["https://tec.openplanner.team/stops/Bcrbrpb1", "https://tec.openplanner.team/stops/Bmsggra3"], ["https://tec.openplanner.team/stops/H1ev149a", "https://tec.openplanner.team/stops/H1ev149b"], ["https://tec.openplanner.team/stops/Brsgtou1", "https://tec.openplanner.team/stops/Buccptj2"], ["https://tec.openplanner.team/stops/N501eeb", "https://tec.openplanner.team/stops/N501ehb"], ["https://tec.openplanner.team/stops/LHhelia2", "https://tec.openplanner.team/stops/NL30ajb"], ["https://tec.openplanner.team/stops/Blig4br2", "https://tec.openplanner.team/stops/N584bpc"], ["https://tec.openplanner.team/stops/LHMbelv1", "https://tec.openplanner.team/stops/LMNswar2"], ["https://tec.openplanner.team/stops/LFPgeme2", "https://tec.openplanner.team/stops/LFPzwaa2"], ["https://tec.openplanner.team/stops/LBPboir1", "https://tec.openplanner.team/stops/LRGile-2"], ["https://tec.openplanner.team/stops/Bboueta1", "https://tec.openplanner.team/stops/Bbougar1"], ["https://tec.openplanner.team/stops/Bgrmver1", "https://tec.openplanner.team/stops/N522akb"], ["https://tec.openplanner.team/stops/N232aca", "https://tec.openplanner.team/stops/N232agb"], ["https://tec.openplanner.team/stops/Lchpniv1", "https://tec.openplanner.team/stops/Lchpniv2"], ["https://tec.openplanner.team/stops/Cmqchap1", "https://tec.openplanner.team/stops/Cmqegl1"], ["https://tec.openplanner.team/stops/Ladmoul2", "https://tec.openplanner.team/stops/Ladotto1"], ["https://tec.openplanner.team/stops/X760aab", "https://tec.openplanner.team/stops/X786ada"], ["https://tec.openplanner.team/stops/Blhumpo2", "https://tec.openplanner.team/stops/Blhupa11"], ["https://tec.openplanner.team/stops/Lmidarc1", "https://tec.openplanner.team/stops/Lmidarc2"], ["https://tec.openplanner.team/stops/LCPcomm2", "https://tec.openplanner.team/stops/LCPlebl*"], ["https://tec.openplanner.team/stops/N215acb", "https://tec.openplanner.team/stops/N232bwb"], ["https://tec.openplanner.team/stops/X615ata", "https://tec.openplanner.team/stops/X687aka"], ["https://tec.openplanner.team/stops/Lmnmart1", "https://tec.openplanner.team/stops/Lmnmart2"], ["https://tec.openplanner.team/stops/LHUlebe4", "https://tec.openplanner.team/stops/LHUlebe5"], ["https://tec.openplanner.team/stops/H1pw122a", "https://tec.openplanner.team/stops/H1wa154a"], ["https://tec.openplanner.team/stops/Ljetomb2", "https://tec.openplanner.team/stops/Ljetout1"], ["https://tec.openplanner.team/stops/X850acb", "https://tec.openplanner.team/stops/X850ada"], ["https://tec.openplanner.team/stops/N141ajb", "https://tec.openplanner.team/stops/N143abb"], ["https://tec.openplanner.team/stops/LmD163-2", "https://tec.openplanner.team/stops/LwLkirc2"], ["https://tec.openplanner.team/stops/Ccopeti1", "https://tec.openplanner.team/stops/Ccostan2"], ["https://tec.openplanner.team/stops/N501arc", "https://tec.openplanner.team/stops/N501awa"], ["https://tec.openplanner.team/stops/N135ajb", "https://tec.openplanner.team/stops/N135alb"], ["https://tec.openplanner.team/stops/X917abb", "https://tec.openplanner.team/stops/X917acb"], ["https://tec.openplanner.team/stops/LRObruy1", "https://tec.openplanner.team/stops/LRObruy3"], ["https://tec.openplanner.team/stops/LSegott1", "https://tec.openplanner.team/stops/LSegott2"], ["https://tec.openplanner.team/stops/LSpfond2", "https://tec.openplanner.team/stops/LSphote2"], ["https://tec.openplanner.team/stops/Ljuprev3", "https://tec.openplanner.team/stops/Llgcouv1"], ["https://tec.openplanner.team/stops/NR38afa", "https://tec.openplanner.team/stops/NR38afb"], ["https://tec.openplanner.team/stops/X739aga", "https://tec.openplanner.team/stops/X739ala"], ["https://tec.openplanner.team/stops/N201aea", "https://tec.openplanner.team/stops/N201ava"], ["https://tec.openplanner.team/stops/Bgrhche1", "https://tec.openplanner.team/stops/N519ahb"], ["https://tec.openplanner.team/stops/N525aec", "https://tec.openplanner.team/stops/N525aib"], ["https://tec.openplanner.team/stops/LwSbrei2", "https://tec.openplanner.team/stops/LwSgeme2"], ["https://tec.openplanner.team/stops/Lhrchar3", "https://tec.openplanner.team/stops/Llgtir-1"], ["https://tec.openplanner.team/stops/NL76aab", "https://tec.openplanner.team/stops/NL76anb"], ["https://tec.openplanner.team/stops/LeUnisp1", "https://tec.openplanner.team/stops/LkTdorf1"], ["https://tec.openplanner.team/stops/Bniv4co2", "https://tec.openplanner.team/stops/Bnivrwi2"], ["https://tec.openplanner.team/stops/Bwavcui2", "https://tec.openplanner.team/stops/Bwavtas4"], ["https://tec.openplanner.team/stops/Lvealbe1", "https://tec.openplanner.team/stops/Lvefran1"], ["https://tec.openplanner.team/stops/N101akb", "https://tec.openplanner.team/stops/N101aua"], ["https://tec.openplanner.team/stops/LVLeg--1", "https://tec.openplanner.team/stops/LVLmabi2"], ["https://tec.openplanner.team/stops/H4co104a", "https://tec.openplanner.team/stops/H4co109b"], ["https://tec.openplanner.team/stops/X746aja", "https://tec.openplanner.team/stops/X746akb"], ["https://tec.openplanner.team/stops/H4be105a", "https://tec.openplanner.team/stops/H4be112a"], ["https://tec.openplanner.team/stops/LHVeg--1", "https://tec.openplanner.team/stops/LJAroue2"], ["https://tec.openplanner.team/stops/X745adb", "https://tec.openplanner.team/stops/X745aeb"], ["https://tec.openplanner.team/stops/LWargeu1", "https://tec.openplanner.team/stops/LWaruth1"], ["https://tec.openplanner.team/stops/NL78acb", "https://tec.openplanner.team/stops/NL78aka"], ["https://tec.openplanner.team/stops/Bbstasa2", "https://tec.openplanner.team/stops/Bbstcha2"], ["https://tec.openplanner.team/stops/Lemjoba1", "https://tec.openplanner.team/stops/Lemjoba2"], ["https://tec.openplanner.team/stops/Cfmnoci1", "https://tec.openplanner.team/stops/Cfmtrie1"], ["https://tec.openplanner.team/stops/Chpcarp2", "https://tec.openplanner.team/stops/Chppack1"], ["https://tec.openplanner.team/stops/NH01aaa", "https://tec.openplanner.team/stops/NH01aab"], ["https://tec.openplanner.team/stops/LeUfuss1", "https://tec.openplanner.team/stops/LeUschu1"], ["https://tec.openplanner.team/stops/LBEbelf1", "https://tec.openplanner.team/stops/LTIchev1"], ["https://tec.openplanner.team/stops/LSZarbe1", "https://tec.openplanner.team/stops/LSZheid2"], ["https://tec.openplanner.team/stops/LLrgara1", "https://tec.openplanner.team/stops/LLrscie1"], ["https://tec.openplanner.team/stops/Lgdblom1", "https://tec.openplanner.team/stops/LSNmoul2"], ["https://tec.openplanner.team/stops/NH21aea", "https://tec.openplanner.team/stops/NH21afb"], ["https://tec.openplanner.team/stops/Clrcite2", "https://tec.openplanner.team/stops/CMleer2"], ["https://tec.openplanner.team/stops/Lbopote1", "https://tec.openplanner.team/stops/Lbotige2"], ["https://tec.openplanner.team/stops/H2lh132b", "https://tec.openplanner.team/stops/H2mo129b"], ["https://tec.openplanner.team/stops/Cml5ave1", "https://tec.openplanner.team/stops/Cml5ave2"], ["https://tec.openplanner.team/stops/LFsec--1", "https://tec.openplanner.team/stops/LFsherm1"], ["https://tec.openplanner.team/stops/Brsregl2", "https://tec.openplanner.team/stops/Brsregl3"], ["https://tec.openplanner.team/stops/X877aca", "https://tec.openplanner.team/stops/X877aha"], ["https://tec.openplanner.team/stops/Bsamlon1", "https://tec.openplanner.team/stops/Bwagmco1"], ["https://tec.openplanner.team/stops/LAYchal1", "https://tec.openplanner.team/stops/LAYwerb1"], ["https://tec.openplanner.team/stops/X695aba", "https://tec.openplanner.team/stops/X695aja"], ["https://tec.openplanner.team/stops/H2hg158b", "https://tec.openplanner.team/stops/H2hg265a"], ["https://tec.openplanner.team/stops/LLnec--1", "https://tec.openplanner.team/stops/LLnlimb2"], ["https://tec.openplanner.team/stops/X880ada", "https://tec.openplanner.team/stops/X880aea"], ["https://tec.openplanner.team/stops/X661aga", "https://tec.openplanner.team/stops/X661ayb"], ["https://tec.openplanner.team/stops/Ccusole2", "https://tec.openplanner.team/stops/Cgysole1"], ["https://tec.openplanner.team/stops/Bmanfbg2", "https://tec.openplanner.team/stops/H2mg139c"], ["https://tec.openplanner.team/stops/N321aca", "https://tec.openplanner.team/stops/N321acb"], ["https://tec.openplanner.team/stops/Bcrbmsg1", "https://tec.openplanner.team/stops/Bcrbtho2"], ["https://tec.openplanner.team/stops/LCPaube1", "https://tec.openplanner.team/stops/LCPhall1"], ["https://tec.openplanner.team/stops/Llgptlo1", "https://tec.openplanner.team/stops/Llgptlo2"], ["https://tec.openplanner.team/stops/H4mo150b", "https://tec.openplanner.team/stops/H4mo178a"], ["https://tec.openplanner.team/stops/LnE79--1", "https://tec.openplanner.team/stops/LnErech1"], ["https://tec.openplanner.team/stops/H1ag104b", "https://tec.openplanner.team/stops/H1an100b"], ["https://tec.openplanner.team/stops/X660ada", "https://tec.openplanner.team/stops/X660aeb"], ["https://tec.openplanner.team/stops/Bbstchv1", "https://tec.openplanner.team/stops/Btanpla3"], ["https://tec.openplanner.team/stops/LOLrafh1", "https://tec.openplanner.team/stops/LOLrafh2"], ["https://tec.openplanner.team/stops/X824aka", "https://tec.openplanner.team/stops/X824akb"], ["https://tec.openplanner.team/stops/LSemc--4", "https://tec.openplanner.team/stops/LSevitu3"], ["https://tec.openplanner.team/stops/N160ahb", "https://tec.openplanner.team/stops/NC14avb"], ["https://tec.openplanner.team/stops/Bpercsp1", "https://tec.openplanner.team/stops/Btstw751"], ["https://tec.openplanner.team/stops/LLGcarr1", "https://tec.openplanner.team/stops/LLGcarr2"], ["https://tec.openplanner.team/stops/Cchjaur1", "https://tec.openplanner.team/stops/CMsacm2"], ["https://tec.openplanner.team/stops/X786ahb", "https://tec.openplanner.team/stops/X789aga"], ["https://tec.openplanner.team/stops/H1vs144a", "https://tec.openplanner.team/stops/H1vs146b"], ["https://tec.openplanner.team/stops/Cfmgara1", "https://tec.openplanner.team/stops/Cfmgara2"], ["https://tec.openplanner.team/stops/X750bfa", "https://tec.openplanner.team/stops/X750bfb"], ["https://tec.openplanner.team/stops/Llgmako1", "https://tec.openplanner.team/stops/Llgrosa1"], ["https://tec.openplanner.team/stops/X734and", "https://tec.openplanner.team/stops/X734aoa"], ["https://tec.openplanner.team/stops/H4hs136a", "https://tec.openplanner.team/stops/H4ml207a"], ["https://tec.openplanner.team/stops/H4bc104b", "https://tec.openplanner.team/stops/H5bl123a"], ["https://tec.openplanner.team/stops/X822apa", "https://tec.openplanner.team/stops/X822apb"], ["https://tec.openplanner.team/stops/Ctrterm1", "https://tec.openplanner.team/stops/Ctrterm2"], ["https://tec.openplanner.team/stops/LSBjoli2", "https://tec.openplanner.team/stops/LSBrouf1"], ["https://tec.openplanner.team/stops/N535acb", "https://tec.openplanner.team/stops/N535apb"], ["https://tec.openplanner.team/stops/Loumatt1", "https://tec.openplanner.team/stops/Louvivi1"], ["https://tec.openplanner.team/stops/H4tm140b", "https://tec.openplanner.team/stops/H4to136a"], ["https://tec.openplanner.team/stops/Lsepair1", "https://tec.openplanner.team/stops/Lsepair4"], ["https://tec.openplanner.team/stops/Bnstlna1", "https://tec.openplanner.team/stops/H2mi125a"], ["https://tec.openplanner.team/stops/Lstchu-*", "https://tec.openplanner.team/stops/Lstchu-2"], ["https://tec.openplanner.team/stops/Bmalcar2", "https://tec.openplanner.team/stops/Borbod91"], ["https://tec.openplanner.team/stops/Bbeaech1", "https://tec.openplanner.team/stops/Bbeaech2"], ["https://tec.openplanner.team/stops/N506apb", "https://tec.openplanner.team/stops/N537ala"], ["https://tec.openplanner.team/stops/Lcacasi2", "https://tec.openplanner.team/stops/Lcavign2"], ["https://tec.openplanner.team/stops/N261ada", "https://tec.openplanner.team/stops/N261adb"], ["https://tec.openplanner.team/stops/H1fl139a", "https://tec.openplanner.team/stops/H1fl139b"], ["https://tec.openplanner.team/stops/X995aba", "https://tec.openplanner.team/stops/X995abb"], ["https://tec.openplanner.team/stops/Bnivcma1", "https://tec.openplanner.team/stops/Bnivsnu2"], ["https://tec.openplanner.team/stops/X801asa", "https://tec.openplanner.team/stops/X801awb"], ["https://tec.openplanner.team/stops/H4bl106a", "https://tec.openplanner.team/stops/H4ml209b"], ["https://tec.openplanner.team/stops/LBBabat1", "https://tec.openplanner.team/stops/LBBabat2"], ["https://tec.openplanner.team/stops/N507aja", "https://tec.openplanner.team/stops/N507ajb"], ["https://tec.openplanner.team/stops/LMNcite1", "https://tec.openplanner.team/stops/LMNcite2"], ["https://tec.openplanner.team/stops/H2sb221a", "https://tec.openplanner.team/stops/H2sb235a"], ["https://tec.openplanner.team/stops/N523aab", "https://tec.openplanner.team/stops/N523aba"], ["https://tec.openplanner.team/stops/Bnivga62", "https://tec.openplanner.team/stops/Bnivga71"], ["https://tec.openplanner.team/stops/Lflgare1", "https://tec.openplanner.team/stops/Lflgare2"], ["https://tec.openplanner.team/stops/X354aaa", "https://tec.openplanner.team/stops/X354aab"], ["https://tec.openplanner.team/stops/N308aya", "https://tec.openplanner.team/stops/N311agb"], ["https://tec.openplanner.team/stops/X597agb", "https://tec.openplanner.team/stops/X597amb"], ["https://tec.openplanner.team/stops/N505anb", "https://tec.openplanner.team/stops/N506abb"], ["https://tec.openplanner.team/stops/LAWjaur1", "https://tec.openplanner.team/stops/LAWmc--2"], ["https://tec.openplanner.team/stops/Blmlpla2", "https://tec.openplanner.team/stops/Blmlqlo2"], ["https://tec.openplanner.team/stops/Bgembsg2", "https://tec.openplanner.team/stops/N522bvh"], ["https://tec.openplanner.team/stops/H4bo121a", "https://tec.openplanner.team/stops/H4ea129a"], ["https://tec.openplanner.team/stops/LMalarg4", "https://tec.openplanner.team/stops/LMazonn4"], ["https://tec.openplanner.team/stops/N551ahb", "https://tec.openplanner.team/stops/N551arb"], ["https://tec.openplanner.team/stops/X999agb", "https://tec.openplanner.team/stops/X999ajb"], ["https://tec.openplanner.team/stops/Lfhchaf*", "https://tec.openplanner.team/stops/Lfhtrxc*"], ["https://tec.openplanner.team/stops/N537aba", "https://tec.openplanner.team/stops/N537ahb"], ["https://tec.openplanner.team/stops/H1he111b", "https://tec.openplanner.team/stops/H4be100a"], ["https://tec.openplanner.team/stops/Lalhomb1", "https://tec.openplanner.team/stops/Lalhomb2"], ["https://tec.openplanner.team/stops/N103afa", "https://tec.openplanner.team/stops/N103afb"], ["https://tec.openplanner.team/stops/N874aba", "https://tec.openplanner.team/stops/N874akb"], ["https://tec.openplanner.team/stops/LbRkirc2", "https://tec.openplanner.team/stops/LtH28a-1"], ["https://tec.openplanner.team/stops/Bcbqgar2", "https://tec.openplanner.team/stops/Btubnav2"], ["https://tec.openplanner.team/stops/LPT97--1", "https://tec.openplanner.team/stops/LPT97--2"], ["https://tec.openplanner.team/stops/Lrc594-2", "https://tec.openplanner.team/stops/Lrclohe1"], ["https://tec.openplanner.team/stops/LKmmelo1", "https://tec.openplanner.team/stops/LMObouh1"], ["https://tec.openplanner.team/stops/Cmogrbu2", "https://tec.openplanner.team/stops/Cmoscap2"], ["https://tec.openplanner.team/stops/Lghberl2", "https://tec.openplanner.team/stops/Lghvold2"], ["https://tec.openplanner.team/stops/Blincal1", "https://tec.openplanner.team/stops/Bolgrga1"], ["https://tec.openplanner.team/stops/H4rx176a", "https://tec.openplanner.team/stops/H4wa148b"], ["https://tec.openplanner.team/stops/LHUaveu2", "https://tec.openplanner.team/stops/LHUneuv1"], ["https://tec.openplanner.team/stops/Candett1", "https://tec.openplanner.team/stops/H1mg108a"], ["https://tec.openplanner.team/stops/LPLc65-1", "https://tec.openplanner.team/stops/Lsearbo2"], ["https://tec.openplanner.team/stops/X824acb", "https://tec.openplanner.team/stops/X824ajb"], ["https://tec.openplanner.team/stops/Ljuprev1", "https://tec.openplanner.team/stops/Ljuprev4"], ["https://tec.openplanner.team/stops/LLxcbr-2", "https://tec.openplanner.team/stops/LLxconj1"], ["https://tec.openplanner.team/stops/N137aea", "https://tec.openplanner.team/stops/N137aha"], ["https://tec.openplanner.team/stops/H1by108e", "https://tec.openplanner.team/stops/H1sy139b"], ["https://tec.openplanner.team/stops/N102aaa", "https://tec.openplanner.team/stops/N102aab"], ["https://tec.openplanner.team/stops/X661akb", "https://tec.openplanner.team/stops/X661amb"], ["https://tec.openplanner.team/stops/Btubcim2", "https://tec.openplanner.team/stops/Btubsal1"], ["https://tec.openplanner.team/stops/H4pl121a", "https://tec.openplanner.team/stops/H4pl137a"], ["https://tec.openplanner.team/stops/H5el104b", "https://tec.openplanner.team/stops/H5wo127a"], ["https://tec.openplanner.team/stops/X770afb", "https://tec.openplanner.team/stops/X770aga"], ["https://tec.openplanner.team/stops/N514aha", "https://tec.openplanner.team/stops/N515ara"], ["https://tec.openplanner.team/stops/Cfccabi1", "https://tec.openplanner.team/stops/Cfccol1"], ["https://tec.openplanner.team/stops/LAnfall2", "https://tec.openplanner.team/stops/LVtespo2"], ["https://tec.openplanner.team/stops/X903ada", "https://tec.openplanner.team/stops/X992aja"], ["https://tec.openplanner.team/stops/X610aaa", "https://tec.openplanner.team/stops/X610acb"], ["https://tec.openplanner.team/stops/Blmlfau1", "https://tec.openplanner.team/stops/Brixape2"], ["https://tec.openplanner.team/stops/Cnacout1", "https://tec.openplanner.team/stops/Cnarmon1"], ["https://tec.openplanner.team/stops/X644aab", "https://tec.openplanner.team/stops/X645abb"], ["https://tec.openplanner.team/stops/H1pa109a", "https://tec.openplanner.team/stops/H1pa109c"], ["https://tec.openplanner.team/stops/H1sg147a", "https://tec.openplanner.team/stops/H1sg148a"], ["https://tec.openplanner.team/stops/H4hx124b", "https://tec.openplanner.team/stops/H4wa153a"], ["https://tec.openplanner.team/stops/LHUtrin1", "https://tec.openplanner.team/stops/LTiruel1"], ["https://tec.openplanner.team/stops/Bbsibou2", "https://tec.openplanner.team/stops/Blilhay1"], ["https://tec.openplanner.team/stops/LABbert2", "https://tec.openplanner.team/stops/LABvill2"], ["https://tec.openplanner.team/stops/H3go101a", "https://tec.openplanner.team/stops/H3go104a"], ["https://tec.openplanner.team/stops/H4mo134a", "https://tec.openplanner.team/stops/H4mo175b"], ["https://tec.openplanner.team/stops/H4br108b", "https://tec.openplanner.team/stops/H4ch117a"], ["https://tec.openplanner.team/stops/LrUlasc1", "https://tec.openplanner.team/stops/LrUoudl1"], ["https://tec.openplanner.team/stops/N509aib", "https://tec.openplanner.team/stops/N509akb"], ["https://tec.openplanner.team/stops/Bbiehec2", "https://tec.openplanner.team/stops/Blontry2"], ["https://tec.openplanner.team/stops/LVEcacq1", "https://tec.openplanner.team/stops/LVEcacq2"], ["https://tec.openplanner.team/stops/LMObut-1", "https://tec.openplanner.team/stops/LMOeg--1"], ["https://tec.openplanner.team/stops/X804bzb", "https://tec.openplanner.team/stops/X805ajb"], ["https://tec.openplanner.team/stops/H2bh113b", "https://tec.openplanner.team/stops/H2lc145a"], ["https://tec.openplanner.team/stops/X784aia", "https://tec.openplanner.team/stops/X784aib"], ["https://tec.openplanner.team/stops/X713ada", "https://tec.openplanner.team/stops/X713aeb"], ["https://tec.openplanner.team/stops/LBLgobc1", "https://tec.openplanner.team/stops/LBLgobc2"], ["https://tec.openplanner.team/stops/H4bq154a", "https://tec.openplanner.team/stops/H4cp103b"], ["https://tec.openplanner.team/stops/N235aeb", "https://tec.openplanner.team/stops/N235afb"], ["https://tec.openplanner.team/stops/N229aoa", "https://tec.openplanner.team/stops/N229aob"], ["https://tec.openplanner.team/stops/X888aca", "https://tec.openplanner.team/stops/X899aga"], ["https://tec.openplanner.team/stops/N506baa", "https://tec.openplanner.team/stops/N506bac"], ["https://tec.openplanner.team/stops/Lenmare1", "https://tec.openplanner.team/stops/Lenmivi*"], ["https://tec.openplanner.team/stops/LFAec--2", "https://tec.openplanner.team/stops/LMffoot1"], ["https://tec.openplanner.team/stops/X773aaa", "https://tec.openplanner.team/stops/X773aab"], ["https://tec.openplanner.team/stops/Cgzabur1", "https://tec.openplanner.team/stops/Cgzabur2"], ["https://tec.openplanner.team/stops/Ctrecol3", "https://tec.openplanner.team/stops/Ctrplac1"], ["https://tec.openplanner.team/stops/LCdchod1", "https://tec.openplanner.team/stops/LGDgdou2"], ["https://tec.openplanner.team/stops/H1ha183a", "https://tec.openplanner.team/stops/H1vg359a"], ["https://tec.openplanner.team/stops/X608ana", "https://tec.openplanner.team/stops/X608asb"], ["https://tec.openplanner.team/stops/H1wa141a", "https://tec.openplanner.team/stops/H1wa153a"], ["https://tec.openplanner.team/stops/Llgfail2", "https://tec.openplanner.team/stops/Llgrain1"], ["https://tec.openplanner.team/stops/LBabeco4", "https://tec.openplanner.team/stops/LBamate1"], ["https://tec.openplanner.team/stops/H5bl123b", "https://tec.openplanner.team/stops/H5bl143a"], ["https://tec.openplanner.team/stops/Bblapin2", "https://tec.openplanner.team/stops/Bblapra1"], ["https://tec.openplanner.team/stops/X750asa", "https://tec.openplanner.team/stops/X780aja"], ["https://tec.openplanner.team/stops/X911acb", "https://tec.openplanner.team/stops/X911awa"], ["https://tec.openplanner.team/stops/LESoneu4", "https://tec.openplanner.team/stops/LVtchai1"], ["https://tec.openplanner.team/stops/H1pa104a", "https://tec.openplanner.team/stops/H1pa116a"], ["https://tec.openplanner.team/stops/Bgnvgar1", "https://tec.openplanner.team/stops/Brsrpar1"], ["https://tec.openplanner.team/stops/Lemhenn1", "https://tec.openplanner.team/stops/Lemhuet2"], ["https://tec.openplanner.team/stops/LSPbass2", "https://tec.openplanner.team/stops/LSPtonn2"], ["https://tec.openplanner.team/stops/Bosqgar2", "https://tec.openplanner.team/stops/Bosqpco1"], ["https://tec.openplanner.team/stops/Cmlaili2", "https://tec.openplanner.team/stops/Cmtrdec2"], ["https://tec.openplanner.team/stops/LMApape1", "https://tec.openplanner.team/stops/LMApape2"], ["https://tec.openplanner.team/stops/LBNplei1", "https://tec.openplanner.team/stops/LBNplei2"], ["https://tec.openplanner.team/stops/N136ada", "https://tec.openplanner.team/stops/N136aeb"], ["https://tec.openplanner.team/stops/Bmsgeco1", "https://tec.openplanner.team/stops/Bmsgeco2"], ["https://tec.openplanner.team/stops/N501isb", "https://tec.openplanner.team/stops/N501itb"], ["https://tec.openplanner.team/stops/X765aab", "https://tec.openplanner.team/stops/X765aga"], ["https://tec.openplanner.team/stops/N509afb", "https://tec.openplanner.team/stops/N509aqb"], ["https://tec.openplanner.team/stops/Buccobs1", "https://tec.openplanner.team/stops/Buccobs2"], ["https://tec.openplanner.team/stops/Ltiferb1", "https://tec.openplanner.team/stops/Ltipass1"], ["https://tec.openplanner.team/stops/X839adb", "https://tec.openplanner.team/stops/X839agb"], ["https://tec.openplanner.team/stops/Lticime2", "https://tec.openplanner.team/stops/Ltiegli1"], ["https://tec.openplanner.team/stops/LREgare1", "https://tec.openplanner.team/stops/LREsoug3"], ["https://tec.openplanner.team/stops/Btslcej2", "https://tec.openplanner.team/stops/Btslpic6"], ["https://tec.openplanner.team/stops/LBpecco1", "https://tec.openplanner.team/stops/LBpecco2"], ["https://tec.openplanner.team/stops/N519ama", "https://tec.openplanner.team/stops/N519amb"], ["https://tec.openplanner.team/stops/LhPhale1", "https://tec.openplanner.team/stops/LhPkirc1"], ["https://tec.openplanner.team/stops/Bgzdast1", "https://tec.openplanner.team/stops/Bgzdpos2"], ["https://tec.openplanner.team/stops/Bnetace1", "https://tec.openplanner.team/stops/Bnetcor1"], ["https://tec.openplanner.team/stops/Ccoha602", "https://tec.openplanner.team/stops/Cpcchau"], ["https://tec.openplanner.team/stops/X595afb", "https://tec.openplanner.team/stops/X595ahb"], ["https://tec.openplanner.team/stops/N501hda", "https://tec.openplanner.team/stops/N501zea"], ["https://tec.openplanner.team/stops/Cgolimi1", "https://tec.openplanner.team/stops/Cgorosa3"], ["https://tec.openplanner.team/stops/Bsdafra1", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/Blanath2", "https://tec.openplanner.team/stops/Brach122"], ["https://tec.openplanner.team/stops/Beceres1", "https://tec.openplanner.team/stops/H3br101b"], ["https://tec.openplanner.team/stops/Lghcham1", "https://tec.openplanner.team/stops/Lghreyn1"], ["https://tec.openplanner.team/stops/LSReg--1", "https://tec.openplanner.team/stops/LSReg--2"], ["https://tec.openplanner.team/stops/N504aba", "https://tec.openplanner.team/stops/N511aha"], ["https://tec.openplanner.team/stops/N501dgb", "https://tec.openplanner.team/stops/N501dib"], ["https://tec.openplanner.team/stops/X548aaa", "https://tec.openplanner.team/stops/X777aab"], ["https://tec.openplanner.team/stops/N511aaa", "https://tec.openplanner.team/stops/N511aea"], ["https://tec.openplanner.team/stops/H2ll188a", "https://tec.openplanner.team/stops/H2ll188b"], ["https://tec.openplanner.team/stops/Cfcgrat2", "https://tec.openplanner.team/stops/Cfcpcov2"], ["https://tec.openplanner.team/stops/Lligara2", "https://tec.openplanner.team/stops/LVSpn--1"], ["https://tec.openplanner.team/stops/LNCdoma3", "https://tec.openplanner.team/stops/LRRcarr1"], ["https://tec.openplanner.team/stops/Bboupde1", "https://tec.openplanner.team/stops/Bcsemar1"], ["https://tec.openplanner.team/stops/N524abb", "https://tec.openplanner.team/stops/N524afa"], ["https://tec.openplanner.team/stops/LFehaut2", "https://tec.openplanner.team/stops/LTrmaro2"], ["https://tec.openplanner.team/stops/N117aqa", "https://tec.openplanner.team/stops/N117aqb"], ["https://tec.openplanner.team/stops/X601caa", "https://tec.openplanner.team/stops/X601cab"], ["https://tec.openplanner.team/stops/X601bja", "https://tec.openplanner.team/stops/X601ctb"], ["https://tec.openplanner.team/stops/X908adb", "https://tec.openplanner.team/stops/X908afb"], ["https://tec.openplanner.team/stops/LOmlime2", "https://tec.openplanner.team/stops/LVTforg1"], ["https://tec.openplanner.team/stops/X614ala", "https://tec.openplanner.team/stops/X614amb"], ["https://tec.openplanner.team/stops/N118agb", "https://tec.openplanner.team/stops/N155aka"], ["https://tec.openplanner.team/stops/H4ty350b", "https://tec.openplanner.team/stops/H4ty356d"], ["https://tec.openplanner.team/stops/NL37aab", "https://tec.openplanner.team/stops/NL37aoa"], ["https://tec.openplanner.team/stops/Lfhmarn1", "https://tec.openplanner.team/stops/Lfhncha2"], ["https://tec.openplanner.team/stops/H4wn125a", "https://tec.openplanner.team/stops/H4wn125b"], ["https://tec.openplanner.team/stops/LeYdepo2", "https://tec.openplanner.team/stops/LeYdorf2"], ["https://tec.openplanner.team/stops/LVvboma2", "https://tec.openplanner.team/stops/X982bmb"], ["https://tec.openplanner.team/stops/H1so136a", "https://tec.openplanner.team/stops/H1so136b"], ["https://tec.openplanner.team/stops/LAWcorn1", "https://tec.openplanner.team/stops/LAWdefr2"], ["https://tec.openplanner.team/stops/N229ada", "https://tec.openplanner.team/stops/N229aga"], ["https://tec.openplanner.team/stops/N509awa", "https://tec.openplanner.team/stops/N511ava"], ["https://tec.openplanner.team/stops/Boppcen3", "https://tec.openplanner.team/stops/Bopprju2"], ["https://tec.openplanner.team/stops/X773aka", "https://tec.openplanner.team/stops/X773ala"], ["https://tec.openplanner.team/stops/N515anb", "https://tec.openplanner.team/stops/N515atb"], ["https://tec.openplanner.team/stops/Cgzhour2", "https://tec.openplanner.team/stops/Clbhour1"], ["https://tec.openplanner.team/stops/LElgerd1", "https://tec.openplanner.team/stops/LElgerd2"], ["https://tec.openplanner.team/stops/Bblamsp3", "https://tec.openplanner.team/stops/Bblamsp4"], ["https://tec.openplanner.team/stops/H1le129a", "https://tec.openplanner.team/stops/H1le129b"], ["https://tec.openplanner.team/stops/LVBneuv1", "https://tec.openplanner.team/stops/LVBsevr1"], ["https://tec.openplanner.team/stops/H2ec100a", "https://tec.openplanner.team/stops/H2ec100b"], ["https://tec.openplanner.team/stops/LHolone2", "https://tec.openplanner.team/stops/LSBjoli1"], ["https://tec.openplanner.team/stops/Ltheg--1", "https://tec.openplanner.team/stops/Ltheg--2"], ["https://tec.openplanner.team/stops/Llaacca2", "https://tec.openplanner.team/stops/Llabriq1"], ["https://tec.openplanner.team/stops/H1hi122a", "https://tec.openplanner.team/stops/H1hi124a"], ["https://tec.openplanner.team/stops/Cchsud12", "https://tec.openplanner.team/stops/Cchsud13"], ["https://tec.openplanner.team/stops/X850ada", "https://tec.openplanner.team/stops/X850aea"], ["https://tec.openplanner.team/stops/H2hg153a", "https://tec.openplanner.team/stops/H2hg153b"], ["https://tec.openplanner.team/stops/Lbrboul1", "https://tec.openplanner.team/stops/Lbrcygn2"], ["https://tec.openplanner.team/stops/LcRmich2", "https://tec.openplanner.team/stops/LnUcamp1"], ["https://tec.openplanner.team/stops/LREelse1", "https://tec.openplanner.team/stops/LREsp301"], ["https://tec.openplanner.team/stops/LAYcont1", "https://tec.openplanner.team/stops/LAYcont2"], ["https://tec.openplanner.team/stops/Bbchrra2", "https://tec.openplanner.team/stops/Bbchrra3"], ["https://tec.openplanner.team/stops/N513awb", "https://tec.openplanner.team/stops/N523aca"], ["https://tec.openplanner.team/stops/LBTxhen1", "https://tec.openplanner.team/stops/LCHsaul1"], ["https://tec.openplanner.team/stops/LCUmonu1", "https://tec.openplanner.team/stops/LEntrix1"], ["https://tec.openplanner.team/stops/N101adc", "https://tec.openplanner.team/stops/N118bab"], ["https://tec.openplanner.team/stops/H1ms302a", "https://tec.openplanner.team/stops/H1ss352a"], ["https://tec.openplanner.team/stops/LGOhevr2", "https://tec.openplanner.team/stops/LGOmonu1"], ["https://tec.openplanner.team/stops/N426adb", "https://tec.openplanner.team/stops/N426afb"], ["https://tec.openplanner.team/stops/X727aba", "https://tec.openplanner.team/stops/X767aha"], ["https://tec.openplanner.team/stops/LFChofv1", "https://tec.openplanner.team/stops/LFChofv2"], ["https://tec.openplanner.team/stops/Bplncsd2", "https://tec.openplanner.team/stops/Clpnapo2"], ["https://tec.openplanner.team/stops/H4ty312b", "https://tec.openplanner.team/stops/H4ty322b"], ["https://tec.openplanner.team/stops/LeSkreu2", "https://tec.openplanner.team/stops/LtH37c-1"], ["https://tec.openplanner.team/stops/X826aeb", "https://tec.openplanner.team/stops/X826afa"], ["https://tec.openplanner.team/stops/H4bv145b", "https://tec.openplanner.team/stops/H5at111a"], ["https://tec.openplanner.team/stops/H1nm138b", "https://tec.openplanner.team/stops/H4gr110b"], ["https://tec.openplanner.team/stops/H4bo110a", "https://tec.openplanner.team/stops/H5qu140a"], ["https://tec.openplanner.team/stops/Bjaneco1", "https://tec.openplanner.team/stops/Bjanfer1"], ["https://tec.openplanner.team/stops/Lagmair2", "https://tec.openplanner.team/stops/Lkigare2"], ["https://tec.openplanner.team/stops/Cgrgrce1", "https://tec.openplanner.team/stops/NC14aqa"], ["https://tec.openplanner.team/stops/Cjuhden2", "https://tec.openplanner.team/stops/CMtsan2"], ["https://tec.openplanner.team/stops/H4hx110a", "https://tec.openplanner.team/stops/H4lu125b"], ["https://tec.openplanner.team/stops/H4oq224b", "https://tec.openplanner.team/stops/H4ty327a"], ["https://tec.openplanner.team/stops/LBevill2", "https://tec.openplanner.team/stops/LPcforg1"], ["https://tec.openplanner.team/stops/Bpercsp1", "https://tec.openplanner.team/stops/Bperrma1"], ["https://tec.openplanner.team/stops/H4do100b", "https://tec.openplanner.team/stops/H4do101b"], ["https://tec.openplanner.team/stops/LWEbruy1", "https://tec.openplanner.team/stops/LWEpaul2"], ["https://tec.openplanner.team/stops/X634afb", "https://tec.openplanner.team/stops/X634ala"], ["https://tec.openplanner.team/stops/X615arb", "https://tec.openplanner.team/stops/X687aha"], ["https://tec.openplanner.team/stops/H4ka393b", "https://tec.openplanner.team/stops/H4ka394a"], ["https://tec.openplanner.team/stops/N501cka", "https://tec.openplanner.team/stops/N501cky"], ["https://tec.openplanner.team/stops/LLRbleh1", "https://tec.openplanner.team/stops/LLRbleh2"], ["https://tec.openplanner.team/stops/LAbbass1", "https://tec.openplanner.team/stops/LAbchpl2"], ["https://tec.openplanner.team/stops/Llgcham3", "https://tec.openplanner.team/stops/Llgcham4"], ["https://tec.openplanner.team/stops/H4bo110b", "https://tec.openplanner.team/stops/H5st162a"], ["https://tec.openplanner.team/stops/H4ma418a", "https://tec.openplanner.team/stops/H4ma418b"], ["https://tec.openplanner.team/stops/N542aka", "https://tec.openplanner.team/stops/N542ara"], ["https://tec.openplanner.team/stops/LLevaux2", "https://tec.openplanner.team/stops/X547acb"], ["https://tec.openplanner.team/stops/H4ab101a", "https://tec.openplanner.team/stops/H4ab102a"], ["https://tec.openplanner.team/stops/H4fo118a", "https://tec.openplanner.team/stops/H4fo119a"], ["https://tec.openplanner.team/stops/H1hn202a", "https://tec.openplanner.team/stops/H1hn202b"], ["https://tec.openplanner.team/stops/LSZsolw3", "https://tec.openplanner.team/stops/LSZsolw4"], ["https://tec.openplanner.team/stops/LbUbutg1", "https://tec.openplanner.team/stops/LbUpost2"], ["https://tec.openplanner.team/stops/H4am102c", "https://tec.openplanner.team/stops/H4an108b"], ["https://tec.openplanner.team/stops/LTgcime1", "https://tec.openplanner.team/stops/LTgwarf2"], ["https://tec.openplanner.team/stops/X869aca", "https://tec.openplanner.team/stops/X869afa"], ["https://tec.openplanner.team/stops/N501ada", "https://tec.openplanner.team/stops/N501adb"], ["https://tec.openplanner.team/stops/Llgcfra1", "https://tec.openplanner.team/stops/Llglaur2"], ["https://tec.openplanner.team/stops/LLt43--1", "https://tec.openplanner.team/stops/LLtwanz2"], ["https://tec.openplanner.team/stops/LaAlinz1", "https://tec.openplanner.team/stops/LlCauto2"], ["https://tec.openplanner.team/stops/Lbbbuse2", "https://tec.openplanner.team/stops/Lbbviad2"], ["https://tec.openplanner.team/stops/X898aab", "https://tec.openplanner.team/stops/X898abb"], ["https://tec.openplanner.team/stops/Bnivga71", "https://tec.openplanner.team/stops/Bnivpla2"], ["https://tec.openplanner.team/stops/Bcsebea3", "https://tec.openplanner.team/stops/Bhevcur2"], ["https://tec.openplanner.team/stops/H1fr129a", "https://tec.openplanner.team/stops/H1fr152a"], ["https://tec.openplanner.team/stops/LAWeg--1", "https://tec.openplanner.team/stops/LAWgill1"], ["https://tec.openplanner.team/stops/Bblabar1", "https://tec.openplanner.team/stops/Bblasol1"], ["https://tec.openplanner.team/stops/Lalhomb2", "https://tec.openplanner.team/stops/Lancoop1"], ["https://tec.openplanner.team/stops/Llgcite4", "https://tec.openplanner.team/stops/Llgnage2"], ["https://tec.openplanner.team/stops/N351afb", "https://tec.openplanner.team/stops/X351aba"], ["https://tec.openplanner.team/stops/Brixcme1", "https://tec.openplanner.team/stops/Brixfro3"], ["https://tec.openplanner.team/stops/Bgdhdet1", "https://tec.openplanner.team/stops/Bgdhdet2"], ["https://tec.openplanner.team/stops/X725ama", "https://tec.openplanner.team/stops/X725ara"], ["https://tec.openplanner.team/stops/Lbbremy1", "https://tec.openplanner.team/stops/Lcemalv2"], ["https://tec.openplanner.team/stops/Ccopeti2", "https://tec.openplanner.team/stops/Ccostan1"], ["https://tec.openplanner.team/stops/N580aba", "https://tec.openplanner.team/stops/N580aea"], ["https://tec.openplanner.team/stops/LhEklos2", "https://tec.openplanner.team/stops/LhElont3"], ["https://tec.openplanner.team/stops/CMchag1", "https://tec.openplanner.team/stops/CMpuis1"], ["https://tec.openplanner.team/stops/Cgoathe1", "https://tec.openplanner.team/stops/Ctmsncb1"], ["https://tec.openplanner.team/stops/H1qu104b", "https://tec.openplanner.team/stops/H1wl123a"], ["https://tec.openplanner.team/stops/X740ada", "https://tec.openplanner.team/stops/X740aeb"], ["https://tec.openplanner.team/stops/X754ata", "https://tec.openplanner.team/stops/X754aua"], ["https://tec.openplanner.team/stops/Cmerdby1", "https://tec.openplanner.team/stops/Cmestas2"], ["https://tec.openplanner.team/stops/LDLboul1", "https://tec.openplanner.team/stops/LLNbeau1"], ["https://tec.openplanner.team/stops/Ccupres1", "https://tec.openplanner.team/stops/Ccusole1"], ["https://tec.openplanner.team/stops/Cvvchea1", "https://tec.openplanner.team/stops/Cvvchea2"], ["https://tec.openplanner.team/stops/LFMveur1", "https://tec.openplanner.team/stops/LFPkape1"], ["https://tec.openplanner.team/stops/X390aha", "https://tec.openplanner.team/stops/X390ahb"], ["https://tec.openplanner.team/stops/Bbxltrv1", "https://tec.openplanner.team/stops/Bsgibla2"], ["https://tec.openplanner.team/stops/H2ma206b", "https://tec.openplanner.team/stops/H3th130a"], ["https://tec.openplanner.team/stops/N230alb", "https://tec.openplanner.team/stops/N549agb"], ["https://tec.openplanner.team/stops/H4ty285a", "https://tec.openplanner.team/stops/H4ty285b"], ["https://tec.openplanner.team/stops/Lagpaix2", "https://tec.openplanner.team/stops/Lagvern1"], ["https://tec.openplanner.team/stops/X833aaa", "https://tec.openplanner.team/stops/X834ada"], ["https://tec.openplanner.team/stops/Llggerm2", "https://tec.openplanner.team/stops/Lvtchpl2"], ["https://tec.openplanner.team/stops/X942abc", "https://tec.openplanner.team/stops/X942abe"], ["https://tec.openplanner.team/stops/Lstbarb2", "https://tec.openplanner.team/stops/Lstbold2"], ["https://tec.openplanner.team/stops/Lrclant1", "https://tec.openplanner.team/stops/Lrcpaqu2"], ["https://tec.openplanner.team/stops/H4ka193a", "https://tec.openplanner.team/stops/H4ka400a"], ["https://tec.openplanner.team/stops/Lvefran1", "https://tec.openplanner.team/stops/Lveherl1"], ["https://tec.openplanner.team/stops/Cchba2", "https://tec.openplanner.team/stops/Ccheden2"], ["https://tec.openplanner.team/stops/N531aaa", "https://tec.openplanner.team/stops/N531aab"], ["https://tec.openplanner.team/stops/LJAgoff2", "https://tec.openplanner.team/stops/LSUvill2"], ["https://tec.openplanner.team/stops/X639ana", "https://tec.openplanner.team/stops/X640aib"], ["https://tec.openplanner.team/stops/LPReg--1", "https://tec.openplanner.team/stops/LTRpeec2"], ["https://tec.openplanner.team/stops/N234afb", "https://tec.openplanner.team/stops/N549aib"], ["https://tec.openplanner.team/stops/Bwatcap1", "https://tec.openplanner.team/stops/Bwatpro2"], ["https://tec.openplanner.team/stops/LNipla3", "https://tec.openplanner.team/stops/LNipla4"], ["https://tec.openplanner.team/stops/Lagarde2", "https://tec.openplanner.team/stops/Lgreg--1"], ["https://tec.openplanner.team/stops/Lvescie1", "https://tec.openplanner.team/stops/Lvewall2"], ["https://tec.openplanner.team/stops/Bbst4br3", "https://tec.openplanner.team/stops/Blpglon2"], ["https://tec.openplanner.team/stops/Lghlogi1", "https://tec.openplanner.team/stops/Lghlogi2"], ["https://tec.openplanner.team/stops/X890aca", "https://tec.openplanner.team/stops/X890acb"], ["https://tec.openplanner.team/stops/N535apb", "https://tec.openplanner.team/stops/N538aya"], ["https://tec.openplanner.team/stops/NH01ajb", "https://tec.openplanner.team/stops/NH21ada"], ["https://tec.openplanner.team/stops/N531aob", "https://tec.openplanner.team/stops/N531aqa"], ["https://tec.openplanner.team/stops/Cjuathe2", "https://tec.openplanner.team/stops/Clomakr1"], ["https://tec.openplanner.team/stops/Cloauln2", "https://tec.openplanner.team/stops/Clomakr2"], ["https://tec.openplanner.team/stops/H4ep130a", "https://tec.openplanner.team/stops/H4rm113a"], ["https://tec.openplanner.team/stops/H5st162a", "https://tec.openplanner.team/stops/H5st168a"], ["https://tec.openplanner.team/stops/Lhufila2", "https://tec.openplanner.team/stops/Lhutran1"], ["https://tec.openplanner.team/stops/N501ksb", "https://tec.openplanner.team/stops/N501kzb"], ["https://tec.openplanner.team/stops/Bblaadm2", "https://tec.openplanner.team/stops/Bblafra2"], ["https://tec.openplanner.team/stops/Bovepla1", "https://tec.openplanner.team/stops/Bovepla2"], ["https://tec.openplanner.team/stops/Borborb1", "https://tec.openplanner.team/stops/Borbtre1"], ["https://tec.openplanner.team/stops/Lflec--1", "https://tec.openplanner.team/stops/Lflmc--2"], ["https://tec.openplanner.team/stops/LREgar-2", "https://tec.openplanner.team/stops/LREsp301"], ["https://tec.openplanner.team/stops/Cmtpire2", "https://tec.openplanner.team/stops/Cmtrbra1"], ["https://tec.openplanner.team/stops/H1cu117a", "https://tec.openplanner.team/stops/H1cu117b"], ["https://tec.openplanner.team/stops/Blindel3", "https://tec.openplanner.team/stops/Blingar2"], ["https://tec.openplanner.team/stops/X736aba", "https://tec.openplanner.team/stops/X736acb"], ["https://tec.openplanner.team/stops/Llgbwez1", "https://tec.openplanner.team/stops/Llglair1"], ["https://tec.openplanner.team/stops/Cflecga2", "https://tec.openplanner.team/stops/Cflvxca2"], ["https://tec.openplanner.team/stops/X756aed", "https://tec.openplanner.team/stops/X756aib"], ["https://tec.openplanner.team/stops/Crajasm2", "https://tec.openplanner.team/stops/Crajasm3"], ["https://tec.openplanner.team/stops/H4lp120a", "https://tec.openplanner.team/stops/H4lp122a"], ["https://tec.openplanner.team/stops/LPutins1", "https://tec.openplanner.team/stops/LPutins2"], ["https://tec.openplanner.team/stops/X754ahb", "https://tec.openplanner.team/stops/X754awa"], ["https://tec.openplanner.team/stops/Lflroms2", "https://tec.openplanner.team/stops/Lropass2"], ["https://tec.openplanner.team/stops/Lbemc--2", "https://tec.openplanner.team/stops/Llxeg--1"], ["https://tec.openplanner.team/stops/LMgberw2", "https://tec.openplanner.team/stops/LMgwith2"], ["https://tec.openplanner.team/stops/Lbemc--1", "https://tec.openplanner.team/stops/Ljuvieu2"], ["https://tec.openplanner.team/stops/Llgbavr1", "https://tec.openplanner.team/stops/Llgbuis1"], ["https://tec.openplanner.team/stops/N531aka", "https://tec.openplanner.team/stops/N531akb"], ["https://tec.openplanner.team/stops/Bbourel2", "https://tec.openplanner.team/stops/Bbsthpl2"], ["https://tec.openplanner.team/stops/N515aea", "https://tec.openplanner.team/stops/N517aca"], ["https://tec.openplanner.team/stops/X917agb", "https://tec.openplanner.team/stops/X917aha"], ["https://tec.openplanner.team/stops/Bnivga11", "https://tec.openplanner.team/stops/Bnivga12"], ["https://tec.openplanner.team/stops/Clsstpi1", "https://tec.openplanner.team/stops/H1ls129a"], ["https://tec.openplanner.team/stops/H4ft132a", "https://tec.openplanner.team/stops/H4ft135a"], ["https://tec.openplanner.team/stops/X940acb", "https://tec.openplanner.team/stops/X946abb"], ["https://tec.openplanner.team/stops/Cmtchet1", "https://tec.openplanner.team/stops/Cmtpire2"], ["https://tec.openplanner.team/stops/H4ir164b", "https://tec.openplanner.team/stops/H4og209b"], ["https://tec.openplanner.team/stops/X547aaa", "https://tec.openplanner.team/stops/X547asa"], ["https://tec.openplanner.team/stops/N143aaa", "https://tec.openplanner.team/stops/N143aca"], ["https://tec.openplanner.team/stops/Cgdberl1", "https://tec.openplanner.team/stops/Cgdrhau1"], ["https://tec.openplanner.team/stops/X730adb", "https://tec.openplanner.team/stops/X928aab"], ["https://tec.openplanner.team/stops/N225acb", "https://tec.openplanner.team/stops/N225aea"], ["https://tec.openplanner.team/stops/H4ml206a", "https://tec.openplanner.team/stops/H4ml209a"], ["https://tec.openplanner.team/stops/X999apa", "https://tec.openplanner.team/stops/X999ata"], ["https://tec.openplanner.team/stops/X952ajb", "https://tec.openplanner.team/stops/X952akb"], ["https://tec.openplanner.team/stops/LeYberl1", "https://tec.openplanner.team/stops/LrAneue1"], ["https://tec.openplanner.team/stops/LkEl3252", "https://tec.openplanner.team/stops/LMsalen1"], ["https://tec.openplanner.team/stops/Lsehcoc1", "https://tec.openplanner.team/stops/Lsepaqu1"], ["https://tec.openplanner.team/stops/Cjugohi3", "https://tec.openplanner.team/stops/Cjuvpla1"], ["https://tec.openplanner.team/stops/N348aba", "https://tec.openplanner.team/stops/N353awa"], ["https://tec.openplanner.team/stops/X725ara", "https://tec.openplanner.team/stops/X725asb"], ["https://tec.openplanner.team/stops/N501fwz", "https://tec.openplanner.team/stops/N501hhb"], ["https://tec.openplanner.team/stops/LPUchpl2", "https://tec.openplanner.team/stops/LRepous1"], ["https://tec.openplanner.team/stops/X657acb", "https://tec.openplanner.team/stops/X657adb"], ["https://tec.openplanner.team/stops/Lmnsech1", "https://tec.openplanner.team/stops/Lsmsech3"], ["https://tec.openplanner.team/stops/LlgLAMB2", "https://tec.openplanner.team/stops/LlgR-F1*"], ["https://tec.openplanner.team/stops/Cflmart1", "https://tec.openplanner.team/stops/Cflmart2"], ["https://tec.openplanner.team/stops/H4ka175b", "https://tec.openplanner.team/stops/H4ka183a"], ["https://tec.openplanner.team/stops/N538ala", "https://tec.openplanner.team/stops/N538alb"], ["https://tec.openplanner.team/stops/Cravold1", "https://tec.openplanner.team/stops/Cwgtill1"], ["https://tec.openplanner.team/stops/Cgyblob2", "https://tec.openplanner.team/stops/Cgylami1"], ["https://tec.openplanner.team/stops/LBhcent1", "https://tec.openplanner.team/stops/LBhsign1"], ["https://tec.openplanner.team/stops/LsVprum2", "https://tec.openplanner.team/stops/LwSgeme2"], ["https://tec.openplanner.team/stops/NL35aba", "https://tec.openplanner.team/stops/NL35abb"], ["https://tec.openplanner.team/stops/LeYmuhl1", "https://tec.openplanner.team/stops/LeYmuhl2"], ["https://tec.openplanner.team/stops/N539afa", "https://tec.openplanner.team/stops/N539ahb"], ["https://tec.openplanner.team/stops/N542alb", "https://tec.openplanner.team/stops/N578acb"], ["https://tec.openplanner.team/stops/X901aba", "https://tec.openplanner.team/stops/X901bob"], ["https://tec.openplanner.team/stops/Bcrbbou2", "https://tec.openplanner.team/stops/Bcrbros1"], ["https://tec.openplanner.team/stops/X641aba", "https://tec.openplanner.team/stops/X641abb"], ["https://tec.openplanner.team/stops/N501aea", "https://tec.openplanner.team/stops/N501aeb"], ["https://tec.openplanner.team/stops/Cmmgadi1", "https://tec.openplanner.team/stops/Cmmgadi2"], ["https://tec.openplanner.team/stops/Btubcim1", "https://tec.openplanner.team/stops/Btubcim2"], ["https://tec.openplanner.team/stops/Blasbgc1", "https://tec.openplanner.team/stops/Blasbgc2"], ["https://tec.openplanner.team/stops/X744abb", "https://tec.openplanner.team/stops/X746ahd"], ["https://tec.openplanner.team/stops/N501bra", "https://tec.openplanner.team/stops/N501brb"], ["https://tec.openplanner.team/stops/LRmkast*", "https://tec.openplanner.team/stops/LRmstat1"], ["https://tec.openplanner.team/stops/X912aaa", "https://tec.openplanner.team/stops/X912aja"], ["https://tec.openplanner.team/stops/Lseresi2", "https://tec.openplanner.team/stops/Lsetroq2"], ["https://tec.openplanner.team/stops/Bbstbxl2", "https://tec.openplanner.team/stops/Cbtstac2"], ["https://tec.openplanner.team/stops/Bbosdra1", "https://tec.openplanner.team/stops/Btiegma1"], ["https://tec.openplanner.team/stops/Bfledpi2", "https://tec.openplanner.team/stops/Bsamegl2"], ["https://tec.openplanner.team/stops/X359aad", "https://tec.openplanner.team/stops/X359abb"], ["https://tec.openplanner.team/stops/X982bma", "https://tec.openplanner.team/stops/X982bnb"], ["https://tec.openplanner.team/stops/H1cv103a", "https://tec.openplanner.team/stops/H1cv104b"], ["https://tec.openplanner.team/stops/H4am101a", "https://tec.openplanner.team/stops/H4an108b"], ["https://tec.openplanner.team/stops/H2an111a", "https://tec.openplanner.team/stops/H2an111b"], ["https://tec.openplanner.team/stops/N201aab", "https://tec.openplanner.team/stops/N211ala"], ["https://tec.openplanner.team/stops/H4av102a", "https://tec.openplanner.team/stops/H4av102b"], ["https://tec.openplanner.team/stops/Cladura5", "https://tec.openplanner.team/stops/Cwfcast1"], ["https://tec.openplanner.team/stops/LbAhull1", "https://tec.openplanner.team/stops/LhLdorf1"], ["https://tec.openplanner.team/stops/X739aab", "https://tec.openplanner.team/stops/X739aea"], ["https://tec.openplanner.team/stops/H1go118b", "https://tec.openplanner.team/stops/H1go169a"], ["https://tec.openplanner.team/stops/X741apa", "https://tec.openplanner.team/stops/X758aka"], ["https://tec.openplanner.team/stops/X952aba", "https://tec.openplanner.team/stops/X952aga"], ["https://tec.openplanner.team/stops/Llgbwez2", "https://tec.openplanner.team/stops/Llgcham4"], ["https://tec.openplanner.team/stops/N501cfb", "https://tec.openplanner.team/stops/N501mpa"], ["https://tec.openplanner.team/stops/LHUbail1", "https://tec.openplanner.team/stops/LTiespe4"], ["https://tec.openplanner.team/stops/X822aib", "https://tec.openplanner.team/stops/X836aha"], ["https://tec.openplanner.team/stops/X650ajb", "https://tec.openplanner.team/stops/X650amb"], ["https://tec.openplanner.team/stops/H2ll182a", "https://tec.openplanner.team/stops/H2ll182b"], ["https://tec.openplanner.team/stops/N426aaa", "https://tec.openplanner.team/stops/N426afa"], ["https://tec.openplanner.team/stops/X801bma", "https://tec.openplanner.team/stops/X801cla"], ["https://tec.openplanner.team/stops/Bwatmch2", "https://tec.openplanner.team/stops/Bwatpcs2"], ["https://tec.openplanner.team/stops/Lfhdonn1", "https://tec.openplanner.team/stops/Lfhpass2"], ["https://tec.openplanner.team/stops/LOCeg--2", "https://tec.openplanner.team/stops/LOCerzy1"], ["https://tec.openplanner.team/stops/LREprea1", "https://tec.openplanner.team/stops/LREprea2"], ["https://tec.openplanner.team/stops/LHOgymn1", "https://tec.openplanner.team/stops/LHOgymn2"], ["https://tec.openplanner.team/stops/Blmlcle2", "https://tec.openplanner.team/stops/Blmlvex2"], ["https://tec.openplanner.team/stops/Lsepcha4", "https://tec.openplanner.team/stops/Lsercha1"], ["https://tec.openplanner.team/stops/Lsmh1802", "https://tec.openplanner.team/stops/Lsmh3022"], ["https://tec.openplanner.team/stops/X901bba", "https://tec.openplanner.team/stops/X901bbb"], ["https://tec.openplanner.team/stops/Lvegazo1", "https://tec.openplanner.team/stops/Lveptle3"], ["https://tec.openplanner.team/stops/Llgchar2", "https://tec.openplanner.team/stops/Llgpier2"], ["https://tec.openplanner.team/stops/H2bh111a", "https://tec.openplanner.team/stops/H2bh118b"], ["https://tec.openplanner.team/stops/Lroboeg1", "https://tec.openplanner.team/stops/Lromc--2"], ["https://tec.openplanner.team/stops/H3lr109c", "https://tec.openplanner.team/stops/H3lr117b"], ["https://tec.openplanner.team/stops/Lhrlalo4", "https://tec.openplanner.team/stops/Ljubonf2"], ["https://tec.openplanner.team/stops/Bnodtir1", "https://tec.openplanner.team/stops/Boplham2"], ["https://tec.openplanner.team/stops/N166aba", "https://tec.openplanner.team/stops/N166aca"], ["https://tec.openplanner.team/stops/LHegame1", "https://tec.openplanner.team/stops/LHexhav2"], ["https://tec.openplanner.team/stops/Lsepcha1", "https://tec.openplanner.team/stops/Lsepcha4"], ["https://tec.openplanner.team/stops/Bdlmegl1", "https://tec.openplanner.team/stops/Bdvmsar2"], ["https://tec.openplanner.team/stops/LFCdree1", "https://tec.openplanner.team/stops/LMgbern1"], ["https://tec.openplanner.team/stops/Cgycorv4", "https://tec.openplanner.team/stops/Cgyrjau2"], ["https://tec.openplanner.team/stops/X818ada", "https://tec.openplanner.team/stops/X827aab"], ["https://tec.openplanner.team/stops/X822ana", "https://tec.openplanner.team/stops/X822anb"], ["https://tec.openplanner.team/stops/N122aaa", "https://tec.openplanner.team/stops/N122aab"], ["https://tec.openplanner.team/stops/Cmopn1", "https://tec.openplanner.team/stops/Cmopn4"], ["https://tec.openplanner.team/stops/H1gh162c", "https://tec.openplanner.team/stops/H1gh365a"], ["https://tec.openplanner.team/stops/X608aka", "https://tec.openplanner.team/stops/X608akb"], ["https://tec.openplanner.team/stops/Csograf1", "https://tec.openplanner.team/stops/Csograf4"], ["https://tec.openplanner.team/stops/N423aea", "https://tec.openplanner.team/stops/NH01aab"], ["https://tec.openplanner.team/stops/Bhenhau2", "https://tec.openplanner.team/stops/Bhenmal2"], ["https://tec.openplanner.team/stops/X664aic", "https://tec.openplanner.team/stops/X664aid"], ["https://tec.openplanner.team/stops/Ccogibr1", "https://tec.openplanner.team/stops/Ccojaur4"], ["https://tec.openplanner.team/stops/Lancolr2", "https://tec.openplanner.team/stops/Lanyser2"], ["https://tec.openplanner.team/stops/Bnivgen1", "https://tec.openplanner.team/stops/Bnivplt1"], ["https://tec.openplanner.team/stops/X721aob", "https://tec.openplanner.team/stops/X721atb"], ["https://tec.openplanner.team/stops/H1hm175a", "https://tec.openplanner.team/stops/H1hm176a"], ["https://tec.openplanner.team/stops/H4ty275a", "https://tec.openplanner.team/stops/H4ty299c"], ["https://tec.openplanner.team/stops/N562bqa", "https://tec.openplanner.team/stops/N562bsa"], ["https://tec.openplanner.team/stops/X733acb", "https://tec.openplanner.team/stops/X733aeb"], ["https://tec.openplanner.team/stops/Bhtibru2", "https://tec.openplanner.team/stops/Bhticbr2"], ["https://tec.openplanner.team/stops/Cfcbobr2", "https://tec.openplanner.team/stops/Cfccuch1"], ["https://tec.openplanner.team/stops/N160aca", "https://tec.openplanner.team/stops/N160adb"], ["https://tec.openplanner.team/stops/H1br121a", "https://tec.openplanner.team/stops/H1vs144a"], ["https://tec.openplanner.team/stops/X754aha", "https://tec.openplanner.team/stops/X754alb"], ["https://tec.openplanner.team/stops/N501dib", "https://tec.openplanner.team/stops/N501lea"], ["https://tec.openplanner.team/stops/Lagcler1", "https://tec.openplanner.team/stops/Laggare2"], ["https://tec.openplanner.team/stops/Cjugill6", "https://tec.openplanner.team/stops/CMchag2"], ["https://tec.openplanner.team/stops/H2hg268b", "https://tec.openplanner.team/stops/H2hg269a"], ["https://tec.openplanner.team/stops/Bbgerlr1", "https://tec.openplanner.team/stops/Bbgever1"], ["https://tec.openplanner.team/stops/Llgavoc1", "https://tec.openplanner.team/stops/Llgwiar1"], ["https://tec.openplanner.team/stops/LSBrouf2", "https://tec.openplanner.team/stops/LSktinc1"], ["https://tec.openplanner.team/stops/Lvtfrai2", "https://tec.openplanner.team/stops/Lvtlomb2"], ["https://tec.openplanner.team/stops/X672aga", "https://tec.openplanner.team/stops/X672aka"], ["https://tec.openplanner.team/stops/Lenclar1", "https://tec.openplanner.team/stops/Lenclar2"], ["https://tec.openplanner.team/stops/Bnivace2", "https://tec.openplanner.team/stops/Bnivaig2"], ["https://tec.openplanner.team/stops/X782aib", "https://tec.openplanner.team/stops/X782aka"], ["https://tec.openplanner.team/stops/H4gu110a", "https://tec.openplanner.team/stops/H4gu110b"], ["https://tec.openplanner.team/stops/LMOs45-1", "https://tec.openplanner.team/stops/LMOs45-2"], ["https://tec.openplanner.team/stops/LSPherd1", "https://tec.openplanner.team/stops/LSPsous1"], ["https://tec.openplanner.team/stops/LBAbooz2", "https://tec.openplanner.team/stops/LHOmc--1"], ["https://tec.openplanner.team/stops/Cbwmvri2", "https://tec.openplanner.team/stops/Cmqn5912"], ["https://tec.openplanner.team/stops/Cmtplac1", "https://tec.openplanner.team/stops/Cmtplac5"], ["https://tec.openplanner.team/stops/Lwaelme1", "https://tec.openplanner.team/stops/Lwapont2"], ["https://tec.openplanner.team/stops/H2ch102b", "https://tec.openplanner.team/stops/H2ch103b"], ["https://tec.openplanner.team/stops/X670agb", "https://tec.openplanner.team/stops/X670ahb"], ["https://tec.openplanner.team/stops/N501atb", "https://tec.openplanner.team/stops/N501nca"], ["https://tec.openplanner.team/stops/NL57aea", "https://tec.openplanner.team/stops/NL57aeb"], ["https://tec.openplanner.team/stops/LMschap2", "https://tec.openplanner.team/stops/LMsgara2"], ["https://tec.openplanner.team/stops/Bitrh%C3%BBl2", "https://tec.openplanner.team/stops/Bitrmde1"], ["https://tec.openplanner.team/stops/X727aha", "https://tec.openplanner.team/stops/X748aea"], ["https://tec.openplanner.team/stops/Cfomays1", "https://tec.openplanner.team/stops/Cgxfo141"], ["https://tec.openplanner.team/stops/H2gy101a", "https://tec.openplanner.team/stops/H2se105a"], ["https://tec.openplanner.team/stops/H1vg359a", "https://tec.openplanner.team/stops/H1vs145a"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X725bfb"], ["https://tec.openplanner.team/stops/X696aca", "https://tec.openplanner.team/stops/X696aka"], ["https://tec.openplanner.team/stops/Lhefoot1", "https://tec.openplanner.team/stops/Lhefoot2"], ["https://tec.openplanner.team/stops/Blinhue1", "https://tec.openplanner.team/stops/Blinhue2"], ["https://tec.openplanner.team/stops/Bbsifmo2", "https://tec.openplanner.team/stops/Bbsipos1"], ["https://tec.openplanner.team/stops/H4ma200a", "https://tec.openplanner.team/stops/H4ma201a"], ["https://tec.openplanner.team/stops/H4me211c", "https://tec.openplanner.team/stops/H4ve133b"], ["https://tec.openplanner.team/stops/Bcrncor2", "https://tec.openplanner.team/stops/Bcrngat2"], ["https://tec.openplanner.team/stops/H4he103a", "https://tec.openplanner.team/stops/H4he105b"], ["https://tec.openplanner.team/stops/LHCbran1", "https://tec.openplanner.team/stops/LWEwilc1"], ["https://tec.openplanner.team/stops/LtHkirc3", "https://tec.openplanner.team/stops/LtHkreu3"], ["https://tec.openplanner.team/stops/Brebgar2", "https://tec.openplanner.team/stops/Brebraf1"], ["https://tec.openplanner.team/stops/Lgrmc--2", "https://tec.openplanner.team/stops/Lgrside1"], ["https://tec.openplanner.team/stops/Cmaacac2", "https://tec.openplanner.team/stops/Cmapeet1"], ["https://tec.openplanner.team/stops/X955ada", "https://tec.openplanner.team/stops/X955aha"], ["https://tec.openplanner.team/stops/LhEcolo1", "https://tec.openplanner.team/stops/LhEcolo2"], ["https://tec.openplanner.team/stops/X752aaa", "https://tec.openplanner.team/stops/X752aca"], ["https://tec.openplanner.team/stops/N516aaa", "https://tec.openplanner.team/stops/N516amc"], ["https://tec.openplanner.team/stops/N243aaa", "https://tec.openplanner.team/stops/N243aab"], ["https://tec.openplanner.team/stops/X636ada", "https://tec.openplanner.team/stops/X636bab"], ["https://tec.openplanner.team/stops/N331afa", "https://tec.openplanner.team/stops/N331afb"], ["https://tec.openplanner.team/stops/X638aha", "https://tec.openplanner.team/stops/X638ama"], ["https://tec.openplanner.team/stops/Bhmmcim1", "https://tec.openplanner.team/stops/Bhmmvdu2"], ["https://tec.openplanner.team/stops/LBBlaga2", "https://tec.openplanner.team/stops/LBBodet2"], ["https://tec.openplanner.team/stops/H5pe139a", "https://tec.openplanner.team/stops/H5pe139b"], ["https://tec.openplanner.team/stops/LGMdrev2", "https://tec.openplanner.team/stops/LGMforg1"], ["https://tec.openplanner.team/stops/H4hn113a", "https://tec.openplanner.team/stops/H4hn115b"], ["https://tec.openplanner.team/stops/N509ara", "https://tec.openplanner.team/stops/N509arb"], ["https://tec.openplanner.team/stops/H5at107b", "https://tec.openplanner.team/stops/H5at124a"], ["https://tec.openplanner.team/stops/H1au101a", "https://tec.openplanner.team/stops/H1bx108a"], ["https://tec.openplanner.team/stops/LPReg--1", "https://tec.openplanner.team/stops/Lrofont1"], ["https://tec.openplanner.team/stops/N528acb", "https://tec.openplanner.team/stops/N528aeb"], ["https://tec.openplanner.team/stops/Cliburl2", "https://tec.openplanner.team/stops/Cliegli2"], ["https://tec.openplanner.team/stops/N501emb", "https://tec.openplanner.team/stops/N501kka"], ["https://tec.openplanner.team/stops/LPT97--2", "https://tec.openplanner.team/stops/LPTgran1"], ["https://tec.openplanner.team/stops/H1hq129a", "https://tec.openplanner.team/stops/H1hq158a"], ["https://tec.openplanner.team/stops/Ccuhsti2", "https://tec.openplanner.team/stops/Cpipost2"], ["https://tec.openplanner.team/stops/Bgnvqve1", "https://tec.openplanner.team/stops/Bgnvtas1"], ["https://tec.openplanner.team/stops/LWblesp1", "https://tec.openplanner.team/stops/LWblesp2"], ["https://tec.openplanner.team/stops/N519aga", "https://tec.openplanner.team/stops/N519aha"], ["https://tec.openplanner.team/stops/N538ava", "https://tec.openplanner.team/stops/N539avb"], ["https://tec.openplanner.team/stops/X756aec", "https://tec.openplanner.team/stops/X756ajb"], ["https://tec.openplanner.team/stops/Bbch4br3", "https://tec.openplanner.team/stops/Bbchrra3"], ["https://tec.openplanner.team/stops/N551acb", "https://tec.openplanner.team/stops/N551alb"], ["https://tec.openplanner.team/stops/LPLarbo2", "https://tec.openplanner.team/stops/LPLheid1"], ["https://tec.openplanner.team/stops/N514afa", "https://tec.openplanner.team/stops/N514ahb"], ["https://tec.openplanner.team/stops/Lgrcrac2", "https://tec.openplanner.team/stops/Lgrrein2"], ["https://tec.openplanner.team/stops/Lhrjaur1", "https://tec.openplanner.team/stops/Lhrjaur2"], ["https://tec.openplanner.team/stops/LrAeife1", "https://tec.openplanner.team/stops/LrAiter2"], ["https://tec.openplanner.team/stops/Llgpier1", "https://tec.openplanner.team/stops/Llgpier2"], ["https://tec.openplanner.team/stops/LCIneuv2", "https://tec.openplanner.team/stops/LLtwanz1"], ["https://tec.openplanner.team/stops/LDAptbo2", "https://tec.openplanner.team/stops/LDAwich1"], ["https://tec.openplanner.team/stops/LnDkreu1", "https://tec.openplanner.team/stops/LnDkreu2"], ["https://tec.openplanner.team/stops/H2hl112b", "https://tec.openplanner.team/stops/H2hp118b"], ["https://tec.openplanner.team/stops/Brebcha1", "https://tec.openplanner.team/stops/Brebcha2"], ["https://tec.openplanner.team/stops/N556aea", "https://tec.openplanner.team/stops/N556aeb"], ["https://tec.openplanner.team/stops/Cna4che2", "https://tec.openplanner.team/stops/Cnathib1"], ["https://tec.openplanner.team/stops/H2se106a", "https://tec.openplanner.team/stops/H2se107a"], ["https://tec.openplanner.team/stops/N569aca", "https://tec.openplanner.team/stops/N569acb"], ["https://tec.openplanner.team/stops/Bhandub2", "https://tec.openplanner.team/stops/Bthscbl1"], ["https://tec.openplanner.team/stops/LrEkais2", "https://tec.openplanner.team/stops/LrEkais3"], ["https://tec.openplanner.team/stops/LWEhosp1", "https://tec.openplanner.team/stops/LWEpaul1"], ["https://tec.openplanner.team/stops/Cmlange2", "https://tec.openplanner.team/stops/Cmtrdec2"], ["https://tec.openplanner.team/stops/LRRecdu1", "https://tec.openplanner.team/stops/LRRlimi2"], ["https://tec.openplanner.team/stops/Cpcchau", "https://tec.openplanner.team/stops/Cpctrau2"], ["https://tec.openplanner.team/stops/N201ala", "https://tec.openplanner.team/stops/N201amb"], ["https://tec.openplanner.team/stops/X773afa", "https://tec.openplanner.team/stops/X954acb"], ["https://tec.openplanner.team/stops/H5qu142b", "https://tec.openplanner.team/stops/H5qu154b"], ["https://tec.openplanner.team/stops/N115aca", "https://tec.openplanner.team/stops/N170acb"], ["https://tec.openplanner.team/stops/Ccymabo2", "https://tec.openplanner.team/stops/Crbgare1"], ["https://tec.openplanner.team/stops/X908aka", "https://tec.openplanner.team/stops/X908amb"], ["https://tec.openplanner.team/stops/H2sb258a", "https://tec.openplanner.team/stops/H2sb258b"], ["https://tec.openplanner.team/stops/Bdlmgla2", "https://tec.openplanner.team/stops/Bwavlca1"], ["https://tec.openplanner.team/stops/Cflsabl1", "https://tec.openplanner.team/stops/Cflsabl2"], ["https://tec.openplanner.team/stops/LiVdorf1", "https://tec.openplanner.team/stops/LONcroi2"], ["https://tec.openplanner.team/stops/Bwatmch3", "https://tec.openplanner.team/stops/Bwatpcs2"], ["https://tec.openplanner.team/stops/Cgocalv1", "https://tec.openplanner.team/stops/Cgocalv2"], ["https://tec.openplanner.team/stops/H1qu100b", "https://tec.openplanner.team/stops/H1qu101a"], ["https://tec.openplanner.team/stops/Bnivind1", "https://tec.openplanner.team/stops/Bnivtec2"], ["https://tec.openplanner.team/stops/Cjugohi4", "https://tec.openplanner.team/stops/Cjuvpla1"], ["https://tec.openplanner.team/stops/X806aca", "https://tec.openplanner.team/stops/X806aia"], ["https://tec.openplanner.team/stops/Cnapair2", "https://tec.openplanner.team/stops/N137aca"], ["https://tec.openplanner.team/stops/LOUherm2", "https://tec.openplanner.team/stops/Lvitour2"], ["https://tec.openplanner.team/stops/N244amb", "https://tec.openplanner.team/stops/N244ana"], ["https://tec.openplanner.team/stops/H4ln128a", "https://tec.openplanner.team/stops/H4ln128b"], ["https://tec.openplanner.team/stops/X757aaa", "https://tec.openplanner.team/stops/X758aea"], ["https://tec.openplanner.team/stops/N539aab", "https://tec.openplanner.team/stops/N539aea"], ["https://tec.openplanner.team/stops/LCTcret1", "https://tec.openplanner.team/stops/LCTcret2"], ["https://tec.openplanner.team/stops/X561aca", "https://tec.openplanner.team/stops/X561adb"], ["https://tec.openplanner.team/stops/H4er123b", "https://tec.openplanner.team/stops/H4gu109a"], ["https://tec.openplanner.team/stops/LlNbusc2", "https://tec.openplanner.team/stops/LWEgend1"], ["https://tec.openplanner.team/stops/X741aoa", "https://tec.openplanner.team/stops/X741aob"], ["https://tec.openplanner.team/stops/Lsemaha2", "https://tec.openplanner.team/stops/Lseverh1"], ["https://tec.openplanner.team/stops/N501hlb", "https://tec.openplanner.team/stops/N501hly"], ["https://tec.openplanner.team/stops/H4ry129a", "https://tec.openplanner.team/stops/H4ry140a"], ["https://tec.openplanner.team/stops/N502aaa", "https://tec.openplanner.team/stops/N502aab"], ["https://tec.openplanner.team/stops/H4ab100b", "https://tec.openplanner.team/stops/H5ar127b"], ["https://tec.openplanner.team/stops/H2le153b", "https://tec.openplanner.team/stops/H2re163a"], ["https://tec.openplanner.team/stops/Chhsncb1", "https://tec.openplanner.team/stops/Chhsncb2"], ["https://tec.openplanner.team/stops/X775aka", "https://tec.openplanner.team/stops/X775akb"], ["https://tec.openplanner.team/stops/X601atb", "https://tec.openplanner.team/stops/X601aud"], ["https://tec.openplanner.team/stops/X879ama", "https://tec.openplanner.team/stops/X879asa"], ["https://tec.openplanner.team/stops/Cwfbarr1", "https://tec.openplanner.team/stops/Cwfmoul1"], ["https://tec.openplanner.team/stops/NL74ada", "https://tec.openplanner.team/stops/NL74adb"], ["https://tec.openplanner.team/stops/Clacast1", "https://tec.openplanner.team/stops/Clafaub1"], ["https://tec.openplanner.team/stops/H1hr118b", "https://tec.openplanner.team/stops/H1ne143a"], ["https://tec.openplanner.team/stops/X946aca", "https://tec.openplanner.team/stops/X946acb"], ["https://tec.openplanner.team/stops/H1mb168a", "https://tec.openplanner.team/stops/H1mb168b"], ["https://tec.openplanner.team/stops/Crebien2", "https://tec.openplanner.team/stops/Crestan2"], ["https://tec.openplanner.team/stops/H1au111b", "https://tec.openplanner.team/stops/H1ro139b"], ["https://tec.openplanner.team/stops/LLUlieg1", "https://tec.openplanner.team/stops/LLUmont2"], ["https://tec.openplanner.team/stops/H1be104b", "https://tec.openplanner.team/stops/H1mc129a"], ["https://tec.openplanner.team/stops/N115ada", "https://tec.openplanner.team/stops/N147afa"], ["https://tec.openplanner.team/stops/LFMveur2", "https://tec.openplanner.team/stops/LFPknap2"], ["https://tec.openplanner.team/stops/N534bng", "https://tec.openplanner.team/stops/N534bnh"], ["https://tec.openplanner.team/stops/LAxchpl2", "https://tec.openplanner.team/stops/Llianix2"], ["https://tec.openplanner.team/stops/LBsfer-1", "https://tec.openplanner.team/stops/LBsfer-2"], ["https://tec.openplanner.team/stops/X910aeb", "https://tec.openplanner.team/stops/X951acb"], ["https://tec.openplanner.team/stops/Bbearwa2", "https://tec.openplanner.team/stops/Bmlncle1"], ["https://tec.openplanner.team/stops/Ccugilb2", "https://tec.openplanner.team/stops/Cpicite1"], ["https://tec.openplanner.team/stops/N521asa", "https://tec.openplanner.team/stops/N521atb"], ["https://tec.openplanner.team/stops/Cmofosb2", "https://tec.openplanner.team/stops/Crocpai1"], ["https://tec.openplanner.team/stops/N514aca", "https://tec.openplanner.team/stops/N514aoa"], ["https://tec.openplanner.team/stops/Cdogrro2", "https://tec.openplanner.team/stops/Cstdona1"], ["https://tec.openplanner.team/stops/Borblim1", "https://tec.openplanner.team/stops/Borbtre1"], ["https://tec.openplanner.team/stops/N141aob", "https://tec.openplanner.team/stops/N146aab"], ["https://tec.openplanner.team/stops/LJAdeho3", "https://tec.openplanner.team/stops/LJAgoff1"], ["https://tec.openplanner.team/stops/LDAcite2", "https://tec.openplanner.team/stops/LDArich2"], ["https://tec.openplanner.team/stops/LkEhaag1", "https://tec.openplanner.team/stops/LkEkric1"], ["https://tec.openplanner.team/stops/Lsnferr2", "https://tec.openplanner.team/stops/Lsnpaqu1"], ["https://tec.openplanner.team/stops/Bitrcha1", "https://tec.openplanner.team/stops/Bitregl2"], ["https://tec.openplanner.team/stops/LHCbois1", "https://tec.openplanner.team/stops/LHCquat1"], ["https://tec.openplanner.team/stops/X614bca", "https://tec.openplanner.team/stops/X626akb"], ["https://tec.openplanner.team/stops/Blsmcha2", "https://tec.openplanner.team/stops/Blsmcha4"], ["https://tec.openplanner.team/stops/N254aaa", "https://tec.openplanner.team/stops/N254aca"], ["https://tec.openplanner.team/stops/Bjaufca1", "https://tec.openplanner.team/stops/Bjaugar2"], ["https://tec.openplanner.team/stops/LDLgran1", "https://tec.openplanner.team/stops/LDLgran4"], ["https://tec.openplanner.team/stops/X902afa", "https://tec.openplanner.team/stops/X999aga"], ["https://tec.openplanner.team/stops/X717agb", "https://tec.openplanner.team/stops/X717aja"], ["https://tec.openplanner.team/stops/H1hh116a", "https://tec.openplanner.team/stops/H1hh117b"], ["https://tec.openplanner.team/stops/H2ch101b", "https://tec.openplanner.team/stops/H2lh130a"], ["https://tec.openplanner.team/stops/Lpedeta1", "https://tec.openplanner.team/stops/Lpeflec1"], ["https://tec.openplanner.team/stops/Canfief2", "https://tec.openplanner.team/stops/Canjon1"], ["https://tec.openplanner.team/stops/X813aab", "https://tec.openplanner.team/stops/X813abb"], ["https://tec.openplanner.team/stops/LNCtour1", "https://tec.openplanner.team/stops/LNCvill1"], ["https://tec.openplanner.team/stops/H1ho137a", "https://tec.openplanner.team/stops/H1sg148a"], ["https://tec.openplanner.team/stops/H4mo147a", "https://tec.openplanner.team/stops/H4mo151a"], ["https://tec.openplanner.team/stops/N234acb", "https://tec.openplanner.team/stops/N234afb"], ["https://tec.openplanner.team/stops/N501hzc", "https://tec.openplanner.team/stops/N501ibb"], ["https://tec.openplanner.team/stops/H1ha192a", "https://tec.openplanner.team/stops/H1ha192b"], ["https://tec.openplanner.team/stops/N501cna", "https://tec.openplanner.team/stops/N501cnb"], ["https://tec.openplanner.team/stops/Loudela1", "https://tec.openplanner.team/stops/Loudela2"], ["https://tec.openplanner.team/stops/N390aab", "https://tec.openplanner.team/stops/N390aba"], ["https://tec.openplanner.team/stops/X608abb", "https://tec.openplanner.team/stops/X608ajb"], ["https://tec.openplanner.team/stops/H5at120a", "https://tec.openplanner.team/stops/H5at141b"], ["https://tec.openplanner.team/stops/LNAanne1", "https://tec.openplanner.team/stops/LNAanne2"], ["https://tec.openplanner.team/stops/N528afy", "https://tec.openplanner.team/stops/N528aja"], ["https://tec.openplanner.team/stops/LHEpriv1", "https://tec.openplanner.team/stops/LHEpriv2"], ["https://tec.openplanner.team/stops/LBrec--1", "https://tec.openplanner.team/stops/LBrneli2"], ["https://tec.openplanner.team/stops/N528asa", "https://tec.openplanner.team/stops/N528aua"], ["https://tec.openplanner.team/stops/Boplcar3", "https://tec.openplanner.team/stops/Boplsma3"], ["https://tec.openplanner.team/stops/H4rx142a", "https://tec.openplanner.team/stops/H4tg163a"], ["https://tec.openplanner.team/stops/NR10aca", "https://tec.openplanner.team/stops/NR10acb"], ["https://tec.openplanner.team/stops/X633alb", "https://tec.openplanner.team/stops/X633ama"], ["https://tec.openplanner.team/stops/X783acc", "https://tec.openplanner.team/stops/X783ada"], ["https://tec.openplanner.team/stops/N501ima", "https://tec.openplanner.team/stops/N501nbb"], ["https://tec.openplanner.team/stops/LBOande1", "https://tec.openplanner.team/stops/LBOande2"], ["https://tec.openplanner.team/stops/X614aca", "https://tec.openplanner.team/stops/X614aza"], ["https://tec.openplanner.team/stops/Ljerobi1", "https://tec.openplanner.team/stops/Ljerouy1"], ["https://tec.openplanner.team/stops/LLTfall1", "https://tec.openplanner.team/stops/LLThosd1"], ["https://tec.openplanner.team/stops/Ccspla", "https://tec.openplanner.team/stops/Ccstord1"], ["https://tec.openplanner.team/stops/X725bcb", "https://tec.openplanner.team/stops/X725bda"], ["https://tec.openplanner.team/stops/X654aaa", "https://tec.openplanner.team/stops/X654aba"], ["https://tec.openplanner.team/stops/LMfange2", "https://tec.openplanner.team/stops/LMffoot2"], ["https://tec.openplanner.team/stops/N287aaa", "https://tec.openplanner.team/stops/N287abb"], ["https://tec.openplanner.team/stops/H4bw100b", "https://tec.openplanner.team/stops/H4co103a"], ["https://tec.openplanner.team/stops/Bsdecdi1", "https://tec.openplanner.team/stops/N526abb"], ["https://tec.openplanner.team/stops/Cfnsenz1", "https://tec.openplanner.team/stops/N106akb"], ["https://tec.openplanner.team/stops/X636bfa", "https://tec.openplanner.team/stops/X636bfb"], ["https://tec.openplanner.team/stops/H1cd114b", "https://tec.openplanner.team/stops/H1ne146a"], ["https://tec.openplanner.team/stops/LCltrib2", "https://tec.openplanner.team/stops/LThgare2"], ["https://tec.openplanner.team/stops/Cjufour3", "https://tec.openplanner.team/stops/Clostan1"], ["https://tec.openplanner.team/stops/X999ana", "https://tec.openplanner.team/stops/X999asb"], ["https://tec.openplanner.team/stops/H1hc125a", "https://tec.openplanner.team/stops/H1hc126a"], ["https://tec.openplanner.team/stops/N117aaa", "https://tec.openplanner.team/stops/N117bba"], ["https://tec.openplanner.team/stops/LHTeg--2", "https://tec.openplanner.team/stops/LHTeg--5"], ["https://tec.openplanner.team/stops/Bblacim2", "https://tec.openplanner.team/stops/Bblavba1"], ["https://tec.openplanner.team/stops/X786aba", "https://tec.openplanner.team/stops/X786abb"], ["https://tec.openplanner.team/stops/Llgm%C3%A9di2", "https://tec.openplanner.team/stops/Llgnata4"], ["https://tec.openplanner.team/stops/Lvealbe1", "https://tec.openplanner.team/stops/Lvethea2"], ["https://tec.openplanner.team/stops/Llgabat2", "https://tec.openplanner.team/stops/Llgarmu4"], ["https://tec.openplanner.team/stops/N234aba", "https://tec.openplanner.team/stops/N234abb"], ["https://tec.openplanner.team/stops/N141aja", "https://tec.openplanner.team/stops/N146aaa"], ["https://tec.openplanner.team/stops/H4ss155a", "https://tec.openplanner.team/stops/H4ss155b"], ["https://tec.openplanner.team/stops/LeUgb--1", "https://tec.openplanner.team/stops/LkTkabi2"], ["https://tec.openplanner.team/stops/Lvteg--2", "https://tec.openplanner.team/stops/Lvtfrai2"], ["https://tec.openplanner.team/stops/LkEbran1", "https://tec.openplanner.team/stops/LMsbusc1"], ["https://tec.openplanner.team/stops/LSyeg--2", "https://tec.openplanner.team/stops/LTNmont2"], ["https://tec.openplanner.team/stops/Ldifoye1", "https://tec.openplanner.team/stops/Lprorph1"], ["https://tec.openplanner.team/stops/Ccacoup2", "https://tec.openplanner.team/stops/Cerrver4"], ["https://tec.openplanner.team/stops/X612acb", "https://tec.openplanner.team/stops/X612adb"], ["https://tec.openplanner.team/stops/LlNkirc1", "https://tec.openplanner.team/stops/LlNlont1"], ["https://tec.openplanner.team/stops/H1wa144a", "https://tec.openplanner.team/stops/H1wa153a"], ["https://tec.openplanner.team/stops/Bndb4ch2", "https://tec.openplanner.team/stops/Bptblma2"], ["https://tec.openplanner.team/stops/LPRbayb1", "https://tec.openplanner.team/stops/LPRmoul1"], ["https://tec.openplanner.team/stops/Llgpont1", "https://tec.openplanner.team/stops/Llgstap1"], ["https://tec.openplanner.team/stops/Cmychau2", "https://tec.openplanner.team/stops/Cmychpl1"], ["https://tec.openplanner.team/stops/N520aca", "https://tec.openplanner.team/stops/N520ajb"], ["https://tec.openplanner.team/stops/Bgoemho1", "https://tec.openplanner.team/stops/Btiegma1"], ["https://tec.openplanner.team/stops/LBPmili1", "https://tec.openplanner.team/stops/LGLcour4"], ["https://tec.openplanner.team/stops/N548aca", "https://tec.openplanner.team/stops/N548aib"], ["https://tec.openplanner.team/stops/H4ve133a", "https://tec.openplanner.team/stops/H4ve140b"], ["https://tec.openplanner.team/stops/Blemsta1", "https://tec.openplanner.team/stops/Blemsta2"], ["https://tec.openplanner.team/stops/LBBabat1", "https://tec.openplanner.team/stops/LCLscie1"], ["https://tec.openplanner.team/stops/X727aha", "https://tec.openplanner.team/stops/X767aha"], ["https://tec.openplanner.team/stops/X654afa", "https://tec.openplanner.team/stops/X654agb"], ["https://tec.openplanner.team/stops/LSPbalm1", "https://tec.openplanner.team/stops/LSPcomm1"], ["https://tec.openplanner.team/stops/N135axa", "https://tec.openplanner.team/stops/N135axb"], ["https://tec.openplanner.team/stops/LBRbriv1", "https://tec.openplanner.team/stops/LBRpier2"], ["https://tec.openplanner.team/stops/LAYathe1", "https://tec.openplanner.team/stops/LAYpl--2"], ["https://tec.openplanner.team/stops/N145aeb", "https://tec.openplanner.team/stops/N149acb"], ["https://tec.openplanner.team/stops/LBEmich1", "https://tec.openplanner.team/stops/LDLheid2"], ["https://tec.openplanner.team/stops/H5at104a", "https://tec.openplanner.team/stops/H5at116a"], ["https://tec.openplanner.team/stops/X664ala", "https://tec.openplanner.team/stops/X664ana"], ["https://tec.openplanner.team/stops/Bvlvmar1", "https://tec.openplanner.team/stops/Bvlvmar2"], ["https://tec.openplanner.team/stops/H1ms259a", "https://tec.openplanner.team/stops/H1ms314a"], ["https://tec.openplanner.team/stops/H4do105a", "https://tec.openplanner.team/stops/H4do106a"], ["https://tec.openplanner.team/stops/Bvlvbth2", "https://tec.openplanner.team/stops/Bvlvpco1"], ["https://tec.openplanner.team/stops/LMFmerl2", "https://tec.openplanner.team/stops/Lqbecco2"], ["https://tec.openplanner.team/stops/Bblaegl2", "https://tec.openplanner.team/stops/Bblaphi1"], ["https://tec.openplanner.team/stops/N165aaa", "https://tec.openplanner.team/stops/N166aca"], ["https://tec.openplanner.team/stops/Bnivfdu1", "https://tec.openplanner.team/stops/Bnivfdu2"], ["https://tec.openplanner.team/stops/Brsrmon1", "https://tec.openplanner.team/stops/Brsrpmo1"], ["https://tec.openplanner.team/stops/X601aaa", "https://tec.openplanner.team/stops/X601aab"], ["https://tec.openplanner.team/stops/H1as100a", "https://tec.openplanner.team/stops/H1as104b"], ["https://tec.openplanner.team/stops/Lccaigr1", "https://tec.openplanner.team/stops/LRArami1"], ["https://tec.openplanner.team/stops/N506amb", "https://tec.openplanner.team/stops/NL67adb"], ["https://tec.openplanner.team/stops/LLYchpl2", "https://tec.openplanner.team/stops/LLYplac1"], ["https://tec.openplanner.team/stops/LDmcruc1", "https://tec.openplanner.team/stops/LDmhave1"], ["https://tec.openplanner.team/stops/H4ma398a", "https://tec.openplanner.team/stops/H4ma398b"], ["https://tec.openplanner.team/stops/Bmartil2", "https://tec.openplanner.team/stops/Bvlvpco2"], ["https://tec.openplanner.team/stops/N507aac", "https://tec.openplanner.team/stops/N507aba"], ["https://tec.openplanner.team/stops/N531asc", "https://tec.openplanner.team/stops/N561aic"], ["https://tec.openplanner.team/stops/LDOprev1", "https://tec.openplanner.team/stops/LHVgoro2"], ["https://tec.openplanner.team/stops/Cvpplan2", "https://tec.openplanner.team/stops/Cvpsawe2"], ["https://tec.openplanner.team/stops/N532aaa", "https://tec.openplanner.team/stops/N574aeb"], ["https://tec.openplanner.team/stops/Bthsset1", "https://tec.openplanner.team/stops/Bthsset2"], ["https://tec.openplanner.team/stops/N532agb", "https://tec.openplanner.team/stops/N532aja"], ["https://tec.openplanner.team/stops/Bnivcol1", "https://tec.openplanner.team/stops/Bnivgen1"], ["https://tec.openplanner.team/stops/Bquecro2", "https://tec.openplanner.team/stops/Bquepbr1"], ["https://tec.openplanner.team/stops/X754awa", "https://tec.openplanner.team/stops/X754aza"], ["https://tec.openplanner.team/stops/LHVetoi1", "https://tec.openplanner.team/stops/LJAroue2"], ["https://tec.openplanner.team/stops/Cchcase4", "https://tec.openplanner.team/stops/Cchparc3"], ["https://tec.openplanner.team/stops/N528aqa", "https://tec.openplanner.team/stops/N528aqb"], ["https://tec.openplanner.team/stops/Cgrchea2", "https://tec.openplanner.team/stops/Cjochap2"], ["https://tec.openplanner.team/stops/H2lh130a", "https://tec.openplanner.team/stops/H2lh130b"], ["https://tec.openplanner.team/stops/H1qp141b", "https://tec.openplanner.team/stops/H1qp142a"], ["https://tec.openplanner.team/stops/X743afb", "https://tec.openplanner.team/stops/X743agb"], ["https://tec.openplanner.team/stops/Cgzabau1", "https://tec.openplanner.team/stops/Cgzmira1"], ["https://tec.openplanner.team/stops/H2ml113b", "https://tec.openplanner.team/stops/H2ml114a"], ["https://tec.openplanner.team/stops/LLUgend1", "https://tec.openplanner.team/stops/LLUreut2"], ["https://tec.openplanner.team/stops/X371agb", "https://tec.openplanner.team/stops/X371aia"], ["https://tec.openplanner.team/stops/N561aca", "https://tec.openplanner.team/stops/N561aha"], ["https://tec.openplanner.team/stops/LTHcime1", "https://tec.openplanner.team/stops/LTHjevo2"], ["https://tec.openplanner.team/stops/H4ta120a", "https://tec.openplanner.team/stops/H4ta120b"], ["https://tec.openplanner.team/stops/LaApost2", "https://tec.openplanner.team/stops/LVAbuss1"], ["https://tec.openplanner.team/stops/Lmlec--2", "https://tec.openplanner.team/stops/Lmlprie2"], ["https://tec.openplanner.team/stops/H5el105a", "https://tec.openplanner.team/stops/H5rx131b"], ["https://tec.openplanner.team/stops/Llgbavi3", "https://tec.openplanner.team/stops/Llgbavi4"], ["https://tec.openplanner.team/stops/LgRzent2", "https://tec.openplanner.team/stops/LnUcamp2"], ["https://tec.openplanner.team/stops/LBTxhen4", "https://tec.openplanner.team/stops/LHEches1"], ["https://tec.openplanner.team/stops/N201aec", "https://tec.openplanner.team/stops/N201aia"], ["https://tec.openplanner.team/stops/X723aia", "https://tec.openplanner.team/stops/X723ajb"], ["https://tec.openplanner.team/stops/Llgatel1", "https://tec.openplanner.team/stops/Llggee52"], ["https://tec.openplanner.team/stops/Cfocorn2", "https://tec.openplanner.team/stops/Cfowall1"], ["https://tec.openplanner.team/stops/N516aha", "https://tec.openplanner.team/stops/N581abb"], ["https://tec.openplanner.team/stops/LlCgren1", "https://tec.openplanner.team/stops/LlChebs2"], ["https://tec.openplanner.team/stops/LBKmare2", "https://tec.openplanner.team/stops/LBveg--1"], ["https://tec.openplanner.team/stops/LlgOPER4", "https://tec.openplanner.team/stops/LlgR-F1*"], ["https://tec.openplanner.team/stops/LWOmart2", "https://tec.openplanner.team/stops/LWOrout2"], ["https://tec.openplanner.team/stops/N229apb", "https://tec.openplanner.team/stops/N231adb"], ["https://tec.openplanner.team/stops/LHTbeau1", "https://tec.openplanner.team/stops/LHTmc--2"], ["https://tec.openplanner.team/stops/Lhrhenr1", "https://tec.openplanner.team/stops/Lhrsimo2"], ["https://tec.openplanner.team/stops/N106aja", "https://tec.openplanner.team/stops/N106aka"], ["https://tec.openplanner.team/stops/N874aib", "https://tec.openplanner.team/stops/N874ajb"], ["https://tec.openplanner.team/stops/LTPwann1", "https://tec.openplanner.team/stops/LWn24--1"], ["https://tec.openplanner.team/stops/N528avb", "https://tec.openplanner.team/stops/N528awb"], ["https://tec.openplanner.team/stops/Ljhcarr2", "https://tec.openplanner.team/stops/Ljhheus2"], ["https://tec.openplanner.team/stops/X738aab", "https://tec.openplanner.team/stops/X739aba"], ["https://tec.openplanner.team/stops/H4mo146b", "https://tec.openplanner.team/stops/H4mo157b"], ["https://tec.openplanner.team/stops/N516aca", "https://tec.openplanner.team/stops/N516alb"], ["https://tec.openplanner.team/stops/H1po154a", "https://tec.openplanner.team/stops/H1tl122a"], ["https://tec.openplanner.team/stops/Brsgm802", "https://tec.openplanner.team/stops/Brsgpbo2"], ["https://tec.openplanner.team/stops/LVbgend2", "https://tec.openplanner.team/stops/LVbpave1"], ["https://tec.openplanner.team/stops/Llgongr2", "https://tec.openplanner.team/stops/Llgongr3"], ["https://tec.openplanner.team/stops/Cfcbosq1", "https://tec.openplanner.team/stops/Cfcbosq2"], ["https://tec.openplanner.team/stops/LrAmuhl1", "https://tec.openplanner.team/stops/LrAmuhl2"], ["https://tec.openplanner.team/stops/LFCscho1", "https://tec.openplanner.team/stops/LFCscho2"], ["https://tec.openplanner.team/stops/H4ir165a", "https://tec.openplanner.team/stops/H5at108a"], ["https://tec.openplanner.team/stops/Ccimont1", "https://tec.openplanner.team/stops/Ccisolv1"], ["https://tec.openplanner.team/stops/Cgdcent2", "https://tec.openplanner.team/stops/H1be102a"], ["https://tec.openplanner.team/stops/LhSbruc2", "https://tec.openplanner.team/stops/LhSkirc2"], ["https://tec.openplanner.team/stops/X640aib", "https://tec.openplanner.team/stops/X640atb"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LCxc6192"], ["https://tec.openplanner.team/stops/LWepost2", "https://tec.openplanner.team/stops/LWepost3"], ["https://tec.openplanner.team/stops/N522asa", "https://tec.openplanner.team/stops/N522asb"], ["https://tec.openplanner.team/stops/N525aoa", "https://tec.openplanner.team/stops/N525atb"], ["https://tec.openplanner.team/stops/Bneelaa1", "https://tec.openplanner.team/stops/Braccen2"], ["https://tec.openplanner.team/stops/N310aca", "https://tec.openplanner.team/stops/N343aea"], ["https://tec.openplanner.team/stops/X609aba", "https://tec.openplanner.team/stops/X609acb"], ["https://tec.openplanner.team/stops/N565ada", "https://tec.openplanner.team/stops/N565adb"], ["https://tec.openplanner.team/stops/X790aca", "https://tec.openplanner.team/stops/X790ana"], ["https://tec.openplanner.team/stops/Bolgcsa1", "https://tec.openplanner.team/stops/Bolgeva2"], ["https://tec.openplanner.team/stops/Lbococh1", "https://tec.openplanner.team/stops/Lsefore2"], ["https://tec.openplanner.team/stops/H4he106a", "https://tec.openplanner.team/stops/H4ka186a"], ["https://tec.openplanner.team/stops/H4vx363a", "https://tec.openplanner.team/stops/H4vx364d"], ["https://tec.openplanner.team/stops/Lflroms5", "https://tec.openplanner.team/stops/Lropass2"], ["https://tec.openplanner.team/stops/Louduna*", "https://tec.openplanner.team/stops/Louhauf2"], ["https://tec.openplanner.team/stops/X804ala", "https://tec.openplanner.team/stops/X804ana"], ["https://tec.openplanner.team/stops/Bnivbne2", "https://tec.openplanner.team/stops/Bnivhut1"], ["https://tec.openplanner.team/stops/X602arb", "https://tec.openplanner.team/stops/X653add"], ["https://tec.openplanner.team/stops/LAMec--2", "https://tec.openplanner.team/stops/LAMmc--2"], ["https://tec.openplanner.team/stops/Bblacha2", "https://tec.openplanner.team/stops/Bblaelo1"], ["https://tec.openplanner.team/stops/N109aaa", "https://tec.openplanner.team/stops/N110ada"], ["https://tec.openplanner.team/stops/NL72ada", "https://tec.openplanner.team/stops/NL76aeb"], ["https://tec.openplanner.team/stops/LLrgare2", "https://tec.openplanner.team/stops/LLrscie2"], ["https://tec.openplanner.team/stops/LBiberg2", "https://tec.openplanner.team/stops/LDOeg--1"], ["https://tec.openplanner.team/stops/Lglmoul1", "https://tec.openplanner.team/stops/Lglvict1"], ["https://tec.openplanner.team/stops/X919ada", "https://tec.openplanner.team/stops/X979aaa"], ["https://tec.openplanner.team/stops/H4ft138a", "https://tec.openplanner.team/stops/H4ft138b"], ["https://tec.openplanner.team/stops/X619aha", "https://tec.openplanner.team/stops/X619aia"], ["https://tec.openplanner.team/stops/X804bjb", "https://tec.openplanner.team/stops/X804bka"], ["https://tec.openplanner.team/stops/Lfhdone1", "https://tec.openplanner.team/stops/Lseivoz1"], ["https://tec.openplanner.team/stops/LMIcamp1", "https://tec.openplanner.team/stops/LMImc--2"], ["https://tec.openplanner.team/stops/Cchdagn2", "https://tec.openplanner.team/stops/Cchtram2"], ["https://tec.openplanner.team/stops/X743ada", "https://tec.openplanner.team/stops/X743aea"], ["https://tec.openplanner.team/stops/N555aba", "https://tec.openplanner.team/stops/N573ama"], ["https://tec.openplanner.team/stops/LLOcreu2", "https://tec.openplanner.team/stops/LTatult4"], ["https://tec.openplanner.team/stops/LWbboeg1", "https://tec.openplanner.team/stops/X512aia"], ["https://tec.openplanner.team/stops/X316aaa", "https://tec.openplanner.team/stops/X317aab"], ["https://tec.openplanner.team/stops/Bcharce1", "https://tec.openplanner.team/stops/Bvilcim2"], ["https://tec.openplanner.team/stops/LdUkreu3", "https://tec.openplanner.team/stops/LlE02--2"], ["https://tec.openplanner.team/stops/LATdieu1", "https://tec.openplanner.team/stops/LHUfali1"], ["https://tec.openplanner.team/stops/Ljumesa1", "https://tec.openplanner.team/stops/Ljupiet1"], ["https://tec.openplanner.team/stops/N226abb", "https://tec.openplanner.team/stops/N226aca"], ["https://tec.openplanner.team/stops/X624aba", "https://tec.openplanner.team/stops/X624abb"], ["https://tec.openplanner.team/stops/H1te177a", "https://tec.openplanner.team/stops/H1te177b"], ["https://tec.openplanner.team/stops/N536ada", "https://tec.openplanner.team/stops/N536apb"], ["https://tec.openplanner.team/stops/LoDmuhl1", "https://tec.openplanner.team/stops/LoDmuhl2"], ["https://tec.openplanner.team/stops/Brebblo2", "https://tec.openplanner.team/stops/Brebpca1"], ["https://tec.openplanner.team/stops/LEHpech1", "https://tec.openplanner.team/stops/LSShous1"], ["https://tec.openplanner.team/stops/LOdbuis1", "https://tec.openplanner.team/stops/LOdmonu1"], ["https://tec.openplanner.team/stops/N353afb", "https://tec.openplanner.team/stops/N353afd"], ["https://tec.openplanner.team/stops/LHNland1", "https://tec.openplanner.team/stops/LHNtill1"], ["https://tec.openplanner.team/stops/Bernpon1", "https://tec.openplanner.team/stops/Bernrar1"], ["https://tec.openplanner.team/stops/Brsgcfl2", "https://tec.openplanner.team/stops/Buccpes1"], ["https://tec.openplanner.team/stops/N135afb", "https://tec.openplanner.team/stops/N135ajb"], ["https://tec.openplanner.team/stops/Craappa1", "https://tec.openplanner.team/stops/Cracave1"], ["https://tec.openplanner.team/stops/LAVstat2", "https://tec.openplanner.team/stops/LLRvill2"], ["https://tec.openplanner.team/stops/LgRha212", "https://tec.openplanner.team/stops/LgRzent1"], ["https://tec.openplanner.team/stops/Lmimc--1", "https://tec.openplanner.team/stops/Lmimc--2"], ["https://tec.openplanner.team/stops/Ctybaco2", "https://tec.openplanner.team/stops/N137aaa"], ["https://tec.openplanner.team/stops/Bgdhcsh2", "https://tec.openplanner.team/stops/Bgdhpco1"], ["https://tec.openplanner.team/stops/LREsaul1", "https://tec.openplanner.team/stops/LREsaul2"], ["https://tec.openplanner.team/stops/X637aca", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/Bjanegl3", "https://tec.openplanner.team/stops/Bjanegl4"], ["https://tec.openplanner.team/stops/NL68adc", "https://tec.openplanner.team/stops/NL68add"], ["https://tec.openplanner.team/stops/N301aba", "https://tec.openplanner.team/stops/N301abb"], ["https://tec.openplanner.team/stops/Bhenard4", "https://tec.openplanner.team/stops/Bvirrbo1"], ["https://tec.openplanner.team/stops/N547ada", "https://tec.openplanner.team/stops/N547adb"], ["https://tec.openplanner.team/stops/LBvviem3", "https://tec.openplanner.team/stops/LWAeloi2"], ["https://tec.openplanner.team/stops/X636agb", "https://tec.openplanner.team/stops/X636ajb"], ["https://tec.openplanner.team/stops/X561aaa", "https://tec.openplanner.team/stops/X561aea"], ["https://tec.openplanner.team/stops/H4am100a", "https://tec.openplanner.team/stops/H4an106a"], ["https://tec.openplanner.team/stops/H5bs102b", "https://tec.openplanner.team/stops/H5bs102c"], ["https://tec.openplanner.team/stops/Clbbonn3", "https://tec.openplanner.team/stops/Clbchar1"], ["https://tec.openplanner.team/stops/Ccinali1", "https://tec.openplanner.team/stops/Cmllait1"], ["https://tec.openplanner.team/stops/H4lh120b", "https://tec.openplanner.team/stops/H4lh161b"], ["https://tec.openplanner.team/stops/Bhtibru1", "https://tec.openplanner.team/stops/Bhticbr2"], ["https://tec.openplanner.team/stops/N535aeb", "https://tec.openplanner.team/stops/N535afb"], ["https://tec.openplanner.team/stops/H1qy131b", "https://tec.openplanner.team/stops/H1qy132b"], ["https://tec.openplanner.team/stops/LBSnouw1", "https://tec.openplanner.team/stops/LRGcana1"], ["https://tec.openplanner.team/stops/Bneedia2", "https://tec.openplanner.team/stops/Bneeegl1"], ["https://tec.openplanner.team/stops/X919aab", "https://tec.openplanner.team/stops/X919afb"], ["https://tec.openplanner.team/stops/Loucham2", "https://tec.openplanner.team/stops/Lougare1"], ["https://tec.openplanner.team/stops/H5bl117c", "https://tec.openplanner.team/stops/H5bl144a"], ["https://tec.openplanner.team/stops/LgAdorf1", "https://tec.openplanner.team/stops/LsVbs--*"], ["https://tec.openplanner.team/stops/N423afa", "https://tec.openplanner.team/stops/N423agb"], ["https://tec.openplanner.team/stops/Cragill1", "https://tec.openplanner.team/stops/Cramadi2"], ["https://tec.openplanner.team/stops/Bobacar2", "https://tec.openplanner.team/stops/Brosegl2"], ["https://tec.openplanner.team/stops/X715ada", "https://tec.openplanner.team/stops/X715aea"], ["https://tec.openplanner.team/stops/X921amb", "https://tec.openplanner.team/stops/X921apa"], ["https://tec.openplanner.team/stops/LLt43--1", "https://tec.openplanner.team/stops/LLt43--2"], ["https://tec.openplanner.team/stops/Cfcgrat1", "https://tec.openplanner.team/stops/Cfcleco1"], ["https://tec.openplanner.team/stops/X728adb", "https://tec.openplanner.team/stops/X729aac"], ["https://tec.openplanner.team/stops/Bhalcbr1", "https://tec.openplanner.team/stops/Bhalvel1"], ["https://tec.openplanner.team/stops/Lghalle1", "https://tec.openplanner.team/stops/Lghpier1"], ["https://tec.openplanner.team/stops/Cfabnat1", "https://tec.openplanner.team/stops/Cfarcam2"], ["https://tec.openplanner.team/stops/X660aea", "https://tec.openplanner.team/stops/X660aeb"], ["https://tec.openplanner.team/stops/LBkgrae2", "https://tec.openplanner.team/stops/LMNpt--1"], ["https://tec.openplanner.team/stops/LREheyd1", "https://tec.openplanner.team/stops/LREheyd2"], ["https://tec.openplanner.team/stops/N201alb", "https://tec.openplanner.team/stops/N201ama"], ["https://tec.openplanner.team/stops/LSkwarf2", "https://tec.openplanner.team/stops/LSkwarf3"], ["https://tec.openplanner.team/stops/Bbcoeca1", "https://tec.openplanner.team/stops/H3br112b"], ["https://tec.openplanner.team/stops/X723agb", "https://tec.openplanner.team/stops/X723aha"], ["https://tec.openplanner.team/stops/LLrelec1", "https://tec.openplanner.team/stops/LLrvill1"], ["https://tec.openplanner.team/stops/Buccdef2", "https://tec.openplanner.team/stops/Buccgob1"], ["https://tec.openplanner.team/stops/Lgdstoc2", "https://tec.openplanner.team/stops/LXHfond2"], ["https://tec.openplanner.team/stops/N150abb", "https://tec.openplanner.team/stops/N150ada"], ["https://tec.openplanner.team/stops/H4tg170a", "https://tec.openplanner.team/stops/H4tg170b"], ["https://tec.openplanner.team/stops/N535ahb", "https://tec.openplanner.team/stops/N564acb"], ["https://tec.openplanner.team/stops/H1wa137b", "https://tec.openplanner.team/stops/H1wa164a"], ["https://tec.openplanner.team/stops/X897aob", "https://tec.openplanner.team/stops/X897aoc"], ["https://tec.openplanner.team/stops/H4do107a", "https://tec.openplanner.team/stops/H4do107b"], ["https://tec.openplanner.team/stops/N202aca", "https://tec.openplanner.team/stops/N254aha"], ["https://tec.openplanner.team/stops/N111aaa", "https://tec.openplanner.team/stops/N111aab"], ["https://tec.openplanner.team/stops/Cmitrie2", "https://tec.openplanner.team/stops/Csequew2"], ["https://tec.openplanner.team/stops/Ljudeme1", "https://tec.openplanner.team/stops/Ljuhava2"], ["https://tec.openplanner.team/stops/X362aaa", "https://tec.openplanner.team/stops/X362aab"], ["https://tec.openplanner.team/stops/X674aab", "https://tec.openplanner.team/stops/X675aab"], ["https://tec.openplanner.team/stops/Lsebrun3", "https://tec.openplanner.team/stops/Lsepapi3"], ["https://tec.openplanner.team/stops/X398afa", "https://tec.openplanner.team/stops/X999acb"], ["https://tec.openplanner.team/stops/N501dvb", "https://tec.openplanner.team/stops/N501geb"], ["https://tec.openplanner.team/stops/Bdvm4ca1", "https://tec.openplanner.team/stops/Bdvmtve2"], ["https://tec.openplanner.team/stops/N425aeb", "https://tec.openplanner.team/stops/N425afb"], ["https://tec.openplanner.team/stops/N560aba", "https://tec.openplanner.team/stops/N560acb"], ["https://tec.openplanner.team/stops/Csurela1", "https://tec.openplanner.team/stops/Csygare3"], ["https://tec.openplanner.team/stops/Lticoq-2", "https://tec.openplanner.team/stops/Ltiplat2"], ["https://tec.openplanner.team/stops/Bwancal3", "https://tec.openplanner.team/stops/Bwancal4"], ["https://tec.openplanner.team/stops/Cgofbru2", "https://tec.openplanner.team/stops/Cgopier2"], ["https://tec.openplanner.team/stops/Bvirpla1", "https://tec.openplanner.team/stops/Bvirpos1"], ["https://tec.openplanner.team/stops/Lmntast2", "https://tec.openplanner.team/stops/Lsmdams2"], ["https://tec.openplanner.team/stops/H2hl112a", "https://tec.openplanner.team/stops/H2hl113a"], ["https://tec.openplanner.team/stops/H1lm105b", "https://tec.openplanner.team/stops/H1sy145a"], ["https://tec.openplanner.team/stops/N512agd", "https://tec.openplanner.team/stops/NL57aeb"], ["https://tec.openplanner.team/stops/X725aff", "https://tec.openplanner.team/stops/X725afh"], ["https://tec.openplanner.team/stops/Lghfors1", "https://tec.openplanner.team/stops/Lghgoll1"], ["https://tec.openplanner.team/stops/LFMrijk1", "https://tec.openplanner.team/stops/LFMrijk2"], ["https://tec.openplanner.team/stops/Bchgvil2", "https://tec.openplanner.team/stops/Bdvminc2"], ["https://tec.openplanner.team/stops/X750aub", "https://tec.openplanner.team/stops/X750ava"], ["https://tec.openplanner.team/stops/N390afb", "https://tec.openplanner.team/stops/X349aaa"], ["https://tec.openplanner.team/stops/Cvvpotv1", "https://tec.openplanner.team/stops/Cvvpotv2"], ["https://tec.openplanner.team/stops/H1wa135b", "https://tec.openplanner.team/stops/H1wa137a"], ["https://tec.openplanner.team/stops/N147afa", "https://tec.openplanner.team/stops/N147afb"], ["https://tec.openplanner.team/stops/H5bl119d", "https://tec.openplanner.team/stops/H5qu148b"], ["https://tec.openplanner.team/stops/LLxmonu1", "https://tec.openplanner.team/stops/LVItcm-1"], ["https://tec.openplanner.team/stops/LhGcasi2", "https://tec.openplanner.team/stops/LhGfrie1"], ["https://tec.openplanner.team/stops/LBLvici1", "https://tec.openplanner.team/stops/LTrrich1"], ["https://tec.openplanner.team/stops/H2ma205b", "https://tec.openplanner.team/stops/H2ma209a"], ["https://tec.openplanner.team/stops/LHGbeur2", "https://tec.openplanner.team/stops/LHGtige2"], ["https://tec.openplanner.team/stops/N533alf", "https://tec.openplanner.team/stops/N533anb"], ["https://tec.openplanner.team/stops/Brebras1", "https://tec.openplanner.team/stops/Brebvic1"], ["https://tec.openplanner.team/stops/Lbocarr2", "https://tec.openplanner.team/stops/Lbogonh2"], ["https://tec.openplanner.team/stops/X602aba", "https://tec.openplanner.team/stops/X604ama"], ["https://tec.openplanner.team/stops/X670ada", "https://tec.openplanner.team/stops/X670akb"], ["https://tec.openplanner.team/stops/LHYec--2", "https://tec.openplanner.team/stops/LHYnoid1"], ["https://tec.openplanner.team/stops/Cjualtr1", "https://tec.openplanner.team/stops/Cjucopp2"], ["https://tec.openplanner.team/stops/X921aca", "https://tec.openplanner.team/stops/X921ana"], ["https://tec.openplanner.team/stops/NL68aac", "https://tec.openplanner.team/stops/NL68aca"], ["https://tec.openplanner.team/stops/N211azb", "https://tec.openplanner.team/stops/N211bab"], ["https://tec.openplanner.team/stops/H4bn100b", "https://tec.openplanner.team/stops/H4bn101a"], ["https://tec.openplanner.team/stops/Cmlsart1", "https://tec.openplanner.team/stops/Cmlstni1"], ["https://tec.openplanner.team/stops/Btubdeh1", "https://tec.openplanner.team/stops/Btubmon1"], ["https://tec.openplanner.team/stops/N501hva", "https://tec.openplanner.team/stops/N501iga"], ["https://tec.openplanner.team/stops/X636amb", "https://tec.openplanner.team/stops/X636bja"], ["https://tec.openplanner.team/stops/N121aca", "https://tec.openplanner.team/stops/N121aib"], ["https://tec.openplanner.team/stops/X947acb", "https://tec.openplanner.team/stops/X948aka"], ["https://tec.openplanner.team/stops/X666aca", "https://tec.openplanner.team/stops/X666ala"], ["https://tec.openplanner.team/stops/LBVlamo1", "https://tec.openplanner.team/stops/LRcsilo2"], ["https://tec.openplanner.team/stops/X359aib", "https://tec.openplanner.team/stops/X858aha"], ["https://tec.openplanner.team/stops/H1do111a", "https://tec.openplanner.team/stops/H1do111b"], ["https://tec.openplanner.team/stops/Lougoff1", "https://tec.openplanner.team/stops/Louwuid1"], ["https://tec.openplanner.team/stops/Lcheg--1", "https://tec.openplanner.team/stops/Lchpniv1"], ["https://tec.openplanner.team/stops/LHCandr2", "https://tec.openplanner.team/stops/LHChomb2"], ["https://tec.openplanner.team/stops/X342afb", "https://tec.openplanner.team/stops/X362aca"], ["https://tec.openplanner.team/stops/LFEplac1", "https://tec.openplanner.team/stops/X597amb"], ["https://tec.openplanner.team/stops/N536acb", "https://tec.openplanner.team/stops/N536aga"], ["https://tec.openplanner.team/stops/X685ama", "https://tec.openplanner.team/stops/X685apa"], ["https://tec.openplanner.team/stops/H1sp354a", "https://tec.openplanner.team/stops/H1sp355a"], ["https://tec.openplanner.team/stops/H2sb223b", "https://tec.openplanner.team/stops/H2sb238b"], ["https://tec.openplanner.team/stops/Bnivcol2", "https://tec.openplanner.team/stops/Bnivgen1"], ["https://tec.openplanner.team/stops/Ckevela2", "https://tec.openplanner.team/stops/Cvstouv1"], ["https://tec.openplanner.team/stops/LJEchat3", "https://tec.openplanner.team/stops/LJEpaqu1"], ["https://tec.openplanner.team/stops/Lhuecol1", "https://tec.openplanner.team/stops/Lhurouh2"], ["https://tec.openplanner.team/stops/Lflfort*", "https://tec.openplanner.team/stops/Lflpaeu1"], ["https://tec.openplanner.team/stops/LSogare1", "https://tec.openplanner.team/stops/LSogare2"], ["https://tec.openplanner.team/stops/Bnil3fo1", "https://tec.openplanner.team/stops/Bnilpie1"], ["https://tec.openplanner.team/stops/Lfhborg1", "https://tec.openplanner.team/stops/Lfhdone2"], ["https://tec.openplanner.team/stops/X661afa", "https://tec.openplanner.team/stops/X661aub"], ["https://tec.openplanner.team/stops/H1ms301a", "https://tec.openplanner.team/stops/H1ms901a"], ["https://tec.openplanner.team/stops/Cairous1", "https://tec.openplanner.team/stops/N543bba"], ["https://tec.openplanner.team/stops/N577agb", "https://tec.openplanner.team/stops/N577aib"], ["https://tec.openplanner.team/stops/Bhaleur1", "https://tec.openplanner.team/stops/Bhalomo2"], ["https://tec.openplanner.team/stops/N151ajd", "https://tec.openplanner.team/stops/N152aaa"], ["https://tec.openplanner.team/stops/LBscasi1", "https://tec.openplanner.team/stops/LBsfer-2"], ["https://tec.openplanner.team/stops/Lgrfalc1", "https://tec.openplanner.team/stops/Llgstap1"], ["https://tec.openplanner.team/stops/LPUalbe1", "https://tec.openplanner.team/stops/LPUlecl1"], ["https://tec.openplanner.team/stops/LHHgare2", "https://tec.openplanner.team/stops/LHHpt--4"], ["https://tec.openplanner.team/stops/LSPsauv1", "https://tec.openplanner.team/stops/LSPsous1"], ["https://tec.openplanner.team/stops/H2sb226b", "https://tec.openplanner.team/stops/H2sb228d"], ["https://tec.openplanner.team/stops/H4ft132a", "https://tec.openplanner.team/stops/H4ft137a"], ["https://tec.openplanner.team/stops/X725awa", "https://tec.openplanner.team/stops/X725bea"], ["https://tec.openplanner.team/stops/H4av102c", "https://tec.openplanner.team/stops/H4av107b"], ["https://tec.openplanner.team/stops/LTPnoup2", "https://tec.openplanner.team/stops/LTPpres1"], ["https://tec.openplanner.team/stops/Llghaut2", "https://tec.openplanner.team/stops/Llglefe2"], ["https://tec.openplanner.team/stops/LSPecho2", "https://tec.openplanner.team/stops/LSPmart2"], ["https://tec.openplanner.team/stops/H4ka181a", "https://tec.openplanner.team/stops/H4ka191b"], ["https://tec.openplanner.team/stops/Louvira1", "https://tec.openplanner.team/stops/Louvira2"], ["https://tec.openplanner.team/stops/H4eq123b", "https://tec.openplanner.team/stops/H4ob109b"], ["https://tec.openplanner.team/stops/LrAneud2", "https://tec.openplanner.team/stops/LrApley1"], ["https://tec.openplanner.team/stops/N343aob", "https://tec.openplanner.team/stops/N350ada"], ["https://tec.openplanner.team/stops/H4pl122b", "https://tec.openplanner.team/stops/H4pl137a"], ["https://tec.openplanner.team/stops/Lscbour1", "https://tec.openplanner.team/stops/Lscpamp2"], ["https://tec.openplanner.team/stops/H1je220a", "https://tec.openplanner.team/stops/H1je220d"], ["https://tec.openplanner.team/stops/H4ty346a", "https://tec.openplanner.team/stops/H4ty383a"], ["https://tec.openplanner.team/stops/X901anb", "https://tec.openplanner.team/stops/X901bja"], ["https://tec.openplanner.team/stops/LVTeg--2", "https://tec.openplanner.team/stops/LVTtrou1"], ["https://tec.openplanner.team/stops/N501kuc", "https://tec.openplanner.team/stops/N501kva"], ["https://tec.openplanner.team/stops/LFHsucr1", "https://tec.openplanner.team/stops/LMOfrel2"], ["https://tec.openplanner.team/stops/Bfelbri3", "https://tec.openplanner.team/stops/Bfelequ2"], ["https://tec.openplanner.team/stops/N571agb", "https://tec.openplanner.team/stops/N571aja"], ["https://tec.openplanner.team/stops/Bnodtir1", "https://tec.openplanner.team/stops/Bnodtir2"], ["https://tec.openplanner.team/stops/Lbrptbr3", "https://tec.openplanner.team/stops/Llgmara2"], ["https://tec.openplanner.team/stops/Lfhmarn2", "https://tec.openplanner.team/stops/Lmlcite*"], ["https://tec.openplanner.team/stops/LFRbaro1", "https://tec.openplanner.team/stops/LFRbaro2"], ["https://tec.openplanner.team/stops/N230aha", "https://tec.openplanner.team/stops/N231aca"], ["https://tec.openplanner.team/stops/H5bl123a", "https://tec.openplanner.team/stops/H5bl142a"], ["https://tec.openplanner.team/stops/Bhvlbet1", "https://tec.openplanner.team/stops/Bmsgbay1"], ["https://tec.openplanner.team/stops/LnErech2", "https://tec.openplanner.team/stops/LrEfeck2"], ["https://tec.openplanner.team/stops/Lvehv--1", "https://tec.openplanner.team/stops/Lvepala7"], ["https://tec.openplanner.team/stops/Ccstord1", "https://tec.openplanner.team/stops/Ccstord2"], ["https://tec.openplanner.team/stops/X644aaa", "https://tec.openplanner.team/stops/X644acb"], ["https://tec.openplanner.team/stops/X896abb", "https://tec.openplanner.team/stops/X896acb"], ["https://tec.openplanner.team/stops/N501fty", "https://tec.openplanner.team/stops/N501fyc"], ["https://tec.openplanner.team/stops/X626ala", "https://tec.openplanner.team/stops/X687aca"], ["https://tec.openplanner.team/stops/Ljuinte1", "https://tec.openplanner.team/stops/Ljuprev1"], ["https://tec.openplanner.team/stops/Cblsall2", "https://tec.openplanner.team/stops/Cslbhau2"], ["https://tec.openplanner.team/stops/Llgdepo2", "https://tec.openplanner.team/stops/Llgmagh2"], ["https://tec.openplanner.team/stops/Brsgm802", "https://tec.openplanner.team/stops/Bwatmch2"], ["https://tec.openplanner.team/stops/LHrcarr1", "https://tec.openplanner.team/stops/LHrkin-1"], ["https://tec.openplanner.team/stops/Cfnsenz1", "https://tec.openplanner.team/stops/Csiegli2"], ["https://tec.openplanner.team/stops/LhGbahn3", "https://tec.openplanner.team/stops/LhGbahn4"], ["https://tec.openplanner.team/stops/LCSgend2", "https://tec.openplanner.team/stops/LSGsurf1"], ["https://tec.openplanner.team/stops/Lhuleke2", "https://tec.openplanner.team/stops/Lvewaut2"], ["https://tec.openplanner.team/stops/Ccucroi2", "https://tec.openplanner.team/stops/Ccutill2"], ["https://tec.openplanner.team/stops/H4wa151a", "https://tec.openplanner.team/stops/H4wa159b"], ["https://tec.openplanner.team/stops/Lfhhosp1", "https://tec.openplanner.team/stops/Lfhhosp2"], ["https://tec.openplanner.team/stops/H4es108b", "https://tec.openplanner.team/stops/H4ev125a"], ["https://tec.openplanner.team/stops/H1ha188b", "https://tec.openplanner.team/stops/H1ha196b"], ["https://tec.openplanner.team/stops/H1le118b", "https://tec.openplanner.team/stops/H1ol143a"], ["https://tec.openplanner.team/stops/H2an101b", "https://tec.openplanner.team/stops/H2an104b"], ["https://tec.openplanner.team/stops/Bvirpla2", "https://tec.openplanner.team/stops/Bvirpos1"], ["https://tec.openplanner.team/stops/Bmonbri1", "https://tec.openplanner.team/stops/Bnivbau2"], ["https://tec.openplanner.team/stops/Lsehya-3", "https://tec.openplanner.team/stops/Lsemaqu2"], ["https://tec.openplanner.team/stops/N121afb", "https://tec.openplanner.team/stops/N121aga"], ["https://tec.openplanner.team/stops/N564abb", "https://tec.openplanner.team/stops/N564adb"], ["https://tec.openplanner.team/stops/Cthbifu2", "https://tec.openplanner.team/stops/Cthgend1"], ["https://tec.openplanner.team/stops/N329aab", "https://tec.openplanner.team/stops/N365abb"], ["https://tec.openplanner.team/stops/N501hfa", "https://tec.openplanner.team/stops/N501mia"], ["https://tec.openplanner.team/stops/LFMkrut1", "https://tec.openplanner.team/stops/LFPkerk2"], ["https://tec.openplanner.team/stops/LHTbonn2", "https://tec.openplanner.team/stops/LHTdelh2"], ["https://tec.openplanner.team/stops/X758aaa", "https://tec.openplanner.team/stops/X758aab"], ["https://tec.openplanner.team/stops/H4to135a", "https://tec.openplanner.team/stops/H4to135b"], ["https://tec.openplanner.team/stops/N141aaa", "https://tec.openplanner.team/stops/X611aca"], ["https://tec.openplanner.team/stops/X663asa", "https://tec.openplanner.team/stops/X663awb"], ["https://tec.openplanner.team/stops/H1ms924a", "https://tec.openplanner.team/stops/H1ms925a"], ["https://tec.openplanner.team/stops/Cdogrro1", "https://tec.openplanner.team/stops/Ctufleu1"], ["https://tec.openplanner.team/stops/X770aba", "https://tec.openplanner.team/stops/X771aib"], ["https://tec.openplanner.team/stops/N203aaa", "https://tec.openplanner.team/stops/N203afa"], ["https://tec.openplanner.team/stops/N513aeb", "https://tec.openplanner.team/stops/N513bfa"], ["https://tec.openplanner.team/stops/X753aaa", "https://tec.openplanner.team/stops/X753aca"], ["https://tec.openplanner.team/stops/Cmecime2", "https://tec.openplanner.team/stops/Cmestas2"], ["https://tec.openplanner.team/stops/Bsomtnd1", "https://tec.openplanner.team/stops/N584alb"], ["https://tec.openplanner.team/stops/X662abb", "https://tec.openplanner.team/stops/X662asa"], ["https://tec.openplanner.team/stops/LpEzoll*", "https://tec.openplanner.team/stops/LrTbahn2"], ["https://tec.openplanner.team/stops/Lsccdor2", "https://tec.openplanner.team/stops/Lsccime1"], ["https://tec.openplanner.team/stops/N506arb", "https://tec.openplanner.team/stops/N506ata"], ["https://tec.openplanner.team/stops/X804bka", "https://tec.openplanner.team/stops/X804bya"], ["https://tec.openplanner.team/stops/LFTec--1", "https://tec.openplanner.team/stops/LTNsarl2"], ["https://tec.openplanner.team/stops/Bhevl3l1", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://tec.openplanner.team/stops/H1gn152b", "https://tec.openplanner.team/stops/H1mq200a"], ["https://tec.openplanner.team/stops/Cfrcham1", "https://tec.openplanner.team/stops/Cmeptmi6"], ["https://tec.openplanner.team/stops/N538afa", "https://tec.openplanner.team/stops/N538aga"], ["https://tec.openplanner.team/stops/LCelabi2", "https://tec.openplanner.team/stops/LVMrout2"], ["https://tec.openplanner.team/stops/LLmcarr2", "https://tec.openplanner.team/stops/LLmvand2"], ["https://tec.openplanner.team/stops/LHanest1", "https://tec.openplanner.team/stops/LOurena1"], ["https://tec.openplanner.team/stops/LFPzwaa2", "https://tec.openplanner.team/stops/LVu03--1"], ["https://tec.openplanner.team/stops/X806aba", "https://tec.openplanner.team/stops/X806aka"], ["https://tec.openplanner.team/stops/H4qu230b", "https://tec.openplanner.team/stops/H4qu230c"], ["https://tec.openplanner.team/stops/H4ha169a", "https://tec.openplanner.team/stops/H4ha169b"], ["https://tec.openplanner.team/stops/Lhracec1", "https://tec.openplanner.team/stops/Lhracec2"], ["https://tec.openplanner.team/stops/H1ho144a", "https://tec.openplanner.team/stops/H1ho147b"], ["https://tec.openplanner.team/stops/N503ada", "https://tec.openplanner.team/stops/N503aha"], ["https://tec.openplanner.team/stops/Crefont2", "https://tec.openplanner.team/stops/Creoudo1"], ["https://tec.openplanner.team/stops/Cradado1", "https://tec.openplanner.team/stops/Cradest1"], ["https://tec.openplanner.team/stops/N120amb", "https://tec.openplanner.team/stops/N120ana"], ["https://tec.openplanner.team/stops/Bquebuc1", "https://tec.openplanner.team/stops/Bquepbr1"], ["https://tec.openplanner.team/stops/LBQmaye1", "https://tec.openplanner.team/stops/LOCponc*"], ["https://tec.openplanner.team/stops/X809aaa", "https://tec.openplanner.team/stops/X811aaa"], ["https://tec.openplanner.team/stops/H4ra159b", "https://tec.openplanner.team/stops/H4tu171b"], ["https://tec.openplanner.team/stops/Cjuhden2", "https://tec.openplanner.team/stops/Cjupllo1"], ["https://tec.openplanner.team/stops/Lfhgare2", "https://tec.openplanner.team/stops/Livgera3"], ["https://tec.openplanner.team/stops/X695aab", "https://tec.openplanner.team/stops/X695aia"], ["https://tec.openplanner.team/stops/X638aca", "https://tec.openplanner.team/stops/X638acb"], ["https://tec.openplanner.team/stops/Cmlbras2", "https://tec.openplanner.team/stops/Cmlhaie1"], ["https://tec.openplanner.team/stops/X739aeb", "https://tec.openplanner.team/stops/X739afb"], ["https://tec.openplanner.team/stops/Cjulucq1", "https://tec.openplanner.team/stops/Cjulucq2"], ["https://tec.openplanner.team/stops/LCTgare3", "https://tec.openplanner.team/stops/LCTgare4"], ["https://tec.openplanner.team/stops/X784ada", "https://tec.openplanner.team/stops/X784adb"], ["https://tec.openplanner.team/stops/Ctmmonu2", "https://tec.openplanner.team/stops/Ctmwaut2"], ["https://tec.openplanner.team/stops/H1mk109a", "https://tec.openplanner.team/stops/H1mk111b"], ["https://tec.openplanner.team/stops/Lbralbe1", "https://tec.openplanner.team/stops/Llgpoli1"], ["https://tec.openplanner.team/stops/H4br110a", "https://tec.openplanner.team/stops/H4pe127a"], ["https://tec.openplanner.team/stops/H1ch142b", "https://tec.openplanner.team/stops/H1ch143a"], ["https://tec.openplanner.team/stops/X942aca", "https://tec.openplanner.team/stops/X942acb"], ["https://tec.openplanner.team/stops/Lpelouh1", "https://tec.openplanner.team/stops/Lpelouh2"], ["https://tec.openplanner.team/stops/Bcerldo1", "https://tec.openplanner.team/stops/Bcerldo2"], ["https://tec.openplanner.team/stops/LGOcana2", "https://tec.openplanner.team/stops/LGOdelv2"], ["https://tec.openplanner.team/stops/Bgnpegl2", "https://tec.openplanner.team/stops/Bgnpjbe1"], ["https://tec.openplanner.team/stops/H4fl114a", "https://tec.openplanner.team/stops/H4wi168b"], ["https://tec.openplanner.team/stops/Bmrshan1", "https://tec.openplanner.team/stops/Cgnpass2"], ["https://tec.openplanner.team/stops/Lvegc-1*", "https://tec.openplanner.team/stops/Lvegc--3"], ["https://tec.openplanner.team/stops/LWNberg2", "https://tec.openplanner.team/stops/LWNcime1"], ["https://tec.openplanner.team/stops/H4ir164b", "https://tec.openplanner.team/stops/H4og215a"], ["https://tec.openplanner.team/stops/X601abb", "https://tec.openplanner.team/stops/X601aeb"], ["https://tec.openplanner.team/stops/Bhalkrk1", "https://tec.openplanner.team/stops/Bhalwat2"], ["https://tec.openplanner.team/stops/H1ms252c", "https://tec.openplanner.team/stops/H1ms940a"], ["https://tec.openplanner.team/stops/N512aba", "https://tec.openplanner.team/stops/N512aid"], ["https://tec.openplanner.team/stops/X822acb", "https://tec.openplanner.team/stops/X822ala"], ["https://tec.openplanner.team/stops/Lbocomm1", "https://tec.openplanner.team/stops/Lbotilf2"], ["https://tec.openplanner.team/stops/N525ata", "https://tec.openplanner.team/stops/N526acb"], ["https://tec.openplanner.team/stops/N211aka", "https://tec.openplanner.team/stops/N211akb"], ["https://tec.openplanner.team/stops/Ladlaur2", "https://tec.openplanner.team/stops/Ladneuv1"], ["https://tec.openplanner.team/stops/X670apa", "https://tec.openplanner.team/stops/X670apb"], ["https://tec.openplanner.team/stops/Buccpin1", "https://tec.openplanner.team/stops/Buccpor1"], ["https://tec.openplanner.team/stops/H4lz158a", "https://tec.openplanner.team/stops/H4lz158b"], ["https://tec.openplanner.team/stops/Lwaelme1", "https://tec.openplanner.team/stops/Lwaelme2"], ["https://tec.openplanner.team/stops/Bmalcar1", "https://tec.openplanner.team/stops/Bmalper2"], ["https://tec.openplanner.team/stops/LLR4bra1", "https://tec.openplanner.team/stops/LLReg--1"], ["https://tec.openplanner.team/stops/Lhrdelv2", "https://tec.openplanner.team/stops/Lhrhurb2"], ["https://tec.openplanner.team/stops/Bwatbce1", "https://tec.openplanner.team/stops/Bwatnrs2"], ["https://tec.openplanner.team/stops/Bmartil1", "https://tec.openplanner.team/stops/Csa4mai1"], ["https://tec.openplanner.team/stops/LMtcent1", "https://tec.openplanner.team/stops/LMtcent2"], ["https://tec.openplanner.team/stops/N569aia", "https://tec.openplanner.team/stops/N569ajb"], ["https://tec.openplanner.team/stops/LHHecol2", "https://tec.openplanner.team/stops/LHHplac2"], ["https://tec.openplanner.team/stops/Louairl1", "https://tec.openplanner.team/stops/Louairl2"], ["https://tec.openplanner.team/stops/X943aca", "https://tec.openplanner.team/stops/X943aga"], ["https://tec.openplanner.team/stops/H1hr127b", "https://tec.openplanner.team/stops/H1to153a"], ["https://tec.openplanner.team/stops/LrUbrac1", "https://tec.openplanner.team/stops/LrUkult1"], ["https://tec.openplanner.team/stops/Cgxprad3", "https://tec.openplanner.team/stops/Cgxprad4"], ["https://tec.openplanner.team/stops/N425aca", "https://tec.openplanner.team/stops/N425ada"], ["https://tec.openplanner.team/stops/Lan14ve1", "https://tec.openplanner.team/stops/Llgnaim2"], ["https://tec.openplanner.team/stops/H1po139a", "https://tec.openplanner.team/stops/H1si151a"], ["https://tec.openplanner.team/stops/N506afa", "https://tec.openplanner.team/stops/N537aka"], ["https://tec.openplanner.team/stops/LHUeuro2", "https://tec.openplanner.team/stops/LHUlebe3"], ["https://tec.openplanner.team/stops/Bgrhhot2", "https://tec.openplanner.team/stops/Bnvmfba2"], ["https://tec.openplanner.team/stops/Lbeloui1", "https://tec.openplanner.team/stops/Lqbecco2"], ["https://tec.openplanner.team/stops/LSuusin2", "https://tec.openplanner.team/stops/Lvepoud1"], ["https://tec.openplanner.team/stops/LAYnias1", "https://tec.openplanner.team/stops/LAYnias2"], ["https://tec.openplanner.team/stops/Lscbarg1", "https://tec.openplanner.team/stops/Lscstan1"], ["https://tec.openplanner.team/stops/N135bda", "https://tec.openplanner.team/stops/N135bdb"], ["https://tec.openplanner.team/stops/LGlcite1", "https://tec.openplanner.team/stops/LHZcouv2"], ["https://tec.openplanner.team/stops/H5el100b", "https://tec.openplanner.team/stops/H5fl100a"], ["https://tec.openplanner.team/stops/N534agb", "https://tec.openplanner.team/stops/N534caa"], ["https://tec.openplanner.team/stops/N548adb", "https://tec.openplanner.team/stops/N548aka"], ["https://tec.openplanner.team/stops/N543coa", "https://tec.openplanner.team/stops/N543cqb"], ["https://tec.openplanner.team/stops/Cfogaul1", "https://tec.openplanner.team/stops/Cfometr1"], ["https://tec.openplanner.team/stops/Crccarr1", "https://tec.openplanner.team/stops/Crclorc2"], ["https://tec.openplanner.team/stops/N535aib", "https://tec.openplanner.team/stops/N535ajb"], ["https://tec.openplanner.team/stops/Cmerued1", "https://tec.openplanner.team/stops/Cmerued2"], ["https://tec.openplanner.team/stops/H1cd111a", "https://tec.openplanner.team/stops/H1cd111c"], ["https://tec.openplanner.team/stops/N308apa", "https://tec.openplanner.team/stops/N308bib"], ["https://tec.openplanner.team/stops/N154aaa", "https://tec.openplanner.team/stops/N154aba"], ["https://tec.openplanner.team/stops/X947aab", "https://tec.openplanner.team/stops/X947abb"], ["https://tec.openplanner.team/stops/Cmitrie1", "https://tec.openplanner.team/stops/Cmitrie2"], ["https://tec.openplanner.team/stops/NC11ala", "https://tec.openplanner.team/stops/NC11alb"], ["https://tec.openplanner.team/stops/Lvecite1", "https://tec.openplanner.team/stops/Lvecite3"], ["https://tec.openplanner.team/stops/Ljexhav3", "https://tec.openplanner.team/stops/Ljexhav4"], ["https://tec.openplanner.team/stops/N343abb", "https://tec.openplanner.team/stops/N343ala"], ["https://tec.openplanner.team/stops/H4be104b", "https://tec.openplanner.team/stops/H4be104d"], ["https://tec.openplanner.team/stops/LSceg--3", "https://tec.openplanner.team/stops/LVTeg--2"], ["https://tec.openplanner.team/stops/N505aab", "https://tec.openplanner.team/stops/N505aeb"], ["https://tec.openplanner.team/stops/X721apb", "https://tec.openplanner.team/stops/X721aqa"], ["https://tec.openplanner.team/stops/N349ada", "https://tec.openplanner.team/stops/N349adb"], ["https://tec.openplanner.team/stops/Ccigene1", "https://tec.openplanner.team/stops/Ccigene2"], ["https://tec.openplanner.team/stops/Btubcvi1", "https://tec.openplanner.team/stops/Btubegy2"], ["https://tec.openplanner.team/stops/LSPbass1", "https://tec.openplanner.team/stops/LSPpelz1"], ["https://tec.openplanner.team/stops/X923aia", "https://tec.openplanner.team/stops/X923ara"], ["https://tec.openplanner.team/stops/Cgymast1", "https://tec.openplanner.team/stops/Cjuhame3"], ["https://tec.openplanner.team/stops/H1ht132b", "https://tec.openplanner.team/stops/H1si153a"], ["https://tec.openplanner.team/stops/N251aab", "https://tec.openplanner.team/stops/N287aab"], ["https://tec.openplanner.team/stops/LlZbell1", "https://tec.openplanner.team/stops/LmNmerl1"], ["https://tec.openplanner.team/stops/Brixchw1", "https://tec.openplanner.team/stops/Brixres1"], ["https://tec.openplanner.team/stops/H1le128b", "https://tec.openplanner.team/stops/H1le129a"], ["https://tec.openplanner.team/stops/Cctmine1", "https://tec.openplanner.team/stops/Cctmine2"], ["https://tec.openplanner.team/stops/H5wo123a", "https://tec.openplanner.team/stops/H5wo125b"], ["https://tec.openplanner.team/stops/Ljumiux1", "https://tec.openplanner.team/stops/Ljuplpr2"], ["https://tec.openplanner.team/stops/X742agb", "https://tec.openplanner.team/stops/X743aaa"], ["https://tec.openplanner.team/stops/H2ch100c", "https://tec.openplanner.team/stops/H2ch111b"], ["https://tec.openplanner.team/stops/Lhrlalo4", "https://tec.openplanner.team/stops/Lhrmine1"], ["https://tec.openplanner.team/stops/LVIsacr1", "https://tec.openplanner.team/stops/LVIsacr2"], ["https://tec.openplanner.team/stops/N321ada", "https://tec.openplanner.team/stops/N323acb"], ["https://tec.openplanner.team/stops/H4to134a", "https://tec.openplanner.team/stops/H4to138a"], ["https://tec.openplanner.team/stops/N226aca", "https://tec.openplanner.team/stops/N226ada"], ["https://tec.openplanner.team/stops/Blemkap2", "https://tec.openplanner.team/stops/Btubhoq1"], ["https://tec.openplanner.team/stops/LLeeco-1", "https://tec.openplanner.team/stops/X547ata"], ["https://tec.openplanner.team/stops/Cfaplma1", "https://tec.openplanner.team/stops/Clacast2"], ["https://tec.openplanner.team/stops/Lscbarg2", "https://tec.openplanner.team/stops/Ltiferb2"], ["https://tec.openplanner.team/stops/N577aba", "https://tec.openplanner.team/stops/N577aeb"], ["https://tec.openplanner.team/stops/LkEbruc1", "https://tec.openplanner.team/stops/LlNm%C3%BChl2"], ["https://tec.openplanner.team/stops/Lhrcols4", "https://tec.openplanner.team/stops/Lhrvert1"], ["https://tec.openplanner.team/stops/X394aeb", "https://tec.openplanner.team/stops/X398aca"], ["https://tec.openplanner.team/stops/LcRmich1", "https://tec.openplanner.team/stops/LrDhind1"], ["https://tec.openplanner.team/stops/X921ara", "https://tec.openplanner.team/stops/X979aab"], ["https://tec.openplanner.team/stops/N232bta", "https://tec.openplanner.team/stops/N232bua"], ["https://tec.openplanner.team/stops/X766aga", "https://tec.openplanner.team/stops/X766aja"], ["https://tec.openplanner.team/stops/LnIkirc1", "https://tec.openplanner.team/stops/LwYbruc1"], ["https://tec.openplanner.team/stops/N150aed", "https://tec.openplanner.team/stops/N150afb"], ["https://tec.openplanner.team/stops/X663aqb", "https://tec.openplanner.team/stops/X663awa"], ["https://tec.openplanner.team/stops/X750asb", "https://tec.openplanner.team/stops/X794aab"], ["https://tec.openplanner.team/stops/Bhenasc1", "https://tec.openplanner.team/stops/Bhenrcr1"], ["https://tec.openplanner.team/stops/LFFcouv1", "https://tec.openplanner.team/stops/LFFmarc3"], ["https://tec.openplanner.team/stops/Lmimili2", "https://tec.openplanner.team/stops/Lmitech1"], ["https://tec.openplanner.team/stops/Cgrcent1", "https://tec.openplanner.team/stops/Cgrcent2"], ["https://tec.openplanner.team/stops/X633agb", "https://tec.openplanner.team/stops/X653adc"], ["https://tec.openplanner.team/stops/LVIhala4", "https://tec.openplanner.team/stops/LVIhv--2"], ["https://tec.openplanner.team/stops/N127aca", "https://tec.openplanner.team/stops/N127aea"], ["https://tec.openplanner.team/stops/Bbryfon2", "https://tec.openplanner.team/stops/Bsammon4"], ["https://tec.openplanner.team/stops/LNEmoul1", "https://tec.openplanner.team/stops/LVosoir2"], ["https://tec.openplanner.team/stops/N501eta", "https://tec.openplanner.team/stops/N501nea"], ["https://tec.openplanner.team/stops/X822aia", "https://tec.openplanner.team/stops/X822ajb"], ["https://tec.openplanner.team/stops/N507aqb", "https://tec.openplanner.team/stops/NL74aca"], ["https://tec.openplanner.team/stops/H1ho132a", "https://tec.openplanner.team/stops/H1ho144a"], ["https://tec.openplanner.team/stops/LCPcomp2", "https://tec.openplanner.team/stops/LGmcite1"], ["https://tec.openplanner.team/stops/Cthalli1", "https://tec.openplanner.team/stops/Cthalli3"], ["https://tec.openplanner.team/stops/N232brb", "https://tec.openplanner.team/stops/N232caa"], ["https://tec.openplanner.team/stops/Cgzabur2", "https://tec.openplanner.team/stops/Cgzclef2"], ["https://tec.openplanner.team/stops/X908ahb", "https://tec.openplanner.team/stops/X908aia"], ["https://tec.openplanner.team/stops/H2ca105b", "https://tec.openplanner.team/stops/H2ch125a"], ["https://tec.openplanner.team/stops/LAUtism1", "https://tec.openplanner.team/stops/LAUtism2"], ["https://tec.openplanner.team/stops/X650akb", "https://tec.openplanner.team/stops/X651aab"], ["https://tec.openplanner.team/stops/Lfhhoul1", "https://tec.openplanner.team/stops/Lfhncha2"], ["https://tec.openplanner.team/stops/H1hy129a", "https://tec.openplanner.team/stops/H1qy133a"], ["https://tec.openplanner.team/stops/N135aha", "https://tec.openplanner.team/stops/N135atb"], ["https://tec.openplanner.team/stops/Cfanoci1", "https://tec.openplanner.team/stops/Clacast2"], ["https://tec.openplanner.team/stops/X903abb", "https://tec.openplanner.team/stops/X903acb"], ["https://tec.openplanner.team/stops/H5rx121a", "https://tec.openplanner.team/stops/H5rx132b"], ["https://tec.openplanner.team/stops/H1ba107b", "https://tec.openplanner.team/stops/H1ba110b"], ["https://tec.openplanner.team/stops/X817ada", "https://tec.openplanner.team/stops/X817afb"], ["https://tec.openplanner.team/stops/Brxmhai1", "https://tec.openplanner.team/stops/Brxmhai3"], ["https://tec.openplanner.team/stops/Lgrbill2", "https://tec.openplanner.team/stops/Lgrclas2"], ["https://tec.openplanner.team/stops/N513aha", "https://tec.openplanner.team/stops/N521asb"], ["https://tec.openplanner.team/stops/X636bda", "https://tec.openplanner.team/stops/X636bea"], ["https://tec.openplanner.team/stops/Clulidl1", "https://tec.openplanner.team/stops/Cvvpotv2"], ["https://tec.openplanner.team/stops/N509ana", "https://tec.openplanner.team/stops/N510ada"], ["https://tec.openplanner.team/stops/Baudulb1", "https://tec.openplanner.team/stops/Bwolvan2"], ["https://tec.openplanner.team/stops/LVbcoul1", "https://tec.openplanner.team/stops/LVbcoul2"], ["https://tec.openplanner.team/stops/LBIaepo4", "https://tec.openplanner.team/stops/Lghlogi2"], ["https://tec.openplanner.team/stops/N579afb", "https://tec.openplanner.team/stops/N580aaa"], ["https://tec.openplanner.team/stops/N501cyb", "https://tec.openplanner.team/stops/N528ahb"], ["https://tec.openplanner.team/stops/Cgzmarb2", "https://tec.openplanner.team/stops/Ctucamb1"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X744afa"], ["https://tec.openplanner.team/stops/X654ajb", "https://tec.openplanner.team/stops/X654alb"], ["https://tec.openplanner.team/stops/N573apa", "https://tec.openplanner.team/stops/N573aqb"], ["https://tec.openplanner.team/stops/Lsehosp2", "https://tec.openplanner.team/stops/Lseptsa2"], ["https://tec.openplanner.team/stops/X989aca", "https://tec.openplanner.team/stops/X989aeb"], ["https://tec.openplanner.team/stops/N219aba", "https://tec.openplanner.team/stops/N349ada"], ["https://tec.openplanner.team/stops/LdUespe1", "https://tec.openplanner.team/stops/LdUkreu1"], ["https://tec.openplanner.team/stops/Csscrot1", "https://tec.openplanner.team/stops/Csshouy2"], ["https://tec.openplanner.team/stops/LGegrun2", "https://tec.openplanner.team/stops/LSIgera2"], ["https://tec.openplanner.team/stops/Bquecja1", "https://tec.openplanner.team/stops/Bqueegl1"], ["https://tec.openplanner.team/stops/X639aeb", "https://tec.openplanner.team/stops/X639ajb"], ["https://tec.openplanner.team/stops/LVleg--6", "https://tec.openplanner.team/stops/LVltige1"], ["https://tec.openplanner.team/stops/Bobacar3", "https://tec.openplanner.team/stops/Broscha1"], ["https://tec.openplanner.team/stops/H5rx136a", "https://tec.openplanner.team/stops/H5rx136b"], ["https://tec.openplanner.team/stops/Bwagcus2", "https://tec.openplanner.team/stops/Csawagn1"], ["https://tec.openplanner.team/stops/Lousite6", "https://tec.openplanner.team/stops/Lstscie2"], ["https://tec.openplanner.team/stops/N533amb", "https://tec.openplanner.team/stops/N533apb"], ["https://tec.openplanner.team/stops/H1qu105b", "https://tec.openplanner.team/stops/H1wl123a"], ["https://tec.openplanner.team/stops/X788aba", "https://tec.openplanner.team/stops/X788aca"], ["https://tec.openplanner.team/stops/N551aia", "https://tec.openplanner.team/stops/N551aka"], ["https://tec.openplanner.team/stops/N150adb", "https://tec.openplanner.team/stops/N150afb"], ["https://tec.openplanner.team/stops/LmSluxh2", "https://tec.openplanner.team/stops/LnUcamp2"], ["https://tec.openplanner.team/stops/Llggram3", "https://tec.openplanner.team/stops/Llggram4"], ["https://tec.openplanner.team/stops/X604afb", "https://tec.openplanner.team/stops/X604afd"], ["https://tec.openplanner.team/stops/N244aka", "https://tec.openplanner.team/stops/N244axa"], ["https://tec.openplanner.team/stops/H5at115b", "https://tec.openplanner.team/stops/H5at235b"], ["https://tec.openplanner.team/stops/Cchba08", "https://tec.openplanner.team/stops/Cchba2"], ["https://tec.openplanner.team/stops/Bcer4br1", "https://tec.openplanner.team/stops/Bcer4br3"], ["https://tec.openplanner.team/stops/LNAbass2", "https://tec.openplanner.team/stops/LNAbouh2"], ["https://tec.openplanner.team/stops/NH21aeb", "https://tec.openplanner.team/stops/NH21afb"], ["https://tec.openplanner.team/stops/N301ahb", "https://tec.openplanner.team/stops/N340aib"], ["https://tec.openplanner.team/stops/X925ajb", "https://tec.openplanner.team/stops/X927aaa"], ["https://tec.openplanner.team/stops/X804aoa", "https://tec.openplanner.team/stops/X804bsa"], ["https://tec.openplanner.team/stops/X769afa", "https://tec.openplanner.team/stops/X769aib"], ["https://tec.openplanner.team/stops/X652afa", "https://tec.openplanner.team/stops/X652afb"], ["https://tec.openplanner.team/stops/X659add", "https://tec.openplanner.team/stops/X659aqb"], ["https://tec.openplanner.team/stops/H4bo112a", "https://tec.openplanner.team/stops/H4bo112b"], ["https://tec.openplanner.team/stops/N512aia", "https://tec.openplanner.team/stops/N512aib"], ["https://tec.openplanner.team/stops/Cgzbouh1", "https://tec.openplanner.team/stops/Cmxpleg1"], ["https://tec.openplanner.team/stops/N118acd", "https://tec.openplanner.team/stops/N118afb"], ["https://tec.openplanner.team/stops/LMalarg4", "https://tec.openplanner.team/stops/LMgkrui1"], ["https://tec.openplanner.team/stops/LPLfp2-2", "https://tec.openplanner.team/stops/LPLstri2"], ["https://tec.openplanner.team/stops/H1gh163b", "https://tec.openplanner.team/stops/H1gh168b"], ["https://tec.openplanner.team/stops/N331ada", "https://tec.openplanner.team/stops/N385acb"], ["https://tec.openplanner.team/stops/Ltigare2", "https://tec.openplanner.team/stops/Ltipass1"], ["https://tec.openplanner.team/stops/LaFbruc1", "https://tec.openplanner.team/stops/LhM07--2"], ["https://tec.openplanner.team/stops/H4ft134b", "https://tec.openplanner.team/stops/H4ft136b"], ["https://tec.openplanner.team/stops/Lvegera2", "https://tec.openplanner.team/stops/Lveveou1"], ["https://tec.openplanner.team/stops/Lscbarg1", "https://tec.openplanner.team/stops/Ltimarr2"], ["https://tec.openplanner.team/stops/H4ty342a", "https://tec.openplanner.team/stops/H4ty342b"], ["https://tec.openplanner.team/stops/X718aca", "https://tec.openplanner.team/stops/X718afa"], ["https://tec.openplanner.team/stops/X780acb", "https://tec.openplanner.team/stops/X780akb"], ["https://tec.openplanner.team/stops/Boplcar2", "https://tec.openplanner.team/stops/Boplsma4"], ["https://tec.openplanner.team/stops/H2le149a", "https://tec.openplanner.team/stops/H2le150b"], ["https://tec.openplanner.team/stops/Llgboux2", "https://tec.openplanner.team/stops/Llgherm1"], ["https://tec.openplanner.team/stops/X902ava", "https://tec.openplanner.team/stops/X902awa"], ["https://tec.openplanner.team/stops/Bgnpjbe2", "https://tec.openplanner.team/stops/Blpgvil2"], ["https://tec.openplanner.team/stops/Cmyedpa4", "https://tec.openplanner.team/stops/Cmyoasi1"], ["https://tec.openplanner.team/stops/X809abb", "https://tec.openplanner.team/stops/X858aba"], ["https://tec.openplanner.team/stops/LLUmont1", "https://tec.openplanner.team/stops/LLUmont2"], ["https://tec.openplanner.team/stops/X721aga", "https://tec.openplanner.team/stops/X721aib"], ["https://tec.openplanner.team/stops/Bhoegbr1", "https://tec.openplanner.team/stops/Bhoemel1"], ["https://tec.openplanner.team/stops/N501hab", "https://tec.openplanner.team/stops/N501mkb"], ["https://tec.openplanner.team/stops/X342aca", "https://tec.openplanner.team/stops/X342aha"], ["https://tec.openplanner.team/stops/Ldichat1", "https://tec.openplanner.team/stops/Ldichat2"], ["https://tec.openplanner.team/stops/X890ada", "https://tec.openplanner.team/stops/X891aaa"], ["https://tec.openplanner.team/stops/Bnivh%C3%B4p1", "https://tec.openplanner.team/stops/Bnivsoi2"], ["https://tec.openplanner.team/stops/N501dja", "https://tec.openplanner.team/stops/N538aqb"], ["https://tec.openplanner.team/stops/Bjaugaz1", "https://tec.openplanner.team/stops/Bmrl4ch2"], ["https://tec.openplanner.team/stops/LSUhage1", "https://tec.openplanner.team/stops/LSUvill1"], ["https://tec.openplanner.team/stops/N507apa", "https://tec.openplanner.team/stops/N507apb"], ["https://tec.openplanner.team/stops/H2ha132b", "https://tec.openplanner.team/stops/H2sb235b"], ["https://tec.openplanner.team/stops/N351akc", "https://tec.openplanner.team/stops/N351aub"], ["https://tec.openplanner.team/stops/Bbeaap51", "https://tec.openplanner.team/stops/Btlgmee2"], ["https://tec.openplanner.team/stops/Lousite2", "https://tec.openplanner.team/stops/Lousite7"], ["https://tec.openplanner.team/stops/LNEcite1", "https://tec.openplanner.team/stops/LNEcite2"], ["https://tec.openplanner.team/stops/H4lh118a", "https://tec.openplanner.team/stops/H5wo127b"], ["https://tec.openplanner.team/stops/Bwatcpr1", "https://tec.openplanner.team/stops/Bwatnrs2"], ["https://tec.openplanner.team/stops/N385aaa", "https://tec.openplanner.team/stops/N385aac"], ["https://tec.openplanner.team/stops/X649abb", "https://tec.openplanner.team/stops/X671acb"], ["https://tec.openplanner.team/stops/Bgoestu2", "https://tec.openplanner.team/stops/Bgoevli2"], ["https://tec.openplanner.team/stops/Bzluegl1", "https://tec.openplanner.team/stops/Bzluegl2"], ["https://tec.openplanner.team/stops/LJAdeho1", "https://tec.openplanner.team/stops/LJAdeho2"], ["https://tec.openplanner.team/stops/X633abb", "https://tec.openplanner.team/stops/X633afa"], ["https://tec.openplanner.team/stops/LBXhacb1", "https://tec.openplanner.team/stops/LMomonc1"], ["https://tec.openplanner.team/stops/X901aoa", "https://tec.openplanner.team/stops/X901bna"], ["https://tec.openplanner.team/stops/LBoegli1", "https://tec.openplanner.team/stops/LOCponc*"], ["https://tec.openplanner.team/stops/LAMfrai1", "https://tec.openplanner.team/stops/LFlpark*"], ["https://tec.openplanner.team/stops/X615bda", "https://tec.openplanner.team/stops/X615bea"], ["https://tec.openplanner.team/stops/LPRfond1", "https://tec.openplanner.team/stops/LPRpeti1"], ["https://tec.openplanner.team/stops/LATdame2", "https://tec.openplanner.team/stops/LATjaur2"], ["https://tec.openplanner.team/stops/X831ada", "https://tec.openplanner.team/stops/X831adb"], ["https://tec.openplanner.team/stops/X952aaa", "https://tec.openplanner.team/stops/X952alb"], ["https://tec.openplanner.team/stops/LCLacbi1", "https://tec.openplanner.team/stops/NL78afb"], ["https://tec.openplanner.team/stops/Lourose3", "https://tec.openplanner.team/stops/Lousite4"], ["https://tec.openplanner.team/stops/Bhmmvdu2", "https://tec.openplanner.team/stops/Btlgbro1"], ["https://tec.openplanner.team/stops/Cmgbrou1", "https://tec.openplanner.team/stops/Cmghay2"], ["https://tec.openplanner.team/stops/Lglsana2", "https://tec.openplanner.team/stops/Llgavoc2"], ["https://tec.openplanner.team/stops/X801bga", "https://tec.openplanner.team/stops/X801coa"], ["https://tec.openplanner.team/stops/Lrcauto2", "https://tec.openplanner.team/stops/Lrcrars1"], ["https://tec.openplanner.team/stops/N134aca", "https://tec.openplanner.team/stops/N134aea"], ["https://tec.openplanner.team/stops/H1qy133a", "https://tec.openplanner.team/stops/H1qy133b"], ["https://tec.openplanner.team/stops/Ccspla", "https://tec.openplanner.team/stops/N162aab"], ["https://tec.openplanner.team/stops/LMNgare2", "https://tec.openplanner.team/stops/LMsheid2"], ["https://tec.openplanner.team/stops/H1gh155b", "https://tec.openplanner.team/stops/H1gh158a"], ["https://tec.openplanner.team/stops/N234abb", "https://tec.openplanner.team/stops/N234aca"], ["https://tec.openplanner.team/stops/Cvregl1", "https://tec.openplanner.team/stops/Cvrhaie1"], ["https://tec.openplanner.team/stops/H4pi132a", "https://tec.openplanner.team/stops/H4wp153b"], ["https://tec.openplanner.team/stops/N209aeb", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/Boveker2", "https://tec.openplanner.team/stops/Bovesnh2"], ["https://tec.openplanner.team/stops/Lchcomm1", "https://tec.openplanner.team/stops/LSRbouh2"], ["https://tec.openplanner.team/stops/H4ta117a", "https://tec.openplanner.team/stops/H4ta125a"], ["https://tec.openplanner.team/stops/LBStec-2", "https://tec.openplanner.team/stops/LBSvi321"], ["https://tec.openplanner.team/stops/X992abb", "https://tec.openplanner.team/stops/X992afb"], ["https://tec.openplanner.team/stops/X898adb", "https://tec.openplanner.team/stops/X898aob"], ["https://tec.openplanner.team/stops/H4ga148d", "https://tec.openplanner.team/stops/H4ha170b"], ["https://tec.openplanner.team/stops/Cgysarr1", "https://tec.openplanner.team/stops/Cgysarr2"], ["https://tec.openplanner.team/stops/Btlgfto1", "https://tec.openplanner.team/stops/Btlgfto2"], ["https://tec.openplanner.team/stops/LBCtros2", "https://tec.openplanner.team/stops/LMTvill2"], ["https://tec.openplanner.team/stops/N503agb", "https://tec.openplanner.team/stops/N535adb"], ["https://tec.openplanner.team/stops/H4ty293a", "https://tec.openplanner.team/stops/H4ty360a"], ["https://tec.openplanner.team/stops/N543aua", "https://tec.openplanner.team/stops/N543cbc"], ["https://tec.openplanner.team/stops/Cmlcazi1", "https://tec.openplanner.team/stops/Cmlpche2"], ["https://tec.openplanner.team/stops/Lmocalv1", "https://tec.openplanner.team/stops/Lmovand4"], ["https://tec.openplanner.team/stops/Lanpisc2", "https://tec.openplanner.team/stops/Lglcoun1"], ["https://tec.openplanner.team/stops/N564aca", "https://tec.openplanner.team/stops/N585aia"], ["https://tec.openplanner.team/stops/Ccipier2", "https://tec.openplanner.team/stops/Ccivill1"], ["https://tec.openplanner.team/stops/H4do107b", "https://tec.openplanner.team/stops/H4do107d"], ["https://tec.openplanner.team/stops/N562bla", "https://tec.openplanner.team/stops/N562bra"], ["https://tec.openplanner.team/stops/H1do108c", "https://tec.openplanner.team/stops/H1do111a"], ["https://tec.openplanner.team/stops/X733aab", "https://tec.openplanner.team/stops/X734aoa"], ["https://tec.openplanner.team/stops/LBzvill1", "https://tec.openplanner.team/stops/LLWchat1"], ["https://tec.openplanner.team/stops/H1ca101a", "https://tec.openplanner.team/stops/H1ca107b"], ["https://tec.openplanner.team/stops/H1hr128c", "https://tec.openplanner.team/stops/H1hv132b"], ["https://tec.openplanner.team/stops/X612aeb", "https://tec.openplanner.team/stops/X626akb"], ["https://tec.openplanner.team/stops/LHGbeur3", "https://tec.openplanner.team/stops/LHGzoni2"], ["https://tec.openplanner.team/stops/LLedoya1", "https://tec.openplanner.team/stops/X547aka"], ["https://tec.openplanner.team/stops/X614aha", "https://tec.openplanner.team/stops/X614ahb"], ["https://tec.openplanner.team/stops/Cwfcast1", "https://tec.openplanner.team/stops/Cwfcast2"], ["https://tec.openplanner.team/stops/N245aab", "https://tec.openplanner.team/stops/N248aca"], ["https://tec.openplanner.team/stops/H2gy108a", "https://tec.openplanner.team/stops/H2gy113a"], ["https://tec.openplanner.team/stops/H4ka191b", "https://tec.openplanner.team/stops/H4ka400a"], ["https://tec.openplanner.team/stops/LSoeg--1", "https://tec.openplanner.team/stops/LSokrin1"], ["https://tec.openplanner.team/stops/H1hn207b", "https://tec.openplanner.team/stops/H1hn364a"], ["https://tec.openplanner.team/stops/LOVchen2", "https://tec.openplanner.team/stops/LWLtamb2"], ["https://tec.openplanner.team/stops/H5st161a", "https://tec.openplanner.team/stops/H5st166a"], ["https://tec.openplanner.team/stops/H3so169b", "https://tec.openplanner.team/stops/H3so172b"], ["https://tec.openplanner.team/stops/N141aba", "https://tec.openplanner.team/stops/N141apb"], ["https://tec.openplanner.team/stops/Lfhsoux1", "https://tec.openplanner.team/stops/Lmlprie1"], ["https://tec.openplanner.team/stops/LrEviel1", "https://tec.openplanner.team/stops/LrEviel2"], ["https://tec.openplanner.team/stops/N539afb", "https://tec.openplanner.team/stops/N540aga"], ["https://tec.openplanner.team/stops/Btubcal1", "https://tec.openplanner.team/stops/Btubcal2"], ["https://tec.openplanner.team/stops/N360aea", "https://tec.openplanner.team/stops/N360aeb"], ["https://tec.openplanner.team/stops/H4ea130a", "https://tec.openplanner.team/stops/H4ea130b"], ["https://tec.openplanner.team/stops/H1hy125b", "https://tec.openplanner.team/stops/H1hy127a"], ["https://tec.openplanner.team/stops/Bperpla1", "https://tec.openplanner.team/stops/Bperpla2"], ["https://tec.openplanner.team/stops/X897axb", "https://tec.openplanner.team/stops/X897aya"], ["https://tec.openplanner.team/stops/H4bv145a", "https://tec.openplanner.team/stops/H4bv146b"], ["https://tec.openplanner.team/stops/Lghbonn2", "https://tec.openplanner.team/stops/Lghflot2"], ["https://tec.openplanner.team/stops/Bfledpi1", "https://tec.openplanner.team/stops/Cwgmell4"], ["https://tec.openplanner.team/stops/Cgylami1", "https://tec.openplanner.team/stops/Cgynuto2"], ["https://tec.openplanner.team/stops/Bfledpi2", "https://tec.openplanner.team/stops/Bsamegl1"], ["https://tec.openplanner.team/stops/X994aba", "https://tec.openplanner.team/stops/X994afb"], ["https://tec.openplanner.team/stops/Bohncha1", "https://tec.openplanner.team/stops/Bohngen2"], ["https://tec.openplanner.team/stops/Blhugai1", "https://tec.openplanner.team/stops/Bohnegl1"], ["https://tec.openplanner.team/stops/X983aea", "https://tec.openplanner.team/stops/X996agb"], ["https://tec.openplanner.team/stops/N539afc", "https://tec.openplanner.team/stops/N539afd"], ["https://tec.openplanner.team/stops/LmI129-1", "https://tec.openplanner.team/stops/LmIcafe2"], ["https://tec.openplanner.team/stops/LGecite2", "https://tec.openplanner.team/stops/LGegrun2"], ["https://tec.openplanner.team/stops/Laleg--2", "https://tec.openplanner.team/stops/Lanschu1"], ["https://tec.openplanner.team/stops/H4ty358b", "https://tec.openplanner.team/stops/H4ty383b"], ["https://tec.openplanner.team/stops/H1be100b", "https://tec.openplanner.team/stops/H1so137b"], ["https://tec.openplanner.team/stops/LMforba2", "https://tec.openplanner.team/stops/LMfsart1"], ["https://tec.openplanner.team/stops/X605aaa", "https://tec.openplanner.team/stops/X605aab"], ["https://tec.openplanner.team/stops/X804bja", "https://tec.openplanner.team/stops/X804bka"], ["https://tec.openplanner.team/stops/LBlchin1", "https://tec.openplanner.team/stops/LGMstin1"], ["https://tec.openplanner.team/stops/X912ala", "https://tec.openplanner.team/stops/X912alb"], ["https://tec.openplanner.team/stops/LCsange1", "https://tec.openplanner.team/stops/LCschen1"], ["https://tec.openplanner.team/stops/Lhrathe*", "https://tec.openplanner.team/stops/Lhrmilm2"], ["https://tec.openplanner.team/stops/H3so172a", "https://tec.openplanner.team/stops/H3so172b"], ["https://tec.openplanner.team/stops/Barqbco1", "https://tec.openplanner.team/stops/Barqbco2"], ["https://tec.openplanner.team/stops/X882aba", "https://tec.openplanner.team/stops/X882aka"], ["https://tec.openplanner.team/stops/X672aja", "https://tec.openplanner.team/stops/X672akb"], ["https://tec.openplanner.team/stops/Bottcro1", "https://tec.openplanner.team/stops/Bottpma1"], ["https://tec.openplanner.team/stops/LrEkais1", "https://tec.openplanner.team/stops/LrErauw1"], ["https://tec.openplanner.team/stops/N338aha", "https://tec.openplanner.team/stops/N338aib"], ["https://tec.openplanner.team/stops/LFochap1", "https://tec.openplanner.team/stops/LGOdelv1"], ["https://tec.openplanner.team/stops/LBahome1", "https://tec.openplanner.team/stops/LBahome2"], ["https://tec.openplanner.team/stops/Bbealon4", "https://tec.openplanner.team/stops/Bbealou1"], ["https://tec.openplanner.team/stops/Lhrpost1", "https://tec.openplanner.team/stops/Llgchan1"], ["https://tec.openplanner.team/stops/Bottbou1", "https://tec.openplanner.team/stops/Bottcba2"], ["https://tec.openplanner.team/stops/LbUvith2", "https://tec.openplanner.team/stops/LhObull1"], ["https://tec.openplanner.team/stops/X614ara", "https://tec.openplanner.team/stops/X614arb"], ["https://tec.openplanner.team/stops/NL77afa", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/Cmmmarb2", "https://tec.openplanner.team/stops/Cmmpjou4"], ["https://tec.openplanner.team/stops/LAvrout2", "https://tec.openplanner.team/stops/LBUvall1"], ["https://tec.openplanner.team/stops/H4bq100c", "https://tec.openplanner.team/stops/H4mb205a"], ["https://tec.openplanner.team/stops/Crccamp1", "https://tec.openplanner.team/stops/Crclorc1"], ["https://tec.openplanner.team/stops/Ccymabo1", "https://tec.openplanner.team/stops/Ccymabo2"], ["https://tec.openplanner.team/stops/Bsgeegl4", "https://tec.openplanner.team/stops/Bvilcim2"], ["https://tec.openplanner.team/stops/LEScham2", "https://tec.openplanner.team/stops/LESchpl1"], ["https://tec.openplanner.team/stops/H1je216a", "https://tec.openplanner.team/stops/H1je367a"], ["https://tec.openplanner.team/stops/Cctchav1", "https://tec.openplanner.team/stops/NC11aha"], ["https://tec.openplanner.team/stops/H1sy143d", "https://tec.openplanner.team/stops/H1sy147a"], ["https://tec.openplanner.team/stops/LHaeg--1", "https://tec.openplanner.team/stops/LHaxhor1"], ["https://tec.openplanner.team/stops/H1ci102a", "https://tec.openplanner.team/stops/H1hn202a"], ["https://tec.openplanner.team/stops/H4gu107a", "https://tec.openplanner.team/stops/H4gu107b"], ["https://tec.openplanner.team/stops/Cfldand2", "https://tec.openplanner.team/stops/NC23aab"], ["https://tec.openplanner.team/stops/X648aba", "https://tec.openplanner.team/stops/X648abb"], ["https://tec.openplanner.team/stops/X773aca", "https://tec.openplanner.team/stops/X908adb"], ["https://tec.openplanner.team/stops/Bwatfia1", "https://tec.openplanner.team/stops/Bwatgar3"], ["https://tec.openplanner.team/stops/N527acb", "https://tec.openplanner.team/stops/N527afa"], ["https://tec.openplanner.team/stops/X749abb", "https://tec.openplanner.team/stops/X754abb"], ["https://tec.openplanner.team/stops/H4ka399a", "https://tec.openplanner.team/stops/H4ka400a"], ["https://tec.openplanner.team/stops/Cwfdupo2", "https://tec.openplanner.team/stops/Cwfzola1"], ["https://tec.openplanner.team/stops/N232aea", "https://tec.openplanner.team/stops/N232apb"], ["https://tec.openplanner.team/stops/H1ob327b", "https://tec.openplanner.team/stops/H1ob339b"], ["https://tec.openplanner.team/stops/X754aba", "https://tec.openplanner.team/stops/X754asb"], ["https://tec.openplanner.team/stops/X606aab", "https://tec.openplanner.team/stops/X648abb"], ["https://tec.openplanner.team/stops/LSPjoli2", "https://tec.openplanner.team/stops/LSZdepo2"], ["https://tec.openplanner.team/stops/LBOec--1", "https://tec.openplanner.team/stops/LBWbatt1"], ["https://tec.openplanner.team/stops/Ccocoup1", "https://tec.openplanner.team/stops/Ccohuli2"], ["https://tec.openplanner.team/stops/LdElamb2", "https://tec.openplanner.team/stops/LiVgirk2"], ["https://tec.openplanner.team/stops/LHZec--1", "https://tec.openplanner.team/stops/LHZec--2"], ["https://tec.openplanner.team/stops/LCx728-2", "https://tec.openplanner.team/stops/LHEchex2"], ["https://tec.openplanner.team/stops/X982bxa", "https://tec.openplanner.team/stops/X982bxb"], ["https://tec.openplanner.team/stops/Bwaypav1", "https://tec.openplanner.team/stops/Bwaypav2"], ["https://tec.openplanner.team/stops/LClflor1", "https://tec.openplanner.team/stops/LHChoof4"], ["https://tec.openplanner.team/stops/LWarema1", "https://tec.openplanner.team/stops/LWathir1"], ["https://tec.openplanner.team/stops/LHAbont1", "https://tec.openplanner.team/stops/LRItour1"], ["https://tec.openplanner.team/stops/X999aja", "https://tec.openplanner.team/stops/X999ajb"], ["https://tec.openplanner.team/stops/N106aeb", "https://tec.openplanner.team/stops/N106aqa"], ["https://tec.openplanner.team/stops/LCxcouv1", "https://tec.openplanner.team/stops/LCxcouv2"], ["https://tec.openplanner.team/stops/LkTgutl1", "https://tec.openplanner.team/stops/LkTlibe1"], ["https://tec.openplanner.team/stops/N501hxy", "https://tec.openplanner.team/stops/N501inb"], ["https://tec.openplanner.team/stops/H1ma230a", "https://tec.openplanner.team/stops/H1ma230b"], ["https://tec.openplanner.team/stops/Ccyga7", "https://tec.openplanner.team/stops/Ccygara1"], ["https://tec.openplanner.team/stops/H4mo132a", "https://tec.openplanner.team/stops/H4mo177a"], ["https://tec.openplanner.team/stops/X836ada", "https://tec.openplanner.team/stops/X836aea"], ["https://tec.openplanner.team/stops/X902ada", "https://tec.openplanner.team/stops/X902aob"], ["https://tec.openplanner.team/stops/H1hn204b", "https://tec.openplanner.team/stops/H1mv239a"], ["https://tec.openplanner.team/stops/Lannico2", "https://tec.openplanner.team/stops/Lannico3"], ["https://tec.openplanner.team/stops/LeIkreu1", "https://tec.openplanner.team/stops/LeIpiro4"], ["https://tec.openplanner.team/stops/H1po130a", "https://tec.openplanner.team/stops/H1po133b"], ["https://tec.openplanner.team/stops/LCRvert2", "https://tec.openplanner.team/stops/LKmdrie1"], ["https://tec.openplanner.team/stops/Lhrdeme2", "https://tec.openplanner.team/stops/Lhrtilm2"], ["https://tec.openplanner.team/stops/N584aba", "https://tec.openplanner.team/stops/N584acb"], ["https://tec.openplanner.team/stops/LDpzol-1", "https://tec.openplanner.team/stops/LDpzol-2"], ["https://tec.openplanner.team/stops/Lgdstoc1", "https://tec.openplanner.team/stops/LSNecol3"], ["https://tec.openplanner.team/stops/H4mo180a", "https://tec.openplanner.team/stops/H4mo186a"], ["https://tec.openplanner.team/stops/Clomart1", "https://tec.openplanner.team/stops/Clomart2"], ["https://tec.openplanner.team/stops/N219aca", "https://tec.openplanner.team/stops/N219afa"], ["https://tec.openplanner.team/stops/Lprceri2", "https://tec.openplanner.team/stops/Lprsher1"], ["https://tec.openplanner.team/stops/LBglign1", "https://tec.openplanner.team/stops/LLbvith1"], ["https://tec.openplanner.team/stops/X767aaa", "https://tec.openplanner.team/stops/X768aba"], ["https://tec.openplanner.team/stops/Cmlbeau2", "https://tec.openplanner.team/stops/Cmlfstt1"], ["https://tec.openplanner.team/stops/LHUdelc2", "https://tec.openplanner.team/stops/LHUlebe8"], ["https://tec.openplanner.team/stops/LOrchau2", "https://tec.openplanner.team/stops/LORcomb2"], ["https://tec.openplanner.team/stops/N562acb", "https://tec.openplanner.team/stops/N562aha"], ["https://tec.openplanner.team/stops/N120aab", "https://tec.openplanner.team/stops/N302adb"], ["https://tec.openplanner.team/stops/Ccogrbu2", "https://tec.openplanner.team/stops/Csoforr2"], ["https://tec.openplanner.team/stops/Cpl4bra3", "https://tec.openplanner.team/stops/Cplrmon1"], ["https://tec.openplanner.team/stops/Cdanvpr2", "https://tec.openplanner.team/stops/Cmabegh2"], ["https://tec.openplanner.team/stops/H1bb121a", "https://tec.openplanner.team/stops/H1hi124a"], ["https://tec.openplanner.team/stops/X601bka", "https://tec.openplanner.team/stops/X601bra"], ["https://tec.openplanner.team/stops/X625ada", "https://tec.openplanner.team/stops/X625adb"], ["https://tec.openplanner.team/stops/H1te184a", "https://tec.openplanner.team/stops/H1te187a"], ["https://tec.openplanner.team/stops/LHcbaro2", "https://tec.openplanner.team/stops/LHcgare2"], ["https://tec.openplanner.team/stops/Brsrfen1", "https://tec.openplanner.team/stops/Brsrfen2"], ["https://tec.openplanner.team/stops/Cpljonc2", "https://tec.openplanner.team/stops/NC11aga"], ["https://tec.openplanner.team/stops/LMApl--1", "https://tec.openplanner.team/stops/LMApl--2"], ["https://tec.openplanner.team/stops/X777aba", "https://tec.openplanner.team/stops/X777abb"], ["https://tec.openplanner.team/stops/H1mb127a", "https://tec.openplanner.team/stops/H1mb128a"], ["https://tec.openplanner.team/stops/Cmtchas2", "https://tec.openplanner.team/stops/Cmtprey1"], ["https://tec.openplanner.team/stops/Clfbarr4", "https://tec.openplanner.team/stops/Clftour1"], ["https://tec.openplanner.team/stops/Bnilegl2", "https://tec.openplanner.team/stops/Bnilwal2"], ["https://tec.openplanner.team/stops/LAChann2", "https://tec.openplanner.team/stops/LACwass2"], ["https://tec.openplanner.team/stops/LXHfond1", "https://tec.openplanner.team/stops/LXHfond3"], ["https://tec.openplanner.team/stops/X390aka", "https://tec.openplanner.team/stops/X991aea"], ["https://tec.openplanner.team/stops/X738acb", "https://tec.openplanner.team/stops/X754ana"], ["https://tec.openplanner.team/stops/N338aea", "https://tec.openplanner.team/stops/N339aab"], ["https://tec.openplanner.team/stops/H1fl134b", "https://tec.openplanner.team/stops/H1qu114a"], ["https://tec.openplanner.team/stops/LSkbo831", "https://tec.openplanner.team/stops/LSkmarq2"], ["https://tec.openplanner.team/stops/Cgogb1", "https://tec.openplanner.team/stops/Cjucar02"], ["https://tec.openplanner.team/stops/Bcbqcoi2", "https://tec.openplanner.team/stops/Bcbqp251"], ["https://tec.openplanner.team/stops/H4ea129b", "https://tec.openplanner.team/stops/H4ea130a"], ["https://tec.openplanner.team/stops/Bllnpaf2", "https://tec.openplanner.team/stops/Bmsgbur2"], ["https://tec.openplanner.team/stops/Bbcoeca1", "https://tec.openplanner.team/stops/H3br107b"], ["https://tec.openplanner.team/stops/N390aaa", "https://tec.openplanner.team/stops/N390aca"], ["https://tec.openplanner.team/stops/LATdame2", "https://tec.openplanner.team/stops/LWzfuma1"], ["https://tec.openplanner.team/stops/X626aea", "https://tec.openplanner.team/stops/X626aeb"], ["https://tec.openplanner.team/stops/H2ml114a", "https://tec.openplanner.team/stops/H2mo119a"], ["https://tec.openplanner.team/stops/Brxmcha1", "https://tec.openplanner.team/stops/Brxmcha2"], ["https://tec.openplanner.team/stops/H2na131b", "https://tec.openplanner.team/stops/H2na133b"], ["https://tec.openplanner.team/stops/X921aoa", "https://tec.openplanner.team/stops/X921aob"], ["https://tec.openplanner.team/stops/LRRchen1", "https://tec.openplanner.team/stops/LRRchen2"], ["https://tec.openplanner.team/stops/Cfrgivr2", "https://tec.openplanner.team/stops/Cfrsour2"], ["https://tec.openplanner.team/stops/N308afb", "https://tec.openplanner.team/stops/N308ayb"], ["https://tec.openplanner.team/stops/H4be111a", "https://tec.openplanner.team/stops/H4be112b"], ["https://tec.openplanner.team/stops/N360aea", "https://tec.openplanner.team/stops/X892aia"], ["https://tec.openplanner.team/stops/Blpglon1", "https://tec.openplanner.team/stops/Blpglon2"], ["https://tec.openplanner.team/stops/H1hr116a", "https://tec.openplanner.team/stops/H2pr116a"], ["https://tec.openplanner.team/stops/Cgogrco1", "https://tec.openplanner.team/stops/Ctmmana1"], ["https://tec.openplanner.team/stops/Cbwmato1", "https://tec.openplanner.team/stops/Cmqn5911"], ["https://tec.openplanner.team/stops/Bmonbri1", "https://tec.openplanner.team/stops/Bnivlai1"], ["https://tec.openplanner.team/stops/LSGcarr1", "https://tec.openplanner.team/stops/LVEmoul1"], ["https://tec.openplanner.team/stops/N501fxa", "https://tec.openplanner.team/stops/N501gzz"], ["https://tec.openplanner.team/stops/X877aab", "https://tec.openplanner.team/stops/X877aga"], ["https://tec.openplanner.team/stops/N501grf", "https://tec.openplanner.team/stops/N501mha"], ["https://tec.openplanner.team/stops/H4ty282a", "https://tec.openplanner.team/stops/H4ty283b"], ["https://tec.openplanner.team/stops/Cmlphai1", "https://tec.openplanner.team/stops/Cmlpomm1"], ["https://tec.openplanner.team/stops/N534ara", "https://tec.openplanner.team/stops/N534aua"], ["https://tec.openplanner.team/stops/X745aea", "https://tec.openplanner.team/stops/X745aeb"], ["https://tec.openplanner.team/stops/Cfaterg3", "https://tec.openplanner.team/stops/Cfaterg6"], ["https://tec.openplanner.team/stops/N127afa", "https://tec.openplanner.team/stops/N127bfa"], ["https://tec.openplanner.team/stops/H4ea128b", "https://tec.openplanner.team/stops/H4ea129b"], ["https://tec.openplanner.team/stops/X605aca", "https://tec.openplanner.team/stops/X605ada"], ["https://tec.openplanner.team/stops/N506aba", "https://tec.openplanner.team/stops/N506aca"], ["https://tec.openplanner.team/stops/H4ty307a", "https://tec.openplanner.team/stops/H4ty334b"], ["https://tec.openplanner.team/stops/NR27aaa", "https://tec.openplanner.team/stops/NR27aba"], ["https://tec.openplanner.team/stops/N104aca", "https://tec.openplanner.team/stops/N104aeb"], ["https://tec.openplanner.team/stops/Clshafa1", "https://tec.openplanner.team/stops/H1me118a"], ["https://tec.openplanner.team/stops/H4wa155a", "https://tec.openplanner.team/stops/H4wa156b"], ["https://tec.openplanner.team/stops/Bcercsa2", "https://tec.openplanner.team/stops/Bcsempl2"], ["https://tec.openplanner.team/stops/Lcacasi1", "https://tec.openplanner.team/stops/Lcapisc1"], ["https://tec.openplanner.team/stops/Llojeme2", "https://tec.openplanner.team/stops/Llojeme4"], ["https://tec.openplanner.team/stops/H1bb146b", "https://tec.openplanner.team/stops/H1do120b"], ["https://tec.openplanner.team/stops/X921aia", "https://tec.openplanner.team/stops/X921ara"], ["https://tec.openplanner.team/stops/LFAtomb1", "https://tec.openplanner.team/stops/LLTther2"], ["https://tec.openplanner.team/stops/Cluplve3", "https://tec.openplanner.team/stops/Cvvcime1"], ["https://tec.openplanner.team/stops/Llgbois1", "https://tec.openplanner.team/stops/Llgwild6"], ["https://tec.openplanner.team/stops/N308aia", "https://tec.openplanner.team/stops/N308ala"], ["https://tec.openplanner.team/stops/N120aib", "https://tec.openplanner.team/stops/N167ahb"], ["https://tec.openplanner.team/stops/Csebasc2", "https://tec.openplanner.team/stops/Cselibe2"], ["https://tec.openplanner.team/stops/LaAkapi1", "https://tec.openplanner.team/stops/LaAkapi2"], ["https://tec.openplanner.team/stops/H1ha196a", "https://tec.openplanner.team/stops/H1ha199a"], ["https://tec.openplanner.team/stops/X394afb", "https://tec.openplanner.team/stops/X394aga"], ["https://tec.openplanner.team/stops/N232bza", "https://tec.openplanner.team/stops/N232bzb"], ["https://tec.openplanner.team/stops/LRRecsc*", "https://tec.openplanner.team/stops/LRRelec2"], ["https://tec.openplanner.team/stops/X614aoa", "https://tec.openplanner.team/stops/X614apb"], ["https://tec.openplanner.team/stops/X762aca", "https://tec.openplanner.team/stops/X786ajb"], ["https://tec.openplanner.team/stops/Ljufler2", "https://tec.openplanner.team/stops/Lsweg--1"], ["https://tec.openplanner.team/stops/N311aaa", "https://tec.openplanner.team/stops/N311aba"], ["https://tec.openplanner.team/stops/Bborbif2", "https://tec.openplanner.team/stops/Bborppa1"], ["https://tec.openplanner.team/stops/LAibego1", "https://tec.openplanner.team/stops/Lfhmarn2"], ["https://tec.openplanner.team/stops/H4bd107b", "https://tec.openplanner.team/stops/H4bd111a"], ["https://tec.openplanner.team/stops/N116aad", "https://tec.openplanner.team/stops/N118avb"], ["https://tec.openplanner.team/stops/N122aca", "https://tec.openplanner.team/stops/N122adb"], ["https://tec.openplanner.team/stops/LAIrout2", "https://tec.openplanner.team/stops/LCschen2"], ["https://tec.openplanner.team/stops/Cgrchfe1", "https://tec.openplanner.team/stops/Clvmesa1"], ["https://tec.openplanner.team/stops/LrDhind1", "https://tec.openplanner.team/stops/LrDkirc1"], ["https://tec.openplanner.team/stops/N534apg", "https://tec.openplanner.team/stops/N534awb"], ["https://tec.openplanner.team/stops/N509aua", "https://tec.openplanner.team/stops/N509aub"], ["https://tec.openplanner.team/stops/Cpclarm1", "https://tec.openplanner.team/stops/Cpclarm2"], ["https://tec.openplanner.team/stops/LNEgare*", "https://tec.openplanner.team/stops/LNEvpn-1"], ["https://tec.openplanner.team/stops/H2ma263a", "https://tec.openplanner.team/stops/H2ma265a"], ["https://tec.openplanner.team/stops/Bwatcro1", "https://tec.openplanner.team/stops/Bwatifr1"], ["https://tec.openplanner.team/stops/X758ada", "https://tec.openplanner.team/stops/X758aea"], ["https://tec.openplanner.team/stops/Cfabaty2", "https://tec.openplanner.team/stops/Cfanoci1"], ["https://tec.openplanner.team/stops/LHrfang1", "https://tec.openplanner.team/stops/LHrparc1"], ["https://tec.openplanner.team/stops/Lsnfont1", "https://tec.openplanner.team/stops/Ltithie2"], ["https://tec.openplanner.team/stops/LPLfp2-1", "https://tec.openplanner.team/stops/LPLheid2"], ["https://tec.openplanner.team/stops/N353adb", "https://tec.openplanner.team/stops/N353aha"], ["https://tec.openplanner.team/stops/Bwaucan1", "https://tec.openplanner.team/stops/Bwaurge1"], ["https://tec.openplanner.team/stops/X801abc", "https://tec.openplanner.team/stops/X801aca"], ["https://tec.openplanner.team/stops/Bwavdel1", "https://tec.openplanner.team/stops/Bwavfbe2"], ["https://tec.openplanner.team/stops/X741alb", "https://tec.openplanner.team/stops/X840aea"], ["https://tec.openplanner.team/stops/N244aib", "https://tec.openplanner.team/stops/N287adb"], ["https://tec.openplanner.team/stops/LXhjupr3", "https://tec.openplanner.team/stops/LXhnouv1"], ["https://tec.openplanner.team/stops/Lgrecpe1", "https://tec.openplanner.team/stops/Lgrmagd1"], ["https://tec.openplanner.team/stops/LFmgeno1", "https://tec.openplanner.team/stops/LFmroye2"], ["https://tec.openplanner.team/stops/X723anb", "https://tec.openplanner.team/stops/X724afb"], ["https://tec.openplanner.team/stops/Lpeptra2", "https://tec.openplanner.team/stops/Lpevove1"], ["https://tec.openplanner.team/stops/LRErive2", "https://tec.openplanner.team/stops/LREsp902"], ["https://tec.openplanner.team/stops/Bjodcad2", "https://tec.openplanner.team/stops/Bjodsme2"], ["https://tec.openplanner.team/stops/X740aca", "https://tec.openplanner.team/stops/X740ada"], ["https://tec.openplanner.team/stops/H2sb231a", "https://tec.openplanner.team/stops/H2sb231c"], ["https://tec.openplanner.team/stops/Blanath1", "https://tec.openplanner.team/stops/LLasta-*"], ["https://tec.openplanner.team/stops/H1ob330a", "https://tec.openplanner.team/stops/H1ob341a"], ["https://tec.openplanner.team/stops/Clddeve2", "https://tec.openplanner.team/stops/Cldplac1"], ["https://tec.openplanner.team/stops/N501apa", "https://tec.openplanner.team/stops/N501bca"], ["https://tec.openplanner.team/stops/LOnec--1", "https://tec.openplanner.team/stops/LXopier1"], ["https://tec.openplanner.team/stops/Cmtplac3", "https://tec.openplanner.team/stops/Cmtplac8"], ["https://tec.openplanner.team/stops/X811aba", "https://tec.openplanner.team/stops/X811acb"], ["https://tec.openplanner.team/stops/N531apa", "https://tec.openplanner.team/stops/N531aqb"], ["https://tec.openplanner.team/stops/X602afa", "https://tec.openplanner.team/stops/X602agb"], ["https://tec.openplanner.team/stops/X674aaa", "https://tec.openplanner.team/stops/X820aga"], ["https://tec.openplanner.team/stops/X601cwa", "https://tec.openplanner.team/stops/X601dca"], ["https://tec.openplanner.team/stops/N501daa", "https://tec.openplanner.team/stops/N528akb"], ["https://tec.openplanner.team/stops/N894agc", "https://tec.openplanner.team/stops/N894age"], ["https://tec.openplanner.team/stops/Cnaplan2", "https://tec.openplanner.team/stops/Cnaplbu1"], ["https://tec.openplanner.team/stops/N501hra", "https://tec.openplanner.team/stops/N501hua"], ["https://tec.openplanner.team/stops/H2sb228d", "https://tec.openplanner.team/stops/H2tr248b"], ["https://tec.openplanner.team/stops/Loudela1", "https://tec.openplanner.team/stops/Loutroi1"], ["https://tec.openplanner.team/stops/H1do115a", "https://tec.openplanner.team/stops/H1do120a"], ["https://tec.openplanner.team/stops/X804apb", "https://tec.openplanner.team/stops/X805afb"], ["https://tec.openplanner.team/stops/LRmkerk1", "https://tec.openplanner.team/stops/LRmstat1"], ["https://tec.openplanner.team/stops/LHAclin2", "https://tec.openplanner.team/stops/LVIdeva2"], ["https://tec.openplanner.team/stops/Btubmfa1", "https://tec.openplanner.team/stops/Btubmfa2"], ["https://tec.openplanner.team/stops/X666ahb", "https://tec.openplanner.team/stops/X745aeb"], ["https://tec.openplanner.team/stops/H1he102a", "https://tec.openplanner.team/stops/H1he106a"], ["https://tec.openplanner.team/stops/N217aba", "https://tec.openplanner.team/stops/N217ada"], ["https://tec.openplanner.team/stops/H1ni318b", "https://tec.openplanner.team/stops/H1ni321a"], ["https://tec.openplanner.team/stops/H1ca108a", "https://tec.openplanner.team/stops/H1th183a"], ["https://tec.openplanner.team/stops/N541ada", "https://tec.openplanner.team/stops/N541aea"], ["https://tec.openplanner.team/stops/Bbghgli1", "https://tec.openplanner.team/stops/Bbghpln1"], ["https://tec.openplanner.team/stops/Bbcoubo2", "https://tec.openplanner.team/stops/H3br101a"], ["https://tec.openplanner.team/stops/LOUchen1", "https://tec.openplanner.team/stops/LOUsorb1"], ["https://tec.openplanner.team/stops/LBdcime2", "https://tec.openplanner.team/stops/LBdmarr2"], ["https://tec.openplanner.team/stops/H4ne139b", "https://tec.openplanner.team/stops/H4tf147b"], ["https://tec.openplanner.team/stops/H1fr107d", "https://tec.openplanner.team/stops/H1fr107e"], ["https://tec.openplanner.team/stops/LCIcent1", "https://tec.openplanner.team/stops/LCIpiet2"], ["https://tec.openplanner.team/stops/N508aob", "https://tec.openplanner.team/stops/N509aab"], ["https://tec.openplanner.team/stops/Bbgnvel2", "https://tec.openplanner.team/stops/Cwfplac2"], ["https://tec.openplanner.team/stops/N573ama", "https://tec.openplanner.team/stops/N573amb"], ["https://tec.openplanner.team/stops/X764aba", "https://tec.openplanner.team/stops/X764abb"], ["https://tec.openplanner.team/stops/Bwav4sa1", "https://tec.openplanner.team/stops/Bwavlon2"], ["https://tec.openplanner.team/stops/NR21aab", "https://tec.openplanner.team/stops/NR21abc"], ["https://tec.openplanner.team/stops/Cgpcime1", "https://tec.openplanner.team/stops/Cgpcime2"], ["https://tec.openplanner.team/stops/N507alc", "https://tec.openplanner.team/stops/N512atb"], ["https://tec.openplanner.team/stops/N531aca", "https://tec.openplanner.team/stops/N531acb"], ["https://tec.openplanner.team/stops/LmTgers2", "https://tec.openplanner.team/stops/LrTpost1"], ["https://tec.openplanner.team/stops/H1je218a", "https://tec.openplanner.team/stops/H1ms929a"], ["https://tec.openplanner.team/stops/H1at110a", "https://tec.openplanner.team/stops/H1fy119a"], ["https://tec.openplanner.team/stops/LNCgene1", "https://tec.openplanner.team/stops/LNClila2"], ["https://tec.openplanner.team/stops/N501anz", "https://tec.openplanner.team/stops/N501ncb"], ["https://tec.openplanner.team/stops/X645aab", "https://tec.openplanner.team/stops/X645aba"], ["https://tec.openplanner.team/stops/Buccham1", "https://tec.openplanner.team/stops/Buccham2"], ["https://tec.openplanner.team/stops/Cfcgar2", "https://tec.openplanner.team/stops/Cfcpcov1"], ["https://tec.openplanner.team/stops/H1ho122c", "https://tec.openplanner.team/stops/H1ho136a"], ["https://tec.openplanner.team/stops/NL76ana", "https://tec.openplanner.team/stops/NL76anb"], ["https://tec.openplanner.team/stops/Bhalber3", "https://tec.openplanner.team/stops/Bhalpar3"], ["https://tec.openplanner.team/stops/H4ep129a", "https://tec.openplanner.team/stops/H4rm110a"], ["https://tec.openplanner.team/stops/Cmmadma2", "https://tec.openplanner.team/stops/Cmmceri2"], ["https://tec.openplanner.team/stops/N117ana", "https://tec.openplanner.team/stops/N117aoc"], ["https://tec.openplanner.team/stops/N551apa", "https://tec.openplanner.team/stops/N551apb"], ["https://tec.openplanner.team/stops/Lcealig1", "https://tec.openplanner.team/stops/Lceavia1"], ["https://tec.openplanner.team/stops/Ljuargi1", "https://tec.openplanner.team/stops/Ljuchaf2"], ["https://tec.openplanner.team/stops/X777aaa", "https://tec.openplanner.team/stops/X777aba"], ["https://tec.openplanner.team/stops/H4bo113b", "https://tec.openplanner.team/stops/H4bo118c"], ["https://tec.openplanner.team/stops/LBNforg1", "https://tec.openplanner.team/stops/LBNforg2"], ["https://tec.openplanner.team/stops/X601afa", "https://tec.openplanner.team/stops/X601bta"], ["https://tec.openplanner.team/stops/H1ha198a", "https://tec.openplanner.team/stops/H1ha198b"], ["https://tec.openplanner.team/stops/N501csa", "https://tec.openplanner.team/stops/N501csb"], ["https://tec.openplanner.team/stops/H1ha192b", "https://tec.openplanner.team/stops/H3go100b"], ["https://tec.openplanner.team/stops/Csygare2", "https://tec.openplanner.team/stops/Csygare3"], ["https://tec.openplanner.team/stops/N122aha", "https://tec.openplanner.team/stops/N122ahb"], ["https://tec.openplanner.team/stops/Lseblan*", "https://tec.openplanner.team/stops/Lsemyrt1"], ["https://tec.openplanner.team/stops/LlgPTAV1", "https://tec.openplanner.team/stops/LlgPTAV2"], ["https://tec.openplanner.team/stops/X614ara", "https://tec.openplanner.team/stops/X624aaa"], ["https://tec.openplanner.team/stops/X836aib", "https://tec.openplanner.team/stops/X836aja"], ["https://tec.openplanner.team/stops/Cmyecur1", "https://tec.openplanner.team/stops/Cmyecur2"], ["https://tec.openplanner.team/stops/H1em106a", "https://tec.openplanner.team/stops/H1fa120a"], ["https://tec.openplanner.team/stops/LmEdorf1", "https://tec.openplanner.team/stops/LmNmerl2"], ["https://tec.openplanner.team/stops/Bdonlat2", "https://tec.openplanner.team/stops/Binccha1"], ["https://tec.openplanner.team/stops/Lhrferr1", "https://tec.openplanner.team/stops/Lhrferr2"], ["https://tec.openplanner.team/stops/H1fr115a", "https://tec.openplanner.team/stops/H1fr122a"], ["https://tec.openplanner.team/stops/Bhoemel2", "https://tec.openplanner.team/stops/Blhugai1"], ["https://tec.openplanner.team/stops/X876aab", "https://tec.openplanner.team/stops/X877adb"], ["https://tec.openplanner.team/stops/LhSschn2", "https://tec.openplanner.team/stops/LwAschu1"], ["https://tec.openplanner.team/stops/H1si164a", "https://tec.openplanner.team/stops/H1si164b"], ["https://tec.openplanner.team/stops/H4pl115a", "https://tec.openplanner.team/stops/H4pl122b"], ["https://tec.openplanner.team/stops/Ladandr1", "https://tec.openplanner.team/stops/Ldimeun1"], ["https://tec.openplanner.team/stops/X911ata", "https://tec.openplanner.team/stops/X912aaa"], ["https://tec.openplanner.team/stops/Bhercsj2", "https://tec.openplanner.team/stops/Bpiehte1"], ["https://tec.openplanner.team/stops/Bpelegl1", "https://tec.openplanner.team/stops/Bpelegl3"], ["https://tec.openplanner.team/stops/Cgocalv3", "https://tec.openplanner.team/stops/CMcalv2"], ["https://tec.openplanner.team/stops/Cdalpla2", "https://tec.openplanner.team/stops/CMdesc1"], ["https://tec.openplanner.team/stops/N543bda", "https://tec.openplanner.team/stops/N566aea"], ["https://tec.openplanner.team/stops/LLUmc--1", "https://tec.openplanner.team/stops/LLUmont1"], ["https://tec.openplanner.team/stops/H3so167a", "https://tec.openplanner.team/stops/H3so174a"], ["https://tec.openplanner.team/stops/X687aca", "https://tec.openplanner.team/stops/X687ada"], ["https://tec.openplanner.team/stops/Cflmart2", "https://tec.openplanner.team/stops/Clacast1"], ["https://tec.openplanner.team/stops/Ladarev1", "https://tec.openplanner.team/stops/Ladxhen2"], ["https://tec.openplanner.team/stops/X364aaa", "https://tec.openplanner.team/stops/X371aib"], ["https://tec.openplanner.team/stops/Lsebico2", "https://tec.openplanner.team/stops/Lsehosp2"], ["https://tec.openplanner.team/stops/H1qu109b", "https://tec.openplanner.team/stops/H1qu119b"], ["https://tec.openplanner.team/stops/H1gi120d", "https://tec.openplanner.team/stops/H1hm176a"], ["https://tec.openplanner.team/stops/LHegame1", "https://tec.openplanner.team/stops/LHemoul1"], ["https://tec.openplanner.team/stops/X688aab", "https://tec.openplanner.team/stops/X688aba"], ["https://tec.openplanner.team/stops/LMgbatt1", "https://tec.openplanner.team/stops/LMgberw1"], ["https://tec.openplanner.team/stops/Bpthcgo1", "https://tec.openplanner.team/stops/Bwanthi1"], ["https://tec.openplanner.team/stops/LBPmais1", "https://tec.openplanner.team/stops/LBPmili2"], ["https://tec.openplanner.team/stops/Lbococh2", "https://tec.openplanner.team/stops/Lbotige1"], ["https://tec.openplanner.team/stops/X818ala", "https://tec.openplanner.team/stops/X818amb"], ["https://tec.openplanner.team/stops/X822ajb", "https://tec.openplanner.team/stops/X822alb"], ["https://tec.openplanner.team/stops/X614acb", "https://tec.openplanner.team/stops/X614ara"], ["https://tec.openplanner.team/stops/LsCback1", "https://tec.openplanner.team/stops/LsCback2"], ["https://tec.openplanner.team/stops/Ctubpos1", "https://tec.openplanner.team/stops/Cturoge1"], ["https://tec.openplanner.team/stops/Cgofert2", "https://tec.openplanner.team/stops/Cgosmoi2"], ["https://tec.openplanner.team/stops/Cchdrai2", "https://tec.openplanner.team/stops/Cchjaur2"], ["https://tec.openplanner.team/stops/H1vh136c", "https://tec.openplanner.team/stops/H3go103a"], ["https://tec.openplanner.team/stops/X896aaa", "https://tec.openplanner.team/stops/X896aab"], ["https://tec.openplanner.team/stops/Bgntcoo2", "https://tec.openplanner.team/stops/Bgntpla1"], ["https://tec.openplanner.team/stops/LTRoasi2", "https://tec.openplanner.team/stops/LTRsain2"], ["https://tec.openplanner.team/stops/Lagsauh2", "https://tec.openplanner.team/stops/Lemjoba1"], ["https://tec.openplanner.team/stops/LHAcite2", "https://tec.openplanner.team/stops/LHAprei2"], ["https://tec.openplanner.team/stops/X923aaa", "https://tec.openplanner.team/stops/X923aka"], ["https://tec.openplanner.team/stops/LmYwall2", "https://tec.openplanner.team/stops/LsVgend2"], ["https://tec.openplanner.team/stops/Llgcoti*", "https://tec.openplanner.team/stops/Llgtawe0"], ["https://tec.openplanner.team/stops/LBNpleg2", "https://tec.openplanner.team/stops/LBNplei1"], ["https://tec.openplanner.team/stops/LTRchpl1", "https://tec.openplanner.team/stops/LTRgare4"], ["https://tec.openplanner.team/stops/X925aea", "https://tec.openplanner.team/stops/X996aaa"], ["https://tec.openplanner.team/stops/X993aeb", "https://tec.openplanner.team/stops/X993aib"], ["https://tec.openplanner.team/stops/H1mm127b", "https://tec.openplanner.team/stops/H1vb148a"], ["https://tec.openplanner.team/stops/Llgstev1", "https://tec.openplanner.team/stops/Lscatme1"], ["https://tec.openplanner.team/stops/Cctathe2", "https://tec.openplanner.team/stops/Cctjoue6"], ["https://tec.openplanner.team/stops/Lgrramp2", "https://tec.openplanner.team/stops/Llggrav1"], ["https://tec.openplanner.team/stops/LRacime2", "https://tec.openplanner.team/stops/LRaplac1"], ["https://tec.openplanner.team/stops/Btanbth2", "https://tec.openplanner.team/stops/Btanpla2"], ["https://tec.openplanner.team/stops/Cwfcast2", "https://tec.openplanner.team/stops/NC23aga"], ["https://tec.openplanner.team/stops/N551aib", "https://tec.openplanner.team/stops/N551aka"], ["https://tec.openplanner.team/stops/X811afb", "https://tec.openplanner.team/stops/X811aja"], ["https://tec.openplanner.team/stops/Cgymast1", "https://tec.openplanner.team/stops/Cgyrrep1"], ["https://tec.openplanner.team/stops/Lbocruc1", "https://tec.openplanner.team/stops/Lbomc--4"], ["https://tec.openplanner.team/stops/N531aub", "https://tec.openplanner.team/stops/N568abb"], ["https://tec.openplanner.team/stops/LBThaut1", "https://tec.openplanner.team/stops/LMheg--2"], ["https://tec.openplanner.team/stops/Cmlbuis4", "https://tec.openplanner.team/stops/Cmlphai2"], ["https://tec.openplanner.team/stops/Bndbdra1", "https://tec.openplanner.team/stops/Bptbsar1"], ["https://tec.openplanner.team/stops/N556afa", "https://tec.openplanner.team/stops/N557aia"], ["https://tec.openplanner.team/stops/LESflag1", "https://tec.openplanner.team/stops/LTIchev1"], ["https://tec.openplanner.team/stops/LAMec--1", "https://tec.openplanner.team/stops/LAMgreg2"], ["https://tec.openplanner.team/stops/Cprvsar1", "https://tec.openplanner.team/stops/Cprvsar2"], ["https://tec.openplanner.team/stops/X806aga", "https://tec.openplanner.team/stops/X873aba"], ["https://tec.openplanner.team/stops/H4ty303a", "https://tec.openplanner.team/stops/H4ty354b"], ["https://tec.openplanner.team/stops/LJAboli2", "https://tec.openplanner.team/stops/LJAwerf2"], ["https://tec.openplanner.team/stops/LSXbecc2", "https://tec.openplanner.team/stops/LTHchiv2"], ["https://tec.openplanner.team/stops/X610aab", "https://tec.openplanner.team/stops/X610acb"], ["https://tec.openplanner.team/stops/LTNcarr2", "https://tec.openplanner.team/stops/LTNegli2"], ["https://tec.openplanner.team/stops/Lvecite3", "https://tec.openplanner.team/stops/Lvegest2"], ["https://tec.openplanner.team/stops/Bwatali1", "https://tec.openplanner.team/stops/Bwatcoq1"], ["https://tec.openplanner.team/stops/Bblapri1", "https://tec.openplanner.team/stops/Bblapri2"], ["https://tec.openplanner.team/stops/H4fa127b", "https://tec.openplanner.team/stops/H4fa167b"], ["https://tec.openplanner.team/stops/Crcrlf1", "https://tec.openplanner.team/stops/Csufrom6"], ["https://tec.openplanner.team/stops/X364abb", "https://tec.openplanner.team/stops/X364ada"], ["https://tec.openplanner.team/stops/H4ta115b", "https://tec.openplanner.team/stops/H4ta127b"], ["https://tec.openplanner.team/stops/Cchparc5", "https://tec.openplanner.team/stops/NC01ahb"], ["https://tec.openplanner.team/stops/Bnodcab1", "https://tec.openplanner.team/stops/Boplsma4"], ["https://tec.openplanner.team/stops/N540apa", "https://tec.openplanner.team/stops/N540apb"], ["https://tec.openplanner.team/stops/H4av103a", "https://tec.openplanner.team/stops/H4wt160b"], ["https://tec.openplanner.team/stops/Llgbene1", "https://tec.openplanner.team/stops/Llgmean2"], ["https://tec.openplanner.team/stops/N313aca", "https://tec.openplanner.team/stops/N313adb"], ["https://tec.openplanner.team/stops/N552aca", "https://tec.openplanner.team/stops/N552acb"], ["https://tec.openplanner.team/stops/LTigera1", "https://tec.openplanner.team/stops/LTigera2"], ["https://tec.openplanner.team/stops/Lrecomp2", "https://tec.openplanner.team/stops/Lremonu1"], ["https://tec.openplanner.team/stops/Lgrclin3", "https://tec.openplanner.team/stops/Lvc4bra1"], ["https://tec.openplanner.team/stops/LVu03--2", "https://tec.openplanner.team/stops/LVukabi2"], ["https://tec.openplanner.team/stops/Bettgar1", "https://tec.openplanner.team/stops/Bixefra1"], ["https://tec.openplanner.team/stops/Bgrhcro1", "https://tec.openplanner.team/stops/Bgrhcro2"], ["https://tec.openplanner.team/stops/Bmlnsms2", "https://tec.openplanner.team/stops/Brxmcna1"], ["https://tec.openplanner.team/stops/H4gu106a", "https://tec.openplanner.team/stops/H4ta126b"], ["https://tec.openplanner.team/stops/Cmmecol2", "https://tec.openplanner.team/stops/Cmmpast2"], ["https://tec.openplanner.team/stops/Cfachap1", "https://tec.openplanner.team/stops/Cfanoci1"], ["https://tec.openplanner.team/stops/X823aaa", "https://tec.openplanner.team/stops/X824aka"], ["https://tec.openplanner.team/stops/N531alb", "https://tec.openplanner.team/stops/N531ama"], ["https://tec.openplanner.team/stops/X664afa", "https://tec.openplanner.team/stops/X664afb"], ["https://tec.openplanner.team/stops/Lccawir1", "https://tec.openplanner.team/stops/Lccawir4"], ["https://tec.openplanner.team/stops/X940aab", "https://tec.openplanner.team/stops/X948atb"], ["https://tec.openplanner.team/stops/Bfelcen2", "https://tec.openplanner.team/stops/Bfelpla2"], ["https://tec.openplanner.team/stops/N248acb", "https://tec.openplanner.team/stops/N248adb"], ["https://tec.openplanner.team/stops/Lghferr1", "https://tec.openplanner.team/stops/Lghvold2"], ["https://tec.openplanner.team/stops/LwTkabi3", "https://tec.openplanner.team/stops/LwTzent2"], ["https://tec.openplanner.team/stops/Lghmavi1", "https://tec.openplanner.team/stops/Lghsimo2"], ["https://tec.openplanner.team/stops/N557aca", "https://tec.openplanner.team/stops/N557ajb"], ["https://tec.openplanner.team/stops/LeUmeie1", "https://tec.openplanner.team/stops/LeUmeie2"], ["https://tec.openplanner.team/stops/Bdvmc031", "https://tec.openplanner.team/stops/Bgzdgpa1"], ["https://tec.openplanner.team/stops/LMechpl2", "https://tec.openplanner.team/stops/LMeperk2"], ["https://tec.openplanner.team/stops/Lbrchur1", "https://tec.openplanner.team/stops/Lbrlama1"], ["https://tec.openplanner.team/stops/X681aeb", "https://tec.openplanner.team/stops/X687aga"], ["https://tec.openplanner.team/stops/X897ada", "https://tec.openplanner.team/stops/X897aea"], ["https://tec.openplanner.team/stops/Btsllec2", "https://tec.openplanner.team/stops/Btsllfp2"], ["https://tec.openplanner.team/stops/Bnivphs2", "https://tec.openplanner.team/stops/Bnivrsh2"], ["https://tec.openplanner.team/stops/Lmochpl1", "https://tec.openplanner.team/stops/Lmogoff1"], ["https://tec.openplanner.team/stops/LLYcalv1", "https://tec.openplanner.team/stops/LTOeg--1"], ["https://tec.openplanner.team/stops/N254abb", "https://tec.openplanner.team/stops/N254ahb"], ["https://tec.openplanner.team/stops/X950adb", "https://tec.openplanner.team/stops/X955aba"], ["https://tec.openplanner.team/stops/Bbuzcom1", "https://tec.openplanner.team/stops/Bbuzcom2"], ["https://tec.openplanner.team/stops/Ccucorb2", "https://tec.openplanner.team/stops/Ccucorb3"], ["https://tec.openplanner.team/stops/N232aha", "https://tec.openplanner.team/stops/N261abb"], ["https://tec.openplanner.team/stops/Buccham2", "https://tec.openplanner.team/stops/Buccron2"], ["https://tec.openplanner.team/stops/N135akb", "https://tec.openplanner.team/stops/N135alb"], ["https://tec.openplanner.team/stops/Bspkkhe1", "https://tec.openplanner.team/stops/Bspkkhe2"], ["https://tec.openplanner.team/stops/X636bba", "https://tec.openplanner.team/stops/X636bbb"], ["https://tec.openplanner.team/stops/H4mo175a", "https://tec.openplanner.team/stops/H4mo181d"], ["https://tec.openplanner.team/stops/X790aaa", "https://tec.openplanner.team/stops/X790aja"], ["https://tec.openplanner.team/stops/H1ch143a", "https://tec.openplanner.team/stops/H4ld123a"], ["https://tec.openplanner.team/stops/Baegpon3", "https://tec.openplanner.team/stops/Bramgar1"], ["https://tec.openplanner.team/stops/Bgemrom3", "https://tec.openplanner.team/stops/Bgrmfon1"], ["https://tec.openplanner.team/stops/X804bta", "https://tec.openplanner.team/stops/X804cba"], ["https://tec.openplanner.team/stops/Bsoihci1", "https://tec.openplanner.team/stops/H3so170b"], ["https://tec.openplanner.team/stops/Ladjuif2", "https://tec.openplanner.team/stops/Ladlaur1"], ["https://tec.openplanner.team/stops/LBAfort2", "https://tec.openplanner.team/stops/Lchsa631"], ["https://tec.openplanner.team/stops/Bblmpro2", "https://tec.openplanner.team/stops/Bchamco1"], ["https://tec.openplanner.team/stops/LAChann2", "https://tec.openplanner.team/stops/NL74aea"], ["https://tec.openplanner.team/stops/N120anb", "https://tec.openplanner.team/stops/N248aab"], ["https://tec.openplanner.team/stops/LBajean1", "https://tec.openplanner.team/stops/LBapeup1"], ["https://tec.openplanner.team/stops/Lbeloui1", "https://tec.openplanner.team/stops/LMFmerl2"], ["https://tec.openplanner.team/stops/Lpeatel2", "https://tec.openplanner.team/stops/Lpesart2"], ["https://tec.openplanner.team/stops/X660aeb", "https://tec.openplanner.team/stops/X840aab"], ["https://tec.openplanner.team/stops/Bcercab2", "https://tec.openplanner.team/stops/Bcerpco2"], ["https://tec.openplanner.team/stops/Lvcbasi*", "https://tec.openplanner.team/stops/Lvchenn2"], ["https://tec.openplanner.team/stops/Brixbou1", "https://tec.openplanner.team/stops/Brixdec2"], ["https://tec.openplanner.team/stops/LAMfrai1", "https://tec.openplanner.team/stops/LAMhaut2"], ["https://tec.openplanner.team/stops/X768aba", "https://tec.openplanner.team/stops/X768aha"], ["https://tec.openplanner.team/stops/H1bs110c", "https://tec.openplanner.team/stops/H1ge116b"], ["https://tec.openplanner.team/stops/N204aeb", "https://tec.openplanner.team/stops/N559acb"], ["https://tec.openplanner.team/stops/H4ln155a", "https://tec.openplanner.team/stops/H4wa153b"], ["https://tec.openplanner.team/stops/LPohoeg2", "https://tec.openplanner.team/stops/LPoxhav1"], ["https://tec.openplanner.team/stops/LAufech1", "https://tec.openplanner.team/stops/LAumari1"], ["https://tec.openplanner.team/stops/NL77acb", "https://tec.openplanner.team/stops/NL77ada"], ["https://tec.openplanner.team/stops/Blasbti1", "https://tec.openplanner.team/stops/Blasbti2"], ["https://tec.openplanner.team/stops/LTyhapp2", "https://tec.openplanner.team/stops/LTyhapp3"], ["https://tec.openplanner.team/stops/N501lfb", "https://tec.openplanner.team/stops/N501lja"], ["https://tec.openplanner.team/stops/H2ca104a", "https://tec.openplanner.team/stops/H2ca104b"], ["https://tec.openplanner.team/stops/H2fa107a", "https://tec.openplanner.team/stops/H2fa109a"], ["https://tec.openplanner.team/stops/N514amb", "https://tec.openplanner.team/stops/N514aob"], ["https://tec.openplanner.team/stops/LESamos2", "https://tec.openplanner.team/stops/LESfoot2"], ["https://tec.openplanner.team/stops/LAWcite2", "https://tec.openplanner.team/stops/LAWjaur1"], ["https://tec.openplanner.team/stops/Bblaccm1", "https://tec.openplanner.team/stops/Bblamsj2"], ["https://tec.openplanner.team/stops/H4lz127b", "https://tec.openplanner.team/stops/H4tp146b"], ["https://tec.openplanner.team/stops/N118aea", "https://tec.openplanner.team/stops/N118afa"], ["https://tec.openplanner.team/stops/Bbounci1", "https://tec.openplanner.team/stops/Bbounci2"], ["https://tec.openplanner.team/stops/Cjochap2", "https://tec.openplanner.team/stops/NC24aib"], ["https://tec.openplanner.team/stops/LHMec--2", "https://tec.openplanner.team/stops/LRmmabr2"], ["https://tec.openplanner.team/stops/X721aaa", "https://tec.openplanner.team/stops/X721aab"], ["https://tec.openplanner.team/stops/H2hp262a", "https://tec.openplanner.team/stops/H2hp262b"], ["https://tec.openplanner.team/stops/X942abb", "https://tec.openplanner.team/stops/X942aea"], ["https://tec.openplanner.team/stops/X880afa", "https://tec.openplanner.team/stops/X880aga"], ["https://tec.openplanner.team/stops/H1ma234a", "https://tec.openplanner.team/stops/H1ma234b"], ["https://tec.openplanner.team/stops/X999apb", "https://tec.openplanner.team/stops/X999asb"], ["https://tec.openplanner.team/stops/X904aca", "https://tec.openplanner.team/stops/X904adb"], ["https://tec.openplanner.team/stops/Lreclou2", "https://tec.openplanner.team/stops/Lrecroi1"], ["https://tec.openplanner.team/stops/Ljemake1", "https://tec.openplanner.team/stops/Ljemake2"], ["https://tec.openplanner.team/stops/LiVdorf1", "https://tec.openplanner.team/stops/LmOkape1"], ["https://tec.openplanner.team/stops/Bbeagae2", "https://tec.openplanner.team/stops/Bmlngvi2"], ["https://tec.openplanner.team/stops/N236afa", "https://tec.openplanner.team/stops/N254adb"], ["https://tec.openplanner.team/stops/Lbosart1", "https://tec.openplanner.team/stops/Lbosart2"], ["https://tec.openplanner.team/stops/X769abb", "https://tec.openplanner.team/stops/X769aca"], ["https://tec.openplanner.team/stops/Bblager1", "https://tec.openplanner.team/stops/Bblapet1"], ["https://tec.openplanner.team/stops/N117aub", "https://tec.openplanner.team/stops/N117ayb"], ["https://tec.openplanner.team/stops/Bcbqa362", "https://tec.openplanner.team/stops/Bcbqcoi1"], ["https://tec.openplanner.team/stops/LOmrela2", "https://tec.openplanner.team/stops/LRuegli2"], ["https://tec.openplanner.team/stops/X994aib", "https://tec.openplanner.team/stops/X994ala"], ["https://tec.openplanner.team/stops/LVApark2", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://tec.openplanner.team/stops/N501hjd", "https://tec.openplanner.team/stops/N501hlw"], ["https://tec.openplanner.team/stops/N501bta", "https://tec.openplanner.team/stops/N501bwa"], ["https://tec.openplanner.team/stops/Bbosdra2", "https://tec.openplanner.team/stops/Bhoealt2"], ["https://tec.openplanner.team/stops/LVMcent2", "https://tec.openplanner.team/stops/LVMrout2"], ["https://tec.openplanner.team/stops/N347aca", "https://tec.openplanner.team/stops/X346aka"], ["https://tec.openplanner.team/stops/Borbtre2", "https://tec.openplanner.team/stops/Btslpic6"], ["https://tec.openplanner.team/stops/LHNgare2", "https://tec.openplanner.team/stops/LHNtill1"], ["https://tec.openplanner.team/stops/LLecarr3", "https://tec.openplanner.team/stops/X547aja"], ["https://tec.openplanner.team/stops/N232baa", "https://tec.openplanner.team/stops/N232bka"], ["https://tec.openplanner.team/stops/LSZarze3", "https://tec.openplanner.team/stops/LSZprie1"], ["https://tec.openplanner.team/stops/X314aab", "https://tec.openplanner.team/stops/X812acb"], ["https://tec.openplanner.team/stops/LHUpost1", "https://tec.openplanner.team/stops/LHUpost3"], ["https://tec.openplanner.team/stops/X721agb", "https://tec.openplanner.team/stops/X721agc"], ["https://tec.openplanner.team/stops/Cgycime2", "https://tec.openplanner.team/stops/Cgycime3"], ["https://tec.openplanner.team/stops/X780aab", "https://tec.openplanner.team/stops/X790abb"], ["https://tec.openplanner.team/stops/N561aea", "https://tec.openplanner.team/stops/N584aha"], ["https://tec.openplanner.team/stops/Barqbco2", "https://tec.openplanner.team/stops/Bmoncab2"], ["https://tec.openplanner.team/stops/Lbrfoid1", "https://tec.openplanner.team/stops/Lbrfoid3"], ["https://tec.openplanner.team/stops/Bsompri2", "https://tec.openplanner.team/stops/Bsomwav2"], ["https://tec.openplanner.team/stops/H4ty301c", "https://tec.openplanner.team/stops/H4ty301d"], ["https://tec.openplanner.team/stops/Lvcpost1", "https://tec.openplanner.team/stops/Lvcpost2"], ["https://tec.openplanner.team/stops/Cpcha431", "https://tec.openplanner.team/stops/Cpcplac3"], ["https://tec.openplanner.team/stops/Blemwro1", "https://tec.openplanner.team/stops/Btubcal1"], ["https://tec.openplanner.team/stops/Bmlnegl2", "https://tec.openplanner.team/stops/Bmlnegl4"], ["https://tec.openplanner.team/stops/Boppegl2", "https://tec.openplanner.team/stops/Bopplon2"], ["https://tec.openplanner.team/stops/Lhrlalo1", "https://tec.openplanner.team/stops/Lhrlalo3"], ["https://tec.openplanner.team/stops/N564adb", "https://tec.openplanner.team/stops/N585aia"], ["https://tec.openplanner.team/stops/X601aya", "https://tec.openplanner.team/stops/X601aza"], ["https://tec.openplanner.team/stops/LAvambr1", "https://tec.openplanner.team/stops/LAvambr2"], ["https://tec.openplanner.team/stops/N558aea", "https://tec.openplanner.team/stops/N558agb"], ["https://tec.openplanner.team/stops/LHmcarr2", "https://tec.openplanner.team/stops/LHmferm2"], ["https://tec.openplanner.team/stops/LmDbw--*", "https://tec.openplanner.team/stops/LmDelek1"], ["https://tec.openplanner.team/stops/N229anb", "https://tec.openplanner.team/stops/N229aqb"], ["https://tec.openplanner.team/stops/Bllngar5", "https://tec.openplanner.team/stops/Bllngar9"], ["https://tec.openplanner.team/stops/X769aqa", "https://tec.openplanner.team/stops/X769atb"], ["https://tec.openplanner.team/stops/Btlbmel2", "https://tec.openplanner.team/stops/Btlbtbe4"], ["https://tec.openplanner.team/stops/Cnaplha4", "https://tec.openplanner.team/stops/Cnarmon1"], ["https://tec.openplanner.team/stops/Bsences2", "https://tec.openplanner.team/stops/Bsenpeu1"], ["https://tec.openplanner.team/stops/X989aca", "https://tec.openplanner.team/stops/X994ada"], ["https://tec.openplanner.team/stops/H4mv187b", "https://tec.openplanner.team/stops/H4mv190b"], ["https://tec.openplanner.team/stops/LLSba4-1", "https://tec.openplanner.team/stops/LLStour1"], ["https://tec.openplanner.team/stops/LMgberw1", "https://tec.openplanner.team/stops/LMgwith1"], ["https://tec.openplanner.team/stops/X610aea", "https://tec.openplanner.team/stops/X611aba"], ["https://tec.openplanner.team/stops/Bchgvil2", "https://tec.openplanner.team/stops/Bgisber2"], ["https://tec.openplanner.team/stops/Bbstcha2", "https://tec.openplanner.team/stops/Bbstpan2"], ["https://tec.openplanner.team/stops/H1ev113a", "https://tec.openplanner.team/stops/H1ev149a"], ["https://tec.openplanner.team/stops/Bdlvpco1", "https://tec.openplanner.team/stops/Bdvmc032"], ["https://tec.openplanner.team/stops/Bsompri2", "https://tec.openplanner.team/stops/N584awb"], ["https://tec.openplanner.team/stops/Bvxgpro1", "https://tec.openplanner.team/stops/Bvxgpro2"], ["https://tec.openplanner.team/stops/LFdbagu2", "https://tec.openplanner.team/stops/LFdbruy2"], ["https://tec.openplanner.team/stops/LhSschn1", "https://tec.openplanner.team/stops/LhSschn2"], ["https://tec.openplanner.team/stops/X801boa", "https://tec.openplanner.team/stops/X801clb"], ["https://tec.openplanner.team/stops/Lbhfaye1", "https://tec.openplanner.team/stops/Lgrclin4"], ["https://tec.openplanner.team/stops/N507aib", "https://tec.openplanner.team/stops/N507ajb"], ["https://tec.openplanner.team/stops/H4ty295b", "https://tec.openplanner.team/stops/H4ty298a"], ["https://tec.openplanner.team/stops/N308aob", "https://tec.openplanner.team/stops/N312abb"], ["https://tec.openplanner.team/stops/NL68aca", "https://tec.openplanner.team/stops/NL68agb"], ["https://tec.openplanner.team/stops/H4lp124b", "https://tec.openplanner.team/stops/H4pe125a"], ["https://tec.openplanner.team/stops/H1bb120b", "https://tec.openplanner.team/stops/H1do130b"], ["https://tec.openplanner.team/stops/X904ala", "https://tec.openplanner.team/stops/X939acb"], ["https://tec.openplanner.team/stops/N501btb", "https://tec.openplanner.team/stops/N501bva"], ["https://tec.openplanner.team/stops/LNEbois1", "https://tec.openplanner.team/stops/LOLcroi1"], ["https://tec.openplanner.team/stops/H2pr118a", "https://tec.openplanner.team/stops/H3so171a"], ["https://tec.openplanner.team/stops/H2bh108a", "https://tec.openplanner.team/stops/H2bh121a"], ["https://tec.openplanner.team/stops/H3so156b", "https://tec.openplanner.team/stops/H3so178a"], ["https://tec.openplanner.team/stops/H4lg100a", "https://tec.openplanner.team/stops/H4lg105a"], ["https://tec.openplanner.team/stops/X601cpa", "https://tec.openplanner.team/stops/X601cxa"], ["https://tec.openplanner.team/stops/H4av106b", "https://tec.openplanner.team/stops/H4av106c"], ["https://tec.openplanner.team/stops/LBIaepo4", "https://tec.openplanner.team/stops/LBIairp2"], ["https://tec.openplanner.team/stops/NL37abb", "https://tec.openplanner.team/stops/NL37aoa"], ["https://tec.openplanner.team/stops/H2ll191b", "https://tec.openplanner.team/stops/H2ll192b"], ["https://tec.openplanner.team/stops/H4vz368b", "https://tec.openplanner.team/stops/H4vz371b"], ["https://tec.openplanner.team/stops/X721afa", "https://tec.openplanner.team/stops/X721ala"], ["https://tec.openplanner.team/stops/X750aha", "https://tec.openplanner.team/stops/X750aia"], ["https://tec.openplanner.team/stops/LMamuse4", "https://tec.openplanner.team/stops/LMapark3"], ["https://tec.openplanner.team/stops/Bwatcoc1", "https://tec.openplanner.team/stops/Bwatpai1"], ["https://tec.openplanner.team/stops/NL73aca", "https://tec.openplanner.team/stops/NL73acb"], ["https://tec.openplanner.team/stops/N101aaa", "https://tec.openplanner.team/stops/N118aoa"], ["https://tec.openplanner.team/stops/H2ha133a", "https://tec.openplanner.team/stops/H2hg150a"], ["https://tec.openplanner.team/stops/Lemdieu1", "https://tec.openplanner.team/stops/Lempass2"], ["https://tec.openplanner.team/stops/Lhrdeme3", "https://tec.openplanner.team/stops/Lhrdeme4"], ["https://tec.openplanner.team/stops/Btubnco1", "https://tec.openplanner.team/stops/Btubnco2"], ["https://tec.openplanner.team/stops/X361aaa", "https://tec.openplanner.team/stops/X361aba"], ["https://tec.openplanner.team/stops/LBY4che2", "https://tec.openplanner.team/stops/Lgdec--1"], ["https://tec.openplanner.team/stops/Bixlaca1", "https://tec.openplanner.team/stops/Buccgob2"], ["https://tec.openplanner.team/stops/N229ajb", "https://tec.openplanner.team/stops/N229alb"], ["https://tec.openplanner.team/stops/Blinbru2", "https://tec.openplanner.team/stops/Blingar1"], ["https://tec.openplanner.team/stops/Llgrain2", "https://tec.openplanner.team/stops/Llgrosa2"], ["https://tec.openplanner.team/stops/X993aba", "https://tec.openplanner.team/stops/X993acb"], ["https://tec.openplanner.team/stops/Ladboti1", "https://tec.openplanner.team/stops/Ladchat2"], ["https://tec.openplanner.team/stops/LLrgara2", "https://tec.openplanner.team/stops/LSPecho2"], ["https://tec.openplanner.team/stops/NR21abc", "https://tec.openplanner.team/stops/NR21acb"], ["https://tec.openplanner.team/stops/X775akb", "https://tec.openplanner.team/stops/X775ala"], ["https://tec.openplanner.team/stops/Bgnpgen1", "https://tec.openplanner.team/stops/Bgnppra1"], ["https://tec.openplanner.team/stops/Cmgpthi1", "https://tec.openplanner.team/stops/Cmgpthi2"], ["https://tec.openplanner.team/stops/H4ty330b", "https://tec.openplanner.team/stops/H4ty330c"], ["https://tec.openplanner.team/stops/N135aaa", "https://tec.openplanner.team/stops/N135aed"], ["https://tec.openplanner.team/stops/N541adb", "https://tec.openplanner.team/stops/N541aeb"], ["https://tec.openplanner.team/stops/N312aab", "https://tec.openplanner.team/stops/N312aba"], ["https://tec.openplanner.team/stops/LHDpota1", "https://tec.openplanner.team/stops/LHDpota2"], ["https://tec.openplanner.team/stops/X925aib", "https://tec.openplanner.team/stops/X925apa"], ["https://tec.openplanner.team/stops/LOVeg--1", "https://tec.openplanner.team/stops/LOVeg--2"], ["https://tec.openplanner.team/stops/Lchec--2", "https://tec.openplanner.team/stops/Lcheg--2"], ["https://tec.openplanner.team/stops/H1qu100b", "https://tec.openplanner.team/stops/H1qu129a"], ["https://tec.openplanner.team/stops/LCUmars2", "https://tec.openplanner.team/stops/NL57ama"], ["https://tec.openplanner.team/stops/Cctpass2", "https://tec.openplanner.team/stops/Cctsncb2"], ["https://tec.openplanner.team/stops/Blhulil2", "https://tec.openplanner.team/stops/Blhuone1"], ["https://tec.openplanner.team/stops/N534bga", "https://tec.openplanner.team/stops/N561ada"], ["https://tec.openplanner.team/stops/N106anb", "https://tec.openplanner.team/stops/N106ara"], ["https://tec.openplanner.team/stops/LRfbeau1", "https://tec.openplanner.team/stops/LRffroi2"], ["https://tec.openplanner.team/stops/LVBrmon1", "https://tec.openplanner.team/stops/LVBvill1"], ["https://tec.openplanner.team/stops/X775aaa", "https://tec.openplanner.team/stops/X775abb"], ["https://tec.openplanner.team/stops/LVAbloe1", "https://tec.openplanner.team/stops/LVAflat1"], ["https://tec.openplanner.team/stops/Clvchen2", "https://tec.openplanner.team/stops/NC02ava"], ["https://tec.openplanner.team/stops/Cfaauln1", "https://tec.openplanner.team/stops/Cfawain4"], ["https://tec.openplanner.team/stops/Cgocolo1", "https://tec.openplanner.team/stops/Cgolimi2"], ["https://tec.openplanner.team/stops/X802aya", "https://tec.openplanner.team/stops/X802ayb"], ["https://tec.openplanner.team/stops/Cgdberl2", "https://tec.openplanner.team/stops/Cgdcent2"], ["https://tec.openplanner.team/stops/Lhrmemo1", "https://tec.openplanner.team/stops/Lvtlimi1"], ["https://tec.openplanner.team/stops/N511aja", "https://tec.openplanner.team/stops/N511alc"], ["https://tec.openplanner.team/stops/H4mo157a", "https://tec.openplanner.team/stops/H4mo166a"], ["https://tec.openplanner.team/stops/Cchccom1", "https://tec.openplanner.team/stops/Cchvil22"], ["https://tec.openplanner.team/stops/H4mo140b", "https://tec.openplanner.team/stops/H4mo185a"], ["https://tec.openplanner.team/stops/LELhard2", "https://tec.openplanner.team/stops/LHCprog2"], ["https://tec.openplanner.team/stops/N104aka", "https://tec.openplanner.team/stops/N106ajb"], ["https://tec.openplanner.team/stops/X891aab", "https://tec.openplanner.team/stops/X891acb"], ["https://tec.openplanner.team/stops/X992aka", "https://tec.openplanner.team/stops/X992akb"], ["https://tec.openplanner.team/stops/LSoprom1", "https://tec.openplanner.team/stops/LSoprom2"], ["https://tec.openplanner.team/stops/Bchgpap1", "https://tec.openplanner.team/stops/Bchgrco2"], ["https://tec.openplanner.team/stops/H1ms282a", "https://tec.openplanner.team/stops/H1ms302b"], ["https://tec.openplanner.team/stops/LVNleco1", "https://tec.openplanner.team/stops/LVNleco2"], ["https://tec.openplanner.team/stops/N501dta", "https://tec.openplanner.team/stops/N501dtc"], ["https://tec.openplanner.team/stops/X911aja", "https://tec.openplanner.team/stops/X911akb"], ["https://tec.openplanner.team/stops/LBSchpl2", "https://tec.openplanner.team/stops/LTolijn*"], ["https://tec.openplanner.team/stops/LOUvign1", "https://tec.openplanner.team/stops/Lviweri2"], ["https://tec.openplanner.team/stops/X870ahb", "https://tec.openplanner.team/stops/X882aga"], ["https://tec.openplanner.team/stops/N501dob", "https://tec.openplanner.team/stops/N501eha"], ["https://tec.openplanner.team/stops/X664apa", "https://tec.openplanner.team/stops/X664aqb"], ["https://tec.openplanner.team/stops/N145aea", "https://tec.openplanner.team/stops/N145aed"], ["https://tec.openplanner.team/stops/LmUzent1", "https://tec.openplanner.team/stops/LmUzent2"], ["https://tec.openplanner.team/stops/Lbrptbr2", "https://tec.openplanner.team/stops/Lbrptbr5"], ["https://tec.openplanner.team/stops/Brixape1", "https://tec.openplanner.team/stops/Brixcab1"], ["https://tec.openplanner.team/stops/Btlgast1", "https://tec.openplanner.team/stops/Btlgreg2"], ["https://tec.openplanner.team/stops/H1so131b", "https://tec.openplanner.team/stops/H1so142d"], ["https://tec.openplanner.team/stops/LHUsauv2", "https://tec.openplanner.team/stops/LHUsauv3"], ["https://tec.openplanner.team/stops/LAvrout2", "https://tec.openplanner.team/stops/LLtrout1"], ["https://tec.openplanner.team/stops/Llgavoc2", "https://tec.openplanner.team/stops/Llgnico7"], ["https://tec.openplanner.team/stops/Lsehya-1", "https://tec.openplanner.team/stops/Lsemara2"], ["https://tec.openplanner.team/stops/Cclbarb1", "https://tec.openplanner.team/stops/Cstgare1"], ["https://tec.openplanner.team/stops/H2ha127a", "https://tec.openplanner.team/stops/H2sb233c"], ["https://tec.openplanner.team/stops/Bwategb1", "https://tec.openplanner.team/stops/Bwatran2"], ["https://tec.openplanner.team/stops/H4ar107a", "https://tec.openplanner.team/stops/H4pl136a"], ["https://tec.openplanner.team/stops/Bronrch1", "https://tec.openplanner.team/stops/Bvirflu1"], ["https://tec.openplanner.team/stops/Cgpmoul2", "https://tec.openplanner.team/stops/Cpcha432"], ["https://tec.openplanner.team/stops/Bbst4br4", "https://tec.openplanner.team/stops/Cbtbras1"], ["https://tec.openplanner.team/stops/X396aba", "https://tec.openplanner.team/stops/X396abb"], ["https://tec.openplanner.team/stops/H4oq224a", "https://tec.openplanner.team/stops/H4ty300b"], ["https://tec.openplanner.team/stops/H4hg154a", "https://tec.openplanner.team/stops/H4hg155b"], ["https://tec.openplanner.team/stops/Bwatgla1", "https://tec.openplanner.team/stops/Bwatrte2"], ["https://tec.openplanner.team/stops/LHSheur1", "https://tec.openplanner.team/stops/LHStrez2"], ["https://tec.openplanner.team/stops/N501dhb", "https://tec.openplanner.team/stops/N501dib"], ["https://tec.openplanner.team/stops/H1hq126a", "https://tec.openplanner.team/stops/H1ol140b"], ["https://tec.openplanner.team/stops/N501gca", "https://tec.openplanner.team/stops/N501gcb"], ["https://tec.openplanner.team/stops/Bwavbar2", "https://tec.openplanner.team/stops/Bwavcin1"], ["https://tec.openplanner.team/stops/LNIbas-1", "https://tec.openplanner.team/stops/LSPmalc1"], ["https://tec.openplanner.team/stops/H4bl104b", "https://tec.openplanner.team/stops/H4bl105a"], ["https://tec.openplanner.team/stops/Bchgrco1", "https://tec.openplanner.team/stops/Bchgrco2"], ["https://tec.openplanner.team/stops/X922aaa", "https://tec.openplanner.team/stops/X922aba"], ["https://tec.openplanner.team/stops/H4ty278a", "https://tec.openplanner.team/stops/H4ty299a"], ["https://tec.openplanner.team/stops/Lrcarse2", "https://tec.openplanner.team/stops/Lrclohe1"], ["https://tec.openplanner.team/stops/LRAgrot1", "https://tec.openplanner.team/stops/LRAgrot2"], ["https://tec.openplanner.team/stops/X641aoa", "https://tec.openplanner.team/stops/X641apc"], ["https://tec.openplanner.team/stops/N110aaa", "https://tec.openplanner.team/stops/N114aab"], ["https://tec.openplanner.team/stops/LlOdrei1", "https://tec.openplanner.team/stops/LlOkreu2"], ["https://tec.openplanner.team/stops/X888afa", "https://tec.openplanner.team/stops/X897afa"], ["https://tec.openplanner.team/stops/H1gr111a", "https://tec.openplanner.team/stops/H1gr111b"], ["https://tec.openplanner.team/stops/Cvtndam2", "https://tec.openplanner.team/stops/Cvtvois2"], ["https://tec.openplanner.team/stops/LLrdrev2", "https://tec.openplanner.team/stops/LLrmeno2"], ["https://tec.openplanner.team/stops/X902aeb", "https://tec.openplanner.team/stops/X902aoa"], ["https://tec.openplanner.team/stops/Bwatric1", "https://tec.openplanner.team/stops/Bwatvco1"], ["https://tec.openplanner.team/stops/X808afa", "https://tec.openplanner.team/stops/X808agb"], ["https://tec.openplanner.team/stops/Bbcodam3", "https://tec.openplanner.team/stops/Bbcoroy1"], ["https://tec.openplanner.team/stops/N538asc", "https://tec.openplanner.team/stops/N538ata"], ["https://tec.openplanner.team/stops/Bbaucba2", "https://tec.openplanner.team/stops/Bbauegl1"], ["https://tec.openplanner.team/stops/Cgxptt1", "https://tec.openplanner.team/stops/Cgxptt2"], ["https://tec.openplanner.team/stops/Bengvma1", "https://tec.openplanner.team/stops/H1en106a"], ["https://tec.openplanner.team/stops/H1fl133e", "https://tec.openplanner.team/stops/H1fl141a"], ["https://tec.openplanner.team/stops/LSLstra2", "https://tec.openplanner.team/stops/LSLvaux2"], ["https://tec.openplanner.team/stops/N551ahb", "https://tec.openplanner.team/stops/N551anb"], ["https://tec.openplanner.team/stops/H1ne142b", "https://tec.openplanner.team/stops/H1ne144a"], ["https://tec.openplanner.team/stops/Lbrlama2", "https://tec.openplanner.team/stops/Lgrmagd1"], ["https://tec.openplanner.team/stops/X687aka", "https://tec.openplanner.team/stops/X687akb"], ["https://tec.openplanner.team/stops/X882ada", "https://tec.openplanner.team/stops/X882adb"], ["https://tec.openplanner.team/stops/LSeaque1", "https://tec.openplanner.team/stops/LSeaque2"], ["https://tec.openplanner.team/stops/LmLbeil1", "https://tec.openplanner.team/stops/LmLbeil2"], ["https://tec.openplanner.team/stops/LJAroue1", "https://tec.openplanner.team/stops/LJAroue2"], ["https://tec.openplanner.team/stops/LMubras1", "https://tec.openplanner.team/stops/LSDheus1"], ["https://tec.openplanner.team/stops/LRChote1", "https://tec.openplanner.team/stops/LRCviad2"], ["https://tec.openplanner.team/stops/LPT97--1", "https://tec.openplanner.team/stops/LPutins1"], ["https://tec.openplanner.team/stops/N161aaa", "https://tec.openplanner.team/stops/N162afa"], ["https://tec.openplanner.team/stops/LwLfuss2", "https://tec.openplanner.team/stops/LwLkirc2"], ["https://tec.openplanner.team/stops/H4oq223b", "https://tec.openplanner.team/stops/H4ty327a"], ["https://tec.openplanner.team/stops/Bsoigar1", "https://tec.openplanner.team/stops/H3so155a"], ["https://tec.openplanner.team/stops/N302aba", "https://tec.openplanner.team/stops/N302ada"], ["https://tec.openplanner.team/stops/Lveinva2", "https://tec.openplanner.team/stops/Lveptre2"], ["https://tec.openplanner.team/stops/H4bx167a", "https://tec.openplanner.team/stops/H4bx167b"], ["https://tec.openplanner.team/stops/N513avb", "https://tec.openplanner.team/stops/N514aja"], ["https://tec.openplanner.team/stops/Cmoruau1", "https://tec.openplanner.team/stops/Cmovies1"], ["https://tec.openplanner.team/stops/N501apb", "https://tec.openplanner.team/stops/N528aha"], ["https://tec.openplanner.team/stops/N534avb", "https://tec.openplanner.team/stops/N543coa"], ["https://tec.openplanner.team/stops/X741aic", "https://tec.openplanner.team/stops/X741aid"], ["https://tec.openplanner.team/stops/Cdasama1", "https://tec.openplanner.team/stops/Cdasama2"], ["https://tec.openplanner.team/stops/N203aca", "https://tec.openplanner.team/stops/N203acb"], ["https://tec.openplanner.team/stops/H4mn100a", "https://tec.openplanner.team/stops/H4tg170a"], ["https://tec.openplanner.team/stops/H1og136a", "https://tec.openplanner.team/stops/H1og136b"], ["https://tec.openplanner.team/stops/X664aab", "https://tec.openplanner.team/stops/X664agb"], ["https://tec.openplanner.team/stops/H1ne140b", "https://tec.openplanner.team/stops/H1ne142b"], ["https://tec.openplanner.team/stops/Cchwarm2", "https://tec.openplanner.team/stops/CMsama1"], ["https://tec.openplanner.team/stops/X910aja", "https://tec.openplanner.team/stops/X910ajb"], ["https://tec.openplanner.team/stops/X779afa", "https://tec.openplanner.team/stops/X779aga"], ["https://tec.openplanner.team/stops/Ldihvce2", "https://tec.openplanner.team/stops/Ldiinte1"], ["https://tec.openplanner.team/stops/LMisour1", "https://tec.openplanner.team/stops/LMisour2"], ["https://tec.openplanner.team/stops/X790ama", "https://tec.openplanner.team/stops/X790amb"], ["https://tec.openplanner.team/stops/Bixefra1", "https://tec.openplanner.team/stops/Bixepla2"], ["https://tec.openplanner.team/stops/Ctmwaut1", "https://tec.openplanner.team/stops/Cvvmonu2"], ["https://tec.openplanner.team/stops/H4we135b", "https://tec.openplanner.team/stops/H4we138b"], ["https://tec.openplanner.team/stops/X919aea", "https://tec.openplanner.team/stops/X919afa"], ["https://tec.openplanner.team/stops/Bclgavi1", "https://tec.openplanner.team/stops/Bclgvmo1"], ["https://tec.openplanner.team/stops/X769anb", "https://tec.openplanner.team/stops/X769apa"], ["https://tec.openplanner.team/stops/X939aha", "https://tec.openplanner.team/stops/X940aha"], ["https://tec.openplanner.team/stops/LBlhaut2", "https://tec.openplanner.team/stops/LLUg82-2"], ["https://tec.openplanner.team/stops/N242aeb", "https://tec.openplanner.team/stops/N251abb"], ["https://tec.openplanner.team/stops/X576afa", "https://tec.openplanner.team/stops/X576afb"], ["https://tec.openplanner.team/stops/Lgrdefr1", "https://tec.openplanner.team/stops/Lgrdefr2"], ["https://tec.openplanner.team/stops/Lheelva1", "https://tec.openplanner.team/stops/LHemoul1"], ["https://tec.openplanner.team/stops/X817acb", "https://tec.openplanner.team/stops/X817adb"], ["https://tec.openplanner.team/stops/Bgnpegl4", "https://tec.openplanner.team/stops/Bgnpjbe1"], ["https://tec.openplanner.team/stops/Lscgare1", "https://tec.openplanner.team/stops/Lscgare2"], ["https://tec.openplanner.team/stops/Bllncom1", "https://tec.openplanner.team/stops/Bllncom2"], ["https://tec.openplanner.team/stops/LENsent1", "https://tec.openplanner.team/stops/LENsent2"], ["https://tec.openplanner.team/stops/N525aba", "https://tec.openplanner.team/stops/N525bab"], ["https://tec.openplanner.team/stops/N501dwb", "https://tec.openplanner.team/stops/N501kma"], ["https://tec.openplanner.team/stops/Cli4bra2", "https://tec.openplanner.team/stops/Creha762"], ["https://tec.openplanner.team/stops/Bwaakap1", "https://tec.openplanner.team/stops/LWSstat1"], ["https://tec.openplanner.team/stops/LMObut-1", "https://tec.openplanner.team/stops/LMOchen1"], ["https://tec.openplanner.team/stops/X733afa", "https://tec.openplanner.team/stops/X733aga"], ["https://tec.openplanner.team/stops/Cgocnor2", "https://tec.openplanner.team/stops/Cgocrus2"], ["https://tec.openplanner.team/stops/H2ch105b", "https://tec.openplanner.team/stops/H2ch105d"], ["https://tec.openplanner.team/stops/Cdaptca2", "https://tec.openplanner.team/stops/Cmlfstt1"], ["https://tec.openplanner.team/stops/H1as103b", "https://tec.openplanner.team/stops/H1as103c"], ["https://tec.openplanner.team/stops/X615aya", "https://tec.openplanner.team/stops/X615ayb"], ["https://tec.openplanner.team/stops/N535aoa", "https://tec.openplanner.team/stops/N580aca"], ["https://tec.openplanner.team/stops/Bbsgfva2", "https://tec.openplanner.team/stops/Bbsgrve2"], ["https://tec.openplanner.team/stops/X609alb", "https://tec.openplanner.team/stops/X609ana"], ["https://tec.openplanner.team/stops/X782aob", "https://tec.openplanner.team/stops/X783aca"], ["https://tec.openplanner.team/stops/N568aba", "https://tec.openplanner.team/stops/N568abb"], ["https://tec.openplanner.team/stops/Bolpmre2", "https://tec.openplanner.team/stops/Bolppla4"], ["https://tec.openplanner.team/stops/LEHhaut2", "https://tec.openplanner.team/stops/LNCvann1"], ["https://tec.openplanner.team/stops/Bpergar2", "https://tec.openplanner.team/stops/Bperpla2"], ["https://tec.openplanner.team/stops/Broncli1", "https://tec.openplanner.team/stops/Bvirmbr1"], ["https://tec.openplanner.team/stops/N501bja", "https://tec.openplanner.team/stops/N501jbb"], ["https://tec.openplanner.team/stops/N122afb", "https://tec.openplanner.team/stops/N122ahb"], ["https://tec.openplanner.team/stops/X664amc", "https://tec.openplanner.team/stops/X664ata"], ["https://tec.openplanner.team/stops/Cmohotv3", "https://tec.openplanner.team/stops/Cmohotv4"], ["https://tec.openplanner.team/stops/X836abb", "https://tec.openplanner.team/stops/X839aca"], ["https://tec.openplanner.team/stops/LAWhein4", "https://tec.openplanner.team/stops/LAWkone1"], ["https://tec.openplanner.team/stops/LbUbutg1", "https://tec.openplanner.team/stops/LbUbutg2"], ["https://tec.openplanner.team/stops/LCLgend1", "https://tec.openplanner.team/stops/LRteg--*"], ["https://tec.openplanner.team/stops/H1sb146a", "https://tec.openplanner.team/stops/H1sb147b"], ["https://tec.openplanner.team/stops/H1hy127b", "https://tec.openplanner.team/stops/H1hy129a"], ["https://tec.openplanner.team/stops/H1ho142a", "https://tec.openplanner.team/stops/H1ho142b"], ["https://tec.openplanner.team/stops/LOuhalb1", "https://tec.openplanner.team/stops/LTaabba1"], ["https://tec.openplanner.team/stops/LBWviad2", "https://tec.openplanner.team/stops/LVImons1"], ["https://tec.openplanner.team/stops/Cjxegli1", "https://tec.openplanner.team/stops/Cjxplac2"], ["https://tec.openplanner.team/stops/N521ajb", "https://tec.openplanner.team/stops/N525ala"], ["https://tec.openplanner.team/stops/NR21aba", "https://tec.openplanner.team/stops/NR21acb"], ["https://tec.openplanner.team/stops/Cfamonu2", "https://tec.openplanner.team/stops/Cpl4bra3"], ["https://tec.openplanner.team/stops/X624aeb", "https://tec.openplanner.team/stops/X625agb"], ["https://tec.openplanner.team/stops/H2se105a", "https://tec.openplanner.team/stops/H2se106a"], ["https://tec.openplanner.team/stops/LVSslin2", "https://tec.openplanner.team/stops/LVSslin3"], ["https://tec.openplanner.team/stops/LLbquar1", "https://tec.openplanner.team/stops/LLbrecu2"], ["https://tec.openplanner.team/stops/X806ada", "https://tec.openplanner.team/stops/X806aea"], ["https://tec.openplanner.team/stops/H1wa132b", "https://tec.openplanner.team/stops/H1wa155d"], ["https://tec.openplanner.team/stops/Crasabl1", "https://tec.openplanner.team/stops/Crasabl2"], ["https://tec.openplanner.team/stops/Brsgece1", "https://tec.openplanner.team/stops/Brsgfso2"], ["https://tec.openplanner.team/stops/Bcsebde2", "https://tec.openplanner.team/stops/Bcsegar2"], ["https://tec.openplanner.team/stops/N201aaa", "https://tec.openplanner.team/stops/N201ada"], ["https://tec.openplanner.team/stops/N515afa", "https://tec.openplanner.team/stops/N516aja"], ["https://tec.openplanner.team/stops/H1ms280a", "https://tec.openplanner.team/stops/H1ms400d"], ["https://tec.openplanner.team/stops/X744ada", "https://tec.openplanner.team/stops/X744afa"], ["https://tec.openplanner.team/stops/X640acb", "https://tec.openplanner.team/stops/X640aga"], ["https://tec.openplanner.team/stops/H1gy112b", "https://tec.openplanner.team/stops/H1le125a"], ["https://tec.openplanner.team/stops/LCEinst2", "https://tec.openplanner.team/stops/LCEplac1"], ["https://tec.openplanner.team/stops/LMschap1", "https://tec.openplanner.team/stops/LMsgara1"], ["https://tec.openplanner.team/stops/LeYdorf2", "https://tec.openplanner.team/stops/LeYroth1"], ["https://tec.openplanner.team/stops/N506aaa", "https://tec.openplanner.team/stops/N506akb"], ["https://tec.openplanner.team/stops/Lgdmaye2", "https://tec.openplanner.team/stops/LWechea2"], ["https://tec.openplanner.team/stops/N117aaa", "https://tec.openplanner.team/stops/N117aab"], ["https://tec.openplanner.team/stops/Llgpont2", "https://tec.openplanner.team/stops/Llgstap1"], ["https://tec.openplanner.team/stops/N552aaa", "https://tec.openplanner.team/stops/N577acb"], ["https://tec.openplanner.team/stops/N138aga", "https://tec.openplanner.team/stops/N423aga"], ["https://tec.openplanner.team/stops/H1og133b", "https://tec.openplanner.team/stops/H4os217a"], ["https://tec.openplanner.team/stops/H1bn114a", "https://tec.openplanner.team/stops/H1bn148b"], ["https://tec.openplanner.team/stops/Bottcpl2", "https://tec.openplanner.team/stops/Bottra91"], ["https://tec.openplanner.team/stops/LLUcdoy2", "https://tec.openplanner.team/stops/LTRryta2"], ["https://tec.openplanner.team/stops/LAWchpl1", "https://tec.openplanner.team/stops/LAWchpl2"], ["https://tec.openplanner.team/stops/Bbryfon1", "https://tec.openplanner.team/stops/Bbryvil1"], ["https://tec.openplanner.team/stops/NL78aaa", "https://tec.openplanner.team/stops/NL78aab"], ["https://tec.openplanner.team/stops/LVnflox2", "https://tec.openplanner.team/stops/LVnrock1"], ["https://tec.openplanner.team/stops/H4fa128b", "https://tec.openplanner.team/stops/H4fa167b"], ["https://tec.openplanner.team/stops/N501afa", "https://tec.openplanner.team/stops/N503acb"], ["https://tec.openplanner.team/stops/LNOpt--1", "https://tec.openplanner.team/stops/LNOsedo1"], ["https://tec.openplanner.team/stops/Ccohotv1", "https://tec.openplanner.team/stops/Ccohotv2"], ["https://tec.openplanner.team/stops/LSZsolw2", "https://tec.openplanner.team/stops/LSZsolw3"], ["https://tec.openplanner.team/stops/Brsga811", "https://tec.openplanner.team/stops/Brsggea1"], ["https://tec.openplanner.team/stops/H1cd112a", "https://tec.openplanner.team/stops/H1cd113b"], ["https://tec.openplanner.team/stops/Bolgfon1", "https://tec.openplanner.team/stops/Bolpmre2"], ["https://tec.openplanner.team/stops/X725aab", "https://tec.openplanner.team/stops/X738aea"], ["https://tec.openplanner.team/stops/LgAdorf1", "https://tec.openplanner.team/stops/LsVgesc2"], ["https://tec.openplanner.team/stops/Cci28ju1", "https://tec.openplanner.team/stops/Ccipano1"], ["https://tec.openplanner.team/stops/H4es112b", "https://tec.openplanner.team/stops/H4ev126b"], ["https://tec.openplanner.team/stops/H4ta116a", "https://tec.openplanner.team/stops/H4ta126b"], ["https://tec.openplanner.team/stops/Ladhomb1", "https://tec.openplanner.team/stops/Lveptre2"], ["https://tec.openplanner.team/stops/N347acb", "https://tec.openplanner.team/stops/X347aaa"], ["https://tec.openplanner.team/stops/LeYwald1", "https://tec.openplanner.team/stops/LeYwald2"], ["https://tec.openplanner.team/stops/X950ada", "https://tec.openplanner.team/stops/X952alb"], ["https://tec.openplanner.team/stops/H2pe162c", "https://tec.openplanner.team/stops/H2sv217a"], ["https://tec.openplanner.team/stops/Brsgman1", "https://tec.openplanner.team/stops/Bwatcha1"], ["https://tec.openplanner.team/stops/Boveklo2", "https://tec.openplanner.team/stops/Brsrfen2"], ["https://tec.openplanner.team/stops/H4co106a", "https://tec.openplanner.team/stops/H4co157a"], ["https://tec.openplanner.team/stops/N111aab", "https://tec.openplanner.team/stops/N127bha"], ["https://tec.openplanner.team/stops/H2hg147b", "https://tec.openplanner.team/stops/H2hg152b"], ["https://tec.openplanner.team/stops/Lmopans1", "https://tec.openplanner.team/stops/Lmopans2"], ["https://tec.openplanner.team/stops/Blhufro2", "https://tec.openplanner.team/stops/Blhugai1"], ["https://tec.openplanner.team/stops/Lghlieg1", "https://tec.openplanner.team/stops/Lghpara2"], ["https://tec.openplanner.team/stops/X897aba", "https://tec.openplanner.team/stops/X897aca"], ["https://tec.openplanner.team/stops/Bhenfla1", "https://tec.openplanner.team/stops/Bhenfla2"], ["https://tec.openplanner.team/stops/Berncim2", "https://tec.openplanner.team/stops/Bwspbbo2"], ["https://tec.openplanner.team/stops/N501mra", "https://tec.openplanner.team/stops/N501mtd"], ["https://tec.openplanner.team/stops/N135bia", "https://tec.openplanner.team/stops/N135bib"], ["https://tec.openplanner.team/stops/N360adb", "https://tec.openplanner.team/stops/N894ada"], ["https://tec.openplanner.team/stops/Cjumade3", "https://tec.openplanner.team/stops/Cjumade4"], ["https://tec.openplanner.team/stops/LbO52--2", "https://tec.openplanner.team/stops/LmDwei31"], ["https://tec.openplanner.team/stops/N232bca", "https://tec.openplanner.team/stops/N232bta"], ["https://tec.openplanner.team/stops/Llgdarc2", "https://tec.openplanner.team/stops/Llgpier2"], ["https://tec.openplanner.team/stops/N347afb", "https://tec.openplanner.team/stops/X347aab"], ["https://tec.openplanner.team/stops/X910aia", "https://tec.openplanner.team/stops/X910aja"], ["https://tec.openplanner.team/stops/X994ala", "https://tec.openplanner.team/stops/X994alb"], ["https://tec.openplanner.team/stops/LAWdefu4", "https://tec.openplanner.team/stops/LAWjaur1"], ["https://tec.openplanner.team/stops/N529abc", "https://tec.openplanner.team/stops/N529ahb"], ["https://tec.openplanner.team/stops/Lstchas2", "https://tec.openplanner.team/stops/Lstetud1"], ["https://tec.openplanner.team/stops/H1do126a", "https://tec.openplanner.team/stops/H1do126b"], ["https://tec.openplanner.team/stops/X982cea", "https://tec.openplanner.team/stops/X982cfa"], ["https://tec.openplanner.team/stops/X662ata", "https://tec.openplanner.team/stops/X662atb"], ["https://tec.openplanner.team/stops/LNEmoul2", "https://tec.openplanner.team/stops/LOL6che2"], ["https://tec.openplanner.team/stops/N137aaa", "https://tec.openplanner.team/stops/N137aab"], ["https://tec.openplanner.team/stops/LArchap1", "https://tec.openplanner.team/stops/X548abb"], ["https://tec.openplanner.team/stops/Lbrmour1", "https://tec.openplanner.team/stops/Lbrmour2"], ["https://tec.openplanner.team/stops/Bbsigaz1", "https://tec.openplanner.team/stops/Bbsivil1"], ["https://tec.openplanner.team/stops/LaAgold1", "https://tec.openplanner.team/stops/LaAjahn1"], ["https://tec.openplanner.team/stops/N501dqb", "https://tec.openplanner.team/stops/N501kha"], ["https://tec.openplanner.team/stops/X982aaa", "https://tec.openplanner.team/stops/X982byb"], ["https://tec.openplanner.team/stops/LLYplac2", "https://tec.openplanner.team/stops/LLYtir-2"], ["https://tec.openplanner.team/stops/N554ada", "https://tec.openplanner.team/stops/N566afb"], ["https://tec.openplanner.team/stops/H2ma204a", "https://tec.openplanner.team/stops/H2ma206b"], ["https://tec.openplanner.team/stops/Bbcogar1", "https://tec.openplanner.team/stops/H3br108d"], ["https://tec.openplanner.team/stops/H3go104a", "https://tec.openplanner.team/stops/H3go104b"], ["https://tec.openplanner.team/stops/LBGroma2", "https://tec.openplanner.team/stops/LBGvill1"], ["https://tec.openplanner.team/stops/Bdvmtve1", "https://tec.openplanner.team/stops/Bdvmtve2"], ["https://tec.openplanner.team/stops/X651adb", "https://tec.openplanner.team/stops/X651agb"], ["https://tec.openplanner.team/stops/LcRkirc2", "https://tec.openplanner.team/stops/LnUhohe1"], ["https://tec.openplanner.team/stops/Bvirhsa1", "https://tec.openplanner.team/stops/Bvirpla1"], ["https://tec.openplanner.team/stops/H1te179b", "https://tec.openplanner.team/stops/H1te191b"], ["https://tec.openplanner.team/stops/N338aeb", "https://tec.openplanner.team/stops/N338afa"], ["https://tec.openplanner.team/stops/Bsaubra2", "https://tec.openplanner.team/stops/Bsaucre2"], ["https://tec.openplanner.team/stops/LLUg82-2", "https://tec.openplanner.team/stops/LLUgend2"], ["https://tec.openplanner.team/stops/LAMdelh*", "https://tec.openplanner.team/stops/LOmrela1"], ["https://tec.openplanner.team/stops/Lmitroi2", "https://tec.openplanner.team/stops/Lvtvici1"], ["https://tec.openplanner.team/stops/H1sp353a", "https://tec.openplanner.team/stops/H1ss350a"], ["https://tec.openplanner.team/stops/LRmkerk2", "https://tec.openplanner.team/stops/LRmstat1"], ["https://tec.openplanner.team/stops/LSGfoua2", "https://tec.openplanner.team/stops/LSkathe2"], ["https://tec.openplanner.team/stops/Cgzhour2", "https://tec.openplanner.team/stops/Cgzhour3"], ["https://tec.openplanner.team/stops/N221aca", "https://tec.openplanner.team/stops/X394aga"], ["https://tec.openplanner.team/stops/Bwancal2", "https://tec.openplanner.team/stops/Bwanorp2"], ["https://tec.openplanner.team/stops/LHTdelh1", "https://tec.openplanner.team/stops/LHTeg--1"], ["https://tec.openplanner.team/stops/X661aoa", "https://tec.openplanner.team/stops/X661aob"], ["https://tec.openplanner.team/stops/LHTcerc4", "https://tec.openplanner.team/stops/LHTeg--5"], ["https://tec.openplanner.team/stops/N302acb", "https://tec.openplanner.team/stops/N302ada"], ["https://tec.openplanner.team/stops/N525ahb", "https://tec.openplanner.team/stops/N525aib"], ["https://tec.openplanner.team/stops/LVvboma2", "https://tec.openplanner.team/stops/LVvbouv1"], ["https://tec.openplanner.team/stops/Bwavbar1", "https://tec.openplanner.team/stops/Bwavbar2"], ["https://tec.openplanner.team/stops/N235ada", "https://tec.openplanner.team/stops/N236aib"], ["https://tec.openplanner.team/stops/X982bfb", "https://tec.openplanner.team/stops/X982blb"], ["https://tec.openplanner.team/stops/LTHbelv2", "https://tec.openplanner.team/stops/LTHec--1"], ["https://tec.openplanner.team/stops/Cthathe1", "https://tec.openplanner.team/stops/Cthpibl2"], ["https://tec.openplanner.team/stops/Ladmoli1", "https://tec.openplanner.team/stops/Ladpire3"], ["https://tec.openplanner.team/stops/LAivill1", "https://tec.openplanner.team/stops/Lccawir3"], ["https://tec.openplanner.team/stops/LHFhard1", "https://tec.openplanner.team/stops/LVEmoul2"], ["https://tec.openplanner.team/stops/LFPstro2", "https://tec.openplanner.team/stops/LRmsmvo3"], ["https://tec.openplanner.team/stops/Brsgm301", "https://tec.openplanner.team/stops/Bwatcha3"], ["https://tec.openplanner.team/stops/Bhalker1", "https://tec.openplanner.team/stops/Blemsta1"], ["https://tec.openplanner.team/stops/N118ava", "https://tec.openplanner.team/stops/N118avd"], ["https://tec.openplanner.team/stops/X901aab", "https://tec.openplanner.team/stops/X901bja"], ["https://tec.openplanner.team/stops/LTicent1", "https://tec.openplanner.team/stops/LTicent2"], ["https://tec.openplanner.team/stops/LLmpt--2", "https://tec.openplanner.team/stops/LLmvict1"], ["https://tec.openplanner.team/stops/Ccorian1", "https://tec.openplanner.team/stops/Croball1"], ["https://tec.openplanner.team/stops/H4bi100a", "https://tec.openplanner.team/stops/H4pq120a"], ["https://tec.openplanner.team/stops/X811ahb", "https://tec.openplanner.team/stops/X834aab"], ["https://tec.openplanner.team/stops/N511ama", "https://tec.openplanner.team/stops/N511anb"], ["https://tec.openplanner.team/stops/Cchwate4", "https://tec.openplanner.team/stops/CMwate1"], ["https://tec.openplanner.team/stops/LCIneuv1", "https://tec.openplanner.team/stops/LLtwanz1"], ["https://tec.openplanner.team/stops/N230aka", "https://tec.openplanner.team/stops/N540abb"], ["https://tec.openplanner.team/stops/N137abb", "https://tec.openplanner.team/stops/N137acb"], ["https://tec.openplanner.team/stops/X601agb", "https://tec.openplanner.team/stops/X663ahb"], ["https://tec.openplanner.team/stops/N390acb", "https://tec.openplanner.team/stops/X390ala"], ["https://tec.openplanner.team/stops/X621aaa", "https://tec.openplanner.team/stops/X621aba"], ["https://tec.openplanner.team/stops/NL81aha", "https://tec.openplanner.team/stops/NL82agb"], ["https://tec.openplanner.team/stops/N535aib", "https://tec.openplanner.team/stops/N539aya"], ["https://tec.openplanner.team/stops/H5wo129a", "https://tec.openplanner.team/stops/H5wo130a"], ["https://tec.openplanner.team/stops/X952afb", "https://tec.openplanner.team/stops/X953afb"], ["https://tec.openplanner.team/stops/X639aoc", "https://tec.openplanner.team/stops/X639aqb"], ["https://tec.openplanner.team/stops/X748aea", "https://tec.openplanner.team/stops/X767aja"], ["https://tec.openplanner.team/stops/H1me117f", "https://tec.openplanner.team/stops/H1so141a"], ["https://tec.openplanner.team/stops/H1sb148a", "https://tec.openplanner.team/stops/H1sb148b"], ["https://tec.openplanner.team/stops/X952aga", "https://tec.openplanner.team/stops/X952aia"], ["https://tec.openplanner.team/stops/X660aba", "https://tec.openplanner.team/stops/X660abb"], ["https://tec.openplanner.team/stops/Bwaucan2", "https://tec.openplanner.team/stops/Bwaurge1"], ["https://tec.openplanner.team/stops/LBSkann2", "https://tec.openplanner.team/stops/LBSneuv2"], ["https://tec.openplanner.team/stops/LFPgeme2", "https://tec.openplanner.team/stops/LVu03--1"], ["https://tec.openplanner.team/stops/Becepro1", "https://tec.openplanner.team/stops/Becepro2"], ["https://tec.openplanner.team/stops/Clgpavi1", "https://tec.openplanner.team/stops/Csscrot1"], ["https://tec.openplanner.team/stops/N135afa", "https://tec.openplanner.team/stops/N135beb"], ["https://tec.openplanner.team/stops/LeUbush1", "https://tec.openplanner.team/stops/LeUdepo1"], ["https://tec.openplanner.team/stops/Ljedepa1", "https://tec.openplanner.team/stops/Ljedepa2"], ["https://tec.openplanner.team/stops/X725asa", "https://tec.openplanner.team/stops/X725aua"], ["https://tec.openplanner.team/stops/H4fr386a", "https://tec.openplanner.team/stops/H4fr391a"], ["https://tec.openplanner.team/stops/LVBcarr1", "https://tec.openplanner.team/stops/LVBmonu4"], ["https://tec.openplanner.team/stops/N531aib", "https://tec.openplanner.team/stops/N531arb"], ["https://tec.openplanner.team/stops/X820aga", "https://tec.openplanner.team/stops/X820amb"], ["https://tec.openplanner.team/stops/LETec--1", "https://tec.openplanner.team/stops/LETmagn2"], ["https://tec.openplanner.team/stops/LrAbe602", "https://tec.openplanner.team/stops/LrAneus1"], ["https://tec.openplanner.team/stops/Lghneuv1", "https://tec.openplanner.team/stops/Lghneuv2"], ["https://tec.openplanner.team/stops/Llgdelc*", "https://tec.openplanner.team/stops/Llgdelc2"], ["https://tec.openplanner.team/stops/LCPoneu2", "https://tec.openplanner.team/stops/LCPpech5"], ["https://tec.openplanner.team/stops/Bsomh671", "https://tec.openplanner.team/stops/Bsomjon1"], ["https://tec.openplanner.team/stops/H4mo195a", "https://tec.openplanner.team/stops/H4mo206a"], ["https://tec.openplanner.team/stops/Cgzoctr1", "https://tec.openplanner.team/stops/Cgzoctr2"], ["https://tec.openplanner.team/stops/N516apa", "https://tec.openplanner.team/stops/N516apb"], ["https://tec.openplanner.team/stops/Cbfplch1", "https://tec.openplanner.team/stops/NC24aia"], ["https://tec.openplanner.team/stops/LMOecsp2", "https://tec.openplanner.team/stops/LMOfleu2"], ["https://tec.openplanner.team/stops/Bmangar1", "https://tec.openplanner.team/stops/H2mg140c"], ["https://tec.openplanner.team/stops/Bauddel1", "https://tec.openplanner.team/stops/Baudstr1"], ["https://tec.openplanner.team/stops/Bhptegl1", "https://tec.openplanner.team/stops/H2ec110b"], ["https://tec.openplanner.team/stops/LkEneus1", "https://tec.openplanner.team/stops/LMspont1"], ["https://tec.openplanner.team/stops/X741aab", "https://tec.openplanner.team/stops/X741abc"], ["https://tec.openplanner.team/stops/Bclgegl1", "https://tec.openplanner.team/stops/Bclgfva1"], ["https://tec.openplanner.team/stops/H4hu114a", "https://tec.openplanner.team/stops/H4hu121b"], ["https://tec.openplanner.team/stops/Creespi1", "https://tec.openplanner.team/stops/Crestan1"], ["https://tec.openplanner.team/stops/Lflec--1", "https://tec.openplanner.team/stops/Lflec--2"], ["https://tec.openplanner.team/stops/Loucent2", "https://tec.openplanner.team/stops/Lousite6"], ["https://tec.openplanner.team/stops/LWagare*", "https://tec.openplanner.team/stops/LWathir1"], ["https://tec.openplanner.team/stops/LBgbaga2", "https://tec.openplanner.team/stops/LGmeg--2"], ["https://tec.openplanner.team/stops/H1gy113a", "https://tec.openplanner.team/stops/H1gy113b"], ["https://tec.openplanner.team/stops/H4eh101a", "https://tec.openplanner.team/stops/H4eh102a"], ["https://tec.openplanner.team/stops/N365abb", "https://tec.openplanner.team/stops/N365acb"], ["https://tec.openplanner.team/stops/LODamco1", "https://tec.openplanner.team/stops/X561aca"], ["https://tec.openplanner.team/stops/NL57agb", "https://tec.openplanner.team/stops/NL57ahb"], ["https://tec.openplanner.team/stops/LcRmich1", "https://tec.openplanner.team/stops/LnNkirc1"], ["https://tec.openplanner.team/stops/LeYgros1", "https://tec.openplanner.team/stops/LeYheid2"], ["https://tec.openplanner.team/stops/H5qu144a", "https://tec.openplanner.team/stops/H5st169a"], ["https://tec.openplanner.team/stops/H1hq127a", "https://tec.openplanner.team/stops/H1hq127b"], ["https://tec.openplanner.team/stops/X822aea", "https://tec.openplanner.team/stops/X822aob"], ["https://tec.openplanner.team/stops/Llgcoti*", "https://tec.openplanner.team/stops/Llgvott1"], ["https://tec.openplanner.team/stops/Bbstbou1", "https://tec.openplanner.team/stops/Bvlvbth1"], ["https://tec.openplanner.team/stops/Bhantui1", "https://tec.openplanner.team/stops/Bthscbl1"], ["https://tec.openplanner.team/stops/LHgroso1", "https://tec.openplanner.team/stops/LHgroso2"], ["https://tec.openplanner.team/stops/H4cr111a", "https://tec.openplanner.team/stops/H4cr111b"], ["https://tec.openplanner.team/stops/N353ada", "https://tec.openplanner.team/stops/N353adb"], ["https://tec.openplanner.team/stops/Lbocruc2", "https://tec.openplanner.team/stops/Lbocruc3"], ["https://tec.openplanner.team/stops/H1qu110b", "https://tec.openplanner.team/stops/H1qu111a"], ["https://tec.openplanner.team/stops/X601dga", "https://tec.openplanner.team/stops/X602afa"], ["https://tec.openplanner.team/stops/Bjausan2", "https://tec.openplanner.team/stops/Bjauwar2"], ["https://tec.openplanner.team/stops/Lmohomv1", "https://tec.openplanner.team/stops/Lmopave2"], ["https://tec.openplanner.team/stops/LCHeg--2", "https://tec.openplanner.team/stops/Lprsher2"], ["https://tec.openplanner.team/stops/Lmidarc2", "https://tec.openplanner.team/stops/Lmitroi1"], ["https://tec.openplanner.team/stops/Cjuloos1", "https://tec.openplanner.team/stops/Cjuloos2"], ["https://tec.openplanner.team/stops/N536apb", "https://tec.openplanner.team/stops/N536aqb"], ["https://tec.openplanner.team/stops/Lscbour1", "https://tec.openplanner.team/stops/Lscbour2"], ["https://tec.openplanner.team/stops/LGEcent2", "https://tec.openplanner.team/stops/LGEhosp2"], ["https://tec.openplanner.team/stops/Bcsebea1", "https://tec.openplanner.team/stops/Bmsgpap1"], ["https://tec.openplanner.team/stops/X806agb", "https://tec.openplanner.team/stops/X806ahb"], ["https://tec.openplanner.team/stops/X986aab", "https://tec.openplanner.team/stops/X986aha"], ["https://tec.openplanner.team/stops/N584ada", "https://tec.openplanner.team/stops/N584aja"], ["https://tec.openplanner.team/stops/Bwavgar1", "https://tec.openplanner.team/stops/Bwavgar6"], ["https://tec.openplanner.team/stops/X926abb", "https://tec.openplanner.team/stops/X926aca"], ["https://tec.openplanner.team/stops/H4ty346a", "https://tec.openplanner.team/stops/H4ty346b"], ["https://tec.openplanner.team/stops/H4ne136b", "https://tec.openplanner.team/stops/H4te256b"], ["https://tec.openplanner.team/stops/Brxmbos1", "https://tec.openplanner.team/stops/Brxmhai2"], ["https://tec.openplanner.team/stops/H1hw122a", "https://tec.openplanner.team/stops/H1hw124a"], ["https://tec.openplanner.team/stops/LEHmarc1", "https://tec.openplanner.team/stops/Livvill2"], ["https://tec.openplanner.team/stops/N213aba", "https://tec.openplanner.team/stops/N213abb"], ["https://tec.openplanner.team/stops/Cauwauq1", "https://tec.openplanner.team/stops/Cauwauq2"], ["https://tec.openplanner.team/stops/Ljewale1", "https://tec.openplanner.team/stops/Ljewale2"], ["https://tec.openplanner.team/stops/H1by104a", "https://tec.openplanner.team/stops/H1by109b"], ["https://tec.openplanner.team/stops/LLWchat2", "https://tec.openplanner.team/stops/LVBcarr1"], ["https://tec.openplanner.team/stops/Clbgare1", "https://tec.openplanner.team/stops/Clbhvil1"], ["https://tec.openplanner.team/stops/Balsnie1", "https://tec.openplanner.team/stops/Balssvi1"], ["https://tec.openplanner.team/stops/X796aaa", "https://tec.openplanner.team/stops/X986agb"], ["https://tec.openplanner.team/stops/LVIeg--1", "https://tec.openplanner.team/stops/LVIsacr2"], ["https://tec.openplanner.team/stops/N214aib", "https://tec.openplanner.team/stops/N225aea"], ["https://tec.openplanner.team/stops/N557ada", "https://tec.openplanner.team/stops/N557adb"], ["https://tec.openplanner.team/stops/Cprvill1", "https://tec.openplanner.team/stops/Cprvill2"], ["https://tec.openplanner.team/stops/LBWeg--4", "https://tec.openplanner.team/stops/LBWviad1"], ["https://tec.openplanner.team/stops/X901aea", "https://tec.openplanner.team/stops/X902bga"], ["https://tec.openplanner.team/stops/Cgpleco1", "https://tec.openplanner.team/stops/Cpcathe1"], ["https://tec.openplanner.team/stops/LHuetat1", "https://tec.openplanner.team/stops/LWzfuma1"], ["https://tec.openplanner.team/stops/H4ep131a", "https://tec.openplanner.team/stops/H4rm109b"], ["https://tec.openplanner.team/stops/H4es117b", "https://tec.openplanner.team/stops/H4ev126a"], ["https://tec.openplanner.team/stops/Cbbjfeu1", "https://tec.openplanner.team/stops/Cvregl2"], ["https://tec.openplanner.team/stops/Cmerdby2", "https://tec.openplanner.team/stops/Cwxplac2"], ["https://tec.openplanner.team/stops/N874aeb", "https://tec.openplanner.team/stops/N874afb"], ["https://tec.openplanner.team/stops/H5el100b", "https://tec.openplanner.team/stops/H5el104a"], ["https://tec.openplanner.team/stops/H1cu112b", "https://tec.openplanner.team/stops/H1cu123a"], ["https://tec.openplanner.team/stops/N245aba", "https://tec.openplanner.team/stops/N340aea"], ["https://tec.openplanner.team/stops/LVltige1", "https://tec.openplanner.team/stops/LVltige2"], ["https://tec.openplanner.team/stops/LFOchab1", "https://tec.openplanner.team/stops/LVlfooz2"], ["https://tec.openplanner.team/stops/Lfhhosp1", "https://tec.openplanner.team/stops/Lfhxhor1"], ["https://tec.openplanner.team/stops/H1ms298a", "https://tec.openplanner.team/stops/H1ms314a"], ["https://tec.openplanner.team/stops/Bbstchn1", "https://tec.openplanner.team/stops/Bbsttab2"], ["https://tec.openplanner.team/stops/H4av102a", "https://tec.openplanner.team/stops/H4av105a"], ["https://tec.openplanner.team/stops/X871aaa", "https://tec.openplanner.team/stops/X873aaa"], ["https://tec.openplanner.team/stops/LCOcrom2", "https://tec.openplanner.team/stops/LSNfays2"], ["https://tec.openplanner.team/stops/X359aha", "https://tec.openplanner.team/stops/X359ahb"], ["https://tec.openplanner.team/stops/H2hp116b", "https://tec.openplanner.team/stops/H2hp118b"], ["https://tec.openplanner.team/stops/LeUgb--1", "https://tec.openplanner.team/stops/LeUgb--2"], ["https://tec.openplanner.team/stops/N201apa", "https://tec.openplanner.team/stops/N201aqa"], ["https://tec.openplanner.team/stops/N544aca", "https://tec.openplanner.team/stops/N544acb"], ["https://tec.openplanner.team/stops/Bbstcha2", "https://tec.openplanner.team/stops/Blpgvil2"], ["https://tec.openplanner.team/stops/X908aib", "https://tec.openplanner.team/stops/X908aoc"], ["https://tec.openplanner.team/stops/Cgxalli2", "https://tec.openplanner.team/stops/Cgxbeau1"], ["https://tec.openplanner.team/stops/LHovach1", "https://tec.openplanner.team/stops/LHovill2"], ["https://tec.openplanner.team/stops/H2bh109a", "https://tec.openplanner.team/stops/H2lc169a"], ["https://tec.openplanner.team/stops/Lsearbo1", "https://tec.openplanner.team/stops/Lsevill2"], ["https://tec.openplanner.team/stops/X614aja", "https://tec.openplanner.team/stops/X614ajb"], ["https://tec.openplanner.team/stops/N202aec", "https://tec.openplanner.team/stops/N562ayb"], ["https://tec.openplanner.team/stops/X604aba", "https://tec.openplanner.team/stops/X604acb"], ["https://tec.openplanner.team/stops/Ccychba2", "https://tec.openplanner.team/stops/Crbegli2"], ["https://tec.openplanner.team/stops/LFfeg--2", "https://tec.openplanner.team/stops/LPRcasi1"], ["https://tec.openplanner.team/stops/X713afb", "https://tec.openplanner.team/stops/X713agb"], ["https://tec.openplanner.team/stops/H1ch103a", "https://tec.openplanner.team/stops/H1ch105b"], ["https://tec.openplanner.team/stops/Lprmc--2", "https://tec.openplanner.team/stops/Lprorph2"], ["https://tec.openplanner.team/stops/LThelse1", "https://tec.openplanner.team/stops/LThgare2"], ["https://tec.openplanner.team/stops/LBLfoxh2", "https://tec.openplanner.team/stops/LMoeg--1"], ["https://tec.openplanner.team/stops/LlOdrei2", "https://tec.openplanner.team/stops/LwPdorf2"], ["https://tec.openplanner.team/stops/LETsaiv1", "https://tec.openplanner.team/stops/LSAtrih1"], ["https://tec.openplanner.team/stops/H4ag100a", "https://tec.openplanner.team/stops/H4ag101a"], ["https://tec.openplanner.team/stops/LBseg--1", "https://tec.openplanner.team/stops/NL72ada"], ["https://tec.openplanner.team/stops/LaFbruc1", "https://tec.openplanner.team/stops/LwPdorf1"], ["https://tec.openplanner.team/stops/X619afa", "https://tec.openplanner.team/stops/X619aga"], ["https://tec.openplanner.team/stops/N501gbb", "https://tec.openplanner.team/stops/N501ldb"], ["https://tec.openplanner.team/stops/H1ne150a", "https://tec.openplanner.team/stops/H1ne150b"], ["https://tec.openplanner.team/stops/LsFcafe1", "https://tec.openplanner.team/stops/LsFcafe2"], ["https://tec.openplanner.team/stops/Lourose3", "https://tec.openplanner.team/stops/Lourose5"], ["https://tec.openplanner.team/stops/Cmmramb2", "https://tec.openplanner.team/stops/Cmysncb2"], ["https://tec.openplanner.team/stops/H4rx176b", "https://tec.openplanner.team/stops/H4wa148b"], ["https://tec.openplanner.team/stops/X910afa", "https://tec.openplanner.team/stops/X910afc"], ["https://tec.openplanner.team/stops/Btlgegl1", "https://tec.openplanner.team/stops/Btlgegl2"], ["https://tec.openplanner.team/stops/Bwatfon1", "https://tec.openplanner.team/stops/Bwatrte1"], ["https://tec.openplanner.team/stops/LHNtill1", "https://tec.openplanner.team/stops/LHNtill2"], ["https://tec.openplanner.team/stops/N501fpa", "https://tec.openplanner.team/stops/N501mfb"], ["https://tec.openplanner.team/stops/N145aja", "https://tec.openplanner.team/stops/N150aaa"], ["https://tec.openplanner.team/stops/N114aab", "https://tec.openplanner.team/stops/N122agb"], ["https://tec.openplanner.team/stops/Clbpepi1", "https://tec.openplanner.team/stops/Clbpepi2"], ["https://tec.openplanner.team/stops/Bcbqufo2", "https://tec.openplanner.team/stops/Btubcvi2"], ["https://tec.openplanner.team/stops/LHMbach1", "https://tec.openplanner.team/stops/LHMbach2"], ["https://tec.openplanner.team/stops/N134ada", "https://tec.openplanner.team/stops/N134ala"], ["https://tec.openplanner.team/stops/Lcefoxh2", "https://tec.openplanner.team/stops/Lceludg1"], ["https://tec.openplanner.team/stops/H1wa149c", "https://tec.openplanner.team/stops/H1wa153a"], ["https://tec.openplanner.team/stops/H1qu102a", "https://tec.openplanner.team/stops/H1qu106b"], ["https://tec.openplanner.team/stops/Cjulucq1", "https://tec.openplanner.team/stops/Cjupuis2"], ["https://tec.openplanner.team/stops/H3so170b", "https://tec.openplanner.team/stops/H3so173a"], ["https://tec.openplanner.team/stops/LVLruis1", "https://tec.openplanner.team/stops/LVLzoni1"], ["https://tec.openplanner.team/stops/LFIcabi1", "https://tec.openplanner.team/stops/LHaxhor2"], ["https://tec.openplanner.team/stops/H2ca104a", "https://tec.openplanner.team/stops/H2ca108b"], ["https://tec.openplanner.team/stops/H2ll177a", "https://tec.openplanner.team/stops/H2ll189b"], ["https://tec.openplanner.team/stops/LrAgier1", "https://tec.openplanner.team/stops/LrAplat1"], ["https://tec.openplanner.team/stops/Ccoacar2", "https://tec.openplanner.team/stops/Ccotrie1"], ["https://tec.openplanner.team/stops/Cmlbevu2", "https://tec.openplanner.team/stops/Cmlbrac1"], ["https://tec.openplanner.team/stops/NC14aea", "https://tec.openplanner.team/stops/NC14aeb"], ["https://tec.openplanner.team/stops/Cbwegl2", "https://tec.openplanner.team/stops/H1mb129b"], ["https://tec.openplanner.team/stops/Lceludg1", "https://tec.openplanner.team/stops/Lcewilm1"], ["https://tec.openplanner.team/stops/Lheloti2", "https://tec.openplanner.team/stops/LOUsorb2"], ["https://tec.openplanner.team/stops/H1gh151b", "https://tec.openplanner.team/stops/H1ms930a"], ["https://tec.openplanner.team/stops/Laltrap1", "https://tec.openplanner.team/stops/Laltrav2"], ["https://tec.openplanner.team/stops/N540acd", "https://tec.openplanner.team/stops/N540afb"], ["https://tec.openplanner.team/stops/LCxwarr2", "https://tec.openplanner.team/stops/LHEchex1"], ["https://tec.openplanner.team/stops/H3br110a", "https://tec.openplanner.team/stops/H3br112a"], ["https://tec.openplanner.team/stops/X639ama", "https://tec.openplanner.team/stops/X639amd"], ["https://tec.openplanner.team/stops/LPohoeg1", "https://tec.openplanner.team/stops/LSPjoli1"], ["https://tec.openplanner.team/stops/N574ada", "https://tec.openplanner.team/stops/N574aeb"], ["https://tec.openplanner.team/stops/X624aca", "https://tec.openplanner.team/stops/X624amb"], ["https://tec.openplanner.team/stops/N501cpa", "https://tec.openplanner.team/stops/N538axa"], ["https://tec.openplanner.team/stops/Llmbouv1", "https://tec.openplanner.team/stops/Llmdela1"], ["https://tec.openplanner.team/stops/N236aeb", "https://tec.openplanner.team/stops/N236ala"], ["https://tec.openplanner.team/stops/LWLeg--1", "https://tec.openplanner.team/stops/LWLeg--3"], ["https://tec.openplanner.team/stops/N309aaa", "https://tec.openplanner.team/stops/N309aba"], ["https://tec.openplanner.team/stops/Bwatgar3", "https://tec.openplanner.team/stops/Bwatrdu1"], ["https://tec.openplanner.team/stops/N501evb", "https://tec.openplanner.team/stops/N538asa"], ["https://tec.openplanner.team/stops/N556afa", "https://tec.openplanner.team/stops/N556afb"], ["https://tec.openplanner.team/stops/X804aeb", "https://tec.openplanner.team/stops/X804azb"], ["https://tec.openplanner.team/stops/N509aaa", "https://tec.openplanner.team/stops/N509aeb"], ["https://tec.openplanner.team/stops/N331aaa", "https://tec.openplanner.team/stops/N331aeb"], ["https://tec.openplanner.team/stops/X624afb", "https://tec.openplanner.team/stops/X624ala"], ["https://tec.openplanner.team/stops/N304abb", "https://tec.openplanner.team/stops/N315aab"], ["https://tec.openplanner.team/stops/X812bbb", "https://tec.openplanner.team/stops/X812bga"], ["https://tec.openplanner.team/stops/LBVclig2", "https://tec.openplanner.team/stops/LMAfali1"], ["https://tec.openplanner.team/stops/H1ms278a", "https://tec.openplanner.team/stops/H1ms940b"], ["https://tec.openplanner.team/stops/N577abb", "https://tec.openplanner.team/stops/N577aea"], ["https://tec.openplanner.team/stops/Braccen2", "https://tec.openplanner.team/stops/Bracgar2"], ["https://tec.openplanner.team/stops/H4be103b", "https://tec.openplanner.team/stops/H4be112b"], ["https://tec.openplanner.team/stops/Bhalker2", "https://tec.openplanner.team/stops/Blemsta1"], ["https://tec.openplanner.team/stops/H1mv242b", "https://tec.openplanner.team/stops/H1nv325b"], ["https://tec.openplanner.team/stops/Bhenpln1", "https://tec.openplanner.team/stops/Bhenrcr2"], ["https://tec.openplanner.team/stops/LSomonu2", "https://tec.openplanner.team/stops/LSorobe2"], ["https://tec.openplanner.team/stops/N218adb", "https://tec.openplanner.team/stops/N218afb"], ["https://tec.openplanner.team/stops/Cbmzoni2", "https://tec.openplanner.team/stops/H1tt106b"], ["https://tec.openplanner.team/stops/Bspkbeu1", "https://tec.openplanner.team/stops/H1gy115b"], ["https://tec.openplanner.team/stops/N501hza", "https://tec.openplanner.team/stops/N501hzb"], ["https://tec.openplanner.team/stops/N149aia", "https://tec.openplanner.team/stops/N149akb"], ["https://tec.openplanner.team/stops/N214aia", "https://tec.openplanner.team/stops/N236aha"], ["https://tec.openplanner.team/stops/LGMforg2", "https://tec.openplanner.team/stops/LGMstin2"], ["https://tec.openplanner.team/stops/LrUbrac1", "https://tec.openplanner.team/stops/LrUbrac4"], ["https://tec.openplanner.team/stops/X771aaa", "https://tec.openplanner.team/stops/X771abb"], ["https://tec.openplanner.team/stops/Llgbavi1", "https://tec.openplanner.team/stops/Llgdepo5"], ["https://tec.openplanner.team/stops/Llgstap1", "https://tec.openplanner.team/stops/Llgstap2"], ["https://tec.openplanner.team/stops/Lhefoot1", "https://tec.openplanner.team/stops/Lheloti2"], ["https://tec.openplanner.team/stops/Lsnfont2", "https://tec.openplanner.team/stops/Lsnvand3"], ["https://tec.openplanner.team/stops/H3lr109a", "https://tec.openplanner.team/stops/H3lr113b"], ["https://tec.openplanner.team/stops/H4do202b", "https://tec.openplanner.team/stops/H4sl155b"], ["https://tec.openplanner.team/stops/NL74aha", "https://tec.openplanner.team/stops/NL74aia"], ["https://tec.openplanner.team/stops/X779aca", "https://tec.openplanner.team/stops/X779aib"], ["https://tec.openplanner.team/stops/Cmmjami1", "https://tec.openplanner.team/stops/Cmygbbo1"], ["https://tec.openplanner.team/stops/X601blb", "https://tec.openplanner.team/stops/X612acb"], ["https://tec.openplanner.team/stops/X811ahb", "https://tec.openplanner.team/stops/X811aib"], ["https://tec.openplanner.team/stops/X982aba", "https://tec.openplanner.team/stops/X982btb"], ["https://tec.openplanner.team/stops/LGe4bra2", "https://tec.openplanner.team/stops/LGeschr2"], ["https://tec.openplanner.team/stops/Cgystjo4", "https://tec.openplanner.team/stops/Cmtmath2"], ["https://tec.openplanner.team/stops/LTIdonn2", "https://tec.openplanner.team/stops/LTIptme2"], ["https://tec.openplanner.team/stops/Cpctunn2", "https://tec.openplanner.team/stops/Cpcwaut1"], ["https://tec.openplanner.team/stops/Lpeptra1", "https://tec.openplanner.team/stops/LWenouv2"], ["https://tec.openplanner.team/stops/Ctuplac2", "https://tec.openplanner.team/stops/Ctusold1"], ["https://tec.openplanner.team/stops/Cdadest1", "https://tec.openplanner.team/stops/Cdapige1"], ["https://tec.openplanner.team/stops/LBahome2", "https://tec.openplanner.team/stops/LLUcdoy1"], ["https://tec.openplanner.team/stops/Bperwil2", "https://tec.openplanner.team/stops/Btlbegl4"], ["https://tec.openplanner.team/stops/X952alb", "https://tec.openplanner.team/stops/X955aab"], ["https://tec.openplanner.team/stops/LSWscie2", "https://tec.openplanner.team/stops/LSZsolw3"], ["https://tec.openplanner.team/stops/Loudela2", "https://tec.openplanner.team/stops/Lousimo1"], ["https://tec.openplanner.team/stops/X660aba", "https://tec.openplanner.team/stops/X672ala"], ["https://tec.openplanner.team/stops/N547ala", "https://tec.openplanner.team/stops/N547alb"], ["https://tec.openplanner.team/stops/Bhevhha1", "https://tec.openplanner.team/stops/Bhevl3l1"], ["https://tec.openplanner.team/stops/X630acb", "https://tec.openplanner.team/stops/X631ada"], ["https://tec.openplanner.team/stops/Csyplac2", "https://tec.openplanner.team/stops/Csystan2"], ["https://tec.openplanner.team/stops/LbUmors1", "https://tec.openplanner.team/stops/LbUwhon1"], ["https://tec.openplanner.team/stops/H4fr144b", "https://tec.openplanner.team/stops/H4fr391a"], ["https://tec.openplanner.team/stops/N137aia", "https://tec.openplanner.team/stops/N137aib"], ["https://tec.openplanner.team/stops/N539asa", "https://tec.openplanner.team/stops/N539asb"], ["https://tec.openplanner.team/stops/LMucarr1", "https://tec.openplanner.team/stops/LMuvill1"], ["https://tec.openplanner.team/stops/N254agb", "https://tec.openplanner.team/stops/N254ahb"], ["https://tec.openplanner.team/stops/H4ft136a", "https://tec.openplanner.team/stops/H4ma204a"], ["https://tec.openplanner.team/stops/X779ada", "https://tec.openplanner.team/stops/X779adb"], ["https://tec.openplanner.team/stops/H4ty339a", "https://tec.openplanner.team/stops/H4ty339b"], ["https://tec.openplanner.team/stops/LeYauto1", "https://tec.openplanner.team/stops/LeYmuhl1"], ["https://tec.openplanner.team/stops/X670apb", "https://tec.openplanner.team/stops/X670apc"], ["https://tec.openplanner.team/stops/N337aeb", "https://tec.openplanner.team/stops/N337afa"], ["https://tec.openplanner.team/stops/Bvircen1", "https://tec.openplanner.team/stops/Bvirpos2"], ["https://tec.openplanner.team/stops/N501bob", "https://tec.openplanner.team/stops/N501jma"], ["https://tec.openplanner.team/stops/Bnetegl4", "https://tec.openplanner.team/stops/Bpecsta1"], ["https://tec.openplanner.team/stops/Bbstcha1", "https://tec.openplanner.team/stops/Blpgvil2"], ["https://tec.openplanner.team/stops/LCHfond1", "https://tec.openplanner.team/stops/LCHgele2"], ["https://tec.openplanner.team/stops/LLbvith1", "https://tec.openplanner.team/stops/LLbvith2"], ["https://tec.openplanner.team/stops/N120ajb", "https://tec.openplanner.team/stops/N158aba"], ["https://tec.openplanner.team/stops/H1bx104b", "https://tec.openplanner.team/stops/H1bx108b"], ["https://tec.openplanner.team/stops/N347aeb", "https://tec.openplanner.team/stops/X370acb"], ["https://tec.openplanner.team/stops/X652ada", "https://tec.openplanner.team/stops/X669abc"], ["https://tec.openplanner.team/stops/Lprdavi1", "https://tec.openplanner.team/stops/Lveptle3"], ["https://tec.openplanner.team/stops/Bjaurgo1", "https://tec.openplanner.team/stops/NR30aaa"], ["https://tec.openplanner.team/stops/LeUgulc1", "https://tec.openplanner.team/stops/LeUschi1"], ["https://tec.openplanner.team/stops/X614aeb", "https://tec.openplanner.team/stops/X614ahb"], ["https://tec.openplanner.team/stops/LNOsedo1", "https://tec.openplanner.team/stops/LQafond1"], ["https://tec.openplanner.team/stops/N248aaa", "https://tec.openplanner.team/stops/N248aba"], ["https://tec.openplanner.team/stops/H4rm109b", "https://tec.openplanner.team/stops/H4rm114b"], ["https://tec.openplanner.team/stops/N222acb", "https://tec.openplanner.team/stops/X222aza"], ["https://tec.openplanner.team/stops/X801cca", "https://tec.openplanner.team/stops/X801cmb"], ["https://tec.openplanner.team/stops/Lghflot1", "https://tec.openplanner.team/stops/Lghflot3"], ["https://tec.openplanner.team/stops/H4he101a", "https://tec.openplanner.team/stops/H4he104a"], ["https://tec.openplanner.team/stops/Bwavdmo2", "https://tec.openplanner.team/stops/Bwavvpr1"], ["https://tec.openplanner.team/stops/LROchap1", "https://tec.openplanner.team/stops/LwYkirc2"], ["https://tec.openplanner.team/stops/LMAcime2", "https://tec.openplanner.team/stops/LMAstei2"], ["https://tec.openplanner.team/stops/LTOeg--2", "https://tec.openplanner.team/stops/LTOplac2"], ["https://tec.openplanner.team/stops/X809aeb", "https://tec.openplanner.team/stops/X850adb"], ["https://tec.openplanner.team/stops/H3br103a", "https://tec.openplanner.team/stops/H3br103b"], ["https://tec.openplanner.team/stops/LhSbruc1", "https://tec.openplanner.team/stops/LhSwind1"], ["https://tec.openplanner.team/stops/Cgocalv4", "https://tec.openplanner.team/stops/Cgofabr1"], ["https://tec.openplanner.team/stops/LSJ38--1", "https://tec.openplanner.team/stops/LSJgrae1"], ["https://tec.openplanner.team/stops/Ccycont1", "https://tec.openplanner.team/stops/Crbreve1"], ["https://tec.openplanner.team/stops/LCleg--1", "https://tec.openplanner.team/stops/LELeg--2"], ["https://tec.openplanner.team/stops/N552abb", "https://tec.openplanner.team/stops/N553acb"], ["https://tec.openplanner.team/stops/H5pe146a", "https://tec.openplanner.team/stops/H5pe146b"], ["https://tec.openplanner.team/stops/Bborppa1", "https://tec.openplanner.team/stops/Bborppa2"], ["https://tec.openplanner.team/stops/LBJapol1", "https://tec.openplanner.team/stops/LBJapol2"], ["https://tec.openplanner.team/stops/LlCgren1", "https://tec.openplanner.team/stops/LrAgier1"], ["https://tec.openplanner.team/stops/N505afb", "https://tec.openplanner.team/stops/N505aka"], ["https://tec.openplanner.team/stops/H1hw118b", "https://tec.openplanner.team/stops/H1hw123b"], ["https://tec.openplanner.team/stops/LrUbahn2", "https://tec.openplanner.team/stops/LrUweve1"], ["https://tec.openplanner.team/stops/X725bdb", "https://tec.openplanner.team/stops/X771ala"], ["https://tec.openplanner.team/stops/Lemambi1", "https://tec.openplanner.team/stops/Lemambi2"], ["https://tec.openplanner.team/stops/N516amb", "https://tec.openplanner.team/stops/N516apb"], ["https://tec.openplanner.team/stops/Lbocime1", "https://tec.openplanner.team/stops/Lbotige2"], ["https://tec.openplanner.team/stops/X904aga", "https://tec.openplanner.team/stops/X904aib"], ["https://tec.openplanner.team/stops/LBSpail3", "https://tec.openplanner.team/stops/LBSpail4"], ["https://tec.openplanner.team/stops/Cauromi1", "https://tec.openplanner.team/stops/Cauromi2"], ["https://tec.openplanner.team/stops/H2ca105b", "https://tec.openplanner.team/stops/H2ca116a"], ["https://tec.openplanner.team/stops/LsEdorf1", "https://tec.openplanner.team/stops/LsEdorf2"], ["https://tec.openplanner.team/stops/X945aca", "https://tec.openplanner.team/stops/X945acb"], ["https://tec.openplanner.team/stops/Bmalwop1", "https://tec.openplanner.team/stops/Bmalwop2"], ["https://tec.openplanner.team/stops/LeUgutl1", "https://tec.openplanner.team/stops/LeUgutl2"], ["https://tec.openplanner.team/stops/LWEcomp2", "https://tec.openplanner.team/stops/LWEfati2"], ["https://tec.openplanner.team/stops/Lstauna2", "https://tec.openplanner.team/stops/Lstbota3"], ["https://tec.openplanner.team/stops/N340aib", "https://tec.openplanner.team/stops/X301ara"], ["https://tec.openplanner.team/stops/X663ada", "https://tec.openplanner.team/stops/X663adb"], ["https://tec.openplanner.team/stops/H1wg131a", "https://tec.openplanner.team/stops/H1wg131b"], ["https://tec.openplanner.team/stops/LRItour1", "https://tec.openplanner.team/stops/LRItour2"], ["https://tec.openplanner.team/stops/X907aea", "https://tec.openplanner.team/stops/X907aeb"], ["https://tec.openplanner.team/stops/LkEbbl-2", "https://tec.openplanner.team/stops/LkEheyg2"], ["https://tec.openplanner.team/stops/X769aoa", "https://tec.openplanner.team/stops/X769aob"], ["https://tec.openplanner.team/stops/H1he101b", "https://tec.openplanner.team/stops/H1he105b"], ["https://tec.openplanner.team/stops/LLrc1992", "https://tec.openplanner.team/stops/LLrfrai1"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X724acb"], ["https://tec.openplanner.team/stops/Bhalker1", "https://tec.openplanner.team/stops/Bhalker2"], ["https://tec.openplanner.team/stops/H1pa100b", "https://tec.openplanner.team/stops/H1pd145a"], ["https://tec.openplanner.team/stops/Lprchat1", "https://tec.openplanner.team/stops/Lprsher1"], ["https://tec.openplanner.team/stops/Cgycime2", "https://tec.openplanner.team/stops/Cgysarr1"], ["https://tec.openplanner.team/stops/N525afa", "https://tec.openplanner.team/stops/N525aga"], ["https://tec.openplanner.team/stops/Bnivros2", "https://tec.openplanner.team/stops/Bnivvri2"], ["https://tec.openplanner.team/stops/H2jo161c", "https://tec.openplanner.team/stops/H2jo162a"], ["https://tec.openplanner.team/stops/Cmerlme2", "https://tec.openplanner.team/stops/Cmesncv3"], ["https://tec.openplanner.team/stops/H1wg124b", "https://tec.openplanner.team/stops/H1wg125a"], ["https://tec.openplanner.team/stops/H1hn205a", "https://tec.openplanner.team/stops/H1hn363a"], ["https://tec.openplanner.team/stops/Bwavpao1", "https://tec.openplanner.team/stops/Bwavpao2"], ["https://tec.openplanner.team/stops/LBNgarn2", "https://tec.openplanner.team/stops/LeUgutl2"], ["https://tec.openplanner.team/stops/H4bq154b", "https://tec.openplanner.team/stops/H4mb205b"], ["https://tec.openplanner.team/stops/X804ajb", "https://tec.openplanner.team/stops/X804aqb"], ["https://tec.openplanner.team/stops/Llabrou2", "https://tec.openplanner.team/stops/Lladete3"], ["https://tec.openplanner.team/stops/LBiberg2", "https://tec.openplanner.team/stops/LWEbr051"], ["https://tec.openplanner.team/stops/N553abb", "https://tec.openplanner.team/stops/N553aib"], ["https://tec.openplanner.team/stops/H1ms268b", "https://tec.openplanner.team/stops/H1ms308b"], ["https://tec.openplanner.team/stops/X746aka", "https://tec.openplanner.team/stops/X746ala"], ["https://tec.openplanner.team/stops/H1cv103a", "https://tec.openplanner.team/stops/H1gq153b"], ["https://tec.openplanner.team/stops/N308apa", "https://tec.openplanner.team/stops/N331agb"], ["https://tec.openplanner.team/stops/N308aka", "https://tec.openplanner.team/stops/N308ama"], ["https://tec.openplanner.team/stops/Bmrllgr1", "https://tec.openplanner.team/stops/Bmrlnce1"], ["https://tec.openplanner.team/stops/LTIdjal1", "https://tec.openplanner.team/stops/LTIpire2"], ["https://tec.openplanner.team/stops/N118aua", "https://tec.openplanner.team/stops/N118avc"], ["https://tec.openplanner.team/stops/H4be114a", "https://tec.openplanner.team/stops/H4be147b"], ["https://tec.openplanner.team/stops/X396adb", "https://tec.openplanner.team/stops/X397aba"], ["https://tec.openplanner.team/stops/H1go174a", "https://tec.openplanner.team/stops/H1mb137b"], ["https://tec.openplanner.team/stops/LFIinse1", "https://tec.openplanner.team/stops/LXoeg--3"], ["https://tec.openplanner.team/stops/Bhencha2", "https://tec.openplanner.team/stops/Bhptpla2"], ["https://tec.openplanner.team/stops/Bhanwav1", "https://tec.openplanner.team/stops/Bhanwav2"], ["https://tec.openplanner.team/stops/Bnivfro2", "https://tec.openplanner.team/stops/Bnivpla2"], ["https://tec.openplanner.team/stops/N103ada", "https://tec.openplanner.team/stops/N103adb"], ["https://tec.openplanner.team/stops/N517afb", "https://tec.openplanner.team/stops/N517aga"], ["https://tec.openplanner.team/stops/N529aba", "https://tec.openplanner.team/stops/N529aia"], ["https://tec.openplanner.team/stops/Lchsart1", "https://tec.openplanner.team/stops/Lchtche2"], ["https://tec.openplanner.team/stops/H4ty285c", "https://tec.openplanner.team/stops/H4ty287a"], ["https://tec.openplanner.team/stops/X663arb", "https://tec.openplanner.team/stops/X663awa"], ["https://tec.openplanner.team/stops/LHSfexh1", "https://tec.openplanner.team/stops/LHStrez2"], ["https://tec.openplanner.team/stops/H1gh144a", "https://tec.openplanner.team/stops/H1je212a"], ["https://tec.openplanner.team/stops/X713ajb", "https://tec.openplanner.team/stops/X713ajc"], ["https://tec.openplanner.team/stops/Cchba01", "https://tec.openplanner.team/stops/Cchba02"], ["https://tec.openplanner.team/stops/X618acb", "https://tec.openplanner.team/stops/X619afb"], ["https://tec.openplanner.team/stops/LkTgutl2", "https://tec.openplanner.team/stops/LwAkett2"], ["https://tec.openplanner.team/stops/Bchacen2", "https://tec.openplanner.team/stops/Bcrnnra1"], ["https://tec.openplanner.team/stops/Ctyhame2", "https://tec.openplanner.team/stops/Ctynamu2"], ["https://tec.openplanner.team/stops/Baudhan2", "https://tec.openplanner.team/stops/Baudstr1"], ["https://tec.openplanner.team/stops/N217aaa", "https://tec.openplanner.team/stops/N217aeb"], ["https://tec.openplanner.team/stops/N101aha", "https://tec.openplanner.team/stops/N101aua"], ["https://tec.openplanner.team/stops/Llgcorn1", "https://tec.openplanner.team/stops/Llgcorn4"], ["https://tec.openplanner.team/stops/LSOcime1", "https://tec.openplanner.team/stops/LSOcime2"], ["https://tec.openplanner.team/stops/LBhschu1", "https://tec.openplanner.team/stops/LBhschu2"], ["https://tec.openplanner.team/stops/N556aeb", "https://tec.openplanner.team/stops/N557aja"], ["https://tec.openplanner.team/stops/Cjuspin2", "https://tec.openplanner.team/stops/Cjuunio2"], ["https://tec.openplanner.team/stops/LPAbrun2", "https://tec.openplanner.team/stops/LWinavi1"], ["https://tec.openplanner.team/stops/Lhrmare3", "https://tec.openplanner.team/stops/Llgchan1"], ["https://tec.openplanner.team/stops/LRmkast*", "https://tec.openplanner.team/stops/LSIgehe2"], ["https://tec.openplanner.team/stops/Bfelequ1", "https://tec.openplanner.team/stops/Bsengma1"], ["https://tec.openplanner.team/stops/Cpcndce1", "https://tec.openplanner.team/stops/Cvvpotv1"], ["https://tec.openplanner.team/stops/LSkathe1", "https://tec.openplanner.team/stops/LSkcomb1"], ["https://tec.openplanner.team/stops/X746alb", "https://tec.openplanner.team/stops/X746amb"], ["https://tec.openplanner.team/stops/X615bga", "https://tec.openplanner.team/stops/X615bha"], ["https://tec.openplanner.team/stops/Ladfran1", "https://tec.openplanner.team/stops/Lvefabr2"], ["https://tec.openplanner.team/stops/N501cmc", "https://tec.openplanner.team/stops/N501ema"], ["https://tec.openplanner.team/stops/H1si162b", "https://tec.openplanner.team/stops/H1si164b"], ["https://tec.openplanner.team/stops/X717aab", "https://tec.openplanner.team/stops/X717aba"], ["https://tec.openplanner.team/stops/LJUxhen1", "https://tec.openplanner.team/stops/LPAchpl2"], ["https://tec.openplanner.team/stops/Becepri2", "https://tec.openplanner.team/stops/H2ec103b"], ["https://tec.openplanner.team/stops/Bbaucba1", "https://tec.openplanner.team/stops/Bbaulil2"], ["https://tec.openplanner.team/stops/Cmlbruy2", "https://tec.openplanner.team/stops/Cmlsana2"], ["https://tec.openplanner.team/stops/Llglamb1", "https://tec.openplanner.team/stops/Llglave1"], ["https://tec.openplanner.team/stops/N566ada", "https://tec.openplanner.team/stops/N566aeb"], ["https://tec.openplanner.team/stops/X714abb", "https://tec.openplanner.team/stops/X714acb"], ["https://tec.openplanner.team/stops/H1ba104a", "https://tec.openplanner.team/stops/H1ba120a"], ["https://tec.openplanner.team/stops/N102aca", "https://tec.openplanner.team/stops/N103ada"], ["https://tec.openplanner.team/stops/Bblaaca1", "https://tec.openplanner.team/stops/Bblafab1"], ["https://tec.openplanner.team/stops/Bhalgja1", "https://tec.openplanner.team/stops/Bhalker2"], ["https://tec.openplanner.team/stops/LHUcamp2", "https://tec.openplanner.team/stops/LHUzoni2"], ["https://tec.openplanner.team/stops/H3lr112a", "https://tec.openplanner.team/stops/H3lr116b"], ["https://tec.openplanner.team/stops/LLvferm2", "https://tec.openplanner.team/stops/NL81adb"], ["https://tec.openplanner.team/stops/Bwatcha2", "https://tec.openplanner.team/stops/Bwategp1"], ["https://tec.openplanner.team/stops/LBJlieg2", "https://tec.openplanner.team/stops/LBJplan2"], ["https://tec.openplanner.team/stops/N120abc", "https://tec.openplanner.team/stops/N302ada"], ["https://tec.openplanner.team/stops/H1ob331a", "https://tec.openplanner.team/stops/H1ob333a"], ["https://tec.openplanner.team/stops/H2ll192b", "https://tec.openplanner.team/stops/H2ll193b"], ["https://tec.openplanner.team/stops/X886abd", "https://tec.openplanner.team/stops/X886aha"], ["https://tec.openplanner.team/stops/H2mo120b", "https://tec.openplanner.team/stops/H2mo130c"], ["https://tec.openplanner.team/stops/H1pd141a", "https://tec.openplanner.team/stops/H1pd141b"], ["https://tec.openplanner.team/stops/H4co151a", "https://tec.openplanner.team/stops/H4pl112a"], ["https://tec.openplanner.team/stops/H4bu108a", "https://tec.openplanner.team/stops/H4ms166a"], ["https://tec.openplanner.team/stops/Llojeme2", "https://tec.openplanner.team/stops/Lloretr2"], ["https://tec.openplanner.team/stops/N549adb", "https://tec.openplanner.team/stops/N577aab"], ["https://tec.openplanner.team/stops/LMAgb--1", "https://tec.openplanner.team/stops/LMArave1"], ["https://tec.openplanner.team/stops/N559aca", "https://tec.openplanner.team/stops/N559aeb"], ["https://tec.openplanner.team/stops/X901aoa", "https://tec.openplanner.team/stops/X901aob"], ["https://tec.openplanner.team/stops/X741afa", "https://tec.openplanner.team/stops/X741afb"], ["https://tec.openplanner.team/stops/Bove4ko1", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://tec.openplanner.team/stops/Cmldeto1", "https://tec.openplanner.team/stops/Cmldupu2"], ["https://tec.openplanner.team/stops/X781aca", "https://tec.openplanner.team/stops/X781adb"], ["https://tec.openplanner.team/stops/Cdametr1", "https://tec.openplanner.team/stops/Cdametr2"], ["https://tec.openplanner.team/stops/LVIferm1", "https://tec.openplanner.team/stops/LVIferm2"], ["https://tec.openplanner.team/stops/Lmnbass2", "https://tec.openplanner.team/stops/Lmneg--2"], ["https://tec.openplanner.team/stops/LBNruns2", "https://tec.openplanner.team/stops/LGOmous1"], ["https://tec.openplanner.team/stops/H4by115a", "https://tec.openplanner.team/stops/H4by116b"], ["https://tec.openplanner.team/stops/N135axa", "https://tec.openplanner.team/stops/N135bea"], ["https://tec.openplanner.team/stops/LeUcroi2", "https://tec.openplanner.team/stops/LHthest2"], ["https://tec.openplanner.team/stops/X725bia", "https://tec.openplanner.team/stops/X767aca"], ["https://tec.openplanner.team/stops/Blthbss1", "https://tec.openplanner.team/stops/Blthbss2"], ["https://tec.openplanner.team/stops/H5gr135a", "https://tec.openplanner.team/stops/H5qu144a"], ["https://tec.openplanner.team/stops/Cgoathe2", "https://tec.openplanner.team/stops/CMfbru1"], ["https://tec.openplanner.team/stops/N539ada", "https://tec.openplanner.team/stops/N539adc"], ["https://tec.openplanner.team/stops/N351ama", "https://tec.openplanner.team/stops/N351amb"], ["https://tec.openplanner.team/stops/X614bda", "https://tec.openplanner.team/stops/X614bdb"], ["https://tec.openplanner.team/stops/Cctbinc2", "https://tec.openplanner.team/stops/Cprrvil2"], ["https://tec.openplanner.team/stops/Lsmjalh2", "https://tec.openplanner.team/stops/Lsmrwan1"], ["https://tec.openplanner.team/stops/N217aab", "https://tec.openplanner.team/stops/N217abb"], ["https://tec.openplanner.team/stops/LSevitu2", "https://tec.openplanner.team/stops/LSevitu4"], ["https://tec.openplanner.team/stops/Lendonh2", "https://tec.openplanner.team/stops/Lenhouc2"], ["https://tec.openplanner.team/stops/H1je217b", "https://tec.openplanner.team/stops/H1je219a"], ["https://tec.openplanner.team/stops/N540afa", "https://tec.openplanner.team/stops/N540aha"], ["https://tec.openplanner.team/stops/Cctchea2", "https://tec.openplanner.team/stops/NC11aja"], ["https://tec.openplanner.team/stops/N261aca", "https://tec.openplanner.team/stops/N261afa"], ["https://tec.openplanner.team/stops/X923aqa", "https://tec.openplanner.team/stops/X923aqb"], ["https://tec.openplanner.team/stops/Cwgpatr1", "https://tec.openplanner.team/stops/Cwgpatr2"], ["https://tec.openplanner.team/stops/LBAbooz1", "https://tec.openplanner.team/stops/LBApak2*"], ["https://tec.openplanner.team/stops/H5bl124a", "https://tec.openplanner.team/stops/H5bl143a"], ["https://tec.openplanner.team/stops/H4ty285b", "https://tec.openplanner.team/stops/H4ty285c"], ["https://tec.openplanner.team/stops/X831aaa", "https://tec.openplanner.team/stops/X831ada"], ["https://tec.openplanner.team/stops/Lstchas1", "https://tec.openplanner.team/stops/Lstchas2"], ["https://tec.openplanner.team/stops/Cmehame2", "https://tec.openplanner.team/stops/Cmewaya2"], ["https://tec.openplanner.team/stops/Loubonc2", "https://tec.openplanner.team/stops/Loucorn1"], ["https://tec.openplanner.team/stops/N536aga", "https://tec.openplanner.team/stops/N580aga"], ["https://tec.openplanner.team/stops/H2pr119a", "https://tec.openplanner.team/stops/H2pr119b"], ["https://tec.openplanner.team/stops/X811ama", "https://tec.openplanner.team/stops/X811amb"], ["https://tec.openplanner.team/stops/N512aka", "https://tec.openplanner.team/stops/N512ama"], ["https://tec.openplanner.team/stops/N568aba", "https://tec.openplanner.team/stops/N568aeb"], ["https://tec.openplanner.team/stops/Cchbaza1", "https://tec.openplanner.team/stops/Cchdelf2"], ["https://tec.openplanner.team/stops/N573aaa", "https://tec.openplanner.team/stops/N573amb"], ["https://tec.openplanner.team/stops/X826aca", "https://tec.openplanner.team/stops/X826adb"], ["https://tec.openplanner.team/stops/H1gh145a", "https://tec.openplanner.team/stops/H1gh157b"], ["https://tec.openplanner.team/stops/Lvccime2", "https://tec.openplanner.team/stops/Lvcpost2"], ["https://tec.openplanner.team/stops/N506beb", "https://tec.openplanner.team/stops/N506bja"], ["https://tec.openplanner.team/stops/Bperqui1", "https://tec.openplanner.team/stops/Bperwil1"], ["https://tec.openplanner.team/stops/N501bla", "https://tec.openplanner.team/stops/N501blb"], ["https://tec.openplanner.team/stops/LBieg--3", "https://tec.openplanner.team/stops/LBivill2"], ["https://tec.openplanner.team/stops/LESamos1", "https://tec.openplanner.team/stops/LEScarr1"], ["https://tec.openplanner.team/stops/LDAcite1", "https://tec.openplanner.team/stops/LDAcite2"], ["https://tec.openplanner.team/stops/N501cnb", "https://tec.openplanner.team/stops/N501cob"], ["https://tec.openplanner.team/stops/LeLdorf1", "https://tec.openplanner.team/stops/LeLdorf2"], ["https://tec.openplanner.team/stops/X801boa", "https://tec.openplanner.team/stops/X801bpa"], ["https://tec.openplanner.team/stops/Csa4mai2", "https://tec.openplanner.team/stops/Csasncb1"], ["https://tec.openplanner.team/stops/LAugara1", "https://tec.openplanner.team/stops/LWRpl--2"], ["https://tec.openplanner.team/stops/H2bh121b", "https://tec.openplanner.team/stops/H2fa108b"], ["https://tec.openplanner.team/stops/Cmocalv1", "https://tec.openplanner.team/stops/Cmomoul3"], ["https://tec.openplanner.team/stops/Bgemcro2", "https://tec.openplanner.team/stops/N522aea"], ["https://tec.openplanner.team/stops/H1ms290a", "https://tec.openplanner.team/stops/H1ms299a"], ["https://tec.openplanner.team/stops/H1ca105a", "https://tec.openplanner.team/stops/H1ca186b"], ["https://tec.openplanner.team/stops/Beceres2", "https://tec.openplanner.team/stops/H3br100b"], ["https://tec.openplanner.team/stops/Ccodubo2", "https://tec.openplanner.team/stops/Ccogibr1"], ["https://tec.openplanner.team/stops/LOTcarr1", "https://tec.openplanner.team/stops/LOTdelv1"], ["https://tec.openplanner.team/stops/X636aca", "https://tec.openplanner.team/stops/X636acb"], ["https://tec.openplanner.team/stops/Cmyland1", "https://tec.openplanner.team/stops/Cmyland2"], ["https://tec.openplanner.team/stops/X901ara", "https://tec.openplanner.team/stops/X901arb"], ["https://tec.openplanner.team/stops/X651aaa", "https://tec.openplanner.team/stops/X651aab"], ["https://tec.openplanner.team/stops/Bnivzep1", "https://tec.openplanner.team/stops/Bnivzep2"], ["https://tec.openplanner.team/stops/X908aaa", "https://tec.openplanner.team/stops/X908afa"], ["https://tec.openplanner.team/stops/X925ana", "https://tec.openplanner.team/stops/X925apa"], ["https://tec.openplanner.team/stops/LoDkoll1", "https://tec.openplanner.team/stops/LoDkoll2"], ["https://tec.openplanner.team/stops/H4do108a", "https://tec.openplanner.team/stops/H4mo192a"], ["https://tec.openplanner.team/stops/LREheyd2", "https://tec.openplanner.team/stops/LREsaul2"], ["https://tec.openplanner.team/stops/LaMmark2", "https://tec.openplanner.team/stops/LaMpark2"], ["https://tec.openplanner.team/stops/X879ana", "https://tec.openplanner.team/stops/X879anb"], ["https://tec.openplanner.team/stops/LETeg--1", "https://tec.openplanner.team/stops/LMIeg--2"], ["https://tec.openplanner.team/stops/LdUespe4", "https://tec.openplanner.team/stops/LoDscha1"], ["https://tec.openplanner.team/stops/Lvehout1", "https://tec.openplanner.team/stops/Lvehout2"], ["https://tec.openplanner.team/stops/X806adb", "https://tec.openplanner.team/stops/X873acb"], ["https://tec.openplanner.team/stops/LSpcarr2", "https://tec.openplanner.team/stops/LSpogne1"], ["https://tec.openplanner.team/stops/N584abb", "https://tec.openplanner.team/stops/N584cab"], ["https://tec.openplanner.team/stops/LLmvand1", "https://tec.openplanner.team/stops/LLmvand2"], ["https://tec.openplanner.team/stops/X756adb", "https://tec.openplanner.team/stops/X756aea"], ["https://tec.openplanner.team/stops/Llgfoss1", "https://tec.openplanner.team/stops/Llgfoss2"], ["https://tec.openplanner.team/stops/Ccupdes2", "https://tec.openplanner.team/stops/Ccupdes3"], ["https://tec.openplanner.team/stops/LaTcolo1", "https://tec.openplanner.team/stops/LmDelek2"], ["https://tec.openplanner.team/stops/LTNegli2", "https://tec.openplanner.team/stops/LTNmont2"], ["https://tec.openplanner.team/stops/N543chb", "https://tec.openplanner.team/stops/N543cnb"], ["https://tec.openplanner.team/stops/Bboufsm2", "https://tec.openplanner.team/stops/Bbstfch2"], ["https://tec.openplanner.team/stops/Cfocant2", "https://tec.openplanner.team/stops/Cfowall1"], ["https://tec.openplanner.team/stops/X616abb", "https://tec.openplanner.team/stops/X616acb"], ["https://tec.openplanner.team/stops/LhSgete1", "https://tec.openplanner.team/stops/LhSkirc2"], ["https://tec.openplanner.team/stops/LDAbois2", "https://tec.openplanner.team/stops/LDAcite1"], ["https://tec.openplanner.team/stops/LeLcrem1", "https://tec.openplanner.team/stops/LwYsour3"], ["https://tec.openplanner.team/stops/N149aaa", "https://tec.openplanner.team/stops/N149abb"], ["https://tec.openplanner.team/stops/Cci4092", "https://tec.openplanner.team/stops/Cctbois4"], ["https://tec.openplanner.team/stops/N545aca", "https://tec.openplanner.team/stops/N545acb"], ["https://tec.openplanner.team/stops/H1ms267a", "https://tec.openplanner.team/stops/H1ms267b"], ["https://tec.openplanner.team/stops/Cfrempe2", "https://tec.openplanner.team/stops/Cfrmonu5"], ["https://tec.openplanner.team/stops/H1gh168a", "https://tec.openplanner.team/stops/H1gh171b"], ["https://tec.openplanner.team/stops/LPRcasi1", "https://tec.openplanner.team/stops/LTRlonh1"], ["https://tec.openplanner.team/stops/LOLvill1", "https://tec.openplanner.team/stops/LOLvill2"], ["https://tec.openplanner.team/stops/X754acb", "https://tec.openplanner.team/stops/X754aqb"], ["https://tec.openplanner.team/stops/N548aga", "https://tec.openplanner.team/stops/N548aha"], ["https://tec.openplanner.team/stops/LeUclou2", "https://tec.openplanner.team/stops/LrAknop1"], ["https://tec.openplanner.team/stops/LENpt--1", "https://tec.openplanner.team/stops/LENsent1"], ["https://tec.openplanner.team/stops/X637apa", "https://tec.openplanner.team/stops/X637ara"], ["https://tec.openplanner.team/stops/Cprvsar1", "https://tec.openplanner.team/stops/NC11ara"], ["https://tec.openplanner.team/stops/N564ada", "https://tec.openplanner.team/stops/N585aia"], ["https://tec.openplanner.team/stops/LCPpech2", "https://tec.openplanner.team/stops/LCPpech5"], ["https://tec.openplanner.team/stops/H1as154a", "https://tec.openplanner.team/stops/H1nv324a"], ["https://tec.openplanner.team/stops/Bgnvoha1", "https://tec.openplanner.team/stops/Bgnvoha3"], ["https://tec.openplanner.team/stops/H4mo138b", "https://tec.openplanner.team/stops/H4mo185a"], ["https://tec.openplanner.team/stops/Bquebut1", "https://tec.openplanner.team/stops/Bquecar1"], ["https://tec.openplanner.team/stops/LLStrid1", "https://tec.openplanner.team/stops/LLStrid2"], ["https://tec.openplanner.team/stops/Llgaba-1", "https://tec.openplanner.team/stops/Llgaba-2"], ["https://tec.openplanner.team/stops/X633adc", "https://tec.openplanner.team/stops/X633akb"], ["https://tec.openplanner.team/stops/H1bo107a", "https://tec.openplanner.team/stops/H1hi123b"], ["https://tec.openplanner.team/stops/X989abb", "https://tec.openplanner.team/stops/X994ada"], ["https://tec.openplanner.team/stops/X661acb", "https://tec.openplanner.team/stops/X661aha"], ["https://tec.openplanner.team/stops/H5rx100a", "https://tec.openplanner.team/stops/H5rx122a"], ["https://tec.openplanner.team/stops/LLUcdoy1", "https://tec.openplanner.team/stops/LLUdoya1"], ["https://tec.openplanner.team/stops/Llglimb2", "https://tec.openplanner.team/stops/Llgpire1"], ["https://tec.openplanner.team/stops/X982caa", "https://tec.openplanner.team/stops/X982cbb"], ["https://tec.openplanner.team/stops/LaMgeme*", "https://tec.openplanner.team/stops/LaMpark1"], ["https://tec.openplanner.team/stops/X615asb", "https://tec.openplanner.team/stops/X615atb"], ["https://tec.openplanner.team/stops/LlgLEOP2", "https://tec.openplanner.team/stops/Llgmarc2"], ["https://tec.openplanner.team/stops/LXhhaka1", "https://tec.openplanner.team/stops/LXhmara2"], ["https://tec.openplanner.team/stops/LMIcamp1", "https://tec.openplanner.team/stops/LMIpast1"], ["https://tec.openplanner.team/stops/N542aoa", "https://tec.openplanner.team/stops/N542aqb"], ["https://tec.openplanner.team/stops/N539axb", "https://tec.openplanner.team/stops/N539ayb"], ["https://tec.openplanner.team/stops/N524acb", "https://tec.openplanner.team/stops/N524adb"], ["https://tec.openplanner.team/stops/N351ana", "https://tec.openplanner.team/stops/N351anb"], ["https://tec.openplanner.team/stops/N501gba", "https://tec.openplanner.team/stops/N501lxa"], ["https://tec.openplanner.team/stops/N503aaa", "https://tec.openplanner.team/stops/N503adb"], ["https://tec.openplanner.team/stops/X607aha", "https://tec.openplanner.team/stops/X647aaa"], ["https://tec.openplanner.team/stops/N543aub", "https://tec.openplanner.team/stops/N543cga"], ["https://tec.openplanner.team/stops/H2hg147b", "https://tec.openplanner.team/stops/H2hg158a"], ["https://tec.openplanner.team/stops/Bhenasc2", "https://tec.openplanner.team/stops/Bquegen1"], ["https://tec.openplanner.team/stops/N315aaa", "https://tec.openplanner.team/stops/X361afa"], ["https://tec.openplanner.team/stops/X602acb", "https://tec.openplanner.team/stops/X602adb"], ["https://tec.openplanner.team/stops/X927abb", "https://tec.openplanner.team/stops/X927ada"], ["https://tec.openplanner.team/stops/N513aha", "https://tec.openplanner.team/stops/N513bfb"], ["https://tec.openplanner.team/stops/X840ada", "https://tec.openplanner.team/stops/X840afa"], ["https://tec.openplanner.team/stops/X818agb", "https://tec.openplanner.team/stops/X818apa"], ["https://tec.openplanner.team/stops/N539bea", "https://tec.openplanner.team/stops/N539bgb"], ["https://tec.openplanner.team/stops/X398ada", "https://tec.openplanner.team/stops/X398afa"], ["https://tec.openplanner.team/stops/Btiegma1", "https://tec.openplanner.team/stops/Btiegoo1"], ["https://tec.openplanner.team/stops/X638afa", "https://tec.openplanner.team/stops/X638afb"], ["https://tec.openplanner.team/stops/H1ba110a", "https://tec.openplanner.team/stops/H1hh118b"], ["https://tec.openplanner.team/stops/LBXhacb2", "https://tec.openplanner.team/stops/LMEeg--2"], ["https://tec.openplanner.team/stops/LPcforg1", "https://tec.openplanner.team/stops/LPcforg2"], ["https://tec.openplanner.team/stops/Ctrecol4", "https://tec.openplanner.team/stops/Ctrecol5"], ["https://tec.openplanner.team/stops/X991aja", "https://tec.openplanner.team/stops/X991ala"], ["https://tec.openplanner.team/stops/N231aca", "https://tec.openplanner.team/stops/N231adb"], ["https://tec.openplanner.team/stops/Ccobinc1", "https://tec.openplanner.team/stops/Csoplac2"], ["https://tec.openplanner.team/stops/Livpost2", "https://tec.openplanner.team/stops/Livrame1"], ["https://tec.openplanner.team/stops/Ccucora1", "https://tec.openplanner.team/stops/Ccucora2"], ["https://tec.openplanner.team/stops/Bwatath1", "https://tec.openplanner.team/stops/Bwatdmo1"], ["https://tec.openplanner.team/stops/H2hp124b", "https://tec.openplanner.team/stops/H2hp124c"], ["https://tec.openplanner.team/stops/LbAhull2", "https://tec.openplanner.team/stops/LhLbalt2"], ["https://tec.openplanner.team/stops/LTIsupe1", "https://tec.openplanner.team/stops/LTIsupe2"], ["https://tec.openplanner.team/stops/Cmlcent2", "https://tec.openplanner.team/stops/CMparc1"], ["https://tec.openplanner.team/stops/LHuetat2", "https://tec.openplanner.team/stops/LHurobi1"], ["https://tec.openplanner.team/stops/LFMkrin2", "https://tec.openplanner.team/stops/LFMkrut4"], ["https://tec.openplanner.team/stops/N311aca", "https://tec.openplanner.team/stops/N360aca"], ["https://tec.openplanner.team/stops/H1ca104a", "https://tec.openplanner.team/stops/H1sd347a"], ["https://tec.openplanner.team/stops/Caiegli1", "https://tec.openplanner.team/stops/Caircen1"], ["https://tec.openplanner.team/stops/N501ldb", "https://tec.openplanner.team/stops/N501lob"], ["https://tec.openplanner.team/stops/N141apb", "https://tec.openplanner.team/stops/N426aab"], ["https://tec.openplanner.team/stops/X887aaa", "https://tec.openplanner.team/stops/X887aab"], ["https://tec.openplanner.team/stops/X888aea", "https://tec.openplanner.team/stops/X888afa"], ["https://tec.openplanner.team/stops/N531ajb", "https://tec.openplanner.team/stops/N534bya"], ["https://tec.openplanner.team/stops/Ccaegli1", "https://tec.openplanner.team/stops/Ccaegli2"], ["https://tec.openplanner.team/stops/Clddeve2", "https://tec.openplanner.team/stops/Cmoecol1"], ["https://tec.openplanner.team/stops/Bgerprg2", "https://tec.openplanner.team/stops/Bgrhpos1"], ["https://tec.openplanner.team/stops/LFyanto1", "https://tec.openplanner.team/stops/LFyWarc1"], ["https://tec.openplanner.team/stops/Bohngai2", "https://tec.openplanner.team/stops/Bohnmon1"], ["https://tec.openplanner.team/stops/N512abb", "https://tec.openplanner.team/stops/N512aca"], ["https://tec.openplanner.team/stops/N104akb", "https://tec.openplanner.team/stops/N106abb"], ["https://tec.openplanner.team/stops/Bsomtnd2", "https://tec.openplanner.team/stops/N584afa"], ["https://tec.openplanner.team/stops/Bnodeco1", "https://tec.openplanner.team/stops/Bnodegl1"], ["https://tec.openplanner.team/stops/H4be104a", "https://tec.openplanner.team/stops/H4be112a"], ["https://tec.openplanner.team/stops/H1cu123a", "https://tec.openplanner.team/stops/H1cu130b"], ["https://tec.openplanner.team/stops/Bnivath2", "https://tec.openplanner.team/stops/Bnivga71"], ["https://tec.openplanner.team/stops/X789ada", "https://tec.openplanner.team/stops/X789aja"], ["https://tec.openplanner.team/stops/Loucham2", "https://tec.openplanner.team/stops/Louroos2"], ["https://tec.openplanner.team/stops/X992aca", "https://tec.openplanner.team/stops/X992acb"], ["https://tec.openplanner.team/stops/X878aba", "https://tec.openplanner.team/stops/X878aca"], ["https://tec.openplanner.team/stops/H1qg138c", "https://tec.openplanner.team/stops/H1qp150b"], ["https://tec.openplanner.team/stops/N331aga", "https://tec.openplanner.team/stops/N331agb"], ["https://tec.openplanner.team/stops/Cmtrbla1", "https://tec.openplanner.team/stops/Cmttrie2"], ["https://tec.openplanner.team/stops/Bwavcin1", "https://tec.openplanner.team/stops/Bwavcin2"], ["https://tec.openplanner.team/stops/LHUsart1", "https://tec.openplanner.team/stops/LHUsart2"], ["https://tec.openplanner.team/stops/N544agb", "https://tec.openplanner.team/stops/N545acb"], ["https://tec.openplanner.team/stops/LmNlieb1", "https://tec.openplanner.team/stops/X685apa"], ["https://tec.openplanner.team/stops/Cmogrbu1", "https://tec.openplanner.team/stops/Cmogrbu2"], ["https://tec.openplanner.team/stops/N121acb", "https://tec.openplanner.team/stops/N121ada"], ["https://tec.openplanner.team/stops/N161afa", "https://tec.openplanner.team/stops/N161afb"], ["https://tec.openplanner.team/stops/LVbsurr2", "https://tec.openplanner.team/stops/NL77ama"], ["https://tec.openplanner.team/stops/H1ba110b", "https://tec.openplanner.team/stops/H1gh371b"], ["https://tec.openplanner.team/stops/Csefour1", "https://tec.openplanner.team/stops/NH01aqa"], ["https://tec.openplanner.team/stops/N308bhb", "https://tec.openplanner.team/stops/N308bia"], ["https://tec.openplanner.team/stops/X637ajb", "https://tec.openplanner.team/stops/X638aea"], ["https://tec.openplanner.team/stops/LrAkape2", "https://tec.openplanner.team/stops/LrAmuhl2"], ["https://tec.openplanner.team/stops/Cmmegli1", "https://tec.openplanner.team/stops/Cmmegli3"], ["https://tec.openplanner.team/stops/H1ho140a", "https://tec.openplanner.team/stops/H1ho140b"], ["https://tec.openplanner.team/stops/N544aba", "https://tec.openplanner.team/stops/N550ajb"], ["https://tec.openplanner.team/stops/H2ll180a", "https://tec.openplanner.team/stops/H2ll188a"], ["https://tec.openplanner.team/stops/X807acb", "https://tec.openplanner.team/stops/X833aaa"], ["https://tec.openplanner.team/stops/LSReg--1", "https://tec.openplanner.team/stops/LTrgibe2"], ["https://tec.openplanner.team/stops/LTHec--2", "https://tec.openplanner.team/stops/LTHroch2"], ["https://tec.openplanner.team/stops/N225aaa", "https://tec.openplanner.team/stops/N225aca"], ["https://tec.openplanner.team/stops/LAuchau1", "https://tec.openplanner.team/stops/LAufech1"], ["https://tec.openplanner.team/stops/X765aca", "https://tec.openplanner.team/stops/X765adb"], ["https://tec.openplanner.team/stops/X661apb", "https://tec.openplanner.team/stops/X661aqa"], ["https://tec.openplanner.team/stops/N533ahb", "https://tec.openplanner.team/stops/N533aia"], ["https://tec.openplanner.team/stops/LNCcedr2", "https://tec.openplanner.team/stops/LNClila2"], ["https://tec.openplanner.team/stops/Lhrpaix2", "https://tec.openplanner.team/stops/Llgatel2"], ["https://tec.openplanner.team/stops/Bnivaba1", "https://tec.openplanner.team/stops/Bnivmet1"], ["https://tec.openplanner.team/stops/N501ana", "https://tec.openplanner.team/stops/N501aqb"], ["https://tec.openplanner.team/stops/X821aaa", "https://tec.openplanner.team/stops/X823aab"], ["https://tec.openplanner.team/stops/X908aja", "https://tec.openplanner.team/stops/X908ajb"], ["https://tec.openplanner.team/stops/LRemorr3", "https://tec.openplanner.team/stops/LRemorr4"], ["https://tec.openplanner.team/stops/Bneeegl1", "https://tec.openplanner.team/stops/Bneesan1"], ["https://tec.openplanner.team/stops/LFNfo161", "https://tec.openplanner.team/stops/LFNmonu2"], ["https://tec.openplanner.team/stops/X898amb", "https://tec.openplanner.team/stops/X898ana"], ["https://tec.openplanner.team/stops/NC14aaa", "https://tec.openplanner.team/stops/NC14ana"], ["https://tec.openplanner.team/stops/X342aeb", "https://tec.openplanner.team/stops/X342afb"], ["https://tec.openplanner.team/stops/LTEkerk2", "https://tec.openplanner.team/stops/LTEzinn1"], ["https://tec.openplanner.team/stops/LBPboir1", "https://tec.openplanner.team/stops/LBSchpl2"], ["https://tec.openplanner.team/stops/LBTwauc1", "https://tec.openplanner.team/stops/LCHsaul1"], ["https://tec.openplanner.team/stops/X718ajb", "https://tec.openplanner.team/stops/X733aia"], ["https://tec.openplanner.team/stops/Canlemo1", "https://tec.openplanner.team/stops/Canlemo2"], ["https://tec.openplanner.team/stops/X670aba", "https://tec.openplanner.team/stops/X670abb"], ["https://tec.openplanner.team/stops/LmDkape1", "https://tec.openplanner.team/stops/LmDkoel2"], ["https://tec.openplanner.team/stops/LAUhost2", "https://tec.openplanner.team/stops/LAUneuv5"], ["https://tec.openplanner.team/stops/Lalecmo1", "https://tec.openplanner.team/stops/Laltrap1"], ["https://tec.openplanner.team/stops/X903afa", "https://tec.openplanner.team/stops/X904aaa"], ["https://tec.openplanner.team/stops/H5el111a", "https://tec.openplanner.team/stops/H5el111b"], ["https://tec.openplanner.team/stops/Cdametr2", "https://tec.openplanner.team/stops/Cdaptca4"], ["https://tec.openplanner.team/stops/NL76adb", "https://tec.openplanner.team/stops/NL76ara"], ["https://tec.openplanner.team/stops/N230ada", "https://tec.openplanner.team/stops/N230agb"], ["https://tec.openplanner.team/stops/X714aeb", "https://tec.openplanner.team/stops/X715ahb"], ["https://tec.openplanner.team/stops/LWDplac2", "https://tec.openplanner.team/stops/LWDsieg1"], ["https://tec.openplanner.team/stops/Ccypetv1", "https://tec.openplanner.team/stops/Ccypetv2"], ["https://tec.openplanner.team/stops/LCOeg--2", "https://tec.openplanner.team/stops/Lpebier1"], ["https://tec.openplanner.team/stops/Bnivasa1", "https://tec.openplanner.team/stops/Bnivasa2"], ["https://tec.openplanner.team/stops/H4ka178a", "https://tec.openplanner.team/stops/H4ru235a"], ["https://tec.openplanner.team/stops/LFlabba1", "https://tec.openplanner.team/stops/LSkkeri2"], ["https://tec.openplanner.team/stops/Bcbqegl1", "https://tec.openplanner.team/stops/Bcbqufo1"], ["https://tec.openplanner.team/stops/NH21aca", "https://tec.openplanner.team/stops/NH21acb"], ["https://tec.openplanner.team/stops/LDpulve2", "https://tec.openplanner.team/stops/LFMveur2"], ["https://tec.openplanner.team/stops/N110agb", "https://tec.openplanner.team/stops/N124aba"], ["https://tec.openplanner.team/stops/Crebrux2", "https://tec.openplanner.team/stops/Creha762"], ["https://tec.openplanner.team/stops/LVLcent1", "https://tec.openplanner.team/stops/LVLzoni2"], ["https://tec.openplanner.team/stops/Cfmsncb2", "https://tec.openplanner.team/stops/Ctrsema1"], ["https://tec.openplanner.team/stops/LVPduvi2", "https://tec.openplanner.team/stops/LVPeg--1"], ["https://tec.openplanner.team/stops/Cjudest2", "https://tec.openplanner.team/stops/Cloauln1"], ["https://tec.openplanner.team/stops/X901aaa", "https://tec.openplanner.team/stops/X901bsb"], ["https://tec.openplanner.team/stops/Cgofleu2", "https://tec.openplanner.team/stops/Cgofleu3"], ["https://tec.openplanner.team/stops/H1ba112a", "https://tec.openplanner.team/stops/H1hh112a"], ["https://tec.openplanner.team/stops/Cgzha621", "https://tec.openplanner.team/stops/Cgzpjeu2"], ["https://tec.openplanner.team/stops/Bgerprg2", "https://tec.openplanner.team/stops/NB33aea"], ["https://tec.openplanner.team/stops/LMOlens2", "https://tec.openplanner.team/stops/LMOpiss2"], ["https://tec.openplanner.team/stops/X723aga", "https://tec.openplanner.team/stops/X723ala"], ["https://tec.openplanner.team/stops/H4lp120b", "https://tec.openplanner.team/stops/H4lp121a"], ["https://tec.openplanner.team/stops/N576afb", "https://tec.openplanner.team/stops/N576agb"], ["https://tec.openplanner.team/stops/NC23afb", "https://tec.openplanner.team/stops/NC23aga"], ["https://tec.openplanner.team/stops/N550acc", "https://tec.openplanner.team/stops/N550ada"], ["https://tec.openplanner.team/stops/LBahaut2", "https://tec.openplanner.team/stops/LBapeup2"], ["https://tec.openplanner.team/stops/Bzlucam1", "https://tec.openplanner.team/stops/Bzluqga2"], ["https://tec.openplanner.team/stops/Lmlchev2", "https://tec.openplanner.team/stops/Lmldama2"], ["https://tec.openplanner.team/stops/LDLbois2", "https://tec.openplanner.team/stops/LDLheid1"], ["https://tec.openplanner.team/stops/X767abb", "https://tec.openplanner.team/stops/X767aca"], ["https://tec.openplanner.team/stops/Baeggar2", "https://tec.openplanner.team/stops/NR38abb"], ["https://tec.openplanner.team/stops/H4be103a", "https://tec.openplanner.team/stops/H4be104b"], ["https://tec.openplanner.team/stops/H1mm125c", "https://tec.openplanner.team/stops/H1mm125d"], ["https://tec.openplanner.team/stops/H2an109a", "https://tec.openplanner.team/stops/H2an109b"], ["https://tec.openplanner.team/stops/LHegame1", "https://tec.openplanner.team/stops/LOUherm1"], ["https://tec.openplanner.team/stops/X898aca", "https://tec.openplanner.team/stops/X898ada"], ["https://tec.openplanner.team/stops/H4pq117b", "https://tec.openplanner.team/stops/H4pq120a"], ["https://tec.openplanner.team/stops/X952aca", "https://tec.openplanner.team/stops/X952aib"], ["https://tec.openplanner.team/stops/H1je211a", "https://tec.openplanner.team/stops/H1je369b"], ["https://tec.openplanner.team/stops/X939aab", "https://tec.openplanner.team/stops/X940aec"], ["https://tec.openplanner.team/stops/Buccdch1", "https://tec.openplanner.team/stops/Buccdst2"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Lghalli1"], ["https://tec.openplanner.team/stops/Bneepne2", "https://tec.openplanner.team/stops/Bneervc2"], ["https://tec.openplanner.team/stops/Llggram1", "https://tec.openplanner.team/stops/Llgstvi3"], ["https://tec.openplanner.team/stops/LTiespe1", "https://tec.openplanner.team/stops/LTigera2"], ["https://tec.openplanner.team/stops/H1mh116a", "https://tec.openplanner.team/stops/H1qv111b"], ["https://tec.openplanner.team/stops/Ccuphai4", "https://tec.openplanner.team/stops/Ccuseba2"], ["https://tec.openplanner.team/stops/LAUbour2", "https://tec.openplanner.team/stops/LAUtism1"], ["https://tec.openplanner.team/stops/H1mk108c", "https://tec.openplanner.team/stops/H1mk117a"], ["https://tec.openplanner.team/stops/N501ega", "https://tec.openplanner.team/stops/N501klb"], ["https://tec.openplanner.team/stops/H1og132b", "https://tec.openplanner.team/stops/H5wo133a"], ["https://tec.openplanner.team/stops/Ctrecol2", "https://tec.openplanner.team/stops/Ctrplac1"], ["https://tec.openplanner.team/stops/LBDcarr1", "https://tec.openplanner.team/stops/LVEbors1"], ["https://tec.openplanner.team/stops/Cgymast1", "https://tec.openplanner.team/stops/Cgymast2"], ["https://tec.openplanner.team/stops/LFymare3", "https://tec.openplanner.team/stops/LON21--2"], ["https://tec.openplanner.team/stops/X660aca", "https://tec.openplanner.team/stops/X672aca"], ["https://tec.openplanner.team/stops/N215aaa", "https://tec.openplanner.team/stops/N261agb"], ["https://tec.openplanner.team/stops/Crcfdom2", "https://tec.openplanner.team/stops/Crcrlf1"], ["https://tec.openplanner.team/stops/H5bs102d", "https://tec.openplanner.team/stops/H5pe145a"], ["https://tec.openplanner.team/stops/X901aja", "https://tec.openplanner.team/stops/X901apa"], ["https://tec.openplanner.team/stops/Cbufron2", "https://tec.openplanner.team/stops/Cfnegli1"], ["https://tec.openplanner.team/stops/H1hh109b", "https://tec.openplanner.team/stops/H1hh110a"], ["https://tec.openplanner.team/stops/Ldineuf1", "https://tec.openplanner.team/stops/Ldipiss1"], ["https://tec.openplanner.team/stops/X661awa", "https://tec.openplanner.team/stops/X661awb"], ["https://tec.openplanner.team/stops/X888acb", "https://tec.openplanner.team/stops/X899aja"], ["https://tec.openplanner.team/stops/H4de114a", "https://tec.openplanner.team/stops/H5rx103b"], ["https://tec.openplanner.team/stops/X982aca", "https://tec.openplanner.team/stops/X982acb"], ["https://tec.openplanner.team/stops/H4ty381b", "https://tec.openplanner.team/stops/H4ty382b"], ["https://tec.openplanner.team/stops/Cmechnd2", "https://tec.openplanner.team/stops/Csabrun1"], ["https://tec.openplanner.team/stops/N558amc", "https://tec.openplanner.team/stops/N558ana"], ["https://tec.openplanner.team/stops/H1br126a", "https://tec.openplanner.team/stops/H1br126b"], ["https://tec.openplanner.team/stops/H4re225a", "https://tec.openplanner.team/stops/H5la177b"], ["https://tec.openplanner.team/stops/X948asa", "https://tec.openplanner.team/stops/X948asb"], ["https://tec.openplanner.team/stops/N534amh", "https://tec.openplanner.team/stops/N543aga"], ["https://tec.openplanner.team/stops/NL57ahb", "https://tec.openplanner.team/stops/NL57akb"], ["https://tec.openplanner.team/stops/Cgoboll3", "https://tec.openplanner.team/stops/Cgoulb1"], ["https://tec.openplanner.team/stops/Llgblon2", "https://tec.openplanner.team/stops/Llgcont1"], ["https://tec.openplanner.team/stops/N569aaa", "https://tec.openplanner.team/stops/N569anb"], ["https://tec.openplanner.team/stops/LBegare1", "https://tec.openplanner.team/stops/LBevill2"], ["https://tec.openplanner.team/stops/X370adb", "https://tec.openplanner.team/stops/X850aba"], ["https://tec.openplanner.team/stops/NR21aab", "https://tec.openplanner.team/stops/NR38afb"], ["https://tec.openplanner.team/stops/N206acb", "https://tec.openplanner.team/stops/N207acb"], ["https://tec.openplanner.team/stops/X979aia", "https://tec.openplanner.team/stops/X979aja"], ["https://tec.openplanner.team/stops/X606aab", "https://tec.openplanner.team/stops/X607aha"], ["https://tec.openplanner.team/stops/LRRlimi1", "https://tec.openplanner.team/stops/LRRroth2"], ["https://tec.openplanner.team/stops/Blhumpo1", "https://tec.openplanner.team/stops/Blhumpo3"], ["https://tec.openplanner.team/stops/H2jo161c", "https://tec.openplanner.team/stops/H2lh125b"], ["https://tec.openplanner.team/stops/Cmmadma2", "https://tec.openplanner.team/stops/Cmmpast2"], ["https://tec.openplanner.team/stops/H4ty264a", "https://tec.openplanner.team/stops/H4ty290b"], ["https://tec.openplanner.team/stops/Bsgihmo1", "https://tec.openplanner.team/stops/Bsgipmo2"], ["https://tec.openplanner.team/stops/X725aya", "https://tec.openplanner.team/stops/X725aza"], ["https://tec.openplanner.team/stops/Bwaak102", "https://tec.openplanner.team/stops/Bwaakap2"], ["https://tec.openplanner.team/stops/H4cp103a", "https://tec.openplanner.team/stops/H4tp143b"], ["https://tec.openplanner.team/stops/X614ava", "https://tec.openplanner.team/stops/X615aqa"], ["https://tec.openplanner.team/stops/Cnahous2", "https://tec.openplanner.team/stops/Cnaplbu2"], ["https://tec.openplanner.team/stops/X351aba", "https://tec.openplanner.team/stops/X351abb"], ["https://tec.openplanner.team/stops/H4fr139a", "https://tec.openplanner.team/stops/H4fr145a"], ["https://tec.openplanner.team/stops/H1fy119a", "https://tec.openplanner.team/stops/H1fy143a"], ["https://tec.openplanner.team/stops/X801aqa", "https://tec.openplanner.team/stops/X801coa"], ["https://tec.openplanner.team/stops/X769aea", "https://tec.openplanner.team/stops/X769ahb"], ["https://tec.openplanner.team/stops/LElcent1", "https://tec.openplanner.team/stops/LWZponh2"], ["https://tec.openplanner.team/stops/X636bca", "https://tec.openplanner.team/stops/X636bcb"], ["https://tec.openplanner.team/stops/Bsrbbas1", "https://tec.openplanner.team/stops/Bsrbbas2"], ["https://tec.openplanner.team/stops/X547aka", "https://tec.openplanner.team/stops/X576aea"], ["https://tec.openplanner.team/stops/H4wi168a", "https://tec.openplanner.team/stops/H4wi168b"], ["https://tec.openplanner.team/stops/N508acb", "https://tec.openplanner.team/stops/N516aaa"], ["https://tec.openplanner.team/stops/Croplom2", "https://tec.openplanner.team/stops/Croplom7"], ["https://tec.openplanner.team/stops/H1to154a", "https://tec.openplanner.team/stops/H1to155a"], ["https://tec.openplanner.team/stops/N134acb", "https://tec.openplanner.team/stops/N135bib"], ["https://tec.openplanner.team/stops/H4ne144b", "https://tec.openplanner.team/stops/H4ne144c"], ["https://tec.openplanner.team/stops/N534ava", "https://tec.openplanner.team/stops/N534bea"], ["https://tec.openplanner.team/stops/LCPecli2", "https://tec.openplanner.team/stops/LGmcent1"], ["https://tec.openplanner.team/stops/H1br121a", "https://tec.openplanner.team/stops/H1em102a"], ["https://tec.openplanner.team/stops/Bnivall1", "https://tec.openplanner.team/stops/Bnivpar1"], ["https://tec.openplanner.team/stops/LOcgdro3", "https://tec.openplanner.team/stops/LOchalo1"], ["https://tec.openplanner.team/stops/X342abb", "https://tec.openplanner.team/stops/X354ada"], ["https://tec.openplanner.team/stops/LBieg--3", "https://tec.openplanner.team/stops/LHCcoul1"], ["https://tec.openplanner.team/stops/H4tg162b", "https://tec.openplanner.team/stops/H4tg163a"], ["https://tec.openplanner.team/stops/LwYbrkr1", "https://tec.openplanner.team/stops/LwYkirc2"], ["https://tec.openplanner.team/stops/N501eab", "https://tec.openplanner.team/stops/N501kqa"], ["https://tec.openplanner.team/stops/Lfhdonn1", "https://tec.openplanner.team/stops/Lfhhosp2"], ["https://tec.openplanner.team/stops/LHUgole1", "https://tec.openplanner.team/stops/LHUpsar2"], ["https://tec.openplanner.team/stops/H2jo163a", "https://tec.openplanner.team/stops/H2jo163c"], ["https://tec.openplanner.team/stops/Bmarcha2", "https://tec.openplanner.team/stops/Bwagpco1"], ["https://tec.openplanner.team/stops/H2ma210a", "https://tec.openplanner.team/stops/H2ma263a"], ["https://tec.openplanner.team/stops/LSNchen1", "https://tec.openplanner.team/stops/LSNchen2"], ["https://tec.openplanner.team/stops/H4pe124a", "https://tec.openplanner.team/stops/H4pe127a"], ["https://tec.openplanner.team/stops/X630aaa", "https://tec.openplanner.team/stops/X638ada"], ["https://tec.openplanner.team/stops/Llgdarc1", "https://tec.openplanner.team/stops/Llghec-3"], ["https://tec.openplanner.team/stops/LeUhutt1", "https://tec.openplanner.team/stops/LeUwetz2"], ["https://tec.openplanner.team/stops/LMAptne1", "https://tec.openplanner.team/stops/LMAptne2"], ["https://tec.openplanner.team/stops/Crs74em1", "https://tec.openplanner.team/stops/Crs74em4"], ["https://tec.openplanner.team/stops/LLrc_ip4", "https://tec.openplanner.team/stops/LLrc1652"], ["https://tec.openplanner.team/stops/Lbbviad2", "https://tec.openplanner.team/stops/Lbbviad4"], ["https://tec.openplanner.team/stops/X991afa", "https://tec.openplanner.team/stops/X991aga"], ["https://tec.openplanner.team/stops/LPLhout1", "https://tec.openplanner.team/stops/LPLhout2"], ["https://tec.openplanner.team/stops/X801aua", "https://tec.openplanner.team/stops/X801avb"], ["https://tec.openplanner.team/stops/Lsnferr1", "https://tec.openplanner.team/stops/Lsnmala1"], ["https://tec.openplanner.team/stops/Barqhro2", "https://tec.openplanner.team/stops/Bfelada2"], ["https://tec.openplanner.team/stops/X658afa", "https://tec.openplanner.team/stops/X659aib"], ["https://tec.openplanner.team/stops/X808ajb", "https://tec.openplanner.team/stops/X809aeb"], ["https://tec.openplanner.team/stops/LJAchat2", "https://tec.openplanner.team/stops/LMechpl1"], ["https://tec.openplanner.team/stops/Cmaegli1", "https://tec.openplanner.team/stops/Cmaegli2"], ["https://tec.openplanner.team/stops/NH03afa", "https://tec.openplanner.team/stops/NH03agb"], ["https://tec.openplanner.team/stops/N352afb", "https://tec.openplanner.team/stops/N355aea"], ["https://tec.openplanner.team/stops/X316aca", "https://tec.openplanner.team/stops/X364acb"], ["https://tec.openplanner.team/stops/Cgoathe1", "https://tec.openplanner.team/stops/Cgohnda1"], ["https://tec.openplanner.team/stops/Llgfont4", "https://tec.openplanner.team/stops/Llgware2"], ["https://tec.openplanner.team/stops/H4ga164a", "https://tec.openplanner.team/stops/H4ga414a"], ["https://tec.openplanner.team/stops/H1bd101a", "https://tec.openplanner.team/stops/H1bd103a"], ["https://tec.openplanner.team/stops/LHCandr1", "https://tec.openplanner.team/stops/LHCruyf1"], ["https://tec.openplanner.team/stops/H1cu119a", "https://tec.openplanner.team/stops/H1cu119b"], ["https://tec.openplanner.team/stops/H5at135a", "https://tec.openplanner.team/stops/H5at139a"], ["https://tec.openplanner.team/stops/X621ada", "https://tec.openplanner.team/stops/X621aea"], ["https://tec.openplanner.team/stops/H1cv101a", "https://tec.openplanner.team/stops/H1gq153b"], ["https://tec.openplanner.team/stops/H2ma203a", "https://tec.openplanner.team/stops/H2ma263a"], ["https://tec.openplanner.team/stops/LTIpire1", "https://tec.openplanner.team/stops/LTIpora2"], ["https://tec.openplanner.team/stops/X717afb", "https://tec.openplanner.team/stops/X717age"], ["https://tec.openplanner.team/stops/LdE179-2", "https://tec.openplanner.team/stops/LdEkreu2"], ["https://tec.openplanner.team/stops/X398agb", "https://tec.openplanner.team/stops/X999adb"], ["https://tec.openplanner.team/stops/H1so132a", "https://tec.openplanner.team/stops/H1so139d"], ["https://tec.openplanner.team/stops/Bwavdmo1", "https://tec.openplanner.team/stops/Bwavdmo2"], ["https://tec.openplanner.team/stops/LlgguilA", "https://tec.openplanner.team/stops/LlgguilB"], ["https://tec.openplanner.team/stops/H4bo116a", "https://tec.openplanner.team/stops/H4bo178b"], ["https://tec.openplanner.team/stops/Bvircen2", "https://tec.openplanner.team/stops/Bvirpos2"], ["https://tec.openplanner.team/stops/N540acd", "https://tec.openplanner.team/stops/N540ana"], ["https://tec.openplanner.team/stops/N506bna", "https://tec.openplanner.team/stops/N506bnb"], ["https://tec.openplanner.team/stops/LPLhest1", "https://tec.openplanner.team/stops/LPLhout1"], ["https://tec.openplanner.team/stops/LVAakke1", "https://tec.openplanner.team/stops/LVApark1"], ["https://tec.openplanner.team/stops/H1mq199b", "https://tec.openplanner.team/stops/H5la177a"], ["https://tec.openplanner.team/stops/H1an100b", "https://tec.openplanner.team/stops/H1an101b"], ["https://tec.openplanner.team/stops/X926aea", "https://tec.openplanner.team/stops/X926afa"], ["https://tec.openplanner.team/stops/LLrbecc2", "https://tec.openplanner.team/stops/LLrelec1"], ["https://tec.openplanner.team/stops/H1er107a", "https://tec.openplanner.team/stops/H1pe130b"], ["https://tec.openplanner.team/stops/NL81aga", "https://tec.openplanner.team/stops/NL82agb"], ["https://tec.openplanner.team/stops/LBrbern2", "https://tec.openplanner.team/stops/LMAwavr2"], ["https://tec.openplanner.team/stops/LaLkirc*", "https://tec.openplanner.team/stops/LmAkirc2"], ["https://tec.openplanner.team/stops/LRmha262", "https://tec.openplanner.team/stops/LRmhage8"], ["https://tec.openplanner.team/stops/H4cr110a", "https://tec.openplanner.team/stops/H4pp121b"], ["https://tec.openplanner.team/stops/H4os221a", "https://tec.openplanner.team/stops/H4os221c"], ["https://tec.openplanner.team/stops/H2gy113a", "https://tec.openplanner.team/stops/H2gy113b"], ["https://tec.openplanner.team/stops/N232bpa", "https://tec.openplanner.team/stops/N232bpb"], ["https://tec.openplanner.team/stops/LTestat2", "https://tec.openplanner.team/stops/NL35add"], ["https://tec.openplanner.team/stops/LCocasc2", "https://tec.openplanner.team/stops/LRChote1"], ["https://tec.openplanner.team/stops/H4fr385a", "https://tec.openplanner.team/stops/H4fr393a"], ["https://tec.openplanner.team/stops/N501bya", "https://tec.openplanner.team/stops/N501chc"], ["https://tec.openplanner.team/stops/H2pe160a", "https://tec.openplanner.team/stops/H2sv221a"], ["https://tec.openplanner.team/stops/X818amb", "https://tec.openplanner.team/stops/X818ava"], ["https://tec.openplanner.team/stops/LAo170-2", "https://tec.openplanner.team/stops/LTPpres1"], ["https://tec.openplanner.team/stops/X718ada", "https://tec.openplanner.team/stops/X719ada"], ["https://tec.openplanner.team/stops/H4hx112b", "https://tec.openplanner.team/stops/H4wa149b"], ["https://tec.openplanner.team/stops/LHMgrun1", "https://tec.openplanner.team/stops/LHMgrun2"], ["https://tec.openplanner.team/stops/Crojume1", "https://tec.openplanner.team/stops/Crojume2"], ["https://tec.openplanner.team/stops/X952aea", "https://tec.openplanner.team/stops/X952afb"], ["https://tec.openplanner.team/stops/X897afa", "https://tec.openplanner.team/stops/X897aga"], ["https://tec.openplanner.team/stops/Crocona1", "https://tec.openplanner.team/stops/Crorpai1"], ["https://tec.openplanner.team/stops/Cfcbosq2", "https://tec.openplanner.team/stops/Cfccuch2"], ["https://tec.openplanner.team/stops/LSPmalc1", "https://tec.openplanner.team/stops/LSZstoc1"], ["https://tec.openplanner.team/stops/H1bu143a", "https://tec.openplanner.team/stops/H1bu143b"], ["https://tec.openplanner.team/stops/Cmgbras1", "https://tec.openplanner.team/stops/Cmgpn1"], ["https://tec.openplanner.team/stops/LORcomb1", "https://tec.openplanner.team/stops/LORmont1"], ["https://tec.openplanner.team/stops/Bjodpce2", "https://tec.openplanner.team/stops/NR21aeb"], ["https://tec.openplanner.team/stops/N117aza", "https://tec.openplanner.team/stops/N117azb"], ["https://tec.openplanner.team/stops/H2sv216b", "https://tec.openplanner.team/stops/H2sv259a"], ["https://tec.openplanner.team/stops/Ceregl1", "https://tec.openplanner.team/stops/Cvrhab21"], ["https://tec.openplanner.team/stops/LLecolo1", "https://tec.openplanner.team/stops/LLedoya1"], ["https://tec.openplanner.team/stops/H4rm108a", "https://tec.openplanner.team/stops/H4rm108b"], ["https://tec.openplanner.team/stops/LOthiro2", "https://tec.openplanner.team/stops/NL57aib"], ["https://tec.openplanner.team/stops/LHAleru2", "https://tec.openplanner.team/stops/LHApthe1"], ["https://tec.openplanner.team/stops/Barcpre1", "https://tec.openplanner.team/stops/Bbsgrve1"], ["https://tec.openplanner.team/stops/LWaccom2", "https://tec.openplanner.team/stops/LWahetr2"], ["https://tec.openplanner.team/stops/Lghleon1", "https://tec.openplanner.team/stops/Lghmaha1"], ["https://tec.openplanner.team/stops/H1no140a", "https://tec.openplanner.team/stops/H1no141b"], ["https://tec.openplanner.team/stops/X359aad", "https://tec.openplanner.team/stops/X371aca"], ["https://tec.openplanner.team/stops/H4ld126a", "https://tec.openplanner.team/stops/H4ld126b"], ["https://tec.openplanner.team/stops/X769ama", "https://tec.openplanner.team/stops/X769amb"], ["https://tec.openplanner.team/stops/Lrecite2", "https://tec.openplanner.team/stops/Lrecroi1"], ["https://tec.openplanner.team/stops/H4ka181b", "https://tec.openplanner.team/stops/H4ty325a"], ["https://tec.openplanner.team/stops/X904ada", "https://tec.openplanner.team/stops/X904adb"], ["https://tec.openplanner.team/stops/X823aaa", "https://tec.openplanner.team/stops/X823aea"], ["https://tec.openplanner.team/stops/N550aja", "https://tec.openplanner.team/stops/N550ala"], ["https://tec.openplanner.team/stops/X759aaa", "https://tec.openplanner.team/stops/X837aka"], ["https://tec.openplanner.team/stops/H4ln127a", "https://tec.openplanner.team/stops/H4ne142a"], ["https://tec.openplanner.team/stops/H2ca103b", "https://tec.openplanner.team/stops/H2ca108a"], ["https://tec.openplanner.team/stops/X651aeb", "https://tec.openplanner.team/stops/X651afa"], ["https://tec.openplanner.team/stops/LCxcham1", "https://tec.openplanner.team/stops/LCxcour1"], ["https://tec.openplanner.team/stops/H4mo163a", "https://tec.openplanner.team/stops/H4mo184b"], ["https://tec.openplanner.team/stops/X877afb", "https://tec.openplanner.team/stops/X877aga"], ["https://tec.openplanner.team/stops/N202aha", "https://tec.openplanner.team/stops/N202ahb"], ["https://tec.openplanner.team/stops/LGe4bra1", "https://tec.openplanner.team/stops/LGepeck1"], ["https://tec.openplanner.team/stops/LPLcite1", "https://tec.openplanner.team/stops/LPLstri2"], ["https://tec.openplanner.team/stops/LAMfrai2", "https://tec.openplanner.team/stops/LAMhaut2"], ["https://tec.openplanner.team/stops/X620aea", "https://tec.openplanner.team/stops/X620aeb"], ["https://tec.openplanner.team/stops/H1bi100a", "https://tec.openplanner.team/stops/H1bi100b"], ["https://tec.openplanner.team/stops/N349abb", "https://tec.openplanner.team/stops/X398afa"], ["https://tec.openplanner.team/stops/X639aea", "https://tec.openplanner.team/stops/X644aca"], ["https://tec.openplanner.team/stops/LLOhest2", "https://tec.openplanner.team/stops/LVttarg2"], ["https://tec.openplanner.team/stops/LSdcent1", "https://tec.openplanner.team/stops/LSdsa451"], ["https://tec.openplanner.team/stops/N533aca", "https://tec.openplanner.team/stops/N533aga"], ["https://tec.openplanner.team/stops/X768adb", "https://tec.openplanner.team/stops/X768aha"], ["https://tec.openplanner.team/stops/H5qu141a", "https://tec.openplanner.team/stops/H5qu149a"], ["https://tec.openplanner.team/stops/H2ll186b", "https://tec.openplanner.team/stops/H2sv259b"], ["https://tec.openplanner.team/stops/H4ar102b", "https://tec.openplanner.team/stops/H4pl114b"], ["https://tec.openplanner.team/stops/Bptegna1", "https://tec.openplanner.team/stops/Bptegna2"], ["https://tec.openplanner.team/stops/LWDsott3", "https://tec.openplanner.team/stops/LWDsott4"], ["https://tec.openplanner.team/stops/X767aga", "https://tec.openplanner.team/stops/X767aha"], ["https://tec.openplanner.team/stops/Bhalgar1", "https://tec.openplanner.team/stops/Bhalkrk1"], ["https://tec.openplanner.team/stops/N506aha", "https://tec.openplanner.team/stops/N506ara"], ["https://tec.openplanner.team/stops/Cgxmaco1", "https://tec.openplanner.team/stops/Cgxmaco2"], ["https://tec.openplanner.team/stops/N538aib", "https://tec.openplanner.team/stops/N538alb"], ["https://tec.openplanner.team/stops/Lanfran1", "https://tec.openplanner.team/stops/Lansarm2"], ["https://tec.openplanner.team/stops/H1sy144d", "https://tec.openplanner.team/stops/H1sy145b"], ["https://tec.openplanner.team/stops/H4lz117b", "https://tec.openplanner.team/stops/H4lz122a"], ["https://tec.openplanner.team/stops/X750bpa", "https://tec.openplanner.team/stops/X750bpb"], ["https://tec.openplanner.team/stops/LeLcrem2", "https://tec.openplanner.team/stops/LSoprom1"], ["https://tec.openplanner.team/stops/Ccocoup2", "https://tec.openplanner.team/stops/Ccorian2"], ["https://tec.openplanner.team/stops/Lmihale2", "https://tec.openplanner.team/stops/Lmimc--2"], ["https://tec.openplanner.team/stops/Bjaneco2", "https://tec.openplanner.team/stops/Bjanfer1"], ["https://tec.openplanner.team/stops/Cgoboll3", "https://tec.openplanner.team/stops/Craplac3"], ["https://tec.openplanner.team/stops/X666aib", "https://tec.openplanner.team/stops/X666akb"], ["https://tec.openplanner.team/stops/X910aaa", "https://tec.openplanner.team/stops/X910aba"], ["https://tec.openplanner.team/stops/H1eo106b", "https://tec.openplanner.team/stops/H1ju119b"], ["https://tec.openplanner.team/stops/X734aja", "https://tec.openplanner.team/stops/X734akb"], ["https://tec.openplanner.team/stops/H2se107a", "https://tec.openplanner.team/stops/H2se110a"], ["https://tec.openplanner.team/stops/Cjubert2", "https://tec.openplanner.team/stops/CMbert2"], ["https://tec.openplanner.team/stops/X733ahb", "https://tec.openplanner.team/stops/X734ajb"], ["https://tec.openplanner.team/stops/LSPpelz2", "https://tec.openplanner.team/stops/LSPwarf2"], ["https://tec.openplanner.team/stops/Cmtduch1", "https://tec.openplanner.team/stops/Cmtduch2"], ["https://tec.openplanner.team/stops/X919aja", "https://tec.openplanner.team/stops/X919ala"], ["https://tec.openplanner.team/stops/X595aeb", "https://tec.openplanner.team/stops/X713abb"], ["https://tec.openplanner.team/stops/LETtemp2", "https://tec.openplanner.team/stops/Lremonu2"], ["https://tec.openplanner.team/stops/LWLeg--3", "https://tec.openplanner.team/stops/LWLtamb1"], ["https://tec.openplanner.team/stops/X809abb", "https://tec.openplanner.team/stops/X809acb"], ["https://tec.openplanner.team/stops/H1hr122a", "https://tec.openplanner.team/stops/H3so174b"], ["https://tec.openplanner.team/stops/Cbiferm1", "https://tec.openplanner.team/stops/Cthgend2"], ["https://tec.openplanner.team/stops/LrAneue1", "https://tec.openplanner.team/stops/LrAneue2"], ["https://tec.openplanner.team/stops/H4pl112b", "https://tec.openplanner.team/stops/H4pl121a"], ["https://tec.openplanner.team/stops/X925aea", "https://tec.openplanner.team/stops/X982cca"], ["https://tec.openplanner.team/stops/Clgrsoc2", "https://tec.openplanner.team/stops/Csscrot2"], ["https://tec.openplanner.team/stops/LMalamb4", "https://tec.openplanner.team/stops/LTolijn*"], ["https://tec.openplanner.team/stops/Bwavdmo4", "https://tec.openplanner.team/stops/Bwavvpr2"], ["https://tec.openplanner.team/stops/N352aeb", "https://tec.openplanner.team/stops/N367ada"], ["https://tec.openplanner.team/stops/X801bdc", "https://tec.openplanner.team/stops/X801cka"], ["https://tec.openplanner.team/stops/Ccojaur1", "https://tec.openplanner.team/stops/Ccojaur2"], ["https://tec.openplanner.team/stops/Bnivspi1", "https://tec.openplanner.team/stops/Bnivspi2"], ["https://tec.openplanner.team/stops/Bbiefon2", "https://tec.openplanner.team/stops/Bbiesbi1"], ["https://tec.openplanner.team/stops/H4cl112a", "https://tec.openplanner.team/stops/H4cl112b"], ["https://tec.openplanner.team/stops/Bblaall2", "https://tec.openplanner.team/stops/Bblarbe2"], ["https://tec.openplanner.team/stops/H2mg151a", "https://tec.openplanner.team/stops/H2mg153a"], ["https://tec.openplanner.team/stops/Cclbarb1", "https://tec.openplanner.team/stops/Cclchap2"], ["https://tec.openplanner.team/stops/N511aub", "https://tec.openplanner.team/stops/N511avb"], ["https://tec.openplanner.team/stops/X672afb", "https://tec.openplanner.team/stops/X672ala"], ["https://tec.openplanner.team/stops/X651aga", "https://tec.openplanner.team/stops/X659ayb"], ["https://tec.openplanner.team/stops/Cpccpas1", "https://tec.openplanner.team/stops/Cpcwaut2"], ["https://tec.openplanner.team/stops/X937ajb", "https://tec.openplanner.team/stops/X952aaa"], ["https://tec.openplanner.team/stops/X860aba", "https://tec.openplanner.team/stops/X860abb"], ["https://tec.openplanner.team/stops/Cnawari1", "https://tec.openplanner.team/stops/Cnawari2"], ["https://tec.openplanner.team/stops/Cmmgadi2", "https://tec.openplanner.team/stops/Cmmlong1"], ["https://tec.openplanner.team/stops/X917ajb", "https://tec.openplanner.team/stops/X919ana"], ["https://tec.openplanner.team/stops/X398afa", "https://tec.openplanner.team/stops/X398aha"], ["https://tec.openplanner.team/stops/Bblmcel1", "https://tec.openplanner.team/stops/Bblmpro2"], ["https://tec.openplanner.team/stops/X805akb", "https://tec.openplanner.team/stops/X869aeb"], ["https://tec.openplanner.team/stops/Bnilspe2", "https://tec.openplanner.team/stops/Bnilspe3"], ["https://tec.openplanner.team/stops/Lfhhoul1", "https://tec.openplanner.team/stops/Lfhhoul2"], ["https://tec.openplanner.team/stops/X606aaa", "https://tec.openplanner.team/stops/X606aba"], ["https://tec.openplanner.team/stops/Boplcsj1", "https://tec.openplanner.team/stops/Boplcsj3"], ["https://tec.openplanner.team/stops/LARarge2", "https://tec.openplanner.team/stops/LHAvall1"], ["https://tec.openplanner.team/stops/Bwlhppg3", "https://tec.openplanner.team/stops/Bwlhppg4"], ["https://tec.openplanner.team/stops/N501cmb", "https://tec.openplanner.team/stops/N501cua"], ["https://tec.openplanner.team/stops/X769aca", "https://tec.openplanner.team/stops/X769ahb"], ["https://tec.openplanner.team/stops/N308aza", "https://tec.openplanner.team/stops/N308azb"], ["https://tec.openplanner.team/stops/LBCaube1", "https://tec.openplanner.team/stops/LBCaube2"], ["https://tec.openplanner.team/stops/Blemkap2", "https://tec.openplanner.team/stops/Blemwob1"], ["https://tec.openplanner.team/stops/X736aab", "https://tec.openplanner.team/stops/X753aab"], ["https://tec.openplanner.team/stops/LlOdrei1", "https://tec.openplanner.team/stops/LnDkreu2"], ["https://tec.openplanner.team/stops/Bgnvfai2", "https://tec.openplanner.team/stops/Blhupcl1"], ["https://tec.openplanner.team/stops/N551agc", "https://tec.openplanner.team/stops/N551arb"], ["https://tec.openplanner.team/stops/N542aeb", "https://tec.openplanner.team/stops/N542afb"], ["https://tec.openplanner.team/stops/X738aba", "https://tec.openplanner.team/stops/X738aca"], ["https://tec.openplanner.team/stops/Ccybouc1", "https://tec.openplanner.team/stops/Ccybouc3"], ["https://tec.openplanner.team/stops/X901baa", "https://tec.openplanner.team/stops/X901bma"], ["https://tec.openplanner.team/stops/N528abb", "https://tec.openplanner.team/stops/N528aka"], ["https://tec.openplanner.team/stops/N232abb", "https://tec.openplanner.team/stops/N232ana"], ["https://tec.openplanner.team/stops/H2sb224a", "https://tec.openplanner.team/stops/H2sb239d"], ["https://tec.openplanner.team/stops/X982ala", "https://tec.openplanner.team/stops/X982amb"], ["https://tec.openplanner.team/stops/LTRfend1", "https://tec.openplanner.team/stops/LTRfend2"], ["https://tec.openplanner.team/stops/X741aeb", "https://tec.openplanner.team/stops/X758aka"], ["https://tec.openplanner.team/stops/X804bzb", "https://tec.openplanner.team/stops/X805aba"], ["https://tec.openplanner.team/stops/Blhunys3", "https://tec.openplanner.team/stops/Blhupri1"], ["https://tec.openplanner.team/stops/X902acb", "https://tec.openplanner.team/stops/X902aqa"], ["https://tec.openplanner.team/stops/LATgill1", "https://tec.openplanner.team/stops/LHUfali3"], ["https://tec.openplanner.team/stops/Cgorobe1", "https://tec.openplanner.team/stops/Cgorobe2"], ["https://tec.openplanner.team/stops/N385aea", "https://tec.openplanner.team/stops/N385aeb"], ["https://tec.openplanner.team/stops/LBPboir2", "https://tec.openplanner.team/stops/LBPeg--2"], ["https://tec.openplanner.team/stops/X547acb", "https://tec.openplanner.team/stops/X561abb"], ["https://tec.openplanner.team/stops/LMImc--1", "https://tec.openplanner.team/stops/LMIpast1"], ["https://tec.openplanner.team/stops/Bjodcar1", "https://tec.openplanner.team/stops/Bjodcar2"], ["https://tec.openplanner.team/stops/H1ba117b", "https://tec.openplanner.team/stops/H1qu104a"], ["https://tec.openplanner.team/stops/X623aaa", "https://tec.openplanner.team/stops/X623akb"], ["https://tec.openplanner.team/stops/Cgynoir1", "https://tec.openplanner.team/stops/Cgynoir2"], ["https://tec.openplanner.team/stops/N514aca", "https://tec.openplanner.team/stops/N514acb"], ["https://tec.openplanner.team/stops/Llgform1", "https://tec.openplanner.team/stops/Llggill2"], ["https://tec.openplanner.team/stops/X717aha", "https://tec.openplanner.team/stops/X717ahb"], ["https://tec.openplanner.team/stops/LBmbara2", "https://tec.openplanner.team/stops/LJAbell4"], ["https://tec.openplanner.team/stops/X601aud", "https://tec.openplanner.team/stops/X601axa"], ["https://tec.openplanner.team/stops/H1br127b", "https://tec.openplanner.team/stops/H3bo101a"], ["https://tec.openplanner.team/stops/N536aob", "https://tec.openplanner.team/stops/N562bna"], ["https://tec.openplanner.team/stops/X595ada", "https://tec.openplanner.team/stops/X595adb"], ["https://tec.openplanner.team/stops/NL68aeb", "https://tec.openplanner.team/stops/NL68afb"], ["https://tec.openplanner.team/stops/X911aaa", "https://tec.openplanner.team/stops/X911avb"], ["https://tec.openplanner.team/stops/H4my123a", "https://tec.openplanner.team/stops/H4pe128b"], ["https://tec.openplanner.team/stops/Cctptsa1", "https://tec.openplanner.team/stops/Cctvict3"], ["https://tec.openplanner.team/stops/N501dqa", "https://tec.openplanner.team/stops/N501kga"], ["https://tec.openplanner.team/stops/Cmlaili2", "https://tec.openplanner.team/stops/Cmlhauc1"], ["https://tec.openplanner.team/stops/Bohnegl1", "https://tec.openplanner.team/stops/Bohnegl2"], ["https://tec.openplanner.team/stops/N501dbb", "https://tec.openplanner.team/stops/N501ddb"], ["https://tec.openplanner.team/stops/H1mc126a", "https://tec.openplanner.team/stops/H1mc128a"], ["https://tec.openplanner.team/stops/H1gc123a", "https://tec.openplanner.team/stops/H1go174a"], ["https://tec.openplanner.team/stops/H2lc146a", "https://tec.openplanner.team/stops/H2lc169b"], ["https://tec.openplanner.team/stops/LDOandr3", "https://tec.openplanner.team/stops/LDObran2"], ["https://tec.openplanner.team/stops/H1ci102a", "https://tec.openplanner.team/stops/H1ci104a"], ["https://tec.openplanner.team/stops/LHdkenn3", "https://tec.openplanner.team/stops/LVnflox2"], ["https://tec.openplanner.team/stops/X615aha", "https://tec.openplanner.team/stops/X615brb"], ["https://tec.openplanner.team/stops/Lbobuil2", "https://tec.openplanner.team/stops/Lbocomm2"], ["https://tec.openplanner.team/stops/X955aaa", "https://tec.openplanner.team/stops/X955aab"], ["https://tec.openplanner.team/stops/LSTamer2", "https://tec.openplanner.team/stops/LTPlegr2"], ["https://tec.openplanner.team/stops/LWechea1", "https://tec.openplanner.team/stops/LWechpl1"], ["https://tec.openplanner.team/stops/N232aca", "https://tec.openplanner.team/stops/N232acb"], ["https://tec.openplanner.team/stops/N505ajb", "https://tec.openplanner.team/stops/N512awb"], ["https://tec.openplanner.team/stops/Bchacen2", "https://tec.openplanner.team/stops/Bchamco1"], ["https://tec.openplanner.team/stops/X760aab", "https://tec.openplanner.team/stops/X786aja"], ["https://tec.openplanner.team/stops/X922ajb", "https://tec.openplanner.team/stops/X922ama"], ["https://tec.openplanner.team/stops/LDLbaye2", "https://tec.openplanner.team/stops/LGMhadr1"], ["https://tec.openplanner.team/stops/X597amb", "https://tec.openplanner.team/stops/X597aqb"], ["https://tec.openplanner.team/stops/Bbldass1", "https://tec.openplanner.team/stops/Bbldass2"], ["https://tec.openplanner.team/stops/N536aba", "https://tec.openplanner.team/stops/N564afb"], ["https://tec.openplanner.team/stops/X804acb", "https://tec.openplanner.team/stops/X804amb"], ["https://tec.openplanner.team/stops/Lgdec--1", "https://tec.openplanner.team/stops/Lgdec--2"], ["https://tec.openplanner.team/stops/Bbststa1", "https://tec.openplanner.team/stops/Bbststa2"], ["https://tec.openplanner.team/stops/N551aja", "https://tec.openplanner.team/stops/N551ajb"], ["https://tec.openplanner.team/stops/H4ty306a", "https://tec.openplanner.team/stops/H4ty320b"], ["https://tec.openplanner.team/stops/N135aec", "https://tec.openplanner.team/stops/N136ada"], ["https://tec.openplanner.team/stops/Lalwaro1", "https://tec.openplanner.team/stops/LXhcite2"], ["https://tec.openplanner.team/stops/LSGeg--1", "https://tec.openplanner.team/stops/LSGsolo1"], ["https://tec.openplanner.team/stops/Lalhomb1", "https://tec.openplanner.team/stops/Lancoop2"], ["https://tec.openplanner.team/stops/N232bea", "https://tec.openplanner.team/stops/N232beb"], ["https://tec.openplanner.team/stops/LCn4---1", "https://tec.openplanner.team/stops/LLUg82-1"], ["https://tec.openplanner.team/stops/LNIhaut2", "https://tec.openplanner.team/stops/LSZnive2"], ["https://tec.openplanner.team/stops/X818aka", "https://tec.openplanner.team/stops/X818akb"], ["https://tec.openplanner.team/stops/H4ne133b", "https://tec.openplanner.team/stops/H4ne145b"], ["https://tec.openplanner.team/stops/NC24aia", "https://tec.openplanner.team/stops/NC24ajb"], ["https://tec.openplanner.team/stops/NH01ara", "https://tec.openplanner.team/stops/NH01ata"], ["https://tec.openplanner.team/stops/LPLcarr2", "https://tec.openplanner.team/stops/Lsebonc1"], ["https://tec.openplanner.team/stops/X756aha", "https://tec.openplanner.team/stops/X757akb"], ["https://tec.openplanner.team/stops/Csasncb2", "https://tec.openplanner.team/stops/Csdjeme2"], ["https://tec.openplanner.team/stops/Bwavbmo2", "https://tec.openplanner.team/stops/Bwavpao2"], ["https://tec.openplanner.team/stops/X812aaa", "https://tec.openplanner.team/stops/X812aqa"], ["https://tec.openplanner.team/stops/Ccucroi1", "https://tec.openplanner.team/stops/Ccugail2"], ["https://tec.openplanner.team/stops/LCeterm2", "https://tec.openplanner.team/stops/LGAholl1"], ["https://tec.openplanner.team/stops/X796aba", "https://tec.openplanner.team/stops/X796aca"], ["https://tec.openplanner.team/stops/Lremonu1", "https://tec.openplanner.team/stops/Lremonu2"], ["https://tec.openplanner.team/stops/LDOanes2", "https://tec.openplanner.team/stops/LGOcana2"], ["https://tec.openplanner.team/stops/LORdtec*", "https://tec.openplanner.team/stops/LORgend1"], ["https://tec.openplanner.team/stops/X750aga", "https://tec.openplanner.team/stops/X750ama"], ["https://tec.openplanner.team/stops/X818aoa", "https://tec.openplanner.team/stops/X818awb"], ["https://tec.openplanner.team/stops/Bsaumlp1", "https://tec.openplanner.team/stops/Btstbbu1"], ["https://tec.openplanner.team/stops/LMhvina1", "https://tec.openplanner.team/stops/LMhvina2"], ["https://tec.openplanner.team/stops/N554acc", "https://tec.openplanner.team/stops/N573aoa"], ["https://tec.openplanner.team/stops/X788aca", "https://tec.openplanner.team/stops/X788acb"], ["https://tec.openplanner.team/stops/Clupcfe1", "https://tec.openplanner.team/stops/Cvvcime2"], ["https://tec.openplanner.team/stops/X601cea", "https://tec.openplanner.team/stops/X601ceb"], ["https://tec.openplanner.team/stops/H4mn100a", "https://tec.openplanner.team/stops/H4rk101b"], ["https://tec.openplanner.team/stops/N101acb", "https://tec.openplanner.team/stops/N101adb"], ["https://tec.openplanner.team/stops/Btslhau2", "https://tec.openplanner.team/stops/Btsllsc2"], ["https://tec.openplanner.team/stops/H2ha127b", "https://tec.openplanner.team/stops/H2ha138b"], ["https://tec.openplanner.team/stops/H2ma203b", "https://tec.openplanner.team/stops/H2ma209b"], ["https://tec.openplanner.team/stops/NL74aba", "https://tec.openplanner.team/stops/NL74aea"], ["https://tec.openplanner.team/stops/X788afb", "https://tec.openplanner.team/stops/X789ahb"], ["https://tec.openplanner.team/stops/Bottcbp2", "https://tec.openplanner.team/stops/Botteco1"], ["https://tec.openplanner.team/stops/Cmtfoye1", "https://tec.openplanner.team/stops/Cmtstth2"], ["https://tec.openplanner.team/stops/LVBmonu1", "https://tec.openplanner.team/stops/LVBmonu4"], ["https://tec.openplanner.team/stops/X922afb", "https://tec.openplanner.team/stops/X922agb"], ["https://tec.openplanner.team/stops/LBTcarr1", "https://tec.openplanner.team/stops/LBTcarr3"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Llojeme3"], ["https://tec.openplanner.team/stops/Lflprev2", "https://tec.openplanner.team/stops/Lrolecl1"], ["https://tec.openplanner.team/stops/H1pa108a", "https://tec.openplanner.team/stops/H1pa108b"], ["https://tec.openplanner.team/stops/N539adb", "https://tec.openplanner.team/stops/N539adc"], ["https://tec.openplanner.team/stops/N544aaa", "https://tec.openplanner.team/stops/N544abc"], ["https://tec.openplanner.team/stops/X601bfb", "https://tec.openplanner.team/stops/X601bxb"], ["https://tec.openplanner.team/stops/Cgzcorn1", "https://tec.openplanner.team/stops/Cgzcour2"], ["https://tec.openplanner.team/stops/X637aaa", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/N120aoc", "https://tec.openplanner.team/stops/N120aod"], ["https://tec.openplanner.team/stops/X822abb", "https://tec.openplanner.team/stops/X822aca"], ["https://tec.openplanner.team/stops/Lghcfer1", "https://tec.openplanner.team/stops/Lghjans1"], ["https://tec.openplanner.team/stops/Ltibell1", "https://tec.openplanner.team/stops/Ltibell2"], ["https://tec.openplanner.team/stops/Cmocalv2", "https://tec.openplanner.team/stops/Cmocalv4"], ["https://tec.openplanner.team/stops/N166abb", "https://tec.openplanner.team/stops/N166acb"], ["https://tec.openplanner.team/stops/X725bfb", "https://tec.openplanner.team/stops/X767aib"], ["https://tec.openplanner.team/stops/LBEabbe2", "https://tec.openplanner.team/stops/LBEfagn1"], ["https://tec.openplanner.team/stops/X878aaa", "https://tec.openplanner.team/stops/X879abb"], ["https://tec.openplanner.team/stops/X823aab", "https://tec.openplanner.team/stops/X830aab"], ["https://tec.openplanner.team/stops/Lendonh2", "https://tec.openplanner.team/stops/Lenmivi*"], ["https://tec.openplanner.team/stops/X631aca", "https://tec.openplanner.team/stops/X631adb"], ["https://tec.openplanner.team/stops/X619aba", "https://tec.openplanner.team/stops/X619abb"], ["https://tec.openplanner.team/stops/Lchacie1", "https://tec.openplanner.team/stops/Lra4bra2"], ["https://tec.openplanner.team/stops/N501ata", "https://tec.openplanner.team/stops/N501hpa"], ["https://tec.openplanner.team/stops/H1mj127a", "https://tec.openplanner.team/stops/H1mj131b"], ["https://tec.openplanner.team/stops/LGLecol1", "https://tec.openplanner.team/stops/LGLlaur1"], ["https://tec.openplanner.team/stops/Lstscie1", "https://tec.openplanner.team/stops/Lstscie2"], ["https://tec.openplanner.team/stops/Cbugara2", "https://tec.openplanner.team/stops/Cbupla1"], ["https://tec.openplanner.team/stops/LsVgrun1", "https://tec.openplanner.team/stops/LsVsimo2"], ["https://tec.openplanner.team/stops/Bvilvil2", "https://tec.openplanner.team/stops/Bvilvil4"], ["https://tec.openplanner.team/stops/Llianix2", "https://tec.openplanner.team/stops/Lligare2"], ["https://tec.openplanner.team/stops/X989afa", "https://tec.openplanner.team/stops/X989afb"], ["https://tec.openplanner.team/stops/Bitrsar1", "https://tec.openplanner.team/stops/Bitrsar2"], ["https://tec.openplanner.team/stops/H1ni317a", "https://tec.openplanner.team/stops/H1ni318b"], ["https://tec.openplanner.team/stops/X651afa", "https://tec.openplanner.team/stops/X658aab"], ["https://tec.openplanner.team/stops/LbUbisc2", "https://tec.openplanner.team/stops/LwR140-2"], ["https://tec.openplanner.team/stops/NL74ahd", "https://tec.openplanner.team/stops/NL74aib"], ["https://tec.openplanner.team/stops/Bwatdmo1", "https://tec.openplanner.team/stops/Bwatmco2"], ["https://tec.openplanner.team/stops/X982bdb", "https://tec.openplanner.team/stops/X982bja"], ["https://tec.openplanner.team/stops/X899aib", "https://tec.openplanner.team/stops/X899ajb"], ["https://tec.openplanner.team/stops/H4ty299a", "https://tec.openplanner.team/stops/H4ty299e"], ["https://tec.openplanner.team/stops/N308afc", "https://tec.openplanner.team/stops/N308aga"], ["https://tec.openplanner.team/stops/Lsnfont1", "https://tec.openplanner.team/stops/Lsnfont2"], ["https://tec.openplanner.team/stops/H1mj126a", "https://tec.openplanner.team/stops/H1mj127b"], ["https://tec.openplanner.team/stops/Cfaauln2", "https://tec.openplanner.team/stops/Cflspir1"], ["https://tec.openplanner.team/stops/Csabrun1", "https://tec.openplanner.team/stops/Cvpcime2"], ["https://tec.openplanner.team/stops/LLRvill1", "https://tec.openplanner.team/stops/LVPbleh2"], ["https://tec.openplanner.team/stops/LCHrhou1", "https://tec.openplanner.team/stops/LThplen2"], ["https://tec.openplanner.team/stops/Ccuhsti1", "https://tec.openplanner.team/stops/Ccupbro2"], ["https://tec.openplanner.team/stops/N118adb", "https://tec.openplanner.team/stops/N118aeb"], ["https://tec.openplanner.team/stops/LATcham*", "https://tec.openplanner.team/stops/LVLcent2"], ["https://tec.openplanner.team/stops/LBRmc--2", "https://tec.openplanner.team/stops/LBRmc--4"], ["https://tec.openplanner.team/stops/Lbrquai1", "https://tec.openplanner.team/stops/Llgbarb2"], ["https://tec.openplanner.team/stops/H4ef112b", "https://tec.openplanner.team/stops/H4or114a"], ["https://tec.openplanner.team/stops/Cfrcham2", "https://tec.openplanner.team/stops/Cmestas2"], ["https://tec.openplanner.team/stops/Bwaab121", "https://tec.openplanner.team/stops/Bwaab122"], ["https://tec.openplanner.team/stops/LHDmc--1", "https://tec.openplanner.team/stops/LLGec--*"], ["https://tec.openplanner.team/stops/Csoforr2", "https://tec.openplanner.team/stops/Csoforr3"], ["https://tec.openplanner.team/stops/Lcchala2", "https://tec.openplanner.team/stops/LRarami1"], ["https://tec.openplanner.team/stops/Btslegl2", "https://tec.openplanner.team/stops/Btslenf2"], ["https://tec.openplanner.team/stops/N558aab", "https://tec.openplanner.team/stops/N558afb"], ["https://tec.openplanner.team/stops/Bllnhoc1", "https://tec.openplanner.team/stops/Bottppa1"], ["https://tec.openplanner.team/stops/LSTmast1", "https://tec.openplanner.team/stops/LSTmast2"], ["https://tec.openplanner.team/stops/H4ty322c", "https://tec.openplanner.team/stops/H4ty322d"], ["https://tec.openplanner.team/stops/H4ev119a", "https://tec.openplanner.team/stops/H4sl154b"], ["https://tec.openplanner.team/stops/Blincoo2", "https://tec.openplanner.team/stops/Blineco2"], ["https://tec.openplanner.team/stops/X908afb", "https://tec.openplanner.team/stops/X911awa"], ["https://tec.openplanner.team/stops/LAWcite6", "https://tec.openplanner.team/stops/LHGleje1"], ["https://tec.openplanner.team/stops/X780ajb", "https://tec.openplanner.team/stops/X793aib"], ["https://tec.openplanner.team/stops/LMibouv3", "https://tec.openplanner.team/stops/LMibouv4"], ["https://tec.openplanner.team/stops/X869ada", "https://tec.openplanner.team/stops/X869aea"], ["https://tec.openplanner.team/stops/X773amb", "https://tec.openplanner.team/stops/X773anb"], ["https://tec.openplanner.team/stops/Lveoctr1", "https://tec.openplanner.team/stops/Lveoctr3"], ["https://tec.openplanner.team/stops/N576aga", "https://tec.openplanner.team/stops/N576aha"], ["https://tec.openplanner.team/stops/X601bsa", "https://tec.openplanner.team/stops/X601bva"], ["https://tec.openplanner.team/stops/N521adb", "https://tec.openplanner.team/stops/N521afa"], ["https://tec.openplanner.team/stops/N501gza", "https://tec.openplanner.team/stops/N501gzz"], ["https://tec.openplanner.team/stops/Lserena2", "https://tec.openplanner.team/stops/Lseverh2"], ["https://tec.openplanner.team/stops/X824aba", "https://tec.openplanner.team/stops/X824abb"], ["https://tec.openplanner.team/stops/Btlbche1", "https://tec.openplanner.team/stops/Btlbche2"], ["https://tec.openplanner.team/stops/LbTweyn1", "https://tec.openplanner.team/stops/LbUwhon1"], ["https://tec.openplanner.team/stops/LEBmoul1", "https://tec.openplanner.team/stops/Llxcite2"], ["https://tec.openplanner.team/stops/X657aka", "https://tec.openplanner.team/stops/X657anb"], ["https://tec.openplanner.team/stops/H1te173a", "https://tec.openplanner.team/stops/H1te184b"], ["https://tec.openplanner.team/stops/H1hg178a", "https://tec.openplanner.team/stops/H1hg180a"], ["https://tec.openplanner.team/stops/H1ha200a", "https://tec.openplanner.team/stops/H1ha200b"], ["https://tec.openplanner.team/stops/H2ha138b", "https://tec.openplanner.team/stops/H2ha142a"], ["https://tec.openplanner.team/stops/LGecite2", "https://tec.openplanner.team/stops/LGeschr1"], ["https://tec.openplanner.team/stops/LESchpl1", "https://tec.openplanner.team/stops/LESevie1"], ["https://tec.openplanner.team/stops/X793aea", "https://tec.openplanner.team/stops/X793aeb"], ["https://tec.openplanner.team/stops/H4ae132d", "https://tec.openplanner.team/stops/H4ea129a"], ["https://tec.openplanner.team/stops/LBEcomm1", "https://tec.openplanner.team/stops/LBEtilf1"], ["https://tec.openplanner.team/stops/LAMfroi2", "https://tec.openplanner.team/stops/LAMusin2"], ["https://tec.openplanner.team/stops/H4ta115a", "https://tec.openplanner.team/stops/H4ta127a"], ["https://tec.openplanner.team/stops/N534axb", "https://tec.openplanner.team/stops/N534cbh"], ["https://tec.openplanner.team/stops/Loutrix1", "https://tec.openplanner.team/stops/Loutroi1"], ["https://tec.openplanner.team/stops/N501jqa", "https://tec.openplanner.team/stops/N501nea"], ["https://tec.openplanner.team/stops/X619ama", "https://tec.openplanner.team/stops/X619amb"], ["https://tec.openplanner.team/stops/Barqbco1", "https://tec.openplanner.team/stops/Barqpla2"], ["https://tec.openplanner.team/stops/H4fa167a", "https://tec.openplanner.team/stops/H5rx104b"], ["https://tec.openplanner.team/stops/Cjuledo2", "https://tec.openplanner.team/stops/Cjuplco2"], ["https://tec.openplanner.team/stops/LHUalbe2", "https://tec.openplanner.team/stops/LHUpost4"], ["https://tec.openplanner.team/stops/LbUhons1", "https://tec.openplanner.team/stops/LbUkrei*"], ["https://tec.openplanner.team/stops/Bmlngch2", "https://tec.openplanner.team/stops/Bmlngvi2"], ["https://tec.openplanner.team/stops/LeUwert1", "https://tec.openplanner.team/stops/LeUwert3"], ["https://tec.openplanner.team/stops/H1cv101a", "https://tec.openplanner.team/stops/H1cv103a"], ["https://tec.openplanner.team/stops/H4wn128a", "https://tec.openplanner.team/stops/H4wn130a"], ["https://tec.openplanner.team/stops/LDAptbo1", "https://tec.openplanner.team/stops/LDArich1"], ["https://tec.openplanner.team/stops/Btsllib2", "https://tec.openplanner.team/stops/Btslpbr1"], ["https://tec.openplanner.team/stops/LOV48--2", "https://tec.openplanner.team/stops/LOVchen2"], ["https://tec.openplanner.team/stops/H1pa110b", "https://tec.openplanner.team/stops/H1qu119a"], ["https://tec.openplanner.team/stops/H1bi101a", "https://tec.openplanner.team/stops/H1bi101b"], ["https://tec.openplanner.team/stops/X804ald", "https://tec.openplanner.team/stops/X804bwa"], ["https://tec.openplanner.team/stops/H1fr107c", "https://tec.openplanner.team/stops/H1fr109b"], ["https://tec.openplanner.team/stops/Lhrrhee*", "https://tec.openplanner.team/stops/Lhrunir2"], ["https://tec.openplanner.team/stops/N368aba", "https://tec.openplanner.team/stops/N368afb"], ["https://tec.openplanner.team/stops/H1ni321a", "https://tec.openplanner.team/stops/H1ni321b"], ["https://tec.openplanner.team/stops/H3bi113a", "https://tec.openplanner.team/stops/H3bi113b"], ["https://tec.openplanner.team/stops/Lbocime1", "https://tec.openplanner.team/stops/Lbofrai2"], ["https://tec.openplanner.team/stops/N547aba", "https://tec.openplanner.team/stops/N547adb"], ["https://tec.openplanner.team/stops/Cchba02", "https://tec.openplanner.team/stops/CMba2"], ["https://tec.openplanner.team/stops/Cgopier3", "https://tec.openplanner.team/stops/Ctmmath2"], ["https://tec.openplanner.team/stops/Bezeksj4", "https://tec.openplanner.team/stops/Bneeblo1"], ["https://tec.openplanner.team/stops/X657afa", "https://tec.openplanner.team/stops/X657agb"], ["https://tec.openplanner.team/stops/LAUneuv5", "https://tec.openplanner.team/stops/LAUscha2"], ["https://tec.openplanner.team/stops/LJAbois2", "https://tec.openplanner.team/stops/LJAroue2"], ["https://tec.openplanner.team/stops/H1ha190b", "https://tec.openplanner.team/stops/H1ha197b"], ["https://tec.openplanner.team/stops/N111acb", "https://tec.openplanner.team/stops/N111aeb"], ["https://tec.openplanner.team/stops/Cmlceri2", "https://tec.openplanner.team/stops/Cmlclos2"], ["https://tec.openplanner.team/stops/N516ada", "https://tec.openplanner.team/stops/N516anb"], ["https://tec.openplanner.team/stops/LBkcarr3", "https://tec.openplanner.team/stops/LBkcarr4"], ["https://tec.openplanner.team/stops/N501fwz", "https://tec.openplanner.team/stops/N501gnb"], ["https://tec.openplanner.team/stops/X837afa", "https://tec.openplanner.team/stops/X837ajb"], ["https://tec.openplanner.team/stops/H4hx122a", "https://tec.openplanner.team/stops/H4hx124b"], ["https://tec.openplanner.team/stops/Bitreco2", "https://tec.openplanner.team/stops/Bitregl2"], ["https://tec.openplanner.team/stops/LbOre3b1", "https://tec.openplanner.team/stops/LrEkais4"], ["https://tec.openplanner.team/stops/Cfacamp4", "https://tec.openplanner.team/stops/Cfastan2"], ["https://tec.openplanner.team/stops/X896aga", "https://tec.openplanner.team/stops/X896aia"], ["https://tec.openplanner.team/stops/Lprmc--4", "https://tec.openplanner.team/stops/Lprmoin1"], ["https://tec.openplanner.team/stops/X601ala", "https://tec.openplanner.team/stops/X601bwa"], ["https://tec.openplanner.team/stops/H1el135b", "https://tec.openplanner.team/stops/H1wi152b"], ["https://tec.openplanner.team/stops/H2fa103b", "https://tec.openplanner.team/stops/H2mg135a"], ["https://tec.openplanner.team/stops/Croplom4", "https://tec.openplanner.team/stops/Croplom7"], ["https://tec.openplanner.team/stops/LSkathe2", "https://tec.openplanner.team/stops/LSkchwa2"], ["https://tec.openplanner.team/stops/N501ima", "https://tec.openplanner.team/stops/N501imb"], ["https://tec.openplanner.team/stops/X999aja", "https://tec.openplanner.team/stops/X999anb"], ["https://tec.openplanner.team/stops/LMObut-1", "https://tec.openplanner.team/stops/LMOelva3"], ["https://tec.openplanner.team/stops/LTolijn*", "https://tec.openplanner.team/stops/LToluik2"], ["https://tec.openplanner.team/stops/LLrc_ip4", "https://tec.openplanner.team/stops/LWMchpl2"], ["https://tec.openplanner.team/stops/Cmlgoff1", "https://tec.openplanner.team/stops/Cmlgoff2"], ["https://tec.openplanner.team/stops/N235aea", "https://tec.openplanner.team/stops/N270aaa"], ["https://tec.openplanner.team/stops/Crarmas1", "https://tec.openplanner.team/stops/Cravign2"], ["https://tec.openplanner.team/stops/LESfoot2", "https://tec.openplanner.team/stops/LESgare1"], ["https://tec.openplanner.team/stops/H4bn174b", "https://tec.openplanner.team/stops/H4pi135a"], ["https://tec.openplanner.team/stops/N104afa", "https://tec.openplanner.team/stops/N104akb"], ["https://tec.openplanner.team/stops/N123acb", "https://tec.openplanner.team/stops/N124acb"], ["https://tec.openplanner.team/stops/LHMec--2", "https://tec.openplanner.team/stops/LHMgrun2"], ["https://tec.openplanner.team/stops/H1qy132a", "https://tec.openplanner.team/stops/H1qy132b"], ["https://tec.openplanner.team/stops/Lgdstoc1", "https://tec.openplanner.team/stops/LSNmoul2"], ["https://tec.openplanner.team/stops/Lticoq-1", "https://tec.openplanner.team/stops/Lticoq-2"], ["https://tec.openplanner.team/stops/N301akb", "https://tec.openplanner.team/stops/N331aeb"], ["https://tec.openplanner.team/stops/Cnamonn2", "https://tec.openplanner.team/stops/Cnawari1"], ["https://tec.openplanner.team/stops/LRtcarr1", "https://tec.openplanner.team/stops/LTecent1"], ["https://tec.openplanner.team/stops/H1pa104a", "https://tec.openplanner.team/stops/H1pa109b"], ["https://tec.openplanner.team/stops/H4ve131a", "https://tec.openplanner.team/stops/H4ve132b"], ["https://tec.openplanner.team/stops/X817abb", "https://tec.openplanner.team/stops/X822acb"], ["https://tec.openplanner.team/stops/LSJeg--2", "https://tec.openplanner.team/stops/LSJlabe1"], ["https://tec.openplanner.team/stops/Lbrnanc1", "https://tec.openplanner.team/stops/Lbrresi2"], ["https://tec.openplanner.team/stops/N146aaa", "https://tec.openplanner.team/stops/N146abb"], ["https://tec.openplanner.team/stops/LCRfavr2", "https://tec.openplanner.team/stops/LCRfize1"], ["https://tec.openplanner.team/stops/LOehart2", "https://tec.openplanner.team/stops/LWAlpre1"], ["https://tec.openplanner.team/stops/Llglaha1", "https://tec.openplanner.team/stops/Llglaha2"], ["https://tec.openplanner.team/stops/LtH37c-1", "https://tec.openplanner.team/stops/LtHkirc4"], ["https://tec.openplanner.team/stops/LJAdeho2", "https://tec.openplanner.team/stops/LJAgoff1"], ["https://tec.openplanner.team/stops/N113ada", "https://tec.openplanner.team/stops/N113afa"], ["https://tec.openplanner.team/stops/H1cu123a", "https://tec.openplanner.team/stops/H1cu131b"], ["https://tec.openplanner.team/stops/N124aac", "https://tec.openplanner.team/stops/N124acb"], ["https://tec.openplanner.team/stops/X804apb", "https://tec.openplanner.team/stops/X804aqa"], ["https://tec.openplanner.team/stops/H4ka178a", "https://tec.openplanner.team/stops/H4ka178b"], ["https://tec.openplanner.team/stops/LRmhage5", "https://tec.openplanner.team/stops/LRmsmvo3"], ["https://tec.openplanner.team/stops/X902aqa", "https://tec.openplanner.team/stops/X902atb"], ["https://tec.openplanner.team/stops/N301aca", "https://tec.openplanner.team/stops/N302aab"], ["https://tec.openplanner.team/stops/N233aaa", "https://tec.openplanner.team/stops/N233aba"], ["https://tec.openplanner.team/stops/N235adb", "https://tec.openplanner.team/stops/N235aea"], ["https://tec.openplanner.team/stops/Lpeptle1", "https://tec.openplanner.team/stops/LWeec--2"], ["https://tec.openplanner.team/stops/N347adb", "https://tec.openplanner.team/stops/N347aea"], ["https://tec.openplanner.team/stops/Ljubeyn2", "https://tec.openplanner.team/stops/Ljuvert2"], ["https://tec.openplanner.team/stops/LLSbajo1", "https://tec.openplanner.team/stops/LLStrid2"], ["https://tec.openplanner.team/stops/N135aab", "https://tec.openplanner.team/stops/N135abb"], ["https://tec.openplanner.team/stops/X801baa", "https://tec.openplanner.team/stops/X801bha"], ["https://tec.openplanner.team/stops/X901bma", "https://tec.openplanner.team/stops/X922abb"], ["https://tec.openplanner.team/stops/Cthalou1", "https://tec.openplanner.team/stops/Cthbifu1"], ["https://tec.openplanner.team/stops/Cmobeau2", "https://tec.openplanner.team/stops/Cmoruau2"], ["https://tec.openplanner.team/stops/X746afb", "https://tec.openplanner.team/stops/X746agd"], ["https://tec.openplanner.team/stops/N536aoa", "https://tec.openplanner.team/stops/N562aob"], ["https://tec.openplanner.team/stops/N505acb", "https://tec.openplanner.team/stops/N505aob"], ["https://tec.openplanner.team/stops/Bjodcsb2", "https://tec.openplanner.team/stops/Bjodgai2"], ["https://tec.openplanner.team/stops/LHDpota2", "https://tec.openplanner.team/stops/LLmcheg4"], ["https://tec.openplanner.team/stops/Cgyaudu1", "https://tec.openplanner.team/stops/Cgygazo3"], ["https://tec.openplanner.team/stops/H1ht122a", "https://tec.openplanner.team/stops/H1ht122b"], ["https://tec.openplanner.team/stops/X718afa", "https://tec.openplanner.team/stops/X718aga"], ["https://tec.openplanner.team/stops/LHMmarq1", "https://tec.openplanner.team/stops/LHMpatl2"], ["https://tec.openplanner.team/stops/Cgylouv1", "https://tec.openplanner.team/stops/Cgylouv2"], ["https://tec.openplanner.team/stops/NB33afa", "https://tec.openplanner.team/stops/NB33aha"], ["https://tec.openplanner.team/stops/Lligara2", "https://tec.openplanner.team/stops/LVSbleu1"], ["https://tec.openplanner.team/stops/Lveptre2", "https://tec.openplanner.team/stops/Lvereno1"], ["https://tec.openplanner.team/stops/Bnivjli2", "https://tec.openplanner.team/stops/Bnivphs1"], ["https://tec.openplanner.team/stops/Bmanati2", "https://tec.openplanner.team/stops/Bmangen1"], ["https://tec.openplanner.team/stops/N515afa", "https://tec.openplanner.team/stops/N515anb"], ["https://tec.openplanner.team/stops/Lveensi2", "https://tec.openplanner.team/stops/Lveyser2"], ["https://tec.openplanner.team/stops/N225aba", "https://tec.openplanner.team/stops/N226aba"], ["https://tec.openplanner.team/stops/Canboni1", "https://tec.openplanner.team/stops/Canboni2"], ["https://tec.openplanner.team/stops/LXHfalh1", "https://tec.openplanner.team/stops/LXHmart1"], ["https://tec.openplanner.team/stops/X747aka", "https://tec.openplanner.team/stops/X747alb"], ["https://tec.openplanner.team/stops/LFRhock4", "https://tec.openplanner.team/stops/LSx309-2"], ["https://tec.openplanner.team/stops/Cmtpire1", "https://tec.openplanner.team/stops/Cmtrbra1"], ["https://tec.openplanner.team/stops/Bottcba1", "https://tec.openplanner.team/stops/Bottpar1"], ["https://tec.openplanner.team/stops/H1gh163a", "https://tec.openplanner.team/stops/H1je225a"], ["https://tec.openplanner.team/stops/LhObull1", "https://tec.openplanner.team/stops/LhOfrie1"], ["https://tec.openplanner.team/stops/X768aea", "https://tec.openplanner.team/stops/X768agb"], ["https://tec.openplanner.team/stops/X801aqa", "https://tec.openplanner.team/stops/X801aqb"], ["https://tec.openplanner.team/stops/Lmnhorl2", "https://tec.openplanner.team/stops/Lmnhorl3"], ["https://tec.openplanner.team/stops/Bflcneu2", "https://tec.openplanner.team/stops/Bramcom2"], ["https://tec.openplanner.team/stops/H2ha129e", "https://tec.openplanner.team/stops/H2ha138a"], ["https://tec.openplanner.team/stops/H4ft132b", "https://tec.openplanner.team/stops/H4wu375a"], ["https://tec.openplanner.team/stops/H4wn125a", "https://tec.openplanner.team/stops/H4wn129b"], ["https://tec.openplanner.team/stops/X898ama", "https://tec.openplanner.team/stops/X898amb"], ["https://tec.openplanner.team/stops/Llghoch4", "https://tec.openplanner.team/stops/Llgmart1"], ["https://tec.openplanner.team/stops/LAxbott1", "https://tec.openplanner.team/stops/Lhelait2"], ["https://tec.openplanner.team/stops/N106aca", "https://tec.openplanner.team/stops/N106acb"], ["https://tec.openplanner.team/stops/N515anb", "https://tec.openplanner.team/stops/N516aoa"], ["https://tec.openplanner.team/stops/X664aab", "https://tec.openplanner.team/stops/X670ara"], ["https://tec.openplanner.team/stops/Bgzdcen2", "https://tec.openplanner.team/stops/Bgzdcwa2"], ["https://tec.openplanner.team/stops/Cchsud06", "https://tec.openplanner.team/stops/Cmlgoff1"], ["https://tec.openplanner.team/stops/Lvtnico*", "https://tec.openplanner.team/stops/Lvtnico1"], ["https://tec.openplanner.team/stops/Bbsthpl1", "https://tec.openplanner.team/stops/Bbsthpl2"], ["https://tec.openplanner.team/stops/X801aaa", "https://tec.openplanner.team/stops/X801aba"], ["https://tec.openplanner.team/stops/LmDkoel2", "https://tec.openplanner.team/stops/LmYeich1"], ["https://tec.openplanner.team/stops/X615azb", "https://tec.openplanner.team/stops/X615bcb"], ["https://tec.openplanner.team/stops/LoEauto1", "https://tec.openplanner.team/stops/LrDkirc2"], ["https://tec.openplanner.team/stops/Bbchmin1", "https://tec.openplanner.team/stops/Bitreco2"], ["https://tec.openplanner.team/stops/X850ada", "https://tec.openplanner.team/stops/X850aia"], ["https://tec.openplanner.team/stops/LPbchat2", "https://tec.openplanner.team/stops/LPbeg--1"], ["https://tec.openplanner.team/stops/LoUober1", "https://tec.openplanner.team/stops/LoUwelc2"], ["https://tec.openplanner.team/stops/Cbtstac1", "https://tec.openplanner.team/stops/Cbtstac2"], ["https://tec.openplanner.team/stops/Lbrboul1", "https://tec.openplanner.team/stops/Lbrboul2"], ["https://tec.openplanner.team/stops/Llgbron1", "https://tec.openplanner.team/stops/Llgvero2"], ["https://tec.openplanner.team/stops/NH01asa", "https://tec.openplanner.team/stops/NH01atb"], ["https://tec.openplanner.team/stops/Cbmgare2", "https://tec.openplanner.team/stops/Cbmzoni1"], ["https://tec.openplanner.team/stops/LbTathe2", "https://tec.openplanner.team/stops/LbThau12"], ["https://tec.openplanner.team/stops/LHEepur2", "https://tec.openplanner.team/stops/LHEnaza2"], ["https://tec.openplanner.team/stops/X782amb", "https://tec.openplanner.team/stops/X782aoa"], ["https://tec.openplanner.team/stops/LCSfagn2", "https://tec.openplanner.team/stops/LCSgend1"], ["https://tec.openplanner.team/stops/Bptrvil1", "https://tec.openplanner.team/stops/Bptrvil2"], ["https://tec.openplanner.team/stops/Ltichif1", "https://tec.openplanner.team/stops/Ltiferb2"], ["https://tec.openplanner.team/stops/X660aha", "https://tec.openplanner.team/stops/X660ahb"], ["https://tec.openplanner.team/stops/X942adb", "https://tec.openplanner.team/stops/X943aeb"], ["https://tec.openplanner.team/stops/Lvochev2", "https://tec.openplanner.team/stops/Lvoeg--2"], ["https://tec.openplanner.team/stops/H1te180b", "https://tec.openplanner.team/stops/H1vt194b"], ["https://tec.openplanner.team/stops/X801chb", "https://tec.openplanner.team/stops/X801cnb"], ["https://tec.openplanner.team/stops/H2ll191a", "https://tec.openplanner.team/stops/H2ll267b"], ["https://tec.openplanner.team/stops/X636ara", "https://tec.openplanner.team/stops/X636ata"], ["https://tec.openplanner.team/stops/LFChofv1", "https://tec.openplanner.team/stops/LFClage2"], ["https://tec.openplanner.team/stops/H2go115a", "https://tec.openplanner.team/stops/H2go115b"], ["https://tec.openplanner.team/stops/LSemc--2", "https://tec.openplanner.team/stops/LSemc--3"], ["https://tec.openplanner.team/stops/N211afa", "https://tec.openplanner.team/stops/N211bba"], ["https://tec.openplanner.team/stops/H3bi105d", "https://tec.openplanner.team/stops/H3bi113b"], ["https://tec.openplanner.team/stops/LrTbahn2", "https://tec.openplanner.team/stops/LrTpost2"], ["https://tec.openplanner.team/stops/Cmgpthi2", "https://tec.openplanner.team/stops/Csecroi2"], ["https://tec.openplanner.team/stops/LWM759-1", "https://tec.openplanner.team/stops/LWMchpl1"], ["https://tec.openplanner.team/stops/H2pe159a", "https://tec.openplanner.team/stops/H2pe160a"], ["https://tec.openplanner.team/stops/X654ajb", "https://tec.openplanner.team/stops/X670arb"], ["https://tec.openplanner.team/stops/LClberw1", "https://tec.openplanner.team/stops/LClflor1"], ["https://tec.openplanner.team/stops/LROgeuz2", "https://tec.openplanner.team/stops/LROmons2"], ["https://tec.openplanner.team/stops/N539acb", "https://tec.openplanner.team/stops/N542akb"], ["https://tec.openplanner.team/stops/H4fa126b", "https://tec.openplanner.team/stops/H4fa128a"], ["https://tec.openplanner.team/stops/H1th183b", "https://tec.openplanner.team/stops/H3so164a"], ["https://tec.openplanner.team/stops/Bcsegal1", "https://tec.openplanner.team/stops/Bcsegal2"], ["https://tec.openplanner.team/stops/LaUkirc*", "https://tec.openplanner.team/stops/LlOpfar1"], ["https://tec.openplanner.team/stops/H4ce102a", "https://tec.openplanner.team/stops/H4ce105a"], ["https://tec.openplanner.team/stops/LlgLAMB1", "https://tec.openplanner.team/stops/LlgLAMB7"], ["https://tec.openplanner.team/stops/Bgntalt4", "https://tec.openplanner.team/stops/Bgnteco1"], ["https://tec.openplanner.team/stops/X660acb", "https://tec.openplanner.team/stops/X672aca"], ["https://tec.openplanner.team/stops/LDLbaye1", "https://tec.openplanner.team/stops/LLNbeau2"], ["https://tec.openplanner.team/stops/Balssvi1", "https://tec.openplanner.team/stops/Balswin2"], ["https://tec.openplanner.team/stops/H1al105b", "https://tec.openplanner.team/stops/H1al108b"], ["https://tec.openplanner.team/stops/X604aeb", "https://tec.openplanner.team/stops/X604afd"], ["https://tec.openplanner.team/stops/Bobacou2", "https://tec.openplanner.team/stops/Cobcent1"], ["https://tec.openplanner.team/stops/X662aia", "https://tec.openplanner.team/stops/X662aoa"], ["https://tec.openplanner.team/stops/LSWeg--3", "https://tec.openplanner.team/stops/LSWscie1"], ["https://tec.openplanner.team/stops/H4br107a", "https://tec.openplanner.team/stops/H4br111a"], ["https://tec.openplanner.team/stops/Llgchan1", "https://tec.openplanner.team/stops/Llgchan2"], ["https://tec.openplanner.team/stops/X999aea", "https://tec.openplanner.team/stops/X999aeb"], ["https://tec.openplanner.team/stops/LAVpequ2", "https://tec.openplanner.team/stops/LVHbrai1"], ["https://tec.openplanner.team/stops/Cjucouc2", "https://tec.openplanner.team/stops/Cjulucq1"], ["https://tec.openplanner.team/stops/Bpermon4", "https://tec.openplanner.team/stops/Bperqui2"], ["https://tec.openplanner.team/stops/LAYsupe1", "https://tec.openplanner.team/stops/LREchal1"], ["https://tec.openplanner.team/stops/Bblacar1", "https://tec.openplanner.team/stops/Bblapra1"], ["https://tec.openplanner.team/stops/H1fr129a", "https://tec.openplanner.team/stops/H1fr129b"], ["https://tec.openplanner.team/stops/Ljuauto1", "https://tec.openplanner.team/stops/Ljuauto2"], ["https://tec.openplanner.team/stops/Bhptcha2", "https://tec.openplanner.team/stops/Broncli2"], ["https://tec.openplanner.team/stops/X359adb", "https://tec.openplanner.team/stops/X359aea"], ["https://tec.openplanner.team/stops/Bkrabhu2", "https://tec.openplanner.team/stops/Bovejme1"], ["https://tec.openplanner.team/stops/LCTcret1", "https://tec.openplanner.team/stops/LXocomb2"], ["https://tec.openplanner.team/stops/H1hn210a", "https://tec.openplanner.team/stops/H1ms925a"], ["https://tec.openplanner.team/stops/Barqres2", "https://tec.openplanner.team/stops/Bptrgri2"], ["https://tec.openplanner.team/stops/LGeduc-2", "https://tec.openplanner.team/stops/LGegrun2"], ["https://tec.openplanner.team/stops/N501jla", "https://tec.openplanner.team/stops/N501jma"], ["https://tec.openplanner.team/stops/N531acb", "https://tec.openplanner.team/stops/N531ahb"], ["https://tec.openplanner.team/stops/LhIkirc*", "https://tec.openplanner.team/stops/X792abb"], ["https://tec.openplanner.team/stops/H3bi106a", "https://tec.openplanner.team/stops/H3bi119a"], ["https://tec.openplanner.team/stops/LHApthe1", "https://tec.openplanner.team/stops/LHAstal1"], ["https://tec.openplanner.team/stops/Bhanath1", "https://tec.openplanner.team/stops/LHNhv--2"], ["https://tec.openplanner.team/stops/H4mo164a", "https://tec.openplanner.team/stops/H4mo171a"], ["https://tec.openplanner.team/stops/LFUchpl2", "https://tec.openplanner.team/stops/LFUfleu2"], ["https://tec.openplanner.team/stops/Cmobeau1", "https://tec.openplanner.team/stops/Cmovies1"], ["https://tec.openplanner.team/stops/LBNgarn1", "https://tec.openplanner.team/stops/LeUauto2"], ["https://tec.openplanner.team/stops/X661aia", "https://tec.openplanner.team/stops/X661ata"], ["https://tec.openplanner.team/stops/Cvvmonu1", "https://tec.openplanner.team/stops/Cvvpotv2"], ["https://tec.openplanner.team/stops/X634aja", "https://tec.openplanner.team/stops/X634ajb"], ["https://tec.openplanner.team/stops/X618adb", "https://tec.openplanner.team/stops/X618aeb"], ["https://tec.openplanner.team/stops/H1ms261b", "https://tec.openplanner.team/stops/H1ob361b"], ["https://tec.openplanner.team/stops/Bincbbo2", "https://tec.openplanner.team/stops/Bincbbo4"], ["https://tec.openplanner.team/stops/N230alb", "https://tec.openplanner.team/stops/N549acb"], ["https://tec.openplanner.team/stops/LCxfawe2", "https://tec.openplanner.team/stops/LCxhall2"], ["https://tec.openplanner.team/stops/X359aha", "https://tec.openplanner.team/stops/X359aka"], ["https://tec.openplanner.team/stops/H5qu141b", "https://tec.openplanner.team/stops/H5qu152a"], ["https://tec.openplanner.team/stops/Llgmair1", "https://tec.openplanner.team/stops/Llgthie1"], ["https://tec.openplanner.team/stops/Bwspjon1", "https://tec.openplanner.team/stops/Bwspjon2"], ["https://tec.openplanner.team/stops/X639aca", "https://tec.openplanner.team/stops/X639acb"], ["https://tec.openplanner.team/stops/H4fr141a", "https://tec.openplanner.team/stops/H4fr141b"], ["https://tec.openplanner.team/stops/Cvtegli2", "https://tec.openplanner.team/stops/Cvtgsar2"], ["https://tec.openplanner.team/stops/X833aaa", "https://tec.openplanner.team/stops/X833abb"], ["https://tec.openplanner.team/stops/Bclgfva2", "https://tec.openplanner.team/stops/Bgisman1"], ["https://tec.openplanner.team/stops/LVLgrum1", "https://tec.openplanner.team/stops/LVLmabi1"], ["https://tec.openplanner.team/stops/LHSvina1", "https://tec.openplanner.team/stops/LHSvina2"], ["https://tec.openplanner.team/stops/X824aaa", "https://tec.openplanner.team/stops/X825aga"], ["https://tec.openplanner.team/stops/Bnivall1", "https://tec.openplanner.team/stops/Bniveco1"], ["https://tec.openplanner.team/stops/LsVfrde1", "https://tec.openplanner.team/stops/LsVviel2"], ["https://tec.openplanner.team/stops/X991aab", "https://tec.openplanner.team/stops/X991aca"], ["https://tec.openplanner.team/stops/N211awa", "https://tec.openplanner.team/stops/N211awb"], ["https://tec.openplanner.team/stops/LSMpoin2", "https://tec.openplanner.team/stops/LSMtarg2"], ["https://tec.openplanner.team/stops/LTrmort1", "https://tec.openplanner.team/stops/LTrrich2"], ["https://tec.openplanner.team/stops/Bgemgjo1", "https://tec.openplanner.team/stops/N522bvf"], ["https://tec.openplanner.team/stops/Llgherm1", "https://tec.openplanner.team/stops/Llgherm2"], ["https://tec.openplanner.team/stops/Bvirbru1", "https://tec.openplanner.team/stops/Bvirpos1"], ["https://tec.openplanner.team/stops/X654aba", "https://tec.openplanner.team/stops/X654adb"], ["https://tec.openplanner.team/stops/H1bo101b", "https://tec.openplanner.team/stops/H1bo110a"], ["https://tec.openplanner.team/stops/X986ala", "https://tec.openplanner.team/stops/X986alb"], ["https://tec.openplanner.team/stops/N894aea", "https://tec.openplanner.team/stops/X892aia"], ["https://tec.openplanner.team/stops/Bbxlner1", "https://tec.openplanner.team/stops/Bettgle1"], ["https://tec.openplanner.team/stops/H1ca102a", "https://tec.openplanner.team/stops/H3so160a"], ["https://tec.openplanner.team/stops/LLUalou2", "https://tec.openplanner.team/stops/LLUvent2"], ["https://tec.openplanner.team/stops/N535acd", "https://tec.openplanner.team/stops/N535apa"], ["https://tec.openplanner.team/stops/Cmeptmi2", "https://tec.openplanner.team/stops/Cmestas2"], ["https://tec.openplanner.team/stops/LBachpl2", "https://tec.openplanner.team/stops/LBaeg--1"], ["https://tec.openplanner.team/stops/LVLmabi1", "https://tec.openplanner.team/stops/LVLmabi2"], ["https://tec.openplanner.team/stops/H1ho135b", "https://tec.openplanner.team/stops/H1ho141a"], ["https://tec.openplanner.team/stops/LSZgare2", "https://tec.openplanner.team/stops/LSZroqu2"], ["https://tec.openplanner.team/stops/H1br129a", "https://tec.openplanner.team/stops/H3bo101a"], ["https://tec.openplanner.team/stops/LFalieg2", "https://tec.openplanner.team/stops/LFarhuy2"], ["https://tec.openplanner.team/stops/X652aha", "https://tec.openplanner.team/stops/X669abc"], ["https://tec.openplanner.team/stops/N540ajb", "https://tec.openplanner.team/stops/N540alb"], ["https://tec.openplanner.team/stops/Cmybefe1", "https://tec.openplanner.team/stops/Cmybefe2"], ["https://tec.openplanner.team/stops/H4ff121b", "https://tec.openplanner.team/stops/H4mb138b"], ["https://tec.openplanner.team/stops/NL77ana", "https://tec.openplanner.team/stops/NL77anb"], ["https://tec.openplanner.team/stops/Cml3fon2", "https://tec.openplanner.team/stops/Cmlhubi1"], ["https://tec.openplanner.team/stops/Bllngar2", "https://tec.openplanner.team/stops/Bllngar3"], ["https://tec.openplanner.team/stops/Clvorle1", "https://tec.openplanner.team/stops/Cnadrev2"], ["https://tec.openplanner.team/stops/H4an105a", "https://tec.openplanner.team/stops/H4an105b"], ["https://tec.openplanner.team/stops/LArmeni1", "https://tec.openplanner.team/stops/X548afa"], ["https://tec.openplanner.team/stops/Lsmdepo1", "https://tec.openplanner.team/stops/Lsmeg--1"], ["https://tec.openplanner.team/stops/H4os220b", "https://tec.openplanner.team/stops/H4os223a"], ["https://tec.openplanner.team/stops/Cjojonc2", "https://tec.openplanner.team/stops/NC24aib"], ["https://tec.openplanner.team/stops/LBRgend1", "https://tec.openplanner.team/stops/LLTeg--2"], ["https://tec.openplanner.team/stops/H1so143b", "https://tec.openplanner.team/stops/H1so145a"], ["https://tec.openplanner.team/stops/LBgbaga2", "https://tec.openplanner.team/stops/LGmloti2"], ["https://tec.openplanner.team/stops/X547aja", "https://tec.openplanner.team/stops/X547ana"], ["https://tec.openplanner.team/stops/Bnetegl1", "https://tec.openplanner.team/stops/Bnetegl3"], ["https://tec.openplanner.team/stops/Ctabaty3", "https://tec.openplanner.team/stops/N543cfa"], ["https://tec.openplanner.team/stops/NL74aaa", "https://tec.openplanner.team/stops/NL74aab"], ["https://tec.openplanner.team/stops/Lhr4ave1", "https://tec.openplanner.team/stops/LOUsorb2"], ["https://tec.openplanner.team/stops/H4hx110a", "https://tec.openplanner.team/stops/H4hx110b"], ["https://tec.openplanner.team/stops/LHUbatt1", "https://tec.openplanner.team/stops/LHUneuv2"], ["https://tec.openplanner.team/stops/N513agd", "https://tec.openplanner.team/stops/N513bbd"], ["https://tec.openplanner.team/stops/LAyabri1", "https://tec.openplanner.team/stops/LAyabri2"], ["https://tec.openplanner.team/stops/Bflcneu1", "https://tec.openplanner.team/stops/N515afb"], ["https://tec.openplanner.team/stops/LhOholz1", "https://tec.openplanner.team/stops/LhUkape1"], ["https://tec.openplanner.team/stops/Ccuplai1", "https://tec.openplanner.team/stops/Ccutail1"], ["https://tec.openplanner.team/stops/Blasbpr2", "https://tec.openplanner.team/stops/Blasclo2"], ["https://tec.openplanner.team/stops/Lvieg--1", "https://tec.openplanner.team/stops/Lvitomb1"], ["https://tec.openplanner.team/stops/X812aka", "https://tec.openplanner.team/stops/X812ama"], ["https://tec.openplanner.team/stops/Bhptcha1", "https://tec.openplanner.team/stops/Broncli2"], ["https://tec.openplanner.team/stops/Llgplop1", "https://tec.openplanner.team/stops/Lvtfrai2"], ["https://tec.openplanner.team/stops/H4ir164b", "https://tec.openplanner.team/stops/H4og213b"], ["https://tec.openplanner.team/stops/X739ala", "https://tec.openplanner.team/stops/X773aab"], ["https://tec.openplanner.team/stops/H4ka181a", "https://tec.openplanner.team/stops/H4ka192b"], ["https://tec.openplanner.team/stops/LHXn47-3", "https://tec.openplanner.team/stops/LSMcles1"], ["https://tec.openplanner.team/stops/H1cd112b", "https://tec.openplanner.team/stops/H1to152a"], ["https://tec.openplanner.team/stops/N519agb", "https://tec.openplanner.team/stops/N519ahb"], ["https://tec.openplanner.team/stops/LeUjuge1", "https://tec.openplanner.team/stops/LeUjuge2"], ["https://tec.openplanner.team/stops/H4fr142b", "https://tec.openplanner.team/stops/H4ka392a"], ["https://tec.openplanner.team/stops/Cchdigu2", "https://tec.openplanner.team/stops/Cchvil1"], ["https://tec.openplanner.team/stops/H4ka178a", "https://tec.openplanner.team/stops/H4mt214a"], ["https://tec.openplanner.team/stops/H4ss154b", "https://tec.openplanner.team/stops/H4ss155a"], ["https://tec.openplanner.team/stops/Bjodcad1", "https://tec.openplanner.team/stops/Bjodgar1"], ["https://tec.openplanner.team/stops/Lfhhaso2", "https://tec.openplanner.team/stops/Lpoprie2"], ["https://tec.openplanner.team/stops/Bbauham2", "https://tec.openplanner.team/stops/Bnivfdu1"], ["https://tec.openplanner.team/stops/Bviravi1", "https://tec.openplanner.team/stops/Bvircen1"], ["https://tec.openplanner.team/stops/N204aab", "https://tec.openplanner.team/stops/N205acb"], ["https://tec.openplanner.team/stops/H4to134b", "https://tec.openplanner.team/stops/H4to139c"], ["https://tec.openplanner.team/stops/X610aab", "https://tec.openplanner.team/stops/X610aib"], ["https://tec.openplanner.team/stops/H2me114b", "https://tec.openplanner.team/stops/H2me115b"], ["https://tec.openplanner.team/stops/Lbococh2", "https://tec.openplanner.team/stops/Lboeg--2"], ["https://tec.openplanner.team/stops/H2ch106b", "https://tec.openplanner.team/stops/H2go118b"], ["https://tec.openplanner.team/stops/X636aaa", "https://tec.openplanner.team/stops/X636aba"], ["https://tec.openplanner.team/stops/X901aba", "https://tec.openplanner.team/stops/X901bka"], ["https://tec.openplanner.team/stops/Buccrac1", "https://tec.openplanner.team/stops/Buccvoi3"], ["https://tec.openplanner.team/stops/NL57add", "https://tec.openplanner.team/stops/NL57ajb"], ["https://tec.openplanner.team/stops/Cnaferr1", "https://tec.openplanner.team/stops/Cnanoir2"], ["https://tec.openplanner.team/stops/X639aia", "https://tec.openplanner.team/stops/X639aub"], ["https://tec.openplanner.team/stops/LwAprei1", "https://tec.openplanner.team/stops/LwAprei2"], ["https://tec.openplanner.team/stops/N539ata", "https://tec.openplanner.team/stops/N539atb"], ["https://tec.openplanner.team/stops/Chhplbe1", "https://tec.openplanner.team/stops/Chhplbe2"], ["https://tec.openplanner.team/stops/Bbghcar1", "https://tec.openplanner.team/stops/Bbghgli1"], ["https://tec.openplanner.team/stops/LMYmont1", "https://tec.openplanner.team/stops/LMYmont2"], ["https://tec.openplanner.team/stops/LSPec--1", "https://tec.openplanner.team/stops/LSPxhou2"], ["https://tec.openplanner.team/stops/LTyhapp1", "https://tec.openplanner.team/stops/LTyhapp2"], ["https://tec.openplanner.team/stops/X747aea", "https://tec.openplanner.team/stops/X747akb"], ["https://tec.openplanner.team/stops/H4ta122b", "https://tec.openplanner.team/stops/H4ta123b"], ["https://tec.openplanner.team/stops/X670aka", "https://tec.openplanner.team/stops/X670alb"], ["https://tec.openplanner.team/stops/Cjuhame3", "https://tec.openplanner.team/stops/Cjulamb2"], ["https://tec.openplanner.team/stops/X764aaa", "https://tec.openplanner.team/stops/X764aab"], ["https://tec.openplanner.team/stops/Cgpchgo1", "https://tec.openplanner.team/stops/Cgpchgo2"], ["https://tec.openplanner.team/stops/LESamos2", "https://tec.openplanner.team/stops/LESathe1"], ["https://tec.openplanner.team/stops/X952aba", "https://tec.openplanner.team/stops/X952aka"], ["https://tec.openplanner.team/stops/Ljucrah1", "https://tec.openplanner.team/stops/Ljuetie1"], ["https://tec.openplanner.team/stops/Bjodrrg1", "https://tec.openplanner.team/stops/Bzluvil2"], ["https://tec.openplanner.team/stops/Csiegli2", "https://tec.openplanner.team/stops/N106aib"], ["https://tec.openplanner.team/stops/H4do108b", "https://tec.openplanner.team/stops/H4eh100a"], ["https://tec.openplanner.team/stops/H1qp141a", "https://tec.openplanner.team/stops/H1qp141b"], ["https://tec.openplanner.team/stops/N537aga", "https://tec.openplanner.team/stops/N537agb"], ["https://tec.openplanner.team/stops/X659ara", "https://tec.openplanner.team/stops/X659awa"], ["https://tec.openplanner.team/stops/X640ada", "https://tec.openplanner.team/stops/X640aea"], ["https://tec.openplanner.team/stops/Cmmplac3", "https://tec.openplanner.team/stops/Cmmplac4"], ["https://tec.openplanner.team/stops/X983agb", "https://tec.openplanner.team/stops/X986aia"], ["https://tec.openplanner.team/stops/X919afb", "https://tec.openplanner.team/stops/X921adb"], ["https://tec.openplanner.team/stops/X802aja", "https://tec.openplanner.team/stops/X802akb"], ["https://tec.openplanner.team/stops/Lmlec--1", "https://tec.openplanner.team/stops/Lmlec--4"], ["https://tec.openplanner.team/stops/Bhptegl2", "https://tec.openplanner.team/stops/H2ec102a"], ["https://tec.openplanner.team/stops/X901asb", "https://tec.openplanner.team/stops/X901bcb"], ["https://tec.openplanner.team/stops/NR21aia", "https://tec.openplanner.team/stops/NR38aba"], ["https://tec.openplanner.team/stops/LHOgymn1", "https://tec.openplanner.team/stops/LHOmc--2"], ["https://tec.openplanner.team/stops/LVBbvin", "https://tec.openplanner.team/stops/LWDcime1"], ["https://tec.openplanner.team/stops/N511afa", "https://tec.openplanner.team/stops/N511afb"], ["https://tec.openplanner.team/stops/LMHec--1", "https://tec.openplanner.team/stops/LMHeg--2"], ["https://tec.openplanner.team/stops/Bwavgar5", "https://tec.openplanner.team/stops/Bwavmes2"], ["https://tec.openplanner.team/stops/X657aba", "https://tec.openplanner.team/stops/X657ama"], ["https://tec.openplanner.team/stops/X823abb", "https://tec.openplanner.team/stops/X823acb"], ["https://tec.openplanner.team/stops/H2ha129c", "https://tec.openplanner.team/stops/H2ha141a"], ["https://tec.openplanner.team/stops/Lgdec--2", "https://tec.openplanner.team/stops/Lgdhura1"], ["https://tec.openplanner.team/stops/Bmalcar2", "https://tec.openplanner.team/stops/Bsrbtil2"], ["https://tec.openplanner.team/stops/H4bu108a", "https://tec.openplanner.team/stops/H4cw107a"], ["https://tec.openplanner.team/stops/Cvlcalv1", "https://tec.openplanner.team/stops/NH01aha"], ["https://tec.openplanner.team/stops/Crehout1", "https://tec.openplanner.team/stops/Creshau1"], ["https://tec.openplanner.team/stops/LAweg--2", "https://tec.openplanner.team/stops/LHrchat1"], ["https://tec.openplanner.team/stops/LSNnoul1", "https://tec.openplanner.team/stops/LSNnoul2"], ["https://tec.openplanner.team/stops/LaSneuh2", "https://tec.openplanner.team/stops/LhGlang2"], ["https://tec.openplanner.team/stops/H1ch141a", "https://tec.openplanner.team/stops/H4ld123a"], ["https://tec.openplanner.team/stops/LwR140-1", "https://tec.openplanner.team/stops/LwR140-2"], ["https://tec.openplanner.team/stops/LAIchpl2", "https://tec.openplanner.team/stops/LCschen2"], ["https://tec.openplanner.team/stops/X685aia", "https://tec.openplanner.team/stops/X685aib"], ["https://tec.openplanner.team/stops/Llgjenn1", "https://tec.openplanner.team/stops/Llgjenn2"], ["https://tec.openplanner.team/stops/H1vt194a", "https://tec.openplanner.team/stops/H1vt194b"], ["https://tec.openplanner.team/stops/H1ni318a", "https://tec.openplanner.team/stops/H1ni318b"], ["https://tec.openplanner.team/stops/Lstamph1", "https://tec.openplanner.team/stops/Lstbota2"], ["https://tec.openplanner.team/stops/Lmomarr1", "https://tec.openplanner.team/stops/Lmomarr2"], ["https://tec.openplanner.team/stops/X917aca", "https://tec.openplanner.team/stops/X917ada"], ["https://tec.openplanner.team/stops/X870abb", "https://tec.openplanner.team/stops/X870ada"], ["https://tec.openplanner.team/stops/LRObruy2", "https://tec.openplanner.team/stops/LRObruy4"], ["https://tec.openplanner.team/stops/N236aba", "https://tec.openplanner.team/stops/N254aha"], ["https://tec.openplanner.team/stops/X721aob", "https://tec.openplanner.team/stops/X721apb"], ["https://tec.openplanner.team/stops/H1eo106a", "https://tec.openplanner.team/stops/H1eo106b"], ["https://tec.openplanner.team/stops/Lprorph2", "https://tec.openplanner.team/stops/Lprperr1"], ["https://tec.openplanner.team/stops/H4ta125a", "https://tec.openplanner.team/stops/H4ta125b"], ["https://tec.openplanner.team/stops/Caibras1", "https://tec.openplanner.team/stops/Caimeno3"], ["https://tec.openplanner.team/stops/H4mo193a", "https://tec.openplanner.team/stops/H4mo193b"], ["https://tec.openplanner.team/stops/H4ka188a", "https://tec.openplanner.team/stops/H4ka421a"], ["https://tec.openplanner.team/stops/Bsgicfo1", "https://tec.openplanner.team/stops/Bsgipha3"], ["https://tec.openplanner.team/stops/H1ne147a", "https://tec.openplanner.team/stops/H1ne147b"], ["https://tec.openplanner.team/stops/Brebchb1", "https://tec.openplanner.team/stops/H3br103b"], ["https://tec.openplanner.team/stops/H4ru242b", "https://tec.openplanner.team/stops/H4ru243a"], ["https://tec.openplanner.team/stops/N212aca", "https://tec.openplanner.team/stops/N212aeb"], ["https://tec.openplanner.team/stops/H4bo114b", "https://tec.openplanner.team/stops/H4bo182b"], ["https://tec.openplanner.team/stops/X882ahb", "https://tec.openplanner.team/stops/X882ala"], ["https://tec.openplanner.team/stops/H4mo207b", "https://tec.openplanner.team/stops/H4mo208a"], ["https://tec.openplanner.team/stops/LOccarr1", "https://tec.openplanner.team/stops/LTestat2"], ["https://tec.openplanner.team/stops/H1ms252c", "https://tec.openplanner.team/stops/H1ms294a"], ["https://tec.openplanner.team/stops/LsVrodt1", "https://tec.openplanner.team/stops/LsVviel1"], ["https://tec.openplanner.team/stops/Lwakipe1", "https://tec.openplanner.team/stops/Lwapont1"], ["https://tec.openplanner.team/stops/LPohoeg1", "https://tec.openplanner.team/stops/LSPbalm2"], ["https://tec.openplanner.team/stops/N501dpb", "https://tec.openplanner.team/stops/N501klb"], ["https://tec.openplanner.team/stops/Bdvmccu1", "https://tec.openplanner.team/stops/Bdvmccu2"], ["https://tec.openplanner.team/stops/LLRbleh1", "https://tec.openplanner.team/stops/LPclaro1"], ["https://tec.openplanner.team/stops/H5st161b", "https://tec.openplanner.team/stops/H5st164b"], ["https://tec.openplanner.team/stops/H4hq132b", "https://tec.openplanner.team/stops/H4ms145a"], ["https://tec.openplanner.team/stops/LHNcreh1", "https://tec.openplanner.team/stops/LHNvill1"], ["https://tec.openplanner.team/stops/LBAbooz2", "https://tec.openplanner.team/stops/LHOgymn1"], ["https://tec.openplanner.team/stops/H1cu124b", "https://tec.openplanner.team/stops/H1cu129a"], ["https://tec.openplanner.team/stops/X651aea", "https://tec.openplanner.team/stops/X651aeb"], ["https://tec.openplanner.team/stops/Cmlfstt2", "https://tec.openplanner.team/stops/Cmlvitf1"], ["https://tec.openplanner.team/stops/LSzeg--2", "https://tec.openplanner.team/stops/N506bxa"], ["https://tec.openplanner.team/stops/Bbbksth1", "https://tec.openplanner.team/stops/Bhmmvdu1"], ["https://tec.openplanner.team/stops/Bcbqcim1", "https://tec.openplanner.team/stops/Btubcal1"], ["https://tec.openplanner.team/stops/Ljehotv1", "https://tec.openplanner.team/stops/Ltihala1"], ["https://tec.openplanner.team/stops/Lmnjeha2", "https://tec.openplanner.team/stops/Lmnsech1"], ["https://tec.openplanner.team/stops/LAUbirv2", "https://tec.openplanner.team/stops/LHCcroy2"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Lmolagu1"], ["https://tec.openplanner.team/stops/Bwavcen1", "https://tec.openplanner.team/stops/Bwaveur2"], ["https://tec.openplanner.team/stops/LSIgera2", "https://tec.openplanner.team/stops/LSIters2"], ["https://tec.openplanner.team/stops/H1er106b", "https://tec.openplanner.team/stops/H1gg117b"], ["https://tec.openplanner.team/stops/N565abb", "https://tec.openplanner.team/stops/N565acb"], ["https://tec.openplanner.team/stops/NR10aaa", "https://tec.openplanner.team/stops/NR21aeb"], ["https://tec.openplanner.team/stops/H4pi132a", "https://tec.openplanner.team/stops/H4pi132b"], ["https://tec.openplanner.team/stops/N513alb", "https://tec.openplanner.team/stops/N513bbd"], ["https://tec.openplanner.team/stops/X882aka", "https://tec.openplanner.team/stops/X882akb"], ["https://tec.openplanner.team/stops/X660ahb", "https://tec.openplanner.team/stops/X660ajb"], ["https://tec.openplanner.team/stops/H1bo106b", "https://tec.openplanner.team/stops/H1bo106c"], ["https://tec.openplanner.team/stops/N544acb", "https://tec.openplanner.team/stops/N545aab"], ["https://tec.openplanner.team/stops/Lhuferm1", "https://tec.openplanner.team/stops/LTHroch2"], ["https://tec.openplanner.team/stops/H5el112b", "https://tec.openplanner.team/stops/H5el114b"], ["https://tec.openplanner.team/stops/N568adb", "https://tec.openplanner.team/stops/N568aea"], ["https://tec.openplanner.team/stops/LrAdrie3", "https://tec.openplanner.team/stops/LrApont1"], ["https://tec.openplanner.team/stops/Laltrav1", "https://tec.openplanner.team/stops/Lanschu2"], ["https://tec.openplanner.team/stops/X624aaa", "https://tec.openplanner.team/stops/X624abb"], ["https://tec.openplanner.team/stops/LTHchiv2", "https://tec.openplanner.team/stops/LTHturo1"], ["https://tec.openplanner.team/stops/Bfelbri1", "https://tec.openplanner.team/stops/Bfelbri2"], ["https://tec.openplanner.team/stops/Brsrcha2", "https://tec.openplanner.team/stops/Brsrpar2"], ["https://tec.openplanner.team/stops/Llgguer1", "https://tec.openplanner.team/stops/Llghopo2"], ["https://tec.openplanner.team/stops/N506bad", "https://tec.openplanner.team/stops/N506bma"], ["https://tec.openplanner.team/stops/X923aga", "https://tec.openplanner.team/stops/X923aia"], ["https://tec.openplanner.team/stops/LrUgeme2", "https://tec.openplanner.team/stops/LrUkult2"], ["https://tec.openplanner.team/stops/N127adb", "https://tec.openplanner.team/stops/N127bba"], ["https://tec.openplanner.team/stops/Cthnord1", "https://tec.openplanner.team/stops/Cthpibl1"], ["https://tec.openplanner.team/stops/H4be149a", "https://tec.openplanner.team/stops/H4be149b"], ["https://tec.openplanner.team/stops/X650ama", "https://tec.openplanner.team/stops/X650ana"], ["https://tec.openplanner.team/stops/Bgnvbsi1", "https://tec.openplanner.team/stops/Bgnvbsi2"], ["https://tec.openplanner.team/stops/X911aib", "https://tec.openplanner.team/stops/X911ajb"], ["https://tec.openplanner.team/stops/Cmlcaya1", "https://tec.openplanner.team/stops/Cmlener1"], ["https://tec.openplanner.team/stops/X638aha", "https://tec.openplanner.team/stops/X638aia"], ["https://tec.openplanner.team/stops/Lceconf2", "https://tec.openplanner.team/stops/Lgrjobe2"], ["https://tec.openplanner.team/stops/H1hh115a", "https://tec.openplanner.team/stops/H1hh115b"], ["https://tec.openplanner.team/stops/H5ma186a", "https://tec.openplanner.team/stops/H5ma186b"], ["https://tec.openplanner.team/stops/Bolgegl1", "https://tec.openplanner.team/stops/Bolgegl2"], ["https://tec.openplanner.team/stops/LlZbell2", "https://tec.openplanner.team/stops/LlZkirc2"], ["https://tec.openplanner.team/stops/H1je213b", "https://tec.openplanner.team/stops/H1je220c"], ["https://tec.openplanner.team/stops/X724ada", "https://tec.openplanner.team/stops/X724aeb"], ["https://tec.openplanner.team/stops/Baudsta2", "https://tec.openplanner.team/stops/Bkrapri2"], ["https://tec.openplanner.team/stops/Ljumesa1", "https://tec.openplanner.team/stops/Lsweg--1"], ["https://tec.openplanner.team/stops/H1mk108b", "https://tec.openplanner.team/stops/H1mk112a"], ["https://tec.openplanner.team/stops/LBOholt2", "https://tec.openplanner.team/stops/LMucarr1"], ["https://tec.openplanner.team/stops/LCPconf1", "https://tec.openplanner.team/stops/LCPecli2"], ["https://tec.openplanner.team/stops/X576ada", "https://tec.openplanner.team/stops/X576ahb"], ["https://tec.openplanner.team/stops/H1te173b", "https://tec.openplanner.team/stops/H1te190b"], ["https://tec.openplanner.team/stops/X826aaa", "https://tec.openplanner.team/stops/X860aba"], ["https://tec.openplanner.team/stops/X512aja", "https://tec.openplanner.team/stops/X595aaa"], ["https://tec.openplanner.team/stops/LaMschr2", "https://tec.openplanner.team/stops/LdEkreu2"], ["https://tec.openplanner.team/stops/X614aeb", "https://tec.openplanner.team/stops/X614ayb"], ["https://tec.openplanner.team/stops/X715acb", "https://tec.openplanner.team/stops/X715apb"], ["https://tec.openplanner.team/stops/N532aab", "https://tec.openplanner.team/stops/N532ana"], ["https://tec.openplanner.team/stops/N509ada", "https://tec.openplanner.team/stops/N511aqa"], ["https://tec.openplanner.team/stops/LWAwegg1", "https://tec.openplanner.team/stops/LWAwegg2"], ["https://tec.openplanner.team/stops/Bptecar1", "https://tec.openplanner.team/stops/Brebrog2"], ["https://tec.openplanner.team/stops/LbUmors2", "https://tec.openplanner.team/stops/LhDkreu4"], ["https://tec.openplanner.team/stops/N554afb", "https://tec.openplanner.team/stops/N554aha"], ["https://tec.openplanner.team/stops/LSuusin1", "https://tec.openplanner.team/stops/Lvepoud1"], ["https://tec.openplanner.team/stops/LHEches1", "https://tec.openplanner.team/stops/LHEches3"], ["https://tec.openplanner.team/stops/X744acb", "https://tec.openplanner.team/stops/X744afa"], ["https://tec.openplanner.team/stops/Cfaterg3", "https://tec.openplanner.team/stops/Crsmonu2"], ["https://tec.openplanner.team/stops/LCRvert2", "https://tec.openplanner.team/stops/LOdcris2"], ["https://tec.openplanner.team/stops/LWAlong1", "https://tec.openplanner.team/stops/LWAlong3"], ["https://tec.openplanner.team/stops/LhGkirc6", "https://tec.openplanner.team/stops/LhGrote2"], ["https://tec.openplanner.team/stops/X873aba", "https://tec.openplanner.team/stops/X873abb"], ["https://tec.openplanner.team/stops/Cpibois1", "https://tec.openplanner.team/stops/Cpibois2"], ["https://tec.openplanner.team/stops/Bnilpie1", "https://tec.openplanner.team/stops/Bwlhpmt3"], ["https://tec.openplanner.team/stops/Bcercab1", "https://tec.openplanner.team/stops/Bcerldo1"], ["https://tec.openplanner.team/stops/Llghlau1", "https://tec.openplanner.team/stops/Llglaur1"], ["https://tec.openplanner.team/stops/LTB105-2", "https://tec.openplanner.team/stops/LTBeg--1"], ["https://tec.openplanner.team/stops/LVBdela1", "https://tec.openplanner.team/stops/LVBeg--2"], ["https://tec.openplanner.team/stops/X774adb", "https://tec.openplanner.team/stops/X774add"], ["https://tec.openplanner.team/stops/Csyplac2", "https://tec.openplanner.team/stops/H1mb129a"], ["https://tec.openplanner.team/stops/Bincfer2", "https://tec.openplanner.team/stops/Bopplon1"], ["https://tec.openplanner.team/stops/X607abb", "https://tec.openplanner.team/stops/X607acb"], ["https://tec.openplanner.team/stops/H1bo108a", "https://tec.openplanner.team/stops/H1bo110b"], ["https://tec.openplanner.team/stops/X641afc", "https://tec.openplanner.team/stops/X641afd"], ["https://tec.openplanner.team/stops/H4ef109a", "https://tec.openplanner.team/stops/H4ef138a"], ["https://tec.openplanner.team/stops/LHrbast2", "https://tec.openplanner.team/stops/LHrchez1"], ["https://tec.openplanner.team/stops/H1sy144a", "https://tec.openplanner.team/stops/H1sy147b"], ["https://tec.openplanner.team/stops/LWbcarr1", "https://tec.openplanner.team/stops/X512aab"], ["https://tec.openplanner.team/stops/N501eaa", "https://tec.openplanner.team/stops/N501kqa"], ["https://tec.openplanner.team/stops/N508alb", "https://tec.openplanner.team/stops/N508aoa"], ["https://tec.openplanner.team/stops/Claptcf1", "https://tec.openplanner.team/stops/NC23aca"], ["https://tec.openplanner.team/stops/LnEmett1", "https://tec.openplanner.team/stops/LnEmett2"], ["https://tec.openplanner.team/stops/X818aib", "https://tec.openplanner.team/stops/X818aja"], ["https://tec.openplanner.team/stops/N501fdd", "https://tec.openplanner.team/stops/N501lzb"], ["https://tec.openplanner.team/stops/Blhulil2", "https://tec.openplanner.team/stops/Blhupqu1"], ["https://tec.openplanner.team/stops/N145aka", "https://tec.openplanner.team/stops/N150aka"], ["https://tec.openplanner.team/stops/N531ahb", "https://tec.openplanner.team/stops/N576ajb"], ["https://tec.openplanner.team/stops/H4ar172b", "https://tec.openplanner.team/stops/H4ho121b"], ["https://tec.openplanner.team/stops/N506boa", "https://tec.openplanner.team/stops/N506bod"], ["https://tec.openplanner.team/stops/LVAbloe1", "https://tec.openplanner.team/stops/LVApark1"], ["https://tec.openplanner.team/stops/LNEgaul3", "https://tec.openplanner.team/stops/LNEgaul4"], ["https://tec.openplanner.team/stops/H5bs102a", "https://tec.openplanner.team/stops/H5bs102b"], ["https://tec.openplanner.team/stops/H4ry129a", "https://tec.openplanner.team/stops/H4ry129b"], ["https://tec.openplanner.team/stops/N501crc", "https://tec.openplanner.team/stops/N501cta"], ["https://tec.openplanner.team/stops/Crasabl2", "https://tec.openplanner.team/stops/Crasabl3"], ["https://tec.openplanner.team/stops/Cobcent1", "https://tec.openplanner.team/stops/Cobcent2"], ["https://tec.openplanner.team/stops/X869acb", "https://tec.openplanner.team/stops/X869ada"], ["https://tec.openplanner.team/stops/X675aba", "https://tec.openplanner.team/stops/X817aeb"], ["https://tec.openplanner.team/stops/LFRrohe1", "https://tec.openplanner.team/stops/LFRrohe2"], ["https://tec.openplanner.team/stops/LCEeg--2", "https://tec.openplanner.team/stops/LMEpech2"], ["https://tec.openplanner.team/stops/X396afb", "https://tec.openplanner.team/stops/X917aka"], ["https://tec.openplanner.team/stops/LHhchau1", "https://tec.openplanner.team/stops/LHhmohe1"], ["https://tec.openplanner.team/stops/H2mg137a", "https://tec.openplanner.team/stops/H2mg141a"], ["https://tec.openplanner.team/stops/X662afb", "https://tec.openplanner.team/stops/X662aha"], ["https://tec.openplanner.team/stops/Ctucamb1", "https://tec.openplanner.team/stops/Ctuosso1"], ["https://tec.openplanner.team/stops/N347aca", "https://tec.openplanner.team/stops/X347aaa"], ["https://tec.openplanner.team/stops/X937aca", "https://tec.openplanner.team/stops/X945ada"], ["https://tec.openplanner.team/stops/Bbonbcr1", "https://tec.openplanner.team/stops/Bdvm4ca1"], ["https://tec.openplanner.team/stops/H2an109b", "https://tec.openplanner.team/stops/H2le150b"], ["https://tec.openplanner.team/stops/N149aha", "https://tec.openplanner.team/stops/N154ada"], ["https://tec.openplanner.team/stops/LBzec--2", "https://tec.openplanner.team/stops/LVMborl2"], ["https://tec.openplanner.team/stops/H1mj123a", "https://tec.openplanner.team/stops/H1mj124a"], ["https://tec.openplanner.team/stops/N551anb", "https://tec.openplanner.team/stops/N551aob"], ["https://tec.openplanner.team/stops/H4de113a", "https://tec.openplanner.team/stops/H4de114a"], ["https://tec.openplanner.team/stops/X602ada", "https://tec.openplanner.team/stops/X602aqa"], ["https://tec.openplanner.team/stops/LFlpark*", "https://tec.openplanner.team/stops/LSkkeri1"], ["https://tec.openplanner.team/stops/Lhrabho1", "https://tec.openplanner.team/stops/Lhrabho2"], ["https://tec.openplanner.team/stops/H1as100a", "https://tec.openplanner.team/stops/H1bn113a"], ["https://tec.openplanner.team/stops/Lrcchar2", "https://tec.openplanner.team/stops/Lrccomm1"], ["https://tec.openplanner.team/stops/Llgcrgu2", "https://tec.openplanner.team/stops/Llggram2"], ["https://tec.openplanner.team/stops/Ccpblpo2", "https://tec.openplanner.team/stops/H2ch123b"], ["https://tec.openplanner.team/stops/Bheneco2", "https://tec.openplanner.team/stops/Bhengou2"], ["https://tec.openplanner.team/stops/NH01ana", "https://tec.openplanner.team/stops/NH01aua"], ["https://tec.openplanner.team/stops/Cchcase3", "https://tec.openplanner.team/stops/Cchcase4"], ["https://tec.openplanner.team/stops/Lloauto1", "https://tec.openplanner.team/stops/Llofort2"], ["https://tec.openplanner.team/stops/H1cv102a", "https://tec.openplanner.team/stops/H1ml110a"], ["https://tec.openplanner.team/stops/X986aea", "https://tec.openplanner.team/stops/X986aeb"], ["https://tec.openplanner.team/stops/H1em106b", "https://tec.openplanner.team/stops/H1em107a"], ["https://tec.openplanner.team/stops/X897afb", "https://tec.openplanner.team/stops/X985ada"], ["https://tec.openplanner.team/stops/Bgzddmo2", "https://tec.openplanner.team/stops/Bgzdgli2"], ["https://tec.openplanner.team/stops/H2bh110c", "https://tec.openplanner.team/stops/H2bh120b"], ["https://tec.openplanner.team/stops/Lprferm2", "https://tec.openplanner.team/stops/Lprhodi1"], ["https://tec.openplanner.team/stops/X733aia", "https://tec.openplanner.team/stops/X733alb"], ["https://tec.openplanner.team/stops/H4lz126a", "https://tec.openplanner.team/stops/H4lz158b"], ["https://tec.openplanner.team/stops/N501haa", "https://tec.openplanner.team/stops/N501hxb"], ["https://tec.openplanner.team/stops/X660aaa", "https://tec.openplanner.team/stops/X660aab"], ["https://tec.openplanner.team/stops/H1sb147a", "https://tec.openplanner.team/stops/H1sb147b"], ["https://tec.openplanner.team/stops/LBUrout1", "https://tec.openplanner.team/stops/LBUvall1"], ["https://tec.openplanner.team/stops/H1nm138b", "https://tec.openplanner.team/stops/H1si156a"], ["https://tec.openplanner.team/stops/X601asb", "https://tec.openplanner.team/stops/X601aua"], ["https://tec.openplanner.team/stops/H5rx137a", "https://tec.openplanner.team/stops/H5rx137b"], ["https://tec.openplanner.team/stops/LREgar-1", "https://tec.openplanner.team/stops/LREgare2"], ["https://tec.openplanner.team/stops/N579afa", "https://tec.openplanner.team/stops/N579afb"], ["https://tec.openplanner.team/stops/Cglfrom1", "https://tec.openplanner.team/stops/Cgnpass1"], ["https://tec.openplanner.team/stops/Blimch%C3%A22", "https://tec.openplanner.team/stops/Bottpin2"], ["https://tec.openplanner.team/stops/N874afa", "https://tec.openplanner.team/stops/N874ahb"], ["https://tec.openplanner.team/stops/Blhurcl1", "https://tec.openplanner.team/stops/Bovelge2"], ["https://tec.openplanner.team/stops/Ccyfede1", "https://tec.openplanner.team/stops/Ccymabo1"], ["https://tec.openplanner.team/stops/Lgrclin4", "https://tec.openplanner.team/stops/Lgrwill2"], ["https://tec.openplanner.team/stops/NL80aia", "https://tec.openplanner.team/stops/NL80aib"], ["https://tec.openplanner.team/stops/H2ll172a", "https://tec.openplanner.team/stops/H2ll183a"], ["https://tec.openplanner.team/stops/X950aab", "https://tec.openplanner.team/stops/X950adb"], ["https://tec.openplanner.team/stops/H1mx122b", "https://tec.openplanner.team/stops/H1mx123b"], ["https://tec.openplanner.team/stops/H1le122a", "https://tec.openplanner.team/stops/H1le130b"], ["https://tec.openplanner.team/stops/N232bva", "https://tec.openplanner.team/stops/N260aeb"], ["https://tec.openplanner.team/stops/N232bab", "https://tec.openplanner.team/stops/N232bbb"], ["https://tec.openplanner.team/stops/Llonaes1", "https://tec.openplanner.team/stops/Lloretr1"], ["https://tec.openplanner.team/stops/Lhrbell1", "https://tec.openplanner.team/stops/Lhrtunn1"], ["https://tec.openplanner.team/stops/X955aca", "https://tec.openplanner.team/stops/X955adb"], ["https://tec.openplanner.team/stops/H1gh365a", "https://tec.openplanner.team/stops/H1ms942a"], ["https://tec.openplanner.team/stops/Csdbosq1", "https://tec.openplanner.team/stops/Csdrofr1"], ["https://tec.openplanner.team/stops/Bneeblo2", "https://tec.openplanner.team/stops/Bneesan2"], ["https://tec.openplanner.team/stops/LSBsere4", "https://tec.openplanner.team/stops/LSktinc2"], ["https://tec.openplanner.team/stops/X750ada", "https://tec.openplanner.team/stops/X750afa"], ["https://tec.openplanner.team/stops/N507aab", "https://tec.openplanner.team/stops/NL68aab"], ["https://tec.openplanner.team/stops/N506alb", "https://tec.openplanner.team/stops/N506awa"], ["https://tec.openplanner.team/stops/LHThall3", "https://tec.openplanner.team/stops/LHThall4"], ["https://tec.openplanner.team/stops/LAmvent1", "https://tec.openplanner.team/stops/LAmvent2"], ["https://tec.openplanner.team/stops/Bottath1", "https://tec.openplanner.team/stops/Bottgar4"], ["https://tec.openplanner.team/stops/Bohncha2", "https://tec.openplanner.team/stops/Bohnman2"], ["https://tec.openplanner.team/stops/H1ju120c", "https://tec.openplanner.team/stops/H1ju120d"], ["https://tec.openplanner.team/stops/LMXaven2", "https://tec.openplanner.team/stops/LMXroye2"], ["https://tec.openplanner.team/stops/X808aib", "https://tec.openplanner.team/stops/X808akb"], ["https://tec.openplanner.team/stops/N501gpa", "https://tec.openplanner.team/stops/N501zaa"], ["https://tec.openplanner.team/stops/N347ada", "https://tec.openplanner.team/stops/N347adb"], ["https://tec.openplanner.team/stops/LPAeg--1", "https://tec.openplanner.team/stops/LWidepo2"], ["https://tec.openplanner.team/stops/X634aha", "https://tec.openplanner.team/stops/X634ahb"], ["https://tec.openplanner.team/stops/Bwatric1", "https://tec.openplanner.team/stops/Bwatric2"], ["https://tec.openplanner.team/stops/X634aca", "https://tec.openplanner.team/stops/X634acb"], ["https://tec.openplanner.team/stops/X904aka", "https://tec.openplanner.team/stops/X943aeb"], ["https://tec.openplanner.team/stops/Bcsebea1", "https://tec.openplanner.team/stops/Bottcba1"], ["https://tec.openplanner.team/stops/N578aaa", "https://tec.openplanner.team/stops/N578aab"], ["https://tec.openplanner.team/stops/N222aeb", "https://tec.openplanner.team/stops/X222aza"], ["https://tec.openplanner.team/stops/LBpbruy1", "https://tec.openplanner.team/stops/LBpecco4"], ["https://tec.openplanner.team/stops/H1em107a", "https://tec.openplanner.team/stops/H1em109a"], ["https://tec.openplanner.team/stops/H3br100a", "https://tec.openplanner.team/stops/H3br110b"], ["https://tec.openplanner.team/stops/Cchsud04", "https://tec.openplanner.team/stops/Cmlgoff2"], ["https://tec.openplanner.team/stops/Cjuecha2", "https://tec.openplanner.team/stops/Cjuruni2"], ["https://tec.openplanner.team/stops/Cfrmon3", "https://tec.openplanner.team/stops/Cfrmon4"], ["https://tec.openplanner.team/stops/Bmarfjo1", "https://tec.openplanner.team/stops/Bmarmco1"], ["https://tec.openplanner.team/stops/H4lg104a", "https://tec.openplanner.team/stops/H4ta135a"], ["https://tec.openplanner.team/stops/H1mb130b", "https://tec.openplanner.team/stops/H1mb136b"], ["https://tec.openplanner.team/stops/Clddelh1", "https://tec.openplanner.team/stops/Cldvign2"], ["https://tec.openplanner.team/stops/N503aea", "https://tec.openplanner.team/stops/N503aja"], ["https://tec.openplanner.team/stops/LlOkreu1", "https://tec.openplanner.team/stops/LlOkreu2"], ["https://tec.openplanner.team/stops/Crobass2", "https://tec.openplanner.team/stops/Cromonn2"], ["https://tec.openplanner.team/stops/H2an109a", "https://tec.openplanner.team/stops/H2ml114b"], ["https://tec.openplanner.team/stops/LHAarge1", "https://tec.openplanner.team/stops/LHAarge2"], ["https://tec.openplanner.team/stops/Bbiehev2", "https://tec.openplanner.team/stops/Bboncfv1"], ["https://tec.openplanner.team/stops/LAMfroi2", "https://tec.openplanner.team/stops/LAMweha1"], ["https://tec.openplanner.team/stops/X921aka", "https://tec.openplanner.team/stops/X921akb"], ["https://tec.openplanner.team/stops/Cvtgsar2", "https://tec.openplanner.team/stops/Cvtgsar3"], ["https://tec.openplanner.team/stops/LrEdic11", "https://tec.openplanner.team/stops/LrEviel1"], ["https://tec.openplanner.team/stops/Bwatabs1", "https://tec.openplanner.team/stops/Bwatbca2"], ["https://tec.openplanner.team/stops/H1le120a", "https://tec.openplanner.team/stops/H1le120b"], ["https://tec.openplanner.team/stops/X999ana", "https://tec.openplanner.team/stops/X999anb"], ["https://tec.openplanner.team/stops/H4bv146b", "https://tec.openplanner.team/stops/H5at129b"], ["https://tec.openplanner.team/stops/Cmcbriq3", "https://tec.openplanner.team/stops/Cmcbriq4"], ["https://tec.openplanner.team/stops/LSGhagn1", "https://tec.openplanner.team/stops/LSGhagn2"], ["https://tec.openplanner.team/stops/H4ch113a", "https://tec.openplanner.team/stops/H4vx364c"], ["https://tec.openplanner.team/stops/NC24aib", "https://tec.openplanner.team/stops/NC24ajb"], ["https://tec.openplanner.team/stops/H2bh103b", "https://tec.openplanner.team/stops/H2bh103d"], ["https://tec.openplanner.team/stops/H2go114d", "https://tec.openplanner.team/stops/H2go115b"], ["https://tec.openplanner.team/stops/LHUaveu2", "https://tec.openplanner.team/stops/LHUfoss*"], ["https://tec.openplanner.team/stops/X898aba", "https://tec.openplanner.team/stops/X898aob"], ["https://tec.openplanner.team/stops/X948aoa", "https://tec.openplanner.team/stops/X949aja"], ["https://tec.openplanner.team/stops/X758aba", "https://tec.openplanner.team/stops/X758acb"], ["https://tec.openplanner.team/stops/H1by106a", "https://tec.openplanner.team/stops/H1by106b"], ["https://tec.openplanner.team/stops/X952aka", "https://tec.openplanner.team/stops/X952akb"], ["https://tec.openplanner.team/stops/N539bbb", "https://tec.openplanner.team/stops/N540arb"], ["https://tec.openplanner.team/stops/H1wa136b", "https://tec.openplanner.team/stops/H1wa137b"], ["https://tec.openplanner.team/stops/Lmoboeu2", "https://tec.openplanner.team/stops/Lmochpl2"], ["https://tec.openplanner.team/stops/Blimch%C3%A21", "https://tec.openplanner.team/stops/Blimrof1"], ["https://tec.openplanner.team/stops/LBaeg--1", "https://tec.openplanner.team/stops/LBaeg--2"], ["https://tec.openplanner.team/stops/LHanest1", "https://tec.openplanner.team/stops/LHanest2"], ["https://tec.openplanner.team/stops/Lpeptra1", "https://tec.openplanner.team/stops/Lpeptra2"], ["https://tec.openplanner.team/stops/Brixfro3", "https://tec.openplanner.team/stops/Brixga11"], ["https://tec.openplanner.team/stops/Cchsud18", "https://tec.openplanner.team/stops/NC01aab"], ["https://tec.openplanner.team/stops/Bbiefon1", "https://tec.openplanner.team/stops/Bbiefon2"], ["https://tec.openplanner.team/stops/Bgliaau2", "https://tec.openplanner.team/stops/Bgligra1"], ["https://tec.openplanner.team/stops/N524aja", "https://tec.openplanner.team/stops/N525aja"], ["https://tec.openplanner.team/stops/H2le147c", "https://tec.openplanner.team/stops/H2le176b"], ["https://tec.openplanner.team/stops/N579aba", "https://tec.openplanner.team/stops/N579afa"], ["https://tec.openplanner.team/stops/H1pe130a", "https://tec.openplanner.team/stops/H1pe130b"], ["https://tec.openplanner.team/stops/H2tr249a", "https://tec.openplanner.team/stops/H2tr256a"], ["https://tec.openplanner.team/stops/N501bib", "https://tec.openplanner.team/stops/N501boa"], ["https://tec.openplanner.team/stops/Bborche1", "https://tec.openplanner.team/stops/Bborche2"], ["https://tec.openplanner.team/stops/Llgdony2", "https://tec.openplanner.team/stops/Llgmare1"], ["https://tec.openplanner.team/stops/Bglicsm1", "https://tec.openplanner.team/stops/Bgligra1"], ["https://tec.openplanner.team/stops/X825aaa", "https://tec.openplanner.team/stops/X825adb"], ["https://tec.openplanner.team/stops/LbHzent1", "https://tec.openplanner.team/stops/LrUwenz1"], ["https://tec.openplanner.team/stops/Bbchgod2", "https://tec.openplanner.team/stops/Bhalvla2"], ["https://tec.openplanner.team/stops/LBGvill2", "https://tec.openplanner.team/stops/LORroma1"], ["https://tec.openplanner.team/stops/Cgycvie2", "https://tec.openplanner.team/stops/Cgygayo4"], ["https://tec.openplanner.team/stops/H1vt195b", "https://tec.openplanner.team/stops/H1vt196b"], ["https://tec.openplanner.team/stops/LBEmich1", "https://tec.openplanner.team/stops/LDLbois2"], ["https://tec.openplanner.team/stops/Cmomalg2", "https://tec.openplanner.team/stops/Cromart1"], ["https://tec.openplanner.team/stops/Btstpch2", "https://tec.openplanner.team/stops/N524ama"], ["https://tec.openplanner.team/stops/H4he107a", "https://tec.openplanner.team/stops/H4he107b"], ["https://tec.openplanner.team/stops/X948ava", "https://tec.openplanner.team/stops/X948bba"], ["https://tec.openplanner.team/stops/LTIdjal2", "https://tec.openplanner.team/stops/LTIp%C3%A9pi2"], ["https://tec.openplanner.team/stops/X605afa", "https://tec.openplanner.team/stops/X634aib"], ["https://tec.openplanner.team/stops/X661ana", "https://tec.openplanner.team/stops/X661apb"], ["https://tec.openplanner.team/stops/Cjudaxi1", "https://tec.openplanner.team/stops/Cralimi2"], ["https://tec.openplanner.team/stops/Crebien1", "https://tec.openplanner.team/stops/Creespi1"], ["https://tec.openplanner.team/stops/H2bh113b", "https://tec.openplanner.team/stops/H2lc146a"], ["https://tec.openplanner.team/stops/Bovetwe2", "https://tec.openplanner.team/stops/Brsrfen1"], ["https://tec.openplanner.team/stops/LMIpatr4", "https://tec.openplanner.team/stops/LMIterr1"], ["https://tec.openplanner.team/stops/LBUplac1", "https://tec.openplanner.team/stops/NL30afa"], ["https://tec.openplanner.team/stops/X633aka", "https://tec.openplanner.team/stops/X633alb"], ["https://tec.openplanner.team/stops/H1te180a", "https://tec.openplanner.team/stops/H1te180b"], ["https://tec.openplanner.team/stops/Bclgmev1", "https://tec.openplanner.team/stops/Bclgpch1"], ["https://tec.openplanner.team/stops/N505amb", "https://tec.openplanner.team/stops/N512avb"], ["https://tec.openplanner.team/stops/H1au113b", "https://tec.openplanner.team/stops/H1mr126b"], ["https://tec.openplanner.team/stops/Ctmmath1", "https://tec.openplanner.team/stops/Ctmsncb2"], ["https://tec.openplanner.team/stops/N230aca", "https://tec.openplanner.team/stops/N231acb"], ["https://tec.openplanner.team/stops/H1cv101a", "https://tec.openplanner.team/stops/H1ju121b"], ["https://tec.openplanner.team/stops/LCnvill1", "https://tec.openplanner.team/stops/LFLetoi2"], ["https://tec.openplanner.team/stops/N535abb", "https://tec.openplanner.team/stops/N535adb"], ["https://tec.openplanner.team/stops/Lfhdonn2", "https://tec.openplanner.team/stops/Lfhxhor2"], ["https://tec.openplanner.team/stops/N529aca", "https://tec.openplanner.team/stops/N529aia"], ["https://tec.openplanner.team/stops/LBEbelf1", "https://tec.openplanner.team/stops/LBEoblu2"], ["https://tec.openplanner.team/stops/N132aab", "https://tec.openplanner.team/stops/N132abb"], ["https://tec.openplanner.team/stops/N514aaa", "https://tec.openplanner.team/stops/N514ajb"], ["https://tec.openplanner.team/stops/LTyh51-1", "https://tec.openplanner.team/stops/LTyhapp1"], ["https://tec.openplanner.team/stops/Lgrfalc1", "https://tec.openplanner.team/stops/Lgrfalc2"], ["https://tec.openplanner.team/stops/H4wn124a", "https://tec.openplanner.team/stops/H4wn130a"], ["https://tec.openplanner.team/stops/N321aeb", "https://tec.openplanner.team/stops/N387aba"], ["https://tec.openplanner.team/stops/Bsaumlk2", "https://tec.openplanner.team/stops/Bsaumlp2"], ["https://tec.openplanner.team/stops/Berncim3", "https://tec.openplanner.team/stops/Bernegl4"], ["https://tec.openplanner.team/stops/N147aea", "https://tec.openplanner.team/stops/N147aeb"], ["https://tec.openplanner.team/stops/X922aha", "https://tec.openplanner.team/stops/X922ahb"], ["https://tec.openplanner.team/stops/H2fa104a", "https://tec.openplanner.team/stops/H2me114b"], ["https://tec.openplanner.team/stops/Bbuztai1", "https://tec.openplanner.team/stops/Broscha2"], ["https://tec.openplanner.team/stops/LFrcent1", "https://tec.openplanner.team/stops/LRfcent2"], ["https://tec.openplanner.team/stops/H4my122a", "https://tec.openplanner.team/stops/H4my122b"], ["https://tec.openplanner.team/stops/Lmnhorl1", "https://tec.openplanner.team/stops/Lmnhorl3"], ["https://tec.openplanner.team/stops/N311aba", "https://tec.openplanner.team/stops/N311acb"], ["https://tec.openplanner.team/stops/LTPbeau2", "https://tec.openplanner.team/stops/LTPgare*"], ["https://tec.openplanner.team/stops/H1do120b", "https://tec.openplanner.team/stops/H1do131d"], ["https://tec.openplanner.team/stops/H1ms260a", "https://tec.openplanner.team/stops/H1ms308d"], ["https://tec.openplanner.team/stops/Blthwav1", "https://tec.openplanner.team/stops/Blthwav2"], ["https://tec.openplanner.team/stops/X618abb", "https://tec.openplanner.team/stops/X618aob"], ["https://tec.openplanner.team/stops/H1mv239a", "https://tec.openplanner.team/stops/H1mv239b"], ["https://tec.openplanner.team/stops/H1bi104b", "https://tec.openplanner.team/stops/H1mm121a"], ["https://tec.openplanner.team/stops/Bnivsba2", "https://tec.openplanner.team/stops/Bnivsho1"], ["https://tec.openplanner.team/stops/LHTbeau1", "https://tec.openplanner.team/stops/LHThall3"], ["https://tec.openplanner.team/stops/H4ep130a", "https://tec.openplanner.team/stops/H4ep131a"], ["https://tec.openplanner.team/stops/H1hw118b", "https://tec.openplanner.team/stops/H1so136b"], ["https://tec.openplanner.team/stops/N531ahb", "https://tec.openplanner.team/stops/N531aib"], ["https://tec.openplanner.team/stops/Bglibui1", "https://tec.openplanner.team/stops/NR21aeb"], ["https://tec.openplanner.team/stops/Bgnteco1", "https://tec.openplanner.team/stops/Bgnteco2"], ["https://tec.openplanner.team/stops/X595aha", "https://tec.openplanner.team/stops/X597anb"], ["https://tec.openplanner.team/stops/LHAheml2", "https://tec.openplanner.team/stops/Lvisere1"], ["https://tec.openplanner.team/stops/Lheazz-1", "https://tec.openplanner.team/stops/Lheloti1"], ["https://tec.openplanner.team/stops/Ljemont2", "https://tec.openplanner.team/stops/Lmocoop2"], ["https://tec.openplanner.team/stops/H4ev124a", "https://tec.openplanner.team/stops/H4ln130b"], ["https://tec.openplanner.team/stops/N101aea", "https://tec.openplanner.team/stops/N101aia"], ["https://tec.openplanner.team/stops/LBImili2", "https://tec.openplanner.team/stops/LBIvill2"], ["https://tec.openplanner.team/stops/Bgrhhot1", "https://tec.openplanner.team/stops/Bnvmfba1"], ["https://tec.openplanner.team/stops/Lbrlama2", "https://tec.openplanner.team/stops/Llgcorn3"], ["https://tec.openplanner.team/stops/Loubonc2", "https://tec.openplanner.team/stops/Louvivi1"], ["https://tec.openplanner.team/stops/X947abb", "https://tec.openplanner.team/stops/X947aeb"], ["https://tec.openplanner.team/stops/X811amb", "https://tec.openplanner.team/stops/X811apa"], ["https://tec.openplanner.team/stops/H5pe134b", "https://tec.openplanner.team/stops/H5pe139b"], ["https://tec.openplanner.team/stops/X666abb", "https://tec.openplanner.team/stops/X666aeb"], ["https://tec.openplanner.team/stops/H1br122b", "https://tec.openplanner.team/stops/H1br129a"], ["https://tec.openplanner.team/stops/H1qv114b", "https://tec.openplanner.team/stops/H1ro133a"], ["https://tec.openplanner.team/stops/N134acb", "https://tec.openplanner.team/stops/N134ajb"], ["https://tec.openplanner.team/stops/LHZcime2", "https://tec.openplanner.team/stops/LHZpara2"], ["https://tec.openplanner.team/stops/H1mm122a", "https://tec.openplanner.team/stops/H1mm125a"], ["https://tec.openplanner.team/stops/Llgangl1", "https://tec.openplanner.team/stops/Llgcadr6"], ["https://tec.openplanner.team/stops/X801aca", "https://tec.openplanner.team/stops/X801bta"], ["https://tec.openplanner.team/stops/H1tt106a", "https://tec.openplanner.team/stops/H1tt106b"], ["https://tec.openplanner.team/stops/LBrneli2", "https://tec.openplanner.team/stops/LMApape1"], ["https://tec.openplanner.team/stops/H4bc108a", "https://tec.openplanner.team/stops/H4wr173c"], ["https://tec.openplanner.team/stops/LBGjacq2", "https://tec.openplanner.team/stops/LGrchpl2"], ["https://tec.openplanner.team/stops/Cgrgend2", "https://tec.openplanner.team/stops/Cjojonc2"], ["https://tec.openplanner.team/stops/H5rx104b", "https://tec.openplanner.team/stops/H5rx105b"], ["https://tec.openplanner.team/stops/H5qu142a", "https://tec.openplanner.team/stops/H5qu144b"], ["https://tec.openplanner.team/stops/LClbloc2", "https://tec.openplanner.team/stops/LCltrib2"], ["https://tec.openplanner.team/stops/N109aaa", "https://tec.openplanner.team/stops/N109adc"], ["https://tec.openplanner.team/stops/Bbghepi2", "https://tec.openplanner.team/stops/Bquebth3"], ["https://tec.openplanner.team/stops/X801apb", "https://tec.openplanner.team/stops/X889aea"], ["https://tec.openplanner.team/stops/N544adb", "https://tec.openplanner.team/stops/N577aaa"], ["https://tec.openplanner.team/stops/Brsgecu2", "https://tec.openplanner.team/stops/Brsgpbo2"], ["https://tec.openplanner.team/stops/Livvill1", "https://tec.openplanner.team/stops/LRagrch2"], ["https://tec.openplanner.team/stops/N118akb", "https://tec.openplanner.team/stops/N147aba"], ["https://tec.openplanner.team/stops/N517aaa", "https://tec.openplanner.team/stops/N517aab"], ["https://tec.openplanner.team/stops/H1do114a", "https://tec.openplanner.team/stops/H1wi147a"], ["https://tec.openplanner.team/stops/X359aib", "https://tec.openplanner.team/stops/X359ala"], ["https://tec.openplanner.team/stops/N338aab", "https://tec.openplanner.team/stops/N338aga"], ["https://tec.openplanner.team/stops/N501cmd", "https://tec.openplanner.team/stops/N501ema"], ["https://tec.openplanner.team/stops/H1me112a", "https://tec.openplanner.team/stops/H1me117d"], ["https://tec.openplanner.team/stops/Canh1941", "https://tec.openplanner.team/stops/Cfosurs1"], ["https://tec.openplanner.team/stops/LGeborn1", "https://tec.openplanner.team/stops/LGegare2"], ["https://tec.openplanner.team/stops/Cmlhauc1", "https://tec.openplanner.team/stops/Cmlhauc3"], ["https://tec.openplanner.team/stops/LRGgrov2", "https://tec.openplanner.team/stops/LRGunio3"], ["https://tec.openplanner.team/stops/Bhvlbet1", "https://tec.openplanner.team/stops/Bhvltol1"], ["https://tec.openplanner.team/stops/LNEbois1", "https://tec.openplanner.team/stops/LNEtonv1"], ["https://tec.openplanner.team/stops/LMIgare1", "https://tec.openplanner.team/stops/LMIpatr4"], ["https://tec.openplanner.team/stops/Lvtcime1", "https://tec.openplanner.team/stops/Lvtcime2"], ["https://tec.openplanner.team/stops/LmAgruf1", "https://tec.openplanner.team/stops/LwTzent1"], ["https://tec.openplanner.team/stops/X802aqa", "https://tec.openplanner.team/stops/X882aha"], ["https://tec.openplanner.team/stops/LnUcamp1", "https://tec.openplanner.team/stops/LnUhohe2"], ["https://tec.openplanner.team/stops/X604aja", "https://tec.openplanner.team/stops/X604ala"], ["https://tec.openplanner.team/stops/LOucarr4", "https://tec.openplanner.team/stops/LOuplac2"], ["https://tec.openplanner.team/stops/H1an103b", "https://tec.openplanner.team/stops/H1bx107b"], ["https://tec.openplanner.team/stops/X619akb", "https://tec.openplanner.team/stops/X622aaa"], ["https://tec.openplanner.team/stops/X850afb", "https://tec.openplanner.team/stops/X850aga"], ["https://tec.openplanner.team/stops/LOdcris2", "https://tec.openplanner.team/stops/LOdkeme2"], ["https://tec.openplanner.team/stops/N538aca", "https://tec.openplanner.team/stops/N538acb"], ["https://tec.openplanner.team/stops/LBNeu711", "https://tec.openplanner.team/stops/LBNeu712"], ["https://tec.openplanner.team/stops/Lvchaus1", "https://tec.openplanner.team/stops/Lvchaus2"], ["https://tec.openplanner.team/stops/Craappa1", "https://tec.openplanner.team/stops/Cradest1"], ["https://tec.openplanner.team/stops/Bllnfle1", "https://tec.openplanner.team/stops/Bmsggra3"], ["https://tec.openplanner.team/stops/X982cea", "https://tec.openplanner.team/stops/X983aea"], ["https://tec.openplanner.team/stops/Baegm501", "https://tec.openplanner.team/stops/Baegpon2"], ["https://tec.openplanner.team/stops/H4wa150b", "https://tec.openplanner.team/stops/H4wa159b"], ["https://tec.openplanner.team/stops/N501jfb", "https://tec.openplanner.team/stops/N501jga"], ["https://tec.openplanner.team/stops/Brixpro3", "https://tec.openplanner.team/stops/Brixpro4"], ["https://tec.openplanner.team/stops/H1ba109a", "https://tec.openplanner.team/stops/H1ba120b"], ["https://tec.openplanner.team/stops/H5bl121b", "https://tec.openplanner.team/stops/H5bl144a"], ["https://tec.openplanner.team/stops/Lhufays2", "https://tec.openplanner.team/stops/Lhurfay2"], ["https://tec.openplanner.team/stops/N532akb", "https://tec.openplanner.team/stops/N533ada"], ["https://tec.openplanner.team/stops/H2na131a", "https://tec.openplanner.team/stops/H2na133a"], ["https://tec.openplanner.team/stops/LSNnoul2", "https://tec.openplanner.team/stops/LSNretr2"], ["https://tec.openplanner.team/stops/LlNlont2", "https://tec.openplanner.team/stops/LlNschu1"], ["https://tec.openplanner.team/stops/H1cu110a", "https://tec.openplanner.team/stops/H1fl136c"], ["https://tec.openplanner.team/stops/X639ama", "https://tec.openplanner.team/stops/X640aaa"], ["https://tec.openplanner.team/stops/Cchlefe1", "https://tec.openplanner.team/stops/Cchlefe2"], ["https://tec.openplanner.team/stops/X760afb", "https://tec.openplanner.team/stops/X788ahb"], ["https://tec.openplanner.team/stops/NL76ajb", "https://tec.openplanner.team/stops/NL77akb"], ["https://tec.openplanner.team/stops/LPTblan1", "https://tec.openplanner.team/stops/LPTeg--1"], ["https://tec.openplanner.team/stops/X919aab", "https://tec.openplanner.team/stops/X919abb"], ["https://tec.openplanner.team/stops/X901asa", "https://tec.openplanner.team/stops/X901axb"], ["https://tec.openplanner.team/stops/Lsnbrac2", "https://tec.openplanner.team/stops/Lsnbure1"], ["https://tec.openplanner.team/stops/Cchsud05", "https://tec.openplanner.team/stops/Cchsud13"], ["https://tec.openplanner.team/stops/H4bc104a", "https://tec.openplanner.team/stops/H5qu148a"], ["https://tec.openplanner.team/stops/Llgjasm2", "https://tec.openplanner.team/stops/Llgmont1"], ["https://tec.openplanner.team/stops/N104abb", "https://tec.openplanner.team/stops/N104aeb"], ["https://tec.openplanner.team/stops/N507aad", "https://tec.openplanner.team/stops/NL68aca"], ["https://tec.openplanner.team/stops/H2sv217a", "https://tec.openplanner.team/stops/H2tr257a"], ["https://tec.openplanner.team/stops/X901ara", "https://tec.openplanner.team/stops/X901bia"], ["https://tec.openplanner.team/stops/X746aib", "https://tec.openplanner.team/stops/X746ajb"], ["https://tec.openplanner.team/stops/Cfccol1", "https://tec.openplanner.team/stops/Cfcctru1"], ["https://tec.openplanner.team/stops/Bmoucoq1", "https://tec.openplanner.team/stops/Bottra91"], ["https://tec.openplanner.team/stops/Bvirflu1", "https://tec.openplanner.team/stops/Bvirflu2"], ["https://tec.openplanner.team/stops/LeUgulc2", "https://tec.openplanner.team/stops/LeUhaag2"], ["https://tec.openplanner.team/stops/LHMgrun2", "https://tec.openplanner.team/stops/LRmkast*"], ["https://tec.openplanner.team/stops/X780ajb", "https://tec.openplanner.team/stops/X790ama"], ["https://tec.openplanner.team/stops/LKmeg--1", "https://tec.openplanner.team/stops/LKmeg--2"], ["https://tec.openplanner.team/stops/Lflcle-3", "https://tec.openplanner.team/stops/Lflhott1"], ["https://tec.openplanner.team/stops/Ccpsecp1", "https://tec.openplanner.team/stops/Cptchea1"], ["https://tec.openplanner.team/stops/H5ma180a", "https://tec.openplanner.team/stops/H5ma180b"], ["https://tec.openplanner.team/stops/H3so169a", "https://tec.openplanner.team/stops/H3so172b"], ["https://tec.openplanner.team/stops/Cchcaya2", "https://tec.openplanner.team/stops/Cchdelf2"], ["https://tec.openplanner.team/stops/X724afa", "https://tec.openplanner.team/stops/X724aha"], ["https://tec.openplanner.team/stops/Binccha2", "https://tec.openplanner.team/stops/Binclib1"], ["https://tec.openplanner.team/stops/LSOboeu1", "https://tec.openplanner.team/stops/LSOboeu2"], ["https://tec.openplanner.team/stops/N150ahb", "https://tec.openplanner.team/stops/N150aib"], ["https://tec.openplanner.team/stops/Canrobe1", "https://tec.openplanner.team/stops/Canrsta2"], ["https://tec.openplanner.team/stops/LLrc1991", "https://tec.openplanner.team/stops/LLrc1992"], ["https://tec.openplanner.team/stops/X724adb", "https://tec.openplanner.team/stops/X724aeb"], ["https://tec.openplanner.team/stops/LDaeg--2", "https://tec.openplanner.team/stops/LLYtir-2"], ["https://tec.openplanner.team/stops/X801cga", "https://tec.openplanner.team/stops/X836ahb"], ["https://tec.openplanner.team/stops/H4ga161a", "https://tec.openplanner.team/stops/H4ga167b"], ["https://tec.openplanner.team/stops/X923ala", "https://tec.openplanner.team/stops/X923apb"], ["https://tec.openplanner.team/stops/NH01aoa", "https://tec.openplanner.team/stops/NH01aod"], ["https://tec.openplanner.team/stops/N507aha", "https://tec.openplanner.team/stops/N508aca"], ["https://tec.openplanner.team/stops/LEShony2", "https://tec.openplanner.team/stops/LESvign1"], ["https://tec.openplanner.team/stops/LHodomm2", "https://tec.openplanner.team/stops/LHolone2"], ["https://tec.openplanner.team/stops/Lseberg1", "https://tec.openplanner.team/stops/Lsemany1"], ["https://tec.openplanner.team/stops/N310aeb", "https://tec.openplanner.team/stops/X892agb"], ["https://tec.openplanner.team/stops/X952afb", "https://tec.openplanner.team/stops/X953aca"], ["https://tec.openplanner.team/stops/N308asa", "https://tec.openplanner.team/stops/N339aca"], ["https://tec.openplanner.team/stops/X911aua", "https://tec.openplanner.team/stops/X912akb"], ["https://tec.openplanner.team/stops/Bcrngat1", "https://tec.openplanner.team/stops/Bcrnsge2"], ["https://tec.openplanner.team/stops/N232avb", "https://tec.openplanner.team/stops/N232awb"], ["https://tec.openplanner.team/stops/N212akb", "https://tec.openplanner.team/stops/N212atb"], ["https://tec.openplanner.team/stops/LJesole1", "https://tec.openplanner.team/stops/LNvrout2"], ["https://tec.openplanner.team/stops/Causart2", "https://tec.openplanner.team/stops/N543cqa"], ["https://tec.openplanner.team/stops/Llglys-1", "https://tec.openplanner.team/stops/Llgnaim1"], ["https://tec.openplanner.team/stops/LWblesp1", "https://tec.openplanner.team/stops/X512aab"], ["https://tec.openplanner.team/stops/N302adb", "https://tec.openplanner.team/stops/N302aeb"], ["https://tec.openplanner.team/stops/LaSkape2", "https://tec.openplanner.team/stops/LwArabo1"], ["https://tec.openplanner.team/stops/LOreg--2", "https://tec.openplanner.team/stops/LTywyna1"], ["https://tec.openplanner.team/stops/X743aab", "https://tec.openplanner.team/stops/X752aba"], ["https://tec.openplanner.team/stops/X654aba", "https://tec.openplanner.team/stops/X654aib"], ["https://tec.openplanner.team/stops/NL78aka", "https://tec.openplanner.team/stops/NL79aab"], ["https://tec.openplanner.team/stops/LEnchan1", "https://tec.openplanner.team/stops/NL73aca"], ["https://tec.openplanner.team/stops/H2tr246a", "https://tec.openplanner.team/stops/H2tr246b"], ["https://tec.openplanner.team/stops/N501ija", "https://tec.openplanner.team/stops/N501ijb"], ["https://tec.openplanner.team/stops/LAMrich1", "https://tec.openplanner.team/stops/LJEpaqu2"], ["https://tec.openplanner.team/stops/Bblaall1", "https://tec.openplanner.team/stops/Bblaast2"], ["https://tec.openplanner.team/stops/LAWbrou2", "https://tec.openplanner.team/stops/LAWeg--2"], ["https://tec.openplanner.team/stops/H4mo138a", "https://tec.openplanner.team/stops/H4mo150b"], ["https://tec.openplanner.team/stops/H2ma202a", "https://tec.openplanner.team/stops/H2ma202b"], ["https://tec.openplanner.team/stops/H1ma231a", "https://tec.openplanner.team/stops/H1ma231b"], ["https://tec.openplanner.team/stops/X774acb", "https://tec.openplanner.team/stops/X774adc"], ["https://tec.openplanner.team/stops/Bbrlvil1", "https://tec.openplanner.team/stops/Buccmer1"], ["https://tec.openplanner.team/stops/X672afa", "https://tec.openplanner.team/stops/X672alb"], ["https://tec.openplanner.team/stops/LrUwenz1", "https://tec.openplanner.team/stops/LrUwenz2"], ["https://tec.openplanner.team/stops/Bbiehev1", "https://tec.openplanner.team/stops/Bboncfv1"], ["https://tec.openplanner.team/stops/X782aca", "https://tec.openplanner.team/stops/X782aeb"], ["https://tec.openplanner.team/stops/N506bbb", "https://tec.openplanner.team/stops/N506bhb"], ["https://tec.openplanner.team/stops/H4ty294a", "https://tec.openplanner.team/stops/H4ty330b"], ["https://tec.openplanner.team/stops/H2ll178a", "https://tec.openplanner.team/stops/H2ll187a"], ["https://tec.openplanner.team/stops/Lgrclos1", "https://tec.openplanner.team/stops/Lgrfrcu2"], ["https://tec.openplanner.team/stops/LsCback1", "https://tec.openplanner.team/stops/LsCkirc2"], ["https://tec.openplanner.team/stops/N236adb", "https://tec.openplanner.team/stops/N236aha"], ["https://tec.openplanner.team/stops/Btilsce1", "https://tec.openplanner.team/stops/Btilsce2"], ["https://tec.openplanner.team/stops/LDomoul1", "https://tec.openplanner.team/stops/LDomoul2"], ["https://tec.openplanner.team/stops/LCAwals2", "https://tec.openplanner.team/stops/LTGsucr2"], ["https://tec.openplanner.team/stops/N501loa", "https://tec.openplanner.team/stops/N538aab"], ["https://tec.openplanner.team/stops/H1sa114a", "https://tec.openplanner.team/stops/H1sa114b"], ["https://tec.openplanner.team/stops/LHNvill2", "https://tec.openplanner.team/stops/LMXempe1"], ["https://tec.openplanner.team/stops/Creespi1", "https://tec.openplanner.team/stops/Crewatb2"], ["https://tec.openplanner.team/stops/N501gma", "https://tec.openplanner.team/stops/N501lcz"], ["https://tec.openplanner.team/stops/N232bda", "https://tec.openplanner.team/stops/N232bdb"], ["https://tec.openplanner.team/stops/LHGvill1", "https://tec.openplanner.team/stops/LVltige2"], ["https://tec.openplanner.team/stops/X342afb", "https://tec.openplanner.team/stops/X361abb"], ["https://tec.openplanner.team/stops/N218aca", "https://tec.openplanner.team/stops/N218acc"], ["https://tec.openplanner.team/stops/X614ata", "https://tec.openplanner.team/stops/X614atb"], ["https://tec.openplanner.team/stops/Llmdeba1", "https://tec.openplanner.team/stops/Llmdela2"], ["https://tec.openplanner.team/stops/X897axa", "https://tec.openplanner.team/stops/X904ada"], ["https://tec.openplanner.team/stops/LGMforg2", "https://tec.openplanner.team/stops/LTRcarr2"], ["https://tec.openplanner.team/stops/Beclfde2", "https://tec.openplanner.team/stops/Bfelfde2"], ["https://tec.openplanner.team/stops/X754ahb", "https://tec.openplanner.team/stops/X754ala"], ["https://tec.openplanner.team/stops/N351atd", "https://tec.openplanner.team/stops/X358aba"], ["https://tec.openplanner.team/stops/X982anb", "https://tec.openplanner.team/stops/X982aqb"], ["https://tec.openplanner.team/stops/Bsenbmc2", "https://tec.openplanner.team/stops/H2mg149b"], ["https://tec.openplanner.team/stops/LSkoran2", "https://tec.openplanner.team/stops/LSktinc2"], ["https://tec.openplanner.team/stops/Llgnati1", "https://tec.openplanner.team/stops/Llgstap2"], ["https://tec.openplanner.team/stops/Lstbarb3", "https://tec.openplanner.team/stops/Lstbarb6"], ["https://tec.openplanner.team/stops/LAbchpl2", "https://tec.openplanner.team/stops/LScdina2"], ["https://tec.openplanner.team/stops/X725abb", "https://tec.openplanner.team/stops/X725ahb"], ["https://tec.openplanner.team/stops/N135ala", "https://tec.openplanner.team/stops/N135alb"], ["https://tec.openplanner.team/stops/Cmlchan2", "https://tec.openplanner.team/stops/Cmlgche1"], ["https://tec.openplanner.team/stops/N261afb", "https://tec.openplanner.team/stops/N261aha"], ["https://tec.openplanner.team/stops/LBivi--1", "https://tec.openplanner.team/stops/LHCponc3"], ["https://tec.openplanner.team/stops/X743aca", "https://tec.openplanner.team/stops/X744aaa"], ["https://tec.openplanner.team/stops/X820ama", "https://tec.openplanner.team/stops/X820amb"], ["https://tec.openplanner.team/stops/X547aaa", "https://tec.openplanner.team/stops/X561abb"], ["https://tec.openplanner.team/stops/H4bc104b", "https://tec.openplanner.team/stops/H4bc106b"], ["https://tec.openplanner.team/stops/H4lp125a", "https://tec.openplanner.team/stops/H4lp125b"], ["https://tec.openplanner.team/stops/X910ahb", "https://tec.openplanner.team/stops/X911akb"], ["https://tec.openplanner.team/stops/LTPnoup2", "https://tec.openplanner.team/stops/LTPspay1"], ["https://tec.openplanner.team/stops/H4wn126a", "https://tec.openplanner.team/stops/H4wn126b"], ["https://tec.openplanner.team/stops/X996aab", "https://tec.openplanner.team/stops/X996acb"], ["https://tec.openplanner.team/stops/LBoegli1", "https://tec.openplanner.team/stops/LBoegli2"], ["https://tec.openplanner.team/stops/H1gy116a", "https://tec.openplanner.team/stops/H1gy116b"], ["https://tec.openplanner.team/stops/X659aib", "https://tec.openplanner.team/stops/X659aja"], ["https://tec.openplanner.team/stops/Ltiegl-*", "https://tec.openplanner.team/stops/Ltipass2"], ["https://tec.openplanner.team/stops/X768aca", "https://tec.openplanner.team/stops/X769atb"], ["https://tec.openplanner.team/stops/H1em105a", "https://tec.openplanner.team/stops/H1em107a"], ["https://tec.openplanner.team/stops/H2sb228d", "https://tec.openplanner.team/stops/H2sb239c"], ["https://tec.openplanner.team/stops/H4lz125a", "https://tec.openplanner.team/stops/H4lz164a"], ["https://tec.openplanner.team/stops/X812aca", "https://tec.openplanner.team/stops/X812aja"], ["https://tec.openplanner.team/stops/LPurech2", "https://tec.openplanner.team/stops/LrEmeil1"], ["https://tec.openplanner.team/stops/Cgyobse2", "https://tec.openplanner.team/stops/Cgyplvi2"], ["https://tec.openplanner.team/stops/N163abb", "https://tec.openplanner.team/stops/N165acb"], ["https://tec.openplanner.team/stops/H4ca123b", "https://tec.openplanner.team/stops/H4ws159a"], ["https://tec.openplanner.team/stops/H2ch100c", "https://tec.openplanner.team/stops/H2ch108a"], ["https://tec.openplanner.team/stops/H1gr123a", "https://tec.openplanner.team/stops/H1gr123b"], ["https://tec.openplanner.team/stops/N553ahb", "https://tec.openplanner.team/stops/N554adb"], ["https://tec.openplanner.team/stops/Bwavgar3", "https://tec.openplanner.team/stops/Bwavgar4"], ["https://tec.openplanner.team/stops/Cbfgare2", "https://tec.openplanner.team/stops/Cctgiss2"], ["https://tec.openplanner.team/stops/LJuhaie2", "https://tec.openplanner.team/stops/LSDgris2"], ["https://tec.openplanner.team/stops/LATcorn1", "https://tec.openplanner.team/stops/LATpatu1"], ["https://tec.openplanner.team/stops/Brsga151", "https://tec.openplanner.team/stops/Brsgfbl4"], ["https://tec.openplanner.team/stops/X902ada", "https://tec.openplanner.team/stops/X999afa"], ["https://tec.openplanner.team/stops/X948ala", "https://tec.openplanner.team/stops/X948baa"], ["https://tec.openplanner.team/stops/Ctucour1", "https://tec.openplanner.team/stops/Ctucour2"], ["https://tec.openplanner.team/stops/Bmarlor1", "https://tec.openplanner.team/stops/Bmarmco1"], ["https://tec.openplanner.team/stops/H4cp103a", "https://tec.openplanner.team/stops/H4tp145a"], ["https://tec.openplanner.team/stops/X609adb", "https://tec.openplanner.team/stops/X609aea"], ["https://tec.openplanner.team/stops/LlNbruc2", "https://tec.openplanner.team/stops/LlNsc652"], ["https://tec.openplanner.team/stops/LeUnopr2", "https://tec.openplanner.team/stops/LeUrote1"], ["https://tec.openplanner.team/stops/Lbemc--1", "https://tec.openplanner.team/stops/Lbemc--2"], ["https://tec.openplanner.team/stops/X663ata", "https://tec.openplanner.team/stops/X663aya"], ["https://tec.openplanner.team/stops/Bblabos1", "https://tec.openplanner.team/stops/Bblabos2"], ["https://tec.openplanner.team/stops/N139acb", "https://tec.openplanner.team/stops/N139adb"], ["https://tec.openplanner.team/stops/Cnacent2", "https://tec.openplanner.team/stops/Cnacent4"], ["https://tec.openplanner.team/stops/N562ala", "https://tec.openplanner.team/stops/N562alc"], ["https://tec.openplanner.team/stops/LhIkirc*", "https://tec.openplanner.team/stops/LrDsage1"], ["https://tec.openplanner.team/stops/Bbrlrph1", "https://tec.openplanner.team/stops/Bbrlrph2"], ["https://tec.openplanner.team/stops/H4rm107a", "https://tec.openplanner.team/stops/H4rm113a"], ["https://tec.openplanner.team/stops/Bottcli2", "https://tec.openplanner.team/stops/Bottrfa4"], ["https://tec.openplanner.team/stops/LeLcrem2", "https://tec.openplanner.team/stops/LeLkalt1"], ["https://tec.openplanner.team/stops/H1hw120a", "https://tec.openplanner.team/stops/H1hw122a"], ["https://tec.openplanner.team/stops/LOmmer-2", "https://tec.openplanner.team/stops/LOmrela2"], ["https://tec.openplanner.team/stops/X812aia", "https://tec.openplanner.team/stops/X812axa"], ["https://tec.openplanner.team/stops/Lanetie2", "https://tec.openplanner.team/stops/Lrctec-2"], ["https://tec.openplanner.team/stops/Crgegli1", "https://tec.openplanner.team/stops/Crgegli2"], ["https://tec.openplanner.team/stops/N539apa", "https://tec.openplanner.team/stops/N539bda"], ["https://tec.openplanner.team/stops/X886aca", "https://tec.openplanner.team/stops/X886acb"], ["https://tec.openplanner.team/stops/H4te261a", "https://tec.openplanner.team/stops/H4te261b"], ["https://tec.openplanner.team/stops/Lgrfrcu2", "https://tec.openplanner.team/stops/Lgrfrhe2"], ["https://tec.openplanner.team/stops/LSAchef1", "https://tec.openplanner.team/stops/LSAvieu1"], ["https://tec.openplanner.team/stops/X666agb", "https://tec.openplanner.team/stops/X666aja"], ["https://tec.openplanner.team/stops/N577aga", "https://tec.openplanner.team/stops/N577agb"], ["https://tec.openplanner.team/stops/Lcepont2", "https://tec.openplanner.team/stops/Lcepont5"], ["https://tec.openplanner.team/stops/H4or115b", "https://tec.openplanner.team/stops/H4or116b"], ["https://tec.openplanner.team/stops/Lgrfalc1", "https://tec.openplanner.team/stops/Llggrav1"], ["https://tec.openplanner.team/stops/Lghprea2", "https://tec.openplanner.team/stops/Lghprea3"], ["https://tec.openplanner.team/stops/LkEhaag2", "https://tec.openplanner.team/stops/LkEl1211"], ["https://tec.openplanner.team/stops/Cgzcver1", "https://tec.openplanner.team/stops/Cmyedpa4"], ["https://tec.openplanner.team/stops/H1on128c", "https://tec.openplanner.team/stops/H1on128d"], ["https://tec.openplanner.team/stops/LBJlieg1", "https://tec.openplanner.team/stops/LBJlieg2"], ["https://tec.openplanner.team/stops/H1mk112a", "https://tec.openplanner.team/stops/H1mk115a"], ["https://tec.openplanner.team/stops/LWAgare*", "https://tec.openplanner.team/stops/LWAloui1"], ["https://tec.openplanner.team/stops/H2ep144a", "https://tec.openplanner.team/stops/H2re168b"], ["https://tec.openplanner.team/stops/Bbeagae2", "https://tec.openplanner.team/stops/Bzluqga2"], ["https://tec.openplanner.team/stops/X616aia", "https://tec.openplanner.team/stops/X616aib"], ["https://tec.openplanner.team/stops/H1ho144b", "https://tec.openplanner.team/stops/H1wg127a"], ["https://tec.openplanner.team/stops/LBEpier2", "https://tec.openplanner.team/stops/LNipre-1"], ["https://tec.openplanner.team/stops/Lflheid1", "https://tec.openplanner.team/stops/Lqbeg--1"], ["https://tec.openplanner.team/stops/Lcalaro1", "https://tec.openplanner.team/stops/Lcapisc1"], ["https://tec.openplanner.team/stops/N390afa", "https://tec.openplanner.team/stops/N390ama"], ["https://tec.openplanner.team/stops/H1ms289a", "https://tec.openplanner.team/stops/H1ms913a"], ["https://tec.openplanner.team/stops/LoUzent1", "https://tec.openplanner.team/stops/LwMzoll2"], ["https://tec.openplanner.team/stops/N310aaa", "https://tec.openplanner.team/stops/N312aca"], ["https://tec.openplanner.team/stops/X898aea", "https://tec.openplanner.team/stops/X898aeb"], ["https://tec.openplanner.team/stops/Bneecha2", "https://tec.openplanner.team/stops/Boplcar2"], ["https://tec.openplanner.team/stops/X547aib", "https://tec.openplanner.team/stops/X547ana"], ["https://tec.openplanner.team/stops/Llgbwez1", "https://tec.openplanner.team/stops/Llgdouf1"], ["https://tec.openplanner.team/stops/LLVfoss1", "https://tec.openplanner.team/stops/X561adb"], ["https://tec.openplanner.team/stops/Cladura3", "https://tec.openplanner.team/stops/NC23aba"], ["https://tec.openplanner.team/stops/Lflcle-4", "https://tec.openplanner.team/stops/Lflcle-5"], ["https://tec.openplanner.team/stops/H4oq224b", "https://tec.openplanner.team/stops/H4ty350a"], ["https://tec.openplanner.team/stops/Ccucorb1", "https://tec.openplanner.team/stops/Ccuseba2"], ["https://tec.openplanner.team/stops/LAYecol1", "https://tec.openplanner.team/stops/LAYecol2"], ["https://tec.openplanner.team/stops/X801aba", "https://tec.openplanner.team/stops/X802aqa"], ["https://tec.openplanner.team/stops/Ljubruy*", "https://tec.openplanner.team/stops/Ljubruy2"], ["https://tec.openplanner.team/stops/LLrgare1", "https://tec.openplanner.team/stops/LLrscie2"], ["https://tec.openplanner.team/stops/LLncime2", "https://tec.openplanner.team/stops/LPUmang2"], ["https://tec.openplanner.team/stops/Bgntffo1", "https://tec.openplanner.team/stops/Bvilpar1"], ["https://tec.openplanner.team/stops/H4ef110b", "https://tec.openplanner.team/stops/H4ef112b"], ["https://tec.openplanner.team/stops/LVIgare1", "https://tec.openplanner.team/stops/LVIhala4"], ["https://tec.openplanner.team/stops/N501byb", "https://tec.openplanner.team/stops/N501chb"], ["https://tec.openplanner.team/stops/Bsaumlk2", "https://tec.openplanner.team/stops/Bwlhcsr2"], ["https://tec.openplanner.team/stops/X624aca", "https://tec.openplanner.team/stops/X624aja"], ["https://tec.openplanner.team/stops/Lccaigr2", "https://tec.openplanner.team/stops/Lcceclu1"], ["https://tec.openplanner.team/stops/N553aba", "https://tec.openplanner.team/stops/N553aob"], ["https://tec.openplanner.team/stops/H2hp119b", "https://tec.openplanner.team/stops/H2ll183b"], ["https://tec.openplanner.team/stops/Bbourel1", "https://tec.openplanner.team/stops/Bboutry2"], ["https://tec.openplanner.team/stops/Lagarde1", "https://tec.openplanner.team/stops/Laggare2"], ["https://tec.openplanner.team/stops/LERboss2", "https://tec.openplanner.team/stops/LHrlorc1"], ["https://tec.openplanner.team/stops/LrEgend1", "https://tec.openplanner.team/stops/LrEviel2"], ["https://tec.openplanner.team/stops/X670apa", "https://tec.openplanner.team/stops/X671aaa"], ["https://tec.openplanner.team/stops/Clupcfe1", "https://tec.openplanner.team/stops/Clupcfe2"], ["https://tec.openplanner.team/stops/Cmtplac1", "https://tec.openplanner.team/stops/Cmtplac8"], ["https://tec.openplanner.team/stops/N524ajb", "https://tec.openplanner.team/stops/N524ala"], ["https://tec.openplanner.team/stops/X768alc", "https://tec.openplanner.team/stops/X768ama"], ["https://tec.openplanner.team/stops/Cplstfa1", "https://tec.openplanner.team/stops/Cplstfa3"], ["https://tec.openplanner.team/stops/Bmlncha1", "https://tec.openplanner.team/stops/Bmlnegl2"], ["https://tec.openplanner.team/stops/Lwachal1", "https://tec.openplanner.team/stops/Lwaeau-1"], ["https://tec.openplanner.team/stops/X946acb", "https://tec.openplanner.team/stops/X946afa"], ["https://tec.openplanner.team/stops/X758ajb", "https://tec.openplanner.team/stops/X758akb"], ["https://tec.openplanner.team/stops/N540aab", "https://tec.openplanner.team/stops/N540afb"], ["https://tec.openplanner.team/stops/Llochar4", "https://tec.openplanner.team/stops/Lloross1"], ["https://tec.openplanner.team/stops/Blpgeco1", "https://tec.openplanner.team/stops/Blpglon1"], ["https://tec.openplanner.team/stops/LhGfl242", "https://tec.openplanner.team/stops/LhGknip1"], ["https://tec.openplanner.team/stops/X926acb", "https://tec.openplanner.team/stops/X926afa"], ["https://tec.openplanner.team/stops/H1ms314a", "https://tec.openplanner.team/stops/H1ms314b"], ["https://tec.openplanner.team/stops/X616aab", "https://tec.openplanner.team/stops/X616abb"], ["https://tec.openplanner.team/stops/LrUbrac1", "https://tec.openplanner.team/stops/LrUweve1"], ["https://tec.openplanner.team/stops/X369aaa", "https://tec.openplanner.team/stops/X858aba"], ["https://tec.openplanner.team/stops/X759abb", "https://tec.openplanner.team/stops/X759acb"], ["https://tec.openplanner.team/stops/Clb4dgi1", "https://tec.openplanner.team/stops/Clbbonn4"], ["https://tec.openplanner.team/stops/N232aga", "https://tec.openplanner.team/stops/N261acb"], ["https://tec.openplanner.team/stops/N526aea", "https://tec.openplanner.team/stops/N526aeb"], ["https://tec.openplanner.team/stops/LLM4rou3", "https://tec.openplanner.team/stops/LLMfond2"], ["https://tec.openplanner.team/stops/N131aeb", "https://tec.openplanner.team/stops/NH21agb"], ["https://tec.openplanner.team/stops/N312aaa", "https://tec.openplanner.team/stops/X892aia"], ["https://tec.openplanner.team/stops/X870acb", "https://tec.openplanner.team/stops/X870ajb"], ["https://tec.openplanner.team/stops/X730aab", "https://tec.openplanner.team/stops/X730abb"], ["https://tec.openplanner.team/stops/LTIdamr1", "https://tec.openplanner.team/stops/LTIpora1"], ["https://tec.openplanner.team/stops/X898aha", "https://tec.openplanner.team/stops/X898ahb"], ["https://tec.openplanner.team/stops/Lqbecco1", "https://tec.openplanner.team/stops/Lqbecco2"], ["https://tec.openplanner.team/stops/LTHec--1", "https://tec.openplanner.team/stops/LTHwaux1"], ["https://tec.openplanner.team/stops/LHEches1", "https://tec.openplanner.team/stops/LHEepur1"], ["https://tec.openplanner.team/stops/LGe4bra2", "https://tec.openplanner.team/stops/LGecite1"], ["https://tec.openplanner.team/stops/H4ty321b", "https://tec.openplanner.team/stops/H4ty322a"], ["https://tec.openplanner.team/stops/X608aga", "https://tec.openplanner.team/stops/X608agb"], ["https://tec.openplanner.team/stops/X910aeb", "https://tec.openplanner.team/stops/X985aab"], ["https://tec.openplanner.team/stops/H4pe127a", "https://tec.openplanner.team/stops/H4pe127b"], ["https://tec.openplanner.team/stops/Csrcant1", "https://tec.openplanner.team/stops/Csrcant2"], ["https://tec.openplanner.team/stops/H4lz124a", "https://tec.openplanner.team/stops/H4lz128a"], ["https://tec.openplanner.team/stops/H1bo109a", "https://tec.openplanner.team/stops/H1bo109b"], ["https://tec.openplanner.team/stops/H1ms902a", "https://tec.openplanner.team/stops/H1ms903a"], ["https://tec.openplanner.team/stops/Lseprog1", "https://tec.openplanner.team/stops/Lsesabl2"], ["https://tec.openplanner.team/stops/H4bo113a", "https://tec.openplanner.team/stops/H4bo118c"], ["https://tec.openplanner.team/stops/Llgjenn2", "https://tec.openplanner.team/stops/Llgsnap5"], ["https://tec.openplanner.team/stops/H2ha128a", "https://tec.openplanner.team/stops/H2ha143b"], ["https://tec.openplanner.team/stops/N118afa", "https://tec.openplanner.team/stops/N118afb"], ["https://tec.openplanner.team/stops/LbTaral1", "https://tec.openplanner.team/stops/LbThutt1"], ["https://tec.openplanner.team/stops/H4do102b", "https://tec.openplanner.team/stops/H4do107d"], ["https://tec.openplanner.team/stops/N232aza", "https://tec.openplanner.team/stops/N232bna"], ["https://tec.openplanner.team/stops/H1ne141a", "https://tec.openplanner.team/stops/H1ne142a"], ["https://tec.openplanner.team/stops/X664aka", "https://tec.openplanner.team/stops/X664ala"], ["https://tec.openplanner.team/stops/Ccigene1", "https://tec.openplanner.team/stops/Ccipano1"], ["https://tec.openplanner.team/stops/X725aef", "https://tec.openplanner.team/stops/X725apb"], ["https://tec.openplanner.team/stops/X618ahb", "https://tec.openplanner.team/stops/X618apa"], ["https://tec.openplanner.team/stops/X754awb", "https://tec.openplanner.team/stops/X754aza"], ["https://tec.openplanner.team/stops/H2ch103a", "https://tec.openplanner.team/stops/H2ch109b"], ["https://tec.openplanner.team/stops/Cjurevo2", "https://tec.openplanner.team/stops/Clocroi2"], ["https://tec.openplanner.team/stops/Cmomoul4", "https://tec.openplanner.team/stops/Cmomoul6"], ["https://tec.openplanner.team/stops/H4wt159b", "https://tec.openplanner.team/stops/H5rx103a"], ["https://tec.openplanner.team/stops/LTIgare2", "https://tec.openplanner.team/stops/LTIpora2"], ["https://tec.openplanner.team/stops/Ljucomb1", "https://tec.openplanner.team/stops/Ljudeme1"], ["https://tec.openplanner.team/stops/H1ht133a", "https://tec.openplanner.team/stops/H1ht133b"], ["https://tec.openplanner.team/stops/NL76ada", "https://tec.openplanner.team/stops/NL76asb"], ["https://tec.openplanner.team/stops/X899aha", "https://tec.openplanner.team/stops/X899aib"], ["https://tec.openplanner.team/stops/H4wn131b", "https://tec.openplanner.team/stops/H4wn139a"], ["https://tec.openplanner.team/stops/N310aab", "https://tec.openplanner.team/stops/N310ada"], ["https://tec.openplanner.team/stops/X636aab", "https://tec.openplanner.team/stops/X636aoa"], ["https://tec.openplanner.team/stops/Lanfran1", "https://tec.openplanner.team/stops/Lanfran3"], ["https://tec.openplanner.team/stops/H1gi120a", "https://tec.openplanner.team/stops/H1gi120b"], ["https://tec.openplanner.team/stops/Lcheg--1", "https://tec.openplanner.team/stops/Lrahoig2"], ["https://tec.openplanner.team/stops/Lglcoun1", "https://tec.openplanner.team/stops/Lglvict1"], ["https://tec.openplanner.team/stops/Llgchal1", "https://tec.openplanner.team/stops/Llgcita1"], ["https://tec.openplanner.team/stops/N117atb", "https://tec.openplanner.team/stops/N571agb"], ["https://tec.openplanner.team/stops/X316aab", "https://tec.openplanner.team/stops/X316acb"], ["https://tec.openplanner.team/stops/N245aca", "https://tec.openplanner.team/stops/N287acb"], ["https://tec.openplanner.team/stops/N149acb", "https://tec.openplanner.team/stops/N149agb"], ["https://tec.openplanner.team/stops/LBPauto1", "https://tec.openplanner.team/stops/LBPmais1"], ["https://tec.openplanner.team/stops/N539axa", "https://tec.openplanner.team/stops/N539ayb"], ["https://tec.openplanner.team/stops/LMAbruy1", "https://tec.openplanner.team/stops/LMAgb--2"], ["https://tec.openplanner.team/stops/LOucuve2", "https://tec.openplanner.team/stops/LOuilc-*"], ["https://tec.openplanner.team/stops/X771abb", "https://tec.openplanner.team/stops/X773aob"], ["https://tec.openplanner.team/stops/Lhubriq2", "https://tec.openplanner.team/stops/Lmntast2"], ["https://tec.openplanner.team/stops/X725aub", "https://tec.openplanner.team/stops/X767aib"], ["https://tec.openplanner.team/stops/N232asb", "https://tec.openplanner.team/stops/N232bxa"], ["https://tec.openplanner.team/stops/LAVpequ1", "https://tec.openplanner.team/stops/LVHbrai1"], ["https://tec.openplanner.team/stops/LSParca1", "https://tec.openplanner.team/stops/LSPec--1"], ["https://tec.openplanner.team/stops/Btubbsc1", "https://tec.openplanner.team/stops/Btubmon2"], ["https://tec.openplanner.team/stops/LVEstat1", "https://tec.openplanner.team/stops/LVEstat2"], ["https://tec.openplanner.team/stops/Cbtbras1", "https://tec.openplanner.team/stops/Cbtgemi2"], ["https://tec.openplanner.team/stops/H5pe129a", "https://tec.openplanner.team/stops/H5pe135a"], ["https://tec.openplanner.team/stops/LCIneuv1", "https://tec.openplanner.team/stops/LMXroye1"], ["https://tec.openplanner.team/stops/N225aab", "https://tec.openplanner.team/stops/N225aca"], ["https://tec.openplanner.team/stops/H4ty346b", "https://tec.openplanner.team/stops/H4ty384a"], ["https://tec.openplanner.team/stops/X663aqb", "https://tec.openplanner.team/stops/X663arb"], ["https://tec.openplanner.team/stops/LNEtonv1", "https://tec.openplanner.team/stops/LNEvpn-1"], ["https://tec.openplanner.team/stops/Lbrbass1", "https://tec.openplanner.team/stops/Lbrfune*"], ["https://tec.openplanner.team/stops/N521aua", "https://tec.openplanner.team/stops/N521avb"], ["https://tec.openplanner.team/stops/X804aqa", "https://tec.openplanner.team/stops/X804aya"], ["https://tec.openplanner.team/stops/LBIcabi2", "https://tec.openplanner.team/stops/LFOchpl2"], ["https://tec.openplanner.team/stops/N503aka", "https://tec.openplanner.team/stops/N511aga"], ["https://tec.openplanner.team/stops/X790aib", "https://tec.openplanner.team/stops/X790amb"], ["https://tec.openplanner.team/stops/Brebcgi1", "https://tec.openplanner.team/stops/Brebgar1"], ["https://tec.openplanner.team/stops/LATabba2", "https://tec.openplanner.team/stops/LATdame1"], ["https://tec.openplanner.team/stops/LHUchin*", "https://tec.openplanner.team/stops/NL76aqa"], ["https://tec.openplanner.team/stops/Llgsime1", "https://tec.openplanner.team/stops/Llgtcha2"], ["https://tec.openplanner.team/stops/H1sp356a", "https://tec.openplanner.team/stops/H1sp357b"], ["https://tec.openplanner.team/stops/NL82aga", "https://tec.openplanner.team/stops/NL82agb"], ["https://tec.openplanner.team/stops/Blhupcl1", "https://tec.openplanner.team/stops/Blhupcl2"], ["https://tec.openplanner.team/stops/LSPdesc1", "https://tec.openplanner.team/stops/LSPdesc2"], ["https://tec.openplanner.team/stops/LBNpleg1", "https://tec.openplanner.team/stops/LBNplei1"], ["https://tec.openplanner.team/stops/X991afb", "https://tec.openplanner.team/stops/X991aga"], ["https://tec.openplanner.team/stops/LSOchau1", "https://tec.openplanner.team/stops/LSOchau2"], ["https://tec.openplanner.team/stops/Bohnhan2", "https://tec.openplanner.team/stops/Bohnrph2"], ["https://tec.openplanner.team/stops/X782aib", "https://tec.openplanner.team/stops/X784aea"], ["https://tec.openplanner.team/stops/Cmlbevu1", "https://tec.openplanner.team/stops/Cmlgoff2"], ["https://tec.openplanner.team/stops/LSpfond1", "https://tec.openplanner.team/stops/LSpfond2"], ["https://tec.openplanner.team/stops/LSLhall*", "https://tec.openplanner.team/stops/LVSpn--2"], ["https://tec.openplanner.team/stops/LSPchap3", "https://tec.openplanner.team/stops/LSPther2"], ["https://tec.openplanner.team/stops/Lkirenk1", "https://tec.openplanner.team/stops/Llgtunn2"], ["https://tec.openplanner.team/stops/LHocroi2", "https://tec.openplanner.team/stops/LJedonc2"], ["https://tec.openplanner.team/stops/H1ba111a", "https://tec.openplanner.team/stops/H1hh118b"], ["https://tec.openplanner.team/stops/Cfnegli1", "https://tec.openplanner.team/stops/N162acb"], ["https://tec.openplanner.team/stops/Lhurfay1", "https://tec.openplanner.team/stops/LTHroch2"], ["https://tec.openplanner.team/stops/X608aja", "https://tec.openplanner.team/stops/X608ama"], ["https://tec.openplanner.team/stops/X771ada", "https://tec.openplanner.team/stops/X771adb"], ["https://tec.openplanner.team/stops/Lvcreve1", "https://tec.openplanner.team/stops/Lvcreve2"], ["https://tec.openplanner.team/stops/X359aia", "https://tec.openplanner.team/stops/X359aib"], ["https://tec.openplanner.team/stops/Cmcegli2", "https://tec.openplanner.team/stops/Cmcwic1"], ["https://tec.openplanner.team/stops/LLrgara1", "https://tec.openplanner.team/stops/LLrhest2"], ["https://tec.openplanner.team/stops/Lseathe1", "https://tec.openplanner.team/stops/Lsesabl1"], ["https://tec.openplanner.team/stops/H1vh137a", "https://tec.openplanner.team/stops/H1vh137b"], ["https://tec.openplanner.team/stops/N120aea", "https://tec.openplanner.team/stops/N120aeb"], ["https://tec.openplanner.team/stops/LATmals1", "https://tec.openplanner.team/stops/LATmals2"], ["https://tec.openplanner.team/stops/X840adb", "https://tec.openplanner.team/stops/X840afb"], ["https://tec.openplanner.team/stops/LPAbour1", "https://tec.openplanner.team/stops/LPAvill1"], ["https://tec.openplanner.team/stops/H1hw123a", "https://tec.openplanner.team/stops/H1hw123b"], ["https://tec.openplanner.team/stops/N149aha", "https://tec.openplanner.team/stops/N149ahc"], ["https://tec.openplanner.team/stops/LhMmeil1", "https://tec.openplanner.team/stops/LhMmeil2"], ["https://tec.openplanner.team/stops/Cjualed1", "https://tec.openplanner.team/stops/Cjumest2"], ["https://tec.openplanner.team/stops/H1bd101b", "https://tec.openplanner.team/stops/H1hq128a"], ["https://tec.openplanner.team/stops/H4oq225a", "https://tec.openplanner.team/stops/H4oq229b"], ["https://tec.openplanner.team/stops/H1pw123a", "https://tec.openplanner.team/stops/H1wa158a"], ["https://tec.openplanner.team/stops/N501coa", "https://tec.openplanner.team/stops/N535apa"], ["https://tec.openplanner.team/stops/Bheneco2", "https://tec.openplanner.team/stops/Bhenron2"], ["https://tec.openplanner.team/stops/X354aca", "https://tec.openplanner.team/stops/X359aba"], ["https://tec.openplanner.team/stops/LJUfort1", "https://tec.openplanner.team/stops/Lladete4"], ["https://tec.openplanner.team/stops/LSPdesc2", "https://tec.openplanner.team/stops/LSPther2"], ["https://tec.openplanner.team/stops/LHUgole2", "https://tec.openplanner.team/stops/LTicent1"], ["https://tec.openplanner.team/stops/N145aga", "https://tec.openplanner.team/stops/N145agb"], ["https://tec.openplanner.team/stops/LAYcorn1", "https://tec.openplanner.team/stops/LAYlieg1"], ["https://tec.openplanner.team/stops/LWaanto1", "https://tec.openplanner.team/stops/LWalibo1"], ["https://tec.openplanner.team/stops/Llgamer3", "https://tec.openplanner.team/stops/Llgrema1"], ["https://tec.openplanner.team/stops/Lsmlina2", "https://tec.openplanner.team/stops/Lsmpost1"], ["https://tec.openplanner.team/stops/N534bnh", "https://tec.openplanner.team/stops/N534bpa"], ["https://tec.openplanner.team/stops/X727aga", "https://tec.openplanner.team/stops/X727aha"], ["https://tec.openplanner.team/stops/LhDkreu1", "https://tec.openplanner.team/stops/LmRh%C3%B6812"], ["https://tec.openplanner.team/stops/H3so171b", "https://tec.openplanner.team/stops/H3so174a"], ["https://tec.openplanner.team/stops/H1eo105a", "https://tec.openplanner.team/stops/H1eo107a"], ["https://tec.openplanner.team/stops/LNCchev1", "https://tec.openplanner.team/stops/LNCchev2"], ["https://tec.openplanner.team/stops/X888adb", "https://tec.openplanner.team/stops/X888afa"], ["https://tec.openplanner.team/stops/H4ry130a", "https://tec.openplanner.team/stops/H4ry140b"], ["https://tec.openplanner.team/stops/X993aea", "https://tec.openplanner.team/stops/X993aia"], ["https://tec.openplanner.team/stops/LTEkerk1", "https://tec.openplanner.team/stops/LTEnuro1"], ["https://tec.openplanner.team/stops/Llgcroi1", "https://tec.openplanner.team/stops/Llgqmar2"], ["https://tec.openplanner.team/stops/N511arb", "https://tec.openplanner.team/stops/N511aua"], ["https://tec.openplanner.team/stops/LAMgreg1", "https://tec.openplanner.team/stops/LAMhopi3"], ["https://tec.openplanner.team/stops/H1hn207a", "https://tec.openplanner.team/stops/H1hn210a"], ["https://tec.openplanner.team/stops/Ctisar1", "https://tec.openplanner.team/stops/H1tt104b"], ["https://tec.openplanner.team/stops/H1ob328b", "https://tec.openplanner.team/stops/H1ob336b"], ["https://tec.openplanner.team/stops/H2lh131b", "https://tec.openplanner.team/stops/H2mm140a"], ["https://tec.openplanner.team/stops/LOL6che1", "https://tec.openplanner.team/stops/LSHfief1"], ["https://tec.openplanner.team/stops/H1by106b", "https://tec.openplanner.team/stops/H1sy139b"], ["https://tec.openplanner.team/stops/LLbcafe2", "https://tec.openplanner.team/stops/LrEkreu2"], ["https://tec.openplanner.team/stops/Cmlpbay2", "https://tec.openplanner.team/stops/Cmlrang2"], ["https://tec.openplanner.team/stops/X721aab", "https://tec.openplanner.team/stops/X723amb"], ["https://tec.openplanner.team/stops/Bbcodam4", "https://tec.openplanner.team/stops/Bbcoubo2"], ["https://tec.openplanner.team/stops/Ltihala1", "https://tec.openplanner.team/stops/Ltimarq2"], ["https://tec.openplanner.team/stops/Bolgcsa2", "https://tec.openplanner.team/stops/Bolppsn2"], ["https://tec.openplanner.team/stops/N260aca", "https://tec.openplanner.team/stops/N270aaa"], ["https://tec.openplanner.team/stops/X662asb", "https://tec.openplanner.team/stops/X663ahb"], ["https://tec.openplanner.team/stops/LTEcamp2", "https://tec.openplanner.team/stops/LTErest2"], ["https://tec.openplanner.team/stops/H4vx362a", "https://tec.openplanner.team/stops/H4vx363a"], ["https://tec.openplanner.team/stops/Lsebuil1", "https://tec.openplanner.team/stops/Lsecoop1"], ["https://tec.openplanner.team/stops/H4gr108a", "https://tec.openplanner.team/stops/H4gr111a"], ["https://tec.openplanner.team/stops/LESmont2", "https://tec.openplanner.team/stops/LESpont4"], ["https://tec.openplanner.team/stops/X612aaa", "https://tec.openplanner.team/stops/X612afa"], ["https://tec.openplanner.team/stops/LAncoup2", "https://tec.openplanner.team/stops/LAnfall1"], ["https://tec.openplanner.team/stops/X601avb", "https://tec.openplanner.team/stops/X601axa"], ["https://tec.openplanner.team/stops/N579aab", "https://tec.openplanner.team/stops/N579aea"], ["https://tec.openplanner.team/stops/Cmregli3", "https://tec.openplanner.team/stops/N162acb"], ["https://tec.openplanner.team/stops/Btubbsc2", "https://tec.openplanner.team/stops/Btubsal1"], ["https://tec.openplanner.team/stops/Cmogrbu1", "https://tec.openplanner.team/stops/Cmonvci1"], ["https://tec.openplanner.team/stops/N121acb", "https://tec.openplanner.team/stops/N121ajb"], ["https://tec.openplanner.team/stops/N121aca", "https://tec.openplanner.team/stops/N121ada"], ["https://tec.openplanner.team/stops/Bborbif2", "https://tec.openplanner.team/stops/Bfelagb1"], ["https://tec.openplanner.team/stops/H1cu126a", "https://tec.openplanner.team/stops/H1cu132a"], ["https://tec.openplanner.team/stops/N383aaa", "https://tec.openplanner.team/stops/N383abb"], ["https://tec.openplanner.team/stops/H4hu116a", "https://tec.openplanner.team/stops/H4hu118a"], ["https://tec.openplanner.team/stops/N508afa", "https://tec.openplanner.team/stops/N508ala"], ["https://tec.openplanner.team/stops/LhZkape1", "https://tec.openplanner.team/stops/LwEdorf2"], ["https://tec.openplanner.team/stops/Llgbry-1", "https://tec.openplanner.team/stops/Llgthie1"], ["https://tec.openplanner.team/stops/X601aoa", "https://tec.openplanner.team/stops/X601cdb"], ["https://tec.openplanner.team/stops/H2hg266b", "https://tec.openplanner.team/stops/H2hg270a"], ["https://tec.openplanner.team/stops/N503aib", "https://tec.openplanner.team/stops/N503aja"], ["https://tec.openplanner.team/stops/Boveklo1", "https://tec.openplanner.team/stops/Bovepla1"], ["https://tec.openplanner.team/stops/Cgrchfe1", "https://tec.openplanner.team/stops/Cgrchfe2"], ["https://tec.openplanner.team/stops/LNEec--2", "https://tec.openplanner.team/stops/LNEolne1"], ["https://tec.openplanner.team/stops/Cgobl%C3%A9r2", "https://tec.openplanner.team/stops/Cgoulb4"], ["https://tec.openplanner.team/stops/Btubmfa2", "https://tec.openplanner.team/stops/Btubsca1"], ["https://tec.openplanner.team/stops/LeIjoha1", "https://tec.openplanner.team/stops/LeIkreu1"], ["https://tec.openplanner.team/stops/Cmtpaix1", "https://tec.openplanner.team/stops/Cmtpaix2"], ["https://tec.openplanner.team/stops/Bgntffo2", "https://tec.openplanner.team/stops/Bvilpar1"], ["https://tec.openplanner.team/stops/NL75acb", "https://tec.openplanner.team/stops/NL75ada"], ["https://tec.openplanner.team/stops/LHEches4", "https://tec.openplanner.team/stops/LHEchex1"], ["https://tec.openplanner.team/stops/LCObouh1", "https://tec.openplanner.team/stops/LCOdrol1"], ["https://tec.openplanner.team/stops/CMsolei1", "https://tec.openplanner.team/stops/CMsolei2"], ["https://tec.openplanner.team/stops/Llgdepo1", "https://tec.openplanner.team/stops/Llgmare1"], ["https://tec.openplanner.team/stops/N201awb", "https://tec.openplanner.team/stops/N202afb"], ["https://tec.openplanner.team/stops/X937ahb", "https://tec.openplanner.team/stops/X937aia"], ["https://tec.openplanner.team/stops/N531apa", "https://tec.openplanner.team/stops/N584aob"], ["https://tec.openplanner.team/stops/Ldichat1", "https://tec.openplanner.team/stops/Ldihusq1"], ["https://tec.openplanner.team/stops/X624aja", "https://tec.openplanner.team/stops/X624amb"], ["https://tec.openplanner.team/stops/H1ba104a", "https://tec.openplanner.team/stops/H1ba109b"], ["https://tec.openplanner.team/stops/N511ara", "https://tec.openplanner.team/stops/N511atb"], ["https://tec.openplanner.team/stops/Lvichpl2", "https://tec.openplanner.team/stops/Lvieg--2"], ["https://tec.openplanner.team/stops/X763abb", "https://tec.openplanner.team/stops/X763aca"], ["https://tec.openplanner.team/stops/LBNvilv1", "https://tec.openplanner.team/stops/LDOordi1"], ["https://tec.openplanner.team/stops/H1gq153b", "https://tec.openplanner.team/stops/H5me106a"], ["https://tec.openplanner.team/stops/N506bob", "https://tec.openplanner.team/stops/N506bwa"], ["https://tec.openplanner.team/stops/Cmmschw2", "https://tec.openplanner.team/stops/Cmmserv3"], ["https://tec.openplanner.team/stops/N232aua", "https://tec.openplanner.team/stops/N232awa"], ["https://tec.openplanner.team/stops/H4lh118a", "https://tec.openplanner.team/stops/H5wo132b"], ["https://tec.openplanner.team/stops/N385aaa", "https://tec.openplanner.team/stops/N385aea"], ["https://tec.openplanner.team/stops/X818aea", "https://tec.openplanner.team/stops/X818afb"], ["https://tec.openplanner.team/stops/H4mv187a", "https://tec.openplanner.team/stops/H4mv189c"], ["https://tec.openplanner.team/stops/Lbrptbr5", "https://tec.openplanner.team/stops/Llgongr4"], ["https://tec.openplanner.team/stops/X739aaa", "https://tec.openplanner.team/stops/X739ada"], ["https://tec.openplanner.team/stops/Bjodbat1", "https://tec.openplanner.team/stops/Bjodbat2"], ["https://tec.openplanner.team/stops/X982awa", "https://tec.openplanner.team/stops/X982bba"], ["https://tec.openplanner.team/stops/LDOgare1", "https://tec.openplanner.team/stops/LDOgare2"], ["https://tec.openplanner.team/stops/Cbicamp1", "https://tec.openplanner.team/stops/Ctupont4"], ["https://tec.openplanner.team/stops/LSTparf1", "https://tec.openplanner.team/stops/LWn24--2"], ["https://tec.openplanner.team/stops/LoUhein1", "https://tec.openplanner.team/stops/LoUpete1"], ["https://tec.openplanner.team/stops/N501aaa", "https://tec.openplanner.team/stops/N501aaz"], ["https://tec.openplanner.team/stops/Clggrfe2", "https://tec.openplanner.team/stops/Clgmaco2"], ["https://tec.openplanner.team/stops/N571aja", "https://tec.openplanner.team/stops/N571aka"], ["https://tec.openplanner.team/stops/Lemjoba2", "https://tec.openplanner.team/stops/Lemlami2"], ["https://tec.openplanner.team/stops/Ccybouc2", "https://tec.openplanner.team/stops/Ccygara2"], ["https://tec.openplanner.team/stops/LWEbr051", "https://tec.openplanner.team/stops/LWEwilc1"], ["https://tec.openplanner.team/stops/Bbchgod2", "https://tec.openplanner.team/stops/Bitrsar1"], ["https://tec.openplanner.team/stops/H4bh102a", "https://tec.openplanner.team/stops/H4bh102b"], ["https://tec.openplanner.team/stops/NB33aea", "https://tec.openplanner.team/stops/NB33aeb"], ["https://tec.openplanner.team/stops/N104aka", "https://tec.openplanner.team/stops/N106agb"], ["https://tec.openplanner.team/stops/Bbonbcr1", "https://tec.openplanner.team/stops/Bboncha1"], ["https://tec.openplanner.team/stops/X788adb", "https://tec.openplanner.team/stops/X788afa"], ["https://tec.openplanner.team/stops/H1qy133a", "https://tec.openplanner.team/stops/H1qy137b"], ["https://tec.openplanner.team/stops/N530aga", "https://tec.openplanner.team/stops/N530agb"], ["https://tec.openplanner.team/stops/LOuathe1", "https://tec.openplanner.team/stops/LOumaro1"], ["https://tec.openplanner.team/stops/LNCchev2", "https://tec.openplanner.team/stops/LNCimpe1"], ["https://tec.openplanner.team/stops/N104aab", "https://tec.openplanner.team/stops/N104acb"], ["https://tec.openplanner.team/stops/LSNecol4", "https://tec.openplanner.team/stops/LSNmoul1"], ["https://tec.openplanner.team/stops/LMoviel1", "https://tec.openplanner.team/stops/LSDheus1"], ["https://tec.openplanner.team/stops/N167aaa", "https://tec.openplanner.team/stops/N167aab"], ["https://tec.openplanner.team/stops/X349aab", "https://tec.openplanner.team/stops/X349aic"], ["https://tec.openplanner.team/stops/LLOnand1", "https://tec.openplanner.team/stops/LRRecsc*"], ["https://tec.openplanner.team/stops/Cchsud03", "https://tec.openplanner.team/stops/Cchsud12"], ["https://tec.openplanner.team/stops/H4ka191a", "https://tec.openplanner.team/stops/H4ka192a"], ["https://tec.openplanner.team/stops/X390aib", "https://tec.openplanner.team/stops/X992afb"], ["https://tec.openplanner.team/stops/Lhurfay2", "https://tec.openplanner.team/stops/LTHroch1"], ["https://tec.openplanner.team/stops/X781aba", "https://tec.openplanner.team/stops/X781aga"], ["https://tec.openplanner.team/stops/H2bh120a", "https://tec.openplanner.team/stops/H2mg143b"], ["https://tec.openplanner.team/stops/X602aaa", "https://tec.openplanner.team/stops/X633aaa"], ["https://tec.openplanner.team/stops/Cgpcime2", "https://tec.openplanner.team/stops/Cgpplac2"], ["https://tec.openplanner.team/stops/LSPpomp1", "https://tec.openplanner.team/stops/LSPptch2"], ["https://tec.openplanner.team/stops/H4hx111a", "https://tec.openplanner.team/stops/H4hx115a"], ["https://tec.openplanner.team/stops/X723ada", "https://tec.openplanner.team/stops/X723adb"], ["https://tec.openplanner.team/stops/H1so131a", "https://tec.openplanner.team/stops/H1so131b"], ["https://tec.openplanner.team/stops/LBNhegg1", "https://tec.openplanner.team/stops/LhEcolo2"], ["https://tec.openplanner.team/stops/Bvirbie3", "https://tec.openplanner.team/stops/Bvirmav1"], ["https://tec.openplanner.team/stops/LLegern1", "https://tec.openplanner.team/stops/X784aea"], ["https://tec.openplanner.team/stops/H2bh107a", "https://tec.openplanner.team/stops/H2bh112b"], ["https://tec.openplanner.team/stops/H1gn148b", "https://tec.openplanner.team/stops/H1gn152a"], ["https://tec.openplanner.team/stops/H1al106a", "https://tec.openplanner.team/stops/H1qp150b"], ["https://tec.openplanner.team/stops/X773aab", "https://tec.openplanner.team/stops/X773aba"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lpecroi1"], ["https://tec.openplanner.team/stops/X721aoa", "https://tec.openplanner.team/stops/X721atb"], ["https://tec.openplanner.team/stops/Cmecite1", "https://tec.openplanner.team/stops/Cmecomb1"], ["https://tec.openplanner.team/stops/Llgdouf1", "https://tec.openplanner.team/stops/Llgm%C3%A9di1"], ["https://tec.openplanner.team/stops/NC44aba", "https://tec.openplanner.team/stops/NC44aca"], ["https://tec.openplanner.team/stops/N561aca", "https://tec.openplanner.team/stops/N584aqa"], ["https://tec.openplanner.team/stops/Cmesafi2", "https://tec.openplanner.team/stops/Cwgmart2"], ["https://tec.openplanner.team/stops/Crcegli4", "https://tec.openplanner.team/stops/Crchutt2"], ["https://tec.openplanner.team/stops/Bwatdco1", "https://tec.openplanner.team/stops/Bwattri1"], ["https://tec.openplanner.team/stops/X663aca", "https://tec.openplanner.team/stops/X688aab"], ["https://tec.openplanner.team/stops/Lenplac1", "https://tec.openplanner.team/stops/Lenplac2"], ["https://tec.openplanner.team/stops/H1do108a", "https://tec.openplanner.team/stops/H1do108c"], ["https://tec.openplanner.team/stops/Cctathe1", "https://tec.openplanner.team/stops/Cctcoll2"], ["https://tec.openplanner.team/stops/LNCecdo1", "https://tec.openplanner.team/stops/Lseboia1"], ["https://tec.openplanner.team/stops/Lhrbell1", "https://tec.openplanner.team/stops/Lhrmare4"], ["https://tec.openplanner.team/stops/N558aga", "https://tec.openplanner.team/stops/N558ajb"], ["https://tec.openplanner.team/stops/X818awa", "https://tec.openplanner.team/stops/X818awb"], ["https://tec.openplanner.team/stops/H4cl114a", "https://tec.openplanner.team/stops/H4cl114b"], ["https://tec.openplanner.team/stops/N574aea", "https://tec.openplanner.team/stops/N574aeb"], ["https://tec.openplanner.team/stops/Bflcpco1", "https://tec.openplanner.team/stops/Bflcpco2"], ["https://tec.openplanner.team/stops/X781ada", "https://tec.openplanner.team/stops/X781aeb"], ["https://tec.openplanner.team/stops/Cjudelv4", "https://tec.openplanner.team/stops/CMmade2"], ["https://tec.openplanner.team/stops/Lvoec--1", "https://tec.openplanner.team/stops/Lvoec--3"], ["https://tec.openplanner.team/stops/H2mg141b", "https://tec.openplanner.team/stops/H2mg142b"], ["https://tec.openplanner.team/stops/Lchchau2", "https://tec.openplanner.team/stops/Lchec--2"], ["https://tec.openplanner.team/stops/Cchsud08", "https://tec.openplanner.team/stops/Cmlvitf2"], ["https://tec.openplanner.team/stops/LWOsass1", "https://tec.openplanner.team/stops/LWOwa162"], ["https://tec.openplanner.team/stops/Cfaeclu2", "https://tec.openplanner.team/stops/Cfasamb1"], ["https://tec.openplanner.team/stops/H1me113b", "https://tec.openplanner.team/stops/H1me118b"], ["https://tec.openplanner.team/stops/X397aab", "https://tec.openplanner.team/stops/X397abb"], ["https://tec.openplanner.team/stops/H2hl111a", "https://tec.openplanner.team/stops/H2pe157b"], ["https://tec.openplanner.team/stops/N346ada", "https://tec.openplanner.team/stops/X892acb"], ["https://tec.openplanner.team/stops/LLvgare1", "https://tec.openplanner.team/stops/NL81adb"], ["https://tec.openplanner.team/stops/N501hyb", "https://tec.openplanner.team/stops/N501jcb"], ["https://tec.openplanner.team/stops/X923abb", "https://tec.openplanner.team/stops/X941afa"], ["https://tec.openplanner.team/stops/Bramrdf1", "https://tec.openplanner.team/stops/Bramrdf2"], ["https://tec.openplanner.team/stops/Bgnteco1", "https://tec.openplanner.team/stops/Bgntpos2"], ["https://tec.openplanner.team/stops/Lcaboun3", "https://tec.openplanner.team/stops/Lcalaro2"], ["https://tec.openplanner.team/stops/Lseaite1", "https://tec.openplanner.team/stops/Lseaite2"], ["https://tec.openplanner.team/stops/Lsemyrt2", "https://tec.openplanner.team/stops/Lsepcha3"], ["https://tec.openplanner.team/stops/X943aba", "https://tec.openplanner.team/stops/X943aha"], ["https://tec.openplanner.team/stops/N232beb", "https://tec.openplanner.team/stops/N232bfa"], ["https://tec.openplanner.team/stops/LVbcoul2", "https://tec.openplanner.team/stops/LVbsurr1"], ["https://tec.openplanner.team/stops/H1gc123a", "https://tec.openplanner.team/stops/H1qy136a"], ["https://tec.openplanner.team/stops/X614ajb", "https://tec.openplanner.team/stops/X623aia"], ["https://tec.openplanner.team/stops/N232bhb", "https://tec.openplanner.team/stops/N232cbb"], ["https://tec.openplanner.team/stops/X664ana", "https://tec.openplanner.team/stops/X664asa"], ["https://tec.openplanner.team/stops/Ctuhouz2", "https://tec.openplanner.team/stops/Cturoge1"], ["https://tec.openplanner.team/stops/Cptcamb1", "https://tec.openplanner.team/stops/Cptegli2"], ["https://tec.openplanner.team/stops/Louaout1", "https://tec.openplanner.team/stops/Louaout2"], ["https://tec.openplanner.team/stops/LOTawan1", "https://tec.openplanner.team/stops/LOTcloe1"], ["https://tec.openplanner.team/stops/N501fda", "https://tec.openplanner.team/stops/N501fdc"], ["https://tec.openplanner.team/stops/LHUmess1", "https://tec.openplanner.team/stops/LTiespe1"], ["https://tec.openplanner.team/stops/Bjdsbro1", "https://tec.openplanner.team/stops/Blthvil1"], ["https://tec.openplanner.team/stops/H2lh126a", "https://tec.openplanner.team/stops/H2lh126b"], ["https://tec.openplanner.team/stops/Llgrain1", "https://tec.openplanner.team/stops/Llgrain2"], ["https://tec.openplanner.team/stops/LsHfrie2", "https://tec.openplanner.team/stops/LsHkirc1"], ["https://tec.openplanner.team/stops/LOLfoss2", "https://tec.openplanner.team/stops/LOLvill2"], ["https://tec.openplanner.team/stops/Chpatel1", "https://tec.openplanner.team/stops/Cracime2"], ["https://tec.openplanner.team/stops/Lbobuil2", "https://tec.openplanner.team/stops/Lstvill2"], ["https://tec.openplanner.team/stops/H4an106a", "https://tec.openplanner.team/stops/H4an110b"], ["https://tec.openplanner.team/stops/LAtaube1", "https://tec.openplanner.team/stops/X261aaa"], ["https://tec.openplanner.team/stops/H1ms261a", "https://tec.openplanner.team/stops/H1ms305a"], ["https://tec.openplanner.team/stops/H1sg144b", "https://tec.openplanner.team/stops/H1sg146b"], ["https://tec.openplanner.team/stops/X672ada", "https://tec.openplanner.team/stops/X672adb"], ["https://tec.openplanner.team/stops/X658aba", "https://tec.openplanner.team/stops/X658aga"], ["https://tec.openplanner.team/stops/Bbrlrph1", "https://tec.openplanner.team/stops/Brsgter1"], ["https://tec.openplanner.team/stops/LHYdogn1", "https://tec.openplanner.team/stops/LSpogne2"], ["https://tec.openplanner.team/stops/Lmlcrot*", "https://tec.openplanner.team/stops/Lmleg--1"], ["https://tec.openplanner.team/stops/N113aca", "https://tec.openplanner.team/stops/N113aga"], ["https://tec.openplanner.team/stops/Bblamsp3", "https://tec.openplanner.team/stops/Bblaphi1"], ["https://tec.openplanner.team/stops/LATfont2", "https://tec.openplanner.team/stops/LATmonu1"], ["https://tec.openplanner.team/stops/Blpgeco2", "https://tec.openplanner.team/stops/Blpgvil2"], ["https://tec.openplanner.team/stops/H4vx362b", "https://tec.openplanner.team/stops/H4vx364a"], ["https://tec.openplanner.team/stops/Bbwacol2", "https://tec.openplanner.team/stops/Bwavfol2"], ["https://tec.openplanner.team/stops/H4ma398b", "https://tec.openplanner.team/stops/H4oq226c"], ["https://tec.openplanner.team/stops/Bgemcha1", "https://tec.openplanner.team/stops/N522asb"], ["https://tec.openplanner.team/stops/N535aaa", "https://tec.openplanner.team/stops/N535aba"], ["https://tec.openplanner.team/stops/LCscarr2", "https://tec.openplanner.team/stops/LCscarr3"], ["https://tec.openplanner.team/stops/Llgpont1", "https://tec.openplanner.team/stops/Llgpont2"], ["https://tec.openplanner.team/stops/LClflor2", "https://tec.openplanner.team/stops/LFdbagu1"], ["https://tec.openplanner.team/stops/N312adb", "https://tec.openplanner.team/stops/N313aab"], ["https://tec.openplanner.team/stops/Bgnpgar2", "https://tec.openplanner.team/stops/Cgnbast1"], ["https://tec.openplanner.team/stops/LTecent1", "https://tec.openplanner.team/stops/LTechpl2"], ["https://tec.openplanner.team/stops/Bllnald1", "https://tec.openplanner.team/stops/Bllngar4"], ["https://tec.openplanner.team/stops/X742afa", "https://tec.openplanner.team/stops/X742agb"], ["https://tec.openplanner.team/stops/LLOchpl1", "https://tec.openplanner.team/stops/LLOspin2"], ["https://tec.openplanner.team/stops/X261aba", "https://tec.openplanner.team/stops/X261acb"], ["https://tec.openplanner.team/stops/H1ob327b", "https://tec.openplanner.team/stops/H1ob333b"], ["https://tec.openplanner.team/stops/Bbldvaa2", "https://tec.openplanner.team/stops/Bhevwzw1"], ["https://tec.openplanner.team/stops/X826aba", "https://tec.openplanner.team/stops/X826aca"], ["https://tec.openplanner.team/stops/Cmmlong2", "https://tec.openplanner.team/stops/Cmmpjou3"], ["https://tec.openplanner.team/stops/N501hqb", "https://tec.openplanner.team/stops/N501iba"], ["https://tec.openplanner.team/stops/Bgemga09", "https://tec.openplanner.team/stops/N522bvd"], ["https://tec.openplanner.team/stops/N101adc", "https://tec.openplanner.team/stops/N116aea"], ["https://tec.openplanner.team/stops/N557aab", "https://tec.openplanner.team/stops/N557aca"], ["https://tec.openplanner.team/stops/LNIdoma1", "https://tec.openplanner.team/stops/LNIec--1"], ["https://tec.openplanner.team/stops/N519acb", "https://tec.openplanner.team/stops/N519aja"], ["https://tec.openplanner.team/stops/X897axa", "https://tec.openplanner.team/stops/X897aya"], ["https://tec.openplanner.team/stops/N539ajb", "https://tec.openplanner.team/stops/N542aia"], ["https://tec.openplanner.team/stops/Bquebth1", "https://tec.openplanner.team/stops/Bquebth3"], ["https://tec.openplanner.team/stops/LHEches3", "https://tec.openplanner.team/stops/LHEchex1"], ["https://tec.openplanner.team/stops/Cdamare2", "https://tec.openplanner.team/stops/Clomakr2"], ["https://tec.openplanner.team/stops/N581aab", "https://tec.openplanner.team/stops/NL74aib"], ["https://tec.openplanner.team/stops/Lhrgall1", "https://tec.openplanner.team/stops/Lhrlaix1"], ["https://tec.openplanner.team/stops/LlE02--2", "https://tec.openplanner.team/stops/LlEzoll2"], ["https://tec.openplanner.team/stops/H1nv324a", "https://tec.openplanner.team/stops/H1nv325a"], ["https://tec.openplanner.team/stops/X618aab", "https://tec.openplanner.team/stops/X618aoa"], ["https://tec.openplanner.team/stops/H1po130a", "https://tec.openplanner.team/stops/H1po139a"], ["https://tec.openplanner.team/stops/H1ba113b", "https://tec.openplanner.team/stops/H1je225a"], ["https://tec.openplanner.team/stops/H4ms145b", "https://tec.openplanner.team/stops/H4ms166a"], ["https://tec.openplanner.team/stops/Lsnbure1", "https://tec.openplanner.team/stops/Lsnhorl1"], ["https://tec.openplanner.team/stops/H1sp353b", "https://tec.openplanner.team/stops/H1ss350a"], ["https://tec.openplanner.team/stops/X829ada", "https://tec.openplanner.team/stops/X830aaa"], ["https://tec.openplanner.team/stops/LLgmini2", "https://tec.openplanner.team/stops/LSPherd1"], ["https://tec.openplanner.team/stops/N501kcb", "https://tec.openplanner.team/stops/N501kqb"], ["https://tec.openplanner.team/stops/X746aba", "https://tec.openplanner.team/stops/X746acb"], ["https://tec.openplanner.team/stops/LmYamel1", "https://tec.openplanner.team/stops/LwL100-1"], ["https://tec.openplanner.team/stops/Llgdart2", "https://tec.openplanner.team/stops/LlgguilB"], ["https://tec.openplanner.team/stops/LwL100-1", "https://tec.openplanner.team/stops/LwLfuss1"], ["https://tec.openplanner.team/stops/Brebmtg1", "https://tec.openplanner.team/stops/Brebraf2"], ["https://tec.openplanner.team/stops/Cbiferm1", "https://tec.openplanner.team/stops/Crg3arb2"], ["https://tec.openplanner.team/stops/Bbsgfva1", "https://tec.openplanner.team/stops/Bbsgrve1"], ["https://tec.openplanner.team/stops/N501hob", "https://tec.openplanner.team/stops/N501ila"], ["https://tec.openplanner.team/stops/Lghwall*", "https://tec.openplanner.team/stops/Lghwall2"], ["https://tec.openplanner.team/stops/N218aab", "https://tec.openplanner.team/stops/N385abb"], ["https://tec.openplanner.team/stops/H4gr108a", "https://tec.openplanner.team/stops/H4ld124a"], ["https://tec.openplanner.team/stops/LWDeg--1", "https://tec.openplanner.team/stops/LWDsieg1"], ["https://tec.openplanner.team/stops/Cgycime1", "https://tec.openplanner.team/stops/Cgysarr2"], ["https://tec.openplanner.team/stops/X730adb", "https://tec.openplanner.team/stops/X753aca"], ["https://tec.openplanner.team/stops/H1pa104a", "https://tec.openplanner.team/stops/H1wa155b"], ["https://tec.openplanner.team/stops/H1ht131a", "https://tec.openplanner.team/stops/H1te191a"], ["https://tec.openplanner.team/stops/Ccusole1", "https://tec.openplanner.team/stops/Cgysole1"], ["https://tec.openplanner.team/stops/LHZ8mai2", "https://tec.openplanner.team/stops/LHZcouv2"], ["https://tec.openplanner.team/stops/LrDsage2", "https://tec.openplanner.team/stops/LrEfeck1"], ["https://tec.openplanner.team/stops/X738aea", "https://tec.openplanner.team/stops/X771ala"], ["https://tec.openplanner.team/stops/H4mt215a", "https://tec.openplanner.team/stops/H4mt221b"], ["https://tec.openplanner.team/stops/X663abb", "https://tec.openplanner.team/stops/X663aqa"], ["https://tec.openplanner.team/stops/Llivina2", "https://tec.openplanner.team/stops/Lrcchpl1"], ["https://tec.openplanner.team/stops/LdUespe4", "https://tec.openplanner.team/stops/LtHkreu4"], ["https://tec.openplanner.team/stops/X609aha", "https://tec.openplanner.team/stops/X609alb"], ["https://tec.openplanner.team/stops/X688aab", "https://tec.openplanner.team/stops/X769arb"], ["https://tec.openplanner.team/stops/LNOning1", "https://tec.openplanner.team/stops/LNOpt--1"], ["https://tec.openplanner.team/stops/H2re165b", "https://tec.openplanner.team/stops/H2re174a"], ["https://tec.openplanner.team/stops/H5pe152a", "https://tec.openplanner.team/stops/H5pe152b"], ["https://tec.openplanner.team/stops/X354aaa", "https://tec.openplanner.team/stops/X369aaa"], ["https://tec.openplanner.team/stops/H1cu132a", "https://tec.openplanner.team/stops/H1je212b"], ["https://tec.openplanner.team/stops/Bwateco2", "https://tec.openplanner.team/stops/Bwatmsj1"], ["https://tec.openplanner.team/stops/N506aqb", "https://tec.openplanner.team/stops/N506arb"], ["https://tec.openplanner.team/stops/X601bpb", "https://tec.openplanner.team/stops/X601daa"], ["https://tec.openplanner.team/stops/LBYegli1", "https://tec.openplanner.team/stops/LBYegli2"], ["https://tec.openplanner.team/stops/Ljubord1", "https://tec.openplanner.team/stops/Ljubord2"], ["https://tec.openplanner.team/stops/X910ada", "https://tec.openplanner.team/stops/X910adb"], ["https://tec.openplanner.team/stops/LREsp301", "https://tec.openplanner.team/stops/LREsp302"], ["https://tec.openplanner.team/stops/Cgrcent1", "https://tec.openplanner.team/stops/NC14amb"], ["https://tec.openplanner.team/stops/N207aea", "https://tec.openplanner.team/stops/X210azb"], ["https://tec.openplanner.team/stops/X804aca", "https://tec.openplanner.team/stops/X882akb"], ["https://tec.openplanner.team/stops/LBHinva1", "https://tec.openplanner.team/stops/LHbcent2"], ["https://tec.openplanner.team/stops/X938aca", "https://tec.openplanner.team/stops/X938acb"], ["https://tec.openplanner.team/stops/Laltrap2", "https://tec.openplanner.team/stops/Lalverr1"], ["https://tec.openplanner.team/stops/H2sb257b", "https://tec.openplanner.team/stops/H3lr108a"], ["https://tec.openplanner.team/stops/Bwatcci1", "https://tec.openplanner.team/stops/Bwatcli1"], ["https://tec.openplanner.team/stops/NC14aaa", "https://tec.openplanner.team/stops/NC44aaa"], ["https://tec.openplanner.team/stops/Lhrsimo4", "https://tec.openplanner.team/stops/Lhrtunn1"], ["https://tec.openplanner.team/stops/LKmcite2", "https://tec.openplanner.team/stops/LOdmonu3"], ["https://tec.openplanner.team/stops/Loualbe2", "https://tec.openplanner.team/stops/Loubiez1"], ["https://tec.openplanner.team/stops/LHTdelh2", "https://tec.openplanner.team/stops/LHTmc--1"], ["https://tec.openplanner.team/stops/LkEhatt1", "https://tec.openplanner.team/stops/LkEheyg2"], ["https://tec.openplanner.team/stops/X664akb", "https://tec.openplanner.team/stops/X664asa"], ["https://tec.openplanner.team/stops/LMIeg--1", "https://tec.openplanner.team/stops/LMIlac-2"], ["https://tec.openplanner.team/stops/LMAalli1", "https://tec.openplanner.team/stops/LMAgdfa2"], ["https://tec.openplanner.team/stops/Lselibe2", "https://tec.openplanner.team/stops/Lseprog1"], ["https://tec.openplanner.team/stops/Livrame1", "https://tec.openplanner.team/stops/LRachen1"], ["https://tec.openplanner.team/stops/X605aca", "https://tec.openplanner.team/stops/X605ala"], ["https://tec.openplanner.team/stops/X750aob", "https://tec.openplanner.team/stops/X750bna"], ["https://tec.openplanner.team/stops/LeLbegl2", "https://tec.openplanner.team/stops/LnIfrie1"], ["https://tec.openplanner.team/stops/N141alb", "https://tec.openplanner.team/stops/N143acb"], ["https://tec.openplanner.team/stops/N525adb", "https://tec.openplanner.team/stops/N525aib"], ["https://tec.openplanner.team/stops/X948ada", "https://tec.openplanner.team/stops/X948aeb"], ["https://tec.openplanner.team/stops/LmRh%C3%B6811", "https://tec.openplanner.team/stops/LmRkreu2"], ["https://tec.openplanner.team/stops/Bixleix2", "https://tec.openplanner.team/stops/Bixlfla1"], ["https://tec.openplanner.team/stops/Blmlcar2", "https://tec.openplanner.team/stops/Blmlcim2"], ["https://tec.openplanner.team/stops/Clibrun2", "https://tec.openplanner.team/stops/Cvvpotv2"], ["https://tec.openplanner.team/stops/N538afb", "https://tec.openplanner.team/stops/N538agb"], ["https://tec.openplanner.team/stops/Clvimtr2", "https://tec.openplanner.team/stops/Clvimtr4"], ["https://tec.openplanner.team/stops/X638acb", "https://tec.openplanner.team/stops/X638afb"], ["https://tec.openplanner.team/stops/X801cea", "https://tec.openplanner.team/stops/X801cfa"], ["https://tec.openplanner.team/stops/Lvc4bra2", "https://tec.openplanner.team/stops/Lvcpost2"], ["https://tec.openplanner.team/stops/Cmiegli2", "https://tec.openplanner.team/stops/Cmivert2"], ["https://tec.openplanner.team/stops/Lpeathe*", "https://tec.openplanner.team/stops/Lpebier1"], ["https://tec.openplanner.team/stops/Bbaubru2", "https://tec.openplanner.team/stops/Bnivpba2"], ["https://tec.openplanner.team/stops/Cbmind1", "https://tec.openplanner.team/stops/Cbmviv1"], ["https://tec.openplanner.team/stops/N565aia", "https://tec.openplanner.team/stops/N569afa"], ["https://tec.openplanner.team/stops/X907afb", "https://tec.openplanner.team/stops/X907aga"], ["https://tec.openplanner.team/stops/H4cw107a", "https://tec.openplanner.team/stops/H4gz114a"], ["https://tec.openplanner.team/stops/H4pi136a", "https://tec.openplanner.team/stops/H4pi136b"], ["https://tec.openplanner.team/stops/N214aea", "https://tec.openplanner.team/stops/N214aeb"], ["https://tec.openplanner.team/stops/LJAboli1", "https://tec.openplanner.team/stops/LJAcime2"], ["https://tec.openplanner.team/stops/N543aea", "https://tec.openplanner.team/stops/N543aia"], ["https://tec.openplanner.team/stops/N390ada", "https://tec.openplanner.team/stops/X991aeb"], ["https://tec.openplanner.team/stops/LFebas-1", "https://tec.openplanner.team/stops/LTrgibe2"], ["https://tec.openplanner.team/stops/N551ada", "https://tec.openplanner.team/stops/N551adb"], ["https://tec.openplanner.team/stops/Lflgare2", "https://tec.openplanner.team/stops/Lfllapi3"], ["https://tec.openplanner.team/stops/N236aoa", "https://tec.openplanner.team/stops/N236apb"], ["https://tec.openplanner.team/stops/Cgywaut2", "https://tec.openplanner.team/stops/Cgywaut4"], ["https://tec.openplanner.team/stops/H4te248a", "https://tec.openplanner.team/stops/H4te252a"], ["https://tec.openplanner.team/stops/H1em103a", "https://tec.openplanner.team/stops/H1em103b"], ["https://tec.openplanner.team/stops/LWOcomm1", "https://tec.openplanner.team/stops/LWOcomm2"], ["https://tec.openplanner.team/stops/H4lp120b", "https://tec.openplanner.team/stops/H4lp123b"], ["https://tec.openplanner.team/stops/H1sy144c", "https://tec.openplanner.team/stops/H1sy147b"], ["https://tec.openplanner.team/stops/Cmyvert1", "https://tec.openplanner.team/stops/Cmyvert2"], ["https://tec.openplanner.team/stops/X657ala", "https://tec.openplanner.team/stops/X657anb"], ["https://tec.openplanner.team/stops/N113aea", "https://tec.openplanner.team/stops/X317aab"], ["https://tec.openplanner.team/stops/H4be103a", "https://tec.openplanner.team/stops/H4be112a"], ["https://tec.openplanner.team/stops/X904ajb", "https://tec.openplanner.team/stops/X904aka"], ["https://tec.openplanner.team/stops/Cthcrom1", "https://tec.openplanner.team/stops/Cthcrom2"], ["https://tec.openplanner.team/stops/H1tl119a", "https://tec.openplanner.team/stops/H1tl120b"], ["https://tec.openplanner.team/stops/LBAbooz1", "https://tec.openplanner.team/stops/LBLtroi1"], ["https://tec.openplanner.team/stops/X746afa", "https://tec.openplanner.team/stops/X746aia"], ["https://tec.openplanner.team/stops/N153aca", "https://tec.openplanner.team/stops/N153acb"], ["https://tec.openplanner.team/stops/LVLgrum2", "https://tec.openplanner.team/stops/LVLmart2"], ["https://tec.openplanner.team/stops/H4bc101b", "https://tec.openplanner.team/stops/H4bc106a"], ["https://tec.openplanner.team/stops/X634agb", "https://tec.openplanner.team/stops/X634aib"], ["https://tec.openplanner.team/stops/H4bs111a", "https://tec.openplanner.team/stops/H4ws158b"], ["https://tec.openplanner.team/stops/Cwfreta1", "https://tec.openplanner.team/stops/Cwfreta2"], ["https://tec.openplanner.team/stops/Bcerldo1", "https://tec.openplanner.team/stops/Bottcpl2"], ["https://tec.openplanner.team/stops/X542ada", "https://tec.openplanner.team/stops/X542afa"], ["https://tec.openplanner.team/stops/Clusncb1", "https://tec.openplanner.team/stops/Cpcbrig2"], ["https://tec.openplanner.team/stops/X601ana", "https://tec.openplanner.team/stops/X601aqb"], ["https://tec.openplanner.team/stops/Llgnati1", "https://tec.openplanner.team/stops/Llgpari2"], ["https://tec.openplanner.team/stops/X607aga", "https://tec.openplanner.team/stops/X621aaa"], ["https://tec.openplanner.team/stops/Bwaucan1", "https://tec.openplanner.team/stops/Bwaucig1"], ["https://tec.openplanner.team/stops/Bwavdel1", "https://tec.openplanner.team/stops/Bwavdel2"], ["https://tec.openplanner.team/stops/LFLetoi2", "https://tec.openplanner.team/stops/LSpshin2"], ["https://tec.openplanner.team/stops/LVNroua1", "https://tec.openplanner.team/stops/LVNroua2"], ["https://tec.openplanner.team/stops/LHUsauv1", "https://tec.openplanner.team/stops/LHUsauv2"], ["https://tec.openplanner.team/stops/Cstdona1", "https://tec.openplanner.team/stops/Cstdona2"], ["https://tec.openplanner.team/stops/X601bub", "https://tec.openplanner.team/stops/X601cda"], ["https://tec.openplanner.team/stops/Bnivros1", "https://tec.openplanner.team/stops/Bnivsnu1"], ["https://tec.openplanner.team/stops/LBEmich1", "https://tec.openplanner.team/stops/LTRpeec2"], ["https://tec.openplanner.team/stops/Bbsgfva2", "https://tec.openplanner.team/stops/Bgzdsta2"], ["https://tec.openplanner.team/stops/X715aea", "https://tec.openplanner.team/stops/X715alb"], ["https://tec.openplanner.team/stops/H4ir163b", "https://tec.openplanner.team/stops/H4ir164b"], ["https://tec.openplanner.team/stops/LlgLAMB1", "https://tec.openplanner.team/stops/Llgmarc2"], ["https://tec.openplanner.team/stops/X940acb", "https://tec.openplanner.team/stops/X948afb"], ["https://tec.openplanner.team/stops/Llgplop1", "https://tec.openplanner.team/stops/Lvtcalv1"], ["https://tec.openplanner.team/stops/Ladarev2", "https://tec.openplanner.team/stops/Laddelc2"], ["https://tec.openplanner.team/stops/H5rx105a", "https://tec.openplanner.team/stops/H5rx121b"], ["https://tec.openplanner.team/stops/LESmc--1", "https://tec.openplanner.team/stops/LESmich2"], ["https://tec.openplanner.team/stops/N506bcb", "https://tec.openplanner.team/stops/N506bdb"], ["https://tec.openplanner.team/stops/Cgpauln1", "https://tec.openplanner.team/stops/Cgpleco1"], ["https://tec.openplanner.team/stops/N532ama", "https://tec.openplanner.team/stops/N574aga"], ["https://tec.openplanner.team/stops/X904aib", "https://tec.openplanner.team/stops/X904ajb"], ["https://tec.openplanner.team/stops/Brsggde1", "https://tec.openplanner.team/stops/Brsgges2"], ["https://tec.openplanner.team/stops/LHDmc--1", "https://tec.openplanner.team/stops/LHDpota2"], ["https://tec.openplanner.team/stops/LCljose2", "https://tec.openplanner.team/stops/LLMjacq2"], ["https://tec.openplanner.team/stops/Blemmar1", "https://tec.openplanner.team/stops/Btubhoq2"], ["https://tec.openplanner.team/stops/LMtcent2", "https://tec.openplanner.team/stops/LMtegli2"], ["https://tec.openplanner.team/stops/N531aqb", "https://tec.openplanner.team/stops/N584apa"], ["https://tec.openplanner.team/stops/LLrgobe2", "https://tec.openplanner.team/stops/LLrmc--3"], ["https://tec.openplanner.team/stops/N536afa", "https://tec.openplanner.team/stops/N536apb"], ["https://tec.openplanner.team/stops/N534aub", "https://tec.openplanner.team/stops/N534auc"], ["https://tec.openplanner.team/stops/LPurech2", "https://tec.openplanner.team/stops/LrEochs2"], ["https://tec.openplanner.team/stops/Creluth2", "https://tec.openplanner.team/stops/Crerevi2"], ["https://tec.openplanner.team/stops/H4bo112b", "https://tec.openplanner.team/stops/H4bo118b"], ["https://tec.openplanner.team/stops/N551aha", "https://tec.openplanner.team/stops/N552acb"], ["https://tec.openplanner.team/stops/X713acb", "https://tec.openplanner.team/stops/X986ama"], ["https://tec.openplanner.team/stops/LHUgodi1", "https://tec.openplanner.team/stops/LHUlebe3"], ["https://tec.openplanner.team/stops/Bnivtec2", "https://tec.openplanner.team/stops/Bnivvco2"], ["https://tec.openplanner.team/stops/N120add", "https://tec.openplanner.team/stops/N120aha"], ["https://tec.openplanner.team/stops/LLnpomp1", "https://tec.openplanner.team/stops/LPUalbe1"], ["https://tec.openplanner.team/stops/H4th139b", "https://tec.openplanner.team/stops/H4th140a"], ["https://tec.openplanner.team/stops/X761aaa", "https://tec.openplanner.team/stops/X761abb"], ["https://tec.openplanner.team/stops/LLSba9-2", "https://tec.openplanner.team/stops/LLYhoch2"], ["https://tec.openplanner.team/stops/N501gpb", "https://tec.openplanner.team/stops/N501gpd"], ["https://tec.openplanner.team/stops/LHHlomb1", "https://tec.openplanner.team/stops/LHHlomb2"], ["https://tec.openplanner.team/stops/LVEhali1", "https://tec.openplanner.team/stops/LVEjoin1"], ["https://tec.openplanner.team/stops/NR21aab", "https://tec.openplanner.team/stops/NR21aga"], ["https://tec.openplanner.team/stops/N531aca", "https://tec.openplanner.team/stops/N531agb"], ["https://tec.openplanner.team/stops/H2fa112a", "https://tec.openplanner.team/stops/H2mg135a"], ["https://tec.openplanner.team/stops/Bnivari1", "https://tec.openplanner.team/stops/Bnivhon1"], ["https://tec.openplanner.team/stops/Bcrncjo2", "https://tec.openplanner.team/stops/N529abc"], ["https://tec.openplanner.team/stops/X784akb", "https://tec.openplanner.team/stops/X784alb"], ["https://tec.openplanner.team/stops/Llgfred1", "https://tec.openplanner.team/stops/Llgptlo1"], ["https://tec.openplanner.team/stops/Lhrcite2", "https://tec.openplanner.team/stops/Lhrpont1"], ["https://tec.openplanner.team/stops/Cgxchan2", "https://tec.openplanner.team/stops/Cgxwaut2"], ["https://tec.openplanner.team/stops/LBlchin1", "https://tec.openplanner.team/stops/LBlhaut1"], ["https://tec.openplanner.team/stops/Lghpero1", "https://tec.openplanner.team/stops/Lghpero2"], ["https://tec.openplanner.team/stops/Cauglac1", "https://tec.openplanner.team/stops/N543aua"], ["https://tec.openplanner.team/stops/Bmrqgar1", "https://tec.openplanner.team/stops/Bmrqgar2"], ["https://tec.openplanner.team/stops/X624aka", "https://tec.openplanner.team/stops/X624akb"], ["https://tec.openplanner.team/stops/Cwfcule1", "https://tec.openplanner.team/stops/Cwfnamu2"], ["https://tec.openplanner.team/stops/X822aja", "https://tec.openplanner.team/stops/X822alb"], ["https://tec.openplanner.team/stops/Cpccoss1", "https://tec.openplanner.team/stops/Cpccoss2"], ["https://tec.openplanner.team/stops/N141apb", "https://tec.openplanner.team/stops/N141aqb"], ["https://tec.openplanner.team/stops/X643aab", "https://tec.openplanner.team/stops/X645aab"], ["https://tec.openplanner.team/stops/Ccycont2", "https://tec.openplanner.team/stops/Crbhurt2"], ["https://tec.openplanner.team/stops/Cmamarc2", "https://tec.openplanner.team/stops/Cmareun2"], ["https://tec.openplanner.team/stops/X741ahb", "https://tec.openplanner.team/stops/X741aic"], ["https://tec.openplanner.team/stops/X713aea", "https://tec.openplanner.team/stops/X713aga"], ["https://tec.openplanner.team/stops/Chhplbe2", "https://tec.openplanner.team/stops/Chhsncb2"], ["https://tec.openplanner.team/stops/N127aaa", "https://tec.openplanner.team/stops/N127baa"], ["https://tec.openplanner.team/stops/X741afb", "https://tec.openplanner.team/stops/X741aha"], ["https://tec.openplanner.team/stops/LAIrout1", "https://tec.openplanner.team/stops/LSCc39-1"], ["https://tec.openplanner.team/stops/Cmycime1", "https://tec.openplanner.team/stops/Cmycime2"], ["https://tec.openplanner.team/stops/X607aca", "https://tec.openplanner.team/stops/X607ada"], ["https://tec.openplanner.team/stops/Boppcar2", "https://tec.openplanner.team/stops/Boppcen4"], ["https://tec.openplanner.team/stops/H1ma233a", "https://tec.openplanner.team/stops/H1ms310b"], ["https://tec.openplanner.team/stops/LFCalte1", "https://tec.openplanner.team/stops/LWRgare1"], ["https://tec.openplanner.team/stops/X542acb", "https://tec.openplanner.team/stops/X542afa"], ["https://tec.openplanner.team/stops/X595acb", "https://tec.openplanner.team/stops/X595adb"], ["https://tec.openplanner.team/stops/LMIlac-2", "https://tec.openplanner.team/stops/Lrevaul2"], ["https://tec.openplanner.team/stops/X923akb", "https://tec.openplanner.team/stops/X941afa"], ["https://tec.openplanner.team/stops/H3so185a", "https://tec.openplanner.team/stops/H3so185b"], ["https://tec.openplanner.team/stops/H1br122a", "https://tec.openplanner.team/stops/H1br131a"], ["https://tec.openplanner.team/stops/Clbecol2", "https://tec.openplanner.team/stops/H1lo120a"], ["https://tec.openplanner.team/stops/H1ca103b", "https://tec.openplanner.team/stops/H1ca106a"], ["https://tec.openplanner.team/stops/X633aca", "https://tec.openplanner.team/stops/X633aea"], ["https://tec.openplanner.team/stops/X780aba", "https://tec.openplanner.team/stops/X780abb"], ["https://tec.openplanner.team/stops/Bmsgcap2", "https://tec.openplanner.team/stops/Bmsgpap1"], ["https://tec.openplanner.team/stops/H4tg162a", "https://tec.openplanner.team/stops/H4tg170a"], ["https://tec.openplanner.team/stops/Bbbksth1", "https://tec.openplanner.team/stops/Bnetace2"], ["https://tec.openplanner.team/stops/LhDkreu3", "https://tec.openplanner.team/stops/LhDkreu4"], ["https://tec.openplanner.team/stops/X804bda", "https://tec.openplanner.team/stops/X804bea"], ["https://tec.openplanner.team/stops/Csocime1", "https://tec.openplanner.team/stops/Csoplac1"], ["https://tec.openplanner.team/stops/X642aaa", "https://tec.openplanner.team/stops/X642aab"], ["https://tec.openplanner.team/stops/Lrcpaqu1", "https://tec.openplanner.team/stops/Lrctec-1"], ["https://tec.openplanner.team/stops/Llgchar1", "https://tec.openplanner.team/stops/Llgdarc1"], ["https://tec.openplanner.team/stops/Cjupn1", "https://tec.openplanner.team/stops/Cjurogi2"], ["https://tec.openplanner.team/stops/Cchsud16", "https://tec.openplanner.team/stops/NC01aab"], ["https://tec.openplanner.team/stops/Ccybouc4", "https://tec.openplanner.team/stops/Ccygara1"], ["https://tec.openplanner.team/stops/N894aba", "https://tec.openplanner.team/stops/N894aca"], ["https://tec.openplanner.team/stops/H4ra159b", "https://tec.openplanner.team/stops/H4wr174a"], ["https://tec.openplanner.team/stops/LTicime2", "https://tec.openplanner.team/stops/LTiterr2"], ["https://tec.openplanner.team/stops/H4ha167a", "https://tec.openplanner.team/stops/H4ha167b"], ["https://tec.openplanner.team/stops/X808aba", "https://tec.openplanner.team/stops/X808abb"], ["https://tec.openplanner.team/stops/Ljuathe1", "https://tec.openplanner.team/stops/Ljuchap1"], ["https://tec.openplanner.team/stops/H5el102b", "https://tec.openplanner.team/stops/H5el107a"], ["https://tec.openplanner.team/stops/Btubga01", "https://tec.openplanner.team/stops/Btubga06"], ["https://tec.openplanner.team/stops/Lmagara2", "https://tec.openplanner.team/stops/Lrosoxh2"], ["https://tec.openplanner.team/stops/X902aab", "https://tec.openplanner.team/stops/X902aoa"], ["https://tec.openplanner.team/stops/LAyheid1", "https://tec.openplanner.team/stops/LPRfour2"], ["https://tec.openplanner.team/stops/N235aeb", "https://tec.openplanner.team/stops/N241ada"], ["https://tec.openplanner.team/stops/N528aab", "https://tec.openplanner.team/stops/N528aba"], ["https://tec.openplanner.team/stops/Lghberl1", "https://tec.openplanner.team/stops/Lghberl2"], ["https://tec.openplanner.team/stops/Bottgar5", "https://tec.openplanner.team/stops/Bottgar6"], ["https://tec.openplanner.team/stops/Ladgath1", "https://tec.openplanner.team/stops/Ladloup2"], ["https://tec.openplanner.team/stops/LArmaro1", "https://tec.openplanner.team/stops/X548aea"], ["https://tec.openplanner.team/stops/Claptcf2", "https://tec.openplanner.team/stops/NC23aba"], ["https://tec.openplanner.team/stops/LFLcent1", "https://tec.openplanner.team/stops/LFLcher1"], ["https://tec.openplanner.team/stops/X801aab", "https://tec.openplanner.team/stops/X801abc"], ["https://tec.openplanner.team/stops/X717agf", "https://tec.openplanner.team/stops/X718aga"], ["https://tec.openplanner.team/stops/X616ahb", "https://tec.openplanner.team/stops/X625ada"], ["https://tec.openplanner.team/stops/Cctpche2", "https://tec.openplanner.team/stops/NC11alb"], ["https://tec.openplanner.team/stops/H1ht128b", "https://tec.openplanner.team/stops/H1si155a"], ["https://tec.openplanner.team/stops/LbUmolk1", "https://tec.openplanner.team/stops/LbUwirt2"], ["https://tec.openplanner.team/stops/Cctathe2", "https://tec.openplanner.team/stops/Cctfaub1"], ["https://tec.openplanner.team/stops/Cmaduna1", "https://tec.openplanner.team/stops/Cmamonu1"], ["https://tec.openplanner.team/stops/H4de112a", "https://tec.openplanner.team/stops/H4de114b"], ["https://tec.openplanner.team/stops/H1cu110a", "https://tec.openplanner.team/stops/H1cu110b"], ["https://tec.openplanner.team/stops/H1mq199b", "https://tec.openplanner.team/stops/H5ma185b"], ["https://tec.openplanner.team/stops/N557adb", "https://tec.openplanner.team/stops/N557agb"], ["https://tec.openplanner.team/stops/H1em110a", "https://tec.openplanner.team/stops/H1hl127a"], ["https://tec.openplanner.team/stops/LCFeg--1", "https://tec.openplanner.team/stops/LCFeg--2"], ["https://tec.openplanner.team/stops/H1ca105a", "https://tec.openplanner.team/stops/H1ma230b"], ["https://tec.openplanner.team/stops/N573aob", "https://tec.openplanner.team/stops/N573ara"], ["https://tec.openplanner.team/stops/H4fr143b", "https://tec.openplanner.team/stops/H4rc234c"], ["https://tec.openplanner.team/stops/H1pd142a", "https://tec.openplanner.team/stops/H1wg127a"], ["https://tec.openplanner.team/stops/LCRrape2", "https://tec.openplanner.team/stops/LFmbure1"], ["https://tec.openplanner.team/stops/N230aaa", "https://tec.openplanner.team/stops/N230abb"], ["https://tec.openplanner.team/stops/LLbrecu1", "https://tec.openplanner.team/stops/LRcjard1"], ["https://tec.openplanner.team/stops/H1pe131b", "https://tec.openplanner.team/stops/H1so131b"], ["https://tec.openplanner.team/stops/X615bbb", "https://tec.openplanner.team/stops/X615bca"], ["https://tec.openplanner.team/stops/Bquecro1", "https://tec.openplanner.team/stops/Bquecro2"], ["https://tec.openplanner.team/stops/Bwatbce1", "https://tec.openplanner.team/stops/Bwatmco2"], ["https://tec.openplanner.team/stops/N162ada", "https://tec.openplanner.team/stops/N162aea"], ["https://tec.openplanner.team/stops/H1qu103a", "https://tec.openplanner.team/stops/H1qu112a"], ["https://tec.openplanner.team/stops/LAo170-2", "https://tec.openplanner.team/stops/LTPlegr2"], ["https://tec.openplanner.team/stops/N577ahb", "https://tec.openplanner.team/stops/N577ajb"], ["https://tec.openplanner.team/stops/Bptrgri1", "https://tec.openplanner.team/stops/Bptrvil2"], ["https://tec.openplanner.team/stops/Louairl1", "https://tec.openplanner.team/stops/Loubour2"], ["https://tec.openplanner.team/stops/N501bia", "https://tec.openplanner.team/stops/N501lpb"], ["https://tec.openplanner.team/stops/H1al146b", "https://tec.openplanner.team/stops/H1mb137b"], ["https://tec.openplanner.team/stops/Bcrbbou2", "https://tec.openplanner.team/stops/Bcrbcel1"], ["https://tec.openplanner.team/stops/LCPaywa2", "https://tec.openplanner.team/stops/LSpcarr1"], ["https://tec.openplanner.team/stops/Lhrwigi2", "https://tec.openplanner.team/stops/Lwachal2"], ["https://tec.openplanner.team/stops/Lflmc--2", "https://tec.openplanner.team/stops/Lflroms2"], ["https://tec.openplanner.team/stops/LLSba6-1", "https://tec.openplanner.team/stops/LLStrid2"], ["https://tec.openplanner.team/stops/Cfvombo2", "https://tec.openplanner.team/stops/H1fv103a"], ["https://tec.openplanner.team/stops/Bdvmcbo1", "https://tec.openplanner.team/stops/Bdvmcbo2"], ["https://tec.openplanner.team/stops/N230aea", "https://tec.openplanner.team/stops/N230afb"], ["https://tec.openplanner.team/stops/X619aka", "https://tec.openplanner.team/stops/X619akb"], ["https://tec.openplanner.team/stops/N423afb", "https://tec.openplanner.team/stops/NH21aea"], ["https://tec.openplanner.team/stops/H5at114a", "https://tec.openplanner.team/stops/H5at133b"], ["https://tec.openplanner.team/stops/Bnilwal1", "https://tec.openplanner.team/stops/Bnilwal2"], ["https://tec.openplanner.team/stops/X850amb", "https://tec.openplanner.team/stops/X850ana"], ["https://tec.openplanner.team/stops/H4vz368a", "https://tec.openplanner.team/stops/H4vz369b"], ["https://tec.openplanner.team/stops/N127aba", "https://tec.openplanner.team/stops/N127aib"], ["https://tec.openplanner.team/stops/Bptbmco2", "https://tec.openplanner.team/stops/Brxmcna2"], ["https://tec.openplanner.team/stops/H4mt216b", "https://tec.openplanner.team/stops/H4mt217b"], ["https://tec.openplanner.team/stops/LNAplac1", "https://tec.openplanner.team/stops/LNAplac2"], ["https://tec.openplanner.team/stops/LPAeg--1", "https://tec.openplanner.team/stops/LPAmosa1"], ["https://tec.openplanner.team/stops/LAWlonc2", "https://tec.openplanner.team/stops/LAWvill2"], ["https://tec.openplanner.team/stops/LhGgeme1", "https://tec.openplanner.team/stops/LhGgeme2"], ["https://tec.openplanner.team/stops/H5at132b", "https://tec.openplanner.team/stops/H5ma185b"], ["https://tec.openplanner.team/stops/H1ms296a", "https://tec.openplanner.team/stops/H1ms296b"], ["https://tec.openplanner.team/stops/LhMdorf1", "https://tec.openplanner.team/stops/LhMmeil1"], ["https://tec.openplanner.team/stops/Beclbar1", "https://tec.openplanner.team/stops/Becltri1"], ["https://tec.openplanner.team/stops/LAmab752", "https://tec.openplanner.team/stops/LVLchem1"], ["https://tec.openplanner.team/stops/H2le152a", "https://tec.openplanner.team/stops/H2le152b"], ["https://tec.openplanner.team/stops/X750aea", "https://tec.openplanner.team/stops/X750bpa"], ["https://tec.openplanner.team/stops/LBVcent2", "https://tec.openplanner.team/stops/LBVronx1"], ["https://tec.openplanner.team/stops/LLrhaut2", "https://tec.openplanner.team/stops/LLrhaut3"], ["https://tec.openplanner.team/stops/Cfvombo1", "https://tec.openplanner.team/stops/Cfvombo2"], ["https://tec.openplanner.team/stops/N525aua", "https://tec.openplanner.team/stops/N525aub"], ["https://tec.openplanner.team/stops/X757ada", "https://tec.openplanner.team/stops/X757adb"], ["https://tec.openplanner.team/stops/LGLecol2", "https://tec.openplanner.team/stops/LGLlaur2"], ["https://tec.openplanner.team/stops/X947aab", "https://tec.openplanner.team/stops/X948agb"], ["https://tec.openplanner.team/stops/Bptrgri2", "https://tec.openplanner.team/stops/Brosegl2"], ["https://tec.openplanner.team/stops/Bbstchn2", "https://tec.openplanner.team/stops/Bwaygrg2"], ["https://tec.openplanner.team/stops/Bcsecar1", "https://tec.openplanner.team/stops/Bcsecar2"], ["https://tec.openplanner.team/stops/LBscime1", "https://tec.openplanner.team/stops/LBscime2"], ["https://tec.openplanner.team/stops/H1gc123b", "https://tec.openplanner.team/stops/H1gc124a"], ["https://tec.openplanner.team/stops/H2ch110a", "https://tec.openplanner.team/stops/H2ch121a"], ["https://tec.openplanner.team/stops/Lvefran1", "https://tec.openplanner.team/stops/Lvevieu2"], ["https://tec.openplanner.team/stops/Lhurigu1", "https://tec.openplanner.team/stops/Lvearle4"], ["https://tec.openplanner.team/stops/Ccigene1", "https://tec.openplanner.team/stops/Ccisart1"], ["https://tec.openplanner.team/stops/LPrcarr1", "https://tec.openplanner.team/stops/LWZbeem2"], ["https://tec.openplanner.team/stops/N162aeb", "https://tec.openplanner.team/stops/N162afa"], ["https://tec.openplanner.team/stops/Ccycont1", "https://tec.openplanner.team/stops/Cvlstan2"], ["https://tec.openplanner.team/stops/Lsnmala1", "https://tec.openplanner.team/stops/Lsnmala2"], ["https://tec.openplanner.team/stops/H5pe144a", "https://tec.openplanner.team/stops/H5pe149a"], ["https://tec.openplanner.team/stops/X908aba", "https://tec.openplanner.team/stops/X955ahb"], ["https://tec.openplanner.team/stops/LTIecma1", "https://tec.openplanner.team/stops/LTIecma2"], ["https://tec.openplanner.team/stops/LeYberl2", "https://tec.openplanner.team/stops/LeYraaf2"], ["https://tec.openplanner.team/stops/X919ada", "https://tec.openplanner.team/stops/X921akb"], ["https://tec.openplanner.team/stops/H2lc169a", "https://tec.openplanner.team/stops/H2lc169d"], ["https://tec.openplanner.team/stops/N509bfa", "https://tec.openplanner.team/stops/N509bgb"], ["https://tec.openplanner.team/stops/H3lr109c", "https://tec.openplanner.team/stops/H3lr110b"], ["https://tec.openplanner.team/stops/H4ty351a", "https://tec.openplanner.team/stops/H4ty416a"], ["https://tec.openplanner.team/stops/LVEcroi1", "https://tec.openplanner.team/stops/LVEjard1"], ["https://tec.openplanner.team/stops/N501fbz", "https://tec.openplanner.team/stops/N501ltb"], ["https://tec.openplanner.team/stops/H1ob328a", "https://tec.openplanner.team/stops/H1ob330a"], ["https://tec.openplanner.team/stops/X734anc", "https://tec.openplanner.team/stops/X734aoa"], ["https://tec.openplanner.team/stops/Lhecarc*", "https://tec.openplanner.team/stops/Lhecarc1"], ["https://tec.openplanner.team/stops/LLrfrai1", "https://tec.openplanner.team/stops/LLrjeho2"], ["https://tec.openplanner.team/stops/N352abb", "https://tec.openplanner.team/stops/N352aja"], ["https://tec.openplanner.team/stops/X371aib", "https://tec.openplanner.team/stops/X371ajb"], ["https://tec.openplanner.team/stops/X804bta", "https://tec.openplanner.team/stops/X804btb"], ["https://tec.openplanner.team/stops/Bmrlhan2", "https://tec.openplanner.team/stops/Bmrlhan4"], ["https://tec.openplanner.team/stops/Cjucopp1", "https://tec.openplanner.team/stops/Cjutrou3"], ["https://tec.openplanner.team/stops/N232ana", "https://tec.openplanner.team/stops/N232bqa"], ["https://tec.openplanner.team/stops/N501cma", "https://tec.openplanner.team/stops/N501dna"], ["https://tec.openplanner.team/stops/H2ma209b", "https://tec.openplanner.team/stops/H3bo103a"], ["https://tec.openplanner.team/stops/N212ada", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/H1ms253b", "https://tec.openplanner.team/stops/H1ms907a"], ["https://tec.openplanner.team/stops/X601ata", "https://tec.openplanner.team/stops/X601ava"], ["https://tec.openplanner.team/stops/Cmlrous2", "https://tec.openplanner.team/stops/Cmlvitf1"], ["https://tec.openplanner.team/stops/N343ala", "https://tec.openplanner.team/stops/N343alb"], ["https://tec.openplanner.team/stops/Cnachat2", "https://tec.openplanner.team/stops/Cnacroc1"], ["https://tec.openplanner.team/stops/H4ln129a", "https://tec.openplanner.team/stops/H4ne141a"], ["https://tec.openplanner.team/stops/N229aaa", "https://tec.openplanner.team/stops/N291aca"], ["https://tec.openplanner.team/stops/N501kud", "https://tec.openplanner.team/stops/N501lna"], ["https://tec.openplanner.team/stops/H4fl179b", "https://tec.openplanner.team/stops/H4mg139a"], ["https://tec.openplanner.team/stops/Brsgera1", "https://tec.openplanner.team/stops/Brsggea1"], ["https://tec.openplanner.team/stops/X718aaa", "https://tec.openplanner.team/stops/X718aka"], ["https://tec.openplanner.team/stops/N577ada", "https://tec.openplanner.team/stops/N577aia"], ["https://tec.openplanner.team/stops/LHUbail1", "https://tec.openplanner.team/stops/LHUsart2"], ["https://tec.openplanner.team/stops/Bwatceg2", "https://tec.openplanner.team/stops/Bwatcpl2"], ["https://tec.openplanner.team/stops/N218aba", "https://tec.openplanner.team/stops/N331ada"], ["https://tec.openplanner.team/stops/LHolone1", "https://tec.openplanner.team/stops/LHZec--2"], ["https://tec.openplanner.team/stops/Cmahotv1", "https://tec.openplanner.team/stops/CMcart2"], ["https://tec.openplanner.team/stops/Cctchea1", "https://tec.openplanner.team/stops/NC11ajb"], ["https://tec.openplanner.team/stops/H4pl112a", "https://tec.openplanner.team/stops/H4pl121a"], ["https://tec.openplanner.team/stops/LORdtec*", "https://tec.openplanner.team/stops/LORvill3"], ["https://tec.openplanner.team/stops/N501ajb", "https://tec.openplanner.team/stops/N501bfz"], ["https://tec.openplanner.team/stops/LMforba1", "https://tec.openplanner.team/stops/LMfpral2"], ["https://tec.openplanner.team/stops/Caujonc2", "https://tec.openplanner.team/stops/Cauromi2"], ["https://tec.openplanner.team/stops/LBgcroi1", "https://tec.openplanner.team/stops/LBgcroi4"], ["https://tec.openplanner.team/stops/LRR2egl1", "https://tec.openplanner.team/stops/LRRpost2"], ["https://tec.openplanner.team/stops/LHrprie1", "https://tec.openplanner.team/stops/LHrwaya1"], ["https://tec.openplanner.team/stops/N547aha", "https://tec.openplanner.team/stops/N573apa"], ["https://tec.openplanner.team/stops/LSpfond1", "https://tec.openplanner.team/stops/LSphote1"], ["https://tec.openplanner.team/stops/LBRpier1", "https://tec.openplanner.team/stops/LBRtrag1"], ["https://tec.openplanner.team/stops/Cthbeff1", "https://tec.openplanner.team/stops/Cthhvil6"], ["https://tec.openplanner.team/stops/X877afa", "https://tec.openplanner.team/stops/X877afb"], ["https://tec.openplanner.team/stops/Cpllimi3", "https://tec.openplanner.team/stops/Cpllimi4"], ["https://tec.openplanner.team/stops/LsVeite1", "https://tec.openplanner.team/stops/LwLprum1"], ["https://tec.openplanner.team/stops/H1en101a", "https://tec.openplanner.team/stops/H1en102a"], ["https://tec.openplanner.team/stops/N501bsa", "https://tec.openplanner.team/stops/N999aab"], ["https://tec.openplanner.team/stops/LWacime1", "https://tec.openplanner.team/stops/LWagare*"], ["https://tec.openplanner.team/stops/LCeanne1", "https://tec.openplanner.team/stops/LFarhuy2"], ["https://tec.openplanner.team/stops/Bmrsmco1", "https://tec.openplanner.team/stops/Bmrswag1"], ["https://tec.openplanner.team/stops/H1do127a", "https://tec.openplanner.team/stops/H1do130a"], ["https://tec.openplanner.team/stops/Bwavcen1", "https://tec.openplanner.team/stops/Bwavmes2"], ["https://tec.openplanner.team/stops/LPbchat1", "https://tec.openplanner.team/stops/LPbover2"], ["https://tec.openplanner.team/stops/Bgzddub1", "https://tec.openplanner.team/stops/Bgzdsta2"], ["https://tec.openplanner.team/stops/H1te175a", "https://tec.openplanner.team/stops/H1te198b"], ["https://tec.openplanner.team/stops/LAYchal1", "https://tec.openplanner.team/stops/LAYcont1"], ["https://tec.openplanner.team/stops/Bblafra1", "https://tec.openplanner.team/stops/Bblajap1"], ["https://tec.openplanner.team/stops/H4ty311b", "https://tec.openplanner.team/stops/H4vx360a"], ["https://tec.openplanner.team/stops/H4bv145a", "https://tec.openplanner.team/stops/H4os220b"], ["https://tec.openplanner.team/stops/LrEkreu2", "https://tec.openplanner.team/stops/LrEviel1"], ["https://tec.openplanner.team/stops/Bthscbl1", "https://tec.openplanner.team/stops/NL37alb"], ["https://tec.openplanner.team/stops/X771aia", "https://tec.openplanner.team/stops/X771aib"], ["https://tec.openplanner.team/stops/N531ada", "https://tec.openplanner.team/stops/N531afh"], ["https://tec.openplanner.team/stops/X760aca", "https://tec.openplanner.team/stops/X760adb"], ["https://tec.openplanner.team/stops/H1me115a", "https://tec.openplanner.team/stops/H1so132a"], ["https://tec.openplanner.team/stops/X818ata", "https://tec.openplanner.team/stops/X820aeb"], ["https://tec.openplanner.team/stops/Cslbarb2", "https://tec.openplanner.team/stops/Cslegli2"], ["https://tec.openplanner.team/stops/X601ada", "https://tec.openplanner.team/stops/X601aeb"], ["https://tec.openplanner.team/stops/X750aba", "https://tec.openplanner.team/stops/X750abb"], ["https://tec.openplanner.team/stops/Bcbqgar2", "https://tec.openplanner.team/stops/Bcbqufo1"], ["https://tec.openplanner.team/stops/N232aib", "https://tec.openplanner.team/stops/N232bka"], ["https://tec.openplanner.team/stops/Cwfdupo1", "https://tec.openplanner.team/stops/Cwfdupo2"], ["https://tec.openplanner.team/stops/H1gh153b", "https://tec.openplanner.team/stops/H1je225b"], ["https://tec.openplanner.team/stops/LWEcite2", "https://tec.openplanner.team/stops/LWEgend2"], ["https://tec.openplanner.team/stops/X713agb", "https://tec.openplanner.team/stops/X713ahb"], ["https://tec.openplanner.team/stops/N562aib", "https://tec.openplanner.team/stops/N562atb"], ["https://tec.openplanner.team/stops/Cci4bra4", "https://tec.openplanner.team/stops/Cmllait1"], ["https://tec.openplanner.team/stops/LeUroll1", "https://tec.openplanner.team/stops/LeUvoss1"], ["https://tec.openplanner.team/stops/H1si155a", "https://tec.openplanner.team/stops/H1si157a"], ["https://tec.openplanner.team/stops/Brxmcna1", "https://tec.openplanner.team/stops/Brxmhai1"], ["https://tec.openplanner.team/stops/LHmcarr2", "https://tec.openplanner.team/stops/LHmcite1"], ["https://tec.openplanner.team/stops/Lmlcrot1", "https://tec.openplanner.team/stops/Lmltrix*"], ["https://tec.openplanner.team/stops/N522aia", "https://tec.openplanner.team/stops/N576ama"], ["https://tec.openplanner.team/stops/N543bia", "https://tec.openplanner.team/stops/N543bib"], ["https://tec.openplanner.team/stops/Cvrhaie2", "https://tec.openplanner.team/stops/NH03ada"], ["https://tec.openplanner.team/stops/Lmodeja1", "https://tec.openplanner.team/stops/Lmoknae2"], ["https://tec.openplanner.team/stops/LFmcarr2", "https://tec.openplanner.team/stops/LKmcabi2"], ["https://tec.openplanner.team/stops/Cnaha561", "https://tec.openplanner.team/stops/Cnating2"], ["https://tec.openplanner.team/stops/H1ag105a", "https://tec.openplanner.team/stops/H1ag106a"], ["https://tec.openplanner.team/stops/X601awa", "https://tec.openplanner.team/stops/X601dcb"], ["https://tec.openplanner.team/stops/LFEland2", "https://tec.openplanner.team/stops/LMYvill2"], ["https://tec.openplanner.team/stops/Lsmdepo2", "https://tec.openplanner.team/stops/Lsmecol1"], ["https://tec.openplanner.team/stops/H1ev112a", "https://tec.openplanner.team/stops/H1ev115a"], ["https://tec.openplanner.team/stops/Cgy4bra1", "https://tec.openplanner.team/stops/Cgyplvi2"], ["https://tec.openplanner.team/stops/Lmochar1", "https://tec.openplanner.team/stops/Lmomarr4"], ["https://tec.openplanner.team/stops/N542ara", "https://tec.openplanner.team/stops/N542arb"], ["https://tec.openplanner.team/stops/LDpzol-2", "https://tec.openplanner.team/stops/LTEnuro2"], ["https://tec.openplanner.team/stops/X982ara", "https://tec.openplanner.team/stops/X982bwa"], ["https://tec.openplanner.team/stops/N504acb", "https://tec.openplanner.team/stops/N579aeb"], ["https://tec.openplanner.team/stops/X610aea", "https://tec.openplanner.team/stops/X610aeb"], ["https://tec.openplanner.team/stops/LLMjacq2", "https://tec.openplanner.team/stops/LThpoli2"], ["https://tec.openplanner.team/stops/Lceembo1", "https://tec.openplanner.team/stops/Lceourt2"], ["https://tec.openplanner.team/stops/Chhlori1", "https://tec.openplanner.team/stops/Chhverr2"], ["https://tec.openplanner.team/stops/Cgystbe2", "https://tec.openplanner.team/stops/Cmtdepo1"], ["https://tec.openplanner.team/stops/H1bn114b", "https://tec.openplanner.team/stops/H1no142a"], ["https://tec.openplanner.team/stops/Lagcile1", "https://tec.openplanner.team/stops/Lagptba2"], ["https://tec.openplanner.team/stops/CMchfl1", "https://tec.openplanner.team/stops/CMleop2"], ["https://tec.openplanner.team/stops/Cjucopp2", "https://tec.openplanner.team/stops/Cjupn1"], ["https://tec.openplanner.team/stops/X361aba", "https://tec.openplanner.team/stops/X361abb"], ["https://tec.openplanner.team/stops/X801clb", "https://tec.openplanner.team/stops/X801cmb"], ["https://tec.openplanner.team/stops/X595afc", "https://tec.openplanner.team/stops/X713aaa"], ["https://tec.openplanner.team/stops/H4bc101d", "https://tec.openplanner.team/stops/H5bs103b"], ["https://tec.openplanner.team/stops/X654aea", "https://tec.openplanner.team/stops/X654afa"], ["https://tec.openplanner.team/stops/H1au112a", "https://tec.openplanner.team/stops/H1ro139a"], ["https://tec.openplanner.team/stops/N542ada", "https://tec.openplanner.team/stops/N542aqa"], ["https://tec.openplanner.team/stops/X747ada", "https://tec.openplanner.team/stops/X747adb"], ["https://tec.openplanner.team/stops/Bsmgpon1", "https://tec.openplanner.team/stops/Btanvil1"], ["https://tec.openplanner.team/stops/Bniveco1", "https://tec.openplanner.team/stops/Bnivsoi2"], ["https://tec.openplanner.team/stops/X897aaa", "https://tec.openplanner.team/stops/X897aab"], ["https://tec.openplanner.team/stops/LPRmoul1", "https://tec.openplanner.team/stops/LPRmoul2"], ["https://tec.openplanner.team/stops/X629aba", "https://tec.openplanner.team/stops/X636ayb"], ["https://tec.openplanner.team/stops/Lseboia1", "https://tec.openplanner.team/stops/Lsepudd1"], ["https://tec.openplanner.team/stops/Cmyoasi2", "https://tec.openplanner.team/stops/Cmyrays1"], ["https://tec.openplanner.team/stops/N505aaa", "https://tec.openplanner.team/stops/N505afa"], ["https://tec.openplanner.team/stops/Cnagrro1", "https://tec.openplanner.team/stops/Cnaplha2"], ["https://tec.openplanner.team/stops/Lsnhoco2", "https://tec.openplanner.team/stops/Ltibalt1"], ["https://tec.openplanner.team/stops/Cgomoul1", "https://tec.openplanner.team/stops/Cgomoul2"], ["https://tec.openplanner.team/stops/LMalune3", "https://tec.openplanner.team/stops/LMamuse3"], ["https://tec.openplanner.team/stops/Clbchar2", "https://tec.openplanner.team/stops/Clbhour2"], ["https://tec.openplanner.team/stops/LSMec--1", "https://tec.openplanner.team/stops/LSMpoin1"], ["https://tec.openplanner.team/stops/X896afb", "https://tec.openplanner.team/stops/X897aqb"], ["https://tec.openplanner.team/stops/H2sb232a", "https://tec.openplanner.team/stops/H3th134b"], ["https://tec.openplanner.team/stops/Lhrgall2", "https://tec.openplanner.team/stops/Lhrlalo2"], ["https://tec.openplanner.team/stops/H2fy119a", "https://tec.openplanner.team/stops/H2fy119b"], ["https://tec.openplanner.team/stops/LLUdoya2", "https://tec.openplanner.team/stops/LLUlieg1"], ["https://tec.openplanner.team/stops/X948apb", "https://tec.openplanner.team/stops/X948bab"], ["https://tec.openplanner.team/stops/X754ada", "https://tec.openplanner.team/stops/X754aeb"], ["https://tec.openplanner.team/stops/Baudvdu1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/LHNhv--2", "https://tec.openplanner.team/stops/LHNland1"], ["https://tec.openplanner.team/stops/X983ada", "https://tec.openplanner.team/stops/X983aea"], ["https://tec.openplanner.team/stops/Lsmtini1", "https://tec.openplanner.team/stops/Lsmtini3"], ["https://tec.openplanner.team/stops/Bwatcoc1", "https://tec.openplanner.team/stops/Bwatsan1"], ["https://tec.openplanner.team/stops/X398aba", "https://tec.openplanner.team/stops/X398aea"], ["https://tec.openplanner.team/stops/Lfhcime2", "https://tec.openplanner.team/stops/Lfhsoux2"], ["https://tec.openplanner.team/stops/N874alb", "https://tec.openplanner.team/stops/N874ama"], ["https://tec.openplanner.team/stops/LTRpeec1", "https://tec.openplanner.team/stops/LTRpeec2"], ["https://tec.openplanner.team/stops/X764afb", "https://tec.openplanner.team/stops/X791abb"], ["https://tec.openplanner.team/stops/LHChoek4", "https://tec.openplanner.team/stops/LHChoof4"], ["https://tec.openplanner.team/stops/LFEague1", "https://tec.openplanner.team/stops/LFEmala1"], ["https://tec.openplanner.team/stops/Caih1632", "https://tec.openplanner.team/stops/N543cca"], ["https://tec.openplanner.team/stops/LwSgeme2", "https://tec.openplanner.team/stops/LwSschw1"], ["https://tec.openplanner.team/stops/N134abb", "https://tec.openplanner.team/stops/N134ada"], ["https://tec.openplanner.team/stops/Cmtpaix2", "https://tec.openplanner.team/stops/Cmtpire1"], ["https://tec.openplanner.team/stops/LBCtros1", "https://tec.openplanner.team/stops/LBCtros2"], ["https://tec.openplanner.team/stops/X902aza", "https://tec.openplanner.team/stops/X902baa"], ["https://tec.openplanner.team/stops/LLrgara2", "https://tec.openplanner.team/stops/LSPgend2"], ["https://tec.openplanner.team/stops/Crolach1", "https://tec.openplanner.team/stops/Crolach2"], ["https://tec.openplanner.team/stops/N523aca", "https://tec.openplanner.team/stops/N523acb"], ["https://tec.openplanner.team/stops/Lchsa631", "https://tec.openplanner.team/stops/LHOgymn2"], ["https://tec.openplanner.team/stops/X354abb", "https://tec.openplanner.team/stops/X354aga"], ["https://tec.openplanner.team/stops/Cchwate1", "https://tec.openplanner.team/stops/CMwate2"], ["https://tec.openplanner.team/stops/H4gr109a", "https://tec.openplanner.team/stops/H4hu122a"], ["https://tec.openplanner.team/stops/LORdtec*", "https://tec.openplanner.team/stops/LORhorp1"], ["https://tec.openplanner.team/stops/Bblmcel2", "https://tec.openplanner.team/stops/Bchacen1"], ["https://tec.openplanner.team/stops/LTOeg--1", "https://tec.openplanner.team/stops/LTOplac2"], ["https://tec.openplanner.team/stops/H4bo121b", "https://tec.openplanner.team/stops/H5qu145a"], ["https://tec.openplanner.team/stops/Ccofayt1", "https://tec.openplanner.team/stops/Ccomott2"], ["https://tec.openplanner.team/stops/X818aoa", "https://tec.openplanner.team/stops/X818apa"], ["https://tec.openplanner.team/stops/Lhragri1", "https://tec.openplanner.team/stops/Lhrrhee*"], ["https://tec.openplanner.team/stops/X609aib", "https://tec.openplanner.team/stops/X610aia"], ["https://tec.openplanner.team/stops/Bllnrro1", "https://tec.openplanner.team/stops/Bmsgaxp2"], ["https://tec.openplanner.team/stops/LCRvert1", "https://tec.openplanner.team/stops/LFmbure1"], ["https://tec.openplanner.team/stops/LHUomni2", "https://tec.openplanner.team/stops/LHUresi3"], ["https://tec.openplanner.team/stops/H1te183a", "https://tec.openplanner.team/stops/H1te183b"], ["https://tec.openplanner.team/stops/LVBrmon1", "https://tec.openplanner.team/stops/LVBrmon2"], ["https://tec.openplanner.team/stops/LBNauto2", "https://tec.openplanner.team/stops/LWElanc2"], ["https://tec.openplanner.team/stops/Lheelva1", "https://tec.openplanner.team/stops/LOUsorb1"], ["https://tec.openplanner.team/stops/H4bo115b", "https://tec.openplanner.team/stops/H4bo116b"], ["https://tec.openplanner.team/stops/LeUfuss1", "https://tec.openplanner.team/stops/LeUsch%C3%B61"], ["https://tec.openplanner.team/stops/X601bya", "https://tec.openplanner.team/stops/X601cla"], ["https://tec.openplanner.team/stops/X749ada", "https://tec.openplanner.team/stops/X749aea"], ["https://tec.openplanner.team/stops/LSZjona2", "https://tec.openplanner.team/stops/LSZnive1"], ["https://tec.openplanner.team/stops/N106apa", "https://tec.openplanner.team/stops/N106aqa"], ["https://tec.openplanner.team/stops/Bgnteco2", "https://tec.openplanner.team/stops/Bgntpos2"], ["https://tec.openplanner.team/stops/LWDmass1", "https://tec.openplanner.team/stops/LWDsieg1"], ["https://tec.openplanner.team/stops/Lenabat1", "https://tec.openplanner.team/stops/Llmhalt1"], ["https://tec.openplanner.team/stops/Lagbeno2", "https://tec.openplanner.team/stops/Lagmoli2"], ["https://tec.openplanner.team/stops/N565afb", "https://tec.openplanner.team/stops/N565aib"], ["https://tec.openplanner.team/stops/Bbuztai1", "https://tec.openplanner.team/stops/Bobacou1"], ["https://tec.openplanner.team/stops/Csedoua1", "https://tec.openplanner.team/stops/Cselibe1"], ["https://tec.openplanner.team/stops/N202aia", "https://tec.openplanner.team/stops/N202aib"], ["https://tec.openplanner.team/stops/H1br129a", "https://tec.openplanner.team/stops/H2ma202b"], ["https://tec.openplanner.team/stops/Bwatran2", "https://tec.openplanner.team/stops/Bwatras2"], ["https://tec.openplanner.team/stops/LoUwelc2", "https://tec.openplanner.team/stops/LsBzent2"], ["https://tec.openplanner.team/stops/H1ha185a", "https://tec.openplanner.team/stops/H1ha190b"], ["https://tec.openplanner.team/stops/N501awa", "https://tec.openplanner.team/stops/N501dca"], ["https://tec.openplanner.team/stops/Cchheig1", "https://tec.openplanner.team/stops/Cchviad2"], ["https://tec.openplanner.team/stops/Lhubarl1", "https://tec.openplanner.team/stops/Ljhheus1"], ["https://tec.openplanner.team/stops/X713aib", "https://tec.openplanner.team/stops/X713ala"], ["https://tec.openplanner.team/stops/N505aib", "https://tec.openplanner.team/stops/N505ala"], ["https://tec.openplanner.team/stops/X398aaa", "https://tec.openplanner.team/stops/X999anb"], ["https://tec.openplanner.team/stops/Bcsemon1", "https://tec.openplanner.team/stops/Bsmgsuz2"], ["https://tec.openplanner.team/stops/Clbbonn1", "https://tec.openplanner.team/stops/Clbbonn4"], ["https://tec.openplanner.team/stops/X661aka", "https://tec.openplanner.team/stops/X661akb"], ["https://tec.openplanner.team/stops/X640aba", "https://tec.openplanner.team/stops/X640aha"], ["https://tec.openplanner.team/stops/Bwaunce1", "https://tec.openplanner.team/stops/Bwaunce2"], ["https://tec.openplanner.team/stops/LAUberg1", "https://tec.openplanner.team/stops/LAUmerc1"], ["https://tec.openplanner.team/stops/H1ms287a", "https://tec.openplanner.team/stops/H1ms905a"], ["https://tec.openplanner.team/stops/Bneeegl2", "https://tec.openplanner.team/stops/Bneesan2"], ["https://tec.openplanner.team/stops/N534bsb", "https://tec.openplanner.team/stops/N534bva"], ["https://tec.openplanner.team/stops/H1ag104b", "https://tec.openplanner.team/stops/H1ag106b"], ["https://tec.openplanner.team/stops/N532aeb", "https://tec.openplanner.team/stops/N532anb"], ["https://tec.openplanner.team/stops/H1be101a", "https://tec.openplanner.team/stops/H1er108a"], ["https://tec.openplanner.team/stops/X734and", "https://tec.openplanner.team/stops/X775abb"], ["https://tec.openplanner.team/stops/X662ana", "https://tec.openplanner.team/stops/X662aoa"], ["https://tec.openplanner.team/stops/H4og215b", "https://tec.openplanner.team/stops/H4to137b"], ["https://tec.openplanner.team/stops/Bblafab1", "https://tec.openplanner.team/stops/Bblatet1"], ["https://tec.openplanner.team/stops/X979afb", "https://tec.openplanner.team/stops/X979aka"], ["https://tec.openplanner.team/stops/Cgystjo3", "https://tec.openplanner.team/stops/Cmtmath2"], ["https://tec.openplanner.team/stops/H1hn208b", "https://tec.openplanner.team/stops/H1hn210a"], ["https://tec.openplanner.team/stops/Lcceg--2", "https://tec.openplanner.team/stops/LRaplac1"], ["https://tec.openplanner.team/stops/H4av107b", "https://tec.openplanner.team/stops/H4ef162b"], ["https://tec.openplanner.team/stops/Bjaugaz1", "https://tec.openplanner.team/stops/Bolphgr1"], ["https://tec.openplanner.team/stops/Ladabot2", "https://tec.openplanner.team/stops/Ladgron2"], ["https://tec.openplanner.team/stops/H1qu110a", "https://tec.openplanner.team/stops/H1qu110b"], ["https://tec.openplanner.team/stops/Cmyland2", "https://tec.openplanner.team/stops/Cmyland5"], ["https://tec.openplanner.team/stops/H1em101a", "https://tec.openplanner.team/stops/H1ev115b"], ["https://tec.openplanner.team/stops/H1bn114b", "https://tec.openplanner.team/stops/H1qp140b"], ["https://tec.openplanner.team/stops/LLUadze1", "https://tec.openplanner.team/stops/LLUgend1"], ["https://tec.openplanner.team/stops/H4mo205a", "https://tec.openplanner.team/stops/H4mo205b"], ["https://tec.openplanner.team/stops/Llgsnap2", "https://tec.openplanner.team/stops/Lsntvbi2"], ["https://tec.openplanner.team/stops/N311aec", "https://tec.openplanner.team/stops/N311afb"], ["https://tec.openplanner.team/stops/Chhdubr1", "https://tec.openplanner.team/stops/Chhprai1"], ["https://tec.openplanner.team/stops/N219adb", "https://tec.openplanner.team/stops/N219aeb"], ["https://tec.openplanner.team/stops/H4ty283a", "https://tec.openplanner.team/stops/H4ty322d"], ["https://tec.openplanner.team/stops/N550aaa", "https://tec.openplanner.team/stops/N550ama"], ["https://tec.openplanner.team/stops/X601aib", "https://tec.openplanner.team/stops/X601cda"], ["https://tec.openplanner.team/stops/LLelava3", "https://tec.openplanner.team/stops/X547abb"], ["https://tec.openplanner.team/stops/Bgembhe1", "https://tec.openplanner.team/stops/Bgembhe2"], ["https://tec.openplanner.team/stops/Cmmcime1", "https://tec.openplanner.team/stops/Cmmmarb1"], ["https://tec.openplanner.team/stops/N387acc", "https://tec.openplanner.team/stops/N387ahb"], ["https://tec.openplanner.team/stops/H4pi130b", "https://tec.openplanner.team/stops/H4pi136b"], ["https://tec.openplanner.team/stops/H1cu113a", "https://tec.openplanner.team/stops/H1cu125a"], ["https://tec.openplanner.team/stops/LBTfoot2", "https://tec.openplanner.team/stops/LBTnors1"], ["https://tec.openplanner.team/stops/N113acb", "https://tec.openplanner.team/stops/N113ada"], ["https://tec.openplanner.team/stops/H1si162a", "https://tec.openplanner.team/stops/H1si164b"], ["https://tec.openplanner.team/stops/X740afa", "https://tec.openplanner.team/stops/X759aga"], ["https://tec.openplanner.team/stops/H1nm138a", "https://tec.openplanner.team/stops/H1nm138b"], ["https://tec.openplanner.team/stops/X747akb", "https://tec.openplanner.team/stops/X749aab"], ["https://tec.openplanner.team/stops/Lvichpl1", "https://tec.openplanner.team/stops/Lvisere2"], ["https://tec.openplanner.team/stops/LLAvi651", "https://tec.openplanner.team/stops/LPlpomp1"], ["https://tec.openplanner.team/stops/LHcaube1", "https://tec.openplanner.team/stops/LMTfagn1"], ["https://tec.openplanner.team/stops/Lvimc--2", "https://tec.openplanner.team/stops/Lvitomb1"], ["https://tec.openplanner.team/stops/LBpcren1", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://tec.openplanner.team/stops/Lvtauna1", "https://tec.openplanner.team/stops/Lvtauna2"], ["https://tec.openplanner.team/stops/X954aha", "https://tec.openplanner.team/stops/X954ahb"], ["https://tec.openplanner.team/stops/Llgdelb1", "https://tec.openplanner.team/stops/Llgsimo1"], ["https://tec.openplanner.team/stops/LhDkreu1", "https://tec.openplanner.team/stops/LhDkreu3"], ["https://tec.openplanner.team/stops/X724abb", "https://tec.openplanner.team/stops/X724aib"], ["https://tec.openplanner.team/stops/N534axb", "https://tec.openplanner.team/stops/N534bdb"], ["https://tec.openplanner.team/stops/Lgrcour2", "https://tec.openplanner.team/stops/Lgrrein1"], ["https://tec.openplanner.team/stops/X898aca", "https://tec.openplanner.team/stops/X995afa"], ["https://tec.openplanner.team/stops/LwYbruc1", "https://tec.openplanner.team/stops/LwYbruc3"], ["https://tec.openplanner.team/stops/X398afa", "https://tec.openplanner.team/stops/X999amb"], ["https://tec.openplanner.team/stops/X601agb", "https://tec.openplanner.team/stops/X601cba"], ["https://tec.openplanner.team/stops/Ladabot1", "https://tec.openplanner.team/stops/Ladgron1"], ["https://tec.openplanner.team/stops/Cmogrbu2", "https://tec.openplanner.team/stops/Cmonvci2"], ["https://tec.openplanner.team/stops/H1fl136a", "https://tec.openplanner.team/stops/H1fl142a"], ["https://tec.openplanner.team/stops/N343aeb", "https://tec.openplanner.team/stops/X892aga"], ["https://tec.openplanner.team/stops/N117aba", "https://tec.openplanner.team/stops/N117abb"], ["https://tec.openplanner.team/stops/LROgeuz1", "https://tec.openplanner.team/stops/LROgeuz2"], ["https://tec.openplanner.team/stops/Cjupllo1", "https://tec.openplanner.team/stops/CMtsan2"], ["https://tec.openplanner.team/stops/Cvlcalv1", "https://tec.openplanner.team/stops/Cvlcen2"], ["https://tec.openplanner.team/stops/N501fma", "https://tec.openplanner.team/stops/N501kva"], ["https://tec.openplanner.team/stops/N501cea", "https://tec.openplanner.team/stops/N501cfb"], ["https://tec.openplanner.team/stops/Csygare1", "https://tec.openplanner.team/stops/Csygare3"], ["https://tec.openplanner.team/stops/N153aba", "https://tec.openplanner.team/stops/N153aca"], ["https://tec.openplanner.team/stops/N501dpb", "https://tec.openplanner.team/stops/N501ena"], ["https://tec.openplanner.team/stops/Cmmbmad1", "https://tec.openplanner.team/stops/Cmmpjou2"], ["https://tec.openplanner.team/stops/LCsjone1", "https://tec.openplanner.team/stops/LSCchap1"], ["https://tec.openplanner.team/stops/Cgdberl2", "https://tec.openplanner.team/stops/Csyplac2"], ["https://tec.openplanner.team/stops/N353abb", "https://tec.openplanner.team/stops/N353aea"], ["https://tec.openplanner.team/stops/H2go116a", "https://tec.openplanner.team/stops/H2go117b"], ["https://tec.openplanner.team/stops/N533alb", "https://tec.openplanner.team/stops/N533alf"], ["https://tec.openplanner.team/stops/LBIcarg1", "https://tec.openplanner.team/stops/Lmlpata*"], ["https://tec.openplanner.team/stops/H4gu108a", "https://tec.openplanner.team/stops/H4jm116a"], ["https://tec.openplanner.team/stops/N565aca", "https://tec.openplanner.team/stops/N565acb"], ["https://tec.openplanner.team/stops/Bdvmcbo2", "https://tec.openplanner.team/stops/Bdvmccu1"], ["https://tec.openplanner.team/stops/H4hx118a", "https://tec.openplanner.team/stops/H4hx118b"], ["https://tec.openplanner.team/stops/LnUneun3", "https://tec.openplanner.team/stops/LsVlust1"], ["https://tec.openplanner.team/stops/X802aca", "https://tec.openplanner.team/stops/X802aeb"], ["https://tec.openplanner.team/stops/H1pa109a", "https://tec.openplanner.team/stops/H1pa167a"], ["https://tec.openplanner.team/stops/N562aca", "https://tec.openplanner.team/stops/N562afa"], ["https://tec.openplanner.team/stops/X607aia", "https://tec.openplanner.team/stops/X607ajb"], ["https://tec.openplanner.team/stops/Cselibe2", "https://tec.openplanner.team/stops/Csemacq4"], ["https://tec.openplanner.team/stops/Cgocolo2", "https://tec.openplanner.team/stops/Cgogrco1"], ["https://tec.openplanner.team/stops/H4de113a", "https://tec.openplanner.team/stops/H4wt159a"], ["https://tec.openplanner.team/stops/H4ne131a", "https://tec.openplanner.team/stops/H4ne131b"], ["https://tec.openplanner.team/stops/H1by102a", "https://tec.openplanner.team/stops/H1by102b"], ["https://tec.openplanner.team/stops/LaRkape1", "https://tec.openplanner.team/stops/LmSluxh1"], ["https://tec.openplanner.team/stops/H1mh112a", "https://tec.openplanner.team/stops/H1mh115b"], ["https://tec.openplanner.team/stops/X602ana", "https://tec.openplanner.team/stops/X602aoa"], ["https://tec.openplanner.team/stops/Clrmarl1", "https://tec.openplanner.team/stops/CMpara2"], ["https://tec.openplanner.team/stops/H1ml110a", "https://tec.openplanner.team/stops/H1ml111b"], ["https://tec.openplanner.team/stops/X724aba", "https://tec.openplanner.team/stops/X725bfb"], ["https://tec.openplanner.team/stops/H2hg266a", "https://tec.openplanner.team/stops/H2hg269b"], ["https://tec.openplanner.team/stops/Lfhcoop2", "https://tec.openplanner.team/stops/Lfhrogn2"], ["https://tec.openplanner.team/stops/LVSbleu2", "https://tec.openplanner.team/stops/LVSslin2"], ["https://tec.openplanner.team/stops/LATguis1", "https://tec.openplanner.team/stops/LATguis2"], ["https://tec.openplanner.team/stops/LTaabba2", "https://tec.openplanner.team/stops/LTamag2"], ["https://tec.openplanner.team/stops/Lbhfaye2", "https://tec.openplanner.team/stops/Ljuvert1"], ["https://tec.openplanner.team/stops/LiV19--2", "https://tec.openplanner.team/stops/LiVkreu1"], ["https://tec.openplanner.team/stops/H4pl112a", "https://tec.openplanner.team/stops/H4wn126b"], ["https://tec.openplanner.team/stops/N551aiy", "https://tec.openplanner.team/stops/N551aqb"], ["https://tec.openplanner.team/stops/N308aja", "https://tec.openplanner.team/stops/N308ajb"], ["https://tec.openplanner.team/stops/H1ms312a", "https://tec.openplanner.team/stops/H1ms312b"], ["https://tec.openplanner.team/stops/H4te252b", "https://tec.openplanner.team/stops/H4te261b"], ["https://tec.openplanner.team/stops/Cctathe2", "https://tec.openplanner.team/stops/Ccuhsti2"], ["https://tec.openplanner.team/stops/H1te176a", "https://tec.openplanner.team/stops/H1te176b"], ["https://tec.openplanner.team/stops/Ccoacar1", "https://tec.openplanner.team/stops/Ccotrie2"], ["https://tec.openplanner.team/stops/Llmbell1", "https://tec.openplanner.team/stops/Llmhalt2"], ["https://tec.openplanner.team/stops/Bovecha1", "https://tec.openplanner.team/stops/Bovecha2"], ["https://tec.openplanner.team/stops/X817abb", "https://tec.openplanner.team/stops/X817aca"], ["https://tec.openplanner.team/stops/X904aga", "https://tec.openplanner.team/stops/X943agb"], ["https://tec.openplanner.team/stops/H4be108a", "https://tec.openplanner.team/stops/H4be114a"], ["https://tec.openplanner.team/stops/Bnilcha2", "https://tec.openplanner.team/stops/Bniltri1"], ["https://tec.openplanner.team/stops/X760afb", "https://tec.openplanner.team/stops/X762afb"], ["https://tec.openplanner.team/stops/Cmohame1", "https://tec.openplanner.team/stops/Cmohame2"], ["https://tec.openplanner.team/stops/H4ag100a", "https://tec.openplanner.team/stops/H4fo118b"], ["https://tec.openplanner.team/stops/Bsgeegl1", "https://tec.openplanner.team/stops/Bsgevil2"], ["https://tec.openplanner.team/stops/N229apa", "https://tec.openplanner.team/stops/N231adb"], ["https://tec.openplanner.team/stops/N519ama", "https://tec.openplanner.team/stops/N520aia"], ["https://tec.openplanner.team/stops/Cbfdufa1", "https://tec.openplanner.team/stops/Clvimtr2"], ["https://tec.openplanner.team/stops/H5fl102d", "https://tec.openplanner.team/stops/H5fl104b"], ["https://tec.openplanner.team/stops/Cjubrul4", "https://tec.openplanner.team/stops/Cjucomb2"], ["https://tec.openplanner.team/stops/LSIroch1", "https://tec.openplanner.team/stops/LSIroch2"], ["https://tec.openplanner.team/stops/Lghencl1", "https://tec.openplanner.team/stops/Lghencl2"], ["https://tec.openplanner.team/stops/Llgchau2", "https://tec.openplanner.team/stops/Llgpere2"], ["https://tec.openplanner.team/stops/LkTweih1", "https://tec.openplanner.team/stops/LrAbe601"], ["https://tec.openplanner.team/stops/LdUespe4", "https://tec.openplanner.team/stops/LtH37c-2"], ["https://tec.openplanner.team/stops/Chpchea2", "https://tec.openplanner.team/stops/Cmesafi1"], ["https://tec.openplanner.team/stops/LMoelno2", "https://tec.openplanner.team/stops/LMomonc2"], ["https://tec.openplanner.team/stops/N501jka", "https://tec.openplanner.team/stops/N501jkb"], ["https://tec.openplanner.team/stops/X886aba", "https://tec.openplanner.team/stops/X886abc"], ["https://tec.openplanner.team/stops/N506ara", "https://tec.openplanner.team/stops/N506arb"], ["https://tec.openplanner.team/stops/LeUbell*", "https://tec.openplanner.team/stops/LeUschu1"], ["https://tec.openplanner.team/stops/LCx728-2", "https://tec.openplanner.team/stops/LCxchal2"], ["https://tec.openplanner.team/stops/H2ha133b", "https://tec.openplanner.team/stops/H2hg150a"], ["https://tec.openplanner.team/stops/LERboss2", "https://tec.openplanner.team/stops/LWbburn2"], ["https://tec.openplanner.team/stops/Lsmdepo1", "https://tec.openplanner.team/stops/Lveinva1"], ["https://tec.openplanner.team/stops/N562ata", "https://tec.openplanner.team/stops/N562bfb"], ["https://tec.openplanner.team/stops/Lheazz-1", "https://tec.openplanner.team/stops/Lheelva2"], ["https://tec.openplanner.team/stops/Cmltemp1", "https://tec.openplanner.team/stops/Cmltemp3"], ["https://tec.openplanner.team/stops/Bohnrsc1", "https://tec.openplanner.team/stops/Bwatber1"], ["https://tec.openplanner.team/stops/H1ba115a", "https://tec.openplanner.team/stops/H1gh371b"], ["https://tec.openplanner.team/stops/LeYmero1", "https://tec.openplanner.team/stops/LrAbe961"], ["https://tec.openplanner.team/stops/Lghmeun1", "https://tec.openplanner.team/stops/Ljetout3"], ["https://tec.openplanner.team/stops/LBbbac-2", "https://tec.openplanner.team/stops/LBbhupp2"], ["https://tec.openplanner.team/stops/H1do109b", "https://tec.openplanner.team/stops/H1do131d"], ["https://tec.openplanner.team/stops/Cdacolu1", "https://tec.openplanner.team/stops/Cdasama1"], ["https://tec.openplanner.team/stops/X818afb", "https://tec.openplanner.team/stops/X818ata"], ["https://tec.openplanner.team/stops/Llgnico2", "https://tec.openplanner.team/stops/Llgnico7"], ["https://tec.openplanner.team/stops/LGEpt--2", "https://tec.openplanner.team/stops/LLSba9-2"], ["https://tec.openplanner.team/stops/H4an104a", "https://tec.openplanner.team/stops/H4an106b"], ["https://tec.openplanner.team/stops/N534beb", "https://tec.openplanner.team/stops/N543cqa"], ["https://tec.openplanner.team/stops/X812aaa", "https://tec.openplanner.team/stops/X812ara"], ["https://tec.openplanner.team/stops/Balsbeg1", "https://tec.openplanner.team/stops/Balswsa1"], ["https://tec.openplanner.team/stops/Lstbota2", "https://tec.openplanner.team/stops/Lstchu-1"], ["https://tec.openplanner.team/stops/X512aib", "https://tec.openplanner.team/stops/X595aib"], ["https://tec.openplanner.team/stops/LElverl1", "https://tec.openplanner.team/stops/LElverl2"], ["https://tec.openplanner.team/stops/H4hu115b", "https://tec.openplanner.team/stops/H4hu116b"], ["https://tec.openplanner.team/stops/N501gea", "https://tec.openplanner.team/stops/N501lrb"], ["https://tec.openplanner.team/stops/N308bca", "https://tec.openplanner.team/stops/N385adb"], ["https://tec.openplanner.team/stops/N209ajb", "https://tec.openplanner.team/stops/N209anb"], ["https://tec.openplanner.team/stops/Lmopave1", "https://tec.openplanner.team/stops/Lsnfoot2"], ["https://tec.openplanner.team/stops/Bneelaa1", "https://tec.openplanner.team/stops/Bneelaa2"], ["https://tec.openplanner.team/stops/N135atb", "https://tec.openplanner.team/stops/N135aua"], ["https://tec.openplanner.team/stops/LOTdelv1", "https://tec.openplanner.team/stops/LVlplan2"], ["https://tec.openplanner.team/stops/LFMrijk1", "https://tec.openplanner.team/stops/LFPho8a1"], ["https://tec.openplanner.team/stops/Cml5ave2", "https://tec.openplanner.team/stops/Cmlsana1"], ["https://tec.openplanner.team/stops/N503ala", "https://tec.openplanner.team/stops/N511afa"], ["https://tec.openplanner.team/stops/X542aga", "https://tec.openplanner.team/stops/X542agb"], ["https://tec.openplanner.team/stops/Lhucime1", "https://tec.openplanner.team/stops/Lhurigu1"], ["https://tec.openplanner.team/stops/LkTweih2", "https://tec.openplanner.team/stops/LwAschu1"], ["https://tec.openplanner.team/stops/Cgxmorg1", "https://tec.openplanner.team/stops/CMmorg2"], ["https://tec.openplanner.team/stops/Lprchat2", "https://tec.openplanner.team/stops/Lprmc--1"], ["https://tec.openplanner.team/stops/X359aja", "https://tec.openplanner.team/stops/X858aha"], ["https://tec.openplanner.team/stops/LRfcent1", "https://tec.openplanner.team/stops/LRfcent2"], ["https://tec.openplanner.team/stops/X601bza", "https://tec.openplanner.team/stops/X601bzb"], ["https://tec.openplanner.team/stops/LHTmala4", "https://tec.openplanner.team/stops/LLxeclu2"], ["https://tec.openplanner.team/stops/LCRecmo2", "https://tec.openplanner.team/stops/LFmpoin1"], ["https://tec.openplanner.team/stops/H1er107a", "https://tec.openplanner.team/stops/H1er110a"], ["https://tec.openplanner.team/stops/X638aia", "https://tec.openplanner.team/stops/X638ama"], ["https://tec.openplanner.team/stops/H1ca100a", "https://tec.openplanner.team/stops/H1ca108a"], ["https://tec.openplanner.team/stops/Btilgar2", "https://tec.openplanner.team/stops/Btilsce2"], ["https://tec.openplanner.team/stops/Bpielon1", "https://tec.openplanner.team/stops/Bpielon2"], ["https://tec.openplanner.team/stops/X897aib", "https://tec.openplanner.team/stops/X897aic"], ["https://tec.openplanner.team/stops/Ltiegli1", "https://tec.openplanner.team/stops/Ltiegli3"], ["https://tec.openplanner.team/stops/N501iea", "https://tec.openplanner.team/stops/N501iey"], ["https://tec.openplanner.team/stops/X822aab", "https://tec.openplanner.team/stops/X822amb"], ["https://tec.openplanner.team/stops/H1fl135a", "https://tec.openplanner.team/stops/H1fl137b"], ["https://tec.openplanner.team/stops/Lbrboul1", "https://tec.openplanner.team/stops/Lbrplai1"], ["https://tec.openplanner.team/stops/X824ahb", "https://tec.openplanner.team/stops/X824aib"], ["https://tec.openplanner.team/stops/H1wa143b", "https://tec.openplanner.team/stops/H1wa164b"], ["https://tec.openplanner.team/stops/H2hg147b", "https://tec.openplanner.team/stops/H2hg155d"], ["https://tec.openplanner.team/stops/LCxchal1", "https://tec.openplanner.team/stops/LCxcham1"], ["https://tec.openplanner.team/stops/Cfabaty2", "https://tec.openplanner.team/stops/Clacast2"], ["https://tec.openplanner.team/stops/X926ada", "https://tec.openplanner.team/stops/X945abc"], ["https://tec.openplanner.team/stops/Cfobriq2", "https://tec.openplanner.team/stops/Cfohopi1"], ["https://tec.openplanner.team/stops/H4ne136a", "https://tec.openplanner.team/stops/H4ne136b"], ["https://tec.openplanner.team/stops/LWOrout2", "https://tec.openplanner.team/stops/LWOwa162"], ["https://tec.openplanner.team/stops/Lhrpaix1", "https://tec.openplanner.team/stops/Llgatel2"], ["https://tec.openplanner.team/stops/LrAdrie4", "https://tec.openplanner.team/stops/LrAtitf2"], ["https://tec.openplanner.team/stops/Llgmont1", "https://tec.openplanner.team/stops/Llgoise1"], ["https://tec.openplanner.team/stops/N321abb", "https://tec.openplanner.team/stops/N321afb"], ["https://tec.openplanner.team/stops/LSoboul2", "https://tec.openplanner.team/stops/LSomonu1"], ["https://tec.openplanner.team/stops/LkOaugu2", "https://tec.openplanner.team/stops/LkOzoll2"], ["https://tec.openplanner.team/stops/X601coa", "https://tec.openplanner.team/stops/X601cpa"], ["https://tec.openplanner.team/stops/N508aaa", "https://tec.openplanner.team/stops/N508aab"], ["https://tec.openplanner.team/stops/Lladete4", "https://tec.openplanner.team/stops/Lvovent2"], ["https://tec.openplanner.team/stops/LAvatri2", "https://tec.openplanner.team/stops/NL74aja"], ["https://tec.openplanner.team/stops/H4wu375a", "https://tec.openplanner.team/stops/H4wu420b"], ["https://tec.openplanner.team/stops/Lkivolg2", "https://tec.openplanner.team/stops/Loureno1"], ["https://tec.openplanner.team/stops/N550aab", "https://tec.openplanner.team/stops/N550ama"], ["https://tec.openplanner.team/stops/LBEfagn1", "https://tec.openplanner.team/stops/LBEtroo2"], ["https://tec.openplanner.team/stops/LHegame4", "https://tec.openplanner.team/stops/LHexhav1"], ["https://tec.openplanner.team/stops/Cgy3011", "https://tec.openplanner.team/stops/Cgyaudu2"], ["https://tec.openplanner.team/stops/H4do100b", "https://tec.openplanner.team/stops/H4do202a"], ["https://tec.openplanner.team/stops/LHGtong1", "https://tec.openplanner.team/stops/LHGzoni2"], ["https://tec.openplanner.team/stops/LMovich1", "https://tec.openplanner.team/stops/LMovich2"], ["https://tec.openplanner.team/stops/LhGbahn*", "https://tec.openplanner.team/stops/LhGbahn3"], ["https://tec.openplanner.team/stops/Blhupa12", "https://tec.openplanner.team/stops/Blhupa14"], ["https://tec.openplanner.team/stops/N543bqa", "https://tec.openplanner.team/stops/N543cia"], ["https://tec.openplanner.team/stops/X922ahb", "https://tec.openplanner.team/stops/X923aoa"], ["https://tec.openplanner.team/stops/Cssgare1", "https://tec.openplanner.team/stops/Csspn1"], ["https://tec.openplanner.team/stops/H1by101a", "https://tec.openplanner.team/stops/H1by107a"], ["https://tec.openplanner.team/stops/Cmtrbra1", "https://tec.openplanner.team/stops/Cmtrdec2"], ["https://tec.openplanner.team/stops/Lfhpast1", "https://tec.openplanner.team/stops/Lfhrogn2"], ["https://tec.openplanner.team/stops/NH01aib", "https://tec.openplanner.team/stops/NH01aua"], ["https://tec.openplanner.team/stops/LhOokat2", "https://tec.openplanner.team/stops/LhUrich1"], ["https://tec.openplanner.team/stops/X912aba", "https://tec.openplanner.team/stops/X912aea"], ["https://tec.openplanner.team/stops/LLEgare2", "https://tec.openplanner.team/stops/LSMgare2"], ["https://tec.openplanner.team/stops/Brsgfso2", "https://tec.openplanner.team/stops/Brsggea1"], ["https://tec.openplanner.team/stops/Bmrswag2", "https://tec.openplanner.team/stops/Bplncsd2"], ["https://tec.openplanner.team/stops/H4fr390a", "https://tec.openplanner.team/stops/H4ty328a"], ["https://tec.openplanner.team/stops/Bnivfle1", "https://tec.openplanner.team/stops/Bnivmfr1"], ["https://tec.openplanner.team/stops/N556adb", "https://tec.openplanner.team/stops/N557aia"], ["https://tec.openplanner.team/stops/X869aea", "https://tec.openplanner.team/stops/X869aeb"], ["https://tec.openplanner.team/stops/Bnivga71", "https://tec.openplanner.team/stops/Bnivsse1"], ["https://tec.openplanner.team/stops/Lflcime2", "https://tec.openplanner.team/stops/Lflterm1"], ["https://tec.openplanner.team/stops/Ccofayt2", "https://tec.openplanner.team/stops/Ccomott2"], ["https://tec.openplanner.team/stops/LOCbois1", "https://tec.openplanner.team/stops/LOCponc*"], ["https://tec.openplanner.team/stops/LHcbaro1", "https://tec.openplanner.team/stops/LHcbaro2"], ["https://tec.openplanner.team/stops/LQafond2", "https://tec.openplanner.team/stops/LSMgare2"], ["https://tec.openplanner.team/stops/LGmhedo1", "https://tec.openplanner.team/stops/LHmferm2"], ["https://tec.openplanner.team/stops/H5pe132b", "https://tec.openplanner.team/stops/H5pe133b"], ["https://tec.openplanner.team/stops/Crewatb1", "https://tec.openplanner.team/stops/Crewatb2"], ["https://tec.openplanner.team/stops/X779aha", "https://tec.openplanner.team/stops/X779ahb"], ["https://tec.openplanner.team/stops/LLrdrev1", "https://tec.openplanner.team/stops/LLrhaut4"], ["https://tec.openplanner.team/stops/H1ne139b", "https://tec.openplanner.team/stops/H1ne141b"], ["https://tec.openplanner.team/stops/Cmmegli1", "https://tec.openplanner.team/stops/Cmmplac4"], ["https://tec.openplanner.team/stops/Bmsgcap2", "https://tec.openplanner.team/stops/Bmsgeco2"], ["https://tec.openplanner.team/stops/H1ob327a", "https://tec.openplanner.team/stops/H1ob330b"], ["https://tec.openplanner.team/stops/N222aba", "https://tec.openplanner.team/stops/N222abb"], ["https://tec.openplanner.team/stops/N232axa", "https://tec.openplanner.team/stops/N232bob"], ["https://tec.openplanner.team/stops/LmHdrei1", "https://tec.openplanner.team/stops/LmTreic1"], ["https://tec.openplanner.team/stops/H1to154b", "https://tec.openplanner.team/stops/H1to155a"], ["https://tec.openplanner.team/stops/LFFchal1", "https://tec.openplanner.team/stops/LFFpier2"], ["https://tec.openplanner.team/stops/Ccucora1", "https://tec.openplanner.team/stops/Cgycorv2"], ["https://tec.openplanner.team/stops/H2hg144b", "https://tec.openplanner.team/stops/H2hg155d"], ["https://tec.openplanner.team/stops/Bboufsm1", "https://tec.openplanner.team/stops/Bbstfch2"], ["https://tec.openplanner.team/stops/H4br110a", "https://tec.openplanner.team/stops/H4br110b"], ["https://tec.openplanner.team/stops/Cjupn4", "https://tec.openplanner.team/stops/Cloauln2"], ["https://tec.openplanner.team/stops/X999ala", "https://tec.openplanner.team/stops/X999alb"], ["https://tec.openplanner.team/stops/X801aib", "https://tec.openplanner.team/stops/X801amb"], ["https://tec.openplanner.team/stops/Lfhchaf4", "https://tec.openplanner.team/stops/Livpost1"], ["https://tec.openplanner.team/stops/H5wo129a", "https://tec.openplanner.team/stops/H5wo136a"], ["https://tec.openplanner.team/stops/LTB105-1", "https://tec.openplanner.team/stops/LTBeg--1"], ["https://tec.openplanner.team/stops/H4be102a", "https://tec.openplanner.team/stops/H4be114a"], ["https://tec.openplanner.team/stops/H4ir166a", "https://tec.openplanner.team/stops/H4ir166b"], ["https://tec.openplanner.team/stops/X647aaa", "https://tec.openplanner.team/stops/X648abb"], ["https://tec.openplanner.team/stops/H5st163b", "https://tec.openplanner.team/stops/H5st169a"], ["https://tec.openplanner.team/stops/X804apa", "https://tec.openplanner.team/stops/X804aqb"], ["https://tec.openplanner.team/stops/Cciarfr1", "https://tec.openplanner.team/stops/Ccicloc1"], ["https://tec.openplanner.team/stops/X681afa", "https://tec.openplanner.team/stops/X687aha"], ["https://tec.openplanner.team/stops/Lhrferr1", "https://tec.openplanner.team/stops/Lhrlaix2"], ["https://tec.openplanner.team/stops/H4hx117a", "https://tec.openplanner.team/stops/H4hx122b"], ["https://tec.openplanner.team/stops/N143aba", "https://tec.openplanner.team/stops/N143abb"], ["https://tec.openplanner.team/stops/LSteg--1", "https://tec.openplanner.team/stops/LSteg--2"], ["https://tec.openplanner.team/stops/Llgbry-1", "https://tec.openplanner.team/stops/Llgherm1"], ["https://tec.openplanner.team/stops/Bpiepnd2", "https://tec.openplanner.team/stops/Bpiesta2"], ["https://tec.openplanner.team/stops/H1ma234b", "https://tec.openplanner.team/stops/H1ni323a"], ["https://tec.openplanner.team/stops/X824aaa", "https://tec.openplanner.team/stops/X825aab"], ["https://tec.openplanner.team/stops/LmR50--1", "https://tec.openplanner.team/stops/LmRh%C3%B6812"], ["https://tec.openplanner.team/stops/LFRfagn1", "https://tec.openplanner.team/stops/LSTmast2"], ["https://tec.openplanner.team/stops/Bnilspe3", "https://tec.openplanner.team/stops/Bnilspe4"], ["https://tec.openplanner.team/stops/H3lr116a", "https://tec.openplanner.team/stops/H3lr120a"], ["https://tec.openplanner.team/stops/X775aba", "https://tec.openplanner.team/stops/X775abb"], ["https://tec.openplanner.team/stops/H1le117a", "https://tec.openplanner.team/stops/H1le119b"], ["https://tec.openplanner.team/stops/Bbeaneu3", "https://tec.openplanner.team/stops/Btlgmee2"], ["https://tec.openplanner.team/stops/Bgoekaz1", "https://tec.openplanner.team/stops/Bgoekaz2"], ["https://tec.openplanner.team/stops/Cflhano1", "https://tec.openplanner.team/stops/Cflhano2"], ["https://tec.openplanner.team/stops/LAnvien2", "https://tec.openplanner.team/stops/LCFcafe1"], ["https://tec.openplanner.team/stops/X769acb", "https://tec.openplanner.team/stops/X769ana"], ["https://tec.openplanner.team/stops/Cvsbois1", "https://tec.openplanner.team/stops/Cvsduve2"], ["https://tec.openplanner.team/stops/Bnivrec1", "https://tec.openplanner.team/stops/Bnivtec2"], ["https://tec.openplanner.team/stops/H5at104b", "https://tec.openplanner.team/stops/H5at109b"], ["https://tec.openplanner.team/stops/LETec--1", "https://tec.openplanner.team/stops/LETec--2"], ["https://tec.openplanner.team/stops/LHChaut5", "https://tec.openplanner.team/stops/LHCquat4"], ["https://tec.openplanner.team/stops/H1hg179a", "https://tec.openplanner.team/stops/H1hm176a"], ["https://tec.openplanner.team/stops/Ctmdema2", "https://tec.openplanner.team/stops/Ctmwaut1"], ["https://tec.openplanner.team/stops/Lglcoun1", "https://tec.openplanner.team/stops/Lglsana2"], ["https://tec.openplanner.team/stops/H1po135b", "https://tec.openplanner.team/stops/H1po135d"], ["https://tec.openplanner.team/stops/LkEheyg2", "https://tec.openplanner.team/stops/LkEsouf1"], ["https://tec.openplanner.team/stops/Cthegli2", "https://tec.openplanner.team/stops/Cthwaib1"], ["https://tec.openplanner.team/stops/Cgymara2", "https://tec.openplanner.team/stops/CMsartc1"], ["https://tec.openplanner.team/stops/H2re174a", "https://tec.openplanner.team/stops/H2re174b"], ["https://tec.openplanner.team/stops/Lgrclos1", "https://tec.openplanner.team/stops/Lgrtomb1"], ["https://tec.openplanner.team/stops/Lprmana1", "https://tec.openplanner.team/stops/Lprmana4"], ["https://tec.openplanner.team/stops/X908aaa", "https://tec.openplanner.team/stops/X955ada"], ["https://tec.openplanner.team/stops/LSyec--1", "https://tec.openplanner.team/stops/LSyec--2"], ["https://tec.openplanner.team/stops/Bauddel1", "https://tec.openplanner.team/stops/Bauddel2"], ["https://tec.openplanner.team/stops/N211aib", "https://tec.openplanner.team/stops/N211anb"], ["https://tec.openplanner.team/stops/Bcrbmsg2", "https://tec.openplanner.team/stops/Bcrbros1"], ["https://tec.openplanner.team/stops/LMOeg--2", "https://tec.openplanner.team/stops/LMOhero1"], ["https://tec.openplanner.team/stops/LbUjost3", "https://tec.openplanner.team/stops/LbUjost4"], ["https://tec.openplanner.team/stops/LcRmuhl1", "https://tec.openplanner.team/stops/LwTkabi2"], ["https://tec.openplanner.team/stops/N101abb", "https://tec.openplanner.team/stops/N101ama"], ["https://tec.openplanner.team/stops/N232bda", "https://tec.openplanner.team/stops/N232bua"], ["https://tec.openplanner.team/stops/Berncim1", "https://tec.openplanner.team/stops/Bwlhpmt2"], ["https://tec.openplanner.team/stops/X942aaa", "https://tec.openplanner.team/stops/X942aea"], ["https://tec.openplanner.team/stops/LVLgotr1", "https://tec.openplanner.team/stops/LVLruis2"], ["https://tec.openplanner.team/stops/N115aea", "https://tec.openplanner.team/stops/N115afa"], ["https://tec.openplanner.team/stops/N874ajb", "https://tec.openplanner.team/stops/N874ama"], ["https://tec.openplanner.team/stops/Lsebonc1", "https://tec.openplanner.team/stops/Lsebonc2"], ["https://tec.openplanner.team/stops/Ccychap2", "https://tec.openplanner.team/stops/Ccygara2"], ["https://tec.openplanner.team/stops/Bhmmcim2", "https://tec.openplanner.team/stops/Bhmmtou1"], ["https://tec.openplanner.team/stops/LmNha152", "https://tec.openplanner.team/stops/LmNmerl1"], ["https://tec.openplanner.team/stops/Bgnpegl3", "https://tec.openplanner.team/stops/Bwaypon1"], ["https://tec.openplanner.team/stops/X910aeb", "https://tec.openplanner.team/stops/X911ala"], ["https://tec.openplanner.team/stops/N506aca", "https://tec.openplanner.team/stops/N506aza"], ["https://tec.openplanner.team/stops/Llgelis1", "https://tec.openplanner.team/stops/LlgLAMB7"], ["https://tec.openplanner.team/stops/N506boc", "https://tec.openplanner.team/stops/N506bod"], ["https://tec.openplanner.team/stops/LLUtill1", "https://tec.openplanner.team/stops/LLUtill3"], ["https://tec.openplanner.team/stops/Bhaleur1", "https://tec.openplanner.team/stops/Bhaleur2"], ["https://tec.openplanner.team/stops/LBIcabi2", "https://tec.openplanner.team/stops/LBIvill4"], ["https://tec.openplanner.team/stops/Cfrcoop1", "https://tec.openplanner.team/stops/Cfrcoop2"], ["https://tec.openplanner.team/stops/Cbflong2", "https://tec.openplanner.team/stops/Cbfstry1"], ["https://tec.openplanner.team/stops/H4bf106a", "https://tec.openplanner.team/stops/H4wp151a"], ["https://tec.openplanner.team/stops/Lsn130-1", "https://tec.openplanner.team/stops/Lsnhoco2"], ["https://tec.openplanner.team/stops/N515ajb", "https://tec.openplanner.team/stops/N515atb"], ["https://tec.openplanner.team/stops/H1an101a", "https://tec.openplanner.team/stops/H1an101b"], ["https://tec.openplanner.team/stops/H5rx110a", "https://tec.openplanner.team/stops/H5rx140a"], ["https://tec.openplanner.team/stops/LmYamel2", "https://tec.openplanner.team/stops/LwLkirc2"], ["https://tec.openplanner.team/stops/Cobbusc2", "https://tec.openplanner.team/stops/Cobbuze1"], ["https://tec.openplanner.team/stops/X902aya", "https://tec.openplanner.team/stops/X902azb"], ["https://tec.openplanner.team/stops/Cfocobe1", "https://tec.openplanner.team/stops/Clrrhau2"], ["https://tec.openplanner.team/stops/LrDneun1", "https://tec.openplanner.team/stops/LrDrose3"], ["https://tec.openplanner.team/stops/LHthest1", "https://tec.openplanner.team/stops/LJAferm2"], ["https://tec.openplanner.team/stops/H4eg102b", "https://tec.openplanner.team/stops/H4eg105a"], ["https://tec.openplanner.team/stops/Ladmoul1", "https://tec.openplanner.team/stops/Lvedepa*"], ["https://tec.openplanner.team/stops/X547aaa", "https://tec.openplanner.team/stops/X547aab"], ["https://tec.openplanner.team/stops/H4ha167b", "https://tec.openplanner.team/stops/H4me213b"], ["https://tec.openplanner.team/stops/X609aqa", "https://tec.openplanner.team/stops/X627ada"], ["https://tec.openplanner.team/stops/Cflvxsa1", "https://tec.openplanner.team/stops/Cwgtill2"], ["https://tec.openplanner.team/stops/X613aaa", "https://tec.openplanner.team/stops/X613adb"], ["https://tec.openplanner.team/stops/Cchparc1", "https://tec.openplanner.team/stops/Cchparc5"], ["https://tec.openplanner.team/stops/X837aea", "https://tec.openplanner.team/stops/X837afb"], ["https://tec.openplanner.team/stops/X780abb", "https://tec.openplanner.team/stops/X780acb"], ["https://tec.openplanner.team/stops/Bjodced1", "https://tec.openplanner.team/stops/Bjodppe1"], ["https://tec.openplanner.team/stops/Cgxmorg2", "https://tec.openplanner.team/stops/CMmorg2"], ["https://tec.openplanner.team/stops/LSOboeu2", "https://tec.openplanner.team/stops/LSOvoie2"], ["https://tec.openplanner.team/stops/X641ama", "https://tec.openplanner.team/stops/X641aya"], ["https://tec.openplanner.team/stops/H2mo131b", "https://tec.openplanner.team/stops/H2mo143b"], ["https://tec.openplanner.team/stops/LmHbien2", "https://tec.openplanner.team/stops/LmHschm1"], ["https://tec.openplanner.team/stops/X804ata", "https://tec.openplanner.team/stops/X804aua"], ["https://tec.openplanner.team/stops/X901aja", "https://tec.openplanner.team/stops/X901awa"], ["https://tec.openplanner.team/stops/N542aga", "https://tec.openplanner.team/stops/N542agb"], ["https://tec.openplanner.team/stops/N534aub", "https://tec.openplanner.team/stops/N534bda"], ["https://tec.openplanner.team/stops/Cmgbras2", "https://tec.openplanner.team/stops/Cmgpn1"], ["https://tec.openplanner.team/stops/Llgancd1", "https://tec.openplanner.team/stops/Llgjoie2"], ["https://tec.openplanner.team/stops/LJOchar2", "https://tec.openplanner.team/stops/LSOvoie4"], ["https://tec.openplanner.team/stops/X637acb", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/LLrbecc1", "https://tec.openplanner.team/stops/LLrbecc2"], ["https://tec.openplanner.team/stops/X760acb", "https://tec.openplanner.team/stops/X760ada"], ["https://tec.openplanner.team/stops/LWAipes2", "https://tec.openplanner.team/stops/LWAloui1"], ["https://tec.openplanner.team/stops/N551aec", "https://tec.openplanner.team/stops/N551akb"], ["https://tec.openplanner.team/stops/LBNlong1", "https://tec.openplanner.team/stops/LBNruns1"], ["https://tec.openplanner.team/stops/Csobail1", "https://tec.openplanner.team/stops/Csoforr3"], ["https://tec.openplanner.team/stops/Bptecal1", "https://tec.openplanner.team/stops/H1hv130a"], ["https://tec.openplanner.team/stops/LmImirf2", "https://tec.openplanner.team/stops/LmIvale4"], ["https://tec.openplanner.team/stops/Cnadrev1", "https://tec.openplanner.team/stops/Cnaferr1"], ["https://tec.openplanner.team/stops/N346ada", "https://tec.openplanner.team/stops/N347aga"], ["https://tec.openplanner.team/stops/NL76ama", "https://tec.openplanner.team/stops/NL76apa"], ["https://tec.openplanner.team/stops/N534bmb", "https://tec.openplanner.team/stops/N534brb"], ["https://tec.openplanner.team/stops/Bjodint1", "https://tec.openplanner.team/stops/Bjodtpo1"], ["https://tec.openplanner.team/stops/Lrcarse1", "https://tec.openplanner.team/stops/Lrcprin6"], ["https://tec.openplanner.team/stops/LnE79--2", "https://tec.openplanner.team/stops/LnErech1"], ["https://tec.openplanner.team/stops/H1ob333a", "https://tec.openplanner.team/stops/H1ob333b"], ["https://tec.openplanner.team/stops/Ladgron1", "https://tec.openplanner.team/stops/LHCprog2"], ["https://tec.openplanner.team/stops/LCOcrom2", "https://tec.openplanner.team/stops/LSNchen2"], ["https://tec.openplanner.team/stops/H4cl112b", "https://tec.openplanner.team/stops/H4cl114b"], ["https://tec.openplanner.team/stops/X607aka", "https://tec.openplanner.team/stops/X607akb"], ["https://tec.openplanner.team/stops/H1ha193a", "https://tec.openplanner.team/stops/H1ob330a"], ["https://tec.openplanner.team/stops/N535asb", "https://tec.openplanner.team/stops/N535aub"], ["https://tec.openplanner.team/stops/LFArela2", "https://tec.openplanner.team/stops/LFAsauv1"], ["https://tec.openplanner.team/stops/Cgxalli2", "https://tec.openplanner.team/stops/Cgxcite1"], ["https://tec.openplanner.team/stops/Cci4092", "https://tec.openplanner.team/stops/Cmtprey1"], ["https://tec.openplanner.team/stops/LbOvith1", "https://tec.openplanner.team/stops/LnE79--2"], ["https://tec.openplanner.team/stops/N548awa", "https://tec.openplanner.team/stops/N573aob"], ["https://tec.openplanner.team/stops/LCSgend2", "https://tec.openplanner.team/stops/LHHroua1"], ["https://tec.openplanner.team/stops/N569ala", "https://tec.openplanner.team/stops/N569ana"], ["https://tec.openplanner.team/stops/H2bh109a", "https://tec.openplanner.team/stops/H2lc172a"], ["https://tec.openplanner.team/stops/Lstchu-4", "https://tec.openplanner.team/stops/Lsteduc1"], ["https://tec.openplanner.team/stops/Ccychba2", "https://tec.openplanner.team/stops/Crbrgar2"], ["https://tec.openplanner.team/stops/N118afa", "https://tec.openplanner.team/stops/N118aya"], ["https://tec.openplanner.team/stops/H4ld128a", "https://tec.openplanner.team/stops/H4ld129a"], ["https://tec.openplanner.team/stops/LHceg--1", "https://tec.openplanner.team/stops/LHcgare1"], ["https://tec.openplanner.team/stops/Lgrfrcu2", "https://tec.openplanner.team/stops/Lgrtomb2"], ["https://tec.openplanner.team/stops/Bwlhcsr2", "https://tec.openplanner.team/stops/Bwspm372"], ["https://tec.openplanner.team/stops/LCleg--2", "https://tec.openplanner.team/stops/LThnouv2"], ["https://tec.openplanner.team/stops/Lmobrac1", "https://tec.openplanner.team/stops/Lsnbrac3"], ["https://tec.openplanner.team/stops/LVlfooz1", "https://tec.openplanner.team/stops/LVlfooz2"], ["https://tec.openplanner.team/stops/X901asb", "https://tec.openplanner.team/stops/X901axb"], ["https://tec.openplanner.team/stops/Lbbgare1", "https://tec.openplanner.team/stops/Lbbgare2"], ["https://tec.openplanner.team/stops/Bbgewal1", "https://tec.openplanner.team/stops/Bbgewal2"], ["https://tec.openplanner.team/stops/Lprchat2", "https://tec.openplanner.team/stops/Lprpous2"], ["https://tec.openplanner.team/stops/Bquepla1", "https://tec.openplanner.team/stops/Bquereb1"], ["https://tec.openplanner.team/stops/Bflcneu1", "https://tec.openplanner.team/stops/Bflcneu2"], ["https://tec.openplanner.team/stops/LThelse1", "https://tec.openplanner.team/stops/LThelse2"], ["https://tec.openplanner.team/stops/Cchba05", "https://tec.openplanner.team/stops/Cchba08"], ["https://tec.openplanner.team/stops/X911afa", "https://tec.openplanner.team/stops/X912aaa"], ["https://tec.openplanner.team/stops/Csa4mai1", "https://tec.openplanner.team/stops/Csachas2"], ["https://tec.openplanner.team/stops/Bglache1", "https://tec.openplanner.team/stops/Bmrsmco1"], ["https://tec.openplanner.team/stops/Lroboeg1", "https://tec.openplanner.team/stops/Lrosaun2"], ["https://tec.openplanner.team/stops/NB33ala", "https://tec.openplanner.team/stops/NR21aeb"], ["https://tec.openplanner.team/stops/N501fby", "https://tec.openplanner.team/stops/N501fla"], ["https://tec.openplanner.team/stops/Crehout1", "https://tec.openplanner.team/stops/Crewaha2"], ["https://tec.openplanner.team/stops/X720acb", "https://tec.openplanner.team/stops/X720adb"], ["https://tec.openplanner.team/stops/H2tr252a", "https://tec.openplanner.team/stops/H2tr256b"], ["https://tec.openplanner.team/stops/LLrc_ip4", "https://tec.openplanner.team/stops/LLrrmaq1"], ["https://tec.openplanner.team/stops/X822aaa", "https://tec.openplanner.team/stops/X822ama"], ["https://tec.openplanner.team/stops/N349aca", "https://tec.openplanner.team/stops/N349acb"], ["https://tec.openplanner.team/stops/N423aea", "https://tec.openplanner.team/stops/NH01ajb"], ["https://tec.openplanner.team/stops/X850aga", "https://tec.openplanner.team/stops/X850aoa"], ["https://tec.openplanner.team/stops/X986aja", "https://tec.openplanner.team/stops/X986ajb"], ["https://tec.openplanner.team/stops/H1em111b", "https://tec.openplanner.team/stops/H1em111c"], ["https://tec.openplanner.team/stops/LPLstat1", "https://tec.openplanner.team/stops/LPLstat2"], ["https://tec.openplanner.team/stops/X925ala", "https://tec.openplanner.team/stops/X996aaa"], ["https://tec.openplanner.team/stops/Cgdfoca1", "https://tec.openplanner.team/stops/Cgdfras2"], ["https://tec.openplanner.team/stops/Bohnman2", "https://tec.openplanner.team/stops/Bohnmes2"], ["https://tec.openplanner.team/stops/X902aab", "https://tec.openplanner.team/stops/X902afa"], ["https://tec.openplanner.team/stops/N511aia", "https://tec.openplanner.team/stops/N511aib"], ["https://tec.openplanner.team/stops/Csecroi1", "https://tec.openplanner.team/stops/Csepier1"], ["https://tec.openplanner.team/stops/N521alb", "https://tec.openplanner.team/stops/N527afa"], ["https://tec.openplanner.team/stops/H4mo193a", "https://tec.openplanner.team/stops/H4mo206b"], ["https://tec.openplanner.team/stops/Bnivhon1", "https://tec.openplanner.team/stops/Bnivhon2"], ["https://tec.openplanner.team/stops/Cmmphai1", "https://tec.openplanner.team/stops/Cmmserv3"], ["https://tec.openplanner.team/stops/N211acb", "https://tec.openplanner.team/stops/N211asa"], ["https://tec.openplanner.team/stops/X946afb", "https://tec.openplanner.team/stops/X946aia"], ["https://tec.openplanner.team/stops/Bgrmpco1", "https://tec.openplanner.team/stops/N522aib"], ["https://tec.openplanner.team/stops/X766aaa", "https://tec.openplanner.team/stops/X768abb"], ["https://tec.openplanner.team/stops/LrAverb1", "https://tec.openplanner.team/stops/LrAverb2"], ["https://tec.openplanner.team/stops/LWevand1", "https://tec.openplanner.team/stops/LWexhav1"], ["https://tec.openplanner.team/stops/X941agb", "https://tec.openplanner.team/stops/X949ala"], ["https://tec.openplanner.team/stops/H1wi148c", "https://tec.openplanner.team/stops/H1wi157c"], ["https://tec.openplanner.team/stops/Lvtfrai2", "https://tec.openplanner.team/stops/Lvtlomb4"], ["https://tec.openplanner.team/stops/Bdlmgla2", "https://tec.openplanner.team/stops/Bwavbva2"], ["https://tec.openplanner.team/stops/Lfhnrou2", "https://tec.openplanner.team/stops/Lfhvoye2"], ["https://tec.openplanner.team/stops/H1fl139b", "https://tec.openplanner.team/stops/H1je221b"], ["https://tec.openplanner.team/stops/X637aoa", "https://tec.openplanner.team/stops/X637aob"], ["https://tec.openplanner.team/stops/N232bjb", "https://tec.openplanner.team/stops/N261afa"], ["https://tec.openplanner.team/stops/Llgtir-1", "https://tec.openplanner.team/stops/Llgtir-2"], ["https://tec.openplanner.team/stops/Ljemont2", "https://tec.openplanner.team/stops/Ljewale3"], ["https://tec.openplanner.team/stops/X750bda", "https://tec.openplanner.team/stops/X750bdb"], ["https://tec.openplanner.team/stops/LBichat2", "https://tec.openplanner.team/stops/LBieg--4"], ["https://tec.openplanner.team/stops/Bosqcar2", "https://tec.openplanner.team/stops/Bosqcim1"], ["https://tec.openplanner.team/stops/X804aeb", "https://tec.openplanner.team/stops/X804bfb"], ["https://tec.openplanner.team/stops/X763afb", "https://tec.openplanner.team/stops/X765aga"], ["https://tec.openplanner.team/stops/Bincdon1", "https://tec.openplanner.team/stops/Bincdon2"], ["https://tec.openplanner.team/stops/N511aoc", "https://tec.openplanner.team/stops/N511apa"], ["https://tec.openplanner.team/stops/LsHkirc2", "https://tec.openplanner.team/stops/LsHthom2"], ["https://tec.openplanner.team/stops/LHgpost1", "https://tec.openplanner.team/stops/LHgroso1"], ["https://tec.openplanner.team/stops/LPLg90-1", "https://tec.openplanner.team/stops/LPLroth2"], ["https://tec.openplanner.team/stops/Lverain1", "https://tec.openplanner.team/stops/Lverema2"], ["https://tec.openplanner.team/stops/X989aba", "https://tec.openplanner.team/stops/X989aga"], ["https://tec.openplanner.team/stops/N501dba", "https://tec.openplanner.team/stops/N501dfa"], ["https://tec.openplanner.team/stops/Cgzmira2", "https://tec.openplanner.team/stops/Cthha501"], ["https://tec.openplanner.team/stops/H2sb224b", "https://tec.openplanner.team/stops/H2sb236d"], ["https://tec.openplanner.team/stops/LBImili1", "https://tec.openplanner.team/stops/LBItnt-*"], ["https://tec.openplanner.team/stops/Blangar1", "https://tec.openplanner.team/stops/LLasta-*"], ["https://tec.openplanner.team/stops/X344aca", "https://tec.openplanner.team/stops/X344aea"], ["https://tec.openplanner.team/stops/N533aaa", "https://tec.openplanner.team/stops/N533afa"], ["https://tec.openplanner.team/stops/H4ml207a", "https://tec.openplanner.team/stops/H4pi134b"], ["https://tec.openplanner.team/stops/LCPhall2", "https://tec.openplanner.team/stops/LMvgare1"], ["https://tec.openplanner.team/stops/X982bza", "https://tec.openplanner.team/stops/X982bzb"], ["https://tec.openplanner.team/stops/Bbstpon1", "https://tec.openplanner.team/stops/Bbstpon2"], ["https://tec.openplanner.team/stops/N223aaa", "https://tec.openplanner.team/stops/N223abb"], ["https://tec.openplanner.team/stops/Bwavtas3", "https://tec.openplanner.team/stops/Bwavtas4"], ["https://tec.openplanner.team/stops/Bhanath2", "https://tec.openplanner.team/stops/Bhancre1"], ["https://tec.openplanner.team/stops/X783aab", "https://tec.openplanner.team/stops/X783abb"], ["https://tec.openplanner.team/stops/N351alb", "https://tec.openplanner.team/stops/X351aob"], ["https://tec.openplanner.team/stops/LLM4rou4", "https://tec.openplanner.team/stops/LLM4rou5"], ["https://tec.openplanner.team/stops/Lghwall*", "https://tec.openplanner.team/stops/Llocime2"], ["https://tec.openplanner.team/stops/X614bda", "https://tec.openplanner.team/stops/X626akb"], ["https://tec.openplanner.team/stops/H1bs110a", "https://tec.openplanner.team/stops/H1bs111b"], ["https://tec.openplanner.team/stops/LPUchpl1", "https://tec.openplanner.team/stops/LPUmang1"], ["https://tec.openplanner.team/stops/Csubosa1", "https://tec.openplanner.team/stops/Csuegli"], ["https://tec.openplanner.team/stops/X779aca", "https://tec.openplanner.team/stops/X779aeb"], ["https://tec.openplanner.team/stops/Btlbegl3", "https://tec.openplanner.team/stops/Btlbmel1"], ["https://tec.openplanner.team/stops/N543aca", "https://tec.openplanner.team/stops/N543bda"], ["https://tec.openplanner.team/stops/LrAdrie3", "https://tec.openplanner.team/stops/LrAdrie4"], ["https://tec.openplanner.team/stops/H4gu109a", "https://tec.openplanner.team/stops/H4gu109b"], ["https://tec.openplanner.team/stops/N516ajb", "https://tec.openplanner.team/stops/N516ana"], ["https://tec.openplanner.team/stops/X670ama", "https://tec.openplanner.team/stops/X670amb"], ["https://tec.openplanner.team/stops/LHMgrun1", "https://tec.openplanner.team/stops/LSIgehe2"], ["https://tec.openplanner.team/stops/H2pe162b", "https://tec.openplanner.team/stops/H2sv217b"], ["https://tec.openplanner.team/stops/X721ana", "https://tec.openplanner.team/stops/X721anb"], ["https://tec.openplanner.team/stops/N501iab", "https://tec.openplanner.team/stops/N501ima"], ["https://tec.openplanner.team/stops/Bbchtry1", "https://tec.openplanner.team/stops/Bwaucig1"], ["https://tec.openplanner.team/stops/X626aca", "https://tec.openplanner.team/stops/X626aea"], ["https://tec.openplanner.team/stops/Bgnvgir2", "https://tec.openplanner.team/stops/Blascsl2"], ["https://tec.openplanner.team/stops/H1bd100b", "https://tec.openplanner.team/stops/H1le118a"], ["https://tec.openplanner.team/stops/N501cba", "https://tec.openplanner.team/stops/N521aua"], ["https://tec.openplanner.team/stops/LBmbara1", "https://tec.openplanner.team/stops/LMRmont1"], ["https://tec.openplanner.team/stops/X670aaa", "https://tec.openplanner.team/stops/X670aib"], ["https://tec.openplanner.team/stops/H1ms252d", "https://tec.openplanner.team/stops/H1ms940b"], ["https://tec.openplanner.team/stops/Bincfer2", "https://tec.openplanner.team/stops/Bsrbtil2"], ["https://tec.openplanner.team/stops/LSZchpl2", "https://tec.openplanner.team/stops/LSZmonu5"], ["https://tec.openplanner.team/stops/N229acb", "https://tec.openplanner.team/stops/N229afb"], ["https://tec.openplanner.team/stops/Bdlmflo1", "https://tec.openplanner.team/stops/Bdlmflo2"], ["https://tec.openplanner.team/stops/H4hg155b", "https://tec.openplanner.team/stops/H4hg157a"], ["https://tec.openplanner.team/stops/LFTcroi1", "https://tec.openplanner.team/stops/LNAbois1"], ["https://tec.openplanner.team/stops/Bbxltrv1", "https://tec.openplanner.team/stops/Bbxltrv2"], ["https://tec.openplanner.team/stops/X811ala", "https://tec.openplanner.team/stops/X811aob"], ["https://tec.openplanner.team/stops/NR21aib", "https://tec.openplanner.team/stops/NR21ajb"], ["https://tec.openplanner.team/stops/Ctrdelb2", "https://tec.openplanner.team/stops/Ctrstro1"], ["https://tec.openplanner.team/stops/N547ahb", "https://tec.openplanner.team/stops/N573apa"], ["https://tec.openplanner.team/stops/Bsambra2", "https://tec.openplanner.team/stops/Bsammon1"], ["https://tec.openplanner.team/stops/Lveecol2", "https://tec.openplanner.team/stops/Lvepala8"], ["https://tec.openplanner.team/stops/LPAbrun1", "https://tec.openplanner.team/stops/LPAchpl2"], ["https://tec.openplanner.team/stops/N561aba", "https://tec.openplanner.team/stops/N561ada"], ["https://tec.openplanner.team/stops/X681aeb", "https://tec.openplanner.team/stops/X696afa"], ["https://tec.openplanner.team/stops/N512agc", "https://tec.openplanner.team/stops/NL57afa"], ["https://tec.openplanner.team/stops/N535anb", "https://tec.openplanner.team/stops/N564aaa"], ["https://tec.openplanner.team/stops/H2le148a", "https://tec.openplanner.team/stops/H2re163a"], ["https://tec.openplanner.team/stops/N513bia", "https://tec.openplanner.team/stops/N516acb"], ["https://tec.openplanner.team/stops/Ljemeca2", "https://tec.openplanner.team/stops/Lsemany1"], ["https://tec.openplanner.team/stops/N214aaa", "https://tec.openplanner.team/stops/N214aba"], ["https://tec.openplanner.team/stops/H1cu108b", "https://tec.openplanner.team/stops/H1cu111b"], ["https://tec.openplanner.team/stops/LWechea1", "https://tec.openplanner.team/stops/LWevalf1"], ["https://tec.openplanner.team/stops/N501eua", "https://tec.openplanner.team/stops/N501kpa"], ["https://tec.openplanner.team/stops/LClflor2", "https://tec.openplanner.team/stops/LCltrib1"], ["https://tec.openplanner.team/stops/H1pa109b", "https://tec.openplanner.team/stops/H1pa111a"], ["https://tec.openplanner.team/stops/H1th182a", "https://tec.openplanner.team/stops/H2na132b"], ["https://tec.openplanner.team/stops/Bbsicas1", "https://tec.openplanner.team/stops/Bbsifmo2"], ["https://tec.openplanner.team/stops/Lmicoop1", "https://tec.openplanner.team/stops/Lmicoop3"], ["https://tec.openplanner.team/stops/X927acb", "https://tec.openplanner.team/stops/X986aia"], ["https://tec.openplanner.team/stops/Lenabat2", "https://tec.openplanner.team/stops/Lenvale1"], ["https://tec.openplanner.team/stops/X738adb", "https://tec.openplanner.team/stops/X754alb"], ["https://tec.openplanner.team/stops/H2ec106a", "https://tec.openplanner.team/stops/H2ec106b"], ["https://tec.openplanner.team/stops/LCogara2", "https://tec.openplanner.team/stops/LTPsatr1"], ["https://tec.openplanner.team/stops/Bgliaau1", "https://tec.openplanner.team/stops/Bglicsm2"], ["https://tec.openplanner.team/stops/Brosegl1", "https://tec.openplanner.team/stops/H2gy109b"], ["https://tec.openplanner.team/stops/NL80abb", "https://tec.openplanner.team/stops/NL80acb"], ["https://tec.openplanner.team/stops/Bsoigar2", "https://tec.openplanner.team/stops/H3so172a"], ["https://tec.openplanner.team/stops/LWEchat2", "https://tec.openplanner.team/stops/LWEeg--2"], ["https://tec.openplanner.team/stops/Lbooffe2", "https://tec.openplanner.team/stops/Lbosart2"], ["https://tec.openplanner.team/stops/Bcrbbou1", "https://tec.openplanner.team/stops/Bcrbcel1"], ["https://tec.openplanner.team/stops/LNAplac2", "https://tec.openplanner.team/stops/LSSvill2"], ["https://tec.openplanner.team/stops/X769akb", "https://tec.openplanner.team/stops/X769alb"], ["https://tec.openplanner.team/stops/LEScarr1", "https://tec.openplanner.team/stops/LESmagr1"], ["https://tec.openplanner.team/stops/Lbrfoid3", "https://tec.openplanner.team/stops/Lbrmc--2"], ["https://tec.openplanner.team/stops/Bnodblt2", "https://tec.openplanner.team/stops/Bnodcab1"], ["https://tec.openplanner.team/stops/LkEsouf1", "https://tec.openplanner.team/stops/LkEzoll1"], ["https://tec.openplanner.team/stops/H4ma419a", "https://tec.openplanner.team/stops/H4ma420a"], ["https://tec.openplanner.team/stops/N201ala", "https://tec.openplanner.team/stops/N201ama"], ["https://tec.openplanner.team/stops/N540ada", "https://tec.openplanner.team/stops/N540amb"], ["https://tec.openplanner.team/stops/Bnivfch2", "https://tec.openplanner.team/stops/Bnivpso2"], ["https://tec.openplanner.team/stops/Bbchsac1", "https://tec.openplanner.team/stops/Bwaunop1"], ["https://tec.openplanner.team/stops/N331ahb", "https://tec.openplanner.team/stops/N331aib"], ["https://tec.openplanner.team/stops/Lchstat*", "https://tec.openplanner.team/stops/Lvichpl1"], ["https://tec.openplanner.team/stops/H4lz118a", "https://tec.openplanner.team/stops/H4th141a"], ["https://tec.openplanner.team/stops/Bgntcha2", "https://tec.openplanner.team/stops/Bgntcoo1"], ["https://tec.openplanner.team/stops/H1eo103a", "https://tec.openplanner.team/stops/H1eo106a"], ["https://tec.openplanner.team/stops/LNEcite1", "https://tec.openplanner.team/stops/LNEtonv1"], ["https://tec.openplanner.team/stops/H4ch119a", "https://tec.openplanner.team/stops/H4ch119b"], ["https://tec.openplanner.team/stops/LOUherm2", "https://tec.openplanner.team/stops/Lvimc--2"], ["https://tec.openplanner.team/stops/LLxalle1", "https://tec.openplanner.team/stops/LVItcm-1"], ["https://tec.openplanner.team/stops/LBSpail3", "https://tec.openplanner.team/stops/LBStong2"], ["https://tec.openplanner.team/stops/Bitrecu1", "https://tec.openplanner.team/stops/Bitrmde1"], ["https://tec.openplanner.team/stops/Ldihote2", "https://tec.openplanner.team/stops/Ldihvce2"], ["https://tec.openplanner.team/stops/LHUfali3", "https://tec.openplanner.team/stops/LHUmari1"], ["https://tec.openplanner.team/stops/X717aia", "https://tec.openplanner.team/stops/X781abb"], ["https://tec.openplanner.team/stops/X665aaa", "https://tec.openplanner.team/stops/X665aba"], ["https://tec.openplanner.team/stops/Ctaallo2", "https://tec.openplanner.team/stops/Ctaprai3"], ["https://tec.openplanner.team/stops/X614bbb", "https://tec.openplanner.team/stops/X614brb"], ["https://tec.openplanner.team/stops/LAyfren2", "https://tec.openplanner.team/stops/LAyheid2"], ["https://tec.openplanner.team/stops/Lsedavy1", "https://tec.openplanner.team/stops/Lsedavy2"], ["https://tec.openplanner.team/stops/CMmari2", "https://tec.openplanner.team/stops/CMtsan2"], ["https://tec.openplanner.team/stops/LwAstum1", "https://tec.openplanner.team/stops/LwAstum2"], ["https://tec.openplanner.team/stops/Llgbert2", "https://tec.openplanner.team/stops/Llghlau2"], ["https://tec.openplanner.team/stops/Llggram4", "https://tec.openplanner.team/stops/Llgpari2"], ["https://tec.openplanner.team/stops/H1mj129a", "https://tec.openplanner.team/stops/H1mj129b"], ["https://tec.openplanner.team/stops/Cwxplac1", "https://tec.openplanner.team/stops/Cwxplac2"], ["https://tec.openplanner.team/stops/Bgntpla2", "https://tec.openplanner.team/stops/Bgnttma1"], ["https://tec.openplanner.team/stops/Crebrux1", "https://tec.openplanner.team/stops/Crefont1"], ["https://tec.openplanner.team/stops/X314aab", "https://tec.openplanner.team/stops/X813adb"], ["https://tec.openplanner.team/stops/LAnchat1", "https://tec.openplanner.team/stops/LAnfall2"], ["https://tec.openplanner.team/stops/H1ha185a", "https://tec.openplanner.team/stops/H1ha191b"], ["https://tec.openplanner.team/stops/N536aab", "https://tec.openplanner.team/stops/N536abb"], ["https://tec.openplanner.team/stops/N209aab", "https://tec.openplanner.team/stops/N209afa"], ["https://tec.openplanner.team/stops/LBEchan1", "https://tec.openplanner.team/stops/LBEhaye2"], ["https://tec.openplanner.team/stops/Lflmaxi1", "https://tec.openplanner.team/stops/Lre3che1"], ["https://tec.openplanner.team/stops/H4rs118b", "https://tec.openplanner.team/stops/H4rs119a"], ["https://tec.openplanner.team/stops/X992ahb", "https://tec.openplanner.team/stops/X992aia"], ["https://tec.openplanner.team/stops/Livvill2", "https://tec.openplanner.team/stops/LRAgrot2"], ["https://tec.openplanner.team/stops/Lhrabho2", "https://tec.openplanner.team/stops/Lhrcite1"], ["https://tec.openplanner.team/stops/H4fr145b", "https://tec.openplanner.team/stops/H4rc234c"], ["https://tec.openplanner.team/stops/LBhsign2", "https://tec.openplanner.team/stops/LtEnatu1"], ["https://tec.openplanner.team/stops/Bblafab2", "https://tec.openplanner.team/stops/Bblafrn1"], ["https://tec.openplanner.team/stops/X907ahb", "https://tec.openplanner.team/stops/X907aib"], ["https://tec.openplanner.team/stops/N528atb", "https://tec.openplanner.team/stops/N542apb"], ["https://tec.openplanner.team/stops/H1sy137a", "https://tec.openplanner.team/stops/H1sy148c"], ["https://tec.openplanner.team/stops/H4pi130a", "https://tec.openplanner.team/stops/H4pi134a"], ["https://tec.openplanner.team/stops/H1lb134a", "https://tec.openplanner.team/stops/H1lb154b"], ["https://tec.openplanner.team/stops/H2bh110c", "https://tec.openplanner.team/stops/H2bh111a"], ["https://tec.openplanner.team/stops/Bsmgmas2", "https://tec.openplanner.team/stops/Bsmgpla2"], ["https://tec.openplanner.team/stops/H3lr108b", "https://tec.openplanner.team/stops/H3lr117b"], ["https://tec.openplanner.team/stops/Lanschu2", "https://tec.openplanner.team/stops/Lanstat1"], ["https://tec.openplanner.team/stops/Cgxpair1", "https://tec.openplanner.team/stops/Cgxpair2"], ["https://tec.openplanner.team/stops/N501hxb", "https://tec.openplanner.team/stops/N501lzb"], ["https://tec.openplanner.team/stops/Lhrpwan1", "https://tec.openplanner.team/stops/Lhrpwan2"], ["https://tec.openplanner.team/stops/H2sb234a", "https://tec.openplanner.team/stops/H2sb266b"], ["https://tec.openplanner.team/stops/Bottcro2", "https://tec.openplanner.team/stops/Botteco2"], ["https://tec.openplanner.team/stops/N504aaa", "https://tec.openplanner.team/stops/N511afa"], ["https://tec.openplanner.team/stops/X783acb", "https://tec.openplanner.team/stops/X783acc"], ["https://tec.openplanner.team/stops/LTIdjal1", "https://tec.openplanner.team/stops/LTIpres2"], ["https://tec.openplanner.team/stops/LSSeg--1", "https://tec.openplanner.team/stops/LSShous1"], ["https://tec.openplanner.team/stops/X902aaa", "https://tec.openplanner.team/stops/X902apa"], ["https://tec.openplanner.team/stops/Blimch%C3%A22", "https://tec.openplanner.team/stops/Bottpry1"], ["https://tec.openplanner.team/stops/N534bea", "https://tec.openplanner.team/stops/N534beb"], ["https://tec.openplanner.team/stops/Cflstan1", "https://tec.openplanner.team/stops/Cflstan3"], ["https://tec.openplanner.team/stops/H1vh137b", "https://tec.openplanner.team/stops/H3th127b"], ["https://tec.openplanner.team/stops/Lmiensp*", "https://tec.openplanner.team/stops/Lmimili4"], ["https://tec.openplanner.team/stops/N547ama", "https://tec.openplanner.team/stops/N573apa"], ["https://tec.openplanner.team/stops/LsVmolk2", "https://tec.openplanner.team/stops/LsVprum2"], ["https://tec.openplanner.team/stops/LBabeco3", "https://tec.openplanner.team/stops/LBapeup1"], ["https://tec.openplanner.team/stops/N535aea", "https://tec.openplanner.team/stops/N535afb"], ["https://tec.openplanner.team/stops/Beclron1", "https://tec.openplanner.team/stops/Becltri2"], ["https://tec.openplanner.team/stops/Clggrfe2", "https://tec.openplanner.team/stops/H1be103a"], ["https://tec.openplanner.team/stops/X606aba", "https://tec.openplanner.team/stops/X648aab"], ["https://tec.openplanner.team/stops/LsVeite1", "https://tec.openplanner.team/stops/LsVfeye2"], ["https://tec.openplanner.team/stops/X823acb", "https://tec.openplanner.team/stops/X823aff"], ["https://tec.openplanner.team/stops/Bsengma1", "https://tec.openplanner.team/stops/H2se105a"], ["https://tec.openplanner.team/stops/Btstbbu2", "https://tec.openplanner.team/stops/Btstpch1"], ["https://tec.openplanner.team/stops/N101aha", "https://tec.openplanner.team/stops/N101aoa"], ["https://tec.openplanner.team/stops/LAMfrai1", "https://tec.openplanner.team/stops/LJEpaqu2"], ["https://tec.openplanner.team/stops/Csa4mai1", "https://tec.openplanner.team/stops/Cwgmell3"], ["https://tec.openplanner.team/stops/X672aaa", "https://tec.openplanner.team/stops/X672aab"], ["https://tec.openplanner.team/stops/N353afd", "https://tec.openplanner.team/stops/N357abb"], ["https://tec.openplanner.team/stops/Cfogaul2", "https://tec.openplanner.team/stops/CMfont2"], ["https://tec.openplanner.team/stops/N383acb", "https://tec.openplanner.team/stops/N383adb"], ["https://tec.openplanner.team/stops/N270aec", "https://tec.openplanner.team/stops/N270afa"], ["https://tec.openplanner.team/stops/X937aia", "https://tec.openplanner.team/stops/X937aib"], ["https://tec.openplanner.team/stops/CMjans2", "https://tec.openplanner.team/stops/Cmtpire1"], ["https://tec.openplanner.team/stops/N501esa", "https://tec.openplanner.team/stops/N501eua"], ["https://tec.openplanner.team/stops/X938aba", "https://tec.openplanner.team/stops/X939aga"], ["https://tec.openplanner.team/stops/X744aaa", "https://tec.openplanner.team/stops/X744aab"], ["https://tec.openplanner.team/stops/N501hjc", "https://tec.openplanner.team/stops/N501hjd"], ["https://tec.openplanner.team/stops/Cgplutt1", "https://tec.openplanner.team/stops/Cgpplac2"], ["https://tec.openplanner.team/stops/H2mm136b", "https://tec.openplanner.team/stops/H2mo123a"], ["https://tec.openplanner.team/stops/N512acb", "https://tec.openplanner.team/stops/N512axa"], ["https://tec.openplanner.team/stops/Lmohomv2", "https://tec.openplanner.team/stops/Lmopans4"], ["https://tec.openplanner.team/stops/X796afb", "https://tec.openplanner.team/stops/X986akb"], ["https://tec.openplanner.team/stops/N139aaa", "https://tec.openplanner.team/stops/N146aeb"], ["https://tec.openplanner.team/stops/LAmeg--2", "https://tec.openplanner.team/stops/LNHhome1"], ["https://tec.openplanner.team/stops/LRGcana1", "https://tec.openplanner.team/stops/LRGgend1"], ["https://tec.openplanner.team/stops/Bitrecu2", "https://tec.openplanner.team/stops/Bitrmde2"], ["https://tec.openplanner.team/stops/X746aia", "https://tec.openplanner.team/stops/X746aka"], ["https://tec.openplanner.team/stops/N540aib", "https://tec.openplanner.team/stops/N540ajb"], ["https://tec.openplanner.team/stops/N155aib", "https://tec.openplanner.team/stops/N155akb"], ["https://tec.openplanner.team/stops/H4cl112b", "https://tec.openplanner.team/stops/H4ga163a"], ["https://tec.openplanner.team/stops/X943afa", "https://tec.openplanner.team/stops/X943aga"], ["https://tec.openplanner.team/stops/Lghberl2", "https://tec.openplanner.team/stops/Lghferr2"], ["https://tec.openplanner.team/stops/Cfbcabi1", "https://tec.openplanner.team/stops/Cfbegli2"], ["https://tec.openplanner.team/stops/Lbopote2", "https://tec.openplanner.team/stops/Lsebonc2"], ["https://tec.openplanner.team/stops/N147aba", "https://tec.openplanner.team/stops/N147abb"], ["https://tec.openplanner.team/stops/Lvealbe1", "https://tec.openplanner.team/stops/Lvexhav1"], ["https://tec.openplanner.team/stops/H2go114d", "https://tec.openplanner.team/stops/H2go119a"], ["https://tec.openplanner.team/stops/N501fdc", "https://tec.openplanner.team/stops/N501lzz"], ["https://tec.openplanner.team/stops/X804aob", "https://tec.openplanner.team/stops/X804bsb"], ["https://tec.openplanner.team/stops/X752aba", "https://tec.openplanner.team/stops/X752abb"], ["https://tec.openplanner.team/stops/NL75aab", "https://tec.openplanner.team/stops/NL75adb"], ["https://tec.openplanner.team/stops/Bvlvbth1", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/Cmyrens1", "https://tec.openplanner.team/stops/Cmyrens2"], ["https://tec.openplanner.team/stops/LTrchar2", "https://tec.openplanner.team/stops/LTrmort2"], ["https://tec.openplanner.team/stops/H1hr124a", "https://tec.openplanner.team/stops/H1hr129b"], ["https://tec.openplanner.team/stops/LBdcarr1", "https://tec.openplanner.team/stops/LLrfagn1"], ["https://tec.openplanner.team/stops/LGepeck1", "https://tec.openplanner.team/stops/LMsgara1"], ["https://tec.openplanner.team/stops/H4mo144a", "https://tec.openplanner.team/stops/H4mo180a"], ["https://tec.openplanner.team/stops/Crcpcom1", "https://tec.openplanner.team/stops/Crcverr1"], ["https://tec.openplanner.team/stops/Brach122", "https://tec.openplanner.team/stops/Bwaakap1"], ["https://tec.openplanner.team/stops/N505adb", "https://tec.openplanner.team/stops/N505aha"], ["https://tec.openplanner.team/stops/Lbeloui2", "https://tec.openplanner.team/stops/Llxeg--1"], ["https://tec.openplanner.team/stops/LLt43--1", "https://tec.openplanner.team/stops/LVsboug1"], ["https://tec.openplanner.team/stops/LLNcruc1", "https://tec.openplanner.team/stops/LSpxhig2"], ["https://tec.openplanner.team/stops/H4bi156a", "https://tec.openplanner.team/stops/H4eg101a"], ["https://tec.openplanner.team/stops/LAUvdab1", "https://tec.openplanner.team/stops/LJueg--1"], ["https://tec.openplanner.team/stops/N501bib", "https://tec.openplanner.team/stops/N501bob"], ["https://tec.openplanner.team/stops/X633ada", "https://tec.openplanner.team/stops/X633aea"], ["https://tec.openplanner.team/stops/H4ve133a", "https://tec.openplanner.team/stops/H4ve134a"], ["https://tec.openplanner.team/stops/X713aba", "https://tec.openplanner.team/stops/X713anb"], ["https://tec.openplanner.team/stops/H4co141b", "https://tec.openplanner.team/stops/H4co142a"], ["https://tec.openplanner.team/stops/N529ada", "https://tec.openplanner.team/stops/N584aca"], ["https://tec.openplanner.team/stops/N501fgb", "https://tec.openplanner.team/stops/N501fjd"], ["https://tec.openplanner.team/stops/Cptdubo2", "https://tec.openplanner.team/stops/Cptplac4"], ["https://tec.openplanner.team/stops/N501mxb", "https://tec.openplanner.team/stops/N527afb"], ["https://tec.openplanner.team/stops/LClflor1", "https://tec.openplanner.team/stops/LHChoek4"], ["https://tec.openplanner.team/stops/Lsmjalh2", "https://tec.openplanner.team/stops/Lsmnico1"], ["https://tec.openplanner.team/stops/H1ms263a", "https://tec.openplanner.team/stops/H1ms266b"], ["https://tec.openplanner.team/stops/LFsconc2", "https://tec.openplanner.team/stops/LFslign2"], ["https://tec.openplanner.team/stops/LHCquat1", "https://tec.openplanner.team/stops/LHCquat4"], ["https://tec.openplanner.team/stops/X224ada", "https://tec.openplanner.team/stops/X224aea"], ["https://tec.openplanner.team/stops/Cna6che1", "https://tec.openplanner.team/stops/Cnawari2"], ["https://tec.openplanner.team/stops/N150aba", "https://tec.openplanner.team/stops/N150aca"], ["https://tec.openplanner.team/stops/LOMcabi2", "https://tec.openplanner.team/stops/LOMdTEC2"], ["https://tec.openplanner.team/stops/LBAbooz1", "https://tec.openplanner.team/stops/LBAcere1"], ["https://tec.openplanner.team/stops/LVtespo1", "https://tec.openplanner.team/stops/LVttarg2"], ["https://tec.openplanner.team/stops/N301amb", "https://tec.openplanner.team/stops/N302afa"], ["https://tec.openplanner.team/stops/X946afa", "https://tec.openplanner.team/stops/X946aha"], ["https://tec.openplanner.team/stops/N137aeb", "https://tec.openplanner.team/stops/N137afb"], ["https://tec.openplanner.team/stops/X727adb", "https://tec.openplanner.team/stops/X747aia"], ["https://tec.openplanner.team/stops/H5qu143a", "https://tec.openplanner.team/stops/H5qu182a"], ["https://tec.openplanner.team/stops/LSChane1", "https://tec.openplanner.team/stops/LVEmohi1"], ["https://tec.openplanner.team/stops/Llgrull1", "https://tec.openplanner.team/stops/Llgrull2"], ["https://tec.openplanner.team/stops/X982aaa", "https://tec.openplanner.team/stops/X982aac"], ["https://tec.openplanner.team/stops/X811ama", "https://tec.openplanner.team/stops/X811aqb"], ["https://tec.openplanner.team/stops/X725aba", "https://tec.openplanner.team/stops/X725ahb"], ["https://tec.openplanner.team/stops/X892aeb", "https://tec.openplanner.team/stops/X892afb"], ["https://tec.openplanner.team/stops/LBgcroi2", "https://tec.openplanner.team/stops/LGmhedo1"], ["https://tec.openplanner.team/stops/LsCbrau2", "https://tec.openplanner.team/stops/LwPdorf1"], ["https://tec.openplanner.team/stops/H4ev118b", "https://tec.openplanner.team/stops/H4mo195b"], ["https://tec.openplanner.team/stops/X721ajb", "https://tec.openplanner.team/stops/X721aka"], ["https://tec.openplanner.team/stops/LESamos1", "https://tec.openplanner.team/stops/LESmagr1"], ["https://tec.openplanner.team/stops/Llmdavi2", "https://tec.openplanner.team/stops/Llmeg--2"], ["https://tec.openplanner.team/stops/H2mo129b", "https://tec.openplanner.team/stops/H2mo143b"], ["https://tec.openplanner.team/stops/Bclgavi2", "https://tec.openplanner.team/stops/Bclglbu2"], ["https://tec.openplanner.team/stops/LwAlont2", "https://tec.openplanner.team/stops/LwAlont3"], ["https://tec.openplanner.team/stops/Ladpire1", "https://tec.openplanner.team/stops/Ladthom1"], ["https://tec.openplanner.team/stops/Brixeur5", "https://tec.openplanner.team/stops/Brixpao3"], ["https://tec.openplanner.team/stops/Cmocalv1", "https://tec.openplanner.team/stops/Cmopn6"], ["https://tec.openplanner.team/stops/H1pa109c", "https://tec.openplanner.team/stops/H1pa111a"], ["https://tec.openplanner.team/stops/LBmbara1", "https://tec.openplanner.team/stops/LJAbell1"], ["https://tec.openplanner.team/stops/Lrocort1", "https://tec.openplanner.team/stops/Lrocort2"], ["https://tec.openplanner.team/stops/Bgntcha1", "https://tec.openplanner.team/stops/Bsgebou1"], ["https://tec.openplanner.team/stops/X836aeb", "https://tec.openplanner.team/stops/X836afb"], ["https://tec.openplanner.team/stops/LMNentr1", "https://tec.openplanner.team/stops/LMNgare1"], ["https://tec.openplanner.team/stops/Bracrpe1", "https://tec.openplanner.team/stops/Bracrpe2"], ["https://tec.openplanner.team/stops/Lgrfrai2", "https://tec.openplanner.team/stops/Lgrfrcu2"], ["https://tec.openplanner.team/stops/H1do120b", "https://tec.openplanner.team/stops/H1do127b"], ["https://tec.openplanner.team/stops/X925aob", "https://tec.openplanner.team/stops/X949ama"], ["https://tec.openplanner.team/stops/H1at108a", "https://tec.openplanner.team/stops/H1at108b"], ["https://tec.openplanner.team/stops/N170aaa", "https://tec.openplanner.team/stops/NC14abb"], ["https://tec.openplanner.team/stops/X713aca", "https://tec.openplanner.team/stops/X796ahb"], ["https://tec.openplanner.team/stops/H4ty358a", "https://tec.openplanner.team/stops/H4ty383a"], ["https://tec.openplanner.team/stops/X839afb", "https://tec.openplanner.team/stops/X840aab"], ["https://tec.openplanner.team/stops/X986aca", "https://tec.openplanner.team/stops/X986adb"], ["https://tec.openplanner.team/stops/Lflec--2", "https://tec.openplanner.team/stops/Lflroms2"], ["https://tec.openplanner.team/stops/LWElanc2", "https://tec.openplanner.team/stops/LWEmerm2"], ["https://tec.openplanner.team/stops/N537ala", "https://tec.openplanner.team/stops/N537alb"], ["https://tec.openplanner.team/stops/X601bsa", "https://tec.openplanner.team/stops/X602ahb"], ["https://tec.openplanner.team/stops/X713aha", "https://tec.openplanner.team/stops/X713amb"], ["https://tec.openplanner.team/stops/X658aea", "https://tec.openplanner.team/stops/X659ala"], ["https://tec.openplanner.team/stops/X896aec", "https://tec.openplanner.team/stops/X896aia"], ["https://tec.openplanner.team/stops/LMAbass1", "https://tec.openplanner.team/stops/LMAptne2"], ["https://tec.openplanner.team/stops/Ltithie2", "https://tec.openplanner.team/stops/Ltitill*"], ["https://tec.openplanner.team/stops/Lstpoly2", "https://tec.openplanner.team/stops/Lstscie1"], ["https://tec.openplanner.team/stops/LrAmuhl1", "https://tec.openplanner.team/stops/LrApont2"], ["https://tec.openplanner.team/stops/LgRhouf1", "https://tec.openplanner.team/stops/LnUhohe1"], ["https://tec.openplanner.team/stops/Ccimont1", "https://tec.openplanner.team/stops/Ccimont2"], ["https://tec.openplanner.team/stops/LVLf10-2", "https://tec.openplanner.team/stops/LVLzoni1"], ["https://tec.openplanner.team/stops/Lmlchev1", "https://tec.openplanner.team/stops/Lpoprie1"], ["https://tec.openplanner.team/stops/H1fr123b", "https://tec.openplanner.team/stops/H1fr152a"], ["https://tec.openplanner.team/stops/H4bh100a", "https://tec.openplanner.team/stops/H4bh100b"], ["https://tec.openplanner.team/stops/N515akc", "https://tec.openplanner.team/stops/N515alb"], ["https://tec.openplanner.team/stops/Bjodfab1", "https://tec.openplanner.team/stops/Bsjgegl1"], ["https://tec.openplanner.team/stops/LOUpres2", "https://tec.openplanner.team/stops/Lvitour2"], ["https://tec.openplanner.team/stops/Cauromi1", "https://tec.openplanner.team/stops/N543ang"], ["https://tec.openplanner.team/stops/Bmelegl1", "https://tec.openplanner.team/stops/Bmelegl2"], ["https://tec.openplanner.team/stops/X601dca", "https://tec.openplanner.team/stops/X601dcb"], ["https://tec.openplanner.team/stops/H5pe126a", "https://tec.openplanner.team/stops/H5pe137a"], ["https://tec.openplanner.team/stops/Lgrbell1", "https://tec.openplanner.team/stops/Lgrbell2"], ["https://tec.openplanner.team/stops/H1cd110b", "https://tec.openplanner.team/stops/H1cd114a"], ["https://tec.openplanner.team/stops/LSNbouh3", "https://tec.openplanner.team/stops/LSNchen3"], ["https://tec.openplanner.team/stops/LOCponc*", "https://tec.openplanner.team/stops/N223aba"], ["https://tec.openplanner.team/stops/LScchpl1", "https://tec.openplanner.team/stops/LScchpl2"], ["https://tec.openplanner.team/stops/Louduna*", "https://tec.openplanner.team/stops/Louense1"], ["https://tec.openplanner.team/stops/H1go174a", "https://tec.openplanner.team/stops/H1mx123b"], ["https://tec.openplanner.team/stops/LOUbarr2", "https://tec.openplanner.team/stops/LOUherm2"], ["https://tec.openplanner.team/stops/X695ada", "https://tec.openplanner.team/stops/X696ala"], ["https://tec.openplanner.team/stops/X626aab", "https://tec.openplanner.team/stops/X626aka"], ["https://tec.openplanner.team/stops/LlChebs2", "https://tec.openplanner.team/stops/LrAmuhl1"], ["https://tec.openplanner.team/stops/LDOanes2", "https://tec.openplanner.team/stops/LDObran1"], ["https://tec.openplanner.team/stops/X657ada", "https://tec.openplanner.team/stops/X657anb"], ["https://tec.openplanner.team/stops/Bbaucai1", "https://tec.openplanner.team/stops/Bbauegl1"], ["https://tec.openplanner.team/stops/X903aaa", "https://tec.openplanner.team/stops/X903aga"], ["https://tec.openplanner.team/stops/Bspkker1", "https://tec.openplanner.team/stops/Bspkker2"], ["https://tec.openplanner.team/stops/LeUarno1", "https://tec.openplanner.team/stops/LeUhutt1"], ["https://tec.openplanner.team/stops/N145ajb", "https://tec.openplanner.team/stops/N145aka"], ["https://tec.openplanner.team/stops/X921ana", "https://tec.openplanner.team/stops/X921anb"], ["https://tec.openplanner.team/stops/LHheg--2", "https://tec.openplanner.team/stops/LHhelia1"], ["https://tec.openplanner.team/stops/X917aea", "https://tec.openplanner.team/stops/X921anb"], ["https://tec.openplanner.team/stops/NL78aca", "https://tec.openplanner.team/stops/NL78aea"], ["https://tec.openplanner.team/stops/N538afb", "https://tec.openplanner.team/stops/N539alb"], ["https://tec.openplanner.team/stops/LRRchea5", "https://tec.openplanner.team/stops/LRRchea6"], ["https://tec.openplanner.team/stops/H3lr106a", "https://tec.openplanner.team/stops/H3th129a"], ["https://tec.openplanner.team/stops/X801bwa", "https://tec.openplanner.team/stops/X802ana"], ["https://tec.openplanner.team/stops/H4es111b", "https://tec.openplanner.team/stops/H4ln130b"], ["https://tec.openplanner.team/stops/LFsgend2", "https://tec.openplanner.team/stops/Lligara2"], ["https://tec.openplanner.team/stops/X641ava", "https://tec.openplanner.team/stops/X673aab"], ["https://tec.openplanner.team/stops/LCEcent1", "https://tec.openplanner.team/stops/LCEec--1"], ["https://tec.openplanner.team/stops/N514ama", "https://tec.openplanner.team/stops/N514amb"], ["https://tec.openplanner.team/stops/Bhevjal2", "https://tec.openplanner.team/stops/Bleugar1"], ["https://tec.openplanner.team/stops/H5pe129b", "https://tec.openplanner.team/stops/H5pe144a"], ["https://tec.openplanner.team/stops/Canpeup2", "https://tec.openplanner.team/stops/H2an102b"], ["https://tec.openplanner.team/stops/H1je218a", "https://tec.openplanner.team/stops/H1je218b"], ["https://tec.openplanner.team/stops/LbUbisc2", "https://tec.openplanner.team/stops/LbUwirt2"], ["https://tec.openplanner.team/stops/Bquebth2", "https://tec.openplanner.team/stops/Bquecro2"], ["https://tec.openplanner.team/stops/Braccen1", "https://tec.openplanner.team/stops/Bracgar2"], ["https://tec.openplanner.team/stops/LOUherm1", "https://tec.openplanner.team/stops/LOUherm2"], ["https://tec.openplanner.team/stops/Cflathe1", "https://tec.openplanner.team/stops/Cflstan1"], ["https://tec.openplanner.team/stops/LFFmarc2", "https://tec.openplanner.team/stops/LSCc39-2"], ["https://tec.openplanner.team/stops/Lhr1ave2", "https://tec.openplanner.team/stops/Lhrmeta1"], ["https://tec.openplanner.team/stops/H1ht126a", "https://tec.openplanner.team/stops/H1te191a"], ["https://tec.openplanner.team/stops/N323abb", "https://tec.openplanner.team/stops/N323acb"], ["https://tec.openplanner.team/stops/H4ty347a", "https://tec.openplanner.team/stops/H4ty352a"], ["https://tec.openplanner.team/stops/N208aaa", "https://tec.openplanner.team/stops/N208aab"], ["https://tec.openplanner.team/stops/Lvtcalv1", "https://tec.openplanner.team/stops/Lvtcalv2"], ["https://tec.openplanner.team/stops/H1bb119a", "https://tec.openplanner.team/stops/H1bb119b"], ["https://tec.openplanner.team/stops/X601coa", "https://tec.openplanner.team/stops/X601cxa"], ["https://tec.openplanner.team/stops/X725aeb", "https://tec.openplanner.team/stops/X725aec"], ["https://tec.openplanner.team/stops/Bwatcro1", "https://tec.openplanner.team/stops/Bwatrsg2"], ["https://tec.openplanner.team/stops/LmAgruf1", "https://tec.openplanner.team/stops/LmAgruf2"], ["https://tec.openplanner.team/stops/X757abb", "https://tec.openplanner.team/stops/X757acb"], ["https://tec.openplanner.team/stops/Bjodmal1", "https://tec.openplanner.team/stops/Bjodmal2"], ["https://tec.openplanner.team/stops/N539acb", "https://tec.openplanner.team/stops/N539ama"], ["https://tec.openplanner.team/stops/H2mg136a", "https://tec.openplanner.team/stops/H2mg143a"], ["https://tec.openplanner.team/stops/LRmrode2", "https://tec.openplanner.team/stops/LTEkl122"], ["https://tec.openplanner.team/stops/H4we137a", "https://tec.openplanner.team/stops/H4we137d"], ["https://tec.openplanner.team/stops/Bsamfma1", "https://tec.openplanner.team/stops/Bsamfma2"], ["https://tec.openplanner.team/stops/H1og132a", "https://tec.openplanner.team/stops/H1og135b"], ["https://tec.openplanner.team/stops/Cdostco1", "https://tec.openplanner.team/stops/Ctuecol1"], ["https://tec.openplanner.team/stops/H1hn204a", "https://tec.openplanner.team/stops/H1hn204b"], ["https://tec.openplanner.team/stops/X663aha", "https://tec.openplanner.team/stops/X663ahb"], ["https://tec.openplanner.team/stops/CMmorg1", "https://tec.openplanner.team/stops/Cmoecol2"], ["https://tec.openplanner.team/stops/Bnivbxl2", "https://tec.openplanner.team/stops/Bnivpla2"], ["https://tec.openplanner.team/stops/LlZbell2", "https://tec.openplanner.team/stops/LmEdorf2"], ["https://tec.openplanner.team/stops/H1ba107a", "https://tec.openplanner.team/stops/H1ba110a"], ["https://tec.openplanner.team/stops/H1ca100a", "https://tec.openplanner.team/stops/H1sd347a"], ["https://tec.openplanner.team/stops/H4ka178a", "https://tec.openplanner.team/stops/H4mt218a"], ["https://tec.openplanner.team/stops/N201aka", "https://tec.openplanner.team/stops/N211akb"], ["https://tec.openplanner.team/stops/LSPplat1", "https://tec.openplanner.team/stops/LSPplat2"], ["https://tec.openplanner.team/stops/N203aeb", "https://tec.openplanner.team/stops/N203afb"], ["https://tec.openplanner.team/stops/Llgbass2", "https://tec.openplanner.team/stops/Llgreyn1"], ["https://tec.openplanner.team/stops/H1qg138c", "https://tec.openplanner.team/stops/H1qg138d"], ["https://tec.openplanner.team/stops/Cgobruy2", "https://tec.openplanner.team/stops/CMbruy2"], ["https://tec.openplanner.team/stops/LAnvien2", "https://tec.openplanner.team/stops/LVnrock1"], ["https://tec.openplanner.team/stops/N118aqa", "https://tec.openplanner.team/stops/N118axb"], ["https://tec.openplanner.team/stops/LPRmoul2", "https://tec.openplanner.team/stops/LTRgare4"], ["https://tec.openplanner.team/stops/Bmsgbur1", "https://tec.openplanner.team/stops/Bmsgstj1"], ["https://tec.openplanner.team/stops/LHrrard2", "https://tec.openplanner.team/stops/LHrwaya1"], ["https://tec.openplanner.team/stops/Cjxpann1", "https://tec.openplanner.team/stops/Cmyvesa3"], ["https://tec.openplanner.team/stops/LwAkape1", "https://tec.openplanner.team/stops/LwAkape2"], ["https://tec.openplanner.team/stops/Lhrjaur2", "https://tec.openplanner.team/stops/Lhrlamb1"], ["https://tec.openplanner.team/stops/Bwavcin1", "https://tec.openplanner.team/stops/Bwavlav2"], ["https://tec.openplanner.team/stops/Cfaecmo2", "https://tec.openplanner.team/stops/Cfapiro1"], ["https://tec.openplanner.team/stops/N526ada", "https://tec.openplanner.team/stops/N526aea"], ["https://tec.openplanner.team/stops/X793aca", "https://tec.openplanner.team/stops/X793acb"], ["https://tec.openplanner.team/stops/LFUfleu1", "https://tec.openplanner.team/stops/LFUfleu2"], ["https://tec.openplanner.team/stops/Cnabult3", "https://tec.openplanner.team/stops/Cnaplbu2"], ["https://tec.openplanner.team/stops/LOrpont2", "https://tec.openplanner.team/stops/LTychev1"], ["https://tec.openplanner.team/stops/H1mr123b", "https://tec.openplanner.team/stops/H1wi151a"], ["https://tec.openplanner.team/stops/H4ta125b", "https://tec.openplanner.team/stops/H4ta133b"], ["https://tec.openplanner.team/stops/Lhrcols1", "https://tec.openplanner.team/stops/Lvtpata2"], ["https://tec.openplanner.team/stops/LJedonc3", "https://tec.openplanner.team/stops/LJeeg--1"], ["https://tec.openplanner.team/stops/H1mc129a", "https://tec.openplanner.team/stops/H1mc129b"], ["https://tec.openplanner.team/stops/LWOplat1", "https://tec.openplanner.team/stops/LWOsudr1"], ["https://tec.openplanner.team/stops/H4oe147b", "https://tec.openplanner.team/stops/H4oe149a"], ["https://tec.openplanner.team/stops/H3th127a", "https://tec.openplanner.team/stops/H3th127b"], ["https://tec.openplanner.team/stops/H1em108a", "https://tec.openplanner.team/stops/H1em108b"], ["https://tec.openplanner.team/stops/H1ha189b", "https://tec.openplanner.team/stops/H1vh135b"], ["https://tec.openplanner.team/stops/H4bl105b", "https://tec.openplanner.team/stops/H4ga158a"], ["https://tec.openplanner.team/stops/Blilwit1", "https://tec.openplanner.team/stops/Clpsola1"], ["https://tec.openplanner.team/stops/Bjdsbro2", "https://tec.openplanner.team/stops/Bjdssta2"], ["https://tec.openplanner.team/stops/Cfcchas1", "https://tec.openplanner.team/stops/Cvlstan2"], ["https://tec.openplanner.team/stops/X898aja", "https://tec.openplanner.team/stops/X898ana"], ["https://tec.openplanner.team/stops/Bboufsm1", "https://tec.openplanner.team/stops/Bboufsm2"], ["https://tec.openplanner.team/stops/Bnivaba1", "https://tec.openplanner.team/stops/Bnivgam1"], ["https://tec.openplanner.team/stops/LHUec--2", "https://tec.openplanner.team/stops/LHUsaul2"], ["https://tec.openplanner.team/stops/NL35acb", "https://tec.openplanner.team/stops/NL35agb"], ["https://tec.openplanner.team/stops/N211aca", "https://tec.openplanner.team/stops/N211adb"], ["https://tec.openplanner.team/stops/LHodomm2", "https://tec.openplanner.team/stops/LHovach2"], ["https://tec.openplanner.team/stops/N519ajb", "https://tec.openplanner.team/stops/N519aob"], ["https://tec.openplanner.team/stops/LbUvith1", "https://tec.openplanner.team/stops/LbUvith2"], ["https://tec.openplanner.team/stops/X602ama", "https://tec.openplanner.team/stops/X602amb"], ["https://tec.openplanner.team/stops/LTEkerk2", "https://tec.openplanner.team/stops/LTEnuro1"], ["https://tec.openplanner.team/stops/Ccabois1", "https://tec.openplanner.team/stops/Ccaegli4"], ["https://tec.openplanner.team/stops/Cbwegl1", "https://tec.openplanner.team/stops/Cmgbras1"], ["https://tec.openplanner.team/stops/LMAalli1", "https://tec.openplanner.team/stops/LMAstei1"], ["https://tec.openplanner.team/stops/Ladlimi1", "https://tec.openplanner.team/stops/Lveanto1"], ["https://tec.openplanner.team/stops/Bbgncnd2", "https://tec.openplanner.team/stops/N530aea"], ["https://tec.openplanner.team/stops/LGecime2", "https://tec.openplanner.team/stops/LGecite2"], ["https://tec.openplanner.team/stops/LHDlibi1", "https://tec.openplanner.team/stops/LLmcheg3"], ["https://tec.openplanner.team/stops/Ljecoqu1", "https://tec.openplanner.team/stops/LjeGRPMC"], ["https://tec.openplanner.team/stops/H2lc172a", "https://tec.openplanner.team/stops/H2lc172b"], ["https://tec.openplanner.team/stops/N509awa", "https://tec.openplanner.team/stops/N509awb"], ["https://tec.openplanner.team/stops/H1gg114a", "https://tec.openplanner.team/stops/H1ry136a"], ["https://tec.openplanner.team/stops/X754aab", "https://tec.openplanner.team/stops/X756aec"], ["https://tec.openplanner.team/stops/X750aka", "https://tec.openplanner.team/stops/X750bja"], ["https://tec.openplanner.team/stops/Bbsicas2", "https://tec.openplanner.team/stops/Bbsifml1"], ["https://tec.openplanner.team/stops/H1so135c", "https://tec.openplanner.team/stops/H1so139c"], ["https://tec.openplanner.team/stops/X940aec", "https://tec.openplanner.team/stops/X940aed"], ["https://tec.openplanner.team/stops/Blhupri1", "https://tec.openplanner.team/stops/Bohnhan1"], ["https://tec.openplanner.team/stops/H2tr252b", "https://tec.openplanner.team/stops/H2tr256b"], ["https://tec.openplanner.team/stops/LPurech2", "https://tec.openplanner.team/stops/LPutins2"], ["https://tec.openplanner.team/stops/LAWbrou2", "https://tec.openplanner.team/stops/LAWdefu3"], ["https://tec.openplanner.team/stops/LSTchen1", "https://tec.openplanner.team/stops/LSTvaul1"], ["https://tec.openplanner.team/stops/LWAhart1", "https://tec.openplanner.team/stops/LWAmois1"], ["https://tec.openplanner.team/stops/X910afb", "https://tec.openplanner.team/stops/X910afd"], ["https://tec.openplanner.team/stops/H1ro134a", "https://tec.openplanner.team/stops/H1ro137b"], ["https://tec.openplanner.team/stops/H1qu104b", "https://tec.openplanner.team/stops/H1qu111b"], ["https://tec.openplanner.team/stops/Lpeathe*", "https://tec.openplanner.team/stops/Lpepano1"], ["https://tec.openplanner.team/stops/H2bh105a", "https://tec.openplanner.team/stops/H2bh117a"], ["https://tec.openplanner.team/stops/LCRchpl1", "https://tec.openplanner.team/stops/LTymahr1"], ["https://tec.openplanner.team/stops/N528agb", "https://tec.openplanner.team/stops/N528ahb"], ["https://tec.openplanner.team/stops/X723aga", "https://tec.openplanner.team/stops/X723aha"], ["https://tec.openplanner.team/stops/H1ms263b", "https://tec.openplanner.team/stops/H1ms264b"], ["https://tec.openplanner.team/stops/N501ltb", "https://tec.openplanner.team/stops/N501lxa"], ["https://tec.openplanner.team/stops/H4ar107b", "https://tec.openplanner.team/stops/H4ar172a"], ["https://tec.openplanner.team/stops/N515ana", "https://tec.openplanner.team/stops/N515anb"], ["https://tec.openplanner.team/stops/Clvchar2", "https://tec.openplanner.team/stops/Cmlbulp3"], ["https://tec.openplanner.team/stops/N571aca", "https://tec.openplanner.team/stops/N571ada"], ["https://tec.openplanner.team/stops/N576ama", "https://tec.openplanner.team/stops/N576amb"], ["https://tec.openplanner.team/stops/LaM266-2", "https://tec.openplanner.team/stops/LaMmark1"], ["https://tec.openplanner.team/stops/Bgemga08", "https://tec.openplanner.team/stops/Bgemga09"], ["https://tec.openplanner.team/stops/LDapota1", "https://tec.openplanner.team/stops/LOMdodi2"], ["https://tec.openplanner.team/stops/Llgjoie3", "https://tec.openplanner.team/stops/Llgmont2"], ["https://tec.openplanner.team/stops/H1hr120a", "https://tec.openplanner.team/stops/H3so171b"], ["https://tec.openplanner.team/stops/H2bh117a", "https://tec.openplanner.team/stops/H2lc146b"], ["https://tec.openplanner.team/stops/N511aoa", "https://tec.openplanner.team/stops/N511aoc"], ["https://tec.openplanner.team/stops/X808aba", "https://tec.openplanner.team/stops/X809aeb"], ["https://tec.openplanner.team/stops/N145aib", "https://tec.openplanner.team/stops/N145ajb"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N331aib"], ["https://tec.openplanner.team/stops/N127aia", "https://tec.openplanner.team/stops/N134aea"], ["https://tec.openplanner.team/stops/Bcsgcou2", "https://tec.openplanner.team/stops/Bmrsayw1"], ["https://tec.openplanner.team/stops/X948aob", "https://tec.openplanner.team/stops/X948bba"], ["https://tec.openplanner.team/stops/N541aab", "https://tec.openplanner.team/stops/N541aca"], ["https://tec.openplanner.team/stops/X354aia", "https://tec.openplanner.team/stops/X354aib"], ["https://tec.openplanner.team/stops/Cprlpre1", "https://tec.openplanner.team/stops/Cprlpre2"], ["https://tec.openplanner.team/stops/X639apa", "https://tec.openplanner.team/stops/X639apb"], ["https://tec.openplanner.team/stops/X947aba", "https://tec.openplanner.team/stops/X947aea"], ["https://tec.openplanner.team/stops/Bcbqh451", "https://tec.openplanner.team/stops/Bitrnus2"], ["https://tec.openplanner.team/stops/Cmlchan2", "https://tec.openplanner.team/stops/Cmlours1"], ["https://tec.openplanner.team/stops/H5at106a", "https://tec.openplanner.team/stops/H5at118a"], ["https://tec.openplanner.team/stops/N509aca", "https://tec.openplanner.team/stops/N511aoc"], ["https://tec.openplanner.team/stops/Cgzdeve1", "https://tec.openplanner.team/stops/Cgzhour2"], ["https://tec.openplanner.team/stops/LgHdorf1", "https://tec.openplanner.team/stops/LnDdorf1"], ["https://tec.openplanner.team/stops/Llgdelc2", "https://tec.openplanner.team/stops/Llgnico3"], ["https://tec.openplanner.team/stops/LSSvill3", "https://tec.openplanner.team/stops/LSSvill4"], ["https://tec.openplanner.team/stops/LMsbusc1", "https://tec.openplanner.team/stops/LMsgara1"], ["https://tec.openplanner.team/stops/H1ho136b", "https://tec.openplanner.team/stops/H1ho139b"], ["https://tec.openplanner.team/stops/Broscha2", "https://tec.openplanner.team/stops/Cgpleco2"], ["https://tec.openplanner.team/stops/X731ada", "https://tec.openplanner.team/stops/X986ala"], ["https://tec.openplanner.team/stops/H4wi161b", "https://tec.openplanner.team/stops/H4wi169a"], ["https://tec.openplanner.team/stops/Canegbr1", "https://tec.openplanner.team/stops/Canplch1"], ["https://tec.openplanner.team/stops/NL77aga", "https://tec.openplanner.team/stops/NL79aab"], ["https://tec.openplanner.team/stops/Bnivath2", "https://tec.openplanner.team/stops/Bnivfro2"], ["https://tec.openplanner.team/stops/N220ada", "https://tec.openplanner.team/stops/N220adb"], ["https://tec.openplanner.team/stops/N340adb", "https://tec.openplanner.team/stops/N340agb"], ["https://tec.openplanner.team/stops/LJAcent1", "https://tec.openplanner.team/stops/LJAfawe2"], ["https://tec.openplanner.team/stops/H4ga150a", "https://tec.openplanner.team/stops/H4ha168a"], ["https://tec.openplanner.team/stops/Lghalli1", "https://tec.openplanner.team/stops/Lghalli2"], ["https://tec.openplanner.team/stops/X542afa", "https://tec.openplanner.team/stops/X750ayb"], ["https://tec.openplanner.team/stops/Cbmind2", "https://tec.openplanner.team/stops/Cbmmafr2"], ["https://tec.openplanner.team/stops/X901aja", "https://tec.openplanner.team/stops/X901aka"], ["https://tec.openplanner.team/stops/Bottgar3", "https://tec.openplanner.team/stops/Bottgar4"], ["https://tec.openplanner.team/stops/H4ta129a", "https://tec.openplanner.team/stops/H4ta130a"], ["https://tec.openplanner.team/stops/X784afa", "https://tec.openplanner.team/stops/X784agb"], ["https://tec.openplanner.team/stops/X542aaa", "https://tec.openplanner.team/stops/X750blb"], ["https://tec.openplanner.team/stops/N503ajc", "https://tec.openplanner.team/stops/N503aka"], ["https://tec.openplanner.team/stops/Bspkbeu2", "https://tec.openplanner.team/stops/H1en103a"], ["https://tec.openplanner.team/stops/H4vx363b", "https://tec.openplanner.team/stops/H4vx364d"], ["https://tec.openplanner.team/stops/LHueg--1", "https://tec.openplanner.team/stops/NL73adb"], ["https://tec.openplanner.team/stops/NH01aca", "https://tec.openplanner.team/stops/NH01acb"], ["https://tec.openplanner.team/stops/H1au112a", "https://tec.openplanner.team/stops/H1au114b"], ["https://tec.openplanner.team/stops/Bcbqhai1", "https://tec.openplanner.team/stops/Bcbqhai2"], ["https://tec.openplanner.team/stops/X314aab", "https://tec.openplanner.team/stops/X825aeb"], ["https://tec.openplanner.team/stops/X982apa", "https://tec.openplanner.team/stops/X982bob"], ["https://tec.openplanner.team/stops/LbRfrie1", "https://tec.openplanner.team/stops/LmAgruf2"], ["https://tec.openplanner.team/stops/Lenabat1", "https://tec.openplanner.team/stops/Lenclar2"], ["https://tec.openplanner.team/stops/X604abb", "https://tec.openplanner.team/stops/X634ahb"], ["https://tec.openplanner.team/stops/LSGeg--3", "https://tec.openplanner.team/stops/LSGsolo1"], ["https://tec.openplanner.team/stops/N543acb", "https://tec.openplanner.team/stops/N543axb"], ["https://tec.openplanner.team/stops/N501bra", "https://tec.openplanner.team/stops/N501fra"], ["https://tec.openplanner.team/stops/X764aab", "https://tec.openplanner.team/stops/X765aeb"], ["https://tec.openplanner.team/stops/Bclgapi2", "https://tec.openplanner.team/stops/Bdvmcsa2"], ["https://tec.openplanner.team/stops/X626ala", "https://tec.openplanner.team/stops/X687aba"], ["https://tec.openplanner.team/stops/N501bha", "https://tec.openplanner.team/stops/N501bhb"], ["https://tec.openplanner.team/stops/LRRchea4", "https://tec.openplanner.team/stops/LRRmanc1"], ["https://tec.openplanner.team/stops/Llghlau2", "https://tec.openplanner.team/stops/Llglaur2"], ["https://tec.openplanner.team/stops/Csochea1", "https://tec.openplanner.team/stops/Csochea2"], ["https://tec.openplanner.team/stops/Blanath2", "https://tec.openplanner.team/stops/Blangar1"], ["https://tec.openplanner.team/stops/Bbgnton1", "https://tec.openplanner.team/stops/N561aea"], ["https://tec.openplanner.team/stops/H5st164b", "https://tec.openplanner.team/stops/H5st166b"], ["https://tec.openplanner.team/stops/LmNpost1", "https://tec.openplanner.team/stops/LmNpost2"], ["https://tec.openplanner.team/stops/X801bfa", "https://tec.openplanner.team/stops/X801bga"], ["https://tec.openplanner.team/stops/Balsnay2", "https://tec.openplanner.team/stops/Bbrlrph2"], ["https://tec.openplanner.team/stops/Brsgcfl2", "https://tec.openplanner.team/stops/Brsgsan1"], ["https://tec.openplanner.team/stops/H1cu120b", "https://tec.openplanner.team/stops/H1fl139b"], ["https://tec.openplanner.team/stops/H4br110a", "https://tec.openplanner.team/stops/H4cl113a"], ["https://tec.openplanner.team/stops/LvAkirc1", "https://tec.openplanner.team/stops/LvAkirc4"], ["https://tec.openplanner.team/stops/LROhael1", "https://tec.openplanner.team/stops/LWabela2"], ["https://tec.openplanner.team/stops/LSZcock1", "https://tec.openplanner.team/stops/LSZgare1"], ["https://tec.openplanner.team/stops/Cmlcpar1", "https://tec.openplanner.team/stops/Cmlmatc2"], ["https://tec.openplanner.team/stops/H1gq153a", "https://tec.openplanner.team/stops/H1gq153b"], ["https://tec.openplanner.team/stops/Lsehya-3", "https://tec.openplanner.team/stops/Lsehya-4"], ["https://tec.openplanner.team/stops/X876aea", "https://tec.openplanner.team/stops/X876aeb"], ["https://tec.openplanner.team/stops/N117auc", "https://tec.openplanner.team/stops/N117azb"], ["https://tec.openplanner.team/stops/LPbtene1", "https://tec.openplanner.team/stops/LPbtene2"], ["https://tec.openplanner.team/stops/LLgcent2", "https://tec.openplanner.team/stops/LRCviad1"], ["https://tec.openplanner.team/stops/X948aaa", "https://tec.openplanner.team/stops/X948aab"], ["https://tec.openplanner.team/stops/H4ar177a", "https://tec.openplanner.team/stops/H4ar178b"], ["https://tec.openplanner.team/stops/LGlcarr1", "https://tec.openplanner.team/stops/LHZpara2"], ["https://tec.openplanner.team/stops/N540aoa", "https://tec.openplanner.team/stops/N540aob"], ["https://tec.openplanner.team/stops/N501cfb", "https://tec.openplanner.team/stops/N501cfc"], ["https://tec.openplanner.team/stops/X801atb", "https://tec.openplanner.team/stops/X837ahb"], ["https://tec.openplanner.team/stops/N501esz", "https://tec.openplanner.team/stops/N501jqa"], ["https://tec.openplanner.team/stops/X886aca", "https://tec.openplanner.team/stops/X886afa"], ["https://tec.openplanner.team/stops/Bgntalt1", "https://tec.openplanner.team/stops/Bgntalt2"], ["https://tec.openplanner.team/stops/N506bia", "https://tec.openplanner.team/stops/N506bib"], ["https://tec.openplanner.team/stops/Cbfchla1", "https://tec.openplanner.team/stops/Cbfpauc1"], ["https://tec.openplanner.team/stops/H1bn148a", "https://tec.openplanner.team/stops/H1bn148b"], ["https://tec.openplanner.team/stops/H1hm173a", "https://tec.openplanner.team/stops/H1hm175a"], ["https://tec.openplanner.team/stops/H2fa108b", "https://tec.openplanner.team/stops/H2fa112b"], ["https://tec.openplanner.team/stops/X949aga", "https://tec.openplanner.team/stops/X949agb"], ["https://tec.openplanner.team/stops/LTOcime2", "https://tec.openplanner.team/stops/LTOeg--2"], ["https://tec.openplanner.team/stops/LMfbacu2", "https://tec.openplanner.team/stops/LMfpeni*"], ["https://tec.openplanner.team/stops/LmD181-1", "https://tec.openplanner.team/stops/LmDwei31"], ["https://tec.openplanner.team/stops/Bcseaba1", "https://tec.openplanner.team/stops/Bcsebea4"], ["https://tec.openplanner.team/stops/LSeaque3", "https://tec.openplanner.team/stops/LSetrix1"], ["https://tec.openplanner.team/stops/Lpegole4", "https://tec.openplanner.team/stops/LWecorn2"], ["https://tec.openplanner.team/stops/X746aca", "https://tec.openplanner.team/stops/X747ajb"], ["https://tec.openplanner.team/stops/H1ba120a", "https://tec.openplanner.team/stops/H1ba120b"], ["https://tec.openplanner.team/stops/X941aga", "https://tec.openplanner.team/stops/X941agb"], ["https://tec.openplanner.team/stops/N553ala", "https://tec.openplanner.team/stops/N553amb"], ["https://tec.openplanner.team/stops/X652aha", "https://tec.openplanner.team/stops/X652ahb"], ["https://tec.openplanner.team/stops/Ladgath1", "https://tec.openplanner.team/stops/Lvelimi2"], ["https://tec.openplanner.team/stops/LBSchpl1", "https://tec.openplanner.team/stops/LBSchpl2"], ["https://tec.openplanner.team/stops/Bbiecoc2", "https://tec.openplanner.team/stops/Bbsggot2"], ["https://tec.openplanner.team/stops/LSPmart1", "https://tec.openplanner.team/stops/LWMchpl1"], ["https://tec.openplanner.team/stops/H3th131a", "https://tec.openplanner.team/stops/H3th131b"], ["https://tec.openplanner.team/stops/N501grd", "https://tec.openplanner.team/stops/N501gre"], ["https://tec.openplanner.team/stops/LPLg90-1", "https://tec.openplanner.team/stops/LRRcole1"], ["https://tec.openplanner.team/stops/LWecarr1", "https://tec.openplanner.team/stops/LWelogi1"], ["https://tec.openplanner.team/stops/Brebcha2", "https://tec.openplanner.team/stops/Brebmtg1"], ["https://tec.openplanner.team/stops/X741acb", "https://tec.openplanner.team/stops/X758aka"], ["https://tec.openplanner.team/stops/Bsammon1", "https://tec.openplanner.team/stops/Bsammon2"], ["https://tec.openplanner.team/stops/N122aca", "https://tec.openplanner.team/stops/N150aea"], ["https://tec.openplanner.team/stops/H4ty359a", "https://tec.openplanner.team/stops/H4ty359b"], ["https://tec.openplanner.team/stops/H4ka187a", "https://tec.openplanner.team/stops/H4ty349b"], ["https://tec.openplanner.team/stops/N116aad", "https://tec.openplanner.team/stops/N116aea"], ["https://tec.openplanner.team/stops/LTIchev2", "https://tec.openplanner.team/stops/LTIsain2"], ["https://tec.openplanner.team/stops/LsF39--1", "https://tec.openplanner.team/stops/LsF39--2"], ["https://tec.openplanner.team/stops/H4ar177b", "https://tec.openplanner.team/stops/H4ar178b"], ["https://tec.openplanner.team/stops/LWDsott1", "https://tec.openplanner.team/stops/LWDsott3"], ["https://tec.openplanner.team/stops/X653afb", "https://tec.openplanner.team/stops/X654aia"], ["https://tec.openplanner.team/stops/H4bo119b", "https://tec.openplanner.team/stops/H5qu158a"], ["https://tec.openplanner.team/stops/N521ara", "https://tec.openplanner.team/stops/N521asc"], ["https://tec.openplanner.team/stops/LSIespe2", "https://tec.openplanner.team/stops/LSIgehe2"], ["https://tec.openplanner.team/stops/X657aga", "https://tec.openplanner.team/stops/X657aha"], ["https://tec.openplanner.team/stops/Crspana1", "https://tec.openplanner.team/stops/Crspana4"], ["https://tec.openplanner.team/stops/LmR90--1", "https://tec.openplanner.team/stops/LsHfrie2"], ["https://tec.openplanner.team/stops/H2ca101b", "https://tec.openplanner.team/stops/H2ca105b"], ["https://tec.openplanner.team/stops/Bndbgar1", "https://tec.openplanner.team/stops/Btlgegl2"], ["https://tec.openplanner.team/stops/H4ft137a", "https://tec.openplanner.team/stops/H4ft138b"], ["https://tec.openplanner.team/stops/Bolggar2", "https://tec.openplanner.team/stops/Bolgrsa1"], ["https://tec.openplanner.team/stops/N135bga", "https://tec.openplanner.team/stops/N135bhb"], ["https://tec.openplanner.team/stops/H4mo204a", "https://tec.openplanner.team/stops/H4mo204b"], ["https://tec.openplanner.team/stops/H4ha170a", "https://tec.openplanner.team/stops/H4ha170b"], ["https://tec.openplanner.team/stops/Bwaygrg1", "https://tec.openplanner.team/stops/Bwaypav2"], ["https://tec.openplanner.team/stops/H4ss155a", "https://tec.openplanner.team/stops/H5rx100b"], ["https://tec.openplanner.team/stops/LPOpass1", "https://tec.openplanner.team/stops/LPOthom1"], ["https://tec.openplanner.team/stops/LaSbahn1", "https://tec.openplanner.team/stops/LaSbahn2"], ["https://tec.openplanner.team/stops/N106alb", "https://tec.openplanner.team/stops/N137afb"], ["https://tec.openplanner.team/stops/H2ll176a", "https://tec.openplanner.team/stops/H2ll176b"], ["https://tec.openplanner.team/stops/N501dtc", "https://tec.openplanner.team/stops/N501jta"], ["https://tec.openplanner.team/stops/LhGrote1", "https://tec.openplanner.team/stops/LkEhatt2"], ["https://tec.openplanner.team/stops/X769aib", "https://tec.openplanner.team/stops/X769asa"], ["https://tec.openplanner.team/stops/H1do121a", "https://tec.openplanner.team/stops/H1el137a"], ["https://tec.openplanner.team/stops/LLbmalm1", "https://tec.openplanner.team/stops/LLbquar2"], ["https://tec.openplanner.team/stops/X999aka", "https://tec.openplanner.team/stops/X999asa"], ["https://tec.openplanner.team/stops/H1cu111a", "https://tec.openplanner.team/stops/H1hn202b"], ["https://tec.openplanner.team/stops/Cvretan2", "https://tec.openplanner.team/stops/Cvrhab22"], ["https://tec.openplanner.team/stops/LHNcreh2", "https://tec.openplanner.team/stops/NL37acb"], ["https://tec.openplanner.team/stops/Btubcal2", "https://tec.openplanner.team/stops/Btubsam2"], ["https://tec.openplanner.team/stops/Bbcoben1", "https://tec.openplanner.team/stops/Bbcolno1"], ["https://tec.openplanner.team/stops/X804cbb", "https://tec.openplanner.team/stops/X818abb"], ["https://tec.openplanner.team/stops/H4ty297a", "https://tec.openplanner.team/stops/H4ty342b"], ["https://tec.openplanner.team/stops/LPLaube1", "https://tec.openplanner.team/stops/LRRcole1"], ["https://tec.openplanner.team/stops/Clrcomb2", "https://tec.openplanner.team/stops/Clrmarl3"], ["https://tec.openplanner.team/stops/N120aaa", "https://tec.openplanner.team/stops/N120aba"], ["https://tec.openplanner.team/stops/LTHturo1", "https://tec.openplanner.team/stops/LTHturo3"], ["https://tec.openplanner.team/stops/LVIeg--1", "https://tec.openplanner.team/stops/LVIeg--4"], ["https://tec.openplanner.team/stops/LFmgeno2", "https://tec.openplanner.team/stops/LMObouh1"], ["https://tec.openplanner.team/stops/Bpermon3", "https://tec.openplanner.team/stops/Bpermon4"], ["https://tec.openplanner.team/stops/LPLcite2", "https://tec.openplanner.team/stops/LPLcroi1"], ["https://tec.openplanner.team/stops/H4ru236b", "https://tec.openplanner.team/stops/H4ru246b"], ["https://tec.openplanner.team/stops/Brixdec1", "https://tec.openplanner.team/stops/Brixdec2"], ["https://tec.openplanner.team/stops/Lveclin2", "https://tec.openplanner.team/stops/Lverdep1"], ["https://tec.openplanner.team/stops/N232bob", "https://tec.openplanner.team/stops/N232bpb"], ["https://tec.openplanner.team/stops/LNCesne1", "https://tec.openplanner.team/stops/LNCfawe2"], ["https://tec.openplanner.team/stops/Lvegc--4", "https://tec.openplanner.team/stops/Lvevict1"], ["https://tec.openplanner.team/stops/X735abb", "https://tec.openplanner.team/stops/X735abc"], ["https://tec.openplanner.team/stops/X925ama", "https://tec.openplanner.team/stops/X949ada"], ["https://tec.openplanner.team/stops/X739alb", "https://tec.openplanner.team/stops/X771afb"], ["https://tec.openplanner.team/stops/H2tr247a", "https://tec.openplanner.team/stops/H2tr247b"], ["https://tec.openplanner.team/stops/X948aga", "https://tec.openplanner.team/stops/X948agb"], ["https://tec.openplanner.team/stops/X718abb", "https://tec.openplanner.team/stops/X718afa"], ["https://tec.openplanner.team/stops/LAVcime2", "https://tec.openplanner.team/stops/LAVeg--2"], ["https://tec.openplanner.team/stops/X717aaa", "https://tec.openplanner.team/stops/X717afb"], ["https://tec.openplanner.team/stops/Cfocobe2", "https://tec.openplanner.team/stops/Cfojoli2"], ["https://tec.openplanner.team/stops/Cctecol1", "https://tec.openplanner.team/stops/Cctvill2"], ["https://tec.openplanner.team/stops/H5el100b", "https://tec.openplanner.team/stops/H5el110b"], ["https://tec.openplanner.team/stops/X811aca", "https://tec.openplanner.team/stops/X811aib"], ["https://tec.openplanner.team/stops/LeUmalm2", "https://tec.openplanner.team/stops/LeUwetz1"], ["https://tec.openplanner.team/stops/LrAberg2", "https://tec.openplanner.team/stops/LrApley1"], ["https://tec.openplanner.team/stops/N226aaa", "https://tec.openplanner.team/stops/N338afb"], ["https://tec.openplanner.team/stops/X670ana", "https://tec.openplanner.team/stops/X670anb"], ["https://tec.openplanner.team/stops/Lghomni2", "https://tec.openplanner.team/stops/Lghpara2"], ["https://tec.openplanner.team/stops/N118aka", "https://tec.openplanner.team/stops/N118akb"], ["https://tec.openplanner.team/stops/H2ca103b", "https://tec.openplanner.team/stops/H2ca103c"], ["https://tec.openplanner.team/stops/LFMrijk2", "https://tec.openplanner.team/stops/LFMvoge*"], ["https://tec.openplanner.team/stops/LCxcham1", "https://tec.openplanner.team/stops/LCxhall1"], ["https://tec.openplanner.team/stops/Bovejei1", "https://tec.openplanner.team/stops/Bovejme1"], ["https://tec.openplanner.team/stops/Bbsifml2", "https://tec.openplanner.team/stops/Bnivjli2"], ["https://tec.openplanner.team/stops/N141ana", "https://tec.openplanner.team/stops/N141aoa"], ["https://tec.openplanner.team/stops/H1ha197a", "https://tec.openplanner.team/stops/H1ob328a"], ["https://tec.openplanner.team/stops/H1gn148a", "https://tec.openplanner.team/stops/H1ol140b"], ["https://tec.openplanner.team/stops/H5qu141a", "https://tec.openplanner.team/stops/H5qu154b"], ["https://tec.openplanner.team/stops/Bhanwav2", "https://tec.openplanner.team/stops/NL37abb"], ["https://tec.openplanner.team/stops/NB33aha", "https://tec.openplanner.team/stops/NB33aib"], ["https://tec.openplanner.team/stops/Bllngar3", "https://tec.openplanner.team/stops/Bllngar6"], ["https://tec.openplanner.team/stops/Cfaheni1", "https://tec.openplanner.team/stops/Cfamonu8"], ["https://tec.openplanner.team/stops/X886abb", "https://tec.openplanner.team/stops/X886abc"], ["https://tec.openplanner.team/stops/Blkbavo1", "https://tec.openplanner.team/stops/Blkbbeu1"], ["https://tec.openplanner.team/stops/LAMdelh2", "https://tec.openplanner.team/stops/LAMdelh3"], ["https://tec.openplanner.team/stops/N542ada", "https://tec.openplanner.team/stops/N578aba"], ["https://tec.openplanner.team/stops/H4ho119a", "https://tec.openplanner.team/stops/H4rm110a"], ["https://tec.openplanner.team/stops/LBpecco3", "https://tec.openplanner.team/stops/LBpecco4"], ["https://tec.openplanner.team/stops/H5wo123a", "https://tec.openplanner.team/stops/H5wo136a"], ["https://tec.openplanner.team/stops/X879agb", "https://tec.openplanner.team/stops/X879arb"], ["https://tec.openplanner.team/stops/Bcsegar2", "https://tec.openplanner.team/stops/Bcsemon2"], ["https://tec.openplanner.team/stops/Lemacac1", "https://tec.openplanner.team/stops/Lemcarm1"], ["https://tec.openplanner.team/stops/Cjubrul4", "https://tec.openplanner.team/stops/CMbert1"], ["https://tec.openplanner.team/stops/LPLhout1", "https://tec.openplanner.team/stops/LVtchai1"], ["https://tec.openplanner.team/stops/X715afa", "https://tec.openplanner.team/stops/X715amb"], ["https://tec.openplanner.team/stops/X899aab", "https://tec.openplanner.team/stops/X899aca"], ["https://tec.openplanner.team/stops/LREaube1", "https://tec.openplanner.team/stops/LREgar-1"], ["https://tec.openplanner.team/stops/N584aua", "https://tec.openplanner.team/stops/N584ayb"], ["https://tec.openplanner.team/stops/Lemboul1", "https://tec.openplanner.team/stops/Lemboul2"], ["https://tec.openplanner.team/stops/X652acd", "https://tec.openplanner.team/stops/X652adb"], ["https://tec.openplanner.team/stops/LbEkirc*", "https://tec.openplanner.team/stops/LbTathe2"], ["https://tec.openplanner.team/stops/X756ahb", "https://tec.openplanner.team/stops/X756aib"], ["https://tec.openplanner.team/stops/H4ld126b", "https://tec.openplanner.team/stops/H4tm140a"], ["https://tec.openplanner.team/stops/Lgrdefr1", "https://tec.openplanner.team/stops/Ljuetie1"], ["https://tec.openplanner.team/stops/LAOeg--1", "https://tec.openplanner.team/stops/LTGvill1"], ["https://tec.openplanner.team/stops/Lhrpepi1", "https://tec.openplanner.team/stops/Lhrtilm1"], ["https://tec.openplanner.team/stops/N232asb", "https://tec.openplanner.team/stops/N232btb"], ["https://tec.openplanner.team/stops/LeUdepo1", "https://tec.openplanner.team/stops/LeUgb--2"], ["https://tec.openplanner.team/stops/Bqueaga1", "https://tec.openplanner.team/stops/Bqueegl2"], ["https://tec.openplanner.team/stops/Cfocant2", "https://tec.openplanner.team/stops/Clrpast1"], ["https://tec.openplanner.team/stops/LFUchpl2", "https://tec.openplanner.team/stops/LHumoul1"], ["https://tec.openplanner.team/stops/LLUalou1", "https://tec.openplanner.team/stops/LLUalou2"], ["https://tec.openplanner.team/stops/N385aac", "https://tec.openplanner.team/stops/N385aca"], ["https://tec.openplanner.team/stops/Bwavcar1", "https://tec.openplanner.team/stops/Bwavlep2"], ["https://tec.openplanner.team/stops/X626adb", "https://tec.openplanner.team/stops/X626ala"], ["https://tec.openplanner.team/stops/LSTec--1", "https://tec.openplanner.team/stops/LSTgran2"], ["https://tec.openplanner.team/stops/Lrcastr2", "https://tec.openplanner.team/stops/Lrclant4"], ["https://tec.openplanner.team/stops/NC14agb", "https://tec.openplanner.team/stops/NC14aha"], ["https://tec.openplanner.team/stops/H1be101a", "https://tec.openplanner.team/stops/H1be102a"], ["https://tec.openplanner.team/stops/Lkinyst1", "https://tec.openplanner.team/stops/Lkivolg1"], ["https://tec.openplanner.team/stops/LlSzoll2", "https://tec.openplanner.team/stops/LmEdorf2"], ["https://tec.openplanner.team/stops/Brixblh3", "https://tec.openplanner.team/stops/Brixwav1"], ["https://tec.openplanner.team/stops/Lgrdeni1", "https://tec.openplanner.team/stops/Lgrdeni2"], ["https://tec.openplanner.team/stops/Bmrlhan1", "https://tec.openplanner.team/stops/Bmrlhan2"], ["https://tec.openplanner.team/stops/LnNkirc1", "https://tec.openplanner.team/stops/LrDhund1"], ["https://tec.openplanner.team/stops/X601bla", "https://tec.openplanner.team/stops/X602afa"], ["https://tec.openplanner.team/stops/Cmopn4", "https://tec.openplanner.team/stops/Cmoscap1"], ["https://tec.openplanner.team/stops/LOmmer-2", "https://tec.openplanner.team/stops/LSeaque1"], ["https://tec.openplanner.team/stops/H4ar172b", "https://tec.openplanner.team/stops/H4pl135a"], ["https://tec.openplanner.team/stops/H4fo116a", "https://tec.openplanner.team/stops/H4fo118a"], ["https://tec.openplanner.team/stops/LkTdorf1", "https://tec.openplanner.team/stops/LkTlibe2"], ["https://tec.openplanner.team/stops/X822aia", "https://tec.openplanner.team/stops/X822ara"], ["https://tec.openplanner.team/stops/H2gy105a", "https://tec.openplanner.team/stops/H2gy105b"], ["https://tec.openplanner.team/stops/X908aka", "https://tec.openplanner.team/stops/X911arb"], ["https://tec.openplanner.team/stops/Cgzcour1", "https://tec.openplanner.team/stops/Cgzvivi1"], ["https://tec.openplanner.team/stops/LAtaube1", "https://tec.openplanner.team/stops/NL35abb"], ["https://tec.openplanner.team/stops/Bboncfv1", "https://tec.openplanner.team/stops/Bboncha1"], ["https://tec.openplanner.team/stops/H4wp152a", "https://tec.openplanner.team/stops/H4wp153a"], ["https://tec.openplanner.team/stops/LSEcent1", "https://tec.openplanner.team/stops/LSpshin2"], ["https://tec.openplanner.team/stops/Btubfab1", "https://tec.openplanner.team/stops/Btubsam1"], ["https://tec.openplanner.team/stops/LFAbouc2", "https://tec.openplanner.team/stops/LLTfall2"], ["https://tec.openplanner.team/stops/X734abb", "https://tec.openplanner.team/stops/X734ara"], ["https://tec.openplanner.team/stops/LFabraa1", "https://tec.openplanner.team/stops/LFabraa2"], ["https://tec.openplanner.team/stops/H1le119a", "https://tec.openplanner.team/stops/H1le125a"], ["https://tec.openplanner.team/stops/Lsepaqu1", "https://tec.openplanner.team/stops/Lseruis1"], ["https://tec.openplanner.team/stops/LDLbois1", "https://tec.openplanner.team/stops/LLNogne1"], ["https://tec.openplanner.team/stops/Lpecime2", "https://tec.openplanner.team/stops/Lpemata1"], ["https://tec.openplanner.team/stops/LWegdry1", "https://tec.openplanner.team/stops/LWegdry2"], ["https://tec.openplanner.team/stops/H1ms296d", "https://tec.openplanner.team/stops/H1ms924a"], ["https://tec.openplanner.team/stops/Lchacie2", "https://tec.openplanner.team/stops/Lchchau2"], ["https://tec.openplanner.team/stops/Ltichif2", "https://tec.openplanner.team/stops/Ltichif3"], ["https://tec.openplanner.team/stops/H1au111b", "https://tec.openplanner.team/stops/H1au113b"], ["https://tec.openplanner.team/stops/N506aka", "https://tec.openplanner.team/stops/N556aeb"], ["https://tec.openplanner.team/stops/Cgosmoi2", "https://tec.openplanner.team/stops/Cjufauv1"], ["https://tec.openplanner.team/stops/Bhmmcha1", "https://tec.openplanner.team/stops/Bhmmpos1"], ["https://tec.openplanner.team/stops/N120aea", "https://tec.openplanner.team/stops/N120aha"], ["https://tec.openplanner.team/stops/H5pe137a", "https://tec.openplanner.team/stops/H5pe176a"], ["https://tec.openplanner.team/stops/X742aeb", "https://tec.openplanner.team/stops/X742afb"], ["https://tec.openplanner.team/stops/Btgrpla1", "https://tec.openplanner.team/stops/N584cac"], ["https://tec.openplanner.team/stops/LrEdic71", "https://tec.openplanner.team/stops/LrEfeck1"], ["https://tec.openplanner.team/stops/LAmarbo2", "https://tec.openplanner.team/stops/LVLf37-1"], ["https://tec.openplanner.team/stops/H4ga159a", "https://tec.openplanner.team/stops/H4vz371a"], ["https://tec.openplanner.team/stops/N231afb", "https://tec.openplanner.team/stops/N242adc"], ["https://tec.openplanner.team/stops/X615ata", "https://tec.openplanner.team/stops/X615atb"], ["https://tec.openplanner.team/stops/X901baa", "https://tec.openplanner.team/stops/X901bcb"], ["https://tec.openplanner.team/stops/X595aab", "https://tec.openplanner.team/stops/X595aac"], ["https://tec.openplanner.team/stops/Clrmarl4", "https://tec.openplanner.team/stops/Clrplac1"], ["https://tec.openplanner.team/stops/X631aaa", "https://tec.openplanner.team/stops/X645aba"], ["https://tec.openplanner.team/stops/LJSforg1", "https://tec.openplanner.team/stops/LJSforg2"], ["https://tec.openplanner.team/stops/H1fr124a", "https://tec.openplanner.team/stops/H1fr124b"], ["https://tec.openplanner.team/stops/X999adb", "https://tec.openplanner.team/stops/X999aea"], ["https://tec.openplanner.team/stops/X749acb", "https://tec.openplanner.team/stops/X754aab"], ["https://tec.openplanner.team/stops/X354aca", "https://tec.openplanner.team/stops/X354afb"], ["https://tec.openplanner.team/stops/H1wz171b", "https://tec.openplanner.team/stops/H2pe162b"], ["https://tec.openplanner.team/stops/H1cv102a", "https://tec.openplanner.team/stops/H1ju121b"], ["https://tec.openplanner.team/stops/X889aea", "https://tec.openplanner.team/stops/X889aeb"], ["https://tec.openplanner.team/stops/Lgrclas1", "https://tec.openplanner.team/stops/Lgrclas2"], ["https://tec.openplanner.team/stops/X723aeb", "https://tec.openplanner.team/stops/X723aja"], ["https://tec.openplanner.team/stops/LOcalbe1", "https://tec.openplanner.team/stops/LOcchat1"], ["https://tec.openplanner.team/stops/Blhunys3", "https://tec.openplanner.team/stops/Blhutma1"], ["https://tec.openplanner.team/stops/X804alb", "https://tec.openplanner.team/stops/X804bwa"], ["https://tec.openplanner.team/stops/H1br128a", "https://tec.openplanner.team/stops/H1ev112a"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X744aaa"], ["https://tec.openplanner.team/stops/Cgdcent2", "https://tec.openplanner.team/stops/H1mb125a"], ["https://tec.openplanner.team/stops/Cmlbrac1", "https://tec.openplanner.team/stops/Cmlvitf1"], ["https://tec.openplanner.team/stops/H4ty343b", "https://tec.openplanner.team/stops/H4ty405a"], ["https://tec.openplanner.team/stops/Cfanoci1", "https://tec.openplanner.team/stops/Cfanvmo1"], ["https://tec.openplanner.team/stops/Cmgpthi1", "https://tec.openplanner.team/stops/Csecroi1"], ["https://tec.openplanner.team/stops/Bwavbpi2", "https://tec.openplanner.team/stops/Bwavtas2"], ["https://tec.openplanner.team/stops/Lkiblan2", "https://tec.openplanner.team/stops/Llgstev2"], ["https://tec.openplanner.team/stops/H4ml206b", "https://tec.openplanner.team/stops/H4ml209b"], ["https://tec.openplanner.team/stops/Cgrbert2", "https://tec.openplanner.team/stops/NC14aga"], ["https://tec.openplanner.team/stops/LCIneuv1", "https://tec.openplanner.team/stops/LCIneuv2"], ["https://tec.openplanner.team/stops/H4ga148b", "https://tec.openplanner.team/stops/H4ga148d"], ["https://tec.openplanner.team/stops/N550aca", "https://tec.openplanner.team/stops/N550acc"], ["https://tec.openplanner.team/stops/Bramgar1", "https://tec.openplanner.team/stops/NR38aeb"], ["https://tec.openplanner.team/stops/N260aab", "https://tec.openplanner.team/stops/N270ada"], ["https://tec.openplanner.team/stops/Cmycime2", "https://tec.openplanner.team/stops/Cmyland4"], ["https://tec.openplanner.team/stops/X902axa", "https://tec.openplanner.team/stops/X902bfb"], ["https://tec.openplanner.team/stops/X907aeb", "https://tec.openplanner.team/stops/X907afa"], ["https://tec.openplanner.team/stops/N528aca", "https://tec.openplanner.team/stops/N528alb"], ["https://tec.openplanner.team/stops/Lpemata1", "https://tec.openplanner.team/stops/Lpemata2"], ["https://tec.openplanner.team/stops/N110aha", "https://tec.openplanner.team/stops/N125aab"], ["https://tec.openplanner.team/stops/LHarenn1", "https://tec.openplanner.team/stops/LHarenn2"], ["https://tec.openplanner.team/stops/H1lb138a", "https://tec.openplanner.team/stops/H1lb153b"], ["https://tec.openplanner.team/stops/H5rx125a", "https://tec.openplanner.team/stops/H5rx146b"], ["https://tec.openplanner.team/stops/LGMdrev1", "https://tec.openplanner.team/stops/LGMdrev2"], ["https://tec.openplanner.team/stops/N501bob", "https://tec.openplanner.team/stops/N501chf"], ["https://tec.openplanner.team/stops/LSSfont1", "https://tec.openplanner.team/stops/LSSfrai1"], ["https://tec.openplanner.team/stops/Lkivolg1", "https://tec.openplanner.team/stops/Lscbour2"], ["https://tec.openplanner.team/stops/N509aea", "https://tec.openplanner.team/stops/N509afb"], ["https://tec.openplanner.team/stops/Cctfaub1", "https://tec.openplanner.team/stops/Cctjust1"], ["https://tec.openplanner.team/stops/Bperrma1", "https://tec.openplanner.team/stops/Bpersyn2"], ["https://tec.openplanner.team/stops/Bnodegl1", "https://tec.openplanner.team/stops/Bpienod1"], ["https://tec.openplanner.team/stops/NH01aod", "https://tec.openplanner.team/stops/NH01arb"], ["https://tec.openplanner.team/stops/Llgfran1", "https://tec.openplanner.team/stops/Llgtill1"], ["https://tec.openplanner.team/stops/X636aub", "https://tec.openplanner.team/stops/X636bha"], ["https://tec.openplanner.team/stops/Bbchgod2", "https://tec.openplanner.team/stops/Bbchndb1"], ["https://tec.openplanner.team/stops/N506ara", "https://tec.openplanner.team/stops/N506aua"], ["https://tec.openplanner.team/stops/N501kmb", "https://tec.openplanner.team/stops/N501kmz"], ["https://tec.openplanner.team/stops/X804acb", "https://tec.openplanner.team/stops/X804aqb"], ["https://tec.openplanner.team/stops/Lgdec--1", "https://tec.openplanner.team/stops/Lgdmaye1"], ["https://tec.openplanner.team/stops/N235aaa", "https://tec.openplanner.team/stops/N235ahb"], ["https://tec.openplanner.team/stops/X942abe", "https://tec.openplanner.team/stops/X942adb"], ["https://tec.openplanner.team/stops/LBOande1", "https://tec.openplanner.team/stops/LBOholt1"], ["https://tec.openplanner.team/stops/N534aua", "https://tec.openplanner.team/stops/N534bfa"], ["https://tec.openplanner.team/stops/X663akb", "https://tec.openplanner.team/stops/X663axb"], ["https://tec.openplanner.team/stops/X684aaa", "https://tec.openplanner.team/stops/X687aba"], ["https://tec.openplanner.team/stops/Cchhopi3", "https://tec.openplanner.team/stops/CMjans2"], ["https://tec.openplanner.team/stops/X750ana", "https://tec.openplanner.team/stops/X750bla"], ["https://tec.openplanner.team/stops/LNEec--2", "https://tec.openplanner.team/stops/LNEvand2"], ["https://tec.openplanner.team/stops/LAibego2", "https://tec.openplanner.team/stops/LCacoop2"], ["https://tec.openplanner.team/stops/X390aha", "https://tec.openplanner.team/stops/X998aaa"], ["https://tec.openplanner.team/stops/NL81afa", "https://tec.openplanner.team/stops/NL81agb"], ["https://tec.openplanner.team/stops/X718aca", "https://tec.openplanner.team/stops/X718aea"], ["https://tec.openplanner.team/stops/H2le149a", "https://tec.openplanner.team/stops/H2le150a"], ["https://tec.openplanner.team/stops/LbOlier2", "https://tec.openplanner.team/stops/LbOre151"], ["https://tec.openplanner.team/stops/H4lz155a", "https://tec.openplanner.team/stops/H4lz161b"], ["https://tec.openplanner.team/stops/LAUnico1", "https://tec.openplanner.team/stops/LAUvict3"], ["https://tec.openplanner.team/stops/NC14aob", "https://tec.openplanner.team/stops/NC14aod"], ["https://tec.openplanner.team/stops/H2ca108b", "https://tec.openplanner.team/stops/H2ca115a"], ["https://tec.openplanner.team/stops/X786ada", "https://tec.openplanner.team/stops/X789aga"], ["https://tec.openplanner.team/stops/LlSbuch1", "https://tec.openplanner.team/stops/LlZkirc1"], ["https://tec.openplanner.team/stops/N166ada", "https://tec.openplanner.team/stops/N565abb"], ["https://tec.openplanner.team/stops/H1el134b", "https://tec.openplanner.team/stops/H1el135a"], ["https://tec.openplanner.team/stops/Livmoul1", "https://tec.openplanner.team/stops/Livmoul2"], ["https://tec.openplanner.team/stops/LESpont2", "https://tec.openplanner.team/stops/LESpont3"], ["https://tec.openplanner.team/stops/Ltibure1", "https://tec.openplanner.team/stops/Ltibure3"], ["https://tec.openplanner.team/stops/LSZdepo1", "https://tec.openplanner.team/stops/LSZdepo2"], ["https://tec.openplanner.team/stops/LCPconf1", "https://tec.openplanner.team/stops/LMttrou1"], ["https://tec.openplanner.team/stops/H2go117a", "https://tec.openplanner.team/stops/H2se115a"], ["https://tec.openplanner.team/stops/X824aec", "https://tec.openplanner.team/stops/X824ahb"], ["https://tec.openplanner.team/stops/LRccent2", "https://tec.openplanner.team/stops/LRchaie1"], ["https://tec.openplanner.team/stops/H4ae102a", "https://tec.openplanner.team/stops/H4ae102b"], ["https://tec.openplanner.team/stops/Lgrfass2", "https://tec.openplanner.team/stops/Lgrtomb1"], ["https://tec.openplanner.team/stops/Cmlchan1", "https://tec.openplanner.team/stops/Cmlpomm1"], ["https://tec.openplanner.team/stops/LbHzent2", "https://tec.openplanner.team/stops/LrUbrac4"], ["https://tec.openplanner.team/stops/Bjod7co2", "https://tec.openplanner.team/stops/Bjodrga2"], ["https://tec.openplanner.team/stops/LNCecdo1", "https://tec.openplanner.team/stops/LNCsera2"], ["https://tec.openplanner.team/stops/Clvorle2", "https://tec.openplanner.team/stops/Cnadrev2"], ["https://tec.openplanner.team/stops/Cselait1", "https://tec.openplanner.team/stops/Cvtmaro1"], ["https://tec.openplanner.team/stops/Lrccime3", "https://tec.openplanner.team/stops/Lvoplac1"], ["https://tec.openplanner.team/stops/H1og131a", "https://tec.openplanner.team/stops/H1og132a"], ["https://tec.openplanner.team/stops/Bezebru2", "https://tec.openplanner.team/stops/Bezegar2"], ["https://tec.openplanner.team/stops/Cthvbas3", "https://tec.openplanner.team/stops/Cthvbas4"], ["https://tec.openplanner.team/stops/H4hg159a", "https://tec.openplanner.team/stops/H4hg159b"], ["https://tec.openplanner.team/stops/LkEgend2", "https://tec.openplanner.team/stops/LkEsada1"], ["https://tec.openplanner.team/stops/H4os220a", "https://tec.openplanner.team/stops/H4os222a"], ["https://tec.openplanner.team/stops/Bblapri1", "https://tec.openplanner.team/stops/Brsgter2"], ["https://tec.openplanner.team/stops/LmHvenn1", "https://tec.openplanner.team/stops/LmTschi1"], ["https://tec.openplanner.team/stops/Ccycont1", "https://tec.openplanner.team/stops/Ccycont2"], ["https://tec.openplanner.team/stops/X922afb", "https://tec.openplanner.team/stops/X922akb"], ["https://tec.openplanner.team/stops/Lhrdelv1", "https://tec.openplanner.team/stops/Lhrhurb2"], ["https://tec.openplanner.team/stops/N349abb", "https://tec.openplanner.team/stops/N349aga"], ["https://tec.openplanner.team/stops/X824afb", "https://tec.openplanner.team/stops/X824aga"], ["https://tec.openplanner.team/stops/N577aja", "https://tec.openplanner.team/stops/N577aka"], ["https://tec.openplanner.team/stops/X601bfb", "https://tec.openplanner.team/stops/X601bha"], ["https://tec.openplanner.team/stops/LSLhale2", "https://tec.openplanner.team/stops/LSLstra2"], ["https://tec.openplanner.team/stops/N203aca", "https://tec.openplanner.team/stops/N562ayb"], ["https://tec.openplanner.team/stops/N501eda", "https://tec.openplanner.team/stops/N501kcb"], ["https://tec.openplanner.team/stops/X902aja", "https://tec.openplanner.team/stops/X902aka"], ["https://tec.openplanner.team/stops/H2hp118b", "https://tec.openplanner.team/stops/H2hp121b"], ["https://tec.openplanner.team/stops/X639aqa", "https://tec.openplanner.team/stops/X639aub"], ["https://tec.openplanner.team/stops/X750anb", "https://tec.openplanner.team/stops/X777acb"], ["https://tec.openplanner.team/stops/N217aab", "https://tec.openplanner.team/stops/N218aea"], ["https://tec.openplanner.team/stops/X878aaa", "https://tec.openplanner.team/stops/X878abb"], ["https://tec.openplanner.team/stops/H1as103c", "https://tec.openplanner.team/stops/H1as103d"], ["https://tec.openplanner.team/stops/X657aeb", "https://tec.openplanner.team/stops/X657alb"], ["https://tec.openplanner.team/stops/LTNcarr6", "https://tec.openplanner.team/stops/LTNmont1"], ["https://tec.openplanner.team/stops/LAMcime1", "https://tec.openplanner.team/stops/LAMjaur1"], ["https://tec.openplanner.team/stops/Lrahoig2", "https://tec.openplanner.team/stops/Lrapays2"], ["https://tec.openplanner.team/stops/X940adb", "https://tec.openplanner.team/stops/X941ada"], ["https://tec.openplanner.team/stops/H1sy140a", "https://tec.openplanner.team/stops/H1to151b"], ["https://tec.openplanner.team/stops/LTEkl161", "https://tec.openplanner.team/stops/LVu40--2"], ["https://tec.openplanner.team/stops/LSseg--2", "https://tec.openplanner.team/stops/N506bsa"], ["https://tec.openplanner.team/stops/H1ol137a", "https://tec.openplanner.team/stops/H1ol143b"], ["https://tec.openplanner.team/stops/N116aca", "https://tec.openplanner.team/stops/N116ada"], ["https://tec.openplanner.team/stops/N146ada", "https://tec.openplanner.team/stops/N146adb"], ["https://tec.openplanner.team/stops/Ldipl--2", "https://tec.openplanner.team/stops/Ldipl--3"], ["https://tec.openplanner.team/stops/H4ve131b", "https://tec.openplanner.team/stops/H4ve137b"], ["https://tec.openplanner.team/stops/H4hu122a", "https://tec.openplanner.team/stops/H4hu122b"], ["https://tec.openplanner.team/stops/H4rc231b", "https://tec.openplanner.team/stops/H4rc231c"], ["https://tec.openplanner.team/stops/Bwatdmo1", "https://tec.openplanner.team/stops/Bwatle31"], ["https://tec.openplanner.team/stops/LaAdiep1", "https://tec.openplanner.team/stops/LaAjahn1"], ["https://tec.openplanner.team/stops/X801ama", "https://tec.openplanner.team/stops/X801amb"], ["https://tec.openplanner.team/stops/N507afa", "https://tec.openplanner.team/stops/N507afb"], ["https://tec.openplanner.team/stops/LEBdoct2", "https://tec.openplanner.team/stops/LEBeg--1"], ["https://tec.openplanner.team/stops/H2sb223a", "https://tec.openplanner.team/stops/H2sb223b"], ["https://tec.openplanner.team/stops/X941acb", "https://tec.openplanner.team/stops/X941acc"], ["https://tec.openplanner.team/stops/Bcrncce2", "https://tec.openplanner.team/stops/N529adb"], ["https://tec.openplanner.team/stops/LCPbell2", "https://tec.openplanner.team/stops/LPOchan2"], ["https://tec.openplanner.team/stops/Cjuecho2", "https://tec.openplanner.team/stops/Cjuplho1"], ["https://tec.openplanner.team/stops/Bmalwvi2", "https://tec.openplanner.team/stops/Btlbtbe1"], ["https://tec.openplanner.team/stops/H4ty314d", "https://tec.openplanner.team/stops/H4ty354b"], ["https://tec.openplanner.team/stops/X886agb", "https://tec.openplanner.team/stops/X985afa"], ["https://tec.openplanner.team/stops/N501nea", "https://tec.openplanner.team/stops/N501ney"], ["https://tec.openplanner.team/stops/X660aab", "https://tec.openplanner.team/stops/X660aea"], ["https://tec.openplanner.team/stops/Benggar1", "https://tec.openplanner.team/stops/Bptemch2"], ["https://tec.openplanner.team/stops/Lhrlico1", "https://tec.openplanner.team/stops/Lhrtilm2"], ["https://tec.openplanner.team/stops/N503aeb", "https://tec.openplanner.team/stops/N503aga"], ["https://tec.openplanner.team/stops/LRmstat2", "https://tec.openplanner.team/stops/LTEzinn2"], ["https://tec.openplanner.team/stops/LBOande2", "https://tec.openplanner.team/stops/LBWfusi2"], ["https://tec.openplanner.team/stops/X601bcb", "https://tec.openplanner.team/stops/X601cza"], ["https://tec.openplanner.team/stops/H4ka175b", "https://tec.openplanner.team/stops/H4ob124a"], ["https://tec.openplanner.team/stops/Balsnay1", "https://tec.openplanner.team/stops/Balsnie1"], ["https://tec.openplanner.team/stops/X616afb", "https://tec.openplanner.team/stops/X616aha"], ["https://tec.openplanner.team/stops/Brach121", "https://tec.openplanner.team/stops/Brach122"], ["https://tec.openplanner.team/stops/Cmlhaie2", "https://tec.openplanner.team/stops/Cmlvxmo1"], ["https://tec.openplanner.team/stops/N501hyb", "https://tec.openplanner.team/stops/N501ioa"], ["https://tec.openplanner.team/stops/H1as100a", "https://tec.openplanner.team/stops/H1hg178b"], ["https://tec.openplanner.team/stops/X640apb", "https://tec.openplanner.team/stops/X640ava"], ["https://tec.openplanner.team/stops/Cmghay1", "https://tec.openplanner.team/stops/Cmgpla2"], ["https://tec.openplanner.team/stops/H4ae132d", "https://tec.openplanner.team/stops/H4ea132c"], ["https://tec.openplanner.team/stops/LLRbleh2", "https://tec.openplanner.team/stops/LLRvill1"], ["https://tec.openplanner.team/stops/X602ada", "https://tec.openplanner.team/stops/X602aga"], ["https://tec.openplanner.team/stops/LaMschr1", "https://tec.openplanner.team/stops/LdEkreu2"], ["https://tec.openplanner.team/stops/LaRkape2", "https://tec.openplanner.team/stops/LoDcorn2"], ["https://tec.openplanner.team/stops/N149aaa", "https://tec.openplanner.team/stops/N149aia"], ["https://tec.openplanner.team/stops/X802aka", "https://tec.openplanner.team/stops/X802ana"], ["https://tec.openplanner.team/stops/X601cta", "https://tec.openplanner.team/stops/X662aob"], ["https://tec.openplanner.team/stops/LCsange1", "https://tec.openplanner.team/stops/LCsjone1"], ["https://tec.openplanner.team/stops/LTyhall1", "https://tec.openplanner.team/stops/LTywaut2"], ["https://tec.openplanner.team/stops/Cmlange2", "https://tec.openplanner.team/stops/Cmldeto1"], ["https://tec.openplanner.team/stops/Lrc594-2", "https://tec.openplanner.team/stops/Lrccomm1"], ["https://tec.openplanner.team/stops/Bsomthi1", "https://tec.openplanner.team/stops/Bsomtpm1"], ["https://tec.openplanner.team/stops/Bmlnsmv1", "https://tec.openplanner.team/stops/Bmlnsmv2"], ["https://tec.openplanner.team/stops/X939aba", "https://tec.openplanner.team/stops/X939abb"], ["https://tec.openplanner.team/stops/N228aba", "https://tec.openplanner.team/stops/N228abb"], ["https://tec.openplanner.team/stops/LFyec--2", "https://tec.openplanner.team/stops/LWamass2"], ["https://tec.openplanner.team/stops/LSZarze1", "https://tec.openplanner.team/stops/LWycabi2"], ["https://tec.openplanner.team/stops/LRmkult2", "https://tec.openplanner.team/stops/LRmsmvo1"], ["https://tec.openplanner.team/stops/Bptbbie1", "https://tec.openplanner.team/stops/Bptbmco1"], ["https://tec.openplanner.team/stops/X358acd", "https://tec.openplanner.team/stops/X991aaa"], ["https://tec.openplanner.team/stops/H5gr137b", "https://tec.openplanner.team/stops/H5st169a"], ["https://tec.openplanner.team/stops/LOuilc-*", "https://tec.openplanner.team/stops/LOuouff1"], ["https://tec.openplanner.team/stops/Buccdho2", "https://tec.openplanner.team/stops/Buccgob1"], ["https://tec.openplanner.team/stops/LHEjose1", "https://tec.openplanner.team/stops/LJOchar2"], ["https://tec.openplanner.team/stops/LBQplac2", "https://tec.openplanner.team/stops/X919aia"], ["https://tec.openplanner.team/stops/LMalune4", "https://tec.openplanner.team/stops/LMamuse3"], ["https://tec.openplanner.team/stops/N230ahb", "https://tec.openplanner.team/stops/N230aia"], ["https://tec.openplanner.team/stops/Benimar1", "https://tec.openplanner.team/stops/Benimar2"], ["https://tec.openplanner.team/stops/Beclbse2", "https://tec.openplanner.team/stops/H2ec108b"], ["https://tec.openplanner.team/stops/X713aaa", "https://tec.openplanner.team/stops/X713abb"], ["https://tec.openplanner.team/stops/X639akc", "https://tec.openplanner.team/stops/X639akd"], ["https://tec.openplanner.team/stops/X609aab", "https://tec.openplanner.team/stops/X609aqa"], ["https://tec.openplanner.team/stops/N535aaa", "https://tec.openplanner.team/stops/N535acd"], ["https://tec.openplanner.team/stops/Cbecarr1", "https://tec.openplanner.team/stops/N161afa"], ["https://tec.openplanner.team/stops/Lanpont2", "https://tec.openplanner.team/stops/Lmobols1"], ["https://tec.openplanner.team/stops/LEnchan2", "https://tec.openplanner.team/stops/LEnvill2"], ["https://tec.openplanner.team/stops/LFPkape2", "https://tec.openplanner.team/stops/LFPkerk1"], ["https://tec.openplanner.team/stops/LPRfond1", "https://tec.openplanner.team/stops/Lrofont*"], ["https://tec.openplanner.team/stops/Lvecote2", "https://tec.openplanner.team/stops/Lvelobe2"], ["https://tec.openplanner.team/stops/H1mk108a", "https://tec.openplanner.team/stops/H1mk112a"], ["https://tec.openplanner.team/stops/N585ahb", "https://tec.openplanner.team/stops/N585aib"], ["https://tec.openplanner.team/stops/N337aia", "https://tec.openplanner.team/stops/N338aha"], ["https://tec.openplanner.team/stops/LLrmeno1", "https://tec.openplanner.team/stops/LLrmeno2"], ["https://tec.openplanner.team/stops/X764aea", "https://tec.openplanner.team/stops/X764aeb"], ["https://tec.openplanner.team/stops/X921ala", "https://tec.openplanner.team/stops/X921aoa"], ["https://tec.openplanner.team/stops/Cvthoeu1", "https://tec.openplanner.team/stops/Cvtvail1"], ["https://tec.openplanner.team/stops/X882acb", "https://tec.openplanner.team/stops/X882alb"], ["https://tec.openplanner.team/stops/H1ms245b", "https://tec.openplanner.team/stops/H1ms268a"], ["https://tec.openplanner.team/stops/LTiec--1", "https://tec.openplanner.team/stops/LTieg--1"], ["https://tec.openplanner.team/stops/X637agb", "https://tec.openplanner.team/stops/X637ajb"], ["https://tec.openplanner.team/stops/LDppana2", "https://tec.openplanner.team/stops/LDpzol-1"], ["https://tec.openplanner.team/stops/N260abc", "https://tec.openplanner.team/stops/N270aca"], ["https://tec.openplanner.team/stops/H1fl138a", "https://tec.openplanner.team/stops/H1lb134a"], ["https://tec.openplanner.team/stops/N115aab", "https://tec.openplanner.team/stops/N115aeb"], ["https://tec.openplanner.team/stops/X999aja", "https://tec.openplanner.team/stops/X999asb"], ["https://tec.openplanner.team/stops/H4mb138a", "https://tec.openplanner.team/stops/H4mb140a"], ["https://tec.openplanner.team/stops/N118aca", "https://tec.openplanner.team/stops/N118acc"], ["https://tec.openplanner.team/stops/LGEcons1", "https://tec.openplanner.team/stops/LGEhosp1"], ["https://tec.openplanner.team/stops/Bbcocvb2", "https://tec.openplanner.team/stops/Bhencha2"], ["https://tec.openplanner.team/stops/N166aab", "https://tec.openplanner.team/stops/N166adb"], ["https://tec.openplanner.team/stops/N543axb", "https://tec.openplanner.team/stops/N543bgc"], ["https://tec.openplanner.team/stops/Csslesc1", "https://tec.openplanner.team/stops/Csygare1"], ["https://tec.openplanner.team/stops/X750bgb", "https://tec.openplanner.team/stops/X784aaa"], ["https://tec.openplanner.team/stops/Cfcchen1", "https://tec.openplanner.team/stops/Cfcecol3"], ["https://tec.openplanner.team/stops/X911ava", "https://tec.openplanner.team/stops/X911avb"], ["https://tec.openplanner.team/stops/LHrfang1", "https://tec.openplanner.team/stops/LHrkin-1"], ["https://tec.openplanner.team/stops/X919ajb", "https://tec.openplanner.team/stops/X919ajd"], ["https://tec.openplanner.team/stops/Bnivphm1", "https://tec.openplanner.team/stops/Bnivvri1"], ["https://tec.openplanner.team/stops/X359acb", "https://tec.openplanner.team/stops/X371aca"], ["https://tec.openplanner.team/stops/N132ada", "https://tec.openplanner.team/stops/N132aea"], ["https://tec.openplanner.team/stops/X660agb", "https://tec.openplanner.team/stops/X672ahb"], ["https://tec.openplanner.team/stops/N528apb", "https://tec.openplanner.team/stops/N528atb"], ["https://tec.openplanner.team/stops/N535amc", "https://tec.openplanner.team/stops/N564aba"], ["https://tec.openplanner.team/stops/N501eta", "https://tec.openplanner.team/stops/N501kbb"], ["https://tec.openplanner.team/stops/N222ayb", "https://tec.openplanner.team/stops/X394aga"], ["https://tec.openplanner.team/stops/H2bh110b", "https://tec.openplanner.team/stops/H2bh120b"], ["https://tec.openplanner.team/stops/Bstecou1", "https://tec.openplanner.team/stops/Bstemco1"], ["https://tec.openplanner.team/stops/H4eh102b", "https://tec.openplanner.team/stops/H4he104b"], ["https://tec.openplanner.team/stops/N166aaa", "https://tec.openplanner.team/stops/N565abb"], ["https://tec.openplanner.team/stops/Ccunvus1", "https://tec.openplanner.team/stops/Ccutrav1"], ["https://tec.openplanner.team/stops/Bbuztai2", "https://tec.openplanner.team/stops/Bnivbng2"], ["https://tec.openplanner.team/stops/X390aia", "https://tec.openplanner.team/stops/X902ahb"], ["https://tec.openplanner.team/stops/H1sb146b", "https://tec.openplanner.team/stops/H1sb147b"], ["https://tec.openplanner.team/stops/Lemhenn1", "https://tec.openplanner.team/stops/Lemmusc2"], ["https://tec.openplanner.team/stops/H4pl137a", "https://tec.openplanner.team/stops/H4pl137b"], ["https://tec.openplanner.team/stops/LGEvill2", "https://tec.openplanner.team/stops/LGEwalk1"], ["https://tec.openplanner.team/stops/H1ro130b", "https://tec.openplanner.team/stops/H1ro135a"], ["https://tec.openplanner.team/stops/LeUmoor1", "https://tec.openplanner.team/stops/LeUrote1"], ["https://tec.openplanner.team/stops/LAugara1", "https://tec.openplanner.team/stops/LWRbomb3"], ["https://tec.openplanner.team/stops/H1do114a", "https://tec.openplanner.team/stops/H1do121a"], ["https://tec.openplanner.team/stops/Cdanvpr2", "https://tec.openplanner.team/stops/Cmaest1"], ["https://tec.openplanner.team/stops/Cmlcons1", "https://tec.openplanner.team/stops/Cmlmatc1"], ["https://tec.openplanner.team/stops/Bgrmver2", "https://tec.openplanner.team/stops/N522aka"], ["https://tec.openplanner.team/stops/X770aea", "https://tec.openplanner.team/stops/X770afa"], ["https://tec.openplanner.team/stops/LLWmonu2", "https://tec.openplanner.team/stops/LLWpier2"], ["https://tec.openplanner.team/stops/N570aca", "https://tec.openplanner.team/stops/N570acb"], ["https://tec.openplanner.team/stops/H4lz122b", "https://tec.openplanner.team/stops/H4lz157a"], ["https://tec.openplanner.team/stops/Berngrt1", "https://tec.openplanner.team/stops/Berngrt2"], ["https://tec.openplanner.team/stops/N536apa", "https://tec.openplanner.team/stops/N563amb"], ["https://tec.openplanner.team/stops/LLSbajo1", "https://tec.openplanner.team/stops/LLSbajo2"], ["https://tec.openplanner.team/stops/N150ada", "https://tec.openplanner.team/stops/N150aka"], ["https://tec.openplanner.team/stops/X801baa", "https://tec.openplanner.team/stops/X801bbb"], ["https://tec.openplanner.team/stops/Clrmarl3", "https://tec.openplanner.team/stops/Clrmarl4"], ["https://tec.openplanner.team/stops/Llgancd1", "https://tec.openplanner.team/stops/Llgancd2"], ["https://tec.openplanner.team/stops/Bwavtas1", "https://tec.openplanner.team/stops/Bwavtas2"], ["https://tec.openplanner.team/stops/H5rx135a", "https://tec.openplanner.team/stops/H5rx135b"], ["https://tec.openplanner.team/stops/Csdrofr1", "https://tec.openplanner.team/stops/Csdrofr2"], ["https://tec.openplanner.team/stops/Baeggar1", "https://tec.openplanner.team/stops/Bramrdf2"], ["https://tec.openplanner.team/stops/N113abb", "https://tec.openplanner.team/stops/N113agb"], ["https://tec.openplanner.team/stops/Ljeespe2", "https://tec.openplanner.team/stops/Lsetroq1"], ["https://tec.openplanner.team/stops/H1hr118a", "https://tec.openplanner.team/stops/H1ne143a"], ["https://tec.openplanner.team/stops/LBVlamo1", "https://tec.openplanner.team/stops/LMAcomm1"], ["https://tec.openplanner.team/stops/X717aia", "https://tec.openplanner.team/stops/X717aja"], ["https://tec.openplanner.team/stops/H1fr117a", "https://tec.openplanner.team/stops/H1fr122a"], ["https://tec.openplanner.team/stops/X696aha", "https://tec.openplanner.team/stops/X696aja"], ["https://tec.openplanner.team/stops/Lannico1", "https://tec.openplanner.team/stops/Lannico3"], ["https://tec.openplanner.team/stops/Bitrbvo1", "https://tec.openplanner.team/stops/Bvirgar2"], ["https://tec.openplanner.team/stops/N225aaa", "https://tec.openplanner.team/stops/N225aea"], ["https://tec.openplanner.team/stops/N230adb", "https://tec.openplanner.team/stops/N230aeb"], ["https://tec.openplanner.team/stops/Cgymetr2", "https://tec.openplanner.team/stops/CMgill2"], ["https://tec.openplanner.team/stops/Bbaltba1", "https://tec.openplanner.team/stops/N584ana"], ["https://tec.openplanner.team/stops/X897abb", "https://tec.openplanner.team/stops/X897aod"], ["https://tec.openplanner.team/stops/Bfelada2", "https://tec.openplanner.team/stops/Bfelrav2"], ["https://tec.openplanner.team/stops/N232aia", "https://tec.openplanner.team/stops/N232aja"], ["https://tec.openplanner.team/stops/Bjodcsb1", "https://tec.openplanner.team/stops/Bjodpvi2"], ["https://tec.openplanner.team/stops/LRaplac2", "https://tec.openplanner.team/stops/LRarami1"], ["https://tec.openplanner.team/stops/H1ca101b", "https://tec.openplanner.team/stops/H1ca109a"], ["https://tec.openplanner.team/stops/Ladhomb1", "https://tec.openplanner.team/stops/Ladmoul1"], ["https://tec.openplanner.team/stops/LJEerno1", "https://tec.openplanner.team/stops/LJEniho1"], ["https://tec.openplanner.team/stops/Bramcar1", "https://tec.openplanner.team/stops/Bramrdf1"], ["https://tec.openplanner.team/stops/N501hxa", "https://tec.openplanner.team/stops/N501hxb"], ["https://tec.openplanner.team/stops/Cmaprov2", "https://tec.openplanner.team/stops/Cmasncb1"], ["https://tec.openplanner.team/stops/X898ama", "https://tec.openplanner.team/stops/X899abb"], ["https://tec.openplanner.team/stops/Cthenmi2", "https://tec.openplanner.team/stops/Cthrpoi2"], ["https://tec.openplanner.team/stops/N517aba", "https://tec.openplanner.team/stops/N517aca"], ["https://tec.openplanner.team/stops/Cgzplac2", "https://tec.openplanner.team/stops/Cgzplac3"], ["https://tec.openplanner.team/stops/Lwapomp1", "https://tec.openplanner.team/stops/Lwapomp2"], ["https://tec.openplanner.team/stops/X661ayc", "https://tec.openplanner.team/stops/X661aza"], ["https://tec.openplanner.team/stops/Cmafafe2", "https://tec.openplanner.team/stops/Cmlthym1"], ["https://tec.openplanner.team/stops/LSLabba1", "https://tec.openplanner.team/stops/LSLabba2"], ["https://tec.openplanner.team/stops/LSphote1", "https://tec.openplanner.team/stops/LSpunio1"], ["https://tec.openplanner.team/stops/Lheaaz-2", "https://tec.openplanner.team/stops/Lheente1"], ["https://tec.openplanner.team/stops/N151aha", "https://tec.openplanner.team/stops/N153abb"], ["https://tec.openplanner.team/stops/LOTdelv1", "https://tec.openplanner.team/stops/LOTdelv2"], ["https://tec.openplanner.team/stops/Cmcbriq2", "https://tec.openplanner.team/stops/Csyjumo2"], ["https://tec.openplanner.team/stops/H5pe141a", "https://tec.openplanner.team/stops/H5pe150b"], ["https://tec.openplanner.team/stops/N515anb", "https://tec.openplanner.team/stops/N516ajb"], ["https://tec.openplanner.team/stops/Cfaecwa2", "https://tec.openplanner.team/stops/Cfamate1"], ["https://tec.openplanner.team/stops/N538axa", "https://tec.openplanner.team/stops/N538bba"], ["https://tec.openplanner.team/stops/H5pe125b", "https://tec.openplanner.team/stops/H5pe145b"], ["https://tec.openplanner.team/stops/Cchfort1", "https://tec.openplanner.team/stops/CMsacm2"], ["https://tec.openplanner.team/stops/H2ch104b", "https://tec.openplanner.team/stops/H2go118b"], ["https://tec.openplanner.team/stops/H5at134a", "https://tec.openplanner.team/stops/H5at235a"], ["https://tec.openplanner.team/stops/LCRecmo2", "https://tec.openplanner.team/stops/LFmbure1"], ["https://tec.openplanner.team/stops/X730afa", "https://tec.openplanner.team/stops/X731aia"], ["https://tec.openplanner.team/stops/LaAkapi1", "https://tec.openplanner.team/stops/LaAseba1"], ["https://tec.openplanner.team/stops/Cplcafp1", "https://tec.openplanner.team/stops/Cpllimi2"], ["https://tec.openplanner.team/stops/Bblaast1", "https://tec.openplanner.team/stops/Bblagar2"], ["https://tec.openplanner.team/stops/N230aka", "https://tec.openplanner.team/stops/N230ama"], ["https://tec.openplanner.team/stops/X614aoa", "https://tec.openplanner.team/stops/X614ava"], ["https://tec.openplanner.team/stops/N531ara", "https://tec.openplanner.team/stops/N531arb"], ["https://tec.openplanner.team/stops/LSPec--2", "https://tec.openplanner.team/stops/LSPptch1"], ["https://tec.openplanner.team/stops/N214aja", "https://tec.openplanner.team/stops/N236abb"], ["https://tec.openplanner.team/stops/NC44aca", "https://tec.openplanner.team/stops/NC44ada"], ["https://tec.openplanner.team/stops/X801aza", "https://tec.openplanner.team/stops/X801cjb"], ["https://tec.openplanner.team/stops/H4my121b", "https://tec.openplanner.team/stops/H4my122b"], ["https://tec.openplanner.team/stops/X734aib", "https://tec.openplanner.team/stops/X734ara"], ["https://tec.openplanner.team/stops/Bmouegl2", "https://tec.openplanner.team/stops/Bmoufil2"], ["https://tec.openplanner.team/stops/Csdetan2", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/LAUneuv3", "https://tec.openplanner.team/stops/LAUneuv4"], ["https://tec.openplanner.team/stops/X758aia", "https://tec.openplanner.team/stops/X758akb"], ["https://tec.openplanner.team/stops/LThbatt2", "https://tec.openplanner.team/stops/LThsere2"], ["https://tec.openplanner.team/stops/Cfmltas1", "https://tec.openplanner.team/stops/Cfmltas2"], ["https://tec.openplanner.team/stops/Bbgever1", "https://tec.openplanner.team/stops/Bwavzno1"], ["https://tec.openplanner.team/stops/Bvirbie4", "https://tec.openplanner.team/stops/Bvirpla2"], ["https://tec.openplanner.team/stops/H1ba119a", "https://tec.openplanner.team/stops/H1ba119b"], ["https://tec.openplanner.team/stops/X941aea", "https://tec.openplanner.team/stops/X941aeb"], ["https://tec.openplanner.team/stops/N501jqa", "https://tec.openplanner.team/stops/N501kpa"], ["https://tec.openplanner.team/stops/H4mx119a", "https://tec.openplanner.team/stops/H4mx119c"], ["https://tec.openplanner.team/stops/Bplncsd2", "https://tec.openplanner.team/stops/Bplnegl1"], ["https://tec.openplanner.team/stops/N138aga", "https://tec.openplanner.team/stops/N138aha"], ["https://tec.openplanner.team/stops/LLrcour1", "https://tec.openplanner.team/stops/LLrfagn2"], ["https://tec.openplanner.team/stops/NL79aaa", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/N548awa", "https://tec.openplanner.team/stops/N548awb"], ["https://tec.openplanner.team/stops/H1mq199a", "https://tec.openplanner.team/stops/H1mq199b"], ["https://tec.openplanner.team/stops/H1si153a", "https://tec.openplanner.team/stops/H1si153b"], ["https://tec.openplanner.team/stops/Braclin1", "https://tec.openplanner.team/stops/Bracrpe2"], ["https://tec.openplanner.team/stops/X812aqa", "https://tec.openplanner.team/stops/X812ara"], ["https://tec.openplanner.team/stops/LNCmada1", "https://tec.openplanner.team/stops/LNCmada2"], ["https://tec.openplanner.team/stops/N209ajc", "https://tec.openplanner.team/stops/N209aka"], ["https://tec.openplanner.team/stops/LBWbatt2", "https://tec.openplanner.team/stops/LBWeg--2"], ["https://tec.openplanner.team/stops/N501flb", "https://tec.openplanner.team/stops/N501fqb"], ["https://tec.openplanner.team/stops/LPRbayb1", "https://tec.openplanner.team/stops/LTRgare4"], ["https://tec.openplanner.team/stops/H2be101a", "https://tec.openplanner.team/stops/H2lh128a"], ["https://tec.openplanner.team/stops/Cfcchen1", "https://tec.openplanner.team/stops/Cfcchen2"], ["https://tec.openplanner.team/stops/X734aba", "https://tec.openplanner.team/stops/X734acb"], ["https://tec.openplanner.team/stops/LAncoup2", "https://tec.openplanner.team/stops/LHdfays2"], ["https://tec.openplanner.team/stops/H4ga155b", "https://tec.openplanner.team/stops/H4ga168b"], ["https://tec.openplanner.team/stops/H1gy111a", "https://tec.openplanner.team/stops/H1gy111b"], ["https://tec.openplanner.team/stops/X719aaa", "https://tec.openplanner.team/stops/X786acb"], ["https://tec.openplanner.team/stops/Lghalli1", "https://tec.openplanner.team/stops/Lghwall2"], ["https://tec.openplanner.team/stops/N507adb", "https://tec.openplanner.team/stops/N507amb"], ["https://tec.openplanner.team/stops/N248abb", "https://tec.openplanner.team/stops/N248acb"], ["https://tec.openplanner.team/stops/H4ty326a", "https://tec.openplanner.team/stops/H4wc372b"], ["https://tec.openplanner.team/stops/N351aha", "https://tec.openplanner.team/stops/N351ahb"], ["https://tec.openplanner.team/stops/X877aaa", "https://tec.openplanner.team/stops/X877abb"], ["https://tec.openplanner.team/stops/Bpermon4", "https://tec.openplanner.team/stops/Bperrsr2"], ["https://tec.openplanner.team/stops/H4ob108a", "https://tec.openplanner.team/stops/H4ob110a"], ["https://tec.openplanner.team/stops/H4ma400a", "https://tec.openplanner.team/stops/H4ma400b"], ["https://tec.openplanner.team/stops/Llglonh1", "https://tec.openplanner.team/stops/Llgmart1"], ["https://tec.openplanner.team/stops/Llgcime1", "https://tec.openplanner.team/stops/Llgcime2"], ["https://tec.openplanner.team/stops/Bpechos2", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://tec.openplanner.team/stops/N508aba", "https://tec.openplanner.team/stops/N508adb"], ["https://tec.openplanner.team/stops/Cfcgar2", "https://tec.openplanner.team/stops/Cfcstan2"], ["https://tec.openplanner.team/stops/Lmleg--1", "https://tec.openplanner.team/stops/Lmlhaut1"], ["https://tec.openplanner.team/stops/H2lh130b", "https://tec.openplanner.team/stops/H2mo133b"], ["https://tec.openplanner.team/stops/LHMbami2", "https://tec.openplanner.team/stops/LSIroch1"], ["https://tec.openplanner.team/stops/Cctchea1", "https://tec.openplanner.team/stops/Cctmari2"], ["https://tec.openplanner.team/stops/LSPastr2", "https://tec.openplanner.team/stops/LSProya2"], ["https://tec.openplanner.team/stops/LFFcouv2", "https://tec.openplanner.team/stops/LFFmarc2"], ["https://tec.openplanner.team/stops/N542afa", "https://tec.openplanner.team/stops/N542afb"], ["https://tec.openplanner.team/stops/Cfmrrou1", "https://tec.openplanner.team/stops/Csoforc2"], ["https://tec.openplanner.team/stops/Brsgcfl2", "https://tec.openplanner.team/stops/Brsggea1"], ["https://tec.openplanner.team/stops/Lanpisc1", "https://tec.openplanner.team/stops/Lmomarr1"], ["https://tec.openplanner.team/stops/H1hh111a", "https://tec.openplanner.team/stops/H1hh115a"], ["https://tec.openplanner.team/stops/Cjupn4", "https://tec.openplanner.team/stops/Clomakr1"], ["https://tec.openplanner.team/stops/Cfaamio4", "https://tec.openplanner.team/stops/Cfamonu2"], ["https://tec.openplanner.team/stops/LJAcham1", "https://tec.openplanner.team/stops/LJAcham2"], ["https://tec.openplanner.team/stops/Cdagoss2", "https://tec.openplanner.team/stops/Cmabegh1"], ["https://tec.openplanner.team/stops/X940aab", "https://tec.openplanner.team/stops/X941aba"], ["https://tec.openplanner.team/stops/X805aca", "https://tec.openplanner.team/stops/X805aja"], ["https://tec.openplanner.team/stops/Blkbavo2", "https://tec.openplanner.team/stops/Blkbbeu1"], ["https://tec.openplanner.team/stops/LFMkrut1", "https://tec.openplanner.team/stops/LFMkrut3"], ["https://tec.openplanner.team/stops/Clostan2", "https://tec.openplanner.team/stops/CMtsan2"], ["https://tec.openplanner.team/stops/X876aab", "https://tec.openplanner.team/stops/X876aeb"], ["https://tec.openplanner.team/stops/H1og131b", "https://tec.openplanner.team/stops/H1og133b"], ["https://tec.openplanner.team/stops/LOuplac1", "https://tec.openplanner.team/stops/LOuplac3"], ["https://tec.openplanner.team/stops/X725afc", "https://tec.openplanner.team/stops/X725aoa"], ["https://tec.openplanner.team/stops/N135afa", "https://tec.openplanner.team/stops/N135aja"], ["https://tec.openplanner.team/stops/H2ch101b", "https://tec.openplanner.team/stops/H2ch106a"], ["https://tec.openplanner.team/stops/X619aic", "https://tec.openplanner.team/stops/X620aha"], ["https://tec.openplanner.team/stops/Crchutt1", "https://tec.openplanner.team/stops/Crcverr2"], ["https://tec.openplanner.team/stops/X657aaa", "https://tec.openplanner.team/stops/X657aoa"], ["https://tec.openplanner.team/stops/N147aab", "https://tec.openplanner.team/stops/N147afb"], ["https://tec.openplanner.team/stops/H2fa100b", "https://tec.openplanner.team/stops/H2fa102a"], ["https://tec.openplanner.team/stops/N308adb", "https://tec.openplanner.team/stops/N308aga"], ["https://tec.openplanner.team/stops/N539bba", "https://tec.openplanner.team/stops/N540aqa"], ["https://tec.openplanner.team/stops/LrAbe602", "https://tec.openplanner.team/stops/LrAbe962"], ["https://tec.openplanner.team/stops/X661axc", "https://tec.openplanner.team/stops/X817abb"], ["https://tec.openplanner.team/stops/LSdcarr1", "https://tec.openplanner.team/stops/LSdcarr2"], ["https://tec.openplanner.team/stops/Cmlhauc3", "https://tec.openplanner.team/stops/Cmlvesp2"], ["https://tec.openplanner.team/stops/H1ca102a", "https://tec.openplanner.team/stops/H3so164a"], ["https://tec.openplanner.team/stops/Cgdrhau1", "https://tec.openplanner.team/stops/Cgdrhau2"], ["https://tec.openplanner.team/stops/Lccaigr2", "https://tec.openplanner.team/stops/LRAcouv1"], ["https://tec.openplanner.team/stops/X897acb", "https://tec.openplanner.team/stops/X897aib"], ["https://tec.openplanner.team/stops/LVlleme2", "https://tec.openplanner.team/stops/LVlleme4"], ["https://tec.openplanner.team/stops/X948aqa", "https://tec.openplanner.team/stops/X948aqb"], ["https://tec.openplanner.team/stops/Ctubpos1", "https://tec.openplanner.team/stops/Ctucomm2"], ["https://tec.openplanner.team/stops/LPcforg1", "https://tec.openplanner.team/stops/LVPbleh2"], ["https://tec.openplanner.team/stops/H2gy106a", "https://tec.openplanner.team/stops/H2gy109a"], ["https://tec.openplanner.team/stops/N576abb", "https://tec.openplanner.team/stops/N576ajb"], ["https://tec.openplanner.team/stops/H4de114b", "https://tec.openplanner.team/stops/H4ss157a"], ["https://tec.openplanner.team/stops/LARgare1", "https://tec.openplanner.team/stops/LARgare4"], ["https://tec.openplanner.team/stops/X636abb", "https://tec.openplanner.team/stops/X636acb"], ["https://tec.openplanner.team/stops/N540ara", "https://tec.openplanner.team/stops/N540arb"], ["https://tec.openplanner.team/stops/N236afb", "https://tec.openplanner.team/stops/N254aab"], ["https://tec.openplanner.team/stops/Bbgevil1", "https://tec.openplanner.team/stops/Bbgevil2"], ["https://tec.openplanner.team/stops/Cchhopi1", "https://tec.openplanner.team/stops/Cchhopi2"], ["https://tec.openplanner.team/stops/X923afa", "https://tec.openplanner.team/stops/X923aga"], ["https://tec.openplanner.team/stops/H4gr109b", "https://tec.openplanner.team/stops/H4gr112a"], ["https://tec.openplanner.team/stops/N214aga", "https://tec.openplanner.team/stops/N236aha"], ["https://tec.openplanner.team/stops/H4ho120b", "https://tec.openplanner.team/stops/H4ho121b"], ["https://tec.openplanner.team/stops/Cmareun1", "https://tec.openplanner.team/stops/Cmmegli3"], ["https://tec.openplanner.team/stops/LHNgend1", "https://tec.openplanner.team/stops/LHNgend3"], ["https://tec.openplanner.team/stops/Livcoll1", "https://tec.openplanner.team/stops/Livmoul1"], ["https://tec.openplanner.team/stops/X989afb", "https://tec.openplanner.team/stops/X989agb"], ["https://tec.openplanner.team/stops/X901boa", "https://tec.openplanner.team/stops/X901bra"], ["https://tec.openplanner.team/stops/N528aab", "https://tec.openplanner.team/stops/N528aeb"], ["https://tec.openplanner.team/stops/X371adb", "https://tec.openplanner.team/stops/X371agb"], ["https://tec.openplanner.team/stops/LJAsuri2", "https://tec.openplanner.team/stops/LJAverv2"], ["https://tec.openplanner.team/stops/N552aab", "https://tec.openplanner.team/stops/N552adb"], ["https://tec.openplanner.team/stops/Lceourt2", "https://tec.openplanner.team/stops/Lemacac2"], ["https://tec.openplanner.team/stops/X802aib", "https://tec.openplanner.team/stops/X836aha"], ["https://tec.openplanner.team/stops/X719aab", "https://tec.openplanner.team/stops/X719afa"], ["https://tec.openplanner.team/stops/X982arb", "https://tec.openplanner.team/stops/X982bvb"], ["https://tec.openplanner.team/stops/NL78aha", "https://tec.openplanner.team/stops/NL78ahc"], ["https://tec.openplanner.team/stops/H4ty296b", "https://tec.openplanner.team/stops/H4ty303a"], ["https://tec.openplanner.team/stops/H5rx136b", "https://tec.openplanner.team/stops/H5rx137a"], ["https://tec.openplanner.team/stops/N103aia", "https://tec.openplanner.team/stops/N103aib"], ["https://tec.openplanner.team/stops/X993aeb", "https://tec.openplanner.team/stops/X994aka"], ["https://tec.openplanner.team/stops/H5qu139a", "https://tec.openplanner.team/stops/H5qu139b"], ["https://tec.openplanner.team/stops/H1ol144a", "https://tec.openplanner.team/stops/H1ol144b"], ["https://tec.openplanner.team/stops/Lcebail1", "https://tec.openplanner.team/stops/Lceleje2"], ["https://tec.openplanner.team/stops/Cbiferm1", "https://tec.openplanner.team/stops/Cthbifu1"], ["https://tec.openplanner.team/stops/X771anb", "https://tec.openplanner.team/stops/X773amb"], ["https://tec.openplanner.team/stops/X986aia", "https://tec.openplanner.team/stops/X986aib"], ["https://tec.openplanner.team/stops/X991ada", "https://tec.openplanner.team/stops/X991aja"], ["https://tec.openplanner.team/stops/H2gy103b", "https://tec.openplanner.team/stops/H2tz117a"], ["https://tec.openplanner.team/stops/Bcer4br2", "https://tec.openplanner.team/stops/Bcercab1"], ["https://tec.openplanner.team/stops/X629abb", "https://tec.openplanner.team/stops/X648aab"], ["https://tec.openplanner.team/stops/H5rx121b", "https://tec.openplanner.team/stops/H5rx134a"], ["https://tec.openplanner.team/stops/N584axb", "https://tec.openplanner.team/stops/N584cba"], ["https://tec.openplanner.team/stops/N514aoa", "https://tec.openplanner.team/stops/N514aob"], ["https://tec.openplanner.team/stops/N201aob", "https://tec.openplanner.team/stops/N201apb"], ["https://tec.openplanner.team/stops/LCOdrol2", "https://tec.openplanner.team/stops/LWerola2"], ["https://tec.openplanner.team/stops/LNOsedo2", "https://tec.openplanner.team/stops/LQafond1"], ["https://tec.openplanner.team/stops/Csschat2", "https://tec.openplanner.team/stops/Csspn2"], ["https://tec.openplanner.team/stops/N121aha", "https://tec.openplanner.team/stops/N121aib"], ["https://tec.openplanner.team/stops/X664ama", "https://tec.openplanner.team/stops/X664amd"], ["https://tec.openplanner.team/stops/X660aib", "https://tec.openplanner.team/stops/X672agb"], ["https://tec.openplanner.team/stops/Lsepair4", "https://tec.openplanner.team/stops/Lsevecq2"], ["https://tec.openplanner.team/stops/X946aia", "https://tec.openplanner.team/stops/X948acb"], ["https://tec.openplanner.team/stops/H2mi123a", "https://tec.openplanner.team/stops/H2mi123b"], ["https://tec.openplanner.team/stops/Llgform2", "https://tec.openplanner.team/stops/Lsntvbi1"], ["https://tec.openplanner.team/stops/X769aia", "https://tec.openplanner.team/stops/X769aob"], ["https://tec.openplanner.team/stops/H1ag107b", "https://tec.openplanner.team/stops/H1an102a"], ["https://tec.openplanner.team/stops/Llgherm1", "https://tec.openplanner.team/stops/Lvtboux1"], ["https://tec.openplanner.team/stops/H1si152a", "https://tec.openplanner.team/stops/H1si152c"], ["https://tec.openplanner.team/stops/H1ol142a", "https://tec.openplanner.team/stops/H1ol143a"], ["https://tec.openplanner.team/stops/LNCsart2", "https://tec.openplanner.team/stops/LRRchea3"], ["https://tec.openplanner.team/stops/H1ms245a", "https://tec.openplanner.team/stops/H1ms308d"], ["https://tec.openplanner.team/stops/Baudsju1", "https://tec.openplanner.team/stops/Baudsju2"], ["https://tec.openplanner.team/stops/LBEssab2", "https://tec.openplanner.team/stops/LBEtroo2"], ["https://tec.openplanner.team/stops/Bllnlb51", "https://tec.openplanner.team/stops/Bllnlb52"], ["https://tec.openplanner.team/stops/X725ana", "https://tec.openplanner.team/stops/X725beb"], ["https://tec.openplanner.team/stops/X995adb", "https://tec.openplanner.team/stops/X995adc"], ["https://tec.openplanner.team/stops/Cauushm1", "https://tec.openplanner.team/stops/Cauushm2"], ["https://tec.openplanner.team/stops/X747aea", "https://tec.openplanner.team/stops/X747afb"], ["https://tec.openplanner.team/stops/LSPhapa1", "https://tec.openplanner.team/stops/LSPherd1"], ["https://tec.openplanner.team/stops/X871aaa", "https://tec.openplanner.team/stops/X871aab"], ["https://tec.openplanner.team/stops/LOV62--1", "https://tec.openplanner.team/stops/LOV62--2"], ["https://tec.openplanner.team/stops/H1ms298a", "https://tec.openplanner.team/stops/H1ms943a"], ["https://tec.openplanner.team/stops/LJEverd1", "https://tec.openplanner.team/stops/LJEverd2"], ["https://tec.openplanner.team/stops/Bblabos1", "https://tec.openplanner.team/stops/Bblapri2"], ["https://tec.openplanner.team/stops/X902afa", "https://tec.openplanner.team/stops/X902aob"], ["https://tec.openplanner.team/stops/Cci4092", "https://tec.openplanner.team/stops/Cmtchas2"], ["https://tec.openplanner.team/stops/X979afa", "https://tec.openplanner.team/stops/X979aka"], ["https://tec.openplanner.team/stops/Bjodrrg1", "https://tec.openplanner.team/stops/Bzlucam2"], ["https://tec.openplanner.team/stops/LHegame3", "https://tec.openplanner.team/stops/LHehacc2"], ["https://tec.openplanner.team/stops/Lceembo1", "https://tec.openplanner.team/stops/Lceembo2"], ["https://tec.openplanner.team/stops/Bglitro1", "https://tec.openplanner.team/stops/Bglitro2"], ["https://tec.openplanner.team/stops/N118ana", "https://tec.openplanner.team/stops/N118atb"], ["https://tec.openplanner.team/stops/H1qv114b", "https://tec.openplanner.team/stops/H5pe144a"], ["https://tec.openplanner.team/stops/N501hmb", "https://tec.openplanner.team/stops/N501ivb"], ["https://tec.openplanner.team/stops/Cpclibe1", "https://tec.openplanner.team/stops/Cpclibe2"], ["https://tec.openplanner.team/stops/NR21aia", "https://tec.openplanner.team/stops/NR38afa"], ["https://tec.openplanner.team/stops/X937afa", "https://tec.openplanner.team/stops/X937akb"], ["https://tec.openplanner.team/stops/Bwatfva1", "https://tec.openplanner.team/stops/Bwatppa2"], ["https://tec.openplanner.team/stops/LNOning2", "https://tec.openplanner.team/stops/LNOpt--2"], ["https://tec.openplanner.team/stops/H1je225a", "https://tec.openplanner.team/stops/H1je225b"], ["https://tec.openplanner.team/stops/LHGzoni1", "https://tec.openplanner.team/stops/LHGzoni2"], ["https://tec.openplanner.team/stops/X601cia", "https://tec.openplanner.team/stops/X663aca"], ["https://tec.openplanner.team/stops/H1ro140a", "https://tec.openplanner.team/stops/H1ro140b"], ["https://tec.openplanner.team/stops/N534bpb", "https://tec.openplanner.team/stops/N534bqa"], ["https://tec.openplanner.team/stops/Clupcfe1", "https://tec.openplanner.team/stops/Cpcndce1"], ["https://tec.openplanner.team/stops/LFRbaro2", "https://tec.openplanner.team/stops/LSx309-1"], ["https://tec.openplanner.team/stops/H1hn364a", "https://tec.openplanner.team/stops/H1hn365b"], ["https://tec.openplanner.team/stops/LXhjupr1", "https://tec.openplanner.team/stops/LXhvanh2"], ["https://tec.openplanner.team/stops/Csoforr1", "https://tec.openplanner.team/stops/Csoforr3"], ["https://tec.openplanner.team/stops/X879aca", "https://tec.openplanner.team/stops/X879aqb"], ["https://tec.openplanner.team/stops/Clb4bra1", "https://tec.openplanner.team/stops/Clb4dgi2"], ["https://tec.openplanner.team/stops/LmLbeil1", "https://tec.openplanner.team/stops/LwMzoll2"], ["https://tec.openplanner.team/stops/Csbrago1", "https://tec.openplanner.team/stops/H1sa114a"], ["https://tec.openplanner.team/stops/LTPcarr2", "https://tec.openplanner.team/stops/LTPreco2"], ["https://tec.openplanner.team/stops/N103afb", "https://tec.openplanner.team/stops/N103agb"], ["https://tec.openplanner.team/stops/X870aaa", "https://tec.openplanner.team/stops/X870aib"], ["https://tec.openplanner.team/stops/H4bo118a", "https://tec.openplanner.team/stops/H4bo118d"], ["https://tec.openplanner.team/stops/X746ada", "https://tec.openplanner.team/stops/X746adb"], ["https://tec.openplanner.team/stops/H2bh110a", "https://tec.openplanner.team/stops/H2bh110b"], ["https://tec.openplanner.team/stops/Lvcbasi*", "https://tec.openplanner.team/stops/Lvcchau1"], ["https://tec.openplanner.team/stops/X917aca", "https://tec.openplanner.team/stops/X919afb"], ["https://tec.openplanner.team/stops/Bgemga11", "https://tec.openplanner.team/stops/N522bvb"], ["https://tec.openplanner.team/stops/LBLcalv1", "https://tec.openplanner.team/stops/LBLtroi2"], ["https://tec.openplanner.team/stops/H2me116a", "https://tec.openplanner.team/stops/H2me116b"], ["https://tec.openplanner.team/stops/H4ln129a", "https://tec.openplanner.team/stops/H4ne135b"], ["https://tec.openplanner.team/stops/LOcchat2", "https://tec.openplanner.team/stops/LOcgdro4"], ["https://tec.openplanner.team/stops/N512acb", "https://tec.openplanner.team/stops/N512axb"], ["https://tec.openplanner.team/stops/Blincal2", "https://tec.openplanner.team/stops/Bpthrsp1"], ["https://tec.openplanner.team/stops/Lceembo2", "https://tec.openplanner.team/stops/Lcepoul1"], ["https://tec.openplanner.team/stops/N571aka", "https://tec.openplanner.team/stops/N571akb"], ["https://tec.openplanner.team/stops/H1gg114b", "https://tec.openplanner.team/stops/H1gg115b"], ["https://tec.openplanner.team/stops/N116acb", "https://tec.openplanner.team/stops/N116adb"], ["https://tec.openplanner.team/stops/N134aga", "https://tec.openplanner.team/stops/N134aha"], ["https://tec.openplanner.team/stops/Cnabult3", "https://tec.openplanner.team/stops/NC14afb"], ["https://tec.openplanner.team/stops/N874acb", "https://tec.openplanner.team/stops/N874afb"], ["https://tec.openplanner.team/stops/N508ajd", "https://tec.openplanner.team/stops/N508apa"], ["https://tec.openplanner.team/stops/LFCotte2", "https://tec.openplanner.team/stops/LFCscho1"], ["https://tec.openplanner.team/stops/N241aab", "https://tec.openplanner.team/stops/N241abb"], ["https://tec.openplanner.team/stops/X811aab", "https://tec.openplanner.team/stops/X811aqb"], ["https://tec.openplanner.team/stops/LAWcite2", "https://tec.openplanner.team/stops/LAWcorn4"], ["https://tec.openplanner.team/stops/Bohnman1", "https://tec.openplanner.team/stops/Bohnrph2"], ["https://tec.openplanner.team/stops/LLrvill1", "https://tec.openplanner.team/stops/LLrvill2"], ["https://tec.openplanner.team/stops/N232bba", "https://tec.openplanner.team/stops/N232bta"], ["https://tec.openplanner.team/stops/Bperros1", "https://tec.openplanner.team/stops/N519agb"], ["https://tec.openplanner.team/stops/H1le119b", "https://tec.openplanner.team/stops/H1le129b"], ["https://tec.openplanner.team/stops/Cjuepee1", "https://tec.openplanner.team/stops/Cjutrou3"], ["https://tec.openplanner.team/stops/X637aeb", "https://tec.openplanner.team/stops/X637agc"], ["https://tec.openplanner.team/stops/H4he106a", "https://tec.openplanner.team/stops/H4ob124a"], ["https://tec.openplanner.team/stops/Lronamo2", "https://tec.openplanner.team/stops/Lrosoxh2"], ["https://tec.openplanner.team/stops/Bchgqve1", "https://tec.openplanner.team/stops/Bchgqve2"], ["https://tec.openplanner.team/stops/N534aeb", "https://tec.openplanner.team/stops/N534cbh"], ["https://tec.openplanner.team/stops/LREfloh2", "https://tec.openplanner.team/stops/LREsoug4"], ["https://tec.openplanner.team/stops/Lvcvand1", "https://tec.openplanner.team/stops/Lvcvand2"], ["https://tec.openplanner.team/stops/Cmorgof1", "https://tec.openplanner.team/stops/Cmorgof2"], ["https://tec.openplanner.team/stops/H4av100b", "https://tec.openplanner.team/stops/H4ss156a"], ["https://tec.openplanner.team/stops/Llgblon2", "https://tec.openplanner.team/stops/Llgterr1"], ["https://tec.openplanner.team/stops/LTPbode2", "https://tec.openplanner.team/stops/LTPcarr2"], ["https://tec.openplanner.team/stops/Cflmarc1", "https://tec.openplanner.team/stops/Cwgrabi2"], ["https://tec.openplanner.team/stops/H1ni316a", "https://tec.openplanner.team/stops/H1ni317a"], ["https://tec.openplanner.team/stops/Cgzcver1", "https://tec.openplanner.team/stops/Cgzfarc1"], ["https://tec.openplanner.team/stops/Blmlbou2", "https://tec.openplanner.team/stops/Blmlqlo2"], ["https://tec.openplanner.team/stops/Cvp3til1", "https://tec.openplanner.team/stops/Cvp3til4"], ["https://tec.openplanner.team/stops/Crcfdom2", "https://tec.openplanner.team/stops/Csurela2"], ["https://tec.openplanner.team/stops/LHUcomp2", "https://tec.openplanner.team/stops/LHUfali2"], ["https://tec.openplanner.team/stops/Clshafa1", "https://tec.openplanner.team/stops/H1me114a"], ["https://tec.openplanner.team/stops/H1he104a", "https://tec.openplanner.team/stops/H1he110a"], ["https://tec.openplanner.team/stops/H1me114a", "https://tec.openplanner.team/stops/H1me118a"], ["https://tec.openplanner.team/stops/LSCeg--4", "https://tec.openplanner.team/stops/LSChane1"], ["https://tec.openplanner.team/stops/LVIcarm1", "https://tec.openplanner.team/stops/LVIhala3"], ["https://tec.openplanner.team/stops/H3go102b", "https://tec.openplanner.team/stops/H3go104b"], ["https://tec.openplanner.team/stops/H1mq198a", "https://tec.openplanner.team/stops/H1ol146b"], ["https://tec.openplanner.team/stops/LSzeg--2", "https://tec.openplanner.team/stops/N506bta"], ["https://tec.openplanner.team/stops/LHdfays1", "https://tec.openplanner.team/stops/LVncarr1"], ["https://tec.openplanner.team/stops/N511aga", "https://tec.openplanner.team/stops/N511ahb"], ["https://tec.openplanner.team/stops/X769aca", "https://tec.openplanner.team/stops/X769aob"], ["https://tec.openplanner.team/stops/H4gu110a", "https://tec.openplanner.team/stops/H4ta134b"], ["https://tec.openplanner.team/stops/H1ma231a", "https://tec.openplanner.team/stops/H1ni320b"], ["https://tec.openplanner.team/stops/LeUath2", "https://tec.openplanner.team/stops/LeUnopr1"], ["https://tec.openplanner.team/stops/Livgera1", "https://tec.openplanner.team/stops/Livmoul1"], ["https://tec.openplanner.team/stops/H4ce101b", "https://tec.openplanner.team/stops/H4ce107b"], ["https://tec.openplanner.team/stops/H4rc234a", "https://tec.openplanner.team/stops/H4rc234b"], ["https://tec.openplanner.team/stops/Ctyhame1", "https://tec.openplanner.team/stops/N137afa"], ["https://tec.openplanner.team/stops/H1hh113b", "https://tec.openplanner.team/stops/H1hh117a"], ["https://tec.openplanner.team/stops/Bnilcab1", "https://tec.openplanner.team/stops/Bnilcab2"], ["https://tec.openplanner.team/stops/Lfhbott1", "https://tec.openplanner.team/stops/Lfhbott2"], ["https://tec.openplanner.team/stops/X625aea", "https://tec.openplanner.team/stops/X625aga"], ["https://tec.openplanner.team/stops/Lrcastr4", "https://tec.openplanner.team/stops/Lrclohe2"], ["https://tec.openplanner.team/stops/LFFmarc2", "https://tec.openplanner.team/stops/LVEtomb1"], ["https://tec.openplanner.team/stops/N340ada", "https://tec.openplanner.team/stops/N340agb"], ["https://tec.openplanner.team/stops/H4ev125a", "https://tec.openplanner.team/stops/H4hx116b"], ["https://tec.openplanner.team/stops/H5rx120b", "https://tec.openplanner.team/stops/H5rx149a"], ["https://tec.openplanner.team/stops/H4au144b", "https://tec.openplanner.team/stops/H4mb203a"], ["https://tec.openplanner.team/stops/Lhufont1", "https://tec.openplanner.team/stops/Lmnrame2"], ["https://tec.openplanner.team/stops/H2fa103a", "https://tec.openplanner.team/stops/H2fa103b"], ["https://tec.openplanner.team/stops/Clbchar1", "https://tec.openplanner.team/stops/Clbchar2"], ["https://tec.openplanner.team/stops/Bgerprg1", "https://tec.openplanner.team/stops/NB33aea"], ["https://tec.openplanner.team/stops/LWEcite2", "https://tec.openplanner.team/stops/LWEeg--2"], ["https://tec.openplanner.team/stops/LBQplac2", "https://tec.openplanner.team/stops/LSldurb2"], ["https://tec.openplanner.team/stops/LAvambr1", "https://tec.openplanner.team/stops/LAvrout1"], ["https://tec.openplanner.team/stops/Bbcogpl2", "https://tec.openplanner.team/stops/H3br102b"], ["https://tec.openplanner.team/stops/LMucarr3", "https://tec.openplanner.team/stops/LMupont2"], ["https://tec.openplanner.team/stops/N522aia", "https://tec.openplanner.team/stops/N576aba"], ["https://tec.openplanner.team/stops/Llgcbat2", "https://tec.openplanner.team/stops/Llgfran1"], ["https://tec.openplanner.team/stops/N521acb", "https://tec.openplanner.team/stops/N521apa"], ["https://tec.openplanner.team/stops/X609aob", "https://tec.openplanner.team/stops/X609aqb"], ["https://tec.openplanner.team/stops/H1vh135b", "https://tec.openplanner.team/stops/H1vh136c"], ["https://tec.openplanner.team/stops/X898aia", "https://tec.openplanner.team/stops/X898akb"], ["https://tec.openplanner.team/stops/N516aaa", "https://tec.openplanner.team/stops/N516aba"], ["https://tec.openplanner.team/stops/Lhurfay1", "https://tec.openplanner.team/stops/Lhurfay2"], ["https://tec.openplanner.team/stops/X768aia", "https://tec.openplanner.team/stops/X768aja"], ["https://tec.openplanner.team/stops/H4lg101a", "https://tec.openplanner.team/stops/H4lg104a"], ["https://tec.openplanner.team/stops/Cgy4bra1", "https://tec.openplanner.team/stops/Cgyaudu1"], ["https://tec.openplanner.team/stops/Bjod7co2", "https://tec.openplanner.team/stops/Bsjgmil1"], ["https://tec.openplanner.team/stops/N573ara", "https://tec.openplanner.team/stops/N573arb"], ["https://tec.openplanner.team/stops/Bsgetri2", "https://tec.openplanner.team/stops/Bvilcha2"], ["https://tec.openplanner.team/stops/X793ada", "https://tec.openplanner.team/stops/X793aqa"], ["https://tec.openplanner.team/stops/LmNbirt1", "https://tec.openplanner.team/stops/LmNelis1"], ["https://tec.openplanner.team/stops/X639aea", "https://tec.openplanner.team/stops/X639aua"], ["https://tec.openplanner.team/stops/X999acb", "https://tec.openplanner.team/stops/X999acc"], ["https://tec.openplanner.team/stops/Lheaaz-2", "https://tec.openplanner.team/stops/Lheazz-1"], ["https://tec.openplanner.team/stops/N519aac", "https://tec.openplanner.team/stops/N519aba"], ["https://tec.openplanner.team/stops/H4fr141a", "https://tec.openplanner.team/stops/H4ma417a"], ["https://tec.openplanner.team/stops/Bhmmcim1", "https://tec.openplanner.team/stops/Bhmmcim2"], ["https://tec.openplanner.team/stops/X901ada", "https://tec.openplanner.team/stops/X901aha"], ["https://tec.openplanner.team/stops/H2ml113a", "https://tec.openplanner.team/stops/H2mo119a"], ["https://tec.openplanner.team/stops/N501dqa", "https://tec.openplanner.team/stops/N501knb"], ["https://tec.openplanner.team/stops/X834abb", "https://tec.openplanner.team/stops/X834acb"], ["https://tec.openplanner.team/stops/H1je213b", "https://tec.openplanner.team/stops/H1je225a"], ["https://tec.openplanner.team/stops/H2fy123b", "https://tec.openplanner.team/stops/H2lh127a"], ["https://tec.openplanner.team/stops/H1mk108b", "https://tec.openplanner.team/stops/H1mk108c"], ["https://tec.openplanner.team/stops/X774ada", "https://tec.openplanner.team/stops/X774afb"], ["https://tec.openplanner.team/stops/X717age", "https://tec.openplanner.team/stops/X717agf"], ["https://tec.openplanner.team/stops/Llghaut1", "https://tec.openplanner.team/stops/Llglefe2"], ["https://tec.openplanner.team/stops/Blimbet3", "https://tec.openplanner.team/stops/Blimsob2"], ["https://tec.openplanner.team/stops/LDpulve2", "https://tec.openplanner.team/stops/LDpzol-1"], ["https://tec.openplanner.team/stops/LhRkirc1", "https://tec.openplanner.team/stops/LsCbrau1"], ["https://tec.openplanner.team/stops/N501eua", "https://tec.openplanner.team/stops/N501jqa"], ["https://tec.openplanner.team/stops/Bblapin1", "https://tec.openplanner.team/stops/Brsg7fo1"], ["https://tec.openplanner.team/stops/Lprdavi2", "https://tec.openplanner.team/stops/Lprhodi1"], ["https://tec.openplanner.team/stops/NL76ala", "https://tec.openplanner.team/stops/NL76ama"], ["https://tec.openplanner.team/stops/N501czb", "https://tec.openplanner.team/stops/N528aia"], ["https://tec.openplanner.team/stops/X927acb", "https://tec.openplanner.team/stops/X983aga"], ["https://tec.openplanner.team/stops/Llgarmu4", "https://tec.openplanner.team/stops/Llgmare5"], ["https://tec.openplanner.team/stops/LJvmale1", "https://tec.openplanner.team/stops/X781aab"], ["https://tec.openplanner.team/stops/H4ty281a", "https://tec.openplanner.team/stops/H4ty281b"], ["https://tec.openplanner.team/stops/N509aqb", "https://tec.openplanner.team/stops/N511aob"], ["https://tec.openplanner.team/stops/H1fr111a", "https://tec.openplanner.team/stops/H1fr111b"], ["https://tec.openplanner.team/stops/H4bh102d", "https://tec.openplanner.team/stops/H4bh105a"], ["https://tec.openplanner.team/stops/H1po130b", "https://tec.openplanner.team/stops/H1po138b"], ["https://tec.openplanner.team/stops/Cprcalv1", "https://tec.openplanner.team/stops/Cprcalv2"], ["https://tec.openplanner.team/stops/LlA43--1", "https://tec.openplanner.team/stops/LrUlasc2"], ["https://tec.openplanner.team/stops/Cobbuze1", "https://tec.openplanner.team/stops/Cobhaut2"], ["https://tec.openplanner.team/stops/LRObruy1", "https://tec.openplanner.team/stops/LROmorf2"], ["https://tec.openplanner.team/stops/X743aeb", "https://tec.openplanner.team/stops/X743agb"], ["https://tec.openplanner.team/stops/Cblsall1", "https://tec.openplanner.team/stops/Cslbarb2"], ["https://tec.openplanner.team/stops/Lhulibe1", "https://tec.openplanner.team/stops/Lhulibe2"], ["https://tec.openplanner.team/stops/LbRkirc1", "https://tec.openplanner.team/stops/LwTkabi3"], ["https://tec.openplanner.team/stops/LHXmonu1", "https://tec.openplanner.team/stops/LTPcamp2"], ["https://tec.openplanner.team/stops/H4ar100b", "https://tec.openplanner.team/stops/H4ar101a"], ["https://tec.openplanner.team/stops/Clproi1", "https://tec.openplanner.team/stops/Clproi2"], ["https://tec.openplanner.team/stops/Lbbgare2", "https://tec.openplanner.team/stops/Ljucano1"], ["https://tec.openplanner.team/stops/Cgrchas1", "https://tec.openplanner.team/stops/N160aeb"], ["https://tec.openplanner.team/stops/Ladboti1", "https://tec.openplanner.team/stops/Ladchat1"], ["https://tec.openplanner.team/stops/LOCbois1", "https://tec.openplanner.team/stops/NL35aga"], ["https://tec.openplanner.team/stops/LOVhetr2", "https://tec.openplanner.team/stops/LROrtba1"], ["https://tec.openplanner.team/stops/Bnivh%C3%B4p1", "https://tec.openplanner.team/stops/Bnivh%C3%B4p2"], ["https://tec.openplanner.team/stops/LCleg--1", "https://tec.openplanner.team/stops/LELchap1"], ["https://tec.openplanner.team/stops/H4me211a", "https://tec.openplanner.team/stops/H4me211b"], ["https://tec.openplanner.team/stops/Bndbdra1", "https://tec.openplanner.team/stops/Bndbnod2"], ["https://tec.openplanner.team/stops/X775aia", "https://tec.openplanner.team/stops/X775aja"], ["https://tec.openplanner.team/stops/H1to152a", "https://tec.openplanner.team/stops/H1to155a"], ["https://tec.openplanner.team/stops/Cgzfarc2", "https://tec.openplanner.team/stops/Cgzha621"], ["https://tec.openplanner.team/stops/X601bbb", "https://tec.openplanner.team/stops/X601bbc"], ["https://tec.openplanner.team/stops/Bwaak101", "https://tec.openplanner.team/stops/LBegare2"], ["https://tec.openplanner.team/stops/LeUschn1", "https://tec.openplanner.team/stops/LeUschn2"], ["https://tec.openplanner.team/stops/H4mv189a", "https://tec.openplanner.team/stops/H4mv189b"], ["https://tec.openplanner.team/stops/LMibouv4", "https://tec.openplanner.team/stops/LSTmeiz2"], ["https://tec.openplanner.team/stops/H1ms270b", "https://tec.openplanner.team/stops/H1ob361a"], ["https://tec.openplanner.team/stops/LPAmc--1", "https://tec.openplanner.team/stops/LPAvill1"], ["https://tec.openplanner.team/stops/Bclgpch2", "https://tec.openplanner.team/stops/Bllnlb52"], ["https://tec.openplanner.team/stops/Lemjoba1", "https://tec.openplanner.team/stops/Lemmath2"], ["https://tec.openplanner.team/stops/Lwaaube2", "https://tec.openplanner.team/stops/Lwachal1"], ["https://tec.openplanner.team/stops/H1hn365a", "https://tec.openplanner.team/stops/H1hn365b"], ["https://tec.openplanner.team/stops/Ccoforr1", "https://tec.openplanner.team/stops/Ccoforr2"], ["https://tec.openplanner.team/stops/X725aaa", "https://tec.openplanner.team/stops/X738aea"], ["https://tec.openplanner.team/stops/LEN183-2", "https://tec.openplanner.team/stops/LSGsurf1"], ["https://tec.openplanner.team/stops/H1sp355a", "https://tec.openplanner.team/stops/H1sp356a"], ["https://tec.openplanner.team/stops/LTestat1", "https://tec.openplanner.team/stops/LTestat2"], ["https://tec.openplanner.team/stops/LWNfani1", "https://tec.openplanner.team/stops/LWNwavr5"], ["https://tec.openplanner.team/stops/X952aeb", "https://tec.openplanner.team/stops/X952afb"], ["https://tec.openplanner.team/stops/Lsebegu2", "https://tec.openplanner.team/stops/Lsebegu3"], ["https://tec.openplanner.team/stops/Ctucamb1", "https://tec.openplanner.team/stops/Ctusold1"], ["https://tec.openplanner.team/stops/N506bbb", "https://tec.openplanner.team/stops/N512axa"], ["https://tec.openplanner.team/stops/LCRf14-2", "https://tec.openplanner.team/stops/LCRgdrt2"], ["https://tec.openplanner.team/stops/Bnivn972", "https://tec.openplanner.team/stops/Bnivpal1"], ["https://tec.openplanner.team/stops/Bhencha1", "https://tec.openplanner.team/stops/Bvircsj2"], ["https://tec.openplanner.team/stops/LBzec--2", "https://tec.openplanner.team/stops/LVMrout2"], ["https://tec.openplanner.team/stops/LBNforg2", "https://tec.openplanner.team/stops/LWEwall1"], ["https://tec.openplanner.team/stops/N542aaa", "https://tec.openplanner.team/stops/N542acc"], ["https://tec.openplanner.team/stops/N261aaa", "https://tec.openplanner.team/stops/N261agb"], ["https://tec.openplanner.team/stops/Cfbcal2", "https://tec.openplanner.team/stops/Cfcmass1"], ["https://tec.openplanner.team/stops/N122agb", "https://tec.openplanner.team/stops/N122ahb"], ["https://tec.openplanner.team/stops/LrDhund1", "https://tec.openplanner.team/stops/LsVgils1"], ["https://tec.openplanner.team/stops/Cmosaba3", "https://tec.openplanner.team/stops/Cmoscap1"], ["https://tec.openplanner.team/stops/X346akb", "https://tec.openplanner.team/stops/X369abb"], ["https://tec.openplanner.team/stops/H4pi130a", "https://tec.openplanner.team/stops/H4wp151b"], ["https://tec.openplanner.team/stops/H1so131b", "https://tec.openplanner.team/stops/H1so132b"], ["https://tec.openplanner.team/stops/X879akb", "https://tec.openplanner.team/stops/X879alb"], ["https://tec.openplanner.team/stops/X641apc", "https://tec.openplanner.team/stops/X641aqb"], ["https://tec.openplanner.team/stops/H5el116b", "https://tec.openplanner.team/stops/H5el117b"], ["https://tec.openplanner.team/stops/N351aga", "https://tec.openplanner.team/stops/N351aha"], ["https://tec.openplanner.team/stops/Cgxprad2", "https://tec.openplanner.team/stops/Cgxprad4"], ["https://tec.openplanner.team/stops/Cmldeto2", "https://tec.openplanner.team/stops/NC01afb"], ["https://tec.openplanner.team/stops/H4mo150b", "https://tec.openplanner.team/stops/H4mo205a"], ["https://tec.openplanner.team/stops/H4bo182a", "https://tec.openplanner.team/stops/H4bo182b"], ["https://tec.openplanner.team/stops/LBsfer-1", "https://tec.openplanner.team/stops/LBspiet2"], ["https://tec.openplanner.team/stops/H1ms268b", "https://tec.openplanner.team/stops/H1ms285a"], ["https://tec.openplanner.team/stops/Llgcadr4", "https://tec.openplanner.team/stops/LlgR-Fr*"], ["https://tec.openplanner.team/stops/X641afa", "https://tec.openplanner.team/stops/X641afb"], ["https://tec.openplanner.team/stops/Bmonbri2", "https://tec.openplanner.team/stops/Bnivmon1"], ["https://tec.openplanner.team/stops/Llgcoro1", "https://tec.openplanner.team/stops/Llgcoro4"], ["https://tec.openplanner.team/stops/Cctpano1", "https://tec.openplanner.team/stops/NC11aga"], ["https://tec.openplanner.team/stops/Ljucrah2", "https://tec.openplanner.team/stops/Ljuetie1"], ["https://tec.openplanner.team/stops/LBEpier1", "https://tec.openplanner.team/stops/Lcacaps1"], ["https://tec.openplanner.team/stops/H2tr246b", "https://tec.openplanner.team/stops/H2tr254a"], ["https://tec.openplanner.team/stops/N554ada", "https://tec.openplanner.team/stops/N573aqa"], ["https://tec.openplanner.team/stops/Ljucaba1", "https://tec.openplanner.team/stops/Ljuroch2"], ["https://tec.openplanner.team/stops/H4hx109b", "https://tec.openplanner.team/stops/H4wa155a"], ["https://tec.openplanner.team/stops/LHUaveu2", "https://tec.openplanner.team/stops/NL80aca"], ["https://tec.openplanner.team/stops/Cvlcalv2", "https://tec.openplanner.team/stops/NH01aha"], ["https://tec.openplanner.team/stops/Crchutt2", "https://tec.openplanner.team/stops/Crclorc1"], ["https://tec.openplanner.team/stops/Bbiehss1", "https://tec.openplanner.team/stops/Bbiesbi2"], ["https://tec.openplanner.team/stops/X354ahb", "https://tec.openplanner.team/stops/X359ala"], ["https://tec.openplanner.team/stops/LhZkape2", "https://tec.openplanner.team/stops/LmNsv872"], ["https://tec.openplanner.team/stops/N543aeb", "https://tec.openplanner.team/stops/N543apa"], ["https://tec.openplanner.team/stops/H1ca101a", "https://tec.openplanner.team/stops/H1ca186a"], ["https://tec.openplanner.team/stops/LSMchat2", "https://tec.openplanner.team/stops/LSMfroi2"], ["https://tec.openplanner.team/stops/LBGcent2", "https://tec.openplanner.team/stops/LPUmang1"], ["https://tec.openplanner.team/stops/X547aqb", "https://tec.openplanner.team/stops/X782aba"], ["https://tec.openplanner.team/stops/H2ha129d", "https://tec.openplanner.team/stops/H2ha139a"], ["https://tec.openplanner.team/stops/H1cu119b", "https://tec.openplanner.team/stops/H1cu122b"], ["https://tec.openplanner.team/stops/N155afa", "https://tec.openplanner.team/stops/N160aga"], ["https://tec.openplanner.team/stops/Cgzbouh2", "https://tec.openplanner.team/stops/Cgzcour1"], ["https://tec.openplanner.team/stops/H1gh157a", "https://tec.openplanner.team/stops/H1gh162c"], ["https://tec.openplanner.team/stops/N231aba", "https://tec.openplanner.team/stops/N231afb"], ["https://tec.openplanner.team/stops/LSCeg--4", "https://tec.openplanner.team/stops/LVMborl1"], ["https://tec.openplanner.team/stops/Lra4bra2", "https://tec.openplanner.team/stops/Lwakipe2"], ["https://tec.openplanner.team/stops/N229ara", "https://tec.openplanner.team/stops/N229aua"], ["https://tec.openplanner.team/stops/LNAanne1", "https://tec.openplanner.team/stops/LNAplac1"], ["https://tec.openplanner.team/stops/N134alb", "https://tec.openplanner.team/stops/N135aza"], ["https://tec.openplanner.team/stops/X396aca", "https://tec.openplanner.team/stops/X396acb"], ["https://tec.openplanner.team/stops/H1ht132a", "https://tec.openplanner.team/stops/H1si153a"], ["https://tec.openplanner.team/stops/LMEpech2", "https://tec.openplanner.team/stops/LMIcamp1"], ["https://tec.openplanner.team/stops/X641acb", "https://tec.openplanner.team/stops/X641adb"], ["https://tec.openplanner.team/stops/H4wt159a", "https://tec.openplanner.team/stops/H5rx112a"], ["https://tec.openplanner.team/stops/Bbeabme2", "https://tec.openplanner.team/stops/Bbeaegl1"], ["https://tec.openplanner.team/stops/H4ga158a", "https://tec.openplanner.team/stops/H4ga414a"], ["https://tec.openplanner.team/stops/X808afa", "https://tec.openplanner.team/stops/X808aga"], ["https://tec.openplanner.team/stops/N509aeb", "https://tec.openplanner.team/stops/N509afb"], ["https://tec.openplanner.team/stops/Lagindu2", "https://tec.openplanner.team/stops/Lagpn6-1"], ["https://tec.openplanner.team/stops/X746adb", "https://tec.openplanner.team/stops/X746aka"], ["https://tec.openplanner.team/stops/X747akb", "https://tec.openplanner.team/stops/X747ala"], ["https://tec.openplanner.team/stops/X604ahb", "https://tec.openplanner.team/stops/X625aga"], ["https://tec.openplanner.team/stops/Bitrbvo1", "https://tec.openplanner.team/stops/Bitrsar2"], ["https://tec.openplanner.team/stops/H4mb140a", "https://tec.openplanner.team/stops/H4mb142a"], ["https://tec.openplanner.team/stops/LLAeg--1", "https://tec.openplanner.team/stops/LLAeg--2"], ["https://tec.openplanner.team/stops/LsVbell1", "https://tec.openplanner.team/stops/LsVhupp1"], ["https://tec.openplanner.team/stops/N113afb", "https://tec.openplanner.team/stops/N114aab"], ["https://tec.openplanner.team/stops/N219abb", "https://tec.openplanner.team/stops/N219aeb"], ["https://tec.openplanner.team/stops/Lrocort2", "https://tec.openplanner.team/stops/Lronamo1"], ["https://tec.openplanner.team/stops/H1th180a", "https://tec.openplanner.team/stops/H1th182a"], ["https://tec.openplanner.team/stops/Blinbru1", "https://tec.openplanner.team/stops/Brach121"], ["https://tec.openplanner.team/stops/Blmlbif1", "https://tec.openplanner.team/stops/Brixpbs2"], ["https://tec.openplanner.team/stops/Bgzdgpa2", "https://tec.openplanner.team/stops/Bgzdgst1"], ["https://tec.openplanner.team/stops/H4mt219b", "https://tec.openplanner.team/stops/H4mx118a"], ["https://tec.openplanner.team/stops/X734aca", "https://tec.openplanner.team/stops/X734acb"], ["https://tec.openplanner.team/stops/Lhrmilm1", "https://tec.openplanner.team/stops/Lhrrhee*"], ["https://tec.openplanner.team/stops/X671abb", "https://tec.openplanner.team/stops/X671acb"], ["https://tec.openplanner.team/stops/Lsteduc2", "https://tec.openplanner.team/stops/Lstphys2"], ["https://tec.openplanner.team/stops/Llglair1", "https://tec.openplanner.team/stops/Llglair2"], ["https://tec.openplanner.team/stops/N501lra", "https://tec.openplanner.team/stops/N501lrb"], ["https://tec.openplanner.team/stops/Bbch4br1", "https://tec.openplanner.team/stops/Bbch4br2"], ["https://tec.openplanner.team/stops/N501iob", "https://tec.openplanner.team/stops/N501irb"], ["https://tec.openplanner.team/stops/Cmlfeba1", "https://tec.openplanner.team/stops/Cmlfeba2"], ["https://tec.openplanner.team/stops/LmImirf1", "https://tec.openplanner.team/stops/LmImirf2"], ["https://tec.openplanner.team/stops/LJEchat1", "https://tec.openplanner.team/stops/LJEchat2"], ["https://tec.openplanner.team/stops/Ctarpoi2", "https://tec.openplanner.team/stops/N543boa"], ["https://tec.openplanner.team/stops/X804bpa", "https://tec.openplanner.team/stops/X804bqa"], ["https://tec.openplanner.team/stops/H4pl116a", "https://tec.openplanner.team/stops/H4pl136a"], ["https://tec.openplanner.team/stops/NL37aja", "https://tec.openplanner.team/stops/NL74ajb"], ["https://tec.openplanner.team/stops/Bbghsta1", "https://tec.openplanner.team/stops/Bstesar1"], ["https://tec.openplanner.team/stops/H1ni319a", "https://tec.openplanner.team/stops/H1ni319b"], ["https://tec.openplanner.team/stops/LHanest1", "https://tec.openplanner.team/stops/LHarenn2"], ["https://tec.openplanner.team/stops/Lhrmura1", "https://tec.openplanner.team/stops/Lhrvert1"], ["https://tec.openplanner.team/stops/LCSfagn1", "https://tec.openplanner.team/stops/LENengi2"], ["https://tec.openplanner.team/stops/Bmrshan1", "https://tec.openplanner.team/stops/Bmrswag2"], ["https://tec.openplanner.team/stops/N524aja", "https://tec.openplanner.team/stops/N524ajb"], ["https://tec.openplanner.team/stops/Lmieg--2", "https://tec.openplanner.team/stops/Lmigare2"], ["https://tec.openplanner.team/stops/N501avb", "https://tec.openplanner.team/stops/N501daa"], ["https://tec.openplanner.team/stops/Crclorc1", "https://tec.openplanner.team/stops/Crcpcom2"], ["https://tec.openplanner.team/stops/Lenauln2", "https://tec.openplanner.team/stops/Lvelieg2"], ["https://tec.openplanner.team/stops/H1sd344a", "https://tec.openplanner.team/stops/H1sd366b"], ["https://tec.openplanner.team/stops/Ldihvce2", "https://tec.openplanner.team/stops/Ldipl--4"], ["https://tec.openplanner.team/stops/LJAherb3", "https://tec.openplanner.team/stops/LJAherb4"], ["https://tec.openplanner.team/stops/LESmich1", "https://tec.openplanner.team/stops/LTIcime1"], ["https://tec.openplanner.team/stops/Cprcits1", "https://tec.openplanner.team/stops/Cprsapv1"], ["https://tec.openplanner.team/stops/X664aaa", "https://tec.openplanner.team/stops/X667aca"], ["https://tec.openplanner.team/stops/X663ana", "https://tec.openplanner.team/stops/X663aqb"], ["https://tec.openplanner.team/stops/LhLbalt2", "https://tec.openplanner.team/stops/LmNsied2"], ["https://tec.openplanner.team/stops/N532aba", "https://tec.openplanner.team/stops/N532aib"], ["https://tec.openplanner.team/stops/Ccupomp1", "https://tec.openplanner.team/stops/Cpicite2"], ["https://tec.openplanner.team/stops/Bchgflo1", "https://tec.openplanner.team/stops/Blonegl2"], ["https://tec.openplanner.team/stops/N236afb", "https://tec.openplanner.team/stops/N570agb"], ["https://tec.openplanner.team/stops/H1hr117a", "https://tec.openplanner.team/stops/H1hr128b"], ["https://tec.openplanner.team/stops/Bbeagae1", "https://tec.openplanner.team/stops/Bmlncha2"], ["https://tec.openplanner.team/stops/X837aab", "https://tec.openplanner.team/stops/X839agb"], ["https://tec.openplanner.team/stops/Bhaldbo1", "https://tec.openplanner.team/stops/Bspkbeu2"], ["https://tec.openplanner.team/stops/Llgfont1", "https://tec.openplanner.team/stops/Llgwesp1"], ["https://tec.openplanner.team/stops/X802aea", "https://tec.openplanner.team/stops/X802aeb"], ["https://tec.openplanner.team/stops/Cmaegal1", "https://tec.openplanner.team/stops/Cmaegal2"], ["https://tec.openplanner.team/stops/H3so168b", "https://tec.openplanner.team/stops/H3so176a"], ["https://tec.openplanner.team/stops/Bbldmun1", "https://tec.openplanner.team/stops/Bnetrec1"], ["https://tec.openplanner.team/stops/H4ob109a", "https://tec.openplanner.team/stops/H4ob110a"], ["https://tec.openplanner.team/stops/H3so154a", "https://tec.openplanner.team/stops/H3so168b"], ["https://tec.openplanner.team/stops/Lvtcalv1", "https://tec.openplanner.team/stops/Lvteg--2"], ["https://tec.openplanner.team/stops/N874aja", "https://tec.openplanner.team/stops/N874aka"], ["https://tec.openplanner.team/stops/LVkchap1", "https://tec.openplanner.team/stops/LVkinst1"], ["https://tec.openplanner.team/stops/X661bba", "https://tec.openplanner.team/stops/X672aba"], ["https://tec.openplanner.team/stops/LWApt--1", "https://tec.openplanner.team/stops/LWAvand2"], ["https://tec.openplanner.team/stops/LHChoek3", "https://tec.openplanner.team/stops/LHChoof3"], ["https://tec.openplanner.team/stops/H4jm116a", "https://tec.openplanner.team/stops/H4we136a"], ["https://tec.openplanner.team/stops/LAMhopi3", "https://tec.openplanner.team/stops/LAMjaur1"], ["https://tec.openplanner.team/stops/Lbooffe1", "https://tec.openplanner.team/stops/Lbosart1"], ["https://tec.openplanner.team/stops/Cpthaud1", "https://tec.openplanner.team/stops/Cptrebe1"], ["https://tec.openplanner.team/stops/X991acb", "https://tec.openplanner.team/stops/X993aab"], ["https://tec.openplanner.team/stops/X647aab", "https://tec.openplanner.team/stops/X648aba"], ["https://tec.openplanner.team/stops/Cdagoss2", "https://tec.openplanner.team/stops/CMprov2"], ["https://tec.openplanner.team/stops/X801ceb", "https://tec.openplanner.team/stops/X801cfa"], ["https://tec.openplanner.team/stops/Bwaveur1", "https://tec.openplanner.team/stops/Bwaveur2"], ["https://tec.openplanner.team/stops/N501ana", "https://tec.openplanner.team/stops/N501ncb"], ["https://tec.openplanner.team/stops/Lvomoul2", "https://tec.openplanner.team/stops/Lvopaqu2"], ["https://tec.openplanner.team/stops/N211ana", "https://tec.openplanner.team/stops/N211ayb"], ["https://tec.openplanner.team/stops/N425afa", "https://tec.openplanner.team/stops/N425afb"], ["https://tec.openplanner.team/stops/N553ama", "https://tec.openplanner.team/stops/N553aqa"], ["https://tec.openplanner.team/stops/N894abb", "https://tec.openplanner.team/stops/X887aaa"], ["https://tec.openplanner.team/stops/N115aca", "https://tec.openplanner.team/stops/N115acb"], ["https://tec.openplanner.team/stops/N101aob", "https://tec.openplanner.team/stops/N101apb"], ["https://tec.openplanner.team/stops/Lsnbure1", "https://tec.openplanner.team/stops/Ltiecch1"], ["https://tec.openplanner.team/stops/Lbocorn2", "https://tec.openplanner.team/stops/Louvivi1"], ["https://tec.openplanner.team/stops/LOLfoss1", "https://tec.openplanner.team/stops/LSOchau1"], ["https://tec.openplanner.team/stops/X820aea", "https://tec.openplanner.team/stops/X820aeb"], ["https://tec.openplanner.team/stops/H1hr121d", "https://tec.openplanner.team/stops/H2pr114a"], ["https://tec.openplanner.team/stops/Ceregl2", "https://tec.openplanner.team/stops/Cerrver4"], ["https://tec.openplanner.team/stops/Lthfren2", "https://tec.openplanner.team/stops/Lthgros2"], ["https://tec.openplanner.team/stops/Lmlec--2", "https://tec.openplanner.team/stops/Lmlec--4"], ["https://tec.openplanner.team/stops/NL72aba", "https://tec.openplanner.team/stops/NL72abb"], ["https://tec.openplanner.team/stops/H1fv102a", "https://tec.openplanner.team/stops/H1ls106a"], ["https://tec.openplanner.team/stops/LMAgdfa2", "https://tec.openplanner.team/stops/LMAstei2"], ["https://tec.openplanner.team/stops/H4mo148b", "https://tec.openplanner.team/stops/H4mo182a"], ["https://tec.openplanner.team/stops/Bhptpla2", "https://tec.openplanner.team/stops/Broncli1"], ["https://tec.openplanner.team/stops/Clomari5", "https://tec.openplanner.team/stops/CMmari1"], ["https://tec.openplanner.team/stops/X725apa", "https://tec.openplanner.team/stops/X725apb"], ["https://tec.openplanner.team/stops/X638aja", "https://tec.openplanner.team/stops/X638ajb"], ["https://tec.openplanner.team/stops/H2ll267a", "https://tec.openplanner.team/stops/H2ll267b"], ["https://tec.openplanner.team/stops/LJAbois1", "https://tec.openplanner.team/stops/LJAbois2"], ["https://tec.openplanner.team/stops/X786aea", "https://tec.openplanner.team/stops/X786ajb"], ["https://tec.openplanner.team/stops/Bmarmpr1", "https://tec.openplanner.team/stops/Bmarmpr2"], ["https://tec.openplanner.team/stops/LGEvill1", "https://tec.openplanner.team/stops/LGEvill2"], ["https://tec.openplanner.team/stops/LSkdouf1", "https://tec.openplanner.team/stops/LSkrena2"], ["https://tec.openplanner.team/stops/LSIroch1", "https://tec.openplanner.team/stops/LSIvieu1"], ["https://tec.openplanner.team/stops/Cmqbasv1", "https://tec.openplanner.team/stops/Cmqn5911"], ["https://tec.openplanner.team/stops/H4br111a", "https://tec.openplanner.team/stops/H4pe127a"], ["https://tec.openplanner.team/stops/Lsedese1", "https://tec.openplanner.team/stops/Lseserv2"], ["https://tec.openplanner.team/stops/X836aea", "https://tec.openplanner.team/stops/X836afb"], ["https://tec.openplanner.team/stops/H1bo110a", "https://tec.openplanner.team/stops/H1bo112a"], ["https://tec.openplanner.team/stops/Cmlecha2", "https://tec.openplanner.team/stops/NC01ahb"], ["https://tec.openplanner.team/stops/N235afb", "https://tec.openplanner.team/stops/N235agb"], ["https://tec.openplanner.team/stops/X740aga", "https://tec.openplanner.team/stops/X912akb"], ["https://tec.openplanner.team/stops/X994afa", "https://tec.openplanner.team/stops/X995afa"], ["https://tec.openplanner.team/stops/LeUbell*", "https://tec.openplanner.team/stops/LeUmeie2"], ["https://tec.openplanner.team/stops/X804bsa", "https://tec.openplanner.team/stops/X804bsb"], ["https://tec.openplanner.team/stops/X658aea", "https://tec.openplanner.team/stops/X658aeb"], ["https://tec.openplanner.team/stops/H1sb149a", "https://tec.openplanner.team/stops/H1sb150b"], ["https://tec.openplanner.team/stops/H1fr117b", "https://tec.openplanner.team/stops/H1fr151b"], ["https://tec.openplanner.team/stops/H4mo190a", "https://tec.openplanner.team/stops/H4mo207a"], ["https://tec.openplanner.team/stops/Brsgece1", "https://tec.openplanner.team/stops/Brsgleq1"], ["https://tec.openplanner.team/stops/H1gh143a", "https://tec.openplanner.team/stops/H1gh171a"], ["https://tec.openplanner.team/stops/Bwategl1", "https://tec.openplanner.team/stops/Bwategl2"], ["https://tec.openplanner.team/stops/X736agb", "https://tec.openplanner.team/stops/X753abc"], ["https://tec.openplanner.team/stops/LlOkreu1", "https://tec.openplanner.team/stops/LlOpfar1"], ["https://tec.openplanner.team/stops/LCPcomb1", "https://tec.openplanner.team/stops/LCPlebl2"], ["https://tec.openplanner.team/stops/N204ahb", "https://tec.openplanner.team/stops/N204aka"], ["https://tec.openplanner.team/stops/Lsn130-2", "https://tec.openplanner.team/stops/Lsn184-1"], ["https://tec.openplanner.team/stops/Lbrddef3", "https://tec.openplanner.team/stops/Lbrddef4"], ["https://tec.openplanner.team/stops/H1fl133d", "https://tec.openplanner.team/stops/H1je223a"], ["https://tec.openplanner.team/stops/N509bdb", "https://tec.openplanner.team/stops/N509bea"], ["https://tec.openplanner.team/stops/N109acb", "https://tec.openplanner.team/stops/N122aaa"], ["https://tec.openplanner.team/stops/H4ir165a", "https://tec.openplanner.team/stops/H5at120a"], ["https://tec.openplanner.team/stops/Cmldupu1", "https://tec.openplanner.team/stops/NC01afa"], ["https://tec.openplanner.team/stops/X637abb", "https://tec.openplanner.team/stops/X637aqa"], ["https://tec.openplanner.team/stops/N118aab", "https://tec.openplanner.team/stops/N118aib"], ["https://tec.openplanner.team/stops/Lalbout1", "https://tec.openplanner.team/stops/Lalparc2"], ["https://tec.openplanner.team/stops/LAVdepr1", "https://tec.openplanner.team/stops/LVPduvi2"], ["https://tec.openplanner.team/stops/N501mta", "https://tec.openplanner.team/stops/N501mtb"], ["https://tec.openplanner.team/stops/X992aad", "https://tec.openplanner.team/stops/X992ajb"], ["https://tec.openplanner.team/stops/Bjodeco3", "https://tec.openplanner.team/stops/Bjodrrg2"], ["https://tec.openplanner.team/stops/Lougare3", "https://tec.openplanner.team/stops/Louoran1"], ["https://tec.openplanner.team/stops/Bhevgar1", "https://tec.openplanner.team/stops/Bhevgar2"], ["https://tec.openplanner.team/stops/Bflegar6", "https://tec.openplanner.team/stops/Cflbrun2"], ["https://tec.openplanner.team/stops/Crccano4", "https://tec.openplanner.team/stops/Crcrwas1"], ["https://tec.openplanner.team/stops/Clgmaco2", "https://tec.openplanner.team/stops/Ctisar1"], ["https://tec.openplanner.team/stops/N308asa", "https://tec.openplanner.team/stops/N308ayb"], ["https://tec.openplanner.team/stops/LMvgare1", "https://tec.openplanner.team/stops/LMvgare2"], ["https://tec.openplanner.team/stops/X615bia", "https://tec.openplanner.team/stops/X681aca"], ["https://tec.openplanner.team/stops/Bdlmegl2", "https://tec.openplanner.team/stops/Bdvmsar2"], ["https://tec.openplanner.team/stops/LRmkult1", "https://tec.openplanner.team/stops/LRmkult2"], ["https://tec.openplanner.team/stops/X768aaa", "https://tec.openplanner.team/stops/X768abb"], ["https://tec.openplanner.team/stops/N114aab", "https://tec.openplanner.team/stops/X317aab"], ["https://tec.openplanner.team/stops/N308aea", "https://tec.openplanner.team/stops/N308agb"], ["https://tec.openplanner.team/stops/Bmlnpab1", "https://tec.openplanner.team/stops/Bptbbie1"], ["https://tec.openplanner.team/stops/X925ada", "https://tec.openplanner.team/stops/X925ama"], ["https://tec.openplanner.team/stops/N501eab", "https://tec.openplanner.team/stops/N501epa"], ["https://tec.openplanner.team/stops/H5rx100a", "https://tec.openplanner.team/stops/H5rx100b"], ["https://tec.openplanner.team/stops/LmIzent1", "https://tec.openplanner.team/stops/LvAschw1"], ["https://tec.openplanner.team/stops/Llgbour2", "https://tec.openplanner.team/stops/Lscpamp2"], ["https://tec.openplanner.team/stops/H4og206a", "https://tec.openplanner.team/stops/H4og213a"], ["https://tec.openplanner.team/stops/H4ty272b", "https://tec.openplanner.team/stops/H4ty320b"], ["https://tec.openplanner.team/stops/LOMware1", "https://tec.openplanner.team/stops/LTOcime2"], ["https://tec.openplanner.team/stops/N135ayb", "https://tec.openplanner.team/stops/N135bgb"], ["https://tec.openplanner.team/stops/Llgnico*", "https://tec.openplanner.team/stops/Llgsnap1"], ["https://tec.openplanner.team/stops/N501bfy", "https://tec.openplanner.team/stops/N501nbb"], ["https://tec.openplanner.team/stops/H2gy101a", "https://tec.openplanner.team/stops/H2gy106b"], ["https://tec.openplanner.team/stops/H1mr123a", "https://tec.openplanner.team/stops/H1mr124a"], ["https://tec.openplanner.team/stops/Bpielom1", "https://tec.openplanner.team/stops/Bsjgmil2"], ["https://tec.openplanner.team/stops/Lvegend1", "https://tec.openplanner.team/stops/Lvelobe2"], ["https://tec.openplanner.team/stops/Cflchel1", "https://tec.openplanner.team/stops/Cflchel3"], ["https://tec.openplanner.team/stops/X342ada", "https://tec.openplanner.team/stops/X342aga"], ["https://tec.openplanner.team/stops/N532aga", "https://tec.openplanner.team/stops/N532agb"], ["https://tec.openplanner.team/stops/LSShous1", "https://tec.openplanner.team/stops/LSSvill2"], ["https://tec.openplanner.team/stops/X769ala", "https://tec.openplanner.team/stops/X769amb"], ["https://tec.openplanner.team/stops/Lmitech2", "https://tec.openplanner.team/stops/Lvtchpl4"], ["https://tec.openplanner.team/stops/N215acc", "https://tec.openplanner.team/stops/N232cea"], ["https://tec.openplanner.team/stops/H5is168b", "https://tec.openplanner.team/stops/H5is171b"], ["https://tec.openplanner.team/stops/H4ty299c", "https://tec.openplanner.team/stops/H4wc372b"], ["https://tec.openplanner.team/stops/H4fa124b", "https://tec.openplanner.team/stops/H4ms146a"], ["https://tec.openplanner.team/stops/Lmibove2", "https://tec.openplanner.team/stops/Lmibove3"], ["https://tec.openplanner.team/stops/H3lr116b", "https://tec.openplanner.team/stops/H3lr120a"], ["https://tec.openplanner.team/stops/X748abb", "https://tec.openplanner.team/stops/X748afa"], ["https://tec.openplanner.team/stops/N521ala", "https://tec.openplanner.team/stops/N527afa"], ["https://tec.openplanner.team/stops/X724aba", "https://tec.openplanner.team/stops/X724acb"], ["https://tec.openplanner.team/stops/H2ch110b", "https://tec.openplanner.team/stops/H2ch121b"], ["https://tec.openplanner.team/stops/N584aga", "https://tec.openplanner.team/stops/N584cac"], ["https://tec.openplanner.team/stops/LaAgold1", "https://tec.openplanner.team/stops/LaAronh2"], ["https://tec.openplanner.team/stops/H2pe163b", "https://tec.openplanner.team/stops/H2sv217a"], ["https://tec.openplanner.team/stops/LCPcomp2", "https://tec.openplanner.team/stops/LCPlebl2"], ["https://tec.openplanner.team/stops/LGmloti2", "https://tec.openplanner.team/stops/LMAbell1"], ["https://tec.openplanner.team/stops/H1cv101b", "https://tec.openplanner.team/stops/H1cv103b"], ["https://tec.openplanner.team/stops/Ctrchat2", "https://tec.openplanner.team/stops/H2tz115b"], ["https://tec.openplanner.team/stops/LJelava1", "https://tec.openplanner.team/stops/LJelava2"], ["https://tec.openplanner.team/stops/N531ajb", "https://tec.openplanner.team/stops/N534blh"], ["https://tec.openplanner.team/stops/H4co107a", "https://tec.openplanner.team/stops/H4co144a"], ["https://tec.openplanner.team/stops/H3go104a", "https://tec.openplanner.team/stops/H3lr116a"], ["https://tec.openplanner.team/stops/Lbhfaye1", "https://tec.openplanner.team/stops/Lbhfaye2"], ["https://tec.openplanner.team/stops/Bblaece2", "https://tec.openplanner.team/stops/Bblapri2"], ["https://tec.openplanner.team/stops/H1by108a", "https://tec.openplanner.team/stops/H1by108d"], ["https://tec.openplanner.team/stops/Baudstr1", "https://tec.openplanner.team/stops/Baudtri1"], ["https://tec.openplanner.team/stops/Llgdart2", "https://tec.openplanner.team/stops/Llgdart4"], ["https://tec.openplanner.team/stops/X757aic", "https://tec.openplanner.team/stops/X757aja"], ["https://tec.openplanner.team/stops/X922ahb", "https://tec.openplanner.team/stops/X923aaa"], ["https://tec.openplanner.team/stops/LLbbons1", "https://tec.openplanner.team/stops/LRcjard2"], ["https://tec.openplanner.team/stops/Bnetrbr2", "https://tec.openplanner.team/stops/Bnetrec1"], ["https://tec.openplanner.team/stops/LGlcarr1", "https://tec.openplanner.team/stops/LGlcarr2"], ["https://tec.openplanner.team/stops/X637akb", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/NL57aia", "https://tec.openplanner.team/stops/NL57aib"], ["https://tec.openplanner.team/stops/H4co144a", "https://tec.openplanner.team/stops/H4co158a"], ["https://tec.openplanner.team/stops/LJelava2", "https://tec.openplanner.team/stops/LMOstat2"], ["https://tec.openplanner.team/stops/Bmalsmc1", "https://tec.openplanner.team/stops/Bmalsme1"], ["https://tec.openplanner.team/stops/N347agb", "https://tec.openplanner.team/stops/X347aaa"], ["https://tec.openplanner.team/stops/LXomc--4", "https://tec.openplanner.team/stops/LXopier2"], ["https://tec.openplanner.team/stops/X695aea", "https://tec.openplanner.team/stops/X695aka"], ["https://tec.openplanner.team/stops/LLevaux2", "https://tec.openplanner.team/stops/X561aba"], ["https://tec.openplanner.team/stops/H4bc101a", "https://tec.openplanner.team/stops/H4tu170a"], ["https://tec.openplanner.team/stops/LjeGRPMA", "https://tec.openplanner.team/stops/Ljelamb1"], ["https://tec.openplanner.team/stops/Cjufrat2", "https://tec.openplanner.team/stops/Clogfay2"], ["https://tec.openplanner.team/stops/H5wo122a", "https://tec.openplanner.team/stops/H5wo133a"], ["https://tec.openplanner.team/stops/NB33aja", "https://tec.openplanner.team/stops/NB33ajb"], ["https://tec.openplanner.team/stops/Lcchala1", "https://tec.openplanner.team/stops/Lcchala2"], ["https://tec.openplanner.team/stops/Lemhenn2", "https://tec.openplanner.team/stops/Lemmusc2"], ["https://tec.openplanner.team/stops/X879abb", "https://tec.openplanner.team/stops/X879acb"], ["https://tec.openplanner.team/stops/LBSnouw1", "https://tec.openplanner.team/stops/LRGpt5-3"], ["https://tec.openplanner.team/stops/H1fr125b", "https://tec.openplanner.team/stops/H1lb138a"], ["https://tec.openplanner.team/stops/X601aba", "https://tec.openplanner.team/stops/X601aca"], ["https://tec.openplanner.team/stops/H4po125b", "https://tec.openplanner.team/stops/H4po128b"], ["https://tec.openplanner.team/stops/LSInd--2", "https://tec.openplanner.team/stops/LSIroch2"], ["https://tec.openplanner.team/stops/X817aba", "https://tec.openplanner.team/stops/X817abb"], ["https://tec.openplanner.team/stops/Cthathe1", "https://tec.openplanner.team/stops/Cthgend2"], ["https://tec.openplanner.team/stops/H1gr111a", "https://tec.openplanner.team/stops/H1hr117a"], ["https://tec.openplanner.team/stops/N150aca", "https://tec.openplanner.team/stops/N150aec"], ["https://tec.openplanner.team/stops/LWOcour2", "https://tec.openplanner.team/stops/LWOruis2"], ["https://tec.openplanner.team/stops/Cmlpche1", "https://tec.openplanner.team/stops/Cmltomb1"], ["https://tec.openplanner.team/stops/LSGcolo2", "https://tec.openplanner.team/stops/LSkathe2"], ["https://tec.openplanner.team/stops/X818aba", "https://tec.openplanner.team/stops/X818abb"], ["https://tec.openplanner.team/stops/Cmmami1", "https://tec.openplanner.team/stops/Cmmami2"], ["https://tec.openplanner.team/stops/NL80aab", "https://tec.openplanner.team/stops/NL80abb"], ["https://tec.openplanner.team/stops/NC14aub", "https://tec.openplanner.team/stops/NC14avb"], ["https://tec.openplanner.team/stops/N115aba", "https://tec.openplanner.team/stops/N115aca"], ["https://tec.openplanner.team/stops/X666aea", "https://tec.openplanner.team/stops/X666aga"], ["https://tec.openplanner.team/stops/LLTtour1", "https://tec.openplanner.team/stops/LLTtour2"], ["https://tec.openplanner.team/stops/Lpevove1", "https://tec.openplanner.team/stops/Lpevove2"], ["https://tec.openplanner.team/stops/Bnivmon1", "https://tec.openplanner.team/stops/Bnivmon2"], ["https://tec.openplanner.team/stops/Bhmmmon1", "https://tec.openplanner.team/stops/Bhmmpos1"], ["https://tec.openplanner.team/stops/LMgkrui2", "https://tec.openplanner.team/stops/LMgwith2"], ["https://tec.openplanner.team/stops/Lancoop1", "https://tec.openplanner.team/stops/Lanpast1"], ["https://tec.openplanner.team/stops/N501fwb", "https://tec.openplanner.team/stops/N501hhb"], ["https://tec.openplanner.team/stops/X640amb", "https://tec.openplanner.team/stops/X640ava"], ["https://tec.openplanner.team/stops/Lpegole1", "https://tec.openplanner.team/stops/Lpeptwa2"], ["https://tec.openplanner.team/stops/N501jdb", "https://tec.openplanner.team/stops/N501jeb"], ["https://tec.openplanner.team/stops/LOccarr1", "https://tec.openplanner.team/stops/NL35add"], ["https://tec.openplanner.team/stops/H1by103b", "https://tec.openplanner.team/stops/H1by108d"], ["https://tec.openplanner.team/stops/N217ada", "https://tec.openplanner.team/stops/N217aeb"], ["https://tec.openplanner.team/stops/H4ka175a", "https://tec.openplanner.team/stops/H4ob108b"], ["https://tec.openplanner.team/stops/H3go102a", "https://tec.openplanner.team/stops/H3go104b"], ["https://tec.openplanner.team/stops/X637ala", "https://tec.openplanner.team/stops/X637amb"], ["https://tec.openplanner.team/stops/X826ada", "https://tec.openplanner.team/stops/X826aea"], ["https://tec.openplanner.team/stops/LLYcalv2", "https://tec.openplanner.team/stops/LLYchpl2"], ["https://tec.openplanner.team/stops/Lvtauna2", "https://tec.openplanner.team/stops/Lvtpata2"], ["https://tec.openplanner.team/stops/LBTchai2", "https://tec.openplanner.team/stops/LBTchai4"], ["https://tec.openplanner.team/stops/X724adb", "https://tec.openplanner.team/stops/X724aib"], ["https://tec.openplanner.team/stops/H2gy101b", "https://tec.openplanner.team/stops/H2se105a"], ["https://tec.openplanner.team/stops/Ccoha601", "https://tec.openplanner.team/stops/Ctrepin1"], ["https://tec.openplanner.team/stops/H2jo163c", "https://tec.openplanner.team/stops/H2lh126b"], ["https://tec.openplanner.team/stops/Lcebail2", "https://tec.openplanner.team/stops/Lceleje2"], ["https://tec.openplanner.team/stops/N507aha", "https://tec.openplanner.team/stops/N507ahb"], ["https://tec.openplanner.team/stops/Lsebrun3", "https://tec.openplanner.team/stops/Lsepuit1"], ["https://tec.openplanner.team/stops/H1he100a", "https://tec.openplanner.team/stops/H1qv111b"], ["https://tec.openplanner.team/stops/H4ty273c", "https://tec.openplanner.team/stops/H4ty359a"], ["https://tec.openplanner.team/stops/H4ob108b", "https://tec.openplanner.team/stops/H4rc234a"], ["https://tec.openplanner.team/stops/LERboss1", "https://tec.openplanner.team/stops/LWberno2"], ["https://tec.openplanner.team/stops/N106aia", "https://tec.openplanner.team/stops/N106akb"], ["https://tec.openplanner.team/stops/X396aeb", "https://tec.openplanner.team/stops/X397aba"], ["https://tec.openplanner.team/stops/X754aca", "https://tec.openplanner.team/stops/X754acb"], ["https://tec.openplanner.team/stops/H1nm141b", "https://tec.openplanner.team/stops/H4gr111b"], ["https://tec.openplanner.team/stops/X736aca", "https://tec.openplanner.team/stops/X953aaa"], ["https://tec.openplanner.team/stops/Cmmp2051", "https://tec.openplanner.team/stops/Cmmptno2"], ["https://tec.openplanner.team/stops/X901aia", "https://tec.openplanner.team/stops/X901bga"], ["https://tec.openplanner.team/stops/Bcbqcha1", "https://tec.openplanner.team/stops/Bcbqcoi2"], ["https://tec.openplanner.team/stops/N542aab", "https://tec.openplanner.team/stops/N542acb"], ["https://tec.openplanner.team/stops/H2ll186b", "https://tec.openplanner.team/stops/H2ll198a"], ["https://tec.openplanner.team/stops/X899aia", "https://tec.openplanner.team/stops/X899aib"], ["https://tec.openplanner.team/stops/Lrafusi1", "https://tec.openplanner.team/stops/Lrafusi2"], ["https://tec.openplanner.team/stops/LeYheid1", "https://tec.openplanner.team/stops/LeYwess2"], ["https://tec.openplanner.team/stops/Cmlceri2", "https://tec.openplanner.team/stops/Cmmami1"], ["https://tec.openplanner.team/stops/Cbcegli3", "https://tec.openplanner.team/stops/Cbcha652"], ["https://tec.openplanner.team/stops/Ljhheus2", "https://tec.openplanner.team/stops/Ljhmany2"], ["https://tec.openplanner.team/stops/N527aaa", "https://tec.openplanner.team/stops/N533apa"], ["https://tec.openplanner.team/stops/N138afa", "https://tec.openplanner.team/stops/N138aga"], ["https://tec.openplanner.team/stops/Bsoihci2", "https://tec.openplanner.team/stops/H3so172a"], ["https://tec.openplanner.team/stops/N163aba", "https://tec.openplanner.team/stops/N569amb"], ["https://tec.openplanner.team/stops/X870ada", "https://tec.openplanner.team/stops/X880acb"], ["https://tec.openplanner.team/stops/X801bja", "https://tec.openplanner.team/stops/X801cgb"], ["https://tec.openplanner.team/stops/LDAcite2", "https://tec.openplanner.team/stops/LRIcite2"], ["https://tec.openplanner.team/stops/N103aaa", "https://tec.openplanner.team/stops/N152aac"], ["https://tec.openplanner.team/stops/LBsoha-1", "https://tec.openplanner.team/stops/NL73aea"], ["https://tec.openplanner.team/stops/N501irb", "https://tec.openplanner.team/stops/N501ixc"], ["https://tec.openplanner.team/stops/H4cw104a", "https://tec.openplanner.team/stops/H4cw105a"], ["https://tec.openplanner.team/stops/LNHbarr2", "https://tec.openplanner.team/stops/LNHhome2"], ["https://tec.openplanner.team/stops/N106aaa", "https://tec.openplanner.team/stops/N137aca"], ["https://tec.openplanner.team/stops/Lmleg--2", "https://tec.openplanner.team/stops/Lmlhaut1"], ["https://tec.openplanner.team/stops/Lsmeg--1", "https://tec.openplanner.team/stops/Lsmlina2"], ["https://tec.openplanner.team/stops/Cjurogi1", "https://tec.openplanner.team/stops/Cjurogi2"], ["https://tec.openplanner.team/stops/Cslbhau1", "https://tec.openplanner.team/stops/Cslegli1"], ["https://tec.openplanner.team/stops/X627ada", "https://tec.openplanner.team/stops/X630ada"], ["https://tec.openplanner.team/stops/Ljuchaf2", "https://tec.openplanner.team/stops/Ljuhava2"], ["https://tec.openplanner.team/stops/LWecarr1", "https://tec.openplanner.team/stops/LWevalf1"], ["https://tec.openplanner.team/stops/LFTec--2", "https://tec.openplanner.team/stops/LWZponh1"], ["https://tec.openplanner.team/stops/Btubmar2", "https://tec.openplanner.team/stops/Btubnco1"], ["https://tec.openplanner.team/stops/N553aab", "https://tec.openplanner.team/stops/N553aja"], ["https://tec.openplanner.team/stops/Bcbqcht1", "https://tec.openplanner.team/stops/Bcbqp252"], ["https://tec.openplanner.team/stops/N553aha", "https://tec.openplanner.team/stops/N553aqb"], ["https://tec.openplanner.team/stops/Bmrlsau1", "https://tec.openplanner.team/stops/NR21ahb"], ["https://tec.openplanner.team/stops/Llgphol1", "https://tec.openplanner.team/stops/Llgtcha1"], ["https://tec.openplanner.team/stops/Lsebove2", "https://tec.openplanner.team/stops/Lseecol1"], ["https://tec.openplanner.team/stops/X824aja", "https://tec.openplanner.team/stops/X824ala"], ["https://tec.openplanner.team/stops/Bhenron2", "https://tec.openplanner.team/stops/Bquecge2"], ["https://tec.openplanner.team/stops/LmDdenk1", "https://tec.openplanner.team/stops/LmDkape1"], ["https://tec.openplanner.team/stops/LLrchat1", "https://tec.openplanner.team/stops/LLrhaut3"], ["https://tec.openplanner.team/stops/Bjodtpo2", "https://tec.openplanner.team/stops/Bpiejus2"], ["https://tec.openplanner.team/stops/X601bra", "https://tec.openplanner.team/stops/X601bza"], ["https://tec.openplanner.team/stops/N547amb", "https://tec.openplanner.team/stops/N548aab"], ["https://tec.openplanner.team/stops/LRRecdu2", "https://tec.openplanner.team/stops/LRRlimi2"], ["https://tec.openplanner.team/stops/Barcast1", "https://tec.openplanner.team/stops/Bgzdn251"], ["https://tec.openplanner.team/stops/N533aga", "https://tec.openplanner.team/stops/N533aia"], ["https://tec.openplanner.team/stops/LREgrot1", "https://tec.openplanner.team/stops/LREgrot4"], ["https://tec.openplanner.team/stops/Cmmlong1", "https://tec.openplanner.team/stops/Cmmpjou3"], ["https://tec.openplanner.team/stops/Barchoc2", "https://tec.openplanner.team/stops/Bgzdgli1"], ["https://tec.openplanner.team/stops/N532aha", "https://tec.openplanner.team/stops/N532ahb"], ["https://tec.openplanner.team/stops/LCEboll1", "https://tec.openplanner.team/stops/LCEboll2"], ["https://tec.openplanner.team/stops/N331aca", "https://tec.openplanner.team/stops/N331acb"], ["https://tec.openplanner.team/stops/LrAtitf1", "https://tec.openplanner.team/stops/LrAtitf2"], ["https://tec.openplanner.team/stops/LRccent2", "https://tec.openplanner.team/stops/LRfcent1"], ["https://tec.openplanner.team/stops/LAyabri1", "https://tec.openplanner.team/stops/LAyegli2"], ["https://tec.openplanner.team/stops/X804aba", "https://tec.openplanner.team/stops/X804abb"], ["https://tec.openplanner.team/stops/LSIespe1", "https://tec.openplanner.team/stops/LSIespe2"], ["https://tec.openplanner.team/stops/Cmasncb1", "https://tec.openplanner.team/stops/Cmasncb2"], ["https://tec.openplanner.team/stops/Bwatras1", "https://tec.openplanner.team/stops/Bwatras2"], ["https://tec.openplanner.team/stops/Lprpous2", "https://tec.openplanner.team/stops/Lprtour1"], ["https://tec.openplanner.team/stops/X398agb", "https://tec.openplanner.team/stops/X999aub"], ["https://tec.openplanner.team/stops/N121aja", "https://tec.openplanner.team/stops/N121ajb"], ["https://tec.openplanner.team/stops/H4pp122a", "https://tec.openplanner.team/stops/H4ve134a"], ["https://tec.openplanner.team/stops/Bbonegl1", "https://tec.openplanner.team/stops/Bchgvil1"], ["https://tec.openplanner.team/stops/Crecouc1", "https://tec.openplanner.team/stops/Crefont1"], ["https://tec.openplanner.team/stops/H4an107a", "https://tec.openplanner.team/stops/H4ve140a"], ["https://tec.openplanner.team/stops/X717agd", "https://tec.openplanner.team/stops/X781ahb"], ["https://tec.openplanner.team/stops/X763aga", "https://tec.openplanner.team/stops/X763agb"], ["https://tec.openplanner.team/stops/H2mo143a", "https://tec.openplanner.team/stops/H2mo144a"], ["https://tec.openplanner.team/stops/H1ni320b", "https://tec.openplanner.team/stops/H1ni323a"], ["https://tec.openplanner.team/stops/H1cu114a", "https://tec.openplanner.team/stops/H1cu117b"], ["https://tec.openplanner.team/stops/Cmychpl2", "https://tec.openplanner.team/stops/Cmyland4"], ["https://tec.openplanner.team/stops/N556adb", "https://tec.openplanner.team/stops/N556afa"], ["https://tec.openplanner.team/stops/Clbchba2", "https://tec.openplanner.team/stops/Cthstre2"], ["https://tec.openplanner.team/stops/N533aea", "https://tec.openplanner.team/stops/N533aeb"], ["https://tec.openplanner.team/stops/X604aaa", "https://tec.openplanner.team/stops/X634aib"], ["https://tec.openplanner.team/stops/H4gu106b", "https://tec.openplanner.team/stops/H4gu107b"], ["https://tec.openplanner.team/stops/LNCchau1", "https://tec.openplanner.team/stops/LNCchau2"], ["https://tec.openplanner.team/stops/LWEeg--1", "https://tec.openplanner.team/stops/LWEpl--2"], ["https://tec.openplanner.team/stops/LFR201-1", "https://tec.openplanner.team/stops/LFR201-2"], ["https://tec.openplanner.team/stops/Blimegl1", "https://tec.openplanner.team/stops/Blimegl2"], ["https://tec.openplanner.team/stops/LJuhaie2", "https://tec.openplanner.team/stops/LMolone2"], ["https://tec.openplanner.team/stops/N988aca", "https://tec.openplanner.team/stops/X876aaa"], ["https://tec.openplanner.team/stops/Cwfdame1", "https://tec.openplanner.team/stops/Cwfmonu1"], ["https://tec.openplanner.team/stops/N353aaa", "https://tec.openplanner.team/stops/N353afb"], ["https://tec.openplanner.team/stops/H4ar101b", "https://tec.openplanner.team/stops/H4ar173b"], ["https://tec.openplanner.team/stops/LHCmonu2", "https://tec.openplanner.team/stops/LHMhof-1"], ["https://tec.openplanner.team/stops/X659afa", "https://tec.openplanner.team/stops/X659aga"], ["https://tec.openplanner.team/stops/LFChuis2", "https://tec.openplanner.team/stops/LFClage1"], ["https://tec.openplanner.team/stops/Clsferr1", "https://tec.openplanner.team/stops/Clshafa1"], ["https://tec.openplanner.team/stops/LRE154-2", "https://tec.openplanner.team/stops/LREhaut2"], ["https://tec.openplanner.team/stops/X801bia", "https://tec.openplanner.team/stops/X801bjb"], ["https://tec.openplanner.team/stops/N145aca", "https://tec.openplanner.team/stops/N145acb"], ["https://tec.openplanner.team/stops/LHEvign1", "https://tec.openplanner.team/stops/LJOferm1"], ["https://tec.openplanner.team/stops/Crbecol1", "https://tec.openplanner.team/stops/Crbegli1"], ["https://tec.openplanner.team/stops/X597aqa", "https://tec.openplanner.team/stops/X796afa"], ["https://tec.openplanner.team/stops/Bmarlor1", "https://tec.openplanner.team/stops/Bmartil1"], ["https://tec.openplanner.team/stops/N550amb", "https://tec.openplanner.team/stops/N565aab"], ["https://tec.openplanner.team/stops/LPbec--2", "https://tec.openplanner.team/stops/LPbeg--2"], ["https://tec.openplanner.team/stops/H4eh102b", "https://tec.openplanner.team/stops/H4wg121a"], ["https://tec.openplanner.team/stops/LkTdorf2", "https://tec.openplanner.team/stops/LkTkabi1"], ["https://tec.openplanner.team/stops/X663ata", "https://tec.openplanner.team/stops/X663aua"], ["https://tec.openplanner.team/stops/LOV62--1", "https://tec.openplanner.team/stops/LOVhetr2"], ["https://tec.openplanner.team/stops/LdElamb1", "https://tec.openplanner.team/stops/LmObahn*"], ["https://tec.openplanner.team/stops/H2pe157a", "https://tec.openplanner.team/stops/H2pe157b"], ["https://tec.openplanner.team/stops/H4mb138b", "https://tec.openplanner.team/stops/H4mb141a"], ["https://tec.openplanner.team/stops/N244axa", "https://tec.openplanner.team/stops/N252acd"], ["https://tec.openplanner.team/stops/LTRchpl2", "https://tec.openplanner.team/stops/LTRmosb1"], ["https://tec.openplanner.team/stops/N506awa", "https://tec.openplanner.team/stops/N506boa"], ["https://tec.openplanner.team/stops/LVIhv--2", "https://tec.openplanner.team/stops/LVIsouv3"], ["https://tec.openplanner.team/stops/LFPkape3", "https://tec.openplanner.team/stops/LFPknap2"], ["https://tec.openplanner.team/stops/X605abb", "https://tec.openplanner.team/stops/X605acb"], ["https://tec.openplanner.team/stops/Bhmmbog1", "https://tec.openplanner.team/stops/Btlgmee2"], ["https://tec.openplanner.team/stops/Cgzcver1", "https://tec.openplanner.team/stops/Cmygrbr3"], ["https://tec.openplanner.team/stops/LTamag1", "https://tec.openplanner.team/stops/LTamoul1"], ["https://tec.openplanner.team/stops/N211aka", "https://tec.openplanner.team/stops/N225aha"], ["https://tec.openplanner.team/stops/X979aea", "https://tec.openplanner.team/stops/X979aoa"], ["https://tec.openplanner.team/stops/N244apa", "https://tec.openplanner.team/stops/N244ata"], ["https://tec.openplanner.team/stops/N211adb", "https://tec.openplanner.team/stops/N211awb"], ["https://tec.openplanner.team/stops/LOMbrou1", "https://tec.openplanner.team/stops/LOMeg--1"], ["https://tec.openplanner.team/stops/Cmmramb2", "https://tec.openplanner.team/stops/Cmysncb1"], ["https://tec.openplanner.team/stops/LeSsaal*", "https://tec.openplanner.team/stops/LlEzoll1"], ["https://tec.openplanner.team/stops/N106aaa", "https://tec.openplanner.team/stops/N106aab"], ["https://tec.openplanner.team/stops/Cprcalv2", "https://tec.openplanner.team/stops/NC44aca"], ["https://tec.openplanner.team/stops/X806aba", "https://tec.openplanner.team/stops/X806abb"], ["https://tec.openplanner.team/stops/Bwatfon1", "https://tec.openplanner.team/stops/Bwatpct1"], ["https://tec.openplanner.team/stops/Bixleix1", "https://tec.openplanner.team/stops/Bixlfla1"], ["https://tec.openplanner.team/stops/Bbealou2", "https://tec.openplanner.team/stops/Bbeapim2"], ["https://tec.openplanner.team/stops/LLrc_ip4", "https://tec.openplanner.team/stops/LLrhest2"], ["https://tec.openplanner.team/stops/LWHtrui1", "https://tec.openplanner.team/stops/LWHwaas3"], ["https://tec.openplanner.team/stops/Clogfay1", "https://tec.openplanner.team/stops/Clojone1"], ["https://tec.openplanner.team/stops/Lbrddef3", "https://tec.openplanner.team/stops/Llggeer3"], ["https://tec.openplanner.team/stops/N548ahb", "https://tec.openplanner.team/stops/N548aia"], ["https://tec.openplanner.team/stops/H1mj127b", "https://tec.openplanner.team/stops/H1ml109a"], ["https://tec.openplanner.team/stops/LCPgare1", "https://tec.openplanner.team/stops/LCPpech5"], ["https://tec.openplanner.team/stops/Bmarcat2", "https://tec.openplanner.team/stops/Bmarfjo2"], ["https://tec.openplanner.team/stops/X923ana", "https://tec.openplanner.team/stops/X923aob"], ["https://tec.openplanner.team/stops/Lchsa631", "https://tec.openplanner.team/stops/Lrahoig1"], ["https://tec.openplanner.team/stops/H1em104a", "https://tec.openplanner.team/stops/H1em108a"], ["https://tec.openplanner.team/stops/Llgchar1", "https://tec.openplanner.team/stops/Llgpier2"], ["https://tec.openplanner.team/stops/LCFcarr1", "https://tec.openplanner.team/stops/LCFeg--2"], ["https://tec.openplanner.team/stops/Bwlhpmt2", "https://tec.openplanner.team/stops/Bwlhpmt4"], ["https://tec.openplanner.team/stops/Buccfja1", "https://tec.openplanner.team/stops/Buccrac2"], ["https://tec.openplanner.team/stops/N165aca", "https://tec.openplanner.team/stops/N166aca"], ["https://tec.openplanner.team/stops/X877abb", "https://tec.openplanner.team/stops/X877aha"], ["https://tec.openplanner.team/stops/LVIlore1", "https://tec.openplanner.team/stops/LVIsouv1"], ["https://tec.openplanner.team/stops/LLYchpl1", "https://tec.openplanner.team/stops/LTOcime1"], ["https://tec.openplanner.team/stops/LWahetr2", "https://tec.openplanner.team/stops/LWalyce2"], ["https://tec.openplanner.team/stops/H3so170b", "https://tec.openplanner.team/stops/H3so184b"], ["https://tec.openplanner.team/stops/LPLphar1", "https://tec.openplanner.team/stops/LPLphar2"], ["https://tec.openplanner.team/stops/H1el136a", "https://tec.openplanner.team/stops/H1hi124a"], ["https://tec.openplanner.team/stops/LTPplco1", "https://tec.openplanner.team/stops/LTPplco2"], ["https://tec.openplanner.team/stops/Bbrlmez1", "https://tec.openplanner.team/stops/Bbrlmez2"], ["https://tec.openplanner.team/stops/Brxmbos2", "https://tec.openplanner.team/stops/Brxmcha2"], ["https://tec.openplanner.team/stops/LjedTEC1", "https://tec.openplanner.team/stops/Lsetroq1"], ["https://tec.openplanner.team/stops/X640aea", "https://tec.openplanner.team/stops/X640aga"], ["https://tec.openplanner.team/stops/H1em101b", "https://tec.openplanner.team/stops/H1ev115a"], ["https://tec.openplanner.team/stops/Brixga11", "https://tec.openplanner.team/stops/Brixga12"], ["https://tec.openplanner.team/stops/X760aba", "https://tec.openplanner.team/stops/X760acb"], ["https://tec.openplanner.team/stops/Lchmarc1", "https://tec.openplanner.team/stops/Lchorme2"], ["https://tec.openplanner.team/stops/N568ada", "https://tec.openplanner.team/stops/N568aea"], ["https://tec.openplanner.team/stops/N534aeb", "https://tec.openplanner.team/stops/N534bpa"], ["https://tec.openplanner.team/stops/N340aea", "https://tec.openplanner.team/stops/N340agb"], ["https://tec.openplanner.team/stops/N155aja", "https://tec.openplanner.team/stops/N155ajb"], ["https://tec.openplanner.team/stops/LaMahof2", "https://tec.openplanner.team/stops/LmIcafe1"], ["https://tec.openplanner.team/stops/Cmohotv3", "https://tec.openplanner.team/stops/Cmorgof1"], ["https://tec.openplanner.team/stops/H1wg125b", "https://tec.openplanner.team/stops/H1wg126b"], ["https://tec.openplanner.team/stops/N251abb", "https://tec.openplanner.team/stops/N287aab"], ["https://tec.openplanner.team/stops/NC44aea", "https://tec.openplanner.team/stops/NC44afb"], ["https://tec.openplanner.team/stops/Bjdscnd2", "https://tec.openplanner.team/stops/Bjdsjso2"], ["https://tec.openplanner.team/stops/Lhracec2", "https://tec.openplanner.team/stops/Lhrespe1"], ["https://tec.openplanner.team/stops/Cci22ao1", "https://tec.openplanner.team/stops/Ccifies2"], ["https://tec.openplanner.team/stops/X721abb", "https://tec.openplanner.team/stops/X786aaa"], ["https://tec.openplanner.team/stops/Bmarcat1", "https://tec.openplanner.team/stops/N584ayb"], ["https://tec.openplanner.team/stops/N526aeb", "https://tec.openplanner.team/stops/N527aaa"], ["https://tec.openplanner.team/stops/Bmlncha1", "https://tec.openplanner.team/stops/Bmlnmbo2"], ["https://tec.openplanner.team/stops/Cchtiro3", "https://tec.openplanner.team/stops/CMtirou1"], ["https://tec.openplanner.team/stops/Cjxdesc1", "https://tec.openplanner.team/stops/Cjxetri1"], ["https://tec.openplanner.team/stops/LSZarbe1", "https://tec.openplanner.team/stops/LTgjalh1"], ["https://tec.openplanner.team/stops/N535acc", "https://tec.openplanner.team/stops/N535acd"], ["https://tec.openplanner.team/stops/H5at118a", "https://tec.openplanner.team/stops/H5at118b"], ["https://tec.openplanner.team/stops/LSG111-1", "https://tec.openplanner.team/stops/LSG172-1"], ["https://tec.openplanner.team/stops/Ldineuf2", "https://tec.openplanner.team/stops/Ldipiss2"], ["https://tec.openplanner.team/stops/LClbloc2", "https://tec.openplanner.team/stops/LThgare2"], ["https://tec.openplanner.team/stops/Cjudaxi2", "https://tec.openplanner.team/stops/Cjuphil2"], ["https://tec.openplanner.team/stops/LHApthe2", "https://tec.openplanner.team/stops/LHTboul1"], ["https://tec.openplanner.team/stops/LhMwing1", "https://tec.openplanner.team/stops/LhMwing2"], ["https://tec.openplanner.team/stops/H1he101a", "https://tec.openplanner.team/stops/H1he101b"], ["https://tec.openplanner.team/stops/X661aha", "https://tec.openplanner.team/stops/X661ahb"], ["https://tec.openplanner.team/stops/H1ba117b", "https://tec.openplanner.team/stops/H1te174a"], ["https://tec.openplanner.team/stops/Clb4dgi1", "https://tec.openplanner.team/stops/Clbecol2"], ["https://tec.openplanner.team/stops/LLrfagn1", "https://tec.openplanner.team/stops/LSMlier2"], ["https://tec.openplanner.team/stops/Bneeace2", "https://tec.openplanner.team/stops/Bneelaa2"], ["https://tec.openplanner.team/stops/Cfohopi2", "https://tec.openplanner.team/stops/Cfoperz1"], ["https://tec.openplanner.team/stops/N501mxb", "https://tec.openplanner.team/stops/N533aob"], ["https://tec.openplanner.team/stops/LOmvill1", "https://tec.openplanner.team/stops/LOmvill2"], ["https://tec.openplanner.team/stops/Bnstlna2", "https://tec.openplanner.team/stops/Bnstver1"], ["https://tec.openplanner.team/stops/LFIinse1", "https://tec.openplanner.team/stops/LFIinse2"], ["https://tec.openplanner.team/stops/N527adb", "https://tec.openplanner.team/stops/N527aea"], ["https://tec.openplanner.team/stops/X870acb", "https://tec.openplanner.team/stops/X870afb"], ["https://tec.openplanner.team/stops/Bwategb2", "https://tec.openplanner.team/stops/Bwatrte2"], ["https://tec.openplanner.team/stops/H1ag105b", "https://tec.openplanner.team/stops/H1ag106a"], ["https://tec.openplanner.team/stops/X925ama", "https://tec.openplanner.team/stops/X925amb"], ["https://tec.openplanner.team/stops/Lflmaxi3", "https://tec.openplanner.team/stops/Lflmaxi4"], ["https://tec.openplanner.team/stops/Cctecol1", "https://tec.openplanner.team/stops/Cctmine1"], ["https://tec.openplanner.team/stops/Cdasama2", "https://tec.openplanner.team/stops/CMsacm2"], ["https://tec.openplanner.team/stops/LHEches1", "https://tec.openplanner.team/stops/LHEecmo1"], ["https://tec.openplanner.team/stops/H2ll180b", "https://tec.openplanner.team/stops/H2ll192b"], ["https://tec.openplanner.team/stops/N534bxb", "https://tec.openplanner.team/stops/N561ada"], ["https://tec.openplanner.team/stops/X390apa", "https://tec.openplanner.team/stops/X992afb"], ["https://tec.openplanner.team/stops/Lmldama2", "https://tec.openplanner.team/stops/Lmlprie1"], ["https://tec.openplanner.team/stops/X757aga", "https://tec.openplanner.team/stops/X757alb"], ["https://tec.openplanner.team/stops/Blhunys2", "https://tec.openplanner.team/stops/Bohngen1"], ["https://tec.openplanner.team/stops/Cwfcast2", "https://tec.openplanner.team/stops/Cwfnamu2"], ["https://tec.openplanner.team/stops/Bhantui2", "https://tec.openplanner.team/stops/LBegare2"], ["https://tec.openplanner.team/stops/H4fa124a", "https://tec.openplanner.team/stops/H4fa127a"], ["https://tec.openplanner.team/stops/Cvllerm1", "https://tec.openplanner.team/stops/Cvlstan2"], ["https://tec.openplanner.team/stops/LSBsere1", "https://tec.openplanner.team/stops/LSBsere2"], ["https://tec.openplanner.team/stops/X812awa", "https://tec.openplanner.team/stops/X812aza"], ["https://tec.openplanner.team/stops/Bhptegl1", "https://tec.openplanner.team/stops/Bhptegl2"], ["https://tec.openplanner.team/stops/LbUmors1", "https://tec.openplanner.team/stops/LbUmors2"], ["https://tec.openplanner.team/stops/N501fsa", "https://tec.openplanner.team/stops/N501maa"], ["https://tec.openplanner.team/stops/Lreclou2", "https://tec.openplanner.team/stops/Lretill2"], ["https://tec.openplanner.team/stops/LBAbooz2", "https://tec.openplanner.team/stops/LBLtroi2"], ["https://tec.openplanner.team/stops/Cmamonu1", "https://tec.openplanner.team/stops/Cmychap4"], ["https://tec.openplanner.team/stops/LmYeich1", "https://tec.openplanner.team/stops/LvAschw2"], ["https://tec.openplanner.team/stops/Bnstgar2", "https://tec.openplanner.team/stops/Bnstmig2"], ["https://tec.openplanner.team/stops/Cmmcime2", "https://tec.openplanner.team/stops/Cmmmarb2"], ["https://tec.openplanner.team/stops/N229aea", "https://tec.openplanner.team/stops/N229ana"], ["https://tec.openplanner.team/stops/Bmrswag2", "https://tec.openplanner.team/stops/Bwatvco2"], ["https://tec.openplanner.team/stops/LAMcoll2", "https://tec.openplanner.team/stops/LAMpirk1"], ["https://tec.openplanner.team/stops/X723abb", "https://tec.openplanner.team/stops/X723ana"], ["https://tec.openplanner.team/stops/H4hu119b", "https://tec.openplanner.team/stops/H4hu122b"], ["https://tec.openplanner.team/stops/Bhalgar1", "https://tec.openplanner.team/stops/Bhalgar2"], ["https://tec.openplanner.team/stops/Cpiegli1", "https://tec.openplanner.team/stops/Cpipost1"], ["https://tec.openplanner.team/stops/H3bi104a", "https://tec.openplanner.team/stops/H3bi116b"], ["https://tec.openplanner.team/stops/Cjuquai2", "https://tec.openplanner.team/stops/Cjuvpla1"], ["https://tec.openplanner.team/stops/X902aia", "https://tec.openplanner.team/stops/X902aib"], ["https://tec.openplanner.team/stops/N501dza", "https://tec.openplanner.team/stops/N501eia"], ["https://tec.openplanner.team/stops/LSOvoie1", "https://tec.openplanner.team/stops/LSOvoie4"], ["https://tec.openplanner.team/stops/X670acb", "https://tec.openplanner.team/stops/X670adb"], ["https://tec.openplanner.team/stops/H1fa118b", "https://tec.openplanner.team/stops/H1pe132b"], ["https://tec.openplanner.team/stops/Bgoemgr2", "https://tec.openplanner.team/stops/Bneecha2"], ["https://tec.openplanner.team/stops/Lenabat2", "https://tec.openplanner.team/stops/Lenptsa2"], ["https://tec.openplanner.team/stops/X771abb", "https://tec.openplanner.team/stops/X773akb"], ["https://tec.openplanner.team/stops/N235afa", "https://tec.openplanner.team/stops/N235aga"], ["https://tec.openplanner.team/stops/X652acd", "https://tec.openplanner.team/stops/X652aea"], ["https://tec.openplanner.team/stops/Ccugail2", "https://tec.openplanner.team/stops/Ccutill1"], ["https://tec.openplanner.team/stops/Llgamer3", "https://tec.openplanner.team/stops/Llgmara1"], ["https://tec.openplanner.team/stops/H4oq225b", "https://tec.openplanner.team/stops/H4oq228a"], ["https://tec.openplanner.team/stops/LeUdepo1", "https://tec.openplanner.team/stops/LeUlasc2"], ["https://tec.openplanner.team/stops/Llgcong2", "https://tec.openplanner.team/stops/Llgcong3"], ["https://tec.openplanner.team/stops/Clvlove1", "https://tec.openplanner.team/stops/Cmlavch1"], ["https://tec.openplanner.team/stops/H2bh110a", "https://tec.openplanner.team/stops/H2bh118a"], ["https://tec.openplanner.team/stops/Ccunove2", "https://tec.openplanner.team/stops/Ccusole1"], ["https://tec.openplanner.team/stops/H2fa107b", "https://tec.openplanner.team/stops/H2fa108b"], ["https://tec.openplanner.team/stops/Ladclem1", "https://tec.openplanner.team/stops/Ladverv2"], ["https://tec.openplanner.team/stops/H4ty300a", "https://tec.openplanner.team/stops/H4ty329a"], ["https://tec.openplanner.team/stops/Lvchaus2", "https://tec.openplanner.team/stops/Lvchenn2"], ["https://tec.openplanner.team/stops/Lcacris1", "https://tec.openplanner.team/stops/Lcacris2"], ["https://tec.openplanner.team/stops/LBRgare1", "https://tec.openplanner.team/stops/LBRpier2"], ["https://tec.openplanner.team/stops/X923aab", "https://tec.openplanner.team/stops/X923akb"], ["https://tec.openplanner.team/stops/H1po130b", "https://tec.openplanner.team/stops/H1po139b"], ["https://tec.openplanner.team/stops/LSOcime2", "https://tec.openplanner.team/stops/LSOladr2"], ["https://tec.openplanner.team/stops/N501cpa", "https://tec.openplanner.team/stops/N501ctb"], ["https://tec.openplanner.team/stops/LWRchem1", "https://tec.openplanner.team/stops/LWRchem2"], ["https://tec.openplanner.team/stops/Lagorch1", "https://tec.openplanner.team/stops/Lagorch2"], ["https://tec.openplanner.team/stops/Cjuhame1", "https://tec.openplanner.team/stops/Crajasm1"], ["https://tec.openplanner.team/stops/Clihame2", "https://tec.openplanner.team/stops/Cmeptmi6"], ["https://tec.openplanner.team/stops/LTIdamr2", "https://tec.openplanner.team/stops/LTIpora1"], ["https://tec.openplanner.team/stops/LBdcarr1", "https://tec.openplanner.team/stops/LLg9---2"], ["https://tec.openplanner.team/stops/H1gi119a", "https://tec.openplanner.team/stops/H1gi119c"], ["https://tec.openplanner.team/stops/N576aca", "https://tec.openplanner.team/stops/N576ana"], ["https://tec.openplanner.team/stops/LmDhoch1", "https://tec.openplanner.team/stops/LmDhoch3"], ["https://tec.openplanner.team/stops/Cflbrun2", "https://tec.openplanner.team/stops/Cflchmo2"], ["https://tec.openplanner.team/stops/LOesour1", "https://tec.openplanner.team/stops/LOewaut1"], ["https://tec.openplanner.team/stops/H1gi118b", "https://tec.openplanner.team/stops/H1gi119b"], ["https://tec.openplanner.team/stops/LHDlibi2", "https://tec.openplanner.team/stops/LHDpota2"], ["https://tec.openplanner.team/stops/LREairp1", "https://tec.openplanner.team/stops/LREairp2"], ["https://tec.openplanner.team/stops/X801bdd", "https://tec.openplanner.team/stops/X801cka"], ["https://tec.openplanner.team/stops/X822aia", "https://tec.openplanner.team/stops/X822arb"], ["https://tec.openplanner.team/stops/N103ahb", "https://tec.openplanner.team/stops/N106agb"], ["https://tec.openplanner.team/stops/H1br132a", "https://tec.openplanner.team/stops/H1ev113b"], ["https://tec.openplanner.team/stops/N232brb", "https://tec.openplanner.team/stops/N232bsa"], ["https://tec.openplanner.team/stops/H5st163a", "https://tec.openplanner.team/stops/H5st166a"], ["https://tec.openplanner.team/stops/X890aaa", "https://tec.openplanner.team/stops/X890aab"], ["https://tec.openplanner.team/stops/X347ajb", "https://tec.openplanner.team/stops/X890adb"], ["https://tec.openplanner.team/stops/H1hl125b", "https://tec.openplanner.team/stops/H1hl127a"], ["https://tec.openplanner.team/stops/Bcseche2", "https://tec.openplanner.team/stops/Bsmgsuz1"], ["https://tec.openplanner.team/stops/N221abb", "https://tec.openplanner.team/stops/N221acb"], ["https://tec.openplanner.team/stops/Lfhhoul1", "https://tec.openplanner.team/stops/Lfhtrxc*"], ["https://tec.openplanner.team/stops/N525azb", "https://tec.openplanner.team/stops/N525baa"], ["https://tec.openplanner.team/stops/LCObouh1", "https://tec.openplanner.team/stops/LSNnoul1"], ["https://tec.openplanner.team/stops/X750bpb", "https://tec.openplanner.team/stops/X783adb"], ["https://tec.openplanner.team/stops/LROchap2", "https://tec.openplanner.team/stops/LSoprom1"], ["https://tec.openplanner.team/stops/N549aba", "https://tec.openplanner.team/stops/N578aca"], ["https://tec.openplanner.team/stops/Ccugrtr1", "https://tec.openplanner.team/stops/Ccunove2"], ["https://tec.openplanner.team/stops/N201ana", "https://tec.openplanner.team/stops/N201anb"], ["https://tec.openplanner.team/stops/LTgjalh1", "https://tec.openplanner.team/stops/LTgvill1"], ["https://tec.openplanner.team/stops/H1fr112b", "https://tec.openplanner.team/stops/H1ge115b"], ["https://tec.openplanner.team/stops/Cfcmass2", "https://tec.openplanner.team/stops/Crccarr1"], ["https://tec.openplanner.team/stops/Lseaven2", "https://tec.openplanner.team/stops/Lsecoll2"], ["https://tec.openplanner.team/stops/LBTcarr1", "https://tec.openplanner.team/stops/LBTnors1"], ["https://tec.openplanner.team/stops/N204aaa", "https://tec.openplanner.team/stops/N204abb"], ["https://tec.openplanner.team/stops/X993ada", "https://tec.openplanner.team/stops/X993aeb"], ["https://tec.openplanner.team/stops/N232bya", "https://tec.openplanner.team/stops/N232byb"], ["https://tec.openplanner.team/stops/H2ma265a", "https://tec.openplanner.team/stops/H2sb231c"], ["https://tec.openplanner.team/stops/LAieg--2", "https://tec.openplanner.team/stops/LAieg--3"], ["https://tec.openplanner.team/stops/LSypesy2", "https://tec.openplanner.team/stops/LSythie1"], ["https://tec.openplanner.team/stops/LhMmeil1", "https://tec.openplanner.team/stops/LhMwing1"], ["https://tec.openplanner.team/stops/N166abb", "https://tec.openplanner.team/stops/N166aeb"], ["https://tec.openplanner.team/stops/LHVgoro1", "https://tec.openplanner.team/stops/LHVgoro2"], ["https://tec.openplanner.team/stops/LSNchen3", "https://tec.openplanner.team/stops/LSNchen4"], ["https://tec.openplanner.team/stops/H4to139b", "https://tec.openplanner.team/stops/H4to139d"], ["https://tec.openplanner.team/stops/X746aga", "https://tec.openplanner.team/stops/X746agb"], ["https://tec.openplanner.team/stops/Ladneuv1", "https://tec.openplanner.team/stops/Lveinva2"], ["https://tec.openplanner.team/stops/Bllnmet1", "https://tec.openplanner.team/stops/Bllnrro1"], ["https://tec.openplanner.team/stops/Lhubarl1", "https://tec.openplanner.team/stops/LPoxhav1"], ["https://tec.openplanner.team/stops/N244atb", "https://tec.openplanner.team/stops/N244aub"], ["https://tec.openplanner.team/stops/X725aja", "https://tec.openplanner.team/stops/X725aob"], ["https://tec.openplanner.team/stops/Lthfagn2", "https://tec.openplanner.team/stops/LWahetr1"], ["https://tec.openplanner.team/stops/LSsmond1", "https://tec.openplanner.team/stops/N506bca"], ["https://tec.openplanner.team/stops/N270aba", "https://tec.openplanner.team/stops/N270abb"], ["https://tec.openplanner.team/stops/X316abb", "https://tec.openplanner.team/stops/X316acb"], ["https://tec.openplanner.team/stops/X354ahb", "https://tec.openplanner.team/stops/X858aha"], ["https://tec.openplanner.team/stops/LVAflat1", "https://tec.openplanner.team/stops/LVAgemm2"], ["https://tec.openplanner.team/stops/H2mo125b", "https://tec.openplanner.team/stops/H2mo131a"], ["https://tec.openplanner.team/stops/X615aka", "https://tec.openplanner.team/stops/X615bra"], ["https://tec.openplanner.team/stops/H4ca122a", "https://tec.openplanner.team/stops/H4ca122b"], ["https://tec.openplanner.team/stops/N501dca", "https://tec.openplanner.team/stops/N501mua"], ["https://tec.openplanner.team/stops/H1wa142b", "https://tec.openplanner.team/stops/H1wa164a"], ["https://tec.openplanner.team/stops/Cgxprad1", "https://tec.openplanner.team/stops/Cgxprad3"], ["https://tec.openplanner.team/stops/N547adb", "https://tec.openplanner.team/stops/N547aeb"], ["https://tec.openplanner.team/stops/LWHkerk1", "https://tec.openplanner.team/stops/LWHzave2"], ["https://tec.openplanner.team/stops/LLReg--2", "https://tec.openplanner.team/stops/LLRgdma1"], ["https://tec.openplanner.team/stops/X512aba", "https://tec.openplanner.team/stops/X512abb"], ["https://tec.openplanner.team/stops/Cmx4che1", "https://tec.openplanner.team/stops/Cmxpleg1"], ["https://tec.openplanner.team/stops/N232awa", "https://tec.openplanner.team/stops/N232awb"], ["https://tec.openplanner.team/stops/LrAknop1", "https://tec.openplanner.team/stops/LrAneud1"], ["https://tec.openplanner.team/stops/N538aaa", "https://tec.openplanner.team/stops/N538abb"], ["https://tec.openplanner.team/stops/Llgherm2", "https://tec.openplanner.team/stops/Llgthie1"], ["https://tec.openplanner.team/stops/Lagfour2", "https://tec.openplanner.team/stops/Lagkink2"], ["https://tec.openplanner.team/stops/N162aaa", "https://tec.openplanner.team/stops/N162abb"], ["https://tec.openplanner.team/stops/LFRhock3", "https://tec.openplanner.team/stops/LSZpiro2"], ["https://tec.openplanner.team/stops/H1hl123b", "https://tec.openplanner.team/stops/H1vs144a"], ["https://tec.openplanner.team/stops/LMisour1", "https://tec.openplanner.team/stops/LSTmeiz1"], ["https://tec.openplanner.team/stops/X661atb", "https://tec.openplanner.team/stops/X661aub"], ["https://tec.openplanner.team/stops/LsVmolk1", "https://tec.openplanner.team/stops/LwSschw2"], ["https://tec.openplanner.team/stops/Bniveco1", "https://tec.openplanner.team/stops/Bnivite2"], ["https://tec.openplanner.team/stops/X768aga", "https://tec.openplanner.team/stops/X768agb"], ["https://tec.openplanner.team/stops/H2pr115a", "https://tec.openplanner.team/stops/H3so187a"], ["https://tec.openplanner.team/stops/Bolgcsa2", "https://tec.openplanner.team/stops/Bolphgr2"], ["https://tec.openplanner.team/stops/LBUmara1", "https://tec.openplanner.team/stops/NL30aja"], ["https://tec.openplanner.team/stops/H4pp123a", "https://tec.openplanner.team/stops/H4qu230a"], ["https://tec.openplanner.team/stops/N501dzb", "https://tec.openplanner.team/stops/N501eia"], ["https://tec.openplanner.team/stops/H4ve136a", "https://tec.openplanner.team/stops/H4ve136b"], ["https://tec.openplanner.team/stops/Blascim1", "https://tec.openplanner.team/stops/Bohnr731"], ["https://tec.openplanner.team/stops/LAyfren2", "https://tec.openplanner.team/stops/Lflhott1"], ["https://tec.openplanner.team/stops/Cmiegli1", "https://tec.openplanner.team/stops/Cmitrie1"], ["https://tec.openplanner.team/stops/NC11aka", "https://tec.openplanner.team/stops/NC11ala"], ["https://tec.openplanner.team/stops/N576aaa", "https://tec.openplanner.team/stops/N576ama"], ["https://tec.openplanner.team/stops/Louairl2", "https://tec.openplanner.team/stops/Louazot1"], ["https://tec.openplanner.team/stops/X659add", "https://tec.openplanner.team/stops/X659aeb"], ["https://tec.openplanner.team/stops/X618ajb", "https://tec.openplanner.team/stops/X618apa"], ["https://tec.openplanner.team/stops/X615aaa", "https://tec.openplanner.team/stops/X615aea"], ["https://tec.openplanner.team/stops/N534btb", "https://tec.openplanner.team/stops/N534bub"], ["https://tec.openplanner.team/stops/LTPwann2", "https://tec.openplanner.team/stops/X542aga"], ["https://tec.openplanner.team/stops/H1hq124a", "https://tec.openplanner.team/stops/H1hq128a"], ["https://tec.openplanner.team/stops/Bcrnrpc1", "https://tec.openplanner.team/stops/Bcrnvic2"], ["https://tec.openplanner.team/stops/Lemjacq1", "https://tec.openplanner.team/stops/Lemsely1"], ["https://tec.openplanner.team/stops/N115afa", "https://tec.openplanner.team/stops/N170aga"], ["https://tec.openplanner.team/stops/LMsalen2", "https://tec.openplanner.team/stops/LMsheid2"], ["https://tec.openplanner.team/stops/N201alb", "https://tec.openplanner.team/stops/N211ala"], ["https://tec.openplanner.team/stops/Cdajume2", "https://tec.openplanner.team/stops/Cmarroy2"], ["https://tec.openplanner.team/stops/LPLfp2-2", "https://tec.openplanner.team/stops/LPLhout2"], ["https://tec.openplanner.team/stops/Lghgros1", "https://tec.openplanner.team/stops/Lghlogi2"], ["https://tec.openplanner.team/stops/X762aab", "https://tec.openplanner.team/stops/X763afa"], ["https://tec.openplanner.team/stops/H4po127a", "https://tec.openplanner.team/stops/H4po127b"], ["https://tec.openplanner.team/stops/Lhutran2", "https://tec.openplanner.team/stops/Lmnrame1"], ["https://tec.openplanner.team/stops/Bblagar2", "https://tec.openplanner.team/stops/Bblagard"], ["https://tec.openplanner.team/stops/LHUchin*", "https://tec.openplanner.team/stops/LHUpsar1"], ["https://tec.openplanner.team/stops/LVeeg--1", "https://tec.openplanner.team/stops/LVevill1"], ["https://tec.openplanner.team/stops/Bbaubru1", "https://tec.openplanner.team/stops/Bnivche2"], ["https://tec.openplanner.team/stops/N501ctb", "https://tec.openplanner.team/stops/N535apa"], ["https://tec.openplanner.team/stops/Bbrycar2", "https://tec.openplanner.team/stops/N584aza"], ["https://tec.openplanner.team/stops/Bnetegl3", "https://tec.openplanner.team/stops/Bnettou1"], ["https://tec.openplanner.team/stops/X633aeb", "https://tec.openplanner.team/stops/X633agc"], ["https://tec.openplanner.team/stops/LbRkirc2", "https://tec.openplanner.team/stops/LtHfrie1"], ["https://tec.openplanner.team/stops/H2na135a", "https://tec.openplanner.team/stops/H2na135b"], ["https://tec.openplanner.team/stops/X903aga", "https://tec.openplanner.team/stops/X943aaa"], ["https://tec.openplanner.team/stops/Bovetdo2", "https://tec.openplanner.team/stops/Bovetsa1"], ["https://tec.openplanner.team/stops/X390aia", "https://tec.openplanner.team/stops/X390aib"], ["https://tec.openplanner.team/stops/Lmobols2", "https://tec.openplanner.team/stops/Lmobras1"], ["https://tec.openplanner.team/stops/N513apa", "https://tec.openplanner.team/stops/N513apb"], ["https://tec.openplanner.team/stops/LMIbois1", "https://tec.openplanner.team/stops/LMIbois2"], ["https://tec.openplanner.team/stops/Bnivga22", "https://tec.openplanner.team/stops/Bnivga31"], ["https://tec.openplanner.team/stops/Lgrfass2", "https://tec.openplanner.team/stops/Lgrfrai1"], ["https://tec.openplanner.team/stops/X786aba", "https://tec.openplanner.team/stops/X786aeb"], ["https://tec.openplanner.team/stops/H5wo122b", "https://tec.openplanner.team/stops/H5wo126a"], ["https://tec.openplanner.team/stops/NH03aea", "https://tec.openplanner.team/stops/NH03aeb"], ["https://tec.openplanner.team/stops/Bglibui1", "https://tec.openplanner.team/stops/Bjcljau2"], ["https://tec.openplanner.team/stops/LJEloum2", "https://tec.openplanner.team/stops/LJEtige1"], ["https://tec.openplanner.team/stops/H1ci102b", "https://tec.openplanner.team/stops/H1hn209b"], ["https://tec.openplanner.team/stops/H4rk101a", "https://tec.openplanner.team/stops/H4rk101b"], ["https://tec.openplanner.team/stops/H1hc150a", "https://tec.openplanner.team/stops/H1hc150b"], ["https://tec.openplanner.team/stops/N513anb", "https://tec.openplanner.team/stops/N513aoa"], ["https://tec.openplanner.team/stops/Cmtstth1", "https://tec.openplanner.team/stops/Cmtstth2"], ["https://tec.openplanner.team/stops/Bmlncha2", "https://tec.openplanner.team/stops/Bmlnegl2"], ["https://tec.openplanner.team/stops/H4co151a", "https://tec.openplanner.team/stops/H4pl121a"], ["https://tec.openplanner.team/stops/N547ald", "https://tec.openplanner.team/stops/N547ana"], ["https://tec.openplanner.team/stops/Lagpn6-1", "https://tec.openplanner.team/stops/Lagpn6-2"], ["https://tec.openplanner.team/stops/Cbicamp1", "https://tec.openplanner.team/stops/Ctufleu4"], ["https://tec.openplanner.team/stops/Bove4ko1", "https://tec.openplanner.team/stops/Bovetdo1"], ["https://tec.openplanner.team/stops/H4bi156a", "https://tec.openplanner.team/stops/H4eg101d"], ["https://tec.openplanner.team/stops/Btilgar2", "https://tec.openplanner.team/stops/Bvlvmar1"], ["https://tec.openplanner.team/stops/X850ahb", "https://tec.openplanner.team/stops/X850anb"], ["https://tec.openplanner.team/stops/Bstmpla1", "https://tec.openplanner.team/stops/N561aha"], ["https://tec.openplanner.team/stops/LPLheid1", "https://tec.openplanner.team/stops/LPLstri1"], ["https://tec.openplanner.team/stops/X748aaa", "https://tec.openplanner.team/stops/X769aaa"], ["https://tec.openplanner.team/stops/N526acb", "https://tec.openplanner.team/stops/N527aaa"], ["https://tec.openplanner.team/stops/N209ahb", "https://tec.openplanner.team/stops/N209aid"], ["https://tec.openplanner.team/stops/X992ada", "https://tec.openplanner.team/stops/X992akb"], ["https://tec.openplanner.team/stops/LFPkast2", "https://tec.openplanner.team/stops/LFPknap2"], ["https://tec.openplanner.team/stops/H1fr119a", "https://tec.openplanner.team/stops/H1fr122a"], ["https://tec.openplanner.team/stops/X808ala", "https://tec.openplanner.team/stops/X808amb"], ["https://tec.openplanner.team/stops/LLbvith2", "https://tec.openplanner.team/stops/Lthgros1"], ["https://tec.openplanner.team/stops/N351ama", "https://tec.openplanner.team/stops/N351aua"], ["https://tec.openplanner.team/stops/LMastat4", "https://tec.openplanner.team/stops/LMawilh3"], ["https://tec.openplanner.team/stops/Cchheig1", "https://tec.openplanner.team/stops/Cchheig2"], ["https://tec.openplanner.team/stops/LESchpl1", "https://tec.openplanner.team/stops/LFNlato1"], ["https://tec.openplanner.team/stops/X822aaa", "https://tec.openplanner.team/stops/X822ada"], ["https://tec.openplanner.team/stops/H5rx143b", "https://tec.openplanner.team/stops/H5rx151a"], ["https://tec.openplanner.team/stops/Lhrabho1", "https://tec.openplanner.team/stops/Lhrcite1"], ["https://tec.openplanner.team/stops/X636aia", "https://tec.openplanner.team/stops/X636amb"], ["https://tec.openplanner.team/stops/Llgatel2", "https://tec.openplanner.team/stops/Llgcoro4"], ["https://tec.openplanner.team/stops/X937aib", "https://tec.openplanner.team/stops/X952aaa"], ["https://tec.openplanner.team/stops/LCUmonu1", "https://tec.openplanner.team/stops/LCUmora2"], ["https://tec.openplanner.team/stops/Lbbbuse1", "https://tec.openplanner.team/stops/Ljuvert1"], ["https://tec.openplanner.team/stops/N351ajc", "https://tec.openplanner.team/stops/N351axa"], ["https://tec.openplanner.team/stops/X804asa", "https://tec.openplanner.team/stops/X804bzb"], ["https://tec.openplanner.team/stops/H4ta117a", "https://tec.openplanner.team/stops/H4ta132b"], ["https://tec.openplanner.team/stops/Lemparc1", "https://tec.openplanner.team/stops/Lemparc2"], ["https://tec.openplanner.team/stops/LAYathe2", "https://tec.openplanner.team/stops/LAYcher1"], ["https://tec.openplanner.team/stops/H4gr111a", "https://tec.openplanner.team/stops/H4ld124a"], ["https://tec.openplanner.team/stops/H1fv100a", "https://tec.openplanner.team/stops/H1fv102a"], ["https://tec.openplanner.team/stops/LCocasc2", "https://tec.openplanner.team/stops/LCogara2"], ["https://tec.openplanner.team/stops/H4lu127a", "https://tec.openplanner.team/stops/H4mo193a"], ["https://tec.openplanner.team/stops/H1qv115a", "https://tec.openplanner.team/stops/H1qv115b"], ["https://tec.openplanner.team/stops/LrAbotz1", "https://tec.openplanner.team/stops/LrAmuhl2"], ["https://tec.openplanner.team/stops/N511ana", "https://tec.openplanner.team/stops/N511aoa"], ["https://tec.openplanner.team/stops/Cfbcal1", "https://tec.openplanner.team/stops/Cfcecol3"], ["https://tec.openplanner.team/stops/N501arb", "https://tec.openplanner.team/stops/N501arc"], ["https://tec.openplanner.team/stops/Bwatifr1", "https://tec.openplanner.team/stops/Bwatpas2"], ["https://tec.openplanner.team/stops/X651afa", "https://tec.openplanner.team/stops/X659adb"], ["https://tec.openplanner.team/stops/H1ho143c", "https://tec.openplanner.team/stops/H1sg148a"], ["https://tec.openplanner.team/stops/Cprbevu2", "https://tec.openplanner.team/stops/Cprcalv2"], ["https://tec.openplanner.team/stops/H2lc170a", "https://tec.openplanner.team/stops/H2lc170b"], ["https://tec.openplanner.team/stops/Lgdhall*", "https://tec.openplanner.team/stops/Lgdrena1"], ["https://tec.openplanner.team/stops/Bneeace1", "https://tec.openplanner.team/stops/Bneelaa1"], ["https://tec.openplanner.team/stops/N533acb", "https://tec.openplanner.team/stops/N533aea"], ["https://tec.openplanner.team/stops/Blthwav2", "https://tec.openplanner.team/stops/Bmlnegl3"], ["https://tec.openplanner.team/stops/N549aab", "https://tec.openplanner.team/stops/N549abb"], ["https://tec.openplanner.team/stops/X670aga", "https://tec.openplanner.team/stops/X670ahb"], ["https://tec.openplanner.team/stops/Bwatdco1", "https://tec.openplanner.team/stops/Bwatfia2"], ["https://tec.openplanner.team/stops/Lemambi2", "https://tec.openplanner.team/stops/Lemparc1"], ["https://tec.openplanner.team/stops/Bsomh672", "https://tec.openplanner.team/stops/Bsompri2"], ["https://tec.openplanner.team/stops/Lhrbass2", "https://tec.openplanner.team/stops/Lhrecol2"], ["https://tec.openplanner.team/stops/LHMbach4", "https://tec.openplanner.team/stops/LHMthys2"], ["https://tec.openplanner.team/stops/N512afb", "https://tec.openplanner.team/stops/N512axa"], ["https://tec.openplanner.team/stops/N232aoa", "https://tec.openplanner.team/stops/N232aob"], ["https://tec.openplanner.team/stops/X616aab", "https://tec.openplanner.team/stops/X695aaa"], ["https://tec.openplanner.team/stops/N311aeb", "https://tec.openplanner.team/stops/N311aec"], ["https://tec.openplanner.team/stops/H1bx108a", "https://tec.openplanner.team/stops/H1bx108b"], ["https://tec.openplanner.team/stops/H1bu142b", "https://tec.openplanner.team/stops/H2ep172b"], ["https://tec.openplanner.team/stops/N533aqa", "https://tec.openplanner.team/stops/N533aqd"], ["https://tec.openplanner.team/stops/LlAdorf1", "https://tec.openplanner.team/stops/LsBzent1"], ["https://tec.openplanner.team/stops/Bcbqrog2", "https://tec.openplanner.team/stops/Bitrpri1"], ["https://tec.openplanner.team/stops/H4ty358a", "https://tec.openplanner.team/stops/H4ty358b"], ["https://tec.openplanner.team/stops/Lbbremy2", "https://tec.openplanner.team/stops/Ljubord2"], ["https://tec.openplanner.team/stops/X715aab", "https://tec.openplanner.team/stops/X715adb"], ["https://tec.openplanner.team/stops/Cflspir1", "https://tec.openplanner.team/stops/Cflspir2"], ["https://tec.openplanner.team/stops/N511aea", "https://tec.openplanner.team/stops/N511agb"], ["https://tec.openplanner.team/stops/X664aga", "https://tec.openplanner.team/stops/X667aaa"], ["https://tec.openplanner.team/stops/H1hn205b", "https://tec.openplanner.team/stops/H1hn363b"], ["https://tec.openplanner.team/stops/X806adb", "https://tec.openplanner.team/stops/X872aaa"], ["https://tec.openplanner.team/stops/X650afe", "https://tec.openplanner.team/stops/X650aka"], ["https://tec.openplanner.team/stops/H1gh143a", "https://tec.openplanner.team/stops/H1gh143b"], ["https://tec.openplanner.team/stops/Cmmcarr2", "https://tec.openplanner.team/stops/Cmmplac1"], ["https://tec.openplanner.team/stops/NL76aea", "https://tec.openplanner.team/stops/NL76afb"], ["https://tec.openplanner.team/stops/X614bba", "https://tec.openplanner.team/stops/X614bca"], ["https://tec.openplanner.team/stops/Bcsgcou2", "https://tec.openplanner.team/stops/Blascvi2"], ["https://tec.openplanner.team/stops/Bnivbpe1", "https://tec.openplanner.team/stops/Bnivbpe3"], ["https://tec.openplanner.team/stops/X804bja", "https://tec.openplanner.team/stops/X804bwb"], ["https://tec.openplanner.team/stops/N562asb", "https://tec.openplanner.team/stops/N562bma"], ["https://tec.openplanner.team/stops/LLOnand1", "https://tec.openplanner.team/stops/LLOnand2"], ["https://tec.openplanner.team/stops/H1pa118b", "https://tec.openplanner.team/stops/H1pa166a"], ["https://tec.openplanner.team/stops/Csuptou1", "https://tec.openplanner.team/stops/Csytouq2"], ["https://tec.openplanner.team/stops/H4an104a", "https://tec.openplanner.team/stops/H4an112b"], ["https://tec.openplanner.team/stops/LPRcasi1", "https://tec.openplanner.team/stops/LTRcite1"], ["https://tec.openplanner.team/stops/N383aaa", "https://tec.openplanner.team/stops/N988acb"], ["https://tec.openplanner.team/stops/X992aha", "https://tec.openplanner.team/stops/X993aja"], ["https://tec.openplanner.team/stops/LWbcarr2", "https://tec.openplanner.team/stops/LWblesp2"], ["https://tec.openplanner.team/stops/LHMcruc2", "https://tec.openplanner.team/stops/LHMpatl1"], ["https://tec.openplanner.team/stops/LPRfour2", "https://tec.openplanner.team/stops/LSHfief2"], ["https://tec.openplanner.team/stops/X746ahb", "https://tec.openplanner.team/stops/X746ajb"], ["https://tec.openplanner.team/stops/H1as102a", "https://tec.openplanner.team/stops/H1as102b"], ["https://tec.openplanner.team/stops/LBY4che1", "https://tec.openplanner.team/stops/Lgdec--1"], ["https://tec.openplanner.team/stops/H5rx106b", "https://tec.openplanner.team/stops/H5rx130b"], ["https://tec.openplanner.team/stops/N501cea", "https://tec.openplanner.team/stops/N501mpa"], ["https://tec.openplanner.team/stops/LLmeg--1", "https://tec.openplanner.team/stops/LLmeg--2"], ["https://tec.openplanner.team/stops/Llglefe1", "https://tec.openplanner.team/stops/Llgwesp1"], ["https://tec.openplanner.team/stops/Cctbois1", "https://tec.openplanner.team/stops/Cctbois3"], ["https://tec.openplanner.team/stops/H2go120a", "https://tec.openplanner.team/stops/H2se115a"], ["https://tec.openplanner.team/stops/X657abb", "https://tec.openplanner.team/stops/X657aja"], ["https://tec.openplanner.team/stops/X717aca", "https://tec.openplanner.team/stops/X782aeb"], ["https://tec.openplanner.team/stops/LMfeg--1", "https://tec.openplanner.team/stops/LMfeg--2"], ["https://tec.openplanner.team/stops/NL80apa", "https://tec.openplanner.team/stops/NL80aua"], ["https://tec.openplanner.team/stops/Ccupays1", "https://tec.openplanner.team/stops/Ccupays2"], ["https://tec.openplanner.team/stops/N501lia", "https://tec.openplanner.team/stops/N501lib"], ["https://tec.openplanner.team/stops/Lalmakr1", "https://tec.openplanner.team/stops/Lanothe1"], ["https://tec.openplanner.team/stops/H2pe162a", "https://tec.openplanner.team/stops/H2pe162c"], ["https://tec.openplanner.team/stops/H2le149b", "https://tec.openplanner.team/stops/H2ml113a"], ["https://tec.openplanner.team/stops/Cfacamp4", "https://tec.openplanner.team/stops/Cfarcam1"], ["https://tec.openplanner.team/stops/X359aba", "https://tec.openplanner.team/stops/X359aca"], ["https://tec.openplanner.team/stops/N232aea", "https://tec.openplanner.team/stops/N232aeb"], ["https://tec.openplanner.team/stops/H4lp124a", "https://tec.openplanner.team/stops/H4pe125a"], ["https://tec.openplanner.team/stops/X730ada", "https://tec.openplanner.team/stops/X730adb"], ["https://tec.openplanner.team/stops/X948aba", "https://tec.openplanner.team/stops/X948aqa"], ["https://tec.openplanner.team/stops/Bnivace1", "https://tec.openplanner.team/stops/Bnivcma2"], ["https://tec.openplanner.team/stops/LSkyern1", "https://tec.openplanner.team/stops/LSkyern2"], ["https://tec.openplanner.team/stops/N308ana", "https://tec.openplanner.team/stops/N308aoa"], ["https://tec.openplanner.team/stops/N349aeb", "https://tec.openplanner.team/stops/N351aqa"], ["https://tec.openplanner.team/stops/X801chb", "https://tec.openplanner.team/stops/X836aeb"], ["https://tec.openplanner.team/stops/X754asa", "https://tec.openplanner.team/stops/X754asb"], ["https://tec.openplanner.team/stops/X638afa", "https://tec.openplanner.team/stops/X638aoa"], ["https://tec.openplanner.team/stops/Cgocolo2", "https://tec.openplanner.team/stops/Cgosmoi2"], ["https://tec.openplanner.team/stops/H4ka185a", "https://tec.openplanner.team/stops/H4ru236b"], ["https://tec.openplanner.team/stops/LBLfoxh1", "https://tec.openplanner.team/stops/LBLgobc2"], ["https://tec.openplanner.team/stops/X730aba", "https://tec.openplanner.team/stops/X730abb"], ["https://tec.openplanner.team/stops/Cchcase3", "https://tec.openplanner.team/stops/Cchhopi1"], ["https://tec.openplanner.team/stops/LTPhenr1", "https://tec.openplanner.team/stops/LTPpisc1"], ["https://tec.openplanner.team/stops/N117asb", "https://tec.openplanner.team/stops/N117ata"], ["https://tec.openplanner.team/stops/LToluik1", "https://tec.openplanner.team/stops/LToluik2"], ["https://tec.openplanner.team/stops/LBSchar2", "https://tec.openplanner.team/stops/LBSpail3"], ["https://tec.openplanner.team/stops/N208aaa", "https://tec.openplanner.team/stops/N209alb"], ["https://tec.openplanner.team/stops/H1ms253a", "https://tec.openplanner.team/stops/H1ms911a"], ["https://tec.openplanner.team/stops/NR21aaa", "https://tec.openplanner.team/stops/NR21aab"], ["https://tec.openplanner.team/stops/Blhutco2", "https://tec.openplanner.team/stops/Blhutco3"], ["https://tec.openplanner.team/stops/LNEgare*", "https://tec.openplanner.team/stops/LNEolne2"], ["https://tec.openplanner.team/stops/Lsmnico1", "https://tec.openplanner.team/stops/Lsmrwan2"], ["https://tec.openplanner.team/stops/Cchabat1", "https://tec.openplanner.team/stops/Cchalou2"], ["https://tec.openplanner.team/stops/X654aka", "https://tec.openplanner.team/stops/X654ala"], ["https://tec.openplanner.team/stops/LHuetat2", "https://tec.openplanner.team/stops/LHuherm2"], ["https://tec.openplanner.team/stops/Lmlmaqu1", "https://tec.openplanner.team/stops/Lmlmaqu4"], ["https://tec.openplanner.team/stops/LNOpt--2", "https://tec.openplanner.team/stops/LREheyd1"], ["https://tec.openplanner.team/stops/Brsgges2", "https://tec.openplanner.team/stops/Brsgpbo2"], ["https://tec.openplanner.team/stops/NL76aaa", "https://tec.openplanner.team/stops/NL76aab"], ["https://tec.openplanner.team/stops/Crsapol2", "https://tec.openplanner.team/stops/Crswaut1"], ["https://tec.openplanner.team/stops/LMYmont1", "https://tec.openplanner.team/stops/X796aba"], ["https://tec.openplanner.team/stops/N357aea", "https://tec.openplanner.team/stops/X989aeb"], ["https://tec.openplanner.team/stops/Cctmari2", "https://tec.openplanner.team/stops/NC11ahb"], ["https://tec.openplanner.team/stops/X650aab", "https://tec.openplanner.team/stops/X650aob"], ["https://tec.openplanner.team/stops/H4wc372a", "https://tec.openplanner.team/stops/H4wc374b"], ["https://tec.openplanner.team/stops/X659aea", "https://tec.openplanner.team/stops/X659ata"], ["https://tec.openplanner.team/stops/H4eg108a", "https://tec.openplanner.team/stops/H4ln130b"], ["https://tec.openplanner.team/stops/Bgntcom1", "https://tec.openplanner.team/stops/Bmelsab2"], ["https://tec.openplanner.team/stops/X661alb", "https://tec.openplanner.team/stops/X661awa"], ["https://tec.openplanner.team/stops/H4oq226c", "https://tec.openplanner.team/stops/H4oq409b"], ["https://tec.openplanner.team/stops/X394aea", "https://tec.openplanner.team/stops/X394afb"], ["https://tec.openplanner.team/stops/Bmrspel1", "https://tec.openplanner.team/stops/Bmrswag1"], ["https://tec.openplanner.team/stops/Ccunvus1", "https://tec.openplanner.team/stops/Ccuoise1"], ["https://tec.openplanner.team/stops/H1mr126a", "https://tec.openplanner.team/stops/H1on129b"], ["https://tec.openplanner.team/stops/N584bna", "https://tec.openplanner.team/stops/N584bnb"], ["https://tec.openplanner.team/stops/N501lpb", "https://tec.openplanner.team/stops/N501lqb"], ["https://tec.openplanner.team/stops/X743aea", "https://tec.openplanner.team/stops/X743afa"], ["https://tec.openplanner.team/stops/Lsechev1", "https://tec.openplanner.team/stops/Lsechev2"], ["https://tec.openplanner.team/stops/LPLcroi1", "https://tec.openplanner.team/stops/LPLcroi2"], ["https://tec.openplanner.team/stops/LAmarbo1", "https://tec.openplanner.team/stops/LAmarbo2"], ["https://tec.openplanner.team/stops/N547ama", "https://tec.openplanner.team/stops/N554adb"], ["https://tec.openplanner.team/stops/LMEcour2", "https://tec.openplanner.team/stops/LMEense1"], ["https://tec.openplanner.team/stops/N579aca", "https://tec.openplanner.team/stops/N579ada"], ["https://tec.openplanner.team/stops/X661aba", "https://tec.openplanner.team/stops/X839aca"], ["https://tec.openplanner.team/stops/H1me114a", "https://tec.openplanner.team/stops/H1me116a"], ["https://tec.openplanner.team/stops/LXocomb2", "https://tec.openplanner.team/stops/LXoeg--3"], ["https://tec.openplanner.team/stops/Ccyga1", "https://tec.openplanner.team/stops/NH01acb"], ["https://tec.openplanner.team/stops/LVEmoul1", "https://tec.openplanner.team/stops/LVEmoul2"], ["https://tec.openplanner.team/stops/N501ela", "https://tec.openplanner.team/stops/N501gea"], ["https://tec.openplanner.team/stops/LHceg--1", "https://tec.openplanner.team/stops/LSxeg--2"], ["https://tec.openplanner.team/stops/N501esb", "https://tec.openplanner.team/stops/N501ney"], ["https://tec.openplanner.team/stops/X817aba", "https://tec.openplanner.team/stops/X817aeb"], ["https://tec.openplanner.team/stops/H4bv146a", "https://tec.openplanner.team/stops/H4bv146b"], ["https://tec.openplanner.team/stops/Ccu6bra3", "https://tec.openplanner.team/stops/Ccu6bra5"], ["https://tec.openplanner.team/stops/LSGcarr2", "https://tec.openplanner.team/stops/LYegeor1"], ["https://tec.openplanner.team/stops/X602aab", "https://tec.openplanner.team/stops/X633aab"], ["https://tec.openplanner.team/stops/LlOkreu2", "https://tec.openplanner.team/stops/LsTgren2"], ["https://tec.openplanner.team/stops/Llgcadr6", "https://tec.openplanner.team/stops/Llghoch4"], ["https://tec.openplanner.team/stops/X609aha", "https://tec.openplanner.team/stops/X609ahb"], ["https://tec.openplanner.team/stops/X615awa", "https://tec.openplanner.team/stops/X615axa"], ["https://tec.openplanner.team/stops/LStgare*", "https://tec.openplanner.team/stops/NL80aaa"], ["https://tec.openplanner.team/stops/Bbsifmo2", "https://tec.openplanner.team/stops/Bhtipir2"], ["https://tec.openplanner.team/stops/X761abb", "https://tec.openplanner.team/stops/X761ada"], ["https://tec.openplanner.team/stops/X953ada", "https://tec.openplanner.team/stops/X953adb"], ["https://tec.openplanner.team/stops/X371aea", "https://tec.openplanner.team/stops/X371aeb"], ["https://tec.openplanner.team/stops/X663aaa", "https://tec.openplanner.team/stops/X663aac"], ["https://tec.openplanner.team/stops/H1og130a", "https://tec.openplanner.team/stops/H1og133b"], ["https://tec.openplanner.team/stops/N501hma", "https://tec.openplanner.team/stops/N501hob"], ["https://tec.openplanner.team/stops/N509beb", "https://tec.openplanner.team/stops/N509bfa"], ["https://tec.openplanner.team/stops/Lbrboul2", "https://tec.openplanner.team/stops/Lbrlama1"], ["https://tec.openplanner.team/stops/Lcefoxh1", "https://tec.openplanner.team/stops/Lcehipp1"], ["https://tec.openplanner.team/stops/H2ha132a", "https://tec.openplanner.team/stops/H2ha134b"], ["https://tec.openplanner.team/stops/N225aba", "https://tec.openplanner.team/stops/N225aca"], ["https://tec.openplanner.team/stops/LCx728-1", "https://tec.openplanner.team/stops/LCxhall1"], ["https://tec.openplanner.team/stops/H1cu115b", "https://tec.openplanner.team/stops/H1je360a"], ["https://tec.openplanner.team/stops/X611aba", "https://tec.openplanner.team/stops/X643abb"], ["https://tec.openplanner.team/stops/LBVplan2", "https://tec.openplanner.team/stops/LLscent2"], ["https://tec.openplanner.team/stops/Cflcent1", "https://tec.openplanner.team/stops/Cflstan1"], ["https://tec.openplanner.team/stops/N301abc", "https://tec.openplanner.team/stops/N301apb"], ["https://tec.openplanner.team/stops/LOChuy-1", "https://tec.openplanner.team/stops/X261aab"], ["https://tec.openplanner.team/stops/LAVstat1", "https://tec.openplanner.team/stops/LAVstat2"], ["https://tec.openplanner.team/stops/Cobobjo2", "https://tec.openplanner.team/stops/Cpcplac2"], ["https://tec.openplanner.team/stops/Lsmecol2", "https://tec.openplanner.team/stops/Lsmrcim2"], ["https://tec.openplanner.team/stops/Lrecite1", "https://tec.openplanner.team/stops/Lrecomp1"], ["https://tec.openplanner.team/stops/Cacscav1", "https://tec.openplanner.team/stops/NC24agb"], ["https://tec.openplanner.team/stops/X390aha", "https://tec.openplanner.team/stops/X390ajb"], ["https://tec.openplanner.team/stops/X782aja", "https://tec.openplanner.team/stops/X782ajb"], ["https://tec.openplanner.team/stops/N532aea", "https://tec.openplanner.team/stops/N532ana"], ["https://tec.openplanner.team/stops/N530aab", "https://tec.openplanner.team/stops/N530ada"], ["https://tec.openplanner.team/stops/Cgy3011", "https://tec.openplanner.team/stops/Cmtfoye2"], ["https://tec.openplanner.team/stops/LGogare1", "https://tec.openplanner.team/stops/Lpebeco1"], ["https://tec.openplanner.team/stops/N203aab", "https://tec.openplanner.team/stops/N203abb"], ["https://tec.openplanner.team/stops/LHUec--1", "https://tec.openplanner.team/stops/LHUomni2"], ["https://tec.openplanner.team/stops/X601daa", "https://tec.openplanner.team/stops/X601dda"], ["https://tec.openplanner.team/stops/LLTcoop2", "https://tec.openplanner.team/stops/LLTgole1"], ["https://tec.openplanner.team/stops/LSOchau2", "https://tec.openplanner.team/stops/LSOdow%C3%A92"], ["https://tec.openplanner.team/stops/H4la197a", "https://tec.openplanner.team/stops/H4ma200b"], ["https://tec.openplanner.team/stops/Caindsa2", "https://tec.openplanner.team/stops/Caircen2"], ["https://tec.openplanner.team/stops/Bgoemho2", "https://tec.openplanner.team/stops/Bneesjo1"], ["https://tec.openplanner.team/stops/H4ty307a", "https://tec.openplanner.team/stops/H4ty344b"], ["https://tec.openplanner.team/stops/Blaneli2", "https://tec.openplanner.team/stops/Blanove1"], ["https://tec.openplanner.team/stops/LPRbayb2", "https://tec.openplanner.team/stops/LTRchpl1"], ["https://tec.openplanner.team/stops/Lhuleke1", "https://tec.openplanner.team/stops/Lhutill1"], ["https://tec.openplanner.team/stops/Bbcopre2", "https://tec.openplanner.team/stops/Brebrha2"], ["https://tec.openplanner.team/stops/N301afa", "https://tec.openplanner.team/stops/N301ajb"], ["https://tec.openplanner.team/stops/H1ma231b", "https://tec.openplanner.team/stops/H1ni315b"], ["https://tec.openplanner.team/stops/Lsefori1", "https://tec.openplanner.team/stops/Lseptsa2"], ["https://tec.openplanner.team/stops/X812beb", "https://tec.openplanner.team/stops/X813ada"], ["https://tec.openplanner.team/stops/H4wa148b", "https://tec.openplanner.team/stops/H4wa156b"], ["https://tec.openplanner.team/stops/LCLgend1", "https://tec.openplanner.team/stops/LTestat1"], ["https://tec.openplanner.team/stops/LNAmart1", "https://tec.openplanner.team/stops/LNAplac1"], ["https://tec.openplanner.team/stops/Ljuchap1", "https://tec.openplanner.team/stops/Ljuchap3"], ["https://tec.openplanner.team/stops/H4do105b", "https://tec.openplanner.team/stops/H4do203a"], ["https://tec.openplanner.team/stops/X639aba", "https://tec.openplanner.team/stops/X639abb"], ["https://tec.openplanner.team/stops/Cchmonu3", "https://tec.openplanner.team/stops/Cchvhau2"], ["https://tec.openplanner.team/stops/LNEbois1", "https://tec.openplanner.team/stops/LNEcite1"], ["https://tec.openplanner.team/stops/LBBmc--1", "https://tec.openplanner.team/stops/LBBpech1"], ["https://tec.openplanner.team/stops/Cvp3til2", "https://tec.openplanner.team/stops/Cvp3til5"], ["https://tec.openplanner.team/stops/LRAcouv2", "https://tec.openplanner.team/stops/LRarami2"], ["https://tec.openplanner.team/stops/H4ea131a", "https://tec.openplanner.team/stops/H4wr173b"], ["https://tec.openplanner.team/stops/X941aaa", "https://tec.openplanner.team/stops/X948aob"], ["https://tec.openplanner.team/stops/H1mk111a", "https://tec.openplanner.team/stops/H1mk111b"], ["https://tec.openplanner.team/stops/Bcsebea3", "https://tec.openplanner.team/stops/Bvilvil4"], ["https://tec.openplanner.team/stops/X601bba", "https://tec.openplanner.team/stops/X601bea"], ["https://tec.openplanner.team/stops/Lsmnico2", "https://tec.openplanner.team/stops/Lsmtini2"], ["https://tec.openplanner.team/stops/H4ta118b", "https://tec.openplanner.team/stops/H4wu377b"], ["https://tec.openplanner.team/stops/LhGfl241", "https://tec.openplanner.team/stops/LhGknip1"], ["https://tec.openplanner.team/stops/Cgofert2", "https://tec.openplanner.team/stops/Cvvgrsa1"], ["https://tec.openplanner.team/stops/Bnvmfba1", "https://tec.openplanner.team/stops/Bnvmfba2"], ["https://tec.openplanner.team/stops/Crs74em4", "https://tec.openplanner.team/stops/Crseuro2"], ["https://tec.openplanner.team/stops/H4ef162b", "https://tec.openplanner.team/stops/H4ef165c"], ["https://tec.openplanner.team/stops/X948aob", "https://tec.openplanner.team/stops/X948ata"], ["https://tec.openplanner.team/stops/Bhalpar3", "https://tec.openplanner.team/stops/Bhalsro2"], ["https://tec.openplanner.team/stops/X604afa", "https://tec.openplanner.team/stops/X604afc"], ["https://tec.openplanner.team/stops/N501gaa", "https://tec.openplanner.team/stops/N501gra"], ["https://tec.openplanner.team/stops/Ccotemp2", "https://tec.openplanner.team/stops/Crowilb2"], ["https://tec.openplanner.team/stops/X601bob", "https://tec.openplanner.team/stops/X601bva"], ["https://tec.openplanner.team/stops/N565aib", "https://tec.openplanner.team/stops/N565ajb"], ["https://tec.openplanner.team/stops/Ctybaco1", "https://tec.openplanner.team/stops/Ctyhame1"], ["https://tec.openplanner.team/stops/N368abb", "https://tec.openplanner.team/stops/N368aca"], ["https://tec.openplanner.team/stops/H2fa105a", "https://tec.openplanner.team/stops/H2fa109b"], ["https://tec.openplanner.team/stops/Lbhmc--2", "https://tec.openplanner.team/stops/Ljupiet1"], ["https://tec.openplanner.team/stops/X222adc", "https://tec.openplanner.team/stops/X919ajb"], ["https://tec.openplanner.team/stops/N536aca", "https://tec.openplanner.team/stops/N536aga"], ["https://tec.openplanner.team/stops/LOnec--1", "https://tec.openplanner.team/stops/LXocomb1"], ["https://tec.openplanner.team/stops/N234aab", "https://tec.openplanner.team/stops/N243acb"], ["https://tec.openplanner.team/stops/H1bu137b", "https://tec.openplanner.team/stops/H2ep144a"], ["https://tec.openplanner.team/stops/N547ajb", "https://tec.openplanner.team/stops/N573apb"], ["https://tec.openplanner.team/stops/N118apa", "https://tec.openplanner.team/stops/N118bab"], ["https://tec.openplanner.team/stops/H1cu111a", "https://tec.openplanner.team/stops/H1cu111b"], ["https://tec.openplanner.team/stops/Bmoucoq2", "https://tec.openplanner.team/stops/Bottcpl2"], ["https://tec.openplanner.team/stops/LAYgare1", "https://tec.openplanner.team/stops/LAYwerb1"], ["https://tec.openplanner.team/stops/X608aaa", "https://tec.openplanner.team/stops/X608ala"], ["https://tec.openplanner.team/stops/Bchadpt1", "https://tec.openplanner.team/stops/Bcrnnca1"], ["https://tec.openplanner.team/stops/N501aeb", "https://tec.openplanner.team/stops/N501afb"], ["https://tec.openplanner.team/stops/Lwaelme2", "https://tec.openplanner.team/stops/Lwagare1"], ["https://tec.openplanner.team/stops/H4eg105b", "https://tec.openplanner.team/stops/H4pq120b"], ["https://tec.openplanner.team/stops/LBivi--1", "https://tec.openplanner.team/stops/LWEbr051"], ["https://tec.openplanner.team/stops/H1qu100a", "https://tec.openplanner.team/stops/H1qu116a"], ["https://tec.openplanner.team/stops/X662aia", "https://tec.openplanner.team/stops/X662anb"], ["https://tec.openplanner.team/stops/N209acb", "https://tec.openplanner.team/stops/N209aea"], ["https://tec.openplanner.team/stops/X750axb", "https://tec.openplanner.team/stops/X750bia"], ["https://tec.openplanner.team/stops/LESchat2", "https://tec.openplanner.team/stops/LTIptme2"], ["https://tec.openplanner.team/stops/X617aib", "https://tec.openplanner.team/stops/X618ajb"], ["https://tec.openplanner.team/stops/X614bra", "https://tec.openplanner.team/stops/X615ara"], ["https://tec.openplanner.team/stops/LBglign1", "https://tec.openplanner.team/stops/Lthgros1"], ["https://tec.openplanner.team/stops/Lghalli1", "https://tec.openplanner.team/stops/Lloross2"], ["https://tec.openplanner.team/stops/LCUgale1", "https://tec.openplanner.team/stops/LCUjonc2"], ["https://tec.openplanner.team/stops/Bgnvoha4", "https://tec.openplanner.team/stops/Bgnvoha6"], ["https://tec.openplanner.team/stops/Lcewilm1", "https://tec.openplanner.team/stops/Lcewilm2"], ["https://tec.openplanner.team/stops/LTecent2", "https://tec.openplanner.team/stops/LTecent3"], ["https://tec.openplanner.team/stops/H3lr113a", "https://tec.openplanner.team/stops/H3lr121a"], ["https://tec.openplanner.team/stops/LsVgore2", "https://tec.openplanner.team/stops/LsVmolk1"], ["https://tec.openplanner.team/stops/N569aaa", "https://tec.openplanner.team/stops/N569adb"], ["https://tec.openplanner.team/stops/LBOec--1", "https://tec.openplanner.team/stops/LDAchau1"], ["https://tec.openplanner.team/stops/X804bya", "https://tec.openplanner.team/stops/X804byb"], ["https://tec.openplanner.team/stops/Bcbqhai1", "https://tec.openplanner.team/stops/Bcbqrog1"], ["https://tec.openplanner.team/stops/Brebgpl1", "https://tec.openplanner.team/stops/Brebvic1"], ["https://tec.openplanner.team/stops/Cfvplac1", "https://tec.openplanner.team/stops/H1fv100a"], ["https://tec.openplanner.team/stops/LGEbern1", "https://tec.openplanner.team/stops/LGEhosp1"], ["https://tec.openplanner.team/stops/X636anb", "https://tec.openplanner.team/stops/X636aqd"], ["https://tec.openplanner.team/stops/H4br111a", "https://tec.openplanner.team/stops/H4br111b"], ["https://tec.openplanner.team/stops/X901aea", "https://tec.openplanner.team/stops/X901boa"], ["https://tec.openplanner.team/stops/X721aba", "https://tec.openplanner.team/stops/X763aib"], ["https://tec.openplanner.team/stops/Bnvmfba2", "https://tec.openplanner.team/stops/N518aaa"], ["https://tec.openplanner.team/stops/H4ty264a", "https://tec.openplanner.team/stops/H4ty298a"], ["https://tec.openplanner.team/stops/X871ada", "https://tec.openplanner.team/stops/X877aia"], ["https://tec.openplanner.team/stops/H1ho147a", "https://tec.openplanner.team/stops/H1wg127a"], ["https://tec.openplanner.team/stops/H5pe132a", "https://tec.openplanner.team/stops/H5pe142a"], ["https://tec.openplanner.team/stops/H1ht131b", "https://tec.openplanner.team/stops/H1ht136a"], ["https://tec.openplanner.team/stops/Cbfgare1", "https://tec.openplanner.team/stops/Cbfpoti1"], ["https://tec.openplanner.team/stops/LFFmagr1", "https://tec.openplanner.team/stops/LFFruel1"], ["https://tec.openplanner.team/stops/X307aab", "https://tec.openplanner.team/stops/X317aba"], ["https://tec.openplanner.team/stops/N501dnb", "https://tec.openplanner.team/stops/N501eha"], ["https://tec.openplanner.team/stops/Ljeblum2", "https://tec.openplanner.team/stops/Ljerobi2"], ["https://tec.openplanner.team/stops/Lprcard2", "https://tec.openplanner.team/stops/Lprferm2"], ["https://tec.openplanner.team/stops/LDLheid2", "https://tec.openplanner.team/stops/LGMhadr1"], ["https://tec.openplanner.team/stops/N540agb", "https://tec.openplanner.team/stops/N540aib"], ["https://tec.openplanner.team/stops/LBhsign1", "https://tec.openplanner.team/stops/LLycent*"], ["https://tec.openplanner.team/stops/LDOviad1", "https://tec.openplanner.team/stops/LHVetoi1"], ["https://tec.openplanner.team/stops/N524aha", "https://tec.openplanner.team/stops/N524akb"], ["https://tec.openplanner.team/stops/Cbfbies2", "https://tec.openplanner.team/stops/Cctvill2"], ["https://tec.openplanner.team/stops/X685aca", "https://tec.openplanner.team/stops/X685apa"], ["https://tec.openplanner.team/stops/LVvboma2", "https://tec.openplanner.team/stops/X982aha"], ["https://tec.openplanner.team/stops/H1ob331b", "https://tec.openplanner.team/stops/H1ob361a"], ["https://tec.openplanner.team/stops/Bucccal4", "https://tec.openplanner.team/stops/Buccdch2"], ["https://tec.openplanner.team/stops/N134acb", "https://tec.openplanner.team/stops/N135aza"], ["https://tec.openplanner.team/stops/H5el112c", "https://tec.openplanner.team/stops/H5el117b"], ["https://tec.openplanner.team/stops/H4ml208b", "https://tec.openplanner.team/stops/H4ml209b"], ["https://tec.openplanner.team/stops/H4ft134a", "https://tec.openplanner.team/stops/H4ft134b"], ["https://tec.openplanner.team/stops/LLVcent1", "https://tec.openplanner.team/stops/LLVeg--1"], ["https://tec.openplanner.team/stops/Cpclibe3", "https://tec.openplanner.team/stops/Cvvpotv1"], ["https://tec.openplanner.team/stops/X901asb", "https://tec.openplanner.team/stops/X943aba"], ["https://tec.openplanner.team/stops/N343aib", "https://tec.openplanner.team/stops/N343aja"], ["https://tec.openplanner.team/stops/X637aka", "https://tec.openplanner.team/stops/X637akb"], ["https://tec.openplanner.team/stops/LAUcent1", "https://tec.openplanner.team/stops/LAUneuv3"], ["https://tec.openplanner.team/stops/Lsebrun2", "https://tec.openplanner.team/stops/Lseruis1"], ["https://tec.openplanner.team/stops/Btubga02", "https://tec.openplanner.team/stops/Btubga06"], ["https://tec.openplanner.team/stops/Bhenhau1", "https://tec.openplanner.team/stops/Bhenhau2"], ["https://tec.openplanner.team/stops/N558amb", "https://tec.openplanner.team/stops/N558amc"], ["https://tec.openplanner.team/stops/LCRrape1", "https://tec.openplanner.team/stops/LCRrape2"], ["https://tec.openplanner.team/stops/H2na134a", "https://tec.openplanner.team/stops/H2na136a"], ["https://tec.openplanner.team/stops/Bixllep1", "https://tec.openplanner.team/stops/Bixlpat2"], ["https://tec.openplanner.team/stops/LHrchat2", "https://tec.openplanner.team/stops/LHrrard1"], ["https://tec.openplanner.team/stops/LFPchat1", "https://tec.openplanner.team/stops/LFPstro2"], ["https://tec.openplanner.team/stops/H4ef109b", "https://tec.openplanner.team/stops/H4ef138b"], ["https://tec.openplanner.team/stops/LVIferm2", "https://tec.openplanner.team/stops/LVItroi*"], ["https://tec.openplanner.team/stops/X903adb", "https://tec.openplanner.team/stops/X992ajb"], ["https://tec.openplanner.team/stops/Cvtchap1", "https://tec.openplanner.team/stops/Cvtchap2"], ["https://tec.openplanner.team/stops/Bdonlat1", "https://tec.openplanner.team/stops/Bjdsbro1"], ["https://tec.openplanner.team/stops/X601aea", "https://tec.openplanner.team/stops/X601arb"], ["https://tec.openplanner.team/stops/H1bs110b", "https://tec.openplanner.team/stops/H1sb144b"], ["https://tec.openplanner.team/stops/Bsamc7d2", "https://tec.openplanner.team/stops/Bsampli1"], ["https://tec.openplanner.team/stops/N551aha", "https://tec.openplanner.team/stops/N568adb"], ["https://tec.openplanner.team/stops/H2le149b", "https://tec.openplanner.team/stops/H2le153b"], ["https://tec.openplanner.team/stops/X808aib", "https://tec.openplanner.team/stops/X850ala"], ["https://tec.openplanner.team/stops/X837aja", "https://tec.openplanner.team/stops/X837ajb"], ["https://tec.openplanner.team/stops/X602apb", "https://tec.openplanner.team/stops/X602asa"], ["https://tec.openplanner.team/stops/Cmymoha1", "https://tec.openplanner.team/stops/Cmymoha2"], ["https://tec.openplanner.team/stops/Blankal4", "https://tec.openplanner.team/stops/Blanraa2"], ["https://tec.openplanner.team/stops/Bglarha1", "https://tec.openplanner.team/stops/Cgnquer2"], ["https://tec.openplanner.team/stops/Cjubert2", "https://tec.openplanner.team/stops/Cjuepee2"], ["https://tec.openplanner.team/stops/Lhrlalo3", "https://tec.openplanner.team/stops/Lhrlalo4"], ["https://tec.openplanner.team/stops/Bucceng1", "https://tec.openplanner.team/stops/Bucceng2"], ["https://tec.openplanner.team/stops/NB33akb", "https://tec.openplanner.team/stops/NB59akb"], ["https://tec.openplanner.team/stops/LPoewer1", "https://tec.openplanner.team/stops/LPoxhav2"], ["https://tec.openplanner.team/stops/X818aga", "https://tec.openplanner.team/stops/X818agb"], ["https://tec.openplanner.team/stops/N243aab", "https://tec.openplanner.team/stops/N243aeb"], ["https://tec.openplanner.team/stops/Ckevela2", "https://tec.openplanner.team/stops/Ctaprai3"], ["https://tec.openplanner.team/stops/Llgphol1", "https://tec.openplanner.team/stops/Llgphol2"], ["https://tec.openplanner.team/stops/LCShoux1", "https://tec.openplanner.team/stops/LCShoux2"], ["https://tec.openplanner.team/stops/Buccfja1", "https://tec.openplanner.team/stops/Buccplj2"], ["https://tec.openplanner.team/stops/N501ejd", "https://tec.openplanner.team/stops/N501klb"], ["https://tec.openplanner.team/stops/H1gh153b", "https://tec.openplanner.team/stops/H1gh154b"], ["https://tec.openplanner.team/stops/Lanstat1", "https://tec.openplanner.team/stops/Lanstat2"], ["https://tec.openplanner.team/stops/X358abb", "https://tec.openplanner.team/stops/X358afa"], ["https://tec.openplanner.team/stops/N501gta", "https://tec.openplanner.team/stops/N501hhb"], ["https://tec.openplanner.team/stops/X850aba", "https://tec.openplanner.team/stops/X850aca"], ["https://tec.openplanner.team/stops/Cmaegli1", "https://tec.openplanner.team/stops/Cmapeet1"], ["https://tec.openplanner.team/stops/Bplncba1", "https://tec.openplanner.team/stops/Bplncba2"], ["https://tec.openplanner.team/stops/X659aya", "https://tec.openplanner.team/stops/X669aea"], ["https://tec.openplanner.team/stops/Lagcler2", "https://tec.openplanner.team/stops/Lagstre1"], ["https://tec.openplanner.team/stops/X786acb", "https://tec.openplanner.team/stops/X789aga"], ["https://tec.openplanner.team/stops/LPTeg--1", "https://tec.openplanner.team/stops/LPTeg--2"], ["https://tec.openplanner.team/stops/H1mj126b", "https://tec.openplanner.team/stops/H1ml110a"], ["https://tec.openplanner.team/stops/H1bu141b", "https://tec.openplanner.team/stops/H2ep172b"], ["https://tec.openplanner.team/stops/N201aea", "https://tec.openplanner.team/stops/N201aia"], ["https://tec.openplanner.team/stops/H1er109a", "https://tec.openplanner.team/stops/H1er110b"], ["https://tec.openplanner.team/stops/LmYwall2", "https://tec.openplanner.team/stops/LsVmolk2"], ["https://tec.openplanner.team/stops/Bblaang1", "https://tec.openplanner.team/stops/Bblaang2"], ["https://tec.openplanner.team/stops/Crspair2", "https://tec.openplanner.team/stops/Crspana3"], ["https://tec.openplanner.team/stops/LLRgdma1", "https://tec.openplanner.team/stops/LTGsucr1"], ["https://tec.openplanner.team/stops/H1hm177b", "https://tec.openplanner.team/stops/H1ss348a"], ["https://tec.openplanner.team/stops/H2ll172b", "https://tec.openplanner.team/stops/H2ll196a"], ["https://tec.openplanner.team/stops/LHScite2", "https://tec.openplanner.team/stops/LHSfexh2"], ["https://tec.openplanner.team/stops/X717afb", "https://tec.openplanner.team/stops/X718afa"], ["https://tec.openplanner.team/stops/N548acc", "https://tec.openplanner.team/stops/N548acd"], ["https://tec.openplanner.team/stops/Cbcegli6", "https://tec.openplanner.team/stops/Clfpomm2"], ["https://tec.openplanner.team/stops/X782alb", "https://tec.openplanner.team/stops/X782ama"], ["https://tec.openplanner.team/stops/H1te184b", "https://tec.openplanner.team/stops/H1te190b"], ["https://tec.openplanner.team/stops/H4ma411b", "https://tec.openplanner.team/stops/H4ma417a"], ["https://tec.openplanner.team/stops/H2hg150b", "https://tec.openplanner.team/stops/H2hg154e"], ["https://tec.openplanner.team/stops/Lchorme1", "https://tec.openplanner.team/stops/LSReg--1"], ["https://tec.openplanner.team/stops/LORlieg1", "https://tec.openplanner.team/stops/LORmont1"], ["https://tec.openplanner.team/stops/H1ba117a", "https://tec.openplanner.team/stops/H1ba117b"], ["https://tec.openplanner.team/stops/Lhubarl2", "https://tec.openplanner.team/stops/Lhufila1"], ["https://tec.openplanner.team/stops/H2mo127d", "https://tec.openplanner.team/stops/H2mo143a"], ["https://tec.openplanner.team/stops/H4he102b", "https://tec.openplanner.team/stops/H4pq114a"], ["https://tec.openplanner.team/stops/N155afc", "https://tec.openplanner.team/stops/N160aga"], ["https://tec.openplanner.team/stops/X640aca", "https://tec.openplanner.team/stops/X640aga"], ["https://tec.openplanner.team/stops/Ltiegl-*", "https://tec.openplanner.team/stops/Ltiegli3"], ["https://tec.openplanner.team/stops/X943adb", "https://tec.openplanner.team/stops/X943afb"], ["https://tec.openplanner.team/stops/Bovesog2", "https://tec.openplanner.team/stops/Bovevri1"], ["https://tec.openplanner.team/stops/Cfaecmo1", "https://tec.openplanner.team/stops/Cfaecmo2"], ["https://tec.openplanner.team/stops/H2bh118a", "https://tec.openplanner.team/stops/H2bh118b"], ["https://tec.openplanner.team/stops/LhIfrie1", "https://tec.openplanner.team/stops/LrDneun2"], ["https://tec.openplanner.team/stops/H5qu140a", "https://tec.openplanner.team/stops/H5qu158a"], ["https://tec.openplanner.team/stops/Louense2", "https://tec.openplanner.team/stops/Lougare2"], ["https://tec.openplanner.team/stops/H1ca105a", "https://tec.openplanner.team/stops/H1ma237b"], ["https://tec.openplanner.team/stops/X616aeb", "https://tec.openplanner.team/stops/X624aea"], ["https://tec.openplanner.team/stops/N536afa", "https://tec.openplanner.team/stops/N580aga"], ["https://tec.openplanner.team/stops/Cmgarsi1", "https://tec.openplanner.team/stops/Cmgarsi2"], ["https://tec.openplanner.team/stops/LMAfali2", "https://tec.openplanner.team/stops/LMAwavr2"], ["https://tec.openplanner.team/stops/Btubmon2", "https://tec.openplanner.team/stops/Btubsca1"], ["https://tec.openplanner.team/stops/LMNpt--1", "https://tec.openplanner.team/stops/LMsheid1"], ["https://tec.openplanner.team/stops/H4fr385a", "https://tec.openplanner.team/stops/H4fr394a"], ["https://tec.openplanner.team/stops/Ccupdes3", "https://tec.openplanner.team/stops/Ccupomp1"], ["https://tec.openplanner.team/stops/X840aab", "https://tec.openplanner.team/stops/X840acd"], ["https://tec.openplanner.team/stops/X808aaa", "https://tec.openplanner.team/stops/X808aea"], ["https://tec.openplanner.team/stops/X640afb", "https://tec.openplanner.team/stops/X640aga"], ["https://tec.openplanner.team/stops/N538akb", "https://tec.openplanner.team/stops/N538asa"], ["https://tec.openplanner.team/stops/Cmqbert1", "https://tec.openplanner.team/stops/Cmqcend2"], ["https://tec.openplanner.team/stops/N576akb", "https://tec.openplanner.team/stops/N576akd"], ["https://tec.openplanner.team/stops/LTRcarr1", "https://tec.openplanner.team/stops/LTRchpl2"], ["https://tec.openplanner.team/stops/X750afb", "https://tec.openplanner.team/stops/X750bgb"], ["https://tec.openplanner.team/stops/Bmsaegl1", "https://tec.openplanner.team/stops/NB33afb"], ["https://tec.openplanner.team/stops/H4fr139b", "https://tec.openplanner.team/stops/H4oq223b"], ["https://tec.openplanner.team/stops/H1le127b", "https://tec.openplanner.team/stops/H1le130b"], ["https://tec.openplanner.team/stops/X992acb", "https://tec.openplanner.team/stops/X992aia"], ["https://tec.openplanner.team/stops/LeUkehr2", "https://tec.openplanner.team/stops/LeUkehr3"], ["https://tec.openplanner.team/stops/X993acb", "https://tec.openplanner.team/stops/X994ala"], ["https://tec.openplanner.team/stops/H1ci106a", "https://tec.openplanner.team/stops/H1no140a"], ["https://tec.openplanner.team/stops/LOV62--2", "https://tec.openplanner.team/stops/LRObarr1"], ["https://tec.openplanner.team/stops/N425aab", "https://tec.openplanner.team/stops/N425agb"], ["https://tec.openplanner.team/stops/Ljelexh1", "https://tec.openplanner.team/stops/Ljestat3"], ["https://tec.openplanner.team/stops/Clbchba1", "https://tec.openplanner.team/stops/Cthpano2"], ["https://tec.openplanner.team/stops/Lhrmemo1", "https://tec.openplanner.team/stops/Lhrspi-1"], ["https://tec.openplanner.team/stops/H4wi164b", "https://tec.openplanner.team/stops/H4wi168a"], ["https://tec.openplanner.team/stops/Lagstre1", "https://tec.openplanner.team/stops/Lemlami2"], ["https://tec.openplanner.team/stops/H1ms296a", "https://tec.openplanner.team/stops/H1ms301a"], ["https://tec.openplanner.team/stops/H2pe162b", "https://tec.openplanner.team/stops/H3bi118b"], ["https://tec.openplanner.team/stops/X943abb", "https://tec.openplanner.team/stops/X943aca"], ["https://tec.openplanner.team/stops/X652aaa", "https://tec.openplanner.team/stops/X652abb"], ["https://tec.openplanner.team/stops/LeYraaf1", "https://tec.openplanner.team/stops/LrAalte1"], ["https://tec.openplanner.team/stops/H5rx110a", "https://tec.openplanner.team/stops/H5rx128a"], ["https://tec.openplanner.team/stops/N501aga", "https://tec.openplanner.team/stops/N501agb"], ["https://tec.openplanner.team/stops/H4ga157a", "https://tec.openplanner.team/stops/H4ga160a"], ["https://tec.openplanner.team/stops/Bbgncnd1", "https://tec.openplanner.team/stops/Bbgnvel1"], ["https://tec.openplanner.team/stops/Llgbour2", "https://tec.openplanner.team/stops/Llgcmes4"], ["https://tec.openplanner.team/stops/H2ll179a", "https://tec.openplanner.team/stops/H2sv216a"], ["https://tec.openplanner.team/stops/N311abb", "https://tec.openplanner.team/stops/N368acb"], ["https://tec.openplanner.team/stops/N506anb", "https://tec.openplanner.team/stops/N506apb"], ["https://tec.openplanner.team/stops/LENindu2", "https://tec.openplanner.team/stops/LENsent1"], ["https://tec.openplanner.team/stops/X993aha", "https://tec.openplanner.team/stops/X993aia"], ["https://tec.openplanner.team/stops/Bbchm382", "https://tec.openplanner.team/stops/Bbchndb1"], ["https://tec.openplanner.team/stops/N534arb", "https://tec.openplanner.team/stops/N534bfa"], ["https://tec.openplanner.team/stops/X615ara", "https://tec.openplanner.team/stops/X615arb"], ["https://tec.openplanner.team/stops/Bbounci1", "https://tec.openplanner.team/stops/Bcerpco2"], ["https://tec.openplanner.team/stops/N232cba", "https://tec.openplanner.team/stops/N232cbb"], ["https://tec.openplanner.team/stops/X666aga", "https://tec.openplanner.team/stops/X666ama"], ["https://tec.openplanner.team/stops/H5qu141a", "https://tec.openplanner.team/stops/H5qu141b"], ["https://tec.openplanner.team/stops/Lrccomm2", "https://tec.openplanner.team/stops/Lrchype2"], ["https://tec.openplanner.team/stops/H1hm173b", "https://tec.openplanner.team/stops/H1ss351a"], ["https://tec.openplanner.team/stops/LTPec--1", "https://tec.openplanner.team/stops/LTPplco1"], ["https://tec.openplanner.team/stops/Ljulieg2", "https://tec.openplanner.team/stops/Llgatel1"], ["https://tec.openplanner.team/stops/N501hka", "https://tec.openplanner.team/stops/N501lra"], ["https://tec.openplanner.team/stops/N118afb", "https://tec.openplanner.team/stops/N118aha"], ["https://tec.openplanner.team/stops/N501lja", "https://tec.openplanner.team/stops/N501llb"], ["https://tec.openplanner.team/stops/H4ar102b", "https://tec.openplanner.team/stops/H4pl136a"], ["https://tec.openplanner.team/stops/H4be147a", "https://tec.openplanner.team/stops/H5bl116b"], ["https://tec.openplanner.team/stops/LBOec--2", "https://tec.openplanner.team/stops/LBWbatt1"], ["https://tec.openplanner.team/stops/H3bo101b", "https://tec.openplanner.team/stops/H3th127a"], ["https://tec.openplanner.team/stops/Bolggar1", "https://tec.openplanner.team/stops/Bolpmre2"], ["https://tec.openplanner.team/stops/LAUbirv2", "https://tec.openplanner.team/stops/LHMchev2"], ["https://tec.openplanner.team/stops/H4er125b", "https://tec.openplanner.team/stops/H4ta134b"], ["https://tec.openplanner.team/stops/N424abb", "https://tec.openplanner.team/stops/N424aca"], ["https://tec.openplanner.team/stops/H2ch104a", "https://tec.openplanner.team/stops/H2ch106b"], ["https://tec.openplanner.team/stops/N539axa", "https://tec.openplanner.team/stops/N539azb"], ["https://tec.openplanner.team/stops/X627aab", "https://tec.openplanner.team/stops/X627ada"], ["https://tec.openplanner.team/stops/X879aca", "https://tec.openplanner.team/stops/X879adb"], ["https://tec.openplanner.team/stops/N501chc", "https://tec.openplanner.team/stops/N502adb"], ["https://tec.openplanner.team/stops/N530agb", "https://tec.openplanner.team/stops/N534ata"], ["https://tec.openplanner.team/stops/X922ala", "https://tec.openplanner.team/stops/X942afb"], ["https://tec.openplanner.team/stops/N501brb", "https://tec.openplanner.team/stops/N501mwa"], ["https://tec.openplanner.team/stops/X897aqa", "https://tec.openplanner.team/stops/X897awa"], ["https://tec.openplanner.team/stops/H4ch117b", "https://tec.openplanner.team/stops/H4jm118a"], ["https://tec.openplanner.team/stops/N155ada", "https://tec.openplanner.team/stops/N155adb"], ["https://tec.openplanner.team/stops/Bqueaga1", "https://tec.openplanner.team/stops/Bquepla2"], ["https://tec.openplanner.team/stops/H4ne137b", "https://tec.openplanner.team/stops/H4ne139a"], ["https://tec.openplanner.team/stops/H4bo114a", "https://tec.openplanner.team/stops/H4bo181a"], ["https://tec.openplanner.team/stops/H1ca102b", "https://tec.openplanner.team/stops/H1ca103a"], ["https://tec.openplanner.team/stops/X633aba", "https://tec.openplanner.team/stops/X633abb"], ["https://tec.openplanner.team/stops/H4an108a", "https://tec.openplanner.team/stops/H4an110b"], ["https://tec.openplanner.team/stops/LFUfleu2", "https://tec.openplanner.team/stops/LWDcime2"], ["https://tec.openplanner.team/stops/Blasbh51", "https://tec.openplanner.team/stops/Bottpin2"], ["https://tec.openplanner.team/stops/LTPsatr1", "https://tec.openplanner.team/stops/LTPspay2"], ["https://tec.openplanner.team/stops/N117bca", "https://tec.openplanner.team/stops/N117bcd"], ["https://tec.openplanner.team/stops/N120abb", "https://tec.openplanner.team/stops/N120acb"], ["https://tec.openplanner.team/stops/LYEphar1", "https://tec.openplanner.team/stops/LYEphar2"], ["https://tec.openplanner.team/stops/LSemc--1", "https://tec.openplanner.team/stops/LSemc--4"], ["https://tec.openplanner.team/stops/Lsmcime*", "https://tec.openplanner.team/stops/Lsmh1802"], ["https://tec.openplanner.team/stops/LTiforg1", "https://tec.openplanner.team/stops/LTiterr1"], ["https://tec.openplanner.team/stops/Bbcocou1", "https://tec.openplanner.team/stops/Bbcocou2"], ["https://tec.openplanner.team/stops/N501jja", "https://tec.openplanner.team/stops/N521aea"], ["https://tec.openplanner.team/stops/LNCmele1", "https://tec.openplanner.team/stops/LRRelec2"], ["https://tec.openplanner.team/stops/LXofont2", "https://tec.openplanner.team/stops/LXopeti1"], ["https://tec.openplanner.team/stops/Cmecite1", "https://tec.openplanner.team/stops/Cvpcime1"], ["https://tec.openplanner.team/stops/N116aea", "https://tec.openplanner.team/stops/N118bab"], ["https://tec.openplanner.team/stops/Boppcar1", "https://tec.openplanner.team/stops/Boppcar2"], ["https://tec.openplanner.team/stops/X715aia", "https://tec.openplanner.team/stops/X715akb"], ["https://tec.openplanner.team/stops/X902ajb", "https://tec.openplanner.team/stops/X902aka"], ["https://tec.openplanner.team/stops/LmImirf1", "https://tec.openplanner.team/stops/LmRmuhl2"], ["https://tec.openplanner.team/stops/LBIcabi1", "https://tec.openplanner.team/stops/LBIvill4"], ["https://tec.openplanner.team/stops/Btubfab1", "https://tec.openplanner.team/stops/Btubmfa1"], ["https://tec.openplanner.team/stops/Ljemake1", "https://tec.openplanner.team/stops/Ljerouy1"], ["https://tec.openplanner.team/stops/LMuvill2", "https://tec.openplanner.team/stops/LSDheus2"], ["https://tec.openplanner.team/stops/N131afa", "https://tec.openplanner.team/stops/N423agb"], ["https://tec.openplanner.team/stops/N560aab", "https://tec.openplanner.team/stops/N560acb"], ["https://tec.openplanner.team/stops/Bcrbros1", "https://tec.openplanner.team/stops/Bcrbtho2"], ["https://tec.openplanner.team/stops/X805akb", "https://tec.openplanner.team/stops/X873aaa"], ["https://tec.openplanner.team/stops/LBAtign1", "https://tec.openplanner.team/stops/LBAtign2"], ["https://tec.openplanner.team/stops/N111aca", "https://tec.openplanner.team/stops/N111adb"], ["https://tec.openplanner.team/stops/N308acb", "https://tec.openplanner.team/stops/N308bhb"], ["https://tec.openplanner.team/stops/LHreg--2", "https://tec.openplanner.team/stops/LHrrard2"], ["https://tec.openplanner.team/stops/LEBmoul1", "https://tec.openplanner.team/stops/LWOwonc1"], ["https://tec.openplanner.team/stops/LBBodet2", "https://tec.openplanner.team/stops/X222ala"], ["https://tec.openplanner.team/stops/H1ss350b", "https://tec.openplanner.team/stops/H1ss352b"], ["https://tec.openplanner.team/stops/H1og130b", "https://tec.openplanner.team/stops/H1og132a"], ["https://tec.openplanner.team/stops/X736aca", "https://tec.openplanner.team/stops/X736adb"], ["https://tec.openplanner.team/stops/X641amb", "https://tec.openplanner.team/stops/X673ada"], ["https://tec.openplanner.team/stops/X983aaa", "https://tec.openplanner.team/stops/X986aib"], ["https://tec.openplanner.team/stops/Bwavcen1", "https://tec.openplanner.team/stops/Bwavpao2"], ["https://tec.openplanner.team/stops/LPbchat1", "https://tec.openplanner.team/stops/LPbchat2"], ["https://tec.openplanner.team/stops/Bpthcgo1", "https://tec.openplanner.team/stops/Bpthfus2"], ["https://tec.openplanner.team/stops/X614aba", "https://tec.openplanner.team/stops/X614aca"], ["https://tec.openplanner.team/stops/LGEcent1", "https://tec.openplanner.team/stops/LGEhosp2"], ["https://tec.openplanner.team/stops/H4bi156a", "https://tec.openplanner.team/stops/H4te256a"], ["https://tec.openplanner.team/stops/N584cab", "https://tec.openplanner.team/stops/N584cac"], ["https://tec.openplanner.team/stops/Bsomthi1", "https://tec.openplanner.team/stops/N584afa"], ["https://tec.openplanner.team/stops/X921aba", "https://tec.openplanner.team/stops/X921ada"], ["https://tec.openplanner.team/stops/H2ll177b", "https://tec.openplanner.team/stops/H2ll189c"], ["https://tec.openplanner.team/stops/LHEcruc1", "https://tec.openplanner.team/stops/LHEhv--1"], ["https://tec.openplanner.team/stops/X806ajb", "https://tec.openplanner.team/stops/X808aha"], ["https://tec.openplanner.team/stops/Cmehels1", "https://tec.openplanner.team/stops/Cmerlme2"], ["https://tec.openplanner.team/stops/Clgrsoc1", "https://tec.openplanner.team/stops/Clgrsoc2"], ["https://tec.openplanner.team/stops/H1ms258a", "https://tec.openplanner.team/stops/H1ms305a"], ["https://tec.openplanner.team/stops/LJAbell1", "https://tec.openplanner.team/stops/LJAbell4"], ["https://tec.openplanner.team/stops/LAvatri2", "https://tec.openplanner.team/stops/NL37aob"], ["https://tec.openplanner.team/stops/X616aaa", "https://tec.openplanner.team/stops/X616aea"], ["https://tec.openplanner.team/stops/Bwancal4", "https://tec.openplanner.team/stops/Bwanthi1"], ["https://tec.openplanner.team/stops/H1wi151a", "https://tec.openplanner.team/stops/H1wi151b"], ["https://tec.openplanner.team/stops/X614axb", "https://tec.openplanner.team/stops/X614aya"], ["https://tec.openplanner.team/stops/X804afa", "https://tec.openplanner.team/stops/X804afb"], ["https://tec.openplanner.team/stops/Bjodcar1", "https://tec.openplanner.team/stops/Bjodint2"], ["https://tec.openplanner.team/stops/Lmoknae1", "https://tec.openplanner.team/stops/Lmoknae2"], ["https://tec.openplanner.team/stops/Cldvign1", "https://tec.openplanner.team/stops/CMleer2"], ["https://tec.openplanner.team/stops/X715agb", "https://tec.openplanner.team/stops/X731abb"], ["https://tec.openplanner.team/stops/N209aeb", "https://tec.openplanner.team/stops/N209afb"], ["https://tec.openplanner.team/stops/N543ajb", "https://tec.openplanner.team/stops/N543awh"], ["https://tec.openplanner.team/stops/H1mk108d", "https://tec.openplanner.team/stops/H1mk117a"], ["https://tec.openplanner.team/stops/X768aia", "https://tec.openplanner.team/stops/X769aka"], ["https://tec.openplanner.team/stops/X604ada", "https://tec.openplanner.team/stops/X604adb"], ["https://tec.openplanner.team/stops/LBlplac1", "https://tec.openplanner.team/stops/LLUg82-2"], ["https://tec.openplanner.team/stops/Blthwav2", "https://tec.openplanner.team/stops/Blthwav4"], ["https://tec.openplanner.team/stops/Blpgbat2", "https://tec.openplanner.team/stops/Blpglon1"], ["https://tec.openplanner.team/stops/Bwatber1", "https://tec.openplanner.team/stops/Bwatfon1"], ["https://tec.openplanner.team/stops/X743adb", "https://tec.openplanner.team/stops/X743aeb"], ["https://tec.openplanner.team/stops/X765afb", "https://tec.openplanner.team/stops/X765agb"], ["https://tec.openplanner.team/stops/Bgnvdep1", "https://tec.openplanner.team/stops/Bgnvdep2"], ["https://tec.openplanner.team/stops/H1mq198b", "https://tec.openplanner.team/stops/H1mq200b"], ["https://tec.openplanner.team/stops/X657afa", "https://tec.openplanner.team/stops/X670apa"], ["https://tec.openplanner.team/stops/LSNness2", "https://tec.openplanner.team/stops/LXHfalh1"], ["https://tec.openplanner.team/stops/X608afb", "https://tec.openplanner.team/stops/X608aia"], ["https://tec.openplanner.team/stops/X649aba", "https://tec.openplanner.team/stops/X671aeb"], ["https://tec.openplanner.team/stops/H1ma234a", "https://tec.openplanner.team/stops/H1ni323a"], ["https://tec.openplanner.team/stops/Lveharm2", "https://tec.openplanner.team/stops/Lveveou1"], ["https://tec.openplanner.team/stops/Crspana4", "https://tec.openplanner.team/stops/Crsprai4"], ["https://tec.openplanner.team/stops/Loudela1", "https://tec.openplanner.team/stops/Louegla1"], ["https://tec.openplanner.team/stops/LOreg--2", "https://tec.openplanner.team/stops/LRUhama2"], ["https://tec.openplanner.team/stops/X663aia", "https://tec.openplanner.team/stops/X663alb"], ["https://tec.openplanner.team/stops/X897aaa", "https://tec.openplanner.team/stops/X897aeb"], ["https://tec.openplanner.team/stops/LPOchan1", "https://tec.openplanner.team/stops/LPOwaut1"], ["https://tec.openplanner.team/stops/Bbstcha1", "https://tec.openplanner.team/stops/Blpgeco2"], ["https://tec.openplanner.team/stops/Ladmoul2", "https://tec.openplanner.team/stops/Ladppir1"], ["https://tec.openplanner.team/stops/X359abb", "https://tec.openplanner.team/stops/X359acb"], ["https://tec.openplanner.team/stops/Bjodrga1", "https://tec.openplanner.team/stops/Bjodrrg2"], ["https://tec.openplanner.team/stops/NL76agb", "https://tec.openplanner.team/stops/NL76ahb"], ["https://tec.openplanner.team/stops/Bflcneu2", "https://tec.openplanner.team/stops/NR27aaa"], ["https://tec.openplanner.team/stops/Llgcour2", "https://tec.openplanner.team/stops/Llglibo3"], ["https://tec.openplanner.team/stops/Cfomays1", "https://tec.openplanner.team/stops/CMpara1"], ["https://tec.openplanner.team/stops/X657aib", "https://tec.openplanner.team/stops/X657ajb"], ["https://tec.openplanner.team/stops/LrUweve2", "https://tec.openplanner.team/stops/LsFcafe2"], ["https://tec.openplanner.team/stops/Cmtcapi1", "https://tec.openplanner.team/stops/Cmtfabi2"], ["https://tec.openplanner.team/stops/Bmalper2", "https://tec.openplanner.team/stops/Btlbgla1"], ["https://tec.openplanner.team/stops/Lbococh2", "https://tec.openplanner.team/stops/Lousimo2"], ["https://tec.openplanner.team/stops/Cchmott1", "https://tec.openplanner.team/stops/Cchwarm1"], ["https://tec.openplanner.team/stops/H1eu105a", "https://tec.openplanner.team/stops/H1eu107b"], ["https://tec.openplanner.team/stops/LkEl1212", "https://tec.openplanner.team/stops/LMsec--1"], ["https://tec.openplanner.team/stops/Lceprog2", "https://tec.openplanner.team/stops/Lgrcral2"], ["https://tec.openplanner.team/stops/N135aec", "https://tec.openplanner.team/stops/N143aaa"], ["https://tec.openplanner.team/stops/Cmlbuis3", "https://tec.openplanner.team/stops/Cmlphai2"], ["https://tec.openplanner.team/stops/X762afa", "https://tec.openplanner.team/stops/X762aga"], ["https://tec.openplanner.team/stops/X641aja", "https://tec.openplanner.team/stops/X641ajb"], ["https://tec.openplanner.team/stops/LCsbors2", "https://tec.openplanner.team/stops/LCschen2"], ["https://tec.openplanner.team/stops/H1he110b", "https://tec.openplanner.team/stops/H1qv110b"], ["https://tec.openplanner.team/stops/H2an101a", "https://tec.openplanner.team/stops/H2an104b"], ["https://tec.openplanner.team/stops/X756aaa", "https://tec.openplanner.team/stops/X756aka"], ["https://tec.openplanner.team/stops/Bcsempl2", "https://tec.openplanner.team/stops/Bsmgpla2"], ["https://tec.openplanner.team/stops/Cfawain2", "https://tec.openplanner.team/stops/Cflsabl2"], ["https://tec.openplanner.team/stops/H1sp357a", "https://tec.openplanner.team/stops/H1sp357c"], ["https://tec.openplanner.team/stops/Bptecar1", "https://tec.openplanner.team/stops/Bptecar2"], ["https://tec.openplanner.team/stops/X615aca", "https://tec.openplanner.team/stops/X615acb"], ["https://tec.openplanner.team/stops/Bnstgar1", "https://tec.openplanner.team/stops/Bnstpla1"], ["https://tec.openplanner.team/stops/H5qu156a", "https://tec.openplanner.team/stops/H5qu156c"], ["https://tec.openplanner.team/stops/Lfhcime2", "https://tec.openplanner.team/stops/Lfhvoye2"], ["https://tec.openplanner.team/stops/LmI82--1", "https://tec.openplanner.team/stops/LmIzent2"], ["https://tec.openplanner.team/stops/Lghbonn1", "https://tec.openplanner.team/stops/Lghflot2"], ["https://tec.openplanner.team/stops/Lhubarl1", "https://tec.openplanner.team/stops/Lmnfawe1"], ["https://tec.openplanner.team/stops/X820acb", "https://tec.openplanner.team/stops/X820agd"], ["https://tec.openplanner.team/stops/NC14aob", "https://tec.openplanner.team/stops/NC14aub"], ["https://tec.openplanner.team/stops/LCeanne2", "https://tec.openplanner.team/stops/LCewaut2"], ["https://tec.openplanner.team/stops/Cgrgend2", "https://tec.openplanner.team/stops/NC14anb"], ["https://tec.openplanner.team/stops/LFIeg--2", "https://tec.openplanner.team/stops/LFIinse2"], ["https://tec.openplanner.team/stops/LSygerm1", "https://tec.openplanner.team/stops/LTNsarl2"], ["https://tec.openplanner.team/stops/N201aea", "https://tec.openplanner.team/stops/N201asb"], ["https://tec.openplanner.team/stops/Bquegob2", "https://tec.openplanner.team/stops/Brebmtg1"], ["https://tec.openplanner.team/stops/N525aec", "https://tec.openplanner.team/stops/N525afa"], ["https://tec.openplanner.team/stops/X901aya", "https://tec.openplanner.team/stops/X901bta"], ["https://tec.openplanner.team/stops/Buccbou2", "https://tec.openplanner.team/stops/Bucceng1"], ["https://tec.openplanner.team/stops/Brsrpch1", "https://tec.openplanner.team/stops/Brsrpri2"], ["https://tec.openplanner.team/stops/H4ir166a", "https://tec.openplanner.team/stops/H5at135a"], ["https://tec.openplanner.team/stops/X902aza", "https://tec.openplanner.team/stops/X902bga"], ["https://tec.openplanner.team/stops/H1gh147a", "https://tec.openplanner.team/stops/H1gh168a"], ["https://tec.openplanner.team/stops/Bnetrec1", "https://tec.openplanner.team/stops/Bnettir1"], ["https://tec.openplanner.team/stops/Bbeaap52", "https://tec.openplanner.team/stops/Bbeapim1"], ["https://tec.openplanner.team/stops/LORdtec*", "https://tec.openplanner.team/stops/LORroma1"], ["https://tec.openplanner.team/stops/LAxbott1", "https://tec.openplanner.team/stops/Lmiensp*"], ["https://tec.openplanner.team/stops/LRRoser2", "https://tec.openplanner.team/stops/LTaouch1"], ["https://tec.openplanner.team/stops/Cgrsaul2", "https://tec.openplanner.team/stops/NC14aha"], ["https://tec.openplanner.team/stops/NR27aab", "https://tec.openplanner.team/stops/NR27aba"], ["https://tec.openplanner.team/stops/Landeja2", "https://tec.openplanner.team/stops/Lanothe2"], ["https://tec.openplanner.team/stops/X995abb", "https://tec.openplanner.team/stops/X995ada"], ["https://tec.openplanner.team/stops/N224aba", "https://tec.openplanner.team/stops/N349aba"], ["https://tec.openplanner.team/stops/Llojeme3", "https://tec.openplanner.team/stops/Llojeme4"], ["https://tec.openplanner.team/stops/H1ba103b", "https://tec.openplanner.team/stops/H1ba114a"], ["https://tec.openplanner.team/stops/X664alb", "https://tec.openplanner.team/stops/X664amc"], ["https://tec.openplanner.team/stops/N513bhb", "https://tec.openplanner.team/stops/N521ava"], ["https://tec.openplanner.team/stops/H4hq133b", "https://tec.openplanner.team/stops/H4hq134a"], ["https://tec.openplanner.team/stops/Llgancd2", "https://tec.openplanner.team/stops/LlgguilC"], ["https://tec.openplanner.team/stops/Baisbar1", "https://tec.openplanner.team/stops/Bperqui2"], ["https://tec.openplanner.team/stops/LLrcomb2", "https://tec.openplanner.team/stops/LLrmc--1"], ["https://tec.openplanner.team/stops/LBTnors1", "https://tec.openplanner.team/stops/LBTnors2"], ["https://tec.openplanner.team/stops/X616aca", "https://tec.openplanner.team/stops/X616acb"], ["https://tec.openplanner.team/stops/X923adb", "https://tec.openplanner.team/stops/X949ala"], ["https://tec.openplanner.team/stops/X661aqa", "https://tec.openplanner.team/stops/X840agb"], ["https://tec.openplanner.team/stops/X601atb", "https://tec.openplanner.team/stops/X601cqa"], ["https://tec.openplanner.team/stops/Bllnhoc2", "https://tec.openplanner.team/stops/Bottppa1"], ["https://tec.openplanner.team/stops/Cjurevo1", "https://tec.openplanner.team/stops/Cjurevo2"], ["https://tec.openplanner.team/stops/Bbalvil1", "https://tec.openplanner.team/stops/N534bgb"], ["https://tec.openplanner.team/stops/H4va231b", "https://tec.openplanner.team/stops/H4va233b"], ["https://tec.openplanner.team/stops/LLgcent1", "https://tec.openplanner.team/stops/LTPhenr2"], ["https://tec.openplanner.team/stops/LVnflox1", "https://tec.openplanner.team/stops/LVnvieg2"], ["https://tec.openplanner.team/stops/X735abc", "https://tec.openplanner.team/stops/X735acb"], ["https://tec.openplanner.team/stops/LWaanto2", "https://tec.openplanner.team/stops/LWathir2"], ["https://tec.openplanner.team/stops/Llgerac2", "https://tec.openplanner.team/stops/Llgfont4"], ["https://tec.openplanner.team/stops/X817aea", "https://tec.openplanner.team/stops/X817agb"], ["https://tec.openplanner.team/stops/N559aaa", "https://tec.openplanner.team/stops/N559aeb"], ["https://tec.openplanner.team/stops/Bixlozo1", "https://tec.openplanner.team/stops/Bwbfhip1"], ["https://tec.openplanner.team/stops/H2hp118b", "https://tec.openplanner.team/stops/H2hp125b"], ["https://tec.openplanner.team/stops/X661aga", "https://tec.openplanner.team/stops/X661ava"], ["https://tec.openplanner.team/stops/N101aeb", "https://tec.openplanner.team/stops/N147aaa"], ["https://tec.openplanner.team/stops/H1ms263a", "https://tec.openplanner.team/stops/H1ms310a"], ["https://tec.openplanner.team/stops/Ljegare1", "https://tec.openplanner.team/stops/Ljetomb2"], ["https://tec.openplanner.team/stops/H1ho141a", "https://tec.openplanner.team/stops/H1wg126a"], ["https://tec.openplanner.team/stops/H1bo100b", "https://tec.openplanner.team/stops/H1ho123b"], ["https://tec.openplanner.team/stops/N534bkg", "https://tec.openplanner.team/stops/N534bmb"], ["https://tec.openplanner.team/stops/Cfbcal1", "https://tec.openplanner.team/stops/Cfbegli1"], ["https://tec.openplanner.team/stops/H2mg149b", "https://tec.openplanner.team/stops/H2mg150a"], ["https://tec.openplanner.team/stops/LNClila1", "https://tec.openplanner.team/stops/LNClila2"], ["https://tec.openplanner.team/stops/LACeg--2", "https://tec.openplanner.team/stops/LACwass1"], ["https://tec.openplanner.team/stops/Blhuibm1", "https://tec.openplanner.team/stops/Blhuibm2"], ["https://tec.openplanner.team/stops/NL80aha", "https://tec.openplanner.team/stops/NL80ahb"], ["https://tec.openplanner.team/stops/LBkbamb2", "https://tec.openplanner.team/stops/LkEl3252"], ["https://tec.openplanner.team/stops/Bbiecoc1", "https://tec.openplanner.team/stops/Bbiecoc2"], ["https://tec.openplanner.team/stops/N528ama", "https://tec.openplanner.team/stops/N528apa"], ["https://tec.openplanner.team/stops/Lceleje1", "https://tec.openplanner.team/stops/Lcepass1"], ["https://tec.openplanner.team/stops/H4fa167b", "https://tec.openplanner.team/stops/H4ss153a"], ["https://tec.openplanner.team/stops/X601afb", "https://tec.openplanner.team/stops/X601bta"], ["https://tec.openplanner.team/stops/H1ho129a", "https://tec.openplanner.team/stops/H1ho134a"], ["https://tec.openplanner.team/stops/Baegegl1", "https://tec.openplanner.team/stops/Bflcneu2"], ["https://tec.openplanner.team/stops/H3br110b", "https://tec.openplanner.team/stops/H3br112a"], ["https://tec.openplanner.team/stops/Bcsempl1", "https://tec.openplanner.team/stops/Bcsempl2"], ["https://tec.openplanner.team/stops/Lmocalv1", "https://tec.openplanner.team/stops/Lmomine1"], ["https://tec.openplanner.team/stops/X731aga", "https://tec.openplanner.team/stops/X731aib"], ["https://tec.openplanner.team/stops/H1br134a", "https://tec.openplanner.team/stops/H1br134b"], ["https://tec.openplanner.team/stops/Bovecha2", "https://tec.openplanner.team/stops/Bovetdo1"], ["https://tec.openplanner.team/stops/H4ch113b", "https://tec.openplanner.team/stops/H4cl113a"], ["https://tec.openplanner.team/stops/Cprbevu2", "https://tec.openplanner.team/stops/Cprsapv2"], ["https://tec.openplanner.team/stops/H1ha188a", "https://tec.openplanner.team/stops/H1ha199a"], ["https://tec.openplanner.team/stops/X872aga", "https://tec.openplanner.team/stops/X887aab"], ["https://tec.openplanner.team/stops/LMIlac-1", "https://tec.openplanner.team/stops/Lrechap1"], ["https://tec.openplanner.team/stops/N313aba", "https://tec.openplanner.team/stops/N350adb"], ["https://tec.openplanner.team/stops/N135aza", "https://tec.openplanner.team/stops/N135bib"], ["https://tec.openplanner.team/stops/X622aca", "https://tec.openplanner.team/stops/X622aea"], ["https://tec.openplanner.team/stops/Bglacsr1", "https://tec.openplanner.team/stops/Bwaypon1"], ["https://tec.openplanner.team/stops/H2sb233c", "https://tec.openplanner.team/stops/H2sb238a"], ["https://tec.openplanner.team/stops/LPrcarr2", "https://tec.openplanner.team/stops/LTNmont1"], ["https://tec.openplanner.team/stops/Llghong2", "https://tec.openplanner.team/stops/Llgvelb2"], ["https://tec.openplanner.team/stops/LWelogi1", "https://tec.openplanner.team/stops/LWepost3"], ["https://tec.openplanner.team/stops/X614aha", "https://tec.openplanner.team/stops/X614ata"], ["https://tec.openplanner.team/stops/Lccawir2", "https://tec.openplanner.team/stops/Lccuner1"], ["https://tec.openplanner.team/stops/Lcepepi1", "https://tec.openplanner.team/stops/Lcepepi2"], ["https://tec.openplanner.team/stops/Bgntpos1", "https://tec.openplanner.team/stops/Bgntpos2"], ["https://tec.openplanner.team/stops/LHUaveu1", "https://tec.openplanner.team/stops/NL80afa"], ["https://tec.openplanner.team/stops/Cchba12", "https://tec.openplanner.team/stops/Cchfort1"], ["https://tec.openplanner.team/stops/Bhevcur2", "https://tec.openplanner.team/stops/Bvilvil3"], ["https://tec.openplanner.team/stops/N232aha", "https://tec.openplanner.team/stops/N232bqb"], ["https://tec.openplanner.team/stops/Bettcha2", "https://tec.openplanner.team/stops/Bettlha2"], ["https://tec.openplanner.team/stops/N217abb", "https://tec.openplanner.team/stops/N217acc"], ["https://tec.openplanner.team/stops/N503aeb", "https://tec.openplanner.team/stops/N503aib"], ["https://tec.openplanner.team/stops/Bdonlat1", "https://tec.openplanner.team/stops/Bdonlat2"], ["https://tec.openplanner.team/stops/X608abb", "https://tec.openplanner.team/stops/X608aca"], ["https://tec.openplanner.team/stops/H1bd103b", "https://tec.openplanner.team/stops/H1hq129a"], ["https://tec.openplanner.team/stops/H4lu125a", "https://tec.openplanner.team/stops/H4lu126a"], ["https://tec.openplanner.team/stops/LWAcost2", "https://tec.openplanner.team/stops/LWApt--2"], ["https://tec.openplanner.team/stops/Lfhhosp2", "https://tec.openplanner.team/stops/Lfhxhor1"], ["https://tec.openplanner.team/stops/N538ava", "https://tec.openplanner.team/stops/N538avb"], ["https://tec.openplanner.team/stops/X641atb", "https://tec.openplanner.team/stops/X641azb"], ["https://tec.openplanner.team/stops/N349aia", "https://tec.openplanner.team/stops/N351aqa"], ["https://tec.openplanner.team/stops/N539aoa", "https://tec.openplanner.team/stops/N539aob"], ["https://tec.openplanner.team/stops/Bbcodam3", "https://tec.openplanner.team/stops/Bbcodam4"], ["https://tec.openplanner.team/stops/Cmlvpla1", "https://tec.openplanner.team/stops/CMsud1"], ["https://tec.openplanner.team/stops/Lcapisc2", "https://tec.openplanner.team/stops/Lvcbasi*"], ["https://tec.openplanner.team/stops/Lflgare1", "https://tec.openplanner.team/stops/Lflterm1"], ["https://tec.openplanner.team/stops/H1fa120b", "https://tec.openplanner.team/stops/H1pe132b"], ["https://tec.openplanner.team/stops/H1bo103b", "https://tec.openplanner.team/stops/H1te198b"], ["https://tec.openplanner.team/stops/H2na135b", "https://tec.openplanner.team/stops/H3so172b"], ["https://tec.openplanner.team/stops/LAWjaur1", "https://tec.openplanner.team/stops/LAWvold2"], ["https://tec.openplanner.team/stops/LLefali1", "https://tec.openplanner.team/stops/LLelava1"], ["https://tec.openplanner.team/stops/X989aeb", "https://tec.openplanner.team/stops/X989afb"], ["https://tec.openplanner.team/stops/LbTdoma1", "https://tec.openplanner.team/stops/LbTdoma2"], ["https://tec.openplanner.team/stops/X999agb", "https://tec.openplanner.team/stops/X999aob"], ["https://tec.openplanner.team/stops/X910adb", "https://tec.openplanner.team/stops/X910afa"], ["https://tec.openplanner.team/stops/Brsrbbo1", "https://tec.openplanner.team/stops/Brsregl4"], ["https://tec.openplanner.team/stops/H4bo178a", "https://tec.openplanner.team/stops/H4bo179b"], ["https://tec.openplanner.team/stops/Bottppa2", "https://tec.openplanner.team/stops/Bottppa4"], ["https://tec.openplanner.team/stops/Cbbcrbo2", "https://tec.openplanner.team/stops/Cbmvalt2"], ["https://tec.openplanner.team/stops/H4vz369a", "https://tec.openplanner.team/stops/H4vz369b"], ["https://tec.openplanner.team/stops/LeSkreu1", "https://tec.openplanner.team/stops/LtH37c-1"], ["https://tec.openplanner.team/stops/N135ajb", "https://tec.openplanner.team/stops/N135aqb"], ["https://tec.openplanner.team/stops/Cmastfi1", "https://tec.openplanner.team/stops/Cmastni2"], ["https://tec.openplanner.team/stops/X601bea", "https://tec.openplanner.team/stops/X601dha"], ["https://tec.openplanner.team/stops/LHUfrai1", "https://tec.openplanner.team/stops/LHUsauv2"], ["https://tec.openplanner.team/stops/N230aka", "https://tec.openplanner.team/stops/N549aba"], ["https://tec.openplanner.team/stops/X731adb", "https://tec.openplanner.team/stops/X731aja"], ["https://tec.openplanner.team/stops/Lgrcour2", "https://tec.openplanner.team/stops/Lgrmagd1"], ["https://tec.openplanner.team/stops/Btslcej1", "https://tec.openplanner.team/stops/Btslenf2"], ["https://tec.openplanner.team/stops/X939aba", "https://tec.openplanner.team/stops/X940afb"], ["https://tec.openplanner.team/stops/H4ft135c", "https://tec.openplanner.team/stops/H4ta118a"], ["https://tec.openplanner.team/stops/X948aab", "https://tec.openplanner.team/stops/X948bbb"], ["https://tec.openplanner.team/stops/LVBvaux1", "https://tec.openplanner.team/stops/LVBvill2"], ["https://tec.openplanner.team/stops/N125aba", "https://tec.openplanner.team/stops/N125abb"], ["https://tec.openplanner.team/stops/LVEphar1", "https://tec.openplanner.team/stops/LVEphar2"], ["https://tec.openplanner.team/stops/N501dja", "https://tec.openplanner.team/stops/N538aha"], ["https://tec.openplanner.team/stops/LHAcite1", "https://tec.openplanner.team/stops/LHAcite2"], ["https://tec.openplanner.team/stops/Lpevesd1", "https://tec.openplanner.team/stops/Lpevesd2"], ["https://tec.openplanner.team/stops/H4ir162a", "https://tec.openplanner.team/stops/H4ir163a"], ["https://tec.openplanner.team/stops/LOTcloe1", "https://tec.openplanner.team/stops/LOTcloe2"], ["https://tec.openplanner.team/stops/LHAheml1", "https://tec.openplanner.team/stops/LHAheml2"], ["https://tec.openplanner.team/stops/H4rs117a", "https://tec.openplanner.team/stops/H4rs117b"], ["https://tec.openplanner.team/stops/Bbsgrve2", "https://tec.openplanner.team/stops/Bhmmlad2"], ["https://tec.openplanner.team/stops/Cdacolu2", "https://tec.openplanner.team/stops/Cdapige1"], ["https://tec.openplanner.team/stops/X649abb", "https://tec.openplanner.team/stops/X649adb"], ["https://tec.openplanner.team/stops/X904acb", "https://tec.openplanner.team/stops/X904aea"], ["https://tec.openplanner.team/stops/X636atb", "https://tec.openplanner.team/stops/X636ayb"], ["https://tec.openplanner.team/stops/H1gh151a", "https://tec.openplanner.team/stops/H1gh152b"], ["https://tec.openplanner.team/stops/LLrgare2", "https://tec.openplanner.team/stops/LSPastr2"], ["https://tec.openplanner.team/stops/LLxcbr-2", "https://tec.openplanner.team/stops/LLxnive2"], ["https://tec.openplanner.team/stops/Lhrdeme1", "https://tec.openplanner.team/stops/Lhrdeme3"], ["https://tec.openplanner.team/stops/Buccptj1", "https://tec.openplanner.team/stops/Buccron1"], ["https://tec.openplanner.team/stops/N347aea", "https://tec.openplanner.team/stops/N347agb"], ["https://tec.openplanner.team/stops/LhGkirc3", "https://tec.openplanner.team/stops/LhGkirc6"], ["https://tec.openplanner.team/stops/N209aic", "https://tec.openplanner.team/stops/N209ana"], ["https://tec.openplanner.team/stops/Cgogb2", "https://tec.openplanner.team/stops/Cgoson11"], ["https://tec.openplanner.team/stops/H5el104b", "https://tec.openplanner.team/stops/H5wo130b"], ["https://tec.openplanner.team/stops/N146afa", "https://tec.openplanner.team/stops/N146afb"], ["https://tec.openplanner.team/stops/LBEnina6", "https://tec.openplanner.team/stops/LNipre-2"], ["https://tec.openplanner.team/stops/H4ta121a", "https://tec.openplanner.team/stops/H4ta129a"], ["https://tec.openplanner.team/stops/Bnivari2", "https://tec.openplanner.team/stops/Bnivpgr2"], ["https://tec.openplanner.team/stops/N207aba", "https://tec.openplanner.team/stops/N207afa"], ["https://tec.openplanner.team/stops/H2se109a", "https://tec.openplanner.team/stops/H2se114b"], ["https://tec.openplanner.team/stops/LrEmeil1", "https://tec.openplanner.team/stops/LrEviel2"], ["https://tec.openplanner.team/stops/X663aub", "https://tec.openplanner.team/stops/X664ana"], ["https://tec.openplanner.team/stops/Llghec-2", "https://tec.openplanner.team/stops/Llghec-3"], ["https://tec.openplanner.team/stops/H1ba106a", "https://tec.openplanner.team/stops/H1ba118a"], ["https://tec.openplanner.team/stops/H1ho147b", "https://tec.openplanner.team/stops/H1wg127a"], ["https://tec.openplanner.team/stops/Cflathe1", "https://tec.openplanner.team/stops/Cflgazo1"], ["https://tec.openplanner.team/stops/X608aea", "https://tec.openplanner.team/stops/X608apb"], ["https://tec.openplanner.team/stops/Btiegar1", "https://tec.openplanner.team/stops/Btiegar2"], ["https://tec.openplanner.team/stops/LHMec--1", "https://tec.openplanner.team/stops/LHMec--2"], ["https://tec.openplanner.team/stops/Cobnive1", "https://tec.openplanner.team/stops/Cobnive2"], ["https://tec.openplanner.team/stops/H1pa111b", "https://tec.openplanner.team/stops/H1pa120b"], ["https://tec.openplanner.team/stops/X696aba", "https://tec.openplanner.team/stops/X696afa"], ["https://tec.openplanner.team/stops/Lalbout2", "https://tec.openplanner.team/stops/Lalexpa1"], ["https://tec.openplanner.team/stops/CMmoul1", "https://tec.openplanner.team/stops/Cmorgof2"], ["https://tec.openplanner.team/stops/H4fo119a", "https://tec.openplanner.team/stops/H4ga170b"], ["https://tec.openplanner.team/stops/X349aab", "https://tec.openplanner.team/stops/X398afa"], ["https://tec.openplanner.team/stops/X775aib", "https://tec.openplanner.team/stops/X775aic"], ["https://tec.openplanner.team/stops/X742aga", "https://tec.openplanner.team/stops/X743aba"], ["https://tec.openplanner.team/stops/X390akb", "https://tec.openplanner.team/stops/X390ala"], ["https://tec.openplanner.team/stops/LBSchar2", "https://tec.openplanner.team/stops/LBSkann1"], ["https://tec.openplanner.team/stops/X870aba", "https://tec.openplanner.team/stops/X870abb"], ["https://tec.openplanner.team/stops/N351aaa", "https://tec.openplanner.team/stops/N351aga"], ["https://tec.openplanner.team/stops/Bnivhon1", "https://tec.openplanner.team/stops/Bthivil2"], ["https://tec.openplanner.team/stops/Bflcpco1", "https://tec.openplanner.team/stops/N517aga"], ["https://tec.openplanner.team/stops/Lenmare1", "https://tec.openplanner.team/stops/Lenplac5"], ["https://tec.openplanner.team/stops/LSMcles2", "https://tec.openplanner.team/stops/LSMec--2"], ["https://tec.openplanner.team/stops/Lrcstad2", "https://tec.openplanner.team/stops/Lrcvill2"], ["https://tec.openplanner.team/stops/H4ma204a", "https://tec.openplanner.team/stops/H4oq226b"], ["https://tec.openplanner.team/stops/LClbloc1", "https://tec.openplanner.team/stops/LClflor2"], ["https://tec.openplanner.team/stops/H2hp114b", "https://tec.openplanner.team/stops/H2hp125a"], ["https://tec.openplanner.team/stops/LLbbons2", "https://tec.openplanner.team/stops/LrEgend2"], ["https://tec.openplanner.team/stops/N425adb", "https://tec.openplanner.team/stops/N426aea"], ["https://tec.openplanner.team/stops/LMheg--1", "https://tec.openplanner.team/stops/Lprmana3"], ["https://tec.openplanner.team/stops/Cwgmutu2", "https://tec.openplanner.team/stops/Cwgtill2"], ["https://tec.openplanner.team/stops/LHUlebo1", "https://tec.openplanner.team/stops/LHUtfal2"], ["https://tec.openplanner.team/stops/Cwgmart1", "https://tec.openplanner.team/stops/Cwgplac1"], ["https://tec.openplanner.team/stops/Clgmaco1", "https://tec.openplanner.team/stops/Clgrsoc2"], ["https://tec.openplanner.team/stops/N501ega", "https://tec.openplanner.team/stops/N501ejc"], ["https://tec.openplanner.team/stops/N521aga", "https://tec.openplanner.team/stops/N521agb"], ["https://tec.openplanner.team/stops/Lghwall2", "https://tec.openplanner.team/stops/Llochar4"], ["https://tec.openplanner.team/stops/H4bw101b", "https://tec.openplanner.team/stops/H4bw102a"], ["https://tec.openplanner.team/stops/Lghvold1", "https://tec.openplanner.team/stops/Lghvold2"], ["https://tec.openplanner.team/stops/N423aab", "https://tec.openplanner.team/stops/N423aca"], ["https://tec.openplanner.team/stops/Cgycime1", "https://tec.openplanner.team/stops/Cgycime3"], ["https://tec.openplanner.team/stops/X770aaa", "https://tec.openplanner.team/stops/X770abb"], ["https://tec.openplanner.team/stops/Bbsgrve1", "https://tec.openplanner.team/stops/Bbsgrve2"], ["https://tec.openplanner.team/stops/N351aka", "https://tec.openplanner.team/stops/N351akc"], ["https://tec.openplanner.team/stops/LHFhard1", "https://tec.openplanner.team/stops/LHFhard2"], ["https://tec.openplanner.team/stops/Bcerldo2", "https://tec.openplanner.team/stops/Bcsegal1"], ["https://tec.openplanner.team/stops/N343aaa", "https://tec.openplanner.team/stops/N343abb"], ["https://tec.openplanner.team/stops/Bsgeegl1", "https://tec.openplanner.team/stops/Bsgeegl2"], ["https://tec.openplanner.team/stops/Lticime2", "https://tec.openplanner.team/stops/Ltiecch1"], ["https://tec.openplanner.team/stops/LREgare1", "https://tec.openplanner.team/stops/LREhenu1"], ["https://tec.openplanner.team/stops/LHocroi2", "https://tec.openplanner.team/stops/LHoetie1"], ["https://tec.openplanner.team/stops/LESmagr1", "https://tec.openplanner.team/stops/LESmagr2"], ["https://tec.openplanner.team/stops/LFMkrin1", "https://tec.openplanner.team/stops/LVu03--2"], ["https://tec.openplanner.team/stops/Bllnlb52", "https://tec.openplanner.team/stops/Bllnpsc1"], ["https://tec.openplanner.team/stops/LHEnaza2", "https://tec.openplanner.team/stops/LHEpriv1"], ["https://tec.openplanner.team/stops/N201ama", "https://tec.openplanner.team/stops/N211ana"], ["https://tec.openplanner.team/stops/H4ga149b", "https://tec.openplanner.team/stops/H4ga155a"], ["https://tec.openplanner.team/stops/X657aib", "https://tec.openplanner.team/stops/X670agb"], ["https://tec.openplanner.team/stops/X542abb", "https://tec.openplanner.team/stops/X542acb"], ["https://tec.openplanner.team/stops/H3th127b", "https://tec.openplanner.team/stops/H3th129b"], ["https://tec.openplanner.team/stops/LEMfort1", "https://tec.openplanner.team/stops/LEMgren*"], ["https://tec.openplanner.team/stops/X801ala", "https://tec.openplanner.team/stops/X801alb"], ["https://tec.openplanner.team/stops/LFRhock3", "https://tec.openplanner.team/stops/LFRhock4"], ["https://tec.openplanner.team/stops/X601awb", "https://tec.openplanner.team/stops/X612aaa"], ["https://tec.openplanner.team/stops/N504aba", "https://tec.openplanner.team/stops/N511ahb"], ["https://tec.openplanner.team/stops/N521asc", "https://tec.openplanner.team/stops/N521asd"], ["https://tec.openplanner.team/stops/H1me116a", "https://tec.openplanner.team/stops/H1mm122d"], ["https://tec.openplanner.team/stops/X791aca", "https://tec.openplanner.team/stops/X791adb"], ["https://tec.openplanner.team/stops/Cfcchas2", "https://tec.openplanner.team/stops/Cvlstan2"], ["https://tec.openplanner.team/stops/H2tr247b", "https://tec.openplanner.team/stops/H2tr253a"], ["https://tec.openplanner.team/stops/Ctuecol1", "https://tec.openplanner.team/stops/Ctuecol4"], ["https://tec.openplanner.team/stops/H2ll188a", "https://tec.openplanner.team/stops/H2ll192a"], ["https://tec.openplanner.team/stops/LhRandl1", "https://tec.openplanner.team/stops/LsCback1"], ["https://tec.openplanner.team/stops/Cgrcent2", "https://tec.openplanner.team/stops/NC14amb"], ["https://tec.openplanner.team/stops/LhOokat2", "https://tec.openplanner.team/stops/LlSbuch1"], ["https://tec.openplanner.team/stops/N117ama", "https://tec.openplanner.team/stops/N117bcd"], ["https://tec.openplanner.team/stops/N543ang", "https://tec.openplanner.team/stops/N543avg"], ["https://tec.openplanner.team/stops/LHehacc2", "https://tec.openplanner.team/stops/LOUbleu2"], ["https://tec.openplanner.team/stops/H1fr118a", "https://tec.openplanner.team/stops/H1fr118b"], ["https://tec.openplanner.team/stops/N117aqa", "https://tec.openplanner.team/stops/N117aya"], ["https://tec.openplanner.team/stops/X801cfa", "https://tec.openplanner.team/stops/X801cmb"], ["https://tec.openplanner.team/stops/LJOferm2", "https://tec.openplanner.team/stops/LJOvill1"], ["https://tec.openplanner.team/stops/H5rx113a", "https://tec.openplanner.team/stops/H5rx140a"], ["https://tec.openplanner.team/stops/H2fa101b", "https://tec.openplanner.team/stops/H2fa102a"], ["https://tec.openplanner.team/stops/H1do109b", "https://tec.openplanner.team/stops/H1do127a"], ["https://tec.openplanner.team/stops/N231afa", "https://tec.openplanner.team/stops/N291aab"], ["https://tec.openplanner.team/stops/N513agc", "https://tec.openplanner.team/stops/N513bbd"], ["https://tec.openplanner.team/stops/Cgd4ven2", "https://tec.openplanner.team/stops/Clggrfe2"], ["https://tec.openplanner.team/stops/Lprcard1", "https://tec.openplanner.team/stops/Lprpous2"], ["https://tec.openplanner.team/stops/X614ala", "https://tec.openplanner.team/stops/X614ama"], ["https://tec.openplanner.team/stops/LlgguilB", "https://tec.openplanner.team/stops/Llgoise2"], ["https://tec.openplanner.team/stops/LWalibo2", "https://tec.openplanner.team/stops/LWapl--3"], ["https://tec.openplanner.team/stops/N543apb", "https://tec.openplanner.team/stops/N543ayb"], ["https://tec.openplanner.team/stops/LeUhaas1", "https://tec.openplanner.team/stops/LeUschi1"], ["https://tec.openplanner.team/stops/H4ae102a", "https://tec.openplanner.team/stops/H4or114b"], ["https://tec.openplanner.team/stops/Lbrrobe1", "https://tec.openplanner.team/stops/Lgrfrcu2"], ["https://tec.openplanner.team/stops/X985aba", "https://tec.openplanner.team/stops/X985acb"], ["https://tec.openplanner.team/stops/N506abb", "https://tec.openplanner.team/stops/N506aoa"], ["https://tec.openplanner.team/stops/H4qu408a", "https://tec.openplanner.team/stops/H4qu408b"], ["https://tec.openplanner.team/stops/Llgbwez2", "https://tec.openplanner.team/stops/Llgmulh1"], ["https://tec.openplanner.team/stops/Blhupri2", "https://tec.openplanner.team/stops/Bohnman1"], ["https://tec.openplanner.team/stops/N209ajb", "https://tec.openplanner.team/stops/N209ajc"], ["https://tec.openplanner.team/stops/X888aga", "https://tec.openplanner.team/stops/X897ara"], ["https://tec.openplanner.team/stops/H1ms942a", "https://tec.openplanner.team/stops/H1ni320b"], ["https://tec.openplanner.team/stops/X804ala", "https://tec.openplanner.team/stops/X804bwb"], ["https://tec.openplanner.team/stops/LLUhotc2", "https://tec.openplanner.team/stops/LREsoug4"], ["https://tec.openplanner.team/stops/LOurena1", "https://tec.openplanner.team/stops/X982afa"], ["https://tec.openplanner.team/stops/Lgdrena1", "https://tec.openplanner.team/stops/Lgdrena2"], ["https://tec.openplanner.team/stops/Cgzhour2", "https://tec.openplanner.team/stops/Clbpepi2"], ["https://tec.openplanner.team/stops/N132aaa", "https://tec.openplanner.team/stops/N132abb"], ["https://tec.openplanner.team/stops/H4er122a", "https://tec.openplanner.team/stops/H4er124a"], ["https://tec.openplanner.team/stops/H4ar100a", "https://tec.openplanner.team/stops/H4ar104b"], ["https://tec.openplanner.team/stops/N123aab", "https://tec.openplanner.team/stops/N123abb"], ["https://tec.openplanner.team/stops/Bohnbra1", "https://tec.openplanner.team/stops/Bwatber1"], ["https://tec.openplanner.team/stops/H2pr116a", "https://tec.openplanner.team/stops/H3st119a"], ["https://tec.openplanner.team/stops/X651afb", "https://tec.openplanner.team/stops/X659acb"], ["https://tec.openplanner.team/stops/LWEhang1", "https://tec.openplanner.team/stops/LWEwall1"], ["https://tec.openplanner.team/stops/N343aea", "https://tec.openplanner.team/stops/N343aeb"], ["https://tec.openplanner.team/stops/H4do108a", "https://tec.openplanner.team/stops/H4do202a"], ["https://tec.openplanner.team/stops/Lvepala1", "https://tec.openplanner.team/stops/Lvepala9"], ["https://tec.openplanner.team/stops/LWAfabr1", "https://tec.openplanner.team/stops/LWArege1"], ["https://tec.openplanner.team/stops/X748aca", "https://tec.openplanner.team/stops/X748aea"], ["https://tec.openplanner.team/stops/Csemacq1", "https://tec.openplanner.team/stops/Csemacq2"], ["https://tec.openplanner.team/stops/Bhevjac1", "https://tec.openplanner.team/stops/Bhevwzw1"], ["https://tec.openplanner.team/stops/X818agb", "https://tec.openplanner.team/stops/X818ama"], ["https://tec.openplanner.team/stops/N539bea", "https://tec.openplanner.team/stops/N540ara"], ["https://tec.openplanner.team/stops/N501eda", "https://tec.openplanner.team/stops/N501epa"], ["https://tec.openplanner.team/stops/Cgycorv2", "https://tec.openplanner.team/stops/Cmtduch2"], ["https://tec.openplanner.team/stops/Lhuecol2", "https://tec.openplanner.team/stops/Lhuwaid1"], ["https://tec.openplanner.team/stops/N145aea", "https://tec.openplanner.team/stops/N149acb"], ["https://tec.openplanner.team/stops/Cprsapv1", "https://tec.openplanner.team/stops/Cprsapv2"], ["https://tec.openplanner.team/stops/H4hq129a", "https://tec.openplanner.team/stops/H4hq130a"], ["https://tec.openplanner.team/stops/LlOkreu1", "https://tec.openplanner.team/stops/LnDdorf1"], ["https://tec.openplanner.team/stops/N516aia", "https://tec.openplanner.team/stops/N516aib"], ["https://tec.openplanner.team/stops/N551ana", "https://tec.openplanner.team/stops/N551aoa"], ["https://tec.openplanner.team/stops/Csdjeme1", "https://tec.openplanner.team/stops/Cvpsncb2"], ["https://tec.openplanner.team/stops/LHMchbl1", "https://tec.openplanner.team/stops/LHMhind1"], ["https://tec.openplanner.team/stops/H4ka182a", "https://tec.openplanner.team/stops/H4ka188b"], ["https://tec.openplanner.team/stops/LGOhevr2", "https://tec.openplanner.team/stops/LGOvill1"], ["https://tec.openplanner.team/stops/X911ada", "https://tec.openplanner.team/stops/X911aeb"], ["https://tec.openplanner.team/stops/Cgplutt2", "https://tec.openplanner.team/stops/H2gy108a"], ["https://tec.openplanner.team/stops/X828aaa", "https://tec.openplanner.team/stops/X830aab"], ["https://tec.openplanner.team/stops/N579aaa", "https://tec.openplanner.team/stops/N579ada"], ["https://tec.openplanner.team/stops/H4mo133b", "https://tec.openplanner.team/stops/H4mo145b"], ["https://tec.openplanner.team/stops/Lancolr1", "https://tec.openplanner.team/stops/Lanyser1"], ["https://tec.openplanner.team/stops/N503aca", "https://tec.openplanner.team/stops/N535aaa"], ["https://tec.openplanner.team/stops/N137aaa", "https://tec.openplanner.team/stops/N137aia"], ["https://tec.openplanner.team/stops/LaSbahn1", "https://tec.openplanner.team/stops/LhSkape2"], ["https://tec.openplanner.team/stops/LbO52--2", "https://tec.openplanner.team/stops/LdElamb1"], ["https://tec.openplanner.team/stops/N104acb", "https://tec.openplanner.team/stops/N118ava"], ["https://tec.openplanner.team/stops/LBEfagn1", "https://tec.openplanner.team/stops/LBEpier2"], ["https://tec.openplanner.team/stops/Cchmott2", "https://tec.openplanner.team/stops/Cchwarm1"], ["https://tec.openplanner.team/stops/X801bea", "https://tec.openplanner.team/stops/X801bfa"], ["https://tec.openplanner.team/stops/LVIcarm3", "https://tec.openplanner.team/stops/LVIhala3"], ["https://tec.openplanner.team/stops/N501fab", "https://tec.openplanner.team/stops/N501fdb"], ["https://tec.openplanner.team/stops/Baudhde2", "https://tec.openplanner.team/stops/Bwbfckr1"], ["https://tec.openplanner.team/stops/Ctusold1", "https://tec.openplanner.team/stops/NC28agb"], ["https://tec.openplanner.team/stops/Ljelamb1", "https://tec.openplanner.team/stops/Lsekubo2"], ["https://tec.openplanner.team/stops/NH21ada", "https://tec.openplanner.team/stops/NH21aea"], ["https://tec.openplanner.team/stops/Cbmind3", "https://tec.openplanner.team/stops/Cbmind4"], ["https://tec.openplanner.team/stops/LPbhaut1", "https://tec.openplanner.team/stops/LPbhaut2"], ["https://tec.openplanner.team/stops/LmDelek2", "https://tec.openplanner.team/stops/LvA30--2"], ["https://tec.openplanner.team/stops/LSEcent1", "https://tec.openplanner.team/stops/LSEvill2"], ["https://tec.openplanner.team/stops/Llgblon1", "https://tec.openplanner.team/stops/Llgbron1"], ["https://tec.openplanner.team/stops/H4hs135a", "https://tec.openplanner.team/stops/H4hs135b"], ["https://tec.openplanner.team/stops/H4ty278b", "https://tec.openplanner.team/stops/H4ty299e"], ["https://tec.openplanner.team/stops/X658agb", "https://tec.openplanner.team/stops/X658ahb"], ["https://tec.openplanner.team/stops/LCEplac2", "https://tec.openplanner.team/stops/LETmagn1"], ["https://tec.openplanner.team/stops/X734aka", "https://tec.openplanner.team/stops/X734aqa"], ["https://tec.openplanner.team/stops/LCeterm2", "https://tec.openplanner.team/stops/LLWmonu1"], ["https://tec.openplanner.team/stops/N134agb", "https://tec.openplanner.team/stops/N134aha"], ["https://tec.openplanner.team/stops/LCnvill1", "https://tec.openplanner.team/stops/LLUg82-1"], ["https://tec.openplanner.team/stops/X736abb", "https://tec.openplanner.team/stops/X952adb"], ["https://tec.openplanner.team/stops/LBichen2", "https://tec.openplanner.team/stops/LBivill2"], ["https://tec.openplanner.team/stops/H4am102c", "https://tec.openplanner.team/stops/H4am113a"], ["https://tec.openplanner.team/stops/Cmtfabi1", "https://tec.openplanner.team/stops/Cmtprey1"], ["https://tec.openplanner.team/stops/N425ada", "https://tec.openplanner.team/stops/N425adb"], ["https://tec.openplanner.team/stops/Clafaub1", "https://tec.openplanner.team/stops/Claptcf2"], ["https://tec.openplanner.team/stops/H4ea128a", "https://tec.openplanner.team/stops/H4ea129a"], ["https://tec.openplanner.team/stops/N232ata", "https://tec.openplanner.team/stops/N232bnb"], ["https://tec.openplanner.team/stops/Bcseche2", "https://tec.openplanner.team/stops/Bcsemon1"], ["https://tec.openplanner.team/stops/Cchba04", "https://tec.openplanner.team/stops/Cchba12"], ["https://tec.openplanner.team/stops/LTgbalm1", "https://tec.openplanner.team/stops/LTgvill1"], ["https://tec.openplanner.team/stops/X869aea", "https://tec.openplanner.team/stops/X871aab"], ["https://tec.openplanner.team/stops/H2pr114b", "https://tec.openplanner.team/stops/H2pr119b"], ["https://tec.openplanner.team/stops/H1gh149a", "https://tec.openplanner.team/stops/H1ms297b"], ["https://tec.openplanner.team/stops/LMsheid2", "https://tec.openplanner.team/stops/LPbtene1"], ["https://tec.openplanner.team/stops/Cchsud07", "https://tec.openplanner.team/stops/Cmlvitf2"], ["https://tec.openplanner.team/stops/H1so136c", "https://tec.openplanner.team/stops/H1so136d"], ["https://tec.openplanner.team/stops/Bottpma1", "https://tec.openplanner.team/stops/Bottvtc2"], ["https://tec.openplanner.team/stops/N230aib", "https://tec.openplanner.team/stops/N230aja"], ["https://tec.openplanner.team/stops/Lseberg2", "https://tec.openplanner.team/stops/Lseberg4"], ["https://tec.openplanner.team/stops/Bbauegl2", "https://tec.openplanner.team/stops/Bbaulos1"], ["https://tec.openplanner.team/stops/LPLbiol2", "https://tec.openplanner.team/stops/LPLline2"], ["https://tec.openplanner.team/stops/X663afa", "https://tec.openplanner.team/stops/X663afb"], ["https://tec.openplanner.team/stops/H2ca103c", "https://tec.openplanner.team/stops/H2ca105b"], ["https://tec.openplanner.team/stops/Cblcent1", "https://tec.openplanner.team/stops/Cblsall1"], ["https://tec.openplanner.team/stops/X548afa", "https://tec.openplanner.team/stops/X784ahb"], ["https://tec.openplanner.team/stops/X982afb", "https://tec.openplanner.team/stops/X982aja"], ["https://tec.openplanner.team/stops/Ljuargi1", "https://tec.openplanner.team/stops/Ljuhava2"], ["https://tec.openplanner.team/stops/H1he107a", "https://tec.openplanner.team/stops/H1he111b"], ["https://tec.openplanner.team/stops/X640ala", "https://tec.openplanner.team/stops/X640aua"], ["https://tec.openplanner.team/stops/Btubaig1", "https://tec.openplanner.team/stops/Btubbsc2"], ["https://tec.openplanner.team/stops/LeLbegl2", "https://tec.openplanner.team/stops/LkAbahn*"], ["https://tec.openplanner.team/stops/X947aca", "https://tec.openplanner.team/stops/X947aea"], ["https://tec.openplanner.team/stops/N513baa", "https://tec.openplanner.team/stops/N516ada"], ["https://tec.openplanner.team/stops/N524aka", "https://tec.openplanner.team/stops/N524ala"], ["https://tec.openplanner.team/stops/H1bb118b", "https://tec.openplanner.team/stops/H1bb121b"], ["https://tec.openplanner.team/stops/Cvp3til4", "https://tec.openplanner.team/stops/Cvpsncb2"], ["https://tec.openplanner.team/stops/H4ws159a", "https://tec.openplanner.team/stops/H4ws159b"], ["https://tec.openplanner.team/stops/Bndbpco2", "https://tec.openplanner.team/stops/Btlgbro2"], ["https://tec.openplanner.team/stops/Clooues3", "https://tec.openplanner.team/stops/Clooues4"], ["https://tec.openplanner.team/stops/Cnadepo1", "https://tec.openplanner.team/stops/Cnalava2"], ["https://tec.openplanner.team/stops/N350adb", "https://tec.openplanner.team/stops/N350aea"], ["https://tec.openplanner.team/stops/Llgcond1", "https://tec.openplanner.team/stops/Llgcond2"], ["https://tec.openplanner.team/stops/LVLm10-2", "https://tec.openplanner.team/stops/LVLmart1"], ["https://tec.openplanner.team/stops/H1ba107a", "https://tec.openplanner.team/stops/H1hh118b"], ["https://tec.openplanner.team/stops/Lflcime1", "https://tec.openplanner.team/stops/Lflcime2"], ["https://tec.openplanner.team/stops/H4co142a", "https://tec.openplanner.team/stops/H4fg116b"], ["https://tec.openplanner.team/stops/N528aoa", "https://tec.openplanner.team/stops/N538aab"], ["https://tec.openplanner.team/stops/H1ob335b", "https://tec.openplanner.team/stops/H1ob341a"], ["https://tec.openplanner.team/stops/H1eu101a", "https://tec.openplanner.team/stops/H1lb139b"], ["https://tec.openplanner.team/stops/N167aea", "https://tec.openplanner.team/stops/N167aeb"], ["https://tec.openplanner.team/stops/X638aqa", "https://tec.openplanner.team/stops/X652aaa"], ["https://tec.openplanner.team/stops/Bchadpt1", "https://tec.openplanner.team/stops/Bwlhpma1"], ["https://tec.openplanner.team/stops/N352aca", "https://tec.openplanner.team/stops/N352adb"], ["https://tec.openplanner.team/stops/LNCchev4", "https://tec.openplanner.team/stops/LNCpi331"], ["https://tec.openplanner.team/stops/X662aba", "https://tec.openplanner.team/stops/X663ahb"], ["https://tec.openplanner.team/stops/Bbeaap12", "https://tec.openplanner.team/stops/Bbeabme2"], ["https://tec.openplanner.team/stops/Llgbavi2", "https://tec.openplanner.team/stops/Llgkurt1"], ["https://tec.openplanner.team/stops/N507alb", "https://tec.openplanner.team/stops/N507alc"], ["https://tec.openplanner.team/stops/LElgerd6", "https://tec.openplanner.team/stops/LOucarr1"], ["https://tec.openplanner.team/stops/X659ama", "https://tec.openplanner.team/stops/X742aaa"], ["https://tec.openplanner.team/stops/H5is169a", "https://tec.openplanner.team/stops/H5is170b"], ["https://tec.openplanner.team/stops/Bmarcha1", "https://tec.openplanner.team/stops/Csawagn1"], ["https://tec.openplanner.team/stops/Ljestat2", "https://tec.openplanner.team/stops/Lseespe2"], ["https://tec.openplanner.team/stops/LCPone91", "https://tec.openplanner.team/stops/LCPoneu1"], ["https://tec.openplanner.team/stops/Bolgmpl1", "https://tec.openplanner.team/stops/Bolgrga1"], ["https://tec.openplanner.team/stops/Cchhopi1", "https://tec.openplanner.team/stops/Cchparc2"], ["https://tec.openplanner.team/stops/Lvtlomb1", "https://tec.openplanner.team/stops/Lvtlomb2"], ["https://tec.openplanner.team/stops/X604ahb", "https://tec.openplanner.team/stops/X604aia"], ["https://tec.openplanner.team/stops/N532aaa", "https://tec.openplanner.team/stops/N532aha"], ["https://tec.openplanner.team/stops/Bolgeva1", "https://tec.openplanner.team/stops/Bolgeva2"], ["https://tec.openplanner.team/stops/H5at109a", "https://tec.openplanner.team/stops/H5at109b"], ["https://tec.openplanner.team/stops/LaNmuhl2", "https://tec.openplanner.team/stops/LmNbirt1"], ["https://tec.openplanner.team/stops/N536acb", "https://tec.openplanner.team/stops/N537aib"], ["https://tec.openplanner.team/stops/N501hhb", "https://tec.openplanner.team/stops/N501mta"], ["https://tec.openplanner.team/stops/LHNgend1", "https://tec.openplanner.team/stops/LHNtill2"], ["https://tec.openplanner.team/stops/X658aca", "https://tec.openplanner.team/stops/X658ahb"], ["https://tec.openplanner.team/stops/X610aha", "https://tec.openplanner.team/stops/X610ahb"], ["https://tec.openplanner.team/stops/LHHpt--3", "https://tec.openplanner.team/stops/LHHpt--4"], ["https://tec.openplanner.team/stops/LHovill1", "https://tec.openplanner.team/stops/LJesole2"], ["https://tec.openplanner.team/stops/N506aca", "https://tec.openplanner.team/stops/N506bla"], ["https://tec.openplanner.team/stops/N353afa", "https://tec.openplanner.team/stops/N353afb"], ["https://tec.openplanner.team/stops/H4ef110b", "https://tec.openplanner.team/stops/H4or114b"], ["https://tec.openplanner.team/stops/H4av106c", "https://tec.openplanner.team/stops/H4wt160b"], ["https://tec.openplanner.team/stops/Bbchdev2", "https://tec.openplanner.team/stops/Bbchdra2"], ["https://tec.openplanner.team/stops/Cctjust2", "https://tec.openplanner.team/stops/Cctrjus1"], ["https://tec.openplanner.team/stops/LSDgris2", "https://tec.openplanner.team/stops/LSDvill2"], ["https://tec.openplanner.team/stops/LLrbuis1", "https://tec.openplanner.team/stops/LSMlier2"], ["https://tec.openplanner.team/stops/H1hr115b", "https://tec.openplanner.team/stops/H1ne137a"], ["https://tec.openplanner.team/stops/H4mo135a", "https://tec.openplanner.team/stops/H4mo162a"], ["https://tec.openplanner.team/stops/X612adb", "https://tec.openplanner.team/stops/X623abb"], ["https://tec.openplanner.team/stops/Bwatgge2", "https://tec.openplanner.team/stops/Bwatric2"], ["https://tec.openplanner.team/stops/X723aca", "https://tec.openplanner.team/stops/X723ana"], ["https://tec.openplanner.team/stops/Clsstpi1", "https://tec.openplanner.team/stops/H1ls106b"], ["https://tec.openplanner.team/stops/Cvrfcho1", "https://tec.openplanner.team/stops/Cvrfcho2"], ["https://tec.openplanner.team/stops/N212aib", "https://tec.openplanner.team/stops/N212aja"], ["https://tec.openplanner.team/stops/NL68adb", "https://tec.openplanner.team/stops/NL68agb"], ["https://tec.openplanner.team/stops/N308apb", "https://tec.openplanner.team/stops/N308bib"], ["https://tec.openplanner.team/stops/Cchblne1", "https://tec.openplanner.team/stops/Cchtour1"], ["https://tec.openplanner.team/stops/N501ljb", "https://tec.openplanner.team/stops/N501lnb"], ["https://tec.openplanner.team/stops/N201aia", "https://tec.openplanner.team/stops/N201akb"], ["https://tec.openplanner.team/stops/H1le118a", "https://tec.openplanner.team/stops/H1le120a"], ["https://tec.openplanner.team/stops/X619aaa", "https://tec.openplanner.team/stops/X619abb"], ["https://tec.openplanner.team/stops/H4mo182a", "https://tec.openplanner.team/stops/H4mo191a"], ["https://tec.openplanner.team/stops/H1ol145a", "https://tec.openplanner.team/stops/H1ol146a"], ["https://tec.openplanner.team/stops/X618aoa", "https://tec.openplanner.team/stops/X618aob"], ["https://tec.openplanner.team/stops/X739abb", "https://tec.openplanner.team/stops/X739acb"], ["https://tec.openplanner.team/stops/Caistro2", "https://tec.openplanner.team/stops/Crsaise1"], ["https://tec.openplanner.team/stops/H4pq113a", "https://tec.openplanner.team/stops/H4pq116a"], ["https://tec.openplanner.team/stops/Livfays2", "https://tec.openplanner.team/stops/LRagrch1"], ["https://tec.openplanner.team/stops/Ccacoup2", "https://tec.openplanner.team/stops/Ccaegli4"], ["https://tec.openplanner.team/stops/Brixaug2", "https://tec.openplanner.team/stops/Brixaug3"], ["https://tec.openplanner.team/stops/H2ll190a", "https://tec.openplanner.team/stops/H2ll257d"], ["https://tec.openplanner.team/stops/H4bu108b", "https://tec.openplanner.team/stops/H4hg155a"], ["https://tec.openplanner.team/stops/LVEroum1", "https://tec.openplanner.team/stops/LVEstat1"], ["https://tec.openplanner.team/stops/N540adb", "https://tec.openplanner.team/stops/N540aha"], ["https://tec.openplanner.team/stops/Cjuloos1", "https://tec.openplanner.team/stops/Cjuvand1"], ["https://tec.openplanner.team/stops/Bjodgai1", "https://tec.openplanner.team/stops/Bsrgcur1"], ["https://tec.openplanner.team/stops/LBWfusi2", "https://tec.openplanner.team/stops/LFChuis2"], ["https://tec.openplanner.team/stops/H2fa104a", "https://tec.openplanner.team/stops/H2fa106a"], ["https://tec.openplanner.team/stops/Blindel1", "https://tec.openplanner.team/stops/Blindel4"], ["https://tec.openplanner.team/stops/X725ara", "https://tec.openplanner.team/stops/X725aua"], ["https://tec.openplanner.team/stops/H1mv239b", "https://tec.openplanner.team/stops/H1mv242b"], ["https://tec.openplanner.team/stops/Ctmdema1", "https://tec.openplanner.team/stops/Ctmmonu2"], ["https://tec.openplanner.team/stops/LPUchpl2", "https://tec.openplanner.team/stops/LRepous2"], ["https://tec.openplanner.team/stops/Cctgiss1", "https://tec.openplanner.team/stops/Cctmine2"], ["https://tec.openplanner.team/stops/Llgfoss2", "https://tec.openplanner.team/stops/Llghull2"], ["https://tec.openplanner.team/stops/X609aea", "https://tec.openplanner.team/stops/X609aeb"], ["https://tec.openplanner.team/stops/X747aac", "https://tec.openplanner.team/stops/X747aba"], ["https://tec.openplanner.team/stops/X637acb", "https://tec.openplanner.team/stops/X637aka"], ["https://tec.openplanner.team/stops/H4ty334a", "https://tec.openplanner.team/stops/H4ty336a"], ["https://tec.openplanner.team/stops/Cjuchli4", "https://tec.openplanner.team/stops/Cjugend4"], ["https://tec.openplanner.team/stops/LMsgara1", "https://tec.openplanner.team/stops/LMspont2"], ["https://tec.openplanner.team/stops/X750afb", "https://tec.openplanner.team/stops/X750aha"], ["https://tec.openplanner.team/stops/Blasbgc1", "https://tec.openplanner.team/stops/Blasbti1"], ["https://tec.openplanner.team/stops/Cblbaiv1", "https://tec.openplanner.team/stops/Cmcegli3"], ["https://tec.openplanner.team/stops/X359ala", "https://tec.openplanner.team/stops/X359alb"], ["https://tec.openplanner.team/stops/H1fy119a", "https://tec.openplanner.team/stops/H1wi150a"], ["https://tec.openplanner.team/stops/Bmarvil1", "https://tec.openplanner.team/stops/Bmarvil2"], ["https://tec.openplanner.team/stops/Bblaljo1", "https://tec.openplanner.team/stops/Bblapje2"], ["https://tec.openplanner.team/stops/H4bv145c", "https://tec.openplanner.team/stops/H5at111b"], ["https://tec.openplanner.team/stops/LLStrid3", "https://tec.openplanner.team/stops/LLStrid4"], ["https://tec.openplanner.team/stops/X902ana", "https://tec.openplanner.team/stops/X902bca"], ["https://tec.openplanner.team/stops/LATcorn1", "https://tec.openplanner.team/stops/LATcorp2"], ["https://tec.openplanner.team/stops/Lheente2", "https://tec.openplanner.team/stops/Lhelait1"], ["https://tec.openplanner.team/stops/Lvicitw1", "https://tec.openplanner.team/stops/Lvisere1"], ["https://tec.openplanner.team/stops/Lsemyrt1", "https://tec.openplanner.team/stops/Lsemyrt2"], ["https://tec.openplanner.team/stops/H1wa143a", "https://tec.openplanner.team/stops/H1wl121b"], ["https://tec.openplanner.team/stops/H1cv103a", "https://tec.openplanner.team/stops/H1cv104a"], ["https://tec.openplanner.team/stops/Llgbaro2", "https://tec.openplanner.team/stops/Llgware2"], ["https://tec.openplanner.team/stops/X948ala", "https://tec.openplanner.team/stops/X948alb"], ["https://tec.openplanner.team/stops/Cwfbarr1", "https://tec.openplanner.team/stops/N584bqa"], ["https://tec.openplanner.team/stops/Cstmarz1", "https://tec.openplanner.team/stops/Cstmarz2"], ["https://tec.openplanner.team/stops/X721aca", "https://tec.openplanner.team/stops/X721ajb"], ["https://tec.openplanner.team/stops/N211ala", "https://tec.openplanner.team/stops/N211azb"], ["https://tec.openplanner.team/stops/Bhoealt1", "https://tec.openplanner.team/stops/Bzluegl1"], ["https://tec.openplanner.team/stops/N131aea", "https://tec.openplanner.team/stops/N131aeb"], ["https://tec.openplanner.team/stops/Bmrlcch1", "https://tec.openplanner.team/stops/Bmrlcch2"], ["https://tec.openplanner.team/stops/X903aea", "https://tec.openplanner.team/stops/X903afb"], ["https://tec.openplanner.team/stops/X921afb", "https://tec.openplanner.team/stops/X921akb"], ["https://tec.openplanner.team/stops/H1bu143b", "https://tec.openplanner.team/stops/H2le150a"], ["https://tec.openplanner.team/stops/X952aba", "https://tec.openplanner.team/stops/X952abb"], ["https://tec.openplanner.team/stops/X805aga", "https://tec.openplanner.team/stops/X805aha"], ["https://tec.openplanner.team/stops/LsCkirc1", "https://tec.openplanner.team/stops/LsCkirc2"], ["https://tec.openplanner.team/stops/H1eu103b", "https://tec.openplanner.team/stops/H1eu104a"], ["https://tec.openplanner.team/stops/H1mk113a", "https://tec.openplanner.team/stops/H1mk114b"], ["https://tec.openplanner.team/stops/NL30aka", "https://tec.openplanner.team/stops/NL30akb"], ["https://tec.openplanner.team/stops/Cctbois1", "https://tec.openplanner.team/stops/Cctkais1"], ["https://tec.openplanner.team/stops/LeYmosc1", "https://tec.openplanner.team/stops/LeYmosc2"], ["https://tec.openplanner.team/stops/Bndbdra2", "https://tec.openplanner.team/stops/Btlgbro1"], ["https://tec.openplanner.team/stops/LWZeg--2", "https://tec.openplanner.team/stops/X261abb"], ["https://tec.openplanner.team/stops/X640ada", "https://tec.openplanner.team/stops/X640ana"], ["https://tec.openplanner.team/stops/Lagjard2", "https://tec.openplanner.team/stops/Lagpaix2"], ["https://tec.openplanner.team/stops/H3lr111a", "https://tec.openplanner.team/stops/H3lr112a"], ["https://tec.openplanner.team/stops/H1as102b", "https://tec.openplanner.team/stops/H1hg181a"], ["https://tec.openplanner.team/stops/LlgOPER1", "https://tec.openplanner.team/stops/LlgOPER4"], ["https://tec.openplanner.team/stops/X757ajb", "https://tec.openplanner.team/stops/X757amb"], ["https://tec.openplanner.team/stops/N331aia", "https://tec.openplanner.team/stops/N331akb"], ["https://tec.openplanner.team/stops/X996aaa", "https://tec.openplanner.team/stops/X996acb"], ["https://tec.openplanner.team/stops/H3so157a", "https://tec.openplanner.team/stops/H3so159b"], ["https://tec.openplanner.team/stops/X636aca", "https://tec.openplanner.team/stops/X670aqa"], ["https://tec.openplanner.team/stops/H1cv100a", "https://tec.openplanner.team/stops/H1cv103a"], ["https://tec.openplanner.team/stops/Bnodtir1", "https://tec.openplanner.team/stops/Boplsma3"], ["https://tec.openplanner.team/stops/X786adb", "https://tec.openplanner.team/stops/X786aea"], ["https://tec.openplanner.team/stops/N501fby", "https://tec.openplanner.team/stops/N501fqb"], ["https://tec.openplanner.team/stops/X923aba", "https://tec.openplanner.team/stops/X923ama"], ["https://tec.openplanner.team/stops/N522ama", "https://tec.openplanner.team/stops/N522ana"], ["https://tec.openplanner.team/stops/Cgycorv4", "https://tec.openplanner.team/stops/Cgyobse2"], ["https://tec.openplanner.team/stops/N525ada", "https://tec.openplanner.team/stops/N525adb"], ["https://tec.openplanner.team/stops/NL75aaa", "https://tec.openplanner.team/stops/NL75ada"], ["https://tec.openplanner.team/stops/H1ht122b", "https://tec.openplanner.team/stops/H1ht124b"], ["https://tec.openplanner.team/stops/LaSneuh2", "https://tec.openplanner.team/stops/LhGfrie2"], ["https://tec.openplanner.team/stops/Cjudevo2", "https://tec.openplanner.team/stops/Cjuhden4"], ["https://tec.openplanner.team/stops/LLxcrem1", "https://tec.openplanner.team/stops/LLxnive2"], ["https://tec.openplanner.team/stops/LPTblan2", "https://tec.openplanner.team/stops/LPTgran2"], ["https://tec.openplanner.team/stops/Lsebrun1", "https://tec.openplanner.team/stops/Lsephar2"], ["https://tec.openplanner.team/stops/Canmonu2", "https://tec.openplanner.team/stops/Canmonu5"], ["https://tec.openplanner.team/stops/LLAbure1", "https://tec.openplanner.team/stops/LPleclu1"], ["https://tec.openplanner.team/stops/H1gy114b", "https://tec.openplanner.team/stops/H1le119a"], ["https://tec.openplanner.team/stops/X908ama", "https://tec.openplanner.team/stops/X908amb"], ["https://tec.openplanner.team/stops/X747aia", "https://tec.openplanner.team/stops/X747aja"], ["https://tec.openplanner.team/stops/Cthwaib1", "https://tec.openplanner.team/stops/Cthwaib2"], ["https://tec.openplanner.team/stops/X775aic", "https://tec.openplanner.team/stops/X775aja"], ["https://tec.openplanner.team/stops/N564aea", "https://tec.openplanner.team/stops/N585ahb"], ["https://tec.openplanner.team/stops/LFfeg--1", "https://tec.openplanner.team/stops/LPRfond2"], ["https://tec.openplanner.team/stops/N357afa", "https://tec.openplanner.team/stops/X351adb"], ["https://tec.openplanner.team/stops/Clbchlo2", "https://tec.openplanner.team/stops/Clbpepi2"], ["https://tec.openplanner.team/stops/N127aia", "https://tec.openplanner.team/stops/N135bda"], ["https://tec.openplanner.team/stops/N511ajb", "https://tec.openplanner.team/stops/N511akb"], ["https://tec.openplanner.team/stops/N511aia", "https://tec.openplanner.team/stops/N511ama"], ["https://tec.openplanner.team/stops/H1br125a", "https://tec.openplanner.team/stops/H1wz173b"], ["https://tec.openplanner.team/stops/LAo161-2", "https://tec.openplanner.team/stops/LTPtroi1"], ["https://tec.openplanner.team/stops/N323aba", "https://tec.openplanner.team/stops/N323abb"], ["https://tec.openplanner.team/stops/LOucarr3", "https://tec.openplanner.team/stops/LOuplac3"], ["https://tec.openplanner.team/stops/X754ana", "https://tec.openplanner.team/stops/X754ava"], ["https://tec.openplanner.team/stops/X601ava", "https://tec.openplanner.team/stops/X601avb"], ["https://tec.openplanner.team/stops/H4cl112b", "https://tec.openplanner.team/stops/H4vx360a"], ["https://tec.openplanner.team/stops/N152abb", "https://tec.openplanner.team/stops/N152ade"], ["https://tec.openplanner.team/stops/LMOelva3", "https://tec.openplanner.team/stops/LMOs45-1"], ["https://tec.openplanner.team/stops/H1je211a", "https://tec.openplanner.team/stops/H1je217b"], ["https://tec.openplanner.team/stops/NL77aca", "https://tec.openplanner.team/stops/NL77acb"], ["https://tec.openplanner.team/stops/LHoetie1", "https://tec.openplanner.team/stops/LHoetie2"], ["https://tec.openplanner.team/stops/H2le147a", "https://tec.openplanner.team/stops/H2le147b"], ["https://tec.openplanner.team/stops/X982arb", "https://tec.openplanner.team/stops/X982cca"], ["https://tec.openplanner.team/stops/Lstpole2", "https://tec.openplanner.team/stops/Lstscie1"], ["https://tec.openplanner.team/stops/Bllngar5", "https://tec.openplanner.team/stops/Bllngar7"], ["https://tec.openplanner.team/stops/LAWcite2", "https://tec.openplanner.team/stops/LAWmc--2"], ["https://tec.openplanner.team/stops/LTIdamr2", "https://tec.openplanner.team/stops/LTIecma2"], ["https://tec.openplanner.team/stops/X801bka", "https://tec.openplanner.team/stops/X802ajb"], ["https://tec.openplanner.team/stops/Cmahotv1", "https://tec.openplanner.team/stops/Cmamarc1"], ["https://tec.openplanner.team/stops/NL72aaa", "https://tec.openplanner.team/stops/NL72aab"], ["https://tec.openplanner.team/stops/H2sv219a", "https://tec.openplanner.team/stops/H2sv220b"], ["https://tec.openplanner.team/stops/N351aib", "https://tec.openplanner.team/stops/N351ajb"], ["https://tec.openplanner.team/stops/Bottgar4", "https://tec.openplanner.team/stops/Bottvil2"], ["https://tec.openplanner.team/stops/Bclgeco1", "https://tec.openplanner.team/stops/Bclgfva2"], ["https://tec.openplanner.team/stops/LCschen1", "https://tec.openplanner.team/stops/LCseg--1"], ["https://tec.openplanner.team/stops/H5at134b", "https://tec.openplanner.team/stops/H5at142a"], ["https://tec.openplanner.team/stops/LrEborn1", "https://tec.openplanner.team/stops/LrEfeck2"], ["https://tec.openplanner.team/stops/LPLcond2", "https://tec.openplanner.team/stops/LRRchen1"], ["https://tec.openplanner.team/stops/H4by117a", "https://tec.openplanner.team/stops/H4tu172b"], ["https://tec.openplanner.team/stops/Cthstre2", "https://tec.openplanner.team/stops/H1lo119a"], ["https://tec.openplanner.team/stops/LHNcreh1", "https://tec.openplanner.team/stops/LHNgare2"], ["https://tec.openplanner.team/stops/Ccaegli4", "https://tec.openplanner.team/stops/N162abb"], ["https://tec.openplanner.team/stops/N339aaa", "https://tec.openplanner.team/stops/N339aca"], ["https://tec.openplanner.team/stops/H4ft133b", "https://tec.openplanner.team/stops/H4ft134b"], ["https://tec.openplanner.team/stops/NL73aab", "https://tec.openplanner.team/stops/NL73aba"], ["https://tec.openplanner.team/stops/H4hx109a", "https://tec.openplanner.team/stops/H4hx109b"], ["https://tec.openplanner.team/stops/N514ahb", "https://tec.openplanner.team/stops/N514amb"], ["https://tec.openplanner.team/stops/X342ahb", "https://tec.openplanner.team/stops/X354abb"], ["https://tec.openplanner.team/stops/H2mg135a", "https://tec.openplanner.team/stops/H2mg144a"], ["https://tec.openplanner.team/stops/Cmldupu2", "https://tec.openplanner.team/stops/NC01afb"], ["https://tec.openplanner.team/stops/H4ev125b", "https://tec.openplanner.team/stops/H4hx116b"], ["https://tec.openplanner.team/stops/Cmlfstt2", "https://tec.openplanner.team/stops/Cmlrous2"], ["https://tec.openplanner.team/stops/N511aoc", "https://tec.openplanner.team/stops/N511aua"], ["https://tec.openplanner.team/stops/N222adb", "https://tec.openplanner.team/stops/X222add"], ["https://tec.openplanner.team/stops/LBImili1", "https://tec.openplanner.team/stops/LBImili2"], ["https://tec.openplanner.team/stops/Bblmwma1", "https://tec.openplanner.team/stops/Bblmwma2"], ["https://tec.openplanner.team/stops/N539ahb", "https://tec.openplanner.team/stops/N539arb"], ["https://tec.openplanner.team/stops/LHAdeho1", "https://tec.openplanner.team/stops/LHAmonu2"], ["https://tec.openplanner.team/stops/H4va233a", "https://tec.openplanner.team/stops/H4vd230b"], ["https://tec.openplanner.team/stops/LTPcarr1", "https://tec.openplanner.team/stops/LTPnoup2"], ["https://tec.openplanner.team/stops/Lrcastr4", "https://tec.openplanner.team/stops/Lrclant3"], ["https://tec.openplanner.team/stops/N532aia", "https://tec.openplanner.team/stops/N532akb"], ["https://tec.openplanner.team/stops/Llgbonn2", "https://tec.openplanner.team/stops/Llgdony2"], ["https://tec.openplanner.team/stops/N513alb", "https://tec.openplanner.team/stops/N514aja"], ["https://tec.openplanner.team/stops/N509ata", "https://tec.openplanner.team/stops/N511aia"], ["https://tec.openplanner.team/stops/Cchoues1", "https://tec.openplanner.team/stops/Cchoues5"], ["https://tec.openplanner.team/stops/Lenhosp1", "https://tec.openplanner.team/stops/Lenhosp2"], ["https://tec.openplanner.team/stops/N534acb", "https://tec.openplanner.team/stops/N543bya"], ["https://tec.openplanner.team/stops/Blindel4", "https://tec.openplanner.team/stops/Blindel5"], ["https://tec.openplanner.team/stops/Llgbuis1", "https://tec.openplanner.team/stops/Lscstan1"], ["https://tec.openplanner.team/stops/Llghec-1", "https://tec.openplanner.team/stops/Llglonh2"], ["https://tec.openplanner.team/stops/X804aza", "https://tec.openplanner.team/stops/X804bab"], ["https://tec.openplanner.team/stops/X657aia", "https://tec.openplanner.team/stops/X670ahb"], ["https://tec.openplanner.team/stops/Bbrlmez2", "https://tec.openplanner.team/stops/Bhaless1"], ["https://tec.openplanner.team/stops/X826adb", "https://tec.openplanner.team/stops/X826add"], ["https://tec.openplanner.team/stops/Bbgelre1", "https://tec.openplanner.team/stops/Bwavbmo1"], ["https://tec.openplanner.team/stops/LTNcarr1", "https://tec.openplanner.team/stops/LTNeau-1"], ["https://tec.openplanner.team/stops/Bgligra2", "https://tec.openplanner.team/stops/Btlbegl1"], ["https://tec.openplanner.team/stops/X721ana", "https://tec.openplanner.team/stops/X721arb"], ["https://tec.openplanner.team/stops/LAicarr2", "https://tec.openplanner.team/stops/LENalun2"], ["https://tec.openplanner.team/stops/Cjubert1", "https://tec.openplanner.team/stops/CMbert1"], ["https://tec.openplanner.team/stops/N232ava", "https://tec.openplanner.team/stops/N232awa"], ["https://tec.openplanner.team/stops/LOUbarr3", "https://tec.openplanner.team/stops/LOUbleu1"], ["https://tec.openplanner.team/stops/H4ag106a", "https://tec.openplanner.team/stops/H4ag106b"], ["https://tec.openplanner.team/stops/Clodrio1", "https://tec.openplanner.team/stops/Clodrio2"], ["https://tec.openplanner.team/stops/H1th180a", "https://tec.openplanner.team/stops/H3so153a"], ["https://tec.openplanner.team/stops/X804aca", "https://tec.openplanner.team/stops/X804acb"], ["https://tec.openplanner.team/stops/Cmastch1", "https://tec.openplanner.team/stops/Cmastch2"], ["https://tec.openplanner.team/stops/LOUbleu1", "https://tec.openplanner.team/stops/LOUpres2"], ["https://tec.openplanner.team/stops/X613aab", "https://tec.openplanner.team/stops/X623akb"], ["https://tec.openplanner.team/stops/H2le176a", "https://tec.openplanner.team/stops/H2le176b"], ["https://tec.openplanner.team/stops/H4co134a", "https://tec.openplanner.team/stops/H4co157b"], ["https://tec.openplanner.team/stops/Lvecite1", "https://tec.openplanner.team/stops/Lveepar2"], ["https://tec.openplanner.team/stops/H4ty354a", "https://tec.openplanner.team/stops/H4ty354b"], ["https://tec.openplanner.team/stops/N141aja", "https://tec.openplanner.team/stops/N141ajb"], ["https://tec.openplanner.team/stops/X804aaa", "https://tec.openplanner.team/stops/X818acb"], ["https://tec.openplanner.team/stops/Cnahous1", "https://tec.openplanner.team/stops/Cnahous2"], ["https://tec.openplanner.team/stops/X850ama", "https://tec.openplanner.team/stops/X850amb"], ["https://tec.openplanner.team/stops/LPAbrun1", "https://tec.openplanner.team/stops/LPAvill2"], ["https://tec.openplanner.team/stops/Lfhchaf2", "https://tec.openplanner.team/stops/Lfhchaf4"], ["https://tec.openplanner.team/stops/H4ir162a", "https://tec.openplanner.team/stops/H5at129a"], ["https://tec.openplanner.team/stops/Lemhuet1", "https://tec.openplanner.team/stops/Lemhuet2"], ["https://tec.openplanner.team/stops/Bblafrn2", "https://tec.openplanner.team/stops/Bblajap1"], ["https://tec.openplanner.team/stops/LGemari2", "https://tec.openplanner.team/stops/LMsvill2"], ["https://tec.openplanner.team/stops/Lbeloui2", "https://tec.openplanner.team/stops/LSAeg--2"], ["https://tec.openplanner.team/stops/X725asb", "https://tec.openplanner.team/stops/X725atb"], ["https://tec.openplanner.team/stops/LGmcent1", "https://tec.openplanner.team/stops/LGmhumb1"], ["https://tec.openplanner.team/stops/X361aba", "https://tec.openplanner.team/stops/X371aia"], ["https://tec.openplanner.team/stops/X633aja", "https://tec.openplanner.team/stops/X633ama"], ["https://tec.openplanner.team/stops/Cctmine1", "https://tec.openplanner.team/stops/Ccurtra1"], ["https://tec.openplanner.team/stops/H4re225a", "https://tec.openplanner.team/stops/H4re226a"], ["https://tec.openplanner.team/stops/N506afb", "https://tec.openplanner.team/stops/N556ada"], ["https://tec.openplanner.team/stops/H1ro132a", "https://tec.openplanner.team/stops/H1ro140b"], ["https://tec.openplanner.team/stops/LeUgulc1", "https://tec.openplanner.team/stops/LeUwetz2"], ["https://tec.openplanner.team/stops/Bmsgbay2", "https://tec.openplanner.team/stops/Bmsgpfo2"], ["https://tec.openplanner.team/stops/Canresi1", "https://tec.openplanner.team/stops/Canresi2"], ["https://tec.openplanner.team/stops/X723adb", "https://tec.openplanner.team/stops/X723aeb"], ["https://tec.openplanner.team/stops/LWEchat2", "https://tec.openplanner.team/stops/LWEhang1"], ["https://tec.openplanner.team/stops/LBTfoot1", "https://tec.openplanner.team/stops/LCHsaul1"], ["https://tec.openplanner.team/stops/X633aia", "https://tec.openplanner.team/stops/X653aea"], ["https://tec.openplanner.team/stops/Bgermco1", "https://tec.openplanner.team/stops/Bgrhcen1"], ["https://tec.openplanner.team/stops/X625aaa", "https://tec.openplanner.team/stops/X625afb"], ["https://tec.openplanner.team/stops/Brebcha1", "https://tec.openplanner.team/stops/Brebgpl1"], ["https://tec.openplanner.team/stops/X812aba", "https://tec.openplanner.team/stops/X812agb"], ["https://tec.openplanner.team/stops/X886aaa", "https://tec.openplanner.team/stops/X886aha"], ["https://tec.openplanner.team/stops/LMNeg--2", "https://tec.openplanner.team/stops/LMNgend2"], ["https://tec.openplanner.team/stops/Cmazsnc1", "https://tec.openplanner.team/stops/Cmazsnc2"], ["https://tec.openplanner.team/stops/H4pq114a", "https://tec.openplanner.team/stops/H4pq117a"], ["https://tec.openplanner.team/stops/LSZclem1", "https://tec.openplanner.team/stops/LSZpont2"], ["https://tec.openplanner.team/stops/Lvteg--1", "https://tec.openplanner.team/stops/Lvtegli*"], ["https://tec.openplanner.team/stops/N353aeb", "https://tec.openplanner.team/stops/N353afd"], ["https://tec.openplanner.team/stops/X741abb", "https://tec.openplanner.team/stops/X752aab"], ["https://tec.openplanner.team/stops/H4ro156a", "https://tec.openplanner.team/stops/H5pe146b"], ["https://tec.openplanner.team/stops/H2ca101a", "https://tec.openplanner.team/stops/H2ca111b"], ["https://tec.openplanner.team/stops/LdEkreu2", "https://tec.openplanner.team/stops/LeIdeid1"], ["https://tec.openplanner.team/stops/X224aab", "https://tec.openplanner.team/stops/X224acb"], ["https://tec.openplanner.team/stops/X908aka", "https://tec.openplanner.team/stops/X908ama"], ["https://tec.openplanner.team/stops/N551ala", "https://tec.openplanner.team/stops/N551aob"], ["https://tec.openplanner.team/stops/Bezegar2", "https://tec.openplanner.team/stops/Bneesjo2"], ["https://tec.openplanner.team/stops/LaMades2", "https://tec.openplanner.team/stops/LaMbrei1"], ["https://tec.openplanner.team/stops/N521agb", "https://tec.openplanner.team/stops/N521aia"], ["https://tec.openplanner.team/stops/X721amb", "https://tec.openplanner.team/stops/X721anb"], ["https://tec.openplanner.team/stops/Bgntcha2", "https://tec.openplanner.team/stops/Bgntpos1"], ["https://tec.openplanner.team/stops/Cciethi1", "https://tec.openplanner.team/stops/Cciferr1"], ["https://tec.openplanner.team/stops/Lbocime1", "https://tec.openplanner.team/stops/Lbomc--5"], ["https://tec.openplanner.team/stops/LSebott2", "https://tec.openplanner.team/stops/LSemc--2"], ["https://tec.openplanner.team/stops/H2tr250a", "https://tec.openplanner.team/stops/H2tr252b"], ["https://tec.openplanner.team/stops/X718aia", "https://tec.openplanner.team/stops/X718aib"], ["https://tec.openplanner.team/stops/Cgyrrep1", "https://tec.openplanner.team/stops/Cgyrrep2"], ["https://tec.openplanner.team/stops/NL76aoa", "https://tec.openplanner.team/stops/NL80avb"], ["https://tec.openplanner.team/stops/LCTcret1", "https://tec.openplanner.team/stops/LCTmonu1"], ["https://tec.openplanner.team/stops/Canplch1", "https://tec.openplanner.team/stops/Canplch3"], ["https://tec.openplanner.team/stops/H1ba108a", "https://tec.openplanner.team/stops/H1ba108b"], ["https://tec.openplanner.team/stops/X813acb", "https://tec.openplanner.team/stops/X813ada"], ["https://tec.openplanner.team/stops/N501bna", "https://tec.openplanner.team/stops/N501bua"], ["https://tec.openplanner.team/stops/Ccomiau2", "https://tec.openplanner.team/stops/Cronova1"], ["https://tec.openplanner.team/stops/X601bqa", "https://tec.openplanner.team/stops/X601dha"], ["https://tec.openplanner.team/stops/LFTneur*", "https://tec.openplanner.team/stops/LNAbois2"], ["https://tec.openplanner.team/stops/X664aja", "https://tec.openplanner.team/stops/X666aca"], ["https://tec.openplanner.team/stops/Blkbbvh1", "https://tec.openplanner.team/stops/Bucccre1"], ["https://tec.openplanner.team/stops/Csdjeme2", "https://tec.openplanner.team/stops/Cvpsncb1"], ["https://tec.openplanner.team/stops/LSZheid1", "https://tec.openplanner.team/stops/LSZheid2"], ["https://tec.openplanner.team/stops/H5qu139b", "https://tec.openplanner.team/stops/H5qu147a"], ["https://tec.openplanner.team/stops/N506afa", "https://tec.openplanner.team/stops/N506afb"], ["https://tec.openplanner.team/stops/Bclgvmo1", "https://tec.openplanner.team/stops/Bcrbast1"], ["https://tec.openplanner.team/stops/Loufleu2", "https://tec.openplanner.team/stops/Loujouh1"], ["https://tec.openplanner.team/stops/H1er109a", "https://tec.openplanner.team/stops/H1so142a"], ["https://tec.openplanner.team/stops/H1pa100b", "https://tec.openplanner.team/stops/H1pa117a"], ["https://tec.openplanner.team/stops/Ltibell1", "https://tec.openplanner.team/stops/Ltiplat1"], ["https://tec.openplanner.team/stops/H4te251a", "https://tec.openplanner.team/stops/H4te260a"], ["https://tec.openplanner.team/stops/LBVzand1", "https://tec.openplanner.team/stops/LBVzand4"], ["https://tec.openplanner.team/stops/Bsamc7d1", "https://tec.openplanner.team/stops/Bsamegl2"], ["https://tec.openplanner.team/stops/Crebien2", "https://tec.openplanner.team/stops/Crestan1"], ["https://tec.openplanner.team/stops/H4re226a", "https://tec.openplanner.team/stops/H4re226b"], ["https://tec.openplanner.team/stops/N209aab", "https://tec.openplanner.team/stops/N209aba"], ["https://tec.openplanner.team/stops/Lhrathe2", "https://tec.openplanner.team/stops/Lhrmilm2"], ["https://tec.openplanner.team/stops/Loubiez1", "https://tec.openplanner.team/stops/Louduna*"], ["https://tec.openplanner.team/stops/N201ata", "https://tec.openplanner.team/stops/N201atb"], ["https://tec.openplanner.team/stops/Bhmmcor1", "https://tec.openplanner.team/stops/Bhmmcsc1"], ["https://tec.openplanner.team/stops/Lhrmemo1", "https://tec.openplanner.team/stops/Lhrmemo2"], ["https://tec.openplanner.team/stops/X601aia", "https://tec.openplanner.team/stops/X601aib"], ["https://tec.openplanner.team/stops/Cwfbarr1", "https://tec.openplanner.team/stops/NC12aab"], ["https://tec.openplanner.team/stops/X669agd", "https://tec.openplanner.team/stops/X672afa"], ["https://tec.openplanner.team/stops/LHUecte2", "https://tec.openplanner.team/stops/LHUpost2"], ["https://tec.openplanner.team/stops/N501lsa", "https://tec.openplanner.team/stops/N501lsb"], ["https://tec.openplanner.team/stops/Bgemga07", "https://tec.openplanner.team/stops/Bgemga08"], ["https://tec.openplanner.team/stops/H1ry134b", "https://tec.openplanner.team/stops/H1ry136a"], ["https://tec.openplanner.team/stops/N244ada", "https://tec.openplanner.team/stops/N244afa"], ["https://tec.openplanner.team/stops/H4ef113a", "https://tec.openplanner.team/stops/H4ef138a"], ["https://tec.openplanner.team/stops/LNCimpe1", "https://tec.openplanner.team/stops/LNCpi331"], ["https://tec.openplanner.team/stops/N554aaa", "https://tec.openplanner.team/stops/N554aab"], ["https://tec.openplanner.team/stops/N537akb", "https://tec.openplanner.team/stops/N562bja"], ["https://tec.openplanner.team/stops/LFNlato1", "https://tec.openplanner.team/stops/LPOeg--2"], ["https://tec.openplanner.team/stops/X619aia", "https://tec.openplanner.team/stops/X620aea"], ["https://tec.openplanner.team/stops/LXHadam1", "https://tec.openplanner.team/stops/LXHbois2"], ["https://tec.openplanner.team/stops/LESryon2", "https://tec.openplanner.team/stops/LSdcent2"], ["https://tec.openplanner.team/stops/Lglvand2", "https://tec.openplanner.team/stops/Llgjenn3"], ["https://tec.openplanner.team/stops/H1ev112a", "https://tec.openplanner.team/stops/H1ev116b"], ["https://tec.openplanner.team/stops/H1ms300a", "https://tec.openplanner.team/stops/H1ms307a"], ["https://tec.openplanner.team/stops/Bnivall2", "https://tec.openplanner.team/stops/Bnivchh2"], ["https://tec.openplanner.team/stops/X358aba", "https://tec.openplanner.team/stops/X358afa"], ["https://tec.openplanner.team/stops/X664akb", "https://tec.openplanner.team/stops/X664atb"], ["https://tec.openplanner.team/stops/LSG111-2", "https://tec.openplanner.team/stops/LSG172-1"], ["https://tec.openplanner.team/stops/Lsnhorl1", "https://tec.openplanner.team/stops/Ltihorl1"], ["https://tec.openplanner.team/stops/X947aaa", "https://tec.openplanner.team/stops/X947aab"], ["https://tec.openplanner.team/stops/LrDhind2", "https://tec.openplanner.team/stops/LrDzoll4"], ["https://tec.openplanner.team/stops/LbUjost1", "https://tec.openplanner.team/stops/LhUrich1"], ["https://tec.openplanner.team/stops/Cfldand2", "https://tec.openplanner.team/stops/Cflmart1"], ["https://tec.openplanner.team/stops/H4do104a", "https://tec.openplanner.team/stops/H4ev118a"], ["https://tec.openplanner.team/stops/X779aba", "https://tec.openplanner.team/stops/X779aia"], ["https://tec.openplanner.team/stops/Llghong2", "https://tec.openplanner.team/stops/Llgphol3"], ["https://tec.openplanner.team/stops/H5el105a", "https://tec.openplanner.team/stops/H5el111a"], ["https://tec.openplanner.team/stops/H2ll199a", "https://tec.openplanner.team/stops/H2ll199b"], ["https://tec.openplanner.team/stops/X664aea", "https://tec.openplanner.team/stops/X667adb"], ["https://tec.openplanner.team/stops/LMspont1", "https://tec.openplanner.team/stops/LMspont2"], ["https://tec.openplanner.team/stops/X261abb", "https://tec.openplanner.team/stops/X261acb"], ["https://tec.openplanner.team/stops/N531asa", "https://tec.openplanner.team/stops/N531asc"], ["https://tec.openplanner.team/stops/H1cu119b", "https://tec.openplanner.team/stops/H1cu127a"], ["https://tec.openplanner.team/stops/Bgligli2", "https://tec.openplanner.team/stops/Bgliron1"], ["https://tec.openplanner.team/stops/N501hdb", "https://tec.openplanner.team/stops/N501zea"], ["https://tec.openplanner.team/stops/Blascvi1", "https://tec.openplanner.team/stops/Bohncha2"], ["https://tec.openplanner.team/stops/X601bcb", "https://tec.openplanner.team/stops/X601bhb"], ["https://tec.openplanner.team/stops/N584azb", "https://tec.openplanner.team/stops/N584bob"], ["https://tec.openplanner.team/stops/Blimeur2", "https://tec.openplanner.team/stops/Blmlqlo1"], ["https://tec.openplanner.team/stops/LLrmc--1", "https://tec.openplanner.team/stops/LLrmc--2"], ["https://tec.openplanner.team/stops/X764aca", "https://tec.openplanner.team/stops/X764acb"], ["https://tec.openplanner.team/stops/Caicalv1", "https://tec.openplanner.team/stops/Cprsapv1"], ["https://tec.openplanner.team/stops/NL75ada", "https://tec.openplanner.team/stops/NL75adb"], ["https://tec.openplanner.team/stops/N501fpa", "https://tec.openplanner.team/stops/N501fpb"], ["https://tec.openplanner.team/stops/Beclbse1", "https://tec.openplanner.team/stops/H2ec101a"], ["https://tec.openplanner.team/stops/LSZroqu2", "https://tec.openplanner.team/stops/LSZsolw2"], ["https://tec.openplanner.team/stops/Bmlnbpr2", "https://tec.openplanner.team/stops/Bmlncle1"], ["https://tec.openplanner.team/stops/X362adb", "https://tec.openplanner.team/stops/X363acb"], ["https://tec.openplanner.team/stops/H5bl142b", "https://tec.openplanner.team/stops/H5bl143b"], ["https://tec.openplanner.team/stops/N501esa", "https://tec.openplanner.team/stops/N501esy"], ["https://tec.openplanner.team/stops/N270ada", "https://tec.openplanner.team/stops/N270aec"], ["https://tec.openplanner.team/stops/Lseconc2", "https://tec.openplanner.team/stops/Lseresi2"], ["https://tec.openplanner.team/stops/N501hjc", "https://tec.openplanner.team/stops/N501hlz"], ["https://tec.openplanner.team/stops/NC11ama", "https://tec.openplanner.team/stops/NC11aob"], ["https://tec.openplanner.team/stops/Cmaegal1", "https://tec.openplanner.team/stops/Crobass1"], ["https://tec.openplanner.team/stops/H1hv135b", "https://tec.openplanner.team/stops/H1mk123a"], ["https://tec.openplanner.team/stops/X659aya", "https://tec.openplanner.team/stops/X659ayb"], ["https://tec.openplanner.team/stops/Bnilpie1", "https://tec.openplanner.team/stops/Bnilpie2"], ["https://tec.openplanner.team/stops/H1bd100b", "https://tec.openplanner.team/stops/H1bd102a"], ["https://tec.openplanner.team/stops/Btgregl1", "https://tec.openplanner.team/stops/N584aha"], ["https://tec.openplanner.team/stops/Cmlaili2", "https://tec.openplanner.team/stops/NC02apa"], ["https://tec.openplanner.team/stops/Cjuphil1", "https://tec.openplanner.team/stops/Cralimi2"], ["https://tec.openplanner.team/stops/Cchdigu1", "https://tec.openplanner.team/stops/Cchdigu4"], ["https://tec.openplanner.team/stops/Baudvdu1", "https://tec.openplanner.team/stops/Baudwav1"], ["https://tec.openplanner.team/stops/H1hc126b", "https://tec.openplanner.team/stops/H1po132b"], ["https://tec.openplanner.team/stops/Lstbota3", "https://tec.openplanner.team/stops/LTIecma1"], ["https://tec.openplanner.team/stops/N150aec", "https://tec.openplanner.team/stops/N150aed"], ["https://tec.openplanner.team/stops/LENcroi2", "https://tec.openplanner.team/stops/LENmc--1"], ["https://tec.openplanner.team/stops/LBNeu711", "https://tec.openplanner.team/stops/LMeeg--1"], ["https://tec.openplanner.team/stops/N153abb", "https://tec.openplanner.team/stops/N153ada"], ["https://tec.openplanner.team/stops/N117aaa", "https://tec.openplanner.team/stops/N117aoc"], ["https://tec.openplanner.team/stops/LScchpl1", "https://tec.openplanner.team/stops/LVTforg2"], ["https://tec.openplanner.team/stops/X954aga", "https://tec.openplanner.team/stops/X954agb"], ["https://tec.openplanner.team/stops/N346aaa", "https://tec.openplanner.team/stops/X346ala"], ["https://tec.openplanner.team/stops/LYegeor1", "https://tec.openplanner.team/stops/LYegeor3"], ["https://tec.openplanner.team/stops/N549afa", "https://tec.openplanner.team/stops/N578aaa"], ["https://tec.openplanner.team/stops/Bgzdgth1", "https://tec.openplanner.team/stops/Bpecvme2"], ["https://tec.openplanner.team/stops/X758aba", "https://tec.openplanner.team/stops/X758aha"], ["https://tec.openplanner.team/stops/H2mm140b", "https://tec.openplanner.team/stops/H2mo129b"], ["https://tec.openplanner.team/stops/H4br107b", "https://tec.openplanner.team/stops/H4br110b"], ["https://tec.openplanner.team/stops/X759aca", "https://tec.openplanner.team/stops/X759afa"], ["https://tec.openplanner.team/stops/N301anb", "https://tec.openplanner.team/stops/N301aob"], ["https://tec.openplanner.team/stops/X654aab", "https://tec.openplanner.team/stops/X654aeb"], ["https://tec.openplanner.team/stops/Bjancha1", "https://tec.openplanner.team/stops/Bolpmre1"], ["https://tec.openplanner.team/stops/Cmychau2", "https://tec.openplanner.team/stops/Cmyfoym2"], ["https://tec.openplanner.team/stops/Bbealbu4", "https://tec.openplanner.team/stops/Bbeapim1"], ["https://tec.openplanner.team/stops/LSPfrai2", "https://tec.openplanner.team/stops/LSPmari2"], ["https://tec.openplanner.team/stops/Lagbeno2", "https://tec.openplanner.team/stops/Lagbeno5"], ["https://tec.openplanner.team/stops/X624afa", "https://tec.openplanner.team/stops/X624aga"], ["https://tec.openplanner.team/stops/X721aaa", "https://tec.openplanner.team/stops/X763aib"], ["https://tec.openplanner.team/stops/X636beb", "https://tec.openplanner.team/stops/X649abb"], ["https://tec.openplanner.team/stops/H1ge116b", "https://tec.openplanner.team/stops/H1ge151a"], ["https://tec.openplanner.team/stops/Bmalsme1", "https://tec.openplanner.team/stops/Bsrbtil2"], ["https://tec.openplanner.team/stops/Chpcarp1", "https://tec.openplanner.team/stops/Chpfoli5"], ["https://tec.openplanner.team/stops/Llghaut2", "https://tec.openplanner.team/stops/Llgseel2"], ["https://tec.openplanner.team/stops/Cgon51", "https://tec.openplanner.team/stops/Cgoson12"], ["https://tec.openplanner.team/stops/H2ll195a", "https://tec.openplanner.team/stops/H2sv218a"], ["https://tec.openplanner.team/stops/H4lg100a", "https://tec.openplanner.team/stops/H4ta135a"], ["https://tec.openplanner.team/stops/Llghoch1", "https://tec.openplanner.team/stops/Llghoch2"], ["https://tec.openplanner.team/stops/X817acb", "https://tec.openplanner.team/stops/X817aeb"], ["https://tec.openplanner.team/stops/Cfcchen2", "https://tec.openplanner.team/stops/Cfcecol3"], ["https://tec.openplanner.team/stops/H1by108c", "https://tec.openplanner.team/stops/H1by108d"], ["https://tec.openplanner.team/stops/X631aaa", "https://tec.openplanner.team/stops/X631aab"], ["https://tec.openplanner.team/stops/N165aaa", "https://tec.openplanner.team/stops/N165aab"], ["https://tec.openplanner.team/stops/H4va231a", "https://tec.openplanner.team/stops/H4va231b"], ["https://tec.openplanner.team/stops/X759aba", "https://tec.openplanner.team/stops/X759aca"], ["https://tec.openplanner.team/stops/N154aca", "https://tec.openplanner.team/stops/N154acb"], ["https://tec.openplanner.team/stops/X813abb", "https://tec.openplanner.team/stops/X857aba"], ["https://tec.openplanner.team/stops/H4ty276a", "https://tec.openplanner.team/stops/H4ty276b"], ["https://tec.openplanner.team/stops/X653abb", "https://tec.openplanner.team/stops/X653aea"], ["https://tec.openplanner.team/stops/LSTchal4", "https://tec.openplanner.team/stops/LSTcomm2"], ["https://tec.openplanner.team/stops/Bpercsp2", "https://tec.openplanner.team/stops/Bperrma2"], ["https://tec.openplanner.team/stops/N528alb", "https://tec.openplanner.team/stops/N528awb"], ["https://tec.openplanner.team/stops/Lgdblom1", "https://tec.openplanner.team/stops/Lgdrena1"], ["https://tec.openplanner.team/stops/LHYdogn2", "https://tec.openplanner.team/stops/LSpfond2"], ["https://tec.openplanner.team/stops/LHAleru1", "https://tec.openplanner.team/stops/LHAleru2"], ["https://tec.openplanner.team/stops/LBjpech2", "https://tec.openplanner.team/stops/X561aaa"], ["https://tec.openplanner.team/stops/H4bh103b", "https://tec.openplanner.team/stops/H4bh105b"], ["https://tec.openplanner.team/stops/Lch179-1", "https://tec.openplanner.team/stops/LHOmc--2"], ["https://tec.openplanner.team/stops/Cmychap4", "https://tec.openplanner.team/stops/Cmychau1"], ["https://tec.openplanner.team/stops/Lghberl2", "https://tec.openplanner.team/stops/Ljecocc2"], ["https://tec.openplanner.team/stops/LJU51--2", "https://tec.openplanner.team/stops/Llaflot2"], ["https://tec.openplanner.team/stops/H1gh145a", "https://tec.openplanner.team/stops/H1gh145b"], ["https://tec.openplanner.team/stops/X730aaa", "https://tec.openplanner.team/stops/X736aia"], ["https://tec.openplanner.team/stops/X733aaa", "https://tec.openplanner.team/stops/X733aba"], ["https://tec.openplanner.team/stops/X796aca", "https://tec.openplanner.team/stops/X796acc"], ["https://tec.openplanner.team/stops/LHNathe1", "https://tec.openplanner.team/stops/LHNecpr1"], ["https://tec.openplanner.team/stops/LTHcime1", "https://tec.openplanner.team/stops/LTHmaka1"], ["https://tec.openplanner.team/stops/Ctaphaz1", "https://tec.openplanner.team/stops/N543cbc"], ["https://tec.openplanner.team/stops/Ladfran3", "https://tec.openplanner.team/stops/Ldimont2"], ["https://tec.openplanner.team/stops/LNCrami1", "https://tec.openplanner.team/stops/LRRrimi1"], ["https://tec.openplanner.team/stops/Bblamsj2", "https://tec.openplanner.team/stops/Bblamsj3"], ["https://tec.openplanner.team/stops/LVLhalb1", "https://tec.openplanner.team/stops/LVLhalb2"], ["https://tec.openplanner.team/stops/LGHplai2", "https://tec.openplanner.team/stops/LTPwann2"], ["https://tec.openplanner.team/stops/Lmlec--2", "https://tec.openplanner.team/stops/Lmlmaqu1"], ["https://tec.openplanner.team/stops/N542agb", "https://tec.openplanner.team/stops/N542ahb"], ["https://tec.openplanner.team/stops/Btstbes2", "https://tec.openplanner.team/stops/Btstw751"], ["https://tec.openplanner.team/stops/LWAalou1", "https://tec.openplanner.team/stops/LWAchpg2"], ["https://tec.openplanner.team/stops/H4lh161b", "https://tec.openplanner.team/stops/H5wo127b"], ["https://tec.openplanner.team/stops/Bgntcha1", "https://tec.openplanner.team/stops/Bsgetri1"], ["https://tec.openplanner.team/stops/Bnivbne1", "https://tec.openplanner.team/stops/Bptrmar1"], ["https://tec.openplanner.team/stops/H2mo127c", "https://tec.openplanner.team/stops/H2mo129a"], ["https://tec.openplanner.team/stops/X937aja", "https://tec.openplanner.team/stops/X937ajb"], ["https://tec.openplanner.team/stops/LCRecmo2", "https://tec.openplanner.team/stops/LCRgdrt2"], ["https://tec.openplanner.team/stops/N501dtb", "https://tec.openplanner.team/stops/N501dwa"], ["https://tec.openplanner.team/stops/Cclchap1", "https://tec.openplanner.team/stops/Cclrgiv1"], ["https://tec.openplanner.team/stops/X750bhb", "https://tec.openplanner.team/stops/X750bja"], ["https://tec.openplanner.team/stops/N548agd", "https://tec.openplanner.team/stops/N548aha"], ["https://tec.openplanner.team/stops/H4ne135a", "https://tec.openplanner.team/stops/H4ne136a"], ["https://tec.openplanner.team/stops/LeUgulc2", "https://tec.openplanner.team/stops/LeUwetz2"], ["https://tec.openplanner.team/stops/LBglign2", "https://tec.openplanner.team/stops/LBgnach1"], ["https://tec.openplanner.team/stops/LHMsipp2", "https://tec.openplanner.team/stops/LMNheme2"], ["https://tec.openplanner.team/stops/N519amb", "https://tec.openplanner.team/stops/N519apb"], ["https://tec.openplanner.team/stops/LLNcruc1", "https://tec.openplanner.team/stops/LLNogne2"], ["https://tec.openplanner.team/stops/X652ada", "https://tec.openplanner.team/stops/X652aha"], ["https://tec.openplanner.team/stops/H2pe156a", "https://tec.openplanner.team/stops/H2re167b"], ["https://tec.openplanner.team/stops/LSPClem1", "https://tec.openplanner.team/stops/LSPsorb1"], ["https://tec.openplanner.team/stops/Cflcoro2", "https://tec.openplanner.team/stops/Cflmarq2"], ["https://tec.openplanner.team/stops/N531ahb", "https://tec.openplanner.team/stops/N531ara"], ["https://tec.openplanner.team/stops/N516aca", "https://tec.openplanner.team/stops/N516ala"], ["https://tec.openplanner.team/stops/Lhueg--1", "https://tec.openplanner.team/stops/Lhutill1"], ["https://tec.openplanner.team/stops/H4bo115a", "https://tec.openplanner.team/stops/H4gr109a"], ["https://tec.openplanner.team/stops/N211apa", "https://tec.openplanner.team/stops/N211arb"], ["https://tec.openplanner.team/stops/X637aea", "https://tec.openplanner.team/stops/X637aeb"], ["https://tec.openplanner.team/stops/Btanbth1", "https://tec.openplanner.team/stops/Btanbth2"], ["https://tec.openplanner.team/stops/Cfcbosq1", "https://tec.openplanner.team/stops/Cfcchen1"], ["https://tec.openplanner.team/stops/N236ama", "https://tec.openplanner.team/stops/N236apb"], ["https://tec.openplanner.team/stops/Ctm4che1", "https://tec.openplanner.team/stops/Ctmsncb2"], ["https://tec.openplanner.team/stops/Blonegl1", "https://tec.openplanner.team/stops/Bptblma2"], ["https://tec.openplanner.team/stops/LROmorf1", "https://tec.openplanner.team/stops/LROmorf2"], ["https://tec.openplanner.team/stops/Lvearle2", "https://tec.openplanner.team/stops/Lvefluc2"], ["https://tec.openplanner.team/stops/N244ama", "https://tec.openplanner.team/stops/N244aoa"], ["https://tec.openplanner.team/stops/N501cpa", "https://tec.openplanner.team/stops/N501kfb"], ["https://tec.openplanner.team/stops/X640aib", "https://tec.openplanner.team/stops/X640ata"], ["https://tec.openplanner.team/stops/Bcbqgar1", "https://tec.openplanner.team/stops/Bcbqgar2"], ["https://tec.openplanner.team/stops/H2fa105b", "https://tec.openplanner.team/stops/H2fa107a"], ["https://tec.openplanner.team/stops/Cfrempe2", "https://tec.openplanner.team/stops/Cfrfaub1"], ["https://tec.openplanner.team/stops/LAOpres2", "https://tec.openplanner.team/stops/LLRgdma2"], ["https://tec.openplanner.team/stops/LCLgend1", "https://tec.openplanner.team/stops/NL78afb"], ["https://tec.openplanner.team/stops/LLxconj1", "https://tec.openplanner.team/stops/LLxcrem1"], ["https://tec.openplanner.team/stops/N501aba", "https://tec.openplanner.team/stops/N502acb"], ["https://tec.openplanner.team/stops/Boplcar1", "https://tec.openplanner.team/stops/Boplcar4"], ["https://tec.openplanner.team/stops/X824aac", "https://tec.openplanner.team/stops/X824aba"], ["https://tec.openplanner.team/stops/LoEbach1", "https://tec.openplanner.team/stops/LoEbach2"], ["https://tec.openplanner.team/stops/Cmamarc1", "https://tec.openplanner.team/stops/Cmamarc2"], ["https://tec.openplanner.team/stops/N509awb", "https://tec.openplanner.team/stops/N511aub"], ["https://tec.openplanner.team/stops/H1gy112a", "https://tec.openplanner.team/stops/H1gy114a"], ["https://tec.openplanner.team/stops/N106aka", "https://tec.openplanner.team/stops/N106alb"], ["https://tec.openplanner.team/stops/LPutins2", "https://tec.openplanner.team/stops/X792abb"], ["https://tec.openplanner.team/stops/Bohngen1", "https://tec.openplanner.team/stops/Bohnman2"], ["https://tec.openplanner.team/stops/Lbralbe1", "https://tec.openplanner.team/stops/Llgbarb2"], ["https://tec.openplanner.team/stops/LFFpier2", "https://tec.openplanner.team/stops/LJEniho2"], ["https://tec.openplanner.team/stops/Cgomart1", "https://tec.openplanner.team/stops/Cgostro2"], ["https://tec.openplanner.team/stops/X727aaa", "https://tec.openplanner.team/stops/X767afa"], ["https://tec.openplanner.team/stops/Llgaba-1", "https://tec.openplanner.team/stops/Llgatel1"], ["https://tec.openplanner.team/stops/Lfhdone1", "https://tec.openplanner.team/stops/Lpocent1"], ["https://tec.openplanner.team/stops/Cramadi1", "https://tec.openplanner.team/stops/Cravign4"], ["https://tec.openplanner.team/stops/H5at116a", "https://tec.openplanner.team/stops/H5at120b"], ["https://tec.openplanner.team/stops/LVvbouv1", "https://tec.openplanner.team/stops/X796aba"], ["https://tec.openplanner.team/stops/LRmrode1", "https://tec.openplanner.team/stops/LRmrode2"], ["https://tec.openplanner.team/stops/X398aca", "https://tec.openplanner.team/stops/X398acb"], ["https://tec.openplanner.team/stops/H4hq132a", "https://tec.openplanner.team/stops/H4hs135a"], ["https://tec.openplanner.team/stops/Bgzdgth1", "https://tec.openplanner.team/stops/Bgzdgth2"], ["https://tec.openplanner.team/stops/Bbaucai1", "https://tec.openplanner.team/stops/Bbautri2"], ["https://tec.openplanner.team/stops/LHAbont2", "https://tec.openplanner.team/stops/LHAmonu1"], ["https://tec.openplanner.team/stops/Lceegth2", "https://tec.openplanner.team/stops/Lcesart1"], ["https://tec.openplanner.team/stops/LaMgeme*", "https://tec.openplanner.team/stops/LaMthei2"], ["https://tec.openplanner.team/stops/LtHfrie1", "https://tec.openplanner.team/stops/LtHkreu3"], ["https://tec.openplanner.team/stops/LVEdTEC1", "https://tec.openplanner.team/stops/LYegeor2"], ["https://tec.openplanner.team/stops/LEBeg--1", "https://tec.openplanner.team/stops/LEBmoul1"], ["https://tec.openplanner.team/stops/X601cba", "https://tec.openplanner.team/stops/X601ccc"], ["https://tec.openplanner.team/stops/X750aua", "https://tec.openplanner.team/stops/X750bha"], ["https://tec.openplanner.team/stops/N501hca", "https://tec.openplanner.team/stops/N501hka"], ["https://tec.openplanner.team/stops/X721ala", "https://tec.openplanner.team/stops/X721alb"], ["https://tec.openplanner.team/stops/H1ba112a", "https://tec.openplanner.team/stops/H1ch142b"], ["https://tec.openplanner.team/stops/LCOcarr1", "https://tec.openplanner.team/stops/LCOcrom1"], ["https://tec.openplanner.team/stops/Cgogb1", "https://tec.openplanner.team/stops/Cgon52"], ["https://tec.openplanner.team/stops/X941aaa", "https://tec.openplanner.team/stops/X941aga"], ["https://tec.openplanner.team/stops/Ladjaur1", "https://tec.openplanner.team/stops/Ladthom1"], ["https://tec.openplanner.team/stops/Loutras1", "https://tec.openplanner.team/stops/Lscbarg1"], ["https://tec.openplanner.team/stops/Crbrgar1", "https://tec.openplanner.team/stops/Cvlgrta2"], ["https://tec.openplanner.team/stops/X721aea", "https://tec.openplanner.team/stops/X721afb"], ["https://tec.openplanner.team/stops/X775ada", "https://tec.openplanner.team/stops/X775afa"], ["https://tec.openplanner.team/stops/X224afa", "https://tec.openplanner.team/stops/X398abb"], ["https://tec.openplanner.team/stops/N894aaa", "https://tec.openplanner.team/stops/N894aab"], ["https://tec.openplanner.team/stops/X896aib", "https://tec.openplanner.team/stops/X995aca"], ["https://tec.openplanner.team/stops/X940agb", "https://tec.openplanner.team/stops/X946abb"], ["https://tec.openplanner.team/stops/Blanath1", "https://tec.openplanner.team/stops/Blangar1"], ["https://tec.openplanner.team/stops/LXofans2", "https://tec.openplanner.team/stops/LXoharz3"], ["https://tec.openplanner.team/stops/LHuetat2", "https://tec.openplanner.team/stops/LHupont2"], ["https://tec.openplanner.team/stops/N501hxz", "https://tec.openplanner.team/stops/N501lza"], ["https://tec.openplanner.team/stops/X910acb", "https://tec.openplanner.team/stops/X910adb"], ["https://tec.openplanner.team/stops/LMNeg--1", "https://tec.openplanner.team/stops/LMNpt--2"], ["https://tec.openplanner.team/stops/LGLdeni2", "https://tec.openplanner.team/stops/LGLobor1"], ["https://tec.openplanner.team/stops/Cjxetri1", "https://tec.openplanner.team/stops/Cjxvalh1"], ["https://tec.openplanner.team/stops/H4ta122a", "https://tec.openplanner.team/stops/H4ta132a"], ["https://tec.openplanner.team/stops/H1ba109a", "https://tec.openplanner.team/stops/H1ba115a"], ["https://tec.openplanner.team/stops/LAWdefu3", "https://tec.openplanner.team/stops/LAWdefu4"], ["https://tec.openplanner.team/stops/X614bca", "https://tec.openplanner.team/stops/X614bda"], ["https://tec.openplanner.team/stops/X619aab", "https://tec.openplanner.team/stops/X619acb"], ["https://tec.openplanner.team/stops/H4hn113b", "https://tec.openplanner.team/stops/H4hn115b"], ["https://tec.openplanner.team/stops/Lagcile1", "https://tec.openplanner.team/stops/Llgcond2"], ["https://tec.openplanner.team/stops/Bbcodam3", "https://tec.openplanner.team/stops/H2ec110b"], ["https://tec.openplanner.team/stops/LSGcarr1", "https://tec.openplanner.team/stops/LSGcarr2"], ["https://tec.openplanner.team/stops/Bsgeegl2", "https://tec.openplanner.team/stops/Bsgeegl4"], ["https://tec.openplanner.team/stops/N501iez", "https://tec.openplanner.team/stops/N501ihy"], ["https://tec.openplanner.team/stops/Lmopeup1", "https://tec.openplanner.team/stops/Lmopota1"], ["https://tec.openplanner.team/stops/LCRchpl1", "https://tec.openplanner.team/stops/LCRchpl2"], ["https://tec.openplanner.team/stops/X804aya", "https://tec.openplanner.team/stops/X804baa"], ["https://tec.openplanner.team/stops/NH21aga", "https://tec.openplanner.team/stops/NH21ahb"], ["https://tec.openplanner.team/stops/H1ev112b", "https://tec.openplanner.team/stops/H1ev114a"], ["https://tec.openplanner.team/stops/Ccoacar1", "https://tec.openplanner.team/stops/Ccogode2"], ["https://tec.openplanner.team/stops/LsHfrie1", "https://tec.openplanner.team/stops/LsHkreu3"], ["https://tec.openplanner.team/stops/LmHabzw2", "https://tec.openplanner.team/stops/LmHvenn1"], ["https://tec.openplanner.team/stops/X624aha", "https://tec.openplanner.team/stops/X624alb"], ["https://tec.openplanner.team/stops/LVHtill2", "https://tec.openplanner.team/stops/LVsbrux1"], ["https://tec.openplanner.team/stops/LBSnouw1", "https://tec.openplanner.team/stops/LRGgend3"], ["https://tec.openplanner.team/stops/Canmonu4", "https://tec.openplanner.team/stops/Canmonu5"], ["https://tec.openplanner.team/stops/Cbmgare1", "https://tec.openplanner.team/stops/H1tt109b"], ["https://tec.openplanner.team/stops/X908asa", "https://tec.openplanner.team/stops/X908asb"], ["https://tec.openplanner.team/stops/LPAvill1", "https://tec.openplanner.team/stops/LPAvill2"], ["https://tec.openplanner.team/stops/LrDsage2", "https://tec.openplanner.team/stops/LrDschl1"], ["https://tec.openplanner.team/stops/X948aib", "https://tec.openplanner.team/stops/X948aic"], ["https://tec.openplanner.team/stops/Lbbbuse2", "https://tec.openplanner.team/stops/Lbbremy1"], ["https://tec.openplanner.team/stops/Ltiplat2", "https://tec.openplanner.team/stops/Ltitill*"], ["https://tec.openplanner.team/stops/LrAiter2", "https://tec.openplanner.team/stops/LrAkape2"], ["https://tec.openplanner.team/stops/LBzvill1", "https://tec.openplanner.team/stops/LCewaut1"], ["https://tec.openplanner.team/stops/LLbmalm2", "https://tec.openplanner.team/stops/LrEkais2"], ["https://tec.openplanner.team/stops/X649aab", "https://tec.openplanner.team/stops/X670aqa"], ["https://tec.openplanner.team/stops/N353aab", "https://tec.openplanner.team/stops/N353abb"], ["https://tec.openplanner.team/stops/LVIhall1", "https://tec.openplanner.team/stops/LVItroi*"], ["https://tec.openplanner.team/stops/LBkgrae2", "https://tec.openplanner.team/stops/LMNpt--2"], ["https://tec.openplanner.team/stops/LkEl3251", "https://tec.openplanner.team/stops/LlNbusc1"], ["https://tec.openplanner.team/stops/N501hjb", "https://tec.openplanner.team/stops/N501lcz"], ["https://tec.openplanner.team/stops/N163aaa", "https://tec.openplanner.team/stops/N163aab"], ["https://tec.openplanner.team/stops/Cbmgrav2", "https://tec.openplanner.team/stops/H1tt109b"], ["https://tec.openplanner.team/stops/Bgemga08", "https://tec.openplanner.team/stops/N522bve"], ["https://tec.openplanner.team/stops/X904ada", "https://tec.openplanner.team/stops/X992aka"], ["https://tec.openplanner.team/stops/N501etb", "https://tec.openplanner.team/stops/N501etc"], ["https://tec.openplanner.team/stops/Bpernov2", "https://tec.openplanner.team/stops/Bperwil1"], ["https://tec.openplanner.team/stops/H1wa132a", "https://tec.openplanner.team/stops/H1wa132b"], ["https://tec.openplanner.team/stops/N501msb", "https://tec.openplanner.team/stops/N501mtb"], ["https://tec.openplanner.team/stops/X767ada", "https://tec.openplanner.team/stops/X767aea"], ["https://tec.openplanner.team/stops/Lvehodi1", "https://tec.openplanner.team/stops/Lvehodi4"], ["https://tec.openplanner.team/stops/Lsmecol2", "https://tec.openplanner.team/stops/Lsmeg--2"], ["https://tec.openplanner.team/stops/Btubaig1", "https://tec.openplanner.team/stops/Btubsal1"], ["https://tec.openplanner.team/stops/X833aab", "https://tec.openplanner.team/stops/X834acb"], ["https://tec.openplanner.team/stops/Btslcel2", "https://tec.openplanner.team/stops/Btstbbu1"], ["https://tec.openplanner.team/stops/Lch179-1", "https://tec.openplanner.team/stops/Lch179-2"], ["https://tec.openplanner.team/stops/Bsaumlp1", "https://tec.openplanner.team/stops/Bwlhswc2"], ["https://tec.openplanner.team/stops/X999afa", "https://tec.openplanner.team/stops/X999afc"], ["https://tec.openplanner.team/stops/N579abb", "https://tec.openplanner.team/stops/N579afa"], ["https://tec.openplanner.team/stops/N534bsa", "https://tec.openplanner.team/stops/N534bva"], ["https://tec.openplanner.team/stops/Lhrhosp2", "https://tec.openplanner.team/stops/Lhrmilm2"], ["https://tec.openplanner.team/stops/LFrec--1", "https://tec.openplanner.team/stops/LNEpass2"], ["https://tec.openplanner.team/stops/X793aga", "https://tec.openplanner.team/stops/X793agb"], ["https://tec.openplanner.team/stops/N509awa", "https://tec.openplanner.team/stops/N509bfb"], ["https://tec.openplanner.team/stops/Cchba2", "https://tec.openplanner.team/stops/Cchvhau2"], ["https://tec.openplanner.team/stops/N501grg", "https://tec.openplanner.team/stops/N501heb"], ["https://tec.openplanner.team/stops/Lmocail1", "https://tec.openplanner.team/stops/Lsnecco1"], ["https://tec.openplanner.team/stops/X725afc", "https://tec.openplanner.team/stops/X725aff"], ["https://tec.openplanner.team/stops/X715aga", "https://tec.openplanner.team/stops/X715ahb"], ["https://tec.openplanner.team/stops/X547ata", "https://tec.openplanner.team/stops/X547atb"], ["https://tec.openplanner.team/stops/Cthenmi1", "https://tec.openplanner.team/stops/Cthenmi2"], ["https://tec.openplanner.team/stops/Lsefori1", "https://tec.openplanner.team/stops/Lsemaha1"], ["https://tec.openplanner.team/stops/H4oe150a", "https://tec.openplanner.team/stops/H5el114b"], ["https://tec.openplanner.team/stops/X840aaa", "https://tec.openplanner.team/stops/X840aab"], ["https://tec.openplanner.team/stops/N508aca", "https://tec.openplanner.team/stops/N508ada"], ["https://tec.openplanner.team/stops/H4hx116b", "https://tec.openplanner.team/stops/H4lu125b"], ["https://tec.openplanner.team/stops/H4rc234b", "https://tec.openplanner.team/stops/H4rc234c"], ["https://tec.openplanner.team/stops/Blimbet3", "https://tec.openplanner.team/stops/Blmlqlo1"], ["https://tec.openplanner.team/stops/X901aaa", "https://tec.openplanner.team/stops/X901bia"], ["https://tec.openplanner.team/stops/H2hg154c", "https://tec.openplanner.team/stops/H2mi122a"], ["https://tec.openplanner.team/stops/N309aca", "https://tec.openplanner.team/stops/N343aaa"], ["https://tec.openplanner.team/stops/Lsnhoco1", "https://tec.openplanner.team/stops/Lsntvbi2"], ["https://tec.openplanner.team/stops/Ccufos72", "https://tec.openplanner.team/stops/Ccupetp2"], ["https://tec.openplanner.team/stops/H5el104a", "https://tec.openplanner.team/stops/H5el104b"], ["https://tec.openplanner.team/stops/Louegla2", "https://tec.openplanner.team/stops/Louencl1"], ["https://tec.openplanner.team/stops/Cbcegli1", "https://tec.openplanner.team/stops/Cbcegli6"], ["https://tec.openplanner.team/stops/H1do117b", "https://tec.openplanner.team/stops/H1do131c"], ["https://tec.openplanner.team/stops/X879aba", "https://tec.openplanner.team/stops/X879ada"], ["https://tec.openplanner.team/stops/Bnivpri1", "https://tec.openplanner.team/stops/Bnivpri2"], ["https://tec.openplanner.team/stops/X601bnb", "https://tec.openplanner.team/stops/X601boa"], ["https://tec.openplanner.team/stops/LSlbail2", "https://tec.openplanner.team/stops/X919ahb"], ["https://tec.openplanner.team/stops/H1je211b", "https://tec.openplanner.team/stops/H1je213b"], ["https://tec.openplanner.team/stops/Baegm502", "https://tec.openplanner.team/stops/Bramrdf2"], ["https://tec.openplanner.team/stops/N232aqa", "https://tec.openplanner.team/stops/N232aqb"], ["https://tec.openplanner.team/stops/Bwatcom1", "https://tec.openplanner.team/stops/Bwatprp2"], ["https://tec.openplanner.team/stops/Boplcsj2", "https://tec.openplanner.team/stops/Boplcsj3"], ["https://tec.openplanner.team/stops/LFmpoin1", "https://tec.openplanner.team/stops/LFmpoin2"], ["https://tec.openplanner.team/stops/N170aaa", "https://tec.openplanner.team/stops/N170aab"], ["https://tec.openplanner.team/stops/LGLchap1", "https://tec.openplanner.team/stops/LGLchap2"], ["https://tec.openplanner.team/stops/Bwspm371", "https://tec.openplanner.team/stops/Bwspspa1"], ["https://tec.openplanner.team/stops/Lcheg--1", "https://tec.openplanner.team/stops/Lcheg--2"], ["https://tec.openplanner.team/stops/LFEplac1", "https://tec.openplanner.team/stops/X597aqa"], ["https://tec.openplanner.team/stops/Bhticbr1", "https://tec.openplanner.team/stops/Bitrfsc1"], ["https://tec.openplanner.team/stops/X886aea", "https://tec.openplanner.team/stops/X897afa"], ["https://tec.openplanner.team/stops/Cbbcrbo1", "https://tec.openplanner.team/stops/Cssgare1"], ["https://tec.openplanner.team/stops/H4mo133b", "https://tec.openplanner.team/stops/H4mo159a"], ["https://tec.openplanner.team/stops/Blimrof1", "https://tec.openplanner.team/stops/Blimrof2"], ["https://tec.openplanner.team/stops/N211aya", "https://tec.openplanner.team/stops/N211bcb"], ["https://tec.openplanner.team/stops/X872aca", "https://tec.openplanner.team/stops/X872acb"], ["https://tec.openplanner.team/stops/N516ahb", "https://tec.openplanner.team/stops/N516aia"], ["https://tec.openplanner.team/stops/LnNkirc1", "https://tec.openplanner.team/stops/LnNkirc2"], ["https://tec.openplanner.team/stops/Llgbobu6", "https://tec.openplanner.team/stops/Llgdelc*"], ["https://tec.openplanner.team/stops/H1el134a", "https://tec.openplanner.team/stops/H1el138b"], ["https://tec.openplanner.team/stops/Ladwooz2", "https://tec.openplanner.team/stops/Ladxhen1"], ["https://tec.openplanner.team/stops/Cjupier2", "https://tec.openplanner.team/stops/Cjuunio1"], ["https://tec.openplanner.team/stops/LDOordi1", "https://tec.openplanner.team/stops/LGOhevr2"], ["https://tec.openplanner.team/stops/X811agb", "https://tec.openplanner.team/stops/X811aja"], ["https://tec.openplanner.team/stops/H1mk108c", "https://tec.openplanner.team/stops/H1mk108d"], ["https://tec.openplanner.team/stops/Ladarev2", "https://tec.openplanner.team/stops/Ladxhen2"], ["https://tec.openplanner.team/stops/LJU51--1", "https://tec.openplanner.team/stops/LJUmate1"], ["https://tec.openplanner.team/stops/H1wz169b", "https://tec.openplanner.team/stops/H1wz171b"], ["https://tec.openplanner.team/stops/H1gh145d", "https://tec.openplanner.team/stops/H1gh155b"], ["https://tec.openplanner.team/stops/N228abb", "https://tec.openplanner.team/stops/N228aea"], ["https://tec.openplanner.team/stops/X991aha", "https://tec.openplanner.team/stops/X991ahb"], ["https://tec.openplanner.team/stops/X670adb", "https://tec.openplanner.team/stops/X670aia"], ["https://tec.openplanner.team/stops/H1pa105a", "https://tec.openplanner.team/stops/H1pa167b"], ["https://tec.openplanner.team/stops/X986ada", "https://tec.openplanner.team/stops/X986agb"], ["https://tec.openplanner.team/stops/X994aja", "https://tec.openplanner.team/stops/X994akb"], ["https://tec.openplanner.team/stops/LJAcent1", "https://tec.openplanner.team/stops/LJAhanq4"], ["https://tec.openplanner.team/stops/Cfoermi1", "https://tec.openplanner.team/stops/Clrpast2"], ["https://tec.openplanner.team/stops/X725avb", "https://tec.openplanner.team/stops/X725bfa"], ["https://tec.openplanner.team/stops/X639ara", "https://tec.openplanner.team/stops/X675aba"], ["https://tec.openplanner.team/stops/Lghalli1", "https://tec.openplanner.team/stops/Lghflot4"], ["https://tec.openplanner.team/stops/N212aba", "https://tec.openplanner.team/stops/N212aia"], ["https://tec.openplanner.team/stops/H4ta129a", "https://tec.openplanner.team/stops/H4ta134a"], ["https://tec.openplanner.team/stops/X660aia", "https://tec.openplanner.team/stops/X672ahb"], ["https://tec.openplanner.team/stops/N313ada", "https://tec.openplanner.team/stops/N313aeb"], ["https://tec.openplanner.team/stops/N574aca", "https://tec.openplanner.team/stops/N574agb"], ["https://tec.openplanner.team/stops/H2hg145b", "https://tec.openplanner.team/stops/H2hg154b"], ["https://tec.openplanner.team/stops/N134ajb", "https://tec.openplanner.team/stops/N135bfb"], ["https://tec.openplanner.team/stops/Bhevgro1", "https://tec.openplanner.team/stops/Bhevgro2"], ["https://tec.openplanner.team/stops/LMeperk1", "https://tec.openplanner.team/stops/LMeperk2"], ["https://tec.openplanner.team/stops/NC24aka", "https://tec.openplanner.team/stops/NC24akb"], ["https://tec.openplanner.team/stops/Chhegli1", "https://tec.openplanner.team/stops/Chhegli2"], ["https://tec.openplanner.team/stops/X775aga", "https://tec.openplanner.team/stops/X775agb"], ["https://tec.openplanner.team/stops/LSOferr4", "https://tec.openplanner.team/stops/LSOferr6"], ["https://tec.openplanner.team/stops/Lsecast2", "https://tec.openplanner.team/stops/Lseptsa1"], ["https://tec.openplanner.team/stops/Bmrleco2", "https://tec.openplanner.team/stops/Bmrleco3"], ["https://tec.openplanner.team/stops/N501jda", "https://tec.openplanner.team/stops/N501jeb"], ["https://tec.openplanner.team/stops/Crcgmah1", "https://tec.openplanner.team/stops/Crcrgar2"], ["https://tec.openplanner.team/stops/H1fr112a", "https://tec.openplanner.team/stops/H1fr133b"], ["https://tec.openplanner.team/stops/LVEhali1", "https://tec.openplanner.team/stops/LVErtt-1"], ["https://tec.openplanner.team/stops/N214ahb", "https://tec.openplanner.team/stops/N225aaa"], ["https://tec.openplanner.team/stops/N365aaa", "https://tec.openplanner.team/stops/X362ada"], ["https://tec.openplanner.team/stops/H4mo132b", "https://tec.openplanner.team/stops/H4mo155b"], ["https://tec.openplanner.team/stops/X757adb", "https://tec.openplanner.team/stops/X757afb"], ["https://tec.openplanner.team/stops/X901aea", "https://tec.openplanner.team/stops/X901atb"], ["https://tec.openplanner.team/stops/Lhr2ave1", "https://tec.openplanner.team/stops/LOUchen2"], ["https://tec.openplanner.team/stops/Cmeptmi1", "https://tec.openplanner.team/stops/Cmestas1"], ["https://tec.openplanner.team/stops/H4ty293b", "https://tec.openplanner.team/stops/H4ty324c"], ["https://tec.openplanner.team/stops/Crbecol1", "https://tec.openplanner.team/stops/Crbrgar2"], ["https://tec.openplanner.team/stops/Lansarm2", "https://tec.openplanner.team/stops/Lmoboeu4"], ["https://tec.openplanner.team/stops/Lhrbrou2", "https://tec.openplanner.team/stops/Lhrlaix2"], ["https://tec.openplanner.team/stops/N111aaa", "https://tec.openplanner.team/stops/N127bfa"], ["https://tec.openplanner.team/stops/H1lb136b", "https://tec.openplanner.team/stops/H1lb152b"], ["https://tec.openplanner.team/stops/Benimar1", "https://tec.openplanner.team/stops/NR21ajb"], ["https://tec.openplanner.team/stops/X923ala", "https://tec.openplanner.team/stops/X923anb"], ["https://tec.openplanner.team/stops/LBWeg--1", "https://tec.openplanner.team/stops/LBWeg--3"], ["https://tec.openplanner.team/stops/X986ajb", "https://tec.openplanner.team/stops/X986alc"], ["https://tec.openplanner.team/stops/N510afa", "https://tec.openplanner.team/stops/N513agc"], ["https://tec.openplanner.team/stops/X911aca", "https://tec.openplanner.team/stops/X911ada"], ["https://tec.openplanner.team/stops/X902aba", "https://tec.openplanner.team/stops/X902aca"], ["https://tec.openplanner.team/stops/H5rx122b", "https://tec.openplanner.team/stops/H5rx130b"], ["https://tec.openplanner.team/stops/Lseblan*", "https://tec.openplanner.team/stops/Lsechev2"], ["https://tec.openplanner.team/stops/LBpberl1", "https://tec.openplanner.team/stops/LBpvue-1"], ["https://tec.openplanner.team/stops/NC14aoa", "https://tec.openplanner.team/stops/NC14aua"], ["https://tec.openplanner.team/stops/X901aeb", "https://tec.openplanner.team/stops/X902aza"], ["https://tec.openplanner.team/stops/N501fxa", "https://tec.openplanner.team/stops/N501lca"], ["https://tec.openplanner.team/stops/H1mr122b", "https://tec.openplanner.team/stops/H1wi150b"], ["https://tec.openplanner.team/stops/Broncli1", "https://tec.openplanner.team/stops/Bronfou2"], ["https://tec.openplanner.team/stops/N516ama", "https://tec.openplanner.team/stops/N516amc"], ["https://tec.openplanner.team/stops/Cgzlera2", "https://tec.openplanner.team/stops/Cgzm1482"], ["https://tec.openplanner.team/stops/LBY4che1", "https://tec.openplanner.team/stops/LBYegli2"], ["https://tec.openplanner.team/stops/Bbsicen1", "https://tec.openplanner.team/stops/Bbsimpl1"], ["https://tec.openplanner.team/stops/LBzec--2", "https://tec.openplanner.team/stops/LCelabi2"], ["https://tec.openplanner.team/stops/H3lr116a", "https://tec.openplanner.team/stops/H3lr116b"], ["https://tec.openplanner.team/stops/LeUauto2", "https://tec.openplanner.team/stops/LeUdepo1"], ["https://tec.openplanner.team/stops/Cgzabur2", "https://tec.openplanner.team/stops/Cgzpjeu2"], ["https://tec.openplanner.team/stops/H4ft132a", "https://tec.openplanner.team/stops/H4wu375a"], ["https://tec.openplanner.team/stops/X979aob", "https://tec.openplanner.team/stops/X982bvb"], ["https://tec.openplanner.team/stops/Lvopaqu1", "https://tec.openplanner.team/stops/Lvopaqu2"], ["https://tec.openplanner.team/stops/N158aba", "https://tec.openplanner.team/stops/N158abb"], ["https://tec.openplanner.team/stops/Bsgetri1", "https://tec.openplanner.team/stops/Bsgetri2"], ["https://tec.openplanner.team/stops/LeIpiro3", "https://tec.openplanner.team/stops/LeIpiro4"], ["https://tec.openplanner.team/stops/N577aca", "https://tec.openplanner.team/stops/N577aeb"], ["https://tec.openplanner.team/stops/Bgemibb1", "https://tec.openplanner.team/stops/Bgemman1"], ["https://tec.openplanner.team/stops/Lalmakr2", "https://tec.openplanner.team/stops/Lanplat2"], ["https://tec.openplanner.team/stops/Cmlpbay2", "https://tec.openplanner.team/stops/Cmtrneu2"], ["https://tec.openplanner.team/stops/N580agb", "https://tec.openplanner.team/stops/N580ahb"], ["https://tec.openplanner.team/stops/N894aea", "https://tec.openplanner.team/stops/X887aaa"], ["https://tec.openplanner.team/stops/X723aba", "https://tec.openplanner.team/stops/X723acb"], ["https://tec.openplanner.team/stops/LAWchau2", "https://tec.openplanner.team/stops/LBIpost1"], ["https://tec.openplanner.team/stops/X638aqa", "https://tec.openplanner.team/stops/X652aeb"], ["https://tec.openplanner.team/stops/H4tm140a", "https://tec.openplanner.team/stops/H4tm140b"], ["https://tec.openplanner.team/stops/Lrcrars1", "https://tec.openplanner.team/stops/Lrcrars2"], ["https://tec.openplanner.team/stops/H4ce107a", "https://tec.openplanner.team/stops/H4ce107b"], ["https://tec.openplanner.team/stops/Cmmegli2", "https://tec.openplanner.team/stops/Cmmpast2"], ["https://tec.openplanner.team/stops/Ccpbrun1", "https://tec.openplanner.team/stops/H2ch123c"], ["https://tec.openplanner.team/stops/X793afc", "https://tec.openplanner.team/stops/X793aqa"], ["https://tec.openplanner.team/stops/LLrc_ip4", "https://tec.openplanner.team/stops/LLrelec2"], ["https://tec.openplanner.team/stops/N542acb", "https://tec.openplanner.team/stops/N542acc"], ["https://tec.openplanner.team/stops/H4rx142b", "https://tec.openplanner.team/stops/H4rx175a"], ["https://tec.openplanner.team/stops/Crefont2", "https://tec.openplanner.team/stops/Creshau2"], ["https://tec.openplanner.team/stops/X746ala", "https://tec.openplanner.team/stops/X746alb"], ["https://tec.openplanner.team/stops/Bmsgmon2", "https://tec.openplanner.team/stops/Bmsgpap2"], ["https://tec.openplanner.team/stops/X756aeb", "https://tec.openplanner.team/stops/X756akb"], ["https://tec.openplanner.team/stops/Cctjoue5", "https://tec.openplanner.team/stops/Cpllimi1"], ["https://tec.openplanner.team/stops/X608adb", "https://tec.openplanner.team/stops/X608aeb"], ["https://tec.openplanner.team/stops/X801cca", "https://tec.openplanner.team/stops/X801cfa"], ["https://tec.openplanner.team/stops/H5qu143b", "https://tec.openplanner.team/stops/H5qu152a"], ["https://tec.openplanner.team/stops/LAyheid1", "https://tec.openplanner.team/stops/LPRbayb1"], ["https://tec.openplanner.team/stops/N509axb", "https://tec.openplanner.team/stops/N511aua"], ["https://tec.openplanner.team/stops/H1qp142a", "https://tec.openplanner.team/stops/H1qp150a"], ["https://tec.openplanner.team/stops/H2ca101b", "https://tec.openplanner.team/stops/H2ca102b"], ["https://tec.openplanner.team/stops/H4bn173a", "https://tec.openplanner.team/stops/H4bn174a"], ["https://tec.openplanner.team/stops/N543ahb", "https://tec.openplanner.team/stops/N543aib"], ["https://tec.openplanner.team/stops/Cchba11", "https://tec.openplanner.team/stops/Cchba2"], ["https://tec.openplanner.team/stops/Lsmcime*", "https://tec.openplanner.team/stops/Lsmsech4"], ["https://tec.openplanner.team/stops/N232bcb", "https://tec.openplanner.team/stops/N232bua"], ["https://tec.openplanner.team/stops/N549aca", "https://tec.openplanner.team/stops/N578aaa"], ["https://tec.openplanner.team/stops/N548agb", "https://tec.openplanner.team/stops/N548agd"], ["https://tec.openplanner.team/stops/LCEec--2", "https://tec.openplanner.team/stops/LCEinst1"], ["https://tec.openplanner.team/stops/LCF1spa2", "https://tec.openplanner.team/stops/LOurena2"], ["https://tec.openplanner.team/stops/Cflmarc2", "https://tec.openplanner.team/stops/Cwgrabi2"], ["https://tec.openplanner.team/stops/LHXn47-4", "https://tec.openplanner.team/stops/LSMeg--1"], ["https://tec.openplanner.team/stops/X774aac", "https://tec.openplanner.team/stops/X774aca"], ["https://tec.openplanner.team/stops/X660acb", "https://tec.openplanner.team/stops/X660ajb"], ["https://tec.openplanner.team/stops/X370aca", "https://tec.openplanner.team/stops/X850akb"], ["https://tec.openplanner.team/stops/X750bda", "https://tec.openplanner.team/stops/X750blb"], ["https://tec.openplanner.team/stops/Ctucamb2", "https://tec.openplanner.team/stops/Ctuhouz2"], ["https://tec.openplanner.team/stops/H1do121a", "https://tec.openplanner.team/stops/H1do121b"], ["https://tec.openplanner.team/stops/N501cvb", "https://tec.openplanner.team/stops/N501cxa"], ["https://tec.openplanner.team/stops/H4be101a", "https://tec.openplanner.team/stops/H5pe151a"], ["https://tec.openplanner.team/stops/H4al100b", "https://tec.openplanner.team/stops/H4ty360a"], ["https://tec.openplanner.team/stops/H3bi119a", "https://tec.openplanner.team/stops/H3bi119b"], ["https://tec.openplanner.team/stops/Bbiepon1", "https://tec.openplanner.team/stops/Bboneta2"], ["https://tec.openplanner.team/stops/X657ama", "https://tec.openplanner.team/stops/X657amb"], ["https://tec.openplanner.team/stops/Lsestap3", "https://tec.openplanner.team/stops/Lsestap4"], ["https://tec.openplanner.team/stops/Lthfren2", "https://tec.openplanner.team/stops/LWahetr1"], ["https://tec.openplanner.team/stops/N501aua", "https://tec.openplanner.team/stops/N501esa"], ["https://tec.openplanner.team/stops/X952acb", "https://tec.openplanner.team/stops/X952aha"], ["https://tec.openplanner.team/stops/H2bh113a", "https://tec.openplanner.team/stops/H2bh113b"], ["https://tec.openplanner.team/stops/Bwatb4s2", "https://tec.openplanner.team/stops/Bwatcro2"], ["https://tec.openplanner.team/stops/X892aca", "https://tec.openplanner.team/stops/X892ada"], ["https://tec.openplanner.team/stops/X943aca", "https://tec.openplanner.team/stops/X943acb"], ["https://tec.openplanner.team/stops/N522abc", "https://tec.openplanner.team/stops/N522abd"], ["https://tec.openplanner.team/stops/Cfcmass1", "https://tec.openplanner.team/stops/Cfcpcov1"], ["https://tec.openplanner.team/stops/H1bi104a", "https://tec.openplanner.team/stops/H1sa113b"], ["https://tec.openplanner.team/stops/N385aca", "https://tec.openplanner.team/stops/N385aeb"], ["https://tec.openplanner.team/stops/Ctmazeb2", "https://tec.openplanner.team/stops/Ctmmana2"], ["https://tec.openplanner.team/stops/X759aeb", "https://tec.openplanner.team/stops/X837aed"], ["https://tec.openplanner.team/stops/Bpermon3", "https://tec.openplanner.team/stops/Bperrcr2"], ["https://tec.openplanner.team/stops/N424aab", "https://tec.openplanner.team/stops/NH01aqa"], ["https://tec.openplanner.team/stops/Bbiecim1", "https://tec.openplanner.team/stops/Bbiemor1"], ["https://tec.openplanner.team/stops/Lpeptwa2", "https://tec.openplanner.team/stops/Lpevesd1"], ["https://tec.openplanner.team/stops/X633aib", "https://tec.openplanner.team/stops/X633aja"], ["https://tec.openplanner.team/stops/LMomonc2", "https://tec.openplanner.team/stops/LSDgris2"], ["https://tec.openplanner.team/stops/LLmetat1", "https://tec.openplanner.team/stops/LLmvand2"], ["https://tec.openplanner.team/stops/H2tr247a", "https://tec.openplanner.team/stops/H2tr252b"], ["https://tec.openplanner.team/stops/Bbgnton1", "https://tec.openplanner.team/stops/N584ama"], ["https://tec.openplanner.team/stops/LBapeup1", "https://tec.openplanner.team/stops/LBapeup2"], ["https://tec.openplanner.team/stops/LVlleme1", "https://tec.openplanner.team/stops/LVlleme2"], ["https://tec.openplanner.team/stops/Bjanfer2", "https://tec.openplanner.team/stops/NL75acb"], ["https://tec.openplanner.team/stops/X811aca", "https://tec.openplanner.team/stops/X811adb"], ["https://tec.openplanner.team/stops/LGeduc-1", "https://tec.openplanner.team/stops/LGeduc-2"], ["https://tec.openplanner.team/stops/Llmcoop2", "https://tec.openplanner.team/stops/Llmlaro1"], ["https://tec.openplanner.team/stops/LTEkl161", "https://tec.openplanner.team/stops/LTEkl162"], ["https://tec.openplanner.team/stops/X904ada", "https://tec.openplanner.team/stops/X904anb"], ["https://tec.openplanner.team/stops/Bbcoroy1", "https://tec.openplanner.team/stops/Bbcoroy2"], ["https://tec.openplanner.team/stops/Bcerpco2", "https://tec.openplanner.team/stops/Bcsgres1"], ["https://tec.openplanner.team/stops/Ccutrav4", "https://tec.openplanner.team/stops/Ccutrav5"], ["https://tec.openplanner.team/stops/Bbea3he2", "https://tec.openplanner.team/stops/Bmlnbpr2"], ["https://tec.openplanner.team/stops/Loucent1", "https://tec.openplanner.team/stops/Lousite2"], ["https://tec.openplanner.team/stops/Lmndari1", "https://tec.openplanner.team/stops/Lmneg--1"], ["https://tec.openplanner.team/stops/LMAwavr1", "https://tec.openplanner.team/stops/LMisour1"], ["https://tec.openplanner.team/stops/Bgemibb2", "https://tec.openplanner.team/stops/Bgemman2"], ["https://tec.openplanner.team/stops/LsVprum1", "https://tec.openplanner.team/stops/LsVprum3"], ["https://tec.openplanner.team/stops/H1so139c", "https://tec.openplanner.team/stops/H1so139d"], ["https://tec.openplanner.team/stops/X641aca", "https://tec.openplanner.team/stops/X641agb"], ["https://tec.openplanner.team/stops/Lmobrac2", "https://tec.openplanner.team/stops/Ltibure4"], ["https://tec.openplanner.team/stops/H1go118a", "https://tec.openplanner.team/stops/H1go174a"], ["https://tec.openplanner.team/stops/X801bua", "https://tec.openplanner.team/stops/X801bwa"], ["https://tec.openplanner.team/stops/N153aaa", "https://tec.openplanner.team/stops/N153aab"], ["https://tec.openplanner.team/stops/H1je220b", "https://tec.openplanner.team/stops/H1je220c"], ["https://tec.openplanner.team/stops/H4ty287a", "https://tec.openplanner.team/stops/H4ty287b"], ["https://tec.openplanner.team/stops/LBspiet1", "https://tec.openplanner.team/stops/LBssucr1"], ["https://tec.openplanner.team/stops/Btsllec1", "https://tec.openplanner.team/stops/Bwlhcsr1"], ["https://tec.openplanner.team/stops/Borbode1", "https://tec.openplanner.team/stops/Borbode2"], ["https://tec.openplanner.team/stops/Bblagar4", "https://tec.openplanner.team/stops/Bblagard"], ["https://tec.openplanner.team/stops/Brixpro2", "https://tec.openplanner.team/stops/Brixpro3"], ["https://tec.openplanner.team/stops/Canboha2", "https://tec.openplanner.team/stops/H2an110a"], ["https://tec.openplanner.team/stops/H1wz173a", "https://tec.openplanner.team/stops/H2pe161b"], ["https://tec.openplanner.team/stops/N218aea", "https://tec.openplanner.team/stops/N287aba"], ["https://tec.openplanner.team/stops/X790aba", "https://tec.openplanner.team/stops/X790ana"], ["https://tec.openplanner.team/stops/N542aqa", "https://tec.openplanner.team/stops/N542aqb"], ["https://tec.openplanner.team/stops/N521aia", "https://tec.openplanner.team/stops/N521aic"], ["https://tec.openplanner.team/stops/Cbbjfeu1", "https://tec.openplanner.team/stops/Cbbjfeu2"], ["https://tec.openplanner.team/stops/X610ada", "https://tec.openplanner.team/stops/X610adb"], ["https://tec.openplanner.team/stops/X659axa", "https://tec.openplanner.team/stops/X659baa"], ["https://tec.openplanner.team/stops/X626aaa", "https://tec.openplanner.team/stops/X626abb"], ["https://tec.openplanner.team/stops/LVIacac1", "https://tec.openplanner.team/stops/LVIdepo2"], ["https://tec.openplanner.team/stops/LTIgare3", "https://tec.openplanner.team/stops/LTIgare4"], ["https://tec.openplanner.team/stops/X601bma", "https://tec.openplanner.team/stops/X612aba"], ["https://tec.openplanner.team/stops/H4mb205a", "https://tec.openplanner.team/stops/H4og211a"], ["https://tec.openplanner.team/stops/X756aaa", "https://tec.openplanner.team/stops/X756aab"], ["https://tec.openplanner.team/stops/LJOchar1", "https://tec.openplanner.team/stops/LJOchar2"], ["https://tec.openplanner.team/stops/Cfrfaub1", "https://tec.openplanner.team/stops/Cfrfaub2"], ["https://tec.openplanner.team/stops/LmDgeme2", "https://tec.openplanner.team/stops/LmDkape2"], ["https://tec.openplanner.team/stops/Ccicent1", "https://tec.openplanner.team/stops/Ccivill2"], ["https://tec.openplanner.team/stops/Cnalava2", "https://tec.openplanner.team/stops/Cnating1"], ["https://tec.openplanner.team/stops/H2ll183a", "https://tec.openplanner.team/stops/H2ll194a"], ["https://tec.openplanner.team/stops/H1me115b", "https://tec.openplanner.team/stops/H1mm127a"], ["https://tec.openplanner.team/stops/X673aba", "https://tec.openplanner.team/stops/X673abb"], ["https://tec.openplanner.team/stops/X757aab", "https://tec.openplanner.team/stops/X757acb"], ["https://tec.openplanner.team/stops/N117aga", "https://tec.openplanner.team/stops/N569aic"], ["https://tec.openplanner.team/stops/LESamos2", "https://tec.openplanner.team/stops/LESmont1"], ["https://tec.openplanner.team/stops/X641avb", "https://tec.openplanner.team/stops/X641aza"], ["https://tec.openplanner.team/stops/Llgsime1", "https://tec.openplanner.team/stops/Llgsime2"], ["https://tec.openplanner.team/stops/LCRfavr1", "https://tec.openplanner.team/stops/LTyh51-1"], ["https://tec.openplanner.team/stops/X804bua", "https://tec.openplanner.team/stops/X818aaa"], ["https://tec.openplanner.team/stops/X927aaa", "https://tec.openplanner.team/stops/X927aba"], ["https://tec.openplanner.team/stops/Llgangl1", "https://tec.openplanner.team/stops/Llghoch4"], ["https://tec.openplanner.team/stops/LLemonu1", "https://tec.openplanner.team/stops/X547adb"], ["https://tec.openplanner.team/stops/LSPdesc1", "https://tec.openplanner.team/stops/LSPhapa1"], ["https://tec.openplanner.team/stops/Cbzfrom1", "https://tec.openplanner.team/stops/Clulidl2"], ["https://tec.openplanner.team/stops/LRGbett3", "https://tec.openplanner.team/stops/LRGpt5-3"], ["https://tec.openplanner.team/stops/Lsmgdry2", "https://tec.openplanner.team/stops/Lvecase1"], ["https://tec.openplanner.team/stops/Cgzabur2", "https://tec.openplanner.team/stops/Cgzclef1"], ["https://tec.openplanner.team/stops/Lsepaqu1", "https://tec.openplanner.team/stops/Lsepaqu2"], ["https://tec.openplanner.team/stops/LBIbois2", "https://tec.openplanner.team/stops/Lghlogi2"], ["https://tec.openplanner.team/stops/Cmmgadi2", "https://tec.openplanner.team/stops/Cmmphai1"], ["https://tec.openplanner.team/stops/LHYlinc1", "https://tec.openplanner.team/stops/LHYlinc3"], ["https://tec.openplanner.team/stops/Ccygara2", "https://tec.openplanner.team/stops/Ccypn1"], ["https://tec.openplanner.team/stops/Canplch2", "https://tec.openplanner.team/stops/Clbhour1"], ["https://tec.openplanner.team/stops/X714aab", "https://tec.openplanner.team/stops/X714abb"], ["https://tec.openplanner.team/stops/LcRkirc1", "https://tec.openplanner.team/stops/LrDneun1"], ["https://tec.openplanner.team/stops/Cfaecwa1", "https://tec.openplanner.team/stops/Cfaecwa2"], ["https://tec.openplanner.team/stops/N236ana", "https://tec.openplanner.team/stops/N236anb"], ["https://tec.openplanner.team/stops/H5rx121a", "https://tec.openplanner.team/stops/H5rx132a"], ["https://tec.openplanner.team/stops/X744aea", "https://tec.openplanner.team/stops/X744aeb"], ["https://tec.openplanner.team/stops/Cflchap3", "https://tec.openplanner.team/stops/Cflchap4"], ["https://tec.openplanner.team/stops/LVLm10-1", "https://tec.openplanner.team/stops/LVLmabi1"], ["https://tec.openplanner.team/stops/LBjpech1", "https://tec.openplanner.team/stops/LLVeg--1"], ["https://tec.openplanner.team/stops/LCocasc1", "https://tec.openplanner.team/stops/LCocasc2"], ["https://tec.openplanner.team/stops/H4lz162a", "https://tec.openplanner.team/stops/H4lz162b"], ["https://tec.openplanner.team/stops/H4ha169a", "https://tec.openplanner.team/stops/H4me211c"], ["https://tec.openplanner.team/stops/Lbococh2", "https://tec.openplanner.team/stops/Louvivi1"], ["https://tec.openplanner.team/stops/X770acb", "https://tec.openplanner.team/stops/X770ada"], ["https://tec.openplanner.team/stops/N531ama", "https://tec.openplanner.team/stops/N531arb"], ["https://tec.openplanner.team/stops/Bhptcha2", "https://tec.openplanner.team/stops/Bhptegl2"], ["https://tec.openplanner.team/stops/X768aib", "https://tec.openplanner.team/stops/X769akb"], ["https://tec.openplanner.team/stops/LVIeg--4", "https://tec.openplanner.team/stops/LVIsouv1"], ["https://tec.openplanner.team/stops/N301agb", "https://tec.openplanner.team/stops/N340afb"], ["https://tec.openplanner.team/stops/Bgnvgir2", "https://tec.openplanner.team/stops/Bohnr732"], ["https://tec.openplanner.team/stops/Cjudevo1", "https://tec.openplanner.team/stops/Cjuhden4"], ["https://tec.openplanner.team/stops/X725aza", "https://tec.openplanner.team/stops/X725azb"], ["https://tec.openplanner.team/stops/LmImirf2", "https://tec.openplanner.team/stops/LmRh%C3%B6811"], ["https://tec.openplanner.team/stops/Ccpetan1", "https://tec.openplanner.team/stops/Ccpetan2"], ["https://tec.openplanner.team/stops/LeUnopr1", "https://tec.openplanner.team/stops/LeUrath1"], ["https://tec.openplanner.team/stops/Bwaak101", "https://tec.openplanner.team/stops/LWHmath2"], ["https://tec.openplanner.team/stops/Bqueegl1", "https://tec.openplanner.team/stops/Bquepla1"], ["https://tec.openplanner.team/stops/N425aaa", "https://tec.openplanner.team/stops/N425aab"], ["https://tec.openplanner.team/stops/H4ld126a", "https://tec.openplanner.team/stops/H4ld129a"], ["https://tec.openplanner.team/stops/Lhubouq1", "https://tec.openplanner.team/stops/Lhueg--1"], ["https://tec.openplanner.team/stops/LcRkirc1", "https://tec.openplanner.team/stops/LhIfrie1"], ["https://tec.openplanner.team/stops/LCsraws1", "https://tec.openplanner.team/stops/LVLzoni1"], ["https://tec.openplanner.team/stops/H4ka183a", "https://tec.openplanner.team/stops/H4ka195a"], ["https://tec.openplanner.team/stops/H4ga155a", "https://tec.openplanner.team/stops/H4ha171a"], ["https://tec.openplanner.team/stops/X822anb", "https://tec.openplanner.team/stops/X822aob"], ["https://tec.openplanner.team/stops/LVAflat1", "https://tec.openplanner.team/stops/LVAmaas1"], ["https://tec.openplanner.team/stops/Bwavbpi2", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://tec.openplanner.team/stops/H2hg157c", "https://tec.openplanner.team/stops/H2hg265b"], ["https://tec.openplanner.team/stops/H4ca120b", "https://tec.openplanner.team/stops/H4ca124a"], ["https://tec.openplanner.team/stops/N543bka", "https://tec.openplanner.team/stops/N543cpa"], ["https://tec.openplanner.team/stops/X817aca", "https://tec.openplanner.team/stops/X817aeb"], ["https://tec.openplanner.team/stops/H4wn124d", "https://tec.openplanner.team/stops/H4wn139a"], ["https://tec.openplanner.team/stops/Lagfour2", "https://tec.openplanner.team/stops/Lagvall2"], ["https://tec.openplanner.team/stops/Blsmbfe1", "https://tec.openplanner.team/stops/Blsmjja1"], ["https://tec.openplanner.team/stops/Lveanto1", "https://tec.openplanner.team/stops/Lveharm2"], ["https://tec.openplanner.team/stops/H1gh371a", "https://tec.openplanner.team/stops/H1hh118b"], ["https://tec.openplanner.team/stops/Bobacar3", "https://tec.openplanner.team/stops/Broscha2"], ["https://tec.openplanner.team/stops/Bmartil1", "https://tec.openplanner.team/stops/Bmarvil2"], ["https://tec.openplanner.team/stops/LBivi--2", "https://tec.openplanner.team/stops/LWEbr051"], ["https://tec.openplanner.team/stops/H4ce104a", "https://tec.openplanner.team/stops/H4or115a"], ["https://tec.openplanner.team/stops/LkTraer1", "https://tec.openplanner.team/stops/LkTraer2"], ["https://tec.openplanner.team/stops/LBVclig1", "https://tec.openplanner.team/stops/LBVronx1"], ["https://tec.openplanner.team/stops/Bhmmcha2", "https://tec.openplanner.team/stops/Bhmmtou1"], ["https://tec.openplanner.team/stops/H1mm121a", "https://tec.openplanner.team/stops/H1mm126b"], ["https://tec.openplanner.team/stops/N558aeb", "https://tec.openplanner.team/stops/N558afa"], ["https://tec.openplanner.team/stops/H1ag107a", "https://tec.openplanner.team/stops/H1qv115b"], ["https://tec.openplanner.team/stops/Cctfaub1", "https://tec.openplanner.team/stops/Cctfrbe2"], ["https://tec.openplanner.team/stops/Llghong1", "https://tec.openplanner.team/stops/Llgphol3"], ["https://tec.openplanner.team/stops/H4og208b", "https://tec.openplanner.team/stops/H4og212a"], ["https://tec.openplanner.team/stops/N221abb", "https://tec.openplanner.team/stops/X210azb"], ["https://tec.openplanner.team/stops/X615aaa", "https://tec.openplanner.team/stops/X615aja"], ["https://tec.openplanner.team/stops/X760aca", "https://tec.openplanner.team/stops/X788abd"], ["https://tec.openplanner.team/stops/X576aib", "https://tec.openplanner.team/stops/X781aab"], ["https://tec.openplanner.team/stops/Bixlfla1", "https://tec.openplanner.team/stops/Bixllep2"], ["https://tec.openplanner.team/stops/LNEcouc1", "https://tec.openplanner.team/stops/LNEpass1"], ["https://tec.openplanner.team/stops/Bcrnncb1", "https://tec.openplanner.team/stops/Bcrnnra2"], ["https://tec.openplanner.team/stops/LBevill2", "https://tec.openplanner.team/stops/LHNtill2"], ["https://tec.openplanner.team/stops/X618aca", "https://tec.openplanner.team/stops/X619aeb"], ["https://tec.openplanner.team/stops/LLaover4", "https://tec.openplanner.team/stops/LWscona1"], ["https://tec.openplanner.team/stops/N538ahb", "https://tec.openplanner.team/stops/N538ala"], ["https://tec.openplanner.team/stops/H4de112b", "https://tec.openplanner.team/stops/H4ss156a"], ["https://tec.openplanner.team/stops/LWAlong1", "https://tec.openplanner.team/stops/LWAwila1"], ["https://tec.openplanner.team/stops/H4ma411a", "https://tec.openplanner.team/stops/H4ma411b"], ["https://tec.openplanner.team/stops/Bfelcen2", "https://tec.openplanner.team/stops/Bronpfe2"], ["https://tec.openplanner.team/stops/Ladgron1", "https://tec.openplanner.team/stops/LELhard2"], ["https://tec.openplanner.team/stops/LJEchat2", "https://tec.openplanner.team/stops/LJEchat4"], ["https://tec.openplanner.team/stops/N287aca", "https://tec.openplanner.team/stops/N287acb"], ["https://tec.openplanner.team/stops/H4jm116a", "https://tec.openplanner.team/stops/H4jm116b"], ["https://tec.openplanner.team/stops/H1br121b", "https://tec.openplanner.team/stops/H1br129a"], ["https://tec.openplanner.team/stops/Lsmecol1", "https://tec.openplanner.team/stops/Lsmrcim2"], ["https://tec.openplanner.team/stops/H1gh147a", "https://tec.openplanner.team/stops/H1gh147b"], ["https://tec.openplanner.team/stops/X779abb", "https://tec.openplanner.team/stops/X779aia"], ["https://tec.openplanner.team/stops/X740acb", "https://tec.openplanner.team/stops/X740afb"], ["https://tec.openplanner.team/stops/H4ab100a", "https://tec.openplanner.team/stops/H4ab101a"], ["https://tec.openplanner.team/stops/N501gea", "https://tec.openplanner.team/stops/N501geb"], ["https://tec.openplanner.team/stops/LLz21--2", "https://tec.openplanner.team/stops/LPTblan2"], ["https://tec.openplanner.team/stops/Bnivbpe3", "https://tec.openplanner.team/stops/Bptrlux1"], ["https://tec.openplanner.team/stops/N501gka", "https://tec.openplanner.team/stops/N501lib"], ["https://tec.openplanner.team/stops/Cfaamio1", "https://tec.openplanner.team/stops/Cfamonu1"], ["https://tec.openplanner.team/stops/Cjuhame2", "https://tec.openplanner.team/stops/Cjulamb2"], ["https://tec.openplanner.team/stops/LTipont2", "https://tec.openplanner.team/stops/LTiterr1"], ["https://tec.openplanner.team/stops/Llghugo2", "https://tec.openplanner.team/stops/Llglimb2"], ["https://tec.openplanner.team/stops/H2bh105b", "https://tec.openplanner.team/stops/H2bh113b"], ["https://tec.openplanner.team/stops/Becltri2", "https://tec.openplanner.team/stops/H2me116b"], ["https://tec.openplanner.team/stops/LJelava1", "https://tec.openplanner.team/stops/LLmvict1"], ["https://tec.openplanner.team/stops/X991aaa", "https://tec.openplanner.team/stops/X993aab"], ["https://tec.openplanner.team/stops/H4ka186a", "https://tec.openplanner.team/stops/H4mx116b"], ["https://tec.openplanner.team/stops/LHStrez2", "https://tec.openplanner.team/stops/LHSvina1"], ["https://tec.openplanner.team/stops/LBNauto2", "https://tec.openplanner.team/stops/LWEwall1"], ["https://tec.openplanner.team/stops/X754agb", "https://tec.openplanner.team/stops/X754ala"], ["https://tec.openplanner.team/stops/Lpegole2", "https://tec.openplanner.team/stops/Lpegole4"], ["https://tec.openplanner.team/stops/Barchez2", "https://tec.openplanner.team/stops/Bgzddge1"], ["https://tec.openplanner.team/stops/H4ty274a", "https://tec.openplanner.team/stops/H4ty274b"], ["https://tec.openplanner.team/stops/Lrebriq1", "https://tec.openplanner.team/stops/Lrecomp1"], ["https://tec.openplanner.team/stops/LKmeg--2", "https://tec.openplanner.team/stops/LKmmelo1"], ["https://tec.openplanner.team/stops/H4lh120a", "https://tec.openplanner.team/stops/H4oe148b"], ["https://tec.openplanner.team/stops/LLYhoch1", "https://tec.openplanner.team/stops/LLYhoch2"], ["https://tec.openplanner.team/stops/Bchgbel2", "https://tec.openplanner.team/stops/Bnilhau1"], ["https://tec.openplanner.team/stops/LDOchev1", "https://tec.openplanner.team/stops/LGOdelv2"], ["https://tec.openplanner.team/stops/Bnivari2", "https://tec.openplanner.team/stops/Bnivtra2"], ["https://tec.openplanner.team/stops/Ccybouc2", "https://tec.openplanner.team/stops/Ccybouc4"], ["https://tec.openplanner.team/stops/Llabriq1", "https://tec.openplanner.team/stops/LVSbleu2"], ["https://tec.openplanner.team/stops/Bettbue1", "https://tec.openplanner.team/stops/Bettbue2"], ["https://tec.openplanner.team/stops/X601bva", "https://tec.openplanner.team/stops/X601cca"], ["https://tec.openplanner.team/stops/X902bca", "https://tec.openplanner.team/stops/X902bcb"], ["https://tec.openplanner.team/stops/Bcsen251", "https://tec.openplanner.team/stops/Bottcba1"], ["https://tec.openplanner.team/stops/Lgrclas2", "https://tec.openplanner.team/stops/Llgmulh2"], ["https://tec.openplanner.team/stops/LPOchan1", "https://tec.openplanner.team/stops/LSdbote1"], ["https://tec.openplanner.team/stops/Cvregl1", "https://tec.openplanner.team/stops/Cvregl2"], ["https://tec.openplanner.team/stops/Candett2", "https://tec.openplanner.team/stops/Canlemo2"], ["https://tec.openplanner.team/stops/N203adb", "https://tec.openplanner.team/stops/N203afa"], ["https://tec.openplanner.team/stops/N506atb", "https://tec.openplanner.team/stops/N506bac"], ["https://tec.openplanner.team/stops/X771acb", "https://tec.openplanner.team/stops/X773ama"], ["https://tec.openplanner.team/stops/LOTferm1", "https://tec.openplanner.team/stops/LOTjacq1"], ["https://tec.openplanner.team/stops/LRRelec1", "https://tec.openplanner.team/stops/LRRelec3"], ["https://tec.openplanner.team/stops/LEHpech1", "https://tec.openplanner.team/stops/LRRmeta1"], ["https://tec.openplanner.team/stops/LScdina2", "https://tec.openplanner.team/stops/LTNeau-2"], ["https://tec.openplanner.team/stops/N512ara", "https://tec.openplanner.team/stops/N512arb"], ["https://tec.openplanner.team/stops/Bgdhpco2", "https://tec.openplanner.team/stops/Bthspha1"], ["https://tec.openplanner.team/stops/Bnodlce2", "https://tec.openplanner.team/stops/Bnodtir1"], ["https://tec.openplanner.team/stops/LXopeti1", "https://tec.openplanner.team/stops/LXopeti2"], ["https://tec.openplanner.team/stops/LArchap1", "https://tec.openplanner.team/stops/LArmaro1"], ["https://tec.openplanner.team/stops/Blmlgar1", "https://tec.openplanner.team/stops/Blmlpla1"], ["https://tec.openplanner.team/stops/X954agb", "https://tec.openplanner.team/stops/X954ahb"], ["https://tec.openplanner.team/stops/H4au143b", "https://tec.openplanner.team/stops/H4og216a"], ["https://tec.openplanner.team/stops/N513aob", "https://tec.openplanner.team/stops/N513arb"], ["https://tec.openplanner.team/stops/Blhurcl1", "https://tec.openplanner.team/stops/Blhusor1"], ["https://tec.openplanner.team/stops/X804afb", "https://tec.openplanner.team/stops/X804aga"], ["https://tec.openplanner.team/stops/LSseg--2", "https://tec.openplanner.team/stops/N506bwa"], ["https://tec.openplanner.team/stops/X681ada", "https://tec.openplanner.team/stops/X681aha"], ["https://tec.openplanner.team/stops/LEN101-1", "https://tec.openplanner.team/stops/LEN101-2"], ["https://tec.openplanner.team/stops/H1ht124b", "https://tec.openplanner.team/stops/H1si151b"], ["https://tec.openplanner.team/stops/Lmoknae2", "https://tec.openplanner.team/stops/Lmoknae3"], ["https://tec.openplanner.team/stops/Bthsset2", "https://tec.openplanner.team/stops/NL37aja"], ["https://tec.openplanner.team/stops/LhOukat1", "https://tec.openplanner.team/stops/LhOukat2"], ["https://tec.openplanner.team/stops/Ladplen*", "https://tec.openplanner.team/stops/LClsacr1"], ["https://tec.openplanner.team/stops/Cgrchea2", "https://tec.openplanner.team/stops/NC14aha"], ["https://tec.openplanner.team/stops/LVNcoop1", "https://tec.openplanner.team/stops/LVNcoop2"], ["https://tec.openplanner.team/stops/N507afa", "https://tec.openplanner.team/stops/N507aja"], ["https://tec.openplanner.team/stops/H2sb223a", "https://tec.openplanner.team/stops/H2sb238a"], ["https://tec.openplanner.team/stops/N347ada", "https://tec.openplanner.team/stops/X347aja"], ["https://tec.openplanner.team/stops/X617aca", "https://tec.openplanner.team/stops/X617ada"], ["https://tec.openplanner.team/stops/LFochap2", "https://tec.openplanner.team/stops/LJAhanq4"], ["https://tec.openplanner.team/stops/LTgjalh2", "https://tec.openplanner.team/stops/LTgvill1"], ["https://tec.openplanner.team/stops/Lvopaqu2", "https://tec.openplanner.team/stops/Lvovent1"], ["https://tec.openplanner.team/stops/N301ana", "https://tec.openplanner.team/stops/X301ara"], ["https://tec.openplanner.team/stops/X618aaa", "https://tec.openplanner.team/stops/X618aba"], ["https://tec.openplanner.team/stops/N245aab", "https://tec.openplanner.team/stops/N245abb"], ["https://tec.openplanner.team/stops/X660aab", "https://tec.openplanner.team/stops/X661aqa"], ["https://tec.openplanner.team/stops/LJAwerf1", "https://tec.openplanner.team/stops/LJAwerf2"], ["https://tec.openplanner.team/stops/H1em110a", "https://tec.openplanner.team/stops/H1em110b"], ["https://tec.openplanner.team/stops/LbTgeme1", "https://tec.openplanner.team/stops/LsHkirc1"], ["https://tec.openplanner.team/stops/LVPgrot1", "https://tec.openplanner.team/stops/LVPgrot3"], ["https://tec.openplanner.team/stops/LeUindu1", "https://tec.openplanner.team/stops/LlNbruc1"], ["https://tec.openplanner.team/stops/LHCpaci2", "https://tec.openplanner.team/stops/LHCruyf2"], ["https://tec.openplanner.team/stops/H4ce107b", "https://tec.openplanner.team/stops/H4mx115b"], ["https://tec.openplanner.team/stops/N212aka", "https://tec.openplanner.team/stops/N226aca"], ["https://tec.openplanner.team/stops/LDmdomm1", "https://tec.openplanner.team/stops/LDmeg--2"], ["https://tec.openplanner.team/stops/H1pa104b", "https://tec.openplanner.team/stops/H1pa110b"], ["https://tec.openplanner.team/stops/Canmonu5", "https://tec.openplanner.team/stops/H2an106d"], ["https://tec.openplanner.team/stops/LAmab751", "https://tec.openplanner.team/stops/LATlena1"], ["https://tec.openplanner.team/stops/H4ga149b", "https://tec.openplanner.team/stops/H4ga168b"], ["https://tec.openplanner.team/stops/N564aab", "https://tec.openplanner.team/stops/N564abb"], ["https://tec.openplanner.team/stops/LTRcarr2", "https://tec.openplanner.team/stops/LTRchpl2"], ["https://tec.openplanner.team/stops/Balsnay1", "https://tec.openplanner.team/stops/Balswwe1"], ["https://tec.openplanner.team/stops/Bcbqcht2", "https://tec.openplanner.team/stops/Bcbqpon1"], ["https://tec.openplanner.team/stops/Broncan1", "https://tec.openplanner.team/stops/Bronn391"], ["https://tec.openplanner.team/stops/N504abb", "https://tec.openplanner.team/stops/N579aeb"], ["https://tec.openplanner.team/stops/Bleugar1", "https://tec.openplanner.team/stops/H4co148b"], ["https://tec.openplanner.team/stops/LBNburg1", "https://tec.openplanner.team/stops/LBNburg2"], ["https://tec.openplanner.team/stops/Bbsipos1", "https://tec.openplanner.team/stops/Bbsipos2"], ["https://tec.openplanner.team/stops/N137aab", "https://tec.openplanner.team/stops/N137acb"], ["https://tec.openplanner.team/stops/X837aib", "https://tec.openplanner.team/stops/X837akb"], ["https://tec.openplanner.team/stops/Blempuc1", "https://tec.openplanner.team/stops/Btubcal2"], ["https://tec.openplanner.team/stops/X640apb", "https://tec.openplanner.team/stops/X640aqb"], ["https://tec.openplanner.team/stops/Cravold1", "https://tec.openplanner.team/stops/Cravold2"], ["https://tec.openplanner.team/stops/N538asb", "https://tec.openplanner.team/stops/N538asc"], ["https://tec.openplanner.team/stops/N501fta", "https://tec.openplanner.team/stops/N501fty"], ["https://tec.openplanner.team/stops/N221acb", "https://tec.openplanner.team/stops/N221adb"], ["https://tec.openplanner.team/stops/X650acb", "https://tec.openplanner.team/stops/X650aja"], ["https://tec.openplanner.team/stops/N520aha", "https://tec.openplanner.team/stops/N520ahb"], ["https://tec.openplanner.team/stops/LaAjahn1", "https://tec.openplanner.team/stops/LaAzwei2"], ["https://tec.openplanner.team/stops/LFdeg--1", "https://tec.openplanner.team/stops/LFdeg--2"], ["https://tec.openplanner.team/stops/Bbxlmid4", "https://tec.openplanner.team/stops/Bsgicfo1"], ["https://tec.openplanner.team/stops/Bbch4br2", "https://tec.openplanner.team/stops/Bbch4br5"], ["https://tec.openplanner.team/stops/LAUcose1", "https://tec.openplanner.team/stops/LAUmerc2"], ["https://tec.openplanner.team/stops/X764abb", "https://tec.openplanner.team/stops/X764agb"], ["https://tec.openplanner.team/stops/X615aba", "https://tec.openplanner.team/stops/X615akb"], ["https://tec.openplanner.team/stops/LMXaven1", "https://tec.openplanner.team/stops/LMXaven2"], ["https://tec.openplanner.team/stops/X808aia", "https://tec.openplanner.team/stops/X808aib"], ["https://tec.openplanner.team/stops/LcRmuhl2", "https://tec.openplanner.team/stops/LwTkabi2"], ["https://tec.openplanner.team/stops/Ccheden2", "https://tec.openplanner.team/stops/Cchoues4"], ["https://tec.openplanner.team/stops/H4ha167a", "https://tec.openplanner.team/stops/H4ru238a"], ["https://tec.openplanner.team/stops/H4ef162b", "https://tec.openplanner.team/stops/H4ss154a"], ["https://tec.openplanner.team/stops/LTyhall1", "https://tec.openplanner.team/stops/LTyhall2"], ["https://tec.openplanner.team/stops/X801abb", "https://tec.openplanner.team/stops/X898aeb"], ["https://tec.openplanner.team/stops/Bbsicen2", "https://tec.openplanner.team/stops/Bbsipos2"], ["https://tec.openplanner.team/stops/N558ana", "https://tec.openplanner.team/stops/NL77aab"], ["https://tec.openplanner.team/stops/H4lz124a", "https://tec.openplanner.team/stops/H4pi131a"], ["https://tec.openplanner.team/stops/H1eu102b", "https://tec.openplanner.team/stops/H1eu103a"], ["https://tec.openplanner.team/stops/X992aha", "https://tec.openplanner.team/stops/X992ahb"], ["https://tec.openplanner.team/stops/X922aea", "https://tec.openplanner.team/stops/X922aeb"], ["https://tec.openplanner.team/stops/H4hu115b", "https://tec.openplanner.team/stops/H4hu118b"], ["https://tec.openplanner.team/stops/Cna4che1", "https://tec.openplanner.team/stops/Cna6che2"], ["https://tec.openplanner.team/stops/X657abb", "https://tec.openplanner.team/stops/X657aca"], ["https://tec.openplanner.team/stops/H5rx106b", "https://tec.openplanner.team/stops/H5rx147a"], ["https://tec.openplanner.team/stops/N357aaa", "https://tec.openplanner.team/stops/N357acb"], ["https://tec.openplanner.team/stops/X672ada", "https://tec.openplanner.team/stops/X672aob"], ["https://tec.openplanner.team/stops/H4rm112a", "https://tec.openplanner.team/stops/H4rm114b"], ["https://tec.openplanner.team/stops/N501kpb", "https://tec.openplanner.team/stops/N501mvc"], ["https://tec.openplanner.team/stops/Blhupa11", "https://tec.openplanner.team/stops/Blhupcl1"], ["https://tec.openplanner.team/stops/H4po126a", "https://tec.openplanner.team/stops/H4po130b"], ["https://tec.openplanner.team/stops/Bdvmccu1", "https://tec.openplanner.team/stops/Bwavbva1"], ["https://tec.openplanner.team/stops/LMEeg--2", "https://tec.openplanner.team/stops/LMEpech1"], ["https://tec.openplanner.team/stops/LDOanes2", "https://tec.openplanner.team/stops/LDOordi2"], ["https://tec.openplanner.team/stops/LmHperl1", "https://tec.openplanner.team/stops/LmHperl2"], ["https://tec.openplanner.team/stops/Bmalcar2", "https://tec.openplanner.team/stops/Bmalper2"], ["https://tec.openplanner.team/stops/H4sl154a", "https://tec.openplanner.team/stops/H4wg122b"], ["https://tec.openplanner.team/stops/N230ala", "https://tec.openplanner.team/stops/N234ada"], ["https://tec.openplanner.team/stops/LAYdieu1", "https://tec.openplanner.team/stops/LAYecol2"], ["https://tec.openplanner.team/stops/X801aaa", "https://tec.openplanner.team/stops/X802aqa"], ["https://tec.openplanner.team/stops/Cflchel2", "https://tec.openplanner.team/stops/Cflchel3"], ["https://tec.openplanner.team/stops/Bjod7co1", "https://tec.openplanner.team/stops/Bjodcar2"], ["https://tec.openplanner.team/stops/Lrchero1", "https://tec.openplanner.team/stops/Lrcvinc1"], ["https://tec.openplanner.team/stops/N539axb", "https://tec.openplanner.team/stops/N539azb"], ["https://tec.openplanner.team/stops/H4ca123a", "https://tec.openplanner.team/stops/H4ca123b"], ["https://tec.openplanner.team/stops/X903aca", "https://tec.openplanner.team/stops/X903agb"], ["https://tec.openplanner.team/stops/H4wi167b", "https://tec.openplanner.team/stops/H5pe134b"], ["https://tec.openplanner.team/stops/X752aab", "https://tec.openplanner.team/stops/X752aba"], ["https://tec.openplanner.team/stops/H1gg115b", "https://tec.openplanner.team/stops/H1gg145a"], ["https://tec.openplanner.team/stops/LLtrout1", "https://tec.openplanner.team/stops/LLtrout2"], ["https://tec.openplanner.team/stops/N522aea", "https://tec.openplanner.team/stops/N522aeb"], ["https://tec.openplanner.team/stops/Cliburl1", "https://tec.openplanner.team/stops/Clihame2"], ["https://tec.openplanner.team/stops/LFPho8a2", "https://tec.openplanner.team/stops/LFPkast1"], ["https://tec.openplanner.team/stops/X664aaa", "https://tec.openplanner.team/stops/X664acb"], ["https://tec.openplanner.team/stops/H1as104a", "https://tec.openplanner.team/stops/H1as104b"], ["https://tec.openplanner.team/stops/H5rx129a", "https://tec.openplanner.team/stops/H5rx129b"], ["https://tec.openplanner.team/stops/Bndb4ch1", "https://tec.openplanner.team/stops/Bptblma1"], ["https://tec.openplanner.team/stops/X764aea", "https://tec.openplanner.team/stops/X765aca"], ["https://tec.openplanner.team/stops/LRAcouv2", "https://tec.openplanner.team/stops/LRAgrot2"], ["https://tec.openplanner.team/stops/H1ms245b", "https://tec.openplanner.team/stops/H1ms264a"], ["https://tec.openplanner.team/stops/LCTgare4", "https://tec.openplanner.team/stops/LCTpt--2"], ["https://tec.openplanner.team/stops/X886afb", "https://tec.openplanner.team/stops/X886agb"], ["https://tec.openplanner.team/stops/LRmsmvo2", "https://tec.openplanner.team/stops/LRmsmvo3"], ["https://tec.openplanner.team/stops/Bquebuc1", "https://tec.openplanner.team/stops/Bstecou1"], ["https://tec.openplanner.team/stops/N501jjb", "https://tec.openplanner.team/stops/N501jka"], ["https://tec.openplanner.team/stops/Bcsgcou2", "https://tec.openplanner.team/stops/Bohnpla2"], ["https://tec.openplanner.team/stops/Cfamate1", "https://tec.openplanner.team/stops/Cflvxsa2"], ["https://tec.openplanner.team/stops/LPobois1", "https://tec.openplanner.team/stops/LPoewer2"], ["https://tec.openplanner.team/stops/LeLsied1", "https://tec.openplanner.team/stops/LwYsour4"], ["https://tec.openplanner.team/stops/H1si155a", "https://tec.openplanner.team/stops/H1vt195b"], ["https://tec.openplanner.team/stops/LCocasc1", "https://tec.openplanner.team/stops/LTPsatr1"], ["https://tec.openplanner.team/stops/Bhandub1", "https://tec.openplanner.team/stops/Bthscbl1"], ["https://tec.openplanner.team/stops/LOLbout1", "https://tec.openplanner.team/stops/LXHfalh1"], ["https://tec.openplanner.team/stops/LREgare2", "https://tec.openplanner.team/stops/LREgrot2"], ["https://tec.openplanner.team/stops/LNIbas-2", "https://tec.openplanner.team/stops/LNIhaut1"], ["https://tec.openplanner.team/stops/Bbaulil1", "https://tec.openplanner.team/stops/Bbaulil2"], ["https://tec.openplanner.team/stops/Bwaypon1", "https://tec.openplanner.team/stops/Cwspavi1"], ["https://tec.openplanner.team/stops/X925aga", "https://tec.openplanner.team/stops/X949amb"], ["https://tec.openplanner.team/stops/Lprceri2", "https://tec.openplanner.team/stops/Lprtour2"], ["https://tec.openplanner.team/stops/Bbgnvel1", "https://tec.openplanner.team/stops/Bbgnvel2"], ["https://tec.openplanner.team/stops/X725bea", "https://tec.openplanner.team/stops/X725beb"], ["https://tec.openplanner.team/stops/X783abb", "https://tec.openplanner.team/stops/X783acd"], ["https://tec.openplanner.team/stops/N534awc", "https://tec.openplanner.team/stops/N534axb"], ["https://tec.openplanner.team/stops/H1do109a", "https://tec.openplanner.team/stops/H1do111a"], ["https://tec.openplanner.team/stops/X649ada", "https://tec.openplanner.team/stops/X649adb"], ["https://tec.openplanner.team/stops/Cjugill4", "https://tec.openplanner.team/stops/CMbert1"], ["https://tec.openplanner.team/stops/Bhvlpla1", "https://tec.openplanner.team/stops/Bhvlpla2"], ["https://tec.openplanner.team/stops/H4ga154a", "https://tec.openplanner.team/stops/H4vx360a"], ["https://tec.openplanner.team/stops/Bbeaech2", "https://tec.openplanner.team/stops/Bbealou2"], ["https://tec.openplanner.team/stops/LHCkoul2", "https://tec.openplanner.team/stops/LHMhof-1"], ["https://tec.openplanner.team/stops/H1ha186a", "https://tec.openplanner.team/stops/H1ha187b"], ["https://tec.openplanner.team/stops/X601bka", "https://tec.openplanner.team/stops/X601bza"], ["https://tec.openplanner.team/stops/LRmhage5", "https://tec.openplanner.team/stops/LRmhage6"], ["https://tec.openplanner.team/stops/LVTeg--1", "https://tec.openplanner.team/stops/LVTeg--2"], ["https://tec.openplanner.team/stops/X731aba", "https://tec.openplanner.team/stops/X731abb"], ["https://tec.openplanner.team/stops/Bborche1", "https://tec.openplanner.team/stops/Bhtihau1"], ["https://tec.openplanner.team/stops/N212aka", "https://tec.openplanner.team/stops/N367ada"], ["https://tec.openplanner.team/stops/LCHfond1", "https://tec.openplanner.team/stops/Lprmerc*"], ["https://tec.openplanner.team/stops/Bgnvoha4", "https://tec.openplanner.team/stops/Blasren2"], ["https://tec.openplanner.team/stops/H4ar173a", "https://tec.openplanner.team/stops/H4ar178a"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/Csurela1"], ["https://tec.openplanner.team/stops/H1pw120a", "https://tec.openplanner.team/stops/H1pw121a"], ["https://tec.openplanner.team/stops/LSCeg--2", "https://tec.openplanner.team/stops/LSCeg--4"], ["https://tec.openplanner.team/stops/X937ada", "https://tec.openplanner.team/stops/X937afa"], ["https://tec.openplanner.team/stops/Cchcase1", "https://tec.openplanner.team/stops/Cchcase4"], ["https://tec.openplanner.team/stops/N501bda", "https://tec.openplanner.team/stops/N501mla"], ["https://tec.openplanner.team/stops/Bdvmsar1", "https://tec.openplanner.team/stops/Bdvmsar2"], ["https://tec.openplanner.team/stops/LbThutt1", "https://tec.openplanner.team/stops/LbThutt2"], ["https://tec.openplanner.team/stops/N584aub", "https://tec.openplanner.team/stops/N584azb"], ["https://tec.openplanner.team/stops/H4ml207a", "https://tec.openplanner.team/stops/H4tg262a"], ["https://tec.openplanner.team/stops/Blasbh52", "https://tec.openplanner.team/stops/Blaspch1"], ["https://tec.openplanner.team/stops/Brsga152", "https://tec.openplanner.team/stops/Brsgepr1"], ["https://tec.openplanner.team/stops/NL76aga", "https://tec.openplanner.team/stops/NL76agb"], ["https://tec.openplanner.team/stops/LSAhaye1", "https://tec.openplanner.team/stops/LSAtrih1"], ["https://tec.openplanner.team/stops/N390aea", "https://tec.openplanner.team/stops/N390aeb"], ["https://tec.openplanner.team/stops/LCvneuv5", "https://tec.openplanner.team/stops/LCvneuv6"], ["https://tec.openplanner.team/stops/X768aja", "https://tec.openplanner.team/stops/X768akb"], ["https://tec.openplanner.team/stops/Ctucour2", "https://tec.openplanner.team/stops/Ctuecol1"], ["https://tec.openplanner.team/stops/X359aab", "https://tec.openplanner.team/stops/X359aac"], ["https://tec.openplanner.team/stops/Bwategl1", "https://tec.openplanner.team/stops/Bwatras2"], ["https://tec.openplanner.team/stops/Bgdhmet2", "https://tec.openplanner.team/stops/Blinhue2"], ["https://tec.openplanner.team/stops/Bitrbvo1", "https://tec.openplanner.team/stops/Bvirdco2"], ["https://tec.openplanner.team/stops/Lveensi2", "https://tec.openplanner.team/stops/Lveveou1"], ["https://tec.openplanner.team/stops/H1bs110b", "https://tec.openplanner.team/stops/H1bs110c"], ["https://tec.openplanner.team/stops/N106ada", "https://tec.openplanner.team/stops/N137aia"], ["https://tec.openplanner.team/stops/Crcgare1", "https://tec.openplanner.team/stops/NH03afa"], ["https://tec.openplanner.team/stops/LCvmonu1", "https://tec.openplanner.team/stops/LTBeg--2"], ["https://tec.openplanner.team/stops/Bwatifr2", "https://tec.openplanner.team/stops/Bwatrdu1"], ["https://tec.openplanner.team/stops/H1eq116a", "https://tec.openplanner.team/stops/H1eq117a"], ["https://tec.openplanner.team/stops/X713adb", "https://tec.openplanner.team/stops/X713aeb"], ["https://tec.openplanner.team/stops/Llgchau1", "https://tec.openplanner.team/stops/Llglaha2"], ["https://tec.openplanner.team/stops/Lrecite1", "https://tec.openplanner.team/stops/Lreec--2"], ["https://tec.openplanner.team/stops/LaR1G--2", "https://tec.openplanner.team/stops/LaRkape2"], ["https://tec.openplanner.team/stops/Cfmrrou1", "https://tec.openplanner.team/stops/Cfomays1"], ["https://tec.openplanner.team/stops/X858afb", "https://tec.openplanner.team/stops/X858aga"], ["https://tec.openplanner.team/stops/LmHburg1", "https://tec.openplanner.team/stops/LmHperl1"], ["https://tec.openplanner.team/stops/Lgrbell1", "https://tec.openplanner.team/stops/Lgrdemo2"], ["https://tec.openplanner.team/stops/Lsmh1801", "https://tec.openplanner.team/stops/Lsmh1802"], ["https://tec.openplanner.team/stops/N514aja", "https://tec.openplanner.team/stops/N514aka"], ["https://tec.openplanner.team/stops/X858aeb", "https://tec.openplanner.team/stops/X858afa"], ["https://tec.openplanner.team/stops/Lseserv1", "https://tec.openplanner.team/stops/Lseserv2"], ["https://tec.openplanner.team/stops/X619afb", "https://tec.openplanner.team/stops/X619aka"], ["https://tec.openplanner.team/stops/Cmafafe2", "https://tec.openplanner.team/stops/Cmmbsit1"], ["https://tec.openplanner.team/stops/Bfelpla2", "https://tec.openplanner.team/stops/Bsenpeu1"], ["https://tec.openplanner.team/stops/N127afa", "https://tec.openplanner.team/stops/N127bha"], ["https://tec.openplanner.team/stops/N501kwb", "https://tec.openplanner.team/stops/N501mrb"], ["https://tec.openplanner.team/stops/Llglave2", "https://tec.openplanner.team/stops/Llgschm2"], ["https://tec.openplanner.team/stops/H1bu140a", "https://tec.openplanner.team/stops/H1bu140b"], ["https://tec.openplanner.team/stops/N120aab", "https://tec.openplanner.team/stops/N121adb"], ["https://tec.openplanner.team/stops/Cnacent1", "https://tec.openplanner.team/stops/Cnacent4"], ["https://tec.openplanner.team/stops/Cvstouv1", "https://tec.openplanner.team/stops/Cwfronc1"], ["https://tec.openplanner.team/stops/Bnivasa1", "https://tec.openplanner.team/stops/Bnivcol2"], ["https://tec.openplanner.team/stops/Lhrabho2", "https://tec.openplanner.team/stops/Lvitomb2"], ["https://tec.openplanner.team/stops/H1pa108b", "https://tec.openplanner.team/stops/H1pa120a"], ["https://tec.openplanner.team/stops/H4mv188b", "https://tec.openplanner.team/stops/H4mv192b"], ["https://tec.openplanner.team/stops/LWibare1", "https://tec.openplanner.team/stops/LWipaif3"], ["https://tec.openplanner.team/stops/N503afa", "https://tec.openplanner.team/stops/N503agb"], ["https://tec.openplanner.team/stops/N501jha", "https://tec.openplanner.team/stops/N501jib"], ["https://tec.openplanner.team/stops/Lgrclin4", "https://tec.openplanner.team/stops/Lvccime1"], ["https://tec.openplanner.team/stops/LHUchpl2", "https://tec.openplanner.team/stops/LHUdeni3"], ["https://tec.openplanner.team/stops/Cplcafp1", "https://tec.openplanner.team/stops/Cplcafp2"], ["https://tec.openplanner.team/stops/H4do100a", "https://tec.openplanner.team/stops/H4do202a"], ["https://tec.openplanner.team/stops/NL57aha", "https://tec.openplanner.team/stops/NL57ajb"], ["https://tec.openplanner.team/stops/LESflag1", "https://tec.openplanner.team/stops/LPOchan1"], ["https://tec.openplanner.team/stops/N512aha", "https://tec.openplanner.team/stops/N512aid"], ["https://tec.openplanner.team/stops/LBdcarr2", "https://tec.openplanner.team/stops/LBdcime1"], ["https://tec.openplanner.team/stops/Bbiecoc2", "https://tec.openplanner.team/stops/Bbiefon2"], ["https://tec.openplanner.team/stops/Caigibe2", "https://tec.openplanner.team/stops/Crspair2"], ["https://tec.openplanner.team/stops/H5qu143c", "https://tec.openplanner.team/stops/H5qu156c"], ["https://tec.openplanner.team/stops/H4lg100a", "https://tec.openplanner.team/stops/H4ta119b"], ["https://tec.openplanner.team/stops/LMYvill1", "https://tec.openplanner.team/stops/LXofont2"], ["https://tec.openplanner.team/stops/H1al146a", "https://tec.openplanner.team/stops/H1mb131a"], ["https://tec.openplanner.team/stops/X824ajb", "https://tec.openplanner.team/stops/X826aga"], ["https://tec.openplanner.team/stops/LFFchab2", "https://tec.openplanner.team/stops/LFFeg--1"], ["https://tec.openplanner.team/stops/LMOc50-1", "https://tec.openplanner.team/stops/LMOeg--2"], ["https://tec.openplanner.team/stops/Bbeaegl2", "https://tec.openplanner.team/stops/Bmlncle1"], ["https://tec.openplanner.team/stops/N534apg", "https://tec.openplanner.team/stops/N534asb"], ["https://tec.openplanner.team/stops/LAUberg2", "https://tec.openplanner.team/stops/LLC170-2"], ["https://tec.openplanner.team/stops/Cjudewe1", "https://tec.openplanner.team/stops/Clodrio2"], ["https://tec.openplanner.team/stops/Lprferm2", "https://tec.openplanner.team/stops/Lprtill1"], ["https://tec.openplanner.team/stops/H1bi103b", "https://tec.openplanner.team/stops/H1lo119a"], ["https://tec.openplanner.team/stops/H1lb153a", "https://tec.openplanner.team/stops/H1lb154b"], ["https://tec.openplanner.team/stops/Lemeg--1", "https://tec.openplanner.team/stops/Lemeg--2"], ["https://tec.openplanner.team/stops/Cmmjami2", "https://tec.openplanner.team/stops/Cmmserv3"], ["https://tec.openplanner.team/stops/N113afa", "https://tec.openplanner.team/stops/N113afb"], ["https://tec.openplanner.team/stops/Llgcite1", "https://tec.openplanner.team/stops/Llgcite4"], ["https://tec.openplanner.team/stops/Ccircar2", "https://tec.openplanner.team/stops/Ccivill1"], ["https://tec.openplanner.team/stops/H4ry131a", "https://tec.openplanner.team/stops/H4ry131b"], ["https://tec.openplanner.team/stops/Cfrcoop1", "https://tec.openplanner.team/stops/Cfrplac1"], ["https://tec.openplanner.team/stops/N353adb", "https://tec.openplanner.team/stops/N353afb"], ["https://tec.openplanner.team/stops/LaMadam2", "https://tec.openplanner.team/stops/LvAschw1"], ["https://tec.openplanner.team/stops/Lghreyn2", "https://tec.openplanner.team/stops/Lghwass1"], ["https://tec.openplanner.team/stops/LhUkape1", "https://tec.openplanner.team/stops/LhUrich1"], ["https://tec.openplanner.team/stops/LElgerd2", "https://tec.openplanner.team/stops/LOucarr2"], ["https://tec.openplanner.team/stops/X615axb", "https://tec.openplanner.team/stops/X615bba"], ["https://tec.openplanner.team/stops/Lagviad2", "https://tec.openplanner.team/stops/Lceourt1"], ["https://tec.openplanner.team/stops/LAmcorn2", "https://tec.openplanner.team/stops/LAmshel1"], ["https://tec.openplanner.team/stops/X616ahb", "https://tec.openplanner.team/stops/X617aga"], ["https://tec.openplanner.team/stops/LHovill1", "https://tec.openplanner.team/stops/LNvrout2"], ["https://tec.openplanner.team/stops/H1qu105b", "https://tec.openplanner.team/stops/H1qu110b"], ["https://tec.openplanner.team/stops/H4fo118b", "https://tec.openplanner.team/stops/H4fo119a"], ["https://tec.openplanner.team/stops/H2sv211b", "https://tec.openplanner.team/stops/H2sv216a"], ["https://tec.openplanner.team/stops/H1te179b", "https://tec.openplanner.team/stops/H1te180b"], ["https://tec.openplanner.team/stops/Cctchea2", "https://tec.openplanner.team/stops/Cctvche1"], ["https://tec.openplanner.team/stops/LBItnt-*", "https://tec.openplanner.team/stops/LCaalou2"], ["https://tec.openplanner.team/stops/N506bcb", "https://tec.openplanner.team/stops/N506bna"], ["https://tec.openplanner.team/stops/N531apa", "https://tec.openplanner.team/stops/N531aqa"], ["https://tec.openplanner.team/stops/LENengi2", "https://tec.openplanner.team/stops/LENgend1"], ["https://tec.openplanner.team/stops/N507aga", "https://tec.openplanner.team/stops/N507aib"], ["https://tec.openplanner.team/stops/X804awa", "https://tec.openplanner.team/stops/X804awb"], ["https://tec.openplanner.team/stops/X896ahb", "https://tec.openplanner.team/stops/X897apa"], ["https://tec.openplanner.team/stops/Lmitroi2", "https://tec.openplanner.team/stops/Lvtbocl2"], ["https://tec.openplanner.team/stops/N120ala", "https://tec.openplanner.team/stops/N121aha"], ["https://tec.openplanner.team/stops/LCPcomp1", "https://tec.openplanner.team/stops/LCPcomp2"], ["https://tec.openplanner.team/stops/H4fr142b", "https://tec.openplanner.team/stops/H4ob108b"], ["https://tec.openplanner.team/stops/LHUloui1", "https://tec.openplanner.team/stops/LHUloui2"], ["https://tec.openplanner.team/stops/Cmocalv1", "https://tec.openplanner.team/stops/Cmocalv4"], ["https://tec.openplanner.team/stops/LERpouh1", "https://tec.openplanner.team/stops/LHrreal1"], ["https://tec.openplanner.team/stops/N501erb", "https://tec.openplanner.team/stops/N501ggb"], ["https://tec.openplanner.team/stops/H4co110a", "https://tec.openplanner.team/stops/H4co141a"], ["https://tec.openplanner.team/stops/H1ms276a", "https://tec.openplanner.team/stops/H1ms905a"], ["https://tec.openplanner.team/stops/Lbobuil2", "https://tec.openplanner.team/stops/Lbotilf1"], ["https://tec.openplanner.team/stops/Lghalli1", "https://tec.openplanner.team/stops/Lghsimo4"], ["https://tec.openplanner.team/stops/H1le124a", "https://tec.openplanner.team/stops/H1le130b"], ["https://tec.openplanner.team/stops/LBrbern2", "https://tec.openplanner.team/stops/LMici091"], ["https://tec.openplanner.team/stops/N110aaa", "https://tec.openplanner.team/stops/N124aca"], ["https://tec.openplanner.team/stops/Btubmfa1", "https://tec.openplanner.team/stops/Btubpla1"], ["https://tec.openplanner.team/stops/X725ada", "https://tec.openplanner.team/stops/X725adb"], ["https://tec.openplanner.team/stops/Barcbav1", "https://tec.openplanner.team/stops/Bbsgrve1"], ["https://tec.openplanner.team/stops/Lbhhomv2", "https://tec.openplanner.team/stops/Lbhsion2"], ["https://tec.openplanner.team/stops/Bblaphi2", "https://tec.openplanner.team/stops/Bblasmo2"], ["https://tec.openplanner.team/stops/X736abb", "https://tec.openplanner.team/stops/X736acb"], ["https://tec.openplanner.team/stops/Lagrask1", "https://tec.openplanner.team/stops/Lagtenn2"], ["https://tec.openplanner.team/stops/H4oq226a", "https://tec.openplanner.team/stops/H4oq226c"], ["https://tec.openplanner.team/stops/Bsambra1", "https://tec.openplanner.team/stops/Bsamfma2"], ["https://tec.openplanner.team/stops/X370adb", "https://tec.openplanner.team/stops/X858aba"], ["https://tec.openplanner.team/stops/X761aaa", "https://tec.openplanner.team/stops/X761aba"], ["https://tec.openplanner.team/stops/X715apb", "https://tec.openplanner.team/stops/X731aga"], ["https://tec.openplanner.team/stops/N501bra", "https://tec.openplanner.team/stops/N501mwa"], ["https://tec.openplanner.team/stops/Bjodcsb2", "https://tec.openplanner.team/stops/Bsrgegl1"], ["https://tec.openplanner.team/stops/LaUn1--3", "https://tec.openplanner.team/stops/LsF39--2"], ["https://tec.openplanner.team/stops/NC14aua", "https://tec.openplanner.team/stops/NC14avb"], ["https://tec.openplanner.team/stops/X941ada", "https://tec.openplanner.team/stops/X941adb"], ["https://tec.openplanner.team/stops/LBEabbe2", "https://tec.openplanner.team/stops/LBEairp4"], ["https://tec.openplanner.team/stops/LTAbran1", "https://tec.openplanner.team/stops/LTAchau2"], ["https://tec.openplanner.team/stops/LWEeg--2", "https://tec.openplanner.team/stops/LWEgare1"], ["https://tec.openplanner.team/stops/H4ep129a", "https://tec.openplanner.team/stops/H4rm114a"], ["https://tec.openplanner.team/stops/LCEec--1", "https://tec.openplanner.team/stops/LCEinst1"], ["https://tec.openplanner.team/stops/X725aib", "https://tec.openplanner.team/stops/X727aaa"], ["https://tec.openplanner.team/stops/H4ir165a", "https://tec.openplanner.team/stops/H5at141b"], ["https://tec.openplanner.team/stops/Ccyfede2", "https://tec.openplanner.team/stops/Crbecol1"], ["https://tec.openplanner.team/stops/N501dnb", "https://tec.openplanner.team/stops/N501ena"], ["https://tec.openplanner.team/stops/Btilmon2", "https://tec.openplanner.team/stops/Btilsnc1"], ["https://tec.openplanner.team/stops/H2hg144b", "https://tec.openplanner.team/stops/H2hg158b"], ["https://tec.openplanner.team/stops/Bwagpco2", "https://tec.openplanner.team/stops/Bwagsta2"], ["https://tec.openplanner.team/stops/Llgcadr2", "https://tec.openplanner.team/stops/Llgcadr6"], ["https://tec.openplanner.team/stops/N232apa", "https://tec.openplanner.team/stops/N232axa"], ["https://tec.openplanner.team/stops/X609ada", "https://tec.openplanner.team/stops/X609adb"], ["https://tec.openplanner.team/stops/LORroma1", "https://tec.openplanner.team/stops/LWAbett2"], ["https://tec.openplanner.team/stops/H1fa117a", "https://tec.openplanner.team/stops/H1pe132b"], ["https://tec.openplanner.team/stops/Crolema2", "https://tec.openplanner.team/stops/Crolema4"], ["https://tec.openplanner.team/stops/X805aca", "https://tec.openplanner.team/stops/X805adb"], ["https://tec.openplanner.team/stops/Cjulucq2", "https://tec.openplanner.team/stops/Cjuvand1"], ["https://tec.openplanner.team/stops/Lagkink1", "https://tec.openplanner.team/stops/Lagkink2"], ["https://tec.openplanner.team/stops/N509akb", "https://tec.openplanner.team/stops/N509bea"], ["https://tec.openplanner.team/stops/LGHplai1", "https://tec.openplanner.team/stops/X542aha"], ["https://tec.openplanner.team/stops/N301ama", "https://tec.openplanner.team/stops/N301ana"], ["https://tec.openplanner.team/stops/H4ld123b", "https://tec.openplanner.team/stops/H4ld126a"], ["https://tec.openplanner.team/stops/Bnstver1", "https://tec.openplanner.team/stops/H2mi122a"], ["https://tec.openplanner.team/stops/Lemarde1", "https://tec.openplanner.team/stops/Lemfort2"], ["https://tec.openplanner.team/stops/Lrofont1", "https://tec.openplanner.team/stops/Lrosaun1"], ["https://tec.openplanner.team/stops/LdEkreu1", "https://tec.openplanner.team/stops/LdEkreu2"], ["https://tec.openplanner.team/stops/X612aeb", "https://tec.openplanner.team/stops/X613ada"], ["https://tec.openplanner.team/stops/LBDfran1", "https://tec.openplanner.team/stops/LJEniho2"], ["https://tec.openplanner.team/stops/H1ch132a", "https://tec.openplanner.team/stops/H1ch132b"], ["https://tec.openplanner.team/stops/X926adb", "https://tec.openplanner.team/stops/X928aab"], ["https://tec.openplanner.team/stops/N147aab", "https://tec.openplanner.team/stops/N147abb"], ["https://tec.openplanner.team/stops/X806aea", "https://tec.openplanner.team/stops/X806afa"], ["https://tec.openplanner.team/stops/Lsmh1802", "https://tec.openplanner.team/stops/Lsmrcim1"], ["https://tec.openplanner.team/stops/LSGbail1", "https://tec.openplanner.team/stops/LSGcent1"], ["https://tec.openplanner.team/stops/LPbpl--1", "https://tec.openplanner.team/stops/LPbpl--2"], ["https://tec.openplanner.team/stops/X892aea", "https://tec.openplanner.team/stops/X892afb"], ["https://tec.openplanner.team/stops/H1ca100b", "https://tec.openplanner.team/stops/H1ca108b"], ["https://tec.openplanner.team/stops/N501ada", "https://tec.openplanner.team/stops/N502adb"], ["https://tec.openplanner.team/stops/X921ajb", "https://tec.openplanner.team/stops/X921ajd"], ["https://tec.openplanner.team/stops/N894aea", "https://tec.openplanner.team/stops/X891ada"], ["https://tec.openplanner.team/stops/H4la196b", "https://tec.openplanner.team/stops/H4la198d"], ["https://tec.openplanner.team/stops/X630aaa", "https://tec.openplanner.team/stops/X638aaa"], ["https://tec.openplanner.team/stops/H1so137b", "https://tec.openplanner.team/stops/H1so143b"], ["https://tec.openplanner.team/stops/H4bu108a", "https://tec.openplanner.team/stops/H4bu108b"], ["https://tec.openplanner.team/stops/H1ms247a", "https://tec.openplanner.team/stops/H1ms932a"], ["https://tec.openplanner.team/stops/N132aga", "https://tec.openplanner.team/stops/N132agb"], ["https://tec.openplanner.team/stops/X721asa", "https://tec.openplanner.team/stops/X786abb"], ["https://tec.openplanner.team/stops/Becepco1", "https://tec.openplanner.team/stops/Becepco2"], ["https://tec.openplanner.team/stops/X812ala", "https://tec.openplanner.team/stops/X812beb"], ["https://tec.openplanner.team/stops/X748aaa", "https://tec.openplanner.team/stops/X748abb"], ["https://tec.openplanner.team/stops/X640aja", "https://tec.openplanner.team/stops/X640ajb"], ["https://tec.openplanner.team/stops/Cthegli2", "https://tec.openplanner.team/stops/Cthrwai1"], ["https://tec.openplanner.team/stops/X658acb", "https://tec.openplanner.team/stops/X658adb"], ["https://tec.openplanner.team/stops/H4ta132b", "https://tec.openplanner.team/stops/H4ta133a"], ["https://tec.openplanner.team/stops/LSpbawe1", "https://tec.openplanner.team/stops/LSpcarr1"], ["https://tec.openplanner.team/stops/LDAcite1", "https://tec.openplanner.team/stops/LRIcite2"], ["https://tec.openplanner.team/stops/H4to138a", "https://tec.openplanner.team/stops/H4to138b"], ["https://tec.openplanner.team/stops/H4pl114b", "https://tec.openplanner.team/stops/H4pl136a"], ["https://tec.openplanner.team/stops/LNEcouc2", "https://tec.openplanner.team/stops/LNEgaul4"], ["https://tec.openplanner.team/stops/LAbbass1", "https://tec.openplanner.team/stops/LTechpl1"], ["https://tec.openplanner.team/stops/LbTweyn1", "https://tec.openplanner.team/stops/LbUmalm1"], ["https://tec.openplanner.team/stops/LAYcont1", "https://tec.openplanner.team/stops/LAYwerb1"], ["https://tec.openplanner.team/stops/Bhancre2", "https://tec.openplanner.team/stops/NL37acb"], ["https://tec.openplanner.team/stops/LSIgehe1", "https://tec.openplanner.team/stops/LSIgehe2"], ["https://tec.openplanner.team/stops/LReeg--1", "https://tec.openplanner.team/stops/LRemorr4"], ["https://tec.openplanner.team/stops/LCHgele1", "https://tec.openplanner.team/stops/LThpoli1"], ["https://tec.openplanner.team/stops/H2hp119d", "https://tec.openplanner.team/stops/H2jo163a"], ["https://tec.openplanner.team/stops/LmR50--2", "https://tec.openplanner.team/stops/LmRh%C3%B6fe1"], ["https://tec.openplanner.team/stops/LHTcarr1", "https://tec.openplanner.team/stops/LHTlieg1"], ["https://tec.openplanner.team/stops/LFUchpl1", "https://tec.openplanner.team/stops/LFUgare1"], ["https://tec.openplanner.team/stops/X601ava", "https://tec.openplanner.team/stops/X601cxa"], ["https://tec.openplanner.team/stops/N501csb", "https://tec.openplanner.team/stops/N501cub"], ["https://tec.openplanner.team/stops/H4ty299c", "https://tec.openplanner.team/stops/H4ty326b"], ["https://tec.openplanner.team/stops/X912aea", "https://tec.openplanner.team/stops/X912aeb"], ["https://tec.openplanner.team/stops/Llgmarc2", "https://tec.openplanner.team/stops/Llgvelb2"], ["https://tec.openplanner.team/stops/LFLetoi1", "https://tec.openplanner.team/stops/LSpshin2"], ["https://tec.openplanner.team/stops/X669afb", "https://tec.openplanner.team/stops/X669ahb"], ["https://tec.openplanner.team/stops/Cvrfema2", "https://tec.openplanner.team/stops/Cvrhab22"], ["https://tec.openplanner.team/stops/H5wo127b", "https://tec.openplanner.team/stops/H5wo129b"], ["https://tec.openplanner.team/stops/H5is168a", "https://tec.openplanner.team/stops/H5is171b"], ["https://tec.openplanner.team/stops/LLiforg2", "https://tec.openplanner.team/stops/LListie2"], ["https://tec.openplanner.team/stops/Bgrmpco1", "https://tec.openplanner.team/stops/N522ata"], ["https://tec.openplanner.team/stops/H4ty296b", "https://tec.openplanner.team/stops/H4ty314e"], ["https://tec.openplanner.team/stops/Llgplop1", "https://tec.openplanner.team/stops/Lvtchpl1"], ["https://tec.openplanner.team/stops/N244alb", "https://tec.openplanner.team/stops/N244aoa"], ["https://tec.openplanner.team/stops/Bgzdgpa1", "https://tec.openplanner.team/stops/Bgzdgpa2"], ["https://tec.openplanner.team/stops/X804aib", "https://tec.openplanner.team/stops/X804ajb"], ["https://tec.openplanner.team/stops/N543aaa", "https://tec.openplanner.team/stops/N543axb"], ["https://tec.openplanner.team/stops/Bjancha1", "https://tec.openplanner.team/stops/Bjaneco1"], ["https://tec.openplanner.team/stops/LFOchab2", "https://tec.openplanner.team/stops/LFOcomb4"], ["https://tec.openplanner.team/stops/X749aaa", "https://tec.openplanner.team/stops/X749abb"], ["https://tec.openplanner.team/stops/Livfays2", "https://tec.openplanner.team/stops/LRaplac1"], ["https://tec.openplanner.team/stops/Bwatmgo3", "https://tec.openplanner.team/stops/Bwatmgo4"], ["https://tec.openplanner.team/stops/LESoneu3", "https://tec.openplanner.team/stops/LESryon1"], ["https://tec.openplanner.team/stops/LSTamer2", "https://tec.openplanner.team/stops/LSTcomm2"], ["https://tec.openplanner.team/stops/H2hp119a", "https://tec.openplanner.team/stops/H2hp261a"], ["https://tec.openplanner.team/stops/LAMec--1", "https://tec.openplanner.team/stops/LAMgreg1"], ["https://tec.openplanner.team/stops/N304abb", "https://tec.openplanner.team/stops/N305acb"], ["https://tec.openplanner.team/stops/N505aja", "https://tec.openplanner.team/stops/N512awb"], ["https://tec.openplanner.team/stops/X817aaa", "https://tec.openplanner.team/stops/X820aia"], ["https://tec.openplanner.team/stops/Bsenpbi1", "https://tec.openplanner.team/stops/Bsenpbi2"], ["https://tec.openplanner.team/stops/X769aia", "https://tec.openplanner.team/stops/X769akb"], ["https://tec.openplanner.team/stops/N543bma", "https://tec.openplanner.team/stops/N543bnb"], ["https://tec.openplanner.team/stops/X736aaa", "https://tec.openplanner.team/stops/X736adb"], ["https://tec.openplanner.team/stops/Cjuchli4", "https://tec.openplanner.team/stops/Cjuhopi1"], ["https://tec.openplanner.team/stops/N501fba", "https://tec.openplanner.team/stops/N501fbz"], ["https://tec.openplanner.team/stops/Lflmc--2", "https://tec.openplanner.team/stops/Lflroms5"], ["https://tec.openplanner.team/stops/H4bd110b", "https://tec.openplanner.team/stops/H4te250b"], ["https://tec.openplanner.team/stops/LHMchev1", "https://tec.openplanner.team/stops/LHMthys2"], ["https://tec.openplanner.team/stops/N229afb", "https://tec.openplanner.team/stops/N241abb"], ["https://tec.openplanner.team/stops/N423aca", "https://tec.openplanner.team/stops/N423aea"], ["https://tec.openplanner.team/stops/X773ajb", "https://tec.openplanner.team/stops/X774aad"], ["https://tec.openplanner.team/stops/Ladpara1", "https://tec.openplanner.team/stops/Lvevert1"], ["https://tec.openplanner.team/stops/N301abd", "https://tec.openplanner.team/stops/N301apb"], ["https://tec.openplanner.team/stops/N514acb", "https://tec.openplanner.team/stops/N514aja"], ["https://tec.openplanner.team/stops/H4eg103a", "https://tec.openplanner.team/stops/H4eg106b"], ["https://tec.openplanner.team/stops/Cjubert1", "https://tec.openplanner.team/stops/Cjudelv3"], ["https://tec.openplanner.team/stops/Bwspbos2", "https://tec.openplanner.team/stops/Bwspm372"], ["https://tec.openplanner.team/stops/H4ta122b", "https://tec.openplanner.team/stops/H4ta131a"], ["https://tec.openplanner.team/stops/LATmonu2", "https://tec.openplanner.team/stops/LATphar1"], ["https://tec.openplanner.team/stops/Cgpplac1", "https://tec.openplanner.team/stops/Cgpplac2"], ["https://tec.openplanner.team/stops/LEBmoul1", "https://tec.openplanner.team/stops/LEBmoul2"], ["https://tec.openplanner.team/stops/Lmopast1", "https://tec.openplanner.team/stops/Lmopast2"], ["https://tec.openplanner.team/stops/X818ana", "https://tec.openplanner.team/stops/X818aob"], ["https://tec.openplanner.team/stops/Lhuferm1", "https://tec.openplanner.team/stops/Lhuferm2"], ["https://tec.openplanner.team/stops/LLM4rou2", "https://tec.openplanner.team/stops/LLM4rou3"], ["https://tec.openplanner.team/stops/Blsmbfe1", "https://tec.openplanner.team/stops/Bneervc1"], ["https://tec.openplanner.team/stops/X769aab", "https://tec.openplanner.team/stops/X769aqb"], ["https://tec.openplanner.team/stops/N501iba", "https://tec.openplanner.team/stops/N501ija"], ["https://tec.openplanner.team/stops/N534bwa", "https://tec.openplanner.team/stops/N534bya"], ["https://tec.openplanner.team/stops/N118ana", "https://tec.openplanner.team/stops/N118axb"], ["https://tec.openplanner.team/stops/LLrisa-*", "https://tec.openplanner.team/stops/LLrjeho1"], ["https://tec.openplanner.team/stops/N160aaa", "https://tec.openplanner.team/stops/N160afb"], ["https://tec.openplanner.team/stops/N116aaa", "https://tec.openplanner.team/stops/N116abb"], ["https://tec.openplanner.team/stops/Cprvill2", "https://tec.openplanner.team/stops/NC11ana"], ["https://tec.openplanner.team/stops/X614afa", "https://tec.openplanner.team/stops/X614afb"], ["https://tec.openplanner.team/stops/X640aka", "https://tec.openplanner.team/stops/X640akb"], ["https://tec.openplanner.team/stops/N542ada", "https://tec.openplanner.team/stops/N577afa"], ["https://tec.openplanner.team/stops/LWAlong3", "https://tec.openplanner.team/stops/LWAwegg2"], ["https://tec.openplanner.team/stops/Lagsauh1", "https://tec.openplanner.team/stops/Lagsauh2"], ["https://tec.openplanner.team/stops/N501cja", "https://tec.openplanner.team/stops/N501mpa"], ["https://tec.openplanner.team/stops/LON21--1", "https://tec.openplanner.team/stops/LON21--2"], ["https://tec.openplanner.team/stops/Ccuhsti2", "https://tec.openplanner.team/stops/Cpllimi4"], ["https://tec.openplanner.team/stops/N125aca", "https://tec.openplanner.team/stops/N134aga"], ["https://tec.openplanner.team/stops/X773ana", "https://tec.openplanner.team/stops/X773anb"], ["https://tec.openplanner.team/stops/X790aaa", "https://tec.openplanner.team/stops/X790anb"], ["https://tec.openplanner.team/stops/H2ec104a", "https://tec.openplanner.team/stops/H2me117a"], ["https://tec.openplanner.team/stops/X359afa", "https://tec.openplanner.team/stops/X359aga"], ["https://tec.openplanner.team/stops/H4wn129a", "https://tec.openplanner.team/stops/H4wn129b"], ["https://tec.openplanner.team/stops/X870aaa", "https://tec.openplanner.team/stops/X870aeb"], ["https://tec.openplanner.team/stops/X946aga", "https://tec.openplanner.team/stops/X946agb"], ["https://tec.openplanner.team/stops/N150agb", "https://tec.openplanner.team/stops/N150akb"], ["https://tec.openplanner.team/stops/LLrquar1", "https://tec.openplanner.team/stops/LTHcime2"], ["https://tec.openplanner.team/stops/LrDsage1", "https://tec.openplanner.team/stops/LrDschl1"], ["https://tec.openplanner.team/stops/N569alb", "https://tec.openplanner.team/stops/N569amb"], ["https://tec.openplanner.team/stops/Bjaupro1", "https://tec.openplanner.team/stops/Bjaurgo1"], ["https://tec.openplanner.team/stops/Brixbou1", "https://tec.openplanner.team/stops/Brixbou2"], ["https://tec.openplanner.team/stops/Ccipano1", "https://tec.openplanner.team/stops/Ccipano2"], ["https://tec.openplanner.team/stops/Lhrvert1", "https://tec.openplanner.team/stops/Lvtpata1"], ["https://tec.openplanner.team/stops/LPohoeg2", "https://tec.openplanner.team/stops/LPoxhav2"], ["https://tec.openplanner.team/stops/LWaatel1", "https://tec.openplanner.team/stops/LWaatel2"], ["https://tec.openplanner.team/stops/X763aaa", "https://tec.openplanner.team/stops/X763aab"], ["https://tec.openplanner.team/stops/Bplnbal1", "https://tec.openplanner.team/stops/Clpnapo2"], ["https://tec.openplanner.team/stops/H4mb203b", "https://tec.openplanner.team/stops/H4mb204b"], ["https://tec.openplanner.team/stops/Llgdepo1", "https://tec.openplanner.team/stops/Llgdepo2"], ["https://tec.openplanner.team/stops/H4er124a", "https://tec.openplanner.team/stops/H4sm247a"], ["https://tec.openplanner.team/stops/LhIkirc*", "https://tec.openplanner.team/stops/LmAgruf1"], ["https://tec.openplanner.team/stops/H1so133b", "https://tec.openplanner.team/stops/H1so146b"], ["https://tec.openplanner.team/stops/N529abb", "https://tec.openplanner.team/stops/N529aca"], ["https://tec.openplanner.team/stops/Lhrpost1", "https://tec.openplanner.team/stops/Llgcouv4"], ["https://tec.openplanner.team/stops/Lcepont1", "https://tec.openplanner.team/stops/Lcepont6"], ["https://tec.openplanner.team/stops/H4hn114a", "https://tec.openplanner.team/stops/H4jm118a"], ["https://tec.openplanner.team/stops/LmNlieb1", "https://tec.openplanner.team/stops/LmNlieb2"], ["https://tec.openplanner.team/stops/X601abb", "https://tec.openplanner.team/stops/X601btb"], ["https://tec.openplanner.team/stops/Buccbou1", "https://tec.openplanner.team/stops/Bucccal3"], ["https://tec.openplanner.team/stops/H1wi148c", "https://tec.openplanner.team/stops/H1wi152d"], ["https://tec.openplanner.team/stops/H4bs110a", "https://tec.openplanner.team/stops/H4bs110b"], ["https://tec.openplanner.team/stops/LETtemp1", "https://tec.openplanner.team/stops/Lremonu2"], ["https://tec.openplanner.team/stops/H1as102b", "https://tec.openplanner.team/stops/H1as154a"], ["https://tec.openplanner.team/stops/LOurena2", "https://tec.openplanner.team/stops/LVnflox2"], ["https://tec.openplanner.team/stops/N533aha", "https://tec.openplanner.team/stops/N551abb"], ["https://tec.openplanner.team/stops/X904aca", "https://tec.openplanner.team/stops/X904aea"], ["https://tec.openplanner.team/stops/H1te178a", "https://tec.openplanner.team/stops/H1te191b"], ["https://tec.openplanner.team/stops/X620aca", "https://tec.openplanner.team/stops/X620acb"], ["https://tec.openplanner.team/stops/X822aca", "https://tec.openplanner.team/stops/X822aqb"], ["https://tec.openplanner.team/stops/Crcfdom2", "https://tec.openplanner.team/stops/Csubosa1"], ["https://tec.openplanner.team/stops/N146aba", "https://tec.openplanner.team/stops/N146afa"], ["https://tec.openplanner.team/stops/Bglabra1", "https://tec.openplanner.team/stops/Cglbras1"], ["https://tec.openplanner.team/stops/N515apa", "https://tec.openplanner.team/stops/N515apb"], ["https://tec.openplanner.team/stops/X982bda", "https://tec.openplanner.team/stops/X982bkb"], ["https://tec.openplanner.team/stops/Cfohopi1", "https://tec.openplanner.team/stops/Cfovent1"], ["https://tec.openplanner.team/stops/H1do127b", "https://tec.openplanner.team/stops/H1do131d"], ["https://tec.openplanner.team/stops/LBYwez-1", "https://tec.openplanner.team/stops/Lgdstoc2"], ["https://tec.openplanner.team/stops/Ctyhame1", "https://tec.openplanner.team/stops/N137aja"], ["https://tec.openplanner.team/stops/Clibrun1", "https://tec.openplanner.team/stops/Cliburl1"], ["https://tec.openplanner.team/stops/LWHwaas1", "https://tec.openplanner.team/stops/LWscona1"], ["https://tec.openplanner.team/stops/NC14ama", "https://tec.openplanner.team/stops/NC14amb"], ["https://tec.openplanner.team/stops/Cdalpla1", "https://tec.openplanner.team/stops/Clomakr2"], ["https://tec.openplanner.team/stops/Cfomays1", "https://tec.openplanner.team/stops/Cgxchea1"], ["https://tec.openplanner.team/stops/LoUwelc2", "https://tec.openplanner.team/stops/LrUweve2"], ["https://tec.openplanner.team/stops/Bsomthi1", "https://tec.openplanner.team/stops/N584cba"], ["https://tec.openplanner.team/stops/Llgdelb1", "https://tec.openplanner.team/stops/Llgdelb2"], ["https://tec.openplanner.team/stops/H1hw125b", "https://tec.openplanner.team/stops/H1so141a"], ["https://tec.openplanner.team/stops/N507abb", "https://tec.openplanner.team/stops/N507alc"], ["https://tec.openplanner.team/stops/X882aia", "https://tec.openplanner.team/stops/X882ajb"], ["https://tec.openplanner.team/stops/LLrbano2", "https://tec.openplanner.team/stops/LLrbuis2"], ["https://tec.openplanner.team/stops/N548aha", "https://tec.openplanner.team/stops/N548ahb"], ["https://tec.openplanner.team/stops/N521aoa", "https://tec.openplanner.team/stops/N521aob"], ["https://tec.openplanner.team/stops/H1bo105a", "https://tec.openplanner.team/stops/H1bo111a"], ["https://tec.openplanner.team/stops/Bquecar2", "https://tec.openplanner.team/stops/Bquereb1"], ["https://tec.openplanner.team/stops/N229asa", "https://tec.openplanner.team/stops/N540ana"], ["https://tec.openplanner.team/stops/N501caa", "https://tec.openplanner.team/stops/N502ada"], ["https://tec.openplanner.team/stops/X829acb", "https://tec.openplanner.team/stops/X829aeb"], ["https://tec.openplanner.team/stops/X601bbd", "https://tec.openplanner.team/stops/X601bka"], ["https://tec.openplanner.team/stops/H1ni322a", "https://tec.openplanner.team/stops/H1ni323b"], ["https://tec.openplanner.team/stops/Bbrlmez1", "https://tec.openplanner.team/stops/Blkbbeu1"], ["https://tec.openplanner.team/stops/Lsepaqu2", "https://tec.openplanner.team/stops/Lseserv1"], ["https://tec.openplanner.team/stops/Ccpetan2", "https://tec.openplanner.team/stops/H2ca105b"], ["https://tec.openplanner.team/stops/Ljubruy2", "https://tec.openplanner.team/stops/Ljuvert2"], ["https://tec.openplanner.team/stops/Cflmarq1", "https://tec.openplanner.team/stops/Cflvxca2"], ["https://tec.openplanner.team/stops/LPLhest2", "https://tec.openplanner.team/stops/LPLhout1"], ["https://tec.openplanner.team/stops/Lmobols1", "https://tec.openplanner.team/stops/Lmobols2"], ["https://tec.openplanner.team/stops/LHEchar2", "https://tec.openplanner.team/stops/LHEpriv1"], ["https://tec.openplanner.team/stops/Cbmpano2", "https://tec.openplanner.team/stops/Cbmplac2"], ["https://tec.openplanner.team/stops/N520acb", "https://tec.openplanner.team/stops/N520ada"], ["https://tec.openplanner.team/stops/LOucarr1", "https://tec.openplanner.team/stops/LOucarr2"], ["https://tec.openplanner.team/stops/Bobacou1", "https://tec.openplanner.team/stops/Cobvill1"], ["https://tec.openplanner.team/stops/H4av100b", "https://tec.openplanner.team/stops/H4av107b"], ["https://tec.openplanner.team/stops/Ladxhen1", "https://tec.openplanner.team/stops/LHCcoul1"], ["https://tec.openplanner.team/stops/H4co108a", "https://tec.openplanner.team/stops/H4co133b"], ["https://tec.openplanner.team/stops/Chhlori1", "https://tec.openplanner.team/stops/Chhverr1"], ["https://tec.openplanner.team/stops/LOchalo2", "https://tec.openplanner.team/stops/NL35abb"], ["https://tec.openplanner.team/stops/LHggeer1", "https://tec.openplanner.team/stops/LHgpost1"], ["https://tec.openplanner.team/stops/X351aca", "https://tec.openplanner.team/stops/X351ada"], ["https://tec.openplanner.team/stops/Bblaast2", "https://tec.openplanner.team/stops/Bblagar6"], ["https://tec.openplanner.team/stops/N521aic", "https://tec.openplanner.team/stops/N521ama"], ["https://tec.openplanner.team/stops/X637ama", "https://tec.openplanner.team/stops/X637aoa"], ["https://tec.openplanner.team/stops/X986alb", "https://tec.openplanner.team/stops/X986alc"], ["https://tec.openplanner.team/stops/Lmolama1", "https://tec.openplanner.team/stops/Lmovand2"], ["https://tec.openplanner.team/stops/X717afa", "https://tec.openplanner.team/stops/X717afb"], ["https://tec.openplanner.team/stops/H2re166a", "https://tec.openplanner.team/stops/H3bi106b"], ["https://tec.openplanner.team/stops/LJAhanq1", "https://tec.openplanner.team/stops/LJAhanq2"], ["https://tec.openplanner.team/stops/X948aic", "https://tec.openplanner.team/stops/X948arb"], ["https://tec.openplanner.team/stops/X897axb", "https://tec.openplanner.team/stops/X992aga"], ["https://tec.openplanner.team/stops/Blimbet3", "https://tec.openplanner.team/stops/Blimd672"], ["https://tec.openplanner.team/stops/LON02--2", "https://tec.openplanner.team/stops/LWastei1"], ["https://tec.openplanner.team/stops/X747ada", "https://tec.openplanner.team/stops/X747ala"], ["https://tec.openplanner.team/stops/Cdamarc1", "https://tec.openplanner.team/stops/Cdaptca2"], ["https://tec.openplanner.team/stops/Chpceri2", "https://tec.openplanner.team/stops/Cwgtill1"], ["https://tec.openplanner.team/stops/N506ana", "https://tec.openplanner.team/stops/N506anb"], ["https://tec.openplanner.team/stops/Bnivath1", "https://tec.openplanner.team/stops/Bnivver1"], ["https://tec.openplanner.team/stops/Cmybefe2", "https://tec.openplanner.team/stops/Cmywarc2"], ["https://tec.openplanner.team/stops/NL76ala", "https://tec.openplanner.team/stops/NL76aqa"], ["https://tec.openplanner.team/stops/Cfocmed1", "https://tec.openplanner.team/stops/Cfocorn2"], ["https://tec.openplanner.team/stops/X825aab", "https://tec.openplanner.team/stops/X825abb"], ["https://tec.openplanner.team/stops/LsHkirc1", "https://tec.openplanner.team/stops/LsHthom2"], ["https://tec.openplanner.team/stops/H4og208b", "https://tec.openplanner.team/stops/H4og215a"], ["https://tec.openplanner.team/stops/H3so156b", "https://tec.openplanner.team/stops/H3so174b"], ["https://tec.openplanner.team/stops/Bbsthpl1", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/LSpcarr2", "https://tec.openplanner.team/stops/LSpvanr2"], ["https://tec.openplanner.team/stops/N522aub", "https://tec.openplanner.team/stops/N529aab"], ["https://tec.openplanner.team/stops/H4gr110a", "https://tec.openplanner.team/stops/H4gr112a"], ["https://tec.openplanner.team/stops/LBTcarr2", "https://tec.openplanner.team/stops/LBTnors2"], ["https://tec.openplanner.team/stops/Cfanvmo1", "https://tec.openplanner.team/stops/Cfawain1"], ["https://tec.openplanner.team/stops/X948aca", "https://tec.openplanner.team/stops/X948acb"], ["https://tec.openplanner.team/stops/X901blb", "https://tec.openplanner.team/stops/X901bmb"], ["https://tec.openplanner.team/stops/X608aba", "https://tec.openplanner.team/stops/X608aca"], ["https://tec.openplanner.team/stops/N573aab", "https://tec.openplanner.team/stops/N573aeb"], ["https://tec.openplanner.team/stops/H4wi166b", "https://tec.openplanner.team/stops/H4wi169a"], ["https://tec.openplanner.team/stops/LSTvaul1", "https://tec.openplanner.team/stops/LWneg--1"], ["https://tec.openplanner.team/stops/H1do130b", "https://tec.openplanner.team/stops/H1ho135a"], ["https://tec.openplanner.team/stops/N101apa", "https://tec.openplanner.team/stops/N151aaa"], ["https://tec.openplanner.team/stops/N542aba", "https://tec.openplanner.team/stops/N542aob"], ["https://tec.openplanner.team/stops/N531aha", "https://tec.openplanner.team/stops/N531aka"], ["https://tec.openplanner.team/stops/LRMn58-1", "https://tec.openplanner.team/stops/LSfcoll*"], ["https://tec.openplanner.team/stops/N544afb", "https://tec.openplanner.team/stops/N547aeb"], ["https://tec.openplanner.team/stops/X223acb", "https://tec.openplanner.team/stops/X979aja"], ["https://tec.openplanner.team/stops/LOunebl2", "https://tec.openplanner.team/stops/X261aba"], ["https://tec.openplanner.team/stops/X718aba", "https://tec.openplanner.team/stops/X718aca"], ["https://tec.openplanner.team/stops/X652aba", "https://tec.openplanner.team/stops/X652ada"], ["https://tec.openplanner.team/stops/Cchlefe2", "https://tec.openplanner.team/stops/Cchmott2"], ["https://tec.openplanner.team/stops/N117baa", "https://tec.openplanner.team/stops/N147aca"], ["https://tec.openplanner.team/stops/Llgcoll1", "https://tec.openplanner.team/stops/Llgcoti*"], ["https://tec.openplanner.team/stops/H1do115b", "https://tec.openplanner.team/stops/H1do122a"], ["https://tec.openplanner.team/stops/Cctpass2", "https://tec.openplanner.team/stops/Cctvand2"], ["https://tec.openplanner.team/stops/X609aib", "https://tec.openplanner.team/stops/X610aaa"], ["https://tec.openplanner.team/stops/N550afa", "https://tec.openplanner.team/stops/N550agb"], ["https://tec.openplanner.team/stops/Lsemara2", "https://tec.openplanner.team/stops/Lsepuit2"], ["https://tec.openplanner.team/stops/Lthfren1", "https://tec.openplanner.team/stops/Lthfren2"], ["https://tec.openplanner.team/stops/Bvxgegl1", "https://tec.openplanner.team/stops/Bvxgeta1"], ["https://tec.openplanner.team/stops/LBslama1", "https://tec.openplanner.team/stops/NL73aeb"], ["https://tec.openplanner.team/stops/Lhelait2", "https://tec.openplanner.team/stops/Lheneuv2"], ["https://tec.openplanner.team/stops/LmDdenk2", "https://tec.openplanner.team/stops/LwLkirc2"], ["https://tec.openplanner.team/stops/Cflglav1", "https://tec.openplanner.team/stops/Cwgcroi1"], ["https://tec.openplanner.team/stops/X663ada", "https://tec.openplanner.team/stops/X663aoa"], ["https://tec.openplanner.team/stops/H1he102a", "https://tec.openplanner.team/stops/H1mh116a"], ["https://tec.openplanner.team/stops/H1ha201a", "https://tec.openplanner.team/stops/H1ms282a"], ["https://tec.openplanner.team/stops/Lanpont2", "https://tec.openplanner.team/stops/Lmolagu1"], ["https://tec.openplanner.team/stops/N501aja", "https://tec.openplanner.team/stops/N501anb"], ["https://tec.openplanner.team/stops/N351axa", "https://tec.openplanner.team/stops/X349aaa"], ["https://tec.openplanner.team/stops/Barqpwa1", "https://tec.openplanner.team/stops/Barqres1"], ["https://tec.openplanner.team/stops/Cmafafe1", "https://tec.openplanner.team/stops/Cmmbsit1"], ["https://tec.openplanner.team/stops/Ladfran3", "https://tec.openplanner.team/stops/Lvegrap2"], ["https://tec.openplanner.team/stops/H1on128b", "https://tec.openplanner.team/stops/H1on128d"], ["https://tec.openplanner.team/stops/N554aab", "https://tec.openplanner.team/stops/N554aba"], ["https://tec.openplanner.team/stops/Cchtiro4", "https://tec.openplanner.team/stops/CMtirou1"], ["https://tec.openplanner.team/stops/N150afb", "https://tec.openplanner.team/stops/N150aib"], ["https://tec.openplanner.team/stops/LARparc2", "https://tec.openplanner.team/stops/LRIcent1"], ["https://tec.openplanner.team/stops/X871aca", "https://tec.openplanner.team/stops/X871acb"], ["https://tec.openplanner.team/stops/LVNleco1", "https://tec.openplanner.team/stops/LVNroua1"], ["https://tec.openplanner.team/stops/Lghcfer1", "https://tec.openplanner.team/stops/Lghvold1"], ["https://tec.openplanner.team/stops/N562aca", "https://tec.openplanner.team/stops/N562bkb"], ["https://tec.openplanner.team/stops/N261ahb", "https://tec.openplanner.team/stops/N337aib"], ["https://tec.openplanner.team/stops/LSseg--1", "https://tec.openplanner.team/stops/LSsmond1"], ["https://tec.openplanner.team/stops/Lmaelhe2", "https://tec.openplanner.team/stops/Lmagara1"], ["https://tec.openplanner.team/stops/LHUgare*", "https://tec.openplanner.team/stops/LHUlebo2"], ["https://tec.openplanner.team/stops/LFTeg--1", "https://tec.openplanner.team/stops/LWZponh1"], ["https://tec.openplanner.team/stops/N124aab", "https://tec.openplanner.team/stops/N124aac"], ["https://tec.openplanner.team/stops/N507ama", "https://tec.openplanner.team/stops/N507amb"], ["https://tec.openplanner.team/stops/CMpige1", "https://tec.openplanner.team/stops/CMpige2"], ["https://tec.openplanner.team/stops/X639aib", "https://tec.openplanner.team/stops/X639ajb"], ["https://tec.openplanner.team/stops/LAUberg1", "https://tec.openplanner.team/stops/LAUcose1"], ["https://tec.openplanner.team/stops/H1ms287a", "https://tec.openplanner.team/stops/H1ms925a"], ["https://tec.openplanner.team/stops/H1ba117a", "https://tec.openplanner.team/stops/H1te174a"], ["https://tec.openplanner.team/stops/H4ru240b", "https://tec.openplanner.team/stops/H4ty275a"], ["https://tec.openplanner.team/stops/X725aba", "https://tec.openplanner.team/stops/X725abb"], ["https://tec.openplanner.team/stops/X750adb", "https://tec.openplanner.team/stops/X750aea"], ["https://tec.openplanner.team/stops/Bramcom1", "https://tec.openplanner.team/stops/Bramrdf1"], ["https://tec.openplanner.team/stops/Bnivpla1", "https://tec.openplanner.team/stops/Bnivpso1"], ["https://tec.openplanner.team/stops/LTamoul1", "https://tec.openplanner.team/stops/LTamoul2"], ["https://tec.openplanner.team/stops/Cgocalv4", "https://tec.openplanner.team/stops/CMcalv2"], ["https://tec.openplanner.team/stops/H2sb238a", "https://tec.openplanner.team/stops/H2sb271a"], ["https://tec.openplanner.team/stops/N581aaa", "https://tec.openplanner.team/stops/N581aca"], ["https://tec.openplanner.team/stops/Blhurcl1", "https://tec.openplanner.team/stops/Bovevnd2"], ["https://tec.openplanner.team/stops/LTgchar7", "https://tec.openplanner.team/stops/LTgwarf1"], ["https://tec.openplanner.team/stops/LETsaiv1", "https://tec.openplanner.team/stops/LETtemp2"], ["https://tec.openplanner.team/stops/H4hg154a", "https://tec.openplanner.team/stops/H4hg157b"], ["https://tec.openplanner.team/stops/LVIpneu2", "https://tec.openplanner.team/stops/LVIsouv3"], ["https://tec.openplanner.team/stops/Ctaphaz1", "https://tec.openplanner.team/stops/N543bkb"], ["https://tec.openplanner.team/stops/Cmlclos1", "https://tec.openplanner.team/stops/Cmmbsit1"], ["https://tec.openplanner.team/stops/X661abb", "https://tec.openplanner.team/stops/X839aca"], ["https://tec.openplanner.team/stops/Bblamsj2", "https://tec.openplanner.team/stops/Bblarbe1"], ["https://tec.openplanner.team/stops/N509aga", "https://tec.openplanner.team/stops/N510adb"], ["https://tec.openplanner.team/stops/LXobaty1", "https://tec.openplanner.team/stops/X599afd"], ["https://tec.openplanner.team/stops/N351aua", "https://tec.openplanner.team/stops/N351ava"], ["https://tec.openplanner.team/stops/X757agb", "https://tec.openplanner.team/stops/X757aia"], ["https://tec.openplanner.team/stops/N349aia", "https://tec.openplanner.team/stops/X349aab"], ["https://tec.openplanner.team/stops/LlOdrei1", "https://tec.openplanner.team/stops/LlOkreu1"], ["https://tec.openplanner.team/stops/N244ara", "https://tec.openplanner.team/stops/N244aub"], ["https://tec.openplanner.team/stops/LBkcare*", "https://tec.openplanner.team/stops/LBkcarr1"], ["https://tec.openplanner.team/stops/H1hy127a", "https://tec.openplanner.team/stops/H1hy129a"], ["https://tec.openplanner.team/stops/N573aqa", "https://tec.openplanner.team/stops/N573ara"], ["https://tec.openplanner.team/stops/H4ff117b", "https://tec.openplanner.team/stops/H4mb143c"], ["https://tec.openplanner.team/stops/Llggerm1", "https://tec.openplanner.team/stops/Llggerm2"], ["https://tec.openplanner.team/stops/LTIdumo2", "https://tec.openplanner.team/stops/LTIpire2"], ["https://tec.openplanner.team/stops/Lrecroi1", "https://tec.openplanner.team/stops/Lrecroi2"], ["https://tec.openplanner.team/stops/X897apa", "https://tec.openplanner.team/stops/X898aha"], ["https://tec.openplanner.team/stops/LbTdoma1", "https://tec.openplanner.team/stops/LbUmors1"], ["https://tec.openplanner.team/stops/X850agb", "https://tec.openplanner.team/stops/X850amb"], ["https://tec.openplanner.team/stops/LrOgara2", "https://tec.openplanner.team/stops/LrOkirc2"], ["https://tec.openplanner.team/stops/N501ahb", "https://tec.openplanner.team/stops/N501eob"], ["https://tec.openplanner.team/stops/N501anb", "https://tec.openplanner.team/stops/N501bfz"], ["https://tec.openplanner.team/stops/Cjuathe1", "https://tec.openplanner.team/stops/Cjuathe2"], ["https://tec.openplanner.team/stops/N301aaa", "https://tec.openplanner.team/stops/N340aib"], ["https://tec.openplanner.team/stops/N118agb", "https://tec.openplanner.team/stops/N118axb"], ["https://tec.openplanner.team/stops/LFChuis1", "https://tec.openplanner.team/stops/LFChuis2"], ["https://tec.openplanner.team/stops/X897aic", "https://tec.openplanner.team/stops/X897alc"], ["https://tec.openplanner.team/stops/H4eh104a", "https://tec.openplanner.team/stops/H4eh104b"], ["https://tec.openplanner.team/stops/H2ec101a", "https://tec.openplanner.team/stops/H2ec110b"], ["https://tec.openplanner.team/stops/N117aua", "https://tec.openplanner.team/stops/N117bcb"], ["https://tec.openplanner.team/stops/Lbhbalt1", "https://tec.openplanner.team/stops/Lrolecl1"], ["https://tec.openplanner.team/stops/H1hc125a", "https://tec.openplanner.team/stops/H1hc151b"], ["https://tec.openplanner.team/stops/Bhaless2", "https://tec.openplanner.team/stops/Bhalvel2"], ["https://tec.openplanner.team/stops/Lwaaube1", "https://tec.openplanner.team/stops/Lwaaube2"], ["https://tec.openplanner.team/stops/Bbch4br1", "https://tec.openplanner.team/stops/Bbchpil1"], ["https://tec.openplanner.team/stops/Bolppla1", "https://tec.openplanner.team/stops/Bolppla4"], ["https://tec.openplanner.team/stops/LFypont1", "https://tec.openplanner.team/stops/LFyWarc2"], ["https://tec.openplanner.team/stops/LVttarg1", "https://tec.openplanner.team/stops/LVtvalu1"], ["https://tec.openplanner.team/stops/N547ahb", "https://tec.openplanner.team/stops/N547aia"], ["https://tec.openplanner.team/stops/X641aqb", "https://tec.openplanner.team/stops/X641aza"], ["https://tec.openplanner.team/stops/LFOchab1", "https://tec.openplanner.team/stops/LFOmc--1"], ["https://tec.openplanner.team/stops/H1gq153a", "https://tec.openplanner.team/stops/H1sy138a"], ["https://tec.openplanner.team/stops/Caicalv1", "https://tec.openplanner.team/stops/Caircen1"], ["https://tec.openplanner.team/stops/LDOdavi2", "https://tec.openplanner.team/stops/LDOjose1"], ["https://tec.openplanner.team/stops/Bplnfpa2", "https://tec.openplanner.team/stops/Bwatmgo3"], ["https://tec.openplanner.team/stops/H5el101a", "https://tec.openplanner.team/stops/H5el107b"], ["https://tec.openplanner.team/stops/H1ms307a", "https://tec.openplanner.team/stops/H1ms915b"], ["https://tec.openplanner.team/stops/N153adb", "https://tec.openplanner.team/stops/N153aeb"], ["https://tec.openplanner.team/stops/H4wn125b", "https://tec.openplanner.team/stops/H4wn126a"], ["https://tec.openplanner.team/stops/LHDlibi1", "https://tec.openplanner.team/stops/LHDmc--2"], ["https://tec.openplanner.team/stops/Bnivfle2", "https://tec.openplanner.team/stops/Bnivpeu1"], ["https://tec.openplanner.team/stops/LhElont1", "https://tec.openplanner.team/stops/LhElont3"], ["https://tec.openplanner.team/stops/X788abc", "https://tec.openplanner.team/stops/X788abe"], ["https://tec.openplanner.team/stops/H4ff122b", "https://tec.openplanner.team/stops/H4pp123b"], ["https://tec.openplanner.team/stops/H1gy115b", "https://tec.openplanner.team/stops/H1gy116a"], ["https://tec.openplanner.team/stops/X911aea", "https://tec.openplanner.team/stops/X911aeb"], ["https://tec.openplanner.team/stops/H2pe156b", "https://tec.openplanner.team/stops/H2pe157a"], ["https://tec.openplanner.team/stops/H4do102a", "https://tec.openplanner.team/stops/H4do107d"], ["https://tec.openplanner.team/stops/Cmacart3", "https://tec.openplanner.team/stops/CMcart1"], ["https://tec.openplanner.team/stops/Lmldama1", "https://tec.openplanner.team/stops/Lmlprie1"], ["https://tec.openplanner.team/stops/H2ch102b", "https://tec.openplanner.team/stops/H2ch109b"], ["https://tec.openplanner.team/stops/Bhlvlou1", "https://tec.openplanner.team/stops/Blpglon1"], ["https://tec.openplanner.team/stops/Bcsen251", "https://tec.openplanner.team/stops/Bcsen252"], ["https://tec.openplanner.team/stops/LBIcarg1", "https://tec.openplanner.team/stops/Lmlcrot3"], ["https://tec.openplanner.team/stops/Cfvplac2", "https://tec.openplanner.team/stops/H1fv102b"], ["https://tec.openplanner.team/stops/N518acd", "https://tec.openplanner.team/stops/N520ahb"], ["https://tec.openplanner.team/stops/N234aea", "https://tec.openplanner.team/stops/N549aib"], ["https://tec.openplanner.team/stops/N529aea", "https://tec.openplanner.team/stops/N529afb"], ["https://tec.openplanner.team/stops/H4mt219a", "https://tec.openplanner.team/stops/H4mt221b"], ["https://tec.openplanner.team/stops/H4ty381a", "https://tec.openplanner.team/stops/H4ty381b"], ["https://tec.openplanner.team/stops/H1ms259a", "https://tec.openplanner.team/stops/H1ms298a"], ["https://tec.openplanner.team/stops/Bottcli3", "https://tec.openplanner.team/stops/Bottra91"], ["https://tec.openplanner.team/stops/N528abb", "https://tec.openplanner.team/stops/N528arc"], ["https://tec.openplanner.team/stops/H4bh104b", "https://tec.openplanner.team/stops/H4lp123a"], ["https://tec.openplanner.team/stops/N501jga", "https://tec.openplanner.team/stops/N521aca"], ["https://tec.openplanner.team/stops/LVEcacq1", "https://tec.openplanner.team/stops/LVEphar1"], ["https://tec.openplanner.team/stops/N528aja", "https://tec.openplanner.team/stops/N528aka"], ["https://tec.openplanner.team/stops/Cfachap2", "https://tec.openplanner.team/stops/Cfamonu1"], ["https://tec.openplanner.team/stops/LbOhoff2", "https://tec.openplanner.team/stops/LmD163-1"], ["https://tec.openplanner.team/stops/X607aaa", "https://tec.openplanner.team/stops/X607aab"], ["https://tec.openplanner.team/stops/LMAalli2", "https://tec.openplanner.team/stops/LMAstei1"], ["https://tec.openplanner.team/stops/Lvitomb1", "https://tec.openplanner.team/stops/Lvitomb2"], ["https://tec.openplanner.team/stops/H4mo186a", "https://tec.openplanner.team/stops/H4mo188a"], ["https://tec.openplanner.team/stops/N532aaa", "https://tec.openplanner.team/stops/N574aaa"], ["https://tec.openplanner.team/stops/N562blb", "https://tec.openplanner.team/stops/N562bmb"], ["https://tec.openplanner.team/stops/H1ho128b", "https://tec.openplanner.team/stops/H1ho140b"], ["https://tec.openplanner.team/stops/X609alb", "https://tec.openplanner.team/stops/X609amb"], ["https://tec.openplanner.team/stops/N211ana", "https://tec.openplanner.team/stops/N211ara"], ["https://tec.openplanner.team/stops/Bclgbvi1", "https://tec.openplanner.team/stops/Bclgmev2"], ["https://tec.openplanner.team/stops/N228aab", "https://tec.openplanner.team/stops/N260adb"], ["https://tec.openplanner.team/stops/LScdina1", "https://tec.openplanner.team/stops/LVTforg2"], ["https://tec.openplanner.team/stops/H4mo159a", "https://tec.openplanner.team/stops/H4mo159b"], ["https://tec.openplanner.team/stops/N355abb", "https://tec.openplanner.team/stops/N355aca"], ["https://tec.openplanner.team/stops/N577aka", "https://tec.openplanner.team/stops/N578aaa"], ["https://tec.openplanner.team/stops/LHHpt--1", "https://tec.openplanner.team/stops/LHHpt--3"], ["https://tec.openplanner.team/stops/H3th126b", "https://tec.openplanner.team/stops/H3th130a"], ["https://tec.openplanner.team/stops/X754ara", "https://tec.openplanner.team/stops/X754asa"], ["https://tec.openplanner.team/stops/LTHjevo1", "https://tec.openplanner.team/stops/LTHperr3"], ["https://tec.openplanner.team/stops/LHFcaqu2", "https://tec.openplanner.team/stops/LHFec--2"], ["https://tec.openplanner.team/stops/N503aba", "https://tec.openplanner.team/stops/N509bfa"], ["https://tec.openplanner.team/stops/Cdamarc2", "https://tec.openplanner.team/stops/Cdaptca2"], ["https://tec.openplanner.team/stops/N234adb", "https://tec.openplanner.team/stops/N243ada"], ["https://tec.openplanner.team/stops/N343aoa", "https://tec.openplanner.team/stops/N350ada"], ["https://tec.openplanner.team/stops/Bgrhche1", "https://tec.openplanner.team/stops/Bgrhpos2"], ["https://tec.openplanner.team/stops/Cjuaero1", "https://tec.openplanner.team/stops/Cjudaxi1"], ["https://tec.openplanner.team/stops/H4hn113b", "https://tec.openplanner.team/stops/H4pe127b"], ["https://tec.openplanner.team/stops/H2an110a", "https://tec.openplanner.team/stops/H2ca105b"], ["https://tec.openplanner.team/stops/NL68aaa", "https://tec.openplanner.team/stops/NL68aac"], ["https://tec.openplanner.team/stops/LBTxhen4", "https://tec.openplanner.team/stops/LHEbeau1"], ["https://tec.openplanner.team/stops/Bvirduj1", "https://tec.openplanner.team/stops/Bvirrbo1"], ["https://tec.openplanner.team/stops/N501ela", "https://tec.openplanner.team/stops/N501era"], ["https://tec.openplanner.team/stops/N509ajb", "https://tec.openplanner.team/stops/N509ana"], ["https://tec.openplanner.team/stops/LTPlegr1", "https://tec.openplanner.team/stops/LTPlegr2"], ["https://tec.openplanner.team/stops/Cjxegli1", "https://tec.openplanner.team/stops/Cjxetri1"], ["https://tec.openplanner.team/stops/Cmqbasv1", "https://tec.openplanner.team/stops/Cmqbasv2"], ["https://tec.openplanner.team/stops/Brebgar1", "https://tec.openplanner.team/stops/Brebraf1"], ["https://tec.openplanner.team/stops/Lpoprie1", "https://tec.openplanner.team/stops/Lpoprie2"], ["https://tec.openplanner.team/stops/Blhueca1", "https://tec.openplanner.team/stops/Blhupa14"], ["https://tec.openplanner.team/stops/N509afa", "https://tec.openplanner.team/stops/N509afb"], ["https://tec.openplanner.team/stops/X614asa", "https://tec.openplanner.team/stops/X614atb"], ["https://tec.openplanner.team/stops/N544ada", "https://tec.openplanner.team/stops/N552aab"], ["https://tec.openplanner.team/stops/H1do125a", "https://tec.openplanner.team/stops/H1do131c"], ["https://tec.openplanner.team/stops/X812acb", "https://tec.openplanner.team/stops/X812beb"], ["https://tec.openplanner.team/stops/LBLvici2", "https://tec.openplanner.team/stops/LBLwaid2"], ["https://tec.openplanner.team/stops/N516aca", "https://tec.openplanner.team/stops/N516adb"], ["https://tec.openplanner.team/stops/Blhufro1", "https://tec.openplanner.team/stops/Blhuibm2"], ["https://tec.openplanner.team/stops/H1po132b", "https://tec.openplanner.team/stops/H1po135a"], ["https://tec.openplanner.team/stops/Cgzblob2", "https://tec.openplanner.team/stops/Cthenmi1"], ["https://tec.openplanner.team/stops/X927aba", "https://tec.openplanner.team/stops/X927abb"], ["https://tec.openplanner.team/stops/H4ef111b", "https://tec.openplanner.team/stops/H4po127b"], ["https://tec.openplanner.team/stops/Lligara2", "https://tec.openplanner.team/stops/Lvoeg--2"], ["https://tec.openplanner.team/stops/Lvcchau1", "https://tec.openplanner.team/stops/Lvcchev3"], ["https://tec.openplanner.team/stops/Caccarr2", "https://tec.openplanner.team/stops/NC24aja"], ["https://tec.openplanner.team/stops/H2ll172d", "https://tec.openplanner.team/stops/H2ll183a"], ["https://tec.openplanner.team/stops/H4ty332a", "https://tec.openplanner.team/stops/H4ty338a"], ["https://tec.openplanner.team/stops/X744ada", "https://tec.openplanner.team/stops/X744aeb"], ["https://tec.openplanner.team/stops/LtEnatu1", "https://tec.openplanner.team/stops/LtEnatu2"], ["https://tec.openplanner.team/stops/H2lc168a", "https://tec.openplanner.team/stops/H2lc168b"], ["https://tec.openplanner.team/stops/N215aca", "https://tec.openplanner.team/stops/N215acd"], ["https://tec.openplanner.team/stops/Bjdspon1", "https://tec.openplanner.team/stops/Bjdspon2"], ["https://tec.openplanner.team/stops/X801bpa", "https://tec.openplanner.team/stops/X801bqa"], ["https://tec.openplanner.team/stops/Cgyhstj2", "https://tec.openplanner.team/stops/Cgyobse1"], ["https://tec.openplanner.team/stops/X742aea", "https://tec.openplanner.team/stops/X742afb"], ["https://tec.openplanner.team/stops/Bnstlna1", "https://tec.openplanner.team/stops/Bnstlna2"], ["https://tec.openplanner.team/stops/H1gg145a", "https://tec.openplanner.team/stops/H1ry134b"], ["https://tec.openplanner.team/stops/LBBpech1", "https://tec.openplanner.team/stops/LLvgare2"], ["https://tec.openplanner.team/stops/X941aha", "https://tec.openplanner.team/stops/X942agb"], ["https://tec.openplanner.team/stops/LBahome1", "https://tec.openplanner.team/stops/LBapeup1"], ["https://tec.openplanner.team/stops/Llglonh1", "https://tec.openplanner.team/stops/LlgPTAV2"], ["https://tec.openplanner.team/stops/Lagpass1", "https://tec.openplanner.team/stops/Lempass2"], ["https://tec.openplanner.team/stops/N534asa", "https://tec.openplanner.team/stops/N534asb"], ["https://tec.openplanner.team/stops/Cmaduna1", "https://tec.openplanner.team/stops/Cmychap1"], ["https://tec.openplanner.team/stops/Brsggde2", "https://tec.openplanner.team/stops/Bwbfckr1"], ["https://tec.openplanner.team/stops/N229ahb", "https://tec.openplanner.team/stops/N229aob"], ["https://tec.openplanner.team/stops/LmTkirc2", "https://tec.openplanner.team/stops/LmTschi2"], ["https://tec.openplanner.team/stops/LBOande1", "https://tec.openplanner.team/stops/LWRbomb2"], ["https://tec.openplanner.team/stops/H4lz127a", "https://tec.openplanner.team/stops/H4wp150b"], ["https://tec.openplanner.team/stops/Bitrpar2", "https://tec.openplanner.team/stops/Bronpfe2"], ["https://tec.openplanner.team/stops/Bsaumlp1", "https://tec.openplanner.team/stops/Bsaumlp2"], ["https://tec.openplanner.team/stops/Lheloti1", "https://tec.openplanner.team/stops/Lheloti2"], ["https://tec.openplanner.team/stops/N229ada", "https://tec.openplanner.team/stops/N229aqb"], ["https://tec.openplanner.team/stops/N151aha", "https://tec.openplanner.team/stops/N151akb"], ["https://tec.openplanner.team/stops/LrUoudl1", "https://tec.openplanner.team/stops/LrUoudl2"], ["https://tec.openplanner.team/stops/Btanpla2", "https://tec.openplanner.team/stops/Btanpla3"], ["https://tec.openplanner.team/stops/LJSec--1", "https://tec.openplanner.team/stops/LJSeg--1"], ["https://tec.openplanner.team/stops/H2re166a", "https://tec.openplanner.team/stops/H2re168a"], ["https://tec.openplanner.team/stops/Cnathib2", "https://tec.openplanner.team/stops/Cnawari1"], ["https://tec.openplanner.team/stops/LkEbran1", "https://tec.openplanner.team/stops/LkEsouf2"], ["https://tec.openplanner.team/stops/LLAcalv1", "https://tec.openplanner.team/stops/LMgwith2"], ["https://tec.openplanner.team/stops/X666aja", "https://tec.openplanner.team/stops/X666ala"], ["https://tec.openplanner.team/stops/LFEhoup1", "https://tec.openplanner.team/stops/LRMeg--2"], ["https://tec.openplanner.team/stops/Llabriq2", "https://tec.openplanner.team/stops/Lvovent1"], ["https://tec.openplanner.team/stops/Cdaviol1", "https://tec.openplanner.team/stops/Cmarroy2"], ["https://tec.openplanner.team/stops/Cjuathe2", "https://tec.openplanner.team/stops/Cjufour3"], ["https://tec.openplanner.team/stops/N501eda", "https://tec.openplanner.team/stops/N501gdb"], ["https://tec.openplanner.team/stops/X670ala", "https://tec.openplanner.team/stops/X670alb"], ["https://tec.openplanner.team/stops/Clvchar2", "https://tec.openplanner.team/stops/Clvmesa2"], ["https://tec.openplanner.team/stops/H1ms296b", "https://tec.openplanner.team/stops/H1ms296c"], ["https://tec.openplanner.team/stops/H1mb125a", "https://tec.openplanner.team/stops/H1mb129a"], ["https://tec.openplanner.team/stops/N506aka", "https://tec.openplanner.team/stops/N506akb"], ["https://tec.openplanner.team/stops/Llgcont1", "https://tec.openplanner.team/stops/Llgdart2"], ["https://tec.openplanner.team/stops/Bbcolno1", "https://tec.openplanner.team/stops/Bbcolno2"], ["https://tec.openplanner.team/stops/LwAkape2", "https://tec.openplanner.team/stops/LwAkett2"], ["https://tec.openplanner.team/stops/H1he100a", "https://tec.openplanner.team/stops/H1mh116a"], ["https://tec.openplanner.team/stops/H4ca122b", "https://tec.openplanner.team/stops/H5pe139a"], ["https://tec.openplanner.team/stops/N557aab", "https://tec.openplanner.team/stops/N557aha"], ["https://tec.openplanner.team/stops/Bdvmc032", "https://tec.openplanner.team/stops/Bdvmsar1"], ["https://tec.openplanner.team/stops/X901adb", "https://tec.openplanner.team/stops/X901ata"], ["https://tec.openplanner.team/stops/LArchap1", "https://tec.openplanner.team/stops/X548acb"], ["https://tec.openplanner.team/stops/Bbxlmid1", "https://tec.openplanner.team/stops/Bucccre1"], ["https://tec.openplanner.team/stops/Cerrver4", "https://tec.openplanner.team/stops/Cvrchap1"], ["https://tec.openplanner.team/stops/N513azb", "https://tec.openplanner.team/stops/N516adb"], ["https://tec.openplanner.team/stops/X837adb", "https://tec.openplanner.team/stops/X837aea"], ["https://tec.openplanner.team/stops/H4ev124a", "https://tec.openplanner.team/stops/H4ev124b"], ["https://tec.openplanner.team/stops/LMEense1", "https://tec.openplanner.team/stops/LMEense2"], ["https://tec.openplanner.team/stops/X822aqa", "https://tec.openplanner.team/stops/X822aqb"], ["https://tec.openplanner.team/stops/LLbbons1", "https://tec.openplanner.team/stops/LRchaie2"], ["https://tec.openplanner.team/stops/Bllnlen2", "https://tec.openplanner.team/stops/Bmsgaxp1"], ["https://tec.openplanner.team/stops/NL57aia", "https://tec.openplanner.team/stops/NL57amb"], ["https://tec.openplanner.team/stops/H1pa100a", "https://tec.openplanner.team/stops/H1wa159a"], ["https://tec.openplanner.team/stops/X713acb", "https://tec.openplanner.team/stops/X713ajc"], ["https://tec.openplanner.team/stops/LWDeg--2", "https://tec.openplanner.team/stops/LWDplac1"], ["https://tec.openplanner.team/stops/LjeGRPMA", "https://tec.openplanner.team/stops/LjeGRPME"], ["https://tec.openplanner.team/stops/H4bo121b", "https://tec.openplanner.team/stops/H4bo182b"], ["https://tec.openplanner.team/stops/Cmehame1", "https://tec.openplanner.team/stops/Cmeptmi6"], ["https://tec.openplanner.team/stops/X623aba", "https://tec.openplanner.team/stops/X623aca"], ["https://tec.openplanner.team/stops/Llmdavi1", "https://tec.openplanner.team/stops/Llmhalt1"], ["https://tec.openplanner.team/stops/X899aba", "https://tec.openplanner.team/stops/X899afb"], ["https://tec.openplanner.team/stops/X641aua", "https://tec.openplanner.team/stops/X641aub"], ["https://tec.openplanner.team/stops/Cauglac1", "https://tec.openplanner.team/stops/Cauglac2"], ["https://tec.openplanner.team/stops/LBichen2", "https://tec.openplanner.team/stops/LBiroch2"], ["https://tec.openplanner.team/stops/X602aib", "https://tec.openplanner.team/stops/X602aqb"], ["https://tec.openplanner.team/stops/X897aab", "https://tec.openplanner.team/stops/X897apb"], ["https://tec.openplanner.team/stops/LDAchau1", "https://tec.openplanner.team/stops/LDAwich1"], ["https://tec.openplanner.team/stops/Lhrtilm1", "https://tec.openplanner.team/stops/Ljuauto2"], ["https://tec.openplanner.team/stops/LOTsav-2", "https://tec.openplanner.team/stops/LOTsava1"], ["https://tec.openplanner.team/stops/X837aba", "https://tec.openplanner.team/stops/X837abb"], ["https://tec.openplanner.team/stops/NL68aea", "https://tec.openplanner.team/stops/NL68agb"], ["https://tec.openplanner.team/stops/X801aia", "https://tec.openplanner.team/stops/X801boa"], ["https://tec.openplanner.team/stops/N501kuc", "https://tec.openplanner.team/stops/N501lib"], ["https://tec.openplanner.team/stops/Cgyobse2", "https://tec.openplanner.team/stops/Cgyrjau2"], ["https://tec.openplanner.team/stops/Ccu6bra3", "https://tec.openplanner.team/stops/Ccutrav2"], ["https://tec.openplanner.team/stops/Lsnlhon2", "https://tec.openplanner.team/stops/Lsnvand3"], ["https://tec.openplanner.team/stops/X837aha", "https://tec.openplanner.team/stops/X837ahb"], ["https://tec.openplanner.team/stops/X869aea", "https://tec.openplanner.team/stops/X873aaa"], ["https://tec.openplanner.team/stops/Lchacie2", "https://tec.openplanner.team/stops/Lhrabho1"], ["https://tec.openplanner.team/stops/N136aea", "https://tec.openplanner.team/stops/N136aeb"], ["https://tec.openplanner.team/stops/LMAbruy1", "https://tec.openplanner.team/stops/LMAbruy2"], ["https://tec.openplanner.team/stops/Cmymaco1", "https://tec.openplanner.team/stops/Cmymaco2"], ["https://tec.openplanner.team/stops/Lmnmart1", "https://tec.openplanner.team/stops/Lsmjalh2"], ["https://tec.openplanner.team/stops/X789ahc", "https://tec.openplanner.team/stops/X789ahd"], ["https://tec.openplanner.team/stops/Cjxpris2", "https://tec.openplanner.team/stops/Cjxthom1"], ["https://tec.openplanner.team/stops/Bblamer1", "https://tec.openplanner.team/stops/Bblamer2"], ["https://tec.openplanner.team/stops/H1gg114a", "https://tec.openplanner.team/stops/H1gg117a"], ["https://tec.openplanner.team/stops/H4he103b", "https://tec.openplanner.team/stops/H4pq118a"], ["https://tec.openplanner.team/stops/H4am101b", "https://tec.openplanner.team/stops/H4am113a"], ["https://tec.openplanner.team/stops/Lcacasi2", "https://tec.openplanner.team/stops/Lvcbasi*"], ["https://tec.openplanner.team/stops/Bflccav2", "https://tec.openplanner.team/stops/Bflcpco1"], ["https://tec.openplanner.team/stops/Ccipano2", "https://tec.openplanner.team/stops/Ccivill2"], ["https://tec.openplanner.team/stops/Clggrfe1", "https://tec.openplanner.team/stops/Clgpavi2"], ["https://tec.openplanner.team/stops/Bwav4sa1", "https://tec.openplanner.team/stops/Bwavlca1"], ["https://tec.openplanner.team/stops/Lflterm1", "https://tec.openplanner.team/stops/Lflterm2"], ["https://tec.openplanner.team/stops/LLrc_ip3", "https://tec.openplanner.team/stops/LLrc1651"], ["https://tec.openplanner.team/stops/Lhueg--1", "https://tec.openplanner.team/stops/Lhueg--2"], ["https://tec.openplanner.team/stops/H1je223a", "https://tec.openplanner.team/stops/H1je365a"], ["https://tec.openplanner.team/stops/Cstdona3", "https://tec.openplanner.team/stops/Cstdona5"], ["https://tec.openplanner.team/stops/LWOplat1", "https://tec.openplanner.team/stops/LWOplat2"], ["https://tec.openplanner.team/stops/X734aja", "https://tec.openplanner.team/stops/X775aaa"], ["https://tec.openplanner.team/stops/Llghlau2", "https://tec.openplanner.team/stops/Llgmass2"], ["https://tec.openplanner.team/stops/Cgoetun1", "https://tec.openplanner.team/stops/CMfbru2"], ["https://tec.openplanner.team/stops/X983aca", "https://tec.openplanner.team/stops/X983aga"], ["https://tec.openplanner.team/stops/Cmlasie2", "https://tec.openplanner.team/stops/Cmlstni2"], ["https://tec.openplanner.team/stops/Cprbevu2", "https://tec.openplanner.team/stops/NC11anb"], ["https://tec.openplanner.team/stops/Lmofays1", "https://tec.openplanner.team/stops/Lmolama1"], ["https://tec.openplanner.team/stops/LnDdorf1", "https://tec.openplanner.team/stops/LnDrund1"], ["https://tec.openplanner.team/stops/LMOlens1", "https://tec.openplanner.team/stops/LMOlens3"], ["https://tec.openplanner.team/stops/Cciqueu2", "https://tec.openplanner.team/stops/NC02ava"], ["https://tec.openplanner.team/stops/Bbchmai1", "https://tec.openplanner.team/stops/Bbchmai2"], ["https://tec.openplanner.team/stops/H4ea127a", "https://tec.openplanner.team/stops/H4ea134b"], ["https://tec.openplanner.team/stops/Cmaplas3", "https://tec.openplanner.team/stops/Cromonn2"], ["https://tec.openplanner.team/stops/LeUhaas1", "https://tec.openplanner.team/stops/LeUmalm2"], ["https://tec.openplanner.team/stops/LAUcent2", "https://tec.openplanner.team/stops/LAUneuv5"], ["https://tec.openplanner.team/stops/LBVronx1", "https://tec.openplanner.team/stops/LBVzand2"], ["https://tec.openplanner.team/stops/Lsmh1801", "https://tec.openplanner.team/stops/Lsmrcim1"], ["https://tec.openplanner.team/stops/Bheneco1", "https://tec.openplanner.team/stops/Bhenron1"], ["https://tec.openplanner.team/stops/Llgcfra1", "https://tec.openplanner.team/stops/Llgreyn1"], ["https://tec.openplanner.team/stops/LVbstre1", "https://tec.openplanner.team/stops/LVbstre2"], ["https://tec.openplanner.team/stops/Lbocorn1", "https://tec.openplanner.team/stops/Lbocorn2"], ["https://tec.openplanner.team/stops/Lrccime3", "https://tec.openplanner.team/stops/Lrchero2"], ["https://tec.openplanner.team/stops/N423aaa", "https://tec.openplanner.team/stops/N423aba"], ["https://tec.openplanner.team/stops/Lveanne1", "https://tec.openplanner.team/stops/Lvewall2"], ["https://tec.openplanner.team/stops/LBAbooz2", "https://tec.openplanner.team/stops/LBAcere1"], ["https://tec.openplanner.team/stops/Caibino1", "https://tec.openplanner.team/stops/Cairous2"], ["https://tec.openplanner.team/stops/Llglys-1", "https://tec.openplanner.team/stops/Llgoeil1"], ["https://tec.openplanner.team/stops/N514aab", "https://tec.openplanner.team/stops/N514afa"], ["https://tec.openplanner.team/stops/X695aja", "https://tec.openplanner.team/stops/X695aka"], ["https://tec.openplanner.team/stops/H2fy123b", "https://tec.openplanner.team/stops/H2fy123c"], ["https://tec.openplanner.team/stops/Bsaumlk1", "https://tec.openplanner.team/stops/Bwlhcsr2"], ["https://tec.openplanner.team/stops/Cgdfras1", "https://tec.openplanner.team/stops/Csyplac2"], ["https://tec.openplanner.team/stops/LVBcarr1", "https://tec.openplanner.team/stops/LVBdela1"], ["https://tec.openplanner.team/stops/H4ka178a", "https://tec.openplanner.team/stops/H4ru243b"], ["https://tec.openplanner.team/stops/LTNmont2", "https://tec.openplanner.team/stops/LTNsarl2"], ["https://tec.openplanner.team/stops/LbUhuge2", "https://tec.openplanner.team/stops/LhObull2"], ["https://tec.openplanner.team/stops/Bchadpt1", "https://tec.openplanner.team/stops/Bwlhppg2"], ["https://tec.openplanner.team/stops/N351atb", "https://tec.openplanner.team/stops/X358afa"], ["https://tec.openplanner.team/stops/H2ma202a", "https://tec.openplanner.team/stops/H2ma264a"], ["https://tec.openplanner.team/stops/X992aaa", "https://tec.openplanner.team/stops/X993aga"], ["https://tec.openplanner.team/stops/LhEbruc1", "https://tec.openplanner.team/stops/LWEgend1"], ["https://tec.openplanner.team/stops/LCF1spa1", "https://tec.openplanner.team/stops/LVnrock1"], ["https://tec.openplanner.team/stops/LTPlegr2", "https://tec.openplanner.team/stops/LTPpres1"], ["https://tec.openplanner.team/stops/LNAanne2", "https://tec.openplanner.team/stops/LNAdemo1"], ["https://tec.openplanner.team/stops/LHUlebe5", "https://tec.openplanner.team/stops/LHUlebe9"], ["https://tec.openplanner.team/stops/LBPmili1", "https://tec.openplanner.team/stops/LBPunic2"], ["https://tec.openplanner.team/stops/Lprmana1", "https://tec.openplanner.team/stops/Lprmana3"], ["https://tec.openplanner.team/stops/H1pa112a", "https://tec.openplanner.team/stops/H1pa118a"], ["https://tec.openplanner.team/stops/X725arb", "https://tec.openplanner.team/stops/X725ava"], ["https://tec.openplanner.team/stops/LhRkirc1", "https://tec.openplanner.team/stops/LhRwere1"], ["https://tec.openplanner.team/stops/Cmlbruy1", "https://tec.openplanner.team/stops/Cmmpjou2"], ["https://tec.openplanner.team/stops/LeYmuhl2", "https://tec.openplanner.team/stops/LhSfrep1"], ["https://tec.openplanner.team/stops/H4hx114a", "https://tec.openplanner.team/stops/H4hx117b"], ["https://tec.openplanner.team/stops/Cclbarb2", "https://tec.openplanner.team/stops/Cclplac2"], ["https://tec.openplanner.team/stops/Lseaite2", "https://tec.openplanner.team/stops/Lsehaut2"], ["https://tec.openplanner.team/stops/Bcsegar1", "https://tec.openplanner.team/stops/Bcsemon1"], ["https://tec.openplanner.team/stops/Brsgera2", "https://tec.openplanner.team/stops/Brsgleq2"], ["https://tec.openplanner.team/stops/Llgcour1", "https://tec.openplanner.team/stops/Llgoutr2"], ["https://tec.openplanner.team/stops/LSZeg--1", "https://tec.openplanner.team/stops/LTgcime2"], ["https://tec.openplanner.team/stops/Bgnpgar1", "https://tec.openplanner.team/stops/Cgnbast1"], ["https://tec.openplanner.team/stops/LTicime2", "https://tec.openplanner.team/stops/LTiec--2"], ["https://tec.openplanner.team/stops/H1lm105b", "https://tec.openplanner.team/stops/H1lm107b"], ["https://tec.openplanner.team/stops/H1mj132a", "https://tec.openplanner.team/stops/H1mj132b"], ["https://tec.openplanner.team/stops/X713afa", "https://tec.openplanner.team/stops/X713afb"], ["https://tec.openplanner.team/stops/X663aeb", "https://tec.openplanner.team/stops/X663agb"], ["https://tec.openplanner.team/stops/Lgdmaye1", "https://tec.openplanner.team/stops/Lgdmaye2"], ["https://tec.openplanner.team/stops/N141aib", "https://tec.openplanner.team/stops/N143ada"], ["https://tec.openplanner.team/stops/N243aab", "https://tec.openplanner.team/stops/N251aba"], ["https://tec.openplanner.team/stops/X664aic", "https://tec.openplanner.team/stops/X664atb"], ["https://tec.openplanner.team/stops/H3so160a", "https://tec.openplanner.team/stops/H3so160b"], ["https://tec.openplanner.team/stops/N501bfb", "https://tec.openplanner.team/stops/N501hsy"], ["https://tec.openplanner.team/stops/H5qu144b", "https://tec.openplanner.team/stops/H5qu152b"], ["https://tec.openplanner.team/stops/H4ce100b", "https://tec.openplanner.team/stops/H4ce105a"], ["https://tec.openplanner.team/stops/X733aib", "https://tec.openplanner.team/stops/X733ajb"], ["https://tec.openplanner.team/stops/H4ty267a", "https://tec.openplanner.team/stops/H4ty287b"], ["https://tec.openplanner.team/stops/X717aea", "https://tec.openplanner.team/stops/X782apa"], ["https://tec.openplanner.team/stops/LEScarr2", "https://tec.openplanner.team/stops/LEScham1"], ["https://tec.openplanner.team/stops/LBDcarr2", "https://tec.openplanner.team/stops/LVEbors2"], ["https://tec.openplanner.team/stops/X822aea", "https://tec.openplanner.team/stops/X822aka"], ["https://tec.openplanner.team/stops/LmDelek2", "https://tec.openplanner.team/stops/LwEdorf1"], ["https://tec.openplanner.team/stops/LBIcabi2", "https://tec.openplanner.team/stops/LBIpont1"], ["https://tec.openplanner.team/stops/LAyabri1", "https://tec.openplanner.team/stops/LAyheid1"], ["https://tec.openplanner.team/stops/LWenouv1", "https://tec.openplanner.team/stops/LWevand1"], ["https://tec.openplanner.team/stops/H5wo126a", "https://tec.openplanner.team/stops/H5wo126b"], ["https://tec.openplanner.team/stops/N501dca", "https://tec.openplanner.team/stops/N501dcb"], ["https://tec.openplanner.team/stops/X661aea", "https://tec.openplanner.team/stops/X661afa"], ["https://tec.openplanner.team/stops/H4do103a", "https://tec.openplanner.team/stops/H4ev124b"], ["https://tec.openplanner.team/stops/LgHdorf1", "https://tec.openplanner.team/stops/LnUneun2"], ["https://tec.openplanner.team/stops/N353ada", "https://tec.openplanner.team/stops/N353aha"], ["https://tec.openplanner.team/stops/Cbecarr2", "https://tec.openplanner.team/stops/Ccspla"], ["https://tec.openplanner.team/stops/H4gz115a", "https://tec.openplanner.team/stops/H4th139a"], ["https://tec.openplanner.team/stops/Loureno1", "https://tec.openplanner.team/stops/Lsttech1"], ["https://tec.openplanner.team/stops/Canrobe2", "https://tec.openplanner.team/stops/Canrsta2"], ["https://tec.openplanner.team/stops/Bnivga21", "https://tec.openplanner.team/stops/Bnivga22"], ["https://tec.openplanner.team/stops/H4ch115b", "https://tec.openplanner.team/stops/H4ty324c"], ["https://tec.openplanner.team/stops/X921ada", "https://tec.openplanner.team/stops/X921adb"], ["https://tec.openplanner.team/stops/LROrtba1", "https://tec.openplanner.team/stops/LROrtba2"], ["https://tec.openplanner.team/stops/N202aea", "https://tec.openplanner.team/stops/N202aec"], ["https://tec.openplanner.team/stops/Livgera2", "https://tec.openplanner.team/stops/Livgera5"], ["https://tec.openplanner.team/stops/LVMborl1", "https://tec.openplanner.team/stops/LVMcent2"], ["https://tec.openplanner.team/stops/LmRkreu2", "https://tec.openplanner.team/stops/LmRkreu4"], ["https://tec.openplanner.team/stops/LVEjard2", "https://tec.openplanner.team/stops/LVEstat1"], ["https://tec.openplanner.team/stops/LAmab752", "https://tec.openplanner.team/stops/LATguis1"], ["https://tec.openplanner.team/stops/H1te175b", "https://tec.openplanner.team/stops/H1te198a"], ["https://tec.openplanner.team/stops/N501ehb", "https://tec.openplanner.team/stops/N501kkb"], ["https://tec.openplanner.team/stops/X626aja", "https://tec.openplanner.team/stops/X688aba"], ["https://tec.openplanner.team/stops/Brebhos1", "https://tec.openplanner.team/stops/Brebvic2"], ["https://tec.openplanner.team/stops/LPohoeg1", "https://tec.openplanner.team/stops/LPoneuf1"], ["https://tec.openplanner.team/stops/Cgrlorm2", "https://tec.openplanner.team/stops/Cjochap1"], ["https://tec.openplanner.team/stops/H4to133a", "https://tec.openplanner.team/stops/H4to136a"], ["https://tec.openplanner.team/stops/X636ana", "https://tec.openplanner.team/stops/X636anb"], ["https://tec.openplanner.team/stops/LeLzost1", "https://tec.openplanner.team/stops/LeLzost2"], ["https://tec.openplanner.team/stops/LENchem2", "https://tec.openplanner.team/stops/LENtour2"], ["https://tec.openplanner.team/stops/LrcarsT2", "https://tec.openplanner.team/stops/LrcarsT3"], ["https://tec.openplanner.team/stops/H2fy119b", "https://tec.openplanner.team/stops/H2fy122a"], ["https://tec.openplanner.team/stops/LNAbass2", "https://tec.openplanner.team/stops/LSSvill2"], ["https://tec.openplanner.team/stops/N533aaa", "https://tec.openplanner.team/stops/N533aca"], ["https://tec.openplanner.team/stops/H4gu106b", "https://tec.openplanner.team/stops/H4gu111a"], ["https://tec.openplanner.team/stops/N135aka", "https://tec.openplanner.team/stops/N135ata"], ["https://tec.openplanner.team/stops/Cauglac1", "https://tec.openplanner.team/stops/Cvsduve2"], ["https://tec.openplanner.team/stops/X623acc", "https://tec.openplanner.team/stops/X623aja"], ["https://tec.openplanner.team/stops/H1bo105b", "https://tec.openplanner.team/stops/H1bo111a"], ["https://tec.openplanner.team/stops/Lkinyst2", "https://tec.openplanner.team/stops/Lstchas1"], ["https://tec.openplanner.team/stops/N501mez", "https://tec.openplanner.team/stops/N501mkb"], ["https://tec.openplanner.team/stops/X952aja", "https://tec.openplanner.team/stops/X952akb"], ["https://tec.openplanner.team/stops/H2sv259a", "https://tec.openplanner.team/stops/H2sv259b"], ["https://tec.openplanner.team/stops/H4bv145c", "https://tec.openplanner.team/stops/H4re226b"], ["https://tec.openplanner.team/stops/H4ar101b", "https://tec.openplanner.team/stops/H4ar103b"], ["https://tec.openplanner.team/stops/LJAfawe1", "https://tec.openplanner.team/stops/LJAfawe2"], ["https://tec.openplanner.team/stops/X897agb", "https://tec.openplanner.team/stops/X897awa"], ["https://tec.openplanner.team/stops/X630adb", "https://tec.openplanner.team/stops/X631ada"], ["https://tec.openplanner.team/stops/Croheig2", "https://tec.openplanner.team/stops/Crowall2"], ["https://tec.openplanner.team/stops/N522ata", "https://tec.openplanner.team/stops/N522atb"], ["https://tec.openplanner.team/stops/H4es117b", "https://tec.openplanner.team/stops/H4ev118a"], ["https://tec.openplanner.team/stops/LWEcomp1", "https://tec.openplanner.team/stops/LWEfati1"], ["https://tec.openplanner.team/stops/Clacast2", "https://tec.openplanner.team/stops/Clafaub2"], ["https://tec.openplanner.team/stops/Bzluqga1", "https://tec.openplanner.team/stops/Bzluqga2"], ["https://tec.openplanner.team/stops/N145ada", "https://tec.openplanner.team/stops/N145adb"], ["https://tec.openplanner.team/stops/Lheente2", "https://tec.openplanner.team/stops/Lheterm*"], ["https://tec.openplanner.team/stops/Blasbh51", "https://tec.openplanner.team/stops/Blasbh52"], ["https://tec.openplanner.team/stops/Cmachau2", "https://tec.openplanner.team/stops/CMprov2"], ["https://tec.openplanner.team/stops/Crolach2", "https://tec.openplanner.team/stops/Cronova1"], ["https://tec.openplanner.team/stops/N383abb", "https://tec.openplanner.team/stops/N383afb"], ["https://tec.openplanner.team/stops/X877aga", "https://tec.openplanner.team/stops/X989aga"], ["https://tec.openplanner.team/stops/Bovejme1", "https://tec.openplanner.team/stops/Bovejme2"], ["https://tec.openplanner.team/stops/N425aga", "https://tec.openplanner.team/stops/N425agb"], ["https://tec.openplanner.team/stops/LPctrog1", "https://tec.openplanner.team/stops/LPctrog2"], ["https://tec.openplanner.team/stops/X747aab", "https://tec.openplanner.team/stops/X747acb"], ["https://tec.openplanner.team/stops/Bbgnton1", "https://tec.openplanner.team/stops/N530aea"], ["https://tec.openplanner.team/stops/X911ana", "https://tec.openplanner.team/stops/X912aaa"], ["https://tec.openplanner.team/stops/LkTdorf2", "https://tec.openplanner.team/stops/LkTtal-1"], ["https://tec.openplanner.team/stops/N347aga", "https://tec.openplanner.team/stops/N347agb"], ["https://tec.openplanner.team/stops/Cgrgend1", "https://tec.openplanner.team/stops/Cgrgend2"], ["https://tec.openplanner.team/stops/Bincfer2", "https://tec.openplanner.team/stops/Brxmcha2"], ["https://tec.openplanner.team/stops/Lmoboeu3", "https://tec.openplanner.team/stops/Lmogoff2"], ["https://tec.openplanner.team/stops/Cjuhopi2", "https://tec.openplanner.team/stops/CMmade1"], ["https://tec.openplanner.team/stops/Bgzdgpa2", "https://tec.openplanner.team/stops/Bpecdel2"], ["https://tec.openplanner.team/stops/Bitrgnt1", "https://tec.openplanner.team/stops/Bitrpsr2"], ["https://tec.openplanner.team/stops/Lcegeor2", "https://tec.openplanner.team/stops/Lvcecol1"], ["https://tec.openplanner.team/stops/LHUtrin1", "https://tec.openplanner.team/stops/NL77aja"], ["https://tec.openplanner.team/stops/LHCbran2", "https://tec.openplanner.team/stops/LHCruyf2"], ["https://tec.openplanner.team/stops/LHovach1", "https://tec.openplanner.team/stops/LHovill1"], ["https://tec.openplanner.team/stops/LlNsc651", "https://tec.openplanner.team/stops/LlNsc652"], ["https://tec.openplanner.team/stops/X826aab", "https://tec.openplanner.team/stops/X826afb"], ["https://tec.openplanner.team/stops/LWNcham2", "https://tec.openplanner.team/stops/LWNchar1"], ["https://tec.openplanner.team/stops/N309aab", "https://tec.openplanner.team/stops/N313aca"], ["https://tec.openplanner.team/stops/H1ch103b", "https://tec.openplanner.team/stops/H1ch105b"], ["https://tec.openplanner.team/stops/Lagjard2", "https://tec.openplanner.team/stops/Lagresi2"], ["https://tec.openplanner.team/stops/N531aoa", "https://tec.openplanner.team/stops/N531aob"], ["https://tec.openplanner.team/stops/N543cka", "https://tec.openplanner.team/stops/N543ckb"], ["https://tec.openplanner.team/stops/N539aga", "https://tec.openplanner.team/stops/N539aqb"], ["https://tec.openplanner.team/stops/X804boa", "https://tec.openplanner.team/stops/X804bob"], ["https://tec.openplanner.team/stops/Bwatfva1", "https://tec.openplanner.team/stops/Bwatfva2"], ["https://tec.openplanner.team/stops/LBkcarr1", "https://tec.openplanner.team/stops/LBkcarr2"], ["https://tec.openplanner.team/stops/X723ana", "https://tec.openplanner.team/stops/X723anb"], ["https://tec.openplanner.team/stops/H4ne139a", "https://tec.openplanner.team/stops/H4te249a"], ["https://tec.openplanner.team/stops/N539avb", "https://tec.openplanner.team/stops/N539awa"], ["https://tec.openplanner.team/stops/Bbcopre1", "https://tec.openplanner.team/stops/Bbcopre2"], ["https://tec.openplanner.team/stops/Cbetrie1", "https://tec.openplanner.team/stops/N137aja"], ["https://tec.openplanner.team/stops/X641aqb", "https://tec.openplanner.team/stops/X823aab"], ["https://tec.openplanner.team/stops/Blaneli1", "https://tec.openplanner.team/stops/Blanove1"], ["https://tec.openplanner.team/stops/H4pq120a", "https://tec.openplanner.team/stops/H4pq120b"], ["https://tec.openplanner.team/stops/H1vh137a", "https://tec.openplanner.team/stops/H3bo102b"], ["https://tec.openplanner.team/stops/LGMhadr2", "https://tec.openplanner.team/stops/LTRespe2"], ["https://tec.openplanner.team/stops/X766acb", "https://tec.openplanner.team/stops/X768alc"], ["https://tec.openplanner.team/stops/H1je212a", "https://tec.openplanner.team/stops/H1je218b"], ["https://tec.openplanner.team/stops/Bwatfon1", "https://tec.openplanner.team/stops/Bwatran1"], ["https://tec.openplanner.team/stops/LHNtill1", "https://tec.openplanner.team/stops/LHNwaut1"], ["https://tec.openplanner.team/stops/N501gba", "https://tec.openplanner.team/stops/N528aha"], ["https://tec.openplanner.team/stops/Clb4bra1", "https://tec.openplanner.team/stops/Clbchlo2"], ["https://tec.openplanner.team/stops/X747ahb", "https://tec.openplanner.team/stops/X747aja"], ["https://tec.openplanner.team/stops/LAicarr1", "https://tec.openplanner.team/stops/LAivill1"], ["https://tec.openplanner.team/stops/Cfcpla2", "https://tec.openplanner.team/stops/Cfcrdpr1"], ["https://tec.openplanner.team/stops/N222aya", "https://tec.openplanner.team/stops/N222ayb"], ["https://tec.openplanner.team/stops/Lsefore2", "https://tec.openplanner.team/stops/Lsevill2"], ["https://tec.openplanner.team/stops/H5rx112a", "https://tec.openplanner.team/stops/H5rx112b"], ["https://tec.openplanner.team/stops/Lghviad1", "https://tec.openplanner.team/stops/Ljejoli1"], ["https://tec.openplanner.team/stops/Bhevjal1", "https://tec.openplanner.team/stops/Bhevjal2"], ["https://tec.openplanner.team/stops/H1so137a", "https://tec.openplanner.team/stops/H1so137b"], ["https://tec.openplanner.team/stops/LCseg--1", "https://tec.openplanner.team/stops/LCseg--2"], ["https://tec.openplanner.team/stops/H1em104a", "https://tec.openplanner.team/stops/H1em111c"], ["https://tec.openplanner.team/stops/H1gi154b", "https://tec.openplanner.team/stops/H1hg179b"], ["https://tec.openplanner.team/stops/X634aia", "https://tec.openplanner.team/stops/X634akb"], ["https://tec.openplanner.team/stops/N531asb", "https://tec.openplanner.team/stops/N531asc"], ["https://tec.openplanner.team/stops/Ccogrha1", "https://tec.openplanner.team/stops/Ccogrha2"], ["https://tec.openplanner.team/stops/X850aga", "https://tec.openplanner.team/stops/X850agb"], ["https://tec.openplanner.team/stops/X922acb", "https://tec.openplanner.team/stops/X922aka"], ["https://tec.openplanner.team/stops/LVkchap2", "https://tec.openplanner.team/stops/LVkinst1"], ["https://tec.openplanner.team/stops/LAWaube2", "https://tec.openplanner.team/stops/LAWvold1"], ["https://tec.openplanner.team/stops/N117baa", "https://tec.openplanner.team/stops/N571akb"], ["https://tec.openplanner.team/stops/X721aqa", "https://tec.openplanner.team/stops/X721ara"], ["https://tec.openplanner.team/stops/X782aka", "https://tec.openplanner.team/stops/X782amb"], ["https://tec.openplanner.team/stops/N501bva", "https://tec.openplanner.team/stops/N501bvb"], ["https://tec.openplanner.team/stops/Cfvombo1", "https://tec.openplanner.team/stops/Clfmonu2"], ["https://tec.openplanner.team/stops/Cjufour3", "https://tec.openplanner.team/stops/Cjufour4"], ["https://tec.openplanner.team/stops/X802aba", "https://tec.openplanner.team/stops/X802aeb"], ["https://tec.openplanner.team/stops/N229aeb", "https://tec.openplanner.team/stops/N229afb"], ["https://tec.openplanner.team/stops/H4ga164a", "https://tec.openplanner.team/stops/H4vz371a"], ["https://tec.openplanner.team/stops/N501jaa", "https://tec.openplanner.team/stops/N501jab"], ["https://tec.openplanner.team/stops/Cflstan1", "https://tec.openplanner.team/stops/NC12adb"], ["https://tec.openplanner.team/stops/H1ne148a", "https://tec.openplanner.team/stops/H1ne148b"], ["https://tec.openplanner.team/stops/X938aeb", "https://tec.openplanner.team/stops/X950aca"], ["https://tec.openplanner.team/stops/Brixga11", "https://tec.openplanner.team/stops/Brixpla1"], ["https://tec.openplanner.team/stops/X725ahb", "https://tec.openplanner.team/stops/X738aea"], ["https://tec.openplanner.team/stops/LWMcent2", "https://tec.openplanner.team/stops/LWMchpl2"], ["https://tec.openplanner.team/stops/Beclaub2", "https://tec.openplanner.team/stops/Beclpla2"], ["https://tec.openplanner.team/stops/Cjupoly2", "https://tec.openplanner.team/stops/CMmade1"], ["https://tec.openplanner.team/stops/N536abb", "https://tec.openplanner.team/stops/N536adb"], ["https://tec.openplanner.team/stops/H1au101a", "https://tec.openplanner.team/stops/H1au101b"], ["https://tec.openplanner.team/stops/Lvewall1", "https://tec.openplanner.team/stops/Lvewall2"], ["https://tec.openplanner.team/stops/Lmlcite*", "https://tec.openplanner.team/stops/Lmlmich2"], ["https://tec.openplanner.team/stops/N309aaa", "https://tec.openplanner.team/stops/N309aac"], ["https://tec.openplanner.team/stops/H1hr128b", "https://tec.openplanner.team/stops/H1hr128d"], ["https://tec.openplanner.team/stops/LBichat2", "https://tec.openplanner.team/stops/LBivi--2"], ["https://tec.openplanner.team/stops/H4ru241b", "https://tec.openplanner.team/stops/H4wc373b"], ["https://tec.openplanner.team/stops/Lenabat2", "https://tec.openplanner.team/stops/Llmdavi1"], ["https://tec.openplanner.team/stops/Llgborn2", "https://tec.openplanner.team/stops/Llgchat1"], ["https://tec.openplanner.team/stops/LaMhe831", "https://tec.openplanner.team/stops/LaMwies1"], ["https://tec.openplanner.team/stops/Cjumade4", "https://tec.openplanner.team/stops/CMcarr1"], ["https://tec.openplanner.team/stops/H1ni315b", "https://tec.openplanner.team/stops/H1ni321a"], ["https://tec.openplanner.team/stops/LmUkape2", "https://tec.openplanner.team/stops/LmUvilz2"], ["https://tec.openplanner.team/stops/Lagorch1", "https://tec.openplanner.team/stops/Lsteg--2"], ["https://tec.openplanner.team/stops/H1tl121a", "https://tec.openplanner.team/stops/H1tl122b"], ["https://tec.openplanner.team/stops/N501etd", "https://tec.openplanner.team/stops/N501etz"], ["https://tec.openplanner.team/stops/LHOmc--1", "https://tec.openplanner.team/stops/LHOmc--2"], ["https://tec.openplanner.team/stops/H1he101a", "https://tec.openplanner.team/stops/H1he106a"], ["https://tec.openplanner.team/stops/LrUbrac1", "https://tec.openplanner.team/stops/LrUbrac3"], ["https://tec.openplanner.team/stops/Cchdagn1", "https://tec.openplanner.team/stops/Cchoues3"], ["https://tec.openplanner.team/stops/X771aaa", "https://tec.openplanner.team/stops/X773aaa"], ["https://tec.openplanner.team/stops/N390amb", "https://tec.openplanner.team/stops/X358aba"], ["https://tec.openplanner.team/stops/X767aca", "https://tec.openplanner.team/stops/X767ada"], ["https://tec.openplanner.team/stops/X809aab", "https://tec.openplanner.team/stops/X857aba"], ["https://tec.openplanner.team/stops/H3lr109a", "https://tec.openplanner.team/stops/H3lr109c"], ["https://tec.openplanner.team/stops/X774aad", "https://tec.openplanner.team/stops/X774abb"], ["https://tec.openplanner.team/stops/X307aca", "https://tec.openplanner.team/stops/X316aca"], ["https://tec.openplanner.team/stops/Llgjenn3", "https://tec.openplanner.team/stops/Llgrame1"], ["https://tec.openplanner.team/stops/Lvtbocl2", "https://tec.openplanner.team/stops/Lvtlomb4"], ["https://tec.openplanner.team/stops/X763afa", "https://tec.openplanner.team/stops/X763aga"], ["https://tec.openplanner.team/stops/H1fl134a", "https://tec.openplanner.team/stops/H1fl140b"], ["https://tec.openplanner.team/stops/LWEmito1", "https://tec.openplanner.team/stops/LWEmito2"], ["https://tec.openplanner.team/stops/LSTchal1", "https://tec.openplanner.team/stops/LSTcomm2"], ["https://tec.openplanner.team/stops/Cfrmoul2", "https://tec.openplanner.team/stops/Cfrplac6"], ["https://tec.openplanner.team/stops/Cciecol1", "https://tec.openplanner.team/stops/Cmllecl4"], ["https://tec.openplanner.team/stops/LAMjeha1", "https://tec.openplanner.team/stops/LAMjeha2"], ["https://tec.openplanner.team/stops/Cfrempe2", "https://tec.openplanner.team/stops/Cvp3til4"], ["https://tec.openplanner.team/stops/LbUkrei*", "https://tec.openplanner.team/stops/LbUmolk1"], ["https://tec.openplanner.team/stops/H5at132b", "https://tec.openplanner.team/stops/H5at137b"], ["https://tec.openplanner.team/stops/Cmaacac2", "https://tec.openplanner.team/stops/Cmacoll1"], ["https://tec.openplanner.team/stops/NH01aha", "https://tec.openplanner.team/stops/NH01aja"], ["https://tec.openplanner.team/stops/LRCviad2", "https://tec.openplanner.team/stops/LSPmalc1"], ["https://tec.openplanner.team/stops/X626aca", "https://tec.openplanner.team/stops/X626ana"], ["https://tec.openplanner.team/stops/X720aea", "https://tec.openplanner.team/stops/X720aeb"], ["https://tec.openplanner.team/stops/H2gy100a", "https://tec.openplanner.team/stops/H2gy100b"], ["https://tec.openplanner.team/stops/LGDgdou1", "https://tec.openplanner.team/stops/LWazoni2"], ["https://tec.openplanner.team/stops/X657afb", "https://tec.openplanner.team/stops/X657aga"], ["https://tec.openplanner.team/stops/Brsrber1", "https://tec.openplanner.team/stops/Brsrcha2"], ["https://tec.openplanner.team/stops/X757aga", "https://tec.openplanner.team/stops/X757aia"], ["https://tec.openplanner.team/stops/LSznoel1", "https://tec.openplanner.team/stops/NL57afa"], ["https://tec.openplanner.team/stops/H4ty308a", "https://tec.openplanner.team/stops/H4ty309a"], ["https://tec.openplanner.team/stops/N501mya", "https://tec.openplanner.team/stops/N527afb"], ["https://tec.openplanner.team/stops/Barchez1", "https://tec.openplanner.team/stops/Barchoc1"], ["https://tec.openplanner.team/stops/LAo170-1", "https://tec.openplanner.team/stops/LAo170-2"], ["https://tec.openplanner.team/stops/N547ala", "https://tec.openplanner.team/stops/N547ana"], ["https://tec.openplanner.team/stops/Bboueta2", "https://tec.openplanner.team/stops/Bbougbl2"], ["https://tec.openplanner.team/stops/LbUwirt1", "https://tec.openplanner.team/stops/LwR140-1"], ["https://tec.openplanner.team/stops/X595aaa", "https://tec.openplanner.team/stops/X595aia"], ["https://tec.openplanner.team/stops/Csabrun2", "https://tec.openplanner.team/stops/Csdjeme2"], ["https://tec.openplanner.team/stops/LHEelva2", "https://tec.openplanner.team/stops/LHEepur1"], ["https://tec.openplanner.team/stops/X725aef", "https://tec.openplanner.team/stops/X725aza"], ["https://tec.openplanner.team/stops/N124aaa", "https://tec.openplanner.team/stops/N125acb"], ["https://tec.openplanner.team/stops/Llgnaes1", "https://tec.openplanner.team/stops/Llgseel1"], ["https://tec.openplanner.team/stops/LLYcham1", "https://tec.openplanner.team/stops/LLYpeup1"], ["https://tec.openplanner.team/stops/LLbbons2", "https://tec.openplanner.team/stops/LLbcafe2"], ["https://tec.openplanner.team/stops/Lan14ve1", "https://tec.openplanner.team/stops/Lanclon2"], ["https://tec.openplanner.team/stops/LWEchat1", "https://tec.openplanner.team/stops/LWEchat2"], ["https://tec.openplanner.team/stops/Blasbgc2", "https://tec.openplanner.team/stops/Bmrssmc1"], ["https://tec.openplanner.team/stops/H1je212b", "https://tec.openplanner.team/stops/H1je215b"], ["https://tec.openplanner.team/stops/LCHfond1", "https://tec.openplanner.team/stops/LCHgele1"], ["https://tec.openplanner.team/stops/X808afb", "https://tec.openplanner.team/stops/X808agb"], ["https://tec.openplanner.team/stops/Cmlbeau1", "https://tec.openplanner.team/stops/Cmlbeau4"], ["https://tec.openplanner.team/stops/N321ada", "https://tec.openplanner.team/stops/N321aeb"], ["https://tec.openplanner.team/stops/Bptecar2", "https://tec.openplanner.team/stops/Bptegna2"], ["https://tec.openplanner.team/stops/H4be146b", "https://tec.openplanner.team/stops/H5bl117c"], ["https://tec.openplanner.team/stops/Cfaeclu2", "https://tec.openplanner.team/stops/Crsstem1"], ["https://tec.openplanner.team/stops/N135aqb", "https://tec.openplanner.team/stops/N135aua"], ["https://tec.openplanner.team/stops/Lcacris2", "https://tec.openplanner.team/stops/Lemarti2"], ["https://tec.openplanner.team/stops/X771abb", "https://tec.openplanner.team/stops/X773agb"], ["https://tec.openplanner.team/stops/N236aea", "https://tec.openplanner.team/stops/N254aeb"], ["https://tec.openplanner.team/stops/LEBdoct2", "https://tec.openplanner.team/stops/LWOcomm2"], ["https://tec.openplanner.team/stops/Bwatath2", "https://tec.openplanner.team/stops/Bwatath3"], ["https://tec.openplanner.team/stops/X827aaa", "https://tec.openplanner.team/stops/X830aab"], ["https://tec.openplanner.team/stops/LeUgulc1", "https://tec.openplanner.team/stops/LeUschi2"], ["https://tec.openplanner.team/stops/H4ty306a", "https://tec.openplanner.team/stops/H4ty306b"], ["https://tec.openplanner.team/stops/H4ka188b", "https://tec.openplanner.team/stops/H4ka190a"], ["https://tec.openplanner.team/stops/NL76aba", "https://tec.openplanner.team/stops/NL76ahb"], ["https://tec.openplanner.team/stops/Cnathib1", "https://tec.openplanner.team/stops/Cnawari1"], ["https://tec.openplanner.team/stops/H1ge115a", "https://tec.openplanner.team/stops/H1ge151b"], ["https://tec.openplanner.team/stops/LSNretr1", "https://tec.openplanner.team/stops/LWerola1"], ["https://tec.openplanner.team/stops/LPUchpl1", "https://tec.openplanner.team/stops/LRepous1"], ["https://tec.openplanner.team/stops/LHHindu2", "https://tec.openplanner.team/stops/LHHpt--2"], ["https://tec.openplanner.team/stops/LHUfrai2", "https://tec.openplanner.team/stops/LHUvege2"], ["https://tec.openplanner.team/stops/X801cca", "https://tec.openplanner.team/stops/X801cma"], ["https://tec.openplanner.team/stops/X886ahb", "https://tec.openplanner.team/stops/X889aba"], ["https://tec.openplanner.team/stops/LWAfabr2", "https://tec.openplanner.team/stops/LWAloui2"], ["https://tec.openplanner.team/stops/H2ha136b", "https://tec.openplanner.team/stops/H2ha141a"], ["https://tec.openplanner.team/stops/H1bu138a", "https://tec.openplanner.team/stops/H1bu138b"], ["https://tec.openplanner.team/stops/X763aaa", "https://tec.openplanner.team/stops/X765aeb"], ["https://tec.openplanner.team/stops/LFUfleu1", "https://tec.openplanner.team/stops/LWDcime2"], ["https://tec.openplanner.team/stops/N538aea", "https://tec.openplanner.team/stops/N538agb"], ["https://tec.openplanner.team/stops/LGmloti1", "https://tec.openplanner.team/stops/LHmcite1"], ["https://tec.openplanner.team/stops/LSyec--2", "https://tec.openplanner.team/stops/LSygerm1"], ["https://tec.openplanner.team/stops/Cgocalv4", "https://tec.openplanner.team/stops/Cgofleu3"], ["https://tec.openplanner.team/stops/Cjucouc1", "https://tec.openplanner.team/stops/Cjudest3"], ["https://tec.openplanner.team/stops/X342aea", "https://tec.openplanner.team/stops/X342afa"], ["https://tec.openplanner.team/stops/LHycent*", "https://tec.openplanner.team/stops/LXopier2"], ["https://tec.openplanner.team/stops/N501ajb", "https://tec.openplanner.team/stops/N501akb"], ["https://tec.openplanner.team/stops/N116aab", "https://tec.openplanner.team/stops/N116aac"], ["https://tec.openplanner.team/stops/X911ama", "https://tec.openplanner.team/stops/X911anb"], ["https://tec.openplanner.team/stops/Cfmgara1", "https://tec.openplanner.team/stops/Csobrou1"], ["https://tec.openplanner.team/stops/X640aaa", "https://tec.openplanner.team/stops/X640aba"], ["https://tec.openplanner.team/stops/Bnivace2", "https://tec.openplanner.team/stops/Bnivvri1"], ["https://tec.openplanner.team/stops/NL76aoa", "https://tec.openplanner.team/stops/NL76aob"], ["https://tec.openplanner.team/stops/N134aea", "https://tec.openplanner.team/stops/N134aeb"], ["https://tec.openplanner.team/stops/Brsgter1", "https://tec.openplanner.team/stops/Brsgter2"], ["https://tec.openplanner.team/stops/Bezeksj4", "https://tec.openplanner.team/stops/Bneesjo2"], ["https://tec.openplanner.team/stops/X937ajb", "https://tec.openplanner.team/stops/X952akb"], ["https://tec.openplanner.team/stops/N141amc", "https://tec.openplanner.team/stops/N141ana"], ["https://tec.openplanner.team/stops/Ljegoss2", "https://tec.openplanner.team/stops/Ljewale4"], ["https://tec.openplanner.team/stops/Cfmchap1", "https://tec.openplanner.team/stops/Cfmltas2"], ["https://tec.openplanner.team/stops/LCxchal2", "https://tec.openplanner.team/stops/LCxreno1"], ["https://tec.openplanner.team/stops/H4ar172a", "https://tec.openplanner.team/stops/H4ar172b"], ["https://tec.openplanner.team/stops/X952aeb", "https://tec.openplanner.team/stops/X953aca"], ["https://tec.openplanner.team/stops/X907aea", "https://tec.openplanner.team/stops/X907aha"], ["https://tec.openplanner.team/stops/Bohnmon1", "https://tec.openplanner.team/stops/Bohnmon2"], ["https://tec.openplanner.team/stops/LFslign2", "https://tec.openplanner.team/stops/LFsphar1"], ["https://tec.openplanner.team/stops/Bbiefon1", "https://tec.openplanner.team/stops/Bptbsar1"], ["https://tec.openplanner.team/stops/N517adc", "https://tec.openplanner.team/stops/N517aea"], ["https://tec.openplanner.team/stops/N229aqa", "https://tec.openplanner.team/stops/N229aqb"], ["https://tec.openplanner.team/stops/LFPknap1", "https://tec.openplanner.team/stops/LFPknap2"], ["https://tec.openplanner.team/stops/X789afa", "https://tec.openplanner.team/stops/X789agb"], ["https://tec.openplanner.team/stops/H5qu139b", "https://tec.openplanner.team/stops/H5qu158a"], ["https://tec.openplanner.team/stops/LRtmame2", "https://tec.openplanner.team/stops/LRtrame1"], ["https://tec.openplanner.team/stops/H2ll173a", "https://tec.openplanner.team/stops/H2ll191a"], ["https://tec.openplanner.team/stops/NL77ala", "https://tec.openplanner.team/stops/NL77alb"], ["https://tec.openplanner.team/stops/Blasvil2", "https://tec.openplanner.team/stops/Blasvil3"], ["https://tec.openplanner.team/stops/H1gi123a", "https://tec.openplanner.team/stops/H1gi154b"], ["https://tec.openplanner.team/stops/N501gfb", "https://tec.openplanner.team/stops/N501gva"], ["https://tec.openplanner.team/stops/Lmobras1", "https://tec.openplanner.team/stops/Lmopech2"], ["https://tec.openplanner.team/stops/N524aaa", "https://tec.openplanner.team/stops/N524afa"], ["https://tec.openplanner.team/stops/LEN101-2", "https://tec.openplanner.team/stops/LENindu1"], ["https://tec.openplanner.team/stops/Cjudevo1", "https://tec.openplanner.team/stops/Cjudevo2"], ["https://tec.openplanner.team/stops/Livvill2", "https://tec.openplanner.team/stops/LRAcouv2"], ["https://tec.openplanner.team/stops/LVIdeva1", "https://tec.openplanner.team/stops/LVIhala4"], ["https://tec.openplanner.team/stops/LHUecte2", "https://tec.openplanner.team/stops/LHUpost1"], ["https://tec.openplanner.team/stops/N511amb", "https://tec.openplanner.team/stops/N511atb"], ["https://tec.openplanner.team/stops/Bllnmet1", "https://tec.openplanner.team/stops/Bllnpaf3"], ["https://tec.openplanner.team/stops/NC28aga", "https://tec.openplanner.team/stops/NC28agb"], ["https://tec.openplanner.team/stops/H1fv100b", "https://tec.openplanner.team/stops/H1fv101a"], ["https://tec.openplanner.team/stops/Blhumga2", "https://tec.openplanner.team/stops/Blhutco4"], ["https://tec.openplanner.team/stops/LAYcorn1", "https://tec.openplanner.team/stops/LAYcorn2"], ["https://tec.openplanner.team/stops/X911ara", "https://tec.openplanner.team/stops/X911arb"], ["https://tec.openplanner.team/stops/H4ln155a", "https://tec.openplanner.team/stops/H4ne133b"], ["https://tec.openplanner.team/stops/N530afa", "https://tec.openplanner.team/stops/N530aja"], ["https://tec.openplanner.team/stops/X602ala", "https://tec.openplanner.team/stops/X602alb"], ["https://tec.openplanner.team/stops/N137afb", "https://tec.openplanner.team/stops/N137agb"], ["https://tec.openplanner.team/stops/Blhucmo2", "https://tec.openplanner.team/stops/Blhugmo2"], ["https://tec.openplanner.team/stops/Bblamsp4", "https://tec.openplanner.team/stops/Bwatcli1"], ["https://tec.openplanner.team/stops/X824aka", "https://tec.openplanner.team/stops/X830aaa"], ["https://tec.openplanner.team/stops/LBssucr1", "https://tec.openplanner.team/stops/LWNcham2"], ["https://tec.openplanner.team/stops/Ccoacie2", "https://tec.openplanner.team/stops/Csoplac1"], ["https://tec.openplanner.team/stops/Lsmberg2", "https://tec.openplanner.team/stops/Lsmtini2"], ["https://tec.openplanner.team/stops/X747aaa", "https://tec.openplanner.team/stops/X754axa"], ["https://tec.openplanner.team/stops/Cchture1", "https://tec.openplanner.team/stops/Cchvhau1"], ["https://tec.openplanner.team/stops/X717acb", "https://tec.openplanner.team/stops/X789aba"], ["https://tec.openplanner.team/stops/Lbrfusi2", "https://tec.openplanner.team/stops/Lbrrobe2"], ["https://tec.openplanner.team/stops/LCPbell1", "https://tec.openplanner.team/stops/LCPhall2"], ["https://tec.openplanner.team/stops/N348aea", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/Caccarr2", "https://tec.openplanner.team/stops/Cacragu2"], ["https://tec.openplanner.team/stops/X989acb", "https://tec.openplanner.team/stops/X989agb"], ["https://tec.openplanner.team/stops/H4mb202b", "https://tec.openplanner.team/stops/H4mb203a"], ["https://tec.openplanner.team/stops/N538awa", "https://tec.openplanner.team/stops/N539aoa"], ["https://tec.openplanner.team/stops/Bwatber1", "https://tec.openplanner.team/stops/Bwatrte1"], ["https://tec.openplanner.team/stops/X371aga", "https://tec.openplanner.team/stops/X371aia"], ["https://tec.openplanner.team/stops/Bnivrec2", "https://tec.openplanner.team/stops/Bnivsci2"], ["https://tec.openplanner.team/stops/LDmeg--2", "https://tec.openplanner.team/stops/LHoetie1"], ["https://tec.openplanner.team/stops/Ljubods1", "https://tec.openplanner.team/stops/Ljugode1"], ["https://tec.openplanner.team/stops/N162aaa", "https://tec.openplanner.team/stops/N162afb"], ["https://tec.openplanner.team/stops/Bramcar2", "https://tec.openplanner.team/stops/Bramrdf2"], ["https://tec.openplanner.team/stops/X740abd", "https://tec.openplanner.team/stops/X740afa"], ["https://tec.openplanner.team/stops/LJUfort1", "https://tec.openplanner.team/stops/LVSslin2"], ["https://tec.openplanner.team/stops/X902bcb", "https://tec.openplanner.team/stops/X999ala"], ["https://tec.openplanner.team/stops/Lcegeor1", "https://tec.openplanner.team/stops/Lcegeor2"], ["https://tec.openplanner.team/stops/N203acb", "https://tec.openplanner.team/stops/N560aaa"], ["https://tec.openplanner.team/stops/H1mm121a", "https://tec.openplanner.team/stops/H1mm122b"], ["https://tec.openplanner.team/stops/H4be145b", "https://tec.openplanner.team/stops/H4be146b"], ["https://tec.openplanner.team/stops/N390aeb", "https://tec.openplanner.team/stops/X390ala"], ["https://tec.openplanner.team/stops/X804aoa", "https://tec.openplanner.team/stops/X804aob"], ["https://tec.openplanner.team/stops/N506bha", "https://tec.openplanner.team/stops/N506bkb"], ["https://tec.openplanner.team/stops/X601cga", "https://tec.openplanner.team/stops/X662aja"], ["https://tec.openplanner.team/stops/LkEbbl-1", "https://tec.openplanner.team/stops/LkEsada1"], ["https://tec.openplanner.team/stops/X793abb", "https://tec.openplanner.team/stops/X793aea"], ["https://tec.openplanner.team/stops/N134adb", "https://tec.openplanner.team/stops/N135azb"], ["https://tec.openplanner.team/stops/Lhrgall2", "https://tec.openplanner.team/stops/Lhrtunn1"], ["https://tec.openplanner.team/stops/N232bdb", "https://tec.openplanner.team/stops/N232beb"], ["https://tec.openplanner.team/stops/LkOgren1", "https://tec.openplanner.team/stops/LkOzoll1"], ["https://tec.openplanner.team/stops/Cmlbuis3", "https://tec.openplanner.team/stops/Cmlbuis4"], ["https://tec.openplanner.team/stops/Bniltri1", "https://tec.openplanner.team/stops/Bnilwal2"], ["https://tec.openplanner.team/stops/N573aea", "https://tec.openplanner.team/stops/N573aib"], ["https://tec.openplanner.team/stops/X626abb", "https://tec.openplanner.team/stops/X626anb"], ["https://tec.openplanner.team/stops/Lagpn6-1", "https://tec.openplanner.team/stops/Lsteg--2"], ["https://tec.openplanner.team/stops/Bnivbpe1", "https://tec.openplanner.team/stops/Bnivsto1"], ["https://tec.openplanner.team/stops/N115acb", "https://tec.openplanner.team/stops/N118ala"], ["https://tec.openplanner.team/stops/H1at109a", "https://tec.openplanner.team/stops/H1fy119a"], ["https://tec.openplanner.team/stops/H1ci104b", "https://tec.openplanner.team/stops/H1ci105a"], ["https://tec.openplanner.team/stops/N109aca", "https://tec.openplanner.team/stops/N109ada"], ["https://tec.openplanner.team/stops/N547abb", "https://tec.openplanner.team/stops/N547adb"], ["https://tec.openplanner.team/stops/N549aeb", "https://tec.openplanner.team/stops/N550aca"], ["https://tec.openplanner.team/stops/Llgcime2", "https://tec.openplanner.team/stops/LlgPRVo1"], ["https://tec.openplanner.team/stops/Bflcpco1", "https://tec.openplanner.team/stops/N515afb"], ["https://tec.openplanner.team/stops/X715aca", "https://tec.openplanner.team/stops/X715acc"], ["https://tec.openplanner.team/stops/Clcfall2", "https://tec.openplanner.team/stops/Clcfall4"], ["https://tec.openplanner.team/stops/H1je220d", "https://tec.openplanner.team/stops/H1je223a"], ["https://tec.openplanner.team/stops/Lmlcher1", "https://tec.openplanner.team/stops/Lmlmaqu1"], ["https://tec.openplanner.team/stops/N308asb", "https://tec.openplanner.team/stops/N308baa"], ["https://tec.openplanner.team/stops/Blimeur1", "https://tec.openplanner.team/stops/Blmlgar2"], ["https://tec.openplanner.team/stops/LESmecp*", "https://tec.openplanner.team/stops/LESsouv1"], ["https://tec.openplanner.team/stops/H1vb142a", "https://tec.openplanner.team/stops/H1vb147a"], ["https://tec.openplanner.team/stops/Cctsncb1", "https://tec.openplanner.team/stops/Cctsncb4"], ["https://tec.openplanner.team/stops/N543cha", "https://tec.openplanner.team/stops/N543chb"], ["https://tec.openplanner.team/stops/LBkgrae1", "https://tec.openplanner.team/stops/LBkgrae2"], ["https://tec.openplanner.team/stops/N534bra", "https://tec.openplanner.team/stops/N534brb"], ["https://tec.openplanner.team/stops/N123aaa", "https://tec.openplanner.team/stops/N150aec"], ["https://tec.openplanner.team/stops/X718aba", "https://tec.openplanner.team/stops/X719ada"], ["https://tec.openplanner.team/stops/N506aja", "https://tec.openplanner.team/stops/N506asa"], ["https://tec.openplanner.team/stops/X618aea", "https://tec.openplanner.team/stops/X618afb"], ["https://tec.openplanner.team/stops/Bblaqsj1", "https://tec.openplanner.team/stops/Bblaqsj2"], ["https://tec.openplanner.team/stops/CMleer1", "https://tec.openplanner.team/stops/CMleer2"], ["https://tec.openplanner.team/stops/LeYroth1", "https://tec.openplanner.team/stops/LhSwind1"], ["https://tec.openplanner.team/stops/Brsgepr1", "https://tec.openplanner.team/stops/Brsgges2"], ["https://tec.openplanner.team/stops/LBNvill2", "https://tec.openplanner.team/stops/LBNvill3"], ["https://tec.openplanner.team/stops/H1bo110a", "https://tec.openplanner.team/stops/H1te198b"], ["https://tec.openplanner.team/stops/Bbstdpa1", "https://tec.openplanner.team/stops/Bbstdpa2"], ["https://tec.openplanner.team/stops/Buccpes1", "https://tec.openplanner.team/stops/Buccpin2"], ["https://tec.openplanner.team/stops/LPUlecl2", "https://tec.openplanner.team/stops/LPUmer-2"], ["https://tec.openplanner.team/stops/Bglibui1", "https://tec.openplanner.team/stops/Bjdspon2"], ["https://tec.openplanner.team/stops/Cciferr2", "https://tec.openplanner.team/stops/Ccipano2"], ["https://tec.openplanner.team/stops/LFTcroi1", "https://tec.openplanner.team/stops/LFTcroi2"], ["https://tec.openplanner.team/stops/H4hu121a", "https://tec.openplanner.team/stops/H4og207b"], ["https://tec.openplanner.team/stops/Lhr2ave1", "https://tec.openplanner.team/stops/Lhrhurb2"], ["https://tec.openplanner.team/stops/N535anb", "https://tec.openplanner.team/stops/N535aob"], ["https://tec.openplanner.team/stops/Lheneuv2", "https://tec.openplanner.team/stops/Lheneuv4"], ["https://tec.openplanner.team/stops/Bmlncha2", "https://tec.openplanner.team/stops/Bmlnmbo2"], ["https://tec.openplanner.team/stops/Bnivfle2", "https://tec.openplanner.team/stops/Bnivmfr2"], ["https://tec.openplanner.team/stops/X775aeb", "https://tec.openplanner.team/stops/X775ana"], ["https://tec.openplanner.team/stops/LmDwei31", "https://tec.openplanner.team/stops/LmDwei32"], ["https://tec.openplanner.team/stops/X805aka", "https://tec.openplanner.team/stops/X873aba"], ["https://tec.openplanner.team/stops/X651aca", "https://tec.openplanner.team/stops/X651aea"], ["https://tec.openplanner.team/stops/H4wi162b", "https://tec.openplanner.team/stops/H4wi175b"], ["https://tec.openplanner.team/stops/LATguis1", "https://tec.openplanner.team/stops/LVLchem2"], ["https://tec.openplanner.team/stops/NC14abb", "https://tec.openplanner.team/stops/NC44ahb"], ["https://tec.openplanner.team/stops/LSktinc1", "https://tec.openplanner.team/stops/LSkwarf4"], ["https://tec.openplanner.team/stops/Cflathe2", "https://tec.openplanner.team/stops/Cflgazo1"], ["https://tec.openplanner.team/stops/Ladppir1", "https://tec.openplanner.team/stops/Lvemahe2"], ["https://tec.openplanner.team/stops/LArmeni1", "https://tec.openplanner.team/stops/X784aga"], ["https://tec.openplanner.team/stops/H4ka392a", "https://tec.openplanner.team/stops/H4ka393a"], ["https://tec.openplanner.team/stops/Llabriq1", "https://tec.openplanner.team/stops/Lvopaqu2"], ["https://tec.openplanner.team/stops/N536aoa", "https://tec.openplanner.team/stops/N536aqb"], ["https://tec.openplanner.team/stops/X937aca", "https://tec.openplanner.team/stops/X937akb"], ["https://tec.openplanner.team/stops/Ljegare2", "https://tec.openplanner.team/stops/Ljelexh2"], ["https://tec.openplanner.team/stops/LFCkerk1", "https://tec.openplanner.team/stops/LFClage2"], ["https://tec.openplanner.team/stops/N134aca", "https://tec.openplanner.team/stops/N134aja"], ["https://tec.openplanner.team/stops/X982bga", "https://tec.openplanner.team/stops/X982bma"], ["https://tec.openplanner.team/stops/N539ada", "https://tec.openplanner.team/stops/N539aga"], ["https://tec.openplanner.team/stops/LAwec--1", "https://tec.openplanner.team/stops/LAwfans2"], ["https://tec.openplanner.team/stops/LOuathe1", "https://tec.openplanner.team/stops/LOucarr4"], ["https://tec.openplanner.team/stops/X991aeb", "https://tec.openplanner.team/stops/X991afb"], ["https://tec.openplanner.team/stops/Canchbr1", "https://tec.openplanner.team/stops/Canstat1"], ["https://tec.openplanner.team/stops/Bitrcan1", "https://tec.openplanner.team/stops/Bvirfpo2"], ["https://tec.openplanner.team/stops/LBCaube1", "https://tec.openplanner.team/stops/LMAbass1"], ["https://tec.openplanner.team/stops/H4mx116b", "https://tec.openplanner.team/stops/H4po130b"], ["https://tec.openplanner.team/stops/H4og207b", "https://tec.openplanner.team/stops/H4og216b"], ["https://tec.openplanner.team/stops/N501bfb", "https://tec.openplanner.team/stops/N501bfy"], ["https://tec.openplanner.team/stops/Cwgpatr1", "https://tec.openplanner.team/stops/Cwgrans4"], ["https://tec.openplanner.team/stops/Cgyruis1", "https://tec.openplanner.team/stops/CMsartc2"], ["https://tec.openplanner.team/stops/LGEwalk2", "https://tec.openplanner.team/stops/LLStrid4"], ["https://tec.openplanner.team/stops/H1pa166a", "https://tec.openplanner.team/stops/H1pa166b"], ["https://tec.openplanner.team/stops/X919adb", "https://tec.openplanner.team/stops/X921akb"], ["https://tec.openplanner.team/stops/LEnvill2", "https://tec.openplanner.team/stops/NL73aba"], ["https://tec.openplanner.team/stops/NC14ana", "https://tec.openplanner.team/stops/NC24agb"], ["https://tec.openplanner.team/stops/X723ada", "https://tec.openplanner.team/stops/X723alb"], ["https://tec.openplanner.team/stops/H1bo104a", "https://tec.openplanner.team/stops/H1bo104b"], ["https://tec.openplanner.team/stops/Cmychap1", "https://tec.openplanner.team/stops/Cmychap3"], ["https://tec.openplanner.team/stops/Cfcchas1", "https://tec.openplanner.team/stops/Cfccol1"], ["https://tec.openplanner.team/stops/LlgOPER2", "https://tec.openplanner.team/stops/LlgOPER6"], ["https://tec.openplanner.team/stops/LESamos1", "https://tec.openplanner.team/stops/LESecco1"], ["https://tec.openplanner.team/stops/Bgnvpap1", "https://tec.openplanner.team/stops/Brixpro4"], ["https://tec.openplanner.team/stops/Cnagrro2", "https://tec.openplanner.team/stops/Cnaplha1"], ["https://tec.openplanner.team/stops/Bhencha2", "https://tec.openplanner.team/stops/Bhenrcr1"], ["https://tec.openplanner.team/stops/LAThach2", "https://tec.openplanner.team/stops/LATrori2"], ["https://tec.openplanner.team/stops/N505aba", "https://tec.openplanner.team/stops/N505acb"], ["https://tec.openplanner.team/stops/LSWscie1", "https://tec.openplanner.team/stops/LSZgare2"], ["https://tec.openplanner.team/stops/Lemambi2", "https://tec.openplanner.team/stops/Lemmc--1"], ["https://tec.openplanner.team/stops/X742aba", "https://tec.openplanner.team/stops/X742abb"], ["https://tec.openplanner.team/stops/X805afb", "https://tec.openplanner.team/stops/X869aab"], ["https://tec.openplanner.team/stops/X923ada", "https://tec.openplanner.team/stops/X923aqa"], ["https://tec.openplanner.team/stops/LhGcasi1", "https://tec.openplanner.team/stops/LkEsada1"], ["https://tec.openplanner.team/stops/Bmarcha1", "https://tec.openplanner.team/stops/Bmarchn1"], ["https://tec.openplanner.team/stops/Bbghsar2", "https://tec.openplanner.team/stops/Bstesar2"], ["https://tec.openplanner.team/stops/LoDkoll1", "https://tec.openplanner.team/stops/LoDmuhl1"], ["https://tec.openplanner.team/stops/Cchparc2", "https://tec.openplanner.team/stops/Cchparc5"], ["https://tec.openplanner.team/stops/Cmltemp2", "https://tec.openplanner.team/stops/Cmlvpla1"], ["https://tec.openplanner.team/stops/Lflec--2", "https://tec.openplanner.team/stops/Lfljupi2"], ["https://tec.openplanner.team/stops/N501cra", "https://tec.openplanner.team/stops/N501crd"], ["https://tec.openplanner.team/stops/LREheyd2", "https://tec.openplanner.team/stops/LREsp302"], ["https://tec.openplanner.team/stops/LAMhaut1", "https://tec.openplanner.team/stops/LOmlime1"], ["https://tec.openplanner.team/stops/N511aea", "https://tec.openplanner.team/stops/N511akb"], ["https://tec.openplanner.team/stops/Bwatmsj5", "https://tec.openplanner.team/stops/Bwatmsj6"], ["https://tec.openplanner.team/stops/X601bsa", "https://tec.openplanner.team/stops/X601dga"], ["https://tec.openplanner.team/stops/Llgmara1", "https://tec.openplanner.team/stops/Llgmara2"], ["https://tec.openplanner.team/stops/H4bw102a", "https://tec.openplanner.team/stops/H4wn131b"], ["https://tec.openplanner.team/stops/X994afa", "https://tec.openplanner.team/stops/X994aja"], ["https://tec.openplanner.team/stops/LChvill*", "https://tec.openplanner.team/stops/LJAgoff1"], ["https://tec.openplanner.team/stops/Buccpor1", "https://tec.openplanner.team/stops/Buccvbe1"], ["https://tec.openplanner.team/stops/LCAwals1", "https://tec.openplanner.team/stops/LLagert*"], ["https://tec.openplanner.team/stops/Ccupdes2", "https://tec.openplanner.team/stops/Ccupomp2"], ["https://tec.openplanner.team/stops/Bbosgar2", "https://tec.openplanner.team/stops/Bhoealt2"], ["https://tec.openplanner.team/stops/LDmwaef2", "https://tec.openplanner.team/stops/LDmwarf1"], ["https://tec.openplanner.team/stops/H1qu102b", "https://tec.openplanner.team/stops/H1qu106b"], ["https://tec.openplanner.team/stops/LwTkabi2", "https://tec.openplanner.team/stops/LwTkabi3"], ["https://tec.openplanner.team/stops/Bbeacha2", "https://tec.openplanner.team/stops/Bbeapim2"], ["https://tec.openplanner.team/stops/X650afe", "https://tec.openplanner.team/stops/X651aaa"], ["https://tec.openplanner.team/stops/Bblavol2", "https://tec.openplanner.team/stops/Bwatbca1"], ["https://tec.openplanner.team/stops/N131aha", "https://tec.openplanner.team/stops/N132aeb"], ["https://tec.openplanner.team/stops/Bmarchn2", "https://tec.openplanner.team/stops/Bmarfjo2"], ["https://tec.openplanner.team/stops/Cctkais1", "https://tec.openplanner.team/stops/Cctmine2"], ["https://tec.openplanner.team/stops/Bblaang2", "https://tec.openplanner.team/stops/Blilwit1"], ["https://tec.openplanner.team/stops/LFFchab1", "https://tec.openplanner.team/stops/LVLf10-1"], ["https://tec.openplanner.team/stops/LGefron1", "https://tec.openplanner.team/stops/LVAwolf2"], ["https://tec.openplanner.team/stops/N118agb", "https://tec.openplanner.team/stops/N118aia"], ["https://tec.openplanner.team/stops/LPobois2", "https://tec.openplanner.team/stops/LTgsous2"], ["https://tec.openplanner.team/stops/N501cwb", "https://tec.openplanner.team/stops/N501dab"], ["https://tec.openplanner.team/stops/N501hab", "https://tec.openplanner.team/stops/N501ihy"], ["https://tec.openplanner.team/stops/N291aaa", "https://tec.openplanner.team/stops/N291aab"], ["https://tec.openplanner.team/stops/H1ro135a", "https://tec.openplanner.team/stops/H1ro135b"], ["https://tec.openplanner.team/stops/H4ta131a", "https://tec.openplanner.team/stops/H4ta131b"], ["https://tec.openplanner.team/stops/N222ayb", "https://tec.openplanner.team/stops/X222aza"], ["https://tec.openplanner.team/stops/H4ma201a", "https://tec.openplanner.team/stops/H4ma202b"], ["https://tec.openplanner.team/stops/LhGlang1", "https://tec.openplanner.team/stops/LhGlang2"], ["https://tec.openplanner.team/stops/LCRfavr2", "https://tec.openplanner.team/stops/LTyh51-1"], ["https://tec.openplanner.team/stops/N212ata", "https://tec.openplanner.team/stops/N213aca"], ["https://tec.openplanner.team/stops/H1as102a", "https://tec.openplanner.team/stops/H1as154b"], ["https://tec.openplanner.team/stops/Lvtboux1", "https://tec.openplanner.team/stops/Lvtmeun2"], ["https://tec.openplanner.team/stops/X651aga", "https://tec.openplanner.team/stops/X651agb"], ["https://tec.openplanner.team/stops/NL57aeb", "https://tec.openplanner.team/stops/NL68adb"], ["https://tec.openplanner.team/stops/Cmlchan1", "https://tec.openplanner.team/stops/Cmlchan2"], ["https://tec.openplanner.team/stops/Cgd4ven1", "https://tec.openplanner.team/stops/Csslesc2"], ["https://tec.openplanner.team/stops/LNCfawe2", "https://tec.openplanner.team/stops/LRRchea5"], ["https://tec.openplanner.team/stops/N206aba", "https://tec.openplanner.team/stops/N206aca"], ["https://tec.openplanner.team/stops/Cgocitn1", "https://tec.openplanner.team/stops/Cgomoul2"], ["https://tec.openplanner.team/stops/X695ada", "https://tec.openplanner.team/stops/X695aga"], ["https://tec.openplanner.team/stops/Cfmchau2", "https://tec.openplanner.team/stops/Cfmtrie1"], ["https://tec.openplanner.team/stops/N501lxb", "https://tec.openplanner.team/stops/N501mfb"], ["https://tec.openplanner.team/stops/LHXmonu1", "https://tec.openplanner.team/stops/LHXmonu2"], ["https://tec.openplanner.team/stops/H4ss153b", "https://tec.openplanner.team/stops/H4ss158b"], ["https://tec.openplanner.team/stops/N538agb", "https://tec.openplanner.team/stops/N538aub"], ["https://tec.openplanner.team/stops/N533aab", "https://tec.openplanner.team/stops/N533afb"], ["https://tec.openplanner.team/stops/N135avb", "https://tec.openplanner.team/stops/N135bba"], ["https://tec.openplanner.team/stops/H4ga147b", "https://tec.openplanner.team/stops/H4ga165b"], ["https://tec.openplanner.team/stops/LFAbouc1", "https://tec.openplanner.team/stops/LLTfall1"], ["https://tec.openplanner.team/stops/H5rx100a", "https://tec.openplanner.team/stops/H5rx113b"], ["https://tec.openplanner.team/stops/Cbfchla2", "https://tec.openplanner.team/stops/NC24aja"], ["https://tec.openplanner.team/stops/H3bi112b", "https://tec.openplanner.team/stops/H3bi117b"], ["https://tec.openplanner.team/stops/X921ana", "https://tec.openplanner.team/stops/X922agb"], ["https://tec.openplanner.team/stops/LWahetr1", "https://tec.openplanner.team/stops/LWahetr2"], ["https://tec.openplanner.team/stops/X616aib", "https://tec.openplanner.team/stops/X616ajb"], ["https://tec.openplanner.team/stops/Cmesafi2", "https://tec.openplanner.team/stops/Csa4mai2"], ["https://tec.openplanner.team/stops/LAMceri2", "https://tec.openplanner.team/stops/LAMwall1"], ["https://tec.openplanner.team/stops/Bfelcsa2", "https://tec.openplanner.team/stops/Bsences1"], ["https://tec.openplanner.team/stops/X602aqb", "https://tec.openplanner.team/stops/X602ara"], ["https://tec.openplanner.team/stops/N543aya", "https://tec.openplanner.team/stops/N543ayb"], ["https://tec.openplanner.team/stops/X825aaa", "https://tec.openplanner.team/stops/X825aba"], ["https://tec.openplanner.team/stops/LMOchpl1", "https://tec.openplanner.team/stops/LMOfrel2"], ["https://tec.openplanner.team/stops/LPOeg--1", "https://tec.openplanner.team/stops/LSdbote1"], ["https://tec.openplanner.team/stops/H1wi148a", "https://tec.openplanner.team/stops/H1wi155a"], ["https://tec.openplanner.team/stops/LCEec--1", "https://tec.openplanner.team/stops/LMIcamp2"], ["https://tec.openplanner.team/stops/Cvpcdec2", "https://tec.openplanner.team/stops/Cvpsawe1"], ["https://tec.openplanner.team/stops/N501fbb", "https://tec.openplanner.team/stops/N501ltb"], ["https://tec.openplanner.team/stops/LBNvill1", "https://tec.openplanner.team/stops/LMemaza1"], ["https://tec.openplanner.team/stops/Bhen5ma1", "https://tec.openplanner.team/stops/Bhen5ma2"], ["https://tec.openplanner.team/stops/Cptccas2", "https://tec.openplanner.team/stops/Cptsncb1"], ["https://tec.openplanner.team/stops/X879alb", "https://tec.openplanner.team/stops/X879asb"], ["https://tec.openplanner.team/stops/Lhr1ave2", "https://tec.openplanner.team/stops/Lhrhurb1"], ["https://tec.openplanner.team/stops/Boplcsj2", "https://tec.openplanner.team/stops/Bpienod2"], ["https://tec.openplanner.team/stops/Lrcvinc2", "https://tec.openplanner.team/stops/Lvoec--2"], ["https://tec.openplanner.team/stops/LeUhaas4", "https://tec.openplanner.team/stops/LeUschi2"], ["https://tec.openplanner.team/stops/Lsebegu1", "https://tec.openplanner.team/stops/Lsetrav1"], ["https://tec.openplanner.team/stops/LsHkreu4", "https://tec.openplanner.team/stops/LsHthom1"], ["https://tec.openplanner.team/stops/H2ll191a", "https://tec.openplanner.team/stops/H2ll192b"], ["https://tec.openplanner.team/stops/Blhupa14", "https://tec.openplanner.team/stops/Blhupcl2"], ["https://tec.openplanner.team/stops/H1an102a", "https://tec.openplanner.team/stops/H1an103a"], ["https://tec.openplanner.team/stops/Bwbfbon2", "https://tec.openplanner.team/stops/Bwbfckr1"], ["https://tec.openplanner.team/stops/H2ll198a", "https://tec.openplanner.team/stops/H2ll198b"], ["https://tec.openplanner.team/stops/Lsmnico1", "https://tec.openplanner.team/stops/Lsmnico2"], ["https://tec.openplanner.team/stops/X876aba", "https://tec.openplanner.team/stops/X876aca"], ["https://tec.openplanner.team/stops/LPbpeti1", "https://tec.openplanner.team/stops/LPbpeti2"], ["https://tec.openplanner.team/stops/H4au143b", "https://tec.openplanner.team/stops/H4og207a"], ["https://tec.openplanner.team/stops/Laleg--1", "https://tec.openplanner.team/stops/Laleg--2"], ["https://tec.openplanner.team/stops/N554agb", "https://tec.openplanner.team/stops/N554ahb"], ["https://tec.openplanner.team/stops/H4bw100a", "https://tec.openplanner.team/stops/H4co149a"], ["https://tec.openplanner.team/stops/X649aaa", "https://tec.openplanner.team/stops/X671ada"], ["https://tec.openplanner.team/stops/LDAalbe2", "https://tec.openplanner.team/stops/LDAwich2"], ["https://tec.openplanner.team/stops/X985aea", "https://tec.openplanner.team/stops/X985aha"], ["https://tec.openplanner.team/stops/X620aab", "https://tec.openplanner.team/stops/X620aga"], ["https://tec.openplanner.team/stops/Bbcogar1", "https://tec.openplanner.team/stops/H3br112a"], ["https://tec.openplanner.team/stops/X615aub", "https://tec.openplanner.team/stops/X615avb"], ["https://tec.openplanner.team/stops/X979afb", "https://tec.openplanner.team/stops/X982bsa"], ["https://tec.openplanner.team/stops/H1ms279a", "https://tec.openplanner.team/stops/H1ms367a"], ["https://tec.openplanner.team/stops/X396aab", "https://tec.openplanner.team/stops/X396acb"], ["https://tec.openplanner.team/stops/X889ada", "https://tec.openplanner.team/stops/X889aeb"], ["https://tec.openplanner.team/stops/Bnilpje2", "https://tec.openplanner.team/stops/Bnilpor4"], ["https://tec.openplanner.team/stops/H1as103a", "https://tec.openplanner.team/stops/H1as103d"], ["https://tec.openplanner.team/stops/H2ma208b", "https://tec.openplanner.team/stops/H3th131a"], ["https://tec.openplanner.team/stops/H1gy111b", "https://tec.openplanner.team/stops/H1le127a"], ["https://tec.openplanner.team/stops/N229aja", "https://tec.openplanner.team/stops/N229ajb"], ["https://tec.openplanner.team/stops/Llgblon1", "https://tec.openplanner.team/stops/Llgdart2"], ["https://tec.openplanner.team/stops/X750aya", "https://tec.openplanner.team/stops/X750ayb"], ["https://tec.openplanner.team/stops/LMEcour2", "https://tec.openplanner.team/stops/LMEpech1"], ["https://tec.openplanner.team/stops/Bblaeur1", "https://tec.openplanner.team/stops/Bblasse2"], ["https://tec.openplanner.team/stops/H1cu123a", "https://tec.openplanner.team/stops/H1cu124b"], ["https://tec.openplanner.team/stops/H4ho119b", "https://tec.openplanner.team/stops/H4pl111a"], ["https://tec.openplanner.team/stops/H2hg146a", "https://tec.openplanner.team/stops/H2hg146b"], ["https://tec.openplanner.team/stops/Lhrmeta2", "https://tec.openplanner.team/stops/Lhrunir2"], ["https://tec.openplanner.team/stops/H4av100a", "https://tec.openplanner.team/stops/H4av105a"], ["https://tec.openplanner.team/stops/X766aba", "https://tec.openplanner.team/stops/X766abb"], ["https://tec.openplanner.team/stops/Bwolkra1", "https://tec.openplanner.team/stops/Bwolkra2"], ["https://tec.openplanner.team/stops/LeUschn1", "https://tec.openplanner.team/stops/LkTsch%C3%B62"], ["https://tec.openplanner.team/stops/X664aba", "https://tec.openplanner.team/stops/X664abb"], ["https://tec.openplanner.team/stops/LBPmais2", "https://tec.openplanner.team/stops/LBPrueg2"], ["https://tec.openplanner.team/stops/H4ce105a", "https://tec.openplanner.team/stops/H4ce105b"], ["https://tec.openplanner.team/stops/H4hq130a", "https://tec.openplanner.team/stops/H4hq134b"], ["https://tec.openplanner.team/stops/H4ho119a", "https://tec.openplanner.team/stops/H4wn127b"], ["https://tec.openplanner.team/stops/Ccu6bra3", "https://tec.openplanner.team/stops/Cculgeo1"], ["https://tec.openplanner.team/stops/X695aga", "https://tec.openplanner.team/stops/X696aja"], ["https://tec.openplanner.team/stops/LMibouv3", "https://tec.openplanner.team/stops/LSTmeiz2"], ["https://tec.openplanner.team/stops/Crachap1", "https://tec.openplanner.team/stops/Crasabl1"], ["https://tec.openplanner.team/stops/N121aeb", "https://tec.openplanner.team/stops/N122ahb"], ["https://tec.openplanner.team/stops/Cpllimi2", "https://tec.openplanner.team/stops/Cpllimi3"], ["https://tec.openplanner.team/stops/N236abb", "https://tec.openplanner.team/stops/N236adb"], ["https://tec.openplanner.team/stops/Lhelait1", "https://tec.openplanner.team/stops/Lhelait2"], ["https://tec.openplanner.team/stops/Bbstcoi1", "https://tec.openplanner.team/stops/Bvlvbth1"], ["https://tec.openplanner.team/stops/LAibego1", "https://tec.openplanner.team/stops/LAipala2"], ["https://tec.openplanner.team/stops/Cgomoul1", "https://tec.openplanner.team/stops/CMbruy2"], ["https://tec.openplanner.team/stops/LBichen1", "https://tec.openplanner.team/stops/LBiroch1"], ["https://tec.openplanner.team/stops/H4ty294a", "https://tec.openplanner.team/stops/H4ty346b"], ["https://tec.openplanner.team/stops/LBOholt1", "https://tec.openplanner.team/stops/LMucarr1"], ["https://tec.openplanner.team/stops/N353aab", "https://tec.openplanner.team/stops/N353aha"], ["https://tec.openplanner.team/stops/H4wu377a", "https://tec.openplanner.team/stops/H4wu377b"], ["https://tec.openplanner.team/stops/LAmeg--1", "https://tec.openplanner.team/stops/LAmeg--2"], ["https://tec.openplanner.team/stops/X850aib", "https://tec.openplanner.team/stops/X850ajb"], ["https://tec.openplanner.team/stops/N115aba", "https://tec.openplanner.team/stops/N170agb"], ["https://tec.openplanner.team/stops/N544aba", "https://tec.openplanner.team/stops/N550aja"], ["https://tec.openplanner.team/stops/LBHgile1", "https://tec.openplanner.team/stops/LBHhuyn2"], ["https://tec.openplanner.team/stops/H4oe147b", "https://tec.openplanner.team/stops/H4oe148b"], ["https://tec.openplanner.team/stops/X993aib", "https://tec.openplanner.team/stops/X994aib"], ["https://tec.openplanner.team/stops/LTHec--2", "https://tec.openplanner.team/stops/LTHwaux1"], ["https://tec.openplanner.team/stops/Lcefoxh1", "https://tec.openplanner.team/stops/Lceleje1"], ["https://tec.openplanner.team/stops/H1en100a", "https://tec.openplanner.team/stops/H1mk107a"], ["https://tec.openplanner.team/stops/N558afa", "https://tec.openplanner.team/stops/N558ama"], ["https://tec.openplanner.team/stops/Lstbold2", "https://tec.openplanner.team/stops/Lstvill2"], ["https://tec.openplanner.team/stops/LFEland1", "https://tec.openplanner.team/stops/X597aga"], ["https://tec.openplanner.team/stops/H4ro155a", "https://tec.openplanner.team/stops/H4ro155b"], ["https://tec.openplanner.team/stops/N353aea", "https://tec.openplanner.team/stops/N383adb"], ["https://tec.openplanner.team/stops/N202aab", "https://tec.openplanner.team/stops/N202afb"], ["https://tec.openplanner.team/stops/Bgliegl2", "https://tec.openplanner.team/stops/Bgliron1"], ["https://tec.openplanner.team/stops/LCIsucr1", "https://tec.openplanner.team/stops/LMXroye1"], ["https://tec.openplanner.team/stops/Bnivaba1", "https://tec.openplanner.team/stops/Bnivlai1"], ["https://tec.openplanner.team/stops/LmD27--1", "https://tec.openplanner.team/stops/LmDkirc1"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X665aba"], ["https://tec.openplanner.team/stops/H1bx107a", "https://tec.openplanner.team/stops/H1bx108a"], ["https://tec.openplanner.team/stops/X390aha", "https://tec.openplanner.team/stops/X390apb"], ["https://tec.openplanner.team/stops/H4ma399a", "https://tec.openplanner.team/stops/H4ma399b"], ["https://tec.openplanner.team/stops/Bnivpeu2", "https://tec.openplanner.team/stops/Bnivzep1"], ["https://tec.openplanner.team/stops/Lhrmilm1", "https://tec.openplanner.team/stops/Lhrmilm2"], ["https://tec.openplanner.team/stops/N534bxa", "https://tec.openplanner.team/stops/N561aga"], ["https://tec.openplanner.team/stops/Loualbe2", "https://tec.openplanner.team/stops/Loucham2"], ["https://tec.openplanner.team/stops/H1ha183a", "https://tec.openplanner.team/stops/H1ha199b"], ["https://tec.openplanner.team/stops/Lvebiol1", "https://tec.openplanner.team/stops/Lvesomm2"], ["https://tec.openplanner.team/stops/Cgy3011", "https://tec.openplanner.team/stops/Cmtchet2"], ["https://tec.openplanner.team/stops/Clolidl2", "https://tec.openplanner.team/stops/Clooues3"], ["https://tec.openplanner.team/stops/LCRvert1", "https://tec.openplanner.team/stops/LOdcris2"], ["https://tec.openplanner.team/stops/Ljekess1", "https://tec.openplanner.team/stops/Ljekess2"], ["https://tec.openplanner.team/stops/N203aab", "https://tec.openplanner.team/stops/N203afb"], ["https://tec.openplanner.team/stops/LVncarr2", "https://tec.openplanner.team/stops/LVnroch2"], ["https://tec.openplanner.team/stops/LMHmeha1", "https://tec.openplanner.team/stops/LMHoha-2"], ["https://tec.openplanner.team/stops/X717agc", "https://tec.openplanner.team/stops/X781aba"], ["https://tec.openplanner.team/stops/N337aea", "https://tec.openplanner.team/stops/N385aaa"], ["https://tec.openplanner.team/stops/X619adb", "https://tec.openplanner.team/stops/X619afa"], ["https://tec.openplanner.team/stops/LLnlimb1", "https://tec.openplanner.team/stops/LORroma1"], ["https://tec.openplanner.team/stops/LOeelbe2", "https://tec.openplanner.team/stops/LOewaut1"], ["https://tec.openplanner.team/stops/X739ahb", "https://tec.openplanner.team/stops/X739aia"], ["https://tec.openplanner.team/stops/N215aba", "https://tec.openplanner.team/stops/N215acb"], ["https://tec.openplanner.team/stops/N501fhb", "https://tec.openplanner.team/stops/N501lyb"], ["https://tec.openplanner.team/stops/N543aoa", "https://tec.openplanner.team/stops/N543cga"], ["https://tec.openplanner.team/stops/LHYwach2", "https://tec.openplanner.team/stops/LSpogne1"], ["https://tec.openplanner.team/stops/N501lea", "https://tec.openplanner.team/stops/N538aeb"], ["https://tec.openplanner.team/stops/H4ty296a", "https://tec.openplanner.team/stops/H4ty296b"], ["https://tec.openplanner.team/stops/X651afb", "https://tec.openplanner.team/stops/X659abb"], ["https://tec.openplanner.team/stops/X749abb", "https://tec.openplanner.team/stops/X749acb"], ["https://tec.openplanner.team/stops/H2mg144a", "https://tec.openplanner.team/stops/H2mg144b"], ["https://tec.openplanner.team/stops/Ccufos72", "https://tec.openplanner.team/stops/Ccuhsti1"], ["https://tec.openplanner.team/stops/Bolgeva2", "https://tec.openplanner.team/stops/Bolgfon2"], ["https://tec.openplanner.team/stops/Cbctile", "https://tec.openplanner.team/stops/H1bi101b"], ["https://tec.openplanner.team/stops/Bchamco2", "https://tec.openplanner.team/stops/Bwlhppg3"], ["https://tec.openplanner.team/stops/X790akc", "https://tec.openplanner.team/stops/X790ala"], ["https://tec.openplanner.team/stops/Brsgsan1", "https://tec.openplanner.team/stops/Brsgtou1"], ["https://tec.openplanner.team/stops/N232asa", "https://tec.openplanner.team/stops/N232bub"], ["https://tec.openplanner.team/stops/Barqbar1", "https://tec.openplanner.team/stops/Bmoncab2"], ["https://tec.openplanner.team/stops/Lanplat2", "https://tec.openplanner.team/stops/Lmobols1"], ["https://tec.openplanner.team/stops/LLVfour1", "https://tec.openplanner.team/stops/LTBeg--2"], ["https://tec.openplanner.team/stops/Ljeheur1", "https://tec.openplanner.team/stops/Ljeheur2"], ["https://tec.openplanner.team/stops/H1je211a", "https://tec.openplanner.team/stops/H1je369a"], ["https://tec.openplanner.team/stops/H4bh104a", "https://tec.openplanner.team/stops/H4jm117a"], ["https://tec.openplanner.team/stops/X955aeb", "https://tec.openplanner.team/stops/X955ahb"], ["https://tec.openplanner.team/stops/N150aea", "https://tec.openplanner.team/stops/N150afb"], ["https://tec.openplanner.team/stops/Cdahtvi1", "https://tec.openplanner.team/stops/Cdahtvi2"], ["https://tec.openplanner.team/stops/Bjodsme2", "https://tec.openplanner.team/stops/NR10acb"], ["https://tec.openplanner.team/stops/LeYmero1", "https://tec.openplanner.team/stops/LkTweih1"], ["https://tec.openplanner.team/stops/H2mm136a", "https://tec.openplanner.team/stops/H2mm136b"], ["https://tec.openplanner.team/stops/N505ama", "https://tec.openplanner.team/stops/N505amb"], ["https://tec.openplanner.team/stops/X768afb", "https://tec.openplanner.team/stops/X769aoa"], ["https://tec.openplanner.team/stops/Bgntffo2", "https://tec.openplanner.team/stops/Bgnttma1"], ["https://tec.openplanner.team/stops/LHMcruc1", "https://tec.openplanner.team/stops/LMNswar1"], ["https://tec.openplanner.team/stops/Cgoson12", "https://tec.openplanner.team/stops/Cjumade4"], ["https://tec.openplanner.team/stops/LNEbo472", "https://tec.openplanner.team/stops/LSNness2"], ["https://tec.openplanner.team/stops/Bjodcad2", "https://tec.openplanner.team/stops/Bjodrdp2"], ["https://tec.openplanner.team/stops/X790aia", "https://tec.openplanner.team/stops/X790aka"], ["https://tec.openplanner.team/stops/LNChock1", "https://tec.openplanner.team/stops/LNCvill2"], ["https://tec.openplanner.team/stops/X222adc", "https://tec.openplanner.team/stops/X919ana"], ["https://tec.openplanner.team/stops/X608ada", "https://tec.openplanner.team/stops/X608adb"], ["https://tec.openplanner.team/stops/H4ru240b", "https://tec.openplanner.team/stops/H4wc374b"], ["https://tec.openplanner.team/stops/Bosqcim1", "https://tec.openplanner.team/stops/Bosqcim2"], ["https://tec.openplanner.team/stops/H4bx108b", "https://tec.openplanner.team/stops/H4bx167b"], ["https://tec.openplanner.team/stops/X872adb", "https://tec.openplanner.team/stops/X890aea"], ["https://tec.openplanner.team/stops/LDmhave2", "https://tec.openplanner.team/stops/LSGeg--3"], ["https://tec.openplanner.team/stops/LLUlieg2", "https://tec.openplanner.team/stops/LTRryta2"], ["https://tec.openplanner.team/stops/H4mo191a", "https://tec.openplanner.team/stops/H4wa156a"], ["https://tec.openplanner.team/stops/N308bia", "https://tec.openplanner.team/stops/N308bjb"], ["https://tec.openplanner.team/stops/X575abb", "https://tec.openplanner.team/stops/X575aca"], ["https://tec.openplanner.team/stops/LLebrux1", "https://tec.openplanner.team/stops/X547ara"], ["https://tec.openplanner.team/stops/LSzsurl1", "https://tec.openplanner.team/stops/N506bta"], ["https://tec.openplanner.team/stops/X637aob", "https://tec.openplanner.team/stops/X638aoa"], ["https://tec.openplanner.team/stops/LVIgare2", "https://tec.openplanner.team/stops/LVIhala3"], ["https://tec.openplanner.team/stops/Barchez2", "https://tec.openplanner.team/stops/Barcsta2"], ["https://tec.openplanner.team/stops/LhOukat2", "https://tec.openplanner.team/stops/LhOzent2"], ["https://tec.openplanner.team/stops/H2tr254a", "https://tec.openplanner.team/stops/H2tr257b"], ["https://tec.openplanner.team/stops/LHUcamp2", "https://tec.openplanner.team/stops/LTimalv1"], ["https://tec.openplanner.team/stops/X685aga", "https://tec.openplanner.team/stops/X685ama"], ["https://tec.openplanner.team/stops/LaAlinz1", "https://tec.openplanner.team/stops/LkOaugu1"], ["https://tec.openplanner.team/stops/LVLgotr2", "https://tec.openplanner.team/stops/LVLruis2"], ["https://tec.openplanner.team/stops/Llgmaus2", "https://tec.openplanner.team/stops/Lsntvbi1"], ["https://tec.openplanner.team/stops/Llgancd1", "https://tec.openplanner.team/stops/LlgguilF"], ["https://tec.openplanner.team/stops/Bnivfle1", "https://tec.openplanner.team/stops/Bnivsto1"], ["https://tec.openplanner.team/stops/Ctilobb1", "https://tec.openplanner.team/stops/Ctisar1"], ["https://tec.openplanner.team/stops/X908ana", "https://tec.openplanner.team/stops/X908aoc"], ["https://tec.openplanner.team/stops/X757aib", "https://tec.openplanner.team/stops/X757akb"], ["https://tec.openplanner.team/stops/Crodebr2", "https://tec.openplanner.team/stops/Croegli1"], ["https://tec.openplanner.team/stops/X822agb", "https://tec.openplanner.team/stops/X822ahb"], ["https://tec.openplanner.team/stops/N553ahb", "https://tec.openplanner.team/stops/N553aob"], ["https://tec.openplanner.team/stops/X780afa", "https://tec.openplanner.team/stops/X780aia"], ["https://tec.openplanner.team/stops/N167abb", "https://tec.openplanner.team/stops/N244aqa"], ["https://tec.openplanner.team/stops/N525afb", "https://tec.openplanner.team/stops/N525aga"], ["https://tec.openplanner.team/stops/N501awa", "https://tec.openplanner.team/stops/N501awb"], ["https://tec.openplanner.team/stops/Bllnfeq1", "https://tec.openplanner.team/stops/Bottcva2"], ["https://tec.openplanner.team/stops/N229afb", "https://tec.openplanner.team/stops/N270adb"], ["https://tec.openplanner.team/stops/Bgzdn251", "https://tec.openplanner.team/stops/Bgzdsta2"], ["https://tec.openplanner.team/stops/LHHecol1", "https://tec.openplanner.team/stops/LHHgare2"], ["https://tec.openplanner.team/stops/N163aba", "https://tec.openplanner.team/stops/N165acb"], ["https://tec.openplanner.team/stops/Cmlcaya2", "https://tec.openplanner.team/stops/Cmlours1"], ["https://tec.openplanner.team/stops/Lsmdams2", "https://tec.openplanner.team/stops/Lsmgdry2"], ["https://tec.openplanner.team/stops/H2hp118a", "https://tec.openplanner.team/stops/H2hp125a"], ["https://tec.openplanner.team/stops/LHEclef2", "https://tec.openplanner.team/stops/LHEzoni2"], ["https://tec.openplanner.team/stops/X653aaa", "https://tec.openplanner.team/stops/X653afa"], ["https://tec.openplanner.team/stops/LkEsouf2", "https://tec.openplanner.team/stops/LkEspor1"], ["https://tec.openplanner.team/stops/Cobmven2", "https://tec.openplanner.team/stops/Cpcathe2"], ["https://tec.openplanner.team/stops/LNEgaul1", "https://tec.openplanner.team/stops/LNEvand1"], ["https://tec.openplanner.team/stops/X636afb", "https://tec.openplanner.team/stops/X636aga"], ["https://tec.openplanner.team/stops/LmAaldr2", "https://tec.openplanner.team/stops/LmAkirc1"], ["https://tec.openplanner.team/stops/X717ada", "https://tec.openplanner.team/stops/X717aha"], ["https://tec.openplanner.team/stops/X715aka", "https://tec.openplanner.team/stops/X715akb"], ["https://tec.openplanner.team/stops/LARparc1", "https://tec.openplanner.team/stops/LVIpneu1"], ["https://tec.openplanner.team/stops/N232apa", "https://tec.openplanner.team/stops/N232bpa"], ["https://tec.openplanner.team/stops/LCUjonc1", "https://tec.openplanner.team/stops/NL73aaa"], ["https://tec.openplanner.team/stops/Cldvign1", "https://tec.openplanner.team/stops/Clrcite2"], ["https://tec.openplanner.team/stops/Lseblan*", "https://tec.openplanner.team/stops/Lsedese2"], ["https://tec.openplanner.team/stops/X801apa", "https://tec.openplanner.team/stops/X801ckb"], ["https://tec.openplanner.team/stops/N513baa", "https://tec.openplanner.team/stops/N513bbc"], ["https://tec.openplanner.team/stops/LFHjamo1", "https://tec.openplanner.team/stops/LFHsucr1"], ["https://tec.openplanner.team/stops/Lstbarb2", "https://tec.openplanner.team/stops/Lstpoly2"], ["https://tec.openplanner.team/stops/Barcsta2", "https://tec.openplanner.team/stops/Bgzdpis1"], ["https://tec.openplanner.team/stops/Bblamp5", "https://tec.openplanner.team/stops/Bblamsp2"], ["https://tec.openplanner.team/stops/LCPbatt1", "https://tec.openplanner.team/stops/LMtcent1"], ["https://tec.openplanner.team/stops/LhZkape2", "https://tec.openplanner.team/stops/LlZkirc1"], ["https://tec.openplanner.team/stops/N521akb", "https://tec.openplanner.team/stops/N521aob"], ["https://tec.openplanner.team/stops/LAxbott1", "https://tec.openplanner.team/stops/LAxbott2"], ["https://tec.openplanner.team/stops/X659aoa", "https://tec.openplanner.team/stops/X659aqa"], ["https://tec.openplanner.team/stops/Cmmschw1", "https://tec.openplanner.team/stops/Cmymoha1"], ["https://tec.openplanner.team/stops/H1pe130b", "https://tec.openplanner.team/stops/H1pe132a"], ["https://tec.openplanner.team/stops/Louencl2", "https://tec.openplanner.team/stops/Loutrix2"], ["https://tec.openplanner.team/stops/H1le124b", "https://tec.openplanner.team/stops/H1le128a"], ["https://tec.openplanner.team/stops/N515aid", "https://tec.openplanner.team/stops/N515aob"], ["https://tec.openplanner.team/stops/X718aga", "https://tec.openplanner.team/stops/X718aha"], ["https://tec.openplanner.team/stops/Lantonn2", "https://tec.openplanner.team/stops/Lrccomm2"], ["https://tec.openplanner.team/stops/Bmarcha2", "https://tec.openplanner.team/stops/Bwagpco2"], ["https://tec.openplanner.team/stops/Clsghoy1", "https://tec.openplanner.team/stops/H1ls107b"], ["https://tec.openplanner.team/stops/H2mo145a", "https://tec.openplanner.team/stops/H2mo146b"], ["https://tec.openplanner.team/stops/X955aha", "https://tec.openplanner.team/stops/X955ahb"], ["https://tec.openplanner.team/stops/N538afa", "https://tec.openplanner.team/stops/N538avb"], ["https://tec.openplanner.team/stops/LsVbell2", "https://tec.openplanner.team/stops/LsVgend1"], ["https://tec.openplanner.team/stops/H5st162a", "https://tec.openplanner.team/stops/H5st162b"], ["https://tec.openplanner.team/stops/X750ata", "https://tec.openplanner.team/stops/X750bfb"], ["https://tec.openplanner.team/stops/Cbuegl1", "https://tec.openplanner.team/stops/Cbuplac4"], ["https://tec.openplanner.team/stops/Bglarha1", "https://tec.openplanner.team/stops/Cglfrom2"], ["https://tec.openplanner.team/stops/Lvemull2", "https://tec.openplanner.team/stops/Lvepala5"], ["https://tec.openplanner.team/stops/Lhrlalo3", "https://tec.openplanner.team/stops/Lhrmare3"], ["https://tec.openplanner.team/stops/Bndb4ch1", "https://tec.openplanner.team/stops/Bndbdra1"], ["https://tec.openplanner.team/stops/Btlbegl2", "https://tec.openplanner.team/stops/NB33aeb"], ["https://tec.openplanner.team/stops/H5pe141b", "https://tec.openplanner.team/stops/H5pe145a"], ["https://tec.openplanner.team/stops/H1je365a", "https://tec.openplanner.team/stops/H1je366b"], ["https://tec.openplanner.team/stops/N104aba", "https://tec.openplanner.team/stops/N104ada"], ["https://tec.openplanner.team/stops/N534atc", "https://tec.openplanner.team/stops/N534bga"], ["https://tec.openplanner.team/stops/H4ep126b", "https://tec.openplanner.team/stops/H4rm114a"], ["https://tec.openplanner.team/stops/NL76anb", "https://tec.openplanner.team/stops/NL76aob"], ["https://tec.openplanner.team/stops/Cbfgare2", "https://tec.openplanner.team/stops/Cbfpoti2"], ["https://tec.openplanner.team/stops/Borbtre1", "https://tec.openplanner.team/stops/Btstche2"], ["https://tec.openplanner.team/stops/H4hx113b", "https://tec.openplanner.team/stops/H4hx122b"], ["https://tec.openplanner.team/stops/LTreg--1", "https://tec.openplanner.team/stops/LTrmort1"], ["https://tec.openplanner.team/stops/H4ty275a", "https://tec.openplanner.team/stops/H4ty315a"], ["https://tec.openplanner.team/stops/Lkithie2", "https://tec.openplanner.team/stops/Llgstev1"], ["https://tec.openplanner.team/stops/Ladgath1", "https://tec.openplanner.team/stops/Ladverv2"], ["https://tec.openplanner.team/stops/Bgzdpos2", "https://tec.openplanner.team/stops/Bgzdsta1"], ["https://tec.openplanner.team/stops/LOesour2", "https://tec.openplanner.team/stops/LOewaut2"], ["https://tec.openplanner.team/stops/X359aaa", "https://tec.openplanner.team/stops/X359aad"], ["https://tec.openplanner.team/stops/Cgrchas2", "https://tec.openplanner.team/stops/Cgregli2"], ["https://tec.openplanner.team/stops/X653aca", "https://tec.openplanner.team/stops/X667aaa"], ["https://tec.openplanner.team/stops/Lrogene1", "https://tec.openplanner.team/stops/Lromc--2"], ["https://tec.openplanner.team/stops/H4ba101a", "https://tec.openplanner.team/stops/H4ba103b"], ["https://tec.openplanner.team/stops/N244aib", "https://tec.openplanner.team/stops/N245aab"], ["https://tec.openplanner.team/stops/X659aua", "https://tec.openplanner.team/stops/X741aib"], ["https://tec.openplanner.team/stops/X770agb", "https://tec.openplanner.team/stops/X771aha"], ["https://tec.openplanner.team/stops/X717afb", "https://tec.openplanner.team/stops/X717aja"], ["https://tec.openplanner.team/stops/LFebas-2", "https://tec.openplanner.team/stops/LTrmaro2"], ["https://tec.openplanner.team/stops/N349adb", "https://tec.openplanner.team/stops/N349aeb"], ["https://tec.openplanner.team/stops/X610aba", "https://tec.openplanner.team/stops/X610abb"], ["https://tec.openplanner.team/stops/LOdmonu2", "https://tec.openplanner.team/stops/LOdmonu4"], ["https://tec.openplanner.team/stops/X802ada", "https://tec.openplanner.team/stops/X802aea"], ["https://tec.openplanner.team/stops/Bneecha1", "https://tec.openplanner.team/stops/Bneecha2"], ["https://tec.openplanner.team/stops/N543aaa", "https://tec.openplanner.team/stops/N543aab"], ["https://tec.openplanner.team/stops/N141aab", "https://tec.openplanner.team/stops/N141aob"], ["https://tec.openplanner.team/stops/X663aab", "https://tec.openplanner.team/stops/X663aac"], ["https://tec.openplanner.team/stops/LBPunic1", "https://tec.openplanner.team/stops/LBPunic2"], ["https://tec.openplanner.team/stops/LFrfrai2", "https://tec.openplanner.team/stops/LTRryta2"], ["https://tec.openplanner.team/stops/LLrbecc2", "https://tec.openplanner.team/stops/LLrfont2"], ["https://tec.openplanner.team/stops/X769aib", "https://tec.openplanner.team/stops/X769aja"], ["https://tec.openplanner.team/stops/LbTschw2", "https://tec.openplanner.team/stops/LbTweyn1"], ["https://tec.openplanner.team/stops/Loumatt1", "https://tec.openplanner.team/stops/Lourose1"], ["https://tec.openplanner.team/stops/Lmndeso2", "https://tec.openplanner.team/stops/Lmneg--1"], ["https://tec.openplanner.team/stops/H2hp261b", "https://tec.openplanner.team/stops/H2lh126b"], ["https://tec.openplanner.team/stops/X618anb", "https://tec.openplanner.team/stops/X618aob"], ["https://tec.openplanner.team/stops/X801cia", "https://tec.openplanner.team/stops/X801cnb"], ["https://tec.openplanner.team/stops/N501dba", "https://tec.openplanner.team/stops/N501mxb"], ["https://tec.openplanner.team/stops/LTechpl2", "https://tec.openplanner.team/stops/LTNmont1"], ["https://tec.openplanner.team/stops/X903ada", "https://tec.openplanner.team/stops/X904abb"], ["https://tec.openplanner.team/stops/H5pe142b", "https://tec.openplanner.team/stops/H5pe176a"], ["https://tec.openplanner.team/stops/X224adb", "https://tec.openplanner.team/stops/X394aab"], ["https://tec.openplanner.team/stops/N360aaa", "https://tec.openplanner.team/stops/N360acc"], ["https://tec.openplanner.team/stops/LhP25--1", "https://tec.openplanner.team/stops/LhPheps1"], ["https://tec.openplanner.team/stops/X636ava", "https://tec.openplanner.team/stops/X636avb"], ["https://tec.openplanner.team/stops/Cmohame2", "https://tec.openplanner.team/stops/Cmychap4"], ["https://tec.openplanner.team/stops/LoUzent1", "https://tec.openplanner.team/stops/X688aaa"], ["https://tec.openplanner.team/stops/H1gh150b", "https://tec.openplanner.team/stops/H1je212a"], ["https://tec.openplanner.team/stops/H1si152b", "https://tec.openplanner.team/stops/H1si164a"], ["https://tec.openplanner.team/stops/LCtcref1", "https://tec.openplanner.team/stops/X789ahb"], ["https://tec.openplanner.team/stops/H1er106b", "https://tec.openplanner.team/stops/H1er108a"], ["https://tec.openplanner.team/stops/Btlbche2", "https://tec.openplanner.team/stops/Btlbtho1"], ["https://tec.openplanner.team/stops/X952aea", "https://tec.openplanner.team/stops/X952afa"], ["https://tec.openplanner.team/stops/H1by100a", "https://tec.openplanner.team/stops/H1by100c"], ["https://tec.openplanner.team/stops/Bwav4sa1", "https://tec.openplanner.team/stops/Bwavbwa2"], ["https://tec.openplanner.team/stops/H4eg101d", "https://tec.openplanner.team/stops/H4eg105b"], ["https://tec.openplanner.team/stops/Cfcmass1", "https://tec.openplanner.team/stops/Cfcrdpr2"], ["https://tec.openplanner.team/stops/N143abb", "https://tec.openplanner.team/stops/N143ada"], ["https://tec.openplanner.team/stops/Cjualed1", "https://tec.openplanner.team/stops/Cjufagn4"], ["https://tec.openplanner.team/stops/LFslign2", "https://tec.openplanner.team/stops/LSLabba2"], ["https://tec.openplanner.team/stops/Clrhava2", "https://tec.openplanner.team/stops/Clrwesp1"], ["https://tec.openplanner.team/stops/Ceregl1", "https://tec.openplanner.team/stops/Cvrhab22"], ["https://tec.openplanner.team/stops/Lvethea2", "https://tec.openplanner.team/stops/Lvexhav1"], ["https://tec.openplanner.team/stops/N348aab", "https://tec.openplanner.team/stops/N348abb"], ["https://tec.openplanner.team/stops/LHUgdpl2", "https://tec.openplanner.team/stops/LHUloui2"], ["https://tec.openplanner.team/stops/Llghec-1", "https://tec.openplanner.team/stops/Llghec-2"], ["https://tec.openplanner.team/stops/LLM4rou3", "https://tec.openplanner.team/stops/LLM4rou4"], ["https://tec.openplanner.team/stops/LROchap1", "https://tec.openplanner.team/stops/LROhael2"], ["https://tec.openplanner.team/stops/H5at114a", "https://tec.openplanner.team/stops/H5ma185b"], ["https://tec.openplanner.team/stops/Buccdef2", "https://tec.openplanner.team/stops/Buccvch1"], ["https://tec.openplanner.team/stops/Ljetomb1", "https://tec.openplanner.team/stops/Ljetomb2"], ["https://tec.openplanner.team/stops/N501dsa", "https://tec.openplanner.team/stops/N501jra"], ["https://tec.openplanner.team/stops/X858aea", "https://tec.openplanner.team/stops/X858aeb"], ["https://tec.openplanner.team/stops/Llgcham6", "https://tec.openplanner.team/stops/Llgm%C3%A9di2"], ["https://tec.openplanner.team/stops/LABbert1", "https://tec.openplanner.team/stops/LABbert2"], ["https://tec.openplanner.team/stops/N138aaa", "https://tec.openplanner.team/stops/N138aac"], ["https://tec.openplanner.team/stops/X982aba", "https://tec.openplanner.team/stops/X982aka"], ["https://tec.openplanner.team/stops/LSHhade2", "https://tec.openplanner.team/stops/LSOtheu2"], ["https://tec.openplanner.team/stops/H4gu106a", "https://tec.openplanner.team/stops/H4ta130b"], ["https://tec.openplanner.team/stops/X926aca", "https://tec.openplanner.team/stops/X926ada"], ["https://tec.openplanner.team/stops/LESmich1", "https://tec.openplanner.team/stops/LESpont2"], ["https://tec.openplanner.team/stops/Balsnay2", "https://tec.openplanner.team/stops/Balsnie2"], ["https://tec.openplanner.team/stops/H4hu113a", "https://tec.openplanner.team/stops/H4hu120b"], ["https://tec.openplanner.team/stops/Bbstbxl2", "https://tec.openplanner.team/stops/Cwsegli1"], ["https://tec.openplanner.team/stops/X773aba", "https://tec.openplanner.team/stops/X773ada"], ["https://tec.openplanner.team/stops/H2go117a", "https://tec.openplanner.team/stops/H2go117b"], ["https://tec.openplanner.team/stops/X652acc", "https://tec.openplanner.team/stops/X652aea"], ["https://tec.openplanner.team/stops/Bnivbng1", "https://tec.openplanner.team/stops/Bobacar3"], ["https://tec.openplanner.team/stops/X595aea", "https://tec.openplanner.team/stops/X595aeb"], ["https://tec.openplanner.team/stops/X823aca", "https://tec.openplanner.team/stops/X823aea"], ["https://tec.openplanner.team/stops/H5el100a", "https://tec.openplanner.team/stops/H5el101b"], ["https://tec.openplanner.team/stops/LSdsa451", "https://tec.openplanner.team/stops/LSdsa8a2"], ["https://tec.openplanner.team/stops/X640ada", "https://tec.openplanner.team/stops/X673ada"], ["https://tec.openplanner.team/stops/X939aea", "https://tec.openplanner.team/stops/X939afb"], ["https://tec.openplanner.team/stops/Cbufron2", "https://tec.openplanner.team/stops/Cerrver4"], ["https://tec.openplanner.team/stops/Lgdegli1", "https://tec.openplanner.team/stops/Lgdmaye1"], ["https://tec.openplanner.team/stops/H4vx361b", "https://tec.openplanner.team/stops/H4vx365b"], ["https://tec.openplanner.team/stops/Broneco1", "https://tec.openplanner.team/stops/Bronfou2"], ["https://tec.openplanner.team/stops/LFothie1", "https://tec.openplanner.team/stops/LJAgoff1"], ["https://tec.openplanner.team/stops/H4ar102b", "https://tec.openplanner.team/stops/H4pl120a"], ["https://tec.openplanner.team/stops/Bsaubra1", "https://tec.openplanner.team/stops/Bsaucre2"], ["https://tec.openplanner.team/stops/H2pe154b", "https://tec.openplanner.team/stops/H2pe160b"], ["https://tec.openplanner.team/stops/N549aba", "https://tec.openplanner.team/stops/N549abb"], ["https://tec.openplanner.team/stops/Bhalgar1", "https://tec.openplanner.team/stops/Bhalsro2"], ["https://tec.openplanner.team/stops/LWEchat1", "https://tec.openplanner.team/stops/LWEcite2"], ["https://tec.openplanner.team/stops/Bhalark2", "https://tec.openplanner.team/stops/Bhalath1"], ["https://tec.openplanner.team/stops/H1gi120b", "https://tec.openplanner.team/stops/H1gi120c"], ["https://tec.openplanner.team/stops/LmNelis2", "https://tec.openplanner.team/stops/LmNkess2"], ["https://tec.openplanner.team/stops/H1tl119b", "https://tec.openplanner.team/stops/H1tl122a"], ["https://tec.openplanner.team/stops/X763aab", "https://tec.openplanner.team/stops/X763aba"], ["https://tec.openplanner.team/stops/X790aba", "https://tec.openplanner.team/stops/X790abb"], ["https://tec.openplanner.team/stops/H4wt159a", "https://tec.openplanner.team/stops/H4wt160a"], ["https://tec.openplanner.team/stops/Cmlours2", "https://tec.openplanner.team/stops/Cmlpomm2"], ["https://tec.openplanner.team/stops/X626aaa", "https://tec.openplanner.team/stops/X626ala"], ["https://tec.openplanner.team/stops/Llgcour1", "https://tec.openplanner.team/stops/Llgcour2"], ["https://tec.openplanner.team/stops/LVEmohi2", "https://tec.openplanner.team/stops/LVEtomb1"], ["https://tec.openplanner.team/stops/H4ag107a", "https://tec.openplanner.team/stops/H4pe128a"], ["https://tec.openplanner.team/stops/X901bsa", "https://tec.openplanner.team/stops/X901bsb"], ["https://tec.openplanner.team/stops/Bjodath2", "https://tec.openplanner.team/stops/Bjodcad1"], ["https://tec.openplanner.team/stops/LeLsied2", "https://tec.openplanner.team/stops/LwYsour4"], ["https://tec.openplanner.team/stops/Lpeatel2", "https://tec.openplanner.team/stops/Lpeprev2"], ["https://tec.openplanner.team/stops/LFRhock2", "https://tec.openplanner.team/stops/LFRhock3"], ["https://tec.openplanner.team/stops/Bhengri1", "https://tec.openplanner.team/stops/Bhenhau1"], ["https://tec.openplanner.team/stops/N310aaa", "https://tec.openplanner.team/stops/N310aba"], ["https://tec.openplanner.team/stops/LATdieu1", "https://tec.openplanner.team/stops/LATmonu1"], ["https://tec.openplanner.team/stops/Canlalu2", "https://tec.openplanner.team/stops/Canpeup2"], ["https://tec.openplanner.team/stops/LVleg--5", "https://tec.openplanner.team/stops/LVlroua4"], ["https://tec.openplanner.team/stops/Beclbar2", "https://tec.openplanner.team/stops/H2me114b"], ["https://tec.openplanner.team/stops/LrAneus2", "https://tec.openplanner.team/stops/LrAneus3"], ["https://tec.openplanner.team/stops/N225aab", "https://tec.openplanner.team/stops/N225aea"], ["https://tec.openplanner.team/stops/N522abb", "https://tec.openplanner.team/stops/N522abc"], ["https://tec.openplanner.team/stops/Cfnsenz1", "https://tec.openplanner.team/stops/N162aea"], ["https://tec.openplanner.team/stops/Cstdona2", "https://tec.openplanner.team/stops/Cstdona6"], ["https://tec.openplanner.team/stops/N554acb", "https://tec.openplanner.team/stops/N554afb"], ["https://tec.openplanner.team/stops/H4do101a", "https://tec.openplanner.team/stops/H4do107a"], ["https://tec.openplanner.team/stops/LWEhosp1", "https://tec.openplanner.team/stops/LWEhosp2"], ["https://tec.openplanner.team/stops/N509aia", "https://tec.openplanner.team/stops/N509aja"], ["https://tec.openplanner.team/stops/Cstcent2", "https://tec.openplanner.team/stops/Cstgare2"], ["https://tec.openplanner.team/stops/H4er121a", "https://tec.openplanner.team/stops/H4ty331a"], ["https://tec.openplanner.team/stops/X605aab", "https://tec.openplanner.team/stops/X605abb"], ["https://tec.openplanner.team/stops/H1je216b", "https://tec.openplanner.team/stops/H1je225a"], ["https://tec.openplanner.team/stops/X922aca", "https://tec.openplanner.team/stops/X922adb"], ["https://tec.openplanner.team/stops/Bnodeco2", "https://tec.openplanner.team/stops/Bnodtir4"], ["https://tec.openplanner.team/stops/Bbxlmid4", "https://tec.openplanner.team/stops/H4ae102b"], ["https://tec.openplanner.team/stops/H5wo128b", "https://tec.openplanner.team/stops/H5wo130a"], ["https://tec.openplanner.team/stops/X869aaa", "https://tec.openplanner.team/stops/X869acb"], ["https://tec.openplanner.team/stops/Cmlbevu1", "https://tec.openplanner.team/stops/Cmlbrac2"], ["https://tec.openplanner.team/stops/H4fl115a", "https://tec.openplanner.team/stops/H4lp124b"], ["https://tec.openplanner.team/stops/H1sa112b", "https://tec.openplanner.team/stops/H1sa113a"], ["https://tec.openplanner.team/stops/X758aja", "https://tec.openplanner.team/stops/X758ajb"], ["https://tec.openplanner.team/stops/LCSmagn1", "https://tec.openplanner.team/stops/LEHpech1"], ["https://tec.openplanner.team/stops/LwMzoll2", "https://tec.openplanner.team/stops/X764afb"], ["https://tec.openplanner.team/stops/X743agb", "https://tec.openplanner.team/stops/X749aea"], ["https://tec.openplanner.team/stops/Bwanorp1", "https://tec.openplanner.team/stops/Bwanwar1"], ["https://tec.openplanner.team/stops/LFebas-1", "https://tec.openplanner.team/stops/LRIcent2"], ["https://tec.openplanner.team/stops/N340aha", "https://tec.openplanner.team/stops/N340aia"], ["https://tec.openplanner.team/stops/Lhelait1", "https://tec.openplanner.team/stops/LHSlava2"], ["https://tec.openplanner.team/stops/X595abb", "https://tec.openplanner.team/stops/X595acb"], ["https://tec.openplanner.team/stops/LBEchan2", "https://tec.openplanner.team/stops/LBEtroo2"], ["https://tec.openplanner.team/stops/Csepost1", "https://tec.openplanner.team/stops/Cvtvail1"], ["https://tec.openplanner.team/stops/H1je212a", "https://tec.openplanner.team/stops/H1ms930a"], ["https://tec.openplanner.team/stops/N542aeb", "https://tec.openplanner.team/stops/N542aja"], ["https://tec.openplanner.team/stops/H1ry135a", "https://tec.openplanner.team/stops/H1ry135b"], ["https://tec.openplanner.team/stops/Lgrdefr2", "https://tec.openplanner.team/stops/Lgrdefr4"], ["https://tec.openplanner.team/stops/Cfmtrie1", "https://tec.openplanner.team/stops/Cfomays1"], ["https://tec.openplanner.team/stops/LSpxhig1", "https://tec.openplanner.team/stops/LSpxhig2"], ["https://tec.openplanner.team/stops/X595aab", "https://tec.openplanner.team/stops/X595aib"], ["https://tec.openplanner.team/stops/Llgmara1", "https://tec.openplanner.team/stops/Llgrema2"], ["https://tec.openplanner.team/stops/Llgoutr1", "https://tec.openplanner.team/stops/Llgsime1"], ["https://tec.openplanner.team/stops/X818ata", "https://tec.openplanner.team/stops/X818atb"], ["https://tec.openplanner.team/stops/Bgnvgir2", "https://tec.openplanner.team/stops/Bohncha1"], ["https://tec.openplanner.team/stops/Ccybouc3", "https://tec.openplanner.team/stops/Ccyfroi2"], ["https://tec.openplanner.team/stops/H4mv191a", "https://tec.openplanner.team/stops/H4oe149b"], ["https://tec.openplanner.team/stops/X636aqa", "https://tec.openplanner.team/stops/X636aqd"], ["https://tec.openplanner.team/stops/Bbldmun1", "https://tec.openplanner.team/stops/Bhaawdr1"], ["https://tec.openplanner.team/stops/Cci4bra1", "https://tec.openplanner.team/stops/Cci4bra4"], ["https://tec.openplanner.team/stops/N565aba", "https://tec.openplanner.team/stops/N565afa"], ["https://tec.openplanner.team/stops/LGMforg1", "https://tec.openplanner.team/stops/LGMvoue1"], ["https://tec.openplanner.team/stops/H1do126a", "https://tec.openplanner.team/stops/H1pd141a"], ["https://tec.openplanner.team/stops/Lhubouq1", "https://tec.openplanner.team/stops/Lhulibe1"], ["https://tec.openplanner.team/stops/H1do111b", "https://tec.openplanner.team/stops/H1wi147a"], ["https://tec.openplanner.team/stops/Ctrecol1", "https://tec.openplanner.team/stops/Ctrecol3"], ["https://tec.openplanner.team/stops/N529ajb", "https://tec.openplanner.team/stops/N584aqb"], ["https://tec.openplanner.team/stops/X725ava", "https://tec.openplanner.team/stops/X725bba"], ["https://tec.openplanner.team/stops/N564aaa", "https://tec.openplanner.team/stops/N564adb"], ["https://tec.openplanner.team/stops/X547acb", "https://tec.openplanner.team/stops/X561aba"], ["https://tec.openplanner.team/stops/Cgygazo1", "https://tec.openplanner.team/stops/Cgylouv1"], ["https://tec.openplanner.team/stops/N501cya", "https://tec.openplanner.team/stops/N501cza"], ["https://tec.openplanner.team/stops/X806acb", "https://tec.openplanner.team/stops/X872aab"], ["https://tec.openplanner.team/stops/N558adb", "https://tec.openplanner.team/stops/N558afb"], ["https://tec.openplanner.team/stops/LJSforg1", "https://tec.openplanner.team/stops/Lpetenn1"], ["https://tec.openplanner.team/stops/N516aaa", "https://tec.openplanner.team/stops/N516aqb"], ["https://tec.openplanner.team/stops/H2ca106a", "https://tec.openplanner.team/stops/H2ca111a"], ["https://tec.openplanner.team/stops/X757aha", "https://tec.openplanner.team/stops/X757amb"], ["https://tec.openplanner.team/stops/H1og136a", "https://tec.openplanner.team/stops/H5wo124a"], ["https://tec.openplanner.team/stops/Lhrhome1", "https://tec.openplanner.team/stops/Lhrhome2"], ["https://tec.openplanner.team/stops/N543bka", "https://tec.openplanner.team/stops/N543bkb"], ["https://tec.openplanner.team/stops/X601bzb", "https://tec.openplanner.team/stops/X601daa"], ["https://tec.openplanner.team/stops/LSOboeu2", "https://tec.openplanner.team/stops/LXHadam2"], ["https://tec.openplanner.team/stops/N218aab", "https://tec.openplanner.team/stops/N218afb"], ["https://tec.openplanner.team/stops/Bjodath3", "https://tec.openplanner.team/stops/NR10aba"], ["https://tec.openplanner.team/stops/Cfldand2", "https://tec.openplanner.team/stops/Cflfaub2"], ["https://tec.openplanner.team/stops/N513bia", "https://tec.openplanner.team/stops/N513bib"], ["https://tec.openplanner.team/stops/X983aba", "https://tec.openplanner.team/stops/X983agb"], ["https://tec.openplanner.team/stops/X633aea", "https://tec.openplanner.team/stops/X633agc"], ["https://tec.openplanner.team/stops/X770aeb", "https://tec.openplanner.team/stops/X774adc"], ["https://tec.openplanner.team/stops/LSebott1", "https://tec.openplanner.team/stops/LSebott2"], ["https://tec.openplanner.team/stops/Blig4br2", "https://tec.openplanner.team/stops/N584bqa"], ["https://tec.openplanner.team/stops/LBPboir1", "https://tec.openplanner.team/stops/LRGile-1"], ["https://tec.openplanner.team/stops/Bgrmver1", "https://tec.openplanner.team/stops/N522aka"], ["https://tec.openplanner.team/stops/N232aca", "https://tec.openplanner.team/stops/N232aga"], ["https://tec.openplanner.team/stops/Lalmitt1", "https://tec.openplanner.team/stops/LAWhein3"], ["https://tec.openplanner.team/stops/Cmqchap1", "https://tec.openplanner.team/stops/Cmqchap2"], ["https://tec.openplanner.team/stops/N505aaa", "https://tec.openplanner.team/stops/N505ana"], ["https://tec.openplanner.team/stops/X901bbb", "https://tec.openplanner.team/stops/X922aka"], ["https://tec.openplanner.team/stops/H1gi123b", "https://tec.openplanner.team/stops/H1mx122a"], ["https://tec.openplanner.team/stops/X637aqb", "https://tec.openplanner.team/stops/X649aca"], ["https://tec.openplanner.team/stops/LClflor1", "https://tec.openplanner.team/stops/LClflor2"], ["https://tec.openplanner.team/stops/H4lz122a", "https://tec.openplanner.team/stops/H4lz122b"], ["https://tec.openplanner.team/stops/Brsgsan1", "https://tec.openplanner.team/stops/Buccvbe1"], ["https://tec.openplanner.team/stops/X648aaa", "https://tec.openplanner.team/stops/X648aba"], ["https://tec.openplanner.team/stops/Cthgrat1", "https://tec.openplanner.team/stops/Cthgrat2"], ["https://tec.openplanner.team/stops/N538ahb", "https://tec.openplanner.team/stops/N538ajb"], ["https://tec.openplanner.team/stops/X619ajb", "https://tec.openplanner.team/stops/X620aca"], ["https://tec.openplanner.team/stops/N501arc", "https://tec.openplanner.team/stops/N501azb"], ["https://tec.openplanner.team/stops/N135ajb", "https://tec.openplanner.team/stops/N135ala"], ["https://tec.openplanner.team/stops/LRObruy1", "https://tec.openplanner.team/stops/LRObruy2"], ["https://tec.openplanner.team/stops/X886aaa", "https://tec.openplanner.team/stops/X889ada"], ["https://tec.openplanner.team/stops/Lchec--2", "https://tec.openplanner.team/stops/Lvitomb1"], ["https://tec.openplanner.team/stops/X807aaa", "https://tec.openplanner.team/stops/X807ada"], ["https://tec.openplanner.team/stops/X739aga", "https://tec.openplanner.team/stops/X739alb"], ["https://tec.openplanner.team/stops/Cclrgiv1", "https://tec.openplanner.team/stops/Cclrgiv2"], ["https://tec.openplanner.team/stops/N539bca", "https://tec.openplanner.team/stops/N540arb"], ["https://tec.openplanner.team/stops/LiV19--1", "https://tec.openplanner.team/stops/LONcroi2"], ["https://tec.openplanner.team/stops/X766aaa", "https://tec.openplanner.team/stops/X768ajb"], ["https://tec.openplanner.team/stops/Cgrgrce1", "https://tec.openplanner.team/stops/Cgrgrce2"], ["https://tec.openplanner.team/stops/LaR1G--1", "https://tec.openplanner.team/stops/LaR1G--2"], ["https://tec.openplanner.team/stops/Blangar1", "https://tec.openplanner.team/stops/Blankal3"], ["https://tec.openplanner.team/stops/LELchap1", "https://tec.openplanner.team/stops/LELchap2"], ["https://tec.openplanner.team/stops/N519abb", "https://tec.openplanner.team/stops/N519asd"], ["https://tec.openplanner.team/stops/LTibarb2", "https://tec.openplanner.team/stops/LTiflor1"], ["https://tec.openplanner.team/stops/N501iaa", "https://tec.openplanner.team/stops/N501iab"], ["https://tec.openplanner.team/stops/H4be105a", "https://tec.openplanner.team/stops/H4be112b"], ["https://tec.openplanner.team/stops/LiV19--1", "https://tec.openplanner.team/stops/LiV19--2"], ["https://tec.openplanner.team/stops/LWargeu1", "https://tec.openplanner.team/stops/LWargeu2"], ["https://tec.openplanner.team/stops/LbOre3b1", "https://tec.openplanner.team/stops/LbOre3b2"], ["https://tec.openplanner.team/stops/Ljewale4", "https://tec.openplanner.team/stops/Ljexhav1"], ["https://tec.openplanner.team/stops/N513adb", "https://tec.openplanner.team/stops/N513apb"], ["https://tec.openplanner.team/stops/N351anb", "https://tec.openplanner.team/stops/N351avb"], ["https://tec.openplanner.team/stops/Bbst4br3", "https://tec.openplanner.team/stops/Bbstpon2"], ["https://tec.openplanner.team/stops/N545aba", "https://tec.openplanner.team/stops/N553ana"], ["https://tec.openplanner.team/stops/X753aaa", "https://tec.openplanner.team/stops/X945adb"], ["https://tec.openplanner.team/stops/N214aaa", "https://tec.openplanner.team/stops/N236abb"], ["https://tec.openplanner.team/stops/X801bwa", "https://tec.openplanner.team/stops/X801bxb"], ["https://tec.openplanner.team/stops/Clrcite2", "https://tec.openplanner.team/stops/CMleer1"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Llonaes2"], ["https://tec.openplanner.team/stops/Ljemont1", "https://tec.openplanner.team/stops/Ljexhav1"], ["https://tec.openplanner.team/stops/LLbbons1", "https://tec.openplanner.team/stops/LLbbons2"], ["https://tec.openplanner.team/stops/LLUtill3", "https://tec.openplanner.team/stops/LLUtill4"], ["https://tec.openplanner.team/stops/X673aba", "https://tec.openplanner.team/stops/X820aga"], ["https://tec.openplanner.team/stops/N308anb", "https://tec.openplanner.team/stops/N308aob"], ["https://tec.openplanner.team/stops/Bsamlon1", "https://tec.openplanner.team/stops/Bwagdeb2"], ["https://tec.openplanner.team/stops/X695aba", "https://tec.openplanner.team/stops/X695aia"], ["https://tec.openplanner.team/stops/X637aaa", "https://tec.openplanner.team/stops/X637aab"], ["https://tec.openplanner.team/stops/N131aha", "https://tec.openplanner.team/stops/N423agb"], ["https://tec.openplanner.team/stops/H1po135a", "https://tec.openplanner.team/stops/H1po154a"], ["https://tec.openplanner.team/stops/Cgzbouh1", "https://tec.openplanner.team/stops/Cgzrust1"], ["https://tec.openplanner.team/stops/X880ada", "https://tec.openplanner.team/stops/X880adb"], ["https://tec.openplanner.team/stops/X661aga", "https://tec.openplanner.team/stops/X661ayc"], ["https://tec.openplanner.team/stops/H4au144a", "https://tec.openplanner.team/stops/H4og211a"], ["https://tec.openplanner.team/stops/Cgonvro1", "https://tec.openplanner.team/stops/Cmehame2"], ["https://tec.openplanner.team/stops/Ccusole2", "https://tec.openplanner.team/stops/Cgysole2"], ["https://tec.openplanner.team/stops/H4fr139b", "https://tec.openplanner.team/stops/H4fr146a"], ["https://tec.openplanner.team/stops/N321aca", "https://tec.openplanner.team/stops/N321ada"], ["https://tec.openplanner.team/stops/Bcrbmsg1", "https://tec.openplanner.team/stops/Bcrbtho1"], ["https://tec.openplanner.team/stops/Bpernov1", "https://tec.openplanner.team/stops/Bperrcr1"], ["https://tec.openplanner.team/stops/N151aba", "https://tec.openplanner.team/stops/N151aha"], ["https://tec.openplanner.team/stops/N501ata", "https://tec.openplanner.team/stops/N501hpb"], ["https://tec.openplanner.team/stops/N536aea", "https://tec.openplanner.team/stops/N580aaa"], ["https://tec.openplanner.team/stops/N124aca", "https://tec.openplanner.team/stops/N124acb"], ["https://tec.openplanner.team/stops/Cmaleri2", "https://tec.openplanner.team/stops/Cmazsnc2"], ["https://tec.openplanner.team/stops/N501haa", "https://tec.openplanner.team/stops/N501hab"], ["https://tec.openplanner.team/stops/X660ada", "https://tec.openplanner.team/stops/X660aea"], ["https://tec.openplanner.team/stops/Bhengri1", "https://tec.openplanner.team/stops/Bvircsj1"], ["https://tec.openplanner.team/stops/N351alb", "https://tec.openplanner.team/stops/N351ara"], ["https://tec.openplanner.team/stops/Cgpchgo2", "https://tec.openplanner.team/stops/H2tz115b"], ["https://tec.openplanner.team/stops/LSCeg--3", "https://tec.openplanner.team/stops/LSCeg--4"], ["https://tec.openplanner.team/stops/X937aeb", "https://tec.openplanner.team/stops/X937afa"], ["https://tec.openplanner.team/stops/N201aga", "https://tec.openplanner.team/stops/N201agb"], ["https://tec.openplanner.team/stops/X786ahb", "https://tec.openplanner.team/stops/X789agb"], ["https://tec.openplanner.team/stops/Baegm501", "https://tec.openplanner.team/stops/Bramrdf2"], ["https://tec.openplanner.team/stops/Clvimtr3", "https://tec.openplanner.team/stops/Clvmesa2"], ["https://tec.openplanner.team/stops/X640asb", "https://tec.openplanner.team/stops/X643aba"], ["https://tec.openplanner.team/stops/Csabrun1", "https://tec.openplanner.team/stops/Cvpsncb1"], ["https://tec.openplanner.team/stops/Bborppa1", "https://tec.openplanner.team/stops/Bitrhou1"], ["https://tec.openplanner.team/stops/LBgnach2", "https://tec.openplanner.team/stops/LGmhedo2"], ["https://tec.openplanner.team/stops/H1hn365b", "https://tec.openplanner.team/stops/H1ms940b"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LLMfond2"], ["https://tec.openplanner.team/stops/N501hna", "https://tec.openplanner.team/stops/N501ima"], ["https://tec.openplanner.team/stops/Bneecha1", "https://tec.openplanner.team/stops/Bneeegl2"], ["https://tec.openplanner.team/stops/Lanlona2", "https://tec.openplanner.team/stops/Lantonn1"], ["https://tec.openplanner.team/stops/X614aha", "https://tec.openplanner.team/stops/X614axa"], ["https://tec.openplanner.team/stops/Cacgare2", "https://tec.openplanner.team/stops/NC24aea"], ["https://tec.openplanner.team/stops/Cfrcham2", "https://tec.openplanner.team/stops/Cmecime2"], ["https://tec.openplanner.team/stops/LsVlust1", "https://tec.openplanner.team/stops/LsVlust2"], ["https://tec.openplanner.team/stops/N535acb", "https://tec.openplanner.team/stops/N535asb"], ["https://tec.openplanner.team/stops/H1ls109a", "https://tec.openplanner.team/stops/H1ls109b"], ["https://tec.openplanner.team/stops/H4ty305a", "https://tec.openplanner.team/stops/H4ty416a"], ["https://tec.openplanner.team/stops/H1gr111b", "https://tec.openplanner.team/stops/H1mk111a"], ["https://tec.openplanner.team/stops/LCFchir1", "https://tec.openplanner.team/stops/LFIeg--2"], ["https://tec.openplanner.team/stops/X639aua", "https://tec.openplanner.team/stops/X639aub"], ["https://tec.openplanner.team/stops/X747aca", "https://tec.openplanner.team/stops/X747acb"], ["https://tec.openplanner.team/stops/Cmmserv2", "https://tec.openplanner.team/stops/Cmmserv3"], ["https://tec.openplanner.team/stops/Cfaysle1", "https://tec.openplanner.team/stops/Cfaysle2"], ["https://tec.openplanner.team/stops/Bhencha1", "https://tec.openplanner.team/stops/Bhenhau2"], ["https://tec.openplanner.team/stops/Lstchu-*", "https://tec.openplanner.team/stops/Lstchu-3"], ["https://tec.openplanner.team/stops/X823adb", "https://tec.openplanner.team/stops/X823aff"], ["https://tec.openplanner.team/stops/N125aca", "https://tec.openplanner.team/stops/N149ahc"], ["https://tec.openplanner.team/stops/N312aab", "https://tec.openplanner.team/stops/X892agb"], ["https://tec.openplanner.team/stops/LATphar1", "https://tec.openplanner.team/stops/LATphar2"], ["https://tec.openplanner.team/stops/Ljecocc1", "https://tec.openplanner.team/stops/Ljecocc2"], ["https://tec.openplanner.team/stops/LoUhein2", "https://tec.openplanner.team/stops/LoUpete1"], ["https://tec.openplanner.team/stops/X994aba", "https://tec.openplanner.team/stops/X994agb"], ["https://tec.openplanner.team/stops/LHtdros2", "https://tec.openplanner.team/stops/LtEnatu2"], ["https://tec.openplanner.team/stops/LSCeg--1", "https://tec.openplanner.team/stops/LSCeg--2"], ["https://tec.openplanner.team/stops/LAWjaur1", "https://tec.openplanner.team/stops/LAWmc--1"], ["https://tec.openplanner.team/stops/LFychpl2", "https://tec.openplanner.team/stops/LFymare3"], ["https://tec.openplanner.team/stops/Lseaite1", "https://tec.openplanner.team/stops/Lsebico1"], ["https://tec.openplanner.team/stops/N551ahb", "https://tec.openplanner.team/stops/N551arc"], ["https://tec.openplanner.team/stops/Lfhchaf*", "https://tec.openplanner.team/stops/Lfhtrxc1"], ["https://tec.openplanner.team/stops/N103afa", "https://tec.openplanner.team/stops/N103aga"], ["https://tec.openplanner.team/stops/N874aba", "https://tec.openplanner.team/stops/N874aka"], ["https://tec.openplanner.team/stops/LBEcomm1", "https://tec.openplanner.team/stops/LBEnina6"], ["https://tec.openplanner.team/stops/X899aaa", "https://tec.openplanner.team/stops/X899aab"], ["https://tec.openplanner.team/stops/Ccheden2", "https://tec.openplanner.team/stops/Cchfran2"], ["https://tec.openplanner.team/stops/LRChote1", "https://tec.openplanner.team/stops/LRChote2"], ["https://tec.openplanner.team/stops/X597aab", "https://tec.openplanner.team/stops/X796aib"], ["https://tec.openplanner.team/stops/Lflsana1", "https://tec.openplanner.team/stops/Lmabott2"], ["https://tec.openplanner.team/stops/Cchsud18", "https://tec.openplanner.team/stops/Cchtram2"], ["https://tec.openplanner.team/stops/H4bo116b", "https://tec.openplanner.team/stops/H4bo178b"], ["https://tec.openplanner.team/stops/N515aob", "https://tec.openplanner.team/stops/NR27aaa"], ["https://tec.openplanner.team/stops/LWalyce1", "https://tec.openplanner.team/stops/LWarema2"], ["https://tec.openplanner.team/stops/H4hu115b", "https://tec.openplanner.team/stops/H4ld124b"], ["https://tec.openplanner.team/stops/N118anb", "https://tec.openplanner.team/stops/N118anc"], ["https://tec.openplanner.team/stops/Bblamp5", "https://tec.openplanner.team/stops/Bwatcli2"], ["https://tec.openplanner.team/stops/LLrscie1", "https://tec.openplanner.team/stops/LTHturo4"], ["https://tec.openplanner.team/stops/LCleg--1", "https://tec.openplanner.team/stops/LClflor1"], ["https://tec.openplanner.team/stops/Beclpma2", "https://tec.openplanner.team/stops/H2me115a"], ["https://tec.openplanner.team/stops/Ccoacie2", "https://tec.openplanner.team/stops/Ccoconf2"], ["https://tec.openplanner.team/stops/H4ir162a", "https://tec.openplanner.team/stops/H4ir166a"], ["https://tec.openplanner.team/stops/LPLc65-1", "https://tec.openplanner.team/stops/Lsearbo1"], ["https://tec.openplanner.team/stops/H2hp116a", "https://tec.openplanner.team/stops/H2hp125b"], ["https://tec.openplanner.team/stops/Lbocime1", "https://tec.openplanner.team/stops/Lboeg--1"], ["https://tec.openplanner.team/stops/Ccotrie1", "https://tec.openplanner.team/stops/Ccotrie4"], ["https://tec.openplanner.team/stops/Brixga13", "https://tec.openplanner.team/stops/Brixpla2"], ["https://tec.openplanner.team/stops/X824acb", "https://tec.openplanner.team/stops/X824aja"], ["https://tec.openplanner.team/stops/Cmmbmad1", "https://tec.openplanner.team/stops/Cmmmarb2"], ["https://tec.openplanner.team/stops/LbTkreu3", "https://tec.openplanner.team/stops/LbTkreu4"], ["https://tec.openplanner.team/stops/H1ro138a", "https://tec.openplanner.team/stops/H1ro141a"], ["https://tec.openplanner.team/stops/Lmoboeu2", "https://tec.openplanner.team/stops/Lmoknae3"], ["https://tec.openplanner.team/stops/H4ty309a", "https://tec.openplanner.team/stops/H4ty338b"], ["https://tec.openplanner.team/stops/N506aga", "https://tec.openplanner.team/stops/N506aha"], ["https://tec.openplanner.team/stops/N102aaa", "https://tec.openplanner.team/stops/N102aba"], ["https://tec.openplanner.team/stops/N106aab", "https://tec.openplanner.team/stops/N155aab"], ["https://tec.openplanner.team/stops/N209aic", "https://tec.openplanner.team/stops/N209ajb"], ["https://tec.openplanner.team/stops/Lagjard1", "https://tec.openplanner.team/stops/Lagtenn1"], ["https://tec.openplanner.team/stops/X822afa", "https://tec.openplanner.team/stops/X822aka"], ["https://tec.openplanner.team/stops/N151abb", "https://tec.openplanner.team/stops/N152aaa"], ["https://tec.openplanner.team/stops/Cfccabi1", "https://tec.openplanner.team/stops/Cfccol2"], ["https://tec.openplanner.team/stops/LOUchen1", "https://tec.openplanner.team/stops/LOUherm1"], ["https://tec.openplanner.team/stops/N207aba", "https://tec.openplanner.team/stops/N207aca"], ["https://tec.openplanner.team/stops/X620afa", "https://tec.openplanner.team/stops/X620afb"], ["https://tec.openplanner.team/stops/N501lpa", "https://tec.openplanner.team/stops/N501lrb"], ["https://tec.openplanner.team/stops/Bclgavi1", "https://tec.openplanner.team/stops/Bclglbu1"], ["https://tec.openplanner.team/stops/H1ob339b", "https://tec.openplanner.team/stops/H1sd344b"], ["https://tec.openplanner.team/stops/X261aba", "https://tec.openplanner.team/stops/X261abb"], ["https://tec.openplanner.team/stops/N501mvc", "https://tec.openplanner.team/stops/N501mvd"], ["https://tec.openplanner.team/stops/Bllngar6", "https://tec.openplanner.team/stops/Bllngar7"], ["https://tec.openplanner.team/stops/X948aha", "https://tec.openplanner.team/stops/X948asb"], ["https://tec.openplanner.team/stops/H1sg147a", "https://tec.openplanner.team/stops/H1sg148b"], ["https://tec.openplanner.team/stops/X639ala", "https://tec.openplanner.team/stops/X639ata"], ["https://tec.openplanner.team/stops/H1pa109a", "https://tec.openplanner.team/stops/H1pa110a"], ["https://tec.openplanner.team/stops/Cjuquai1", "https://tec.openplanner.team/stops/Cjuquai2"], ["https://tec.openplanner.team/stops/LMNheme1", "https://tec.openplanner.team/stops/LMNpann1"], ["https://tec.openplanner.team/stops/N501hqb", "https://tec.openplanner.team/stops/N501htb"], ["https://tec.openplanner.team/stops/LOTsav-1", "https://tec.openplanner.team/stops/LOTsav-2"], ["https://tec.openplanner.team/stops/X837aab", "https://tec.openplanner.team/stops/X837aba"], ["https://tec.openplanner.team/stops/X608aea", "https://tec.openplanner.team/stops/X608aua"], ["https://tec.openplanner.team/stops/Cjufour4", "https://tec.openplanner.team/stops/Clostan1"], ["https://tec.openplanner.team/stops/H4mo134a", "https://tec.openplanner.team/stops/H4mo175a"], ["https://tec.openplanner.team/stops/LrUlasc1", "https://tec.openplanner.team/stops/LrUlasc2"], ["https://tec.openplanner.team/stops/N509aib", "https://tec.openplanner.team/stops/N509ala"], ["https://tec.openplanner.team/stops/X784aia", "https://tec.openplanner.team/stops/X784aka"], ["https://tec.openplanner.team/stops/LTPpisc1", "https://tec.openplanner.team/stops/LTPpisc2"], ["https://tec.openplanner.team/stops/Bboutry1", "https://tec.openplanner.team/stops/Bboutry2"], ["https://tec.openplanner.team/stops/Bbsifmo1", "https://tec.openplanner.team/stops/Bbsipos1"], ["https://tec.openplanner.team/stops/H4bq154a", "https://tec.openplanner.team/stops/H4cp103a"], ["https://tec.openplanner.team/stops/LSAjacq2", "https://tec.openplanner.team/stops/LSAtrih2"], ["https://tec.openplanner.team/stops/N539ava", "https://tec.openplanner.team/stops/N539bca"], ["https://tec.openplanner.team/stops/H1em111a", "https://tec.openplanner.team/stops/H1em111b"], ["https://tec.openplanner.team/stops/X617adb", "https://tec.openplanner.team/stops/X695ada"], ["https://tec.openplanner.team/stops/N229adb", "https://tec.openplanner.team/stops/N229aqa"], ["https://tec.openplanner.team/stops/X773aaa", "https://tec.openplanner.team/stops/X773aba"], ["https://tec.openplanner.team/stops/LLYchpl1", "https://tec.openplanner.team/stops/LOMdTEC2"], ["https://tec.openplanner.team/stops/H1qu101b", "https://tec.openplanner.team/stops/H1qu112a"], ["https://tec.openplanner.team/stops/LSPwarf2", "https://tec.openplanner.team/stops/LSZjona1"], ["https://tec.openplanner.team/stops/LWAalou2", "https://tec.openplanner.team/stops/LWAwegg1"], ["https://tec.openplanner.team/stops/Bclgbvi1", "https://tec.openplanner.team/stops/Bdlmgla3"], ["https://tec.openplanner.team/stops/H5bl123b", "https://tec.openplanner.team/stops/H5bl143b"], ["https://tec.openplanner.team/stops/X626aba", "https://tec.openplanner.team/stops/X626abb"], ["https://tec.openplanner.team/stops/X802asa", "https://tec.openplanner.team/stops/X802aya"], ["https://tec.openplanner.team/stops/X982ayb", "https://tec.openplanner.team/stops/X982bba"], ["https://tec.openplanner.team/stops/Brsrpri1", "https://tec.openplanner.team/stops/Brsrpri2"], ["https://tec.openplanner.team/stops/Cnamonn2", "https://tec.openplanner.team/stops/Cnaplha1"], ["https://tec.openplanner.team/stops/LLM4rou1", "https://tec.openplanner.team/stops/LLM4rou3"], ["https://tec.openplanner.team/stops/Bblabfo2", "https://tec.openplanner.team/stops/Bblavhu2"], ["https://tec.openplanner.team/stops/H4mv192a", "https://tec.openplanner.team/stops/H4oe149a"], ["https://tec.openplanner.team/stops/H4be146a", "https://tec.openplanner.team/stops/H5bl117a"], ["https://tec.openplanner.team/stops/Bgdhlai2", "https://tec.openplanner.team/stops/Bthsset1"], ["https://tec.openplanner.team/stops/H1bo102a", "https://tec.openplanner.team/stops/H1hi123a"], ["https://tec.openplanner.team/stops/Cmypela2", "https://tec.openplanner.team/stops/Cmyvesa1"], ["https://tec.openplanner.team/stops/Bosqgar2", "https://tec.openplanner.team/stops/Bosqpqu2"], ["https://tec.openplanner.team/stops/Lrelier2", "https://tec.openplanner.team/stops/LSAtrih1"], ["https://tec.openplanner.team/stops/LFChofv2", "https://tec.openplanner.team/stops/LFChuis2"], ["https://tec.openplanner.team/stops/LJAdeho2", "https://tec.openplanner.team/stops/LJAdeho4"], ["https://tec.openplanner.team/stops/N124aac", "https://tec.openplanner.team/stops/N124aca"], ["https://tec.openplanner.team/stops/H1br126b", "https://tec.openplanner.team/stops/H1br129a"], ["https://tec.openplanner.team/stops/Livfays1", "https://tec.openplanner.team/stops/LRaplac1"], ["https://tec.openplanner.team/stops/X664aba", "https://tec.openplanner.team/stops/X664aeb"], ["https://tec.openplanner.team/stops/X725apa", "https://tec.openplanner.team/stops/X725bea"], ["https://tec.openplanner.team/stops/N501isb", "https://tec.openplanner.team/stops/N501ita"], ["https://tec.openplanner.team/stops/Buccobs2", "https://tec.openplanner.team/stops/Buccplj2"], ["https://tec.openplanner.team/stops/LVHtill1", "https://tec.openplanner.team/stops/LVHtill2"], ["https://tec.openplanner.team/stops/LBvnico2", "https://tec.openplanner.team/stops/LBvviem1"], ["https://tec.openplanner.team/stops/H1hy144a", "https://tec.openplanner.team/stops/H1qy135a"], ["https://tec.openplanner.team/stops/Beclaub1", "https://tec.openplanner.team/stops/Beclaub2"], ["https://tec.openplanner.team/stops/N118aob", "https://tec.openplanner.team/stops/N118ata"], ["https://tec.openplanner.team/stops/LCPscay2", "https://tec.openplanner.team/stops/LOncar-*"], ["https://tec.openplanner.team/stops/X805aaa", "https://tec.openplanner.team/stops/X805aga"], ["https://tec.openplanner.team/stops/Bborche1", "https://tec.openplanner.team/stops/Bitrmon1"], ["https://tec.openplanner.team/stops/Lticime2", "https://tec.openplanner.team/stops/Ltiegli2"], ["https://tec.openplanner.team/stops/Bmrlhan3", "https://tec.openplanner.team/stops/Bmrllgr1"], ["https://tec.openplanner.team/stops/LGEhosp2", "https://tec.openplanner.team/stops/LGEwalk1"], ["https://tec.openplanner.team/stops/N519ama", "https://tec.openplanner.team/stops/N519apa"], ["https://tec.openplanner.team/stops/N512aea", "https://tec.openplanner.team/stops/N512aeb"], ["https://tec.openplanner.team/stops/Bllnpaf1", "https://tec.openplanner.team/stops/Bllnpaf3"], ["https://tec.openplanner.team/stops/Loudemo1", "https://tec.openplanner.team/stops/Loudemo2"], ["https://tec.openplanner.team/stops/Bgzdast1", "https://tec.openplanner.team/stops/Bgzdpos3"], ["https://tec.openplanner.team/stops/H4ga149b", "https://tec.openplanner.team/stops/H4ga161d"], ["https://tec.openplanner.team/stops/X750acb", "https://tec.openplanner.team/stops/X750aia"], ["https://tec.openplanner.team/stops/X662aea", "https://tec.openplanner.team/stops/X662aeb"], ["https://tec.openplanner.team/stops/Bwavgar4", "https://tec.openplanner.team/stops/Bwavgar5"], ["https://tec.openplanner.team/stops/LFrcent1", "https://tec.openplanner.team/stops/LPtrefa1"], ["https://tec.openplanner.team/stops/Cfcbobr1", "https://tec.openplanner.team/stops/Cfcctru2"], ["https://tec.openplanner.team/stops/Cgolimi1", "https://tec.openplanner.team/stops/Cgosmoi2"], ["https://tec.openplanner.team/stops/Bwatfia2", "https://tec.openplanner.team/stops/Bwatgar5"], ["https://tec.openplanner.team/stops/X548aaa", "https://tec.openplanner.team/stops/X777aaa"], ["https://tec.openplanner.team/stops/Beclaub2", "https://tec.openplanner.team/stops/H2me116a"], ["https://tec.openplanner.team/stops/N501dgb", "https://tec.openplanner.team/stops/N501dia"], ["https://tec.openplanner.team/stops/Crg3arb1", "https://tec.openplanner.team/stops/Crglyre1"], ["https://tec.openplanner.team/stops/Cjuecha2", "https://tec.openplanner.team/stops/Cjuhame2"], ["https://tec.openplanner.team/stops/N501fya", "https://tec.openplanner.team/stops/N501gpd"], ["https://tec.openplanner.team/stops/H2tr247b", "https://tec.openplanner.team/stops/H2tr248a"], ["https://tec.openplanner.team/stops/X359amb", "https://tec.openplanner.team/stops/X857aaa"], ["https://tec.openplanner.team/stops/Ctuecol1", "https://tec.openplanner.team/stops/Ctuplac2"], ["https://tec.openplanner.team/stops/Lmogoff1", "https://tec.openplanner.team/stops/Lmogoff2"], ["https://tec.openplanner.team/stops/LBvviem3", "https://tec.openplanner.team/stops/LFacruc1"], ["https://tec.openplanner.team/stops/LNEolne1", "https://tec.openplanner.team/stops/LNEvand2"], ["https://tec.openplanner.team/stops/LARgare2", "https://tec.openplanner.team/stops/Lchmarc1"], ["https://tec.openplanner.team/stops/Lcebois1", "https://tec.openplanner.team/stops/Lcejobe1"], ["https://tec.openplanner.team/stops/LhEklos1", "https://tec.openplanner.team/stops/LhEklos2"], ["https://tec.openplanner.team/stops/N543ang", "https://tec.openplanner.team/stops/N543anh"], ["https://tec.openplanner.team/stops/X897afb", "https://tec.openplanner.team/stops/X897aya"], ["https://tec.openplanner.team/stops/N573ada", "https://tec.openplanner.team/stops/N573aeb"], ["https://tec.openplanner.team/stops/Bfelada2", "https://tec.openplanner.team/stops/Bfelbri2"], ["https://tec.openplanner.team/stops/Chhclde1", "https://tec.openplanner.team/stops/Chhverr2"], ["https://tec.openplanner.team/stops/H1fl136c", "https://tec.openplanner.team/stops/H1fl370a"], ["https://tec.openplanner.team/stops/LLvferm1", "https://tec.openplanner.team/stops/LLvferm2"], ["https://tec.openplanner.team/stops/H4ru236a", "https://tec.openplanner.team/stops/H4ru240a"], ["https://tec.openplanner.team/stops/LhObull1", "https://tec.openplanner.team/stops/LhObull2"], ["https://tec.openplanner.team/stops/H4ae101b", "https://tec.openplanner.team/stops/H4ef113a"], ["https://tec.openplanner.team/stops/LAMdelh*", "https://tec.openplanner.team/stops/LAMweha2"], ["https://tec.openplanner.team/stops/H4mx116a", "https://tec.openplanner.team/stops/H4po128b"], ["https://tec.openplanner.team/stops/LXoharz3", "https://tec.openplanner.team/stops/X599agb"], ["https://tec.openplanner.team/stops/N346adb", "https://tec.openplanner.team/stops/X346afa"], ["https://tec.openplanner.team/stops/LHMgulp2", "https://tec.openplanner.team/stops/LHMthys1"], ["https://tec.openplanner.team/stops/X821aaa", "https://tec.openplanner.team/stops/X827aaa"], ["https://tec.openplanner.team/stops/Bgntcbo1", "https://tec.openplanner.team/stops/Btilmon2"], ["https://tec.openplanner.team/stops/Bflcneu2", "https://tec.openplanner.team/stops/Bramrdf2"], ["https://tec.openplanner.team/stops/LeUhaas1", "https://tec.openplanner.team/stops/LeUolen1"], ["https://tec.openplanner.team/stops/Cfrchfe1", "https://tec.openplanner.team/stops/Cfrcoqu4"], ["https://tec.openplanner.team/stops/N584asa", "https://tec.openplanner.team/stops/N584cab"], ["https://tec.openplanner.team/stops/X793aib", "https://tec.openplanner.team/stops/X793aob"], ["https://tec.openplanner.team/stops/H4wn125a", "https://tec.openplanner.team/stops/H4wn127a"], ["https://tec.openplanner.team/stops/H2lc145b", "https://tec.openplanner.team/stops/H2ll196b"], ["https://tec.openplanner.team/stops/H1hm174a", "https://tec.openplanner.team/stops/H1ss348b"], ["https://tec.openplanner.team/stops/Cgy3011", "https://tec.openplanner.team/stops/Cmtyern2"], ["https://tec.openplanner.team/stops/Lvoeg--1", "https://tec.openplanner.team/stops/Lvoplac2"], ["https://tec.openplanner.team/stops/H1so136a", "https://tec.openplanner.team/stops/H1so136c"], ["https://tec.openplanner.team/stops/X715aib", "https://tec.openplanner.team/stops/X715alb"], ["https://tec.openplanner.team/stops/Ccigene1", "https://tec.openplanner.team/stops/Clvchen2"], ["https://tec.openplanner.team/stops/X747ajb", "https://tec.openplanner.team/stops/X749aea"], ["https://tec.openplanner.team/stops/H4ry129b", "https://tec.openplanner.team/stops/H4ry132b"], ["https://tec.openplanner.team/stops/LLeeg--1", "https://tec.openplanner.team/stops/LLegare1"], ["https://tec.openplanner.team/stops/LCPbell1", "https://tec.openplanner.team/stops/LHycent*"], ["https://tec.openplanner.team/stops/Llgfran1", "https://tec.openplanner.team/stops/LlgguilB"], ["https://tec.openplanner.team/stops/Bboncfv1", "https://tec.openplanner.team/stops/Blontry2"], ["https://tec.openplanner.team/stops/Blhueso1", "https://tec.openplanner.team/stops/Blhupqu1"], ["https://tec.openplanner.team/stops/X773aka", "https://tec.openplanner.team/stops/X773akb"], ["https://tec.openplanner.team/stops/LCF2spa1", "https://tec.openplanner.team/stops/LCF2spa2"], ["https://tec.openplanner.team/stops/N230aga", "https://tec.openplanner.team/stops/N230aka"], ["https://tec.openplanner.team/stops/H1hr129a", "https://tec.openplanner.team/stops/H1hr129b"], ["https://tec.openplanner.team/stops/H1cu111a", "https://tec.openplanner.team/stops/H1ms312a"], ["https://tec.openplanner.team/stops/H1ha201b", "https://tec.openplanner.team/stops/H1ob330a"], ["https://tec.openplanner.team/stops/H1ha182b", "https://tec.openplanner.team/stops/H1ha199a"], ["https://tec.openplanner.team/stops/N501jhb", "https://tec.openplanner.team/stops/N501jpa"], ["https://tec.openplanner.team/stops/Csefour1", "https://tec.openplanner.team/stops/Csrcant1"], ["https://tec.openplanner.team/stops/Cvstouv1", "https://tec.openplanner.team/stops/Cwfplac1"], ["https://tec.openplanner.team/stops/Clddeve1", "https://tec.openplanner.team/stops/Cldplac1"], ["https://tec.openplanner.team/stops/Crcegli1", "https://tec.openplanner.team/stops/Crcverr1"], ["https://tec.openplanner.team/stops/LWbcarr1", "https://tec.openplanner.team/stops/LWbregn1"], ["https://tec.openplanner.team/stops/LCRecmo2", "https://tec.openplanner.team/stops/LFmbure2"], ["https://tec.openplanner.team/stops/N241aga", "https://tec.openplanner.team/stops/N585abb"], ["https://tec.openplanner.team/stops/Cjupier1", "https://tec.openplanner.team/stops/Cjuquai1"], ["https://tec.openplanner.team/stops/Balswwe1", "https://tec.openplanner.team/stops/Bbrlpar2"], ["https://tec.openplanner.team/stops/X715alb", "https://tec.openplanner.team/stops/X715aqa"], ["https://tec.openplanner.team/stops/LoEauto1", "https://tec.openplanner.team/stops/LrDkirc1"], ["https://tec.openplanner.team/stops/Llaacca2", "https://tec.openplanner.team/stops/Llabriq2"], ["https://tec.openplanner.team/stops/Cchsud12", "https://tec.openplanner.team/stops/Cchsud16"], ["https://tec.openplanner.team/stops/X850ada", "https://tec.openplanner.team/stops/X850aeb"], ["https://tec.openplanner.team/stops/LSPmart1", "https://tec.openplanner.team/stops/LSPmart2"], ["https://tec.openplanner.team/stops/Llgnico*", "https://tec.openplanner.team/stops/Llgwiar1"], ["https://tec.openplanner.team/stops/H1sg142a", "https://tec.openplanner.team/stops/H1sg147a"], ["https://tec.openplanner.team/stops/LMYlieg2", "https://tec.openplanner.team/stops/X597ala"], ["https://tec.openplanner.team/stops/H1hg178b", "https://tec.openplanner.team/stops/H1hg180b"], ["https://tec.openplanner.team/stops/N150afa", "https://tec.openplanner.team/stops/N150aia"], ["https://tec.openplanner.team/stops/H1hv130a", "https://tec.openplanner.team/stops/H1hv130b"], ["https://tec.openplanner.team/stops/N565adb", "https://tec.openplanner.team/stops/N565aea"], ["https://tec.openplanner.team/stops/N232bca", "https://tec.openplanner.team/stops/N232bga"], ["https://tec.openplanner.team/stops/H1ha195b", "https://tec.openplanner.team/stops/H1ha198b"], ["https://tec.openplanner.team/stops/LCUmonu1", "https://tec.openplanner.team/stops/LEntrix2"], ["https://tec.openplanner.team/stops/N501gqb", "https://tec.openplanner.team/stops/N501ndb"], ["https://tec.openplanner.team/stops/N101adc", "https://tec.openplanner.team/stops/N118baa"], ["https://tec.openplanner.team/stops/N236afb", "https://tec.openplanner.team/stops/N236anb"], ["https://tec.openplanner.team/stops/Lwagare1", "https://tec.openplanner.team/stops/Lwapomp1"], ["https://tec.openplanner.team/stops/N111abb", "https://tec.openplanner.team/stops/N111afb"], ["https://tec.openplanner.team/stops/H1cu115b", "https://tec.openplanner.team/stops/H1cu120b"], ["https://tec.openplanner.team/stops/X991aea", "https://tec.openplanner.team/stops/X991ala"], ["https://tec.openplanner.team/stops/Cgogare2", "https://tec.openplanner.team/stops/Cgostex2"], ["https://tec.openplanner.team/stops/N534bta", "https://tec.openplanner.team/stops/N534btb"], ["https://tec.openplanner.team/stops/X826aeb", "https://tec.openplanner.team/stops/X826afb"], ["https://tec.openplanner.team/stops/Ccypetv2", "https://tec.openplanner.team/stops/Cvlcalv2"], ["https://tec.openplanner.team/stops/N574aba", "https://tec.openplanner.team/stops/N574aca"], ["https://tec.openplanner.team/stops/Bjaneco1", "https://tec.openplanner.team/stops/Bjanegl4"], ["https://tec.openplanner.team/stops/H4bq102a", "https://tec.openplanner.team/stops/H4bq154a"], ["https://tec.openplanner.team/stops/LeSkreu2", "https://tec.openplanner.team/stops/LtH37c-2"], ["https://tec.openplanner.team/stops/Lladete4", "https://tec.openplanner.team/stops/Lvo60--2"], ["https://tec.openplanner.team/stops/LCIpiet2", "https://tec.openplanner.team/stops/LCIsucr2"], ["https://tec.openplanner.team/stops/LCPbatt1", "https://tec.openplanner.team/stops/LCTgare3"], ["https://tec.openplanner.team/stops/X873aab", "https://tec.openplanner.team/stops/X873aca"], ["https://tec.openplanner.team/stops/LWevalf1", "https://tec.openplanner.team/stops/LWevalf2"], ["https://tec.openplanner.team/stops/H1ls105b", "https://tec.openplanner.team/stops/H1ls106a"], ["https://tec.openplanner.team/stops/Bclgapi1", "https://tec.openplanner.team/stops/Bclgapi2"], ["https://tec.openplanner.team/stops/N557aga", "https://tec.openplanner.team/stops/N557agb"], ["https://tec.openplanner.team/stops/LAMfroi1", "https://tec.openplanner.team/stops/LAMfroi2"], ["https://tec.openplanner.team/stops/H2sb226b", "https://tec.openplanner.team/stops/H2tr248b"], ["https://tec.openplanner.team/stops/H4eg106a", "https://tec.openplanner.team/stops/H4eg106b"], ["https://tec.openplanner.team/stops/LmNkrew2", "https://tec.openplanner.team/stops/LmNlieb2"], ["https://tec.openplanner.team/stops/Llxec--1", "https://tec.openplanner.team/stops/Llxec--2"], ["https://tec.openplanner.team/stops/X615arb", "https://tec.openplanner.team/stops/X687aga"], ["https://tec.openplanner.team/stops/LVNwanz1", "https://tec.openplanner.team/stops/LWDplac1"], ["https://tec.openplanner.team/stops/Cauromi2", "https://tec.openplanner.team/stops/Causncb2"], ["https://tec.openplanner.team/stops/LeYheid2", "https://tec.openplanner.team/stops/LeYwald2"], ["https://tec.openplanner.team/stops/N501cka", "https://tec.openplanner.team/stops/N501ckb"], ["https://tec.openplanner.team/stops/LAbbass1", "https://tec.openplanner.team/stops/LAbchpl1"], ["https://tec.openplanner.team/stops/X601bmb", "https://tec.openplanner.team/stops/X602afa"], ["https://tec.openplanner.team/stops/Lagcile2", "https://tec.openplanner.team/stops/Laggare1"], ["https://tec.openplanner.team/stops/LESmc--1", "https://tec.openplanner.team/stops/LESmont2"], ["https://tec.openplanner.team/stops/Lghchap1", "https://tec.openplanner.team/stops/Lghferr1"], ["https://tec.openplanner.team/stops/LFPho8a1", "https://tec.openplanner.team/stops/LFPknap1"], ["https://tec.openplanner.team/stops/H1cu110a", "https://tec.openplanner.team/stops/H1cu118b"], ["https://tec.openplanner.team/stops/H4bo110b", "https://tec.openplanner.team/stops/H5st162b"], ["https://tec.openplanner.team/stops/H4ma418a", "https://tec.openplanner.team/stops/H4ma420a"], ["https://tec.openplanner.team/stops/N542aka", "https://tec.openplanner.team/stops/N542arb"], ["https://tec.openplanner.team/stops/H4fo118a", "https://tec.openplanner.team/stops/H4fo119b"], ["https://tec.openplanner.team/stops/Cvtndam3", "https://tec.openplanner.team/stops/Cvtvois1"], ["https://tec.openplanner.team/stops/Bdoncen1", "https://tec.openplanner.team/stops/Bdoncen2"], ["https://tec.openplanner.team/stops/LbTcarm1", "https://tec.openplanner.team/stops/LbTcarm2"], ["https://tec.openplanner.team/stops/X901apa", "https://tec.openplanner.team/stops/X901aub"], ["https://tec.openplanner.team/stops/LMXempe1", "https://tec.openplanner.team/stops/LMXempe2"], ["https://tec.openplanner.team/stops/X982bnb", "https://tec.openplanner.team/stops/X986aba"], ["https://tec.openplanner.team/stops/H1gy112a", "https://tec.openplanner.team/stops/H5fl101a"], ["https://tec.openplanner.team/stops/X871acb", "https://tec.openplanner.team/stops/X877aia"], ["https://tec.openplanner.team/stops/Lghalli1", "https://tec.openplanner.team/stops/Lghremy1"], ["https://tec.openplanner.team/stops/X869aca", "https://tec.openplanner.team/stops/X869afb"], ["https://tec.openplanner.team/stops/LaAlinz1", "https://tec.openplanner.team/stops/LlCgren1"], ["https://tec.openplanner.team/stops/Lbbbuse2", "https://tec.openplanner.team/stops/Lbbviad1"], ["https://tec.openplanner.team/stops/N534caa", "https://tec.openplanner.team/stops/N534cbh"], ["https://tec.openplanner.team/stops/X720aeb", "https://tec.openplanner.team/stops/X733aaa"], ["https://tec.openplanner.team/stops/H1an100a", "https://tec.openplanner.team/stops/H1bx104a"], ["https://tec.openplanner.team/stops/X898aab", "https://tec.openplanner.team/stops/X898aba"], ["https://tec.openplanner.team/stops/Crsaise1", "https://tec.openplanner.team/stops/Crsaise4"], ["https://tec.openplanner.team/stops/Lhrpwan1", "https://tec.openplanner.team/stops/Lwachal2"], ["https://tec.openplanner.team/stops/H2pr114b", "https://tec.openplanner.team/stops/H2pr115b"], ["https://tec.openplanner.team/stops/Lhecarc*", "https://tec.openplanner.team/stops/Lhepaqu1"], ["https://tec.openplanner.team/stops/H5at118a", "https://tec.openplanner.team/stops/H5at134a"], ["https://tec.openplanner.team/stops/LvA30--1", "https://tec.openplanner.team/stops/LvAwere1"], ["https://tec.openplanner.team/stops/X986aaa", "https://tec.openplanner.team/stops/X986ahb"], ["https://tec.openplanner.team/stops/LAWeg--1", "https://tec.openplanner.team/stops/LAWgill2"], ["https://tec.openplanner.team/stops/Lemarti2", "https://tec.openplanner.team/stops/Lemfort2"], ["https://tec.openplanner.team/stops/Cfcplac4", "https://tec.openplanner.team/stops/Cfcrdpr2"], ["https://tec.openplanner.team/stops/X725ama", "https://tec.openplanner.team/stops/X725aqb"], ["https://tec.openplanner.team/stops/H1gh143a", "https://tec.openplanner.team/stops/H1hh118b"], ["https://tec.openplanner.team/stops/Bgoemgr1", "https://tec.openplanner.team/stops/Bgoevli1"], ["https://tec.openplanner.team/stops/H4ty264a", "https://tec.openplanner.team/stops/H4ty320b"], ["https://tec.openplanner.team/stops/H1fr118b", "https://tec.openplanner.team/stops/H1fr133b"], ["https://tec.openplanner.team/stops/X659adc", "https://tec.openplanner.team/stops/X659ava"], ["https://tec.openplanner.team/stops/N529ada", "https://tec.openplanner.team/stops/N529ajb"], ["https://tec.openplanner.team/stops/N501gda", "https://tec.openplanner.team/stops/N501gta"], ["https://tec.openplanner.team/stops/Cwgmell1", "https://tec.openplanner.team/stops/Cwgmell3"], ["https://tec.openplanner.team/stops/H1he107a", "https://tec.openplanner.team/stops/H1he107b"], ["https://tec.openplanner.team/stops/X754ata", "https://tec.openplanner.team/stops/X754atb"], ["https://tec.openplanner.team/stops/Cfrcomp1", "https://tec.openplanner.team/stops/Cfrcomp2"], ["https://tec.openplanner.team/stops/Lcegare1", "https://tec.openplanner.team/stops/Lcepont1"], ["https://tec.openplanner.team/stops/N201ada", "https://tec.openplanner.team/stops/N201afa"], ["https://tec.openplanner.team/stops/H1ch102a", "https://tec.openplanner.team/stops/H5ar102a"], ["https://tec.openplanner.team/stops/N110ahb", "https://tec.openplanner.team/stops/N111aea"], ["https://tec.openplanner.team/stops/Bnvmfba1", "https://tec.openplanner.team/stops/N515asb"], ["https://tec.openplanner.team/stops/H2ma206b", "https://tec.openplanner.team/stops/H3th130b"], ["https://tec.openplanner.team/stops/Lalmitt2", "https://tec.openplanner.team/stops/Lalwaro1"], ["https://tec.openplanner.team/stops/H5pe133a", "https://tec.openplanner.team/stops/H5pe133b"], ["https://tec.openplanner.team/stops/LrAdrie2", "https://tec.openplanner.team/stops/LrAdrie5"], ["https://tec.openplanner.team/stops/NC44agb", "https://tec.openplanner.team/stops/NC44ahb"], ["https://tec.openplanner.team/stops/X833aaa", "https://tec.openplanner.team/stops/X833aba"], ["https://tec.openplanner.team/stops/X942abc", "https://tec.openplanner.team/stops/X942abd"], ["https://tec.openplanner.team/stops/H4mx115a", "https://tec.openplanner.team/stops/H4mx117b"], ["https://tec.openplanner.team/stops/Bwaucan2", "https://tec.openplanner.team/stops/Bwaucig1"], ["https://tec.openplanner.team/stops/N534ara", "https://tec.openplanner.team/stops/N534bga"], ["https://tec.openplanner.team/stops/Lpeatel1", "https://tec.openplanner.team/stops/LWeatel2"], ["https://tec.openplanner.team/stops/X342abb", "https://tec.openplanner.team/stops/X342aga"], ["https://tec.openplanner.team/stops/X991aab", "https://tec.openplanner.team/stops/X991afb"], ["https://tec.openplanner.team/stops/Bwatcap1", "https://tec.openplanner.team/stops/Bwatpro1"], ["https://tec.openplanner.team/stops/Lsebrun2", "https://tec.openplanner.team/stops/Lsebrun3"], ["https://tec.openplanner.team/stops/Blmlbou1", "https://tec.openplanner.team/stops/Brixape2"], ["https://tec.openplanner.team/stops/Bgemgjo1", "https://tec.openplanner.team/stops/N522bva"], ["https://tec.openplanner.team/stops/LHUamer1", "https://tec.openplanner.team/stops/NL80aca"], ["https://tec.openplanner.team/stops/H1hc127c", "https://tec.openplanner.team/stops/H5gr137b"], ["https://tec.openplanner.team/stops/Lflcime1", "https://tec.openplanner.team/stops/Lflec--1"], ["https://tec.openplanner.team/stops/Blnzcar2", "https://tec.openplanner.team/stops/N522aia"], ["https://tec.openplanner.team/stops/N308adb", "https://tec.openplanner.team/stops/N308aob"], ["https://tec.openplanner.team/stops/N505afa", "https://tec.openplanner.team/stops/N505aja"], ["https://tec.openplanner.team/stops/N501bnb", "https://tec.openplanner.team/stops/N501bua"], ["https://tec.openplanner.team/stops/LhGcasi1", "https://tec.openplanner.team/stops/LhGcasi2"], ["https://tec.openplanner.team/stops/Ctyhame2", "https://tec.openplanner.team/stops/N137ahb"], ["https://tec.openplanner.team/stops/H1ha191b", "https://tec.openplanner.team/stops/H1ha196a"], ["https://tec.openplanner.team/stops/LLAbure2", "https://tec.openplanner.team/stops/LPleclu1"], ["https://tec.openplanner.team/stops/Ctilobb1", "https://tec.openplanner.team/stops/H1fv103a"], ["https://tec.openplanner.team/stops/N349aba", "https://tec.openplanner.team/stops/N349abb"], ["https://tec.openplanner.team/stops/LAx41--2", "https://tec.openplanner.team/stops/LAxchpl1"], ["https://tec.openplanner.team/stops/N121aaa", "https://tec.openplanner.team/stops/N121aib"], ["https://tec.openplanner.team/stops/X654afa", "https://tec.openplanner.team/stops/X670aab"], ["https://tec.openplanner.team/stops/N501lcb", "https://tec.openplanner.team/stops/N501lcz"], ["https://tec.openplanner.team/stops/Llgcont1", "https://tec.openplanner.team/stops/Llgterr1"], ["https://tec.openplanner.team/stops/Canjonc2", "https://tec.openplanner.team/stops/Canrobe2"], ["https://tec.openplanner.team/stops/N291abb", "https://tec.openplanner.team/stops/N291aca"], ["https://tec.openplanner.team/stops/LArmeni1", "https://tec.openplanner.team/stops/X548afb"], ["https://tec.openplanner.team/stops/Bbealbu3", "https://tec.openplanner.team/stops/Bbealbu4"], ["https://tec.openplanner.team/stops/X806adb", "https://tec.openplanner.team/stops/X806afb"], ["https://tec.openplanner.team/stops/Borborb1", "https://tec.openplanner.team/stops/Borbtre2"], ["https://tec.openplanner.team/stops/N501jgb", "https://tec.openplanner.team/stops/N521aha"], ["https://tec.openplanner.team/stops/LGEbern2", "https://tec.openplanner.team/stops/LGEcent1"], ["https://tec.openplanner.team/stops/X608aha", "https://tec.openplanner.team/stops/X608aqa"], ["https://tec.openplanner.team/stops/LWAlpre1", "https://tec.openplanner.team/stops/LWAmois1"], ["https://tec.openplanner.team/stops/H5at142b", "https://tec.openplanner.team/stops/H5at235a"], ["https://tec.openplanner.team/stops/N501bxa", "https://tec.openplanner.team/stops/N501hfa"], ["https://tec.openplanner.team/stops/X953aca", "https://tec.openplanner.team/stops/X953aea"], ["https://tec.openplanner.team/stops/N577aeb", "https://tec.openplanner.team/stops/N577aib"], ["https://tec.openplanner.team/stops/H5qu143b", "https://tec.openplanner.team/stops/H5qu144b"], ["https://tec.openplanner.team/stops/LBYegli1", "https://tec.openplanner.team/stops/LHEelva1"], ["https://tec.openplanner.team/stops/H1nm140b", "https://tec.openplanner.team/stops/H1nm141b"], ["https://tec.openplanner.team/stops/H4es108b", "https://tec.openplanner.team/stops/H4hx123b"], ["https://tec.openplanner.team/stops/X738ada", "https://tec.openplanner.team/stops/X771afa"], ["https://tec.openplanner.team/stops/Ccoptca1", "https://tec.openplanner.team/stops/Ccoptca2"], ["https://tec.openplanner.team/stops/H1sp357b", "https://tec.openplanner.team/stops/H1sp357c"], ["https://tec.openplanner.team/stops/LCpvill2", "https://tec.openplanner.team/stops/LSPecho1"], ["https://tec.openplanner.team/stops/Lbemc--2", "https://tec.openplanner.team/stops/Llxeg--2"], ["https://tec.openplanner.team/stops/Lpebeco2", "https://tec.openplanner.team/stops/LTAbran2"], ["https://tec.openplanner.team/stops/Cgoson12", "https://tec.openplanner.team/stops/Cjuepee2"], ["https://tec.openplanner.team/stops/N151ajc", "https://tec.openplanner.team/stops/N151ajd"], ["https://tec.openplanner.team/stops/LhGbahn*", "https://tec.openplanner.team/stops/LhSfrei1"], ["https://tec.openplanner.team/stops/H4oq223a", "https://tec.openplanner.team/stops/H4oq223b"], ["https://tec.openplanner.team/stops/H4ef165b", "https://tec.openplanner.team/stops/H4ef165c"], ["https://tec.openplanner.team/stops/H3so161a", "https://tec.openplanner.team/stops/H3so179a"], ["https://tec.openplanner.team/stops/X542aha", "https://tec.openplanner.team/stops/X777acb"], ["https://tec.openplanner.team/stops/LVLhalb4", "https://tec.openplanner.team/stops/LVLpane2"], ["https://tec.openplanner.team/stops/Bglicsm2", "https://tec.openplanner.team/stops/Btlbtho1"], ["https://tec.openplanner.team/stops/Bbcoben2", "https://tec.openplanner.team/stops/Bbcopre1"], ["https://tec.openplanner.team/stops/Cgdberl1", "https://tec.openplanner.team/stops/Cgdrhau2"], ["https://tec.openplanner.team/stops/LATjaur2", "https://tec.openplanner.team/stops/LWNbeto1"], ["https://tec.openplanner.team/stops/H4ml206a", "https://tec.openplanner.team/stops/H4ml207a"], ["https://tec.openplanner.team/stops/H2ll190a", "https://tec.openplanner.team/stops/H2ll199b"], ["https://tec.openplanner.team/stops/H4ld125a", "https://tec.openplanner.team/stops/H4og214a"], ["https://tec.openplanner.team/stops/Llghori2", "https://tec.openplanner.team/stops/Llgvolg2"], ["https://tec.openplanner.team/stops/LSTamer2", "https://tec.openplanner.team/stops/LSTgran2"], ["https://tec.openplanner.team/stops/N204aab", "https://tec.openplanner.team/stops/N208aaa"], ["https://tec.openplanner.team/stops/H4to134b", "https://tec.openplanner.team/stops/H4to139b"], ["https://tec.openplanner.team/stops/H1si156a", "https://tec.openplanner.team/stops/H1si156d"], ["https://tec.openplanner.team/stops/LFRcoun2", "https://tec.openplanner.team/stops/LSPmalc1"], ["https://tec.openplanner.team/stops/Bchgcha1", "https://tec.openplanner.team/stops/Bchgflo2"], ["https://tec.openplanner.team/stops/X602aia", "https://tec.openplanner.team/stops/X602aib"], ["https://tec.openplanner.team/stops/Cflmart1", "https://tec.openplanner.team/stops/Cflpost1"], ["https://tec.openplanner.team/stops/Caimeno3", "https://tec.openplanner.team/stops/Crsaise1"], ["https://tec.openplanner.team/stops/X911ajb", "https://tec.openplanner.team/stops/X911anb"], ["https://tec.openplanner.team/stops/Landolh2", "https://tec.openplanner.team/stops/Lanrois2"], ["https://tec.openplanner.team/stops/N542alb", "https://tec.openplanner.team/stops/N578aca"], ["https://tec.openplanner.team/stops/LAVdepr1", "https://tec.openplanner.team/stops/LAVeg--2"], ["https://tec.openplanner.team/stops/Cjudest1", "https://tec.openplanner.team/stops/Cjumest2"], ["https://tec.openplanner.team/stops/LMsgara1", "https://tec.openplanner.team/stops/LMsgara2"], ["https://tec.openplanner.team/stops/X641aba", "https://tec.openplanner.team/stops/X641aca"], ["https://tec.openplanner.team/stops/X818anb", "https://tec.openplanner.team/stops/X818aob"], ["https://tec.openplanner.team/stops/Cmmgadi1", "https://tec.openplanner.team/stops/Cmmheur1"], ["https://tec.openplanner.team/stops/LaMfuss1", "https://tec.openplanner.team/stops/LaMthei2"], ["https://tec.openplanner.team/stops/H4co141a", "https://tec.openplanner.team/stops/H4co141b"], ["https://tec.openplanner.team/stops/LLUhotc1", "https://tec.openplanner.team/stops/LLUhotc2"], ["https://tec.openplanner.team/stops/X801bsa", "https://tec.openplanner.team/stops/X801bxa"], ["https://tec.openplanner.team/stops/N201aha", "https://tec.openplanner.team/stops/N201arb"], ["https://tec.openplanner.team/stops/LBNeu712", "https://tec.openplanner.team/stops/LMemaza1"], ["https://tec.openplanner.team/stops/N562amb", "https://tec.openplanner.team/stops/N562bsb"], ["https://tec.openplanner.team/stops/Cnadrev1", "https://tec.openplanner.team/stops/Cnanoir1"], ["https://tec.openplanner.team/stops/Brebrog2", "https://tec.openplanner.team/stops/H2pr114b"], ["https://tec.openplanner.team/stops/H1bb113b", "https://tec.openplanner.team/stops/H1bb116b"], ["https://tec.openplanner.team/stops/N104aad", "https://tec.openplanner.team/stops/N116aba"], ["https://tec.openplanner.team/stops/Lbopote1", "https://tec.openplanner.team/stops/Lsebonc2"], ["https://tec.openplanner.team/stops/Lhrmemo2", "https://tec.openplanner.team/stops/Lmigare1"], ["https://tec.openplanner.team/stops/X673aab", "https://tec.openplanner.team/stops/X821aab"], ["https://tec.openplanner.team/stops/X636bea", "https://tec.openplanner.team/stops/X649abb"], ["https://tec.openplanner.team/stops/Cjuhame3", "https://tec.openplanner.team/stops/Cjulamb1"], ["https://tec.openplanner.team/stops/LrAkape1", "https://tec.openplanner.team/stops/LrAkape2"], ["https://tec.openplanner.team/stops/N211ala", "https://tec.openplanner.team/stops/N211asa"], ["https://tec.openplanner.team/stops/Llgbwez2", "https://tec.openplanner.team/stops/Llgcham6"], ["https://tec.openplanner.team/stops/Bwatceg1", "https://tec.openplanner.team/stops/Bwatcli1"], ["https://tec.openplanner.team/stops/LSHfief1", "https://tec.openplanner.team/stops/LSHhade1"], ["https://tec.openplanner.team/stops/Lprferm1", "https://tec.openplanner.team/stops/Lprmoin1"], ["https://tec.openplanner.team/stops/LHUbail1", "https://tec.openplanner.team/stops/LTiespe1"], ["https://tec.openplanner.team/stops/H1ro133a", "https://tec.openplanner.team/stops/H1ro135a"], ["https://tec.openplanner.team/stops/X801aga", "https://tec.openplanner.team/stops/X801bta"], ["https://tec.openplanner.team/stops/Bhoeboo1", "https://tec.openplanner.team/stops/Blhurcl1"], ["https://tec.openplanner.team/stops/X801bma", "https://tec.openplanner.team/stops/X801clb"], ["https://tec.openplanner.team/stops/Lfhdonn1", "https://tec.openplanner.team/stops/Lfhpass1"], ["https://tec.openplanner.team/stops/LOCeg--2", "https://tec.openplanner.team/stops/LOCerzy2"], ["https://tec.openplanner.team/stops/LWexhav1", "https://tec.openplanner.team/stops/LWexhav2"], ["https://tec.openplanner.team/stops/Lprchat2", "https://tec.openplanner.team/stops/Lprmc--4"], ["https://tec.openplanner.team/stops/Cmtcapi2", "https://tec.openplanner.team/stops/Cmtfabi2"], ["https://tec.openplanner.team/stops/Balswwe2", "https://tec.openplanner.team/stops/Bwaucig1"], ["https://tec.openplanner.team/stops/X650ahb", "https://tec.openplanner.team/stops/X650aoa"], ["https://tec.openplanner.team/stops/N553aob", "https://tec.openplanner.team/stops/N553aqa"], ["https://tec.openplanner.team/stops/LLmcheg3", "https://tec.openplanner.team/stops/LLmeg--1"], ["https://tec.openplanner.team/stops/LGecime1", "https://tec.openplanner.team/stops/LGecite2"], ["https://tec.openplanner.team/stops/N166aba", "https://tec.openplanner.team/stops/N166abb"], ["https://tec.openplanner.team/stops/X641ava", "https://tec.openplanner.team/stops/X641aya"], ["https://tec.openplanner.team/stops/LFCdree1", "https://tec.openplanner.team/stops/LMgbatt2"], ["https://tec.openplanner.team/stops/N548afa", "https://tec.openplanner.team/stops/N548agc"], ["https://tec.openplanner.team/stops/N534adb", "https://tec.openplanner.team/stops/N534agb"], ["https://tec.openplanner.team/stops/Cgycorv4", "https://tec.openplanner.team/stops/Cgyrjau1"], ["https://tec.openplanner.team/stops/H1do119b", "https://tec.openplanner.team/stops/H1wi150a"], ["https://tec.openplanner.team/stops/Lgrmc--1", "https://tec.openplanner.team/stops/Llgdesa1"], ["https://tec.openplanner.team/stops/Bgntcoo1", "https://tec.openplanner.team/stops/Bgnteco2"], ["https://tec.openplanner.team/stops/N205aca", "https://tec.openplanner.team/stops/N219aba"], ["https://tec.openplanner.team/stops/LHaxhig1", "https://tec.openplanner.team/stops/LHaxhor2"], ["https://tec.openplanner.team/stops/Cgxdeba1", "https://tec.openplanner.team/stops/Cgxvvel1"], ["https://tec.openplanner.team/stops/H2go117b", "https://tec.openplanner.team/stops/H2gy106b"], ["https://tec.openplanner.team/stops/X664aic", "https://tec.openplanner.team/stops/X664aja"], ["https://tec.openplanner.team/stops/N117aga", "https://tec.openplanner.team/stops/N145ajb"], ["https://tec.openplanner.team/stops/X623adb", "https://tec.openplanner.team/stops/X623aja"], ["https://tec.openplanner.team/stops/N122aab", "https://tec.openplanner.team/stops/N122abb"], ["https://tec.openplanner.team/stops/X982aib", "https://tec.openplanner.team/stops/X982bua"], ["https://tec.openplanner.team/stops/Cobobjo1", "https://tec.openplanner.team/stops/Cobvill1"], ["https://tec.openplanner.team/stops/X870abb", "https://tec.openplanner.team/stops/X870acb"], ["https://tec.openplanner.team/stops/Cgomerm4", "https://tec.openplanner.team/stops/Chpfoli4"], ["https://tec.openplanner.team/stops/X721aob", "https://tec.openplanner.team/stops/X721ata"], ["https://tec.openplanner.team/stops/N206ada", "https://tec.openplanner.team/stops/N207acb"], ["https://tec.openplanner.team/stops/LMsgara2", "https://tec.openplanner.team/stops/LMspont2"], ["https://tec.openplanner.team/stops/H1hm175a", "https://tec.openplanner.team/stops/H1hm175b"], ["https://tec.openplanner.team/stops/Barqbar1", "https://tec.openplanner.team/stops/Barqbar2"], ["https://tec.openplanner.team/stops/H4ty275a", "https://tec.openplanner.team/stops/H4ty299a"], ["https://tec.openplanner.team/stops/N562bqa", "https://tec.openplanner.team/stops/N562bra"], ["https://tec.openplanner.team/stops/LBkbamb2", "https://tec.openplanner.team/stops/LMsalen1"], ["https://tec.openplanner.team/stops/Becltri1", "https://tec.openplanner.team/stops/Broncli2"], ["https://tec.openplanner.team/stops/Lanmouf1", "https://tec.openplanner.team/stops/Lanmouf2"], ["https://tec.openplanner.team/stops/Bbgerlr1", "https://tec.openplanner.team/stops/Bbgever2"], ["https://tec.openplanner.team/stops/N214afb", "https://tec.openplanner.team/stops/N225aba"], ["https://tec.openplanner.team/stops/LAbchpl1", "https://tec.openplanner.team/stops/LScd45-2"], ["https://tec.openplanner.team/stops/N152aac", "https://tec.openplanner.team/stops/N152abc"], ["https://tec.openplanner.team/stops/LLR4bra2", "https://tec.openplanner.team/stops/LLRsalm2"], ["https://tec.openplanner.team/stops/X672aga", "https://tec.openplanner.team/stops/X672akb"], ["https://tec.openplanner.team/stops/H4ne143b", "https://tec.openplanner.team/stops/H4wa161b"], ["https://tec.openplanner.team/stops/Bhalcbr2", "https://tec.openplanner.team/stops/Bhaltre2"], ["https://tec.openplanner.team/stops/X888aba", "https://tec.openplanner.team/stops/X888afa"], ["https://tec.openplanner.team/stops/X634ala", "https://tec.openplanner.team/stops/X654aea"], ["https://tec.openplanner.team/stops/Cbzfrom1", "https://tec.openplanner.team/stops/Cli4bra2"], ["https://tec.openplanner.team/stops/N230agb", "https://tec.openplanner.team/stops/N230aka"], ["https://tec.openplanner.team/stops/H1me112b", "https://tec.openplanner.team/stops/H1me114b"], ["https://tec.openplanner.team/stops/H4br109b", "https://tec.openplanner.team/stops/H4br111a"], ["https://tec.openplanner.team/stops/LSPastr1", "https://tec.openplanner.team/stops/LSPastr2"], ["https://tec.openplanner.team/stops/LLWcarr1", "https://tec.openplanner.team/stops/LOMtomb2"], ["https://tec.openplanner.team/stops/LPLg90-1", "https://tec.openplanner.team/stops/LPLg90-2"], ["https://tec.openplanner.team/stops/Croball1", "https://tec.openplanner.team/stops/Croball2"], ["https://tec.openplanner.team/stops/X806abb", "https://tec.openplanner.team/stops/X872aab"], ["https://tec.openplanner.team/stops/X542aca", "https://tec.openplanner.team/stops/X542acb"], ["https://tec.openplanner.team/stops/X695aca", "https://tec.openplanner.team/stops/X695ada"], ["https://tec.openplanner.team/stops/LAUbirv2", "https://tec.openplanner.team/stops/LHChomb2"], ["https://tec.openplanner.team/stops/LORhorp1", "https://tec.openplanner.team/stops/LORlieg1"], ["https://tec.openplanner.team/stops/X760aea", "https://tec.openplanner.team/stops/X762ada"], ["https://tec.openplanner.team/stops/LRemorr1", "https://tec.openplanner.team/stops/LRemorr3"], ["https://tec.openplanner.team/stops/X614aba", "https://tec.openplanner.team/stops/X614anb"], ["https://tec.openplanner.team/stops/N155aed", "https://tec.openplanner.team/stops/N155aga"], ["https://tec.openplanner.team/stops/LBLplac2", "https://tec.openplanner.team/stops/LBLplas2"], ["https://tec.openplanner.team/stops/Llgoutr2", "https://tec.openplanner.team/stops/Llgsime1"], ["https://tec.openplanner.team/stops/H4ty357a", "https://tec.openplanner.team/stops/H4ty397b"], ["https://tec.openplanner.team/stops/Bblafra1", "https://tec.openplanner.team/stops/Bblasta1"], ["https://tec.openplanner.team/stops/H1fr119a", "https://tec.openplanner.team/stops/H1fr133b"], ["https://tec.openplanner.team/stops/X908aha", "https://tec.openplanner.team/stops/X908aoc"], ["https://tec.openplanner.team/stops/Lsehtsa1", "https://tec.openplanner.team/stops/Lseresi1"], ["https://tec.openplanner.team/stops/H4ft138b", "https://tec.openplanner.team/stops/H4wu375a"], ["https://tec.openplanner.team/stops/LmImirf2", "https://tec.openplanner.team/stops/LvAschr1"], ["https://tec.openplanner.team/stops/N544acb", "https://tec.openplanner.team/stops/N544ada"], ["https://tec.openplanner.team/stops/H4ma200a", "https://tec.openplanner.team/stops/H4ma200b"], ["https://tec.openplanner.team/stops/Bwatlbr1", "https://tec.openplanner.team/stops/Bwatlbs2"], ["https://tec.openplanner.team/stops/X901aua", "https://tec.openplanner.team/stops/X901bqb"], ["https://tec.openplanner.team/stops/Csubosa1", "https://tec.openplanner.team/stops/Csygare3"], ["https://tec.openplanner.team/stops/LLrhaut3", "https://tec.openplanner.team/stops/LRE154-1"], ["https://tec.openplanner.team/stops/X982ala", "https://tec.openplanner.team/stops/X982bsa"], ["https://tec.openplanner.team/stops/Bcrncor2", "https://tec.openplanner.team/stops/Bcrngat1"], ["https://tec.openplanner.team/stops/N232aib", "https://tec.openplanner.team/stops/N232caa"], ["https://tec.openplanner.team/stops/H1ch105a", "https://tec.openplanner.team/stops/H4ld123b"], ["https://tec.openplanner.team/stops/LLWchat2", "https://tec.openplanner.team/stops/LLWpier2"], ["https://tec.openplanner.team/stops/H4wr173a", "https://tec.openplanner.team/stops/H4wr177b"], ["https://tec.openplanner.team/stops/Llgcham6", "https://tec.openplanner.team/stops/Llghars5"], ["https://tec.openplanner.team/stops/LeIkreu3", "https://tec.openplanner.team/stops/LeIkreu4"], ["https://tec.openplanner.team/stops/N170afa", "https://tec.openplanner.team/stops/NC14aca"], ["https://tec.openplanner.team/stops/Cacecol2", "https://tec.openplanner.team/stops/NC24abb"], ["https://tec.openplanner.team/stops/H4bu109a", "https://tec.openplanner.team/stops/H4bu109b"], ["https://tec.openplanner.team/stops/LVncarr1", "https://tec.openplanner.team/stops/LVnroch1"], ["https://tec.openplanner.team/stops/N521acb", "https://tec.openplanner.team/stops/N521aha"], ["https://tec.openplanner.team/stops/X670aaa", "https://tec.openplanner.team/stops/X670ara"], ["https://tec.openplanner.team/stops/LGegare1", "https://tec.openplanner.team/stops/LkEherg1"], ["https://tec.openplanner.team/stops/X752aaa", "https://tec.openplanner.team/stops/X752abb"], ["https://tec.openplanner.team/stops/Bbaulil1", "https://tec.openplanner.team/stops/Bnivche1"], ["https://tec.openplanner.team/stops/N243aaa", "https://tec.openplanner.team/stops/N243ada"], ["https://tec.openplanner.team/stops/LWHzave2", "https://tec.openplanner.team/stops/LWscona1"], ["https://tec.openplanner.team/stops/N331afa", "https://tec.openplanner.team/stops/N331afc"], ["https://tec.openplanner.team/stops/X991aca", "https://tec.openplanner.team/stops/X991adb"], ["https://tec.openplanner.team/stops/X911aab", "https://tec.openplanner.team/stops/X911ava"], ["https://tec.openplanner.team/stops/H5qu156c", "https://tec.openplanner.team/stops/H5qu156d"], ["https://tec.openplanner.team/stops/N338afa", "https://tec.openplanner.team/stops/N338afb"], ["https://tec.openplanner.team/stops/Cbwdoua2", "https://tec.openplanner.team/stops/Cmqn5912"], ["https://tec.openplanner.team/stops/Cjxegli2", "https://tec.openplanner.team/stops/Cjxpris2"], ["https://tec.openplanner.team/stops/LmNbirt1", "https://tec.openplanner.team/stops/LmNbirt2"], ["https://tec.openplanner.team/stops/Lsevico1", "https://tec.openplanner.team/stops/Lsevico2"], ["https://tec.openplanner.team/stops/Bbghepi2", "https://tec.openplanner.team/stops/Bbghpln1"], ["https://tec.openplanner.team/stops/Bllncyc1", "https://tec.openplanner.team/stops/Bllncyc2"], ["https://tec.openplanner.team/stops/H5rx122a", "https://tec.openplanner.team/stops/H5rx130b"], ["https://tec.openplanner.team/stops/LENtour1", "https://tec.openplanner.team/stops/LENtour2"], ["https://tec.openplanner.team/stops/LLRrape2", "https://tec.openplanner.team/stops/LLRrape3"], ["https://tec.openplanner.team/stops/N554abb", "https://tec.openplanner.team/stops/N573aoa"], ["https://tec.openplanner.team/stops/H5at107b", "https://tec.openplanner.team/stops/H5at123a"], ["https://tec.openplanner.team/stops/X662aeb", "https://tec.openplanner.team/stops/X663aga"], ["https://tec.openplanner.team/stops/N543bgd", "https://tec.openplanner.team/stops/N543bib"], ["https://tec.openplanner.team/stops/N550agb", "https://tec.openplanner.team/stops/N550ama"], ["https://tec.openplanner.team/stops/H4ca123b", "https://tec.openplanner.team/stops/H4ca124a"], ["https://tec.openplanner.team/stops/H1bo111a", "https://tec.openplanner.team/stops/H1bo111b"], ["https://tec.openplanner.team/stops/LSLeg--2", "https://tec.openplanner.team/stops/LSLvaux2"], ["https://tec.openplanner.team/stops/Bhtipir1", "https://tec.openplanner.team/stops/Bhtipir3"], ["https://tec.openplanner.team/stops/N528acb", "https://tec.openplanner.team/stops/N528aea"], ["https://tec.openplanner.team/stops/LCPconf1", "https://tec.openplanner.team/stops/LCPlacr2"], ["https://tec.openplanner.team/stops/H1mh113c", "https://tec.openplanner.team/stops/H1mh117a"], ["https://tec.openplanner.team/stops/N311aba", "https://tec.openplanner.team/stops/N368ada"], ["https://tec.openplanner.team/stops/X607aja", "https://tec.openplanner.team/stops/X607aka"], ["https://tec.openplanner.team/stops/H1hm173a", "https://tec.openplanner.team/stops/H1sp355a"], ["https://tec.openplanner.team/stops/LBPauto1", "https://tec.openplanner.team/stops/LBPauto2"], ["https://tec.openplanner.team/stops/N519aga", "https://tec.openplanner.team/stops/N519agb"], ["https://tec.openplanner.team/stops/X818ahb", "https://tec.openplanner.team/stops/X822adb"], ["https://tec.openplanner.team/stops/Bwatfau2", "https://tec.openplanner.team/stops/Bwatmbv1"], ["https://tec.openplanner.team/stops/LWberno1", "https://tec.openplanner.team/stops/X512aib"], ["https://tec.openplanner.team/stops/N538ava", "https://tec.openplanner.team/stops/N539ava"], ["https://tec.openplanner.team/stops/Bhaleur2", "https://tec.openplanner.team/stops/Bhalgja2"], ["https://tec.openplanner.team/stops/Cnaplan2", "https://tec.openplanner.team/stops/NC14aga"], ["https://tec.openplanner.team/stops/LKmdrie2", "https://tec.openplanner.team/stops/LKmmelo1"], ["https://tec.openplanner.team/stops/LFyWarc1", "https://tec.openplanner.team/stops/LFyWarc2"], ["https://tec.openplanner.team/stops/H1ro132a", "https://tec.openplanner.team/stops/H1ro136b"], ["https://tec.openplanner.team/stops/H2bh103d", "https://tec.openplanner.team/stops/H2fa112a"], ["https://tec.openplanner.team/stops/Bolppla3", "https://tec.openplanner.team/stops/Bolppla4"], ["https://tec.openplanner.team/stops/H2ll181a", "https://tec.openplanner.team/stops/H2ll181b"], ["https://tec.openplanner.team/stops/H4oq229a", "https://tec.openplanner.team/stops/H4oq229b"], ["https://tec.openplanner.team/stops/LPLarbo2", "https://tec.openplanner.team/stops/LPLheid2"], ["https://tec.openplanner.team/stops/LLCeg--1", "https://tec.openplanner.team/stops/LLCeg--2"], ["https://tec.openplanner.team/stops/LrAeife1", "https://tec.openplanner.team/stops/LrAiter1"], ["https://tec.openplanner.team/stops/LWEchat2", "https://tec.openplanner.team/stops/LWEmerm1"], ["https://tec.openplanner.team/stops/X660afb", "https://tec.openplanner.team/stops/X741alb"], ["https://tec.openplanner.team/stops/X666aab", "https://tec.openplanner.team/stops/X666aga"], ["https://tec.openplanner.team/stops/LnDkreu1", "https://tec.openplanner.team/stops/LnDthel1"], ["https://tec.openplanner.team/stops/N423abb", "https://tec.openplanner.team/stops/N423aga"], ["https://tec.openplanner.team/stops/Cjxvalh1", "https://tec.openplanner.team/stops/Cjxvalh2"], ["https://tec.openplanner.team/stops/X625aaa", "https://tec.openplanner.team/stops/X625aba"], ["https://tec.openplanner.team/stops/H2se106a", "https://tec.openplanner.team/stops/H2se109a"], ["https://tec.openplanner.team/stops/N556aea", "https://tec.openplanner.team/stops/N556afa"], ["https://tec.openplanner.team/stops/Bhtihau1", "https://tec.openplanner.team/stops/Bhtirin1"], ["https://tec.openplanner.team/stops/H4ss157b", "https://tec.openplanner.team/stops/H5rx100b"], ["https://tec.openplanner.team/stops/Bclgeco2", "https://tec.openplanner.team/stops/Bnilhau2"], ["https://tec.openplanner.team/stops/Bsmgmas1", "https://tec.openplanner.team/stops/Bsmgpla2"], ["https://tec.openplanner.team/stops/H1wa145a", "https://tec.openplanner.team/stops/H1wa145b"], ["https://tec.openplanner.team/stops/Cpibois1", "https://tec.openplanner.team/stops/Cpiegli1"], ["https://tec.openplanner.team/stops/Llghlau1", "https://tec.openplanner.team/stops/Llglaur2"], ["https://tec.openplanner.team/stops/Cpcchau", "https://tec.openplanner.team/stops/Cpctrau1"], ["https://tec.openplanner.team/stops/Bborcro1", "https://tec.openplanner.team/stops/Bborppa2"], ["https://tec.openplanner.team/stops/X779aga", "https://tec.openplanner.team/stops/X779ahb"], ["https://tec.openplanner.team/stops/LMomonc1", "https://tec.openplanner.team/stops/LMovieu1"], ["https://tec.openplanner.team/stops/Caibras2", "https://tec.openplanner.team/stops/N543chb"], ["https://tec.openplanner.team/stops/N232bia", "https://tec.openplanner.team/stops/N232cba"], ["https://tec.openplanner.team/stops/H5at122a", "https://tec.openplanner.team/stops/H5at122b"], ["https://tec.openplanner.team/stops/H3lr112a", "https://tec.openplanner.team/stops/H3lr117a"], ["https://tec.openplanner.team/stops/X224aab", "https://tec.openplanner.team/stops/X224agb"], ["https://tec.openplanner.team/stops/LlCgren1", "https://tec.openplanner.team/stops/LrApark2"], ["https://tec.openplanner.team/stops/X741aib", "https://tec.openplanner.team/stops/X741aid"], ["https://tec.openplanner.team/stops/X359ama", "https://tec.openplanner.team/stops/X858aha"], ["https://tec.openplanner.team/stops/N508alb", "https://tec.openplanner.team/stops/N508amb"], ["https://tec.openplanner.team/stops/Blimvcg2", "https://tec.openplanner.team/stops/Bottra91"], ["https://tec.openplanner.team/stops/Blhulil2", "https://tec.openplanner.team/stops/Blhurcl1"], ["https://tec.openplanner.team/stops/N244amb", "https://tec.openplanner.team/stops/N244anb"], ["https://tec.openplanner.team/stops/H4ln128a", "https://tec.openplanner.team/stops/H4ln129a"], ["https://tec.openplanner.team/stops/N539aab", "https://tec.openplanner.team/stops/N539aeb"], ["https://tec.openplanner.team/stops/X561aca", "https://tec.openplanner.team/stops/X561aea"], ["https://tec.openplanner.team/stops/H4bc102a", "https://tec.openplanner.team/stops/H4wr177a"], ["https://tec.openplanner.team/stops/Llgchai1", "https://tec.openplanner.team/stops/Llgdepo2"], ["https://tec.openplanner.team/stops/N506boa", "https://tec.openplanner.team/stops/N506boc"], ["https://tec.openplanner.team/stops/N501hlb", "https://tec.openplanner.team/stops/N501hlz"], ["https://tec.openplanner.team/stops/H1hi122b", "https://tec.openplanner.team/stops/H1ht131b"], ["https://tec.openplanner.team/stops/Bjodbat1", "https://tec.openplanner.team/stops/Bjodppe1"], ["https://tec.openplanner.team/stops/X344adb", "https://tec.openplanner.team/stops/X344aea"], ["https://tec.openplanner.team/stops/Chhsncb1", "https://tec.openplanner.team/stops/Chhverr1"], ["https://tec.openplanner.team/stops/LMAbass2", "https://tec.openplanner.team/stops/LMAcime2"], ["https://tec.openplanner.team/stops/N506bca", "https://tec.openplanner.team/stops/N506bcb"], ["https://tec.openplanner.team/stops/X601atb", "https://tec.openplanner.team/stops/X601aua"], ["https://tec.openplanner.team/stops/Bhakmkr2", "https://tec.openplanner.team/stops/Bneesj32"], ["https://tec.openplanner.team/stops/H4mo152a", "https://tec.openplanner.team/stops/H4mo185a"], ["https://tec.openplanner.team/stops/Cwfbarr1", "https://tec.openplanner.team/stops/Cwfmoul2"], ["https://tec.openplanner.team/stops/X595afc", "https://tec.openplanner.team/stops/X595ahb"], ["https://tec.openplanner.team/stops/H1hi122b", "https://tec.openplanner.team/stops/H1tl121b"], ["https://tec.openplanner.team/stops/N214aca", "https://tec.openplanner.team/stops/N236aia"], ["https://tec.openplanner.team/stops/H1hr118b", "https://tec.openplanner.team/stops/H1ne143b"], ["https://tec.openplanner.team/stops/H1ha185a", "https://tec.openplanner.team/stops/H1ha199b"], ["https://tec.openplanner.team/stops/X804aua", "https://tec.openplanner.team/stops/X804bob"], ["https://tec.openplanner.team/stops/N534aca", "https://tec.openplanner.team/stops/N534ada"], ["https://tec.openplanner.team/stops/X602ada", "https://tec.openplanner.team/stops/X602amb"], ["https://tec.openplanner.team/stops/Laghetr1", "https://tec.openplanner.team/stops/Lagindu2"], ["https://tec.openplanner.team/stops/Bohnmes4", "https://tec.openplanner.team/stops/Bohnpla2"], ["https://tec.openplanner.team/stops/H4ty276b", "https://tec.openplanner.team/stops/H4ty278b"], ["https://tec.openplanner.team/stops/X742ada", "https://tec.openplanner.team/stops/X742aea"], ["https://tec.openplanner.team/stops/Cmlceri1", "https://tec.openplanner.team/stops/Cmlceri2"], ["https://tec.openplanner.team/stops/Lghmeun2", "https://tec.openplanner.team/stops/Lghmeun3"], ["https://tec.openplanner.team/stops/LEN101-2", "https://tec.openplanner.team/stops/LEN42--2"], ["https://tec.openplanner.team/stops/LHEoutr1", "https://tec.openplanner.team/stops/LJOferm1"], ["https://tec.openplanner.team/stops/N115ada", "https://tec.openplanner.team/stops/N147aeb"], ["https://tec.openplanner.team/stops/Lloauto1", "https://tec.openplanner.team/stops/Llofort1"], ["https://tec.openplanner.team/stops/X818aeb", "https://tec.openplanner.team/stops/X818afa"], ["https://tec.openplanner.team/stops/LAMcime1", "https://tec.openplanner.team/stops/LAMcime2"], ["https://tec.openplanner.team/stops/H1fl133c", "https://tec.openplanner.team/stops/H1fl140a"], ["https://tec.openplanner.team/stops/LAxchpl2", "https://tec.openplanner.team/stops/Llianix3"], ["https://tec.openplanner.team/stops/Ladhomb2", "https://tec.openplanner.team/stops/Ladmoul2"], ["https://tec.openplanner.team/stops/X639acc", "https://tec.openplanner.team/stops/X639ada"], ["https://tec.openplanner.team/stops/Cdasama2", "https://tec.openplanner.team/stops/CMlpla2"], ["https://tec.openplanner.team/stops/Lprferm2", "https://tec.openplanner.team/stops/Lprhodi2"], ["https://tec.openplanner.team/stops/H2bh110c", "https://tec.openplanner.team/stops/H2bh120a"], ["https://tec.openplanner.team/stops/LeYmosc2", "https://tec.openplanner.team/stops/LeYraaf2"], ["https://tec.openplanner.team/stops/LHYec--1", "https://tec.openplanner.team/stops/LSpogne2"], ["https://tec.openplanner.team/stops/N141aob", "https://tec.openplanner.team/stops/N146aaa"], ["https://tec.openplanner.team/stops/H2lc170a", "https://tec.openplanner.team/stops/H2ll200a"], ["https://tec.openplanner.team/stops/Bnstmig1", "https://tec.openplanner.team/stops/H3go101b"], ["https://tec.openplanner.team/stops/X358aba", "https://tec.openplanner.team/stops/X358aca"], ["https://tec.openplanner.team/stops/Bsoihci1", "https://tec.openplanner.team/stops/Bsoihci2"], ["https://tec.openplanner.team/stops/Lemcort1", "https://tec.openplanner.team/stops/Lemcort2"], ["https://tec.openplanner.team/stops/Blsmcha2", "https://tec.openplanner.team/stops/Blsmjja1"], ["https://tec.openplanner.team/stops/N254aaa", "https://tec.openplanner.team/stops/N254abb"], ["https://tec.openplanner.team/stops/Lemcarm1", "https://tec.openplanner.team/stops/Lemcarm2"], ["https://tec.openplanner.team/stops/H4lz123a", "https://tec.openplanner.team/stops/H4lz160a"], ["https://tec.openplanner.team/stops/X615aab", "https://tec.openplanner.team/stops/X615baa"], ["https://tec.openplanner.team/stops/H1me113a", "https://tec.openplanner.team/stops/H1me113b"], ["https://tec.openplanner.team/stops/N501hsy", "https://tec.openplanner.team/stops/N501hsz"], ["https://tec.openplanner.team/stops/H4ty326b", "https://tec.openplanner.team/stops/H4vx361a"], ["https://tec.openplanner.team/stops/X824aib", "https://tec.openplanner.team/stops/X824akb"], ["https://tec.openplanner.team/stops/Cmcgoch1", "https://tec.openplanner.team/stops/Csyjumo2"], ["https://tec.openplanner.team/stops/H4do104a", "https://tec.openplanner.team/stops/H4mo195b"], ["https://tec.openplanner.team/stops/LNCtour1", "https://tec.openplanner.team/stops/LNCvann1"], ["https://tec.openplanner.team/stops/Lhubouq2", "https://tec.openplanner.team/stops/Lhulibe1"], ["https://tec.openplanner.team/stops/Ccocroi2", "https://tec.openplanner.team/stops/Csobrou2"], ["https://tec.openplanner.team/stops/H4pl111b", "https://tec.openplanner.team/stops/H4wn127b"], ["https://tec.openplanner.team/stops/LSldurb2", "https://tec.openplanner.team/stops/X919ajc"], ["https://tec.openplanner.team/stops/LFAplan1", "https://tec.openplanner.team/stops/LFAsauv2"], ["https://tec.openplanner.team/stops/X812bea", "https://tec.openplanner.team/stops/X857aba"], ["https://tec.openplanner.team/stops/Baudstr2", "https://tec.openplanner.team/stops/Bixefra1"], ["https://tec.openplanner.team/stops/X730abb", "https://tec.openplanner.team/stops/X730acb"], ["https://tec.openplanner.team/stops/Bgercen2", "https://tec.openplanner.team/stops/NB33aha"], ["https://tec.openplanner.team/stops/Llgcour2", "https://tec.openplanner.team/stops/Llgm%C3%A9di1"], ["https://tec.openplanner.team/stops/H4hx122a", "https://tec.openplanner.team/stops/H4wa153a"], ["https://tec.openplanner.team/stops/X728adb", "https://tec.openplanner.team/stops/X746aab"], ["https://tec.openplanner.team/stops/Caicalv1", "https://tec.openplanner.team/stops/Cprcits1"], ["https://tec.openplanner.team/stops/H4fl113a", "https://tec.openplanner.team/stops/H4fl115a"], ["https://tec.openplanner.team/stops/Blempuc2", "https://tec.openplanner.team/stops/Blemwro2"], ["https://tec.openplanner.team/stops/N553afa", "https://tec.openplanner.team/stops/N553akb"], ["https://tec.openplanner.team/stops/N528asa", "https://tec.openplanner.team/stops/N528aub"], ["https://tec.openplanner.team/stops/LWieg--*", "https://tec.openplanner.team/stops/LXhcite1"], ["https://tec.openplanner.team/stops/Lsweg--2", "https://tec.openplanner.team/stops/Lwaaube2"], ["https://tec.openplanner.team/stops/LBpbruy1", "https://tec.openplanner.team/stops/LBpcren1"], ["https://tec.openplanner.team/stops/H4rx142a", "https://tec.openplanner.team/stops/H4tg170a"], ["https://tec.openplanner.team/stops/X783acc", "https://tec.openplanner.team/stops/X783acd"], ["https://tec.openplanner.team/stops/CMlpla1", "https://tec.openplanner.team/stops/CMlpla2"], ["https://tec.openplanner.team/stops/Cdajume2", "https://tec.openplanner.team/stops/Cmaegli2"], ["https://tec.openplanner.team/stops/Cgycorv2", "https://tec.openplanner.team/stops/Cgycorv4"], ["https://tec.openplanner.team/stops/X614aca", "https://tec.openplanner.team/stops/X614azb"], ["https://tec.openplanner.team/stops/Cbwmvri1", "https://tec.openplanner.team/stops/Cmgtour2"], ["https://tec.openplanner.team/stops/Bmarfjo1", "https://tec.openplanner.team/stops/Bmarpla2"], ["https://tec.openplanner.team/stops/H4wr173b", "https://tec.openplanner.team/stops/H4wr177b"], ["https://tec.openplanner.team/stops/LLTfall1", "https://tec.openplanner.team/stops/LLThosd2"], ["https://tec.openplanner.team/stops/X654aaa", "https://tec.openplanner.team/stops/X654aab"], ["https://tec.openplanner.team/stops/Llgplop2", "https://tec.openplanner.team/stops/Lvtchpl2"], ["https://tec.openplanner.team/stops/H4ar103a", "https://tec.openplanner.team/stops/H4ar172b"], ["https://tec.openplanner.team/stops/N232bhb", "https://tec.openplanner.team/stops/N232bib"], ["https://tec.openplanner.team/stops/LSPguer1", "https://tec.openplanner.team/stops/LSPsorb1"], ["https://tec.openplanner.team/stops/LAmbach1", "https://tec.openplanner.team/stops/LAmwaut2"], ["https://tec.openplanner.team/stops/X721aqb", "https://tec.openplanner.team/stops/X721ata"], ["https://tec.openplanner.team/stops/Lemcarm2", "https://tec.openplanner.team/stops/Lvcreve1"], ["https://tec.openplanner.team/stops/N506bea", "https://tec.openplanner.team/stops/N506bka"], ["https://tec.openplanner.team/stops/LOucuve1", "https://tec.openplanner.team/stops/LOucuve2"], ["https://tec.openplanner.team/stops/X654aha", "https://tec.openplanner.team/stops/X654ahb"], ["https://tec.openplanner.team/stops/Bwatabs1", "https://tec.openplanner.team/stops/Bwatabs2"], ["https://tec.openplanner.team/stops/H1hc125a", "https://tec.openplanner.team/stops/H1hc125b"], ["https://tec.openplanner.team/stops/LHTeg--2", "https://tec.openplanner.team/stops/LHTeg--4"], ["https://tec.openplanner.team/stops/Cchsud08", "https://tec.openplanner.team/stops/NC01aab"], ["https://tec.openplanner.team/stops/H4ka179a", "https://tec.openplanner.team/stops/H4ka194a"], ["https://tec.openplanner.team/stops/N308bca", "https://tec.openplanner.team/stops/N308bgb"], ["https://tec.openplanner.team/stops/LhOfrie1", "https://tec.openplanner.team/stops/LwEdorf2"], ["https://tec.openplanner.team/stops/Bbsifml2", "https://tec.openplanner.team/stops/Blilgar1"], ["https://tec.openplanner.team/stops/N141aja", "https://tec.openplanner.team/stops/N146aab"], ["https://tec.openplanner.team/stops/N501cxa", "https://tec.openplanner.team/stops/N501cxb"], ["https://tec.openplanner.team/stops/X886abd", "https://tec.openplanner.team/stops/X886ada"], ["https://tec.openplanner.team/stops/N232bjb", "https://tec.openplanner.team/stops/N232cbb"], ["https://tec.openplanner.team/stops/LPLmonu1", "https://tec.openplanner.team/stops/LPLphar2"], ["https://tec.openplanner.team/stops/LCFchir1", "https://tec.openplanner.team/stops/LCFchir2"], ["https://tec.openplanner.team/stops/X879anb", "https://tec.openplanner.team/stops/X879aqb"], ["https://tec.openplanner.team/stops/N544afa", "https://tec.openplanner.team/stops/N545aab"], ["https://tec.openplanner.team/stops/Bndb4ch2", "https://tec.openplanner.team/stops/Bptblma1"], ["https://tec.openplanner.team/stops/N579aba", "https://tec.openplanner.team/stops/N579abb"], ["https://tec.openplanner.team/stops/LHAvall1", "https://tec.openplanner.team/stops/LRItour1"], ["https://tec.openplanner.team/stops/Llgpont1", "https://tec.openplanner.team/stops/Llgstap2"], ["https://tec.openplanner.team/stops/H4ty291b", "https://tec.openplanner.team/stops/H4ty352a"], ["https://tec.openplanner.team/stops/LbAhenk1", "https://tec.openplanner.team/stops/LbAhenk2"], ["https://tec.openplanner.team/stops/X896aba", "https://tec.openplanner.team/stops/X898afa"], ["https://tec.openplanner.team/stops/H1hc151a", "https://tec.openplanner.team/stops/H1hc151b"], ["https://tec.openplanner.team/stops/Bbealbu4", "https://tec.openplanner.team/stops/Bbealon3"], ["https://tec.openplanner.team/stops/N543clb", "https://tec.openplanner.team/stops/N543cob"], ["https://tec.openplanner.team/stops/Cvpbifu2", "https://tec.openplanner.team/stops/Cvpsthu1"], ["https://tec.openplanner.team/stops/N501chb", "https://tec.openplanner.team/stops/N501chc"], ["https://tec.openplanner.team/stops/N135axa", "https://tec.openplanner.team/stops/N135aya"], ["https://tec.openplanner.team/stops/LBRbriv1", "https://tec.openplanner.team/stops/LBRmout3"], ["https://tec.openplanner.team/stops/LTHturo3", "https://tec.openplanner.team/stops/LTHturo4"], ["https://tec.openplanner.team/stops/N529ada", "https://tec.openplanner.team/stops/N584aqa"], ["https://tec.openplanner.team/stops/H2jo162b", "https://tec.openplanner.team/stops/H2lh125b"], ["https://tec.openplanner.team/stops/LBEmich1", "https://tec.openplanner.team/stops/LDLheid1"], ["https://tec.openplanner.team/stops/Bbiemse2", "https://tec.openplanner.team/stops/Bbiepon1"], ["https://tec.openplanner.team/stops/H5at104a", "https://tec.openplanner.team/stops/H5at116d"], ["https://tec.openplanner.team/stops/H4do105a", "https://tec.openplanner.team/stops/H4do105b"], ["https://tec.openplanner.team/stops/Ccicouc2", "https://tec.openplanner.team/stops/Ccipech2"], ["https://tec.openplanner.team/stops/H1ms904a", "https://tec.openplanner.team/stops/H1ms925a"], ["https://tec.openplanner.team/stops/Lglsana1", "https://tec.openplanner.team/stops/Lglsana2"], ["https://tec.openplanner.team/stops/Bplnegl1", "https://tec.openplanner.team/stops/Bplnegl2"], ["https://tec.openplanner.team/stops/LCAeg--2", "https://tec.openplanner.team/stops/LCAwals1"], ["https://tec.openplanner.team/stops/LLYchpl2", "https://tec.openplanner.team/stops/LLYpeup2"], ["https://tec.openplanner.team/stops/Caibras2", "https://tec.openplanner.team/stops/Caioign3"], ["https://tec.openplanner.team/stops/H3so154a", "https://tec.openplanner.team/stops/H3so176b"], ["https://tec.openplanner.team/stops/H4ss158a", "https://tec.openplanner.team/stops/H5rx101b"], ["https://tec.openplanner.team/stops/X982aga", "https://tec.openplanner.team/stops/X982agb"], ["https://tec.openplanner.team/stops/H4ty308e", "https://tec.openplanner.team/stops/H4ty317a"], ["https://tec.openplanner.team/stops/H4ma398a", "https://tec.openplanner.team/stops/H4ma400a"], ["https://tec.openplanner.team/stops/N501ffb", "https://tec.openplanner.team/stops/N501hab"], ["https://tec.openplanner.team/stops/H1bl104b", "https://tec.openplanner.team/stops/H1pd141a"], ["https://tec.openplanner.team/stops/N507aac", "https://tec.openplanner.team/stops/N507aad"], ["https://tec.openplanner.team/stops/X547ara", "https://tec.openplanner.team/stops/X548adb"], ["https://tec.openplanner.team/stops/N531asc", "https://tec.openplanner.team/stops/N561aib"], ["https://tec.openplanner.team/stops/Ladchat2", "https://tec.openplanner.team/stops/Laddelc2"], ["https://tec.openplanner.team/stops/X608aoa", "https://tec.openplanner.team/stops/X608axa"], ["https://tec.openplanner.team/stops/Lhutran1", "https://tec.openplanner.team/stops/Lmnrame1"], ["https://tec.openplanner.team/stops/Cchcase4", "https://tec.openplanner.team/stops/Cchparc4"], ["https://tec.openplanner.team/stops/N511anb", "https://tec.openplanner.team/stops/N511ara"], ["https://tec.openplanner.team/stops/H2lh130a", "https://tec.openplanner.team/stops/H2lh132a"], ["https://tec.openplanner.team/stops/N502aba", "https://tec.openplanner.team/stops/N503aab"], ["https://tec.openplanner.team/stops/N516aha", "https://tec.openplanner.team/stops/N516amb"], ["https://tec.openplanner.team/stops/X943ada", "https://tec.openplanner.team/stops/X943afa"], ["https://tec.openplanner.team/stops/H4mv192a", "https://tec.openplanner.team/stops/H4mv195a"], ["https://tec.openplanner.team/stops/LBBcarr1", "https://tec.openplanner.team/stops/LOccarr1"], ["https://tec.openplanner.team/stops/Lfhpast1", "https://tec.openplanner.team/stops/Ljedepa1"], ["https://tec.openplanner.team/stops/N132aab", "https://tec.openplanner.team/stops/N132afa"], ["https://tec.openplanner.team/stops/LAWroug1", "https://tec.openplanner.team/stops/Llofort1"], ["https://tec.openplanner.team/stops/Bovecha1", "https://tec.openplanner.team/stops/Bovetsa1"], ["https://tec.openplanner.team/stops/LLvgare2", "https://tec.openplanner.team/stops/NL81ada"], ["https://tec.openplanner.team/stops/N204aba", "https://tec.openplanner.team/stops/N204acb"], ["https://tec.openplanner.team/stops/Bcbqegl1", "https://tec.openplanner.team/stops/Btubnav1"], ["https://tec.openplanner.team/stops/LVlfooz2", "https://tec.openplanner.team/stops/LVlfooz4"], ["https://tec.openplanner.team/stops/X777abb", "https://tec.openplanner.team/stops/X784abb"], ["https://tec.openplanner.team/stops/H4bu108b", "https://tec.openplanner.team/stops/H4bu109a"], ["https://tec.openplanner.team/stops/H1ms251b", "https://tec.openplanner.team/stops/H1ms309b"], ["https://tec.openplanner.team/stops/Loureno1", "https://tec.openplanner.team/stops/Loureno2"], ["https://tec.openplanner.team/stops/LeIpiro4", "https://tec.openplanner.team/stops/LiVkreu3"], ["https://tec.openplanner.team/stops/LSkdouf2", "https://tec.openplanner.team/stops/LSkoran2"], ["https://tec.openplanner.team/stops/H4co103b", "https://tec.openplanner.team/stops/H4co134a"], ["https://tec.openplanner.team/stops/Llgbaro1", "https://tec.openplanner.team/stops/Llgoeil1"], ["https://tec.openplanner.team/stops/H1ms290a", "https://tec.openplanner.team/stops/H1ms314b"], ["https://tec.openplanner.team/stops/N229akb", "https://tec.openplanner.team/stops/N229aua"], ["https://tec.openplanner.team/stops/H2sb221b", "https://tec.openplanner.team/stops/H2sb228c"], ["https://tec.openplanner.team/stops/X633aaa", "https://tec.openplanner.team/stops/X633aba"], ["https://tec.openplanner.team/stops/Bsdafra1", "https://tec.openplanner.team/stops/Bsdampe1"], ["https://tec.openplanner.team/stops/LBKmare2", "https://tec.openplanner.team/stops/LBveg--2"], ["https://tec.openplanner.team/stops/H2bh121a", "https://tec.openplanner.team/stops/H2lc172a"], ["https://tec.openplanner.team/stops/LlgOPER4", "https://tec.openplanner.team/stops/LlgR-Fr*"], ["https://tec.openplanner.team/stops/LPLcent1", "https://tec.openplanner.team/stops/LPLphar2"], ["https://tec.openplanner.team/stops/N531ana", "https://tec.openplanner.team/stops/N576agb"], ["https://tec.openplanner.team/stops/Bgntpos2", "https://tec.openplanner.team/stops/Bsgeegl1"], ["https://tec.openplanner.team/stops/Bnilspe1", "https://tec.openplanner.team/stops/Bnilspe3"], ["https://tec.openplanner.team/stops/H2ha142a", "https://tec.openplanner.team/stops/H2hg156b"], ["https://tec.openplanner.team/stops/N236aja", "https://tec.openplanner.team/stops/N236apa"], ["https://tec.openplanner.team/stops/N528avb", "https://tec.openplanner.team/stops/N528awa"], ["https://tec.openplanner.team/stops/Llgborg2", "https://tec.openplanner.team/stops/Llghori2"], ["https://tec.openplanner.team/stops/N584abb", "https://tec.openplanner.team/stops/N584acb"], ["https://tec.openplanner.team/stops/Bottcba2", "https://tec.openplanner.team/stops/Bottpar1"], ["https://tec.openplanner.team/stops/Cbctile", "https://tec.openplanner.team/stops/H1lo119a"], ["https://tec.openplanner.team/stops/H4wp151b", "https://tec.openplanner.team/stops/H4wp153a"], ["https://tec.openplanner.team/stops/X738aab", "https://tec.openplanner.team/stops/X739aab"], ["https://tec.openplanner.team/stops/Bmrleco1", "https://tec.openplanner.team/stops/Bmrlegl1"], ["https://tec.openplanner.team/stops/H4mo170a", "https://tec.openplanner.team/stops/H4mo170b"], ["https://tec.openplanner.team/stops/N343acb", "https://tec.openplanner.team/stops/N343amb"], ["https://tec.openplanner.team/stops/Bnivjli2", "https://tec.openplanner.team/stops/Bnivzon2"], ["https://tec.openplanner.team/stops/LVbgend2", "https://tec.openplanner.team/stops/LVbstre2"], ["https://tec.openplanner.team/stops/N141afa", "https://tec.openplanner.team/stops/N141afb"], ["https://tec.openplanner.team/stops/Clb4bra2", "https://tec.openplanner.team/stops/Clbentr2"], ["https://tec.openplanner.team/stops/LFCscho1", "https://tec.openplanner.team/stops/LFCvoge3"], ["https://tec.openplanner.team/stops/Bwspjon2", "https://tec.openplanner.team/stops/Bwspspa1"], ["https://tec.openplanner.team/stops/H4ir165a", "https://tec.openplanner.team/stops/H5at108b"], ["https://tec.openplanner.team/stops/N534bqb", "https://tec.openplanner.team/stops/N553aca"], ["https://tec.openplanner.team/stops/N534axb", "https://tec.openplanner.team/stops/N534bba"], ["https://tec.openplanner.team/stops/LBCtros1", "https://tec.openplanner.team/stops/LGDgdou1"], ["https://tec.openplanner.team/stops/LHgdari2", "https://tec.openplanner.team/stops/LHgtomb1"], ["https://tec.openplanner.team/stops/H3bi107a", "https://tec.openplanner.team/stops/H3bi110a"], ["https://tec.openplanner.team/stops/LeUnisp1", "https://tec.openplanner.team/stops/LeUwert1"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LCxc6191"], ["https://tec.openplanner.team/stops/N549aea", "https://tec.openplanner.team/stops/N549aeb"], ["https://tec.openplanner.team/stops/LAyfren1", "https://tec.openplanner.team/stops/Lmapomm1"], ["https://tec.openplanner.team/stops/N553ada", "https://tec.openplanner.team/stops/N553aoa"], ["https://tec.openplanner.team/stops/H1mj131a", "https://tec.openplanner.team/stops/H1ml109a"], ["https://tec.openplanner.team/stops/Csufrom5", "https://tec.openplanner.team/stops/Csuptou2"], ["https://tec.openplanner.team/stops/X782adb", "https://tec.openplanner.team/stops/X782aeb"], ["https://tec.openplanner.team/stops/X870afa", "https://tec.openplanner.team/stops/X870afb"], ["https://tec.openplanner.team/stops/LNOpt--1", "https://tec.openplanner.team/stops/LREheyd1"], ["https://tec.openplanner.team/stops/N127ada", "https://tec.openplanner.team/stops/N135bda"], ["https://tec.openplanner.team/stops/Ccutrav2", "https://tec.openplanner.team/stops/Ccuwil1"], ["https://tec.openplanner.team/stops/Bolgcsa1", "https://tec.openplanner.team/stops/Bolgeva1"], ["https://tec.openplanner.team/stops/Cmaleri1", "https://tec.openplanner.team/stops/Cmaleri2"], ["https://tec.openplanner.team/stops/Cjucpui1", "https://tec.openplanner.team/stops/Cjumarc4"], ["https://tec.openplanner.team/stops/X912abb", "https://tec.openplanner.team/stops/X912alb"], ["https://tec.openplanner.team/stops/N542amb", "https://tec.openplanner.team/stops/N542asb"], ["https://tec.openplanner.team/stops/Lmlmich1", "https://tec.openplanner.team/stops/Lmlrosa1"], ["https://tec.openplanner.team/stops/H1hw119b", "https://tec.openplanner.team/stops/H1ls110a"], ["https://tec.openplanner.team/stops/N573abb", "https://tec.openplanner.team/stops/NC44ada"], ["https://tec.openplanner.team/stops/Llg20ao3", "https://tec.openplanner.team/stops/Llgrege2"], ["https://tec.openplanner.team/stops/H1hw118a", "https://tec.openplanner.team/stops/H1mc129b"], ["https://tec.openplanner.team/stops/Bbwacol2", "https://tec.openplanner.team/stops/Bwavlon1"], ["https://tec.openplanner.team/stops/Llgpara2", "https://tec.openplanner.team/stops/Llgparc1"], ["https://tec.openplanner.team/stops/Cprlpre2", "https://tec.openplanner.team/stops/Cprsapv1"], ["https://tec.openplanner.team/stops/H4es112b", "https://tec.openplanner.team/stops/H4ev125b"], ["https://tec.openplanner.team/stops/LXoeg--3", "https://tec.openplanner.team/stops/LXoeg--4"], ["https://tec.openplanner.team/stops/Cfocant1", "https://tec.openplanner.team/stops/Cfocant2"], ["https://tec.openplanner.team/stops/LCEplac1", "https://tec.openplanner.team/stops/LCEplac2"], ["https://tec.openplanner.team/stops/X743ada", "https://tec.openplanner.team/stops/X743aeb"], ["https://tec.openplanner.team/stops/LFocent2", "https://tec.openplanner.team/stops/LJAsuri2"], ["https://tec.openplanner.team/stops/X619aca", "https://tec.openplanner.team/stops/X619ada"], ["https://tec.openplanner.team/stops/N555aba", "https://tec.openplanner.team/stops/N573aib"], ["https://tec.openplanner.team/stops/LAUneuv4", "https://tec.openplanner.team/stops/LAUnico2"], ["https://tec.openplanner.team/stops/H2be100a", "https://tec.openplanner.team/stops/H2lh130a"], ["https://tec.openplanner.team/stops/LdUkreu3", "https://tec.openplanner.team/stops/LlE02--1"], ["https://tec.openplanner.team/stops/LVLchem1", "https://tec.openplanner.team/stops/LVLhalb1"], ["https://tec.openplanner.team/stops/LATdieu1", "https://tec.openplanner.team/stops/LHUfali2"], ["https://tec.openplanner.team/stops/LFCalte2", "https://tec.openplanner.team/stops/LFClage2"], ["https://tec.openplanner.team/stops/Cchsud05", "https://tec.openplanner.team/stops/Cmlgoff1"], ["https://tec.openplanner.team/stops/N562alc", "https://tec.openplanner.team/stops/N570aab"], ["https://tec.openplanner.team/stops/LbOdorf1", "https://tec.openplanner.team/stops/LbOlier2"], ["https://tec.openplanner.team/stops/X342ada", "https://tec.openplanner.team/stops/X346abb"], ["https://tec.openplanner.team/stops/H1bb115a", "https://tec.openplanner.team/stops/H1bb116c"], ["https://tec.openplanner.team/stops/X793aia", "https://tec.openplanner.team/stops/X793ajb"], ["https://tec.openplanner.team/stops/Bsgeegl3", "https://tec.openplanner.team/stops/Bsgeegl4"], ["https://tec.openplanner.team/stops/LbTgeme2", "https://tec.openplanner.team/stops/LwYbruc1"], ["https://tec.openplanner.team/stops/X620aba", "https://tec.openplanner.team/stops/X620agb"], ["https://tec.openplanner.team/stops/X661aka", "https://tec.openplanner.team/stops/X672ala"], ["https://tec.openplanner.team/stops/X657aeb", "https://tec.openplanner.team/stops/X671aaa"], ["https://tec.openplanner.team/stops/N501fwa", "https://tec.openplanner.team/stops/N501fwz"], ["https://tec.openplanner.team/stops/N122aba", "https://tec.openplanner.team/stops/N150aea"], ["https://tec.openplanner.team/stops/LLGramk1", "https://tec.openplanner.team/stops/LORdtec*"], ["https://tec.openplanner.team/stops/Beclbse2", "https://tec.openplanner.team/stops/Beclpma2"], ["https://tec.openplanner.team/stops/H4ka182a", "https://tec.openplanner.team/stops/H4ka394b"], ["https://tec.openplanner.team/stops/Lvchaus1", "https://tec.openplanner.team/stops/Lvcvand1"], ["https://tec.openplanner.team/stops/H1pa112b", "https://tec.openplanner.team/stops/H1pa166a"], ["https://tec.openplanner.team/stops/LHNland1", "https://tec.openplanner.team/stops/LHNtill2"], ["https://tec.openplanner.team/stops/X879ara", "https://tec.openplanner.team/stops/X879asb"], ["https://tec.openplanner.team/stops/X724aaa", "https://tec.openplanner.team/stops/X768aab"], ["https://tec.openplanner.team/stops/LLUtill2", "https://tec.openplanner.team/stops/LLUtill4"], ["https://tec.openplanner.team/stops/H1ha193b", "https://tec.openplanner.team/stops/H1ms282b"], ["https://tec.openplanner.team/stops/Craappa1", "https://tec.openplanner.team/stops/Cracave2"], ["https://tec.openplanner.team/stops/N507agb", "https://tec.openplanner.team/stops/N507aob"], ["https://tec.openplanner.team/stops/H1et101b", "https://tec.openplanner.team/stops/H1gh147a"], ["https://tec.openplanner.team/stops/Lmimc--1", "https://tec.openplanner.team/stops/Lmimili1"], ["https://tec.openplanner.team/stops/X221aad", "https://tec.openplanner.team/stops/X394afb"], ["https://tec.openplanner.team/stops/X637aca", "https://tec.openplanner.team/stops/X637aqa"], ["https://tec.openplanner.team/stops/N301aba", "https://tec.openplanner.team/stops/N301abc"], ["https://tec.openplanner.team/stops/Bhenard4", "https://tec.openplanner.team/stops/Bvirrbo2"], ["https://tec.openplanner.team/stops/Lmldama2", "https://tec.openplanner.team/stops/Lpocent2"], ["https://tec.openplanner.team/stops/LLmvict1", "https://tec.openplanner.team/stops/LRemonu2"], ["https://tec.openplanner.team/stops/LmNha151", "https://tec.openplanner.team/stops/LmNha152"], ["https://tec.openplanner.team/stops/LRRbuta2", "https://tec.openplanner.team/stops/LRRmanc2"], ["https://tec.openplanner.team/stops/Clihame1", "https://tec.openplanner.team/stops/Cmehame1"], ["https://tec.openplanner.team/stops/N547ada", "https://tec.openplanner.team/stops/N547aea"], ["https://tec.openplanner.team/stops/H4eh100a", "https://tec.openplanner.team/stops/H4wg122b"], ["https://tec.openplanner.team/stops/X750bdb", "https://tec.openplanner.team/stops/X750bfb"], ["https://tec.openplanner.team/stops/Cchcime1", "https://tec.openplanner.team/stops/Cchlamb2"], ["https://tec.openplanner.team/stops/H1gi118a", "https://tec.openplanner.team/stops/H1gi121a"], ["https://tec.openplanner.team/stops/Clbbonn3", "https://tec.openplanner.team/stops/Clbchar2"], ["https://tec.openplanner.team/stops/LJueg--1", "https://tec.openplanner.team/stops/LJuhaie2"], ["https://tec.openplanner.team/stops/Cbmgrav2", "https://tec.openplanner.team/stops/Cbmvalt2"], ["https://tec.openplanner.team/stops/Csachas2", "https://tec.openplanner.team/stops/Csawagn2"], ["https://tec.openplanner.team/stops/N535aeb", "https://tec.openplanner.team/stops/N535ahb"], ["https://tec.openplanner.team/stops/X624aha", "https://tec.openplanner.team/stops/X624ahb"], ["https://tec.openplanner.team/stops/Cflmarc1", "https://tec.openplanner.team/stops/Cwgmell1"], ["https://tec.openplanner.team/stops/H4ep130b", "https://tec.openplanner.team/stops/H4rm113b"], ["https://tec.openplanner.team/stops/N509aab", "https://tec.openplanner.team/stops/N509agb"], ["https://tec.openplanner.team/stops/X919aab", "https://tec.openplanner.team/stops/X919ahb"], ["https://tec.openplanner.team/stops/H5bl117c", "https://tec.openplanner.team/stops/H5bl144b"], ["https://tec.openplanner.team/stops/N102aaa", "https://tec.openplanner.team/stops/N116acb"], ["https://tec.openplanner.team/stops/X882aab", "https://tec.openplanner.team/stops/X882agb"], ["https://tec.openplanner.team/stops/X715ada", "https://tec.openplanner.team/stops/X715adb"], ["https://tec.openplanner.team/stops/Btanpla1", "https://tec.openplanner.team/stops/Btanpla3"], ["https://tec.openplanner.team/stops/LSUvill1", "https://tec.openplanner.team/stops/LSUvill2"], ["https://tec.openplanner.team/stops/X917adb", "https://tec.openplanner.team/stops/X921anb"], ["https://tec.openplanner.team/stops/X747aba", "https://tec.openplanner.team/stops/X747acb"], ["https://tec.openplanner.team/stops/Cfcgrat1", "https://tec.openplanner.team/stops/Cfcleco2"], ["https://tec.openplanner.team/stops/LVEfize1", "https://tec.openplanner.team/stops/LVEfize2"], ["https://tec.openplanner.team/stops/LBTcarr3", "https://tec.openplanner.team/stops/LBTfoot2"], ["https://tec.openplanner.team/stops/N121aib", "https://tec.openplanner.team/stops/N158aba"], ["https://tec.openplanner.team/stops/N338aea", "https://tec.openplanner.team/stops/N338afa"], ["https://tec.openplanner.team/stops/X749aea", "https://tec.openplanner.team/stops/X749aeb"], ["https://tec.openplanner.team/stops/LOTsav-2", "https://tec.openplanner.team/stops/LRUhama2"], ["https://tec.openplanner.team/stops/LHCpaci1", "https://tec.openplanner.team/stops/LHCruyf2"], ["https://tec.openplanner.team/stops/Cfabnat1", "https://tec.openplanner.team/stops/Cfapiro1"], ["https://tec.openplanner.team/stops/Bnivfro1", "https://tec.openplanner.team/stops/Bnivgen2"], ["https://tec.openplanner.team/stops/H4pl117b", "https://tec.openplanner.team/stops/H4pl135b"], ["https://tec.openplanner.team/stops/LPRcha-*", "https://tec.openplanner.team/stops/LPRmc--4"], ["https://tec.openplanner.team/stops/X801caa", "https://tec.openplanner.team/stops/X801cca"], ["https://tec.openplanner.team/stops/Lcceg--1", "https://tec.openplanner.team/stops/Lfhhoul2"], ["https://tec.openplanner.team/stops/Bgrmfon1", "https://tec.openplanner.team/stops/Bgrmpsn1"], ["https://tec.openplanner.team/stops/N163aaa", "https://tec.openplanner.team/stops/N165acb"], ["https://tec.openplanner.team/stops/LFEn6--1", "https://tec.openplanner.team/stops/LFtn6--2"], ["https://tec.openplanner.team/stops/H4ta125b", "https://tec.openplanner.team/stops/H4ta125c"], ["https://tec.openplanner.team/stops/H1ba105b", "https://tec.openplanner.team/stops/H1si154a"], ["https://tec.openplanner.team/stops/Bflccav1", "https://tec.openplanner.team/stops/Bflccav2"], ["https://tec.openplanner.team/stops/LLOnand1", "https://tec.openplanner.team/stops/LTatult1"], ["https://tec.openplanner.team/stops/N574abb", "https://tec.openplanner.team/stops/N574aca"], ["https://tec.openplanner.team/stops/Chhclde2", "https://tec.openplanner.team/stops/Cnafont2"], ["https://tec.openplanner.team/stops/NL37aka", "https://tec.openplanner.team/stops/NL37akb"], ["https://tec.openplanner.team/stops/N241aab", "https://tec.openplanner.team/stops/N585aba"], ["https://tec.openplanner.team/stops/Lcefoxh1", "https://tec.openplanner.team/stops/Lcesart2"], ["https://tec.openplanner.team/stops/X670amb", "https://tec.openplanner.team/stops/X670anb"], ["https://tec.openplanner.team/stops/Lgdstoc2", "https://tec.openplanner.team/stops/LXHeg--2"], ["https://tec.openplanner.team/stops/H1wa137b", "https://tec.openplanner.team/stops/H1wa164b"], ["https://tec.openplanner.team/stops/X897aob", "https://tec.openplanner.team/stops/X897apb"], ["https://tec.openplanner.team/stops/LLrc1991", "https://tec.openplanner.team/stops/LLrcour1"], ["https://tec.openplanner.team/stops/LDaeg--2", "https://tec.openplanner.team/stops/LLYplac1"], ["https://tec.openplanner.team/stops/X638aeb", "https://tec.openplanner.team/stops/X638aoa"], ["https://tec.openplanner.team/stops/H1ht121b", "https://tec.openplanner.team/stops/H1ht124a"], ["https://tec.openplanner.team/stops/Blhueso2", "https://tec.openplanner.team/stops/Blhutma1"], ["https://tec.openplanner.team/stops/Bbldgar2", "https://tec.openplanner.team/stops/Bbldvaa2"], ["https://tec.openplanner.team/stops/X804ada", "https://tec.openplanner.team/stops/X804bza"], ["https://tec.openplanner.team/stops/N308aaa", "https://tec.openplanner.team/stops/N308asa"], ["https://tec.openplanner.team/stops/N425aeb", "https://tec.openplanner.team/stops/N425afa"], ["https://tec.openplanner.team/stops/N534bxa", "https://tec.openplanner.team/stops/N561ada"], ["https://tec.openplanner.team/stops/H5st167b", "https://tec.openplanner.team/stops/H5st168a"], ["https://tec.openplanner.team/stops/Bjodrrg1", "https://tec.openplanner.team/stops/Bsjgegl1"], ["https://tec.openplanner.team/stops/N514aja", "https://tec.openplanner.team/stops/N516aob"], ["https://tec.openplanner.team/stops/LENchem1", "https://tec.openplanner.team/stops/LENsent1"], ["https://tec.openplanner.team/stops/H1wa156a", "https://tec.openplanner.team/stops/H1wa163b"], ["https://tec.openplanner.team/stops/Bvirpla1", "https://tec.openplanner.team/stops/Bvirpla2"], ["https://tec.openplanner.team/stops/N543aja", "https://tec.openplanner.team/stops/N543azb"], ["https://tec.openplanner.team/stops/LLemonu2", "https://tec.openplanner.team/stops/X547atb"], ["https://tec.openplanner.team/stops/LmS11--1", "https://tec.openplanner.team/stops/LmSkape1"], ["https://tec.openplanner.team/stops/LrAberg1", "https://tec.openplanner.team/stops/LrApont2"], ["https://tec.openplanner.team/stops/N534adb", "https://tec.openplanner.team/stops/N553aob"], ["https://tec.openplanner.team/stops/H1mk116a", "https://tec.openplanner.team/stops/H1sy140b"], ["https://tec.openplanner.team/stops/Bbcomar1", "https://tec.openplanner.team/stops/Bbcomar2"], ["https://tec.openplanner.team/stops/LHUamer1", "https://tec.openplanner.team/stops/NL80aib"], ["https://tec.openplanner.team/stops/Lbrptbr5", "https://tec.openplanner.team/stops/Llgbarb2"], ["https://tec.openplanner.team/stops/H1mm126b", "https://tec.openplanner.team/stops/H1mm132a"], ["https://tec.openplanner.team/stops/LhGcasi2", "https://tec.openplanner.team/stops/LhGfrie2"], ["https://tec.openplanner.team/stops/LSSeg--2", "https://tec.openplanner.team/stops/LSSjeun2"], ["https://tec.openplanner.team/stops/LHdfays2", "https://tec.openplanner.team/stops/LVncarr1"], ["https://tec.openplanner.team/stops/H4ld127b", "https://tec.openplanner.team/stops/H4ld129a"], ["https://tec.openplanner.team/stops/LMOf35-1", "https://tec.openplanner.team/stops/LMOfrel2"], ["https://tec.openplanner.team/stops/Lhubriq2", "https://tec.openplanner.team/stops/Lhuwaid2"], ["https://tec.openplanner.team/stops/H5wo133a", "https://tec.openplanner.team/stops/H5wo133b"], ["https://tec.openplanner.team/stops/X921aca", "https://tec.openplanner.team/stops/X921amb"], ["https://tec.openplanner.team/stops/LVEeg--2", "https://tec.openplanner.team/stops/LVEjard1"], ["https://tec.openplanner.team/stops/H4do105b", "https://tec.openplanner.team/stops/H4do106b"], ["https://tec.openplanner.team/stops/LNAanne2", "https://tec.openplanner.team/stops/LNAbouh1"], ["https://tec.openplanner.team/stops/Llgcham8", "https://tec.openplanner.team/stops/Llghars5"], ["https://tec.openplanner.team/stops/X636amb", "https://tec.openplanner.team/stops/X636bjb"], ["https://tec.openplanner.team/stops/X947acb", "https://tec.openplanner.team/stops/X948ajc"], ["https://tec.openplanner.team/stops/Llgarmu3", "https://tec.openplanner.team/stops/Llginte1"], ["https://tec.openplanner.team/stops/H1ms258b", "https://tec.openplanner.team/stops/H1ms288a"], ["https://tec.openplanner.team/stops/Bcrntru1", "https://tec.openplanner.team/stops/Bernpon1"], ["https://tec.openplanner.team/stops/H1br128b", "https://tec.openplanner.team/stops/H2ma264a"], ["https://tec.openplanner.team/stops/Bbghcar2", "https://tec.openplanner.team/stops/Bpte1ma2"], ["https://tec.openplanner.team/stops/Cmyedpa1", "https://tec.openplanner.team/stops/Cmyoasi1"], ["https://tec.openplanner.team/stops/X638ahb", "https://tec.openplanner.team/stops/X638aia"], ["https://tec.openplanner.team/stops/X801adb", "https://tec.openplanner.team/stops/X801aeb"], ["https://tec.openplanner.team/stops/Bwlhpma1", "https://tec.openplanner.team/stops/Bwlhpma2"], ["https://tec.openplanner.team/stops/Cgy4bra2", "https://tec.openplanner.team/stops/CMgill2"], ["https://tec.openplanner.team/stops/N390aba", "https://tec.openplanner.team/stops/X998azb"], ["https://tec.openplanner.team/stops/LODamco1", "https://tec.openplanner.team/stops/X561adb"], ["https://tec.openplanner.team/stops/H1sp354a", "https://tec.openplanner.team/stops/H1sp356a"], ["https://tec.openplanner.team/stops/X802aga", "https://tec.openplanner.team/stops/X822aib"], ["https://tec.openplanner.team/stops/Lhrecol1", "https://tec.openplanner.team/stops/Lhrpost2"], ["https://tec.openplanner.team/stops/N135afb", "https://tec.openplanner.team/stops/N140aab"], ["https://tec.openplanner.team/stops/Blaneli1", "https://tec.openplanner.team/stops/LLaover4"], ["https://tec.openplanner.team/stops/N501ama", "https://tec.openplanner.team/stops/N501mcc"], ["https://tec.openplanner.team/stops/H4au144a", "https://tec.openplanner.team/stops/H4au144b"], ["https://tec.openplanner.team/stops/N533aga", "https://tec.openplanner.team/stops/N533aqb"], ["https://tec.openplanner.team/stops/Bnil3fo1", "https://tec.openplanner.team/stops/Bnilpie2"], ["https://tec.openplanner.team/stops/H2ha138a", "https://tec.openplanner.team/stops/H2hg156a"], ["https://tec.openplanner.team/stops/LREgrot1", "https://tec.openplanner.team/stops/LREsoug2"], ["https://tec.openplanner.team/stops/Llgcite1", "https://tec.openplanner.team/stops/Llgmarc1"], ["https://tec.openplanner.team/stops/N577agb", "https://tec.openplanner.team/stops/N577aia"], ["https://tec.openplanner.team/stops/H1te180a", "https://tec.openplanner.team/stops/H1vt194a"], ["https://tec.openplanner.team/stops/Cchblne1", "https://tec.openplanner.team/stops/CMdesc2"], ["https://tec.openplanner.team/stops/H4de112a", "https://tec.openplanner.team/stops/H4ss157b"], ["https://tec.openplanner.team/stops/Bbounci2", "https://tec.openplanner.team/stops/Btanvil2"], ["https://tec.openplanner.team/stops/Bwatms10", "https://tec.openplanner.team/stops/Bwatmsj1"], ["https://tec.openplanner.team/stops/X985aaa", "https://tec.openplanner.team/stops/X985aab"], ["https://tec.openplanner.team/stops/NL74aga", "https://tec.openplanner.team/stops/NL74agb"], ["https://tec.openplanner.team/stops/H1el134a", "https://tec.openplanner.team/stops/H1el134b"], ["https://tec.openplanner.team/stops/LNEcite2", "https://tec.openplanner.team/stops/LNEvpn-1"], ["https://tec.openplanner.team/stops/LCSpoud1", "https://tec.openplanner.team/stops/LEN183-2"], ["https://tec.openplanner.team/stops/Lemlami2", "https://tec.openplanner.team/stops/Lemsart1"], ["https://tec.openplanner.team/stops/H2ll190a", "https://tec.openplanner.team/stops/H2ll190b"], ["https://tec.openplanner.team/stops/Bllnein3", "https://tec.openplanner.team/stops/Bllnlen1"], ["https://tec.openplanner.team/stops/N501dbb", "https://tec.openplanner.team/stops/N528afa"], ["https://tec.openplanner.team/stops/H4pl122b", "https://tec.openplanner.team/stops/H4pl137b"], ["https://tec.openplanner.team/stops/LOLcroi2", "https://tec.openplanner.team/stops/LOLrafh2"], ["https://tec.openplanner.team/stops/N522bva", "https://tec.openplanner.team/stops/N522bvc"], ["https://tec.openplanner.team/stops/Lscbour1", "https://tec.openplanner.team/stops/Lscpamp1"], ["https://tec.openplanner.team/stops/H4ty346a", "https://tec.openplanner.team/stops/H4ty382b"], ["https://tec.openplanner.team/stops/N507aad", "https://tec.openplanner.team/stops/NL68add"], ["https://tec.openplanner.team/stops/N501kuc", "https://tec.openplanner.team/stops/N501kud"], ["https://tec.openplanner.team/stops/H4my122a", "https://tec.openplanner.team/stops/H4vz368a"], ["https://tec.openplanner.team/stops/LGeforg1", "https://tec.openplanner.team/stops/LGepeck1"], ["https://tec.openplanner.team/stops/Lhrherm1", "https://tec.openplanner.team/stops/Lhrspi-2"], ["https://tec.openplanner.team/stops/X948aea", "https://tec.openplanner.team/stops/X948agb"], ["https://tec.openplanner.team/stops/Bnodtir1", "https://tec.openplanner.team/stops/Bnodtir4"], ["https://tec.openplanner.team/stops/N571agb", "https://tec.openplanner.team/stops/N571ajb"], ["https://tec.openplanner.team/stops/LSOferr4", "https://tec.openplanner.team/stops/LSOtrou2"], ["https://tec.openplanner.team/stops/N230aha", "https://tec.openplanner.team/stops/N231acb"], ["https://tec.openplanner.team/stops/Lseespe1", "https://tec.openplanner.team/stops/Lsemara1"], ["https://tec.openplanner.team/stops/LFUgare1", "https://tec.openplanner.team/stops/LFUgare2"], ["https://tec.openplanner.team/stops/Bhvlbet1", "https://tec.openplanner.team/stops/Bmsgbay2"], ["https://tec.openplanner.team/stops/Bbgnvel2", "https://tec.openplanner.team/stops/Cvstouv1"], ["https://tec.openplanner.team/stops/Bclgegl2", "https://tec.openplanner.team/stops/Bnilhau2"], ["https://tec.openplanner.team/stops/LATdame1", "https://tec.openplanner.team/stops/LAThach2"], ["https://tec.openplanner.team/stops/H1cu132a", "https://tec.openplanner.team/stops/H1cu132b"], ["https://tec.openplanner.team/stops/Cblsall2", "https://tec.openplanner.team/stops/Cslbhau1"], ["https://tec.openplanner.team/stops/LMoeg--1", "https://tec.openplanner.team/stops/LMotrem2"], ["https://tec.openplanner.team/stops/H1ms245a", "https://tec.openplanner.team/stops/H1ms268a"], ["https://tec.openplanner.team/stops/Lsemyrt1", "https://tec.openplanner.team/stops/Lsepcha4"], ["https://tec.openplanner.team/stops/N547amb", "https://tec.openplanner.team/stops/N554adb"], ["https://tec.openplanner.team/stops/N111aaa", "https://tec.openplanner.team/stops/N127aeb"], ["https://tec.openplanner.team/stops/X801cna", "https://tec.openplanner.team/stops/X801cnb"], ["https://tec.openplanner.team/stops/Clodrio1", "https://tec.openplanner.team/stops/Clodupr2"], ["https://tec.openplanner.team/stops/X649aca", "https://tec.openplanner.team/stops/X650aoa"], ["https://tec.openplanner.team/stops/LBlchin1", "https://tec.openplanner.team/stops/LLUg82-2"], ["https://tec.openplanner.team/stops/N501gsa", "https://tec.openplanner.team/stops/N501hlz"], ["https://tec.openplanner.team/stops/H1ha188b", "https://tec.openplanner.team/stops/H1ha196a"], ["https://tec.openplanner.team/stops/X786aaa", "https://tec.openplanner.team/stops/X786aba"], ["https://tec.openplanner.team/stops/H4rm107a", "https://tec.openplanner.team/stops/H4rm109a"], ["https://tec.openplanner.team/stops/Bitrgnt1", "https://tec.openplanner.team/stops/Bitrmde2"], ["https://tec.openplanner.team/stops/Bottcli2", "https://tec.openplanner.team/stops/Bottrfa1"], ["https://tec.openplanner.team/stops/LnEmett1", "https://tec.openplanner.team/stops/LsVgils2"], ["https://tec.openplanner.team/stops/N241aga", "https://tec.openplanner.team/stops/N270aba"], ["https://tec.openplanner.team/stops/N321aea", "https://tec.openplanner.team/stops/N321aeb"], ["https://tec.openplanner.team/stops/Lveecol1", "https://tec.openplanner.team/stops/Lveecol2"], ["https://tec.openplanner.team/stops/N516ama", "https://tec.openplanner.team/stops/N516aqa"], ["https://tec.openplanner.team/stops/H1ha194b", "https://tec.openplanner.team/stops/H3bo102b"], ["https://tec.openplanner.team/stops/Lhujonc1", "https://tec.openplanner.team/stops/Lhulibe2"], ["https://tec.openplanner.team/stops/Lra4bra2", "https://tec.openplanner.team/stops/Lrafusi1"], ["https://tec.openplanner.team/stops/Ctybaco1", "https://tec.openplanner.team/stops/N137aib"], ["https://tec.openplanner.team/stops/X979agb", "https://tec.openplanner.team/stops/X982alb"], ["https://tec.openplanner.team/stops/Bstecal2", "https://tec.openplanner.team/stops/Bstetre1"], ["https://tec.openplanner.team/stops/H3bi108b", "https://tec.openplanner.team/stops/H3bi113a"], ["https://tec.openplanner.team/stops/X753aaa", "https://tec.openplanner.team/stops/X753abd"], ["https://tec.openplanner.team/stops/N501aab", "https://tec.openplanner.team/stops/N501gqa"], ["https://tec.openplanner.team/stops/LpEbins1", "https://tec.openplanner.team/stops/LrApark2"], ["https://tec.openplanner.team/stops/Lrchero1", "https://tec.openplanner.team/stops/Lvoec--1"], ["https://tec.openplanner.team/stops/LSGbail1", "https://tec.openplanner.team/stops/LSkathe1"], ["https://tec.openplanner.team/stops/Ladarev1", "https://tec.openplanner.team/stops/Ladstat1"], ["https://tec.openplanner.team/stops/X662abb", "https://tec.openplanner.team/stops/X662asb"], ["https://tec.openplanner.team/stops/N501awb", "https://tec.openplanner.team/stops/N501dcb"], ["https://tec.openplanner.team/stops/Bixlqll1", "https://tec.openplanner.team/stops/Bsgibla2"], ["https://tec.openplanner.team/stops/H1gn152b", "https://tec.openplanner.team/stops/H1mq200b"], ["https://tec.openplanner.team/stops/N533apa", "https://tec.openplanner.team/stops/N533apb"], ["https://tec.openplanner.team/stops/Cmlener2", "https://tec.openplanner.team/stops/Cmlvesp1"], ["https://tec.openplanner.team/stops/N505aeb", "https://tec.openplanner.team/stops/N505agb"], ["https://tec.openplanner.team/stops/N538afa", "https://tec.openplanner.team/stops/N538agb"], ["https://tec.openplanner.team/stops/X769aaa", "https://tec.openplanner.team/stops/X769aab"], ["https://tec.openplanner.team/stops/H4ev125a", "https://tec.openplanner.team/stops/H4ev125b"], ["https://tec.openplanner.team/stops/Ctipoui2", "https://tec.openplanner.team/stops/H1tt106b"], ["https://tec.openplanner.team/stops/X840aeb", "https://tec.openplanner.team/stops/X840afb"], ["https://tec.openplanner.team/stops/LHTmonu1", "https://tec.openplanner.team/stops/LHTptha4"], ["https://tec.openplanner.team/stops/X806aba", "https://tec.openplanner.team/stops/X806akb"], ["https://tec.openplanner.team/stops/Lve-isi1", "https://tec.openplanner.team/stops/Lve-isi2"], ["https://tec.openplanner.team/stops/N533apb", "https://tec.openplanner.team/stops/N533aqa"], ["https://tec.openplanner.team/stops/LLrc_ip4", "https://tec.openplanner.team/stops/LLrgara1"], ["https://tec.openplanner.team/stops/LOcchat1", "https://tec.openplanner.team/stops/NL35abb"], ["https://tec.openplanner.team/stops/Bjodpvi1", "https://tec.openplanner.team/stops/Bjodsme2"], ["https://tec.openplanner.team/stops/X880agb", "https://tec.openplanner.team/stops/X880aha"], ["https://tec.openplanner.team/stops/Cradado1", "https://tec.openplanner.team/stops/Cradest2"], ["https://tec.openplanner.team/stops/H4rx142a", "https://tec.openplanner.team/stops/H4rx142b"], ["https://tec.openplanner.team/stops/H5rx134b", "https://tec.openplanner.team/stops/H5rx135b"], ["https://tec.openplanner.team/stops/N204agb", "https://tec.openplanner.team/stops/N204aha"], ["https://tec.openplanner.team/stops/LVsboug1", "https://tec.openplanner.team/stops/LVsboug2"], ["https://tec.openplanner.team/stops/LHChomb1", "https://tec.openplanner.team/stops/LHChomb2"], ["https://tec.openplanner.team/stops/LTIchev2", "https://tec.openplanner.team/stops/LTIp%C3%A9pi2"], ["https://tec.openplanner.team/stops/X886abc", "https://tec.openplanner.team/stops/X886abd"], ["https://tec.openplanner.team/stops/N543bfb", "https://tec.openplanner.team/stops/N554afa"], ["https://tec.openplanner.team/stops/Cctjoue5", "https://tec.openplanner.team/stops/Cplcafp1"], ["https://tec.openplanner.team/stops/H4mo204b", "https://tec.openplanner.team/stops/H4mo205a"], ["https://tec.openplanner.team/stops/H4hx111b", "https://tec.openplanner.team/stops/H4wa159a"], ["https://tec.openplanner.team/stops/X695aab", "https://tec.openplanner.team/stops/X695aja"], ["https://tec.openplanner.team/stops/N360acc", "https://tec.openplanner.team/stops/N360aeb"], ["https://tec.openplanner.team/stops/X739aeb", "https://tec.openplanner.team/stops/X739afa"], ["https://tec.openplanner.team/stops/LSZgare1", "https://tec.openplanner.team/stops/LSZlegr1"], ["https://tec.openplanner.team/stops/N321acb", "https://tec.openplanner.team/stops/N321afb"], ["https://tec.openplanner.team/stops/N507ala", "https://tec.openplanner.team/stops/N507alb"], ["https://tec.openplanner.team/stops/H1ch142b", "https://tec.openplanner.team/stops/H1ch143b"], ["https://tec.openplanner.team/stops/X942aca", "https://tec.openplanner.team/stops/X942adb"], ["https://tec.openplanner.team/stops/LHZbren1", "https://tec.openplanner.team/stops/LVeeg--2"], ["https://tec.openplanner.team/stops/N244aja", "https://tec.openplanner.team/stops/N252aab"], ["https://tec.openplanner.team/stops/Bllncyc2", "https://tec.openplanner.team/stops/Bllnmet2"], ["https://tec.openplanner.team/stops/Llglimb1", "https://tec.openplanner.team/stops/Llgwild8"], ["https://tec.openplanner.team/stops/Ckevela1", "https://tec.openplanner.team/stops/Cwfzola1"], ["https://tec.openplanner.team/stops/N201asa", "https://tec.openplanner.team/stops/N201ava"], ["https://tec.openplanner.team/stops/Bgnpegl2", "https://tec.openplanner.team/stops/Bgnpgar2"], ["https://tec.openplanner.team/stops/N104adb", "https://tec.openplanner.team/stops/N104aka"], ["https://tec.openplanner.team/stops/Lvegc-1*", "https://tec.openplanner.team/stops/Lvegc--4"], ["https://tec.openplanner.team/stops/H1ba108b", "https://tec.openplanner.team/stops/H1ba115b"], ["https://tec.openplanner.team/stops/LBvviem1", "https://tec.openplanner.team/stops/LBvviem2"], ["https://tec.openplanner.team/stops/N117aca", "https://tec.openplanner.team/stops/N117bdb"], ["https://tec.openplanner.team/stops/LWNberg2", "https://tec.openplanner.team/stops/LWNchar2"], ["https://tec.openplanner.team/stops/LVIgare1", "https://tec.openplanner.team/stops/LVIhv--2"], ["https://tec.openplanner.team/stops/Bplncsd1", "https://tec.openplanner.team/stops/Bplnegl1"], ["https://tec.openplanner.team/stops/LMastat3", "https://tec.openplanner.team/stops/LTEnuro2"], ["https://tec.openplanner.team/stops/H4li179d", "https://tec.openplanner.team/stops/H4va231a"], ["https://tec.openplanner.team/stops/H1ba102b", "https://tec.openplanner.team/stops/H1ba114b"], ["https://tec.openplanner.team/stops/N576aab", "https://tec.openplanner.team/stops/N576afb"], ["https://tec.openplanner.team/stops/Bhalkrk1", "https://tec.openplanner.team/stops/Bhalwat1"], ["https://tec.openplanner.team/stops/Lboeg--1", "https://tec.openplanner.team/stops/Lbotige1"], ["https://tec.openplanner.team/stops/N894abb", "https://tec.openplanner.team/stops/N894age"], ["https://tec.openplanner.team/stops/X714aca", "https://tec.openplanner.team/stops/X714acb"], ["https://tec.openplanner.team/stops/N553aba", "https://tec.openplanner.team/stops/N553abb"], ["https://tec.openplanner.team/stops/Cgzpjeu1", "https://tec.openplanner.team/stops/Cgzpjeu2"], ["https://tec.openplanner.team/stops/Cmastma2", "https://tec.openplanner.team/stops/Cmorgof2"], ["https://tec.openplanner.team/stops/LCFcafe1", "https://tec.openplanner.team/stops/LCFchir2"], ["https://tec.openplanner.team/stops/H4ga154a", "https://tec.openplanner.team/stops/H4ga154b"], ["https://tec.openplanner.team/stops/LrEborn1", "https://tec.openplanner.team/stops/LrEkais1"], ["https://tec.openplanner.team/stops/Buccpin1", "https://tec.openplanner.team/stops/Buccpor2"], ["https://tec.openplanner.team/stops/N506amb", "https://tec.openplanner.team/stops/N506btb"], ["https://tec.openplanner.team/stops/Bbcoben1", "https://tec.openplanner.team/stops/Bbcoben2"], ["https://tec.openplanner.team/stops/LHTbeau2", "https://tec.openplanner.team/stops/LHTeg--2"], ["https://tec.openplanner.team/stops/X952acb", "https://tec.openplanner.team/stops/X952ada"], ["https://tec.openplanner.team/stops/LHHecol2", "https://tec.openplanner.team/stops/LHHplac1"], ["https://tec.openplanner.team/stops/X892aca", "https://tec.openplanner.team/stops/X892aha"], ["https://tec.openplanner.team/stops/Crcpcom1", "https://tec.openplanner.team/stops/NH03afa"], ["https://tec.openplanner.team/stops/Ccugilb2", "https://tec.openplanner.team/stops/Ccumasu2"], ["https://tec.openplanner.team/stops/Lbomc--5", "https://tec.openplanner.team/stops/Lbomc--6"], ["https://tec.openplanner.team/stops/N204acb", "https://tec.openplanner.team/stops/N205aba"], ["https://tec.openplanner.team/stops/H1hr127b", "https://tec.openplanner.team/stops/H1to153b"], ["https://tec.openplanner.team/stops/H4bd108a", "https://tec.openplanner.team/stops/H4bd110a"], ["https://tec.openplanner.team/stops/LMOecsp1", "https://tec.openplanner.team/stops/LMOs45-2"], ["https://tec.openplanner.team/stops/X759aeb", "https://tec.openplanner.team/stops/X837abb"], ["https://tec.openplanner.team/stops/N506bab", "https://tec.openplanner.team/stops/N506bma"], ["https://tec.openplanner.team/stops/H4rm108a", "https://tec.openplanner.team/stops/H4ta115a"], ["https://tec.openplanner.team/stops/X949aia", "https://tec.openplanner.team/stops/X949akb"], ["https://tec.openplanner.team/stops/Bgrhhot2", "https://tec.openplanner.team/stops/Bnvmfba1"], ["https://tec.openplanner.team/stops/Bjodcar2", "https://tec.openplanner.team/stops/Bjodtpo2"], ["https://tec.openplanner.team/stops/N505alb", "https://tec.openplanner.team/stops/N511aea"], ["https://tec.openplanner.team/stops/X673aea", "https://tec.openplanner.team/stops/X674aab"], ["https://tec.openplanner.team/stops/H4ab103a", "https://tec.openplanner.team/stops/H5ma186b"], ["https://tec.openplanner.team/stops/N135bda", "https://tec.openplanner.team/stops/N135bea"], ["https://tec.openplanner.team/stops/N543coa", "https://tec.openplanner.team/stops/N543cqa"], ["https://tec.openplanner.team/stops/H1lm106a", "https://tec.openplanner.team/stops/H1to152a"], ["https://tec.openplanner.team/stops/X825adb", "https://tec.openplanner.team/stops/X826adb"], ["https://tec.openplanner.team/stops/H2se113b", "https://tec.openplanner.team/stops/H2se114b"], ["https://tec.openplanner.team/stops/LrAberg2", "https://tec.openplanner.team/stops/LrAmuhl2"], ["https://tec.openplanner.team/stops/H1cd111a", "https://tec.openplanner.team/stops/H1cd111b"], ["https://tec.openplanner.team/stops/Louazot2", "https://tec.openplanner.team/stops/Lsttech1"], ["https://tec.openplanner.team/stops/H4wi164a", "https://tec.openplanner.team/stops/H4wi168a"], ["https://tec.openplanner.team/stops/H1bn113b", "https://tec.openplanner.team/stops/H1bn148a"], ["https://tec.openplanner.team/stops/N154aaa", "https://tec.openplanner.team/stops/N154abb"], ["https://tec.openplanner.team/stops/LOUbleu1", "https://tec.openplanner.team/stops/LOUbleu2"], ["https://tec.openplanner.team/stops/X979aha", "https://tec.openplanner.team/stops/X979ahb"], ["https://tec.openplanner.team/stops/Lvecite1", "https://tec.openplanner.team/stops/Lvecite2"], ["https://tec.openplanner.team/stops/N501fxa", "https://tec.openplanner.team/stops/N501fxb"], ["https://tec.openplanner.team/stops/Bsomwav1", "https://tec.openplanner.team/stops/N584asb"], ["https://tec.openplanner.team/stops/Cgzchab1", "https://tec.openplanner.team/stops/Cgzm1481"], ["https://tec.openplanner.team/stops/Bpthrsp1", "https://tec.openplanner.team/stops/Bpthrsp2"], ["https://tec.openplanner.team/stops/LLRrape3", "https://tec.openplanner.team/stops/LLRsalm2"], ["https://tec.openplanner.team/stops/LLOhest2", "https://tec.openplanner.team/stops/LVtespo1"], ["https://tec.openplanner.team/stops/X616aha", "https://tec.openplanner.team/stops/X625agb"], ["https://tec.openplanner.team/stops/LSoeg--2", "https://tec.openplanner.team/stops/LSokrin2"], ["https://tec.openplanner.team/stops/H5bs103a", "https://tec.openplanner.team/stops/H5bs104a"], ["https://tec.openplanner.team/stops/LmYeich1", "https://tec.openplanner.team/stops/LvAschw1"], ["https://tec.openplanner.team/stops/Btubcvi1", "https://tec.openplanner.team/stops/Btubdeh1"], ["https://tec.openplanner.team/stops/N562aya", "https://tec.openplanner.team/stops/N562bfb"], ["https://tec.openplanner.team/stops/H1ht132b", "https://tec.openplanner.team/stops/H1si153b"], ["https://tec.openplanner.team/stops/LBXhacb2", "https://tec.openplanner.team/stops/LHEzoni2"], ["https://tec.openplanner.team/stops/H4fr146b", "https://tec.openplanner.team/stops/H4fr390a"], ["https://tec.openplanner.team/stops/Blsmjja1", "https://tec.openplanner.team/stops/Bpelegl2"], ["https://tec.openplanner.team/stops/N219afa", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/Bwavche1", "https://tec.openplanner.team/stops/Bwavdel2"], ["https://tec.openplanner.team/stops/H4ka191b", "https://tec.openplanner.team/stops/H4ty270b"], ["https://tec.openplanner.team/stops/LVEcroi1", "https://tec.openplanner.team/stops/LVEeg--2"], ["https://tec.openplanner.team/stops/X629aba", "https://tec.openplanner.team/stops/X629abb"], ["https://tec.openplanner.team/stops/LEBdoct1", "https://tec.openplanner.team/stops/LEMec--1"], ["https://tec.openplanner.team/stops/Llgchal1", "https://tec.openplanner.team/stops/Llgcoll1"], ["https://tec.openplanner.team/stops/Lbrhvl-*", "https://tec.openplanner.team/stops/Ljuetie1"], ["https://tec.openplanner.team/stops/N214aca", "https://tec.openplanner.team/stops/N214aec"], ["https://tec.openplanner.team/stops/Cmlbeau1", "https://tec.openplanner.team/stops/Cmlcons2"], ["https://tec.openplanner.team/stops/H1el137b", "https://tec.openplanner.team/stops/H1el138b"], ["https://tec.openplanner.team/stops/Lgreg--1", "https://tec.openplanner.team/stops/Lgreg--2"], ["https://tec.openplanner.team/stops/Llgform1", "https://tec.openplanner.team/stops/Llgwiar4"], ["https://tec.openplanner.team/stops/X812afa", "https://tec.openplanner.team/stops/X812aia"], ["https://tec.openplanner.team/stops/Cmabegh2", "https://tec.openplanner.team/stops/Cmaegli1"], ["https://tec.openplanner.team/stops/LoUober1", "https://tec.openplanner.team/stops/LsBzent1"], ["https://tec.openplanner.team/stops/Bwatath2", "https://tec.openplanner.team/stops/Bwatbce2"], ["https://tec.openplanner.team/stops/N232ana", "https://tec.openplanner.team/stops/N232aqa"], ["https://tec.openplanner.team/stops/N226aca", "https://tec.openplanner.team/stops/N226acb"], ["https://tec.openplanner.team/stops/Blemkap2", "https://tec.openplanner.team/stops/Btubhoq2"], ["https://tec.openplanner.team/stops/X827aaa", "https://tec.openplanner.team/stops/X828aaa"], ["https://tec.openplanner.team/stops/H4bf105a", "https://tec.openplanner.team/stops/H4bf107a"], ["https://tec.openplanner.team/stops/Llgarmu3", "https://tec.openplanner.team/stops/Llgarmu4"], ["https://tec.openplanner.team/stops/H4fg116b", "https://tec.openplanner.team/stops/H4ho119a"], ["https://tec.openplanner.team/stops/LBdmarr2", "https://tec.openplanner.team/stops/LWMcent2"], ["https://tec.openplanner.team/stops/Lalhomb1", "https://tec.openplanner.team/stops/Laltrap1"], ["https://tec.openplanner.team/stops/Cbtbras1", "https://tec.openplanner.team/stops/Cbtgemi1"], ["https://tec.openplanner.team/stops/H2ll184b", "https://tec.openplanner.team/stops/H2ll190a"], ["https://tec.openplanner.team/stops/LMEense2", "https://tec.openplanner.team/stops/LMIpatr4"], ["https://tec.openplanner.team/stops/LHgeg--1", "https://tec.openplanner.team/stops/LOMdodi2"], ["https://tec.openplanner.team/stops/Llgoutr1", "https://tec.openplanner.team/stops/Llgoutr3"], ["https://tec.openplanner.team/stops/LcRmich1", "https://tec.openplanner.team/stops/LrD28--2"], ["https://tec.openplanner.team/stops/N232bta", "https://tec.openplanner.team/stops/N232bub"], ["https://tec.openplanner.team/stops/H4ka179b", "https://tec.openplanner.team/stops/H4ka194a"], ["https://tec.openplanner.team/stops/LCxhame2", "https://tec.openplanner.team/stops/LHEchex2"], ["https://tec.openplanner.team/stops/Lvelobe1", "https://tec.openplanner.team/stops/Lvewaut1"], ["https://tec.openplanner.team/stops/LSHfief2", "https://tec.openplanner.team/stops/LSHneuv2"], ["https://tec.openplanner.team/stops/Cctlimi1", "https://tec.openplanner.team/stops/Cctlimi2"], ["https://tec.openplanner.team/stops/N501fxb", "https://tec.openplanner.team/stops/N501zba"], ["https://tec.openplanner.team/stops/Lalmakr1", "https://tec.openplanner.team/stops/Lrcchar1"], ["https://tec.openplanner.team/stops/LeLbegl2", "https://tec.openplanner.team/stops/LeLgrie2"], ["https://tec.openplanner.team/stops/LaR1G--1", "https://tec.openplanner.team/stops/LaRkape1"], ["https://tec.openplanner.team/stops/N501eta", "https://tec.openplanner.team/stops/N501neb"], ["https://tec.openplanner.team/stops/Lqbeg--1", "https://tec.openplanner.team/stops/LSAhaye2"], ["https://tec.openplanner.team/stops/Bhmmcam1", "https://tec.openplanner.team/stops/Bndbgar2"], ["https://tec.openplanner.team/stops/LSLeg--1", "https://tec.openplanner.team/stops/LVSpn--2"], ["https://tec.openplanner.team/stops/X908ahb", "https://tec.openplanner.team/stops/X908aib"], ["https://tec.openplanner.team/stops/LlE02--2", "https://tec.openplanner.team/stops/LmLbeil2"], ["https://tec.openplanner.team/stops/LNCneuv1", "https://tec.openplanner.team/stops/LRRchea3"], ["https://tec.openplanner.team/stops/LhMmeil1", "https://tec.openplanner.team/stops/LsCbrau1"], ["https://tec.openplanner.team/stops/X750abb", "https://tec.openplanner.team/stops/X750aia"], ["https://tec.openplanner.team/stops/X650akb", "https://tec.openplanner.team/stops/X651aaa"], ["https://tec.openplanner.team/stops/LCSfagn1", "https://tec.openplanner.team/stops/LCSpoud4"], ["https://tec.openplanner.team/stops/Lfhhoul1", "https://tec.openplanner.team/stops/Lfhncha1"], ["https://tec.openplanner.team/stops/Lcejobe2", "https://tec.openplanner.team/stops/Lgrjobe1"], ["https://tec.openplanner.team/stops/Bblaelo1", "https://tec.openplanner.team/stops/Bblavol2"], ["https://tec.openplanner.team/stops/Cgymara2", "https://tec.openplanner.team/stops/Cgythio2"], ["https://tec.openplanner.team/stops/X658aga", "https://tec.openplanner.team/stops/X658agc"], ["https://tec.openplanner.team/stops/H2fa100a", "https://tec.openplanner.team/stops/H2fa102a"], ["https://tec.openplanner.team/stops/X903abb", "https://tec.openplanner.team/stops/X903aca"], ["https://tec.openplanner.team/stops/X718aha", "https://tec.openplanner.team/stops/X718ahb"], ["https://tec.openplanner.team/stops/LeUarno2", "https://tec.openplanner.team/stops/LeUclou2"], ["https://tec.openplanner.team/stops/LBalacr2", "https://tec.openplanner.team/stops/LBamate2"], ["https://tec.openplanner.team/stops/X741aca", "https://tec.openplanner.team/stops/X741afa"], ["https://tec.openplanner.team/stops/LFFchab2", "https://tec.openplanner.team/stops/LVLzoni1"], ["https://tec.openplanner.team/stops/N137ahb", "https://tec.openplanner.team/stops/N137aia"], ["https://tec.openplanner.team/stops/NR10aaa", "https://tec.openplanner.team/stops/NR10aab"], ["https://tec.openplanner.team/stops/Cmyrays1", "https://tec.openplanner.team/stops/Cmyrays2"], ["https://tec.openplanner.team/stops/Csebasc1", "https://tec.openplanner.team/stops/Csequew2"], ["https://tec.openplanner.team/stops/Borbod92", "https://tec.openplanner.team/stops/Btstcar4"], ["https://tec.openplanner.team/stops/Brxmhai1", "https://tec.openplanner.team/stops/Brxmhai2"], ["https://tec.openplanner.team/stops/N217aeb", "https://tec.openplanner.team/stops/N232adb"], ["https://tec.openplanner.team/stops/Cmyquen1", "https://tec.openplanner.team/stops/Cmyquen2"], ["https://tec.openplanner.team/stops/Bbstfch1", "https://tec.openplanner.team/stops/Bvlvbth1"], ["https://tec.openplanner.team/stops/LNOsedo1", "https://tec.openplanner.team/stops/LNOsedo2"], ["https://tec.openplanner.team/stops/Cthrwai1", "https://tec.openplanner.team/stops/Cthrwai2"], ["https://tec.openplanner.team/stops/Bsrbtil1", "https://tec.openplanner.team/stops/Bsrbtil2"], ["https://tec.openplanner.team/stops/X636bda", "https://tec.openplanner.team/stops/X636bdb"], ["https://tec.openplanner.team/stops/Clproi2", "https://tec.openplanner.team/stops/Clpsola2"], ["https://tec.openplanner.team/stops/X396afa", "https://tec.openplanner.team/stops/X917ajb"], ["https://tec.openplanner.team/stops/X636aqa", "https://tec.openplanner.team/stops/X636bjb"], ["https://tec.openplanner.team/stops/LWAperv1", "https://tec.openplanner.team/stops/LWAvisi1"], ["https://tec.openplanner.team/stops/N520adb", "https://tec.openplanner.team/stops/N520aea"], ["https://tec.openplanner.team/stops/LCvmonu1", "https://tec.openplanner.team/stops/LCvneu-1"], ["https://tec.openplanner.team/stops/N232apb", "https://tec.openplanner.team/stops/N232bpa"], ["https://tec.openplanner.team/stops/Cbwcab1", "https://tec.openplanner.team/stops/Cbwmvri2"], ["https://tec.openplanner.team/stops/X727afa", "https://tec.openplanner.team/stops/X746aab"], ["https://tec.openplanner.team/stops/X658ada", "https://tec.openplanner.team/stops/X659aka"], ["https://tec.openplanner.team/stops/N501lda", "https://tec.openplanner.team/stops/N501lxb"], ["https://tec.openplanner.team/stops/X903aab", "https://tec.openplanner.team/stops/X903abb"], ["https://tec.openplanner.team/stops/N501iqa", "https://tec.openplanner.team/stops/N501iqb"], ["https://tec.openplanner.team/stops/N232bxa", "https://tec.openplanner.team/stops/N232bxb"], ["https://tec.openplanner.team/stops/Lprorph1", "https://tec.openplanner.team/stops/Lprthie1"], ["https://tec.openplanner.team/stops/Ladloup2", "https://tec.openplanner.team/stops/Lvevert1"], ["https://tec.openplanner.team/stops/LAxbott1", "https://tec.openplanner.team/stops/LFsec--1"], ["https://tec.openplanner.team/stops/Bchgbar1", "https://tec.openplanner.team/stops/Blontry2"], ["https://tec.openplanner.team/stops/X666alb", "https://tec.openplanner.team/stops/X666ama"], ["https://tec.openplanner.team/stops/X658aab", "https://tec.openplanner.team/stops/X658aga"], ["https://tec.openplanner.team/stops/Caircen1", "https://tec.openplanner.team/stops/Caircen2"], ["https://tec.openplanner.team/stops/LNIbas-2", "https://tec.openplanner.team/stops/LSZarbe2"], ["https://tec.openplanner.team/stops/H1vh135a", "https://tec.openplanner.team/stops/H1vh137a"], ["https://tec.openplanner.team/stops/LnEfrie2", "https://tec.openplanner.team/stops/LnEmett1"], ["https://tec.openplanner.team/stops/Lanpont1", "https://tec.openplanner.team/stops/Lanpont2"], ["https://tec.openplanner.team/stops/Cclplac1", "https://tec.openplanner.team/stops/Cclrgiv1"], ["https://tec.openplanner.team/stops/Cfccabi1", "https://tec.openplanner.team/stops/Cfcpier1"], ["https://tec.openplanner.team/stops/LDLgran1", "https://tec.openplanner.team/stops/LHYlinc1"], ["https://tec.openplanner.team/stops/X802acb", "https://tec.openplanner.team/stops/X802adb"], ["https://tec.openplanner.team/stops/Cmllait1", "https://tec.openplanner.team/stops/Cmlstgi2"], ["https://tec.openplanner.team/stops/Bwatsan2", "https://tec.openplanner.team/stops/Bwatvco2"], ["https://tec.openplanner.team/stops/X788aba", "https://tec.openplanner.team/stops/X788acb"], ["https://tec.openplanner.team/stops/X398ada", "https://tec.openplanner.team/stops/X999acb"], ["https://tec.openplanner.team/stops/X639amd", "https://tec.openplanner.team/stops/X639anb"], ["https://tec.openplanner.team/stops/Btlgmou1", "https://tec.openplanner.team/stops/Btlgreg2"], ["https://tec.openplanner.team/stops/H4ty270b", "https://tec.openplanner.team/stops/H4ty290a"], ["https://tec.openplanner.team/stops/N150adb", "https://tec.openplanner.team/stops/N150aga"], ["https://tec.openplanner.team/stops/LBPxhav1", "https://tec.openplanner.team/stops/LBPxhav2"], ["https://tec.openplanner.team/stops/X750bna", "https://tec.openplanner.team/stops/X750boa"], ["https://tec.openplanner.team/stops/Cchba08", "https://tec.openplanner.team/stops/Cchba12"], ["https://tec.openplanner.team/stops/Bcer4br1", "https://tec.openplanner.team/stops/Bcer4br4"], ["https://tec.openplanner.team/stops/Bperqui1", "https://tec.openplanner.team/stops/N519aac"], ["https://tec.openplanner.team/stops/Cmmcime1", "https://tec.openplanner.team/stops/Cmmcime2"], ["https://tec.openplanner.team/stops/N579aab", "https://tec.openplanner.team/stops/N580abb"], ["https://tec.openplanner.team/stops/Lsecris2", "https://tec.openplanner.team/stops/Lseegva2"], ["https://tec.openplanner.team/stops/X636aub", "https://tec.openplanner.team/stops/X636ayb"], ["https://tec.openplanner.team/stops/X390apb", "https://tec.openplanner.team/stops/X991aea"], ["https://tec.openplanner.team/stops/Lemjacq1", "https://tec.openplanner.team/stops/Lemlami2"], ["https://tec.openplanner.team/stops/X637aqb", "https://tec.openplanner.team/stops/X650aoa"], ["https://tec.openplanner.team/stops/Cfaecmo2", "https://tec.openplanner.team/stops/Cpiegli1"], ["https://tec.openplanner.team/stops/N503aib", "https://tec.openplanner.team/stops/N503ala"], ["https://tec.openplanner.team/stops/H2go118b", "https://tec.openplanner.team/stops/H2tz117a"], ["https://tec.openplanner.team/stops/N118avc", "https://tec.openplanner.team/stops/N118bbb"], ["https://tec.openplanner.team/stops/N210aab", "https://tec.openplanner.team/stops/NL82agb"], ["https://tec.openplanner.team/stops/Lscbarg1", "https://tec.openplanner.team/stops/Ltimarr1"], ["https://tec.openplanner.team/stops/Lvegera2", "https://tec.openplanner.team/stops/Lveveou2"], ["https://tec.openplanner.team/stops/Btubmfa2", "https://tec.openplanner.team/stops/Btubpla1"], ["https://tec.openplanner.team/stops/N135beb", "https://tec.openplanner.team/stops/N140aab"], ["https://tec.openplanner.team/stops/Blonegl1", "https://tec.openplanner.team/stops/Bopplon1"], ["https://tec.openplanner.team/stops/X619ajb", "https://tec.openplanner.team/stops/X622afa"], ["https://tec.openplanner.team/stops/N503aha", "https://tec.openplanner.team/stops/N503aia"], ["https://tec.openplanner.team/stops/N287ada", "https://tec.openplanner.team/stops/N287adb"], ["https://tec.openplanner.team/stops/H3lr132a", "https://tec.openplanner.team/stops/H3lr132b"], ["https://tec.openplanner.team/stops/Louetan2", "https://tec.openplanner.team/stops/Lougoff1"], ["https://tec.openplanner.team/stops/LCObouh1", "https://tec.openplanner.team/stops/LCObouh2"], ["https://tec.openplanner.team/stops/Bhoegbr1", "https://tec.openplanner.team/stops/Bhoemel2"], ["https://tec.openplanner.team/stops/N508ama", "https://tec.openplanner.team/stops/N509avb"], ["https://tec.openplanner.team/stops/N201awb", "https://tec.openplanner.team/stops/N202aga"], ["https://tec.openplanner.team/stops/Bnivh%C3%B4p1", "https://tec.openplanner.team/stops/Bnivsoi1"], ["https://tec.openplanner.team/stops/H4hu115b", "https://tec.openplanner.team/stops/H4ld130b"], ["https://tec.openplanner.team/stops/LeUjuge2", "https://tec.openplanner.team/stops/LeUstad1"], ["https://tec.openplanner.team/stops/N507apa", "https://tec.openplanner.team/stops/N507aqa"], ["https://tec.openplanner.team/stops/X770aga", "https://tec.openplanner.team/stops/X774aac"], ["https://tec.openplanner.team/stops/N506abb", "https://tec.openplanner.team/stops/N506bla"], ["https://tec.openplanner.team/stops/H5wo122b", "https://tec.openplanner.team/stops/H5wo132b"], ["https://tec.openplanner.team/stops/X653aba", "https://tec.openplanner.team/stops/X653abb"], ["https://tec.openplanner.team/stops/Bjodcoi2", "https://tec.openplanner.team/stops/Bjodfco1"], ["https://tec.openplanner.team/stops/N232aua", "https://tec.openplanner.team/stops/N232blb"], ["https://tec.openplanner.team/stops/Bjodsje2", "https://tec.openplanner.team/stops/Bjodsme2"], ["https://tec.openplanner.team/stops/X649abb", "https://tec.openplanner.team/stops/X671ada"], ["https://tec.openplanner.team/stops/X897ara", "https://tec.openplanner.team/stops/X897ava"], ["https://tec.openplanner.team/stops/LLz21--1", "https://tec.openplanner.team/stops/LRfbeau1"], ["https://tec.openplanner.team/stops/H4wa149b", "https://tec.openplanner.team/stops/H4wa151b"], ["https://tec.openplanner.team/stops/Barqhpe2", "https://tec.openplanner.team/stops/Bptrgri2"], ["https://tec.openplanner.team/stops/X615bda", "https://tec.openplanner.team/stops/X615bdb"], ["https://tec.openplanner.team/stops/Cdacolu2", "https://tec.openplanner.team/stops/Clomakr2"], ["https://tec.openplanner.team/stops/LATdame2", "https://tec.openplanner.team/stops/LATjaur1"], ["https://tec.openplanner.team/stops/LmHflor2", "https://tec.openplanner.team/stops/LmTgers2"], ["https://tec.openplanner.team/stops/X804bea", "https://tec.openplanner.team/stops/X804beb"], ["https://tec.openplanner.team/stops/Cgrbert1", "https://tec.openplanner.team/stops/Cgrgrce2"], ["https://tec.openplanner.team/stops/LSZheid1", "https://tec.openplanner.team/stops/LTgjalh1"], ["https://tec.openplanner.team/stops/LDmcruc2", "https://tec.openplanner.team/stops/LDmeg--1"], ["https://tec.openplanner.team/stops/Bbeagae1", "https://tec.openplanner.team/stops/Bbeagae2"], ["https://tec.openplanner.team/stops/H4ga414a", "https://tec.openplanner.team/stops/H4vz371a"], ["https://tec.openplanner.team/stops/N507ada", "https://tec.openplanner.team/stops/N507aia"], ["https://tec.openplanner.team/stops/H1fa120b", "https://tec.openplanner.team/stops/H1hl127b"], ["https://tec.openplanner.team/stops/H1gh155b", "https://tec.openplanner.team/stops/H1gh160b"], ["https://tec.openplanner.team/stops/Cmregli3", "https://tec.openplanner.team/stops/Cmregli4"], ["https://tec.openplanner.team/stops/X824agb", "https://tec.openplanner.team/stops/X824aha"], ["https://tec.openplanner.team/stops/X609ahb", "https://tec.openplanner.team/stops/X611aaa"], ["https://tec.openplanner.team/stops/X790aka", "https://tec.openplanner.team/stops/X790ala"], ["https://tec.openplanner.team/stops/LHgec--0", "https://tec.openplanner.team/stops/LHgeg--2"], ["https://tec.openplanner.team/stops/N501bhb", "https://tec.openplanner.team/stops/N501bvb"], ["https://tec.openplanner.team/stops/H4ta117a", "https://tec.openplanner.team/stops/H4ta124b"], ["https://tec.openplanner.team/stops/H1gr110a", "https://tec.openplanner.team/stops/H1hr127a"], ["https://tec.openplanner.team/stops/N543bfa", "https://tec.openplanner.team/stops/N566aea"], ["https://tec.openplanner.team/stops/LBBodet1", "https://tec.openplanner.team/stops/NL82aga"], ["https://tec.openplanner.team/stops/X609afa", "https://tec.openplanner.team/stops/X609ana"], ["https://tec.openplanner.team/stops/Cgymest1", "https://tec.openplanner.team/stops/Cgymest2"], ["https://tec.openplanner.team/stops/LCEec--1", "https://tec.openplanner.team/stops/LETfort4"], ["https://tec.openplanner.team/stops/LnE79--1", "https://tec.openplanner.team/stops/LnE79--2"], ["https://tec.openplanner.team/stops/Bcsecar2", "https://tec.openplanner.team/stops/Bcseeco3"], ["https://tec.openplanner.team/stops/N535acc", "https://tec.openplanner.team/stops/N535atb"], ["https://tec.openplanner.team/stops/X783acd", "https://tec.openplanner.team/stops/X783ada"], ["https://tec.openplanner.team/stops/Bvirbie3", "https://tec.openplanner.team/stops/Bvirpos2"], ["https://tec.openplanner.team/stops/Lpeatel1", "https://tec.openplanner.team/stops/Lpecaze1"], ["https://tec.openplanner.team/stops/N355abb", "https://tec.openplanner.team/stops/N874agb"], ["https://tec.openplanner.team/stops/N562bla", "https://tec.openplanner.team/stops/N562bqa"], ["https://tec.openplanner.team/stops/Llgcime2", "https://tec.openplanner.team/stops/Lvtpepi2"], ["https://tec.openplanner.team/stops/LMHmeha2", "https://tec.openplanner.team/stops/LMHplac1"], ["https://tec.openplanner.team/stops/H2fy120d", "https://tec.openplanner.team/stops/H2mg141a"], ["https://tec.openplanner.team/stops/N506ajb", "https://tec.openplanner.team/stops/N506bpa"], ["https://tec.openplanner.team/stops/Cgy4bra1", "https://tec.openplanner.team/stops/CMgill2"], ["https://tec.openplanner.team/stops/LSU50--1", "https://tec.openplanner.team/stops/LSUroyo2"], ["https://tec.openplanner.team/stops/Csdbosq2", "https://tec.openplanner.team/stops/Csdfboi2"], ["https://tec.openplanner.team/stops/LHGbeur3", "https://tec.openplanner.team/stops/LHGzoni1"], ["https://tec.openplanner.team/stops/LHDmc--2", "https://tec.openplanner.team/stops/LLGec--*"], ["https://tec.openplanner.team/stops/Btubois1", "https://tec.openplanner.team/stops/Btubois2"], ["https://tec.openplanner.team/stops/LSZchpl1", "https://tec.openplanner.team/stops/LSZptwa2"], ["https://tec.openplanner.team/stops/CMsama1", "https://tec.openplanner.team/stops/Cmtneuv2"], ["https://tec.openplanner.team/stops/LLagert*", "https://tec.openplanner.team/stops/LLasta-*"], ["https://tec.openplanner.team/stops/H1mq199b", "https://tec.openplanner.team/stops/H4ab100a"], ["https://tec.openplanner.team/stops/H4tp146b", "https://tec.openplanner.team/stops/H4tu171b"], ["https://tec.openplanner.team/stops/LBpberl2", "https://tec.openplanner.team/stops/LBpcren1"], ["https://tec.openplanner.team/stops/LTychev1", "https://tec.openplanner.team/stops/LTyh51-2"], ["https://tec.openplanner.team/stops/X910aea", "https://tec.openplanner.team/stops/X910afb"], ["https://tec.openplanner.team/stops/Lticime2", "https://tec.openplanner.team/stops/Ltinico2"], ["https://tec.openplanner.team/stops/X890aba", "https://tec.openplanner.team/stops/X890afa"], ["https://tec.openplanner.team/stops/Crcverr1", "https://tec.openplanner.team/stops/NH03aea"], ["https://tec.openplanner.team/stops/X788aga", "https://tec.openplanner.team/stops/X788ahb"], ["https://tec.openplanner.team/stops/H1ms260a", "https://tec.openplanner.team/stops/H1ms260b"], ["https://tec.openplanner.team/stops/N232aba", "https://tec.openplanner.team/stops/N232bqa"], ["https://tec.openplanner.team/stops/Cwgplac2", "https://tec.openplanner.team/stops/Cwgrans4"], ["https://tec.openplanner.team/stops/Blthwav1", "https://tec.openplanner.team/stops/Bmlncha1"], ["https://tec.openplanner.team/stops/H1cu124a", "https://tec.openplanner.team/stops/H1cu130a"], ["https://tec.openplanner.team/stops/Loufleu2", "https://tec.openplanner.team/stops/Lousite6"], ["https://tec.openplanner.team/stops/Crg3arb2", "https://tec.openplanner.team/stops/Crgmgri1"], ["https://tec.openplanner.team/stops/LFRfagn1", "https://tec.openplanner.team/stops/LFRrohe1"], ["https://tec.openplanner.team/stops/H1et101a", "https://tec.openplanner.team/stops/H1ju121a"], ["https://tec.openplanner.team/stops/LhLbalt1", "https://tec.openplanner.team/stops/LlSzoll2"], ["https://tec.openplanner.team/stops/LWOplat2", "https://tec.openplanner.team/stops/LWOsudr2"], ["https://tec.openplanner.team/stops/Crsapol2", "https://tec.openplanner.team/stops/N543cna"], ["https://tec.openplanner.team/stops/X896afa", "https://tec.openplanner.team/stops/X897axb"], ["https://tec.openplanner.team/stops/Blhugai1", "https://tec.openplanner.team/stops/Bohnegl2"], ["https://tec.openplanner.team/stops/X983aea", "https://tec.openplanner.team/stops/X996ada"], ["https://tec.openplanner.team/stops/H1hr116b", "https://tec.openplanner.team/stops/H1hv132b"], ["https://tec.openplanner.team/stops/N135aga", "https://tec.openplanner.team/stops/N135aib"], ["https://tec.openplanner.team/stops/LMforba2", "https://tec.openplanner.team/stops/LMfsart2"], ["https://tec.openplanner.team/stops/N232beb", "https://tec.openplanner.team/stops/N232bib"], ["https://tec.openplanner.team/stops/LBbhupp1", "https://tec.openplanner.team/stops/X548aea"], ["https://tec.openplanner.team/stops/H5rx130a", "https://tec.openplanner.team/stops/H5rx145a"], ["https://tec.openplanner.team/stops/X764abb", "https://tec.openplanner.team/stops/X764aca"], ["https://tec.openplanner.team/stops/N101agc", "https://tec.openplanner.team/stops/N101aha"], ["https://tec.openplanner.team/stops/Ccogode1", "https://tec.openplanner.team/stops/Ccogode2"], ["https://tec.openplanner.team/stops/Cflcoro1", "https://tec.openplanner.team/stops/Cflpost1"], ["https://tec.openplanner.team/stops/X358acd", "https://tec.openplanner.team/stops/X358aeb"], ["https://tec.openplanner.team/stops/Ctuhouz2", "https://tec.openplanner.team/stops/Ctupont1"], ["https://tec.openplanner.team/stops/X879aaa", "https://tec.openplanner.team/stops/X879aab"], ["https://tec.openplanner.team/stops/Brixpla1", "https://tec.openplanner.team/stops/Brixpla2"], ["https://tec.openplanner.team/stops/Lsehya-4", "https://tec.openplanner.team/stops/Lsepair3"], ["https://tec.openplanner.team/stops/Bcseaba2", "https://tec.openplanner.team/stops/Bsmgsuz1"], ["https://tec.openplanner.team/stops/Livmoul2", "https://tec.openplanner.team/stops/Livroch2"], ["https://tec.openplanner.team/stops/H1hv132a", "https://tec.openplanner.team/stops/H1hv133a"], ["https://tec.openplanner.team/stops/N323aaa", "https://tec.openplanner.team/stops/N368aea"], ["https://tec.openplanner.team/stops/H4mv196a", "https://tec.openplanner.team/stops/H4mv196b"], ["https://tec.openplanner.team/stops/N229aia", "https://tec.openplanner.team/stops/N229aob"], ["https://tec.openplanner.team/stops/N516aib", "https://tec.openplanner.team/stops/N517aba"], ["https://tec.openplanner.team/stops/LAWchpl1", "https://tec.openplanner.team/stops/LHGleje1"], ["https://tec.openplanner.team/stops/Ltiegli3", "https://tec.openplanner.team/stops/Ltipass2"], ["https://tec.openplanner.team/stops/N368aba", "https://tec.openplanner.team/stops/N368abb"], ["https://tec.openplanner.team/stops/Llgangl1", "https://tec.openplanner.team/stops/Llgangl2"], ["https://tec.openplanner.team/stops/LMEeg--2", "https://tec.openplanner.team/stops/LMEense1"], ["https://tec.openplanner.team/stops/X994aka", "https://tec.openplanner.team/stops/X995aaa"], ["https://tec.openplanner.team/stops/Lhecarc2", "https://tec.openplanner.team/stops/Lhepaqu1"], ["https://tec.openplanner.team/stops/N538agb", "https://tec.openplanner.team/stops/N538anb"], ["https://tec.openplanner.team/stops/H5el111a", "https://tec.openplanner.team/stops/H5rx132b"], ["https://tec.openplanner.team/stops/X664aab", "https://tec.openplanner.team/stops/X664adc"], ["https://tec.openplanner.team/stops/X911aha", "https://tec.openplanner.team/stops/X911ata"], ["https://tec.openplanner.team/stops/X687aga", "https://tec.openplanner.team/stops/X687aha"], ["https://tec.openplanner.team/stops/Cctchav1", "https://tec.openplanner.team/stops/NC11ahb"], ["https://tec.openplanner.team/stops/X811ada", "https://tec.openplanner.team/stops/X811adb"], ["https://tec.openplanner.team/stops/N113aca", "https://tec.openplanner.team/stops/N113acb"], ["https://tec.openplanner.team/stops/Lstauna1", "https://tec.openplanner.team/stops/Lstauna2"], ["https://tec.openplanner.team/stops/X623aeb", "https://tec.openplanner.team/stops/X623afa"], ["https://tec.openplanner.team/stops/LEnchan1", "https://tec.openplanner.team/stops/NL67aab"], ["https://tec.openplanner.team/stops/LAYdieu1", "https://tec.openplanner.team/stops/LAYwerb2"], ["https://tec.openplanner.team/stops/N211baa", "https://tec.openplanner.team/stops/N211bab"], ["https://tec.openplanner.team/stops/LrEkirc1", "https://tec.openplanner.team/stops/LrEkreu1"], ["https://tec.openplanner.team/stops/Ccupays1", "https://tec.openplanner.team/stops/Ccuseba1"], ["https://tec.openplanner.team/stops/LWHwaas1", "https://tec.openplanner.team/stops/LWHzave2"], ["https://tec.openplanner.team/stops/N204aea", "https://tec.openplanner.team/stops/N208aab"], ["https://tec.openplanner.team/stops/Lthfagn2", "https://tec.openplanner.team/stops/Lthfren2"], ["https://tec.openplanner.team/stops/X955aba", "https://tec.openplanner.team/stops/X955acb"], ["https://tec.openplanner.team/stops/X758aab", "https://tec.openplanner.team/stops/X758ajb"], ["https://tec.openplanner.team/stops/N501hsb", "https://tec.openplanner.team/stops/N501hwa"], ["https://tec.openplanner.team/stops/Bhevjal2", "https://tec.openplanner.team/stops/Bhevl3l1"], ["https://tec.openplanner.team/stops/N232aea", "https://tec.openplanner.team/stops/N232apa"], ["https://tec.openplanner.team/stops/LFIeg--1", "https://tec.openplanner.team/stops/LFIinse2"], ["https://tec.openplanner.team/stops/Bnivche2", "https://tec.openplanner.team/stops/Bnivcma1"], ["https://tec.openplanner.team/stops/H1ms250a", "https://tec.openplanner.team/stops/H1ms936a"], ["https://tec.openplanner.team/stops/H1bb115a", "https://tec.openplanner.team/stops/H1bo150a"], ["https://tec.openplanner.team/stops/Bboutry1", "https://tec.openplanner.team/stops/Bwaygrg2"], ["https://tec.openplanner.team/stops/H4ga153b", "https://tec.openplanner.team/stops/H4ga155b"], ["https://tec.openplanner.team/stops/X669aaa", "https://tec.openplanner.team/stops/X669aea"], ["https://tec.openplanner.team/stops/H3bi101a", "https://tec.openplanner.team/stops/H3bi112a"], ["https://tec.openplanner.team/stops/N106aeb", "https://tec.openplanner.team/stops/N106apa"], ["https://tec.openplanner.team/stops/N534ada", "https://tec.openplanner.team/stops/N534aga"], ["https://tec.openplanner.team/stops/LLrchat2", "https://tec.openplanner.team/stops/LLrdrev2"], ["https://tec.openplanner.team/stops/LFLcent1", "https://tec.openplanner.team/stops/LSpunio2"], ["https://tec.openplanner.team/stops/Bmelenf1", "https://tec.openplanner.team/stops/Btilsce1"], ["https://tec.openplanner.team/stops/Caibino1", "https://tec.openplanner.team/stops/N543cjb"], ["https://tec.openplanner.team/stops/X946abb", "https://tec.openplanner.team/stops/X946afa"], ["https://tec.openplanner.team/stops/LrDschl2", "https://tec.openplanner.team/stops/LrEfeck1"], ["https://tec.openplanner.team/stops/LVPbleh2", "https://tec.openplanner.team/stops/LVPgrot1"], ["https://tec.openplanner.team/stops/Buccpes2", "https://tec.openplanner.team/stops/Bwbfgar2"], ["https://tec.openplanner.team/stops/Bettars1", "https://tec.openplanner.team/stops/Bettgle1"], ["https://tec.openplanner.team/stops/H1po130a", "https://tec.openplanner.team/stops/H1po133a"], ["https://tec.openplanner.team/stops/N501exa", "https://tec.openplanner.team/stops/N501hcc"], ["https://tec.openplanner.team/stops/Ccocoup1", "https://tec.openplanner.team/stops/Crowilb2"], ["https://tec.openplanner.team/stops/H4es117a", "https://tec.openplanner.team/stops/H4ln128b"], ["https://tec.openplanner.team/stops/Cobbusc2", "https://tec.openplanner.team/stops/Cobmven2"], ["https://tec.openplanner.team/stops/LScd45-1", "https://tec.openplanner.team/stops/LScdina1"], ["https://tec.openplanner.team/stops/Lmlmich2", "https://tec.openplanner.team/stops/Lmlrosa1"], ["https://tec.openplanner.team/stops/H4ty301a", "https://tec.openplanner.team/stops/H4ty335b"], ["https://tec.openplanner.team/stops/H4ka193a", "https://tec.openplanner.team/stops/H4ty333a"], ["https://tec.openplanner.team/stops/N201aia", "https://tec.openplanner.team/stops/N201atb"], ["https://tec.openplanner.team/stops/NL76aja", "https://tec.openplanner.team/stops/NL76akb"], ["https://tec.openplanner.team/stops/LBIaepo2", "https://tec.openplanner.team/stops/Lmlpech1"], ["https://tec.openplanner.team/stops/LOrchau2", "https://tec.openplanner.team/stops/LORcomb1"], ["https://tec.openplanner.team/stops/N562acb", "https://tec.openplanner.team/stops/N562aeb"], ["https://tec.openplanner.team/stops/LeUmoor1", "https://tec.openplanner.team/stops/LeUwert2"], ["https://tec.openplanner.team/stops/N120aab", "https://tec.openplanner.team/stops/N302ada"], ["https://tec.openplanner.team/stops/H1gi123b", "https://tec.openplanner.team/stops/H1ry137a"], ["https://tec.openplanner.team/stops/Cpl4bra3", "https://tec.openplanner.team/stops/Cplrmon2"], ["https://tec.openplanner.team/stops/H1ha187b", "https://tec.openplanner.team/stops/H1ha190b"], ["https://tec.openplanner.team/stops/X625ada", "https://tec.openplanner.team/stops/X625aea"], ["https://tec.openplanner.team/stops/H1te184a", "https://tec.openplanner.team/stops/H1te187b"], ["https://tec.openplanner.team/stops/H4ty320b", "https://tec.openplanner.team/stops/H4ty323a"], ["https://tec.openplanner.team/stops/X941aca", "https://tec.openplanner.team/stops/X941adb"], ["https://tec.openplanner.team/stops/NL74abb", "https://tec.openplanner.team/stops/NL75aba"], ["https://tec.openplanner.team/stops/H1mb127a", "https://tec.openplanner.team/stops/H1mb127b"], ["https://tec.openplanner.team/stops/LMOfleu2", "https://tec.openplanner.team/stops/LMOm64-1"], ["https://tec.openplanner.team/stops/LCsfize1", "https://tec.openplanner.team/stops/LFFmagr2"], ["https://tec.openplanner.team/stops/X734aia", "https://tec.openplanner.team/stops/X734aja"], ["https://tec.openplanner.team/stops/Cwfdame2", "https://tec.openplanner.team/stops/Cwfmonu2"], ["https://tec.openplanner.team/stops/N501lob", "https://tec.openplanner.team/stops/N538aab"], ["https://tec.openplanner.team/stops/Bcbqtub1", "https://tec.openplanner.team/stops/Bosqpqu1"], ["https://tec.openplanner.team/stops/X662aea", "https://tec.openplanner.team/stops/X663aga"], ["https://tec.openplanner.team/stops/Cobbuze2", "https://tec.openplanner.team/stops/Cobnive2"], ["https://tec.openplanner.team/stops/X738acb", "https://tec.openplanner.team/stops/X754amb"], ["https://tec.openplanner.team/stops/N534bua", "https://tec.openplanner.team/stops/N534bvb"], ["https://tec.openplanner.team/stops/Cgomoul1", "https://tec.openplanner.team/stops/CMemai1"], ["https://tec.openplanner.team/stops/Cgocapu2", "https://tec.openplanner.team/stops/Cgohnda2"], ["https://tec.openplanner.team/stops/LmTschi2", "https://tec.openplanner.team/stops/LrTpost1"], ["https://tec.openplanner.team/stops/Lcceclu1", "https://tec.openplanner.team/stops/Lfhmarn2"], ["https://tec.openplanner.team/stops/Bptrlux2", "https://tec.openplanner.team/stops/Bptrman2"], ["https://tec.openplanner.team/stops/N539aza", "https://tec.openplanner.team/stops/N539baa"], ["https://tec.openplanner.team/stops/H1cu132a", "https://tec.openplanner.team/stops/H1je212a"], ["https://tec.openplanner.team/stops/LHNgare1", "https://tec.openplanner.team/stops/LHNtill1"], ["https://tec.openplanner.team/stops/X926afb", "https://tec.openplanner.team/stops/X945abc"], ["https://tec.openplanner.team/stops/X713ajc", "https://tec.openplanner.team/stops/X713ajd"], ["https://tec.openplanner.team/stops/Lstpoly1", "https://tec.openplanner.team/stops/Lstpoly2"], ["https://tec.openplanner.team/stops/X601bpb", "https://tec.openplanner.team/stops/X601dha"], ["https://tec.openplanner.team/stops/N506bfb", "https://tec.openplanner.team/stops/N512agb"], ["https://tec.openplanner.team/stops/X747aka", "https://tec.openplanner.team/stops/X749aab"], ["https://tec.openplanner.team/stops/H1mb131b", "https://tec.openplanner.team/stops/H1mb135a"], ["https://tec.openplanner.team/stops/N553akb", "https://tec.openplanner.team/stops/N553ala"], ["https://tec.openplanner.team/stops/Bcbqrog1", "https://tec.openplanner.team/stops/Bcbqrog2"], ["https://tec.openplanner.team/stops/N501lzz", "https://tec.openplanner.team/stops/N501maa"], ["https://tec.openplanner.team/stops/H4ru246a", "https://tec.openplanner.team/stops/H4ty349b"], ["https://tec.openplanner.team/stops/LHFcaqu1", "https://tec.openplanner.team/stops/LJedonc1"], ["https://tec.openplanner.team/stops/H4ha168b", "https://tec.openplanner.team/stops/H4me213b"], ["https://tec.openplanner.team/stops/LHEches3", "https://tec.openplanner.team/stops/LHEecmo1"], ["https://tec.openplanner.team/stops/H4be111a", "https://tec.openplanner.team/stops/H4be113a"], ["https://tec.openplanner.team/stops/H2sb225b", "https://tec.openplanner.team/stops/H3th134a"], ["https://tec.openplanner.team/stops/N535ajb", "https://tec.openplanner.team/stops/N535aub"], ["https://tec.openplanner.team/stops/H1ol137b", "https://tec.openplanner.team/stops/H5is168a"], ["https://tec.openplanner.team/stops/X756aia", "https://tec.openplanner.team/stops/X779afa"], ["https://tec.openplanner.team/stops/Cfmrrou1", "https://tec.openplanner.team/stops/Cgxfo141"], ["https://tec.openplanner.team/stops/H4mb139a", "https://tec.openplanner.team/stops/H4mb142a"], ["https://tec.openplanner.team/stops/X820agb", "https://tec.openplanner.team/stops/X820agd"], ["https://tec.openplanner.team/stops/X652acb", "https://tec.openplanner.team/stops/X652aea"], ["https://tec.openplanner.team/stops/Llgcrah1", "https://tec.openplanner.team/stops/LlgPRVo2"], ["https://tec.openplanner.team/stops/Bmonbri1", "https://tec.openplanner.team/stops/Bnivlai2"], ["https://tec.openplanner.team/stops/H1qp140a", "https://tec.openplanner.team/stops/H1qp142b"], ["https://tec.openplanner.team/stops/X619afb", "https://tec.openplanner.team/stops/X619agb"], ["https://tec.openplanner.team/stops/X877aab", "https://tec.openplanner.team/stops/X877aeb"], ["https://tec.openplanner.team/stops/X605aca", "https://tec.openplanner.team/stops/X605acb"], ["https://tec.openplanner.team/stops/Ctmmana1", "https://tec.openplanner.team/stops/Ctmmana2"], ["https://tec.openplanner.team/stops/H5pe141a", "https://tec.openplanner.team/stops/H5pe141b"], ["https://tec.openplanner.team/stops/N508ajb", "https://tec.openplanner.team/stops/N513bib"], ["https://tec.openplanner.team/stops/LREelse2", "https://tec.openplanner.team/stops/LREsech2"], ["https://tec.openplanner.team/stops/Blimmer2", "https://tec.openplanner.team/stops/Bottvil2"], ["https://tec.openplanner.team/stops/X921aia", "https://tec.openplanner.team/stops/X921aqb"], ["https://tec.openplanner.team/stops/Brixbai2", "https://tec.openplanner.team/stops/Brixchw1"], ["https://tec.openplanner.team/stops/Ljekess2", "https://tec.openplanner.team/stops/Lsetroq1"], ["https://tec.openplanner.team/stops/N525aca", "https://tec.openplanner.team/stops/N525anb"], ["https://tec.openplanner.team/stops/Cgochfe1", "https://tec.openplanner.team/stops/Cgomoul1"], ["https://tec.openplanner.team/stops/H1tt104b", "https://tec.openplanner.team/stops/H1tt107a"], ["https://tec.openplanner.team/stops/LVEh16-1", "https://tec.openplanner.team/stops/LVErtt-1"], ["https://tec.openplanner.team/stops/H1mx122a", "https://tec.openplanner.team/stops/H1mx123b"], ["https://tec.openplanner.team/stops/N214aea", "https://tec.openplanner.team/stops/N214agb"], ["https://tec.openplanner.team/stops/H1em103a", "https://tec.openplanner.team/stops/H1em106a"], ["https://tec.openplanner.team/stops/N311aaa", "https://tec.openplanner.team/stops/N311abb"], ["https://tec.openplanner.team/stops/H1vb143a", "https://tec.openplanner.team/stops/H1wz171a"], ["https://tec.openplanner.team/stops/LhGbahn4", "https://tec.openplanner.team/stops/LhGknip2"], ["https://tec.openplanner.team/stops/Lverdep2", "https://tec.openplanner.team/stops/Lveyser2"], ["https://tec.openplanner.team/stops/Bborbif2", "https://tec.openplanner.team/stops/Bborppa2"], ["https://tec.openplanner.team/stops/N211ada", "https://tec.openplanner.team/stops/N211aeb"], ["https://tec.openplanner.team/stops/X802abb", "https://tec.openplanner.team/stops/X882ala"], ["https://tec.openplanner.team/stops/X652aca", "https://tec.openplanner.team/stops/X652acb"], ["https://tec.openplanner.team/stops/LScread2", "https://tec.openplanner.team/stops/LTNsarl1"], ["https://tec.openplanner.team/stops/N222ada", "https://tec.openplanner.team/stops/X222adc"], ["https://tec.openplanner.team/stops/Llgbron1", "https://tec.openplanner.team/stops/Llgbron2"], ["https://tec.openplanner.team/stops/N576aha", "https://tec.openplanner.team/stops/N576aja"], ["https://tec.openplanner.team/stops/LCPone92", "https://tec.openplanner.team/stops/LOnec--2"], ["https://tec.openplanner.team/stops/X746afa", "https://tec.openplanner.team/stops/X746afb"], ["https://tec.openplanner.team/stops/LmYkirc2", "https://tec.openplanner.team/stops/LvA30--2"], ["https://tec.openplanner.team/stops/H4bc101b", "https://tec.openplanner.team/stops/H4bc101d"], ["https://tec.openplanner.team/stops/LAWdefu4", "https://tec.openplanner.team/stops/LAWmc--4"], ["https://tec.openplanner.team/stops/Cfanoci2", "https://tec.openplanner.team/stops/Cfastan2"], ["https://tec.openplanner.team/stops/N215abb", "https://tec.openplanner.team/stops/N261ahb"], ["https://tec.openplanner.team/stops/N557aeb", "https://tec.openplanner.team/stops/N557aib"], ["https://tec.openplanner.team/stops/Lemeg--1", "https://tec.openplanner.team/stops/Lemhuet1"], ["https://tec.openplanner.team/stops/H2ma263a", "https://tec.openplanner.team/stops/H2ma264a"], ["https://tec.openplanner.team/stops/H4fa124b", "https://tec.openplanner.team/stops/H4fa126d"], ["https://tec.openplanner.team/stops/Bsaumlp2", "https://tec.openplanner.team/stops/Bsauvmo1"], ["https://tec.openplanner.team/stops/X758ada", "https://tec.openplanner.team/stops/X758aeb"], ["https://tec.openplanner.team/stops/Lancolr1", "https://tec.openplanner.team/stops/Lanothe1"], ["https://tec.openplanner.team/stops/Bnivgam2", "https://tec.openplanner.team/stops/Bnivh%C3%B4p2"], ["https://tec.openplanner.team/stops/LPLfp2-1", "https://tec.openplanner.team/stops/LPLheid1"], ["https://tec.openplanner.team/stops/Cwfnamu2", "https://tec.openplanner.team/stops/N543bna"], ["https://tec.openplanner.team/stops/N360aca", "https://tec.openplanner.team/stops/N360aeb"], ["https://tec.openplanner.team/stops/Crgegli2", "https://tec.openplanner.team/stops/Crgmgri2"], ["https://tec.openplanner.team/stops/X801abc", "https://tec.openplanner.team/stops/X801aeb"], ["https://tec.openplanner.team/stops/N244aib", "https://tec.openplanner.team/stops/N287ada"], ["https://tec.openplanner.team/stops/H1gh166b", "https://tec.openplanner.team/stops/H1gh365a"], ["https://tec.openplanner.team/stops/H4ru240b", "https://tec.openplanner.team/stops/H4ru244b"], ["https://tec.openplanner.team/stops/X764ada", "https://tec.openplanner.team/stops/X764aea"], ["https://tec.openplanner.team/stops/LFmgeno1", "https://tec.openplanner.team/stops/LFmroye1"], ["https://tec.openplanner.team/stops/X723anb", "https://tec.openplanner.team/stops/X724aga"], ["https://tec.openplanner.team/stops/N565aib", "https://tec.openplanner.team/stops/N565ala"], ["https://tec.openplanner.team/stops/X354aib", "https://tec.openplanner.team/stops/X858aha"], ["https://tec.openplanner.team/stops/H4ry130a", "https://tec.openplanner.team/stops/H4we134a"], ["https://tec.openplanner.team/stops/LLt43--2", "https://tec.openplanner.team/stops/LLtwanz2"], ["https://tec.openplanner.team/stops/X740aca", "https://tec.openplanner.team/stops/X740acb"], ["https://tec.openplanner.team/stops/H2sb231a", "https://tec.openplanner.team/stops/H2sb231b"], ["https://tec.openplanner.team/stops/H2fy123c", "https://tec.openplanner.team/stops/H2jo161c"], ["https://tec.openplanner.team/stops/LAYpl--2", "https://tec.openplanner.team/stops/LAYpl--3"], ["https://tec.openplanner.team/stops/X354afb", "https://tec.openplanner.team/stops/X359aea"], ["https://tec.openplanner.team/stops/Cmldupu1", "https://tec.openplanner.team/stops/Cmlvesp1"], ["https://tec.openplanner.team/stops/Lre3che2", "https://tec.openplanner.team/stops/Lrebriq2"], ["https://tec.openplanner.team/stops/LOnec--1", "https://tec.openplanner.team/stops/LXopier2"], ["https://tec.openplanner.team/stops/N501apa", "https://tec.openplanner.team/stops/N501bcb"], ["https://tec.openplanner.team/stops/LArmaro1", "https://tec.openplanner.team/stops/LBbhupp1"], ["https://tec.openplanner.team/stops/NL78adb", "https://tec.openplanner.team/stops/NL81adb"], ["https://tec.openplanner.team/stops/Becebju1", "https://tec.openplanner.team/stops/H2mi124a"], ["https://tec.openplanner.team/stops/X779adb", "https://tec.openplanner.team/stops/X779aia"], ["https://tec.openplanner.team/stops/H1hr118c", "https://tec.openplanner.team/stops/H3so156a"], ["https://tec.openplanner.team/stops/LrEgend2", "https://tec.openplanner.team/stops/LrEochs2"], ["https://tec.openplanner.team/stops/H1ch101b", "https://tec.openplanner.team/stops/H1ch103b"], ["https://tec.openplanner.team/stops/Btubmfa1", "https://tec.openplanner.team/stops/Btubnav1"], ["https://tec.openplanner.team/stops/H4lp121b", "https://tec.openplanner.team/stops/H4ma162a"], ["https://tec.openplanner.team/stops/X901anb", "https://tec.openplanner.team/stops/X901bqa"], ["https://tec.openplanner.team/stops/N351ajd", "https://tec.openplanner.team/stops/N351aua"], ["https://tec.openplanner.team/stops/Bgemga11", "https://tec.openplanner.team/stops/Bgemga12"], ["https://tec.openplanner.team/stops/N217aba", "https://tec.openplanner.team/stops/N217acd"], ["https://tec.openplanner.team/stops/N509aoa", "https://tec.openplanner.team/stops/N509aob"], ["https://tec.openplanner.team/stops/LaLkabi1", "https://tec.openplanner.team/stops/LaLkabi2"], ["https://tec.openplanner.team/stops/X725ada", "https://tec.openplanner.team/stops/X725afd"], ["https://tec.openplanner.team/stops/LsVmolk1", "https://tec.openplanner.team/stops/LsVprum2"], ["https://tec.openplanner.team/stops/Cgyhaie1", "https://tec.openplanner.team/stops/CMgazo2"], ["https://tec.openplanner.team/stops/LBdcime2", "https://tec.openplanner.team/stops/LBdmarr1"], ["https://tec.openplanner.team/stops/N508aob", "https://tec.openplanner.team/stops/N509aaa"], ["https://tec.openplanner.team/stops/N301ana", "https://tec.openplanner.team/stops/N301asb"], ["https://tec.openplanner.team/stops/Cgpcime1", "https://tec.openplanner.team/stops/Cgplhoi1"], ["https://tec.openplanner.team/stops/X764aba", "https://tec.openplanner.team/stops/X764ada"], ["https://tec.openplanner.team/stops/Bfelcsa2", "https://tec.openplanner.team/stops/Bfelfde2"], ["https://tec.openplanner.team/stops/H4ct111a", "https://tec.openplanner.team/stops/H5bs102a"], ["https://tec.openplanner.team/stops/Bnivfro1", "https://tec.openplanner.team/stops/Bnivsto1"], ["https://tec.openplanner.team/stops/Blemkap1", "https://tec.openplanner.team/stops/Blemwob4"], ["https://tec.openplanner.team/stops/N513ahb", "https://tec.openplanner.team/stops/N513bfa"], ["https://tec.openplanner.team/stops/LBahaut1", "https://tec.openplanner.team/stops/LTAbran1"], ["https://tec.openplanner.team/stops/Bkrabhu2", "https://tec.openplanner.team/stops/Bovevri1"], ["https://tec.openplanner.team/stops/LGEbern1", "https://tec.openplanner.team/stops/LGEcent2"], ["https://tec.openplanner.team/stops/X645aab", "https://tec.openplanner.team/stops/X645abb"], ["https://tec.openplanner.team/stops/LHHlomb1", "https://tec.openplanner.team/stops/LOmlime1"], ["https://tec.openplanner.team/stops/Cfcgar2", "https://tec.openplanner.team/stops/Cfcmass2"], ["https://tec.openplanner.team/stops/N501anz", "https://tec.openplanner.team/stops/N501nca"], ["https://tec.openplanner.team/stops/H4ar101a", "https://tec.openplanner.team/stops/H4lg106a"], ["https://tec.openplanner.team/stops/X602adb", "https://tec.openplanner.team/stops/X602afa"], ["https://tec.openplanner.team/stops/H4os217a", "https://tec.openplanner.team/stops/H5wo132a"], ["https://tec.openplanner.team/stops/H1ht131b", "https://tec.openplanner.team/stops/H1ht136b"], ["https://tec.openplanner.team/stops/LNEec--2", "https://tec.openplanner.team/stops/LVosoir2"], ["https://tec.openplanner.team/stops/Bgisber1", "https://tec.openplanner.team/stops/Bgisman2"], ["https://tec.openplanner.team/stops/X777aaa", "https://tec.openplanner.team/stops/X777aab"], ["https://tec.openplanner.team/stops/Bpiejus2", "https://tec.openplanner.team/stops/Bpielon2"], ["https://tec.openplanner.team/stops/X742aab", "https://tec.openplanner.team/stops/X752aba"], ["https://tec.openplanner.team/stops/Cthcrom1", "https://tec.openplanner.team/stops/Cthpibl2"], ["https://tec.openplanner.team/stops/N549ahb", "https://tec.openplanner.team/stops/N549aib"], ["https://tec.openplanner.team/stops/X636afb", "https://tec.openplanner.team/stops/X636aja"], ["https://tec.openplanner.team/stops/Cstmarz1", "https://tec.openplanner.team/stops/Cstvape2"], ["https://tec.openplanner.team/stops/Bnilcim2", "https://tec.openplanner.team/stops/Bnilpje1"], ["https://tec.openplanner.team/stops/X741ahb", "https://tec.openplanner.team/stops/X741apa"], ["https://tec.openplanner.team/stops/LAYlieg2", "https://tec.openplanner.team/stops/LAYthir2"], ["https://tec.openplanner.team/stops/X912aeb", "https://tec.openplanner.team/stops/X912afb"], ["https://tec.openplanner.team/stops/X261adb", "https://tec.openplanner.team/stops/X982aab"], ["https://tec.openplanner.team/stops/X940aab", "https://tec.openplanner.team/stops/X940abb"], ["https://tec.openplanner.team/stops/Cbfbies2", "https://tec.openplanner.team/stops/Cctsold2"], ["https://tec.openplanner.team/stops/X641akb", "https://tec.openplanner.team/stops/X641awb"], ["https://tec.openplanner.team/stops/Bbcopre2", "https://tec.openplanner.team/stops/Bbcoroy2"], ["https://tec.openplanner.team/stops/H4tf147a", "https://tec.openplanner.team/stops/H4wa156b"], ["https://tec.openplanner.team/stops/H1hr125b", "https://tec.openplanner.team/stops/H1hr129a"], ["https://tec.openplanner.team/stops/Cvsduve1", "https://tec.openplanner.team/stops/Cvssncv1"], ["https://tec.openplanner.team/stops/N547aha", "https://tec.openplanner.team/stops/N547ama"], ["https://tec.openplanner.team/stops/X991aab", "https://tec.openplanner.team/stops/X993aab"], ["https://tec.openplanner.team/stops/H1vh137b", "https://tec.openplanner.team/stops/H3bo101b"], ["https://tec.openplanner.team/stops/X612aeb", "https://tec.openplanner.team/stops/X612afa"], ["https://tec.openplanner.team/stops/Bpelegl1", "https://tec.openplanner.team/stops/Bpelegl2"], ["https://tec.openplanner.team/stops/X889aba", "https://tec.openplanner.team/stops/X889abb"], ["https://tec.openplanner.team/stops/Crchutt1", "https://tec.openplanner.team/stops/Crchutt2"], ["https://tec.openplanner.team/stops/Cgycvie1", "https://tec.openplanner.team/stops/Cgymast1"], ["https://tec.openplanner.team/stops/Cgofbru1", "https://tec.openplanner.team/stops/Cgopier3"], ["https://tec.openplanner.team/stops/LLUmc--1", "https://tec.openplanner.team/stops/LLUmont2"], ["https://tec.openplanner.team/stops/X687aca", "https://tec.openplanner.team/stops/X687aea"], ["https://tec.openplanner.team/stops/Ccabois1", "https://tec.openplanner.team/stops/N162aab"], ["https://tec.openplanner.team/stops/LHEvign2", "https://tec.openplanner.team/stops/LXHbois1"], ["https://tec.openplanner.team/stops/Bgnvcom2", "https://tec.openplanner.team/stops/Bgnvval1"], ["https://tec.openplanner.team/stops/H4pe124a", "https://tec.openplanner.team/stops/H4pe128a"], ["https://tec.openplanner.team/stops/H1gi120d", "https://tec.openplanner.team/stops/H1hm176b"], ["https://tec.openplanner.team/stops/Cmastma1", "https://tec.openplanner.team/stops/Cmastma4"], ["https://tec.openplanner.team/stops/LHMbami1", "https://tec.openplanner.team/stops/LHMchbl1"], ["https://tec.openplanner.team/stops/Lccaigr2", "https://tec.openplanner.team/stops/LRAgrot2"], ["https://tec.openplanner.team/stops/X688aab", "https://tec.openplanner.team/stops/X688abb"], ["https://tec.openplanner.team/stops/NL76aia", "https://tec.openplanner.team/stops/NL76amb"], ["https://tec.openplanner.team/stops/Bcseaba1", "https://tec.openplanner.team/stops/Bottcba1"], ["https://tec.openplanner.team/stops/Laghetr2", "https://tec.openplanner.team/stops/Lagtenn2"], ["https://tec.openplanner.team/stops/Bpthcgo1", "https://tec.openplanner.team/stops/Bwanthi2"], ["https://tec.openplanner.team/stops/X610adb", "https://tec.openplanner.team/stops/X610afa"], ["https://tec.openplanner.team/stops/LBPmais1", "https://tec.openplanner.team/stops/LBPmili1"], ["https://tec.openplanner.team/stops/Bnivpba2", "https://tec.openplanner.team/stops/Bnivphs2"], ["https://tec.openplanner.team/stops/LsVbell2", "https://tec.openplanner.team/stops/LsVhunn1"], ["https://tec.openplanner.team/stops/LThpoli1", "https://tec.openplanner.team/stops/LThsere2"], ["https://tec.openplanner.team/stops/H4eg101a", "https://tec.openplanner.team/stops/H4eg101b"], ["https://tec.openplanner.team/stops/NL78afa", "https://tec.openplanner.team/stops/NL78afb"], ["https://tec.openplanner.team/stops/H2ma209b", "https://tec.openplanner.team/stops/H3th130a"], ["https://tec.openplanner.team/stops/X639aqb", "https://tec.openplanner.team/stops/X639ata"], ["https://tec.openplanner.team/stops/Ljeespe1", "https://tec.openplanner.team/stops/Ljeespe2"], ["https://tec.openplanner.team/stops/X870aaa", "https://tec.openplanner.team/stops/X880age"], ["https://tec.openplanner.team/stops/Ccosart2", "https://tec.openplanner.team/stops/Ccosart4"], ["https://tec.openplanner.team/stops/X725aqa", "https://tec.openplanner.team/stops/X725aqb"], ["https://tec.openplanner.team/stops/H1gh153b", "https://tec.openplanner.team/stops/H1gh167a"], ["https://tec.openplanner.team/stops/Btubga01", "https://tec.openplanner.team/stops/Btubnav1"], ["https://tec.openplanner.team/stops/H2hp119d", "https://tec.openplanner.team/stops/H2hp261a"], ["https://tec.openplanner.team/stops/Bgntcoo2", "https://tec.openplanner.team/stops/Bgntpla2"], ["https://tec.openplanner.team/stops/N235aeb", "https://tec.openplanner.team/stops/N241adb"], ["https://tec.openplanner.team/stops/N509axb", "https://tec.openplanner.team/stops/N509bgb"], ["https://tec.openplanner.team/stops/LTreg--1", "https://tec.openplanner.team/stops/LTrrich1"], ["https://tec.openplanner.team/stops/H4bn173a", "https://tec.openplanner.team/stops/H4pi136b"], ["https://tec.openplanner.team/stops/H1ho132b", "https://tec.openplanner.team/stops/H1ho135b"], ["https://tec.openplanner.team/stops/LBrbern1", "https://tec.openplanner.team/stops/LBrec--1"], ["https://tec.openplanner.team/stops/N120aga", "https://tec.openplanner.team/stops/N120agb"], ["https://tec.openplanner.team/stops/X801aab", "https://tec.openplanner.team/stops/X801aca"], ["https://tec.openplanner.team/stops/Bjodfco1", "https://tec.openplanner.team/stops/Bpiejus1"], ["https://tec.openplanner.team/stops/LkEhatt2", "https://tec.openplanner.team/stops/LkEheyg1"], ["https://tec.openplanner.team/stops/X773aia", "https://tec.openplanner.team/stops/X773aja"], ["https://tec.openplanner.team/stops/Ccifies1", "https://tec.openplanner.team/stops/Clvimtr1"], ["https://tec.openplanner.team/stops/H4oq223a", "https://tec.openplanner.team/stops/H4ty331a"], ["https://tec.openplanner.team/stops/X993aeb", "https://tec.openplanner.team/stops/X993aia"], ["https://tec.openplanner.team/stops/LFIcabi1", "https://tec.openplanner.team/stops/LFIeg--1"], ["https://tec.openplanner.team/stops/X615bea", "https://tec.openplanner.team/stops/X695aab"], ["https://tec.openplanner.team/stops/Cflecep1", "https://tec.openplanner.team/stops/NC12adb"], ["https://tec.openplanner.team/stops/X757aeb", "https://tec.openplanner.team/stops/X757aia"], ["https://tec.openplanner.team/stops/N551aib", "https://tec.openplanner.team/stops/N551aiz"], ["https://tec.openplanner.team/stops/N113adb", "https://tec.openplanner.team/stops/N113aeb"], ["https://tec.openplanner.team/stops/Livfays2", "https://tec.openplanner.team/stops/LRagrch2"], ["https://tec.openplanner.team/stops/NC24aea", "https://tec.openplanner.team/stops/NC24afa"], ["https://tec.openplanner.team/stops/LOL6che2", "https://tec.openplanner.team/stops/LSHfief1"], ["https://tec.openplanner.team/stops/H4ty283b", "https://tec.openplanner.team/stops/H4ty332c"], ["https://tec.openplanner.team/stops/X636bha", "https://tec.openplanner.team/stops/X636bhb"], ["https://tec.openplanner.team/stops/H4be101a", "https://tec.openplanner.team/stops/H5pe144a"], ["https://tec.openplanner.team/stops/Brebras1", "https://tec.openplanner.team/stops/Bsteegl1"], ["https://tec.openplanner.team/stops/N562aob", "https://tec.openplanner.team/stops/N570aaa"], ["https://tec.openplanner.team/stops/N501gzy", "https://tec.openplanner.team/stops/N501mqa"], ["https://tec.openplanner.team/stops/Cbflong2", "https://tec.openplanner.team/stops/Clvimtr2"], ["https://tec.openplanner.team/stops/LNCchau2", "https://tec.openplanner.team/stops/LNChock1"], ["https://tec.openplanner.team/stops/H1el132b", "https://tec.openplanner.team/stops/H1tl121a"], ["https://tec.openplanner.team/stops/N501hwb", "https://tec.openplanner.team/stops/N501ida"], ["https://tec.openplanner.team/stops/X601cua", "https://tec.openplanner.team/stops/X601cwa"], ["https://tec.openplanner.team/stops/Cmgarsi1", "https://tec.openplanner.team/stops/Cmgpn1"], ["https://tec.openplanner.team/stops/LJAboli2", "https://tec.openplanner.team/stops/LJAwerf1"], ["https://tec.openplanner.team/stops/N501aua", "https://tec.openplanner.team/stops/N501gqb"], ["https://tec.openplanner.team/stops/LMYmont2", "https://tec.openplanner.team/stops/LVvbouv1"], ["https://tec.openplanner.team/stops/X610aab", "https://tec.openplanner.team/stops/X610ada"], ["https://tec.openplanner.team/stops/LTNcarr2", "https://tec.openplanner.team/stops/LTNmont1"], ["https://tec.openplanner.team/stops/LHhelia2", "https://tec.openplanner.team/stops/LHhvivi2"], ["https://tec.openplanner.team/stops/Lagarde1", "https://tec.openplanner.team/stops/Lcejobe1"], ["https://tec.openplanner.team/stops/Cthnsnc", "https://tec.openplanner.team/stops/Cthpibl2"], ["https://tec.openplanner.team/stops/Bwatali1", "https://tec.openplanner.team/stops/Bwatcpl2"], ["https://tec.openplanner.team/stops/H2fa106a", "https://tec.openplanner.team/stops/H2me113b"], ["https://tec.openplanner.team/stops/X904afb", "https://tec.openplanner.team/stops/X907aba"], ["https://tec.openplanner.team/stops/Canchbr2", "https://tec.openplanner.team/stops/Canstat2"], ["https://tec.openplanner.team/stops/Cchparc5", "https://tec.openplanner.team/stops/NC01aha"], ["https://tec.openplanner.team/stops/X774afa", "https://tec.openplanner.team/stops/X774aga"], ["https://tec.openplanner.team/stops/LMAcite1", "https://tec.openplanner.team/stops/LMAcomm1"], ["https://tec.openplanner.team/stops/N134aeb", "https://tec.openplanner.team/stops/N134ala"], ["https://tec.openplanner.team/stops/LLSba6-1", "https://tec.openplanner.team/stops/LLSba9-1"], ["https://tec.openplanner.team/stops/H1ju119a", "https://tec.openplanner.team/stops/H1ju119b"], ["https://tec.openplanner.team/stops/Lhutann1", "https://tec.openplanner.team/stops/Lmneg--2"], ["https://tec.openplanner.team/stops/H4co109b", "https://tec.openplanner.team/stops/H4co144b"], ["https://tec.openplanner.team/stops/LVu03--2", "https://tec.openplanner.team/stops/LVukabi1"], ["https://tec.openplanner.team/stops/LhGgeme1", "https://tec.openplanner.team/stops/LhGkirc3"], ["https://tec.openplanner.team/stops/X608agb", "https://tec.openplanner.team/stops/X608aua"], ["https://tec.openplanner.team/stops/LWRpl--1", "https://tec.openplanner.team/stops/LWRpl--2"], ["https://tec.openplanner.team/stops/X991ajb", "https://tec.openplanner.team/stops/X991akb"], ["https://tec.openplanner.team/stops/Bjdsbro2", "https://tec.openplanner.team/stops/Blthvil1"], ["https://tec.openplanner.team/stops/Llgnaim2", "https://tec.openplanner.team/stops/Llgnani2"], ["https://tec.openplanner.team/stops/N501ira", "https://tec.openplanner.team/stops/N501jbb"], ["https://tec.openplanner.team/stops/N104aea", "https://tec.openplanner.team/stops/N104afa"], ["https://tec.openplanner.team/stops/LeLgrie2", "https://tec.openplanner.team/stops/LeLzost2"], ["https://tec.openplanner.team/stops/Bbch4br6", "https://tec.openplanner.team/stops/Bbchrra3"], ["https://tec.openplanner.team/stops/X601asa", "https://tec.openplanner.team/stops/X601cra"], ["https://tec.openplanner.team/stops/X940aab", "https://tec.openplanner.team/stops/X948ata"], ["https://tec.openplanner.team/stops/H1ml109b", "https://tec.openplanner.team/stops/H1ml111b"], ["https://tec.openplanner.team/stops/LHmcite1", "https://tec.openplanner.team/stops/LMArave1"], ["https://tec.openplanner.team/stops/X615bra", "https://tec.openplanner.team/stops/X615brb"], ["https://tec.openplanner.team/stops/N551ala", "https://tec.openplanner.team/stops/N577aca"], ["https://tec.openplanner.team/stops/Bcsecar1", "https://tec.openplanner.team/stops/Bcseeco3"], ["https://tec.openplanner.team/stops/Lrclant2", "https://tec.openplanner.team/stops/Lrclant4"], ["https://tec.openplanner.team/stops/X941acc", "https://tec.openplanner.team/stops/X941ada"], ["https://tec.openplanner.team/stops/Bnivjli1", "https://tec.openplanner.team/stops/Bnivlpa2"], ["https://tec.openplanner.team/stops/LJesole2", "https://tec.openplanner.team/stops/LJetrih2"], ["https://tec.openplanner.team/stops/H4hu120a", "https://tec.openplanner.team/stops/H4og210b"], ["https://tec.openplanner.team/stops/LSOvoie1", "https://tec.openplanner.team/stops/LXHadam2"], ["https://tec.openplanner.team/stops/Lvefran1", "https://tec.openplanner.team/stops/Lvevieu1"], ["https://tec.openplanner.team/stops/Lbrchur1", "https://tec.openplanner.team/stops/Lbrlama2"], ["https://tec.openplanner.team/stops/N508apb", "https://tec.openplanner.team/stops/N516aaa"], ["https://tec.openplanner.team/stops/X897ada", "https://tec.openplanner.team/stops/X897adb"], ["https://tec.openplanner.team/stops/X210azb", "https://tec.openplanner.team/stops/X221aac"], ["https://tec.openplanner.team/stops/Crsstem1", "https://tec.openplanner.team/stops/Crsstem2"], ["https://tec.openplanner.team/stops/LDmdegi2", "https://tec.openplanner.team/stops/LDmeg--1"], ["https://tec.openplanner.team/stops/Lgrchar1", "https://tec.openplanner.team/stops/Lgrchar2"], ["https://tec.openplanner.team/stops/N153ada", "https://tec.openplanner.team/stops/N153adb"], ["https://tec.openplanner.team/stops/X650aha", "https://tec.openplanner.team/stops/X650ahb"], ["https://tec.openplanner.team/stops/N501gzz", "https://tec.openplanner.team/stops/N501zca"], ["https://tec.openplanner.team/stops/N160aaa", "https://tec.openplanner.team/stops/N160aab"], ["https://tec.openplanner.team/stops/Bvilpar1", "https://tec.openplanner.team/stops/Bvilpar2"], ["https://tec.openplanner.team/stops/LChvill*", "https://tec.openplanner.team/stops/LSU50--2"], ["https://tec.openplanner.team/stops/X950adb", "https://tec.openplanner.team/stops/X955aab"], ["https://tec.openplanner.team/stops/N501hoa", "https://tec.openplanner.team/stops/N501htb"], ["https://tec.openplanner.team/stops/LkEkric2", "https://tec.openplanner.team/stops/LkEneus2"], ["https://tec.openplanner.team/stops/X601cia", "https://tec.openplanner.team/stops/X662anb"], ["https://tec.openplanner.team/stops/Bhalark2", "https://tec.openplanner.team/stops/Bhalpar2"], ["https://tec.openplanner.team/stops/X601aab", "https://tec.openplanner.team/stops/X601ala"], ["https://tec.openplanner.team/stops/Cfrcham1", "https://tec.openplanner.team/stops/Cliburl2"], ["https://tec.openplanner.team/stops/X818aca", "https://tec.openplanner.team/stops/X818adb"], ["https://tec.openplanner.team/stops/Bdlmegl1", "https://tec.openplanner.team/stops/Bdlmegl2"], ["https://tec.openplanner.team/stops/LaMadam2", "https://tec.openplanner.team/stops/LaMjous1"], ["https://tec.openplanner.team/stops/X638aga", "https://tec.openplanner.team/stops/X638apb"], ["https://tec.openplanner.team/stops/LOehart2", "https://tec.openplanner.team/stops/LOesour1"], ["https://tec.openplanner.team/stops/N132aba", "https://tec.openplanner.team/stops/N132abb"], ["https://tec.openplanner.team/stops/X986aeb", "https://tec.openplanner.team/stops/X986ata"], ["https://tec.openplanner.team/stops/X681afb", "https://tec.openplanner.team/stops/X681aga"], ["https://tec.openplanner.team/stops/Cbicamp1", "https://tec.openplanner.team/stops/Cbicamp2"], ["https://tec.openplanner.team/stops/LBjflor2", "https://tec.openplanner.team/stops/LBjvill1"], ["https://tec.openplanner.team/stops/LLelans1", "https://tec.openplanner.team/stops/X547aka"], ["https://tec.openplanner.team/stops/H3lr120b", "https://tec.openplanner.team/stops/H3lr132b"], ["https://tec.openplanner.team/stops/X659aab", "https://tec.openplanner.team/stops/X672aja"], ["https://tec.openplanner.team/stops/N212ada", "https://tec.openplanner.team/stops/N348acb"], ["https://tec.openplanner.team/stops/X870aaa", "https://tec.openplanner.team/stops/X870aab"], ["https://tec.openplanner.team/stops/LHEchex1", "https://tec.openplanner.team/stops/LHEchex2"], ["https://tec.openplanner.team/stops/Brsrmon1", "https://tec.openplanner.team/stops/Brsrmon3"], ["https://tec.openplanner.team/stops/Bbchume2", "https://tec.openplanner.team/stops/Bitrsar1"], ["https://tec.openplanner.team/stops/Lpeatel2", "https://tec.openplanner.team/stops/Lpesart1"], ["https://tec.openplanner.team/stops/Lstamph1", "https://tec.openplanner.team/stops/Lstauna1"], ["https://tec.openplanner.team/stops/X224aga", "https://tec.openplanner.team/stops/X224agb"], ["https://tec.openplanner.team/stops/Lgrmagd2", "https://tec.openplanner.team/stops/Lgrrein1"], ["https://tec.openplanner.team/stops/LaHzoll*", "https://tec.openplanner.team/stops/X685apa"], ["https://tec.openplanner.team/stops/N511aia", "https://tec.openplanner.team/stops/N512ala"], ["https://tec.openplanner.team/stops/H3br103b", "https://tec.openplanner.team/stops/H3br107a"], ["https://tec.openplanner.team/stops/N206ada", "https://tec.openplanner.team/stops/N209alb"], ["https://tec.openplanner.team/stops/LMsgara2", "https://tec.openplanner.team/stops/LMspont1"], ["https://tec.openplanner.team/stops/LSdbvue1", "https://tec.openplanner.team/stops/LSdcarr1"], ["https://tec.openplanner.team/stops/NL77acb", "https://tec.openplanner.team/stops/NL77adb"], ["https://tec.openplanner.team/stops/H1ba114a", "https://tec.openplanner.team/stops/H1ba118b"], ["https://tec.openplanner.team/stops/N352aba", "https://tec.openplanner.team/stops/N352abb"], ["https://tec.openplanner.team/stops/Lemhenn2", "https://tec.openplanner.team/stops/Lvchaus1"], ["https://tec.openplanner.team/stops/LSemc--1", "https://tec.openplanner.team/stops/LSemc--3"], ["https://tec.openplanner.team/stops/H4ne141a", "https://tec.openplanner.team/stops/H4ne144b"], ["https://tec.openplanner.team/stops/Lmopave2", "https://tec.openplanner.team/stops/Lsnlhon2"], ["https://tec.openplanner.team/stops/H4og207a", "https://tec.openplanner.team/stops/H4og207b"], ["https://tec.openplanner.team/stops/N222ada", "https://tec.openplanner.team/stops/N222adb"], ["https://tec.openplanner.team/stops/H2fa107a", "https://tec.openplanner.team/stops/H2fa109b"], ["https://tec.openplanner.team/stops/N538aab", "https://tec.openplanner.team/stops/N538adb"], ["https://tec.openplanner.team/stops/LESamos2", "https://tec.openplanner.team/stops/LESfoot1"], ["https://tec.openplanner.team/stops/LXofont2", "https://tec.openplanner.team/stops/LXopeti2"], ["https://tec.openplanner.team/stops/X801bxa", "https://tec.openplanner.team/stops/X801bxb"], ["https://tec.openplanner.team/stops/H4lz127b", "https://tec.openplanner.team/stops/H4tp146a"], ["https://tec.openplanner.team/stops/N118aea", "https://tec.openplanner.team/stops/N118aeb"], ["https://tec.openplanner.team/stops/LTResse1", "https://tec.openplanner.team/stops/LTResse2"], ["https://tec.openplanner.team/stops/LDOordi2", "https://tec.openplanner.team/stops/LGOcana2"], ["https://tec.openplanner.team/stops/Buccvch1", "https://tec.openplanner.team/stops/Buccvoi3"], ["https://tec.openplanner.team/stops/Bboseco1", "https://tec.openplanner.team/stops/Bgoekaz1"], ["https://tec.openplanner.team/stops/LWEbr511", "https://tec.openplanner.team/stops/LWEpaul2"], ["https://tec.openplanner.team/stops/N507aob", "https://tec.openplanner.team/stops/N507aqb"], ["https://tec.openplanner.team/stops/X880afa", "https://tec.openplanner.team/stops/X880afb"], ["https://tec.openplanner.team/stops/H1fv102a", "https://tec.openplanner.team/stops/H1fv103b"], ["https://tec.openplanner.team/stops/LRR2egl1", "https://tec.openplanner.team/stops/LRRpost1"], ["https://tec.openplanner.team/stops/LiVdorf1", "https://tec.openplanner.team/stops/LmOkape2"], ["https://tec.openplanner.team/stops/LSPsorb1", "https://tec.openplanner.team/stops/LSPther1"], ["https://tec.openplanner.team/stops/H5st161b", "https://tec.openplanner.team/stops/H5st169b"], ["https://tec.openplanner.team/stops/H1ms270b", "https://tec.openplanner.team/stops/H1ms362a"], ["https://tec.openplanner.team/stops/Cpccpas1", "https://tec.openplanner.team/stops/Cpccpas2"], ["https://tec.openplanner.team/stops/H4oe150a", "https://tec.openplanner.team/stops/H4oe150b"], ["https://tec.openplanner.team/stops/Blmlbou2", "https://tec.openplanner.team/stops/Blmlcar2"], ["https://tec.openplanner.team/stops/LdUespe2", "https://tec.openplanner.team/stops/LoDmuhl1"], ["https://tec.openplanner.team/stops/X601bbf", "https://tec.openplanner.team/stops/X601bqa"], ["https://tec.openplanner.team/stops/X769abb", "https://tec.openplanner.team/stops/X769acb"], ["https://tec.openplanner.team/stops/LeUmeye2", "https://tec.openplanner.team/stops/LrAneud1"], ["https://tec.openplanner.team/stops/X994adb", "https://tec.openplanner.team/stops/X994aga"], ["https://tec.openplanner.team/stops/H4hg154b", "https://tec.openplanner.team/stops/H4hg160b"], ["https://tec.openplanner.team/stops/X342ahb", "https://tec.openplanner.team/stops/X346aba"], ["https://tec.openplanner.team/stops/X749ada", "https://tec.openplanner.team/stops/X756agb"], ["https://tec.openplanner.team/stops/H4bl104a", "https://tec.openplanner.team/stops/H4bl104b"], ["https://tec.openplanner.team/stops/H1gr119a", "https://tec.openplanner.team/stops/H1gr122b"], ["https://tec.openplanner.team/stops/X354agb", "https://tec.openplanner.team/stops/X354ahb"], ["https://tec.openplanner.team/stops/Llglill1", "https://tec.openplanner.team/stops/Llgrull2"], ["https://tec.openplanner.team/stops/LCUmars2", "https://tec.openplanner.team/stops/LCUthie2"], ["https://tec.openplanner.team/stops/LVMcent2", "https://tec.openplanner.team/stops/LVMrout1"], ["https://tec.openplanner.team/stops/Lfhdone2", "https://tec.openplanner.team/stops/Livjeu-1"], ["https://tec.openplanner.team/stops/NC14ama", "https://tec.openplanner.team/stops/NC14apb"], ["https://tec.openplanner.team/stops/LvA30--2", "https://tec.openplanner.team/stops/LvAkirc1"], ["https://tec.openplanner.team/stops/X638apa", "https://tec.openplanner.team/stops/X638apb"], ["https://tec.openplanner.team/stops/Bwaunou1", "https://tec.openplanner.team/stops/Bwaunou2"], ["https://tec.openplanner.team/stops/Cgycime2", "https://tec.openplanner.team/stops/Cgycime4"], ["https://tec.openplanner.team/stops/LHUpost1", "https://tec.openplanner.team/stops/LHUpost2"], ["https://tec.openplanner.team/stops/H1hy126b", "https://tec.openplanner.team/stops/H1hy129a"], ["https://tec.openplanner.team/stops/Clvlove1", "https://tec.openplanner.team/stops/Clvmesa2"], ["https://tec.openplanner.team/stops/X609aqb", "https://tec.openplanner.team/stops/X631aca"], ["https://tec.openplanner.team/stops/Cpcha431", "https://tec.openplanner.team/stops/Cpcplac4"], ["https://tec.openplanner.team/stops/H4mv191a", "https://tec.openplanner.team/stops/H4mv193a"], ["https://tec.openplanner.team/stops/Ladneuv1", "https://tec.openplanner.team/stops/Lvecrot1"], ["https://tec.openplanner.team/stops/Bbgelre1", "https://tec.openplanner.team/stops/Bwavlca1"], ["https://tec.openplanner.team/stops/LeUvoss1", "https://tec.openplanner.team/stops/LeUvoul1"], ["https://tec.openplanner.team/stops/Lgdhura1", "https://tec.openplanner.team/stops/Lgdhura2"], ["https://tec.openplanner.team/stops/LmEdorf2", "https://tec.openplanner.team/stops/LmNmerl2"], ["https://tec.openplanner.team/stops/Lhrlalo1", "https://tec.openplanner.team/stops/Lhrlalo4"], ["https://tec.openplanner.team/stops/X601aya", "https://tec.openplanner.team/stops/X601azb"], ["https://tec.openplanner.team/stops/Brsggea1", "https://tec.openplanner.team/stops/Brsgsan2"], ["https://tec.openplanner.team/stops/Lmlcrot1", "https://tec.openplanner.team/stops/Lmlpata*"], ["https://tec.openplanner.team/stops/N516abb", "https://tec.openplanner.team/stops/N516amb"], ["https://tec.openplanner.team/stops/H4mb203a", "https://tec.openplanner.team/stops/H4mb204a"], ["https://tec.openplanner.team/stops/N103adb", "https://tec.openplanner.team/stops/N103ahb"], ["https://tec.openplanner.team/stops/X888abb", "https://tec.openplanner.team/stops/X899aab"], ["https://tec.openplanner.team/stops/H1hn209a", "https://tec.openplanner.team/stops/H1ms924a"], ["https://tec.openplanner.team/stops/X717acb", "https://tec.openplanner.team/stops/X782ada"], ["https://tec.openplanner.team/stops/LBCtros1", "https://tec.openplanner.team/stops/LCdchod2"], ["https://tec.openplanner.team/stops/H1hl124a", "https://tec.openplanner.team/stops/H1vs146b"], ["https://tec.openplanner.team/stops/LESchac1", "https://tec.openplanner.team/stops/LPOecol2"], ["https://tec.openplanner.team/stops/Cdostco2", "https://tec.openplanner.team/stops/Ctucour1"], ["https://tec.openplanner.team/stops/LLSba4-1", "https://tec.openplanner.team/stops/LLStour2"], ["https://tec.openplanner.team/stops/H4by115d", "https://tec.openplanner.team/stops/H4tu172b"], ["https://tec.openplanner.team/stops/LMgberw1", "https://tec.openplanner.team/stops/LMgwith2"], ["https://tec.openplanner.team/stops/H4he105b", "https://tec.openplanner.team/stops/H4pq118a"], ["https://tec.openplanner.team/stops/LNIbas-2", "https://tec.openplanner.team/stops/LTgwarf2"], ["https://tec.openplanner.team/stops/Bsompri2", "https://tec.openplanner.team/stops/N584avb"], ["https://tec.openplanner.team/stops/H4av100b", "https://tec.openplanner.team/stops/H4av103c"], ["https://tec.openplanner.team/stops/Bjodfco2", "https://tec.openplanner.team/stops/NR21ahb"], ["https://tec.openplanner.team/stops/Bobacou1", "https://tec.openplanner.team/stops/Cobmara1"], ["https://tec.openplanner.team/stops/Ccypn1", "https://tec.openplanner.team/stops/NH01ala"], ["https://tec.openplanner.team/stops/X663apa", "https://tec.openplanner.team/stops/X663aqc"], ["https://tec.openplanner.team/stops/X657afa", "https://tec.openplanner.team/stops/X670agb"], ["https://tec.openplanner.team/stops/Bgoewat1", "https://tec.openplanner.team/stops/Bgoewat2"], ["https://tec.openplanner.team/stops/H1je216a", "https://tec.openplanner.team/stops/H1qu111a"], ["https://tec.openplanner.team/stops/X731acb", "https://tec.openplanner.team/stops/X731acc"], ["https://tec.openplanner.team/stops/N501dha", "https://tec.openplanner.team/stops/N501lgb"], ["https://tec.openplanner.team/stops/N228aaa", "https://tec.openplanner.team/stops/N228aba"], ["https://tec.openplanner.team/stops/H4ty295b", "https://tec.openplanner.team/stops/H4ty298b"], ["https://tec.openplanner.team/stops/Cchpala2", "https://tec.openplanner.team/stops/Cchrmon1"], ["https://tec.openplanner.team/stops/H1bu141a", "https://tec.openplanner.team/stops/H1bu142a"], ["https://tec.openplanner.team/stops/N104ada", "https://tec.openplanner.team/stops/N106agb"], ["https://tec.openplanner.team/stops/LBPboir1", "https://tec.openplanner.team/stops/LRGchap2"], ["https://tec.openplanner.team/stops/N110afb", "https://tec.openplanner.team/stops/N113aga"], ["https://tec.openplanner.team/stops/N509adb", "https://tec.openplanner.team/stops/N509agb"], ["https://tec.openplanner.team/stops/LBahaut1", "https://tec.openplanner.team/stops/LBahaut2"], ["https://tec.openplanner.team/stops/H4lp124b", "https://tec.openplanner.team/stops/H4pe125b"], ["https://tec.openplanner.team/stops/Cmybefe2", "https://tec.openplanner.team/stops/Cmysncb1"], ["https://tec.openplanner.team/stops/N244aka", "https://tec.openplanner.team/stops/N244apa"], ["https://tec.openplanner.team/stops/N137adb", "https://tec.openplanner.team/stops/N155agb"], ["https://tec.openplanner.team/stops/H4ce100a", "https://tec.openplanner.team/stops/H4mx119c"], ["https://tec.openplanner.team/stops/Cnagrro1", "https://tec.openplanner.team/stops/Cnathib2"], ["https://tec.openplanner.team/stops/Causart1", "https://tec.openplanner.team/stops/N543cqa"], ["https://tec.openplanner.team/stops/H4ty281a", "https://tec.openplanner.team/stops/H4ty339b"], ["https://tec.openplanner.team/stops/LkTlibe1", "https://tec.openplanner.team/stops/LkTlibe2"], ["https://tec.openplanner.team/stops/X941aab", "https://tec.openplanner.team/stops/X941aba"], ["https://tec.openplanner.team/stops/H3bi102b", "https://tec.openplanner.team/stops/H3bi113a"], ["https://tec.openplanner.team/stops/H2ll191b", "https://tec.openplanner.team/stops/H2ll193a"], ["https://tec.openplanner.team/stops/N501dga", "https://tec.openplanner.team/stops/N501dia"], ["https://tec.openplanner.team/stops/H4vz368b", "https://tec.openplanner.team/stops/H4vz371a"], ["https://tec.openplanner.team/stops/X548abb", "https://tec.openplanner.team/stops/X784aeb"], ["https://tec.openplanner.team/stops/X750aha", "https://tec.openplanner.team/stops/X750aja"], ["https://tec.openplanner.team/stops/Lenhouc2", "https://tec.openplanner.team/stops/Lvedepo*"], ["https://tec.openplanner.team/stops/X923aha", "https://tec.openplanner.team/stops/X923ana"], ["https://tec.openplanner.team/stops/H4ef163a", "https://tec.openplanner.team/stops/H4ef165c"], ["https://tec.openplanner.team/stops/LAYecol2", "https://tec.openplanner.team/stops/LFLcher2"], ["https://tec.openplanner.team/stops/X636aka", "https://tec.openplanner.team/stops/X636bfb"], ["https://tec.openplanner.team/stops/X948aca", "https://tec.openplanner.team/stops/X948agb"], ["https://tec.openplanner.team/stops/X615aca", "https://tec.openplanner.team/stops/X615ana"], ["https://tec.openplanner.team/stops/LHAarge1", "https://tec.openplanner.team/stops/LHAleru2"], ["https://tec.openplanner.team/stops/Cbuplac3", "https://tec.openplanner.team/stops/Cfnegli1"], ["https://tec.openplanner.team/stops/LhSkirc1", "https://tec.openplanner.team/stops/LhSkirc2"], ["https://tec.openplanner.team/stops/N170aca", "https://tec.openplanner.team/stops/N170adb"], ["https://tec.openplanner.team/stops/H4wi161a", "https://tec.openplanner.team/stops/H4wi169a"], ["https://tec.openplanner.team/stops/LMNeg--2", "https://tec.openplanner.team/stops/LMNpt--2"], ["https://tec.openplanner.team/stops/X361aaa", "https://tec.openplanner.team/stops/X361aab"], ["https://tec.openplanner.team/stops/LAYcher2", "https://tec.openplanner.team/stops/LFLcent2"], ["https://tec.openplanner.team/stops/Cvrchap1", "https://tec.openplanner.team/stops/Cvrhaie1"], ["https://tec.openplanner.team/stops/LHHcite2", "https://tec.openplanner.team/stops/LHHroua2"], ["https://tec.openplanner.team/stops/H2ma209a", "https://tec.openplanner.team/stops/H2ma210b"], ["https://tec.openplanner.team/stops/LClbloc1", "https://tec.openplanner.team/stops/LFdbagu1"], ["https://tec.openplanner.team/stops/LFTcroi2", "https://tec.openplanner.team/stops/LFTcroi4"], ["https://tec.openplanner.team/stops/H1mr126b", "https://tec.openplanner.team/stops/H1on129a"], ["https://tec.openplanner.team/stops/LHtdros1", "https://tec.openplanner.team/stops/LJAbell4"], ["https://tec.openplanner.team/stops/N155aib", "https://tec.openplanner.team/stops/N170abb"], ["https://tec.openplanner.team/stops/N138aha", "https://tec.openplanner.team/stops/N426acb"], ["https://tec.openplanner.team/stops/Ccyga05", "https://tec.openplanner.team/stops/Ccyga4"], ["https://tec.openplanner.team/stops/Cchtour1", "https://tec.openplanner.team/stops/Cchtour2"], ["https://tec.openplanner.team/stops/X775akb", "https://tec.openplanner.team/stops/X775alb"], ["https://tec.openplanner.team/stops/Bnivfch2", "https://tec.openplanner.team/stops/Bnivgen2"], ["https://tec.openplanner.team/stops/N501drb", "https://tec.openplanner.team/stops/N501kha"], ["https://tec.openplanner.team/stops/Berneco2", "https://tec.openplanner.team/stops/Bgemkal1"], ["https://tec.openplanner.team/stops/Blimrof1", "https://tec.openplanner.team/stops/Bottpry1"], ["https://tec.openplanner.team/stops/H4gr109a", "https://tec.openplanner.team/stops/H4hu117b"], ["https://tec.openplanner.team/stops/LVlledo1", "https://tec.openplanner.team/stops/LVlleno2"], ["https://tec.openplanner.team/stops/N541adb", "https://tec.openplanner.team/stops/N541aea"], ["https://tec.openplanner.team/stops/H4bf107a", "https://tec.openplanner.team/stops/H4bf108a"], ["https://tec.openplanner.team/stops/X614adb", "https://tec.openplanner.team/stops/X614agb"], ["https://tec.openplanner.team/stops/LVLeg--1", "https://tec.openplanner.team/stops/LVLruis1"], ["https://tec.openplanner.team/stops/N118aea", "https://tec.openplanner.team/stops/N155akb"], ["https://tec.openplanner.team/stops/Cmlgche1", "https://tec.openplanner.team/stops/Cmltemp1"], ["https://tec.openplanner.team/stops/Cctpass2", "https://tec.openplanner.team/stops/Cctsncb1"], ["https://tec.openplanner.team/stops/X638agb", "https://tec.openplanner.team/stops/X638apb"], ["https://tec.openplanner.team/stops/N234aea", "https://tec.openplanner.team/stops/N234aeb"], ["https://tec.openplanner.team/stops/Bwatfva2", "https://tec.openplanner.team/stops/Bwatjbo2"], ["https://tec.openplanner.team/stops/Cflbrun1", "https://tec.openplanner.team/stops/Cflchap3"], ["https://tec.openplanner.team/stops/X982aub", "https://tec.openplanner.team/stops/X982bca"], ["https://tec.openplanner.team/stops/Cmcwic1", "https://tec.openplanner.team/stops/Cmcwir2"], ["https://tec.openplanner.team/stops/LPtchpl2", "https://tec.openplanner.team/stops/LPtrefa2"], ["https://tec.openplanner.team/stops/LVAbloe1", "https://tec.openplanner.team/stops/LVAflat2"], ["https://tec.openplanner.team/stops/N526adb", "https://tec.openplanner.team/stops/N527abb"], ["https://tec.openplanner.team/stops/H1hn208a", "https://tec.openplanner.team/stops/H1ms287b"], ["https://tec.openplanner.team/stops/Canecbr2", "https://tec.openplanner.team/stops/Canlemo1"], ["https://tec.openplanner.team/stops/X876adb", "https://tec.openplanner.team/stops/X887aab"], ["https://tec.openplanner.team/stops/Cgocolo1", "https://tec.openplanner.team/stops/Cgolimi1"], ["https://tec.openplanner.team/stops/LhGcasi1", "https://tec.openplanner.team/stops/LkEbbl-1"], ["https://tec.openplanner.team/stops/LPlchpl2", "https://tec.openplanner.team/stops/LPlpomp1"], ["https://tec.openplanner.team/stops/X761aab", "https://tec.openplanner.team/stops/X793ada"], ["https://tec.openplanner.team/stops/Cgdberl2", "https://tec.openplanner.team/stops/Cgdcent1"], ["https://tec.openplanner.team/stops/LlgLEOP1", "https://tec.openplanner.team/stops/LlgLEOP2"], ["https://tec.openplanner.team/stops/Baudstr2", "https://tec.openplanner.team/stops/Baudtri1"], ["https://tec.openplanner.team/stops/LSZarbe1", "https://tec.openplanner.team/stops/LSZarbe2"], ["https://tec.openplanner.team/stops/LHUcomp1", "https://tec.openplanner.team/stops/LHUlieg1"], ["https://tec.openplanner.team/stops/X940aba", "https://tec.openplanner.team/stops/X948afb"], ["https://tec.openplanner.team/stops/LOunebl2", "https://tec.openplanner.team/stops/LOuplac1"], ["https://tec.openplanner.team/stops/H4we135b", "https://tec.openplanner.team/stops/H4we136a"], ["https://tec.openplanner.team/stops/N104aka", "https://tec.openplanner.team/stops/N106aia"], ["https://tec.openplanner.team/stops/N501dta", "https://tec.openplanner.team/stops/N501dtb"], ["https://tec.openplanner.team/stops/X390aja", "https://tec.openplanner.team/stops/X390aka"], ["https://tec.openplanner.team/stops/LAnchat1", "https://tec.openplanner.team/stops/LAnvien1"], ["https://tec.openplanner.team/stops/Lbrptbr2", "https://tec.openplanner.team/stops/Lbrptbr3"], ["https://tec.openplanner.team/stops/H5bl115a", "https://tec.openplanner.team/stops/H5bl119d"], ["https://tec.openplanner.team/stops/Cbuplac3", "https://tec.openplanner.team/stops/Cbuplac4"], ["https://tec.openplanner.team/stops/Lbbbuse1", "https://tec.openplanner.team/stops/Ljubord2"], ["https://tec.openplanner.team/stops/H1ho141a", "https://tec.openplanner.team/stops/H1wa157b"], ["https://tec.openplanner.team/stops/LHEbeau1", "https://tec.openplanner.team/stops/LHEbeau2"], ["https://tec.openplanner.team/stops/N241acb", "https://tec.openplanner.team/stops/N241ada"], ["https://tec.openplanner.team/stops/X768aeb", "https://tec.openplanner.team/stops/X768agb"], ["https://tec.openplanner.team/stops/LeSsaal*", "https://tec.openplanner.team/stops/LmAgruf2"], ["https://tec.openplanner.team/stops/N390acb", "https://tec.openplanner.team/stops/N390aeb"], ["https://tec.openplanner.team/stops/LTIpire2", "https://tec.openplanner.team/stops/LTIpres2"], ["https://tec.openplanner.team/stops/LaAkapi2", "https://tec.openplanner.team/stops/LaAnorm2"], ["https://tec.openplanner.team/stops/H4wc372b", "https://tec.openplanner.team/stops/H4wc373a"], ["https://tec.openplanner.team/stops/Bnivchh1", "https://tec.openplanner.team/stops/Bnivchh2"], ["https://tec.openplanner.team/stops/Cclbarb1", "https://tec.openplanner.team/stops/Cstgare2"], ["https://tec.openplanner.team/stops/Bsmgpon2", "https://tec.openplanner.team/stops/Btanvil1"], ["https://tec.openplanner.team/stops/N519ara", "https://tec.openplanner.team/stops/N519asd"], ["https://tec.openplanner.team/stops/H4fa127a", "https://tec.openplanner.team/stops/H4fa127b"], ["https://tec.openplanner.team/stops/X601cfa", "https://tec.openplanner.team/stops/X601cra"], ["https://tec.openplanner.team/stops/Llgbuis1", "https://tec.openplanner.team/stops/Llgec--1"], ["https://tec.openplanner.team/stops/LBapeup1", "https://tec.openplanner.team/stops/LLUdeig2"], ["https://tec.openplanner.team/stops/LhPheps1", "https://tec.openplanner.team/stops/LhPheps2"], ["https://tec.openplanner.team/stops/Cjuloos2", "https://tec.openplanner.team/stops/Cjuvand1"], ["https://tec.openplanner.team/stops/Bglitro2", "https://tec.openplanner.team/stops/Btlbtho1"], ["https://tec.openplanner.team/stops/H4pl115b", "https://tec.openplanner.team/stops/H4pl121b"], ["https://tec.openplanner.team/stops/H4co149b", "https://tec.openplanner.team/stops/H4co150b"], ["https://tec.openplanner.team/stops/H4ty274b", "https://tec.openplanner.team/stops/H4ty291b"], ["https://tec.openplanner.team/stops/X796aga", "https://tec.openplanner.team/stops/X796agb"], ["https://tec.openplanner.team/stops/H4ty273b", "https://tec.openplanner.team/stops/H4ty357a"], ["https://tec.openplanner.team/stops/H4wi163b", "https://tec.openplanner.team/stops/H4wi175a"], ["https://tec.openplanner.team/stops/Bjaurgo1", "https://tec.openplanner.team/stops/Bjaurgo2"], ["https://tec.openplanner.team/stops/X318aba", "https://tec.openplanner.team/stops/X364ada"], ["https://tec.openplanner.team/stops/LAascie1", "https://tec.openplanner.team/stops/X261ada"], ["https://tec.openplanner.team/stops/N501jeb", "https://tec.openplanner.team/stops/N501jib"], ["https://tec.openplanner.team/stops/H4ty383a", "https://tec.openplanner.team/stops/H4ty383b"], ["https://tec.openplanner.team/stops/Bwavbar2", "https://tec.openplanner.team/stops/Bwavcin2"], ["https://tec.openplanner.team/stops/N351ahb", "https://tec.openplanner.team/stops/N351aib"], ["https://tec.openplanner.team/stops/Bptemch1", "https://tec.openplanner.team/stops/H1hv131a"], ["https://tec.openplanner.team/stops/LLrisa-*", "https://tec.openplanner.team/stops/LNOsedo2"], ["https://tec.openplanner.team/stops/Cgzbouh2", "https://tec.openplanner.team/stops/Cgzm1482"], ["https://tec.openplanner.team/stops/X922aaa", "https://tec.openplanner.team/stops/X922acb"], ["https://tec.openplanner.team/stops/Chhdubr1", "https://tec.openplanner.team/stops/Chhdubr2"], ["https://tec.openplanner.team/stops/H4eg101b", "https://tec.openplanner.team/stops/H4eg101c"], ["https://tec.openplanner.team/stops/X641aoa", "https://tec.openplanner.team/stops/X641apb"], ["https://tec.openplanner.team/stops/N302aca", "https://tec.openplanner.team/stops/N302ada"], ["https://tec.openplanner.team/stops/Bsdavpe1", "https://tec.openplanner.team/stops/Csdfboi2"], ["https://tec.openplanner.team/stops/LmSdorf1", "https://tec.openplanner.team/stops/LmSkape1"], ["https://tec.openplanner.team/stops/X801asa", "https://tec.openplanner.team/stops/X801bbb"], ["https://tec.openplanner.team/stops/Lfhhosp2", "https://tec.openplanner.team/stops/Lfhpass1"], ["https://tec.openplanner.team/stops/X902aeb", "https://tec.openplanner.team/stops/X902aob"], ["https://tec.openplanner.team/stops/H1cu113a", "https://tec.openplanner.team/stops/H1cu129a"], ["https://tec.openplanner.team/stops/X818ada", "https://tec.openplanner.team/stops/X818aeb"], ["https://tec.openplanner.team/stops/Llgbron2", "https://tec.openplanner.team/stops/Llgdart2"], ["https://tec.openplanner.team/stops/LATcorp2", "https://tec.openplanner.team/stops/LHUzoni3"], ["https://tec.openplanner.team/stops/Ccspla", "https://tec.openplanner.team/stops/Cmx4che2"], ["https://tec.openplanner.team/stops/Bbgeegl2", "https://tec.openplanner.team/stops/Bbgever2"], ["https://tec.openplanner.team/stops/Bengvma1", "https://tec.openplanner.team/stops/H1en106b"], ["https://tec.openplanner.team/stops/Bbsibou2", "https://tec.openplanner.team/stops/Bbsivi11"], ["https://tec.openplanner.team/stops/Lseberg4", "https://tec.openplanner.team/stops/Lsebuil2"], ["https://tec.openplanner.team/stops/H1bs111b", "https://tec.openplanner.team/stops/H1sb144b"], ["https://tec.openplanner.team/stops/LSUroyo1", "https://tec.openplanner.team/stops/LTgchar8"], ["https://tec.openplanner.team/stops/X982ata", "https://tec.openplanner.team/stops/X982caa"], ["https://tec.openplanner.team/stops/X725aec", "https://tec.openplanner.team/stops/X725aee"], ["https://tec.openplanner.team/stops/LCvneuv4", "https://tec.openplanner.team/stops/LCvneuv6"], ["https://tec.openplanner.team/stops/N118agb", "https://tec.openplanner.team/stops/N118atb"], ["https://tec.openplanner.team/stops/N554acb", "https://tec.openplanner.team/stops/N573ara"], ["https://tec.openplanner.team/stops/Cjupllo2", "https://tec.openplanner.team/stops/Cjupn2"], ["https://tec.openplanner.team/stops/LPT97--1", "https://tec.openplanner.team/stops/LPurech2"], ["https://tec.openplanner.team/stops/Brsggea1", "https://tec.openplanner.team/stops/Bwatcoq1"], ["https://tec.openplanner.team/stops/Lvepala7", "https://tec.openplanner.team/stops/Lvepris1"], ["https://tec.openplanner.team/stops/Cfrcoqu4", "https://tec.openplanner.team/stops/Cfrgivr2"], ["https://tec.openplanner.team/stops/N123abb", "https://tec.openplanner.team/stops/N123adb"], ["https://tec.openplanner.team/stops/X771afa", "https://tec.openplanner.team/stops/X771afb"], ["https://tec.openplanner.team/stops/Llabrou1", "https://tec.openplanner.team/stops/Llaflot2"], ["https://tec.openplanner.team/stops/Bquebut2", "https://tec.openplanner.team/stops/Bquegob1"], ["https://tec.openplanner.team/stops/H4pq112a", "https://tec.openplanner.team/stops/H4wg122b"], ["https://tec.openplanner.team/stops/N513avb", "https://tec.openplanner.team/stops/N514ajb"], ["https://tec.openplanner.team/stops/X660abb", "https://tec.openplanner.team/stops/X672aca"], ["https://tec.openplanner.team/stops/H1fl136a", "https://tec.openplanner.team/stops/H1fl137b"], ["https://tec.openplanner.team/stops/Bfelagb1", "https://tec.openplanner.team/stops/Bfelpmo1"], ["https://tec.openplanner.team/stops/Cmoruau1", "https://tec.openplanner.team/stops/Cmovies2"], ["https://tec.openplanner.team/stops/X734aaa", "https://tec.openplanner.team/stops/X734aab"], ["https://tec.openplanner.team/stops/NL76aib", "https://tec.openplanner.team/stops/NL77akb"], ["https://tec.openplanner.team/stops/LOLbout2", "https://tec.openplanner.team/stops/LOLrafh2"], ["https://tec.openplanner.team/stops/X870adb", "https://tec.openplanner.team/stops/X880acb"], ["https://tec.openplanner.team/stops/N584apb", "https://tec.openplanner.team/stops/N584aqb"], ["https://tec.openplanner.team/stops/X641afb", "https://tec.openplanner.team/stops/X641aoa"], ["https://tec.openplanner.team/stops/Cmmcomb2", "https://tec.openplanner.team/stops/Cmmlong2"], ["https://tec.openplanner.team/stops/X804aga", "https://tec.openplanner.team/stops/X804aia"], ["https://tec.openplanner.team/stops/Cmastni1", "https://tec.openplanner.team/stops/Cmastni2"], ["https://tec.openplanner.team/stops/LLGcarr2", "https://tec.openplanner.team/stops/LLGramk3"], ["https://tec.openplanner.team/stops/LVIcarm2", "https://tec.openplanner.team/stops/LVIecol2"], ["https://tec.openplanner.team/stops/H1qu103b", "https://tec.openplanner.team/stops/H1qu116c"], ["https://tec.openplanner.team/stops/H1ne140b", "https://tec.openplanner.team/stops/H1ne142a"], ["https://tec.openplanner.team/stops/N353abb", "https://tec.openplanner.team/stops/N353aeb"], ["https://tec.openplanner.team/stops/H2go116a", "https://tec.openplanner.team/stops/H2go118a"], ["https://tec.openplanner.team/stops/X633agc", "https://tec.openplanner.team/stops/X633aia"], ["https://tec.openplanner.team/stops/Lbrhvl-*", "https://tec.openplanner.team/stops/Lgrspir1"], ["https://tec.openplanner.team/stops/Crewaba1", "https://tec.openplanner.team/stops/Crewaba2"], ["https://tec.openplanner.team/stops/X779afa", "https://tec.openplanner.team/stops/X779afb"], ["https://tec.openplanner.team/stops/N241aba", "https://tec.openplanner.team/stops/N585aba"], ["https://tec.openplanner.team/stops/H1hn364a", "https://tec.openplanner.team/stops/H1ms260b"], ["https://tec.openplanner.team/stops/Lveepar2", "https://tec.openplanner.team/stops/Lvemahe2"], ["https://tec.openplanner.team/stops/N234aea", "https://tec.openplanner.team/stops/N550ada"], ["https://tec.openplanner.team/stops/N232bzb", "https://tec.openplanner.team/stops/N242adc"], ["https://tec.openplanner.team/stops/X919aea", "https://tec.openplanner.team/stops/X919aeb"], ["https://tec.openplanner.team/stops/Cmechnd1", "https://tec.openplanner.team/stops/Cmecomb1"], ["https://tec.openplanner.team/stops/LMebove2", "https://tec.openplanner.team/stops/LMeeg--1"], ["https://tec.openplanner.team/stops/Bvilvil1", "https://tec.openplanner.team/stops/Bvilvil3"], ["https://tec.openplanner.team/stops/Lheelva1", "https://tec.openplanner.team/stops/LHemoul2"], ["https://tec.openplanner.team/stops/X817acb", "https://tec.openplanner.team/stops/X817aea"], ["https://tec.openplanner.team/stops/X607aia", "https://tec.openplanner.team/stops/X607aja"], ["https://tec.openplanner.team/stops/X605adb", "https://tec.openplanner.team/stops/X605aeb"], ["https://tec.openplanner.team/stops/H4mo151b", "https://tec.openplanner.team/stops/H4mo208a"], ["https://tec.openplanner.team/stops/X923afb", "https://tec.openplanner.team/stops/X923aia"], ["https://tec.openplanner.team/stops/LlOkreu1", "https://tec.openplanner.team/stops/LmSkape2"], ["https://tec.openplanner.team/stops/LAMpirk1", "https://tec.openplanner.team/stops/LAMweha1"], ["https://tec.openplanner.team/stops/N522ala", "https://tec.openplanner.team/stops/N522ama"], ["https://tec.openplanner.team/stops/LLNogne2", "https://tec.openplanner.team/stops/LSpxhig1"], ["https://tec.openplanner.team/stops/N506apa", "https://tec.openplanner.team/stops/N506bpb"], ["https://tec.openplanner.team/stops/X733afa", "https://tec.openplanner.team/stops/X733afb"], ["https://tec.openplanner.team/stops/H2ch105b", "https://tec.openplanner.team/stops/H2ch105c"], ["https://tec.openplanner.team/stops/Cptchea1", "https://tec.openplanner.team/stops/H2tz117b"], ["https://tec.openplanner.team/stops/X793agb", "https://tec.openplanner.team/stops/X793ahb"], ["https://tec.openplanner.team/stops/H5rx114b", "https://tec.openplanner.team/stops/H5rx148a"], ["https://tec.openplanner.team/stops/X695afa", "https://tec.openplanner.team/stops/X695aha"], ["https://tec.openplanner.team/stops/H2bh112a", "https://tec.openplanner.team/stops/H2bh113a"], ["https://tec.openplanner.team/stops/Cobnive2", "https://tec.openplanner.team/stops/Creoudo1"], ["https://tec.openplanner.team/stops/Bbsgfva2", "https://tec.openplanner.team/stops/Bbsgrve1"], ["https://tec.openplanner.team/stops/Ccuhaie1", "https://tec.openplanner.team/stops/Ccuphai3"], ["https://tec.openplanner.team/stops/LLbpt--2", "https://tec.openplanner.team/stops/LrErauw2"], ["https://tec.openplanner.team/stops/Lsnbure1", "https://tec.openplanner.team/stops/Lticime1"], ["https://tec.openplanner.team/stops/X782aga", "https://tec.openplanner.team/stops/X782agb"], ["https://tec.openplanner.team/stops/LmSdorf2", "https://tec.openplanner.team/stops/LnDdorf1"], ["https://tec.openplanner.team/stops/X630aab", "https://tec.openplanner.team/stops/X638aab"], ["https://tec.openplanner.team/stops/X613aaa", "https://tec.openplanner.team/stops/X623aka"], ["https://tec.openplanner.team/stops/X664amc", "https://tec.openplanner.team/stops/X664ara"], ["https://tec.openplanner.team/stops/H4be108a", "https://tec.openplanner.team/stops/H4be109a"], ["https://tec.openplanner.team/stops/Ceregl2", "https://tec.openplanner.team/stops/N103aea"], ["https://tec.openplanner.team/stops/LAWhein4", "https://tec.openplanner.team/stops/LAWkone2"], ["https://tec.openplanner.team/stops/Btstbes2", "https://tec.openplanner.team/stops/Btstcar2"], ["https://tec.openplanner.team/stops/X640akb", "https://tec.openplanner.team/stops/X640alb"], ["https://tec.openplanner.team/stops/H1ha186a", "https://tec.openplanner.team/stops/H1ha198b"], ["https://tec.openplanner.team/stops/LLrquar2", "https://tec.openplanner.team/stops/LTHturo3"], ["https://tec.openplanner.team/stops/N305aaa", "https://tec.openplanner.team/stops/N331ajb"], ["https://tec.openplanner.team/stops/H2an110a", "https://tec.openplanner.team/stops/H2ca102b"], ["https://tec.openplanner.team/stops/Bnilcha2", "https://tec.openplanner.team/stops/Bnilpje2"], ["https://tec.openplanner.team/stops/N550aga", "https://tec.openplanner.team/stops/N550amb"], ["https://tec.openplanner.team/stops/H1hy127b", "https://tec.openplanner.team/stops/H1hy128a"], ["https://tec.openplanner.team/stops/X725aqb", "https://tec.openplanner.team/stops/X725ava"], ["https://tec.openplanner.team/stops/X734akb", "https://tec.openplanner.team/stops/X775aaa"], ["https://tec.openplanner.team/stops/H1vb141a", "https://tec.openplanner.team/stops/H3bi102a"], ["https://tec.openplanner.team/stops/LFCdree2", "https://tec.openplanner.team/stops/LMgkrui1"], ["https://tec.openplanner.team/stops/Bboncha2", "https://tec.openplanner.team/stops/Bboneta1"], ["https://tec.openplanner.team/stops/LSGcarr2", "https://tec.openplanner.team/stops/LYegeor2"], ["https://tec.openplanner.team/stops/X761aab", "https://tec.openplanner.team/stops/X761abb"], ["https://tec.openplanner.team/stops/LBWviad2", "https://tec.openplanner.team/stops/LVImons2"], ["https://tec.openplanner.team/stops/N557aha", "https://tec.openplanner.team/stops/N557ahb"], ["https://tec.openplanner.team/stops/Lghencl1", "https://tec.openplanner.team/stops/Lghflot3"], ["https://tec.openplanner.team/stops/NR21aba", "https://tec.openplanner.team/stops/NR21abc"], ["https://tec.openplanner.team/stops/LCdchod1", "https://tec.openplanner.team/stops/LMAbell2"], ["https://tec.openplanner.team/stops/Cpl4bra1", "https://tec.openplanner.team/stops/Cplstfa2"], ["https://tec.openplanner.team/stops/Cfmcoro1", "https://tec.openplanner.team/stops/Cfmpui81"], ["https://tec.openplanner.team/stops/Ctm4che2", "https://tec.openplanner.team/stops/Ctmsncb2"], ["https://tec.openplanner.team/stops/H3lr107a", "https://tec.openplanner.team/stops/H3lr111a"], ["https://tec.openplanner.team/stops/N501jka", "https://tec.openplanner.team/stops/N501jpa"], ["https://tec.openplanner.team/stops/N519asb", "https://tec.openplanner.team/stops/N524aja"], ["https://tec.openplanner.team/stops/H3bi110b", "https://tec.openplanner.team/stops/H3bi116b"], ["https://tec.openplanner.team/stops/LCTmonu2", "https://tec.openplanner.team/stops/LFIeg--2"], ["https://tec.openplanner.team/stops/X870aab", "https://tec.openplanner.team/stops/X870abb"], ["https://tec.openplanner.team/stops/X806ada", "https://tec.openplanner.team/stops/X806aeb"], ["https://tec.openplanner.team/stops/X919aeb", "https://tec.openplanner.team/stops/X919afa"], ["https://tec.openplanner.team/stops/X771aba", "https://tec.openplanner.team/stops/X771aca"], ["https://tec.openplanner.team/stops/X597aqa", "https://tec.openplanner.team/stops/X597aqb"], ["https://tec.openplanner.team/stops/LAvatri2", "https://tec.openplanner.team/stops/LAvchpl2"], ["https://tec.openplanner.team/stops/N505aea", "https://tec.openplanner.team/stops/N505aga"], ["https://tec.openplanner.team/stops/Cvppost2", "https://tec.openplanner.team/stops/Cvpsawe1"], ["https://tec.openplanner.team/stops/Cgzblob2", "https://tec.openplanner.team/stops/Cthrpoi2"], ["https://tec.openplanner.team/stops/N513arb", "https://tec.openplanner.team/stops/N513asa"], ["https://tec.openplanner.team/stops/X919aca", "https://tec.openplanner.team/stops/X921afb"], ["https://tec.openplanner.team/stops/X762aaa", "https://tec.openplanner.team/stops/X763adb"], ["https://tec.openplanner.team/stops/N118aab", "https://tec.openplanner.team/stops/N118aba"], ["https://tec.openplanner.team/stops/H2ca104a", "https://tec.openplanner.team/stops/H2mo135b"], ["https://tec.openplanner.team/stops/LVleg--1", "https://tec.openplanner.team/stops/LVllieg1"], ["https://tec.openplanner.team/stops/Bbghpln1", "https://tec.openplanner.team/stops/Bpte1ma2"], ["https://tec.openplanner.team/stops/LMschap1", "https://tec.openplanner.team/stops/LMsec--2"], ["https://tec.openplanner.team/stops/H4an104a", "https://tec.openplanner.team/stops/H4an110a"], ["https://tec.openplanner.team/stops/Lstbota2", "https://tec.openplanner.team/stops/Lstchu-2"], ["https://tec.openplanner.team/stops/N553ada", "https://tec.openplanner.team/stops/N553afb"], ["https://tec.openplanner.team/stops/Lvovent1", "https://tec.openplanner.team/stops/Lvovent2"], ["https://tec.openplanner.team/stops/LAWmc--1", "https://tec.openplanner.team/stops/LAWmc--2"], ["https://tec.openplanner.team/stops/Cmtneuv2", "https://tec.openplanner.team/stops/Cmtpire2"], ["https://tec.openplanner.team/stops/N534asa", "https://tec.openplanner.team/stops/N534avb"], ["https://tec.openplanner.team/stops/N552aaa", "https://tec.openplanner.team/stops/N577aca"], ["https://tec.openplanner.team/stops/Lhrhosp1", "https://tec.openplanner.team/stops/Lhrrhee*"], ["https://tec.openplanner.team/stops/N538asa", "https://tec.openplanner.team/stops/N538asb"], ["https://tec.openplanner.team/stops/H1fr133b", "https://tec.openplanner.team/stops/H1no143a"], ["https://tec.openplanner.team/stops/H2hl112a", "https://tec.openplanner.team/stops/H2hp121b"], ["https://tec.openplanner.team/stops/Lflchan2", "https://tec.openplanner.team/stops/Lmabott1"], ["https://tec.openplanner.team/stops/Lsearbo1", "https://tec.openplanner.team/stops/Lsebonc1"], ["https://tec.openplanner.team/stops/N202aaa", "https://tec.openplanner.team/stops/N202aeb"], ["https://tec.openplanner.team/stops/Cfmpui82", "https://tec.openplanner.team/stops/Cfmwaut2"], ["https://tec.openplanner.team/stops/Bbryfon1", "https://tec.openplanner.team/stops/Bbryfon2"], ["https://tec.openplanner.team/stops/LBkwind1", "https://tec.openplanner.team/stops/LBkwind2"], ["https://tec.openplanner.team/stops/H4ln128a", "https://tec.openplanner.team/stops/H4ne144a"], ["https://tec.openplanner.team/stops/X775agb", "https://tec.openplanner.team/stops/X775ahb"], ["https://tec.openplanner.team/stops/N151aha", "https://tec.openplanner.team/stops/N151aib"], ["https://tec.openplanner.team/stops/X614afb", "https://tec.openplanner.team/stops/X614agb"], ["https://tec.openplanner.team/stops/LATdame1", "https://tec.openplanner.team/stops/LVNbale1"], ["https://tec.openplanner.team/stops/Blhueso1", "https://tec.openplanner.team/stops/Blhugmo1"], ["https://tec.openplanner.team/stops/Bquebut1", "https://tec.openplanner.team/stops/Bquepla2"], ["https://tec.openplanner.team/stops/LsVbs--*", "https://tec.openplanner.team/stops/LwSschw1"], ["https://tec.openplanner.team/stops/X925ada", "https://tec.openplanner.team/stops/X925adb"], ["https://tec.openplanner.team/stops/H1cd112a", "https://tec.openplanner.team/stops/H1cd113a"], ["https://tec.openplanner.team/stops/H4fr144a", "https://tec.openplanner.team/stops/H4fr389a"], ["https://tec.openplanner.team/stops/LHCkoul2", "https://tec.openplanner.team/stops/LHCpaci2"], ["https://tec.openplanner.team/stops/Brsgecu2", "https://tec.openplanner.team/stops/Brsgfbl4"], ["https://tec.openplanner.team/stops/X725aab", "https://tec.openplanner.team/stops/X738aeb"], ["https://tec.openplanner.team/stops/N101ama", "https://tec.openplanner.team/stops/N101aob"], ["https://tec.openplanner.team/stops/N230aab", "https://tec.openplanner.team/stops/N230acb"], ["https://tec.openplanner.team/stops/H1ca100a", "https://tec.openplanner.team/stops/H1ca104a"], ["https://tec.openplanner.team/stops/H4ta116a", "https://tec.openplanner.team/stops/H4ta126a"], ["https://tec.openplanner.team/stops/H1ol143a", "https://tec.openplanner.team/stops/H1ol145a"], ["https://tec.openplanner.team/stops/Crocona2", "https://tec.openplanner.team/stops/Crorpai1"], ["https://tec.openplanner.team/stops/LGeborn1", "https://tec.openplanner.team/stops/LGepeck2"], ["https://tec.openplanner.team/stops/LeYwald1", "https://tec.openplanner.team/stops/LeYwess1"], ["https://tec.openplanner.team/stops/X921aca", "https://tec.openplanner.team/stops/X921acb"], ["https://tec.openplanner.team/stops/X672acb", "https://tec.openplanner.team/stops/X672afa"], ["https://tec.openplanner.team/stops/Cmlgoff2", "https://tec.openplanner.team/stops/Cmltemp3"], ["https://tec.openplanner.team/stops/Blhulor1", "https://tec.openplanner.team/stops/Blhuone1"], ["https://tec.openplanner.team/stops/X897aba", "https://tec.openplanner.team/stops/X897abb"], ["https://tec.openplanner.team/stops/Crocpai1", "https://tec.openplanner.team/stops/Crocpai2"], ["https://tec.openplanner.team/stops/X664aib", "https://tec.openplanner.team/stops/X665aab"], ["https://tec.openplanner.team/stops/Blimd672", "https://tec.openplanner.team/stops/Blimeur2"], ["https://tec.openplanner.team/stops/H4ty314b", "https://tec.openplanner.team/stops/H4ty314c"], ["https://tec.openplanner.team/stops/N548acd", "https://tec.openplanner.team/stops/N548amb"], ["https://tec.openplanner.team/stops/H1mb125a", "https://tec.openplanner.team/stops/H1mb136a"], ["https://tec.openplanner.team/stops/Bwatath1", "https://tec.openplanner.team/stops/Bwatath2"], ["https://tec.openplanner.team/stops/LWaatel2", "https://tec.openplanner.team/stops/LWLtamb1"], ["https://tec.openplanner.team/stops/Broscha1", "https://tec.openplanner.team/stops/Brosegl2"], ["https://tec.openplanner.team/stops/LLVboss1", "https://tec.openplanner.team/stops/X561adb"], ["https://tec.openplanner.team/stops/N501myb", "https://tec.openplanner.team/stops/N527acb"], ["https://tec.openplanner.team/stops/LHGikea2", "https://tec.openplanner.team/stops/LHGzoni2"], ["https://tec.openplanner.team/stops/X910aia", "https://tec.openplanner.team/stops/X910aib"], ["https://tec.openplanner.team/stops/X805abb", "https://tec.openplanner.team/stops/X805aja"], ["https://tec.openplanner.team/stops/Lvccime1", "https://tec.openplanner.team/stops/Lvcdumo1"], ["https://tec.openplanner.team/stops/X870aeb", "https://tec.openplanner.team/stops/X870aib"], ["https://tec.openplanner.team/stops/N529abc", "https://tec.openplanner.team/stops/N529akb"], ["https://tec.openplanner.team/stops/X644aba", "https://tec.openplanner.team/stops/X645abb"], ["https://tec.openplanner.team/stops/N217aca", "https://tec.openplanner.team/stops/N218aeb"], ["https://tec.openplanner.team/stops/Cjuecha1", "https://tec.openplanner.team/stops/Clogfay2"], ["https://tec.openplanner.team/stops/N244aoa", "https://tec.openplanner.team/stops/N244arb"], ["https://tec.openplanner.team/stops/LLYplac2", "https://tec.openplanner.team/stops/LLYtir-1"], ["https://tec.openplanner.team/stops/N538ama", "https://tec.openplanner.team/stops/N538ara"], ["https://tec.openplanner.team/stops/LBGroma2", "https://tec.openplanner.team/stops/LBGvill2"], ["https://tec.openplanner.team/stops/H1ca102b", "https://tec.openplanner.team/stops/H3so160b"], ["https://tec.openplanner.team/stops/X651adb", "https://tec.openplanner.team/stops/X651aga"], ["https://tec.openplanner.team/stops/Lbralbe1", "https://tec.openplanner.team/stops/Lbrfoid1"], ["https://tec.openplanner.team/stops/H4ty301a", "https://tec.openplanner.team/stops/H4ty301d"], ["https://tec.openplanner.team/stops/LFOchpl1", "https://tec.openplanner.team/stops/LFOchpl2"], ["https://tec.openplanner.team/stops/N211bca", "https://tec.openplanner.team/stops/N212agc"], ["https://tec.openplanner.team/stops/H1ba113a", "https://tec.openplanner.team/stops/H1hh118b"], ["https://tec.openplanner.team/stops/H1by101a", "https://tec.openplanner.team/stops/H1by109a"], ["https://tec.openplanner.team/stops/N338aeb", "https://tec.openplanner.team/stops/N338agb"], ["https://tec.openplanner.team/stops/Bsaubra2", "https://tec.openplanner.team/stops/Bsaumlk1"], ["https://tec.openplanner.team/stops/LFPho8a1", "https://tec.openplanner.team/stops/LFPho8a2"], ["https://tec.openplanner.team/stops/Bbchm382", "https://tec.openplanner.team/stops/Bhalvla1"], ["https://tec.openplanner.team/stops/N287abb", "https://tec.openplanner.team/stops/N287acb"], ["https://tec.openplanner.team/stops/X601cqa", "https://tec.openplanner.team/stops/X601cra"], ["https://tec.openplanner.team/stops/LWEfati2", "https://tec.openplanner.team/stops/LWEmito2"], ["https://tec.openplanner.team/stops/X899aba", "https://tec.openplanner.team/stops/X899abb"], ["https://tec.openplanner.team/stops/LRmkerk2", "https://tec.openplanner.team/stops/LRmstat2"], ["https://tec.openplanner.team/stops/H1je219a", "https://tec.openplanner.team/stops/H1je369b"], ["https://tec.openplanner.team/stops/Baegd741", "https://tec.openplanner.team/stops/Bgrhhot1"], ["https://tec.openplanner.team/stops/LSGfoua2", "https://tec.openplanner.team/stops/LSkathe1"], ["https://tec.openplanner.team/stops/H4va232a", "https://tec.openplanner.team/stops/H4va234b"], ["https://tec.openplanner.team/stops/N302acb", "https://tec.openplanner.team/stops/N302aeb"], ["https://tec.openplanner.team/stops/Bwancal1", "https://tec.openplanner.team/stops/Bwanthi2"], ["https://tec.openplanner.team/stops/LHTcerc4", "https://tec.openplanner.team/stops/LHTeg--4"], ["https://tec.openplanner.team/stops/N525ahb", "https://tec.openplanner.team/stops/N525aia"], ["https://tec.openplanner.team/stops/LVvboma2", "https://tec.openplanner.team/stops/LVvbouv2"], ["https://tec.openplanner.team/stops/LBAcere2", "https://tec.openplanner.team/stops/LHOgymn2"], ["https://tec.openplanner.team/stops/X982bfb", "https://tec.openplanner.team/stops/X982bja"], ["https://tec.openplanner.team/stops/N232ayb", "https://tec.openplanner.team/stops/N232cbb"], ["https://tec.openplanner.team/stops/X396acb", "https://tec.openplanner.team/stops/X396ada"], ["https://tec.openplanner.team/stops/LAivill1", "https://tec.openplanner.team/stops/Lccawir4"], ["https://tec.openplanner.team/stops/X911aoa", "https://tec.openplanner.team/stops/X911awa"], ["https://tec.openplanner.team/stops/Bmsgbur1", "https://tec.openplanner.team/stops/Bmsgbur2"], ["https://tec.openplanner.team/stops/X818aba", "https://tec.openplanner.team/stops/X827aab"], ["https://tec.openplanner.team/stops/Lroeg--1", "https://tec.openplanner.team/stops/Lromerl2"], ["https://tec.openplanner.team/stops/LMAcite2", "https://tec.openplanner.team/stops/LMAhall1"], ["https://tec.openplanner.team/stops/LFHjamo1", "https://tec.openplanner.team/stops/LVGeg--1"], ["https://tec.openplanner.team/stops/LHFhard1", "https://tec.openplanner.team/stops/LVEmoul1"], ["https://tec.openplanner.team/stops/X638alb", "https://tec.openplanner.team/stops/X644aeb"], ["https://tec.openplanner.team/stops/X634acb", "https://tec.openplanner.team/stops/X634aea"], ["https://tec.openplanner.team/stops/X839abc", "https://tec.openplanner.team/stops/X839abd"], ["https://tec.openplanner.team/stops/LiVkreu1", "https://tec.openplanner.team/stops/LiVkreu4"], ["https://tec.openplanner.team/stops/Lsehtsa2", "https://tec.openplanner.team/stops/Lseptsa1"], ["https://tec.openplanner.team/stops/H2hg144a", "https://tec.openplanner.team/stops/H2ll195b"], ["https://tec.openplanner.team/stops/Cmypost1", "https://tec.openplanner.team/stops/Cmypost2"], ["https://tec.openplanner.team/stops/Brsgm301", "https://tec.openplanner.team/stops/Bwatcha2"], ["https://tec.openplanner.team/stops/Bvxgeta1", "https://tec.openplanner.team/stops/Bvxgpro2"], ["https://tec.openplanner.team/stops/Lpegole1", "https://tec.openplanner.team/stops/Lpegole4"], ["https://tec.openplanner.team/stops/Bnivzon1", "https://tec.openplanner.team/stops/Bnivzon2"], ["https://tec.openplanner.team/stops/X762abb", "https://tec.openplanner.team/stops/X762aca"], ["https://tec.openplanner.team/stops/LrEkape1", "https://tec.openplanner.team/stops/LrEkape2"], ["https://tec.openplanner.team/stops/H4me211c", "https://tec.openplanner.team/stops/H4tg262a"], ["https://tec.openplanner.team/stops/LLrdrev1", "https://tec.openplanner.team/stops/LLrdrev2"], ["https://tec.openplanner.team/stops/N321aba", "https://tec.openplanner.team/stops/N321aca"], ["https://tec.openplanner.team/stops/H1ne139b", "https://tec.openplanner.team/stops/H1ne145b"], ["https://tec.openplanner.team/stops/Llghori1", "https://tec.openplanner.team/stops/Llgvolg2"], ["https://tec.openplanner.team/stops/Bgnvpco3", "https://tec.openplanner.team/stops/Bgnvval2"], ["https://tec.openplanner.team/stops/X901aab", "https://tec.openplanner.team/stops/X901bka"], ["https://tec.openplanner.team/stops/N501dea", "https://tec.openplanner.team/stops/N501dfa"], ["https://tec.openplanner.team/stops/X858aaa", "https://tec.openplanner.team/stops/X858afb"], ["https://tec.openplanner.team/stops/Lflsana1", "https://tec.openplanner.team/stops/Lflsana2"], ["https://tec.openplanner.team/stops/LLmpt--2", "https://tec.openplanner.team/stops/LLmwaut1"], ["https://tec.openplanner.team/stops/Lbrcygn1", "https://tec.openplanner.team/stops/Lbrfusi2"], ["https://tec.openplanner.team/stops/N571abb", "https://tec.openplanner.team/stops/N573adb"], ["https://tec.openplanner.team/stops/LVEeg--1", "https://tec.openplanner.team/stops/LVErtt-2"], ["https://tec.openplanner.team/stops/N518aba", "https://tec.openplanner.team/stops/N520aia"], ["https://tec.openplanner.team/stops/Cchfran2", "https://tec.openplanner.team/stops/Cchrmon4"], ["https://tec.openplanner.team/stops/LbUjost2", "https://tec.openplanner.team/stops/LbUmolk1"], ["https://tec.openplanner.team/stops/Bhoealt2", "https://tec.openplanner.team/stops/Btiegar2"], ["https://tec.openplanner.team/stops/X871aeb", "https://tec.openplanner.team/stops/X880acb"], ["https://tec.openplanner.team/stops/N308aaa", "https://tec.openplanner.team/stops/N308aab"], ["https://tec.openplanner.team/stops/N508aeb", "https://tec.openplanner.team/stops/N516aab"], ["https://tec.openplanner.team/stops/H1bl105a", "https://tec.openplanner.team/stops/H1do129a"], ["https://tec.openplanner.team/stops/Cjuhden1", "https://tec.openplanner.team/stops/CMtsan2"], ["https://tec.openplanner.team/stops/X621aaa", "https://tec.openplanner.team/stops/X621aab"], ["https://tec.openplanner.team/stops/Bronfou1", "https://tec.openplanner.team/stops/Bronfou2"], ["https://tec.openplanner.team/stops/H1wa136a", "https://tec.openplanner.team/stops/H1wa153a"], ["https://tec.openplanner.team/stops/Bblaang1", "https://tec.openplanner.team/stops/Blilwit1"], ["https://tec.openplanner.team/stops/LAUcent2", "https://tec.openplanner.team/stops/LAUscha2"], ["https://tec.openplanner.team/stops/N555aca", "https://tec.openplanner.team/stops/NC11ard"], ["https://tec.openplanner.team/stops/Lvealbe2", "https://tec.openplanner.team/stops/Lvevert4"], ["https://tec.openplanner.team/stops/X748aea", "https://tec.openplanner.team/stops/X767aha"], ["https://tec.openplanner.team/stops/H1me117f", "https://tec.openplanner.team/stops/H1so141b"], ["https://tec.openplanner.team/stops/N509akb", "https://tec.openplanner.team/stops/N510adb"], ["https://tec.openplanner.team/stops/Cciarfr1", "https://tec.openplanner.team/stops/Cciethi2"], ["https://tec.openplanner.team/stops/Llgboux1", "https://tec.openplanner.team/stops/Lvtnico2"], ["https://tec.openplanner.team/stops/H4ce102b", "https://tec.openplanner.team/stops/H4mx115b"], ["https://tec.openplanner.team/stops/H4mx115a", "https://tec.openplanner.team/stops/H4mx119c"], ["https://tec.openplanner.team/stops/LBSkann2", "https://tec.openplanner.team/stops/LBSneuv1"], ["https://tec.openplanner.team/stops/Becepro1", "https://tec.openplanner.team/stops/Becesbo1"], ["https://tec.openplanner.team/stops/LELchap1", "https://tec.openplanner.team/stops/LHChaut5"], ["https://tec.openplanner.team/stops/Caibino1", "https://tec.openplanner.team/stops/Caibino2"], ["https://tec.openplanner.team/stops/H5pe130b", "https://tec.openplanner.team/stops/H5pe131b"], ["https://tec.openplanner.team/stops/LHdfays1", "https://tec.openplanner.team/stops/LHdkenn2"], ["https://tec.openplanner.team/stops/H2bh115a", "https://tec.openplanner.team/stops/H2bh115b"], ["https://tec.openplanner.team/stops/Bndbnod1", "https://tec.openplanner.team/stops/Bndbnod2"], ["https://tec.openplanner.team/stops/H4ma200b", "https://tec.openplanner.team/stops/H4ma202b"], ["https://tec.openplanner.team/stops/H1le117a", "https://tec.openplanner.team/stops/H1le124a"], ["https://tec.openplanner.team/stops/X804awb", "https://tec.openplanner.team/stops/X804bda"], ["https://tec.openplanner.team/stops/LGMvoue1", "https://tec.openplanner.team/stops/LSEvill2"], ["https://tec.openplanner.team/stops/X725asa", "https://tec.openplanner.team/stops/X725atb"], ["https://tec.openplanner.team/stops/LDOandr1", "https://tec.openplanner.team/stops/LDOdavi2"], ["https://tec.openplanner.team/stops/LVBcarr1", "https://tec.openplanner.team/stops/LVBmonu3"], ["https://tec.openplanner.team/stops/NL37aaa", "https://tec.openplanner.team/stops/NL37acb"], ["https://tec.openplanner.team/stops/LHChaut5", "https://tec.openplanner.team/stops/LHCquat1"], ["https://tec.openplanner.team/stops/LHUmess2", "https://tec.openplanner.team/stops/LTicime2"], ["https://tec.openplanner.team/stops/N501hnb", "https://tec.openplanner.team/stops/N501ima"], ["https://tec.openplanner.team/stops/Lvcfogu6", "https://tec.openplanner.team/stops/Lvcvesd*"], ["https://tec.openplanner.team/stops/LEMeg--2", "https://tec.openplanner.team/stops/LWOcomm2"], ["https://tec.openplanner.team/stops/LSyec--1", "https://tec.openplanner.team/stops/LSypesy1"], ["https://tec.openplanner.team/stops/LSssurl2", "https://tec.openplanner.team/stops/N506bna"], ["https://tec.openplanner.team/stops/Bauddel1", "https://tec.openplanner.team/stops/Baudsju1"], ["https://tec.openplanner.team/stops/Csecarr1", "https://tec.openplanner.team/stops/Csecarr2"], ["https://tec.openplanner.team/stops/N261aab", "https://tec.openplanner.team/stops/N261agb"], ["https://tec.openplanner.team/stops/H1he103a", "https://tec.openplanner.team/stops/H1he111b"], ["https://tec.openplanner.team/stops/Brsgera2", "https://tec.openplanner.team/stops/Brsggde2"], ["https://tec.openplanner.team/stops/H2ma264a", "https://tec.openplanner.team/stops/H2sb226b"], ["https://tec.openplanner.team/stops/H1bx107b", "https://tec.openplanner.team/stops/H1bx108b"], ["https://tec.openplanner.team/stops/X659ava", "https://tec.openplanner.team/stops/X659avb"], ["https://tec.openplanner.team/stops/Bclgegl1", "https://tec.openplanner.team/stops/Bclgfva2"], ["https://tec.openplanner.team/stops/LAx41--1", "https://tec.openplanner.team/stops/LAxbott1"], ["https://tec.openplanner.team/stops/Bbstegl1", "https://tec.openplanner.team/stops/Bbstmco1"], ["https://tec.openplanner.team/stops/Blmlgar1", "https://tec.openplanner.team/stops/Bottbou2"], ["https://tec.openplanner.team/stops/N553aha", "https://tec.openplanner.team/stops/N553ahb"], ["https://tec.openplanner.team/stops/X685afa", "https://tec.openplanner.team/stops/X685aia"], ["https://tec.openplanner.team/stops/LOCeg--1", "https://tec.openplanner.team/stops/LOCponc*"], ["https://tec.openplanner.team/stops/X804asa", "https://tec.openplanner.team/stops/X829aab"], ["https://tec.openplanner.team/stops/Llgbron1", "https://tec.openplanner.team/stops/LlgguilF"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N313acb"], ["https://tec.openplanner.team/stops/Llgparc1", "https://tec.openplanner.team/stops/Llgriva2"], ["https://tec.openplanner.team/stops/X901ala", "https://tec.openplanner.team/stops/X901aya"], ["https://tec.openplanner.team/stops/N501hhb", "https://tec.openplanner.team/stops/N501mha"], ["https://tec.openplanner.team/stops/LODamco1", "https://tec.openplanner.team/stops/X561ada"], ["https://tec.openplanner.team/stops/H4ch114a", "https://tec.openplanner.team/stops/H4ch115a"], ["https://tec.openplanner.team/stops/NL57agb", "https://tec.openplanner.team/stops/NL57aha"], ["https://tec.openplanner.team/stops/X802aua", "https://tec.openplanner.team/stops/X802ayb"], ["https://tec.openplanner.team/stops/LGMforg2", "https://tec.openplanner.team/stops/LTRsain2"], ["https://tec.openplanner.team/stops/Cgdfoca1", "https://tec.openplanner.team/stops/Csylaha1"], ["https://tec.openplanner.team/stops/X640arb", "https://tec.openplanner.team/stops/X640atb"], ["https://tec.openplanner.team/stops/Bmoucnd1", "https://tec.openplanner.team/stops/Bmouegl1"], ["https://tec.openplanner.team/stops/Cmmlong1", "https://tec.openplanner.team/stops/Cmmmarl1"], ["https://tec.openplanner.team/stops/N534auc", "https://tec.openplanner.team/stops/N561ada"], ["https://tec.openplanner.team/stops/H1sp357b", "https://tec.openplanner.team/stops/H1ss352a"], ["https://tec.openplanner.team/stops/H1je215b", "https://tec.openplanner.team/stops/H1je217a"], ["https://tec.openplanner.team/stops/X601ara", "https://tec.openplanner.team/stops/X662aha"], ["https://tec.openplanner.team/stops/X608ajb", "https://tec.openplanner.team/stops/X608ala"], ["https://tec.openplanner.team/stops/H2na134b", "https://tec.openplanner.team/stops/H2na135a"], ["https://tec.openplanner.team/stops/X743aca", "https://tec.openplanner.team/stops/X743acb"], ["https://tec.openplanner.team/stops/Cflecga1", "https://tec.openplanner.team/stops/Cflecga2"], ["https://tec.openplanner.team/stops/N503aka", "https://tec.openplanner.team/stops/N503akb"], ["https://tec.openplanner.team/stops/N542abb", "https://tec.openplanner.team/stops/N542aob"], ["https://tec.openplanner.team/stops/Cjuepee1", "https://tec.openplanner.team/stops/Cjuepee2"], ["https://tec.openplanner.team/stops/H2an100a", "https://tec.openplanner.team/stops/H2an103b"], ["https://tec.openplanner.team/stops/Bjausan2", "https://tec.openplanner.team/stops/Bjauwar1"], ["https://tec.openplanner.team/stops/H5pe131a", "https://tec.openplanner.team/stops/H5pe144a"], ["https://tec.openplanner.team/stops/Bblague1", "https://tec.openplanner.team/stops/Bblaqsj1"], ["https://tec.openplanner.team/stops/Cjudest3", "https://tec.openplanner.team/stops/Cloauln1"], ["https://tec.openplanner.team/stops/H4ch115b", "https://tec.openplanner.team/stops/H4ty321a"], ["https://tec.openplanner.team/stops/N348aca", "https://tec.openplanner.team/stops/N348acb"], ["https://tec.openplanner.team/stops/H4ty319a", "https://tec.openplanner.team/stops/H4ty381a"], ["https://tec.openplanner.team/stops/Clolidl1", "https://tec.openplanner.team/stops/Cmarroy2"], ["https://tec.openplanner.team/stops/LBvnico1", "https://tec.openplanner.team/stops/LLirout2"], ["https://tec.openplanner.team/stops/Lmidarc2", "https://tec.openplanner.team/stops/Lmitroi2"], ["https://tec.openplanner.team/stops/H4vx364a", "https://tec.openplanner.team/stops/H4vx364b"], ["https://tec.openplanner.team/stops/Cflhano2", "https://tec.openplanner.team/stops/NC12aaa"], ["https://tec.openplanner.team/stops/N536apb", "https://tec.openplanner.team/stops/N536aqa"], ["https://tec.openplanner.team/stops/Cbetrie1", "https://tec.openplanner.team/stops/Chhclde2"], ["https://tec.openplanner.team/stops/Lpevesd1", "https://tec.openplanner.team/stops/LWerola2"], ["https://tec.openplanner.team/stops/Cfcmass2", "https://tec.openplanner.team/stops/Cfcstan2"], ["https://tec.openplanner.team/stops/X982amb", "https://tec.openplanner.team/stops/X982bsa"], ["https://tec.openplanner.team/stops/X812aca", "https://tec.openplanner.team/stops/X812beb"], ["https://tec.openplanner.team/stops/Bcsebea1", "https://tec.openplanner.team/stops/Bmsgpap2"], ["https://tec.openplanner.team/stops/N584ada", "https://tec.openplanner.team/stops/N584afa"], ["https://tec.openplanner.team/stops/LXhvanh1", "https://tec.openplanner.team/stops/LXhvina1"], ["https://tec.openplanner.team/stops/X626ada", "https://tec.openplanner.team/stops/X626aga"], ["https://tec.openplanner.team/stops/H4ne136b", "https://tec.openplanner.team/stops/H4te255a"], ["https://tec.openplanner.team/stops/Brxmbos1", "https://tec.openplanner.team/stops/Brxmhai1"], ["https://tec.openplanner.team/stops/H1hw122a", "https://tec.openplanner.team/stops/H1hw124b"], ["https://tec.openplanner.team/stops/X633acb", "https://tec.openplanner.team/stops/X633adc"], ["https://tec.openplanner.team/stops/H4ft138a", "https://tec.openplanner.team/stops/H4wu377b"], ["https://tec.openplanner.team/stops/LWLhagi1", "https://tec.openplanner.team/stops/LWLhagi2"], ["https://tec.openplanner.team/stops/N135aya", "https://tec.openplanner.team/stops/N135bgb"], ["https://tec.openplanner.team/stops/Ljewale1", "https://tec.openplanner.team/stops/Ljexhav1"], ["https://tec.openplanner.team/stops/H1lm106a", "https://tec.openplanner.team/stops/H1lm107a"], ["https://tec.openplanner.team/stops/H4ty334a", "https://tec.openplanner.team/stops/H4ty345b"], ["https://tec.openplanner.team/stops/H1al146a", "https://tec.openplanner.team/stops/H1al146b"], ["https://tec.openplanner.team/stops/X982aua", "https://tec.openplanner.team/stops/X982caa"], ["https://tec.openplanner.team/stops/LVIeg--1", "https://tec.openplanner.team/stops/LVIsacr1"], ["https://tec.openplanner.team/stops/Balsnie1", "https://tec.openplanner.team/stops/Balsnie2"], ["https://tec.openplanner.team/stops/N214aib", "https://tec.openplanner.team/stops/N225aeb"], ["https://tec.openplanner.team/stops/Bbsipos1", "https://tec.openplanner.team/stops/Bhtihau2"], ["https://tec.openplanner.team/stops/Lbocomm1", "https://tec.openplanner.team/stops/LTIcime1"], ["https://tec.openplanner.team/stops/Lgrclin3", "https://tec.openplanner.team/stops/Lvccime2"], ["https://tec.openplanner.team/stops/N519akb", "https://tec.openplanner.team/stops/N525aga"], ["https://tec.openplanner.team/stops/N346ada", "https://tec.openplanner.team/stops/N346adb"], ["https://tec.openplanner.team/stops/H1do116b", "https://tec.openplanner.team/stops/H1pd141b"], ["https://tec.openplanner.team/stops/N874aeb", "https://tec.openplanner.team/stops/N874afa"], ["https://tec.openplanner.team/stops/Brsrpch2", "https://tec.openplanner.team/stops/Brsrpri1"], ["https://tec.openplanner.team/stops/X897aja", "https://tec.openplanner.team/stops/X897ajb"], ["https://tec.openplanner.team/stops/N514acb", "https://tec.openplanner.team/stops/N515ana"], ["https://tec.openplanner.team/stops/H1ms293b", "https://tec.openplanner.team/stops/H1ms924a"], ["https://tec.openplanner.team/stops/Lsnecco3", "https://tec.openplanner.team/stops/Lsnmala1"], ["https://tec.openplanner.team/stops/X663aba", "https://tec.openplanner.team/stops/X663ada"], ["https://tec.openplanner.team/stops/H1hb197a", "https://tec.openplanner.team/stops/H1si155b"], ["https://tec.openplanner.team/stops/X871aaa", "https://tec.openplanner.team/stops/X873aab"], ["https://tec.openplanner.team/stops/H4av102a", "https://tec.openplanner.team/stops/H4av105b"], ["https://tec.openplanner.team/stops/X829aab", "https://tec.openplanner.team/stops/X831ada"], ["https://tec.openplanner.team/stops/H4pl112b", "https://tec.openplanner.team/stops/H4wn127b"], ["https://tec.openplanner.team/stops/H5qu141b", "https://tec.openplanner.team/stops/H5qu142b"], ["https://tec.openplanner.team/stops/X801apa", "https://tec.openplanner.team/stops/X801apb"], ["https://tec.openplanner.team/stops/Bmrscol1", "https://tec.openplanner.team/stops/Bmrssmc1"], ["https://tec.openplanner.team/stops/X804abb", "https://tec.openplanner.team/stops/X804amb"], ["https://tec.openplanner.team/stops/LLrgare1", "https://tec.openplanner.team/stops/LTHturo2"], ["https://tec.openplanner.team/stops/LFArela2", "https://tec.openplanner.team/stops/LFAsauv2"], ["https://tec.openplanner.team/stops/H4pl116b", "https://tec.openplanner.team/stops/H4pl122a"], ["https://tec.openplanner.team/stops/Cgxalli2", "https://tec.openplanner.team/stops/Cgxbeau2"], ["https://tec.openplanner.team/stops/LMaburg3", "https://tec.openplanner.team/stops/LMazonn3"], ["https://tec.openplanner.team/stops/N540akb", "https://tec.openplanner.team/stops/N540aob"], ["https://tec.openplanner.team/stops/Bgzddge1", "https://tec.openplanner.team/stops/Bgzdpis1"], ["https://tec.openplanner.team/stops/Brsrabe1", "https://tec.openplanner.team/stops/Brsrmon3"], ["https://tec.openplanner.team/stops/Lagjard2", "https://tec.openplanner.team/stops/Lagvall2"], ["https://tec.openplanner.team/stops/H1mb129a", "https://tec.openplanner.team/stops/H1mb129b"], ["https://tec.openplanner.team/stops/X663asa", "https://tec.openplanner.team/stops/X664amd"], ["https://tec.openplanner.team/stops/N501lya", "https://tec.openplanner.team/stops/N501lyb"], ["https://tec.openplanner.team/stops/H1ch103a", "https://tec.openplanner.team/stops/H1ch105a"], ["https://tec.openplanner.team/stops/X362acb", "https://tec.openplanner.team/stops/X362adb"], ["https://tec.openplanner.team/stops/Lprmc--2", "https://tec.openplanner.team/stops/Lprperr1"], ["https://tec.openplanner.team/stops/LlgOPER1", "https://tec.openplanner.team/stops/LlgOPER3"], ["https://tec.openplanner.team/stops/LmNkess1", "https://tec.openplanner.team/stops/LmNkess2"], ["https://tec.openplanner.team/stops/Bllnlen1", "https://tec.openplanner.team/stops/Bllnrro2"], ["https://tec.openplanner.team/stops/LRCviad1", "https://tec.openplanner.team/stops/LRCviad2"], ["https://tec.openplanner.team/stops/H4te259a", "https://tec.openplanner.team/stops/H4te259b"], ["https://tec.openplanner.team/stops/X947aea", "https://tec.openplanner.team/stops/X947aeb"], ["https://tec.openplanner.team/stops/LLncime1", "https://tec.openplanner.team/stops/LLncime2"], ["https://tec.openplanner.team/stops/X917aaa", "https://tec.openplanner.team/stops/X919aeb"], ["https://tec.openplanner.team/stops/Lfllapi2", "https://tec.openplanner.team/stops/Lflsana2"], ["https://tec.openplanner.team/stops/Ljehotv1", "https://tec.openplanner.team/stops/Lsecoll1"], ["https://tec.openplanner.team/stops/X910afa", "https://tec.openplanner.team/stops/X910afb"], ["https://tec.openplanner.team/stops/Llgchar1", "https://tec.openplanner.team/stops/Llgchar2"], ["https://tec.openplanner.team/stops/H1ht122b", "https://tec.openplanner.team/stops/H1ht197b"], ["https://tec.openplanner.team/stops/N308ayb", "https://tec.openplanner.team/stops/N339aca"], ["https://tec.openplanner.team/stops/Bmrl4ch1", "https://tec.openplanner.team/stops/Bmrlegl2"], ["https://tec.openplanner.team/stops/LAWbrou1", "https://tec.openplanner.team/stops/LAWbrou2"], ["https://tec.openplanner.team/stops/LBVlamo2", "https://tec.openplanner.team/stops/LRcsilo2"], ["https://tec.openplanner.team/stops/LsVgesc1", "https://tec.openplanner.team/stops/LsVthom2"], ["https://tec.openplanner.team/stops/N211apb", "https://tec.openplanner.team/stops/N211baa"], ["https://tec.openplanner.team/stops/X850aha", "https://tec.openplanner.team/stops/X850ahb"], ["https://tec.openplanner.team/stops/H4cr111b", "https://tec.openplanner.team/stops/H4wt160b"], ["https://tec.openplanner.team/stops/N539aca", "https://tec.openplanner.team/stops/N540aha"], ["https://tec.openplanner.team/stops/X818aga", "https://tec.openplanner.team/stops/X822adb"], ["https://tec.openplanner.team/stops/N501bxa", "https://tec.openplanner.team/stops/N501mib"], ["https://tec.openplanner.team/stops/H1wa149c", "https://tec.openplanner.team/stops/H1wa152b"], ["https://tec.openplanner.team/stops/Barqbar1", "https://tec.openplanner.team/stops/Bnivmon2"], ["https://tec.openplanner.team/stops/X801chb", "https://tec.openplanner.team/stops/X801cjb"], ["https://tec.openplanner.team/stops/Ccogibr1", "https://tec.openplanner.team/stops/Ccogibr2"], ["https://tec.openplanner.team/stops/X725acb", "https://tec.openplanner.team/stops/X725ada"], ["https://tec.openplanner.team/stops/LPLecco2", "https://tec.openplanner.team/stops/LPLline1"], ["https://tec.openplanner.team/stops/H1mb138a", "https://tec.openplanner.team/stops/H1mb166a"], ["https://tec.openplanner.team/stops/Bbldvaa1", "https://tec.openplanner.team/stops/Bnetegl2"], ["https://tec.openplanner.team/stops/N241aaa", "https://tec.openplanner.team/stops/N585abb"], ["https://tec.openplanner.team/stops/N543ahb", "https://tec.openplanner.team/stops/N543ayb"], ["https://tec.openplanner.team/stops/LFHjamo2", "https://tec.openplanner.team/stops/LVeeg--2"], ["https://tec.openplanner.team/stops/LFIcabi1", "https://tec.openplanner.team/stops/LHaxhor1"], ["https://tec.openplanner.team/stops/Bspkkhe2", "https://tec.openplanner.team/stops/H1mk116b"], ["https://tec.openplanner.team/stops/Ccoacar2", "https://tec.openplanner.team/stops/Ccotemp2"], ["https://tec.openplanner.team/stops/Ccircar1", "https://tec.openplanner.team/stops/Ccivill1"], ["https://tec.openplanner.team/stops/X743adb", "https://tec.openplanner.team/stops/X756aka"], ["https://tec.openplanner.team/stops/LmNlieb1", "https://tec.openplanner.team/stops/LmNsied2"], ["https://tec.openplanner.team/stops/LrApley1", "https://tec.openplanner.team/stops/LrApley2"], ["https://tec.openplanner.team/stops/N539ala", "https://tec.openplanner.team/stops/N539alb"], ["https://tec.openplanner.team/stops/LMOchpl2", "https://tec.openplanner.team/stops/LMOf35-2"], ["https://tec.openplanner.team/stops/X659aaa", "https://tec.openplanner.team/stops/X672aja"], ["https://tec.openplanner.team/stops/LCxhall2", "https://tec.openplanner.team/stops/LCxhame2"], ["https://tec.openplanner.team/stops/Csuegli", "https://tec.openplanner.team/stops/Csygare3"], ["https://tec.openplanner.team/stops/X639ama", "https://tec.openplanner.team/stops/X639amb"], ["https://tec.openplanner.team/stops/N501axb", "https://tec.openplanner.team/stops/N501cva"], ["https://tec.openplanner.team/stops/LMXempe1", "https://tec.openplanner.team/stops/LVPduvi2"], ["https://tec.openplanner.team/stops/H4ty308c", "https://tec.openplanner.team/stops/H4ty338b"], ["https://tec.openplanner.team/stops/Ctuyser1", "https://tec.openplanner.team/stops/Ctuyser2"], ["https://tec.openplanner.team/stops/LWLeg--1", "https://tec.openplanner.team/stops/LWLeg--2"], ["https://tec.openplanner.team/stops/H4mt218a", "https://tec.openplanner.team/stops/H4mt218b"], ["https://tec.openplanner.team/stops/N577abb", "https://tec.openplanner.team/stops/N577aeb"], ["https://tec.openplanner.team/stops/Llieg--1", "https://tec.openplanner.team/stops/Llieg--2"], ["https://tec.openplanner.team/stops/LrcarsT3", "https://tec.openplanner.team/stops/Lrclant1"], ["https://tec.openplanner.team/stops/Bnivgpl2", "https://tec.openplanner.team/stops/Bnivgpl3"], ["https://tec.openplanner.team/stops/H2sb224b", "https://tec.openplanner.team/stops/H2sb232b"], ["https://tec.openplanner.team/stops/X757aea", "https://tec.openplanner.team/stops/X757ana"], ["https://tec.openplanner.team/stops/LAMceri1", "https://tec.openplanner.team/stops/LAMvert1"], ["https://tec.openplanner.team/stops/H1hv130b", "https://tec.openplanner.team/stops/H1hv132b"], ["https://tec.openplanner.team/stops/N539aaa", "https://tec.openplanner.team/stops/N539adc"], ["https://tec.openplanner.team/stops/Bbchcbl1", "https://tec.openplanner.team/stops/Bbchm381"], ["https://tec.openplanner.team/stops/X604aha", "https://tec.openplanner.team/stops/X604aia"], ["https://tec.openplanner.team/stops/Cctkais2", "https://tec.openplanner.team/stops/Ccupays1"], ["https://tec.openplanner.team/stops/Ccychco1", "https://tec.openplanner.team/stops/NH01ama"], ["https://tec.openplanner.team/stops/Lsnfont2", "https://tec.openplanner.team/stops/Lsnvand1"], ["https://tec.openplanner.team/stops/Lghwall*", "https://tec.openplanner.team/stops/Llocime1"], ["https://tec.openplanner.team/stops/H4bo115a", "https://tec.openplanner.team/stops/H4bo116b"], ["https://tec.openplanner.team/stops/Cjumade3", "https://tec.openplanner.team/stops/CMmade2"], ["https://tec.openplanner.team/stops/H1ms273a", "https://tec.openplanner.team/stops/H1ms290a"], ["https://tec.openplanner.team/stops/N351agb", "https://tec.openplanner.team/stops/N351anb"], ["https://tec.openplanner.team/stops/NL74aha", "https://tec.openplanner.team/stops/NL74aib"], ["https://tec.openplanner.team/stops/H2sb227b", "https://tec.openplanner.team/stops/H2sb238b"], ["https://tec.openplanner.team/stops/N118anc", "https://tec.openplanner.team/stops/N118aza"], ["https://tec.openplanner.team/stops/N110afa", "https://tec.openplanner.team/stops/N110aha"], ["https://tec.openplanner.team/stops/Cmmjami1", "https://tec.openplanner.team/stops/Cmygbbo2"], ["https://tec.openplanner.team/stops/X811ahb", "https://tec.openplanner.team/stops/X811aia"], ["https://tec.openplanner.team/stops/LNAbouh1", "https://tec.openplanner.team/stops/LNAbouh2"], ["https://tec.openplanner.team/stops/X224abb", "https://tec.openplanner.team/stops/X394aaa"], ["https://tec.openplanner.team/stops/LKmmelo2", "https://tec.openplanner.team/stops/LMOfrel1"], ["https://tec.openplanner.team/stops/LGe4bra2", "https://tec.openplanner.team/stops/LGesent1"], ["https://tec.openplanner.team/stops/LCPcomb2", "https://tec.openplanner.team/stops/LCPvign2"], ["https://tec.openplanner.team/stops/N543bpa", "https://tec.openplanner.team/stops/N543cnb"], ["https://tec.openplanner.team/stops/Cwfmonu1", "https://tec.openplanner.team/stops/Cwfmonu2"], ["https://tec.openplanner.team/stops/Llgamer1", "https://tec.openplanner.team/stops/Llglair1"], ["https://tec.openplanner.team/stops/N340aga", "https://tec.openplanner.team/stops/N340agb"], ["https://tec.openplanner.team/stops/H1ms252d", "https://tec.openplanner.team/stops/H1ms926a"], ["https://tec.openplanner.team/stops/H4ne137a", "https://tec.openplanner.team/stops/H4ne137b"], ["https://tec.openplanner.team/stops/Baudhde2", "https://tec.openplanner.team/stops/Baudulb1"], ["https://tec.openplanner.team/stops/H4mt216a", "https://tec.openplanner.team/stops/H4mt217a"], ["https://tec.openplanner.team/stops/Cgzchen1", "https://tec.openplanner.team/stops/Cgzchen2"], ["https://tec.openplanner.team/stops/LSWscie2", "https://tec.openplanner.team/stops/LSZsolw2"], ["https://tec.openplanner.team/stops/LFOchpl1", "https://tec.openplanner.team/stops/LHGleje2"], ["https://tec.openplanner.team/stops/LROgeuz2", "https://tec.openplanner.team/stops/LWabela2"], ["https://tec.openplanner.team/stops/H5el100a", "https://tec.openplanner.team/stops/H5rx132a"], ["https://tec.openplanner.team/stops/Lhrferr2", "https://tec.openplanner.team/stops/Lhrmilm2"], ["https://tec.openplanner.team/stops/LlSzoll2", "https://tec.openplanner.team/stops/LrOtria2"], ["https://tec.openplanner.team/stops/LaAhaup1", "https://tec.openplanner.team/stops/LaApost1"], ["https://tec.openplanner.team/stops/X811aga", "https://tec.openplanner.team/stops/X811agb"], ["https://tec.openplanner.team/stops/LOucarr1", "https://tec.openplanner.team/stops/LOumaro1"], ["https://tec.openplanner.team/stops/H1fl141a", "https://tec.openplanner.team/stops/H1fl370a"], ["https://tec.openplanner.team/stops/X952aab", "https://tec.openplanner.team/stops/X952ama"], ["https://tec.openplanner.team/stops/Lvelieg2", "https://tec.openplanner.team/stops/Lverdep1"], ["https://tec.openplanner.team/stops/H4ty273b", "https://tec.openplanner.team/stops/H4ty333b"], ["https://tec.openplanner.team/stops/N543bna", "https://tec.openplanner.team/stops/N543bob"], ["https://tec.openplanner.team/stops/Bllnfla3", "https://tec.openplanner.team/stops/Bllngal1"], ["https://tec.openplanner.team/stops/Cgyblob1", "https://tec.openplanner.team/stops/Cgylouv2"], ["https://tec.openplanner.team/stops/LSPbass1", "https://tec.openplanner.team/stops/LSPcomm1"], ["https://tec.openplanner.team/stops/X663aca", "https://tec.openplanner.team/stops/X663afb"], ["https://tec.openplanner.team/stops/N509ara", "https://tec.openplanner.team/stops/N509aub"], ["https://tec.openplanner.team/stops/X919akd", "https://tec.openplanner.team/stops/X919ala"], ["https://tec.openplanner.team/stops/Lromerl1", "https://tec.openplanner.team/stops/Lromerl2"], ["https://tec.openplanner.team/stops/Bgligra1", "https://tec.openplanner.team/stops/Btlbtbe2"], ["https://tec.openplanner.team/stops/LeYauto1", "https://tec.openplanner.team/stops/LeYmuhl2"], ["https://tec.openplanner.team/stops/N337aeb", "https://tec.openplanner.team/stops/N337agb"], ["https://tec.openplanner.team/stops/H4hu116b", "https://tec.openplanner.team/stops/H4ld125b"], ["https://tec.openplanner.team/stops/LLUreut1", "https://tec.openplanner.team/stops/LLUreut2"], ["https://tec.openplanner.team/stops/Lsnlhon2", "https://tec.openplanner.team/stops/Lsnmala4"], ["https://tec.openplanner.team/stops/N501btb", "https://tec.openplanner.team/stops/N501bwb"], ["https://tec.openplanner.team/stops/H1so135b", "https://tec.openplanner.team/stops/H1so139c"], ["https://tec.openplanner.team/stops/Lgreg--1", "https://tec.openplanner.team/stops/Lgrside1"], ["https://tec.openplanner.team/stops/H4hq129b", "https://tec.openplanner.team/stops/H4hq133a"], ["https://tec.openplanner.team/stops/X738adb", "https://tec.openplanner.team/stops/X754aja"], ["https://tec.openplanner.team/stops/X652ada", "https://tec.openplanner.team/stops/X669abd"], ["https://tec.openplanner.team/stops/X717aea", "https://tec.openplanner.team/stops/X717aeb"], ["https://tec.openplanner.team/stops/NR38acb", "https://tec.openplanner.team/stops/NR38adb"], ["https://tec.openplanner.team/stops/Bjaurgo1", "https://tec.openplanner.team/stops/NR30aab"], ["https://tec.openplanner.team/stops/Bgrmfon2", "https://tec.openplanner.team/stops/N522atb"], ["https://tec.openplanner.team/stops/N503aka", "https://tec.openplanner.team/stops/N579aab"], ["https://tec.openplanner.team/stops/N505anb", "https://tec.openplanner.team/stops/N512aeb"], ["https://tec.openplanner.team/stops/Lgrdefr1", "https://tec.openplanner.team/stops/Ljucano1"], ["https://tec.openplanner.team/stops/Lgrcrac2", "https://tec.openplanner.team/stops/Lgrstou2"], ["https://tec.openplanner.team/stops/N248aaa", "https://tec.openplanner.team/stops/N248aab"], ["https://tec.openplanner.team/stops/Btubbsc1", "https://tec.openplanner.team/stops/Btubcvi1"], ["https://tec.openplanner.team/stops/Bcbqpon1", "https://tec.openplanner.team/stops/Bcbqpon2"], ["https://tec.openplanner.team/stops/LAuvici1", "https://tec.openplanner.team/stops/LWRpl--2"], ["https://tec.openplanner.team/stops/H1at109b", "https://tec.openplanner.team/stops/H1fy119a"], ["https://tec.openplanner.team/stops/LmI82--1", "https://tec.openplanner.team/stops/LmI82--2"], ["https://tec.openplanner.team/stops/H2hl112b", "https://tec.openplanner.team/stops/H2hl113b"], ["https://tec.openplanner.team/stops/LEScarr1", "https://tec.openplanner.team/stops/LEScarr2"], ["https://tec.openplanner.team/stops/X638aaa", "https://tec.openplanner.team/stops/X638adb"], ["https://tec.openplanner.team/stops/Lghflot1", "https://tec.openplanner.team/stops/Lghflot4"], ["https://tec.openplanner.team/stops/Bjausan1", "https://tec.openplanner.team/stops/NR21aja"], ["https://tec.openplanner.team/stops/X650ada", "https://tec.openplanner.team/stops/X650aga"], ["https://tec.openplanner.team/stops/LAWkone2", "https://tec.openplanner.team/stops/Llofort1"], ["https://tec.openplanner.team/stops/LSegott1", "https://tec.openplanner.team/stops/LSerout2"], ["https://tec.openplanner.team/stops/LWAaxhe2", "https://tec.openplanner.team/stops/LWAwila1"], ["https://tec.openplanner.team/stops/LMAcime2", "https://tec.openplanner.team/stops/LMAstei1"], ["https://tec.openplanner.team/stops/Bbgevil1", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://tec.openplanner.team/stops/Bchapir2", "https://tec.openplanner.team/stops/Bcrnnra1"], ["https://tec.openplanner.team/stops/Cctchav1", "https://tec.openplanner.team/stops/Cctwaut2"], ["https://tec.openplanner.team/stops/H4be102b", "https://tec.openplanner.team/stops/H4be104b"], ["https://tec.openplanner.team/stops/H4jm116a", "https://tec.openplanner.team/stops/H4jm118a"], ["https://tec.openplanner.team/stops/Lgrcour1", "https://tec.openplanner.team/stops/Llgcorn3"], ["https://tec.openplanner.team/stops/LLeec--1", "https://tec.openplanner.team/stops/X547acb"], ["https://tec.openplanner.team/stops/H4te253a", "https://tec.openplanner.team/stops/H4te261a"], ["https://tec.openplanner.team/stops/H4be106a", "https://tec.openplanner.team/stops/H4be112b"], ["https://tec.openplanner.team/stops/X804aqa", "https://tec.openplanner.team/stops/X804arb"], ["https://tec.openplanner.team/stops/Cmmcver1", "https://tec.openplanner.team/stops/Cmmpast2"], ["https://tec.openplanner.team/stops/LBgbaga3", "https://tec.openplanner.team/stops/LBglign2"], ["https://tec.openplanner.team/stops/N102abb", "https://tec.openplanner.team/stops/N151ajd"], ["https://tec.openplanner.team/stops/Blanmde1", "https://tec.openplanner.team/stops/Bwaakap1"], ["https://tec.openplanner.team/stops/Cflsabl1", "https://tec.openplanner.team/stops/Cflvxsa1"], ["https://tec.openplanner.team/stops/Bgrmver3", "https://tec.openplanner.team/stops/N522aka"], ["https://tec.openplanner.team/stops/Cbfbies1", "https://tec.openplanner.team/stops/Cctvill2"], ["https://tec.openplanner.team/stops/H1ml109a", "https://tec.openplanner.team/stops/H1ml109b"], ["https://tec.openplanner.team/stops/LPLcarr1", "https://tec.openplanner.team/stops/LPLline2"], ["https://tec.openplanner.team/stops/LESmart2", "https://tec.openplanner.team/stops/LPLec131"], ["https://tec.openplanner.team/stops/LSLhall*", "https://tec.openplanner.team/stops/LVStige2"], ["https://tec.openplanner.team/stops/Bhmmbog1", "https://tec.openplanner.team/stops/Bhmmjco1"], ["https://tec.openplanner.team/stops/N118aia", "https://tec.openplanner.team/stops/N155akb"], ["https://tec.openplanner.team/stops/LTamag2", "https://tec.openplanner.team/stops/LTaouch2"], ["https://tec.openplanner.team/stops/Lstauna2", "https://tec.openplanner.team/stops/Lstbota2"], ["https://tec.openplanner.team/stops/H4al100b", "https://tec.openplanner.team/stops/H4ch115b"], ["https://tec.openplanner.team/stops/LPurech1", "https://tec.openplanner.team/stops/LPutins1"], ["https://tec.openplanner.team/stops/X659aka", "https://tec.openplanner.team/stops/X659aua"], ["https://tec.openplanner.team/stops/Cmx3arb1", "https://tec.openplanner.team/stops/Cmyvesa3"], ["https://tec.openplanner.team/stops/X938ada", "https://tec.openplanner.team/stops/X950abb"], ["https://tec.openplanner.team/stops/X769aoa", "https://tec.openplanner.team/stops/X769apa"], ["https://tec.openplanner.team/stops/Bgembhe1", "https://tec.openplanner.team/stops/Blnzcar1"], ["https://tec.openplanner.team/stops/X358acb", "https://tec.openplanner.team/stops/X358adb"], ["https://tec.openplanner.team/stops/N110aba", "https://tec.openplanner.team/stops/N110aca"], ["https://tec.openplanner.team/stops/LwMzoll1", "https://tec.openplanner.team/stops/X764afb"], ["https://tec.openplanner.team/stops/LLAchpl1", "https://tec.openplanner.team/stops/LLAchpl2"], ["https://tec.openplanner.team/stops/LWaanto2", "https://tec.openplanner.team/stops/LWalibo1"], ["https://tec.openplanner.team/stops/Crebrux1", "https://tec.openplanner.team/stops/Creluth2"], ["https://tec.openplanner.team/stops/Bhalker1", "https://tec.openplanner.team/stops/Bhalomo2"], ["https://tec.openplanner.team/stops/Cmlipsm2", "https://tec.openplanner.team/stops/Cmlstni1"], ["https://tec.openplanner.team/stops/X670alb", "https://tec.openplanner.team/stops/X670amb"], ["https://tec.openplanner.team/stops/LJvbane1", "https://tec.openplanner.team/stops/LJvmart1"], ["https://tec.openplanner.team/stops/Bnivros2", "https://tec.openplanner.team/stops/Bnivvri1"], ["https://tec.openplanner.team/stops/Cfmgrmo1", "https://tec.openplanner.team/stops/Cfojoli2"], ["https://tec.openplanner.team/stops/H4mo172a", "https://tec.openplanner.team/stops/H4mo186a"], ["https://tec.openplanner.team/stops/X725aua", "https://tec.openplanner.team/stops/X725aub"], ["https://tec.openplanner.team/stops/H2jo161c", "https://tec.openplanner.team/stops/H2jo161d"], ["https://tec.openplanner.team/stops/Cfccol2", "https://tec.openplanner.team/stops/Cfcpier2"], ["https://tec.openplanner.team/stops/N501ahb", "https://tec.openplanner.team/stops/N501aia"], ["https://tec.openplanner.team/stops/Bnivche1", "https://tec.openplanner.team/stops/Bnivsnu2"], ["https://tec.openplanner.team/stops/LBNgarn2", "https://tec.openplanner.team/stops/LeUgutl1"], ["https://tec.openplanner.team/stops/X804ajb", "https://tec.openplanner.team/stops/X804ara"], ["https://tec.openplanner.team/stops/LkRrauw1", "https://tec.openplanner.team/stops/LrOgara3"], ["https://tec.openplanner.team/stops/LkEherg1", "https://tec.openplanner.team/stops/LkEzoll1"], ["https://tec.openplanner.team/stops/Cchbrou1", "https://tec.openplanner.team/stops/Cchfort1"], ["https://tec.openplanner.team/stops/LLegern1", "https://tec.openplanner.team/stops/X548adb"], ["https://tec.openplanner.team/stops/H1fa121a", "https://tec.openplanner.team/stops/H1vb143a"], ["https://tec.openplanner.team/stops/H1ms268b", "https://tec.openplanner.team/stops/H1ms308a"], ["https://tec.openplanner.team/stops/LeUsch%C3%B61", "https://tec.openplanner.team/stops/LeUvoul1"], ["https://tec.openplanner.team/stops/X746aka", "https://tec.openplanner.team/stops/X746akb"], ["https://tec.openplanner.team/stops/LMImc--1", "https://tec.openplanner.team/stops/LMImc--2"], ["https://tec.openplanner.team/stops/LLbpt--1", "https://tec.openplanner.team/stops/LLbpt--2"], ["https://tec.openplanner.team/stops/X937aaa", "https://tec.openplanner.team/stops/X937abb"], ["https://tec.openplanner.team/stops/H4ef162a", "https://tec.openplanner.team/stops/H4ef163b"], ["https://tec.openplanner.team/stops/LmNstaa1", "https://tec.openplanner.team/stops/LmNsv871"], ["https://tec.openplanner.team/stops/X614aob", "https://tec.openplanner.team/stops/X614apb"], ["https://tec.openplanner.team/stops/LATlena1", "https://tec.openplanner.team/stops/LATpatu1"], ["https://tec.openplanner.team/stops/Brebmtg2", "https://tec.openplanner.team/stops/Brebras1"], ["https://tec.openplanner.team/stops/H4ne132d", "https://tec.openplanner.team/stops/H4ne139b"], ["https://tec.openplanner.team/stops/H4ty342b", "https://tec.openplanner.team/stops/H4ty349a"], ["https://tec.openplanner.team/stops/LBThaut1", "https://tec.openplanner.team/stops/Lprmana4"], ["https://tec.openplanner.team/stops/N501axb", "https://tec.openplanner.team/stops/N501bba"], ["https://tec.openplanner.team/stops/N517afb", "https://tec.openplanner.team/stops/N517agb"], ["https://tec.openplanner.team/stops/Caindsa1", "https://tec.openplanner.team/stops/Caioign3"], ["https://tec.openplanner.team/stops/X663arb", "https://tec.openplanner.team/stops/X663awb"], ["https://tec.openplanner.team/stops/LHSfexh1", "https://tec.openplanner.team/stops/LHSvina1"], ["https://tec.openplanner.team/stops/H4ty272a", "https://tec.openplanner.team/stops/H4ty338b"], ["https://tec.openplanner.team/stops/LHhmohe1", "https://tec.openplanner.team/stops/NL68aeb"], ["https://tec.openplanner.team/stops/X897aaa", "https://tec.openplanner.team/stops/X898anb"], ["https://tec.openplanner.team/stops/X615acb", "https://tec.openplanner.team/stops/X615aub"], ["https://tec.openplanner.team/stops/X620ada", "https://tec.openplanner.team/stops/X620adb"], ["https://tec.openplanner.team/stops/H1bg110a", "https://tec.openplanner.team/stops/H1bg110b"], ["https://tec.openplanner.team/stops/Blasclo1", "https://tec.openplanner.team/stops/Blasclo2"], ["https://tec.openplanner.team/stops/Bcbqa362", "https://tec.openplanner.team/stops/Bcbqcha2"], ["https://tec.openplanner.team/stops/LSOladr1", "https://tec.openplanner.team/stops/LSOladr2"], ["https://tec.openplanner.team/stops/Canfief1", "https://tec.openplanner.team/stops/Canfief2"], ["https://tec.openplanner.team/stops/Lsebuil1", "https://tec.openplanner.team/stops/Lsecime1"], ["https://tec.openplanner.team/stops/Berncim4", "https://tec.openplanner.team/stops/Bernegl3"], ["https://tec.openplanner.team/stops/N141aea", "https://tec.openplanner.team/stops/N141ama"], ["https://tec.openplanner.team/stops/X762ada", "https://tec.openplanner.team/stops/X762aeb"], ["https://tec.openplanner.team/stops/Lvehomb2", "https://tec.openplanner.team/stops/Lvemahe2"], ["https://tec.openplanner.team/stops/H2hg144a", "https://tec.openplanner.team/stops/H2hg144b"], ["https://tec.openplanner.team/stops/LAbbass2", "https://tec.openplanner.team/stops/LRtrame1"], ["https://tec.openplanner.team/stops/N232bdb", "https://tec.openplanner.team/stops/N232bib"], ["https://tec.openplanner.team/stops/X949adb", "https://tec.openplanner.team/stops/X949afb"], ["https://tec.openplanner.team/stops/N170adb", "https://tec.openplanner.team/stops/N170aeb"], ["https://tec.openplanner.team/stops/H4ca124b", "https://tec.openplanner.team/stops/H4my120b"], ["https://tec.openplanner.team/stops/H1wa162a", "https://tec.openplanner.team/stops/H1wg125a"], ["https://tec.openplanner.team/stops/Clupcfe2", "https://tec.openplanner.team/stops/Cluplve3"], ["https://tec.openplanner.team/stops/Lsmdepo1", "https://tec.openplanner.team/stops/Lvecrot1"], ["https://tec.openplanner.team/stops/Bfelequ1", "https://tec.openplanner.team/stops/Bsengma2"], ["https://tec.openplanner.team/stops/Bnivfra2", "https://tec.openplanner.team/stops/Bnivphs2"], ["https://tec.openplanner.team/stops/N229aaa", "https://tec.openplanner.team/stops/N229acb"], ["https://tec.openplanner.team/stops/Beclaub1", "https://tec.openplanner.team/stops/H2ec102a"], ["https://tec.openplanner.team/stops/X615bga", "https://tec.openplanner.team/stops/X615bgb"], ["https://tec.openplanner.team/stops/Cvlcen2", "https://tec.openplanner.team/stops/NH21ada"], ["https://tec.openplanner.team/stops/Lmlpata*", "https://tec.openplanner.team/stops/Lmltrix*"], ["https://tec.openplanner.team/stops/Ljhcarr1", "https://tec.openplanner.team/stops/Ljhsart2"], ["https://tec.openplanner.team/stops/LrEdic11", "https://tec.openplanner.team/stops/LrEkirc2"], ["https://tec.openplanner.team/stops/H1si162b", "https://tec.openplanner.team/stops/H1si167a"], ["https://tec.openplanner.team/stops/H1ro131b", "https://tec.openplanner.team/stops/H1ro132b"], ["https://tec.openplanner.team/stops/X773agb", "https://tec.openplanner.team/stops/X773ahb"], ["https://tec.openplanner.team/stops/LLUadze2", "https://tec.openplanner.team/stops/LLUdeig2"], ["https://tec.openplanner.team/stops/X717aab", "https://tec.openplanner.team/stops/X717abb"], ["https://tec.openplanner.team/stops/H5el102a", "https://tec.openplanner.team/stops/H5el107a"], ["https://tec.openplanner.team/stops/Bbaucba1", "https://tec.openplanner.team/stops/Bbaulil1"], ["https://tec.openplanner.team/stops/N506aqa", "https://tec.openplanner.team/stops/N506asb"], ["https://tec.openplanner.team/stops/Llglonh2", "https://tec.openplanner.team/stops/LlgPTAV3"], ["https://tec.openplanner.team/stops/Livpost1", "https://tec.openplanner.team/stops/Livpost2"], ["https://tec.openplanner.team/stops/Bhevcur1", "https://tec.openplanner.team/stops/Bhvlpla2"], ["https://tec.openplanner.team/stops/N501aba", "https://tec.openplanner.team/stops/N501aea"], ["https://tec.openplanner.team/stops/Bbaubon1", "https://tec.openplanner.team/stops/Bbsifml2"], ["https://tec.openplanner.team/stops/N551aca", "https://tec.openplanner.team/stops/N551aec"], ["https://tec.openplanner.team/stops/LBHgile2", "https://tec.openplanner.team/stops/LBHhuyn2"], ["https://tec.openplanner.team/stops/Lvethea1", "https://tec.openplanner.team/stops/Lvevict1"], ["https://tec.openplanner.team/stops/LmFdorf1", "https://tec.openplanner.team/stops/LwEdorf1"], ["https://tec.openplanner.team/stops/Cbflong1", "https://tec.openplanner.team/stops/NC02abb"], ["https://tec.openplanner.team/stops/Cchbaza1", "https://tec.openplanner.team/stops/Cchbaza2"], ["https://tec.openplanner.team/stops/LVAflat2", "https://tec.openplanner.team/stops/LVAgemm2"], ["https://tec.openplanner.team/stops/N102aca", "https://tec.openplanner.team/stops/N103adb"], ["https://tec.openplanner.team/stops/H1by101b", "https://tec.openplanner.team/stops/H1by106b"], ["https://tec.openplanner.team/stops/LMOeg--1", "https://tec.openplanner.team/stops/LMOhero1"], ["https://tec.openplanner.team/stops/H1ro138b", "https://tec.openplanner.team/stops/H1ro141a"], ["https://tec.openplanner.team/stops/N221ada", "https://tec.openplanner.team/stops/X222afb"], ["https://tec.openplanner.team/stops/Lbrchur2", "https://tec.openplanner.team/stops/Llgmara2"], ["https://tec.openplanner.team/stops/Bwatcha2", "https://tec.openplanner.team/stops/Bwatfau1"], ["https://tec.openplanner.team/stops/Lhragri2", "https://tec.openplanner.team/stops/Lhrbrou1"], ["https://tec.openplanner.team/stops/X780ata", "https://tec.openplanner.team/stops/X780atb"], ["https://tec.openplanner.team/stops/Bnivga51", "https://tec.openplanner.team/stops/Bnivrwi2"], ["https://tec.openplanner.team/stops/LENarde1", "https://tec.openplanner.team/stops/LENmc--1"], ["https://tec.openplanner.team/stops/X638ajb", "https://tec.openplanner.team/stops/X638ala"], ["https://tec.openplanner.team/stops/LPOwaut1", "https://tec.openplanner.team/stops/LPOwaut2"], ["https://tec.openplanner.team/stops/H1ob331a", "https://tec.openplanner.team/stops/H1ob331b"], ["https://tec.openplanner.team/stops/Ltibell2", "https://tec.openplanner.team/stops/Lticoq-2"], ["https://tec.openplanner.team/stops/X982aub", "https://tec.openplanner.team/stops/X982cab"], ["https://tec.openplanner.team/stops/H4ga160a", "https://tec.openplanner.team/stops/H4ha169b"], ["https://tec.openplanner.team/stops/N301anb", "https://tec.openplanner.team/stops/N302afa"], ["https://tec.openplanner.team/stops/N506bjb", "https://tec.openplanner.team/stops/N506bka"], ["https://tec.openplanner.team/stops/H2go113b", "https://tec.openplanner.team/stops/H2go120a"], ["https://tec.openplanner.team/stops/Llghugo1", "https://tec.openplanner.team/stops/Llgpire1"], ["https://tec.openplanner.team/stops/LMechpl1", "https://tec.openplanner.team/stops/LMechpl2"], ["https://tec.openplanner.team/stops/LETfort3", "https://tec.openplanner.team/stops/LETfort4"], ["https://tec.openplanner.team/stops/Ccymabo2", "https://tec.openplanner.team/stops/Ccyrmon1"], ["https://tec.openplanner.team/stops/N260aea", "https://tec.openplanner.team/stops/N260afa"], ["https://tec.openplanner.team/stops/LhLbalt1", "https://tec.openplanner.team/stops/LmEdorf2"], ["https://tec.openplanner.team/stops/X725bba", "https://tec.openplanner.team/stops/X725bbb"], ["https://tec.openplanner.team/stops/LATcorn2", "https://tec.openplanner.team/stops/LATcorp2"], ["https://tec.openplanner.team/stops/N539ada", "https://tec.openplanner.team/stops/N539adb"], ["https://tec.openplanner.team/stops/LAChann1", "https://tec.openplanner.team/stops/NL74aea"], ["https://tec.openplanner.team/stops/H1ms259a", "https://tec.openplanner.team/stops/H1ms300a"], ["https://tec.openplanner.team/stops/H4mx119c", "https://tec.openplanner.team/stops/H4mx120a"], ["https://tec.openplanner.team/stops/Lsmjalh2", "https://tec.openplanner.team/stops/Lsmrwan2"], ["https://tec.openplanner.team/stops/Lghgoll2", "https://tec.openplanner.team/stops/Lghprea4"], ["https://tec.openplanner.team/stops/LAMpirk1", "https://tec.openplanner.team/stops/LAmshel2"], ["https://tec.openplanner.team/stops/Cfrcoop2", "https://tec.openplanner.team/stops/Cfrmon4"], ["https://tec.openplanner.team/stops/LTErest1", "https://tec.openplanner.team/stops/LVu40--2"], ["https://tec.openplanner.team/stops/N219acb", "https://tec.openplanner.team/stops/N219afb"], ["https://tec.openplanner.team/stops/H4mx116b", "https://tec.openplanner.team/stops/H4po126b"], ["https://tec.openplanner.team/stops/Bwatric2", "https://tec.openplanner.team/stops/Bwatvco2"], ["https://tec.openplanner.team/stops/N218abb", "https://tec.openplanner.team/stops/N218aeb"], ["https://tec.openplanner.team/stops/LSseg--2", "https://tec.openplanner.team/stops/LSsmond2"], ["https://tec.openplanner.team/stops/X636avb", "https://tec.openplanner.team/stops/X636bha"], ["https://tec.openplanner.team/stops/LAYathe2", "https://tec.openplanner.team/stops/LAYgare1"], ["https://tec.openplanner.team/stops/X831aaa", "https://tec.openplanner.team/stops/X831acb"], ["https://tec.openplanner.team/stops/X907ada", "https://tec.openplanner.team/stops/X907adb"], ["https://tec.openplanner.team/stops/Llgware1", "https://tec.openplanner.team/stops/Llgware2"], ["https://tec.openplanner.team/stops/X738ada", "https://tec.openplanner.team/stops/X738adb"], ["https://tec.openplanner.team/stops/Ccychap1", "https://tec.openplanner.team/stops/Ccychap2"], ["https://tec.openplanner.team/stops/Lpeatel1", "https://tec.openplanner.team/stops/Lpeptle1"], ["https://tec.openplanner.team/stops/Llofort1", "https://tec.openplanner.team/stops/Llofort2"], ["https://tec.openplanner.team/stops/H1ma237a", "https://tec.openplanner.team/stops/H1ob333b"], ["https://tec.openplanner.team/stops/Lhrdron2", "https://tec.openplanner.team/stops/Lhrsimo1"], ["https://tec.openplanner.team/stops/N425adb", "https://tec.openplanner.team/stops/N425afb"], ["https://tec.openplanner.team/stops/LLNcime1", "https://tec.openplanner.team/stops/LLNcime2"], ["https://tec.openplanner.team/stops/X922ama", "https://tec.openplanner.team/stops/X923aka"], ["https://tec.openplanner.team/stops/H4pq115a", "https://tec.openplanner.team/stops/H4pq118b"], ["https://tec.openplanner.team/stops/Brsggar1", "https://tec.openplanner.team/stops/Brsggar2"], ["https://tec.openplanner.team/stops/N573aca", "https://tec.openplanner.team/stops/N573adb"], ["https://tec.openplanner.team/stops/Bgzddge4", "https://tec.openplanner.team/stops/Bgzdpis2"], ["https://tec.openplanner.team/stops/LAWhein4", "https://tec.openplanner.team/stops/LAWroug1"], ["https://tec.openplanner.team/stops/N260acb", "https://tec.openplanner.team/stops/N270aaa"], ["https://tec.openplanner.team/stops/H1eu103a", "https://tec.openplanner.team/stops/H1sb151a"], ["https://tec.openplanner.team/stops/LaLkabi2", "https://tec.openplanner.team/stops/LmAkirc1"], ["https://tec.openplanner.team/stops/X743aaa", "https://tec.openplanner.team/stops/X743aab"], ["https://tec.openplanner.team/stops/X636aca", "https://tec.openplanner.team/stops/X636ada"], ["https://tec.openplanner.team/stops/Cmyland1", "https://tec.openplanner.team/stops/Cmyland4"], ["https://tec.openplanner.team/stops/Louairl1", "https://tec.openplanner.team/stops/Lscstan2"], ["https://tec.openplanner.team/stops/X651aaa", "https://tec.openplanner.team/stops/X651aba"], ["https://tec.openplanner.team/stops/X986aca", "https://tec.openplanner.team/stops/X986ada"], ["https://tec.openplanner.team/stops/LaMmark2", "https://tec.openplanner.team/stops/LaMpark1"], ["https://tec.openplanner.team/stops/Bbgnpla1", "https://tec.openplanner.team/stops/Bbgnton1"], ["https://tec.openplanner.team/stops/LHCcroy1", "https://tec.openplanner.team/stops/LHChoek3"], ["https://tec.openplanner.team/stops/X818aha", "https://tec.openplanner.team/stops/X818aia"], ["https://tec.openplanner.team/stops/Bwatlbr2", "https://tec.openplanner.team/stops/Bwatlbs2"], ["https://tec.openplanner.team/stops/LVIastr1", "https://tec.openplanner.team/stops/LVIhv--2"], ["https://tec.openplanner.team/stops/N338ahb", "https://tec.openplanner.team/stops/N338aib"], ["https://tec.openplanner.team/stops/LLmvand1", "https://tec.openplanner.team/stops/LLmvict1"], ["https://tec.openplanner.team/stops/Ccupdes2", "https://tec.openplanner.team/stops/Ccupdes4"], ["https://tec.openplanner.team/stops/LTNegli2", "https://tec.openplanner.team/stops/LTNsarl1"], ["https://tec.openplanner.team/stops/H4va234a", "https://tec.openplanner.team/stops/H4vd230b"], ["https://tec.openplanner.team/stops/H1au111a", "https://tec.openplanner.team/stops/H1au111b"], ["https://tec.openplanner.team/stops/H2gy101b", "https://tec.openplanner.team/stops/H2gy109a"], ["https://tec.openplanner.team/stops/LGLchap2", "https://tec.openplanner.team/stops/LGLecol2"], ["https://tec.openplanner.team/stops/N534aeb", "https://tec.openplanner.team/stops/N553aob"], ["https://tec.openplanner.team/stops/LMastat4", "https://tec.openplanner.team/stops/LTolijn*"], ["https://tec.openplanner.team/stops/LVEeg--1", "https://tec.openplanner.team/stops/LVEhali2"], ["https://tec.openplanner.team/stops/NL78ada", "https://tec.openplanner.team/stops/NL78aea"], ["https://tec.openplanner.team/stops/LSPguer1", "https://tec.openplanner.team/stops/LSPvigi2"], ["https://tec.openplanner.team/stops/N501jsa", "https://tec.openplanner.team/stops/N501kjb"], ["https://tec.openplanner.team/stops/X663atb", "https://tec.openplanner.team/stops/X663aua"], ["https://tec.openplanner.team/stops/Bwlhpec2", "https://tec.openplanner.team/stops/Bwlhpma1"], ["https://tec.openplanner.team/stops/LENengi2", "https://tec.openplanner.team/stops/LRArami2"], ["https://tec.openplanner.team/stops/X917acb", "https://tec.openplanner.team/stops/X917afb"], ["https://tec.openplanner.team/stops/Bcbqgar1", "https://tec.openplanner.team/stops/Bcbqufo1"], ["https://tec.openplanner.team/stops/Cgycorv1", "https://tec.openplanner.team/stops/Cgyobse2"], ["https://tec.openplanner.team/stops/LBzvill2", "https://tec.openplanner.team/stops/LVBmonu4"], ["https://tec.openplanner.team/stops/LVSeg--2", "https://tec.openplanner.team/stops/LVStige2"], ["https://tec.openplanner.team/stops/X512aia", "https://tec.openplanner.team/stops/X595aad"], ["https://tec.openplanner.team/stops/X907agb", "https://tec.openplanner.team/stops/X908aoa"], ["https://tec.openplanner.team/stops/N301ada", "https://tec.openplanner.team/stops/N301adb"], ["https://tec.openplanner.team/stops/LBLghuy3", "https://tec.openplanner.team/stops/LCEinst2"], ["https://tec.openplanner.team/stops/N231aha", "https://tec.openplanner.team/stops/N291abb"], ["https://tec.openplanner.team/stops/Cjucouc1", "https://tec.openplanner.team/stops/Clooues1"], ["https://tec.openplanner.team/stops/LWibare2", "https://tec.openplanner.team/stops/LWidepo2"], ["https://tec.openplanner.team/stops/X824aac", "https://tec.openplanner.team/stops/X824ajb"], ["https://tec.openplanner.team/stops/N573ahb", "https://tec.openplanner.team/stops/N573aia"], ["https://tec.openplanner.team/stops/H4bn101b", "https://tec.openplanner.team/stops/H4ws159a"], ["https://tec.openplanner.team/stops/Bnivvri1", "https://tec.openplanner.team/stops/Bnivvri2"], ["https://tec.openplanner.team/stops/X781aga", "https://tec.openplanner.team/stops/X781aha"], ["https://tec.openplanner.team/stops/X672adb", "https://tec.openplanner.team/stops/X672aob"], ["https://tec.openplanner.team/stops/H4te249a", "https://tec.openplanner.team/stops/H4te249b"], ["https://tec.openplanner.team/stops/Cmmptno1", "https://tec.openplanner.team/stops/Cmmptno2"], ["https://tec.openplanner.team/stops/Bgnvoha1", "https://tec.openplanner.team/stops/Bgnvoha4"], ["https://tec.openplanner.team/stops/Lceviei2", "https://tec.openplanner.team/stops/Lcewilm1"], ["https://tec.openplanner.team/stops/Cgomart1", "https://tec.openplanner.team/stops/Cgoobse1"], ["https://tec.openplanner.team/stops/H1cu114b", "https://tec.openplanner.team/stops/H1cu132a"], ["https://tec.openplanner.team/stops/Bquebut1", "https://tec.openplanner.team/stops/Bquebut2"], ["https://tec.openplanner.team/stops/NC14aca", "https://tec.openplanner.team/stops/NC44aba"], ["https://tec.openplanner.team/stops/H1hn203b", "https://tec.openplanner.team/stops/H1ms312a"], ["https://tec.openplanner.team/stops/H4ss153b", "https://tec.openplanner.team/stops/H4ss154b"], ["https://tec.openplanner.team/stops/H4ss153a", "https://tec.openplanner.team/stops/H4ss154a"], ["https://tec.openplanner.team/stops/X633adc", "https://tec.openplanner.team/stops/X633ala"], ["https://tec.openplanner.team/stops/LHAbont2", "https://tec.openplanner.team/stops/LHAvall2"], ["https://tec.openplanner.team/stops/LLUcdoy1", "https://tec.openplanner.team/stops/LLUdoya2"], ["https://tec.openplanner.team/stops/Cpceclu1", "https://tec.openplanner.team/stops/Cpclibe1"], ["https://tec.openplanner.team/stops/Llglimb2", "https://tec.openplanner.team/stops/Llgpire2"], ["https://tec.openplanner.team/stops/Cfaetoi2", "https://tec.openplanner.team/stops/Cpl4bra2"], ["https://tec.openplanner.team/stops/LaMgeme*", "https://tec.openplanner.team/stops/LaMpark2"], ["https://tec.openplanner.team/stops/LbTkran2", "https://tec.openplanner.team/stops/LbTmuhl1"], ["https://tec.openplanner.team/stops/X937aga", "https://tec.openplanner.team/stops/X937alb"], ["https://tec.openplanner.team/stops/X615asb", "https://tec.openplanner.team/stops/X615ata"], ["https://tec.openplanner.team/stops/LXhhaka1", "https://tec.openplanner.team/stops/LXhjupr1"], ["https://tec.openplanner.team/stops/Cfocant1", "https://tec.openplanner.team/stops/Cforpet2"], ["https://tec.openplanner.team/stops/X790ama", "https://tec.openplanner.team/stops/X793aga"], ["https://tec.openplanner.team/stops/X750azb", "https://tec.openplanner.team/stops/X750bab"], ["https://tec.openplanner.team/stops/H1wi152a", "https://tec.openplanner.team/stops/H1wi152b"], ["https://tec.openplanner.team/stops/X718aea", "https://tec.openplanner.team/stops/X718ahb"], ["https://tec.openplanner.team/stops/H2sv213a", "https://tec.openplanner.team/stops/H2sv219b"], ["https://tec.openplanner.team/stops/LLOchpl1", "https://tec.openplanner.team/stops/LLOnand1"], ["https://tec.openplanner.team/stops/H2hg147b", "https://tec.openplanner.team/stops/H2hg158b"], ["https://tec.openplanner.team/stops/Bbst4br2", "https://tec.openplanner.team/stops/Bbstpon2"], ["https://tec.openplanner.team/stops/N523aaa", "https://tec.openplanner.team/stops/N523aab"], ["https://tec.openplanner.team/stops/Ltichif1", "https://tec.openplanner.team/stops/Ltimarr1"], ["https://tec.openplanner.team/stops/Bbgnvel2", "https://tec.openplanner.team/stops/N530aea"], ["https://tec.openplanner.team/stops/LRIhous1", "https://tec.openplanner.team/stops/LVIlore1"], ["https://tec.openplanner.team/stops/Creshau1", "https://tec.openplanner.team/stops/Creshau2"], ["https://tec.openplanner.team/stops/Barcast2", "https://tec.openplanner.team/stops/Bgzdcwa1"], ["https://tec.openplanner.team/stops/X398ada", "https://tec.openplanner.team/stops/X398aea"], ["https://tec.openplanner.team/stops/LsHlenz2", "https://tec.openplanner.team/stops/LwYkreu1"], ["https://tec.openplanner.team/stops/LhEbruc2", "https://tec.openplanner.team/stops/LhEcolo2"], ["https://tec.openplanner.team/stops/LLAbure1", "https://tec.openplanner.team/stops/LLAvi652"], ["https://tec.openplanner.team/stops/X775ada", "https://tec.openplanner.team/stops/X775ama"], ["https://tec.openplanner.team/stops/LsHkreu4", "https://tec.openplanner.team/stops/LsHlenz1"], ["https://tec.openplanner.team/stops/Cgostex2", "https://tec.openplanner.team/stops/Cralimi2"], ["https://tec.openplanner.team/stops/H4ty347a", "https://tec.openplanner.team/stops/H4ty347b"], ["https://tec.openplanner.team/stops/Ccobinc1", "https://tec.openplanner.team/stops/Csoperi1"], ["https://tec.openplanner.team/stops/LbAhull2", "https://tec.openplanner.team/stops/LhLdorf1"], ["https://tec.openplanner.team/stops/LLycent*", "https://tec.openplanner.team/stops/LWLhagi2"], ["https://tec.openplanner.team/stops/LGorysa1", "https://tec.openplanner.team/stops/LNEbo472"], ["https://tec.openplanner.team/stops/Lcalaro2", "https://tec.openplanner.team/stops/Lrofont1"], ["https://tec.openplanner.team/stops/Lhrespe2", "https://tec.openplanner.team/stops/Lhrstev1"], ["https://tec.openplanner.team/stops/N217adb", "https://tec.openplanner.team/stops/N232adb"], ["https://tec.openplanner.team/stops/Lbbgare2", "https://tec.openplanner.team/stops/Lcepepi1"], ["https://tec.openplanner.team/stops/LkAkirc2", "https://tec.openplanner.team/stops/LkAmess2"], ["https://tec.openplanner.team/stops/Clddeve2", "https://tec.openplanner.team/stops/Cmoecol2"], ["https://tec.openplanner.team/stops/Ccaegli1", "https://tec.openplanner.team/stops/Ccaegli3"], ["https://tec.openplanner.team/stops/Csabrun1", "https://tec.openplanner.team/stops/Csasncb1"], ["https://tec.openplanner.team/stops/Bgerprg2", "https://tec.openplanner.team/stops/Bgrhpos2"], ["https://tec.openplanner.team/stops/Bohngai2", "https://tec.openplanner.team/stops/Bohnmon2"], ["https://tec.openplanner.team/stops/Lvepala5", "https://tec.openplanner.team/stops/Lvesomm3"], ["https://tec.openplanner.team/stops/N501fjb", "https://tec.openplanner.team/stops/N501mez"], ["https://tec.openplanner.team/stops/Bnodeco1", "https://tec.openplanner.team/stops/Bnodegl2"], ["https://tec.openplanner.team/stops/H5bl117a", "https://tec.openplanner.team/stops/H5bl117c"], ["https://tec.openplanner.team/stops/H5gr137a", "https://tec.openplanner.team/stops/H5gr137b"], ["https://tec.openplanner.team/stops/LWDcime1", "https://tec.openplanner.team/stops/LWDfuma1"], ["https://tec.openplanner.team/stops/H4ka178a", "https://tec.openplanner.team/stops/H4mt214b"], ["https://tec.openplanner.team/stops/LWepost3", "https://tec.openplanner.team/stops/LWexhav1"], ["https://tec.openplanner.team/stops/LbTcarm1", "https://tec.openplanner.team/stops/LbUmors1"], ["https://tec.openplanner.team/stops/H4ru235b", "https://tec.openplanner.team/stops/H4ru245b"], ["https://tec.openplanner.team/stops/X878aba", "https://tec.openplanner.team/stops/X878acb"], ["https://tec.openplanner.team/stops/Ctubpos3", "https://tec.openplanner.team/stops/Ctubpos4"], ["https://tec.openplanner.team/stops/LSInd--2", "https://tec.openplanner.team/stops/LSIvieu2"], ["https://tec.openplanner.team/stops/Lhrstev2", "https://tec.openplanner.team/stops/Lhrwigi2"], ["https://tec.openplanner.team/stops/LkEhaag1", "https://tec.openplanner.team/stops/LlNlont2"], ["https://tec.openplanner.team/stops/LTNeau-2", "https://tec.openplanner.team/stops/LTNegli1"], ["https://tec.openplanner.team/stops/N331aga", "https://tec.openplanner.team/stops/N331aha"], ["https://tec.openplanner.team/stops/LFRcoun2", "https://tec.openplanner.team/stops/LSTchen2"], ["https://tec.openplanner.team/stops/LBSkann1", "https://tec.openplanner.team/stops/LBSkann2"], ["https://tec.openplanner.team/stops/Cmtrbla1", "https://tec.openplanner.team/stops/Cmtyern1"], ["https://tec.openplanner.team/stops/Louwuid1", "https://tec.openplanner.team/stops/Louwuid2"], ["https://tec.openplanner.team/stops/H4bv146a", "https://tec.openplanner.team/stops/H5at111a"], ["https://tec.openplanner.team/stops/LVnetan2", "https://tec.openplanner.team/stops/LVnourt1"], ["https://tec.openplanner.team/stops/X615awa", "https://tec.openplanner.team/stops/X615bgb"], ["https://tec.openplanner.team/stops/H1nm139b", "https://tec.openplanner.team/stops/H4gr108b"], ["https://tec.openplanner.team/stops/LHHlomb2", "https://tec.openplanner.team/stops/LHHronh2"], ["https://tec.openplanner.team/stops/Bwatfia2", "https://tec.openplanner.team/stops/Bwatgar3"], ["https://tec.openplanner.team/stops/H1ms272a", "https://tec.openplanner.team/stops/H1ss352a"], ["https://tec.openplanner.team/stops/Bbchume2", "https://tec.openplanner.team/stops/Bcbqtub1"], ["https://tec.openplanner.team/stops/Cmmegli1", "https://tec.openplanner.team/stops/Cmmegli2"], ["https://tec.openplanner.team/stops/Brsg7fo1", "https://tec.openplanner.team/stops/Brsgfon1"], ["https://tec.openplanner.team/stops/H4hu117a", "https://tec.openplanner.team/stops/H4hu120b"], ["https://tec.openplanner.team/stops/Bclgapi2", "https://tec.openplanner.team/stops/Bclgpla2"], ["https://tec.openplanner.team/stops/Lbrboul2", "https://tec.openplanner.team/stops/Lbrfoid3"], ["https://tec.openplanner.team/stops/H4oe147b", "https://tec.openplanner.team/stops/H4oe152b"], ["https://tec.openplanner.team/stops/H2hg158a", "https://tec.openplanner.team/stops/H2hg158b"], ["https://tec.openplanner.team/stops/LFRsp1-1", "https://tec.openplanner.team/stops/LSPmalc1"], ["https://tec.openplanner.team/stops/Canrobe1", "https://tec.openplanner.team/stops/Canterr1"], ["https://tec.openplanner.team/stops/LHHlomb1", "https://tec.openplanner.team/stops/LSkkeri2"], ["https://tec.openplanner.team/stops/H1br123b", "https://tec.openplanner.team/stops/H1ha183a"], ["https://tec.openplanner.team/stops/Lseconc1", "https://tec.openplanner.team/stops/Lsehaut1"], ["https://tec.openplanner.team/stops/N211ara", "https://tec.openplanner.team/stops/N211arb"], ["https://tec.openplanner.team/stops/LHHpt--2", "https://tec.openplanner.team/stops/LSkkeri2"], ["https://tec.openplanner.team/stops/LLVe75-1", "https://tec.openplanner.team/stops/LLVerri1"], ["https://tec.openplanner.team/stops/LBStec-2", "https://tec.openplanner.team/stops/LHStrez1"], ["https://tec.openplanner.team/stops/X723ama", "https://tec.openplanner.team/stops/X733aab"], ["https://tec.openplanner.team/stops/N501ana", "https://tec.openplanner.team/stops/N501aqa"], ["https://tec.openplanner.team/stops/N311adb", "https://tec.openplanner.team/stops/N311aeb"], ["https://tec.openplanner.team/stops/Bhevhha2", "https://tec.openplanner.team/stops/Bleunaa2"], ["https://tec.openplanner.team/stops/Cmomalg1", "https://tec.openplanner.team/stops/Cmovies1"], ["https://tec.openplanner.team/stops/X746ada", "https://tec.openplanner.team/stops/X747ajb"], ["https://tec.openplanner.team/stops/X992aac", "https://tec.openplanner.team/stops/X992aad"], ["https://tec.openplanner.team/stops/N245abb", "https://tec.openplanner.team/stops/N248adb"], ["https://tec.openplanner.team/stops/H4fr393a", "https://tec.openplanner.team/stops/H4ka188b"], ["https://tec.openplanner.team/stops/N507aeb", "https://tec.openplanner.team/stops/N507apb"], ["https://tec.openplanner.team/stops/X342aeb", "https://tec.openplanner.team/stops/X342afa"], ["https://tec.openplanner.team/stops/Bottcli2", "https://tec.openplanner.team/stops/Bottegl4"], ["https://tec.openplanner.team/stops/X670aba", "https://tec.openplanner.team/stops/X670aca"], ["https://tec.openplanner.team/stops/LMFmoul2", "https://tec.openplanner.team/stops/Lqbecco1"], ["https://tec.openplanner.team/stops/LFyWarc1", "https://tec.openplanner.team/stops/LWargeu1"], ["https://tec.openplanner.team/stops/LRtrame1", "https://tec.openplanner.team/stops/LTechpl1"], ["https://tec.openplanner.team/stops/H4ty282a", "https://tec.openplanner.team/stops/H4ty332c"], ["https://tec.openplanner.team/stops/H4eh102a", "https://tec.openplanner.team/stops/H4wg121a"], ["https://tec.openplanner.team/stops/Cfaauln2", "https://tec.openplanner.team/stops/Cfabaty2"], ["https://tec.openplanner.team/stops/N337aea", "https://tec.openplanner.team/stops/N385ada"], ["https://tec.openplanner.team/stops/Bhoeboo1", "https://tec.openplanner.team/stops/Bhoemel2"], ["https://tec.openplanner.team/stops/Bbsifml1", "https://tec.openplanner.team/stops/Bnivlpa1"], ["https://tec.openplanner.team/stops/LPRbayb2", "https://tec.openplanner.team/stops/LTRgare4"], ["https://tec.openplanner.team/stops/Bspkdon1", "https://tec.openplanner.team/stops/H1mk109b"], ["https://tec.openplanner.team/stops/H4ka176b", "https://tec.openplanner.team/stops/H4ka181a"], ["https://tec.openplanner.team/stops/H1so135c", "https://tec.openplanner.team/stops/H1so145b"], ["https://tec.openplanner.team/stops/Bbsicas2", "https://tec.openplanner.team/stops/Bbsihau2"], ["https://tec.openplanner.team/stops/LSSeg--2", "https://tec.openplanner.team/stops/LSSfrai1"], ["https://tec.openplanner.team/stops/Llgfail1", "https://tec.openplanner.team/stops/Llghenr1"], ["https://tec.openplanner.team/stops/Cgxvvel1", "https://tec.openplanner.team/stops/Cgxvvel2"], ["https://tec.openplanner.team/stops/NH21aca", "https://tec.openplanner.team/stops/NH21ada"], ["https://tec.openplanner.team/stops/N544aeb", "https://tec.openplanner.team/stops/N549aea"], ["https://tec.openplanner.team/stops/CMgill1", "https://tec.openplanner.team/stops/CMgill2"], ["https://tec.openplanner.team/stops/Lvecote2", "https://tec.openplanner.team/stops/Lvefluc2"], ["https://tec.openplanner.team/stops/N550aka", "https://tec.openplanner.team/stops/N550akb"], ["https://tec.openplanner.team/stops/X921aca", "https://tec.openplanner.team/stops/X922ahb"], ["https://tec.openplanner.team/stops/LMOlens2", "https://tec.openplanner.team/stops/LMOpiss1"], ["https://tec.openplanner.team/stops/LJAboli1", "https://tec.openplanner.team/stops/LJAboli2"], ["https://tec.openplanner.team/stops/Bettcha1", "https://tec.openplanner.team/stops/Bettcha2"], ["https://tec.openplanner.team/stops/Ljuathe2", "https://tec.openplanner.team/stops/Ljujaur1"], ["https://tec.openplanner.team/stops/LLocruc2", "https://tec.openplanner.team/stops/LRcsilo1"], ["https://tec.openplanner.team/stops/X606aab", "https://tec.openplanner.team/stops/X647aaa"], ["https://tec.openplanner.team/stops/LREraph1", "https://tec.openplanner.team/stops/LREraph3"], ["https://tec.openplanner.team/stops/Lflmaxi4", "https://tec.openplanner.team/stops/Lflrhot2"], ["https://tec.openplanner.team/stops/X947acb", "https://tec.openplanner.team/stops/X947afb"], ["https://tec.openplanner.team/stops/NC23afb", "https://tec.openplanner.team/stops/NC23agb"], ["https://tec.openplanner.team/stops/N501kma", "https://tec.openplanner.team/stops/N501kmy"], ["https://tec.openplanner.team/stops/LCxbeau2", "https://tec.openplanner.team/stops/LCxeg--2"], ["https://tec.openplanner.team/stops/LAMhaut2", "https://tec.openplanner.team/stops/LAMwall1"], ["https://tec.openplanner.team/stops/X713afa", "https://tec.openplanner.team/stops/X713amb"], ["https://tec.openplanner.team/stops/H4jm117a", "https://tec.openplanner.team/stops/H4ry141a"], ["https://tec.openplanner.team/stops/Baeggar2", "https://tec.openplanner.team/stops/NR38aba"], ["https://tec.openplanner.team/stops/X780agb", "https://tec.openplanner.team/stops/X780atb"], ["https://tec.openplanner.team/stops/LJEchat3", "https://tec.openplanner.team/stops/LJEverd1"], ["https://tec.openplanner.team/stops/LBGroma1", "https://tec.openplanner.team/stops/LBGvill1"], ["https://tec.openplanner.team/stops/X898aca", "https://tec.openplanner.team/stops/X898adb"], ["https://tec.openplanner.team/stops/Cjufauv1", "https://tec.openplanner.team/stops/Cjuvign1"], ["https://tec.openplanner.team/stops/H1et100a", "https://tec.openplanner.team/stops/H1hh117b"], ["https://tec.openplanner.team/stops/Lvelimi2", "https://tec.openplanner.team/stops/Lvexhav1"], ["https://tec.openplanner.team/stops/LTRryta1", "https://tec.openplanner.team/stops/LTRryta2"], ["https://tec.openplanner.team/stops/N507aba", "https://tec.openplanner.team/stops/N507alb"], ["https://tec.openplanner.team/stops/H1le118b", "https://tec.openplanner.team/stops/H1le120a"], ["https://tec.openplanner.team/stops/Ccyga3", "https://tec.openplanner.team/stops/NH01acb"], ["https://tec.openplanner.team/stops/H1hr125a", "https://tec.openplanner.team/stops/H1hr125b"], ["https://tec.openplanner.team/stops/LFypfei1", "https://tec.openplanner.team/stops/LwYkreu2"], ["https://tec.openplanner.team/stops/Lfhbail2", "https://tec.openplanner.team/stops/Lfhhaso2"], ["https://tec.openplanner.team/stops/Bblajap1", "https://tec.openplanner.team/stops/Blilwit1"], ["https://tec.openplanner.team/stops/LNCloui1", "https://tec.openplanner.team/stops/LRRchea3"], ["https://tec.openplanner.team/stops/LVsbrux1", "https://tec.openplanner.team/stops/LVsbrux2"], ["https://tec.openplanner.team/stops/H4co133a", "https://tec.openplanner.team/stops/H4co146a"], ["https://tec.openplanner.team/stops/Bwatmco1", "https://tec.openplanner.team/stops/Bwatras2"], ["https://tec.openplanner.team/stops/Clrecol2", "https://tec.openplanner.team/stops/Clrhava1"], ["https://tec.openplanner.team/stops/NL74aga", "https://tec.openplanner.team/stops/NL74aia"], ["https://tec.openplanner.team/stops/Cstcent1", "https://tec.openplanner.team/stops/Cstgare2"], ["https://tec.openplanner.team/stops/H4tp145b", "https://tec.openplanner.team/stops/H4tp147b"], ["https://tec.openplanner.team/stops/N512aga", "https://tec.openplanner.team/stops/N512agd"], ["https://tec.openplanner.team/stops/Lanrask1", "https://tec.openplanner.team/stops/Lrctec-2"], ["https://tec.openplanner.team/stops/Lmlbaro2", "https://tec.openplanner.team/stops/Lmlpech1"], ["https://tec.openplanner.team/stops/N118apa", "https://tec.openplanner.team/stops/N118aqb"], ["https://tec.openplanner.team/stops/X695aea", "https://tec.openplanner.team/stops/X695aha"], ["https://tec.openplanner.team/stops/Lthgros1", "https://tec.openplanner.team/stops/Lthgros2"], ["https://tec.openplanner.team/stops/LAwec--1", "https://tec.openplanner.team/stops/LMvrabo1"], ["https://tec.openplanner.team/stops/LSZarze4", "https://tec.openplanner.team/stops/LSZsolw3"], ["https://tec.openplanner.team/stops/X750axb", "https://tec.openplanner.team/stops/X750aya"], ["https://tec.openplanner.team/stops/X901aja", "https://tec.openplanner.team/stops/X901apb"], ["https://tec.openplanner.team/stops/LvA12--3", "https://tec.openplanner.team/stops/LvA12--4"], ["https://tec.openplanner.team/stops/H1ag106a", "https://tec.openplanner.team/stops/H1qv114b"], ["https://tec.openplanner.team/stops/Ldineuf1", "https://tec.openplanner.team/stops/Ldipiss2"], ["https://tec.openplanner.team/stops/Benggar1", "https://tec.openplanner.team/stops/Bengvma2"], ["https://tec.openplanner.team/stops/LmHbien1", "https://tec.openplanner.team/stops/LmHvenn1"], ["https://tec.openplanner.team/stops/LVTeg--2", "https://tec.openplanner.team/stops/LVTforg2"], ["https://tec.openplanner.team/stops/LFocent2", "https://tec.openplanner.team/stops/LGOdelv1"], ["https://tec.openplanner.team/stops/H4ty381b", "https://tec.openplanner.team/stops/H4ty383a"], ["https://tec.openplanner.team/stops/Cjubien1", "https://tec.openplanner.team/stops/Cjuplco2"], ["https://tec.openplanner.team/stops/N558amc", "https://tec.openplanner.team/stops/N558anb"], ["https://tec.openplanner.team/stops/N149aib", "https://tec.openplanner.team/stops/N149akb"], ["https://tec.openplanner.team/stops/X644aca", "https://tec.openplanner.team/stops/X644adb"], ["https://tec.openplanner.team/stops/NL57ahb", "https://tec.openplanner.team/stops/NL57aka"], ["https://tec.openplanner.team/stops/N534amh", "https://tec.openplanner.team/stops/N543agb"], ["https://tec.openplanner.team/stops/Llglonh1", "https://tec.openplanner.team/stops/LlgOPER6"], ["https://tec.openplanner.team/stops/LXobaty1", "https://tec.openplanner.team/stops/LXofans1"], ["https://tec.openplanner.team/stops/X370adb", "https://tec.openplanner.team/stops/X850abb"], ["https://tec.openplanner.team/stops/Cdamest1", "https://tec.openplanner.team/stops/CMdamp1"], ["https://tec.openplanner.team/stops/LHUtrin1", "https://tec.openplanner.team/stops/LSecomm2"], ["https://tec.openplanner.team/stops/H4ct111a", "https://tec.openplanner.team/stops/H5bs102d"], ["https://tec.openplanner.team/stops/LBNeu711", "https://tec.openplanner.team/stops/LhEherb2"], ["https://tec.openplanner.team/stops/X979aia", "https://tec.openplanner.team/stops/X979ajb"], ["https://tec.openplanner.team/stops/X641aba", "https://tec.openplanner.team/stops/X641ala"], ["https://tec.openplanner.team/stops/H1wa147a", "https://tec.openplanner.team/stops/H1wa150a"], ["https://tec.openplanner.team/stops/Blhumpo1", "https://tec.openplanner.team/stops/Blhumpo4"], ["https://tec.openplanner.team/stops/N510aca", "https://tec.openplanner.team/stops/N510afb"], ["https://tec.openplanner.team/stops/Bgzdn251", "https://tec.openplanner.team/stops/Bgzdn252"], ["https://tec.openplanner.team/stops/X725aya", "https://tec.openplanner.team/stops/X725bba"], ["https://tec.openplanner.team/stops/Lhrlamb1", "https://tec.openplanner.team/stops/Lhrlamb2"], ["https://tec.openplanner.team/stops/Cwfcule1", "https://tec.openplanner.team/stops/Cwfzola1"], ["https://tec.openplanner.team/stops/Lfhrogn2", "https://tec.openplanner.team/stops/Ljerose3"], ["https://tec.openplanner.team/stops/N109acb", "https://tec.openplanner.team/stops/N109aia"], ["https://tec.openplanner.team/stops/Cblcent2", "https://tec.openplanner.team/stops/Cmbcime3"], ["https://tec.openplanner.team/stops/X307aab", "https://tec.openplanner.team/stops/X307abb"], ["https://tec.openplanner.team/stops/H1pa111a", "https://tec.openplanner.team/stops/H1pa120b"], ["https://tec.openplanner.team/stops/Bcsemar2", "https://tec.openplanner.team/stops/Bsmgmas1"], ["https://tec.openplanner.team/stops/LNEgaul1", "https://tec.openplanner.team/stops/LNEolne1"], ["https://tec.openplanner.team/stops/H1vb142b", "https://tec.openplanner.team/stops/H3bi108a"], ["https://tec.openplanner.team/stops/H4fr139a", "https://tec.openplanner.team/stops/H4fr145b"], ["https://tec.openplanner.team/stops/X601bla", "https://tec.openplanner.team/stops/X612abb"], ["https://tec.openplanner.team/stops/LAascie2", "https://tec.openplanner.team/stops/X261ada"], ["https://tec.openplanner.team/stops/Blinbru1", "https://tec.openplanner.team/stops/Bwaak102"], ["https://tec.openplanner.team/stops/Croplom2", "https://tec.openplanner.team/stops/Croplom5"], ["https://tec.openplanner.team/stops/N543aha", "https://tec.openplanner.team/stops/N543aya"], ["https://tec.openplanner.team/stops/Cmlrbru1", "https://tec.openplanner.team/stops/Cmlrbru2"], ["https://tec.openplanner.team/stops/LSMgare1", "https://tec.openplanner.team/stops/LSMlier2"], ["https://tec.openplanner.team/stops/LAUabat1", "https://tec.openplanner.team/stops/LAUbour3"], ["https://tec.openplanner.team/stops/H1br132a", "https://tec.openplanner.team/stops/H1br134b"], ["https://tec.openplanner.team/stops/LaAbush*", "https://tec.openplanner.team/stops/LaAelis1"], ["https://tec.openplanner.team/stops/N547aha", "https://tec.openplanner.team/stops/N548ayb"], ["https://tec.openplanner.team/stops/LOcgdro3", "https://tec.openplanner.team/stops/LOcgdro4"], ["https://tec.openplanner.team/stops/X822aka", "https://tec.openplanner.team/stops/X822akb"], ["https://tec.openplanner.team/stops/H2hl111b", "https://tec.openplanner.team/stops/H2sv220a"], ["https://tec.openplanner.team/stops/Bwatpas1", "https://tec.openplanner.team/stops/Bwatpas2"], ["https://tec.openplanner.team/stops/H2jo163a", "https://tec.openplanner.team/stops/H2jo163b"], ["https://tec.openplanner.team/stops/Lantonn2", "https://tec.openplanner.team/stops/Lrchype2"], ["https://tec.openplanner.team/stops/CMmoul2", "https://tec.openplanner.team/stops/Cmomoul3"], ["https://tec.openplanner.team/stops/H2ma210a", "https://tec.openplanner.team/stops/H2ma210b"], ["https://tec.openplanner.team/stops/LSNchen1", "https://tec.openplanner.team/stops/LSNchen3"], ["https://tec.openplanner.team/stops/Cnacent3", "https://tec.openplanner.team/stops/Cnacout2"], ["https://tec.openplanner.team/stops/H4pe124a", "https://tec.openplanner.team/stops/H4pe127b"], ["https://tec.openplanner.team/stops/X992aaa", "https://tec.openplanner.team/stops/X992aac"], ["https://tec.openplanner.team/stops/N553ala", "https://tec.openplanner.team/stops/N553ama"], ["https://tec.openplanner.team/stops/X804aoa", "https://tec.openplanner.team/stops/X818aaa"], ["https://tec.openplanner.team/stops/LeUhutt1", "https://tec.openplanner.team/stops/LeUwetz1"], ["https://tec.openplanner.team/stops/Cflsabl2", "https://tec.openplanner.team/stops/Cflvxsa2"], ["https://tec.openplanner.team/stops/N501esy", "https://tec.openplanner.team/stops/N501nez"], ["https://tec.openplanner.team/stops/X879ala", "https://tec.openplanner.team/stops/X879ama"], ["https://tec.openplanner.team/stops/Cnabult4", "https://tec.openplanner.team/stops/Cnaplbu1"], ["https://tec.openplanner.team/stops/X923anb", "https://tec.openplanner.team/stops/X923apb"], ["https://tec.openplanner.team/stops/LLrc_ip4", "https://tec.openplanner.team/stops/LLrc1651"], ["https://tec.openplanner.team/stops/N205aca", "https://tec.openplanner.team/stops/N205ada"], ["https://tec.openplanner.team/stops/X695aia", "https://tec.openplanner.team/stops/X695aja"], ["https://tec.openplanner.team/stops/Cbuegl1", "https://tec.openplanner.team/stops/Cbuegl2"], ["https://tec.openplanner.team/stops/Lstchim1", "https://tec.openplanner.team/stops/Lstchim2"], ["https://tec.openplanner.team/stops/LHGtong1", "https://tec.openplanner.team/stops/LXhjupr2"], ["https://tec.openplanner.team/stops/X663aua", "https://tec.openplanner.team/stops/X663ava"], ["https://tec.openplanner.team/stops/LJAchat1", "https://tec.openplanner.team/stops/LJAmari1"], ["https://tec.openplanner.team/stops/LElgerd2", "https://tec.openplanner.team/stops/LWZponh2"], ["https://tec.openplanner.team/stops/LWagare*", "https://tec.openplanner.team/stops/LWamass2"], ["https://tec.openplanner.team/stops/H4co146a", "https://tec.openplanner.team/stops/H4co148b"], ["https://tec.openplanner.team/stops/Cmaegal1", "https://tec.openplanner.team/stops/Cmobeau2"], ["https://tec.openplanner.team/stops/X658afa", "https://tec.openplanner.team/stops/X659aja"], ["https://tec.openplanner.team/stops/Cjudewe1", "https://tec.openplanner.team/stops/Cjuhden1"], ["https://tec.openplanner.team/stops/Bgdhpco2", "https://tec.openplanner.team/stops/Bpthrsp1"], ["https://tec.openplanner.team/stops/X979ada", "https://tec.openplanner.team/stops/X979afa"], ["https://tec.openplanner.team/stops/X651aba", "https://tec.openplanner.team/stops/X651abb"], ["https://tec.openplanner.team/stops/LMOelva3", "https://tec.openplanner.team/stops/LMOelva4"], ["https://tec.openplanner.team/stops/X802ana", "https://tec.openplanner.team/stops/X802aoa"], ["https://tec.openplanner.team/stops/Bbsifmo1", "https://tec.openplanner.team/stops/Bhtihau2"], ["https://tec.openplanner.team/stops/Ldimont2", "https://tec.openplanner.team/stops/Lvegrap2"], ["https://tec.openplanner.team/stops/X850ala", "https://tec.openplanner.team/stops/X850alb"], ["https://tec.openplanner.team/stops/LsVsimo1", "https://tec.openplanner.team/stops/LsVsimo2"], ["https://tec.openplanner.team/stops/LAascie2", "https://tec.openplanner.team/stops/X223acb"], ["https://tec.openplanner.team/stops/X613acb", "https://tec.openplanner.team/stops/X614bdb"], ["https://tec.openplanner.team/stops/X773ajb", "https://tec.openplanner.team/stops/X954agb"], ["https://tec.openplanner.team/stops/X621ada", "https://tec.openplanner.team/stops/X621adb"], ["https://tec.openplanner.team/stops/Blanmde1", "https://tec.openplanner.team/stops/Blanmde2"], ["https://tec.openplanner.team/stops/Bronrch1", "https://tec.openplanner.team/stops/Bronrch2"], ["https://tec.openplanner.team/stops/Llmdela1", "https://tec.openplanner.team/stops/Llmdela2"], ["https://tec.openplanner.team/stops/H2ma203a", "https://tec.openplanner.team/stops/H2ma210b"], ["https://tec.openplanner.team/stops/X717afb", "https://tec.openplanner.team/stops/X717agb"], ["https://tec.openplanner.team/stops/N548acc", "https://tec.openplanner.team/stops/N548amb"], ["https://tec.openplanner.team/stops/X713aeb", "https://tec.openplanner.team/stops/X713aha"], ["https://tec.openplanner.team/stops/Cpcarse2", "https://tec.openplanner.team/stops/Cpcbrig2"], ["https://tec.openplanner.team/stops/X398agb", "https://tec.openplanner.team/stops/X999ada"], ["https://tec.openplanner.team/stops/Bwavdmo1", "https://tec.openplanner.team/stops/Bwavdmo3"], ["https://tec.openplanner.team/stops/Ljemabo1", "https://tec.openplanner.team/stops/Ljewale3"], ["https://tec.openplanner.team/stops/LlgguilA", "https://tec.openplanner.team/stops/LlgguilC"], ["https://tec.openplanner.team/stops/N501bua", "https://tec.openplanner.team/stops/N501bub"], ["https://tec.openplanner.team/stops/LPLhest1", "https://tec.openplanner.team/stops/LPLhest2"], ["https://tec.openplanner.team/stops/Bperalv2", "https://tec.openplanner.team/stops/Bperrma2"], ["https://tec.openplanner.team/stops/Cchdigu2", "https://tec.openplanner.team/stops/Cchdigu4"], ["https://tec.openplanner.team/stops/Lbogonh3", "https://tec.openplanner.team/stops/Lbogonh4"], ["https://tec.openplanner.team/stops/Ljeegli3", "https://tec.openplanner.team/stops/Ljestat2"], ["https://tec.openplanner.team/stops/X903ada", "https://tec.openplanner.team/stops/X903aeb"], ["https://tec.openplanner.team/stops/H4os221a", "https://tec.openplanner.team/stops/H4os221b"], ["https://tec.openplanner.team/stops/LLscent2", "https://tec.openplanner.team/stops/LRfcent1"], ["https://tec.openplanner.team/stops/H4mx120a", "https://tec.openplanner.team/stops/H4mx120b"], ["https://tec.openplanner.team/stops/H4ty297a", "https://tec.openplanner.team/stops/H4ty342a"], ["https://tec.openplanner.team/stops/N501bya", "https://tec.openplanner.team/stops/N501chb"], ["https://tec.openplanner.team/stops/H2gy107b", "https://tec.openplanner.team/stops/H2tz117a"], ["https://tec.openplanner.team/stops/NC11arb", "https://tec.openplanner.team/stops/NC44aca"], ["https://tec.openplanner.team/stops/H4hx112b", "https://tec.openplanner.team/stops/H4wa149a"], ["https://tec.openplanner.team/stops/X754aqa", "https://tec.openplanner.team/stops/X754atb"], ["https://tec.openplanner.team/stops/X897afa", "https://tec.openplanner.team/stops/X897afb"], ["https://tec.openplanner.team/stops/Lprpous1", "https://tec.openplanner.team/stops/Lprpous2"], ["https://tec.openplanner.team/stops/H1mk107b", "https://tec.openplanner.team/stops/H1mk123b"], ["https://tec.openplanner.team/stops/X639adb", "https://tec.openplanner.team/stops/X639aea"], ["https://tec.openplanner.team/stops/LORcomb1", "https://tec.openplanner.team/stops/LORmont2"], ["https://tec.openplanner.team/stops/Lhrherm1", "https://tec.openplanner.team/stops/Lmirca-1"], ["https://tec.openplanner.team/stops/Lbbbuse1", "https://tec.openplanner.team/stops/Lbbviad1"], ["https://tec.openplanner.team/stops/H4ma399b", "https://tec.openplanner.team/stops/H4ma419a"], ["https://tec.openplanner.team/stops/X739alb", "https://tec.openplanner.team/stops/X771aba"], ["https://tec.openplanner.team/stops/LBNruns1", "https://tec.openplanner.team/stops/LBNvill6"], ["https://tec.openplanner.team/stops/Bneecha2", "https://tec.openplanner.team/stops/Bneersa2"], ["https://tec.openplanner.team/stops/H1wa143a", "https://tec.openplanner.team/stops/H1wa143b"], ["https://tec.openplanner.team/stops/X734afa", "https://tec.openplanner.team/stops/X734afb"], ["https://tec.openplanner.team/stops/Btieast1", "https://tec.openplanner.team/stops/Btiegar1"], ["https://tec.openplanner.team/stops/N528atb", "https://tec.openplanner.team/stops/N538adb"], ["https://tec.openplanner.team/stops/Cjuchli1", "https://tec.openplanner.team/stops/Cjugend4"], ["https://tec.openplanner.team/stops/X714aaa", "https://tec.openplanner.team/stops/X714aab"], ["https://tec.openplanner.team/stops/Lrecite2", "https://tec.openplanner.team/stops/Lreclou2"], ["https://tec.openplanner.team/stops/X615aja", "https://tec.openplanner.team/stops/X615brb"], ["https://tec.openplanner.team/stops/Lcehipp2", "https://tec.openplanner.team/stops/Lcemalv1"], ["https://tec.openplanner.team/stops/Cchplan1", "https://tec.openplanner.team/stops/Cdalpla2"], ["https://tec.openplanner.team/stops/LBdmarr2", "https://tec.openplanner.team/stops/LLrc1991"], ["https://tec.openplanner.team/stops/LBveg--1", "https://tec.openplanner.team/stops/LBvviem3"], ["https://tec.openplanner.team/stops/X759aaa", "https://tec.openplanner.team/stops/X837akb"], ["https://tec.openplanner.team/stops/Bolgegl2", "https://tec.openplanner.team/stops/Bolgsha1"], ["https://tec.openplanner.team/stops/H5bs103b", "https://tec.openplanner.team/stops/H5pe128b"], ["https://tec.openplanner.team/stops/LCxcham1", "https://tec.openplanner.team/stops/LCxcour2"], ["https://tec.openplanner.team/stops/LLM4rou2", "https://tec.openplanner.team/stops/LLMeg--2"], ["https://tec.openplanner.team/stops/N509bda", "https://tec.openplanner.team/stops/N509bfa"], ["https://tec.openplanner.team/stops/LBY4che1", "https://tec.openplanner.team/stops/LHEelva2"], ["https://tec.openplanner.team/stops/Bgnvcom1", "https://tec.openplanner.team/stops/Bgnvpos2"], ["https://tec.openplanner.team/stops/H1gh144b", "https://tec.openplanner.team/stops/H1je217a"], ["https://tec.openplanner.team/stops/X808alb", "https://tec.openplanner.team/stops/X808ama"], ["https://tec.openplanner.team/stops/LCFchir2", "https://tec.openplanner.team/stops/LCFeg--1"], ["https://tec.openplanner.team/stops/H4vx361b", "https://tec.openplanner.team/stops/H4vx362b"], ["https://tec.openplanner.team/stops/N232caa", "https://tec.openplanner.team/stops/N232cab"], ["https://tec.openplanner.team/stops/Btstche1", "https://tec.openplanner.team/stops/N524ala"], ["https://tec.openplanner.team/stops/X623afb", "https://tec.openplanner.team/stops/X623aga"], ["https://tec.openplanner.team/stops/Bcrnnpl1", "https://tec.openplanner.team/stops/Bcrnnra2"], ["https://tec.openplanner.team/stops/LmCkirc1", "https://tec.openplanner.team/stops/LmCkirc2"], ["https://tec.openplanner.team/stops/X780aaa", "https://tec.openplanner.team/stops/X780aab"], ["https://tec.openplanner.team/stops/Bhancre1", "https://tec.openplanner.team/stops/Bhancre2"], ["https://tec.openplanner.team/stops/LBDfran1", "https://tec.openplanner.team/stops/LFFmarc2"], ["https://tec.openplanner.team/stops/N245aaa", "https://tec.openplanner.team/stops/N245abb"], ["https://tec.openplanner.team/stops/X767aga", "https://tec.openplanner.team/stops/X767aja"], ["https://tec.openplanner.team/stops/N538aib", "https://tec.openplanner.team/stops/N538ala"], ["https://tec.openplanner.team/stops/X607aba", "https://tec.openplanner.team/stops/X647aab"], ["https://tec.openplanner.team/stops/LVEcroi1", "https://tec.openplanner.team/stops/LVEh16-1"], ["https://tec.openplanner.team/stops/X872ada", "https://tec.openplanner.team/stops/X872adb"], ["https://tec.openplanner.team/stops/H4ru238a", "https://tec.openplanner.team/stops/H4ru238b"], ["https://tec.openplanner.team/stops/LLYcalv1", "https://tec.openplanner.team/stops/LLYhoch2"], ["https://tec.openplanner.team/stops/LeLcrem2", "https://tec.openplanner.team/stops/LSoprom2"], ["https://tec.openplanner.team/stops/Cpcplac3", "https://tec.openplanner.team/stops/Cpcplac4"], ["https://tec.openplanner.team/stops/Ccocoup2", "https://tec.openplanner.team/stops/Ccorian1"], ["https://tec.openplanner.team/stops/H5ar100a", "https://tec.openplanner.team/stops/H5ar107a"], ["https://tec.openplanner.team/stops/X826aaa", "https://tec.openplanner.team/stops/X826aha"], ["https://tec.openplanner.team/stops/Lmihale2", "https://tec.openplanner.team/stops/Lmimili1"], ["https://tec.openplanner.team/stops/Llggram2", "https://tec.openplanner.team/stops/Llggram3"], ["https://tec.openplanner.team/stops/Ccutill2", "https://tec.openplanner.team/stops/Ccutill3"], ["https://tec.openplanner.team/stops/X666aib", "https://tec.openplanner.team/stops/X666aka"], ["https://tec.openplanner.team/stops/Cjuvpla2", "https://tec.openplanner.team/stops/Cmacoll1"], ["https://tec.openplanner.team/stops/H2se107a", "https://tec.openplanner.team/stops/H2se109a"], ["https://tec.openplanner.team/stops/Cjubert2", "https://tec.openplanner.team/stops/CMbert1"], ["https://tec.openplanner.team/stops/X733ahb", "https://tec.openplanner.team/stops/X734aka"], ["https://tec.openplanner.team/stops/X618afa", "https://tec.openplanner.team/stops/X618aha"], ["https://tec.openplanner.team/stops/Llgcadr4", "https://tec.openplanner.team/stops/LlgOPER2"], ["https://tec.openplanner.team/stops/X919aja", "https://tec.openplanner.team/stops/X919akd"], ["https://tec.openplanner.team/stops/X595aeb", "https://tec.openplanner.team/stops/X713aaa"], ["https://tec.openplanner.team/stops/LSeaque2", "https://tec.openplanner.team/stops/LSeec--1"], ["https://tec.openplanner.team/stops/H5pe129a", "https://tec.openplanner.team/stops/H5pe144a"], ["https://tec.openplanner.team/stops/X607aib", "https://tec.openplanner.team/stops/X607ajb"], ["https://tec.openplanner.team/stops/Cnalava2", "https://tec.openplanner.team/stops/Cnalava4"], ["https://tec.openplanner.team/stops/X394aeb", "https://tec.openplanner.team/stops/X394afb"], ["https://tec.openplanner.team/stops/H4pl132a", "https://tec.openplanner.team/stops/H4pl135b"], ["https://tec.openplanner.team/stops/H4do101a", "https://tec.openplanner.team/stops/H4do203a"], ["https://tec.openplanner.team/stops/X809abb", "https://tec.openplanner.team/stops/X809ada"], ["https://tec.openplanner.team/stops/N554aha", "https://tec.openplanner.team/stops/N554ahb"], ["https://tec.openplanner.team/stops/N506ata", "https://tec.openplanner.team/stops/N506atb"], ["https://tec.openplanner.team/stops/LJesole2", "https://tec.openplanner.team/stops/LNvrout2"], ["https://tec.openplanner.team/stops/Llgbaya4", "https://tec.openplanner.team/stops/Llgfoy-1"], ["https://tec.openplanner.team/stops/Llojeme1", "https://tec.openplanner.team/stops/Llojeme2"], ["https://tec.openplanner.team/stops/N134aac", "https://tec.openplanner.team/stops/N135azb"], ["https://tec.openplanner.team/stops/LBRmout3", "https://tec.openplanner.team/stops/LBRmout4"], ["https://tec.openplanner.team/stops/Bcrncor1", "https://tec.openplanner.team/stops/Bcrncor2"], ["https://tec.openplanner.team/stops/NR21abc", "https://tec.openplanner.team/stops/NR21aga"], ["https://tec.openplanner.team/stops/LLiforg1", "https://tec.openplanner.team/stops/LLirout2"], ["https://tec.openplanner.team/stops/LrUbrac3", "https://tec.openplanner.team/stops/LrUkult2"], ["https://tec.openplanner.team/stops/Bbiefon2", "https://tec.openplanner.team/stops/Bbiesbi2"], ["https://tec.openplanner.team/stops/H4cl112a", "https://tec.openplanner.team/stops/H4cl114a"], ["https://tec.openplanner.team/stops/X801ama", "https://tec.openplanner.team/stops/X899ajb"], ["https://tec.openplanner.team/stops/LCPbatt2", "https://tec.openplanner.team/stops/LMtcent2"], ["https://tec.openplanner.team/stops/H2mg151a", "https://tec.openplanner.team/stops/H2mg152a"], ["https://tec.openplanner.team/stops/N513ada", "https://tec.openplanner.team/stops/N513adb"], ["https://tec.openplanner.team/stops/Llgblon2", "https://tec.openplanner.team/stops/Llgvero3"], ["https://tec.openplanner.team/stops/LFabraa1", "https://tec.openplanner.team/stops/LFalieg1"], ["https://tec.openplanner.team/stops/Clshafa1", "https://tec.openplanner.team/stops/H1ls110b"], ["https://tec.openplanner.team/stops/X789aca", "https://tec.openplanner.team/stops/X789aib"], ["https://tec.openplanner.team/stops/N514aga", "https://tec.openplanner.team/stops/N514ahb"], ["https://tec.openplanner.team/stops/H1gh149b", "https://tec.openplanner.team/stops/H1ms932a"], ["https://tec.openplanner.team/stops/X606aaa", "https://tec.openplanner.team/stops/X606aab"], ["https://tec.openplanner.team/stops/Boplcsj1", "https://tec.openplanner.team/stops/Boplcsj2"], ["https://tec.openplanner.team/stops/X620aaa", "https://tec.openplanner.team/stops/X620aba"], ["https://tec.openplanner.team/stops/X548aab", "https://tec.openplanner.team/stops/X548afa"], ["https://tec.openplanner.team/stops/LVEdTEC2", "https://tec.openplanner.team/stops/LVEphar1"], ["https://tec.openplanner.team/stops/NL76afa", "https://tec.openplanner.team/stops/NL76afb"], ["https://tec.openplanner.team/stops/X602aba", "https://tec.openplanner.team/stops/X633acb"], ["https://tec.openplanner.team/stops/H4bf106b", "https://tec.openplanner.team/stops/H4bn173a"], ["https://tec.openplanner.team/stops/H2fa100a", "https://tec.openplanner.team/stops/H2fa107b"], ["https://tec.openplanner.team/stops/Lsefore1", "https://tec.openplanner.team/stops/Lsestap2"], ["https://tec.openplanner.team/stops/LBEhaye2", "https://tec.openplanner.team/stops/LLNcime1"], ["https://tec.openplanner.team/stops/N542aeb", "https://tec.openplanner.team/stops/N542afa"], ["https://tec.openplanner.team/stops/LhIfrie1", "https://tec.openplanner.team/stops/LwTzent1"], ["https://tec.openplanner.team/stops/X670aab", "https://tec.openplanner.team/stops/X670abb"], ["https://tec.openplanner.team/stops/Bnodcab2", "https://tec.openplanner.team/stops/Bnodegl2"], ["https://tec.openplanner.team/stops/X738aba", "https://tec.openplanner.team/stops/X738acb"], ["https://tec.openplanner.team/stops/Ccybouc1", "https://tec.openplanner.team/stops/Ccybouc4"], ["https://tec.openplanner.team/stops/LbUmalm1", "https://tec.openplanner.team/stops/LbUvith2"], ["https://tec.openplanner.team/stops/N528abb", "https://tec.openplanner.team/stops/N528ajb"], ["https://tec.openplanner.team/stops/N155aec", "https://tec.openplanner.team/stops/N155aga"], ["https://tec.openplanner.team/stops/N501gfb", "https://tec.openplanner.team/stops/N501jaa"], ["https://tec.openplanner.team/stops/Cbecarr1", "https://tec.openplanner.team/stops/Cbetrie1"], ["https://tec.openplanner.team/stops/LLecolo1", "https://tec.openplanner.team/stops/LLelans1"], ["https://tec.openplanner.team/stops/LHEcruc1", "https://tec.openplanner.team/stops/LHEepur1"], ["https://tec.openplanner.team/stops/X999adb", "https://tec.openplanner.team/stops/X999aub"], ["https://tec.openplanner.team/stops/N510abb", "https://tec.openplanner.team/stops/N521avb"], ["https://tec.openplanner.team/stops/X657aeb", "https://tec.openplanner.team/stops/X742aba"], ["https://tec.openplanner.team/stops/Cobcent2", "https://tec.openplanner.team/stops/Cpcplac2"], ["https://tec.openplanner.team/stops/N232aib", "https://tec.openplanner.team/stops/N232aob"], ["https://tec.openplanner.team/stops/LTRfend1", "https://tec.openplanner.team/stops/LTRfica1"], ["https://tec.openplanner.team/stops/H1lb152a", "https://tec.openplanner.team/stops/H1lb152b"], ["https://tec.openplanner.team/stops/X804bzb", "https://tec.openplanner.team/stops/X805abb"], ["https://tec.openplanner.team/stops/H1ha199b", "https://tec.openplanner.team/stops/H1ha200a"], ["https://tec.openplanner.team/stops/H5rx113a", "https://tec.openplanner.team/stops/H5rx113b"], ["https://tec.openplanner.team/stops/H1bb118a", "https://tec.openplanner.team/stops/H1hi124b"], ["https://tec.openplanner.team/stops/X661bba", "https://tec.openplanner.team/stops/X661bbb"], ["https://tec.openplanner.team/stops/LSLdall1", "https://tec.openplanner.team/stops/LSLdall2"], ["https://tec.openplanner.team/stops/LATgill1", "https://tec.openplanner.team/stops/LHUfali4"], ["https://tec.openplanner.team/stops/LStroch2", "https://tec.openplanner.team/stops/NL80aaa"], ["https://tec.openplanner.team/stops/Cvpcime2", "https://tec.openplanner.team/stops/Cvpsawe2"], ["https://tec.openplanner.team/stops/Lghgoll1", "https://tec.openplanner.team/stops/Lghneuv2"], ["https://tec.openplanner.team/stops/X715agb", "https://tec.openplanner.team/stops/X731aja"], ["https://tec.openplanner.team/stops/H1by107a", "https://tec.openplanner.team/stops/H1by109a"], ["https://tec.openplanner.team/stops/Lfhgare1", "https://tec.openplanner.team/stops/Lfhgare2"], ["https://tec.openplanner.team/stops/LkEl1211", "https://tec.openplanner.team/stops/LlNbusc1"], ["https://tec.openplanner.team/stops/X888adb", "https://tec.openplanner.team/stops/X888aea"], ["https://tec.openplanner.team/stops/X547ahb", "https://tec.openplanner.team/stops/X547aqb"], ["https://tec.openplanner.team/stops/Clddeve2", "https://tec.openplanner.team/stops/Cmychpl2"], ["https://tec.openplanner.team/stops/H4oq224a", "https://tec.openplanner.team/stops/H4ty327a"], ["https://tec.openplanner.team/stops/Lbrmour1", "https://tec.openplanner.team/stops/Llgrull1"], ["https://tec.openplanner.team/stops/Cmonsnc1", "https://tec.openplanner.team/stops/H1ms360a"], ["https://tec.openplanner.team/stops/H2lh129b", "https://tec.openplanner.team/stops/H2mo146a"], ["https://tec.openplanner.team/stops/Cfometr2", "https://tec.openplanner.team/stops/Clrpast2"], ["https://tec.openplanner.team/stops/LmNbirt1", "https://tec.openplanner.team/stops/LmNsv871"], ["https://tec.openplanner.team/stops/Cmlaili2", "https://tec.openplanner.team/stops/Cmlhauc2"], ["https://tec.openplanner.team/stops/X663aac", "https://tec.openplanner.team/stops/X663aba"], ["https://tec.openplanner.team/stops/H1do129a", "https://tec.openplanner.team/stops/H1do129b"], ["https://tec.openplanner.team/stops/X983aba", "https://tec.openplanner.team/stops/X983abb"], ["https://tec.openplanner.team/stops/Bwavrij1", "https://tec.openplanner.team/stops/Bwavrij2"], ["https://tec.openplanner.team/stops/X820adb", "https://tec.openplanner.team/stops/X820agc"], ["https://tec.openplanner.team/stops/Bcbqtub1", "https://tec.openplanner.team/stops/Bitrbvo2"], ["https://tec.openplanner.team/stops/X612aea", "https://tec.openplanner.team/stops/X613adb"], ["https://tec.openplanner.team/stops/X743abb", "https://tec.openplanner.team/stops/X743acb"], ["https://tec.openplanner.team/stops/Cmypela1", "https://tec.openplanner.team/stops/Cmyvesa1"], ["https://tec.openplanner.team/stops/LHdkenn3", "https://tec.openplanner.team/stops/LVnflox1"], ["https://tec.openplanner.team/stops/Cflvxca1", "https://tec.openplanner.team/stops/Cwgcroi2"], ["https://tec.openplanner.team/stops/LWechea1", "https://tec.openplanner.team/stops/LWechea2"], ["https://tec.openplanner.team/stops/Cdamarc1", "https://tec.openplanner.team/stops/Cdamarc2"], ["https://tec.openplanner.team/stops/Bwlhcsr1", "https://tec.openplanner.team/stops/Bwspm372"], ["https://tec.openplanner.team/stops/Bchacen2", "https://tec.openplanner.team/stops/Bchamco2"], ["https://tec.openplanner.team/stops/X925aob", "https://tec.openplanner.team/stops/X949ahb"], ["https://tec.openplanner.team/stops/X982bcb", "https://tec.openplanner.team/stops/X982cbb"], ["https://tec.openplanner.team/stops/LAascie2", "https://tec.openplanner.team/stops/LOCeg--2"], ["https://tec.openplanner.team/stops/X760aab", "https://tec.openplanner.team/stops/X786ajb"], ["https://tec.openplanner.team/stops/X607aeb", "https://tec.openplanner.team/stops/X607aib"], ["https://tec.openplanner.team/stops/H1og133a", "https://tec.openplanner.team/stops/H4os222b"], ["https://tec.openplanner.team/stops/X904afa", "https://tec.openplanner.team/stops/X904afb"], ["https://tec.openplanner.team/stops/LrEkais3", "https://tec.openplanner.team/stops/LrEkais4"], ["https://tec.openplanner.team/stops/X597amb", "https://tec.openplanner.team/stops/X597aqa"], ["https://tec.openplanner.team/stops/X879arb", "https://tec.openplanner.team/stops/X880ahb"], ["https://tec.openplanner.team/stops/Bbldass1", "https://tec.openplanner.team/stops/Bbldmun1"], ["https://tec.openplanner.team/stops/H1lb154a", "https://tec.openplanner.team/stops/H1pa111b"], ["https://tec.openplanner.team/stops/Lmnmart1", "https://tec.openplanner.team/stops/Lmnsech1"], ["https://tec.openplanner.team/stops/LSZarze4", "https://tec.openplanner.team/stops/LWycarr2"], ["https://tec.openplanner.team/stops/Cvssncv1", "https://tec.openplanner.team/stops/N530aab"], ["https://tec.openplanner.team/stops/LTrgibe2", "https://tec.openplanner.team/stops/LTrmort1"], ["https://tec.openplanner.team/stops/Lgdec--1", "https://tec.openplanner.team/stops/Lgdegli1"], ["https://tec.openplanner.team/stops/H4to136b", "https://tec.openplanner.team/stops/H4to139d"], ["https://tec.openplanner.team/stops/X750ana", "https://tec.openplanner.team/stops/X750boa"], ["https://tec.openplanner.team/stops/Bwatfau1", "https://tec.openplanner.team/stops/Bwatlbr2"], ["https://tec.openplanner.team/stops/X908ala", "https://tec.openplanner.team/stops/X911aaa"], ["https://tec.openplanner.team/stops/H1sy147a", "https://tec.openplanner.team/stops/H1sy147b"], ["https://tec.openplanner.team/stops/Ladgron1", "https://tec.openplanner.team/stops/Ladgron2"], ["https://tec.openplanner.team/stops/Brixpje1", "https://tec.openplanner.team/stops/Brixpje2"], ["https://tec.openplanner.team/stops/X902ava", "https://tec.openplanner.team/stops/X902bab"], ["https://tec.openplanner.team/stops/LTRespe1", "https://tec.openplanner.team/stops/LTRpeec2"], ["https://tec.openplanner.team/stops/H4ne133b", "https://tec.openplanner.team/stops/H4ne148a"], ["https://tec.openplanner.team/stops/N563aob", "https://tec.openplanner.team/stops/N570acb"], ["https://tec.openplanner.team/stops/LCeterm2", "https://tec.openplanner.team/stops/LGAholl2"], ["https://tec.openplanner.team/stops/X796aba", "https://tec.openplanner.team/stops/X796acb"], ["https://tec.openplanner.team/stops/X641aya", "https://tec.openplanner.team/stops/X673aab"], ["https://tec.openplanner.team/stops/Bsgimca1", "https://tec.openplanner.team/stops/Buccdst2"], ["https://tec.openplanner.team/stops/Blontry1", "https://tec.openplanner.team/stops/Bptblma2"], ["https://tec.openplanner.team/stops/Bwatms09", "https://tec.openplanner.team/stops/Bwatsan2"], ["https://tec.openplanner.team/stops/Cmlchan1", "https://tec.openplanner.team/stops/Cmlpomm2"], ["https://tec.openplanner.team/stops/H1wz169b", "https://tec.openplanner.team/stops/H2pe162b"], ["https://tec.openplanner.team/stops/Bjancha2", "https://tec.openplanner.team/stops/Bolphgr1"], ["https://tec.openplanner.team/stops/LmTreic2", "https://tec.openplanner.team/stops/LrTpost1"], ["https://tec.openplanner.team/stops/H1pa112b", "https://tec.openplanner.team/stops/H1sb149b"], ["https://tec.openplanner.team/stops/N254ada", "https://tec.openplanner.team/stops/N254aeb"], ["https://tec.openplanner.team/stops/Cchdelf1", "https://tec.openplanner.team/stops/Cchfaub2"], ["https://tec.openplanner.team/stops/H4be105a", "https://tec.openplanner.team/stops/H4be107a"], ["https://tec.openplanner.team/stops/LOthiro2", "https://tec.openplanner.team/stops/LOtthie1"], ["https://tec.openplanner.team/stops/LbAhenk2", "https://tec.openplanner.team/stops/LbAhull2"], ["https://tec.openplanner.team/stops/H4mn100a", "https://tec.openplanner.team/stops/H4rk101a"], ["https://tec.openplanner.team/stops/N115abb", "https://tec.openplanner.team/stops/N115aeb"], ["https://tec.openplanner.team/stops/N101acb", "https://tec.openplanner.team/stops/N101adc"], ["https://tec.openplanner.team/stops/H1wa136b", "https://tec.openplanner.team/stops/H1wa164a"], ["https://tec.openplanner.team/stops/Lrccime3", "https://tec.openplanner.team/stops/Lvoec--1"], ["https://tec.openplanner.team/stops/H1ca106a", "https://tec.openplanner.team/stops/H1th183a"], ["https://tec.openplanner.team/stops/Btslhau2", "https://tec.openplanner.team/stops/Btsllsc1"], ["https://tec.openplanner.team/stops/N323acb", "https://tec.openplanner.team/stops/N387aab"], ["https://tec.openplanner.team/stops/Lgrcoll1", "https://tec.openplanner.team/stops/Lgrcour1"], ["https://tec.openplanner.team/stops/Blemsta2", "https://tec.openplanner.team/stops/Blemwro1"], ["https://tec.openplanner.team/stops/LESgare*", "https://tec.openplanner.team/stops/LESlieg1"], ["https://tec.openplanner.team/stops/LBIairp2", "https://tec.openplanner.team/stops/Lghmaha3"], ["https://tec.openplanner.team/stops/NL74aba", "https://tec.openplanner.team/stops/NL74adb"], ["https://tec.openplanner.team/stops/NH01aaa", "https://tec.openplanner.team/stops/NH01anb"], ["https://tec.openplanner.team/stops/H5ar102a", "https://tec.openplanner.team/stops/H5ar103a"], ["https://tec.openplanner.team/stops/N214aeb", "https://tec.openplanner.team/stops/N214afa"], ["https://tec.openplanner.team/stops/NR38aea", "https://tec.openplanner.team/stops/NR38aeb"], ["https://tec.openplanner.team/stops/LhOfrie2", "https://tec.openplanner.team/stops/LhOzent2"], ["https://tec.openplanner.team/stops/Lbbviad3", "https://tec.openplanner.team/stops/Lgrwill1"], ["https://tec.openplanner.team/stops/Btilhti2", "https://tec.openplanner.team/stops/Btilmon2"], ["https://tec.openplanner.team/stops/X940aba", "https://tec.openplanner.team/stops/X948atb"], ["https://tec.openplanner.team/stops/N520aba", "https://tec.openplanner.team/stops/N520aea"], ["https://tec.openplanner.team/stops/N507ada", "https://tec.openplanner.team/stops/N507adb"], ["https://tec.openplanner.team/stops/N166abb", "https://tec.openplanner.team/stops/N166ada"], ["https://tec.openplanner.team/stops/Cgohnda2", "https://tec.openplanner.team/stops/Ctmsncb1"], ["https://tec.openplanner.team/stops/N383aea", "https://tec.openplanner.team/stops/N874amb"], ["https://tec.openplanner.team/stops/N558ajb", "https://tec.openplanner.team/stops/N559aaa"], ["https://tec.openplanner.team/stops/H4ga161d", "https://tec.openplanner.team/stops/H4ga165b"], ["https://tec.openplanner.team/stops/NL77akb", "https://tec.openplanner.team/stops/NL78ajb"], ["https://tec.openplanner.team/stops/H4ty292a", "https://tec.openplanner.team/stops/H4ty294a"], ["https://tec.openplanner.team/stops/LLOnand1", "https://tec.openplanner.team/stops/LRRmanc2"], ["https://tec.openplanner.team/stops/X619aba", "https://tec.openplanner.team/stops/X619acb"], ["https://tec.openplanner.team/stops/N506bvb", "https://tec.openplanner.team/stops/N506bxa"], ["https://tec.openplanner.team/stops/H1mj127a", "https://tec.openplanner.team/stops/H1mj132a"], ["https://tec.openplanner.team/stops/LHCmais2", "https://tec.openplanner.team/stops/LHCpaci1"], ["https://tec.openplanner.team/stops/LCocasc1", "https://tec.openplanner.team/stops/LRChote1"], ["https://tec.openplanner.team/stops/Ccaegli2", "https://tec.openplanner.team/stops/Cerrver4"], ["https://tec.openplanner.team/stops/H4mv192b", "https://tec.openplanner.team/stops/H4mv195a"], ["https://tec.openplanner.team/stops/X759aaa", "https://tec.openplanner.team/stops/X886afb"], ["https://tec.openplanner.team/stops/Bvirbie3", "https://tec.openplanner.team/stops/Bvirhsa1"], ["https://tec.openplanner.team/stops/Cluchbl1", "https://tec.openplanner.team/stops/Cluchbl4"], ["https://tec.openplanner.team/stops/Bwatdmo1", "https://tec.openplanner.team/stops/Bwatmco1"], ["https://tec.openplanner.team/stops/LLWchat1", "https://tec.openplanner.team/stops/LLWpier2"], ["https://tec.openplanner.team/stops/LTIdjal1", "https://tec.openplanner.team/stops/LTIdumo1"], ["https://tec.openplanner.team/stops/H4ty299a", "https://tec.openplanner.team/stops/H4ty299f"], ["https://tec.openplanner.team/stops/X664aeb", "https://tec.openplanner.team/stops/X664afb"], ["https://tec.openplanner.team/stops/LSNchen2", "https://tec.openplanner.team/stops/LSNchen4"], ["https://tec.openplanner.team/stops/N308afc", "https://tec.openplanner.team/stops/N308agb"], ["https://tec.openplanner.team/stops/H4ty274b", "https://tec.openplanner.team/stops/H4ty306b"], ["https://tec.openplanner.team/stops/X811aga", "https://tec.openplanner.team/stops/X834abb"], ["https://tec.openplanner.team/stops/Bhevcur2", "https://tec.openplanner.team/stops/Bhvlpla2"], ["https://tec.openplanner.team/stops/Cgrchas1", "https://tec.openplanner.team/stops/Cgrlorm1"], ["https://tec.openplanner.team/stops/Llgherm2", "https://tec.openplanner.team/stops/Llgmair1"], ["https://tec.openplanner.team/stops/Lcceg--2", "https://tec.openplanner.team/stops/LRacime1"], ["https://tec.openplanner.team/stops/LCHrhou1", "https://tec.openplanner.team/stops/LThplen1"], ["https://tec.openplanner.team/stops/Ccuhsti1", "https://tec.openplanner.team/stops/Ccupbro1"], ["https://tec.openplanner.team/stops/Buccron1", "https://tec.openplanner.team/stops/Buccvbe1"], ["https://tec.openplanner.team/stops/Ctaprai3", "https://tec.openplanner.team/stops/Ctarpoi1"], ["https://tec.openplanner.team/stops/LWOwonc1", "https://tec.openplanner.team/stops/LWOwonc2"], ["https://tec.openplanner.team/stops/N215aaa", "https://tec.openplanner.team/stops/N232cea"], ["https://tec.openplanner.team/stops/Bsmgbsa2", "https://tec.openplanner.team/stops/Bsmgres2"], ["https://tec.openplanner.team/stops/H4tm140b", "https://tec.openplanner.team/stops/H4to133b"], ["https://tec.openplanner.team/stops/Bwatmsj6", "https://tec.openplanner.team/stops/Bwatsan2"], ["https://tec.openplanner.team/stops/H1wi150a", "https://tec.openplanner.team/stops/H1wi153a"], ["https://tec.openplanner.team/stops/Bnstlna1", "https://tec.openplanner.team/stops/H2mi124b"], ["https://tec.openplanner.team/stops/N558aab", "https://tec.openplanner.team/stops/N558afa"], ["https://tec.openplanner.team/stops/Bixlpat1", "https://tec.openplanner.team/stops/Bixlpat2"], ["https://tec.openplanner.team/stops/H4ev119a", "https://tec.openplanner.team/stops/H4sl155a"], ["https://tec.openplanner.team/stops/N562ama", "https://tec.openplanner.team/stops/N562bra"], ["https://tec.openplanner.team/stops/H4an111b", "https://tec.openplanner.team/stops/H4an111c"], ["https://tec.openplanner.team/stops/Lveoctr1", "https://tec.openplanner.team/stops/Lveoctr2"], ["https://tec.openplanner.team/stops/N576aga", "https://tec.openplanner.team/stops/N576agb"], ["https://tec.openplanner.team/stops/Boffegl2", "https://tec.openplanner.team/stops/Bramcar1"], ["https://tec.openplanner.team/stops/N501gza", "https://tec.openplanner.team/stops/N501gzy"], ["https://tec.openplanner.team/stops/Lromc--2", "https://tec.openplanner.team/stops/Lromerl2"], ["https://tec.openplanner.team/stops/X994aba", "https://tec.openplanner.team/stops/X994ama"], ["https://tec.openplanner.team/stops/Lserena2", "https://tec.openplanner.team/stops/Lseverh1"], ["https://tec.openplanner.team/stops/LbTweyn1", "https://tec.openplanner.team/stops/LbUwhon2"], ["https://tec.openplanner.team/stops/LBThaut2", "https://tec.openplanner.team/stops/LCHeg--2"], ["https://tec.openplanner.team/stops/N538aub", "https://tec.openplanner.team/stops/N538bbb"], ["https://tec.openplanner.team/stops/Cfcbosq1", "https://tec.openplanner.team/stops/Cfcsaut3"], ["https://tec.openplanner.team/stops/Buccdch2", "https://tec.openplanner.team/stops/Buccdst2"], ["https://tec.openplanner.team/stops/NL78aeb", "https://tec.openplanner.team/stops/NL78afb"], ["https://tec.openplanner.team/stops/Bllnlb11", "https://tec.openplanner.team/stops/Bllnlb52"], ["https://tec.openplanner.team/stops/Bsomtce1", "https://tec.openplanner.team/stops/N584asa"], ["https://tec.openplanner.team/stops/H4ae132d", "https://tec.openplanner.team/stops/H4ea129b"], ["https://tec.openplanner.team/stops/LBEcomm1", "https://tec.openplanner.team/stops/LBEtilf2"], ["https://tec.openplanner.team/stops/H1ha195a", "https://tec.openplanner.team/stops/H1ha198b"], ["https://tec.openplanner.team/stops/H4ty290b", "https://tec.openplanner.team/stops/H4ty295b"], ["https://tec.openplanner.team/stops/LLTeg--2", "https://tec.openplanner.team/stops/LLThosd2"], ["https://tec.openplanner.team/stops/LWHkape1", "https://tec.openplanner.team/stops/LWHtrui1"], ["https://tec.openplanner.team/stops/N584bpc", "https://tec.openplanner.team/stops/N584bqb"], ["https://tec.openplanner.team/stops/X650aib", "https://tec.openplanner.team/stops/X650akb"], ["https://tec.openplanner.team/stops/Barqbco1", "https://tec.openplanner.team/stops/Barqpla1"], ["https://tec.openplanner.team/stops/H4fa167a", "https://tec.openplanner.team/stops/H5rx104a"], ["https://tec.openplanner.team/stops/Bcseeco2", "https://tec.openplanner.team/stops/Bmoufil2"], ["https://tec.openplanner.team/stops/LBUrout2", "https://tec.openplanner.team/stops/NL30afb"], ["https://tec.openplanner.team/stops/X928aab", "https://tec.openplanner.team/stops/X945adb"], ["https://tec.openplanner.team/stops/Bmlngch2", "https://tec.openplanner.team/stops/Bmlngvi1"], ["https://tec.openplanner.team/stops/LeUwert1", "https://tec.openplanner.team/stops/LeUwert2"], ["https://tec.openplanner.team/stops/H1cv101a", "https://tec.openplanner.team/stops/H1cv102b"], ["https://tec.openplanner.team/stops/Bglacsr1", "https://tec.openplanner.team/stops/Bmrscsp1"], ["https://tec.openplanner.team/stops/LDAptbo1", "https://tec.openplanner.team/stops/LDAptbo2"], ["https://tec.openplanner.team/stops/H1ba100a", "https://tec.openplanner.team/stops/H1ba100b"], ["https://tec.openplanner.team/stops/LOV48--2", "https://tec.openplanner.team/stops/LOVchen1"], ["https://tec.openplanner.team/stops/LbO52--1", "https://tec.openplanner.team/stops/LdElamb1"], ["https://tec.openplanner.team/stops/N201aee", "https://tec.openplanner.team/stops/N201aia"], ["https://tec.openplanner.team/stops/H1cu111b", "https://tec.openplanner.team/stops/H1cu131a"], ["https://tec.openplanner.team/stops/Bgntcha2", "https://tec.openplanner.team/stops/Bsgevil1"], ["https://tec.openplanner.team/stops/LNCloui1", "https://tec.openplanner.team/stops/LNCneuv3"], ["https://tec.openplanner.team/stops/N365aca", "https://tec.openplanner.team/stops/N365acb"], ["https://tec.openplanner.team/stops/Bblager1", "https://tec.openplanner.team/stops/Clpalli1"], ["https://tec.openplanner.team/stops/H1fr107c", "https://tec.openplanner.team/stops/H1fr109a"], ["https://tec.openplanner.team/stops/Bnivbne2", "https://tec.openplanner.team/stops/Bnivsci2"], ["https://tec.openplanner.team/stops/X812aua", "https://tec.openplanner.team/stops/X812bga"], ["https://tec.openplanner.team/stops/Cauglac2", "https://tec.openplanner.team/stops/Ctabaty3"], ["https://tec.openplanner.team/stops/N134afa", "https://tec.openplanner.team/stops/N151aba"], ["https://tec.openplanner.team/stops/LAUneuv5", "https://tec.openplanner.team/stops/LAUscha1"], ["https://tec.openplanner.team/stops/LJAbois2", "https://tec.openplanner.team/stops/LJAroue1"], ["https://tec.openplanner.team/stops/X640ana", "https://tec.openplanner.team/stops/X640anb"], ["https://tec.openplanner.team/stops/Chhegli2", "https://tec.openplanner.team/stops/Chhegli3"], ["https://tec.openplanner.team/stops/N111acb", "https://tec.openplanner.team/stops/N111aea"], ["https://tec.openplanner.team/stops/H4lz161b", "https://tec.openplanner.team/stops/H4lz163a"], ["https://tec.openplanner.team/stops/Cmlceri2", "https://tec.openplanner.team/stops/Cmlclos1"], ["https://tec.openplanner.team/stops/Blasren1", "https://tec.openplanner.team/stops/Brixbai2"], ["https://tec.openplanner.team/stops/Llgcime2", "https://tec.openplanner.team/stops/Llgegwa1"], ["https://tec.openplanner.team/stops/Clibrun2", "https://tec.openplanner.team/stops/Ctmwaut1"], ["https://tec.openplanner.team/stops/N323aca", "https://tec.openplanner.team/stops/N360adb"], ["https://tec.openplanner.team/stops/X616afa", "https://tec.openplanner.team/stops/X616afb"], ["https://tec.openplanner.team/stops/LlgLEOP2", "https://tec.openplanner.team/stops/LlgLEOP3"], ["https://tec.openplanner.team/stops/Bwatgar2", "https://tec.openplanner.team/stops/Bwatpas1"], ["https://tec.openplanner.team/stops/N308aza", "https://tec.openplanner.team/stops/N368aaa"], ["https://tec.openplanner.team/stops/Crasocq1", "https://tec.openplanner.team/stops/Crasocq2"], ["https://tec.openplanner.team/stops/LBPmais1", "https://tec.openplanner.team/stops/LSLdall1"], ["https://tec.openplanner.team/stops/LbOre3b1", "https://tec.openplanner.team/stops/LrEkais3"], ["https://tec.openplanner.team/stops/H1ba106a", "https://tec.openplanner.team/stops/H1te185a"], ["https://tec.openplanner.team/stops/Cfcmass1", "https://tec.openplanner.team/stops/Crccarr1"], ["https://tec.openplanner.team/stops/Bhticbr2", "https://tec.openplanner.team/stops/Bitrfsc2"], ["https://tec.openplanner.team/stops/H4oq228a", "https://tec.openplanner.team/stops/H4wu376a"], ["https://tec.openplanner.team/stops/H1el135b", "https://tec.openplanner.team/stops/H1wi152a"], ["https://tec.openplanner.team/stops/Bchgflo1", "https://tec.openplanner.team/stops/Bopplon1"], ["https://tec.openplanner.team/stops/Lbogonh1", "https://tec.openplanner.team/stops/Lbogonh3"], ["https://tec.openplanner.team/stops/X937abb", "https://tec.openplanner.team/stops/X950ada"], ["https://tec.openplanner.team/stops/Canchbr1", "https://tec.openplanner.team/stops/Canjon3"], ["https://tec.openplanner.team/stops/LhObull2", "https://tec.openplanner.team/stops/LhUkreu2"], ["https://tec.openplanner.team/stops/LLelava1", "https://tec.openplanner.team/stops/X547asa"], ["https://tec.openplanner.team/stops/N113aba", "https://tec.openplanner.team/stops/N113aga"], ["https://tec.openplanner.team/stops/Llgcoti*", "https://tec.openplanner.team/stops/Llggerm1"], ["https://tec.openplanner.team/stops/LPAbour1", "https://tec.openplanner.team/stops/LWinavi1"], ["https://tec.openplanner.team/stops/LKmmelo2", "https://tec.openplanner.team/stops/LOdbuis1"], ["https://tec.openplanner.team/stops/LENmc--2", "https://tec.openplanner.team/stops/LENpt--2"], ["https://tec.openplanner.team/stops/Bbaualz1", "https://tec.openplanner.team/stops/Bbauham1"], ["https://tec.openplanner.team/stops/H2bh112a", "https://tec.openplanner.team/stops/H2bh113b"], ["https://tec.openplanner.team/stops/Bllnjpa2", "https://tec.openplanner.team/stops/Bmsgaxp2"], ["https://tec.openplanner.team/stops/Lrolecl1", "https://tec.openplanner.team/stops/Lronamo1"], ["https://tec.openplanner.team/stops/N206abb", "https://tec.openplanner.team/stops/N207acb"], ["https://tec.openplanner.team/stops/H2mg136a", "https://tec.openplanner.team/stops/H2mg143b"], ["https://tec.openplanner.team/stops/Crarmas1", "https://tec.openplanner.team/stops/Cravign1"], ["https://tec.openplanner.team/stops/Cjucpui2", "https://tec.openplanner.team/stops/Cmaacac2"], ["https://tec.openplanner.team/stops/H4bn174b", "https://tec.openplanner.team/stops/H4pi135b"], ["https://tec.openplanner.team/stops/Lgdstoc1", "https://tec.openplanner.team/stops/LSNmoul1"], ["https://tec.openplanner.team/stops/Lprmana5", "https://tec.openplanner.team/stops/Lprspra1"], ["https://tec.openplanner.team/stops/N301akb", "https://tec.openplanner.team/stops/N331aea"], ["https://tec.openplanner.team/stops/Bbxltrv1", "https://tec.openplanner.team/stops/Bixlqll1"], ["https://tec.openplanner.team/stops/LMAbruy2", "https://tec.openplanner.team/stops/LMAchod2"], ["https://tec.openplanner.team/stops/H4be146a", "https://tec.openplanner.team/stops/H5bl120b"], ["https://tec.openplanner.team/stops/LmI82--2", "https://tec.openplanner.team/stops/LmIzent1"], ["https://tec.openplanner.team/stops/N146aaa", "https://tec.openplanner.team/stops/N146afa"], ["https://tec.openplanner.team/stops/LSZclem2", "https://tec.openplanner.team/stops/LSZpont1"], ["https://tec.openplanner.team/stops/Livfays1", "https://tec.openplanner.team/stops/LRagrch2"], ["https://tec.openplanner.team/stops/X804apb", "https://tec.openplanner.team/stops/X804aqb"], ["https://tec.openplanner.team/stops/LaMades1", "https://tec.openplanner.team/stops/LaMbrei1"], ["https://tec.openplanner.team/stops/H4ss153a", "https://tec.openplanner.team/stops/H5rx105b"], ["https://tec.openplanner.team/stops/N233aaa", "https://tec.openplanner.team/stops/N233aab"], ["https://tec.openplanner.team/stops/Brsrmon3", "https://tec.openplanner.team/stops/Brsrpmo1"], ["https://tec.openplanner.team/stops/H1sb149b", "https://tec.openplanner.team/stops/H1sb150b"], ["https://tec.openplanner.team/stops/N347adb", "https://tec.openplanner.team/stops/N347aeb"], ["https://tec.openplanner.team/stops/LPUchpl2", "https://tec.openplanner.team/stops/LPUlecl2"], ["https://tec.openplanner.team/stops/NL76abb", "https://tec.openplanner.team/stops/NL76asb"], ["https://tec.openplanner.team/stops/LLSbajo1", "https://tec.openplanner.team/stops/LLStour1"], ["https://tec.openplanner.team/stops/Lbrddef4", "https://tec.openplanner.team/stops/Llgddef2"], ["https://tec.openplanner.team/stops/X937ada", "https://tec.openplanner.team/stops/X937aeb"], ["https://tec.openplanner.team/stops/Cchcase1", "https://tec.openplanner.team/stops/Cchcase3"], ["https://tec.openplanner.team/stops/X904afb", "https://tec.openplanner.team/stops/X904aia"], ["https://tec.openplanner.team/stops/Bwavgar4", "https://tec.openplanner.team/stops/Bwavlep1"], ["https://tec.openplanner.team/stops/Cvsbois2", "https://tec.openplanner.team/stops/N530aga"], ["https://tec.openplanner.team/stops/Cfcbobr1", "https://tec.openplanner.team/stops/Cfccabi2"], ["https://tec.openplanner.team/stops/H1cu131a", "https://tec.openplanner.team/stops/H1cu132b"], ["https://tec.openplanner.team/stops/H1pa103b", "https://tec.openplanner.team/stops/H1wa138a"], ["https://tec.openplanner.team/stops/Lagcolo2", "https://tec.openplanner.team/stops/Lemparc2"], ["https://tec.openplanner.team/stops/Cgycorv4", "https://tec.openplanner.team/stops/Cmtduch2"], ["https://tec.openplanner.team/stops/Cvlgrta1", "https://tec.openplanner.team/stops/NH21aeb"], ["https://tec.openplanner.team/stops/N505acb", "https://tec.openplanner.team/stops/N505aoa"], ["https://tec.openplanner.team/stops/X663aaa", "https://tec.openplanner.team/stops/X663ana"], ["https://tec.openplanner.team/stops/H1ms264b", "https://tec.openplanner.team/stops/H1ms266b"], ["https://tec.openplanner.team/stops/Lflcle-3", "https://tec.openplanner.team/stops/Lflcle-6"], ["https://tec.openplanner.team/stops/Cctpass2", "https://tec.openplanner.team/stops/NC02aob"], ["https://tec.openplanner.team/stops/Bhancom2", "https://tec.openplanner.team/stops/LVParal2"], ["https://tec.openplanner.team/stops/N515agb", "https://tec.openplanner.team/stops/N515aub"], ["https://tec.openplanner.team/stops/LWalyce2", "https://tec.openplanner.team/stops/LWapl--3"], ["https://tec.openplanner.team/stops/LHMbami1", "https://tec.openplanner.team/stops/LSImewi1"], ["https://tec.openplanner.team/stops/N230aib", "https://tec.openplanner.team/stops/N233aaa"], ["https://tec.openplanner.team/stops/Lmnsech2", "https://tec.openplanner.team/stops/Lsmsech4"], ["https://tec.openplanner.team/stops/NB33afa", "https://tec.openplanner.team/stops/NB33afb"], ["https://tec.openplanner.team/stops/Lveptre2", "https://tec.openplanner.team/stops/Lvereno2"], ["https://tec.openplanner.team/stops/Lveinva1", "https://tec.openplanner.team/stops/Lveinva2"], ["https://tec.openplanner.team/stops/Brixbou2", "https://tec.openplanner.team/stops/Brixroi2"], ["https://tec.openplanner.team/stops/N225aba", "https://tec.openplanner.team/stops/N226aaa"], ["https://tec.openplanner.team/stops/LFmbure1", "https://tec.openplanner.team/stops/LFmcarr1"], ["https://tec.openplanner.team/stops/H2ml114a", "https://tec.openplanner.team/stops/H2mo117a"], ["https://tec.openplanner.team/stops/Caicalv2", "https://tec.openplanner.team/stops/Caigibe1"], ["https://tec.openplanner.team/stops/N311aea", "https://tec.openplanner.team/stops/N311aeb"], ["https://tec.openplanner.team/stops/LmNelis1", "https://tec.openplanner.team/stops/LmNkirc2"], ["https://tec.openplanner.team/stops/H5el100b", "https://tec.openplanner.team/stops/H5wo130a"], ["https://tec.openplanner.team/stops/H1gh163a", "https://tec.openplanner.team/stops/H1je225b"], ["https://tec.openplanner.team/stops/H5qu144a", "https://tec.openplanner.team/stops/H5qu146a"], ["https://tec.openplanner.team/stops/N577aab", "https://tec.openplanner.team/stops/N577aba"], ["https://tec.openplanner.team/stops/LWycabi1", "https://tec.openplanner.team/stops/LWycabi2"], ["https://tec.openplanner.team/stops/Lmlec--4", "https://tec.openplanner.team/stops/Lmlprie2"], ["https://tec.openplanner.team/stops/N557aia", "https://tec.openplanner.team/stops/N562bjb"], ["https://tec.openplanner.team/stops/N538aua", "https://tec.openplanner.team/stops/N538ava"], ["https://tec.openplanner.team/stops/Btstcar1", "https://tec.openplanner.team/stops/Btstcar4"], ["https://tec.openplanner.team/stops/Llgcrah1", "https://tec.openplanner.team/stops/Llgwild1"], ["https://tec.openplanner.team/stops/N527afb", "https://tec.openplanner.team/stops/N527agb"], ["https://tec.openplanner.team/stops/H5at122a", "https://tec.openplanner.team/stops/H5at133a"], ["https://tec.openplanner.team/stops/X758abb", "https://tec.openplanner.team/stops/X758acb"], ["https://tec.openplanner.team/stops/H1fa118a", "https://tec.openplanner.team/stops/H1vb143a"], ["https://tec.openplanner.team/stops/N531aeb", "https://tec.openplanner.team/stops/N531ata"], ["https://tec.openplanner.team/stops/NL75aab", "https://tec.openplanner.team/stops/NR30aba"], ["https://tec.openplanner.team/stops/LSItert1", "https://tec.openplanner.team/stops/LSIvieu1"], ["https://tec.openplanner.team/stops/LHUmala2", "https://tec.openplanner.team/stops/LHUmari2"], ["https://tec.openplanner.team/stops/Cfmpui82", "https://tec.openplanner.team/stops/Cfmwaut1"], ["https://tec.openplanner.team/stops/Livrame1", "https://tec.openplanner.team/stops/LRagrch2"], ["https://tec.openplanner.team/stops/Lveanne1", "https://tec.openplanner.team/stops/Lvesomm1"], ["https://tec.openplanner.team/stops/N390afb", "https://tec.openplanner.team/stops/N390amb"], ["https://tec.openplanner.team/stops/LCHsaul1", "https://tec.openplanner.team/stops/LCHsaul2"], ["https://tec.openplanner.team/stops/Bhlvvil1", "https://tec.openplanner.team/stops/Crewaba1"], ["https://tec.openplanner.team/stops/N562aha", "https://tec.openplanner.team/stops/N562ahb"], ["https://tec.openplanner.team/stops/X801aaa", "https://tec.openplanner.team/stops/X801aab"], ["https://tec.openplanner.team/stops/Bbchmin1", "https://tec.openplanner.team/stops/Bitreco1"], ["https://tec.openplanner.team/stops/X850ada", "https://tec.openplanner.team/stops/X850aib"], ["https://tec.openplanner.team/stops/Cchsud01", "https://tec.openplanner.team/stops/Cchtram2"], ["https://tec.openplanner.team/stops/H2hg153a", "https://tec.openplanner.team/stops/H2hg156a"], ["https://tec.openplanner.team/stops/N521afb", "https://tec.openplanner.team/stops/N523abb"], ["https://tec.openplanner.team/stops/LoUober1", "https://tec.openplanner.team/stops/LoUwelc1"], ["https://tec.openplanner.team/stops/Llgbron1", "https://tec.openplanner.team/stops/Llgvero1"], ["https://tec.openplanner.team/stops/LRRecsc*", "https://tec.openplanner.team/stops/LRRmanc2"], ["https://tec.openplanner.team/stops/Cbmgare2", "https://tec.openplanner.team/stops/Cbmviv2"], ["https://tec.openplanner.team/stops/LbTathe2", "https://tec.openplanner.team/stops/LbThau11"], ["https://tec.openplanner.team/stops/H4ef138a", "https://tec.openplanner.team/stops/H4ef138b"], ["https://tec.openplanner.team/stops/X754aka", "https://tec.openplanner.team/stops/X754akb"], ["https://tec.openplanner.team/stops/Bgntcbo2", "https://tec.openplanner.team/stops/Bgnttma1"], ["https://tec.openplanner.team/stops/LHGbeur1", "https://tec.openplanner.team/stops/LHGbeur4"], ["https://tec.openplanner.team/stops/H1mb127b", "https://tec.openplanner.team/stops/H1mb166a"], ["https://tec.openplanner.team/stops/H2mg150a", "https://tec.openplanner.team/stops/H2mg153a"], ["https://tec.openplanner.team/stops/N501eda", "https://tec.openplanner.team/stops/N501edb"], ["https://tec.openplanner.team/stops/Csoforc2", "https://tec.openplanner.team/stops/Csostoc2"], ["https://tec.openplanner.team/stops/X512aaa", "https://tec.openplanner.team/stops/X512ajb"], ["https://tec.openplanner.team/stops/Cobnive1", "https://tec.openplanner.team/stops/Creshau1"], ["https://tec.openplanner.team/stops/Crbrgar1", "https://tec.openplanner.team/stops/Cvlbvir2"], ["https://tec.openplanner.team/stops/H5bs104b", "https://tec.openplanner.team/stops/H5pe128b"], ["https://tec.openplanner.team/stops/X836afa", "https://tec.openplanner.team/stops/X836afb"], ["https://tec.openplanner.team/stops/LABbert1", "https://tec.openplanner.team/stops/LBevill2"], ["https://tec.openplanner.team/stops/X725agb", "https://tec.openplanner.team/stops/X754axb"], ["https://tec.openplanner.team/stops/H2ll194b", "https://tec.openplanner.team/stops/H2ll196b"], ["https://tec.openplanner.team/stops/X602aca", "https://tec.openplanner.team/stops/X612acb"], ["https://tec.openplanner.team/stops/Bgliron1", "https://tec.openplanner.team/stops/NB33aeb"], ["https://tec.openplanner.team/stops/Caihai82", "https://tec.openplanner.team/stops/Caioign3"], ["https://tec.openplanner.team/stops/X636ara", "https://tec.openplanner.team/stops/X636arb"], ["https://tec.openplanner.team/stops/H4we139a", "https://tec.openplanner.team/stops/H4we139b"], ["https://tec.openplanner.team/stops/Llgmair2", "https://tec.openplanner.team/stops/Lvtnico2"], ["https://tec.openplanner.team/stops/Bwatavo1", "https://tec.openplanner.team/stops/Bwatifr2"], ["https://tec.openplanner.team/stops/Cjufauv1", "https://tec.openplanner.team/stops/Cjugend3"], ["https://tec.openplanner.team/stops/N571afb", "https://tec.openplanner.team/stops/N571agb"], ["https://tec.openplanner.team/stops/LWM759-1", "https://tec.openplanner.team/stops/LWMchpl2"], ["https://tec.openplanner.team/stops/H2pe159a", "https://tec.openplanner.team/stops/H2pe159b"], ["https://tec.openplanner.team/stops/X602aja", "https://tec.openplanner.team/stops/X602aqa"], ["https://tec.openplanner.team/stops/H4fa126b", "https://tec.openplanner.team/stops/H4fa126d"], ["https://tec.openplanner.team/stops/Cjugill6", "https://tec.openplanner.team/stops/Cjupn1"], ["https://tec.openplanner.team/stops/LeUbael1", "https://tec.openplanner.team/stops/LeUbael2"], ["https://tec.openplanner.team/stops/N533amc", "https://tec.openplanner.team/stops/N533apb"], ["https://tec.openplanner.team/stops/Lsehosp1", "https://tec.openplanner.team/stops/Lsehosp2"], ["https://tec.openplanner.team/stops/X886adb", "https://tec.openplanner.team/stops/X886aeb"], ["https://tec.openplanner.team/stops/LWEbruy1", "https://tec.openplanner.team/stops/LWEwilc2"], ["https://tec.openplanner.team/stops/X634afb", "https://tec.openplanner.team/stops/X636aaa"], ["https://tec.openplanner.team/stops/X607aca", "https://tec.openplanner.team/stops/X647aab"], ["https://tec.openplanner.team/stops/LkEl1211", "https://tec.openplanner.team/stops/LMsec--1"], ["https://tec.openplanner.team/stops/N209ajc", "https://tec.openplanner.team/stops/N209anb"], ["https://tec.openplanner.team/stops/N580aca", "https://tec.openplanner.team/stops/N580aea"], ["https://tec.openplanner.team/stops/LBPunic1", "https://tec.openplanner.team/stops/LGLbrus1"], ["https://tec.openplanner.team/stops/X760adb", "https://tec.openplanner.team/stops/X760agb"], ["https://tec.openplanner.team/stops/X716aba", "https://tec.openplanner.team/stops/X716abb"], ["https://tec.openplanner.team/stops/LaHzoll*", "https://tec.openplanner.team/stops/LrTpost2"], ["https://tec.openplanner.team/stops/Balssvi1", "https://tec.openplanner.team/stops/Balssvi2"], ["https://tec.openplanner.team/stops/Llgblon1", "https://tec.openplanner.team/stops/Llgblon4"], ["https://tec.openplanner.team/stops/Lghhoco1", "https://tec.openplanner.team/stops/Lghmavi2"], ["https://tec.openplanner.team/stops/Cgomart1", "https://tec.openplanner.team/stops/CMleop2"], ["https://tec.openplanner.team/stops/N343aia", "https://tec.openplanner.team/stops/X343aic"], ["https://tec.openplanner.team/stops/LHUloui1", "https://tec.openplanner.team/stops/LHUpsar1"], ["https://tec.openplanner.team/stops/Llgcoro4", "https://tec.openplanner.team/stops/Llgtir-2"], ["https://tec.openplanner.team/stops/LLOhest2", "https://tec.openplanner.team/stops/LLOspin1"], ["https://tec.openplanner.team/stops/X725aaa", "https://tec.openplanner.team/stops/X725abb"], ["https://tec.openplanner.team/stops/X877aaa", "https://tec.openplanner.team/stops/X877aba"], ["https://tec.openplanner.team/stops/H1sy141a", "https://tec.openplanner.team/stops/H1sy141b"], ["https://tec.openplanner.team/stops/H1hy126a", "https://tec.openplanner.team/stops/H1qy133a"], ["https://tec.openplanner.team/stops/H1ba101a", "https://tec.openplanner.team/stops/H1ba102b"], ["https://tec.openplanner.team/stops/Cflmart2", "https://tec.openplanner.team/stops/NC23abb"], ["https://tec.openplanner.team/stops/H4lp124a", "https://tec.openplanner.team/stops/H4lp124b"], ["https://tec.openplanner.team/stops/H2ma205a", "https://tec.openplanner.team/stops/H2ma209a"], ["https://tec.openplanner.team/stops/LTRferm2", "https://tec.openplanner.team/stops/LTRoasi1"], ["https://tec.openplanner.team/stops/X621aab", "https://tec.openplanner.team/stops/X621aba"], ["https://tec.openplanner.team/stops/H1hn210a", "https://tec.openplanner.team/stops/H1ms924a"], ["https://tec.openplanner.team/stops/N214aib", "https://tec.openplanner.team/stops/N214aja"], ["https://tec.openplanner.team/stops/N874aga", "https://tec.openplanner.team/stops/N874akb"], ["https://tec.openplanner.team/stops/N501jla", "https://tec.openplanner.team/stops/N501jna"], ["https://tec.openplanner.team/stops/Blincoo1", "https://tec.openplanner.team/stops/Blineco2"], ["https://tec.openplanner.team/stops/LWEeg--2", "https://tec.openplanner.team/stops/LWElanc1"], ["https://tec.openplanner.team/stops/Cvstouv2", "https://tec.openplanner.team/stops/N530aia"], ["https://tec.openplanner.team/stops/LmDhoch2", "https://tec.openplanner.team/stops/LmDhoch4"], ["https://tec.openplanner.team/stops/Bwavche2", "https://tec.openplanner.team/stops/Bwavlca1"], ["https://tec.openplanner.team/stops/X659adc", "https://tec.openplanner.team/stops/X659add"], ["https://tec.openplanner.team/stops/X857aba", "https://tec.openplanner.team/stops/X858aea"], ["https://tec.openplanner.team/stops/LHApthe1", "https://tec.openplanner.team/stops/LHAstal2"], ["https://tec.openplanner.team/stops/LROhaie2", "https://tec.openplanner.team/stops/LSorobe1"], ["https://tec.openplanner.team/stops/H1ms262a", "https://tec.openplanner.team/stops/H1ms265b"], ["https://tec.openplanner.team/stops/X723afa", "https://tec.openplanner.team/stops/X723aia"], ["https://tec.openplanner.team/stops/X730acb", "https://tec.openplanner.team/stops/X730ada"], ["https://tec.openplanner.team/stops/LHNvill1", "https://tec.openplanner.team/stops/LVPcoeu2"], ["https://tec.openplanner.team/stops/H4an112a", "https://tec.openplanner.team/stops/H4rs118a"], ["https://tec.openplanner.team/stops/N544aga", "https://tec.openplanner.team/stops/N547adb"], ["https://tec.openplanner.team/stops/X661aia", "https://tec.openplanner.team/stops/X661ara"], ["https://tec.openplanner.team/stops/N209afa", "https://tec.openplanner.team/stops/N209afb"], ["https://tec.openplanner.team/stops/LFMveur1", "https://tec.openplanner.team/stops/LFPknap2"], ["https://tec.openplanner.team/stops/LLLvill1", "https://tec.openplanner.team/stops/X576agb"], ["https://tec.openplanner.team/stops/LVbsurr1", "https://tec.openplanner.team/stops/NL77aja"], ["https://tec.openplanner.team/stops/Bincbbo2", "https://tec.openplanner.team/stops/Bincbbo3"], ["https://tec.openplanner.team/stops/X359aca", "https://tec.openplanner.team/stops/X359acb"], ["https://tec.openplanner.team/stops/LwLfuss1", "https://tec.openplanner.team/stops/LwLfuss2"], ["https://tec.openplanner.team/stops/N544aab", "https://tec.openplanner.team/stops/N550afb"], ["https://tec.openplanner.team/stops/Cvtegli2", "https://tec.openplanner.team/stops/Cvtgsar3"], ["https://tec.openplanner.team/stops/LCPlacr1", "https://tec.openplanner.team/stops/LCPoneu2"], ["https://tec.openplanner.team/stops/Bhancre2", "https://tec.openplanner.team/stops/Bhanwav2"], ["https://tec.openplanner.team/stops/N535aaa", "https://tec.openplanner.team/stops/N535apa"], ["https://tec.openplanner.team/stops/LSPplat2", "https://tec.openplanner.team/stops/LSPpomp2"], ["https://tec.openplanner.team/stops/N547aha", "https://tec.openplanner.team/stops/N547aib"], ["https://tec.openplanner.team/stops/Bhercsj2", "https://tec.openplanner.team/stops/Bpiepnd1"], ["https://tec.openplanner.team/stops/Cmg4bra2", "https://tec.openplanner.team/stops/Cmghay2"], ["https://tec.openplanner.team/stops/LCeterm2", "https://tec.openplanner.team/stops/LOMdodi1"], ["https://tec.openplanner.team/stops/X741aaa", "https://tec.openplanner.team/stops/X752aba"], ["https://tec.openplanner.team/stops/Cgycvie1", "https://tec.openplanner.team/stops/Cgygayo3"], ["https://tec.openplanner.team/stops/Ccicent4", "https://tec.openplanner.team/stops/Ccipech1"], ["https://tec.openplanner.team/stops/Cgxcime2", "https://tec.openplanner.team/stops/Cgxdeba2"], ["https://tec.openplanner.team/stops/LsVfeye2", "https://tec.openplanner.team/stops/LwPdorf2"], ["https://tec.openplanner.team/stops/X364aaa", "https://tec.openplanner.team/stops/X371aaa"], ["https://tec.openplanner.team/stops/H1bo101b", "https://tec.openplanner.team/stops/H1bo110b"], ["https://tec.openplanner.team/stops/Btsllbv2", "https://tec.openplanner.team/stops/Btslpic6"], ["https://tec.openplanner.team/stops/LBSvi322", "https://tec.openplanner.team/stops/LBSvi522"], ["https://tec.openplanner.team/stops/Bbxlner1", "https://tec.openplanner.team/stops/Bettgle2"], ["https://tec.openplanner.team/stops/H1ca102a", "https://tec.openplanner.team/stops/H3so160b"], ["https://tec.openplanner.team/stops/H1bx104a", "https://tec.openplanner.team/stops/H1bx108a"], ["https://tec.openplanner.team/stops/N535acd", "https://tec.openplanner.team/stops/N535apb"], ["https://tec.openplanner.team/stops/Brxmhai2", "https://tec.openplanner.team/stops/Brxmhai3"], ["https://tec.openplanner.team/stops/X870ada", "https://tec.openplanner.team/stops/X870adb"], ["https://tec.openplanner.team/stops/N571aaa", "https://tec.openplanner.team/stops/N571akb"], ["https://tec.openplanner.team/stops/Cmeptmi2", "https://tec.openplanner.team/stops/Cmestas1"], ["https://tec.openplanner.team/stops/Btubind1", "https://tec.openplanner.team/stops/Btubpla2"], ["https://tec.openplanner.team/stops/LFalieg2", "https://tec.openplanner.team/stops/LFarhuy1"], ["https://tec.openplanner.team/stops/LMEcour1", "https://tec.openplanner.team/stops/LMIpast1"], ["https://tec.openplanner.team/stops/NL77ana", "https://tec.openplanner.team/stops/NL78aba"], ["https://tec.openplanner.team/stops/LsCbrau1", "https://tec.openplanner.team/stops/LsCkirc1"], ["https://tec.openplanner.team/stops/LLnpomp1", "https://tec.openplanner.team/stops/LLnpomp2"], ["https://tec.openplanner.team/stops/Cnalava3", "https://tec.openplanner.team/stops/Cnalava4"], ["https://tec.openplanner.team/stops/H4gz114a", "https://tec.openplanner.team/stops/H4gz115a"], ["https://tec.openplanner.team/stops/Cbimonu1", "https://tec.openplanner.team/stops/Cthbifu1"], ["https://tec.openplanner.team/stops/LPcforg1", "https://tec.openplanner.team/stops/LVPgrot1"], ["https://tec.openplanner.team/stops/LaAmise2", "https://tec.openplanner.team/stops/LaApost2"], ["https://tec.openplanner.team/stops/LBSneuv2", "https://tec.openplanner.team/stops/LHScite2"], ["https://tec.openplanner.team/stops/Cnacroc1", "https://tec.openplanner.team/stops/Cnaferr2"], ["https://tec.openplanner.team/stops/Llgarmu3", "https://tec.openplanner.team/stops/Llgfoy-1"], ["https://tec.openplanner.team/stops/LBRgend2", "https://tec.openplanner.team/stops/LBRpt--2"], ["https://tec.openplanner.team/stops/LTIchev2", "https://tec.openplanner.team/stops/LTIdjal2"], ["https://tec.openplanner.team/stops/Bblacea2", "https://tec.openplanner.team/stops/Bblasmo1"], ["https://tec.openplanner.team/stops/Ljuathe1", "https://tec.openplanner.team/stops/Ljulieg1"], ["https://tec.openplanner.team/stops/X820ada", "https://tec.openplanner.team/stops/X820aib"], ["https://tec.openplanner.team/stops/H5pe133b", "https://tec.openplanner.team/stops/H5pe141a"], ["https://tec.openplanner.team/stops/Bnetegl1", "https://tec.openplanner.team/stops/Bnetegl2"], ["https://tec.openplanner.team/stops/LHTcarr1", "https://tec.openplanner.team/stops/LHTcarr2"], ["https://tec.openplanner.team/stops/Bvilcha1", "https://tec.openplanner.team/stops/Bvilcim1"], ["https://tec.openplanner.team/stops/LOcalbe1", "https://tec.openplanner.team/stops/LPrcarr2"], ["https://tec.openplanner.team/stops/LrDzoll3", "https://tec.openplanner.team/stops/LrDzoll4"], ["https://tec.openplanner.team/stops/Brixbai1", "https://tec.openplanner.team/stops/Brixeur5"], ["https://tec.openplanner.team/stops/LMNeg--1", "https://tec.openplanner.team/stops/LMsheid2"], ["https://tec.openplanner.team/stops/N501lza", "https://tec.openplanner.team/stops/N501lzz"], ["https://tec.openplanner.team/stops/H1gh163a", "https://tec.openplanner.team/stops/H1gh163b"], ["https://tec.openplanner.team/stops/N241aab", "https://tec.openplanner.team/stops/N270acb"], ["https://tec.openplanner.team/stops/Ccojaur2", "https://tec.openplanner.team/stops/Ccojaur4"], ["https://tec.openplanner.team/stops/Blasbpr2", "https://tec.openplanner.team/stops/Blasclo1"], ["https://tec.openplanner.team/stops/X713aeb", "https://tec.openplanner.team/stops/X713ajc"], ["https://tec.openplanner.team/stops/X624aga", "https://tec.openplanner.team/stops/X624agb"], ["https://tec.openplanner.team/stops/Cpcgout1", "https://tec.openplanner.team/stops/Cpcgout2"], ["https://tec.openplanner.team/stops/Cci4091", "https://tec.openplanner.team/stops/Ccimont2"], ["https://tec.openplanner.team/stops/N301aka", "https://tec.openplanner.team/stops/N301akb"], ["https://tec.openplanner.team/stops/N308apb", "https://tec.openplanner.team/stops/N308aqb"], ["https://tec.openplanner.team/stops/Bronn392", "https://tec.openplanner.team/stops/Bronpfe1"], ["https://tec.openplanner.team/stops/LHCbois2", "https://tec.openplanner.team/stops/LHCbois6"], ["https://tec.openplanner.team/stops/Llgcham3", "https://tec.openplanner.team/stops/Llglair2"], ["https://tec.openplanner.team/stops/X561adb", "https://tec.openplanner.team/stops/X575aab"], ["https://tec.openplanner.team/stops/N501cwa", "https://tec.openplanner.team/stops/N501dab"], ["https://tec.openplanner.team/stops/H2gy107a", "https://tec.openplanner.team/stops/H2gy107b"], ["https://tec.openplanner.team/stops/N103aab", "https://tec.openplanner.team/stops/N103abb"], ["https://tec.openplanner.team/stops/Cgdberl1", "https://tec.openplanner.team/stops/Cgdberl2"], ["https://tec.openplanner.team/stops/H1mh116a", "https://tec.openplanner.team/stops/H1mh117a"], ["https://tec.openplanner.team/stops/X948aoa", "https://tec.openplanner.team/stops/X948aob"], ["https://tec.openplanner.team/stops/H1mr124a", "https://tec.openplanner.team/stops/H1mr125a"], ["https://tec.openplanner.team/stops/H1sg150a", "https://tec.openplanner.team/stops/H1sg150c"], ["https://tec.openplanner.team/stops/H1gc122a", "https://tec.openplanner.team/stops/H1gc124b"], ["https://tec.openplanner.team/stops/X601axa", "https://tec.openplanner.team/stops/X612aaa"], ["https://tec.openplanner.team/stops/H4ss154b", "https://tec.openplanner.team/stops/H4ss155b"], ["https://tec.openplanner.team/stops/Lagarde1", "https://tec.openplanner.team/stops/Lagtilf2"], ["https://tec.openplanner.team/stops/X618alb", "https://tec.openplanner.team/stops/X619acb"], ["https://tec.openplanner.team/stops/Lhrsimo2", "https://tec.openplanner.team/stops/Lhrsimo4"], ["https://tec.openplanner.team/stops/N540aga", "https://tec.openplanner.team/stops/N540aja"], ["https://tec.openplanner.team/stops/H2ll188b", "https://tec.openplanner.team/stops/H2ll192a"], ["https://tec.openplanner.team/stops/LGepeck2", "https://tec.openplanner.team/stops/LGeschr2"], ["https://tec.openplanner.team/stops/Lghcfer2", "https://tec.openplanner.team/stops/Lghjans1"], ["https://tec.openplanner.team/stops/LAvatri1", "https://tec.openplanner.team/stops/LAvrout1"], ["https://tec.openplanner.team/stops/LWaatel1", "https://tec.openplanner.team/stops/LWazoni1"], ["https://tec.openplanner.team/stops/Btslnil2", "https://tec.openplanner.team/stops/Btslpbr2"], ["https://tec.openplanner.team/stops/Bwatbce1", "https://tec.openplanner.team/stops/Bwatcpr1"], ["https://tec.openplanner.team/stops/Ctafran2", "https://tec.openplanner.team/stops/N543cpb"], ["https://tec.openplanner.team/stops/H2ch106b", "https://tec.openplanner.team/stops/H2go118a"], ["https://tec.openplanner.team/stops/N543cfb", "https://tec.openplanner.team/stops/N543cjb"], ["https://tec.openplanner.team/stops/X822aga", "https://tec.openplanner.team/stops/X822akb"], ["https://tec.openplanner.team/stops/Cfcchas2", "https://tec.openplanner.team/stops/Cfcstan2"], ["https://tec.openplanner.team/stops/X636aaa", "https://tec.openplanner.team/stops/X636abb"], ["https://tec.openplanner.team/stops/N501bia", "https://tec.openplanner.team/stops/N501lqb"], ["https://tec.openplanner.team/stops/X780afa", "https://tec.openplanner.team/stops/X790aja"], ["https://tec.openplanner.team/stops/N163aab", "https://tec.openplanner.team/stops/N569afa"], ["https://tec.openplanner.team/stops/Canchbr2", "https://tec.openplanner.team/stops/Canfief2"], ["https://tec.openplanner.team/stops/Csobail1", "https://tec.openplanner.team/stops/Csochea1"], ["https://tec.openplanner.team/stops/X639ala", "https://tec.openplanner.team/stops/X639alb"], ["https://tec.openplanner.team/stops/NL57add", "https://tec.openplanner.team/stops/NL57aja"], ["https://tec.openplanner.team/stops/NR21aja", "https://tec.openplanner.team/stops/NR38aba"], ["https://tec.openplanner.team/stops/X639aia", "https://tec.openplanner.team/stops/X639aua"], ["https://tec.openplanner.team/stops/Bolgegl4", "https://tec.openplanner.team/stops/Bolgfon1"], ["https://tec.openplanner.team/stops/Bottcva2", "https://tec.openplanner.team/stops/Bottppa1"], ["https://tec.openplanner.team/stops/H1eo106a", "https://tec.openplanner.team/stops/H1mj127b"], ["https://tec.openplanner.team/stops/Cbwmato2", "https://tec.openplanner.team/stops/Cmgpthi1"], ["https://tec.openplanner.team/stops/Bbghcar1", "https://tec.openplanner.team/stops/Bbghgli2"], ["https://tec.openplanner.team/stops/LWNchar1", "https://tec.openplanner.team/stops/LWNchar2"], ["https://tec.openplanner.team/stops/Blincoo1", "https://tec.openplanner.team/stops/Bpthrsp1"], ["https://tec.openplanner.team/stops/Bnodlce2", "https://tec.openplanner.team/stops/Boplham2"], ["https://tec.openplanner.team/stops/LTyhapp1", "https://tec.openplanner.team/stops/LTyhapp3"], ["https://tec.openplanner.team/stops/H1ba105a", "https://tec.openplanner.team/stops/H1si154a"], ["https://tec.openplanner.team/stops/X831aca", "https://tec.openplanner.team/stops/X831adb"], ["https://tec.openplanner.team/stops/Lhrwigi1", "https://tec.openplanner.team/stops/Lwachal2"], ["https://tec.openplanner.team/stops/Cmlange1", "https://tec.openplanner.team/stops/Cmtrbra2"], ["https://tec.openplanner.team/stops/Bsenpbi2", "https://tec.openplanner.team/stops/Bsensab2"], ["https://tec.openplanner.team/stops/LGlcarr1", "https://tec.openplanner.team/stops/LHZbren2"], ["https://tec.openplanner.team/stops/Bbldgar1", "https://tec.openplanner.team/stops/Bbldvaa2"], ["https://tec.openplanner.team/stops/X739adb", "https://tec.openplanner.team/stops/X739aga"], ["https://tec.openplanner.team/stops/Lbocarr1", "https://tec.openplanner.team/stops/Lbocomm1"], ["https://tec.openplanner.team/stops/X901aib", "https://tec.openplanner.team/stops/X901bsb"], ["https://tec.openplanner.team/stops/LHNgare2", "https://tec.openplanner.team/stops/LVPcoeu2"], ["https://tec.openplanner.team/stops/X657aaa", "https://tec.openplanner.team/stops/X657aba"], ["https://tec.openplanner.team/stops/H1qp141a", "https://tec.openplanner.team/stops/H1qp142a"], ["https://tec.openplanner.team/stops/N537aga", "https://tec.openplanner.team/stops/N537aha"], ["https://tec.openplanner.team/stops/X640ada", "https://tec.openplanner.team/stops/X640aeb"], ["https://tec.openplanner.team/stops/H1ha186b", "https://tec.openplanner.team/stops/H1ha187b"], ["https://tec.openplanner.team/stops/LLOhest2", "https://tec.openplanner.team/stops/LVtchai1"], ["https://tec.openplanner.team/stops/Cflglav1", "https://tec.openplanner.team/stops/Cflglav2"], ["https://tec.openplanner.team/stops/N501aka", "https://tec.openplanner.team/stops/N501akb"], ["https://tec.openplanner.team/stops/Btubga02", "https://tec.openplanner.team/stops/Btubga03"], ["https://tec.openplanner.team/stops/X750aia", "https://tec.openplanner.team/stops/X750aja"], ["https://tec.openplanner.team/stops/N160acb", "https://tec.openplanner.team/stops/N160aga"], ["https://tec.openplanner.team/stops/N251aab", "https://tec.openplanner.team/stops/N286aab"], ["https://tec.openplanner.team/stops/Bcrncen1", "https://tec.openplanner.team/stops/Bcrnegl1"], ["https://tec.openplanner.team/stops/H4he105b", "https://tec.openplanner.team/stops/H4he106a"], ["https://tec.openplanner.team/stops/Bmarvil2", "https://tec.openplanner.team/stops/Csawagn1"], ["https://tec.openplanner.team/stops/H4ty351a", "https://tec.openplanner.team/stops/H4ty351b"], ["https://tec.openplanner.team/stops/X919ada", "https://tec.openplanner.team/stops/X919adb"], ["https://tec.openplanner.team/stops/N504aca", "https://tec.openplanner.team/stops/N511aaa"], ["https://tec.openplanner.team/stops/Cgyduss1", "https://tec.openplanner.team/stops/Cgynuto1"], ["https://tec.openplanner.team/stops/H4sl155a", "https://tec.openplanner.team/stops/H4sl155b"], ["https://tec.openplanner.team/stops/LYegeor2", "https://tec.openplanner.team/stops/LYegeor3"], ["https://tec.openplanner.team/stops/X921afa", "https://tec.openplanner.team/stops/X921aqb"], ["https://tec.openplanner.team/stops/Cgzcorn2", "https://tec.openplanner.team/stops/Cgzvivi1"], ["https://tec.openplanner.team/stops/Bhevgro1", "https://tec.openplanner.team/stops/Bovesnh2"], ["https://tec.openplanner.team/stops/X394aba", "https://tec.openplanner.team/stops/X394aca"], ["https://tec.openplanner.team/stops/Bchgbel2", "https://tec.openplanner.team/stops/Bgisber2"], ["https://tec.openplanner.team/stops/LFehaut2", "https://tec.openplanner.team/stops/LFemoul2"], ["https://tec.openplanner.team/stops/N548asa", "https://tec.openplanner.team/stops/N548aya"], ["https://tec.openplanner.team/stops/N521aja", "https://tec.openplanner.team/stops/N521ala"], ["https://tec.openplanner.team/stops/LHMgrun2", "https://tec.openplanner.team/stops/LSIgehe2"], ["https://tec.openplanner.team/stops/X345aaa", "https://tec.openplanner.team/stops/X345abb"], ["https://tec.openplanner.team/stops/X636amb", "https://tec.openplanner.team/stops/X636aqb"], ["https://tec.openplanner.team/stops/N536aba", "https://tec.openplanner.team/stops/N580ada"], ["https://tec.openplanner.team/stops/LCPgare1", "https://tec.openplanner.team/stops/LCPgare2"], ["https://tec.openplanner.team/stops/LeUhaas3", "https://tec.openplanner.team/stops/LeUhaas4"], ["https://tec.openplanner.team/stops/LVPcoeu1", "https://tec.openplanner.team/stops/LVPeg--2"], ["https://tec.openplanner.team/stops/Bhenpla2", "https://tec.openplanner.team/stops/Bquegen1"], ["https://tec.openplanner.team/stops/N137ada", "https://tec.openplanner.team/stops/N137adb"], ["https://tec.openplanner.team/stops/Lvcbasi*", "https://tec.openplanner.team/stops/Lvcdumo1"], ["https://tec.openplanner.team/stops/H4lg102a", "https://tec.openplanner.team/stops/H4rm112b"], ["https://tec.openplanner.team/stops/N236aba", "https://tec.openplanner.team/stops/N254agb"], ["https://tec.openplanner.team/stops/X721aob", "https://tec.openplanner.team/stops/X721apa"], ["https://tec.openplanner.team/stops/H2ha133a", "https://tec.openplanner.team/stops/H2ha133b"], ["https://tec.openplanner.team/stops/X989aea", "https://tec.openplanner.team/stops/X989aeb"], ["https://tec.openplanner.team/stops/H1bi101b", "https://tec.openplanner.team/stops/H1bi103b"], ["https://tec.openplanner.team/stops/N539awb", "https://tec.openplanner.team/stops/N539azb"], ["https://tec.openplanner.team/stops/H1je211a", "https://tec.openplanner.team/stops/H1je225b"], ["https://tec.openplanner.team/stops/Caibras1", "https://tec.openplanner.team/stops/Caihai82"], ["https://tec.openplanner.team/stops/Bhtibru2", "https://tec.openplanner.team/stops/Bhtirin2"], ["https://tec.openplanner.team/stops/Chhlori2", "https://tec.openplanner.team/stops/Cjxpann2"], ["https://tec.openplanner.team/stops/LNCsart1", "https://tec.openplanner.team/stops/LRachen2"], ["https://tec.openplanner.team/stops/H1ha182a", "https://tec.openplanner.team/stops/H1ha198a"], ["https://tec.openplanner.team/stops/LVIcarm4", "https://tec.openplanner.team/stops/LVIecol2"], ["https://tec.openplanner.team/stops/X754aha", "https://tec.openplanner.team/stops/X754aja"], ["https://tec.openplanner.team/stops/LhSbruc1", "https://tec.openplanner.team/stops/LhSfrep1"], ["https://tec.openplanner.team/stops/LESvign1", "https://tec.openplanner.team/stops/LFNtill1"], ["https://tec.openplanner.team/stops/LAOpres1", "https://tec.openplanner.team/stops/LLStour2"], ["https://tec.openplanner.team/stops/Cslbarb1", "https://tec.openplanner.team/stops/Cvtmaro1"], ["https://tec.openplanner.team/stops/LTgbalm2", "https://tec.openplanner.team/stops/LTgwarf1"], ["https://tec.openplanner.team/stops/X672aga", "https://tec.openplanner.team/stops/X672agb"], ["https://tec.openplanner.team/stops/Cbckios1", "https://tec.openplanner.team/stops/Cbckios2"], ["https://tec.openplanner.team/stops/N501flb", "https://tec.openplanner.team/stops/N501lwb"], ["https://tec.openplanner.team/stops/X898aib", "https://tec.openplanner.team/stops/X898anb"], ["https://tec.openplanner.team/stops/H4lh120b", "https://tec.openplanner.team/stops/H4oe147a"], ["https://tec.openplanner.team/stops/Berngrt2", "https://tec.openplanner.team/stops/Bwspbbo2"], ["https://tec.openplanner.team/stops/X917afa", "https://tec.openplanner.team/stops/X917aia"], ["https://tec.openplanner.team/stops/Bixlpat2", "https://tec.openplanner.team/stops/Buccbas2"], ["https://tec.openplanner.team/stops/LHNcreh1", "https://tec.openplanner.team/stops/LHNvill2"], ["https://tec.openplanner.team/stops/H1el136a", "https://tec.openplanner.team/stops/H1tl121a"], ["https://tec.openplanner.team/stops/X896aca", "https://tec.openplanner.team/stops/X898afa"], ["https://tec.openplanner.team/stops/LFtn6--2", "https://tec.openplanner.team/stops/LRMeg--2"], ["https://tec.openplanner.team/stops/H4lh120a", "https://tec.openplanner.team/stops/H4lh120b"], ["https://tec.openplanner.team/stops/Bbbksth1", "https://tec.openplanner.team/stops/Bhmmvdu2"], ["https://tec.openplanner.team/stops/LPLg90-1", "https://tec.openplanner.team/stops/LPLline2"], ["https://tec.openplanner.team/stops/Bmsgpfo1", "https://tec.openplanner.team/stops/Bmsgpfo2"], ["https://tec.openplanner.team/stops/Bwavcen1", "https://tec.openplanner.team/stops/Bwaveur1"], ["https://tec.openplanner.team/stops/LSPmart4", "https://tec.openplanner.team/stops/LWMchpl2"], ["https://tec.openplanner.team/stops/X996aga", "https://tec.openplanner.team/stops/X996ahb"], ["https://tec.openplanner.team/stops/H4mt217b", "https://tec.openplanner.team/stops/H4ru235a"], ["https://tec.openplanner.team/stops/X696aca", "https://tec.openplanner.team/stops/X696ada"], ["https://tec.openplanner.team/stops/Cbupla1", "https://tec.openplanner.team/stops/Cbupla2"], ["https://tec.openplanner.team/stops/LCEboll2", "https://tec.openplanner.team/stops/LCEeg--2"], ["https://tec.openplanner.team/stops/X754aob", "https://tec.openplanner.team/stops/X754avb"], ["https://tec.openplanner.team/stops/N501kfb", "https://tec.openplanner.team/stops/N501kic"], ["https://tec.openplanner.team/stops/LFCalte1", "https://tec.openplanner.team/stops/LFCvoer1"], ["https://tec.openplanner.team/stops/Lanfont1", "https://tec.openplanner.team/stops/Lannico1"], ["https://tec.openplanner.team/stops/Blanath1", "https://tec.openplanner.team/stops/LTobilz2"], ["https://tec.openplanner.team/stops/LrAdrie3", "https://tec.openplanner.team/stops/LrApont2"], ["https://tec.openplanner.team/stops/X986aib", "https://tec.openplanner.team/stops/X986asa"], ["https://tec.openplanner.team/stops/N543bfa", "https://tec.openplanner.team/stops/N543bgc"], ["https://tec.openplanner.team/stops/LNEolne1", "https://tec.openplanner.team/stops/LVosoir2"], ["https://tec.openplanner.team/stops/X746ahc", "https://tec.openplanner.team/stops/X746aia"], ["https://tec.openplanner.team/stops/H1eu103a", "https://tec.openplanner.team/stops/H1eu105b"], ["https://tec.openplanner.team/stops/LnErech1", "https://tec.openplanner.team/stops/LoEbach1"], ["https://tec.openplanner.team/stops/H1ni322a", "https://tec.openplanner.team/stops/H1ni323a"], ["https://tec.openplanner.team/stops/Cbtgemi2", "https://tec.openplanner.team/stops/Cfrcoqu2"], ["https://tec.openplanner.team/stops/Bbchtry1", "https://tec.openplanner.team/stops/Bwaurge1"], ["https://tec.openplanner.team/stops/Llgguer1", "https://tec.openplanner.team/stops/Llghopo1"], ["https://tec.openplanner.team/stops/Cflmarq1", "https://tec.openplanner.team/stops/Cflmarq2"], ["https://tec.openplanner.team/stops/N538aka", "https://tec.openplanner.team/stops/N538akb"], ["https://tec.openplanner.team/stops/H1ca186b", "https://tec.openplanner.team/stops/H1ma230b"], ["https://tec.openplanner.team/stops/X650ama", "https://tec.openplanner.team/stops/X650anb"], ["https://tec.openplanner.team/stops/H4bo110a", "https://tec.openplanner.team/stops/H4bo181a"], ["https://tec.openplanner.team/stops/LBKmoes1", "https://tec.openplanner.team/stops/LOesour1"], ["https://tec.openplanner.team/stops/LPLcarr3", "https://tec.openplanner.team/stops/LPLcarr4"], ["https://tec.openplanner.team/stops/X747aaa", "https://tec.openplanner.team/stops/X747aac"], ["https://tec.openplanner.team/stops/N121abb", "https://tec.openplanner.team/stops/N122adb"], ["https://tec.openplanner.team/stops/Cmmheur2", "https://tec.openplanner.team/stops/Cmmjami2"], ["https://tec.openplanner.team/stops/Cmlcaya1", "https://tec.openplanner.team/stops/Cmlener2"], ["https://tec.openplanner.team/stops/Llgangl2", "https://tec.openplanner.team/stops/Llgbatt1"], ["https://tec.openplanner.team/stops/X939aga", "https://tec.openplanner.team/stops/X939agb"], ["https://tec.openplanner.team/stops/NL57adc", "https://tec.openplanner.team/stops/NL57add"], ["https://tec.openplanner.team/stops/X638aha", "https://tec.openplanner.team/stops/X638ahb"], ["https://tec.openplanner.team/stops/H2bh107a", "https://tec.openplanner.team/stops/H2jo164b"], ["https://tec.openplanner.team/stops/X991aca", "https://tec.openplanner.team/stops/X991aha"], ["https://tec.openplanner.team/stops/Ctrdelb2", "https://tec.openplanner.team/stops/Ctrplac1"], ["https://tec.openplanner.team/stops/Lceconf2", "https://tec.openplanner.team/stops/Lgrjobe1"], ["https://tec.openplanner.team/stops/Bbeamon2", "https://tec.openplanner.team/stops/Bbeasta2"], ["https://tec.openplanner.team/stops/N202abb", "https://tec.openplanner.team/stops/N202aeb"], ["https://tec.openplanner.team/stops/LLMjacq2", "https://tec.openplanner.team/stops/LThelse2"], ["https://tec.openplanner.team/stops/Bnivasa2", "https://tec.openplanner.team/stops/Bnivcol2"], ["https://tec.openplanner.team/stops/LnEleje2", "https://tec.openplanner.team/stops/LsVhunn2"], ["https://tec.openplanner.team/stops/N423aeb", "https://tec.openplanner.team/stops/N423afb"], ["https://tec.openplanner.team/stops/H1gy111b", "https://tec.openplanner.team/stops/H1gy114b"], ["https://tec.openplanner.team/stops/LeUauto2", "https://tec.openplanner.team/stops/LeUoe542"], ["https://tec.openplanner.team/stops/Bbeubos1", "https://tec.openplanner.team/stops/N524acb"], ["https://tec.openplanner.team/stops/H1je213b", "https://tec.openplanner.team/stops/H1je220b"], ["https://tec.openplanner.team/stops/LLevaux1", "https://tec.openplanner.team/stops/X561aeb"], ["https://tec.openplanner.team/stops/Ccohuli1", "https://tec.openplanner.team/stops/Crowilb2"], ["https://tec.openplanner.team/stops/H4ba102a", "https://tec.openplanner.team/stops/H4ba103a"], ["https://tec.openplanner.team/stops/N141aaa", "https://tec.openplanner.team/stops/N426aaa"], ["https://tec.openplanner.team/stops/H1te173b", "https://tec.openplanner.team/stops/H1te190a"], ["https://tec.openplanner.team/stops/H3so156b", "https://tec.openplanner.team/stops/H3so168b"], ["https://tec.openplanner.team/stops/H2go119a", "https://tec.openplanner.team/stops/H2go120a"], ["https://tec.openplanner.team/stops/X614aeb", "https://tec.openplanner.team/stops/X614aya"], ["https://tec.openplanner.team/stops/Lligara1", "https://tec.openplanner.team/stops/Lligara2"], ["https://tec.openplanner.team/stops/Llghopo1", "https://tec.openplanner.team/stops/Llghopo2"], ["https://tec.openplanner.team/stops/Ccyga8", "https://tec.openplanner.team/stops/Ccygara1"], ["https://tec.openplanner.team/stops/N131aha", "https://tec.openplanner.team/stops/N138aab"], ["https://tec.openplanner.team/stops/Cradest1", "https://tec.openplanner.team/stops/Cravold1"], ["https://tec.openplanner.team/stops/Lrosoxh1", "https://tec.openplanner.team/stops/Lrosoxh2"], ["https://tec.openplanner.team/stops/N423abb", "https://tec.openplanner.team/stops/N425aga"], ["https://tec.openplanner.team/stops/H1po130b", "https://tec.openplanner.team/stops/H1po133b"], ["https://tec.openplanner.team/stops/LHEches1", "https://tec.openplanner.team/stops/LHEches4"], ["https://tec.openplanner.team/stops/Cna4che2", "https://tec.openplanner.team/stops/Cnachcu1"], ["https://tec.openplanner.team/stops/LWAlong1", "https://tec.openplanner.team/stops/LWAlong2"], ["https://tec.openplanner.team/stops/Cmobeau1", "https://tec.openplanner.team/stops/Cmobeau2"], ["https://tec.openplanner.team/stops/Csobrou2", "https://tec.openplanner.team/stops/Csocime2"], ["https://tec.openplanner.team/stops/Ltibure1", "https://tec.openplanner.team/stops/Ltimarq2"], ["https://tec.openplanner.team/stops/LbTaral2", "https://tec.openplanner.team/stops/LbThutt2"], ["https://tec.openplanner.team/stops/H1sd346a", "https://tec.openplanner.team/stops/H1sd366b"], ["https://tec.openplanner.team/stops/N134aac", "https://tec.openplanner.team/stops/N134acb"], ["https://tec.openplanner.team/stops/H3br103a", "https://tec.openplanner.team/stops/H3so187a"], ["https://tec.openplanner.team/stops/N155acb", "https://tec.openplanner.team/stops/N155ada"], ["https://tec.openplanner.team/stops/H2ca101a", "https://tec.openplanner.team/stops/H2ca102b"], ["https://tec.openplanner.team/stops/N515akb", "https://tec.openplanner.team/stops/N515alb"], ["https://tec.openplanner.team/stops/LWbcarr1", "https://tec.openplanner.team/stops/X512aba"], ["https://tec.openplanner.team/stops/N501eaa", "https://tec.openplanner.team/stops/N501kqb"], ["https://tec.openplanner.team/stops/H4bs112a", "https://tec.openplanner.team/stops/H4ca121b"], ["https://tec.openplanner.team/stops/H1en102a", "https://tec.openplanner.team/stops/H1mk123a"], ["https://tec.openplanner.team/stops/Cgzfarc2", "https://tec.openplanner.team/stops/Cgzha622"], ["https://tec.openplanner.team/stops/Claptcf1", "https://tec.openplanner.team/stops/NC23acb"], ["https://tec.openplanner.team/stops/H4be113a", "https://tec.openplanner.team/stops/H4be145a"], ["https://tec.openplanner.team/stops/X601ama", "https://tec.openplanner.team/stops/X601ana"], ["https://tec.openplanner.team/stops/H1ms270b", "https://tec.openplanner.team/stops/H1ob334b"], ["https://tec.openplanner.team/stops/LCRchpl2", "https://tec.openplanner.team/stops/LCReg--2"], ["https://tec.openplanner.team/stops/H4ka186a", "https://tec.openplanner.team/stops/H4ob124a"], ["https://tec.openplanner.team/stops/LMIpatr3", "https://tec.openplanner.team/stops/LSOathe2"], ["https://tec.openplanner.team/stops/LSBdelc1", "https://tec.openplanner.team/stops/LSBjoli1"], ["https://tec.openplanner.team/stops/LBNauto2", "https://tec.openplanner.team/stops/LWEcarr1"], ["https://tec.openplanner.team/stops/N501crc", "https://tec.openplanner.team/stops/N501ctb"], ["https://tec.openplanner.team/stops/H4mx118a", "https://tec.openplanner.team/stops/H4mx119c"], ["https://tec.openplanner.team/stops/X986aba", "https://tec.openplanner.team/stops/X986abb"], ["https://tec.openplanner.team/stops/LeIpiro3", "https://tec.openplanner.team/stops/LiVkreu3"], ["https://tec.openplanner.team/stops/LHhchau1", "https://tec.openplanner.team/stops/LHhmohe2"], ["https://tec.openplanner.team/stops/X224adb", "https://tec.openplanner.team/stops/X224aeb"], ["https://tec.openplanner.team/stops/X364ada", "https://tec.openplanner.team/stops/X371ajb"], ["https://tec.openplanner.team/stops/Cmiegli1", "https://tec.openplanner.team/stops/Cvtmaro1"], ["https://tec.openplanner.team/stops/LLrdigu2", "https://tec.openplanner.team/stops/LLrgare2"], ["https://tec.openplanner.team/stops/H2ha139a", "https://tec.openplanner.team/stops/H2ha141c"], ["https://tec.openplanner.team/stops/H1hn364a", "https://tec.openplanner.team/stops/H1ms257a"], ["https://tec.openplanner.team/stops/Bcrbgro1", "https://tec.openplanner.team/stops/Bcrbrpb2"], ["https://tec.openplanner.team/stops/Cladura5", "https://tec.openplanner.team/stops/NC23aaa"], ["https://tec.openplanner.team/stops/X901axa", "https://tec.openplanner.team/stops/X901axb"], ["https://tec.openplanner.team/stops/LrUbrac2", "https://tec.openplanner.team/stops/LrUkult1"], ["https://tec.openplanner.team/stops/X850abb", "https://tec.openplanner.team/stops/X850aca"], ["https://tec.openplanner.team/stops/Lflroms2", "https://tec.openplanner.team/stops/Lflroms5"], ["https://tec.openplanner.team/stops/N254aba", "https://tec.openplanner.team/stops/N254aca"], ["https://tec.openplanner.team/stops/LwAkett1", "https://tec.openplanner.team/stops/LwAstum1"], ["https://tec.openplanner.team/stops/H4de113a", "https://tec.openplanner.team/stops/H4de113b"], ["https://tec.openplanner.team/stops/X897aea", "https://tec.openplanner.team/stops/X897aeb"], ["https://tec.openplanner.team/stops/H2ha135c", "https://tec.openplanner.team/stops/H2tr245a"], ["https://tec.openplanner.team/stops/H1gh148a", "https://tec.openplanner.team/stops/H1gh165a"], ["https://tec.openplanner.team/stops/Bhmmcge2", "https://tec.openplanner.team/stops/Bhmmgar1"], ["https://tec.openplanner.team/stops/X661aka", "https://tec.openplanner.team/stops/X661bbb"], ["https://tec.openplanner.team/stops/X639aab", "https://tec.openplanner.team/stops/X639asa"], ["https://tec.openplanner.team/stops/Bgembhe2", "https://tec.openplanner.team/stops/N576ana"], ["https://tec.openplanner.team/stops/Cnafont1", "https://tec.openplanner.team/stops/Cnahahe1"], ["https://tec.openplanner.team/stops/Barcpre1", "https://tec.openplanner.team/stops/Bnettou1"], ["https://tec.openplanner.team/stops/H4bd110a", "https://tec.openplanner.team/stops/H4ma203a"], ["https://tec.openplanner.team/stops/LLrc_ip3", "https://tec.openplanner.team/stops/LWMcent2"], ["https://tec.openplanner.team/stops/X619aia", "https://tec.openplanner.team/stops/X619aib"], ["https://tec.openplanner.team/stops/Bwatjbo2", "https://tec.openplanner.team/stops/Bwatprp2"], ["https://tec.openplanner.team/stops/Csregli1", "https://tec.openplanner.team/stops/Csregli2"], ["https://tec.openplanner.team/stops/LHUeuro1", "https://tec.openplanner.team/stops/LHUlebe0"], ["https://tec.openplanner.team/stops/Brixmar3", "https://tec.openplanner.team/stops/Brixpao3"], ["https://tec.openplanner.team/stops/H1sb147a", "https://tec.openplanner.team/stops/H1sb149a"], ["https://tec.openplanner.team/stops/Bjodcar1", "https://tec.openplanner.team/stops/Bjodtpo2"], ["https://tec.openplanner.team/stops/N501ipa", "https://tec.openplanner.team/stops/N501ipb"], ["https://tec.openplanner.team/stops/Lghchap2", "https://tec.openplanner.team/stops/Lghencl2"], ["https://tec.openplanner.team/stops/X901bqa", "https://tec.openplanner.team/stops/X901bqb"], ["https://tec.openplanner.team/stops/Csrcarr1", "https://tec.openplanner.team/stops/Csrcarr2"], ["https://tec.openplanner.team/stops/Borblim1", "https://tec.openplanner.team/stops/Borblim2"], ["https://tec.openplanner.team/stops/LLtwanz1", "https://tec.openplanner.team/stops/LLtwanz2"], ["https://tec.openplanner.team/stops/Bbchcab1", "https://tec.openplanner.team/stops/Bbchdra1"], ["https://tec.openplanner.team/stops/H4ea129a", "https://tec.openplanner.team/stops/H4ea129b"], ["https://tec.openplanner.team/stops/Bitrcha1", "https://tec.openplanner.team/stops/Bitrcha2"], ["https://tec.openplanner.team/stops/H1bl104c", "https://tec.openplanner.team/stops/H1pd143a"], ["https://tec.openplanner.team/stops/H1br123a", "https://tec.openplanner.team/stops/H1br127b"], ["https://tec.openplanner.team/stops/Cglfrom1", "https://tec.openplanner.team/stops/Cgnpass2"], ["https://tec.openplanner.team/stops/X750bfa", "https://tec.openplanner.team/stops/X750bna"], ["https://tec.openplanner.team/stops/Blimch%C3%A22", "https://tec.openplanner.team/stops/Bottpin1"], ["https://tec.openplanner.team/stops/X774ahb", "https://tec.openplanner.team/stops/X775aha"], ["https://tec.openplanner.team/stops/LmTkirc1", "https://tec.openplanner.team/stops/LmTschi2"], ["https://tec.openplanner.team/stops/H1ma233a", "https://tec.openplanner.team/stops/H1ob331b"], ["https://tec.openplanner.team/stops/Cmyland5", "https://tec.openplanner.team/stops/Cmymarb2"], ["https://tec.openplanner.team/stops/N507aqb", "https://tec.openplanner.team/stops/N581acb"], ["https://tec.openplanner.team/stops/H4ty342b", "https://tec.openplanner.team/stops/H4ty397b"], ["https://tec.openplanner.team/stops/X950aab", "https://tec.openplanner.team/stops/X950ada"], ["https://tec.openplanner.team/stops/Bbrlpar2", "https://tec.openplanner.team/stops/Bbrlrph2"], ["https://tec.openplanner.team/stops/Lhrbell1", "https://tec.openplanner.team/stops/Lhrtunn2"], ["https://tec.openplanner.team/stops/N232bab", "https://tec.openplanner.team/stops/N232bba"], ["https://tec.openplanner.team/stops/Btubdeh2", "https://tec.openplanner.team/stops/Btubga04"], ["https://tec.openplanner.team/stops/Cmeptmi5", "https://tec.openplanner.team/stops/Cmeptmi6"], ["https://tec.openplanner.team/stops/Bgliaau2", "https://tec.openplanner.team/stops/Bmalwvi1"], ["https://tec.openplanner.team/stops/N308aja", "https://tec.openplanner.team/stops/X308akb"], ["https://tec.openplanner.team/stops/Cgzbouh2", "https://tec.openplanner.team/stops/Cgzgrru2"], ["https://tec.openplanner.team/stops/LAieg--3", "https://tec.openplanner.team/stops/LAipala1"], ["https://tec.openplanner.team/stops/H4bo181a", "https://tec.openplanner.team/stops/H4bo181b"], ["https://tec.openplanner.team/stops/LHEcoll1", "https://tec.openplanner.team/stops/LHEcoll2"], ["https://tec.openplanner.team/stops/H4hu116b", "https://tec.openplanner.team/stops/H4ld130b"], ["https://tec.openplanner.team/stops/LTEcamp2", "https://tec.openplanner.team/stops/LTEkl121"], ["https://tec.openplanner.team/stops/LWAlieg2", "https://tec.openplanner.team/stops/LWAvisi2"], ["https://tec.openplanner.team/stops/Lghmeun3", "https://tec.openplanner.team/stops/Ljegare2"], ["https://tec.openplanner.team/stops/H1og133a", "https://tec.openplanner.team/stops/H4re226a"], ["https://tec.openplanner.team/stops/H1fl138b", "https://tec.openplanner.team/stops/H1fr109b"], ["https://tec.openplanner.team/stops/X904aka", "https://tec.openplanner.team/stops/X943afa"], ["https://tec.openplanner.team/stops/N553afa", "https://tec.openplanner.team/stops/N553afb"], ["https://tec.openplanner.team/stops/Bmouegl2", "https://tec.openplanner.team/stops/Bottpma1"], ["https://tec.openplanner.team/stops/LTyh24-1", "https://tec.openplanner.team/stops/LTywyna2"], ["https://tec.openplanner.team/stops/Cmamonu2", "https://tec.openplanner.team/stops/Cmohame1"], ["https://tec.openplanner.team/stops/N513apb", "https://tec.openplanner.team/stops/N513ara"], ["https://tec.openplanner.team/stops/N560ada", "https://tec.openplanner.team/stops/N560adb"], ["https://tec.openplanner.team/stops/H1em107a", "https://tec.openplanner.team/stops/H1em109b"], ["https://tec.openplanner.team/stops/N536ada", "https://tec.openplanner.team/stops/N580aga"], ["https://tec.openplanner.team/stops/Cchsud04", "https://tec.openplanner.team/stops/Cmlgoff1"], ["https://tec.openplanner.team/stops/LAUcose2", "https://tec.openplanner.team/stops/LFdbruy2"], ["https://tec.openplanner.team/stops/N161aab", "https://tec.openplanner.team/stops/N161afb"], ["https://tec.openplanner.team/stops/X788ada", "https://tec.openplanner.team/stops/X788aeb"], ["https://tec.openplanner.team/stops/N503aea", "https://tec.openplanner.team/stops/N503aib"], ["https://tec.openplanner.team/stops/LMfange2", "https://tec.openplanner.team/stops/LMfbuck1"], ["https://tec.openplanner.team/stops/Lvimc--2", "https://tec.openplanner.team/stops/Lvitour1"], ["https://tec.openplanner.team/stops/X782akb", "https://tec.openplanner.team/stops/X782ama"], ["https://tec.openplanner.team/stops/LaNdorf2", "https://tec.openplanner.team/stops/LsC216-2"], ["https://tec.openplanner.team/stops/Lseberg4", "https://tec.openplanner.team/stops/Lsefive1"], ["https://tec.openplanner.team/stops/Bbiehev2", "https://tec.openplanner.team/stops/Bboncgs1"], ["https://tec.openplanner.team/stops/LRteg--*", "https://tec.openplanner.team/stops/LVbpave1"], ["https://tec.openplanner.team/stops/LBItnt-*", "https://tec.openplanner.team/stops/LVefont2"], ["https://tec.openplanner.team/stops/Cctchav1", "https://tec.openplanner.team/stops/Cctjoue1"], ["https://tec.openplanner.team/stops/Blemwob1", "https://tec.openplanner.team/stops/Blemwob4"], ["https://tec.openplanner.team/stops/LMebove1", "https://tec.openplanner.team/stops/LMemora2"], ["https://tec.openplanner.team/stops/Baeggar1", "https://tec.openplanner.team/stops/NR38abb"], ["https://tec.openplanner.team/stops/Lemarde2", "https://tec.openplanner.team/stops/Lemhuet1"], ["https://tec.openplanner.team/stops/LGepeck1", "https://tec.openplanner.team/stops/LGepeck2"], ["https://tec.openplanner.team/stops/LSGhagn1", "https://tec.openplanner.team/stops/LSGmale1"], ["https://tec.openplanner.team/stops/N117aaa", "https://tec.openplanner.team/stops/N117azb"], ["https://tec.openplanner.team/stops/H1je216b", "https://tec.openplanner.team/stops/H1je368a"], ["https://tec.openplanner.team/stops/Bolppla1", "https://tec.openplanner.team/stops/Bolppla3"], ["https://tec.openplanner.team/stops/X346aba", "https://tec.openplanner.team/stops/X346afa"], ["https://tec.openplanner.team/stops/Lvecrot2", "https://tec.openplanner.team/stops/Lvepoud1"], ["https://tec.openplanner.team/stops/H4ka179a", "https://tec.openplanner.team/stops/H4ka399a"], ["https://tec.openplanner.team/stops/H2go114d", "https://tec.openplanner.team/stops/H2go115a"], ["https://tec.openplanner.team/stops/H2ha132b", "https://tec.openplanner.team/stops/H2tr247b"], ["https://tec.openplanner.team/stops/H1le118a", "https://tec.openplanner.team/stops/H1ol142a"], ["https://tec.openplanner.team/stops/LAYdieu2", "https://tec.openplanner.team/stops/LAYsupe2"], ["https://tec.openplanner.team/stops/Cpcathe2", "https://tec.openplanner.team/stops/Cpctrau2"], ["https://tec.openplanner.team/stops/X948aoa", "https://tec.openplanner.team/stops/X949ajb"], ["https://tec.openplanner.team/stops/N501fra", "https://tec.openplanner.team/stops/N501gma"], ["https://tec.openplanner.team/stops/Bjod7co2", "https://tec.openplanner.team/stops/Bjodfab2"], ["https://tec.openplanner.team/stops/Bcrbast1", "https://tec.openplanner.team/stops/Bcrbast2"], ["https://tec.openplanner.team/stops/Lbrfusi1", "https://tec.openplanner.team/stops/Lbrfusi2"], ["https://tec.openplanner.team/stops/NL37aja", "https://tec.openplanner.team/stops/NL75aca"], ["https://tec.openplanner.team/stops/Blimch%C3%A21", "https://tec.openplanner.team/stops/Blimrof2"], ["https://tec.openplanner.team/stops/Bmsgaxp1", "https://tec.openplanner.team/stops/Bmsgaxp2"], ["https://tec.openplanner.team/stops/Crcpcom1", "https://tec.openplanner.team/stops/Crcplac3"], ["https://tec.openplanner.team/stops/LCsfize1", "https://tec.openplanner.team/stops/LCsgend2"], ["https://tec.openplanner.team/stops/LaSbahn1", "https://tec.openplanner.team/stops/LwAlont1"], ["https://tec.openplanner.team/stops/H4mo178a", "https://tec.openplanner.team/stops/H4mo184a"], ["https://tec.openplanner.team/stops/Bglicsm1", "https://tec.openplanner.team/stops/Bgligra2"], ["https://tec.openplanner.team/stops/Bbealou2", "https://tec.openplanner.team/stops/Bhmmbog1"], ["https://tec.openplanner.team/stops/X713aba", "https://tec.openplanner.team/stops/X713abb"], ["https://tec.openplanner.team/stops/X659aja", "https://tec.openplanner.team/stops/X659aka"], ["https://tec.openplanner.team/stops/N506bba", "https://tec.openplanner.team/stops/N506bfb"], ["https://tec.openplanner.team/stops/LbUhuge1", "https://tec.openplanner.team/stops/LbUpost1"], ["https://tec.openplanner.team/stops/LNCmarc1", "https://tec.openplanner.team/stops/LNCvill2"], ["https://tec.openplanner.team/stops/Cmomalg2", "https://tec.openplanner.team/stops/Cromart2"], ["https://tec.openplanner.team/stops/X790aha", "https://tec.openplanner.team/stops/X790ahb"], ["https://tec.openplanner.team/stops/LMfbacu1", "https://tec.openplanner.team/stops/LMfsart2"], ["https://tec.openplanner.team/stops/X672aab", "https://tec.openplanner.team/stops/X672abb"], ["https://tec.openplanner.team/stops/X948ava", "https://tec.openplanner.team/stops/X948awa"], ["https://tec.openplanner.team/stops/X561aeb", "https://tec.openplanner.team/stops/X576afb"], ["https://tec.openplanner.team/stops/Cfamate1", "https://tec.openplanner.team/stops/Cpicite1"], ["https://tec.openplanner.team/stops/LeMdorf1", "https://tec.openplanner.team/stops/LmFdorf1"], ["https://tec.openplanner.team/stops/Louhauf1", "https://tec.openplanner.team/stops/Lscstan3"], ["https://tec.openplanner.team/stops/X661ana", "https://tec.openplanner.team/stops/X661apa"], ["https://tec.openplanner.team/stops/Lvochev1", "https://tec.openplanner.team/stops/Lvoplac1"], ["https://tec.openplanner.team/stops/LeYauss2", "https://tec.openplanner.team/stops/LeYdepo1"], ["https://tec.openplanner.team/stops/Cgogare2", "https://tec.openplanner.team/stops/Cragoss2"], ["https://tec.openplanner.team/stops/Cfachap2", "https://tec.openplanner.team/stops/Cfastan2"], ["https://tec.openplanner.team/stops/H2bh113b", "https://tec.openplanner.team/stops/H2lc146b"], ["https://tec.openplanner.team/stops/NR21aaa", "https://tec.openplanner.team/stops/NR38afb"], ["https://tec.openplanner.team/stops/N337ahb", "https://tec.openplanner.team/stops/N337aib"], ["https://tec.openplanner.team/stops/LBUplac1", "https://tec.openplanner.team/stops/NL30afb"], ["https://tec.openplanner.team/stops/Bbstchv1", "https://tec.openplanner.team/stops/Btilsce1"], ["https://tec.openplanner.team/stops/X664abb", "https://tec.openplanner.team/stops/X664add"], ["https://tec.openplanner.team/stops/NL76aaa", "https://tec.openplanner.team/stops/NL76ana"], ["https://tec.openplanner.team/stops/H1au113b", "https://tec.openplanner.team/stops/H1mr125a"], ["https://tec.openplanner.team/stops/Lpeatel1", "https://tec.openplanner.team/stops/Lpeprev2"], ["https://tec.openplanner.team/stops/Lheneuv3", "https://tec.openplanner.team/stops/Lheneuv4"], ["https://tec.openplanner.team/stops/Cthathe4", "https://tec.openplanner.team/stops/Cthgend2"], ["https://tec.openplanner.team/stops/H1cv101a", "https://tec.openplanner.team/stops/H1ju121a"], ["https://tec.openplanner.team/stops/N516aha", "https://tec.openplanner.team/stops/N516ahb"], ["https://tec.openplanner.team/stops/LOthiro2", "https://tec.openplanner.team/stops/LVsbrux2"], ["https://tec.openplanner.team/stops/N535abb", "https://tec.openplanner.team/stops/N535aea"], ["https://tec.openplanner.team/stops/N501eby", "https://tec.openplanner.team/stops/N501fwz"], ["https://tec.openplanner.team/stops/N503aea", "https://tec.openplanner.team/stops/N580aca"], ["https://tec.openplanner.team/stops/X911acb", "https://tec.openplanner.team/stops/X911aoa"], ["https://tec.openplanner.team/stops/Bgntffo1", "https://tec.openplanner.team/stops/Bgntpla2"], ["https://tec.openplanner.team/stops/LVPeg--1", "https://tec.openplanner.team/stops/LVPgrot2"], ["https://tec.openplanner.team/stops/Bpthcai1", "https://tec.openplanner.team/stops/Bwanorp1"], ["https://tec.openplanner.team/stops/LMOfrel2", "https://tec.openplanner.team/stops/LNveg--1"], ["https://tec.openplanner.team/stops/N514aaa", "https://tec.openplanner.team/stops/N514aca"], ["https://tec.openplanner.team/stops/Lsepapi1", "https://tec.openplanner.team/stops/Lsepuit2"], ["https://tec.openplanner.team/stops/N321aeb", "https://tec.openplanner.team/stops/N387aab"], ["https://tec.openplanner.team/stops/LHNgend2", "https://tec.openplanner.team/stops/LVPcoeu1"], ["https://tec.openplanner.team/stops/X922aha", "https://tec.openplanner.team/stops/X922aia"], ["https://tec.openplanner.team/stops/X812aza", "https://tec.openplanner.team/stops/X812baa"], ["https://tec.openplanner.team/stops/X919afa", "https://tec.openplanner.team/stops/X919aoa"], ["https://tec.openplanner.team/stops/Cplcafp2", "https://tec.openplanner.team/stops/Cplstfa3"], ["https://tec.openplanner.team/stops/LmRkreu1", "https://tec.openplanner.team/stops/LmRkreu4"], ["https://tec.openplanner.team/stops/N534asb", "https://tec.openplanner.team/stops/N543coa"], ["https://tec.openplanner.team/stops/X801apb", "https://tec.openplanner.team/stops/X801asa"], ["https://tec.openplanner.team/stops/N161aea", "https://tec.openplanner.team/stops/N161aeb"], ["https://tec.openplanner.team/stops/Lsmcime1", "https://tec.openplanner.team/stops/Lsmdepo1"], ["https://tec.openplanner.team/stops/LBUvall2", "https://tec.openplanner.team/stops/NL57akb"], ["https://tec.openplanner.team/stops/H1ms260a", "https://tec.openplanner.team/stops/H1ms308c"], ["https://tec.openplanner.team/stops/H1hh114a", "https://tec.openplanner.team/stops/H1hh114b"], ["https://tec.openplanner.team/stops/LTPlegr1", "https://tec.openplanner.team/stops/LTPtroi1"], ["https://tec.openplanner.team/stops/N579aea", "https://tec.openplanner.team/stops/N579aeb"], ["https://tec.openplanner.team/stops/H1mv239a", "https://tec.openplanner.team/stops/H1mv241a"], ["https://tec.openplanner.team/stops/LbOdorf1", "https://tec.openplanner.team/stops/LbOdorf2"], ["https://tec.openplanner.team/stops/H1je222a", "https://tec.openplanner.team/stops/H1je366b"], ["https://tec.openplanner.team/stops/LHTbeau1", "https://tec.openplanner.team/stops/LHThall2"], ["https://tec.openplanner.team/stops/Cmlbeau4", "https://tec.openplanner.team/stops/Cmlrous1"], ["https://tec.openplanner.team/stops/H4ep130a", "https://tec.openplanner.team/stops/H4ep131b"], ["https://tec.openplanner.team/stops/LLebrux1", "https://tec.openplanner.team/stops/LLegern1"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lhuchev1"], ["https://tec.openplanner.team/stops/N426aea", "https://tec.openplanner.team/stops/N426aeb"], ["https://tec.openplanner.team/stops/X745aba", "https://tec.openplanner.team/stops/X745abb"], ["https://tec.openplanner.team/stops/Bcseche1", "https://tec.openplanner.team/stops/Bcsemon1"], ["https://tec.openplanner.team/stops/N122aba", "https://tec.openplanner.team/stops/N122abb"], ["https://tec.openplanner.team/stops/H4hx115a", "https://tec.openplanner.team/stops/H4wa161a"], ["https://tec.openplanner.team/stops/X948alb", "https://tec.openplanner.team/stops/X948ana"], ["https://tec.openplanner.team/stops/X812aya", "https://tec.openplanner.team/stops/X834aab"], ["https://tec.openplanner.team/stops/X739aja", "https://tec.openplanner.team/stops/X912aha"], ["https://tec.openplanner.team/stops/H4hg158b", "https://tec.openplanner.team/stops/H4hg159b"], ["https://tec.openplanner.team/stops/LJUfort1", "https://tec.openplanner.team/stops/LJUfort2"], ["https://tec.openplanner.team/stops/LScchpl2", "https://tec.openplanner.team/stops/LSceg--3"], ["https://tec.openplanner.team/stops/N501cmc", "https://tec.openplanner.team/stops/N501cmd"], ["https://tec.openplanner.team/stops/Lvebiol2", "https://tec.openplanner.team/stops/Lvepala5"], ["https://tec.openplanner.team/stops/Bwspjon2", "https://tec.openplanner.team/stops/Bwspm371"], ["https://tec.openplanner.team/stops/X664aia", "https://tec.openplanner.team/stops/X664aib"], ["https://tec.openplanner.team/stops/LFPstro1", "https://tec.openplanner.team/stops/LFPstro2"], ["https://tec.openplanner.team/stops/H4ta115a", "https://tec.openplanner.team/stops/H4ta120b"], ["https://tec.openplanner.team/stops/Chhclde1", "https://tec.openplanner.team/stops/Chhclde2"], ["https://tec.openplanner.team/stops/N101aea", "https://tec.openplanner.team/stops/N101aga"], ["https://tec.openplanner.team/stops/LFProt-2", "https://tec.openplanner.team/stops/LVu40--1"], ["https://tec.openplanner.team/stops/Lrafusi2", "https://tec.openplanner.team/stops/LSAvieu2"], ["https://tec.openplanner.team/stops/H4ld124a", "https://tec.openplanner.team/stops/H4ld124b"], ["https://tec.openplanner.team/stops/LBSgeer1", "https://tec.openplanner.team/stops/LBSgeer2"], ["https://tec.openplanner.team/stops/X912akb", "https://tec.openplanner.team/stops/X912ala"], ["https://tec.openplanner.team/stops/X811amb", "https://tec.openplanner.team/stops/X811apb"], ["https://tec.openplanner.team/stops/H4or113a", "https://tec.openplanner.team/stops/H4or116b"], ["https://tec.openplanner.team/stops/Crccano4", "https://tec.openplanner.team/stops/Crcrlf2"], ["https://tec.openplanner.team/stops/LPRfour2", "https://tec.openplanner.team/stops/LSHries1"], ["https://tec.openplanner.team/stops/H2pr116b", "https://tec.openplanner.team/stops/H2pr119a"], ["https://tec.openplanner.team/stops/LHZcime2", "https://tec.openplanner.team/stops/LHZpara1"], ["https://tec.openplanner.team/stops/N543alb", "https://tec.openplanner.team/stops/N543aua"], ["https://tec.openplanner.team/stops/H1mm122a", "https://tec.openplanner.team/stops/H1mm122d"], ["https://tec.openplanner.team/stops/LRmkult1", "https://tec.openplanner.team/stops/LRmsmvo1"], ["https://tec.openplanner.team/stops/X801aca", "https://tec.openplanner.team/stops/X801bua"], ["https://tec.openplanner.team/stops/X979aoa", "https://tec.openplanner.team/stops/X982bvb"], ["https://tec.openplanner.team/stops/H4la197a", "https://tec.openplanner.team/stops/H4la198a"], ["https://tec.openplanner.team/stops/H2hg157b", "https://tec.openplanner.team/stops/H2hg157c"], ["https://tec.openplanner.team/stops/X662afa", "https://tec.openplanner.team/stops/X662ara"], ["https://tec.openplanner.team/stops/Lheaaz-2", "https://tec.openplanner.team/stops/LHSvina1"], ["https://tec.openplanner.team/stops/N558ada", "https://tec.openplanner.team/stops/N558adb"], ["https://tec.openplanner.team/stops/Bclgfva1", "https://tec.openplanner.team/stops/Bclgfva2"], ["https://tec.openplanner.team/stops/N543apa", "https://tec.openplanner.team/stops/N543ayb"], ["https://tec.openplanner.team/stops/H5bl119d", "https://tec.openplanner.team/stops/H5bl123a"], ["https://tec.openplanner.team/stops/N109aaa", "https://tec.openplanner.team/stops/N109ada"], ["https://tec.openplanner.team/stops/Cbblacb2", "https://tec.openplanner.team/stops/Cvregl2"], ["https://tec.openplanner.team/stops/H1ba102a", "https://tec.openplanner.team/stops/H1ba114d"], ["https://tec.openplanner.team/stops/X917aea", "https://tec.openplanner.team/stops/X921abb"], ["https://tec.openplanner.team/stops/H4fa128a", "https://tec.openplanner.team/stops/H4fa128b"], ["https://tec.openplanner.team/stops/Lanplat2", "https://tec.openplanner.team/stops/Lanpont2"], ["https://tec.openplanner.team/stops/H2fy122a", "https://tec.openplanner.team/stops/H2lh131a"], ["https://tec.openplanner.team/stops/Ccocroi2", "https://tec.openplanner.team/stops/Ctrpn2"], ["https://tec.openplanner.team/stops/LHUdeni4", "https://tec.openplanner.team/stops/LHUloui1"], ["https://tec.openplanner.team/stops/Cbfdufa1", "https://tec.openplanner.team/stops/Ccimont1"], ["https://tec.openplanner.team/stops/X394aab", "https://tec.openplanner.team/stops/X394abb"], ["https://tec.openplanner.team/stops/X636aob", "https://tec.openplanner.team/stops/X636apb"], ["https://tec.openplanner.team/stops/Cmlhauc1", "https://tec.openplanner.team/stops/Cmlhauc2"], ["https://tec.openplanner.team/stops/LhEherb2", "https://tec.openplanner.team/stops/LhElont2"], ["https://tec.openplanner.team/stops/LBichat1", "https://tec.openplanner.team/stops/LBivi--1"], ["https://tec.openplanner.team/stops/N204adb", "https://tec.openplanner.team/stops/N204aga"], ["https://tec.openplanner.team/stops/X608akb", "https://tec.openplanner.team/stops/X608ala"], ["https://tec.openplanner.team/stops/N251aaa", "https://tec.openplanner.team/stops/N251aab"], ["https://tec.openplanner.team/stops/H1gi119c", "https://tec.openplanner.team/stops/H1gi123b"], ["https://tec.openplanner.team/stops/Ctupont2", "https://tec.openplanner.team/stops/Ctupont4"], ["https://tec.openplanner.team/stops/Cgogb1", "https://tec.openplanner.team/stops/Cgogb2"], ["https://tec.openplanner.team/stops/N539ada", "https://tec.openplanner.team/stops/N539ana"], ["https://tec.openplanner.team/stops/N167aab", "https://tec.openplanner.team/stops/N167abb"], ["https://tec.openplanner.team/stops/N340ahb", "https://tec.openplanner.team/stops/N340aia"], ["https://tec.openplanner.team/stops/X620aba", "https://tec.openplanner.team/stops/X620acb"], ["https://tec.openplanner.team/stops/LAyabri1", "https://tec.openplanner.team/stops/Lrechap1"], ["https://tec.openplanner.team/stops/Bnivbau2", "https://tec.openplanner.team/stops/Bnivmet1"], ["https://tec.openplanner.team/stops/LjeGRPME", "https://tec.openplanner.team/stops/Ljehotv1"], ["https://tec.openplanner.team/stops/LJAfawe2", "https://tec.openplanner.team/stops/LJAwerf1"], ["https://tec.openplanner.team/stops/LOdcris2", "https://tec.openplanner.team/stops/LOdkeme1"], ["https://tec.openplanner.team/stops/X822ara", "https://tec.openplanner.team/stops/X822arb"], ["https://tec.openplanner.team/stops/Lbemc--2", "https://tec.openplanner.team/stops/Ljumesa1"], ["https://tec.openplanner.team/stops/Lvchaus1", "https://tec.openplanner.team/stops/Lvchenn1"], ["https://tec.openplanner.team/stops/Bgdhbvu2", "https://tec.openplanner.team/stops/Bgdhmet2"], ["https://tec.openplanner.team/stops/X982cea", "https://tec.openplanner.team/stops/X983aeb"], ["https://tec.openplanner.team/stops/X724aba", "https://tec.openplanner.team/stops/X724aca"], ["https://tec.openplanner.team/stops/LaAgold1", "https://tec.openplanner.team/stops/LaAseba1"], ["https://tec.openplanner.team/stops/LBoegli2", "https://tec.openplanner.team/stops/LBQmaye1"], ["https://tec.openplanner.team/stops/H4wa150b", "https://tec.openplanner.team/stops/H4wa159a"], ["https://tec.openplanner.team/stops/NL76aha", "https://tec.openplanner.team/stops/NL77aca"], ["https://tec.openplanner.team/stops/X620aab", "https://tec.openplanner.team/stops/X620abb"], ["https://tec.openplanner.team/stops/Lticoq-1", "https://tec.openplanner.team/stops/Ltitill*"], ["https://tec.openplanner.team/stops/X940aga", "https://tec.openplanner.team/stops/X946abb"], ["https://tec.openplanner.team/stops/N509aca", "https://tec.openplanner.team/stops/N509afa"], ["https://tec.openplanner.team/stops/X364aab", "https://tec.openplanner.team/stops/X364abb"], ["https://tec.openplanner.team/stops/H5bl121b", "https://tec.openplanner.team/stops/H5bl144b"], ["https://tec.openplanner.team/stops/Lhufays2", "https://tec.openplanner.team/stops/Lhurfay1"], ["https://tec.openplanner.team/stops/H1by108a", "https://tec.openplanner.team/stops/H1by108c"], ["https://tec.openplanner.team/stops/Bnivbxl2", "https://tec.openplanner.team/stops/Bnivpso2"], ["https://tec.openplanner.team/stops/LoDcorn2", "https://tec.openplanner.team/stops/LoDschu2"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/NH03aea"], ["https://tec.openplanner.team/stops/LMYlieg1", "https://tec.openplanner.team/stops/LMYvill2"], ["https://tec.openplanner.team/stops/Ctrplac1", "https://tec.openplanner.team/stops/Ctrstro1"], ["https://tec.openplanner.team/stops/Ldidefo1", "https://tec.openplanner.team/stops/Ldidefo2"], ["https://tec.openplanner.team/stops/Lheelva2", "https://tec.openplanner.team/stops/LHSvina1"], ["https://tec.openplanner.team/stops/X639alb", "https://tec.openplanner.team/stops/X639amb"], ["https://tec.openplanner.team/stops/N305aaa", "https://tec.openplanner.team/stops/N329aab"], ["https://tec.openplanner.team/stops/X670aia", "https://tec.openplanner.team/stops/X670aib"], ["https://tec.openplanner.team/stops/N224aba", "https://tec.openplanner.team/stops/X224abb"], ["https://tec.openplanner.team/stops/LMOcorn3", "https://tec.openplanner.team/stops/LMOcorn4"], ["https://tec.openplanner.team/stops/Cchwate1", "https://tec.openplanner.team/stops/Cchwate2"], ["https://tec.openplanner.team/stops/X636bab", "https://tec.openplanner.team/stops/X670aqa"], ["https://tec.openplanner.team/stops/N229aga", "https://tec.openplanner.team/stops/N229aqb"], ["https://tec.openplanner.team/stops/H1fr107b", "https://tec.openplanner.team/stops/H1fr130a"], ["https://tec.openplanner.team/stops/H4lh161a", "https://tec.openplanner.team/stops/H4oe148a"], ["https://tec.openplanner.team/stops/X869aea", "https://tec.openplanner.team/stops/X871adb"], ["https://tec.openplanner.team/stops/N562agb", "https://tec.openplanner.team/stops/N562aia"], ["https://tec.openplanner.team/stops/LeUgulc2", "https://tec.openplanner.team/stops/LeUhaag1"], ["https://tec.openplanner.team/stops/LmYkreu2", "https://tec.openplanner.team/stops/LvAschw2"], ["https://tec.openplanner.team/stops/LCtcref1", "https://tec.openplanner.team/stops/X780aab"], ["https://tec.openplanner.team/stops/LHuetat1", "https://tec.openplanner.team/stops/LMHcant1"], ["https://tec.openplanner.team/stops/N209aca", "https://tec.openplanner.team/stops/N209adb"], ["https://tec.openplanner.team/stops/Bgrhhot2", "https://tec.openplanner.team/stops/N518aaa"], ["https://tec.openplanner.team/stops/N115aba", "https://tec.openplanner.team/stops/N115afb"], ["https://tec.openplanner.team/stops/H1wa138a", "https://tec.openplanner.team/stops/H1wa138b"], ["https://tec.openplanner.team/stops/LrOtria2", "https://tec.openplanner.team/stops/LrOwahl1"], ["https://tec.openplanner.team/stops/H1al146b", "https://tec.openplanner.team/stops/H1go169a"], ["https://tec.openplanner.team/stops/NH01aia", "https://tec.openplanner.team/stops/NH01amb"], ["https://tec.openplanner.team/stops/X807ada", "https://tec.openplanner.team/stops/X807adb"], ["https://tec.openplanner.team/stops/LrEkape1", "https://tec.openplanner.team/stops/LrErauw1"], ["https://tec.openplanner.team/stops/Bpiehte1", "https://tec.openplanner.team/stops/Bpiehte2"], ["https://tec.openplanner.team/stops/Bjdscnd1", "https://tec.openplanner.team/stops/Bjodmal1"], ["https://tec.openplanner.team/stops/X897ana", "https://tec.openplanner.team/stops/X897anb"], ["https://tec.openplanner.team/stops/X724afa", "https://tec.openplanner.team/stops/X724agb"], ["https://tec.openplanner.team/stops/Cmlours1", "https://tec.openplanner.team/stops/Cmlvxmo2"], ["https://tec.openplanner.team/stops/X786abb", "https://tec.openplanner.team/stops/X786aca"], ["https://tec.openplanner.team/stops/Lalchar1", "https://tec.openplanner.team/stops/LXhcite1"], ["https://tec.openplanner.team/stops/LeLbegl1", "https://tec.openplanner.team/stops/LnIfrie1"], ["https://tec.openplanner.team/stops/X826ada", "https://tec.openplanner.team/stops/X826aeb"], ["https://tec.openplanner.team/stops/X657aia", "https://tec.openplanner.team/stops/X657ama"], ["https://tec.openplanner.team/stops/H2ma208a", "https://tec.openplanner.team/stops/H2ma208b"], ["https://tec.openplanner.team/stops/Blhugai1", "https://tec.openplanner.team/stops/Blhunys3"], ["https://tec.openplanner.team/stops/H2le149a", "https://tec.openplanner.team/stops/H2ml110b"], ["https://tec.openplanner.team/stops/X801cga", "https://tec.openplanner.team/stops/X836aha"], ["https://tec.openplanner.team/stops/LJEmalg1", "https://tec.openplanner.team/stops/LVEphar1"], ["https://tec.openplanner.team/stops/Cmitrie2", "https://tec.openplanner.team/stops/Csecroi2"], ["https://tec.openplanner.team/stops/H1cd111a", "https://tec.openplanner.team/stops/H1ne149a"], ["https://tec.openplanner.team/stops/X996aba", "https://tec.openplanner.team/stops/X996aha"], ["https://tec.openplanner.team/stops/NH01aoa", "https://tec.openplanner.team/stops/NH01aob"], ["https://tec.openplanner.team/stops/Cmmcarr1", "https://tec.openplanner.team/stops/Cmmcime1"], ["https://tec.openplanner.team/stops/X757ahb", "https://tec.openplanner.team/stops/X757anb"], ["https://tec.openplanner.team/stops/N226aaa", "https://tec.openplanner.team/stops/N261aab"], ["https://tec.openplanner.team/stops/Bbcoeco1", "https://tec.openplanner.team/stops/Bbcoser1"], ["https://tec.openplanner.team/stops/LeUhaas1", "https://tec.openplanner.team/stops/LeUhaas3"], ["https://tec.openplanner.team/stops/H4ga157a", "https://tec.openplanner.team/stops/H4ga414a"], ["https://tec.openplanner.team/stops/LmIvale1", "https://tec.openplanner.team/stops/LmIzent1"], ["https://tec.openplanner.team/stops/H4ch117a", "https://tec.openplanner.team/stops/H4ch119b"], ["https://tec.openplanner.team/stops/N310aeb", "https://tec.openplanner.team/stops/X892aga"], ["https://tec.openplanner.team/stops/LtEnach2", "https://tec.openplanner.team/stops/LtEnatu1"], ["https://tec.openplanner.team/stops/LXfcore1", "https://tec.openplanner.team/stops/LXflong1"], ["https://tec.openplanner.team/stops/N117aca", "https://tec.openplanner.team/stops/N147ada"], ["https://tec.openplanner.team/stops/N308asa", "https://tec.openplanner.team/stops/N339acb"], ["https://tec.openplanner.team/stops/H4au143a", "https://tec.openplanner.team/stops/H4og216a"], ["https://tec.openplanner.team/stops/N241aga", "https://tec.openplanner.team/stops/N241agb"], ["https://tec.openplanner.team/stops/X651agb", "https://tec.openplanner.team/stops/X652ada"], ["https://tec.openplanner.team/stops/X614agb", "https://tec.openplanner.team/stops/X614ara"], ["https://tec.openplanner.team/stops/H1sb148a", "https://tec.openplanner.team/stops/H1sb151b"], ["https://tec.openplanner.team/stops/H1fr109a", "https://tec.openplanner.team/stops/H1lb134b"], ["https://tec.openplanner.team/stops/LENchem1", "https://tec.openplanner.team/stops/LENparc2"], ["https://tec.openplanner.team/stops/Cflcarr2", "https://tec.openplanner.team/stops/Cflchmo2"], ["https://tec.openplanner.team/stops/Bbsicen1", "https://tec.openplanner.team/stops/Bnivlpa1"], ["https://tec.openplanner.team/stops/H1ht128a", "https://tec.openplanner.team/stops/H1ht128b"], ["https://tec.openplanner.team/stops/LmS11--1", "https://tec.openplanner.team/stops/LmSdorf1"], ["https://tec.openplanner.team/stops/N562aza", "https://tec.openplanner.team/stops/N562azb"], ["https://tec.openplanner.team/stops/N243aeb", "https://tec.openplanner.team/stops/N252aba"], ["https://tec.openplanner.team/stops/N331aha", "https://tec.openplanner.team/stops/N331aia"], ["https://tec.openplanner.team/stops/H1hv131b", "https://tec.openplanner.team/stops/H1hv133a"], ["https://tec.openplanner.team/stops/Chhbiet1", "https://tec.openplanner.team/stops/Chhthui1"], ["https://tec.openplanner.team/stops/LBbbac-1", "https://tec.openplanner.team/stops/X561ada"], ["https://tec.openplanner.team/stops/Lbrptbr5", "https://tec.openplanner.team/stops/Llgbavi1"], ["https://tec.openplanner.team/stops/X661acb", "https://tec.openplanner.team/stops/X661bcb"], ["https://tec.openplanner.team/stops/X654aba", "https://tec.openplanner.team/stops/X654aka"], ["https://tec.openplanner.team/stops/Cmlceri2", "https://tec.openplanner.team/stops/Cmmbmad2"], ["https://tec.openplanner.team/stops/H5rx106a", "https://tec.openplanner.team/stops/H5rx122a"], ["https://tec.openplanner.team/stops/N501aeb", "https://tec.openplanner.team/stops/N502ada"], ["https://tec.openplanner.team/stops/Bblacco1", "https://tec.openplanner.team/stops/Bblavhu2"], ["https://tec.openplanner.team/stops/N501ija", "https://tec.openplanner.team/stops/N501ila"], ["https://tec.openplanner.team/stops/H1ml112a", "https://tec.openplanner.team/stops/H1ml112b"], ["https://tec.openplanner.team/stops/Bwagcus1", "https://tec.openplanner.team/stops/Csachas1"], ["https://tec.openplanner.team/stops/Cctstro3", "https://tec.openplanner.team/stops/NC02agc"], ["https://tec.openplanner.team/stops/LMtcent2", "https://tec.openplanner.team/stops/LSdsa8a1"], ["https://tec.openplanner.team/stops/LSeaque4", "https://tec.openplanner.team/stops/LSecomm2"], ["https://tec.openplanner.team/stops/Bboncha2", "https://tec.openplanner.team/stops/Bgzdfpo1"], ["https://tec.openplanner.team/stops/X782aca", "https://tec.openplanner.team/stops/X782aea"], ["https://tec.openplanner.team/stops/H4ty294a", "https://tec.openplanner.team/stops/H4ty330c"], ["https://tec.openplanner.team/stops/Llgchar1", "https://tec.openplanner.team/stops/Llgfusc6"], ["https://tec.openplanner.team/stops/N260aaa", "https://tec.openplanner.team/stops/N270afa"], ["https://tec.openplanner.team/stops/Lmleg--2", "https://tec.openplanner.team/stops/Lmlhaut2"], ["https://tec.openplanner.team/stops/Lhrbass1", "https://tec.openplanner.team/stops/Lhrecol2"], ["https://tec.openplanner.team/stops/X725arb", "https://tec.openplanner.team/stops/X725avb"], ["https://tec.openplanner.team/stops/Csoplac2", "https://tec.openplanner.team/stops/Csostoc2"], ["https://tec.openplanner.team/stops/LsCback1", "https://tec.openplanner.team/stops/LsCkirc1"], ["https://tec.openplanner.team/stops/NL76acb", "https://tec.openplanner.team/stops/NL80aaa"], ["https://tec.openplanner.team/stops/Bmlnegl3", "https://tec.openplanner.team/stops/Bmlnegl4"], ["https://tec.openplanner.team/stops/Ljuinte1", "https://tec.openplanner.team/stops/Llgchan1"], ["https://tec.openplanner.team/stops/N501gma", "https://tec.openplanner.team/stops/N501lcy"], ["https://tec.openplanner.team/stops/X754anb", "https://tec.openplanner.team/stops/X754avb"], ["https://tec.openplanner.team/stops/H1ba105a", "https://tec.openplanner.team/stops/H1ba105b"], ["https://tec.openplanner.team/stops/N218aca", "https://tec.openplanner.team/stops/N218acb"], ["https://tec.openplanner.team/stops/N501ivb", "https://tec.openplanner.team/stops/N501iwb"], ["https://tec.openplanner.team/stops/X664add", "https://tec.openplanner.team/stops/X667ada"], ["https://tec.openplanner.team/stops/H4th139a", "https://tec.openplanner.team/stops/H4th141a"], ["https://tec.openplanner.team/stops/Bnivcol2", "https://tec.openplanner.team/stops/Bnivh%C3%B4p2"], ["https://tec.openplanner.team/stops/N218aba", "https://tec.openplanner.team/stops/N218abb"], ["https://tec.openplanner.team/stops/LeYgros1", "https://tec.openplanner.team/stops/LeYraaf2"], ["https://tec.openplanner.team/stops/Cmmlong1", "https://tec.openplanner.team/stops/Cmmp2052"], ["https://tec.openplanner.team/stops/N533aga", "https://tec.openplanner.team/stops/N533amc"], ["https://tec.openplanner.team/stops/LAmeclu2", "https://tec.openplanner.team/stops/LAmwaut2"], ["https://tec.openplanner.team/stops/X636aja", "https://tec.openplanner.team/stops/X636bja"], ["https://tec.openplanner.team/stops/X982anb", "https://tec.openplanner.team/stops/X982aqc"], ["https://tec.openplanner.team/stops/LSkoran2", "https://tec.openplanner.team/stops/LSkwarf2"], ["https://tec.openplanner.team/stops/N528avb", "https://tec.openplanner.team/stops/N542apb"], ["https://tec.openplanner.team/stops/H1je215b", "https://tec.openplanner.team/stops/H1je360b"], ["https://tec.openplanner.team/stops/Lsn130-1", "https://tec.openplanner.team/stops/Lsn130-2"], ["https://tec.openplanner.team/stops/X739ahb", "https://tec.openplanner.team/stops/X911aca"], ["https://tec.openplanner.team/stops/LWenouv1", "https://tec.openplanner.team/stops/LWenouv2"], ["https://tec.openplanner.team/stops/H4mo155a", "https://tec.openplanner.team/stops/H4rx143a"], ["https://tec.openplanner.team/stops/H2bh103b", "https://tec.openplanner.team/stops/H2mg135b"], ["https://tec.openplanner.team/stops/LTOcime1", "https://tec.openplanner.team/stops/LTOeg--2"], ["https://tec.openplanner.team/stops/H1hr115a", "https://tec.openplanner.team/stops/H1hr128a"], ["https://tec.openplanner.team/stops/H1ne143b", "https://tec.openplanner.team/stops/H3so160b"], ["https://tec.openplanner.team/stops/X996aab", "https://tec.openplanner.team/stops/X996aca"], ["https://tec.openplanner.team/stops/X749aeb", "https://tec.openplanner.team/stops/X756agb"], ["https://tec.openplanner.team/stops/Bgdhlai1", "https://tec.openplanner.team/stops/Bhantui1"], ["https://tec.openplanner.team/stops/H1wa140a", "https://tec.openplanner.team/stops/H1wa153a"], ["https://tec.openplanner.team/stops/Cvretan1", "https://tec.openplanner.team/stops/Cvrhab21"], ["https://tec.openplanner.team/stops/X994aja", "https://tec.openplanner.team/stops/X995afa"], ["https://tec.openplanner.team/stops/X717agd", "https://tec.openplanner.team/stops/X781aba"], ["https://tec.openplanner.team/stops/H1em105a", "https://tec.openplanner.team/stops/H1em107b"], ["https://tec.openplanner.team/stops/X834aab", "https://tec.openplanner.team/stops/X860abb"], ["https://tec.openplanner.team/stops/H2mg135a", "https://tec.openplanner.team/stops/H2mg135b"], ["https://tec.openplanner.team/stops/Cbfusin1", "https://tec.openplanner.team/stops/Cbfusin2"], ["https://tec.openplanner.team/stops/X721afb", "https://tec.openplanner.team/stops/X721agc"], ["https://tec.openplanner.team/stops/N254acb", "https://tec.openplanner.team/stops/N254ada"], ["https://tec.openplanner.team/stops/X649acb", "https://tec.openplanner.team/stops/X671afb"], ["https://tec.openplanner.team/stops/N212aia", "https://tec.openplanner.team/stops/N212aja"], ["https://tec.openplanner.team/stops/N543bpc", "https://tec.openplanner.team/stops/N543cnb"], ["https://tec.openplanner.team/stops/N584baa", "https://tec.openplanner.team/stops/N584bab"], ["https://tec.openplanner.team/stops/H1ha201a", "https://tec.openplanner.team/stops/H1ha201b"], ["https://tec.openplanner.team/stops/H4ca123b", "https://tec.openplanner.team/stops/H4ws159b"], ["https://tec.openplanner.team/stops/N501cva", "https://tec.openplanner.team/stops/N501cvb"], ["https://tec.openplanner.team/stops/H2ll181b", "https://tec.openplanner.team/stops/H2ll257b"], ["https://tec.openplanner.team/stops/Bquepbr1", "https://tec.openplanner.team/stops/Btubsal1"], ["https://tec.openplanner.team/stops/Cdalpla1", "https://tec.openplanner.team/stops/CMdesc1"], ["https://tec.openplanner.team/stops/X783adb", "https://tec.openplanner.team/stops/X784akb"], ["https://tec.openplanner.team/stops/H1lb154a", "https://tec.openplanner.team/stops/H1lb154b"], ["https://tec.openplanner.team/stops/X615aqa", "https://tec.openplanner.team/stops/X615ara"], ["https://tec.openplanner.team/stops/LnErech2", "https://tec.openplanner.team/stops/LrEborn2"], ["https://tec.openplanner.team/stops/Cralimi2", "https://tec.openplanner.team/stops/Crarmas1"], ["https://tec.openplanner.team/stops/LcRmuhl2", "https://tec.openplanner.team/stops/LgRhouf1"], ["https://tec.openplanner.team/stops/H1mk107b", "https://tec.openplanner.team/stops/H1mk112a"], ["https://tec.openplanner.team/stops/X641aba", "https://tec.openplanner.team/stops/X642aac"], ["https://tec.openplanner.team/stops/LBAbooz2", "https://tec.openplanner.team/stops/LSRbouh1"], ["https://tec.openplanner.team/stops/N507apb", "https://tec.openplanner.team/stops/NL74aca"], ["https://tec.openplanner.team/stops/LFFeg--1", "https://tec.openplanner.team/stops/LFFmagr2"], ["https://tec.openplanner.team/stops/H4wc373a", "https://tec.openplanner.team/stops/H4wc373b"], ["https://tec.openplanner.team/stops/N135bba", "https://tec.openplanner.team/stops/N135bbb"], ["https://tec.openplanner.team/stops/Bmsgfon1", "https://tec.openplanner.team/stops/Bmsgrco1"], ["https://tec.openplanner.team/stops/Bbghcar1", "https://tec.openplanner.team/stops/Bpte1ma1"], ["https://tec.openplanner.team/stops/Lbbremy1", "https://tec.openplanner.team/stops/Ljubord2"], ["https://tec.openplanner.team/stops/N543boa", "https://tec.openplanner.team/stops/N543bob"], ["https://tec.openplanner.team/stops/Cjugohi1", "https://tec.openplanner.team/stops/Cjugohi2"], ["https://tec.openplanner.team/stops/X902ada", "https://tec.openplanner.team/stops/X999afb"], ["https://tec.openplanner.team/stops/Bpechos1", "https://tec.openplanner.team/stops/Bpecsta1"], ["https://tec.openplanner.team/stops/Croplom3", "https://tec.openplanner.team/stops/Crorpai1"], ["https://tec.openplanner.team/stops/Llglamb1", "https://tec.openplanner.team/stops/Llgrosa2"], ["https://tec.openplanner.team/stops/N547amb", "https://tec.openplanner.team/stops/N553aqb"], ["https://tec.openplanner.team/stops/Lrcprin1", "https://tec.openplanner.team/stops/Lrcvinc1"], ["https://tec.openplanner.team/stops/Bmarlor1", "https://tec.openplanner.team/stops/Bmarlor2"], ["https://tec.openplanner.team/stops/X609apa", "https://tec.openplanner.team/stops/X611aaa"], ["https://tec.openplanner.team/stops/LhGcasi1", "https://tec.openplanner.team/stops/LlNm%C3%BChl2"], ["https://tec.openplanner.team/stops/N553aaa", "https://tec.openplanner.team/stops/N553aac"], ["https://tec.openplanner.team/stops/H1br126a", "https://tec.openplanner.team/stops/H2ma202a"], ["https://tec.openplanner.team/stops/X614ava", "https://tec.openplanner.team/stops/X614bbb"], ["https://tec.openplanner.team/stops/X663ata", "https://tec.openplanner.team/stops/X663ayb"], ["https://tec.openplanner.team/stops/Cnacent2", "https://tec.openplanner.team/stops/Cnacent3"], ["https://tec.openplanner.team/stops/Cthrlef1", "https://tec.openplanner.team/stops/Cthrlef2"], ["https://tec.openplanner.team/stops/Bspkker1", "https://tec.openplanner.team/stops/H1mk113b"], ["https://tec.openplanner.team/stops/Broneco2", "https://tec.openplanner.team/stops/Bronrch1"], ["https://tec.openplanner.team/stops/N117aba", "https://tec.openplanner.team/stops/N145aga"], ["https://tec.openplanner.team/stops/Bnodlce1", "https://tec.openplanner.team/stops/Bnodlce2"], ["https://tec.openplanner.team/stops/H4rm107a", "https://tec.openplanner.team/stops/H4rm113b"], ["https://tec.openplanner.team/stops/X908acb", "https://tec.openplanner.team/stops/X908ada"], ["https://tec.openplanner.team/stops/LBpberl1", "https://tec.openplanner.team/stops/LBpcren1"], ["https://tec.openplanner.team/stops/H4pl116b", "https://tec.openplanner.team/stops/H4pl137b"], ["https://tec.openplanner.team/stops/X672aec", "https://tec.openplanner.team/stops/X672apa"], ["https://tec.openplanner.team/stops/LeLcrem2", "https://tec.openplanner.team/stops/LeLkalt2"], ["https://tec.openplanner.team/stops/LbOvith1", "https://tec.openplanner.team/stops/LnEkirc1"], ["https://tec.openplanner.team/stops/X812aia", "https://tec.openplanner.team/stops/X812awa"], ["https://tec.openplanner.team/stops/X860aaa", "https://tec.openplanner.team/stops/X860abb"], ["https://tec.openplanner.team/stops/Lanetie2", "https://tec.openplanner.team/stops/Lrctec-1"], ["https://tec.openplanner.team/stops/Crgegli1", "https://tec.openplanner.team/stops/Crgmgri1"], ["https://tec.openplanner.team/stops/X610ahb", "https://tec.openplanner.team/stops/X610aib"], ["https://tec.openplanner.team/stops/N577aga", "https://tec.openplanner.team/stops/N577aha"], ["https://tec.openplanner.team/stops/Lcepont2", "https://tec.openplanner.team/stops/Lcepont6"], ["https://tec.openplanner.team/stops/N562bha", "https://tec.openplanner.team/stops/N562bka"], ["https://tec.openplanner.team/stops/LLrc1651", "https://tec.openplanner.team/stops/LLrc1652"], ["https://tec.openplanner.team/stops/H4ep128b", "https://tec.openplanner.team/stops/H4ep129a"], ["https://tec.openplanner.team/stops/Lghjans1", "https://tec.openplanner.team/stops/Lghmeun1"], ["https://tec.openplanner.team/stops/H4co151a", "https://tec.openplanner.team/stops/H4wn124a"], ["https://tec.openplanner.team/stops/H2ch101b", "https://tec.openplanner.team/stops/H2go113a"], ["https://tec.openplanner.team/stops/N506bsb", "https://tec.openplanner.team/stops/N506bwb"], ["https://tec.openplanner.team/stops/Cmecime2", "https://tec.openplanner.team/stops/Cmerdby1"], ["https://tec.openplanner.team/stops/Cchbaza2", "https://tec.openplanner.team/stops/Cchccom1"], ["https://tec.openplanner.team/stops/X618ada", "https://tec.openplanner.team/stops/X618amb"], ["https://tec.openplanner.team/stops/N141aga", "https://tec.openplanner.team/stops/N141ama"], ["https://tec.openplanner.team/stops/N229akc", "https://tec.openplanner.team/stops/N229apa"], ["https://tec.openplanner.team/stops/H1me112b", "https://tec.openplanner.team/stops/H1me117d"], ["https://tec.openplanner.team/stops/N548afb", "https://tec.openplanner.team/stops/N569alb"], ["https://tec.openplanner.team/stops/X873abb", "https://tec.openplanner.team/stops/X873acb"], ["https://tec.openplanner.team/stops/H2ep144a", "https://tec.openplanner.team/stops/H2re174a"], ["https://tec.openplanner.team/stops/LTNegli1", "https://tec.openplanner.team/stops/LTNegli2"], ["https://tec.openplanner.team/stops/Blsmjja1", "https://tec.openplanner.team/stops/Bnodlce1"], ["https://tec.openplanner.team/stops/LSebott1", "https://tec.openplanner.team/stops/LVbpave2"], ["https://tec.openplanner.team/stops/Bchgpap2", "https://tec.openplanner.team/stops/Bchgrco2"], ["https://tec.openplanner.team/stops/Cmcbriq1", "https://tec.openplanner.team/stops/Cmcbriq4"], ["https://tec.openplanner.team/stops/LVu40--2", "https://tec.openplanner.team/stops/LVukabi2"], ["https://tec.openplanner.team/stops/N534bkh", "https://tec.openplanner.team/stops/N534bma"], ["https://tec.openplanner.team/stops/Ccyfede2", "https://tec.openplanner.team/stops/Ccymabo1"], ["https://tec.openplanner.team/stops/Lcalaro1", "https://tec.openplanner.team/stops/Lcalaro2"], ["https://tec.openplanner.team/stops/Clfbarr1", "https://tec.openplanner.team/stops/Clfbarr6"], ["https://tec.openplanner.team/stops/Cjubert2", "https://tec.openplanner.team/stops/Cjudelv3"], ["https://tec.openplanner.team/stops/LMFmoul1", "https://tec.openplanner.team/stops/Lqbecco1"], ["https://tec.openplanner.team/stops/H5rx112a", "https://tec.openplanner.team/stops/H5rx128a"], ["https://tec.openplanner.team/stops/Bgnvbsi2", "https://tec.openplanner.team/stops/Bgnvgar1"], ["https://tec.openplanner.team/stops/LFyec--2", "https://tec.openplanner.team/stops/LFypont2"], ["https://tec.openplanner.team/stops/X818aga", "https://tec.openplanner.team/stops/X818apa"], ["https://tec.openplanner.team/stops/N310aaa", "https://tec.openplanner.team/stops/N312acb"], ["https://tec.openplanner.team/stops/Bmasegl2", "https://tec.openplanner.team/stops/NB33afb"], ["https://tec.openplanner.team/stops/H4hx111b", "https://tec.openplanner.team/stops/H4wa151a"], ["https://tec.openplanner.team/stops/Ljemabo1", "https://tec.openplanner.team/stops/Ltimarq2"], ["https://tec.openplanner.team/stops/LLVfoss1", "https://tec.openplanner.team/stops/X575aab"], ["https://tec.openplanner.team/stops/N894aab", "https://tec.openplanner.team/stops/N894aba"], ["https://tec.openplanner.team/stops/H4bo119a", "https://tec.openplanner.team/stops/H4bo119b"], ["https://tec.openplanner.team/stops/Bmelmqu1", "https://tec.openplanner.team/stops/Bsmgegl1"], ["https://tec.openplanner.team/stops/N506aca", "https://tec.openplanner.team/stops/N506aoa"], ["https://tec.openplanner.team/stops/LLRvill1", "https://tec.openplanner.team/stops/LLRvill2"], ["https://tec.openplanner.team/stops/X766aab", "https://tec.openplanner.team/stops/X766abb"], ["https://tec.openplanner.team/stops/LTPplco1", "https://tec.openplanner.team/stops/LTPsalm1"], ["https://tec.openplanner.team/stops/Bmrspel2", "https://tec.openplanner.team/stops/Bmrswag2"], ["https://tec.openplanner.team/stops/LBEtrix1", "https://tec.openplanner.team/stops/LLNcime1"], ["https://tec.openplanner.team/stops/LGLeg--2", "https://tec.openplanner.team/stops/LGLgeer2"], ["https://tec.openplanner.team/stops/Bdvmc432", "https://tec.openplanner.team/stops/Bdvmsar2"], ["https://tec.openplanner.team/stops/Btilhti1", "https://tec.openplanner.team/stops/Btilhti2"], ["https://tec.openplanner.team/stops/LLrgare1", "https://tec.openplanner.team/stops/LLrscie1"], ["https://tec.openplanner.team/stops/Bnivlde1", "https://tec.openplanner.team/stops/Bnivpar1"], ["https://tec.openplanner.team/stops/X908apa", "https://tec.openplanner.team/stops/X908aqa"], ["https://tec.openplanner.team/stops/Cptberg2", "https://tec.openplanner.team/stops/Cptegli2"], ["https://tec.openplanner.team/stops/H1ci103a", "https://tec.openplanner.team/stops/H1cu113b"], ["https://tec.openplanner.team/stops/N234aab", "https://tec.openplanner.team/stops/N234aeb"], ["https://tec.openplanner.team/stops/X767aac", "https://tec.openplanner.team/stops/X768aca"], ["https://tec.openplanner.team/stops/N117aqb", "https://tec.openplanner.team/stops/N117aua"], ["https://tec.openplanner.team/stops/Bbonegl1", "https://tec.openplanner.team/stops/Bdvmtve1"], ["https://tec.openplanner.team/stops/N512aba", "https://tec.openplanner.team/stops/N512aca"], ["https://tec.openplanner.team/stops/N553aba", "https://tec.openplanner.team/stops/N553aqa"], ["https://tec.openplanner.team/stops/Bbourel1", "https://tec.openplanner.team/stops/Bboutry1"], ["https://tec.openplanner.team/stops/N501eob", "https://tec.openplanner.team/stops/N501mdb"], ["https://tec.openplanner.team/stops/NC44aea", "https://tec.openplanner.team/stops/NC44afa"], ["https://tec.openplanner.team/stops/Llgcock2", "https://tec.openplanner.team/stops/Llgnage2"], ["https://tec.openplanner.team/stops/H1ry135b", "https://tec.openplanner.team/stops/H1ry135c"], ["https://tec.openplanner.team/stops/N577afb", "https://tec.openplanner.team/stops/N577ajb"], ["https://tec.openplanner.team/stops/H1te179a", "https://tec.openplanner.team/stops/H1te180b"], ["https://tec.openplanner.team/stops/X768alc", "https://tec.openplanner.team/stops/X768ald"], ["https://tec.openplanner.team/stops/Cgycime3", "https://tec.openplanner.team/stops/Cgycime4"], ["https://tec.openplanner.team/stops/X660afb", "https://tec.openplanner.team/stops/X840adb"], ["https://tec.openplanner.team/stops/Cjxdesc1", "https://tec.openplanner.team/stops/Cjxpris2"], ["https://tec.openplanner.team/stops/LLOhest1", "https://tec.openplanner.team/stops/LLOhest2"], ["https://tec.openplanner.team/stops/LLTgole1", "https://tec.openplanner.team/stops/LTOplac2"], ["https://tec.openplanner.team/stops/LhGfl242", "https://tec.openplanner.team/stops/LhGkirc6"], ["https://tec.openplanner.team/stops/NL57aea", "https://tec.openplanner.team/stops/NL57aka"], ["https://tec.openplanner.team/stops/X926acb", "https://tec.openplanner.team/stops/X926aeb"], ["https://tec.openplanner.team/stops/H4hq132a", "https://tec.openplanner.team/stops/H4ms145a"], ["https://tec.openplanner.team/stops/H4mv191b", "https://tec.openplanner.team/stops/H4mv193a"], ["https://tec.openplanner.team/stops/X616aab", "https://tec.openplanner.team/stops/X616aba"], ["https://tec.openplanner.team/stops/N120aaa", "https://tec.openplanner.team/stops/N120ana"], ["https://tec.openplanner.team/stops/X793aca", "https://tec.openplanner.team/stops/X793apa"], ["https://tec.openplanner.team/stops/LOTmonu1", "https://tec.openplanner.team/stops/LOTmonu2"], ["https://tec.openplanner.team/stops/LPLaube1", "https://tec.openplanner.team/stops/LPLstat2"], ["https://tec.openplanner.team/stops/X892aba", "https://tec.openplanner.team/stops/X892aia"], ["https://tec.openplanner.team/stops/X542aea", "https://tec.openplanner.team/stops/X542agb"], ["https://tec.openplanner.team/stops/LWElanc1", "https://tec.openplanner.team/stops/LWEmerm1"], ["https://tec.openplanner.team/stops/LPbeg--2", "https://tec.openplanner.team/stops/LPbusin2"], ["https://tec.openplanner.team/stops/Ccuoise2", "https://tec.openplanner.team/stops/Ccuseba2"], ["https://tec.openplanner.team/stops/X657aia", "https://tec.openplanner.team/stops/X670agb"], ["https://tec.openplanner.team/stops/X818aja", "https://tec.openplanner.team/stops/X818akb"], ["https://tec.openplanner.team/stops/LBdcime1", "https://tec.openplanner.team/stops/LBdmarr1"], ["https://tec.openplanner.team/stops/X870acb", "https://tec.openplanner.team/stops/X870aja"], ["https://tec.openplanner.team/stops/H1bx105b", "https://tec.openplanner.team/stops/H1qv115b"], ["https://tec.openplanner.team/stops/Cbmvalt1", "https://tec.openplanner.team/stops/Cstmarz2"], ["https://tec.openplanner.team/stops/N522aga", "https://tec.openplanner.team/stops/N522agb"], ["https://tec.openplanner.team/stops/X808ahb", "https://tec.openplanner.team/stops/X808akb"], ["https://tec.openplanner.team/stops/N539aha", "https://tec.openplanner.team/stops/N539arb"], ["https://tec.openplanner.team/stops/LMomonc2", "https://tec.openplanner.team/stops/LMovieu2"], ["https://tec.openplanner.team/stops/LHEches1", "https://tec.openplanner.team/stops/LHEepur2"], ["https://tec.openplanner.team/stops/Cfocobe2", "https://tec.openplanner.team/stops/Cforepo1"], ["https://tec.openplanner.team/stops/LJSforg1", "https://tec.openplanner.team/stops/LTAchpl2"], ["https://tec.openplanner.team/stops/X910aeb", "https://tec.openplanner.team/stops/X985aac"], ["https://tec.openplanner.team/stops/H1bo112a", "https://tec.openplanner.team/stops/H1ho131a"], ["https://tec.openplanner.team/stops/H4lz124a", "https://tec.openplanner.team/stops/H4lz128b"], ["https://tec.openplanner.team/stops/X952ahb", "https://tec.openplanner.team/stops/X952aib"], ["https://tec.openplanner.team/stops/NL67acb", "https://tec.openplanner.team/stops/NL67adb"], ["https://tec.openplanner.team/stops/H4ta128a", "https://tec.openplanner.team/stops/H4ta132b"], ["https://tec.openplanner.team/stops/Cchba2", "https://tec.openplanner.team/stops/CMba1"], ["https://tec.openplanner.team/stops/LmIvale2", "https://tec.openplanner.team/stops/LmIvale4"], ["https://tec.openplanner.team/stops/H4ty340a", "https://tec.openplanner.team/stops/H4ty384b"], ["https://tec.openplanner.team/stops/Lseprog1", "https://tec.openplanner.team/stops/Lsesabl1"], ["https://tec.openplanner.team/stops/LPRcasi1", "https://tec.openplanner.team/stops/LPRcasi2"], ["https://tec.openplanner.team/stops/Lghferr1", "https://tec.openplanner.team/stops/Lghgend1"], ["https://tec.openplanner.team/stops/Cgzdeve1", "https://tec.openplanner.team/stops/Clrecol1"], ["https://tec.openplanner.team/stops/Lbbgare1", "https://tec.openplanner.team/stops/Ljucano1"], ["https://tec.openplanner.team/stops/LBLtroi2", "https://tec.openplanner.team/stops/LBLwaid2"], ["https://tec.openplanner.team/stops/Llgmass1", "https://tec.openplanner.team/stops/Llgschm2"], ["https://tec.openplanner.team/stops/Lhrunir1", "https://tec.openplanner.team/stops/Lvtlimi1"], ["https://tec.openplanner.team/stops/LSHfief1", "https://tec.openplanner.team/stops/LSHfief2"], ["https://tec.openplanner.team/stops/Chpchea1", "https://tec.openplanner.team/stops/Cwgtill1"], ["https://tec.openplanner.team/stops/H2ha128a", "https://tec.openplanner.team/stops/H2ha143a"], ["https://tec.openplanner.team/stops/LbTaral1", "https://tec.openplanner.team/stops/LbThutt2"], ["https://tec.openplanner.team/stops/N539asa", "https://tec.openplanner.team/stops/N539bdb"], ["https://tec.openplanner.team/stops/X664aka", "https://tec.openplanner.team/stops/X664alb"], ["https://tec.openplanner.team/stops/LbTkreu1", "https://tec.openplanner.team/stops/LbTkreu3"], ["https://tec.openplanner.team/stops/X754awb", "https://tec.openplanner.team/stops/X754azb"], ["https://tec.openplanner.team/stops/H4ga169b", "https://tec.openplanner.team/stops/H4ga170a"], ["https://tec.openplanner.team/stops/X615aib", "https://tec.openplanner.team/stops/X615aja"], ["https://tec.openplanner.team/stops/N508ajb", "https://tec.openplanner.team/stops/N508aoa"], ["https://tec.openplanner.team/stops/H4ch115a", "https://tec.openplanner.team/stops/H4ch116a"], ["https://tec.openplanner.team/stops/Cjurevo2", "https://tec.openplanner.team/stops/Clocroi1"], ["https://tec.openplanner.team/stops/LTIgare2", "https://tec.openplanner.team/stops/LTIpora1"], ["https://tec.openplanner.team/stops/Cbcha651", "https://tec.openplanner.team/stops/Crg3arb1"], ["https://tec.openplanner.team/stops/N141aaa", "https://tec.openplanner.team/stops/N141aob"], ["https://tec.openplanner.team/stops/Lanfran1", "https://tec.openplanner.team/stops/Lanfran4"], ["https://tec.openplanner.team/stops/X911aka", "https://tec.openplanner.team/stops/X911akb"], ["https://tec.openplanner.team/stops/Bbauegl1", "https://tec.openplanner.team/stops/Bbautri2"], ["https://tec.openplanner.team/stops/LBCaube2", "https://tec.openplanner.team/stops/LMTvill2"], ["https://tec.openplanner.team/stops/Bsmgbsa1", "https://tec.openplanner.team/stops/Btilsce1"], ["https://tec.openplanner.team/stops/Csostoc1", "https://tec.openplanner.team/stops/Csostoc2"], ["https://tec.openplanner.team/stops/Llgchal1", "https://tec.openplanner.team/stops/Llgcita2"], ["https://tec.openplanner.team/stops/Cmocime2", "https://tec.openplanner.team/stops/Cmogtri2"], ["https://tec.openplanner.team/stops/N149acb", "https://tec.openplanner.team/stops/N149aga"], ["https://tec.openplanner.team/stops/Lbrhvl-*", "https://tec.openplanner.team/stops/Ljucrah1"], ["https://tec.openplanner.team/stops/N245aca", "https://tec.openplanner.team/stops/N287aca"], ["https://tec.openplanner.team/stops/H4to134a", "https://tec.openplanner.team/stops/H4to134b"], ["https://tec.openplanner.team/stops/X982bna", "https://tec.openplanner.team/stops/X986aba"], ["https://tec.openplanner.team/stops/Cmlvpla2", "https://tec.openplanner.team/stops/Cmlvxmo1"], ["https://tec.openplanner.team/stops/Lbeloui1", "https://tec.openplanner.team/stops/LSAeg--2"], ["https://tec.openplanner.team/stops/Llgcong3", "https://tec.openplanner.team/stops/Llgqmar2"], ["https://tec.openplanner.team/stops/LVEmohi2", "https://tec.openplanner.team/stops/LVEroum1"], ["https://tec.openplanner.team/stops/LCxeg--1", "https://tec.openplanner.team/stops/LCxeg--2"], ["https://tec.openplanner.team/stops/Bhvltol1", "https://tec.openplanner.team/stops/Bhvltol2"], ["https://tec.openplanner.team/stops/H2re165a", "https://tec.openplanner.team/stops/H2re168a"], ["https://tec.openplanner.team/stops/X361abb", "https://tec.openplanner.team/stops/X362aca"], ["https://tec.openplanner.team/stops/H1be102a", "https://tec.openplanner.team/stops/H1er108a"], ["https://tec.openplanner.team/stops/N519ada", "https://tec.openplanner.team/stops/N519adb"], ["https://tec.openplanner.team/stops/Buccplj2", "https://tec.openplanner.team/stops/Buccvch1"], ["https://tec.openplanner.team/stops/X801cjb", "https://tec.openplanner.team/stops/X801cnb"], ["https://tec.openplanner.team/stops/N874aab", "https://tec.openplanner.team/stops/N894acb"], ["https://tec.openplanner.team/stops/LMoviel1", "https://tec.openplanner.team/stops/LTreg--1"], ["https://tec.openplanner.team/stops/H1bb118a", "https://tec.openplanner.team/stops/H1bb121b"], ["https://tec.openplanner.team/stops/Bwavcar1", "https://tec.openplanner.team/stops/Bwavnep1"], ["https://tec.openplanner.team/stops/H4rc231c", "https://tec.openplanner.team/stops/H4te254a"], ["https://tec.openplanner.team/stops/N225aab", "https://tec.openplanner.team/stops/N225acb"], ["https://tec.openplanner.team/stops/X806ahb", "https://tec.openplanner.team/stops/X806aia"], ["https://tec.openplanner.team/stops/N521alb", "https://tec.openplanner.team/stops/N521amb"], ["https://tec.openplanner.team/stops/Bmelmqu1", "https://tec.openplanner.team/stops/Bvilpar1"], ["https://tec.openplanner.team/stops/LOCloup1", "https://tec.openplanner.team/stops/NL35aba"], ["https://tec.openplanner.team/stops/Cvthoeu2", "https://tec.openplanner.team/stops/Cvtvail1"], ["https://tec.openplanner.team/stops/Lougros1", "https://tec.openplanner.team/stops/Lousite6"], ["https://tec.openplanner.team/stops/H4ty273c", "https://tec.openplanner.team/stops/H4ty295d"], ["https://tec.openplanner.team/stops/Cctberg1", "https://tec.openplanner.team/stops/Cctmine2"], ["https://tec.openplanner.team/stops/Lsecime1", "https://tec.openplanner.team/stops/Lsepudd1"], ["https://tec.openplanner.team/stops/X902ata", "https://tec.openplanner.team/stops/X902bbb"], ["https://tec.openplanner.team/stops/LFFcouv1", "https://tec.openplanner.team/stops/LFFcouv2"], ["https://tec.openplanner.team/stops/Loumatt2", "https://tec.openplanner.team/stops/Louvivi2"], ["https://tec.openplanner.team/stops/Clbbonn4", "https://tec.openplanner.team/stops/Clbecol1"], ["https://tec.openplanner.team/stops/Bnilcim1", "https://tec.openplanner.team/stops/Bnilpje1"], ["https://tec.openplanner.team/stops/LaMadam1", "https://tec.openplanner.team/stops/LaMadam2"], ["https://tec.openplanner.team/stops/H1eo103a", "https://tec.openplanner.team/stops/H1et101b"], ["https://tec.openplanner.team/stops/LLz21--2", "https://tec.openplanner.team/stops/LRfbeau2"], ["https://tec.openplanner.team/stops/Blasbpr1", "https://tec.openplanner.team/stops/Blasbpr2"], ["https://tec.openplanner.team/stops/Lmntast2", "https://tec.openplanner.team/stops/Lmntast3"], ["https://tec.openplanner.team/stops/Cmlbevu1", "https://tec.openplanner.team/stops/Cmlgoff1"], ["https://tec.openplanner.team/stops/LlZkirc2", "https://tec.openplanner.team/stops/LmEdorf2"], ["https://tec.openplanner.team/stops/LSdcarr2", "https://tec.openplanner.team/stops/LSdsar51"], ["https://tec.openplanner.team/stops/H2le153b", "https://tec.openplanner.team/stops/H2mo122d"], ["https://tec.openplanner.team/stops/LHocroi2", "https://tec.openplanner.team/stops/LJedonc1"], ["https://tec.openplanner.team/stops/LEN183-2", "https://tec.openplanner.team/stops/LSkoran1"], ["https://tec.openplanner.team/stops/Ltichif2", "https://tec.openplanner.team/stops/Ltigare2"], ["https://tec.openplanner.team/stops/LWDhous1", "https://tec.openplanner.team/stops/LWDplac2"], ["https://tec.openplanner.team/stops/N209alb", "https://tec.openplanner.team/stops/N559acb"], ["https://tec.openplanner.team/stops/H4mo152a", "https://tec.openplanner.team/stops/H4mo198a"], ["https://tec.openplanner.team/stops/Cjudest2", "https://tec.openplanner.team/stops/Cjupn4"], ["https://tec.openplanner.team/stops/Bbeasta2", "https://tec.openplanner.team/stops/Bhmmbog1"], ["https://tec.openplanner.team/stops/N204aaa", "https://tec.openplanner.team/stops/N204aba"], ["https://tec.openplanner.team/stops/Lbbbuse2", "https://tec.openplanner.team/stops/Ljubord2"], ["https://tec.openplanner.team/stops/X840adb", "https://tec.openplanner.team/stops/X840afa"], ["https://tec.openplanner.team/stops/Lfh-sci2", "https://tec.openplanner.team/stops/Lpoprie2"], ["https://tec.openplanner.team/stops/LPAbour1", "https://tec.openplanner.team/stops/LPAvill2"], ["https://tec.openplanner.team/stops/H4ob109b", "https://tec.openplanner.team/stops/H4ob124b"], ["https://tec.openplanner.team/stops/LsVbs--*", "https://tec.openplanner.team/stops/LsVsage1"], ["https://tec.openplanner.team/stops/N308agb", "https://tec.openplanner.team/stops/N308aob"], ["https://tec.openplanner.team/stops/LAmarbo2", "https://tec.openplanner.team/stops/LVLgotr3"], ["https://tec.openplanner.team/stops/H1em103a", "https://tec.openplanner.team/stops/H1fa120a"], ["https://tec.openplanner.team/stops/Lgrbill2", "https://tec.openplanner.team/stops/Lgrbonn3"], ["https://tec.openplanner.team/stops/H1gi123a", "https://tec.openplanner.team/stops/H1gi154a"], ["https://tec.openplanner.team/stops/Lvtchpl4", "https://tec.openplanner.team/stops/Lvtpepi2"], ["https://tec.openplanner.team/stops/H4oq225a", "https://tec.openplanner.team/stops/H4oq409a"], ["https://tec.openplanner.team/stops/H4mo172a", "https://tec.openplanner.team/stops/H4mo193a"], ["https://tec.openplanner.team/stops/H4pq116a", "https://tec.openplanner.team/stops/H4pq118b"], ["https://tec.openplanner.team/stops/H1wg124b", "https://tec.openplanner.team/stops/H1wg127b"], ["https://tec.openplanner.team/stops/Bheneco2", "https://tec.openplanner.team/stops/Bhensei1"], ["https://tec.openplanner.team/stops/Lsestap1", "https://tec.openplanner.team/stops/Lsestap3"], ["https://tec.openplanner.team/stops/LmHbahn1", "https://tec.openplanner.team/stops/LmHumge1"], ["https://tec.openplanner.team/stops/H1an102a", "https://tec.openplanner.team/stops/H1bx105b"], ["https://tec.openplanner.team/stops/Lsmlina2", "https://tec.openplanner.team/stops/Lsmpost2"], ["https://tec.openplanner.team/stops/X614ahb", "https://tec.openplanner.team/stops/X614ata"], ["https://tec.openplanner.team/stops/Blhucmo2", "https://tec.openplanner.team/stops/Blhumga2"], ["https://tec.openplanner.team/stops/N534bnh", "https://tec.openplanner.team/stops/N534bpb"], ["https://tec.openplanner.team/stops/N153aab", "https://tec.openplanner.team/stops/N153afa"], ["https://tec.openplanner.team/stops/LBRtrag2", "https://tec.openplanner.team/stops/LLTtour2"], ["https://tec.openplanner.team/stops/LFTcroi1", "https://tec.openplanner.team/stops/LTNsarl1"], ["https://tec.openplanner.team/stops/Cmofosb2", "https://tec.openplanner.team/stops/Crorpai2"], ["https://tec.openplanner.team/stops/LJAcham1", "https://tec.openplanner.team/stops/LJAsuri2"], ["https://tec.openplanner.team/stops/H3so171b", "https://tec.openplanner.team/stops/H3so174b"], ["https://tec.openplanner.team/stops/X793aba", "https://tec.openplanner.team/stops/X793apb"], ["https://tec.openplanner.team/stops/Blpgbat1", "https://tec.openplanner.team/stops/Cglbras1"], ["https://tec.openplanner.team/stops/X601dcb", "https://tec.openplanner.team/stops/X612aaa"], ["https://tec.openplanner.team/stops/H4ty319b", "https://tec.openplanner.team/stops/H4ty381a"], ["https://tec.openplanner.team/stops/Lenvale1", "https://tec.openplanner.team/stops/Llmdeba2"], ["https://tec.openplanner.team/stops/LhZkape2", "https://tec.openplanner.team/stops/LmNbirt2"], ["https://tec.openplanner.team/stops/LTEkerk1", "https://tec.openplanner.team/stops/LTEnuro2"], ["https://tec.openplanner.team/stops/Cauptsa1", "https://tec.openplanner.team/stops/Ctapn2"], ["https://tec.openplanner.team/stops/X624ahb", "https://tec.openplanner.team/stops/X624aib"], ["https://tec.openplanner.team/stops/Bbeubos1", "https://tec.openplanner.team/stops/N525atb"], ["https://tec.openplanner.team/stops/Cpcarse1", "https://tec.openplanner.team/stops/Cpceclu2"], ["https://tec.openplanner.team/stops/Lmlbaro1", "https://tec.openplanner.team/stops/Lmldama1"], ["https://tec.openplanner.team/stops/LOTsava1", "https://tec.openplanner.team/stops/LVleg--1"], ["https://tec.openplanner.team/stops/H1ms283a", "https://tec.openplanner.team/stops/H1ms314b"], ["https://tec.openplanner.team/stops/X750ahb", "https://tec.openplanner.team/stops/X750bga"], ["https://tec.openplanner.team/stops/N548afb", "https://tec.openplanner.team/stops/N571afb"], ["https://tec.openplanner.team/stops/Bniveco1", "https://tec.openplanner.team/stops/Bnivgpl3"], ["https://tec.openplanner.team/stops/Bbcodam4", "https://tec.openplanner.team/stops/Bbcoubo3"], ["https://tec.openplanner.team/stops/X878aab", "https://tec.openplanner.team/stops/X878abb"], ["https://tec.openplanner.team/stops/X954adb", "https://tec.openplanner.team/stops/X954aeb"], ["https://tec.openplanner.team/stops/LTEcamp2", "https://tec.openplanner.team/stops/LTErest1"], ["https://tec.openplanner.team/stops/N534blg", "https://tec.openplanner.team/stops/N534bub"], ["https://tec.openplanner.team/stops/H4ep127b", "https://tec.openplanner.team/stops/H4rm113b"], ["https://tec.openplanner.team/stops/H4gr108a", "https://tec.openplanner.team/stops/H4gr110b"], ["https://tec.openplanner.team/stops/Cjubrul4", "https://tec.openplanner.team/stops/Cjuregi2"], ["https://tec.openplanner.team/stops/LAncoup2", "https://tec.openplanner.team/stops/LAnfall2"], ["https://tec.openplanner.team/stops/Crewath1", "https://tec.openplanner.team/stops/Crewath2"], ["https://tec.openplanner.team/stops/H4ma420a", "https://tec.openplanner.team/stops/H4ma420b"], ["https://tec.openplanner.team/stops/LHUchpl1", "https://tec.openplanner.team/stops/LHUeuro4"], ["https://tec.openplanner.team/stops/N121acb", "https://tec.openplanner.team/stops/N121aja"], ["https://tec.openplanner.team/stops/Csschat1", "https://tec.openplanner.team/stops/Cssgare2"], ["https://tec.openplanner.team/stops/H4hu116a", "https://tec.openplanner.team/stops/H4hu118b"], ["https://tec.openplanner.team/stops/X601aoa", "https://tec.openplanner.team/stops/X601cda"], ["https://tec.openplanner.team/stops/Lccawir2", "https://tec.openplanner.team/stops/LRArami2"], ["https://tec.openplanner.team/stops/X818acb", "https://tec.openplanner.team/stops/X818aka"], ["https://tec.openplanner.team/stops/LLrelec2", "https://tec.openplanner.team/stops/LLrrmaq1"], ["https://tec.openplanner.team/stops/Cnachcu2", "https://tec.openplanner.team/stops/Cnanoir1"], ["https://tec.openplanner.team/stops/H4es111a", "https://tec.openplanner.team/stops/H4ev120a"], ["https://tec.openplanner.team/stops/Baegpon2", "https://tec.openplanner.team/stops/Bramcar2"], ["https://tec.openplanner.team/stops/X762aab", "https://tec.openplanner.team/stops/X763adb"], ["https://tec.openplanner.team/stops/Bquecar1", "https://tec.openplanner.team/stops/Bquegob1"], ["https://tec.openplanner.team/stops/X767aea", "https://tec.openplanner.team/stops/X767aga"], ["https://tec.openplanner.team/stops/X617aga", "https://tec.openplanner.team/stops/X617aha"], ["https://tec.openplanner.team/stops/X390aib", "https://tec.openplanner.team/stops/X902aka"], ["https://tec.openplanner.team/stops/X633aeb", "https://tec.openplanner.team/stops/X633ala"], ["https://tec.openplanner.team/stops/H4ra159a", "https://tec.openplanner.team/stops/H4wr174a"], ["https://tec.openplanner.team/stops/Bcbqgar2", "https://tec.openplanner.team/stops/Btubcvi2"], ["https://tec.openplanner.team/stops/Clvchen1", "https://tec.openplanner.team/stops/Cmlavch1"], ["https://tec.openplanner.team/stops/LListie2", "https://tec.openplanner.team/stops/LReeg--1"], ["https://tec.openplanner.team/stops/N531apa", "https://tec.openplanner.team/stops/N584aoa"], ["https://tec.openplanner.team/stops/H1gh147a", "https://tec.openplanner.team/stops/H1gh159a"], ["https://tec.openplanner.team/stops/X736ada", "https://tec.openplanner.team/stops/X953aaa"], ["https://tec.openplanner.team/stops/N245aba", "https://tec.openplanner.team/stops/N248adb"], ["https://tec.openplanner.team/stops/N232bia", "https://tec.openplanner.team/stops/N232bib"], ["https://tec.openplanner.team/stops/N501gka", "https://tec.openplanner.team/stops/N501kxb"], ["https://tec.openplanner.team/stops/H4ty295c", "https://tec.openplanner.team/stops/H4ty347a"], ["https://tec.openplanner.team/stops/N209afb", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/Bbsthpl2", "https://tec.openplanner.team/stops/Bbsttab1"], ["https://tec.openplanner.team/stops/X820aia", "https://tec.openplanner.team/stops/X820aib"], ["https://tec.openplanner.team/stops/LNAbras1", "https://tec.openplanner.team/stops/LNAbras2"], ["https://tec.openplanner.team/stops/N513anb", "https://tec.openplanner.team/stops/N513arb"], ["https://tec.openplanner.team/stops/H2mo120b", "https://tec.openplanner.team/stops/H2mo124b"], ["https://tec.openplanner.team/stops/X818aea", "https://tec.openplanner.team/stops/X818afa"], ["https://tec.openplanner.team/stops/H4pp121b", "https://tec.openplanner.team/stops/H4ve140a"], ["https://tec.openplanner.team/stops/H4mv187a", "https://tec.openplanner.team/stops/H4mv189b"], ["https://tec.openplanner.team/stops/H2ll178d", "https://tec.openplanner.team/stops/H2ll198a"], ["https://tec.openplanner.team/stops/N101aba", "https://tec.openplanner.team/stops/N101aca"], ["https://tec.openplanner.team/stops/N501deb", "https://tec.openplanner.team/stops/N501dfa"], ["https://tec.openplanner.team/stops/H4ff121a", "https://tec.openplanner.team/stops/H4mb138b"], ["https://tec.openplanner.team/stops/H3th135d", "https://tec.openplanner.team/stops/H3th135e"], ["https://tec.openplanner.team/stops/N571aja", "https://tec.openplanner.team/stops/N571ajb"], ["https://tec.openplanner.team/stops/H1hm176b", "https://tec.openplanner.team/stops/H1vs145a"], ["https://tec.openplanner.team/stops/N585aka", "https://tec.openplanner.team/stops/N585ala"], ["https://tec.openplanner.team/stops/X802apa", "https://tec.openplanner.team/stops/X802asb"], ["https://tec.openplanner.team/stops/LBglign2", "https://tec.openplanner.team/stops/LLbvith1"], ["https://tec.openplanner.team/stops/Ccogera2", "https://tec.openplanner.team/stops/Csoforr2"], ["https://tec.openplanner.team/stops/LLescie2", "https://tec.openplanner.team/stops/X547ata"], ["https://tec.openplanner.team/stops/LLrdigu2", "https://tec.openplanner.team/stops/LSPastr2"], ["https://tec.openplanner.team/stops/Clvimtr4", "https://tec.openplanner.team/stops/NC02aab"], ["https://tec.openplanner.team/stops/Ljegare2", "https://tec.openplanner.team/stops/Ljejoli1"], ["https://tec.openplanner.team/stops/Llglibo4", "https://tec.openplanner.team/stops/Llgpitt1"], ["https://tec.openplanner.team/stops/X808ala", "https://tec.openplanner.team/stops/X808ama"], ["https://tec.openplanner.team/stops/N501fgb", "https://tec.openplanner.team/stops/N501fhb"], ["https://tec.openplanner.team/stops/H3lr106b", "https://tec.openplanner.team/stops/H3lr120b"], ["https://tec.openplanner.team/stops/H4ir167a", "https://tec.openplanner.team/stops/H5at129b"], ["https://tec.openplanner.team/stops/LTIdjal2", "https://tec.openplanner.team/stops/LTIdonn2"], ["https://tec.openplanner.team/stops/X789aga", "https://tec.openplanner.team/stops/X789agb"], ["https://tec.openplanner.team/stops/Candett2", "https://tec.openplanner.team/stops/Canecbr1"], ["https://tec.openplanner.team/stops/Ljegare1", "https://tec.openplanner.team/stops/Ljegare2"], ["https://tec.openplanner.team/stops/Lmicoop3", "https://tec.openplanner.team/stops/Lmidarc1"], ["https://tec.openplanner.team/stops/Bnivche1", "https://tec.openplanner.team/stops/Bnivche2"], ["https://tec.openplanner.team/stops/X636aia", "https://tec.openplanner.team/stops/X636aib"], ["https://tec.openplanner.team/stops/LSNecol4", "https://tec.openplanner.team/stops/LSNmoul4"], ["https://tec.openplanner.team/stops/N106aeb", "https://tec.openplanner.team/stops/N137aga"], ["https://tec.openplanner.team/stops/LMoviel1", "https://tec.openplanner.team/stops/LSDheus2"], ["https://tec.openplanner.team/stops/LSOferr1", "https://tec.openplanner.team/stops/LSOtrou1"], ["https://tec.openplanner.team/stops/H1fr117a", "https://tec.openplanner.team/stops/H1no140a"], ["https://tec.openplanner.team/stops/Lbbbuse1", "https://tec.openplanner.team/stops/Ljuvert2"], ["https://tec.openplanner.team/stops/LaUn1--3", "https://tec.openplanner.team/stops/LlOpfar1"], ["https://tec.openplanner.team/stops/N348aaa", "https://tec.openplanner.team/stops/N348aba"], ["https://tec.openplanner.team/stops/H2mo119a", "https://tec.openplanner.team/stops/H2mo119b"], ["https://tec.openplanner.team/stops/N505aia", "https://tec.openplanner.team/stops/N505aib"], ["https://tec.openplanner.team/stops/H4ka191a", "https://tec.openplanner.team/stops/H4ka192b"], ["https://tec.openplanner.team/stops/X715aja", "https://tec.openplanner.team/stops/X715ajb"], ["https://tec.openplanner.team/stops/Clvorle1", "https://tec.openplanner.team/stops/NC02bbb"], ["https://tec.openplanner.team/stops/N221aba", "https://tec.openplanner.team/stops/X394afb"], ["https://tec.openplanner.team/stops/X999aga", "https://tec.openplanner.team/stops/X999aoa"], ["https://tec.openplanner.team/stops/N584aza", "https://tec.openplanner.team/stops/N584baa"], ["https://tec.openplanner.team/stops/X672agb", "https://tec.openplanner.team/stops/X672aja"], ["https://tec.openplanner.team/stops/X925aha", "https://tec.openplanner.team/stops/X925ata"], ["https://tec.openplanner.team/stops/H4hx111a", "https://tec.openplanner.team/stops/H4hx115b"], ["https://tec.openplanner.team/stops/X902bfb", "https://tec.openplanner.team/stops/X943aba"], ["https://tec.openplanner.team/stops/H1fv103a", "https://tec.openplanner.team/stops/H1ls105b"], ["https://tec.openplanner.team/stops/H1hh110b", "https://tec.openplanner.team/stops/H1hh113b"], ["https://tec.openplanner.team/stops/Bblafab1", "https://tec.openplanner.team/stops/Bblafab2"], ["https://tec.openplanner.team/stops/H2bh107a", "https://tec.openplanner.team/stops/H2bh112a"], ["https://tec.openplanner.team/stops/N543awg", "https://tec.openplanner.team/stops/N543awh"], ["https://tec.openplanner.team/stops/Cgzabau1", "https://tec.openplanner.team/stops/Cgzabau3"], ["https://tec.openplanner.team/stops/N252aab", "https://tec.openplanner.team/stops/N252abb"], ["https://tec.openplanner.team/stops/X786aja", "https://tec.openplanner.team/stops/X786ajb"], ["https://tec.openplanner.team/stops/Cjupuis1", "https://tec.openplanner.team/stops/Cjupuis2"], ["https://tec.openplanner.team/stops/N501bla", "https://tec.openplanner.team/stops/N501bob"], ["https://tec.openplanner.team/stops/H1mh115a", "https://tec.openplanner.team/stops/H1mh115b"], ["https://tec.openplanner.team/stops/LAUcent1", "https://tec.openplanner.team/stops/LRmhage5"], ["https://tec.openplanner.team/stops/LFPkape4", "https://tec.openplanner.team/stops/LFPkerk2"], ["https://tec.openplanner.team/stops/X796aca", "https://tec.openplanner.team/stops/X796adb"], ["https://tec.openplanner.team/stops/Lceourt1", "https://tec.openplanner.team/stops/Lcepoul2"], ["https://tec.openplanner.team/stops/H4tu172b", "https://tec.openplanner.team/stops/H4tu172c"], ["https://tec.openplanner.team/stops/NC44aba", "https://tec.openplanner.team/stops/NC44abb"], ["https://tec.openplanner.team/stops/Cmesafi2", "https://tec.openplanner.team/stops/Cwgmell3"], ["https://tec.openplanner.team/stops/Csdbosq2", "https://tec.openplanner.team/stops/Csdrofr1"], ["https://tec.openplanner.team/stops/H4bf109a", "https://tec.openplanner.team/stops/H4bf109b"], ["https://tec.openplanner.team/stops/X912aga", "https://tec.openplanner.team/stops/X912agb"], ["https://tec.openplanner.team/stops/H1do108a", "https://tec.openplanner.team/stops/H1do108b"], ["https://tec.openplanner.team/stops/Btubdeh2", "https://tec.openplanner.team/stops/Btubmon1"], ["https://tec.openplanner.team/stops/H2sb236d", "https://tec.openplanner.team/stops/H2sb242b"], ["https://tec.openplanner.team/stops/H4ka174a", "https://tec.openplanner.team/stops/H4ka399a"], ["https://tec.openplanner.team/stops/Bwatbno2", "https://tec.openplanner.team/stops/Bwatgib2"], ["https://tec.openplanner.team/stops/Bsgipha1", "https://tec.openplanner.team/stops/Bsgipha3"], ["https://tec.openplanner.team/stops/N139abb", "https://tec.openplanner.team/stops/N139adb"], ["https://tec.openplanner.team/stops/H1gg116a", "https://tec.openplanner.team/stops/H1mx122a"], ["https://tec.openplanner.team/stops/H5st161a", "https://tec.openplanner.team/stops/H5st161b"], ["https://tec.openplanner.team/stops/H4be101a", "https://tec.openplanner.team/stops/H4be110a"], ["https://tec.openplanner.team/stops/X879aha", "https://tec.openplanner.team/stops/X879aka"], ["https://tec.openplanner.team/stops/LPLcent1", "https://tec.openplanner.team/stops/LPLecco2"], ["https://tec.openplanner.team/stops/LHNgend4", "https://tec.openplanner.team/stops/LVPcoeu2"], ["https://tec.openplanner.team/stops/Creha761", "https://tec.openplanner.team/stops/Creoudo1"], ["https://tec.openplanner.team/stops/N533aqa", "https://tec.openplanner.team/stops/N533aqc"], ["https://tec.openplanner.team/stops/X986aca", "https://tec.openplanner.team/stops/X986agb"], ["https://tec.openplanner.team/stops/Lenclar1", "https://tec.openplanner.team/stops/Lvehout1"], ["https://tec.openplanner.team/stops/Lhrhenr1", "https://tec.openplanner.team/stops/Lhrtunn2"], ["https://tec.openplanner.team/stops/Cblbaiv1", "https://tec.openplanner.team/stops/Cvtmaro1"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lhuferm1"], ["https://tec.openplanner.team/stops/LVsboug2", "https://tec.openplanner.team/stops/LVsbrux2"], ["https://tec.openplanner.team/stops/H4ce101a", "https://tec.openplanner.team/stops/H4ce107b"], ["https://tec.openplanner.team/stops/N524aia", "https://tec.openplanner.team/stops/N524akb"], ["https://tec.openplanner.team/stops/Bblajap1", "https://tec.openplanner.team/stops/Clpsola1"], ["https://tec.openplanner.team/stops/X781abb", "https://tec.openplanner.team/stops/X781aeb"], ["https://tec.openplanner.team/stops/X943aba", "https://tec.openplanner.team/stops/X943ahb"], ["https://tec.openplanner.team/stops/LBkbamb2", "https://tec.openplanner.team/stops/LBkdahl2"], ["https://tec.openplanner.team/stops/Cfrchro1", "https://tec.openplanner.team/stops/Cfrgare3"], ["https://tec.openplanner.team/stops/LFUfonc2", "https://tec.openplanner.team/stops/LWDhous2"], ["https://tec.openplanner.team/stops/Becesbo1", "https://tec.openplanner.team/stops/Becesbo2"], ["https://tec.openplanner.team/stops/LBPxhav1", "https://tec.openplanner.team/stops/LRGile-2"], ["https://tec.openplanner.team/stops/Beclbar1", "https://tec.openplanner.team/stops/Broncli2"], ["https://tec.openplanner.team/stops/Lougare3", "https://tec.openplanner.team/stops/Lsebelv1"], ["https://tec.openplanner.team/stops/Lhrcite1", "https://tec.openplanner.team/stops/Lhrpont2"], ["https://tec.openplanner.team/stops/X871abb", "https://tec.openplanner.team/stops/X871adb"], ["https://tec.openplanner.team/stops/H4mo146a", "https://tec.openplanner.team/stops/H4mo156b"], ["https://tec.openplanner.team/stops/X766abb", "https://tec.openplanner.team/stops/X768alc"], ["https://tec.openplanner.team/stops/Cjojonc1", "https://tec.openplanner.team/stops/NC24agb"], ["https://tec.openplanner.team/stops/N501dvb", "https://tec.openplanner.team/stops/N501kpa"], ["https://tec.openplanner.team/stops/Cgocnor1", "https://tec.openplanner.team/stops/CMemai1"], ["https://tec.openplanner.team/stops/N101ajb", "https://tec.openplanner.team/stops/N116abb"], ["https://tec.openplanner.team/stops/X811aaa", "https://tec.openplanner.team/stops/X811aba"], ["https://tec.openplanner.team/stops/Lhrbass1", "https://tec.openplanner.team/stops/Llgtir-1"], ["https://tec.openplanner.team/stops/X837afb", "https://tec.openplanner.team/stops/X837alb"], ["https://tec.openplanner.team/stops/N302afa", "https://tec.openplanner.team/stops/N331acb"], ["https://tec.openplanner.team/stops/Lrogene*", "https://tec.openplanner.team/stops/Lrosaun1"], ["https://tec.openplanner.team/stops/X949aha", "https://tec.openplanner.team/stops/X949aib"], ["https://tec.openplanner.team/stops/Crccano1", "https://tec.openplanner.team/stops/Crcrlf2"], ["https://tec.openplanner.team/stops/N229aia", "https://tec.openplanner.team/stops/N229akc"], ["https://tec.openplanner.team/stops/LBY4che1", "https://tec.openplanner.team/stops/Lgdblom2"], ["https://tec.openplanner.team/stops/Bgercen1", "https://tec.openplanner.team/stops/Bgrhhot1"], ["https://tec.openplanner.team/stops/H1sg144b", "https://tec.openplanner.team/stops/H1sg146a"], ["https://tec.openplanner.team/stops/Lbralbe1", "https://tec.openplanner.team/stops/Llgabat2"], ["https://tec.openplanner.team/stops/Crccamp1", "https://tec.openplanner.team/stops/Crcrgar2"], ["https://tec.openplanner.team/stops/X761adb", "https://tec.openplanner.team/stops/X790agb"], ["https://tec.openplanner.team/stops/X720adb", "https://tec.openplanner.team/stops/X721arb"], ["https://tec.openplanner.team/stops/N117aja", "https://tec.openplanner.team/stops/N117aka"], ["https://tec.openplanner.team/stops/X615bea", "https://tec.openplanner.team/stops/X615beb"], ["https://tec.openplanner.team/stops/X608aia", "https://tec.openplanner.team/stops/X609aea"], ["https://tec.openplanner.team/stops/N135avb", "https://tec.openplanner.team/stops/N135bhb"], ["https://tec.openplanner.team/stops/N113aca", "https://tec.openplanner.team/stops/N113agb"], ["https://tec.openplanner.team/stops/X837aga", "https://tec.openplanner.team/stops/X837agb"], ["https://tec.openplanner.team/stops/Louazot1", "https://tec.openplanner.team/stops/Louazot2"], ["https://tec.openplanner.team/stops/X901bla", "https://tec.openplanner.team/stops/X901bmb"], ["https://tec.openplanner.team/stops/Bsgipmo1", "https://tec.openplanner.team/stops/Bsgipmo2"], ["https://tec.openplanner.team/stops/LhGfrie1", "https://tec.openplanner.team/stops/LhGfrie2"], ["https://tec.openplanner.team/stops/Bgemcha1", "https://tec.openplanner.team/stops/N522ata"], ["https://tec.openplanner.team/stops/X801bta", "https://tec.openplanner.team/stops/X801bva"], ["https://tec.openplanner.team/stops/LMOf35-1", "https://tec.openplanner.team/stops/LNveg--1"], ["https://tec.openplanner.team/stops/X597aqb", "https://tec.openplanner.team/stops/X796agb"], ["https://tec.openplanner.team/stops/Bwanorp2", "https://tec.openplanner.team/stops/NL75aca"], ["https://tec.openplanner.team/stops/Bgnpgar2", "https://tec.openplanner.team/stops/Cgnbast2"], ["https://tec.openplanner.team/stops/H1mk108a", "https://tec.openplanner.team/stops/H1mk108c"], ["https://tec.openplanner.team/stops/LBrmeiz2", "https://tec.openplanner.team/stops/LMipoti2"], ["https://tec.openplanner.team/stops/Cmeloti2", "https://tec.openplanner.team/stops/Cwxchap2"], ["https://tec.openplanner.team/stops/Blpgvil1", "https://tec.openplanner.team/stops/Bvxgeta2"], ["https://tec.openplanner.team/stops/LmTzoll1", "https://tec.openplanner.team/stops/LmTzoll2"], ["https://tec.openplanner.team/stops/LbUbisc2", "https://tec.openplanner.team/stops/LbUbutg2"], ["https://tec.openplanner.team/stops/N140aab", "https://tec.openplanner.team/stops/N141alb"], ["https://tec.openplanner.team/stops/X826aba", "https://tec.openplanner.team/stops/X826acb"], ["https://tec.openplanner.team/stops/LHYec--1", "https://tec.openplanner.team/stops/LHYwach2"], ["https://tec.openplanner.team/stops/Bgemga09", "https://tec.openplanner.team/stops/N522bve"], ["https://tec.openplanner.team/stops/H4ty325a", "https://tec.openplanner.team/stops/H4ty346b"], ["https://tec.openplanner.team/stops/H2lh126b", "https://tec.openplanner.team/stops/H2mo146a"], ["https://tec.openplanner.team/stops/H1ha200a", "https://tec.openplanner.team/stops/H1vh135b"], ["https://tec.openplanner.team/stops/X672aic", "https://tec.openplanner.team/stops/X672aid"], ["https://tec.openplanner.team/stops/X782aoa", "https://tec.openplanner.team/stops/X782aob"], ["https://tec.openplanner.team/stops/LBSchar2", "https://tec.openplanner.team/stops/LBStec-2"], ["https://tec.openplanner.team/stops/N557aab", "https://tec.openplanner.team/stops/N557abb"], ["https://tec.openplanner.team/stops/LNIdoma1", "https://tec.openplanner.team/stops/LNIec--2"], ["https://tec.openplanner.team/stops/H4mt217a", "https://tec.openplanner.team/stops/H4mt222b"], ["https://tec.openplanner.team/stops/X897axa", "https://tec.openplanner.team/stops/X897axb"], ["https://tec.openplanner.team/stops/Bquebth1", "https://tec.openplanner.team/stops/Bquebth2"], ["https://tec.openplanner.team/stops/X910aga", "https://tec.openplanner.team/stops/X910ahb"], ["https://tec.openplanner.team/stops/H4ss158b", "https://tec.openplanner.team/stops/H5rx105b"], ["https://tec.openplanner.team/stops/N244aea", "https://tec.openplanner.team/stops/N248aba"], ["https://tec.openplanner.team/stops/H1nv324a", "https://tec.openplanner.team/stops/H1nv324b"], ["https://tec.openplanner.team/stops/LBajean2", "https://tec.openplanner.team/stops/LBapepi5"], ["https://tec.openplanner.team/stops/X982bea", "https://tec.openplanner.team/stops/X982bla"], ["https://tec.openplanner.team/stops/Bsmgmou2", "https://tec.openplanner.team/stops/Bsmgpla2"], ["https://tec.openplanner.team/stops/Clftour1", "https://tec.openplanner.team/stops/Clftour2"], ["https://tec.openplanner.team/stops/LVRchpl1", "https://tec.openplanner.team/stops/X784aea"], ["https://tec.openplanner.team/stops/H5at106a", "https://tec.openplanner.team/stops/H5at134b"], ["https://tec.openplanner.team/stops/H4eg108a", "https://tec.openplanner.team/stops/H4ln129a"], ["https://tec.openplanner.team/stops/Bsomwav2", "https://tec.openplanner.team/stops/N584cab"], ["https://tec.openplanner.team/stops/H1by100d", "https://tec.openplanner.team/stops/H1by101b"], ["https://tec.openplanner.team/stops/H2ll193b", "https://tec.openplanner.team/stops/H2sv259a"], ["https://tec.openplanner.team/stops/Lghwall*", "https://tec.openplanner.team/stops/Lghwall1"], ["https://tec.openplanner.team/stops/Cgycime1", "https://tec.openplanner.team/stops/Cgysarr1"], ["https://tec.openplanner.team/stops/N383abb", "https://tec.openplanner.team/stops/N874ana"], ["https://tec.openplanner.team/stops/LHUlebo2", "https://tec.openplanner.team/stops/LHUtfal1"], ["https://tec.openplanner.team/stops/Lhufays1", "https://tec.openplanner.team/stops/Lhurfay2"], ["https://tec.openplanner.team/stops/LGreg--2", "https://tec.openplanner.team/stops/LORherl1"], ["https://tec.openplanner.team/stops/Lveabat1", "https://tec.openplanner.team/stops/Lvebiol2"], ["https://tec.openplanner.team/stops/N501giy", "https://tec.openplanner.team/stops/N501gnb"], ["https://tec.openplanner.team/stops/LWRbomb3", "https://tec.openplanner.team/stops/LWRpl--2"], ["https://tec.openplanner.team/stops/X738aea", "https://tec.openplanner.team/stops/X771alb"], ["https://tec.openplanner.team/stops/LXHfond1", "https://tec.openplanner.team/stops/LXHmart1"], ["https://tec.openplanner.team/stops/X880aeb", "https://tec.openplanner.team/stops/X880ahb"], ["https://tec.openplanner.team/stops/Cctpano1", "https://tec.openplanner.team/stops/Cctpano2"], ["https://tec.openplanner.team/stops/Llivina2", "https://tec.openplanner.team/stops/Lrcchpl2"], ["https://tec.openplanner.team/stops/H1ms254a", "https://tec.openplanner.team/stops/H1ms279b"], ["https://tec.openplanner.team/stops/LdUespe4", "https://tec.openplanner.team/stops/LtHkreu3"], ["https://tec.openplanner.team/stops/N244ava", "https://tec.openplanner.team/stops/N248aab"], ["https://tec.openplanner.team/stops/Cfasamb2", "https://tec.openplanner.team/stops/Cpl4bra3"], ["https://tec.openplanner.team/stops/LNOning1", "https://tec.openplanner.team/stops/LNOpt--2"], ["https://tec.openplanner.team/stops/H4lz128b", "https://tec.openplanner.team/stops/H4lz156b"], ["https://tec.openplanner.team/stops/Ljerouy1", "https://tec.openplanner.team/stops/Ljerouy2"], ["https://tec.openplanner.team/stops/LLeeg--1", "https://tec.openplanner.team/stops/X547aqb"], ["https://tec.openplanner.team/stops/X731aha", "https://tec.openplanner.team/stops/X731ahb"], ["https://tec.openplanner.team/stops/LWieg--*", "https://tec.openplanner.team/stops/LWinavi1"], ["https://tec.openplanner.team/stops/X354aaa", "https://tec.openplanner.team/stops/X369aab"], ["https://tec.openplanner.team/stops/H1he106a", "https://tec.openplanner.team/stops/H1he108a"], ["https://tec.openplanner.team/stops/H1eu107a", "https://tec.openplanner.team/stops/H1sb144b"], ["https://tec.openplanner.team/stops/X801bzb", "https://tec.openplanner.team/stops/X801cda"], ["https://tec.openplanner.team/stops/Lstpoly1", "https://tec.openplanner.team/stops/Lsttech2"], ["https://tec.openplanner.team/stops/Laleg--2", "https://tec.openplanner.team/stops/Laltrav2"], ["https://tec.openplanner.team/stops/LLYcalv2", "https://tec.openplanner.team/stops/LLYpeup1"], ["https://tec.openplanner.team/stops/N506bfb", "https://tec.openplanner.team/stops/N512acb"], ["https://tec.openplanner.team/stops/Bgrhcen1", "https://tec.openplanner.team/stops/Bgrhcro1"], ["https://tec.openplanner.team/stops/LrUkult2", "https://tec.openplanner.team/stops/LrUwenz1"], ["https://tec.openplanner.team/stops/N521ama", "https://tec.openplanner.team/stops/N521amb"], ["https://tec.openplanner.team/stops/Cflcent1", "https://tec.openplanner.team/stops/Cflecep1"], ["https://tec.openplanner.team/stops/Bsdacab1", "https://tec.openplanner.team/stops/Bvlvpco2"], ["https://tec.openplanner.team/stops/NH01aoa", "https://tec.openplanner.team/stops/NH01ara"], ["https://tec.openplanner.team/stops/X396aaa", "https://tec.openplanner.team/stops/X396abb"], ["https://tec.openplanner.team/stops/X390ahb", "https://tec.openplanner.team/stops/X902aha"], ["https://tec.openplanner.team/stops/X638ara", "https://tec.openplanner.team/stops/X638arb"], ["https://tec.openplanner.team/stops/X631aab", "https://tec.openplanner.team/stops/X631aba"], ["https://tec.openplanner.team/stops/LwSbrei1", "https://tec.openplanner.team/stops/LwSbrei2"], ["https://tec.openplanner.team/stops/X718ajb", "https://tec.openplanner.team/stops/X733aha"], ["https://tec.openplanner.team/stops/LkEhatt1", "https://tec.openplanner.team/stops/LkEheyg1"], ["https://tec.openplanner.team/stops/Cptegli3", "https://tec.openplanner.team/stops/Cptplac5"], ["https://tec.openplanner.team/stops/LBbhupp1", "https://tec.openplanner.team/stops/LTPpisc1"], ["https://tec.openplanner.team/stops/LLemonu2", "https://tec.openplanner.team/stops/X547adb"], ["https://tec.openplanner.team/stops/X750aub", "https://tec.openplanner.team/stops/X750bhb"], ["https://tec.openplanner.team/stops/H4ty307b", "https://tec.openplanner.team/stops/H4ty344b"], ["https://tec.openplanner.team/stops/Ccupetp1", "https://tec.openplanner.team/stops/Ccupomp2"], ["https://tec.openplanner.team/stops/H1bb117a", "https://tec.openplanner.team/stops/H1bb120a"], ["https://tec.openplanner.team/stops/Bbcopre2", "https://tec.openplanner.team/stops/Brebrha1"], ["https://tec.openplanner.team/stops/H4ka186a", "https://tec.openplanner.team/stops/H4ka187b"], ["https://tec.openplanner.team/stops/X721akb", "https://tec.openplanner.team/stops/X721ala"], ["https://tec.openplanner.team/stops/Ccicouc1", "https://tec.openplanner.team/stops/Ccicouc2"], ["https://tec.openplanner.team/stops/LETmagn2", "https://tec.openplanner.team/stops/LETsaiv2"], ["https://tec.openplanner.team/stops/X921aia", "https://tec.openplanner.team/stops/X921alb"], ["https://tec.openplanner.team/stops/Buccgob1", "https://tec.openplanner.team/stops/Buccgob2"], ["https://tec.openplanner.team/stops/LmRh%C3%B6811", "https://tec.openplanner.team/stops/LmRkreu1"], ["https://tec.openplanner.team/stops/LHSlava2", "https://tec.openplanner.team/stops/LHSvina2"], ["https://tec.openplanner.team/stops/LTIcime1", "https://tec.openplanner.team/stops/LTIcime2"], ["https://tec.openplanner.team/stops/H4ne140a", "https://tec.openplanner.team/stops/H4ne148a"], ["https://tec.openplanner.team/stops/LeLsied1", "https://tec.openplanner.team/stops/LeLsied2"], ["https://tec.openplanner.team/stops/Clvimtr2", "https://tec.openplanner.team/stops/Clvimtr3"], ["https://tec.openplanner.team/stops/X801cea", "https://tec.openplanner.team/stops/X801ceb"], ["https://tec.openplanner.team/stops/N525aca", "https://tec.openplanner.team/stops/N525azb"], ["https://tec.openplanner.team/stops/Bvilcoq2", "https://tec.openplanner.team/stops/Bvilvil2"], ["https://tec.openplanner.team/stops/LlAdorf1", "https://tec.openplanner.team/stops/LoDmuhl2"], ["https://tec.openplanner.team/stops/Cbmind1", "https://tec.openplanner.team/stops/Cbmviv2"], ["https://tec.openplanner.team/stops/H1hh109a", "https://tec.openplanner.team/stops/H1hh113b"], ["https://tec.openplanner.team/stops/LhMmeil2", "https://tec.openplanner.team/stops/LhMwing1"], ["https://tec.openplanner.team/stops/Cplcafp1", "https://tec.openplanner.team/stops/Cplrymo1"], ["https://tec.openplanner.team/stops/Lflgare2", "https://tec.openplanner.team/stops/Lfllapi4"], ["https://tec.openplanner.team/stops/H2ll257a", "https://tec.openplanner.team/stops/H2ll257d"], ["https://tec.openplanner.team/stops/H2hg153a", "https://tec.openplanner.team/stops/H2tr246a"], ["https://tec.openplanner.team/stops/Lsmrwan1", "https://tec.openplanner.team/stops/Lsmsech4"], ["https://tec.openplanner.team/stops/H1ml111a", "https://tec.openplanner.team/stops/H1ml111b"], ["https://tec.openplanner.team/stops/H1mk111a", "https://tec.openplanner.team/stops/H1mk114a"], ["https://tec.openplanner.team/stops/X615apb", "https://tec.openplanner.team/stops/X615brb"], ["https://tec.openplanner.team/stops/N113aea", "https://tec.openplanner.team/stops/X317aba"], ["https://tec.openplanner.team/stops/N501epd", "https://tec.openplanner.team/stops/N501kbb"], ["https://tec.openplanner.team/stops/X954abb", "https://tec.openplanner.team/stops/X954adb"], ["https://tec.openplanner.team/stops/Csecout1", "https://tec.openplanner.team/stops/Csemacq4"], ["https://tec.openplanner.team/stops/LMOc50-1", "https://tec.openplanner.team/stops/LMOford1"], ["https://tec.openplanner.team/stops/LFEplac1", "https://tec.openplanner.team/stops/X597aab"], ["https://tec.openplanner.team/stops/H4fo116b", "https://tec.openplanner.team/stops/H4my123b"], ["https://tec.openplanner.team/stops/Cfrtill1", "https://tec.openplanner.team/stops/Cfrtill2"], ["https://tec.openplanner.team/stops/H2sb226a", "https://tec.openplanner.team/stops/H2sb231c"], ["https://tec.openplanner.team/stops/N153aca", "https://tec.openplanner.team/stops/N153ada"], ["https://tec.openplanner.team/stops/X757aba", "https://tec.openplanner.team/stops/X757abb"], ["https://tec.openplanner.team/stops/X634agb", "https://tec.openplanner.team/stops/X634aja"], ["https://tec.openplanner.team/stops/Llgpoli1", "https://tec.openplanner.team/stops/Llgpoli2"], ["https://tec.openplanner.team/stops/Cctfrbe2", "https://tec.openplanner.team/stops/NC02agc"], ["https://tec.openplanner.team/stops/H4ef162b", "https://tec.openplanner.team/stops/H4ef164b"], ["https://tec.openplanner.team/stops/H1te174a", "https://tec.openplanner.team/stops/H1te182a"], ["https://tec.openplanner.team/stops/N522aba", "https://tec.openplanner.team/stops/N522abc"], ["https://tec.openplanner.team/stops/LVLgrum2", "https://tec.openplanner.team/stops/LVLmart1"], ["https://tec.openplanner.team/stops/H4bs111a", "https://tec.openplanner.team/stops/H4ws158a"], ["https://tec.openplanner.team/stops/H2gy100a", "https://tec.openplanner.team/stops/H2tz115a"], ["https://tec.openplanner.team/stops/Clgrsoc1", "https://tec.openplanner.team/stops/Csscrot1"], ["https://tec.openplanner.team/stops/Llgnati1", "https://tec.openplanner.team/stops/Llgpari1"], ["https://tec.openplanner.team/stops/H1pd145a", "https://tec.openplanner.team/stops/H1sb149b"], ["https://tec.openplanner.team/stops/Bwaucan1", "https://tec.openplanner.team/stops/Bwaucan2"], ["https://tec.openplanner.team/stops/LMHec--1", "https://tec.openplanner.team/stops/NL73aeb"], ["https://tec.openplanner.team/stops/N501exa", "https://tec.openplanner.team/stops/N501gqb"], ["https://tec.openplanner.team/stops/N874amc", "https://tec.openplanner.team/stops/X874apa"], ["https://tec.openplanner.team/stops/Lhrdeme2", "https://tec.openplanner.team/stops/Lhrdeme4"], ["https://tec.openplanner.team/stops/X601bub", "https://tec.openplanner.team/stops/X601cdb"], ["https://tec.openplanner.team/stops/H2ch105a", "https://tec.openplanner.team/stops/H2ch105c"], ["https://tec.openplanner.team/stops/X731aeb", "https://tec.openplanner.team/stops/X731ama"], ["https://tec.openplanner.team/stops/Buccdef1", "https://tec.openplanner.team/stops/Buccdho2"], ["https://tec.openplanner.team/stops/Bbsgfva2", "https://tec.openplanner.team/stops/Bgzdsta1"], ["https://tec.openplanner.team/stops/H2ch107b", "https://tec.openplanner.team/stops/H2ch125a"], ["https://tec.openplanner.team/stops/Bnivga11", "https://tec.openplanner.team/stops/Bnivsse1"], ["https://tec.openplanner.team/stops/H4ir163b", "https://tec.openplanner.team/stops/H4ir164a"], ["https://tec.openplanner.team/stops/Llggram1", "https://tec.openplanner.team/stops/Llgstvi1"], ["https://tec.openplanner.team/stops/LNChock1", "https://tec.openplanner.team/stops/LNCmoul1"], ["https://tec.openplanner.team/stops/Bbearwa1", "https://tec.openplanner.team/stops/Bbearwa2"], ["https://tec.openplanner.team/stops/LWArege1", "https://tec.openplanner.team/stops/LWAvand1"], ["https://tec.openplanner.team/stops/LBapepi3", "https://tec.openplanner.team/stops/LBapepi4"], ["https://tec.openplanner.team/stops/Lre3che2", "https://tec.openplanner.team/stops/Lrecite2"], ["https://tec.openplanner.team/stops/Becegar1", "https://tec.openplanner.team/stops/H2ec103b"], ["https://tec.openplanner.team/stops/LaMahof2", "https://tec.openplanner.team/stops/LmRmuhl1"], ["https://tec.openplanner.team/stops/X943aaa", "https://tec.openplanner.team/stops/X943ahb"], ["https://tec.openplanner.team/stops/Cthbifu1", "https://tec.openplanner.team/stops/Cthbifu2"], ["https://tec.openplanner.team/stops/Ccoh1212", "https://tec.openplanner.team/stops/Ccomiau2"], ["https://tec.openplanner.team/stops/H4eg105b", "https://tec.openplanner.team/stops/H4pq120a"], ["https://tec.openplanner.team/stops/LHDmc--1", "https://tec.openplanner.team/stops/LHDpota3"], ["https://tec.openplanner.team/stops/X910aba", "https://tec.openplanner.team/stops/X910aia"], ["https://tec.openplanner.team/stops/Loubiez3", "https://tec.openplanner.team/stops/Lousite6"], ["https://tec.openplanner.team/stops/LLaover3", "https://tec.openplanner.team/stops/LWscona1"], ["https://tec.openplanner.team/stops/X760afa", "https://tec.openplanner.team/stops/X762aeb"], ["https://tec.openplanner.team/stops/N132aca", "https://tec.openplanner.team/stops/N132acb"], ["https://tec.openplanner.team/stops/X713acb", "https://tec.openplanner.team/stops/X986alc"], ["https://tec.openplanner.team/stops/H1ml112b", "https://tec.openplanner.team/stops/H1to152a"], ["https://tec.openplanner.team/stops/X733agb", "https://tec.openplanner.team/stops/X733alb"], ["https://tec.openplanner.team/stops/LJEmalg2", "https://tec.openplanner.team/stops/LSkyern2"], ["https://tec.openplanner.team/stops/Bbcoubo2", "https://tec.openplanner.team/stops/H3br108d"], ["https://tec.openplanner.team/stops/Bnivtec2", "https://tec.openplanner.team/stops/Bnivvai2"], ["https://tec.openplanner.team/stops/Crodebr2", "https://tec.openplanner.team/stops/Crolema4"], ["https://tec.openplanner.team/stops/H2fy123a", "https://tec.openplanner.team/stops/H2fy123d"], ["https://tec.openplanner.team/stops/N506afb", "https://tec.openplanner.team/stops/N537aka"], ["https://tec.openplanner.team/stops/LeMdorf2", "https://tec.openplanner.team/stops/LeMnr12"], ["https://tec.openplanner.team/stops/N531aca", "https://tec.openplanner.team/stops/N531aia"], ["https://tec.openplanner.team/stops/H1sb145b", "https://tec.openplanner.team/stops/H1sb148a"], ["https://tec.openplanner.team/stops/N235aab", "https://tec.openplanner.team/stops/N236amb"], ["https://tec.openplanner.team/stops/N230ama", "https://tec.openplanner.team/stops/N549acb"], ["https://tec.openplanner.team/stops/LAYthir1", "https://tec.openplanner.team/stops/LAYthir2"], ["https://tec.openplanner.team/stops/Ccogode2", "https://tec.openplanner.team/stops/Ccogrha2"], ["https://tec.openplanner.team/stops/Llgbago1", "https://tec.openplanner.team/stops/Llgbaro2"], ["https://tec.openplanner.team/stops/X721aba", "https://tec.openplanner.team/stops/X763aia"], ["https://tec.openplanner.team/stops/H1do126b", "https://tec.openplanner.team/stops/H1ho135a"], ["https://tec.openplanner.team/stops/Lhrcite2", "https://tec.openplanner.team/stops/Lhrpont2"], ["https://tec.openplanner.team/stops/Cpccoss1", "https://tec.openplanner.team/stops/Cpccpas1"], ["https://tec.openplanner.team/stops/Cbfgare1", "https://tec.openplanner.team/stops/Cbfgare2"], ["https://tec.openplanner.team/stops/Lbrptbr1", "https://tec.openplanner.team/stops/Lbrptbr2"], ["https://tec.openplanner.team/stops/Bcrnnra1", "https://tec.openplanner.team/stops/Bcrnnra2"], ["https://tec.openplanner.team/stops/Lsebrun3", "https://tec.openplanner.team/stops/Lsebrun4"], ["https://tec.openplanner.team/stops/X660adb", "https://tec.openplanner.team/stops/X660agb"], ["https://tec.openplanner.team/stops/N141ada", "https://tec.openplanner.team/stops/N141ama"], ["https://tec.openplanner.team/stops/H2sb257b", "https://tec.openplanner.team/stops/H2sb271a"], ["https://tec.openplanner.team/stops/LBPeg--1", "https://tec.openplanner.team/stops/LBPrueg1"], ["https://tec.openplanner.team/stops/X713aea", "https://tec.openplanner.team/stops/X713agb"], ["https://tec.openplanner.team/stops/Cnahahe1", "https://tec.openplanner.team/stops/Cnawari2"], ["https://tec.openplanner.team/stops/Chhplbe2", "https://tec.openplanner.team/stops/Chhthui1"], ["https://tec.openplanner.team/stops/Cbfbies2", "https://tec.openplanner.team/stops/Cctvill1"], ["https://tec.openplanner.team/stops/N121ajb", "https://tec.openplanner.team/stops/N122afb"], ["https://tec.openplanner.team/stops/N127aaa", "https://tec.openplanner.team/stops/N127bba"], ["https://tec.openplanner.team/stops/H2ca100a", "https://tec.openplanner.team/stops/H2ca103a"], ["https://tec.openplanner.team/stops/LBLwaid1", "https://tec.openplanner.team/stops/LTrrich2"], ["https://tec.openplanner.team/stops/Bucccal4", "https://tec.openplanner.team/stops/Bucceng1"], ["https://tec.openplanner.team/stops/Lsehya-3", "https://tec.openplanner.team/stops/Lsepapi3"], ["https://tec.openplanner.team/stops/Cjulucq2", "https://tec.openplanner.team/stops/Cjupuis1"], ["https://tec.openplanner.team/stops/LBbbac-1", "https://tec.openplanner.team/stops/LBbhupp1"], ["https://tec.openplanner.team/stops/H1ma233a", "https://tec.openplanner.team/stops/H1ms310a"], ["https://tec.openplanner.team/stops/X607aca", "https://tec.openplanner.team/stops/X607acb"], ["https://tec.openplanner.team/stops/LNCspor1", "https://tec.openplanner.team/stops/LNCspor2"], ["https://tec.openplanner.team/stops/X542acb", "https://tec.openplanner.team/stops/X542adb"], ["https://tec.openplanner.team/stops/H2ll182a", "https://tec.openplanner.team/stops/H2ll199a"], ["https://tec.openplanner.team/stops/N138aab", "https://tec.openplanner.team/stops/N138afa"], ["https://tec.openplanner.team/stops/Cctathe1", "https://tec.openplanner.team/stops/Cctstro3"], ["https://tec.openplanner.team/stops/N310aba", "https://tec.openplanner.team/stops/N310ada"], ["https://tec.openplanner.team/stops/H3so167a", "https://tec.openplanner.team/stops/H3so170a"], ["https://tec.openplanner.team/stops/X633aca", "https://tec.openplanner.team/stops/X633adc"], ["https://tec.openplanner.team/stops/X780aba", "https://tec.openplanner.team/stops/X780ada"], ["https://tec.openplanner.team/stops/LENalun1", "https://tec.openplanner.team/stops/LENparc2"], ["https://tec.openplanner.team/stops/H1qu109b", "https://tec.openplanner.team/stops/H1qu114b"], ["https://tec.openplanner.team/stops/Brsgm302", "https://tec.openplanner.team/stops/Brsgm802"], ["https://tec.openplanner.team/stops/H2ha129c", "https://tec.openplanner.team/stops/H2ha129d"], ["https://tec.openplanner.team/stops/N506bhb", "https://tec.openplanner.team/stops/N512axa"], ["https://tec.openplanner.team/stops/LmNkrew1", "https://tec.openplanner.team/stops/LmNlieb2"], ["https://tec.openplanner.team/stops/Bjodsje1", "https://tec.openplanner.team/stops/Bjodsme2"], ["https://tec.openplanner.team/stops/X804anb", "https://tec.openplanner.team/stops/X804bwb"], ["https://tec.openplanner.team/stops/Lcceclu1", "https://tec.openplanner.team/stops/Lcceclu2"], ["https://tec.openplanner.team/stops/Bgemrom3", "https://tec.openplanner.team/stops/Bgemrom4"], ["https://tec.openplanner.team/stops/H1qg138d", "https://tec.openplanner.team/stops/H1qy136b"], ["https://tec.openplanner.team/stops/N565aja", "https://tec.openplanner.team/stops/N569afa"], ["https://tec.openplanner.team/stops/Ljuchaf2", "https://tec.openplanner.team/stops/Ljumiux1"], ["https://tec.openplanner.team/stops/Baegegl2", "https://tec.openplanner.team/stops/Bflccav1"], ["https://tec.openplanner.team/stops/LWecarr1", "https://tec.openplanner.team/stops/LWecarr2"], ["https://tec.openplanner.team/stops/N894aba", "https://tec.openplanner.team/stops/N894abb"], ["https://tec.openplanner.team/stops/LgRzent1", "https://tec.openplanner.team/stops/LtHkreu4"], ["https://tec.openplanner.team/stops/Clrmarl4", "https://tec.openplanner.team/stops/CMpara1"], ["https://tec.openplanner.team/stops/Bbsgbos2", "https://tec.openplanner.team/stops/Bbsgrve2"], ["https://tec.openplanner.team/stops/H4ha170b", "https://tec.openplanner.team/stops/H4me213a"], ["https://tec.openplanner.team/stops/N244aeb", "https://tec.openplanner.team/stops/N244ava"], ["https://tec.openplanner.team/stops/LPoewer1", "https://tec.openplanner.team/stops/LPoxhav1"], ["https://tec.openplanner.team/stops/N538aia", "https://tec.openplanner.team/stops/N538ajc"], ["https://tec.openplanner.team/stops/Lseconc2", "https://tec.openplanner.team/stops/Lsetroq1"], ["https://tec.openplanner.team/stops/LWEwilc1", "https://tec.openplanner.team/stops/LWEwilc2"], ["https://tec.openplanner.team/stops/X715ajb", "https://tec.openplanner.team/stops/X715akb"], ["https://tec.openplanner.team/stops/LBBcamp2", "https://tec.openplanner.team/stops/LLvgare2"], ["https://tec.openplanner.team/stops/X651aba", "https://tec.openplanner.team/stops/X651aea"], ["https://tec.openplanner.team/stops/X358ada", "https://tec.openplanner.team/stops/X358aeb"], ["https://tec.openplanner.team/stops/X923aaa", "https://tec.openplanner.team/stops/X923akb"], ["https://tec.openplanner.team/stops/Ladgath1", "https://tec.openplanner.team/stops/Ladmoli1"], ["https://tec.openplanner.team/stops/N201aea", "https://tec.openplanner.team/stops/N201aed"], ["https://tec.openplanner.team/stops/N270acb", "https://tec.openplanner.team/stops/N270adb"], ["https://tec.openplanner.team/stops/X746akb", "https://tec.openplanner.team/stops/X746alb"], ["https://tec.openplanner.team/stops/Ladwooz1", "https://tec.openplanner.team/stops/LHCcoul1"], ["https://tec.openplanner.team/stops/H4ho120a", "https://tec.openplanner.team/stops/H4lg103b"], ["https://tec.openplanner.team/stops/Bgemga07", "https://tec.openplanner.team/stops/N522bvf"], ["https://tec.openplanner.team/stops/X782alb", "https://tec.openplanner.team/stops/X782aob"], ["https://tec.openplanner.team/stops/H4oq223a", "https://tec.openplanner.team/stops/H4ty327a"], ["https://tec.openplanner.team/stops/H1ht128b", "https://tec.openplanner.team/stops/H1si155b"], ["https://tec.openplanner.team/stops/X837aia", "https://tec.openplanner.team/stops/X837aib"], ["https://tec.openplanner.team/stops/Cmymarb1", "https://tec.openplanner.team/stops/Cmymarb2"], ["https://tec.openplanner.team/stops/LHCbois2", "https://tec.openplanner.team/stops/LHCprog2"], ["https://tec.openplanner.team/stops/X802ada", "https://tec.openplanner.team/stops/X802apa"], ["https://tec.openplanner.team/stops/Lgrdemo1", "https://tec.openplanner.team/stops/Lgrjobe2"], ["https://tec.openplanner.team/stops/Bhlvlou2", "https://tec.openplanner.team/stops/Bhlvvil1"], ["https://tec.openplanner.team/stops/X741aka", "https://tec.openplanner.team/stops/X741ala"], ["https://tec.openplanner.team/stops/X917aba", "https://tec.openplanner.team/stops/X917ajb"], ["https://tec.openplanner.team/stops/N580aha", "https://tec.openplanner.team/stops/N580ahb"], ["https://tec.openplanner.team/stops/LBiberg2", "https://tec.openplanner.team/stops/LBNforg2"], ["https://tec.openplanner.team/stops/Ljeegli3", "https://tec.openplanner.team/stops/Ljeorda1"], ["https://tec.openplanner.team/stops/N557adb", "https://tec.openplanner.team/stops/N557aga"], ["https://tec.openplanner.team/stops/LCSmagn1", "https://tec.openplanner.team/stops/LENengi2"], ["https://tec.openplanner.team/stops/H1bx105b", "https://tec.openplanner.team/stops/H1bx106b"], ["https://tec.openplanner.team/stops/LGLc50-3", "https://tec.openplanner.team/stops/LGLecol1"], ["https://tec.openplanner.team/stops/X729abb", "https://tec.openplanner.team/stops/X729aca"], ["https://tec.openplanner.team/stops/LLbrecu1", "https://tec.openplanner.team/stops/LRcjard2"], ["https://tec.openplanner.team/stops/H1ms278a", "https://tec.openplanner.team/stops/H1ms287b"], ["https://tec.openplanner.team/stops/N542acc", "https://tec.openplanner.team/stops/N542asb"], ["https://tec.openplanner.team/stops/Cgoetun3", "https://tec.openplanner.team/stops/Cgoetun4"], ["https://tec.openplanner.team/stops/X615bbb", "https://tec.openplanner.team/stops/X615bcb"], ["https://tec.openplanner.team/stops/Bquecro1", "https://tec.openplanner.team/stops/Bqueegl1"], ["https://tec.openplanner.team/stops/Bbrlvil1", "https://tec.openplanner.team/stops/Brsgtou1"], ["https://tec.openplanner.team/stops/N162ada", "https://tec.openplanner.team/stops/N162adb"], ["https://tec.openplanner.team/stops/X940afa", "https://tec.openplanner.team/stops/X940afb"], ["https://tec.openplanner.team/stops/LnN02--1", "https://tec.openplanner.team/stops/LsVlust1"], ["https://tec.openplanner.team/stops/X840aab", "https://tec.openplanner.team/stops/X840aga"], ["https://tec.openplanner.team/stops/LSEquar1", "https://tec.openplanner.team/stops/LSEquar2"], ["https://tec.openplanner.team/stops/Cmtduch2", "https://tec.openplanner.team/stops/Cmttkai1"], ["https://tec.openplanner.team/stops/X892aia", "https://tec.openplanner.team/stops/X892aja"], ["https://tec.openplanner.team/stops/LSPecho1", "https://tec.openplanner.team/stops/LWM759-1"], ["https://tec.openplanner.team/stops/Lhrchar1", "https://tec.openplanner.team/stops/Lhrchar3"], ["https://tec.openplanner.team/stops/N150acb", "https://tec.openplanner.team/stops/N150afb"], ["https://tec.openplanner.team/stops/N506akb", "https://tec.openplanner.team/stops/N506bxb"], ["https://tec.openplanner.team/stops/X607aib", "https://tec.openplanner.team/stops/X647aab"], ["https://tec.openplanner.team/stops/N351akd", "https://tec.openplanner.team/stops/N351ala"], ["https://tec.openplanner.team/stops/Clodrio4", "https://tec.openplanner.team/stops/Clomart2"], ["https://tec.openplanner.team/stops/Lagstre1", "https://tec.openplanner.team/stops/Lemjacq1"], ["https://tec.openplanner.team/stops/N127aba", "https://tec.openplanner.team/stops/N127aia"], ["https://tec.openplanner.team/stops/Bptbmco2", "https://tec.openplanner.team/stops/Brxmcna1"], ["https://tec.openplanner.team/stops/Blmlcim2", "https://tec.openplanner.team/stops/Blmlqlo2"], ["https://tec.openplanner.team/stops/LPAeg--1", "https://tec.openplanner.team/stops/LPAmosa2"], ["https://tec.openplanner.team/stops/H4cw105b", "https://tec.openplanner.team/stops/H4hg156a"], ["https://tec.openplanner.team/stops/X662aca", "https://tec.openplanner.team/stops/X662agb"], ["https://tec.openplanner.team/stops/Cfcrerp2", "https://tec.openplanner.team/stops/Cvrfema1"], ["https://tec.openplanner.team/stops/Lhrdelv1", "https://tec.openplanner.team/stops/Lvitomb2"], ["https://tec.openplanner.team/stops/LAmab752", "https://tec.openplanner.team/stops/LVLchem2"], ["https://tec.openplanner.team/stops/Cfachap1", "https://tec.openplanner.team/stops/Cfaplma2"], ["https://tec.openplanner.team/stops/LBVcent2", "https://tec.openplanner.team/stops/LBVplan2"], ["https://tec.openplanner.team/stops/N245acb", "https://tec.openplanner.team/stops/N287aca"], ["https://tec.openplanner.team/stops/Bglacsr1", "https://tec.openplanner.team/stops/Cwspavi1"], ["https://tec.openplanner.team/stops/Cgocalv2", "https://tec.openplanner.team/stops/CMchfl1"], ["https://tec.openplanner.team/stops/N501lyb", "https://tec.openplanner.team/stops/N501mey"], ["https://tec.openplanner.team/stops/H5bl118b", "https://tec.openplanner.team/stops/H5bl120a"], ["https://tec.openplanner.team/stops/Bptrgri2", "https://tec.openplanner.team/stops/Brosegl1"], ["https://tec.openplanner.team/stops/X801bwb", "https://tec.openplanner.team/stops/X802ana"], ["https://tec.openplanner.team/stops/N162aeb", "https://tec.openplanner.team/stops/N162afb"], ["https://tec.openplanner.team/stops/X860aab", "https://tec.openplanner.team/stops/X860abb"], ["https://tec.openplanner.team/stops/Bleugar1", "https://tec.openplanner.team/stops/LMastat4"], ["https://tec.openplanner.team/stops/N501gca", "https://tec.openplanner.team/stops/N501lnb"], ["https://tec.openplanner.team/stops/Lsnmala1", "https://tec.openplanner.team/stops/Lsnmala3"], ["https://tec.openplanner.team/stops/N501hoa", "https://tec.openplanner.team/stops/N501hqb"], ["https://tec.openplanner.team/stops/X619aib", "https://tec.openplanner.team/stops/X619aic"], ["https://tec.openplanner.team/stops/H1me112b", "https://tec.openplanner.team/stops/H1mm127b"], ["https://tec.openplanner.team/stops/Lvegazo1", "https://tec.openplanner.team/stops/Lvehout1"], ["https://tec.openplanner.team/stops/H1pw120b", "https://tec.openplanner.team/stops/H1pw121b"], ["https://tec.openplanner.team/stops/LSSvill2", "https://tec.openplanner.team/stops/LSSvill3"], ["https://tec.openplanner.team/stops/H1ob328a", "https://tec.openplanner.team/stops/H1ob328b"], ["https://tec.openplanner.team/stops/X734anc", "https://tec.openplanner.team/stops/X734and"], ["https://tec.openplanner.team/stops/N501dfa", "https://tec.openplanner.team/stops/N501mxb"], ["https://tec.openplanner.team/stops/N149acb", "https://tec.openplanner.team/stops/N154ada"], ["https://tec.openplanner.team/stops/Cbctile", "https://tec.openplanner.team/stops/Cfvombo1"], ["https://tec.openplanner.team/stops/LlgPRVo1", "https://tec.openplanner.team/stops/LlgPRVo2"], ["https://tec.openplanner.team/stops/N525ada", "https://tec.openplanner.team/stops/N525alb"], ["https://tec.openplanner.team/stops/Llgnaes1", "https://tec.openplanner.team/stops/Llgnaes2"], ["https://tec.openplanner.team/stops/X371aib", "https://tec.openplanner.team/stops/X371aja"], ["https://tec.openplanner.team/stops/X641ajb", "https://tec.openplanner.team/stops/X641akb"], ["https://tec.openplanner.team/stops/Bmrlhan2", "https://tec.openplanner.team/stops/Bmrlhan3"], ["https://tec.openplanner.team/stops/Bmonbor1", "https://tec.openplanner.team/stops/Bmoncab1"], ["https://tec.openplanner.team/stops/X897aqa", "https://tec.openplanner.team/stops/X897aqb"], ["https://tec.openplanner.team/stops/X922aja", "https://tec.openplanner.team/stops/X922ajb"], ["https://tec.openplanner.team/stops/Crgmgri1", "https://tec.openplanner.team/stops/Crgmgri2"], ["https://tec.openplanner.team/stops/H1cd111b", "https://tec.openplanner.team/stops/H1hr127b"], ["https://tec.openplanner.team/stops/X224abb", "https://tec.openplanner.team/stops/X224acb"], ["https://tec.openplanner.team/stops/X615apa", "https://tec.openplanner.team/stops/X615apb"], ["https://tec.openplanner.team/stops/LLbpt--2", "https://tec.openplanner.team/stops/LLbquar2"], ["https://tec.openplanner.team/stops/Cfcpla1", "https://tec.openplanner.team/stops/Cfcpla2"], ["https://tec.openplanner.team/stops/Ccicent1", "https://tec.openplanner.team/stops/Ccicent3"], ["https://tec.openplanner.team/stops/Csrcant2", "https://tec.openplanner.team/stops/Cvtvois1"], ["https://tec.openplanner.team/stops/X886ahb", "https://tec.openplanner.team/stops/X888acb"], ["https://tec.openplanner.team/stops/Bsampli2", "https://tec.openplanner.team/stops/N584bba"], ["https://tec.openplanner.team/stops/Brsgera1", "https://tec.openplanner.team/stops/Brsggde2"], ["https://tec.openplanner.team/stops/H2sv219b", "https://tec.openplanner.team/stops/H2sv220b"], ["https://tec.openplanner.team/stops/H1ba114a", "https://tec.openplanner.team/stops/H1ba114d"], ["https://tec.openplanner.team/stops/LHUbail1", "https://tec.openplanner.team/stops/LHUsart1"], ["https://tec.openplanner.team/stops/H4ep126b", "https://tec.openplanner.team/stops/H4ep131b"], ["https://tec.openplanner.team/stops/X871aba", "https://tec.openplanner.team/stops/X876afa"], ["https://tec.openplanner.team/stops/N545aca", "https://tec.openplanner.team/stops/N553ana"], ["https://tec.openplanner.team/stops/X607aga", "https://tec.openplanner.team/stops/X607ajb"], ["https://tec.openplanner.team/stops/LBThaut2", "https://tec.openplanner.team/stops/Lprspra1"], ["https://tec.openplanner.team/stops/N368ada", "https://tec.openplanner.team/stops/N368aea"], ["https://tec.openplanner.team/stops/LBpvue-1", "https://tec.openplanner.team/stops/LHgroso2"], ["https://tec.openplanner.team/stops/N234aaa", "https://tec.openplanner.team/stops/N234acb"], ["https://tec.openplanner.team/stops/LbUkrin1", "https://tec.openplanner.team/stops/LbUmurr2"], ["https://tec.openplanner.team/stops/N501kea", "https://tec.openplanner.team/stops/N501kmy"], ["https://tec.openplanner.team/stops/Cctchea1", "https://tec.openplanner.team/stops/NC11aja"], ["https://tec.openplanner.team/stops/H4au100a", "https://tec.openplanner.team/stops/H4ea127a"], ["https://tec.openplanner.team/stops/Cchlamb1", "https://tec.openplanner.team/stops/Clodrio3"], ["https://tec.openplanner.team/stops/Bwatpas2", "https://tec.openplanner.team/stops/Bwatrdu1"], ["https://tec.openplanner.team/stops/Caujonc2", "https://tec.openplanner.team/stops/Cauromi1"], ["https://tec.openplanner.team/stops/LRtcarr1", "https://tec.openplanner.team/stops/LSebott1"], ["https://tec.openplanner.team/stops/N539adc", "https://tec.openplanner.team/stops/N539ana"], ["https://tec.openplanner.team/stops/H1sg148a", "https://tec.openplanner.team/stops/H1te174a"], ["https://tec.openplanner.team/stops/Bblaall2", "https://tec.openplanner.team/stops/Bblavba2"], ["https://tec.openplanner.team/stops/Berngrt2", "https://tec.openplanner.team/stops/Bernrar2"], ["https://tec.openplanner.team/stops/Llgcurt1", "https://tec.openplanner.team/stops/Llgdepo6"], ["https://tec.openplanner.team/stops/LSpfond1", "https://tec.openplanner.team/stops/LSphote2"], ["https://tec.openplanner.team/stops/H1he104a", "https://tec.openplanner.team/stops/H1he106a"], ["https://tec.openplanner.team/stops/LeUmeye2", "https://tec.openplanner.team/stops/LrAiter1"], ["https://tec.openplanner.team/stops/LSPchap3", "https://tec.openplanner.team/stops/LSProya1"], ["https://tec.openplanner.team/stops/LsVeite1", "https://tec.openplanner.team/stops/LwLprum2"], ["https://tec.openplanner.team/stops/H1en101a", "https://tec.openplanner.team/stops/H1en103a"], ["https://tec.openplanner.team/stops/X614bra", "https://tec.openplanner.team/stops/X626ala"], ["https://tec.openplanner.team/stops/Bptecal1", "https://tec.openplanner.team/stops/Bptecal2"], ["https://tec.openplanner.team/stops/N501kva", "https://tec.openplanner.team/stops/N501kwb"], ["https://tec.openplanner.team/stops/LAOeg--2", "https://tec.openplanner.team/stops/LLRgdma2"], ["https://tec.openplanner.team/stops/Cfohopi1", "https://tec.openplanner.team/stops/Cfohopi2"], ["https://tec.openplanner.team/stops/Bbiemor2", "https://tec.openplanner.team/stops/Bbiepon2"], ["https://tec.openplanner.team/stops/H1og130b", "https://tec.openplanner.team/stops/H1og134b"], ["https://tec.openplanner.team/stops/H1do127a", "https://tec.openplanner.team/stops/H1do130b"], ["https://tec.openplanner.team/stops/LDObell2", "https://tec.openplanner.team/stops/LHVgoro2"], ["https://tec.openplanner.team/stops/Cluplve4", "https://tec.openplanner.team/stops/H2lu100d"], ["https://tec.openplanner.team/stops/LHUvege1", "https://tec.openplanner.team/stops/NL76ala"], ["https://tec.openplanner.team/stops/H4ep127a", "https://tec.openplanner.team/stops/H4ft134a"], ["https://tec.openplanner.team/stops/Bgzddub1", "https://tec.openplanner.team/stops/Bgzdsta1"], ["https://tec.openplanner.team/stops/H1te175a", "https://tec.openplanner.team/stops/H1te198a"], ["https://tec.openplanner.team/stops/H4ne138a", "https://tec.openplanner.team/stops/H4te260a"], ["https://tec.openplanner.team/stops/Bbchndb1", "https://tec.openplanner.team/stops/Bbchpil2"], ["https://tec.openplanner.team/stops/N501dja", "https://tec.openplanner.team/stops/N501lea"], ["https://tec.openplanner.team/stops/X641ata", "https://tec.openplanner.team/stops/X673aab"], ["https://tec.openplanner.team/stops/H4lu128a", "https://tec.openplanner.team/stops/H4mo193b"], ["https://tec.openplanner.team/stops/X902aib", "https://tec.openplanner.team/stops/X902aja"], ["https://tec.openplanner.team/stops/Cslbarb2", "https://tec.openplanner.team/stops/Cslegli1"], ["https://tec.openplanner.team/stops/Bgzdgst1", "https://tec.openplanner.team/stops/Bpecvme2"], ["https://tec.openplanner.team/stops/H1mb130a", "https://tec.openplanner.team/stops/H1mb130b"], ["https://tec.openplanner.team/stops/H4ty314a", "https://tec.openplanner.team/stops/H4ty314b"], ["https://tec.openplanner.team/stops/Bclglbu1", "https://tec.openplanner.team/stops/Bclgvse1"], ["https://tec.openplanner.team/stops/Lanegal2", "https://tec.openplanner.team/stops/Lanmouf2"], ["https://tec.openplanner.team/stops/Brxmcna1", "https://tec.openplanner.team/stops/Brxmcna2"], ["https://tec.openplanner.team/stops/H1ms258a", "https://tec.openplanner.team/stops/H1ms367a"], ["https://tec.openplanner.team/stops/Cgorobe1", "https://tec.openplanner.team/stops/Cgosoux1"], ["https://tec.openplanner.team/stops/X888abb", "https://tec.openplanner.team/stops/X899aeb"], ["https://tec.openplanner.team/stops/Cvrhaie2", "https://tec.openplanner.team/stops/NH03adb"], ["https://tec.openplanner.team/stops/H4mt219b", "https://tec.openplanner.team/stops/H4ve131b"], ["https://tec.openplanner.team/stops/Bblavba1", "https://tec.openplanner.team/stops/Bblavba2"], ["https://tec.openplanner.team/stops/N543cna", "https://tec.openplanner.team/stops/N543cnb"], ["https://tec.openplanner.team/stops/LhGscha*", "https://tec.openplanner.team/stops/LhSfrei1"], ["https://tec.openplanner.team/stops/H4bo110a", "https://tec.openplanner.team/stops/H4bo111a"], ["https://tec.openplanner.team/stops/X902abb", "https://tec.openplanner.team/stops/X902bbb"], ["https://tec.openplanner.team/stops/X623aaa", "https://tec.openplanner.team/stops/X623aab"], ["https://tec.openplanner.team/stops/H2re163b", "https://tec.openplanner.team/stops/H2re167a"], ["https://tec.openplanner.team/stops/Lmodeja1", "https://tec.openplanner.team/stops/Lmoknae1"], ["https://tec.openplanner.team/stops/Lenplac2", "https://tec.openplanner.team/stops/Lenplac5"], ["https://tec.openplanner.team/stops/Ccugend1", "https://tec.openplanner.team/stops/Cculgeo2"], ["https://tec.openplanner.team/stops/LPAmosa2", "https://tec.openplanner.team/stops/LWibare1"], ["https://tec.openplanner.team/stops/H1qu119a", "https://tec.openplanner.team/stops/H1wa147b"], ["https://tec.openplanner.team/stops/Lsmdepo2", "https://tec.openplanner.team/stops/Lsmecol2"], ["https://tec.openplanner.team/stops/LCacoop2", "https://tec.openplanner.team/stops/LCaresi1"], ["https://tec.openplanner.team/stops/X768aia", "https://tec.openplanner.team/stops/X769ajb"], ["https://tec.openplanner.team/stops/Bmrsayw2", "https://tec.openplanner.team/stops/Bohnpla2"], ["https://tec.openplanner.team/stops/Lmochar1", "https://tec.openplanner.team/stops/Lmomarr3"], ["https://tec.openplanner.team/stops/LHCbois1", "https://tec.openplanner.team/stops/LHCcoul1"], ["https://tec.openplanner.team/stops/H4ty319b", "https://tec.openplanner.team/stops/H4ty405a"], ["https://tec.openplanner.team/stops/LGegare1", "https://tec.openplanner.team/stops/LVAwolf1"], ["https://tec.openplanner.team/stops/N504acb", "https://tec.openplanner.team/stops/N579aea"], ["https://tec.openplanner.team/stops/LmS11--1", "https://tec.openplanner.team/stops/LmS11--2"], ["https://tec.openplanner.team/stops/LAivill2", "https://tec.openplanner.team/stops/LENarde2"], ["https://tec.openplanner.team/stops/LSBrouf1", "https://tec.openplanner.team/stops/LSBrouf4"], ["https://tec.openplanner.team/stops/N139aea", "https://tec.openplanner.team/stops/N139aeb"], ["https://tec.openplanner.team/stops/LHggeer1", "https://tec.openplanner.team/stops/LHggeer2"], ["https://tec.openplanner.team/stops/LLreque2", "https://tec.openplanner.team/stops/LLrisa-*"], ["https://tec.openplanner.team/stops/LBHinva1", "https://tec.openplanner.team/stops/LMeperk2"], ["https://tec.openplanner.team/stops/X354adb", "https://tec.openplanner.team/stops/X354afb"], ["https://tec.openplanner.team/stops/H1wa151a", "https://tec.openplanner.team/stops/H1wa160a"], ["https://tec.openplanner.team/stops/X908aob", "https://tec.openplanner.team/stops/X908aoc"], ["https://tec.openplanner.team/stops/LREraph2", "https://tec.openplanner.team/stops/LREraph3"], ["https://tec.openplanner.team/stops/Bnivsho1", "https://tec.openplanner.team/stops/Bnivsho2"], ["https://tec.openplanner.team/stops/X661abb", "https://tec.openplanner.team/stops/X661bcb"], ["https://tec.openplanner.team/stops/Cjucopp2", "https://tec.openplanner.team/stops/Cjupn2"], ["https://tec.openplanner.team/stops/Bmelenf2", "https://tec.openplanner.team/stops/Bmelsab2"], ["https://tec.openplanner.team/stops/X595afc", "https://tec.openplanner.team/stops/X713aab"], ["https://tec.openplanner.team/stops/LFPgeme2", "https://tec.openplanner.team/stops/LFPkerk1"], ["https://tec.openplanner.team/stops/X654aea", "https://tec.openplanner.team/stops/X654aeb"], ["https://tec.openplanner.team/stops/LGLc12-3", "https://tec.openplanner.team/stops/LGLeg--1"], ["https://tec.openplanner.team/stops/X757ana", "https://tec.openplanner.team/stops/X757anb"], ["https://tec.openplanner.team/stops/Bsmgpon1", "https://tec.openplanner.team/stops/Btanvil2"], ["https://tec.openplanner.team/stops/Ccogrbu1", "https://tec.openplanner.team/stops/Csograf1"], ["https://tec.openplanner.team/stops/LVIpneu1", "https://tec.openplanner.team/stops/LVIpneu2"], ["https://tec.openplanner.team/stops/N244aka", "https://tec.openplanner.team/stops/N244ala"], ["https://tec.openplanner.team/stops/X629aba", "https://tec.openplanner.team/stops/X636aza"], ["https://tec.openplanner.team/stops/Bwatbno2", "https://tec.openplanner.team/stops/Bwatchb1"], ["https://tec.openplanner.team/stops/Lghalli1", "https://tec.openplanner.team/stops/Llochar4"], ["https://tec.openplanner.team/stops/Bjodrga1", "https://tec.openplanner.team/stops/Bjodrrg1"], ["https://tec.openplanner.team/stops/X878abb", "https://tec.openplanner.team/stops/X878acb"], ["https://tec.openplanner.team/stops/Cjudewe2", "https://tec.openplanner.team/stops/Clocroi2"], ["https://tec.openplanner.team/stops/X639asa", "https://tec.openplanner.team/stops/X652ahb"], ["https://tec.openplanner.team/stops/Cplrymo2", "https://tec.openplanner.team/stops/Cplstfa2"], ["https://tec.openplanner.team/stops/Bhaleur2", "https://tec.openplanner.team/stops/Bhalgja1"], ["https://tec.openplanner.team/stops/H1ro132a", "https://tec.openplanner.team/stops/H1ro132b"], ["https://tec.openplanner.team/stops/X896afb", "https://tec.openplanner.team/stops/X897aqa"], ["https://tec.openplanner.team/stops/Cbfchla2", "https://tec.openplanner.team/stops/Cbfusin1"], ["https://tec.openplanner.team/stops/N514agb", "https://tec.openplanner.team/stops/N514ahb"], ["https://tec.openplanner.team/stops/H2fy119a", "https://tec.openplanner.team/stops/H2fy120c"], ["https://tec.openplanner.team/stops/Lemmusc1", "https://tec.openplanner.team/stops/Lemmusc2"], ["https://tec.openplanner.team/stops/X721afa", "https://tec.openplanner.team/stops/X721agc"], ["https://tec.openplanner.team/stops/H1ne138a", "https://tec.openplanner.team/stops/H1ne138b"], ["https://tec.openplanner.team/stops/X923aha", "https://tec.openplanner.team/stops/X923ahb"], ["https://tec.openplanner.team/stops/X983ada", "https://tec.openplanner.team/stops/X983aeb"], ["https://tec.openplanner.team/stops/LmR90--1", "https://tec.openplanner.team/stops/LmR90--2"], ["https://tec.openplanner.team/stops/LHAarge1", "https://tec.openplanner.team/stops/LHAdeho1"], ["https://tec.openplanner.team/stops/Cjxpann2", "https://tec.openplanner.team/stops/Cmx3arb1"], ["https://tec.openplanner.team/stops/X398aba", "https://tec.openplanner.team/stops/X398ada"], ["https://tec.openplanner.team/stops/X742aca", "https://tec.openplanner.team/stops/X752aba"], ["https://tec.openplanner.team/stops/LTRpeec1", "https://tec.openplanner.team/stops/LTRpery1"], ["https://tec.openplanner.team/stops/H1br128b", "https://tec.openplanner.team/stops/H2tr248b"], ["https://tec.openplanner.team/stops/LNEtonv1", "https://tec.openplanner.team/stops/LVosoir2"], ["https://tec.openplanner.team/stops/Ccocoup2", "https://tec.openplanner.team/stops/Crorpai2"], ["https://tec.openplanner.team/stops/Llgmare6", "https://tec.openplanner.team/stops/Llgpoli1"], ["https://tec.openplanner.team/stops/Bhevjac2", "https://tec.openplanner.team/stops/Bhevwzw2"], ["https://tec.openplanner.team/stops/LCschri2", "https://tec.openplanner.team/stops/LCsgend1"], ["https://tec.openplanner.team/stops/Cvrchap1", "https://tec.openplanner.team/stops/Cvretan1"], ["https://tec.openplanner.team/stops/X764afb", "https://tec.openplanner.team/stops/X791aba"], ["https://tec.openplanner.team/stops/LrAalte1", "https://tec.openplanner.team/stops/LrAalte2"], ["https://tec.openplanner.team/stops/H4pq115b", "https://tec.openplanner.team/stops/H4pq116b"], ["https://tec.openplanner.team/stops/H1be100a", "https://tec.openplanner.team/stops/H1so137a"], ["https://tec.openplanner.team/stops/N155aib", "https://tec.openplanner.team/stops/N170afb"], ["https://tec.openplanner.team/stops/LAmarbo2", "https://tec.openplanner.team/stops/LAmbach1"], ["https://tec.openplanner.team/stops/Bcbqgar1", "https://tec.openplanner.team/stops/Btubnav1"], ["https://tec.openplanner.team/stops/Bbeaap52", "https://tec.openplanner.team/stops/Bbealbu4"], ["https://tec.openplanner.team/stops/Bgnpegl2", "https://tec.openplanner.team/stops/Bwaypon1"], ["https://tec.openplanner.team/stops/H1br122b", "https://tec.openplanner.team/stops/H1em102a"], ["https://tec.openplanner.team/stops/LTOeg--1", "https://tec.openplanner.team/stops/LTOplac1"], ["https://tec.openplanner.team/stops/LVLeg--1", "https://tec.openplanner.team/stops/LVLzoni2"], ["https://tec.openplanner.team/stops/LPLcent2", "https://tec.openplanner.team/stops/LPLcroi2"], ["https://tec.openplanner.team/stops/X818aoa", "https://tec.openplanner.team/stops/X818aob"], ["https://tec.openplanner.team/stops/N351aia", "https://tec.openplanner.team/stops/N351ajb"], ["https://tec.openplanner.team/stops/H4ce105b", "https://tec.openplanner.team/stops/H4ce106a"], ["https://tec.openplanner.team/stops/X760aaa", "https://tec.openplanner.team/stops/X760aea"], ["https://tec.openplanner.team/stops/Cflbrun1", "https://tec.openplanner.team/stops/Cflchmo1"], ["https://tec.openplanner.team/stops/Bllnrro1", "https://tec.openplanner.team/stops/Bmsgaxp1"], ["https://tec.openplanner.team/stops/X982aub", "https://tec.openplanner.team/stops/X982axb"], ["https://tec.openplanner.team/stops/N543bda", "https://tec.openplanner.team/stops/N543bfa"], ["https://tec.openplanner.team/stops/H4hq133b", "https://tec.openplanner.team/stops/H4hq133d"], ["https://tec.openplanner.team/stops/Llgancd2", "https://tec.openplanner.team/stops/LlgguilF"], ["https://tec.openplanner.team/stops/Cmypast1", "https://tec.openplanner.team/stops/Cmyquen1"], ["https://tec.openplanner.team/stops/X824aeb", "https://tec.openplanner.team/stops/X824aed"], ["https://tec.openplanner.team/stops/X749ada", "https://tec.openplanner.team/stops/X749aeb"], ["https://tec.openplanner.team/stops/H4ir161a", "https://tec.openplanner.team/stops/H4va232b"], ["https://tec.openplanner.team/stops/N106apa", "https://tec.openplanner.team/stops/N106aqb"], ["https://tec.openplanner.team/stops/LHTbaud1", "https://tec.openplanner.team/stops/LHTcent2"], ["https://tec.openplanner.team/stops/LWDmass1", "https://tec.openplanner.team/stops/LWDsieg2"], ["https://tec.openplanner.team/stops/LaMthei1", "https://tec.openplanner.team/stops/LeIkreu4"], ["https://tec.openplanner.team/stops/Llgcour3", "https://tec.openplanner.team/stops/Llgtcha2"], ["https://tec.openplanner.team/stops/H5qu147a", "https://tec.openplanner.team/stops/H5qu158a"], ["https://tec.openplanner.team/stops/Lhrdelv1", "https://tec.openplanner.team/stops/Lhrdelv2"], ["https://tec.openplanner.team/stops/Btubmon1", "https://tec.openplanner.team/stops/Btubmon2"], ["https://tec.openplanner.team/stops/N565afb", "https://tec.openplanner.team/stops/N565aia"], ["https://tec.openplanner.team/stops/N505aga", "https://tec.openplanner.team/stops/N537aia"], ["https://tec.openplanner.team/stops/Bitrcro2", "https://tec.openplanner.team/stops/Bitrcro3"], ["https://tec.openplanner.team/stops/Cfrcoop3", "https://tec.openplanner.team/stops/Cfrmon4"], ["https://tec.openplanner.team/stops/H4ar107b", "https://tec.openplanner.team/stops/H4pl135b"], ["https://tec.openplanner.team/stops/Bmrlhau2", "https://tec.openplanner.team/stops/Bpienod1"], ["https://tec.openplanner.team/stops/X631abb", "https://tec.openplanner.team/stops/X631adb"], ["https://tec.openplanner.team/stops/Cchcaya2", "https://tec.openplanner.team/stops/Cchcime1"], ["https://tec.openplanner.team/stops/Lhubarl1", "https://tec.openplanner.team/stops/Ljhcarr2"], ["https://tec.openplanner.team/stops/N505aib", "https://tec.openplanner.team/stops/N505akb"], ["https://tec.openplanner.team/stops/X398aaa", "https://tec.openplanner.team/stops/X999ana"], ["https://tec.openplanner.team/stops/N501dwa", "https://tec.openplanner.team/stops/N501kjb"], ["https://tec.openplanner.team/stops/Clbbonn1", "https://tec.openplanner.team/stops/Clbchar1"], ["https://tec.openplanner.team/stops/LrDhund1", "https://tec.openplanner.team/stops/LsVthom1"], ["https://tec.openplanner.team/stops/N519ala", "https://tec.openplanner.team/stops/N525akb"], ["https://tec.openplanner.team/stops/Bwaunce1", "https://tec.openplanner.team/stops/Bwaunou1"], ["https://tec.openplanner.team/stops/Llghoub2", "https://tec.openplanner.team/stops/Llgvinc2"], ["https://tec.openplanner.team/stops/X717aca", "https://tec.openplanner.team/stops/X717ada"], ["https://tec.openplanner.team/stops/X801cha", "https://tec.openplanner.team/stops/X801cja"], ["https://tec.openplanner.team/stops/N525aja", "https://tec.openplanner.team/stops/N525aka"], ["https://tec.openplanner.team/stops/Bmartil2", "https://tec.openplanner.team/stops/Bsdabja1"], ["https://tec.openplanner.team/stops/H1gr115b", "https://tec.openplanner.team/stops/H1mk114a"], ["https://tec.openplanner.team/stops/N217acb", "https://tec.openplanner.team/stops/N217acc"], ["https://tec.openplanner.team/stops/Cci4bra4", "https://tec.openplanner.team/stops/Cmlstgi1"], ["https://tec.openplanner.team/stops/Lrolecl2", "https://tec.openplanner.team/stops/Lrovand2"], ["https://tec.openplanner.team/stops/LNOsedo1", "https://tec.openplanner.team/stops/LREheyd1"], ["https://tec.openplanner.team/stops/Lstchas1", "https://tec.openplanner.team/stops/Lsttech2"], ["https://tec.openplanner.team/stops/Btilgar1", "https://tec.openplanner.team/stops/Bvlvmar2"], ["https://tec.openplanner.team/stops/X659aeb", "https://tec.openplanner.team/stops/X659ata"], ["https://tec.openplanner.team/stops/Bwategb1", "https://tec.openplanner.team/stops/Bwatppa1"], ["https://tec.openplanner.team/stops/LCAcruc2", "https://tec.openplanner.team/stops/LTGvill2"], ["https://tec.openplanner.team/stops/X734and", "https://tec.openplanner.team/stops/X775aca"], ["https://tec.openplanner.team/stops/N201aed", "https://tec.openplanner.team/stops/N201aef"], ["https://tec.openplanner.team/stops/H4og215b", "https://tec.openplanner.team/stops/H4to137a"], ["https://tec.openplanner.team/stops/Cmtplac4", "https://tec.openplanner.team/stops/Cmtplac7"], ["https://tec.openplanner.team/stops/X657aea", "https://tec.openplanner.team/stops/X657alb"], ["https://tec.openplanner.team/stops/X741aga", "https://tec.openplanner.team/stops/X741ana"], ["https://tec.openplanner.team/stops/Ljuchap3", "https://tec.openplanner.team/stops/Llgaba-1"], ["https://tec.openplanner.team/stops/Bnivbos1", "https://tec.openplanner.team/stops/Bnivvco2"], ["https://tec.openplanner.team/stops/N534bwb", "https://tec.openplanner.team/stops/N534bxb"], ["https://tec.openplanner.team/stops/Lghgend2", "https://tec.openplanner.team/stops/Lghvold1"], ["https://tec.openplanner.team/stops/X758aha", "https://tec.openplanner.team/stops/X759aga"], ["https://tec.openplanner.team/stops/H1qu110a", "https://tec.openplanner.team/stops/H1qu111a"], ["https://tec.openplanner.team/stops/LBNvilv2", "https://tec.openplanner.team/stops/LGOmous1"], ["https://tec.openplanner.team/stops/LVnvieg1", "https://tec.openplanner.team/stops/LVnvieg2"], ["https://tec.openplanner.team/stops/X922ada", "https://tec.openplanner.team/stops/X922aka"], ["https://tec.openplanner.team/stops/Cmyland2", "https://tec.openplanner.team/stops/Cmyland4"], ["https://tec.openplanner.team/stops/N308aca", "https://tec.openplanner.team/stops/N308asb"], ["https://tec.openplanner.team/stops/Bottgar7", "https://tec.openplanner.team/stops/Bottgar8"], ["https://tec.openplanner.team/stops/N155afb", "https://tec.openplanner.team/stops/N155afc"], ["https://tec.openplanner.team/stops/Cchbaza2", "https://tec.openplanner.team/stops/Cchwate4"], ["https://tec.openplanner.team/stops/N331aea", "https://tec.openplanner.team/stops/N331aeb"], ["https://tec.openplanner.team/stops/N509aka", "https://tec.openplanner.team/stops/N511aqa"], ["https://tec.openplanner.team/stops/H2le150a", "https://tec.openplanner.team/stops/H2le150b"], ["https://tec.openplanner.team/stops/Llgdefr2", "https://tec.openplanner.team/stops/Llgdfra1"], ["https://tec.openplanner.team/stops/Llgsnap2", "https://tec.openplanner.team/stops/Lsntvbi1"], ["https://tec.openplanner.team/stops/N311aec", "https://tec.openplanner.team/stops/N311aga"], ["https://tec.openplanner.team/stops/H4eg101b", "https://tec.openplanner.team/stops/H4eg105a"], ["https://tec.openplanner.team/stops/N533ada", "https://tec.openplanner.team/stops/N568aab"], ["https://tec.openplanner.team/stops/N506alb", "https://tec.openplanner.team/stops/N506bob"], ["https://tec.openplanner.team/stops/Blimegl1", "https://tec.openplanner.team/stops/Bottgar8"], ["https://tec.openplanner.team/stops/H4ty283a", "https://tec.openplanner.team/stops/H4ty322c"], ["https://tec.openplanner.team/stops/X717ahb", "https://tec.openplanner.team/stops/X782afb"], ["https://tec.openplanner.team/stops/H1fy120a", "https://tec.openplanner.team/stops/H1ro139b"], ["https://tec.openplanner.team/stops/H4bl106a", "https://tec.openplanner.team/stops/H4ml208b"], ["https://tec.openplanner.team/stops/Csspn1", "https://tec.openplanner.team/stops/Csurela1"], ["https://tec.openplanner.team/stops/N387acc", "https://tec.openplanner.team/stops/N387aha"], ["https://tec.openplanner.team/stops/H4pi130b", "https://tec.openplanner.team/stops/H4pi136a"], ["https://tec.openplanner.team/stops/Bmlnbpr2", "https://tec.openplanner.team/stops/Bmlnsmv2"], ["https://tec.openplanner.team/stops/X659axa", "https://tec.openplanner.team/stops/X672ahb"], ["https://tec.openplanner.team/stops/H1si162a", "https://tec.openplanner.team/stops/H1si169a"], ["https://tec.openplanner.team/stops/LFArela3", "https://tec.openplanner.team/stops/LFAwale2"], ["https://tec.openplanner.team/stops/H1ho140a", "https://tec.openplanner.team/stops/H1pw121b"], ["https://tec.openplanner.team/stops/Llg20ao3", "https://tec.openplanner.team/stops/Llgcroi1"], ["https://tec.openplanner.team/stops/LLzcruc2", "https://tec.openplanner.team/stops/LPTblan2"], ["https://tec.openplanner.team/stops/Lvichpl1", "https://tec.openplanner.team/stops/Lvisere1"], ["https://tec.openplanner.team/stops/H4bo178a", "https://tec.openplanner.team/stops/H4bo181a"], ["https://tec.openplanner.team/stops/LBpvue-2", "https://tec.openplanner.team/stops/LGEhosp1"], ["https://tec.openplanner.team/stops/Barqpla2", "https://tec.openplanner.team/stops/Bfelbri2"], ["https://tec.openplanner.team/stops/LESchpl1", "https://tec.openplanner.team/stops/LESmecp*"], ["https://tec.openplanner.team/stops/Bnivbpe1", "https://tec.openplanner.team/stops/Bnivmfr1"], ["https://tec.openplanner.team/stops/H4hx124a", "https://tec.openplanner.team/stops/H4mo161a"], ["https://tec.openplanner.team/stops/LlNm%C3%BChl1", "https://tec.openplanner.team/stops/LwArabo1"], ["https://tec.openplanner.team/stops/LhDkreu1", "https://tec.openplanner.team/stops/LhDkreu4"], ["https://tec.openplanner.team/stops/LHUfrai1", "https://tec.openplanner.team/stops/LHUsauv3"], ["https://tec.openplanner.team/stops/NL75aca", "https://tec.openplanner.team/stops/NL75acb"], ["https://tec.openplanner.team/stops/N127aja", "https://tec.openplanner.team/stops/N127baa"], ["https://tec.openplanner.team/stops/N201amb", "https://tec.openplanner.team/stops/N211ayb"], ["https://tec.openplanner.team/stops/Cctberg1", "https://tec.openplanner.team/stops/Cctberg2"], ["https://tec.openplanner.team/stops/LFFmarc1", "https://tec.openplanner.team/stops/LJEniho2"], ["https://tec.openplanner.team/stops/X615bba", "https://tec.openplanner.team/stops/X615bca"], ["https://tec.openplanner.team/stops/X947abb", "https://tec.openplanner.team/stops/X948aja"], ["https://tec.openplanner.team/stops/Cmmmarl1", "https://tec.openplanner.team/stops/Cmmptno1"], ["https://tec.openplanner.team/stops/Bquebut2", "https://tec.openplanner.team/stops/Bquecge2"], ["https://tec.openplanner.team/stops/X822afb", "https://tec.openplanner.team/stops/X822ana"], ["https://tec.openplanner.team/stops/LVBchau2", "https://tec.openplanner.team/stops/LVBmonu4"], ["https://tec.openplanner.team/stops/Cpthaud2", "https://tec.openplanner.team/stops/H2an110a"], ["https://tec.openplanner.team/stops/N117aba", "https://tec.openplanner.team/stops/N117aca"], ["https://tec.openplanner.team/stops/N501dca", "https://tec.openplanner.team/stops/N527adb"], ["https://tec.openplanner.team/stops/LOMware2", "https://tec.openplanner.team/stops/LTOcime1"], ["https://tec.openplanner.team/stops/LLmpt--1", "https://tec.openplanner.team/stops/LLmpt--2"], ["https://tec.openplanner.team/stops/N576aba", "https://tec.openplanner.team/stops/N576akb"], ["https://tec.openplanner.team/stops/Csygare1", "https://tec.openplanner.team/stops/Csygare4"], ["https://tec.openplanner.team/stops/Ccipier1", "https://tec.openplanner.team/stops/Ccisolv1"], ["https://tec.openplanner.team/stops/N153aba", "https://tec.openplanner.team/stops/N153acb"], ["https://tec.openplanner.team/stops/H4ne140b", "https://tec.openplanner.team/stops/H4ne142a"], ["https://tec.openplanner.team/stops/H1fr107c", "https://tec.openplanner.team/stops/H1fr123a"], ["https://tec.openplanner.team/stops/X639ata", "https://tec.openplanner.team/stops/X639aub"], ["https://tec.openplanner.team/stops/X911ahb", "https://tec.openplanner.team/stops/X911aia"], ["https://tec.openplanner.team/stops/LOLbout2", "https://tec.openplanner.team/stops/LOLbout4"], ["https://tec.openplanner.team/stops/H2hp116a", "https://tec.openplanner.team/stops/H2hp116b"], ["https://tec.openplanner.team/stops/X601ajb", "https://tec.openplanner.team/stops/X601aqb"], ["https://tec.openplanner.team/stops/N501dpb", "https://tec.openplanner.team/stops/N501eoa"], ["https://tec.openplanner.team/stops/Cmx4che2", "https://tec.openplanner.team/stops/Cmxpleg2"], ["https://tec.openplanner.team/stops/Cbmplac1", "https://tec.openplanner.team/stops/Clcfall2"], ["https://tec.openplanner.team/stops/N212afa", "https://tec.openplanner.team/stops/N212aha"], ["https://tec.openplanner.team/stops/X811apb", "https://tec.openplanner.team/stops/X812bga"], ["https://tec.openplanner.team/stops/Cmlhauc2", "https://tec.openplanner.team/stops/Cmlstgi1"], ["https://tec.openplanner.team/stops/Lagjard1", "https://tec.openplanner.team/stops/Lagmair5"], ["https://tec.openplanner.team/stops/LBzec--1", "https://tec.openplanner.team/stops/LCewaut2"], ["https://tec.openplanner.team/stops/N533alb", "https://tec.openplanner.team/stops/N533amb"], ["https://tec.openplanner.team/stops/LeUbahn3", "https://tec.openplanner.team/stops/LeUschn2"], ["https://tec.openplanner.team/stops/N531adb", "https://tec.openplanner.team/stops/N531alb"], ["https://tec.openplanner.team/stops/X641axa", "https://tec.openplanner.team/stops/X641axb"], ["https://tec.openplanner.team/stops/Lrchero1", "https://tec.openplanner.team/stops/Lrchero2"], ["https://tec.openplanner.team/stops/LBssucr1", "https://tec.openplanner.team/stops/LBssucr2"], ["https://tec.openplanner.team/stops/LLrpape2", "https://tec.openplanner.team/stops/LLrpape3"], ["https://tec.openplanner.team/stops/LFocent2", "https://tec.openplanner.team/stops/LJAcham2"], ["https://tec.openplanner.team/stops/Cjuvpla2", "https://tec.openplanner.team/stops/Cromonn2"], ["https://tec.openplanner.team/stops/N308bgb", "https://tec.openplanner.team/stops/N385adb"], ["https://tec.openplanner.team/stops/N565aca", "https://tec.openplanner.team/stops/N565aea"], ["https://tec.openplanner.team/stops/H5rx129a", "https://tec.openplanner.team/stops/H5rx144b"], ["https://tec.openplanner.team/stops/X601ala", "https://tec.openplanner.team/stops/X601alb"], ["https://tec.openplanner.team/stops/X945aba", "https://tec.openplanner.team/stops/X945abc"], ["https://tec.openplanner.team/stops/Lsedese1", "https://tec.openplanner.team/stops/Lsedese2"], ["https://tec.openplanner.team/stops/N231aga", "https://tec.openplanner.team/stops/N231agb"], ["https://tec.openplanner.team/stops/N542ajb", "https://tec.openplanner.team/stops/N578abb"], ["https://tec.openplanner.team/stops/H4pq119b", "https://tec.openplanner.team/stops/H4pq120a"], ["https://tec.openplanner.team/stops/H1pa109a", "https://tec.openplanner.team/stops/H1pa167b"], ["https://tec.openplanner.team/stops/H4ar178a", "https://tec.openplanner.team/stops/H4ar178b"], ["https://tec.openplanner.team/stops/Lghremy1", "https://tec.openplanner.team/stops/Lghremy2"], ["https://tec.openplanner.team/stops/LrAbe601", "https://tec.openplanner.team/stops/LrAneus1"], ["https://tec.openplanner.team/stops/H1po135a", "https://tec.openplanner.team/stops/H1po138a"], ["https://tec.openplanner.team/stops/N291aba", "https://tec.openplanner.team/stops/N291aca"], ["https://tec.openplanner.team/stops/Crswaut1", "https://tec.openplanner.team/stops/N543cna"], ["https://tec.openplanner.team/stops/Lchorme1", "https://tec.openplanner.team/stops/Lchsaeg1"], ["https://tec.openplanner.team/stops/LJAcime1", "https://tec.openplanner.team/stops/LJAherb1"], ["https://tec.openplanner.team/stops/Cselibe2", "https://tec.openplanner.team/stops/Csepost2"], ["https://tec.openplanner.team/stops/X346akb", "https://tec.openplanner.team/stops/X347aab"], ["https://tec.openplanner.team/stops/H4by119a", "https://tec.openplanner.team/stops/H4by119b"], ["https://tec.openplanner.team/stops/Cbbjfeu2", "https://tec.openplanner.team/stops/Cvrchap2"], ["https://tec.openplanner.team/stops/LMObut-1", "https://tec.openplanner.team/stops/LMOcorn2"], ["https://tec.openplanner.team/stops/LhPkirc1", "https://tec.openplanner.team/stops/LhPkirc2"], ["https://tec.openplanner.team/stops/LbTweyn2", "https://tec.openplanner.team/stops/LbUmalm2"], ["https://tec.openplanner.team/stops/N351aaa", "https://tec.openplanner.team/stops/N351ahb"], ["https://tec.openplanner.team/stops/Blasvil1", "https://tec.openplanner.team/stops/Blasvil3"], ["https://tec.openplanner.team/stops/H1og134a", "https://tec.openplanner.team/stops/H1og134b"], ["https://tec.openplanner.team/stops/LTHjevo2", "https://tec.openplanner.team/stops/LTHmaka1"], ["https://tec.openplanner.team/stops/Cvsegli1", "https://tec.openplanner.team/stops/N530aea"], ["https://tec.openplanner.team/stops/LwAlont3", "https://tec.openplanner.team/stops/LwAstum2"], ["https://tec.openplanner.team/stops/LGAnovi2", "https://tec.openplanner.team/stops/LHgpost1"], ["https://tec.openplanner.team/stops/X733ala", "https://tec.openplanner.team/stops/X733alb"], ["https://tec.openplanner.team/stops/H2ll193a", "https://tec.openplanner.team/stops/H2ll193b"], ["https://tec.openplanner.team/stops/LVSbleu2", "https://tec.openplanner.team/stops/LVSslin1"], ["https://tec.openplanner.team/stops/Loubonc2", "https://tec.openplanner.team/stops/Lourose1"], ["https://tec.openplanner.team/stops/LhSfrep2", "https://tec.openplanner.team/stops/LhSheid2"], ["https://tec.openplanner.team/stops/LLt43--2", "https://tec.openplanner.team/stops/LLteg--2"], ["https://tec.openplanner.team/stops/H4te252b", "https://tec.openplanner.team/stops/H4te261a"], ["https://tec.openplanner.team/stops/LWOpier1", "https://tec.openplanner.team/stops/LWOruis2"], ["https://tec.openplanner.team/stops/H4bc101a", "https://tec.openplanner.team/stops/H4bc101c"], ["https://tec.openplanner.team/stops/NL35aca", "https://tec.openplanner.team/stops/NL35aga"], ["https://tec.openplanner.team/stops/H1pw121a", "https://tec.openplanner.team/stops/H1pw123a"], ["https://tec.openplanner.team/stops/Bbstchn2", "https://tec.openplanner.team/stops/Bbstrpo1"], ["https://tec.openplanner.team/stops/X836abb", "https://tec.openplanner.team/stops/X836ajb"], ["https://tec.openplanner.team/stops/LlZbell1", "https://tec.openplanner.team/stops/LlZbell2"], ["https://tec.openplanner.team/stops/Bstmpla2", "https://tec.openplanner.team/stops/N561afa"], ["https://tec.openplanner.team/stops/X760afb", "https://tec.openplanner.team/stops/X762aga"], ["https://tec.openplanner.team/stops/Bsgeegl1", "https://tec.openplanner.team/stops/Bsgevil1"], ["https://tec.openplanner.team/stops/N550aga", "https://tec.openplanner.team/stops/N550agb"], ["https://tec.openplanner.team/stops/N229apa", "https://tec.openplanner.team/stops/N231ada"], ["https://tec.openplanner.team/stops/Bgligli2", "https://tec.openplanner.team/stops/Bjcljau2"], ["https://tec.openplanner.team/stops/H5el104b", "https://tec.openplanner.team/stops/H5el114b"], ["https://tec.openplanner.team/stops/H4hu117b", "https://tec.openplanner.team/stops/H4hu119b"], ["https://tec.openplanner.team/stops/X896ada", "https://tec.openplanner.team/stops/X896aia"], ["https://tec.openplanner.team/stops/LMoelno2", "https://tec.openplanner.team/stops/LMomonc1"], ["https://tec.openplanner.team/stops/X733aja", "https://tec.openplanner.team/stops/X733aka"], ["https://tec.openplanner.team/stops/Bwatbno1", "https://tec.openplanner.team/stops/Bwatjbo1"], ["https://tec.openplanner.team/stops/X886aba", "https://tec.openplanner.team/stops/X886abd"], ["https://tec.openplanner.team/stops/Barqhro4", "https://tec.openplanner.team/stops/Bfelada2"], ["https://tec.openplanner.team/stops/N167aba", "https://tec.openplanner.team/stops/N234aeb"], ["https://tec.openplanner.team/stops/LCx728-2", "https://tec.openplanner.team/stops/LCxchal1"], ["https://tec.openplanner.team/stops/N521asc", "https://tec.openplanner.team/stops/N521ava"], ["https://tec.openplanner.team/stops/X901bja", "https://tec.openplanner.team/stops/X901bqb"], ["https://tec.openplanner.team/stops/LRMn58-2", "https://tec.openplanner.team/stops/LXoroch2"], ["https://tec.openplanner.team/stops/LeUkehr4", "https://tec.openplanner.team/stops/LeUschi2"], ["https://tec.openplanner.team/stops/X561abb", "https://tec.openplanner.team/stops/XODvill2"], ["https://tec.openplanner.team/stops/N562bfa", "https://tec.openplanner.team/stops/N562bfb"], ["https://tec.openplanner.team/stops/H4te250b", "https://tec.openplanner.team/stops/H4te255b"], ["https://tec.openplanner.team/stops/Cmltemp1", "https://tec.openplanner.team/stops/Cmltemp2"], ["https://tec.openplanner.team/stops/Cdagoss1", "https://tec.openplanner.team/stops/Cmaest2"], ["https://tec.openplanner.team/stops/N117ama", "https://tec.openplanner.team/stops/N117aqa"], ["https://tec.openplanner.team/stops/N535aob", "https://tec.openplanner.team/stops/N564afa"], ["https://tec.openplanner.team/stops/NL57akb", "https://tec.openplanner.team/stops/NL68abb"], ["https://tec.openplanner.team/stops/H1ba115a", "https://tec.openplanner.team/stops/H1gh371a"], ["https://tec.openplanner.team/stops/Ccocorb2", "https://tec.openplanner.team/stops/Ccoha602"], ["https://tec.openplanner.team/stops/H3so159b", "https://tec.openplanner.team/stops/H3so161b"], ["https://tec.openplanner.team/stops/Lpebier1", "https://tec.openplanner.team/stops/Lpebier2"], ["https://tec.openplanner.team/stops/N311aea", "https://tec.openplanner.team/stops/N311agb"], ["https://tec.openplanner.team/stops/LBNauto2", "https://tec.openplanner.team/stops/LBNhegg2"], ["https://tec.openplanner.team/stops/LTatult2", "https://tec.openplanner.team/stops/LTatult4"], ["https://tec.openplanner.team/stops/Lghmeun1", "https://tec.openplanner.team/stops/Ljetout2"], ["https://tec.openplanner.team/stops/N542afa", "https://tec.openplanner.team/stops/N542asa"], ["https://tec.openplanner.team/stops/X602agb", "https://tec.openplanner.team/stops/X602aob"], ["https://tec.openplanner.team/stops/Lprcard1", "https://tec.openplanner.team/stops/Lprpous1"], ["https://tec.openplanner.team/stops/X818afb", "https://tec.openplanner.team/stops/X818atb"], ["https://tec.openplanner.team/stops/X821aaa", "https://tec.openplanner.team/stops/X830aab"], ["https://tec.openplanner.team/stops/H1bu137a", "https://tec.openplanner.team/stops/H1bu138a"], ["https://tec.openplanner.team/stops/N576afa", "https://tec.openplanner.team/stops/N576afb"], ["https://tec.openplanner.team/stops/LeYdepo2", "https://tec.openplanner.team/stops/LeYroth2"], ["https://tec.openplanner.team/stops/X985aba", "https://tec.openplanner.team/stops/X985aca"], ["https://tec.openplanner.team/stops/X641asb", "https://tec.openplanner.team/stops/X821aab"], ["https://tec.openplanner.team/stops/LFyWarc1", "https://tec.openplanner.team/stops/LWabela1"], ["https://tec.openplanner.team/stops/Lagkink2", "https://tec.openplanner.team/stops/Llgbell1"], ["https://tec.openplanner.team/stops/X747ajb", "https://tec.openplanner.team/stops/X749adb"], ["https://tec.openplanner.team/stops/Lpecaze1", "https://tec.openplanner.team/stops/LWegdry2"], ["https://tec.openplanner.team/stops/LTRespe2", "https://tec.openplanner.team/stops/LTRoasi2"], ["https://tec.openplanner.team/stops/N515aka", "https://tec.openplanner.team/stops/N515akb"], ["https://tec.openplanner.team/stops/Cgytrie1", "https://tec.openplanner.team/stops/Cgytrie2"], ["https://tec.openplanner.team/stops/H2hg271a", "https://tec.openplanner.team/stops/H2ll182a"], ["https://tec.openplanner.team/stops/LmDelek1", "https://tec.openplanner.team/stops/LmYkreu1"], ["https://tec.openplanner.team/stops/LGefron1", "https://tec.openplanner.team/stops/LGegare1"], ["https://tec.openplanner.team/stops/LNAmart2", "https://tec.openplanner.team/stops/LNAplac2"], ["https://tec.openplanner.team/stops/N503ala", "https://tec.openplanner.team/stops/N511afb"], ["https://tec.openplanner.team/stops/X659aba", "https://tec.openplanner.team/stops/X659axb"], ["https://tec.openplanner.team/stops/X636acb", "https://tec.openplanner.team/stops/X636ala"], ["https://tec.openplanner.team/stops/LSdcent2", "https://tec.openplanner.team/stops/LSdsa451"], ["https://tec.openplanner.team/stops/Csbberg1", "https://tec.openplanner.team/stops/H1fv102a"], ["https://tec.openplanner.team/stops/Cgxmorg1", "https://tec.openplanner.team/stops/CMmorg1"], ["https://tec.openplanner.team/stops/LSLeg--1", "https://tec.openplanner.team/stops/LSLprov2"], ["https://tec.openplanner.team/stops/Cfaetoi2", "https://tec.openplanner.team/stops/Cplcite1"], ["https://tec.openplanner.team/stops/Btilgar2", "https://tec.openplanner.team/stops/Btilsce1"], ["https://tec.openplanner.team/stops/H1hi122a", "https://tec.openplanner.team/stops/H1hi123a"], ["https://tec.openplanner.team/stops/X749abb", "https://tec.openplanner.team/stops/X754aab"], ["https://tec.openplanner.team/stops/H1fl135a", "https://tec.openplanner.team/stops/H1fl137a"], ["https://tec.openplanner.team/stops/Lbomidi2", "https://tec.openplanner.team/stops/LPLcite2"], ["https://tec.openplanner.team/stops/Lbrboul1", "https://tec.openplanner.team/stops/Lbrplai2"], ["https://tec.openplanner.team/stops/X824ahb", "https://tec.openplanner.team/stops/X824aia"], ["https://tec.openplanner.team/stops/CMsacm1", "https://tec.openplanner.team/stops/CMsacm2"], ["https://tec.openplanner.team/stops/H4er125b", "https://tec.openplanner.team/stops/H4wu376b"], ["https://tec.openplanner.team/stops/Ladegli2", "https://tec.openplanner.team/stops/Ladjuif1"], ["https://tec.openplanner.team/stops/N117aab", "https://tec.openplanner.team/stops/N117azb"], ["https://tec.openplanner.team/stops/X725adb", "https://tec.openplanner.team/stops/X725aga"], ["https://tec.openplanner.team/stops/LhUdenk1", "https://tec.openplanner.team/stops/LhUkape1"], ["https://tec.openplanner.team/stops/H4ka182a", "https://tec.openplanner.team/stops/H4ka182b"], ["https://tec.openplanner.team/stops/X784aba", "https://tec.openplanner.team/stops/X784abb"], ["https://tec.openplanner.team/stops/X347aja", "https://tec.openplanner.team/stops/X872adb"], ["https://tec.openplanner.team/stops/N321abb", "https://tec.openplanner.team/stops/N321afa"], ["https://tec.openplanner.team/stops/LBSchpl2", "https://tec.openplanner.team/stops/LWOsudr2"], ["https://tec.openplanner.team/stops/X991aea", "https://tec.openplanner.team/stops/X992afb"], ["https://tec.openplanner.team/stops/Canrobe1", "https://tec.openplanner.team/stops/Cfosurs1"], ["https://tec.openplanner.team/stops/Loufleu1", "https://tec.openplanner.team/stops/Lousite7"], ["https://tec.openplanner.team/stops/X886aea", "https://tec.openplanner.team/stops/X886agb"], ["https://tec.openplanner.team/stops/Llg20ao1", "https://tec.openplanner.team/stops/Llgcroi1"], ["https://tec.openplanner.team/stops/X644aba", "https://tec.openplanner.team/stops/X644acb"], ["https://tec.openplanner.team/stops/LCleg--1", "https://tec.openplanner.team/stops/LHCauwe4"], ["https://tec.openplanner.team/stops/LNEmoul2", "https://tec.openplanner.team/stops/LOLfoss2"], ["https://tec.openplanner.team/stops/N501cga", "https://tec.openplanner.team/stops/N501chc"], ["https://tec.openplanner.team/stops/LSMchat1", "https://tec.openplanner.team/stops/LSMchat2"], ["https://tec.openplanner.team/stops/Lkivolg2", "https://tec.openplanner.team/stops/Loureno2"], ["https://tec.openplanner.team/stops/X907acb", "https://tec.openplanner.team/stops/X907aia"], ["https://tec.openplanner.team/stops/N524ahb", "https://tec.openplanner.team/stops/N524aka"], ["https://tec.openplanner.team/stops/N542adb", "https://tec.openplanner.team/stops/N542aja"], ["https://tec.openplanner.team/stops/N554ada", "https://tec.openplanner.team/stops/N566afa"], ["https://tec.openplanner.team/stops/Lfhbail2", "https://tec.openplanner.team/stops/Lfh-sci1"], ["https://tec.openplanner.team/stops/LLrbano1", "https://tec.openplanner.team/stops/LLrpape4"], ["https://tec.openplanner.team/stops/LAYharz1", "https://tec.openplanner.team/stops/LAYharz2"], ["https://tec.openplanner.team/stops/N501ijb", "https://tec.openplanner.team/stops/N501ipa"], ["https://tec.openplanner.team/stops/H2bh110b", "https://tec.openplanner.team/stops/H2bh110c"], ["https://tec.openplanner.team/stops/LLUvent4", "https://tec.openplanner.team/stops/LLUvent6"], ["https://tec.openplanner.team/stops/Btilmar2", "https://tec.openplanner.team/stops/Btilsnc2"], ["https://tec.openplanner.team/stops/H1er108a", "https://tec.openplanner.team/stops/H1er113b"], ["https://tec.openplanner.team/stops/N543bqa", "https://tec.openplanner.team/stops/N543cib"], ["https://tec.openplanner.team/stops/LPbhaut1", "https://tec.openplanner.team/stops/LPbpl--1"], ["https://tec.openplanner.team/stops/Lagcile2", "https://tec.openplanner.team/stops/Lagjado6"], ["https://tec.openplanner.team/stops/LlgLAMB7", "https://tec.openplanner.team/stops/Llgmarc2"], ["https://tec.openplanner.team/stops/X713acb", "https://tec.openplanner.team/stops/X714aea"], ["https://tec.openplanner.team/stops/X731acc", "https://tec.openplanner.team/stops/X731adb"], ["https://tec.openplanner.team/stops/H4ty382a", "https://tec.openplanner.team/stops/H4ty405a"], ["https://tec.openplanner.team/stops/N232bfb", "https://tec.openplanner.team/stops/N261aea"], ["https://tec.openplanner.team/stops/H1br122a", "https://tec.openplanner.team/stops/H1ev113a"], ["https://tec.openplanner.team/stops/H1ma234a", "https://tec.openplanner.team/stops/H1ms275b"], ["https://tec.openplanner.team/stops/Cmtrbra1", "https://tec.openplanner.team/stops/Cmtrbra2"], ["https://tec.openplanner.team/stops/H5at105a", "https://tec.openplanner.team/stops/H5at137b"], ["https://tec.openplanner.team/stops/H1sp353a", "https://tec.openplanner.team/stops/H1sp357a"], ["https://tec.openplanner.team/stops/N537aca", "https://tec.openplanner.team/stops/N562bla"], ["https://tec.openplanner.team/stops/Baegpon4", "https://tec.openplanner.team/stops/Bramcar1"], ["https://tec.openplanner.team/stops/LCeterm2", "https://tec.openplanner.team/stops/LLWcarr2"], ["https://tec.openplanner.team/stops/LSOladr2", "https://tec.openplanner.team/stops/LSOtrou2"], ["https://tec.openplanner.team/stops/X804akb", "https://tec.openplanner.team/stops/X804ald"], ["https://tec.openplanner.team/stops/Cciecol2", "https://tec.openplanner.team/stops/Ccipano2"], ["https://tec.openplanner.team/stops/Lbomidi1", "https://tec.openplanner.team/stops/Lbomidi2"], ["https://tec.openplanner.team/stops/Bcbqhai2", "https://tec.openplanner.team/stops/Bcbqp251"], ["https://tec.openplanner.team/stops/X718aja", "https://tec.openplanner.team/stops/X718ajb"], ["https://tec.openplanner.team/stops/Lvewaut1", "https://tec.openplanner.team/stops/Lvewaut2"], ["https://tec.openplanner.team/stops/X623aga", "https://tec.openplanner.team/stops/X623aha"], ["https://tec.openplanner.team/stops/Bmoucoq1", "https://tec.openplanner.team/stops/Bottcli3"], ["https://tec.openplanner.team/stops/LOCbois1", "https://tec.openplanner.team/stops/LOCloup1"], ["https://tec.openplanner.team/stops/LeUbahn5", "https://tec.openplanner.team/stops/LeUhook2"], ["https://tec.openplanner.team/stops/X769amb", "https://tec.openplanner.team/stops/X769aoa"], ["https://tec.openplanner.team/stops/N539afa", "https://tec.openplanner.team/stops/N539atb"], ["https://tec.openplanner.team/stops/Cfocorn1", "https://tec.openplanner.team/stops/Cfocorn2"], ["https://tec.openplanner.team/stops/Cmmegli1", "https://tec.openplanner.team/stops/Cmmplac3"], ["https://tec.openplanner.team/stops/H1ne139b", "https://tec.openplanner.team/stops/H1ne141a"], ["https://tec.openplanner.team/stops/LLAcalv2", "https://tec.openplanner.team/stops/LLAchpl1"], ["https://tec.openplanner.team/stops/N236aib", "https://tec.openplanner.team/stops/N236apb"], ["https://tec.openplanner.team/stops/N424aca", "https://tec.openplanner.team/stops/N424acb"], ["https://tec.openplanner.team/stops/X999aaa", "https://tec.openplanner.team/stops/X999ama"], ["https://tec.openplanner.team/stops/N539atb", "https://tec.openplanner.team/stops/N539bfa"], ["https://tec.openplanner.team/stops/H4do101b", "https://tec.openplanner.team/stops/H4do202b"], ["https://tec.openplanner.team/stops/Bptrmar1", "https://tec.openplanner.team/stops/Bptrmar2"], ["https://tec.openplanner.team/stops/X398abb", "https://tec.openplanner.team/stops/X999aub"], ["https://tec.openplanner.team/stops/N516aia", "https://tec.openplanner.team/stops/N517aca"], ["https://tec.openplanner.team/stops/Cfapiro2", "https://tec.openplanner.team/stops/Cpibois2"], ["https://tec.openplanner.team/stops/Bmsgcap2", "https://tec.openplanner.team/stops/Bmsgeco1"], ["https://tec.openplanner.team/stops/LHseg--1", "https://tec.openplanner.team/stops/LHseg--2"], ["https://tec.openplanner.team/stops/N526aca", "https://tec.openplanner.team/stops/N526acb"], ["https://tec.openplanner.team/stops/H1vt193b", "https://tec.openplanner.team/stops/H1vt194a"], ["https://tec.openplanner.team/stops/LFFchal1", "https://tec.openplanner.team/stops/LFFpier1"], ["https://tec.openplanner.team/stops/X723afa", "https://tec.openplanner.team/stops/X723alb"], ["https://tec.openplanner.team/stops/LWNberg2", "https://tec.openplanner.team/stops/NL72afb"], ["https://tec.openplanner.team/stops/Bsdacab1", "https://tec.openplanner.team/stops/Bsdampe1"], ["https://tec.openplanner.team/stops/LBslama2", "https://tec.openplanner.team/stops/NL72acb"], ["https://tec.openplanner.team/stops/Lbrnanc2", "https://tec.openplanner.team/stops/Lbrplai2"], ["https://tec.openplanner.team/stops/Bmlnegl1", "https://tec.openplanner.team/stops/Bmlnegl3"], ["https://tec.openplanner.team/stops/Blsmbfe2", "https://tec.openplanner.team/stops/Blsmjja1"], ["https://tec.openplanner.team/stops/Lfhchaf4", "https://tec.openplanner.team/stops/Livpost2"], ["https://tec.openplanner.team/stops/H5wo129a", "https://tec.openplanner.team/stops/H5wo136b"], ["https://tec.openplanner.team/stops/LrAdrie2", "https://tec.openplanner.team/stops/LrAdrie4"], ["https://tec.openplanner.team/stops/Llgcbat1", "https://tec.openplanner.team/stops/Llgoise1"], ["https://tec.openplanner.team/stops/Bottbru2", "https://tec.openplanner.team/stops/Bottcba1"], ["https://tec.openplanner.team/stops/X647aaa", "https://tec.openplanner.team/stops/X648aba"], ["https://tec.openplanner.team/stops/LGegrun1", "https://tec.openplanner.team/stops/LGegrun2"], ["https://tec.openplanner.team/stops/N543aja", "https://tec.openplanner.team/stops/N543ajb"], ["https://tec.openplanner.team/stops/X681afa", "https://tec.openplanner.team/stops/X687aga"], ["https://tec.openplanner.team/stops/X614adb", "https://tec.openplanner.team/stops/X614bab"], ["https://tec.openplanner.team/stops/N143aba", "https://tec.openplanner.team/stops/N143ada"], ["https://tec.openplanner.team/stops/Cvp3til4", "https://tec.openplanner.team/stops/Cvpplan1"], ["https://tec.openplanner.team/stops/Bpiepnd2", "https://tec.openplanner.team/stops/Bpiesta1"], ["https://tec.openplanner.team/stops/N232avb", "https://tec.openplanner.team/stops/N232boa"], ["https://tec.openplanner.team/stops/H1hw124b", "https://tec.openplanner.team/stops/H1ls105b"], ["https://tec.openplanner.team/stops/LDmhave1", "https://tec.openplanner.team/stops/LDmhave2"], ["https://tec.openplanner.team/stops/LmR50--1", "https://tec.openplanner.team/stops/LmRh%C3%B6811"], ["https://tec.openplanner.team/stops/H3lr116a", "https://tec.openplanner.team/stops/H3lr120b"], ["https://tec.openplanner.team/stops/N124aaa", "https://tec.openplanner.team/stops/N149ala"], ["https://tec.openplanner.team/stops/Cvsbois1", "https://tec.openplanner.team/stops/Cvsduve1"], ["https://tec.openplanner.team/stops/X542aeb", "https://tec.openplanner.team/stops/X542aib"], ["https://tec.openplanner.team/stops/H5at104b", "https://tec.openplanner.team/stops/H5at109a"], ["https://tec.openplanner.team/stops/H1eu101a", "https://tec.openplanner.team/stops/H1lb137a"], ["https://tec.openplanner.team/stops/Bjanfer2", "https://tec.openplanner.team/stops/Bpthcai1"], ["https://tec.openplanner.team/stops/Cgpleco2", "https://tec.openplanner.team/stops/Cgpmoul2"], ["https://tec.openplanner.team/stops/Ctmdema2", "https://tec.openplanner.team/stops/Ctmmonu2"], ["https://tec.openplanner.team/stops/Bdlmgla3", "https://tec.openplanner.team/stops/Bwavdmo1"], ["https://tec.openplanner.team/stops/N347agb", "https://tec.openplanner.team/stops/X892abb"], ["https://tec.openplanner.team/stops/Lglcoun1", "https://tec.openplanner.team/stops/Lglsana1"], ["https://tec.openplanner.team/stops/N571aaa", "https://tec.openplanner.team/stops/N571aka"], ["https://tec.openplanner.team/stops/H1he103b", "https://tec.openplanner.team/stops/H1mh113b"], ["https://tec.openplanner.team/stops/Cpibois2", "https://tec.openplanner.team/stops/Cpictra1"], ["https://tec.openplanner.team/stops/Cthegli2", "https://tec.openplanner.team/stops/Cthwaib2"], ["https://tec.openplanner.team/stops/Lgrclos1", "https://tec.openplanner.team/stops/Lgrtomb2"], ["https://tec.openplanner.team/stops/X627ada", "https://tec.openplanner.team/stops/X631ada"], ["https://tec.openplanner.team/stops/LBkjenn1", "https://tec.openplanner.team/stops/LBkwind1"], ["https://tec.openplanner.team/stops/Cgofert2", "https://tec.openplanner.team/stops/Cgolimi1"], ["https://tec.openplanner.team/stops/LeUvoss1", "https://tec.openplanner.team/stops/LkTgutl1"], ["https://tec.openplanner.team/stops/N501dwb", "https://tec.openplanner.team/stops/N501eab"], ["https://tec.openplanner.team/stops/LcRmuhl1", "https://tec.openplanner.team/stops/LwTkabi1"], ["https://tec.openplanner.team/stops/N232bda", "https://tec.openplanner.team/stops/N232bub"], ["https://tec.openplanner.team/stops/X942aaa", "https://tec.openplanner.team/stops/X942adb"], ["https://tec.openplanner.team/stops/N170acb", "https://tec.openplanner.team/stops/N170afb"], ["https://tec.openplanner.team/stops/Ljeheur2", "https://tec.openplanner.team/stops/Ljerobi1"], ["https://tec.openplanner.team/stops/N115aea", "https://tec.openplanner.team/stops/N115aeb"], ["https://tec.openplanner.team/stops/H5at109a", "https://tec.openplanner.team/stops/H5at131a"], ["https://tec.openplanner.team/stops/N874ajb", "https://tec.openplanner.team/stops/N874alb"], ["https://tec.openplanner.team/stops/N539baa", "https://tec.openplanner.team/stops/N539bba"], ["https://tec.openplanner.team/stops/X611aba", "https://tec.openplanner.team/stops/X611ada"], ["https://tec.openplanner.team/stops/N501ezb", "https://tec.openplanner.team/stops/N501lgb"], ["https://tec.openplanner.team/stops/N501hhb", "https://tec.openplanner.team/stops/N501mqa"], ["https://tec.openplanner.team/stops/Cbwcab1", "https://tec.openplanner.team/stops/Cmqn5912"], ["https://tec.openplanner.team/stops/N244aha", "https://tec.openplanner.team/stops/N244awa"], ["https://tec.openplanner.team/stops/X624acb", "https://tec.openplanner.team/stops/X624aja"], ["https://tec.openplanner.team/stops/LRRecdu2", "https://tec.openplanner.team/stops/LRRecsc*"], ["https://tec.openplanner.team/stops/X740aeb", "https://tec.openplanner.team/stops/X912adb"], ["https://tec.openplanner.team/stops/Lpefler1", "https://tec.openplanner.team/stops/LTAchpl2"], ["https://tec.openplanner.team/stops/Lghgend1", "https://tec.openplanner.team/stops/Lghgoll2"], ["https://tec.openplanner.team/stops/H5qu145a", "https://tec.openplanner.team/stops/H5qu158a"], ["https://tec.openplanner.team/stops/LLUtill1", "https://tec.openplanner.team/stops/LLUtill4"], ["https://tec.openplanner.team/stops/X802afb", "https://tec.openplanner.team/stops/X802ahb"], ["https://tec.openplanner.team/stops/Lchec--1", "https://tec.openplanner.team/stops/Lrahoig2"], ["https://tec.openplanner.team/stops/N212abb", "https://tec.openplanner.team/stops/N213abb"], ["https://tec.openplanner.team/stops/Cobbusc2", "https://tec.openplanner.team/stops/Cobbuze2"], ["https://tec.openplanner.team/stops/Cfocobe1", "https://tec.openplanner.team/stops/Clrrhau1"], ["https://tec.openplanner.team/stops/LrDneun1", "https://tec.openplanner.team/stops/LrDneun2"], ["https://tec.openplanner.team/stops/LVBrmon2", "https://tec.openplanner.team/stops/LVBvill1"], ["https://tec.openplanner.team/stops/N516anb", "https://tec.openplanner.team/stops/N516aoa"], ["https://tec.openplanner.team/stops/Lbrmc--2", "https://tec.openplanner.team/stops/Lbrptbr3"], ["https://tec.openplanner.team/stops/NL77ama", "https://tec.openplanner.team/stops/NL78aha"], ["https://tec.openplanner.team/stops/X717agc", "https://tec.openplanner.team/stops/X717agf"], ["https://tec.openplanner.team/stops/LAascie1", "https://tec.openplanner.team/stops/X261aab"], ["https://tec.openplanner.team/stops/N507aaa", "https://tec.openplanner.team/stops/N507aad"], ["https://tec.openplanner.team/stops/N501gdb", "https://tec.openplanner.team/stops/N501kxb"], ["https://tec.openplanner.team/stops/LSTmeiz1", "https://tec.openplanner.team/stops/LSTmeiz2"], ["https://tec.openplanner.team/stops/H4pq113a", "https://tec.openplanner.team/stops/H4pq119b"], ["https://tec.openplanner.team/stops/Bsgihmo2", "https://tec.openplanner.team/stops/Bsgimca2"], ["https://tec.openplanner.team/stops/LMfpral1", "https://tec.openplanner.team/stops/LOtthie2"], ["https://tec.openplanner.team/stops/H1au112b", "https://tec.openplanner.team/stops/H1au114b"], ["https://tec.openplanner.team/stops/H2fa104a", "https://tec.openplanner.team/stops/H2fa107a"], ["https://tec.openplanner.team/stops/Cmohame1", "https://tec.openplanner.team/stops/Cmychap4"], ["https://tec.openplanner.team/stops/Llgcamp1", "https://tec.openplanner.team/stops/Llgelis2"], ["https://tec.openplanner.team/stops/H1br120a", "https://tec.openplanner.team/stops/H1br125a"], ["https://tec.openplanner.team/stops/LLrmc--2", "https://tec.openplanner.team/stops/LLrvill2"], ["https://tec.openplanner.team/stops/X661ala", "https://tec.openplanner.team/stops/X661ava"], ["https://tec.openplanner.team/stops/X986aab", "https://tec.openplanner.team/stops/X986abb"], ["https://tec.openplanner.team/stops/LSEquar2", "https://tec.openplanner.team/stops/LSEvill2"], ["https://tec.openplanner.team/stops/Llgancd1", "https://tec.openplanner.team/stops/Llgjoie3"], ["https://tec.openplanner.team/stops/N217aaa", "https://tec.openplanner.team/stops/N287aba"], ["https://tec.openplanner.team/stops/Bnivn971", "https://tec.openplanner.team/stops/Creshau1"], ["https://tec.openplanner.team/stops/H2ch106b", "https://tec.openplanner.team/stops/H2go115b"], ["https://tec.openplanner.team/stops/LJUxhen2", "https://tec.openplanner.team/stops/LXhcite1"], ["https://tec.openplanner.team/stops/Ctufleu2", "https://tec.openplanner.team/stops/Ctufleu4"], ["https://tec.openplanner.team/stops/H1ha200b", "https://tec.openplanner.team/stops/H1vh135b"], ["https://tec.openplanner.team/stops/Bblabar1", "https://tec.openplanner.team/stops/Bblager1"], ["https://tec.openplanner.team/stops/LhUdenk2", "https://tec.openplanner.team/stops/LhUkreu2"], ["https://tec.openplanner.team/stops/LGAbois2", "https://tec.openplanner.team/stops/LHgpost1"], ["https://tec.openplanner.team/stops/LLNcime2", "https://tec.openplanner.team/stops/LLNeg--1"], ["https://tec.openplanner.team/stops/H2le147b", "https://tec.openplanner.team/stops/H2le176b"], ["https://tec.openplanner.team/stops/X604aea", "https://tec.openplanner.team/stops/X604akb"], ["https://tec.openplanner.team/stops/Csobail1", "https://tec.openplanner.team/stops/Csoforr4"], ["https://tec.openplanner.team/stops/Buccham1", "https://tec.openplanner.team/stops/Buccvch2"], ["https://tec.openplanner.team/stops/N353aaa", "https://tec.openplanner.team/stops/N353aab"], ["https://tec.openplanner.team/stops/X982apb", "https://tec.openplanner.team/stops/X982aqa"], ["https://tec.openplanner.team/stops/Cbmvalt1", "https://tec.openplanner.team/stops/Cbmvalt2"], ["https://tec.openplanner.team/stops/N538ana", "https://tec.openplanner.team/stops/N538aub"], ["https://tec.openplanner.team/stops/X882adb", "https://tec.openplanner.team/stops/X882aea"], ["https://tec.openplanner.team/stops/Cnadrev1", "https://tec.openplanner.team/stops/Cnaferr2"], ["https://tec.openplanner.team/stops/H1so132b", "https://tec.openplanner.team/stops/H1so133b"], ["https://tec.openplanner.team/stops/N539apb", "https://tec.openplanner.team/stops/N539bda"], ["https://tec.openplanner.team/stops/X607aaa", "https://tec.openplanner.team/stops/X629aab"], ["https://tec.openplanner.team/stops/LnE79--2", "https://tec.openplanner.team/stops/LnErech2"], ["https://tec.openplanner.team/stops/H1ob333a", "https://tec.openplanner.team/stops/H1ob335b"], ["https://tec.openplanner.team/stops/X911ana", "https://tec.openplanner.team/stops/X912aka"], ["https://tec.openplanner.team/stops/H2go114b", "https://tec.openplanner.team/stops/H2go114c"], ["https://tec.openplanner.team/stops/Blemhon1", "https://tec.openplanner.team/stops/Btubmar2"], ["https://tec.openplanner.team/stops/Lhrwigi1", "https://tec.openplanner.team/stops/Lwaeau-1"], ["https://tec.openplanner.team/stops/N535asb", "https://tec.openplanner.team/stops/N535atb"], ["https://tec.openplanner.team/stops/Bcrnsge1", "https://tec.openplanner.team/stops/Bvilcim2"], ["https://tec.openplanner.team/stops/H4br108a", "https://tec.openplanner.team/stops/H4ch117b"], ["https://tec.openplanner.team/stops/N218afa", "https://tec.openplanner.team/stops/N385aba"], ["https://tec.openplanner.team/stops/Cbfegch2", "https://tec.openplanner.team/stops/Cbfplch2"], ["https://tec.openplanner.team/stops/LaFbruc2", "https://tec.openplanner.team/stops/LwPdorf2"], ["https://tec.openplanner.team/stops/Cfrcham2", "https://tec.openplanner.team/stops/Cvpplan1"], ["https://tec.openplanner.team/stops/LeYmosc1", "https://tec.openplanner.team/stops/LeYvoge1"], ["https://tec.openplanner.team/stops/N569ala", "https://tec.openplanner.team/stops/N569amb"], ["https://tec.openplanner.team/stops/Brsrabe1", "https://tec.openplanner.team/stops/Brsreco1"], ["https://tec.openplanner.team/stops/N352aea", "https://tec.openplanner.team/stops/N352afa"], ["https://tec.openplanner.team/stops/H4ld128a", "https://tec.openplanner.team/stops/H4ld128b"], ["https://tec.openplanner.team/stops/LLVeg--1", "https://tec.openplanner.team/stops/X575afb"], ["https://tec.openplanner.team/stops/H4fr141a", "https://tec.openplanner.team/stops/H4te254a"], ["https://tec.openplanner.team/stops/LwYkreu3", "https://tec.openplanner.team/stops/LwYkreu4"], ["https://tec.openplanner.team/stops/N549aaa", "https://tec.openplanner.team/stops/N578aca"], ["https://tec.openplanner.team/stops/Lprmc--2", "https://tec.openplanner.team/stops/Lprmoin1"], ["https://tec.openplanner.team/stops/X659axb", "https://tec.openplanner.team/stops/X659baa"], ["https://tec.openplanner.team/stops/NL68acb", "https://tec.openplanner.team/stops/NL68aeb"], ["https://tec.openplanner.team/stops/X659asa", "https://tec.openplanner.team/stops/X741afb"], ["https://tec.openplanner.team/stops/Cchba05", "https://tec.openplanner.team/stops/Cchba06"], ["https://tec.openplanner.team/stops/N538awb", "https://tec.openplanner.team/stops/N539ava"], ["https://tec.openplanner.team/stops/NB33ala", "https://tec.openplanner.team/stops/NR21aea"], ["https://tec.openplanner.team/stops/Lsepcha1", "https://tec.openplanner.team/stops/Lsepcha2"], ["https://tec.openplanner.team/stops/H4cw107a", "https://tec.openplanner.team/stops/H4cw107b"], ["https://tec.openplanner.team/stops/Crbrgar1", "https://tec.openplanner.team/stops/Crbrgar2"], ["https://tec.openplanner.team/stops/X720acb", "https://tec.openplanner.team/stops/X720aea"], ["https://tec.openplanner.team/stops/H1sd366a", "https://tec.openplanner.team/stops/H1sd366b"], ["https://tec.openplanner.team/stops/H2tr252a", "https://tec.openplanner.team/stops/H2tr256a"], ["https://tec.openplanner.team/stops/LLxeclu1", "https://tec.openplanner.team/stops/LVIecol2"], ["https://tec.openplanner.team/stops/Bmrl4ch1", "https://tec.openplanner.team/stops/Bmrl4ch2"], ["https://tec.openplanner.team/stops/N242afb", "https://tec.openplanner.team/stops/N242aga"], ["https://tec.openplanner.team/stops/X937aka", "https://tec.openplanner.team/stops/X937akb"], ["https://tec.openplanner.team/stops/X649aab", "https://tec.openplanner.team/stops/X649abb"], ["https://tec.openplanner.team/stops/X754adb", "https://tec.openplanner.team/stops/X754aeb"], ["https://tec.openplanner.team/stops/LFMstat2", "https://tec.openplanner.team/stops/LFMvoge2"], ["https://tec.openplanner.team/stops/LbEkirc*", "https://tec.openplanner.team/stops/LbTdoma2"], ["https://tec.openplanner.team/stops/Bwaubru1", "https://tec.openplanner.team/stops/Bwaunce2"], ["https://tec.openplanner.team/stops/Lsweg--1", "https://tec.openplanner.team/stops/Lwaaube2"], ["https://tec.openplanner.team/stops/Canboni2", "https://tec.openplanner.team/stops/Canfief1"], ["https://tec.openplanner.team/stops/H4lp119a", "https://tec.openplanner.team/stops/H4pe125a"], ["https://tec.openplanner.team/stops/Bhlvgar1", "https://tec.openplanner.team/stops/Creshau1"], ["https://tec.openplanner.team/stops/N242ada", "https://tec.openplanner.team/stops/N242afb"], ["https://tec.openplanner.team/stops/X766aca", "https://tec.openplanner.team/stops/X766acb"], ["https://tec.openplanner.team/stops/N501hlx", "https://tec.openplanner.team/stops/N501hlz"], ["https://tec.openplanner.team/stops/N521alb", "https://tec.openplanner.team/stops/N527aeb"], ["https://tec.openplanner.team/stops/H4mo193a", "https://tec.openplanner.team/stops/H4mo207a"], ["https://tec.openplanner.team/stops/H3so156a", "https://tec.openplanner.team/stops/H3so177a"], ["https://tec.openplanner.team/stops/Blankal3", "https://tec.openplanner.team/stops/Blankal4"], ["https://tec.openplanner.team/stops/H2le147a", "https://tec.openplanner.team/stops/H2le151b"], ["https://tec.openplanner.team/stops/Cmmphai1", "https://tec.openplanner.team/stops/Cmmserv4"], ["https://tec.openplanner.team/stops/LRMeg--1", "https://tec.openplanner.team/stops/LRMn58-1"], ["https://tec.openplanner.team/stops/Lstpole2", "https://tec.openplanner.team/stops/Lstpoly2"], ["https://tec.openplanner.team/stops/X946afb", "https://tec.openplanner.team/stops/X946agb"], ["https://tec.openplanner.team/stops/Bcrbast2", "https://tec.openplanner.team/stops/Bnilpje2"], ["https://tec.openplanner.team/stops/Barqres1", "https://tec.openplanner.team/stops/Barqres2"], ["https://tec.openplanner.team/stops/LrAverb1", "https://tec.openplanner.team/stops/LrAwald1"], ["https://tec.openplanner.team/stops/LWevand1", "https://tec.openplanner.team/stops/LWexhav2"], ["https://tec.openplanner.team/stops/Bclgpla1", "https://tec.openplanner.team/stops/Bdlmegl1"], ["https://tec.openplanner.team/stops/Cfmnoci2", "https://tec.openplanner.team/stops/Cfmtrie1"], ["https://tec.openplanner.team/stops/LBVzand3", "https://tec.openplanner.team/stops/LBVzand4"], ["https://tec.openplanner.team/stops/LWEbr511", "https://tec.openplanner.team/stops/LWEbruy2"], ["https://tec.openplanner.team/stops/Btslenf1", "https://tec.openplanner.team/stops/Btslenf2"], ["https://tec.openplanner.team/stops/Bucccal3", "https://tec.openplanner.team/stops/Bucceng1"], ["https://tec.openplanner.team/stops/H1fl139b", "https://tec.openplanner.team/stops/H1je221a"], ["https://tec.openplanner.team/stops/H1em105b", "https://tec.openplanner.team/stops/H1ev114b"], ["https://tec.openplanner.team/stops/X801aub", "https://tec.openplanner.team/stops/X801cib"], ["https://tec.openplanner.team/stops/Llmbouv1", "https://tec.openplanner.team/stops/Llmdeba2"], ["https://tec.openplanner.team/stops/Ljemont2", "https://tec.openplanner.team/stops/Ljewale2"], ["https://tec.openplanner.team/stops/N236aeb", "https://tec.openplanner.team/stops/N236anb"], ["https://tec.openplanner.team/stops/LHNcreh1", "https://tec.openplanner.team/stops/LHNhall2"], ["https://tec.openplanner.team/stops/LBichat2", "https://tec.openplanner.team/stops/LBieg--3"], ["https://tec.openplanner.team/stops/X917aab", "https://tec.openplanner.team/stops/X919aka"], ["https://tec.openplanner.team/stops/LJU493-1", "https://tec.openplanner.team/stops/LJUxhen2"], ["https://tec.openplanner.team/stops/X804aeb", "https://tec.openplanner.team/stops/X804bfa"], ["https://tec.openplanner.team/stops/N201aqa", "https://tec.openplanner.team/stops/N201aqb"], ["https://tec.openplanner.team/stops/N509aaa", "https://tec.openplanner.team/stops/N509aab"], ["https://tec.openplanner.team/stops/H1fr119b", "https://tec.openplanner.team/stops/H1no140a"], ["https://tec.openplanner.team/stops/Caujonc1", "https://tec.openplanner.team/stops/Cauromi2"], ["https://tec.openplanner.team/stops/LsHkirc2", "https://tec.openplanner.team/stops/LsHthom1"], ["https://tec.openplanner.team/stops/LHgpost1", "https://tec.openplanner.team/stops/LHgpost2"], ["https://tec.openplanner.team/stops/LLWcarr1", "https://tec.openplanner.team/stops/LOMdodi1"], ["https://tec.openplanner.team/stops/X989aba", "https://tec.openplanner.team/stops/X989agb"], ["https://tec.openplanner.team/stops/Lhrdelv2", "https://tec.openplanner.team/stops/Lhrpont1"], ["https://tec.openplanner.team/stops/X344aca", "https://tec.openplanner.team/stops/X344adb"], ["https://tec.openplanner.team/stops/X921ama", "https://tec.openplanner.team/stops/X921apa"], ["https://tec.openplanner.team/stops/LHAdeho1", "https://tec.openplanner.team/stops/LHAdeho2"], ["https://tec.openplanner.team/stops/Bhanath2", "https://tec.openplanner.team/stops/Bhanmou2"], ["https://tec.openplanner.team/stops/X715aqa", "https://tec.openplanner.team/stops/X781ada"], ["https://tec.openplanner.team/stops/X620abb", "https://tec.openplanner.team/stops/X620acb"], ["https://tec.openplanner.team/stops/Brixres1", "https://tec.openplanner.team/stops/Brixroi1"], ["https://tec.openplanner.team/stops/Lbrddef4", "https://tec.openplanner.team/stops/Lbrmour1"], ["https://tec.openplanner.team/stops/LmImirf2", "https://tec.openplanner.team/stops/LvA30--1"], ["https://tec.openplanner.team/stops/N301aoa", "https://tec.openplanner.team/stops/N301aob"], ["https://tec.openplanner.team/stops/N501doa", "https://tec.openplanner.team/stops/N501ena"], ["https://tec.openplanner.team/stops/LEMfort1", "https://tec.openplanner.team/stops/LLAbure2"], ["https://tec.openplanner.team/stops/H1bs110a", "https://tec.openplanner.team/stops/H1bs111a"], ["https://tec.openplanner.team/stops/Csubosa1", "https://tec.openplanner.team/stops/Csufrom5"], ["https://tec.openplanner.team/stops/N537ajb", "https://tec.openplanner.team/stops/N537akb"], ["https://tec.openplanner.team/stops/H1mb131a", "https://tec.openplanner.team/stops/H1ro131b"], ["https://tec.openplanner.team/stops/N543aca", "https://tec.openplanner.team/stops/N543bdb"], ["https://tec.openplanner.team/stops/N313abb", "https://tec.openplanner.team/stops/N313acb"], ["https://tec.openplanner.team/stops/H4gu109a", "https://tec.openplanner.team/stops/H4gu110a"], ["https://tec.openplanner.team/stops/N551aba", "https://tec.openplanner.team/stops/N551aec"], ["https://tec.openplanner.team/stops/N120ama", "https://tec.openplanner.team/stops/N120amb"], ["https://tec.openplanner.team/stops/Cctecol1", "https://tec.openplanner.team/stops/Cctvill1"], ["https://tec.openplanner.team/stops/X818aaa", "https://tec.openplanner.team/stops/X818aba"], ["https://tec.openplanner.team/stops/LHMgrun1", "https://tec.openplanner.team/stops/LSIgehe1"], ["https://tec.openplanner.team/stops/Cwfmonu1", "https://tec.openplanner.team/stops/Cwfreta1"], ["https://tec.openplanner.team/stops/H4ta123a", "https://tec.openplanner.team/stops/H4ta127a"], ["https://tec.openplanner.team/stops/Btubfab2", "https://tec.openplanner.team/stops/Btubnco1"], ["https://tec.openplanner.team/stops/Ceqcfra2", "https://tec.openplanner.team/stops/H1er110a"], ["https://tec.openplanner.team/stops/LWaruth2", "https://tec.openplanner.team/stops/LwYsarl1"], ["https://tec.openplanner.team/stops/LAWdefr1", "https://tec.openplanner.team/stops/LXhjupr2"], ["https://tec.openplanner.team/stops/Bincfer2", "https://tec.openplanner.team/stops/Bsrbtil1"], ["https://tec.openplanner.team/stops/N229acb", "https://tec.openplanner.team/stops/N229aec"], ["https://tec.openplanner.team/stops/Bdlmflo1", "https://tec.openplanner.team/stops/Bdlmgla1"], ["https://tec.openplanner.team/stops/H4hg155b", "https://tec.openplanner.team/stops/H4hg157b"], ["https://tec.openplanner.team/stops/Lghferr1", "https://tec.openplanner.team/stops/Lghomni2"], ["https://tec.openplanner.team/stops/LFOchpl1", "https://tec.openplanner.team/stops/LHGtige1"], ["https://tec.openplanner.team/stops/N139adb", "https://tec.openplanner.team/stops/N139aea"], ["https://tec.openplanner.team/stops/NR21aib", "https://tec.openplanner.team/stops/NR21aja"], ["https://tec.openplanner.team/stops/N571aab", "https://tec.openplanner.team/stops/NC14ada"], ["https://tec.openplanner.team/stops/N535aba", "https://tec.openplanner.team/stops/N535afa"], ["https://tec.openplanner.team/stops/Lveecol2", "https://tec.openplanner.team/stops/Lvepala9"], ["https://tec.openplanner.team/stops/LCUjonc1", "https://tec.openplanner.team/stops/LEnvill1"], ["https://tec.openplanner.team/stops/X595aaa", "https://tec.openplanner.team/stops/X595aac"], ["https://tec.openplanner.team/stops/N556afb", "https://tec.openplanner.team/stops/N557aja"], ["https://tec.openplanner.team/stops/LACeg--1", "https://tec.openplanner.team/stops/NL74aad"], ["https://tec.openplanner.team/stops/LRIcent1", "https://tec.openplanner.team/stops/LRIcent2"], ["https://tec.openplanner.team/stops/X681aeb", "https://tec.openplanner.team/stops/X696aga"], ["https://tec.openplanner.team/stops/Bwavbva2", "https://tec.openplanner.team/stops/Bwavlca1"], ["https://tec.openplanner.team/stops/Lhrherm2", "https://tec.openplanner.team/stops/Lmirca-1"], ["https://tec.openplanner.team/stops/X662aeb", "https://tec.openplanner.team/stops/X662ara"], ["https://tec.openplanner.team/stops/LTRlonh1", "https://tec.openplanner.team/stops/LTRsain1"], ["https://tec.openplanner.team/stops/N214aaa", "https://tec.openplanner.team/stops/N214aab"], ["https://tec.openplanner.team/stops/X659ana", "https://tec.openplanner.team/stops/X659apb"], ["https://tec.openplanner.team/stops/Bgzdpco1", "https://tec.openplanner.team/stops/Bgzdpos2"], ["https://tec.openplanner.team/stops/X790afa", "https://tec.openplanner.team/stops/X790afb"], ["https://tec.openplanner.team/stops/Cmmpjou3", "https://tec.openplanner.team/stops/Cmmpjou4"], ["https://tec.openplanner.team/stops/Bbgepau1", "https://tec.openplanner.team/stops/Bwavtpi2"], ["https://tec.openplanner.team/stops/Lanhoud3", "https://tec.openplanner.team/stops/Lanpisc1"], ["https://tec.openplanner.team/stops/X741ajb", "https://tec.openplanner.team/stops/X741ala"], ["https://tec.openplanner.team/stops/LHTptha4", "https://tec.openplanner.team/stops/LVIvert1"], ["https://tec.openplanner.team/stops/Lenabat2", "https://tec.openplanner.team/stops/Lenvale2"], ["https://tec.openplanner.team/stops/X806aeb", "https://tec.openplanner.team/stops/X806ala"], ["https://tec.openplanner.team/stops/N501hvb", "https://tec.openplanner.team/stops/N501jcb"], ["https://tec.openplanner.team/stops/H3lr109b", "https://tec.openplanner.team/stops/H3lr112b"], ["https://tec.openplanner.team/stops/H4ba101b", "https://tec.openplanner.team/stops/H4ba103a"], ["https://tec.openplanner.team/stops/Bgliaau1", "https://tec.openplanner.team/stops/Bglicsm1"], ["https://tec.openplanner.team/stops/LAtaube1", "https://tec.openplanner.team/stops/LOcalbe1"], ["https://tec.openplanner.team/stops/Blhugar1", "https://tec.openplanner.team/stops/Blhugar2"], ["https://tec.openplanner.team/stops/X723adb", "https://tec.openplanner.team/stops/X723aja"], ["https://tec.openplanner.team/stops/H4ty313a", "https://tec.openplanner.team/stops/H4ty323a"], ["https://tec.openplanner.team/stops/Ljegoss2", "https://tec.openplanner.team/stops/Ltihala1"], ["https://tec.openplanner.team/stops/Cchvil22", "https://tec.openplanner.team/stops/CMsama1"], ["https://tec.openplanner.team/stops/LSParca1", "https://tec.openplanner.team/stops/LSPpomp1"], ["https://tec.openplanner.team/stops/N138aca", "https://tec.openplanner.team/stops/N138ajb"], ["https://tec.openplanner.team/stops/X769akb", "https://tec.openplanner.team/stops/X769ala"], ["https://tec.openplanner.team/stops/X892afa", "https://tec.openplanner.team/stops/X892agb"], ["https://tec.openplanner.team/stops/X364aba", "https://tec.openplanner.team/stops/X364ada"], ["https://tec.openplanner.team/stops/N874ama", "https://tec.openplanner.team/stops/X874apb"], ["https://tec.openplanner.team/stops/LLrfont2", "https://tec.openplanner.team/stops/LLrmc--3"], ["https://tec.openplanner.team/stops/LCRvert2", "https://tec.openplanner.team/stops/LOdkeme2"], ["https://tec.openplanner.team/stops/LLrjeho2", "https://tec.openplanner.team/stops/LLrpape4"], ["https://tec.openplanner.team/stops/H1sg145a", "https://tec.openplanner.team/stops/H1sg147a"], ["https://tec.openplanner.team/stops/Lsmecol1", "https://tec.openplanner.team/stops/Lsmecol2"], ["https://tec.openplanner.team/stops/H1ha182a", "https://tec.openplanner.team/stops/H1ha188a"], ["https://tec.openplanner.team/stops/LkEsouf1", "https://tec.openplanner.team/stops/LkEspor1"], ["https://tec.openplanner.team/stops/Cobmven1", "https://tec.openplanner.team/stops/Cpcathe2"], ["https://tec.openplanner.team/stops/LLUdoya1", "https://tec.openplanner.team/stops/LLUvent4"], ["https://tec.openplanner.team/stops/H4ma419a", "https://tec.openplanner.team/stops/H4ma419b"], ["https://tec.openplanner.team/stops/N201ala", "https://tec.openplanner.team/stops/N201alb"], ["https://tec.openplanner.team/stops/N501giz", "https://tec.openplanner.team/stops/N501hba"], ["https://tec.openplanner.team/stops/LhSbruc1", "https://tec.openplanner.team/stops/LhSkirc2"], ["https://tec.openplanner.team/stops/N201aee", "https://tec.openplanner.team/stops/N201atb"], ["https://tec.openplanner.team/stops/Bchgqve1", "https://tec.openplanner.team/stops/Btsllbv2"], ["https://tec.openplanner.team/stops/Bnivfch2", "https://tec.openplanner.team/stops/Bnivpso1"], ["https://tec.openplanner.team/stops/Bbchsac1", "https://tec.openplanner.team/stops/Bwaunce2"], ["https://tec.openplanner.team/stops/H2ca101a", "https://tec.openplanner.team/stops/H2ca111a"], ["https://tec.openplanner.team/stops/X801bdd", "https://tec.openplanner.team/stops/X801coa"], ["https://tec.openplanner.team/stops/LhM07--1", "https://tec.openplanner.team/stops/LhMdorf1"], ["https://tec.openplanner.team/stops/X713acb", "https://tec.openplanner.team/stops/X731adb"], ["https://tec.openplanner.team/stops/H1eo103a", "https://tec.openplanner.team/stops/H1eo105b"], ["https://tec.openplanner.team/stops/LWNberg1", "https://tec.openplanner.team/stops/LWNbeto2"], ["https://tec.openplanner.team/stops/N516amb", "https://tec.openplanner.team/stops/N516amc"], ["https://tec.openplanner.team/stops/LFCdree2", "https://tec.openplanner.team/stops/LFChofv2"], ["https://tec.openplanner.team/stops/LlgCATH1", "https://tec.openplanner.team/stops/Llgrege2"], ["https://tec.openplanner.team/stops/H1ci102b", "https://tec.openplanner.team/stops/H1hn204a"], ["https://tec.openplanner.team/stops/LBSpail3", "https://tec.openplanner.team/stops/LBSvi321"], ["https://tec.openplanner.team/stops/X717aia", "https://tec.openplanner.team/stops/X781aba"], ["https://tec.openplanner.team/stops/Bmrlhan4", "https://tec.openplanner.team/stops/Bpiehte1"], ["https://tec.openplanner.team/stops/N229ata", "https://tec.openplanner.team/stops/N540alb"], ["https://tec.openplanner.team/stops/Lgrgoff1", "https://tec.openplanner.team/stops/Lgrjobe2"], ["https://tec.openplanner.team/stops/X665aaa", "https://tec.openplanner.team/stops/X665aab"], ["https://tec.openplanner.team/stops/H1ba116b", "https://tec.openplanner.team/stops/H1ba119b"], ["https://tec.openplanner.team/stops/Ctaallo2", "https://tec.openplanner.team/stops/Ctapn2"], ["https://tec.openplanner.team/stops/N506bca", "https://tec.openplanner.team/stops/N506bna"], ["https://tec.openplanner.team/stops/N513acb", "https://tec.openplanner.team/stops/N513agd"], ["https://tec.openplanner.team/stops/Bcercsa1", "https://tec.openplanner.team/stops/Bcerldo1"], ["https://tec.openplanner.team/stops/Bblaelo1", "https://tec.openplanner.team/stops/Bblaljo1"], ["https://tec.openplanner.team/stops/Cptberg1", "https://tec.openplanner.team/stops/Cptcamb1"], ["https://tec.openplanner.team/stops/LAWcorn2", "https://tec.openplanner.team/stops/LAWvill1"], ["https://tec.openplanner.team/stops/X901axa", "https://tec.openplanner.team/stops/X901bcb"], ["https://tec.openplanner.team/stops/X664aja", "https://tec.openplanner.team/stops/X665aaa"], ["https://tec.openplanner.team/stops/LeUarno2", "https://tec.openplanner.team/stops/LeUmeie2"], ["https://tec.openplanner.team/stops/N548afa", "https://tec.openplanner.team/stops/N571afa"], ["https://tec.openplanner.team/stops/Csobail2", "https://tec.openplanner.team/stops/Csoforc2"], ["https://tec.openplanner.team/stops/Llgerac2", "https://tec.openplanner.team/stops/Llghec-1"], ["https://tec.openplanner.team/stops/X605aea", "https://tec.openplanner.team/stops/X605afa"], ["https://tec.openplanner.team/stops/Crebrux1", "https://tec.openplanner.team/stops/Creespi2"], ["https://tec.openplanner.team/stops/LwYcafe2", "https://tec.openplanner.team/stops/LwYkirc2"], ["https://tec.openplanner.team/stops/LBVzand1", "https://tec.openplanner.team/stops/LBVzand3"], ["https://tec.openplanner.team/stops/H1pa100b", "https://tec.openplanner.team/stops/H1pa117b"], ["https://tec.openplanner.team/stops/X923aca", "https://tec.openplanner.team/stops/X923adb"], ["https://tec.openplanner.team/stops/N536aab", "https://tec.openplanner.team/stops/N536aba"], ["https://tec.openplanner.team/stops/LHCmais1", "https://tec.openplanner.team/stops/LWEmito2"], ["https://tec.openplanner.team/stops/Brsgm301", "https://tec.openplanner.team/stops/Bwatmbv1"], ["https://tec.openplanner.team/stops/H1te177a", "https://tec.openplanner.team/stops/H1vt192b"], ["https://tec.openplanner.team/stops/LBEchan1", "https://tec.openplanner.team/stops/LBEcroi1"], ["https://tec.openplanner.team/stops/NH01ana", "https://tec.openplanner.team/stops/NH01anb"], ["https://tec.openplanner.team/stops/Lloauto1", "https://tec.openplanner.team/stops/Lloauto2"], ["https://tec.openplanner.team/stops/NC14aba", "https://tec.openplanner.team/stops/NC44abb"], ["https://tec.openplanner.team/stops/N527aga", "https://tec.openplanner.team/stops/N527agb"], ["https://tec.openplanner.team/stops/H1vg358b", "https://tec.openplanner.team/stops/H1vg359a"], ["https://tec.openplanner.team/stops/Clbchba1", "https://tec.openplanner.team/stops/Clbchba2"], ["https://tec.openplanner.team/stops/X907ahb", "https://tec.openplanner.team/stops/X907aia"], ["https://tec.openplanner.team/stops/H4pi130a", "https://tec.openplanner.team/stops/H4pi134b"], ["https://tec.openplanner.team/stops/Lagpass1", "https://tec.openplanner.team/stops/Lagtilf1"], ["https://tec.openplanner.team/stops/H2bh110c", "https://tec.openplanner.team/stops/H2bh110d"], ["https://tec.openplanner.team/stops/N540aeb", "https://tec.openplanner.team/stops/N542arb"], ["https://tec.openplanner.team/stops/Ccpsecp1", "https://tec.openplanner.team/stops/H2tz117a"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X745aeb"], ["https://tec.openplanner.team/stops/X783acb", "https://tec.openplanner.team/stops/X783acd"], ["https://tec.openplanner.team/stops/X822aea", "https://tec.openplanner.team/stops/X822afb"], ["https://tec.openplanner.team/stops/Bottcro2", "https://tec.openplanner.team/stops/Bottgar1"], ["https://tec.openplanner.team/stops/Bnivcol1", "https://tec.openplanner.team/stops/Bnivfch1"], ["https://tec.openplanner.team/stops/N505ala", "https://tec.openplanner.team/stops/N505alb"], ["https://tec.openplanner.team/stops/N138aia", "https://tec.openplanner.team/stops/N143ada"], ["https://tec.openplanner.team/stops/LRChote1", "https://tec.openplanner.team/stops/LTPbode2"], ["https://tec.openplanner.team/stops/N534amh", "https://tec.openplanner.team/stops/N534apg"], ["https://tec.openplanner.team/stops/LCPbell1", "https://tec.openplanner.team/stops/LCPbell2"], ["https://tec.openplanner.team/stops/Llgsorb1", "https://tec.openplanner.team/stops/Llgsorb2"], ["https://tec.openplanner.team/stops/Bucccre2", "https://tec.openplanner.team/stops/Bucceng2"], ["https://tec.openplanner.team/stops/H2hl110b", "https://tec.openplanner.team/stops/H2pe157a"], ["https://tec.openplanner.team/stops/Cbcegli6", "https://tec.openplanner.team/stops/Crglyre1"], ["https://tec.openplanner.team/stops/X948ata", "https://tec.openplanner.team/stops/X948avb"], ["https://tec.openplanner.team/stops/Bwatber1", "https://tec.openplanner.team/stops/Bwatpct2"], ["https://tec.openplanner.team/stops/LSzsurl1", "https://tec.openplanner.team/stops/NL57aia"], ["https://tec.openplanner.team/stops/LRacime1", "https://tec.openplanner.team/stops/LRacime2"], ["https://tec.openplanner.team/stops/N329aaa", "https://tec.openplanner.team/stops/N365abb"], ["https://tec.openplanner.team/stops/N106ala", "https://tec.openplanner.team/stops/N106ana"], ["https://tec.openplanner.team/stops/H1vh137b", "https://tec.openplanner.team/stops/H3th127a"], ["https://tec.openplanner.team/stops/Clrecol1", "https://tec.openplanner.team/stops/Clrecol2"], ["https://tec.openplanner.team/stops/Lmiensp*", "https://tec.openplanner.team/stops/Lmimili2"], ["https://tec.openplanner.team/stops/Bnivfro2", "https://tec.openplanner.team/stops/Bnivpso1"], ["https://tec.openplanner.team/stops/LBabeco3", "https://tec.openplanner.team/stops/LBapepi6"], ["https://tec.openplanner.team/stops/H2hg153b", "https://tec.openplanner.team/stops/H2hg155d"], ["https://tec.openplanner.team/stops/X724aga", "https://tec.openplanner.team/stops/X724agb"], ["https://tec.openplanner.team/stops/H4ga151a", "https://tec.openplanner.team/stops/H4ga414a"], ["https://tec.openplanner.team/stops/N125aca", "https://tec.openplanner.team/stops/N154abb"], ["https://tec.openplanner.team/stops/H1fr107a", "https://tec.openplanner.team/stops/H1fr107d"], ["https://tec.openplanner.team/stops/X937aia", "https://tec.openplanner.team/stops/X937aja"], ["https://tec.openplanner.team/stops/Lbococh2", "https://tec.openplanner.team/stops/Loubonc1"], ["https://tec.openplanner.team/stops/H4or114a", "https://tec.openplanner.team/stops/H4or116b"], ["https://tec.openplanner.team/stops/N383acb", "https://tec.openplanner.team/stops/N383ada"], ["https://tec.openplanner.team/stops/N270aec", "https://tec.openplanner.team/stops/N270aed"], ["https://tec.openplanner.team/stops/X359ada", "https://tec.openplanner.team/stops/X359alb"], ["https://tec.openplanner.team/stops/Barqbco2", "https://tec.openplanner.team/stops/Barqres1"], ["https://tec.openplanner.team/stops/Cbwmvri1", "https://tec.openplanner.team/stops/Cmggthi1"], ["https://tec.openplanner.team/stops/Lvtfrai1", "https://tec.openplanner.team/stops/Lvtfrai2"], ["https://tec.openplanner.team/stops/N543cbb", "https://tec.openplanner.team/stops/N543cfb"], ["https://tec.openplanner.team/stops/Cgplutt1", "https://tec.openplanner.team/stops/Cgpplac1"], ["https://tec.openplanner.team/stops/X791abb", "https://tec.openplanner.team/stops/X791acb"], ["https://tec.openplanner.team/stops/NL73abb", "https://tec.openplanner.team/stops/NL73aca"], ["https://tec.openplanner.team/stops/LhRwere1", "https://tec.openplanner.team/stops/LsCbrau1"], ["https://tec.openplanner.team/stops/N323aba", "https://tec.openplanner.team/stops/N368ada"], ["https://tec.openplanner.team/stops/H4mo165b", "https://tec.openplanner.team/stops/H4mo179a"], ["https://tec.openplanner.team/stops/Bnivga12", "https://tec.openplanner.team/stops/Bnivga31"], ["https://tec.openplanner.team/stops/H1sp356b", "https://tec.openplanner.team/stops/H1ss349a"], ["https://tec.openplanner.team/stops/N540aib", "https://tec.openplanner.team/stops/N540aja"], ["https://tec.openplanner.team/stops/Lvethea1", "https://tec.openplanner.team/stops/Lvethea2"], ["https://tec.openplanner.team/stops/Cmmmarl1", "https://tec.openplanner.team/stops/Cmmp2051"], ["https://tec.openplanner.team/stops/Bhandub1", "https://tec.openplanner.team/stops/Bhanwav1"], ["https://tec.openplanner.team/stops/H1by101b", "https://tec.openplanner.team/stops/H1by109a"], ["https://tec.openplanner.team/stops/N102aca", "https://tec.openplanner.team/stops/N102acb"], ["https://tec.openplanner.team/stops/H4cl112b", "https://tec.openplanner.team/stops/H4ga163b"], ["https://tec.openplanner.team/stops/H2ec105a", "https://tec.openplanner.team/stops/H2ec105b"], ["https://tec.openplanner.team/stops/LVBsevr1", "https://tec.openplanner.team/stops/LVBsevr2"], ["https://tec.openplanner.team/stops/N117aaa", "https://tec.openplanner.team/stops/N117aua"], ["https://tec.openplanner.team/stops/LMIbois1", "https://tec.openplanner.team/stops/LMIgare2"], ["https://tec.openplanner.team/stops/LROgeuz1", "https://tec.openplanner.team/stops/LROmons2"], ["https://tec.openplanner.team/stops/Ctrchat2", "https://tec.openplanner.team/stops/Ctrrpla1"], ["https://tec.openplanner.team/stops/H1pa105b", "https://tec.openplanner.team/stops/H1qu119b"], ["https://tec.openplanner.team/stops/X358acd", "https://tec.openplanner.team/stops/X994ama"], ["https://tec.openplanner.team/stops/NL68afa", "https://tec.openplanner.team/stops/NL68agb"], ["https://tec.openplanner.team/stops/Bbstdpa1", "https://tec.openplanner.team/stops/Bbststa2"], ["https://tec.openplanner.team/stops/X804aob", "https://tec.openplanner.team/stops/X804bra"], ["https://tec.openplanner.team/stops/X669afa", "https://tec.openplanner.team/stops/X669agb"], ["https://tec.openplanner.team/stops/NR10aba", "https://tec.openplanner.team/stops/NR10aca"], ["https://tec.openplanner.team/stops/H1hr124a", "https://tec.openplanner.team/stops/H1hr129a"], ["https://tec.openplanner.team/stops/Bdlmgla4", "https://tec.openplanner.team/stops/Bwavdmo4"], ["https://tec.openplanner.team/stops/LBdcarr1", "https://tec.openplanner.team/stops/LLrfagn2"], ["https://tec.openplanner.team/stops/LESfont2", "https://tec.openplanner.team/stops/LFNecpr*"], ["https://tec.openplanner.team/stops/Ccimont2", "https://tec.openplanner.team/stops/Cmtprey1"], ["https://tec.openplanner.team/stops/LBTchai3", "https://tec.openplanner.team/stops/LMhvina2"], ["https://tec.openplanner.team/stops/LXoroch1", "https://tec.openplanner.team/stops/X599afd"], ["https://tec.openplanner.team/stops/N203aea", "https://tec.openplanner.team/stops/N203afb"], ["https://tec.openplanner.team/stops/N254aea", "https://tec.openplanner.team/stops/N254aga"], ["https://tec.openplanner.team/stops/N527aaa", "https://tec.openplanner.team/stops/N527aab"], ["https://tec.openplanner.team/stops/X741afa", "https://tec.openplanner.team/stops/X742aab"], ["https://tec.openplanner.team/stops/H4to133a", "https://tec.openplanner.team/stops/H5at135a"], ["https://tec.openplanner.team/stops/N521aeb", "https://tec.openplanner.team/stops/N521afb"], ["https://tec.openplanner.team/stops/X725aib", "https://tec.openplanner.team/stops/X767afa"], ["https://tec.openplanner.team/stops/LLt43--1", "https://tec.openplanner.team/stops/LVsboug2"], ["https://tec.openplanner.team/stops/H2bh121a", "https://tec.openplanner.team/stops/H2bh121b"], ["https://tec.openplanner.team/stops/Bcrnnca2", "https://tec.openplanner.team/stops/Bcrnnra1"], ["https://tec.openplanner.team/stops/X633ada", "https://tec.openplanner.team/stops/X633adc"], ["https://tec.openplanner.team/stops/Bsdavpe1", "https://tec.openplanner.team/stops/Bsdavpe2"], ["https://tec.openplanner.team/stops/X624afa", "https://tec.openplanner.team/stops/X624akb"], ["https://tec.openplanner.team/stops/H4mo171a", "https://tec.openplanner.team/stops/H4tg162b"], ["https://tec.openplanner.team/stops/H4ve133a", "https://tec.openplanner.team/stops/H4ve133b"], ["https://tec.openplanner.team/stops/X715akb", "https://tec.openplanner.team/stops/X781aab"], ["https://tec.openplanner.team/stops/N529ada", "https://tec.openplanner.team/stops/N584acb"], ["https://tec.openplanner.team/stops/LNCmarc1", "https://tec.openplanner.team/stops/LNCmc--2"], ["https://tec.openplanner.team/stops/H5wo124a", "https://tec.openplanner.team/stops/H5wo124b"], ["https://tec.openplanner.team/stops/N101aja", "https://tec.openplanner.team/stops/N101ajb"], ["https://tec.openplanner.team/stops/Cgzbouh1", "https://tec.openplanner.team/stops/Cgzbouh2"], ["https://tec.openplanner.team/stops/H5st169a", "https://tec.openplanner.team/stops/H5st169b"], ["https://tec.openplanner.team/stops/H1hw121b", "https://tec.openplanner.team/stops/H1hw123b"], ["https://tec.openplanner.team/stops/Lsmjalh2", "https://tec.openplanner.team/stops/Lsmnico2"], ["https://tec.openplanner.team/stops/H1ms904a", "https://tec.openplanner.team/stops/H1ms905a"], ["https://tec.openplanner.team/stops/X657ahb", "https://tec.openplanner.team/stops/X657ala"], ["https://tec.openplanner.team/stops/LFsconc2", "https://tec.openplanner.team/stops/LFslign1"], ["https://tec.openplanner.team/stops/N254aha", "https://tec.openplanner.team/stops/N562bfa"], ["https://tec.openplanner.team/stops/Llgcrgu2", "https://tec.openplanner.team/stops/Llgparc1"], ["https://tec.openplanner.team/stops/N150aba", "https://tec.openplanner.team/stops/N150abb"], ["https://tec.openplanner.team/stops/Llochar3", "https://tec.openplanner.team/stops/Llochar5"], ["https://tec.openplanner.team/stops/LeUkehr1", "https://tec.openplanner.team/stops/LeUkehr3"], ["https://tec.openplanner.team/stops/Bnivchh1", "https://tec.openplanner.team/stops/Bnivspi1"], ["https://tec.openplanner.team/stops/N301amb", "https://tec.openplanner.team/stops/N301anb"], ["https://tec.openplanner.team/stops/H1ch142b", "https://tec.openplanner.team/stops/H1nm141a"], ["https://tec.openplanner.team/stops/X946afa", "https://tec.openplanner.team/stops/X946agb"], ["https://tec.openplanner.team/stops/X674aaa", "https://tec.openplanner.team/stops/X675aaa"], ["https://tec.openplanner.team/stops/X784aca", "https://tec.openplanner.team/stops/X784adb"], ["https://tec.openplanner.team/stops/Cclmoul1", "https://tec.openplanner.team/stops/Cstgare1"], ["https://tec.openplanner.team/stops/Bsaumlp2", "https://tec.openplanner.team/stops/Btstbbu1"], ["https://tec.openplanner.team/stops/X982aaa", "https://tec.openplanner.team/stops/X982aad"], ["https://tec.openplanner.team/stops/H1gh168b", "https://tec.openplanner.team/stops/H1gh171b"], ["https://tec.openplanner.team/stops/N562bla", "https://tec.openplanner.team/stops/N562blb"], ["https://tec.openplanner.team/stops/LbTcarm2", "https://tec.openplanner.team/stops/LwR140-2"], ["https://tec.openplanner.team/stops/Btlbtbe2", "https://tec.openplanner.team/stops/Btlbtbe3"], ["https://tec.openplanner.team/stops/Bnilspe4", "https://tec.openplanner.team/stops/Bwspspa1"], ["https://tec.openplanner.team/stops/LESamos1", "https://tec.openplanner.team/stops/LESmagr2"], ["https://tec.openplanner.team/stops/LESfont2", "https://tec.openplanner.team/stops/LTIchev1"], ["https://tec.openplanner.team/stops/N211aea", "https://tec.openplanner.team/stops/N211aeb"], ["https://tec.openplanner.team/stops/X993aaa", "https://tec.openplanner.team/stops/X993abd"], ["https://tec.openplanner.team/stops/X899aga", "https://tec.openplanner.team/stops/X899aib"], ["https://tec.openplanner.team/stops/LLedoya1", "https://tec.openplanner.team/stops/X576aea"], ["https://tec.openplanner.team/stops/Bqueblo2", "https://tec.openplanner.team/stops/Bquepos2"], ["https://tec.openplanner.team/stops/Bclgavi2", "https://tec.openplanner.team/stops/Bclglbu1"], ["https://tec.openplanner.team/stops/X949aib", "https://tec.openplanner.team/stops/X949ama"], ["https://tec.openplanner.team/stops/Llgcrgu2", "https://tec.openplanner.team/stops/Llgrome2"], ["https://tec.openplanner.team/stops/LWOrout1", "https://tec.openplanner.team/stops/LWOwonc1"], ["https://tec.openplanner.team/stops/N423aab", "https://tec.openplanner.team/stops/N423afb"], ["https://tec.openplanner.team/stops/X836aeb", "https://tec.openplanner.team/stops/X836afa"], ["https://tec.openplanner.team/stops/LMNentr1", "https://tec.openplanner.team/stops/LMNgare2"], ["https://tec.openplanner.team/stops/H1ca104b", "https://tec.openplanner.team/stops/H1ca184b"], ["https://tec.openplanner.team/stops/Bsdecdi2", "https://tec.openplanner.team/stops/N574aea"], ["https://tec.openplanner.team/stops/Cdajume1", "https://tec.openplanner.team/stops/Cmafafe2"], ["https://tec.openplanner.team/stops/N512aic", "https://tec.openplanner.team/stops/NL68adb"], ["https://tec.openplanner.team/stops/N153aea", "https://tec.openplanner.team/stops/N153aeb"], ["https://tec.openplanner.team/stops/X769ana", "https://tec.openplanner.team/stops/X769apb"], ["https://tec.openplanner.team/stops/X907aba", "https://tec.openplanner.team/stops/X951acb"], ["https://tec.openplanner.team/stops/N286abb", "https://tec.openplanner.team/stops/N287aaa"], ["https://tec.openplanner.team/stops/LREheyd2", "https://tec.openplanner.team/stops/LREprea2"], ["https://tec.openplanner.team/stops/LWZponh1", "https://tec.openplanner.team/stops/LWZponh2"], ["https://tec.openplanner.team/stops/X818aha", "https://tec.openplanner.team/stops/X818ama"], ["https://tec.openplanner.team/stops/Csedoua2", "https://tec.openplanner.team/stops/Csedoua5"], ["https://tec.openplanner.team/stops/X390aja", "https://tec.openplanner.team/stops/X998aaa"], ["https://tec.openplanner.team/stops/Cgoulb1", "https://tec.openplanner.team/stops/Cgoulb4"], ["https://tec.openplanner.team/stops/N167aab", "https://tec.openplanner.team/stops/N244aqa"], ["https://tec.openplanner.team/stops/X837aec", "https://tec.openplanner.team/stops/X837aja"], ["https://tec.openplanner.team/stops/LLrdigu1", "https://tec.openplanner.team/stops/LSPgend2"], ["https://tec.openplanner.team/stops/LGLchap2", "https://tec.openplanner.team/stops/LGLchap3"], ["https://tec.openplanner.team/stops/LTGvill1", "https://tec.openplanner.team/stops/LTGvill2"], ["https://tec.openplanner.team/stops/Lveensi2", "https://tec.openplanner.team/stops/Lveoctr3"], ["https://tec.openplanner.team/stops/N137ada", "https://tec.openplanner.team/stops/N160aab"], ["https://tec.openplanner.team/stops/X750agb", "https://tec.openplanner.team/stops/X750bna"], ["https://tec.openplanner.team/stops/LrAmuhl1", "https://tec.openplanner.team/stops/LrApont1"], ["https://tec.openplanner.team/stops/LVllieg1", "https://tec.openplanner.team/stops/LVllieg2"], ["https://tec.openplanner.team/stops/X836aaa", "https://tec.openplanner.team/stops/X836aca"], ["https://tec.openplanner.team/stops/LFFchab1", "https://tec.openplanner.team/stops/LVLzoni1"], ["https://tec.openplanner.team/stops/H1bo103a", "https://tec.openplanner.team/stops/H1sg150c"], ["https://tec.openplanner.team/stops/N515akc", "https://tec.openplanner.team/stops/N515ana"], ["https://tec.openplanner.team/stops/Cjojonc1", "https://tec.openplanner.team/stops/NC14anb"], ["https://tec.openplanner.team/stops/Cauromi1", "https://tec.openplanner.team/stops/N543anh"], ["https://tec.openplanner.team/stops/X902atb", "https://tec.openplanner.team/stops/X902aub"], ["https://tec.openplanner.team/stops/Bclgeco2", "https://tec.openplanner.team/stops/Bclgfva2"], ["https://tec.openplanner.team/stops/H4ne133b", "https://tec.openplanner.team/stops/H4wa153b"], ["https://tec.openplanner.team/stops/N139aca", "https://tec.openplanner.team/stops/N139ada"], ["https://tec.openplanner.team/stops/Bmelegl1", "https://tec.openplanner.team/stops/Bmelenf1"], ["https://tec.openplanner.team/stops/Bgntcom1", "https://tec.openplanner.team/stops/Bgntcom2"], ["https://tec.openplanner.team/stops/Lsearbo2", "https://tec.openplanner.team/stops/Lsebeau2"], ["https://tec.openplanner.team/stops/Csufrom5", "https://tec.openplanner.team/stops/Csuptou1"], ["https://tec.openplanner.team/stops/H1cd110b", "https://tec.openplanner.team/stops/H1cd114b"], ["https://tec.openplanner.team/stops/N536aca", "https://tec.openplanner.team/stops/N562blb"], ["https://tec.openplanner.team/stops/Lhr2ave2", "https://tec.openplanner.team/stops/Lhrhurb1"], ["https://tec.openplanner.team/stops/X754axa", "https://tec.openplanner.team/stops/X754azb"], ["https://tec.openplanner.team/stops/X670aqb", "https://tec.openplanner.team/stops/X670asb"], ["https://tec.openplanner.team/stops/N353ahb", "https://tec.openplanner.team/stops/N353awa"], ["https://tec.openplanner.team/stops/N232bsa", "https://tec.openplanner.team/stops/N232bsb"], ["https://tec.openplanner.team/stops/H1ms297a", "https://tec.openplanner.team/stops/H1ms297b"], ["https://tec.openplanner.team/stops/X725aga", "https://tec.openplanner.team/stops/X725agb"], ["https://tec.openplanner.team/stops/Cramadi1", "https://tec.openplanner.team/stops/Crarmas2"], ["https://tec.openplanner.team/stops/N545abb", "https://tec.openplanner.team/stops/N547ala"], ["https://tec.openplanner.team/stops/X823afd", "https://tec.openplanner.team/stops/X825aaa"], ["https://tec.openplanner.team/stops/N340aba", "https://tec.openplanner.team/stops/N340abb"], ["https://tec.openplanner.team/stops/LGemari2", "https://tec.openplanner.team/stops/LPbpeti1"], ["https://tec.openplanner.team/stops/Llgfont2", "https://tec.openplanner.team/stops/Llgfont4"], ["https://tec.openplanner.team/stops/N232bra", "https://tec.openplanner.team/stops/N232brb"], ["https://tec.openplanner.team/stops/Lrcauto1", "https://tec.openplanner.team/stops/Lrcstad2"], ["https://tec.openplanner.team/stops/NL78aca", "https://tec.openplanner.team/stops/NL78adb"], ["https://tec.openplanner.team/stops/Bgnvcha2", "https://tec.openplanner.team/stops/Blhumpo2"], ["https://tec.openplanner.team/stops/LhEbruc2", "https://tec.openplanner.team/stops/LWEgare1"], ["https://tec.openplanner.team/stops/H4ms144a", "https://tec.openplanner.team/stops/H4ms166b"], ["https://tec.openplanner.team/stops/X774aha", "https://tec.openplanner.team/stops/X774ahb"], ["https://tec.openplanner.team/stops/X804bjb", "https://tec.openplanner.team/stops/X804byb"], ["https://tec.openplanner.team/stops/LFsgend2", "https://tec.openplanner.team/stops/Lligara1"], ["https://tec.openplanner.team/stops/H2sv213a", "https://tec.openplanner.team/stops/H2sv215b"], ["https://tec.openplanner.team/stops/LGOmonu1", "https://tec.openplanner.team/stops/LGOmous1"], ["https://tec.openplanner.team/stops/Blanove2", "https://tec.openplanner.team/stops/LWscona1"], ["https://tec.openplanner.team/stops/LAuvill1", "https://tec.openplanner.team/stops/LWRpl--1"], ["https://tec.openplanner.team/stops/N513aha", "https://tec.openplanner.team/stops/N513axa"], ["https://tec.openplanner.team/stops/LDObell1", "https://tec.openplanner.team/stops/LDObell2"], ["https://tec.openplanner.team/stops/Braccen1", "https://tec.openplanner.team/stops/Bracgar1"], ["https://tec.openplanner.team/stops/H1hl123a", "https://tec.openplanner.team/stops/H1hl129b"], ["https://tec.openplanner.team/stops/LmHflor1", "https://tec.openplanner.team/stops/LmHumge1"], ["https://tec.openplanner.team/stops/LAyfren1", "https://tec.openplanner.team/stops/Lflcle-6"], ["https://tec.openplanner.team/stops/LbTgeme2", "https://tec.openplanner.team/stops/LwYneue1"], ["https://tec.openplanner.team/stops/Cctecol2", "https://tec.openplanner.team/stops/Ccutrav1"], ["https://tec.openplanner.team/stops/H1qu114a", "https://tec.openplanner.team/stops/H1qu114b"], ["https://tec.openplanner.team/stops/N536ada", "https://tec.openplanner.team/stops/N536adb"], ["https://tec.openplanner.team/stops/X746agb", "https://tec.openplanner.team/stops/X746agc"], ["https://tec.openplanner.team/stops/LJU493-1", "https://tec.openplanner.team/stops/LPAchpl2"], ["https://tec.openplanner.team/stops/Cfcpier1", "https://tec.openplanner.team/stops/Cfcpier2"], ["https://tec.openplanner.team/stops/Llgcont1", "https://tec.openplanner.team/stops/Llgfran2"], ["https://tec.openplanner.team/stops/N323abb", "https://tec.openplanner.team/stops/N323aca"], ["https://tec.openplanner.team/stops/LeUgend1", "https://tec.openplanner.team/stops/LeUlasc1"], ["https://tec.openplanner.team/stops/Crerevi1", "https://tec.openplanner.team/stops/Crerevi2"], ["https://tec.openplanner.team/stops/H1ms254b", "https://tec.openplanner.team/stops/H1ms264a"], ["https://tec.openplanner.team/stops/Ladplen*", "https://tec.openplanner.team/stops/LThhoul1"], ["https://tec.openplanner.team/stops/LmAgruf1", "https://tec.openplanner.team/stops/LmAkirc1"], ["https://tec.openplanner.team/stops/Lbrrobe2", "https://tec.openplanner.team/stops/Lbrrobe3"], ["https://tec.openplanner.team/stops/N539acb", "https://tec.openplanner.team/stops/N539amb"], ["https://tec.openplanner.team/stops/Lbrnanc1", "https://tec.openplanner.team/stops/Llglill2"], ["https://tec.openplanner.team/stops/H1og132a", "https://tec.openplanner.team/stops/H1og135a"], ["https://tec.openplanner.team/stops/Cjxetri1", "https://tec.openplanner.team/stops/Cjxetri2"], ["https://tec.openplanner.team/stops/H4ro154b", "https://tec.openplanner.team/stops/H5pe127b"], ["https://tec.openplanner.team/stops/Chpatel1", "https://tec.openplanner.team/stops/Chppack2"], ["https://tec.openplanner.team/stops/Cgyruis2", "https://tec.openplanner.team/stops/Cgywaut2"], ["https://tec.openplanner.team/stops/N351ala", "https://tec.openplanner.team/stops/N351alb"], ["https://tec.openplanner.team/stops/H4ep126a", "https://tec.openplanner.team/stops/H4ep126b"], ["https://tec.openplanner.team/stops/LSG172-1", "https://tec.openplanner.team/stops/LSkoran2"], ["https://tec.openplanner.team/stops/X619aab", "https://tec.openplanner.team/stops/X619afa"], ["https://tec.openplanner.team/stops/LFyanto1", "https://tec.openplanner.team/stops/LFychpl2"], ["https://tec.openplanner.team/stops/Bnivbxl2", "https://tec.openplanner.team/stops/Bnivpla1"], ["https://tec.openplanner.team/stops/N501iez", "https://tec.openplanner.team/stops/N501ilb"], ["https://tec.openplanner.team/stops/Lbbgare1", "https://tec.openplanner.team/stops/Lgrdefr1"], ["https://tec.openplanner.team/stops/LLRbleh1", "https://tec.openplanner.team/stops/LLRptma1"], ["https://tec.openplanner.team/stops/LAmarbo1", "https://tec.openplanner.team/stops/LAmeg--1"], ["https://tec.openplanner.team/stops/Bgemfbo1", "https://tec.openplanner.team/stops/Bgrmfon1"], ["https://tec.openplanner.team/stops/Csychap2", "https://tec.openplanner.team/stops/Csyjumo2"], ["https://tec.openplanner.team/stops/NL57ala", "https://tec.openplanner.team/stops/NL57ama"], ["https://tec.openplanner.team/stops/H4be104a", "https://tec.openplanner.team/stops/H4be105a"], ["https://tec.openplanner.team/stops/H1qy131b", "https://tec.openplanner.team/stops/H1qy137b"], ["https://tec.openplanner.team/stops/Bgnttma2", "https://tec.openplanner.team/stops/Bsomjon2"], ["https://tec.openplanner.team/stops/LOccarr3", "https://tec.openplanner.team/stops/LOcgdro4"], ["https://tec.openplanner.team/stops/Bwaypav2", "https://tec.openplanner.team/stops/Cwspavi1"], ["https://tec.openplanner.team/stops/N235agb", "https://tec.openplanner.team/stops/N241aca"], ["https://tec.openplanner.team/stops/H4co148b", "https://tec.openplanner.team/stops/H4mn100a"], ["https://tec.openplanner.team/stops/N562akb", "https://tec.openplanner.team/stops/N562ata"], ["https://tec.openplanner.team/stops/LFRgode1", "https://tec.openplanner.team/stops/LFRrohe1"], ["https://tec.openplanner.team/stops/Lhrjaur2", "https://tec.openplanner.team/stops/Lhrlamb2"], ["https://tec.openplanner.team/stops/X719afa", "https://tec.openplanner.team/stops/X719afb"], ["https://tec.openplanner.team/stops/Bbaldot1", "https://tec.openplanner.team/stops/Bbaltba1"], ["https://tec.openplanner.team/stops/Cfaecmo2", "https://tec.openplanner.team/stops/Cfapiro2"], ["https://tec.openplanner.team/stops/Bwatmbv2", "https://tec.openplanner.team/stops/Bwatpcs1"], ["https://tec.openplanner.team/stops/X793aca", "https://tec.openplanner.team/stops/X793ada"], ["https://tec.openplanner.team/stops/LDLbaye2", "https://tec.openplanner.team/stops/LDLbeau2"], ["https://tec.openplanner.team/stops/LcRkirc1", "https://tec.openplanner.team/stops/LwTzent2"], ["https://tec.openplanner.team/stops/N423acb", "https://tec.openplanner.team/stops/N424acb"], ["https://tec.openplanner.team/stops/H2hl113a", "https://tec.openplanner.team/stops/H2hp121a"], ["https://tec.openplanner.team/stops/LJvmale1", "https://tec.openplanner.team/stops/LJvmart1"], ["https://tec.openplanner.team/stops/H1mr123b", "https://tec.openplanner.team/stops/H1wi150b"], ["https://tec.openplanner.team/stops/Lhrcols1", "https://tec.openplanner.team/stops/Lvtpata1"], ["https://tec.openplanner.team/stops/Ljucano2", "https://tec.openplanner.team/stops/Ljuetie3"], ["https://tec.openplanner.team/stops/X786abb", "https://tec.openplanner.team/stops/X786aeb"], ["https://tec.openplanner.team/stops/LFrvesd1", "https://tec.openplanner.team/stops/LSHfief2"], ["https://tec.openplanner.team/stops/LVPcrok2", "https://tec.openplanner.team/stops/LVPgrot4"], ["https://tec.openplanner.team/stops/H4al100a", "https://tec.openplanner.team/stops/H4ch115a"], ["https://tec.openplanner.team/stops/LMHeg--1", "https://tec.openplanner.team/stops/LMHmeha2"], ["https://tec.openplanner.team/stops/LSOboeu1", "https://tec.openplanner.team/stops/LSOtrou2"], ["https://tec.openplanner.team/stops/Caccera1", "https://tec.openplanner.team/stops/Cbfchla2"], ["https://tec.openplanner.team/stops/LlgLAMB2", "https://tec.openplanner.team/stops/LlgLAMB7"], ["https://tec.openplanner.team/stops/LAncoup1", "https://tec.openplanner.team/stops/LVnroch1"], ["https://tec.openplanner.team/stops/H2mo125a", "https://tec.openplanner.team/stops/H2mo138b"], ["https://tec.openplanner.team/stops/X790aea", "https://tec.openplanner.team/stops/X790afa"], ["https://tec.openplanner.team/stops/H1au102a", "https://tec.openplanner.team/stops/H1el132b"], ["https://tec.openplanner.team/stops/LOljean1", "https://tec.openplanner.team/stops/LOmlime2"], ["https://tec.openplanner.team/stops/H1ht121b", "https://tec.openplanner.team/stops/H1ht131b"], ["https://tec.openplanner.team/stops/Bjdsbro2", "https://tec.openplanner.team/stops/Bjdssta1"], ["https://tec.openplanner.team/stops/H4ty285b", "https://tec.openplanner.team/stops/H4ty384b"], ["https://tec.openplanner.team/stops/N301abc", "https://tec.openplanner.team/stops/N301abd"], ["https://tec.openplanner.team/stops/N228aca", "https://tec.openplanner.team/stops/N228acb"], ["https://tec.openplanner.team/stops/X623aia", "https://tec.openplanner.team/stops/X623aib"], ["https://tec.openplanner.team/stops/Cmlbras1", "https://tec.openplanner.team/stops/Cmlhotv1"], ["https://tec.openplanner.team/stops/Blhueso2", "https://tec.openplanner.team/stops/Blhunys3"], ["https://tec.openplanner.team/stops/Cbfcham1", "https://tec.openplanner.team/stops/Cbfusin2"], ["https://tec.openplanner.team/stops/Cmomalg1", "https://tec.openplanner.team/stops/Cmomalg2"], ["https://tec.openplanner.team/stops/N508aea", "https://tec.openplanner.team/stops/N508aeb"], ["https://tec.openplanner.team/stops/Lflheid2", "https://tec.openplanner.team/stops/Lflprev1"], ["https://tec.openplanner.team/stops/H4tu170a", "https://tec.openplanner.team/stops/H4tu171a"], ["https://tec.openplanner.team/stops/N211aga", "https://tec.openplanner.team/stops/N212ahb"], ["https://tec.openplanner.team/stops/X602ama", "https://tec.openplanner.team/stops/X602ana"], ["https://tec.openplanner.team/stops/X398aab", "https://tec.openplanner.team/stops/X901amb"], ["https://tec.openplanner.team/stops/H1ho138a", "https://tec.openplanner.team/stops/H1wl124a"], ["https://tec.openplanner.team/stops/N562bmb", "https://tec.openplanner.team/stops/N562bra"], ["https://tec.openplanner.team/stops/X754aca", "https://tec.openplanner.team/stops/X754asb"], ["https://tec.openplanner.team/stops/Canh1941", "https://tec.openplanner.team/stops/Canh1942"], ["https://tec.openplanner.team/stops/Lhrhosp2", "https://tec.openplanner.team/stops/Lhrhurb2"], ["https://tec.openplanner.team/stops/N201afa", "https://tec.openplanner.team/stops/N201ata"], ["https://tec.openplanner.team/stops/N206abb", "https://tec.openplanner.team/stops/X206azb"], ["https://tec.openplanner.team/stops/X615aea", "https://tec.openplanner.team/stops/X615aja"], ["https://tec.openplanner.team/stops/X687aba", "https://tec.openplanner.team/stops/X688aba"], ["https://tec.openplanner.team/stops/LCIcent1", "https://tec.openplanner.team/stops/LVHcent2"], ["https://tec.openplanner.team/stops/X786aib", "https://tec.openplanner.team/stops/X788aaa"], ["https://tec.openplanner.team/stops/LCHrhou2", "https://tec.openplanner.team/stops/Ldicorb2"], ["https://tec.openplanner.team/stops/X715aga", "https://tec.openplanner.team/stops/X715amb"], ["https://tec.openplanner.team/stops/Bbsicas2", "https://tec.openplanner.team/stops/Bbsicul2"], ["https://tec.openplanner.team/stops/H2tr252b", "https://tec.openplanner.team/stops/H2tr257a"], ["https://tec.openplanner.team/stops/N545aba", "https://tec.openplanner.team/stops/N545abb"], ["https://tec.openplanner.team/stops/N522ana", "https://tec.openplanner.team/stops/N522apb"], ["https://tec.openplanner.team/stops/Ljhjeha*", "https://tec.openplanner.team/stops/LSUroyo1"], ["https://tec.openplanner.team/stops/LWAhart1", "https://tec.openplanner.team/stops/LWAmois2"], ["https://tec.openplanner.team/stops/N528agb", "https://tec.openplanner.team/stops/N528aia"], ["https://tec.openplanner.team/stops/H2bh105a", "https://tec.openplanner.team/stops/H2bh115b"], ["https://tec.openplanner.team/stops/Bfledpi2", "https://tec.openplanner.team/stops/Cflchel5"], ["https://tec.openplanner.team/stops/Bgerprg2", "https://tec.openplanner.team/stops/NB33aeb"], ["https://tec.openplanner.team/stops/Ccufos72", "https://tec.openplanner.team/stops/Ccupbro1"], ["https://tec.openplanner.team/stops/X723aga", "https://tec.openplanner.team/stops/X723agb"], ["https://tec.openplanner.team/stops/N517aea", "https://tec.openplanner.team/stops/N517afb"], ["https://tec.openplanner.team/stops/Bauddel1", "https://tec.openplanner.team/stops/Baudtri2"], ["https://tec.openplanner.team/stops/N571aca", "https://tec.openplanner.team/stops/N571acb"], ["https://tec.openplanner.team/stops/X314aaa", "https://tec.openplanner.team/stops/X359amb"], ["https://tec.openplanner.team/stops/LaM266-2", "https://tec.openplanner.team/stops/LaMmark2"], ["https://tec.openplanner.team/stops/Caujonc1", "https://tec.openplanner.team/stops/N534beb"], ["https://tec.openplanner.team/stops/LLStour1", "https://tec.openplanner.team/stops/LLStour2"], ["https://tec.openplanner.team/stops/Llgjoie3", "https://tec.openplanner.team/stops/Llgmont1"], ["https://tec.openplanner.team/stops/H1hr120a", "https://tec.openplanner.team/stops/H3so171a"], ["https://tec.openplanner.team/stops/H1bu143a", "https://tec.openplanner.team/stops/H1mg109b"], ["https://tec.openplanner.team/stops/N101alb", "https://tec.openplanner.team/stops/N101ara"], ["https://tec.openplanner.team/stops/N553aab", "https://tec.openplanner.team/stops/N553ama"], ["https://tec.openplanner.team/stops/Lmibove3", "https://tec.openplanner.team/stops/Lmibove4"], ["https://tec.openplanner.team/stops/N145aib", "https://tec.openplanner.team/stops/N145aja"], ["https://tec.openplanner.team/stops/H1ob339a", "https://tec.openplanner.team/stops/H1sd344b"], ["https://tec.openplanner.team/stops/N524aba", "https://tec.openplanner.team/stops/N524adb"], ["https://tec.openplanner.team/stops/LmDgeme1", "https://tec.openplanner.team/stops/LmDgeme2"], ["https://tec.openplanner.team/stops/X780agb", "https://tec.openplanner.team/stops/X780aha"], ["https://tec.openplanner.team/stops/LFMkrut3", "https://tec.openplanner.team/stops/LFMveur2"], ["https://tec.openplanner.team/stops/Bcsgcou2", "https://tec.openplanner.team/stops/Bmrsayw2"], ["https://tec.openplanner.team/stops/Blaneli1", "https://tec.openplanner.team/stops/LLasta-*"], ["https://tec.openplanner.team/stops/H1ba115a", "https://tec.openplanner.team/stops/H1ba120b"], ["https://tec.openplanner.team/stops/LSogare1", "https://tec.openplanner.team/stops/LSoprom2"], ["https://tec.openplanner.team/stops/LEScarr2", "https://tec.openplanner.team/stops/LESryon1"], ["https://tec.openplanner.team/stops/H5rx139a", "https://tec.openplanner.team/stops/H5rx140b"], ["https://tec.openplanner.team/stops/X639apa", "https://tec.openplanner.team/stops/X639ara"], ["https://tec.openplanner.team/stops/Cprlpre1", "https://tec.openplanner.team/stops/Cprsapv1"], ["https://tec.openplanner.team/stops/X940ada", "https://tec.openplanner.team/stops/X940adb"], ["https://tec.openplanner.team/stops/X947aba", "https://tec.openplanner.team/stops/X947abc"], ["https://tec.openplanner.team/stops/Cmachau1", "https://tec.openplanner.team/stops/Cmaplas3"], ["https://tec.openplanner.team/stops/LlNbene2", "https://tec.openplanner.team/stops/LlNkirc1"], ["https://tec.openplanner.team/stops/Bgoekaz2", "https://tec.openplanner.team/stops/Bgoestu2"], ["https://tec.openplanner.team/stops/X654ada", "https://tec.openplanner.team/stops/X654adb"], ["https://tec.openplanner.team/stops/H5at106a", "https://tec.openplanner.team/stops/H5at116d"], ["https://tec.openplanner.team/stops/N509aca", "https://tec.openplanner.team/stops/N511apa"], ["https://tec.openplanner.team/stops/Cgzdeve1", "https://tec.openplanner.team/stops/Cgzhour3"], ["https://tec.openplanner.team/stops/LBIbois1", "https://tec.openplanner.team/stops/LBIhann2"], ["https://tec.openplanner.team/stops/X663aea", "https://tec.openplanner.team/stops/X663agb"], ["https://tec.openplanner.team/stops/Llgdelc2", "https://tec.openplanner.team/stops/Llgnico5"], ["https://tec.openplanner.team/stops/X354afb", "https://tec.openplanner.team/stops/X354ahb"], ["https://tec.openplanner.team/stops/Cstcent1", "https://tec.openplanner.team/stops/Cstcent2"], ["https://tec.openplanner.team/stops/Llghesb1", "https://tec.openplanner.team/stops/Llgoeil1"], ["https://tec.openplanner.team/stops/Cchsud0", "https://tec.openplanner.team/stops/NC01aab"], ["https://tec.openplanner.team/stops/Ladpire2", "https://tec.openplanner.team/stops/Ladpire3"], ["https://tec.openplanner.team/stops/X910ahb", "https://tec.openplanner.team/stops/X910aia"], ["https://tec.openplanner.team/stops/X601bmb", "https://tec.openplanner.team/stops/X601bna"], ["https://tec.openplanner.team/stops/Bnivplt1", "https://tec.openplanner.team/stops/Bnivplt2"], ["https://tec.openplanner.team/stops/Ctrecol2", "https://tec.openplanner.team/stops/Ctrecol3"], ["https://tec.openplanner.team/stops/Bpiehvi1", "https://tec.openplanner.team/stops/Bpiehvi2"], ["https://tec.openplanner.team/stops/X614anb", "https://tec.openplanner.team/stops/X614aoa"], ["https://tec.openplanner.team/stops/H2ch103a", "https://tec.openplanner.team/stops/H2ch107a"], ["https://tec.openplanner.team/stops/LBEcroi2", "https://tec.openplanner.team/stops/LBEssab1"], ["https://tec.openplanner.team/stops/X923aea", "https://tec.openplanner.team/stops/X923ama"], ["https://tec.openplanner.team/stops/Lprmerc*", "https://tec.openplanner.team/stops/Lprthie1"], ["https://tec.openplanner.team/stops/H4wi161b", "https://tec.openplanner.team/stops/H4wi169b"], ["https://tec.openplanner.team/stops/H1wa140a", "https://tec.openplanner.team/stops/H1wa147a"], ["https://tec.openplanner.team/stops/NL77aga", "https://tec.openplanner.team/stops/NL79aaa"], ["https://tec.openplanner.team/stops/Bnivath2", "https://tec.openplanner.team/stops/Bnivfro1"], ["https://tec.openplanner.team/stops/Llgabat1", "https://tec.openplanner.team/stops/Llgabat2"], ["https://tec.openplanner.team/stops/Bsgihmo2", "https://tec.openplanner.team/stops/Bsgipmo1"], ["https://tec.openplanner.team/stops/Ccoacie1", "https://tec.openplanner.team/stops/Ccoacie2"], ["https://tec.openplanner.team/stops/Cgofleu3", "https://tec.openplanner.team/stops/CMchfl1"], ["https://tec.openplanner.team/stops/H2hp123d", "https://tec.openplanner.team/stops/H2pe156b"], ["https://tec.openplanner.team/stops/LnEkirc2", "https://tec.openplanner.team/stops/LnEmett2"], ["https://tec.openplanner.team/stops/H4ce101b", "https://tec.openplanner.team/stops/H4or113a"], ["https://tec.openplanner.team/stops/H1pw120b", "https://tec.openplanner.team/stops/H1wa144b"], ["https://tec.openplanner.team/stops/Bottgar3", "https://tec.openplanner.team/stops/Bottgar5"], ["https://tec.openplanner.team/stops/H1hh109b", "https://tec.openplanner.team/stops/H1hh115b"], ["https://tec.openplanner.team/stops/LLMjacq1", "https://tec.openplanner.team/stops/LThpoli2"], ["https://tec.openplanner.team/stops/Cmyfoym2", "https://tec.openplanner.team/stops/Cmywarc2"], ["https://tec.openplanner.team/stops/N557aac", "https://tec.openplanner.team/stops/N557aad"], ["https://tec.openplanner.team/stops/LHarenn2", "https://tec.openplanner.team/stops/LHaxhig2"], ["https://tec.openplanner.team/stops/X542aaa", "https://tec.openplanner.team/stops/X750bla"], ["https://tec.openplanner.team/stops/H1pa167b", "https://tec.openplanner.team/stops/H1qu108a"], ["https://tec.openplanner.team/stops/X775aaa", "https://tec.openplanner.team/stops/X953ada"], ["https://tec.openplanner.team/stops/X901anb", "https://tec.openplanner.team/stops/X901bna"], ["https://tec.openplanner.team/stops/H1mj129b", "https://tec.openplanner.team/stops/H1mj131a"], ["https://tec.openplanner.team/stops/Bsensab2", "https://tec.openplanner.team/stops/H2se109a"], ["https://tec.openplanner.team/stops/LVtchai2", "https://tec.openplanner.team/stops/LVtespo2"], ["https://tec.openplanner.team/stops/H4ag105a", "https://tec.openplanner.team/stops/H4cl114a"], ["https://tec.openplanner.team/stops/Bpecdel1", "https://tec.openplanner.team/stops/Bpecvme2"], ["https://tec.openplanner.team/stops/Chhegli1", "https://tec.openplanner.team/stops/Chhprai1"], ["https://tec.openplanner.team/stops/N160aea", "https://tec.openplanner.team/stops/N160afb"], ["https://tec.openplanner.team/stops/Lstchu-2", "https://tec.openplanner.team/stops/LTIecma1"], ["https://tec.openplanner.team/stops/H1wa152a", "https://tec.openplanner.team/stops/H1wa152b"], ["https://tec.openplanner.team/stops/LnIkirc1", "https://tec.openplanner.team/stops/LnIschw1"], ["https://tec.openplanner.team/stops/H2fa106a", "https://tec.openplanner.team/stops/H2mi123b"], ["https://tec.openplanner.team/stops/LHUalbe1", "https://tec.openplanner.team/stops/NL80afa"], ["https://tec.openplanner.team/stops/LhDkreu2", "https://tec.openplanner.team/stops/LhPheps1"], ["https://tec.openplanner.team/stops/H1hq158a", "https://tec.openplanner.team/stops/H1sy137a"], ["https://tec.openplanner.team/stops/Bclgapi2", "https://tec.openplanner.team/stops/Bdvmcsa1"], ["https://tec.openplanner.team/stops/N232aya", "https://tec.openplanner.team/stops/N232bjb"], ["https://tec.openplanner.team/stops/LOLrafh2", "https://tec.openplanner.team/stops/LSOferr6"], ["https://tec.openplanner.team/stops/LSssurl1", "https://tec.openplanner.team/stops/LSssurl2"], ["https://tec.openplanner.team/stops/X811acb", "https://tec.openplanner.team/stops/X811adb"], ["https://tec.openplanner.team/stops/X992aba", "https://tec.openplanner.team/stops/X992abb"], ["https://tec.openplanner.team/stops/H5st164b", "https://tec.openplanner.team/stops/H5st166a"], ["https://tec.openplanner.team/stops/Llgdart5", "https://tec.openplanner.team/stops/LlgguilE"], ["https://tec.openplanner.team/stops/X595aha", "https://tec.openplanner.team/stops/X796aia"], ["https://tec.openplanner.team/stops/X608asa", "https://tec.openplanner.team/stops/X621aea"], ["https://tec.openplanner.team/stops/H1hr120b", "https://tec.openplanner.team/stops/H1hr121a"], ["https://tec.openplanner.team/stops/N101aga", "https://tec.openplanner.team/stops/N101aia"], ["https://tec.openplanner.team/stops/Ljemabo1", "https://tec.openplanner.team/stops/Lmobrac1"], ["https://tec.openplanner.team/stops/LWAipes1", "https://tec.openplanner.team/stops/LWAipes2"], ["https://tec.openplanner.team/stops/LHcgare1", "https://tec.openplanner.team/stops/LSxeg--2"], ["https://tec.openplanner.team/stops/H1ho141b", "https://tec.openplanner.team/stops/H1wg127a"], ["https://tec.openplanner.team/stops/LOMcabi1", "https://tec.openplanner.team/stops/LOMcabi2"], ["https://tec.openplanner.team/stops/H1pe131a", "https://tec.openplanner.team/stops/H1vb141b"], ["https://tec.openplanner.team/stops/X801atb", "https://tec.openplanner.team/stops/X837aha"], ["https://tec.openplanner.team/stops/X886aca", "https://tec.openplanner.team/stops/X886afb"], ["https://tec.openplanner.team/stops/Cbfchla1", "https://tec.openplanner.team/stops/Cbfpauc2"], ["https://tec.openplanner.team/stops/LeYloos1", "https://tec.openplanner.team/stops/LrAbe602"], ["https://tec.openplanner.team/stops/Ctucomm1", "https://tec.openplanner.team/stops/NC28aha"], ["https://tec.openplanner.team/stops/Bgemfbo1", "https://tec.openplanner.team/stops/N522akb"], ["https://tec.openplanner.team/stops/LHMcruc1", "https://tec.openplanner.team/stops/LHMhof-1"], ["https://tec.openplanner.team/stops/LVNleco2", "https://tec.openplanner.team/stops/LVNroua2"], ["https://tec.openplanner.team/stops/LTIecma1", "https://tec.openplanner.team/stops/LTIsupe2"], ["https://tec.openplanner.team/stops/N123aab", "https://tec.openplanner.team/stops/N150aca"], ["https://tec.openplanner.team/stops/X639amb", "https://tec.openplanner.team/stops/X639aob"], ["https://tec.openplanner.team/stops/Lpegole4", "https://tec.openplanner.team/stops/LWecorn1"], ["https://tec.openplanner.team/stops/X601dea", "https://tec.openplanner.team/stops/X601dfa"], ["https://tec.openplanner.team/stops/Cchccom2", "https://tec.openplanner.team/stops/Cmtpaix2"], ["https://tec.openplanner.team/stops/N505aeb", "https://tec.openplanner.team/stops/N505aoa"], ["https://tec.openplanner.team/stops/Lhrcols1", "https://tec.openplanner.team/stops/Lhrvert1"], ["https://tec.openplanner.team/stops/LAwec--2", "https://tec.openplanner.team/stops/LHrchat1"], ["https://tec.openplanner.team/stops/Cciecol1", "https://tec.openplanner.team/stops/Ccinali2"], ["https://tec.openplanner.team/stops/LAYambl1", "https://tec.openplanner.team/stops/LAYgare1"], ["https://tec.openplanner.team/stops/LLTcoop1", "https://tec.openplanner.team/stops/LLTtour2"], ["https://tec.openplanner.team/stops/H4ch118a", "https://tec.openplanner.team/stops/H4ch120d"], ["https://tec.openplanner.team/stops/LSPmart1", "https://tec.openplanner.team/stops/LWMchpl2"], ["https://tec.openplanner.team/stops/LBpcren2", "https://tec.openplanner.team/stops/LBpecco3"], ["https://tec.openplanner.team/stops/X358aca", "https://tec.openplanner.team/stops/X991aaa"], ["https://tec.openplanner.team/stops/H4ty322b", "https://tec.openplanner.team/stops/H4ty322d"], ["https://tec.openplanner.team/stops/X750ata", "https://tec.openplanner.team/stops/X750aub"], ["https://tec.openplanner.team/stops/LWecarr1", "https://tec.openplanner.team/stops/LWelogi2"], ["https://tec.openplanner.team/stops/X991afa", "https://tec.openplanner.team/stops/X991ala"], ["https://tec.openplanner.team/stops/Cjubien2", "https://tec.openplanner.team/stops/Cjuspin2"], ["https://tec.openplanner.team/stops/N503ada", "https://tec.openplanner.team/stops/N503alb"], ["https://tec.openplanner.team/stops/LJAchat1", "https://tec.openplanner.team/stops/LJAwerf1"], ["https://tec.openplanner.team/stops/X948agb", "https://tec.openplanner.team/stops/X948aha"], ["https://tec.openplanner.team/stops/X818aga", "https://tec.openplanner.team/stops/X820acb"], ["https://tec.openplanner.team/stops/LeUkabe2", "https://tec.openplanner.team/stops/LeUrote2"], ["https://tec.openplanner.team/stops/H1ch100a", "https://tec.openplanner.team/stops/H1ch100b"], ["https://tec.openplanner.team/stops/N533aia", "https://tec.openplanner.team/stops/N533aib"], ["https://tec.openplanner.team/stops/H4co146a", "https://tec.openplanner.team/stops/H4co158a"], ["https://tec.openplanner.team/stops/LWDsott1", "https://tec.openplanner.team/stops/LWDsott4"], ["https://tec.openplanner.team/stops/N517ada", "https://tec.openplanner.team/stops/N517aeb"], ["https://tec.openplanner.team/stops/N501gab", "https://tec.openplanner.team/stops/N501zaa"], ["https://tec.openplanner.team/stops/N557acb", "https://tec.openplanner.team/stops/N558ajb"], ["https://tec.openplanner.team/stops/LSIespe2", "https://tec.openplanner.team/stops/LSIgehe1"], ["https://tec.openplanner.team/stops/Cjudewe1", "https://tec.openplanner.team/stops/Cjuecho2"], ["https://tec.openplanner.team/stops/X657aga", "https://tec.openplanner.team/stops/X657ahb"], ["https://tec.openplanner.team/stops/Ccpsecp1", "https://tec.openplanner.team/stops/H2ch121b"], ["https://tec.openplanner.team/stops/X575agb", "https://tec.openplanner.team/stops/X575ahb"], ["https://tec.openplanner.team/stops/H1bb113b", "https://tec.openplanner.team/stops/H1ho123b"], ["https://tec.openplanner.team/stops/Crspana1", "https://tec.openplanner.team/stops/Crspana3"], ["https://tec.openplanner.team/stops/LmR90--1", "https://tec.openplanner.team/stops/LsHfrie1"], ["https://tec.openplanner.team/stops/X659aca", "https://tec.openplanner.team/stops/X659ada"], ["https://tec.openplanner.team/stops/Bjodcdt1", "https://tec.openplanner.team/stops/NR10aca"], ["https://tec.openplanner.team/stops/N244aja", "https://tec.openplanner.team/stops/N244ajb"], ["https://tec.openplanner.team/stops/Llgbavr1", "https://tec.openplanner.team/stops/Llgcmes1"], ["https://tec.openplanner.team/stops/Bgemfbo2", "https://tec.openplanner.team/stops/Bgemrom4"], ["https://tec.openplanner.team/stops/N515apb", "https://tec.openplanner.team/stops/N515aqd"], ["https://tec.openplanner.team/stops/Ccypetv1", "https://tec.openplanner.team/stops/Cvlcalv2"], ["https://tec.openplanner.team/stops/Bbwacol1", "https://tec.openplanner.team/stops/Bwavlon2"], ["https://tec.openplanner.team/stops/N104adb", "https://tec.openplanner.team/stops/N106agb"], ["https://tec.openplanner.team/stops/LBGroma1", "https://tec.openplanner.team/stops/LPUmang1"], ["https://tec.openplanner.team/stops/X897aoa", "https://tec.openplanner.team/stops/X897aob"], ["https://tec.openplanner.team/stops/X940acb", "https://tec.openplanner.team/stops/X940ada"], ["https://tec.openplanner.team/stops/Blimrof1", "https://tec.openplanner.team/stops/Brixbai2"], ["https://tec.openplanner.team/stops/N516aqa", "https://tec.openplanner.team/stops/N516aqb"], ["https://tec.openplanner.team/stops/H4bo116a", "https://tec.openplanner.team/stops/H4bo120a"], ["https://tec.openplanner.team/stops/Bvircen2", "https://tec.openplanner.team/stops/Bvirmav1"], ["https://tec.openplanner.team/stops/X892adb", "https://tec.openplanner.team/stops/X892aeb"], ["https://tec.openplanner.team/stops/N501dtc", "https://tec.openplanner.team/stops/N501jsb"], ["https://tec.openplanner.team/stops/H4he102b", "https://tec.openplanner.team/stops/H4pq118a"], ["https://tec.openplanner.team/stops/Lpeflec1", "https://tec.openplanner.team/stops/Lpefler1"], ["https://tec.openplanner.team/stops/N559acb", "https://tec.openplanner.team/stops/NL77aab"], ["https://tec.openplanner.team/stops/N106ara", "https://tec.openplanner.team/stops/N106arb"], ["https://tec.openplanner.team/stops/LHNcreh2", "https://tec.openplanner.team/stops/NL37aca"], ["https://tec.openplanner.team/stops/Btubcal2", "https://tec.openplanner.team/stops/Btubsam1"], ["https://tec.openplanner.team/stops/X750ara", "https://tec.openplanner.team/stops/X750aub"], ["https://tec.openplanner.team/stops/Cflhano1", "https://tec.openplanner.team/stops/NC23aab"], ["https://tec.openplanner.team/stops/H4cr110a", "https://tec.openplanner.team/stops/H4pp123a"], ["https://tec.openplanner.team/stops/LTPabat1", "https://tec.openplanner.team/stops/LTPabat2"], ["https://tec.openplanner.team/stops/LROhaie1", "https://tec.openplanner.team/stops/LROhaie2"], ["https://tec.openplanner.team/stops/LMAfali2", "https://tec.openplanner.team/stops/LMAroch4"], ["https://tec.openplanner.team/stops/H1fl139a", "https://tec.openplanner.team/stops/H1je221b"], ["https://tec.openplanner.team/stops/LmRmuhl1", "https://tec.openplanner.team/stops/LsHfrie1"], ["https://tec.openplanner.team/stops/LHgtomb1", "https://tec.openplanner.team/stops/LHgtomb2"], ["https://tec.openplanner.team/stops/H4ir163c", "https://tec.openplanner.team/stops/H5at129b"], ["https://tec.openplanner.team/stops/LTamoul2", "https://tec.openplanner.team/stops/LTaxhos2"], ["https://tec.openplanner.team/stops/X718ada", "https://tec.openplanner.team/stops/X718ajb"], ["https://tec.openplanner.team/stops/Bsaubbo2", "https://tec.openplanner.team/stops/Bwspm372"], ["https://tec.openplanner.team/stops/LPRmc--1", "https://tec.openplanner.team/stops/LPRmc--2"], ["https://tec.openplanner.team/stops/LTHturo1", "https://tec.openplanner.team/stops/LTHturo4"], ["https://tec.openplanner.team/stops/H1bi104a", "https://tec.openplanner.team/stops/H1sa113a"], ["https://tec.openplanner.team/stops/LPLaube1", "https://tec.openplanner.team/stops/LPLhest1"], ["https://tec.openplanner.team/stops/X736aab", "https://tec.openplanner.team/stops/X736agb"], ["https://tec.openplanner.team/stops/LMsalen1", "https://tec.openplanner.team/stops/LMsheid1"], ["https://tec.openplanner.team/stops/H1hv136a", "https://tec.openplanner.team/stops/H1mk109a"], ["https://tec.openplanner.team/stops/N501ihy", "https://tec.openplanner.team/stops/N501mkb"], ["https://tec.openplanner.team/stops/LFmgeno2", "https://tec.openplanner.team/stops/LMObouh2"], ["https://tec.openplanner.team/stops/H1eq117a", "https://tec.openplanner.team/stops/H1fy121a"], ["https://tec.openplanner.team/stops/H4ru236b", "https://tec.openplanner.team/stops/H4ru246a"], ["https://tec.openplanner.team/stops/H1at110c", "https://tec.openplanner.team/stops/H1fy142a"], ["https://tec.openplanner.team/stops/LCUmora1", "https://tec.openplanner.team/stops/LEnvill1"], ["https://tec.openplanner.team/stops/H4jm116b", "https://tec.openplanner.team/stops/H4we137a"], ["https://tec.openplanner.team/stops/LCEec--1", "https://tec.openplanner.team/stops/LCEec--2"], ["https://tec.openplanner.team/stops/Bblaece1", "https://tec.openplanner.team/stops/Bblapri2"], ["https://tec.openplanner.team/stops/LWAmouh2", "https://tec.openplanner.team/stops/LWAwila1"], ["https://tec.openplanner.team/stops/LHMa2322", "https://tec.openplanner.team/stops/LRmmabr1"], ["https://tec.openplanner.team/stops/Bbxltou1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/Barqhro2", "https://tec.openplanner.team/stops/Barqpwa2"], ["https://tec.openplanner.team/stops/H1ch132b", "https://tec.openplanner.team/stops/H4to133b"], ["https://tec.openplanner.team/stops/X982aba", "https://tec.openplanner.team/stops/X982abb"], ["https://tec.openplanner.team/stops/H2bh112a", "https://tec.openplanner.team/stops/H2ll194a"], ["https://tec.openplanner.team/stops/LrAberg2", "https://tec.openplanner.team/stops/LrApley2"], ["https://tec.openplanner.team/stops/X638aib", "https://tec.openplanner.team/stops/X638amb"], ["https://tec.openplanner.team/stops/X775ama", "https://tec.openplanner.team/stops/X775ana"], ["https://tec.openplanner.team/stops/N226aaa", "https://tec.openplanner.team/stops/N338aga"], ["https://tec.openplanner.team/stops/Chhverr1", "https://tec.openplanner.team/stops/Chhverr2"], ["https://tec.openplanner.team/stops/H2ha141b", "https://tec.openplanner.team/stops/H2ha141c"], ["https://tec.openplanner.team/stops/H1al106a", "https://tec.openplanner.team/stops/H1al107b"], ["https://tec.openplanner.team/stops/X397aac", "https://tec.openplanner.team/stops/X397abb"], ["https://tec.openplanner.team/stops/LDaeg--1", "https://tec.openplanner.team/stops/LLYtir-1"], ["https://tec.openplanner.team/stops/N573aia", "https://tec.openplanner.team/stops/N573ama"], ["https://tec.openplanner.team/stops/N501mya", "https://tec.openplanner.team/stops/N527acb"], ["https://tec.openplanner.team/stops/N551alb", "https://tec.openplanner.team/stops/N577aca"], ["https://tec.openplanner.team/stops/Bbsifml2", "https://tec.openplanner.team/stops/Bnivjli1"], ["https://tec.openplanner.team/stops/X811aqb", "https://tec.openplanner.team/stops/X812bga"], ["https://tec.openplanner.team/stops/Bllnfla3", "https://tec.openplanner.team/stops/Bllnrge2"], ["https://tec.openplanner.team/stops/H1as102b", "https://tec.openplanner.team/stops/H1hg180a"], ["https://tec.openplanner.team/stops/Cbzfrom2", "https://tec.openplanner.team/stops/H2lu100d"], ["https://tec.openplanner.team/stops/N153aaa", "https://tec.openplanner.team/stops/N153afa"], ["https://tec.openplanner.team/stops/X886abb", "https://tec.openplanner.team/stops/X886acb"], ["https://tec.openplanner.team/stops/LGogare2", "https://tec.openplanner.team/stops/LNEcite1"], ["https://tec.openplanner.team/stops/X615ada", "https://tec.openplanner.team/stops/X615aha"], ["https://tec.openplanner.team/stops/H4my122b", "https://tec.openplanner.team/stops/H4vz369b"], ["https://tec.openplanner.team/stops/Bvxgpro2", "https://tec.openplanner.team/stops/Cglbras1"], ["https://tec.openplanner.team/stops/X890acb", "https://tec.openplanner.team/stops/X890ada"], ["https://tec.openplanner.team/stops/N245aaa", "https://tec.openplanner.team/stops/N248acb"], ["https://tec.openplanner.team/stops/Lsekubo1", "https://tec.openplanner.team/stops/Lsekubo3"], ["https://tec.openplanner.team/stops/LmNelis2", "https://tec.openplanner.team/stops/LmNpost2"], ["https://tec.openplanner.team/stops/LVParal2", "https://tec.openplanner.team/stops/LVPeg--1"], ["https://tec.openplanner.team/stops/LHUathe1", "https://tec.openplanner.team/stops/LHUec--1"], ["https://tec.openplanner.team/stops/X652acd", "https://tec.openplanner.team/stops/X652ada"], ["https://tec.openplanner.team/stops/X756ahb", "https://tec.openplanner.team/stops/X756aia"], ["https://tec.openplanner.team/stops/Ltheg--2", "https://tec.openplanner.team/stops/Lthgros2"], ["https://tec.openplanner.team/stops/LHMbach1", "https://tec.openplanner.team/stops/LHMec--2"], ["https://tec.openplanner.team/stops/Blhugar1", "https://tec.openplanner.team/stops/Blhulor1"], ["https://tec.openplanner.team/stops/X782aaa", "https://tec.openplanner.team/stops/X782aab"], ["https://tec.openplanner.team/stops/Llgwiar2", "https://tec.openplanner.team/stops/Llgwiar4"], ["https://tec.openplanner.team/stops/LeUdepo1", "https://tec.openplanner.team/stops/LeUgb--1"], ["https://tec.openplanner.team/stops/Bwavcar1", "https://tec.openplanner.team/stops/Bwavlep1"], ["https://tec.openplanner.team/stops/Cbwcab1", "https://tec.openplanner.team/stops/Cmgcabi1"], ["https://tec.openplanner.team/stops/Bchapir2", "https://tec.openplanner.team/stops/Bhvltol2"], ["https://tec.openplanner.team/stops/LSTec--1", "https://tec.openplanner.team/stops/LSTgran1"], ["https://tec.openplanner.team/stops/LJAferm1", "https://tec.openplanner.team/stops/LJAferm2"], ["https://tec.openplanner.team/stops/Bbounci2", "https://tec.openplanner.team/stops/Bcercab1"], ["https://tec.openplanner.team/stops/Bbstdpa2", "https://tec.openplanner.team/stops/Bbststa2"], ["https://tec.openplanner.team/stops/N501hja", "https://tec.openplanner.team/stops/N501hla"], ["https://tec.openplanner.team/stops/X802afb", "https://tec.openplanner.team/stops/X818aia"], ["https://tec.openplanner.team/stops/H1be101a", "https://tec.openplanner.team/stops/H1be101b"], ["https://tec.openplanner.team/stops/X998aaa", "https://tec.openplanner.team/stops/X999ama"], ["https://tec.openplanner.team/stops/X943afb", "https://tec.openplanner.team/stops/X943aga"], ["https://tec.openplanner.team/stops/Lengran1", "https://tec.openplanner.team/stops/Lenhouc2"], ["https://tec.openplanner.team/stops/X622aab", "https://tec.openplanner.team/stops/X622aca"], ["https://tec.openplanner.team/stops/X777aca", "https://tec.openplanner.team/stops/X777acb"], ["https://tec.openplanner.team/stops/Lmapomm1", "https://tec.openplanner.team/stops/Lmapomm2"], ["https://tec.openplanner.team/stops/Cmlbevu2", "https://tec.openplanner.team/stops/Cmlvitf1"], ["https://tec.openplanner.team/stops/Bronfou1", "https://tec.openplanner.team/stops/Bvirflu1"], ["https://tec.openplanner.team/stops/N503aka", "https://tec.openplanner.team/stops/N511afa"], ["https://tec.openplanner.team/stops/Cmmheur1", "https://tec.openplanner.team/stops/Cmygbbo3"], ["https://tec.openplanner.team/stops/LREairp1", "https://tec.openplanner.team/stops/LREgare1"], ["https://tec.openplanner.team/stops/LkTdorf1", "https://tec.openplanner.team/stops/LkTlibe1"], ["https://tec.openplanner.team/stops/H2gy105a", "https://tec.openplanner.team/stops/H2gy107a"], ["https://tec.openplanner.team/stops/X908aka", "https://tec.openplanner.team/stops/X911ara"], ["https://tec.openplanner.team/stops/H1ms252c", "https://tec.openplanner.team/stops/H1ms252d"], ["https://tec.openplanner.team/stops/Bboncfv1", "https://tec.openplanner.team/stops/Bboncgs1"], ["https://tec.openplanner.team/stops/H4wp152a", "https://tec.openplanner.team/stops/H4wp152b"], ["https://tec.openplanner.team/stops/LrUbrac3", "https://tec.openplanner.team/stops/LrUbrac4"], ["https://tec.openplanner.team/stops/X759adb", "https://tec.openplanner.team/stops/X759aea"], ["https://tec.openplanner.team/stops/N232bfb", "https://tec.openplanner.team/stops/N232bwb"], ["https://tec.openplanner.team/stops/N390aca", "https://tec.openplanner.team/stops/X390akb"], ["https://tec.openplanner.team/stops/LFAbouc2", "https://tec.openplanner.team/stops/LLTfall1"], ["https://tec.openplanner.team/stops/LAMhopi1", "https://tec.openplanner.team/stops/LAMhopi3"], ["https://tec.openplanner.team/stops/H4ve133b", "https://tec.openplanner.team/stops/H4ve137b"], ["https://tec.openplanner.team/stops/H1le119a", "https://tec.openplanner.team/stops/H1le125b"], ["https://tec.openplanner.team/stops/X937ajb", "https://tec.openplanner.team/stops/X952adb"], ["https://tec.openplanner.team/stops/LWRbomb4", "https://tec.openplanner.team/stops/LWRgare2"], ["https://tec.openplanner.team/stops/X789aca", "https://tec.openplanner.team/stops/X789afa"], ["https://tec.openplanner.team/stops/Lpecime2", "https://tec.openplanner.team/stops/Lpemata2"], ["https://tec.openplanner.team/stops/H1fl139b", "https://tec.openplanner.team/stops/H1fl370a"], ["https://tec.openplanner.team/stops/H1mv243a", "https://tec.openplanner.team/stops/H1mv243b"], ["https://tec.openplanner.team/stops/X639akb", "https://tec.openplanner.team/stops/X639akd"], ["https://tec.openplanner.team/stops/Lghvold1", "https://tec.openplanner.team/stops/Ljerouy2"], ["https://tec.openplanner.team/stops/Ccugrtr1", "https://tec.openplanner.team/stops/Ccutail2"], ["https://tec.openplanner.team/stops/X773aib", "https://tec.openplanner.team/stops/X954acb"], ["https://tec.openplanner.team/stops/X730aeb", "https://tec.openplanner.team/stops/X730afa"], ["https://tec.openplanner.team/stops/X774acb", "https://tec.openplanner.team/stops/X775aaa"], ["https://tec.openplanner.team/stops/Bgzdcen1", "https://tec.openplanner.team/stops/Bgzdcen2"], ["https://tec.openplanner.team/stops/Bcrncce2", "https://tec.openplanner.team/stops/Bsomjon2"], ["https://tec.openplanner.team/stops/Lagfour1", "https://tec.openplanner.team/stops/Llgcond1"], ["https://tec.openplanner.team/stops/LNAbass2", "https://tec.openplanner.team/stops/LRRoser2"], ["https://tec.openplanner.team/stops/H5pe137a", "https://tec.openplanner.team/stops/H5pe175a"], ["https://tec.openplanner.team/stops/X872abb", "https://tec.openplanner.team/stops/X872acb"], ["https://tec.openplanner.team/stops/H2mo146a", "https://tec.openplanner.team/stops/H2mo146b"], ["https://tec.openplanner.team/stops/LsVbs--*", "https://tec.openplanner.team/stops/LsVgesc2"], ["https://tec.openplanner.team/stops/LVLf37-1", "https://tec.openplanner.team/stops/LVLgotr3"], ["https://tec.openplanner.team/stops/H2hg149b", "https://tec.openplanner.team/stops/H2mi122a"], ["https://tec.openplanner.team/stops/X731aea", "https://tec.openplanner.team/stops/X731aeb"], ["https://tec.openplanner.team/stops/LWeatel2", "https://tec.openplanner.team/stops/LWeec--2"], ["https://tec.openplanner.team/stops/H2ll173a", "https://tec.openplanner.team/stops/H2ll173b"], ["https://tec.openplanner.team/stops/N508aoa", "https://tec.openplanner.team/stops/N508aob"], ["https://tec.openplanner.team/stops/Cgobruy1", "https://tec.openplanner.team/stops/Cgobruy2"], ["https://tec.openplanner.team/stops/LBOec--1", "https://tec.openplanner.team/stops/LBOholt2"], ["https://tec.openplanner.team/stops/X901baa", "https://tec.openplanner.team/stops/X901bca"], ["https://tec.openplanner.team/stops/X723aaa", "https://tec.openplanner.team/stops/X724afb"], ["https://tec.openplanner.team/stops/LeUbael2", "https://tec.openplanner.team/stops/LeUgeme2"], ["https://tec.openplanner.team/stops/H1wa154b", "https://tec.openplanner.team/stops/H1wg124a"], ["https://tec.openplanner.team/stops/H1fr124a", "https://tec.openplanner.team/stops/H1fr127a"], ["https://tec.openplanner.team/stops/H4ka195a", "https://tec.openplanner.team/stops/H4ob124a"], ["https://tec.openplanner.team/stops/X669agd", "https://tec.openplanner.team/stops/X669ahb"], ["https://tec.openplanner.team/stops/Cptplac3", "https://tec.openplanner.team/stops/Cptplac5"], ["https://tec.openplanner.team/stops/Lagindu1", "https://tec.openplanner.team/stops/Lstchas2"], ["https://tec.openplanner.team/stops/Baegegl1", "https://tec.openplanner.team/stops/Bramrdf2"], ["https://tec.openplanner.team/stops/H4va232b", "https://tec.openplanner.team/stops/H4va234a"], ["https://tec.openplanner.team/stops/H1hh112b", "https://tec.openplanner.team/stops/H1hh118b"], ["https://tec.openplanner.team/stops/X614aia", "https://tec.openplanner.team/stops/X623aha"], ["https://tec.openplanner.team/stops/X741aid", "https://tec.openplanner.team/stops/X741ajc"], ["https://tec.openplanner.team/stops/X727aea", "https://tec.openplanner.team/stops/X748aea"], ["https://tec.openplanner.team/stops/LAnfall1", "https://tec.openplanner.team/stops/LHdfays2"], ["https://tec.openplanner.team/stops/Ccucorb1", "https://tec.openplanner.team/stops/Cgyruis1"], ["https://tec.openplanner.team/stops/X658ada", "https://tec.openplanner.team/stops/X659ala"], ["https://tec.openplanner.team/stops/Cgoobse1", "https://tec.openplanner.team/stops/Cjucar02"], ["https://tec.openplanner.team/stops/Cfanoci1", "https://tec.openplanner.team/stops/Cfanoci2"], ["https://tec.openplanner.team/stops/Cmgpthi1", "https://tec.openplanner.team/stops/Csecroi2"], ["https://tec.openplanner.team/stops/Bmlngch2", "https://tec.openplanner.team/stops/Bsrgcur1"], ["https://tec.openplanner.team/stops/Cctstro1", "https://tec.openplanner.team/stops/Cctstro3"], ["https://tec.openplanner.team/stops/Cramadi2", "https://tec.openplanner.team/stops/Cravign3"], ["https://tec.openplanner.team/stops/Cgrbert2", "https://tec.openplanner.team/stops/NC14agb"], ["https://tec.openplanner.team/stops/N209anb", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/Bgrmfga1", "https://tec.openplanner.team/stops/Bgrmpsn1"], ["https://tec.openplanner.team/stops/Cbcha652", "https://tec.openplanner.team/stops/H1lo119a"], ["https://tec.openplanner.team/stops/Cgyobse1", "https://tec.openplanner.team/stops/Cgystjo3"], ["https://tec.openplanner.team/stops/Lsebelv2", "https://tec.openplanner.team/stops/Lsehcoc1"], ["https://tec.openplanner.team/stops/LXhhaka2", "https://tec.openplanner.team/stops/LXhnouv1"], ["https://tec.openplanner.team/stops/H5pe134a", "https://tec.openplanner.team/stops/H5pe152b"], ["https://tec.openplanner.team/stops/N550aca", "https://tec.openplanner.team/stops/N550acb"], ["https://tec.openplanner.team/stops/LrAknop1", "https://tec.openplanner.team/stops/LrAneus3"], ["https://tec.openplanner.team/stops/N203aba", "https://tec.openplanner.team/stops/N203aca"], ["https://tec.openplanner.team/stops/LAmcorn1", "https://tec.openplanner.team/stops/LAmcorn2"], ["https://tec.openplanner.team/stops/Ljubods1", "https://tec.openplanner.team/stops/Ljuchaf2"], ["https://tec.openplanner.team/stops/Ljemake2", "https://tec.openplanner.team/stops/Ljerouy1"], ["https://tec.openplanner.team/stops/X802acb", "https://tec.openplanner.team/stops/X802apb"], ["https://tec.openplanner.team/stops/N537aca", "https://tec.openplanner.team/stops/N537acb"], ["https://tec.openplanner.team/stops/H1qu105a", "https://tec.openplanner.team/stops/H1qu105b"], ["https://tec.openplanner.team/stops/N538ata", "https://tec.openplanner.team/stops/N538atd"], ["https://tec.openplanner.team/stops/X902axa", "https://tec.openplanner.team/stops/X902baa"], ["https://tec.openplanner.team/stops/X661abb", "https://tec.openplanner.team/stops/X661aoa"], ["https://tec.openplanner.team/stops/N501avb", "https://tec.openplanner.team/stops/N501awb"], ["https://tec.openplanner.team/stops/Lghsimo1", "https://tec.openplanner.team/stops/Lghsimo2"], ["https://tec.openplanner.team/stops/H5qu149b", "https://tec.openplanner.team/stops/H5qu156d"], ["https://tec.openplanner.team/stops/N110aha", "https://tec.openplanner.team/stops/N125aac"], ["https://tec.openplanner.team/stops/X908aab", "https://tec.openplanner.team/stops/X955aca"], ["https://tec.openplanner.team/stops/LBVclig1", "https://tec.openplanner.team/stops/LBVzand4"], ["https://tec.openplanner.team/stops/N501gib", "https://tec.openplanner.team/stops/N501giz"], ["https://tec.openplanner.team/stops/LSSfont1", "https://tec.openplanner.team/stops/LSSfont2"], ["https://tec.openplanner.team/stops/Cctfaub1", "https://tec.openplanner.team/stops/Cctjoue4"], ["https://tec.openplanner.team/stops/Lghcoqs1", "https://tec.openplanner.team/stops/Lghprea2"], ["https://tec.openplanner.team/stops/LROcham1", "https://tec.openplanner.team/stops/LROmorf2"], ["https://tec.openplanner.team/stops/NH01aod", "https://tec.openplanner.team/stops/NH01ara"], ["https://tec.openplanner.team/stops/H1ne138b", "https://tec.openplanner.team/stops/H1ne142a"], ["https://tec.openplanner.team/stops/X994aia", "https://tec.openplanner.team/stops/X994aja"], ["https://tec.openplanner.team/stops/LaMadam1", "https://tec.openplanner.team/stops/LmI82--2"], ["https://tec.openplanner.team/stops/N506ara", "https://tec.openplanner.team/stops/N506ava"], ["https://tec.openplanner.team/stops/N501kmb", "https://tec.openplanner.team/stops/N501kmy"], ["https://tec.openplanner.team/stops/N556aeb", "https://tec.openplanner.team/stops/N557adb"], ["https://tec.openplanner.team/stops/Cgymara1", "https://tec.openplanner.team/stops/CMmarab1"], ["https://tec.openplanner.team/stops/X760aca", "https://tec.openplanner.team/stops/X788aeb"], ["https://tec.openplanner.team/stops/Cgysarr2", "https://tec.openplanner.team/stops/Craappa1"], ["https://tec.openplanner.team/stops/H1ms269a", "https://tec.openplanner.team/stops/H1ms275a"], ["https://tec.openplanner.team/stops/Lghgros1", "https://tec.openplanner.team/stops/Lghmaha2"], ["https://tec.openplanner.team/stops/X661aqa", "https://tec.openplanner.team/stops/X661aqb"], ["https://tec.openplanner.team/stops/Bwavbpi1", "https://tec.openplanner.team/stops/Bwavbpi2"], ["https://tec.openplanner.team/stops/Bwatcoc1", "https://tec.openplanner.team/stops/Bwatmsj2"], ["https://tec.openplanner.team/stops/X718aca", "https://tec.openplanner.team/stops/X718ada"], ["https://tec.openplanner.team/stops/H2le149a", "https://tec.openplanner.team/stops/H2le149b"], ["https://tec.openplanner.team/stops/H4de112b", "https://tec.openplanner.team/stops/H4ss156b"], ["https://tec.openplanner.team/stops/Cchmont2", "https://tec.openplanner.team/stops/Cchpala2"], ["https://tec.openplanner.team/stops/LSpfond2", "https://tec.openplanner.team/stops/LSpshin2"], ["https://tec.openplanner.team/stops/LLbbons2", "https://tec.openplanner.team/stops/LPtchpl2"], ["https://tec.openplanner.team/stops/LOucuve1", "https://tec.openplanner.team/stops/LOumaro2"], ["https://tec.openplanner.team/stops/LSXvill1", "https://tec.openplanner.team/stops/LTHroch1"], ["https://tec.openplanner.team/stops/X744aba", "https://tec.openplanner.team/stops/X744acb"], ["https://tec.openplanner.team/stops/X948anb", "https://tec.openplanner.team/stops/X948aob"], ["https://tec.openplanner.team/stops/Bwavbmo2", "https://tec.openplanner.team/stops/Bwavnam1"], ["https://tec.openplanner.team/stops/Ltibure1", "https://tec.openplanner.team/stops/Ltibure4"], ["https://tec.openplanner.team/stops/LLEgare1", "https://tec.openplanner.team/stops/LSMgare1"], ["https://tec.openplanner.team/stops/LPUalbe2", "https://tec.openplanner.team/stops/LPUmer-1"], ["https://tec.openplanner.team/stops/N576aca", "https://tec.openplanner.team/stops/N576aea"], ["https://tec.openplanner.team/stops/LCPconf1", "https://tec.openplanner.team/stops/LMttrou2"], ["https://tec.openplanner.team/stops/LRccent2", "https://tec.openplanner.team/stops/LRchaie2"], ["https://tec.openplanner.team/stops/H4pe126b", "https://tec.openplanner.team/stops/H4pe128b"], ["https://tec.openplanner.team/stops/Lgrfass2", "https://tec.openplanner.team/stops/Lgrtomb2"], ["https://tec.openplanner.team/stops/H1hr126a", "https://tec.openplanner.team/stops/H1hr127a"], ["https://tec.openplanner.team/stops/X614adb", "https://tec.openplanner.team/stops/X614azb"], ["https://tec.openplanner.team/stops/Cchdelf1", "https://tec.openplanner.team/stops/Cchdelf2"], ["https://tec.openplanner.team/stops/Bwatgge1", "https://tec.openplanner.team/stops/Bwatric2"], ["https://tec.openplanner.team/stops/LOccarr3", "https://tec.openplanner.team/stops/LTecent4"], ["https://tec.openplanner.team/stops/LiV19--1", "https://tec.openplanner.team/stops/LiVkreu1"], ["https://tec.openplanner.team/stops/H1he109a", "https://tec.openplanner.team/stops/H1he109b"], ["https://tec.openplanner.team/stops/Cselait1", "https://tec.openplanner.team/stops/Cvtmaro2"], ["https://tec.openplanner.team/stops/LAOeg--1", "https://tec.openplanner.team/stops/LAOeg--2"], ["https://tec.openplanner.team/stops/N503ala", "https://tec.openplanner.team/stops/N503alb"], ["https://tec.openplanner.team/stops/X942aba", "https://tec.openplanner.team/stops/X942abd"], ["https://tec.openplanner.team/stops/H1og131a", "https://tec.openplanner.team/stops/H1og131b"], ["https://tec.openplanner.team/stops/Bgoegma2", "https://tec.openplanner.team/stops/Boplcsj3"], ["https://tec.openplanner.team/stops/Bezebru2", "https://tec.openplanner.team/stops/Bezeksj1"], ["https://tec.openplanner.team/stops/H2hg150a", "https://tec.openplanner.team/stops/H3lr108a"], ["https://tec.openplanner.team/stops/NH01aaa", "https://tec.openplanner.team/stops/NH01ajb"], ["https://tec.openplanner.team/stops/X666ahb", "https://tec.openplanner.team/stops/X666aib"], ["https://tec.openplanner.team/stops/X654aja", "https://tec.openplanner.team/stops/X654alb"], ["https://tec.openplanner.team/stops/N287aba", "https://tec.openplanner.team/stops/N287abb"], ["https://tec.openplanner.team/stops/N349abb", "https://tec.openplanner.team/stops/N349agb"], ["https://tec.openplanner.team/stops/X824afb", "https://tec.openplanner.team/stops/X824ahb"], ["https://tec.openplanner.team/stops/N577aja", "https://tec.openplanner.team/stops/N577akb"], ["https://tec.openplanner.team/stops/LPLheid1", "https://tec.openplanner.team/stops/LPLphar1"], ["https://tec.openplanner.team/stops/Cfovent2", "https://tec.openplanner.team/stops/Cfowall1"], ["https://tec.openplanner.team/stops/Cmyjaci2", "https://tec.openplanner.team/stops/Cmymarb2"], ["https://tec.openplanner.team/stops/LSSvill1", "https://tec.openplanner.team/stops/LSSvill4"], ["https://tec.openplanner.team/stops/N501nbb", "https://tec.openplanner.team/stops/N501nca"], ["https://tec.openplanner.team/stops/N535ada", "https://tec.openplanner.team/stops/N535amb"], ["https://tec.openplanner.team/stops/LATcorn2", "https://tec.openplanner.team/stops/LATmals2"], ["https://tec.openplanner.team/stops/X902aja", "https://tec.openplanner.team/stops/X902ajb"], ["https://tec.openplanner.team/stops/H2hp118b", "https://tec.openplanner.team/stops/H2hp121a"], ["https://tec.openplanner.team/stops/LBStec-2", "https://tec.openplanner.team/stops/LBSvi521"], ["https://tec.openplanner.team/stops/Ctmmath2", "https://tec.openplanner.team/stops/Ctmmonu1"], ["https://tec.openplanner.team/stops/X601cda", "https://tec.openplanner.team/stops/X601cdb"], ["https://tec.openplanner.team/stops/LGorysa2", "https://tec.openplanner.team/stops/LNEbois1"], ["https://tec.openplanner.team/stops/N548aka", "https://tec.openplanner.team/stops/N548akb"], ["https://tec.openplanner.team/stops/LaAmise1", "https://tec.openplanner.team/stops/LaAseba1"], ["https://tec.openplanner.team/stops/LHuherm1", "https://tec.openplanner.team/stops/LHuherm2"], ["https://tec.openplanner.team/stops/LArchap1", "https://tec.openplanner.team/stops/LArmeni1"], ["https://tec.openplanner.team/stops/H5st168a", "https://tec.openplanner.team/stops/H5st168b"], ["https://tec.openplanner.team/stops/Cmerued1", "https://tec.openplanner.team/stops/Cmewaya2"], ["https://tec.openplanner.team/stops/LBJlieg2", "https://tec.openplanner.team/stops/LMAcite2"], ["https://tec.openplanner.team/stops/Bitrmon1", "https://tec.openplanner.team/stops/Bitrmon2"], ["https://tec.openplanner.team/stops/LSseg--2", "https://tec.openplanner.team/stops/N506bsb"], ["https://tec.openplanner.team/stops/N116aca", "https://tec.openplanner.team/stops/N116acb"], ["https://tec.openplanner.team/stops/Clfmonu2", "https://tec.openplanner.team/stops/Clfmonu3"], ["https://tec.openplanner.team/stops/H4bc106a", "https://tec.openplanner.team/stops/H4bc106b"], ["https://tec.openplanner.team/stops/X664aqa", "https://tec.openplanner.team/stops/X664aqb"], ["https://tec.openplanner.team/stops/N501eba", "https://tec.openplanner.team/stops/N501ebb"], ["https://tec.openplanner.team/stops/X601cka", "https://tec.openplanner.team/stops/X601cla"], ["https://tec.openplanner.team/stops/Llgrass1", "https://tec.openplanner.team/stops/Llgrass2"], ["https://tec.openplanner.team/stops/Bwatdmo1", "https://tec.openplanner.team/stops/Bwatlbs2"], ["https://tec.openplanner.team/stops/N224aba", "https://tec.openplanner.team/stops/N224agc"], ["https://tec.openplanner.team/stops/H4hn115a", "https://tec.openplanner.team/stops/H4lp122a"], ["https://tec.openplanner.team/stops/Cvlbvir2", "https://tec.openplanner.team/stops/Cvlpeau2"], ["https://tec.openplanner.team/stops/Csabrun1", "https://tec.openplanner.team/stops/Cvpbifu1"], ["https://tec.openplanner.team/stops/H4ml208b", "https://tec.openplanner.team/stops/H4tg262a"], ["https://tec.openplanner.team/stops/H4an107b", "https://tec.openplanner.team/stops/H4ve140a"], ["https://tec.openplanner.team/stops/H1gr120a", "https://tec.openplanner.team/stops/H1gr120b"], ["https://tec.openplanner.team/stops/LAWchpl1", "https://tec.openplanner.team/stops/LFOchpl2"], ["https://tec.openplanner.team/stops/X805aea", "https://tec.openplanner.team/stops/X805ahb"], ["https://tec.openplanner.team/stops/LNCspor2", "https://tec.openplanner.team/stops/LRRchen2"], ["https://tec.openplanner.team/stops/N244aab", "https://tec.openplanner.team/stops/N244awa"], ["https://tec.openplanner.team/stops/X941acb", "https://tec.openplanner.team/stops/X941acd"], ["https://tec.openplanner.team/stops/LHmferm1", "https://tec.openplanner.team/stops/LLocruc1"], ["https://tec.openplanner.team/stops/LVAwolf1", "https://tec.openplanner.team/stops/LVAwolf2"], ["https://tec.openplanner.team/stops/H1hc125b", "https://tec.openplanner.team/stops/H1po137a"], ["https://tec.openplanner.team/stops/N874aca", "https://tec.openplanner.team/stops/N874aeb"], ["https://tec.openplanner.team/stops/LSZchpl1", "https://tec.openplanner.team/stops/LSZptwa1"], ["https://tec.openplanner.team/stops/X602aea", "https://tec.openplanner.team/stops/X602aga"], ["https://tec.openplanner.team/stops/Cacgare2", "https://tec.openplanner.team/stops/NC44aaa"], ["https://tec.openplanner.team/stops/Cmqbasv2", "https://tec.openplanner.team/stops/Cmqn5912"], ["https://tec.openplanner.team/stops/H4ty314d", "https://tec.openplanner.team/stops/H4ty354a"], ["https://tec.openplanner.team/stops/N501nea", "https://tec.openplanner.team/stops/N501nez"], ["https://tec.openplanner.team/stops/Benggar1", "https://tec.openplanner.team/stops/Bptemch1"], ["https://tec.openplanner.team/stops/Ctapn1", "https://tec.openplanner.team/stops/Ctapn2"], ["https://tec.openplanner.team/stops/Lpegole1", "https://tec.openplanner.team/stops/LWecorn1"], ["https://tec.openplanner.team/stops/N501cna", "https://tec.openplanner.team/stops/N501eob"], ["https://tec.openplanner.team/stops/X659awb", "https://tec.openplanner.team/stops/X659bab"], ["https://tec.openplanner.team/stops/NL77ada", "https://tec.openplanner.team/stops/NL77adb"], ["https://tec.openplanner.team/stops/Cgyaudu2", "https://tec.openplanner.team/stops/Cgystjo4"], ["https://tec.openplanner.team/stops/Lagrask1", "https://tec.openplanner.team/stops/Lemjoba2"], ["https://tec.openplanner.team/stops/N562aka", "https://tec.openplanner.team/stops/N562asa"], ["https://tec.openplanner.team/stops/LBOande2", "https://tec.openplanner.team/stops/LBWfusi1"], ["https://tec.openplanner.team/stops/H4ty282b", "https://tec.openplanner.team/stops/H4ty338a"], ["https://tec.openplanner.team/stops/Balsnay1", "https://tec.openplanner.team/stops/Balsnay2"], ["https://tec.openplanner.team/stops/H1bu143b", "https://tec.openplanner.team/stops/H1mg109b"], ["https://tec.openplanner.team/stops/H2sb221a", "https://tec.openplanner.team/stops/H2sb223a"], ["https://tec.openplanner.team/stops/Ccogrha2", "https://tec.openplanner.team/stops/Ccotrie2"], ["https://tec.openplanner.team/stops/LHgeg--2", "https://tec.openplanner.team/stops/LOMdodi2"], ["https://tec.openplanner.team/stops/LBEssab1", "https://tec.openplanner.team/stops/LBEssab2"], ["https://tec.openplanner.team/stops/Cmlhaie2", "https://tec.openplanner.team/stops/Cmlvxmo2"], ["https://tec.openplanner.team/stops/H1cr100a", "https://tec.openplanner.team/stops/H1hl127b"], ["https://tec.openplanner.team/stops/N521adb", "https://tec.openplanner.team/stops/N521afb"], ["https://tec.openplanner.team/stops/H4mo137b", "https://tec.openplanner.team/stops/H4mo187a"], ["https://tec.openplanner.team/stops/X714adb", "https://tec.openplanner.team/stops/X715ajb"], ["https://tec.openplanner.team/stops/N501lxa", "https://tec.openplanner.team/stops/N501mjc"], ["https://tec.openplanner.team/stops/H1as100a", "https://tec.openplanner.team/stops/H1hg178a"], ["https://tec.openplanner.team/stops/Bgembsg2", "https://tec.openplanner.team/stops/N522bvg"], ["https://tec.openplanner.team/stops/LHEvign2", "https://tec.openplanner.team/stops/LJOferm1"], ["https://tec.openplanner.team/stops/NL76aea", "https://tec.openplanner.team/stops/NL76ara"], ["https://tec.openplanner.team/stops/X949afa", "https://tec.openplanner.team/stops/X949agb"], ["https://tec.openplanner.team/stops/N517adb", "https://tec.openplanner.team/stops/N517agb"], ["https://tec.openplanner.team/stops/X721aha", "https://tec.openplanner.team/stops/X721ajb"], ["https://tec.openplanner.team/stops/N106ada", "https://tec.openplanner.team/stops/N106aqa"], ["https://tec.openplanner.team/stops/Lbrlama2", "https://tec.openplanner.team/stops/Lgrcour2"], ["https://tec.openplanner.team/stops/H5at142a", "https://tec.openplanner.team/stops/H5at142b"], ["https://tec.openplanner.team/stops/N149aaa", "https://tec.openplanner.team/stops/N149aib"], ["https://tec.openplanner.team/stops/Cchorle1", "https://tec.openplanner.team/stops/Cchrmon4"], ["https://tec.openplanner.team/stops/X802aka", "https://tec.openplanner.team/stops/X802aoa"], ["https://tec.openplanner.team/stops/LPOleli1", "https://tec.openplanner.team/stops/LPOpass2"], ["https://tec.openplanner.team/stops/LBDtill1", "https://tec.openplanner.team/stops/LJEniho1"], ["https://tec.openplanner.team/stops/Cmlange2", "https://tec.openplanner.team/stops/Cmldeto2"], ["https://tec.openplanner.team/stops/X939aba", "https://tec.openplanner.team/stops/X939aca"], ["https://tec.openplanner.team/stops/N228aba", "https://tec.openplanner.team/stops/N228aca"], ["https://tec.openplanner.team/stops/LROandr1", "https://tec.openplanner.team/stops/LSoeg--1"], ["https://tec.openplanner.team/stops/X717aga", "https://tec.openplanner.team/stops/X717agf"], ["https://tec.openplanner.team/stops/Bptbbie1", "https://tec.openplanner.team/stops/Bptbmco2"], ["https://tec.openplanner.team/stops/X762aea", "https://tec.openplanner.team/stops/X762afb"], ["https://tec.openplanner.team/stops/Llglefe1", "https://tec.openplanner.team/stops/Llgpire2"], ["https://tec.openplanner.team/stops/Cbmzoni1", "https://tec.openplanner.team/stops/H1tt106a"], ["https://tec.openplanner.team/stops/N357abb", "https://tec.openplanner.team/stops/N383aaa"], ["https://tec.openplanner.team/stops/LBVcent1", "https://tec.openplanner.team/stops/LBVplan1"], ["https://tec.openplanner.team/stops/X901acb", "https://tec.openplanner.team/stops/X901aha"], ["https://tec.openplanner.team/stops/Llgbruy2", "https://tec.openplanner.team/stops/Llgmont2"], ["https://tec.openplanner.team/stops/Canresi2", "https://tec.openplanner.team/stops/H2an104a"], ["https://tec.openplanner.team/stops/X713aaa", "https://tec.openplanner.team/stops/X713aca"], ["https://tec.openplanner.team/stops/Lfhchaf1", "https://tec.openplanner.team/stops/Lfhchaf4"], ["https://tec.openplanner.team/stops/Bbsgbos1", "https://tec.openplanner.team/stops/Bbsgbos3"], ["https://tec.openplanner.team/stops/X796aab", "https://tec.openplanner.team/stops/X986acb"], ["https://tec.openplanner.team/stops/Cgzfarc1", "https://tec.openplanner.team/stops/Cgzha622"], ["https://tec.openplanner.team/stops/N135bfa", "https://tec.openplanner.team/stops/N135bhb"], ["https://tec.openplanner.team/stops/LOcalbe2", "https://tec.openplanner.team/stops/LTechpl2"], ["https://tec.openplanner.team/stops/X921ahb", "https://tec.openplanner.team/stops/X921ajb"], ["https://tec.openplanner.team/stops/LFPkape2", "https://tec.openplanner.team/stops/LFPkape4"], ["https://tec.openplanner.team/stops/X999aba", "https://tec.openplanner.team/stops/X999ada"], ["https://tec.openplanner.team/stops/Bvxgeta1", "https://tec.openplanner.team/stops/Cglbras1"], ["https://tec.openplanner.team/stops/X614ada", "https://tec.openplanner.team/stops/X614adb"], ["https://tec.openplanner.team/stops/Bmoufil1", "https://tec.openplanner.team/stops/Bmoufil2"], ["https://tec.openplanner.team/stops/H1te182a", "https://tec.openplanner.team/stops/H1te185b"], ["https://tec.openplanner.team/stops/X602anb", "https://tec.openplanner.team/stops/X602apa"], ["https://tec.openplanner.team/stops/N585ahb", "https://tec.openplanner.team/stops/N585aja"], ["https://tec.openplanner.team/stops/Bsgebou2", "https://tec.openplanner.team/stops/Bvilpar2"], ["https://tec.openplanner.team/stops/CMtirou2", "https://tec.openplanner.team/stops/NC01ahb"], ["https://tec.openplanner.team/stops/LAx17--2", "https://tec.openplanner.team/stops/LFsphar2"], ["https://tec.openplanner.team/stops/LAo170-1", "https://tec.openplanner.team/stops/LTPnoup1"], ["https://tec.openplanner.team/stops/H1bb115a", "https://tec.openplanner.team/stops/H1bo107b"], ["https://tec.openplanner.team/stops/X637agb", "https://tec.openplanner.team/stops/X637aja"], ["https://tec.openplanner.team/stops/Lghleon1", "https://tec.openplanner.team/stops/Lmlpech1"], ["https://tec.openplanner.team/stops/LAuchau1", "https://tec.openplanner.team/stops/LSDheus1"], ["https://tec.openplanner.team/stops/N501dwb", "https://tec.openplanner.team/stops/N501kha"], ["https://tec.openplanner.team/stops/Blhuone1", "https://tec.openplanner.team/stops/Blhupqu1"], ["https://tec.openplanner.team/stops/N118aca", "https://tec.openplanner.team/stops/N118acb"], ["https://tec.openplanner.team/stops/Lsnlhon1", "https://tec.openplanner.team/stops/Lsnmala4"], ["https://tec.openplanner.team/stops/N521aob", "https://tec.openplanner.team/stops/N525afb"], ["https://tec.openplanner.team/stops/LBUchpl2", "https://tec.openplanner.team/stops/LBUrout2"], ["https://tec.openplanner.team/stops/X991aja", "https://tec.openplanner.team/stops/X991alb"], ["https://tec.openplanner.team/stops/Cprbevu1", "https://tec.openplanner.team/stops/Cprcalv1"], ["https://tec.openplanner.team/stops/N538aca", "https://tec.openplanner.team/stops/N538alb"], ["https://tec.openplanner.team/stops/H1ho138b", "https://tec.openplanner.team/stops/H1wl124a"], ["https://tec.openplanner.team/stops/Bdvmcsa1", "https://tec.openplanner.team/stops/Bdvmsar2"], ["https://tec.openplanner.team/stops/Cthoues1", "https://tec.openplanner.team/stops/Cthvbas1"], ["https://tec.openplanner.team/stops/X952agb", "https://tec.openplanner.team/stops/X952aib"], ["https://tec.openplanner.team/stops/Cbiseur1", "https://tec.openplanner.team/stops/Ctucamb2"], ["https://tec.openplanner.team/stops/X919ajb", "https://tec.openplanner.team/stops/X919aka"], ["https://tec.openplanner.team/stops/X836aca", "https://tec.openplanner.team/stops/X836aja"], ["https://tec.openplanner.team/stops/X633ajc", "https://tec.openplanner.team/stops/X654aab"], ["https://tec.openplanner.team/stops/N540aca", "https://tec.openplanner.team/stops/N540acb"], ["https://tec.openplanner.team/stops/Cfrgare1", "https://tec.openplanner.team/stops/Cfrgare2"], ["https://tec.openplanner.team/stops/LWZponb2", "https://tec.openplanner.team/stops/LWZponh1"], ["https://tec.openplanner.team/stops/N132ada", "https://tec.openplanner.team/stops/N132aeb"], ["https://tec.openplanner.team/stops/N349aea", "https://tec.openplanner.team/stops/N349aeb"], ["https://tec.openplanner.team/stops/N535amc", "https://tec.openplanner.team/stops/N564aab"], ["https://tec.openplanner.team/stops/X887aaa", "https://tec.openplanner.team/stops/X891aaa"], ["https://tec.openplanner.team/stops/N425aba", "https://tec.openplanner.team/stops/N425ahb"], ["https://tec.openplanner.team/stops/LMheg--1", "https://tec.openplanner.team/stops/Lprceri1"], ["https://tec.openplanner.team/stops/LOLbout1", "https://tec.openplanner.team/stops/LXHadam2"], ["https://tec.openplanner.team/stops/Ccunvus1", "https://tec.openplanner.team/stops/Ccutrav5"], ["https://tec.openplanner.team/stops/H1wl121a", "https://tec.openplanner.team/stops/H1wl121b"], ["https://tec.openplanner.team/stops/H1pa104a", "https://tec.openplanner.team/stops/H1pa104b"], ["https://tec.openplanner.team/stops/N329aaa", "https://tec.openplanner.team/stops/N329aab"], ["https://tec.openplanner.team/stops/LOrchau2", "https://tec.openplanner.team/stops/LOrpont2"], ["https://tec.openplanner.team/stops/NL72aba", "https://tec.openplanner.team/stops/NL76adb"], ["https://tec.openplanner.team/stops/Cgualno1", "https://tec.openplanner.team/stops/Chhclde2"], ["https://tec.openplanner.team/stops/LeUmoor1", "https://tec.openplanner.team/stops/LeUrote2"], ["https://tec.openplanner.team/stops/X757akb", "https://tec.openplanner.team/stops/X779abb"], ["https://tec.openplanner.team/stops/Cmlcons1", "https://tec.openplanner.team/stops/Cmlmatc2"], ["https://tec.openplanner.team/stops/Chpfoli3", "https://tec.openplanner.team/stops/Cracime2"], ["https://tec.openplanner.team/stops/N512aua", "https://tec.openplanner.team/stops/N512avb"], ["https://tec.openplanner.team/stops/NL74abb", "https://tec.openplanner.team/stops/NL74aea"], ["https://tec.openplanner.team/stops/Cctmari1", "https://tec.openplanner.team/stops/NC11ahb"], ["https://tec.openplanner.team/stops/X770aea", "https://tec.openplanner.team/stops/X770afb"], ["https://tec.openplanner.team/stops/Bottcbp1", "https://tec.openplanner.team/stops/Bottcbp2"], ["https://tec.openplanner.team/stops/X307acb", "https://tec.openplanner.team/stops/X307adb"], ["https://tec.openplanner.team/stops/N536apa", "https://tec.openplanner.team/stops/N563ana"], ["https://tec.openplanner.team/stops/H1lb154b", "https://tec.openplanner.team/stops/H1qu108a"], ["https://tec.openplanner.team/stops/LaAronh1", "https://tec.openplanner.team/stops/LaAronh2"], ["https://tec.openplanner.team/stops/H4gu109b", "https://tec.openplanner.team/stops/H4we134a"], ["https://tec.openplanner.team/stops/X738acb", "https://tec.openplanner.team/stops/X754aqa"], ["https://tec.openplanner.team/stops/X725afg", "https://tec.openplanner.team/stops/X725aoa"], ["https://tec.openplanner.team/stops/Cfmcoro1", "https://tec.openplanner.team/stops/Cfmcoro2"], ["https://tec.openplanner.team/stops/X750bea", "https://tec.openplanner.team/stops/X750beb"], ["https://tec.openplanner.team/stops/LeUath%C3%A41", "https://tec.openplanner.team/stops/LeUnopr1"], ["https://tec.openplanner.team/stops/H1br120a", "https://tec.openplanner.team/stops/H2tr253a"], ["https://tec.openplanner.team/stops/X801ajb", "https://tec.openplanner.team/stops/X801cka"], ["https://tec.openplanner.team/stops/N113abb", "https://tec.openplanner.team/stops/N113aga"], ["https://tec.openplanner.team/stops/Cmamonu2", "https://tec.openplanner.team/stops/Cmastma2"], ["https://tec.openplanner.team/stops/N205acb", "https://tec.openplanner.team/stops/N205ada"], ["https://tec.openplanner.team/stops/Lemlacr2", "https://tec.openplanner.team/stops/Lemsely2"], ["https://tec.openplanner.team/stops/N207acb", "https://tec.openplanner.team/stops/X206azb"], ["https://tec.openplanner.team/stops/H1ht122a", "https://tec.openplanner.team/stops/H1ht129a"], ["https://tec.openplanner.team/stops/Cmmcarr2", "https://tec.openplanner.team/stops/Cmmceri1"], ["https://tec.openplanner.team/stops/H1mk109b", "https://tec.openplanner.team/stops/H1mk111b"], ["https://tec.openplanner.team/stops/Lsmdepo1", "https://tec.openplanner.team/stops/Lvepoud1"], ["https://tec.openplanner.team/stops/X696aha", "https://tec.openplanner.team/stops/X696aia"], ["https://tec.openplanner.team/stops/Lannico1", "https://tec.openplanner.team/stops/Lannico2"], ["https://tec.openplanner.team/stops/H1pa100a", "https://tec.openplanner.team/stops/H1pa103a"], ["https://tec.openplanner.team/stops/LhMwing2", "https://tec.openplanner.team/stops/LsCbrau1"], ["https://tec.openplanner.team/stops/Lpejonc1", "https://tec.openplanner.team/stops/Lpejonc2"], ["https://tec.openplanner.team/stops/LSeaque1", "https://tec.openplanner.team/stops/LSecomm2"], ["https://tec.openplanner.team/stops/N232aia", "https://tec.openplanner.team/stops/N232aib"], ["https://tec.openplanner.team/stops/Lseconc1", "https://tec.openplanner.team/stops/Lseconc2"], ["https://tec.openplanner.team/stops/H5rx113a", "https://tec.openplanner.team/stops/H5rx147a"], ["https://tec.openplanner.team/stops/LELchap2", "https://tec.openplanner.team/stops/LHCponc4"], ["https://tec.openplanner.team/stops/NL75aba", "https://tec.openplanner.team/stops/NL75abb"], ["https://tec.openplanner.team/stops/H4ga152a", "https://tec.openplanner.team/stops/H4ga169a"], ["https://tec.openplanner.team/stops/LwTkabi1", "https://tec.openplanner.team/stops/LwTkabi2"], ["https://tec.openplanner.team/stops/Lmnfawe1", "https://tec.openplanner.team/stops/Lmnfawe2"], ["https://tec.openplanner.team/stops/LmHburg1", "https://tec.openplanner.team/stops/LmHschm2"], ["https://tec.openplanner.team/stops/Bsencen2", "https://tec.openplanner.team/stops/H2se110a"], ["https://tec.openplanner.team/stops/X831aba", "https://tec.openplanner.team/stops/X833acb"], ["https://tec.openplanner.team/stops/H4mo165a", "https://tec.openplanner.team/stops/H4mo165b"], ["https://tec.openplanner.team/stops/X758abb", "https://tec.openplanner.team/stops/X758agb"], ["https://tec.openplanner.team/stops/N517aba", "https://tec.openplanner.team/stops/N517adc"], ["https://tec.openplanner.team/stops/LMalamb4", "https://tec.openplanner.team/stops/LMawilh4"], ["https://tec.openplanner.team/stops/LAxbott1", "https://tec.openplanner.team/stops/Lhemilm2"], ["https://tec.openplanner.team/stops/Lveecol1", "https://tec.openplanner.team/stops/Lvehv--4"], ["https://tec.openplanner.team/stops/Cplbbro1", "https://tec.openplanner.team/stops/NC11ama"], ["https://tec.openplanner.team/stops/X397aba", "https://tec.openplanner.team/stops/X901bta"], ["https://tec.openplanner.team/stops/H4wt160a", "https://tec.openplanner.team/stops/H4wt160b"], ["https://tec.openplanner.team/stops/Lheaaz-2", "https://tec.openplanner.team/stops/Lheente2"], ["https://tec.openplanner.team/stops/X601bjb", "https://tec.openplanner.team/stops/X662aob"], ["https://tec.openplanner.team/stops/Bborche2", "https://tec.openplanner.team/stops/Bhtihau1"], ["https://tec.openplanner.team/stops/LFychpl1", "https://tec.openplanner.team/stops/LON21--2"], ["https://tec.openplanner.team/stops/X608aqa", "https://tec.openplanner.team/stops/X621aea"], ["https://tec.openplanner.team/stops/Lagboil1", "https://tec.openplanner.team/stops/Lkiecol1"], ["https://tec.openplanner.team/stops/Lalexpa2", "https://tec.openplanner.team/stops/Lalmakr1"], ["https://tec.openplanner.team/stops/N501jha", "https://tec.openplanner.team/stops/N501jpa"], ["https://tec.openplanner.team/stops/X950ada", "https://tec.openplanner.team/stops/X950adb"], ["https://tec.openplanner.team/stops/LESflag1", "https://tec.openplanner.team/stops/LPOchan2"], ["https://tec.openplanner.team/stops/LSPec--2", "https://tec.openplanner.team/stops/LSPptch2"], ["https://tec.openplanner.team/stops/NC44aca", "https://tec.openplanner.team/stops/NC44acb"], ["https://tec.openplanner.team/stops/X801aza", "https://tec.openplanner.team/stops/X801cja"], ["https://tec.openplanner.team/stops/H4my121b", "https://tec.openplanner.team/stops/H4my123a"], ["https://tec.openplanner.team/stops/X601bnb", "https://tec.openplanner.team/stops/X601dga"], ["https://tec.openplanner.team/stops/N166aba", "https://tec.openplanner.team/stops/N569afa"], ["https://tec.openplanner.team/stops/LETeg--2", "https://tec.openplanner.team/stops/LETsaiv2"], ["https://tec.openplanner.team/stops/N211ada", "https://tec.openplanner.team/stops/N211awb"], ["https://tec.openplanner.team/stops/N211aha", "https://tec.openplanner.team/stops/N211baa"], ["https://tec.openplanner.team/stops/N204aja", "https://tec.openplanner.team/stops/N205abb"], ["https://tec.openplanner.team/stops/X758aia", "https://tec.openplanner.team/stops/X758aja"], ["https://tec.openplanner.team/stops/LThbatt2", "https://tec.openplanner.team/stops/LThsere1"], ["https://tec.openplanner.team/stops/N218ada", "https://tec.openplanner.team/stops/N218adb"], ["https://tec.openplanner.team/stops/Bbgever1", "https://tec.openplanner.team/stops/Bwavzno2"], ["https://tec.openplanner.team/stops/N218acb", "https://tec.openplanner.team/stops/N218acc"], ["https://tec.openplanner.team/stops/Bplncsd2", "https://tec.openplanner.team/stops/Bplnfpa2"], ["https://tec.openplanner.team/stops/LGLobor2", "https://tec.openplanner.team/stops/LGLspor2"], ["https://tec.openplanner.team/stops/H2sv215b", "https://tec.openplanner.team/stops/H2tr246a"], ["https://tec.openplanner.team/stops/Bpercsp1", "https://tec.openplanner.team/stops/Bpermon4"], ["https://tec.openplanner.team/stops/LwYkreu1", "https://tec.openplanner.team/stops/LwYkreu3"], ["https://tec.openplanner.team/stops/LCTgare3", "https://tec.openplanner.team/stops/LGmhumb1"], ["https://tec.openplanner.team/stops/Lvtathe2", "https://tec.openplanner.team/stops/Lvtcime1"], ["https://tec.openplanner.team/stops/H1br122b", "https://tec.openplanner.team/stops/H1ev114b"], ["https://tec.openplanner.team/stops/Lmodeni2", "https://tec.openplanner.team/stops/Lsnfoot2"], ["https://tec.openplanner.team/stops/N501ajb", "https://tec.openplanner.team/stops/N501hsz"], ["https://tec.openplanner.team/stops/Lceleje2", "https://tec.openplanner.team/stops/Lcelhon3"], ["https://tec.openplanner.team/stops/H1fr123a", "https://tec.openplanner.team/stops/H1fr152a"], ["https://tec.openplanner.team/stops/LSfcoll*", "https://tec.openplanner.team/stops/LXoroch2"], ["https://tec.openplanner.team/stops/LBWbatt2", "https://tec.openplanner.team/stops/LBWeg--3"], ["https://tec.openplanner.team/stops/X946adb", "https://tec.openplanner.team/stops/X946afb"], ["https://tec.openplanner.team/stops/LnEfrie2", "https://tec.openplanner.team/stops/LoEbach2"], ["https://tec.openplanner.team/stops/N501ckb", "https://tec.openplanner.team/stops/N501ckz"], ["https://tec.openplanner.team/stops/N501bsa", "https://tec.openplanner.team/stops/N501bxb"], ["https://tec.openplanner.team/stops/N501hra", "https://tec.openplanner.team/stops/N501hya"], ["https://tec.openplanner.team/stops/H2bh106b", "https://tec.openplanner.team/stops/H2bh114a"], ["https://tec.openplanner.team/stops/LBSchpl2", "https://tec.openplanner.team/stops/LEMgren*"], ["https://tec.openplanner.team/stops/H4ga155b", "https://tec.openplanner.team/stops/H4ga169a"], ["https://tec.openplanner.team/stops/Bohnr731", "https://tec.openplanner.team/stops/Bohnr732"], ["https://tec.openplanner.team/stops/NL76afb", "https://tec.openplanner.team/stops/NL76agb"], ["https://tec.openplanner.team/stops/LSCc39-1", "https://tec.openplanner.team/stops/LSCeg--4"], ["https://tec.openplanner.team/stops/H4ty326a", "https://tec.openplanner.team/stops/H4wc373a"], ["https://tec.openplanner.team/stops/N248abb", "https://tec.openplanner.team/stops/N248ada"], ["https://tec.openplanner.team/stops/H1fv101b", "https://tec.openplanner.team/stops/H1fv103a"], ["https://tec.openplanner.team/stops/N232ata", "https://tec.openplanner.team/stops/N232bab"], ["https://tec.openplanner.team/stops/H5qu152a", "https://tec.openplanner.team/stops/H5qu156d"], ["https://tec.openplanner.team/stops/Bpermon4", "https://tec.openplanner.team/stops/Bperrsr1"], ["https://tec.openplanner.team/stops/X660aga", "https://tec.openplanner.team/stops/X741akb"], ["https://tec.openplanner.team/stops/N501ena", "https://tec.openplanner.team/stops/N501mvd"], ["https://tec.openplanner.team/stops/LWOcour2", "https://tec.openplanner.team/stops/LWOmart1"], ["https://tec.openplanner.team/stops/X892agb", "https://tec.openplanner.team/stops/X892ajb"], ["https://tec.openplanner.team/stops/H1hw123b", "https://tec.openplanner.team/stops/H1hw125b"], ["https://tec.openplanner.team/stops/H4ob108a", "https://tec.openplanner.team/stops/H4ob110b"], ["https://tec.openplanner.team/stops/LLWpier2", "https://tec.openplanner.team/stops/LVBdela1"], ["https://tec.openplanner.team/stops/LOljean2", "https://tec.openplanner.team/stops/LOltill2"], ["https://tec.openplanner.team/stops/H1ba101a", "https://tec.openplanner.team/stops/H1ba106b"], ["https://tec.openplanner.team/stops/X661ata", "https://tec.openplanner.team/stops/X661bba"], ["https://tec.openplanner.team/stops/Bcrnncb2", "https://tec.openplanner.team/stops/Bcrnnra2"], ["https://tec.openplanner.team/stops/X808afa", "https://tec.openplanner.team/stops/X834aca"], ["https://tec.openplanner.team/stops/Lfhweri1", "https://tec.openplanner.team/stops/Ljedepa2"], ["https://tec.openplanner.team/stops/N557ada", "https://tec.openplanner.team/stops/N557aga"], ["https://tec.openplanner.team/stops/N874aga", "https://tec.openplanner.team/stops/N874agb"], ["https://tec.openplanner.team/stops/N556ada", "https://tec.openplanner.team/stops/N556adb"], ["https://tec.openplanner.team/stops/X793aja", "https://tec.openplanner.team/stops/X793akb"], ["https://tec.openplanner.team/stops/Blincoo1", "https://tec.openplanner.team/stops/Blincoo2"], ["https://tec.openplanner.team/stops/Cfcgar2", "https://tec.openplanner.team/stops/Cfcstan1"], ["https://tec.openplanner.team/stops/LVLzoni2", "https://tec.openplanner.team/stops/LWDchpl1"], ["https://tec.openplanner.team/stops/X871ada", "https://tec.openplanner.team/stops/X871adb"], ["https://tec.openplanner.team/stops/LLirout1", "https://tec.openplanner.team/stops/LReeg--1"], ["https://tec.openplanner.team/stops/H1ms294a", "https://tec.openplanner.team/stops/H1ms926a"], ["https://tec.openplanner.team/stops/H4av106a", "https://tec.openplanner.team/stops/H4av106c"], ["https://tec.openplanner.team/stops/H1bi101b", "https://tec.openplanner.team/stops/H1mg108b"], ["https://tec.openplanner.team/stops/Bgisber1", "https://tec.openplanner.team/stops/Bgisman1"], ["https://tec.openplanner.team/stops/LFFcouv2", "https://tec.openplanner.team/stops/LFFmarc3"], ["https://tec.openplanner.team/stops/X826acb", "https://tec.openplanner.team/stops/X826ahb"], ["https://tec.openplanner.team/stops/Cfmrrou1", "https://tec.openplanner.team/stops/Csoforc1"], ["https://tec.openplanner.team/stops/Bboncgs1", "https://tec.openplanner.team/stops/Bboneta1"], ["https://tec.openplanner.team/stops/N521aha", "https://tec.openplanner.team/stops/N521apb"], ["https://tec.openplanner.team/stops/N574adb", "https://tec.openplanner.team/stops/N574aea"], ["https://tec.openplanner.team/stops/X804ana", "https://tec.openplanner.team/stops/X804bma"], ["https://tec.openplanner.team/stops/LLUmc--2", "https://tec.openplanner.team/stops/LLUreut1"], ["https://tec.openplanner.team/stops/Llgcadr2", "https://tec.openplanner.team/stops/Llgcadr4"], ["https://tec.openplanner.team/stops/Bgrhche2", "https://tec.openplanner.team/stops/Bperros1"], ["https://tec.openplanner.team/stops/Bhptcha1", "https://tec.openplanner.team/stops/Bhptpla1"], ["https://tec.openplanner.team/stops/X940aab", "https://tec.openplanner.team/stops/X941aab"], ["https://tec.openplanner.team/stops/LHEclef1", "https://tec.openplanner.team/stops/LJOchar2"], ["https://tec.openplanner.team/stops/N570acb", "https://tec.openplanner.team/stops/N570aga"], ["https://tec.openplanner.team/stops/N509akb", "https://tec.openplanner.team/stops/N509ala"], ["https://tec.openplanner.team/stops/N118acb", "https://tec.openplanner.team/stops/N118aga"], ["https://tec.openplanner.team/stops/Blkbavo2", "https://tec.openplanner.team/stops/Blkbbvh2"], ["https://tec.openplanner.team/stops/N338afa", "https://tec.openplanner.team/stops/N387acc"], ["https://tec.openplanner.team/stops/LFMkrut1", "https://tec.openplanner.team/stops/LFMkrut2"], ["https://tec.openplanner.team/stops/Cmohotv4", "https://tec.openplanner.team/stops/Cmorgof1"], ["https://tec.openplanner.team/stops/Cgrchea1", "https://tec.openplanner.team/stops/Cjochap1"], ["https://tec.openplanner.team/stops/X876aab", "https://tec.openplanner.team/stops/X876aea"], ["https://tec.openplanner.team/stops/X736ada", "https://tec.openplanner.team/stops/X736agb"], ["https://tec.openplanner.team/stops/H1og131b", "https://tec.openplanner.team/stops/H1og134a"], ["https://tec.openplanner.team/stops/LBscasi1", "https://tec.openplanner.team/stops/NL72abb"], ["https://tec.openplanner.team/stops/LOuplac1", "https://tec.openplanner.team/stops/LOuplac2"], ["https://tec.openplanner.team/stops/Crchutt1", "https://tec.openplanner.team/stops/Crcrwas1"], ["https://tec.openplanner.team/stops/Bgembhe2", "https://tec.openplanner.team/stops/Blnzcar1"], ["https://tec.openplanner.team/stops/X614afa", "https://tec.openplanner.team/stops/X615bha"], ["https://tec.openplanner.team/stops/LHZcime1", "https://tec.openplanner.team/stops/LHZpara1"], ["https://tec.openplanner.team/stops/H1fa120a", "https://tec.openplanner.team/stops/H1fa120b"], ["https://tec.openplanner.team/stops/N308adb", "https://tec.openplanner.team/stops/N308afc"], ["https://tec.openplanner.team/stops/X839acb", "https://tec.openplanner.team/stops/X839adb"], ["https://tec.openplanner.team/stops/H4er123a", "https://tec.openplanner.team/stops/H4ty300a"], ["https://tec.openplanner.team/stops/N571adb", "https://tec.openplanner.team/stops/N573ada"], ["https://tec.openplanner.team/stops/H4fa126a", "https://tec.openplanner.team/stops/H4ms146a"], ["https://tec.openplanner.team/stops/Lccaigr2", "https://tec.openplanner.team/stops/LRAcouv2"], ["https://tec.openplanner.team/stops/X897acb", "https://tec.openplanner.team/stops/X897aic"], ["https://tec.openplanner.team/stops/Lbogonh4", "https://tec.openplanner.team/stops/Lbomidi2"], ["https://tec.openplanner.team/stops/Bfelfde1", "https://tec.openplanner.team/stops/Bronn392"], ["https://tec.openplanner.team/stops/X770afa", "https://tec.openplanner.team/stops/X774adc"], ["https://tec.openplanner.team/stops/LVlleme2", "https://tec.openplanner.team/stops/LVlleme3"], ["https://tec.openplanner.team/stops/Cflchmo2", "https://tec.openplanner.team/stops/Cflstan1"], ["https://tec.openplanner.team/stops/LDObran1", "https://tec.openplanner.team/stops/LDObran2"], ["https://tec.openplanner.team/stops/H1ho129a", "https://tec.openplanner.team/stops/H1wl124a"], ["https://tec.openplanner.team/stops/Cmybefe1", "https://tec.openplanner.team/stops/Cmycime1"], ["https://tec.openplanner.team/stops/LFCkett1", "https://tec.openplanner.team/stops/LFCvoge4"], ["https://tec.openplanner.team/stops/Ctubpos1", "https://tec.openplanner.team/stops/Ctucomm1"], ["https://tec.openplanner.team/stops/X939agb", "https://tec.openplanner.team/stops/X940aha"], ["https://tec.openplanner.team/stops/LbTweyn1", "https://tec.openplanner.team/stops/LbUmalm2"], ["https://tec.openplanner.team/stops/N501fna", "https://tec.openplanner.team/stops/N501ltb"], ["https://tec.openplanner.team/stops/H4de114b", "https://tec.openplanner.team/stops/H4ss157b"], ["https://tec.openplanner.team/stops/LPoewer1", "https://tec.openplanner.team/stops/LPoneuf2"], ["https://tec.openplanner.team/stops/N501ata", "https://tec.openplanner.team/stops/N501bab"], ["https://tec.openplanner.team/stops/Cwfnamu1", "https://tec.openplanner.team/stops/Cwfreta1"], ["https://tec.openplanner.team/stops/Bvilcha1", "https://tec.openplanner.team/stops/Bvilvil3"], ["https://tec.openplanner.team/stops/H4ho120b", "https://tec.openplanner.team/stops/H4ho121a"], ["https://tec.openplanner.team/stops/N550ajb", "https://tec.openplanner.team/stops/N550aka"], ["https://tec.openplanner.team/stops/X398aab", "https://tec.openplanner.team/stops/X398aca"], ["https://tec.openplanner.team/stops/Bbst4br1", "https://tec.openplanner.team/stops/Bbst4br2"], ["https://tec.openplanner.team/stops/LFCotte1", "https://tec.openplanner.team/stops/LWRbois2"], ["https://tec.openplanner.team/stops/LHNgend1", "https://tec.openplanner.team/stops/LHNgend4"], ["https://tec.openplanner.team/stops/Bcrngat2", "https://tec.openplanner.team/stops/Bcrnrpc2"], ["https://tec.openplanner.team/stops/X371adb", "https://tec.openplanner.team/stops/X371aga"], ["https://tec.openplanner.team/stops/X989afb", "https://tec.openplanner.team/stops/X989aga"], ["https://tec.openplanner.team/stops/LSHries1", "https://tec.openplanner.team/stops/LSHries2"], ["https://tec.openplanner.team/stops/X912aea", "https://tec.openplanner.team/stops/X912aja"], ["https://tec.openplanner.team/stops/LeLbutg1", "https://tec.openplanner.team/stops/LeLherz1"], ["https://tec.openplanner.team/stops/X793apa", "https://tec.openplanner.team/stops/X793apb"], ["https://tec.openplanner.team/stops/LEHpech1", "https://tec.openplanner.team/stops/LRArami2"], ["https://tec.openplanner.team/stops/LBrbern1", "https://tec.openplanner.team/stops/LBrbern2"], ["https://tec.openplanner.team/stops/Ckevela1", "https://tec.openplanner.team/stops/Ckevela2"], ["https://tec.openplanner.team/stops/Bchgbar2", "https://tec.openplanner.team/stops/Bchgflo2"], ["https://tec.openplanner.team/stops/X719aab", "https://tec.openplanner.team/stops/X719aeb"], ["https://tec.openplanner.team/stops/N536aqa", "https://tec.openplanner.team/stops/N536aqb"], ["https://tec.openplanner.team/stops/NL78aha", "https://tec.openplanner.team/stops/NL78ahb"], ["https://tec.openplanner.team/stops/Cgzblob1", "https://tec.openplanner.team/stops/Cgzchen2"], ["https://tec.openplanner.team/stops/N331aab", "https://tec.openplanner.team/stops/N331aca"], ["https://tec.openplanner.team/stops/Lbrplai2", "https://tec.openplanner.team/stops/Lbrresi2"], ["https://tec.openplanner.team/stops/Llgplop1", "https://tec.openplanner.team/stops/Lvteg--2"], ["https://tec.openplanner.team/stops/H1ol144a", "https://tec.openplanner.team/stops/H1ol146a"], ["https://tec.openplanner.team/stops/LAYcher1", "https://tec.openplanner.team/stops/LAYcher2"], ["https://tec.openplanner.team/stops/Bbchpil1", "https://tec.openplanner.team/stops/Bbchpil2"], ["https://tec.openplanner.team/stops/Bllnrod3", "https://tec.openplanner.team/stops/Bmsgaxp2"], ["https://tec.openplanner.team/stops/N304aaa", "https://tec.openplanner.team/stops/N305aaa"], ["https://tec.openplanner.team/stops/Cbiferm1", "https://tec.openplanner.team/stops/Cthbifu2"], ["https://tec.openplanner.team/stops/H2gy108b", "https://tec.openplanner.team/stops/H2gy113b"], ["https://tec.openplanner.team/stops/X908aia", "https://tec.openplanner.team/stops/X910aba"], ["https://tec.openplanner.team/stops/N501cwa", "https://tec.openplanner.team/stops/N501cwb"], ["https://tec.openplanner.team/stops/H4tp147a", "https://tec.openplanner.team/stops/H4tp147b"], ["https://tec.openplanner.team/stops/N533aqb", "https://tec.openplanner.team/stops/N533aqd"], ["https://tec.openplanner.team/stops/N548aia", "https://tec.openplanner.team/stops/N548aka"], ["https://tec.openplanner.team/stops/X991ada", "https://tec.openplanner.team/stops/X991ajb"], ["https://tec.openplanner.team/stops/N513bab", "https://tec.openplanner.team/stops/N513bbc"], ["https://tec.openplanner.team/stops/H2go114c", "https://tec.openplanner.team/stops/H2go114d"], ["https://tec.openplanner.team/stops/H2lc145a", "https://tec.openplanner.team/stops/H2lc145b"], ["https://tec.openplanner.team/stops/Llgplop1", "https://tec.openplanner.team/stops/Llgplop2"], ["https://tec.openplanner.team/stops/N523aba", "https://tec.openplanner.team/stops/N523acb"], ["https://tec.openplanner.team/stops/Ljeegli3", "https://tec.openplanner.team/stops/Ljeegli6"], ["https://tec.openplanner.team/stops/Lagcolo1", "https://tec.openplanner.team/stops/Lemparc2"], ["https://tec.openplanner.team/stops/H4eg104a", "https://tec.openplanner.team/stops/H4eg108b"], ["https://tec.openplanner.team/stops/Lvehout2", "https://tec.openplanner.team/stops/Lveleje2"], ["https://tec.openplanner.team/stops/H1do114b", "https://tec.openplanner.team/stops/H1do117a"], ["https://tec.openplanner.team/stops/LHe3com2", "https://tec.openplanner.team/stops/LHexhav2"], ["https://tec.openplanner.team/stops/LGLc50-3", "https://tec.openplanner.team/stops/LGLlaur1"], ["https://tec.openplanner.team/stops/LFMkrin2", "https://tec.openplanner.team/stops/LVu03--1"], ["https://tec.openplanner.team/stops/Lbhpeti2", "https://tec.openplanner.team/stops/Lromerl1"], ["https://tec.openplanner.team/stops/N204aab", "https://tec.openplanner.team/stops/N206ada"], ["https://tec.openplanner.team/stops/LJAboli2", "https://tec.openplanner.team/stops/LJAherb4"], ["https://tec.openplanner.team/stops/H1gr119b", "https://tec.openplanner.team/stops/H1to153d"], ["https://tec.openplanner.team/stops/LCOdrol2", "https://tec.openplanner.team/stops/LWerola1"], ["https://tec.openplanner.team/stops/Ccoh1211", "https://tec.openplanner.team/stops/Ccotemp1"], ["https://tec.openplanner.team/stops/Lhrpepi2", "https://tec.openplanner.team/stops/Lhrtilm2"], ["https://tec.openplanner.team/stops/Csschat2", "https://tec.openplanner.team/stops/Csspn1"], ["https://tec.openplanner.team/stops/N516ala", "https://tec.openplanner.team/stops/N516anb"], ["https://tec.openplanner.team/stops/H4ty297a", "https://tec.openplanner.team/stops/H4ty315a"], ["https://tec.openplanner.team/stops/H4re225a", "https://tec.openplanner.team/stops/H5at235a"], ["https://tec.openplanner.team/stops/N501gpa", "https://tec.openplanner.team/stops/N501gpz"], ["https://tec.openplanner.team/stops/Cgyblob2", "https://tec.openplanner.team/stops/Cgynoir2"], ["https://tec.openplanner.team/stops/N236apa", "https://tec.openplanner.team/stops/N236apb"], ["https://tec.openplanner.team/stops/LLUg82-1", "https://tec.openplanner.team/stops/LLUgend1"], ["https://tec.openplanner.team/stops/Lhuwaid1", "https://tec.openplanner.team/stops/Lmnrame2"], ["https://tec.openplanner.team/stops/H2mi123a", "https://tec.openplanner.team/stops/H2mi124a"], ["https://tec.openplanner.team/stops/H1ag107b", "https://tec.openplanner.team/stops/H1an101b"], ["https://tec.openplanner.team/stops/X793aab", "https://tec.openplanner.team/stops/X793abb"], ["https://tec.openplanner.team/stops/H1ol142a", "https://tec.openplanner.team/stops/H1ol142b"], ["https://tec.openplanner.team/stops/H1si152a", "https://tec.openplanner.team/stops/H1si152b"], ["https://tec.openplanner.team/stops/Lhubriq1", "https://tec.openplanner.team/stops/Lmntast2"], ["https://tec.openplanner.team/stops/H1hn209b", "https://tec.openplanner.team/stops/H1hn210b"], ["https://tec.openplanner.team/stops/Borblim2", "https://tec.openplanner.team/stops/Btstbes1"], ["https://tec.openplanner.team/stops/H4eg103a", "https://tec.openplanner.team/stops/H4eg107a"], ["https://tec.openplanner.team/stops/Lrcarse1", "https://tec.openplanner.team/stops/Lrcastr3"], ["https://tec.openplanner.team/stops/Bbstchn1", "https://tec.openplanner.team/stops/Bbstchn2"], ["https://tec.openplanner.team/stops/X714ada", "https://tec.openplanner.team/stops/X714aea"], ["https://tec.openplanner.team/stops/Clomari1", "https://tec.openplanner.team/stops/CMtsan2"], ["https://tec.openplanner.team/stops/X757ada", "https://tec.openplanner.team/stops/X757agb"], ["https://tec.openplanner.team/stops/H1ca186a", "https://tec.openplanner.team/stops/H1ca186b"], ["https://tec.openplanner.team/stops/H1hv132b", "https://tec.openplanner.team/stops/H1hv136b"], ["https://tec.openplanner.team/stops/X902afa", "https://tec.openplanner.team/stops/X902aoa"], ["https://tec.openplanner.team/stops/LFHjamo1", "https://tec.openplanner.team/stops/LFOcomb4"], ["https://tec.openplanner.team/stops/N510ada", "https://tec.openplanner.team/stops/N513aza"], ["https://tec.openplanner.team/stops/LTPbeau1", "https://tec.openplanner.team/stops/LTPpreh1"], ["https://tec.openplanner.team/stops/N570aaa", "https://tec.openplanner.team/stops/N570abb"], ["https://tec.openplanner.team/stops/Bjodrrg1", "https://tec.openplanner.team/stops/Bzlucam1"], ["https://tec.openplanner.team/stops/LPTeg--2", "https://tec.openplanner.team/stops/X542afa"], ["https://tec.openplanner.team/stops/Llgbour1", "https://tec.openplanner.team/stops/Llgcmes4"], ["https://tec.openplanner.team/stops/Bnivsci1", "https://tec.openplanner.team/stops/Bnivsci2"], ["https://tec.openplanner.team/stops/X601cbb", "https://tec.openplanner.team/stops/X601cca"], ["https://tec.openplanner.team/stops/Bwatbca2", "https://tec.openplanner.team/stops/Bwatcci2"], ["https://tec.openplanner.team/stops/Bcsen252", "https://tec.openplanner.team/stops/Bsmgsuz1"], ["https://tec.openplanner.team/stops/Cwflouv3", "https://tec.openplanner.team/stops/Cwflouv4"], ["https://tec.openplanner.team/stops/N244apb", "https://tec.openplanner.team/stops/N244axa"], ["https://tec.openplanner.team/stops/LBIairp2", "https://tec.openplanner.team/stops/Lmlpech1"], ["https://tec.openplanner.team/stops/N224aaa", "https://tec.openplanner.team/stops/X398aha"], ["https://tec.openplanner.team/stops/H1er105a", "https://tec.openplanner.team/stops/H1er111b"], ["https://tec.openplanner.team/stops/LMNjard2", "https://tec.openplanner.team/stops/LPbusin1"], ["https://tec.openplanner.team/stops/H1hn364a", "https://tec.openplanner.team/stops/H1hn365a"], ["https://tec.openplanner.team/stops/LHChomb2", "https://tec.openplanner.team/stops/LHMhof-1"], ["https://tec.openplanner.team/stops/X982bya", "https://tec.openplanner.team/stops/X982byb"], ["https://tec.openplanner.team/stops/N149acb", "https://tec.openplanner.team/stops/N153aeb"], ["https://tec.openplanner.team/stops/Bjodpce1", "https://tec.openplanner.team/stops/Bjodpce2"], ["https://tec.openplanner.team/stops/X804asb", "https://tec.openplanner.team/stops/X804ata"], ["https://tec.openplanner.team/stops/Bwatmch1", "https://tec.openplanner.team/stops/Bwatmch2"], ["https://tec.openplanner.team/stops/LaMadam2", "https://tec.openplanner.team/stops/LaMschw1"], ["https://tec.openplanner.team/stops/X763aab", "https://tec.openplanner.team/stops/X765agb"], ["https://tec.openplanner.team/stops/Csoforr1", "https://tec.openplanner.team/stops/Csoforr4"], ["https://tec.openplanner.team/stops/LLelans1", "https://tec.openplanner.team/stops/X561aaa"], ["https://tec.openplanner.team/stops/N505ada", "https://tec.openplanner.team/stops/N505aea"], ["https://tec.openplanner.team/stops/LMIbois2", "https://tec.openplanner.team/stops/LSOdow%C3%A92"], ["https://tec.openplanner.team/stops/LAWbrou1", "https://tec.openplanner.team/stops/LAWgill1"], ["https://tec.openplanner.team/stops/Csbrago1", "https://tec.openplanner.team/stops/H1sa114b"], ["https://tec.openplanner.team/stops/X641aga", "https://tec.openplanner.team/stops/X641alb"], ["https://tec.openplanner.team/stops/H1ma230b", "https://tec.openplanner.team/stops/H1ma237a"], ["https://tec.openplanner.team/stops/H2bh103d", "https://tec.openplanner.team/stops/H2bh108a"], ["https://tec.openplanner.team/stops/Blthvil1", "https://tec.openplanner.team/stops/Blthwav4"], ["https://tec.openplanner.team/stops/N127aea", "https://tec.openplanner.team/stops/N135bdb"], ["https://tec.openplanner.team/stops/Bquebuc1", "https://tec.openplanner.team/stops/Bquecro2"], ["https://tec.openplanner.team/stops/Brixbou1", "https://tec.openplanner.team/stops/Brixres1"], ["https://tec.openplanner.team/stops/Clbchlo2", "https://tec.openplanner.team/stops/Clbentr1"], ["https://tec.openplanner.team/stops/H4wr173b", "https://tec.openplanner.team/stops/H5qu154a"], ["https://tec.openplanner.team/stops/Bgemga11", "https://tec.openplanner.team/stops/N522bvc"], ["https://tec.openplanner.team/stops/LBLcalv1", "https://tec.openplanner.team/stops/LBLtroi1"], ["https://tec.openplanner.team/stops/CMchag1", "https://tec.openplanner.team/stops/CMchag2"], ["https://tec.openplanner.team/stops/H1qu102a", "https://tec.openplanner.team/stops/H1qu102b"], ["https://tec.openplanner.team/stops/LOcchat2", "https://tec.openplanner.team/stops/LOchalo1"], ["https://tec.openplanner.team/stops/Bsampli2", "https://tec.openplanner.team/stops/N584bqb"], ["https://tec.openplanner.team/stops/LFIinse1", "https://tec.openplanner.team/stops/LMYvill2"], ["https://tec.openplanner.team/stops/H1ho134a", "https://tec.openplanner.team/stops/H1ho134b"], ["https://tec.openplanner.team/stops/X805aab", "https://tec.openplanner.team/stops/X805aka"], ["https://tec.openplanner.team/stops/N134aga", "https://tec.openplanner.team/stops/N134agb"], ["https://tec.openplanner.team/stops/X829aca", "https://tec.openplanner.team/stops/X829acb"], ["https://tec.openplanner.team/stops/Chhlori2", "https://tec.openplanner.team/stops/Cjxcoll2"], ["https://tec.openplanner.team/stops/LTiforg1", "https://tec.openplanner.team/stops/LTiforg2"], ["https://tec.openplanner.team/stops/X793aaa", "https://tec.openplanner.team/stops/X793apa"], ["https://tec.openplanner.team/stops/X766aaa", "https://tec.openplanner.team/stops/X766abb"], ["https://tec.openplanner.team/stops/N232bba", "https://tec.openplanner.team/stops/N232btb"], ["https://tec.openplanner.team/stops/X601bla", "https://tec.openplanner.team/stops/X601bmb"], ["https://tec.openplanner.team/stops/LeUvoss1", "https://tec.openplanner.team/stops/LrAbe601"], ["https://tec.openplanner.team/stops/Cptplac4", "https://tec.openplanner.team/stops/Cptplac5"], ["https://tec.openplanner.team/stops/N347adb", "https://tec.openplanner.team/stops/X347aja"], ["https://tec.openplanner.team/stops/H1sy138a", "https://tec.openplanner.team/stops/H1sy145a"], ["https://tec.openplanner.team/stops/N301abb", "https://tec.openplanner.team/stops/N301abd"], ["https://tec.openplanner.team/stops/Bhercsj1", "https://tec.openplanner.team/stops/Bpiehvi1"], ["https://tec.openplanner.team/stops/H1ms257a", "https://tec.openplanner.team/stops/H1ms257b"], ["https://tec.openplanner.team/stops/H1bb116c", "https://tec.openplanner.team/stops/H1bb117a"], ["https://tec.openplanner.team/stops/X942abb", "https://tec.openplanner.team/stops/X942abc"], ["https://tec.openplanner.team/stops/H1ni316a", "https://tec.openplanner.team/stops/H1ni316b"], ["https://tec.openplanner.team/stops/LPLcond2", "https://tec.openplanner.team/stops/LRRtrix1"], ["https://tec.openplanner.team/stops/Blmlbou2", "https://tec.openplanner.team/stops/Blmlvex1"], ["https://tec.openplanner.team/stops/Llgchai1", "https://tec.openplanner.team/stops/Llgmagh2"], ["https://tec.openplanner.team/stops/Llgbavi0", "https://tec.openplanner.team/stops/Llgphol3"], ["https://tec.openplanner.team/stops/H1he104a", "https://tec.openplanner.team/stops/H1he110b"], ["https://tec.openplanner.team/stops/Bixlpat1", "https://tec.openplanner.team/stops/Buccbas1"], ["https://tec.openplanner.team/stops/N524afb", "https://tec.openplanner.team/stops/N524aia"], ["https://tec.openplanner.team/stops/LSCeg--4", "https://tec.openplanner.team/stops/LSChane2"], ["https://tec.openplanner.team/stops/LBGjacq2", "https://tec.openplanner.team/stops/LBGvill2"], ["https://tec.openplanner.team/stops/H3so158b", "https://tec.openplanner.team/stops/H3so162a"], ["https://tec.openplanner.team/stops/LAnchat2", "https://tec.openplanner.team/stops/LVtchai2"], ["https://tec.openplanner.team/stops/Ccugrtr1", "https://tec.openplanner.team/stops/Ccugrtr2"], ["https://tec.openplanner.team/stops/Bptecal1", "https://tec.openplanner.team/stops/Bptemch1"], ["https://tec.openplanner.team/stops/Laddelc2", "https://tec.openplanner.team/stops/Ladhomb2"], ["https://tec.openplanner.team/stops/H1em109a", "https://tec.openplanner.team/stops/H1ev115a"], ["https://tec.openplanner.team/stops/Cgogare1", "https://tec.openplanner.team/stops/Cgostex2"], ["https://tec.openplanner.team/stops/N132aeb", "https://tec.openplanner.team/stops/N132afa"], ["https://tec.openplanner.team/stops/Binclib2", "https://tec.openplanner.team/stops/Binclon1"], ["https://tec.openplanner.team/stops/H1hh113b", "https://tec.openplanner.team/stops/H1hh116a"], ["https://tec.openplanner.team/stops/LLemonu1", "https://tec.openplanner.team/stops/LLemonu2"], ["https://tec.openplanner.team/stops/N501hza", "https://tec.openplanner.team/stops/N501ijb"], ["https://tec.openplanner.team/stops/LsVhupp2", "https://tec.openplanner.team/stops/LsVsimo1"], ["https://tec.openplanner.team/stops/H5rx120b", "https://tec.openplanner.team/stops/H5rx150a"], ["https://tec.openplanner.team/stops/Cfcchas2", "https://tec.openplanner.team/stops/Crclorc2"], ["https://tec.openplanner.team/stops/LHEzoni1", "https://tec.openplanner.team/stops/LJOferm1"], ["https://tec.openplanner.team/stops/Brebeau2", "https://tec.openplanner.team/stops/Brebmtg2"], ["https://tec.openplanner.team/stops/Lsmpost2", "https://tec.openplanner.team/stops/Lsmtini2"], ["https://tec.openplanner.team/stops/H4eg101c", "https://tec.openplanner.team/stops/H4eg105a"], ["https://tec.openplanner.team/stops/H2sb227b", "https://tec.openplanner.team/stops/H2sb243a"], ["https://tec.openplanner.team/stops/Livcoll2", "https://tec.openplanner.team/stops/Livroch2"], ["https://tec.openplanner.team/stops/Bwategb2", "https://tec.openplanner.team/stops/Bwatgla1"], ["https://tec.openplanner.team/stops/X640ahb", "https://tec.openplanner.team/stops/X640ala"], ["https://tec.openplanner.team/stops/N343amb", "https://tec.openplanner.team/stops/X343ama"], ["https://tec.openplanner.team/stops/LSTchal1", "https://tec.openplanner.team/stops/LSTchat2"], ["https://tec.openplanner.team/stops/Cmtstan2", "https://tec.openplanner.team/stops/Cmtstan3"], ["https://tec.openplanner.team/stops/X926aab", "https://tec.openplanner.team/stops/X926abb"], ["https://tec.openplanner.team/stops/LLxcana1", "https://tec.openplanner.team/stops/LLxmonu2"], ["https://tec.openplanner.team/stops/Buccdst1", "https://tec.openplanner.team/stops/Buccobs1"], ["https://tec.openplanner.team/stops/Bbcogpl2", "https://tec.openplanner.team/stops/H3br102a"], ["https://tec.openplanner.team/stops/N522aia", "https://tec.openplanner.team/stops/N576abb"], ["https://tec.openplanner.team/stops/N425aea", "https://tec.openplanner.team/stops/N426aca"], ["https://tec.openplanner.team/stops/Clbchar1", "https://tec.openplanner.team/stops/H1lo120b"], ["https://tec.openplanner.team/stops/Cmlcaya1", "https://tec.openplanner.team/stops/Cmlcaya2"], ["https://tec.openplanner.team/stops/N219aca", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/LLSba4-2", "https://tec.openplanner.team/stops/LLSba6-1"], ["https://tec.openplanner.team/stops/N516aaa", "https://tec.openplanner.team/stops/N516aab"], ["https://tec.openplanner.team/stops/X804aca", "https://tec.openplanner.team/stops/X804apa"], ["https://tec.openplanner.team/stops/N121abb", "https://tec.openplanner.team/stops/N122aib"], ["https://tec.openplanner.team/stops/LEMgren*", "https://tec.openplanner.team/stops/LPlpomp2"], ["https://tec.openplanner.team/stops/X768aia", "https://tec.openplanner.team/stops/X768aib"], ["https://tec.openplanner.team/stops/H4lg101a", "https://tec.openplanner.team/stops/H4lg105a"], ["https://tec.openplanner.team/stops/Cgy4bra1", "https://tec.openplanner.team/stops/Cgy4bra2"], ["https://tec.openplanner.team/stops/LHEchar2", "https://tec.openplanner.team/stops/LHEnaza2"], ["https://tec.openplanner.team/stops/N501eza", "https://tec.openplanner.team/stops/N501jra"], ["https://tec.openplanner.team/stops/Lseboia2", "https://tec.openplanner.team/stops/Lsefori2"], ["https://tec.openplanner.team/stops/H1hv133a", "https://tec.openplanner.team/stops/H1hv133b"], ["https://tec.openplanner.team/stops/X650aeb", "https://tec.openplanner.team/stops/X650aga"], ["https://tec.openplanner.team/stops/X999acb", "https://tec.openplanner.team/stops/X999ada"], ["https://tec.openplanner.team/stops/N519aac", "https://tec.openplanner.team/stops/N519aad"], ["https://tec.openplanner.team/stops/Chhlori1", "https://tec.openplanner.team/stops/Chhlori2"], ["https://tec.openplanner.team/stops/Lalwaro1", "https://tec.openplanner.team/stops/LAWkone1"], ["https://tec.openplanner.team/stops/N501dqa", "https://tec.openplanner.team/stops/N501kna"], ["https://tec.openplanner.team/stops/LHHlomb2", "https://tec.openplanner.team/stops/LVTeg--1"], ["https://tec.openplanner.team/stops/N110afb", "https://tec.openplanner.team/stops/N110agb"], ["https://tec.openplanner.team/stops/LCsbors1", "https://tec.openplanner.team/stops/LVBneuv2"], ["https://tec.openplanner.team/stops/Bjanfer2", "https://tec.openplanner.team/stops/Bwanorp1"], ["https://tec.openplanner.team/stops/H1hn206a", "https://tec.openplanner.team/stops/H1hn206b"], ["https://tec.openplanner.team/stops/Cmlfeba2", "https://tec.openplanner.team/stops/Cmmbmad2"], ["https://tec.openplanner.team/stops/Llgcita2", "https://tec.openplanner.team/stops/Llgvelb2"], ["https://tec.openplanner.team/stops/Llgchal1", "https://tec.openplanner.team/stops/Llgelis1"], ["https://tec.openplanner.team/stops/H5rx120a", "https://tec.openplanner.team/stops/H5rx149a"], ["https://tec.openplanner.team/stops/Bnivpri2", "https://tec.openplanner.team/stops/Bnivvcw2"], ["https://tec.openplanner.team/stops/Lgrjobe1", "https://tec.openplanner.team/stops/Lgrjobe2"], ["https://tec.openplanner.team/stops/Bbiemor2", "https://tec.openplanner.team/stops/Bgzdast1"], ["https://tec.openplanner.team/stops/LVlfooz3", "https://tec.openplanner.team/stops/LVltige2"], ["https://tec.openplanner.team/stops/X661ama", "https://tec.openplanner.team/stops/X661ana"], ["https://tec.openplanner.team/stops/X927acb", "https://tec.openplanner.team/stops/X983agb"], ["https://tec.openplanner.team/stops/H1le128a", "https://tec.openplanner.team/stops/H1le128c"], ["https://tec.openplanner.team/stops/LROmons1", "https://tec.openplanner.team/stops/LROmorf1"], ["https://tec.openplanner.team/stops/Llgrame1", "https://tec.openplanner.team/stops/Llgwiar4"], ["https://tec.openplanner.team/stops/X623afa", "https://tec.openplanner.team/stops/X623afb"], ["https://tec.openplanner.team/stops/Bmoucnd1", "https://tec.openplanner.team/stops/Bottrfa1"], ["https://tec.openplanner.team/stops/Cfaplma1", "https://tec.openplanner.team/stops/NC23afb"], ["https://tec.openplanner.team/stops/N532aab", "https://tec.openplanner.team/stops/N532agb"], ["https://tec.openplanner.team/stops/N170ada", "https://tec.openplanner.team/stops/N170aea"], ["https://tec.openplanner.team/stops/Ctrrpla1", "https://tec.openplanner.team/stops/Ctrrpla4"], ["https://tec.openplanner.team/stops/X644abb", "https://tec.openplanner.team/stops/X644acb"], ["https://tec.openplanner.team/stops/Caccera1", "https://tec.openplanner.team/stops/Caccera2"], ["https://tec.openplanner.team/stops/X639aoa", "https://tec.openplanner.team/stops/X639aob"], ["https://tec.openplanner.team/stops/H1po130b", "https://tec.openplanner.team/stops/H1po139a"], ["https://tec.openplanner.team/stops/N170aca", "https://tec.openplanner.team/stops/N170ada"], ["https://tec.openplanner.team/stops/LlA43--1", "https://tec.openplanner.team/stops/LrUlasc1"], ["https://tec.openplanner.team/stops/Cfcrerp2", "https://tec.openplanner.team/stops/N103aeb"], ["https://tec.openplanner.team/stops/X869aba", "https://tec.openplanner.team/stops/X869adb"], ["https://tec.openplanner.team/stops/LRObruy1", "https://tec.openplanner.team/stops/LROmorf1"], ["https://tec.openplanner.team/stops/N501jra", "https://tec.openplanner.team/stops/N501jrb"], ["https://tec.openplanner.team/stops/LREsech1", "https://tec.openplanner.team/stops/LREsp902"], ["https://tec.openplanner.team/stops/X858aga", "https://tec.openplanner.team/stops/X858agb"], ["https://tec.openplanner.team/stops/LJAchat1", "https://tec.openplanner.team/stops/LSWeg--3"], ["https://tec.openplanner.team/stops/X608arb", "https://tec.openplanner.team/stops/X608atb"], ["https://tec.openplanner.team/stops/Bottcro1", "https://tec.openplanner.team/stops/Botteco2"], ["https://tec.openplanner.team/stops/H2ch103b", "https://tec.openplanner.team/stops/H2ch109b"], ["https://tec.openplanner.team/stops/Clproi1", "https://tec.openplanner.team/stops/Clpsola1"], ["https://tec.openplanner.team/stops/Ladboti1", "https://tec.openplanner.team/stops/Ladboti2"], ["https://tec.openplanner.team/stops/NL76aab", "https://tec.openplanner.team/stops/NL76abb"], ["https://tec.openplanner.team/stops/Cmlavch1", "https://tec.openplanner.team/stops/NC02avb"], ["https://tec.openplanner.team/stops/LSZclem1", "https://tec.openplanner.team/stops/LSZdepo1"], ["https://tec.openplanner.team/stops/H1sy144a", "https://tec.openplanner.team/stops/H1sy147a"], ["https://tec.openplanner.team/stops/LELchap1", "https://tec.openplanner.team/stops/LELeg--2"], ["https://tec.openplanner.team/stops/X651agb", "https://tec.openplanner.team/stops/X669abd"], ["https://tec.openplanner.team/stops/H1gh150a", "https://tec.openplanner.team/stops/H1gh150b"], ["https://tec.openplanner.team/stops/H4ch116b", "https://tec.openplanner.team/stops/H4ch119a"], ["https://tec.openplanner.team/stops/Bborche2", "https://tec.openplanner.team/stops/Bbsicen2"], ["https://tec.openplanner.team/stops/Cmbborn2", "https://tec.openplanner.team/stops/Csufrom5"], ["https://tec.openplanner.team/stops/N550afa", "https://tec.openplanner.team/stops/N550aka"], ["https://tec.openplanner.team/stops/Lemlacr1", "https://tec.openplanner.team/stops/Lemmc--1"], ["https://tec.openplanner.team/stops/X754aab", "https://tec.openplanner.team/stops/X779ahb"], ["https://tec.openplanner.team/stops/Bviravi2", "https://tec.openplanner.team/stops/Bvircen2"], ["https://tec.openplanner.team/stops/Lemjoba1", "https://tec.openplanner.team/stops/Lemmath1"], ["https://tec.openplanner.team/stops/H5bs102a", "https://tec.openplanner.team/stops/H5bs104a"], ["https://tec.openplanner.team/stops/Bsmgmar1", "https://tec.openplanner.team/stops/Bvilpar1"], ["https://tec.openplanner.team/stops/LEN183-2", "https://tec.openplanner.team/stops/LSGsurf2"], ["https://tec.openplanner.team/stops/H1sp355a", "https://tec.openplanner.team/stops/H1sp356b"], ["https://tec.openplanner.team/stops/X601bya", "https://tec.openplanner.team/stops/X601cga"], ["https://tec.openplanner.team/stops/X657ada", "https://tec.openplanner.team/stops/X657adb"], ["https://tec.openplanner.team/stops/N244afa", "https://tec.openplanner.team/stops/N244aob"], ["https://tec.openplanner.team/stops/Cchriga2", "https://tec.openplanner.team/stops/Cmlecha1"], ["https://tec.openplanner.team/stops/Bnivn972", "https://tec.openplanner.team/stops/Bnivpal2"], ["https://tec.openplanner.team/stops/LFEland2", "https://tec.openplanner.team/stops/X597agb"], ["https://tec.openplanner.team/stops/H4pi133b", "https://tec.openplanner.team/stops/H4pi136b"], ["https://tec.openplanner.team/stops/Bllncom1", "https://tec.openplanner.team/stops/Bllnhoc2"], ["https://tec.openplanner.team/stops/Cmabegh1", "https://tec.openplanner.team/stops/CMprov2"], ["https://tec.openplanner.team/stops/N151ajb", "https://tec.openplanner.team/stops/N151ajd"], ["https://tec.openplanner.team/stops/N518abb", "https://tec.openplanner.team/stops/N519ahb"], ["https://tec.openplanner.team/stops/Cptcamb2", "https://tec.openplanner.team/stops/Cptchea1"], ["https://tec.openplanner.team/stops/Llghoub2", "https://tec.openplanner.team/stops/Llgstvi1"], ["https://tec.openplanner.team/stops/Lscstan1", "https://tec.openplanner.team/stops/Lscstan3"], ["https://tec.openplanner.team/stops/H4co148a", "https://tec.openplanner.team/stops/H4co162a"], ["https://tec.openplanner.team/stops/LSSfont1", "https://tec.openplanner.team/stops/LYEphar2"], ["https://tec.openplanner.team/stops/H1fl133c", "https://tec.openplanner.team/stops/H1fl133d"], ["https://tec.openplanner.team/stops/H5el116b", "https://tec.openplanner.team/stops/H5el117a"], ["https://tec.openplanner.team/stops/N351aga", "https://tec.openplanner.team/stops/N351ahb"], ["https://tec.openplanner.team/stops/N215acc", "https://tec.openplanner.team/stops/N215acd"], ["https://tec.openplanner.team/stops/Cmlhubi2", "https://tec.openplanner.team/stops/Cmlpche1"], ["https://tec.openplanner.team/stops/Cmldeto2", "https://tec.openplanner.team/stops/NC01afa"], ["https://tec.openplanner.team/stops/N531afh", "https://tec.openplanner.team/stops/N531ata"], ["https://tec.openplanner.team/stops/N505abb", "https://tec.openplanner.team/stops/N505aob"], ["https://tec.openplanner.team/stops/H2tr246b", "https://tec.openplanner.team/stops/H2tr254b"], ["https://tec.openplanner.team/stops/Ljucaba1", "https://tec.openplanner.team/stops/Ljuvert1"], ["https://tec.openplanner.team/stops/Bblafab1", "https://tec.openplanner.team/stops/Bblaqsj1"], ["https://tec.openplanner.team/stops/H1br123a", "https://tec.openplanner.team/stops/H1br123b"], ["https://tec.openplanner.team/stops/X342aab", "https://tec.openplanner.team/stops/X342aba"], ["https://tec.openplanner.team/stops/X911aia", "https://tec.openplanner.team/stops/X911aib"], ["https://tec.openplanner.team/stops/LHUaveu2", "https://tec.openplanner.team/stops/NL80acb"], ["https://tec.openplanner.team/stops/LHEhv--1", "https://tec.openplanner.team/stops/LHEhv--2"], ["https://tec.openplanner.team/stops/Bnivpla1", "https://tec.openplanner.team/stops/Bnivpla2"], ["https://tec.openplanner.team/stops/X892ahb", "https://tec.openplanner.team/stops/X892aja"], ["https://tec.openplanner.team/stops/H4ty328a", "https://tec.openplanner.team/stops/H4ty328b"], ["https://tec.openplanner.team/stops/X547aqb", "https://tec.openplanner.team/stops/X782aca"], ["https://tec.openplanner.team/stops/H2ha129d", "https://tec.openplanner.team/stops/H2ha138b"], ["https://tec.openplanner.team/stops/Cfaauln1", "https://tec.openplanner.team/stops/Cflspir1"], ["https://tec.openplanner.team/stops/LLnlimb1", "https://tec.openplanner.team/stops/LLnlimb2"], ["https://tec.openplanner.team/stops/N231aba", "https://tec.openplanner.team/stops/N231ada"], ["https://tec.openplanner.team/stops/X804ama", "https://tec.openplanner.team/stops/X804byb"], ["https://tec.openplanner.team/stops/N134alb", "https://tec.openplanner.team/stops/N135azb"], ["https://tec.openplanner.team/stops/X641acb", "https://tec.openplanner.team/stops/X641ada"], ["https://tec.openplanner.team/stops/H1fl138b", "https://tec.openplanner.team/stops/H1fl142b"], ["https://tec.openplanner.team/stops/X738aca", "https://tec.openplanner.team/stops/X738acb"], ["https://tec.openplanner.team/stops/N506aua", "https://tec.openplanner.team/stops/N506ava"], ["https://tec.openplanner.team/stops/Bgoestu1", "https://tec.openplanner.team/stops/Bgoevli2"], ["https://tec.openplanner.team/stops/Lbrrobe3", "https://tec.openplanner.team/stops/Lgrfort1"], ["https://tec.openplanner.team/stops/X808afa", "https://tec.openplanner.team/stops/X808afb"], ["https://tec.openplanner.team/stops/Bohnmes3", "https://tec.openplanner.team/stops/Bohnpla1"], ["https://tec.openplanner.team/stops/LVIecol2", "https://tec.openplanner.team/stops/LVIvert2"], ["https://tec.openplanner.team/stops/LCShoux2", "https://tec.openplanner.team/stops/LHHcite2"], ["https://tec.openplanner.team/stops/Cgxfo141", "https://tec.openplanner.team/stops/Csoforc1"], ["https://tec.openplanner.team/stops/X604ahb", "https://tec.openplanner.team/stops/X625agb"], ["https://tec.openplanner.team/stops/Cmaegal1", "https://tec.openplanner.team/stops/Cromart1"], ["https://tec.openplanner.team/stops/H4mb140a", "https://tec.openplanner.team/stops/H4mb143a"], ["https://tec.openplanner.team/stops/LmDgeme1", "https://tec.openplanner.team/stops/LmYkreu1"], ["https://tec.openplanner.team/stops/Ckevela2", "https://tec.openplanner.team/stops/N530aia"], ["https://tec.openplanner.team/stops/N232awb", "https://tec.openplanner.team/stops/N232cca"], ["https://tec.openplanner.team/stops/X601bea", "https://tec.openplanner.team/stops/X601ceb"], ["https://tec.openplanner.team/stops/LFFmarc1", "https://tec.openplanner.team/stops/LFFmarc3"], ["https://tec.openplanner.team/stops/N219abb", "https://tec.openplanner.team/stops/N219aea"], ["https://tec.openplanner.team/stops/H2bh109b", "https://tec.openplanner.team/stops/H2bh119b"], ["https://tec.openplanner.team/stops/LHHcite1", "https://tec.openplanner.team/stops/LHHroua1"], ["https://tec.openplanner.team/stops/H1le125b", "https://tec.openplanner.team/stops/H1og133a"], ["https://tec.openplanner.team/stops/Blemhon2", "https://tec.openplanner.team/stops/Blemmar1"], ["https://tec.openplanner.team/stops/Blmlbif1", "https://tec.openplanner.team/stops/Brixpbs1"], ["https://tec.openplanner.team/stops/LCPscay2", "https://tec.openplanner.team/stops/LCPvign1"], ["https://tec.openplanner.team/stops/H4mt219b", "https://tec.openplanner.team/stops/H4mx118b"], ["https://tec.openplanner.team/stops/Bhenard2", "https://tec.openplanner.team/stops/Bhenard3"], ["https://tec.openplanner.team/stops/LeUlasc2", "https://tec.openplanner.team/stops/LeUlasc3"], ["https://tec.openplanner.team/stops/X671abb", "https://tec.openplanner.team/stops/X671ada"], ["https://tec.openplanner.team/stops/LaMthei1", "https://tec.openplanner.team/stops/LaMthei2"], ["https://tec.openplanner.team/stops/N501iob", "https://tec.openplanner.team/stops/N501ira"], ["https://tec.openplanner.team/stops/LThplen2", "https://tec.openplanner.team/stops/LThpoli1"], ["https://tec.openplanner.team/stops/LClange2", "https://tec.openplanner.team/stops/LFdeg--1"], ["https://tec.openplanner.team/stops/H4bo111a", "https://tec.openplanner.team/stops/H4bo119a"], ["https://tec.openplanner.team/stops/LJEchat1", "https://tec.openplanner.team/stops/LJEchat3"], ["https://tec.openplanner.team/stops/Ctrpn1", "https://tec.openplanner.team/stops/Ctrvert2"], ["https://tec.openplanner.team/stops/LWAvisi1", "https://tec.openplanner.team/stops/LWAvisi2"], ["https://tec.openplanner.team/stops/H2hp119b", "https://tec.openplanner.team/stops/H2hp261a"], ["https://tec.openplanner.team/stops/X804bpa", "https://tec.openplanner.team/stops/X804bqb"], ["https://tec.openplanner.team/stops/Bwatcpr1", "https://tec.openplanner.team/stops/Bwatcro2"], ["https://tec.openplanner.team/stops/N212afa", "https://tec.openplanner.team/stops/N212atb"], ["https://tec.openplanner.team/stops/H1by106a", "https://tec.openplanner.team/stops/H1by108e"], ["https://tec.openplanner.team/stops/H3so155a", "https://tec.openplanner.team/stops/H3so179a"], ["https://tec.openplanner.team/stops/H1fr133a", "https://tec.openplanner.team/stops/H1no143a"], ["https://tec.openplanner.team/stops/X805aha", "https://tec.openplanner.team/stops/X805ahb"], ["https://tec.openplanner.team/stops/N153adb", "https://tec.openplanner.team/stops/N154aca"], ["https://tec.openplanner.team/stops/N557aea", "https://tec.openplanner.team/stops/N557aeb"], ["https://tec.openplanner.team/stops/X765aba", "https://tec.openplanner.team/stops/X791abb"], ["https://tec.openplanner.team/stops/Blimch%C3%A21", "https://tec.openplanner.team/stops/Blimch%C3%A22"], ["https://tec.openplanner.team/stops/H4wi170a", "https://tec.openplanner.team/stops/H4wi170b"], ["https://tec.openplanner.team/stops/N557aad", "https://tec.openplanner.team/stops/N557aha"], ["https://tec.openplanner.team/stops/H2hg153b", "https://tec.openplanner.team/stops/H2sv215b"], ["https://tec.openplanner.team/stops/Bgdhlai1", "https://tec.openplanner.team/stops/Bthsvil1"], ["https://tec.openplanner.team/stops/Cchwarm2", "https://tec.openplanner.team/stops/Cmtdepo1"], ["https://tec.openplanner.team/stops/X736aab", "https://tec.openplanner.team/stops/X945ada"], ["https://tec.openplanner.team/stops/H1vb147a", "https://tec.openplanner.team/stops/H1vb147b"], ["https://tec.openplanner.team/stops/X790ama", "https://tec.openplanner.team/stops/X793aab"], ["https://tec.openplanner.team/stops/N514aha", "https://tec.openplanner.team/stops/N514ahb"], ["https://tec.openplanner.team/stops/Cgocrus1", "https://tec.openplanner.team/stops/Cgon52"], ["https://tec.openplanner.team/stops/H2hg267a", "https://tec.openplanner.team/stops/H2ll176b"], ["https://tec.openplanner.team/stops/N535ama", "https://tec.openplanner.team/stops/N535amb"], ["https://tec.openplanner.team/stops/H4fr385a", "https://tec.openplanner.team/stops/H4ka176a"], ["https://tec.openplanner.team/stops/X640aqb", "https://tec.openplanner.team/stops/X640aub"], ["https://tec.openplanner.team/stops/X658afb", "https://tec.openplanner.team/stops/X659aka"], ["https://tec.openplanner.team/stops/H5at104a", "https://tec.openplanner.team/stops/H5at131a"], ["https://tec.openplanner.team/stops/N115aab", "https://tec.openplanner.team/stops/N147aea"], ["https://tec.openplanner.team/stops/H1hr117a", "https://tec.openplanner.team/stops/H1hr126a"], ["https://tec.openplanner.team/stops/Lvcbalt1", "https://tec.openplanner.team/stops/Lvcecol2"], ["https://tec.openplanner.team/stops/X837aab", "https://tec.openplanner.team/stops/X839aga"], ["https://tec.openplanner.team/stops/LTywaut1", "https://tec.openplanner.team/stops/LTywaut2"], ["https://tec.openplanner.team/stops/X806akb", "https://tec.openplanner.team/stops/X806akc"], ["https://tec.openplanner.team/stops/LNCvann1", "https://tec.openplanner.team/stops/LRRmeta1"], ["https://tec.openplanner.team/stops/H3so168b", "https://tec.openplanner.team/stops/H3so176b"], ["https://tec.openplanner.team/stops/H4fr142a", "https://tec.openplanner.team/stops/H4fr146a"], ["https://tec.openplanner.team/stops/Bbldmun1", "https://tec.openplanner.team/stops/Bnetrbr2"], ["https://tec.openplanner.team/stops/H4ob109a", "https://tec.openplanner.team/stops/H4ob110b"], ["https://tec.openplanner.team/stops/X666aba", "https://tec.openplanner.team/stops/X666abb"], ["https://tec.openplanner.team/stops/X342afa", "https://tec.openplanner.team/stops/X342aga"], ["https://tec.openplanner.team/stops/H3so154a", "https://tec.openplanner.team/stops/H3so168a"], ["https://tec.openplanner.team/stops/Lvtcalv1", "https://tec.openplanner.team/stops/Lvtegli*"], ["https://tec.openplanner.team/stops/N874aja", "https://tec.openplanner.team/stops/N874akb"], ["https://tec.openplanner.team/stops/X775aja", "https://tec.openplanner.team/stops/X775ajb"], ["https://tec.openplanner.team/stops/Chhprai1", "https://tec.openplanner.team/stops/Chhprai2"], ["https://tec.openplanner.team/stops/X725aeb", "https://tec.openplanner.team/stops/X725aza"], ["https://tec.openplanner.team/stops/H4jm116a", "https://tec.openplanner.team/stops/H4we136b"], ["https://tec.openplanner.team/stops/Blmlbif1", "https://tec.openplanner.team/stops/Blmlbif2"], ["https://tec.openplanner.team/stops/LBUchpl2", "https://tec.openplanner.team/stops/NL30afb"], ["https://tec.openplanner.team/stops/Buccplj1", "https://tec.openplanner.team/stops/Buccron1"], ["https://tec.openplanner.team/stops/N167aba", "https://tec.openplanner.team/stops/N550ada"], ["https://tec.openplanner.team/stops/N125aaa", "https://tec.openplanner.team/stops/N125abb"], ["https://tec.openplanner.team/stops/X801aja", "https://tec.openplanner.team/stops/X801boa"], ["https://tec.openplanner.team/stops/Crodrai2", "https://tec.openplanner.team/stops/Crowilb1"], ["https://tec.openplanner.team/stops/N425afa", "https://tec.openplanner.team/stops/N425aga"], ["https://tec.openplanner.team/stops/N155aaa", "https://tec.openplanner.team/stops/N155aja"], ["https://tec.openplanner.team/stops/H1pd144a", "https://tec.openplanner.team/stops/H1pd144b"], ["https://tec.openplanner.team/stops/Bhalath1", "https://tec.openplanner.team/stops/Bhaldbo1"], ["https://tec.openplanner.team/stops/N211akb", "https://tec.openplanner.team/stops/N211aya"], ["https://tec.openplanner.team/stops/LBEbelf1", "https://tec.openplanner.team/stops/LBEtilf1"], ["https://tec.openplanner.team/stops/Ceregl2", "https://tec.openplanner.team/stops/Cerrver3"], ["https://tec.openplanner.team/stops/Lcacris1", "https://tec.openplanner.team/stops/Lvchaus2"], ["https://tec.openplanner.team/stops/Lthfren2", "https://tec.openplanner.team/stops/Lthgros1"], ["https://tec.openplanner.team/stops/LSZclem2", "https://tec.openplanner.team/stops/LSZheid1"], ["https://tec.openplanner.team/stops/LTyh51-1", "https://tec.openplanner.team/stops/LTywyna2"], ["https://tec.openplanner.team/stops/Cdamarc2", "https://tec.openplanner.team/stops/Cdaptca4"], ["https://tec.openplanner.team/stops/H1fv102a", "https://tec.openplanner.team/stops/H1ls105b"], ["https://tec.openplanner.team/stops/LFothie1", "https://tec.openplanner.team/stops/LFothie2"], ["https://tec.openplanner.team/stops/Lrocort1", "https://tec.openplanner.team/stops/Lronamo2"], ["https://tec.openplanner.team/stops/N534asb", "https://tec.openplanner.team/stops/N543cka"], ["https://tec.openplanner.team/stops/N569aea", "https://tec.openplanner.team/stops/N569aeb"], ["https://tec.openplanner.team/stops/H4ta133a", "https://tec.openplanner.team/stops/H4ta133b"], ["https://tec.openplanner.team/stops/H1sb146a", "https://tec.openplanner.team/stops/H1sb146b"], ["https://tec.openplanner.team/stops/N539aia", "https://tec.openplanner.team/stops/N539aoa"], ["https://tec.openplanner.team/stops/LLxcbr-2", "https://tec.openplanner.team/stops/LWOwonc1"], ["https://tec.openplanner.team/stops/Bbchmin1", "https://tec.openplanner.team/stops/Bbchndb2"], ["https://tec.openplanner.team/stops/Caicalv1", "https://tec.openplanner.team/stops/Crsprai3"], ["https://tec.openplanner.team/stops/Cgzcour2", "https://tec.openplanner.team/stops/Cgzplac6"], ["https://tec.openplanner.team/stops/Lhubriq1", "https://tec.openplanner.team/stops/Lhuecol2"], ["https://tec.openplanner.team/stops/LSGeg--2", "https://tec.openplanner.team/stops/LSGeg--4"], ["https://tec.openplanner.team/stops/LgAdorf1", "https://tec.openplanner.team/stops/LgAnr492"], ["https://tec.openplanner.team/stops/Cjxcoll2", "https://tec.openplanner.team/stops/Cjxvalh1"], ["https://tec.openplanner.team/stops/LAWeg--2", "https://tec.openplanner.team/stops/LAWmc--4"], ["https://tec.openplanner.team/stops/X223aca", "https://tec.openplanner.team/stops/X223acb"], ["https://tec.openplanner.team/stops/Cnaplan1", "https://tec.openplanner.team/stops/Cnaplan2"], ["https://tec.openplanner.team/stops/Cauromi2", "https://tec.openplanner.team/stops/N543aoa"], ["https://tec.openplanner.team/stops/Bengvma2", "https://tec.openplanner.team/stops/H1en104d"], ["https://tec.openplanner.team/stops/X812acb", "https://tec.openplanner.team/stops/X813adb"], ["https://tec.openplanner.team/stops/H1fr117b", "https://tec.openplanner.team/stops/H1fr151a"], ["https://tec.openplanner.team/stops/N516aca", "https://tec.openplanner.team/stops/N516ada"], ["https://tec.openplanner.team/stops/H4mo190a", "https://tec.openplanner.team/stops/H4mo206b"], ["https://tec.openplanner.team/stops/Cgzblob2", "https://tec.openplanner.team/stops/Cthha502"], ["https://tec.openplanner.team/stops/X736agb", "https://tec.openplanner.team/stops/X753abb"], ["https://tec.openplanner.team/stops/LCLacbi2", "https://tec.openplanner.team/stops/LCLstat1"], ["https://tec.openplanner.team/stops/Bbxltou1", "https://tec.openplanner.team/stops/Bbxltrv2"], ["https://tec.openplanner.team/stops/N204ahb", "https://tec.openplanner.team/stops/N204akb"], ["https://tec.openplanner.team/stops/Ctychen3", "https://tec.openplanner.team/stops/N106aea"], ["https://tec.openplanner.team/stops/LEBeg--2", "https://tec.openplanner.team/stops/LWOmart2"], ["https://tec.openplanner.team/stops/H2lc168a", "https://tec.openplanner.team/stops/H2lc170a"], ["https://tec.openplanner.team/stops/H1fl133d", "https://tec.openplanner.team/stops/H1je223b"], ["https://tec.openplanner.team/stops/Cgyhstj2", "https://tec.openplanner.team/stops/Cgyplvi2"], ["https://tec.openplanner.team/stops/Cdajume2", "https://tec.openplanner.team/stops/Cdanvpr2"], ["https://tec.openplanner.team/stops/Cmldupu1", "https://tec.openplanner.team/stops/NC01afb"], ["https://tec.openplanner.team/stops/X637abb", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/LHUfrai1", "https://tec.openplanner.team/stops/LHUpsar2"], ["https://tec.openplanner.team/stops/H2ca104a", "https://tec.openplanner.team/stops/H2mo129a"], ["https://tec.openplanner.team/stops/LFFmarc3", "https://tec.openplanner.team/stops/LFFpier2"], ["https://tec.openplanner.team/stops/LeUnisp1", "https://tec.openplanner.team/stops/LeUroll1"], ["https://tec.openplanner.team/stops/N513agc", "https://tec.openplanner.team/stops/N513agd"], ["https://tec.openplanner.team/stops/H4gz115b", "https://tec.openplanner.team/stops/H4ms166a"], ["https://tec.openplanner.team/stops/LLRrape1", "https://tec.openplanner.team/stops/LLRrape3"], ["https://tec.openplanner.team/stops/LNAbras3", "https://tec.openplanner.team/stops/LScgore2"], ["https://tec.openplanner.team/stops/Claptcf1", "https://tec.openplanner.team/stops/Claptcf2"], ["https://tec.openplanner.team/stops/N557aia", "https://tec.openplanner.team/stops/N557aja"], ["https://tec.openplanner.team/stops/Cchblne2", "https://tec.openplanner.team/stops/Cchjaur2"], ["https://tec.openplanner.team/stops/N501mta", "https://tec.openplanner.team/stops/N501mtc"], ["https://tec.openplanner.team/stops/Lvtbocl1", "https://tec.openplanner.team/stops/Lvtboux2"], ["https://tec.openplanner.team/stops/N553ada", "https://tec.openplanner.team/stops/N553afa"], ["https://tec.openplanner.team/stops/N519ajb", "https://tec.openplanner.team/stops/N525afb"], ["https://tec.openplanner.team/stops/N565aab", "https://tec.openplanner.team/stops/N565adb"], ["https://tec.openplanner.team/stops/Bflegar6", "https://tec.openplanner.team/stops/Cflbrun1"], ["https://tec.openplanner.team/stops/Clgmaco2", "https://tec.openplanner.team/stops/Ctipoui2"], ["https://tec.openplanner.team/stops/LFyWarc1", "https://tec.openplanner.team/stops/LWamass2"], ["https://tec.openplanner.team/stops/N315aaa", "https://tec.openplanner.team/stops/N365aaa"], ["https://tec.openplanner.team/stops/Csecoup2", "https://tec.openplanner.team/stops/Csefour2"], ["https://tec.openplanner.team/stops/Lvcvand2", "https://tec.openplanner.team/stops/Lvcvesd*"], ["https://tec.openplanner.team/stops/LBOande1", "https://tec.openplanner.team/stops/LWRbomb3"], ["https://tec.openplanner.team/stops/N229ahb", "https://tec.openplanner.team/stops/N229aib"], ["https://tec.openplanner.team/stops/H4ty341a", "https://tec.openplanner.team/stops/H4ty358a"], ["https://tec.openplanner.team/stops/Bdlmegl2", "https://tec.openplanner.team/stops/Bdvmsar1"], ["https://tec.openplanner.team/stops/H4mx115a", "https://tec.openplanner.team/stops/H4po127b"], ["https://tec.openplanner.team/stops/X615aua", "https://tec.openplanner.team/stops/X615aub"], ["https://tec.openplanner.team/stops/X663ajb", "https://tec.openplanner.team/stops/X663alb"], ["https://tec.openplanner.team/stops/H4ca120a", "https://tec.openplanner.team/stops/H4ca123a"], ["https://tec.openplanner.team/stops/LOCerzy1", "https://tec.openplanner.team/stops/LOCerzy2"], ["https://tec.openplanner.team/stops/H4ln128a", "https://tec.openplanner.team/stops/H4ne144b"], ["https://tec.openplanner.team/stops/Bmlnpab1", "https://tec.openplanner.team/stops/Bptbbie2"], ["https://tec.openplanner.team/stops/X925ada", "https://tec.openplanner.team/stops/X925amb"], ["https://tec.openplanner.team/stops/LWEcarr1", "https://tec.openplanner.team/stops/LWEchat2"], ["https://tec.openplanner.team/stops/CMpetr1", "https://tec.openplanner.team/stops/CMpetr2"], ["https://tec.openplanner.team/stops/X801apb", "https://tec.openplanner.team/stops/X889aab"], ["https://tec.openplanner.team/stops/H4og212a", "https://tec.openplanner.team/stops/H4vd230a"], ["https://tec.openplanner.team/stops/H2ca115a", "https://tec.openplanner.team/stops/H2ca116a"], ["https://tec.openplanner.team/stops/H4th140a", "https://tec.openplanner.team/stops/H4th142b"], ["https://tec.openplanner.team/stops/Bllnpaf4", "https://tec.openplanner.team/stops/Bmsgaxp2"], ["https://tec.openplanner.team/stops/H4ka400a", "https://tec.openplanner.team/stops/H4ty397a"], ["https://tec.openplanner.team/stops/N135ayb", "https://tec.openplanner.team/stops/N135bga"], ["https://tec.openplanner.team/stops/Ltiegli1", "https://tec.openplanner.team/stops/Ltigare1"], ["https://tec.openplanner.team/stops/Cmlgoff2", "https://tec.openplanner.team/stops/Cmltomb2"], ["https://tec.openplanner.team/stops/N538ara", "https://tec.openplanner.team/stops/N538asa"], ["https://tec.openplanner.team/stops/H4co106a", "https://tec.openplanner.team/stops/H4co110b"], ["https://tec.openplanner.team/stops/N167aab", "https://tec.openplanner.team/stops/N167ahb"], ["https://tec.openplanner.team/stops/H1fv101a", "https://tec.openplanner.team/stops/H1fv103b"], ["https://tec.openplanner.team/stops/LSZeg--1", "https://tec.openplanner.team/stops/LSZmonu5"], ["https://tec.openplanner.team/stops/H1te177a", "https://tec.openplanner.team/stops/H1te186b"], ["https://tec.openplanner.team/stops/X982bsa", "https://tec.openplanner.team/stops/X982bsb"], ["https://tec.openplanner.team/stops/Cwfbarr2", "https://tec.openplanner.team/stops/N584bqa"], ["https://tec.openplanner.team/stops/LOCeg--1", "https://tec.openplanner.team/stops/LOCerzy1"], ["https://tec.openplanner.team/stops/X850afb", "https://tec.openplanner.team/stops/X850alb"], ["https://tec.openplanner.team/stops/LFMstat1", "https://tec.openplanner.team/stops/LFPho8a1"], ["https://tec.openplanner.team/stops/H4ty299c", "https://tec.openplanner.team/stops/H4wc372a"], ["https://tec.openplanner.team/stops/H5is168b", "https://tec.openplanner.team/stops/H5is174a"], ["https://tec.openplanner.team/stops/N241agb", "https://tec.openplanner.team/stops/N270abb"], ["https://tec.openplanner.team/stops/X343aic", "https://tec.openplanner.team/stops/X346abb"], ["https://tec.openplanner.team/stops/X224afa", "https://tec.openplanner.team/stops/X398aha"], ["https://tec.openplanner.team/stops/X684aba", "https://tec.openplanner.team/stops/X685aia"], ["https://tec.openplanner.team/stops/X748abb", "https://tec.openplanner.team/stops/X748aea"], ["https://tec.openplanner.team/stops/Clomari1", "https://tec.openplanner.team/stops/Clostan2"], ["https://tec.openplanner.team/stops/Lkivolg2", "https://tec.openplanner.team/stops/Louazot1"], ["https://tec.openplanner.team/stops/LCxcour2", "https://tec.openplanner.team/stops/LCxcouv2"], ["https://tec.openplanner.team/stops/Brebrog1", "https://tec.openplanner.team/stops/H3br103b"], ["https://tec.openplanner.team/stops/Bbounci1", "https://tec.openplanner.team/stops/Btanvil2"], ["https://tec.openplanner.team/stops/Bohnrpl2", "https://tec.openplanner.team/stops/Bwatgge2"], ["https://tec.openplanner.team/stops/Cjuepee1", "https://tec.openplanner.team/stops/CMbert2"], ["https://tec.openplanner.team/stops/Caigibe1", "https://tec.openplanner.team/stops/NC11ana"], ["https://tec.openplanner.team/stops/H5bl117b", "https://tec.openplanner.team/stops/H5bl144b"], ["https://tec.openplanner.team/stops/Baudstr1", "https://tec.openplanner.team/stops/Baudstr2"], ["https://tec.openplanner.team/stops/N548aib", "https://tec.openplanner.team/stops/N548akb"], ["https://tec.openplanner.team/stops/N211aeb", "https://tec.openplanner.team/stops/N211afa"], ["https://tec.openplanner.team/stops/NL57aia", "https://tec.openplanner.team/stops/NL57aja"], ["https://tec.openplanner.team/stops/X754amb", "https://tec.openplanner.team/stops/X754ana"], ["https://tec.openplanner.team/stops/Cfosurs1", "https://tec.openplanner.team/stops/Cfosurs2"], ["https://tec.openplanner.team/stops/Bmalsmc1", "https://tec.openplanner.team/stops/Bmalsme2"], ["https://tec.openplanner.team/stops/X979aaa", "https://tec.openplanner.team/stops/X979aca"], ["https://tec.openplanner.team/stops/LrAneud2", "https://tec.openplanner.team/stops/LrAtitf1"], ["https://tec.openplanner.team/stops/X781aeb", "https://tec.openplanner.team/stops/X781aga"], ["https://tec.openplanner.team/stops/LNIbas-1", "https://tec.openplanner.team/stops/LSZstoc1"], ["https://tec.openplanner.team/stops/X784aha", "https://tec.openplanner.team/stops/X784akb"], ["https://tec.openplanner.team/stops/H5wo122a", "https://tec.openplanner.team/stops/H5wo133b"], ["https://tec.openplanner.team/stops/NB33aja", "https://tec.openplanner.team/stops/NB33ala"], ["https://tec.openplanner.team/stops/X760afb", "https://tec.openplanner.team/stops/X788aea"], ["https://tec.openplanner.team/stops/LhPkirc2", "https://tec.openplanner.team/stops/LvAwere2"], ["https://tec.openplanner.team/stops/X601aba", "https://tec.openplanner.team/stops/X601acb"], ["https://tec.openplanner.team/stops/Llghoch1", "https://tec.openplanner.team/stops/Llgsevr4"], ["https://tec.openplanner.team/stops/Ctubpos3", "https://tec.openplanner.team/stops/Ctuyser2"], ["https://tec.openplanner.team/stops/X661aba", "https://tec.openplanner.team/stops/X661abb"], ["https://tec.openplanner.team/stops/Bmrlhan3", "https://tec.openplanner.team/stops/Bmrlhan4"], ["https://tec.openplanner.team/stops/Blascvi2", "https://tec.openplanner.team/stops/Blaspch2"], ["https://tec.openplanner.team/stops/N150aca", "https://tec.openplanner.team/stops/N150aeb"], ["https://tec.openplanner.team/stops/H4av103b", "https://tec.openplanner.team/stops/H4wt160b"], ["https://tec.openplanner.team/stops/H1mj129b", "https://tec.openplanner.team/stops/H1ml112b"], ["https://tec.openplanner.team/stops/X818aba", "https://tec.openplanner.team/stops/X818ada"], ["https://tec.openplanner.team/stops/NL80aab", "https://tec.openplanner.team/stops/NL80aba"], ["https://tec.openplanner.team/stops/N115aba", "https://tec.openplanner.team/stops/N115abb"], ["https://tec.openplanner.team/stops/X782afa", "https://tec.openplanner.team/stops/X782afb"], ["https://tec.openplanner.team/stops/LON21--2", "https://tec.openplanner.team/stops/LWamass1"], ["https://tec.openplanner.team/stops/LMgkrui2", "https://tec.openplanner.team/stops/LMgwith1"], ["https://tec.openplanner.team/stops/NH01aia", "https://tec.openplanner.team/stops/NH01aib"], ["https://tec.openplanner.team/stops/Bhmmmon1", "https://tec.openplanner.team/stops/Bhmmmon2"], ["https://tec.openplanner.team/stops/Lpegole1", "https://tec.openplanner.team/stops/Lpeptwa1"], ["https://tec.openplanner.team/stops/LREheyd1", "https://tec.openplanner.team/stops/LREsp902"], ["https://tec.openplanner.team/stops/X809aab", "https://tec.openplanner.team/stops/X812bga"], ["https://tec.openplanner.team/stops/H4ka175a", "https://tec.openplanner.team/stops/H4ob109a"], ["https://tec.openplanner.team/stops/H1br123a", "https://tec.openplanner.team/stops/H1vs144a"], ["https://tec.openplanner.team/stops/H3go102a", "https://tec.openplanner.team/stops/H3go104a"], ["https://tec.openplanner.team/stops/LRmhage6", "https://tec.openplanner.team/stops/LRmsmvo3"], ["https://tec.openplanner.team/stops/LLYcalv2", "https://tec.openplanner.team/stops/LLYhoch1"], ["https://tec.openplanner.team/stops/LJvmart1", "https://tec.openplanner.team/stops/X576aba"], ["https://tec.openplanner.team/stops/N287aab", "https://tec.openplanner.team/stops/N287abb"], ["https://tec.openplanner.team/stops/N103aib", "https://tec.openplanner.team/stops/N104ada"], ["https://tec.openplanner.team/stops/H1hy125a", "https://tec.openplanner.team/stops/H1hy125b"], ["https://tec.openplanner.team/stops/Bgoegma1", "https://tec.openplanner.team/stops/Bpienod2"], ["https://tec.openplanner.team/stops/LBTchai2", "https://tec.openplanner.team/stops/LBTchai3"], ["https://tec.openplanner.team/stops/X811ahb", "https://tec.openplanner.team/stops/X834abb"], ["https://tec.openplanner.team/stops/Ccoha601", "https://tec.openplanner.team/stops/Ctrepin2"], ["https://tec.openplanner.team/stops/X638aeb", "https://tec.openplanner.team/stops/X638afa"], ["https://tec.openplanner.team/stops/Lmofays1", "https://tec.openplanner.team/stops/Lmofays2"], ["https://tec.openplanner.team/stops/H2jo163c", "https://tec.openplanner.team/stops/H2lh126a"], ["https://tec.openplanner.team/stops/LCRf14-1", "https://tec.openplanner.team/stops/LCRfavr2"], ["https://tec.openplanner.team/stops/Lvegc--6", "https://tec.openplanner.team/stops/Lveyser1"], ["https://tec.openplanner.team/stops/Bcrncjo1", "https://tec.openplanner.team/stops/Bcrncjo2"], ["https://tec.openplanner.team/stops/N507aha", "https://tec.openplanner.team/stops/N507aic"], ["https://tec.openplanner.team/stops/X601agb", "https://tec.openplanner.team/stops/X662ata"], ["https://tec.openplanner.team/stops/H4ta116b", "https://tec.openplanner.team/stops/H4ta124b"], ["https://tec.openplanner.team/stops/LAmvent2", "https://tec.openplanner.team/stops/LAmvent3"], ["https://tec.openplanner.team/stops/LSLfler1", "https://tec.openplanner.team/stops/LSLfler2"], ["https://tec.openplanner.team/stops/X773aga", "https://tec.openplanner.team/stops/X773aha"], ["https://tec.openplanner.team/stops/X634aja", "https://tec.openplanner.team/stops/X636aab"], ["https://tec.openplanner.team/stops/H4bs110b", "https://tec.openplanner.team/stops/H4bs111a"], ["https://tec.openplanner.team/stops/Bhtipir3", "https://tec.openplanner.team/stops/Bhtirin1"], ["https://tec.openplanner.team/stops/N565aic", "https://tec.openplanner.team/stops/N565aja"], ["https://tec.openplanner.team/stops/Bdoncen2", "https://tec.openplanner.team/stops/Bjcljau1"], ["https://tec.openplanner.team/stops/Cgostro1", "https://tec.openplanner.team/stops/Cgostro2"], ["https://tec.openplanner.team/stops/H4lp119b", "https://tec.openplanner.team/stops/H4pe125a"], ["https://tec.openplanner.team/stops/LHNwaut1", "https://tec.openplanner.team/stops/LHNwaut2"], ["https://tec.openplanner.team/stops/Csurela1", "https://tec.openplanner.team/stops/Csurela4"], ["https://tec.openplanner.team/stops/N509acb", "https://tec.openplanner.team/stops/N509afa"], ["https://tec.openplanner.team/stops/LBTwauc1", "https://tec.openplanner.team/stops/LCHfond1"], ["https://tec.openplanner.team/stops/LESslmo2", "https://tec.openplanner.team/stops/LTIdumo2"], ["https://tec.openplanner.team/stops/Bnivmfr1", "https://tec.openplanner.team/stops/Bnivmfr2"], ["https://tec.openplanner.team/stops/LWNwavr2", "https://tec.openplanner.team/stops/LWNwavr5"], ["https://tec.openplanner.team/stops/Cmbborn1", "https://tec.openplanner.team/stops/Csufrom6"], ["https://tec.openplanner.team/stops/LHMaube2", "https://tec.openplanner.team/stops/LRmmabr2"], ["https://tec.openplanner.team/stops/Ccstord2", "https://tec.openplanner.team/stops/Chhthui1"], ["https://tec.openplanner.team/stops/Ladlimi1", "https://tec.openplanner.team/stops/Lvefabr2"], ["https://tec.openplanner.team/stops/Cbfbies1", "https://tec.openplanner.team/stops/Cctberg2"], ["https://tec.openplanner.team/stops/LHdfays1", "https://tec.openplanner.team/stops/LHdkenn1"], ["https://tec.openplanner.team/stops/N501dha", "https://tec.openplanner.team/stops/N501ezb"], ["https://tec.openplanner.team/stops/LWOcomm2", "https://tec.openplanner.team/stops/LWOunio1"], ["https://tec.openplanner.team/stops/Lsecime2", "https://tec.openplanner.team/stops/Lsepudd1"], ["https://tec.openplanner.team/stops/LPLaube2", "https://tec.openplanner.team/stops/LPLroth1"], ["https://tec.openplanner.team/stops/Lreec--1", "https://tec.openplanner.team/stops/Lreec--2"], ["https://tec.openplanner.team/stops/LeYheid1", "https://tec.openplanner.team/stops/LeYwald1"], ["https://tec.openplanner.team/stops/LVtespo2", "https://tec.openplanner.team/stops/LVttarg2"], ["https://tec.openplanner.team/stops/H1hg179a", "https://tec.openplanner.team/stops/H1hm173a"], ["https://tec.openplanner.team/stops/Cfobriq1", "https://tec.openplanner.team/stops/Cfobriq2"], ["https://tec.openplanner.team/stops/N212ahb", "https://tec.openplanner.team/stops/N212aia"], ["https://tec.openplanner.team/stops/N548asb", "https://tec.openplanner.team/stops/N548ayb"], ["https://tec.openplanner.team/stops/Bbsgbos3", "https://tec.openplanner.team/stops/Bbsggot2"], ["https://tec.openplanner.team/stops/N163aba", "https://tec.openplanner.team/stops/N569ama"], ["https://tec.openplanner.team/stops/H1bl100a", "https://tec.openplanner.team/stops/H1bl107a"], ["https://tec.openplanner.team/stops/LBJapol1", "https://tec.openplanner.team/stops/LMAcime2"], ["https://tec.openplanner.team/stops/LAxbott2", "https://tec.openplanner.team/stops/LFsguil1"], ["https://tec.openplanner.team/stops/N424acb", "https://tec.openplanner.team/stops/NH01abc"], ["https://tec.openplanner.team/stops/H4cw104a", "https://tec.openplanner.team/stops/H4cw104b"], ["https://tec.openplanner.team/stops/N106aaa", "https://tec.openplanner.team/stops/N137acb"], ["https://tec.openplanner.team/stops/Cslbhau1", "https://tec.openplanner.team/stops/Cslegli2"], ["https://tec.openplanner.team/stops/N121aaa", "https://tec.openplanner.team/stops/N158abb"], ["https://tec.openplanner.team/stops/N120aja", "https://tec.openplanner.team/stops/N120ajb"], ["https://tec.openplanner.team/stops/X666aca", "https://tec.openplanner.team/stops/X666acb"], ["https://tec.openplanner.team/stops/H1tt104a", "https://tec.openplanner.team/stops/H1tt104b"], ["https://tec.openplanner.team/stops/Bbchmai2", "https://tec.openplanner.team/stops/Bhtibru1"], ["https://tec.openplanner.team/stops/Cmmecol1", "https://tec.openplanner.team/stops/Cmmtomb1"], ["https://tec.openplanner.team/stops/LPRecol1", "https://tec.openplanner.team/stops/LPRmoul2"], ["https://tec.openplanner.team/stops/N553aha", "https://tec.openplanner.team/stops/N553aqa"], ["https://tec.openplanner.team/stops/N214adb", "https://tec.openplanner.team/stops/N261aab"], ["https://tec.openplanner.team/stops/LOcalbe1", "https://tec.openplanner.team/stops/LTechpl2"], ["https://tec.openplanner.team/stops/X662aha", "https://tec.openplanner.team/stops/X662aob"], ["https://tec.openplanner.team/stops/X824aja", "https://tec.openplanner.team/stops/X824alb"], ["https://tec.openplanner.team/stops/X901ala", "https://tec.openplanner.team/stops/X901blb"], ["https://tec.openplanner.team/stops/LeLzost2", "https://tec.openplanner.team/stops/LkAbahn*"], ["https://tec.openplanner.team/stops/LmDdenk1", "https://tec.openplanner.team/stops/LmDkape2"], ["https://tec.openplanner.team/stops/H1fr116a", "https://tec.openplanner.team/stops/H1fr124a"], ["https://tec.openplanner.team/stops/Cmmlong1", "https://tec.openplanner.team/stops/Cmmpjou4"], ["https://tec.openplanner.team/stops/LHMhind1", "https://tec.openplanner.team/stops/LMNswar1"], ["https://tec.openplanner.team/stops/N547amb", "https://tec.openplanner.team/stops/N548aaa"], ["https://tec.openplanner.team/stops/N533aga", "https://tec.openplanner.team/stops/N533ahb"], ["https://tec.openplanner.team/stops/Lanegal1", "https://tec.openplanner.team/stops/Lanothe2"], ["https://tec.openplanner.team/stops/N550aab", "https://tec.openplanner.team/stops/N550ada"], ["https://tec.openplanner.team/stops/Cctjust2", "https://tec.openplanner.team/stops/Cctwaut2"], ["https://tec.openplanner.team/stops/LnEkirc3", "https://tec.openplanner.team/stops/LnEmett1"], ["https://tec.openplanner.team/stops/LSIespe1", "https://tec.openplanner.team/stops/LSIgehe1"], ["https://tec.openplanner.team/stops/H4fo117b", "https://tec.openplanner.team/stops/H4fo119b"], ["https://tec.openplanner.team/stops/LmYamel2", "https://tec.openplanner.team/stops/LwL100-1"], ["https://tec.openplanner.team/stops/H1ho122a", "https://tec.openplanner.team/stops/H1ho129a"], ["https://tec.openplanner.team/stops/LHUfont1", "https://tec.openplanner.team/stops/LStgare*"], ["https://tec.openplanner.team/stops/H5pe131a", "https://tec.openplanner.team/stops/H5pe151b"], ["https://tec.openplanner.team/stops/H3so161a", "https://tec.openplanner.team/stops/H3so161b"], ["https://tec.openplanner.team/stops/LHUbatt1", "https://tec.openplanner.team/stops/NL80aia"], ["https://tec.openplanner.team/stops/Bbchdev1", "https://tec.openplanner.team/stops/Bbchmin1"], ["https://tec.openplanner.team/stops/N121aja", "https://tec.openplanner.team/stops/N121ajc"], ["https://tec.openplanner.team/stops/Cgogrco1", "https://tec.openplanner.team/stops/Cgoobse1"], ["https://tec.openplanner.team/stops/H4ka181a", "https://tec.openplanner.team/stops/H4ka181b"], ["https://tec.openplanner.team/stops/H4ty319a", "https://tec.openplanner.team/stops/H4ty356a"], ["https://tec.openplanner.team/stops/N562afa", "https://tec.openplanner.team/stops/N562bkb"], ["https://tec.openplanner.team/stops/X891abb", "https://tec.openplanner.team/stops/X891ada"], ["https://tec.openplanner.team/stops/X790ada", "https://tec.openplanner.team/stops/X790adb"], ["https://tec.openplanner.team/stops/Crbegli1", "https://tec.openplanner.team/stops/Crbhurt1"], ["https://tec.openplanner.team/stops/X789aha", "https://tec.openplanner.team/stops/X789aia"], ["https://tec.openplanner.team/stops/H4rm111b", "https://tec.openplanner.team/stops/H4rm114b"], ["https://tec.openplanner.team/stops/LVEjard2", "https://tec.openplanner.team/stops/LVEroum1"], ["https://tec.openplanner.team/stops/H2mo143a", "https://tec.openplanner.team/stops/H2mo143b"], ["https://tec.openplanner.team/stops/N110aga", "https://tec.openplanner.team/stops/N110aha"], ["https://tec.openplanner.team/stops/X750bna", "https://tec.openplanner.team/stops/X784aaa"], ["https://tec.openplanner.team/stops/X774adc", "https://tec.openplanner.team/stops/X774add"], ["https://tec.openplanner.team/stops/H4gu108a", "https://tec.openplanner.team/stops/H4gu109a"], ["https://tec.openplanner.team/stops/Bixlozo2", "https://tec.openplanner.team/stops/Buccdef2"], ["https://tec.openplanner.team/stops/X669abc", "https://tec.openplanner.team/stops/X675aba"], ["https://tec.openplanner.team/stops/X741aaa", "https://tec.openplanner.team/stops/X741abb"], ["https://tec.openplanner.team/stops/Clbchba2", "https://tec.openplanner.team/stops/Cthstre1"], ["https://tec.openplanner.team/stops/LWEeg--1", "https://tec.openplanner.team/stops/LWEpl--1"], ["https://tec.openplanner.team/stops/Cralimi2", "https://tec.openplanner.team/stops/Cravign2"], ["https://tec.openplanner.team/stops/Llgtill2", "https://tec.openplanner.team/stops/Llgtunn2"], ["https://tec.openplanner.team/stops/Csepost1", "https://tec.openplanner.team/stops/Csepost2"], ["https://tec.openplanner.team/stops/N353aaa", "https://tec.openplanner.team/stops/N353afa"], ["https://tec.openplanner.team/stops/N145ada", "https://tec.openplanner.team/stops/N145aga"], ["https://tec.openplanner.team/stops/LJAfawe1", "https://tec.openplanner.team/stops/LJAhanq1"], ["https://tec.openplanner.team/stops/X659afa", "https://tec.openplanner.team/stops/X659afb"], ["https://tec.openplanner.team/stops/Bnivlpa1", "https://tec.openplanner.team/stops/Bnivzon1"], ["https://tec.openplanner.team/stops/X939aeb", "https://tec.openplanner.team/stops/X939afb"], ["https://tec.openplanner.team/stops/Clsferr1", "https://tec.openplanner.team/stops/Clsstpi1"], ["https://tec.openplanner.team/stops/LBjpech2", "https://tec.openplanner.team/stops/LLelans1"], ["https://tec.openplanner.team/stops/X801bia", "https://tec.openplanner.team/stops/X801bka"], ["https://tec.openplanner.team/stops/Crbecol1", "https://tec.openplanner.team/stops/Crbegli2"], ["https://tec.openplanner.team/stops/LJEchat1", "https://tec.openplanner.team/stops/LVEphar1"], ["https://tec.openplanner.team/stops/Bmarlor1", "https://tec.openplanner.team/stops/Bmarpla2"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X664aab"], ["https://tec.openplanner.team/stops/Lfhhosp1", "https://tec.openplanner.team/stops/Lfhpass2"], ["https://tec.openplanner.team/stops/X871aaa", "https://tec.openplanner.team/stops/X872aga"], ["https://tec.openplanner.team/stops/H1hl122a", "https://tec.openplanner.team/stops/H1vs145b"], ["https://tec.openplanner.team/stops/H1gh152b", "https://tec.openplanner.team/stops/H1gh166b"], ["https://tec.openplanner.team/stops/H1bb113a", "https://tec.openplanner.team/stops/H1ho123b"], ["https://tec.openplanner.team/stops/Lgrfalc2", "https://tec.openplanner.team/stops/Lgrrein1"], ["https://tec.openplanner.team/stops/H4bx167a", "https://tec.openplanner.team/stops/H4rx142a"], ["https://tec.openplanner.team/stops/X999afb", "https://tec.openplanner.team/stops/X999aoa"], ["https://tec.openplanner.team/stops/LRachen1", "https://tec.openplanner.team/stops/LRagrch2"], ["https://tec.openplanner.team/stops/X614agb", "https://tec.openplanner.team/stops/X615bhb"], ["https://tec.openplanner.team/stops/X758aaa", "https://tec.openplanner.team/stops/X758aha"], ["https://tec.openplanner.team/stops/LMOm64-1", "https://tec.openplanner.team/stops/LMOstat2"], ["https://tec.openplanner.team/stops/X826aab", "https://tec.openplanner.team/stops/X826aha"], ["https://tec.openplanner.team/stops/Cgocitn1", "https://tec.openplanner.team/stops/Cgocrus1"], ["https://tec.openplanner.team/stops/X724aha", "https://tec.openplanner.team/stops/X766aha"], ["https://tec.openplanner.team/stops/LTRchpl2", "https://tec.openplanner.team/stops/LTRmosb2"], ["https://tec.openplanner.team/stops/Chpceri1", "https://tec.openplanner.team/stops/Chprobi2"], ["https://tec.openplanner.team/stops/H2mo124a", "https://tec.openplanner.team/stops/H2mo130c"], ["https://tec.openplanner.team/stops/N229aib", "https://tec.openplanner.team/stops/N229apa"], ["https://tec.openplanner.team/stops/Cmtrneu1", "https://tec.openplanner.team/stops/Cmtrneu2"], ["https://tec.openplanner.team/stops/Cchparc3", "https://tec.openplanner.team/stops/CMparc2"], ["https://tec.openplanner.team/stops/LVIhv--2", "https://tec.openplanner.team/stops/LVIsouv1"], ["https://tec.openplanner.team/stops/Chpplac1", "https://tec.openplanner.team/stops/Cmesafi1"], ["https://tec.openplanner.team/stops/N543cka", "https://tec.openplanner.team/stops/N543coa"], ["https://tec.openplanner.team/stops/Cfocmed2", "https://tec.openplanner.team/stops/Cfojoli1"], ["https://tec.openplanner.team/stops/X804boa", "https://tec.openplanner.team/stops/X804bra"], ["https://tec.openplanner.team/stops/H2bh108b", "https://tec.openplanner.team/stops/H2bh121a"], ["https://tec.openplanner.team/stops/LTamag1", "https://tec.openplanner.team/stops/LTamoul2"], ["https://tec.openplanner.team/stops/N211aka", "https://tec.openplanner.team/stops/N225aeb"], ["https://tec.openplanner.team/stops/X979aea", "https://tec.openplanner.team/stops/X979aob"], ["https://tec.openplanner.team/stops/LpEbins1", "https://tec.openplanner.team/stops/LrTbahn1"], ["https://tec.openplanner.team/stops/H1bu139a", "https://tec.openplanner.team/stops/H1bu142b"], ["https://tec.openplanner.team/stops/H1wa135a", "https://tec.openplanner.team/stops/H1wa144b"], ["https://tec.openplanner.team/stops/H1je212a", "https://tec.openplanner.team/stops/H1je212b"], ["https://tec.openplanner.team/stops/N106aaa", "https://tec.openplanner.team/stops/N106aba"], ["https://tec.openplanner.team/stops/Bwatfon1", "https://tec.openplanner.team/stops/Bwatpcs2"], ["https://tec.openplanner.team/stops/Bixleix1", "https://tec.openplanner.team/stops/Bixlfla2"], ["https://tec.openplanner.team/stops/X747ahb", "https://tec.openplanner.team/stops/X747aib"], ["https://tec.openplanner.team/stops/Bbealou2", "https://tec.openplanner.team/stops/Bbeapim1"], ["https://tec.openplanner.team/stops/Cfcpla2", "https://tec.openplanner.team/stops/Cfcplac4"], ["https://tec.openplanner.team/stops/Clogfay1", "https://tec.openplanner.team/stops/Clojone2"], ["https://tec.openplanner.team/stops/N585abb", "https://tec.openplanner.team/stops/N585aib"], ["https://tec.openplanner.team/stops/Bmarcat2", "https://tec.openplanner.team/stops/Bmargve1"], ["https://tec.openplanner.team/stops/N584aob", "https://tec.openplanner.team/stops/N584aqb"], ["https://tec.openplanner.team/stops/Cplrmon1", "https://tec.openplanner.team/stops/Cplrmon2"], ["https://tec.openplanner.team/stops/H1so137a", "https://tec.openplanner.team/stops/H1so143a"], ["https://tec.openplanner.team/stops/X601ata", "https://tec.openplanner.team/stops/X601cqa"], ["https://tec.openplanner.team/stops/X922acb", "https://tec.openplanner.team/stops/X922adb"], ["https://tec.openplanner.team/stops/Livjeu-1", "https://tec.openplanner.team/stops/Livjeu-2"], ["https://tec.openplanner.team/stops/Buccfja1", "https://tec.openplanner.team/stops/Buccron1"], ["https://tec.openplanner.team/stops/LESchac1", "https://tec.openplanner.team/stops/LFNecpr*"], ["https://tec.openplanner.team/stops/Lhuecol1", "https://tec.openplanner.team/stops/Lhurigu2"], ["https://tec.openplanner.team/stops/X812akb", "https://tec.openplanner.team/stops/X812ala"], ["https://tec.openplanner.team/stops/LSZgare1", "https://tec.openplanner.team/stops/LSZroqu2"], ["https://tec.openplanner.team/stops/X602aaa", "https://tec.openplanner.team/stops/X602arb"], ["https://tec.openplanner.team/stops/X802aeb", "https://tec.openplanner.team/stops/X818ajb"], ["https://tec.openplanner.team/stops/Lceembo2", "https://tec.openplanner.team/stops/Lcelhon3"], ["https://tec.openplanner.team/stops/Bborbif1", "https://tec.openplanner.team/stops/Bitrmon1"], ["https://tec.openplanner.team/stops/Bmrqgar2", "https://tec.openplanner.team/stops/H1mk115a"], ["https://tec.openplanner.team/stops/Bgzdfpo1", "https://tec.openplanner.team/stops/Bgzdgpa1"], ["https://tec.openplanner.team/stops/LVMrout1", "https://tec.openplanner.team/stops/LVMrout2"], ["https://tec.openplanner.team/stops/X801bxa", "https://tec.openplanner.team/stops/X802aza"], ["https://tec.openplanner.team/stops/H1eq115b", "https://tec.openplanner.team/stops/H1eq117a"], ["https://tec.openplanner.team/stops/N501apb", "https://tec.openplanner.team/stops/N501mja"], ["https://tec.openplanner.team/stops/H5qu153a", "https://tec.openplanner.team/stops/H5qu158a"], ["https://tec.openplanner.team/stops/H4lu126b", "https://tec.openplanner.team/stops/H4mo195b"], ["https://tec.openplanner.team/stops/Brixga11", "https://tec.openplanner.team/stops/Brixpao3"], ["https://tec.openplanner.team/stops/Bbryfon1", "https://tec.openplanner.team/stops/Bsampli1"], ["https://tec.openplanner.team/stops/NL57aeb", "https://tec.openplanner.team/stops/NL68agb"], ["https://tec.openplanner.team/stops/H1gn148a", "https://tec.openplanner.team/stops/H1gn151a"], ["https://tec.openplanner.team/stops/N340aea", "https://tec.openplanner.team/stops/N340afa"], ["https://tec.openplanner.team/stops/Bchgbar1", "https://tec.openplanner.team/stops/Bchgbar2"], ["https://tec.openplanner.team/stops/NR38aba", "https://tec.openplanner.team/stops/NR38abb"], ["https://tec.openplanner.team/stops/X938aea", "https://tec.openplanner.team/stops/X938aeb"], ["https://tec.openplanner.team/stops/H1ms270b", "https://tec.openplanner.team/stops/H1ms277a"], ["https://tec.openplanner.team/stops/X359agb", "https://tec.openplanner.team/stops/X359amb"], ["https://tec.openplanner.team/stops/Lmlcite*", "https://tec.openplanner.team/stops/Lmlrosa2"], ["https://tec.openplanner.team/stops/Lmlrosa1", "https://tec.openplanner.team/stops/Lmlrosa2"], ["https://tec.openplanner.team/stops/Lhracec2", "https://tec.openplanner.team/stops/Lhrespe2"], ["https://tec.openplanner.team/stops/H2go113b", "https://tec.openplanner.team/stops/H2mg153a"], ["https://tec.openplanner.team/stops/Lwaelme1", "https://tec.openplanner.team/stops/Lwakipe1"], ["https://tec.openplanner.team/stops/Bmarcat1", "https://tec.openplanner.team/stops/N584axb"], ["https://tec.openplanner.team/stops/X741aba", "https://tec.openplanner.team/stops/X752aca"], ["https://tec.openplanner.team/stops/X660afb", "https://tec.openplanner.team/stops/X840aab"], ["https://tec.openplanner.team/stops/Cchtiro3", "https://tec.openplanner.team/stops/CMtirou2"], ["https://tec.openplanner.team/stops/LsCbrau2", "https://tec.openplanner.team/stops/LsCkirc1"], ["https://tec.openplanner.team/stops/X902axa", "https://tec.openplanner.team/stops/X943ahb"], ["https://tec.openplanner.team/stops/X729aaa", "https://tec.openplanner.team/stops/X729aac"], ["https://tec.openplanner.team/stops/H4gu111a", "https://tec.openplanner.team/stops/H4ta116a"], ["https://tec.openplanner.team/stops/H1tl121a", "https://tec.openplanner.team/stops/H1tl122a"], ["https://tec.openplanner.team/stops/H1em109a", "https://tec.openplanner.team/stops/H1em109b"], ["https://tec.openplanner.team/stops/NL57aea", "https://tec.openplanner.team/stops/NL57aga"], ["https://tec.openplanner.team/stops/N539ahb", "https://tec.openplanner.team/stops/N539aqb"], ["https://tec.openplanner.team/stops/H5at118a", "https://tec.openplanner.team/stops/H5at120b"], ["https://tec.openplanner.team/stops/H1bl100a", "https://tec.openplanner.team/stops/H1eq116a"], ["https://tec.openplanner.team/stops/Brsggar2", "https://tec.openplanner.team/stops/Brsggea1"], ["https://tec.openplanner.team/stops/LOrchau1", "https://tec.openplanner.team/stops/LOreg--2"], ["https://tec.openplanner.team/stops/Bllnpaf3", "https://tec.openplanner.team/stops/Bllnpaf4"], ["https://tec.openplanner.team/stops/X602adb", "https://tec.openplanner.team/stops/X602aqa"], ["https://tec.openplanner.team/stops/H4fa125a", "https://tec.openplanner.team/stops/H4ms145b"], ["https://tec.openplanner.team/stops/H4ty301d", "https://tec.openplanner.team/stops/H4ty335b"], ["https://tec.openplanner.team/stops/N563ama", "https://tec.openplanner.team/stops/N570aca"], ["https://tec.openplanner.team/stops/LFychpl2", "https://tec.openplanner.team/stops/LiVkreu4"], ["https://tec.openplanner.team/stops/Lvtbocl2", "https://tec.openplanner.team/stops/Lvtlomb2"], ["https://tec.openplanner.team/stops/Bwategb2", "https://tec.openplanner.team/stops/Bwatran2"], ["https://tec.openplanner.team/stops/H2sv212b", "https://tec.openplanner.team/stops/H2tr257b"], ["https://tec.openplanner.team/stops/NH01aha", "https://tec.openplanner.team/stops/NH01ajb"], ["https://tec.openplanner.team/stops/H4ne135b", "https://tec.openplanner.team/stops/H4te258a"], ["https://tec.openplanner.team/stops/LhEcolo1", "https://tec.openplanner.team/stops/LhElont1"], ["https://tec.openplanner.team/stops/H4lz124a", "https://tec.openplanner.team/stops/H4lz124b"], ["https://tec.openplanner.team/stops/H4ta128a", "https://tec.openplanner.team/stops/H4ta128b"], ["https://tec.openplanner.team/stops/N201akb", "https://tec.openplanner.team/stops/N201ala"], ["https://tec.openplanner.team/stops/N201apa", "https://tec.openplanner.team/stops/N211bba"], ["https://tec.openplanner.team/stops/Cvllerm1", "https://tec.openplanner.team/stops/Cvlstan1"], ["https://tec.openplanner.team/stops/Bwaypon2", "https://tec.openplanner.team/stops/Cwspavi1"], ["https://tec.openplanner.team/stops/Brsgcfl1", "https://tec.openplanner.team/stops/Brsgleq1"], ["https://tec.openplanner.team/stops/X921acb", "https://tec.openplanner.team/stops/X921amb"], ["https://tec.openplanner.team/stops/Bhptegl1", "https://tec.openplanner.team/stops/Bhptpla1"], ["https://tec.openplanner.team/stops/N501fsa", "https://tec.openplanner.team/stops/N501mab"], ["https://tec.openplanner.team/stops/Lvefran1", "https://tec.openplanner.team/stops/Lve-isi1"], ["https://tec.openplanner.team/stops/H1ne141a", "https://tec.openplanner.team/stops/H1ne147a"], ["https://tec.openplanner.team/stops/N543bna", "https://tec.openplanner.team/stops/N543boa"], ["https://tec.openplanner.team/stops/Bnstgar2", "https://tec.openplanner.team/stops/Bnstpla1"], ["https://tec.openplanner.team/stops/LTRthie1", "https://tec.openplanner.team/stops/LTRthie2"], ["https://tec.openplanner.team/stops/N124aaa", "https://tec.openplanner.team/stops/N124aba"], ["https://tec.openplanner.team/stops/N218aaa", "https://tec.openplanner.team/stops/N218afa"], ["https://tec.openplanner.team/stops/X901awa", "https://tec.openplanner.team/stops/X901axa"], ["https://tec.openplanner.team/stops/H4hu119b", "https://tec.openplanner.team/stops/H4hu122a"], ["https://tec.openplanner.team/stops/LOLfoss1", "https://tec.openplanner.team/stops/LOLrafh1"], ["https://tec.openplanner.team/stops/Cpiegli1", "https://tec.openplanner.team/stops/Cpipost2"], ["https://tec.openplanner.team/stops/H3bi104a", "https://tec.openplanner.team/stops/H3bi116a"], ["https://tec.openplanner.team/stops/Ladfran1", "https://tec.openplanner.team/stops/Ldineuf1"], ["https://tec.openplanner.team/stops/Blimegl1", "https://tec.openplanner.team/stops/Bottcbp2"], ["https://tec.openplanner.team/stops/Cgxchan1", "https://tec.openplanner.team/stops/Cgxpair2"], ["https://tec.openplanner.team/stops/N357aab", "https://tec.openplanner.team/stops/N357adb"], ["https://tec.openplanner.team/stops/Cjuquai2", "https://tec.openplanner.team/stops/Cjuvpla2"], ["https://tec.openplanner.team/stops/Cflgazo2", "https://tec.openplanner.team/stops/Cflsncb2"], ["https://tec.openplanner.team/stops/LSOvoie1", "https://tec.openplanner.team/stops/LSOvoie2"], ["https://tec.openplanner.team/stops/H1do111b", "https://tec.openplanner.team/stops/H1do114b"], ["https://tec.openplanner.team/stops/N135aqb", "https://tec.openplanner.team/stops/N135atb"], ["https://tec.openplanner.team/stops/LWEhosp2", "https://tec.openplanner.team/stops/LWEhosp3"], ["https://tec.openplanner.team/stops/LaMpark1", "https://tec.openplanner.team/stops/LaMpark2"], ["https://tec.openplanner.team/stops/H1fl134b", "https://tec.openplanner.team/stops/H1je368a"], ["https://tec.openplanner.team/stops/N235afa", "https://tec.openplanner.team/stops/N235afb"], ["https://tec.openplanner.team/stops/X715ala", "https://tec.openplanner.team/stops/X715aqa"], ["https://tec.openplanner.team/stops/H4mo192a", "https://tec.openplanner.team/stops/H4rk101b"], ["https://tec.openplanner.team/stops/N547aea", "https://tec.openplanner.team/stops/N565ada"], ["https://tec.openplanner.team/stops/Btslenf2", "https://tec.openplanner.team/stops/Btslpbr2"], ["https://tec.openplanner.team/stops/Bbldmun1", "https://tec.openplanner.team/stops/Bbldmun2"], ["https://tec.openplanner.team/stops/Lvchaus2", "https://tec.openplanner.team/stops/Lvchenn1"], ["https://tec.openplanner.team/stops/X618aca", "https://tec.openplanner.team/stops/X618ala"], ["https://tec.openplanner.team/stops/LBjvill3", "https://tec.openplanner.team/stops/X575aib"], ["https://tec.openplanner.team/stops/X923aab", "https://tec.openplanner.team/stops/X923abb"], ["https://tec.openplanner.team/stops/H2ha136b", "https://tec.openplanner.team/stops/H2ha136c"], ["https://tec.openplanner.team/stops/Cfrbrin1", "https://tec.openplanner.team/stops/Cfrsour2"], ["https://tec.openplanner.team/stops/Bwavdmo2", "https://tec.openplanner.team/stops/Bwavdmo4"], ["https://tec.openplanner.team/stops/H4gu108c", "https://tec.openplanner.team/stops/H4jm116b"], ["https://tec.openplanner.team/stops/Bhenron2", "https://tec.openplanner.team/stops/Bhensei2"], ["https://tec.openplanner.team/stops/Bjaugaz2", "https://tec.openplanner.team/stops/Bjaupro2"], ["https://tec.openplanner.team/stops/Bblaccm1", "https://tec.openplanner.team/stops/Bwatb4s1"], ["https://tec.openplanner.team/stops/N501gqa", "https://tec.openplanner.team/stops/N501ndb"], ["https://tec.openplanner.team/stops/Lsecime1", "https://tec.openplanner.team/stops/Lserena2"], ["https://tec.openplanner.team/stops/LGmloti1", "https://tec.openplanner.team/stops/LHmcarr2"], ["https://tec.openplanner.team/stops/LTIdamr2", "https://tec.openplanner.team/stops/LTIpora2"], ["https://tec.openplanner.team/stops/Cflbrun2", "https://tec.openplanner.team/stops/Cflchmo1"], ["https://tec.openplanner.team/stops/N576aca", "https://tec.openplanner.team/stops/N576anb"], ["https://tec.openplanner.team/stops/LSyec--2", "https://tec.openplanner.team/stops/LSypesy2"], ["https://tec.openplanner.team/stops/LOesour1", "https://tec.openplanner.team/stops/LOesour2"], ["https://tec.openplanner.team/stops/H1gi118b", "https://tec.openplanner.team/stops/H1gi119a"], ["https://tec.openplanner.team/stops/Brebcgi1", "https://tec.openplanner.team/stops/Brebraf2"], ["https://tec.openplanner.team/stops/LOuhalb2", "https://tec.openplanner.team/stops/LOuouff1"], ["https://tec.openplanner.team/stops/LAVdepr2", "https://tec.openplanner.team/stops/LVHweri2"], ["https://tec.openplanner.team/stops/LHrbast1", "https://tec.openplanner.team/stops/LHrreal1"], ["https://tec.openplanner.team/stops/X636adb", "https://tec.openplanner.team/stops/X636ala"], ["https://tec.openplanner.team/stops/X904aha", "https://tec.openplanner.team/stops/X904aib"], ["https://tec.openplanner.team/stops/Bbiemse1", "https://tec.openplanner.team/stops/Bgzdegl4"], ["https://tec.openplanner.team/stops/Lmnmart2", "https://tec.openplanner.team/stops/Lsmsech3"], ["https://tec.openplanner.team/stops/LAMhopi1", "https://tec.openplanner.team/stops/LAMjaur1"], ["https://tec.openplanner.team/stops/X917ajb", "https://tec.openplanner.team/stops/X917aka"], ["https://tec.openplanner.team/stops/Lroeg--3", "https://tec.openplanner.team/stops/Lroeg--4"], ["https://tec.openplanner.team/stops/X750baa", "https://tec.openplanner.team/stops/X750bja"], ["https://tec.openplanner.team/stops/Lfhhoul1", "https://tec.openplanner.team/stops/Lfhtrca2"], ["https://tec.openplanner.team/stops/H4fr140b", "https://tec.openplanner.team/stops/H4rc234c"], ["https://tec.openplanner.team/stops/Ccugrtr1", "https://tec.openplanner.team/stops/Ccunove1"], ["https://tec.openplanner.team/stops/LeUbahn3", "https://tec.openplanner.team/stops/LeUhook2"], ["https://tec.openplanner.team/stops/H1ba106b", "https://tec.openplanner.team/stops/H1ba118a"], ["https://tec.openplanner.team/stops/LVEdTEC2", "https://tec.openplanner.team/stops/LVEjard1"], ["https://tec.openplanner.team/stops/LBk79--1", "https://tec.openplanner.team/stops/LBk79--2"], ["https://tec.openplanner.team/stops/LmIcafe2", "https://tec.openplanner.team/stops/LmIzent2"], ["https://tec.openplanner.team/stops/H1bl107a", "https://tec.openplanner.team/stops/H1pd142a"], ["https://tec.openplanner.team/stops/N534aqb", "https://tec.openplanner.team/stops/N534bba"], ["https://tec.openplanner.team/stops/LHHlomb2", "https://tec.openplanner.team/stops/LOmlime2"], ["https://tec.openplanner.team/stops/LBTcarr1", "https://tec.openplanner.team/stops/LBTnors2"], ["https://tec.openplanner.team/stops/Bbeubos2", "https://tec.openplanner.team/stops/N576adb"], ["https://tec.openplanner.team/stops/Lmovand2", "https://tec.openplanner.team/stops/Lmoweri2"], ["https://tec.openplanner.team/stops/LWn24--2", "https://tec.openplanner.team/stops/LWneg--1"], ["https://tec.openplanner.team/stops/Cfcleco1", "https://tec.openplanner.team/stops/Cfcpier1"], ["https://tec.openplanner.team/stops/H2ma265a", "https://tec.openplanner.team/stops/H2sb231b"], ["https://tec.openplanner.team/stops/LAieg--2", "https://tec.openplanner.team/stops/LAigrim1"], ["https://tec.openplanner.team/stops/Cwfaldi1", "https://tec.openplanner.team/stops/Cwfcast2"], ["https://tec.openplanner.team/stops/Cgycime2", "https://tec.openplanner.team/stops/Cgysole1"], ["https://tec.openplanner.team/stops/LhMmeil1", "https://tec.openplanner.team/stops/LhMwing2"], ["https://tec.openplanner.team/stops/Lre3che1", "https://tec.openplanner.team/stops/Lre3che2"], ["https://tec.openplanner.team/stops/Bptrgri2", "https://tec.openplanner.team/stops/H2gy101b"], ["https://tec.openplanner.team/stops/H4to139b", "https://tec.openplanner.team/stops/H4to139c"], ["https://tec.openplanner.team/stops/LBNgarn2", "https://tec.openplanner.team/stops/LeUindu2"], ["https://tec.openplanner.team/stops/LVbcoul1", "https://tec.openplanner.team/stops/LVbpave1"], ["https://tec.openplanner.team/stops/LmImirf2", "https://tec.openplanner.team/stops/LmRkreu3"], ["https://tec.openplanner.team/stops/LSkchwa2", "https://tec.openplanner.team/stops/LSkdouf2"], ["https://tec.openplanner.team/stops/N511amb", "https://tec.openplanner.team/stops/N511ara"], ["https://tec.openplanner.team/stops/Cvpcour2", "https://tec.openplanner.team/stops/Cvpplan2"], ["https://tec.openplanner.team/stops/X770ada", "https://tec.openplanner.team/stops/X770adb"], ["https://tec.openplanner.team/stops/N244atb", "https://tec.openplanner.team/stops/N244aua"], ["https://tec.openplanner.team/stops/Cchtiro3", "https://tec.openplanner.team/stops/Cchtiro4"], ["https://tec.openplanner.team/stops/Lalmitt1", "https://tec.openplanner.team/stops/LXhcite2"], ["https://tec.openplanner.team/stops/Cctbois4", "https://tec.openplanner.team/stops/Cmtchas2"], ["https://tec.openplanner.team/stops/LHTcent2", "https://tec.openplanner.team/stops/LHThall4"], ["https://tec.openplanner.team/stops/H1cu121a", "https://tec.openplanner.team/stops/H1cu128b"], ["https://tec.openplanner.team/stops/X602abb", "https://tec.openplanner.team/stops/X623acb"], ["https://tec.openplanner.team/stops/Bgoesch3", "https://tec.openplanner.team/stops/Boplcsj3"], ["https://tec.openplanner.team/stops/Bpergar3", "https://tec.openplanner.team/stops/Bperpla2"], ["https://tec.openplanner.team/stops/X602ala", "https://tec.openplanner.team/stops/X602aoa"], ["https://tec.openplanner.team/stops/X316abb", "https://tec.openplanner.team/stops/X316aca"], ["https://tec.openplanner.team/stops/Llochar1", "https://tec.openplanner.team/stops/Lloretr1"], ["https://tec.openplanner.team/stops/H2sb227a", "https://tec.openplanner.team/stops/H2sb271a"], ["https://tec.openplanner.team/stops/N515aeb", "https://tec.openplanner.team/stops/N515afb"], ["https://tec.openplanner.team/stops/X615aka", "https://tec.openplanner.team/stops/X615brb"], ["https://tec.openplanner.team/stops/N501dca", "https://tec.openplanner.team/stops/N501mub"], ["https://tec.openplanner.team/stops/H1wa142b", "https://tec.openplanner.team/stops/H1wa164b"], ["https://tec.openplanner.team/stops/H4bx167a", "https://tec.openplanner.team/stops/H4ne139b"], ["https://tec.openplanner.team/stops/Cbiseur1", "https://tec.openplanner.team/stops/Cbiseur2"], ["https://tec.openplanner.team/stops/Ljucaba1", "https://tec.openplanner.team/stops/Ljucaba2"], ["https://tec.openplanner.team/stops/Cgxprad1", "https://tec.openplanner.team/stops/Cgxprad2"], ["https://tec.openplanner.team/stops/N547adb", "https://tec.openplanner.team/stops/N547aea"], ["https://tec.openplanner.team/stops/LWHkerk1", "https://tec.openplanner.team/stops/LWHzave1"], ["https://tec.openplanner.team/stops/Crorpai2", "https://tec.openplanner.team/stops/Crowilb2"], ["https://tec.openplanner.team/stops/Blpgbat1", "https://tec.openplanner.team/stops/Cgnpass1"], ["https://tec.openplanner.team/stops/Cmx4che1", "https://tec.openplanner.team/stops/Cmx4che2"], ["https://tec.openplanner.team/stops/Loumair1", "https://tec.openplanner.team/stops/Lscbarg1"], ["https://tec.openplanner.team/stops/Lcacaps1", "https://tec.openplanner.team/stops/Lcalaro2"], ["https://tec.openplanner.team/stops/Cpcarse1", "https://tec.openplanner.team/stops/Cpcbrig1"], ["https://tec.openplanner.team/stops/N162aaa", "https://tec.openplanner.team/stops/N162ada"], ["https://tec.openplanner.team/stops/LbUhuge2", "https://tec.openplanner.team/stops/LbUmolk1"], ["https://tec.openplanner.team/stops/H1si169a", "https://tec.openplanner.team/stops/H1si169b"], ["https://tec.openplanner.team/stops/X661atb", "https://tec.openplanner.team/stops/X661aua"], ["https://tec.openplanner.team/stops/Cfmcoro2", "https://tec.openplanner.team/stops/Cfmnoci2"], ["https://tec.openplanner.team/stops/X608afa", "https://tec.openplanner.team/stops/X608afb"], ["https://tec.openplanner.team/stops/Bboneta1", "https://tec.openplanner.team/stops/Bboneta2"], ["https://tec.openplanner.team/stops/X940aaa", "https://tec.openplanner.team/stops/X940abb"], ["https://tec.openplanner.team/stops/X740abd", "https://tec.openplanner.team/stops/X740afb"], ["https://tec.openplanner.team/stops/N241aeb", "https://tec.openplanner.team/stops/N241afb"], ["https://tec.openplanner.team/stops/N549ada", "https://tec.openplanner.team/stops/N549adb"], ["https://tec.openplanner.team/stops/N515aib", "https://tec.openplanner.team/stops/N515aid"], ["https://tec.openplanner.team/stops/LVSpota1", "https://tec.openplanner.team/stops/LVSpota2"], ["https://tec.openplanner.team/stops/H1gr112b", "https://tec.openplanner.team/stops/H1gr116b"], ["https://tec.openplanner.team/stops/LDomoul1", "https://tec.openplanner.team/stops/LJedonc1"], ["https://tec.openplanner.team/stops/LESmont2", "https://tec.openplanner.team/stops/LESpont3"], ["https://tec.openplanner.team/stops/H4ve136a", "https://tec.openplanner.team/stops/H4ve140a"], ["https://tec.openplanner.team/stops/Cmiegli1", "https://tec.openplanner.team/stops/Cmiegli2"], ["https://tec.openplanner.team/stops/H2ec104a", "https://tec.openplanner.team/stops/H2ec105a"], ["https://tec.openplanner.team/stops/NC11aka", "https://tec.openplanner.team/stops/NC11akb"], ["https://tec.openplanner.team/stops/N506bha", "https://tec.openplanner.team/stops/N506bia"], ["https://tec.openplanner.team/stops/Lghcoqs1", "https://tec.openplanner.team/stops/Lghleon1"], ["https://tec.openplanner.team/stops/Lhr1ave5", "https://tec.openplanner.team/stops/Lhr2ave2"], ["https://tec.openplanner.team/stops/H1ro136a", "https://tec.openplanner.team/stops/H1ro137b"], ["https://tec.openplanner.team/stops/N534btb", "https://tec.openplanner.team/stops/N534bva"], ["https://tec.openplanner.team/stops/Bcrnrpc1", "https://tec.openplanner.team/stops/Bcrntru1"], ["https://tec.openplanner.team/stops/Cmregli3", "https://tec.openplanner.team/stops/N162aca"], ["https://tec.openplanner.team/stops/H4er125a", "https://tec.openplanner.team/stops/H4er125b"], ["https://tec.openplanner.team/stops/H2hg144a", "https://tec.openplanner.team/stops/H2hg155c"], ["https://tec.openplanner.team/stops/Brxmcna2", "https://tec.openplanner.team/stops/Brxmhai3"], ["https://tec.openplanner.team/stops/X224afb", "https://tec.openplanner.team/stops/X394adb"], ["https://tec.openplanner.team/stops/H1hl129a", "https://tec.openplanner.team/stops/H1hl129b"], ["https://tec.openplanner.team/stops/LBIpont1", "https://tec.openplanner.team/stops/LBIpont2"], ["https://tec.openplanner.team/stops/H4mo174a", "https://tec.openplanner.team/stops/H4mo179a"], ["https://tec.openplanner.team/stops/N532abb", "https://tec.openplanner.team/stops/N532amb"], ["https://tec.openplanner.team/stops/Lghgros1", "https://tec.openplanner.team/stops/Lghlogi1"], ["https://tec.openplanner.team/stops/N349aga", "https://tec.openplanner.team/stops/N349agb"], ["https://tec.openplanner.team/stops/X993aca", "https://tec.openplanner.team/stops/X994ama"], ["https://tec.openplanner.team/stops/H4es111a", "https://tec.openplanner.team/stops/H4es111b"], ["https://tec.openplanner.team/stops/Bhtirin1", "https://tec.openplanner.team/stops/Bhtirin2"], ["https://tec.openplanner.team/stops/Bbaubru1", "https://tec.openplanner.team/stops/Bnivche1"], ["https://tec.openplanner.team/stops/H4co133a", "https://tec.openplanner.team/stops/H4mn100a"], ["https://tec.openplanner.team/stops/NL78ajb", "https://tec.openplanner.team/stops/NL79aab"], ["https://tec.openplanner.team/stops/H1ha182a", "https://tec.openplanner.team/stops/H1ss348b"], ["https://tec.openplanner.team/stops/H1bo112b", "https://tec.openplanner.team/stops/H1ho140b"], ["https://tec.openplanner.team/stops/X633aeb", "https://tec.openplanner.team/stops/X633aha"], ["https://tec.openplanner.team/stops/Bbrycar2", "https://tec.openplanner.team/stops/N584azb"], ["https://tec.openplanner.team/stops/Cchdigu1", "https://tec.openplanner.team/stops/Cchoues5"], ["https://tec.openplanner.team/stops/Bgnpegl3", "https://tec.openplanner.team/stops/Bgnpegl4"], ["https://tec.openplanner.team/stops/X811aab", "https://tec.openplanner.team/stops/X812bga"], ["https://tec.openplanner.team/stops/Chhlori2", "https://tec.openplanner.team/stops/Chhverr2"], ["https://tec.openplanner.team/stops/H4bd110a", "https://tec.openplanner.team/stops/H4bd110b"], ["https://tec.openplanner.team/stops/H1ht129a", "https://tec.openplanner.team/stops/H1ht135b"], ["https://tec.openplanner.team/stops/LLxcite1", "https://tec.openplanner.team/stops/Llxcite2"], ["https://tec.openplanner.team/stops/Lvegc--3", "https://tec.openplanner.team/stops/Lvegc--7"], ["https://tec.openplanner.team/stops/H1hr125a", "https://tec.openplanner.team/stops/H2pr119a"], ["https://tec.openplanner.team/stops/X718aba", "https://tec.openplanner.team/stops/X718akb"], ["https://tec.openplanner.team/stops/X786aba", "https://tec.openplanner.team/stops/X786aea"], ["https://tec.openplanner.team/stops/Cgzclef1", "https://tec.openplanner.team/stops/Cgzplac6"], ["https://tec.openplanner.team/stops/Ljumart1", "https://tec.openplanner.team/stops/Ljumesa1"], ["https://tec.openplanner.team/stops/X763abb", "https://tec.openplanner.team/stops/X763aeb"], ["https://tec.openplanner.team/stops/Brsgepr1", "https://tec.openplanner.team/stops/Brsggde1"], ["https://tec.openplanner.team/stops/H1ms284a", "https://tec.openplanner.team/stops/H1ms915b"], ["https://tec.openplanner.team/stops/Cbicamp2", "https://tec.openplanner.team/stops/Ctuhouz2"], ["https://tec.openplanner.team/stops/LENarde1", "https://tec.openplanner.team/stops/LENecol1"], ["https://tec.openplanner.team/stops/LMAbell1", "https://tec.openplanner.team/stops/LMAbell2"], ["https://tec.openplanner.team/stops/H3so174a", "https://tec.openplanner.team/stops/H3so174b"], ["https://tec.openplanner.team/stops/LVBmonu3", "https://tec.openplanner.team/stops/LVBmonu4"], ["https://tec.openplanner.team/stops/Bcbqp251", "https://tec.openplanner.team/stops/Bcbqp252"], ["https://tec.openplanner.team/stops/LAMhaut1", "https://tec.openplanner.team/stops/LAMvert1"], ["https://tec.openplanner.team/stops/H2pe162d", "https://tec.openplanner.team/stops/H2sv217a"], ["https://tec.openplanner.team/stops/Bnivfle2", "https://tec.openplanner.team/stops/Bnivmfr1"], ["https://tec.openplanner.team/stops/N230ala", "https://tec.openplanner.team/stops/N230alb"], ["https://tec.openplanner.team/stops/Cgzlera1", "https://tec.openplanner.team/stops/Cmyecur2"], ["https://tec.openplanner.team/stops/X734aaa", "https://tec.openplanner.team/stops/X953aaa"], ["https://tec.openplanner.team/stops/H1mb136a", "https://tec.openplanner.team/stops/H1mb136b"], ["https://tec.openplanner.team/stops/H4bo178b", "https://tec.openplanner.team/stops/H4gr110a"], ["https://tec.openplanner.team/stops/Bsaubbo1", "https://tec.openplanner.team/stops/Bwspm372"], ["https://tec.openplanner.team/stops/Binclon1", "https://tec.openplanner.team/stops/Brxmcha2"], ["https://tec.openplanner.team/stops/Bove4ko1", "https://tec.openplanner.team/stops/Bovetdo2"], ["https://tec.openplanner.team/stops/Cmychau2", "https://tec.openplanner.team/stops/Cmyplac2"], ["https://tec.openplanner.team/stops/X796aea", "https://tec.openplanner.team/stops/X796agb"], ["https://tec.openplanner.team/stops/N118alb", "https://tec.openplanner.team/stops/N118ata"], ["https://tec.openplanner.team/stops/N508aob", "https://tec.openplanner.team/stops/N509aqb"], ["https://tec.openplanner.team/stops/Cgrbert1", "https://tec.openplanner.team/stops/Cgrbert2"], ["https://tec.openplanner.team/stops/H1wz173a", "https://tec.openplanner.team/stops/H1wz173b"], ["https://tec.openplanner.team/stops/X946aca", "https://tec.openplanner.team/stops/X948afb"], ["https://tec.openplanner.team/stops/N526acb", "https://tec.openplanner.team/stops/N526aeb"], ["https://tec.openplanner.team/stops/N209ahb", "https://tec.openplanner.team/stops/N209aja"], ["https://tec.openplanner.team/stops/X601ala", "https://tec.openplanner.team/stops/X601cta"], ["https://tec.openplanner.team/stops/X788adb", "https://tec.openplanner.team/stops/X788afb"], ["https://tec.openplanner.team/stops/LMastat4", "https://tec.openplanner.team/stops/LMawilh4"], ["https://tec.openplanner.team/stops/H4ch114a", "https://tec.openplanner.team/stops/H4ty321b"], ["https://tec.openplanner.team/stops/LCaalou1", "https://tec.openplanner.team/stops/LVefont2"], ["https://tec.openplanner.team/stops/N501ivb", "https://tec.openplanner.team/stops/N521ahb"], ["https://tec.openplanner.team/stops/X390ahb", "https://tec.openplanner.team/stops/X390aib"], ["https://tec.openplanner.team/stops/LMoviel1", "https://tec.openplanner.team/stops/LSDvill2"], ["https://tec.openplanner.team/stops/LSOferr1", "https://tec.openplanner.team/stops/LSOferr4"], ["https://tec.openplanner.team/stops/H4ta117a", "https://tec.openplanner.team/stops/H4ta132a"], ["https://tec.openplanner.team/stops/H1mj127a", "https://tec.openplanner.team/stops/H1mj127b"], ["https://tec.openplanner.team/stops/LAUscha1", "https://tec.openplanner.team/stops/LAUscha2"], ["https://tec.openplanner.team/stops/LVTtrou1", "https://tec.openplanner.team/stops/LVTtrou2"], ["https://tec.openplanner.team/stops/Bgliopp3", "https://tec.openplanner.team/stops/Bmalwvi1"], ["https://tec.openplanner.team/stops/Cfmcent1", "https://tec.openplanner.team/stops/Cfmcoro2"], ["https://tec.openplanner.team/stops/H1hy127b", "https://tec.openplanner.team/stops/H1qy132a"], ["https://tec.openplanner.team/stops/LCocasc2", "https://tec.openplanner.team/stops/LCogara1"], ["https://tec.openplanner.team/stops/X775aja", "https://tec.openplanner.team/stops/X775ana"], ["https://tec.openplanner.team/stops/X781aba", "https://tec.openplanner.team/stops/X781abb"], ["https://tec.openplanner.team/stops/N232ajb", "https://tec.openplanner.team/stops/N232caa"], ["https://tec.openplanner.team/stops/LCOeg--1", "https://tec.openplanner.team/stops/LCOeg--2"], ["https://tec.openplanner.team/stops/H1le127a", "https://tec.openplanner.team/stops/H1le128c"], ["https://tec.openplanner.team/stops/LGEwalk2", "https://tec.openplanner.team/stops/LLStrid1"], ["https://tec.openplanner.team/stops/LTResse2", "https://tec.openplanner.team/stops/LTRfend1"], ["https://tec.openplanner.team/stops/N511ana", "https://tec.openplanner.team/stops/N511aob"], ["https://tec.openplanner.team/stops/Brixala2", "https://tec.openplanner.team/stops/Brixdec2"], ["https://tec.openplanner.team/stops/X982adb", "https://tec.openplanner.team/stops/X982bza"], ["https://tec.openplanner.team/stops/H4hx111a", "https://tec.openplanner.team/stops/H4hx111b"], ["https://tec.openplanner.team/stops/H1vh136b", "https://tec.openplanner.team/stops/H1vh136c"], ["https://tec.openplanner.team/stops/X664abb", "https://tec.openplanner.team/stops/X664aeb"], ["https://tec.openplanner.team/stops/H1so131a", "https://tec.openplanner.team/stops/H1so142d"], ["https://tec.openplanner.team/stops/Boppegl1", "https://tec.openplanner.team/stops/Bopplon1"], ["https://tec.openplanner.team/stops/Cdaptca1", "https://tec.openplanner.team/stops/CMvil2"], ["https://tec.openplanner.team/stops/N533acb", "https://tec.openplanner.team/stops/N533aeb"], ["https://tec.openplanner.team/stops/N506beb", "https://tec.openplanner.team/stops/N506bka"], ["https://tec.openplanner.team/stops/N549aab", "https://tec.openplanner.team/stops/N549aba"], ["https://tec.openplanner.team/stops/X922ama", "https://tec.openplanner.team/stops/X923aaa"], ["https://tec.openplanner.team/stops/LVPeg--1", "https://tec.openplanner.team/stops/LVPgrot4"], ["https://tec.openplanner.team/stops/H4lz118a", "https://tec.openplanner.team/stops/H4lz128a"], ["https://tec.openplanner.team/stops/N573aca", "https://tec.openplanner.team/stops/N573ada"], ["https://tec.openplanner.team/stops/N305aab", "https://tec.openplanner.team/stops/N305aba"], ["https://tec.openplanner.team/stops/H4hu118a", "https://tec.openplanner.team/stops/H4hu118b"], ["https://tec.openplanner.team/stops/X636aqc", "https://tec.openplanner.team/stops/X636arb"], ["https://tec.openplanner.team/stops/Bsomh672", "https://tec.openplanner.team/stops/Bsompri1"], ["https://tec.openplanner.team/stops/Lemambi2", "https://tec.openplanner.team/stops/Lemparc2"], ["https://tec.openplanner.team/stops/LhOukat2", "https://tec.openplanner.team/stops/LhUkape1"], ["https://tec.openplanner.team/stops/LeMnr11", "https://tec.openplanner.team/stops/LeMnr12"], ["https://tec.openplanner.team/stops/Lglmoul1", "https://tec.openplanner.team/stops/Llgbobu1"], ["https://tec.openplanner.team/stops/H4ty272a", "https://tec.openplanner.team/stops/H4ty272b"], ["https://tec.openplanner.team/stops/Bclgpch2", "https://tec.openplanner.team/stops/Bllnfla3"], ["https://tec.openplanner.team/stops/N155afa", "https://tec.openplanner.team/stops/N155afc"], ["https://tec.openplanner.team/stops/Cpicite1", "https://tec.openplanner.team/stops/Cpictra2"], ["https://tec.openplanner.team/stops/LBpberl2", "https://tec.openplanner.team/stops/LBpvue-1"], ["https://tec.openplanner.team/stops/X982agb", "https://tec.openplanner.team/stops/X982bxb"], ["https://tec.openplanner.team/stops/Csesabo2", "https://tec.openplanner.team/stops/N425aaa"], ["https://tec.openplanner.team/stops/N204aib", "https://tec.openplanner.team/stops/N204aka"], ["https://tec.openplanner.team/stops/Blmlbou1", "https://tec.openplanner.team/stops/Blmlcar2"], ["https://tec.openplanner.team/stops/H1gh173a", "https://tec.openplanner.team/stops/H1ms935a"], ["https://tec.openplanner.team/stops/LTRcarr2", "https://tec.openplanner.team/stops/LTRmosb1"], ["https://tec.openplanner.team/stops/N501bba", "https://tec.openplanner.team/stops/N501bbc"], ["https://tec.openplanner.team/stops/Lgrclas2", "https://tec.openplanner.team/stops/Lgrcour1"], ["https://tec.openplanner.team/stops/H4ba102a", "https://tec.openplanner.team/stops/H4ml206a"], ["https://tec.openplanner.team/stops/H1hn205b", "https://tec.openplanner.team/stops/H1hn364a"], ["https://tec.openplanner.team/stops/H1on129a", "https://tec.openplanner.team/stops/H1ro136b"], ["https://tec.openplanner.team/stops/Cmmcarr2", "https://tec.openplanner.team/stops/Cmmplac2"], ["https://tec.openplanner.team/stops/N501dna", "https://tec.openplanner.team/stops/N501eha"], ["https://tec.openplanner.team/stops/Cfocant2", "https://tec.openplanner.team/stops/Cfometr1"], ["https://tec.openplanner.team/stops/X614bba", "https://tec.openplanner.team/stops/X614bbb"], ["https://tec.openplanner.team/stops/LWAlieg1", "https://tec.openplanner.team/stops/LWAvand1"], ["https://tec.openplanner.team/stops/X982ata", "https://tec.openplanner.team/stops/X982aua"], ["https://tec.openplanner.team/stops/Bgzddge2", "https://tec.openplanner.team/stops/Bgzddge4"], ["https://tec.openplanner.team/stops/X351ada", "https://tec.openplanner.team/stops/X358afb"], ["https://tec.openplanner.team/stops/Csuptou1", "https://tec.openplanner.team/stops/Csytouq1"], ["https://tec.openplanner.team/stops/N123acb", "https://tec.openplanner.team/stops/N150aba"], ["https://tec.openplanner.team/stops/N146aeb", "https://tec.openplanner.team/stops/X317aba"], ["https://tec.openplanner.team/stops/LhPheps1", "https://tec.openplanner.team/stops/LmRkreu2"], ["https://tec.openplanner.team/stops/LBPboir1", "https://tec.openplanner.team/stops/LGLcour4"], ["https://tec.openplanner.team/stops/LWbcarr2", "https://tec.openplanner.team/stops/LWblesp1"], ["https://tec.openplanner.team/stops/Cctbinc1", "https://tec.openplanner.team/stops/NC11afa"], ["https://tec.openplanner.team/stops/LCRfavr2", "https://tec.openplanner.team/stops/LTymahr2"], ["https://tec.openplanner.team/stops/Cmtprey1", "https://tec.openplanner.team/stops/Cmtprey2"], ["https://tec.openplanner.team/stops/H2ec110a", "https://tec.openplanner.team/stops/H2ec110b"], ["https://tec.openplanner.team/stops/X717aca", "https://tec.openplanner.team/stops/X782aea"], ["https://tec.openplanner.team/stops/LHXfont1", "https://tec.openplanner.team/stops/LLVe75-1"], ["https://tec.openplanner.team/stops/Cmecime2", "https://tec.openplanner.team/stops/Cvpcour1"], ["https://tec.openplanner.team/stops/X922amb", "https://tec.openplanner.team/stops/X941aha"], ["https://tec.openplanner.team/stops/N340aba", "https://tec.openplanner.team/stops/N340aga"], ["https://tec.openplanner.team/stops/LFRfagn1", "https://tec.openplanner.team/stops/LMipoti2"], ["https://tec.openplanner.team/stops/X354abb", "https://tec.openplanner.team/stops/X858agb"], ["https://tec.openplanner.team/stops/H1er112a", "https://tec.openplanner.team/stops/H1pe131b"], ["https://tec.openplanner.team/stops/Cmastma1", "https://tec.openplanner.team/stops/CMmoul1"], ["https://tec.openplanner.team/stops/Chhegli4", "https://tec.openplanner.team/stops/Chhprai1"], ["https://tec.openplanner.team/stops/X837afa", "https://tec.openplanner.team/stops/X837afb"], ["https://tec.openplanner.team/stops/N504aca", "https://tec.openplanner.team/stops/N505alb"], ["https://tec.openplanner.team/stops/N501kna", "https://tec.openplanner.team/stops/N501knb"], ["https://tec.openplanner.team/stops/Bbiefon1", "https://tec.openplanner.team/stops/Bndbnod2"], ["https://tec.openplanner.team/stops/Csystan1", "https://tec.openplanner.team/stops/Csystan2"], ["https://tec.openplanner.team/stops/X903aca", "https://tec.openplanner.team/stops/X903acb"], ["https://tec.openplanner.team/stops/LThplen1", "https://tec.openplanner.team/stops/LThplen2"], ["https://tec.openplanner.team/stops/H4ep131b", "https://tec.openplanner.team/stops/H4la199a"], ["https://tec.openplanner.team/stops/LMObouh2", "https://tec.openplanner.team/stops/LMOchpl1"], ["https://tec.openplanner.team/stops/H2pe162a", "https://tec.openplanner.team/stops/H2pe162b"], ["https://tec.openplanner.team/stops/H2le149b", "https://tec.openplanner.team/stops/H2ml113b"], ["https://tec.openplanner.team/stops/X758aab", "https://tec.openplanner.team/stops/X758abb"], ["https://tec.openplanner.team/stops/X359aba", "https://tec.openplanner.team/stops/X359abb"], ["https://tec.openplanner.team/stops/LSAmous1", "https://tec.openplanner.team/stops/LSAvieu1"], ["https://tec.openplanner.team/stops/Lbhhomv2", "https://tec.openplanner.team/stops/Ljumart1"], ["https://tec.openplanner.team/stops/H4ev118a", "https://tec.openplanner.team/stops/H4ev118b"], ["https://tec.openplanner.team/stops/N540acb", "https://tec.openplanner.team/stops/N540acc"], ["https://tec.openplanner.team/stops/X948aba", "https://tec.openplanner.team/stops/X948aqb"], ["https://tec.openplanner.team/stops/LWEcool2", "https://tec.openplanner.team/stops/LWEgare1"], ["https://tec.openplanner.team/stops/N308ana", "https://tec.openplanner.team/stops/N308anb"], ["https://tec.openplanner.team/stops/H5fl100b", "https://tec.openplanner.team/stops/H5fl103b"], ["https://tec.openplanner.team/stops/Bjanfer1", "https://tec.openplanner.team/stops/Bolpmre1"], ["https://tec.openplanner.team/stops/LBNauto1", "https://tec.openplanner.team/stops/LWEgare1"], ["https://tec.openplanner.team/stops/X801chb", "https://tec.openplanner.team/stops/X836ada"], ["https://tec.openplanner.team/stops/N351ajb", "https://tec.openplanner.team/stops/N351axa"], ["https://tec.openplanner.team/stops/X754asa", "https://tec.openplanner.team/stops/X754aua"], ["https://tec.openplanner.team/stops/LHZpara1", "https://tec.openplanner.team/stops/LVefont2"], ["https://tec.openplanner.team/stops/Bwavnam1", "https://tec.openplanner.team/stops/Bwavnam2"], ["https://tec.openplanner.team/stops/Lhujonc1", "https://tec.openplanner.team/stops/LPohoeg1"], ["https://tec.openplanner.team/stops/N117asb", "https://tec.openplanner.team/stops/N117atb"], ["https://tec.openplanner.team/stops/LOcgdro4", "https://tec.openplanner.team/stops/NL35aga"], ["https://tec.openplanner.team/stops/X638abb", "https://tec.openplanner.team/stops/X638afb"], ["https://tec.openplanner.team/stops/H1bb119a", "https://tec.openplanner.team/stops/H1bb146b"], ["https://tec.openplanner.team/stops/X615bca", "https://tec.openplanner.team/stops/X615bda"], ["https://tec.openplanner.team/stops/LBDtill1", "https://tec.openplanner.team/stops/LBDtill2"], ["https://tec.openplanner.team/stops/X654aka", "https://tec.openplanner.team/stops/X654akb"], ["https://tec.openplanner.team/stops/H4ss158b", "https://tec.openplanner.team/stops/H5rx101b"], ["https://tec.openplanner.team/stops/Lmlmaqu1", "https://tec.openplanner.team/stops/Lmlmaqu2"], ["https://tec.openplanner.team/stops/N501fxb", "https://tec.openplanner.team/stops/N501lbb"], ["https://tec.openplanner.team/stops/NL76aaa", "https://tec.openplanner.team/stops/NL76aba"], ["https://tec.openplanner.team/stops/H1nm140b", "https://tec.openplanner.team/stops/H4gr108b"], ["https://tec.openplanner.team/stops/Cctmari2", "https://tec.openplanner.team/stops/NC11aia"], ["https://tec.openplanner.team/stops/Cgythio1", "https://tec.openplanner.team/stops/CMsartc2"], ["https://tec.openplanner.team/stops/X759aaa", "https://tec.openplanner.team/stops/X759aeb"], ["https://tec.openplanner.team/stops/N558ana", "https://tec.openplanner.team/stops/N559abb"], ["https://tec.openplanner.team/stops/Crcegli3", "https://tec.openplanner.team/stops/Crcverr1"], ["https://tec.openplanner.team/stops/LBTnors2", "https://tec.openplanner.team/stops/LHEbeau1"], ["https://tec.openplanner.team/stops/Beclron2", "https://tec.openplanner.team/stops/Bhptcha2"], ["https://tec.openplanner.team/stops/LFEhoup1", "https://tec.openplanner.team/stops/X597anb"], ["https://tec.openplanner.team/stops/Baudtri1", "https://tec.openplanner.team/stops/Bwbfhip1"], ["https://tec.openplanner.team/stops/LHNcreh1", "https://tec.openplanner.team/stops/LVPcoeu2"], ["https://tec.openplanner.team/stops/H4ty301a", "https://tec.openplanner.team/stops/H4ty328a"], ["https://tec.openplanner.team/stops/Bgerprg2", "https://tec.openplanner.team/stops/Bgrhche1"], ["https://tec.openplanner.team/stops/Ccunvus1", "https://tec.openplanner.team/stops/Ccunvus2"], ["https://tec.openplanner.team/stops/X743aea", "https://tec.openplanner.team/stops/X743afb"], ["https://tec.openplanner.team/stops/H1as103a", "https://tec.openplanner.team/stops/H1as103c"], ["https://tec.openplanner.team/stops/X767aaa", "https://tec.openplanner.team/stops/X767aab"], ["https://tec.openplanner.team/stops/Ccoacar1", "https://tec.openplanner.team/stops/Ccoacar2"], ["https://tec.openplanner.team/stops/Bmanati2", "https://tec.openplanner.team/stops/H2mg149a"], ["https://tec.openplanner.team/stops/Cfaheni4", "https://tec.openplanner.team/stops/Cfamonu1"], ["https://tec.openplanner.team/stops/LHUdelc2", "https://tec.openplanner.team/stops/LHUgodi2"], ["https://tec.openplanner.team/stops/N229aja", "https://tec.openplanner.team/stops/N229alb"], ["https://tec.openplanner.team/stops/LWDbure2", "https://tec.openplanner.team/stops/LWDeg--1"], ["https://tec.openplanner.team/stops/Bblaeur1", "https://tec.openplanner.team/stops/Bblasta1"], ["https://tec.openplanner.team/stops/Llgnico*", "https://tec.openplanner.team/stops/LlgnicT1"], ["https://tec.openplanner.team/stops/LMEcour2", "https://tec.openplanner.team/stops/LMEeg--2"], ["https://tec.openplanner.team/stops/Bolpmre1", "https://tec.openplanner.team/stops/Bolppla2"], ["https://tec.openplanner.team/stops/LOV48--1", "https://tec.openplanner.team/stops/LOVhetr2"], ["https://tec.openplanner.team/stops/N579aca", "https://tec.openplanner.team/stops/N579adb"], ["https://tec.openplanner.team/stops/H1hn208a", "https://tec.openplanner.team/stops/H1hn208b"], ["https://tec.openplanner.team/stops/N501fla", "https://tec.openplanner.team/stops/N501flb"], ["https://tec.openplanner.team/stops/NR21aha", "https://tec.openplanner.team/stops/NR21ahb"], ["https://tec.openplanner.team/stops/LBrneli1", "https://tec.openplanner.team/stops/LMAhall2"], ["https://tec.openplanner.team/stops/X954afb", "https://tec.openplanner.team/stops/X954aga"], ["https://tec.openplanner.team/stops/Blimegl2", "https://tec.openplanner.team/stops/Blimeur1"], ["https://tec.openplanner.team/stops/Cmeloti1", "https://tec.openplanner.team/stops/Cmerued2"], ["https://tec.openplanner.team/stops/Lmoboeu1", "https://tec.openplanner.team/stops/Lmomarr2"], ["https://tec.openplanner.team/stops/H4oq229b", "https://tec.openplanner.team/stops/H4wu375a"], ["https://tec.openplanner.team/stops/N562akb", "https://tec.openplanner.team/stops/N562bfb"], ["https://tec.openplanner.team/stops/N501esb", "https://tec.openplanner.team/stops/N501neb"], ["https://tec.openplanner.team/stops/Ccstord1", "https://tec.openplanner.team/stops/Chhthui2"], ["https://tec.openplanner.team/stops/X716aaa", "https://tec.openplanner.team/stops/X716aeb"], ["https://tec.openplanner.team/stops/Csbberg1", "https://tec.openplanner.team/stops/H1sa112b"], ["https://tec.openplanner.team/stops/LSGcarr2", "https://tec.openplanner.team/stops/LYechpl2"], ["https://tec.openplanner.team/stops/LBiberg1", "https://tec.openplanner.team/stops/LWEbr051"], ["https://tec.openplanner.team/stops/LAibego1", "https://tec.openplanner.team/stops/LAigrim1"], ["https://tec.openplanner.team/stops/X615awa", "https://tec.openplanner.team/stops/X615axb"], ["https://tec.openplanner.team/stops/Crg3arb1", "https://tec.openplanner.team/stops/Cthoues2"], ["https://tec.openplanner.team/stops/X371aea", "https://tec.openplanner.team/stops/X371afa"], ["https://tec.openplanner.team/stops/LLeeg--1", "https://tec.openplanner.team/stops/X547afb"], ["https://tec.openplanner.team/stops/X892aaa", "https://tec.openplanner.team/stops/X892ahb"], ["https://tec.openplanner.team/stops/LBscime2", "https://tec.openplanner.team/stops/NL72ada"], ["https://tec.openplanner.team/stops/Lhemilm2", "https://tec.openplanner.team/stops/Lmirca-2"], ["https://tec.openplanner.team/stops/X955aea", "https://tec.openplanner.team/stops/X955aga"], ["https://tec.openplanner.team/stops/Bperros1", "https://tec.openplanner.team/stops/NB33aeb"], ["https://tec.openplanner.team/stops/H1ha189a", "https://tec.openplanner.team/stops/H1ha200a"], ["https://tec.openplanner.team/stops/X733abb", "https://tec.openplanner.team/stops/X733aca"], ["https://tec.openplanner.team/stops/H1ho130a", "https://tec.openplanner.team/stops/H1ho130b"], ["https://tec.openplanner.team/stops/LHuherm2", "https://tec.openplanner.team/stops/LHupont2"], ["https://tec.openplanner.team/stops/N577aha", "https://tec.openplanner.team/stops/N577ajb"], ["https://tec.openplanner.team/stops/H2ml114a", "https://tec.openplanner.team/stops/H2mo130b"], ["https://tec.openplanner.team/stops/Csshouy1", "https://tec.openplanner.team/stops/Csspn1"], ["https://tec.openplanner.team/stops/H4hx120b", "https://tec.openplanner.team/stops/H4ln155a"], ["https://tec.openplanner.team/stops/LOChuy-1", "https://tec.openplanner.team/stops/X261aaa"], ["https://tec.openplanner.team/stops/Lkivolg2", "https://tec.openplanner.team/stops/Lscbour2"], ["https://tec.openplanner.team/stops/Lrevaul1", "https://tec.openplanner.team/stops/Lrevaul2"], ["https://tec.openplanner.team/stops/LNCcedr2", "https://tec.openplanner.team/stops/LNCecdo1"], ["https://tec.openplanner.team/stops/H4by116a", "https://tec.openplanner.team/stops/H4by117a"], ["https://tec.openplanner.team/stops/H4pe125a", "https://tec.openplanner.team/stops/H4pe125b"], ["https://tec.openplanner.team/stops/X371afa", "https://tec.openplanner.team/stops/X371afb"], ["https://tec.openplanner.team/stops/X615aub", "https://tec.openplanner.team/stops/X695aea"], ["https://tec.openplanner.team/stops/H1ms268a", "https://tec.openplanner.team/stops/H1ms275a"], ["https://tec.openplanner.team/stops/Clolidl2", "https://tec.openplanner.team/stops/Cloravi2"], ["https://tec.openplanner.team/stops/Bblasse1", "https://tec.openplanner.team/stops/Bblasse2"], ["https://tec.openplanner.team/stops/LTIpres1", "https://tec.openplanner.team/stops/LTIpres2"], ["https://tec.openplanner.team/stops/N503afb", "https://tec.openplanner.team/stops/N503ahb"], ["https://tec.openplanner.team/stops/Bheneco1", "https://tec.openplanner.team/stops/Bhenpln2"], ["https://tec.openplanner.team/stops/N501fxa", "https://tec.openplanner.team/stops/N501hjb"], ["https://tec.openplanner.team/stops/X888aga", "https://tec.openplanner.team/stops/X897aga"], ["https://tec.openplanner.team/stops/H2re163a", "https://tec.openplanner.team/stops/H2re163b"], ["https://tec.openplanner.team/stops/LSopost1", "https://tec.openplanner.team/stops/LSopost2"], ["https://tec.openplanner.team/stops/X991aga", "https://tec.openplanner.team/stops/X991aja"], ["https://tec.openplanner.team/stops/N301afc", "https://tec.openplanner.team/stops/N301aib"], ["https://tec.openplanner.team/stops/Cmlmatc1", "https://tec.openplanner.team/stops/Cmlmatc2"], ["https://tec.openplanner.team/stops/H1wa135b", "https://tec.openplanner.team/stops/H1wa144b"], ["https://tec.openplanner.team/stops/X769ajb", "https://tec.openplanner.team/stops/X769arb"], ["https://tec.openplanner.team/stops/Lsecime2", "https://tec.openplanner.team/stops/Lsecris1"], ["https://tec.openplanner.team/stops/H1ma231b", "https://tec.openplanner.team/stops/H1ni316a"], ["https://tec.openplanner.team/stops/X812beb", "https://tec.openplanner.team/stops/X813adb"], ["https://tec.openplanner.team/stops/Bnodblt1", "https://tec.openplanner.team/stops/Bnodcab1"], ["https://tec.openplanner.team/stops/N215aba", "https://tec.openplanner.team/stops/N215aca"], ["https://tec.openplanner.team/stops/H1ms247b", "https://tec.openplanner.team/stops/H1ms920a"], ["https://tec.openplanner.team/stops/LHGbeur2", "https://tec.openplanner.team/stops/LHGbeur4"], ["https://tec.openplanner.team/stops/Bblaall1", "https://tec.openplanner.team/stops/Bblasse1"], ["https://tec.openplanner.team/stops/H1hg179a", "https://tec.openplanner.team/stops/H1hg179b"], ["https://tec.openplanner.team/stops/Ljuchap1", "https://tec.openplanner.team/stops/Ljuchap2"], ["https://tec.openplanner.team/stops/H4fr140a", "https://tec.openplanner.team/stops/H4ma419a"], ["https://tec.openplanner.team/stops/LFAec--1", "https://tec.openplanner.team/stops/LFAplan2"], ["https://tec.openplanner.team/stops/Bsaucre2", "https://tec.openplanner.team/stops/Bsaupco2"], ["https://tec.openplanner.team/stops/H1hh109a", "https://tec.openplanner.team/stops/H1hh109b"], ["https://tec.openplanner.team/stops/Cbfcham1", "https://tec.openplanner.team/stops/NC11akb"], ["https://tec.openplanner.team/stops/N383adb", "https://tec.openplanner.team/stops/N383afb"], ["https://tec.openplanner.team/stops/Bolgrga1", "https://tec.openplanner.team/stops/Bolgrga2"], ["https://tec.openplanner.team/stops/LNEbois1", "https://tec.openplanner.team/stops/LNEbois2"], ["https://tec.openplanner.team/stops/H1gr118b", "https://tec.openplanner.team/stops/H1gr122a"], ["https://tec.openplanner.team/stops/LBBmc--1", "https://tec.openplanner.team/stops/LBBpech2"], ["https://tec.openplanner.team/stops/Clvchar2", "https://tec.openplanner.team/stops/Cmlavch1"], ["https://tec.openplanner.team/stops/X713afa", "https://tec.openplanner.team/stops/X713ala"], ["https://tec.openplanner.team/stops/H2ca104b", "https://tec.openplanner.team/stops/H2ca112b"], ["https://tec.openplanner.team/stops/Cfodepo1", "https://tec.openplanner.team/stops/Clrpast2"], ["https://tec.openplanner.team/stops/LDpulve1", "https://tec.openplanner.team/stops/LVu40--2"], ["https://tec.openplanner.team/stops/LMOcorn2", "https://tec.openplanner.team/stops/LMOcorn3"], ["https://tec.openplanner.team/stops/N506apa", "https://tec.openplanner.team/stops/N506apb"], ["https://tec.openplanner.team/stops/H1do116b", "https://tec.openplanner.team/stops/H1ho132a"], ["https://tec.openplanner.team/stops/X828aaa", "https://tec.openplanner.team/stops/X829aca"], ["https://tec.openplanner.team/stops/LgAnr492", "https://tec.openplanner.team/stops/LsVlust2"], ["https://tec.openplanner.team/stops/Crs74em4", "https://tec.openplanner.team/stops/Crsmonu2"], ["https://tec.openplanner.team/stops/X640arb", "https://tec.openplanner.team/stops/X643aba"], ["https://tec.openplanner.team/stops/X604afa", "https://tec.openplanner.team/stops/X604afb"], ["https://tec.openplanner.team/stops/LESchat2", "https://tec.openplanner.team/stops/LESvign1"], ["https://tec.openplanner.team/stops/N507aba", "https://tec.openplanner.team/stops/N507adb"], ["https://tec.openplanner.team/stops/Bnivgam2", "https://tec.openplanner.team/stops/Bnivmet2"], ["https://tec.openplanner.team/stops/X850aob", "https://tec.openplanner.team/stops/X872aab"], ["https://tec.openplanner.team/stops/X725aka", "https://tec.openplanner.team/stops/X725bia"], ["https://tec.openplanner.team/stops/Cstdona1", "https://tec.openplanner.team/stops/Cstplac1"], ["https://tec.openplanner.team/stops/X993abc", "https://tec.openplanner.team/stops/X993abd"], ["https://tec.openplanner.team/stops/LNEmoul1", "https://tec.openplanner.team/stops/LNEmoul2"], ["https://tec.openplanner.team/stops/Cctbinc2", "https://tec.openplanner.team/stops/NC11afb"], ["https://tec.openplanner.team/stops/Ladpire2", "https://tec.openplanner.team/stops/Ldimeun1"], ["https://tec.openplanner.team/stops/N301aab", "https://tec.openplanner.team/stops/N301abc"], ["https://tec.openplanner.team/stops/Lbhmc--2", "https://tec.openplanner.team/stops/Ljupiet2"], ["https://tec.openplanner.team/stops/H4bs110b", "https://tec.openplanner.team/stops/H5pe139a"], ["https://tec.openplanner.team/stops/Lsebove1", "https://tec.openplanner.team/stops/Lsehaut1"], ["https://tec.openplanner.team/stops/H2tr251a", "https://tec.openplanner.team/stops/H2tr251b"], ["https://tec.openplanner.team/stops/Cfcpcov1", "https://tec.openplanner.team/stops/Cfcrdpr2"], ["https://tec.openplanner.team/stops/Benimar2", "https://tec.openplanner.team/stops/Bmrlcch2"], ["https://tec.openplanner.team/stops/Brsgrol2", "https://tec.openplanner.team/stops/Brsgter2"], ["https://tec.openplanner.team/stops/H1bu137b", "https://tec.openplanner.team/stops/H2ep144b"], ["https://tec.openplanner.team/stops/LBEcroi2", "https://tec.openplanner.team/stops/LBEmich1"], ["https://tec.openplanner.team/stops/N118apa", "https://tec.openplanner.team/stops/N118baa"], ["https://tec.openplanner.team/stops/LRmrode1", "https://tec.openplanner.team/stops/LTEkl162"], ["https://tec.openplanner.team/stops/LCPcomp1", "https://tec.openplanner.team/stops/LCPvign1"], ["https://tec.openplanner.team/stops/N337aga", "https://tec.openplanner.team/stops/N339acb"], ["https://tec.openplanner.team/stops/H1pa105a", "https://tec.openplanner.team/stops/H1pa105b"], ["https://tec.openplanner.team/stops/Cpiegli2", "https://tec.openplanner.team/stops/Cpllimi5"], ["https://tec.openplanner.team/stops/N501aeb", "https://tec.openplanner.team/stops/N501aga"], ["https://tec.openplanner.team/stops/X771adb", "https://tec.openplanner.team/stops/X771aea"], ["https://tec.openplanner.team/stops/Lanfont2", "https://tec.openplanner.team/stops/Llgchau1"], ["https://tec.openplanner.team/stops/LFsgend2", "https://tec.openplanner.team/stops/LVSpn--2"], ["https://tec.openplanner.team/stops/X669aga", "https://tec.openplanner.team/stops/X669agb"], ["https://tec.openplanner.team/stops/X741abb", "https://tec.openplanner.team/stops/X741abc"], ["https://tec.openplanner.team/stops/Cgygayo3", "https://tec.openplanner.team/stops/Cgygayo4"], ["https://tec.openplanner.team/stops/X617aib", "https://tec.openplanner.team/stops/X618aja"], ["https://tec.openplanner.team/stops/H4bo112b", "https://tec.openplanner.team/stops/H4bo122a"], ["https://tec.openplanner.team/stops/Lrcchpl1", "https://tec.openplanner.team/stops/Lrcrars2"], ["https://tec.openplanner.team/stops/LHHronh2", "https://tec.openplanner.team/stops/LVTeg--1"], ["https://tec.openplanner.team/stops/Bgnvoha4", "https://tec.openplanner.team/stops/Bgnvpco3"], ["https://tec.openplanner.team/stops/LFChuis1", "https://tec.openplanner.team/stops/LWRgare1"], ["https://tec.openplanner.team/stops/LaR1G--1", "https://tec.openplanner.team/stops/LrUwenz1"], ["https://tec.openplanner.team/stops/H3lr113a", "https://tec.openplanner.team/stops/H3lr121b"], ["https://tec.openplanner.team/stops/X783adb", "https://tec.openplanner.team/stops/X789aha"], ["https://tec.openplanner.team/stops/Bdvmalo1", "https://tec.openplanner.team/stops/Bdvmccu2"], ["https://tec.openplanner.team/stops/N569aaa", "https://tec.openplanner.team/stops/N569aca"], ["https://tec.openplanner.team/stops/H2le150b", "https://tec.openplanner.team/stops/H2ml110a"], ["https://tec.openplanner.team/stops/Cci22ao2", "https://tec.openplanner.team/stops/Ccifies2"], ["https://tec.openplanner.team/stops/H4ln130a", "https://tec.openplanner.team/stops/H4ln130b"], ["https://tec.openplanner.team/stops/H2ca112b", "https://tec.openplanner.team/stops/H2ch125a"], ["https://tec.openplanner.team/stops/N217aeb", "https://tec.openplanner.team/stops/N287aaa"], ["https://tec.openplanner.team/stops/Cfvplac1", "https://tec.openplanner.team/stops/H1fv100b"], ["https://tec.openplanner.team/stops/LBlchin1", "https://tec.openplanner.team/stops/LBlchin2"], ["https://tec.openplanner.team/stops/LHHecol1", "https://tec.openplanner.team/stops/LHHindu1"], ["https://tec.openplanner.team/stops/Cwfcule1", "https://tec.openplanner.team/stops/Cwflouv3"], ["https://tec.openplanner.team/stops/X653aaa", "https://tec.openplanner.team/stops/X653afb"], ["https://tec.openplanner.team/stops/Cbfgare1", "https://tec.openplanner.team/stops/Cbfpoti2"], ["https://tec.openplanner.team/stops/H2na131b", "https://tec.openplanner.team/stops/H3go104a"], ["https://tec.openplanner.team/stops/Lmndari2", "https://tec.openplanner.team/stops/Lsmjalh1"], ["https://tec.openplanner.team/stops/X739aga", "https://tec.openplanner.team/stops/X773aab"], ["https://tec.openplanner.team/stops/Bwspm372", "https://tec.openplanner.team/stops/Bwspspa1"], ["https://tec.openplanner.team/stops/N232apa", "https://tec.openplanner.team/stops/N232bjb"], ["https://tec.openplanner.team/stops/Cgocalv2", "https://tec.openplanner.team/stops/CMleop2"], ["https://tec.openplanner.team/stops/LeIdeid2", "https://tec.openplanner.team/stops/LeIkirr1"], ["https://tec.openplanner.team/stops/LDOviad1", "https://tec.openplanner.team/stops/LHVetoi2"], ["https://tec.openplanner.team/stops/Caiecol2", "https://tec.openplanner.team/stops/Caioign4"], ["https://tec.openplanner.team/stops/H1gi121b", "https://tec.openplanner.team/stops/H1gi122a"], ["https://tec.openplanner.team/stops/Bucccal4", "https://tec.openplanner.team/stops/Buccdch1"], ["https://tec.openplanner.team/stops/X657aca", "https://tec.openplanner.team/stops/X657acb"], ["https://tec.openplanner.team/stops/LLz21--2", "https://tec.openplanner.team/stops/LLzcruc2"], ["https://tec.openplanner.team/stops/Lstbarb2", "https://tec.openplanner.team/stops/Lstpole1"], ["https://tec.openplanner.team/stops/X789aba", "https://tec.openplanner.team/stops/X789aeb"], ["https://tec.openplanner.team/stops/H2ll179a", "https://tec.openplanner.team/stops/H2ll267b"], ["https://tec.openplanner.team/stops/LHNvill2", "https://tec.openplanner.team/stops/NL37aaa"], ["https://tec.openplanner.team/stops/Blhumga1", "https://tec.openplanner.team/stops/Blhunys2"], ["https://tec.openplanner.team/stops/LLVcent1", "https://tec.openplanner.team/stops/LLVe75-1"], ["https://tec.openplanner.team/stops/Cmmcomb2", "https://tec.openplanner.team/stops/Cmymoha2"], ["https://tec.openplanner.team/stops/H2ll182a", "https://tec.openplanner.team/stops/H2ll257c"], ["https://tec.openplanner.team/stops/H2hl111b", "https://tec.openplanner.team/stops/H2sv211b"], ["https://tec.openplanner.team/stops/X747aja", "https://tec.openplanner.team/stops/X749afa"], ["https://tec.openplanner.team/stops/Cchsud07", "https://tec.openplanner.team/stops/NC01aab"], ["https://tec.openplanner.team/stops/N515aid", "https://tec.openplanner.team/stops/N515asa"], ["https://tec.openplanner.team/stops/LLxcbr-1", "https://tec.openplanner.team/stops/LLxconj1"], ["https://tec.openplanner.team/stops/LFPchat1", "https://tec.openplanner.team/stops/LFPstro1"], ["https://tec.openplanner.team/stops/N311afa", "https://tec.openplanner.team/stops/N360aca"], ["https://tec.openplanner.team/stops/LmD181-1", "https://tec.openplanner.team/stops/LmDhoch1"], ["https://tec.openplanner.team/stops/X903adb", "https://tec.openplanner.team/stops/X992aja"], ["https://tec.openplanner.team/stops/Bsamc7d2", "https://tec.openplanner.team/stops/Bsammon2"], ["https://tec.openplanner.team/stops/X624aia", "https://tec.openplanner.team/stops/X624aib"], ["https://tec.openplanner.team/stops/X642aaa", "https://tec.openplanner.team/stops/X646aab"], ["https://tec.openplanner.team/stops/N551aha", "https://tec.openplanner.team/stops/N568ada"], ["https://tec.openplanner.team/stops/H4ta117b", "https://tec.openplanner.team/stops/H4ta127a"], ["https://tec.openplanner.team/stops/X808aib", "https://tec.openplanner.team/stops/X850alb"], ["https://tec.openplanner.team/stops/Blankal4", "https://tec.openplanner.team/stops/Blanraa1"], ["https://tec.openplanner.team/stops/H4pl114b", "https://tec.openplanner.team/stops/H4pl120a"], ["https://tec.openplanner.team/stops/Cjubert2", "https://tec.openplanner.team/stops/Cjuepee1"], ["https://tec.openplanner.team/stops/N894aba", "https://tec.openplanner.team/stops/N894age"], ["https://tec.openplanner.team/stops/LPLhout1", "https://tec.openplanner.team/stops/LPLstat2"], ["https://tec.openplanner.team/stops/Lagtenn1", "https://tec.openplanner.team/stops/Lkigare2"], ["https://tec.openplanner.team/stops/N539aca", "https://tec.openplanner.team/stops/N539acb"], ["https://tec.openplanner.team/stops/Bfledpi1", "https://tec.openplanner.team/stops/Cflchel4"], ["https://tec.openplanner.team/stops/Bbchdra1", "https://tec.openplanner.team/stops/Bbchdra2"], ["https://tec.openplanner.team/stops/X901aqb", "https://tec.openplanner.team/stops/X901blb"], ["https://tec.openplanner.team/stops/X342afb", "https://tec.openplanner.team/stops/X359aab"], ["https://tec.openplanner.team/stops/NC14aab", "https://tec.openplanner.team/stops/NC14abb"], ["https://tec.openplanner.team/stops/N506acb", "https://tec.openplanner.team/stops/N506bib"], ["https://tec.openplanner.team/stops/Bplncba1", "https://tec.openplanner.team/stops/Bplncsd1"], ["https://tec.openplanner.team/stops/H1au114a", "https://tec.openplanner.team/stops/H1on129a"], ["https://tec.openplanner.team/stops/H4mo148a", "https://tec.openplanner.team/stops/H4mo156b"], ["https://tec.openplanner.team/stops/X659aya", "https://tec.openplanner.team/stops/X669aeb"], ["https://tec.openplanner.team/stops/Lhutill2", "https://tec.openplanner.team/stops/Lvegend1"], ["https://tec.openplanner.team/stops/N347afa", "https://tec.openplanner.team/stops/N347afb"], ["https://tec.openplanner.team/stops/H1cu125b", "https://tec.openplanner.team/stops/H1cu125c"], ["https://tec.openplanner.team/stops/H1ht121a", "https://tec.openplanner.team/stops/H1ht136b"], ["https://tec.openplanner.team/stops/X738aaa", "https://tec.openplanner.team/stops/X738abb"], ["https://tec.openplanner.team/stops/LHCandr1", "https://tec.openplanner.team/stops/LHCandr2"], ["https://tec.openplanner.team/stops/Cgrchas2", "https://tec.openplanner.team/stops/Cgrsaul1"], ["https://tec.openplanner.team/stops/Bgnvcom1", "https://tec.openplanner.team/stops/Brixala2"], ["https://tec.openplanner.team/stops/N244aja", "https://tec.openplanner.team/stops/N244amb"], ["https://tec.openplanner.team/stops/Crspair2", "https://tec.openplanner.team/stops/Crspana4"], ["https://tec.openplanner.team/stops/LAMceri1", "https://tec.openplanner.team/stops/LOmecol1"], ["https://tec.openplanner.team/stops/H1hm177b", "https://tec.openplanner.team/stops/H1ss348b"], ["https://tec.openplanner.team/stops/LHdkenn2", "https://tec.openplanner.team/stops/LHdkenn3"], ["https://tec.openplanner.team/stops/Cbcegli6", "https://tec.openplanner.team/stops/Clfpomm1"], ["https://tec.openplanner.team/stops/Bbxlfro1", "https://tec.openplanner.team/stops/Bbxltou1"], ["https://tec.openplanner.team/stops/H4ma411b", "https://tec.openplanner.team/stops/H4ma417b"], ["https://tec.openplanner.team/stops/Lghfors2", "https://tec.openplanner.team/stops/Lghneuv1"], ["https://tec.openplanner.team/stops/H2ma208b", "https://tec.openplanner.team/stops/H2sb234b"], ["https://tec.openplanner.team/stops/Lhubarl2", "https://tec.openplanner.team/stops/Lhufila2"], ["https://tec.openplanner.team/stops/H1mq199b", "https://tec.openplanner.team/stops/H5is170a"], ["https://tec.openplanner.team/stops/N563ana", "https://tec.openplanner.team/stops/N570aga"], ["https://tec.openplanner.team/stops/LERpouh2", "https://tec.openplanner.team/stops/LHseg--1"], ["https://tec.openplanner.team/stops/H4ka176a", "https://tec.openplanner.team/stops/H4ka188a"], ["https://tec.openplanner.team/stops/Lenclar2", "https://tec.openplanner.team/stops/Lveoctr2"], ["https://tec.openplanner.team/stops/LJAcent1", "https://tec.openplanner.team/stops/LJAherb1"], ["https://tec.openplanner.team/stops/N525anb", "https://tec.openplanner.team/stops/N525ata"], ["https://tec.openplanner.team/stops/X985aeb", "https://tec.openplanner.team/stops/X985afa"], ["https://tec.openplanner.team/stops/H5rx101a", "https://tec.openplanner.team/stops/H5rx115a"], ["https://tec.openplanner.team/stops/Bjausan1", "https://tec.openplanner.team/stops/Bjausan2"], ["https://tec.openplanner.team/stops/H4lp124b", "https://tec.openplanner.team/stops/H4my121a"], ["https://tec.openplanner.team/stops/LWHkerk2", "https://tec.openplanner.team/stops/LWHwaas4"], ["https://tec.openplanner.team/stops/Bbsiabb1", "https://tec.openplanner.team/stops/Bbsifml1"], ["https://tec.openplanner.team/stops/N425acb", "https://tec.openplanner.team/stops/N425afb"], ["https://tec.openplanner.team/stops/H1si152b", "https://tec.openplanner.team/stops/H1si164b"], ["https://tec.openplanner.team/stops/X826afb", "https://tec.openplanner.team/stops/X826agb"], ["https://tec.openplanner.team/stops/LCUmonu2", "https://tec.openplanner.team/stops/LCUmora2"], ["https://tec.openplanner.team/stops/Bplnegl1", "https://tec.openplanner.team/stops/Clproi2"], ["https://tec.openplanner.team/stops/N576akb", "https://tec.openplanner.team/stops/N576ala"], ["https://tec.openplanner.team/stops/H4ru236b", "https://tec.openplanner.team/stops/H4ty349b"], ["https://tec.openplanner.team/stops/LdUkreu3", "https://tec.openplanner.team/stops/LeSkreu2"], ["https://tec.openplanner.team/stops/X896afa", "https://tec.openplanner.team/stops/X896afb"], ["https://tec.openplanner.team/stops/Bthsvil2", "https://tec.openplanner.team/stops/NL37akb"], ["https://tec.openplanner.team/stops/X818arb", "https://tec.openplanner.team/stops/X818ava"], ["https://tec.openplanner.team/stops/LSogite2", "https://tec.openplanner.team/stops/LSopost1"], ["https://tec.openplanner.team/stops/LHUhaum2", "https://tec.openplanner.team/stops/LTicent1"], ["https://tec.openplanner.team/stops/N501dwa", "https://tec.openplanner.team/stops/N501dwb"], ["https://tec.openplanner.team/stops/LOTcloe2", "https://tec.openplanner.team/stops/LVlplan2"], ["https://tec.openplanner.team/stops/LRmhage8", "https://tec.openplanner.team/stops/LRmsmvo3"], ["https://tec.openplanner.team/stops/H1fy120a", "https://tec.openplanner.team/stops/H1fy143a"], ["https://tec.openplanner.team/stops/H4hu113a", "https://tec.openplanner.team/stops/H4hu117a"], ["https://tec.openplanner.team/stops/N311aga", "https://tec.openplanner.team/stops/N311agb"], ["https://tec.openplanner.team/stops/LOehart1", "https://tec.openplanner.team/stops/LWAlpre1"], ["https://tec.openplanner.team/stops/Cfachap1", "https://tec.openplanner.team/stops/Cfachap2"], ["https://tec.openplanner.team/stops/X720aea", "https://tec.openplanner.team/stops/X723ama"], ["https://tec.openplanner.team/stops/H1hh112a", "https://tec.openplanner.team/stops/H1hh112b"], ["https://tec.openplanner.team/stops/X736aga", "https://tec.openplanner.team/stops/X736agb"], ["https://tec.openplanner.team/stops/LAVcime1", "https://tec.openplanner.team/stops/LAVeg--1"], ["https://tec.openplanner.team/stops/Ccuwain1", "https://tec.openplanner.team/stops/Ccuwain2"], ["https://tec.openplanner.team/stops/N506anb", "https://tec.openplanner.team/stops/N506apa"], ["https://tec.openplanner.team/stops/X993aha", "https://tec.openplanner.team/stops/X993aib"], ["https://tec.openplanner.team/stops/H1qu101a", "https://tec.openplanner.team/stops/H1qu110a"], ["https://tec.openplanner.team/stops/N501fsa", "https://tec.openplanner.team/stops/N501lsa"], ["https://tec.openplanner.team/stops/LBk79--2", "https://tec.openplanner.team/stops/LBkcarr3"], ["https://tec.openplanner.team/stops/Bchgcha2", "https://tec.openplanner.team/stops/Bchgqve4"], ["https://tec.openplanner.team/stops/Ladxhen1", "https://tec.openplanner.team/stops/LHCprog1"], ["https://tec.openplanner.team/stops/N874aaa", "https://tec.openplanner.team/stops/N894acb"], ["https://tec.openplanner.team/stops/Lgdegli1", "https://tec.openplanner.team/stops/Lgdhall*"], ["https://tec.openplanner.team/stops/H5fl104a", "https://tec.openplanner.team/stops/H5fl104b"], ["https://tec.openplanner.team/stops/X770aba", "https://tec.openplanner.team/stops/X770abb"], ["https://tec.openplanner.team/stops/Broneco1", "https://tec.openplanner.team/stops/Bronfou1"], ["https://tec.openplanner.team/stops/LPLbiol1", "https://tec.openplanner.team/stops/LPLc49-2"], ["https://tec.openplanner.team/stops/LVBbvin", "https://tec.openplanner.team/stops/LWDmass1"], ["https://tec.openplanner.team/stops/Bgemcha2", "https://tec.openplanner.team/stops/N522asa"], ["https://tec.openplanner.team/stops/X721aab", "https://tec.openplanner.team/stops/X721aea"], ["https://tec.openplanner.team/stops/Ljewale3", "https://tec.openplanner.team/stops/Ljewale4"], ["https://tec.openplanner.team/stops/Bhalark2", "https://tec.openplanner.team/stops/Bhaldbo1"], ["https://tec.openplanner.team/stops/X882afa", "https://tec.openplanner.team/stops/X882alb"], ["https://tec.openplanner.team/stops/Llghec-3", "https://tec.openplanner.team/stops/Llglonh2"], ["https://tec.openplanner.team/stops/H4lz117b", "https://tec.openplanner.team/stops/H4lz156b"], ["https://tec.openplanner.team/stops/LMIgare1", "https://tec.openplanner.team/stops/LSOathe2"], ["https://tec.openplanner.team/stops/X638aga", "https://tec.openplanner.team/stops/X638agb"], ["https://tec.openplanner.team/stops/Lprspra1", "https://tec.openplanner.team/stops/Lprspra2"], ["https://tec.openplanner.team/stops/LFarhuy1", "https://tec.openplanner.team/stops/LFarhuy2"], ["https://tec.openplanner.team/stops/Llgform1", "https://tec.openplanner.team/stops/Llgsnap2"], ["https://tec.openplanner.team/stops/Bbalvil1", "https://tec.openplanner.team/stops/N561aea"], ["https://tec.openplanner.team/stops/Cwgcamp1", "https://tec.openplanner.team/stops/Cwgplac2"], ["https://tec.openplanner.team/stops/LFMstat2", "https://tec.openplanner.team/stops/LFPknap2"], ["https://tec.openplanner.team/stops/X986afa", "https://tec.openplanner.team/stops/X986ata"], ["https://tec.openplanner.team/stops/H1ms254d", "https://tec.openplanner.team/stops/H1ms254e"], ["https://tec.openplanner.team/stops/H4ga149a", "https://tec.openplanner.team/stops/H4ga171b"], ["https://tec.openplanner.team/stops/H1si163a", "https://tec.openplanner.team/stops/H1si163b"], ["https://tec.openplanner.team/stops/LHhmohe1", "https://tec.openplanner.team/stops/LHhmohe2"], ["https://tec.openplanner.team/stops/Bsgimor1", "https://tec.openplanner.team/stops/Buccdst2"], ["https://tec.openplanner.team/stops/X985aca", "https://tec.openplanner.team/stops/X985adb"], ["https://tec.openplanner.team/stops/Lflweri2", "https://tec.openplanner.team/stops/Lrecroi2"], ["https://tec.openplanner.team/stops/LESflag1", "https://tec.openplanner.team/stops/LFNecpr*"], ["https://tec.openplanner.team/stops/Lsnbrac1", "https://tec.openplanner.team/stops/Lsnbrac4"], ["https://tec.openplanner.team/stops/X638amb", "https://tec.openplanner.team/stops/X638arb"], ["https://tec.openplanner.team/stops/H4bo114a", "https://tec.openplanner.team/stops/H4bo182b"], ["https://tec.openplanner.team/stops/X756ajb", "https://tec.openplanner.team/stops/X779ahb"], ["https://tec.openplanner.team/stops/LGEwalk1", "https://tec.openplanner.team/stops/LGEwalk2"], ["https://tec.openplanner.team/stops/N150aja", "https://tec.openplanner.team/stops/N158aaa"], ["https://tec.openplanner.team/stops/LCvmonu1", "https://tec.openplanner.team/stops/LSMtarg1"], ["https://tec.openplanner.team/stops/N120abb", "https://tec.openplanner.team/stops/N120aca"], ["https://tec.openplanner.team/stops/Cmlhotv2", "https://tec.openplanner.team/stops/Cmlvpla2"], ["https://tec.openplanner.team/stops/X738ada", "https://tec.openplanner.team/stops/X754amb"], ["https://tec.openplanner.team/stops/LbUmurr1", "https://tec.openplanner.team/stops/LmUvilz1"], ["https://tec.openplanner.team/stops/H4fr141b", "https://tec.openplanner.team/stops/H4te254b"], ["https://tec.openplanner.team/stops/N542aca", "https://tec.openplanner.team/stops/N542ama"], ["https://tec.openplanner.team/stops/LNCmele1", "https://tec.openplanner.team/stops/LRRelec3"], ["https://tec.openplanner.team/stops/Cvlbvir1", "https://tec.openplanner.team/stops/NH21adb"], ["https://tec.openplanner.team/stops/N232bba", "https://tec.openplanner.team/stops/N232bca"], ["https://tec.openplanner.team/stops/Lscatme1", "https://tec.openplanner.team/stops/Lscatme2"], ["https://tec.openplanner.team/stops/N501fab", "https://tec.openplanner.team/stops/N501mab"], ["https://tec.openplanner.team/stops/N201ajb", "https://tec.openplanner.team/stops/N201ava"], ["https://tec.openplanner.team/stops/H4hu115a", "https://tec.openplanner.team/stops/H4hu115b"], ["https://tec.openplanner.team/stops/Llgpere1", "https://tec.openplanner.team/stops/Llgpere2"], ["https://tec.openplanner.team/stops/X811adb", "https://tec.openplanner.team/stops/X811afb"], ["https://tec.openplanner.team/stops/N563ana", "https://tec.openplanner.team/stops/N570agb"], ["https://tec.openplanner.team/stops/Btubfab1", "https://tec.openplanner.team/stops/Btubmar2"], ["https://tec.openplanner.team/stops/Lagmair1", "https://tec.openplanner.team/stops/Lagmair5"], ["https://tec.openplanner.team/stops/LHumoul1", "https://tec.openplanner.team/stops/LMffoot1"], ["https://tec.openplanner.team/stops/Cjumall1", "https://tec.openplanner.team/stops/Cjuvign2"], ["https://tec.openplanner.team/stops/H5st163a", "https://tec.openplanner.team/stops/H5st169b"], ["https://tec.openplanner.team/stops/N557abb", "https://tec.openplanner.team/stops/N557acb"], ["https://tec.openplanner.team/stops/H4eq123a", "https://tec.openplanner.team/stops/H4eq123b"], ["https://tec.openplanner.team/stops/Cwxchap1", "https://tec.openplanner.team/stops/Cwxchap2"], ["https://tec.openplanner.team/stops/LeUmeye2", "https://tec.openplanner.team/stops/LrApley2"], ["https://tec.openplanner.team/stops/LSPchap3", "https://tec.openplanner.team/stops/LSPther1"], ["https://tec.openplanner.team/stops/LNoenne2", "https://tec.openplanner.team/stops/X917acb"], ["https://tec.openplanner.team/stops/N226ada", "https://tec.openplanner.team/stops/N321afb"], ["https://tec.openplanner.team/stops/Lsefore1", "https://tec.openplanner.team/stops/Lsevill1"], ["https://tec.openplanner.team/stops/X760aea", "https://tec.openplanner.team/stops/X760aeb"], ["https://tec.openplanner.team/stops/LENecol1", "https://tec.openplanner.team/stops/LENecol2"], ["https://tec.openplanner.team/stops/Cgogare1", "https://tec.openplanner.team/stops/Cgogare2"], ["https://tec.openplanner.team/stops/Ctachst2", "https://tec.openplanner.team/stops/Ctarpoi1"], ["https://tec.openplanner.team/stops/X614aba", "https://tec.openplanner.team/stops/X614acb"], ["https://tec.openplanner.team/stops/X783aab", "https://tec.openplanner.team/stops/X789aaa"], ["https://tec.openplanner.team/stops/Btgrpla1", "https://tec.openplanner.team/stops/N584aqa"], ["https://tec.openplanner.team/stops/LHEcruc1", "https://tec.openplanner.team/stops/LHEhv--2"], ["https://tec.openplanner.team/stops/LThchar1", "https://tec.openplanner.team/stops/LThchar2"], ["https://tec.openplanner.team/stops/N542ala", "https://tec.openplanner.team/stops/N542alb"], ["https://tec.openplanner.team/stops/N201agb", "https://tec.openplanner.team/stops/N201atb"], ["https://tec.openplanner.team/stops/X991adb", "https://tec.openplanner.team/stops/X991agc"], ["https://tec.openplanner.team/stops/Cgzabau2", "https://tec.openplanner.team/stops/Cgzcver1"], ["https://tec.openplanner.team/stops/LBNhegg2", "https://tec.openplanner.team/stops/LBNplei2"], ["https://tec.openplanner.team/stops/Canjon3", "https://tec.openplanner.team/stops/Canrtth1"], ["https://tec.openplanner.team/stops/LWaanto1", "https://tec.openplanner.team/stops/LWapl--4"], ["https://tec.openplanner.team/stops/LJUmate1", "https://tec.openplanner.team/stops/LJUxhen3"], ["https://tec.openplanner.team/stops/LJAbell1", "https://tec.openplanner.team/stops/LJAbell2"], ["https://tec.openplanner.team/stops/H2le152a", "https://tec.openplanner.team/stops/H2le176b"], ["https://tec.openplanner.team/stops/Ceqcfra2", "https://tec.openplanner.team/stops/H1er111a"], ["https://tec.openplanner.team/stops/Lmoknae1", "https://tec.openplanner.team/stops/Lmoknae3"], ["https://tec.openplanner.team/stops/Bjodcar1", "https://tec.openplanner.team/stops/Bjodint1"], ["https://tec.openplanner.team/stops/Brsgece2", "https://tec.openplanner.team/stops/Brsgleq1"], ["https://tec.openplanner.team/stops/LBIhann2", "https://tec.openplanner.team/stops/Lmltrix*"], ["https://tec.openplanner.team/stops/Csychap1", "https://tec.openplanner.team/stops/Csychap2"], ["https://tec.openplanner.team/stops/X774aeb", "https://tec.openplanner.team/stops/X774agb"], ["https://tec.openplanner.team/stops/LvAkirc3", "https://tec.openplanner.team/stops/LvAschr1"], ["https://tec.openplanner.team/stops/X767aab", "https://tec.openplanner.team/stops/X767aia"], ["https://tec.openplanner.team/stops/N501joa", "https://tec.openplanner.team/stops/N501jpa"], ["https://tec.openplanner.team/stops/Bsrgegl1", "https://tec.openplanner.team/stops/Bsrgm102"], ["https://tec.openplanner.team/stops/H1br127b", "https://tec.openplanner.team/stops/H3bo102a"], ["https://tec.openplanner.team/stops/Llgjenn1", "https://tec.openplanner.team/stops/Llgrame1"], ["https://tec.openplanner.team/stops/LLGec--*", "https://tec.openplanner.team/stops/LMOlens1"], ["https://tec.openplanner.team/stops/LLreque2", "https://tec.openplanner.team/stops/LLrgobe1"], ["https://tec.openplanner.team/stops/N424ada", "https://tec.openplanner.team/stops/N425aaa"], ["https://tec.openplanner.team/stops/X756aba", "https://tec.openplanner.team/stops/X757ahb"], ["https://tec.openplanner.team/stops/Barcbav2", "https://tec.openplanner.team/stops/Barcpre2"], ["https://tec.openplanner.team/stops/Crspana4", "https://tec.openplanner.team/stops/Crsprai3"], ["https://tec.openplanner.team/stops/X663aya", "https://tec.openplanner.team/stops/X663ayb"], ["https://tec.openplanner.team/stops/H1ha190b", "https://tec.openplanner.team/stops/H1sd343a"], ["https://tec.openplanner.team/stops/H1au112a", "https://tec.openplanner.team/stops/H1ro136b"], ["https://tec.openplanner.team/stops/N542ada", "https://tec.openplanner.team/stops/N542adb"], ["https://tec.openplanner.team/stops/Bgrmver1", "https://tec.openplanner.team/stops/N522ahb"], ["https://tec.openplanner.team/stops/X897aaa", "https://tec.openplanner.team/stops/X897aea"], ["https://tec.openplanner.team/stops/H1eo107a", "https://tec.openplanner.team/stops/H1mj128b"], ["https://tec.openplanner.team/stops/N115aaa", "https://tec.openplanner.team/stops/N117bab"], ["https://tec.openplanner.team/stops/Blanove1", "https://tec.openplanner.team/stops/Blanove2"], ["https://tec.openplanner.team/stops/LVTtrou1", "https://tec.openplanner.team/stops/LYEphar1"], ["https://tec.openplanner.team/stops/X641apc", "https://tec.openplanner.team/stops/X823aba"], ["https://tec.openplanner.team/stops/Lkivolg1", "https://tec.openplanner.team/stops/Lscatme2"], ["https://tec.openplanner.team/stops/X657aib", "https://tec.openplanner.team/stops/X657aja"], ["https://tec.openplanner.team/stops/N501bfy", "https://tec.openplanner.team/stops/N501bfz"], ["https://tec.openplanner.team/stops/N501brb", "https://tec.openplanner.team/stops/N501jbb"], ["https://tec.openplanner.team/stops/LWinavi1", "https://tec.openplanner.team/stops/LWipaif3"], ["https://tec.openplanner.team/stops/Louairl2", "https://tec.openplanner.team/stops/Loubour2"], ["https://tec.openplanner.team/stops/H1ht132b", "https://tec.openplanner.team/stops/H1ht197b"], ["https://tec.openplanner.team/stops/Cjudewe2", "https://tec.openplanner.team/stops/Clodupr2"], ["https://tec.openplanner.team/stops/X224afb", "https://tec.openplanner.team/stops/X398aca"], ["https://tec.openplanner.team/stops/Cchmott1", "https://tec.openplanner.team/stops/Cchwarm2"], ["https://tec.openplanner.team/stops/X896afb", "https://tec.openplanner.team/stops/X897awa"], ["https://tec.openplanner.team/stops/H4ne136a", "https://tec.openplanner.team/stops/H4te255a"], ["https://tec.openplanner.team/stops/N261aab", "https://tec.openplanner.team/stops/N338aib"], ["https://tec.openplanner.team/stops/X762afa", "https://tec.openplanner.team/stops/X762afb"], ["https://tec.openplanner.team/stops/Cbwmato1", "https://tec.openplanner.team/stops/Cbwmvri1"], ["https://tec.openplanner.team/stops/H1sp357a", "https://tec.openplanner.team/stops/H1sp357b"], ["https://tec.openplanner.team/stops/Cfawain2", "https://tec.openplanner.team/stops/Cflspir2"], ["https://tec.openplanner.team/stops/X684aaa", "https://tec.openplanner.team/stops/X684aba"], ["https://tec.openplanner.team/stops/Bjdssta1", "https://tec.openplanner.team/stops/Bjodgai1"], ["https://tec.openplanner.team/stops/X660afa", "https://tec.openplanner.team/stops/X660aga"], ["https://tec.openplanner.team/stops/LkEbbl-*", "https://tec.openplanner.team/stops/LkEbbl-2"], ["https://tec.openplanner.team/stops/X896aab", "https://tec.openplanner.team/stops/X896abb"], ["https://tec.openplanner.team/stops/H1sd347a", "https://tec.openplanner.team/stops/H1sd366b"], ["https://tec.openplanner.team/stops/Bnstgar1", "https://tec.openplanner.team/stops/Bnstmig2"], ["https://tec.openplanner.team/stops/LFrcent2", "https://tec.openplanner.team/stops/LFreg--2"], ["https://tec.openplanner.team/stops/H5qu156a", "https://tec.openplanner.team/stops/H5qu156d"], ["https://tec.openplanner.team/stops/N501esy", "https://tec.openplanner.team/stops/X501esb"], ["https://tec.openplanner.team/stops/X762aga", "https://tec.openplanner.team/stops/X762agb"], ["https://tec.openplanner.team/stops/NC14aob", "https://tec.openplanner.team/stops/NC14aua"], ["https://tec.openplanner.team/stops/Chpatel2", "https://tec.openplanner.team/stops/Chppack1"], ["https://tec.openplanner.team/stops/Croheig1", "https://tec.openplanner.team/stops/Crowall2"], ["https://tec.openplanner.team/stops/X769aeb", "https://tec.openplanner.team/stops/X769aia"], ["https://tec.openplanner.team/stops/Bfelcen2", "https://tec.openplanner.team/stops/Bronn392"], ["https://tec.openplanner.team/stops/Cjufour3", "https://tec.openplanner.team/stops/CMpuis1"], ["https://tec.openplanner.team/stops/N201aea", "https://tec.openplanner.team/stops/N201asa"], ["https://tec.openplanner.team/stops/N535afa", "https://tec.openplanner.team/stops/N535afb"], ["https://tec.openplanner.team/stops/X902aza", "https://tec.openplanner.team/stops/X902bgb"], ["https://tec.openplanner.team/stops/Bwaygrg1", "https://tec.openplanner.team/stops/Cbtlong1"], ["https://tec.openplanner.team/stops/Ldicorb1", "https://tec.openplanner.team/stops/LThplen1"], ["https://tec.openplanner.team/stops/Lghcise1", "https://tec.openplanner.team/stops/Lghhoco1"], ["https://tec.openplanner.team/stops/Llocime2", "https://tec.openplanner.team/stops/Llofort1"], ["https://tec.openplanner.team/stops/X631aab", "https://tec.openplanner.team/stops/X644aea"], ["https://tec.openplanner.team/stops/X723aaa", "https://tec.openplanner.team/stops/X775ajb"], ["https://tec.openplanner.team/stops/LAxbott1", "https://tec.openplanner.team/stops/Lmieg--2"], ["https://tec.openplanner.team/stops/Csbplac1", "https://tec.openplanner.team/stops/Csbrago1"], ["https://tec.openplanner.team/stops/H3so155b", "https://tec.openplanner.team/stops/H3so179a"], ["https://tec.openplanner.team/stops/X784aga", "https://tec.openplanner.team/stops/X784agb"], ["https://tec.openplanner.team/stops/H4tp147b", "https://tec.openplanner.team/stops/H4wr174b"], ["https://tec.openplanner.team/stops/N229arb", "https://tec.openplanner.team/stops/N229aua"], ["https://tec.openplanner.team/stops/N244arb", "https://tec.openplanner.team/stops/N244aub"], ["https://tec.openplanner.team/stops/H1ms277a", "https://tec.openplanner.team/stops/H1ms302b"], ["https://tec.openplanner.team/stops/H4ma418a", "https://tec.openplanner.team/stops/H4oq223b"], ["https://tec.openplanner.team/stops/Ctipoui1", "https://tec.openplanner.team/stops/H1tt107b"], ["https://tec.openplanner.team/stops/H1ba103b", "https://tec.openplanner.team/stops/H1ba114b"], ["https://tec.openplanner.team/stops/H1bb121a", "https://tec.openplanner.team/stops/H1el137a"], ["https://tec.openplanner.team/stops/X939afa", "https://tec.openplanner.team/stops/X940ahb"], ["https://tec.openplanner.team/stops/X822ada", "https://tec.openplanner.team/stops/X822aeb"], ["https://tec.openplanner.team/stops/H4ka186a", "https://tec.openplanner.team/stops/H4mt220a"], ["https://tec.openplanner.team/stops/N513bhb", "https://tec.openplanner.team/stops/N521avb"], ["https://tec.openplanner.team/stops/X983aab", "https://tec.openplanner.team/stops/X986aab"], ["https://tec.openplanner.team/stops/X717ada", "https://tec.openplanner.team/stops/X789aba"], ["https://tec.openplanner.team/stops/H1pa117a", "https://tec.openplanner.team/stops/H1pa118a"], ["https://tec.openplanner.team/stops/LBIairp2", "https://tec.openplanner.team/stops/Lghgros1"], ["https://tec.openplanner.team/stops/X741abc", "https://tec.openplanner.team/stops/X741aca"], ["https://tec.openplanner.team/stops/LLrcomb2", "https://tec.openplanner.team/stops/LLrmaq-2"], ["https://tec.openplanner.team/stops/Cmypast1", "https://tec.openplanner.team/stops/Cmysncb2"], ["https://tec.openplanner.team/stops/H1sg144a", "https://tec.openplanner.team/stops/H1te176b"], ["https://tec.openplanner.team/stops/Chpcarp2", "https://tec.openplanner.team/stops/Chpceri2"], ["https://tec.openplanner.team/stops/H1ms270a", "https://tec.openplanner.team/stops/H1ms270b"], ["https://tec.openplanner.team/stops/N509bfb", "https://tec.openplanner.team/stops/N509bgb"], ["https://tec.openplanner.team/stops/Bbalvil1", "https://tec.openplanner.team/stops/N534bga"], ["https://tec.openplanner.team/stops/H5qu147a", "https://tec.openplanner.team/stops/H5qu153a"], ["https://tec.openplanner.team/stops/X735abc", "https://tec.openplanner.team/stops/X735aca"], ["https://tec.openplanner.team/stops/N204aaa", "https://tec.openplanner.team/stops/N205adb"], ["https://tec.openplanner.team/stops/H4la198b", "https://tec.openplanner.team/stops/H4la198d"], ["https://tec.openplanner.team/stops/Csedoua1", "https://tec.openplanner.team/stops/Csedoua5"], ["https://tec.openplanner.team/stops/Bblapra2", "https://tec.openplanner.team/stops/Bwaunop2"], ["https://tec.openplanner.team/stops/X734afb", "https://tec.openplanner.team/stops/X734ahb"], ["https://tec.openplanner.team/stops/Bwatran2", "https://tec.openplanner.team/stops/Bwatrte2"], ["https://tec.openplanner.team/stops/N104aka", "https://tec.openplanner.team/stops/N106arb"], ["https://tec.openplanner.team/stops/X695aba", "https://tec.openplanner.team/stops/X695aha"], ["https://tec.openplanner.team/stops/Boplsma3", "https://tec.openplanner.team/stops/Boplsma4"], ["https://tec.openplanner.team/stops/Cgzcorn1", "https://tec.openplanner.team/stops/Cgzcorn2"], ["https://tec.openplanner.team/stops/LmI129-2", "https://tec.openplanner.team/stops/LmIcafe2"], ["https://tec.openplanner.team/stops/Cgzbouh1", "https://tec.openplanner.team/stops/Cgzrust2"], ["https://tec.openplanner.team/stops/N232aga", "https://tec.openplanner.team/stops/N232agb"], ["https://tec.openplanner.team/stops/LTIgare1", "https://tec.openplanner.team/stops/LTIgare4"], ["https://tec.openplanner.team/stops/Canplal1", "https://tec.openplanner.team/stops/Canterr2"], ["https://tec.openplanner.team/stops/N360acb", "https://tec.openplanner.team/stops/N360acc"], ["https://tec.openplanner.team/stops/Bwbfckr1", "https://tec.openplanner.team/stops/Bwbfckr2"], ["https://tec.openplanner.team/stops/H1ms263a", "https://tec.openplanner.team/stops/H1ms310b"], ["https://tec.openplanner.team/stops/LHgec--0", "https://tec.openplanner.team/stops/LHggeer2"], ["https://tec.openplanner.team/stops/X640aba", "https://tec.openplanner.team/stops/X640acb"], ["https://tec.openplanner.team/stops/Bbghsar1", "https://tec.openplanner.team/stops/Bsteegl1"], ["https://tec.openplanner.team/stops/H5is170b", "https://tec.openplanner.team/stops/H5is171a"], ["https://tec.openplanner.team/stops/H1ls106a", "https://tec.openplanner.team/stops/H1ls129a"], ["https://tec.openplanner.team/stops/LeSkreu1", "https://tec.openplanner.team/stops/LeSkreu2"], ["https://tec.openplanner.team/stops/H1cv102a", "https://tec.openplanner.team/stops/H1mj126b"], ["https://tec.openplanner.team/stops/H4gr111a", "https://tec.openplanner.team/stops/H4ld130b"], ["https://tec.openplanner.team/stops/N506bdb", "https://tec.openplanner.team/stops/N506bnb"], ["https://tec.openplanner.team/stops/Lenauln1", "https://tec.openplanner.team/stops/Lenhouc1"], ["https://tec.openplanner.team/stops/Baegegl1", "https://tec.openplanner.team/stops/Bflccav1"], ["https://tec.openplanner.team/stops/LDAalbe1", "https://tec.openplanner.team/stops/LDAwich1"], ["https://tec.openplanner.team/stops/N121aea", "https://tec.openplanner.team/stops/N121ajc"], ["https://tec.openplanner.team/stops/Cfccol1", "https://tec.openplanner.team/stops/Cfcgrat1"], ["https://tec.openplanner.team/stops/Bbstchv1", "https://tec.openplanner.team/stops/Btanpla1"], ["https://tec.openplanner.team/stops/X928aab", "https://tec.openplanner.team/stops/X986ala"], ["https://tec.openplanner.team/stops/Lghchap2", "https://tec.openplanner.team/stops/Lghhoco2"], ["https://tec.openplanner.team/stops/LXhvina1", "https://tec.openplanner.team/stops/LXhvina2"], ["https://tec.openplanner.team/stops/LHtdros2", "https://tec.openplanner.team/stops/LJAbell4"], ["https://tec.openplanner.team/stops/Cprbevu2", "https://tec.openplanner.team/stops/Cprvill1"], ["https://tec.openplanner.team/stops/LROandr1", "https://tec.openplanner.team/stops/LROchap2"], ["https://tec.openplanner.team/stops/H5gr137b", "https://tec.openplanner.team/stops/H5gr138a"], ["https://tec.openplanner.team/stops/Llgaba-2", "https://tec.openplanner.team/stops/Llgcouv4"], ["https://tec.openplanner.team/stops/X979afb", "https://tec.openplanner.team/stops/X982ala"], ["https://tec.openplanner.team/stops/H4ty273b", "https://tec.openplanner.team/stops/H4ty397b"], ["https://tec.openplanner.team/stops/N501ibb", "https://tec.openplanner.team/stops/N501ijb"], ["https://tec.openplanner.team/stops/N248aea", "https://tec.openplanner.team/stops/N248aeb"], ["https://tec.openplanner.team/stops/Blhubja1", "https://tec.openplanner.team/stops/Blhucmo2"], ["https://tec.openplanner.team/stops/H2fa109a", "https://tec.openplanner.team/stops/H2hg268b"], ["https://tec.openplanner.team/stops/LWDchab1", "https://tec.openplanner.team/stops/LWDchab2"], ["https://tec.openplanner.team/stops/LBLplac3", "https://tec.openplanner.team/stops/LBLplas1"], ["https://tec.openplanner.team/stops/N211aea", "https://tec.openplanner.team/stops/N219ada"], ["https://tec.openplanner.team/stops/LPrcarr2", "https://tec.openplanner.team/stops/LTNmont2"], ["https://tec.openplanner.team/stops/LLegare2", "https://tec.openplanner.team/stops/LLemonu1"], ["https://tec.openplanner.team/stops/LWelogi1", "https://tec.openplanner.team/stops/LWepost4"], ["https://tec.openplanner.team/stops/LTEkl121", "https://tec.openplanner.team/stops/LTErest1"], ["https://tec.openplanner.team/stops/LLWmonu2", "https://tec.openplanner.team/stops/LVBdela1"], ["https://tec.openplanner.team/stops/LSBjoli2", "https://tec.openplanner.team/stops/LSBsere4"], ["https://tec.openplanner.team/stops/Bhevcur2", "https://tec.openplanner.team/stops/Bvilvil4"], ["https://tec.openplanner.team/stops/Bettcha2", "https://tec.openplanner.team/stops/Bettlha1"], ["https://tec.openplanner.team/stops/Barqpwa2", "https://tec.openplanner.team/stops/Bptrgri2"], ["https://tec.openplanner.team/stops/H4pq112b", "https://tec.openplanner.team/stops/H4pq119a"], ["https://tec.openplanner.team/stops/N501giy", "https://tec.openplanner.team/stops/N501kbb"], ["https://tec.openplanner.team/stops/N312aab", "https://tec.openplanner.team/stops/X892ajb"], ["https://tec.openplanner.team/stops/H4lu125a", "https://tec.openplanner.team/stops/H4lu125b"], ["https://tec.openplanner.team/stops/NL67aba", "https://tec.openplanner.team/stops/NL67abb"], ["https://tec.openplanner.team/stops/Lmitroi1", "https://tec.openplanner.team/stops/Lmitroi2"], ["https://tec.openplanner.team/stops/N349aia", "https://tec.openplanner.team/stops/N351aqb"], ["https://tec.openplanner.team/stops/N501awa", "https://tec.openplanner.team/stops/N527aeb"], ["https://tec.openplanner.team/stops/N113acb", "https://tec.openplanner.team/stops/N113agb"], ["https://tec.openplanner.team/stops/Lflgare1", "https://tec.openplanner.team/stops/Lflsana2"], ["https://tec.openplanner.team/stops/H1ms313b", "https://tec.openplanner.team/stops/H1ob361b"], ["https://tec.openplanner.team/stops/Bllnpsc2", "https://tec.openplanner.team/stops/Bllnrod4"], ["https://tec.openplanner.team/stops/H4bo115a", "https://tec.openplanner.team/stops/H4hu113b"], ["https://tec.openplanner.team/stops/Brsrbbo1", "https://tec.openplanner.team/stops/Brsregl3"], ["https://tec.openplanner.team/stops/Bllnlb11", "https://tec.openplanner.team/stops/Bllnpsc2"], ["https://tec.openplanner.team/stops/H1ro135b", "https://tec.openplanner.team/stops/H1ro140b"], ["https://tec.openplanner.team/stops/Bgnteco1", "https://tec.openplanner.team/stops/Bsgeqpb2"], ["https://tec.openplanner.team/stops/LaRkape2", "https://tec.openplanner.team/stops/LoDkoll2"], ["https://tec.openplanner.team/stops/Cchorle1", "https://tec.openplanner.team/stops/Cchparc2"], ["https://tec.openplanner.team/stops/H1qu108a", "https://tec.openplanner.team/stops/H1qu108b"], ["https://tec.openplanner.team/stops/N154aab", "https://tec.openplanner.team/stops/N154acb"], ["https://tec.openplanner.team/stops/N230aka", "https://tec.openplanner.team/stops/N549abb"], ["https://tec.openplanner.team/stops/N501lgb", "https://tec.openplanner.team/stops/N501lja"], ["https://tec.openplanner.team/stops/Btslcej1", "https://tec.openplanner.team/stops/Btslhau1"], ["https://tec.openplanner.team/stops/LCxcham2", "https://tec.openplanner.team/stops/LCxcour2"], ["https://tec.openplanner.team/stops/Bsoigar1", "https://tec.openplanner.team/stops/H3so161b"], ["https://tec.openplanner.team/stops/LrEkais1", "https://tec.openplanner.team/stops/LrEkais2"], ["https://tec.openplanner.team/stops/H1cv101a", "https://tec.openplanner.team/stops/H1cv102a"], ["https://tec.openplanner.team/stops/Cctcoll2", "https://tec.openplanner.team/stops/Cctrobe1"], ["https://tec.openplanner.team/stops/N125aba", "https://tec.openplanner.team/stops/N125aca"], ["https://tec.openplanner.team/stops/Llghars7", "https://tec.openplanner.team/stops/Llgnata1"], ["https://tec.openplanner.team/stops/N501dja", "https://tec.openplanner.team/stops/N538ahb"], ["https://tec.openplanner.team/stops/X804ald", "https://tec.openplanner.team/stops/X804bma"], ["https://tec.openplanner.team/stops/LCleg--1", "https://tec.openplanner.team/stops/LClsacr2"], ["https://tec.openplanner.team/stops/H4rx141a", "https://tec.openplanner.team/stops/H4rx176a"], ["https://tec.openplanner.team/stops/LGObeth2", "https://tec.openplanner.team/stops/LMemaza2"], ["https://tec.openplanner.team/stops/Bbsicea1", "https://tec.openplanner.team/stops/Bbsivil2"], ["https://tec.openplanner.team/stops/H4ir164a", "https://tec.openplanner.team/stops/H4ir167b"], ["https://tec.openplanner.team/stops/X782anb", "https://tec.openplanner.team/stops/X782aob"], ["https://tec.openplanner.team/stops/LHUgole2", "https://tec.openplanner.team/stops/LHUmess2"], ["https://tec.openplanner.team/stops/X904acb", "https://tec.openplanner.team/stops/X904adb"], ["https://tec.openplanner.team/stops/H1gh151a", "https://tec.openplanner.team/stops/H1gh151b"], ["https://tec.openplanner.team/stops/Ljuprev1", "https://tec.openplanner.team/stops/Ljuprev2"], ["https://tec.openplanner.team/stops/H4li178a", "https://tec.openplanner.team/stops/H4li179d"], ["https://tec.openplanner.team/stops/Lhrdeme1", "https://tec.openplanner.team/stops/Lhrdeme2"], ["https://tec.openplanner.team/stops/Btubnav1", "https://tec.openplanner.team/stops/Btubnav2"], ["https://tec.openplanner.team/stops/X989abb", "https://tec.openplanner.team/stops/X989acb"], ["https://tec.openplanner.team/stops/X937ala", "https://tec.openplanner.team/stops/X946agb"], ["https://tec.openplanner.team/stops/H1sg144a", "https://tec.openplanner.team/stops/H1sg144b"], ["https://tec.openplanner.team/stops/X654aab", "https://tec.openplanner.team/stops/X654aba"], ["https://tec.openplanner.team/stops/X806agb", "https://tec.openplanner.team/stops/X873acb"], ["https://tec.openplanner.team/stops/Bwagmco1", "https://tec.openplanner.team/stops/Bwagmco2"], ["https://tec.openplanner.team/stops/Cgogb2", "https://tec.openplanner.team/stops/Cgoson12"], ["https://tec.openplanner.team/stops/H3lr106a", "https://tec.openplanner.team/stops/H3lr116a"], ["https://tec.openplanner.team/stops/Bcrbros1", "https://tec.openplanner.team/stops/Bnilcab2"], ["https://tec.openplanner.team/stops/Bnivari2", "https://tec.openplanner.team/stops/Bnivpgr1"], ["https://tec.openplanner.team/stops/Bzlucam2", "https://tec.openplanner.team/stops/Bzluqga2"], ["https://tec.openplanner.team/stops/LJAcime2", "https://tec.openplanner.team/stops/LJAfawe2"], ["https://tec.openplanner.team/stops/X724aea", "https://tec.openplanner.team/stops/X724afa"], ["https://tec.openplanner.team/stops/Bmrlhan3", "https://tec.openplanner.team/stops/Bpiehte1"], ["https://tec.openplanner.team/stops/H1el137a", "https://tec.openplanner.team/stops/H1el137b"], ["https://tec.openplanner.team/stops/LRObarr1", "https://tec.openplanner.team/stops/LROmorf2"], ["https://tec.openplanner.team/stops/X615ayb", "https://tec.openplanner.team/stops/X615bcb"], ["https://tec.openplanner.team/stops/Bgercen1", "https://tec.openplanner.team/stops/NB33aja"], ["https://tec.openplanner.team/stops/LBachpl2", "https://tec.openplanner.team/stops/LGogare2"], ["https://tec.openplanner.team/stops/H5at104a", "https://tec.openplanner.team/stops/H5at104b"], ["https://tec.openplanner.team/stops/H4hx124b", "https://tec.openplanner.team/stops/H4wa149a"], ["https://tec.openplanner.team/stops/Cjuquai1", "https://tec.openplanner.team/stops/Cjuunio1"], ["https://tec.openplanner.team/stops/H5st166a", "https://tec.openplanner.team/stops/H5st166b"], ["https://tec.openplanner.team/stops/LSzetoi1", "https://tec.openplanner.team/stops/LSzetoi2"], ["https://tec.openplanner.team/stops/X636bda", "https://tec.openplanner.team/stops/X649abb"], ["https://tec.openplanner.team/stops/Btiegar1", "https://tec.openplanner.team/stops/Btiegoo2"], ["https://tec.openplanner.team/stops/LHMec--1", "https://tec.openplanner.team/stops/LHMgrun1"], ["https://tec.openplanner.team/stops/Cgocolo2", "https://tec.openplanner.team/stops/Cgolimi1"], ["https://tec.openplanner.team/stops/X696aba", "https://tec.openplanner.team/stops/X696aea"], ["https://tec.openplanner.team/stops/LHUbail2", "https://tec.openplanner.team/stops/NL76bcb"], ["https://tec.openplanner.team/stops/X829aea", "https://tec.openplanner.team/stops/X830aaa"], ["https://tec.openplanner.team/stops/H3so157b", "https://tec.openplanner.team/stops/H3so158a"], ["https://tec.openplanner.team/stops/Becegar1", "https://tec.openplanner.team/stops/Becepco1"], ["https://tec.openplanner.team/stops/H4fo119a", "https://tec.openplanner.team/stops/H4ga169a"], ["https://tec.openplanner.team/stops/N101aab", "https://tec.openplanner.team/stops/N101aea"], ["https://tec.openplanner.team/stops/X717aha", "https://tec.openplanner.team/stops/X782aoa"], ["https://tec.openplanner.team/stops/X921aha", "https://tec.openplanner.team/stops/X921ajc"], ["https://tec.openplanner.team/stops/LWAathe2", "https://tec.openplanner.team/stops/LWAgare*"], ["https://tec.openplanner.team/stops/N528aaa", "https://tec.openplanner.team/stops/N528aea"], ["https://tec.openplanner.team/stops/N506baa", "https://tec.openplanner.team/stops/N506bma"], ["https://tec.openplanner.team/stops/X730aab", "https://tec.openplanner.team/stops/X753acb"], ["https://tec.openplanner.team/stops/Bwavnam3", "https://tec.openplanner.team/stops/Bwavpao1"], ["https://tec.openplanner.team/stops/LTHchiv1", "https://tec.openplanner.team/stops/LTHturo3"], ["https://tec.openplanner.team/stops/H4ma204a", "https://tec.openplanner.team/stops/H4oq226a"], ["https://tec.openplanner.team/stops/LClbloc1", "https://tec.openplanner.team/stops/LCljose1"], ["https://tec.openplanner.team/stops/H1qu101b", "https://tec.openplanner.team/stops/H1qu129a"], ["https://tec.openplanner.team/stops/N222acb", "https://tec.openplanner.team/stops/N222adb"], ["https://tec.openplanner.team/stops/H1cu125a", "https://tec.openplanner.team/stops/H1cu129b"], ["https://tec.openplanner.team/stops/LwAschu2", "https://tec.openplanner.team/stops/LwAstum2"], ["https://tec.openplanner.team/stops/N563aaa", "https://tec.openplanner.team/stops/N563aab"], ["https://tec.openplanner.team/stops/LmUvilz1", "https://tec.openplanner.team/stops/LmUvilz2"], ["https://tec.openplanner.team/stops/X911acb", "https://tec.openplanner.team/stops/X911ava"], ["https://tec.openplanner.team/stops/H1bd100a", "https://tec.openplanner.team/stops/H1bd100b"], ["https://tec.openplanner.team/stops/LCSpoud1", "https://tec.openplanner.team/stops/LCSpoud2"], ["https://tec.openplanner.team/stops/Llgbida1", "https://tec.openplanner.team/stops/Llgware1"], ["https://tec.openplanner.team/stops/Lbhbalt1", "https://tec.openplanner.team/stops/LMFmoul2"], ["https://tec.openplanner.team/stops/LkEbran1", "https://tec.openplanner.team/stops/LMsgara1"], ["https://tec.openplanner.team/stops/Clgmaco1", "https://tec.openplanner.team/stops/Clgpavi1"], ["https://tec.openplanner.team/stops/H4ve131a", "https://tec.openplanner.team/stops/H4ve131b"], ["https://tec.openplanner.team/stops/X811aoa", "https://tec.openplanner.team/stops/X812aya"], ["https://tec.openplanner.team/stops/Bbsiabb2", "https://tec.openplanner.team/stops/Bbsifmo2"], ["https://tec.openplanner.team/stops/LCPcomp1", "https://tec.openplanner.team/stops/LCTcret1"], ["https://tec.openplanner.team/stops/LMApape1", "https://tec.openplanner.team/stops/LMAroch3"], ["https://tec.openplanner.team/stops/X793aka", "https://tec.openplanner.team/stops/X793aob"], ["https://tec.openplanner.team/stops/Ltibord1", "https://tec.openplanner.team/stops/Ltimarr1"], ["https://tec.openplanner.team/stops/N501bpa", "https://tec.openplanner.team/stops/N501btb"], ["https://tec.openplanner.team/stops/LMOmome1", "https://tec.openplanner.team/stops/LMOs45-2"], ["https://tec.openplanner.team/stops/N517add", "https://tec.openplanner.team/stops/NR30aaa"], ["https://tec.openplanner.team/stops/X766aba", "https://tec.openplanner.team/stops/X766aha"], ["https://tec.openplanner.team/stops/N513ala", "https://tec.openplanner.team/stops/N513alb"], ["https://tec.openplanner.team/stops/LLrquar2", "https://tec.openplanner.team/stops/LTHchiv1"], ["https://tec.openplanner.team/stops/Baegd741", "https://tec.openplanner.team/stops/Bgercen1"], ["https://tec.openplanner.team/stops/Bmangen1", "https://tec.openplanner.team/stops/H2mg144b"], ["https://tec.openplanner.team/stops/Cgycime1", "https://tec.openplanner.team/stops/Cgycime2"], ["https://tec.openplanner.team/stops/LOuhalb1", "https://tec.openplanner.team/stops/LOuouff1"], ["https://tec.openplanner.team/stops/LERboss1", "https://tec.openplanner.team/stops/LERboss2"], ["https://tec.openplanner.team/stops/H1el138a", "https://tec.openplanner.team/stops/H1el140b"], ["https://tec.openplanner.team/stops/X805aaa", "https://tec.openplanner.team/stops/X805akb"], ["https://tec.openplanner.team/stops/LESmagr1", "https://tec.openplanner.team/stops/LESmart1"], ["https://tec.openplanner.team/stops/Bwavbva1", "https://tec.openplanner.team/stops/Bwavlon2"], ["https://tec.openplanner.team/stops/Lmnmart1", "https://tec.openplanner.team/stops/Lsmsech3"], ["https://tec.openplanner.team/stops/H3th127b", "https://tec.openplanner.team/stops/H3th129a"], ["https://tec.openplanner.team/stops/Lghpero2", "https://tec.openplanner.team/stops/Lghsimo4"], ["https://tec.openplanner.team/stops/X912afb", "https://tec.openplanner.team/stops/X912aga"], ["https://tec.openplanner.team/stops/LbTkran1", "https://tec.openplanner.team/stops/LbTkreu4"], ["https://tec.openplanner.team/stops/H1me116a", "https://tec.openplanner.team/stops/H1mm122c"], ["https://tec.openplanner.team/stops/H4mb204a", "https://tec.openplanner.team/stops/H4mb205b"], ["https://tec.openplanner.team/stops/NL78aba", "https://tec.openplanner.team/stops/NL78acb"], ["https://tec.openplanner.team/stops/Crglyre2", "https://tec.openplanner.team/stops/Cstcent2"], ["https://tec.openplanner.team/stops/N511aaa", "https://tec.openplanner.team/stops/N511ahb"], ["https://tec.openplanner.team/stops/Llgvero3", "https://tec.openplanner.team/stops/Llgvero4"], ["https://tec.openplanner.team/stops/Cmastfi2", "https://tec.openplanner.team/stops/Cmomoul3"], ["https://tec.openplanner.team/stops/Cctkais1", "https://tec.openplanner.team/stops/Ccurtra2"], ["https://tec.openplanner.team/stops/LhEklos1", "https://tec.openplanner.team/stops/LhElont3"], ["https://tec.openplanner.team/stops/H1fr118a", "https://tec.openplanner.team/stops/H1fr119a"], ["https://tec.openplanner.team/stops/LJOferm2", "https://tec.openplanner.team/stops/LJOvill2"], ["https://tec.openplanner.team/stops/N152aba", "https://tec.openplanner.team/stops/N152abe"], ["https://tec.openplanner.team/stops/Lcebail2", "https://tec.openplanner.team/stops/Lceembo1"], ["https://tec.openplanner.team/stops/H2fa101b", "https://tec.openplanner.team/stops/H2fa103b"], ["https://tec.openplanner.team/stops/LOmecol2", "https://tec.openplanner.team/stops/LOmvill1"], ["https://tec.openplanner.team/stops/N308afb", "https://tec.openplanner.team/stops/N308afc"], ["https://tec.openplanner.team/stops/N244aca", "https://tec.openplanner.team/stops/N244ahb"], ["https://tec.openplanner.team/stops/Cobobjo2", "https://tec.openplanner.team/stops/Cpcgout1"], ["https://tec.openplanner.team/stops/N138aja", "https://tec.openplanner.team/stops/N138ajb"], ["https://tec.openplanner.team/stops/Cgd4ven2", "https://tec.openplanner.team/stops/Clggrfe1"], ["https://tec.openplanner.team/stops/H1cu110b", "https://tec.openplanner.team/stops/H1fr114b"], ["https://tec.openplanner.team/stops/H4va233b", "https://tec.openplanner.team/stops/H4va234a"], ["https://tec.openplanner.team/stops/X840acc", "https://tec.openplanner.team/stops/X840acd"], ["https://tec.openplanner.team/stops/X775acb", "https://tec.openplanner.team/stops/X775aeb"], ["https://tec.openplanner.team/stops/X614ala", "https://tec.openplanner.team/stops/X614alb"], ["https://tec.openplanner.team/stops/Balsbeg1", "https://tec.openplanner.team/stops/Balsbeg2"], ["https://tec.openplanner.team/stops/LCPaube2", "https://tec.openplanner.team/stops/LLNeg--1"], ["https://tec.openplanner.team/stops/N501aba", "https://tec.openplanner.team/stops/N503aca"], ["https://tec.openplanner.team/stops/X898ama", "https://tec.openplanner.team/stops/X899aeb"], ["https://tec.openplanner.team/stops/Bhmmlad1", "https://tec.openplanner.team/stops/Bhmmvdu1"], ["https://tec.openplanner.team/stops/Cgzclef1", "https://tec.openplanner.team/stops/Cgzcorn2"], ["https://tec.openplanner.team/stops/Bsgimca1", "https://tec.openplanner.team/stops/Bsgipmo1"], ["https://tec.openplanner.team/stops/Cmygbbo3", "https://tec.openplanner.team/stops/Cmyvert1"], ["https://tec.openplanner.team/stops/Cgzvivi2", "https://tec.openplanner.team/stops/Cmxpleg2"], ["https://tec.openplanner.team/stops/H1ms942a", "https://tec.openplanner.team/stops/H1ni322a"], ["https://tec.openplanner.team/stops/X804ala", "https://tec.openplanner.team/stops/X804bwa"], ["https://tec.openplanner.team/stops/Blemhon1", "https://tec.openplanner.team/stops/Blemhon2"], ["https://tec.openplanner.team/stops/LThbatt1", "https://tec.openplanner.team/stops/LTheg--1"], ["https://tec.openplanner.team/stops/Lbocorn2", "https://tec.openplanner.team/stops/Loumatt2"], ["https://tec.openplanner.team/stops/Lemarde1", "https://tec.openplanner.team/stops/Lemarde2"], ["https://tec.openplanner.team/stops/LOurena1", "https://tec.openplanner.team/stops/X982afb"], ["https://tec.openplanner.team/stops/H1mj125b", "https://tec.openplanner.team/stops/H1ml112a"], ["https://tec.openplanner.team/stops/LGDgdou1", "https://tec.openplanner.team/stops/LGDgdou2"], ["https://tec.openplanner.team/stops/Boppcen3", "https://tec.openplanner.team/stops/Boppcen4"], ["https://tec.openplanner.team/stops/LOTdelv1", "https://tec.openplanner.team/stops/LOTsava1"], ["https://tec.openplanner.team/stops/Blhueso1", "https://tec.openplanner.team/stops/Blhuone1"], ["https://tec.openplanner.team/stops/H4os221b", "https://tec.openplanner.team/stops/H4os221c"], ["https://tec.openplanner.team/stops/N528ata", "https://tec.openplanner.team/stops/N528atb"], ["https://tec.openplanner.team/stops/Clibrun2", "https://tec.openplanner.team/stops/Cliegli1"], ["https://tec.openplanner.team/stops/Bnivpgr1", "https://tec.openplanner.team/stops/Bnivpgr2"], ["https://tec.openplanner.team/stops/Lsechan2", "https://tec.openplanner.team/stops/Lsestap3"], ["https://tec.openplanner.team/stops/X892abb", "https://tec.openplanner.team/stops/X892acb"], ["https://tec.openplanner.team/stops/X734aob", "https://tec.openplanner.team/stops/X734apa"], ["https://tec.openplanner.team/stops/N145ajb", "https://tec.openplanner.team/stops/N150aka"], ["https://tec.openplanner.team/stops/LSLeg--1", "https://tec.openplanner.team/stops/LSLeg--2"], ["https://tec.openplanner.team/stops/X717agd", "https://tec.openplanner.team/stops/X718aia"], ["https://tec.openplanner.team/stops/N501jea", "https://tec.openplanner.team/stops/N501jeb"], ["https://tec.openplanner.team/stops/Btlgreg1", "https://tec.openplanner.team/stops/Btlgreg2"], ["https://tec.openplanner.team/stops/Lbomc--6", "https://tec.openplanner.team/stops/Lbosart1"], ["https://tec.openplanner.team/stops/X769alb", "https://tec.openplanner.team/stops/X769aob"], ["https://tec.openplanner.team/stops/X602aab", "https://tec.openplanner.team/stops/X602adb"], ["https://tec.openplanner.team/stops/H1fl135a", "https://tec.openplanner.team/stops/H1fl141a"], ["https://tec.openplanner.team/stops/H4do108a", "https://tec.openplanner.team/stops/H4do108b"], ["https://tec.openplanner.team/stops/Lvepala1", "https://tec.openplanner.team/stops/Lvepala5"], ["https://tec.openplanner.team/stops/Csemacq1", "https://tec.openplanner.team/stops/Csemacq4"], ["https://tec.openplanner.team/stops/LTieg--1", "https://tec.openplanner.team/stops/LTieg--2"], ["https://tec.openplanner.team/stops/Bottegl1", "https://tec.openplanner.team/stops/Bottegl3"], ["https://tec.openplanner.team/stops/N145aeb", "https://tec.openplanner.team/stops/N145aed"], ["https://tec.openplanner.team/stops/X601bba", "https://tec.openplanner.team/stops/X601dha"], ["https://tec.openplanner.team/stops/N308ahb", "https://tec.openplanner.team/stops/N308aja"], ["https://tec.openplanner.team/stops/N551ana", "https://tec.openplanner.team/stops/N551anb"], ["https://tec.openplanner.team/stops/H2mo135a", "https://tec.openplanner.team/stops/H2mo135b"], ["https://tec.openplanner.team/stops/Cgplutt2", "https://tec.openplanner.team/stops/H2gy113b"], ["https://tec.openplanner.team/stops/LAmsart2", "https://tec.openplanner.team/stops/LVLhalb1"], ["https://tec.openplanner.team/stops/X727aba", "https://tec.openplanner.team/stops/X767afa"], ["https://tec.openplanner.team/stops/Ccacoup1", "https://tec.openplanner.team/stops/Ccaegli4"], ["https://tec.openplanner.team/stops/H4ev126a", "https://tec.openplanner.team/stops/H4ev126b"], ["https://tec.openplanner.team/stops/X873aab", "https://tec.openplanner.team/stops/X873abb"], ["https://tec.openplanner.team/stops/H1je217a", "https://tec.openplanner.team/stops/H1je217b"], ["https://tec.openplanner.team/stops/LORpave2", "https://tec.openplanner.team/stops/LTychev2"], ["https://tec.openplanner.team/stops/Bgerd322", "https://tec.openplanner.team/stops/Bgrhpos1"], ["https://tec.openplanner.team/stops/N501iva", "https://tec.openplanner.team/stops/N501ivb"], ["https://tec.openplanner.team/stops/X614aaa", "https://tec.openplanner.team/stops/X614aka"], ["https://tec.openplanner.team/stops/H2sv215b", "https://tec.openplanner.team/stops/H2sv218b"], ["https://tec.openplanner.team/stops/Bbchmai1", "https://tec.openplanner.team/stops/Bitrfsc2"], ["https://tec.openplanner.team/stops/X801bea", "https://tec.openplanner.team/stops/X801bga"], ["https://tec.openplanner.team/stops/X646aaa", "https://tec.openplanner.team/stops/X646abb"], ["https://tec.openplanner.team/stops/Ljelamb1", "https://tec.openplanner.team/stops/Lsekubo1"], ["https://tec.openplanner.team/stops/LHhchau2", "https://tec.openplanner.team/stops/LHhmohe2"], ["https://tec.openplanner.team/stops/LListie1", "https://tec.openplanner.team/stops/LReeg--1"], ["https://tec.openplanner.team/stops/Bbeaech2", "https://tec.openplanner.team/stops/Bbeascl1"], ["https://tec.openplanner.team/stops/N323aca", "https://tec.openplanner.team/stops/N894ada"], ["https://tec.openplanner.team/stops/Bbcoeco2", "https://tec.openplanner.team/stops/H3br107b"], ["https://tec.openplanner.team/stops/LXobaty2", "https://tec.openplanner.team/stops/X599aga"], ["https://tec.openplanner.team/stops/Buccobs2", "https://tec.openplanner.team/stops/Buccptj2"], ["https://tec.openplanner.team/stops/N134agb", "https://tec.openplanner.team/stops/N134ahb"], ["https://tec.openplanner.team/stops/LBNeup22", "https://tec.openplanner.team/stops/LMemaza1"], ["https://tec.openplanner.team/stops/X741anb", "https://tec.openplanner.team/stops/X741aob"], ["https://tec.openplanner.team/stops/H4am102c", "https://tec.openplanner.team/stops/H4am113b"], ["https://tec.openplanner.team/stops/N337afb", "https://tec.openplanner.team/stops/N337agb"], ["https://tec.openplanner.team/stops/Cblcen3", "https://tec.openplanner.team/stops/Crbreve2"], ["https://tec.openplanner.team/stops/H4ch118b", "https://tec.openplanner.team/stops/H4ch119b"], ["https://tec.openplanner.team/stops/N504abb", "https://tec.openplanner.team/stops/N511aha"], ["https://tec.openplanner.team/stops/H4ea128a", "https://tec.openplanner.team/stops/H4ea129b"], ["https://tec.openplanner.team/stops/N232ata", "https://tec.openplanner.team/stops/N232bna"], ["https://tec.openplanner.team/stops/X695aga", "https://tec.openplanner.team/stops/X695aha"], ["https://tec.openplanner.team/stops/Cjubien1", "https://tec.openplanner.team/stops/Cjubien2"], ["https://tec.openplanner.team/stops/LXHbell1", "https://tec.openplanner.team/stops/LXHbell2"], ["https://tec.openplanner.team/stops/H1gh149a", "https://tec.openplanner.team/stops/H1ms297a"], ["https://tec.openplanner.team/stops/LAWhein3", "https://tec.openplanner.team/stops/LAWxhen1"], ["https://tec.openplanner.team/stops/LMAcite2", "https://tec.openplanner.team/stops/LMAcomm2"], ["https://tec.openplanner.team/stops/N207aaa", "https://tec.openplanner.team/stops/N207aba"], ["https://tec.openplanner.team/stops/Bllnald1", "https://tec.openplanner.team/stops/Bllnmet1"], ["https://tec.openplanner.team/stops/N132aea", "https://tec.openplanner.team/stops/N132afa"], ["https://tec.openplanner.team/stops/LFPstro2", "https://tec.openplanner.team/stops/LRmhage5"], ["https://tec.openplanner.team/stops/Cmlbeau4", "https://tec.openplanner.team/stops/Cmlbrac1"], ["https://tec.openplanner.team/stops/Lceegth1", "https://tec.openplanner.team/stops/Lcesart2"], ["https://tec.openplanner.team/stops/H1eu105a", "https://tec.openplanner.team/stops/H1lb152b"], ["https://tec.openplanner.team/stops/N242aea", "https://tec.openplanner.team/stops/N242agb"], ["https://tec.openplanner.team/stops/X765aaa", "https://tec.openplanner.team/stops/X766aeb"], ["https://tec.openplanner.team/stops/X601cna", "https://tec.openplanner.team/stops/X601cva"], ["https://tec.openplanner.team/stops/LFlabba1", "https://tec.openplanner.team/stops/LFlabba4"], ["https://tec.openplanner.team/stops/LMAgb--2", "https://tec.openplanner.team/stops/LMAptne1"], ["https://tec.openplanner.team/stops/H3bo100d", "https://tec.openplanner.team/stops/H3th127a"], ["https://tec.openplanner.team/stops/X879aob", "https://tec.openplanner.team/stops/X882aab"], ["https://tec.openplanner.team/stops/Cbmviv2", "https://tec.openplanner.team/stops/Cbmzoni1"], ["https://tec.openplanner.team/stops/Lbrcygn1", "https://tec.openplanner.team/stops/Lbrcygn2"], ["https://tec.openplanner.team/stops/Lvegc--5", "https://tec.openplanner.team/stops/Lvethea2"], ["https://tec.openplanner.team/stops/N571abb", "https://tec.openplanner.team/stops/N571adb"], ["https://tec.openplanner.team/stops/X740ada", "https://tec.openplanner.team/stops/X740afb"], ["https://tec.openplanner.team/stops/N519akb", "https://tec.openplanner.team/stops/N519ala"], ["https://tec.openplanner.team/stops/LGlbour1", "https://tec.openplanner.team/stops/LGlcite1"], ["https://tec.openplanner.team/stops/X808aja", "https://tec.openplanner.team/stops/X808ajb"], ["https://tec.openplanner.team/stops/N518aba", "https://tec.openplanner.team/stops/N519apa"], ["https://tec.openplanner.team/stops/H2ha133a", "https://tec.openplanner.team/stops/H2sb257c"], ["https://tec.openplanner.team/stops/H4mo164a", "https://tec.openplanner.team/stops/H4mo181d"], ["https://tec.openplanner.team/stops/H1ha182a", "https://tec.openplanner.team/stops/H1vg359b"], ["https://tec.openplanner.team/stops/N353aea", "https://tec.openplanner.team/stops/N355aea"], ["https://tec.openplanner.team/stops/H1ba119b", "https://tec.openplanner.team/stops/H1ba120b"], ["https://tec.openplanner.team/stops/Bptrlux1", "https://tec.openplanner.team/stops/Bptrlux2"], ["https://tec.openplanner.team/stops/N501cgb", "https://tec.openplanner.team/stops/N502adb"], ["https://tec.openplanner.team/stops/X561aea", "https://tec.openplanner.team/stops/X561aeb"], ["https://tec.openplanner.team/stops/LMalarg3", "https://tec.openplanner.team/stops/LPlchpl1"], ["https://tec.openplanner.team/stops/Bitrcan1", "https://tec.openplanner.team/stops/Bitrcro2"], ["https://tec.openplanner.team/stops/N503aia", "https://tec.openplanner.team/stops/N503aib"], ["https://tec.openplanner.team/stops/N219aba", "https://tec.openplanner.team/stops/N220adb"], ["https://tec.openplanner.team/stops/N565aic", "https://tec.openplanner.team/stops/N569afa"], ["https://tec.openplanner.team/stops/Bstetre1", "https://tec.openplanner.team/stops/Btubsal1"], ["https://tec.openplanner.team/stops/N524aka", "https://tec.openplanner.team/stops/N524akb"], ["https://tec.openplanner.team/stops/X618aia", "https://tec.openplanner.team/stops/X618aka"], ["https://tec.openplanner.team/stops/X781aab", "https://tec.openplanner.team/stops/X781abb"], ["https://tec.openplanner.team/stops/LFPloob1", "https://tec.openplanner.team/stops/LSJgrae2"], ["https://tec.openplanner.team/stops/LWAclos2", "https://tec.openplanner.team/stops/LWAor--2"], ["https://tec.openplanner.team/stops/X801aha", "https://tec.openplanner.team/stops/X801bqa"], ["https://tec.openplanner.team/stops/X657afa", "https://tec.openplanner.team/stops/X657ala"], ["https://tec.openplanner.team/stops/N533aab", "https://tec.openplanner.team/stops/N533aca"], ["https://tec.openplanner.team/stops/LeUbush1", "https://tec.openplanner.team/stops/LeUmoor1"], ["https://tec.openplanner.team/stops/H1tl120a", "https://tec.openplanner.team/stops/H1tl120b"], ["https://tec.openplanner.team/stops/X728ada", "https://tec.openplanner.team/stops/X728adb"], ["https://tec.openplanner.team/stops/H1ms935a", "https://tec.openplanner.team/stops/H1ms936a"], ["https://tec.openplanner.team/stops/X561aca", "https://tec.openplanner.team/stops/XODvill2"], ["https://tec.openplanner.team/stops/H1wa152b", "https://tec.openplanner.team/stops/H1wa158b"], ["https://tec.openplanner.team/stops/X758aea", "https://tec.openplanner.team/stops/X758aga"], ["https://tec.openplanner.team/stops/X662aba", "https://tec.openplanner.team/stops/X663aha"], ["https://tec.openplanner.team/stops/X899afa", "https://tec.openplanner.team/stops/X899agb"], ["https://tec.openplanner.team/stops/X608aya", "https://tec.openplanner.team/stops/X608aza"], ["https://tec.openplanner.team/stops/LFR201-1", "https://tec.openplanner.team/stops/LSZpiro1"], ["https://tec.openplanner.team/stops/H4an105a", "https://tec.openplanner.team/stops/H4wt160a"], ["https://tec.openplanner.team/stops/Cfaeclu2", "https://tec.openplanner.team/stops/Cplelec2"], ["https://tec.openplanner.team/stops/N501ksb", "https://tec.openplanner.team/stops/N501kwb"], ["https://tec.openplanner.team/stops/LElgerd6", "https://tec.openplanner.team/stops/LOucarr2"], ["https://tec.openplanner.team/stops/Cml3fon2", "https://tec.openplanner.team/stops/Cmlmatc2"], ["https://tec.openplanner.team/stops/LAMcime2", "https://tec.openplanner.team/stops/LAMrich2"], ["https://tec.openplanner.team/stops/H1he103a", "https://tec.openplanner.team/stops/H1he103b"], ["https://tec.openplanner.team/stops/X999aib", "https://tec.openplanner.team/stops/X999aja"], ["https://tec.openplanner.team/stops/H5is169a", "https://tec.openplanner.team/stops/H5is174a"], ["https://tec.openplanner.team/stops/N501jgb", "https://tec.openplanner.team/stops/N521acb"], ["https://tec.openplanner.team/stops/N232aqa", "https://tec.openplanner.team/stops/N232bnb"], ["https://tec.openplanner.team/stops/N501dwb", "https://tec.openplanner.team/stops/N501epd"], ["https://tec.openplanner.team/stops/Ljestat2", "https://tec.openplanner.team/stops/Lseespe1"], ["https://tec.openplanner.team/stops/LCPone91", "https://tec.openplanner.team/stops/LCPone92"], ["https://tec.openplanner.team/stops/X942aaa", "https://tec.openplanner.team/stops/X942aab"], ["https://tec.openplanner.team/stops/X870aga", "https://tec.openplanner.team/stops/X870aib"], ["https://tec.openplanner.team/stops/X604ahb", "https://tec.openplanner.team/stops/X604aib"], ["https://tec.openplanner.team/stops/Bolgeva1", "https://tec.openplanner.team/stops/Bolgfon1"], ["https://tec.openplanner.team/stops/Ctabaty3", "https://tec.openplanner.team/stops/N543cbc"], ["https://tec.openplanner.team/stops/Bnivga61", "https://tec.openplanner.team/stops/Bnivrwi2"], ["https://tec.openplanner.team/stops/H2ch106a", "https://tec.openplanner.team/stops/H2ch109b"], ["https://tec.openplanner.team/stops/H4po125a", "https://tec.openplanner.team/stops/H4po125b"], ["https://tec.openplanner.team/stops/Crajasm2", "https://tec.openplanner.team/stops/Crapaep2"], ["https://tec.openplanner.team/stops/H1bi101a", "https://tec.openplanner.team/stops/H1sa113a"], ["https://tec.openplanner.team/stops/LSPclai2", "https://tec.openplanner.team/stops/LSPgare*"], ["https://tec.openplanner.team/stops/NH21afb", "https://tec.openplanner.team/stops/NH21agb"], ["https://tec.openplanner.team/stops/LSPmari1", "https://tec.openplanner.team/stops/LSPsauv1"], ["https://tec.openplanner.team/stops/X734aoa", "https://tec.openplanner.team/stops/X775ada"], ["https://tec.openplanner.team/stops/LSDgris2", "https://tec.openplanner.team/stops/LSDvill1"], ["https://tec.openplanner.team/stops/Crcpla2", "https://tec.openplanner.team/stops/NH03aga"], ["https://tec.openplanner.team/stops/Bbghpln1", "https://tec.openplanner.team/stops/Bbghsta2"], ["https://tec.openplanner.team/stops/Crccarr1", "https://tec.openplanner.team/stops/NH03aeb"], ["https://tec.openplanner.team/stops/H1cu111b", "https://tec.openplanner.team/stops/H1hn202a"], ["https://tec.openplanner.team/stops/Bwaak101", "https://tec.openplanner.team/stops/Bwaak102"], ["https://tec.openplanner.team/stops/Clgmaco2", "https://tec.openplanner.team/stops/H1mc127a"], ["https://tec.openplanner.team/stops/N201afb", "https://tec.openplanner.team/stops/N201ara"], ["https://tec.openplanner.team/stops/Cgzabau3", "https://tec.openplanner.team/stops/Cgzdeve1"], ["https://tec.openplanner.team/stops/Bnstver1", "https://tec.openplanner.team/stops/H3lr107a"], ["https://tec.openplanner.team/stops/LWNbeto1", "https://tec.openplanner.team/stops/LWzfuma1"], ["https://tec.openplanner.team/stops/X739abb", "https://tec.openplanner.team/stops/X739aca"], ["https://tec.openplanner.team/stops/H1ol145a", "https://tec.openplanner.team/stops/H1ol145b"], ["https://tec.openplanner.team/stops/N501fdd", "https://tec.openplanner.team/stops/N501ffa"], ["https://tec.openplanner.team/stops/Lanlona1", "https://tec.openplanner.team/stops/Llgchau1"], ["https://tec.openplanner.team/stops/H2ll190a", "https://tec.openplanner.team/stops/H2ll199a"], ["https://tec.openplanner.team/stops/H2go114c", "https://tec.openplanner.team/stops/H2go119a"], ["https://tec.openplanner.team/stops/LkAkirc1", "https://tec.openplanner.team/stops/LkAmess2"], ["https://tec.openplanner.team/stops/Ccacoup2", "https://tec.openplanner.team/stops/Ccaegli3"], ["https://tec.openplanner.team/stops/H4bu108b", "https://tec.openplanner.team/stops/H4hg155b"], ["https://tec.openplanner.team/stops/N574aaa", "https://tec.openplanner.team/stops/N574agb"], ["https://tec.openplanner.team/stops/Bauddel2", "https://tec.openplanner.team/stops/Bwbfgar2"], ["https://tec.openplanner.team/stops/Cjuloos1", "https://tec.openplanner.team/stops/Cjuvand2"], ["https://tec.openplanner.team/stops/H1te175b", "https://tec.openplanner.team/stops/H1te177b"], ["https://tec.openplanner.team/stops/N507aoa", "https://tec.openplanner.team/stops/N507aqa"], ["https://tec.openplanner.team/stops/LAYchal2", "https://tec.openplanner.team/stops/LAYpl--1"], ["https://tec.openplanner.team/stops/H4ef112a", "https://tec.openplanner.team/stops/H4ef112b"], ["https://tec.openplanner.team/stops/Lbhpeti2", "https://tec.openplanner.team/stops/Lroeg--1"], ["https://tec.openplanner.team/stops/Lvchenn1", "https://tec.openplanner.team/stops/Lvcvesd*"], ["https://tec.openplanner.team/stops/H4me213a", "https://tec.openplanner.team/stops/H4ve137b"], ["https://tec.openplanner.team/stops/Lmochan1", "https://tec.openplanner.team/stops/Lmochan2"], ["https://tec.openplanner.team/stops/X801cka", "https://tec.openplanner.team/stops/X801ckb"], ["https://tec.openplanner.team/stops/LMfange1", "https://tec.openplanner.team/stops/LMfbacu1"], ["https://tec.openplanner.team/stops/LeUdepo2", "https://tec.openplanner.team/stops/LeUgend1"], ["https://tec.openplanner.team/stops/Landolh2", "https://tec.openplanner.team/stops/Lantonn1"], ["https://tec.openplanner.team/stops/LDpulve1", "https://tec.openplanner.team/stops/LDpulve2"], ["https://tec.openplanner.team/stops/N539afa", "https://tec.openplanner.team/stops/N539agb"], ["https://tec.openplanner.team/stops/X604aea", "https://tec.openplanner.team/stops/X604afd"], ["https://tec.openplanner.team/stops/N150aga", "https://tec.openplanner.team/stops/N150aib"], ["https://tec.openplanner.team/stops/Cgzgrru2", "https://tec.openplanner.team/stops/Cgzlera2"], ["https://tec.openplanner.team/stops/Cfogaul2", "https://tec.openplanner.team/stops/Cfowall1"], ["https://tec.openplanner.team/stops/Blasbgc1", "https://tec.openplanner.team/stops/Blasbti2"], ["https://tec.openplanner.team/stops/X840acb", "https://tec.openplanner.team/stops/X840adb"], ["https://tec.openplanner.team/stops/LJSeg--1", "https://tec.openplanner.team/stops/LTHcent1"], ["https://tec.openplanner.team/stops/Ljuauto2", "https://tec.openplanner.team/stops/Ljubonf2"], ["https://tec.openplanner.team/stops/LAYwerb1", "https://tec.openplanner.team/stops/LAYwerb2"], ["https://tec.openplanner.team/stops/Clbgare1", "https://tec.openplanner.team/stops/Cthstre2"], ["https://tec.openplanner.team/stops/Crolema1", "https://tec.openplanner.team/stops/Crolema3"], ["https://tec.openplanner.team/stops/LMsvill2", "https://tec.openplanner.team/stops/LPbpeti1"], ["https://tec.openplanner.team/stops/X901atb", "https://tec.openplanner.team/stops/X901avb"], ["https://tec.openplanner.team/stops/H4bv145c", "https://tec.openplanner.team/stops/H5at111a"], ["https://tec.openplanner.team/stops/LSuusin2", "https://tec.openplanner.team/stops/Lvecrot2"], ["https://tec.openplanner.team/stops/X902ana", "https://tec.openplanner.team/stops/X902bcb"], ["https://tec.openplanner.team/stops/N505alb", "https://tec.openplanner.team/stops/N511asb"], ["https://tec.openplanner.team/stops/Brsgecu1", "https://tec.openplanner.team/stops/Brsggol1"], ["https://tec.openplanner.team/stops/X982bma", "https://tec.openplanner.team/stops/X982bmb"], ["https://tec.openplanner.team/stops/H1cv103a", "https://tec.openplanner.team/stops/H1cv103b"], ["https://tec.openplanner.team/stops/Lfhnrou1", "https://tec.openplanner.team/stops/Lpocent1"], ["https://tec.openplanner.team/stops/H4hs137a", "https://tec.openplanner.team/stops/H4hs137b"], ["https://tec.openplanner.team/stops/LFsguil1", "https://tec.openplanner.team/stops/LFsguil2"], ["https://tec.openplanner.team/stops/H1cu112b", "https://tec.openplanner.team/stops/H1cu130b"], ["https://tec.openplanner.team/stops/X991ajb", "https://tec.openplanner.team/stops/X991alb"], ["https://tec.openplanner.team/stops/N501hba", "https://tec.openplanner.team/stops/N501hlx"], ["https://tec.openplanner.team/stops/Llgamer1", "https://tec.openplanner.team/stops/Llgcour1"], ["https://tec.openplanner.team/stops/Canh1942", "https://tec.openplanner.team/stops/H2an110b"], ["https://tec.openplanner.team/stops/H3bo100c", "https://tec.openplanner.team/stops/H3bo103b"], ["https://tec.openplanner.team/stops/N211ala", "https://tec.openplanner.team/stops/N211bba"], ["https://tec.openplanner.team/stops/LAbchpl1", "https://tec.openplanner.team/stops/LSevitu4"], ["https://tec.openplanner.team/stops/H4an107a", "https://tec.openplanner.team/stops/H4ce108b"], ["https://tec.openplanner.team/stops/X805aga", "https://tec.openplanner.team/stops/X805agb"], ["https://tec.openplanner.team/stops/N551aob", "https://tec.openplanner.team/stops/N552adb"], ["https://tec.openplanner.team/stops/Cctbois1", "https://tec.openplanner.team/stops/Cctkais2"], ["https://tec.openplanner.team/stops/X769aab", "https://tec.openplanner.team/stops/X769aba"], ["https://tec.openplanner.team/stops/Btlbtbe1", "https://tec.openplanner.team/stops/Btlbtbe2"], ["https://tec.openplanner.team/stops/Btubcvi1", "https://tec.openplanner.team/stops/Btubois2"], ["https://tec.openplanner.team/stops/H2ma202b", "https://tec.openplanner.team/stops/H2ma209a"], ["https://tec.openplanner.team/stops/Bottcli1", "https://tec.openplanner.team/stops/Bottcli4"], ["https://tec.openplanner.team/stops/Bbldass2", "https://tec.openplanner.team/stops/Bbldgar2"], ["https://tec.openplanner.team/stops/H1ba116a", "https://tec.openplanner.team/stops/H1gh371b"], ["https://tec.openplanner.team/stops/LVEcroi1", "https://tec.openplanner.team/stops/LVErtt-2"], ["https://tec.openplanner.team/stops/H1cv100a", "https://tec.openplanner.team/stops/H1cv102b"], ["https://tec.openplanner.team/stops/X601aea", "https://tec.openplanner.team/stops/X601cta"], ["https://tec.openplanner.team/stops/N501fby", "https://tec.openplanner.team/stops/N501fqd"], ["https://tec.openplanner.team/stops/LCHrhou1", "https://tec.openplanner.team/stops/Ldicorb2"], ["https://tec.openplanner.team/stops/Lfllapi2", "https://tec.openplanner.team/stops/Lfllapi5"], ["https://tec.openplanner.team/stops/N245aca", "https://tec.openplanner.team/stops/N245acb"], ["https://tec.openplanner.team/stops/NL75aaa", "https://tec.openplanner.team/stops/NL75adb"], ["https://tec.openplanner.team/stops/Cjudevo2", "https://tec.openplanner.team/stops/Cjuhden3"], ["https://tec.openplanner.team/stops/LVevill1", "https://tec.openplanner.team/stops/LVGeg--5"], ["https://tec.openplanner.team/stops/H1gn147a", "https://tec.openplanner.team/stops/H1gn150a"], ["https://tec.openplanner.team/stops/X921ala", "https://tec.openplanner.team/stops/X979aab"], ["https://tec.openplanner.team/stops/X345aaa", "https://tec.openplanner.team/stops/X345aba"], ["https://tec.openplanner.team/stops/N122aaa", "https://tec.openplanner.team/stops/N122agb"], ["https://tec.openplanner.team/stops/H1do119b", "https://tec.openplanner.team/stops/H1do129a"], ["https://tec.openplanner.team/stops/LVbpave1", "https://tec.openplanner.team/stops/LVbstre2"], ["https://tec.openplanner.team/stops/H1gy114b", "https://tec.openplanner.team/stops/H1le119b"], ["https://tec.openplanner.team/stops/X747aia", "https://tec.openplanner.team/stops/X747ajb"], ["https://tec.openplanner.team/stops/LAUvdab1", "https://tec.openplanner.team/stops/LSJeg--1"], ["https://tec.openplanner.team/stops/X775aic", "https://tec.openplanner.team/stops/X775aid"], ["https://tec.openplanner.team/stops/Bhlvgar1", "https://tec.openplanner.team/stops/Crehout1"], ["https://tec.openplanner.team/stops/X725acb", "https://tec.openplanner.team/stops/X725aha"], ["https://tec.openplanner.team/stops/Ccogibr1", "https://tec.openplanner.team/stops/Ccojaur2"], ["https://tec.openplanner.team/stops/H4hs137b", "https://tec.openplanner.team/stops/H4th141a"], ["https://tec.openplanner.team/stops/LVbgend1", "https://tec.openplanner.team/stops/LVbstre1"], ["https://tec.openplanner.team/stops/Lfhhosp1", "https://tec.openplanner.team/stops/Ljemeca2"], ["https://tec.openplanner.team/stops/X807aba", "https://tec.openplanner.team/stops/X807ada"], ["https://tec.openplanner.team/stops/Llgcita1", "https://tec.openplanner.team/stops/Llgvelb2"], ["https://tec.openplanner.team/stops/N511aia", "https://tec.openplanner.team/stops/N511alc"], ["https://tec.openplanner.team/stops/Bjodcad1", "https://tec.openplanner.team/stops/NR10acb"], ["https://tec.openplanner.team/stops/Bbchume1", "https://tec.openplanner.team/stops/Bcbqtub1"], ["https://tec.openplanner.team/stops/H1je211a", "https://tec.openplanner.team/stops/H1je217a"], ["https://tec.openplanner.team/stops/N534axa", "https://tec.openplanner.team/stops/N534axb"], ["https://tec.openplanner.team/stops/H2le147a", "https://tec.openplanner.team/stops/H2le147c"], ["https://tec.openplanner.team/stops/X782aka", "https://tec.openplanner.team/stops/X784aea"], ["https://tec.openplanner.team/stops/LEN183-1", "https://tec.openplanner.team/stops/LSBsere2"], ["https://tec.openplanner.team/stops/Cmtchet2", "https://tec.openplanner.team/stops/Cmtyern1"], ["https://tec.openplanner.team/stops/Bllngar5", "https://tec.openplanner.team/stops/Bllngar6"], ["https://tec.openplanner.team/stops/H4bo114b", "https://tec.openplanner.team/stops/H4bo119b"], ["https://tec.openplanner.team/stops/H1el136a", "https://tec.openplanner.team/stops/H1el137a"], ["https://tec.openplanner.team/stops/X638aob", "https://tec.openplanner.team/stops/X638apb"], ["https://tec.openplanner.team/stops/LXofans1", "https://tec.openplanner.team/stops/LXopier2"], ["https://tec.openplanner.team/stops/Cctchav1", "https://tec.openplanner.team/stops/Cplcafp1"], ["https://tec.openplanner.team/stops/Lverogi2", "https://tec.openplanner.team/stops/Lveyser2"], ["https://tec.openplanner.team/stops/X801bka", "https://tec.openplanner.team/stops/X802aja"], ["https://tec.openplanner.team/stops/X802aib", "https://tec.openplanner.team/stops/X802aka"], ["https://tec.openplanner.team/stops/H3th134b", "https://tec.openplanner.team/stops/H3th135e"], ["https://tec.openplanner.team/stops/LBkwind2", "https://tec.openplanner.team/stops/LMNpt--2"], ["https://tec.openplanner.team/stops/LlNbene1", "https://tec.openplanner.team/stops/LlNlont1"], ["https://tec.openplanner.team/stops/H5at134b", "https://tec.openplanner.team/stops/H5at142b"], ["https://tec.openplanner.team/stops/X749adb", "https://tec.openplanner.team/stops/X749aea"], ["https://tec.openplanner.team/stops/N539aua", "https://tec.openplanner.team/stops/N539bga"], ["https://tec.openplanner.team/stops/Becebju2", "https://tec.openplanner.team/stops/Bnstlna1"], ["https://tec.openplanner.team/stops/LHNcoll2", "https://tec.openplanner.team/stops/LHNcreh2"], ["https://tec.openplanner.team/stops/NL73aab", "https://tec.openplanner.team/stops/NL73abb"], ["https://tec.openplanner.team/stops/N531ata", "https://tec.openplanner.team/stops/N534bkg"], ["https://tec.openplanner.team/stops/N514ahb", "https://tec.openplanner.team/stops/N514ana"], ["https://tec.openplanner.team/stops/X342ahb", "https://tec.openplanner.team/stops/X354aaa"], ["https://tec.openplanner.team/stops/H1ni315b", "https://tec.openplanner.team/stops/H1ni317a"], ["https://tec.openplanner.team/stops/H1qu100c", "https://tec.openplanner.team/stops/H1qu120a"], ["https://tec.openplanner.team/stops/N224aaa", "https://tec.openplanner.team/stops/X224aab"], ["https://tec.openplanner.team/stops/LHgpost1", "https://tec.openplanner.team/stops/LHgtomb1"], ["https://tec.openplanner.team/stops/X989aba", "https://tec.openplanner.team/stops/X989abb"], ["https://tec.openplanner.team/stops/X758aab", "https://tec.openplanner.team/stops/X840afa"], ["https://tec.openplanner.team/stops/N222adb", "https://tec.openplanner.team/stops/X222adc"], ["https://tec.openplanner.team/stops/LAUbirv2", "https://tec.openplanner.team/stops/LHCandr2"], ["https://tec.openplanner.team/stops/LLrgobe1", "https://tec.openplanner.team/stops/LLrgobe2"], ["https://tec.openplanner.team/stops/X733ajb", "https://tec.openplanner.team/stops/X733ala"], ["https://tec.openplanner.team/stops/LHAdeho1", "https://tec.openplanner.team/stops/LHAmonu1"], ["https://tec.openplanner.team/stops/H1ju120b", "https://tec.openplanner.team/stops/H1ju121b"], ["https://tec.openplanner.team/stops/LBGjacq1", "https://tec.openplanner.team/stops/LBGjacq2"], ["https://tec.openplanner.team/stops/H4mo166a", "https://tec.openplanner.team/stops/H4mo204a"], ["https://tec.openplanner.team/stops/Lrcastr4", "https://tec.openplanner.team/stops/Lrclant4"], ["https://tec.openplanner.team/stops/N534acb", "https://tec.openplanner.team/stops/N543byb"], ["https://tec.openplanner.team/stops/Llgbuis1", "https://tec.openplanner.team/stops/Lscstan2"], ["https://tec.openplanner.team/stops/X609aaa", "https://tec.openplanner.team/stops/X609aba"], ["https://tec.openplanner.team/stops/X307aca", "https://tec.openplanner.team/stops/X307adb"], ["https://tec.openplanner.team/stops/Lflmc--1", "https://tec.openplanner.team/stops/Lflmc--2"], ["https://tec.openplanner.team/stops/LREelse1", "https://tec.openplanner.team/stops/LREelse2"], ["https://tec.openplanner.team/stops/LHUanth1", "https://tec.openplanner.team/stops/LHUanth2"], ["https://tec.openplanner.team/stops/X639aab", "https://tec.openplanner.team/stops/X639apa"], ["https://tec.openplanner.team/stops/LAyabri2", "https://tec.openplanner.team/stops/Lflrhot1"], ["https://tec.openplanner.team/stops/Bmelmqu1", "https://tec.openplanner.team/stops/Bmelmqu2"], ["https://tec.openplanner.team/stops/LeUrote1", "https://tec.openplanner.team/stops/LeUrote2"], ["https://tec.openplanner.team/stops/Btsleco1", "https://tec.openplanner.team/stops/Btsllnd1"], ["https://tec.openplanner.team/stops/Cfabaty1", "https://tec.openplanner.team/stops/Cflspir1"], ["https://tec.openplanner.team/stops/LAicarr2", "https://tec.openplanner.team/stops/LENalun1"], ["https://tec.openplanner.team/stops/N232ava", "https://tec.openplanner.team/stops/N232avb"], ["https://tec.openplanner.team/stops/LBGroma2", "https://tec.openplanner.team/stops/LLnpomp1"], ["https://tec.openplanner.team/stops/Ljubruy2", "https://tec.openplanner.team/stops/Ljugode1"], ["https://tec.openplanner.team/stops/H4ta123a", "https://tec.openplanner.team/stops/H4ta123b"], ["https://tec.openplanner.team/stops/LOUbarr3", "https://tec.openplanner.team/stops/LOUbleu2"], ["https://tec.openplanner.team/stops/LbUgend1", "https://tec.openplanner.team/stops/LbUmalm1"], ["https://tec.openplanner.team/stops/Ceqcfra2", "https://tec.openplanner.team/stops/H1er105b"], ["https://tec.openplanner.team/stops/Cflhano2", "https://tec.openplanner.team/stops/Cwfmoul2"], ["https://tec.openplanner.team/stops/N573apb", "https://tec.openplanner.team/stops/N573aqb"], ["https://tec.openplanner.team/stops/H4ag106a", "https://tec.openplanner.team/stops/H4ag107a"], ["https://tec.openplanner.team/stops/N201aab", "https://tec.openplanner.team/stops/N201aqa"], ["https://tec.openplanner.team/stops/Clodrio1", "https://tec.openplanner.team/stops/Clodrio3"], ["https://tec.openplanner.team/stops/H2ll197b", "https://tec.openplanner.team/stops/H2ll267a"], ["https://tec.openplanner.team/stops/LFRgode2", "https://tec.openplanner.team/stops/LFRrohe1"], ["https://tec.openplanner.team/stops/X979aca", "https://tec.openplanner.team/stops/X979aka"], ["https://tec.openplanner.team/stops/X613aab", "https://tec.openplanner.team/stops/X623aka"], ["https://tec.openplanner.team/stops/LLbcafe2", "https://tec.openplanner.team/stops/LLbpt--2"], ["https://tec.openplanner.team/stops/N141aja", "https://tec.openplanner.team/stops/N141ala"], ["https://tec.openplanner.team/stops/X626aib", "https://tec.openplanner.team/stops/X626ajb"], ["https://tec.openplanner.team/stops/X850ama", "https://tec.openplanner.team/stops/X850ana"], ["https://tec.openplanner.team/stops/H1ma234b", "https://tec.openplanner.team/stops/H1mj124a"], ["https://tec.openplanner.team/stops/N585aha", "https://tec.openplanner.team/stops/N585ala"], ["https://tec.openplanner.team/stops/X789adb", "https://tec.openplanner.team/stops/X789aea"], ["https://tec.openplanner.team/stops/LDmeg--2", "https://tec.openplanner.team/stops/LHocroi2"], ["https://tec.openplanner.team/stops/N118ana", "https://tec.openplanner.team/stops/N118anc"], ["https://tec.openplanner.team/stops/Bneepne1", "https://tec.openplanner.team/stops/Bneepne2"], ["https://tec.openplanner.team/stops/H4he102a", "https://tec.openplanner.team/stops/H4he106a"], ["https://tec.openplanner.team/stops/H1br134b", "https://tec.openplanner.team/stops/H2ma202a"], ["https://tec.openplanner.team/stops/H1ml112a", "https://tec.openplanner.team/stops/H1ne138b"], ["https://tec.openplanner.team/stops/H3bi112a", "https://tec.openplanner.team/stops/H3bi118a"], ["https://tec.openplanner.team/stops/N139aba", "https://tec.openplanner.team/stops/N146aeb"], ["https://tec.openplanner.team/stops/H4mo181b", "https://tec.openplanner.team/stops/H4mo181d"], ["https://tec.openplanner.team/stops/N501mpa", "https://tec.openplanner.team/stops/N521aqb"], ["https://tec.openplanner.team/stops/LBkgrae1", "https://tec.openplanner.team/stops/LWEfati1"], ["https://tec.openplanner.team/stops/Lsekubo3", "https://tec.openplanner.team/stops/Lsekubo4"], ["https://tec.openplanner.team/stops/LPLarbo2", "https://tec.openplanner.team/stops/LPLphar1"], ["https://tec.openplanner.team/stops/H4ka180a", "https://tec.openplanner.team/stops/H4ka194a"], ["https://tec.openplanner.team/stops/Bmsgbay2", "https://tec.openplanner.team/stops/Bmsgpfo1"], ["https://tec.openplanner.team/stops/X723adb", "https://tec.openplanner.team/stops/X723afa"], ["https://tec.openplanner.team/stops/LOReg--1", "https://tec.openplanner.team/stops/LORhorp1"], ["https://tec.openplanner.team/stops/H2hg272a", "https://tec.openplanner.team/stops/H2hg272b"], ["https://tec.openplanner.team/stops/H1hw121a", "https://tec.openplanner.team/stops/H1hw121b"], ["https://tec.openplanner.team/stops/X663ara", "https://tec.openplanner.team/stops/X664aoa"], ["https://tec.openplanner.team/stops/X625aaa", "https://tec.openplanner.team/stops/X625aga"], ["https://tec.openplanner.team/stops/LMNeg--2", "https://tec.openplanner.team/stops/LMNgend1"], ["https://tec.openplanner.team/stops/Lemmath1", "https://tec.openplanner.team/stops/Lemmath2"], ["https://tec.openplanner.team/stops/Bwatceg2", "https://tec.openplanner.team/stops/Bwatrsg1"], ["https://tec.openplanner.team/stops/LNEtonv1", "https://tec.openplanner.team/stops/LOLvill1"], ["https://tec.openplanner.team/stops/H1sd346a", "https://tec.openplanner.team/stops/H1sd366a"], ["https://tec.openplanner.team/stops/N134aac", "https://tec.openplanner.team/stops/N134aca"], ["https://tec.openplanner.team/stops/Bmarcat1", "https://tec.openplanner.team/stops/Bmarcat2"], ["https://tec.openplanner.team/stops/LSZclem1", "https://tec.openplanner.team/stops/LSZpont1"], ["https://tec.openplanner.team/stops/Bgliegl1", "https://tec.openplanner.team/stops/Bgliegl2"], ["https://tec.openplanner.team/stops/X775akb", "https://tec.openplanner.team/stops/X775ana"], ["https://tec.openplanner.team/stops/LWbcarr1", "https://tec.openplanner.team/stops/X512abb"], ["https://tec.openplanner.team/stops/Ljhsart2", "https://tec.openplanner.team/stops/Ljhsart4"], ["https://tec.openplanner.team/stops/LSUroyo2", "https://tec.openplanner.team/stops/LSZprie1"], ["https://tec.openplanner.team/stops/X908aka", "https://tec.openplanner.team/stops/X908ala"], ["https://tec.openplanner.team/stops/Bezegar2", "https://tec.openplanner.team/stops/Bneesjo1"], ["https://tec.openplanner.team/stops/N551ala", "https://tec.openplanner.team/stops/N551aoa"], ["https://tec.openplanner.team/stops/LaMades2", "https://tec.openplanner.team/stops/LaMbrei2"], ["https://tec.openplanner.team/stops/LrUbahn2", "https://tec.openplanner.team/stops/LrUbrac4"], ["https://tec.openplanner.team/stops/Bgntcha2", "https://tec.openplanner.team/stops/Bgntcoo2"], ["https://tec.openplanner.team/stops/Llgbaro2", "https://tec.openplanner.team/stops/Llgbaro4"], ["https://tec.openplanner.team/stops/N501hla", "https://tec.openplanner.team/stops/N501hlz"], ["https://tec.openplanner.team/stops/Claptcf1", "https://tec.openplanner.team/stops/NC23aba"], ["https://tec.openplanner.team/stops/Cciethi1", "https://tec.openplanner.team/stops/Cciethi2"], ["https://tec.openplanner.team/stops/LFCdree2", "https://tec.openplanner.team/stops/LFClage2"], ["https://tec.openplanner.team/stops/X806aca", "https://tec.openplanner.team/stops/X806ala"], ["https://tec.openplanner.team/stops/H4ar104a", "https://tec.openplanner.team/stops/H4ar178a"], ["https://tec.openplanner.team/stops/H1le117a", "https://tec.openplanner.team/stops/H1ol137a"], ["https://tec.openplanner.team/stops/Canplch1", "https://tec.openplanner.team/stops/Canplch2"], ["https://tec.openplanner.team/stops/X715aqa", "https://tec.openplanner.team/stops/X715aqb"], ["https://tec.openplanner.team/stops/Ccigill2", "https://tec.openplanner.team/stops/NC02aua"], ["https://tec.openplanner.team/stops/Cgochfe1", "https://tec.openplanner.team/stops/CMfbru1"], ["https://tec.openplanner.team/stops/Csycant1", "https://tec.openplanner.team/stops/Csytouq1"], ["https://tec.openplanner.team/stops/H4vx360a", "https://tec.openplanner.team/stops/H4vx366b"], ["https://tec.openplanner.team/stops/LmIcafe2", "https://tec.openplanner.team/stops/LmIkirc2"], ["https://tec.openplanner.team/stops/Bcrbgro1", "https://tec.openplanner.team/stops/Bcrbtho1"], ["https://tec.openplanner.team/stops/Csobail2", "https://tec.openplanner.team/stops/Csoperi2"], ["https://tec.openplanner.team/stops/Blkbbvh1", "https://tec.openplanner.team/stops/Bucccre2"], ["https://tec.openplanner.team/stops/LPRecol2", "https://tec.openplanner.team/stops/LTResse1"], ["https://tec.openplanner.team/stops/Lrapays2", "https://tec.openplanner.team/stops/LSAchef2"], ["https://tec.openplanner.team/stops/LFEland2", "https://tec.openplanner.team/stops/X597aqb"], ["https://tec.openplanner.team/stops/Llgdelb2", "https://tec.openplanner.team/stops/Llggrav2"], ["https://tec.openplanner.team/stops/Ltibell1", "https://tec.openplanner.team/stops/Ltiplat2"], ["https://tec.openplanner.team/stops/H4mv191b", "https://tec.openplanner.team/stops/H4va232a"], ["https://tec.openplanner.team/stops/Bhancom1", "https://tec.openplanner.team/stops/LHNgend2"], ["https://tec.openplanner.team/stops/H4ty293b", "https://tec.openplanner.team/stops/H4ty353b"], ["https://tec.openplanner.team/stops/X750bla", "https://tec.openplanner.team/stops/X750blb"], ["https://tec.openplanner.team/stops/N209aab", "https://tec.openplanner.team/stops/N209abb"], ["https://tec.openplanner.team/stops/NH03ada", "https://tec.openplanner.team/stops/NH03adb"], ["https://tec.openplanner.team/stops/LCdchod2", "https://tec.openplanner.team/stops/LGDgdou2"], ["https://tec.openplanner.team/stops/LFLcent1", "https://tec.openplanner.team/stops/LSphote1"], ["https://tec.openplanner.team/stops/X750aab", "https://tec.openplanner.team/stops/X750abb"], ["https://tec.openplanner.team/stops/Bmanati2", "https://tec.openplanner.team/stops/Bsenbmc2"], ["https://tec.openplanner.team/stops/N553abb", "https://tec.openplanner.team/stops/N553ama"], ["https://tec.openplanner.team/stops/H4pi130a", "https://tec.openplanner.team/stops/H4pi130b"], ["https://tec.openplanner.team/stops/LnErech1", "https://tec.openplanner.team/stops/LnErech2"], ["https://tec.openplanner.team/stops/LFCvoer2", "https://tec.openplanner.team/stops/LMastat3"], ["https://tec.openplanner.team/stops/H4ef113a", "https://tec.openplanner.team/stops/H4ef113d"], ["https://tec.openplanner.team/stops/Cvtgsar3", "https://tec.openplanner.team/stops/Cvthoeu1"], ["https://tec.openplanner.team/stops/N207aca", "https://tec.openplanner.team/stops/N207acb"], ["https://tec.openplanner.team/stops/LXHadam1", "https://tec.openplanner.team/stops/LXHbois1"], ["https://tec.openplanner.team/stops/Bbstchv1", "https://tec.openplanner.team/stops/Bsmgbsa1"], ["https://tec.openplanner.team/stops/Cjuheig4", "https://tec.openplanner.team/stops/Cjupier1"], ["https://tec.openplanner.team/stops/LESryon2", "https://tec.openplanner.team/stops/LSdencl*"], ["https://tec.openplanner.team/stops/H1fr128a", "https://tec.openplanner.team/stops/H1fr129a"], ["https://tec.openplanner.team/stops/N501hya", "https://tec.openplanner.team/stops/N501hyb"], ["https://tec.openplanner.team/stops/Bmrleco4", "https://tec.openplanner.team/stops/Bmrlnce2"], ["https://tec.openplanner.team/stops/H1qu120a", "https://tec.openplanner.team/stops/H1qu120b"], ["https://tec.openplanner.team/stops/LJAdeho3", "https://tec.openplanner.team/stops/LJAhanq1"], ["https://tec.openplanner.team/stops/LGmeg--2", "https://tec.openplanner.team/stops/LGmloti2"], ["https://tec.openplanner.team/stops/Bnivall2", "https://tec.openplanner.team/stops/Bnivchh1"], ["https://tec.openplanner.team/stops/Bitrcha1", "https://tec.openplanner.team/stops/Bitrmde2"], ["https://tec.openplanner.team/stops/LCaalou1", "https://tec.openplanner.team/stops/LCaalou2"], ["https://tec.openplanner.team/stops/LXhhaka2", "https://tec.openplanner.team/stops/LXhmara2"], ["https://tec.openplanner.team/stops/N254aaa", "https://tec.openplanner.team/stops/N254aba"], ["https://tec.openplanner.team/stops/NH21afa", "https://tec.openplanner.team/stops/NH21afb"], ["https://tec.openplanner.team/stops/N501iey", "https://tec.openplanner.team/stops/N501iez"], ["https://tec.openplanner.team/stops/H1wi150b", "https://tec.openplanner.team/stops/H1wi157a"], ["https://tec.openplanner.team/stops/Cthhvil6", "https://tec.openplanner.team/stops/Cthvbas3"], ["https://tec.openplanner.team/stops/N229agb", "https://tec.openplanner.team/stops/N229aha"], ["https://tec.openplanner.team/stops/X986alc", "https://tec.openplanner.team/stops/X986ama"], ["https://tec.openplanner.team/stops/Lalmitt2", "https://tec.openplanner.team/stops/LAWhein3"], ["https://tec.openplanner.team/stops/LSNmoul2", "https://tec.openplanner.team/stops/LSNmoul3"], ["https://tec.openplanner.team/stops/X724aia", "https://tec.openplanner.team/stops/X766aaa"], ["https://tec.openplanner.team/stops/X615aab", "https://tec.openplanner.team/stops/X615aea"], ["https://tec.openplanner.team/stops/Btilmar1", "https://tec.openplanner.team/stops/Btilmar2"], ["https://tec.openplanner.team/stops/N501ihz", "https://tec.openplanner.team/stops/N501ija"], ["https://tec.openplanner.team/stops/H5el105a", "https://tec.openplanner.team/stops/H5el111b"], ["https://tec.openplanner.team/stops/NH03aga", "https://tec.openplanner.team/stops/NH03agb"], ["https://tec.openplanner.team/stops/X261abb", "https://tec.openplanner.team/stops/X261aca"], ["https://tec.openplanner.team/stops/N531asa", "https://tec.openplanner.team/stops/N531asb"], ["https://tec.openplanner.team/stops/Boffegl1", "https://tec.openplanner.team/stops/Boffegl2"], ["https://tec.openplanner.team/stops/N509aka", "https://tec.openplanner.team/stops/N509awa"], ["https://tec.openplanner.team/stops/N155afa", "https://tec.openplanner.team/stops/N155aha"], ["https://tec.openplanner.team/stops/X222afa", "https://tec.openplanner.team/stops/X222ala"], ["https://tec.openplanner.team/stops/X982bca", "https://tec.openplanner.team/stops/X982bdb"], ["https://tec.openplanner.team/stops/LSLprov1", "https://tec.openplanner.team/stops/LSLvaux1"], ["https://tec.openplanner.team/stops/LmOkape1", "https://tec.openplanner.team/stops/Ltheg--2"], ["https://tec.openplanner.team/stops/X608abb", "https://tec.openplanner.team/stops/X608aib"], ["https://tec.openplanner.team/stops/H2lh124b", "https://tec.openplanner.team/stops/H2lh131a"], ["https://tec.openplanner.team/stops/N584azb", "https://tec.openplanner.team/stops/N584boa"], ["https://tec.openplanner.team/stops/N134alb", "https://tec.openplanner.team/stops/N135bia"], ["https://tec.openplanner.team/stops/X982alb", "https://tec.openplanner.team/stops/X982ama"], ["https://tec.openplanner.team/stops/H1cu113a", "https://tec.openplanner.team/stops/H1cu113b"], ["https://tec.openplanner.team/stops/Lhrstev1", "https://tec.openplanner.team/stops/Lhrstev2"], ["https://tec.openplanner.team/stops/CMparc1", "https://tec.openplanner.team/stops/Cmtrneu2"], ["https://tec.openplanner.team/stops/H1et102a", "https://tec.openplanner.team/stops/H1et102b"], ["https://tec.openplanner.team/stops/N134adb", "https://tec.openplanner.team/stops/N134ala"], ["https://tec.openplanner.team/stops/N501esa", "https://tec.openplanner.team/stops/N501esz"], ["https://tec.openplanner.team/stops/N270ada", "https://tec.openplanner.team/stops/N270adb"], ["https://tec.openplanner.team/stops/H1ch141b", "https://tec.openplanner.team/stops/H1hh116a"], ["https://tec.openplanner.team/stops/Lseaite1", "https://tec.openplanner.team/stops/Lsehaut1"], ["https://tec.openplanner.team/stops/Cctjoue1", "https://tec.openplanner.team/stops/Cctjoue5"], ["https://tec.openplanner.team/stops/Lghecol*", "https://tec.openplanner.team/stops/Lghencl1"], ["https://tec.openplanner.team/stops/Lvtfrai1", "https://tec.openplanner.team/stops/Lvtlomb4"], ["https://tec.openplanner.team/stops/N542afb", "https://tec.openplanner.team/stops/N542asb"], ["https://tec.openplanner.team/stops/X639aia", "https://tec.openplanner.team/stops/X639aib"], ["https://tec.openplanner.team/stops/N547aia", "https://tec.openplanner.team/stops/N548awa"], ["https://tec.openplanner.team/stops/Lsebrun4", "https://tec.openplanner.team/stops/Lsepapi1"], ["https://tec.openplanner.team/stops/X982aab", "https://tec.openplanner.team/stops/X982bsb"], ["https://tec.openplanner.team/stops/N501ctb", "https://tec.openplanner.team/stops/N538aya"], ["https://tec.openplanner.team/stops/Btgregl1", "https://tec.openplanner.team/stops/N584aga"], ["https://tec.openplanner.team/stops/Cchdigu1", "https://tec.openplanner.team/stops/Cchdigu2"], ["https://tec.openplanner.team/stops/Baudvdu1", "https://tec.openplanner.team/stops/Baudvdu2"], ["https://tec.openplanner.team/stops/N506bea", "https://tec.openplanner.team/stops/N506beb"], ["https://tec.openplanner.team/stops/Cjupuis2", "https://tec.openplanner.team/stops/Cmapeet2"], ["https://tec.openplanner.team/stops/LORmont1", "https://tec.openplanner.team/stops/LORmont2"], ["https://tec.openplanner.team/stops/H4ce102b", "https://tec.openplanner.team/stops/H4ce105a"], ["https://tec.openplanner.team/stops/Cfaeclu1", "https://tec.openplanner.team/stops/Crs74em4"], ["https://tec.openplanner.team/stops/Bblapet1", "https://tec.openplanner.team/stops/Bblasta1"], ["https://tec.openplanner.team/stops/Bhengou2", "https://tec.openplanner.team/stops/Bhenmal1"], ["https://tec.openplanner.team/stops/LHHcite1", "https://tec.openplanner.team/stops/LHHcite2"], ["https://tec.openplanner.team/stops/LCLscie2", "https://tec.openplanner.team/stops/NL78afb"], ["https://tec.openplanner.team/stops/Lemcort2", "https://tec.openplanner.team/stops/Lemfort1"], ["https://tec.openplanner.team/stops/LMvrabo2", "https://tec.openplanner.team/stops/LSpcarr1"], ["https://tec.openplanner.team/stops/X637apa", "https://tec.openplanner.team/stops/X638aea"], ["https://tec.openplanner.team/stops/LFmlens2", "https://tec.openplanner.team/stops/LMOc50-1"], ["https://tec.openplanner.team/stops/Lvcchev2", "https://tec.openplanner.team/stops/Lvcdumo2"], ["https://tec.openplanner.team/stops/N540aaa", "https://tec.openplanner.team/stops/N540afb"], ["https://tec.openplanner.team/stops/LPLmonu1", "https://tec.openplanner.team/stops/LPLphar1"], ["https://tec.openplanner.team/stops/N215aaa", "https://tec.openplanner.team/stops/N215abb"], ["https://tec.openplanner.team/stops/Lvejeha2", "https://tec.openplanner.team/stops/Lvepris1"], ["https://tec.openplanner.team/stops/LBaeg--1", "https://tec.openplanner.team/stops/LBajean2"], ["https://tec.openplanner.team/stops/Llgborn2", "https://tec.openplanner.team/stops/Llgmaus1"], ["https://tec.openplanner.team/stops/H1ci102a", "https://tec.openplanner.team/stops/H1mv243b"], ["https://tec.openplanner.team/stops/LeUfuss1", "https://tec.openplanner.team/stops/LeUhaag2"], ["https://tec.openplanner.team/stops/N214aab", "https://tec.openplanner.team/stops/N214aba"], ["https://tec.openplanner.team/stops/X910aja", "https://tec.openplanner.team/stops/X911arb"], ["https://tec.openplanner.team/stops/Crclorc1", "https://tec.openplanner.team/stops/Crcrwas2"], ["https://tec.openplanner.team/stops/Ccusole1", "https://tec.openplanner.team/stops/Ccusole2"], ["https://tec.openplanner.team/stops/Cmychau2", "https://tec.openplanner.team/stops/Cmyfoym1"], ["https://tec.openplanner.team/stops/LMgbern2", "https://tec.openplanner.team/stops/LMgberw1"], ["https://tec.openplanner.team/stops/LMechpl1", "https://tec.openplanner.team/stops/LMemora1"], ["https://tec.openplanner.team/stops/H1gg116a", "https://tec.openplanner.team/stops/H1gi123b"], ["https://tec.openplanner.team/stops/X624afa", "https://tec.openplanner.team/stops/X624agb"], ["https://tec.openplanner.team/stops/X715akb", "https://tec.openplanner.team/stops/X781aeb"], ["https://tec.openplanner.team/stops/H4ld129a", "https://tec.openplanner.team/stops/H4ld130a"], ["https://tec.openplanner.team/stops/X654afa", "https://tec.openplanner.team/stops/X654afb"], ["https://tec.openplanner.team/stops/Bwanthi1", "https://tec.openplanner.team/stops/Bwanthi2"], ["https://tec.openplanner.team/stops/H1ge116b", "https://tec.openplanner.team/stops/H1ge151b"], ["https://tec.openplanner.team/stops/Bjauvch2", "https://tec.openplanner.team/stops/Bmrl4ch2"], ["https://tec.openplanner.team/stops/Llghaut2", "https://tec.openplanner.team/stops/Llgseel1"], ["https://tec.openplanner.team/stops/Cgon51", "https://tec.openplanner.team/stops/Cgoson11"], ["https://tec.openplanner.team/stops/H1bi103a", "https://tec.openplanner.team/stops/H1mg108a"], ["https://tec.openplanner.team/stops/LaR1G--2", "https://tec.openplanner.team/stops/LrUoudl2"], ["https://tec.openplanner.team/stops/Cptdubo2", "https://tec.openplanner.team/stops/Cptplac3"], ["https://tec.openplanner.team/stops/N508afb", "https://tec.openplanner.team/stops/N508ajc"], ["https://tec.openplanner.team/stops/N165aaa", "https://tec.openplanner.team/stops/N165aca"], ["https://tec.openplanner.team/stops/N232abb", "https://tec.openplanner.team/stops/N261acb"], ["https://tec.openplanner.team/stops/N150afa", "https://tec.openplanner.team/stops/N158aaa"], ["https://tec.openplanner.team/stops/X759aba", "https://tec.openplanner.team/stops/X759abb"], ["https://tec.openplanner.team/stops/N154aca", "https://tec.openplanner.team/stops/N154ada"], ["https://tec.openplanner.team/stops/N549aga", "https://tec.openplanner.team/stops/N549aha"], ["https://tec.openplanner.team/stops/Brixape1", "https://tec.openplanner.team/stops/Brixape2"], ["https://tec.openplanner.team/stops/LmAaldr1", "https://tec.openplanner.team/stops/X792abb"], ["https://tec.openplanner.team/stops/H1ch107a", "https://tec.openplanner.team/stops/H4ld123b"], ["https://tec.openplanner.team/stops/LSygerm2", "https://tec.openplanner.team/stops/LWZdtec2"], ["https://tec.openplanner.team/stops/X829adb", "https://tec.openplanner.team/stops/X830aab"], ["https://tec.openplanner.team/stops/Bgnvval1", "https://tec.openplanner.team/stops/Bgnvval2"], ["https://tec.openplanner.team/stops/X757afb", "https://tec.openplanner.team/stops/X757aia"], ["https://tec.openplanner.team/stops/Cgpmoul1", "https://tec.openplanner.team/stops/Cpcha432"], ["https://tec.openplanner.team/stops/LFmecli3", "https://tec.openplanner.team/stops/LMOchen1"], ["https://tec.openplanner.team/stops/H2tr251b", "https://tec.openplanner.team/stops/H2tr256b"], ["https://tec.openplanner.team/stops/X608aoa", "https://tec.openplanner.team/stops/X608apa"], ["https://tec.openplanner.team/stops/LEN101-1", "https://tec.openplanner.team/stops/LENtour2"], ["https://tec.openplanner.team/stops/H5qu143a", "https://tec.openplanner.team/stops/H5qu152a"], ["https://tec.openplanner.team/stops/LFMkrut2", "https://tec.openplanner.team/stops/LFMkrut3"], ["https://tec.openplanner.team/stops/Baegd742", "https://tec.openplanner.team/stops/Bramgar1"], ["https://tec.openplanner.team/stops/Lghberl2", "https://tec.openplanner.team/stops/Ljecocc1"], ["https://tec.openplanner.team/stops/Ccumasu2", "https://tec.openplanner.team/stops/Ccupdes1"], ["https://tec.openplanner.team/stops/N516aha", "https://tec.openplanner.team/stops/N516apa"], ["https://tec.openplanner.team/stops/H4ch119a", "https://tec.openplanner.team/stops/H4ty326b"], ["https://tec.openplanner.team/stops/LPLbiol1", "https://tec.openplanner.team/stops/LRRtrix1"], ["https://tec.openplanner.team/stops/Llmbell1", "https://tec.openplanner.team/stops/Lprcite2"], ["https://tec.openplanner.team/stops/X733aaa", "https://tec.openplanner.team/stops/X733aab"], ["https://tec.openplanner.team/stops/X617aeb", "https://tec.openplanner.team/stops/X695ada"], ["https://tec.openplanner.team/stops/LFPkape4", "https://tec.openplanner.team/stops/LFPkerk1"], ["https://tec.openplanner.team/stops/N506aga", "https://tec.openplanner.team/stops/N556afa"], ["https://tec.openplanner.team/stops/X796aca", "https://tec.openplanner.team/stops/X796ada"], ["https://tec.openplanner.team/stops/Btlbcul2", "https://tec.openplanner.team/stops/Btlbmel2"], ["https://tec.openplanner.team/stops/N120aba", "https://tec.openplanner.team/stops/N120abc"], ["https://tec.openplanner.team/stops/X630aab", "https://tec.openplanner.team/stops/X630abb"], ["https://tec.openplanner.team/stops/Ctaphaz1", "https://tec.openplanner.team/stops/N543cca"], ["https://tec.openplanner.team/stops/Ladfran3", "https://tec.openplanner.team/stops/Ldimont1"], ["https://tec.openplanner.team/stops/X925afb", "https://tec.openplanner.team/stops/X925ama"], ["https://tec.openplanner.team/stops/LVLhalb1", "https://tec.openplanner.team/stops/LVLhalb3"], ["https://tec.openplanner.team/stops/LPRmc--2", "https://tec.openplanner.team/stops/LPRmc--4"], ["https://tec.openplanner.team/stops/NL72aba", "https://tec.openplanner.team/stops/NL72aeb"], ["https://tec.openplanner.team/stops/X619aga", "https://tec.openplanner.team/stops/X619agb"], ["https://tec.openplanner.team/stops/H1mr122a", "https://tec.openplanner.team/stops/H1wi151a"], ["https://tec.openplanner.team/stops/LWAalou1", "https://tec.openplanner.team/stops/LWAchpg1"], ["https://tec.openplanner.team/stops/LBdmarr1", "https://tec.openplanner.team/stops/LBdmarr2"], ["https://tec.openplanner.team/stops/Crehout2", "https://tec.openplanner.team/stops/Creshau2"], ["https://tec.openplanner.team/stops/N229akb", "https://tec.openplanner.team/stops/N229apb"], ["https://tec.openplanner.team/stops/X767aia", "https://tec.openplanner.team/stops/X767aib"], ["https://tec.openplanner.team/stops/Cgxmorg1", "https://tec.openplanner.team/stops/Cgxmorg2"], ["https://tec.openplanner.team/stops/H2hp119a", "https://tec.openplanner.team/stops/H2ll260a"], ["https://tec.openplanner.team/stops/H2mo127c", "https://tec.openplanner.team/stops/H2mo127d"], ["https://tec.openplanner.team/stops/H4bc104a", "https://tec.openplanner.team/stops/H5bl123a"], ["https://tec.openplanner.team/stops/N539bda", "https://tec.openplanner.team/stops/N539beb"], ["https://tec.openplanner.team/stops/N501aaa", "https://tec.openplanner.team/stops/N501hba"], ["https://tec.openplanner.team/stops/Lghencl1", "https://tec.openplanner.team/stops/Lghomni2"], ["https://tec.openplanner.team/stops/H4ne135a", "https://tec.openplanner.team/stops/H4ne135b"], ["https://tec.openplanner.team/stops/LbTschw1", "https://tec.openplanner.team/stops/LbUwhon1"], ["https://tec.openplanner.team/stops/Lflec--2", "https://tec.openplanner.team/stops/Lflweri2"], ["https://tec.openplanner.team/stops/LSNness1", "https://tec.openplanner.team/stops/LXHfond1"], ["https://tec.openplanner.team/stops/H4ce107a", "https://tec.openplanner.team/stops/H4mx115b"], ["https://tec.openplanner.team/stops/H4au144a", "https://tec.openplanner.team/stops/H4og216a"], ["https://tec.openplanner.team/stops/LhRwere1", "https://tec.openplanner.team/stops/LmCkirc1"], ["https://tec.openplanner.team/stops/X949ahb", "https://tec.openplanner.team/stops/X949aja"], ["https://tec.openplanner.team/stops/N219ada", "https://tec.openplanner.team/stops/N219adb"], ["https://tec.openplanner.team/stops/H4og208a", "https://tec.openplanner.team/stops/H4og208b"], ["https://tec.openplanner.team/stops/LWAlieg1", "https://tec.openplanner.team/stops/LWAor--1"], ["https://tec.openplanner.team/stops/N118aba", "https://tec.openplanner.team/stops/N155acb"], ["https://tec.openplanner.team/stops/LhSbruc2", "https://tec.openplanner.team/stops/LhSkape2"], ["https://tec.openplanner.team/stops/Cciferr1", "https://tec.openplanner.team/stops/Cciferr2"], ["https://tec.openplanner.team/stops/H1lm106a", "https://tec.openplanner.team/stops/H1to155b"], ["https://tec.openplanner.team/stops/LVleg--1", "https://tec.openplanner.team/stops/LVlleme1"], ["https://tec.openplanner.team/stops/Cfrempe2", "https://tec.openplanner.team/stops/Cfrfaub2"], ["https://tec.openplanner.team/stops/X512aia", "https://tec.openplanner.team/stops/X595aib"], ["https://tec.openplanner.team/stops/LLxconj1", "https://tec.openplanner.team/stops/LLxconj2"], ["https://tec.openplanner.team/stops/N501aba", "https://tec.openplanner.team/stops/N502ada"], ["https://tec.openplanner.team/stops/X659apb", "https://tec.openplanner.team/stops/X741aid"], ["https://tec.openplanner.team/stops/Bneelaa1", "https://tec.openplanner.team/stops/Bracgar2"], ["https://tec.openplanner.team/stops/X824aac", "https://tec.openplanner.team/stops/X824acb"], ["https://tec.openplanner.team/stops/LSNbouh3", "https://tec.openplanner.team/stops/LSNfays2"], ["https://tec.openplanner.team/stops/H1gy112a", "https://tec.openplanner.team/stops/H1gy113b"], ["https://tec.openplanner.team/stops/N509awb", "https://tec.openplanner.team/stops/N511aua"], ["https://tec.openplanner.team/stops/Bohngen1", "https://tec.openplanner.team/stops/Bohnman1"], ["https://tec.openplanner.team/stops/N584avb", "https://tec.openplanner.team/stops/N584awb"], ["https://tec.openplanner.team/stops/Chpchea1", "https://tec.openplanner.team/stops/Cwgmart2"], ["https://tec.openplanner.team/stops/LMOm48-1", "https://tec.openplanner.team/stops/LMOs45-2"], ["https://tec.openplanner.team/stops/Cnapair2", "https://tec.openplanner.team/stops/N160afb"], ["https://tec.openplanner.team/stops/X397aba", "https://tec.openplanner.team/stops/X901ala"], ["https://tec.openplanner.team/stops/N127afa", "https://tec.openplanner.team/stops/N134agb"], ["https://tec.openplanner.team/stops/N132abb", "https://tec.openplanner.team/stops/N152aac"], ["https://tec.openplanner.team/stops/H5at116a", "https://tec.openplanner.team/stops/H5at120a"], ["https://tec.openplanner.team/stops/N308aea", "https://tec.openplanner.team/stops/N308ajb"], ["https://tec.openplanner.team/stops/LVvbouv1", "https://tec.openplanner.team/stops/X796aab"], ["https://tec.openplanner.team/stops/Lhrpont1", "https://tec.openplanner.team/stops/Lhrwigi1"], ["https://tec.openplanner.team/stops/X823afd", "https://tec.openplanner.team/stops/X824aba"], ["https://tec.openplanner.team/stops/Brsga811", "https://tec.openplanner.team/stops/Brsga812"], ["https://tec.openplanner.team/stops/N576ahb", "https://tec.openplanner.team/stops/N576aib"], ["https://tec.openplanner.team/stops/LHAbont2", "https://tec.openplanner.team/stops/LHAmonu2"], ["https://tec.openplanner.team/stops/H1ba102a", "https://tec.openplanner.team/stops/H1ba114c"], ["https://tec.openplanner.team/stops/LFProt-1", "https://tec.openplanner.team/stops/LFProt-2"], ["https://tec.openplanner.team/stops/H2fy122a", "https://tec.openplanner.team/stops/H2lh124b"], ["https://tec.openplanner.team/stops/LtHfrie1", "https://tec.openplanner.team/stops/LtHkreu4"], ["https://tec.openplanner.team/stops/Cplrymo1", "https://tec.openplanner.team/stops/Cplrymo2"], ["https://tec.openplanner.team/stops/Llgborg1", "https://tec.openplanner.team/stops/Llghori2"], ["https://tec.openplanner.team/stops/Ladhomb1", "https://tec.openplanner.team/stops/Lvedepa*"], ["https://tec.openplanner.team/stops/Cmyfoym1", "https://tec.openplanner.team/stops/Cmywarc2"], ["https://tec.openplanner.team/stops/N121aab", "https://tec.openplanner.team/stops/N158aab"], ["https://tec.openplanner.team/stops/X802ahb", "https://tec.openplanner.team/stops/X802aya"], ["https://tec.openplanner.team/stops/LEBeg--1", "https://tec.openplanner.team/stops/LEBmoul2"], ["https://tec.openplanner.team/stops/X316aaa", "https://tec.openplanner.team/stops/X316aab"], ["https://tec.openplanner.team/stops/LLYpeup1", "https://tec.openplanner.team/stops/LLYpeup2"], ["https://tec.openplanner.team/stops/LRRemul1", "https://tec.openplanner.team/stops/LRRlimi1"], ["https://tec.openplanner.team/stops/LGLgare*", "https://tec.openplanner.team/stops/LPAeg--2"], ["https://tec.openplanner.team/stops/LVLchem1", "https://tec.openplanner.team/stops/LVLchem2"], ["https://tec.openplanner.team/stops/X901amb", "https://tec.openplanner.team/stops/X999aqa"], ["https://tec.openplanner.team/stops/LFCvoer2", "https://tec.openplanner.team/stops/LFCvoge4"], ["https://tec.openplanner.team/stops/LFArela2", "https://tec.openplanner.team/stops/LWDchab2"], ["https://tec.openplanner.team/stops/X801ava", "https://tec.openplanner.team/stops/X801awa"], ["https://tec.openplanner.team/stops/Cgogb1", "https://tec.openplanner.team/stops/Cgon51"], ["https://tec.openplanner.team/stops/Bitrnus2", "https://tec.openplanner.team/stops/Bosqpco1"], ["https://tec.openplanner.team/stops/H4lh118b", "https://tec.openplanner.team/stops/H4oe147a"], ["https://tec.openplanner.team/stops/X793aia", "https://tec.openplanner.team/stops/X793aja"], ["https://tec.openplanner.team/stops/N585aba", "https://tec.openplanner.team/stops/N585aib"], ["https://tec.openplanner.team/stops/Llgbago2", "https://tec.openplanner.team/stops/Llgjenn3"], ["https://tec.openplanner.team/stops/NH01arb", "https://tec.openplanner.team/stops/NH01aub"], ["https://tec.openplanner.team/stops/Llgborn2", "https://tec.openplanner.team/stops/Ltibell1"], ["https://tec.openplanner.team/stops/N501fwa", "https://tec.openplanner.team/stops/N501fwy"], ["https://tec.openplanner.team/stops/Ccumasu1", "https://tec.openplanner.team/stops/Ccupdes4"], ["https://tec.openplanner.team/stops/Bwatmsj1", "https://tec.openplanner.team/stops/Bwatwsc1"], ["https://tec.openplanner.team/stops/X723aeb", "https://tec.openplanner.team/stops/X763ahb"], ["https://tec.openplanner.team/stops/Ctucamb1", "https://tec.openplanner.team/stops/NC28aea"], ["https://tec.openplanner.team/stops/N520aea", "https://tec.openplanner.team/stops/N523aca"], ["https://tec.openplanner.team/stops/X824alb", "https://tec.openplanner.team/stops/X829aeb"], ["https://tec.openplanner.team/stops/X746akb", "https://tec.openplanner.team/stops/X746ala"], ["https://tec.openplanner.team/stops/LLEfagn2", "https://tec.openplanner.team/stops/LLEgare1"], ["https://tec.openplanner.team/stops/H2ch108a", "https://tec.openplanner.team/stops/H2ch108b"], ["https://tec.openplanner.team/stops/X224afa", "https://tec.openplanner.team/stops/X398aca"], ["https://tec.openplanner.team/stops/N894aaa", "https://tec.openplanner.team/stops/N894aca"], ["https://tec.openplanner.team/stops/Bhenard3", "https://tec.openplanner.team/stops/Bhengri2"], ["https://tec.openplanner.team/stops/Cfccuch1", "https://tec.openplanner.team/stops/Cfccuch2"], ["https://tec.openplanner.team/stops/H3go100b", "https://tec.openplanner.team/stops/H3go105a"], ["https://tec.openplanner.team/stops/N501hxz", "https://tec.openplanner.team/stops/N501lzb"], ["https://tec.openplanner.team/stops/X910acb", "https://tec.openplanner.team/stops/X910aea"], ["https://tec.openplanner.team/stops/Bgdhcsh2", "https://tec.openplanner.team/stops/Bgdhmet1"], ["https://tec.openplanner.team/stops/Lprmc--3", "https://tec.openplanner.team/stops/Lprmoin1"], ["https://tec.openplanner.team/stops/H5pe126b", "https://tec.openplanner.team/stops/H5pe145b"], ["https://tec.openplanner.team/stops/Cjxetri1", "https://tec.openplanner.team/stops/Cjxthom2"], ["https://tec.openplanner.team/stops/H1cd113a", "https://tec.openplanner.team/stops/H1cd113b"], ["https://tec.openplanner.team/stops/X619aab", "https://tec.openplanner.team/stops/X619abb"], ["https://tec.openplanner.team/stops/X614bca", "https://tec.openplanner.team/stops/X614bcb"], ["https://tec.openplanner.team/stops/Lbeloui2", "https://tec.openplanner.team/stops/Lbemc--1"], ["https://tec.openplanner.team/stops/Lmopeup1", "https://tec.openplanner.team/stops/Lmopota2"], ["https://tec.openplanner.team/stops/X804aya", "https://tec.openplanner.team/stops/X804bab"], ["https://tec.openplanner.team/stops/H1ev112b", "https://tec.openplanner.team/stops/H1ev114b"], ["https://tec.openplanner.team/stops/LaUkirc*", "https://tec.openplanner.team/stops/LsTgren1"], ["https://tec.openplanner.team/stops/Cbmplac2", "https://tec.openplanner.team/stops/Cbmzoni1"], ["https://tec.openplanner.team/stops/H1qy131b", "https://tec.openplanner.team/stops/H1qy133b"], ["https://tec.openplanner.team/stops/N509aab", "https://tec.openplanner.team/stops/N509aga"], ["https://tec.openplanner.team/stops/LXhvanh2", "https://tec.openplanner.team/stops/LXhvina2"], ["https://tec.openplanner.team/stops/LFEhoup1", "https://tec.openplanner.team/stops/LFEn6--1"], ["https://tec.openplanner.team/stops/LBJchau*", "https://tec.openplanner.team/stops/LBJplan1"], ["https://tec.openplanner.team/stops/Llgrosa1", "https://tec.openplanner.team/stops/Llgrosa2"], ["https://tec.openplanner.team/stops/H1by100c", "https://tec.openplanner.team/stops/H1by104b"], ["https://tec.openplanner.team/stops/N118aqa", "https://tec.openplanner.team/stops/N118aua"], ["https://tec.openplanner.team/stops/N232ayb", "https://tec.openplanner.team/stops/N232bjb"], ["https://tec.openplanner.team/stops/LAnvien2", "https://tec.openplanner.team/stops/LVnroch2"], ["https://tec.openplanner.team/stops/X651aab", "https://tec.openplanner.team/stops/X652aba"], ["https://tec.openplanner.team/stops/LrUgeme1", "https://tec.openplanner.team/stops/LrUgeme2"], ["https://tec.openplanner.team/stops/X738acb", "https://tec.openplanner.team/stops/X754ava"], ["https://tec.openplanner.team/stops/N143aab", "https://tec.openplanner.team/stops/N143aca"], ["https://tec.openplanner.team/stops/N543bmb", "https://tec.openplanner.team/stops/N543cna"], ["https://tec.openplanner.team/stops/H1ms269b", "https://tec.openplanner.team/stops/H1ms275a"], ["https://tec.openplanner.team/stops/LAYnias2", "https://tec.openplanner.team/stops/LAYwerb2"], ["https://tec.openplanner.team/stops/H1bi104b", "https://tec.openplanner.team/stops/H1ls130a"], ["https://tec.openplanner.team/stops/LBichen1", "https://tec.openplanner.team/stops/LBivill1"], ["https://tec.openplanner.team/stops/LCsange2", "https://tec.openplanner.team/stops/LCsjone1"], ["https://tec.openplanner.team/stops/N353aab", "https://tec.openplanner.team/stops/N353ada"], ["https://tec.openplanner.team/stops/X907afa", "https://tec.openplanner.team/stops/X907agb"], ["https://tec.openplanner.team/stops/X601aqa", "https://tec.openplanner.team/stops/X601bta"], ["https://tec.openplanner.team/stops/H4ta125b", "https://tec.openplanner.team/stops/H4ta128a"], ["https://tec.openplanner.team/stops/X805aja", "https://tec.openplanner.team/stops/X805ajb"], ["https://tec.openplanner.team/stops/X761aca", "https://tec.openplanner.team/stops/X761adb"], ["https://tec.openplanner.team/stops/Cbwmvri1", "https://tec.openplanner.team/stops/Cmqn5912"], ["https://tec.openplanner.team/stops/Lvtchpl1", "https://tec.openplanner.team/stops/Lvtchpl2"], ["https://tec.openplanner.team/stops/X818ata", "https://tec.openplanner.team/stops/X827aaa"], ["https://tec.openplanner.team/stops/H1fa118a", "https://tec.openplanner.team/stops/H1fa121b"], ["https://tec.openplanner.team/stops/LmHperl2", "https://tec.openplanner.team/stops/LmHschm2"], ["https://tec.openplanner.team/stops/H4mo137a", "https://tec.openplanner.team/stops/H4mo187a"], ["https://tec.openplanner.team/stops/X720abb", "https://tec.openplanner.team/stops/X720adb"], ["https://tec.openplanner.team/stops/H1ht121b", "https://tec.openplanner.team/stops/H1ht136b"], ["https://tec.openplanner.team/stops/N501msb", "https://tec.openplanner.team/stops/N501mta"], ["https://tec.openplanner.team/stops/X767ada", "https://tec.openplanner.team/stops/X767afa"], ["https://tec.openplanner.team/stops/H1do109b", "https://tec.openplanner.team/stops/H1do111a"], ["https://tec.openplanner.team/stops/X398afa", "https://tec.openplanner.team/stops/X998aza"], ["https://tec.openplanner.team/stops/N501lna", "https://tec.openplanner.team/stops/N501lnb"], ["https://tec.openplanner.team/stops/X833aab", "https://tec.openplanner.team/stops/X834aba"], ["https://tec.openplanner.team/stops/LORgr8-2", "https://tec.openplanner.team/stops/LORpave1"], ["https://tec.openplanner.team/stops/H4ga157a", "https://tec.openplanner.team/stops/H4ga164a"], ["https://tec.openplanner.team/stops/LREhenu2", "https://tec.openplanner.team/stops/LREraph3"], ["https://tec.openplanner.team/stops/N211aga", "https://tec.openplanner.team/stops/N211awa"], ["https://tec.openplanner.team/stops/N537aka", "https://tec.openplanner.team/stops/N537akb"], ["https://tec.openplanner.team/stops/H1pw123a", "https://tec.openplanner.team/stops/H1pw123b"], ["https://tec.openplanner.team/stops/H4fr393a", "https://tec.openplanner.team/stops/H4ka393b"], ["https://tec.openplanner.team/stops/N519ajb", "https://tec.openplanner.team/stops/N519aka"], ["https://tec.openplanner.team/stops/X948ana", "https://tec.openplanner.team/stops/X948anb"], ["https://tec.openplanner.team/stops/Cfrmoul1", "https://tec.openplanner.team/stops/Cfrsour2"], ["https://tec.openplanner.team/stops/N507aeb", "https://tec.openplanner.team/stops/N507aia"], ["https://tec.openplanner.team/stops/Csurela1", "https://tec.openplanner.team/stops/Csygare1"], ["https://tec.openplanner.team/stops/N579abb", "https://tec.openplanner.team/stops/N579acb"], ["https://tec.openplanner.team/stops/X601bbc", "https://tec.openplanner.team/stops/X601bqa"], ["https://tec.openplanner.team/stops/H3so185b", "https://tec.openplanner.team/stops/H3so187a"], ["https://tec.openplanner.team/stops/X784aab", "https://tec.openplanner.team/stops/X784aba"], ["https://tec.openplanner.team/stops/LFrec--1", "https://tec.openplanner.team/stops/LNEpass1"], ["https://tec.openplanner.team/stops/LRErive1", "https://tec.openplanner.team/stops/LRErive2"], ["https://tec.openplanner.team/stops/Cmmp2051", "https://tec.openplanner.team/stops/Cmmp2052"], ["https://tec.openplanner.team/stops/Clojone1", "https://tec.openplanner.team/stops/Clojone2"], ["https://tec.openplanner.team/stops/H1le122d", "https://tec.openplanner.team/stops/H1le127b"], ["https://tec.openplanner.team/stops/N501grg", "https://tec.openplanner.team/stops/N501hdb"], ["https://tec.openplanner.team/stops/X609aia", "https://tec.openplanner.team/stops/X609aja"], ["https://tec.openplanner.team/stops/LOreg--2", "https://tec.openplanner.team/stops/LTyhall1"], ["https://tec.openplanner.team/stops/Bcbqegl1", "https://tec.openplanner.team/stops/Bcbqegl2"], ["https://tec.openplanner.team/stops/N310abb", "https://tec.openplanner.team/stops/N312aab"], ["https://tec.openplanner.team/stops/H1th182a", "https://tec.openplanner.team/stops/H3so169b"], ["https://tec.openplanner.team/stops/H1ge117a", "https://tec.openplanner.team/stops/H1ge117b"], ["https://tec.openplanner.team/stops/Ljuetie1", "https://tec.openplanner.team/stops/Ljuetie2"], ["https://tec.openplanner.team/stops/X602aba", "https://tec.openplanner.team/stops/X604aja"], ["https://tec.openplanner.team/stops/Blhueca2", "https://tec.openplanner.team/stops/Blhutco3"], ["https://tec.openplanner.team/stops/H3so177a", "https://tec.openplanner.team/stops/H3so177b"], ["https://tec.openplanner.team/stops/Bcsebea1", "https://tec.openplanner.team/stops/Bcsebea2"], ["https://tec.openplanner.team/stops/H2le146b", "https://tec.openplanner.team/stops/H2le148a"], ["https://tec.openplanner.team/stops/N501hnb", "https://tec.openplanner.team/stops/N501hpa"], ["https://tec.openplanner.team/stops/Llgoeil1", "https://tec.openplanner.team/stops/Llgoeil2"], ["https://tec.openplanner.team/stops/Bblamsp2", "https://tec.openplanner.team/stops/Bblamsp4"], ["https://tec.openplanner.team/stops/Louegla2", "https://tec.openplanner.team/stops/Louencl2"], ["https://tec.openplanner.team/stops/Bpelegl3", "https://tec.openplanner.team/stops/Bracrpe2"], ["https://tec.openplanner.team/stops/LaM266-1", "https://tec.openplanner.team/stops/LmYeich1"], ["https://tec.openplanner.team/stops/X996acb", "https://tec.openplanner.team/stops/X996ada"], ["https://tec.openplanner.team/stops/N232cda", "https://tec.openplanner.team/stops/N251aaa"], ["https://tec.openplanner.team/stops/Cbcegli1", "https://tec.openplanner.team/stops/Cbcegli3"], ["https://tec.openplanner.team/stops/LSpogne1", "https://tec.openplanner.team/stops/LSpogne2"], ["https://tec.openplanner.team/stops/LMici092", "https://tec.openplanner.team/stops/LMipoti1"], ["https://tec.openplanner.team/stops/Ljhheus1", "https://tec.openplanner.team/stops/Ljhheus2"], ["https://tec.openplanner.team/stops/Llgnati2", "https://tec.openplanner.team/stops/Llgpari2"], ["https://tec.openplanner.team/stops/X659aab", "https://tec.openplanner.team/stops/X659aya"], ["https://tec.openplanner.team/stops/LSlbail2", "https://tec.openplanner.team/stops/X919aia"], ["https://tec.openplanner.team/stops/H1hg181b", "https://tec.openplanner.team/stops/H1hm173a"], ["https://tec.openplanner.team/stops/Bgerd321", "https://tec.openplanner.team/stops/Bgermco1"], ["https://tec.openplanner.team/stops/LAVeg--2", "https://tec.openplanner.team/stops/LVHweri2"], ["https://tec.openplanner.team/stops/H1pd146a", "https://tec.openplanner.team/stops/H1wa154b"], ["https://tec.openplanner.team/stops/Cfovent1", "https://tec.openplanner.team/stops/Cfovent2"], ["https://tec.openplanner.team/stops/N203aab", "https://tec.openplanner.team/stops/N559aab"], ["https://tec.openplanner.team/stops/Lagtilf2", "https://tec.openplanner.team/stops/Lcejobe1"], ["https://tec.openplanner.team/stops/H1ho125b", "https://tec.openplanner.team/stops/H1wa164b"], ["https://tec.openplanner.team/stops/H1ms301a", "https://tec.openplanner.team/stops/H1ms303a"], ["https://tec.openplanner.team/stops/Lbogonh*", "https://tec.openplanner.team/stops/Lbogonh3"], ["https://tec.openplanner.team/stops/Bmanati1", "https://tec.openplanner.team/stops/Bmangen1"], ["https://tec.openplanner.team/stops/N214aha", "https://tec.openplanner.team/stops/N236aha"], ["https://tec.openplanner.team/stops/N211aya", "https://tec.openplanner.team/stops/N211bca"], ["https://tec.openplanner.team/stops/Lglsana2", "https://tec.openplanner.team/stops/Llgrame2"], ["https://tec.openplanner.team/stops/N509asa", "https://tec.openplanner.team/stops/N509asb"], ["https://tec.openplanner.team/stops/H2le148b", "https://tec.openplanner.team/stops/H2le149a"], ["https://tec.openplanner.team/stops/H4de112a", "https://tec.openplanner.team/stops/H4ss155a"], ["https://tec.openplanner.team/stops/X739ahb", "https://tec.openplanner.team/stops/X911abb"], ["https://tec.openplanner.team/stops/Ladwooz2", "https://tec.openplanner.team/stops/Ladxhen2"], ["https://tec.openplanner.team/stops/N551adb", "https://tec.openplanner.team/stops/N551aeb"], ["https://tec.openplanner.team/stops/N106alb", "https://tec.openplanner.team/stops/N106apa"], ["https://tec.openplanner.team/stops/Canjon1", "https://tec.openplanner.team/stops/Canjonc1"], ["https://tec.openplanner.team/stops/X670adb", "https://tec.openplanner.team/stops/X670ahb"], ["https://tec.openplanner.team/stops/H5gr137a", "https://tec.openplanner.team/stops/H5st168b"], ["https://tec.openplanner.team/stops/Llgauxc1", "https://tec.openplanner.team/stops/Llglill1"], ["https://tec.openplanner.team/stops/H4re225b", "https://tec.openplanner.team/stops/H5at235a"], ["https://tec.openplanner.team/stops/X994aja", "https://tec.openplanner.team/stops/X994aka"], ["https://tec.openplanner.team/stops/LJAcent1", "https://tec.openplanner.team/stops/LJAhanq1"], ["https://tec.openplanner.team/stops/Bhengou1", "https://tec.openplanner.team/stops/Bhengou2"], ["https://tec.openplanner.team/stops/Cclchap2", "https://tec.openplanner.team/stops/Cclmoul2"], ["https://tec.openplanner.team/stops/N212aba", "https://tec.openplanner.team/stops/N212aib"], ["https://tec.openplanner.team/stops/Lccaigr1", "https://tec.openplanner.team/stops/Lccaigr2"], ["https://tec.openplanner.team/stops/LCOcrom1", "https://tec.openplanner.team/stops/LSNchen1"], ["https://tec.openplanner.team/stops/H4fr143b", "https://tec.openplanner.team/stops/H4te254a"], ["https://tec.openplanner.team/stops/H1al105a", "https://tec.openplanner.team/stops/H1al146b"], ["https://tec.openplanner.team/stops/N235ada", "https://tec.openplanner.team/stops/N235adb"], ["https://tec.openplanner.team/stops/X716aab", "https://tec.openplanner.team/stops/X731aib"], ["https://tec.openplanner.team/stops/H1ge117b", "https://tec.openplanner.team/stops/H1ge179b"], ["https://tec.openplanner.team/stops/N574aca", "https://tec.openplanner.team/stops/N574aga"], ["https://tec.openplanner.team/stops/N134ajb", "https://tec.openplanner.team/stops/N135bga"], ["https://tec.openplanner.team/stops/N543bpc", "https://tec.openplanner.team/stops/N543cha"], ["https://tec.openplanner.team/stops/Llieg--1", "https://tec.openplanner.team/stops/Llithon2"], ["https://tec.openplanner.team/stops/Bgliron1", "https://tec.openplanner.team/stops/Btlbtho2"], ["https://tec.openplanner.team/stops/X637alb", "https://tec.openplanner.team/stops/X650aob"], ["https://tec.openplanner.team/stops/Crodebr2", "https://tec.openplanner.team/stops/Croplom4"], ["https://tec.openplanner.team/stops/Lseespe1", "https://tec.openplanner.team/stops/Lsemara2"], ["https://tec.openplanner.team/stops/Cmqcend2", "https://tec.openplanner.team/stops/Cmqchap1"], ["https://tec.openplanner.team/stops/H4rc232a", "https://tec.openplanner.team/stops/H4rc234b"], ["https://tec.openplanner.team/stops/LFLcher1", "https://tec.openplanner.team/stops/LFLetoi1"], ["https://tec.openplanner.team/stops/Lemcort2", "https://tec.openplanner.team/stops/LTIsain1"], ["https://tec.openplanner.team/stops/LHcaube1", "https://tec.openplanner.team/stops/LSxeg--2"], ["https://tec.openplanner.team/stops/X606aab", "https://tec.openplanner.team/stops/X607ahb"], ["https://tec.openplanner.team/stops/LhMmeil1", "https://tec.openplanner.team/stops/LhRwere1"], ["https://tec.openplanner.team/stops/X757adb", "https://tec.openplanner.team/stops/X757afa"], ["https://tec.openplanner.team/stops/LCPcomm1", "https://tec.openplanner.team/stops/LCPconf1"], ["https://tec.openplanner.team/stops/X983acb", "https://tec.openplanner.team/stops/X983aeb"], ["https://tec.openplanner.team/stops/LHUaron1", "https://tec.openplanner.team/stops/LHUlebe0"], ["https://tec.openplanner.team/stops/H4ty293b", "https://tec.openplanner.team/stops/H4ty324a"], ["https://tec.openplanner.team/stops/Lsemyrt1", "https://tec.openplanner.team/stops/Lsepcha3"], ["https://tec.openplanner.team/stops/LNCmada2", "https://tec.openplanner.team/stops/LNCtour1"], ["https://tec.openplanner.team/stops/Bbstegl1", "https://tec.openplanner.team/stops/Csdetan2"], ["https://tec.openplanner.team/stops/N111aaa", "https://tec.openplanner.team/stops/N127aja"], ["https://tec.openplanner.team/stops/LBWeg--1", "https://tec.openplanner.team/stops/LBWeg--2"], ["https://tec.openplanner.team/stops/H1go169a", "https://tec.openplanner.team/stops/H1qp150b"], ["https://tec.openplanner.team/stops/X911aca", "https://tec.openplanner.team/stops/X911adb"], ["https://tec.openplanner.team/stops/LRGchap1", "https://tec.openplanner.team/stops/LRGeg--1"], ["https://tec.openplanner.team/stops/X902aba", "https://tec.openplanner.team/stops/X902acb"], ["https://tec.openplanner.team/stops/H4bs113a", "https://tec.openplanner.team/stops/H4ws158a"], ["https://tec.openplanner.team/stops/LMaburg3", "https://tec.openplanner.team/stops/LMalamb4"], ["https://tec.openplanner.team/stops/Lghmavi1", "https://tec.openplanner.team/stops/Lghmavi2"], ["https://tec.openplanner.team/stops/Bnilhau2", "https://tec.openplanner.team/stops/Bnilspe1"], ["https://tec.openplanner.team/stops/N329aab", "https://tec.openplanner.team/stops/N365acb"], ["https://tec.openplanner.team/stops/Llgboux1", "https://tec.openplanner.team/stops/Lvtbocl1"], ["https://tec.openplanner.team/stops/N501fxa", "https://tec.openplanner.team/stops/N501lbd"], ["https://tec.openplanner.team/stops/LOMcabi1", "https://tec.openplanner.team/stops/LOMeg--2"], ["https://tec.openplanner.team/stops/LBTcarr4", "https://tec.openplanner.team/stops/LHEchex2"], ["https://tec.openplanner.team/stops/N516ama", "https://tec.openplanner.team/stops/N516amb"], ["https://tec.openplanner.team/stops/LaAbush*", "https://tec.openplanner.team/stops/LaAnorm1"], ["https://tec.openplanner.team/stops/Bbsicen1", "https://tec.openplanner.team/stops/Bbsimpl2"], ["https://tec.openplanner.team/stops/Lrcstad1", "https://tec.openplanner.team/stops/Lrcvill4"], ["https://tec.openplanner.team/stops/Barqbar2", "https://tec.openplanner.team/stops/Bnivmon2"], ["https://tec.openplanner.team/stops/LaMwies2", "https://tec.openplanner.team/stops/LmDkoel1"], ["https://tec.openplanner.team/stops/H4oq226b", "https://tec.openplanner.team/stops/H4oq229b"], ["https://tec.openplanner.team/stops/N501hmb", "https://tec.openplanner.team/stops/N501iab"], ["https://tec.openplanner.team/stops/Chpplac1", "https://tec.openplanner.team/stops/Cmechnd1"], ["https://tec.openplanner.team/stops/Cvlstan1", "https://tec.openplanner.team/stops/NH21afb"], ["https://tec.openplanner.team/stops/Bgemibb1", "https://tec.openplanner.team/stops/Bgemkal2"], ["https://tec.openplanner.team/stops/H4ir163a", "https://tec.openplanner.team/stops/H5at135a"], ["https://tec.openplanner.team/stops/Csobrou1", "https://tec.openplanner.team/stops/Csobrou2"], ["https://tec.openplanner.team/stops/N580agb", "https://tec.openplanner.team/stops/N580aha"], ["https://tec.openplanner.team/stops/LSOdow%C3%A92", "https://tec.openplanner.team/stops/LSOgard1"], ["https://tec.openplanner.team/stops/X638aqa", "https://tec.openplanner.team/stops/X652aea"], ["https://tec.openplanner.team/stops/H4ms145a", "https://tec.openplanner.team/stops/H4th139a"], ["https://tec.openplanner.team/stops/LCelabi2", "https://tec.openplanner.team/stops/LVMfoli2"], ["https://tec.openplanner.team/stops/X766acb", "https://tec.openplanner.team/stops/X768ala"], ["https://tec.openplanner.team/stops/H4ty270a", "https://tec.openplanner.team/stops/H4ty290b"], ["https://tec.openplanner.team/stops/LSpbawe2", "https://tec.openplanner.team/stops/LSpcarr1"], ["https://tec.openplanner.team/stops/Lseaite2", "https://tec.openplanner.team/stops/Lselimi2"], ["https://tec.openplanner.team/stops/LSochal2", "https://tec.openplanner.team/stops/LSogite1"], ["https://tec.openplanner.team/stops/N236aia", "https://tec.openplanner.team/stops/N236ajb"], ["https://tec.openplanner.team/stops/N503ada", "https://tec.openplanner.team/stops/N503aia"], ["https://tec.openplanner.team/stops/Bbeasta1", "https://tec.openplanner.team/stops/Btlgmee2"], ["https://tec.openplanner.team/stops/Bmsgmon2", "https://tec.openplanner.team/stops/Bmsgpap1"], ["https://tec.openplanner.team/stops/X982bfa", "https://tec.openplanner.team/stops/X982blb"], ["https://tec.openplanner.team/stops/LReeg--1", "https://tec.openplanner.team/stops/LRemonu1"], ["https://tec.openplanner.team/stops/H4ep126b", "https://tec.openplanner.team/stops/H4rm109b"], ["https://tec.openplanner.team/stops/H4ar101a", "https://tec.openplanner.team/stops/H4ar173b"], ["https://tec.openplanner.team/stops/N232anb", "https://tec.openplanner.team/stops/N232aqb"], ["https://tec.openplanner.team/stops/Lancolr2", "https://tec.openplanner.team/stops/Lanegal1"], ["https://tec.openplanner.team/stops/N158aaa", "https://tec.openplanner.team/stops/N158aab"], ["https://tec.openplanner.team/stops/H1fl133d", "https://tec.openplanner.team/stops/H1fl133e"], ["https://tec.openplanner.team/stops/LHYwach1", "https://tec.openplanner.team/stops/LHYwach2"], ["https://tec.openplanner.team/stops/H1bo108b", "https://tec.openplanner.team/stops/H1bo110b"], ["https://tec.openplanner.team/stops/N509axb", "https://tec.openplanner.team/stops/N511atb"], ["https://tec.openplanner.team/stops/H4bn173a", "https://tec.openplanner.team/stops/H4bn173b"], ["https://tec.openplanner.team/stops/Cgofert1", "https://tec.openplanner.team/stops/Cgofert2"], ["https://tec.openplanner.team/stops/N521asb", "https://tec.openplanner.team/stops/N521asc"], ["https://tec.openplanner.team/stops/LAascie2", "https://tec.openplanner.team/stops/X261aab"], ["https://tec.openplanner.team/stops/N548agb", "https://tec.openplanner.team/stops/N548agc"], ["https://tec.openplanner.team/stops/N549aca", "https://tec.openplanner.team/stops/N578aab"], ["https://tec.openplanner.team/stops/H2ch121a", "https://tec.openplanner.team/stops/H2tz117a"], ["https://tec.openplanner.team/stops/N522bve", "https://tec.openplanner.team/stops/N522bvf"], ["https://tec.openplanner.team/stops/LMnlogi2", "https://tec.openplanner.team/stops/N222aea"], ["https://tec.openplanner.team/stops/Bgemfbo2", "https://tec.openplanner.team/stops/Bgemgjo2"], ["https://tec.openplanner.team/stops/X774aac", "https://tec.openplanner.team/stops/X774abb"], ["https://tec.openplanner.team/stops/N501fdb", "https://tec.openplanner.team/stops/N501mrb"], ["https://tec.openplanner.team/stops/X370acb", "https://tec.openplanner.team/stops/X370ada"], ["https://tec.openplanner.team/stops/LHrbast1", "https://tec.openplanner.team/stops/LHrbast2"], ["https://tec.openplanner.team/stops/H1ms252c", "https://tec.openplanner.team/stops/H1ms926a"], ["https://tec.openplanner.team/stops/LNIbas-1", "https://tec.openplanner.team/stops/LNIbas-2"], ["https://tec.openplanner.team/stops/H4vz371a", "https://tec.openplanner.team/stops/H4vz371b"], ["https://tec.openplanner.team/stops/H4my123a", "https://tec.openplanner.team/stops/H4my123b"], ["https://tec.openplanner.team/stops/LMfbuck1", "https://tec.openplanner.team/stops/LMffoot2"], ["https://tec.openplanner.team/stops/Cmaprov1", "https://tec.openplanner.team/stops/Cmaprov2"], ["https://tec.openplanner.team/stops/H4by115d", "https://tec.openplanner.team/stops/H4wp152a"], ["https://tec.openplanner.team/stops/Btubegy1", "https://tec.openplanner.team/stops/Btubegy2"], ["https://tec.openplanner.team/stops/X370aca", "https://tec.openplanner.team/stops/X850aka"], ["https://tec.openplanner.team/stops/LhIfrie1", "https://tec.openplanner.team/stops/LhIfrie2"], ["https://tec.openplanner.team/stops/LLGcarr2", "https://tec.openplanner.team/stops/LLGec--*"], ["https://tec.openplanner.team/stops/Lhrlico2", "https://tec.openplanner.team/stops/Lhrtilm2"], ["https://tec.openplanner.team/stops/H4tp143a", "https://tec.openplanner.team/stops/H4tp143b"], ["https://tec.openplanner.team/stops/X889aab", "https://tec.openplanner.team/stops/X899ajb"], ["https://tec.openplanner.team/stops/N513acd", "https://tec.openplanner.team/stops/N513ada"], ["https://tec.openplanner.team/stops/H2ha137a", "https://tec.openplanner.team/stops/H2ha137b"], ["https://tec.openplanner.team/stops/N522aja", "https://tec.openplanner.team/stops/N522ajb"], ["https://tec.openplanner.team/stops/X746aea", "https://tec.openplanner.team/stops/X746afb"], ["https://tec.openplanner.team/stops/X664ajb", "https://tec.openplanner.team/stops/X664atb"], ["https://tec.openplanner.team/stops/H4er123a", "https://tec.openplanner.team/stops/H4er123b"], ["https://tec.openplanner.team/stops/Cfabaty4", "https://tec.openplanner.team/stops/Cflcoro2"], ["https://tec.openplanner.team/stops/N501bya", "https://tec.openplanner.team/stops/N501byb"], ["https://tec.openplanner.team/stops/H4ar101b", "https://tec.openplanner.team/stops/H4lg103b"], ["https://tec.openplanner.team/stops/H2ml110b", "https://tec.openplanner.team/stops/H2ml113b"], ["https://tec.openplanner.team/stops/Clrcomb2", "https://tec.openplanner.team/stops/Clrecol2"], ["https://tec.openplanner.team/stops/X892aca", "https://tec.openplanner.team/stops/X892adb"], ["https://tec.openplanner.team/stops/Bgnpchb1", "https://tec.openplanner.team/stops/Bgnppra1"], ["https://tec.openplanner.team/stops/Csysans2", "https://tec.openplanner.team/stops/Csytouq2"], ["https://tec.openplanner.team/stops/LsVgore1", "https://tec.openplanner.team/stops/LsVgore2"], ["https://tec.openplanner.team/stops/Brebpca2", "https://tec.openplanner.team/stops/Brebrog2"], ["https://tec.openplanner.team/stops/X879apa", "https://tec.openplanner.team/stops/X879ara"], ["https://tec.openplanner.team/stops/X633aib", "https://tec.openplanner.team/stops/X633ajc"], ["https://tec.openplanner.team/stops/Cfcchas1", "https://tec.openplanner.team/stops/Cfcstan1"], ["https://tec.openplanner.team/stops/LAMjeha1", "https://tec.openplanner.team/stops/LAMviam1"], ["https://tec.openplanner.team/stops/H4ab103a", "https://tec.openplanner.team/stops/H5ma181a"], ["https://tec.openplanner.team/stops/Lhrmilm2", "https://tec.openplanner.team/stops/Lhrrhee*"], ["https://tec.openplanner.team/stops/H1mj131b", "https://tec.openplanner.team/stops/H1ml109a"], ["https://tec.openplanner.team/stops/Cfogaul1", "https://tec.openplanner.team/stops/Cfogaul2"], ["https://tec.openplanner.team/stops/Ccogrha2", "https://tec.openplanner.team/stops/Cpceclu2"], ["https://tec.openplanner.team/stops/Cchplan1", "https://tec.openplanner.team/stops/Cdasama2"], ["https://tec.openplanner.team/stops/Cbimonu1", "https://tec.openplanner.team/stops/Cbimonu2"], ["https://tec.openplanner.team/stops/N101ajb", "https://tec.openplanner.team/stops/N151aab"], ["https://tec.openplanner.team/stops/H4wi164a", "https://tec.openplanner.team/stops/H4wi175b"], ["https://tec.openplanner.team/stops/Bcbqh451", "https://tec.openplanner.team/stops/Bcbqh452"], ["https://tec.openplanner.team/stops/LBslama1", "https://tec.openplanner.team/stops/LBsoha-1"], ["https://tec.openplanner.team/stops/N154aaa", "https://tec.openplanner.team/stops/N154aca"], ["https://tec.openplanner.team/stops/LJEpaqu1", "https://tec.openplanner.team/stops/LJEtige2"], ["https://tec.openplanner.team/stops/X898aoa", "https://tec.openplanner.team/stops/X995afa"], ["https://tec.openplanner.team/stops/X877aba", "https://tec.openplanner.team/stops/X877aha"], ["https://tec.openplanner.team/stops/N224agc", "https://tec.openplanner.team/stops/X224aga"], ["https://tec.openplanner.team/stops/Lprfoot1", "https://tec.openplanner.team/stops/Lprtour1"], ["https://tec.openplanner.team/stops/N542amb", "https://tec.openplanner.team/stops/N578acb"], ["https://tec.openplanner.team/stops/LsVprum1", "https://tec.openplanner.team/stops/LsVprum4"], ["https://tec.openplanner.team/stops/X640ada", "https://tec.openplanner.team/stops/X641amb"], ["https://tec.openplanner.team/stops/X733aca", "https://tec.openplanner.team/stops/X734apb"], ["https://tec.openplanner.team/stops/LMNswar1", "https://tec.openplanner.team/stops/LMNswar2"], ["https://tec.openplanner.team/stops/X801bua", "https://tec.openplanner.team/stops/X801bva"], ["https://tec.openplanner.team/stops/LBBmc--2", "https://tec.openplanner.team/stops/LBBpech2"], ["https://tec.openplanner.team/stops/N242afa", "https://tec.openplanner.team/stops/N251abb"], ["https://tec.openplanner.team/stops/Borbode1", "https://tec.openplanner.team/stops/Borborb1"], ["https://tec.openplanner.team/stops/X362aba", "https://tec.openplanner.team/stops/X362adb"], ["https://tec.openplanner.team/stops/N547ana", "https://tec.openplanner.team/stops/N553ana"], ["https://tec.openplanner.team/stops/X768abb", "https://tec.openplanner.team/stops/X768aha"], ["https://tec.openplanner.team/stops/Canboha2", "https://tec.openplanner.team/stops/H2an110b"], ["https://tec.openplanner.team/stops/X316aab", "https://tec.openplanner.team/stops/X318aca"], ["https://tec.openplanner.team/stops/LXhjupr1", "https://tec.openplanner.team/stops/LXhjupr4"], ["https://tec.openplanner.team/stops/Canlalu2", "https://tec.openplanner.team/stops/H2an102a"], ["https://tec.openplanner.team/stops/H1mb131a", "https://tec.openplanner.team/stops/H1mb137b"], ["https://tec.openplanner.team/stops/N521aia", "https://tec.openplanner.team/stops/N521aib"], ["https://tec.openplanner.team/stops/H1bo101a", "https://tec.openplanner.team/stops/H1bo106c"], ["https://tec.openplanner.team/stops/Cjucopp1", "https://tec.openplanner.team/stops/Cjucopp2"], ["https://tec.openplanner.team/stops/Cgxfo142", "https://tec.openplanner.team/stops/Cgxvvel2"], ["https://tec.openplanner.team/stops/H1ag107a", "https://tec.openplanner.team/stops/H1ag107b"], ["https://tec.openplanner.team/stops/Bhalcbr1", "https://tec.openplanner.team/stops/Bwaucig1"], ["https://tec.openplanner.team/stops/Lghraul1", "https://tec.openplanner.team/stops/Lghterm*"], ["https://tec.openplanner.team/stops/H1mj132a", "https://tec.openplanner.team/stops/H1ni319a"], ["https://tec.openplanner.team/stops/N516aba", "https://tec.openplanner.team/stops/N516amc"], ["https://tec.openplanner.team/stops/N352afa", "https://tec.openplanner.team/stops/N353aba"], ["https://tec.openplanner.team/stops/H1me115b", "https://tec.openplanner.team/stops/H1mm127b"], ["https://tec.openplanner.team/stops/Ctrepin1", "https://tec.openplanner.team/stops/H2tz120a"], ["https://tec.openplanner.team/stops/LcRmich1", "https://tec.openplanner.team/stops/LrDneun1"], ["https://tec.openplanner.team/stops/X673aba", "https://tec.openplanner.team/stops/X673aea"], ["https://tec.openplanner.team/stops/N501jib", "https://tec.openplanner.team/stops/N501jkb"], ["https://tec.openplanner.team/stops/Lbocruc1", "https://tec.openplanner.team/stops/LPLcarr2"], ["https://tec.openplanner.team/stops/LDmcruc1", "https://tec.openplanner.team/stops/LHFhard1"], ["https://tec.openplanner.team/stops/Cjuhame1", "https://tec.openplanner.team/stops/Craferr1"], ["https://tec.openplanner.team/stops/LFFcouv1", "https://tec.openplanner.team/stops/LFFruel2"], ["https://tec.openplanner.team/stops/H1gi118b", "https://tec.openplanner.team/stops/H1gi121a"], ["https://tec.openplanner.team/stops/LmHumge1", "https://tec.openplanner.team/stops/LmHvenn1"], ["https://tec.openplanner.team/stops/Bsaumlk3", "https://tec.openplanner.team/stops/Bsaumlk4"], ["https://tec.openplanner.team/stops/N552abb", "https://tec.openplanner.team/stops/N568adb"], ["https://tec.openplanner.team/stops/LWacime2", "https://tec.openplanner.team/stops/LWacime4"], ["https://tec.openplanner.team/stops/X615beb", "https://tec.openplanner.team/stops/X616aib"], ["https://tec.openplanner.team/stops/H1sp356a", "https://tec.openplanner.team/stops/H1sp356b"], ["https://tec.openplanner.team/stops/H1eo103a", "https://tec.openplanner.team/stops/H1et101a"], ["https://tec.openplanner.team/stops/LLemonu1", "https://tec.openplanner.team/stops/X547aeb"], ["https://tec.openplanner.team/stops/H1ms257a", "https://tec.openplanner.team/stops/H1ms279b"], ["https://tec.openplanner.team/stops/Ldiinte1", "https://tec.openplanner.team/stops/Ldipost1"], ["https://tec.openplanner.team/stops/H2tr250a", "https://tec.openplanner.team/stops/H2tr256a"], ["https://tec.openplanner.team/stops/LHodomm1", "https://tec.openplanner.team/stops/LHodomm2"], ["https://tec.openplanner.team/stops/Btslcel1", "https://tec.openplanner.team/stops/Btslcel2"], ["https://tec.openplanner.team/stops/N557abb", "https://tec.openplanner.team/stops/N558aja"], ["https://tec.openplanner.team/stops/LTPwann2", "https://tec.openplanner.team/stops/LWn24--1"], ["https://tec.openplanner.team/stops/Lmnmart2", "https://tec.openplanner.team/stops/Lsmjalh2"], ["https://tec.openplanner.team/stops/Lhurouh2", "https://tec.openplanner.team/stops/Lmnrame1"], ["https://tec.openplanner.team/stops/Bmarmco1", "https://tec.openplanner.team/stops/Bmarmco2"], ["https://tec.openplanner.team/stops/LHYlinc1", "https://tec.openplanner.team/stops/LHYlinc4"], ["https://tec.openplanner.team/stops/H4my120b", "https://tec.openplanner.team/stops/H4ws160a"], ["https://tec.openplanner.team/stops/Cfmltas2", "https://tec.openplanner.team/stops/H2tz115a"], ["https://tec.openplanner.team/stops/N132acb", "https://tec.openplanner.team/stops/N135aba"], ["https://tec.openplanner.team/stops/Ccotemp1", "https://tec.openplanner.team/stops/Crodrai1"], ["https://tec.openplanner.team/stops/X609aoa", "https://tec.openplanner.team/stops/X645aba"], ["https://tec.openplanner.team/stops/X547aqa", "https://tec.openplanner.team/stops/X782aea"], ["https://tec.openplanner.team/stops/X926acb", "https://tec.openplanner.team/stops/X945abc"], ["https://tec.openplanner.team/stops/H1po133a", "https://tec.openplanner.team/stops/H1po138b"], ["https://tec.openplanner.team/stops/N349abb", "https://tec.openplanner.team/stops/N351aqa"], ["https://tec.openplanner.team/stops/Bottbou2", "https://tec.openplanner.team/stops/Bottppa4"], ["https://tec.openplanner.team/stops/LPRmc--1", "https://tec.openplanner.team/stops/LPRpeti2"], ["https://tec.openplanner.team/stops/H4lz162a", "https://tec.openplanner.team/stops/H4lz163a"], ["https://tec.openplanner.team/stops/Bgntpla1", "https://tec.openplanner.team/stops/Bsgebou1"], ["https://tec.openplanner.team/stops/H2ll173a", "https://tec.openplanner.team/stops/H2ll179a"], ["https://tec.openplanner.team/stops/Becebju1", "https://tec.openplanner.team/stops/Beceres2"], ["https://tec.openplanner.team/stops/H4ha169a", "https://tec.openplanner.team/stops/H4me211b"], ["https://tec.openplanner.team/stops/LaTcolo1", "https://tec.openplanner.team/stops/LsVfeye1"], ["https://tec.openplanner.team/stops/LCvneuf1", "https://tec.openplanner.team/stops/LCvneuf2"], ["https://tec.openplanner.team/stops/X786aca", "https://tec.openplanner.team/stops/X786acb"], ["https://tec.openplanner.team/stops/Cloauln1", "https://tec.openplanner.team/stops/Clooues1"], ["https://tec.openplanner.team/stops/N120amb", "https://tec.openplanner.team/stops/N244apb"], ["https://tec.openplanner.team/stops/N580ada", "https://tec.openplanner.team/stops/N580aeb"], ["https://tec.openplanner.team/stops/X725aza", "https://tec.openplanner.team/stops/X725bab"], ["https://tec.openplanner.team/stops/LbTmuhl2", "https://tec.openplanner.team/stops/LnIschw2"], ["https://tec.openplanner.team/stops/N565aba", "https://tec.openplanner.team/stops/N565akb"], ["https://tec.openplanner.team/stops/H4ld126a", "https://tec.openplanner.team/stops/H4ld128b"], ["https://tec.openplanner.team/stops/N988aaa", "https://tec.openplanner.team/stops/X989aeb"], ["https://tec.openplanner.team/stops/Bkrabhu1", "https://tec.openplanner.team/stops/Bovesol1"], ["https://tec.openplanner.team/stops/LrcarsT1", "https://tec.openplanner.team/stops/Lrcpaqu2"], ["https://tec.openplanner.team/stops/N537akb", "https://tec.openplanner.team/stops/N557aia"], ["https://tec.openplanner.team/stops/Lsepudd1", "https://tec.openplanner.team/stops/Lsepudd2"], ["https://tec.openplanner.team/stops/H2gy109a", "https://tec.openplanner.team/stops/H2gy109b"], ["https://tec.openplanner.team/stops/Lmaetan*", "https://tec.openplanner.team/stops/Lmapomm1"], ["https://tec.openplanner.team/stops/H4ty275a", "https://tec.openplanner.team/stops/H4ty349a"], ["https://tec.openplanner.team/stops/N508acb", "https://tec.openplanner.team/stops/N508ada"], ["https://tec.openplanner.team/stops/X595aba", "https://tec.openplanner.team/stops/X595aib"], ["https://tec.openplanner.team/stops/H2hg157c", "https://tec.openplanner.team/stops/H2hg265a"], ["https://tec.openplanner.team/stops/Llgegwa1", "https://tec.openplanner.team/stops/Llghugo2"], ["https://tec.openplanner.team/stops/Btslcel2", "https://tec.openplanner.team/stops/Bwlhswc2"], ["https://tec.openplanner.team/stops/H1bu142a", "https://tec.openplanner.team/stops/H1bu142b"], ["https://tec.openplanner.team/stops/Louvand1", "https://tec.openplanner.team/stops/Louvand2"], ["https://tec.openplanner.team/stops/LHMhof-1", "https://tec.openplanner.team/stops/LHMhof-2"], ["https://tec.openplanner.team/stops/LBachpl1", "https://tec.openplanner.team/stops/LBapeup2"], ["https://tec.openplanner.team/stops/X820ahb", "https://tec.openplanner.team/stops/X820aia"], ["https://tec.openplanner.team/stops/N551aab", "https://tec.openplanner.team/stops/N551abb"], ["https://tec.openplanner.team/stops/X746aab", "https://tec.openplanner.team/stops/X746aba"], ["https://tec.openplanner.team/stops/X666ala", "https://tec.openplanner.team/stops/X729abb"], ["https://tec.openplanner.team/stops/Lveanto1", "https://tec.openplanner.team/stops/Lveharm1"], ["https://tec.openplanner.team/stops/N501fra", "https://tec.openplanner.team/stops/N501mwb"], ["https://tec.openplanner.team/stops/N501esz", "https://tec.openplanner.team/stops/N501eua"], ["https://tec.openplanner.team/stops/LLz21--1", "https://tec.openplanner.team/stops/LLzcruc1"], ["https://tec.openplanner.team/stops/Blsmbfe1", "https://tec.openplanner.team/stops/Blsmcha4"], ["https://tec.openplanner.team/stops/LhGadap1", "https://tec.openplanner.team/stops/LhSfrei1"], ["https://tec.openplanner.team/stops/LmNbirt1", "https://tec.openplanner.team/stops/LsC216-2"], ["https://tec.openplanner.team/stops/H4ld125a", "https://tec.openplanner.team/stops/H4ld125b"], ["https://tec.openplanner.team/stops/H1ms283a", "https://tec.openplanner.team/stops/H1ms912a"], ["https://tec.openplanner.team/stops/Cmypela1", "https://tec.openplanner.team/stops/Cmypela2"], ["https://tec.openplanner.team/stops/X839aaa", "https://tec.openplanner.team/stops/X839aab"], ["https://tec.openplanner.team/stops/X601boa", "https://tec.openplanner.team/stops/X601daa"], ["https://tec.openplanner.team/stops/Lanadmi2", "https://tec.openplanner.team/stops/Lloretr2"], ["https://tec.openplanner.team/stops/NH01apa", "https://tec.openplanner.team/stops/NH01apb"], ["https://tec.openplanner.team/stops/Bniveco1", "https://tec.openplanner.team/stops/Bnivlde2"], ["https://tec.openplanner.team/stops/Ccugail1", "https://tec.openplanner.team/stops/Ccusole2"], ["https://tec.openplanner.team/stops/Bhoemel1", "https://tec.openplanner.team/stops/Bhoemel2"], ["https://tec.openplanner.team/stops/Blhunys1", "https://tec.openplanner.team/stops/Blhunys2"], ["https://tec.openplanner.team/stops/Bblafrn1", "https://tec.openplanner.team/stops/Bblafrn2"], ["https://tec.openplanner.team/stops/X790aga", "https://tec.openplanner.team/stops/X790agb"], ["https://tec.openplanner.team/stops/Cfbegli1", "https://tec.openplanner.team/stops/Cfbegli2"], ["https://tec.openplanner.team/stops/H1mm121a", "https://tec.openplanner.team/stops/H1mm126a"], ["https://tec.openplanner.team/stops/Lmncasi2", "https://tec.openplanner.team/stops/Lsmjalh2"], ["https://tec.openplanner.team/stops/Brsgman1", "https://tec.openplanner.team/stops/Brsgman2"], ["https://tec.openplanner.team/stops/N501goa", "https://tec.openplanner.team/stops/N501hyb"], ["https://tec.openplanner.team/stops/N536aeb", "https://tec.openplanner.team/stops/N580aha"], ["https://tec.openplanner.team/stops/N201aeb", "https://tec.openplanner.team/stops/N201asb"], ["https://tec.openplanner.team/stops/X636aub", "https://tec.openplanner.team/stops/X636awb"], ["https://tec.openplanner.team/stops/Cctgaux2", "https://tec.openplanner.team/stops/Cctstro1"], ["https://tec.openplanner.team/stops/N569aic", "https://tec.openplanner.team/stops/N569alb"], ["https://tec.openplanner.team/stops/Cbmgare1", "https://tec.openplanner.team/stops/Cbmviv1"], ["https://tec.openplanner.team/stops/Cnachcu2", "https://tec.openplanner.team/stops/Cnathib1"], ["https://tec.openplanner.team/stops/H2mg136b", "https://tec.openplanner.team/stops/H2mg141a"], ["https://tec.openplanner.team/stops/H1so135a", "https://tec.openplanner.team/stops/H1so136c"], ["https://tec.openplanner.team/stops/X781acb", "https://tec.openplanner.team/stops/X781aga"], ["https://tec.openplanner.team/stops/LAibego2", "https://tec.openplanner.team/stops/LCaresi1"], ["https://tec.openplanner.team/stops/H2le149a", "https://tec.openplanner.team/stops/H2le153b"], ["https://tec.openplanner.team/stops/LBjflor1", "https://tec.openplanner.team/stops/X575agb"], ["https://tec.openplanner.team/stops/LJEchat2", "https://tec.openplanner.team/stops/LJEchat3"], ["https://tec.openplanner.team/stops/Ljubois1", "https://tec.openplanner.team/stops/Ljuprev4"], ["https://tec.openplanner.team/stops/H4lp126a", "https://tec.openplanner.team/stops/H4lp126b"], ["https://tec.openplanner.team/stops/N221acb", "https://tec.openplanner.team/stops/X394aga"], ["https://tec.openplanner.team/stops/H4ab100a", "https://tec.openplanner.team/stops/H4ab100b"], ["https://tec.openplanner.team/stops/LLvferm2", "https://tec.openplanner.team/stops/NL78aeb"], ["https://tec.openplanner.team/stops/X770aga", "https://tec.openplanner.team/stops/X774acb"], ["https://tec.openplanner.team/stops/LPTblan1", "https://tec.openplanner.team/stops/X750asb"], ["https://tec.openplanner.team/stops/H4ld125b", "https://tec.openplanner.team/stops/H4to138a"], ["https://tec.openplanner.team/stops/Clodupr1", "https://tec.openplanner.team/stops/Clojone2"], ["https://tec.openplanner.team/stops/Cfaamio1", "https://tec.openplanner.team/stops/Cfamonu2"], ["https://tec.openplanner.team/stops/X609aka", "https://tec.openplanner.team/stops/X609ama"], ["https://tec.openplanner.team/stops/Cjuhame2", "https://tec.openplanner.team/stops/Cjulamb3"], ["https://tec.openplanner.team/stops/Llgcoll1", "https://tec.openplanner.team/stops/Llgcrev2"], ["https://tec.openplanner.team/stops/Bjodfab2", "https://tec.openplanner.team/stops/Bsjgegl1"], ["https://tec.openplanner.team/stops/LGMdrev1", "https://tec.openplanner.team/stops/LSEquar2"], ["https://tec.openplanner.team/stops/H4wt160a", "https://tec.openplanner.team/stops/H5rx112a"], ["https://tec.openplanner.team/stops/NL74aba", "https://tec.openplanner.team/stops/NL75aba"], ["https://tec.openplanner.team/stops/X804bra", "https://tec.openplanner.team/stops/X804brb"], ["https://tec.openplanner.team/stops/Cplbbro1", "https://tec.openplanner.team/stops/Cplrmon2"], ["https://tec.openplanner.team/stops/H4lh120a", "https://tec.openplanner.team/stops/H4oe147a"], ["https://tec.openplanner.team/stops/N525abb", "https://tec.openplanner.team/stops/N525bab"], ["https://tec.openplanner.team/stops/Bsgipha3", "https://tec.openplanner.team/stops/Buccdch2"], ["https://tec.openplanner.team/stops/LCRabbe1", "https://tec.openplanner.team/stops/LCReg--2"], ["https://tec.openplanner.team/stops/Bnilspe2", "https://tec.openplanner.team/stops/Btsllib1"], ["https://tec.openplanner.team/stops/X601bfb", "https://tec.openplanner.team/stops/X601bhb"], ["https://tec.openplanner.team/stops/N104aka", "https://tec.openplanner.team/stops/N106abb"], ["https://tec.openplanner.team/stops/LLnec--1", "https://tec.openplanner.team/stops/LLnec--2"], ["https://tec.openplanner.team/stops/LBTchai3", "https://tec.openplanner.team/stops/LBTchai4"], ["https://tec.openplanner.team/stops/X824agb", "https://tec.openplanner.team/stops/X824akb"], ["https://tec.openplanner.team/stops/H1cr100a", "https://tec.openplanner.team/stops/H1ry136b"], ["https://tec.openplanner.team/stops/LOlvill1", "https://tec.openplanner.team/stops/LSemc--4"], ["https://tec.openplanner.team/stops/Lsmlina*", "https://tec.openplanner.team/stops/Lsmnico2"], ["https://tec.openplanner.team/stops/N501bra", "https://tec.openplanner.team/stops/N501izb"], ["https://tec.openplanner.team/stops/LBVlamo1", "https://tec.openplanner.team/stops/LLocruc1"], ["https://tec.openplanner.team/stops/Lcejobe1", "https://tec.openplanner.team/stops/Lcejobe2"], ["https://tec.openplanner.team/stops/LAufech1", "https://tec.openplanner.team/stops/LJueg--1"], ["https://tec.openplanner.team/stops/N506atb", "https://tec.openplanner.team/stops/N506bab"], ["https://tec.openplanner.team/stops/X804asa", "https://tec.openplanner.team/stops/X804asb"], ["https://tec.openplanner.team/stops/LRRelec1", "https://tec.openplanner.team/stops/LRRelec2"], ["https://tec.openplanner.team/stops/X904aja", "https://tec.openplanner.team/stops/X904ala"], ["https://tec.openplanner.team/stops/N151aba", "https://tec.openplanner.team/stops/N153abb"], ["https://tec.openplanner.team/stops/H1et100b", "https://tec.openplanner.team/stops/H1et102b"], ["https://tec.openplanner.team/stops/N501cla", "https://tec.openplanner.team/stops/N501coa"], ["https://tec.openplanner.team/stops/LAWaube1", "https://tec.openplanner.team/stops/LHGikea2"], ["https://tec.openplanner.team/stops/Lghmeun1", "https://tec.openplanner.team/stops/Lghmeun4"], ["https://tec.openplanner.team/stops/Blmlgar1", "https://tec.openplanner.team/stops/Blmlmco2"], ["https://tec.openplanner.team/stops/H1ca106b", "https://tec.openplanner.team/stops/H1ca108a"], ["https://tec.openplanner.team/stops/Cfbcal1", "https://tec.openplanner.team/stops/Cfcrdpr1"], ["https://tec.openplanner.team/stops/X897ava", "https://tec.openplanner.team/stops/X897avb"], ["https://tec.openplanner.team/stops/LSseg--2", "https://tec.openplanner.team/stops/N506bwb"], ["https://tec.openplanner.team/stops/LHTboul2", "https://tec.openplanner.team/stops/LHTcarr1"], ["https://tec.openplanner.team/stops/N874ala", "https://tec.openplanner.team/stops/N874alb"], ["https://tec.openplanner.team/stops/Cflchap1", "https://tec.openplanner.team/stops/Cflchap2"], ["https://tec.openplanner.team/stops/LOccarr2", "https://tec.openplanner.team/stops/LOcgdro4"], ["https://tec.openplanner.team/stops/LHCcoul1", "https://tec.openplanner.team/stops/LSuusin2"], ["https://tec.openplanner.team/stops/Bjaugaz1", "https://tec.openplanner.team/stops/Bjaurgo2"], ["https://tec.openplanner.team/stops/H4do103a", "https://tec.openplanner.team/stops/H4do104b"], ["https://tec.openplanner.team/stops/X343ahb", "https://tec.openplanner.team/stops/X344acb"], ["https://tec.openplanner.team/stops/Cbugara1", "https://tec.openplanner.team/stops/N103afa"], ["https://tec.openplanner.team/stops/H4ne131b", "https://tec.openplanner.team/stops/H4te251a"], ["https://tec.openplanner.team/stops/Cgrchea2", "https://tec.openplanner.team/stops/NC14ahb"], ["https://tec.openplanner.team/stops/Cjupuis1", "https://tec.openplanner.team/stops/Cjuvand1"], ["https://tec.openplanner.team/stops/Brsrcha1", "https://tec.openplanner.team/stops/Brsrcha2"], ["https://tec.openplanner.team/stops/Ldijean2", "https://tec.openplanner.team/stops/Ldipiss1"], ["https://tec.openplanner.team/stops/Bixlaca1", "https://tec.openplanner.team/stops/Bixlozo1"], ["https://tec.openplanner.team/stops/Bnivasa2", "https://tec.openplanner.team/stops/Bnivpro1"], ["https://tec.openplanner.team/stops/LMOecsp3", "https://tec.openplanner.team/stops/LMOs45-2"], ["https://tec.openplanner.team/stops/H1do108a", "https://tec.openplanner.team/stops/H1do117a"], ["https://tec.openplanner.team/stops/N506bqa", "https://tec.openplanner.team/stops/N506bqb"], ["https://tec.openplanner.team/stops/Cmcbriq2", "https://tec.openplanner.team/stops/Cmcbriq4"], ["https://tec.openplanner.team/stops/X618aaa", "https://tec.openplanner.team/stops/X618abb"], ["https://tec.openplanner.team/stops/H1em110a", "https://tec.openplanner.team/stops/H1em111a"], ["https://tec.openplanner.team/stops/N161abc", "https://tec.openplanner.team/stops/N161abd"], ["https://tec.openplanner.team/stops/LVPgrot1", "https://tec.openplanner.team/stops/LVPgrot2"], ["https://tec.openplanner.team/stops/Bjaupro2", "https://tec.openplanner.team/stops/Bjaurgo2"], ["https://tec.openplanner.team/stops/LDmdomm1", "https://tec.openplanner.team/stops/LDmeg--1"], ["https://tec.openplanner.team/stops/Cmyland4", "https://tec.openplanner.team/stops/Cmymarb1"], ["https://tec.openplanner.team/stops/Csesabo2", "https://tec.openplanner.team/stops/N425abb"], ["https://tec.openplanner.team/stops/H4ff122a", "https://tec.openplanner.team/stops/H4ff122b"], ["https://tec.openplanner.team/stops/X788aga", "https://tec.openplanner.team/stops/X788aha"], ["https://tec.openplanner.team/stops/N562aka", "https://tec.openplanner.team/stops/N562akb"], ["https://tec.openplanner.team/stops/Cgxptt2", "https://tec.openplanner.team/stops/Cgxvkho1"], ["https://tec.openplanner.team/stops/Blhupri1", "https://tec.openplanner.team/stops/Blhupri2"], ["https://tec.openplanner.team/stops/Bgnttma1", "https://tec.openplanner.team/stops/Bsomjon2"], ["https://tec.openplanner.team/stops/Lemsely1", "https://tec.openplanner.team/stops/Lemsely2"], ["https://tec.openplanner.team/stops/Cchparc2", "https://tec.openplanner.team/stops/Cchvhau1"], ["https://tec.openplanner.team/stops/LFRfagn1", "https://tec.openplanner.team/stops/LFRfagn2"], ["https://tec.openplanner.team/stops/Bnilegl1", "https://tec.openplanner.team/stops/Bnilspe1"], ["https://tec.openplanner.team/stops/H1bs112a", "https://tec.openplanner.team/stops/H1sb148b"], ["https://tec.openplanner.team/stops/LCvneuf2", "https://tec.openplanner.team/stops/LTBeg--1"], ["https://tec.openplanner.team/stops/N519asb", "https://tec.openplanner.team/stops/N525akb"], ["https://tec.openplanner.team/stops/N137aab", "https://tec.openplanner.team/stops/N137aca"], ["https://tec.openplanner.team/stops/X837aib", "https://tec.openplanner.team/stops/X837aka"], ["https://tec.openplanner.team/stops/X982atb", "https://tec.openplanner.team/stops/X982axa"], ["https://tec.openplanner.team/stops/N217aea", "https://tec.openplanner.team/stops/N287aaa"], ["https://tec.openplanner.team/stops/Lvevert4", "https://tec.openplanner.team/stops/Lvexhav1"], ["https://tec.openplanner.team/stops/X994aga", "https://tec.openplanner.team/stops/X994agb"], ["https://tec.openplanner.team/stops/H1fl133e", "https://tec.openplanner.team/stops/H1fl133f"], ["https://tec.openplanner.team/stops/Bohncha1", "https://tec.openplanner.team/stops/Bohncha2"], ["https://tec.openplanner.team/stops/NL76aea", "https://tec.openplanner.team/stops/NL77aba"], ["https://tec.openplanner.team/stops/LLTeg--1", "https://tec.openplanner.team/stops/LLThosd2"], ["https://tec.openplanner.team/stops/H1ba119b", "https://tec.openplanner.team/stops/H1qu104a"], ["https://tec.openplanner.team/stops/Bsomtce1", "https://tec.openplanner.team/stops/N584ada"], ["https://tec.openplanner.team/stops/X650acb", "https://tec.openplanner.team/stops/X650aib"], ["https://tec.openplanner.team/stops/H4mt217a", "https://tec.openplanner.team/stops/H4ru235a"], ["https://tec.openplanner.team/stops/X982ata", "https://tec.openplanner.team/stops/X982baa"], ["https://tec.openplanner.team/stops/N538aya", "https://tec.openplanner.team/stops/N538bba"], ["https://tec.openplanner.team/stops/Ccyfede2", "https://tec.openplanner.team/stops/Cslbhau2"], ["https://tec.openplanner.team/stops/LMXaven1", "https://tec.openplanner.team/stops/LMXroye1"], ["https://tec.openplanner.team/stops/H4co109a", "https://tec.openplanner.team/stops/H4co158a"], ["https://tec.openplanner.team/stops/Bblacea1", "https://tec.openplanner.team/stops/Bblaece1"], ["https://tec.openplanner.team/stops/Lprcard1", "https://tec.openplanner.team/stops/Lprferm1"], ["https://tec.openplanner.team/stops/Cjuledo2", "https://tec.openplanner.team/stops/Cjumall1"], ["https://tec.openplanner.team/stops/N383aca", "https://tec.openplanner.team/stops/N383acb"], ["https://tec.openplanner.team/stops/X801abb", "https://tec.openplanner.team/stops/X898afa"], ["https://tec.openplanner.team/stops/NC23aeb", "https://tec.openplanner.team/stops/NC23aga"], ["https://tec.openplanner.team/stops/Bbsicen2", "https://tec.openplanner.team/stops/Bbsipos1"], ["https://tec.openplanner.team/stops/N558ana", "https://tec.openplanner.team/stops/NL77aba"], ["https://tec.openplanner.team/stops/X601blb", "https://tec.openplanner.team/stops/X602afa"], ["https://tec.openplanner.team/stops/LHUmess1", "https://tec.openplanner.team/stops/LTigera1"], ["https://tec.openplanner.team/stops/N368acb", "https://tec.openplanner.team/stops/N368afb"], ["https://tec.openplanner.team/stops/LnDkreu1", "https://tec.openplanner.team/stops/LwSbrei2"], ["https://tec.openplanner.team/stops/Lmoweri1", "https://tec.openplanner.team/stops/Lmoweri2"], ["https://tec.openplanner.team/stops/Crccano1", "https://tec.openplanner.team/stops/Crcfdom1"], ["https://tec.openplanner.team/stops/N120alb", "https://tec.openplanner.team/stops/N120amb"], ["https://tec.openplanner.team/stops/LAvrout2", "https://tec.openplanner.team/stops/LBUrout1"], ["https://tec.openplanner.team/stops/X954aba", "https://tec.openplanner.team/stops/X954adb"], ["https://tec.openplanner.team/stops/X672ada", "https://tec.openplanner.team/stops/X672aoa"], ["https://tec.openplanner.team/stops/Cgocalv1", "https://tec.openplanner.team/stops/CMcalv2"], ["https://tec.openplanner.team/stops/LHUgole2", "https://tec.openplanner.team/stops/LHUhaum2"], ["https://tec.openplanner.team/stops/H2mo143b", "https://tec.openplanner.team/stops/H2mo144a"], ["https://tec.openplanner.team/stops/N353ahb", "https://tec.openplanner.team/stops/N357ada"], ["https://tec.openplanner.team/stops/Bmalcar2", "https://tec.openplanner.team/stops/Bmalper1"], ["https://tec.openplanner.team/stops/X663alb", "https://tec.openplanner.team/stops/X663ama"], ["https://tec.openplanner.team/stops/Clomakr1", "https://tec.openplanner.team/stops/Clomakr2"], ["https://tec.openplanner.team/stops/H2hg150a", "https://tec.openplanner.team/stops/H2sb257c"], ["https://tec.openplanner.team/stops/X342aaa", "https://tec.openplanner.team/stops/X342aha"], ["https://tec.openplanner.team/stops/LbTaral2", "https://tec.openplanner.team/stops/LnIschw1"], ["https://tec.openplanner.team/stops/X907aga", "https://tec.openplanner.team/stops/X908ara"], ["https://tec.openplanner.team/stops/X354aeb", "https://tec.openplanner.team/stops/X354afa"], ["https://tec.openplanner.team/stops/Bwatgar2", "https://tec.openplanner.team/stops/Bwatrdu1"], ["https://tec.openplanner.team/stops/Blaneli2", "https://tec.openplanner.team/stops/Bwaanwi1"], ["https://tec.openplanner.team/stops/N151abb", "https://tec.openplanner.team/stops/N151aja"], ["https://tec.openplanner.team/stops/Cfrcham1", "https://tec.openplanner.team/stops/Cfrcomp1"], ["https://tec.openplanner.team/stops/X983aaa", "https://tec.openplanner.team/stops/X986asa"], ["https://tec.openplanner.team/stops/H1mk108a", "https://tec.openplanner.team/stops/H1mk117a"], ["https://tec.openplanner.team/stops/X752aab", "https://tec.openplanner.team/stops/X752abb"], ["https://tec.openplanner.team/stops/N522aea", "https://tec.openplanner.team/stops/N522afa"], ["https://tec.openplanner.team/stops/LFPho8a2", "https://tec.openplanner.team/stops/LFPkast2"], ["https://tec.openplanner.team/stops/N501hsb", "https://tec.openplanner.team/stops/N501iea"], ["https://tec.openplanner.team/stops/X955aba", "https://tec.openplanner.team/stops/X955aca"], ["https://tec.openplanner.team/stops/X939aha", "https://tec.openplanner.team/stops/X939ahb"], ["https://tec.openplanner.team/stops/Bwlhpma2", "https://tec.openplanner.team/stops/Bwlhppg1"], ["https://tec.openplanner.team/stops/LBachpl2", "https://tec.openplanner.team/stops/LGogare1"], ["https://tec.openplanner.team/stops/H1bb115a", "https://tec.openplanner.team/stops/H1bo104a"], ["https://tec.openplanner.team/stops/X724afb", "https://tec.openplanner.team/stops/X724aga"], ["https://tec.openplanner.team/stops/Ccocoup1", "https://tec.openplanner.team/stops/Ccocoup2"], ["https://tec.openplanner.team/stops/LCTgare4", "https://tec.openplanner.team/stops/LCTpt--1"], ["https://tec.openplanner.team/stops/LAuchau1", "https://tec.openplanner.team/stops/LSDvill1"], ["https://tec.openplanner.team/stops/Cvpbifu1", "https://tec.openplanner.team/stops/Cvpsthu2"], ["https://tec.openplanner.team/stops/X886afb", "https://tec.openplanner.team/stops/X886aga"], ["https://tec.openplanner.team/stops/Btannda2", "https://tec.openplanner.team/stops/Btanpla1"], ["https://tec.openplanner.team/stops/LLelava1", "https://tec.openplanner.team/stops/X547aaa"], ["https://tec.openplanner.team/stops/NC23aaa", "https://tec.openplanner.team/stops/NC23aab"], ["https://tec.openplanner.team/stops/N245acb", "https://tec.openplanner.team/stops/N340aia"], ["https://tec.openplanner.team/stops/N501kqa", "https://tec.openplanner.team/stops/N501kqb"], ["https://tec.openplanner.team/stops/LAwfans1", "https://tec.openplanner.team/stops/LXoharz3"], ["https://tec.openplanner.team/stops/LkTgutl1", "https://tec.openplanner.team/stops/LkTraer1"], ["https://tec.openplanner.team/stops/LFLcent1", "https://tec.openplanner.team/stops/LSpunio1"], ["https://tec.openplanner.team/stops/LmHbahn2", "https://tec.openplanner.team/stops/LmHumge1"], ["https://tec.openplanner.team/stops/H4os217a", "https://tec.openplanner.team/stops/H4os221b"], ["https://tec.openplanner.team/stops/Bohnrsc1", "https://tec.openplanner.team/stops/Bwatgge2"], ["https://tec.openplanner.team/stops/Bboutry1", "https://tec.openplanner.team/stops/Bbsttab2"], ["https://tec.openplanner.team/stops/LHTbaud2", "https://tec.openplanner.team/stops/LHTcent2"], ["https://tec.openplanner.team/stops/N501epa", "https://tec.openplanner.team/stops/N501epb"], ["https://tec.openplanner.team/stops/N337agb", "https://tec.openplanner.team/stops/N337ahb"], ["https://tec.openplanner.team/stops/LJSec--2", "https://tec.openplanner.team/stops/LTHcent2"], ["https://tec.openplanner.team/stops/N540aca", "https://tec.openplanner.team/stops/N540afb"], ["https://tec.openplanner.team/stops/Brsgges2", "https://tec.openplanner.team/stops/Brsggol2"], ["https://tec.openplanner.team/stops/Bettars1", "https://tec.openplanner.team/stops/Bettars2"], ["https://tec.openplanner.team/stops/H4wn123a", "https://tec.openplanner.team/stops/H4wn129a"], ["https://tec.openplanner.team/stops/Bgntalt2", "https://tec.openplanner.team/stops/Bgntalt3"], ["https://tec.openplanner.team/stops/N584aba", "https://tec.openplanner.team/stops/N584abb"], ["https://tec.openplanner.team/stops/H4ga163b", "https://tec.openplanner.team/stops/H4ha167a"], ["https://tec.openplanner.team/stops/H4ag101b", "https://tec.openplanner.team/stops/H4ag106b"], ["https://tec.openplanner.team/stops/LkRrauw1", "https://tec.openplanner.team/stops/LwR129-1"], ["https://tec.openplanner.team/stops/X783abb", "https://tec.openplanner.team/stops/X783ada"], ["https://tec.openplanner.team/stops/NL76aja", "https://tec.openplanner.team/stops/NL76alc"], ["https://tec.openplanner.team/stops/H2ll176a", "https://tec.openplanner.team/stops/H2sv259b"], ["https://tec.openplanner.team/stops/Bbeaech2", "https://tec.openplanner.team/stops/Bbealou1"], ["https://tec.openplanner.team/stops/H2na133a", "https://tec.openplanner.team/stops/H2na133b"], ["https://tec.openplanner.team/stops/X759ada", "https://tec.openplanner.team/stops/X759aea"], ["https://tec.openplanner.team/stops/LBjvill3", "https://tec.openplanner.team/stops/LLVfour1"], ["https://tec.openplanner.team/stops/H1as101a", "https://tec.openplanner.team/stops/H1as104b"], ["https://tec.openplanner.team/stops/N501eeb", "https://tec.openplanner.team/stops/N501kkb"], ["https://tec.openplanner.team/stops/LVPgrot2", "https://tec.openplanner.team/stops/LVPgrot4"], ["https://tec.openplanner.team/stops/NR21aha", "https://tec.openplanner.team/stops/NR38afa"], ["https://tec.openplanner.team/stops/H4ar173a", "https://tec.openplanner.team/stops/H4ar178b"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/Csurela2"], ["https://tec.openplanner.team/stops/Cluberl1", "https://tec.openplanner.team/stops/Clulidl1"], ["https://tec.openplanner.team/stops/N512aea", "https://tec.openplanner.team/stops/N512ahb"], ["https://tec.openplanner.team/stops/H4wn123b", "https://tec.openplanner.team/stops/H4wn138a"], ["https://tec.openplanner.team/stops/Bnivga32", "https://tec.openplanner.team/stops/Bnivga62"], ["https://tec.openplanner.team/stops/H1pw120a", "https://tec.openplanner.team/stops/H1pw121b"], ["https://tec.openplanner.team/stops/Cobbuze2", "https://tec.openplanner.team/stops/Cobhaut1"], ["https://tec.openplanner.team/stops/LARauto2", "https://tec.openplanner.team/stops/LHAmonu1"], ["https://tec.openplanner.team/stops/N501nca", "https://tec.openplanner.team/stops/N501ncb"], ["https://tec.openplanner.team/stops/H4ty294a", "https://tec.openplanner.team/stops/H4ty382b"], ["https://tec.openplanner.team/stops/NL76aga", "https://tec.openplanner.team/stops/NL76agd"], ["https://tec.openplanner.team/stops/LgRhouf2", "https://tec.openplanner.team/stops/LnUhohe2"], ["https://tec.openplanner.team/stops/N205acb", "https://tec.openplanner.team/stops/N206ada"], ["https://tec.openplanner.team/stops/Blanath1", "https://tec.openplanner.team/stops/LWAbett2"], ["https://tec.openplanner.team/stops/N501dga", "https://tec.openplanner.team/stops/N501jsb"], ["https://tec.openplanner.team/stops/N209aea", "https://tec.openplanner.team/stops/N209aeb"], ["https://tec.openplanner.team/stops/X354aia", "https://tec.openplanner.team/stops/X858aaa"], ["https://tec.openplanner.team/stops/Brebblo2", "https://tec.openplanner.team/stops/Bsteegl1"], ["https://tec.openplanner.team/stops/Bvirfpo1", "https://tec.openplanner.team/stops/Bvirgar1"], ["https://tec.openplanner.team/stops/Bsencen1", "https://tec.openplanner.team/stops/H2se110a"], ["https://tec.openplanner.team/stops/H4mt218b", "https://tec.openplanner.team/stops/H4mt220a"], ["https://tec.openplanner.team/stops/Lcebois1", "https://tec.openplanner.team/stops/Lcepont1"], ["https://tec.openplanner.team/stops/LBImili1", "https://tec.openplanner.team/stops/LVGeg--5"], ["https://tec.openplanner.team/stops/H4fr143a", "https://tec.openplanner.team/stops/H4ma399b"], ["https://tec.openplanner.team/stops/Crofrio2", "https://tec.openplanner.team/stops/Crolema1"], ["https://tec.openplanner.team/stops/Lbrrobe2", "https://tec.openplanner.team/stops/Lgrfrai2"], ["https://tec.openplanner.team/stops/Lstbold2", "https://tec.openplanner.team/stops/Lsteduc2"], ["https://tec.openplanner.team/stops/X850aca", "https://tec.openplanner.team/stops/X850aib"], ["https://tec.openplanner.team/stops/Crcgare1", "https://tec.openplanner.team/stops/NH03afb"], ["https://tec.openplanner.team/stops/Lpebier1", "https://tec.openplanner.team/stops/Lpejonc2"], ["https://tec.openplanner.team/stops/H1mb131b", "https://tec.openplanner.team/stops/H1mb166b"], ["https://tec.openplanner.team/stops/Cdapige2", "https://tec.openplanner.team/stops/CMpige2"], ["https://tec.openplanner.team/stops/H1hw118a", "https://tec.openplanner.team/stops/H1so137b"], ["https://tec.openplanner.team/stops/LRRchen1", "https://tec.openplanner.team/stops/LRRroth2"], ["https://tec.openplanner.team/stops/LmYwall1", "https://tec.openplanner.team/stops/LsVhunn2"], ["https://tec.openplanner.team/stops/Llgbobu1", "https://tec.openplanner.team/stops/Lsnecco1"], ["https://tec.openplanner.team/stops/LMici091", "https://tec.openplanner.team/stops/LMipoti1"], ["https://tec.openplanner.team/stops/LaR1G--2", "https://tec.openplanner.team/stops/LaRkape1"], ["https://tec.openplanner.team/stops/LBAcarr1", "https://tec.openplanner.team/stops/LBAfort2"], ["https://tec.openplanner.team/stops/Lgdmaye2", "https://tec.openplanner.team/stops/LWetrib1"], ["https://tec.openplanner.team/stops/LkEbruc1", "https://tec.openplanner.team/stops/LkEsada1"], ["https://tec.openplanner.team/stops/NC14aaa", "https://tec.openplanner.team/stops/NC24afa"], ["https://tec.openplanner.team/stops/Lgrbell1", "https://tec.openplanner.team/stops/Lgrdemo1"], ["https://tec.openplanner.team/stops/N514aja", "https://tec.openplanner.team/stops/N514ajb"], ["https://tec.openplanner.team/stops/X982ana", "https://tec.openplanner.team/stops/X982byb"], ["https://tec.openplanner.team/stops/X858aeb", "https://tec.openplanner.team/stops/X858afb"], ["https://tec.openplanner.team/stops/Bbiepon2", "https://tec.openplanner.team/stops/Bboncgs1"], ["https://tec.openplanner.team/stops/Lseserv1", "https://tec.openplanner.team/stops/Lseserv4"], ["https://tec.openplanner.team/stops/H1eo103a", "https://tec.openplanner.team/stops/H1ju119b"], ["https://tec.openplanner.team/stops/LHUec--1", "https://tec.openplanner.team/stops/LHUec--2"], ["https://tec.openplanner.team/stops/LGecime2", "https://tec.openplanner.team/stops/LGegrun1"], ["https://tec.openplanner.team/stops/N501kwb", "https://tec.openplanner.team/stops/N501mra"], ["https://tec.openplanner.team/stops/Lfhhoul2", "https://tec.openplanner.team/stops/Lfhmarn1"], ["https://tec.openplanner.team/stops/Lmocail2", "https://tec.openplanner.team/stops/Lmochar2"], ["https://tec.openplanner.team/stops/X651ada", "https://tec.openplanner.team/stops/X651adb"], ["https://tec.openplanner.team/stops/H1bl101a", "https://tec.openplanner.team/stops/H1bl104c"], ["https://tec.openplanner.team/stops/X926adb", "https://tec.openplanner.team/stops/X945adb"], ["https://tec.openplanner.team/stops/LOTcloe1", "https://tec.openplanner.team/stops/LXhvina1"], ["https://tec.openplanner.team/stops/X717aeb", "https://tec.openplanner.team/stops/X717aia"], ["https://tec.openplanner.team/stops/N368aeb", "https://tec.openplanner.team/stops/N368afb"], ["https://tec.openplanner.team/stops/Bbghsta1", "https://tec.openplanner.team/stops/Bbghsta3"], ["https://tec.openplanner.team/stops/N532aba", "https://tec.openplanner.team/stops/N574agb"], ["https://tec.openplanner.team/stops/Bnivbpe2", "https://tec.openplanner.team/stops/Bnivplt2"], ["https://tec.openplanner.team/stops/Lpeathe*", "https://tec.openplanner.team/stops/Lpeeg--1"], ["https://tec.openplanner.team/stops/H1mx122a", "https://tec.openplanner.team/stops/H1mx123a"], ["https://tec.openplanner.team/stops/H4bf105b", "https://tec.openplanner.team/stops/H4bf109a"], ["https://tec.openplanner.team/stops/LHUchpl2", "https://tec.openplanner.team/stops/LHUdeni4"], ["https://tec.openplanner.team/stops/Bblacha1", "https://tec.openplanner.team/stops/Bblaelo1"], ["https://tec.openplanner.team/stops/Ljudeme3", "https://tec.openplanner.team/stops/Ljudeme4"], ["https://tec.openplanner.team/stops/LBdcarr2", "https://tec.openplanner.team/stops/LBdcime2"], ["https://tec.openplanner.team/stops/Bbiecoc2", "https://tec.openplanner.team/stops/Bbiehec1"], ["https://tec.openplanner.team/stops/H2hg153a", "https://tec.openplanner.team/stops/H2sv215b"], ["https://tec.openplanner.team/stops/H5qu143c", "https://tec.openplanner.team/stops/H5qu156d"], ["https://tec.openplanner.team/stops/H4ld127a", "https://tec.openplanner.team/stops/H4ld128b"], ["https://tec.openplanner.team/stops/Lanrois2", "https://tec.openplanner.team/stops/Lrcchar2"], ["https://tec.openplanner.team/stops/Cctecol2", "https://tec.openplanner.team/stops/Cctmine1"], ["https://tec.openplanner.team/stops/N135aeb", "https://tec.openplanner.team/stops/N135aec"], ["https://tec.openplanner.team/stops/N506aka", "https://tec.openplanner.team/stops/N506bxb"], ["https://tec.openplanner.team/stops/LFFchab2", "https://tec.openplanner.team/stops/LFFchal2"], ["https://tec.openplanner.team/stops/H1tl119a", "https://tec.openplanner.team/stops/H1tl119b"], ["https://tec.openplanner.team/stops/N509ada", "https://tec.openplanner.team/stops/N509adb"], ["https://tec.openplanner.team/stops/LrDhind1", "https://tec.openplanner.team/stops/LrDneun1"], ["https://tec.openplanner.team/stops/N524aba", "https://tec.openplanner.team/stops/N524amb"], ["https://tec.openplanner.team/stops/LRMn58-2", "https://tec.openplanner.team/stops/X599afd"], ["https://tec.openplanner.team/stops/N302aeb", "https://tec.openplanner.team/stops/N305aba"], ["https://tec.openplanner.team/stops/H3bi116b", "https://tec.openplanner.team/stops/H3bi117a"], ["https://tec.openplanner.team/stops/N201asb", "https://tec.openplanner.team/stops/N201ata"], ["https://tec.openplanner.team/stops/Bbgerlr1", "https://tec.openplanner.team/stops/Blmldmi2"], ["https://tec.openplanner.team/stops/LhUkape1", "https://tec.openplanner.team/stops/LhUrich2"], ["https://tec.openplanner.team/stops/X654ada", "https://tec.openplanner.team/stops/X654akb"], ["https://tec.openplanner.team/stops/X940aga", "https://tec.openplanner.team/stops/X940ahb"], ["https://tec.openplanner.team/stops/Clsstpi1", "https://tec.openplanner.team/stops/H1ls106a"], ["https://tec.openplanner.team/stops/H2sb231a", "https://tec.openplanner.team/stops/H2sb234b"], ["https://tec.openplanner.team/stops/LNCmada1", "https://tec.openplanner.team/stops/LNCsart1"], ["https://tec.openplanner.team/stops/LOVchen2", "https://tec.openplanner.team/stops/LOVeg--2"], ["https://tec.openplanner.team/stops/Bwaab121", "https://tec.openplanner.team/stops/LWHmath2"], ["https://tec.openplanner.team/stops/N531apa", "https://tec.openplanner.team/stops/N531apb"], ["https://tec.openplanner.team/stops/Ccpblpo2", "https://tec.openplanner.team/stops/Ccpbrun1"], ["https://tec.openplanner.team/stops/H4ty329b", "https://tec.openplanner.team/stops/H4ty336b"], ["https://tec.openplanner.team/stops/H1mr125b", "https://tec.openplanner.team/stops/H1mr126b"], ["https://tec.openplanner.team/stops/H4eq123b", "https://tec.openplanner.team/stops/H4ob124b"], ["https://tec.openplanner.team/stops/N120ala", "https://tec.openplanner.team/stops/N121ahb"], ["https://tec.openplanner.team/stops/X623ada", "https://tec.openplanner.team/stops/X623aeb"], ["https://tec.openplanner.team/stops/NL67aab", "https://tec.openplanner.team/stops/NL67aba"], ["https://tec.openplanner.team/stops/Cmocalv1", "https://tec.openplanner.team/stops/Cmocalv2"], ["https://tec.openplanner.team/stops/N106ana", "https://tec.openplanner.team/stops/N106ara"], ["https://tec.openplanner.team/stops/X542aab", "https://tec.openplanner.team/stops/X750bla"], ["https://tec.openplanner.team/stops/N528acb", "https://tec.openplanner.team/stops/N528ala"], ["https://tec.openplanner.team/stops/Lbobuil2", "https://tec.openplanner.team/stops/Lbotilf2"], ["https://tec.openplanner.team/stops/Landeja1", "https://tec.openplanner.team/stops/Lanegal1"], ["https://tec.openplanner.team/stops/LFCdree1", "https://tec.openplanner.team/stops/LFCdree2"], ["https://tec.openplanner.team/stops/X877aeb", "https://tec.openplanner.team/stops/X877aga"], ["https://tec.openplanner.team/stops/LFPkast1", "https://tec.openplanner.team/stops/LWRferm2"], ["https://tec.openplanner.team/stops/X999aea", "https://tec.openplanner.team/stops/X999aoa"], ["https://tec.openplanner.team/stops/Cfmtrie2", "https://tec.openplanner.team/stops/Cfoperz1"], ["https://tec.openplanner.team/stops/N343ajb", "https://tec.openplanner.team/stops/X345aba"], ["https://tec.openplanner.team/stops/H5qu152a", "https://tec.openplanner.team/stops/H5qu152b"], ["https://tec.openplanner.team/stops/N127bja", "https://tec.openplanner.team/stops/N134ahb"], ["https://tec.openplanner.team/stops/N509aoa", "https://tec.openplanner.team/stops/N509asa"], ["https://tec.openplanner.team/stops/X663awa", "https://tec.openplanner.team/stops/X663axb"], ["https://tec.openplanner.team/stops/H1qy131a", "https://tec.openplanner.team/stops/H1qy131b"], ["https://tec.openplanner.team/stops/H1le121b", "https://tec.openplanner.team/stops/H1le124a"], ["https://tec.openplanner.team/stops/X626aia", "https://tec.openplanner.team/stops/X626aja"], ["https://tec.openplanner.team/stops/X736abb", "https://tec.openplanner.team/stops/X736aca"], ["https://tec.openplanner.team/stops/Bsambra1", "https://tec.openplanner.team/stops/Bsamc7d1"], ["https://tec.openplanner.team/stops/N508aob", "https://tec.openplanner.team/stops/N509aea"], ["https://tec.openplanner.team/stops/H2ll186a", "https://tec.openplanner.team/stops/H2ll198a"], ["https://tec.openplanner.team/stops/Llgcime1", "https://tec.openplanner.team/stops/Llgcoti*"], ["https://tec.openplanner.team/stops/Blnzcar2", "https://tec.openplanner.team/stops/N576aca"], ["https://tec.openplanner.team/stops/X761aaa", "https://tec.openplanner.team/stops/X761aab"], ["https://tec.openplanner.team/stops/LaUn1--3", "https://tec.openplanner.team/stops/LsFcafe1"], ["https://tec.openplanner.team/stops/H3lr120a", "https://tec.openplanner.team/stops/H3lr121a"], ["https://tec.openplanner.team/stops/N117bdc", "https://tec.openplanner.team/stops/N145acb"], ["https://tec.openplanner.team/stops/H4ka187a", "https://tec.openplanner.team/stops/H4ka187b"], ["https://tec.openplanner.team/stops/LPLbiol2", "https://tec.openplanner.team/stops/LPLc65-2"], ["https://tec.openplanner.team/stops/LRmha261", "https://tec.openplanner.team/stops/LRmha262"], ["https://tec.openplanner.team/stops/X725aib", "https://tec.openplanner.team/stops/X727aab"], ["https://tec.openplanner.team/stops/X826acb", "https://tec.openplanner.team/stops/X826add"], ["https://tec.openplanner.team/stops/Cgomerm1", "https://tec.openplanner.team/stops/Cracime1"], ["https://tec.openplanner.team/stops/X801ayb", "https://tec.openplanner.team/stops/X801aza"], ["https://tec.openplanner.team/stops/LLSba9-1", "https://tec.openplanner.team/stops/LLSba9-2"], ["https://tec.openplanner.team/stops/Clrmarl1", "https://tec.openplanner.team/stops/Clrmarl2"], ["https://tec.openplanner.team/stops/X739aca", "https://tec.openplanner.team/stops/X739acb"], ["https://tec.openplanner.team/stops/H1hh111a", "https://tec.openplanner.team/stops/H1hh111b"], ["https://tec.openplanner.team/stops/N501bzb", "https://tec.openplanner.team/stops/N501cab"], ["https://tec.openplanner.team/stops/N141ada", "https://tec.openplanner.team/stops/N141adb"], ["https://tec.openplanner.team/stops/LHTcarr2", "https://tec.openplanner.team/stops/LHTcerc4"], ["https://tec.openplanner.team/stops/H1bl103a", "https://tec.openplanner.team/stops/H1pd142a"], ["https://tec.openplanner.team/stops/X902aba", "https://tec.openplanner.team/stops/X902bcb"], ["https://tec.openplanner.team/stops/X609ada", "https://tec.openplanner.team/stops/X609aea"], ["https://tec.openplanner.team/stops/Bbldgar1", "https://tec.openplanner.team/stops/Bnetegl2"], ["https://tec.openplanner.team/stops/X741alb", "https://tec.openplanner.team/stops/X758akb"], ["https://tec.openplanner.team/stops/H1em106a", "https://tec.openplanner.team/stops/H1fa121a"], ["https://tec.openplanner.team/stops/H4ld123b", "https://tec.openplanner.team/stops/H4ld126b"], ["https://tec.openplanner.team/stops/X641akb", "https://tec.openplanner.team/stops/X641axa"], ["https://tec.openplanner.team/stops/H1fr115a", "https://tec.openplanner.team/stops/H1fr117a"], ["https://tec.openplanner.team/stops/Cmycime1", "https://tec.openplanner.team/stops/Cmyland4"], ["https://tec.openplanner.team/stops/Bhoemel2", "https://tec.openplanner.team/stops/Blhuibm2"], ["https://tec.openplanner.team/stops/LVLbovy2", "https://tec.openplanner.team/stops/LVLmabi2"], ["https://tec.openplanner.team/stops/N501cfc", "https://tec.openplanner.team/stops/N501mpa"], ["https://tec.openplanner.team/stops/H4oe150b", "https://tec.openplanner.team/stops/H4oe151a"], ["https://tec.openplanner.team/stops/X926adb", "https://tec.openplanner.team/stops/X928aaa"], ["https://tec.openplanner.team/stops/N147aab", "https://tec.openplanner.team/stops/N147aba"], ["https://tec.openplanner.team/stops/X806aea", "https://tec.openplanner.team/stops/X806afb"], ["https://tec.openplanner.team/stops/LSGbail1", "https://tec.openplanner.team/stops/LSGcent2"], ["https://tec.openplanner.team/stops/X876acb", "https://tec.openplanner.team/stops/X876aea"], ["https://tec.openplanner.team/stops/H1el133b", "https://tec.openplanner.team/stops/H1el140b"], ["https://tec.openplanner.team/stops/X364aaa", "https://tec.openplanner.team/stops/X371ajb"], ["https://tec.openplanner.team/stops/X921ajb", "https://tec.openplanner.team/stops/X921aka"], ["https://tec.openplanner.team/stops/H4ru241b", "https://tec.openplanner.team/stops/H4ty311b"], ["https://tec.openplanner.team/stops/LWAhart1", "https://tec.openplanner.team/stops/LWAperv1"], ["https://tec.openplanner.team/stops/H4la196b", "https://tec.openplanner.team/stops/H4la199a"], ["https://tec.openplanner.team/stops/H4ce104b", "https://tec.openplanner.team/stops/H4ve132a"], ["https://tec.openplanner.team/stops/H1ms247a", "https://tec.openplanner.team/stops/H1ms935a"], ["https://tec.openplanner.team/stops/Btubind1", "https://tec.openplanner.team/stops/Btubind2"], ["https://tec.openplanner.team/stops/LrDrose3", "https://tec.openplanner.team/stops/LrDrose4"], ["https://tec.openplanner.team/stops/H4hg160b", "https://tec.openplanner.team/stops/H4mv189a"], ["https://tec.openplanner.team/stops/Bfelfde1", "https://tec.openplanner.team/stops/Broncan2"], ["https://tec.openplanner.team/stops/LSpbawe1", "https://tec.openplanner.team/stops/LSpbawe2"], ["https://tec.openplanner.team/stops/LDAcite1", "https://tec.openplanner.team/stops/LRIcite1"], ["https://tec.openplanner.team/stops/X761abb", "https://tec.openplanner.team/stops/X790aib"], ["https://tec.openplanner.team/stops/LSChane2", "https://tec.openplanner.team/stops/LVMchpl2"], ["https://tec.openplanner.team/stops/Cvtmaro1", "https://tec.openplanner.team/stops/Cvtmaro2"], ["https://tec.openplanner.team/stops/LPoewer1", "https://tec.openplanner.team/stops/LPoewer2"], ["https://tec.openplanner.team/stops/H1mv238b", "https://tec.openplanner.team/stops/H1mv240a"], ["https://tec.openplanner.team/stops/X390ala", "https://tec.openplanner.team/stops/X390alb"], ["https://tec.openplanner.team/stops/Bblamsp1", "https://tec.openplanner.team/stops/Bblamsp2"], ["https://tec.openplanner.team/stops/N501ata", "https://tec.openplanner.team/stops/N501atb"], ["https://tec.openplanner.team/stops/Ctupont1", "https://tec.openplanner.team/stops/Ctupont4"], ["https://tec.openplanner.team/stops/LmR50--2", "https://tec.openplanner.team/stops/LmR90--2"], ["https://tec.openplanner.team/stops/X812ajb", "https://tec.openplanner.team/stops/X812beb"], ["https://tec.openplanner.team/stops/Cmmramb1", "https://tec.openplanner.team/stops/Cmysncb1"], ["https://tec.openplanner.team/stops/N116acb", "https://tec.openplanner.team/stops/N151ajf"], ["https://tec.openplanner.team/stops/N501csb", "https://tec.openplanner.team/stops/N501cua"], ["https://tec.openplanner.team/stops/Livcoll1", "https://tec.openplanner.team/stops/Livmoul2"], ["https://tec.openplanner.team/stops/X802ana", "https://tec.openplanner.team/stops/X802aya"], ["https://tec.openplanner.team/stops/X786acb", "https://tec.openplanner.team/stops/X786adb"], ["https://tec.openplanner.team/stops/LETec--2", "https://tec.openplanner.team/stops/LMIcamp2"], ["https://tec.openplanner.team/stops/H4hx110a", "https://tec.openplanner.team/stops/H4hx117a"], ["https://tec.openplanner.team/stops/X669afb", "https://tec.openplanner.team/stops/X669aha"], ["https://tec.openplanner.team/stops/LBThaut2", "https://tec.openplanner.team/stops/Lprmana1"], ["https://tec.openplanner.team/stops/LArmaro1", "https://tec.openplanner.team/stops/X548afb"], ["https://tec.openplanner.team/stops/H5wo127b", "https://tec.openplanner.team/stops/H5wo129a"], ["https://tec.openplanner.team/stops/H1al107a", "https://tec.openplanner.team/stops/H1al146a"], ["https://tec.openplanner.team/stops/Cpcegli1", "https://tec.openplanner.team/stops/Cpcha431"], ["https://tec.openplanner.team/stops/Ckevela1", "https://tec.openplanner.team/stops/Cvstouv1"], ["https://tec.openplanner.team/stops/X801bka", "https://tec.openplanner.team/stops/X801ceb"], ["https://tec.openplanner.team/stops/Llgplop1", "https://tec.openplanner.team/stops/Lvtchpl2"], ["https://tec.openplanner.team/stops/X654aga", "https://tec.openplanner.team/stops/X654alb"], ["https://tec.openplanner.team/stops/Ctrleju2", "https://tec.openplanner.team/stops/Ctrpn1"], ["https://tec.openplanner.team/stops/LLaover3", "https://tec.openplanner.team/stops/LLasta-*"], ["https://tec.openplanner.team/stops/H2ep144b", "https://tec.openplanner.team/stops/H2re175a"], ["https://tec.openplanner.team/stops/H4ry133b", "https://tec.openplanner.team/stops/H4ry140a"], ["https://tec.openplanner.team/stops/NB33ahb", "https://tec.openplanner.team/stops/NB33aib"], ["https://tec.openplanner.team/stops/H1ry135c", "https://tec.openplanner.team/stops/H1ry137b"], ["https://tec.openplanner.team/stops/H2ma208b", "https://tec.openplanner.team/stops/H2sb231b"], ["https://tec.openplanner.team/stops/X804aib", "https://tec.openplanner.team/stops/X804aka"], ["https://tec.openplanner.team/stops/Bjancha1", "https://tec.openplanner.team/stops/Bjancha2"], ["https://tec.openplanner.team/stops/X749aaa", "https://tec.openplanner.team/stops/X749aca"], ["https://tec.openplanner.team/stops/LHuherm2", "https://tec.openplanner.team/stops/LMHcant2"], ["https://tec.openplanner.team/stops/LAYdieu2", "https://tec.openplanner.team/stops/LFLcher2"], ["https://tec.openplanner.team/stops/Ljeegli3", "https://tec.openplanner.team/stops/Ljelexh1"], ["https://tec.openplanner.team/stops/N574aaa", "https://tec.openplanner.team/stops/N574abb"], ["https://tec.openplanner.team/stops/LFocent2", "https://tec.openplanner.team/stops/LFochap1"], ["https://tec.openplanner.team/stops/Bjdscnd2", "https://tec.openplanner.team/stops/Bjodmal2"], ["https://tec.openplanner.team/stops/H1vt192b", "https://tec.openplanner.team/stops/H1vt193a"], ["https://tec.openplanner.team/stops/H4eg104a", "https://tec.openplanner.team/stops/H4eg104b"], ["https://tec.openplanner.team/stops/LNCchau2", "https://tec.openplanner.team/stops/LNCmoul1"], ["https://tec.openplanner.team/stops/H1br120a", "https://tec.openplanner.team/stops/H1br120b"], ["https://tec.openplanner.team/stops/X922aga", "https://tec.openplanner.team/stops/X922aia"], ["https://tec.openplanner.team/stops/Cgyblob2", "https://tec.openplanner.team/stops/Cgyplvi2"], ["https://tec.openplanner.team/stops/N544agb", "https://tec.openplanner.team/stops/N547ala"], ["https://tec.openplanner.team/stops/LBLgobc1", "https://tec.openplanner.team/stops/LMotrem1"], ["https://tec.openplanner.team/stops/Cjualed1", "https://tec.openplanner.team/stops/Cjubrul4"], ["https://tec.openplanner.team/stops/LOUvign1", "https://tec.openplanner.team/stops/Lvieg--2"], ["https://tec.openplanner.team/stops/Cmgtour2", "https://tec.openplanner.team/stops/Csecroi2"], ["https://tec.openplanner.team/stops/H1mb130b", "https://tec.openplanner.team/stops/H1mx123b"], ["https://tec.openplanner.team/stops/N423aca", "https://tec.openplanner.team/stops/N423aeb"], ["https://tec.openplanner.team/stops/X601aia", "https://tec.openplanner.team/stops/X601ama"], ["https://tec.openplanner.team/stops/N423afb", "https://tec.openplanner.team/stops/NH21aha"], ["https://tec.openplanner.team/stops/Beclpma1", "https://tec.openplanner.team/stops/Beclpma2"], ["https://tec.openplanner.team/stops/Lvicitw1", "https://tec.openplanner.team/stops/Lvicitw2"], ["https://tec.openplanner.team/stops/N139aab", "https://tec.openplanner.team/stops/N139adb"], ["https://tec.openplanner.team/stops/H4ga161a", "https://tec.openplanner.team/stops/H4ga161d"], ["https://tec.openplanner.team/stops/Bettgar1", "https://tec.openplanner.team/stops/Bixlozo1"], ["https://tec.openplanner.team/stops/NL76apb", "https://tec.openplanner.team/stops/NL80avb"], ["https://tec.openplanner.team/stops/Bpieh172", "https://tec.openplanner.team/stops/Bpiehvi2"], ["https://tec.openplanner.team/stops/N301abd", "https://tec.openplanner.team/stops/N301apa"], ["https://tec.openplanner.team/stops/X822aeb", "https://tec.openplanner.team/stops/X822aka"], ["https://tec.openplanner.team/stops/N141aia", "https://tec.openplanner.team/stops/N141anb"], ["https://tec.openplanner.team/stops/LGLchap3", "https://tec.openplanner.team/stops/LGLobor1"], ["https://tec.openplanner.team/stops/Cjubert1", "https://tec.openplanner.team/stops/Cjudelv4"], ["https://tec.openplanner.team/stops/X806aha", "https://tec.openplanner.team/stops/X873aba"], ["https://tec.openplanner.team/stops/LOljean1", "https://tec.openplanner.team/stops/LVTforg1"], ["https://tec.openplanner.team/stops/H4ta122b", "https://tec.openplanner.team/stops/H4ta131b"], ["https://tec.openplanner.team/stops/Bettlha2", "https://tec.openplanner.team/stops/Bixleix1"], ["https://tec.openplanner.team/stops/X888adb", "https://tec.openplanner.team/stops/X897afa"], ["https://tec.openplanner.team/stops/H1hr120a", "https://tec.openplanner.team/stops/H1hr129a"], ["https://tec.openplanner.team/stops/Ccucora2", "https://tec.openplanner.team/stops/Cmtproc2"], ["https://tec.openplanner.team/stops/X982aia", "https://tec.openplanner.team/stops/X982aib"], ["https://tec.openplanner.team/stops/N501iba", "https://tec.openplanner.team/stops/N501ijb"], ["https://tec.openplanner.team/stops/Lvefran1", "https://tec.openplanner.team/stops/Lvethea2"], ["https://tec.openplanner.team/stops/N149aga", "https://tec.openplanner.team/stops/N154ada"], ["https://tec.openplanner.team/stops/N534bwa", "https://tec.openplanner.team/stops/N534bxb"], ["https://tec.openplanner.team/stops/X646ada", "https://tec.openplanner.team/stops/X823agb"], ["https://tec.openplanner.team/stops/Lgrchar1", "https://tec.openplanner.team/stops/Lgrcoll1"], ["https://tec.openplanner.team/stops/LDmdegi2", "https://tec.openplanner.team/stops/LDmeg--2"], ["https://tec.openplanner.team/stops/N153ada", "https://tec.openplanner.team/stops/N154aaa"], ["https://tec.openplanner.team/stops/Cmbborn2", "https://tec.openplanner.team/stops/Cmbcime3"], ["https://tec.openplanner.team/stops/N534bba", "https://tec.openplanner.team/stops/N534bbb"], ["https://tec.openplanner.team/stops/Bottcli1", "https://tec.openplanner.team/stops/Bottra91"], ["https://tec.openplanner.team/stops/Blmlcle2", "https://tec.openplanner.team/stops/Blmlmco1"], ["https://tec.openplanner.team/stops/H1je367a", "https://tec.openplanner.team/stops/H1je368a"], ["https://tec.openplanner.team/stops/N508aca", "https://tec.openplanner.team/stops/N516aqa"], ["https://tec.openplanner.team/stops/N531aja", "https://tec.openplanner.team/stops/N534blh"], ["https://tec.openplanner.team/stops/X640aka", "https://tec.openplanner.team/stops/X640ala"], ["https://tec.openplanner.team/stops/Cmtcapi2", "https://tec.openplanner.team/stops/Cmtplac8"], ["https://tec.openplanner.team/stops/X715adb", "https://tec.openplanner.team/stops/X715aqb"], ["https://tec.openplanner.team/stops/Llgrome1", "https://tec.openplanner.team/stops/Llgtill2"], ["https://tec.openplanner.team/stops/LHdkenn2", "https://tec.openplanner.team/stops/LVtvalu1"], ["https://tec.openplanner.team/stops/N542ada", "https://tec.openplanner.team/stops/N577afb"], ["https://tec.openplanner.team/stops/LSpogne2", "https://tec.openplanner.team/stops/LSpvanr2"], ["https://tec.openplanner.team/stops/H4ef109b", "https://tec.openplanner.team/stops/H4ef110a"], ["https://tec.openplanner.team/stops/Cchba01", "https://tec.openplanner.team/stops/Cchmonu3"], ["https://tec.openplanner.team/stops/X636bba", "https://tec.openplanner.team/stops/X636beb"], ["https://tec.openplanner.team/stops/X618acb", "https://tec.openplanner.team/stops/X618adb"], ["https://tec.openplanner.team/stops/LRfbeau2", "https://tec.openplanner.team/stops/LRffroi2"], ["https://tec.openplanner.team/stops/X882aaa", "https://tec.openplanner.team/stops/X898aeb"], ["https://tec.openplanner.team/stops/Ccuhsti2", "https://tec.openplanner.team/stops/Cpllimi5"], ["https://tec.openplanner.team/stops/Bcseaba1", "https://tec.openplanner.team/stops/Bottvtc1"], ["https://tec.openplanner.team/stops/LWAbeec1", "https://tec.openplanner.team/stops/LWAwila1"], ["https://tec.openplanner.team/stops/H2tr252a", "https://tec.openplanner.team/stops/H2tr252b"], ["https://tec.openplanner.team/stops/Cbicamp1", "https://tec.openplanner.team/stops/Cbiseur1"], ["https://tec.openplanner.team/stops/X618ajb", "https://tec.openplanner.team/stops/X618akb"], ["https://tec.openplanner.team/stops/X789acb", "https://tec.openplanner.team/stops/X789ada"], ["https://tec.openplanner.team/stops/Llgmass1", "https://tec.openplanner.team/stops/Llgmass2"], ["https://tec.openplanner.team/stops/N120anb", "https://tec.openplanner.team/stops/N248abb"], ["https://tec.openplanner.team/stops/LrDsage1", "https://tec.openplanner.team/stops/LrDsage2"], ["https://tec.openplanner.team/stops/Bjaupro1", "https://tec.openplanner.team/stops/Bjaurgo2"], ["https://tec.openplanner.team/stops/X615axa", "https://tec.openplanner.team/stops/X615axb"], ["https://tec.openplanner.team/stops/Ljufler2", "https://tec.openplanner.team/stops/Ljuroch1"], ["https://tec.openplanner.team/stops/Lvcbasi*", "https://tec.openplanner.team/stops/Lvcsapi2"], ["https://tec.openplanner.team/stops/X607agb", "https://tec.openplanner.team/stops/X607aka"], ["https://tec.openplanner.team/stops/Bplnbal1", "https://tec.openplanner.team/stops/Clpalli1"], ["https://tec.openplanner.team/stops/LSJgrae1", "https://tec.openplanner.team/stops/LWRferm2"], ["https://tec.openplanner.team/stops/LCxc6191", "https://tec.openplanner.team/stops/LCxc6192"], ["https://tec.openplanner.team/stops/H4ft134b", "https://tec.openplanner.team/stops/H4ta118a"], ["https://tec.openplanner.team/stops/LJedonc1", "https://tec.openplanner.team/stops/LJedonc3"], ["https://tec.openplanner.team/stops/H2hp121a", "https://tec.openplanner.team/stops/H2hp121b"], ["https://tec.openplanner.team/stops/LSsmond2", "https://tec.openplanner.team/stops/LSssurl1"], ["https://tec.openplanner.team/stops/LETeg--1", "https://tec.openplanner.team/stops/LETtemp1"], ["https://tec.openplanner.team/stops/H1wi152c", "https://tec.openplanner.team/stops/H1wi157b"], ["https://tec.openplanner.team/stops/Cjumarc1", "https://tec.openplanner.team/stops/Cjumarc2"], ["https://tec.openplanner.team/stops/N501fab", "https://tec.openplanner.team/stops/N501mrb"], ["https://tec.openplanner.team/stops/Cmahotv1", "https://tec.openplanner.team/stops/Cmazsnc2"], ["https://tec.openplanner.team/stops/N116aea", "https://tec.openplanner.team/stops/N118avb"], ["https://tec.openplanner.team/stops/LsHthom1", "https://tec.openplanner.team/stops/LsHthom2"], ["https://tec.openplanner.team/stops/Bwatprp1", "https://tec.openplanner.team/stops/Bwatprp2"], ["https://tec.openplanner.team/stops/N576aab", "https://tec.openplanner.team/stops/N576agb"], ["https://tec.openplanner.team/stops/Lfhtrca2", "https://tec.openplanner.team/stops/Lfhtrxc*"], ["https://tec.openplanner.team/stops/NH01aeb", "https://tec.openplanner.team/stops/NH01akb"], ["https://tec.openplanner.team/stops/LRR2egl1", "https://tec.openplanner.team/stops/LRRelec2"], ["https://tec.openplanner.team/stops/X667aea", "https://tec.openplanner.team/stops/X667aeb"], ["https://tec.openplanner.team/stops/H1er106a", "https://tec.openplanner.team/stops/H1er107a"], ["https://tec.openplanner.team/stops/X991agb", "https://tec.openplanner.team/stops/X991aha"], ["https://tec.openplanner.team/stops/LAmab752", "https://tec.openplanner.team/stops/LAmeclu1"], ["https://tec.openplanner.team/stops/Bllnfla2", "https://tec.openplanner.team/stops/Bwavtas3"], ["https://tec.openplanner.team/stops/Bblager1", "https://tec.openplanner.team/stops/Bblaniv1"], ["https://tec.openplanner.team/stops/Bbchcbl2", "https://tec.openplanner.team/stops/Bbchndb1"], ["https://tec.openplanner.team/stops/X620aaa", "https://tec.openplanner.team/stops/X620aga"], ["https://tec.openplanner.team/stops/LSPastr1", "https://tec.openplanner.team/stops/LSProya2"], ["https://tec.openplanner.team/stops/Bhevgro1", "https://tec.openplanner.team/stops/Bleunaa2"], ["https://tec.openplanner.team/stops/LWAalou1", "https://tec.openplanner.team/stops/LWAalou2"], ["https://tec.openplanner.team/stops/H4ce101b", "https://tec.openplanner.team/stops/H4ce104a"], ["https://tec.openplanner.team/stops/X657aja", "https://tec.openplanner.team/stops/X657ajb"], ["https://tec.openplanner.team/stops/LWHwaas1", "https://tec.openplanner.team/stops/LWscona2"], ["https://tec.openplanner.team/stops/N513bha", "https://tec.openplanner.team/stops/N513bhb"], ["https://tec.openplanner.team/stops/N554aea", "https://tec.openplanner.team/stops/N566aea"], ["https://tec.openplanner.team/stops/X802afa", "https://tec.openplanner.team/stops/X802ahb"], ["https://tec.openplanner.team/stops/X908aha", "https://tec.openplanner.team/stops/X910aab"], ["https://tec.openplanner.team/stops/LFfeg--1", "https://tec.openplanner.team/stops/Lmaelhe1"], ["https://tec.openplanner.team/stops/X796aha", "https://tec.openplanner.team/stops/X796aib"], ["https://tec.openplanner.team/stops/LrEkreu2", "https://tec.openplanner.team/stops/LrErauw2"], ["https://tec.openplanner.team/stops/N230aib", "https://tec.openplanner.team/stops/N242agb"], ["https://tec.openplanner.team/stops/X921apa", "https://tec.openplanner.team/stops/X921aqb"], ["https://tec.openplanner.team/stops/H1hw125b", "https://tec.openplanner.team/stops/H1so139d"], ["https://tec.openplanner.team/stops/LLrbano2", "https://tec.openplanner.team/stops/LLrbuis1"], ["https://tec.openplanner.team/stops/LPRmc--3", "https://tec.openplanner.team/stops/LPRmc--4"], ["https://tec.openplanner.team/stops/Cgomerm4", "https://tec.openplanner.team/stops/Craplac3"], ["https://tec.openplanner.team/stops/H2sb227b", "https://tec.openplanner.team/stops/H2sb259a"], ["https://tec.openplanner.team/stops/X650afc", "https://tec.openplanner.team/stops/X650aha"], ["https://tec.openplanner.team/stops/N548aha", "https://tec.openplanner.team/stops/N548aia"], ["https://tec.openplanner.team/stops/N521aoa", "https://tec.openplanner.team/stops/N521apa"], ["https://tec.openplanner.team/stops/Bkrawil1", "https://tec.openplanner.team/stops/Bleunaa1"], ["https://tec.openplanner.team/stops/Lhrlalo1", "https://tec.openplanner.team/stops/Lhrlamb1"], ["https://tec.openplanner.team/stops/X888abb", "https://tec.openplanner.team/stops/X899aaa"], ["https://tec.openplanner.team/stops/Lkiecol1", "https://tec.openplanner.team/stops/Llgtill2"], ["https://tec.openplanner.team/stops/LHNhall3", "https://tec.openplanner.team/stops/LHNwaut2"], ["https://tec.openplanner.team/stops/X804afa", "https://tec.openplanner.team/stops/X804bfb"], ["https://tec.openplanner.team/stops/N501ica", "https://tec.openplanner.team/stops/N501ipa"], ["https://tec.openplanner.team/stops/X626aha", "https://tec.openplanner.team/stops/X626aib"], ["https://tec.openplanner.team/stops/LhEtivo2", "https://tec.openplanner.team/stops/LlNbusc2"], ["https://tec.openplanner.team/stops/N539asb", "https://tec.openplanner.team/stops/N539beb"], ["https://tec.openplanner.team/stops/Bmrlsau2", "https://tec.openplanner.team/stops/Bpieh172"], ["https://tec.openplanner.team/stops/LLt43--2", "https://tec.openplanner.team/stops/LVsboug2"], ["https://tec.openplanner.team/stops/H1eu102a", "https://tec.openplanner.team/stops/H1pa106b"], ["https://tec.openplanner.team/stops/H4ka182b", "https://tec.openplanner.team/stops/H4ka195a"], ["https://tec.openplanner.team/stops/N520acb", "https://tec.openplanner.team/stops/N520adb"], ["https://tec.openplanner.team/stops/LOucarr1", "https://tec.openplanner.team/stops/LOucarr3"], ["https://tec.openplanner.team/stops/H1ev113a", "https://tec.openplanner.team/stops/H1ev116a"], ["https://tec.openplanner.team/stops/N536aob", "https://tec.openplanner.team/stops/N562aob"], ["https://tec.openplanner.team/stops/Clddeve2", "https://tec.openplanner.team/stops/Cldvign2"], ["https://tec.openplanner.team/stops/LmNbirt1", "https://tec.openplanner.team/stops/LmNkirc1"], ["https://tec.openplanner.team/stops/H4av100b", "https://tec.openplanner.team/stops/H4av107a"], ["https://tec.openplanner.team/stops/Bhmmcim1", "https://tec.openplanner.team/stops/Bhmmmon2"], ["https://tec.openplanner.team/stops/H4co108a", "https://tec.openplanner.team/stops/H4co146a"], ["https://tec.openplanner.team/stops/Lwapont1", "https://tec.openplanner.team/stops/Lwapont2"], ["https://tec.openplanner.team/stops/Lsecast1", "https://tec.openplanner.team/stops/Lsehtsa1"], ["https://tec.openplanner.team/stops/X741aea", "https://tec.openplanner.team/stops/X741afb"], ["https://tec.openplanner.team/stops/X351aca", "https://tec.openplanner.team/stops/X351acb"], ["https://tec.openplanner.team/stops/Bblaast2", "https://tec.openplanner.team/stops/Bblagar5"], ["https://tec.openplanner.team/stops/LLYcham1", "https://tec.openplanner.team/stops/LLYcham2"], ["https://tec.openplanner.team/stops/Bgermco1", "https://tec.openplanner.team/stops/NB33afa"], ["https://tec.openplanner.team/stops/Lmolama1", "https://tec.openplanner.team/stops/Lmovand4"], ["https://tec.openplanner.team/stops/LJAhanq1", "https://tec.openplanner.team/stops/LJAhanq3"], ["https://tec.openplanner.team/stops/N311afa", "https://tec.openplanner.team/stops/N311afb"], ["https://tec.openplanner.team/stops/N563aoa", "https://tec.openplanner.team/stops/N570acb"], ["https://tec.openplanner.team/stops/LBKmoes2", "https://tec.openplanner.team/stops/LBvviem3"], ["https://tec.openplanner.team/stops/Bnivath1", "https://tec.openplanner.team/stops/Bnivver2"], ["https://tec.openplanner.team/stops/N501eea", "https://tec.openplanner.team/stops/N501evb"], ["https://tec.openplanner.team/stops/Cmyoasi2", "https://tec.openplanner.team/stops/Cmyvesa2"], ["https://tec.openplanner.team/stops/Canrtth1", "https://tec.openplanner.team/stops/Cfosurs1"], ["https://tec.openplanner.team/stops/N218aea", "https://tec.openplanner.team/stops/N245acb"], ["https://tec.openplanner.team/stops/Cfocmed1", "https://tec.openplanner.team/stops/Cfocorn1"], ["https://tec.openplanner.team/stops/LVnourt3", "https://tec.openplanner.team/stops/LVnrock2"], ["https://tec.openplanner.team/stops/LOeelbe1", "https://tec.openplanner.team/stops/LOewaut1"], ["https://tec.openplanner.team/stops/X825aab", "https://tec.openplanner.team/stops/X825aba"], ["https://tec.openplanner.team/stops/H4og208b", "https://tec.openplanner.team/stops/H4og214b"], ["https://tec.openplanner.team/stops/Cmtcapi1", "https://tec.openplanner.team/stops/Cmtcapi2"], ["https://tec.openplanner.team/stops/Caiegli1", "https://tec.openplanner.team/stops/N554aab"], ["https://tec.openplanner.team/stops/Lcehipp1", "https://tec.openplanner.team/stops/Lcemeta1"], ["https://tec.openplanner.team/stops/LFTec--3", "https://tec.openplanner.team/stops/LTNsarl1"], ["https://tec.openplanner.team/stops/N501aca", "https://tec.openplanner.team/stops/N501aea"], ["https://tec.openplanner.team/stops/N538aba", "https://tec.openplanner.team/stops/N538abb"], ["https://tec.openplanner.team/stops/N519arb", "https://tec.openplanner.team/stops/N519asb"], ["https://tec.openplanner.team/stops/H2mo117a", "https://tec.openplanner.team/stops/H2mo117b"], ["https://tec.openplanner.team/stops/X941afa", "https://tec.openplanner.team/stops/X949ala"], ["https://tec.openplanner.team/stops/Bhengri2", "https://tec.openplanner.team/stops/Bvirpla1"], ["https://tec.openplanner.team/stops/NC24afa", "https://tec.openplanner.team/stops/NC24aga"], ["https://tec.openplanner.team/stops/Cmcegli1", "https://tec.openplanner.team/stops/Cmcegli2"], ["https://tec.openplanner.team/stops/Llgcong2", "https://tec.openplanner.team/stops/Llgfred1"], ["https://tec.openplanner.team/stops/X945aea", "https://tec.openplanner.team/stops/X948aba"], ["https://tec.openplanner.team/stops/LCsbors2", "https://tec.openplanner.team/stops/LCsgend2"], ["https://tec.openplanner.team/stops/X754ada", "https://tec.openplanner.team/stops/X754aob"], ["https://tec.openplanner.team/stops/X615aza", "https://tec.openplanner.team/stops/X616aja"], ["https://tec.openplanner.team/stops/Csoperi1", "https://tec.openplanner.team/stops/Csoplac2"], ["https://tec.openplanner.team/stops/H1mk107a", "https://tec.openplanner.team/stops/H1mk112a"], ["https://tec.openplanner.team/stops/N385aba", "https://tec.openplanner.team/stops/N385abb"], ["https://tec.openplanner.team/stops/Cradado2", "https://tec.openplanner.team/stops/Crajasm4"], ["https://tec.openplanner.team/stops/LAyegli2", "https://tec.openplanner.team/stops/LSOtheu1"], ["https://tec.openplanner.team/stops/Cchsud03", "https://tec.openplanner.team/stops/Cmlvpla1"], ["https://tec.openplanner.team/stops/LHFec--1", "https://tec.openplanner.team/stops/LJedonc1"], ["https://tec.openplanner.team/stops/N137aba", "https://tec.openplanner.team/stops/N137acb"], ["https://tec.openplanner.team/stops/H2ma209a", "https://tec.openplanner.team/stops/H2ma210a"], ["https://tec.openplanner.team/stops/Blinbru2", "https://tec.openplanner.team/stops/Blindel3"], ["https://tec.openplanner.team/stops/H1go169a", "https://tec.openplanner.team/stops/H1mb137b"], ["https://tec.openplanner.team/stops/LRRecdu1", "https://tec.openplanner.team/stops/LRReg--1"], ["https://tec.openplanner.team/stops/LBIfore1", "https://tec.openplanner.team/stops/Lghfore1"], ["https://tec.openplanner.team/stops/X718aba", "https://tec.openplanner.team/stops/X718abb"], ["https://tec.openplanner.team/stops/X641afc", "https://tec.openplanner.team/stops/X641aoa"], ["https://tec.openplanner.team/stops/Btubegy2", "https://tec.openplanner.team/stops/Btubpir2"], ["https://tec.openplanner.team/stops/Cgzlera2", "https://tec.openplanner.team/stops/Cmyecur2"], ["https://tec.openplanner.team/stops/N534bma", "https://tec.openplanner.team/stops/N534bra"], ["https://tec.openplanner.team/stops/H1gr113b", "https://tec.openplanner.team/stops/H1hr126a"], ["https://tec.openplanner.team/stops/Lgrlimi3", "https://tec.openplanner.team/stops/Llgmulh2"], ["https://tec.openplanner.team/stops/N117baa", "https://tec.openplanner.team/stops/N147adb"], ["https://tec.openplanner.team/stops/X902afc", "https://tec.openplanner.team/stops/X902bca"], ["https://tec.openplanner.team/stops/Cctpass2", "https://tec.openplanner.team/stops/Cctvict1"], ["https://tec.openplanner.team/stops/Bwatfva2", "https://tec.openplanner.team/stops/Bwatprp1"], ["https://tec.openplanner.team/stops/LBKmare2", "https://tec.openplanner.team/stops/LPUlecl1"], ["https://tec.openplanner.team/stops/Bezebru2", "https://tec.openplanner.team/stops/Blanath1"], ["https://tec.openplanner.team/stops/Bvxgegl1", "https://tec.openplanner.team/stops/Bvxgegl2"], ["https://tec.openplanner.team/stops/X626agb", "https://tec.openplanner.team/stops/X688abb"], ["https://tec.openplanner.team/stops/LMYroin1", "https://tec.openplanner.team/stops/LMYroin2"], ["https://tec.openplanner.team/stops/Csyjumo1", "https://tec.openplanner.team/stops/Csystan1"], ["https://tec.openplanner.team/stops/X758aka", "https://tec.openplanner.team/stops/X758akb"], ["https://tec.openplanner.team/stops/X641ama", "https://tec.openplanner.team/stops/X673aaa"], ["https://tec.openplanner.team/stops/Lhelait2", "https://tec.openplanner.team/stops/Lheneuv1"], ["https://tec.openplanner.team/stops/LGlwarf1", "https://tec.openplanner.team/stops/LSBsere1"], ["https://tec.openplanner.team/stops/LmDdenk2", "https://tec.openplanner.team/stops/LwLkirc1"], ["https://tec.openplanner.team/stops/X850adb", "https://tec.openplanner.team/stops/X850alb"], ["https://tec.openplanner.team/stops/LCPcomp1", "https://tec.openplanner.team/stops/LGmcite1"], ["https://tec.openplanner.team/stops/LHhchau1", "https://tec.openplanner.team/stops/LHhchau2"], ["https://tec.openplanner.team/stops/LPRfond2", "https://tec.openplanner.team/stops/LPRpeti2"], ["https://tec.openplanner.team/stops/LRReg--1", "https://tec.openplanner.team/stops/LRRpost2"], ["https://tec.openplanner.team/stops/H4og214a", "https://tec.openplanner.team/stops/H4og215b"], ["https://tec.openplanner.team/stops/Barqpwa1", "https://tec.openplanner.team/stops/Barqres2"], ["https://tec.openplanner.team/stops/H1je218b", "https://tec.openplanner.team/stops/H1ms930a"], ["https://tec.openplanner.team/stops/H1on128b", "https://tec.openplanner.team/stops/H1on129a"], ["https://tec.openplanner.team/stops/N550abe", "https://tec.openplanner.team/stops/N550aca"], ["https://tec.openplanner.team/stops/Bbsihau1", "https://tec.openplanner.team/stops/Bbsihau2"], ["https://tec.openplanner.team/stops/LAyheid2", "https://tec.openplanner.team/stops/LPRbayb1"], ["https://tec.openplanner.team/stops/Lghpier1", "https://tec.openplanner.team/stops/Lghterm*"], ["https://tec.openplanner.team/stops/Bchgpap1", "https://tec.openplanner.team/stops/Bchgpap2"], ["https://tec.openplanner.team/stops/LARparc2", "https://tec.openplanner.team/stops/LRIcent2"], ["https://tec.openplanner.team/stops/H1mj123a", "https://tec.openplanner.team/stops/H1mj132b"], ["https://tec.openplanner.team/stops/X727ada", "https://tec.openplanner.team/stops/X746aab"], ["https://tec.openplanner.team/stops/LVNleco1", "https://tec.openplanner.team/stops/LVNroua2"], ["https://tec.openplanner.team/stops/LTrgibe1", "https://tec.openplanner.team/stops/LTrgibe2"], ["https://tec.openplanner.team/stops/N229asb", "https://tec.openplanner.team/stops/N230aba"], ["https://tec.openplanner.team/stops/NL74aad", "https://tec.openplanner.team/stops/NL74abb"], ["https://tec.openplanner.team/stops/N894aea", "https://tec.openplanner.team/stops/N894agc"], ["https://tec.openplanner.team/stops/X652afc", "https://tec.openplanner.team/stops/X652aja"], ["https://tec.openplanner.team/stops/H4hx111b", "https://tec.openplanner.team/stops/H4hx112b"], ["https://tec.openplanner.team/stops/Cmychau1", "https://tec.openplanner.team/stops/Cmypast1"], ["https://tec.openplanner.team/stops/Lgrmagd1", "https://tec.openplanner.team/stops/Lgrmagd2"], ["https://tec.openplanner.team/stops/LdUkreu1", "https://tec.openplanner.team/stops/LdUkreu3"], ["https://tec.openplanner.team/stops/H1et100b", "https://tec.openplanner.team/stops/H1gh168a"], ["https://tec.openplanner.team/stops/H4co148a", "https://tec.openplanner.team/stops/H4co149b"], ["https://tec.openplanner.team/stops/N101aeb", "https://tec.openplanner.team/stops/N117bda"], ["https://tec.openplanner.team/stops/H1ho134b", "https://tec.openplanner.team/stops/H1ho139a"], ["https://tec.openplanner.team/stops/N528ama", "https://tec.openplanner.team/stops/N528atb"], ["https://tec.openplanner.team/stops/Lgrbill1", "https://tec.openplanner.team/stops/Lgrclas2"], ["https://tec.openplanner.team/stops/Lsehya-1", "https://tec.openplanner.team/stops/Lsepair4"], ["https://tec.openplanner.team/stops/Cclbarb1", "https://tec.openplanner.team/stops/Cstmarz1"], ["https://tec.openplanner.team/stops/Lenauln1", "https://tec.openplanner.team/stops/Lendonh2"], ["https://tec.openplanner.team/stops/Bnivbng2", "https://tec.openplanner.team/stops/Bnivbos1"], ["https://tec.openplanner.team/stops/LMHcant1", "https://tec.openplanner.team/stops/LMHcant2"], ["https://tec.openplanner.team/stops/N505abb", "https://tec.openplanner.team/stops/N505acb"], ["https://tec.openplanner.team/stops/Crseuro2", "https://tec.openplanner.team/stops/Crspana1"], ["https://tec.openplanner.team/stops/N542aea", "https://tec.openplanner.team/stops/N542aeb"], ["https://tec.openplanner.team/stops/X601cfa", "https://tec.openplanner.team/stops/X601cgb"], ["https://tec.openplanner.team/stops/LOdcris1", "https://tec.openplanner.team/stops/LVlleme1"], ["https://tec.openplanner.team/stops/Lprthie1", "https://tec.openplanner.team/stops/Lprthie2"], ["https://tec.openplanner.team/stops/X837aeb", "https://tec.openplanner.team/stops/X837ajb"], ["https://tec.openplanner.team/stops/Lghflot3", "https://tec.openplanner.team/stops/Lghflot4"], ["https://tec.openplanner.team/stops/H4la196a", "https://tec.openplanner.team/stops/H4la198a"], ["https://tec.openplanner.team/stops/H2sv217b", "https://tec.openplanner.team/stops/H2sv221a"], ["https://tec.openplanner.team/stops/H4do104b", "https://tec.openplanner.team/stops/H4ev120b"], ["https://tec.openplanner.team/stops/H2sv212a", "https://tec.openplanner.team/stops/H2tr257b"], ["https://tec.openplanner.team/stops/Bnivpla1", "https://tec.openplanner.team/stops/Bnivpso2"], ["https://tec.openplanner.team/stops/Blhubja1", "https://tec.openplanner.team/stops/Blhunys3"], ["https://tec.openplanner.team/stops/H1pe131a", "https://tec.openplanner.team/stops/H1so131b"], ["https://tec.openplanner.team/stops/LTgchar7", "https://tec.openplanner.team/stops/LTgwarf2"], ["https://tec.openplanner.team/stops/H4bx108b", "https://tec.openplanner.team/stops/H4ht173a"], ["https://tec.openplanner.team/stops/Csefour1", "https://tec.openplanner.team/stops/Cvtvois1"], ["https://tec.openplanner.team/stops/LMOecsp3", "https://tec.openplanner.team/stops/LMOfleu2"], ["https://tec.openplanner.team/stops/H2fa102a", "https://tec.openplanner.team/stops/H2fa102b"], ["https://tec.openplanner.team/stops/H1he104b", "https://tec.openplanner.team/stops/H1he110b"], ["https://tec.openplanner.team/stops/N506bda", "https://tec.openplanner.team/stops/N506bfa"], ["https://tec.openplanner.team/stops/Bblamsj2", "https://tec.openplanner.team/stops/Bblarbe2"], ["https://tec.openplanner.team/stops/Ljecocc2", "https://tec.openplanner.team/stops/Ljelamb2"], ["https://tec.openplanner.team/stops/LMYmont1", "https://tec.openplanner.team/stops/X597alb"], ["https://tec.openplanner.team/stops/H4cw107b", "https://tec.openplanner.team/stops/H4gz114a"], ["https://tec.openplanner.team/stops/Ccuhaie2", "https://tec.openplanner.team/stops/Cculpre1"], ["https://tec.openplanner.team/stops/Cbwmvri1", "https://tec.openplanner.team/stops/Cbwmvri2"], ["https://tec.openplanner.team/stops/LCFchir1", "https://tec.openplanner.team/stops/LFIcabi2"], ["https://tec.openplanner.team/stops/Bmrsayw1", "https://tec.openplanner.team/stops/Bmrscol1"], ["https://tec.openplanner.team/stops/Lhrlico1", "https://tec.openplanner.team/stops/Lhrpwan1"], ["https://tec.openplanner.team/stops/H4bu108a", "https://tec.openplanner.team/stops/H4gz115b"], ["https://tec.openplanner.team/stops/LFCdree2", "https://tec.openplanner.team/stops/LMamuse3"], ["https://tec.openplanner.team/stops/H1gr111a", "https://tec.openplanner.team/stops/H1gr115b"], ["https://tec.openplanner.team/stops/X641acb", "https://tec.openplanner.team/stops/X641agb"], ["https://tec.openplanner.team/stops/LBkcare*", "https://tec.openplanner.team/stops/LBkcarr2"], ["https://tec.openplanner.team/stops/X902aeb", "https://tec.openplanner.team/stops/X902ana"], ["https://tec.openplanner.team/stops/N573aqa", "https://tec.openplanner.team/stops/N573aqb"], ["https://tec.openplanner.team/stops/X641atb", "https://tec.openplanner.team/stops/X641aub"], ["https://tec.openplanner.team/stops/N501era", "https://tec.openplanner.team/stops/N501kla"], ["https://tec.openplanner.team/stops/Cgocat2", "https://tec.openplanner.team/stops/Cgorobe1"], ["https://tec.openplanner.team/stops/Bbaucba2", "https://tec.openplanner.team/stops/Bbaulos1"], ["https://tec.openplanner.team/stops/H1pa116b", "https://tec.openplanner.team/stops/H1wa151a"], ["https://tec.openplanner.team/stops/H4ff117a", "https://tec.openplanner.team/stops/H4ff117b"], ["https://tec.openplanner.team/stops/Lagcolo1", "https://tec.openplanner.team/stops/Lagpn6-2"], ["https://tec.openplanner.team/stops/Ckevela2", "https://tec.openplanner.team/stops/N530aca"], ["https://tec.openplanner.team/stops/Cchrmon4", "https://tec.openplanner.team/stops/Cchture1"], ["https://tec.openplanner.team/stops/H1qu108a", "https://tec.openplanner.team/stops/H1qu114a"], ["https://tec.openplanner.team/stops/N501ama", "https://tec.openplanner.team/stops/N501bbc"], ["https://tec.openplanner.team/stops/X897aic", "https://tec.openplanner.team/stops/X897ala"], ["https://tec.openplanner.team/stops/LmUkape1", "https://tec.openplanner.team/stops/LmUzent2"], ["https://tec.openplanner.team/stops/Lhrathe*", "https://tec.openplanner.team/stops/Lhrathe2"], ["https://tec.openplanner.team/stops/Clfmonu2", "https://tec.openplanner.team/stops/Cstmarz2"], ["https://tec.openplanner.team/stops/LAo161-2", "https://tec.openplanner.team/stops/LWn24--2"], ["https://tec.openplanner.team/stops/LGmeg--2", "https://tec.openplanner.team/stops/LHmcarr2"], ["https://tec.openplanner.team/stops/Bmargve2", "https://tec.openplanner.team/stops/Bmarpla1"], ["https://tec.openplanner.team/stops/Bfelagb1", "https://tec.openplanner.team/stops/Bfelequ2"], ["https://tec.openplanner.team/stops/LAMjaur1", "https://tec.openplanner.team/stops/LAMusin2"], ["https://tec.openplanner.team/stops/LVttarg1", "https://tec.openplanner.team/stops/LVtvalu2"], ["https://tec.openplanner.team/stops/NC24aab", "https://tec.openplanner.team/stops/NC24aka"], ["https://tec.openplanner.team/stops/H4cw104b", "https://tec.openplanner.team/stops/H4cw107a"], ["https://tec.openplanner.team/stops/Bwatms09", "https://tec.openplanner.team/stops/Bwatms10"], ["https://tec.openplanner.team/stops/X911ahb", "https://tec.openplanner.team/stops/X911arb"], ["https://tec.openplanner.team/stops/H2ll189b", "https://tec.openplanner.team/stops/H2ll257b"], ["https://tec.openplanner.team/stops/LDOdavi2", "https://tec.openplanner.team/stops/LDOgare2"], ["https://tec.openplanner.team/stops/H3so155a", "https://tec.openplanner.team/stops/H3so175a"], ["https://tec.openplanner.team/stops/X664aab", "https://tec.openplanner.team/stops/X664afb"], ["https://tec.openplanner.team/stops/Brebraf1", "https://tec.openplanner.team/stops/Brebraf2"], ["https://tec.openplanner.team/stops/H4wn125b", "https://tec.openplanner.team/stops/H4wn126b"], ["https://tec.openplanner.team/stops/H1ht128a", "https://tec.openplanner.team/stops/H1vt194a"], ["https://tec.openplanner.team/stops/LPbchat2", "https://tec.openplanner.team/stops/LSIcour1"], ["https://tec.openplanner.team/stops/H2ha127b", "https://tec.openplanner.team/stops/H2ha142a"], ["https://tec.openplanner.team/stops/LARarge1", "https://tec.openplanner.team/stops/LRItour2"], ["https://tec.openplanner.team/stops/N165aab", "https://tec.openplanner.team/stops/N165abb"], ["https://tec.openplanner.team/stops/X728aba", "https://tec.openplanner.team/stops/X728adb"], ["https://tec.openplanner.team/stops/X911aea", "https://tec.openplanner.team/stops/X911afa"], ["https://tec.openplanner.team/stops/Blnzcar1", "https://tec.openplanner.team/stops/N522afb"], ["https://tec.openplanner.team/stops/LFArela5", "https://tec.openplanner.team/stops/LFAwale1"], ["https://tec.openplanner.team/stops/H2lc171b", "https://tec.openplanner.team/stops/H2ll200a"], ["https://tec.openplanner.team/stops/N149ala", "https://tec.openplanner.team/stops/N150aaa"], ["https://tec.openplanner.team/stops/X902afc", "https://tec.openplanner.team/stops/X999aka"], ["https://tec.openplanner.team/stops/H1gy115b", "https://tec.openplanner.team/stops/H1gy116b"], ["https://tec.openplanner.team/stops/H1wa144a", "https://tec.openplanner.team/stops/H1wa149c"], ["https://tec.openplanner.team/stops/H4wr174a", "https://tec.openplanner.team/stops/H4wr174b"], ["https://tec.openplanner.team/stops/X921ahb", "https://tec.openplanner.team/stops/X921aqb"], ["https://tec.openplanner.team/stops/Clpnapo1", "https://tec.openplanner.team/stops/Clpnapo2"], ["https://tec.openplanner.team/stops/LNCsera1", "https://tec.openplanner.team/stops/LPLcond1"], ["https://tec.openplanner.team/stops/H4ho119a", "https://tec.openplanner.team/stops/H4lg103b"], ["https://tec.openplanner.team/stops/H4ty325b", "https://tec.openplanner.team/stops/H4ty346b"], ["https://tec.openplanner.team/stops/Cfvplac2", "https://tec.openplanner.team/stops/H1fv102a"], ["https://tec.openplanner.team/stops/H4mt219a", "https://tec.openplanner.team/stops/H4mt221a"], ["https://tec.openplanner.team/stops/X769aba", "https://tec.openplanner.team/stops/X769ana"], ["https://tec.openplanner.team/stops/X937aca", "https://tec.openplanner.team/stops/X937afa"], ["https://tec.openplanner.team/stops/H1ch105a", "https://tec.openplanner.team/stops/H1ch106b"], ["https://tec.openplanner.team/stops/X979aib", "https://tec.openplanner.team/stops/X979aka"], ["https://tec.openplanner.team/stops/Bmalcar1", "https://tec.openplanner.team/stops/Btlbgla1"], ["https://tec.openplanner.team/stops/X611ada", "https://tec.openplanner.team/stops/X646ada"], ["https://tec.openplanner.team/stops/Blpgvil2", "https://tec.openplanner.team/stops/Cgnbast1"], ["https://tec.openplanner.team/stops/N102acb", "https://tec.openplanner.team/stops/N152aac"], ["https://tec.openplanner.team/stops/N584bqa", "https://tec.openplanner.team/stops/N584bqb"], ["https://tec.openplanner.team/stops/H4ne131a", "https://tec.openplanner.team/stops/H4ne140b"], ["https://tec.openplanner.team/stops/H4la198a", "https://tec.openplanner.team/stops/H4ma203b"], ["https://tec.openplanner.team/stops/N528aja", "https://tec.openplanner.team/stops/N528ajb"], ["https://tec.openplanner.team/stops/Llgjean1", "https://tec.openplanner.team/stops/Llgmarc1"], ["https://tec.openplanner.team/stops/N501fub", "https://tec.openplanner.team/stops/N501lsa"], ["https://tec.openplanner.team/stops/Lvtcalv1", "https://tec.openplanner.team/stops/Lvtchpl3"], ["https://tec.openplanner.team/stops/N501bma", "https://tec.openplanner.team/stops/N501bnb"], ["https://tec.openplanner.team/stops/LbThutt2", "https://tec.openplanner.team/stops/LbTkreu1"], ["https://tec.openplanner.team/stops/Lpechin1", "https://tec.openplanner.team/stops/Lpesart2"], ["https://tec.openplanner.team/stops/N337ahb", "https://tec.openplanner.team/stops/N339acb"], ["https://tec.openplanner.team/stops/Bpiepla2", "https://tec.openplanner.team/stops/Bzluegl1"], ["https://tec.openplanner.team/stops/Cobnive2", "https://tec.openplanner.team/stops/Crefont2"], ["https://tec.openplanner.team/stops/X982bla", "https://tec.openplanner.team/stops/X982bqb"], ["https://tec.openplanner.team/stops/LSMcles2", "https://tec.openplanner.team/stops/LSMeg--2"], ["https://tec.openplanner.team/stops/Cjuecha1", "https://tec.openplanner.team/stops/Cjuphil2"], ["https://tec.openplanner.team/stops/LVEjoin1", "https://tec.openplanner.team/stops/LVEmohi2"], ["https://tec.openplanner.team/stops/X825abb", "https://tec.openplanner.team/stops/X826afa"], ["https://tec.openplanner.team/stops/N211ana", "https://tec.openplanner.team/stops/N211arb"], ["https://tec.openplanner.team/stops/N228aab", "https://tec.openplanner.team/stops/N260ada"], ["https://tec.openplanner.team/stops/LScdina1", "https://tec.openplanner.team/stops/LVTforg1"], ["https://tec.openplanner.team/stops/LSZlegr2", "https://tec.openplanner.team/stops/LSZroqu1"], ["https://tec.openplanner.team/stops/Brsggde2", "https://tec.openplanner.team/stops/Brsggea2"], ["https://tec.openplanner.team/stops/LHHpt--1", "https://tec.openplanner.team/stops/LHHpt--4"], ["https://tec.openplanner.team/stops/X834ada", "https://tec.openplanner.team/stops/X834adb"], ["https://tec.openplanner.team/stops/X754ara", "https://tec.openplanner.team/stops/X754arb"], ["https://tec.openplanner.team/stops/Baudsta2", "https://tec.openplanner.team/stops/Bwbfckr1"], ["https://tec.openplanner.team/stops/H4mt215b", "https://tec.openplanner.team/stops/H4mt216a"], ["https://tec.openplanner.team/stops/H1ca100a", "https://tec.openplanner.team/stops/H1th183a"], ["https://tec.openplanner.team/stops/NL68aaa", "https://tec.openplanner.team/stops/NL68aad"], ["https://tec.openplanner.team/stops/N571acb", "https://tec.openplanner.team/stops/N571adb"], ["https://tec.openplanner.team/stops/N204ada", "https://tec.openplanner.team/stops/N204aha"], ["https://tec.openplanner.team/stops/N501cdb", "https://tec.openplanner.team/stops/N501cdc"], ["https://tec.openplanner.team/stops/H4ir161a", "https://tec.openplanner.team/stops/H4ir167a"], ["https://tec.openplanner.team/stops/Lsmcime1", "https://tec.openplanner.team/stops/Lsmh1801"], ["https://tec.openplanner.team/stops/H1vb141a", "https://tec.openplanner.team/stops/H3bi108a"], ["https://tec.openplanner.team/stops/N534aea", "https://tec.openplanner.team/stops/N534agb"], ["https://tec.openplanner.team/stops/Cjxegli1", "https://tec.openplanner.team/stops/Cjxegli2"], ["https://tec.openplanner.team/stops/Bgntpos2", "https://tec.openplanner.team/stops/Bsgevil1"], ["https://tec.openplanner.team/stops/N244aua", "https://tec.openplanner.team/stops/N244ava"], ["https://tec.openplanner.team/stops/X774agb", "https://tec.openplanner.team/stops/X774aha"], ["https://tec.openplanner.team/stops/Lagrask2", "https://tec.openplanner.team/stops/Lemjoba2"], ["https://tec.openplanner.team/stops/Ccomiau1", "https://tec.openplanner.team/stops/Crowall1"], ["https://tec.openplanner.team/stops/N544ada", "https://tec.openplanner.team/stops/N552aba"], ["https://tec.openplanner.team/stops/LNCdoma2", "https://tec.openplanner.team/stops/LNCspor1"], ["https://tec.openplanner.team/stops/X952aha", "https://tec.openplanner.team/stops/X952ahb"], ["https://tec.openplanner.team/stops/Brsgece1", "https://tec.openplanner.team/stops/Brsgece2"], ["https://tec.openplanner.team/stops/LFsconc1", "https://tec.openplanner.team/stops/LFsguil1"], ["https://tec.openplanner.team/stops/H1er109b", "https://tec.openplanner.team/stops/H1er110b"], ["https://tec.openplanner.team/stops/Lcebois1", "https://tec.openplanner.team/stops/Lceconf2"], ["https://tec.openplanner.team/stops/LBQplac2", "https://tec.openplanner.team/stops/N223aba"], ["https://tec.openplanner.team/stops/X605aaa", "https://tec.openplanner.team/stops/X619aaa"], ["https://tec.openplanner.team/stops/Cfapiro1", "https://tec.openplanner.team/stops/Cfapiro2"], ["https://tec.openplanner.team/stops/H2ll187c", "https://tec.openplanner.team/stops/H2ll190a"], ["https://tec.openplanner.team/stops/H4wi161a", "https://tec.openplanner.team/stops/H5pe134b"], ["https://tec.openplanner.team/stops/H2ca104a", "https://tec.openplanner.team/stops/H2mo135a"], ["https://tec.openplanner.team/stops/H1gg145a", "https://tec.openplanner.team/stops/H1ry134a"], ["https://tec.openplanner.team/stops/N543apb", "https://tec.openplanner.team/stops/N543arb"], ["https://tec.openplanner.team/stops/Llgnico2", "https://tec.openplanner.team/stops/Llgnico3"], ["https://tec.openplanner.team/stops/N160adb", "https://tec.openplanner.team/stops/N160agb"], ["https://tec.openplanner.team/stops/LBBpech1", "https://tec.openplanner.team/stops/LLvpost1"], ["https://tec.openplanner.team/stops/N538aua", "https://tec.openplanner.team/stops/N538baa"], ["https://tec.openplanner.team/stops/Lhuferm1", "https://tec.openplanner.team/stops/LJSec--2"], ["https://tec.openplanner.team/stops/N310aca", "https://tec.openplanner.team/stops/N310aea"], ["https://tec.openplanner.team/stops/Bhmmcge1", "https://tec.openplanner.team/stops/Bhmmgar1"], ["https://tec.openplanner.team/stops/N155aia", "https://tec.openplanner.team/stops/N155aja"], ["https://tec.openplanner.team/stops/LAWcorn1", "https://tec.openplanner.team/stops/LAWxhen1"], ["https://tec.openplanner.team/stops/X609ama", "https://tec.openplanner.team/stops/X609amb"], ["https://tec.openplanner.team/stops/X629aab", "https://tec.openplanner.team/stops/X630ada"], ["https://tec.openplanner.team/stops/Barqbar2", "https://tec.openplanner.team/stops/Barqhpe2"], ["https://tec.openplanner.team/stops/LESoneu4", "https://tec.openplanner.team/stops/LESryon2"], ["https://tec.openplanner.team/stops/N232bpb", "https://tec.openplanner.team/stops/N232bqb"], ["https://tec.openplanner.team/stops/LRUhama2", "https://tec.openplanner.team/stops/LTowijk2"], ["https://tec.openplanner.team/stops/H1ms942a", "https://tec.openplanner.team/stops/H1ni317b"], ["https://tec.openplanner.team/stops/LnDdorf1", "https://tec.openplanner.team/stops/LwSgeme1"], ["https://tec.openplanner.team/stops/LSOferr6", "https://tec.openplanner.team/stops/LSOladr1"], ["https://tec.openplanner.team/stops/Blhueso1", "https://tec.openplanner.team/stops/Blhugmo2"], ["https://tec.openplanner.team/stops/Btsllib1", "https://tec.openplanner.team/stops/Bwspspa1"], ["https://tec.openplanner.team/stops/N151aha", "https://tec.openplanner.team/stops/N151aka"], ["https://tec.openplanner.team/stops/LJSec--1", "https://tec.openplanner.team/stops/LJSec--2"], ["https://tec.openplanner.team/stops/Cbfchla2", "https://tec.openplanner.team/stops/NC11alb"], ["https://tec.openplanner.team/stops/X666aja", "https://tec.openplanner.team/stops/X666alb"], ["https://tec.openplanner.team/stops/N132aaa", "https://tec.openplanner.team/stops/N135aaa"], ["https://tec.openplanner.team/stops/LmI36--1", "https://tec.openplanner.team/stops/LmRmuhl2"], ["https://tec.openplanner.team/stops/LKmcabi1", "https://tec.openplanner.team/stops/LKmdrie1"], ["https://tec.openplanner.team/stops/Cjumall6", "https://tec.openplanner.team/stops/Cjupoly2"], ["https://tec.openplanner.team/stops/X917aea", "https://tec.openplanner.team/stops/X919afb"], ["https://tec.openplanner.team/stops/H1pa108b", "https://tec.openplanner.team/stops/H1pa120b"], ["https://tec.openplanner.team/stops/X806aga", "https://tec.openplanner.team/stops/X806aha"], ["https://tec.openplanner.team/stops/N501gga", "https://tec.openplanner.team/stops/N501lpa"], ["https://tec.openplanner.team/stops/H1bg110b", "https://tec.openplanner.team/stops/H1gi123b"], ["https://tec.openplanner.team/stops/X979aja", "https://tec.openplanner.team/stops/X979ajb"], ["https://tec.openplanner.team/stops/Ladhomb1", "https://tec.openplanner.team/stops/Lvereno2"], ["https://tec.openplanner.team/stops/LCLscie2", "https://tec.openplanner.team/stops/LLvpost1"], ["https://tec.openplanner.team/stops/X735aca", "https://tec.openplanner.team/stops/X736aea"], ["https://tec.openplanner.team/stops/Llabriq2", "https://tec.openplanner.team/stops/Lvovent2"], ["https://tec.openplanner.team/stops/Bbbksth1", "https://tec.openplanner.team/stops/Bbbksth2"], ["https://tec.openplanner.team/stops/H4mo206a", "https://tec.openplanner.team/stops/H4mo206b"], ["https://tec.openplanner.team/stops/LNHbarr2", "https://tec.openplanner.team/stops/LOmmer-1"], ["https://tec.openplanner.team/stops/H5el104a", "https://tec.openplanner.team/stops/H5el114a"], ["https://tec.openplanner.team/stops/LAbbass2", "https://tec.openplanner.team/stops/LTechpl1"], ["https://tec.openplanner.team/stops/H4jm118a", "https://tec.openplanner.team/stops/H4sm247b"], ["https://tec.openplanner.team/stops/N501mra", "https://tec.openplanner.team/stops/N501mrb"], ["https://tec.openplanner.team/stops/N573aba", "https://tec.openplanner.team/stops/NC11ard"], ["https://tec.openplanner.team/stops/Ccpetan2", "https://tec.openplanner.team/stops/Cptchea2"], ["https://tec.openplanner.team/stops/LNCvill1", "https://tec.openplanner.team/stops/LNCvill3"], ["https://tec.openplanner.team/stops/Cbupla1", "https://tec.openplanner.team/stops/Cfnsenz1"], ["https://tec.openplanner.team/stops/Clvchar2", "https://tec.openplanner.team/stops/Clvorle1"], ["https://tec.openplanner.team/stops/LFrfrai1", "https://tec.openplanner.team/stops/LTRcarr1"], ["https://tec.openplanner.team/stops/Ccoconf1", "https://tec.openplanner.team/stops/Ccodubo2"], ["https://tec.openplanner.team/stops/Ljeheur1", "https://tec.openplanner.team/stops/Ljerobi1"], ["https://tec.openplanner.team/stops/X746aaa", "https://tec.openplanner.team/stops/X746abb"], ["https://tec.openplanner.team/stops/X764adb", "https://tec.openplanner.team/stops/X764aeb"], ["https://tec.openplanner.team/stops/X610afa", "https://tec.openplanner.team/stops/X610aha"], ["https://tec.openplanner.team/stops/LArchap1", "https://tec.openplanner.team/stops/X548adb"], ["https://tec.openplanner.team/stops/LaAgold1", "https://tec.openplanner.team/stops/LaAkapi1"], ["https://tec.openplanner.team/stops/Becepco1", "https://tec.openplanner.team/stops/H2ec100a"], ["https://tec.openplanner.team/stops/N390adb", "https://tec.openplanner.team/stops/N390afb"], ["https://tec.openplanner.team/stops/N229aeb", "https://tec.openplanner.team/stops/N241abb"], ["https://tec.openplanner.team/stops/H4ld128b", "https://tec.openplanner.team/stops/H4to131b"], ["https://tec.openplanner.team/stops/Cgy3011", "https://tec.openplanner.team/stops/Cgygazo3"], ["https://tec.openplanner.team/stops/X837adb", "https://tec.openplanner.team/stops/X837aed"], ["https://tec.openplanner.team/stops/X542afa", "https://tec.openplanner.team/stops/X542aga"], ["https://tec.openplanner.team/stops/H1mc126b", "https://tec.openplanner.team/stops/H1mc129a"], ["https://tec.openplanner.team/stops/H2ha134b", "https://tec.openplanner.team/stops/H2ha141a"], ["https://tec.openplanner.team/stops/H1gi118a", "https://tec.openplanner.team/stops/H1gi118b"], ["https://tec.openplanner.team/stops/X731acc", "https://tec.openplanner.team/stops/X731amb"], ["https://tec.openplanner.team/stops/Lfhbail2", "https://tec.openplanner.team/stops/Lsevico1"], ["https://tec.openplanner.team/stops/LLevaux2", "https://tec.openplanner.team/stops/X561aeb"], ["https://tec.openplanner.team/stops/Lfhpast1", "https://tec.openplanner.team/stops/Lfhweri2"], ["https://tec.openplanner.team/stops/H4bo121b", "https://tec.openplanner.team/stops/H4bo182a"], ["https://tec.openplanner.team/stops/H4es113a", "https://tec.openplanner.team/stops/H4ln155a"], ["https://tec.openplanner.team/stops/X899aba", "https://tec.openplanner.team/stops/X899afa"], ["https://tec.openplanner.team/stops/X681aca", "https://tec.openplanner.team/stops/X681aia"], ["https://tec.openplanner.team/stops/X606aba", "https://tec.openplanner.team/stops/X606abb"], ["https://tec.openplanner.team/stops/X779aaa", "https://tec.openplanner.team/stops/X779aba"], ["https://tec.openplanner.team/stops/H1ms276a", "https://tec.openplanner.team/stops/H1ms287b"], ["https://tec.openplanner.team/stops/X547afb", "https://tec.openplanner.team/stops/X547ahb"], ["https://tec.openplanner.team/stops/Cwfplac2", "https://tec.openplanner.team/stops/Cwfplac3"], ["https://tec.openplanner.team/stops/N203aeb", "https://tec.openplanner.team/stops/N204alb"], ["https://tec.openplanner.team/stops/LDAchau1", "https://tec.openplanner.team/stops/LDAptbo2"], ["https://tec.openplanner.team/stops/H4ho119a", "https://tec.openplanner.team/stops/H4wn125a"], ["https://tec.openplanner.team/stops/Bitrcen1", "https://tec.openplanner.team/stops/Bitrecu1"], ["https://tec.openplanner.team/stops/Cbcegli1", "https://tec.openplanner.team/stops/Crglyre1"], ["https://tec.openplanner.team/stops/Lsnlhon2", "https://tec.openplanner.team/stops/Lsnvand1"], ["https://tec.openplanner.team/stops/X614abb", "https://tec.openplanner.team/stops/X614arb"], ["https://tec.openplanner.team/stops/H1he103a", "https://tec.openplanner.team/stops/H4be149b"], ["https://tec.openplanner.team/stops/H1ms254a", "https://tec.openplanner.team/stops/H1ms254d"], ["https://tec.openplanner.team/stops/LBWeg--4", "https://tec.openplanner.team/stops/LMgbern1"], ["https://tec.openplanner.team/stops/N543bmb", "https://tec.openplanner.team/stops/N543bnb"], ["https://tec.openplanner.team/stops/X789ahc", "https://tec.openplanner.team/stops/X789aia"], ["https://tec.openplanner.team/stops/Cjxpris2", "https://tec.openplanner.team/stops/Cjxthom2"], ["https://tec.openplanner.team/stops/H1gg114a", "https://tec.openplanner.team/stops/H1gg116b"], ["https://tec.openplanner.team/stops/LSXbecc1", "https://tec.openplanner.team/stops/LTHchiv1"], ["https://tec.openplanner.team/stops/Ljuauto1", "https://tec.openplanner.team/stops/Ljufler2"], ["https://tec.openplanner.team/stops/Ccipano2", "https://tec.openplanner.team/stops/Ccivill1"], ["https://tec.openplanner.team/stops/LHCpaci1", "https://tec.openplanner.team/stops/LHCpaci2"], ["https://tec.openplanner.team/stops/X640amb", "https://tec.openplanner.team/stops/X640apb"], ["https://tec.openplanner.team/stops/H1by103b", "https://tec.openplanner.team/stops/H1by106a"], ["https://tec.openplanner.team/stops/Bwateco2", "https://tec.openplanner.team/stops/Bwatpai1"], ["https://tec.openplanner.team/stops/X601cna", "https://tec.openplanner.team/stops/X601coa"], ["https://tec.openplanner.team/stops/Lmlpech1", "https://tec.openplanner.team/stops/Lmlpech2"], ["https://tec.openplanner.team/stops/Lhrcols1", "https://tec.openplanner.team/stops/Lvtauna2"], ["https://tec.openplanner.team/stops/LmNha221", "https://tec.openplanner.team/stops/LmNsv872"], ["https://tec.openplanner.team/stops/Lmnsech2", "https://tec.openplanner.team/stops/Lsmcime*"], ["https://tec.openplanner.team/stops/Cstdona3", "https://tec.openplanner.team/stops/Cstdona6"], ["https://tec.openplanner.team/stops/Btstbbu2", "https://tec.openplanner.team/stops/N524aca"], ["https://tec.openplanner.team/stops/Ccorian1", "https://tec.openplanner.team/stops/Crocpai1"], ["https://tec.openplanner.team/stops/Bglibui1", "https://tec.openplanner.team/stops/NB33aib"], ["https://tec.openplanner.team/stops/X637agc", "https://tec.openplanner.team/stops/X637aka"], ["https://tec.openplanner.team/stops/N101aaa", "https://tec.openplanner.team/stops/N147aba"], ["https://tec.openplanner.team/stops/Cjuathe1", "https://tec.openplanner.team/stops/CMchag1"], ["https://tec.openplanner.team/stops/Bhevgar2", "https://tec.openplanner.team/stops/Bleunaa2"], ["https://tec.openplanner.team/stops/X983aca", "https://tec.openplanner.team/stops/X983agb"], ["https://tec.openplanner.team/stops/Cprbevu2", "https://tec.openplanner.team/stops/NC11aoa"], ["https://tec.openplanner.team/stops/Bfledpi1", "https://tec.openplanner.team/stops/Bsamfma1"], ["https://tec.openplanner.team/stops/Lmofays1", "https://tec.openplanner.team/stops/Lmolama2"], ["https://tec.openplanner.team/stops/X898ajb", "https://tec.openplanner.team/stops/X898akb"], ["https://tec.openplanner.team/stops/Bsdecdi2", "https://tec.openplanner.team/stops/N526abb"], ["https://tec.openplanner.team/stops/H1he100a", "https://tec.openplanner.team/stops/H1qv116a"], ["https://tec.openplanner.team/stops/X675aaa", "https://tec.openplanner.team/stops/X820aha"], ["https://tec.openplanner.team/stops/H4ff118b", "https://tec.openplanner.team/stops/H4ff120a"], ["https://tec.openplanner.team/stops/H1cu115a", "https://tec.openplanner.team/stops/H1cu119a"], ["https://tec.openplanner.team/stops/NL81aha", "https://tec.openplanner.team/stops/NL81ahb"], ["https://tec.openplanner.team/stops/LAUcent2", "https://tec.openplanner.team/stops/LAUneuv6"], ["https://tec.openplanner.team/stops/LWeec--1", "https://tec.openplanner.team/stops/LWevand2"], ["https://tec.openplanner.team/stops/H5pe133a", "https://tec.openplanner.team/stops/H5pe176a"], ["https://tec.openplanner.team/stops/H4be102a", "https://tec.openplanner.team/stops/H4be107a"], ["https://tec.openplanner.team/stops/N540aia", "https://tec.openplanner.team/stops/N540ajb"], ["https://tec.openplanner.team/stops/LJAwerf1", "https://tec.openplanner.team/stops/LSW26--1"], ["https://tec.openplanner.team/stops/Cpccpas2", "https://tec.openplanner.team/stops/Cpclibe3"], ["https://tec.openplanner.team/stops/H4bc106a", "https://tec.openplanner.team/stops/H5bl116b"], ["https://tec.openplanner.team/stops/X901aeb", "https://tec.openplanner.team/stops/X901bsa"], ["https://tec.openplanner.team/stops/Lrccime3", "https://tec.openplanner.team/stops/Lrchero1"], ["https://tec.openplanner.team/stops/N423aaa", "https://tec.openplanner.team/stops/N423abb"], ["https://tec.openplanner.team/stops/Bnodeco2", "https://tec.openplanner.team/stops/Bolgmpl1"], ["https://tec.openplanner.team/stops/N542aab", "https://tec.openplanner.team/stops/N542aob"], ["https://tec.openplanner.team/stops/H1le117a", "https://tec.openplanner.team/stops/H1le128b"], ["https://tec.openplanner.team/stops/Bgnvcom2", "https://tec.openplanner.team/stops/Brixbou2"], ["https://tec.openplanner.team/stops/N236alb", "https://tec.openplanner.team/stops/N236apa"], ["https://tec.openplanner.team/stops/H4ef165a", "https://tec.openplanner.team/stops/H4ef165c"], ["https://tec.openplanner.team/stops/X725asa", "https://tec.openplanner.team/stops/X725ata"], ["https://tec.openplanner.team/stops/Bnivasa1", "https://tec.openplanner.team/stops/Bnivrsa2"], ["https://tec.openplanner.team/stops/N545aba", "https://tec.openplanner.team/stops/N547ana"], ["https://tec.openplanner.team/stops/N167aea", "https://tec.openplanner.team/stops/N168aab"], ["https://tec.openplanner.team/stops/Bchadpt1", "https://tec.openplanner.team/stops/Bwlhppg1"], ["https://tec.openplanner.team/stops/H2ma202a", "https://tec.openplanner.team/stops/H2ma263a"], ["https://tec.openplanner.team/stops/N538atc", "https://tec.openplanner.team/stops/N538axb"], ["https://tec.openplanner.team/stops/Bhlvgar1", "https://tec.openplanner.team/stops/Bhlvgar2"], ["https://tec.openplanner.team/stops/LTPlegr2", "https://tec.openplanner.team/stops/LTPpres2"], ["https://tec.openplanner.team/stops/LNAanne2", "https://tec.openplanner.team/stops/LNAdemo2"], ["https://tec.openplanner.team/stops/Lprmana1", "https://tec.openplanner.team/stops/Lprmana2"], ["https://tec.openplanner.team/stops/X754aaa", "https://tec.openplanner.team/stops/X754aba"], ["https://tec.openplanner.team/stops/X908aaa", "https://tec.openplanner.team/stops/X955aha"], ["https://tec.openplanner.team/stops/LhRkirc1", "https://tec.openplanner.team/stops/LhRwere2"], ["https://tec.openplanner.team/stops/Lchcomm2", "https://tec.openplanner.team/stops/Lchplai1"], ["https://tec.openplanner.team/stops/Blmlbif2", "https://tec.openplanner.team/stops/Blmlfau2"], ["https://tec.openplanner.team/stops/Clupcfe2", "https://tec.openplanner.team/stops/Cpcndce1"], ["https://tec.openplanner.team/stops/LaAlinz1", "https://tec.openplanner.team/stops/LaAlinz2"], ["https://tec.openplanner.team/stops/LSPentr1", "https://tec.openplanner.team/stops/LSProya2"], ["https://tec.openplanner.team/stops/Barqhro2", "https://tec.openplanner.team/stops/Bptrgri2"], ["https://tec.openplanner.team/stops/Crewatb2", "https://tec.openplanner.team/stops/Crewath1"], ["https://tec.openplanner.team/stops/X870aca", "https://tec.openplanner.team/stops/X870acb"], ["https://tec.openplanner.team/stops/Bmrlsau1", "https://tec.openplanner.team/stops/NR21aia"], ["https://tec.openplanner.team/stops/LROcent1", "https://tec.openplanner.team/stops/LROcent2"], ["https://tec.openplanner.team/stops/N509aua", "https://tec.openplanner.team/stops/N511ana"], ["https://tec.openplanner.team/stops/LFmceli2", "https://tec.openplanner.team/stops/LFmeg--1"], ["https://tec.openplanner.team/stops/X362ada", "https://tec.openplanner.team/stops/X363abb"], ["https://tec.openplanner.team/stops/Cgpchgo1", "https://tec.openplanner.team/stops/Ctrterm1"], ["https://tec.openplanner.team/stops/Bllngar9", "https://tec.openplanner.team/stops/Bllngle1"], ["https://tec.openplanner.team/stops/X812baa", "https://tec.openplanner.team/stops/X812bga"], ["https://tec.openplanner.team/stops/N232bcb", "https://tec.openplanner.team/stops/N232bib"], ["https://tec.openplanner.team/stops/LBIcabi2", "https://tec.openplanner.team/stops/LBIpont2"], ["https://tec.openplanner.team/stops/Bbaubon1", "https://tec.openplanner.team/stops/Bbaulos1"], ["https://tec.openplanner.team/stops/Lchec--1", "https://tec.openplanner.team/stops/Lrapays2"], ["https://tec.openplanner.team/stops/X608ajb", "https://tec.openplanner.team/stops/X608akb"], ["https://tec.openplanner.team/stops/Bwatath3", "https://tec.openplanner.team/stops/Bwatclo1"], ["https://tec.openplanner.team/stops/N503aka", "https://tec.openplanner.team/stops/N504aba"], ["https://tec.openplanner.team/stops/N542abb", "https://tec.openplanner.team/stops/N542acb"], ["https://tec.openplanner.team/stops/X614aua", "https://tec.openplanner.team/stops/X614ava"], ["https://tec.openplanner.team/stops/Bjausan2", "https://tec.openplanner.team/stops/Bjauvch2"], ["https://tec.openplanner.team/stops/X613aaa", "https://tec.openplanner.team/stops/X613aab"], ["https://tec.openplanner.team/stops/LCHeg--2", "https://tec.openplanner.team/stops/Lprspra2"], ["https://tec.openplanner.team/stops/Crsprai3", "https://tec.openplanner.team/stops/Crsprai4"], ["https://tec.openplanner.team/stops/N507aaa", "https://tec.openplanner.team/stops/N507aac"], ["https://tec.openplanner.team/stops/Bnstver1", "https://tec.openplanner.team/stops/H3go101b"], ["https://tec.openplanner.team/stops/Canrobe2", "https://tec.openplanner.team/stops/Canrtth1"], ["https://tec.openplanner.team/stops/Bnivga21", "https://tec.openplanner.team/stops/Bnivga31"], ["https://tec.openplanner.team/stops/Lbhgare1", "https://tec.openplanner.team/stops/Lrogene*"], ["https://tec.openplanner.team/stops/X982aja", "https://tec.openplanner.team/stops/X982bub"], ["https://tec.openplanner.team/stops/N538aja", "https://tec.openplanner.team/stops/N538ajb"], ["https://tec.openplanner.team/stops/LMTfagn1", "https://tec.openplanner.team/stops/LXfcore1"], ["https://tec.openplanner.team/stops/CMbert1", "https://tec.openplanner.team/stops/CMbert2"], ["https://tec.openplanner.team/stops/N229amb", "https://tec.openplanner.team/stops/N229ata"], ["https://tec.openplanner.team/stops/N521abb", "https://tec.openplanner.team/stops/N521ara"], ["https://tec.openplanner.team/stops/N202aea", "https://tec.openplanner.team/stops/N202aeb"], ["https://tec.openplanner.team/stops/Livgera2", "https://tec.openplanner.team/stops/Livgera3"], ["https://tec.openplanner.team/stops/H4ir163a", "https://tec.openplanner.team/stops/H4ir163b"], ["https://tec.openplanner.team/stops/H4by116b", "https://tec.openplanner.team/stops/H4wp151a"], ["https://tec.openplanner.team/stops/X713ala", "https://tec.openplanner.team/stops/X713alb"], ["https://tec.openplanner.team/stops/N106afa", "https://tec.openplanner.team/stops/N106afb"], ["https://tec.openplanner.team/stops/H1bn113a", "https://tec.openplanner.team/stops/H1hg178b"], ["https://tec.openplanner.team/stops/Bgliopp1", "https://tec.openplanner.team/stops/Bincdon2"], ["https://tec.openplanner.team/stops/X901aja", "https://tec.openplanner.team/stops/X901axa"], ["https://tec.openplanner.team/stops/LAMhaut1", "https://tec.openplanner.team/stops/LFlabba4"], ["https://tec.openplanner.team/stops/Crodrai1", "https://tec.openplanner.team/stops/Cronova2"], ["https://tec.openplanner.team/stops/Cmcceta1", "https://tec.openplanner.team/stops/Cmivert1"], ["https://tec.openplanner.team/stops/LClange1", "https://tec.openplanner.team/stops/LClange2"], ["https://tec.openplanner.team/stops/X896aba", "https://tec.openplanner.team/stops/X896acb"], ["https://tec.openplanner.team/stops/X901aca", "https://tec.openplanner.team/stops/X901aha"], ["https://tec.openplanner.team/stops/N533aaa", "https://tec.openplanner.team/stops/N533aab"], ["https://tec.openplanner.team/stops/H1bo105b", "https://tec.openplanner.team/stops/H1bo111b"], ["https://tec.openplanner.team/stops/X666aia", "https://tec.openplanner.team/stops/X666aib"], ["https://tec.openplanner.team/stops/H3so175a", "https://tec.openplanner.team/stops/H3so175b"], ["https://tec.openplanner.team/stops/LATdame1", "https://tec.openplanner.team/stops/LATdame2"], ["https://tec.openplanner.team/stops/LSMeg--1", "https://tec.openplanner.team/stops/LSMtarg1"], ["https://tec.openplanner.team/stops/Cmmgadi1", "https://tec.openplanner.team/stops/Cmmramb1"], ["https://tec.openplanner.team/stops/N501hjb", "https://tec.openplanner.team/stops/N501hjc"], ["https://tec.openplanner.team/stops/H1em109a", "https://tec.openplanner.team/stops/H1vb143a"], ["https://tec.openplanner.team/stops/N501doa", "https://tec.openplanner.team/stops/N501dob"], ["https://tec.openplanner.team/stops/Bmelenf1", "https://tec.openplanner.team/stops/Bmelenf2"], ["https://tec.openplanner.team/stops/Cbbjfeu1", "https://tec.openplanner.team/stops/Cvrchap2"], ["https://tec.openplanner.team/stops/H4fr145a", "https://tec.openplanner.team/stops/H4fr145b"], ["https://tec.openplanner.team/stops/Blasbh51", "https://tec.openplanner.team/stops/Blasbpr1"], ["https://tec.openplanner.team/stops/X658abb", "https://tec.openplanner.team/stops/X671aca"], ["https://tec.openplanner.team/stops/LhGbahn3", "https://tec.openplanner.team/stops/LhGknip1"], ["https://tec.openplanner.team/stops/Ccipech1", "https://tec.openplanner.team/stops/Cmttrie1"], ["https://tec.openplanner.team/stops/X877aga", "https://tec.openplanner.team/stops/X989afb"], ["https://tec.openplanner.team/stops/N104aad", "https://tec.openplanner.team/stops/N116aca"], ["https://tec.openplanner.team/stops/NC11aga", "https://tec.openplanner.team/stops/NC11agb"], ["https://tec.openplanner.team/stops/X754aua", "https://tec.openplanner.team/stops/X754aub"], ["https://tec.openplanner.team/stops/X911ana", "https://tec.openplanner.team/stops/X912aab"], ["https://tec.openplanner.team/stops/Lsccdor1", "https://tec.openplanner.team/stops/Lsccdor2"], ["https://tec.openplanner.team/stops/LBkbamb1", "https://tec.openplanner.team/stops/LBkcarr1"], ["https://tec.openplanner.team/stops/H4qu230a", "https://tec.openplanner.team/stops/H4qu408b"], ["https://tec.openplanner.team/stops/Cprsapv1", "https://tec.openplanner.team/stops/NC11ana"], ["https://tec.openplanner.team/stops/Lseberg1", "https://tec.openplanner.team/stops/Lseberg2"], ["https://tec.openplanner.team/stops/Lanc14v1", "https://tec.openplanner.team/stops/Llgverg2"], ["https://tec.openplanner.team/stops/LMaburg3", "https://tec.openplanner.team/stops/LMazonn4"], ["https://tec.openplanner.team/stops/LHovach1", "https://tec.openplanner.team/stops/LHovach2"], ["https://tec.openplanner.team/stops/LlE02--1", "https://tec.openplanner.team/stops/LlEzoll1"], ["https://tec.openplanner.team/stops/Cbugara1", "https://tec.openplanner.team/stops/Csiegli1"], ["https://tec.openplanner.team/stops/X901aib", "https://tec.openplanner.team/stops/X901arb"], ["https://tec.openplanner.team/stops/Cobbusc1", "https://tec.openplanner.team/stops/Cobmven2"], ["https://tec.openplanner.team/stops/Cbzfrom1", "https://tec.openplanner.team/stops/Creha762"], ["https://tec.openplanner.team/stops/N531aoa", "https://tec.openplanner.team/stops/N531aqa"], ["https://tec.openplanner.team/stops/N501aka", "https://tec.openplanner.team/stops/N501aoa"], ["https://tec.openplanner.team/stops/Lprmc--2", "https://tec.openplanner.team/stops/Lprperr2"], ["https://tec.openplanner.team/stops/X650aha", "https://tec.openplanner.team/stops/X650aoa"], ["https://tec.openplanner.team/stops/LHUgole1", "https://tec.openplanner.team/stops/LHUgole2"], ["https://tec.openplanner.team/stops/Lqbchat1", "https://tec.openplanner.team/stops/Lrelier1"], ["https://tec.openplanner.team/stops/Cmbcime4", "https://tec.openplanner.team/stops/Crcrwas2"], ["https://tec.openplanner.team/stops/Lreec--2", "https://tec.openplanner.team/stops/Lremonu1"], ["https://tec.openplanner.team/stops/X618ada", "https://tec.openplanner.team/stops/X618adb"], ["https://tec.openplanner.team/stops/LBiroch1", "https://tec.openplanner.team/stops/LDOgare1"], ["https://tec.openplanner.team/stops/Lanadmi2", "https://tec.openplanner.team/stops/Llojeme4"], ["https://tec.openplanner.team/stops/Bbcopre1", "https://tec.openplanner.team/stops/Bbcoroy1"], ["https://tec.openplanner.team/stops/N539avb", "https://tec.openplanner.team/stops/N539awb"], ["https://tec.openplanner.team/stops/LhZkape1", "https://tec.openplanner.team/stops/LmFdorf2"], ["https://tec.openplanner.team/stops/Cjulamb3", "https://tec.openplanner.team/stops/Cjuruni2"], ["https://tec.openplanner.team/stops/Lceavia2", "https://tec.openplanner.team/stops/Lceconf2"], ["https://tec.openplanner.team/stops/LVIferm1", "https://tec.openplanner.team/stops/LVImons2"], ["https://tec.openplanner.team/stops/Lsepcha1", "https://tec.openplanner.team/stops/Lsercha1"], ["https://tec.openplanner.team/stops/LElcent1", "https://tec.openplanner.team/stops/LElgerd1"], ["https://tec.openplanner.team/stops/Cchlamb2", "https://tec.openplanner.team/stops/Cchmott2"], ["https://tec.openplanner.team/stops/N560aaa", "https://tec.openplanner.team/stops/N560adb"], ["https://tec.openplanner.team/stops/X766acb", "https://tec.openplanner.team/stops/X768alb"], ["https://tec.openplanner.team/stops/LOMbrou1", "https://tec.openplanner.team/stops/LOMbrou2"], ["https://tec.openplanner.team/stops/Btlgegl1", "https://tec.openplanner.team/stops/Btlgmou1"], ["https://tec.openplanner.team/stops/H1cd111c", "https://tec.openplanner.team/stops/H1hr117b"], ["https://tec.openplanner.team/stops/N543aia", "https://tec.openplanner.team/stops/N543aib"], ["https://tec.openplanner.team/stops/X921ala", "https://tec.openplanner.team/stops/X979acb"], ["https://tec.openplanner.team/stops/Lcegare2", "https://tec.openplanner.team/stops/Lcemc--1"], ["https://tec.openplanner.team/stops/H2ca108a", "https://tec.openplanner.team/stops/H2mo127c"], ["https://tec.openplanner.team/stops/Cracave2", "https://tec.openplanner.team/stops/Craferr1"], ["https://tec.openplanner.team/stops/H1ms253b", "https://tec.openplanner.team/stops/H1ms278b"], ["https://tec.openplanner.team/stops/LSPentr1", "https://tec.openplanner.team/stops/LSPxhou1"], ["https://tec.openplanner.team/stops/Ladboti2", "https://tec.openplanner.team/stops/Ldidefo1"], ["https://tec.openplanner.team/stops/X634aia", "https://tec.openplanner.team/stops/X634aka"], ["https://tec.openplanner.team/stops/LHChomb1", "https://tec.openplanner.team/stops/LHCmonu2"], ["https://tec.openplanner.team/stops/X818aga", "https://tec.openplanner.team/stops/X822ada"], ["https://tec.openplanner.team/stops/LeUbahn4", "https://tec.openplanner.team/stops/LeUschn1"], ["https://tec.openplanner.team/stops/H1hr118a", "https://tec.openplanner.team/stops/H1hr122b"], ["https://tec.openplanner.team/stops/H4ob110b", "https://tec.openplanner.team/stops/H4rc234b"], ["https://tec.openplanner.team/stops/Cchdrai2", "https://tec.openplanner.team/stops/Cchtour2"], ["https://tec.openplanner.team/stops/N204aeb", "https://tec.openplanner.team/stops/N559aab"], ["https://tec.openplanner.team/stops/N286aba", "https://tec.openplanner.team/stops/N286abb"], ["https://tec.openplanner.team/stops/X622afa", "https://tec.openplanner.team/stops/X622afb"], ["https://tec.openplanner.team/stops/LVLruis1", "https://tec.openplanner.team/stops/LVLruis2"], ["https://tec.openplanner.team/stops/Cgofert1", "https://tec.openplanner.team/stops/Cgosmoi2"], ["https://tec.openplanner.team/stops/N125aab", "https://tec.openplanner.team/stops/N125aac"], ["https://tec.openplanner.team/stops/X782aka", "https://tec.openplanner.team/stops/X782aoa"], ["https://tec.openplanner.team/stops/H2hg265a", "https://tec.openplanner.team/stops/H2hg265b"], ["https://tec.openplanner.team/stops/LJSforg2", "https://tec.openplanner.team/stops/Lpetenn2"], ["https://tec.openplanner.team/stops/Cfvombo1", "https://tec.openplanner.team/stops/Clfmonu3"], ["https://tec.openplanner.team/stops/H4le128a", "https://tec.openplanner.team/stops/H4we139b"], ["https://tec.openplanner.team/stops/N229aeb", "https://tec.openplanner.team/stops/N229aec"], ["https://tec.openplanner.team/stops/Ccoacar2", "https://tec.openplanner.team/stops/Ccotrie3"], ["https://tec.openplanner.team/stops/H1sa113a", "https://tec.openplanner.team/stops/H1sa113b"], ["https://tec.openplanner.team/stops/LHXn47-4", "https://tec.openplanner.team/stops/LSMtarg1"], ["https://tec.openplanner.team/stops/Bsencen1", "https://tec.openplanner.team/stops/Bsences1"], ["https://tec.openplanner.team/stops/Bjodeco3", "https://tec.openplanner.team/stops/Bsrgegl1"], ["https://tec.openplanner.team/stops/H1ag104a", "https://tec.openplanner.team/stops/H1ag106a"], ["https://tec.openplanner.team/stops/Ccojaur1", "https://tec.openplanner.team/stops/Ccojaur3"], ["https://tec.openplanner.team/stops/X790adb", "https://tec.openplanner.team/stops/X790aja"], ["https://tec.openplanner.team/stops/H4bo116a", "https://tec.openplanner.team/stops/H4bo116b"], ["https://tec.openplanner.team/stops/H4am100a", "https://tec.openplanner.team/stops/H4or115a"], ["https://tec.openplanner.team/stops/X729aab", "https://tec.openplanner.team/stops/X729ada"], ["https://tec.openplanner.team/stops/Cgdcent1", "https://tec.openplanner.team/stops/Cgdcent2"], ["https://tec.openplanner.team/stops/N574ada", "https://tec.openplanner.team/stops/N574adb"], ["https://tec.openplanner.team/stops/Btslenf1", "https://tec.openplanner.team/stops/Btslpbr1"], ["https://tec.openplanner.team/stops/H1qv110a", "https://tec.openplanner.team/stops/H1qv113a"], ["https://tec.openplanner.team/stops/N541aaa", "https://tec.openplanner.team/stops/N541aab"], ["https://tec.openplanner.team/stops/Clolidl1", "https://tec.openplanner.team/stops/Clolidl2"], ["https://tec.openplanner.team/stops/Llggill1", "https://tec.openplanner.team/stops/Llggill3"], ["https://tec.openplanner.team/stops/N309aaa", "https://tec.openplanner.team/stops/N309aab"], ["https://tec.openplanner.team/stops/H1mm127a", "https://tec.openplanner.team/stops/H1vb148a"], ["https://tec.openplanner.team/stops/LFRcoun2", "https://tec.openplanner.team/stops/LFRrohe1"], ["https://tec.openplanner.team/stops/LaMhe831", "https://tec.openplanner.team/stops/LaMwies2"], ["https://tec.openplanner.team/stops/Cjumade4", "https://tec.openplanner.team/stops/CMcarr2"], ["https://tec.openplanner.team/stops/N331aaa", "https://tec.openplanner.team/stops/N331aab"], ["https://tec.openplanner.team/stops/Brsgrol1", "https://tec.openplanner.team/stops/Brsgter2"], ["https://tec.openplanner.team/stops/H1ms278a", "https://tec.openplanner.team/stops/H1ms906a"], ["https://tec.openplanner.team/stops/H4be103b", "https://tec.openplanner.team/stops/H4be114a"], ["https://tec.openplanner.team/stops/N501etd", "https://tec.openplanner.team/stops/N501ety"], ["https://tec.openplanner.team/stops/LAWhein1", "https://tec.openplanner.team/stops/LAWhein3"], ["https://tec.openplanner.team/stops/LORherl1", "https://tec.openplanner.team/stops/LORroma1"], ["https://tec.openplanner.team/stops/N252abb", "https://tec.openplanner.team/stops/N252acc"], ["https://tec.openplanner.team/stops/LTPspay1", "https://tec.openplanner.team/stops/LTPspay2"], ["https://tec.openplanner.team/stops/Ccipech2", "https://tec.openplanner.team/stops/Cmlaili1"], ["https://tec.openplanner.team/stops/H1he101a", "https://tec.openplanner.team/stops/H1he105b"], ["https://tec.openplanner.team/stops/N149aia", "https://tec.openplanner.team/stops/N149aib"], ["https://tec.openplanner.team/stops/LrUbrac1", "https://tec.openplanner.team/stops/LrUbrac2"], ["https://tec.openplanner.team/stops/N501jga", "https://tec.openplanner.team/stops/N501jgb"], ["https://tec.openplanner.team/stops/H3bi115a", "https://tec.openplanner.team/stops/H3bi115b"], ["https://tec.openplanner.team/stops/Cmmgadi1", "https://tec.openplanner.team/stops/Cmybefe1"], ["https://tec.openplanner.team/stops/LCvneu-1", "https://tec.openplanner.team/stops/LCvoufn2"], ["https://tec.openplanner.team/stops/N230alb", "https://tec.openplanner.team/stops/N230ama"], ["https://tec.openplanner.team/stops/N584boa", "https://tec.openplanner.team/stops/N584bqb"], ["https://tec.openplanner.team/stops/N385aec", "https://tec.openplanner.team/stops/N385aed"], ["https://tec.openplanner.team/stops/Cgostex2", "https://tec.openplanner.team/stops/Cjudaxi1"], ["https://tec.openplanner.team/stops/Caigibe1", "https://tec.openplanner.team/stops/Crspair2"], ["https://tec.openplanner.team/stops/X763afa", "https://tec.openplanner.team/stops/X763afb"], ["https://tec.openplanner.team/stops/N505alb", "https://tec.openplanner.team/stops/N511aib"], ["https://tec.openplanner.team/stops/H4he103a", "https://tec.openplanner.team/stops/H4he104a"], ["https://tec.openplanner.team/stops/Lhuferm1", "https://tec.openplanner.team/stops/Lpevove2"], ["https://tec.openplanner.team/stops/N525ajb", "https://tec.openplanner.team/stops/N525azb"], ["https://tec.openplanner.team/stops/LBSneuv2", "https://tec.openplanner.team/stops/LBStong2"], ["https://tec.openplanner.team/stops/Clftour2", "https://tec.openplanner.team/stops/Cstvape2"], ["https://tec.openplanner.team/stops/X926aab", "https://tec.openplanner.team/stops/X927ada"], ["https://tec.openplanner.team/stops/LbUkrei*", "https://tec.openplanner.team/stops/LbUmolk2"], ["https://tec.openplanner.team/stops/Baegegl1", "https://tec.openplanner.team/stops/Baeggar1"], ["https://tec.openplanner.team/stops/LAyegli2", "https://tec.openplanner.team/stops/Lrechap1"], ["https://tec.openplanner.team/stops/X601asa", "https://tec.openplanner.team/stops/X601asb"], ["https://tec.openplanner.team/stops/Ctuplac2", "https://tec.openplanner.team/stops/Ctuplac3"], ["https://tec.openplanner.team/stops/Baudhde2", "https://tec.openplanner.team/stops/Baudwav2"], ["https://tec.openplanner.team/stops/X897aoc", "https://tec.openplanner.team/stops/X897aqb"], ["https://tec.openplanner.team/stops/X638aab", "https://tec.openplanner.team/stops/X638afb"], ["https://tec.openplanner.team/stops/N579afa", "https://tec.openplanner.team/stops/N580ahb"], ["https://tec.openplanner.team/stops/X757aga", "https://tec.openplanner.team/stops/X757aib"], ["https://tec.openplanner.team/stops/H4ty308a", "https://tec.openplanner.team/stops/H4ty308e"], ["https://tec.openplanner.team/stops/Lseprog1", "https://tec.openplanner.team/stops/Lseptsa2"], ["https://tec.openplanner.team/stops/NL57aga", "https://tec.openplanner.team/stops/NL57aka"], ["https://tec.openplanner.team/stops/Barchez1", "https://tec.openplanner.team/stops/Barchez2"], ["https://tec.openplanner.team/stops/LSSjeun1", "https://tec.openplanner.team/stops/LSSjeun2"], ["https://tec.openplanner.team/stops/Lmochar1", "https://tec.openplanner.team/stops/Lmochar2"], ["https://tec.openplanner.team/stops/H4vx364b", "https://tec.openplanner.team/stops/H4vx365a"], ["https://tec.openplanner.team/stops/Crcegli2", "https://tec.openplanner.team/stops/Crcpcom2"], ["https://tec.openplanner.team/stops/Bgdhcsh1", "https://tec.openplanner.team/stops/Bgdhcsh2"], ["https://tec.openplanner.team/stops/LFmeg--2", "https://tec.openplanner.team/stops/LFmroye1"], ["https://tec.openplanner.team/stops/Cgyblob1", "https://tec.openplanner.team/stops/Cgymetr1"], ["https://tec.openplanner.team/stops/H1em101a", "https://tec.openplanner.team/stops/H1em107b"], ["https://tec.openplanner.team/stops/Ctucomm1", "https://tec.openplanner.team/stops/Ctucomm2"], ["https://tec.openplanner.team/stops/Llgnaes1", "https://tec.openplanner.team/stops/Llgseel2"], ["https://tec.openplanner.team/stops/Lmnchal1", "https://tec.openplanner.team/stops/Lmnjeha2"], ["https://tec.openplanner.team/stops/N233aba", "https://tec.openplanner.team/stops/N233abb"], ["https://tec.openplanner.team/stops/LLbbons2", "https://tec.openplanner.team/stops/LLbcafe1"], ["https://tec.openplanner.team/stops/H4co106d", "https://tec.openplanner.team/stops/H4co141b"], ["https://tec.openplanner.team/stops/X658aha", "https://tec.openplanner.team/stops/X659aib"], ["https://tec.openplanner.team/stops/LHbcent1", "https://tec.openplanner.team/stops/LJAwerf2"], ["https://tec.openplanner.team/stops/Bblapin1", "https://tec.openplanner.team/stops/Brsgter2"], ["https://tec.openplanner.team/stops/LaMpost1", "https://tec.openplanner.team/stops/LaMpost2"], ["https://tec.openplanner.team/stops/H4ty297a", "https://tec.openplanner.team/stops/H4ty379a"], ["https://tec.openplanner.team/stops/X782ada", "https://tec.openplanner.team/stops/X782aeb"], ["https://tec.openplanner.team/stops/LDmdegi1", "https://tec.openplanner.team/stops/LDmdegi2"], ["https://tec.openplanner.team/stops/X766acb", "https://tec.openplanner.team/stops/X766agb"], ["https://tec.openplanner.team/stops/N201atb", "https://tec.openplanner.team/stops/N201aub"], ["https://tec.openplanner.team/stops/LCHfond1", "https://tec.openplanner.team/stops/LCHfond2"], ["https://tec.openplanner.team/stops/Bptecar2", "https://tec.openplanner.team/stops/Bptegna1"], ["https://tec.openplanner.team/stops/X754aja", "https://tec.openplanner.team/stops/X754ajb"], ["https://tec.openplanner.team/stops/N547aja", "https://tec.openplanner.team/stops/N573ara"], ["https://tec.openplanner.team/stops/LMoelno1", "https://tec.openplanner.team/stops/LMoelno2"], ["https://tec.openplanner.team/stops/NC23aca", "https://tec.openplanner.team/stops/NC23acb"], ["https://tec.openplanner.team/stops/Brsgm301", "https://tec.openplanner.team/stops/Brsgm802"], ["https://tec.openplanner.team/stops/H4ar103a", "https://tec.openplanner.team/stops/H4lg103b"], ["https://tec.openplanner.team/stops/Bgemman2", "https://tec.openplanner.team/stops/N522acb"], ["https://tec.openplanner.team/stops/Bnivaig1", "https://tec.openplanner.team/stops/Bnivcma2"], ["https://tec.openplanner.team/stops/Bsoigar2", "https://tec.openplanner.team/stops/H3so163a"], ["https://tec.openplanner.team/stops/LFmecli3", "https://tec.openplanner.team/stops/LFmeg--1"], ["https://tec.openplanner.team/stops/LHHindu2", "https://tec.openplanner.team/stops/LHHpt--1"], ["https://tec.openplanner.team/stops/H4ty290b", "https://tec.openplanner.team/stops/H4ty359b"], ["https://tec.openplanner.team/stops/LHUfrai2", "https://tec.openplanner.team/stops/LHUvege1"], ["https://tec.openplanner.team/stops/Livfays1", "https://tec.openplanner.team/stops/Livfays2"], ["https://tec.openplanner.team/stops/LVleg--5", "https://tec.openplanner.team/stops/LVleg--6"], ["https://tec.openplanner.team/stops/H4ma204b", "https://tec.openplanner.team/stops/H4oq226b"], ["https://tec.openplanner.team/stops/Llg20ao1", "https://tec.openplanner.team/stops/Llg20ao3"], ["https://tec.openplanner.team/stops/X662aqa", "https://tec.openplanner.team/stops/X662aqb"], ["https://tec.openplanner.team/stops/Cjupllo2", "https://tec.openplanner.team/stops/CMtsan2"], ["https://tec.openplanner.team/stops/LPrcarr1", "https://tec.openplanner.team/stops/X261aaa"], ["https://tec.openplanner.team/stops/LBjflor1", "https://tec.openplanner.team/stops/X576ahb"], ["https://tec.openplanner.team/stops/Bbounci2", "https://tec.openplanner.team/stops/Bcerpco2"], ["https://tec.openplanner.team/stops/X993aab", "https://tec.openplanner.team/stops/X993ahb"], ["https://tec.openplanner.team/stops/H4ch120b", "https://tec.openplanner.team/stops/H4ch120c"], ["https://tec.openplanner.team/stops/Bbstbou1", "https://tec.openplanner.team/stops/Btancnd2"], ["https://tec.openplanner.team/stops/Cgzmarb1", "https://tec.openplanner.team/stops/Cgzmarb2"], ["https://tec.openplanner.team/stops/Bcsecar2", "https://tec.openplanner.team/stops/Bmoufil2"], ["https://tec.openplanner.team/stops/X804aqa", "https://tec.openplanner.team/stops/X804ara"], ["https://tec.openplanner.team/stops/LAmarbo2", "https://tec.openplanner.team/stops/LAmsart2"], ["https://tec.openplanner.team/stops/LSpschi1", "https://tec.openplanner.team/stops/LSpunio2"], ["https://tec.openplanner.team/stops/N536aaa", "https://tec.openplanner.team/stops/N536adb"], ["https://tec.openplanner.team/stops/H4ne144a", "https://tec.openplanner.team/stops/H4ne144c"], ["https://tec.openplanner.team/stops/Caibino2", "https://tec.openplanner.team/stops/Caiecol2"], ["https://tec.openplanner.team/stops/N116aab", "https://tec.openplanner.team/stops/N116aad"], ["https://tec.openplanner.team/stops/X640aaa", "https://tec.openplanner.team/stops/X640abb"], ["https://tec.openplanner.team/stops/LWNberg1", "https://tec.openplanner.team/stops/LWNfani2"], ["https://tec.openplanner.team/stops/X937alb", "https://tec.openplanner.team/stops/X946agb"], ["https://tec.openplanner.team/stops/X890aaa", "https://tec.openplanner.team/stops/X890ada"], ["https://tec.openplanner.team/stops/LLnec--2", "https://tec.openplanner.team/stops/LLnpomp2"], ["https://tec.openplanner.team/stops/Ccu6bra5", "https://tec.openplanner.team/stops/Ccutrav2"], ["https://tec.openplanner.team/stops/X261aca", "https://tec.openplanner.team/stops/X261acb"], ["https://tec.openplanner.team/stops/LPLcarr1", "https://tec.openplanner.team/stops/LPLline1"], ["https://tec.openplanner.team/stops/H4es108a", "https://tec.openplanner.team/stops/H4ln155a"], ["https://tec.openplanner.team/stops/Bllngar8", "https://tec.openplanner.team/stops/Bllngar9"], ["https://tec.openplanner.team/stops/H4ty281b", "https://tec.openplanner.team/stops/H4ty336b"], ["https://tec.openplanner.team/stops/H1bu140b", "https://tec.openplanner.team/stops/H2le150a"], ["https://tec.openplanner.team/stops/N235aha", "https://tec.openplanner.team/stops/N236afb"], ["https://tec.openplanner.team/stops/H2le153b", "https://tec.openplanner.team/stops/H2pe156b"], ["https://tec.openplanner.team/stops/Ccoforr1", "https://tec.openplanner.team/stops/Ccopeti1"], ["https://tec.openplanner.team/stops/X663ada", "https://tec.openplanner.team/stops/X663agb"], ["https://tec.openplanner.team/stops/X659aka", "https://tec.openplanner.team/stops/X659ana"], ["https://tec.openplanner.team/stops/N517adc", "https://tec.openplanner.team/stops/N517add"], ["https://tec.openplanner.team/stops/H1gr116b", "https://tec.openplanner.team/stops/H1gr123b"], ["https://tec.openplanner.team/stops/LCsraws1", "https://tec.openplanner.team/stops/LCsraws2"], ["https://tec.openplanner.team/stops/X604aab", "https://tec.openplanner.team/stops/X634ahb"], ["https://tec.openplanner.team/stops/Bcrbmsg2", "https://tec.openplanner.team/stops/Bmsggra3"], ["https://tec.openplanner.team/stops/NC02aba", "https://tec.openplanner.team/stops/NC24aia"], ["https://tec.openplanner.team/stops/X801bza", "https://tec.openplanner.team/stops/X801cca"], ["https://tec.openplanner.team/stops/Cjualed1", "https://tec.openplanner.team/stops/Cjupn3"], ["https://tec.openplanner.team/stops/N536aab", "https://tec.openplanner.team/stops/N536apb"], ["https://tec.openplanner.team/stops/Lmobras1", "https://tec.openplanner.team/stops/Lmopech1"], ["https://tec.openplanner.team/stops/Llgjonr2", "https://tec.openplanner.team/stops/Llgmagh2"], ["https://tec.openplanner.team/stops/LVIdeva1", "https://tec.openplanner.team/stops/LVIhala3"], ["https://tec.openplanner.team/stops/N117abb", "https://tec.openplanner.team/stops/N117bba"], ["https://tec.openplanner.team/stops/LlgguilC", "https://tec.openplanner.team/stops/LlgguilE"], ["https://tec.openplanner.team/stops/Btsleco2", "https://tec.openplanner.team/stops/Btslenf2"], ["https://tec.openplanner.team/stops/N543cla", "https://tec.openplanner.team/stops/N543coa"], ["https://tec.openplanner.team/stops/X911ara", "https://tec.openplanner.team/stops/X911asa"], ["https://tec.openplanner.team/stops/LrcarsT1", "https://tec.openplanner.team/stops/LrcarsT3"], ["https://tec.openplanner.team/stops/Cmehels1", "https://tec.openplanner.team/stops/Cwxplac2"], ["https://tec.openplanner.team/stops/Btilgar1", "https://tec.openplanner.team/stops/Bvlvmar1"], ["https://tec.openplanner.team/stops/X822aea", "https://tec.openplanner.team/stops/X822afa"], ["https://tec.openplanner.team/stops/H4mo149a", "https://tec.openplanner.team/stops/H4mo167a"], ["https://tec.openplanner.team/stops/LlNm%C3%BChl1", "https://tec.openplanner.team/stops/LlNm%C3%BChl2"], ["https://tec.openplanner.team/stops/X757aja", "https://tec.openplanner.team/stops/X757ajb"], ["https://tec.openplanner.team/stops/H4mb202b", "https://tec.openplanner.team/stops/H4mb203b"], ["https://tec.openplanner.team/stops/LeUcamp1", "https://tec.openplanner.team/stops/LeUcamp2"], ["https://tec.openplanner.team/stops/Baudstr1", "https://tec.openplanner.team/stops/Bettars1"], ["https://tec.openplanner.team/stops/H4ty342b", "https://tec.openplanner.team/stops/H4ty349b"], ["https://tec.openplanner.team/stops/LDmeg--2", "https://tec.openplanner.team/stops/LHoetie2"], ["https://tec.openplanner.team/stops/X608aia", "https://tec.openplanner.team/stops/X627aaa"], ["https://tec.openplanner.team/stops/Lsecris3", "https://tec.openplanner.team/stops/Lseegva2"], ["https://tec.openplanner.team/stops/LGLcour4", "https://tec.openplanner.team/stops/LGLspor2"], ["https://tec.openplanner.team/stops/Bblaast2", "https://tec.openplanner.team/stops/Bblavba1"], ["https://tec.openplanner.team/stops/X664aea", "https://tec.openplanner.team/stops/X667aab"], ["https://tec.openplanner.team/stops/LbUhuge2", "https://tec.openplanner.team/stops/LbUkrei*"], ["https://tec.openplanner.team/stops/LHSfexh1", "https://tec.openplanner.team/stops/LHSvina2"], ["https://tec.openplanner.team/stops/H1gy111a", "https://tec.openplanner.team/stops/H1le127b"], ["https://tec.openplanner.team/stops/Cgoloca2", "https://tec.openplanner.team/stops/Cgosoux1"], ["https://tec.openplanner.team/stops/X618acb", "https://tec.openplanner.team/stops/X619aeb"], ["https://tec.openplanner.team/stops/X943aha", "https://tec.openplanner.team/stops/X943ahb"], ["https://tec.openplanner.team/stops/Bnivath1", "https://tec.openplanner.team/stops/Bnivga71"], ["https://tec.openplanner.team/stops/N534blg", "https://tec.openplanner.team/stops/N534bmb"], ["https://tec.openplanner.team/stops/X902bcb", "https://tec.openplanner.team/stops/X999aka"], ["https://tec.openplanner.team/stops/Lchec--1", "https://tec.openplanner.team/stops/Lcheg--1"], ["https://tec.openplanner.team/stops/H4tp146b", "https://tec.openplanner.team/stops/H4wp148b"], ["https://tec.openplanner.team/stops/Cbwegl1", "https://tec.openplanner.team/stops/Cbwegl2"], ["https://tec.openplanner.team/stops/LSBrouf3", "https://tec.openplanner.team/stops/LSBrouf4"], ["https://tec.openplanner.team/stops/X396aca", "https://tec.openplanner.team/stops/X396afa"], ["https://tec.openplanner.team/stops/Lvefanc2", "https://tec.openplanner.team/stops/Lvegrap2"], ["https://tec.openplanner.team/stops/H1fr107a", "https://tec.openplanner.team/stops/H1fr107c"], ["https://tec.openplanner.team/stops/X834aba", "https://tec.openplanner.team/stops/X834abb"], ["https://tec.openplanner.team/stops/X601cga", "https://tec.openplanner.team/stops/X662aia"], ["https://tec.openplanner.team/stops/Cmogrbu1", "https://tec.openplanner.team/stops/Cmoscap1"], ["https://tec.openplanner.team/stops/N232bdb", "https://tec.openplanner.team/stops/N232bea"], ["https://tec.openplanner.team/stops/LkOgren1", "https://tec.openplanner.team/stops/LkOgren2"], ["https://tec.openplanner.team/stops/LPRecol2", "https://tec.openplanner.team/stops/LPRmoul2"], ["https://tec.openplanner.team/stops/Bohnhan1", "https://tec.openplanner.team/stops/Bohnman1"], ["https://tec.openplanner.team/stops/H5at130a", "https://tec.openplanner.team/stops/H5at136a"], ["https://tec.openplanner.team/stops/Cmlasie1", "https://tec.openplanner.team/stops/Cmlstni2"], ["https://tec.openplanner.team/stops/LSeaque2", "https://tec.openplanner.team/stops/LSeaque4"], ["https://tec.openplanner.team/stops/Cmlavch1", "https://tec.openplanner.team/stops/Cmllecl4"], ["https://tec.openplanner.team/stops/N118avc", "https://tec.openplanner.team/stops/N118axb"], ["https://tec.openplanner.team/stops/LgAnr491", "https://tec.openplanner.team/stops/LnUneun2"], ["https://tec.openplanner.team/stops/H4ar103a", "https://tec.openplanner.team/stops/H4ar173b"], ["https://tec.openplanner.team/stops/LCxcouv2", "https://tec.openplanner.team/stops/LCxwade2"], ["https://tec.openplanner.team/stops/N109aca", "https://tec.openplanner.team/stops/N109acb"], ["https://tec.openplanner.team/stops/LCFcafe1", "https://tec.openplanner.team/stops/LMtcent2"], ["https://tec.openplanner.team/stops/N549aeb", "https://tec.openplanner.team/stops/N550abe"], ["https://tec.openplanner.team/stops/Llglefe1", "https://tec.openplanner.team/stops/Llglefe2"], ["https://tec.openplanner.team/stops/N562aia", "https://tec.openplanner.team/stops/N562aib"], ["https://tec.openplanner.team/stops/Lpelouh2", "https://tec.openplanner.team/stops/Lpepano2"], ["https://tec.openplanner.team/stops/Bbsicea2", "https://tec.openplanner.team/stops/Bbsihau1"], ["https://tec.openplanner.team/stops/Cmtdepo2", "https://tec.openplanner.team/stops/Cmtneuv2"], ["https://tec.openplanner.team/stops/N508ama", "https://tec.openplanner.team/stops/N509arb"], ["https://tec.openplanner.team/stops/X786aia", "https://tec.openplanner.team/stops/X788abd"], ["https://tec.openplanner.team/stops/Bvilcim1", "https://tec.openplanner.team/stops/Bvilcim2"], ["https://tec.openplanner.team/stops/X992aga", "https://tec.openplanner.team/stops/X992aha"], ["https://tec.openplanner.team/stops/H1ht129a", "https://tec.openplanner.team/stops/H1ht129b"], ["https://tec.openplanner.team/stops/X715aca", "https://tec.openplanner.team/stops/X715ada"], ["https://tec.openplanner.team/stops/X793aaa", "https://tec.openplanner.team/stops/X793abb"], ["https://tec.openplanner.team/stops/Bmarmru1", "https://tec.openplanner.team/stops/Btilsnc1"], ["https://tec.openplanner.team/stops/Lmlcher1", "https://tec.openplanner.team/stops/Lmlpata*"], ["https://tec.openplanner.team/stops/LBzvill2", "https://tec.openplanner.team/stops/LVBcarr1"], ["https://tec.openplanner.team/stops/N102aca", "https://tec.openplanner.team/stops/N103aia"], ["https://tec.openplanner.team/stops/H4li179a", "https://tec.openplanner.team/stops/H4li179d"], ["https://tec.openplanner.team/stops/N534bra", "https://tec.openplanner.team/stops/N534bta"], ["https://tec.openplanner.team/stops/LaMthei1", "https://tec.openplanner.team/stops/LaMwies1"], ["https://tec.openplanner.team/stops/N506aja", "https://tec.openplanner.team/stops/N506asb"], ["https://tec.openplanner.team/stops/X750ava", "https://tec.openplanner.team/stops/X750avb"], ["https://tec.openplanner.team/stops/X625aca", "https://tec.openplanner.team/stops/X625aea"], ["https://tec.openplanner.team/stops/LFTcroi1", "https://tec.openplanner.team/stops/LFTcroi3"], ["https://tec.openplanner.team/stops/Cdalpla2", "https://tec.openplanner.team/stops/CMlpla2"], ["https://tec.openplanner.team/stops/N207aba", "https://tec.openplanner.team/stops/X221aac"], ["https://tec.openplanner.team/stops/Bfelcen1", "https://tec.openplanner.team/stops/Bfelfde1"], ["https://tec.openplanner.team/stops/LVLbovy1", "https://tec.openplanner.team/stops/LVLecco1"], ["https://tec.openplanner.team/stops/H1gi121a", "https://tec.openplanner.team/stops/H1gi123b"], ["https://tec.openplanner.team/stops/X812aga", "https://tec.openplanner.team/stops/X812aja"], ["https://tec.openplanner.team/stops/N220adb", "https://tec.openplanner.team/stops/N224aba"], ["https://tec.openplanner.team/stops/Bcsebea2", "https://tec.openplanner.team/stops/Bmsgpap2"], ["https://tec.openplanner.team/stops/Lqbeg--1", "https://tec.openplanner.team/stops/Lqbeg--2"], ["https://tec.openplanner.team/stops/N203aea", "https://tec.openplanner.team/stops/N203afa"], ["https://tec.openplanner.team/stops/LXhcite2", "https://tec.openplanner.team/stops/LXhmara1"], ["https://tec.openplanner.team/stops/N215aba", "https://tec.openplanner.team/stops/N232cea"], ["https://tec.openplanner.team/stops/N512afa", "https://tec.openplanner.team/stops/N512afb"], ["https://tec.openplanner.team/stops/LaSbahn1", "https://tec.openplanner.team/stops/LwAprei1"], ["https://tec.openplanner.team/stops/Cbmmafr1", "https://tec.openplanner.team/stops/Cbmpopr1"], ["https://tec.openplanner.team/stops/Llghenr2", "https://tec.openplanner.team/stops/Llglamb1"], ["https://tec.openplanner.team/stops/Cflathe2", "https://tec.openplanner.team/stops/Cflfaub2"], ["https://tec.openplanner.team/stops/LeYberl1", "https://tec.openplanner.team/stops/LeYraaf1"], ["https://tec.openplanner.team/stops/N308anb", "https://tec.openplanner.team/stops/N312ada"], ["https://tec.openplanner.team/stops/H1cd111c", "https://tec.openplanner.team/stops/H1ne149a"], ["https://tec.openplanner.team/stops/Bmsgfon2", "https://tec.openplanner.team/stops/Bmsgpfo2"], ["https://tec.openplanner.team/stops/LMYmont2", "https://tec.openplanner.team/stops/LMYroin1"], ["https://tec.openplanner.team/stops/LHseg--2", "https://tec.openplanner.team/stops/LHseg--3"], ["https://tec.openplanner.team/stops/X991aeb", "https://tec.openplanner.team/stops/X991afa"], ["https://tec.openplanner.team/stops/LSochal1", "https://tec.openplanner.team/stops/LSochal2"], ["https://tec.openplanner.team/stops/Bitrcan1", "https://tec.openplanner.team/stops/Bvirgar1"], ["https://tec.openplanner.team/stops/LBCaube1", "https://tec.openplanner.team/stops/LMAbass2"], ["https://tec.openplanner.team/stops/H4mx116b", "https://tec.openplanner.team/stops/H4po130a"], ["https://tec.openplanner.team/stops/N118aca", "https://tec.openplanner.team/stops/N118aya"], ["https://tec.openplanner.team/stops/H4og207b", "https://tec.openplanner.team/stops/H4og216a"], ["https://tec.openplanner.team/stops/H1ms288b", "https://tec.openplanner.team/stops/H1ms367a"], ["https://tec.openplanner.team/stops/X923aqa", "https://tec.openplanner.team/stops/X925afb"], ["https://tec.openplanner.team/stops/Cwgpatr1", "https://tec.openplanner.team/stops/Cwgrans2"], ["https://tec.openplanner.team/stops/LNCimpe1", "https://tec.openplanner.team/stops/LNClila1"], ["https://tec.openplanner.team/stops/N137aeb", "https://tec.openplanner.team/stops/N137agb"], ["https://tec.openplanner.team/stops/X784aca", "https://tec.openplanner.team/stops/X784alb"], ["https://tec.openplanner.team/stops/LEnvill2", "https://tec.openplanner.team/stops/NL73aab"], ["https://tec.openplanner.team/stops/Lpeatel1", "https://tec.openplanner.team/stops/Lpeatel2"], ["https://tec.openplanner.team/stops/X715aca", "https://tec.openplanner.team/stops/X715apb"], ["https://tec.openplanner.team/stops/X919aba", "https://tec.openplanner.team/stops/X919acb"], ["https://tec.openplanner.team/stops/Cmychap1", "https://tec.openplanner.team/stops/Cmychap4"], ["https://tec.openplanner.team/stops/Bneeace1", "https://tec.openplanner.team/stops/Bneervc1"], ["https://tec.openplanner.team/stops/X801bka", "https://tec.openplanner.team/stops/X836aha"], ["https://tec.openplanner.team/stops/Lmogerm1", "https://tec.openplanner.team/stops/Lmomine1"], ["https://tec.openplanner.team/stops/H4ht172b", "https://tec.openplanner.team/stops/H4la198c"], ["https://tec.openplanner.team/stops/LESamos1", "https://tec.openplanner.team/stops/LESecco2"], ["https://tec.openplanner.team/stops/Bhencha2", "https://tec.openplanner.team/stops/Bhenhau2"], ["https://tec.openplanner.team/stops/LoUober2", "https://tec.openplanner.team/stops/LoUzent1"], ["https://tec.openplanner.team/stops/N874aca", "https://tec.openplanner.team/stops/N894acb"], ["https://tec.openplanner.team/stops/N530aca", "https://tec.openplanner.team/stops/N530aja"], ["https://tec.openplanner.team/stops/X761ada", "https://tec.openplanner.team/stops/X761adb"], ["https://tec.openplanner.team/stops/Lvehv--4", "https://tec.openplanner.team/stops/Lvepala2"], ["https://tec.openplanner.team/stops/LBRbriv2", "https://tec.openplanner.team/stops/LBRgare2"], ["https://tec.openplanner.team/stops/Lemambi2", "https://tec.openplanner.team/stops/Lemmc--2"], ["https://tec.openplanner.team/stops/LbUmors1", "https://tec.openplanner.team/stops/LmRh%C3%B6812"], ["https://tec.openplanner.team/stops/H1pa109c", "https://tec.openplanner.team/stops/H1pa167a"], ["https://tec.openplanner.team/stops/X805afb", "https://tec.openplanner.team/stops/X869aba"], ["https://tec.openplanner.team/stops/X602aka", "https://tec.openplanner.team/stops/X602akb"], ["https://tec.openplanner.team/stops/H4me213b", "https://tec.openplanner.team/stops/H4ve137a"], ["https://tec.openplanner.team/stops/Loucoti1", "https://tec.openplanner.team/stops/Loutrix1"], ["https://tec.openplanner.team/stops/X917aja", "https://tec.openplanner.team/stops/X917ajb"], ["https://tec.openplanner.team/stops/Lroeg--2", "https://tec.openplanner.team/stops/Lroeg--3"], ["https://tec.openplanner.team/stops/H4cw106a", "https://tec.openplanner.team/stops/H4hg156a"], ["https://tec.openplanner.team/stops/Bmarcha1", "https://tec.openplanner.team/stops/Bmarcha2"], ["https://tec.openplanner.team/stops/Lgrstou1", "https://tec.openplanner.team/stops/Lgrstou2"], ["https://tec.openplanner.team/stops/Chpcarp2", "https://tec.openplanner.team/stops/Cwgtill1"], ["https://tec.openplanner.team/stops/LMXaven2", "https://tec.openplanner.team/stops/LMXempe2"], ["https://tec.openplanner.team/stops/X808aib", "https://tec.openplanner.team/stops/X808ajb"], ["https://tec.openplanner.team/stops/LoDkoll1", "https://tec.openplanner.team/stops/LoDmuhl2"], ["https://tec.openplanner.team/stops/Lstchu-2", "https://tec.openplanner.team/stops/Lstchu-4"], ["https://tec.openplanner.team/stops/Lflec--2", "https://tec.openplanner.team/stops/Lfljupi1"], ["https://tec.openplanner.team/stops/LChvill*", "https://tec.openplanner.team/stops/LJAgoff2"], ["https://tec.openplanner.team/stops/Buccpor1", "https://tec.openplanner.team/stops/Buccvbe2"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lhueg--1"], ["https://tec.openplanner.team/stops/Lougoff1", "https://tec.openplanner.team/stops/Lougoff2"], ["https://tec.openplanner.team/stops/Bbeacha2", "https://tec.openplanner.team/stops/Bbeapim1"], ["https://tec.openplanner.team/stops/Bblavol2", "https://tec.openplanner.team/stops/Bwatbca2"], ["https://tec.openplanner.team/stops/Bjodrdp2", "https://tec.openplanner.team/stops/Bjodsje1"], ["https://tec.openplanner.team/stops/X948alb", "https://tec.openplanner.team/stops/X948bbb"], ["https://tec.openplanner.team/stops/Cclmoul1", "https://tec.openplanner.team/stops/Ctuplac2"], ["https://tec.openplanner.team/stops/Canboni1", "https://tec.openplanner.team/stops/Canplch3"], ["https://tec.openplanner.team/stops/X770aca", "https://tec.openplanner.team/stops/X770aea"], ["https://tec.openplanner.team/stops/Clrhava1", "https://tec.openplanner.team/stops/Clrwesp1"], ["https://tec.openplanner.team/stops/Lmochpl2", "https://tec.openplanner.team/stops/Lmodeni2"], ["https://tec.openplanner.team/stops/LlNbusc1", "https://tec.openplanner.team/stops/LlNsc651"], ["https://tec.openplanner.team/stops/LGefron1", "https://tec.openplanner.team/stops/LVAwolf1"], ["https://tec.openplanner.team/stops/N118agb", "https://tec.openplanner.team/stops/N118aib"], ["https://tec.openplanner.team/stops/LBItnt-*", "https://tec.openplanner.team/stops/LVevill1"], ["https://tec.openplanner.team/stops/N534bqb", "https://tec.openplanner.team/stops/N568aeb"], ["https://tec.openplanner.team/stops/X804arb", "https://tec.openplanner.team/stops/X804aya"], ["https://tec.openplanner.team/stops/H1pw122a", "https://tec.openplanner.team/stops/H1pw122b"], ["https://tec.openplanner.team/stops/H4oq223b", "https://tec.openplanner.team/stops/H4oq228a"], ["https://tec.openplanner.team/stops/N501hab", "https://tec.openplanner.team/stops/N501ihb"], ["https://tec.openplanner.team/stops/X897adb", "https://tec.openplanner.team/stops/X897aea"], ["https://tec.openplanner.team/stops/Bpiesta1", "https://tec.openplanner.team/stops/Bpiesta2"], ["https://tec.openplanner.team/stops/H1mm128a", "https://tec.openplanner.team/stops/H1mm132b"], ["https://tec.openplanner.team/stops/N291aaa", "https://tec.openplanner.team/stops/N291aba"], ["https://tec.openplanner.team/stops/Bllnchv1", "https://tec.openplanner.team/stops/Bllncom1"], ["https://tec.openplanner.team/stops/H4cw105a", "https://tec.openplanner.team/stops/H4hg158a"], ["https://tec.openplanner.team/stops/Blkbbvh2", "https://tec.openplanner.team/stops/Bucccre1"], ["https://tec.openplanner.team/stops/LeUlasc2", "https://tec.openplanner.team/stops/LeUrsi-*"], ["https://tec.openplanner.team/stops/X639ada", "https://tec.openplanner.team/stops/X639aea"], ["https://tec.openplanner.team/stops/H1by104a", "https://tec.openplanner.team/stops/H1sy148a"], ["https://tec.openplanner.team/stops/LHMcruc2", "https://tec.openplanner.team/stops/LHMpatl2"], ["https://tec.openplanner.team/stops/N512akb", "https://tec.openplanner.team/stops/N512ava"], ["https://tec.openplanner.team/stops/H4ma201a", "https://tec.openplanner.team/stops/H4ma204a"], ["https://tec.openplanner.team/stops/Lhr2ave2", "https://tec.openplanner.team/stops/Lhrmeta1"], ["https://tec.openplanner.team/stops/N584avb", "https://tec.openplanner.team/stops/N584cbb"], ["https://tec.openplanner.team/stops/Bjodgai2", "https://tec.openplanner.team/stops/Bsrgcur1"], ["https://tec.openplanner.team/stops/Cmaleri1", "https://tec.openplanner.team/stops/Cmazone1"], ["https://tec.openplanner.team/stops/X223aca", "https://tec.openplanner.team/stops/X919aba"], ["https://tec.openplanner.team/stops/H1as154a", "https://tec.openplanner.team/stops/H1nv325a"], ["https://tec.openplanner.team/stops/N206aba", "https://tec.openplanner.team/stops/N206abb"], ["https://tec.openplanner.team/stops/LlgR-F1*", "https://tec.openplanner.team/stops/LlgR-Fr*"], ["https://tec.openplanner.team/stops/Cfmchau2", "https://tec.openplanner.team/stops/Cfmrrou2"], ["https://tec.openplanner.team/stops/Lmlcrot*", "https://tec.openplanner.team/stops/Lmlpech2"], ["https://tec.openplanner.team/stops/LbUmolk1", "https://tec.openplanner.team/stops/LkRrauw1"], ["https://tec.openplanner.team/stops/H1si156d", "https://tec.openplanner.team/stops/H4bo179a"], ["https://tec.openplanner.team/stops/N232bra", "https://tec.openplanner.team/stops/N232caa"], ["https://tec.openplanner.team/stops/LHbcent2", "https://tec.openplanner.team/stops/LJAherb3"], ["https://tec.openplanner.team/stops/Cbetrie1", "https://tec.openplanner.team/stops/N161aea"], ["https://tec.openplanner.team/stops/LkEl3252", "https://tec.openplanner.team/stops/LMsvill1"], ["https://tec.openplanner.team/stops/N538ada", "https://tec.openplanner.team/stops/N539aka"], ["https://tec.openplanner.team/stops/H1ba102a", "https://tec.openplanner.team/stops/H1ba102b"], ["https://tec.openplanner.team/stops/X609aga", "https://tec.openplanner.team/stops/X609alb"], ["https://tec.openplanner.team/stops/NL78aca", "https://tec.openplanner.team/stops/NL78ada"], ["https://tec.openplanner.team/stops/LAYwerb2", "https://tec.openplanner.team/stops/LHrfang1"], ["https://tec.openplanner.team/stops/X616aib", "https://tec.openplanner.team/stops/X616aja"], ["https://tec.openplanner.team/stops/X801afb", "https://tec.openplanner.team/stops/X801ahb"], ["https://tec.openplanner.team/stops/Lstphys2", "https://tec.openplanner.team/stops/Lstpoly2"], ["https://tec.openplanner.team/stops/Cmesafi2", "https://tec.openplanner.team/stops/Csa4mai1"], ["https://tec.openplanner.team/stops/LAWchpl2", "https://tec.openplanner.team/stops/LBIpont2"], ["https://tec.openplanner.team/stops/LAWchau2", "https://tec.openplanner.team/stops/LAWlonc2"], ["https://tec.openplanner.team/stops/X952ada", "https://tec.openplanner.team/stops/X952aia"], ["https://tec.openplanner.team/stops/LHCmonu3", "https://tec.openplanner.team/stops/LHCruyf1"], ["https://tec.openplanner.team/stops/X950aaa", "https://tec.openplanner.team/stops/X950acb"], ["https://tec.openplanner.team/stops/N514ama", "https://tec.openplanner.team/stops/N515akc"], ["https://tec.openplanner.team/stops/H2sb243c", "https://tec.openplanner.team/stops/H2sb243d"], ["https://tec.openplanner.team/stops/Bbcodam3", "https://tec.openplanner.team/stops/Bhen5ma1"], ["https://tec.openplanner.team/stops/Cmadeli1", "https://tec.openplanner.team/stops/CMcart2"], ["https://tec.openplanner.team/stops/Cchwarm1", "https://tec.openplanner.team/stops/CMsama1"], ["https://tec.openplanner.team/stops/LRAcouv1", "https://tec.openplanner.team/stops/LRAcouv2"], ["https://tec.openplanner.team/stops/LBNvill1", "https://tec.openplanner.team/stops/LMemaza2"], ["https://tec.openplanner.team/stops/Bquebth2", "https://tec.openplanner.team/stops/Bquebth3"], ["https://tec.openplanner.team/stops/LlgguilD", "https://tec.openplanner.team/stops/Llgoise2"], ["https://tec.openplanner.team/stops/X793aia", "https://tec.openplanner.team/stops/X793aob"], ["https://tec.openplanner.team/stops/Lsteg--1", "https://tec.openplanner.team/stops/Lstetud1"], ["https://tec.openplanner.team/stops/Ltibure3", "https://tec.openplanner.team/stops/Lticime1"], ["https://tec.openplanner.team/stops/LRUhama1", "https://tec.openplanner.team/stops/LTowijk2"], ["https://tec.openplanner.team/stops/LeUhaas4", "https://tec.openplanner.team/stops/LeUschi1"], ["https://tec.openplanner.team/stops/X721asa", "https://tec.openplanner.team/stops/X721asb"], ["https://tec.openplanner.team/stops/H1ms254b", "https://tec.openplanner.team/stops/H1ms254d"], ["https://tec.openplanner.team/stops/LbUwhon2", "https://tec.openplanner.team/stops/LhObull1"], ["https://tec.openplanner.team/stops/H2hp124b", "https://tec.openplanner.team/stops/H2hp262b"], ["https://tec.openplanner.team/stops/H1an102a", "https://tec.openplanner.team/stops/H1an102b"], ["https://tec.openplanner.team/stops/Blhupa14", "https://tec.openplanner.team/stops/Blhupcl1"], ["https://tec.openplanner.team/stops/LeUbael1", "https://tec.openplanner.team/stops/LhEauto1"], ["https://tec.openplanner.team/stops/N571aga", "https://tec.openplanner.team/stops/N571aja"], ["https://tec.openplanner.team/stops/Lceegli*", "https://tec.openplanner.team/stops/Lcelhon3"], ["https://tec.openplanner.team/stops/LSemc--2", "https://tec.openplanner.team/stops/LVbstre2"], ["https://tec.openplanner.team/stops/N232aqb", "https://tec.openplanner.team/stops/N232aza"], ["https://tec.openplanner.team/stops/X880afb", "https://tec.openplanner.team/stops/X880aga"], ["https://tec.openplanner.team/stops/Cracime1", "https://tec.openplanner.team/stops/Cracime2"], ["https://tec.openplanner.team/stops/H4bd107a", "https://tec.openplanner.team/stops/H4bd107b"], ["https://tec.openplanner.team/stops/Clvimtr2", "https://tec.openplanner.team/stops/NC02aaa"], ["https://tec.openplanner.team/stops/LARgare1", "https://tec.openplanner.team/stops/Lchmarc1"], ["https://tec.openplanner.team/stops/Bbcogar1", "https://tec.openplanner.team/stops/H3br112b"], ["https://tec.openplanner.team/stops/N531ajb", "https://tec.openplanner.team/stops/N534bxa"], ["https://tec.openplanner.team/stops/X615aub", "https://tec.openplanner.team/stops/X615ava"], ["https://tec.openplanner.team/stops/H4ty340a", "https://tec.openplanner.team/stops/H4ty340b"], ["https://tec.openplanner.team/stops/H1as101b", "https://tec.openplanner.team/stops/H1as104b"], ["https://tec.openplanner.team/stops/Bnilpje2", "https://tec.openplanner.team/stops/Bnilpor3"], ["https://tec.openplanner.team/stops/Lfhbott2", "https://tec.openplanner.team/stops/Lfhnrou2"], ["https://tec.openplanner.team/stops/H1cu110a", "https://tec.openplanner.team/stops/H1fr114a"], ["https://tec.openplanner.team/stops/N348aca", "https://tec.openplanner.team/stops/N353awb"], ["https://tec.openplanner.team/stops/X750aya", "https://tec.openplanner.team/stops/X750baa"], ["https://tec.openplanner.team/stops/LWDbure2", "https://tec.openplanner.team/stops/LWDplac1"], ["https://tec.openplanner.team/stops/N501hra", "https://tec.openplanner.team/stops/N501iob"], ["https://tec.openplanner.team/stops/X636baa", "https://tec.openplanner.team/stops/X636bab"], ["https://tec.openplanner.team/stops/Lhrmeta2", "https://tec.openplanner.team/stops/Lhrunir1"], ["https://tec.openplanner.team/stops/Cgy3012", "https://tec.openplanner.team/stops/Cmtmath2"], ["https://tec.openplanner.team/stops/Clddeve1", "https://tec.openplanner.team/stops/Cmyjaci2"], ["https://tec.openplanner.team/stops/H1ls109a", "https://tec.openplanner.team/stops/H1me118b"], ["https://tec.openplanner.team/stops/H3th126a", "https://tec.openplanner.team/stops/H3th133b"], ["https://tec.openplanner.team/stops/X992aca", "https://tec.openplanner.team/stops/X992ajb"], ["https://tec.openplanner.team/stops/LCOcrom1", "https://tec.openplanner.team/stops/LSNnoul1"], ["https://tec.openplanner.team/stops/Bwavbar1", "https://tec.openplanner.team/stops/Bwavzno1"], ["https://tec.openplanner.team/stops/X948aib", "https://tec.openplanner.team/stops/X948asb"], ["https://tec.openplanner.team/stops/Bptrmar2", "https://tec.openplanner.team/stops/Bptrpla2"], ["https://tec.openplanner.team/stops/N149ada", "https://tec.openplanner.team/stops/N149ahb"], ["https://tec.openplanner.team/stops/Bhalalb2", "https://tec.openplanner.team/stops/Bhalkrk1"], ["https://tec.openplanner.team/stops/Crachap1", "https://tec.openplanner.team/stops/Craplac3"], ["https://tec.openplanner.team/stops/N544agb", "https://tec.openplanner.team/stops/N547adb"], ["https://tec.openplanner.team/stops/X801ala", "https://tec.openplanner.team/stops/X801cka"], ["https://tec.openplanner.team/stops/LBichen1", "https://tec.openplanner.team/stops/LBiroch2"], ["https://tec.openplanner.team/stops/LNCchau1", "https://tec.openplanner.team/stops/LNCvill1"], ["https://tec.openplanner.team/stops/LHumoul1", "https://tec.openplanner.team/stops/LHupont1"], ["https://tec.openplanner.team/stops/LBOholt1", "https://tec.openplanner.team/stops/LMucarr3"], ["https://tec.openplanner.team/stops/X850aib", "https://tec.openplanner.team/stops/X850aja"], ["https://tec.openplanner.team/stops/LBNruns2", "https://tec.openplanner.team/stops/LBNvilv2"], ["https://tec.openplanner.team/stops/Lancoop1", "https://tec.openplanner.team/stops/Lanschu1"], ["https://tec.openplanner.team/stops/LVbsurr2", "https://tec.openplanner.team/stops/NL77ala"], ["https://tec.openplanner.team/stops/Bbstcoi1", "https://tec.openplanner.team/stops/Bbstfch1"], ["https://tec.openplanner.team/stops/X892aaa", "https://tec.openplanner.team/stops/X892adb"], ["https://tec.openplanner.team/stops/X912afa", "https://tec.openplanner.team/stops/X912aga"], ["https://tec.openplanner.team/stops/LBVlamo1", "https://tec.openplanner.team/stops/LMAroch4"], ["https://tec.openplanner.team/stops/LATcorp1", "https://tec.openplanner.team/stops/LHUsaul1"], ["https://tec.openplanner.team/stops/X729aca", "https://tec.openplanner.team/stops/X748adb"], ["https://tec.openplanner.team/stops/H2ll180a", "https://tec.openplanner.team/stops/H2ll184a"], ["https://tec.openplanner.team/stops/H2ha132a", "https://tec.openplanner.team/stops/H2ha139b"], ["https://tec.openplanner.team/stops/Lbrbass2", "https://tec.openplanner.team/stops/Lgrspir1"], ["https://tec.openplanner.team/stops/X942acb", "https://tec.openplanner.team/stops/X942adb"], ["https://tec.openplanner.team/stops/X765aca", "https://tec.openplanner.team/stops/X765acb"], ["https://tec.openplanner.team/stops/Bgdhmet1", "https://tec.openplanner.team/stops/Bgdhmet2"], ["https://tec.openplanner.team/stops/H1si157b", "https://tec.openplanner.team/stops/H1si167a"], ["https://tec.openplanner.team/stops/H2sb234b", "https://tec.openplanner.team/stops/H2sb266a"], ["https://tec.openplanner.team/stops/LHCruyf1", "https://tec.openplanner.team/stops/LHCruyf2"], ["https://tec.openplanner.team/stops/Bgliegl2", "https://tec.openplanner.team/stops/Bglitro3"], ["https://tec.openplanner.team/stops/Lougros1", "https://tec.openplanner.team/stops/Lougros2"], ["https://tec.openplanner.team/stops/N562bjb", "https://tec.openplanner.team/stops/N562bka"], ["https://tec.openplanner.team/stops/Bnivaba1", "https://tec.openplanner.team/stops/Bnivlai2"], ["https://tec.openplanner.team/stops/H1bx107a", "https://tec.openplanner.team/stops/H1bx107b"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X665aab"], ["https://tec.openplanner.team/stops/Bpienod1", "https://tec.openplanner.team/stops/Bpiepnd1"], ["https://tec.openplanner.team/stops/LCvmonu1", "https://tec.openplanner.team/stops/LHXfont1"], ["https://tec.openplanner.team/stops/N221ada", "https://tec.openplanner.team/stops/X394aga"], ["https://tec.openplanner.team/stops/H1ha183a", "https://tec.openplanner.team/stops/H1ha199a"], ["https://tec.openplanner.team/stops/H2mm144a", "https://tec.openplanner.team/stops/H2mo126b"], ["https://tec.openplanner.team/stops/N521aqa", "https://tec.openplanner.team/stops/N521aqb"], ["https://tec.openplanner.team/stops/H4eh102a", "https://tec.openplanner.team/stops/H4wg121b"], ["https://tec.openplanner.team/stops/LVncarr2", "https://tec.openplanner.team/stops/LVnroch1"], ["https://tec.openplanner.team/stops/LAUhost2", "https://tec.openplanner.team/stops/LAUtism2"], ["https://tec.openplanner.team/stops/Livrame1", "https://tec.openplanner.team/stops/LRacime2"], ["https://tec.openplanner.team/stops/X750aob", "https://tec.openplanner.team/stops/X750bdb"], ["https://tec.openplanner.team/stops/N138aab", "https://tec.openplanner.team/stops/N138ajb"], ["https://tec.openplanner.team/stops/H1hw119b", "https://tec.openplanner.team/stops/H1hw124a"], ["https://tec.openplanner.team/stops/N230ada", "https://tec.openplanner.team/stops/N230adb"], ["https://tec.openplanner.team/stops/LLt43--1", "https://tec.openplanner.team/stops/LVHcent2"], ["https://tec.openplanner.team/stops/Bblaall1", "https://tec.openplanner.team/stops/Bblagar7"], ["https://tec.openplanner.team/stops/Lceavia2", "https://tec.openplanner.team/stops/Lcewilm2"], ["https://tec.openplanner.team/stops/Bnivbpe2", "https://tec.openplanner.team/stops/Bnivmon2"], ["https://tec.openplanner.team/stops/X749abb", "https://tec.openplanner.team/stops/X749aca"], ["https://tec.openplanner.team/stops/H1gn147a", "https://tec.openplanner.team/stops/H1gq153b"], ["https://tec.openplanner.team/stops/N232aja", "https://tec.openplanner.team/stops/N232cab"], ["https://tec.openplanner.team/stops/N387aaa", "https://tec.openplanner.team/stops/N387aca"], ["https://tec.openplanner.team/stops/LmOkape1", "https://tec.openplanner.team/stops/LONcroi1"], ["https://tec.openplanner.team/stops/Ccufos72", "https://tec.openplanner.team/stops/Cculpre2"], ["https://tec.openplanner.team/stops/Cgdfoca2", "https://tec.openplanner.team/stops/Cgdfras2"], ["https://tec.openplanner.team/stops/X307aba", "https://tec.openplanner.team/stops/X371aaa"], ["https://tec.openplanner.team/stops/H4te248a", "https://tec.openplanner.team/stops/H4te260b"], ["https://tec.openplanner.team/stops/Bottcli3", "https://tec.openplanner.team/stops/Bottcli4"], ["https://tec.openplanner.team/stops/LVApark1", "https://tec.openplanner.team/stops/LVApark2"], ["https://tec.openplanner.team/stops/Bzlucam1", "https://tec.openplanner.team/stops/Bzlucam2"], ["https://tec.openplanner.team/stops/LJAcime1", "https://tec.openplanner.team/stops/LJAcime2"], ["https://tec.openplanner.team/stops/H4jm117a", "https://tec.openplanner.team/stops/H4ry133b"], ["https://tec.openplanner.team/stops/LmFdorf1", "https://tec.openplanner.team/stops/LmFdorf2"], ["https://tec.openplanner.team/stops/Lmibove3", "https://tec.openplanner.team/stops/Lmigare2"], ["https://tec.openplanner.team/stops/H2an102a", "https://tec.openplanner.team/stops/H2ca102a"], ["https://tec.openplanner.team/stops/Cctstro1", "https://tec.openplanner.team/stops/NC02agc"], ["https://tec.openplanner.team/stops/X995aaa", "https://tec.openplanner.team/stops/X995acb"], ["https://tec.openplanner.team/stops/Lagpn6-2", "https://tec.openplanner.team/stops/Lagsauh1"], ["https://tec.openplanner.team/stops/H1ca107b", "https://tec.openplanner.team/stops/H1ca184b"], ["https://tec.openplanner.team/stops/Lflfort*", "https://tec.openplanner.team/stops/Lflmaxi2"], ["https://tec.openplanner.team/stops/LdElamb2", "https://tec.openplanner.team/stops/LmObahn*"], ["https://tec.openplanner.team/stops/Ccoconf1", "https://tec.openplanner.team/stops/Ccovies2"], ["https://tec.openplanner.team/stops/LOcgdro1", "https://tec.openplanner.team/stops/LOcgdro3"], ["https://tec.openplanner.team/stops/X789aea", "https://tec.openplanner.team/stops/X789agb"], ["https://tec.openplanner.team/stops/LHrfang1", "https://tec.openplanner.team/stops/LHrprie1"], ["https://tec.openplanner.team/stops/H4ka394a", "https://tec.openplanner.team/stops/H4ka394b"], ["https://tec.openplanner.team/stops/X695ala", "https://tec.openplanner.team/stops/X696aha"], ["https://tec.openplanner.team/stops/N505ama", "https://tec.openplanner.team/stops/N505ana"], ["https://tec.openplanner.team/stops/X801aab", "https://tec.openplanner.team/stops/X802aua"], ["https://tec.openplanner.team/stops/Clfpomm1", "https://tec.openplanner.team/stops/Clfpomm2"], ["https://tec.openplanner.team/stops/Lchmarc2", "https://tec.openplanner.team/stops/LHAdeho2"], ["https://tec.openplanner.team/stops/Bwatmco1", "https://tec.openplanner.team/stops/Bwatppa1"], ["https://tec.openplanner.team/stops/LhOholz1", "https://tec.openplanner.team/stops/LhOokat2"], ["https://tec.openplanner.team/stops/X790aia", "https://tec.openplanner.team/stops/X790akc"], ["https://tec.openplanner.team/stops/X222adc", "https://tec.openplanner.team/stops/X919anb"], ["https://tec.openplanner.team/stops/Bosqcim1", "https://tec.openplanner.team/stops/Bosqgar1"], ["https://tec.openplanner.team/stops/Beclron2", "https://tec.openplanner.team/stops/Becltri1"], ["https://tec.openplanner.team/stops/N536aca", "https://tec.openplanner.team/stops/N536acb"], ["https://tec.openplanner.team/stops/LbUjost1", "https://tec.openplanner.team/stops/LbUjost2"], ["https://tec.openplanner.team/stops/Cfcpcov1", "https://tec.openplanner.team/stops/Cfcpcov2"], ["https://tec.openplanner.team/stops/LeLcrem1", "https://tec.openplanner.team/stops/LeLkalt1"], ["https://tec.openplanner.team/stops/Cjualtr2", "https://tec.openplanner.team/stops/Cjuecho1"], ["https://tec.openplanner.team/stops/Lmlbaro2", "https://tec.openplanner.team/stops/Lmlguis2"], ["https://tec.openplanner.team/stops/X982aja", "https://tec.openplanner.team/stops/X982apb"], ["https://tec.openplanner.team/stops/Lgdegli2", "https://tec.openplanner.team/stops/Lgdhall*"], ["https://tec.openplanner.team/stops/LAYgare1", "https://tec.openplanner.team/stops/LAYnias1"], ["https://tec.openplanner.team/stops/X608aaa", "https://tec.openplanner.team/stops/X608aib"], ["https://tec.openplanner.team/stops/LSZmonu5", "https://tec.openplanner.team/stops/LSZstoc2"], ["https://tec.openplanner.team/stops/LRfbeau1", "https://tec.openplanner.team/stops/LSTmeiz1"], ["https://tec.openplanner.team/stops/LSZarze4", "https://tec.openplanner.team/stops/LSZprie1"], ["https://tec.openplanner.team/stops/N209acb", "https://tec.openplanner.team/stops/N209aeb"], ["https://tec.openplanner.team/stops/X781adb", "https://tec.openplanner.team/stops/X781ahb"], ["https://tec.openplanner.team/stops/Cmyfoym2", "https://tec.openplanner.team/stops/Cmypost1"], ["https://tec.openplanner.team/stops/H4ne140a", "https://tec.openplanner.team/stops/H4te413a"], ["https://tec.openplanner.team/stops/H1mv239b", "https://tec.openplanner.team/stops/H1nv325b"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/Cvregl2"], ["https://tec.openplanner.team/stops/H4bo112b", "https://tec.openplanner.team/stops/H4bo182a"], ["https://tec.openplanner.team/stops/LSsaxhe1", "https://tec.openplanner.team/stops/LSsaxhe2"], ["https://tec.openplanner.team/stops/X757aib", "https://tec.openplanner.team/stops/X757aka"], ["https://tec.openplanner.team/stops/Bgrhpos1", "https://tec.openplanner.team/stops/Bgrhpos2"], ["https://tec.openplanner.team/stops/Bhlvgar1", "https://tec.openplanner.team/stops/Bnivn971"], ["https://tec.openplanner.team/stops/LrGzent1", "https://tec.openplanner.team/stops/LsEdorf1"], ["https://tec.openplanner.team/stops/LMEwerg2", "https://tec.openplanner.team/stops/LMIterr1"], ["https://tec.openplanner.team/stops/Blhumpo1", "https://tec.openplanner.team/stops/Blhutco2"], ["https://tec.openplanner.team/stops/Lenabat1", "https://tec.openplanner.team/stops/Lenabat2"], ["https://tec.openplanner.team/stops/H5el105b", "https://tec.openplanner.team/stops/H5el107b"], ["https://tec.openplanner.team/stops/N103aeb", "https://tec.openplanner.team/stops/NH21agb"], ["https://tec.openplanner.team/stops/H4ar101a", "https://tec.openplanner.team/stops/H4lg100a"], ["https://tec.openplanner.team/stops/H2jo164a", "https://tec.openplanner.team/stops/H2jo164b"], ["https://tec.openplanner.team/stops/N510aca", "https://tec.openplanner.team/stops/N510acb"], ["https://tec.openplanner.team/stops/Ccusole2", "https://tec.openplanner.team/stops/Ccuwain2"], ["https://tec.openplanner.team/stops/Bhanath1", "https://tec.openplanner.team/stops/LHNathe1"], ["https://tec.openplanner.team/stops/LWbcarr2", "https://tec.openplanner.team/stops/X512aab"], ["https://tec.openplanner.team/stops/H2hp118a", "https://tec.openplanner.team/stops/H2hp124a"], ["https://tec.openplanner.team/stops/N534bra", "https://tec.openplanner.team/stops/N568aba"], ["https://tec.openplanner.team/stops/Lfhrogn2", "https://tec.openplanner.team/stops/Ljerose4"], ["https://tec.openplanner.team/stops/Llgsnap3", "https://tec.openplanner.team/stops/Llgwiar4"], ["https://tec.openplanner.team/stops/LSZcock2", "https://tec.openplanner.team/stops/LSZpiro1"], ["https://tec.openplanner.team/stops/N550amb", "https://tec.openplanner.team/stops/N565aaa"], ["https://tec.openplanner.team/stops/X818aub", "https://tec.openplanner.team/stops/X818ava"], ["https://tec.openplanner.team/stops/LSOferr3", "https://tec.openplanner.team/stops/LSOferr4"], ["https://tec.openplanner.team/stops/Bperalv1", "https://tec.openplanner.team/stops/Bperwil2"], ["https://tec.openplanner.team/stops/LSGcent2", "https://tec.openplanner.team/stops/LSGeg--2"], ["https://tec.openplanner.team/stops/N529aia", "https://tec.openplanner.team/stops/N529ajb"], ["https://tec.openplanner.team/stops/X602aga", "https://tec.openplanner.team/stops/X602asa"], ["https://tec.openplanner.team/stops/H4bh100a", "https://tec.openplanner.team/stops/H4ry141a"], ["https://tec.openplanner.team/stops/Lseblan*", "https://tec.openplanner.team/stops/Lsedese1"], ["https://tec.openplanner.team/stops/N512ava", "https://tec.openplanner.team/stops/N512awb"], ["https://tec.openplanner.team/stops/N524aha", "https://tec.openplanner.team/stops/N524aka"], ["https://tec.openplanner.team/stops/Cgualno2", "https://tec.openplanner.team/stops/N137aaa"], ["https://tec.openplanner.team/stops/N513baa", "https://tec.openplanner.team/stops/N513bab"], ["https://tec.openplanner.team/stops/H1ob331b", "https://tec.openplanner.team/stops/H1ob333b"], ["https://tec.openplanner.team/stops/Lhrhosp1", "https://tec.openplanner.team/stops/Lhrmilm1"], ["https://tec.openplanner.team/stops/X948aaa", "https://tec.openplanner.team/stops/X948baa"], ["https://tec.openplanner.team/stops/Lvcecol2", "https://tec.openplanner.team/stops/Lvcpost2"], ["https://tec.openplanner.team/stops/Clodesc2", "https://tec.openplanner.team/stops/CMdesc2"], ["https://tec.openplanner.team/stops/X922adb", "https://tec.openplanner.team/stops/X922aeb"], ["https://tec.openplanner.team/stops/H1ho141b", "https://tec.openplanner.team/stops/H1wg127b"], ["https://tec.openplanner.team/stops/N543bnb", "https://tec.openplanner.team/stops/N543bob"], ["https://tec.openplanner.team/stops/LVLgrum1", "https://tec.openplanner.team/stops/LVLhalb1"], ["https://tec.openplanner.team/stops/LHFappe2", "https://tec.openplanner.team/stops/LHFec--3"], ["https://tec.openplanner.team/stops/LAMweha2", "https://tec.openplanner.team/stops/LOmmer-1"], ["https://tec.openplanner.team/stops/LVbcoul1", "https://tec.openplanner.team/stops/NL77amb"], ["https://tec.openplanner.team/stops/Lfhdonn1", "https://tec.openplanner.team/stops/Lfhdonn2"], ["https://tec.openplanner.team/stops/X659aoa", "https://tec.openplanner.team/stops/X659apb"], ["https://tec.openplanner.team/stops/Cmmschw1", "https://tec.openplanner.team/stops/Cmymoha2"], ["https://tec.openplanner.team/stops/Bwatmch2", "https://tec.openplanner.team/stops/Bwatmch3"], ["https://tec.openplanner.team/stops/Cgycvie1", "https://tec.openplanner.team/stops/Cgynuto1"], ["https://tec.openplanner.team/stops/H1le124b", "https://tec.openplanner.team/stops/H1le127b"], ["https://tec.openplanner.team/stops/X601aca", "https://tec.openplanner.team/stops/X601acb"], ["https://tec.openplanner.team/stops/N515aid", "https://tec.openplanner.team/stops/N515aoa"], ["https://tec.openplanner.team/stops/LAvrout1", "https://tec.openplanner.team/stops/LAvrout2"], ["https://tec.openplanner.team/stops/Lantonn2", "https://tec.openplanner.team/stops/Lrccomm1"], ["https://tec.openplanner.team/stops/Bmarcha2", "https://tec.openplanner.team/stops/Bwagsta1"], ["https://tec.openplanner.team/stops/X661axc", "https://tec.openplanner.team/stops/X822acb"], ["https://tec.openplanner.team/stops/N539avb", "https://tec.openplanner.team/stops/N539bbb"], ["https://tec.openplanner.team/stops/Llgdelc*", "https://tec.openplanner.team/stops/Llgnico5"], ["https://tec.openplanner.team/stops/Clsghoy1", "https://tec.openplanner.team/stops/H1ls107a"], ["https://tec.openplanner.team/stops/X812bea", "https://tec.openplanner.team/stops/X813aba"], ["https://tec.openplanner.team/stops/LSHmais2", "https://tec.openplanner.team/stops/LSHries2"], ["https://tec.openplanner.team/stops/LDmdegi1", "https://tec.openplanner.team/stops/LHFhard1"], ["https://tec.openplanner.team/stops/Bgntcbo2", "https://tec.openplanner.team/stops/Bsomjon1"], ["https://tec.openplanner.team/stops/H4bs114a", "https://tec.openplanner.team/stops/H5pe152a"], ["https://tec.openplanner.team/stops/H1hr118b", "https://tec.openplanner.team/stops/H1hr118c"], ["https://tec.openplanner.team/stops/Bcsebea3", "https://tec.openplanner.team/stops/Bcsen251"], ["https://tec.openplanner.team/stops/X804anb", "https://tec.openplanner.team/stops/X804bka"], ["https://tec.openplanner.team/stops/LLmcarr2", "https://tec.openplanner.team/stops/LPUchpl1"], ["https://tec.openplanner.team/stops/Bndb4ch1", "https://tec.openplanner.team/stops/Bndbdra2"], ["https://tec.openplanner.team/stops/X824aha", "https://tec.openplanner.team/stops/X824aib"], ["https://tec.openplanner.team/stops/H5pe141b", "https://tec.openplanner.team/stops/H5pe145b"], ["https://tec.openplanner.team/stops/H1ha194a", "https://tec.openplanner.team/stops/H1ha194b"], ["https://tec.openplanner.team/stops/N534atc", "https://tec.openplanner.team/stops/N534bfb"], ["https://tec.openplanner.team/stops/LBTfoot1", "https://tec.openplanner.team/stops/LBTxhen1"], ["https://tec.openplanner.team/stops/LMAbijo1", "https://tec.openplanner.team/stops/LMAgb--1"], ["https://tec.openplanner.team/stops/H5pe133b", "https://tec.openplanner.team/stops/H5pe149b"], ["https://tec.openplanner.team/stops/X659aya", "https://tec.openplanner.team/stops/X669aaa"], ["https://tec.openplanner.team/stops/X824aed", "https://tec.openplanner.team/stops/X824aia"], ["https://tec.openplanner.team/stops/LWZponb1", "https://tec.openplanner.team/stops/X261abb"], ["https://tec.openplanner.team/stops/X749aab", "https://tec.openplanner.team/stops/X749abb"], ["https://tec.openplanner.team/stops/H1cu125b", "https://tec.openplanner.team/stops/H1cu129b"], ["https://tec.openplanner.team/stops/Llgptlo3", "https://tec.openplanner.team/stops/Llgptlo5"], ["https://tec.openplanner.team/stops/Lkithie2", "https://tec.openplanner.team/stops/Llgstev2"], ["https://tec.openplanner.team/stops/H4ft137a", "https://tec.openplanner.team/stops/H4ft137b"], ["https://tec.openplanner.team/stops/H1ha184a", "https://tec.openplanner.team/stops/H1ha198a"], ["https://tec.openplanner.team/stops/X359aaa", "https://tec.openplanner.team/stops/X359aac"], ["https://tec.openplanner.team/stops/LHNcoll2", "https://tec.openplanner.team/stops/NL37aca"], ["https://tec.openplanner.team/stops/Cgrchas2", "https://tec.openplanner.team/stops/Cgrflac1"], ["https://tec.openplanner.team/stops/X653aca", "https://tec.openplanner.team/stops/X667aab"], ["https://tec.openplanner.team/stops/LJA65h-2", "https://tec.openplanner.team/stops/LJAfawe1"], ["https://tec.openplanner.team/stops/H4ss155a", "https://tec.openplanner.team/stops/H5rx115d"], ["https://tec.openplanner.team/stops/Llghec-1", "https://tec.openplanner.team/stops/Llgreyn1"], ["https://tec.openplanner.team/stops/Lkiecol1", "https://tec.openplanner.team/stops/Lkigare2"], ["https://tec.openplanner.team/stops/H1ls106b", "https://tec.openplanner.team/stops/H1ls107a"], ["https://tec.openplanner.team/stops/LHcbaro2", "https://tec.openplanner.team/stops/LSx309-2"], ["https://tec.openplanner.team/stops/LOdmonu2", "https://tec.openplanner.team/stops/LOdmonu3"], ["https://tec.openplanner.team/stops/X802ada", "https://tec.openplanner.team/stops/X802adb"], ["https://tec.openplanner.team/stops/Lgrdemo1", "https://tec.openplanner.team/stops/Lgrfass1"], ["https://tec.openplanner.team/stops/Cmaduna1", "https://tec.openplanner.team/stops/Cmaduna2"], ["https://tec.openplanner.team/stops/N512apa", "https://tec.openplanner.team/stops/N512ara"], ["https://tec.openplanner.team/stops/LORlieg1", "https://tec.openplanner.team/stops/LORruis1"], ["https://tec.openplanner.team/stops/H1mq199b", "https://tec.openplanner.team/stops/H5ma180a"], ["https://tec.openplanner.team/stops/N141aab", "https://tec.openplanner.team/stops/N141aoa"], ["https://tec.openplanner.team/stops/X788abb", "https://tec.openplanner.team/stops/X788acb"], ["https://tec.openplanner.team/stops/Bsgeegl4", "https://tec.openplanner.team/stops/Bsgetri2"], ["https://tec.openplanner.team/stops/H4tp143a", "https://tec.openplanner.team/stops/H4tp147a"], ["https://tec.openplanner.team/stops/LHAdeho2", "https://tec.openplanner.team/stops/LHAlacr1"], ["https://tec.openplanner.team/stops/X618anb", "https://tec.openplanner.team/stops/X618aoa"], ["https://tec.openplanner.team/stops/Clodesc1", "https://tec.openplanner.team/stops/Clomari4"], ["https://tec.openplanner.team/stops/H1gh150b", "https://tec.openplanner.team/stops/H1gh151a"], ["https://tec.openplanner.team/stops/Lansarm1", "https://tec.openplanner.team/stops/Lansarm2"], ["https://tec.openplanner.team/stops/LRmha262", "https://tec.openplanner.team/stops/LRmmabr1"], ["https://tec.openplanner.team/stops/LMotrem1", "https://tec.openplanner.team/stops/LMotrem2"], ["https://tec.openplanner.team/stops/X206aza", "https://tec.openplanner.team/stops/X206azb"], ["https://tec.openplanner.team/stops/N360aaa", "https://tec.openplanner.team/stops/N360acb"], ["https://tec.openplanner.team/stops/X224adb", "https://tec.openplanner.team/stops/X394aaa"], ["https://tec.openplanner.team/stops/X804cbb", "https://tec.openplanner.team/stops/X818aab"], ["https://tec.openplanner.team/stops/Cmohame2", "https://tec.openplanner.team/stops/Cmychau1"], ["https://tec.openplanner.team/stops/N562ayb", "https://tec.openplanner.team/stops/N562aza"], ["https://tec.openplanner.team/stops/LBjpech2", "https://tec.openplanner.team/stops/LLVerri1"], ["https://tec.openplanner.team/stops/H4fr385a", "https://tec.openplanner.team/stops/H4fr386a"], ["https://tec.openplanner.team/stops/Cjumall2", "https://tec.openplanner.team/stops/Cjumall6"], ["https://tec.openplanner.team/stops/LCtcref1", "https://tec.openplanner.team/stops/X789aha"], ["https://tec.openplanner.team/stops/LAo170-2", "https://tec.openplanner.team/stops/LTPtroi1"], ["https://tec.openplanner.team/stops/X601dbb", "https://tec.openplanner.team/stops/X626abb"], ["https://tec.openplanner.team/stops/X808aaa", "https://tec.openplanner.team/stops/X808aab"], ["https://tec.openplanner.team/stops/Bwagdeb2", "https://tec.openplanner.team/stops/Bwagmco1"], ["https://tec.openplanner.team/stops/H4ml207a", "https://tec.openplanner.team/stops/H4qu230c"], ["https://tec.openplanner.team/stops/H3so161b", "https://tec.openplanner.team/stops/H3so163a"], ["https://tec.openplanner.team/stops/X640afb", "https://tec.openplanner.team/stops/X640ala"], ["https://tec.openplanner.team/stops/Cthalou1", "https://tec.openplanner.team/stops/Cthrpoi1"], ["https://tec.openplanner.team/stops/X952aea", "https://tec.openplanner.team/stops/X952aeb"], ["https://tec.openplanner.team/stops/H4eg101d", "https://tec.openplanner.team/stops/H4eg105a"], ["https://tec.openplanner.team/stops/H1by100a", "https://tec.openplanner.team/stops/H1by100b"], ["https://tec.openplanner.team/stops/Cfcbosq2", "https://tec.openplanner.team/stops/Cfcchen2"], ["https://tec.openplanner.team/stops/Cfrcomp2", "https://tec.openplanner.team/stops/Cfrmon3"], ["https://tec.openplanner.team/stops/N509ata", "https://tec.openplanner.team/stops/N512ama"], ["https://tec.openplanner.team/stops/Lhrchar1", "https://tec.openplanner.team/stops/Lhrdron1"], ["https://tec.openplanner.team/stops/Bkrabhu1", "https://tec.openplanner.team/stops/Bkrapri1"], ["https://tec.openplanner.team/stops/Llghec-1", "https://tec.openplanner.team/stops/Llghec-3"], ["https://tec.openplanner.team/stops/Brixdec1", "https://tec.openplanner.team/stops/Brixres1"], ["https://tec.openplanner.team/stops/LLM4rou3", "https://tec.openplanner.team/stops/LLM4rou5"], ["https://tec.openplanner.team/stops/H4ag106b", "https://tec.openplanner.team/stops/H4ag107a"], ["https://tec.openplanner.team/stops/N501anb", "https://tec.openplanner.team/stops/N501nbb"], ["https://tec.openplanner.team/stops/LSHhade1", "https://tec.openplanner.team/stops/LSOtheu1"], ["https://tec.openplanner.team/stops/Bbgnvel1", "https://tec.openplanner.team/stops/Cwfbarr2"], ["https://tec.openplanner.team/stops/LHCauwe3", "https://tec.openplanner.team/stops/LHCauwe4"], ["https://tec.openplanner.team/stops/LABbert1", "https://tec.openplanner.team/stops/LABvill1"], ["https://tec.openplanner.team/stops/X926aca", "https://tec.openplanner.team/stops/X926adb"], ["https://tec.openplanner.team/stops/N138aaa", "https://tec.openplanner.team/stops/N138aab"], ["https://tec.openplanner.team/stops/H2pe162b", "https://tec.openplanner.team/stops/H3bi115a"], ["https://tec.openplanner.team/stops/Lalbout1", "https://tec.openplanner.team/stops/Lalexpa1"], ["https://tec.openplanner.team/stops/N232bgb", "https://tec.openplanner.team/stops/N232bib"], ["https://tec.openplanner.team/stops/X820aba", "https://tec.openplanner.team/stops/X820adb"], ["https://tec.openplanner.team/stops/Brebpca1", "https://tec.openplanner.team/stops/Brebpca2"], ["https://tec.openplanner.team/stops/Lgrrein1", "https://tec.openplanner.team/stops/Lgrrein2"], ["https://tec.openplanner.team/stops/Cmivert2", "https://tec.openplanner.team/stops/Csecroi2"], ["https://tec.openplanner.team/stops/X773aba", "https://tec.openplanner.team/stops/X773adb"], ["https://tec.openplanner.team/stops/N553afb", "https://tec.openplanner.team/stops/N553alb"], ["https://tec.openplanner.team/stops/H5at129a", "https://tec.openplanner.team/stops/H5at141b"], ["https://tec.openplanner.team/stops/N531afg", "https://tec.openplanner.team/stops/N531afh"], ["https://tec.openplanner.team/stops/H2mg138a", "https://tec.openplanner.team/stops/H2mg143a"], ["https://tec.openplanner.team/stops/X779aea", "https://tec.openplanner.team/stops/X779afa"], ["https://tec.openplanner.team/stops/N254abb", "https://tec.openplanner.team/stops/N254aea"], ["https://tec.openplanner.team/stops/X609aoa", "https://tec.openplanner.team/stops/X609apa"], ["https://tec.openplanner.team/stops/X941aga", "https://tec.openplanner.team/stops/X948aob"], ["https://tec.openplanner.team/stops/H1wa162b", "https://tec.openplanner.team/stops/H1wg131b"], ["https://tec.openplanner.team/stops/X605afb", "https://tec.openplanner.team/stops/X634akb"], ["https://tec.openplanner.team/stops/LBPauto1", "https://tec.openplanner.team/stops/LGLcour4"], ["https://tec.openplanner.team/stops/X720aba", "https://tec.openplanner.team/stops/X720acb"], ["https://tec.openplanner.team/stops/X801bha", "https://tec.openplanner.team/stops/X801cob"], ["https://tec.openplanner.team/stops/H4ru238a", "https://tec.openplanner.team/stops/H4ru241a"], ["https://tec.openplanner.team/stops/LHUathe1", "https://tec.openplanner.team/stops/LHUchpl1"], ["https://tec.openplanner.team/stops/H1tl119b", "https://tec.openplanner.team/stops/H1tl120b"], ["https://tec.openplanner.team/stops/N232aeb", "https://tec.openplanner.team/stops/N232aha"], ["https://tec.openplanner.team/stops/H3br100b", "https://tec.openplanner.team/stops/H3br110b"], ["https://tec.openplanner.team/stops/H4wt159a", "https://tec.openplanner.team/stops/H4wt160b"], ["https://tec.openplanner.team/stops/N584aua", "https://tec.openplanner.team/stops/N584cba"], ["https://tec.openplanner.team/stops/Cmareun2", "https://tec.openplanner.team/stops/Cmazone2"], ["https://tec.openplanner.team/stops/Ccupbro1", "https://tec.openplanner.team/stops/Ccupbro2"], ["https://tec.openplanner.team/stops/X734aja", "https://tec.openplanner.team/stops/X734ajb"], ["https://tec.openplanner.team/stops/LbRkirc2", "https://tec.openplanner.team/stops/LwTkabi2"], ["https://tec.openplanner.team/stops/H1by100b", "https://tec.openplanner.team/stops/H1by101b"], ["https://tec.openplanner.team/stops/H4bi100b", "https://tec.openplanner.team/stops/H4bi156a"], ["https://tec.openplanner.team/stops/LHEzoni1", "https://tec.openplanner.team/stops/LHEzoni2"], ["https://tec.openplanner.team/stops/H4ld127a", "https://tec.openplanner.team/stops/H4to138b"], ["https://tec.openplanner.team/stops/X626aaa", "https://tec.openplanner.team/stops/X626akb"], ["https://tec.openplanner.team/stops/Ladjuif2", "https://tec.openplanner.team/stops/Ladwooz2"], ["https://tec.openplanner.team/stops/H4ag107a", "https://tec.openplanner.team/stops/H4pe128b"], ["https://tec.openplanner.team/stops/H1bb120a", "https://tec.openplanner.team/stops/H1bb120b"], ["https://tec.openplanner.team/stops/H4ka188b", "https://tec.openplanner.team/stops/H4ka393b"], ["https://tec.openplanner.team/stops/H4wi166a", "https://tec.openplanner.team/stops/H4wi167a"], ["https://tec.openplanner.team/stops/Lalparc2", "https://tec.openplanner.team/stops/Lalverr1"], ["https://tec.openplanner.team/stops/LwYboui1", "https://tec.openplanner.team/stops/LwYcafe1"], ["https://tec.openplanner.team/stops/LFRhock2", "https://tec.openplanner.team/stops/LFRhock4"], ["https://tec.openplanner.team/stops/Bhengri1", "https://tec.openplanner.team/stops/Bhengri2"], ["https://tec.openplanner.team/stops/Llggcha1", "https://tec.openplanner.team/stops/Llggcha4"], ["https://tec.openplanner.team/stops/N310aaa", "https://tec.openplanner.team/stops/N310abb"], ["https://tec.openplanner.team/stops/N519ada", "https://tec.openplanner.team/stops/N519alb"], ["https://tec.openplanner.team/stops/N242ada", "https://tec.openplanner.team/stops/N251abb"], ["https://tec.openplanner.team/stops/LATdieu1", "https://tec.openplanner.team/stops/LATmonu2"], ["https://tec.openplanner.team/stops/N874aab", "https://tec.openplanner.team/stops/N874acb"], ["https://tec.openplanner.team/stops/H2tr255a", "https://tec.openplanner.team/stops/H2tr256b"], ["https://tec.openplanner.team/stops/H1ne139a", "https://tec.openplanner.team/stops/H1ne141a"], ["https://tec.openplanner.team/stops/X804bgb", "https://tec.openplanner.team/stops/X804bqa"], ["https://tec.openplanner.team/stops/X876aca", "https://tec.openplanner.team/stops/X876acb"], ["https://tec.openplanner.team/stops/N218acc", "https://tec.openplanner.team/stops/N218aea"], ["https://tec.openplanner.team/stops/Cstdona2", "https://tec.openplanner.team/stops/Cstdona5"], ["https://tec.openplanner.team/stops/LBNvill3", "https://tec.openplanner.team/stops/LBNvill6"], ["https://tec.openplanner.team/stops/H4bf107b", "https://tec.openplanner.team/stops/H4bn100a"], ["https://tec.openplanner.team/stops/X926aaa", "https://tec.openplanner.team/stops/X926aab"], ["https://tec.openplanner.team/stops/N509aia", "https://tec.openplanner.team/stops/N509aib"], ["https://tec.openplanner.team/stops/H4fr145a", "https://tec.openplanner.team/stops/H4ma418a"], ["https://tec.openplanner.team/stops/H4er121a", "https://tec.openplanner.team/stops/H4ty331b"], ["https://tec.openplanner.team/stops/LNCchau3", "https://tec.openplanner.team/stops/LNCmada1"], ["https://tec.openplanner.team/stops/Cvpsncb2", "https://tec.openplanner.team/stops/Cvpsthu1"], ["https://tec.openplanner.team/stops/H4pl112b", "https://tec.openplanner.team/stops/H4pl115b"], ["https://tec.openplanner.team/stops/LlgguilA", "https://tec.openplanner.team/stops/Llgoise2"], ["https://tec.openplanner.team/stops/Llglill2", "https://tec.openplanner.team/stops/Llgrull2"], ["https://tec.openplanner.team/stops/Cjuheig1", "https://tec.openplanner.team/stops/Crobass2"], ["https://tec.openplanner.team/stops/Buccpin2", "https://tec.openplanner.team/stops/Bwbfhip2"], ["https://tec.openplanner.team/stops/LETtemp1", "https://tec.openplanner.team/stops/Lrevaul2"], ["https://tec.openplanner.team/stops/LBIcabi1", "https://tec.openplanner.team/stops/LBIvill1"], ["https://tec.openplanner.team/stops/LSPdesc1", "https://tec.openplanner.team/stops/LSPther1"], ["https://tec.openplanner.team/stops/Cclbarb1", "https://tec.openplanner.team/stops/Cclmoul2"], ["https://tec.openplanner.team/stops/Ljuvieu2", "https://tec.openplanner.team/stops/LMFmerl2"], ["https://tec.openplanner.team/stops/X869aaa", "https://tec.openplanner.team/stops/X869aca"], ["https://tec.openplanner.team/stops/LHumoul1", "https://tec.openplanner.team/stops/LMfbacu1"], ["https://tec.openplanner.team/stops/N557abb", "https://tec.openplanner.team/stops/N557agb"], ["https://tec.openplanner.team/stops/X369aca", "https://tec.openplanner.team/stops/X369acb"], ["https://tec.openplanner.team/stops/H4fl115a", "https://tec.openplanner.team/stops/H4lp124a"], ["https://tec.openplanner.team/stops/X725aab", "https://tec.openplanner.team/stops/X754axa"], ["https://tec.openplanner.team/stops/H4bc102a", "https://tec.openplanner.team/stops/H4wr174a"], ["https://tec.openplanner.team/stops/LAWcorn4", "https://tec.openplanner.team/stops/LAWvill1"], ["https://tec.openplanner.team/stops/Lroeg--3", "https://tec.openplanner.team/stops/Lromc--1"], ["https://tec.openplanner.team/stops/Beclfde2", "https://tec.openplanner.team/stops/H2fa103b"], ["https://tec.openplanner.team/stops/Ctipoui2", "https://tec.openplanner.team/stops/Ctisart1"], ["https://tec.openplanner.team/stops/LAUtism1", "https://tec.openplanner.team/stops/LAUvict3"], ["https://tec.openplanner.team/stops/X601aqb", "https://tec.openplanner.team/stops/X601bha"], ["https://tec.openplanner.team/stops/Chpfoli3", "https://tec.openplanner.team/stops/Chpfoli4"], ["https://tec.openplanner.team/stops/N232bwa", "https://tec.openplanner.team/stops/N260aba"], ["https://tec.openplanner.team/stops/N135ata", "https://tec.openplanner.team/stops/N135atb"], ["https://tec.openplanner.team/stops/X743agb", "https://tec.openplanner.team/stops/X749aeb"], ["https://tec.openplanner.team/stops/NL76afa", "https://tec.openplanner.team/stops/NL76ahb"], ["https://tec.openplanner.team/stops/Bmoucnd2", "https://tec.openplanner.team/stops/Bmouegl2"], ["https://tec.openplanner.team/stops/LBEchan2", "https://tec.openplanner.team/stops/LBEtroo1"], ["https://tec.openplanner.team/stops/LSG111-1", "https://tec.openplanner.team/stops/LSkoran2"], ["https://tec.openplanner.team/stops/Bwavnam2", "https://tec.openplanner.team/stops/Bwavpao1"], ["https://tec.openplanner.team/stops/N543axa", "https://tec.openplanner.team/stops/N543bgc"], ["https://tec.openplanner.team/stops/X908aha", "https://tec.openplanner.team/stops/X908aib"], ["https://tec.openplanner.team/stops/LFfeg--1", "https://tec.openplanner.team/stops/Lmapomm1"], ["https://tec.openplanner.team/stops/H2sb224a", "https://tec.openplanner.team/stops/H2sb236d"], ["https://tec.openplanner.team/stops/Ccigill2", "https://tec.openplanner.team/stops/Ccigill3"], ["https://tec.openplanner.team/stops/X768aib", "https://tec.openplanner.team/stops/X768aja"], ["https://tec.openplanner.team/stops/Cflchap2", "https://tec.openplanner.team/stops/Cflsncb3"], ["https://tec.openplanner.team/stops/X657aeb", "https://tec.openplanner.team/stops/X742acb"], ["https://tec.openplanner.team/stops/X941acd", "https://tec.openplanner.team/stops/X941aeb"], ["https://tec.openplanner.team/stops/LWDfuma2", "https://tec.openplanner.team/stops/LWDsieg2"], ["https://tec.openplanner.team/stops/Ctufleu1", "https://tec.openplanner.team/stops/Ctufleu4"], ["https://tec.openplanner.team/stops/H5rx101b", "https://tec.openplanner.team/stops/H5rx105b"], ["https://tec.openplanner.team/stops/Lseegva1", "https://tec.openplanner.team/stops/Lsefive2"], ["https://tec.openplanner.team/stops/Cwfdupo1", "https://tec.openplanner.team/stops/Cwfzola1"], ["https://tec.openplanner.team/stops/Caibino1", "https://tec.openplanner.team/stops/N554aab"], ["https://tec.openplanner.team/stops/X614aia", "https://tec.openplanner.team/stops/X623aab"], ["https://tec.openplanner.team/stops/H4ag104a", "https://tec.openplanner.team/stops/H4ag106b"], ["https://tec.openplanner.team/stops/LWEcite2", "https://tec.openplanner.team/stops/LWEpl--1"], ["https://tec.openplanner.team/stops/LJvbane1", "https://tec.openplanner.team/stops/X576aba"], ["https://tec.openplanner.team/stops/LbUbisc1", "https://tec.openplanner.team/stops/LbUhons1"], ["https://tec.openplanner.team/stops/LFNhame1", "https://tec.openplanner.team/stops/LFNlato1"], ["https://tec.openplanner.team/stops/LBNhegg2", "https://tec.openplanner.team/stops/LBNvilv2"], ["https://tec.openplanner.team/stops/Bsmgegl2", "https://tec.openplanner.team/stops/Bsmgpla2"], ["https://tec.openplanner.team/stops/Ctrecol1", "https://tec.openplanner.team/stops/Ctrecol2"], ["https://tec.openplanner.team/stops/LBjpech1", "https://tec.openplanner.team/stops/LBjpech2"], ["https://tec.openplanner.team/stops/X616aaa", "https://tec.openplanner.team/stops/X616aab"], ["https://tec.openplanner.team/stops/X619agb", "https://tec.openplanner.team/stops/X619aka"], ["https://tec.openplanner.team/stops/X888aca", "https://tec.openplanner.team/stops/X888acb"], ["https://tec.openplanner.team/stops/N564aaa", "https://tec.openplanner.team/stops/N564afa"], ["https://tec.openplanner.team/stops/X919abb", "https://tec.openplanner.team/stops/X919aca"], ["https://tec.openplanner.team/stops/Crccarr1", "https://tec.openplanner.team/stops/Crccarr2"], ["https://tec.openplanner.team/stops/Cgygazo1", "https://tec.openplanner.team/stops/Cgylouv2"], ["https://tec.openplanner.team/stops/N149agb", "https://tec.openplanner.team/stops/N149ahb"], ["https://tec.openplanner.team/stops/X806acb", "https://tec.openplanner.team/stops/X872aaa"], ["https://tec.openplanner.team/stops/H1qu104a", "https://tec.openplanner.team/stops/H1wl126a"], ["https://tec.openplanner.team/stops/N505amb", "https://tec.openplanner.team/stops/N505ana"], ["https://tec.openplanner.team/stops/LFEland2", "https://tec.openplanner.team/stops/LMYchpl1"], ["https://tec.openplanner.team/stops/N502aba", "https://tec.openplanner.team/stops/N509ana"], ["https://tec.openplanner.team/stops/LHZbren2", "https://tec.openplanner.team/stops/LHZcime2"], ["https://tec.openplanner.team/stops/X767aab", "https://tec.openplanner.team/stops/X767aba"], ["https://tec.openplanner.team/stops/X601aud", "https://tec.openplanner.team/stops/X601baa"], ["https://tec.openplanner.team/stops/LFmbure2", "https://tec.openplanner.team/stops/LFmroye1"], ["https://tec.openplanner.team/stops/LGegare1", "https://tec.openplanner.team/stops/LVAgemm1"], ["https://tec.openplanner.team/stops/Beclfde1", "https://tec.openplanner.team/stops/Beclfde2"], ["https://tec.openplanner.team/stops/Becepri1", "https://tec.openplanner.team/stops/H2ec112a"], ["https://tec.openplanner.team/stops/N512aqb", "https://tec.openplanner.team/stops/N512asa"], ["https://tec.openplanner.team/stops/Cfldand2", "https://tec.openplanner.team/stops/Cflfaub1"], ["https://tec.openplanner.team/stops/H1ol137b", "https://tec.openplanner.team/stops/H1ol143a"], ["https://tec.openplanner.team/stops/N531aba", "https://tec.openplanner.team/stops/N574aca"], ["https://tec.openplanner.team/stops/X657afa", "https://tec.openplanner.team/stops/X671aaa"], ["https://tec.openplanner.team/stops/X825aba", "https://tec.openplanner.team/stops/X825abb"], ["https://tec.openplanner.team/stops/LLreque2", "https://tec.openplanner.team/stops/LLrfont2"], ["https://tec.openplanner.team/stops/Cctptsa1", "https://tec.openplanner.team/stops/Cctsncb3"], ["https://tec.openplanner.team/stops/LHMbelv1", "https://tec.openplanner.team/stops/LHMmarq1"], ["https://tec.openplanner.team/stops/LaM266-1", "https://tec.openplanner.team/stops/LaM266-2"], ["https://tec.openplanner.team/stops/Cgxalli1", "https://tec.openplanner.team/stops/Cgxcite2"], ["https://tec.openplanner.team/stops/X730aea", "https://tec.openplanner.team/stops/X730afa"], ["https://tec.openplanner.team/stops/X770aeb", "https://tec.openplanner.team/stops/X774adb"], ["https://tec.openplanner.team/stops/N120adc", "https://tec.openplanner.team/stops/N120aha"], ["https://tec.openplanner.team/stops/N531aja", "https://tec.openplanner.team/stops/N531ata"], ["https://tec.openplanner.team/stops/Cauwauq1", "https://tec.openplanner.team/stops/N530agb"], ["https://tec.openplanner.team/stops/Ccuhaie2", "https://tec.openplanner.team/stops/Ccuphai3"], ["https://tec.openplanner.team/stops/Lvtcime2", "https://tec.openplanner.team/stops/Lvteg--1"], ["https://tec.openplanner.team/stops/LFtcarr1", "https://tec.openplanner.team/stops/X599afd"], ["https://tec.openplanner.team/stops/LSdbote2", "https://tec.openplanner.team/stops/LSdcarr2"], ["https://tec.openplanner.team/stops/LAyabri2", "https://tec.openplanner.team/stops/Lrechap2"], ["https://tec.openplanner.team/stops/N207adc", "https://tec.openplanner.team/stops/N209aaa"], ["https://tec.openplanner.team/stops/X904afa", "https://tec.openplanner.team/stops/X904aia"], ["https://tec.openplanner.team/stops/Cfcecol2", "https://tec.openplanner.team/stops/Cfcpla2"], ["https://tec.openplanner.team/stops/N501aea", "https://tec.openplanner.team/stops/N502ada"], ["https://tec.openplanner.team/stops/Clbchar2", "https://tec.openplanner.team/stops/Clbhour1"], ["https://tec.openplanner.team/stops/H3lr109b", "https://tec.openplanner.team/stops/H3lr121b"], ["https://tec.openplanner.team/stops/Clddelh2", "https://tec.openplanner.team/stops/Cmyjaci2"], ["https://tec.openplanner.team/stops/LHUlebe4", "https://tec.openplanner.team/stops/LHUlebe9"], ["https://tec.openplanner.team/stops/X648aaa", "https://tec.openplanner.team/stops/X648aab"], ["https://tec.openplanner.team/stops/LSGeg--1", "https://tec.openplanner.team/stops/LSGeg--3"], ["https://tec.openplanner.team/stops/X615aza", "https://tec.openplanner.team/stops/X615azb"], ["https://tec.openplanner.team/stops/N513aba", "https://tec.openplanner.team/stops/N513aeb"], ["https://tec.openplanner.team/stops/Lmlchev2", "https://tec.openplanner.team/stops/Lpoprie1"], ["https://tec.openplanner.team/stops/N538ahb", "https://tec.openplanner.team/stops/N538aja"], ["https://tec.openplanner.team/stops/Chpatel2", "https://tec.openplanner.team/stops/Chpcarp2"], ["https://tec.openplanner.team/stops/N511ata", "https://tec.openplanner.team/stops/N511aua"], ["https://tec.openplanner.team/stops/Cbbcent2", "https://tec.openplanner.team/stops/Cvregl2"], ["https://tec.openplanner.team/stops/X807aaa", "https://tec.openplanner.team/stops/X807acb"], ["https://tec.openplanner.team/stops/Lagcile2", "https://tec.openplanner.team/stops/Llgcond2"], ["https://tec.openplanner.team/stops/LTIdumo1", "https://tec.openplanner.team/stops/LTIdumo2"], ["https://tec.openplanner.team/stops/X744aba", "https://tec.openplanner.team/stops/X744aca"], ["https://tec.openplanner.team/stops/Bbldmun2", "https://tec.openplanner.team/stops/Bhaawdr2"], ["https://tec.openplanner.team/stops/H1do116a", "https://tec.openplanner.team/stops/H1pd141b"], ["https://tec.openplanner.team/stops/LBSnouw2", "https://tec.openplanner.team/stops/LBSvi322"], ["https://tec.openplanner.team/stops/H4cr111a", "https://tec.openplanner.team/stops/H4ff120b"], ["https://tec.openplanner.team/stops/Loucent1", "https://tec.openplanner.team/stops/Loucorn1"], ["https://tec.openplanner.team/stops/LVIdepo2", "https://tec.openplanner.team/stops/LVIdepo3"], ["https://tec.openplanner.team/stops/LBaeg--2", "https://tec.openplanner.team/stops/LBamate2"], ["https://tec.openplanner.team/stops/X904aea", "https://tec.openplanner.team/stops/X904aeb"], ["https://tec.openplanner.team/stops/H3so155b", "https://tec.openplanner.team/stops/H3so175a"], ["https://tec.openplanner.team/stops/H4be105a", "https://tec.openplanner.team/stops/H4be113a"], ["https://tec.openplanner.team/stops/Cctpass2", "https://tec.openplanner.team/stops/Ccuhsti2"], ["https://tec.openplanner.team/stops/Bcerpco1", "https://tec.openplanner.team/stops/Blasbh51"], ["https://tec.openplanner.team/stops/Lsedese2", "https://tec.openplanner.team/stops/Lseserv1"], ["https://tec.openplanner.team/stops/Cgocalv3", "https://tec.openplanner.team/stops/Cgofabr1"], ["https://tec.openplanner.team/stops/Bwaanwi1", "https://tec.openplanner.team/stops/LWSstat1"], ["https://tec.openplanner.team/stops/LHUpsar2", "https://tec.openplanner.team/stops/LHUvege2"], ["https://tec.openplanner.team/stops/LTEcamp1", "https://tec.openplanner.team/stops/LTEnuro2"], ["https://tec.openplanner.team/stops/N512afa", "https://tec.openplanner.team/stops/N512ahb"], ["https://tec.openplanner.team/stops/H5rx102b", "https://tec.openplanner.team/stops/H5rx115d"], ["https://tec.openplanner.team/stops/LWAchpg1", "https://tec.openplanner.team/stops/LWAhart1"], ["https://tec.openplanner.team/stops/H4lz117a", "https://tec.openplanner.team/stops/H4lz122a"], ["https://tec.openplanner.team/stops/N212aka", "https://tec.openplanner.team/stops/N212atb"], ["https://tec.openplanner.team/stops/Ljemont1", "https://tec.openplanner.team/stops/Ljewale2"], ["https://tec.openplanner.team/stops/LwMzoll1", "https://tec.openplanner.team/stops/X761aaa"], ["https://tec.openplanner.team/stops/X396aab", "https://tec.openplanner.team/stops/X917aka"], ["https://tec.openplanner.team/stops/N520aba", "https://tec.openplanner.team/stops/N520ajb"], ["https://tec.openplanner.team/stops/LSSvill1", "https://tec.openplanner.team/stops/LSSvill3"], ["https://tec.openplanner.team/stops/H4mo137b", "https://tec.openplanner.team/stops/H4wa148a"], ["https://tec.openplanner.team/stops/Bsamlon1", "https://tec.openplanner.team/stops/Bwagpco1"], ["https://tec.openplanner.team/stops/LLnec--1", "https://tec.openplanner.team/stops/LLnlimb1"], ["https://tec.openplanner.team/stops/LwAkett1", "https://tec.openplanner.team/stops/LwAstum2"], ["https://tec.openplanner.team/stops/N383aea", "https://tec.openplanner.team/stops/N874aja"], ["https://tec.openplanner.team/stops/X601bna", "https://tec.openplanner.team/stops/X601dga"], ["https://tec.openplanner.team/stops/Lchsaeg1", "https://tec.openplanner.team/stops/Lchsaeg2"], ["https://tec.openplanner.team/stops/H1he110b", "https://tec.openplanner.team/stops/H1he111b"], ["https://tec.openplanner.team/stops/H4au144a", "https://tec.openplanner.team/stops/H4og211b"], ["https://tec.openplanner.team/stops/N321aca", "https://tec.openplanner.team/stops/N321adb"], ["https://tec.openplanner.team/stops/X615bcb", "https://tec.openplanner.team/stops/X615bdb"], ["https://tec.openplanner.team/stops/N151aba", "https://tec.openplanner.team/stops/N151abb"], ["https://tec.openplanner.team/stops/LMapark3", "https://tec.openplanner.team/stops/LMawilh4"], ["https://tec.openplanner.team/stops/Lprsher1", "https://tec.openplanner.team/stops/Lprthie2"], ["https://tec.openplanner.team/stops/Llgptlo1", "https://tec.openplanner.team/stops/Llgptlo4"], ["https://tec.openplanner.team/stops/H4lg102a", "https://tec.openplanner.team/stops/H4lg106a"], ["https://tec.openplanner.team/stops/N536aea", "https://tec.openplanner.team/stops/N580aab"], ["https://tec.openplanner.team/stops/Cpcndce1", "https://tec.openplanner.team/stops/Cpcndce2"], ["https://tec.openplanner.team/stops/Lbocime2", "https://tec.openplanner.team/stops/Lbomc--5"], ["https://tec.openplanner.team/stops/X660ada", "https://tec.openplanner.team/stops/X660adb"], ["https://tec.openplanner.team/stops/Cgomerm1", "https://tec.openplanner.team/stops/Chpfoli3"], ["https://tec.openplanner.team/stops/X601asb", "https://tec.openplanner.team/stops/X601csb"], ["https://tec.openplanner.team/stops/Bjdsbro1", "https://tec.openplanner.team/stops/Bjdsbro2"], ["https://tec.openplanner.team/stops/N160ahb", "https://tec.openplanner.team/stops/NC14aub"], ["https://tec.openplanner.team/stops/Bchapir1", "https://tec.openplanner.team/stops/Bcrnncb2"], ["https://tec.openplanner.team/stops/Bmalsmc2", "https://tec.openplanner.team/stops/Btlbcha1"], ["https://tec.openplanner.team/stops/LBJlieg2", "https://tec.openplanner.team/stops/LBrbern1"], ["https://tec.openplanner.team/stops/Bspkkhe1", "https://tec.openplanner.team/stops/H1mk116b"], ["https://tec.openplanner.team/stops/X949aha", "https://tec.openplanner.team/stops/X949ahb"], ["https://tec.openplanner.team/stops/Cflhano1", "https://tec.openplanner.team/stops/Cwfmoul2"], ["https://tec.openplanner.team/stops/LSsmond1", "https://tec.openplanner.team/stops/LSssurl2"], ["https://tec.openplanner.team/stops/Cmlbeau2", "https://tec.openplanner.team/stops/Cmlrous1"], ["https://tec.openplanner.team/stops/X659ara", "https://tec.openplanner.team/stops/X672aha"], ["https://tec.openplanner.team/stops/LMOecsp3", "https://tec.openplanner.team/stops/LMOm64-1"], ["https://tec.openplanner.team/stops/Lanlona2", "https://tec.openplanner.team/stops/Lantonn2"], ["https://tec.openplanner.team/stops/H4cw107b", "https://tec.openplanner.team/stops/H4lz161b"], ["https://tec.openplanner.team/stops/Cacgare2", "https://tec.openplanner.team/stops/NC24aeb"], ["https://tec.openplanner.team/stops/LVMfoli2", "https://tec.openplanner.team/stops/LVMrout2"], ["https://tec.openplanner.team/stops/Clgpavi1", "https://tec.openplanner.team/stops/Clgpavi2"], ["https://tec.openplanner.team/stops/X730aaa", "https://tec.openplanner.team/stops/X753acb"], ["https://tec.openplanner.team/stops/N423aea", "https://tec.openplanner.team/stops/N423afb"], ["https://tec.openplanner.team/stops/X664aea", "https://tec.openplanner.team/stops/X664aeb"], ["https://tec.openplanner.team/stops/H4ty305a", "https://tec.openplanner.team/stops/H4ty406a"], ["https://tec.openplanner.team/stops/LSldurb2", "https://tec.openplanner.team/stops/X919aia"], ["https://tec.openplanner.team/stops/H4mb202a", "https://tec.openplanner.team/stops/H4mb205b"], ["https://tec.openplanner.team/stops/Llgbaro1", "https://tec.openplanner.team/stops/Llgglai2"], ["https://tec.openplanner.team/stops/X747aca", "https://tec.openplanner.team/stops/X747ada"], ["https://tec.openplanner.team/stops/X608ama", "https://tec.openplanner.team/stops/X608aob"], ["https://tec.openplanner.team/stops/Cmmserv2", "https://tec.openplanner.team/stops/Cmmserv4"], ["https://tec.openplanner.team/stops/H1wi150a", "https://tec.openplanner.team/stops/H1wi150b"], ["https://tec.openplanner.team/stops/H4lp121b", "https://tec.openplanner.team/stops/H4mg139a"], ["https://tec.openplanner.team/stops/LRmstat2", "https://tec.openplanner.team/stops/LTEziho2"], ["https://tec.openplanner.team/stops/N506apb", "https://tec.openplanner.team/stops/N537aia"], ["https://tec.openplanner.team/stops/X995aba", "https://tec.openplanner.team/stops/X995acb"], ["https://tec.openplanner.team/stops/Ljecocc1", "https://tec.openplanner.team/stops/Ljecoqu1"], ["https://tec.openplanner.team/stops/X801asa", "https://tec.openplanner.team/stops/X801avb"], ["https://tec.openplanner.team/stops/Ccogrha2", "https://tec.openplanner.team/stops/Ccomiau2"], ["https://tec.openplanner.team/stops/H4fo115a", "https://tec.openplanner.team/stops/H4ga162a"], ["https://tec.openplanner.team/stops/LHCpaci2", "https://tec.openplanner.team/stops/LMNpann2"], ["https://tec.openplanner.team/stops/N501bia", "https://tec.openplanner.team/stops/N501bla"], ["https://tec.openplanner.team/stops/LoUhein2", "https://tec.openplanner.team/stops/LoUpete2"], ["https://tec.openplanner.team/stops/X354aaa", "https://tec.openplanner.team/stops/X354abb"], ["https://tec.openplanner.team/stops/H4he101a", "https://tec.openplanner.team/stops/H4po130a"], ["https://tec.openplanner.team/stops/Bbiepre2", "https://tec.openplanner.team/stops/Bboncgs1"], ["https://tec.openplanner.team/stops/X597agb", "https://tec.openplanner.team/stops/X597aqb"], ["https://tec.openplanner.team/stops/H2na135b", "https://tec.openplanner.team/stops/H3so169a"], ["https://tec.openplanner.team/stops/Bwatcha1", "https://tec.openplanner.team/stops/Bwatcha3"], ["https://tec.openplanner.team/stops/Baudhan1", "https://tec.openplanner.team/stops/Baudstr1"], ["https://tec.openplanner.team/stops/Lseconc2", "https://tec.openplanner.team/stops/Lsehaut1"], ["https://tec.openplanner.team/stops/X999agb", "https://tec.openplanner.team/stops/X999aib"], ["https://tec.openplanner.team/stops/Brsrbbo1", "https://tec.openplanner.team/stops/Brsrbbo2"], ["https://tec.openplanner.team/stops/N103afa", "https://tec.openplanner.team/stops/N103agb"], ["https://tec.openplanner.team/stops/N166aaa", "https://tec.openplanner.team/stops/N167agb"], ["https://tec.openplanner.team/stops/LLRbleh2", "https://tec.openplanner.team/stops/LLRptma1"], ["https://tec.openplanner.team/stops/LaRkape2", "https://tec.openplanner.team/stops/LoDscha2"], ["https://tec.openplanner.team/stops/X747aka", "https://tec.openplanner.team/stops/X754afb"], ["https://tec.openplanner.team/stops/Lsecoop2", "https://tec.openplanner.team/stops/Lsetroq2"], ["https://tec.openplanner.team/stops/X899aaa", "https://tec.openplanner.team/stops/X899aca"], ["https://tec.openplanner.team/stops/Ccheden2", "https://tec.openplanner.team/stops/Cchfran1"], ["https://tec.openplanner.team/stops/N501dsb", "https://tec.openplanner.team/stops/N501eza"], ["https://tec.openplanner.team/stops/LCxcham2", "https://tec.openplanner.team/stops/LCxhall2"], ["https://tec.openplanner.team/stops/Lrc594-2", "https://tec.openplanner.team/stops/Lrclant3"], ["https://tec.openplanner.team/stops/H4bq100c", "https://tec.openplanner.team/stops/H4bq154b"], ["https://tec.openplanner.team/stops/LOV48--2", "https://tec.openplanner.team/stops/LOV62--2"], ["https://tec.openplanner.team/stops/Bglacsr1", "https://tec.openplanner.team/stops/Bmrssmc1"], ["https://tec.openplanner.team/stops/N515aob", "https://tec.openplanner.team/stops/NR27aab"], ["https://tec.openplanner.team/stops/H4hu115b", "https://tec.openplanner.team/stops/H4ld124a"], ["https://tec.openplanner.team/stops/LCleg--1", "https://tec.openplanner.team/stops/LCleg--2"], ["https://tec.openplanner.team/stops/H2go114a", "https://tec.openplanner.team/stops/H2go114b"], ["https://tec.openplanner.team/stops/N501byb", "https://tec.openplanner.team/stops/N501jla"], ["https://tec.openplanner.team/stops/X762aea", "https://tec.openplanner.team/stops/X762afa"], ["https://tec.openplanner.team/stops/Candett1", "https://tec.openplanner.team/stops/H1mg109a"], ["https://tec.openplanner.team/stops/N501bjy", "https://tec.openplanner.team/stops/N501jbb"], ["https://tec.openplanner.team/stops/X812ana", "https://tec.openplanner.team/stops/X812aua"], ["https://tec.openplanner.team/stops/Brixga13", "https://tec.openplanner.team/stops/Brixpla1"], ["https://tec.openplanner.team/stops/Cauglac2", "https://tec.openplanner.team/stops/Ctapn2"], ["https://tec.openplanner.team/stops/H1eu107a", "https://tec.openplanner.team/stops/H1fr113b"], ["https://tec.openplanner.team/stops/Lmoboeu2", "https://tec.openplanner.team/stops/Lmoknae4"], ["https://tec.openplanner.team/stops/N506aga", "https://tec.openplanner.team/stops/N506ahb"], ["https://tec.openplanner.team/stops/X728ada", "https://tec.openplanner.team/stops/X746acb"], ["https://tec.openplanner.team/stops/N348aba", "https://tec.openplanner.team/stops/N348abb"], ["https://tec.openplanner.team/stops/Lhrmura1", "https://tec.openplanner.team/stops/Lhrthie1"], ["https://tec.openplanner.team/stops/Bbauham2", "https://tec.openplanner.team/stops/Blilgar1"], ["https://tec.openplanner.team/stops/N209aic", "https://tec.openplanner.team/stops/N209aja"], ["https://tec.openplanner.team/stops/LBXhacb1", "https://tec.openplanner.team/stops/LMolone1"], ["https://tec.openplanner.team/stops/Lagjado2", "https://tec.openplanner.team/stops/Lagjado6"], ["https://tec.openplanner.team/stops/LHUfonc2", "https://tec.openplanner.team/stops/LHUhaum2"], ["https://tec.openplanner.team/stops/Lrctec-2", "https://tec.openplanner.team/stops/Lrcvill2"], ["https://tec.openplanner.team/stops/NL37ala", "https://tec.openplanner.team/stops/NL74aja"], ["https://tec.openplanner.team/stops/LAwec--2", "https://tec.openplanner.team/stops/LAweg--1"], ["https://tec.openplanner.team/stops/LVStige1", "https://tec.openplanner.team/stops/LVStige2"], ["https://tec.openplanner.team/stops/Lenauln2", "https://tec.openplanner.team/stops/Lvehauz3"], ["https://tec.openplanner.team/stops/N207aba", "https://tec.openplanner.team/stops/N207abb"], ["https://tec.openplanner.team/stops/Cmgpn1", "https://tec.openplanner.team/stops/Cmgpn2"], ["https://tec.openplanner.team/stops/H4ff115a", "https://tec.openplanner.team/stops/H4ff122a"], ["https://tec.openplanner.team/stops/LOUvign1", "https://tec.openplanner.team/stops/LOUvign2"], ["https://tec.openplanner.team/stops/X903ada", "https://tec.openplanner.team/stops/X992aka"], ["https://tec.openplanner.team/stops/N120aia", "https://tec.openplanner.team/stops/N120ala"], ["https://tec.openplanner.team/stops/LWAchpg2", "https://tec.openplanner.team/stops/LWAwegg2"], ["https://tec.openplanner.team/stops/N207aca", "https://tec.openplanner.team/stops/X221aac"], ["https://tec.openplanner.team/stops/X644aab", "https://tec.openplanner.team/stops/X645aab"], ["https://tec.openplanner.team/stops/X788aaa", "https://tec.openplanner.team/stops/X788abd"], ["https://tec.openplanner.team/stops/Lannico2", "https://tec.openplanner.team/stops/Lglcoun1"], ["https://tec.openplanner.team/stops/Lanhoud2", "https://tec.openplanner.team/stops/Lannico3"], ["https://tec.openplanner.team/stops/Cjufagn4", "https://tec.openplanner.team/stops/Cjumall6"], ["https://tec.openplanner.team/stops/Lalbout2", "https://tec.openplanner.team/stops/Lalhomb2"], ["https://tec.openplanner.team/stops/N368aea", "https://tec.openplanner.team/stops/N368aeb"], ["https://tec.openplanner.team/stops/Lchtche2", "https://tec.openplanner.team/stops/Lrahoig2"], ["https://tec.openplanner.team/stops/X717aha", "https://tec.openplanner.team/stops/X782aka"], ["https://tec.openplanner.team/stops/H4ty379a", "https://tec.openplanner.team/stops/H4ty406a"], ["https://tec.openplanner.team/stops/LMObut-1", "https://tec.openplanner.team/stops/LMOelva1"], ["https://tec.openplanner.team/stops/X896aab", "https://tec.openplanner.team/stops/X995aba"], ["https://tec.openplanner.team/stops/X784aia", "https://tec.openplanner.team/stops/X784ajb"], ["https://tec.openplanner.team/stops/LHTbaud2", "https://tec.openplanner.team/stops/LHTptha4"], ["https://tec.openplanner.team/stops/X888aca", "https://tec.openplanner.team/stops/X899afa"], ["https://tec.openplanner.team/stops/H4ar107a", "https://tec.openplanner.team/stops/H4ar107b"], ["https://tec.openplanner.team/stops/LPAmosa1", "https://tec.openplanner.team/stops/LPAmosa2"], ["https://tec.openplanner.team/stops/LClbloc1", "https://tec.openplanner.team/stops/LCltrib1"], ["https://tec.openplanner.team/stops/LSPwarf2", "https://tec.openplanner.team/stops/LSZjona2"], ["https://tec.openplanner.team/stops/H4bh105b", "https://tec.openplanner.team/stops/H4lp123a"], ["https://tec.openplanner.team/stops/N104afa", "https://tec.openplanner.team/stops/N106aab"], ["https://tec.openplanner.team/stops/H1ha183a", "https://tec.openplanner.team/stops/H1vg358a"], ["https://tec.openplanner.team/stops/X608ana", "https://tec.openplanner.team/stops/X608arb"], ["https://tec.openplanner.team/stops/N131agb", "https://tec.openplanner.team/stops/N132afa"], ["https://tec.openplanner.team/stops/H1qy132a", "https://tec.openplanner.team/stops/H1qy135b"], ["https://tec.openplanner.team/stops/H1fr109b", "https://tec.openplanner.team/stops/H1fr114a"], ["https://tec.openplanner.team/stops/H1cu125a", "https://tec.openplanner.team/stops/H1cu125c"], ["https://tec.openplanner.team/stops/X802asa", "https://tec.openplanner.team/stops/X802ata"], ["https://tec.openplanner.team/stops/N229ala", "https://tec.openplanner.team/stops/N229aob"], ["https://tec.openplanner.team/stops/N211akb", "https://tec.openplanner.team/stops/N214abb"], ["https://tec.openplanner.team/stops/N501geb", "https://tec.openplanner.team/stops/N501lrb"], ["https://tec.openplanner.team/stops/H4te252b", "https://tec.openplanner.team/stops/H4te253a"], ["https://tec.openplanner.team/stops/X993aaa", "https://tec.openplanner.team/stops/X993ahb"], ["https://tec.openplanner.team/stops/H1by100d", "https://tec.openplanner.team/stops/H1by102b"], ["https://tec.openplanner.team/stops/Bbsiabb2", "https://tec.openplanner.team/stops/Bbsipos2"], ["https://tec.openplanner.team/stops/N507afb", "https://tec.openplanner.team/stops/N507aja"], ["https://tec.openplanner.team/stops/N124aac", "https://tec.openplanner.team/stops/N124aba"], ["https://tec.openplanner.team/stops/N501bpa", "https://tec.openplanner.team/stops/N501bpb"], ["https://tec.openplanner.team/stops/X716acb", "https://tec.openplanner.team/stops/X716afa"], ["https://tec.openplanner.team/stops/Livfays1", "https://tec.openplanner.team/stops/LRaplac2"], ["https://tec.openplanner.team/stops/Buccobs2", "https://tec.openplanner.team/stops/Buccplj1"], ["https://tec.openplanner.team/stops/H1hy144a", "https://tec.openplanner.team/stops/H1qy135b"], ["https://tec.openplanner.team/stops/N118aob", "https://tec.openplanner.team/stops/N118atb"], ["https://tec.openplanner.team/stops/Lvereno1", "https://tec.openplanner.team/stops/Lvereno2"], ["https://tec.openplanner.team/stops/Llgandr2", "https://tec.openplanner.team/stops/Llgavro2"], ["https://tec.openplanner.team/stops/H1bg110b", "https://tec.openplanner.team/stops/H1mx122b"], ["https://tec.openplanner.team/stops/Bnivver1", "https://tec.openplanner.team/stops/Bnivzep2"], ["https://tec.openplanner.team/stops/Lticime2", "https://tec.openplanner.team/stops/Ltiegli3"], ["https://tec.openplanner.team/stops/H1ob330b", "https://tec.openplanner.team/stops/H1ob339a"], ["https://tec.openplanner.team/stops/N232ceb", "https://tec.openplanner.team/stops/N260aca"], ["https://tec.openplanner.team/stops/LlOkreu2", "https://tec.openplanner.team/stops/LlOpfar1"], ["https://tec.openplanner.team/stops/Bmrlhan3", "https://tec.openplanner.team/stops/Bmrllgr2"], ["https://tec.openplanner.team/stops/LBpecco1", "https://tec.openplanner.team/stops/LBpecco4"], ["https://tec.openplanner.team/stops/Bllnpaf1", "https://tec.openplanner.team/stops/Bllnpaf2"], ["https://tec.openplanner.team/stops/X901bma", "https://tec.openplanner.team/stops/X922aaa"], ["https://tec.openplanner.team/stops/LlAdorf1", "https://tec.openplanner.team/stops/LrUoudl1"], ["https://tec.openplanner.team/stops/Cmmami1", "https://tec.openplanner.team/stops/Cmmn1172"], ["https://tec.openplanner.team/stops/Bgnvcha1", "https://tec.openplanner.team/stops/Bgnvoha2"], ["https://tec.openplanner.team/stops/N553ahb", "https://tec.openplanner.team/stops/N566afb"], ["https://tec.openplanner.team/stops/Lemlacr2", "https://tec.openplanner.team/stops/Lemmc--1"], ["https://tec.openplanner.team/stops/Beceres1", "https://tec.openplanner.team/stops/H3br100b"], ["https://tec.openplanner.team/stops/Lrcastr3", "https://tec.openplanner.team/stops/Lrclohe2"], ["https://tec.openplanner.team/stops/N308aba", "https://tec.openplanner.team/stops/N308beb"], ["https://tec.openplanner.team/stops/N547alc", "https://tec.openplanner.team/stops/N547anb"], ["https://tec.openplanner.team/stops/X605aaa", "https://tec.openplanner.team/stops/X620afb"], ["https://tec.openplanner.team/stops/H4bo182a", "https://tec.openplanner.team/stops/H4hu120a"], ["https://tec.openplanner.team/stops/LLGramk1", "https://tec.openplanner.team/stops/LLGramk3"], ["https://tec.openplanner.team/stops/N117aqa", "https://tec.openplanner.team/stops/N117arb"], ["https://tec.openplanner.team/stops/LSythie2", "https://tec.openplanner.team/stops/LWZdtec1"], ["https://tec.openplanner.team/stops/H2le176b", "https://tec.openplanner.team/stops/H2re174b"], ["https://tec.openplanner.team/stops/LAvcani2", "https://tec.openplanner.team/stops/LMXroye1"], ["https://tec.openplanner.team/stops/Cgon52", "https://tec.openplanner.team/stops/Cjuapca2"], ["https://tec.openplanner.team/stops/H1fl136b", "https://tec.openplanner.team/stops/H1fl142a"], ["https://tec.openplanner.team/stops/Bcsegal2", "https://tec.openplanner.team/stops/Bcsempl1"], ["https://tec.openplanner.team/stops/Cgzblob1", "https://tec.openplanner.team/stops/Ctucamb2"], ["https://tec.openplanner.team/stops/Bnivvcw1", "https://tec.openplanner.team/stops/Bnivvri1"], ["https://tec.openplanner.team/stops/N535ajb", "https://tec.openplanner.team/stops/N538aza"], ["https://tec.openplanner.team/stops/N346adb", "https://tec.openplanner.team/stops/X346afb"], ["https://tec.openplanner.team/stops/Lfhmarn1", "https://tec.openplanner.team/stops/Lfhmarn2"], ["https://tec.openplanner.team/stops/N576afa", "https://tec.openplanner.team/stops/N576amb"], ["https://tec.openplanner.team/stops/X820aaa", "https://tec.openplanner.team/stops/X822amb"], ["https://tec.openplanner.team/stops/Bhmmlad1", "https://tec.openplanner.team/stops/Bhmmlad2"], ["https://tec.openplanner.team/stops/N512aca", "https://tec.openplanner.team/stops/N512acb"], ["https://tec.openplanner.team/stops/Bbougbl1", "https://tec.openplanner.team/stops/Bbounci1"], ["https://tec.openplanner.team/stops/H1so136a", "https://tec.openplanner.team/stops/H1so136d"], ["https://tec.openplanner.team/stops/Baudvdr2", "https://tec.openplanner.team/stops/Baudvdu2"], ["https://tec.openplanner.team/stops/LAWcorn1", "https://tec.openplanner.team/stops/LAWcorn4"], ["https://tec.openplanner.team/stops/N229asa", "https://tec.openplanner.team/stops/N229asb"], ["https://tec.openplanner.team/stops/N170aba", "https://tec.openplanner.team/stops/N170afa"], ["https://tec.openplanner.team/stops/LHUec--1", "https://tec.openplanner.team/stops/LHUfonc2"], ["https://tec.openplanner.team/stops/LThbatt1", "https://tec.openplanner.team/stops/LThchar1"], ["https://tec.openplanner.team/stops/Cflvxsa1", "https://tec.openplanner.team/stops/Cflvxsa2"], ["https://tec.openplanner.team/stops/Lgrchar2", "https://tec.openplanner.team/stops/Lgrramp2"], ["https://tec.openplanner.team/stops/Cfcecol4", "https://tec.openplanner.team/stops/Cvrfcho1"], ["https://tec.openplanner.team/stops/H2ha142b", "https://tec.openplanner.team/stops/H2hg156b"], ["https://tec.openplanner.team/stops/X601bca", "https://tec.openplanner.team/stops/X601bda"], ["https://tec.openplanner.team/stops/H2fy123b", "https://tec.openplanner.team/stops/H2jo161c"], ["https://tec.openplanner.team/stops/N501jhb", "https://tec.openplanner.team/stops/N501jib"], ["https://tec.openplanner.team/stops/N340aia", "https://tec.openplanner.team/stops/N340aib"], ["https://tec.openplanner.team/stops/H4fr144a", "https://tec.openplanner.team/stops/H4fr144b"], ["https://tec.openplanner.team/stops/Clddeve1", "https://tec.openplanner.team/stops/Clddeve2"], ["https://tec.openplanner.team/stops/X717aeb", "https://tec.openplanner.team/stops/X717aja"], ["https://tec.openplanner.team/stops/H1cu118a", "https://tec.openplanner.team/stops/H1fr115a"], ["https://tec.openplanner.team/stops/Lbbviad3", "https://tec.openplanner.team/stops/Lbbviad4"], ["https://tec.openplanner.team/stops/LVLcent1", "https://tec.openplanner.team/stops/LVLcent2"], ["https://tec.openplanner.team/stops/LoEauto1", "https://tec.openplanner.team/stops/LrDhund2"], ["https://tec.openplanner.team/stops/X901aaa", "https://tec.openplanner.team/stops/X901aab"], ["https://tec.openplanner.team/stops/LRagrch1", "https://tec.openplanner.team/stops/LRagrch2"], ["https://tec.openplanner.team/stops/LcRmich2", "https://tec.openplanner.team/stops/LnUneun3"], ["https://tec.openplanner.team/stops/H1fr113b", "https://tec.openplanner.team/stops/H1fr130b"], ["https://tec.openplanner.team/stops/Llieg--3", "https://tec.openplanner.team/stops/Llithon2"], ["https://tec.openplanner.team/stops/H1sg142a", "https://tec.openplanner.team/stops/H1sg150b"], ["https://tec.openplanner.team/stops/N347aea", "https://tec.openplanner.team/stops/X347ajb"], ["https://tec.openplanner.team/stops/H1hg178b", "https://tec.openplanner.team/stops/H1hg180a"], ["https://tec.openplanner.team/stops/X879aba", "https://tec.openplanner.team/stops/X880ahb"], ["https://tec.openplanner.team/stops/Bwavcar2", "https://tec.openplanner.team/stops/Bwavfol1"], ["https://tec.openplanner.team/stops/H4hx114a", "https://tec.openplanner.team/stops/H4ln155a"], ["https://tec.openplanner.team/stops/N515aia", "https://tec.openplanner.team/stops/N515aid"], ["https://tec.openplanner.team/stops/X659aqb", "https://tec.openplanner.team/stops/X659arb"], ["https://tec.openplanner.team/stops/LSShous1", "https://tec.openplanner.team/stops/LSShous2"], ["https://tec.openplanner.team/stops/LLMeg--2", "https://tec.openplanner.team/stops/LThpoli2"], ["https://tec.openplanner.team/stops/H2go118b", "https://tec.openplanner.team/stops/H2gy107b"], ["https://tec.openplanner.team/stops/N528ara", "https://tec.openplanner.team/stops/N528arc"], ["https://tec.openplanner.team/stops/LELhard1", "https://tec.openplanner.team/stops/LHCquat4"], ["https://tec.openplanner.team/stops/N111abb", "https://tec.openplanner.team/stops/N111afa"], ["https://tec.openplanner.team/stops/Lch179-2", "https://tec.openplanner.team/stops/Lchplai1"], ["https://tec.openplanner.team/stops/LBSchpl2", "https://tec.openplanner.team/stops/LWOcomm2"], ["https://tec.openplanner.team/stops/H1cu115b", "https://tec.openplanner.team/stops/H1cu120a"], ["https://tec.openplanner.team/stops/LSoboul2", "https://tec.openplanner.team/stops/LSoeg--2"], ["https://tec.openplanner.team/stops/LFChofv1", "https://tec.openplanner.team/stops/LFChuis2"], ["https://tec.openplanner.team/stops/H1me117c", "https://tec.openplanner.team/stops/H1so141a"], ["https://tec.openplanner.team/stops/H4bq102a", "https://tec.openplanner.team/stops/H4bq102b"], ["https://tec.openplanner.team/stops/N574aba", "https://tec.openplanner.team/stops/N574abb"], ["https://tec.openplanner.team/stops/Bopprju1", "https://tec.openplanner.team/stops/Bsrbtil2"], ["https://tec.openplanner.team/stops/Bgzdegl3", "https://tec.openplanner.team/stops/Bgzdfpo2"], ["https://tec.openplanner.team/stops/Lmodeja2", "https://tec.openplanner.team/stops/Lmodeni2"], ["https://tec.openplanner.team/stops/H1ba103a", "https://tec.openplanner.team/stops/H1ba105b"], ["https://tec.openplanner.team/stops/X604afd", "https://tec.openplanner.team/stops/X633akb"], ["https://tec.openplanner.team/stops/H4bi100a", "https://tec.openplanner.team/stops/H4bi156a"], ["https://tec.openplanner.team/stops/LsVgils1", "https://tec.openplanner.team/stops/LsVhupp1"], ["https://tec.openplanner.team/stops/X727aaa", "https://tec.openplanner.team/stops/X727aga"], ["https://tec.openplanner.team/stops/Bnilpco2", "https://tec.openplanner.team/stops/Bnilreg1"], ["https://tec.openplanner.team/stops/Bpercsp1", "https://tec.openplanner.team/stops/Bpersyn1"], ["https://tec.openplanner.team/stops/LBOholt2", "https://tec.openplanner.team/stops/LBWfusi1"], ["https://tec.openplanner.team/stops/LOmmer-1", "https://tec.openplanner.team/stops/LOmmer-2"], ["https://tec.openplanner.team/stops/Lgrfass1", "https://tec.openplanner.team/stops/Lgrfass2"], ["https://tec.openplanner.team/stops/Cmaegli2", "https://tec.openplanner.team/stops/Cmapeet1"], ["https://tec.openplanner.team/stops/Lsebegu3", "https://tec.openplanner.team/stops/Ltiferb1"], ["https://tec.openplanner.team/stops/X672aia", "https://tec.openplanner.team/stops/X672aic"], ["https://tec.openplanner.team/stops/Cbecarr2", "https://tec.openplanner.team/stops/Cbetrie1"], ["https://tec.openplanner.team/stops/X615arb", "https://tec.openplanner.team/stops/X687afa"], ["https://tec.openplanner.team/stops/Benimar2", "https://tec.openplanner.team/stops/Bmrlsau2"], ["https://tec.openplanner.team/stops/LHAlacr1", "https://tec.openplanner.team/stops/LHAlacr2"], ["https://tec.openplanner.team/stops/Lghchap1", "https://tec.openplanner.team/stops/Lghferr2"], ["https://tec.openplanner.team/stops/Bflccav1", "https://tec.openplanner.team/stops/NR30aab"], ["https://tec.openplanner.team/stops/Llaacca1", "https://tec.openplanner.team/stops/Llaacca2"], ["https://tec.openplanner.team/stops/LCFeg--1", "https://tec.openplanner.team/stops/LHaxhig2"], ["https://tec.openplanner.team/stops/LMAchod2", "https://tec.openplanner.team/stops/LMAptne2"], ["https://tec.openplanner.team/stops/X736abb", "https://tec.openplanner.team/stops/X952ada"], ["https://tec.openplanner.team/stops/Cgygayo3", "https://tec.openplanner.team/stops/Cgylouv1"], ["https://tec.openplanner.team/stops/Llghoch1", "https://tec.openplanner.team/stops/Llgwesp1"], ["https://tec.openplanner.team/stops/Lroeg--4", "https://tec.openplanner.team/stops/Lrolecl1"], ["https://tec.openplanner.team/stops/N501ada", "https://tec.openplanner.team/stops/N501aeb"], ["https://tec.openplanner.team/stops/Cauglac2", "https://tec.openplanner.team/stops/N543cbc"], ["https://tec.openplanner.team/stops/Lhecarc*", "https://tec.openplanner.team/stops/Lheneuv4"], ["https://tec.openplanner.team/stops/Lhrpwan1", "https://tec.openplanner.team/stops/Lwachal1"], ["https://tec.openplanner.team/stops/H4mo171a", "https://tec.openplanner.team/stops/H4mo181d"], ["https://tec.openplanner.team/stops/X347aja", "https://tec.openplanner.team/stops/X347ajb"], ["https://tec.openplanner.team/stops/X371aaa", "https://tec.openplanner.team/stops/X371abb"], ["https://tec.openplanner.team/stops/X715aab", "https://tec.openplanner.team/stops/X716aea"], ["https://tec.openplanner.team/stops/Brsga152", "https://tec.openplanner.team/stops/Brsga812"], ["https://tec.openplanner.team/stops/H1ch100b", "https://tec.openplanner.team/stops/H1ch106b"], ["https://tec.openplanner.team/stops/X986aaa", "https://tec.openplanner.team/stops/X986aha"], ["https://tec.openplanner.team/stops/Bsomwav1", "https://tec.openplanner.team/stops/Bsomwav2"], ["https://tec.openplanner.team/stops/X636awa", "https://tec.openplanner.team/stops/X636awb"], ["https://tec.openplanner.team/stops/H5el117a", "https://tec.openplanner.team/stops/H5el117b"], ["https://tec.openplanner.team/stops/Cptplac2", "https://tec.openplanner.team/stops/Cpttraz1"], ["https://tec.openplanner.team/stops/Cfcplac4", "https://tec.openplanner.team/stops/Cfcrdpr1"], ["https://tec.openplanner.team/stops/Bcbqhai1", "https://tec.openplanner.team/stops/Bitrnus2"], ["https://tec.openplanner.team/stops/Bclgmev2", "https://tec.openplanner.team/stops/Bclgpch1"], ["https://tec.openplanner.team/stops/NC02agc", "https://tec.openplanner.team/stops/NC11aia"], ["https://tec.openplanner.team/stops/Lhrcite2", "https://tec.openplanner.team/stops/Lhrwigi1"], ["https://tec.openplanner.team/stops/H1fr118b", "https://tec.openplanner.team/stops/H1fr133a"], ["https://tec.openplanner.team/stops/Btsllfp2", "https://tec.openplanner.team/stops/Btstbbu2"], ["https://tec.openplanner.team/stops/Lvegc--5", "https://tec.openplanner.team/stops/Lvevict1"], ["https://tec.openplanner.team/stops/Bhanath1", "https://tec.openplanner.team/stops/LHNecpr4"], ["https://tec.openplanner.team/stops/LGorysa2", "https://tec.openplanner.team/stops/Lpebeco1"], ["https://tec.openplanner.team/stops/Cctsncb4", "https://tec.openplanner.team/stops/NC02aob"], ["https://tec.openplanner.team/stops/X614aya", "https://tec.openplanner.team/stops/X614ayb"], ["https://tec.openplanner.team/stops/N501dnb", "https://tec.openplanner.team/stops/N501dob"], ["https://tec.openplanner.team/stops/Cwgmell1", "https://tec.openplanner.team/stops/Cwgmell2"], ["https://tec.openplanner.team/stops/H4ty286b", "https://tec.openplanner.team/stops/H4ty308e"], ["https://tec.openplanner.team/stops/H4ne132a", "https://tec.openplanner.team/stops/H4ne132d"], ["https://tec.openplanner.team/stops/Cmerdby1", "https://tec.openplanner.team/stops/Cmerued2"], ["https://tec.openplanner.team/stops/LMalarg3", "https://tec.openplanner.team/stops/LPldoua3"], ["https://tec.openplanner.team/stops/LLLvill1", "https://tec.openplanner.team/stops/X576aga"], ["https://tec.openplanner.team/stops/N390abb", "https://tec.openplanner.team/stops/N390adb"], ["https://tec.openplanner.team/stops/N230alb", "https://tec.openplanner.team/stops/N549ahb"], ["https://tec.openplanner.team/stops/X793afa", "https://tec.openplanner.team/stops/X793agb"], ["https://tec.openplanner.team/stops/LHUtrin1", "https://tec.openplanner.team/stops/LHUtrin2"], ["https://tec.openplanner.team/stops/Loualbe2", "https://tec.openplanner.team/stops/Lougare2"], ["https://tec.openplanner.team/stops/X833aaa", "https://tec.openplanner.team/stops/X833aab"], ["https://tec.openplanner.team/stops/LORgr8-1", "https://tec.openplanner.team/stops/LORgr8-2"], ["https://tec.openplanner.team/stops/Lstbarb2", "https://tec.openplanner.team/stops/Lstbarb6"], ["https://tec.openplanner.team/stops/LEBmoul1", "https://tec.openplanner.team/stops/LLAchpl1"], ["https://tec.openplanner.team/stops/Lrclant1", "https://tec.openplanner.team/stops/Lrclant2"], ["https://tec.openplanner.team/stops/H1vh137b", "https://tec.openplanner.team/stops/H3bo102b"], ["https://tec.openplanner.team/stops/LPleclu1", "https://tec.openplanner.team/stops/LPleclu2"], ["https://tec.openplanner.team/stops/N232byb", "https://tec.openplanner.team/stops/N232bzb"], ["https://tec.openplanner.team/stops/Bnivcom1", "https://tec.openplanner.team/stops/Bnivtra1"], ["https://tec.openplanner.team/stops/H1hc127c", "https://tec.openplanner.team/stops/H5gr138a"], ["https://tec.openplanner.team/stops/Bmlncle2", "https://tec.openplanner.team/stops/Bmlnsms2"], ["https://tec.openplanner.team/stops/Brsgm302", "https://tec.openplanner.team/stops/Brsgman2"], ["https://tec.openplanner.team/stops/NH01ajb", "https://tec.openplanner.team/stops/NH21aea"], ["https://tec.openplanner.team/stops/Lglcoun1", "https://tec.openplanner.team/stops/Lglcoun2"], ["https://tec.openplanner.team/stops/Ljerobi2", "https://tec.openplanner.team/stops/Ljetomb1"], ["https://tec.openplanner.team/stops/N565aja", "https://tec.openplanner.team/stops/N565alb"], ["https://tec.openplanner.team/stops/LHTeg--5", "https://tec.openplanner.team/stops/LHTmoul1"], ["https://tec.openplanner.team/stops/H2bh112b", "https://tec.openplanner.team/stops/H2fy119a"], ["https://tec.openplanner.team/stops/Bbealbu3", "https://tec.openplanner.team/stops/Bbealon3"], ["https://tec.openplanner.team/stops/LWepost1", "https://tec.openplanner.team/stops/LWepost4"], ["https://tec.openplanner.team/stops/LARgare1", "https://tec.openplanner.team/stops/LARgare2"], ["https://tec.openplanner.team/stops/X736aba", "https://tec.openplanner.team/stops/X736adb"], ["https://tec.openplanner.team/stops/H4mo148a", "https://tec.openplanner.team/stops/H4mo204b"], ["https://tec.openplanner.team/stops/H4ca121a", "https://tec.openplanner.team/stops/H4ca122a"], ["https://tec.openplanner.team/stops/N506aca", "https://tec.openplanner.team/stops/N506beb"], ["https://tec.openplanner.team/stops/H2ha128b", "https://tec.openplanner.team/stops/H2hg160b"], ["https://tec.openplanner.team/stops/X950aca", "https://tec.openplanner.team/stops/X950acb"], ["https://tec.openplanner.team/stops/N531agb", "https://tec.openplanner.team/stops/N531ahb"], ["https://tec.openplanner.team/stops/Cjudest4", "https://tec.openplanner.team/stops/Cloauln1"], ["https://tec.openplanner.team/stops/Cgoson12", "https://tec.openplanner.team/stops/Cjuepee1"], ["https://tec.openplanner.team/stops/X713aeb", "https://tec.openplanner.team/stops/X713ajb"], ["https://tec.openplanner.team/stops/LWHmath1", "https://tec.openplanner.team/stops/LWHmath2"], ["https://tec.openplanner.team/stops/N151ajc", "https://tec.openplanner.team/stops/N151aje"], ["https://tec.openplanner.team/stops/N515aea", "https://tec.openplanner.team/stops/N517aab"], ["https://tec.openplanner.team/stops/LhGbahn*", "https://tec.openplanner.team/stops/LhSfrei2"], ["https://tec.openplanner.team/stops/X808aac", "https://tec.openplanner.team/stops/X808abc"], ["https://tec.openplanner.team/stops/X908aia", "https://tec.openplanner.team/stops/X908aka"], ["https://tec.openplanner.team/stops/Bbcoben2", "https://tec.openplanner.team/stops/Bbcopre2"], ["https://tec.openplanner.team/stops/N225acb", "https://tec.openplanner.team/stops/N225aha"], ["https://tec.openplanner.team/stops/Caistro2", "https://tec.openplanner.team/stops/Crsrose1"], ["https://tec.openplanner.team/stops/X917aba", "https://tec.openplanner.team/stops/X919anb"], ["https://tec.openplanner.team/stops/N501fdd", "https://tec.openplanner.team/stops/N501flb"], ["https://tec.openplanner.team/stops/Bmoucoq2", "https://tec.openplanner.team/stops/Bottra91"], ["https://tec.openplanner.team/stops/H1ro133a", "https://tec.openplanner.team/stops/H5pe144a"], ["https://tec.openplanner.team/stops/LbOre3b2", "https://tec.openplanner.team/stops/LmOkape1"], ["https://tec.openplanner.team/stops/N211ava", "https://tec.openplanner.team/stops/N211avb"], ["https://tec.openplanner.team/stops/LSZlegr1", "https://tec.openplanner.team/stops/LSZlegr2"], ["https://tec.openplanner.team/stops/N506agb", "https://tec.openplanner.team/stops/N506alb"], ["https://tec.openplanner.team/stops/Blindel1", "https://tec.openplanner.team/stops/Blindel5"], ["https://tec.openplanner.team/stops/N301acb", "https://tec.openplanner.team/stops/N301ada"], ["https://tec.openplanner.team/stops/H2ll188b", "https://tec.openplanner.team/stops/H2ll190b"], ["https://tec.openplanner.team/stops/LAUbour1", "https://tec.openplanner.team/stops/LAUbour4"], ["https://tec.openplanner.team/stops/Cchlamb2", "https://tec.openplanner.team/stops/Clojone2"], ["https://tec.openplanner.team/stops/X641aka", "https://tec.openplanner.team/stops/X641axb"], ["https://tec.openplanner.team/stops/H4to134b", "https://tec.openplanner.team/stops/H4to139a"], ["https://tec.openplanner.team/stops/Ctmdema1", "https://tec.openplanner.team/stops/Ctmmonu1"], ["https://tec.openplanner.team/stops/X602aia", "https://tec.openplanner.team/stops/X602aja"], ["https://tec.openplanner.team/stops/H4og214a", "https://tec.openplanner.team/stops/H4to137a"], ["https://tec.openplanner.team/stops/LeUath2", "https://tec.openplanner.team/stops/LeUwais2"], ["https://tec.openplanner.team/stops/LJEniho1", "https://tec.openplanner.team/stops/LJEtige1"], ["https://tec.openplanner.team/stops/LFTec--1", "https://tec.openplanner.team/stops/LFTec--2"], ["https://tec.openplanner.team/stops/N501icy", "https://tec.openplanner.team/stops/N501ihz"], ["https://tec.openplanner.team/stops/LMaslav4", "https://tec.openplanner.team/stops/LMazonn4"], ["https://tec.openplanner.team/stops/Landolh2", "https://tec.openplanner.team/stops/Lanrois1"], ["https://tec.openplanner.team/stops/N207aea", "https://tec.openplanner.team/stops/N207afa"], ["https://tec.openplanner.team/stops/N229atb", "https://tec.openplanner.team/stops/N540apa"], ["https://tec.openplanner.team/stops/LLrbecc1", "https://tec.openplanner.team/stops/LLrlour1"], ["https://tec.openplanner.team/stops/Llaflot1", "https://tec.openplanner.team/stops/Llaflot2"], ["https://tec.openplanner.team/stops/Cmmgadi1", "https://tec.openplanner.team/stops/Cmmheur2"], ["https://tec.openplanner.team/stops/X624aea", "https://tec.openplanner.team/stops/X624aeb"], ["https://tec.openplanner.team/stops/Bbuztai1", "https://tec.openplanner.team/stops/Cobhaut2"], ["https://tec.openplanner.team/stops/LaUn1--3", "https://tec.openplanner.team/stops/LmSkape2"], ["https://tec.openplanner.team/stops/X982apb", "https://tec.openplanner.team/stops/X982aza"], ["https://tec.openplanner.team/stops/X614apa", "https://tec.openplanner.team/stops/X614asa"], ["https://tec.openplanner.team/stops/H2ep172b", "https://tec.openplanner.team/stops/H2le176b"], ["https://tec.openplanner.team/stops/H1si152a", "https://tec.openplanner.team/stops/H1si169a"], ["https://tec.openplanner.team/stops/Lprmoin1", "https://tec.openplanner.team/stops/Lprorph2"], ["https://tec.openplanner.team/stops/N201aha", "https://tec.openplanner.team/stops/N201ara"], ["https://tec.openplanner.team/stops/H5bl122b", "https://tec.openplanner.team/stops/H5bl143b"], ["https://tec.openplanner.team/stops/N538ana", "https://tec.openplanner.team/stops/N538aoa"], ["https://tec.openplanner.team/stops/H1bb113b", "https://tec.openplanner.team/stops/H1bb116c"], ["https://tec.openplanner.team/stops/H1wa143a", "https://tec.openplanner.team/stops/H1wl121a"], ["https://tec.openplanner.team/stops/X561aba", "https://tec.openplanner.team/stops/X561aeb"], ["https://tec.openplanner.team/stops/LThhoul2", "https://tec.openplanner.team/stops/LThsere2"], ["https://tec.openplanner.team/stops/N104aad", "https://tec.openplanner.team/stops/N116aad"], ["https://tec.openplanner.team/stops/H4ty322a", "https://tec.openplanner.team/stops/H4ty322c"], ["https://tec.openplanner.team/stops/N301abd", "https://tec.openplanner.team/stops/N301acb"], ["https://tec.openplanner.team/stops/N501hub", "https://tec.openplanner.team/stops/N501inb"], ["https://tec.openplanner.team/stops/LrAkape1", "https://tec.openplanner.team/stops/LrAmuhl1"], ["https://tec.openplanner.team/stops/X948ana", "https://tec.openplanner.team/stops/X949akb"], ["https://tec.openplanner.team/stops/Cdostco1", "https://tec.openplanner.team/stops/Cstgare1"], ["https://tec.openplanner.team/stops/X820aca", "https://tec.openplanner.team/stops/X820adb"], ["https://tec.openplanner.team/stops/Lvealbe2", "https://tec.openplanner.team/stops/Lvefran2"], ["https://tec.openplanner.team/stops/LBiberg1", "https://tec.openplanner.team/stops/LDOeg--1"], ["https://tec.openplanner.team/stops/H4ne140b", "https://tec.openplanner.team/stops/H4te251a"], ["https://tec.openplanner.team/stops/X739adb", "https://tec.openplanner.team/stops/X739alb"], ["https://tec.openplanner.team/stops/N501iba", "https://tec.openplanner.team/stops/N501ifb"], ["https://tec.openplanner.team/stops/H3lr111a", "https://tec.openplanner.team/stops/H3lr117b"], ["https://tec.openplanner.team/stops/X801aga", "https://tec.openplanner.team/stops/X801bsa"], ["https://tec.openplanner.team/stops/Bwatmch2", "https://tec.openplanner.team/stops/Bwatpct2"], ["https://tec.openplanner.team/stops/H1wi155a", "https://tec.openplanner.team/stops/H1wi157a"], ["https://tec.openplanner.team/stops/LVlfooz1", "https://tec.openplanner.team/stops/LVlledo1"], ["https://tec.openplanner.team/stops/X982bub", "https://tec.openplanner.team/stops/X982bxa"], ["https://tec.openplanner.team/stops/Bgrmpco1", "https://tec.openplanner.team/stops/N576ama"], ["https://tec.openplanner.team/stops/LOmlime1", "https://tec.openplanner.team/stops/LOmvill4"], ["https://tec.openplanner.team/stops/LHodomm2", "https://tec.openplanner.team/stops/LSBjoli1"], ["https://tec.openplanner.team/stops/Cgyduss1", "https://tec.openplanner.team/stops/Cgymast2"], ["https://tec.openplanner.team/stops/LMHec--1", "https://tec.openplanner.team/stops/LMHplac4"], ["https://tec.openplanner.team/stops/LnEfrie1", "https://tec.openplanner.team/stops/LnEkirc3"], ["https://tec.openplanner.team/stops/N166aba", "https://tec.openplanner.team/stops/N166ada"], ["https://tec.openplanner.team/stops/H1em103b", "https://tec.openplanner.team/stops/H1fa120b"], ["https://tec.openplanner.team/stops/Lstchim2", "https://tec.openplanner.team/stops/Lstphys2"], ["https://tec.openplanner.team/stops/N357aca", "https://tec.openplanner.team/stops/X351adb"], ["https://tec.openplanner.team/stops/LAUcarr2", "https://tec.openplanner.team/stops/LAUpind2"], ["https://tec.openplanner.team/stops/X923aba", "https://tec.openplanner.team/stops/X923ahb"], ["https://tec.openplanner.team/stops/N205ada", "https://tec.openplanner.team/stops/N219abb"], ["https://tec.openplanner.team/stops/N530agb", "https://tec.openplanner.team/stops/N534beb"], ["https://tec.openplanner.team/stops/LFRhock3", "https://tec.openplanner.team/stops/LHcbaro2"], ["https://tec.openplanner.team/stops/N122aaa", "https://tec.openplanner.team/stops/N122abb"], ["https://tec.openplanner.team/stops/Lsebrun1", "https://tec.openplanner.team/stops/Lsepaqu1"], ["https://tec.openplanner.team/stops/Lghleon1", "https://tec.openplanner.team/stops/Lmlbaro2"], ["https://tec.openplanner.team/stops/LAx17--1", "https://tec.openplanner.team/stops/LAx41--1"], ["https://tec.openplanner.team/stops/X738adb", "https://tec.openplanner.team/stops/X738aeb"], ["https://tec.openplanner.team/stops/N245aca", "https://tec.openplanner.team/stops/N340aea"], ["https://tec.openplanner.team/stops/N155ada", "https://tec.openplanner.team/stops/N155aja"], ["https://tec.openplanner.team/stops/Lpeatel2", "https://tec.openplanner.team/stops/Lpechin2"], ["https://tec.openplanner.team/stops/Clb4bra2", "https://tec.openplanner.team/stops/H1bi103b"], ["https://tec.openplanner.team/stops/Bnivsba1", "https://tec.openplanner.team/stops/Bnivsba2"], ["https://tec.openplanner.team/stops/X601cha", "https://tec.openplanner.team/stops/X662aja"], ["https://tec.openplanner.team/stops/X664aic", "https://tec.openplanner.team/stops/X664ajb"], ["https://tec.openplanner.team/stops/N538aia", "https://tec.openplanner.team/stops/N538aib"], ["https://tec.openplanner.team/stops/LSZdepo2", "https://tec.openplanner.team/stops/LSZjona1"], ["https://tec.openplanner.team/stops/H5fl100a", "https://tec.openplanner.team/stops/H5fl103a"], ["https://tec.openplanner.team/stops/Cobobjo1", "https://tec.openplanner.team/stops/Cobobjo2"], ["https://tec.openplanner.team/stops/X870abb", "https://tec.openplanner.team/stops/X870aca"], ["https://tec.openplanner.team/stops/H1hm175a", "https://tec.openplanner.team/stops/H1hm177a"], ["https://tec.openplanner.team/stops/N390aea", "https://tec.openplanner.team/stops/X390ana"], ["https://tec.openplanner.team/stops/Barqbar1", "https://tec.openplanner.team/stops/Barqhpe1"], ["https://tec.openplanner.team/stops/N515ala", "https://tec.openplanner.team/stops/N515alb"], ["https://tec.openplanner.team/stops/N309abb", "https://tec.openplanner.team/stops/N365aca"], ["https://tec.openplanner.team/stops/H1je211a", "https://tec.openplanner.team/stops/H1je211b"], ["https://tec.openplanner.team/stops/X318abb", "https://tec.openplanner.team/stops/X318aca"], ["https://tec.openplanner.team/stops/X733acb", "https://tec.openplanner.team/stops/X733afb"], ["https://tec.openplanner.team/stops/Bmanfbg1", "https://tec.openplanner.team/stops/H2mg139c"], ["https://tec.openplanner.team/stops/N232bnb", "https://tec.openplanner.team/stops/N232cca"], ["https://tec.openplanner.team/stops/H5is169b", "https://tec.openplanner.team/stops/H5is174b"], ["https://tec.openplanner.team/stops/LMOchpl2", "https://tec.openplanner.team/stops/LMOcorn1"], ["https://tec.openplanner.team/stops/LLR4bra2", "https://tec.openplanner.team/stops/LLRsalm1"], ["https://tec.openplanner.team/stops/Cmaacac1", "https://tec.openplanner.team/stops/Cmaacac2"], ["https://tec.openplanner.team/stops/N201aja", "https://tec.openplanner.team/stops/N211ala"], ["https://tec.openplanner.team/stops/Csuegli", "https://tec.openplanner.team/stops/Csycant1"], ["https://tec.openplanner.team/stops/X871aea", "https://tec.openplanner.team/stops/X871aeb"], ["https://tec.openplanner.team/stops/Bhercsj1", "https://tec.openplanner.team/stops/Bpiesta2"], ["https://tec.openplanner.team/stops/X888aba", "https://tec.openplanner.team/stops/X888afb"], ["https://tec.openplanner.team/stops/H2hg271a", "https://tec.openplanner.team/stops/H2lc170a"], ["https://tec.openplanner.team/stops/LrEborn1", "https://tec.openplanner.team/stops/LrEborn2"], ["https://tec.openplanner.team/stops/N501crb", "https://tec.openplanner.team/stops/N501cub"], ["https://tec.openplanner.team/stops/LFAsauv2", "https://tec.openplanner.team/stops/LFAwale2"], ["https://tec.openplanner.team/stops/LiVkreu2", "https://tec.openplanner.team/stops/LiVkreu3"], ["https://tec.openplanner.team/stops/LLz21--1", "https://tec.openplanner.team/stops/LSTmeiz1"], ["https://tec.openplanner.team/stops/LaAburt2", "https://tec.openplanner.team/stops/LaAkapi2"], ["https://tec.openplanner.team/stops/Brixwav1", "https://tec.openplanner.team/stops/Brixwav3"], ["https://tec.openplanner.team/stops/N141afb", "https://tec.openplanner.team/stops/N141apb"], ["https://tec.openplanner.team/stops/X805ada", "https://tec.openplanner.team/stops/X805afb"], ["https://tec.openplanner.team/stops/LMschap2", "https://tec.openplanner.team/stops/LMsec--2"], ["https://tec.openplanner.team/stops/LLrgobe1", "https://tec.openplanner.team/stops/LLrjeho1"], ["https://tec.openplanner.team/stops/LORhorp1", "https://tec.openplanner.team/stops/LORmont1"], ["https://tec.openplanner.team/stops/LRemorr1", "https://tec.openplanner.team/stops/LRemorr2"], ["https://tec.openplanner.team/stops/LWHwaas1", "https://tec.openplanner.team/stops/LWSstat1"], ["https://tec.openplanner.team/stops/Blempuc2", "https://tec.openplanner.team/stops/Btubcal2"], ["https://tec.openplanner.team/stops/LHThall4", "https://tec.openplanner.team/stops/LWOrout1"], ["https://tec.openplanner.team/stops/N155aed", "https://tec.openplanner.team/stops/N155afb"], ["https://tec.openplanner.team/stops/H1vg359a", "https://tec.openplanner.team/stops/H1vs146a"], ["https://tec.openplanner.team/stops/X908aha", "https://tec.openplanner.team/stops/X908aob"], ["https://tec.openplanner.team/stops/H4mo156a", "https://tec.openplanner.team/stops/H4mo157a"], ["https://tec.openplanner.team/stops/H4ta123b", "https://tec.openplanner.team/stops/H4wu377b"], ["https://tec.openplanner.team/stops/X901aua", "https://tec.openplanner.team/stops/X901bqa"], ["https://tec.openplanner.team/stops/Lcebarr1", "https://tec.openplanner.team/stops/Lcebarr2"], ["https://tec.openplanner.team/stops/H5el112b", "https://tec.openplanner.team/stops/H5el116b"], ["https://tec.openplanner.team/stops/LBUmara3", "https://tec.openplanner.team/stops/LBUrout2"], ["https://tec.openplanner.team/stops/LClberw2", "https://tec.openplanner.team/stops/LClflor2"], ["https://tec.openplanner.team/stops/H4wr173a", "https://tec.openplanner.team/stops/H4wr177a"], ["https://tec.openplanner.team/stops/X615aja", "https://tec.openplanner.team/stops/X615ajb"], ["https://tec.openplanner.team/stops/X370acb", "https://tec.openplanner.team/stops/X872adb"], ["https://tec.openplanner.team/stops/LGmcent1", "https://tec.openplanner.team/stops/LMtcent1"], ["https://tec.openplanner.team/stops/N331afa", "https://tec.openplanner.team/stops/N331afd"], ["https://tec.openplanner.team/stops/H5rx138b", "https://tec.openplanner.team/stops/H5rx145b"], ["https://tec.openplanner.team/stops/N510ada", "https://tec.openplanner.team/stops/N510aea"], ["https://tec.openplanner.team/stops/LHEchar2", "https://tec.openplanner.team/stops/LHEnaza1"], ["https://tec.openplanner.team/stops/N557aca", "https://tec.openplanner.team/stops/N557acb"], ["https://tec.openplanner.team/stops/H1ls109b", "https://tec.openplanner.team/stops/H1ls110a"], ["https://tec.openplanner.team/stops/N503aea", "https://tec.openplanner.team/stops/N535aoa"], ["https://tec.openplanner.team/stops/X684abb", "https://tec.openplanner.team/stops/X685afa"], ["https://tec.openplanner.team/stops/X630acb", "https://tec.openplanner.team/stops/X630adb"], ["https://tec.openplanner.team/stops/LTEkl122", "https://tec.openplanner.team/stops/LTEziho2"], ["https://tec.openplanner.team/stops/X673aaa", "https://tec.openplanner.team/stops/X673ada"], ["https://tec.openplanner.team/stops/X773aja", "https://tec.openplanner.team/stops/X773aka"], ["https://tec.openplanner.team/stops/Llxec--1", "https://tec.openplanner.team/stops/LSAvieu2"], ["https://tec.openplanner.team/stops/LhGadap1", "https://tec.openplanner.team/stops/LhGscha*"], ["https://tec.openplanner.team/stops/H1je216a", "https://tec.openplanner.team/stops/H1qu112a"], ["https://tec.openplanner.team/stops/LLRrape2", "https://tec.openplanner.team/stops/LLRrape4"], ["https://tec.openplanner.team/stops/H2ca100b", "https://tec.openplanner.team/stops/H2mo130b"], ["https://tec.openplanner.team/stops/Bmrlegl1", "https://tec.openplanner.team/stops/Bmrlhau1"], ["https://tec.openplanner.team/stops/N550agb", "https://tec.openplanner.team/stops/N550akb"], ["https://tec.openplanner.team/stops/H4ca123b", "https://tec.openplanner.team/stops/H4ca124b"], ["https://tec.openplanner.team/stops/Bhtipir1", "https://tec.openplanner.team/stops/Bhtirin1"], ["https://tec.openplanner.team/stops/LHUcamp1", "https://tec.openplanner.team/stops/LTimalv1"], ["https://tec.openplanner.team/stops/H4am113a", "https://tec.openplanner.team/stops/H4an112a"], ["https://tec.openplanner.team/stops/LFothie2", "https://tec.openplanner.team/stops/LJAgoff2"], ["https://tec.openplanner.team/stops/X801ata", "https://tec.openplanner.team/stops/X889aea"], ["https://tec.openplanner.team/stops/LCdchod2", "https://tec.openplanner.team/stops/LMAchod2"], ["https://tec.openplanner.team/stops/X607aja", "https://tec.openplanner.team/stops/X607ajb"], ["https://tec.openplanner.team/stops/X882aaa", "https://tec.openplanner.team/stops/X882aab"], ["https://tec.openplanner.team/stops/Ccuhsti2", "https://tec.openplanner.team/stops/Cpiegli2"], ["https://tec.openplanner.team/stops/Cchsud04", "https://tec.openplanner.team/stops/Cchsud05"], ["https://tec.openplanner.team/stops/Cmacoll1", "https://tec.openplanner.team/stops/Cromonn2"], ["https://tec.openplanner.team/stops/Cnaplan2", "https://tec.openplanner.team/stops/NC14afb"], ["https://tec.openplanner.team/stops/LWOcour1", "https://tec.openplanner.team/stops/LWOruis1"], ["https://tec.openplanner.team/stops/Cnaferr2", "https://tec.openplanner.team/stops/Cnahous2"], ["https://tec.openplanner.team/stops/X896afb", "https://tec.openplanner.team/stops/X897aoa"], ["https://tec.openplanner.team/stops/N514afa", "https://tec.openplanner.team/stops/N514agb"], ["https://tec.openplanner.team/stops/H1ne138a", "https://tec.openplanner.team/stops/H1ne150a"], ["https://tec.openplanner.team/stops/LWEchat2", "https://tec.openplanner.team/stops/LWEmerm2"], ["https://tec.openplanner.team/stops/X666aab", "https://tec.openplanner.team/stops/X666aeb"], ["https://tec.openplanner.team/stops/Cmacreu2", "https://tec.openplanner.team/stops/Cmmtomb2"], ["https://tec.openplanner.team/stops/LHThall4", "https://tec.openplanner.team/stops/LLxmonu2"], ["https://tec.openplanner.team/stops/N556aea", "https://tec.openplanner.team/stops/N556afb"], ["https://tec.openplanner.team/stops/LWAlong1", "https://tec.openplanner.team/stops/LWAloui1"], ["https://tec.openplanner.team/stops/LHoetie2", "https://tec.openplanner.team/stops/LHovill2"], ["https://tec.openplanner.team/stops/Bbcoroy1", "https://tec.openplanner.team/stops/Bhenfla2"], ["https://tec.openplanner.team/stops/Bhtihau1", "https://tec.openplanner.team/stops/Bhtirin2"], ["https://tec.openplanner.team/stops/N338aga", "https://tec.openplanner.team/stops/N338ahb"], ["https://tec.openplanner.team/stops/Cmlange2", "https://tec.openplanner.team/stops/Cmtrbra1"], ["https://tec.openplanner.team/stops/H1he111a", "https://tec.openplanner.team/stops/H1he111b"], ["https://tec.openplanner.team/stops/N547anb", "https://tec.openplanner.team/stops/N548aab"], ["https://tec.openplanner.team/stops/Caibras2", "https://tec.openplanner.team/stops/N543cia"], ["https://tec.openplanner.team/stops/LAWaube1", "https://tec.openplanner.team/stops/LAWcite3"], ["https://tec.openplanner.team/stops/LBspiet2", "https://tec.openplanner.team/stops/LBssucr1"], ["https://tec.openplanner.team/stops/N121aba", "https://tec.openplanner.team/stops/N121aeb"], ["https://tec.openplanner.team/stops/Ccycont1", "https://tec.openplanner.team/stops/Crclorc2"], ["https://tec.openplanner.team/stops/N115aca", "https://tec.openplanner.team/stops/N170adb"], ["https://tec.openplanner.team/stops/H1fr114b", "https://tec.openplanner.team/stops/H1fr122a"], ["https://tec.openplanner.team/stops/N232bia", "https://tec.openplanner.team/stops/N232cbb"], ["https://tec.openplanner.team/stops/X812ava", "https://tec.openplanner.team/stops/X812awa"], ["https://tec.openplanner.team/stops/H2sb258a", "https://tec.openplanner.team/stops/H2sb259b"], ["https://tec.openplanner.team/stops/X775aia", "https://tec.openplanner.team/stops/X775aic"], ["https://tec.openplanner.team/stops/N162aab", "https://tec.openplanner.team/stops/NC28aga"], ["https://tec.openplanner.team/stops/N508alb", "https://tec.openplanner.team/stops/N508ama"], ["https://tec.openplanner.team/stops/LPLcent2", "https://tec.openplanner.team/stops/LPLphar2"], ["https://tec.openplanner.team/stops/LlgCATH1", "https://tec.openplanner.team/stops/LlgPTAV6"], ["https://tec.openplanner.team/stops/Lemlacr1", "https://tec.openplanner.team/stops/Lemsely2"], ["https://tec.openplanner.team/stops/LOUherm2", "https://tec.openplanner.team/stops/Lvitomb2"], ["https://tec.openplanner.team/stops/H4ln128a", "https://tec.openplanner.team/stops/H4ln129b"], ["https://tec.openplanner.team/stops/N506boa", "https://tec.openplanner.team/stops/N506bob"], ["https://tec.openplanner.team/stops/Llghoch3", "https://tec.openplanner.team/stops/Llghoch4"], ["https://tec.openplanner.team/stops/H4mv187a", "https://tec.openplanner.team/stops/H4oe150a"], ["https://tec.openplanner.team/stops/H4ma401a", "https://tec.openplanner.team/stops/H4ma401b"], ["https://tec.openplanner.team/stops/Bjodeco2", "https://tec.openplanner.team/stops/Bjodeco3"], ["https://tec.openplanner.team/stops/Cmgbrou2", "https://tec.openplanner.team/stops/Cmghay2"], ["https://tec.openplanner.team/stops/X986aba", "https://tec.openplanner.team/stops/X986aha"], ["https://tec.openplanner.team/stops/LMAbass2", "https://tec.openplanner.team/stops/LMAcime1"], ["https://tec.openplanner.team/stops/N383aeb", "https://tec.openplanner.team/stops/N874akb"], ["https://tec.openplanner.team/stops/N501jna", "https://tec.openplanner.team/stops/N501joa"], ["https://tec.openplanner.team/stops/N214aca", "https://tec.openplanner.team/stops/N236ahb"], ["https://tec.openplanner.team/stops/Lanfran3", "https://tec.openplanner.team/stops/Lanfran4"], ["https://tec.openplanner.team/stops/N551anb", "https://tec.openplanner.team/stops/N551apb"], ["https://tec.openplanner.team/stops/X727aba", "https://tec.openplanner.team/stops/X727aha"], ["https://tec.openplanner.team/stops/H1ha185a", "https://tec.openplanner.team/stops/H1ha200a"], ["https://tec.openplanner.team/stops/N534aca", "https://tec.openplanner.team/stops/N534acb"], ["https://tec.openplanner.team/stops/LHVgoro1", "https://tec.openplanner.team/stops/LJAbois2"], ["https://tec.openplanner.team/stops/Bbaualz2", "https://tec.openplanner.team/stops/Bbauham2"], ["https://tec.openplanner.team/stops/H4ty276b", "https://tec.openplanner.team/stops/H4ty278a"], ["https://tec.openplanner.team/stops/X742ada", "https://tec.openplanner.team/stops/X742aeb"], ["https://tec.openplanner.team/stops/H1po138b", "https://tec.openplanner.team/stops/H1po154a"], ["https://tec.openplanner.team/stops/N524aaa", "https://tec.openplanner.team/stops/N525ajb"], ["https://tec.openplanner.team/stops/Ljuinte1", "https://tec.openplanner.team/stops/Llgcouv2"], ["https://tec.openplanner.team/stops/X801bde", "https://tec.openplanner.team/stops/X801cka"], ["https://tec.openplanner.team/stops/N260abb", "https://tec.openplanner.team/stops/N260abc"], ["https://tec.openplanner.team/stops/X925agb", "https://tec.openplanner.team/stops/X925ahb"], ["https://tec.openplanner.team/stops/H2gy100b", "https://tec.openplanner.team/stops/H2tz115a"], ["https://tec.openplanner.team/stops/Bwavdel2", "https://tec.openplanner.team/stops/Bwavnam3"], ["https://tec.openplanner.team/stops/X639acc", "https://tec.openplanner.team/stops/X639acd"], ["https://tec.openplanner.team/stops/LLegern1", "https://tec.openplanner.team/stops/X547ara"], ["https://tec.openplanner.team/stops/LLmvict2", "https://tec.openplanner.team/stops/LLmwaut1"], ["https://tec.openplanner.team/stops/X857aaa", "https://tec.openplanner.team/stops/X857abb"], ["https://tec.openplanner.team/stops/H4bo114c", "https://tec.openplanner.team/stops/H4bo181b"], ["https://tec.openplanner.team/stops/Bjodppe1", "https://tec.openplanner.team/stops/Bjodppe2"], ["https://tec.openplanner.team/stops/LEHhaut1", "https://tec.openplanner.team/stops/LEHhaut2"], ["https://tec.openplanner.team/stops/LAWgill1", "https://tec.openplanner.team/stops/LAWmc--2"], ["https://tec.openplanner.team/stops/LHaeg--1", "https://tec.openplanner.team/stops/LOurena1"], ["https://tec.openplanner.team/stops/N501aga", "https://tec.openplanner.team/stops/N501cla"], ["https://tec.openplanner.team/stops/LeYmosc2", "https://tec.openplanner.team/stops/LeYraaf1"], ["https://tec.openplanner.team/stops/Cmmn1171", "https://tec.openplanner.team/stops/Cmmtomb2"], ["https://tec.openplanner.team/stops/X768agb", "https://tec.openplanner.team/stops/X768ajb"], ["https://tec.openplanner.team/stops/Lhrhome1", "https://tec.openplanner.team/stops/Lhrstev2"], ["https://tec.openplanner.team/stops/Lagchen1", "https://tec.openplanner.team/stops/Llgpari1"], ["https://tec.openplanner.team/stops/LkEhaag1", "https://tec.openplanner.team/stops/LkEl1211"], ["https://tec.openplanner.team/stops/Cbupla2", "https://tec.openplanner.team/stops/Cbuplac4"], ["https://tec.openplanner.team/stops/X358aba", "https://tec.openplanner.team/stops/X358abb"], ["https://tec.openplanner.team/stops/Crewaba2", "https://tec.openplanner.team/stops/Crewath1"], ["https://tec.openplanner.team/stops/Ljuplpr1", "https://tec.openplanner.team/stops/Ljuprev1"], ["https://tec.openplanner.team/stops/Lmogerm1", "https://tec.openplanner.team/stops/Lmolama2"], ["https://tec.openplanner.team/stops/Cacragu2", "https://tec.openplanner.team/stops/NC24afb"], ["https://tec.openplanner.team/stops/Cflpost1", "https://tec.openplanner.team/stops/Cwgcroi1"], ["https://tec.openplanner.team/stops/Bhenhau1", "https://tec.openplanner.team/stops/Bvircsj1"], ["https://tec.openplanner.team/stops/X902afa", "https://tec.openplanner.team/stops/X999aia"], ["https://tec.openplanner.team/stops/Lmobrac2", "https://tec.openplanner.team/stops/Lsnbrac3"], ["https://tec.openplanner.team/stops/N531aab", "https://tec.openplanner.team/stops/N574aca"], ["https://tec.openplanner.team/stops/N509aga", "https://tec.openplanner.team/stops/N509akb"], ["https://tec.openplanner.team/stops/Llgchat1", "https://tec.openplanner.team/stops/Llgchat2"], ["https://tec.openplanner.team/stops/LOCeg--2", "https://tec.openplanner.team/stops/LOChuy-1"], ["https://tec.openplanner.team/stops/H4ce105a", "https://tec.openplanner.team/stops/H4mx115b"], ["https://tec.openplanner.team/stops/N505aoa", "https://tec.openplanner.team/stops/N505aob"], ["https://tec.openplanner.team/stops/Cmeptmi5", "https://tec.openplanner.team/stops/Cmerued1"], ["https://tec.openplanner.team/stops/LSldurb2", "https://tec.openplanner.team/stops/X919ajb"], ["https://tec.openplanner.team/stops/N501eoa", "https://tec.openplanner.team/stops/N501ggb"], ["https://tec.openplanner.team/stops/LFAplan1", "https://tec.openplanner.team/stops/LFAscie1"], ["https://tec.openplanner.team/stops/N501fbz", "https://tec.openplanner.team/stops/N501fna"], ["https://tec.openplanner.team/stops/N390aab", "https://tec.openplanner.team/stops/N390aca"], ["https://tec.openplanner.team/stops/Blasbgc2", "https://tec.openplanner.team/stops/Blasbh52"], ["https://tec.openplanner.team/stops/Ctrstro1", "https://tec.openplanner.team/stops/Ctrterm1"], ["https://tec.openplanner.team/stops/X601bcb", "https://tec.openplanner.team/stops/X601bda"], ["https://tec.openplanner.team/stops/N134alb", "https://tec.openplanner.team/stops/N135bea"], ["https://tec.openplanner.team/stops/LWAlong2", "https://tec.openplanner.team/stops/LWAlong5"], ["https://tec.openplanner.team/stops/X728adb", "https://tec.openplanner.team/stops/X746aba"], ["https://tec.openplanner.team/stops/N576aaa", "https://tec.openplanner.team/stops/N576aab"], ["https://tec.openplanner.team/stops/X765afa", "https://tec.openplanner.team/stops/X765afb"], ["https://tec.openplanner.team/stops/Bflegar5", "https://tec.openplanner.team/stops/Bflegar6"], ["https://tec.openplanner.team/stops/LSOcime1", "https://tec.openplanner.team/stops/LSOgard1"], ["https://tec.openplanner.team/stops/LBpbruy1", "https://tec.openplanner.team/stops/LBpbruy2"], ["https://tec.openplanner.team/stops/N308aya", "https://tec.openplanner.team/stops/N308aza"], ["https://tec.openplanner.team/stops/Bchacen1", "https://tec.openplanner.team/stops/Bchacen2"], ["https://tec.openplanner.team/stops/H4ty311b", "https://tec.openplanner.team/stops/H4ty326a"], ["https://tec.openplanner.team/stops/H1ch141b", "https://tec.openplanner.team/stops/H1hh112a"], ["https://tec.openplanner.team/stops/H1wa162a", "https://tec.openplanner.team/stops/H1wg131b"], ["https://tec.openplanner.team/stops/N123ada", "https://tec.openplanner.team/stops/N123adb"], ["https://tec.openplanner.team/stops/X938aba", "https://tec.openplanner.team/stops/X938adb"], ["https://tec.openplanner.team/stops/Bmarfjo1", "https://tec.openplanner.team/stops/Bmarpla1"], ["https://tec.openplanner.team/stops/Canrtth1", "https://tec.openplanner.team/stops/Canrtth3"], ["https://tec.openplanner.team/stops/X850agb", "https://tec.openplanner.team/stops/X850ahb"], ["https://tec.openplanner.team/stops/LLTfall1", "https://tec.openplanner.team/stops/LLTgole1"], ["https://tec.openplanner.team/stops/X633aia", "https://tec.openplanner.team/stops/X633ala"], ["https://tec.openplanner.team/stops/H4av103a", "https://tec.openplanner.team/stops/H4av106a"], ["https://tec.openplanner.team/stops/H2mm136b", "https://tec.openplanner.team/stops/H2mo131b"], ["https://tec.openplanner.team/stops/X344aeb", "https://tec.openplanner.team/stops/X362ada"], ["https://tec.openplanner.team/stops/N232bhb", "https://tec.openplanner.team/stops/N232bia"], ["https://tec.openplanner.team/stops/LLUadze2", "https://tec.openplanner.team/stops/LLUtrol2"], ["https://tec.openplanner.team/stops/LAmbach1", "https://tec.openplanner.team/stops/LAmwaut1"], ["https://tec.openplanner.team/stops/H1eo104a", "https://tec.openplanner.team/stops/H1mj128b"], ["https://tec.openplanner.team/stops/LHUalbe2", "https://tec.openplanner.team/stops/LHUgare*"], ["https://tec.openplanner.team/stops/H1bd100b", "https://tec.openplanner.team/stops/H1ol140a"], ["https://tec.openplanner.team/stops/Ccucroi1", "https://tec.openplanner.team/stops/Ccutill1"], ["https://tec.openplanner.team/stops/H1hc125a", "https://tec.openplanner.team/stops/H1hc127a"], ["https://tec.openplanner.team/stops/X346afb", "https://tec.openplanner.team/stops/X892acb"], ["https://tec.openplanner.team/stops/H4ir164b", "https://tec.openplanner.team/stops/H4to136a"], ["https://tec.openplanner.team/stops/Lvecrot2", "https://tec.openplanner.team/stops/Lvepoud2"], ["https://tec.openplanner.team/stops/N308bca", "https://tec.openplanner.team/stops/N308bhb"], ["https://tec.openplanner.team/stops/LGHplai1", "https://tec.openplanner.team/stops/LGHplai2"], ["https://tec.openplanner.team/stops/Bpelf961", "https://tec.openplanner.team/stops/Bpelf962"], ["https://tec.openplanner.team/stops/Cgxvkho2", "https://tec.openplanner.team/stops/Cmocime2"], ["https://tec.openplanner.team/stops/Cfcctru2", "https://tec.openplanner.team/stops/Cvrfema1"], ["https://tec.openplanner.team/stops/H5rx103b", "https://tec.openplanner.team/stops/H5rx146a"], ["https://tec.openplanner.team/stops/X652afb", "https://tec.openplanner.team/stops/X652ajb"], ["https://tec.openplanner.team/stops/Bbststa2", "https://tec.openplanner.team/stops/Csdetan1"], ["https://tec.openplanner.team/stops/X837akb", "https://tec.openplanner.team/stops/X837alb"], ["https://tec.openplanner.team/stops/X982asa", "https://tec.openplanner.team/stops/X982awa"], ["https://tec.openplanner.team/stops/LDOanes1", "https://tec.openplanner.team/stops/LGOdelv2"], ["https://tec.openplanner.team/stops/H1el132b", "https://tec.openplanner.team/stops/H1wi151a"], ["https://tec.openplanner.team/stops/N351anb", "https://tec.openplanner.team/stops/N357ada"], ["https://tec.openplanner.team/stops/N544afa", "https://tec.openplanner.team/stops/N544aga"], ["https://tec.openplanner.team/stops/Bjancha1", "https://tec.openplanner.team/stops/Bolppsn2"], ["https://tec.openplanner.team/stops/LHAvall1", "https://tec.openplanner.team/stops/LRItour2"], ["https://tec.openplanner.team/stops/H1hc151a", "https://tec.openplanner.team/stops/H1hc152a"], ["https://tec.openplanner.team/stops/X671aca", "https://tec.openplanner.team/stops/X671aeb"], ["https://tec.openplanner.team/stops/N501chb", "https://tec.openplanner.team/stops/N501chf"], ["https://tec.openplanner.team/stops/H4bn173b", "https://tec.openplanner.team/stops/H4bn174b"], ["https://tec.openplanner.team/stops/H4mo140b", "https://tec.openplanner.team/stops/H4mo145b"], ["https://tec.openplanner.team/stops/H1ha190a", "https://tec.openplanner.team/stops/H1ha192a"], ["https://tec.openplanner.team/stops/N203abb", "https://tec.openplanner.team/stops/N203afa"], ["https://tec.openplanner.team/stops/H2jo162b", "https://tec.openplanner.team/stops/H2lh126a"], ["https://tec.openplanner.team/stops/Cmomalg2", "https://tec.openplanner.team/stops/Crocona1"], ["https://tec.openplanner.team/stops/Bvlvmar1", "https://tec.openplanner.team/stops/Bvlvpco2"], ["https://tec.openplanner.team/stops/N508afb", "https://tec.openplanner.team/stops/N508apa"], ["https://tec.openplanner.team/stops/Bblaegl2", "https://tec.openplanner.team/stops/Bblasmo1"], ["https://tec.openplanner.team/stops/H1mm122d", "https://tec.openplanner.team/stops/H1mm125c"], ["https://tec.openplanner.team/stops/LHXmonu2", "https://tec.openplanner.team/stops/LLVfoss1"], ["https://tec.openplanner.team/stops/N501edb", "https://tec.openplanner.team/stops/N501gda"], ["https://tec.openplanner.team/stops/Lagpn6-2", "https://tec.openplanner.team/stops/Lemmath2"], ["https://tec.openplanner.team/stops/Crebien1", "https://tec.openplanner.team/stops/Crebien2"], ["https://tec.openplanner.team/stops/LBNgarn1", "https://tec.openplanner.team/stops/LMebove1"], ["https://tec.openplanner.team/stops/Bpercsp2", "https://tec.openplanner.team/stops/Bpermon3"], ["https://tec.openplanner.team/stops/H1ho138b", "https://tec.openplanner.team/stops/H1wa143a"], ["https://tec.openplanner.team/stops/Lchacie2", "https://tec.openplanner.team/stops/Lvitomb1"], ["https://tec.openplanner.team/stops/Bmsgmon1", "https://tec.openplanner.team/stops/Bmsgstj2"], ["https://tec.openplanner.team/stops/LDOprev1", "https://tec.openplanner.team/stops/LHVetoi2"], ["https://tec.openplanner.team/stops/X601aga", "https://tec.openplanner.team/stops/X662ata"], ["https://tec.openplanner.team/stops/X608aoa", "https://tec.openplanner.team/stops/X608atb"], ["https://tec.openplanner.team/stops/N531aba", "https://tec.openplanner.team/stops/N531abb"], ["https://tec.openplanner.team/stops/X633aka", "https://tec.openplanner.team/stops/X633amb"], ["https://tec.openplanner.team/stops/Lmocalv1", "https://tec.openplanner.team/stops/Lmogerm1"], ["https://tec.openplanner.team/stops/Baudtri2", "https://tec.openplanner.team/stops/Bwbfhip1"], ["https://tec.openplanner.team/stops/N505amb", "https://tec.openplanner.team/stops/N512aub"], ["https://tec.openplanner.team/stops/LBapeup1", "https://tec.openplanner.team/stops/LLrdrev1"], ["https://tec.openplanner.team/stops/X638aba", "https://tec.openplanner.team/stops/X638adb"], ["https://tec.openplanner.team/stops/N528aqa", "https://tec.openplanner.team/stops/N528arb"], ["https://tec.openplanner.team/stops/N501aay", "https://tec.openplanner.team/stops/N501esa"], ["https://tec.openplanner.team/stops/N568aea", "https://tec.openplanner.team/stops/N568aeb"], ["https://tec.openplanner.team/stops/H1hr121b", "https://tec.openplanner.team/stops/H1hr121c"], ["https://tec.openplanner.team/stops/X730aaa", "https://tec.openplanner.team/stops/X731aib"], ["https://tec.openplanner.team/stops/Chhlori1", "https://tec.openplanner.team/stops/Cmx3arb2"], ["https://tec.openplanner.team/stops/H1gh144b", "https://tec.openplanner.team/stops/H1gh155b"], ["https://tec.openplanner.team/stops/X943ada", "https://tec.openplanner.team/stops/X943afb"], ["https://tec.openplanner.team/stops/Bgnvpap1", "https://tec.openplanner.team/stops/Brsrpar2"], ["https://tec.openplanner.team/stops/H4mv192a", "https://tec.openplanner.team/stops/H4mv195b"], ["https://tec.openplanner.team/stops/Lfhpast1", "https://tec.openplanner.team/stops/Ljedepa2"], ["https://tec.openplanner.team/stops/N510aeb", "https://tec.openplanner.team/stops/N510afb"], ["https://tec.openplanner.team/stops/N561aca", "https://tec.openplanner.team/stops/N561afa"], ["https://tec.openplanner.team/stops/Bovecha1", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://tec.openplanner.team/stops/LLvgare2", "https://tec.openplanner.team/stops/NL81adb"], ["https://tec.openplanner.team/stops/H4hu121b", "https://tec.openplanner.team/stops/H4hu122b"], ["https://tec.openplanner.team/stops/Bgemfbo1", "https://tec.openplanner.team/stops/Bgemrom3"], ["https://tec.openplanner.team/stops/LVlfooz2", "https://tec.openplanner.team/stops/LVlfooz3"], ["https://tec.openplanner.team/stops/Bblaeur1", "https://tec.openplanner.team/stops/Bblamsj2"], ["https://tec.openplanner.team/stops/H2an103a", "https://tec.openplanner.team/stops/H2an109a"], ["https://tec.openplanner.team/stops/LCPgare2", "https://tec.openplanner.team/stops/LCPscay1"], ["https://tec.openplanner.team/stops/H4bu108b", "https://tec.openplanner.team/stops/H4bu109b"], ["https://tec.openplanner.team/stops/LeIpiro4", "https://tec.openplanner.team/stops/LiVkreu4"], ["https://tec.openplanner.team/stops/LSkdouf2", "https://tec.openplanner.team/stops/LSkrena2"], ["https://tec.openplanner.team/stops/X638aja", "https://tec.openplanner.team/stops/X638arb"], ["https://tec.openplanner.team/stops/Lhrpwan2", "https://tec.openplanner.team/stops/Lwachal2"], ["https://tec.openplanner.team/stops/X665aab", "https://tec.openplanner.team/stops/X665aba"], ["https://tec.openplanner.team/stops/N162aea", "https://tec.openplanner.team/stops/N162aeb"], ["https://tec.openplanner.team/stops/X633aaa", "https://tec.openplanner.team/stops/X633aab"], ["https://tec.openplanner.team/stops/Bsdafra1", "https://tec.openplanner.team/stops/Bsdafra2"], ["https://tec.openplanner.team/stops/LAmab751", "https://tec.openplanner.team/stops/LAmeclu1"], ["https://tec.openplanner.team/stops/LPLcent1", "https://tec.openplanner.team/stops/LPLphar1"], ["https://tec.openplanner.team/stops/H3bo101a", "https://tec.openplanner.team/stops/H3bo102a"], ["https://tec.openplanner.team/stops/H2pr118a", "https://tec.openplanner.team/stops/H2pr118b"], ["https://tec.openplanner.team/stops/Bgntpos2", "https://tec.openplanner.team/stops/Bsgeegl2"], ["https://tec.openplanner.team/stops/Bnilspe1", "https://tec.openplanner.team/stops/Bnilspe4"], ["https://tec.openplanner.team/stops/LWZeg--2", "https://tec.openplanner.team/stops/LWZponb1"], ["https://tec.openplanner.team/stops/X754aaa", "https://tec.openplanner.team/stops/X779agb"], ["https://tec.openplanner.team/stops/LaMhe421", "https://tec.openplanner.team/stops/LaMpost2"], ["https://tec.openplanner.team/stops/LESathe1", "https://tec.openplanner.team/stops/LESpont3"], ["https://tec.openplanner.team/stops/X738aab", "https://tec.openplanner.team/stops/X739aaa"], ["https://tec.openplanner.team/stops/LLrhest2", "https://tec.openplanner.team/stops/LTHturo3"], ["https://tec.openplanner.team/stops/N343acb", "https://tec.openplanner.team/stops/N343alb"], ["https://tec.openplanner.team/stops/H4gu106a", "https://tec.openplanner.team/stops/H4gu111a"], ["https://tec.openplanner.team/stops/LVbgend2", "https://tec.openplanner.team/stops/LVbstre1"], ["https://tec.openplanner.team/stops/N141afa", "https://tec.openplanner.team/stops/N141aga"], ["https://tec.openplanner.team/stops/Caccarr2", "https://tec.openplanner.team/stops/NC24aab"], ["https://tec.openplanner.team/stops/X908ara", "https://tec.openplanner.team/stops/X910aab"], ["https://tec.openplanner.team/stops/Ctm4che1", "https://tec.openplanner.team/stops/Ctmdema1"], ["https://tec.openplanner.team/stops/H4wi166b", "https://tec.openplanner.team/stops/H5pe144a"], ["https://tec.openplanner.team/stops/LHUfrai1", "https://tec.openplanner.team/stops/LHUmess1"], ["https://tec.openplanner.team/stops/LBCtros1", "https://tec.openplanner.team/stops/LGDgdou2"], ["https://tec.openplanner.team/stops/LHgdari2", "https://tec.openplanner.team/stops/LHgtomb2"], ["https://tec.openplanner.team/stops/LHrchez2", "https://tec.openplanner.team/stops/LHreg--1"], ["https://tec.openplanner.team/stops/N501ika", "https://tec.openplanner.team/stops/N501inb"], ["https://tec.openplanner.team/stops/H1au113b", "https://tec.openplanner.team/stops/H1fy118a"], ["https://tec.openplanner.team/stops/X947abb", "https://tec.openplanner.team/stops/X947abc"], ["https://tec.openplanner.team/stops/Lsehaut1", "https://tec.openplanner.team/stops/Lsehaut2"], ["https://tec.openplanner.team/stops/N553ada", "https://tec.openplanner.team/stops/N553anb"], ["https://tec.openplanner.team/stops/H1cu119a", "https://tec.openplanner.team/stops/H1je360b"], ["https://tec.openplanner.team/stops/H2ch102a", "https://tec.openplanner.team/stops/H2ch102b"], ["https://tec.openplanner.team/stops/H4ma401b", "https://tec.openplanner.team/stops/H4ma417a"], ["https://tec.openplanner.team/stops/H4rm107d", "https://tec.openplanner.team/stops/H4rm113b"], ["https://tec.openplanner.team/stops/Brixble5", "https://tec.openplanner.team/stops/Brixcro1"], ["https://tec.openplanner.team/stops/Cjucpui1", "https://tec.openplanner.team/stops/Cjumarc3"], ["https://tec.openplanner.team/stops/X912abb", "https://tec.openplanner.team/stops/X912ala"], ["https://tec.openplanner.team/stops/Cgocitn1", "https://tec.openplanner.team/stops/Cgocrus2"], ["https://tec.openplanner.team/stops/N528afz", "https://tec.openplanner.team/stops/N528aja"], ["https://tec.openplanner.team/stops/Bwavcui1", "https://tec.openplanner.team/stops/Bwavvpr1"], ["https://tec.openplanner.team/stops/H1hw119b", "https://tec.openplanner.team/stops/H1ls109b"], ["https://tec.openplanner.team/stops/N311aab", "https://tec.openplanner.team/stops/N311abb"], ["https://tec.openplanner.team/stops/H5qu142a", "https://tec.openplanner.team/stops/H5qu142b"], ["https://tec.openplanner.team/stops/Bgemga12", "https://tec.openplanner.team/stops/Bgemgcw1"], ["https://tec.openplanner.team/stops/N531anb", "https://tec.openplanner.team/stops/N531apa"], ["https://tec.openplanner.team/stops/H1ho136a", "https://tec.openplanner.team/stops/H1ho136b"], ["https://tec.openplanner.team/stops/H4hq132a", "https://tec.openplanner.team/stops/H4hq132b"], ["https://tec.openplanner.team/stops/LSIters2", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://tec.openplanner.team/stops/N562boa", "https://tec.openplanner.team/stops/N562bwb"], ["https://tec.openplanner.team/stops/H4ty274a", "https://tec.openplanner.team/stops/H4ty306b"], ["https://tec.openplanner.team/stops/Baudvdr1", "https://tec.openplanner.team/stops/Baudvdu1"], ["https://tec.openplanner.team/stops/Bbwacol2", "https://tec.openplanner.team/stops/Bwavlon2"], ["https://tec.openplanner.team/stops/H3br102a", "https://tec.openplanner.team/stops/H3br102b"], ["https://tec.openplanner.team/stops/X723aha", "https://tec.openplanner.team/stops/X775alb"], ["https://tec.openplanner.team/stops/Cci28ju1", "https://tec.openplanner.team/stops/Cciarfr1"], ["https://tec.openplanner.team/stops/Cprlpre2", "https://tec.openplanner.team/stops/Cprsapv2"], ["https://tec.openplanner.team/stops/H4es112b", "https://tec.openplanner.team/stops/H4ev126a"], ["https://tec.openplanner.team/stops/H1an100a", "https://tec.openplanner.team/stops/H1au103a"], ["https://tec.openplanner.team/stops/X657aba", "https://tec.openplanner.team/stops/X744aaa"], ["https://tec.openplanner.team/stops/LLOhest1", "https://tec.openplanner.team/stops/LLOspin1"], ["https://tec.openplanner.team/stops/Ltiegli1", "https://tec.openplanner.team/stops/Ltinico2"], ["https://tec.openplanner.team/stops/N351ana", "https://tec.openplanner.team/stops/N353ahb"], ["https://tec.openplanner.team/stops/LrAgier2", "https://tec.openplanner.team/stops/LrAplat2"], ["https://tec.openplanner.team/stops/X619aca", "https://tec.openplanner.team/stops/X619adb"], ["https://tec.openplanner.team/stops/N103aaa", "https://tec.openplanner.team/stops/N131aea"], ["https://tec.openplanner.team/stops/LAMvert1", "https://tec.openplanner.team/stops/LOmlime1"], ["https://tec.openplanner.team/stops/LHvvill*", "https://tec.openplanner.team/stops/LLz21--2"], ["https://tec.openplanner.team/stops/LHXfont1", "https://tec.openplanner.team/stops/X575aab"], ["https://tec.openplanner.team/stops/H4he103b", "https://tec.openplanner.team/stops/H4he107a"], ["https://tec.openplanner.team/stops/H1bb115a", "https://tec.openplanner.team/stops/H1bb117a"], ["https://tec.openplanner.team/stops/X717adb", "https://tec.openplanner.team/stops/X717ahb"], ["https://tec.openplanner.team/stops/H3lr106b", "https://tec.openplanner.team/stops/H3th135d"], ["https://tec.openplanner.team/stops/H4ga153b", "https://tec.openplanner.team/stops/H4ha171a"], ["https://tec.openplanner.team/stops/Bplnbal1", "https://tec.openplanner.team/stops/Bplncsd2"], ["https://tec.openplanner.team/stops/X604aja", "https://tec.openplanner.team/stops/X604ama"], ["https://tec.openplanner.team/stops/H4ka182a", "https://tec.openplanner.team/stops/H4ka394a"], ["https://tec.openplanner.team/stops/H1bo100a", "https://tec.openplanner.team/stops/H1bo108b"], ["https://tec.openplanner.team/stops/LHNland2", "https://tec.openplanner.team/stops/LHNtonn2"], ["https://tec.openplanner.team/stops/Llgamer2", "https://tec.openplanner.team/stops/Llgongr1"], ["https://tec.openplanner.team/stops/H1pa112b", "https://tec.openplanner.team/stops/H1pa166b"], ["https://tec.openplanner.team/stops/LHNland1", "https://tec.openplanner.team/stops/LHNtonn1"], ["https://tec.openplanner.team/stops/Cthalli2", "https://tec.openplanner.team/stops/Cthbifu2"], ["https://tec.openplanner.team/stops/Cctbois3", "https://tec.openplanner.team/stops/Cctkais2"], ["https://tec.openplanner.team/stops/H4mo132a", "https://tec.openplanner.team/stops/H4mo132b"], ["https://tec.openplanner.team/stops/X724aaa", "https://tec.openplanner.team/stops/X768aaa"], ["https://tec.openplanner.team/stops/H1ha193b", "https://tec.openplanner.team/stops/H1ms282a"], ["https://tec.openplanner.team/stops/LLUtill2", "https://tec.openplanner.team/stops/LLUtill3"], ["https://tec.openplanner.team/stops/X901adb", "https://tec.openplanner.team/stops/X901bpa"], ["https://tec.openplanner.team/stops/LAMfroi1", "https://tec.openplanner.team/stops/LAMweha1"], ["https://tec.openplanner.team/stops/X908abb", "https://tec.openplanner.team/stops/X955aeb"], ["https://tec.openplanner.team/stops/LFdbruy1", "https://tec.openplanner.team/stops/LFdbruy2"], ["https://tec.openplanner.team/stops/X808aga", "https://tec.openplanner.team/stops/X808agb"], ["https://tec.openplanner.team/stops/X718agb", "https://tec.openplanner.team/stops/X718ahb"], ["https://tec.openplanner.team/stops/Bdonlat2", "https://tec.openplanner.team/stops/Blthbss2"], ["https://tec.openplanner.team/stops/LmNha151", "https://tec.openplanner.team/stops/LmNha221"], ["https://tec.openplanner.team/stops/LRRbuta2", "https://tec.openplanner.team/stops/LRRmanc1"], ["https://tec.openplanner.team/stops/Cchcime1", "https://tec.openplanner.team/stops/Cchlamb1"], ["https://tec.openplanner.team/stops/H1gi118a", "https://tec.openplanner.team/stops/H1gi121b"], ["https://tec.openplanner.team/stops/H1cu110a", "https://tec.openplanner.team/stops/H1fl139b"], ["https://tec.openplanner.team/stops/Lanfont2", "https://tec.openplanner.team/stops/Lglsana1"], ["https://tec.openplanner.team/stops/X925aja", "https://tec.openplanner.team/stops/X925ajb"], ["https://tec.openplanner.team/stops/H1er105b", "https://tec.openplanner.team/stops/H1er111a"], ["https://tec.openplanner.team/stops/N501dab", "https://tec.openplanner.team/stops/N528akb"], ["https://tec.openplanner.team/stops/LWegdry2", "https://tec.openplanner.team/stops/LWevalf2"], ["https://tec.openplanner.team/stops/Ljuvert1", "https://tec.openplanner.team/stops/Ljuvert2"], ["https://tec.openplanner.team/stops/X666aja", "https://tec.openplanner.team/stops/X729aab"], ["https://tec.openplanner.team/stops/Cwxchap2", "https://tec.openplanner.team/stops/Cwxplac1"], ["https://tec.openplanner.team/stops/Bcbqcha1", "https://tec.openplanner.team/stops/Blemsta1"], ["https://tec.openplanner.team/stops/LBEoblu2", "https://tec.openplanner.team/stops/Lemfort1"], ["https://tec.openplanner.team/stops/Lsebuis2", "https://tec.openplanner.team/stops/Lsepcha4"], ["https://tec.openplanner.team/stops/N511apa", "https://tec.openplanner.team/stops/N511aqa"], ["https://tec.openplanner.team/stops/Brsrber2", "https://tec.openplanner.team/stops/Brsrpch1"], ["https://tec.openplanner.team/stops/LPTblan1", "https://tec.openplanner.team/stops/LPTgran1"], ["https://tec.openplanner.team/stops/H4be145b", "https://tec.openplanner.team/stops/H5bl121a"], ["https://tec.openplanner.team/stops/Cculgeo1", "https://tec.openplanner.team/stops/Ccuwil2"], ["https://tec.openplanner.team/stops/X882aab", "https://tec.openplanner.team/stops/X882ada"], ["https://tec.openplanner.team/stops/X908asa", "https://tec.openplanner.team/stops/X910acb"], ["https://tec.openplanner.team/stops/Btanpla1", "https://tec.openplanner.team/stops/Btanpla4"], ["https://tec.openplanner.team/stops/H1cv104b", "https://tec.openplanner.team/stops/H1ml110a"], ["https://tec.openplanner.team/stops/X917adb", "https://tec.openplanner.team/stops/X921ana"], ["https://tec.openplanner.team/stops/LNHbarr1", "https://tec.openplanner.team/stops/LNHbarr2"], ["https://tec.openplanner.team/stops/Cmmami1", "https://tec.openplanner.team/stops/Cmmcver2"], ["https://tec.openplanner.team/stops/Bhalcbr1", "https://tec.openplanner.team/stops/Bhaltre1"], ["https://tec.openplanner.team/stops/N147aca", "https://tec.openplanner.team/stops/N147acb"], ["https://tec.openplanner.team/stops/X654akb", "https://tec.openplanner.team/stops/X654ala"], ["https://tec.openplanner.team/stops/H4rm111a", "https://tec.openplanner.team/stops/H4rm112a"], ["https://tec.openplanner.team/stops/LhGkirc1", "https://tec.openplanner.team/stops/LhGkirc3"], ["https://tec.openplanner.team/stops/Cfabnat1", "https://tec.openplanner.team/stops/Cfanvmo2"], ["https://tec.openplanner.team/stops/NH01aia", "https://tec.openplanner.team/stops/NH01apb"], ["https://tec.openplanner.team/stops/H4pl117b", "https://tec.openplanner.team/stops/H4pl135a"], ["https://tec.openplanner.team/stops/H5ma180a", "https://tec.openplanner.team/stops/H5ma186b"], ["https://tec.openplanner.team/stops/H3so169a", "https://tec.openplanner.team/stops/H3so169b"], ["https://tec.openplanner.team/stops/Lcceg--1", "https://tec.openplanner.team/stops/Lfhhoul1"], ["https://tec.openplanner.team/stops/NL37aka", "https://tec.openplanner.team/stops/NL37ala"], ["https://tec.openplanner.team/stops/Louroos1", "https://tec.openplanner.team/stops/Louroos3"], ["https://tec.openplanner.team/stops/Bbcoeca1", "https://tec.openplanner.team/stops/H3br122b"], ["https://tec.openplanner.team/stops/H1gn149b", "https://tec.openplanner.team/stops/H1gn151b"], ["https://tec.openplanner.team/stops/X670amb", "https://tec.openplanner.team/stops/X670ana"], ["https://tec.openplanner.team/stops/LLrelec1", "https://tec.openplanner.team/stops/LLrvill2"], ["https://tec.openplanner.team/stops/Canrobe1", "https://tec.openplanner.team/stops/Canrobe2"], ["https://tec.openplanner.team/stops/H4do107a", "https://tec.openplanner.team/stops/H4do107d"], ["https://tec.openplanner.team/stops/LbRfrie1", "https://tec.openplanner.team/stops/LwTkabi3"], ["https://tec.openplanner.team/stops/Ljudeme1", "https://tec.openplanner.team/stops/Ljuinte2"], ["https://tec.openplanner.team/stops/X362aaa", "https://tec.openplanner.team/stops/X362abb"], ["https://tec.openplanner.team/stops/H4bu109b", "https://tec.openplanner.team/stops/H4oe150a"], ["https://tec.openplanner.team/stops/N501dsb", "https://tec.openplanner.team/stops/N501jra"], ["https://tec.openplanner.team/stops/Ljestat2", "https://tec.openplanner.team/stops/Ljestat3"], ["https://tec.openplanner.team/stops/Btubga06", "https://tec.openplanner.team/stops/Btubpla1"], ["https://tec.openplanner.team/stops/N207add", "https://tec.openplanner.team/stops/N210aaa"], ["https://tec.openplanner.team/stops/N308aaa", "https://tec.openplanner.team/stops/N308asb"], ["https://tec.openplanner.team/stops/Btslcel2", "https://tec.openplanner.team/stops/Btsllfp2"], ["https://tec.openplanner.team/stops/Clbptno3", "https://tec.openplanner.team/stops/Cthgrat2"], ["https://tec.openplanner.team/stops/LCEhayo1", "https://tec.openplanner.team/stops/LCEplac1"], ["https://tec.openplanner.team/stops/H1bb146a", "https://tec.openplanner.team/stops/H1do115b"], ["https://tec.openplanner.team/stops/Lticoq-2", "https://tec.openplanner.team/stops/Ltimarr2"], ["https://tec.openplanner.team/stops/H1me114b", "https://tec.openplanner.team/stops/H1me118a"], ["https://tec.openplanner.team/stops/Llgfusc1", "https://tec.openplanner.team/stops/Llgfusc4"], ["https://tec.openplanner.team/stops/H5pe130b", "https://tec.openplanner.team/stops/H5pe150b"], ["https://tec.openplanner.team/stops/Lemdupo2", "https://tec.openplanner.team/stops/Lempass2"], ["https://tec.openplanner.team/stops/H5bl119d", "https://tec.openplanner.team/stops/H5qu149b"], ["https://tec.openplanner.team/stops/Lsecime2", "https://tec.openplanner.team/stops/Lsepudd2"], ["https://tec.openplanner.team/stops/LOreg--2", "https://tec.openplanner.team/stops/LTywaut1"], ["https://tec.openplanner.team/stops/Lsmcime1", "https://tec.openplanner.team/stops/Lvepoud1"], ["https://tec.openplanner.team/stops/H2ma205b", "https://tec.openplanner.team/stops/H2ma210a"], ["https://tec.openplanner.team/stops/Lbocarr2", "https://tec.openplanner.team/stops/Lbogonh*"], ["https://tec.openplanner.team/stops/N509adb", "https://tec.openplanner.team/stops/N511aqa"], ["https://tec.openplanner.team/stops/Lcceg--1", "https://tec.openplanner.team/stops/LRaplac2"], ["https://tec.openplanner.team/stops/Cslbhau2", "https://tec.openplanner.team/stops/Cvtegli2"], ["https://tec.openplanner.team/stops/X921aca", "https://tec.openplanner.team/stops/X921ama"], ["https://tec.openplanner.team/stops/H2le146b", "https://tec.openplanner.team/stops/H2le152a"], ["https://tec.openplanner.team/stops/N121aaa", "https://tec.openplanner.team/stops/N121aca"], ["https://tec.openplanner.team/stops/X782aca", "https://tec.openplanner.team/stops/X782adb"], ["https://tec.openplanner.team/stops/H2be100a", "https://tec.openplanner.team/stops/H2mg151a"], ["https://tec.openplanner.team/stops/H4bo118b", "https://tec.openplanner.team/stops/H4bo118d"], ["https://tec.openplanner.team/stops/LhLbalt2", "https://tec.openplanner.team/stops/LmEdorf1"], ["https://tec.openplanner.team/stops/X784aeb", "https://tec.openplanner.team/stops/X784aga"], ["https://tec.openplanner.team/stops/Cmlbruy1", "https://tec.openplanner.team/stops/Cmmbmad1"], ["https://tec.openplanner.team/stops/Cptccas1", "https://tec.openplanner.team/stops/Cptegli3"], ["https://tec.openplanner.team/stops/H2lh128b", "https://tec.openplanner.team/stops/H2mo129b"], ["https://tec.openplanner.team/stops/Bhtihau2", "https://tec.openplanner.team/stops/Bhtirin1"], ["https://tec.openplanner.team/stops/H4ty280a", "https://tec.openplanner.team/stops/H4ty314a"], ["https://tec.openplanner.team/stops/Bbghcar2", "https://tec.openplanner.team/stops/Bpte1ma1"], ["https://tec.openplanner.team/stops/Lhrecol1", "https://tec.openplanner.team/stops/Lhrpost1"], ["https://tec.openplanner.team/stops/Cgoetun1", "https://tec.openplanner.team/stops/Cgoetun3"], ["https://tec.openplanner.team/stops/Cslbarb2", "https://tec.openplanner.team/stops/Cvtmaro2"], ["https://tec.openplanner.team/stops/N533aga", "https://tec.openplanner.team/stops/N533aoa"], ["https://tec.openplanner.team/stops/N557aaa", "https://tec.openplanner.team/stops/N557abb"], ["https://tec.openplanner.team/stops/LREgrot1", "https://tec.openplanner.team/stops/LREsoug3"], ["https://tec.openplanner.team/stops/Llgcite1", "https://tec.openplanner.team/stops/Llgmarc2"], ["https://tec.openplanner.team/stops/Bptrcra1", "https://tec.openplanner.team/stops/Bptrmar2"], ["https://tec.openplanner.team/stops/LMHmeha1", "https://tec.openplanner.team/stops/LWNcham1"], ["https://tec.openplanner.team/stops/Bwatms10", "https://tec.openplanner.team/stops/Bwatmsj6"], ["https://tec.openplanner.team/stops/NL79aaa", "https://tec.openplanner.team/stops/NL81ahb"], ["https://tec.openplanner.team/stops/H4mo155a", "https://tec.openplanner.team/stops/H4rx142b"], ["https://tec.openplanner.team/stops/LNEcite2", "https://tec.openplanner.team/stops/LNEvpn-2"], ["https://tec.openplanner.team/stops/LBNeup22", "https://tec.openplanner.team/stops/LBNvill1"], ["https://tec.openplanner.team/stops/H5rx105a", "https://tec.openplanner.team/stops/H5rx105b"], ["https://tec.openplanner.team/stops/H4wn126a", "https://tec.openplanner.team/stops/H4wn129b"], ["https://tec.openplanner.team/stops/X996aab", "https://tec.openplanner.team/stops/X996abb"], ["https://tec.openplanner.team/stops/X982aja", "https://tec.openplanner.team/stops/X982bja"], ["https://tec.openplanner.team/stops/Bmrsayw2", "https://tec.openplanner.team/stops/Bmrspel1"], ["https://tec.openplanner.team/stops/X597aaa", "https://tec.openplanner.team/stops/X597aab"], ["https://tec.openplanner.team/stops/X720ada", "https://tec.openplanner.team/stops/X721alb"], ["https://tec.openplanner.team/stops/Bllnein3", "https://tec.openplanner.team/stops/Bllnlen2"], ["https://tec.openplanner.team/stops/N201ahb", "https://tec.openplanner.team/stops/N201awa"], ["https://tec.openplanner.team/stops/Cmlbuis4", "https://tec.openplanner.team/stops/Cmllecl4"], ["https://tec.openplanner.team/stops/Cgygayo3", "https://tec.openplanner.team/stops/Cgyrrep1"], ["https://tec.openplanner.team/stops/LOLcroi2", "https://tec.openplanner.team/stops/LOLrafh1"], ["https://tec.openplanner.team/stops/N522bva", "https://tec.openplanner.team/stops/N522bvb"], ["https://tec.openplanner.team/stops/LLVerri1", "https://tec.openplanner.team/stops/X575aca"], ["https://tec.openplanner.team/stops/LPohoeg1", "https://tec.openplanner.team/stops/LPoxhav1"], ["https://tec.openplanner.team/stops/LOlvill2", "https://tec.openplanner.team/stops/LSevitu3"], ["https://tec.openplanner.team/stops/LaApost1", "https://tec.openplanner.team/stops/LaApost2"], ["https://tec.openplanner.team/stops/LLxcrem2", "https://tec.openplanner.team/stops/LLxnive2"], ["https://tec.openplanner.team/stops/H4ca123b", "https://tec.openplanner.team/stops/H4ws160a"], ["https://tec.openplanner.team/stops/X948aea", "https://tec.openplanner.team/stops/X948aga"], ["https://tec.openplanner.team/stops/LWycarr1", "https://tec.openplanner.team/stops/LWycarr2"], ["https://tec.openplanner.team/stops/Lkithie1", "https://tec.openplanner.team/stops/Lkithie2"], ["https://tec.openplanner.team/stops/Blimbet3", "https://tec.openplanner.team/stops/Bottpry1"], ["https://tec.openplanner.team/stops/N501jda", "https://tec.openplanner.team/stops/N501jja"], ["https://tec.openplanner.team/stops/H5rx102a", "https://tec.openplanner.team/stops/H5rx130b"], ["https://tec.openplanner.team/stops/X261aca", "https://tec.openplanner.team/stops/X982aab"], ["https://tec.openplanner.team/stops/LCaresi1", "https://tec.openplanner.team/stops/LVefont2"], ["https://tec.openplanner.team/stops/X801aeb", "https://tec.openplanner.team/stops/X801amb"], ["https://tec.openplanner.team/stops/X606aab", "https://tec.openplanner.team/stops/X620agb"], ["https://tec.openplanner.team/stops/H1wa147a", "https://tec.openplanner.team/stops/H1wa164a"], ["https://tec.openplanner.team/stops/X644aaa", "https://tec.openplanner.team/stops/X644abb"], ["https://tec.openplanner.team/stops/N424aaa", "https://tec.openplanner.team/stops/N424aab"], ["https://tec.openplanner.team/stops/X742acb", "https://tec.openplanner.team/stops/X742ada"], ["https://tec.openplanner.team/stops/LAmvent3", "https://tec.openplanner.team/stops/LAmwaut2"], ["https://tec.openplanner.team/stops/LMoeg--1", "https://tec.openplanner.team/stops/LMotrem1"], ["https://tec.openplanner.team/stops/H4ty293b", "https://tec.openplanner.team/stops/H4ty296b"], ["https://tec.openplanner.team/stops/Bflccav1", "https://tec.openplanner.team/stops/Bjaufca2"], ["https://tec.openplanner.team/stops/Ccuoise1", "https://tec.openplanner.team/stops/Ccurtra2"], ["https://tec.openplanner.team/stops/H2ch103c", "https://tec.openplanner.team/stops/H2ch111b"], ["https://tec.openplanner.team/stops/LNIdoma2", "https://tec.openplanner.team/stops/LSPmari2"], ["https://tec.openplanner.team/stops/Lprfoot1", "https://tec.openplanner.team/stops/LWetrib2"], ["https://tec.openplanner.team/stops/Bbeacha1", "https://tec.openplanner.team/stops/Bbeasta1"], ["https://tec.openplanner.team/stops/X902afd", "https://tec.openplanner.team/stops/X902apa"], ["https://tec.openplanner.team/stops/X638aka", "https://tec.openplanner.team/stops/X638aqa"], ["https://tec.openplanner.team/stops/Cchrmon1", "https://tec.openplanner.team/stops/Cchrmon4"], ["https://tec.openplanner.team/stops/Llggrav2", "https://tec.openplanner.team/stops/Llgnati1"], ["https://tec.openplanner.team/stops/X771aea", "https://tec.openplanner.team/stops/X771aeb"], ["https://tec.openplanner.team/stops/LeIdeid2", "https://tec.openplanner.team/stops/LiV19--2"], ["https://tec.openplanner.team/stops/LBkbamb1", "https://tec.openplanner.team/stops/LBkdahl2"], ["https://tec.openplanner.team/stops/N102aba", "https://tec.openplanner.team/stops/N151ajb"], ["https://tec.openplanner.team/stops/H1ms285a", "https://tec.openplanner.team/stops/H1ms294c"], ["https://tec.openplanner.team/stops/LHGikea1", "https://tec.openplanner.team/stops/LHGtige2"], ["https://tec.openplanner.team/stops/LJEtige2", "https://tec.openplanner.team/stops/LJEverd2"], ["https://tec.openplanner.team/stops/X685aca", "https://tec.openplanner.team/stops/X685acb"], ["https://tec.openplanner.team/stops/X786aaa", "https://tec.openplanner.team/stops/X786aab"], ["https://tec.openplanner.team/stops/X790acb", "https://tec.openplanner.team/stops/X790adb"], ["https://tec.openplanner.team/stops/Lpefler2", "https://tec.openplanner.team/stops/LTAchpl2"], ["https://tec.openplanner.team/stops/H1si151a", "https://tec.openplanner.team/stops/H4bo179a"], ["https://tec.openplanner.team/stops/N241aga", "https://tec.openplanner.team/stops/N270aab"], ["https://tec.openplanner.team/stops/X614aja", "https://tec.openplanner.team/stops/X614alb"], ["https://tec.openplanner.team/stops/H1bi100b", "https://tec.openplanner.team/stops/H1sa113a"], ["https://tec.openplanner.team/stops/H1ha194b", "https://tec.openplanner.team/stops/H3bo102a"], ["https://tec.openplanner.team/stops/N526aab", "https://tec.openplanner.team/stops/N526ada"], ["https://tec.openplanner.team/stops/N519aob", "https://tec.openplanner.team/stops/N525afb"], ["https://tec.openplanner.team/stops/H4ta121b", "https://tec.openplanner.team/stops/H4wu377b"], ["https://tec.openplanner.team/stops/H2mo124a", "https://tec.openplanner.team/stops/H2mo144a"], ["https://tec.openplanner.team/stops/Bstecal2", "https://tec.openplanner.team/stops/Bstetre2"], ["https://tec.openplanner.team/stops/Lgrchar1", "https://tec.openplanner.team/stops/Lgrfalc1"], ["https://tec.openplanner.team/stops/X921ajc", "https://tec.openplanner.team/stops/X921aka"], ["https://tec.openplanner.team/stops/LNCfawe1", "https://tec.openplanner.team/stops/LRRchea5"], ["https://tec.openplanner.team/stops/H1te186b", "https://tec.openplanner.team/stops/H1vt192b"], ["https://tec.openplanner.team/stops/LpEbins1", "https://tec.openplanner.team/stops/LrApark1"], ["https://tec.openplanner.team/stops/N501awb", "https://tec.openplanner.team/stops/N501dca"], ["https://tec.openplanner.team/stops/Lroboeg1", "https://tec.openplanner.team/stops/Lrogene1"], ["https://tec.openplanner.team/stops/LaFbruc1", "https://tec.openplanner.team/stops/LwPdorf2"], ["https://tec.openplanner.team/stops/N501gbb", "https://tec.openplanner.team/stops/N501lxa"], ["https://tec.openplanner.team/stops/LeYfeld2", "https://tec.openplanner.team/stops/LeYroth2"], ["https://tec.openplanner.team/stops/Bbstcoi1", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/LSkcoin1", "https://tec.openplanner.team/stops/LSkrena3"], ["https://tec.openplanner.team/stops/X604aab", "https://tec.openplanner.team/stops/X604aba"], ["https://tec.openplanner.team/stops/Lfhcoop1", "https://tec.openplanner.team/stops/Ljedepa1"], ["https://tec.openplanner.team/stops/Cjurogi1", "https://tec.openplanner.team/stops/Clostan1"], ["https://tec.openplanner.team/stops/X806aba", "https://tec.openplanner.team/stops/X806akc"], ["https://tec.openplanner.team/stops/N538atb", "https://tec.openplanner.team/stops/N538atd"], ["https://tec.openplanner.team/stops/H4ha169a", "https://tec.openplanner.team/stops/H4ha170b"], ["https://tec.openplanner.team/stops/X659aab", "https://tec.openplanner.team/stops/X669aeb"], ["https://tec.openplanner.team/stops/Cplelec1", "https://tec.openplanner.team/stops/Crsstem2"], ["https://tec.openplanner.team/stops/LVsboug1", "https://tec.openplanner.team/stops/LVsbrux1"], ["https://tec.openplanner.team/stops/Bgerd321", "https://tec.openplanner.team/stops/Bgrhcen1"], ["https://tec.openplanner.team/stops/X765aaa", "https://tec.openplanner.team/stops/X791abb"], ["https://tec.openplanner.team/stops/H4my120a", "https://tec.openplanner.team/stops/H4vz371b"], ["https://tec.openplanner.team/stops/N167add", "https://tec.openplanner.team/stops/N167aeb"], ["https://tec.openplanner.team/stops/LCeanne2", "https://tec.openplanner.team/stops/LFalieg2"], ["https://tec.openplanner.team/stops/Ccobinc2", "https://tec.openplanner.team/stops/Ccopeti2"], ["https://tec.openplanner.team/stops/Lalexpa2", "https://tec.openplanner.team/stops/Lrccomm1"], ["https://tec.openplanner.team/stops/X695aab", "https://tec.openplanner.team/stops/X695aka"], ["https://tec.openplanner.team/stops/X638aca", "https://tec.openplanner.team/stops/X638adb"], ["https://tec.openplanner.team/stops/H5qu143b", "https://tec.openplanner.team/stops/H5qu182a"], ["https://tec.openplanner.team/stops/H1gn151a", "https://tec.openplanner.team/stops/H1gq153b"], ["https://tec.openplanner.team/stops/X802aga", "https://tec.openplanner.team/stops/X836aha"], ["https://tec.openplanner.team/stops/N352afb", "https://tec.openplanner.team/stops/N367ada"], ["https://tec.openplanner.team/stops/N501cla", "https://tec.openplanner.team/stops/N503aca"], ["https://tec.openplanner.team/stops/LSZgare1", "https://tec.openplanner.team/stops/LSZlegr2"], ["https://tec.openplanner.team/stops/X344aea", "https://tec.openplanner.team/stops/X345aaa"], ["https://tec.openplanner.team/stops/X910aeb", "https://tec.openplanner.team/stops/X910agb"], ["https://tec.openplanner.team/stops/H1sy144b", "https://tec.openplanner.team/stops/H1sy145b"], ["https://tec.openplanner.team/stops/H4pi131b", "https://tec.openplanner.team/stops/H4pi134a"], ["https://tec.openplanner.team/stops/N507ala", "https://tec.openplanner.team/stops/N507alc"], ["https://tec.openplanner.team/stops/N244abb", "https://tec.openplanner.team/stops/N244ajb"], ["https://tec.openplanner.team/stops/LSkmarq1", "https://tec.openplanner.team/stops/LYechpl2"], ["https://tec.openplanner.team/stops/H2ll177a", "https://tec.openplanner.team/stops/H2ll257d"], ["https://tec.openplanner.team/stops/H1mh115b", "https://tec.openplanner.team/stops/H1po154a"], ["https://tec.openplanner.team/stops/H1so143a", "https://tec.openplanner.team/stops/H1so146a"], ["https://tec.openplanner.team/stops/H4mo149a", "https://tec.openplanner.team/stops/H4tg163a"], ["https://tec.openplanner.team/stops/N533ana", "https://tec.openplanner.team/stops/N533anb"], ["https://tec.openplanner.team/stops/H4ty341b", "https://tec.openplanner.team/stops/H4ty356b"], ["https://tec.openplanner.team/stops/N576ala", "https://tec.openplanner.team/stops/N576alb"], ["https://tec.openplanner.team/stops/N571aba", "https://tec.openplanner.team/stops/N571aca"], ["https://tec.openplanner.team/stops/Ckevela1", "https://tec.openplanner.team/stops/Cwfronc2"], ["https://tec.openplanner.team/stops/N104adb", "https://tec.openplanner.team/stops/N104afb"], ["https://tec.openplanner.team/stops/H1te183b", "https://tec.openplanner.team/stops/H1te187a"], ["https://tec.openplanner.team/stops/Bgemfbo2", "https://tec.openplanner.team/stops/Bgemga07"], ["https://tec.openplanner.team/stops/LWNberg2", "https://tec.openplanner.team/stops/LWNchar1"], ["https://tec.openplanner.team/stops/H4eg108b", "https://tec.openplanner.team/stops/H4ne135a"], ["https://tec.openplanner.team/stops/Lchmarc1", "https://tec.openplanner.team/stops/Lchmarc2"], ["https://tec.openplanner.team/stops/X822aia", "https://tec.openplanner.team/stops/X836afb"], ["https://tec.openplanner.team/stops/N212aea", "https://tec.openplanner.team/stops/N212agb"], ["https://tec.openplanner.team/stops/N576aab", "https://tec.openplanner.team/stops/N576afa"], ["https://tec.openplanner.team/stops/NL76aob", "https://tec.openplanner.team/stops/NL80aub"], ["https://tec.openplanner.team/stops/Cmlecha1", "https://tec.openplanner.team/stops/Cmlhotv1"], ["https://tec.openplanner.team/stops/N512aba", "https://tec.openplanner.team/stops/N512afb"], ["https://tec.openplanner.team/stops/X714aca", "https://tec.openplanner.team/stops/X714ada"], ["https://tec.openplanner.team/stops/N553aba", "https://tec.openplanner.team/stops/N553abc"], ["https://tec.openplanner.team/stops/X614aqa", "https://tec.openplanner.team/stops/X614asb"], ["https://tec.openplanner.team/stops/LCFcafe1", "https://tec.openplanner.team/stops/LCFchir1"], ["https://tec.openplanner.team/stops/X615bdb", "https://tec.openplanner.team/stops/X616ajb"], ["https://tec.openplanner.team/stops/H4bo118c", "https://tec.openplanner.team/stops/H4bo118d"], ["https://tec.openplanner.team/stops/X941abb", "https://tec.openplanner.team/stops/X941acc"], ["https://tec.openplanner.team/stops/Cchbrou1", "https://tec.openplanner.team/stops/CMsacm2"], ["https://tec.openplanner.team/stops/Lglcoun2", "https://tec.openplanner.team/stops/Lglvict2"], ["https://tec.openplanner.team/stops/Lhrdelv2", "https://tec.openplanner.team/stops/Lhrhosp2"], ["https://tec.openplanner.team/stops/N569aia", "https://tec.openplanner.team/stops/N569aic"], ["https://tec.openplanner.team/stops/X369aba", "https://tec.openplanner.team/stops/X858aba"], ["https://tec.openplanner.team/stops/X604akb", "https://tec.openplanner.team/stops/X604alb"], ["https://tec.openplanner.team/stops/X943aca", "https://tec.openplanner.team/stops/X943aha"], ["https://tec.openplanner.team/stops/Lbomc--5", "https://tec.openplanner.team/stops/Lbomc--8"], ["https://tec.openplanner.team/stops/Cchba06", "https://tec.openplanner.team/stops/Cchba09"], ["https://tec.openplanner.team/stops/H1hr127b", "https://tec.openplanner.team/stops/H1to153c"], ["https://tec.openplanner.team/stops/LPLaube1", "https://tec.openplanner.team/stops/LPLstat1"], ["https://tec.openplanner.team/stops/N534aya", "https://tec.openplanner.team/stops/N534bdb"], ["https://tec.openplanner.team/stops/H4bd108a", "https://tec.openplanner.team/stops/H4bd110b"], ["https://tec.openplanner.team/stops/Ccychco1", "https://tec.openplanner.team/stops/NH01agd"], ["https://tec.openplanner.team/stops/LMOecsp1", "https://tec.openplanner.team/stops/LMOs45-1"], ["https://tec.openplanner.team/stops/Lcepoul1", "https://tec.openplanner.team/stops/Lcepoul2"], ["https://tec.openplanner.team/stops/X949aia", "https://tec.openplanner.team/stops/X949amb"], ["https://tec.openplanner.team/stops/H4ma399b", "https://tec.openplanner.team/stops/H4ma401a"], ["https://tec.openplanner.team/stops/X818aja", "https://tec.openplanner.team/stops/X818ama"], ["https://tec.openplanner.team/stops/N117abb", "https://tec.openplanner.team/stops/N117acb"], ["https://tec.openplanner.team/stops/LSTchal1", "https://tec.openplanner.team/stops/LSTrema1"], ["https://tec.openplanner.team/stops/N135bda", "https://tec.openplanner.team/stops/N135beb"], ["https://tec.openplanner.team/stops/Cairous2", "https://tec.openplanner.team/stops/N543cbb"], ["https://tec.openplanner.team/stops/Bbchgod1", "https://tec.openplanner.team/stops/Bhalvla2"], ["https://tec.openplanner.team/stops/Lhurouh1", "https://tec.openplanner.team/stops/Lhurouh2"], ["https://tec.openplanner.team/stops/X882aca", "https://tec.openplanner.team/stops/X882ada"], ["https://tec.openplanner.team/stops/H2ll180b", "https://tec.openplanner.team/stops/H2ll193b"], ["https://tec.openplanner.team/stops/H2mi122a", "https://tec.openplanner.team/stops/H3lr108b"], ["https://tec.openplanner.team/stops/H4fr144b", "https://tec.openplanner.team/stops/H4ty328a"], ["https://tec.openplanner.team/stops/LBjpech1", "https://tec.openplanner.team/stops/X576ahb"], ["https://tec.openplanner.team/stops/Lhrabho1", "https://tec.openplanner.team/stops/Lvitomb2"], ["https://tec.openplanner.team/stops/H1bb146a", "https://tec.openplanner.team/stops/H1bb146b"], ["https://tec.openplanner.team/stops/X812awa", "https://tec.openplanner.team/stops/X812axa"], ["https://tec.openplanner.team/stops/H1ha186b", "https://tec.openplanner.team/stops/H1ha198b"], ["https://tec.openplanner.team/stops/N349ada", "https://tec.openplanner.team/stops/N349aeb"], ["https://tec.openplanner.team/stops/LsVeite2", "https://tec.openplanner.team/stops/LsVprum4"], ["https://tec.openplanner.team/stops/H5bs103a", "https://tec.openplanner.team/stops/H5bs104b"], ["https://tec.openplanner.team/stops/X725aef", "https://tec.openplanner.team/stops/X725aob"], ["https://tec.openplanner.team/stops/N390aba", "https://tec.openplanner.team/stops/N390abb"], ["https://tec.openplanner.team/stops/LBWbatt1", "https://tec.openplanner.team/stops/LBWeg--1"], ["https://tec.openplanner.team/stops/X899aha", "https://tec.openplanner.team/stops/X899ahb"], ["https://tec.openplanner.team/stops/Llgpier2", "https://tec.openplanner.team/stops/Llgterr1"], ["https://tec.openplanner.team/stops/LBEmich2", "https://tec.openplanner.team/stops/LGMhadr1"], ["https://tec.openplanner.team/stops/X629aba", "https://tec.openplanner.team/stops/X629aca"], ["https://tec.openplanner.team/stops/LEBdoct1", "https://tec.openplanner.team/stops/LEMec--2"], ["https://tec.openplanner.team/stops/N121aab", "https://tec.openplanner.team/stops/N121abb"], ["https://tec.openplanner.team/stops/LrTpost1", "https://tec.openplanner.team/stops/LtEnach2"], ["https://tec.openplanner.team/stops/LNCfawe1", "https://tec.openplanner.team/stops/LNCmada2"], ["https://tec.openplanner.team/stops/N117atb", "https://tec.openplanner.team/stops/N571afb"], ["https://tec.openplanner.team/stops/X316aab", "https://tec.openplanner.team/stops/X316abb"], ["https://tec.openplanner.team/stops/N149acb", "https://tec.openplanner.team/stops/N149adb"], ["https://tec.openplanner.team/stops/Cchheig2", "https://tec.openplanner.team/stops/Cchviad2"], ["https://tec.openplanner.team/stops/N134ala", "https://tec.openplanner.team/stops/N134alb"], ["https://tec.openplanner.team/stops/Cmabegh2", "https://tec.openplanner.team/stops/Cmaegli2"], ["https://tec.openplanner.team/stops/X812afa", "https://tec.openplanner.team/stops/X812agb"], ["https://tec.openplanner.team/stops/Bengvma2", "https://tec.openplanner.team/stops/H1mk123a"], ["https://tec.openplanner.team/stops/LwR140-1", "https://tec.openplanner.team/stops/LwRkirc2"], ["https://tec.openplanner.team/stops/Ccupbro1", "https://tec.openplanner.team/stops/Ccuwil2"], ["https://tec.openplanner.team/stops/N501cma", "https://tec.openplanner.team/stops/N501cmb"], ["https://tec.openplanner.team/stops/Cgylami1", "https://tec.openplanner.team/stops/Craferr1"], ["https://tec.openplanner.team/stops/X827aaa", "https://tec.openplanner.team/stops/X827aab"], ["https://tec.openplanner.team/stops/N167aba", "https://tec.openplanner.team/stops/N244axa"], ["https://tec.openplanner.team/stops/LVIacac1", "https://tec.openplanner.team/stops/LVIastr1"], ["https://tec.openplanner.team/stops/N505anb", "https://tec.openplanner.team/stops/N512aub"], ["https://tec.openplanner.team/stops/LeUbahn2", "https://tec.openplanner.team/stops/LkTkabi2"], ["https://tec.openplanner.team/stops/H4ty313a", "https://tec.openplanner.team/stops/H4ty343b"], ["https://tec.openplanner.team/stops/LBdmarr2", "https://tec.openplanner.team/stops/LWMcent1"], ["https://tec.openplanner.team/stops/LmSluxh1", "https://tec.openplanner.team/stops/LmSluxh2"], ["https://tec.openplanner.team/stops/H1qu107a", "https://tec.openplanner.team/stops/H1qu109a"], ["https://tec.openplanner.team/stops/Lalhomb1", "https://tec.openplanner.team/stops/Laltrap2"], ["https://tec.openplanner.team/stops/Ljujaur1", "https://tec.openplanner.team/stops/Ljujaur2"], ["https://tec.openplanner.team/stops/Cbtbras1", "https://tec.openplanner.team/stops/Cbtbras2"], ["https://tec.openplanner.team/stops/Cdagoss1", "https://tec.openplanner.team/stops/CMprov1"], ["https://tec.openplanner.team/stops/X896aaa", "https://tec.openplanner.team/stops/X898afa"], ["https://tec.openplanner.team/stops/H1cd110a", "https://tec.openplanner.team/stops/H1ne150a"], ["https://tec.openplanner.team/stops/Lagpass2", "https://tec.openplanner.team/stops/Lemjacq1"], ["https://tec.openplanner.team/stops/H4po124a", "https://tec.openplanner.team/stops/H4po129a"], ["https://tec.openplanner.team/stops/H5pe135a", "https://tec.openplanner.team/stops/H5pe146b"], ["https://tec.openplanner.team/stops/X820abb", "https://tec.openplanner.team/stops/X820afb"], ["https://tec.openplanner.team/stops/Llgoutr1", "https://tec.openplanner.team/stops/Llgoutr2"], ["https://tec.openplanner.team/stops/LcRmich1", "https://tec.openplanner.team/stops/LrD28--1"], ["https://tec.openplanner.team/stops/LaAdiep2", "https://tec.openplanner.team/stops/LaAzwei2"], ["https://tec.openplanner.team/stops/CMfbru1", "https://tec.openplanner.team/stops/Ctmsncb2"], ["https://tec.openplanner.team/stops/LhMwing2", "https://tec.openplanner.team/stops/LwPdorf1"], ["https://tec.openplanner.team/stops/LFdbruy2", "https://tec.openplanner.team/stops/LFdeg--1"], ["https://tec.openplanner.team/stops/X576agb", "https://tec.openplanner.team/stops/X717aia"], ["https://tec.openplanner.team/stops/Bsrgegl2", "https://tec.openplanner.team/stops/Bsrgm102"], ["https://tec.openplanner.team/stops/Lfhbail1", "https://tec.openplanner.team/stops/Lfhdonn2"], ["https://tec.openplanner.team/stops/LSHfief2", "https://tec.openplanner.team/stops/LSHneuv1"], ["https://tec.openplanner.team/stops/H2ep172a", "https://tec.openplanner.team/stops/H2ep172b"], ["https://tec.openplanner.team/stops/X615aga", "https://tec.openplanner.team/stops/X615agb"], ["https://tec.openplanner.team/stops/H1hw120b", "https://tec.openplanner.team/stops/H1hw122a"], ["https://tec.openplanner.team/stops/H4ty327a", "https://tec.openplanner.team/stops/H4ty327b"], ["https://tec.openplanner.team/stops/N505aga", "https://tec.openplanner.team/stops/N506apb"], ["https://tec.openplanner.team/stops/N127aca", "https://tec.openplanner.team/stops/N127ada"], ["https://tec.openplanner.team/stops/N357aca", "https://tec.openplanner.team/stops/N357afb"], ["https://tec.openplanner.team/stops/X982aya", "https://tec.openplanner.team/stops/X982bwa"], ["https://tec.openplanner.team/stops/LFEague1", "https://tec.openplanner.team/stops/X597apb"], ["https://tec.openplanner.team/stops/X347ajb", "https://tec.openplanner.team/stops/X892abb"], ["https://tec.openplanner.team/stops/LPLcarr1", "https://tec.openplanner.team/stops/LPLcent2"], ["https://tec.openplanner.team/stops/NC11aha", "https://tec.openplanner.team/stops/NC11ahb"], ["https://tec.openplanner.team/stops/H1ms256a", "https://tec.openplanner.team/stops/H1ms922a"], ["https://tec.openplanner.team/stops/Cauushm1", "https://tec.openplanner.team/stops/N543azb"], ["https://tec.openplanner.team/stops/Lkirenk1", "https://tec.openplanner.team/stops/Llgvalu2"], ["https://tec.openplanner.team/stops/Csycant1", "https://tec.openplanner.team/stops/Csygare1"], ["https://tec.openplanner.team/stops/Lcejobe2", "https://tec.openplanner.team/stops/Lgrjobe2"], ["https://tec.openplanner.team/stops/LHUlieg2", "https://tec.openplanner.team/stops/LHUpost3"], ["https://tec.openplanner.team/stops/Lemacac2", "https://tec.openplanner.team/stops/Lemdupo1"], ["https://tec.openplanner.team/stops/N506afb", "https://tec.openplanner.team/stops/N506aha"], ["https://tec.openplanner.team/stops/LWacime1", "https://tec.openplanner.team/stops/LWalibo1"], ["https://tec.openplanner.team/stops/H1sg149b", "https://tec.openplanner.team/stops/H1sg150c"], ["https://tec.openplanner.team/stops/N511ala", "https://tec.openplanner.team/stops/N511alc"], ["https://tec.openplanner.team/stops/X925aia", "https://tec.openplanner.team/stops/X925ana"], ["https://tec.openplanner.team/stops/X718aha", "https://tec.openplanner.team/stops/X718aia"], ["https://tec.openplanner.team/stops/LLycent*", "https://tec.openplanner.team/stops/LSochal1"], ["https://tec.openplanner.team/stops/N507ahb", "https://tec.openplanner.team/stops/N507amb"], ["https://tec.openplanner.team/stops/X633afa", "https://tec.openplanner.team/stops/X633agb"], ["https://tec.openplanner.team/stops/N308agb", "https://tec.openplanner.team/stops/N308aka"], ["https://tec.openplanner.team/stops/Csebasc1", "https://tec.openplanner.team/stops/Csequew1"], ["https://tec.openplanner.team/stops/Borbod92", "https://tec.openplanner.team/stops/Btstcar3"], ["https://tec.openplanner.team/stops/LMgbern2", "https://tec.openplanner.team/stops/LVImons2"], ["https://tec.openplanner.team/stops/X818aua", "https://tec.openplanner.team/stops/X818aub"], ["https://tec.openplanner.team/stops/H4ca124b", "https://tec.openplanner.team/stops/H4wi163a"], ["https://tec.openplanner.team/stops/N576aja", "https://tec.openplanner.team/stops/N576ajb"], ["https://tec.openplanner.team/stops/Livvill2", "https://tec.openplanner.team/stops/LRachen*"], ["https://tec.openplanner.team/stops/Bqueegl1", "https://tec.openplanner.team/stops/Bquereb2"], ["https://tec.openplanner.team/stops/LWDchab2", "https://tec.openplanner.team/stops/LWDcime2"], ["https://tec.openplanner.team/stops/N511aib", "https://tec.openplanner.team/stops/N511asb"], ["https://tec.openplanner.team/stops/Balswin2", "https://tec.openplanner.team/stops/Brsg7fo2"], ["https://tec.openplanner.team/stops/LCvmonu1", "https://tec.openplanner.team/stops/LCvneu-2"], ["https://tec.openplanner.team/stops/LmHbahn1", "https://tec.openplanner.team/stops/LmTgers1"], ["https://tec.openplanner.team/stops/Lmodeja1", "https://tec.openplanner.team/stops/Lmomarr3"], ["https://tec.openplanner.team/stops/N232apb", "https://tec.openplanner.team/stops/N232bpb"], ["https://tec.openplanner.team/stops/Cmlclos2", "https://tec.openplanner.team/stops/Cmmami2"], ["https://tec.openplanner.team/stops/H4ty397b", "https://tec.openplanner.team/stops/H4ty406a"], ["https://tec.openplanner.team/stops/N232bxa", "https://tec.openplanner.team/stops/N232bya"], ["https://tec.openplanner.team/stops/H4ry130a", "https://tec.openplanner.team/stops/H4ry131b"], ["https://tec.openplanner.team/stops/X925aga", "https://tec.openplanner.team/stops/X925alb"], ["https://tec.openplanner.team/stops/H4ka174b", "https://tec.openplanner.team/stops/H4ka181a"], ["https://tec.openplanner.team/stops/N204abb", "https://tec.openplanner.team/stops/N204acb"], ["https://tec.openplanner.team/stops/Cmazone2", "https://tec.openplanner.team/stops/Cmmegli3"], ["https://tec.openplanner.team/stops/Cjugill1", "https://tec.openplanner.team/stops/CMchag2"], ["https://tec.openplanner.team/stops/H4os223b", "https://tec.openplanner.team/stops/H5wo132b"], ["https://tec.openplanner.team/stops/Cclplac1", "https://tec.openplanner.team/stops/Cclrgiv2"], ["https://tec.openplanner.team/stops/Cfccabi1", "https://tec.openplanner.team/stops/Cfcpier2"], ["https://tec.openplanner.team/stops/Ljubods1", "https://tec.openplanner.team/stops/Ljubods2"], ["https://tec.openplanner.team/stops/LDLgran1", "https://tec.openplanner.team/stops/LHYlinc4"], ["https://tec.openplanner.team/stops/X802acb", "https://tec.openplanner.team/stops/X802aea"], ["https://tec.openplanner.team/stops/X639amd", "https://tec.openplanner.team/stops/X639ana"], ["https://tec.openplanner.team/stops/Btlgmou1", "https://tec.openplanner.team/stops/Btlgreg1"], ["https://tec.openplanner.team/stops/H5at128a", "https://tec.openplanner.team/stops/H5at128b"], ["https://tec.openplanner.team/stops/H1hw122b", "https://tec.openplanner.team/stops/H1ls109b"], ["https://tec.openplanner.team/stops/LBVclig1", "https://tec.openplanner.team/stops/LBVlamo1"], ["https://tec.openplanner.team/stops/Cchba08", "https://tec.openplanner.team/stops/Cchba11"], ["https://tec.openplanner.team/stops/LmFdorf2", "https://tec.openplanner.team/stops/LmNbirt2"], ["https://tec.openplanner.team/stops/X890aea", "https://tec.openplanner.team/stops/X890aeb"], ["https://tec.openplanner.team/stops/N217aaa", "https://tec.openplanner.team/stops/N217ada"], ["https://tec.openplanner.team/stops/X925ajb", "https://tec.openplanner.team/stops/X927aba"], ["https://tec.openplanner.team/stops/Llgjean1", "https://tec.openplanner.team/stops/Llgvelb2"], ["https://tec.openplanner.team/stops/LHTcerc1", "https://tec.openplanner.team/stops/LHTdelh1"], ["https://tec.openplanner.team/stops/H1cd110b", "https://tec.openplanner.team/stops/H1to152a"], ["https://tec.openplanner.team/stops/X347aab", "https://tec.openplanner.team/stops/X369acb"], ["https://tec.openplanner.team/stops/H1br125b", "https://tec.openplanner.team/stops/H2pe161b"], ["https://tec.openplanner.team/stops/X601cpa", "https://tec.openplanner.team/stops/X601cra"], ["https://tec.openplanner.team/stops/Lhrstev1", "https://tec.openplanner.team/stops/Lhrwigi2"], ["https://tec.openplanner.team/stops/H4bo112a", "https://tec.openplanner.team/stops/H4bo113b"], ["https://tec.openplanner.team/stops/X637aqb", "https://tec.openplanner.team/stops/X650aob"], ["https://tec.openplanner.team/stops/Cfaecmo2", "https://tec.openplanner.team/stops/Cpiegli2"], ["https://tec.openplanner.team/stops/N503aib", "https://tec.openplanner.team/stops/N503alb"], ["https://tec.openplanner.team/stops/Lalwaro1", "https://tec.openplanner.team/stops/LXhcite1"], ["https://tec.openplanner.team/stops/X663akb", "https://tec.openplanner.team/stops/X663aob"], ["https://tec.openplanner.team/stops/LPLfp2-2", "https://tec.openplanner.team/stops/LPLstat2"], ["https://tec.openplanner.team/stops/Lghecol*", "https://tec.openplanner.team/stops/Lghpara2"], ["https://tec.openplanner.team/stops/X725aca", "https://tec.openplanner.team/stops/X725adb"], ["https://tec.openplanner.team/stops/Baegpon2", "https://tec.openplanner.team/stops/Bramcar1"], ["https://tec.openplanner.team/stops/N210aab", "https://tec.openplanner.team/stops/NL82aga"], ["https://tec.openplanner.team/stops/H4mv194a", "https://tec.openplanner.team/stops/H4mv197a"], ["https://tec.openplanner.team/stops/Ltigare2", "https://tec.openplanner.team/stops/Ltinico1"], ["https://tec.openplanner.team/stops/Btubmfa2", "https://tec.openplanner.team/stops/Btubpla2"], ["https://tec.openplanner.team/stops/Cvlcen2", "https://tec.openplanner.team/stops/NH01ajb"], ["https://tec.openplanner.team/stops/Lsebrun4", "https://tec.openplanner.team/stops/Lsepuit1"], ["https://tec.openplanner.team/stops/N503aha", "https://tec.openplanner.team/stops/N503ahb"], ["https://tec.openplanner.team/stops/LHUlebe3", "https://tec.openplanner.team/stops/LHUlebe5"], ["https://tec.openplanner.team/stops/N501mha", "https://tec.openplanner.team/stops/N501msb"], ["https://tec.openplanner.team/stops/LLUmont1", "https://tec.openplanner.team/stops/LLUpier2"], ["https://tec.openplanner.team/stops/LCObouh1", "https://tec.openplanner.team/stops/LCOcarr1"], ["https://tec.openplanner.team/stops/X721aga", "https://tec.openplanner.team/stops/X721ajb"], ["https://tec.openplanner.team/stops/Bgnvdep2", "https://tec.openplanner.team/stops/Bgnvoha4"], ["https://tec.openplanner.team/stops/Blmlcim1", "https://tec.openplanner.team/stops/Blmlqlo1"], ["https://tec.openplanner.team/stops/Borblim1", "https://tec.openplanner.team/stops/Btstbes1"], ["https://tec.openplanner.team/stops/LESryon1", "https://tec.openplanner.team/stops/LESryon2"], ["https://tec.openplanner.team/stops/LWAaxhe1", "https://tec.openplanner.team/stops/LWAipes2"], ["https://tec.openplanner.team/stops/LMIcamp2", "https://tec.openplanner.team/stops/LMImc--1"], ["https://tec.openplanner.team/stops/Ldichat1", "https://tec.openplanner.team/stops/Ldicorb2"], ["https://tec.openplanner.team/stops/X982akb", "https://tec.openplanner.team/stops/X982boa"], ["https://tec.openplanner.team/stops/NC14ada", "https://tec.openplanner.team/stops/NC44adb"], ["https://tec.openplanner.team/stops/H5wo122b", "https://tec.openplanner.team/stops/H5wo132a"], ["https://tec.openplanner.team/stops/Bbsthpl2", "https://tec.openplanner.team/stops/Bbsttab2"], ["https://tec.openplanner.team/stops/N545abb", "https://tec.openplanner.team/stops/N545acb"], ["https://tec.openplanner.team/stops/LBRpier1", "https://tec.openplanner.team/stops/LBRpier2"], ["https://tec.openplanner.team/stops/H4fa128a", "https://tec.openplanner.team/stops/H4ms146a"], ["https://tec.openplanner.team/stops/H4hx109a", "https://tec.openplanner.team/stops/H4mo191b"], ["https://tec.openplanner.team/stops/H4wa149b", "https://tec.openplanner.team/stops/H4wa151a"], ["https://tec.openplanner.team/stops/Lagjado2", "https://tec.openplanner.team/stops/Lagpaix2"], ["https://tec.openplanner.team/stops/LCRchpl1", "https://tec.openplanner.team/stops/LRUhama2"], ["https://tec.openplanner.team/stops/LHUgdpl1", "https://tec.openplanner.team/stops/LHUgdpl2"], ["https://tec.openplanner.team/stops/H4bd109a", "https://tec.openplanner.team/stops/H4bd109b"], ["https://tec.openplanner.team/stops/Ljemont1", "https://tec.openplanner.team/stops/Ljemont2"], ["https://tec.openplanner.team/stops/Bwaunce2", "https://tec.openplanner.team/stops/Bwaunop1"], ["https://tec.openplanner.team/stops/H1mb125b", "https://tec.openplanner.team/stops/H1mb129a"], ["https://tec.openplanner.team/stops/H1ms362a", "https://tec.openplanner.team/stops/H1ob361b"], ["https://tec.openplanner.team/stops/X802aha", "https://tec.openplanner.team/stops/X802ahb"], ["https://tec.openplanner.team/stops/N120aha", "https://tec.openplanner.team/stops/N120aod"], ["https://tec.openplanner.team/stops/LDmcruc2", "https://tec.openplanner.team/stops/LDmdegi2"], ["https://tec.openplanner.team/stops/X626afb", "https://tec.openplanner.team/stops/X626agb"], ["https://tec.openplanner.team/stops/LVEhali2", "https://tec.openplanner.team/stops/LVErtt-2"], ["https://tec.openplanner.team/stops/H2gy103a", "https://tec.openplanner.team/stops/H2gy103b"], ["https://tec.openplanner.team/stops/N507ada", "https://tec.openplanner.team/stops/N507ahb"], ["https://tec.openplanner.team/stops/LCaalou2", "https://tec.openplanner.team/stops/Lmlcite*"], ["https://tec.openplanner.team/stops/H1fa120b", "https://tec.openplanner.team/stops/H1hl128a"], ["https://tec.openplanner.team/stops/LbUmurr1", "https://tec.openplanner.team/stops/LhOokat2"], ["https://tec.openplanner.team/stops/Laghetr1", "https://tec.openplanner.team/stops/Lagsauh1"], ["https://tec.openplanner.team/stops/Btubbai1", "https://tec.openplanner.team/stops/Btubstq1"], ["https://tec.openplanner.team/stops/LHgec--0", "https://tec.openplanner.team/stops/LHgeg--1"], ["https://tec.openplanner.team/stops/N501bhb", "https://tec.openplanner.team/stops/N501bwa"], ["https://tec.openplanner.team/stops/X804ajb", "https://tec.openplanner.team/stops/X804akb"], ["https://tec.openplanner.team/stops/Lrcvinc1", "https://tec.openplanner.team/stops/Lvopaqu1"], ["https://tec.openplanner.team/stops/H4ta117a", "https://tec.openplanner.team/stops/H4ta124a"], ["https://tec.openplanner.team/stops/X940aha", "https://tec.openplanner.team/stops/X946abb"], ["https://tec.openplanner.team/stops/X741aja", "https://tec.openplanner.team/stops/X741aob"], ["https://tec.openplanner.team/stops/X750bma", "https://tec.openplanner.team/stops/X784aaa"], ["https://tec.openplanner.team/stops/X999anb", "https://tec.openplanner.team/stops/X999aub"], ["https://tec.openplanner.team/stops/LVtespo1", "https://tec.openplanner.team/stops/LVtespo2"], ["https://tec.openplanner.team/stops/LNOsedo1", "https://tec.openplanner.team/stops/LREprea1"], ["https://tec.openplanner.team/stops/Btlgfto1", "https://tec.openplanner.team/stops/Btlgmee1"], ["https://tec.openplanner.team/stops/X661ahb", "https://tec.openplanner.team/stops/X661aia"], ["https://tec.openplanner.team/stops/LTPpres1", "https://tec.openplanner.team/stops/LTPpres2"], ["https://tec.openplanner.team/stops/Ccipier2", "https://tec.openplanner.team/stops/Ccisolv1"], ["https://tec.openplanner.team/stops/LMHmeha2", "https://tec.openplanner.team/stops/LMHplac4"], ["https://tec.openplanner.team/stops/X923aeb", "https://tec.openplanner.team/stops/X923ama"], ["https://tec.openplanner.team/stops/Cgy4bra1", "https://tec.openplanner.team/stops/CMgill1"], ["https://tec.openplanner.team/stops/Loubonc1", "https://tec.openplanner.team/stops/Lousimo2"], ["https://tec.openplanner.team/stops/LHHgare1", "https://tec.openplanner.team/stops/LHHgare2"], ["https://tec.openplanner.team/stops/LSZnive1", "https://tec.openplanner.team/stops/LSZnive2"], ["https://tec.openplanner.team/stops/Csdbosq2", "https://tec.openplanner.team/stops/Csdfboi1"], ["https://tec.openplanner.team/stops/LOesour2", "https://tec.openplanner.team/stops/LWAbett2"], ["https://tec.openplanner.team/stops/LvA12--4", "https://tec.openplanner.team/stops/LvA30--2"], ["https://tec.openplanner.team/stops/CMsama1", "https://tec.openplanner.team/stops/Cmtneuv1"], ["https://tec.openplanner.team/stops/N543bya", "https://tec.openplanner.team/stops/N566ada"], ["https://tec.openplanner.team/stops/LORgend2", "https://tec.openplanner.team/stops/LORvill1"], ["https://tec.openplanner.team/stops/Bsmgbsa2", "https://tec.openplanner.team/stops/Bsmgmas2"], ["https://tec.openplanner.team/stops/LrAdrie1", "https://tec.openplanner.team/stops/LrAdrie2"], ["https://tec.openplanner.team/stops/Ccosart1", "https://tec.openplanner.team/stops/Ccosart2"], ["https://tec.openplanner.team/stops/H1gh365a", "https://tec.openplanner.team/stops/H1ni317b"], ["https://tec.openplanner.team/stops/Lsnagne1", "https://tec.openplanner.team/stops/Lsnlibe1"], ["https://tec.openplanner.team/stops/Btlgegl2", "https://tec.openplanner.team/stops/Btlgmou1"], ["https://tec.openplanner.team/stops/LBhschu1", "https://tec.openplanner.team/stops/LmAaldr1"], ["https://tec.openplanner.team/stops/N573aoa", "https://tec.openplanner.team/stops/N573ara"], ["https://tec.openplanner.team/stops/LnDthel1", "https://tec.openplanner.team/stops/LnDthel2"], ["https://tec.openplanner.team/stops/LWOsass1", "https://tec.openplanner.team/stops/LWOsass2"], ["https://tec.openplanner.team/stops/Llgjenn2", "https://tec.openplanner.team/stops/Llgmass1"], ["https://tec.openplanner.team/stops/Cvpsawe1", "https://tec.openplanner.team/stops/Cvpsawe2"], ["https://tec.openplanner.team/stops/Bbrlpar1", "https://tec.openplanner.team/stops/Bbrlrph1"], ["https://tec.openplanner.team/stops/N539afb", "https://tec.openplanner.team/stops/N540aha"], ["https://tec.openplanner.team/stops/N501cra", "https://tec.openplanner.team/stops/N501cub"], ["https://tec.openplanner.team/stops/N562bwa", "https://tec.openplanner.team/stops/N562bwb"], ["https://tec.openplanner.team/stops/H1bs112a", "https://tec.openplanner.team/stops/H1sb144b"], ["https://tec.openplanner.team/stops/Caccera2", "https://tec.openplanner.team/stops/Cacragu2"], ["https://tec.openplanner.team/stops/Laddelc1", "https://tec.openplanner.team/stops/Ladjuif2"], ["https://tec.openplanner.team/stops/LFReg--1", "https://tec.openplanner.team/stops/LFreg--2"], ["https://tec.openplanner.team/stops/LWabela1", "https://tec.openplanner.team/stops/LWabela2"], ["https://tec.openplanner.team/stops/Cfcbosq1", "https://tec.openplanner.team/stops/Cfcecol1"], ["https://tec.openplanner.team/stops/LATmonu1", "https://tec.openplanner.team/stops/LATmonu2"], ["https://tec.openplanner.team/stops/Blhugai1", "https://tec.openplanner.team/stops/Bohngai1"], ["https://tec.openplanner.team/stops/N135aga", "https://tec.openplanner.team/stops/N135aha"], ["https://tec.openplanner.team/stops/Lfhchaf*", "https://tec.openplanner.team/stops/Lfhgare1"], ["https://tec.openplanner.team/stops/LLApavi1", "https://tec.openplanner.team/stops/LMgberw2"], ["https://tec.openplanner.team/stops/X897alc", "https://tec.openplanner.team/stops/X897awa"], ["https://tec.openplanner.team/stops/N141afa", "https://tec.openplanner.team/stops/N141ama"], ["https://tec.openplanner.team/stops/X670aca", "https://tec.openplanner.team/stops/X670aia"], ["https://tec.openplanner.team/stops/N232beb", "https://tec.openplanner.team/stops/N232bia"], ["https://tec.openplanner.team/stops/X605aaa", "https://tec.openplanner.team/stops/X605abb"], ["https://tec.openplanner.team/stops/H5rx130a", "https://tec.openplanner.team/stops/H5rx144b"], ["https://tec.openplanner.team/stops/Lmochpl2", "https://tec.openplanner.team/stops/Lmogoff2"], ["https://tec.openplanner.team/stops/LAUcose1", "https://tec.openplanner.team/stops/LAUcose2"], ["https://tec.openplanner.team/stops/X764abb", "https://tec.openplanner.team/stops/X764acb"], ["https://tec.openplanner.team/stops/Cjumarc2", "https://tec.openplanner.team/stops/Cjupuis1"], ["https://tec.openplanner.team/stops/N501bvb", "https://tec.openplanner.team/stops/N501bwb"], ["https://tec.openplanner.team/stops/H4ha167a", "https://tec.openplanner.team/stops/H4ru239b"], ["https://tec.openplanner.team/stops/X882aba", "https://tec.openplanner.team/stops/X882aia"], ["https://tec.openplanner.team/stops/LbUhons1", "https://tec.openplanner.team/stops/LbUhons2"], ["https://tec.openplanner.team/stops/Binccha1", "https://tec.openplanner.team/stops/Bincegl1"], ["https://tec.openplanner.team/stops/N338aha", "https://tec.openplanner.team/stops/N339aab"], ["https://tec.openplanner.team/stops/LBLplas2", "https://tec.openplanner.team/stops/LBLvici3"], ["https://tec.openplanner.team/stops/H1gy113b", "https://tec.openplanner.team/stops/H1og133a"], ["https://tec.openplanner.team/stops/LROandr1", "https://tec.openplanner.team/stops/LSokrin1"], ["https://tec.openplanner.team/stops/Lsehya-4", "https://tec.openplanner.team/stops/Lsepair2"], ["https://tec.openplanner.team/stops/H1hv132a", "https://tec.openplanner.team/stops/H1hv133b"], ["https://tec.openplanner.team/stops/N229aia", "https://tec.openplanner.team/stops/N229apa"], ["https://tec.openplanner.team/stops/N516aib", "https://tec.openplanner.team/stops/N517aca"], ["https://tec.openplanner.team/stops/Lcebail1", "https://tec.openplanner.team/stops/Lemmeha2"], ["https://tec.openplanner.team/stops/Lhrlaix1", "https://tec.openplanner.team/stops/Lhrlalo1"], ["https://tec.openplanner.team/stops/N117aja", "https://tec.openplanner.team/stops/N117bba"], ["https://tec.openplanner.team/stops/X994aka", "https://tec.openplanner.team/stops/X995aab"], ["https://tec.openplanner.team/stops/N251ada", "https://tec.openplanner.team/stops/N252aaa"], ["https://tec.openplanner.team/stops/X664aab", "https://tec.openplanner.team/stops/X664acb"], ["https://tec.openplanner.team/stops/Bmelenf2", "https://tec.openplanner.team/stops/Btilmon2"], ["https://tec.openplanner.team/stops/N113aca", "https://tec.openplanner.team/stops/N113ada"], ["https://tec.openplanner.team/stops/Ccoptca1", "https://tec.openplanner.team/stops/Crowall2"], ["https://tec.openplanner.team/stops/Lvoeg--2", "https://tec.openplanner.team/stops/Lvopaqu1"], ["https://tec.openplanner.team/stops/Blpgeco2", "https://tec.openplanner.team/stops/Blpglon2"], ["https://tec.openplanner.team/stops/X623aeb", "https://tec.openplanner.team/stops/X623afb"], ["https://tec.openplanner.team/stops/Lrcauto1", "https://tec.openplanner.team/stops/Lrcchpl1"], ["https://tec.openplanner.team/stops/H4ta121b", "https://tec.openplanner.team/stops/H4ta123b"], ["https://tec.openplanner.team/stops/H4vx362b", "https://tec.openplanner.team/stops/H4vx363a"], ["https://tec.openplanner.team/stops/LeUauto1", "https://tec.openplanner.team/stops/LeUwais2"], ["https://tec.openplanner.team/stops/Cmlfstt2", "https://tec.openplanner.team/stops/CMvil2"], ["https://tec.openplanner.team/stops/N149abb", "https://tec.openplanner.team/stops/N149ada"], ["https://tec.openplanner.team/stops/H2sb228c", "https://tec.openplanner.team/stops/H2tr248b"], ["https://tec.openplanner.team/stops/Cfldand2", "https://tec.openplanner.team/stops/NC23abb"], ["https://tec.openplanner.team/stops/LoUpete2", "https://tec.openplanner.team/stops/LoUzent1"], ["https://tec.openplanner.team/stops/X952ada", "https://tec.openplanner.team/stops/X952adb"], ["https://tec.openplanner.team/stops/Bwatfia1", "https://tec.openplanner.team/stops/Bwatfia2"], ["https://tec.openplanner.team/stops/Bitrbvo2", "https://tec.openplanner.team/stops/Bosqpqu2"], ["https://tec.openplanner.team/stops/X749abb", "https://tec.openplanner.team/stops/X754acb"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Lloross2"], ["https://tec.openplanner.team/stops/Ccupays1", "https://tec.openplanner.team/stops/Ccurtra2"], ["https://tec.openplanner.team/stops/X750aua", "https://tec.openplanner.team/stops/X750aub"], ["https://tec.openplanner.team/stops/N204aea", "https://tec.openplanner.team/stops/N208aaa"], ["https://tec.openplanner.team/stops/Cwfdupo2", "https://tec.openplanner.team/stops/Cwfronc1"], ["https://tec.openplanner.team/stops/Cfacamp4", "https://tec.openplanner.team/stops/Cfaetoi1"], ["https://tec.openplanner.team/stops/Bgrhcen2", "https://tec.openplanner.team/stops/Bgrhpos2"], ["https://tec.openplanner.team/stops/H2jo162b", "https://tec.openplanner.team/stops/H2jo163a"], ["https://tec.openplanner.team/stops/H2hp123c", "https://tec.openplanner.team/stops/H2hp124c"], ["https://tec.openplanner.team/stops/LmYeich2", "https://tec.openplanner.team/stops/LvAschw2"], ["https://tec.openplanner.team/stops/LLNbeau1", "https://tec.openplanner.team/stops/LLNbeau2"], ["https://tec.openplanner.team/stops/LSZarze1", "https://tec.openplanner.team/stops/LSZarze4"], ["https://tec.openplanner.team/stops/H1me116a", "https://tec.openplanner.team/stops/H1me116b"], ["https://tec.openplanner.team/stops/H4gu106b", "https://tec.openplanner.team/stops/H4ry130a"], ["https://tec.openplanner.team/stops/Bosqsam2", "https://tec.openplanner.team/stops/Bvirdco2"], ["https://tec.openplanner.team/stops/Clbgare1", "https://tec.openplanner.team/stops/H1lo119a"], ["https://tec.openplanner.team/stops/Bmelenf1", "https://tec.openplanner.team/stops/Btilsce2"], ["https://tec.openplanner.team/stops/N501hxy", "https://tec.openplanner.team/stops/N501ika"], ["https://tec.openplanner.team/stops/Ladplen*", "https://tec.openplanner.team/stops/LThsere1"], ["https://tec.openplanner.team/stops/LVnourt1", "https://tec.openplanner.team/stops/LVnourt4"], ["https://tec.openplanner.team/stops/Cctbois3", "https://tec.openplanner.team/stops/Ccupays2"], ["https://tec.openplanner.team/stops/H1si155a", "https://tec.openplanner.team/stops/H1vt195a"], ["https://tec.openplanner.team/stops/H1gr123b", "https://tec.openplanner.team/stops/H1gr123c"], ["https://tec.openplanner.team/stops/Lbbviad1", "https://tec.openplanner.team/stops/Lbbviad2"], ["https://tec.openplanner.team/stops/LNCcedr1", "https://tec.openplanner.team/stops/LNCgene1"], ["https://tec.openplanner.team/stops/N206abb", "https://tec.openplanner.team/stops/N206acb"], ["https://tec.openplanner.team/stops/Cprrvil2", "https://tec.openplanner.team/stops/NC44aea"], ["https://tec.openplanner.team/stops/LScd45-1", "https://tec.openplanner.team/stops/LScd45-2"], ["https://tec.openplanner.team/stops/X829ada", "https://tec.openplanner.team/stops/X829aea"], ["https://tec.openplanner.team/stops/N131afb", "https://tec.openplanner.team/stops/N152aac"], ["https://tec.openplanner.team/stops/N571aab", "https://tec.openplanner.team/stops/N571aba"], ["https://tec.openplanner.team/stops/LOrchau2", "https://tec.openplanner.team/stops/LORec--*"], ["https://tec.openplanner.team/stops/LLGec--*", "https://tec.openplanner.team/stops/LORpave2"], ["https://tec.openplanner.team/stops/N501fjb", "https://tec.openplanner.team/stops/N501mla"], ["https://tec.openplanner.team/stops/N562acb", "https://tec.openplanner.team/stops/N562aea"], ["https://tec.openplanner.team/stops/Lhrwigi1", "https://tec.openplanner.team/stops/Lhrwigi2"], ["https://tec.openplanner.team/stops/Btslcel1", "https://tec.openplanner.team/stops/Btsllfp1"], ["https://tec.openplanner.team/stops/X614ana", "https://tec.openplanner.team/stops/X614bdb"], ["https://tec.openplanner.team/stops/X561abc", "https://tec.openplanner.team/stops/X561aca"], ["https://tec.openplanner.team/stops/X625ada", "https://tec.openplanner.team/stops/X625aeb"], ["https://tec.openplanner.team/stops/H1as101a", "https://tec.openplanner.team/stops/H1as101b"], ["https://tec.openplanner.team/stops/LPcforg2", "https://tec.openplanner.team/stops/LVPbleh2"], ["https://tec.openplanner.team/stops/LXocomb2", "https://tec.openplanner.team/stops/LXopier1"], ["https://tec.openplanner.team/stops/X758ajb", "https://tec.openplanner.team/stops/X840aea"], ["https://tec.openplanner.team/stops/Cmtchas2", "https://tec.openplanner.team/stops/Cmtproc2"], ["https://tec.openplanner.team/stops/LWRbomb3", "https://tec.openplanner.team/stops/LWRgare1"], ["https://tec.openplanner.team/stops/X734aia", "https://tec.openplanner.team/stops/X734aib"], ["https://tec.openplanner.team/stops/N501bxb", "https://tec.openplanner.team/stops/N501hfb"], ["https://tec.openplanner.team/stops/LFHsucr1", "https://tec.openplanner.team/stops/LNveg--1"], ["https://tec.openplanner.team/stops/N515arb", "https://tec.openplanner.team/stops/N515asb"], ["https://tec.openplanner.team/stops/N528ana", "https://tec.openplanner.team/stops/N528anb"], ["https://tec.openplanner.team/stops/Bquepbr1", "https://tec.openplanner.team/stops/Bstecou1"], ["https://tec.openplanner.team/stops/X609aha", "https://tec.openplanner.team/stops/X610aaa"], ["https://tec.openplanner.team/stops/Cmmami1", "https://tec.openplanner.team/stops/Cmmtomb2"], ["https://tec.openplanner.team/stops/N501gpa", "https://tec.openplanner.team/stops/N501mtc"], ["https://tec.openplanner.team/stops/NL76ara", "https://tec.openplanner.team/stops/NL76asb"], ["https://tec.openplanner.team/stops/Bptrlux2", "https://tec.openplanner.team/stops/Bptrman1"], ["https://tec.openplanner.team/stops/N539aza", "https://tec.openplanner.team/stops/N539azb"], ["https://tec.openplanner.team/stops/LGogare1", "https://tec.openplanner.team/stops/LGogare2"], ["https://tec.openplanner.team/stops/H2ml110a", "https://tec.openplanner.team/stops/H2ml114b"], ["https://tec.openplanner.team/stops/Lhrpaix1", "https://tec.openplanner.team/stops/Lhrpost2"], ["https://tec.openplanner.team/stops/LMgkrui1", "https://tec.openplanner.team/stops/LMgkrui2"], ["https://tec.openplanner.team/stops/H2ll180a", "https://tec.openplanner.team/stops/H2ll258b"], ["https://tec.openplanner.team/stops/LmYeich2", "https://tec.openplanner.team/stops/LmYkreu2"], ["https://tec.openplanner.team/stops/N390aaa", "https://tec.openplanner.team/stops/N390aba"], ["https://tec.openplanner.team/stops/H4pi133a", "https://tec.openplanner.team/stops/H4pi133b"], ["https://tec.openplanner.team/stops/N506bfb", "https://tec.openplanner.team/stops/N512agc"], ["https://tec.openplanner.team/stops/H1mj122b", "https://tec.openplanner.team/stops/H1mj125b"], ["https://tec.openplanner.team/stops/Lstbold2", "https://tec.openplanner.team/stops/Lstchu-4"], ["https://tec.openplanner.team/stops/X626aea", "https://tec.openplanner.team/stops/X626afb"], ["https://tec.openplanner.team/stops/Brxmcha1", "https://tec.openplanner.team/stops/Brxmcna2"], ["https://tec.openplanner.team/stops/H4mo137a", "https://tec.openplanner.team/stops/H4mo170b"], ["https://tec.openplanner.team/stops/Lbocruc2", "https://tec.openplanner.team/stops/LPLcarr2"], ["https://tec.openplanner.team/stops/N553akb", "https://tec.openplanner.team/stops/N553alb"], ["https://tec.openplanner.team/stops/Blanath1", "https://tec.openplanner.team/stops/LORroma1"], ["https://tec.openplanner.team/stops/H4bd107a", "https://tec.openplanner.team/stops/H4te250b"], ["https://tec.openplanner.team/stops/Bbgeegl1", "https://tec.openplanner.team/stops/Bbgewal1"], ["https://tec.openplanner.team/stops/LHEches3", "https://tec.openplanner.team/stops/LHEecmo2"], ["https://tec.openplanner.team/stops/X982cba", "https://tec.openplanner.team/stops/X982cbb"], ["https://tec.openplanner.team/stops/LSzsurl2", "https://tec.openplanner.team/stops/NL57aia"], ["https://tec.openplanner.team/stops/X804aca", "https://tec.openplanner.team/stops/X882ajb"], ["https://tec.openplanner.team/stops/LBAcarr1", "https://tec.openplanner.team/stops/LBAcere2"], ["https://tec.openplanner.team/stops/X820agb", "https://tec.openplanner.team/stops/X820aha"], ["https://tec.openplanner.team/stops/Bsrgcur1", "https://tec.openplanner.team/stops/Bsrgcur2"], ["https://tec.openplanner.team/stops/X636bea", "https://tec.openplanner.team/stops/X636beb"], ["https://tec.openplanner.team/stops/X756agd", "https://tec.openplanner.team/stops/X756akb"], ["https://tec.openplanner.team/stops/X734aga", "https://tec.openplanner.team/stops/X734aha"], ["https://tec.openplanner.team/stops/LAmshel1", "https://tec.openplanner.team/stops/LAmshel2"], ["https://tec.openplanner.team/stops/LbRkirc2", "https://tec.openplanner.team/stops/LcRmuhl2"], ["https://tec.openplanner.team/stops/Cbwmato1", "https://tec.openplanner.team/stops/Cmqegl1"], ["https://tec.openplanner.team/stops/Llgcrah1", "https://tec.openplanner.team/stops/LlgPRVo1"], ["https://tec.openplanner.team/stops/X619afb", "https://tec.openplanner.team/stops/X619aga"], ["https://tec.openplanner.team/stops/X363aab", "https://tec.openplanner.team/stops/X363aba"], ["https://tec.openplanner.team/stops/N501fxa", "https://tec.openplanner.team/stops/N501gza"], ["https://tec.openplanner.team/stops/N203aab", "https://tec.openplanner.team/stops/N204agb"], ["https://tec.openplanner.team/stops/H5at109b", "https://tec.openplanner.team/stops/H5at128a"], ["https://tec.openplanner.team/stops/LBscasi2", "https://tec.openplanner.team/stops/LBseg--1"], ["https://tec.openplanner.team/stops/Cmasncb2", "https://tec.openplanner.team/stops/Cmastfi2"], ["https://tec.openplanner.team/stops/H4ea128b", "https://tec.openplanner.team/stops/H4ea130b"], ["https://tec.openplanner.team/stops/X923aia", "https://tec.openplanner.team/stops/X923ala"], ["https://tec.openplanner.team/stops/LWechea2", "https://tec.openplanner.team/stops/LWechpl1"], ["https://tec.openplanner.team/stops/LAmwaut1", "https://tec.openplanner.team/stops/LAmwaut2"], ["https://tec.openplanner.team/stops/X743aab", "https://tec.openplanner.team/stops/X756aaa"], ["https://tec.openplanner.team/stops/X901abb", "https://tec.openplanner.team/stops/X901bob"], ["https://tec.openplanner.team/stops/X750boa", "https://tec.openplanner.team/stops/X784aab"], ["https://tec.openplanner.team/stops/LVLcent1", "https://tec.openplanner.team/stops/LVNwanz1"], ["https://tec.openplanner.team/stops/N525aca", "https://tec.openplanner.team/stops/N525ana"], ["https://tec.openplanner.team/stops/LVEh16-1", "https://tec.openplanner.team/stops/LVEroum1"], ["https://tec.openplanner.team/stops/Ctachst1", "https://tec.openplanner.team/stops/N543cjb"], ["https://tec.openplanner.team/stops/LCsraws1", "https://tec.openplanner.team/stops/LFFchab2"], ["https://tec.openplanner.team/stops/Csebasc2", "https://tec.openplanner.team/stops/Cselait2"], ["https://tec.openplanner.team/stops/N337afa", "https://tec.openplanner.team/stops/N337afb"], ["https://tec.openplanner.team/stops/LVEeg--2", "https://tec.openplanner.team/stops/LVErtt-2"], ["https://tec.openplanner.team/stops/N137aca", "https://tec.openplanner.team/stops/N137ada"], ["https://tec.openplanner.team/stops/H4do100a", "https://tec.openplanner.team/stops/H4do105b"], ["https://tec.openplanner.team/stops/Bneeblo1", "https://tec.openplanner.team/stops/Bneepne2"], ["https://tec.openplanner.team/stops/N232bza", "https://tec.openplanner.team/stops/N232cab"], ["https://tec.openplanner.team/stops/Bbghepi1", "https://tec.openplanner.team/stops/Bquebth3"], ["https://tec.openplanner.team/stops/X982bmb", "https://tec.openplanner.team/stops/X982bnb"], ["https://tec.openplanner.team/stops/LRRecsc*", "https://tec.openplanner.team/stops/LRReg--2"], ["https://tec.openplanner.team/stops/N512aha", "https://tec.openplanner.team/stops/N512apb"], ["https://tec.openplanner.team/stops/N236aoa", "https://tec.openplanner.team/stops/N236aob"], ["https://tec.openplanner.team/stops/H2ll257a", "https://tec.openplanner.team/stops/H2ll257c"], ["https://tec.openplanner.team/stops/X991aka", "https://tec.openplanner.team/stops/X992aab"], ["https://tec.openplanner.team/stops/LkEgss-2", "https://tec.openplanner.team/stops/LMspont1"], ["https://tec.openplanner.team/stops/Lsmrwan1", "https://tec.openplanner.team/stops/Lsmsech3"], ["https://tec.openplanner.team/stops/Lgrfort1", "https://tec.openplanner.team/stops/Lgrlabo2"], ["https://tec.openplanner.team/stops/H1vb143a", "https://tec.openplanner.team/stops/H1wz171b"], ["https://tec.openplanner.team/stops/LhGbahn4", "https://tec.openplanner.team/stops/LhGlang1"], ["https://tec.openplanner.team/stops/H4ty292a", "https://tec.openplanner.team/stops/H4ty405a"], ["https://tec.openplanner.team/stops/LMYvill1", "https://tec.openplanner.team/stops/LXofont1"], ["https://tec.openplanner.team/stops/X802abb", "https://tec.openplanner.team/stops/X882alb"], ["https://tec.openplanner.team/stops/N211aha", "https://tec.openplanner.team/stops/N211ala"], ["https://tec.openplanner.team/stops/Bsampli1", "https://tec.openplanner.team/stops/Bsampli2"], ["https://tec.openplanner.team/stops/H1ba112b", "https://tec.openplanner.team/stops/H1si152c"], ["https://tec.openplanner.team/stops/N506aka", "https://tec.openplanner.team/stops/N506btb"], ["https://tec.openplanner.team/stops/LFFchab2", "https://tec.openplanner.team/stops/LFFmagr2"], ["https://tec.openplanner.team/stops/N576aha", "https://tec.openplanner.team/stops/N576aib"], ["https://tec.openplanner.team/stops/Csecout1", "https://tec.openplanner.team/stops/Csepost2"], ["https://tec.openplanner.team/stops/X713aia", "https://tec.openplanner.team/stops/X714aca"], ["https://tec.openplanner.team/stops/X801adb", "https://tec.openplanner.team/stops/X801bta"], ["https://tec.openplanner.team/stops/Bwatchb1", "https://tec.openplanner.team/stops/Bwatpai1"], ["https://tec.openplanner.team/stops/N127aia", "https://tec.openplanner.team/stops/N134alb"], ["https://tec.openplanner.team/stops/N520aea", "https://tec.openplanner.team/stops/N520aeb"], ["https://tec.openplanner.team/stops/H4fa124b", "https://tec.openplanner.team/stops/H4fa127a"], ["https://tec.openplanner.team/stops/X789aea", "https://tec.openplanner.team/stops/X789aja"], ["https://tec.openplanner.team/stops/H4og210b", "https://tec.openplanner.team/stops/H4og216b"], ["https://tec.openplanner.team/stops/Cchba11", "https://tec.openplanner.team/stops/Cchoues4"], ["https://tec.openplanner.team/stops/Cmlcent1", "https://tec.openplanner.team/stops/Cmlrang2"], ["https://tec.openplanner.team/stops/H4ru240b", "https://tec.openplanner.team/stops/H4ru244a"], ["https://tec.openplanner.team/stops/H2sb258b", "https://tec.openplanner.team/stops/H3lr108b"], ["https://tec.openplanner.team/stops/LLrmc--3", "https://tec.openplanner.team/stops/LLrmc--4"], ["https://tec.openplanner.team/stops/X764ada", "https://tec.openplanner.team/stops/X764adb"], ["https://tec.openplanner.team/stops/N232bub", "https://tec.openplanner.team/stops/N232bva"], ["https://tec.openplanner.team/stops/X601bub", "https://tec.openplanner.team/stops/X601cea"], ["https://tec.openplanner.team/stops/X354aib", "https://tec.openplanner.team/stops/X858ahb"], ["https://tec.openplanner.team/stops/H4ir163b", "https://tec.openplanner.team/stops/H4ir163d"], ["https://tec.openplanner.team/stops/LBkwind2", "https://tec.openplanner.team/stops/LHCpaci2"], ["https://tec.openplanner.team/stops/X640aha", "https://tec.openplanner.team/stops/X640aja"], ["https://tec.openplanner.team/stops/H2sv211b", "https://tec.openplanner.team/stops/H2sv218b"], ["https://tec.openplanner.team/stops/Cmtplac3", "https://tec.openplanner.team/stops/Cmtprey2"], ["https://tec.openplanner.team/stops/Becebju1", "https://tec.openplanner.team/stops/H2mi124b"], ["https://tec.openplanner.team/stops/X811aba", "https://tec.openplanner.team/stops/X811adb"], ["https://tec.openplanner.team/stops/NH01aib", "https://tec.openplanner.team/stops/NH01amb"], ["https://tec.openplanner.team/stops/X601cwa", "https://tec.openplanner.team/stops/X601dba"], ["https://tec.openplanner.team/stops/X652aga", "https://tec.openplanner.team/stops/X652agb"], ["https://tec.openplanner.team/stops/Cvsbois1", "https://tec.openplanner.team/stops/N530ahb"], ["https://tec.openplanner.team/stops/H1ch101b", "https://tec.openplanner.team/stops/H1ch104a"], ["https://tec.openplanner.team/stops/Ldipiss1", "https://tec.openplanner.team/stops/Ldipiss2"], ["https://tec.openplanner.team/stops/H1qu100a", "https://tec.openplanner.team/stops/H1qu120b"], ["https://tec.openplanner.team/stops/LSCc39-1", "https://tec.openplanner.team/stops/LSCchap2"], ["https://tec.openplanner.team/stops/X615afa", "https://tec.openplanner.team/stops/X681aia"], ["https://tec.openplanner.team/stops/X901anb", "https://tec.openplanner.team/stops/X901bqb"], ["https://tec.openplanner.team/stops/X604ala", "https://tec.openplanner.team/stops/X604ama"], ["https://tec.openplanner.team/stops/N217aba", "https://tec.openplanner.team/stops/N217acc"], ["https://tec.openplanner.team/stops/X733agb", "https://tec.openplanner.team/stops/X733aia"], ["https://tec.openplanner.team/stops/Bsambra1", "https://tec.openplanner.team/stops/Bsammon1"], ["https://tec.openplanner.team/stops/X796adb", "https://tec.openplanner.team/stops/X986aka"], ["https://tec.openplanner.team/stops/Bbcoubo2", "https://tec.openplanner.team/stops/H3br100a"], ["https://tec.openplanner.team/stops/Lprceri1", "https://tec.openplanner.team/stops/Lprspra1"], ["https://tec.openplanner.team/stops/X641azb", "https://tec.openplanner.team/stops/X823aab"], ["https://tec.openplanner.team/stops/LeMdorf2", "https://tec.openplanner.team/stops/LeMnr11"], ["https://tec.openplanner.team/stops/Bbgnvel2", "https://tec.openplanner.team/stops/Cwfghis2"], ["https://tec.openplanner.team/stops/X718aab", "https://tec.openplanner.team/stops/X718aba"], ["https://tec.openplanner.team/stops/LHHlomb1", "https://tec.openplanner.team/stops/LHHpt--2"], ["https://tec.openplanner.team/stops/X764aba", "https://tec.openplanner.team/stops/X764acb"], ["https://tec.openplanner.team/stops/Bfelcsa2", "https://tec.openplanner.team/stops/Bfelfde1"], ["https://tec.openplanner.team/stops/H2fa108a", "https://tec.openplanner.team/stops/H2fa108b"], ["https://tec.openplanner.team/stops/Lgrfrai1", "https://tec.openplanner.team/stops/Lgrspir2"], ["https://tec.openplanner.team/stops/Bcsempl2", "https://tec.openplanner.team/stops/Bcsepes1"], ["https://tec.openplanner.team/stops/Bnivfro1", "https://tec.openplanner.team/stops/Bnivsto2"], ["https://tec.openplanner.team/stops/H1je218a", "https://tec.openplanner.team/stops/H1ms932a"], ["https://tec.openplanner.team/stops/N507alc", "https://tec.openplanner.team/stops/N512asb"], ["https://tec.openplanner.team/stops/N557ada", "https://tec.openplanner.team/stops/N558aga"], ["https://tec.openplanner.team/stops/LRE154-2", "https://tec.openplanner.team/stops/LREchif2"], ["https://tec.openplanner.team/stops/Cgostro2", "https://tec.openplanner.team/stops/Ctmazeb1"], ["https://tec.openplanner.team/stops/LATfont2", "https://tec.openplanner.team/stops/LVNcoop1"], ["https://tec.openplanner.team/stops/H5bl124b", "https://tec.openplanner.team/stops/H5bl143a"], ["https://tec.openplanner.team/stops/X602adb", "https://tec.openplanner.team/stops/X602aea"], ["https://tec.openplanner.team/stops/LPRbrou1", "https://tec.openplanner.team/stops/LPRcha-*"], ["https://tec.openplanner.team/stops/LlEzoll2", "https://tec.openplanner.team/stops/LmLbeil2"], ["https://tec.openplanner.team/stops/Cthcrom1", "https://tec.openplanner.team/stops/Cthpibl1"], ["https://tec.openplanner.team/stops/H4mt214b", "https://tec.openplanner.team/stops/H4mt218a"], ["https://tec.openplanner.team/stops/LHMbelv2", "https://tec.openplanner.team/stops/LHMhind2"], ["https://tec.openplanner.team/stops/LAYlieg2", "https://tec.openplanner.team/stops/LAYthir1"], ["https://tec.openplanner.team/stops/Lhrspi-1", "https://tec.openplanner.team/stops/Lhrunir1"], ["https://tec.openplanner.team/stops/X602aga", "https://tec.openplanner.team/stops/X602aob"], ["https://tec.openplanner.team/stops/X940aab", "https://tec.openplanner.team/stops/X940aba"], ["https://tec.openplanner.team/stops/Cbfbies2", "https://tec.openplanner.team/stops/Cctsold1"], ["https://tec.openplanner.team/stops/Bhenpla1", "https://tec.openplanner.team/stops/Bhenpln1"], ["https://tec.openplanner.team/stops/LcRkirc1", "https://tec.openplanner.team/stops/LcRmich1"], ["https://tec.openplanner.team/stops/Lagkink1", "https://tec.openplanner.team/stops/Lagpera1"], ["https://tec.openplanner.team/stops/Bptrgri2", "https://tec.openplanner.team/stops/Bptrvil2"], ["https://tec.openplanner.team/stops/X948aaa", "https://tec.openplanner.team/stops/X948ara"], ["https://tec.openplanner.team/stops/LnDkreu2", "https://tec.openplanner.team/stops/LnDthel1"], ["https://tec.openplanner.team/stops/LFfeg--2", "https://tec.openplanner.team/stops/LPRpeti2"], ["https://tec.openplanner.team/stops/X542acb", "https://tec.openplanner.team/stops/X542aib"], ["https://tec.openplanner.team/stops/H4mx117a", "https://tec.openplanner.team/stops/H4mx120a"], ["https://tec.openplanner.team/stops/Cmoecol1", "https://tec.openplanner.team/stops/Cmohame1"], ["https://tec.openplanner.team/stops/H1le124b", "https://tec.openplanner.team/stops/H1le130b"], ["https://tec.openplanner.team/stops/X633aca", "https://tec.openplanner.team/stops/X633afa"], ["https://tec.openplanner.team/stops/Bgnpegl1", "https://tec.openplanner.team/stops/Bgnpegl4"], ["https://tec.openplanner.team/stops/Bgnvcom2", "https://tec.openplanner.team/stops/Bgnvval2"], ["https://tec.openplanner.team/stops/Bhalgja2", "https://tec.openplanner.team/stops/Blemwro1"], ["https://tec.openplanner.team/stops/LwYbruc3", "https://tec.openplanner.team/stops/LwYnr261"], ["https://tec.openplanner.team/stops/X359aib", "https://tec.openplanner.team/stops/X359aja"], ["https://tec.openplanner.team/stops/Cmastma1", "https://tec.openplanner.team/stops/Cmastma2"], ["https://tec.openplanner.team/stops/LHMbami1", "https://tec.openplanner.team/stops/LHMchbl2"], ["https://tec.openplanner.team/stops/N301aoa", "https://tec.openplanner.team/stops/X301ara"], ["https://tec.openplanner.team/stops/N538atc", "https://tec.openplanner.team/stops/N538aub"], ["https://tec.openplanner.team/stops/X662aba", "https://tec.openplanner.team/stops/X662abb"], ["https://tec.openplanner.team/stops/N260aeb", "https://tec.openplanner.team/stops/N270aga"], ["https://tec.openplanner.team/stops/NL76aia", "https://tec.openplanner.team/stops/NL76ama"], ["https://tec.openplanner.team/stops/H1wa135a", "https://tec.openplanner.team/stops/H1wa137a"], ["https://tec.openplanner.team/stops/Bpthcgo1", "https://tec.openplanner.team/stops/Bwanwar1"], ["https://tec.openplanner.team/stops/LBPmais1", "https://tec.openplanner.team/stops/LBPmais2"], ["https://tec.openplanner.team/stops/Cmqbasv2", "https://tec.openplanner.team/stops/H1ro131a"], ["https://tec.openplanner.team/stops/Bnivpba2", "https://tec.openplanner.team/stops/Bnivphs1"], ["https://tec.openplanner.team/stops/LFRhock4", "https://tec.openplanner.team/stops/LHcbaro1"], ["https://tec.openplanner.team/stops/Cmybefe1", "https://tec.openplanner.team/stops/Cmyvesa1"], ["https://tec.openplanner.team/stops/LLOcreu2", "https://tec.openplanner.team/stops/LLOnand2"], ["https://tec.openplanner.team/stops/H1fr117b", "https://tec.openplanner.team/stops/H1no140a"], ["https://tec.openplanner.team/stops/Cml3fon2", "https://tec.openplanner.team/stops/Cmlcons1"], ["https://tec.openplanner.team/stops/X761abb", "https://tec.openplanner.team/stops/X790amb"], ["https://tec.openplanner.team/stops/H4lg103a", "https://tec.openplanner.team/stops/H4lg103b"], ["https://tec.openplanner.team/stops/LmHflor2", "https://tec.openplanner.team/stops/LrTpost1"], ["https://tec.openplanner.team/stops/Bllnhoc1", "https://tec.openplanner.team/stops/Bllnhoc2"], ["https://tec.openplanner.team/stops/LEScham1", "https://tec.openplanner.team/stops/LEScham2"], ["https://tec.openplanner.team/stops/Cctmine2", "https://tec.openplanner.team/stops/Ccurtra1"], ["https://tec.openplanner.team/stops/N244aeb", "https://tec.openplanner.team/stops/N248aaa"], ["https://tec.openplanner.team/stops/LGObeth1", "https://tec.openplanner.team/stops/LGOmous1"], ["https://tec.openplanner.team/stops/N163aab", "https://tec.openplanner.team/stops/N165aca"], ["https://tec.openplanner.team/stops/Lsteg--2", "https://tec.openplanner.team/stops/Lstetud2"], ["https://tec.openplanner.team/stops/X896aaa", "https://tec.openplanner.team/stops/X896abb"], ["https://tec.openplanner.team/stops/X661amb", "https://tec.openplanner.team/stops/X661bca"], ["https://tec.openplanner.team/stops/LPbeg--1", "https://tec.openplanner.team/stops/LSIcour1"], ["https://tec.openplanner.team/stops/N557acb", "https://tec.openplanner.team/stops/N557aeb"], ["https://tec.openplanner.team/stops/Lghleon2", "https://tec.openplanner.team/stops/Lghprea4"], ["https://tec.openplanner.team/stops/N513ava", "https://tec.openplanner.team/stops/N513avb"], ["https://tec.openplanner.team/stops/Cmacart1", "https://tec.openplanner.team/stops/Cmamons1"], ["https://tec.openplanner.team/stops/H2tr248b", "https://tec.openplanner.team/stops/H2tr253a"], ["https://tec.openplanner.team/stops/H4bn173a", "https://tec.openplanner.team/stops/H4pi136a"], ["https://tec.openplanner.team/stops/N211avb", "https://tec.openplanner.team/stops/N211awa"], ["https://tec.openplanner.team/stops/X542aha", "https://tec.openplanner.team/stops/X542aia"], ["https://tec.openplanner.team/stops/X738aaa", "https://tec.openplanner.team/stops/X739aba"], ["https://tec.openplanner.team/stops/LBrbern1", "https://tec.openplanner.team/stops/LBrec--2"], ["https://tec.openplanner.team/stops/LHCandr1", "https://tec.openplanner.team/stops/LHCcroy1"], ["https://tec.openplanner.team/stops/LHZbren1", "https://tec.openplanner.team/stops/LVefont2"], ["https://tec.openplanner.team/stops/X717agf", "https://tec.openplanner.team/stops/X718aha"], ["https://tec.openplanner.team/stops/X773aia", "https://tec.openplanner.team/stops/X773aib"], ["https://tec.openplanner.team/stops/Cmitrie1", "https://tec.openplanner.team/stops/Csequew2"], ["https://tec.openplanner.team/stops/LNEmoul1", "https://tec.openplanner.team/stops/LOLfoss2"], ["https://tec.openplanner.team/stops/Bdoncen2", "https://tec.openplanner.team/stops/Bdonlat2"], ["https://tec.openplanner.team/stops/Lrc594-2", "https://tec.openplanner.team/stops/Lvopaqu1"], ["https://tec.openplanner.team/stops/N351afa", "https://tec.openplanner.team/stops/N351ata"], ["https://tec.openplanner.team/stops/LBNover2", "https://tec.openplanner.team/stops/LhEauto2"], ["https://tec.openplanner.team/stops/Bpthfus1", "https://tec.openplanner.team/stops/Bpthrsp1"], ["https://tec.openplanner.team/stops/LFIcabi1", "https://tec.openplanner.team/stops/LFIcabi2"], ["https://tec.openplanner.team/stops/Cctathe2", "https://tec.openplanner.team/stops/Cctjoue4"], ["https://tec.openplanner.team/stops/N514ajb", "https://tec.openplanner.team/stops/N514aka"], ["https://tec.openplanner.team/stops/N244alb", "https://tec.openplanner.team/stops/N244ara"], ["https://tec.openplanner.team/stops/X615bea", "https://tec.openplanner.team/stops/X695aaa"], ["https://tec.openplanner.team/stops/H1ms292a", "https://tec.openplanner.team/stops/H1ms911a"], ["https://tec.openplanner.team/stops/Btanbth2", "https://tec.openplanner.team/stops/Btanpla4"], ["https://tec.openplanner.team/stops/Bbgnvel1", "https://tec.openplanner.team/stops/Blig4br2"], ["https://tec.openplanner.team/stops/N113adb", "https://tec.openplanner.team/stops/N113aea"], ["https://tec.openplanner.team/stops/NC24aea", "https://tec.openplanner.team/stops/NC24aeb"], ["https://tec.openplanner.team/stops/Bhenron1", "https://tec.openplanner.team/stops/Bhenron2"], ["https://tec.openplanner.team/stops/LOL6che2", "https://tec.openplanner.team/stops/LSHfief2"], ["https://tec.openplanner.team/stops/N501ita", "https://tec.openplanner.team/stops/N501itb"], ["https://tec.openplanner.team/stops/Ltichif3", "https://tec.openplanner.team/stops/Ltihorl2"], ["https://tec.openplanner.team/stops/N525anb", "https://tec.openplanner.team/stops/N525aob"], ["https://tec.openplanner.team/stops/LHVgoro2", "https://tec.openplanner.team/stops/Lsmh3022"], ["https://tec.openplanner.team/stops/N113aea", "https://tec.openplanner.team/stops/N113aeb"], ["https://tec.openplanner.team/stops/N233aaa", "https://tec.openplanner.team/stops/N242agb"], ["https://tec.openplanner.team/stops/LHTbonn1", "https://tec.openplanner.team/stops/LHTmc--2"], ["https://tec.openplanner.team/stops/Bmrl4ch1", "https://tec.openplanner.team/stops/Bolphgr2"], ["https://tec.openplanner.team/stops/X989aba", "https://tec.openplanner.team/stops/X995aga"], ["https://tec.openplanner.team/stops/LoUzent1", "https://tec.openplanner.team/stops/X685apb"], ["https://tec.openplanner.team/stops/NL80ava", "https://tec.openplanner.team/stops/NL80avb"], ["https://tec.openplanner.team/stops/N501cza", "https://tec.openplanner.team/stops/N501czb"], ["https://tec.openplanner.team/stops/Bwatali1", "https://tec.openplanner.team/stops/Bwatcpl1"], ["https://tec.openplanner.team/stops/Cjuecho1", "https://tec.openplanner.team/stops/Cjuplho1"], ["https://tec.openplanner.team/stops/N223abb", "https://tec.openplanner.team/stops/X919ajb"], ["https://tec.openplanner.team/stops/H1fr112a", "https://tec.openplanner.team/stops/H1fr112b"], ["https://tec.openplanner.team/stops/H2fa106a", "https://tec.openplanner.team/stops/H2me113a"], ["https://tec.openplanner.team/stops/Bnivlai1", "https://tec.openplanner.team/stops/Bnivlai2"], ["https://tec.openplanner.team/stops/LBHgile1", "https://tec.openplanner.team/stops/LHbcent2"], ["https://tec.openplanner.team/stops/LMAcite1", "https://tec.openplanner.team/stops/LMAcomm2"], ["https://tec.openplanner.team/stops/LBWviad2", "https://tec.openplanner.team/stops/LMgbern1"], ["https://tec.openplanner.team/stops/LHcgare2", "https://tec.openplanner.team/stops/LSZcock2"], ["https://tec.openplanner.team/stops/Cjualed1", "https://tec.openplanner.team/stops/Cjucomb2"], ["https://tec.openplanner.team/stops/Cmlours1", "https://tec.openplanner.team/stops/Cmlours2"], ["https://tec.openplanner.team/stops/LVNroua2", "https://tec.openplanner.team/stops/LWzeg--*"], ["https://tec.openplanner.team/stops/LaMschw2", "https://tec.openplanner.team/stops/LvAschw1"], ["https://tec.openplanner.team/stops/Cbwdoua1", "https://tec.openplanner.team/stops/Cbwdoua2"], ["https://tec.openplanner.team/stops/X696aia", "https://tec.openplanner.team/stops/X696aja"], ["https://tec.openplanner.team/stops/N150acb", "https://tec.openplanner.team/stops/N150ada"], ["https://tec.openplanner.team/stops/N221ada", "https://tec.openplanner.team/stops/N222aba"], ["https://tec.openplanner.team/stops/Cchfaub2", "https://tec.openplanner.team/stops/Cchvil22"], ["https://tec.openplanner.team/stops/N351akd", "https://tec.openplanner.team/stops/N351asb"], ["https://tec.openplanner.team/stops/LTiec--2", "https://tec.openplanner.team/stops/LTieg--2"], ["https://tec.openplanner.team/stops/Lbocruc3", "https://tec.openplanner.team/stops/Lbopote1"], ["https://tec.openplanner.team/stops/X982bma", "https://tec.openplanner.team/stops/X986aha"], ["https://tec.openplanner.team/stops/X548abb", "https://tec.openplanner.team/stops/X548acb"], ["https://tec.openplanner.team/stops/Ladstat1", "https://tec.openplanner.team/stops/Ladstat2"], ["https://tec.openplanner.team/stops/Bettgar1", "https://tec.openplanner.team/stops/Bixlaca1"], ["https://tec.openplanner.team/stops/X662aca", "https://tec.openplanner.team/stops/X662aea"], ["https://tec.openplanner.team/stops/Bwavgar2", "https://tec.openplanner.team/stops/Bwavgar4"], ["https://tec.openplanner.team/stops/Llgcrev2", "https://tec.openplanner.team/stops/Llghong2"], ["https://tec.openplanner.team/stops/LEN183-1", "https://tec.openplanner.team/stops/LSkoran1"], ["https://tec.openplanner.team/stops/N104aea", "https://tec.openplanner.team/stops/N104afb"], ["https://tec.openplanner.team/stops/X898aeb", "https://tec.openplanner.team/stops/X898afb"], ["https://tec.openplanner.team/stops/LQacabi2", "https://tec.openplanner.team/stops/LQafond2"], ["https://tec.openplanner.team/stops/H1al106a", "https://tec.openplanner.team/stops/H1al108b"], ["https://tec.openplanner.team/stops/Crccamp2", "https://tec.openplanner.team/stops/Crcrgar2"], ["https://tec.openplanner.team/stops/X948bba", "https://tec.openplanner.team/stops/X948bbb"], ["https://tec.openplanner.team/stops/Cjuhden1", "https://tec.openplanner.team/stops/Clomart1"], ["https://tec.openplanner.team/stops/H3bi100a", "https://tec.openplanner.team/stops/H3bi106a"], ["https://tec.openplanner.team/stops/Bpiepla1", "https://tec.openplanner.team/stops/Bpiepla2"], ["https://tec.openplanner.team/stops/H5el100a", "https://tec.openplanner.team/stops/H5fl103a"], ["https://tec.openplanner.team/stops/LWZbeem1", "https://tec.openplanner.team/stops/X261aaa"], ["https://tec.openplanner.team/stops/Lrclant2", "https://tec.openplanner.team/stops/Lrclant3"], ["https://tec.openplanner.team/stops/X941acc", "https://tec.openplanner.team/stops/X941acd"], ["https://tec.openplanner.team/stops/LAUbour1", "https://tec.openplanner.team/stops/LAUbour3"], ["https://tec.openplanner.team/stops/Btubga03", "https://tec.openplanner.team/stops/Btubga05"], ["https://tec.openplanner.team/stops/Cml5ave2", "https://tec.openplanner.team/stops/Cnachcu2"], ["https://tec.openplanner.team/stops/N506bta", "https://tec.openplanner.team/stops/N506bxb"], ["https://tec.openplanner.team/stops/N501lja", "https://tec.openplanner.team/stops/N501ljb"], ["https://tec.openplanner.team/stops/Bgliron1", "https://tec.openplanner.team/stops/Bjcljau2"], ["https://tec.openplanner.team/stops/N155aab", "https://tec.openplanner.team/stops/N155agb"], ["https://tec.openplanner.team/stops/X824aea", "https://tec.openplanner.team/stops/X824afb"], ["https://tec.openplanner.team/stops/LkEkric2", "https://tec.openplanner.team/stops/LkEneus1"], ["https://tec.openplanner.team/stops/LHrchat1", "https://tec.openplanner.team/stops/LHrrard1"], ["https://tec.openplanner.team/stops/X601cia", "https://tec.openplanner.team/stops/X662aia"], ["https://tec.openplanner.team/stops/Bhalark2", "https://tec.openplanner.team/stops/Bhalpar3"], ["https://tec.openplanner.team/stops/Buccham2", "https://tec.openplanner.team/stops/Buccrac2"], ["https://tec.openplanner.team/stops/H2bh114b", "https://tec.openplanner.team/stops/H2bh117a"], ["https://tec.openplanner.team/stops/Lfhsoux2", "https://tec.openplanner.team/stops/Lfhvoye2"], ["https://tec.openplanner.team/stops/LGrfont2", "https://tec.openplanner.team/stops/LLGramk3"], ["https://tec.openplanner.team/stops/LAUbirv2", "https://tec.openplanner.team/stops/LHMaube1"], ["https://tec.openplanner.team/stops/LHTmoul2", "https://tec.openplanner.team/stops/LOUbleu1"], ["https://tec.openplanner.team/stops/H1fl134b", "https://tec.openplanner.team/stops/H1fl142a"], ["https://tec.openplanner.team/stops/H2ch104a", "https://tec.openplanner.team/stops/H2ch104b"], ["https://tec.openplanner.team/stops/LbUkrin2", "https://tec.openplanner.team/stops/LlSzoll1"], ["https://tec.openplanner.team/stops/LTheg--1", "https://tec.openplanner.team/stops/LThelse1"], ["https://tec.openplanner.team/stops/LOehart2", "https://tec.openplanner.team/stops/LOesour2"], ["https://tec.openplanner.team/stops/N132aba", "https://tec.openplanner.team/stops/N132aca"], ["https://tec.openplanner.team/stops/LSpogne1", "https://tec.openplanner.team/stops/LSpvanr2"], ["https://tec.openplanner.team/stops/H3lr120b", "https://tec.openplanner.team/stops/H3lr132a"], ["https://tec.openplanner.team/stops/Lhracec1", "https://tec.openplanner.team/stops/Lhrespe1"], ["https://tec.openplanner.team/stops/N170afa", "https://tec.openplanner.team/stops/N170afb"], ["https://tec.openplanner.team/stops/Bmaregl1", "https://tec.openplanner.team/stops/Bmaregl2"], ["https://tec.openplanner.team/stops/X359aac", "https://tec.openplanner.team/stops/X359aad"], ["https://tec.openplanner.team/stops/H4mo159b", "https://tec.openplanner.team/stops/H4mo192a"], ["https://tec.openplanner.team/stops/Lpegiet2", "https://tec.openplanner.team/stops/Lpevove2"], ["https://tec.openplanner.team/stops/N135bdb", "https://tec.openplanner.team/stops/N135beb"], ["https://tec.openplanner.team/stops/LLrquar1", "https://tec.openplanner.team/stops/LTHbelv1"], ["https://tec.openplanner.team/stops/Lstamph1", "https://tec.openplanner.team/stops/Lstauna2"], ["https://tec.openplanner.team/stops/N117arb", "https://tec.openplanner.team/stops/N117aya"], ["https://tec.openplanner.team/stops/LSdbvue1", "https://tec.openplanner.team/stops/LSdbvue2"], ["https://tec.openplanner.team/stops/N501ebb", "https://tec.openplanner.team/stops/N501ebz"], ["https://tec.openplanner.team/stops/X982azb", "https://tec.openplanner.team/stops/X982bba"], ["https://tec.openplanner.team/stops/LSpfond2", "https://tec.openplanner.team/stops/LSpunio2"], ["https://tec.openplanner.team/stops/Lvelobe1", "https://tec.openplanner.team/stops/Lvepire1"], ["https://tec.openplanner.team/stops/LSemc--1", "https://tec.openplanner.team/stops/LSemc--2"], ["https://tec.openplanner.team/stops/Chhlori2", "https://tec.openplanner.team/stops/Cjxvalh2"], ["https://tec.openplanner.team/stops/X640aia", "https://tec.openplanner.team/stops/X640aib"], ["https://tec.openplanner.team/stops/X747ala", "https://tec.openplanner.team/stops/X747alb"], ["https://tec.openplanner.team/stops/Cmmphai1", "https://tec.openplanner.team/stops/Cmmphai2"], ["https://tec.openplanner.team/stops/N538aab", "https://tec.openplanner.team/stops/N538ada"], ["https://tec.openplanner.team/stops/Lhragri1", "https://tec.openplanner.team/stops/Lvtpata1"], ["https://tec.openplanner.team/stops/LTicime1", "https://tec.openplanner.team/stops/LTigera2"], ["https://tec.openplanner.team/stops/Bniv4co2", "https://tec.openplanner.team/stops/Bnivcma2"], ["https://tec.openplanner.team/stops/N352aeb", "https://tec.openplanner.team/stops/N352afa"], ["https://tec.openplanner.team/stops/H4do103a", "https://tec.openplanner.team/stops/H4mo195b"], ["https://tec.openplanner.team/stops/Lghalli2", "https://tec.openplanner.team/stops/Lghremy2"], ["https://tec.openplanner.team/stops/Llgnico1", "https://tec.openplanner.team/stops/Llgnico2"], ["https://tec.openplanner.team/stops/LDOordi2", "https://tec.openplanner.team/stops/LGOcana1"], ["https://tec.openplanner.team/stops/Bwatpas2", "https://tec.openplanner.team/stops/Bwatrsg1"], ["https://tec.openplanner.team/stops/N501msa", "https://tec.openplanner.team/stops/N501mtc"], ["https://tec.openplanner.team/stops/LsVrodt1", "https://tec.openplanner.team/stops/LsVrodt2"], ["https://tec.openplanner.team/stops/X601bda", "https://tec.openplanner.team/stops/X601bia"], ["https://tec.openplanner.team/stops/H5at109b", "https://tec.openplanner.team/stops/H5at132b"], ["https://tec.openplanner.team/stops/N513ada", "https://tec.openplanner.team/stops/N513bbd"], ["https://tec.openplanner.team/stops/X721aaa", "https://tec.openplanner.team/stops/X721abb"], ["https://tec.openplanner.team/stops/N507aob", "https://tec.openplanner.team/stops/N507aqa"], ["https://tec.openplanner.team/stops/H1ms921a", "https://tec.openplanner.team/stops/H1ms923a"], ["https://tec.openplanner.team/stops/N308bcb", "https://tec.openplanner.team/stops/N308bib"], ["https://tec.openplanner.team/stops/X342ahb", "https://tec.openplanner.team/stops/X346abb"], ["https://tec.openplanner.team/stops/H4ty313b", "https://tec.openplanner.team/stops/H4ty320b"], ["https://tec.openplanner.team/stops/H1gr119a", "https://tec.openplanner.team/stops/H1gr122a"], ["https://tec.openplanner.team/stops/H1bg110a", "https://tec.openplanner.team/stops/H1hy125a"], ["https://tec.openplanner.team/stops/LCUmars2", "https://tec.openplanner.team/stops/LCUthie1"], ["https://tec.openplanner.team/stops/X744aea", "https://tec.openplanner.team/stops/X746ahb"], ["https://tec.openplanner.team/stops/LHUvege1", "https://tec.openplanner.team/stops/NL76alb"], ["https://tec.openplanner.team/stops/X982aac", "https://tec.openplanner.team/stops/X982bya"], ["https://tec.openplanner.team/stops/LBlplac2", "https://tec.openplanner.team/stops/LSEec--2"], ["https://tec.openplanner.team/stops/Bgzddub1", "https://tec.openplanner.team/stops/Bgzdpco2"], ["https://tec.openplanner.team/stops/LSZarze3", "https://tec.openplanner.team/stops/LSZptwa2"], ["https://tec.openplanner.team/stops/LFOcomb4", "https://tec.openplanner.team/stops/LKmmelo2"], ["https://tec.openplanner.team/stops/X602aha", "https://tec.openplanner.team/stops/X602ahb"], ["https://tec.openplanner.team/stops/Bbchndb1", "https://tec.openplanner.team/stops/Bbchpil1"], ["https://tec.openplanner.team/stops/LOltill1", "https://tec.openplanner.team/stops/LOmecol2"], ["https://tec.openplanner.team/stops/LRmsmvo3", "https://tec.openplanner.team/stops/LRmsmvo4"], ["https://tec.openplanner.team/stops/H1wa157a", "https://tec.openplanner.team/stops/H1wa162b"], ["https://tec.openplanner.team/stops/H5rx120b", "https://tec.openplanner.team/stops/H5rx137b"], ["https://tec.openplanner.team/stops/Clvlove1", "https://tec.openplanner.team/stops/Clvndam1"], ["https://tec.openplanner.team/stops/H2ll177b", "https://tec.openplanner.team/stops/H2ll188b"], ["https://tec.openplanner.team/stops/Llgbuis1", "https://tec.openplanner.team/stops/Lsccime2"], ["https://tec.openplanner.team/stops/Llgcham7", "https://tec.openplanner.team/stops/Llgcham8"], ["https://tec.openplanner.team/stops/Lanfont1", "https://tec.openplanner.team/stops/Lanlona1"], ["https://tec.openplanner.team/stops/N223aab", "https://tec.openplanner.team/stops/NL35aga"], ["https://tec.openplanner.team/stops/Cwfdupo1", "https://tec.openplanner.team/stops/Cwfplac1"], ["https://tec.openplanner.team/stops/LrAdrie3", "https://tec.openplanner.team/stops/LrAtitf2"], ["https://tec.openplanner.team/stops/Bquecar2", "https://tec.openplanner.team/stops/Bquereb2"], ["https://tec.openplanner.team/stops/H1ho123a", "https://tec.openplanner.team/stops/H1ho140b"], ["https://tec.openplanner.team/stops/LHmferm1", "https://tec.openplanner.team/stops/LLbrecu1"], ["https://tec.openplanner.team/stops/LLxcana1", "https://tec.openplanner.team/stops/LLxcana2"], ["https://tec.openplanner.team/stops/LSoboul1", "https://tec.openplanner.team/stops/LSomonu1"], ["https://tec.openplanner.team/stops/Cwgtill1", "https://tec.openplanner.team/stops/Cwgtill2"], ["https://tec.openplanner.team/stops/Cbfpoti1", "https://tec.openplanner.team/stops/NC11aib"], ["https://tec.openplanner.team/stops/H4mb203a", "https://tec.openplanner.team/stops/H4mb203b"], ["https://tec.openplanner.team/stops/X616aaa", "https://tec.openplanner.team/stops/X617aea"], ["https://tec.openplanner.team/stops/N103adb", "https://tec.openplanner.team/stops/N103aha"], ["https://tec.openplanner.team/stops/H4to131b", "https://tec.openplanner.team/stops/H4to139a"], ["https://tec.openplanner.team/stops/N244ana", "https://tec.openplanner.team/stops/N244aob"], ["https://tec.openplanner.team/stops/Cnaha561", "https://tec.openplanner.team/stops/Cnalava2"], ["https://tec.openplanner.team/stops/Lhrlico3", "https://tec.openplanner.team/stops/Lsweg--2"], ["https://tec.openplanner.team/stops/H1bx105a", "https://tec.openplanner.team/stops/H1qv113a"], ["https://tec.openplanner.team/stops/Clbhvil1", "https://tec.openplanner.team/stops/Clbptno3"], ["https://tec.openplanner.team/stops/H2re163b", "https://tec.openplanner.team/stops/H2re174b"], ["https://tec.openplanner.team/stops/LFochap1", "https://tec.openplanner.team/stops/LJAdeho2"], ["https://tec.openplanner.team/stops/LSIcour2", "https://tec.openplanner.team/stops/LSIters2"], ["https://tec.openplanner.team/stops/H4mv187b", "https://tec.openplanner.team/stops/H4mv189c"], ["https://tec.openplanner.team/stops/H2pe158b", "https://tec.openplanner.team/stops/H2re165a"], ["https://tec.openplanner.team/stops/Ctrleju1", "https://tec.openplanner.team/stops/Ctrleju2"], ["https://tec.openplanner.team/stops/H4bu109a", "https://tec.openplanner.team/stops/H4ms144b"], ["https://tec.openplanner.team/stops/LHEchar2", "https://tec.openplanner.team/stops/LHEcoll1"], ["https://tec.openplanner.team/stops/LESchac1", "https://tec.openplanner.team/stops/LPOeg--1"], ["https://tec.openplanner.team/stops/LaNdorf2", "https://tec.openplanner.team/stops/LaNmuhl2"], ["https://tec.openplanner.team/stops/N543aab", "https://tec.openplanner.team/stops/N543bxb"], ["https://tec.openplanner.team/stops/H4ka182b", "https://tec.openplanner.team/stops/H4ka190b"], ["https://tec.openplanner.team/stops/N520acb", "https://tec.openplanner.team/stops/N520ajb"], ["https://tec.openplanner.team/stops/H4by115d", "https://tec.openplanner.team/stops/H4tu171a"], ["https://tec.openplanner.team/stops/LhSfrep1", "https://tec.openplanner.team/stops/LhSfrep2"], ["https://tec.openplanner.team/stops/LFRfagn2", "https://tec.openplanner.team/stops/LSxeg--1"], ["https://tec.openplanner.team/stops/Bobacou1", "https://tec.openplanner.team/stops/Cobhaut2"], ["https://tec.openplanner.team/stops/H4co108a", "https://tec.openplanner.team/stops/H4co133a"], ["https://tec.openplanner.team/stops/LCRvert1", "https://tec.openplanner.team/stops/LCRvert2"], ["https://tec.openplanner.team/stops/LFAec--2", "https://tec.openplanner.team/stops/LFAtomb1"], ["https://tec.openplanner.team/stops/NC11aib", "https://tec.openplanner.team/stops/NC11ajb"], ["https://tec.openplanner.team/stops/LLocruc1", "https://tec.openplanner.team/stops/LLocruc2"], ["https://tec.openplanner.team/stops/H1je213b", "https://tec.openplanner.team/stops/H1je216b"], ["https://tec.openplanner.team/stops/Lhuderu2", "https://tec.openplanner.team/stops/Lhuleke2"], ["https://tec.openplanner.team/stops/Cgxalli1", "https://tec.openplanner.team/stops/Cgxprad1"], ["https://tec.openplanner.team/stops/Blascim2", "https://tec.openplanner.team/stops/Bohnr732"], ["https://tec.openplanner.team/stops/Bbeubos1", "https://tec.openplanner.team/stops/Bbeubos2"], ["https://tec.openplanner.team/stops/N228aaa", "https://tec.openplanner.team/stops/N228abb"], ["https://tec.openplanner.team/stops/N166acb", "https://tec.openplanner.team/stops/N166aeb"], ["https://tec.openplanner.team/stops/X907aeb", "https://tec.openplanner.team/stops/X908ara"], ["https://tec.openplanner.team/stops/H1ro136b", "https://tec.openplanner.team/stops/H1ro140b"], ["https://tec.openplanner.team/stops/Bstecou2", "https://tec.openplanner.team/stops/Bstetre2"], ["https://tec.openplanner.team/stops/X601bjb", "https://tec.openplanner.team/stops/X601cta"], ["https://tec.openplanner.team/stops/H1bu141a", "https://tec.openplanner.team/stops/H1bu141b"], ["https://tec.openplanner.team/stops/LGLc12-3", "https://tec.openplanner.team/stops/LGLlaur1"], ["https://tec.openplanner.team/stops/LVIpneu1", "https://tec.openplanner.team/stops/LVIsouv1"], ["https://tec.openplanner.team/stops/X629aba", "https://tec.openplanner.team/stops/X636ana"], ["https://tec.openplanner.team/stops/LPcforg2", "https://tec.openplanner.team/stops/LPclaro2"], ["https://tec.openplanner.team/stops/Lrcvill1", "https://tec.openplanner.team/stops/Lrcvill2"], ["https://tec.openplanner.team/stops/H4bo120a", "https://tec.openplanner.team/stops/H4bo120b"], ["https://tec.openplanner.team/stops/N383ada", "https://tec.openplanner.team/stops/N383afa"], ["https://tec.openplanner.team/stops/Cfaecwa1", "https://tec.openplanner.team/stops/Cflsabl2"], ["https://tec.openplanner.team/stops/Bbonegl2", "https://tec.openplanner.team/stops/Bchgvil1"], ["https://tec.openplanner.team/stops/H4ty281a", "https://tec.openplanner.team/stops/H4ty339a"], ["https://tec.openplanner.team/stops/Bnivite2", "https://tec.openplanner.team/stops/Bnivspi2"], ["https://tec.openplanner.team/stops/X728aaa", "https://tec.openplanner.team/stops/X728adb"], ["https://tec.openplanner.team/stops/H3bi102b", "https://tec.openplanner.team/stops/H3bi113b"], ["https://tec.openplanner.team/stops/Lligara1", "https://tec.openplanner.team/stops/Llithon1"], ["https://tec.openplanner.team/stops/Bwancal2", "https://tec.openplanner.team/stops/NL37aja"], ["https://tec.openplanner.team/stops/N501chc", "https://tec.openplanner.team/stops/N501cja"], ["https://tec.openplanner.team/stops/LPLarbo2", "https://tec.openplanner.team/stops/LPLaube2"], ["https://tec.openplanner.team/stops/Cflathe2", "https://tec.openplanner.team/stops/NC12adb"], ["https://tec.openplanner.team/stops/X548abb", "https://tec.openplanner.team/stops/X784aea"], ["https://tec.openplanner.team/stops/X721afa", "https://tec.openplanner.team/stops/X721aka"], ["https://tec.openplanner.team/stops/Bsgibla2", "https://tec.openplanner.team/stops/Bsgipha1"], ["https://tec.openplanner.team/stops/LFLgara1", "https://tec.openplanner.team/stops/LFLgara2"], ["https://tec.openplanner.team/stops/H4ty300a", "https://tec.openplanner.team/stops/H4ty300b"], ["https://tec.openplanner.team/stops/X908ala", "https://tec.openplanner.team/stops/X908ama"], ["https://tec.openplanner.team/stops/Cbuplac3", "https://tec.openplanner.team/stops/Cfnegli2"], ["https://tec.openplanner.team/stops/Bjauvch1", "https://tec.openplanner.team/stops/Bjauvch2"], ["https://tec.openplanner.team/stops/LHNhv--1", "https://tec.openplanner.team/stops/LHNhv--2"], ["https://tec.openplanner.team/stops/Cradado2", "https://tec.openplanner.team/stops/Craferr2"], ["https://tec.openplanner.team/stops/N542aba", "https://tec.openplanner.team/stops/N542abb"], ["https://tec.openplanner.team/stops/Bwspcar1", "https://tec.openplanner.team/stops/Bwspjon1"], ["https://tec.openplanner.team/stops/LAYharz2", "https://tec.openplanner.team/stops/LHrfang1"], ["https://tec.openplanner.team/stops/X361afa", "https://tec.openplanner.team/stops/X364ada"], ["https://tec.openplanner.team/stops/Ljubois1", "https://tec.openplanner.team/stops/Ljujaur2"], ["https://tec.openplanner.team/stops/LFTcroi2", "https://tec.openplanner.team/stops/LFTcroi3"], ["https://tec.openplanner.team/stops/Bmanfbg1", "https://tec.openplanner.team/stops/H2mg144b"], ["https://tec.openplanner.team/stops/LeUnisp1", "https://tec.openplanner.team/stops/LkTsch%C3%B62"], ["https://tec.openplanner.team/stops/N138aha", "https://tec.openplanner.team/stops/N426afa"], ["https://tec.openplanner.team/stops/X775akb", "https://tec.openplanner.team/stops/X775ama"], ["https://tec.openplanner.team/stops/X723aib", "https://tec.openplanner.team/stops/X723ajb"], ["https://tec.openplanner.team/stops/X346aba", "https://tec.openplanner.team/stops/X346alb"], ["https://tec.openplanner.team/stops/Berneco2", "https://tec.openplanner.team/stops/Bgemgjo2"], ["https://tec.openplanner.team/stops/LeUhaag2", "https://tec.openplanner.team/stops/LeUkehr4"], ["https://tec.openplanner.team/stops/H4bf107a", "https://tec.openplanner.team/stops/H4bf107b"], ["https://tec.openplanner.team/stops/X614adb", "https://tec.openplanner.team/stops/X614aga"], ["https://tec.openplanner.team/stops/N118aea", "https://tec.openplanner.team/stops/N155aka"], ["https://tec.openplanner.team/stops/N501bjy", "https://tec.openplanner.team/stops/N501bsa"], ["https://tec.openplanner.team/stops/LCUmars2", "https://tec.openplanner.team/stops/NL57ala"], ["https://tec.openplanner.team/stops/Bove4ko2", "https://tec.openplanner.team/stops/Bovetwe2"], ["https://tec.openplanner.team/stops/LSceg--3", "https://tec.openplanner.team/stops/LTNeau-2"], ["https://tec.openplanner.team/stops/Cjugohi4", "https://tec.openplanner.team/stops/Cjumarc1"], ["https://tec.openplanner.team/stops/Bwatfva2", "https://tec.openplanner.team/stops/Bwatjbo1"], ["https://tec.openplanner.team/stops/N526adb", "https://tec.openplanner.team/stops/N527aba"], ["https://tec.openplanner.team/stops/H1hn208a", "https://tec.openplanner.team/stops/H1ms287a"], ["https://tec.openplanner.team/stops/Canecbr2", "https://tec.openplanner.team/stops/Canlemo2"], ["https://tec.openplanner.team/stops/LNHbarr2", "https://tec.openplanner.team/stops/LSecomm1"], ["https://tec.openplanner.team/stops/N343aka", "https://tec.openplanner.team/stops/X345aaa"], ["https://tec.openplanner.team/stops/LHaeg--1", "https://tec.openplanner.team/stops/X982ahb"], ["https://tec.openplanner.team/stops/LhGcasi1", "https://tec.openplanner.team/stops/LkEbbl-*"], ["https://tec.openplanner.team/stops/LPlchpl2", "https://tec.openplanner.team/stops/LPlpomp2"], ["https://tec.openplanner.team/stops/N244afa", "https://tec.openplanner.team/stops/N244afb"], ["https://tec.openplanner.team/stops/LHTbaud1", "https://tec.openplanner.team/stops/LHTbaud2"], ["https://tec.openplanner.team/stops/LlgLEOP1", "https://tec.openplanner.team/stops/LlgLEOP3"], ["https://tec.openplanner.team/stops/LOUchen2", "https://tec.openplanner.team/stops/LOUsorb1"], ["https://tec.openplanner.team/stops/Lsedavy1", "https://tec.openplanner.team/stops/Lsepudd1"], ["https://tec.openplanner.team/stops/X730abb", "https://tec.openplanner.team/stops/X753acb"], ["https://tec.openplanner.team/stops/H1wg125a", "https://tec.openplanner.team/stops/H1wg125b"], ["https://tec.openplanner.team/stops/LrUbrac2", "https://tec.openplanner.team/stops/LrUbrac3"], ["https://tec.openplanner.team/stops/Csedoua1", "https://tec.openplanner.team/stops/Csequew1"], ["https://tec.openplanner.team/stops/Cjudaxi2", "https://tec.openplanner.team/stops/Cjufrat1"], ["https://tec.openplanner.team/stops/Buccbas1", "https://tec.openplanner.team/stops/Buccchu1"], ["https://tec.openplanner.team/stops/H1bu138b", "https://tec.openplanner.team/stops/H1bu142b"], ["https://tec.openplanner.team/stops/LLebibl3", "https://tec.openplanner.team/stops/X547aqb"], ["https://tec.openplanner.team/stops/Ljubonf1", "https://tec.openplanner.team/stops/Ljuroch2"], ["https://tec.openplanner.team/stops/Llgdepo5", "https://tec.openplanner.team/stops/Llgmare1"], ["https://tec.openplanner.team/stops/H4mv196b", "https://tec.openplanner.team/stops/H4oe149a"], ["https://tec.openplanner.team/stops/Canplal1", "https://tec.openplanner.team/stops/Canplal2"], ["https://tec.openplanner.team/stops/N539bga", "https://tec.openplanner.team/stops/N540aja"], ["https://tec.openplanner.team/stops/X713aib", "https://tec.openplanner.team/stops/X714aaa"], ["https://tec.openplanner.team/stops/Cwsegli1", "https://tec.openplanner.team/stops/Cwspavi1"], ["https://tec.openplanner.team/stops/LpEbins2", "https://tec.openplanner.team/stops/LpEzoll*"], ["https://tec.openplanner.team/stops/X398aaa", "https://tec.openplanner.team/stops/X999aub"], ["https://tec.openplanner.team/stops/X613aba", "https://tec.openplanner.team/stops/X613ada"], ["https://tec.openplanner.team/stops/N529afa", "https://tec.openplanner.team/stops/N584aoa"], ["https://tec.openplanner.team/stops/X640aba", "https://tec.openplanner.team/stops/X640aia"], ["https://tec.openplanner.team/stops/Cfbcal1", "https://tec.openplanner.team/stops/Cfcchen1"], ["https://tec.openplanner.team/stops/X768aeb", "https://tec.openplanner.team/stops/X768aga"], ["https://tec.openplanner.team/stops/Bpernov1", "https://tec.openplanner.team/stops/Bperwil1"], ["https://tec.openplanner.team/stops/LGreg--1", "https://tec.openplanner.team/stops/LHDpota3"], ["https://tec.openplanner.team/stops/LAvrout2", "https://tec.openplanner.team/stops/LLtwanz1"], ["https://tec.openplanner.team/stops/LCUjonc2", "https://tec.openplanner.team/stops/LEnvill1"], ["https://tec.openplanner.team/stops/LPLhest2", "https://tec.openplanner.team/stops/LVtchai1"], ["https://tec.openplanner.team/stops/H1sd342a", "https://tec.openplanner.team/stops/H3go100b"], ["https://tec.openplanner.team/stops/LsC216-2", "https://tec.openplanner.team/stops/LsCback2"], ["https://tec.openplanner.team/stops/Cgd4ven2", "https://tec.openplanner.team/stops/Cgdrhau2"], ["https://tec.openplanner.team/stops/LOTjacq2", "https://tec.openplanner.team/stops/LOTsava1"], ["https://tec.openplanner.team/stops/LCPaube2", "https://tec.openplanner.team/stops/LPOchan2"], ["https://tec.openplanner.team/stops/Cmmn1171", "https://tec.openplanner.team/stops/Cmmn1172"], ["https://tec.openplanner.team/stops/N118aza", "https://tec.openplanner.team/stops/N118azb"], ["https://tec.openplanner.team/stops/Bwategb1", "https://tec.openplanner.team/stops/Bwatras2"], ["https://tec.openplanner.team/stops/Bwatdmo1", "https://tec.openplanner.team/stops/Bwategl2"], ["https://tec.openplanner.team/stops/LhPheps1", "https://tec.openplanner.team/stops/LhPprum1"], ["https://tec.openplanner.team/stops/Bglitro2", "https://tec.openplanner.team/stops/Btlbtho2"], ["https://tec.openplanner.team/stops/H1ha188a", "https://tec.openplanner.team/stops/H1ha198a"], ["https://tec.openplanner.team/stops/Cauptsa1", "https://tec.openplanner.team/stops/Cauptsa2"], ["https://tec.openplanner.team/stops/Lhrespe1", "https://tec.openplanner.team/stops/Lhrespe2"], ["https://tec.openplanner.team/stops/H4wi163b", "https://tec.openplanner.team/stops/H4wi175b"], ["https://tec.openplanner.team/stops/H1hn208b", "https://tec.openplanner.team/stops/H1hn365b"], ["https://tec.openplanner.team/stops/N528aha", "https://tec.openplanner.team/stops/N528ahb"], ["https://tec.openplanner.team/stops/X318aba", "https://tec.openplanner.team/stops/X364acb"], ["https://tec.openplanner.team/stops/H1he104b", "https://tec.openplanner.team/stops/H1he106b"], ["https://tec.openplanner.team/stops/Brsrbbo2", "https://tec.openplanner.team/stops/Brsregl4"], ["https://tec.openplanner.team/stops/Cjuecho2", "https://tec.openplanner.team/stops/Cjuhden1"], ["https://tec.openplanner.team/stops/H4ef110a", "https://tec.openplanner.team/stops/H4ef112a"], ["https://tec.openplanner.team/stops/LLOberl2", "https://tec.openplanner.team/stops/LLOchpl2"], ["https://tec.openplanner.team/stops/X669ada", "https://tec.openplanner.team/stops/X669adb"], ["https://tec.openplanner.team/stops/N566aeb", "https://tec.openplanner.team/stops/N566afa"], ["https://tec.openplanner.team/stops/N576aka", "https://tec.openplanner.team/stops/N576alb"], ["https://tec.openplanner.team/stops/X777abb", "https://tec.openplanner.team/stops/X777aca"], ["https://tec.openplanner.team/stops/X922aaa", "https://tec.openplanner.team/stops/X922aca"], ["https://tec.openplanner.team/stops/Lemboul2", "https://tec.openplanner.team/stops/Lemmusc2"], ["https://tec.openplanner.team/stops/H4eg101b", "https://tec.openplanner.team/stops/H4eg102b"], ["https://tec.openplanner.team/stops/Cmocime2", "https://tec.openplanner.team/stops/Cmoscap2"], ["https://tec.openplanner.team/stops/LlOdrei1", "https://tec.openplanner.team/stops/LlOdrei2"], ["https://tec.openplanner.team/stops/LCPlacr1", "https://tec.openplanner.team/stops/LPOchan1"], ["https://tec.openplanner.team/stops/N534byb", "https://tec.openplanner.team/stops/N534cbg"], ["https://tec.openplanner.team/stops/X801asa", "https://tec.openplanner.team/stops/X801baa"], ["https://tec.openplanner.team/stops/LMNcite1", "https://tec.openplanner.team/stops/LMNentr1"], ["https://tec.openplanner.team/stops/H1cu113a", "https://tec.openplanner.team/stops/H1cu125c"], ["https://tec.openplanner.team/stops/Llgbron2", "https://tec.openplanner.team/stops/Llgdart4"], ["https://tec.openplanner.team/stops/LATcorp2", "https://tec.openplanner.team/stops/LHUzoni2"], ["https://tec.openplanner.team/stops/Cgocat2", "https://tec.openplanner.team/stops/Cgosoux2"], ["https://tec.openplanner.team/stops/X634akb", "https://tec.openplanner.team/stops/X636aoa"], ["https://tec.openplanner.team/stops/Bbcodam3", "https://tec.openplanner.team/stops/Bbcopre1"], ["https://tec.openplanner.team/stops/Lhr4ave1", "https://tec.openplanner.team/stops/Lhr4ave2"], ["https://tec.openplanner.team/stops/N351afa", "https://tec.openplanner.team/stops/X351aba"], ["https://tec.openplanner.team/stops/N540alb", "https://tec.openplanner.team/stops/N540apb"], ["https://tec.openplanner.team/stops/X746adb", "https://tec.openplanner.team/stops/X746aeb"], ["https://tec.openplanner.team/stops/Bllnpsc2", "https://tec.openplanner.team/stops/Bllnrod3"], ["https://tec.openplanner.team/stops/LLYtir-1", "https://tec.openplanner.team/stops/LOMcabi2"], ["https://tec.openplanner.team/stops/Bbsibou2", "https://tec.openplanner.team/stops/Bbsivil3"], ["https://tec.openplanner.team/stops/N503aea", "https://tec.openplanner.team/stops/N503aeb"], ["https://tec.openplanner.team/stops/Lmocalv2", "https://tec.openplanner.team/stops/Lmochan1"], ["https://tec.openplanner.team/stops/H1bo104b", "https://tec.openplanner.team/stops/H1bo145b"], ["https://tec.openplanner.team/stops/LGlbour1", "https://tec.openplanner.team/stops/LGlwarf1"], ["https://tec.openplanner.team/stops/LSeaque1", "https://tec.openplanner.team/stops/LSeaque4"], ["https://tec.openplanner.team/stops/LWAlieg1", "https://tec.openplanner.team/stops/LWAlieg2"], ["https://tec.openplanner.team/stops/X725aec", "https://tec.openplanner.team/stops/X725aed"], ["https://tec.openplanner.team/stops/LCvneuv4", "https://tec.openplanner.team/stops/LCvneuv5"], ["https://tec.openplanner.team/stops/X786ada", "https://tec.openplanner.team/stops/X786adb"], ["https://tec.openplanner.team/stops/LClsacr2", "https://tec.openplanner.team/stops/LThnouv2"], ["https://tec.openplanner.team/stops/Bhanmou2", "https://tec.openplanner.team/stops/LHNtonn2"], ["https://tec.openplanner.team/stops/LPT97--1", "https://tec.openplanner.team/stops/LPurech1"], ["https://tec.openplanner.team/stops/LFychpl1", "https://tec.openplanner.team/stops/LFychpl2"], ["https://tec.openplanner.team/stops/LmUkape1", "https://tec.openplanner.team/stops/LmUkape2"], ["https://tec.openplanner.team/stops/LHUec--2", "https://tec.openplanner.team/stops/LHUomni2"], ["https://tec.openplanner.team/stops/Llabrou1", "https://tec.openplanner.team/stops/Llaflot1"], ["https://tec.openplanner.team/stops/N501aqb", "https://tec.openplanner.team/stops/N501mca"], ["https://tec.openplanner.team/stops/H1fl136a", "https://tec.openplanner.team/stops/H1fl137a"], ["https://tec.openplanner.team/stops/LrAneus1", "https://tec.openplanner.team/stops/LrAneus3"], ["https://tec.openplanner.team/stops/H4we134a", "https://tec.openplanner.team/stops/H4we134b"], ["https://tec.openplanner.team/stops/LHAcite1", "https://tec.openplanner.team/stops/LHAprei1"], ["https://tec.openplanner.team/stops/X756acb", "https://tec.openplanner.team/stops/X756aed"], ["https://tec.openplanner.team/stops/LAweg--1", "https://tec.openplanner.team/stops/LAYfoot1"], ["https://tec.openplanner.team/stops/N577aea", "https://tec.openplanner.team/stops/N577aib"], ["https://tec.openplanner.team/stops/LTPpreh1", "https://tec.openplanner.team/stops/LTPwann1"], ["https://tec.openplanner.team/stops/Cmamonu1", "https://tec.openplanner.team/stops/Cmamonu2"], ["https://tec.openplanner.team/stops/LSPecho2", "https://tec.openplanner.team/stops/LWMchpl1"], ["https://tec.openplanner.team/stops/LwAkett2", "https://tec.openplanner.team/stops/LwArabo2"], ["https://tec.openplanner.team/stops/Lflheid2", "https://tec.openplanner.team/stops/Lqbeg--1"], ["https://tec.openplanner.team/stops/Bsmgmar1", "https://tec.openplanner.team/stops/Bsmgsuz1"], ["https://tec.openplanner.team/stops/N313aaa", "https://tec.openplanner.team/stops/N313aab"], ["https://tec.openplanner.team/stops/H4te413a", "https://tec.openplanner.team/stops/H4te413b"], ["https://tec.openplanner.team/stops/LCxhall1", "https://tec.openplanner.team/stops/LCxhall2"], ["https://tec.openplanner.team/stops/Lagjard1", "https://tec.openplanner.team/stops/Lagpera1"], ["https://tec.openplanner.team/stops/Bblague2", "https://tec.openplanner.team/stops/Bblaqsj2"], ["https://tec.openplanner.team/stops/H1hn364a", "https://tec.openplanner.team/stops/H1ms260a"], ["https://tec.openplanner.team/stops/H4ty302a", "https://tec.openplanner.team/stops/H4ty320b"], ["https://tec.openplanner.team/stops/LOcalbe2", "https://tec.openplanner.team/stops/LOcgdro4"], ["https://tec.openplanner.team/stops/Cmechnd1", "https://tec.openplanner.team/stops/Cmehels1"], ["https://tec.openplanner.team/stops/N506bba", "https://tec.openplanner.team/stops/N506bbb"], ["https://tec.openplanner.team/stops/Bsdecdi1", "https://tec.openplanner.team/stops/N574aeb"], ["https://tec.openplanner.team/stops/H1gn152a", "https://tec.openplanner.team/stops/H1mq198a"], ["https://tec.openplanner.team/stops/Lselimi1", "https://tec.openplanner.team/stops/Lselimi2"], ["https://tec.openplanner.team/stops/Bvilvil1", "https://tec.openplanner.team/stops/Bvilvil2"], ["https://tec.openplanner.team/stops/LMEgare1", "https://tec.openplanner.team/stops/LMEwerg2"], ["https://tec.openplanner.team/stops/Bgnpegl4", "https://tec.openplanner.team/stops/Bgnppem1"], ["https://tec.openplanner.team/stops/X607aia", "https://tec.openplanner.team/stops/X607aib"], ["https://tec.openplanner.team/stops/LMNheme1", "https://tec.openplanner.team/stops/LMNheme2"], ["https://tec.openplanner.team/stops/X870ahb", "https://tec.openplanner.team/stops/X870ajb"], ["https://tec.openplanner.team/stops/X824aga", "https://tec.openplanner.team/stops/X824agb"], ["https://tec.openplanner.team/stops/H4mo151b", "https://tec.openplanner.team/stops/H4mo207b"], ["https://tec.openplanner.team/stops/X818aqb", "https://tec.openplanner.team/stops/X818arb"], ["https://tec.openplanner.team/stops/X608aea", "https://tec.openplanner.team/stops/X608ayb"], ["https://tec.openplanner.team/stops/LSzetoi1", "https://tec.openplanner.team/stops/LSznoel1"], ["https://tec.openplanner.team/stops/Cvpbifu1", "https://tec.openplanner.team/stops/Cvpbifu2"], ["https://tec.openplanner.team/stops/X696aba", "https://tec.openplanner.team/stops/X696ada"], ["https://tec.openplanner.team/stops/H4ty308e", "https://tec.openplanner.team/stops/H4ty332c"], ["https://tec.openplanner.team/stops/X921aob", "https://tec.openplanner.team/stops/X982bvb"], ["https://tec.openplanner.team/stops/X725aeb", "https://tec.openplanner.team/stops/X725apb"], ["https://tec.openplanner.team/stops/N543aua", "https://tec.openplanner.team/stops/N543axa"], ["https://tec.openplanner.team/stops/H2bh112a", "https://tec.openplanner.team/stops/H2bh112b"], ["https://tec.openplanner.team/stops/LTHjevo2", "https://tec.openplanner.team/stops/LTHperr3"], ["https://tec.openplanner.team/stops/Cvsegli1", "https://tec.openplanner.team/stops/N530afa"], ["https://tec.openplanner.team/stops/LEN101-1", "https://tec.openplanner.team/stops/LENchem2"], ["https://tec.openplanner.team/stops/H2hg266a", "https://tec.openplanner.team/stops/H2hg266b"], ["https://tec.openplanner.team/stops/LWRtroi1", "https://tec.openplanner.team/stops/LWRtroi2"], ["https://tec.openplanner.team/stops/LTHchiv1", "https://tec.openplanner.team/stops/LTHchiv2"], ["https://tec.openplanner.team/stops/Bbgelre1", "https://tec.openplanner.team/stops/Bbgelre2"], ["https://tec.openplanner.team/stops/LBIrout1", "https://tec.openplanner.team/stops/LBIrout2"], ["https://tec.openplanner.team/stops/LVSbleu2", "https://tec.openplanner.team/stops/LVSeg--2"], ["https://tec.openplanner.team/stops/Llggram2", "https://tec.openplanner.team/stops/Llgrome1"], ["https://tec.openplanner.team/stops/X782aob", "https://tec.openplanner.team/stops/X783acc"], ["https://tec.openplanner.team/stops/Bhalath1", "https://tec.openplanner.team/stops/Bhalpar2"], ["https://tec.openplanner.team/stops/Bolgrsa2", "https://tec.openplanner.team/stops/Bolgsha2"], ["https://tec.openplanner.team/stops/H4ga154b", "https://tec.openplanner.team/stops/H4ru238a"], ["https://tec.openplanner.team/stops/Bpergar2", "https://tec.openplanner.team/stops/Bpergar3"], ["https://tec.openplanner.team/stops/X782aga", "https://tec.openplanner.team/stops/X782aha"], ["https://tec.openplanner.team/stops/Csychap3", "https://tec.openplanner.team/stops/Csyjumo1"], ["https://tec.openplanner.team/stops/X664amc", "https://tec.openplanner.team/stops/X664arb"], ["https://tec.openplanner.team/stops/X652ahb", "https://tec.openplanner.team/stops/X652ajb"], ["https://tec.openplanner.team/stops/LLbbons1", "https://tec.openplanner.team/stops/LPtchpl1"], ["https://tec.openplanner.team/stops/Lfhweri2", "https://tec.openplanner.team/stops/Lpomart2"], ["https://tec.openplanner.team/stops/Ccoacar1", "https://tec.openplanner.team/stops/Ccotemp2"], ["https://tec.openplanner.team/stops/Bgzddge1", "https://tec.openplanner.team/stops/Bgzddur2"], ["https://tec.openplanner.team/stops/X641apa", "https://tec.openplanner.team/stops/X641apc"], ["https://tec.openplanner.team/stops/N260aba", "https://tec.openplanner.team/stops/N260abc"], ["https://tec.openplanner.team/stops/H1fl133a", "https://tec.openplanner.team/stops/H1fl133c"], ["https://tec.openplanner.team/stops/LTaabba1", "https://tec.openplanner.team/stops/LVnvieg1"], ["https://tec.openplanner.team/stops/Bnilcha2", "https://tec.openplanner.team/stops/Bnilpje1"], ["https://tec.openplanner.team/stops/Btstbes2", "https://tec.openplanner.team/stops/Btstcar1"], ["https://tec.openplanner.team/stops/X640akb", "https://tec.openplanner.team/stops/X640ala"], ["https://tec.openplanner.team/stops/N305aaa", "https://tec.openplanner.team/stops/N331aja"], ["https://tec.openplanner.team/stops/N509afb", "https://tec.openplanner.team/stops/N509agb"], ["https://tec.openplanner.team/stops/Llgandr2", "https://tec.openplanner.team/stops/Llgavro1"], ["https://tec.openplanner.team/stops/Bvirduj1", "https://tec.openplanner.team/stops/Bvirhsa2"], ["https://tec.openplanner.team/stops/N550aga", "https://tec.openplanner.team/stops/N550ama"], ["https://tec.openplanner.team/stops/N501hwa", "https://tec.openplanner.team/stops/N501iqa"], ["https://tec.openplanner.team/stops/H1hy127b", "https://tec.openplanner.team/stops/H1hy130b"], ["https://tec.openplanner.team/stops/X995aab", "https://tec.openplanner.team/stops/X995acb"], ["https://tec.openplanner.team/stops/H1gh173a", "https://tec.openplanner.team/stops/H1ms297a"], ["https://tec.openplanner.team/stops/NL76abb", "https://tec.openplanner.team/stops/NL76afa"], ["https://tec.openplanner.team/stops/LJSeg--2", "https://tec.openplanner.team/stops/Lpechin2"], ["https://tec.openplanner.team/stops/NR21aba", "https://tec.openplanner.team/stops/NR21abd"], ["https://tec.openplanner.team/stops/LCdchod1", "https://tec.openplanner.team/stops/LMAbell1"], ["https://tec.openplanner.team/stops/LwAkape1", "https://tec.openplanner.team/stops/LwAprei1"], ["https://tec.openplanner.team/stops/LHMsipp2", "https://tec.openplanner.team/stops/LMNcite2"], ["https://tec.openplanner.team/stops/Cfmcoro1", "https://tec.openplanner.team/stops/Cfmnoci2"], ["https://tec.openplanner.team/stops/X774agb", "https://tec.openplanner.team/stops/X775aea"], ["https://tec.openplanner.team/stops/LeUath%C3%A41", "https://tec.openplanner.team/stops/LeUrath1"], ["https://tec.openplanner.team/stops/X663aoa", "https://tec.openplanner.team/stops/X663awa"], ["https://tec.openplanner.team/stops/LHAarge2", "https://tec.openplanner.team/stops/LHTlieg1"], ["https://tec.openplanner.team/stops/Blhueca1", "https://tec.openplanner.team/stops/Blhumpo1"], ["https://tec.openplanner.team/stops/LaTcolo1", "https://tec.openplanner.team/stops/LsEdorf1"], ["https://tec.openplanner.team/stops/Bwatbno1", "https://tec.openplanner.team/stops/Bwatgib1"], ["https://tec.openplanner.team/stops/H1ms264b", "https://tec.openplanner.team/stops/H1ms269b"], ["https://tec.openplanner.team/stops/X870aab", "https://tec.openplanner.team/stops/X870aba"], ["https://tec.openplanner.team/stops/X638aea", "https://tec.openplanner.team/stops/X638aeb"], ["https://tec.openplanner.team/stops/X812acb", "https://tec.openplanner.team/stops/X812aya"], ["https://tec.openplanner.team/stops/N121agb", "https://tec.openplanner.team/stops/N121ahb"], ["https://tec.openplanner.team/stops/X771aba", "https://tec.openplanner.team/stops/X771acb"], ["https://tec.openplanner.team/stops/Blhufro1", "https://tec.openplanner.team/stops/Blhufro2"], ["https://tec.openplanner.team/stops/N505aea", "https://tec.openplanner.team/stops/N505agb"], ["https://tec.openplanner.team/stops/Bvilcoq1", "https://tec.openplanner.team/stops/Bvilvil4"], ["https://tec.openplanner.team/stops/LHehacc2", "https://tec.openplanner.team/stops/LHThall4"], ["https://tec.openplanner.team/stops/N513arb", "https://tec.openplanner.team/stops/N513asb"], ["https://tec.openplanner.team/stops/Bnivjli2", "https://tec.openplanner.team/stops/Bnivrsh2"], ["https://tec.openplanner.team/stops/Llgbavi0", "https://tec.openplanner.team/stops/Llgbavi4"], ["https://tec.openplanner.team/stops/Cnahahe2", "https://tec.openplanner.team/stops/Cnawari1"], ["https://tec.openplanner.team/stops/X897abb", "https://tec.openplanner.team/stops/X897ana"], ["https://tec.openplanner.team/stops/H1em102a", "https://tec.openplanner.team/stops/H1em110a"], ["https://tec.openplanner.team/stops/LBImili2", "https://tec.openplanner.team/stops/LBIrout1"], ["https://tec.openplanner.team/stops/H1bo103a", "https://tec.openplanner.team/stops/H1sg142a"], ["https://tec.openplanner.team/stops/N118aab", "https://tec.openplanner.team/stops/N118abb"], ["https://tec.openplanner.team/stops/Cgxcite2", "https://tec.openplanner.team/stops/Cgxprad1"], ["https://tec.openplanner.team/stops/N424aab", "https://tec.openplanner.team/stops/N424abb"], ["https://tec.openplanner.team/stops/X805acb", "https://tec.openplanner.team/stops/X805aeb"], ["https://tec.openplanner.team/stops/H4an104a", "https://tec.openplanner.team/stops/H4an110b"], ["https://tec.openplanner.team/stops/H4mo162a", "https://tec.openplanner.team/stops/H4mo179a"], ["https://tec.openplanner.team/stops/Lagviad1", "https://tec.openplanner.team/stops/Lagviad2"], ["https://tec.openplanner.team/stops/LAWmc--1", "https://tec.openplanner.team/stops/LAWmc--4"], ["https://tec.openplanner.team/stops/X619ahb", "https://tec.openplanner.team/stops/X619aib"], ["https://tec.openplanner.team/stops/N538asa", "https://tec.openplanner.team/stops/N538asc"], ["https://tec.openplanner.team/stops/LLteg--1", "https://tec.openplanner.team/stops/LLteg--2"], ["https://tec.openplanner.team/stops/Lflchan2", "https://tec.openplanner.team/stops/Lmabott2"], ["https://tec.openplanner.team/stops/LTRespe2", "https://tec.openplanner.team/stops/LTRpeec1"], ["https://tec.openplanner.team/stops/X725aub", "https://tec.openplanner.team/stops/X725bfa"], ["https://tec.openplanner.team/stops/X901bga", "https://tec.openplanner.team/stops/X901bsa"], ["https://tec.openplanner.team/stops/N202aaa", "https://tec.openplanner.team/stops/N202aea"], ["https://tec.openplanner.team/stops/Cplbbro1", "https://tec.openplanner.team/stops/NC11afa"], ["https://tec.openplanner.team/stops/X614afb", "https://tec.openplanner.team/stops/X614aga"], ["https://tec.openplanner.team/stops/N151aha", "https://tec.openplanner.team/stops/N151aia"], ["https://tec.openplanner.team/stops/X768ala", "https://tec.openplanner.team/stops/X768alc"], ["https://tec.openplanner.team/stops/Llglave2", "https://tec.openplanner.team/stops/Llgwall1"], ["https://tec.openplanner.team/stops/X925ada", "https://tec.openplanner.team/stops/X925aea"], ["https://tec.openplanner.team/stops/Lprmc--2", "https://tec.openplanner.team/stops/Lprmc--3"], ["https://tec.openplanner.team/stops/H1cd112a", "https://tec.openplanner.team/stops/H1cd112b"], ["https://tec.openplanner.team/stops/X604aib", "https://tec.openplanner.team/stops/X604akb"], ["https://tec.openplanner.team/stops/LeMdorf2", "https://tec.openplanner.team/stops/LmFdorf2"], ["https://tec.openplanner.team/stops/Bnivaig2", "https://tec.openplanner.team/stops/Bnivcma2"], ["https://tec.openplanner.team/stops/Cpceclu1", "https://tec.openplanner.team/stops/Cpceclu2"], ["https://tec.openplanner.team/stops/NL37aib", "https://tec.openplanner.team/stops/NL37akb"], ["https://tec.openplanner.team/stops/Cfaetoi2", "https://tec.openplanner.team/stops/Cplcite2"], ["https://tec.openplanner.team/stops/LeYwald1", "https://tec.openplanner.team/stops/LeYwess2"], ["https://tec.openplanner.team/stops/Blhulor1", "https://tec.openplanner.team/stops/Blhuone2"], ["https://tec.openplanner.team/stops/LBLcalv2", "https://tec.openplanner.team/stops/LBLcalv3"], ["https://tec.openplanner.team/stops/X995add", "https://tec.openplanner.team/stops/X995afa"], ["https://tec.openplanner.team/stops/N117aab", "https://tec.openplanner.team/stops/N117bba"], ["https://tec.openplanner.team/stops/Cfobriq2", "https://tec.openplanner.team/stops/Cfogaul1"], ["https://tec.openplanner.team/stops/H4sl154b", "https://tec.openplanner.team/stops/H4sl155a"], ["https://tec.openplanner.team/stops/Blimd672", "https://tec.openplanner.team/stops/Blimmer2"], ["https://tec.openplanner.team/stops/LBIhann2", "https://tec.openplanner.team/stops/LBImili2"], ["https://tec.openplanner.team/stops/N232bca", "https://tec.openplanner.team/stops/N232bua"], ["https://tec.openplanner.team/stops/Bblmpro2", "https://tec.openplanner.team/stops/Bblmwma2"], ["https://tec.openplanner.team/stops/H4ae132d", "https://tec.openplanner.team/stops/H4au100a"], ["https://tec.openplanner.team/stops/Bwatath1", "https://tec.openplanner.team/stops/Bwatath3"], ["https://tec.openplanner.team/stops/LWaatel2", "https://tec.openplanner.team/stops/LWLtamb2"], ["https://tec.openplanner.team/stops/LDppana2", "https://tec.openplanner.team/stops/LTEcamp2"], ["https://tec.openplanner.team/stops/LLVboss1", "https://tec.openplanner.team/stops/X561aea"], ["https://tec.openplanner.team/stops/LHtdros2", "https://tec.openplanner.team/stops/LMRmont2"], ["https://tec.openplanner.team/stops/N501myb", "https://tec.openplanner.team/stops/N527aca"], ["https://tec.openplanner.team/stops/LMAgare*", "https://tec.openplanner.team/stops/LMAptne2"], ["https://tec.openplanner.team/stops/Lch179-2", "https://tec.openplanner.team/stops/Lchsaec2"], ["https://tec.openplanner.team/stops/LHGikea2", "https://tec.openplanner.team/stops/LHGzoni1"], ["https://tec.openplanner.team/stops/Lvccime1", "https://tec.openplanner.team/stops/Lvccime2"], ["https://tec.openplanner.team/stops/H2hl112b", "https://tec.openplanner.team/stops/H2ll179a"], ["https://tec.openplanner.team/stops/H1vb142b", "https://tec.openplanner.team/stops/H1vb147a"], ["https://tec.openplanner.team/stops/Cbfegch1", "https://tec.openplanner.team/stops/NC24aja"], ["https://tec.openplanner.team/stops/H1bu141b", "https://tec.openplanner.team/stops/H2le147a"], ["https://tec.openplanner.team/stops/Bwavnep2", "https://tec.openplanner.team/stops/Bwavpar1"], ["https://tec.openplanner.team/stops/LAmeclu2", "https://tec.openplanner.team/stops/LATcorn1"], ["https://tec.openplanner.team/stops/Lceourt2", "https://tec.openplanner.team/stops/Lemdupo1"], ["https://tec.openplanner.team/stops/H2ma209a", "https://tec.openplanner.team/stops/H3bo103a"], ["https://tec.openplanner.team/stops/LVIjacq1", "https://tec.openplanner.team/stops/LVIjacq2"], ["https://tec.openplanner.team/stops/LkEbruc1", "https://tec.openplanner.team/stops/LkEkric1"], ["https://tec.openplanner.team/stops/LBEfagn1", "https://tec.openplanner.team/stops/LBEfagn2"], ["https://tec.openplanner.team/stops/Cmlchan2", "https://tec.openplanner.team/stops/Cmltemp3"], ["https://tec.openplanner.team/stops/X638aoa", "https://tec.openplanner.team/stops/X638apb"], ["https://tec.openplanner.team/stops/LHGtong1", "https://tec.openplanner.team/stops/LHGtong2"], ["https://tec.openplanner.team/stops/N538ama", "https://tec.openplanner.team/stops/N538arb"], ["https://tec.openplanner.team/stops/Bsomjon1", "https://tec.openplanner.team/stops/Bsomjon2"], ["https://tec.openplanner.team/stops/LBWviad1", "https://tec.openplanner.team/stops/LBWviad2"], ["https://tec.openplanner.team/stops/Lbhfaye1", "https://tec.openplanner.team/stops/Lbhsion1"], ["https://tec.openplanner.team/stops/LJUmate2", "https://tec.openplanner.team/stops/Llaflot2"], ["https://tec.openplanner.team/stops/NL78adb", "https://tec.openplanner.team/stops/NL78aka"], ["https://tec.openplanner.team/stops/Cctrobe1", "https://tec.openplanner.team/stops/Cctvand2"], ["https://tec.openplanner.team/stops/Lghcise2", "https://tec.openplanner.team/stops/Lmocalv2"], ["https://tec.openplanner.team/stops/Bbchm382", "https://tec.openplanner.team/stops/Bhalvla2"], ["https://tec.openplanner.team/stops/LPtrefa1", "https://tec.openplanner.team/stops/LRfcent2"], ["https://tec.openplanner.team/stops/X754aqb", "https://tec.openplanner.team/stops/X754ava"], ["https://tec.openplanner.team/stops/X636afa", "https://tec.openplanner.team/stops/X636baa"], ["https://tec.openplanner.team/stops/Ccychba1", "https://tec.openplanner.team/stops/Cvlgrta2"], ["https://tec.openplanner.team/stops/H4va232a", "https://tec.openplanner.team/stops/H4va234a"], ["https://tec.openplanner.team/stops/N302acb", "https://tec.openplanner.team/stops/N302aea"], ["https://tec.openplanner.team/stops/LBrbern2", "https://tec.openplanner.team/stops/LMisour1"], ["https://tec.openplanner.team/stops/H5ma180b", "https://tec.openplanner.team/stops/H5ma186b"], ["https://tec.openplanner.team/stops/H1hl124a", "https://tec.openplanner.team/stops/H1hl124b"], ["https://tec.openplanner.team/stops/Bmonbor2", "https://tec.openplanner.team/stops/Bmonbri2"], ["https://tec.openplanner.team/stops/X224aha", "https://tec.openplanner.team/stops/X398aha"], ["https://tec.openplanner.team/stops/N531aea", "https://tec.openplanner.team/stops/N531ata"], ["https://tec.openplanner.team/stops/Bmsgbur1", "https://tec.openplanner.team/stops/Bmsgcap1"], ["https://tec.openplanner.team/stops/LrApark1", "https://tec.openplanner.team/stops/LrApark2"], ["https://tec.openplanner.team/stops/Lvecite2", "https://tec.openplanner.team/stops/Lvemahe2"], ["https://tec.openplanner.team/stops/Lroeg--1", "https://tec.openplanner.team/stops/Lromerl1"], ["https://tec.openplanner.team/stops/X608aua", "https://tec.openplanner.team/stops/X608aya"], ["https://tec.openplanner.team/stops/LAWeg--1", "https://tec.openplanner.team/stops/LAWmc--1"], ["https://tec.openplanner.team/stops/X636awa", "https://tec.openplanner.team/stops/X636bba"], ["https://tec.openplanner.team/stops/Lpegole1", "https://tec.openplanner.team/stops/Lpegole2"], ["https://tec.openplanner.team/stops/X548aaa", "https://tec.openplanner.team/stops/X784aib"], ["https://tec.openplanner.team/stops/N321aba", "https://tec.openplanner.team/stops/N321acb"], ["https://tec.openplanner.team/stops/N539atb", "https://tec.openplanner.team/stops/N539bfb"], ["https://tec.openplanner.team/stops/LnUcamp2", "https://tec.openplanner.team/stops/LnUneun3"], ["https://tec.openplanner.team/stops/N501dea", "https://tec.openplanner.team/stops/N501deb"], ["https://tec.openplanner.team/stops/LFacruc1", "https://tec.openplanner.team/stops/LFacruc2"], ["https://tec.openplanner.team/stops/Lsebelv1", "https://tec.openplanner.team/stops/Lsetrav2"], ["https://tec.openplanner.team/stops/LOuouff2", "https://tec.openplanner.team/stops/LOurena2"], ["https://tec.openplanner.team/stops/Bkrawil1", "https://tec.openplanner.team/stops/Bovesnh1"], ["https://tec.openplanner.team/stops/Cchfran2", "https://tec.openplanner.team/stops/Cchrmon1"], ["https://tec.openplanner.team/stops/Lvearle2", "https://tec.openplanner.team/stops/Lvescie1"], ["https://tec.openplanner.team/stops/Bborppa2", "https://tec.openplanner.team/stops/Bfelagb1"], ["https://tec.openplanner.team/stops/Bquepos1", "https://tec.openplanner.team/stops/Bquesta2"], ["https://tec.openplanner.team/stops/Bboufsm1", "https://tec.openplanner.team/stops/Bbstcoi2"], ["https://tec.openplanner.team/stops/Crolema2", "https://tec.openplanner.team/stops/Crowilb1"], ["https://tec.openplanner.team/stops/H4mv189c", "https://tec.openplanner.team/stops/H4mv194b"], ["https://tec.openplanner.team/stops/X999ala", "https://tec.openplanner.team/stops/X999aqb"], ["https://tec.openplanner.team/stops/X601awa", "https://tec.openplanner.team/stops/X612aaa"], ["https://tec.openplanner.team/stops/Ccupays2", "https://tec.openplanner.team/stops/Cmtproc2"], ["https://tec.openplanner.team/stops/Lvealbe2", "https://tec.openplanner.team/stops/Lvevert2"], ["https://tec.openplanner.team/stops/H1le125a", "https://tec.openplanner.team/stops/H1le125b"], ["https://tec.openplanner.team/stops/Llgcorn2", "https://tec.openplanner.team/stops/Llgrema2"], ["https://tec.openplanner.team/stops/Llgboux1", "https://tec.openplanner.team/stops/Lvtnico1"], ["https://tec.openplanner.team/stops/N351agb", "https://tec.openplanner.team/stops/X351acb"], ["https://tec.openplanner.team/stops/Lhrferr1", "https://tec.openplanner.team/stops/Lhrjaur1"], ["https://tec.openplanner.team/stops/X719ada", "https://tec.openplanner.team/stops/X719aea"], ["https://tec.openplanner.team/stops/X824aaa", "https://tec.openplanner.team/stops/X824aac"], ["https://tec.openplanner.team/stops/LhEauto1", "https://tec.openplanner.team/stops/LhEherb2"], ["https://tec.openplanner.team/stops/LoEauto2", "https://tec.openplanner.team/stops/LoEbach1"], ["https://tec.openplanner.team/stops/LFrcent1", "https://tec.openplanner.team/stops/LFrcent2"], ["https://tec.openplanner.team/stops/H1je219b", "https://tec.openplanner.team/stops/H1je369b"], ["https://tec.openplanner.team/stops/Lsnbrac4", "https://tec.openplanner.team/stops/Lsnbure1"], ["https://tec.openplanner.team/stops/H1do108b", "https://tec.openplanner.team/stops/H1do117a"], ["https://tec.openplanner.team/stops/Lhracec1", "https://tec.openplanner.team/stops/Lwachal2"], ["https://tec.openplanner.team/stops/H4ty305a", "https://tec.openplanner.team/stops/H4ty305d"], ["https://tec.openplanner.team/stops/X801bma", "https://tec.openplanner.team/stops/X801boa"], ["https://tec.openplanner.team/stops/H4ma200b", "https://tec.openplanner.team/stops/H4ma203a"], ["https://tec.openplanner.team/stops/Bdvmalo2", "https://tec.openplanner.team/stops/Bdvmcsa2"], ["https://tec.openplanner.team/stops/LBGcent2", "https://tec.openplanner.team/stops/LHDpota4"], ["https://tec.openplanner.team/stops/H2ch104b", "https://tec.openplanner.team/stops/H2ch106b"], ["https://tec.openplanner.team/stops/Lsefori1", "https://tec.openplanner.team/stops/Lsefori2"], ["https://tec.openplanner.team/stops/LLUmc--1", "https://tec.openplanner.team/stops/LLUreut1"], ["https://tec.openplanner.team/stops/LDOandr1", "https://tec.openplanner.team/stops/LDOdavi1"], ["https://tec.openplanner.team/stops/Bbwacol2", "https://tec.openplanner.team/stops/Bwavbwa1"], ["https://tec.openplanner.team/stops/N506arb", "https://tec.openplanner.team/stops/N506azb"], ["https://tec.openplanner.team/stops/Clbbonn2", "https://tec.openplanner.team/stops/H1lo120b"], ["https://tec.openplanner.team/stops/H1eu101a", "https://tec.openplanner.team/stops/H1lb152b"], ["https://tec.openplanner.team/stops/N538atc", "https://tec.openplanner.team/stops/N538bbb"], ["https://tec.openplanner.team/stops/Bbeaap12", "https://tec.openplanner.team/stops/Bbeaneu4"], ["https://tec.openplanner.team/stops/X618aka", "https://tec.openplanner.team/stops/X625ada"], ["https://tec.openplanner.team/stops/X812agb", "https://tec.openplanner.team/stops/X812aja"], ["https://tec.openplanner.team/stops/H4ty329a", "https://tec.openplanner.team/stops/H4ty336b"], ["https://tec.openplanner.team/stops/N535amb", "https://tec.openplanner.team/stops/N535amc"], ["https://tec.openplanner.team/stops/LBGcent1", "https://tec.openplanner.team/stops/LGrchpl1"], ["https://tec.openplanner.team/stops/N506bbb", "https://tec.openplanner.team/stops/N506bda"], ["https://tec.openplanner.team/stops/X899afa", "https://tec.openplanner.team/stops/X899aga"], ["https://tec.openplanner.team/stops/LeUmeye1", "https://tec.openplanner.team/stops/LtEnatu2"], ["https://tec.openplanner.team/stops/LAyheid1", "https://tec.openplanner.team/stops/LAyheid2"], ["https://tec.openplanner.team/stops/LSyec--1", "https://tec.openplanner.team/stops/LSypesy2"], ["https://tec.openplanner.team/stops/Csecarr1", "https://tec.openplanner.team/stops/Csecout1"], ["https://tec.openplanner.team/stops/X636amb", "https://tec.openplanner.team/stops/X636ara"], ["https://tec.openplanner.team/stops/LAChann1", "https://tec.openplanner.team/stops/LAChann2"], ["https://tec.openplanner.team/stops/X923ahb", "https://tec.openplanner.team/stops/X923aia"], ["https://tec.openplanner.team/stops/LBJchau*", "https://tec.openplanner.team/stops/LMAbass2"], ["https://tec.openplanner.team/stops/X999aib", "https://tec.openplanner.team/stops/X999ata"], ["https://tec.openplanner.team/stops/Cwgcamp1", "https://tec.openplanner.team/stops/Cwgcamp2"], ["https://tec.openplanner.team/stops/X741aab", "https://tec.openplanner.team/stops/X741aca"], ["https://tec.openplanner.team/stops/LAx41--1", "https://tec.openplanner.team/stops/LAx41--2"], ["https://tec.openplanner.team/stops/H4ka185a", "https://tec.openplanner.team/stops/H4mt218a"], ["https://tec.openplanner.team/stops/H1gi123a", "https://tec.openplanner.team/stops/H1hg179b"], ["https://tec.openplanner.team/stops/X685afa", "https://tec.openplanner.team/stops/X685agb"], ["https://tec.openplanner.team/stops/X804asa", "https://tec.openplanner.team/stops/X829aaa"], ["https://tec.openplanner.team/stops/X927aba", "https://tec.openplanner.team/stops/X996aha"], ["https://tec.openplanner.team/stops/X661amb", "https://tec.openplanner.team/stops/X661ara"], ["https://tec.openplanner.team/stops/H4ch114a", "https://tec.openplanner.team/stops/H4ch114b"], ["https://tec.openplanner.team/stops/Cmmlong1", "https://tec.openplanner.team/stops/Cmmmarl2"], ["https://tec.openplanner.team/stops/X938aca", "https://tec.openplanner.team/stops/X938aeb"], ["https://tec.openplanner.team/stops/Llochar1", "https://tec.openplanner.team/stops/Llocime1"], ["https://tec.openplanner.team/stops/H4co150a", "https://tec.openplanner.team/stops/H4co162a"], ["https://tec.openplanner.team/stops/X716aca", "https://tec.openplanner.team/stops/X781adb"], ["https://tec.openplanner.team/stops/Bbeubos2", "https://tec.openplanner.team/stops/N526abb"], ["https://tec.openplanner.team/stops/H1sp357b", "https://tec.openplanner.team/stops/H1ss352b"], ["https://tec.openplanner.team/stops/Btstche2", "https://tec.openplanner.team/stops/N524ala"], ["https://tec.openplanner.team/stops/LHaxhor1", "https://tec.openplanner.team/stops/LVvboma2"], ["https://tec.openplanner.team/stops/N562bja", "https://tec.openplanner.team/stops/N562bka"], ["https://tec.openplanner.team/stops/Lsn130-1", "https://tec.openplanner.team/stops/Lsnfont1"], ["https://tec.openplanner.team/stops/H5rx110a", "https://tec.openplanner.team/stops/H5rx146a"], ["https://tec.openplanner.team/stops/LSzetoi1", "https://tec.openplanner.team/stops/NL57afa"], ["https://tec.openplanner.team/stops/X897arb", "https://tec.openplanner.team/stops/X897aub"], ["https://tec.openplanner.team/stops/X601dba", "https://tec.openplanner.team/stops/X612afb"], ["https://tec.openplanner.team/stops/H4bf106a", "https://tec.openplanner.team/stops/H4by116b"], ["https://tec.openplanner.team/stops/H2an100a", "https://tec.openplanner.team/stops/H2an103a"], ["https://tec.openplanner.team/stops/H4ef110b", "https://tec.openplanner.team/stops/H4ef113b"], ["https://tec.openplanner.team/stops/LJOvill1", "https://tec.openplanner.team/stops/LXHbois2"], ["https://tec.openplanner.team/stops/H2lh125b", "https://tec.openplanner.team/stops/H2lh127a"], ["https://tec.openplanner.team/stops/N348aca", "https://tec.openplanner.team/stops/N348aea"], ["https://tec.openplanner.team/stops/LFRgode1", "https://tec.openplanner.team/stops/LFRspa-2"], ["https://tec.openplanner.team/stops/LBEairp2", "https://tec.openplanner.team/stops/LBEairp4"], ["https://tec.openplanner.team/stops/Bbiemse1", "https://tec.openplanner.team/stops/Bbiepon1"], ["https://tec.openplanner.team/stops/H4vx364a", "https://tec.openplanner.team/stops/H4vx364c"], ["https://tec.openplanner.team/stops/LBvnico1", "https://tec.openplanner.team/stops/LPUlecl2"], ["https://tec.openplanner.team/stops/H1ch142a", "https://tec.openplanner.team/stops/H4ld129b"], ["https://tec.openplanner.team/stops/LVsbrux2", "https://tec.openplanner.team/stops/NL57aib"], ["https://tec.openplanner.team/stops/X910aba", "https://tec.openplanner.team/stops/X910aca"], ["https://tec.openplanner.team/stops/N118aib", "https://tec.openplanner.team/stops/N118axa"], ["https://tec.openplanner.team/stops/LBLcalv3", "https://tec.openplanner.team/stops/LCEplac2"], ["https://tec.openplanner.team/stops/LREsoug2", "https://tec.openplanner.team/stops/LREsoug3"], ["https://tec.openplanner.team/stops/LXhvanh1", "https://tec.openplanner.team/stops/LXhvina2"], ["https://tec.openplanner.team/stops/X741aba", "https://tec.openplanner.team/stops/X758aka"], ["https://tec.openplanner.team/stops/LLGramk3", "https://tec.openplanner.team/stops/LORherl1"], ["https://tec.openplanner.team/stops/H1ju120a", "https://tec.openplanner.team/stops/H1ju120c"], ["https://tec.openplanner.team/stops/LWLhagi2", "https://tec.openplanner.team/stops/LXftche1"], ["https://tec.openplanner.team/stops/X767aha", "https://tec.openplanner.team/stops/X767aja"], ["https://tec.openplanner.team/stops/N501kfb", "https://tec.openplanner.team/stops/N538asa"], ["https://tec.openplanner.team/stops/X939ada", "https://tec.openplanner.team/stops/X939afa"], ["https://tec.openplanner.team/stops/H4ka175b", "https://tec.openplanner.team/stops/H4ka392a"], ["https://tec.openplanner.team/stops/Cobbuze2", "https://tec.openplanner.team/stops/Creoudo1"], ["https://tec.openplanner.team/stops/N110aba", "https://tec.openplanner.team/stops/N124aca"], ["https://tec.openplanner.team/stops/H4ft138a", "https://tec.openplanner.team/stops/H4wu377a"], ["https://tec.openplanner.team/stops/Cbfcham3", "https://tec.openplanner.team/stops/Cbfpauc1"], ["https://tec.openplanner.team/stops/LBhcent1", "https://tec.openplanner.team/stops/LBhcent2"], ["https://tec.openplanner.team/stops/X750bha", "https://tec.openplanner.team/stops/X750bja"], ["https://tec.openplanner.team/stops/Landolh2", "https://tec.openplanner.team/stops/Lanmouf1"], ["https://tec.openplanner.team/stops/H1bo105b", "https://tec.openplanner.team/stops/H1bo108b"], ["https://tec.openplanner.team/stops/LhUdenk2", "https://tec.openplanner.team/stops/LhUkape2"], ["https://tec.openplanner.team/stops/Ljewale1", "https://tec.openplanner.team/stops/Ljewale4"], ["https://tec.openplanner.team/stops/LSPfrai1", "https://tec.openplanner.team/stops/LSPpelz2"], ["https://tec.openplanner.team/stops/H4ty334a", "https://tec.openplanner.team/stops/H4ty345a"], ["https://tec.openplanner.team/stops/X982aua", "https://tec.openplanner.team/stops/X982cab"], ["https://tec.openplanner.team/stops/LLycent*", "https://tec.openplanner.team/stops/LMRmont1"], ["https://tec.openplanner.team/stops/Bperwil2", "https://tec.openplanner.team/stops/NB33aeb"], ["https://tec.openplanner.team/stops/Buccham1", "https://tec.openplanner.team/stops/Buccvoi1"], ["https://tec.openplanner.team/stops/LJAbell2", "https://tec.openplanner.team/stops/LJAbell4"], ["https://tec.openplanner.team/stops/N519akb", "https://tec.openplanner.team/stops/N525agb"], ["https://tec.openplanner.team/stops/N505aha", "https://tec.openplanner.team/stops/N506apb"], ["https://tec.openplanner.team/stops/LSImewi2", "https://tec.openplanner.team/stops/LSInd--2"], ["https://tec.openplanner.team/stops/N539apb", "https://tec.openplanner.team/stops/N539bdb"], ["https://tec.openplanner.team/stops/X664agb", "https://tec.openplanner.team/stops/X664aib"], ["https://tec.openplanner.team/stops/LFsherm2", "https://tec.openplanner.team/stops/LSLabba2"], ["https://tec.openplanner.team/stops/Lfhhosp1", "https://tec.openplanner.team/stops/Lfhweri1"], ["https://tec.openplanner.team/stops/X663aba", "https://tec.openplanner.team/stops/X663acb"], ["https://tec.openplanner.team/stops/H1hb197a", "https://tec.openplanner.team/stops/H1si156a"], ["https://tec.openplanner.team/stops/H2go114b", "https://tec.openplanner.team/stops/H2go119b"], ["https://tec.openplanner.team/stops/H1ca103a", "https://tec.openplanner.team/stops/H3so164a"], ["https://tec.openplanner.team/stops/X359aha", "https://tec.openplanner.team/stops/X359aib"], ["https://tec.openplanner.team/stops/X721aca", "https://tec.openplanner.team/stops/X721akb"], ["https://tec.openplanner.team/stops/N201aed", "https://tec.openplanner.team/stops/N201asb"], ["https://tec.openplanner.team/stops/X804abb", "https://tec.openplanner.team/stops/X804ama"], ["https://tec.openplanner.team/stops/H5pe145a", "https://tec.openplanner.team/stops/H5pe150b"], ["https://tec.openplanner.team/stops/LHCbran2", "https://tec.openplanner.team/stops/LHCpaci1"], ["https://tec.openplanner.team/stops/H1si151a", "https://tec.openplanner.team/stops/H4bo110a"], ["https://tec.openplanner.team/stops/LWZeg--1", "https://tec.openplanner.team/stops/LWZeg--2"], ["https://tec.openplanner.team/stops/N540akb", "https://tec.openplanner.team/stops/N540aoa"], ["https://tec.openplanner.team/stops/H1hr120a", "https://tec.openplanner.team/stops/H1hr121a"], ["https://tec.openplanner.team/stops/Bgzddge1", "https://tec.openplanner.team/stops/Bgzdpis2"], ["https://tec.openplanner.team/stops/Ccychba2", "https://tec.openplanner.team/stops/Crbecol2"], ["https://tec.openplanner.team/stops/X982bva", "https://tec.openplanner.team/stops/X982bwa"], ["https://tec.openplanner.team/stops/Bsmgmar2", "https://tec.openplanner.team/stops/Bsmgpla2"], ["https://tec.openplanner.team/stops/X663asa", "https://tec.openplanner.team/stops/X664amc"], ["https://tec.openplanner.team/stops/Lgrchar1", "https://tec.openplanner.team/stops/Lgrramp2"], ["https://tec.openplanner.team/stops/Cfocmed2", "https://tec.openplanner.team/stops/Cfovent2"], ["https://tec.openplanner.team/stops/LlgOPER1", "https://tec.openplanner.team/stops/LlgOPER2"], ["https://tec.openplanner.team/stops/H4eg104b", "https://tec.openplanner.team/stops/H4ne136a"], ["https://tec.openplanner.team/stops/Cfaplma2", "https://tec.openplanner.team/stops/Cfaysle1"], ["https://tec.openplanner.team/stops/Lsccdor2", "https://tec.openplanner.team/stops/Lscpamp1"], ["https://tec.openplanner.team/stops/Bcer4br1", "https://tec.openplanner.team/stops/Bottpin1"], ["https://tec.openplanner.team/stops/H4ag100a", "https://tec.openplanner.team/stops/H4ag102a"], ["https://tec.openplanner.team/stops/H2hg149a", "https://tec.openplanner.team/stops/H2hg149b"], ["https://tec.openplanner.team/stops/LWRbois2", "https://tec.openplanner.team/stops/LWRheyd1"], ["https://tec.openplanner.team/stops/X618aka", "https://tec.openplanner.team/stops/X618akb"], ["https://tec.openplanner.team/stops/Lsebegu2", "https://tec.openplanner.team/stops/Ltipass2"], ["https://tec.openplanner.team/stops/X750aga", "https://tec.openplanner.team/stops/X750agb"], ["https://tec.openplanner.team/stops/LgRzent1", "https://tec.openplanner.team/stops/LoDscha1"], ["https://tec.openplanner.team/stops/X734aab", "https://tec.openplanner.team/stops/X734acb"], ["https://tec.openplanner.team/stops/H4lz118b", "https://tec.openplanner.team/stops/H4lz126a"], ["https://tec.openplanner.team/stops/X782aab", "https://tec.openplanner.team/stops/X782apa"], ["https://tec.openplanner.team/stops/LHUneuv1", "https://tec.openplanner.team/stops/LHUpost4"], ["https://tec.openplanner.team/stops/LOVeg--2", "https://tec.openplanner.team/stops/LOVhetr1"], ["https://tec.openplanner.team/stops/Bwspcar2", "https://tec.openplanner.team/stops/Bwspmon3"], ["https://tec.openplanner.team/stops/LsVgesc1", "https://tec.openplanner.team/stops/LsVsimo1"], ["https://tec.openplanner.team/stops/Lsweg--1", "https://tec.openplanner.team/stops/Lwaaube1"], ["https://tec.openplanner.team/stops/X756aeb", "https://tec.openplanner.team/stops/X756agd"], ["https://tec.openplanner.team/stops/N501bxa", "https://tec.openplanner.team/stops/N501mia"], ["https://tec.openplanner.team/stops/Bhevwzw1", "https://tec.openplanner.team/stops/Bpecsta1"], ["https://tec.openplanner.team/stops/H1wa149c", "https://tec.openplanner.team/stops/H1wa152a"], ["https://tec.openplanner.team/stops/Boppegl2", "https://tec.openplanner.team/stops/Bsrbbas2"], ["https://tec.openplanner.team/stops/Cgomerm4", "https://tec.openplanner.team/stops/Chprobi1"], ["https://tec.openplanner.team/stops/N236aba", "https://tec.openplanner.team/stops/N254ahb"], ["https://tec.openplanner.team/stops/N553aaa", "https://tec.openplanner.team/stops/N553aka"], ["https://tec.openplanner.team/stops/H1mb138a", "https://tec.openplanner.team/stops/H1mb138b"], ["https://tec.openplanner.team/stops/N501mda", "https://tec.openplanner.team/stops/N501mdb"], ["https://tec.openplanner.team/stops/N501icb", "https://tec.openplanner.team/stops/N501inb"], ["https://tec.openplanner.team/stops/N241aaa", "https://tec.openplanner.team/stops/N585aba"], ["https://tec.openplanner.team/stops/Lrctec-1", "https://tec.openplanner.team/stops/Lrctec-2"], ["https://tec.openplanner.team/stops/Lceembo2", "https://tec.openplanner.team/stops/Lcegare2"], ["https://tec.openplanner.team/stops/H1qv112b", "https://tec.openplanner.team/stops/H1qv116b"], ["https://tec.openplanner.team/stops/X911abb", "https://tec.openplanner.team/stops/X911aob"], ["https://tec.openplanner.team/stops/Cbmind4", "https://tec.openplanner.team/stops/Cbmviv1"], ["https://tec.openplanner.team/stops/H1gr115a", "https://tec.openplanner.team/stops/H1gr115b"], ["https://tec.openplanner.team/stops/X626aka", "https://tec.openplanner.team/stops/X626akb"], ["https://tec.openplanner.team/stops/Cctchav1", "https://tec.openplanner.team/stops/Cplrymo1"], ["https://tec.openplanner.team/stops/X602alb", "https://tec.openplanner.team/stops/X602amb"], ["https://tec.openplanner.team/stops/H4ws159b", "https://tec.openplanner.team/stops/H4ws160b"], ["https://tec.openplanner.team/stops/Crbreve1", "https://tec.openplanner.team/stops/Crbreve2"], ["https://tec.openplanner.team/stops/LHgec--0", "https://tec.openplanner.team/stops/LOMdodi2"], ["https://tec.openplanner.team/stops/Lsemaqu1", "https://tec.openplanner.team/stops/Lsemaqu2"], ["https://tec.openplanner.team/stops/Bsencen1", "https://tec.openplanner.team/stops/Bsensab1"], ["https://tec.openplanner.team/stops/H4tu172b", "https://tec.openplanner.team/stops/H5pe128a"], ["https://tec.openplanner.team/stops/LCxhall2", "https://tec.openplanner.team/stops/LCxhame1"], ["https://tec.openplanner.team/stops/LbUbutg2", "https://tec.openplanner.team/stops/LbUgend1"], ["https://tec.openplanner.team/stops/Csuegli", "https://tec.openplanner.team/stops/Csygare4"], ["https://tec.openplanner.team/stops/X663aob", "https://tec.openplanner.team/stops/X663axb"], ["https://tec.openplanner.team/stops/N501axb", "https://tec.openplanner.team/stops/N501cvb"], ["https://tec.openplanner.team/stops/Llgmarc1", "https://tec.openplanner.team/stops/Llgvelb2"], ["https://tec.openplanner.team/stops/N501dva", "https://tec.openplanner.team/stops/N501ewa"], ["https://tec.openplanner.team/stops/Bwatmgo3", "https://tec.openplanner.team/stops/Bwatsan2"], ["https://tec.openplanner.team/stops/LBLghuy2", "https://tec.openplanner.team/stops/LBLghuy3"], ["https://tec.openplanner.team/stops/LmD27--2", "https://tec.openplanner.team/stops/LmDkirc1"], ["https://tec.openplanner.team/stops/H4es108a", "https://tec.openplanner.team/stops/H4hx120b"], ["https://tec.openplanner.team/stops/LJU493-1", "https://tec.openplanner.team/stops/LJUxhen1"], ["https://tec.openplanner.team/stops/X804aeb", "https://tec.openplanner.team/stops/X804bab"], ["https://tec.openplanner.team/stops/LAMec--1", "https://tec.openplanner.team/stops/LAMrich2"], ["https://tec.openplanner.team/stops/H4mt218a", "https://tec.openplanner.team/stops/H4mt220a"], ["https://tec.openplanner.team/stops/X763aha", "https://tec.openplanner.team/stops/X765aga"], ["https://tec.openplanner.team/stops/N501dba", "https://tec.openplanner.team/stops/N501dbb"], ["https://tec.openplanner.team/stops/X614aib", "https://tec.openplanner.team/stops/X623aia"], ["https://tec.openplanner.team/stops/X669abc", "https://tec.openplanner.team/stops/X669aca"], ["https://tec.openplanner.team/stops/H4hg157a", "https://tec.openplanner.team/stops/H4hg157b"], ["https://tec.openplanner.team/stops/Borbtre2", "https://tec.openplanner.team/stops/Btstpch2"], ["https://tec.openplanner.team/stops/LBEoblu1", "https://tec.openplanner.team/stops/Lemcort2"], ["https://tec.openplanner.team/stops/Bmalper2", "https://tec.openplanner.team/stops/Borbod92"], ["https://tec.openplanner.team/stops/X801cfb", "https://tec.openplanner.team/stops/X801cmb"], ["https://tec.openplanner.team/stops/N141aqb", "https://tec.openplanner.team/stops/N426aaa"], ["https://tec.openplanner.team/stops/X901bka", "https://tec.openplanner.team/stops/X901bnb"], ["https://tec.openplanner.team/stops/X604aha", "https://tec.openplanner.team/stops/X604ahb"], ["https://tec.openplanner.team/stops/LBichat1", "https://tec.openplanner.team/stops/LHCbois1"], ["https://tec.openplanner.team/stops/Cmgbras1", "https://tec.openplanner.team/stops/Cmgvpa"], ["https://tec.openplanner.team/stops/Cjumade3", "https://tec.openplanner.team/stops/CMmade1"], ["https://tec.openplanner.team/stops/H1ms273a", "https://tec.openplanner.team/stops/H1ms289b"], ["https://tec.openplanner.team/stops/LHthest1", "https://tec.openplanner.team/stops/LMemora1"], ["https://tec.openplanner.team/stops/Csubosa1", "https://tec.openplanner.team/stops/Csurela2"], ["https://tec.openplanner.team/stops/H4mv191a", "https://tec.openplanner.team/stops/H4mv196b"], ["https://tec.openplanner.team/stops/N118anc", "https://tec.openplanner.team/stops/N118azb"], ["https://tec.openplanner.team/stops/N110afa", "https://tec.openplanner.team/stops/N110ahb"], ["https://tec.openplanner.team/stops/H1gr110a", "https://tec.openplanner.team/stops/H1gr116a"], ["https://tec.openplanner.team/stops/N209aha", "https://tec.openplanner.team/stops/N209ahb"], ["https://tec.openplanner.team/stops/H4wr173a", "https://tec.openplanner.team/stops/H4wr173c"], ["https://tec.openplanner.team/stops/Btsleco1", "https://tec.openplanner.team/stops/Btsleco2"], ["https://tec.openplanner.team/stops/X639apb", "https://tec.openplanner.team/stops/X639aqa"], ["https://tec.openplanner.team/stops/Cmmadma1", "https://tec.openplanner.team/stops/Cmmegli2"], ["https://tec.openplanner.team/stops/H1hy126a", "https://tec.openplanner.team/stops/H1hy129a"], ["https://tec.openplanner.team/stops/X636ama", "https://tec.openplanner.team/stops/X636amb"], ["https://tec.openplanner.team/stops/X621abb", "https://tec.openplanner.team/stops/X622adb"], ["https://tec.openplanner.team/stops/Clodrio1", "https://tec.openplanner.team/stops/Clomart2"], ["https://tec.openplanner.team/stops/H4mt216a", "https://tec.openplanner.team/stops/H4mt216b"], ["https://tec.openplanner.team/stops/X638aab", "https://tec.openplanner.team/stops/X638abb"], ["https://tec.openplanner.team/stops/Bperwil2", "https://tec.openplanner.team/stops/Btlbegl2"], ["https://tec.openplanner.team/stops/X923apa", "https://tec.openplanner.team/stops/X923aqa"], ["https://tec.openplanner.team/stops/Ccipier2", "https://tec.openplanner.team/stops/Cmtstan2"], ["https://tec.openplanner.team/stops/X223acb", "https://tec.openplanner.team/stops/X261adb"], ["https://tec.openplanner.team/stops/N343ada", "https://tec.openplanner.team/stops/X343ama"], ["https://tec.openplanner.team/stops/LaAhaup1", "https://tec.openplanner.team/stops/LaAnorm2"], ["https://tec.openplanner.team/stops/X811aga", "https://tec.openplanner.team/stops/X811aha"], ["https://tec.openplanner.team/stops/LHolexh1", "https://tec.openplanner.team/stops/LHolexh2"], ["https://tec.openplanner.team/stops/N508ala", "https://tec.openplanner.team/stops/N508alb"], ["https://tec.openplanner.team/stops/N528ahb", "https://tec.openplanner.team/stops/N528aob"], ["https://tec.openplanner.team/stops/Lanrask1", "https://tec.openplanner.team/stops/Llgnaes2"], ["https://tec.openplanner.team/stops/N561aba", "https://tec.openplanner.team/stops/N561afa"], ["https://tec.openplanner.team/stops/Cgyblob1", "https://tec.openplanner.team/stops/Cgylouv1"], ["https://tec.openplanner.team/stops/N522aeb", "https://tec.openplanner.team/stops/N522ajb"], ["https://tec.openplanner.team/stops/N302aea", "https://tec.openplanner.team/stops/N305aba"], ["https://tec.openplanner.team/stops/H2hp114a", "https://tec.openplanner.team/stops/H2ll183b"], ["https://tec.openplanner.team/stops/N117aob", "https://tec.openplanner.team/stops/N117bcd"], ["https://tec.openplanner.team/stops/H4am102d", "https://tec.openplanner.team/stops/H4am113b"], ["https://tec.openplanner.team/stops/N513bia", "https://tec.openplanner.team/stops/N516adb"], ["https://tec.openplanner.team/stops/LHHplac2", "https://tec.openplanner.team/stops/LHHronh2"], ["https://tec.openplanner.team/stops/LCacoop1", "https://tec.openplanner.team/stops/Lfhmarn2"], ["https://tec.openplanner.team/stops/N202aeb", "https://tec.openplanner.team/stops/N202aec"], ["https://tec.openplanner.team/stops/LFsgend1", "https://tec.openplanner.team/stops/LFsgend2"], ["https://tec.openplanner.team/stops/H4oe148b", "https://tec.openplanner.team/stops/H4oe151b"], ["https://tec.openplanner.team/stops/LnN02--1", "https://tec.openplanner.team/stops/LrDhund1"], ["https://tec.openplanner.team/stops/H1ml112a", "https://tec.openplanner.team/stops/H1ne146b"], ["https://tec.openplanner.team/stops/X670apb", "https://tec.openplanner.team/stops/X670aqb"], ["https://tec.openplanner.team/stops/H1hw122b", "https://tec.openplanner.team/stops/H1hw124a"], ["https://tec.openplanner.team/stops/Cgxchan1", "https://tec.openplanner.team/stops/Cgxchan2"], ["https://tec.openplanner.team/stops/LLUreut1", "https://tec.openplanner.team/stops/LLUtill1"], ["https://tec.openplanner.team/stops/H4hu116b", "https://tec.openplanner.team/stops/H4ld127a"], ["https://tec.openplanner.team/stops/H1wl121b", "https://tec.openplanner.team/stops/H1wl125a"], ["https://tec.openplanner.team/stops/H1so135b", "https://tec.openplanner.team/stops/H1so139d"], ["https://tec.openplanner.team/stops/LDOchev1", "https://tec.openplanner.team/stops/LDOviad2"], ["https://tec.openplanner.team/stops/H4hq129b", "https://tec.openplanner.team/stops/H4hs135b"], ["https://tec.openplanner.team/stops/X921abb", "https://tec.openplanner.team/stops/X921anb"], ["https://tec.openplanner.team/stops/X754aub", "https://tec.openplanner.team/stops/X779acb"], ["https://tec.openplanner.team/stops/Clsferr1", "https://tec.openplanner.team/stops/H1ls110a"], ["https://tec.openplanner.team/stops/LRMeg--2", "https://tec.openplanner.team/stops/LRMn58-1"], ["https://tec.openplanner.team/stops/LWOcour1", "https://tec.openplanner.team/stops/LWOcour2"], ["https://tec.openplanner.team/stops/NR38acb", "https://tec.openplanner.team/stops/NR38ada"], ["https://tec.openplanner.team/stops/H2bh120b", "https://tec.openplanner.team/stops/H2mg141b"], ["https://tec.openplanner.team/stops/N874aia", "https://tec.openplanner.team/stops/N874ajb"], ["https://tec.openplanner.team/stops/X390alb", "https://tec.openplanner.team/stops/X991aeb"], ["https://tec.openplanner.team/stops/LAuvici1", "https://tec.openplanner.team/stops/LWRpl--1"], ["https://tec.openplanner.team/stops/H4ty324c", "https://tec.openplanner.team/stops/H4ty353b"], ["https://tec.openplanner.team/stops/X633aia", "https://tec.openplanner.team/stops/X654aia"], ["https://tec.openplanner.team/stops/H1ba100b", "https://tec.openplanner.team/stops/H1ba111b"], ["https://tec.openplanner.team/stops/LSIgera1", "https://tec.openplanner.team/stops/LSIters1"], ["https://tec.openplanner.team/stops/H2hl112b", "https://tec.openplanner.team/stops/H2hl113a"], ["https://tec.openplanner.team/stops/H4wr174b", "https://tec.openplanner.team/stops/H4wr175b"], ["https://tec.openplanner.team/stops/X638aaa", "https://tec.openplanner.team/stops/X638aba"], ["https://tec.openplanner.team/stops/H4he101a", "https://tec.openplanner.team/stops/H4he103a"], ["https://tec.openplanner.team/stops/LSTec--1", "https://tec.openplanner.team/stops/LSTrema2"], ["https://tec.openplanner.team/stops/Bjausan1", "https://tec.openplanner.team/stops/NR21ajb"], ["https://tec.openplanner.team/stops/Bjodath1", "https://tec.openplanner.team/stops/Bjodath2"], ["https://tec.openplanner.team/stops/N501hfb", "https://tec.openplanner.team/stops/N501mwa"], ["https://tec.openplanner.team/stops/LCPcomp1", "https://tec.openplanner.team/stops/LOnec--1"], ["https://tec.openplanner.team/stops/Blinbru2", "https://tec.openplanner.team/stops/Blinhue1"], ["https://tec.openplanner.team/stops/Lgdec--1", "https://tec.openplanner.team/stops/LMhvina1"], ["https://tec.openplanner.team/stops/X612afa", "https://tec.openplanner.team/stops/X626akb"], ["https://tec.openplanner.team/stops/X740aea", "https://tec.openplanner.team/stops/X740afb"], ["https://tec.openplanner.team/stops/N513awa", "https://tec.openplanner.team/stops/N513axb"], ["https://tec.openplanner.team/stops/H4be102b", "https://tec.openplanner.team/stops/H4be104d"], ["https://tec.openplanner.team/stops/LFTcroi2", "https://tec.openplanner.team/stops/LFTeg--2"], ["https://tec.openplanner.team/stops/Cci4092", "https://tec.openplanner.team/stops/Cctlimi1"], ["https://tec.openplanner.team/stops/N106aha", "https://tec.openplanner.team/stops/N106ahb"], ["https://tec.openplanner.team/stops/N584bba", "https://tec.openplanner.team/stops/N584bbb"], ["https://tec.openplanner.team/stops/LLeec--1", "https://tec.openplanner.team/stops/X547abb"], ["https://tec.openplanner.team/stops/LTIdumo1", "https://tec.openplanner.team/stops/LTIpire2"], ["https://tec.openplanner.team/stops/LBgbaga3", "https://tec.openplanner.team/stops/LBgnach1"], ["https://tec.openplanner.team/stops/LSJ38--1", "https://tec.openplanner.team/stops/LSJeg--1"], ["https://tec.openplanner.team/stops/LATabba2", "https://tec.openplanner.team/stops/LATphar2"], ["https://tec.openplanner.team/stops/LHycent*", "https://tec.openplanner.team/stops/LXofans1"], ["https://tec.openplanner.team/stops/Bquebth3", "https://tec.openplanner.team/stops/Bstecou1"], ["https://tec.openplanner.team/stops/Bnivpeu1", "https://tec.openplanner.team/stops/Bnivzep1"], ["https://tec.openplanner.team/stops/Cflsabl1", "https://tec.openplanner.team/stops/Cflvxsa2"], ["https://tec.openplanner.team/stops/Cmygrbr3", "https://tec.openplanner.team/stops/Cmygrbr4"], ["https://tec.openplanner.team/stops/LFNecpr*", "https://tec.openplanner.team/stops/LFNtill1"], ["https://tec.openplanner.team/stops/N229ata", "https://tec.openplanner.team/stops/N540apb"], ["https://tec.openplanner.team/stops/X750bpb", "https://tec.openplanner.team/stops/X784aja"], ["https://tec.openplanner.team/stops/Lstauna2", "https://tec.openplanner.team/stops/Lstbota1"], ["https://tec.openplanner.team/stops/X396afb", "https://tec.openplanner.team/stops/X917ajb"], ["https://tec.openplanner.team/stops/Ctaallo2", "https://tec.openplanner.team/stops/Ctachst2"], ["https://tec.openplanner.team/stops/LPurech1", "https://tec.openplanner.team/stops/LPurech2"], ["https://tec.openplanner.team/stops/Cmx3arb1", "https://tec.openplanner.team/stops/Cmyvesa2"], ["https://tec.openplanner.team/stops/N501iza", "https://tec.openplanner.team/stops/N501izb"], ["https://tec.openplanner.team/stops/Bspkdon2", "https://tec.openplanner.team/stops/Bspkker2"], ["https://tec.openplanner.team/stops/LHheg--1", "https://tec.openplanner.team/stops/LHhelia1"], ["https://tec.openplanner.team/stops/X664aja", "https://tec.openplanner.team/stops/X666aba"], ["https://tec.openplanner.team/stops/X618aba", "https://tec.openplanner.team/stops/X618aka"], ["https://tec.openplanner.team/stops/Bfelequ2", "https://tec.openplanner.team/stops/Bfelrav1"], ["https://tec.openplanner.team/stops/LBAcent1", "https://tec.openplanner.team/stops/LSAchef1"], ["https://tec.openplanner.team/stops/Ljubonf1", "https://tec.openplanner.team/stops/Ljubonf2"], ["https://tec.openplanner.team/stops/Bpte1ma2", "https://tec.openplanner.team/stops/Bptecar1"], ["https://tec.openplanner.team/stops/X512aja", "https://tec.openplanner.team/stops/X713ada"], ["https://tec.openplanner.team/stops/H4oq225a", "https://tec.openplanner.team/stops/H4oq225b"], ["https://tec.openplanner.team/stops/H5rx113b", "https://tec.openplanner.team/stops/H5rx140a"], ["https://tec.openplanner.team/stops/H1ss350a", "https://tec.openplanner.team/stops/H1ss352b"], ["https://tec.openplanner.team/stops/N537aba", "https://tec.openplanner.team/stops/N562bla"], ["https://tec.openplanner.team/stops/N501ahb", "https://tec.openplanner.team/stops/N501aib"], ["https://tec.openplanner.team/stops/LBNgarn2", "https://tec.openplanner.team/stops/LeUgeme2"], ["https://tec.openplanner.team/stops/LkRrauw1", "https://tec.openplanner.team/stops/LrOgara2"], ["https://tec.openplanner.team/stops/H2ch103c", "https://tec.openplanner.team/stops/H2ch105a"], ["https://tec.openplanner.team/stops/NL80aub", "https://tec.openplanner.team/stops/NL80avb"], ["https://tec.openplanner.team/stops/N553abb", "https://tec.openplanner.team/stops/N553abc"], ["https://tec.openplanner.team/stops/LAYcorn1", "https://tec.openplanner.team/stops/LAYgare1"], ["https://tec.openplanner.team/stops/LLegern1", "https://tec.openplanner.team/stops/X548acb"], ["https://tec.openplanner.team/stops/X602abb", "https://tec.openplanner.team/stops/X623ajb"], ["https://tec.openplanner.team/stops/Llgamer3", "https://tec.openplanner.team/stops/Llgrema2"], ["https://tec.openplanner.team/stops/Llianix2", "https://tec.openplanner.team/stops/Llianix3"], ["https://tec.openplanner.team/stops/Llginte1", "https://tec.openplanner.team/stops/Llginte2"], ["https://tec.openplanner.team/stops/Bblamsp4", "https://tec.openplanner.team/stops/Bwatcbo1"], ["https://tec.openplanner.team/stops/Lchacie2", "https://tec.openplanner.team/stops/Lwaelme2"], ["https://tec.openplanner.team/stops/N548ada", "https://tec.openplanner.team/stops/N548asa"], ["https://tec.openplanner.team/stops/N308apa", "https://tec.openplanner.team/stops/N331afd"], ["https://tec.openplanner.team/stops/Cciecol1", "https://tec.openplanner.team/stops/NC02aub"], ["https://tec.openplanner.team/stops/LWNchar2", "https://tec.openplanner.team/stops/NL72afb"], ["https://tec.openplanner.team/stops/LmNstaa1", "https://tec.openplanner.team/stops/LmNstaa2"], ["https://tec.openplanner.team/stops/Bnivall2", "https://tec.openplanner.team/stops/Bnivfra2"], ["https://tec.openplanner.team/stops/X645aaa", "https://tec.openplanner.team/stops/X645aba"], ["https://tec.openplanner.team/stops/H4hg154a", "https://tec.openplanner.team/stops/H4mv189a"], ["https://tec.openplanner.team/stops/LATlena1", "https://tec.openplanner.team/stops/LATpatu2"], ["https://tec.openplanner.team/stops/LaLkirc*", "https://tec.openplanner.team/stops/X793aqa"], ["https://tec.openplanner.team/stops/Bernpla1", "https://tec.openplanner.team/stops/Bwlhpec1"], ["https://tec.openplanner.team/stops/N501iey", "https://tec.openplanner.team/stops/N501ilb"], ["https://tec.openplanner.team/stops/H1go174a", "https://tec.openplanner.team/stops/H1mb138b"], ["https://tec.openplanner.team/stops/LLxalle2", "https://tec.openplanner.team/stops/LLxcana1"], ["https://tec.openplanner.team/stops/Bhenmal2", "https://tec.openplanner.team/stops/Bhenpln2"], ["https://tec.openplanner.team/stops/N501hna", "https://tec.openplanner.team/stops/N501jub"], ["https://tec.openplanner.team/stops/H5fl103a", "https://tec.openplanner.team/stops/H5fl103b"], ["https://tec.openplanner.team/stops/N501afa", "https://tec.openplanner.team/stops/N501afb"], ["https://tec.openplanner.team/stops/LBTcarr4", "https://tec.openplanner.team/stops/LBTfoot2"], ["https://tec.openplanner.team/stops/X808abb", "https://tec.openplanner.team/stops/X808abc"], ["https://tec.openplanner.team/stops/N501axb", "https://tec.openplanner.team/stops/N501bbc"], ["https://tec.openplanner.team/stops/Bborche2", "https://tec.openplanner.team/stops/Bmonbor1"], ["https://tec.openplanner.team/stops/Caindsa1", "https://tec.openplanner.team/stops/Caindsa2"], ["https://tec.openplanner.team/stops/Ljecocc2", "https://tec.openplanner.team/stops/Ljecoqu1"], ["https://tec.openplanner.team/stops/NH01ama", "https://tec.openplanner.team/stops/NH01amb"], ["https://tec.openplanner.team/stops/N509aka", "https://tec.openplanner.team/stops/N509beb"], ["https://tec.openplanner.team/stops/X768ada", "https://tec.openplanner.team/stops/X768ahb"], ["https://tec.openplanner.team/stops/LHhmohe1", "https://tec.openplanner.team/stops/NL68afa"], ["https://tec.openplanner.team/stops/X896adb", "https://tec.openplanner.team/stops/X995aca"], ["https://tec.openplanner.team/stops/LWblesp1", "https://tec.openplanner.team/stops/X713ala"], ["https://tec.openplanner.team/stops/Lkiblan1", "https://tec.openplanner.team/stops/Llgvalu2"], ["https://tec.openplanner.team/stops/X615acb", "https://tec.openplanner.team/stops/X615aua"], ["https://tec.openplanner.team/stops/X746aeb", "https://tec.openplanner.team/stops/X749aea"], ["https://tec.openplanner.team/stops/Blasclo1", "https://tec.openplanner.team/stops/Blascsl1"], ["https://tec.openplanner.team/stops/Lsebico1", "https://tec.openplanner.team/stops/Lseptsa2"], ["https://tec.openplanner.team/stops/Lcegeor1", "https://tec.openplanner.team/stops/Lceleje1"], ["https://tec.openplanner.team/stops/LFyec--1", "https://tec.openplanner.team/stops/LFypont2"], ["https://tec.openplanner.team/stops/X766acb", "https://tec.openplanner.team/stops/X791aca"], ["https://tec.openplanner.team/stops/Berncim4", "https://tec.openplanner.team/stops/Bernegl4"], ["https://tec.openplanner.team/stops/X750bib", "https://tec.openplanner.team/stops/X750bja"], ["https://tec.openplanner.team/stops/X812afa", "https://tec.openplanner.team/stops/X812ata"], ["https://tec.openplanner.team/stops/H1as100b", "https://tec.openplanner.team/stops/H1ci106a"], ["https://tec.openplanner.team/stops/Llgcorn1", "https://tec.openplanner.team/stops/Llgcorn2"], ["https://tec.openplanner.team/stops/H4bc101c", "https://tec.openplanner.team/stops/H5bs103b"], ["https://tec.openplanner.team/stops/Lflprev1", "https://tec.openplanner.team/stops/Lrovand2"], ["https://tec.openplanner.team/stops/LHhelia1", "https://tec.openplanner.team/stops/LHhelia2"], ["https://tec.openplanner.team/stops/LFdeg--2", "https://tec.openplanner.team/stops/LFdeg--3"], ["https://tec.openplanner.team/stops/LSAtrih1", "https://tec.openplanner.team/stops/LSAtrih2"], ["https://tec.openplanner.team/stops/H2hg266b", "https://tec.openplanner.team/stops/H2hg269b"], ["https://tec.openplanner.team/stops/N534aua", "https://tec.openplanner.team/stops/N534aub"], ["https://tec.openplanner.team/stops/X949adb", "https://tec.openplanner.team/stops/X949aga"], ["https://tec.openplanner.team/stops/Bfelequ2", "https://tec.openplanner.team/stops/Bsengma2"], ["https://tec.openplanner.team/stops/LMastat4", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://tec.openplanner.team/stops/Ctychen3", "https://tec.openplanner.team/stops/N137aga"], ["https://tec.openplanner.team/stops/Ljhcarr1", "https://tec.openplanner.team/stops/Ljhsart1"], ["https://tec.openplanner.team/stops/H5fl102a", "https://tec.openplanner.team/stops/H5fl102c"], ["https://tec.openplanner.team/stops/N254afa", "https://tec.openplanner.team/stops/N254aga"], ["https://tec.openplanner.team/stops/H1si162b", "https://tec.openplanner.team/stops/H1si167b"], ["https://tec.openplanner.team/stops/LrEdic11", "https://tec.openplanner.team/stops/LrEkirc1"], ["https://tec.openplanner.team/stops/Becepri2", "https://tec.openplanner.team/stops/H2ec106b"], ["https://tec.openplanner.team/stops/LaMbull1", "https://tec.openplanner.team/stops/LaMhe421"], ["https://tec.openplanner.team/stops/LAmbach1", "https://tec.openplanner.team/stops/LAmvent3"], ["https://tec.openplanner.team/stops/Clrrhau2", "https://tec.openplanner.team/stops/CMpetr2"], ["https://tec.openplanner.team/stops/N103aha", "https://tec.openplanner.team/stops/N103ahb"], ["https://tec.openplanner.team/stops/Bhevcur1", "https://tec.openplanner.team/stops/Bhvlpla1"], ["https://tec.openplanner.team/stops/N566ada", "https://tec.openplanner.team/stops/N566afb"], ["https://tec.openplanner.team/stops/H2re168a", "https://tec.openplanner.team/stops/H2re174a"], ["https://tec.openplanner.team/stops/N551aca", "https://tec.openplanner.team/stops/N551aeb"], ["https://tec.openplanner.team/stops/N540aib", "https://tec.openplanner.team/stops/N540amb"], ["https://tec.openplanner.team/stops/X746aia", "https://tec.openplanner.team/stops/X746aja"], ["https://tec.openplanner.team/stops/Lmlcher1", "https://tec.openplanner.team/stops/Lmlscie2"], ["https://tec.openplanner.team/stops/Cbflong1", "https://tec.openplanner.team/stops/NC02aaa"], ["https://tec.openplanner.team/stops/LaMahof1", "https://tec.openplanner.team/stops/LaMpark2"], ["https://tec.openplanner.team/stops/Bwatcha2", "https://tec.openplanner.team/stops/Bwatfau2"], ["https://tec.openplanner.team/stops/Bnivga51", "https://tec.openplanner.team/stops/Bnivrwi1"], ["https://tec.openplanner.team/stops/Bsences1", "https://tec.openplanner.team/stops/Bsenpeu1"], ["https://tec.openplanner.team/stops/LCacoop1", "https://tec.openplanner.team/stops/LCacoop2"], ["https://tec.openplanner.team/stops/X812aga", "https://tec.openplanner.team/stops/X812aoa"], ["https://tec.openplanner.team/stops/Bcseeco1", "https://tec.openplanner.team/stops/Bcseeco2"], ["https://tec.openplanner.team/stops/LjedTEC2", "https://tec.openplanner.team/stops/Ljegare1"], ["https://tec.openplanner.team/stops/H4ag105b", "https://tec.openplanner.team/stops/H4br110a"], ["https://tec.openplanner.team/stops/X826abb", "https://tec.openplanner.team/stops/X826ahb"], ["https://tec.openplanner.team/stops/N113aea", "https://tec.openplanner.team/stops/N139aba"], ["https://tec.openplanner.team/stops/H1fa121b", "https://tec.openplanner.team/stops/H1pe132b"], ["https://tec.openplanner.team/stops/Csepier1", "https://tec.openplanner.team/stops/Csepote1"], ["https://tec.openplanner.team/stops/X901aoa", "https://tec.openplanner.team/stops/X901apb"], ["https://tec.openplanner.team/stops/LlAdorf1", "https://tec.openplanner.team/stops/LoUzent1"], ["https://tec.openplanner.team/stops/N511aja", "https://tec.openplanner.team/stops/N511asb"], ["https://tec.openplanner.team/stops/N260aea", "https://tec.openplanner.team/stops/N260afb"], ["https://tec.openplanner.team/stops/N135aja", "https://tec.openplanner.team/stops/N135bbb"], ["https://tec.openplanner.team/stops/Llgdelb2", "https://tec.openplanner.team/stops/Llgnati2"], ["https://tec.openplanner.team/stops/LhLbalt1", "https://tec.openplanner.team/stops/LmEdorf1"], ["https://tec.openplanner.team/stops/N550ada", "https://tec.openplanner.team/stops/N550amb"], ["https://tec.openplanner.team/stops/Cgyrdid1", "https://tec.openplanner.team/stops/Cgystbe1"], ["https://tec.openplanner.team/stops/LmNpost2", "https://tec.openplanner.team/stops/LmNstaa2"], ["https://tec.openplanner.team/stops/N101aja", "https://tec.openplanner.team/stops/N101ama"], ["https://tec.openplanner.team/stops/X342ada", "https://tec.openplanner.team/stops/X363aca"], ["https://tec.openplanner.team/stops/X617ahb", "https://tec.openplanner.team/stops/X618ajb"], ["https://tec.openplanner.team/stops/X879aab", "https://tec.openplanner.team/stops/X879acb"], ["https://tec.openplanner.team/stops/N115afb", "https://tec.openplanner.team/stops/N170agb"], ["https://tec.openplanner.team/stops/X720aab", "https://tec.openplanner.team/stops/X721asb"], ["https://tec.openplanner.team/stops/H4br108b", "https://tec.openplanner.team/stops/H4br110b"], ["https://tec.openplanner.team/stops/Bnivbau2", "https://tec.openplanner.team/stops/Bnivfhu1"], ["https://tec.openplanner.team/stops/X224ada", "https://tec.openplanner.team/stops/X224aha"], ["https://tec.openplanner.team/stops/N219acb", "https://tec.openplanner.team/stops/N219afa"], ["https://tec.openplanner.team/stops/LSHhade1", "https://tec.openplanner.team/stops/LSHhade2"], ["https://tec.openplanner.team/stops/X840aca", "https://tec.openplanner.team/stops/X840acb"], ["https://tec.openplanner.team/stops/X923afa", "https://tec.openplanner.team/stops/X923ara"], ["https://tec.openplanner.team/stops/LSGcarr2", "https://tec.openplanner.team/stops/LVEmoul1"], ["https://tec.openplanner.team/stops/H1wl125a", "https://tec.openplanner.team/stops/H1wl126a"], ["https://tec.openplanner.team/stops/LJelava2", "https://tec.openplanner.team/stops/LJesole1"], ["https://tec.openplanner.team/stops/X831aaa", "https://tec.openplanner.team/stops/X831aea"], ["https://tec.openplanner.team/stops/Crbgare1", "https://tec.openplanner.team/stops/Crbrgar2"], ["https://tec.openplanner.team/stops/Cflchap1", "https://tec.openplanner.team/stops/Cflsncb3"], ["https://tec.openplanner.team/stops/X618adb", "https://tec.openplanner.team/stops/X696ada"], ["https://tec.openplanner.team/stops/LLNcime1", "https://tec.openplanner.team/stops/LLNcruc1"], ["https://tec.openplanner.team/stops/X826aca", "https://tec.openplanner.team/stops/X826acb"], ["https://tec.openplanner.team/stops/X823ada", "https://tec.openplanner.team/stops/X823aff"], ["https://tec.openplanner.team/stops/H1gh145a", "https://tec.openplanner.team/stops/H1gh158b"], ["https://tec.openplanner.team/stops/Cmtfoye2", "https://tec.openplanner.team/stops/Cmtgrim1"], ["https://tec.openplanner.team/stops/LBieg--3", "https://tec.openplanner.team/stops/LBivill1"], ["https://tec.openplanner.team/stops/NC14apa", "https://tec.openplanner.team/stops/NC14aua"], ["https://tec.openplanner.team/stops/LHUdelc2", "https://tec.openplanner.team/stops/LHUgdpl1"], ["https://tec.openplanner.team/stops/H4ty302b", "https://tec.openplanner.team/stops/H4ty330c"], ["https://tec.openplanner.team/stops/LSPcomm2", "https://tec.openplanner.team/stops/LSPplat2"], ["https://tec.openplanner.team/stops/LBBcamp1", "https://tec.openplanner.team/stops/LBBlaga1"], ["https://tec.openplanner.team/stops/X601acb", "https://tec.openplanner.team/stops/X601aqb"], ["https://tec.openplanner.team/stops/Lhurigu1", "https://tec.openplanner.team/stops/Lmnhorl3"], ["https://tec.openplanner.team/stops/Bbougbl2", "https://tec.openplanner.team/stops/Btanvil2"], ["https://tec.openplanner.team/stops/H4mo145a", "https://tec.openplanner.team/stops/H4mo165b"], ["https://tec.openplanner.team/stops/Bsdapir1", "https://tec.openplanner.team/stops/Csdpira2"], ["https://tec.openplanner.team/stops/N501eoa", "https://tec.openplanner.team/stops/N501eob"], ["https://tec.openplanner.team/stops/LHegame3", "https://tec.openplanner.team/stops/LOUbleu2"], ["https://tec.openplanner.team/stops/Bbsicas2", "https://tec.openplanner.team/stops/Blilgar1"], ["https://tec.openplanner.team/stops/H5st162b", "https://tec.openplanner.team/stops/H5st168b"], ["https://tec.openplanner.team/stops/Llgatel1", "https://tec.openplanner.team/stops/Llgatel2"], ["https://tec.openplanner.team/stops/H1ca104b", "https://tec.openplanner.team/stops/H1ca184a"], ["https://tec.openplanner.team/stops/LbOre3b2", "https://tec.openplanner.team/stops/LbOvith1"], ["https://tec.openplanner.team/stops/H5rx149a", "https://tec.openplanner.team/stops/H5rx151a"], ["https://tec.openplanner.team/stops/X660aia", "https://tec.openplanner.team/stops/X660aja"], ["https://tec.openplanner.team/stops/Cmyland1", "https://tec.openplanner.team/stops/Cmyland5"], ["https://tec.openplanner.team/stops/Lagptba2", "https://tec.openplanner.team/stops/Lgreg--1"], ["https://tec.openplanner.team/stops/Louairl1", "https://tec.openplanner.team/stops/Lscstan3"], ["https://tec.openplanner.team/stops/Lghmeun3", "https://tec.openplanner.team/stops/Ljetout2"], ["https://tec.openplanner.team/stops/X651aaa", "https://tec.openplanner.team/stops/X651abb"], ["https://tec.openplanner.team/stops/X839afb", "https://tec.openplanner.team/stops/X840abb"], ["https://tec.openplanner.team/stops/X986aca", "https://tec.openplanner.team/stops/X986acb"], ["https://tec.openplanner.team/stops/H1sy138b", "https://tec.openplanner.team/stops/H1sy144c"], ["https://tec.openplanner.team/stops/N215acb", "https://tec.openplanner.team/stops/N261aea"], ["https://tec.openplanner.team/stops/X818aha", "https://tec.openplanner.team/stops/X818ahb"], ["https://tec.openplanner.team/stops/Csedoua2", "https://tec.openplanner.team/stops/Csemacq4"], ["https://tec.openplanner.team/stops/Lhrmine1", "https://tec.openplanner.team/stops/Lhrmine2"], ["https://tec.openplanner.team/stops/LNCdoma2", "https://tec.openplanner.team/stops/LNCdoma3"], ["https://tec.openplanner.team/stops/Ccupdes2", "https://tec.openplanner.team/stops/Ccupetp1"], ["https://tec.openplanner.team/stops/Buccpor1", "https://tec.openplanner.team/stops/Buccpor2"], ["https://tec.openplanner.team/stops/LTNegli2", "https://tec.openplanner.team/stops/LTNsarl2"], ["https://tec.openplanner.team/stops/Bcsegar1", "https://tec.openplanner.team/stops/Bmoufil2"], ["https://tec.openplanner.team/stops/N512aib", "https://tec.openplanner.team/stops/NL68adb"], ["https://tec.openplanner.team/stops/H1hr116b", "https://tec.openplanner.team/stops/H1hr128c"], ["https://tec.openplanner.team/stops/N513arb", "https://tec.openplanner.team/stops/N513axb"], ["https://tec.openplanner.team/stops/H2gy101b", "https://tec.openplanner.team/stops/H2gy109b"], ["https://tec.openplanner.team/stops/LGLchap2", "https://tec.openplanner.team/stops/LGLgare*"], ["https://tec.openplanner.team/stops/N539bcb", "https://tec.openplanner.team/stops/N540arb"], ["https://tec.openplanner.team/stops/LEBeg--2", "https://tec.openplanner.team/stops/LWOrout2"], ["https://tec.openplanner.team/stops/NL78ada", "https://tec.openplanner.team/stops/NL78adb"], ["https://tec.openplanner.team/stops/LPutins2", "https://tec.openplanner.team/stops/LrDschl2"], ["https://tec.openplanner.team/stops/X619aea", "https://tec.openplanner.team/stops/X619aeb"], ["https://tec.openplanner.team/stops/H1bb119b", "https://tec.openplanner.team/stops/H1bb120a"], ["https://tec.openplanner.team/stops/X836adb", "https://tec.openplanner.team/stops/X836aea"], ["https://tec.openplanner.team/stops/N538axb", "https://tec.openplanner.team/stops/N538bbb"], ["https://tec.openplanner.team/stops/H2pe155b", "https://tec.openplanner.team/stops/H2pe159b"], ["https://tec.openplanner.team/stops/LHUec--2", "https://tec.openplanner.team/stops/LHUfonc2"], ["https://tec.openplanner.team/stops/Lvisere2", "https://tec.openplanner.team/stops/Lviweri2"], ["https://tec.openplanner.team/stops/N501ffa", "https://tec.openplanner.team/stops/N501fqa"], ["https://tec.openplanner.team/stops/N343aib", "https://tec.openplanner.team/stops/X345aca"], ["https://tec.openplanner.team/stops/LVSeg--2", "https://tec.openplanner.team/stops/LVStige1"], ["https://tec.openplanner.team/stops/Llgcham4", "https://tec.openplanner.team/stops/Llgmulh2"], ["https://tec.openplanner.team/stops/X512aia", "https://tec.openplanner.team/stops/X595aac"], ["https://tec.openplanner.team/stops/N548aga", "https://tec.openplanner.team/stops/N548aia"], ["https://tec.openplanner.team/stops/Cjucouc1", "https://tec.openplanner.team/stops/Clooues4"], ["https://tec.openplanner.team/stops/LWibare2", "https://tec.openplanner.team/stops/LWieg--*"], ["https://tec.openplanner.team/stops/N573ahb", "https://tec.openplanner.team/stops/N573aib"], ["https://tec.openplanner.team/stops/X790aca", "https://tec.openplanner.team/stops/X790aeb"], ["https://tec.openplanner.team/stops/X781aga", "https://tec.openplanner.team/stops/X781ahb"], ["https://tec.openplanner.team/stops/H1gy112a", "https://tec.openplanner.team/stops/H1gy113a"], ["https://tec.openplanner.team/stops/LScchpl1", "https://tec.openplanner.team/stops/LSceg--3"], ["https://tec.openplanner.team/stops/H4vx363a", "https://tec.openplanner.team/stops/H4vx366a"], ["https://tec.openplanner.team/stops/X754axa", "https://tec.openplanner.team/stops/X754aza"], ["https://tec.openplanner.team/stops/X542aaa", "https://tec.openplanner.team/stops/X542acb"], ["https://tec.openplanner.team/stops/Bgnvoha1", "https://tec.openplanner.team/stops/Bgnvoha6"], ["https://tec.openplanner.team/stops/LhP25--1", "https://tec.openplanner.team/stops/LmImirf2"], ["https://tec.openplanner.team/stops/H1cu114b", "https://tec.openplanner.team/stops/H1cu131b"], ["https://tec.openplanner.team/stops/H4po126a", "https://tec.openplanner.team/stops/H4po126b"], ["https://tec.openplanner.team/stops/H1hn203b", "https://tec.openplanner.team/stops/H1ms312b"], ["https://tec.openplanner.team/stops/Csecout2", "https://tec.openplanner.team/stops/Csepost2"], ["https://tec.openplanner.team/stops/Cfrcoop4", "https://tec.openplanner.team/stops/Cfrtry1"], ["https://tec.openplanner.team/stops/H1mb136b", "https://tec.openplanner.team/stops/H1mb138b"], ["https://tec.openplanner.team/stops/H4ss153a", "https://tec.openplanner.team/stops/H4ss153b"], ["https://tec.openplanner.team/stops/X818aia", "https://tec.openplanner.team/stops/X822ahb"], ["https://tec.openplanner.team/stops/N547aab", "https://tec.openplanner.team/stops/N547abb"], ["https://tec.openplanner.team/stops/LeLkalt1", "https://tec.openplanner.team/stops/LeLsied2"], ["https://tec.openplanner.team/stops/H1ba102a", "https://tec.openplanner.team/stops/H1ba106b"], ["https://tec.openplanner.team/stops/Bosqcar1", "https://tec.openplanner.team/stops/Bvirduj2"], ["https://tec.openplanner.team/stops/LHaeg--1", "https://tec.openplanner.team/stops/LHanest2"], ["https://tec.openplanner.team/stops/X982caa", "https://tec.openplanner.team/stops/X982cab"], ["https://tec.openplanner.team/stops/N204ajb", "https://tec.openplanner.team/stops/N204alb"], ["https://tec.openplanner.team/stops/H1er107a", "https://tec.openplanner.team/stops/H1er112a"], ["https://tec.openplanner.team/stops/LFHsucr2", "https://tec.openplanner.team/stops/LHolexh1"], ["https://tec.openplanner.team/stops/LbTkran2", "https://tec.openplanner.team/stops/LbTmons2"], ["https://tec.openplanner.team/stops/LXhhaka1", "https://tec.openplanner.team/stops/LXhhaka2"], ["https://tec.openplanner.team/stops/Ctrstro1", "https://tec.openplanner.team/stops/H2tz120a"], ["https://tec.openplanner.team/stops/Brsgfbl1", "https://tec.openplanner.team/stops/Brsgfbl3"], ["https://tec.openplanner.team/stops/Lfhchaf1", "https://tec.openplanner.team/stops/Livpost2"], ["https://tec.openplanner.team/stops/Bbalvil1", "https://tec.openplanner.team/stops/N530agb"], ["https://tec.openplanner.team/stops/Bblague2", "https://tec.openplanner.team/stops/Bblahop1"], ["https://tec.openplanner.team/stops/H4es111b", "https://tec.openplanner.team/stops/H4ln129b"], ["https://tec.openplanner.team/stops/Bgzddfh2", "https://tec.openplanner.team/stops/Bgzdegl4"], ["https://tec.openplanner.team/stops/LrAgier2", "https://tec.openplanner.team/stops/LrAputz1"], ["https://tec.openplanner.team/stops/N120afa", "https://tec.openplanner.team/stops/N120anb"], ["https://tec.openplanner.team/stops/Cnacroc2", "https://tec.openplanner.team/stops/Cnanoir2"], ["https://tec.openplanner.team/stops/Cmafafe1", "https://tec.openplanner.team/stops/Cmafafe2"], ["https://tec.openplanner.team/stops/X718aea", "https://tec.openplanner.team/stops/X718aha"], ["https://tec.openplanner.team/stops/H1wi152a", "https://tec.openplanner.team/stops/H1wi152c"], ["https://tec.openplanner.team/stops/H4do108a", "https://tec.openplanner.team/stops/H4eh100b"], ["https://tec.openplanner.team/stops/N529adb", "https://tec.openplanner.team/stops/N529aia"], ["https://tec.openplanner.team/stops/X601cba", "https://tec.openplanner.team/stops/X601cca"], ["https://tec.openplanner.team/stops/H5pe129b", "https://tec.openplanner.team/stops/H5pe149a"], ["https://tec.openplanner.team/stops/X615ayb", "https://tec.openplanner.team/stops/X615bgb"], ["https://tec.openplanner.team/stops/X602acb", "https://tec.openplanner.team/stops/X602afa"], ["https://tec.openplanner.team/stops/Bhen5ma1", "https://tec.openplanner.team/stops/Bhenfer1"], ["https://tec.openplanner.team/stops/LRIhous1", "https://tec.openplanner.team/stops/LVIlore2"], ["https://tec.openplanner.team/stops/X613ada", "https://tec.openplanner.team/stops/X613adb"], ["https://tec.openplanner.team/stops/LHYec--1", "https://tec.openplanner.team/stops/LHYec--2"], ["https://tec.openplanner.team/stops/Barcast2", "https://tec.openplanner.team/stops/Bgzdcwa2"], ["https://tec.openplanner.team/stops/LMHcant2", "https://tec.openplanner.team/stops/NL73adb"], ["https://tec.openplanner.team/stops/LhEbruc2", "https://tec.openplanner.team/stops/LhEcolo1"], ["https://tec.openplanner.team/stops/H1gr122b", "https://tec.openplanner.team/stops/H1mk116b"], ["https://tec.openplanner.team/stops/Bmrllgr2", "https://tec.openplanner.team/stops/Bpiehte2"], ["https://tec.openplanner.team/stops/LLAbure1", "https://tec.openplanner.team/stops/LLAvi651"], ["https://tec.openplanner.team/stops/X347aja", "https://tec.openplanner.team/stops/X890aea"], ["https://tec.openplanner.team/stops/N232bja", "https://tec.openplanner.team/stops/N261ada"], ["https://tec.openplanner.team/stops/H2mg143a", "https://tec.openplanner.team/stops/H2mg143b"], ["https://tec.openplanner.team/stops/LGHplai2", "https://tec.openplanner.team/stops/X542aea"], ["https://tec.openplanner.team/stops/X723aeb", "https://tec.openplanner.team/stops/X765aab"], ["https://tec.openplanner.team/stops/Bhenfer2", "https://tec.openplanner.team/stops/Bhenfla1"], ["https://tec.openplanner.team/stops/LmDkoel1", "https://tec.openplanner.team/stops/LmDkoel2"], ["https://tec.openplanner.team/stops/Bgercen2", "https://tec.openplanner.team/stops/Bgermco1"], ["https://tec.openplanner.team/stops/Brsgleq2", "https://tec.openplanner.team/stops/Buccpes1"], ["https://tec.openplanner.team/stops/Llmhalt1", "https://tec.openplanner.team/stops/Llmhalt2"], ["https://tec.openplanner.team/stops/LWbburn1", "https://tec.openplanner.team/stops/X512aia"], ["https://tec.openplanner.team/stops/N539acb", "https://tec.openplanner.team/stops/N539aja"], ["https://tec.openplanner.team/stops/Lhrespe2", "https://tec.openplanner.team/stops/Lhrpwan2"], ["https://tec.openplanner.team/stops/H2mg136a", "https://tec.openplanner.team/stops/H2mg140b"], ["https://tec.openplanner.team/stops/X728ada", "https://tec.openplanner.team/stops/X746ama"], ["https://tec.openplanner.team/stops/H4wn123a", "https://tec.openplanner.team/stops/H4wn123b"], ["https://tec.openplanner.team/stops/LBkbamb1", "https://tec.openplanner.team/stops/LkEl3251"], ["https://tec.openplanner.team/stops/NL74aca", "https://tec.openplanner.team/stops/NL74acb"], ["https://tec.openplanner.team/stops/NL76aha", "https://tec.openplanner.team/stops/NL76aia"], ["https://tec.openplanner.team/stops/Clihame1", "https://tec.openplanner.team/stops/Ctmmonu2"], ["https://tec.openplanner.team/stops/LSGbail2", "https://tec.openplanner.team/stops/LSGcent2"], ["https://tec.openplanner.team/stops/LkAkirc2", "https://tec.openplanner.team/stops/LkAsonn1"], ["https://tec.openplanner.team/stops/Ccaegli1", "https://tec.openplanner.team/stops/Ccaegli4"], ["https://tec.openplanner.team/stops/X364aab", "https://tec.openplanner.team/stops/X371ajb"], ["https://tec.openplanner.team/stops/H1hn202b", "https://tec.openplanner.team/stops/H1hn203b"], ["https://tec.openplanner.team/stops/Cmonvci1", "https://tec.openplanner.team/stops/Cmoprov2"], ["https://tec.openplanner.team/stops/H1au113a", "https://tec.openplanner.team/stops/H1au114a"], ["https://tec.openplanner.team/stops/H4hn113b", "https://tec.openplanner.team/stops/H4hn114b"], ["https://tec.openplanner.team/stops/NL68aab", "https://tec.openplanner.team/stops/NL68acb"], ["https://tec.openplanner.team/stops/Cchsud12", "https://tec.openplanner.team/stops/NC01aab"], ["https://tec.openplanner.team/stops/LAmarbo1", "https://tec.openplanner.team/stops/LAmcorn2"], ["https://tec.openplanner.team/stops/Bnetrbr2", "https://tec.openplanner.team/stops/Bnetrtb2"], ["https://tec.openplanner.team/stops/Cbmplac2", "https://tec.openplanner.team/stops/Cbmzoni2"], ["https://tec.openplanner.team/stops/LHUalbe1", "https://tec.openplanner.team/stops/LHUalbe2"], ["https://tec.openplanner.team/stops/N513atb", "https://tec.openplanner.team/stops/N520aha"], ["https://tec.openplanner.team/stops/Ladegli2", "https://tec.openplanner.team/stops/Lveptre2"], ["https://tec.openplanner.team/stops/LWApr%C3%A9s4", "https://tec.openplanner.team/stops/LWAwegg2"], ["https://tec.openplanner.team/stops/H1cu119b", "https://tec.openplanner.team/stops/H1je212b"], ["https://tec.openplanner.team/stops/Bnodeco1", "https://tec.openplanner.team/stops/Bnodtir4"], ["https://tec.openplanner.team/stops/H1er105b", "https://tec.openplanner.team/stops/H1er107a"], ["https://tec.openplanner.team/stops/H5bl117a", "https://tec.openplanner.team/stops/H5bl118a"], ["https://tec.openplanner.team/stops/LHGbeur1", "https://tec.openplanner.team/stops/LVlplan2"], ["https://tec.openplanner.team/stops/Cmewaya1", "https://tec.openplanner.team/stops/Cmewaya2"], ["https://tec.openplanner.team/stops/LhOokat2", "https://tec.openplanner.team/stops/LhZkape1"], ["https://tec.openplanner.team/stops/X808aab", "https://tec.openplanner.team/stops/X808amb"], ["https://tec.openplanner.team/stops/LERpouh1", "https://tec.openplanner.team/stops/LHrbast1"], ["https://tec.openplanner.team/stops/N203aeb", "https://tec.openplanner.team/stops/N204agb"], ["https://tec.openplanner.team/stops/Lmoboeu1", "https://tec.openplanner.team/stops/Lmoknae1"], ["https://tec.openplanner.team/stops/H4fl114b", "https://tec.openplanner.team/stops/H4fl179a"], ["https://tec.openplanner.team/stops/N331aga", "https://tec.openplanner.team/stops/N331ahb"], ["https://tec.openplanner.team/stops/Bhalalb2", "https://tec.openplanner.team/stops/Bhalgar1"], ["https://tec.openplanner.team/stops/H4ru239a", "https://tec.openplanner.team/stops/H4ru245b"], ["https://tec.openplanner.team/stops/N544agb", "https://tec.openplanner.team/stops/N545abb"], ["https://tec.openplanner.team/stops/Lghalle1", "https://tec.openplanner.team/stops/Lghterm*"], ["https://tec.openplanner.team/stops/H4ga162a", "https://tec.openplanner.team/stops/H4ga164a"], ["https://tec.openplanner.team/stops/N551acb", "https://tec.openplanner.team/stops/N577aha"], ["https://tec.openplanner.team/stops/LPRcha-*", "https://tec.openplanner.team/stops/LPRmc--3"], ["https://tec.openplanner.team/stops/Csefour1", "https://tec.openplanner.team/stops/NH01apa"], ["https://tec.openplanner.team/stops/X625aba", "https://tec.openplanner.team/stops/X625aea"], ["https://tec.openplanner.team/stops/H4oe147b", "https://tec.openplanner.team/stops/H4oe152a"], ["https://tec.openplanner.team/stops/H4ne131a", "https://tec.openplanner.team/stops/H4te251a"], ["https://tec.openplanner.team/stops/Bbchgod1", "https://tec.openplanner.team/stops/Bcbqa361"], ["https://tec.openplanner.team/stops/H2lc168a", "https://tec.openplanner.team/stops/H2ll200a"], ["https://tec.openplanner.team/stops/N232aia", "https://tec.openplanner.team/stops/N232cda"], ["https://tec.openplanner.team/stops/LFLcarr1", "https://tec.openplanner.team/stops/LFLcarr2"], ["https://tec.openplanner.team/stops/H4bl105b", "https://tec.openplanner.team/stops/H4ga160a"], ["https://tec.openplanner.team/stops/N111aaa", "https://tec.openplanner.team/stops/N113aba"], ["https://tec.openplanner.team/stops/X605acb", "https://tec.openplanner.team/stops/X605adb"], ["https://tec.openplanner.team/stops/LBMecol2", "https://tec.openplanner.team/stops/X982bqa"], ["https://tec.openplanner.team/stops/X623aia", "https://tec.openplanner.team/stops/X624aaa"], ["https://tec.openplanner.team/stops/LRRandr2", "https://tec.openplanner.team/stops/LRRoser2"], ["https://tec.openplanner.team/stops/LBItnt-*", "https://tec.openplanner.team/stops/Lmlrosa1"], ["https://tec.openplanner.team/stops/Bnivpeu2", "https://tec.openplanner.team/stops/Bnivsto1"], ["https://tec.openplanner.team/stops/X992aac", "https://tec.openplanner.team/stops/X992aca"], ["https://tec.openplanner.team/stops/H4fr393a", "https://tec.openplanner.team/stops/H4ka188a"], ["https://tec.openplanner.team/stops/Lvebiol1", "https://tec.openplanner.team/stops/Lvepala5"], ["https://tec.openplanner.team/stops/H1cd112b", "https://tec.openplanner.team/stops/H1cd113b"], ["https://tec.openplanner.team/stops/X634aab", "https://tec.openplanner.team/stops/X634abb"], ["https://tec.openplanner.team/stops/Bottcli2", "https://tec.openplanner.team/stops/Bottegl3"], ["https://tec.openplanner.team/stops/Bheneco1", "https://tec.openplanner.team/stops/Bheneco2"], ["https://tec.openplanner.team/stops/H1ni316b", "https://tec.openplanner.team/stops/H1ni319b"], ["https://tec.openplanner.team/stops/X937aab", "https://tec.openplanner.team/stops/X939ahb"], ["https://tec.openplanner.team/stops/Ccabois1", "https://tec.openplanner.team/stops/Ccabois2"], ["https://tec.openplanner.team/stops/X717aba", "https://tec.openplanner.team/stops/X782ada"], ["https://tec.openplanner.team/stops/LRUhama2", "https://tec.openplanner.team/stops/LTymahr1"], ["https://tec.openplanner.team/stops/H4ty336b", "https://tec.openplanner.team/stops/H4ty345a"], ["https://tec.openplanner.team/stops/Llglys-1", "https://tec.openplanner.team/stops/Llglys-2"], ["https://tec.openplanner.team/stops/Cfaauln2", "https://tec.openplanner.team/stops/Cfabaty1"], ["https://tec.openplanner.team/stops/Llgaba-1", "https://tec.openplanner.team/stops/Llgcouv4"], ["https://tec.openplanner.team/stops/Cdametr2", "https://tec.openplanner.team/stops/Cdaptca1"], ["https://tec.openplanner.team/stops/N141alb", "https://tec.openplanner.team/stops/N143aaa"], ["https://tec.openplanner.team/stops/H2ch104b", "https://tec.openplanner.team/stops/H2ch110a"], ["https://tec.openplanner.team/stops/H1so135c", "https://tec.openplanner.team/stops/H1so145a"], ["https://tec.openplanner.team/stops/LHGbeur2", "https://tec.openplanner.team/stops/LHGikea1"], ["https://tec.openplanner.team/stops/N509aob", "https://tec.openplanner.team/stops/N509arb"], ["https://tec.openplanner.team/stops/X725bfa", "https://tec.openplanner.team/stops/X767aib"], ["https://tec.openplanner.team/stops/N501atb", "https://tec.openplanner.team/stops/N501bab"], ["https://tec.openplanner.team/stops/H1ro134a", "https://tec.openplanner.team/stops/H1ro134b"], ["https://tec.openplanner.team/stops/H4ta130a", "https://tec.openplanner.team/stops/H4ta130b"], ["https://tec.openplanner.team/stops/H4an105a", "https://tec.openplanner.team/stops/H4rs117a"], ["https://tec.openplanner.team/stops/Llghoch2", "https://tec.openplanner.team/stops/Llgmart1"], ["https://tec.openplanner.team/stops/Bettcha1", "https://tec.openplanner.team/stops/Bettcha3"], ["https://tec.openplanner.team/stops/LrEborn2", "https://tec.openplanner.team/stops/LrEkais1"], ["https://tec.openplanner.team/stops/H1ms263b", "https://tec.openplanner.team/stops/H1ms269b"], ["https://tec.openplanner.team/stops/N517aea", "https://tec.openplanner.team/stops/N517afa"], ["https://tec.openplanner.team/stops/H1gn152a", "https://tec.openplanner.team/stops/H1ol146b"], ["https://tec.openplanner.team/stops/Lcepepi2", "https://tec.openplanner.team/stops/Lgrcral1"], ["https://tec.openplanner.team/stops/LREraph1", "https://tec.openplanner.team/stops/LREraph2"], ["https://tec.openplanner.team/stops/H1ht131a", "https://tec.openplanner.team/stops/H1ht131b"], ["https://tec.openplanner.team/stops/Lghflot2", "https://tec.openplanner.team/stops/Lghflot4"], ["https://tec.openplanner.team/stops/Bcsegar1", "https://tec.openplanner.team/stops/Bcsemon2"], ["https://tec.openplanner.team/stops/X947acb", "https://tec.openplanner.team/stops/X947afa"], ["https://tec.openplanner.team/stops/N501kma", "https://tec.openplanner.team/stops/N501kmz"], ["https://tec.openplanner.team/stops/H4rm107c", "https://tec.openplanner.team/stops/H4rm113b"], ["https://tec.openplanner.team/stops/Lmaelhe1", "https://tec.openplanner.team/stops/LPRfond2"], ["https://tec.openplanner.team/stops/LCxbeau2", "https://tec.openplanner.team/stops/LCxeg--1"], ["https://tec.openplanner.team/stops/Lemmath2", "https://tec.openplanner.team/stops/Lemsart2"], ["https://tec.openplanner.team/stops/LLNcruc2", "https://tec.openplanner.team/stops/LLNeg--1"], ["https://tec.openplanner.team/stops/LAMhaut2", "https://tec.openplanner.team/stops/LAMvert1"], ["https://tec.openplanner.team/stops/Bsampli2", "https://tec.openplanner.team/stops/NC12aab"], ["https://tec.openplanner.team/stops/LMOc50-1", "https://tec.openplanner.team/stops/LMOlens3"], ["https://tec.openplanner.team/stops/Cfrmoul2", "https://tec.openplanner.team/stops/Cliburl2"], ["https://tec.openplanner.team/stops/Crofrio1", "https://tec.openplanner.team/stops/Crorpai1"], ["https://tec.openplanner.team/stops/LmDgeme1", "https://tec.openplanner.team/stops/LmDkape1"], ["https://tec.openplanner.team/stops/LBGroma1", "https://tec.openplanner.team/stops/LBGroma2"], ["https://tec.openplanner.team/stops/Cgrgrce2", "https://tec.openplanner.team/stops/N160aea"], ["https://tec.openplanner.team/stops/N557aeb", "https://tec.openplanner.team/stops/N560abb"], ["https://tec.openplanner.team/stops/X952aca", "https://tec.openplanner.team/stops/X952ahb"], ["https://tec.openplanner.team/stops/H5rx139a", "https://tec.openplanner.team/stops/H5rx145a"], ["https://tec.openplanner.team/stops/Cdahtvi1", "https://tec.openplanner.team/stops/Cdamare1"], ["https://tec.openplanner.team/stops/Lhrdeme4", "https://tec.openplanner.team/stops/Lhrhome2"], ["https://tec.openplanner.team/stops/LFypfei1", "https://tec.openplanner.team/stops/LwYkreu1"], ["https://tec.openplanner.team/stops/LLrbano1", "https://tec.openplanner.team/stops/LLrjeho1"], ["https://tec.openplanner.team/stops/LFPdeme1", "https://tec.openplanner.team/stops/LFPzwaa2"], ["https://tec.openplanner.team/stops/LBTchai1", "https://tec.openplanner.team/stops/LBTxhen1"], ["https://tec.openplanner.team/stops/LLUtrol1", "https://tec.openplanner.team/stops/LLUvent6"], ["https://tec.openplanner.team/stops/NL72afa", "https://tec.openplanner.team/stops/NL76acb"], ["https://tec.openplanner.team/stops/H4tp145b", "https://tec.openplanner.team/stops/H4tp147a"], ["https://tec.openplanner.team/stops/N529aea", "https://tec.openplanner.team/stops/N576ama"], ["https://tec.openplanner.team/stops/Bpiehvi1", "https://tec.openplanner.team/stops/Bpielon1"], ["https://tec.openplanner.team/stops/LBEcroi2", "https://tec.openplanner.team/stops/LBEtroo2"], ["https://tec.openplanner.team/stops/Lhrchar3", "https://tec.openplanner.team/stops/Lhrchar4"], ["https://tec.openplanner.team/stops/N118apa", "https://tec.openplanner.team/stops/N118aqa"], ["https://tec.openplanner.team/stops/LFTec--2", "https://tec.openplanner.team/stops/LFTeg--1"], ["https://tec.openplanner.team/stops/LSZarze4", "https://tec.openplanner.team/stops/LSZsolw4"], ["https://tec.openplanner.team/stops/Bwaakap1", "https://tec.openplanner.team/stops/Bwaanwi2"], ["https://tec.openplanner.team/stops/X901aja", "https://tec.openplanner.team/stops/X901aqa"], ["https://tec.openplanner.team/stops/X687ada", "https://tec.openplanner.team/stops/X687afa"], ["https://tec.openplanner.team/stops/Cbmind2", "https://tec.openplanner.team/stops/Cbmind4"], ["https://tec.openplanner.team/stops/Lhuderu1", "https://tec.openplanner.team/stops/Lhueg--2"], ["https://tec.openplanner.team/stops/LVIecol1", "https://tec.openplanner.team/stops/LVIecol2"], ["https://tec.openplanner.team/stops/Bpecdel1", "https://tec.openplanner.team/stops/Bpecvme1"], ["https://tec.openplanner.team/stops/X840aea", "https://tec.openplanner.team/stops/X840aeb"], ["https://tec.openplanner.team/stops/X641ada", "https://tec.openplanner.team/stops/X641ajb"], ["https://tec.openplanner.team/stops/H2le153a", "https://tec.openplanner.team/stops/H2ml113a"], ["https://tec.openplanner.team/stops/X644aca", "https://tec.openplanner.team/stops/X644ada"], ["https://tec.openplanner.team/stops/Llglonh1", "https://tec.openplanner.team/stops/LlgOPER5"], ["https://tec.openplanner.team/stops/Blimbet3", "https://tec.openplanner.team/stops/Bottpre2"], ["https://tec.openplanner.team/stops/X938adb", "https://tec.openplanner.team/stops/X939aga"], ["https://tec.openplanner.team/stops/H1fr112a", "https://tec.openplanner.team/stops/H1fr127a"], ["https://tec.openplanner.team/stops/LhUrich1", "https://tec.openplanner.team/stops/LmUkape1"], ["https://tec.openplanner.team/stops/Bclgegl2", "https://tec.openplanner.team/stops/Bnilreg2"], ["https://tec.openplanner.team/stops/H4pi133b", "https://tec.openplanner.team/stops/H4ws160b"], ["https://tec.openplanner.team/stops/Cstbasc1", "https://tec.openplanner.team/stops/Cstbasc2"], ["https://tec.openplanner.team/stops/X641aba", "https://tec.openplanner.team/stops/X641alb"], ["https://tec.openplanner.team/stops/LRRlimi1", "https://tec.openplanner.team/stops/LRRlimi2"], ["https://tec.openplanner.team/stops/LhOfrie1", "https://tec.openplanner.team/stops/LhOzent1"], ["https://tec.openplanner.team/stops/X725aya", "https://tec.openplanner.team/stops/X725bab"], ["https://tec.openplanner.team/stops/X941aba", "https://tec.openplanner.team/stops/X941ada"], ["https://tec.openplanner.team/stops/H5rx115a", "https://tec.openplanner.team/stops/H5rx129b"], ["https://tec.openplanner.team/stops/X725aib", "https://tec.openplanner.team/stops/X725ajb"], ["https://tec.openplanner.team/stops/LBjflor2", "https://tec.openplanner.team/stops/X576aib"], ["https://tec.openplanner.team/stops/Ladboti2", "https://tec.openplanner.team/stops/Ladotto2"], ["https://tec.openplanner.team/stops/Cblcent2", "https://tec.openplanner.team/stops/Cmbcime4"], ["https://tec.openplanner.team/stops/Cnachat1", "https://tec.openplanner.team/stops/Cnachat2"], ["https://tec.openplanner.team/stops/H4we137c", "https://tec.openplanner.team/stops/H4we137d"], ["https://tec.openplanner.team/stops/H4fr139a", "https://tec.openplanner.team/stops/H4fr146a"], ["https://tec.openplanner.team/stops/LeYauss1", "https://tec.openplanner.team/stops/LeYauss2"], ["https://tec.openplanner.team/stops/X601bla", "https://tec.openplanner.team/stops/X612aba"], ["https://tec.openplanner.team/stops/LAascie2", "https://tec.openplanner.team/stops/X261adb"], ["https://tec.openplanner.team/stops/Cgyplst2", "https://tec.openplanner.team/stops/CMmarab1"], ["https://tec.openplanner.team/stops/H4br110a", "https://tec.openplanner.team/stops/H4cl112a"], ["https://tec.openplanner.team/stops/LvAkirc1", "https://tec.openplanner.team/stops/LvAkirc2"], ["https://tec.openplanner.team/stops/Lrchype1", "https://tec.openplanner.team/stops/Lrctec-1"], ["https://tec.openplanner.team/stops/H2lc145b", "https://tec.openplanner.team/stops/H2lc146a"], ["https://tec.openplanner.team/stops/N534ata", "https://tec.openplanner.team/stops/N534atb"], ["https://tec.openplanner.team/stops/Loualbe2", "https://tec.openplanner.team/stops/Louvira1"], ["https://tec.openplanner.team/stops/H3bi100a", "https://tec.openplanner.team/stops/H3bi119a"], ["https://tec.openplanner.team/stops/N506abb", "https://tec.openplanner.team/stops/N512afb"], ["https://tec.openplanner.team/stops/Lvcecol2", "https://tec.openplanner.team/stops/Lvcfogu1"], ["https://tec.openplanner.team/stops/H1ms308a", "https://tec.openplanner.team/stops/H1ms308c"], ["https://tec.openplanner.team/stops/N501cfb", "https://tec.openplanner.team/stops/N501cky"], ["https://tec.openplanner.team/stops/LVLbovy2", "https://tec.openplanner.team/stops/LVLecco1"], ["https://tec.openplanner.team/stops/N212akb", "https://tec.openplanner.team/stops/N225ahb"], ["https://tec.openplanner.team/stops/LHegame2", "https://tec.openplanner.team/stops/LHexhav2"], ["https://tec.openplanner.team/stops/LLTtour2", "https://tec.openplanner.team/stops/LTOplac2"], ["https://tec.openplanner.team/stops/X608ala", "https://tec.openplanner.team/stops/X609aka"], ["https://tec.openplanner.team/stops/N501lya", "https://tec.openplanner.team/stops/N501meb"], ["https://tec.openplanner.team/stops/LPLmonu2", "https://tec.openplanner.team/stops/LPLstri2"], ["https://tec.openplanner.team/stops/H1vh137b", "https://tec.openplanner.team/stops/H3lr106a"], ["https://tec.openplanner.team/stops/Cwfcast2", "https://tec.openplanner.team/stops/N543bmb"], ["https://tec.openplanner.team/stops/Cflglav1", "https://tec.openplanner.team/stops/Cflvxca1"], ["https://tec.openplanner.team/stops/Csbsart1", "https://tec.openplanner.team/stops/H1ls130a"], ["https://tec.openplanner.team/stops/Bgemibb1", "https://tec.openplanner.team/stops/Bgemkal1"], ["https://tec.openplanner.team/stops/Cgzcver1", "https://tec.openplanner.team/stops/Cmyronc2"], ["https://tec.openplanner.team/stops/N134afa", "https://tec.openplanner.team/stops/N134aha"], ["https://tec.openplanner.team/stops/Lantonn2", "https://tec.openplanner.team/stops/Lrchype1"], ["https://tec.openplanner.team/stops/Cbwdoua1", "https://tec.openplanner.team/stops/Cmgcabi1"], ["https://tec.openplanner.team/stops/H1ha201a", "https://tec.openplanner.team/stops/H1ss350b"], ["https://tec.openplanner.team/stops/H1hn207b", "https://tec.openplanner.team/stops/H1mv241a"], ["https://tec.openplanner.team/stops/X782aia", "https://tec.openplanner.team/stops/X782aib"], ["https://tec.openplanner.team/stops/LDmeg--2", "https://tec.openplanner.team/stops/LDmwaef2"], ["https://tec.openplanner.team/stops/Bgnvcom1", "https://tec.openplanner.team/stops/Bgnvtas1"], ["https://tec.openplanner.team/stops/LSNchen1", "https://tec.openplanner.team/stops/LSNchen4"], ["https://tec.openplanner.team/stops/X992aaa", "https://tec.openplanner.team/stops/X992aab"], ["https://tec.openplanner.team/stops/N553ala", "https://tec.openplanner.team/stops/N553alb"], ["https://tec.openplanner.team/stops/Cmlhauc3", "https://tec.openplanner.team/stops/Cmlhauc4"], ["https://tec.openplanner.team/stops/X629aba", "https://tec.openplanner.team/stops/X648aab"], ["https://tec.openplanner.team/stops/Cml5ave1", "https://tec.openplanner.team/stops/Cnachcu2"], ["https://tec.openplanner.team/stops/X879ala", "https://tec.openplanner.team/stops/X879alb"], ["https://tec.openplanner.team/stops/H4ta117b", "https://tec.openplanner.team/stops/H4ta135a"], ["https://tec.openplanner.team/stops/X607aha", "https://tec.openplanner.team/stops/X607aka"], ["https://tec.openplanner.team/stops/Cnabult4", "https://tec.openplanner.team/stops/Cnaplan2"], ["https://tec.openplanner.team/stops/Cgofabr2", "https://tec.openplanner.team/stops/Cgomoul1"], ["https://tec.openplanner.team/stops/LMAptne1", "https://tec.openplanner.team/stops/LMArave2"], ["https://tec.openplanner.team/stops/N205aca", "https://tec.openplanner.team/stops/N205acb"], ["https://tec.openplanner.team/stops/X622aba", "https://tec.openplanner.team/stops/X696ada"], ["https://tec.openplanner.team/stops/Lvemull2", "https://tec.openplanner.team/stops/Lvepris1"], ["https://tec.openplanner.team/stops/Bbeasta2", "https://tec.openplanner.team/stops/Btlgmee2"], ["https://tec.openplanner.team/stops/Bsenpbi2", "https://tec.openplanner.team/stops/H2mg149b"], ["https://tec.openplanner.team/stops/Bjodbat2", "https://tec.openplanner.team/stops/Bjodcdt1"], ["https://tec.openplanner.team/stops/H1do121b", "https://tec.openplanner.team/stops/H1wi147a"], ["https://tec.openplanner.team/stops/N357ada", "https://tec.openplanner.team/stops/N357adb"], ["https://tec.openplanner.team/stops/Ccogrha1", "https://tec.openplanner.team/stops/Ccojaur3"], ["https://tec.openplanner.team/stops/LWagare*", "https://tec.openplanner.team/stops/LWamass1"], ["https://tec.openplanner.team/stops/LBTfoot1", "https://tec.openplanner.team/stops/LBTnors1"], ["https://tec.openplanner.team/stops/LCeanne2", "https://tec.openplanner.team/stops/LFarhuy2"], ["https://tec.openplanner.team/stops/H2ch106a", "https://tec.openplanner.team/stops/H2go115a"], ["https://tec.openplanner.team/stops/X658afa", "https://tec.openplanner.team/stops/X659aka"], ["https://tec.openplanner.team/stops/LAIchpl1", "https://tec.openplanner.team/stops/LCschen2"], ["https://tec.openplanner.team/stops/N557acb", "https://tec.openplanner.team/stops/N559aaa"], ["https://tec.openplanner.team/stops/X713aab", "https://tec.openplanner.team/stops/X796ahb"], ["https://tec.openplanner.team/stops/LMOelva3", "https://tec.openplanner.team/stops/LMOf21-1"], ["https://tec.openplanner.team/stops/H2ca101b", "https://tec.openplanner.team/stops/H2ca109b"], ["https://tec.openplanner.team/stops/H1gc124b", "https://tec.openplanner.team/stops/H1go174a"], ["https://tec.openplanner.team/stops/LBJapol2", "https://tec.openplanner.team/stops/LBJlieg2"], ["https://tec.openplanner.team/stops/Bgntcbo1", "https://tec.openplanner.team/stops/Bmelsab2"], ["https://tec.openplanner.team/stops/Bllngal1", "https://tec.openplanner.team/stops/Bllngle1"], ["https://tec.openplanner.team/stops/X613acb", "https://tec.openplanner.team/stops/X614bda"], ["https://tec.openplanner.team/stops/Lfhdonn1", "https://tec.openplanner.team/stops/Lseegva1"], ["https://tec.openplanner.team/stops/Binccha1", "https://tec.openplanner.team/stops/Brxmbos2"], ["https://tec.openplanner.team/stops/H1sg150b", "https://tec.openplanner.team/stops/H1sg150c"], ["https://tec.openplanner.team/stops/X724aaa", "https://tec.openplanner.team/stops/X724aia"], ["https://tec.openplanner.team/stops/LWacime3", "https://tec.openplanner.team/stops/LWalibo1"], ["https://tec.openplanner.team/stops/N508ada", "https://tec.openplanner.team/stops/N509aob"], ["https://tec.openplanner.team/stops/Ccabois2", "https://tec.openplanner.team/stops/Ccaegli2"], ["https://tec.openplanner.team/stops/LBSchpl1", "https://tec.openplanner.team/stops/LRGcana1"], ["https://tec.openplanner.team/stops/N139aeb", "https://tec.openplanner.team/stops/N146adb"], ["https://tec.openplanner.team/stops/LdE179-2", "https://tec.openplanner.team/stops/LdElamb2"], ["https://tec.openplanner.team/stops/Cbtgemi1", "https://tec.openplanner.team/stops/Crewath2"], ["https://tec.openplanner.team/stops/Bwavdmo1", "https://tec.openplanner.team/stops/Bwavdmo4"], ["https://tec.openplanner.team/stops/LMAbell2", "https://tec.openplanner.team/stops/LMAbijo2"], ["https://tec.openplanner.team/stops/N117aca", "https://tec.openplanner.team/stops/N117azb"], ["https://tec.openplanner.team/stops/H1ro140b", "https://tec.openplanner.team/stops/H1ro141b"], ["https://tec.openplanner.team/stops/LlgguilA", "https://tec.openplanner.team/stops/LlgguilD"], ["https://tec.openplanner.team/stops/Creluth1", "https://tec.openplanner.team/stops/Crestan2"], ["https://tec.openplanner.team/stops/X953afb", "https://tec.openplanner.team/stops/X954afa"], ["https://tec.openplanner.team/stops/H2pe163a", "https://tec.openplanner.team/stops/H2tr257a"], ["https://tec.openplanner.team/stops/LeYdepo1", "https://tec.openplanner.team/stops/LeYdorf2"], ["https://tec.openplanner.team/stops/H4wi163a", "https://tec.openplanner.team/stops/H4wi163b"], ["https://tec.openplanner.team/stops/Cvretan2", "https://tec.openplanner.team/stops/Cvrfema2"], ["https://tec.openplanner.team/stops/N211aka", "https://tec.openplanner.team/stops/N211aya"], ["https://tec.openplanner.team/stops/Crachap2", "https://tec.openplanner.team/stops/Cradest1"], ["https://tec.openplanner.team/stops/Chthttr2", "https://tec.openplanner.team/stops/Cthdeco1"], ["https://tec.openplanner.team/stops/H4bn100b", "https://tec.openplanner.team/stops/H4pi135a"], ["https://tec.openplanner.team/stops/LHe3com2", "https://tec.openplanner.team/stops/LHegame1"], ["https://tec.openplanner.team/stops/Caujonc1", "https://tec.openplanner.team/stops/Causncb2"], ["https://tec.openplanner.team/stops/Ctisar1", "https://tec.openplanner.team/stops/Ctisart2"], ["https://tec.openplanner.team/stops/Bbeardu2", "https://tec.openplanner.team/stops/Bmlncle1"], ["https://tec.openplanner.team/stops/N201anb", "https://tec.openplanner.team/stops/N202aha"], ["https://tec.openplanner.team/stops/X946acb", "https://tec.openplanner.team/stops/X948adb"], ["https://tec.openplanner.team/stops/LVEdTEC2", "https://tec.openplanner.team/stops/LVEeg--2"], ["https://tec.openplanner.team/stops/Bhandub2", "https://tec.openplanner.team/stops/LABbert2"], ["https://tec.openplanner.team/stops/Cmx3arb1", "https://tec.openplanner.team/stops/Cmxpleg1"], ["https://tec.openplanner.team/stops/Blpgeco1", "https://tec.openplanner.team/stops/Blpgeco2"], ["https://tec.openplanner.team/stops/H4ta121a", "https://tec.openplanner.team/stops/H4ta121b"], ["https://tec.openplanner.team/stops/H1hl125a", "https://tec.openplanner.team/stops/H1hl126b"], ["https://tec.openplanner.team/stops/Cgynuto1", "https://tec.openplanner.team/stops/Cjulamb1"], ["https://tec.openplanner.team/stops/X617aia", "https://tec.openplanner.team/stops/X617aib"], ["https://tec.openplanner.team/stops/N118bba", "https://tec.openplanner.team/stops/N118bbb"], ["https://tec.openplanner.team/stops/H4hx114a", "https://tec.openplanner.team/stops/H4wa153b"], ["https://tec.openplanner.team/stops/X754aqa", "https://tec.openplanner.team/stops/X754ava"], ["https://tec.openplanner.team/stops/LLMcouv2", "https://tec.openplanner.team/stops/LLMeg--2"], ["https://tec.openplanner.team/stops/Llgbrab1", "https://tec.openplanner.team/stops/Llgpari2"], ["https://tec.openplanner.team/stops/N501cpb", "https://tec.openplanner.team/stops/N501ema"], ["https://tec.openplanner.team/stops/Ccutail1", "https://tec.openplanner.team/stops/Ccutail2"], ["https://tec.openplanner.team/stops/H2le147b", "https://tec.openplanner.team/stops/H2le147c"], ["https://tec.openplanner.team/stops/Lsehaut2", "https://tec.openplanner.team/stops/Lselimi1"], ["https://tec.openplanner.team/stops/N313aca", "https://tec.openplanner.team/stops/N313ada"], ["https://tec.openplanner.team/stops/X937aba", "https://tec.openplanner.team/stops/X952alb"], ["https://tec.openplanner.team/stops/Lrecomp2", "https://tec.openplanner.team/stops/Lrevaul1"], ["https://tec.openplanner.team/stops/Llgfran2", "https://tec.openplanner.team/stops/Llgriva2"], ["https://tec.openplanner.team/stops/Lghleon1", "https://tec.openplanner.team/stops/Lghmaha3"], ["https://tec.openplanner.team/stops/Cgy4bra2", "https://tec.openplanner.team/stops/Cgygazo5"], ["https://tec.openplanner.team/stops/N528afa", "https://tec.openplanner.team/stops/N528afz"], ["https://tec.openplanner.team/stops/X714aaa", "https://tec.openplanner.team/stops/X714aba"], ["https://tec.openplanner.team/stops/LMfsart1", "https://tec.openplanner.team/stops/LMfsart2"], ["https://tec.openplanner.team/stops/Csrcant1", "https://tec.openplanner.team/stops/Csregli1"], ["https://tec.openplanner.team/stops/H4mb203a", "https://tec.openplanner.team/stops/H4og207a"], ["https://tec.openplanner.team/stops/Llmcoop2", "https://tec.openplanner.team/stops/Llmeg--2"], ["https://tec.openplanner.team/stops/N501ebz", "https://tec.openplanner.team/stops/N501giy"], ["https://tec.openplanner.team/stops/X818ana", "https://tec.openplanner.team/stops/X820amb"], ["https://tec.openplanner.team/stops/X896aea", "https://tec.openplanner.team/stops/X896aec"], ["https://tec.openplanner.team/stops/LPRcasi2", "https://tec.openplanner.team/stops/LPRvill1"], ["https://tec.openplanner.team/stops/H2hl110b", "https://tec.openplanner.team/stops/H2ll179a"], ["https://tec.openplanner.team/stops/H4ne131b", "https://tec.openplanner.team/stops/H4ne138a"], ["https://tec.openplanner.team/stops/H1qu101a", "https://tec.openplanner.team/stops/H1qu129b"], ["https://tec.openplanner.team/stops/Llgglai2", "https://tec.openplanner.team/stops/Llgpere2"], ["https://tec.openplanner.team/stops/Bbsifml2", "https://tec.openplanner.team/stops/Bnivlpa2"], ["https://tec.openplanner.team/stops/X620aea", "https://tec.openplanner.team/stops/X620afb"], ["https://tec.openplanner.team/stops/Loubonc1", "https://tec.openplanner.team/stops/Louvivi1"], ["https://tec.openplanner.team/stops/X639aea", "https://tec.openplanner.team/stops/X644ada"], ["https://tec.openplanner.team/stops/H1gn148a", "https://tec.openplanner.team/stops/H1ol146b"], ["https://tec.openplanner.team/stops/H4vx361b", "https://tec.openplanner.team/stops/H4vx362a"], ["https://tec.openplanner.team/stops/LSdcent1", "https://tec.openplanner.team/stops/LSdcent2"], ["https://tec.openplanner.team/stops/Cgxvkho1", "https://tec.openplanner.team/stops/Cgxvkho3"], ["https://tec.openplanner.team/stops/H5qu141a", "https://tec.openplanner.team/stops/H5qu148a"], ["https://tec.openplanner.team/stops/H1hm173b", "https://tec.openplanner.team/stops/H1sp353b"], ["https://tec.openplanner.team/stops/Baudvdr2", "https://tec.openplanner.team/stops/Bwbfgar1"], ["https://tec.openplanner.team/stops/H1go118a", "https://tec.openplanner.team/stops/H1go118b"], ["https://tec.openplanner.team/stops/X636aea", "https://tec.openplanner.team/stops/X636afa"], ["https://tec.openplanner.team/stops/N506aha", "https://tec.openplanner.team/stops/N506asa"], ["https://tec.openplanner.team/stops/H4pi134b", "https://tec.openplanner.team/stops/H4pi136b"], ["https://tec.openplanner.team/stops/X941aga", "https://tec.openplanner.team/stops/X949afa"], ["https://tec.openplanner.team/stops/N147aaa", "https://tec.openplanner.team/stops/N147aea"], ["https://tec.openplanner.team/stops/N230aeb", "https://tec.openplanner.team/stops/N233aba"], ["https://tec.openplanner.team/stops/LAUbirv2", "https://tec.openplanner.team/stops/LHMhof-2"], ["https://tec.openplanner.team/stops/LLYcalv1", "https://tec.openplanner.team/stops/LLYhoch1"], ["https://tec.openplanner.team/stops/X745acb", "https://tec.openplanner.team/stops/X746alb"], ["https://tec.openplanner.team/stops/H5ar100a", "https://tec.openplanner.team/stops/H5ar127b"], ["https://tec.openplanner.team/stops/X790aba", "https://tec.openplanner.team/stops/X790aga"], ["https://tec.openplanner.team/stops/Lmihale2", "https://tec.openplanner.team/stops/Lmimili2"], ["https://tec.openplanner.team/stops/H1to151a", "https://tec.openplanner.team/stops/H1to153c"], ["https://tec.openplanner.team/stops/N243ada", "https://tec.openplanner.team/stops/N243aea"], ["https://tec.openplanner.team/stops/H4hq131b", "https://tec.openplanner.team/stops/H4hq132a"], ["https://tec.openplanner.team/stops/X901ana", "https://tec.openplanner.team/stops/X901aoa"], ["https://tec.openplanner.team/stops/X994afb", "https://tec.openplanner.team/stops/X994ama"], ["https://tec.openplanner.team/stops/N101aeb", "https://tec.openplanner.team/stops/N101arb"], ["https://tec.openplanner.team/stops/Bmrshan2", "https://tec.openplanner.team/stops/Bplncsd2"], ["https://tec.openplanner.team/stops/Bbeasta1", "https://tec.openplanner.team/stops/Bbeasta2"], ["https://tec.openplanner.team/stops/LLebibl3", "https://tec.openplanner.team/stops/LLeeg--1"], ["https://tec.openplanner.team/stops/Bhandub2", "https://tec.openplanner.team/stops/Bhantui2"], ["https://tec.openplanner.team/stops/LSShous2", "https://tec.openplanner.team/stops/LYEphar2"], ["https://tec.openplanner.team/stops/Borbod91", "https://tec.openplanner.team/stops/Borbode2"], ["https://tec.openplanner.team/stops/X850ana", "https://tec.openplanner.team/stops/X850aob"], ["https://tec.openplanner.team/stops/H4po124a", "https://tec.openplanner.team/stops/H4po124b"], ["https://tec.openplanner.team/stops/LETtemp2", "https://tec.openplanner.team/stops/Lremonu1"], ["https://tec.openplanner.team/stops/Cvvsncb1", "https://tec.openplanner.team/stops/Cvvsncb2"], ["https://tec.openplanner.team/stops/X736aea", "https://tec.openplanner.team/stops/X736afa"], ["https://tec.openplanner.team/stops/Cfrbrin1", "https://tec.openplanner.team/stops/Cfrbrin2"], ["https://tec.openplanner.team/stops/N501gab", "https://tec.openplanner.team/stops/N501gra"], ["https://tec.openplanner.team/stops/X757aab", "https://tec.openplanner.team/stops/X757abb"], ["https://tec.openplanner.team/stops/Lbrmc--2", "https://tec.openplanner.team/stops/Llgmara2"], ["https://tec.openplanner.team/stops/N134aac", "https://tec.openplanner.team/stops/N135aza"], ["https://tec.openplanner.team/stops/Lourose4", "https://tec.openplanner.team/stops/Lousite4"], ["https://tec.openplanner.team/stops/H1tl122a", "https://tec.openplanner.team/stops/H1tl122b"], ["https://tec.openplanner.team/stops/LAumari1", "https://tec.openplanner.team/stops/LWRchem1"], ["https://tec.openplanner.team/stops/X801bdd", "https://tec.openplanner.team/stops/X801bga"], ["https://tec.openplanner.team/stops/LmYwall2", "https://tec.openplanner.team/stops/LwL100-1"], ["https://tec.openplanner.team/stops/N559aba", "https://tec.openplanner.team/stops/N559abb"], ["https://tec.openplanner.team/stops/Bbcohou3", "https://tec.openplanner.team/stops/Bbcohou4"], ["https://tec.openplanner.team/stops/LWbburn1", "https://tec.openplanner.team/stops/LWbburn2"], ["https://tec.openplanner.team/stops/H4cl112a", "https://tec.openplanner.team/stops/H4cl113b"], ["https://tec.openplanner.team/stops/N543bba", "https://tec.openplanner.team/stops/N543cpb"], ["https://tec.openplanner.team/stops/N538aha", "https://tec.openplanner.team/stops/N538aqb"], ["https://tec.openplanner.team/stops/Btlbgla2", "https://tec.openplanner.team/stops/Btstcar4"], ["https://tec.openplanner.team/stops/LTecent3", "https://tec.openplanner.team/stops/LTecent4"], ["https://tec.openplanner.team/stops/Llghars5", "https://tec.openplanner.team/stops/Llghars7"], ["https://tec.openplanner.team/stops/Bblacco1", "https://tec.openplanner.team/stops/Bwateco1"], ["https://tec.openplanner.team/stops/X597aab", "https://tec.openplanner.team/stops/X597aqa"], ["https://tec.openplanner.team/stops/Llgblon2", "https://tec.openplanner.team/stops/Llgvero4"], ["https://tec.openplanner.team/stops/LNAbras4", "https://tec.openplanner.team/stops/LNAbras5"], ["https://tec.openplanner.team/stops/Lrosaun1", "https://tec.openplanner.team/stops/Lrosaun2"], ["https://tec.openplanner.team/stops/Cchtour2", "https://tec.openplanner.team/stops/CMwate1"], ["https://tec.openplanner.team/stops/LFabraa1", "https://tec.openplanner.team/stops/LFalieg2"], ["https://tec.openplanner.team/stops/X908ahb", "https://tec.openplanner.team/stops/X910aaa"], ["https://tec.openplanner.team/stops/X878aca", "https://tec.openplanner.team/stops/X878acb"], ["https://tec.openplanner.team/stops/Clshafa1", "https://tec.openplanner.team/stops/H1ls129a"], ["https://tec.openplanner.team/stops/LBVronx2", "https://tec.openplanner.team/stops/LSTmeiz1"], ["https://tec.openplanner.team/stops/Lgrlimi2", "https://tec.openplanner.team/stops/Llgcham7"], ["https://tec.openplanner.team/stops/Llghugo2", "https://tec.openplanner.team/stops/Llgpire1"], ["https://tec.openplanner.team/stops/Btileco1", "https://tec.openplanner.team/stops/Btilsnc1"], ["https://tec.openplanner.team/stops/N352ada", "https://tec.openplanner.team/stops/N352aja"], ["https://tec.openplanner.team/stops/LhGkirc2", "https://tec.openplanner.team/stops/LhGlang2"], ["https://tec.openplanner.team/stops/X608aja", "https://tec.openplanner.team/stops/X608aob"], ["https://tec.openplanner.team/stops/X620aaa", "https://tec.openplanner.team/stops/X620aab"], ["https://tec.openplanner.team/stops/X716aab", "https://tec.openplanner.team/stops/X716abb"], ["https://tec.openplanner.team/stops/X661akb", "https://tec.openplanner.team/stops/X672ala"], ["https://tec.openplanner.team/stops/X650aoa", "https://tec.openplanner.team/stops/X671agb"], ["https://tec.openplanner.team/stops/LWMcent1", "https://tec.openplanner.team/stops/LWMcent2"], ["https://tec.openplanner.team/stops/LQafond1", "https://tec.openplanner.team/stops/LREprea1"], ["https://tec.openplanner.team/stops/N120aea", "https://tec.openplanner.team/stops/N120aga"], ["https://tec.openplanner.team/stops/Bmlncle1", "https://tec.openplanner.team/stops/Bmlnsmv2"], ["https://tec.openplanner.team/stops/X663avb", "https://tec.openplanner.team/stops/X663aya"], ["https://tec.openplanner.team/stops/H1te175a", "https://tec.openplanner.team/stops/H1te177b"], ["https://tec.openplanner.team/stops/LhIfrie1", "https://tec.openplanner.team/stops/LwTzent2"], ["https://tec.openplanner.team/stops/Csebasc1", "https://tec.openplanner.team/stops/Csedoua1"], ["https://tec.openplanner.team/stops/LWeatel2", "https://tec.openplanner.team/stops/LWegdry2"], ["https://tec.openplanner.team/stops/Bnodcab2", "https://tec.openplanner.team/stops/Bnodegl1"], ["https://tec.openplanner.team/stops/N542asa", "https://tec.openplanner.team/stops/N542asb"], ["https://tec.openplanner.team/stops/LbUmalm1", "https://tec.openplanner.team/stops/LbUvith1"], ["https://tec.openplanner.team/stops/X901baa", "https://tec.openplanner.team/stops/X901bla"], ["https://tec.openplanner.team/stops/H4lu128a", "https://tec.openplanner.team/stops/H4mo206a"], ["https://tec.openplanner.team/stops/H1sy140b", "https://tec.openplanner.team/stops/H1sy141b"], ["https://tec.openplanner.team/stops/N501gfb", "https://tec.openplanner.team/stops/N501jab"], ["https://tec.openplanner.team/stops/Cbecarr1", "https://tec.openplanner.team/stops/Cbecarr2"], ["https://tec.openplanner.team/stops/H4eh101b", "https://tec.openplanner.team/stops/H4po124a"], ["https://tec.openplanner.team/stops/N539bga", "https://tec.openplanner.team/stops/N539bgb"], ["https://tec.openplanner.team/stops/Bgnvgir2", "https://tec.openplanner.team/stops/Bohngen2"], ["https://tec.openplanner.team/stops/Cobcent2", "https://tec.openplanner.team/stops/Cpcplac3"], ["https://tec.openplanner.team/stops/H1hh112b", "https://tec.openplanner.team/stops/H1hh118a"], ["https://tec.openplanner.team/stops/X657afb", "https://tec.openplanner.team/stops/X670agb"], ["https://tec.openplanner.team/stops/X902acb", "https://tec.openplanner.team/stops/X902asa"], ["https://tec.openplanner.team/stops/H1ho125c", "https://tec.openplanner.team/stops/H1ho139b"], ["https://tec.openplanner.team/stops/LWaanto1", "https://tec.openplanner.team/stops/LWarema2"], ["https://tec.openplanner.team/stops/Cgygazo1", "https://tec.openplanner.team/stops/Cgygazo8"], ["https://tec.openplanner.team/stops/LBBcamp2", "https://tec.openplanner.team/stops/LBBodet1"], ["https://tec.openplanner.team/stops/LRChote2", "https://tec.openplanner.team/stops/LSTamer2"], ["https://tec.openplanner.team/stops/X757aha", "https://tec.openplanner.team/stops/X757aja"], ["https://tec.openplanner.team/stops/X788acb", "https://tec.openplanner.team/stops/X789ahd"], ["https://tec.openplanner.team/stops/Becesbo2", "https://tec.openplanner.team/stops/H2ec100a"], ["https://tec.openplanner.team/stops/Cchcase1", "https://tec.openplanner.team/stops/Cmtrneu1"], ["https://tec.openplanner.team/stops/Lbrmour1", "https://tec.openplanner.team/stops/Llgrull2"], ["https://tec.openplanner.team/stops/Cfometr2", "https://tec.openplanner.team/stops/Clrpast1"], ["https://tec.openplanner.team/stops/Cgocitn1", "https://tec.openplanner.team/stops/CMemai1"], ["https://tec.openplanner.team/stops/Lsntvbi3", "https://tec.openplanner.team/stops/Ltibalt1"], ["https://tec.openplanner.team/stops/X649aba", "https://tec.openplanner.team/stops/X671aea"], ["https://tec.openplanner.team/stops/LHMbelv1", "https://tec.openplanner.team/stops/LHMthys1"], ["https://tec.openplanner.team/stops/X663aac", "https://tec.openplanner.team/stops/X663abb"], ["https://tec.openplanner.team/stops/H1do129a", "https://tec.openplanner.team/stops/H1do130a"], ["https://tec.openplanner.team/stops/X983aba", "https://tec.openplanner.team/stops/X983aca"], ["https://tec.openplanner.team/stops/H1mc126a", "https://tec.openplanner.team/stops/H1mc127a"], ["https://tec.openplanner.team/stops/X902axa", "https://tec.openplanner.team/stops/X902bgb"], ["https://tec.openplanner.team/stops/X923adb", "https://tec.openplanner.team/stops/X923ara"], ["https://tec.openplanner.team/stops/X725bbb", "https://tec.openplanner.team/stops/X725bfa"], ["https://tec.openplanner.team/stops/H2bh119a", "https://tec.openplanner.team/stops/H2bh119b"], ["https://tec.openplanner.team/stops/Cflvxca1", "https://tec.openplanner.team/stops/Cwgcroi1"], ["https://tec.openplanner.team/stops/H1sy139a", "https://tec.openplanner.team/stops/H1sy150b"], ["https://tec.openplanner.team/stops/Bbcomar1", "https://tec.openplanner.team/stops/Bhenasc1"], ["https://tec.openplanner.team/stops/X839aaa", "https://tec.openplanner.team/stops/X839aga"], ["https://tec.openplanner.team/stops/H1bo107b", "https://tec.openplanner.team/stops/H1bo150a"], ["https://tec.openplanner.team/stops/H1lb138a", "https://tec.openplanner.team/stops/H1lb138b"], ["https://tec.openplanner.team/stops/LCocasc2", "https://tec.openplanner.team/stops/LSTamer2"], ["https://tec.openplanner.team/stops/X790aga", "https://tec.openplanner.team/stops/X790ana"], ["https://tec.openplanner.team/stops/Cgzhour2", "https://tec.openplanner.team/stops/Cthrlef1"], ["https://tec.openplanner.team/stops/X982bcb", "https://tec.openplanner.team/stops/X982cba"], ["https://tec.openplanner.team/stops/LLrquar1", "https://tec.openplanner.team/stops/LLrquar2"], ["https://tec.openplanner.team/stops/N563amb", "https://tec.openplanner.team/stops/N563aob"], ["https://tec.openplanner.team/stops/LDLbaye2", "https://tec.openplanner.team/stops/LGMdrev1"], ["https://tec.openplanner.team/stops/Bperrma1", "https://tec.openplanner.team/stops/Bperrma2"], ["https://tec.openplanner.team/stops/Cmgpla1", "https://tec.openplanner.team/stops/Cmgpla2"], ["https://tec.openplanner.team/stops/Lmidarc1", "https://tec.openplanner.team/stops/Lmitroi1"], ["https://tec.openplanner.team/stops/LCPcomm2", "https://tec.openplanner.team/stops/LCPecli2"], ["https://tec.openplanner.team/stops/LROcham1", "https://tec.openplanner.team/stops/LROrtba2"], ["https://tec.openplanner.team/stops/Bbldass1", "https://tec.openplanner.team/stops/Bbldgar2"], ["https://tec.openplanner.team/stops/LLgcent2", "https://tec.openplanner.team/stops/LLgmini2"], ["https://tec.openplanner.team/stops/Lrcchpl1", "https://tec.openplanner.team/stops/Lvtchpl4"], ["https://tec.openplanner.team/stops/N542ajb", "https://tec.openplanner.team/stops/N542amb"], ["https://tec.openplanner.team/stops/LTIdumo2", "https://tec.openplanner.team/stops/LTIecma2"], ["https://tec.openplanner.team/stops/X756aib", "https://tec.openplanner.team/stops/X756ajb"], ["https://tec.openplanner.team/stops/LTrgibe2", "https://tec.openplanner.team/stops/LTrmaro2"], ["https://tec.openplanner.team/stops/Lgdec--1", "https://tec.openplanner.team/stops/Lgdegli2"], ["https://tec.openplanner.team/stops/X760aca", "https://tec.openplanner.team/stops/X788aca"], ["https://tec.openplanner.team/stops/LClflor1", "https://tec.openplanner.team/stops/LCltrib1"], ["https://tec.openplanner.team/stops/Bhancre1", "https://tec.openplanner.team/stops/NL37acb"], ["https://tec.openplanner.team/stops/LMEense2", "https://tec.openplanner.team/stops/LMEwerg2"], ["https://tec.openplanner.team/stops/LWAfabr2", "https://tec.openplanner.team/stops/LWArege2"], ["https://tec.openplanner.team/stops/H4lz155a", "https://tec.openplanner.team/stops/H4lz156b"], ["https://tec.openplanner.team/stops/LAMcloc1", "https://tec.openplanner.team/stops/LAMcloc2"], ["https://tec.openplanner.team/stops/N311aea", "https://tec.openplanner.team/stops/N368aba"], ["https://tec.openplanner.team/stops/LTRespe1", "https://tec.openplanner.team/stops/LTRpeec1"], ["https://tec.openplanner.team/stops/H4mb204b", "https://tec.openplanner.team/stops/H4mb205b"], ["https://tec.openplanner.team/stops/X742aca", "https://tec.openplanner.team/stops/X743aab"], ["https://tec.openplanner.team/stops/Llglaur1", "https://tec.openplanner.team/stops/Llglaur2"], ["https://tec.openplanner.team/stops/Cdaptca2", "https://tec.openplanner.team/stops/Cdaptca4"], ["https://tec.openplanner.team/stops/Bblaaca1", "https://tec.openplanner.team/stops/Bblaphi1"], ["https://tec.openplanner.team/stops/X605aab", "https://tec.openplanner.team/stops/X620afb"], ["https://tec.openplanner.team/stops/Bbeaap52", "https://tec.openplanner.team/stops/Bbeacha2"], ["https://tec.openplanner.team/stops/Lseecol1", "https://tec.openplanner.team/stops/Lsevecq2"], ["https://tec.openplanner.team/stops/Cfamate2", "https://tec.openplanner.team/stops/Cpictra1"], ["https://tec.openplanner.team/stops/LVNbale2", "https://tec.openplanner.team/stops/LVNcoop2"], ["https://tec.openplanner.team/stops/H4be105a", "https://tec.openplanner.team/stops/H4be107b"], ["https://tec.openplanner.team/stops/LOthiro2", "https://tec.openplanner.team/stops/LOtthie2"], ["https://tec.openplanner.team/stops/X876aaa", "https://tec.openplanner.team/stops/X876aeb"], ["https://tec.openplanner.team/stops/Bblatet2", "https://tec.openplanner.team/stops/Blilhay1"], ["https://tec.openplanner.team/stops/LNCecdo1", "https://tec.openplanner.team/stops/LNCneuv3"], ["https://tec.openplanner.team/stops/LHueg--2", "https://tec.openplanner.team/stops/LHuherm2"], ["https://tec.openplanner.team/stops/NL78acb", "https://tec.openplanner.team/stops/NL78adb"], ["https://tec.openplanner.team/stops/Lrccime3", "https://tec.openplanner.team/stops/Lvoeg--1"], ["https://tec.openplanner.team/stops/LBLplas2", "https://tec.openplanner.team/stops/LTrrich1"], ["https://tec.openplanner.team/stops/H4es108a", "https://tec.openplanner.team/stops/H4es113a"], ["https://tec.openplanner.team/stops/Lgrcoll1", "https://tec.openplanner.team/stops/Lgrcour2"], ["https://tec.openplanner.team/stops/N554aba", "https://tec.openplanner.team/stops/N554acc"], ["https://tec.openplanner.team/stops/H2ma203b", "https://tec.openplanner.team/stops/H2ma210b"], ["https://tec.openplanner.team/stops/LFRbaro2", "https://tec.openplanner.team/stops/LFRhock1"], ["https://tec.openplanner.team/stops/N533ada", "https://tec.openplanner.team/stops/N551aga"], ["https://tec.openplanner.team/stops/LkEgend2", "https://tec.openplanner.team/stops/LkEspor1"], ["https://tec.openplanner.team/stops/N524aja", "https://tec.openplanner.team/stops/N525akb"], ["https://tec.openplanner.team/stops/N527aaa", "https://tec.openplanner.team/stops/N527aga"], ["https://tec.openplanner.team/stops/N214aeb", "https://tec.openplanner.team/stops/N214aec"], ["https://tec.openplanner.team/stops/X768aed", "https://tec.openplanner.team/stops/X768afb"], ["https://tec.openplanner.team/stops/H1ms932a", "https://tec.openplanner.team/stops/H1ms935a"], ["https://tec.openplanner.team/stops/LVBmonu1", "https://tec.openplanner.team/stops/LVBmonu2"], ["https://tec.openplanner.team/stops/X897aca", "https://tec.openplanner.team/stops/X897aja"], ["https://tec.openplanner.team/stops/H4pl111a", "https://tec.openplanner.team/stops/H4pl115b"], ["https://tec.openplanner.team/stops/Btilhti2", "https://tec.openplanner.team/stops/Btilmon1"], ["https://tec.openplanner.team/stops/Ljubeyn1", "https://tec.openplanner.team/stops/Ljuvert2"], ["https://tec.openplanner.team/stops/X734afb", "https://tec.openplanner.team/stops/X734arb"], ["https://tec.openplanner.team/stops/LEN42--2", "https://tec.openplanner.team/stops/LENchem1"], ["https://tec.openplanner.team/stops/H1le121a", "https://tec.openplanner.team/stops/H1le130b"], ["https://tec.openplanner.team/stops/LBGcent1", "https://tec.openplanner.team/stops/LBGgeer1"], ["https://tec.openplanner.team/stops/N213aba", "https://tec.openplanner.team/stops/N348aab"], ["https://tec.openplanner.team/stops/LAyfren1", "https://tec.openplanner.team/stops/LAyheid2"], ["https://tec.openplanner.team/stops/Lcebarr1", "https://tec.openplanner.team/stops/Lcepont5"], ["https://tec.openplanner.team/stops/H4hu122b", "https://tec.openplanner.team/stops/H4ld124b"], ["https://tec.openplanner.team/stops/N576agb", "https://tec.openplanner.team/stops/N576aib"], ["https://tec.openplanner.team/stops/Borblim2", "https://tec.openplanner.team/stops/Borborb2"], ["https://tec.openplanner.team/stops/Cmmceri1", "https://tec.openplanner.team/stops/Cmmplac4"], ["https://tec.openplanner.team/stops/LGLecol1", "https://tec.openplanner.team/stops/LGLecol2"], ["https://tec.openplanner.team/stops/N111aba", "https://tec.openplanner.team/stops/N111aeb"], ["https://tec.openplanner.team/stops/N528afb", "https://tec.openplanner.team/stops/N528afy"], ["https://tec.openplanner.team/stops/LHCmais2", "https://tec.openplanner.team/stops/LHCpaci2"], ["https://tec.openplanner.team/stops/LPTgran1", "https://tec.openplanner.team/stops/X750asa"], ["https://tec.openplanner.team/stops/LDAalbe1", "https://tec.openplanner.team/stops/LDAalbe2"], ["https://tec.openplanner.team/stops/N551agb", "https://tec.openplanner.team/stops/N551agc"], ["https://tec.openplanner.team/stops/Bbstmco1", "https://tec.openplanner.team/stops/Bbstmco2"], ["https://tec.openplanner.team/stops/Cfccol1", "https://tec.openplanner.team/stops/Cfcrerp1"], ["https://tec.openplanner.team/stops/Lghmeun1", "https://tec.openplanner.team/stops/Lghmeun3"], ["https://tec.openplanner.team/stops/Llglibo3", "https://tec.openplanner.team/stops/Llgpitt1"], ["https://tec.openplanner.team/stops/H5rx140a", "https://tec.openplanner.team/stops/H5rx140b"], ["https://tec.openplanner.team/stops/H2ch121a", "https://tec.openplanner.team/stops/H2go118b"], ["https://tec.openplanner.team/stops/LENgend1", "https://tec.openplanner.team/stops/LENgend2"], ["https://tec.openplanner.team/stops/LTIdjal1", "https://tec.openplanner.team/stops/LTIdonn2"], ["https://tec.openplanner.team/stops/H1ry134a", "https://tec.openplanner.team/stops/H1ry134b"], ["https://tec.openplanner.team/stops/Cchprun1", "https://tec.openplanner.team/stops/Cchprun2"], ["https://tec.openplanner.team/stops/H1mj126a", "https://tec.openplanner.team/stops/H1mj126b"], ["https://tec.openplanner.team/stops/X811aga", "https://tec.openplanner.team/stops/X834aca"], ["https://tec.openplanner.team/stops/N211bba", "https://tec.openplanner.team/stops/N219adb"], ["https://tec.openplanner.team/stops/X730aga", "https://tec.openplanner.team/stops/X731akb"], ["https://tec.openplanner.team/stops/N501fsa", "https://tec.openplanner.team/stops/N501gpc"], ["https://tec.openplanner.team/stops/Cmehame2", "https://tec.openplanner.team/stops/Cwxchap2"], ["https://tec.openplanner.team/stops/Llgherm2", "https://tec.openplanner.team/stops/Llgmair2"], ["https://tec.openplanner.team/stops/N230aaa", "https://tec.openplanner.team/stops/N540ana"], ["https://tec.openplanner.team/stops/X745aca", "https://tec.openplanner.team/stops/X746alb"], ["https://tec.openplanner.team/stops/LHUaveu1", "https://tec.openplanner.team/stops/LHUaveu2"], ["https://tec.openplanner.team/stops/LBStec-2", "https://tec.openplanner.team/stops/LWOsudr2"], ["https://tec.openplanner.team/stops/Balswwe2", "https://tec.openplanner.team/stops/Bhalvel1"], ["https://tec.openplanner.team/stops/X664apb", "https://tec.openplanner.team/stops/X664arb"], ["https://tec.openplanner.team/stops/X652aja", "https://tec.openplanner.team/stops/X652ajb"], ["https://tec.openplanner.team/stops/Cacgare2", "https://tec.openplanner.team/stops/NC44aeb"], ["https://tec.openplanner.team/stops/H4ef112b", "https://tec.openplanner.team/stops/H4or113a"], ["https://tec.openplanner.team/stops/Bwaab122", "https://tec.openplanner.team/stops/Bwaak101"], ["https://tec.openplanner.team/stops/Lhrbell1", "https://tec.openplanner.team/stops/Lhrgall2"], ["https://tec.openplanner.team/stops/Cgxvkho1", "https://tec.openplanner.team/stops/CMmorg1"], ["https://tec.openplanner.team/stops/H1mq199b", "https://tec.openplanner.team/stops/H4ab101a"], ["https://tec.openplanner.team/stops/LAweg--1", "https://tec.openplanner.team/stops/LHrchat1"], ["https://tec.openplanner.team/stops/Benggar1", "https://tec.openplanner.team/stops/Bptecal2"], ["https://tec.openplanner.team/stops/X660aab", "https://tec.openplanner.team/stops/X660aba"], ["https://tec.openplanner.team/stops/H1cu108b", "https://tec.openplanner.team/stops/H1cu131a"], ["https://tec.openplanner.team/stops/Bwatpcs1", "https://tec.openplanner.team/stops/Bwatpcs2"], ["https://tec.openplanner.team/stops/H4tm140b", "https://tec.openplanner.team/stops/H4to133a"], ["https://tec.openplanner.team/stops/Louense2", "https://tec.openplanner.team/stops/Loutras1"], ["https://tec.openplanner.team/stops/H1wi150a", "https://tec.openplanner.team/stops/H1wi153b"], ["https://tec.openplanner.team/stops/Ccyga7", "https://tec.openplanner.team/stops/NH01aca"], ["https://tec.openplanner.team/stops/Cfasamb1", "https://tec.openplanner.team/stops/Cfasamb2"], ["https://tec.openplanner.team/stops/Llgnata1", "https://tec.openplanner.team/stops/Llgnata4"], ["https://tec.openplanner.team/stops/Caccent1", "https://tec.openplanner.team/stops/NC24abb"], ["https://tec.openplanner.team/stops/H4ev119a", "https://tec.openplanner.team/stops/H4sl155b"], ["https://tec.openplanner.team/stops/H2be100a", "https://tec.openplanner.team/stops/H2be102a"], ["https://tec.openplanner.team/stops/Lthfagn1", "https://tec.openplanner.team/stops/Lthfagn2"], ["https://tec.openplanner.team/stops/X775aea", "https://tec.openplanner.team/stops/X775agb"], ["https://tec.openplanner.team/stops/Cmqn5912", "https://tec.openplanner.team/stops/H1ro131b"], ["https://tec.openplanner.team/stops/H2sv214b", "https://tec.openplanner.team/stops/H2sv220a"], ["https://tec.openplanner.team/stops/X982alb", "https://tec.openplanner.team/stops/X982bwa"], ["https://tec.openplanner.team/stops/Cbfstry1", "https://tec.openplanner.team/stops/NC02aba"], ["https://tec.openplanner.team/stops/X869ada", "https://tec.openplanner.team/stops/X869afa"], ["https://tec.openplanner.team/stops/LHCpaci2", "https://tec.openplanner.team/stops/LMNheme1"], ["https://tec.openplanner.team/stops/N513bha", "https://tec.openplanner.team/stops/N521avb"], ["https://tec.openplanner.team/stops/H1cr100a", "https://tec.openplanner.team/stops/H1hl125a"], ["https://tec.openplanner.team/stops/X919aka", "https://tec.openplanner.team/stops/X919akd"], ["https://tec.openplanner.team/stops/X765aeb", "https://tec.openplanner.team/stops/X765afb"], ["https://tec.openplanner.team/stops/H1ht124b", "https://tec.openplanner.team/stops/H1ht197b"], ["https://tec.openplanner.team/stops/X824aba", "https://tec.openplanner.team/stops/X824acb"], ["https://tec.openplanner.team/stops/Lchorme1", "https://tec.openplanner.team/stops/LFebas-1"], ["https://tec.openplanner.team/stops/Bnstgar2", "https://tec.openplanner.team/stops/H3so187b"], ["https://tec.openplanner.team/stops/Lseivoz2", "https://tec.openplanner.team/stops/Lsevico2"], ["https://tec.openplanner.team/stops/N204aia", "https://tec.openplanner.team/stops/N204aja"], ["https://tec.openplanner.team/stops/Bsomtce1", "https://tec.openplanner.team/stops/N584asb"], ["https://tec.openplanner.team/stops/H4my120a", "https://tec.openplanner.team/stops/H4my120b"], ["https://tec.openplanner.team/stops/X818afa", "https://tec.openplanner.team/stops/X818aub"], ["https://tec.openplanner.team/stops/LAYsupe2", "https://tec.openplanner.team/stops/LREraph2"], ["https://tec.openplanner.team/stops/Lhrcite1", "https://tec.openplanner.team/stops/Lhrwigi1"], ["https://tec.openplanner.team/stops/LWHkape1", "https://tec.openplanner.team/stops/LWHmath2"], ["https://tec.openplanner.team/stops/N584bpc", "https://tec.openplanner.team/stops/N584bqa"], ["https://tec.openplanner.team/stops/LCsange1", "https://tec.openplanner.team/stops/LCseg--2"], ["https://tec.openplanner.team/stops/X597aab", "https://tec.openplanner.team/stops/X796afa"], ["https://tec.openplanner.team/stops/X650aib", "https://tec.openplanner.team/stops/X650aka"], ["https://tec.openplanner.team/stops/N501blb", "https://tec.openplanner.team/stops/N501bnb"], ["https://tec.openplanner.team/stops/LBUrout2", "https://tec.openplanner.team/stops/NL30afa"], ["https://tec.openplanner.team/stops/Ctrpn2", "https://tec.openplanner.team/stops/Ctrvert2"], ["https://tec.openplanner.team/stops/H4to137b", "https://tec.openplanner.team/stops/H4to139b"], ["https://tec.openplanner.team/stops/X948aab", "https://tec.openplanner.team/stops/X948arb"], ["https://tec.openplanner.team/stops/Bglacsr1", "https://tec.openplanner.team/stops/Bmrscol1"], ["https://tec.openplanner.team/stops/LVBchau2", "https://tec.openplanner.team/stops/LVBsevr2"], ["https://tec.openplanner.team/stops/H1ms293a", "https://tec.openplanner.team/stops/H1ms312b"], ["https://tec.openplanner.team/stops/LVEdTEC1", "https://tec.openplanner.team/stops/LVEjard2"], ["https://tec.openplanner.team/stops/Llgcbat1", "https://tec.openplanner.team/stops/Llgcbat2"], ["https://tec.openplanner.team/stops/Lrogene*", "https://tec.openplanner.team/stops/Lrogene1"], ["https://tec.openplanner.team/stops/LNCloui1", "https://tec.openplanner.team/stops/LNCpi331"], ["https://tec.openplanner.team/stops/LCelabi2", "https://tec.openplanner.team/stops/LCewaut2"], ["https://tec.openplanner.team/stops/Ceqcfra1", "https://tec.openplanner.team/stops/H1er110a"], ["https://tec.openplanner.team/stops/H5gr137b", "https://tec.openplanner.team/stops/H5st168a"], ["https://tec.openplanner.team/stops/LHEcoll2", "https://tec.openplanner.team/stops/LHEepur2"], ["https://tec.openplanner.team/stops/LPRbrou2", "https://tec.openplanner.team/stops/LPRcha-*"], ["https://tec.openplanner.team/stops/LOehart1", "https://tec.openplanner.team/stops/LOesour1"], ["https://tec.openplanner.team/stops/X824acb", "https://tec.openplanner.team/stops/X824adb"], ["https://tec.openplanner.team/stops/LSPchap2", "https://tec.openplanner.team/stops/LSPxhou1"], ["https://tec.openplanner.team/stops/Ccohotv1", "https://tec.openplanner.team/stops/Ccotrie3"], ["https://tec.openplanner.team/stops/Cchsud06", "https://tec.openplanner.team/stops/Cchsud13"], ["https://tec.openplanner.team/stops/H5qu142a", "https://tec.openplanner.team/stops/H5qu153a"], ["https://tec.openplanner.team/stops/H1el140c", "https://tec.openplanner.team/stops/H1wi151b"], ["https://tec.openplanner.team/stops/X624aib", "https://tec.openplanner.team/stops/X624ajb"], ["https://tec.openplanner.team/stops/Lfhchaf1", "https://tec.openplanner.team/stops/Lfhchaf3"], ["https://tec.openplanner.team/stops/H4hx116b", "https://tec.openplanner.team/stops/H4mo195b"], ["https://tec.openplanner.team/stops/LBkcarr3", "https://tec.openplanner.team/stops/LBkdahl2"], ["https://tec.openplanner.team/stops/H4vx362b", "https://tec.openplanner.team/stops/H4vx365b"], ["https://tec.openplanner.team/stops/NC12adb", "https://tec.openplanner.team/stops/NC23aab"], ["https://tec.openplanner.team/stops/X616afa", "https://tec.openplanner.team/stops/X616aha"], ["https://tec.openplanner.team/stops/LNCneuv1", "https://tec.openplanner.team/stops/LNCsart1"], ["https://tec.openplanner.team/stops/H4wi167b", "https://tec.openplanner.team/stops/H5pe146a"], ["https://tec.openplanner.team/stops/Cthathe1", "https://tec.openplanner.team/stops/Cthathe4"], ["https://tec.openplanner.team/stops/LmNkirc2", "https://tec.openplanner.team/stops/LmNpost1"], ["https://tec.openplanner.team/stops/LHUzoni3", "https://tec.openplanner.team/stops/LTieg--2"], ["https://tec.openplanner.team/stops/H4ma400b", "https://tec.openplanner.team/stops/H4ma417b"], ["https://tec.openplanner.team/stops/Cgyrdid1", "https://tec.openplanner.team/stops/Cgyrdid2"], ["https://tec.openplanner.team/stops/LOunebl1", "https://tec.openplanner.team/stops/X982aad"], ["https://tec.openplanner.team/stops/NL37aia", "https://tec.openplanner.team/stops/NL74aja"], ["https://tec.openplanner.team/stops/LlNbusc1", "https://tec.openplanner.team/stops/LWEcomp1"], ["https://tec.openplanner.team/stops/X882acb", "https://tec.openplanner.team/stops/X882adb"], ["https://tec.openplanner.team/stops/N543baa", "https://tec.openplanner.team/stops/N543bbc"], ["https://tec.openplanner.team/stops/LrAbe601", "https://tec.openplanner.team/stops/LrAknop1"], ["https://tec.openplanner.team/stops/Bchgflo1", "https://tec.openplanner.team/stops/Bopplon2"], ["https://tec.openplanner.team/stops/LWarema1", "https://tec.openplanner.team/stops/LWarema2"], ["https://tec.openplanner.team/stops/LCPecli2", "https://tec.openplanner.team/stops/LMtegli1"], ["https://tec.openplanner.team/stops/Lbogonh1", "https://tec.openplanner.team/stops/Lbogonh4"], ["https://tec.openplanner.team/stops/Lcceg--1", "https://tec.openplanner.team/stops/Lcchala2"], ["https://tec.openplanner.team/stops/LLelava1", "https://tec.openplanner.team/stops/X547ata"], ["https://tec.openplanner.team/stops/H4mb138a", "https://tec.openplanner.team/stops/H4mb138b"], ["https://tec.openplanner.team/stops/X717aha", "https://tec.openplanner.team/stops/X782afb"], ["https://tec.openplanner.team/stops/Blanath2", "https://tec.openplanner.team/stops/Bneelaa1"], ["https://tec.openplanner.team/stops/NC14aeb", "https://tec.openplanner.team/stops/NC14afa"], ["https://tec.openplanner.team/stops/LKmmelo2", "https://tec.openplanner.team/stops/LOdbuis2"], ["https://tec.openplanner.team/stops/X749aca", "https://tec.openplanner.team/stops/X749afa"], ["https://tec.openplanner.team/stops/Bbsifmo1", "https://tec.openplanner.team/stops/Bbsifmo2"], ["https://tec.openplanner.team/stops/LENmc--2", "https://tec.openplanner.team/stops/LENpt--1"], ["https://tec.openplanner.team/stops/X713ada", "https://tec.openplanner.team/stops/X713adb"], ["https://tec.openplanner.team/stops/N106aoa", "https://tec.openplanner.team/stops/N106aob"], ["https://tec.openplanner.team/stops/LoDschu1", "https://tec.openplanner.team/stops/LoDschu2"], ["https://tec.openplanner.team/stops/X910aga", "https://tec.openplanner.team/stops/X910agb"], ["https://tec.openplanner.team/stops/H1og136b", "https://tec.openplanner.team/stops/H5fl104a"], ["https://tec.openplanner.team/stops/Lmibove2", "https://tec.openplanner.team/stops/Lmibove4"], ["https://tec.openplanner.team/stops/LHNecpr1", "https://tec.openplanner.team/stops/LHNecpr4"], ["https://tec.openplanner.team/stops/Cmlcazi1", "https://tec.openplanner.team/stops/Cmlphai2"], ["https://tec.openplanner.team/stops/Crbhurt1", "https://tec.openplanner.team/stops/Crbhurt2"], ["https://tec.openplanner.team/stops/LAyegli2", "https://tec.openplanner.team/stops/LMIlac-1"], ["https://tec.openplanner.team/stops/LWAalou2", "https://tec.openplanner.team/stops/LWAwegg2"], ["https://tec.openplanner.team/stops/LhPprum2", "https://tec.openplanner.team/stops/LwEdorf2"], ["https://tec.openplanner.team/stops/X903aba", "https://tec.openplanner.team/stops/X903aga"], ["https://tec.openplanner.team/stops/X608ana", "https://tec.openplanner.team/stops/X608awa"], ["https://tec.openplanner.team/stops/Bblapin2", "https://tec.openplanner.team/stops/Bblapri1"], ["https://tec.openplanner.team/stops/N501cea", "https://tec.openplanner.team/stops/N521ada"], ["https://tec.openplanner.team/stops/LJAcent2", "https://tec.openplanner.team/stops/LJAhanq4"], ["https://tec.openplanner.team/stops/N551aiy", "https://tec.openplanner.team/stops/N551akb"], ["https://tec.openplanner.team/stops/N539aya", "https://tec.openplanner.team/stops/N585aia"], ["https://tec.openplanner.team/stops/H4lh118a", "https://tec.openplanner.team/stops/H4os223b"], ["https://tec.openplanner.team/stops/LMAbruy2", "https://tec.openplanner.team/stops/LMAchod1"], ["https://tec.openplanner.team/stops/H4be146a", "https://tec.openplanner.team/stops/H5bl118a"], ["https://tec.openplanner.team/stops/LmI82--2", "https://tec.openplanner.team/stops/LmIzent2"], ["https://tec.openplanner.team/stops/N308bib", "https://tec.openplanner.team/stops/N308bjb"], ["https://tec.openplanner.team/stops/X354aea", "https://tec.openplanner.team/stops/X354afa"], ["https://tec.openplanner.team/stops/X345aab", "https://tec.openplanner.team/stops/X345abb"], ["https://tec.openplanner.team/stops/Cpl4bra3", "https://tec.openplanner.team/stops/Cplstfa2"], ["https://tec.openplanner.team/stops/H4wg121b", "https://tec.openplanner.team/stops/H4wg122a"], ["https://tec.openplanner.team/stops/X902aqa", "https://tec.openplanner.team/stops/X902aub"], ["https://tec.openplanner.team/stops/N512aua", "https://tec.openplanner.team/stops/N512ava"], ["https://tec.openplanner.team/stops/Bborche1", "https://tec.openplanner.team/stops/Bhticbr1"], ["https://tec.openplanner.team/stops/H1ob330b", "https://tec.openplanner.team/stops/H1ob333a"], ["https://tec.openplanner.team/stops/H2ca102b", "https://tec.openplanner.team/stops/H2ca111b"], ["https://tec.openplanner.team/stops/H1sb149b", "https://tec.openplanner.team/stops/H1sb151a"], ["https://tec.openplanner.team/stops/LPUchpl2", "https://tec.openplanner.team/stops/LPUmang1"], ["https://tec.openplanner.team/stops/LBjcent1", "https://tec.openplanner.team/stops/X575aib"], ["https://tec.openplanner.team/stops/LLSbajo1", "https://tec.openplanner.team/stops/LLStour2"], ["https://tec.openplanner.team/stops/Lbrddef4", "https://tec.openplanner.team/stops/Llgddef1"], ["https://tec.openplanner.team/stops/X937ada", "https://tec.openplanner.team/stops/X937adb"], ["https://tec.openplanner.team/stops/Cchcase1", "https://tec.openplanner.team/stops/Cchcase2"], ["https://tec.openplanner.team/stops/LkEheyg1", "https://tec.openplanner.team/stops/LkEheyg2"], ["https://tec.openplanner.team/stops/X839afb", "https://tec.openplanner.team/stops/X840aga"], ["https://tec.openplanner.team/stops/LaAburt1", "https://tec.openplanner.team/stops/LaAkapi1"], ["https://tec.openplanner.team/stops/NC44aab", "https://tec.openplanner.team/stops/NC44afa"], ["https://tec.openplanner.team/stops/H5rx115d", "https://tec.openplanner.team/stops/H5rx129b"], ["https://tec.openplanner.team/stops/X801ajb", "https://tec.openplanner.team/stops/X801bma"], ["https://tec.openplanner.team/stops/N167aba", "https://tec.openplanner.team/stops/N234aab"], ["https://tec.openplanner.team/stops/Cfcrerp1", "https://tec.openplanner.team/stops/NH21agb"], ["https://tec.openplanner.team/stops/X637ajb", "https://tec.openplanner.team/stops/X637akb"], ["https://tec.openplanner.team/stops/LCschri1", "https://tec.openplanner.team/stops/LCsgend1"], ["https://tec.openplanner.team/stops/Lemparc2", "https://tec.openplanner.team/stops/Lemsely1"], ["https://tec.openplanner.team/stops/H1fr117a", "https://tec.openplanner.team/stops/H1fr119a"], ["https://tec.openplanner.team/stops/Lfhsoux2", "https://tec.openplanner.team/stops/Lmlboul2"], ["https://tec.openplanner.team/stops/H4ep126b", "https://tec.openplanner.team/stops/H4la199a"], ["https://tec.openplanner.team/stops/Bjdssta1", "https://tec.openplanner.team/stops/Blthvil1"], ["https://tec.openplanner.team/stops/H1pa100a", "https://tec.openplanner.team/stops/H1pa117b"], ["https://tec.openplanner.team/stops/Brixbou2", "https://tec.openplanner.team/stops/Brixroi1"], ["https://tec.openplanner.team/stops/N225aba", "https://tec.openplanner.team/stops/N225ahb"], ["https://tec.openplanner.team/stops/Crofrio2", "https://tec.openplanner.team/stops/Crolema2"], ["https://tec.openplanner.team/stops/LmTreic1", "https://tec.openplanner.team/stops/LmTreic2"], ["https://tec.openplanner.team/stops/LFmbure1", "https://tec.openplanner.team/stops/LFmbure2"], ["https://tec.openplanner.team/stops/H1em102a", "https://tec.openplanner.team/stops/H1em105b"], ["https://tec.openplanner.team/stops/H3so159b", "https://tec.openplanner.team/stops/H3so176a"], ["https://tec.openplanner.team/stops/H2ml114a", "https://tec.openplanner.team/stops/H2mo117b"], ["https://tec.openplanner.team/stops/Caicalv2", "https://tec.openplanner.team/stops/Caigibe2"], ["https://tec.openplanner.team/stops/LmNelis1", "https://tec.openplanner.team/stops/LmNkrew1"], ["https://tec.openplanner.team/stops/NH21aha", "https://tec.openplanner.team/stops/NH21ahb"], ["https://tec.openplanner.team/stops/H4mx116a", "https://tec.openplanner.team/stops/H4po125a"], ["https://tec.openplanner.team/stops/Cobobjo2", "https://tec.openplanner.team/stops/Cobvill2"], ["https://tec.openplanner.team/stops/N244aca", "https://tec.openplanner.team/stops/N251ada"], ["https://tec.openplanner.team/stops/Lbhgare2", "https://tec.openplanner.team/stops/Lbhpeti2"], ["https://tec.openplanner.team/stops/N538aua", "https://tec.openplanner.team/stops/N538aub"], ["https://tec.openplanner.team/stops/H1wa136a", "https://tec.openplanner.team/stops/H1wa137a"], ["https://tec.openplanner.team/stops/N501bka", "https://tec.openplanner.team/stops/N502adb"], ["https://tec.openplanner.team/stops/Cctbifu1", "https://tec.openplanner.team/stops/Cctwaut2"], ["https://tec.openplanner.team/stops/Lsechev2", "https://tec.openplanner.team/stops/Lsefoot1"], ["https://tec.openplanner.team/stops/Cmtpblo2", "https://tec.openplanner.team/stops/Cmtplac3"], ["https://tec.openplanner.team/stops/H5at122a", "https://tec.openplanner.team/stops/H5at133b"], ["https://tec.openplanner.team/stops/LSkmarq2", "https://tec.openplanner.team/stops/LYechpl1"], ["https://tec.openplanner.team/stops/N138aga", "https://tec.openplanner.team/stops/N426acb"], ["https://tec.openplanner.team/stops/Cgzchen1", "https://tec.openplanner.team/stops/Cthha502"], ["https://tec.openplanner.team/stops/LSecomm1", "https://tec.openplanner.team/stops/LTiruel1"], ["https://tec.openplanner.team/stops/Bperalv2", "https://tec.openplanner.team/stops/Btlbmel1"], ["https://tec.openplanner.team/stops/LSItert1", "https://tec.openplanner.team/stops/LSIvieu2"], ["https://tec.openplanner.team/stops/Blhueso1", "https://tec.openplanner.team/stops/Blhutma1"], ["https://tec.openplanner.team/stops/Ccugrtr2", "https://tec.openplanner.team/stops/Ccutill2"], ["https://tec.openplanner.team/stops/X608aia", "https://tec.openplanner.team/stops/X608aib"], ["https://tec.openplanner.team/stops/N230aga", "https://tec.openplanner.team/stops/N230agb"], ["https://tec.openplanner.team/stops/X547abb", "https://tec.openplanner.team/stops/X547ata"], ["https://tec.openplanner.team/stops/LaAgold2", "https://tec.openplanner.team/stops/LaAjahn2"], ["https://tec.openplanner.team/stops/N390afb", "https://tec.openplanner.team/stops/N390ama"], ["https://tec.openplanner.team/stops/X801aaa", "https://tec.openplanner.team/stops/X801abc"], ["https://tec.openplanner.team/stops/H1cu118a", "https://tec.openplanner.team/stops/H1fr122a"], ["https://tec.openplanner.team/stops/H1th182a", "https://tec.openplanner.team/stops/H3go103a"], ["https://tec.openplanner.team/stops/H1me112a", "https://tec.openplanner.team/stops/H1me113b"], ["https://tec.openplanner.team/stops/N503afa", "https://tec.openplanner.team/stops/N503ahb"], ["https://tec.openplanner.team/stops/Cchdagn2", "https://tec.openplanner.team/stops/Ccheden1"], ["https://tec.openplanner.team/stops/N565aia", "https://tec.openplanner.team/stops/N565aib"], ["https://tec.openplanner.team/stops/LDOanes1", "https://tec.openplanner.team/stops/LDObran1"], ["https://tec.openplanner.team/stops/X735aca", "https://tec.openplanner.team/stops/X735acb"], ["https://tec.openplanner.team/stops/N343aea", "https://tec.openplanner.team/stops/N350ada"], ["https://tec.openplanner.team/stops/LlgLAMB3", "https://tec.openplanner.team/stops/LlgLAMB5"], ["https://tec.openplanner.team/stops/N206aab", "https://tec.openplanner.team/stops/N206aba"], ["https://tec.openplanner.team/stops/LhGfl242", "https://tec.openplanner.team/stops/LkEschi2"], ["https://tec.openplanner.team/stops/LRIhous1", "https://tec.openplanner.team/stops/LRIhous2"], ["https://tec.openplanner.team/stops/Bhptpla1", "https://tec.openplanner.team/stops/Bhptpla2"], ["https://tec.openplanner.team/stops/Cbmgare2", "https://tec.openplanner.team/stops/Cbmviv1"], ["https://tec.openplanner.team/stops/H4ag102b", "https://tec.openplanner.team/stops/H4cl114b"], ["https://tec.openplanner.team/stops/Bsgebou1", "https://tec.openplanner.team/stops/Bvilpar1"], ["https://tec.openplanner.team/stops/Blhufro2", "https://tec.openplanner.team/stops/Blhutma1"], ["https://tec.openplanner.team/stops/Lchplai2", "https://tec.openplanner.team/stops/Lchsart1"], ["https://tec.openplanner.team/stops/H1ca104a", "https://tec.openplanner.team/stops/H1ca109a"], ["https://tec.openplanner.team/stops/NH01asa", "https://tec.openplanner.team/stops/NH01asb"], ["https://tec.openplanner.team/stops/Cfcbobr1", "https://tec.openplanner.team/stops/Cfcsaut4"], ["https://tec.openplanner.team/stops/LHUchh-1", "https://tec.openplanner.team/stops/NL80aua"], ["https://tec.openplanner.team/stops/Lhuecol2", "https://tec.openplanner.team/stops/Lhurouh2"], ["https://tec.openplanner.team/stops/Csoforc2", "https://tec.openplanner.team/stops/Csostoc1"], ["https://tec.openplanner.team/stops/N232bca", "https://tec.openplanner.team/stops/N232bcb"], ["https://tec.openplanner.team/stops/LROandr2", "https://tec.openplanner.team/stops/LROchap2"], ["https://tec.openplanner.team/stops/Ceqmeti1", "https://tec.openplanner.team/stops/H1er108a"], ["https://tec.openplanner.team/stops/Llgomal2", "https://tec.openplanner.team/stops/Llgwall1"], ["https://tec.openplanner.team/stops/N211aha", "https://tec.openplanner.team/stops/N211asa"], ["https://tec.openplanner.team/stops/H1qg138a", "https://tec.openplanner.team/stops/H1qg138c"], ["https://tec.openplanner.team/stops/Chhdubr2", "https://tec.openplanner.team/stops/Chhprai1"], ["https://tec.openplanner.team/stops/H4or113b", "https://tec.openplanner.team/stops/H4or116b"], ["https://tec.openplanner.team/stops/Lanothe1", "https://tec.openplanner.team/stops/Lrcchar2"], ["https://tec.openplanner.team/stops/Caihai82", "https://tec.openplanner.team/stops/Caimeno4"], ["https://tec.openplanner.team/stops/X991aea", "https://tec.openplanner.team/stops/X991afa"], ["https://tec.openplanner.team/stops/X749aba", "https://tec.openplanner.team/stops/X749aca"], ["https://tec.openplanner.team/stops/LSoboul2", "https://tec.openplanner.team/stops/LSochal2"], ["https://tec.openplanner.team/stops/Bquebth1", "https://tec.openplanner.team/stops/Bquegob4"], ["https://tec.openplanner.team/stops/LbUmurr1", "https://tec.openplanner.team/stops/LlSbuch1"], ["https://tec.openplanner.team/stops/LDapota1", "https://tec.openplanner.team/stops/LHgroso2"], ["https://tec.openplanner.team/stops/LSkb1352", "https://tec.openplanner.team/stops/LSkmarq1"], ["https://tec.openplanner.team/stops/Cmmjami2", "https://tec.openplanner.team/stops/Cmmschw2"], ["https://tec.openplanner.team/stops/X618ama", "https://tec.openplanner.team/stops/X618ana"], ["https://tec.openplanner.team/stops/LWM759-1", "https://tec.openplanner.team/stops/LWMcent1"], ["https://tec.openplanner.team/stops/LHycent*", "https://tec.openplanner.team/stops/LOnec--2"], ["https://tec.openplanner.team/stops/H4ty353a", "https://tec.openplanner.team/stops/H4ty353b"], ["https://tec.openplanner.team/stops/H2mm136a", "https://tec.openplanner.team/stops/H2mo126b"], ["https://tec.openplanner.team/stops/LATcorn1", "https://tec.openplanner.team/stops/LHUzoni3"], ["https://tec.openplanner.team/stops/H1ob336b", "https://tec.openplanner.team/stops/H1sd343a"], ["https://tec.openplanner.team/stops/N542adb", "https://tec.openplanner.team/stops/N542afa"], ["https://tec.openplanner.team/stops/X886adb", "https://tec.openplanner.team/stops/X886aea"], ["https://tec.openplanner.team/stops/H4ce102a", "https://tec.openplanner.team/stops/H4ce106a"], ["https://tec.openplanner.team/stops/X608ada", "https://tec.openplanner.team/stops/X608aja"], ["https://tec.openplanner.team/stops/LBJplan1", "https://tec.openplanner.team/stops/LMAbass2"], ["https://tec.openplanner.team/stops/H1al105b", "https://tec.openplanner.team/stops/H1al146b"], ["https://tec.openplanner.team/stops/Llgblon1", "https://tec.openplanner.team/stops/Llgblon2"], ["https://tec.openplanner.team/stops/LRObruy3", "https://tec.openplanner.team/stops/LRObruy4"], ["https://tec.openplanner.team/stops/X804awa", "https://tec.openplanner.team/stops/X804bgb"], ["https://tec.openplanner.team/stops/Cvtndam3", "https://tec.openplanner.team/stops/Cvtvois2"], ["https://tec.openplanner.team/stops/N232ahb", "https://tec.openplanner.team/stops/N232bqb"], ["https://tec.openplanner.team/stops/Llgchal2", "https://tec.openplanner.team/stops/Llgcoll1"], ["https://tec.openplanner.team/stops/N145akb", "https://tec.openplanner.team/stops/N150abb"], ["https://tec.openplanner.team/stops/H4co110a", "https://tec.openplanner.team/stops/H4co157a"], ["https://tec.openplanner.team/stops/X804akb", "https://tec.openplanner.team/stops/X804bpa"], ["https://tec.openplanner.team/stops/LLOberl1", "https://tec.openplanner.team/stops/LLOchpl1"], ["https://tec.openplanner.team/stops/X823aba", "https://tec.openplanner.team/stops/X823agb"], ["https://tec.openplanner.team/stops/LAVpequ2", "https://tec.openplanner.team/stops/LVHcent1"], ["https://tec.openplanner.team/stops/X750bpa", "https://tec.openplanner.team/stops/X780adb"], ["https://tec.openplanner.team/stops/X877aaa", "https://tec.openplanner.team/stops/X877aab"], ["https://tec.openplanner.team/stops/Bpermon4", "https://tec.openplanner.team/stops/Bperrcr2"], ["https://tec.openplanner.team/stops/N548ahb", "https://tec.openplanner.team/stops/N569ada"], ["https://tec.openplanner.team/stops/Cdajume1", "https://tec.openplanner.team/stops/Cdaptca2"], ["https://tec.openplanner.team/stops/Ccicent2", "https://tec.openplanner.team/stops/Ccivill2"], ["https://tec.openplanner.team/stops/LFLcent1", "https://tec.openplanner.team/stops/LMvrabo2"], ["https://tec.openplanner.team/stops/H1so136c", "https://tec.openplanner.team/stops/H1so145a"], ["https://tec.openplanner.team/stops/LTRferm2", "https://tec.openplanner.team/stops/LTRoasi2"], ["https://tec.openplanner.team/stops/X621aab", "https://tec.openplanner.team/stops/X621abb"], ["https://tec.openplanner.team/stops/LMIeg--2", "https://tec.openplanner.team/stops/LMIlac-2"], ["https://tec.openplanner.team/stops/N557ada", "https://tec.openplanner.team/stops/N558aab"], ["https://tec.openplanner.team/stops/Lmaelhe1", "https://tec.openplanner.team/stops/Lmagara1"], ["https://tec.openplanner.team/stops/N501jla", "https://tec.openplanner.team/stops/N501joa"], ["https://tec.openplanner.team/stops/LmDhoch2", "https://tec.openplanner.team/stops/LmDhoch3"], ["https://tec.openplanner.team/stops/N309aba", "https://tec.openplanner.team/stops/N313abb"], ["https://tec.openplanner.team/stops/H1qy134a", "https://tec.openplanner.team/stops/H1qy136b"], ["https://tec.openplanner.team/stops/Btsllfp2", "https://tec.openplanner.team/stops/Btsllsc2"], ["https://tec.openplanner.team/stops/Cthrlef2", "https://tec.openplanner.team/stops/Cthrpoi1"], ["https://tec.openplanner.team/stops/LPRbrou1", "https://tec.openplanner.team/stops/LPRbrou2"], ["https://tec.openplanner.team/stops/N501gkb", "https://tec.openplanner.team/stops/N501kxb"], ["https://tec.openplanner.team/stops/H1ms262a", "https://tec.openplanner.team/stops/H1ms265a"], ["https://tec.openplanner.team/stops/X730acb", "https://tec.openplanner.team/stops/X730adb"], ["https://tec.openplanner.team/stops/LHMbelv2", "https://tec.openplanner.team/stops/LHMgrun1"], ["https://tec.openplanner.team/stops/X634aja", "https://tec.openplanner.team/stops/X634akb"], ["https://tec.openplanner.team/stops/Cgzabur1", "https://tec.openplanner.team/stops/Cgzpjeu2"], ["https://tec.openplanner.team/stops/X359aca", "https://tec.openplanner.team/stops/X359aea"], ["https://tec.openplanner.team/stops/LRfcent2", "https://tec.openplanner.team/stops/LRffroi2"], ["https://tec.openplanner.team/stops/LFHjamo1", "https://tec.openplanner.team/stops/LFHjamo2"], ["https://tec.openplanner.team/stops/H4ty343b", "https://tec.openplanner.team/stops/H4ty344b"], ["https://tec.openplanner.team/stops/LBEoblu1", "https://tec.openplanner.team/stops/LTIsain1"], ["https://tec.openplanner.team/stops/X681afa", "https://tec.openplanner.team/stops/X681agb"], ["https://tec.openplanner.team/stops/Cnadepo1", "https://tec.openplanner.team/stops/Cnadepo2"], ["https://tec.openplanner.team/stops/H4ka193a", "https://tec.openplanner.team/stops/H4ka193b"], ["https://tec.openplanner.team/stops/LkEbran2", "https://tec.openplanner.team/stops/LMsbusc2"], ["https://tec.openplanner.team/stops/H4lz164a", "https://tec.openplanner.team/stops/H4tp147b"], ["https://tec.openplanner.team/stops/Blemhon1", "https://tec.openplanner.team/stops/Blempuc1"], ["https://tec.openplanner.team/stops/Cchalou2", "https://tec.openplanner.team/stops/Clojone1"], ["https://tec.openplanner.team/stops/LSPplat2", "https://tec.openplanner.team/stops/LSPptch1"], ["https://tec.openplanner.team/stops/X342abb", "https://tec.openplanner.team/stops/X342aca"], ["https://tec.openplanner.team/stops/Cmg4bra2", "https://tec.openplanner.team/stops/Cmghay1"], ["https://tec.openplanner.team/stops/LHEjose1", "https://tec.openplanner.team/stops/LHEjose2"], ["https://tec.openplanner.team/stops/Blincal1", "https://tec.openplanner.team/stops/Blincal2"], ["https://tec.openplanner.team/stops/X741aaa", "https://tec.openplanner.team/stops/X752aab"], ["https://tec.openplanner.team/stops/N543ala", "https://tec.openplanner.team/stops/N543alb"], ["https://tec.openplanner.team/stops/X619aic", "https://tec.openplanner.team/stops/X620aea"], ["https://tec.openplanner.team/stops/Cgycvie1", "https://tec.openplanner.team/stops/Cgygayo4"], ["https://tec.openplanner.team/stops/N308adb", "https://tec.openplanner.team/stops/N308afb"], ["https://tec.openplanner.team/stops/LBCtros1", "https://tec.openplanner.team/stops/LMTdeho1"], ["https://tec.openplanner.team/stops/N525aca", "https://tec.openplanner.team/stops/N525acb"], ["https://tec.openplanner.team/stops/N101aia", "https://tec.openplanner.team/stops/N101aic"], ["https://tec.openplanner.team/stops/LLUalou2", "https://tec.openplanner.team/stops/LLUvent5"], ["https://tec.openplanner.team/stops/LVLmabi1", "https://tec.openplanner.team/stops/LVLmart2"], ["https://tec.openplanner.team/stops/H4lh161a", "https://tec.openplanner.team/stops/H5wo127a"], ["https://tec.openplanner.team/stops/Bovesnh2", "https://tec.openplanner.team/stops/Bovetwe1"], ["https://tec.openplanner.team/stops/H1br129a", "https://tec.openplanner.team/stops/H3bo100c"], ["https://tec.openplanner.team/stops/LMEcour1", "https://tec.openplanner.team/stops/LMIpast2"], ["https://tec.openplanner.team/stops/N543btb", "https://tec.openplanner.team/stops/N543cpa"], ["https://tec.openplanner.team/stops/NL77ana", "https://tec.openplanner.team/stops/NL78aab"], ["https://tec.openplanner.team/stops/H4gz114a", "https://tec.openplanner.team/stops/H4gz114b"], ["https://tec.openplanner.team/stops/N304aba", "https://tec.openplanner.team/stops/N305aaa"], ["https://tec.openplanner.team/stops/LAMcime2", "https://tec.openplanner.team/stops/LAMjaur2"], ["https://tec.openplanner.team/stops/X753aab", "https://tec.openplanner.team/stops/X753abc"], ["https://tec.openplanner.team/stops/LaAmise2", "https://tec.openplanner.team/stops/LaAronh1"], ["https://tec.openplanner.team/stops/LNEcouc2", "https://tec.openplanner.team/stops/LNEpass2"], ["https://tec.openplanner.team/stops/N576abb", "https://tec.openplanner.team/stops/N576akb"], ["https://tec.openplanner.team/stops/LCEhayo2", "https://tec.openplanner.team/stops/LCEplac2"], ["https://tec.openplanner.team/stops/LMheg--2", "https://tec.openplanner.team/stops/Lprmana4"], ["https://tec.openplanner.team/stops/H5pe133b", "https://tec.openplanner.team/stops/H5pe141b"], ["https://tec.openplanner.team/stops/LaUn1--3", "https://tec.openplanner.team/stops/LmS11--2"], ["https://tec.openplanner.team/stops/Cmlener1", "https://tec.openplanner.team/stops/Cmlvesp1"], ["https://tec.openplanner.team/stops/Lengran2", "https://tec.openplanner.team/stops/Lenptsa2"], ["https://tec.openplanner.team/stops/N236aba", "https://tec.openplanner.team/stops/N236abb"], ["https://tec.openplanner.team/stops/LRarami1", "https://tec.openplanner.team/stops/LRarami2"], ["https://tec.openplanner.team/stops/Bvilcha1", "https://tec.openplanner.team/stops/Bvilcha2"], ["https://tec.openplanner.team/stops/H2mo122d", "https://tec.openplanner.team/stops/H2mo145b"], ["https://tec.openplanner.team/stops/Crarmas2", "https://tec.openplanner.team/stops/Cravign4"], ["https://tec.openplanner.team/stops/LEntrix2", "https://tec.openplanner.team/stops/NL67acb"], ["https://tec.openplanner.team/stops/LHYdogn2", "https://tec.openplanner.team/stops/LSEquar2"], ["https://tec.openplanner.team/stops/N528aab", "https://tec.openplanner.team/stops/N528arc"], ["https://tec.openplanner.team/stops/Cgobl%C3%A9r2", "https://tec.openplanner.team/stops/Cwxchap2"], ["https://tec.openplanner.team/stops/LSPmari1", "https://tec.openplanner.team/stops/LSPmari2"], ["https://tec.openplanner.team/stops/Bbiehec1", "https://tec.openplanner.team/stops/Bbiehpo1"], ["https://tec.openplanner.team/stops/Ccojaur2", "https://tec.openplanner.team/stops/Ccojaur3"], ["https://tec.openplanner.team/stops/H4av102a", "https://tec.openplanner.team/stops/H4ef165c"], ["https://tec.openplanner.team/stops/LKmcite1", "https://tec.openplanner.team/stops/LKmdani1"], ["https://tec.openplanner.team/stops/H1ho122a", "https://tec.openplanner.team/stops/H1ho137a"], ["https://tec.openplanner.team/stops/Cci4091", "https://tec.openplanner.team/stops/Ccimont1"], ["https://tec.openplanner.team/stops/N131afb", "https://tec.openplanner.team/stops/N132afa"], ["https://tec.openplanner.team/stops/Ccymabo2", "https://tec.openplanner.team/stops/Csrcarr1"], ["https://tec.openplanner.team/stops/Bitrhou1", "https://tec.openplanner.team/stops/Bitrhou2"], ["https://tec.openplanner.team/stops/Bboncfv1", "https://tec.openplanner.team/stops/Bchgegl1"], ["https://tec.openplanner.team/stops/Cgzabau3", "https://tec.openplanner.team/stops/Cgzmira1"], ["https://tec.openplanner.team/stops/Bincfer1", "https://tec.openplanner.team/stops/Binclon1"], ["https://tec.openplanner.team/stops/LkTraer2", "https://tec.openplanner.team/stops/LkTweih2"], ["https://tec.openplanner.team/stops/N543bba", "https://tec.openplanner.team/stops/N554aba"], ["https://tec.openplanner.team/stops/N103aab", "https://tec.openplanner.team/stops/N103aba"], ["https://tec.openplanner.team/stops/H1mr124a", "https://tec.openplanner.team/stops/H1mr125b"], ["https://tec.openplanner.team/stops/LMsviad1", "https://tec.openplanner.team/stops/LMsvill1"], ["https://tec.openplanner.team/stops/Lagpaix2", "https://tec.openplanner.team/stops/Llgcond2"], ["https://tec.openplanner.team/stops/Cchdigu2", "https://tec.openplanner.team/stops/Cchtram2"], ["https://tec.openplanner.team/stops/Livroch1", "https://tec.openplanner.team/stops/Livroch2"], ["https://tec.openplanner.team/stops/Bwolvan1", "https://tec.openplanner.team/stops/Bwolvan2"], ["https://tec.openplanner.team/stops/H4ss154b", "https://tec.openplanner.team/stops/H4ss156a"], ["https://tec.openplanner.team/stops/Lenclar2", "https://tec.openplanner.team/stops/Lvehout1"], ["https://tec.openplanner.team/stops/Ccobour1", "https://tec.openplanner.team/stops/Cgxvvel1"], ["https://tec.openplanner.team/stops/Llghori2", "https://tec.openplanner.team/stops/Llgtir-1"], ["https://tec.openplanner.team/stops/Blindel1", "https://tec.openplanner.team/stops/Blinhue1"], ["https://tec.openplanner.team/stops/Bbeardu2", "https://tec.openplanner.team/stops/Bbeascl2"], ["https://tec.openplanner.team/stops/LFocent2", "https://tec.openplanner.team/stops/LFothie2"], ["https://tec.openplanner.team/stops/LNCchau2", "https://tec.openplanner.team/stops/LNCvill2"], ["https://tec.openplanner.team/stops/LrDschl1", "https://tec.openplanner.team/stops/LrDschl2"], ["https://tec.openplanner.team/stops/LHTbonn1", "https://tec.openplanner.team/stops/LHTbonn2"], ["https://tec.openplanner.team/stops/LjeGRPMA", "https://tec.openplanner.team/stops/Lsekubo1"], ["https://tec.openplanner.team/stops/X641aka", "https://tec.openplanner.team/stops/X641ala"], ["https://tec.openplanner.team/stops/Bchgvil1", "https://tec.openplanner.team/stops/Bchgvil2"], ["https://tec.openplanner.team/stops/N557afa", "https://tec.openplanner.team/stops/N557afb"], ["https://tec.openplanner.team/stops/Ljuroch2", "https://tec.openplanner.team/stops/Ljuvert2"], ["https://tec.openplanner.team/stops/LWRferm2", "https://tec.openplanner.team/stops/LWRtroi2"], ["https://tec.openplanner.team/stops/Btslnil2", "https://tec.openplanner.team/stops/Btslpbr1"], ["https://tec.openplanner.team/stops/LhOzent1", "https://tec.openplanner.team/stops/LhOzent2"], ["https://tec.openplanner.team/stops/Lbococh2", "https://tec.openplanner.team/stops/Lbocorn1"], ["https://tec.openplanner.team/stops/Llgfoss2", "https://tec.openplanner.team/stops/Llglonh2"], ["https://tec.openplanner.team/stops/X817aaa", "https://tec.openplanner.team/stops/X817aba"], ["https://tec.openplanner.team/stops/Btubsam1", "https://tec.openplanner.team/stops/Btubsam2"], ["https://tec.openplanner.team/stops/N543bpb", "https://tec.openplanner.team/stops/N543cha"], ["https://tec.openplanner.team/stops/X822aga", "https://tec.openplanner.team/stops/X822aka"], ["https://tec.openplanner.team/stops/Cfcchas2", "https://tec.openplanner.team/stops/Cfcstan1"], ["https://tec.openplanner.team/stops/Cmecime1", "https://tec.openplanner.team/stops/Cmerlme1"], ["https://tec.openplanner.team/stops/H1by100a", "https://tec.openplanner.team/stops/H1by107b"], ["https://tec.openplanner.team/stops/LBRgare2", "https://tec.openplanner.team/stops/LBRpt--2"], ["https://tec.openplanner.team/stops/LBNlong1", "https://tec.openplanner.team/stops/LBNlong2"], ["https://tec.openplanner.team/stops/Csobail1", "https://tec.openplanner.team/stops/Csochea2"], ["https://tec.openplanner.team/stops/H4cp103a", "https://tec.openplanner.team/stops/H4cp103b"], ["https://tec.openplanner.team/stops/LHMchev1", "https://tec.openplanner.team/stops/LHMgulp2"], ["https://tec.openplanner.team/stops/Bbcoeco2", "https://tec.openplanner.team/stops/Bbcogpl2"], ["https://tec.openplanner.team/stops/X639aia", "https://tec.openplanner.team/stops/X639ata"], ["https://tec.openplanner.team/stops/N527aca", "https://tec.openplanner.team/stops/N527acb"], ["https://tec.openplanner.team/stops/X902ana", "https://tec.openplanner.team/stops/X902asa"], ["https://tec.openplanner.team/stops/H1eo106a", "https://tec.openplanner.team/stops/H1mj126a"], ["https://tec.openplanner.team/stops/N101aoa", "https://tec.openplanner.team/stops/N101aob"], ["https://tec.openplanner.team/stops/LbUhons2", "https://tec.openplanner.team/stops/LbUmolk2"], ["https://tec.openplanner.team/stops/Crcrgar1", "https://tec.openplanner.team/stops/NH03afb"], ["https://tec.openplanner.team/stops/LHEclef2", "https://tec.openplanner.team/stops/LHEjose2"], ["https://tec.openplanner.team/stops/X902agb", "https://tec.openplanner.team/stops/X902ajb"], ["https://tec.openplanner.team/stops/Cmitrie2", "https://tec.openplanner.team/stops/Cmivert2"], ["https://tec.openplanner.team/stops/H4am101a", "https://tec.openplanner.team/stops/H4am101b"], ["https://tec.openplanner.team/stops/X602aca", "https://tec.openplanner.team/stops/X602afa"], ["https://tec.openplanner.team/stops/Bnodlce2", "https://tec.openplanner.team/stops/Boplham1"], ["https://tec.openplanner.team/stops/LBLvici1", "https://tec.openplanner.team/stops/LBLvici2"], ["https://tec.openplanner.team/stops/LhEbruc1", "https://tec.openplanner.team/stops/LhEtivo2"], ["https://tec.openplanner.team/stops/H4eg103a", "https://tec.openplanner.team/stops/H4eg103b"], ["https://tec.openplanner.team/stops/Cgocalv2", "https://tec.openplanner.team/stops/CMcalv2"], ["https://tec.openplanner.team/stops/X768ald", "https://tec.openplanner.team/stops/X768amb"], ["https://tec.openplanner.team/stops/LETtemp1", "https://tec.openplanner.team/stops/LMIlac-2"], ["https://tec.openplanner.team/stops/Cmesncv1", "https://tec.openplanner.team/stops/Cmesncv3"], ["https://tec.openplanner.team/stops/Llgmass1", "https://tec.openplanner.team/stops/Llgsorb2"], ["https://tec.openplanner.team/stops/LCPaube1", "https://tec.openplanner.team/stops/LLNeg--1"], ["https://tec.openplanner.team/stops/Cdaptca1", "https://tec.openplanner.team/stops/CMdamp2"], ["https://tec.openplanner.team/stops/Bbldgar1", "https://tec.openplanner.team/stops/Bbldvaa1"], ["https://tec.openplanner.team/stops/N570aaa", "https://tec.openplanner.team/stops/N570aba"], ["https://tec.openplanner.team/stops/X659ara", "https://tec.openplanner.team/stops/X659arb"], ["https://tec.openplanner.team/stops/N501cia", "https://tec.openplanner.team/stops/N501cja"], ["https://tec.openplanner.team/stops/Cflpost2", "https://tec.openplanner.team/stops/Cwgcroi1"], ["https://tec.openplanner.team/stops/X750aia", "https://tec.openplanner.team/stops/X750aka"], ["https://tec.openplanner.team/stops/H4pp121b", "https://tec.openplanner.team/stops/H4qu230a"], ["https://tec.openplanner.team/stops/Lmlec--1", "https://tec.openplanner.team/stops/Lmleg--2"], ["https://tec.openplanner.team/stops/NR21aia", "https://tec.openplanner.team/stops/NR38aca"], ["https://tec.openplanner.team/stops/H4fr142b", "https://tec.openplanner.team/stops/H4fr145b"], ["https://tec.openplanner.team/stops/N532aja", "https://tec.openplanner.team/stops/N533adb"], ["https://tec.openplanner.team/stops/N251aab", "https://tec.openplanner.team/stops/N286aba"], ["https://tec.openplanner.team/stops/Bgemkal1", "https://tec.openplanner.team/stops/N541acb"], ["https://tec.openplanner.team/stops/Lprchat2", "https://tec.openplanner.team/stops/Lprperr1"], ["https://tec.openplanner.team/stops/Bcrncen1", "https://tec.openplanner.team/stops/Bcrnegl2"], ["https://tec.openplanner.team/stops/Bmarvil2", "https://tec.openplanner.team/stops/Csawagn2"], ["https://tec.openplanner.team/stops/Bhalrat2", "https://tec.openplanner.team/stops/Bhalwat2"], ["https://tec.openplanner.team/stops/H4gz114b", "https://tec.openplanner.team/stops/H4lz155a"], ["https://tec.openplanner.team/stops/LYegeor2", "https://tec.openplanner.team/stops/LYegeor4"], ["https://tec.openplanner.team/stops/LmDdenk2", "https://tec.openplanner.team/stops/LsVfeye1"], ["https://tec.openplanner.team/stops/Bixlfla2", "https://tec.openplanner.team/stops/Bixllep2"], ["https://tec.openplanner.team/stops/X614awa", "https://tec.openplanner.team/stops/X615aua"], ["https://tec.openplanner.team/stops/X892acb", "https://tec.openplanner.team/stops/X892afb"], ["https://tec.openplanner.team/stops/X879aca", "https://tec.openplanner.team/stops/X879afa"], ["https://tec.openplanner.team/stops/N521aja", "https://tec.openplanner.team/stops/N521alb"], ["https://tec.openplanner.team/stops/LBQmaye2", "https://tec.openplanner.team/stops/X919aba"], ["https://tec.openplanner.team/stops/N532aca", "https://tec.openplanner.team/stops/N533aga"], ["https://tec.openplanner.team/stops/H4ag104b", "https://tec.openplanner.team/stops/H4cl114b"], ["https://tec.openplanner.team/stops/X641aga", "https://tec.openplanner.team/stops/X641aja"], ["https://tec.openplanner.team/stops/H1ma230b", "https://tec.openplanner.team/stops/H1ma237b"], ["https://tec.openplanner.team/stops/H2bh103d", "https://tec.openplanner.team/stops/H2bh108b"], ["https://tec.openplanner.team/stops/N513abb", "https://tec.openplanner.team/stops/N513aea"], ["https://tec.openplanner.team/stops/Canmonu2", "https://tec.openplanner.team/stops/Canplal1"], ["https://tec.openplanner.team/stops/Llgddef2", "https://tec.openplanner.team/stops/Llgrass1"], ["https://tec.openplanner.team/stops/Ccogibr1", "https://tec.openplanner.team/stops/Ccostan1"], ["https://tec.openplanner.team/stops/Lmomarr1", "https://tec.openplanner.team/stops/Lmomarr4"], ["https://tec.openplanner.team/stops/LVNwanz2", "https://tec.openplanner.team/stops/LWzwanz2"], ["https://tec.openplanner.team/stops/Bottpar2", "https://tec.openplanner.team/stops/Bottvtc2"], ["https://tec.openplanner.team/stops/N553aaa", "https://tec.openplanner.team/stops/N553akb"], ["https://tec.openplanner.team/stops/X901afa", "https://tec.openplanner.team/stops/X901aia"], ["https://tec.openplanner.team/stops/Cchcase2", "https://tec.openplanner.team/stops/Cchcase4"], ["https://tec.openplanner.team/stops/H4mo151a", "https://tec.openplanner.team/stops/H4mo190a"], ["https://tec.openplanner.team/stops/X763aaa", "https://tec.openplanner.team/stops/X764aab"], ["https://tec.openplanner.team/stops/Bcrbrpb2", "https://tec.openplanner.team/stops/Bmsgrco1"], ["https://tec.openplanner.team/stops/N109aca", "https://tec.openplanner.team/stops/N122aaa"], ["https://tec.openplanner.team/stops/H1ci105b", "https://tec.openplanner.team/stops/H1mv238a"], ["https://tec.openplanner.team/stops/X653aaa", "https://tec.openplanner.team/stops/X667acb"], ["https://tec.openplanner.team/stops/Llgongr1", "https://tec.openplanner.team/stops/Llgongr4"], ["https://tec.openplanner.team/stops/N874acb", "https://tec.openplanner.team/stops/N874aeb"], ["https://tec.openplanner.team/stops/H1ha184a", "https://tec.openplanner.team/stops/H1ha184b"], ["https://tec.openplanner.team/stops/Ladfoot1", "https://tec.openplanner.team/stops/Lveptre2"], ["https://tec.openplanner.team/stops/X754aha", "https://tec.openplanner.team/stops/X754ahb"], ["https://tec.openplanner.team/stops/LWbburn2", "https://tec.openplanner.team/stops/LWbregn2"], ["https://tec.openplanner.team/stops/Lsteduc1", "https://tec.openplanner.team/stops/Lsteduc2"], ["https://tec.openplanner.team/stops/Bgnvgir1", "https://tec.openplanner.team/stops/Bgnvoha3"], ["https://tec.openplanner.team/stops/Cmcgoch2", "https://tec.openplanner.team/stops/Cmgvpa"], ["https://tec.openplanner.team/stops/LHMgulp1", "https://tec.openplanner.team/stops/LHMthys1"], ["https://tec.openplanner.team/stops/N124aba", "https://tec.openplanner.team/stops/N125aab"], ["https://tec.openplanner.team/stops/X917afa", "https://tec.openplanner.team/stops/X917ahb"], ["https://tec.openplanner.team/stops/H1ms260b", "https://tec.openplanner.team/stops/H1ms264a"], ["https://tec.openplanner.team/stops/N524afb", "https://tec.openplanner.team/stops/N524amb"], ["https://tec.openplanner.team/stops/Bsdabja2", "https://tec.openplanner.team/stops/Csdfboi1"], ["https://tec.openplanner.team/stops/Bwatcpe1", "https://tec.openplanner.team/stops/Bwatpro2"], ["https://tec.openplanner.team/stops/N514ahb", "https://tec.openplanner.team/stops/N515akb"], ["https://tec.openplanner.team/stops/Berngrt1", "https://tec.openplanner.team/stops/Bernrar2"], ["https://tec.openplanner.team/stops/LHMbach2", "https://tec.openplanner.team/stops/LHMthys2"], ["https://tec.openplanner.team/stops/X651aea", "https://tec.openplanner.team/stops/X651afb"], ["https://tec.openplanner.team/stops/NL76aqa", "https://tec.openplanner.team/stops/NL76aqb"], ["https://tec.openplanner.team/stops/LLNbeau2", "https://tec.openplanner.team/stops/LSpbawe2"], ["https://tec.openplanner.team/stops/N511aga", "https://tec.openplanner.team/stops/N511agb"], ["https://tec.openplanner.team/stops/Cbuegl2", "https://tec.openplanner.team/stops/Ceregl2"], ["https://tec.openplanner.team/stops/Ccicent3", "https://tec.openplanner.team/stops/Ccivill2"], ["https://tec.openplanner.team/stops/Bhenpln1", "https://tec.openplanner.team/stops/Bhenrcr1"], ["https://tec.openplanner.team/stops/H1lb137b", "https://tec.openplanner.team/stops/H1lb154a"], ["https://tec.openplanner.team/stops/X651acd", "https://tec.openplanner.team/stops/X651aea"], ["https://tec.openplanner.team/stops/LFPloob1", "https://tec.openplanner.team/stops/LFPzwaa1"], ["https://tec.openplanner.team/stops/X993ada", "https://tec.openplanner.team/stops/X994aka"], ["https://tec.openplanner.team/stops/H1er106b", "https://tec.openplanner.team/stops/H1gg145b"], ["https://tec.openplanner.team/stops/Lfhbott1", "https://tec.openplanner.team/stops/Lfhcime1"], ["https://tec.openplanner.team/stops/N506bba", "https://tec.openplanner.team/stops/N512axa"], ["https://tec.openplanner.team/stops/N501hza", "https://tec.openplanner.team/stops/N501ipb"], ["https://tec.openplanner.team/stops/Bwavnep1", "https://tec.openplanner.team/stops/Bwavnep2"], ["https://tec.openplanner.team/stops/LMOecsp1", "https://tec.openplanner.team/stops/LMOfleu1"], ["https://tec.openplanner.team/stops/LHdvill1", "https://tec.openplanner.team/stops/LVtvalu1"], ["https://tec.openplanner.team/stops/Lanpast1", "https://tec.openplanner.team/stops/Lanpast2"], ["https://tec.openplanner.team/stops/LCvneu-1", "https://tec.openplanner.team/stops/LCvneu-2"], ["https://tec.openplanner.team/stops/X611aca", "https://tec.openplanner.team/stops/X646ada"], ["https://tec.openplanner.team/stops/X619abb", "https://tec.openplanner.team/stops/X619abc"], ["https://tec.openplanner.team/stops/LHUtrin1", "https://tec.openplanner.team/stops/LVbsurr1"], ["https://tec.openplanner.team/stops/Lanfont1", "https://tec.openplanner.team/stops/Lanlona2"], ["https://tec.openplanner.team/stops/N525agb", "https://tec.openplanner.team/stops/N525ahb"], ["https://tec.openplanner.team/stops/X986aib", "https://tec.openplanner.team/stops/X986ata"], ["https://tec.openplanner.team/stops/H2re167a", "https://tec.openplanner.team/stops/H2re167b"], ["https://tec.openplanner.team/stops/N543bfa", "https://tec.openplanner.team/stops/N543bfb"], ["https://tec.openplanner.team/stops/X746ahc", "https://tec.openplanner.team/stops/X746ahd"], ["https://tec.openplanner.team/stops/N570aba", "https://tec.openplanner.team/stops/N570aca"], ["https://tec.openplanner.team/stops/LBavive2", "https://tec.openplanner.team/stops/LTAairi2"], ["https://tec.openplanner.team/stops/H1ni322a", "https://tec.openplanner.team/stops/H1ni322b"], ["https://tec.openplanner.team/stops/H1ms258a", "https://tec.openplanner.team/stops/H1ms279a"], ["https://tec.openplanner.team/stops/LWRcruc2", "https://tec.openplanner.team/stops/LWRgare1"], ["https://tec.openplanner.team/stops/N874aba", "https://tec.openplanner.team/stops/X887aab"], ["https://tec.openplanner.team/stops/N501cba", "https://tec.openplanner.team/stops/N521aqb"], ["https://tec.openplanner.team/stops/LrUgeme2", "https://tec.openplanner.team/stops/LrUlasc2"], ["https://tec.openplanner.team/stops/X911aib", "https://tec.openplanner.team/stops/X911akb"], ["https://tec.openplanner.team/stops/H4ch116a", "https://tec.openplanner.team/stops/H4ch116b"], ["https://tec.openplanner.team/stops/X747aaa", "https://tec.openplanner.team/stops/X747aab"], ["https://tec.openplanner.team/stops/N121abb", "https://tec.openplanner.team/stops/N122ada"], ["https://tec.openplanner.team/stops/Cmmheur2", "https://tec.openplanner.team/stops/Cmmjami1"], ["https://tec.openplanner.team/stops/H2hp116b", "https://tec.openplanner.team/stops/H2ll197a"], ["https://tec.openplanner.team/stops/LEMgren*", "https://tec.openplanner.team/stops/LPldoua3"], ["https://tec.openplanner.team/stops/H2bh107a", "https://tec.openplanner.team/stops/H2jo164a"], ["https://tec.openplanner.team/stops/Bllnjpa1", "https://tec.openplanner.team/stops/Bllnjpa2"], ["https://tec.openplanner.team/stops/LESchat1", "https://tec.openplanner.team/stops/LESchat2"], ["https://tec.openplanner.team/stops/LLReg--2", "https://tec.openplanner.team/stops/LLRsalm1"], ["https://tec.openplanner.team/stops/Lstpole1", "https://tec.openplanner.team/stops/Lstscie1"], ["https://tec.openplanner.team/stops/LMHtill1", "https://tec.openplanner.team/stops/NL73aea"], ["https://tec.openplanner.team/stops/LAxbott1", "https://tec.openplanner.team/stops/LHSlava2"], ["https://tec.openplanner.team/stops/LAMfrai2", "https://tec.openplanner.team/stops/LAMwall1"], ["https://tec.openplanner.team/stops/LLMjacq2", "https://tec.openplanner.team/stops/LThelse1"], ["https://tec.openplanner.team/stops/LPrcarr2", "https://tec.openplanner.team/stops/LSyeg--2"], ["https://tec.openplanner.team/stops/H1gy111b", "https://tec.openplanner.team/stops/H1gy115a"], ["https://tec.openplanner.team/stops/H1bo102a", "https://tec.openplanner.team/stops/H1ht126b"], ["https://tec.openplanner.team/stops/LSGbail1", "https://tec.openplanner.team/stops/LYechpl1"], ["https://tec.openplanner.team/stops/H1je213b", "https://tec.openplanner.team/stops/H1je220a"], ["https://tec.openplanner.team/stops/Blascim2", "https://tec.openplanner.team/stops/Bohncha1"], ["https://tec.openplanner.team/stops/Baudsta2", "https://tec.openplanner.team/stops/Bkrabhu2"], ["https://tec.openplanner.team/stops/N531aja", "https://tec.openplanner.team/stops/N531akb"], ["https://tec.openplanner.team/stops/Csepote1", "https://tec.openplanner.team/stops/Csesabo2"], ["https://tec.openplanner.team/stops/Bixllep1", "https://tec.openplanner.team/stops/Buccdho2"], ["https://tec.openplanner.team/stops/H3bi104a", "https://tec.openplanner.team/stops/H3bi105d"], ["https://tec.openplanner.team/stops/Cmybefe2", "https://tec.openplanner.team/stops/Cmymaco2"], ["https://tec.openplanner.team/stops/H4ba102a", "https://tec.openplanner.team/stops/H4ba103b"], ["https://tec.openplanner.team/stops/LDOandr2", "https://tec.openplanner.team/stops/LDOandr4"], ["https://tec.openplanner.team/stops/Bgzddfh2", "https://tec.openplanner.team/stops/Bgzddur2"], ["https://tec.openplanner.team/stops/H2bh113a", "https://tec.openplanner.team/stops/H2ll194b"], ["https://tec.openplanner.team/stops/Lousimo1", "https://tec.openplanner.team/stops/Lseblan*"], ["https://tec.openplanner.team/stops/LbTmons2", "https://tec.openplanner.team/stops/LbTmuhl1"], ["https://tec.openplanner.team/stops/H1lb154a", "https://tec.openplanner.team/stops/H1pa167a"], ["https://tec.openplanner.team/stops/Chppack1", "https://tec.openplanner.team/stops/Crachap2"], ["https://tec.openplanner.team/stops/X636ata", "https://tec.openplanner.team/stops/X636aua"], ["https://tec.openplanner.team/stops/X733ahb", "https://tec.openplanner.team/stops/X733aia"], ["https://tec.openplanner.team/stops/N534boh", "https://tec.openplanner.team/stops/N534bvb"], ["https://tec.openplanner.team/stops/X940aeb", "https://tec.openplanner.team/stops/X940aec"], ["https://tec.openplanner.team/stops/X638adb", "https://tec.openplanner.team/stops/X638aeb"], ["https://tec.openplanner.team/stops/LAUbirv1", "https://tec.openplanner.team/stops/LLCeg--2"], ["https://tec.openplanner.team/stops/Bbiehec2", "https://tec.openplanner.team/stops/Bbiehpo2"], ["https://tec.openplanner.team/stops/H1hn210a", "https://tec.openplanner.team/stops/H1hn363a"], ["https://tec.openplanner.team/stops/Bhengri2", "https://tec.openplanner.team/stops/Bvirrbo2"], ["https://tec.openplanner.team/stops/N501fna", "https://tec.openplanner.team/stops/N501fpb"], ["https://tec.openplanner.team/stops/N236aha", "https://tec.openplanner.team/stops/N236apa"], ["https://tec.openplanner.team/stops/Ctrrpla1", "https://tec.openplanner.team/stops/Ctrvert2"], ["https://tec.openplanner.team/stops/LMamuse4", "https://tec.openplanner.team/stops/LMazonn3"], ["https://tec.openplanner.team/stops/H5pe135a", "https://tec.openplanner.team/stops/H5pe153a"], ["https://tec.openplanner.team/stops/LSOcime2", "https://tec.openplanner.team/stops/LSOfech2"], ["https://tec.openplanner.team/stops/X840acd", "https://tec.openplanner.team/stops/X840adb"], ["https://tec.openplanner.team/stops/Bpieh171", "https://tec.openplanner.team/stops/Bpiehvi1"], ["https://tec.openplanner.team/stops/Cna4che2", "https://tec.openplanner.team/stops/Cna6che2"], ["https://tec.openplanner.team/stops/X886aaa", "https://tec.openplanner.team/stops/X886aab"], ["https://tec.openplanner.team/stops/X361afa", "https://tec.openplanner.team/stops/X371ajb"], ["https://tec.openplanner.team/stops/X882amc", "https://tec.openplanner.team/stops/X882amd"], ["https://tec.openplanner.team/stops/Brebblo1", "https://tec.openplanner.team/stops/Brebblo2"], ["https://tec.openplanner.team/stops/Bdlvpco2", "https://tec.openplanner.team/stops/Bdvmsar1"], ["https://tec.openplanner.team/stops/H1eo108b", "https://tec.openplanner.team/stops/H1ni319a"], ["https://tec.openplanner.team/stops/LLUdoya1", "https://tec.openplanner.team/stops/LLUdoya2"], ["https://tec.openplanner.team/stops/Lbrgrot1", "https://tec.openplanner.team/stops/Lbrgrot2"], ["https://tec.openplanner.team/stops/X762aeb", "https://tec.openplanner.team/stops/X762afb"], ["https://tec.openplanner.team/stops/Cbweco1", "https://tec.openplanner.team/stops/Cmgcabi1"], ["https://tec.openplanner.team/stops/H1bo108a", "https://tec.openplanner.team/stops/H1bo108b"], ["https://tec.openplanner.team/stops/X879aja", "https://tec.openplanner.team/stops/X898aaa"], ["https://tec.openplanner.team/stops/Bclgpla1", "https://tec.openplanner.team/stops/Bclgpla2"], ["https://tec.openplanner.team/stops/Blaspch1", "https://tec.openplanner.team/stops/Blasvil2"], ["https://tec.openplanner.team/stops/H1mj124b", "https://tec.openplanner.team/stops/H1mj130b"], ["https://tec.openplanner.team/stops/X609aib", "https://tec.openplanner.team/stops/X609ajb"], ["https://tec.openplanner.team/stops/LSZroqu1", "https://tec.openplanner.team/stops/LWycarr2"], ["https://tec.openplanner.team/stops/X757aaa", "https://tec.openplanner.team/stops/X757alb"], ["https://tec.openplanner.team/stops/H4bd109b", "https://tec.openplanner.team/stops/H4bd112b"], ["https://tec.openplanner.team/stops/H1ms270b", "https://tec.openplanner.team/stops/H1ob334a"], ["https://tec.openplanner.team/stops/H1hq126a", "https://tec.openplanner.team/stops/H1hq126b"], ["https://tec.openplanner.team/stops/Barcsta1", "https://tec.openplanner.team/stops/Barcsta2"], ["https://tec.openplanner.team/stops/X650aha", "https://tec.openplanner.team/stops/X671aga"], ["https://tec.openplanner.team/stops/H1ba108a", "https://tec.openplanner.team/stops/H1ba115a"], ["https://tec.openplanner.team/stops/H4mx118a", "https://tec.openplanner.team/stops/H4mx120a"], ["https://tec.openplanner.team/stops/Ljudeme4", "https://tec.openplanner.team/stops/Ljuinte2"], ["https://tec.openplanner.team/stops/Cplbbro2", "https://tec.openplanner.team/stops/Cplelec1"], ["https://tec.openplanner.team/stops/H5la177a", "https://tec.openplanner.team/stops/H5la177b"], ["https://tec.openplanner.team/stops/X224adb", "https://tec.openplanner.team/stops/X224aea"], ["https://tec.openplanner.team/stops/LkRrauw2", "https://tec.openplanner.team/stops/LrOgara3"], ["https://tec.openplanner.team/stops/H2mg137a", "https://tec.openplanner.team/stops/H2mg140b"], ["https://tec.openplanner.team/stops/N217aba", "https://tec.openplanner.team/stops/N261aha"], ["https://tec.openplanner.team/stops/N383aeb", "https://tec.openplanner.team/stops/N874agb"], ["https://tec.openplanner.team/stops/Ctucamb1", "https://tec.openplanner.team/stops/Ctuhouz1"], ["https://tec.openplanner.team/stops/Bgdhdet1", "https://tec.openplanner.team/stops/Bwaak101"], ["https://tec.openplanner.team/stops/X937aca", "https://tec.openplanner.team/stops/X945aea"], ["https://tec.openplanner.team/stops/N254aba", "https://tec.openplanner.team/stops/N254abb"], ["https://tec.openplanner.team/stops/X623acb", "https://tec.openplanner.team/stops/X623acc"], ["https://tec.openplanner.team/stops/H1gh148a", "https://tec.openplanner.team/stops/H1gh165b"], ["https://tec.openplanner.team/stops/N260abb", "https://tec.openplanner.team/stops/N260afb"], ["https://tec.openplanner.team/stops/N519ala", "https://tec.openplanner.team/stops/N519asb"], ["https://tec.openplanner.team/stops/Lchacie1", "https://tec.openplanner.team/stops/Lrapays1"], ["https://tec.openplanner.team/stops/H1fl133c", "https://tec.openplanner.team/stops/H1fl136a"], ["https://tec.openplanner.team/stops/X627aaa", "https://tec.openplanner.team/stops/X629aab"], ["https://tec.openplanner.team/stops/LkEbruc2", "https://tec.openplanner.team/stops/LkEneus2"], ["https://tec.openplanner.team/stops/X808abc", "https://tec.openplanner.team/stops/X808ajb"], ["https://tec.openplanner.team/stops/Bmonbri2", "https://tec.openplanner.team/stops/Bnivlai2"], ["https://tec.openplanner.team/stops/Bwatjbo2", "https://tec.openplanner.team/stops/Bwatprp1"], ["https://tec.openplanner.team/stops/LBNforg1", "https://tec.openplanner.team/stops/LDOordi1"], ["https://tec.openplanner.team/stops/LMHeg--1", "https://tec.openplanner.team/stops/LMHtill1"], ["https://tec.openplanner.team/stops/X719abb", "https://tec.openplanner.team/stops/X720aba"], ["https://tec.openplanner.team/stops/LElgerd3", "https://tec.openplanner.team/stops/LElgerd4"], ["https://tec.openplanner.team/stops/Csrcarr1", "https://tec.openplanner.team/stops/Csregli1"], ["https://tec.openplanner.team/stops/X804aaa", "https://tec.openplanner.team/stops/X804abb"], ["https://tec.openplanner.team/stops/H5pe125a", "https://tec.openplanner.team/stops/H5pe126a"], ["https://tec.openplanner.team/stops/N141aob", "https://tec.openplanner.team/stops/N146aeb"], ["https://tec.openplanner.team/stops/H1fl141b", "https://tec.openplanner.team/stops/H1je221b"], ["https://tec.openplanner.team/stops/Bbchcab1", "https://tec.openplanner.team/stops/Bbchdev2"], ["https://tec.openplanner.team/stops/X725aba", "https://tec.openplanner.team/stops/X725agb"], ["https://tec.openplanner.team/stops/H1bl104c", "https://tec.openplanner.team/stops/H1pd144a"], ["https://tec.openplanner.team/stops/LmTkirc1", "https://tec.openplanner.team/stops/LmTschi1"], ["https://tec.openplanner.team/stops/Cmyland5", "https://tec.openplanner.team/stops/Cmymarb1"], ["https://tec.openplanner.team/stops/Lemcarm1", "https://tec.openplanner.team/stops/Lemhenn2"], ["https://tec.openplanner.team/stops/LPLc65-1", "https://tec.openplanner.team/stops/LPLcarr1"], ["https://tec.openplanner.team/stops/X950aab", "https://tec.openplanner.team/stops/X950acb"], ["https://tec.openplanner.team/stops/Cvllerm1", "https://tec.openplanner.team/stops/NH21aeb"], ["https://tec.openplanner.team/stops/N507aea", "https://tec.openplanner.team/stops/N507ajb"], ["https://tec.openplanner.team/stops/H1ht126b", "https://tec.openplanner.team/stops/H1ht131b"], ["https://tec.openplanner.team/stops/Bgliaau2", "https://tec.openplanner.team/stops/Bmalwvi2"], ["https://tec.openplanner.team/stops/Cgzbouh2", "https://tec.openplanner.team/stops/Cgzgrru1"], ["https://tec.openplanner.team/stops/Cbtgemi1", "https://tec.openplanner.team/stops/Cbtgemi2"], ["https://tec.openplanner.team/stops/Lagvern1", "https://tec.openplanner.team/stops/Llgcond1"], ["https://tec.openplanner.team/stops/NC02bbb", "https://tec.openplanner.team/stops/NC14agb"], ["https://tec.openplanner.team/stops/X762aba", "https://tec.openplanner.team/stops/X762aca"], ["https://tec.openplanner.team/stops/Ljulieg1", "https://tec.openplanner.team/stops/Ljulieg2"], ["https://tec.openplanner.team/stops/LAieg--2", "https://tec.openplanner.team/stops/LGlcite2"], ["https://tec.openplanner.team/stops/Lbrfune*", "https://tec.openplanner.team/stops/Ljulieg2"], ["https://tec.openplanner.team/stops/H1so136d", "https://tec.openplanner.team/stops/H1so143b"], ["https://tec.openplanner.team/stops/LHThall2", "https://tec.openplanner.team/stops/LHThall3"], ["https://tec.openplanner.team/stops/N120ahb", "https://tec.openplanner.team/stops/N120aod"], ["https://tec.openplanner.team/stops/LBNburg2", "https://tec.openplanner.team/stops/LeUbael2"], ["https://tec.openplanner.team/stops/LHEpriv2", "https://tec.openplanner.team/stops/LHEzoni2"], ["https://tec.openplanner.team/stops/N134alb", "https://tec.openplanner.team/stops/N135aya"], ["https://tec.openplanner.team/stops/Lghmeun3", "https://tec.openplanner.team/stops/Ljegare1"], ["https://tec.openplanner.team/stops/Cjudelv3", "https://tec.openplanner.team/stops/Cjuepee2"], ["https://tec.openplanner.team/stops/H4wt159a", "https://tec.openplanner.team/stops/H5rx103a"], ["https://tec.openplanner.team/stops/H1fl138b", "https://tec.openplanner.team/stops/H1fr109a"], ["https://tec.openplanner.team/stops/X629aaa", "https://tec.openplanner.team/stops/X629aab"], ["https://tec.openplanner.team/stops/Csspn1", "https://tec.openplanner.team/stops/Csspn2"], ["https://tec.openplanner.team/stops/N347ada", "https://tec.openplanner.team/stops/N347aeb"], ["https://tec.openplanner.team/stops/X634aha", "https://tec.openplanner.team/stops/X634aib"], ["https://tec.openplanner.team/stops/LTyh24-1", "https://tec.openplanner.team/stops/LTywaut1"], ["https://tec.openplanner.team/stops/X796adb", "https://tec.openplanner.team/stops/X796aea"], ["https://tec.openplanner.team/stops/LBlchin2", "https://tec.openplanner.team/stops/LGMstin1"], ["https://tec.openplanner.team/stops/Lmnbass1", "https://tec.openplanner.team/stops/Lmnbass2"], ["https://tec.openplanner.team/stops/LSBjoli1", "https://tec.openplanner.team/stops/LSBsere4"], ["https://tec.openplanner.team/stops/X910aha", "https://tec.openplanner.team/stops/X910ajb"], ["https://tec.openplanner.team/stops/N542afb", "https://tec.openplanner.team/stops/N542ajb"], ["https://tec.openplanner.team/stops/N201aaa", "https://tec.openplanner.team/stops/N201ara"], ["https://tec.openplanner.team/stops/X782akb", "https://tec.openplanner.team/stops/X782amb"], ["https://tec.openplanner.team/stops/Lvimc--2", "https://tec.openplanner.team/stops/Lvitomb2"], ["https://tec.openplanner.team/stops/X595aeb", "https://tec.openplanner.team/stops/X595afc"], ["https://tec.openplanner.team/stops/LRteg--*", "https://tec.openplanner.team/stops/LVbpave2"], ["https://tec.openplanner.team/stops/N562bia", "https://tec.openplanner.team/stops/N562bja"], ["https://tec.openplanner.team/stops/N232awb", "https://tec.openplanner.team/stops/N232bqb"], ["https://tec.openplanner.team/stops/N209abb", "https://tec.openplanner.team/stops/N209acb"], ["https://tec.openplanner.team/stops/X770aca", "https://tec.openplanner.team/stops/X771aia"], ["https://tec.openplanner.team/stops/N207adb", "https://tec.openplanner.team/stops/N207add"], ["https://tec.openplanner.team/stops/H4an106b", "https://tec.openplanner.team/stops/H4an110b"], ["https://tec.openplanner.team/stops/X897aic", "https://tec.openplanner.team/stops/X897ajb"], ["https://tec.openplanner.team/stops/X663aga", "https://tec.openplanner.team/stops/X663aia"], ["https://tec.openplanner.team/stops/LOVhetr1", "https://tec.openplanner.team/stops/LSomonu2"], ["https://tec.openplanner.team/stops/Ccunvus2", "https://tec.openplanner.team/stops/Ccurtra1"], ["https://tec.openplanner.team/stops/Louaout1", "https://tec.openplanner.team/stops/Loufleu2"], ["https://tec.openplanner.team/stops/N524ama", "https://tec.openplanner.team/stops/N524amb"], ["https://tec.openplanner.team/stops/N232boa", "https://tec.openplanner.team/stops/N232bqb"], ["https://tec.openplanner.team/stops/H1je216b", "https://tec.openplanner.team/stops/H1je367a"], ["https://tec.openplanner.team/stops/Cjucouc1", "https://tec.openplanner.team/stops/Cjumest2"], ["https://tec.openplanner.team/stops/Lbopote2", "https://tec.openplanner.team/stops/Lsearbo1"], ["https://tec.openplanner.team/stops/Bolppla1", "https://tec.openplanner.team/stops/Bolppla2"], ["https://tec.openplanner.team/stops/H1ro131a", "https://tec.openplanner.team/stops/H1ro141b"], ["https://tec.openplanner.team/stops/X346aba", "https://tec.openplanner.team/stops/X346afb"], ["https://tec.openplanner.team/stops/LFypont1", "https://tec.openplanner.team/stops/LFypont2"], ["https://tec.openplanner.team/stops/Lcegeor1", "https://tec.openplanner.team/stops/Lvcecol1"], ["https://tec.openplanner.team/stops/LMAbruy2", "https://tec.openplanner.team/stops/LMAptne1"], ["https://tec.openplanner.team/stops/LVLeg--1", "https://tec.openplanner.team/stops/LVLeg--3"], ["https://tec.openplanner.team/stops/X948aoa", "https://tec.openplanner.team/stops/X949aka"], ["https://tec.openplanner.team/stops/Ctrpn1", "https://tec.openplanner.team/stops/Ctrvert1"], ["https://tec.openplanner.team/stops/H4sl154a", "https://tec.openplanner.team/stops/H4sl155a"], ["https://tec.openplanner.team/stops/X715aga", "https://tec.openplanner.team/stops/X731abb"], ["https://tec.openplanner.team/stops/H4mo144a", "https://tec.openplanner.team/stops/H4mo169a"], ["https://tec.openplanner.team/stops/LlNkirc1", "https://tec.openplanner.team/stops/LlNschu1"], ["https://tec.openplanner.team/stops/Crcpcom1", "https://tec.openplanner.team/stops/Crcplac4"], ["https://tec.openplanner.team/stops/N135aba", "https://tec.openplanner.team/stops/N135alb"], ["https://tec.openplanner.team/stops/Bcsen252", "https://tec.openplanner.team/stops/Bvilvil4"], ["https://tec.openplanner.team/stops/LeUfuss1", "https://tec.openplanner.team/stops/LeUkehr4"], ["https://tec.openplanner.team/stops/X636aoa", "https://tec.openplanner.team/stops/X636apb"], ["https://tec.openplanner.team/stops/CMmoul2", "https://tec.openplanner.team/stops/Cmohotv4"], ["https://tec.openplanner.team/stops/N501bib", "https://tec.openplanner.team/stops/N501bla"], ["https://tec.openplanner.team/stops/N548aca", "https://tec.openplanner.team/stops/N548acb"], ["https://tec.openplanner.team/stops/Crspana3", "https://tec.openplanner.team/stops/Crsstem1"], ["https://tec.openplanner.team/stops/X825aaa", "https://tec.openplanner.team/stops/X825aeb"], ["https://tec.openplanner.team/stops/Lgrclos2", "https://tec.openplanner.team/stops/Lgrdeni2"], ["https://tec.openplanner.team/stops/N521amb", "https://tec.openplanner.team/stops/N527aeb"], ["https://tec.openplanner.team/stops/N506bba", "https://tec.openplanner.team/stops/N506bfa"], ["https://tec.openplanner.team/stops/LHEgare2", "https://tec.openplanner.team/stops/LHEpriv2"], ["https://tec.openplanner.team/stops/Lseaven1", "https://tec.openplanner.team/stops/Lsecoll1"], ["https://tec.openplanner.team/stops/LHUlieg1", "https://tec.openplanner.team/stops/LHUpost1"], ["https://tec.openplanner.team/stops/Bcsgcou1", "https://tec.openplanner.team/stops/Blaspch2"], ["https://tec.openplanner.team/stops/LMfbacu1", "https://tec.openplanner.team/stops/LMfsart1"], ["https://tec.openplanner.team/stops/LSZsolw1", "https://tec.openplanner.team/stops/LSZsolw3"], ["https://tec.openplanner.team/stops/Btstpch2", "https://tec.openplanner.team/stops/N524ala"], ["https://tec.openplanner.team/stops/Cfamate1", "https://tec.openplanner.team/stops/Cpictra2"], ["https://tec.openplanner.team/stops/LaAbush*", "https://tec.openplanner.team/stops/LrTbahn2"], ["https://tec.openplanner.team/stops/LeMdorf1", "https://tec.openplanner.team/stops/LmFdorf2"], ["https://tec.openplanner.team/stops/N538acb", "https://tec.openplanner.team/stops/N538ajc"], ["https://tec.openplanner.team/stops/X661ana", "https://tec.openplanner.team/stops/X661aob"], ["https://tec.openplanner.team/stops/LNCvann1", "https://tec.openplanner.team/stops/LRRrimi2"], ["https://tec.openplanner.team/stops/N351axa", "https://tec.openplanner.team/stops/N390afa"], ["https://tec.openplanner.team/stops/Cna6che1", "https://tec.openplanner.team/stops/Cna6che2"], ["https://tec.openplanner.team/stops/N528aib", "https://tec.openplanner.team/stops/N528akb"], ["https://tec.openplanner.team/stops/H4ss158a", "https://tec.openplanner.team/stops/H5rx115a"], ["https://tec.openplanner.team/stops/X396afa", "https://tec.openplanner.team/stops/X396afb"], ["https://tec.openplanner.team/stops/H4rx141b", "https://tec.openplanner.team/stops/H4rx143b"], ["https://tec.openplanner.team/stops/Crefont1", "https://tec.openplanner.team/stops/Crefont2"], ["https://tec.openplanner.team/stops/Bmsgmon1", "https://tec.openplanner.team/stops/Bmsgmon2"], ["https://tec.openplanner.team/stops/LPclaro2", "https://tec.openplanner.team/stops/LPctrog2"], ["https://tec.openplanner.team/stops/LBjpech2", "https://tec.openplanner.team/stops/X575adb"], ["https://tec.openplanner.team/stops/X664abb", "https://tec.openplanner.team/stops/X664adc"], ["https://tec.openplanner.team/stops/Bclgmev1", "https://tec.openplanner.team/stops/Bclgpla1"], ["https://tec.openplanner.team/stops/NL76aaa", "https://tec.openplanner.team/stops/NL76anb"], ["https://tec.openplanner.team/stops/H1au113b", "https://tec.openplanner.team/stops/H1mr125b"], ["https://tec.openplanner.team/stops/X605ada", "https://tec.openplanner.team/stops/X605aeb"], ["https://tec.openplanner.team/stops/X650aia", "https://tec.openplanner.team/stops/X650aib"], ["https://tec.openplanner.team/stops/Lkigare2", "https://tec.openplanner.team/stops/Lkirenk1"], ["https://tec.openplanner.team/stops/Cmacart4", "https://tec.openplanner.team/stops/Cmamarc1"], ["https://tec.openplanner.team/stops/X630aab", "https://tec.openplanner.team/stops/X638alb"], ["https://tec.openplanner.team/stops/Lprfoot2", "https://tec.openplanner.team/stops/LWetrib2"], ["https://tec.openplanner.team/stops/Lladete3", "https://tec.openplanner.team/stops/Llaflot2"], ["https://tec.openplanner.team/stops/N514aaa", "https://tec.openplanner.team/stops/N514aab"], ["https://tec.openplanner.team/stops/LeYraaf1", "https://tec.openplanner.team/stops/LeYvoge1"], ["https://tec.openplanner.team/stops/LTyh51-1", "https://tec.openplanner.team/stops/LTyhapp3"], ["https://tec.openplanner.team/stops/H4mt215b", "https://tec.openplanner.team/stops/H4mx118a"], ["https://tec.openplanner.team/stops/X601acb", "https://tec.openplanner.team/stops/X601bgb"], ["https://tec.openplanner.team/stops/X630abb", "https://tec.openplanner.team/stops/X630acb"], ["https://tec.openplanner.team/stops/Bsaumlk2", "https://tec.openplanner.team/stops/Bsaumlk4"], ["https://tec.openplanner.team/stops/Bgrhche1", "https://tec.openplanner.team/stops/Bgrhche2"], ["https://tec.openplanner.team/stops/LSWscie1", "https://tec.openplanner.team/stops/LSWscie2"], ["https://tec.openplanner.team/stops/Bolgrsa1", "https://tec.openplanner.team/stops/Bolgsha2"], ["https://tec.openplanner.team/stops/N513ala", "https://tec.openplanner.team/stops/N513bbd"], ["https://tec.openplanner.team/stops/N553aqa", "https://tec.openplanner.team/stops/N553aqb"], ["https://tec.openplanner.team/stops/Beclaub1", "https://tec.openplanner.team/stops/Beclron1"], ["https://tec.openplanner.team/stops/X638aja", "https://tec.openplanner.team/stops/X638amb"], ["https://tec.openplanner.team/stops/X786aea", "https://tec.openplanner.team/stops/X786aeb"], ["https://tec.openplanner.team/stops/X982bjb", "https://tec.openplanner.team/stops/X982bkb"], ["https://tec.openplanner.team/stops/H4ty296a", "https://tec.openplanner.team/stops/H4ty416a"], ["https://tec.openplanner.team/stops/H4ty327b", "https://tec.openplanner.team/stops/H4ty350a"], ["https://tec.openplanner.team/stops/Cjubrul4", "https://tec.openplanner.team/stops/Cjugill1"], ["https://tec.openplanner.team/stops/LSIroch1", "https://tec.openplanner.team/stops/LSItert1"], ["https://tec.openplanner.team/stops/Bwatsan1", "https://tec.openplanner.team/stops/Bwatvco1"], ["https://tec.openplanner.team/stops/Cjxcoll2", "https://tec.openplanner.team/stops/Cjxpann2"], ["https://tec.openplanner.team/stops/N501lbb", "https://tec.openplanner.team/stops/N501lbd"], ["https://tec.openplanner.team/stops/Cmlbeau4", "https://tec.openplanner.team/stops/Cmlrous2"], ["https://tec.openplanner.team/stops/N236aja", "https://tec.openplanner.team/stops/N236ajb"], ["https://tec.openplanner.team/stops/LSzcoop2", "https://tec.openplanner.team/stops/NL67adb"], ["https://tec.openplanner.team/stops/H2sb232a", "https://tec.openplanner.team/stops/H2sb232b"], ["https://tec.openplanner.team/stops/LNCdoma2", "https://tec.openplanner.team/stops/LNCspor2"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lhuchev2"], ["https://tec.openplanner.team/stops/Bboncha1", "https://tec.openplanner.team/stops/Bboncha2"], ["https://tec.openplanner.team/stops/LBLvici2", "https://tec.openplanner.team/stops/LBLvici3"], ["https://tec.openplanner.team/stops/X948alb", "https://tec.openplanner.team/stops/X948anb"], ["https://tec.openplanner.team/stops/X740abd", "https://tec.openplanner.team/stops/X886aga"], ["https://tec.openplanner.team/stops/LCvneuv4", "https://tec.openplanner.team/stops/LHrparc1"], ["https://tec.openplanner.team/stops/X739aja", "https://tec.openplanner.team/stops/X912agb"], ["https://tec.openplanner.team/stops/H4hg158b", "https://tec.openplanner.team/stops/H4hg159a"], ["https://tec.openplanner.team/stops/X919aca", "https://tec.openplanner.team/stops/X919adb"], ["https://tec.openplanner.team/stops/Lhrcite1", "https://tec.openplanner.team/stops/Lhrcite2"], ["https://tec.openplanner.team/stops/LHgdari2", "https://tec.openplanner.team/stops/LHgroso1"], ["https://tec.openplanner.team/stops/LBSgeer1", "https://tec.openplanner.team/stops/LBSkann1"], ["https://tec.openplanner.team/stops/X982aka", "https://tec.openplanner.team/stops/X982anb"], ["https://tec.openplanner.team/stops/H4gz115b", "https://tec.openplanner.team/stops/H4ms145b"], ["https://tec.openplanner.team/stops/NL78aja", "https://tec.openplanner.team/stops/NL79aab"], ["https://tec.openplanner.team/stops/H2sv218a", "https://tec.openplanner.team/stops/H2sv259b"], ["https://tec.openplanner.team/stops/Bjodeco3", "https://tec.openplanner.team/stops/Bjodrga2"], ["https://tec.openplanner.team/stops/Bhevl3l2", "https://tec.openplanner.team/stops/Bleugar1"], ["https://tec.openplanner.team/stops/N525aoa", "https://tec.openplanner.team/stops/N525aob"], ["https://tec.openplanner.team/stops/X937aha", "https://tec.openplanner.team/stops/X937ahb"], ["https://tec.openplanner.team/stops/LhIfrie2", "https://tec.openplanner.team/stops/LrDneun2"], ["https://tec.openplanner.team/stops/H4oe151a", "https://tec.openplanner.team/stops/H4oe151b"], ["https://tec.openplanner.team/stops/LVvboma2", "https://tec.openplanner.team/stops/X982bfa"], ["https://tec.openplanner.team/stops/X633akb", "https://tec.openplanner.team/stops/X633alb"], ["https://tec.openplanner.team/stops/H2pr116b", "https://tec.openplanner.team/stops/H2pr117b"], ["https://tec.openplanner.team/stops/Llgcorn4", "https://tec.openplanner.team/stops/Llgmara2"], ["https://tec.openplanner.team/stops/LBNforg2", "https://tec.openplanner.team/stops/LBNvilv2"], ["https://tec.openplanner.team/stops/Llgangl1", "https://tec.openplanner.team/stops/Llgcadr3"], ["https://tec.openplanner.team/stops/N214agb", "https://tec.openplanner.team/stops/N225aaa"], ["https://tec.openplanner.team/stops/N118aeb", "https://tec.openplanner.team/stops/N118ata"], ["https://tec.openplanner.team/stops/X979aoa", "https://tec.openplanner.team/stops/X982bwa"], ["https://tec.openplanner.team/stops/Bdvmccu1", "https://tec.openplanner.team/stops/Bwavlon1"], ["https://tec.openplanner.team/stops/N501kwb", "https://tec.openplanner.team/stops/N501kzb"], ["https://tec.openplanner.team/stops/H5el101a", "https://tec.openplanner.team/stops/H5el105a"], ["https://tec.openplanner.team/stops/N558ada", "https://tec.openplanner.team/stops/N558aea"], ["https://tec.openplanner.team/stops/H4hu115a", "https://tec.openplanner.team/stops/H4hu122b"], ["https://tec.openplanner.team/stops/N573abb", "https://tec.openplanner.team/stops/NC44adb"], ["https://tec.openplanner.team/stops/X595aac", "https://tec.openplanner.team/stops/X595aad"], ["https://tec.openplanner.team/stops/Brsgecu2", "https://tec.openplanner.team/stops/Brsgman2"], ["https://tec.openplanner.team/stops/N525baa", "https://tec.openplanner.team/stops/N525bab"], ["https://tec.openplanner.team/stops/Cmastma1", "https://tec.openplanner.team/stops/Cmomoul6"], ["https://tec.openplanner.team/stops/N551afb", "https://tec.openplanner.team/stops/N551akb"], ["https://tec.openplanner.team/stops/Lra4bra1", "https://tec.openplanner.team/stops/LSAchef2"], ["https://tec.openplanner.team/stops/Cgrbert1", "https://tec.openplanner.team/stops/N160aea"], ["https://tec.openplanner.team/stops/H3bo101b", "https://tec.openplanner.team/stops/H3bo102b"], ["https://tec.openplanner.team/stops/N351akd", "https://tec.openplanner.team/stops/X351aob"], ["https://tec.openplanner.team/stops/X394aab", "https://tec.openplanner.team/stops/X394aba"], ["https://tec.openplanner.team/stops/Louoran2", "https://tec.openplanner.team/stops/Lseserv1"], ["https://tec.openplanner.team/stops/Lra4bra1", "https://tec.openplanner.team/stops/Lrafusi1"], ["https://tec.openplanner.team/stops/LhEherb2", "https://tec.openplanner.team/stops/LhElont1"], ["https://tec.openplanner.team/stops/LELeg--2", "https://tec.openplanner.team/stops/LELhard1"], ["https://tec.openplanner.team/stops/LRGgrov2", "https://tec.openplanner.team/stops/LRGmoul2"], ["https://tec.openplanner.team/stops/N204adb", "https://tec.openplanner.team/stops/N204agb"], ["https://tec.openplanner.team/stops/LBQplac1", "https://tec.openplanner.team/stops/LBQplac2"], ["https://tec.openplanner.team/stops/LSZjona1", "https://tec.openplanner.team/stops/LSZnive1"], ["https://tec.openplanner.team/stops/N167aab", "https://tec.openplanner.team/stops/N167adc"], ["https://tec.openplanner.team/stops/Lvtcime1", "https://tec.openplanner.team/stops/Lvteg--1"], ["https://tec.openplanner.team/stops/LHdvill2", "https://tec.openplanner.team/stops/LVnflox1"], ["https://tec.openplanner.team/stops/N141aqa", "https://tec.openplanner.team/stops/N426aaa"], ["https://tec.openplanner.team/stops/H4hx121b", "https://tec.openplanner.team/stops/H4hx124b"], ["https://tec.openplanner.team/stops/LBEmich2", "https://tec.openplanner.team/stops/LTRpery1"], ["https://tec.openplanner.team/stops/NL74aab", "https://tec.openplanner.team/stops/NL74aac"], ["https://tec.openplanner.team/stops/X619akb", "https://tec.openplanner.team/stops/X622aba"], ["https://tec.openplanner.team/stops/Bjodfco2", "https://tec.openplanner.team/stops/Bpiehvi1"], ["https://tec.openplanner.team/stops/Cthalli2", "https://tec.openplanner.team/stops/Cthalli3"], ["https://tec.openplanner.team/stops/Cfawain1", "https://tec.openplanner.team/stops/Cfawain4"], ["https://tec.openplanner.team/stops/X724aba", "https://tec.openplanner.team/stops/X724abb"], ["https://tec.openplanner.team/stops/N501cwb", "https://tec.openplanner.team/stops/N528akb"], ["https://tec.openplanner.team/stops/X907acb", "https://tec.openplanner.team/stops/X907ajb"], ["https://tec.openplanner.team/stops/H4wa150b", "https://tec.openplanner.team/stops/H4wa161b"], ["https://tec.openplanner.team/stops/X364aab", "https://tec.openplanner.team/stops/X364aba"], ["https://tec.openplanner.team/stops/X630ada", "https://tec.openplanner.team/stops/X630adb"], ["https://tec.openplanner.team/stops/H1by108a", "https://tec.openplanner.team/stops/H1by108b"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/NH03aeb"], ["https://tec.openplanner.team/stops/N501jia", "https://tec.openplanner.team/stops/N501jib"], ["https://tec.openplanner.team/stops/LlNlont2", "https://tec.openplanner.team/stops/LlNsc651"], ["https://tec.openplanner.team/stops/X922ahb", "https://tec.openplanner.team/stops/X922ama"], ["https://tec.openplanner.team/stops/H4wp150b", "https://tec.openplanner.team/stops/H4wp150c"], ["https://tec.openplanner.team/stops/X822aha", "https://tec.openplanner.team/stops/X822aia"], ["https://tec.openplanner.team/stops/X639ama", "https://tec.openplanner.team/stops/X639arb"], ["https://tec.openplanner.team/stops/X639alb", "https://tec.openplanner.team/stops/X639amd"], ["https://tec.openplanner.team/stops/N535aeb", "https://tec.openplanner.team/stops/N535aib"], ["https://tec.openplanner.team/stops/LmHabzw2", "https://tec.openplanner.team/stops/LmHperl1"], ["https://tec.openplanner.team/stops/H5wo125a", "https://tec.openplanner.team/stops/H5wo133a"], ["https://tec.openplanner.team/stops/X760afb", "https://tec.openplanner.team/stops/X788agb"], ["https://tec.openplanner.team/stops/N511apa", "https://tec.openplanner.team/stops/N511aub"], ["https://tec.openplanner.team/stops/X802acb", "https://tec.openplanner.team/stops/X882ala"], ["https://tec.openplanner.team/stops/H4tp145a", "https://tec.openplanner.team/stops/H4wr174b"], ["https://tec.openplanner.team/stops/N104abb", "https://tec.openplanner.team/stops/N104adb"], ["https://tec.openplanner.team/stops/Bhvlbet2", "https://tec.openplanner.team/stops/Bhvlpla2"], ["https://tec.openplanner.team/stops/H4lh161a", "https://tec.openplanner.team/stops/H4oe148b"], ["https://tec.openplanner.team/stops/N521ajb", "https://tec.openplanner.team/stops/N521ala"], ["https://tec.openplanner.team/stops/X745ada", "https://tec.openplanner.team/stops/X745aeb"], ["https://tec.openplanner.team/stops/LCtcref1", "https://tec.openplanner.team/stops/X780aaa"], ["https://tec.openplanner.team/stops/X780ajb", "https://tec.openplanner.team/stops/X790aja"], ["https://tec.openplanner.team/stops/Lsehtsa2", "https://tec.openplanner.team/stops/Lserena2"], ["https://tec.openplanner.team/stops/Cfabnat1", "https://tec.openplanner.team/stops/Cfabnat2"], ["https://tec.openplanner.team/stops/X660aea", "https://tec.openplanner.team/stops/X660ajb"], ["https://tec.openplanner.team/stops/Lflcle-3", "https://tec.openplanner.team/stops/Lflmaxi3"], ["https://tec.openplanner.team/stops/LrEkape1", "https://tec.openplanner.team/stops/LrErauw2"], ["https://tec.openplanner.team/stops/X614amb", "https://tec.openplanner.team/stops/X614anb"], ["https://tec.openplanner.team/stops/Cthcrom2", "https://tec.openplanner.team/stops/Cthoues1"], ["https://tec.openplanner.team/stops/Cprcalv2", "https://tec.openplanner.team/stops/Cprgran1"], ["https://tec.openplanner.team/stops/H1gn149b", "https://tec.openplanner.team/stops/H1gq153b"], ["https://tec.openplanner.team/stops/Binccha2", "https://tec.openplanner.team/stops/Binclon1"], ["https://tec.openplanner.team/stops/N150ahb", "https://tec.openplanner.team/stops/N150ajb"], ["https://tec.openplanner.team/stops/Cgocalv6", "https://tec.openplanner.team/stops/Cgostro1"], ["https://tec.openplanner.team/stops/LDmwaef2", "https://tec.openplanner.team/stops/LHodomm2"], ["https://tec.openplanner.team/stops/H1ht121b", "https://tec.openplanner.team/stops/H1ht124b"], ["https://tec.openplanner.team/stops/N543cba", "https://tec.openplanner.team/stops/N543cbb"], ["https://tec.openplanner.team/stops/Lghmavi2", "https://tec.openplanner.team/stops/Lghpero2"], ["https://tec.openplanner.team/stops/LSLfler1", "https://tec.openplanner.team/stops/LSLprov1"], ["https://tec.openplanner.team/stops/Bfelada2", "https://tec.openplanner.team/stops/Bptrgri2"], ["https://tec.openplanner.team/stops/H4ld124a", "https://tec.openplanner.team/stops/H4ld130b"], ["https://tec.openplanner.team/stops/Cjuecha1", "https://tec.openplanner.team/stops/Cragill2"], ["https://tec.openplanner.team/stops/X996aba", "https://tec.openplanner.team/stops/X996ahb"], ["https://tec.openplanner.team/stops/N507aha", "https://tec.openplanner.team/stops/N508ada"], ["https://tec.openplanner.team/stops/X601agb", "https://tec.openplanner.team/stops/X662asb"], ["https://tec.openplanner.team/stops/Ctubpos2", "https://tec.openplanner.team/stops/NC28aha"], ["https://tec.openplanner.team/stops/N505aca", "https://tec.openplanner.team/stops/N505aia"], ["https://tec.openplanner.team/stops/Bjodrrg2", "https://tec.openplanner.team/stops/Bzlucam2"], ["https://tec.openplanner.team/stops/Ccomiau1", "https://tec.openplanner.team/stops/Ccomiau2"], ["https://tec.openplanner.team/stops/N501dvb", "https://tec.openplanner.team/stops/N501ejd"], ["https://tec.openplanner.team/stops/LeUhaas1", "https://tec.openplanner.team/stops/LeUhaas4"], ["https://tec.openplanner.team/stops/H2sb238b", "https://tec.openplanner.team/stops/H2sb243b"], ["https://tec.openplanner.team/stops/X629aca", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/LENoule1", "https://tec.openplanner.team/stops/LENoule2"], ["https://tec.openplanner.team/stops/Cwgrans1", "https://tec.openplanner.team/stops/Cwgrans4"], ["https://tec.openplanner.team/stops/LVEbors2", "https://tec.openplanner.team/stops/LVEtomb1"], ["https://tec.openplanner.team/stops/N560aba", "https://tec.openplanner.team/stops/N560abb"], ["https://tec.openplanner.team/stops/LXfcore1", "https://tec.openplanner.team/stops/LXflong2"], ["https://tec.openplanner.team/stops/N117aca", "https://tec.openplanner.team/stops/N147adb"], ["https://tec.openplanner.team/stops/Bmarchn1", "https://tec.openplanner.team/stops/Bmarfjo2"], ["https://tec.openplanner.team/stops/X634afb", "https://tec.openplanner.team/stops/X670ala"], ["https://tec.openplanner.team/stops/Lghjans1", "https://tec.openplanner.team/stops/Ljerouy2"], ["https://tec.openplanner.team/stops/X985adb", "https://tec.openplanner.team/stops/X985ahb"], ["https://tec.openplanner.team/stops/LFR201-2", "https://tec.openplanner.team/stops/LSxeg--1"], ["https://tec.openplanner.team/stops/LREprea2", "https://tec.openplanner.team/stops/LREsaul2"], ["https://tec.openplanner.team/stops/N331aha", "https://tec.openplanner.team/stops/N331aib"], ["https://tec.openplanner.team/stops/X733akb", "https://tec.openplanner.team/stops/X733ala"], ["https://tec.openplanner.team/stops/Llgbobu1", "https://tec.openplanner.team/stops/Llgbobu6"], ["https://tec.openplanner.team/stops/LPleclu1", "https://tec.openplanner.team/stops/LPlpomp2"], ["https://tec.openplanner.team/stops/N564afa", "https://tec.openplanner.team/stops/N564afb"], ["https://tec.openplanner.team/stops/LDLbeau2", "https://tec.openplanner.team/stops/LSEquar2"], ["https://tec.openplanner.team/stops/H2mi123b", "https://tec.openplanner.team/stops/H2mi125b"], ["https://tec.openplanner.team/stops/Cmmmarb1", "https://tec.openplanner.team/stops/Cmmp2052"], ["https://tec.openplanner.team/stops/NL78aka", "https://tec.openplanner.team/stops/NL78akb"], ["https://tec.openplanner.team/stops/Cbcegli3", "https://tec.openplanner.team/stops/Cbcegli6"], ["https://tec.openplanner.team/stops/LTIcime1", "https://tec.openplanner.team/stops/LTIsupe1"], ["https://tec.openplanner.team/stops/LMOf35-1", "https://tec.openplanner.team/stops/LMOf35-2"], ["https://tec.openplanner.team/stops/N209aea", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/LERdeho1", "https://tec.openplanner.team/stops/LERdeho2"], ["https://tec.openplanner.team/stops/X627ada", "https://tec.openplanner.team/stops/X631aca"], ["https://tec.openplanner.team/stops/Csoplac2", "https://tec.openplanner.team/stops/Csostoc1"], ["https://tec.openplanner.team/stops/H1do117b", "https://tec.openplanner.team/stops/H1do124a"], ["https://tec.openplanner.team/stops/LVNleco1", "https://tec.openplanner.team/stops/LWDplac1"], ["https://tec.openplanner.team/stops/N501gma", "https://tec.openplanner.team/stops/N501lcb"], ["https://tec.openplanner.team/stops/N553aab", "https://tec.openplanner.team/stops/N553aia"], ["https://tec.openplanner.team/stops/Bblacea2", "https://tec.openplanner.team/stops/Bblaece2"], ["https://tec.openplanner.team/stops/LMAbass1", "https://tec.openplanner.team/stops/LMAbass2"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N313adb"], ["https://tec.openplanner.team/stops/H4th139a", "https://tec.openplanner.team/stops/H4th141b"], ["https://tec.openplanner.team/stops/Bnivcol2", "https://tec.openplanner.team/stops/Bnivh%C3%B4p1"], ["https://tec.openplanner.team/stops/Bhenron2", "https://tec.openplanner.team/stops/Bquegen1"], ["https://tec.openplanner.team/stops/Lanclon1", "https://tec.openplanner.team/stops/Llglaha2"], ["https://tec.openplanner.team/stops/LSogare1", "https://tec.openplanner.team/stops/LSokrin2"], ["https://tec.openplanner.team/stops/N547amb", "https://tec.openplanner.team/stops/N548acb"], ["https://tec.openplanner.team/stops/LFmceli2", "https://tec.openplanner.team/stops/LFmroye1"], ["https://tec.openplanner.team/stops/Lagtilf2", "https://tec.openplanner.team/stops/Lceourt1"], ["https://tec.openplanner.team/stops/X318abb", "https://tec.openplanner.team/stops/X364ada"], ["https://tec.openplanner.team/stops/LSkoran2", "https://tec.openplanner.team/stops/LSkwarf3"], ["https://tec.openplanner.team/stops/N528avb", "https://tec.openplanner.team/stops/N542apa"], ["https://tec.openplanner.team/stops/Lstbarb3", "https://tec.openplanner.team/stops/Lstbold2"], ["https://tec.openplanner.team/stops/H1je215b", "https://tec.openplanner.team/stops/H1je360a"], ["https://tec.openplanner.team/stops/Cgpauln2", "https://tec.openplanner.team/stops/Cgpleco2"], ["https://tec.openplanner.team/stops/Cmasncb1", "https://tec.openplanner.team/stops/Cmastni2"], ["https://tec.openplanner.team/stops/LAbchpl2", "https://tec.openplanner.team/stops/LScd45-2"], ["https://tec.openplanner.team/stops/LESoneu3", "https://tec.openplanner.team/stops/LPLhout2"], ["https://tec.openplanner.team/stops/Bwatath3", "https://tec.openplanner.team/stops/Bwatgar3"], ["https://tec.openplanner.team/stops/Bmalsmc2", "https://tec.openplanner.team/stops/Bopprju2"], ["https://tec.openplanner.team/stops/X802aia", "https://tec.openplanner.team/stops/X802aka"], ["https://tec.openplanner.team/stops/X879aja", "https://tec.openplanner.team/stops/X882aab"], ["https://tec.openplanner.team/stops/Lmobrac1", "https://tec.openplanner.team/stops/Lmocoop2"], ["https://tec.openplanner.team/stops/LMttrou2", "https://tec.openplanner.team/stops/LSdsa8a1"], ["https://tec.openplanner.team/stops/Bmrl4ch2", "https://tec.openplanner.team/stops/Bolphgr2"], ["https://tec.openplanner.team/stops/H4wi161b", "https://tec.openplanner.team/stops/H4wi164b"], ["https://tec.openplanner.team/stops/N562afa", "https://tec.openplanner.team/stops/N562bha"], ["https://tec.openplanner.team/stops/Becepco2", "https://tec.openplanner.team/stops/Becepro1"], ["https://tec.openplanner.team/stops/Buccvbe2", "https://tec.openplanner.team/stops/Bwbfhip2"], ["https://tec.openplanner.team/stops/LSZlegr1", "https://tec.openplanner.team/stops/LSZroqu1"], ["https://tec.openplanner.team/stops/H2sb228d", "https://tec.openplanner.team/stops/H2sb236c"], ["https://tec.openplanner.team/stops/Bhenard1", "https://tec.openplanner.team/stops/Bhenmal1"], ["https://tec.openplanner.team/stops/LSWeg--3", "https://tec.openplanner.team/stops/LSZgare2"], ["https://tec.openplanner.team/stops/X812aca", "https://tec.openplanner.team/stops/X812acb"], ["https://tec.openplanner.team/stops/LHgdari2", "https://tec.openplanner.team/stops/LOMdodi2"], ["https://tec.openplanner.team/stops/H2ll192a", "https://tec.openplanner.team/stops/H2ll267b"], ["https://tec.openplanner.team/stops/H4gu108a", "https://tec.openplanner.team/stops/H4gu108c"], ["https://tec.openplanner.team/stops/H1ho124b", "https://tec.openplanner.team/stops/H1ho131a"], ["https://tec.openplanner.team/stops/N584baa", "https://tec.openplanner.team/stops/N584bba"], ["https://tec.openplanner.team/stops/N501cva", "https://tec.openplanner.team/stops/N501cwa"], ["https://tec.openplanner.team/stops/N512ata", "https://tec.openplanner.team/stops/N512atc"], ["https://tec.openplanner.team/stops/Bdonlat1", "https://tec.openplanner.team/stops/Blthbss2"], ["https://tec.openplanner.team/stops/X896aba", "https://tec.openplanner.team/stops/X896aca"], ["https://tec.openplanner.team/stops/LAWdefr1", "https://tec.openplanner.team/stops/LAWdefr2"], ["https://tec.openplanner.team/stops/H2ch100c", "https://tec.openplanner.team/stops/H2ch107a"], ["https://tec.openplanner.team/stops/H4av103b", "https://tec.openplanner.team/stops/H4ss156b"], ["https://tec.openplanner.team/stops/Cgyduss4", "https://tec.openplanner.team/stops/Cjulamb1"], ["https://tec.openplanner.team/stops/N548aab", "https://tec.openplanner.team/stops/N569aca"], ["https://tec.openplanner.team/stops/Llaeg--1", "https://tec.openplanner.team/stops/Llaeg--2"], ["https://tec.openplanner.team/stops/NL68afb", "https://tec.openplanner.team/stops/NL68agb"], ["https://tec.openplanner.team/stops/Lenabat1", "https://tec.openplanner.team/stops/Lengran1"], ["https://tec.openplanner.team/stops/Cwfdame1", "https://tec.openplanner.team/stops/Cwflouv3"], ["https://tec.openplanner.team/stops/X616ada", "https://tec.openplanner.team/stops/X624aba"], ["https://tec.openplanner.team/stops/N501hqa", "https://tec.openplanner.team/stops/N501ifb"], ["https://tec.openplanner.team/stops/X982apb", "https://tec.openplanner.team/stops/X982bja"], ["https://tec.openplanner.team/stops/X659afa", "https://tec.openplanner.team/stops/X659aoa"], ["https://tec.openplanner.team/stops/Bmsgfon1", "https://tec.openplanner.team/stops/Bmsgrco2"], ["https://tec.openplanner.team/stops/LMoeg--1", "https://tec.openplanner.team/stops/LMovieu2"], ["https://tec.openplanner.team/stops/LSOfech2", "https://tec.openplanner.team/stops/LSOgard2"], ["https://tec.openplanner.team/stops/Bpechos1", "https://tec.openplanner.team/stops/Bpechos2"], ["https://tec.openplanner.team/stops/N553aaa", "https://tec.openplanner.team/stops/N553aab"], ["https://tec.openplanner.team/stops/H1br126a", "https://tec.openplanner.team/stops/H2ma202b"], ["https://tec.openplanner.team/stops/N245aba", "https://tec.openplanner.team/stops/N340agb"], ["https://tec.openplanner.team/stops/LDOastr1", "https://tec.openplanner.team/stops/LDOviad1"], ["https://tec.openplanner.team/stops/Cwfcule1", "https://tec.openplanner.team/stops/N543bna"], ["https://tec.openplanner.team/stops/N501ebz", "https://tec.openplanner.team/stops/N501epd"], ["https://tec.openplanner.team/stops/Bgembhe1", "https://tec.openplanner.team/stops/N541aca"], ["https://tec.openplanner.team/stops/LLgmini1", "https://tec.openplanner.team/stops/LLgmini2"], ["https://tec.openplanner.team/stops/LGDgdou1", "https://tec.openplanner.team/stops/LWLhagi1"], ["https://tec.openplanner.team/stops/Bblabos1", "https://tec.openplanner.team/stops/Bblacar2"], ["https://tec.openplanner.team/stops/Cchplan1", "https://tec.openplanner.team/stops/Cchplan2"], ["https://tec.openplanner.team/stops/X727afa", "https://tec.openplanner.team/stops/X728aaa"], ["https://tec.openplanner.team/stops/X597anb", "https://tec.openplanner.team/stops/X597apb"], ["https://tec.openplanner.team/stops/Clgrsoc2", "https://tec.openplanner.team/stops/Ctipoui2"], ["https://tec.openplanner.team/stops/Bspkker1", "https://tec.openplanner.team/stops/H1mk113a"], ["https://tec.openplanner.team/stops/N117aba", "https://tec.openplanner.team/stops/N145agb"], ["https://tec.openplanner.team/stops/H4eq123b", "https://tec.openplanner.team/stops/H4he106b"], ["https://tec.openplanner.team/stops/LbOvith1", "https://tec.openplanner.team/stops/LnEkirc4"], ["https://tec.openplanner.team/stops/Cthbifu2", "https://tec.openplanner.team/stops/Cthhttr3"], ["https://tec.openplanner.team/stops/X948ajb", "https://tec.openplanner.team/stops/X948apa"], ["https://tec.openplanner.team/stops/X812aia", "https://tec.openplanner.team/stops/X812ava"], ["https://tec.openplanner.team/stops/N574aab", "https://tec.openplanner.team/stops/N576adb"], ["https://tec.openplanner.team/stops/Crgegli1", "https://tec.openplanner.team/stops/Crglyre2"], ["https://tec.openplanner.team/stops/H1vt195a", "https://tec.openplanner.team/stops/H1vt195b"], ["https://tec.openplanner.team/stops/H1ho131b", "https://tec.openplanner.team/stops/H1ho136a"], ["https://tec.openplanner.team/stops/Bwatppa1", "https://tec.openplanner.team/stops/Bwatras2"], ["https://tec.openplanner.team/stops/N562bha", "https://tec.openplanner.team/stops/N562bjb"], ["https://tec.openplanner.team/stops/LLrc1651", "https://tec.openplanner.team/stops/LLrc1991"], ["https://tec.openplanner.team/stops/H2ch101b", "https://tec.openplanner.team/stops/H2go113b"], ["https://tec.openplanner.team/stops/Cmecime2", "https://tec.openplanner.team/stops/Cmerdby2"], ["https://tec.openplanner.team/stops/Bhmmbog1", "https://tec.openplanner.team/stops/Btlgmar1"], ["https://tec.openplanner.team/stops/Cchbaza2", "https://tec.openplanner.team/stops/Cchccom2"], ["https://tec.openplanner.team/stops/H1to151b", "https://tec.openplanner.team/stops/H1to152a"], ["https://tec.openplanner.team/stops/H3so157a", "https://tec.openplanner.team/stops/H3so172a"], ["https://tec.openplanner.team/stops/Cfrcoqu2", "https://tec.openplanner.team/stops/Cfrfede1"], ["https://tec.openplanner.team/stops/LFPkape1", "https://tec.openplanner.team/stops/LFPknap2"], ["https://tec.openplanner.team/stops/Bbldass2", "https://tec.openplanner.team/stops/Bbldmun2"], ["https://tec.openplanner.team/stops/Bixlqll1", "https://tec.openplanner.team/stops/Bsgipha2"], ["https://tec.openplanner.team/stops/H4lp121a", "https://tec.openplanner.team/stops/H4lp121b"], ["https://tec.openplanner.team/stops/X873abb", "https://tec.openplanner.team/stops/X873aca"], ["https://tec.openplanner.team/stops/X805aaa", "https://tec.openplanner.team/stops/X869aeb"], ["https://tec.openplanner.team/stops/Bbeagae2", "https://tec.openplanner.team/stops/Bzlucam2"], ["https://tec.openplanner.team/stops/H4br107a", "https://tec.openplanner.team/stops/H4br108a"], ["https://tec.openplanner.team/stops/X879apb", "https://tec.openplanner.team/stops/X879ara"], ["https://tec.openplanner.team/stops/Bchgpap2", "https://tec.openplanner.team/stops/Bchgrco1"], ["https://tec.openplanner.team/stops/Bbuztai1", "https://tec.openplanner.team/stops/Bbuztai2"], ["https://tec.openplanner.team/stops/X793afc", "https://tec.openplanner.team/stops/X793afd"], ["https://tec.openplanner.team/stops/Clfbarr1", "https://tec.openplanner.team/stops/Clfbarr4"], ["https://tec.openplanner.team/stops/Cfaeclu1", "https://tec.openplanner.team/stops/Cfaysle1"], ["https://tec.openplanner.team/stops/LsVgesc1", "https://tec.openplanner.team/stops/LsVgesc2"], ["https://tec.openplanner.team/stops/Baegpon3", "https://tec.openplanner.team/stops/Baegpon4"], ["https://tec.openplanner.team/stops/Cjubien2", "https://tec.openplanner.team/stops/Cjuquai2"], ["https://tec.openplanner.team/stops/H1ho144a", "https://tec.openplanner.team/stops/H1ho144b"], ["https://tec.openplanner.team/stops/Bneehou1", "https://tec.openplanner.team/stops/Bneehou2"], ["https://tec.openplanner.team/stops/LFEmala1", "https://tec.openplanner.team/stops/LFEmala2"], ["https://tec.openplanner.team/stops/Bgerd321", "https://tec.openplanner.team/stops/Bgrhpos1"], ["https://tec.openplanner.team/stops/LFyec--2", "https://tec.openplanner.team/stops/LFyWarc1"], ["https://tec.openplanner.team/stops/H4my120a", "https://tec.openplanner.team/stops/H4vz367b"], ["https://tec.openplanner.team/stops/LLEfagn2", "https://tec.openplanner.team/stops/LQacabi1"], ["https://tec.openplanner.team/stops/N310aaa", "https://tec.openplanner.team/stops/N312ada"], ["https://tec.openplanner.team/stops/X898aea", "https://tec.openplanner.team/stops/X898afb"], ["https://tec.openplanner.team/stops/Bbcocou2", "https://tec.openplanner.team/stops/Bbcopre1"], ["https://tec.openplanner.team/stops/X637adb", "https://tec.openplanner.team/stops/X637aka"], ["https://tec.openplanner.team/stops/Cvpsthu1", "https://tec.openplanner.team/stops/Cvpsthu2"], ["https://tec.openplanner.team/stops/Bhlvgar2", "https://tec.openplanner.team/stops/Blpghou1"], ["https://tec.openplanner.team/stops/Cmlbras2", "https://tec.openplanner.team/stops/Cmlhotv1"], ["https://tec.openplanner.team/stops/H1gn151a", "https://tec.openplanner.team/stops/H1gn151b"], ["https://tec.openplanner.team/stops/Cladura3", "https://tec.openplanner.team/stops/NC23aaa"], ["https://tec.openplanner.team/stops/LBbbac-2", "https://tec.openplanner.team/stops/LHXmonu2"], ["https://tec.openplanner.team/stops/LBDcarr1", "https://tec.openplanner.team/stops/LJEniho1"], ["https://tec.openplanner.team/stops/Bbounci2", "https://tec.openplanner.team/stops/Bboupde2"], ["https://tec.openplanner.team/stops/N548aaa", "https://tec.openplanner.team/stops/N548aca"], ["https://tec.openplanner.team/stops/N244abb", "https://tec.openplanner.team/stops/N244afa"], ["https://tec.openplanner.team/stops/H5qu145a", "https://tec.openplanner.team/stops/H5qu145b"], ["https://tec.openplanner.team/stops/X766aab", "https://tec.openplanner.team/stops/X766aba"], ["https://tec.openplanner.team/stops/LTPplco1", "https://tec.openplanner.team/stops/LTPreco2"], ["https://tec.openplanner.team/stops/X796abb", "https://tec.openplanner.team/stops/X986aga"], ["https://tec.openplanner.team/stops/Bdvmc432", "https://tec.openplanner.team/stops/Bdvmsar1"], ["https://tec.openplanner.team/stops/Llgbavr1", "https://tec.openplanner.team/stops/Llgec--1"], ["https://tec.openplanner.team/stops/H1eq115b", "https://tec.openplanner.team/stops/H1eq116b"], ["https://tec.openplanner.team/stops/N571aba", "https://tec.openplanner.team/stops/N571aja"], ["https://tec.openplanner.team/stops/N110aca", "https://tec.openplanner.team/stops/N110acb"], ["https://tec.openplanner.team/stops/LOltill2", "https://tec.openplanner.team/stops/LScd45-1"], ["https://tec.openplanner.team/stops/X345aca", "https://tec.openplanner.team/stops/X363ada"], ["https://tec.openplanner.team/stops/X760aba", "https://tec.openplanner.team/stops/X760abb"], ["https://tec.openplanner.team/stops/LSImewi1", "https://tec.openplanner.team/stops/LSIroch1"], ["https://tec.openplanner.team/stops/N234aab", "https://tec.openplanner.team/stops/N234afa"], ["https://tec.openplanner.team/stops/H2lh125b", "https://tec.openplanner.team/stops/H2mm140a"], ["https://tec.openplanner.team/stops/N141aab", "https://tec.openplanner.team/stops/N141abb"], ["https://tec.openplanner.team/stops/Cgrchea1", "https://tec.openplanner.team/stops/Cgrchea2"], ["https://tec.openplanner.team/stops/N512aba", "https://tec.openplanner.team/stops/N512abb"], ["https://tec.openplanner.team/stops/Bbourel1", "https://tec.openplanner.team/stops/Bbourel2"], ["https://tec.openplanner.team/stops/Lsmpost1", "https://tec.openplanner.team/stops/Lveinva2"], ["https://tec.openplanner.team/stops/Lmlcite*", "https://tec.openplanner.team/stops/Lmlrosa1"], ["https://tec.openplanner.team/stops/NC44aea", "https://tec.openplanner.team/stops/NC44aeb"], ["https://tec.openplanner.team/stops/H1em110a", "https://tec.openplanner.team/stops/H1hl123a"], ["https://tec.openplanner.team/stops/Bgzddur1", "https://tec.openplanner.team/stops/Bgzdpis2"], ["https://tec.openplanner.team/stops/Bbsgrve1", "https://tec.openplanner.team/stops/Bnetvan1"], ["https://tec.openplanner.team/stops/LMffoot1", "https://tec.openplanner.team/stops/LMffoot2"], ["https://tec.openplanner.team/stops/X670apa", "https://tec.openplanner.team/stops/X670asa"], ["https://tec.openplanner.team/stops/H1ry135b", "https://tec.openplanner.team/stops/H1ry137a"], ["https://tec.openplanner.team/stops/H1mj125a", "https://tec.openplanner.team/stops/H1mj129a"], ["https://tec.openplanner.team/stops/H1cu113b", "https://tec.openplanner.team/stops/H1cu129a"], ["https://tec.openplanner.team/stops/N236ahb", "https://tec.openplanner.team/stops/N236aja"], ["https://tec.openplanner.team/stops/H1bu139b", "https://tec.openplanner.team/stops/H1bu141a"], ["https://tec.openplanner.team/stops/X946acb", "https://tec.openplanner.team/stops/X946ada"], ["https://tec.openplanner.team/stops/Bmalcar1", "https://tec.openplanner.team/stops/Bmalcar2"], ["https://tec.openplanner.team/stops/LhGfl242", "https://tec.openplanner.team/stops/LhGkirc4"], ["https://tec.openplanner.team/stops/Cthha501", "https://tec.openplanner.team/stops/Cthrpoi2"], ["https://tec.openplanner.team/stops/N230afb", "https://tec.openplanner.team/stops/N230ala"], ["https://tec.openplanner.team/stops/N103aaa", "https://tec.openplanner.team/stops/N103aab"], ["https://tec.openplanner.team/stops/H5rx148a", "https://tec.openplanner.team/stops/H5rx149a"], ["https://tec.openplanner.team/stops/N348abb", "https://tec.openplanner.team/stops/N348aca"], ["https://tec.openplanner.team/stops/H4ty265a", "https://tec.openplanner.team/stops/H4ty280a"], ["https://tec.openplanner.team/stops/LkAsonn1", "https://tec.openplanner.team/stops/LkAsonn2"], ["https://tec.openplanner.team/stops/X542aea", "https://tec.openplanner.team/stops/X542aga"], ["https://tec.openplanner.team/stops/Cmlipsm2", "https://tec.openplanner.team/stops/Cmlipsm3"], ["https://tec.openplanner.team/stops/LMsalen1", "https://tec.openplanner.team/stops/LMsviad1"], ["https://tec.openplanner.team/stops/LVMchpl1", "https://tec.openplanner.team/stops/LVMchpl2"], ["https://tec.openplanner.team/stops/LAYlieg1", "https://tec.openplanner.team/stops/LAYlieg2"], ["https://tec.openplanner.team/stops/Bbcogpl1", "https://tec.openplanner.team/stops/Bbcogpl2"], ["https://tec.openplanner.team/stops/LWElanc1", "https://tec.openplanner.team/stops/LWEmerm2"], ["https://tec.openplanner.team/stops/LAvambr2", "https://tec.openplanner.team/stops/LAvatri2"], ["https://tec.openplanner.team/stops/LPbeg--2", "https://tec.openplanner.team/stops/LPbusin1"], ["https://tec.openplanner.team/stops/X616ada", "https://tec.openplanner.team/stops/X616adb"], ["https://tec.openplanner.team/stops/N501kfb", "https://tec.openplanner.team/stops/N501kka"], ["https://tec.openplanner.team/stops/Chppack1", "https://tec.openplanner.team/stops/Chppack2"], ["https://tec.openplanner.team/stops/N131aeb", "https://tec.openplanner.team/stops/NH21ahb"], ["https://tec.openplanner.team/stops/H2ep172b", "https://tec.openplanner.team/stops/H2le176a"], ["https://tec.openplanner.team/stops/LmRkape1", "https://tec.openplanner.team/stops/LmRmuhl2"], ["https://tec.openplanner.team/stops/X796abb", "https://tec.openplanner.team/stops/X796aca"], ["https://tec.openplanner.team/stops/Bbgnvel1", "https://tec.openplanner.team/stops/Cwfghis2"], ["https://tec.openplanner.team/stops/N117asa", "https://tec.openplanner.team/stops/N117ata"], ["https://tec.openplanner.team/stops/LCUmonu2", "https://tec.openplanner.team/stops/NL67acb"], ["https://tec.openplanner.team/stops/Cbmvalt1", "https://tec.openplanner.team/stops/Cstmarz1"], ["https://tec.openplanner.team/stops/LmHbahn2", "https://tec.openplanner.team/stops/LmTgers2"], ["https://tec.openplanner.team/stops/X808ahb", "https://tec.openplanner.team/stops/X808ala"], ["https://tec.openplanner.team/stops/N522aga", "https://tec.openplanner.team/stops/N522aha"], ["https://tec.openplanner.team/stops/LVLeg--2", "https://tec.openplanner.team/stops/LVLeg--3"], ["https://tec.openplanner.team/stops/N331aja", "https://tec.openplanner.team/stops/N331akb"], ["https://tec.openplanner.team/stops/LRGmoul2", "https://tec.openplanner.team/stops/LRGunio3"], ["https://tec.openplanner.team/stops/X882aca", "https://tec.openplanner.team/stops/X882aha"], ["https://tec.openplanner.team/stops/LJSforg1", "https://tec.openplanner.team/stops/LTAchpl1"], ["https://tec.openplanner.team/stops/LMEpech1", "https://tec.openplanner.team/stops/LMEpech2"], ["https://tec.openplanner.team/stops/LHUlebe0", "https://tec.openplanner.team/stops/LHUlebe9"], ["https://tec.openplanner.team/stops/Bhevhha1", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://tec.openplanner.team/stops/Lhrmemo2", "https://tec.openplanner.team/stops/Lmibove3"], ["https://tec.openplanner.team/stops/H4lz124a", "https://tec.openplanner.team/stops/H4lz127a"], ["https://tec.openplanner.team/stops/NL67acb", "https://tec.openplanner.team/stops/NL67ada"], ["https://tec.openplanner.team/stops/H4pq112a", "https://tec.openplanner.team/stops/H4pq112b"], ["https://tec.openplanner.team/stops/LSZchpl2", "https://tec.openplanner.team/stops/LSZstoc2"], ["https://tec.openplanner.team/stops/LmIvale2", "https://tec.openplanner.team/stops/LmIvale3"], ["https://tec.openplanner.team/stops/LmTschi1", "https://tec.openplanner.team/stops/LmTschi2"], ["https://tec.openplanner.team/stops/Cpcbrig1", "https://tec.openplanner.team/stops/Cpcbrig2"], ["https://tec.openplanner.team/stops/X939aga", "https://tec.openplanner.team/stops/X940ahb"], ["https://tec.openplanner.team/stops/LTHcime2", "https://tec.openplanner.team/stops/LTHmont2"], ["https://tec.openplanner.team/stops/LPLcite1", "https://tec.openplanner.team/stops/LPLcroi1"], ["https://tec.openplanner.team/stops/N505aab", "https://tec.openplanner.team/stops/N505adb"], ["https://tec.openplanner.team/stops/N501boa", "https://tec.openplanner.team/stops/N501bob"], ["https://tec.openplanner.team/stops/H4fa126a", "https://tec.openplanner.team/stops/H4fa126d"], ["https://tec.openplanner.team/stops/H4le127b", "https://tec.openplanner.team/stops/H4ry133a"], ["https://tec.openplanner.team/stops/LbTkreu1", "https://tec.openplanner.team/stops/LbTkreu4"], ["https://tec.openplanner.team/stops/X910aab", "https://tec.openplanner.team/stops/X910aca"], ["https://tec.openplanner.team/stops/X780aeb", "https://tec.openplanner.team/stops/X790aaa"], ["https://tec.openplanner.team/stops/H4ch115a", "https://tec.openplanner.team/stops/H4ch115b"], ["https://tec.openplanner.team/stops/X662aeb", "https://tec.openplanner.team/stops/X662agb"], ["https://tec.openplanner.team/stops/X637aab", "https://tec.openplanner.team/stops/X637arb"], ["https://tec.openplanner.team/stops/N517aab", "https://tec.openplanner.team/stops/N517afb"], ["https://tec.openplanner.team/stops/H1ht133a", "https://tec.openplanner.team/stops/H1ht135b"], ["https://tec.openplanner.team/stops/Bbauegl1", "https://tec.openplanner.team/stops/Bbautri1"], ["https://tec.openplanner.team/stops/LVLhalb3", "https://tec.openplanner.team/stops/LVLhalb4"], ["https://tec.openplanner.team/stops/LBCaube2", "https://tec.openplanner.team/stops/LMTvill1"], ["https://tec.openplanner.team/stops/LiVdorf2", "https://tec.openplanner.team/stops/LiVgirk1"], ["https://tec.openplanner.team/stops/Cfabaty4", "https://tec.openplanner.team/stops/Clacast2"], ["https://tec.openplanner.team/stops/LVLchem2", "https://tec.openplanner.team/stops/LVLhalb4"], ["https://tec.openplanner.team/stops/H1br130a", "https://tec.openplanner.team/stops/H1br134a"], ["https://tec.openplanner.team/stops/LTPgare*", "https://tec.openplanner.team/stops/LTPpreh2"], ["https://tec.openplanner.team/stops/LDOchev1", "https://tec.openplanner.team/stops/LDOgare2"], ["https://tec.openplanner.team/stops/N501imb", "https://tec.openplanner.team/stops/N501nba"], ["https://tec.openplanner.team/stops/N547aja", "https://tec.openplanner.team/stops/N573arb"], ["https://tec.openplanner.team/stops/Beclesp1", "https://tec.openplanner.team/stops/Beclesp2"], ["https://tec.openplanner.team/stops/H4to134a", "https://tec.openplanner.team/stops/H4to135a"], ["https://tec.openplanner.team/stops/H1ho144b", "https://tec.openplanner.team/stops/H1ho147b"], ["https://tec.openplanner.team/stops/N501gra", "https://tec.openplanner.team/stops/N501grc"], ["https://tec.openplanner.team/stops/X359aac", "https://tec.openplanner.team/stops/X371afa"], ["https://tec.openplanner.team/stops/LPOthom2", "https://tec.openplanner.team/stops/LSdbvue1"], ["https://tec.openplanner.team/stops/LSMec--1", "https://tec.openplanner.team/stops/LSMeg--1"], ["https://tec.openplanner.team/stops/LCxeg--1", "https://tec.openplanner.team/stops/LCxfawe1"], ["https://tec.openplanner.team/stops/N232asb", "https://tec.openplanner.team/stops/N232bya"], ["https://tec.openplanner.team/stops/H1th181a", "https://tec.openplanner.team/stops/H1th183b"], ["https://tec.openplanner.team/stops/H2bh110a", "https://tec.openplanner.team/stops/H2bh119a"], ["https://tec.openplanner.team/stops/H2re165a", "https://tec.openplanner.team/stops/H2re167b"], ["https://tec.openplanner.team/stops/H4ty269a", "https://tec.openplanner.team/stops/H4ty405a"], ["https://tec.openplanner.team/stops/LFTcroi3", "https://tec.openplanner.team/stops/LFTec--3"], ["https://tec.openplanner.team/stops/X614aub", "https://tec.openplanner.team/stops/X615ama"], ["https://tec.openplanner.team/stops/LHUfrai2", "https://tec.openplanner.team/stops/LHUsart2"], ["https://tec.openplanner.team/stops/Bnivgen1", "https://tec.openplanner.team/stops/Bnivsto1"], ["https://tec.openplanner.team/stops/X733aba", "https://tec.openplanner.team/stops/X733acb"], ["https://tec.openplanner.team/stops/X820abb", "https://tec.openplanner.team/stops/X820aib"], ["https://tec.openplanner.team/stops/Lbrfoid3", "https://tec.openplanner.team/stops/Lbrfoid4"], ["https://tec.openplanner.team/stops/H4wn128b", "https://tec.openplanner.team/stops/H4wn130b"], ["https://tec.openplanner.team/stops/LFHjamo2", "https://tec.openplanner.team/stops/LVGeg--1"], ["https://tec.openplanner.team/stops/LHUbail1", "https://tec.openplanner.team/stops/LHUhsar2"], ["https://tec.openplanner.team/stops/Bnivsnu1", "https://tec.openplanner.team/stops/Bnivvri2"], ["https://tec.openplanner.team/stops/X945acb", "https://tec.openplanner.team/stops/X948aqa"], ["https://tec.openplanner.team/stops/LTIdamr2", "https://tec.openplanner.team/stops/LTIpire1"], ["https://tec.openplanner.team/stops/H4fo116a", "https://tec.openplanner.team/stops/H4my123b"], ["https://tec.openplanner.team/stops/X750asa", "https://tec.openplanner.team/stops/X750asb"], ["https://tec.openplanner.team/stops/Cerrver3", "https://tec.openplanner.team/stops/Cerrver4"], ["https://tec.openplanner.team/stops/H1ju121b", "https://tec.openplanner.team/stops/H1mj126b"], ["https://tec.openplanner.team/stops/N501amb", "https://tec.openplanner.team/stops/N528aha"], ["https://tec.openplanner.team/stops/Bnilcim1", "https://tec.openplanner.team/stops/Bnilpje2"], ["https://tec.openplanner.team/stops/LNIec--2", "https://tec.openplanner.team/stops/LNIhaut2"], ["https://tec.openplanner.team/stops/Cgrsaul1", "https://tec.openplanner.team/stops/Cgrsaul2"], ["https://tec.openplanner.team/stops/X608acb", "https://tec.openplanner.team/stops/X608adb"], ["https://tec.openplanner.team/stops/LBNpleg1", "https://tec.openplanner.team/stops/LBNvill3"], ["https://tec.openplanner.team/stops/X614ana", "https://tec.openplanner.team/stops/X614aoa"], ["https://tec.openplanner.team/stops/LHEnaza1", "https://tec.openplanner.team/stops/LHEnaza2"], ["https://tec.openplanner.team/stops/Chhsncb1", "https://tec.openplanner.team/stops/Chhverr2"], ["https://tec.openplanner.team/stops/X775aka", "https://tec.openplanner.team/stops/X775ana"], ["https://tec.openplanner.team/stops/Cmcegli2", "https://tec.openplanner.team/stops/Cmcegli4"], ["https://tec.openplanner.team/stops/H4mo152a", "https://tec.openplanner.team/stops/H4mo204a"], ["https://tec.openplanner.team/stops/N534aqb", "https://tec.openplanner.team/stops/N534bbb"], ["https://tec.openplanner.team/stops/H4rc231a", "https://tec.openplanner.team/stops/H4rc231b"], ["https://tec.openplanner.team/stops/Cjudest2", "https://tec.openplanner.team/stops/Cjupn3"], ["https://tec.openplanner.team/stops/X925aia", "https://tec.openplanner.team/stops/X925aja"], ["https://tec.openplanner.team/stops/H5rx121a", "https://tec.openplanner.team/stops/H5rx121b"], ["https://tec.openplanner.team/stops/N204aaa", "https://tec.openplanner.team/stops/N204aab"], ["https://tec.openplanner.team/stops/LPAbour1", "https://tec.openplanner.team/stops/LPAmosa1"], ["https://tec.openplanner.team/stops/LsVbs--*", "https://tec.openplanner.team/stops/LsVsimo2"], ["https://tec.openplanner.team/stops/H1hw123a", "https://tec.openplanner.team/stops/H1hw124b"], ["https://tec.openplanner.team/stops/X949aea", "https://tec.openplanner.team/stops/X949aeb"], ["https://tec.openplanner.team/stops/Cgycime2", "https://tec.openplanner.team/stops/Cgytrie2"], ["https://tec.openplanner.team/stops/Lgrbill2", "https://tec.openplanner.team/stops/Lgrbonn6"], ["https://tec.openplanner.team/stops/Llgpbay1", "https://tec.openplanner.team/stops/Llgvolg2"], ["https://tec.openplanner.team/stops/H1gi123a", "https://tec.openplanner.team/stops/H1gi123b"], ["https://tec.openplanner.team/stops/Lvtchpl4", "https://tec.openplanner.team/stops/Lvtpepi1"], ["https://tec.openplanner.team/stops/H4oq225a", "https://tec.openplanner.team/stops/H4oq228b"], ["https://tec.openplanner.team/stops/LAYsupe1", "https://tec.openplanner.team/stops/LAYwerb2"], ["https://tec.openplanner.team/stops/X636bda", "https://tec.openplanner.team/stops/X636bha"], ["https://tec.openplanner.team/stops/Cmtmoul1", "https://tec.openplanner.team/stops/Cmtproc2"], ["https://tec.openplanner.team/stops/LVbcoul1", "https://tec.openplanner.team/stops/LVbsurr2"], ["https://tec.openplanner.team/stops/Cgzha622", "https://tec.openplanner.team/stops/Cgzmarb2"], ["https://tec.openplanner.team/stops/Cctathe2", "https://tec.openplanner.team/stops/Cpllimi4"], ["https://tec.openplanner.team/stops/LSPdesc2", "https://tec.openplanner.team/stops/LSPsous1"], ["https://tec.openplanner.team/stops/X725aja", "https://tec.openplanner.team/stops/X725ajb"], ["https://tec.openplanner.team/stops/Lsestap1", "https://tec.openplanner.team/stops/Lsestap2"], ["https://tec.openplanner.team/stops/H1hh112b", "https://tec.openplanner.team/stops/H1hh114a"], ["https://tec.openplanner.team/stops/LAMcime1", "https://tec.openplanner.team/stops/LAMfroi1"], ["https://tec.openplanner.team/stops/N425aaa", "https://tec.openplanner.team/stops/N425aha"], ["https://tec.openplanner.team/stops/N145aga", "https://tec.openplanner.team/stops/N145ahb"], ["https://tec.openplanner.team/stops/Bnivmat1", "https://tec.openplanner.team/stops/Bnivtec2"], ["https://tec.openplanner.team/stops/LCF1spa2", "https://tec.openplanner.team/stops/LVnrock1"], ["https://tec.openplanner.team/stops/X659arb", "https://tec.openplanner.team/stops/X659ava"], ["https://tec.openplanner.team/stops/X818apa", "https://tec.openplanner.team/stops/X820amb"], ["https://tec.openplanner.team/stops/Bnodblt2", "https://tec.openplanner.team/stops/Boplcsj3"], ["https://tec.openplanner.team/stops/X773afa", "https://tec.openplanner.team/stops/X773agb"], ["https://tec.openplanner.team/stops/LLycent*", "https://tec.openplanner.team/stops/LXfsolw1"], ["https://tec.openplanner.team/stops/Cgzmarb2", "https://tec.openplanner.team/stops/Ctuosso1"], ["https://tec.openplanner.team/stops/X614ahb", "https://tec.openplanner.team/stops/X614asb"], ["https://tec.openplanner.team/stops/X952abb", "https://tec.openplanner.team/stops/X952aga"], ["https://tec.openplanner.team/stops/X767aja", "https://tec.openplanner.team/stops/X769aaa"], ["https://tec.openplanner.team/stops/Blhucmo2", "https://tec.openplanner.team/stops/Blhumga1"], ["https://tec.openplanner.team/stops/N153aab", "https://tec.openplanner.team/stops/N153aeb"], ["https://tec.openplanner.team/stops/H1al106a", "https://tec.openplanner.team/stops/H1bs110c"], ["https://tec.openplanner.team/stops/H4ce108a", "https://tec.openplanner.team/stops/H4ce108b"], ["https://tec.openplanner.team/stops/LBkjenn1", "https://tec.openplanner.team/stops/LWEfati2"], ["https://tec.openplanner.team/stops/H1hr115b", "https://tec.openplanner.team/stops/H1hr118a"], ["https://tec.openplanner.team/stops/Bwavbmo1", "https://tec.openplanner.team/stops/Bwavche1"], ["https://tec.openplanner.team/stops/NH01aba", "https://tec.openplanner.team/stops/NH01atb"], ["https://tec.openplanner.team/stops/Cbmplac1", "https://tec.openplanner.team/stops/H1bt100a"], ["https://tec.openplanner.team/stops/Cbtgemi1", "https://tec.openplanner.team/stops/Cfrcoqu1"], ["https://tec.openplanner.team/stops/Lenvale1", "https://tec.openplanner.team/stops/Llmdavi1"], ["https://tec.openplanner.team/stops/Bwspbos1", "https://tec.openplanner.team/stops/Bwspm371"], ["https://tec.openplanner.team/stops/LDmeg--2", "https://tec.openplanner.team/stops/LHovach2"], ["https://tec.openplanner.team/stops/N531aba", "https://tec.openplanner.team/stops/N576ajb"], ["https://tec.openplanner.team/stops/Lbhfaye1", "https://tec.openplanner.team/stops/Lgrwill1"], ["https://tec.openplanner.team/stops/LOMbrou2", "https://tec.openplanner.team/stops/LOMdodi2"], ["https://tec.openplanner.team/stops/H1hn207a", "https://tec.openplanner.team/stops/H1hn363a"], ["https://tec.openplanner.team/stops/H1cd113b", "https://tec.openplanner.team/stops/H1to152a"], ["https://tec.openplanner.team/stops/H1wa151a", "https://tec.openplanner.team/stops/H1wa156a"], ["https://tec.openplanner.team/stops/LSPgend1", "https://tec.openplanner.team/stops/LSPgend2"], ["https://tec.openplanner.team/stops/Lmlbaro1", "https://tec.openplanner.team/stops/Lmldama2"], ["https://tec.openplanner.team/stops/N101arb", "https://tec.openplanner.team/stops/N117bda"], ["https://tec.openplanner.team/stops/Cmllait1", "https://tec.openplanner.team/stops/Cmlvesp1"], ["https://tec.openplanner.team/stops/N538ata", "https://tec.openplanner.team/stops/N538axb"], ["https://tec.openplanner.team/stops/Cfmcoro2", "https://tec.openplanner.team/stops/Cfmwaut1"], ["https://tec.openplanner.team/stops/N254aaa", "https://tec.openplanner.team/stops/N562bfa"], ["https://tec.openplanner.team/stops/Cdaviol2", "https://tec.openplanner.team/stops/Cmarroy2"], ["https://tec.openplanner.team/stops/Cvvgrsa1", "https://tec.openplanner.team/stops/Cvvsncb1"], ["https://tec.openplanner.team/stops/N549ada", "https://tec.openplanner.team/stops/N549aib"], ["https://tec.openplanner.team/stops/Cgoloca2", "https://tec.openplanner.team/stops/Cgonvro1"], ["https://tec.openplanner.team/stops/NH01aab", "https://tec.openplanner.team/stops/NH01abb"], ["https://tec.openplanner.team/stops/Lpecaze1", "https://tec.openplanner.team/stops/Lpecaze2"], ["https://tec.openplanner.team/stops/LCUthie1", "https://tec.openplanner.team/stops/LCUthie2"], ["https://tec.openplanner.team/stops/H1gr112b", "https://tec.openplanner.team/stops/H1gr123a"], ["https://tec.openplanner.team/stops/Cjxpris2", "https://tec.openplanner.team/stops/Cna4che1"], ["https://tec.openplanner.team/stops/LoDcorn1", "https://tec.openplanner.team/stops/LoDscha1"], ["https://tec.openplanner.team/stops/H4gr108a", "https://tec.openplanner.team/stops/H4gr112a"], ["https://tec.openplanner.team/stops/N579aab", "https://tec.openplanner.team/stops/N579ada"], ["https://tec.openplanner.team/stops/Lstetud1", "https://tec.openplanner.team/stops/Lsttech2"], ["https://tec.openplanner.team/stops/LAYcorn2", "https://tec.openplanner.team/stops/LFLgara2"], ["https://tec.openplanner.team/stops/LNAanne2", "https://tec.openplanner.team/stops/LSSfrai2"], ["https://tec.openplanner.team/stops/LBahaut1", "https://tec.openplanner.team/stops/LLrmeno1"], ["https://tec.openplanner.team/stops/Cmogrbu1", "https://tec.openplanner.team/stops/Cmopn1"], ["https://tec.openplanner.team/stops/H4bo112a", "https://tec.openplanner.team/stops/H4bo117a"], ["https://tec.openplanner.team/stops/H2bh114a", "https://tec.openplanner.team/stops/H2bh115a"], ["https://tec.openplanner.team/stops/Cbmgare1", "https://tec.openplanner.team/stops/Cbmgare2"], ["https://tec.openplanner.team/stops/X781aha", "https://tec.openplanner.team/stops/X781ahb"], ["https://tec.openplanner.team/stops/LMedoum1", "https://tec.openplanner.team/stops/LMedoum2"], ["https://tec.openplanner.team/stops/Ljudeme2", "https://tec.openplanner.team/stops/Ljudeme3"], ["https://tec.openplanner.team/stops/Lmlprie1", "https://tec.openplanner.team/stops/Lpocent2"], ["https://tec.openplanner.team/stops/N532abb", "https://tec.openplanner.team/stops/N532aia"], ["https://tec.openplanner.team/stops/X719aaa", "https://tec.openplanner.team/stops/X719afb"], ["https://tec.openplanner.team/stops/N154aba", "https://tec.openplanner.team/stops/N154abb"], ["https://tec.openplanner.team/stops/X762aab", "https://tec.openplanner.team/stops/X763aea"], ["https://tec.openplanner.team/stops/X767aea", "https://tec.openplanner.team/stops/X767afa"], ["https://tec.openplanner.team/stops/Cgxfo141", "https://tec.openplanner.team/stops/Cgxfo142"], ["https://tec.openplanner.team/stops/N506bwa", "https://tec.openplanner.team/stops/N506bwb"], ["https://tec.openplanner.team/stops/LhUrich1", "https://tec.openplanner.team/stops/LhUrich2"], ["https://tec.openplanner.team/stops/Cchmont2", "https://tec.openplanner.team/stops/Cchprun1"], ["https://tec.openplanner.team/stops/LCAcruc1", "https://tec.openplanner.team/stops/LTGvill2"], ["https://tec.openplanner.team/stops/LSZprie1", "https://tec.openplanner.team/stops/LSZsolw3"], ["https://tec.openplanner.team/stops/Lmabott1", "https://tec.openplanner.team/stops/Lmagara1"], ["https://tec.openplanner.team/stops/LwR129-1", "https://tec.openplanner.team/stops/LwRkirc1"], ["https://tec.openplanner.team/stops/X716aea", "https://tec.openplanner.team/stops/X716afa"], ["https://tec.openplanner.team/stops/X750aqa", "https://tec.openplanner.team/stops/X750bda"], ["https://tec.openplanner.team/stops/H4mv190b", "https://tec.openplanner.team/stops/H4mv192b"], ["https://tec.openplanner.team/stops/LMOeg--1", "https://tec.openplanner.team/stops/LMOeg--2"], ["https://tec.openplanner.team/stops/X950aba", "https://tec.openplanner.team/stops/X950acb"], ["https://tec.openplanner.team/stops/Crecouc2", "https://tec.openplanner.team/stops/Crefont2"], ["https://tec.openplanner.team/stops/N232bia", "https://tec.openplanner.team/stops/N232bja"], ["https://tec.openplanner.team/stops/LHUsaul2", "https://tec.openplanner.team/stops/LHUzoni2"], ["https://tec.openplanner.team/stops/Cculpre1", "https://tec.openplanner.team/stops/Ccuwil2"], ["https://tec.openplanner.team/stops/Cfrfede2", "https://tec.openplanner.team/stops/Csdpira2"], ["https://tec.openplanner.team/stops/LSsaxhe1", "https://tec.openplanner.team/stops/N506bda"], ["https://tec.openplanner.team/stops/Bbsgfva1", "https://tec.openplanner.team/stops/Bgzdn251"], ["https://tec.openplanner.team/stops/Lboeg--1", "https://tec.openplanner.team/stops/Lboeg--2"], ["https://tec.openplanner.team/stops/H4mb143b", "https://tec.openplanner.team/stops/H4mb143c"], ["https://tec.openplanner.team/stops/LBlplac2", "https://tec.openplanner.team/stops/LGMvoue2"], ["https://tec.openplanner.team/stops/N385aaa", "https://tec.openplanner.team/stops/N385aba"], ["https://tec.openplanner.team/stops/X818aea", "https://tec.openplanner.team/stops/X818aeb"], ["https://tec.openplanner.team/stops/Cmmbmad1", "https://tec.openplanner.team/stops/Cmmbmad2"], ["https://tec.openplanner.team/stops/H2mo120b", "https://tec.openplanner.team/stops/H2mo125a"], ["https://tec.openplanner.team/stops/Bmlncha2", "https://tec.openplanner.team/stops/Bmlnegl4"], ["https://tec.openplanner.team/stops/H1to151b", "https://tec.openplanner.team/stops/H1to154a"], ["https://tec.openplanner.team/stops/N101aba", "https://tec.openplanner.team/stops/N101abb"], ["https://tec.openplanner.team/stops/X801cda", "https://tec.openplanner.team/stops/X801ceb"], ["https://tec.openplanner.team/stops/Cmacart3", "https://tec.openplanner.team/stops/Cmacart4"], ["https://tec.openplanner.team/stops/LJvmart1", "https://tec.openplanner.team/stops/X781aaa"], ["https://tec.openplanner.team/stops/Bbeagae2", "https://tec.openplanner.team/stops/Bsrgcur2"], ["https://tec.openplanner.team/stops/LMOf21-1", "https://tec.openplanner.team/stops/LMOf35-1"], ["https://tec.openplanner.team/stops/X802apa", "https://tec.openplanner.team/stops/X802aqa"], ["https://tec.openplanner.team/stops/N585aka", "https://tec.openplanner.team/stops/N585akb"], ["https://tec.openplanner.team/stops/Lseathe1", "https://tec.openplanner.team/stops/Lsebeau1"], ["https://tec.openplanner.team/stops/H1ne140a", "https://tec.openplanner.team/stops/H1ne144a"], ["https://tec.openplanner.team/stops/X802aha", "https://tec.openplanner.team/stops/X802aoa"], ["https://tec.openplanner.team/stops/Cgrbert1", "https://tec.openplanner.team/stops/Cgrflac1"], ["https://tec.openplanner.team/stops/N232bzb", "https://tec.openplanner.team/stops/N232cdb"], ["https://tec.openplanner.team/stops/X664aaa", "https://tec.openplanner.team/stops/X667aea"], ["https://tec.openplanner.team/stops/Ccogera2", "https://tec.openplanner.team/stops/Csoforr1"], ["https://tec.openplanner.team/stops/NB33aea", "https://tec.openplanner.team/stops/NB33afb"], ["https://tec.openplanner.team/stops/X992ada", "https://tec.openplanner.team/stops/X992ajb"], ["https://tec.openplanner.team/stops/Clvimtr4", "https://tec.openplanner.team/stops/NC02aaa"], ["https://tec.openplanner.team/stops/Cgocnor4", "https://tec.openplanner.team/stops/Cgoetun5"], ["https://tec.openplanner.team/stops/Btancre2", "https://tec.openplanner.team/stops/Btannda2"], ["https://tec.openplanner.team/stops/N111ada", "https://tec.openplanner.team/stops/N127aha"], ["https://tec.openplanner.team/stops/X808ala", "https://tec.openplanner.team/stops/X808alb"], ["https://tec.openplanner.team/stops/LNCchev2", "https://tec.openplanner.team/stops/LNCgene2"], ["https://tec.openplanner.team/stops/Lmicoop3", "https://tec.openplanner.team/stops/Lmidarc2"], ["https://tec.openplanner.team/stops/N104aab", "https://tec.openplanner.team/stops/N104abb"], ["https://tec.openplanner.team/stops/LSNecol4", "https://tec.openplanner.team/stops/LSNmoul3"], ["https://tec.openplanner.team/stops/N501ivb", "https://tec.openplanner.team/stops/N521amb"], ["https://tec.openplanner.team/stops/N106aeb", "https://tec.openplanner.team/stops/N137afb"], ["https://tec.openplanner.team/stops/Cchsud03", "https://tec.openplanner.team/stops/Cchsud16"], ["https://tec.openplanner.team/stops/N167aaa", "https://tec.openplanner.team/stops/N167abb"], ["https://tec.openplanner.team/stops/H1ch132b", "https://tec.openplanner.team/stops/H5at128b"], ["https://tec.openplanner.team/stops/N348aaa", "https://tec.openplanner.team/stops/N348aab"], ["https://tec.openplanner.team/stops/LWZbeem1", "https://tec.openplanner.team/stops/LWZdtec1"], ["https://tec.openplanner.team/stops/N301aaa", "https://tec.openplanner.team/stops/N301apb"], ["https://tec.openplanner.team/stops/X741aja", "https://tec.openplanner.team/stops/X741ajc"], ["https://tec.openplanner.team/stops/H1fv100a", "https://tec.openplanner.team/stops/H1fv101a"], ["https://tec.openplanner.team/stops/H4bf108a", "https://tec.openplanner.team/stops/H4by119b"], ["https://tec.openplanner.team/stops/Lgrbill1", "https://tec.openplanner.team/stops/Lgrramp1"], ["https://tec.openplanner.team/stops/X940adb", "https://tec.openplanner.team/stops/X940aed"], ["https://tec.openplanner.team/stops/N506bdb", "https://tec.openplanner.team/stops/N506bha"], ["https://tec.openplanner.team/stops/N584aza", "https://tec.openplanner.team/stops/N584bab"], ["https://tec.openplanner.team/stops/X907ada", "https://tec.openplanner.team/stops/X908asb"], ["https://tec.openplanner.team/stops/X948aka", "https://tec.openplanner.team/stops/X948apa"], ["https://tec.openplanner.team/stops/N321afa", "https://tec.openplanner.team/stops/N352afb"], ["https://tec.openplanner.team/stops/LTPpres1", "https://tec.openplanner.team/stops/LTPspay2"], ["https://tec.openplanner.team/stops/Brixala2", "https://tec.openplanner.team/stops/Brixbou2"], ["https://tec.openplanner.team/stops/Llgoeil2", "https://tec.openplanner.team/stops/Llgpere1"], ["https://tec.openplanner.team/stops/Ccobinc1", "https://tec.openplanner.team/stops/Ccoconf1"], ["https://tec.openplanner.team/stops/LSMchat1", "https://tec.openplanner.team/stops/LTPcamp2"], ["https://tec.openplanner.team/stops/N351alb", "https://tec.openplanner.team/stops/N353awb"], ["https://tec.openplanner.team/stops/Blhugmo2", "https://tec.openplanner.team/stops/Blhutco3"], ["https://tec.openplanner.team/stops/X811aha", "https://tec.openplanner.team/stops/X811ahb"], ["https://tec.openplanner.team/stops/LNAbois2", "https://tec.openplanner.team/stops/LNAbouh1"], ["https://tec.openplanner.team/stops/Cbzfrom2", "https://tec.openplanner.team/stops/Creoudo2"], ["https://tec.openplanner.team/stops/Cgzabau1", "https://tec.openplanner.team/stops/Cgzabau2"], ["https://tec.openplanner.team/stops/N252aab", "https://tec.openplanner.team/stops/N252acc"], ["https://tec.openplanner.team/stops/Cthrpoi1", "https://tec.openplanner.team/stops/Cthrpoi2"], ["https://tec.openplanner.team/stops/LSU50--1", "https://tec.openplanner.team/stops/LSUroyo1"], ["https://tec.openplanner.team/stops/X663aca", "https://tec.openplanner.team/stops/X688abb"], ["https://tec.openplanner.team/stops/Bblapra1", "https://tec.openplanner.team/stops/Bwaunou1"], ["https://tec.openplanner.team/stops/H2sb236d", "https://tec.openplanner.team/stops/H2sb242a"], ["https://tec.openplanner.team/stops/N558aga", "https://tec.openplanner.team/stops/N558agb"], ["https://tec.openplanner.team/stops/H2sb239c", "https://tec.openplanner.team/stops/H2sb239d"], ["https://tec.openplanner.team/stops/Bsgipha1", "https://tec.openplanner.team/stops/Bsgipha2"], ["https://tec.openplanner.team/stops/X890aba", "https://tec.openplanner.team/stops/X890abb"], ["https://tec.openplanner.team/stops/Lvtpepi1", "https://tec.openplanner.team/stops/Lvtpepi2"], ["https://tec.openplanner.team/stops/X788aga", "https://tec.openplanner.team/stops/X789ahb"], ["https://tec.openplanner.team/stops/LWOsass1", "https://tec.openplanner.team/stops/LWOwaer2"], ["https://tec.openplanner.team/stops/Blmlbou1", "https://tec.openplanner.team/stops/Blmlfau1"], ["https://tec.openplanner.team/stops/LOTcarr1", "https://tec.openplanner.team/stops/LOTsava1"], ["https://tec.openplanner.team/stops/Bgnvcha1", "https://tec.openplanner.team/stops/Blhupcl1"], ["https://tec.openplanner.team/stops/X616aab", "https://tec.openplanner.team/stops/X695aba"], ["https://tec.openplanner.team/stops/X896adb", "https://tec.openplanner.team/stops/X896aib"], ["https://tec.openplanner.team/stops/Cgylami1", "https://tec.openplanner.team/stops/Cgylami2"], ["https://tec.openplanner.team/stops/N544abc", "https://tec.openplanner.team/stops/N544aca"], ["https://tec.openplanner.team/stops/N501fwb", "https://tec.openplanner.team/stops/N501fwz"], ["https://tec.openplanner.team/stops/H2pe156a", "https://tec.openplanner.team/stops/H2pe157a"], ["https://tec.openplanner.team/stops/N534bpa", "https://tec.openplanner.team/stops/N534bqa"], ["https://tec.openplanner.team/stops/Llgmara1", "https://tec.openplanner.team/stops/Llgongr1"], ["https://tec.openplanner.team/stops/Cmgvpa", "https://tec.openplanner.team/stops/H1mb129b"], ["https://tec.openplanner.team/stops/LWabela1", "https://tec.openplanner.team/stops/LWagare*"], ["https://tec.openplanner.team/stops/H2mo123a", "https://tec.openplanner.team/stops/H2mo123b"], ["https://tec.openplanner.team/stops/H1gr110b", "https://tec.openplanner.team/stops/H1gr119a"], ["https://tec.openplanner.team/stops/H1au111a", "https://tec.openplanner.team/stops/H1au114b"], ["https://tec.openplanner.team/stops/Lsemyrt2", "https://tec.openplanner.team/stops/Lsepcha1"], ["https://tec.openplanner.team/stops/Lsesabl1", "https://tec.openplanner.team/stops/Lsesabl2"], ["https://tec.openplanner.team/stops/LBbhupp1", "https://tec.openplanner.team/stops/X561ada"], ["https://tec.openplanner.team/stops/H4bf108a", "https://tec.openplanner.team/stops/H4bf108b"], ["https://tec.openplanner.team/stops/LBPxhav1", "https://tec.openplanner.team/stops/LRGile-1"], ["https://tec.openplanner.team/stops/H1ho134b", "https://tec.openplanner.team/stops/H1wa143b"], ["https://tec.openplanner.team/stops/LBpvue-1", "https://tec.openplanner.team/stops/LBpvue-2"], ["https://tec.openplanner.team/stops/H1ol140b", "https://tec.openplanner.team/stops/H1ol146a"], ["https://tec.openplanner.team/stops/X871abb", "https://tec.openplanner.team/stops/X871ada"], ["https://tec.openplanner.team/stops/H4mo146a", "https://tec.openplanner.team/stops/H4mo156a"], ["https://tec.openplanner.team/stops/LBSgeer1", "https://tec.openplanner.team/stops/LBSpail3"], ["https://tec.openplanner.team/stops/LAYwerb2", "https://tec.openplanner.team/stops/LREchal1"], ["https://tec.openplanner.team/stops/X992aha", "https://tec.openplanner.team/stops/X993ada"], ["https://tec.openplanner.team/stops/X811aaa", "https://tec.openplanner.team/stops/X811abb"], ["https://tec.openplanner.team/stops/LlNsc652", "https://tec.openplanner.team/stops/LlNschu2"], ["https://tec.openplanner.team/stops/Lseberg1", "https://tec.openplanner.team/stops/Lsetroq2"], ["https://tec.openplanner.team/stops/H4ld130a", "https://tec.openplanner.team/stops/H4ld130b"], ["https://tec.openplanner.team/stops/LOLfoss2", "https://tec.openplanner.team/stops/LOLvill1"], ["https://tec.openplanner.team/stops/X746ahb", "https://tec.openplanner.team/stops/X746aib"], ["https://tec.openplanner.team/stops/Lbralbe1", "https://tec.openplanner.team/stops/Llgabat1"], ["https://tec.openplanner.team/stops/N117aja", "https://tec.openplanner.team/stops/N117akb"], ["https://tec.openplanner.team/stops/X994aka", "https://tec.openplanner.team/stops/X995add"], ["https://tec.openplanner.team/stops/Lhecarc2", "https://tec.openplanner.team/stops/Lhepaqu2"], ["https://tec.openplanner.team/stops/X608aia", "https://tec.openplanner.team/stops/X609aeb"], ["https://tec.openplanner.team/stops/Lhrpont1", "https://tec.openplanner.team/stops/Lhrpont2"], ["https://tec.openplanner.team/stops/N135avb", "https://tec.openplanner.team/stops/N135bha"], ["https://tec.openplanner.team/stops/X636awb", "https://tec.openplanner.team/stops/X636axb"], ["https://tec.openplanner.team/stops/N551aaa", "https://tec.openplanner.team/stops/N551abb"], ["https://tec.openplanner.team/stops/Lmihale2", "https://tec.openplanner.team/stops/Lvtvici1"], ["https://tec.openplanner.team/stops/Blasren1", "https://tec.openplanner.team/stops/Brixroi2"], ["https://tec.openplanner.team/stops/X609aoa", "https://tec.openplanner.team/stops/X631aca"], ["https://tec.openplanner.team/stops/H4gu107a", "https://tec.openplanner.team/stops/H4gu112b"], ["https://tec.openplanner.team/stops/X758aib", "https://tec.openplanner.team/stops/X758ajb"], ["https://tec.openplanner.team/stops/Bwanorp2", "https://tec.openplanner.team/stops/NL75acb"], ["https://tec.openplanner.team/stops/N501gba", "https://tec.openplanner.team/stops/N501mja"], ["https://tec.openplanner.team/stops/Bbstasa1", "https://tec.openplanner.team/stops/Bbstdpa1"], ["https://tec.openplanner.team/stops/X742afa", "https://tec.openplanner.team/stops/X742afb"], ["https://tec.openplanner.team/stops/Cgrgrce2", "https://tec.openplanner.team/stops/NC14aqa"], ["https://tec.openplanner.team/stops/H1ha190a", "https://tec.openplanner.team/stops/H1ha190b"], ["https://tec.openplanner.team/stops/LVthest4", "https://tec.openplanner.team/stops/LVttarg2"], ["https://tec.openplanner.team/stops/X807abb", "https://tec.openplanner.team/stops/X807adb"], ["https://tec.openplanner.team/stops/Bjauvch2", "https://tec.openplanner.team/stops/Bjauwar1"], ["https://tec.openplanner.team/stops/NL73aaa", "https://tec.openplanner.team/stops/NL73aab"], ["https://tec.openplanner.team/stops/LAo170-1", "https://tec.openplanner.team/stops/LTPpres1"], ["https://tec.openplanner.team/stops/N232agb", "https://tec.openplanner.team/stops/N286abb"], ["https://tec.openplanner.team/stops/N140aab", "https://tec.openplanner.team/stops/N141ala"], ["https://tec.openplanner.team/stops/H1gi120d", "https://tec.openplanner.team/stops/H1vs145a"], ["https://tec.openplanner.team/stops/LHYec--1", "https://tec.openplanner.team/stops/LHYnoid1"], ["https://tec.openplanner.team/stops/N501ata", "https://tec.openplanner.team/stops/N501nca"], ["https://tec.openplanner.team/stops/Bplncba2", "https://tec.openplanner.team/stops/Clpsola2"], ["https://tec.openplanner.team/stops/N513awb", "https://tec.openplanner.team/stops/N520aea"], ["https://tec.openplanner.team/stops/Cgocolo2", "https://tec.openplanner.team/stops/Cgorosa2"], ["https://tec.openplanner.team/stops/LVParal1", "https://tec.openplanner.team/stops/LVPgrot1"], ["https://tec.openplanner.team/stops/X672aic", "https://tec.openplanner.team/stops/X672akb"], ["https://tec.openplanner.team/stops/LWAathe2", "https://tec.openplanner.team/stops/LWApr%C3%A9s3"], ["https://tec.openplanner.team/stops/H4lz128a", "https://tec.openplanner.team/stops/H4pi131a"], ["https://tec.openplanner.team/stops/X782aoa", "https://tec.openplanner.team/stops/X783aaa"], ["https://tec.openplanner.team/stops/N539ajb", "https://tec.openplanner.team/stops/N542aha"], ["https://tec.openplanner.team/stops/Lmimili2", "https://tec.openplanner.team/stops/Lvtvici2"], ["https://tec.openplanner.team/stops/Cchheig2", "https://tec.openplanner.team/stops/CMpige1"], ["https://tec.openplanner.team/stops/Cmlcent2", "https://tec.openplanner.team/stops/Cmtrneu2"], ["https://tec.openplanner.team/stops/X654aeb", "https://tec.openplanner.team/stops/X654akb"], ["https://tec.openplanner.team/stops/H1mq198b", "https://tec.openplanner.team/stops/H5me106a"], ["https://tec.openplanner.team/stops/Cbwdoua2", "https://tec.openplanner.team/stops/H1ro131b"], ["https://tec.openplanner.team/stops/Btsllsc1", "https://tec.openplanner.team/stops/Btsllsc2"], ["https://tec.openplanner.team/stops/LAUvict3", "https://tec.openplanner.team/stops/LAUvict4"], ["https://tec.openplanner.team/stops/Barchoc2", "https://tec.openplanner.team/stops/Barcpre1"], ["https://tec.openplanner.team/stops/LBapeup1", "https://tec.openplanner.team/stops/LLrmeno1"], ["https://tec.openplanner.team/stops/N351akb", "https://tec.openplanner.team/stops/N351ala"], ["https://tec.openplanner.team/stops/N521aub", "https://tec.openplanner.team/stops/N521avb"], ["https://tec.openplanner.team/stops/H4ms145b", "https://tec.openplanner.team/stops/H4ms146a"], ["https://tec.openplanner.team/stops/N513azb", "https://tec.openplanner.team/stops/N513bab"], ["https://tec.openplanner.team/stops/Cgocnor1", "https://tec.openplanner.team/stops/Cgocnor2"], ["https://tec.openplanner.team/stops/N501kxb", "https://tec.openplanner.team/stops/N501kzb"], ["https://tec.openplanner.team/stops/Lsehosp1", "https://tec.openplanner.team/stops/Lselibe2"], ["https://tec.openplanner.team/stops/H4oq226c", "https://tec.openplanner.team/stops/H4oq229b"], ["https://tec.openplanner.team/stops/LVBmonu4", "https://tec.openplanner.team/stops/LWDchpl1"], ["https://tec.openplanner.team/stops/X942afb", "https://tec.openplanner.team/stops/X943aca"], ["https://tec.openplanner.team/stops/Lfhbott2", "https://tec.openplanner.team/stops/Lfhtrxc1"], ["https://tec.openplanner.team/stops/H1hl126a", "https://tec.openplanner.team/stops/H1hl126b"], ["https://tec.openplanner.team/stops/H1cu110a", "https://tec.openplanner.team/stops/H1fl142b"], ["https://tec.openplanner.team/stops/H1by100d", "https://tec.openplanner.team/stops/H1by102a"], ["https://tec.openplanner.team/stops/X604acb", "https://tec.openplanner.team/stops/X634aab"], ["https://tec.openplanner.team/stops/Bnivfch1", "https://tec.openplanner.team/stops/Bnivgpl2"], ["https://tec.openplanner.team/stops/LBhcent2", "https://tec.openplanner.team/stops/LSochal2"], ["https://tec.openplanner.team/stops/Bgnvgar1", "https://tec.openplanner.team/stops/Bgnvpos1"], ["https://tec.openplanner.team/stops/LlgPTAV4", "https://tec.openplanner.team/stops/LlgPTAV6"], ["https://tec.openplanner.team/stops/H1en101b", "https://tec.openplanner.team/stops/H1mk112b"], ["https://tec.openplanner.team/stops/N218aab", "https://tec.openplanner.team/stops/N385acb"], ["https://tec.openplanner.team/stops/LLAeg--1", "https://tec.openplanner.team/stops/LMgkrui2"], ["https://tec.openplanner.team/stops/Bbiehpo2", "https://tec.openplanner.team/stops/Bbiehss1"], ["https://tec.openplanner.team/stops/LHUlebo2", "https://tec.openplanner.team/stops/LHUtfal2"], ["https://tec.openplanner.team/stops/LwYsarl1", "https://tec.openplanner.team/stops/LwYsarl2"], ["https://tec.openplanner.team/stops/N501fla", "https://tec.openplanner.team/stops/N501fqb"], ["https://tec.openplanner.team/stops/Ccusole1", "https://tec.openplanner.team/stops/Cgysarr1"], ["https://tec.openplanner.team/stops/X652adb", "https://tec.openplanner.team/stops/X652aga"], ["https://tec.openplanner.team/stops/X695aga", "https://tec.openplanner.team/stops/X695ala"], ["https://tec.openplanner.team/stops/X636bgb", "https://tec.openplanner.team/stops/X637ara"], ["https://tec.openplanner.team/stops/H4ar102b", "https://tec.openplanner.team/stops/H4ar107b"], ["https://tec.openplanner.team/stops/Cfojoli1", "https://tec.openplanner.team/stops/Cfoperz2"], ["https://tec.openplanner.team/stops/Bhalalb2", "https://tec.openplanner.team/stops/Bhalwat2"], ["https://tec.openplanner.team/stops/Llgborn1", "https://tec.openplanner.team/stops/Llgec--1"], ["https://tec.openplanner.team/stops/N528ana", "https://tec.openplanner.team/stops/N528arb"], ["https://tec.openplanner.team/stops/H1no141b", "https://tec.openplanner.team/stops/H1no142a"], ["https://tec.openplanner.team/stops/X818asa", "https://tec.openplanner.team/stops/X818asd"], ["https://tec.openplanner.team/stops/H4ty300b", "https://tec.openplanner.team/stops/H4ty331b"], ["https://tec.openplanner.team/stops/LLeeg--1", "https://tec.openplanner.team/stops/X547aqa"], ["https://tec.openplanner.team/stops/H1te190a", "https://tec.openplanner.team/stops/H1te190b"], ["https://tec.openplanner.team/stops/N528ava", "https://tec.openplanner.team/stops/N528avb"], ["https://tec.openplanner.team/stops/Bengvma1", "https://tec.openplanner.team/stops/H1en102a"], ["https://tec.openplanner.team/stops/H1eu107a", "https://tec.openplanner.team/stops/H1sb144a"], ["https://tec.openplanner.team/stops/H1po132b", "https://tec.openplanner.team/stops/H1po154a"], ["https://tec.openplanner.team/stops/LFEn6--1", "https://tec.openplanner.team/stops/LFtcarr1"], ["https://tec.openplanner.team/stops/Laleg--2", "https://tec.openplanner.team/stops/Laltrav1"], ["https://tec.openplanner.team/stops/LBYegli1", "https://tec.openplanner.team/stops/LBYwez-2"], ["https://tec.openplanner.team/stops/LLYcalv2", "https://tec.openplanner.team/stops/LLYpeup2"], ["https://tec.openplanner.team/stops/Bgrhcen1", "https://tec.openplanner.team/stops/Bgrhcro2"], ["https://tec.openplanner.team/stops/Bincfer2", "https://tec.openplanner.team/stops/Blonegl1"], ["https://tec.openplanner.team/stops/N211ara", "https://tec.openplanner.team/stops/N212agc"], ["https://tec.openplanner.team/stops/Llgcham6", "https://tec.openplanner.team/stops/Llgcham7"], ["https://tec.openplanner.team/stops/Cctecol1", "https://tec.openplanner.team/stops/Cctecol2"], ["https://tec.openplanner.team/stops/Cflcent1", "https://tec.openplanner.team/stops/Cflecep2"], ["https://tec.openplanner.team/stops/H1ge179a", "https://tec.openplanner.team/stops/H1no143b"], ["https://tec.openplanner.team/stops/Lrecite1", "https://tec.openplanner.team/stops/Lreclou1"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X666ahb"], ["https://tec.openplanner.team/stops/Cacscav1", "https://tec.openplanner.team/stops/NC24akb"], ["https://tec.openplanner.team/stops/Clcfall4", "https://tec.openplanner.team/stops/Csscrot2"], ["https://tec.openplanner.team/stops/LBAcent1", "https://tec.openplanner.team/stops/LBAtign2"], ["https://tec.openplanner.team/stops/Bwatcci1", "https://tec.openplanner.team/stops/Bwatceg1"], ["https://tec.openplanner.team/stops/X631aab", "https://tec.openplanner.team/stops/X631abb"], ["https://tec.openplanner.team/stops/LKmcite2", "https://tec.openplanner.team/stops/LOdkeme1"], ["https://tec.openplanner.team/stops/Cmaleri1", "https://tec.openplanner.team/stops/Cmmplac2"], ["https://tec.openplanner.team/stops/Lch179-1", "https://tec.openplanner.team/stops/Lchsaec1"], ["https://tec.openplanner.team/stops/X718ajb", "https://tec.openplanner.team/stops/X733agb"], ["https://tec.openplanner.team/stops/H4to131a", "https://tec.openplanner.team/stops/H4to138b"], ["https://tec.openplanner.team/stops/Cchdelf2", "https://tec.openplanner.team/stops/CMwate1"], ["https://tec.openplanner.team/stops/X823aeb", "https://tec.openplanner.team/stops/X823afd"], ["https://tec.openplanner.team/stops/LHUcamp1", "https://tec.openplanner.team/stops/LHUsaul2"], ["https://tec.openplanner.team/stops/Blaneli2", "https://tec.openplanner.team/stops/Blanraa1"], ["https://tec.openplanner.team/stops/Cjxthom1", "https://tec.openplanner.team/stops/Cjxthom2"], ["https://tec.openplanner.team/stops/H4ka186a", "https://tec.openplanner.team/stops/H4ka187a"], ["https://tec.openplanner.team/stops/Blpgbat1", "https://tec.openplanner.team/stops/Blpgbat2"], ["https://tec.openplanner.team/stops/X901abb", "https://tec.openplanner.team/stops/X901bka"], ["https://tec.openplanner.team/stops/X804brb", "https://tec.openplanner.team/stops/X804bua"], ["https://tec.openplanner.team/stops/H4ne140a", "https://tec.openplanner.team/stops/H4ne145b"], ["https://tec.openplanner.team/stops/LeLsied1", "https://tec.openplanner.team/stops/LeLzost1"], ["https://tec.openplanner.team/stops/Lvcreve2", "https://tec.openplanner.team/stops/Lvcvand2"], ["https://tec.openplanner.team/stops/N301aob", "https://tec.openplanner.team/stops/N301asa"], ["https://tec.openplanner.team/stops/LWAathe1", "https://tec.openplanner.team/stops/LWAfabr1"], ["https://tec.openplanner.team/stops/X780ada", "https://tec.openplanner.team/stops/X780aea"], ["https://tec.openplanner.team/stops/Bbaubru2", "https://tec.openplanner.team/stops/Bnivpar1"], ["https://tec.openplanner.team/stops/X650aea", "https://tec.openplanner.team/stops/X650aga"], ["https://tec.openplanner.team/stops/LlAdorf1", "https://tec.openplanner.team/stops/LoDmuhl1"], ["https://tec.openplanner.team/stops/Cbmind1", "https://tec.openplanner.team/stops/Cbmzoni1"], ["https://tec.openplanner.team/stops/X630aaa", "https://tec.openplanner.team/stops/X630aab"], ["https://tec.openplanner.team/stops/Bbiesbi1", "https://tec.openplanner.team/stops/Bbiesbi2"], ["https://tec.openplanner.team/stops/N365aca", "https://tec.openplanner.team/stops/X344acb"], ["https://tec.openplanner.team/stops/H4vz370a", "https://tec.openplanner.team/stops/H4vz371a"], ["https://tec.openplanner.team/stops/H4do100a", "https://tec.openplanner.team/stops/H4do101b"], ["https://tec.openplanner.team/stops/Cjuathe2", "https://tec.openplanner.team/stops/CMchag1"], ["https://tec.openplanner.team/stops/Bwlhpmt3", "https://tec.openplanner.team/stops/Bwlhpmt4"], ["https://tec.openplanner.team/stops/N551ada", "https://tec.openplanner.team/stops/N551aeb"], ["https://tec.openplanner.team/stops/LBNhegg1", "https://tec.openplanner.team/stops/LWEgare1"], ["https://tec.openplanner.team/stops/N501hva", "https://tec.openplanner.team/stops/N501hvb"], ["https://tec.openplanner.team/stops/H1mk111a", "https://tec.openplanner.team/stops/H1mk114b"], ["https://tec.openplanner.team/stops/X734ada", "https://tec.openplanner.team/stops/X734agb"], ["https://tec.openplanner.team/stops/LSEcent2", "https://tec.openplanner.team/stops/LSEec--2"], ["https://tec.openplanner.team/stops/X615apb", "https://tec.openplanner.team/stops/X615bra"], ["https://tec.openplanner.team/stops/N501epd", "https://tec.openplanner.team/stops/N501kba"], ["https://tec.openplanner.team/stops/Louaout2", "https://tec.openplanner.team/stops/Loumatt1"], ["https://tec.openplanner.team/stops/Lsebove2", "https://tec.openplanner.team/stops/Lseconc1"], ["https://tec.openplanner.team/stops/N150akb", "https://tec.openplanner.team/stops/N168aaa"], ["https://tec.openplanner.team/stops/Cmaegal1", "https://tec.openplanner.team/stops/Cmoruau2"], ["https://tec.openplanner.team/stops/Cjugend4", "https://tec.openplanner.team/stops/Cjuvign2"], ["https://tec.openplanner.team/stops/Bvirbie4", "https://tec.openplanner.team/stops/Bvirhsa1"], ["https://tec.openplanner.team/stops/X661asa", "https://tec.openplanner.team/stops/X661asb"], ["https://tec.openplanner.team/stops/H5pe148a", "https://tec.openplanner.team/stops/H5pe148b"], ["https://tec.openplanner.team/stops/N522aba", "https://tec.openplanner.team/stops/N522abd"], ["https://tec.openplanner.team/stops/X952aca", "https://tec.openplanner.team/stops/X952ada"], ["https://tec.openplanner.team/stops/Lsevill1", "https://tec.openplanner.team/stops/Lsevill2"], ["https://tec.openplanner.team/stops/Cmmjami2", "https://tec.openplanner.team/stops/Cmmphai1"], ["https://tec.openplanner.team/stops/Clgrsoc1", "https://tec.openplanner.team/stops/Csscrot2"], ["https://tec.openplanner.team/stops/NC11ana", "https://tec.openplanner.team/stops/NC11anb"], ["https://tec.openplanner.team/stops/Lvelimi2", "https://tec.openplanner.team/stops/Lvevert4"], ["https://tec.openplanner.team/stops/LGlcite1", "https://tec.openplanner.team/stops/LGlcite2"], ["https://tec.openplanner.team/stops/X647aab", "https://tec.openplanner.team/stops/X648aaa"], ["https://tec.openplanner.team/stops/Buccplj1", "https://tec.openplanner.team/stops/Buccplj2"], ["https://tec.openplanner.team/stops/X542ada", "https://tec.openplanner.team/stops/X542agb"], ["https://tec.openplanner.team/stops/X750asb", "https://tec.openplanner.team/stops/X750aza"], ["https://tec.openplanner.team/stops/X601ana", "https://tec.openplanner.team/stops/X601aoa"], ["https://tec.openplanner.team/stops/Ctisart1", "https://tec.openplanner.team/stops/Ctisart2"], ["https://tec.openplanner.team/stops/H4ea132b", "https://tec.openplanner.team/stops/H4ea132c"], ["https://tec.openplanner.team/stops/N874amc", "https://tec.openplanner.team/stops/X874apb"], ["https://tec.openplanner.team/stops/LMNeg--1", "https://tec.openplanner.team/stops/LMNgend1"], ["https://tec.openplanner.team/stops/LOccarr2", "https://tec.openplanner.team/stops/LOccarr3"], ["https://tec.openplanner.team/stops/Cstdona1", "https://tec.openplanner.team/stops/Cstdona4"], ["https://tec.openplanner.team/stops/H1ne141b", "https://tec.openplanner.team/stops/H1ne147b"], ["https://tec.openplanner.team/stops/H1ht135a", "https://tec.openplanner.team/stops/H1ht135b"], ["https://tec.openplanner.team/stops/Cdaptca1", "https://tec.openplanner.team/stops/Cmlfstt1"], ["https://tec.openplanner.team/stops/LAYcher1", "https://tec.openplanner.team/stops/LAYgare1"], ["https://tec.openplanner.team/stops/LHSfexh2", "https://tec.openplanner.team/stops/LHSlava2"], ["https://tec.openplanner.team/stops/Lghcise2", "https://tec.openplanner.team/stops/Lmochan2"], ["https://tec.openplanner.team/stops/Cpiegli2", "https://tec.openplanner.team/stops/Cplcite2"], ["https://tec.openplanner.team/stops/Bbaucai1", "https://tec.openplanner.team/stops/Blilgar1"], ["https://tec.openplanner.team/stops/Brsggde1", "https://tec.openplanner.team/stops/Brsggea2"], ["https://tec.openplanner.team/stops/X659aoa", "https://tec.openplanner.team/stops/X741akb"], ["https://tec.openplanner.team/stops/X771adb", "https://tec.openplanner.team/stops/X771anb"], ["https://tec.openplanner.team/stops/H2lh128a", "https://tec.openplanner.team/stops/H2lh132b"], ["https://tec.openplanner.team/stops/X615afa", "https://tec.openplanner.team/stops/X681aca"], ["https://tec.openplanner.team/stops/Lhrthie1", "https://tec.openplanner.team/stops/Lhrthie2"], ["https://tec.openplanner.team/stops/Balsnie2", "https://tec.openplanner.team/stops/Balswsa1"], ["https://tec.openplanner.team/stops/LBglign1", "https://tec.openplanner.team/stops/Lthfren1"], ["https://tec.openplanner.team/stops/X634aba", "https://tec.openplanner.team/stops/X634aha"], ["https://tec.openplanner.team/stops/LSBrouf3", "https://tec.openplanner.team/stops/LSktinc1"], ["https://tec.openplanner.team/stops/X908ana", "https://tec.openplanner.team/stops/X908aoa"], ["https://tec.openplanner.team/stops/H4mv195a", "https://tec.openplanner.team/stops/H4va231a"], ["https://tec.openplanner.team/stops/LAWhein3", "https://tec.openplanner.team/stops/LAWhein4"], ["https://tec.openplanner.team/stops/X796adb", "https://tec.openplanner.team/stops/X986aga"], ["https://tec.openplanner.team/stops/H4ru239a", "https://tec.openplanner.team/stops/H4ru239b"], ["https://tec.openplanner.team/stops/Bbauham1", "https://tec.openplanner.team/stops/Bbauham2"], ["https://tec.openplanner.team/stops/LJEmalg2", "https://tec.openplanner.team/stops/LSkyern1"], ["https://tec.openplanner.team/stops/Btslhau1", "https://tec.openplanner.team/stops/Btslpbr1"], ["https://tec.openplanner.team/stops/Cfmltas2", "https://tec.openplanner.team/stops/Cptchea1"], ["https://tec.openplanner.team/stops/Brsgman1", "https://tec.openplanner.team/stops/Bwategp1"], ["https://tec.openplanner.team/stops/N531aca", "https://tec.openplanner.team/stops/N531ahb"], ["https://tec.openplanner.team/stops/X714adb", "https://tec.openplanner.team/stops/X714aeb"], ["https://tec.openplanner.team/stops/H1sb145b", "https://tec.openplanner.team/stops/H1sb148b"], ["https://tec.openplanner.team/stops/H1br124b", "https://tec.openplanner.team/stops/H1br126b"], ["https://tec.openplanner.team/stops/Bnivfro1", "https://tec.openplanner.team/stops/Bnivver1"], ["https://tec.openplanner.team/stops/H1hv136a", "https://tec.openplanner.team/stops/H1hv136b"], ["https://tec.openplanner.team/stops/X993aia", "https://tec.openplanner.team/stops/X993aib"], ["https://tec.openplanner.team/stops/H2hl113a", "https://tec.openplanner.team/stops/H2hl113b"], ["https://tec.openplanner.team/stops/Bbrlmez2", "https://tec.openplanner.team/stops/Bbrlvil2"], ["https://tec.openplanner.team/stops/X636anb", "https://tec.openplanner.team/stops/X636aob"], ["https://tec.openplanner.team/stops/X641awa", "https://tec.openplanner.team/stops/X641aya"], ["https://tec.openplanner.team/stops/Llgchat2", "https://tec.openplanner.team/stops/Ltibell1"], ["https://tec.openplanner.team/stops/H1ms294a", "https://tec.openplanner.team/stops/H1ms364a"], ["https://tec.openplanner.team/stops/N550ana", "https://tec.openplanner.team/stops/N550anb"], ["https://tec.openplanner.team/stops/N547alb", "https://tec.openplanner.team/stops/N547ald"], ["https://tec.openplanner.team/stops/H1sd342a", "https://tec.openplanner.team/stops/H1sd343a"], ["https://tec.openplanner.team/stops/Cpccoss1", "https://tec.openplanner.team/stops/Cpccpas2"], ["https://tec.openplanner.team/stops/Cwfcule1", "https://tec.openplanner.team/stops/Cwflouv4"], ["https://tec.openplanner.team/stops/H1pa111a", "https://tec.openplanner.team/stops/H1pa111b"], ["https://tec.openplanner.team/stops/Cnachat1", "https://tec.openplanner.team/stops/Cnacroc1"], ["https://tec.openplanner.team/stops/H1so136b", "https://tec.openplanner.team/stops/H1so136c"], ["https://tec.openplanner.team/stops/X643aab", "https://tec.openplanner.team/stops/X644aab"], ["https://tec.openplanner.team/stops/N228aca", "https://tec.openplanner.team/stops/N260ada"], ["https://tec.openplanner.team/stops/LBveg--2", "https://tec.openplanner.team/stops/LPUlecl1"], ["https://tec.openplanner.team/stops/N141ada", "https://tec.openplanner.team/stops/N141amc"], ["https://tec.openplanner.team/stops/Cfaamio4", "https://tec.openplanner.team/stops/Cfaysle2"], ["https://tec.openplanner.team/stops/Ccubric2", "https://tec.openplanner.team/stops/Ccupays2"], ["https://tec.openplanner.team/stops/Bnivbng1", "https://tec.openplanner.team/stops/Bnivbng2"], ["https://tec.openplanner.team/stops/N131aea", "https://tec.openplanner.team/stops/N131afa"], ["https://tec.openplanner.team/stops/LSBrouf2", "https://tec.openplanner.team/stops/LSBsere4"], ["https://tec.openplanner.team/stops/H5el112c", "https://tec.openplanner.team/stops/H5el112d"], ["https://tec.openplanner.team/stops/LBbbac-1", "https://tec.openplanner.team/stops/LBbhupp2"], ["https://tec.openplanner.team/stops/LlEzoll1", "https://tec.openplanner.team/stops/X793aqa"], ["https://tec.openplanner.team/stops/LFfeg--2", "https://tec.openplanner.team/stops/LPRmoul2"], ["https://tec.openplanner.team/stops/Cgzrust1", "https://tec.openplanner.team/stops/Cmyvesa2"], ["https://tec.openplanner.team/stops/H4pl115a", "https://tec.openplanner.team/stops/H4pl121b"], ["https://tec.openplanner.team/stops/H4hs136a", "https://tec.openplanner.team/stops/H4th141a"], ["https://tec.openplanner.team/stops/LwYbrkr1", "https://tec.openplanner.team/stops/LwYsour1"], ["https://tec.openplanner.team/stops/Cgzchen2", "https://tec.openplanner.team/stops/Cgzfarc1"], ["https://tec.openplanner.team/stops/LAnvien2", "https://tec.openplanner.team/stops/LCFmoul1"], ["https://tec.openplanner.team/stops/H2na134a", "https://tec.openplanner.team/stops/H2na135a"], ["https://tec.openplanner.team/stops/X637ama", "https://tec.openplanner.team/stops/X650aob"], ["https://tec.openplanner.team/stops/LbHzent2", "https://tec.openplanner.team/stops/LmS11--2"], ["https://tec.openplanner.team/stops/X780aba", "https://tec.openplanner.team/stops/X780acb"], ["https://tec.openplanner.team/stops/LENalun1", "https://tec.openplanner.team/stops/LENparc1"], ["https://tec.openplanner.team/stops/H1qu109b", "https://tec.openplanner.team/stops/H1qu114a"], ["https://tec.openplanner.team/stops/Brsgm302", "https://tec.openplanner.team/stops/Brsgman1"], ["https://tec.openplanner.team/stops/H2ha129c", "https://tec.openplanner.team/stops/H2ha129e"], ["https://tec.openplanner.team/stops/LTobilz1", "https://tec.openplanner.team/stops/LTotrui1"], ["https://tec.openplanner.team/stops/H4bw101a", "https://tec.openplanner.team/stops/H4co150b"], ["https://tec.openplanner.team/stops/N135aea", "https://tec.openplanner.team/stops/N135afb"], ["https://tec.openplanner.team/stops/LMNjard2", "https://tec.openplanner.team/stops/LPbpl--2"], ["https://tec.openplanner.team/stops/LmNkrew1", "https://tec.openplanner.team/stops/LmNlieb1"], ["https://tec.openplanner.team/stops/N509aea", "https://tec.openplanner.team/stops/N509aqb"], ["https://tec.openplanner.team/stops/N534bbb", "https://tec.openplanner.team/stops/N534bfa"], ["https://tec.openplanner.team/stops/Lcceclu1", "https://tec.openplanner.team/stops/Lcchala1"], ["https://tec.openplanner.team/stops/Bcrnegl1", "https://tec.openplanner.team/stops/Bcrnpla1"], ["https://tec.openplanner.team/stops/Lougros2", "https://tec.openplanner.team/stops/Lstscie2"], ["https://tec.openplanner.team/stops/H1qg138d", "https://tec.openplanner.team/stops/H1qy136a"], ["https://tec.openplanner.team/stops/Cmyvesa1", "https://tec.openplanner.team/stops/Cmyvesa3"], ["https://tec.openplanner.team/stops/LGEbern2", "https://tec.openplanner.team/stops/LGEpt--1"], ["https://tec.openplanner.team/stops/LlNhube1", "https://tec.openplanner.team/stops/LlNlimb1"], ["https://tec.openplanner.team/stops/X715ajb", "https://tec.openplanner.team/stops/X715aka"], ["https://tec.openplanner.team/stops/N209aka", "https://tec.openplanner.team/stops/N209ala"], ["https://tec.openplanner.team/stops/X902aab", "https://tec.openplanner.team/stops/X902apa"], ["https://tec.openplanner.team/stops/Cmaegli1", "https://tec.openplanner.team/stops/Cmastch2"], ["https://tec.openplanner.team/stops/LkEfrie1", "https://tec.openplanner.team/stops/LkEfrie2"], ["https://tec.openplanner.team/stops/X651aba", "https://tec.openplanner.team/stops/X651aeb"], ["https://tec.openplanner.team/stops/Lveveou1", "https://tec.openplanner.team/stops/Lveveou2"], ["https://tec.openplanner.team/stops/H2ha128b", "https://tec.openplanner.team/stops/H2hg146b"], ["https://tec.openplanner.team/stops/X805ahb", "https://tec.openplanner.team/stops/X869aaa"], ["https://tec.openplanner.team/stops/Cgrchas2", "https://tec.openplanner.team/stops/Cgrflac2"], ["https://tec.openplanner.team/stops/LsVgend2", "https://tec.openplanner.team/stops/LsVmolk2"], ["https://tec.openplanner.team/stops/H1qv110b", "https://tec.openplanner.team/stops/H1qv112a"], ["https://tec.openplanner.team/stops/Bgemga07", "https://tec.openplanner.team/stops/N522bvg"], ["https://tec.openplanner.team/stops/N501eta", "https://tec.openplanner.team/stops/N501etc"], ["https://tec.openplanner.team/stops/N351afa", "https://tec.openplanner.team/stops/N351axa"], ["https://tec.openplanner.team/stops/LBLghuy3", "https://tec.openplanner.team/stops/LBLgobc2"], ["https://tec.openplanner.team/stops/Cchblne1", "https://tec.openplanner.team/stops/Cchjaur2"], ["https://tec.openplanner.team/stops/Cfmwaut1", "https://tec.openplanner.team/stops/Cfmwaut2"], ["https://tec.openplanner.team/stops/H2mo127d", "https://tec.openplanner.team/stops/H2mo130b"], ["https://tec.openplanner.team/stops/Csychap4", "https://tec.openplanner.team/stops/Csystan2"], ["https://tec.openplanner.team/stops/N229ama", "https://tec.openplanner.team/stops/N229amb"], ["https://tec.openplanner.team/stops/H1em110a", "https://tec.openplanner.team/stops/H1hl128a"], ["https://tec.openplanner.team/stops/N519aja", "https://tec.openplanner.team/stops/N519alb"], ["https://tec.openplanner.team/stops/Cauptsa1", "https://tec.openplanner.team/stops/N530aca"], ["https://tec.openplanner.team/stops/X633ama", "https://tec.openplanner.team/stops/X633amb"], ["https://tec.openplanner.team/stops/Brsregl2", "https://tec.openplanner.team/stops/Bwavtrt2"], ["https://tec.openplanner.team/stops/H4mv197a", "https://tec.openplanner.team/stops/H4mv197b"], ["https://tec.openplanner.team/stops/Cmgbras2", "https://tec.openplanner.team/stops/Cmgvpa"], ["https://tec.openplanner.team/stops/N230aaa", "https://tec.openplanner.team/stops/N230aab"], ["https://tec.openplanner.team/stops/X729abb", "https://tec.openplanner.team/stops/X729ada"], ["https://tec.openplanner.team/stops/Lghmont2", "https://tec.openplanner.team/stops/Lmochan2"], ["https://tec.openplanner.team/stops/H1qu103a", "https://tec.openplanner.team/stops/H1qu116c"], ["https://tec.openplanner.team/stops/Lagjado6", "https://tec.openplanner.team/stops/Lagpaix2"], ["https://tec.openplanner.team/stops/X601dbb", "https://tec.openplanner.team/stops/X626aka"], ["https://tec.openplanner.team/stops/N206aaa", "https://tec.openplanner.team/stops/X206aza"], ["https://tec.openplanner.team/stops/X892aia", "https://tec.openplanner.team/stops/X892ajb"], ["https://tec.openplanner.team/stops/X637aaa", "https://tec.openplanner.team/stops/X649aca"], ["https://tec.openplanner.team/stops/Ljubord2", "https://tec.openplanner.team/stops/Ljubruy*"], ["https://tec.openplanner.team/stops/LCPaywa2", "https://tec.openplanner.team/stops/LSpbawe1"], ["https://tec.openplanner.team/stops/Bmsaegl1", "https://tec.openplanner.team/stops/NB33ahb"], ["https://tec.openplanner.team/stops/Lhrchar1", "https://tec.openplanner.team/stops/Lhrchar2"], ["https://tec.openplanner.team/stops/Bpermon4", "https://tec.openplanner.team/stops/N524ajb"], ["https://tec.openplanner.team/stops/N425aab", "https://tec.openplanner.team/stops/N425ahb"], ["https://tec.openplanner.team/stops/H4mv193a", "https://tec.openplanner.team/stops/H4mv193b"], ["https://tec.openplanner.team/stops/N230aea", "https://tec.openplanner.team/stops/N230aeb"], ["https://tec.openplanner.team/stops/N506akb", "https://tec.openplanner.team/stops/N506bxa"], ["https://tec.openplanner.team/stops/H5at114a", "https://tec.openplanner.team/stops/H5at132b"], ["https://tec.openplanner.team/stops/LJOchar1", "https://tec.openplanner.team/stops/LMEwerg1"], ["https://tec.openplanner.team/stops/Bptbmco2", "https://tec.openplanner.team/stops/Brxmcha2"], ["https://tec.openplanner.team/stops/H1mq199a", "https://tec.openplanner.team/stops/H5ar127b"], ["https://tec.openplanner.team/stops/LPAeg--1", "https://tec.openplanner.team/stops/LPAvill1"], ["https://tec.openplanner.team/stops/LTIdamr1", "https://tec.openplanner.team/stops/LTIecma2"], ["https://tec.openplanner.team/stops/LKmmelo2", "https://tec.openplanner.team/stops/LMObouh1"], ["https://tec.openplanner.team/stops/Cgylami2", "https://tec.openplanner.team/stops/Cgynoir2"], ["https://tec.openplanner.team/stops/X561ada", "https://tec.openplanner.team/stops/X561adb"], ["https://tec.openplanner.team/stops/LhRandl1", "https://tec.openplanner.team/stops/LhRandl2"], ["https://tec.openplanner.team/stops/LrAkape1", "https://tec.openplanner.team/stops/LrAputz1"], ["https://tec.openplanner.team/stops/H3bi100a", "https://tec.openplanner.team/stops/H3bi112a"], ["https://tec.openplanner.team/stops/LJU51--2", "https://tec.openplanner.team/stops/LJUmate2"], ["https://tec.openplanner.team/stops/X823aca", "https://tec.openplanner.team/stops/X823ada"], ["https://tec.openplanner.team/stops/Cmaduna1", "https://tec.openplanner.team/stops/Cmmramb2"], ["https://tec.openplanner.team/stops/H2mo122c", "https://tec.openplanner.team/stops/H2mo126a"], ["https://tec.openplanner.team/stops/H2ch110a", "https://tec.openplanner.team/stops/H2ch112a"], ["https://tec.openplanner.team/stops/Bbgncnd1", "https://tec.openplanner.team/stops/Bsomtpm1"], ["https://tec.openplanner.team/stops/X947abc", "https://tec.openplanner.team/stops/X947acb"], ["https://tec.openplanner.team/stops/X542aab", "https://tec.openplanner.team/stops/X542aba"], ["https://tec.openplanner.team/stops/H1mm127a", "https://tec.openplanner.team/stops/H1pe131a"], ["https://tec.openplanner.team/stops/H2mg153a", "https://tec.openplanner.team/stops/H2se115a"], ["https://tec.openplanner.team/stops/N506bta", "https://tec.openplanner.team/stops/N506btb"], ["https://tec.openplanner.team/stops/N874aaa", "https://tec.openplanner.team/stops/N894aca"], ["https://tec.openplanner.team/stops/X612ada", "https://tec.openplanner.team/stops/X623afa"], ["https://tec.openplanner.team/stops/LFmroye2", "https://tec.openplanner.team/stops/LMObouh2"], ["https://tec.openplanner.team/stops/Bhoeboo1", "https://tec.openplanner.team/stops/Blhuibm1"], ["https://tec.openplanner.team/stops/N385adb", "https://tec.openplanner.team/stops/N385aeb"], ["https://tec.openplanner.team/stops/Llgpiet2", "https://tec.openplanner.team/stops/Llgthie2"], ["https://tec.openplanner.team/stops/LCeanne1", "https://tec.openplanner.team/stops/LGAnovi1"], ["https://tec.openplanner.team/stops/N245aaa", "https://tec.openplanner.team/stops/N248adb"], ["https://tec.openplanner.team/stops/X619aib", "https://tec.openplanner.team/stops/X619aka"], ["https://tec.openplanner.team/stops/LBOec--2", "https://tec.openplanner.team/stops/LBWfusi1"], ["https://tec.openplanner.team/stops/Buccham2", "https://tec.openplanner.team/stops/Buccvoi2"], ["https://tec.openplanner.team/stops/LJAbois1", "https://tec.openplanner.team/stops/Ljhjeha*"], ["https://tec.openplanner.team/stops/H1ms251a", "https://tec.openplanner.team/stops/H1ms913a"], ["https://tec.openplanner.team/stops/N501dfa", "https://tec.openplanner.team/stops/N501mxa"], ["https://tec.openplanner.team/stops/Bcseaba1", "https://tec.openplanner.team/stops/Bottpar1"], ["https://tec.openplanner.team/stops/N516alb", "https://tec.openplanner.team/stops/N516apa"], ["https://tec.openplanner.team/stops/Canlalu2", "https://tec.openplanner.team/stops/H2an110b"], ["https://tec.openplanner.team/stops/LTheg--1", "https://tec.openplanner.team/stops/LThgare1"], ["https://tec.openplanner.team/stops/Bmrlhan2", "https://tec.openplanner.team/stops/Bmrlhau2"], ["https://tec.openplanner.team/stops/Lflheid1", "https://tec.openplanner.team/stops/Lqbeg--2"], ["https://tec.openplanner.team/stops/N584aua", "https://tec.openplanner.team/stops/N584bpa"], ["https://tec.openplanner.team/stops/Llgamer3", "https://tec.openplanner.team/stops/Llglair1"], ["https://tec.openplanner.team/stops/X738aea", "https://tec.openplanner.team/stops/X738aeb"], ["https://tec.openplanner.team/stops/Ccychba1", "https://tec.openplanner.team/stops/Ccychba2"], ["https://tec.openplanner.team/stops/N512ala", "https://tec.openplanner.team/stops/N512awb"], ["https://tec.openplanner.team/stops/N212aha", "https://tec.openplanner.team/stops/N212ajb"], ["https://tec.openplanner.team/stops/N343ala", "https://tec.openplanner.team/stops/N343ana"], ["https://tec.openplanner.team/stops/Ccicent1", "https://tec.openplanner.team/stops/Ccicent2"], ["https://tec.openplanner.team/stops/Cfcpla1", "https://tec.openplanner.team/stops/Cfcplac3"], ["https://tec.openplanner.team/stops/N229aaa", "https://tec.openplanner.team/stops/N291aba"], ["https://tec.openplanner.team/stops/Bwspmon1", "https://tec.openplanner.team/stops/Bwsppos2"], ["https://tec.openplanner.team/stops/Bsampli2", "https://tec.openplanner.team/stops/N584bbb"], ["https://tec.openplanner.team/stops/Lgrcour1", "https://tec.openplanner.team/stops/Lgrcour2"], ["https://tec.openplanner.team/stops/Lanclon1", "https://tec.openplanner.team/stops/Llgchau1"], ["https://tec.openplanner.team/stops/H5is170a", "https://tec.openplanner.team/stops/H5is170b"], ["https://tec.openplanner.team/stops/H1cu125c", "https://tec.openplanner.team/stops/H1cu131a"], ["https://tec.openplanner.team/stops/Cstdona2", "https://tec.openplanner.team/stops/Cstdona4"], ["https://tec.openplanner.team/stops/Lbrlama1", "https://tec.openplanner.team/stops/Lbrlama2"], ["https://tec.openplanner.team/stops/N577ada", "https://tec.openplanner.team/stops/N577aja"], ["https://tec.openplanner.team/stops/LTPcamp1", "https://tec.openplanner.team/stops/LTPhenr2"], ["https://tec.openplanner.team/stops/LBmbara1", "https://tec.openplanner.team/stops/LMTfagn1"], ["https://tec.openplanner.team/stops/X757aab", "https://tec.openplanner.team/stops/X758aga"], ["https://tec.openplanner.team/stops/H4ep126b", "https://tec.openplanner.team/stops/H4ep131a"], ["https://tec.openplanner.team/stops/LbUmurr1", "https://tec.openplanner.team/stops/LmUvilz2"], ["https://tec.openplanner.team/stops/X607aga", "https://tec.openplanner.team/stops/X607aja"], ["https://tec.openplanner.team/stops/N368ada", "https://tec.openplanner.team/stops/N368aeb"], ["https://tec.openplanner.team/stops/H5at108b", "https://tec.openplanner.team/stops/H5at119a"], ["https://tec.openplanner.team/stops/H4ta131b", "https://tec.openplanner.team/stops/H4ta132a"], ["https://tec.openplanner.team/stops/LSZptwa1", "https://tec.openplanner.team/stops/LWycabi1"], ["https://tec.openplanner.team/stops/H1nv324b", "https://tec.openplanner.team/stops/H1sp355a"], ["https://tec.openplanner.team/stops/Cmecite1", "https://tec.openplanner.team/stops/Cvpcour1"], ["https://tec.openplanner.team/stops/LbUkrin1", "https://tec.openplanner.team/stops/LbUmurr1"], ["https://tec.openplanner.team/stops/X640aab", "https://tec.openplanner.team/stops/X673aeb"], ["https://tec.openplanner.team/stops/N501kea", "https://tec.openplanner.team/stops/N501kmb"], ["https://tec.openplanner.team/stops/Cctchea1", "https://tec.openplanner.team/stops/NC11aib"], ["https://tec.openplanner.team/stops/LRtcarr1", "https://tec.openplanner.team/stops/LSebott2"], ["https://tec.openplanner.team/stops/LScgore1", "https://tec.openplanner.team/stops/LScread2"], ["https://tec.openplanner.team/stops/Lagmair1", "https://tec.openplanner.team/stops/Lagmair4"], ["https://tec.openplanner.team/stops/X718aia", "https://tec.openplanner.team/stops/X718aja"], ["https://tec.openplanner.team/stops/N236afa", "https://tec.openplanner.team/stops/N254aab"], ["https://tec.openplanner.team/stops/H1he104a", "https://tec.openplanner.team/stops/H1he106b"], ["https://tec.openplanner.team/stops/X904aba", "https://tec.openplanner.team/stops/X904adb"], ["https://tec.openplanner.team/stops/Cmggthi1", "https://tec.openplanner.team/stops/Cmggthi2"], ["https://tec.openplanner.team/stops/Llggee52", "https://tec.openplanner.team/stops/Llgtir-2"], ["https://tec.openplanner.team/stops/LFAwale1", "https://tec.openplanner.team/stops/LLTther2"], ["https://tec.openplanner.team/stops/LAxchpl1", "https://tec.openplanner.team/stops/LAxchpl2"], ["https://tec.openplanner.team/stops/N501kva", "https://tec.openplanner.team/stops/N501kvb"], ["https://tec.openplanner.team/stops/X633amb", "https://tec.openplanner.team/stops/X634aaa"], ["https://tec.openplanner.team/stops/Lmnjeha2", "https://tec.openplanner.team/stops/Lmnsech2"], ["https://tec.openplanner.team/stops/X983aaa", "https://tec.openplanner.team/stops/X983aba"], ["https://tec.openplanner.team/stops/Livgera1", "https://tec.openplanner.team/stops/Livgera3"], ["https://tec.openplanner.team/stops/N351aub", "https://tec.openplanner.team/stops/N351ava"], ["https://tec.openplanner.team/stops/N503akb", "https://tec.openplanner.team/stops/N580afb"], ["https://tec.openplanner.team/stops/LRRbonr1", "https://tec.openplanner.team/stops/LRRcarr1"], ["https://tec.openplanner.team/stops/LsVbs--*", "https://tec.openplanner.team/stops/LsVlind*"], ["https://tec.openplanner.team/stops/H1vg359a", "https://tec.openplanner.team/stops/H1vg359b"], ["https://tec.openplanner.team/stops/Cctvche1", "https://tec.openplanner.team/stops/Cctvche2"], ["https://tec.openplanner.team/stops/Lgrdefr2", "https://tec.openplanner.team/stops/Lgrspir1"], ["https://tec.openplanner.team/stops/LOltill1", "https://tec.openplanner.team/stops/LOmpont2"], ["https://tec.openplanner.team/stops/LVLf37-1", "https://tec.openplanner.team/stops/LVLsabl2"], ["https://tec.openplanner.team/stops/Lsecoop1", "https://tec.openplanner.team/stops/Lsehtsa1"], ["https://tec.openplanner.team/stops/LRMeg--1", "https://tec.openplanner.team/stops/X595afb"], ["https://tec.openplanner.team/stops/Cmmgadi1", "https://tec.openplanner.team/stops/Cmyrens2"], ["https://tec.openplanner.team/stops/H4lu128a", "https://tec.openplanner.team/stops/H4mo195a"], ["https://tec.openplanner.team/stops/LrAalte2", "https://tec.openplanner.team/stops/LrAneue1"], ["https://tec.openplanner.team/stops/NC23aab", "https://tec.openplanner.team/stops/NC23abb"], ["https://tec.openplanner.team/stops/X898afa", "https://tec.openplanner.team/stops/X898amb"], ["https://tec.openplanner.team/stops/LVNroua2", "https://tec.openplanner.team/stops/LWDsott1"], ["https://tec.openplanner.team/stops/N531ada", "https://tec.openplanner.team/stops/N531aeb"], ["https://tec.openplanner.team/stops/LPAbour2", "https://tec.openplanner.team/stops/LWipaif3"], ["https://tec.openplanner.team/stops/X601ada", "https://tec.openplanner.team/stops/X601adb"], ["https://tec.openplanner.team/stops/Ccpetan1", "https://tec.openplanner.team/stops/Ccpsecp1"], ["https://tec.openplanner.team/stops/LATcham*", "https://tec.openplanner.team/stops/LATguis2"], ["https://tec.openplanner.team/stops/X346abb", "https://tec.openplanner.team/stops/X346afb"], ["https://tec.openplanner.team/stops/LElgerd3", "https://tec.openplanner.team/stops/LTaabba2"], ["https://tec.openplanner.team/stops/LHUresi3", "https://tec.openplanner.team/stops/LHUsaul1"], ["https://tec.openplanner.team/stops/N202aca", "https://tec.openplanner.team/stops/N202acb"], ["https://tec.openplanner.team/stops/N201agb", "https://tec.openplanner.team/stops/N201aua"], ["https://tec.openplanner.team/stops/H4ty314a", "https://tec.openplanner.team/stops/H4ty314c"], ["https://tec.openplanner.team/stops/LAibego2", "https://tec.openplanner.team/stops/LAipala2"], ["https://tec.openplanner.team/stops/X601aya", "https://tec.openplanner.team/stops/X601baa"], ["https://tec.openplanner.team/stops/X948ahb", "https://tec.openplanner.team/stops/X948asb"], ["https://tec.openplanner.team/stops/N558aea", "https://tec.openplanner.team/stops/N558amd"], ["https://tec.openplanner.team/stops/Bnivbau1", "https://tec.openplanner.team/stops/Bnivspi1"], ["https://tec.openplanner.team/stops/X902aga", "https://tec.openplanner.team/stops/X902aka"], ["https://tec.openplanner.team/stops/LBRtrag2", "https://tec.openplanner.team/stops/LLTcent1"], ["https://tec.openplanner.team/stops/Bsengma1", "https://tec.openplanner.team/stops/Bsengma2"], ["https://tec.openplanner.team/stops/H2re163b", "https://tec.openplanner.team/stops/H2re165b"], ["https://tec.openplanner.team/stops/H4bo110a", "https://tec.openplanner.team/stops/H4bo110b"], ["https://tec.openplanner.team/stops/Cjucpui2", "https://tec.openplanner.team/stops/Cjupuis2"], ["https://tec.openplanner.team/stops/Blhumpo4", "https://tec.openplanner.team/stops/Blhutco1"], ["https://tec.openplanner.team/stops/Lsmdepo2", "https://tec.openplanner.team/stops/Lsmeg--1"], ["https://tec.openplanner.team/stops/H1ev112a", "https://tec.openplanner.team/stops/H1ev116a"], ["https://tec.openplanner.team/stops/X982ara", "https://tec.openplanner.team/stops/X982bva"], ["https://tec.openplanner.team/stops/Bsrgegl1", "https://tec.openplanner.team/stops/Bsrgm101"], ["https://tec.openplanner.team/stops/N535afb", "https://tec.openplanner.team/stops/N535aub"], ["https://tec.openplanner.team/stops/Lveecol2", "https://tec.openplanner.team/stops/Lvemull2"], ["https://tec.openplanner.team/stops/Ccobour2", "https://tec.openplanner.team/stops/Csograf4"], ["https://tec.openplanner.team/stops/Lveanto1", "https://tec.openplanner.team/stops/Lvehodi1"], ["https://tec.openplanner.team/stops/Bvilcha2", "https://tec.openplanner.team/stops/Bvilvil2"], ["https://tec.openplanner.team/stops/LAivill2", "https://tec.openplanner.team/stops/LENarde1"], ["https://tec.openplanner.team/stops/N232aza", "https://tec.openplanner.team/stops/N232bab"], ["https://tec.openplanner.team/stops/Ccucora2", "https://tec.openplanner.team/stops/Ccucorb2"], ["https://tec.openplanner.team/stops/Ccypn1", "https://tec.openplanner.team/stops/NH01aeb"], ["https://tec.openplanner.team/stops/Baudhde1", "https://tec.openplanner.team/stops/Baudhde2"], ["https://tec.openplanner.team/stops/N513atb", "https://tec.openplanner.team/stops/N513aub"], ["https://tec.openplanner.team/stops/N507aib", "https://tec.openplanner.team/stops/N507aic"], ["https://tec.openplanner.team/stops/LBHinva1", "https://tec.openplanner.team/stops/LMeperk1"], ["https://tec.openplanner.team/stops/LLevaux1", "https://tec.openplanner.team/stops/X547adb"], ["https://tec.openplanner.team/stops/LBXhacb2", "https://tec.openplanner.team/stops/LHEjose2"], ["https://tec.openplanner.team/stops/LMnlogi1", "https://tec.openplanner.team/stops/N223aab"], ["https://tec.openplanner.team/stops/LOrchau2", "https://tec.openplanner.team/stops/LTychev1"], ["https://tec.openplanner.team/stops/Bmelenf2", "https://tec.openplanner.team/stops/Bmelsab1"], ["https://tec.openplanner.team/stops/X996adb", "https://tec.openplanner.team/stops/X996aga"], ["https://tec.openplanner.team/stops/LSPpelz1", "https://tec.openplanner.team/stops/LSPpelz2"], ["https://tec.openplanner.team/stops/Lcavign2", "https://tec.openplanner.team/stops/Lvcbasi*"], ["https://tec.openplanner.team/stops/N244aka", "https://tec.openplanner.team/stops/N244alb"], ["https://tec.openplanner.team/stops/H1ni320a", "https://tec.openplanner.team/stops/H1ni321b"], ["https://tec.openplanner.team/stops/Bjodrga1", "https://tec.openplanner.team/stops/Bjodrga2"], ["https://tec.openplanner.team/stops/NL76agb", "https://tec.openplanner.team/stops/NL76agd"], ["https://tec.openplanner.team/stops/N338aea", "https://tec.openplanner.team/stops/N368afb"], ["https://tec.openplanner.team/stops/H4lg100a", "https://tec.openplanner.team/stops/H4lg101a"], ["https://tec.openplanner.team/stops/Cplrymo2", "https://tec.openplanner.team/stops/Cplstfa1"], ["https://tec.openplanner.team/stops/X639asa", "https://tec.openplanner.team/stops/X652aha"], ["https://tec.openplanner.team/stops/LSlpays2", "https://tec.openplanner.team/stops/X919aoa"], ["https://tec.openplanner.team/stops/H2ll191b", "https://tec.openplanner.team/stops/H2ll193b"], ["https://tec.openplanner.team/stops/Brsgsan1", "https://tec.openplanner.team/stops/Buccron1"], ["https://tec.openplanner.team/stops/H2fy119a", "https://tec.openplanner.team/stops/H2fy120d"], ["https://tec.openplanner.team/stops/H1sg145b", "https://tec.openplanner.team/stops/H1sg147a"], ["https://tec.openplanner.team/stops/Cnachcu2", "https://tec.openplanner.team/stops/Cnagrro2"], ["https://tec.openplanner.team/stops/LLrhest1", "https://tec.openplanner.team/stops/LLrhest2"], ["https://tec.openplanner.team/stops/X721afa", "https://tec.openplanner.team/stops/X721agb"], ["https://tec.openplanner.team/stops/H5el107b", "https://tec.openplanner.team/stops/H5el112c"], ["https://tec.openplanner.team/stops/X636aka", "https://tec.openplanner.team/stops/X636bca"], ["https://tec.openplanner.team/stops/X983ada", "https://tec.openplanner.team/stops/X983aga"], ["https://tec.openplanner.team/stops/Lbhbalt2", "https://tec.openplanner.team/stops/Lbhpeti1"], ["https://tec.openplanner.team/stops/H1ro139a", "https://tec.openplanner.team/stops/H1ro139b"], ["https://tec.openplanner.team/stops/Bnivvai2", "https://tec.openplanner.team/stops/Bnivvco2"], ["https://tec.openplanner.team/stops/LAUnico1", "https://tec.openplanner.team/stops/LAUtism2"], ["https://tec.openplanner.team/stops/Bwspcar1", "https://tec.openplanner.team/stops/Bwsppos1"], ["https://tec.openplanner.team/stops/Beclesp2", "https://tec.openplanner.team/stops/H2ec104b"], ["https://tec.openplanner.team/stops/Llgmare6", "https://tec.openplanner.team/stops/Llgpoli2"], ["https://tec.openplanner.team/stops/N558anb", "https://tec.openplanner.team/stops/NL67aba"], ["https://tec.openplanner.team/stops/LBjpech1", "https://tec.openplanner.team/stops/LLelans1"], ["https://tec.openplanner.team/stops/H4fr388a", "https://tec.openplanner.team/stops/H4fr389a"], ["https://tec.openplanner.team/stops/H5gr138a", "https://tec.openplanner.team/stops/H5gr138b"], ["https://tec.openplanner.team/stops/Buccbou2", "https://tec.openplanner.team/stops/Bucccal3"], ["https://tec.openplanner.team/stops/LrDneun2", "https://tec.openplanner.team/stops/LrDzoll4"], ["https://tec.openplanner.team/stops/X858afa", "https://tec.openplanner.team/stops/X858afb"], ["https://tec.openplanner.team/stops/LwR129-1", "https://tec.openplanner.team/stops/LwR129-2"], ["https://tec.openplanner.team/stops/Llocime2", "https://tec.openplanner.team/stops/Llofort2"], ["https://tec.openplanner.team/stops/X354abb", "https://tec.openplanner.team/stops/X354aha"], ["https://tec.openplanner.team/stops/Bboseco1", "https://tec.openplanner.team/stops/Btiegma1"], ["https://tec.openplanner.team/stops/LCpegli1", "https://tec.openplanner.team/stops/LSPherd1"], ["https://tec.openplanner.team/stops/N569abb", "https://tec.openplanner.team/stops/N569acb"], ["https://tec.openplanner.team/stops/Blincal1", "https://tec.openplanner.team/stops/Bpelegl3"], ["https://tec.openplanner.team/stops/Berneco2", "https://tec.openplanner.team/stops/Bgemrom4"], ["https://tec.openplanner.team/stops/X662aga", "https://tec.openplanner.team/stops/X662agb"], ["https://tec.openplanner.team/stops/H4mb202b", "https://tec.openplanner.team/stops/H4vd230b"], ["https://tec.openplanner.team/stops/N543bba", "https://tec.openplanner.team/stops/N543bbc"], ["https://tec.openplanner.team/stops/X941afb", "https://tec.openplanner.team/stops/X941aga"], ["https://tec.openplanner.team/stops/Beclbar2", "https://tec.openplanner.team/stops/Becltri2"], ["https://tec.openplanner.team/stops/X982aub", "https://tec.openplanner.team/stops/X982axa"], ["https://tec.openplanner.team/stops/H4hq133b", "https://tec.openplanner.team/stops/H4hq133c"], ["https://tec.openplanner.team/stops/N543bda", "https://tec.openplanner.team/stops/N543bdb"], ["https://tec.openplanner.team/stops/Llgancd2", "https://tec.openplanner.team/stops/LlgguilE"], ["https://tec.openplanner.team/stops/LHUpsar2", "https://tec.openplanner.team/stops/LHUsauv1"], ["https://tec.openplanner.team/stops/Cmypast1", "https://tec.openplanner.team/stops/Cmyquen2"], ["https://tec.openplanner.team/stops/H4bo115b", "https://tec.openplanner.team/stops/H4bo117b"], ["https://tec.openplanner.team/stops/H1mv241a", "https://tec.openplanner.team/stops/H1sp355a"], ["https://tec.openplanner.team/stops/X824aeb", "https://tec.openplanner.team/stops/X824aec"], ["https://tec.openplanner.team/stops/X601bya", "https://tec.openplanner.team/stops/X601cna"], ["https://tec.openplanner.team/stops/LSypesy1", "https://tec.openplanner.team/stops/LWZbeem2"], ["https://tec.openplanner.team/stops/Llgcour3", "https://tec.openplanner.team/stops/Llgtcha1"], ["https://tec.openplanner.team/stops/LaMthei1", "https://tec.openplanner.team/stops/LeIkreu3"], ["https://tec.openplanner.team/stops/Bgoegma2", "https://tec.openplanner.team/stops/Bgoestu1"], ["https://tec.openplanner.team/stops/H5fl101a", "https://tec.openplanner.team/stops/H5fl104a"], ["https://tec.openplanner.team/stops/H2ep145a", "https://tec.openplanner.team/stops/H2re168b"], ["https://tec.openplanner.team/stops/X602aia", "https://tec.openplanner.team/stops/X653abb"], ["https://tec.openplanner.team/stops/Bcbqpon2", "https://tec.openplanner.team/stops/Bcbqufo2"], ["https://tec.openplanner.team/stops/X654aia", "https://tec.openplanner.team/stops/X667aeb"], ["https://tec.openplanner.team/stops/N204aaa", "https://tec.openplanner.team/stops/N208aaa"], ["https://tec.openplanner.team/stops/N505aga", "https://tec.openplanner.team/stops/N537aib"], ["https://tec.openplanner.team/stops/Bsjgegl1", "https://tec.openplanner.team/stops/Bzluvil1"], ["https://tec.openplanner.team/stops/N501aib", "https://tec.openplanner.team/stops/N501bka"], ["https://tec.openplanner.team/stops/Bbosdra2", "https://tec.openplanner.team/stops/Btiegar1"], ["https://tec.openplanner.team/stops/LHEzoni1", "https://tec.openplanner.team/stops/LJOferm2"], ["https://tec.openplanner.team/stops/N111aab", "https://tec.openplanner.team/stops/N111aba"], ["https://tec.openplanner.team/stops/Lghpier1", "https://tec.openplanner.team/stops/Lghpier2"], ["https://tec.openplanner.team/stops/X850abb", "https://tec.openplanner.team/stops/X858aba"], ["https://tec.openplanner.team/stops/Bpelegl3", "https://tec.openplanner.team/stops/Bpelegl4"], ["https://tec.openplanner.team/stops/LLebibl3", "https://tec.openplanner.team/stops/X547afb"], ["https://tec.openplanner.team/stops/NL74aad", "https://tec.openplanner.team/stops/NL74aja"], ["https://tec.openplanner.team/stops/X911adb", "https://tec.openplanner.team/stops/X911asb"], ["https://tec.openplanner.team/stops/Candett2", "https://tec.openplanner.team/stops/Canvane1"], ["https://tec.openplanner.team/stops/N505aib", "https://tec.openplanner.team/stops/N505aka"], ["https://tec.openplanner.team/stops/Bmanfbg2", "https://tec.openplanner.team/stops/H2mg137a"], ["https://tec.openplanner.team/stops/Bwaunce1", "https://tec.openplanner.team/stops/Bwaunop2"], ["https://tec.openplanner.team/stops/Cragoss2", "https://tec.openplanner.team/stops/Cravign3"], ["https://tec.openplanner.team/stops/X717aca", "https://tec.openplanner.team/stops/X717acb"], ["https://tec.openplanner.team/stops/N151aba", "https://tec.openplanner.team/stops/N152aaf"], ["https://tec.openplanner.team/stops/H1ls106a", "https://tec.openplanner.team/stops/H1ls106b"], ["https://tec.openplanner.team/stops/Bbchcab2", "https://tec.openplanner.team/stops/Bbchrra3"], ["https://tec.openplanner.team/stops/Lrolecl2", "https://tec.openplanner.team/stops/Lrovand1"], ["https://tec.openplanner.team/stops/N217acb", "https://tec.openplanner.team/stops/N217acd"], ["https://tec.openplanner.team/stops/Llgverg1", "https://tec.openplanner.team/stops/Lrcstad1"], ["https://tec.openplanner.team/stops/X759aaa", "https://tec.openplanner.team/stops/X886abb"], ["https://tec.openplanner.team/stops/H4ir162b", "https://tec.openplanner.team/stops/H5at135a"], ["https://tec.openplanner.team/stops/Bwategb1", "https://tec.openplanner.team/stops/Bwatppa2"], ["https://tec.openplanner.team/stops/X734and", "https://tec.openplanner.team/stops/X775aaa"], ["https://tec.openplanner.team/stops/Cfabaty1", "https://tec.openplanner.team/stops/Cfabaty2"], ["https://tec.openplanner.team/stops/Cmtplac4", "https://tec.openplanner.team/stops/Cmtplac5"], ["https://tec.openplanner.team/stops/H2ch107b", "https://tec.openplanner.team/stops/H2mo133a"], ["https://tec.openplanner.team/stops/Cgpmoul2", "https://tec.openplanner.team/stops/Cobobjo1"], ["https://tec.openplanner.team/stops/H4mo155a", "https://tec.openplanner.team/stops/H4mo170a"], ["https://tec.openplanner.team/stops/X993aea", "https://tec.openplanner.team/stops/X993aeb"], ["https://tec.openplanner.team/stops/LDmdomm2", "https://tec.openplanner.team/stops/LDmwarf1"], ["https://tec.openplanner.team/stops/N533afb", "https://tec.openplanner.team/stops/N533aib"], ["https://tec.openplanner.team/stops/Llgtill1", "https://tec.openplanner.team/stops/Llgtill2"], ["https://tec.openplanner.team/stops/LRRchea2", "https://tec.openplanner.team/stops/LRRchea3"], ["https://tec.openplanner.team/stops/N501hna", "https://tec.openplanner.team/stops/N501ivb"], ["https://tec.openplanner.team/stops/LWelogi1", "https://tec.openplanner.team/stops/LWevalf1"], ["https://tec.openplanner.team/stops/H1em101a", "https://tec.openplanner.team/stops/H1ev114b"], ["https://tec.openplanner.team/stops/X922ada", "https://tec.openplanner.team/stops/X922akb"], ["https://tec.openplanner.team/stops/N308aca", "https://tec.openplanner.team/stops/N308baa"], ["https://tec.openplanner.team/stops/H1bn114b", "https://tec.openplanner.team/stops/H1qp141b"], ["https://tec.openplanner.team/stops/X614aha", "https://tec.openplanner.team/stops/X614awa"], ["https://tec.openplanner.team/stops/N155afb", "https://tec.openplanner.team/stops/N155afd"], ["https://tec.openplanner.team/stops/X839ada", "https://tec.openplanner.team/stops/X839aea"], ["https://tec.openplanner.team/stops/Loucham1", "https://tec.openplanner.team/stops/Loucham3"], ["https://tec.openplanner.team/stops/LCTfair1", "https://tec.openplanner.team/stops/LCTmonu2"], ["https://tec.openplanner.team/stops/H4ty283a", "https://tec.openplanner.team/stops/H4ty322b"], ["https://tec.openplanner.team/stops/N137adb", "https://tec.openplanner.team/stops/N155aab"], ["https://tec.openplanner.team/stops/H4ka185b", "https://tec.openplanner.team/stops/H4ru236b"], ["https://tec.openplanner.team/stops/X661axb", "https://tec.openplanner.team/stops/X817acb"], ["https://tec.openplanner.team/stops/X746aaa", "https://tec.openplanner.team/stops/X747aia"], ["https://tec.openplanner.team/stops/Ccocroi2", "https://tec.openplanner.team/stops/H2tz120a"], ["https://tec.openplanner.team/stops/H1gi120d", "https://tec.openplanner.team/stops/H1gi154a"], ["https://tec.openplanner.team/stops/Lbbviad4", "https://tec.openplanner.team/stops/Lgrorch1"], ["https://tec.openplanner.team/stops/H4wt159a", "https://tec.openplanner.team/stops/H5rx128b"], ["https://tec.openplanner.team/stops/LBBabat1", "https://tec.openplanner.team/stops/LBBpech1"], ["https://tec.openplanner.team/stops/Bmlnbpr2", "https://tec.openplanner.team/stops/Bmlnsmv1"], ["https://tec.openplanner.team/stops/X634akb", "https://tec.openplanner.team/stops/X636aab"], ["https://tec.openplanner.team/stops/LCSmagn1", "https://tec.openplanner.team/stops/LSShous1"], ["https://tec.openplanner.team/stops/LMalarg4", "https://tec.openplanner.team/stops/LMaslav3"], ["https://tec.openplanner.team/stops/Bbxlmid4", "https://tec.openplanner.team/stops/Bhaldbo1"], ["https://tec.openplanner.team/stops/Barqpla2", "https://tec.openplanner.team/stops/Bfelbri1"], ["https://tec.openplanner.team/stops/X985aab", "https://tec.openplanner.team/stops/X985aba"], ["https://tec.openplanner.team/stops/LaAjahn1", "https://tec.openplanner.team/stops/LaAkapi1"], ["https://tec.openplanner.team/stops/LeYmero2", "https://tec.openplanner.team/stops/LkTweih1"], ["https://tec.openplanner.team/stops/LCpeg-*", "https://tec.openplanner.team/stops/LCpvill1"], ["https://tec.openplanner.team/stops/H4le127a", "https://tec.openplanner.team/stops/H4ry133a"], ["https://tec.openplanner.team/stops/Chhprai1", "https://tec.openplanner.team/stops/Cmx3arb2"], ["https://tec.openplanner.team/stops/H4er124b", "https://tec.openplanner.team/stops/H4ty282a"], ["https://tec.openplanner.team/stops/X898aca", "https://tec.openplanner.team/stops/X995aga"], ["https://tec.openplanner.team/stops/X955aab", "https://tec.openplanner.team/stops/X955ada"], ["https://tec.openplanner.team/stops/LWberno1", "https://tec.openplanner.team/stops/LWberno2"], ["https://tec.openplanner.team/stops/H1sg148b", "https://tec.openplanner.team/stops/H1te174a"], ["https://tec.openplanner.team/stops/X821aaa", "https://tec.openplanner.team/stops/X821aab"], ["https://tec.openplanner.team/stops/X615bba", "https://tec.openplanner.team/stops/X615bbb"], ["https://tec.openplanner.team/stops/LBXhacb1", "https://tec.openplanner.team/stops/LHEpriv2"], ["https://tec.openplanner.team/stops/Blmlbif1", "https://tec.openplanner.team/stops/Brixape2"], ["https://tec.openplanner.team/stops/H1ba100a", "https://tec.openplanner.team/stops/H1ba111b"], ["https://tec.openplanner.team/stops/X822afb", "https://tec.openplanner.team/stops/X822anb"], ["https://tec.openplanner.team/stops/H2go114a", "https://tec.openplanner.team/stops/H2go120a"], ["https://tec.openplanner.team/stops/N385ada", "https://tec.openplanner.team/stops/N385aed"], ["https://tec.openplanner.team/stops/Blinbru1", "https://tec.openplanner.team/stops/Blinhue1"], ["https://tec.openplanner.team/stops/X601ajb", "https://tec.openplanner.team/stops/X601aqa"], ["https://tec.openplanner.team/stops/N387aab", "https://tec.openplanner.team/stops/N387aba"], ["https://tec.openplanner.team/stops/Caicalv1", "https://tec.openplanner.team/stops/Caicalv2"], ["https://tec.openplanner.team/stops/N212afa", "https://tec.openplanner.team/stops/N212ahb"], ["https://tec.openplanner.team/stops/LAvcani2", "https://tec.openplanner.team/stops/LCIneuv1"], ["https://tec.openplanner.team/stops/X811apb", "https://tec.openplanner.team/stops/X812bbb"], ["https://tec.openplanner.team/stops/H4mo144a", "https://tec.openplanner.team/stops/H4mo147a"], ["https://tec.openplanner.team/stops/X746abb", "https://tec.openplanner.team/stops/X746aca"], ["https://tec.openplanner.team/stops/Bsmgmar1", "https://tec.openplanner.team/stops/Bsmgmou1"], ["https://tec.openplanner.team/stops/H1ho130a", "https://tec.openplanner.team/stops/H1wa164b"], ["https://tec.openplanner.team/stops/N533alb", "https://tec.openplanner.team/stops/N533aob"], ["https://tec.openplanner.team/stops/N521aeb", "https://tec.openplanner.team/stops/N523aba"], ["https://tec.openplanner.team/stops/LFUfonc1", "https://tec.openplanner.team/stops/LFUgare1"], ["https://tec.openplanner.team/stops/N531adb", "https://tec.openplanner.team/stops/N531ama"], ["https://tec.openplanner.team/stops/X641axa", "https://tec.openplanner.team/stops/X641aya"], ["https://tec.openplanner.team/stops/H1hr122b", "https://tec.openplanner.team/stops/H1hr124a"], ["https://tec.openplanner.team/stops/Cfccabi1", "https://tec.openplanner.team/stops/Cfccabi2"], ["https://tec.openplanner.team/stops/LBNeu712", "https://tec.openplanner.team/stops/LhEherb2"], ["https://tec.openplanner.team/stops/LLrpape2", "https://tec.openplanner.team/stops/LLrpape4"], ["https://tec.openplanner.team/stops/Lgrclos2", "https://tec.openplanner.team/stops/Lgrlabo2"], ["https://tec.openplanner.team/stops/H5rx129a", "https://tec.openplanner.team/stops/H5rx143b"], ["https://tec.openplanner.team/stops/Lgrmc--1", "https://tec.openplanner.team/stops/Lgrmc--2"], ["https://tec.openplanner.team/stops/X945aba", "https://tec.openplanner.team/stops/X945aca"], ["https://tec.openplanner.team/stops/LBlhaut2", "https://tec.openplanner.team/stops/LLUlieg2"], ["https://tec.openplanner.team/stops/X615ayb", "https://tec.openplanner.team/stops/X615azb"], ["https://tec.openplanner.team/stops/Bwatath2", "https://tec.openplanner.team/stops/Bwatdmo1"], ["https://tec.openplanner.team/stops/LPRecol1", "https://tec.openplanner.team/stops/LTResse1"], ["https://tec.openplanner.team/stops/Cjuquai1", "https://tec.openplanner.team/stops/Cjuvpla2"], ["https://tec.openplanner.team/stops/X986aka", "https://tec.openplanner.team/stops/X986amb"], ["https://tec.openplanner.team/stops/Cpccoss2", "https://tec.openplanner.team/stops/Cpclarm2"], ["https://tec.openplanner.team/stops/X986afb", "https://tec.openplanner.team/stops/X986ata"], ["https://tec.openplanner.team/stops/H1by102a", "https://tec.openplanner.team/stops/H1by103b"], ["https://tec.openplanner.team/stops/H1og130b", "https://tec.openplanner.team/stops/H5wo132a"], ["https://tec.openplanner.team/stops/N501aha", "https://tec.openplanner.team/stops/N501ahb"], ["https://tec.openplanner.team/stops/LHrrard1", "https://tec.openplanner.team/stops/LHrrard2"], ["https://tec.openplanner.team/stops/LsVviel1", "https://tec.openplanner.team/stops/LsVviel2"], ["https://tec.openplanner.team/stops/H1gh160a", "https://tec.openplanner.team/stops/H1gh160b"], ["https://tec.openplanner.team/stops/N106aoa", "https://tec.openplanner.team/stops/N106arb"], ["https://tec.openplanner.team/stops/X788aha", "https://tec.openplanner.team/stops/X788ahb"], ["https://tec.openplanner.team/stops/X719abb", "https://tec.openplanner.team/stops/X733aba"], ["https://tec.openplanner.team/stops/LhSfrep2", "https://tec.openplanner.team/stops/LhSheid1"], ["https://tec.openplanner.team/stops/Btstpch1", "https://tec.openplanner.team/stops/Btstpch2"], ["https://tec.openplanner.team/stops/N501kxb", "https://tec.openplanner.team/stops/N501mtd"], ["https://tec.openplanner.team/stops/N539aib", "https://tec.openplanner.team/stops/N539alb"], ["https://tec.openplanner.team/stops/N561aib", "https://tec.openplanner.team/stops/N584apa"], ["https://tec.openplanner.team/stops/LiV19--2", "https://tec.openplanner.team/stops/LiVkreu3"], ["https://tec.openplanner.team/stops/H4bc101a", "https://tec.openplanner.team/stops/H4bc101d"], ["https://tec.openplanner.team/stops/Bblatet2", "https://tec.openplanner.team/stops/Bbsibou1"], ["https://tec.openplanner.team/stops/LLReg--1", "https://tec.openplanner.team/stops/LLRgdma1"], ["https://tec.openplanner.team/stops/H4te250a", "https://tec.openplanner.team/stops/H4te250b"], ["https://tec.openplanner.team/stops/H1hr118d", "https://tec.openplanner.team/stops/H1hr122b"], ["https://tec.openplanner.team/stops/NL35aca", "https://tec.openplanner.team/stops/NL35agb"], ["https://tec.openplanner.team/stops/H1pw121a", "https://tec.openplanner.team/stops/H1pw123b"], ["https://tec.openplanner.team/stops/Lgrfalc1", "https://tec.openplanner.team/stops/Lgrrein1"], ["https://tec.openplanner.team/stops/N260aba", "https://tec.openplanner.team/stops/N260afb"], ["https://tec.openplanner.team/stops/Bbstchn2", "https://tec.openplanner.team/stops/Bbstrpo2"], ["https://tec.openplanner.team/stops/X836abb", "https://tec.openplanner.team/stops/X836aja"], ["https://tec.openplanner.team/stops/X773aib", "https://tec.openplanner.team/stops/X773ajb"], ["https://tec.openplanner.team/stops/LOReg--2", "https://tec.openplanner.team/stops/LORgend2"], ["https://tec.openplanner.team/stops/X760afb", "https://tec.openplanner.team/stops/X762aeb"], ["https://tec.openplanner.team/stops/H4ru235b", "https://tec.openplanner.team/stops/H4ru239b"], ["https://tec.openplanner.team/stops/N118aob", "https://tec.openplanner.team/stops/N118baa"], ["https://tec.openplanner.team/stops/H4ta118a", "https://tec.openplanner.team/stops/H4ta123a"], ["https://tec.openplanner.team/stops/LOuhalb1", "https://tec.openplanner.team/stops/LOumaro2"], ["https://tec.openplanner.team/stops/X805aaa", "https://tec.openplanner.team/stops/X805aha"], ["https://tec.openplanner.team/stops/Bvirduj1", "https://tec.openplanner.team/stops/Bvirduj2"], ["https://tec.openplanner.team/stops/Bcsebea4", "https://tec.openplanner.team/stops/Bcsen252"], ["https://tec.openplanner.team/stops/Lsmcime1", "https://tec.openplanner.team/stops/Lsmrcim1"], ["https://tec.openplanner.team/stops/H4ty296a", "https://tec.openplanner.team/stops/H4ty351a"], ["https://tec.openplanner.team/stops/H5fl102d", "https://tec.openplanner.team/stops/H5fl103b"], ["https://tec.openplanner.team/stops/Bgligli2", "https://tec.openplanner.team/stops/Bjcljau1"], ["https://tec.openplanner.team/stops/H5el104b", "https://tec.openplanner.team/stops/H5el114a"], ["https://tec.openplanner.team/stops/X542abb", "https://tec.openplanner.team/stops/X542aia"], ["https://tec.openplanner.team/stops/LkTweih1", "https://tec.openplanner.team/stops/LrAbe961"], ["https://tec.openplanner.team/stops/LsVfeye1", "https://tec.openplanner.team/stops/LsVfeye2"], ["https://tec.openplanner.team/stops/X805aba", "https://tec.openplanner.team/stops/X805abb"], ["https://tec.openplanner.team/stops/X733aja", "https://tec.openplanner.team/stops/X733ajb"], ["https://tec.openplanner.team/stops/X808adb", "https://tec.openplanner.team/stops/X808aea"], ["https://tec.openplanner.team/stops/H2fa106a", "https://tec.openplanner.team/stops/H2hg268b"], ["https://tec.openplanner.team/stops/Ccicent2", "https://tec.openplanner.team/stops/Ccicouc1"], ["https://tec.openplanner.team/stops/Bsdafra1", "https://tec.openplanner.team/stops/Csdbosq2"], ["https://tec.openplanner.team/stops/Lflcle-5", "https://tec.openplanner.team/stops/Lflsana2"], ["https://tec.openplanner.team/stops/X750aaa", "https://tec.openplanner.team/stops/X780aga"], ["https://tec.openplanner.team/stops/Lheazz-1", "https://tec.openplanner.team/stops/Lheelva1"], ["https://tec.openplanner.team/stops/Ccocorb2", "https://tec.openplanner.team/stops/Ccoha601"], ["https://tec.openplanner.team/stops/N501hta", "https://tec.openplanner.team/stops/N501ifa"], ["https://tec.openplanner.team/stops/Bllnfle1", "https://tec.openplanner.team/stops/Bllnfle2"], ["https://tec.openplanner.team/stops/X224afa", "https://tec.openplanner.team/stops/X224afb"], ["https://tec.openplanner.team/stops/LTatult2", "https://tec.openplanner.team/stops/LTatult3"], ["https://tec.openplanner.team/stops/X640aib", "https://tec.openplanner.team/stops/X640ajb"], ["https://tec.openplanner.team/stops/Bsdabja2", "https://tec.openplanner.team/stops/Bsdavpe2"], ["https://tec.openplanner.team/stops/X818afb", "https://tec.openplanner.team/stops/X818aua"], ["https://tec.openplanner.team/stops/X775acb", "https://tec.openplanner.team/stops/X775afa"], ["https://tec.openplanner.team/stops/Louoran1", "https://tec.openplanner.team/stops/Louroos1"], ["https://tec.openplanner.team/stops/LWechpl1", "https://tec.openplanner.team/stops/LWevalf2"], ["https://tec.openplanner.team/stops/X996abb", "https://tec.openplanner.team/stops/X996ahb"], ["https://tec.openplanner.team/stops/LGOdelv1", "https://tec.openplanner.team/stops/LHVeg--2"], ["https://tec.openplanner.team/stops/H1bu137a", "https://tec.openplanner.team/stops/H1bu137b"], ["https://tec.openplanner.team/stops/Lstbota2", "https://tec.openplanner.team/stops/Lsteduc1"], ["https://tec.openplanner.team/stops/LeYdepo2", "https://tec.openplanner.team/stops/LeYroth1"], ["https://tec.openplanner.team/stops/N576aea", "https://tec.openplanner.team/stops/N576anb"], ["https://tec.openplanner.team/stops/X608ara", "https://tec.openplanner.team/stops/X608arb"], ["https://tec.openplanner.team/stops/X922aia", "https://tec.openplanner.team/stops/X922ajb"], ["https://tec.openplanner.team/stops/Lsechev2", "https://tec.openplanner.team/stops/Lsemyrt1"], ["https://tec.openplanner.team/stops/N309aac", "https://tec.openplanner.team/stops/N365aca"], ["https://tec.openplanner.team/stops/X985aba", "https://tec.openplanner.team/stops/X985abb"], ["https://tec.openplanner.team/stops/LSNbouh3", "https://tec.openplanner.team/stops/LSNbouh4"], ["https://tec.openplanner.team/stops/N501bdb", "https://tec.openplanner.team/stops/N501hsb"], ["https://tec.openplanner.team/stops/X823aeb", "https://tec.openplanner.team/stops/X824aba"], ["https://tec.openplanner.team/stops/N340afa", "https://tec.openplanner.team/stops/N340aha"], ["https://tec.openplanner.team/stops/LSphote1", "https://tec.openplanner.team/stops/LSphote2"], ["https://tec.openplanner.team/stops/LWAvand1", "https://tec.openplanner.team/stops/LWAvand2"], ["https://tec.openplanner.team/stops/N515aka", "https://tec.openplanner.team/stops/N515akc"], ["https://tec.openplanner.team/stops/LFmlens2", "https://tec.openplanner.team/stops/LTychev2"], ["https://tec.openplanner.team/stops/H1ho143a", "https://tec.openplanner.team/stops/H1ho143c"], ["https://tec.openplanner.team/stops/Crorpai1", "https://tec.openplanner.team/stops/Crowilb2"], ["https://tec.openplanner.team/stops/Lsechan2", "https://tec.openplanner.team/stops/Lsevecq1"], ["https://tec.openplanner.team/stops/LGefron1", "https://tec.openplanner.team/stops/LGefron2"], ["https://tec.openplanner.team/stops/X608aia", "https://tec.openplanner.team/stops/X608avb"], ["https://tec.openplanner.team/stops/LNAmart2", "https://tec.openplanner.team/stops/LNAplac1"], ["https://tec.openplanner.team/stops/LSdcent2", "https://tec.openplanner.team/stops/LSdsa452"], ["https://tec.openplanner.team/stops/LeUarno1", "https://tec.openplanner.team/stops/LeUarno2"], ["https://tec.openplanner.team/stops/Lprchat2", "https://tec.openplanner.team/stops/Lprmc--2"], ["https://tec.openplanner.team/stops/LSLeg--1", "https://tec.openplanner.team/stops/LSLstra2"], ["https://tec.openplanner.team/stops/LAUjean1", "https://tec.openplanner.team/stops/LSJeg--2"], ["https://tec.openplanner.team/stops/H4ar100a", "https://tec.openplanner.team/stops/H4ar101a"], ["https://tec.openplanner.team/stops/NR21aea", "https://tec.openplanner.team/stops/NR21aeb"], ["https://tec.openplanner.team/stops/H1ca100a", "https://tec.openplanner.team/stops/H1ca100b"], ["https://tec.openplanner.team/stops/X897aib", "https://tec.openplanner.team/stops/X897ajb"], ["https://tec.openplanner.team/stops/H2ec100a", "https://tec.openplanner.team/stops/H2ec103b"], ["https://tec.openplanner.team/stops/X614aqb", "https://tec.openplanner.team/stops/X614asa"], ["https://tec.openplanner.team/stops/Ltiegli2", "https://tec.openplanner.team/stops/Ltimarq2"], ["https://tec.openplanner.team/stops/LOunebl2", "https://tec.openplanner.team/stops/X982abb"], ["https://tec.openplanner.team/stops/Btilgar2", "https://tec.openplanner.team/stops/Btilhti2"], ["https://tec.openplanner.team/stops/H1hi122a", "https://tec.openplanner.team/stops/H1hi122b"], ["https://tec.openplanner.team/stops/LLrcomb1", "https://tec.openplanner.team/stops/LLrcomb2"], ["https://tec.openplanner.team/stops/Crocona2", "https://tec.openplanner.team/stops/Croplom5"], ["https://tec.openplanner.team/stops/LLWcarr1", "https://tec.openplanner.team/stops/LLWcarr2"], ["https://tec.openplanner.team/stops/Lbhhomv2", "https://tec.openplanner.team/stops/Ljuvert1"], ["https://tec.openplanner.team/stops/LREelse1", "https://tec.openplanner.team/stops/LREsp902"], ["https://tec.openplanner.team/stops/Bgzddfh1", "https://tec.openplanner.team/stops/Bgzdpis1"], ["https://tec.openplanner.team/stops/Lhr1ave2", "https://tec.openplanner.team/stops/Lhr2ave2"], ["https://tec.openplanner.team/stops/H4hq129a", "https://tec.openplanner.team/stops/H4hq134a"], ["https://tec.openplanner.team/stops/X723aea", "https://tec.openplanner.team/stops/X766aja"], ["https://tec.openplanner.team/stops/X615alb", "https://tec.openplanner.team/stops/X615bra"], ["https://tec.openplanner.team/stops/Bhantui2", "https://tec.openplanner.team/stops/LABbert2"], ["https://tec.openplanner.team/stops/LEHpech1", "https://tec.openplanner.team/stops/LSSvill2"], ["https://tec.openplanner.team/stops/LLmvict2", "https://tec.openplanner.team/stops/LRemonu2"], ["https://tec.openplanner.team/stops/Lwagare1", "https://tec.openplanner.team/stops/Lwapont1"], ["https://tec.openplanner.team/stops/LLVboss1", "https://tec.openplanner.team/stops/X561aaa"], ["https://tec.openplanner.team/stops/X660afa", "https://tec.openplanner.team/stops/X741alb"], ["https://tec.openplanner.team/stops/X775ada", "https://tec.openplanner.team/stops/X775ana"], ["https://tec.openplanner.team/stops/N321abb", "https://tec.openplanner.team/stops/N321acb"], ["https://tec.openplanner.team/stops/H1en100a", "https://tec.openplanner.team/stops/H1en100b"], ["https://tec.openplanner.team/stops/X886aea", "https://tec.openplanner.team/stops/X886afa"], ["https://tec.openplanner.team/stops/X609aca", "https://tec.openplanner.team/stops/X609acb"], ["https://tec.openplanner.team/stops/H4ty312a", "https://tec.openplanner.team/stops/H4ty324a"], ["https://tec.openplanner.team/stops/Cgocalv2", "https://tec.openplanner.team/stops/Cgofleu3"], ["https://tec.openplanner.team/stops/H1au102b", "https://tec.openplanner.team/stops/H1wi151a"], ["https://tec.openplanner.team/stops/Bsammon3", "https://tec.openplanner.team/stops/Bsammon4"], ["https://tec.openplanner.team/stops/H1pa106a", "https://tec.openplanner.team/stops/H1pa106c"], ["https://tec.openplanner.team/stops/H3so153a", "https://tec.openplanner.team/stops/H3so162a"], ["https://tec.openplanner.team/stops/LSTdero1", "https://tec.openplanner.team/stops/LSTvaul2"], ["https://tec.openplanner.team/stops/N221aca", "https://tec.openplanner.team/stops/N221acb"], ["https://tec.openplanner.team/stops/H1ca102b", "https://tec.openplanner.team/stops/H3so164a"], ["https://tec.openplanner.team/stops/N501cea", "https://tec.openplanner.team/stops/N521aba"], ["https://tec.openplanner.team/stops/X354afb", "https://tec.openplanner.team/stops/X359alb"], ["https://tec.openplanner.team/stops/X912aka", "https://tec.openplanner.team/stops/X912ala"], ["https://tec.openplanner.team/stops/LLUvent4", "https://tec.openplanner.team/stops/LLUvent5"], ["https://tec.openplanner.team/stops/H2bh110b", "https://tec.openplanner.team/stops/H2bh110d"], ["https://tec.openplanner.team/stops/X891ada", "https://tec.openplanner.team/stops/X892aia"], ["https://tec.openplanner.team/stops/N543bqa", "https://tec.openplanner.team/stops/N543cja"], ["https://tec.openplanner.team/stops/Btilmar2", "https://tec.openplanner.team/stops/Btilsnc1"], ["https://tec.openplanner.team/stops/X731acc", "https://tec.openplanner.team/stops/X731ada"], ["https://tec.openplanner.team/stops/Cmlhauc1", "https://tec.openplanner.team/stops/NC01afa"], ["https://tec.openplanner.team/stops/X672aeb", "https://tec.openplanner.team/stops/X675aba"], ["https://tec.openplanner.team/stops/H4mn100a", "https://tec.openplanner.team/stops/H4mo192a"], ["https://tec.openplanner.team/stops/H1si152c", "https://tec.openplanner.team/stops/H1si164a"], ["https://tec.openplanner.team/stops/LCeterm2", "https://tec.openplanner.team/stops/LLWchat1"], ["https://tec.openplanner.team/stops/N522aja", "https://tec.openplanner.team/stops/N522bvh"], ["https://tec.openplanner.team/stops/H4ae100b", "https://tec.openplanner.team/stops/H4ae102a"], ["https://tec.openplanner.team/stops/Lalchar2", "https://tec.openplanner.team/stops/LXhcite1"], ["https://tec.openplanner.team/stops/H1me117c", "https://tec.openplanner.team/stops/H1me117e"], ["https://tec.openplanner.team/stops/X623aga", "https://tec.openplanner.team/stops/X623ahb"], ["https://tec.openplanner.team/stops/Lheneuv1", "https://tec.openplanner.team/stops/Lheneuv3"], ["https://tec.openplanner.team/stops/X982bfb", "https://tec.openplanner.team/stops/X982bld"], ["https://tec.openplanner.team/stops/X991akb", "https://tec.openplanner.team/stops/X991alb"], ["https://tec.openplanner.team/stops/LHNgend3", "https://tec.openplanner.team/stops/LHNgend4"], ["https://tec.openplanner.team/stops/H2sv217a", "https://tec.openplanner.team/stops/H2sv217b"], ["https://tec.openplanner.team/stops/Cchba04", "https://tec.openplanner.team/stops/Cchba1"], ["https://tec.openplanner.team/stops/Bmoucoq1", "https://tec.openplanner.team/stops/Bottcli4"], ["https://tec.openplanner.team/stops/Lflcime2", "https://tec.openplanner.team/stops/Lflweri1"], ["https://tec.openplanner.team/stops/X901amb", "https://tec.openplanner.team/stops/X901ara"], ["https://tec.openplanner.team/stops/X747afa", "https://tec.openplanner.team/stops/X749aab"], ["https://tec.openplanner.team/stops/LOCbois1", "https://tec.openplanner.team/stops/LOChuy-1"], ["https://tec.openplanner.team/stops/NL81afb", "https://tec.openplanner.team/stops/NL81aha"], ["https://tec.openplanner.team/stops/H1el132b", "https://tec.openplanner.team/stops/H1el140c"], ["https://tec.openplanner.team/stops/H1je222a", "https://tec.openplanner.team/stops/H1je366a"], ["https://tec.openplanner.team/stops/N539afa", "https://tec.openplanner.team/stops/N539aua"], ["https://tec.openplanner.team/stops/N118ava", "https://tec.openplanner.team/stops/N118avb"], ["https://tec.openplanner.team/stops/Bcrncce1", "https://tec.openplanner.team/stops/Bsgeqpb1"], ["https://tec.openplanner.team/stops/X615avb", "https://tec.openplanner.team/stops/X615bca"], ["https://tec.openplanner.team/stops/Bbstchn1", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/Ccopeti2", "https://tec.openplanner.team/stops/Ccovies2"], ["https://tec.openplanner.team/stops/N424aca", "https://tec.openplanner.team/stops/N424ada"], ["https://tec.openplanner.team/stops/X999aaa", "https://tec.openplanner.team/stops/X999amb"], ["https://tec.openplanner.team/stops/LLAcalv2", "https://tec.openplanner.team/stops/LLAchpl2"], ["https://tec.openplanner.team/stops/H4ne134b", "https://tec.openplanner.team/stops/H4ne144c"], ["https://tec.openplanner.team/stops/LhEklos2", "https://tec.openplanner.team/stops/LhEtivo2"], ["https://tec.openplanner.team/stops/Cctchea1", "https://tec.openplanner.team/stops/Cctvche1"], ["https://tec.openplanner.team/stops/H2ha133a", "https://tec.openplanner.team/stops/H2sb271a"], ["https://tec.openplanner.team/stops/N232axa", "https://tec.openplanner.team/stops/N232bpb"], ["https://tec.openplanner.team/stops/X548afa", "https://tec.openplanner.team/stops/X784aib"], ["https://tec.openplanner.team/stops/LmHdrei1", "https://tec.openplanner.team/stops/LmTkirc1"], ["https://tec.openplanner.team/stops/N506bub", "https://tec.openplanner.team/stops/N506bwa"], ["https://tec.openplanner.team/stops/N526aca", "https://tec.openplanner.team/stops/N526ada"], ["https://tec.openplanner.team/stops/Ljuargi1", "https://tec.openplanner.team/stops/Ljuplpr2"], ["https://tec.openplanner.team/stops/X723afa", "https://tec.openplanner.team/stops/X723ala"], ["https://tec.openplanner.team/stops/LWNberg2", "https://tec.openplanner.team/stops/NL72afa"], ["https://tec.openplanner.team/stops/LbUjost2", "https://tec.openplanner.team/stops/LbUjost4"], ["https://tec.openplanner.team/stops/LBslama2", "https://tec.openplanner.team/stops/NL72aca"], ["https://tec.openplanner.team/stops/Cmmcarr1", "https://tec.openplanner.team/stops/Cmmp2052"], ["https://tec.openplanner.team/stops/Bmlnegl1", "https://tec.openplanner.team/stops/Bmlnegl4"], ["https://tec.openplanner.team/stops/N110ahb", "https://tec.openplanner.team/stops/N113aga"], ["https://tec.openplanner.team/stops/X774afb", "https://tec.openplanner.team/stops/X774agb"], ["https://tec.openplanner.team/stops/X926afa", "https://tec.openplanner.team/stops/X926afb"], ["https://tec.openplanner.team/stops/LCvoufn1", "https://tec.openplanner.team/stops/X713ala"], ["https://tec.openplanner.team/stops/H1ms268a", "https://tec.openplanner.team/stops/H1ms308a"], ["https://tec.openplanner.team/stops/H5pe133a", "https://tec.openplanner.team/stops/H5pe147a"], ["https://tec.openplanner.team/stops/LrAdrie2", "https://tec.openplanner.team/stops/LrAdrie3"], ["https://tec.openplanner.team/stops/Bmsgbay1", "https://tec.openplanner.team/stops/Bmsgbay2"], ["https://tec.openplanner.team/stops/H1hy129a", "https://tec.openplanner.team/stops/H1hy144a"], ["https://tec.openplanner.team/stops/LmEdorf1", "https://tec.openplanner.team/stops/LmNsied2"], ["https://tec.openplanner.team/stops/LAWhein3", "https://tec.openplanner.team/stops/LXhjupr2"], ["https://tec.openplanner.team/stops/LESmart1", "https://tec.openplanner.team/stops/LESoneu3"], ["https://tec.openplanner.team/stops/X901aeb", "https://tec.openplanner.team/stops/X901bga"], ["https://tec.openplanner.team/stops/Bwlhpec1", "https://tec.openplanner.team/stops/Bwlhpmt4"], ["https://tec.openplanner.team/stops/N143aba", "https://tec.openplanner.team/stops/N143acb"], ["https://tec.openplanner.team/stops/X718aib", "https://tec.openplanner.team/stops/X718ajb"], ["https://tec.openplanner.team/stops/H1ms299a", "https://tec.openplanner.team/stops/H1ms943a"], ["https://tec.openplanner.team/stops/H5el114a", "https://tec.openplanner.team/stops/H5el114b"], ["https://tec.openplanner.team/stops/NC14afb", "https://tec.openplanner.team/stops/NC14aga"], ["https://tec.openplanner.team/stops/H4eh102a", "https://tec.openplanner.team/stops/H4eh102b"], ["https://tec.openplanner.team/stops/LLOhest2", "https://tec.openplanner.team/stops/LPLhest2"], ["https://tec.openplanner.team/stops/Lagarde2", "https://tec.openplanner.team/stops/Lgrgoff2"], ["https://tec.openplanner.team/stops/H1hn365a", "https://tec.openplanner.team/stops/H1ms260a"], ["https://tec.openplanner.team/stops/LETec--1", "https://tec.openplanner.team/stops/LETeg--2"], ["https://tec.openplanner.team/stops/Bauddel2", "https://tec.openplanner.team/stops/Baudvdr2"], ["https://tec.openplanner.team/stops/Blimbet3", "https://tec.openplanner.team/stops/Blmlcar1"], ["https://tec.openplanner.team/stops/X879aea", "https://tec.openplanner.team/stops/X882aga"], ["https://tec.openplanner.team/stops/H1wa152b", "https://tec.openplanner.team/stops/H1wa163b"], ["https://tec.openplanner.team/stops/Bjanfer2", "https://tec.openplanner.team/stops/Bpthcai2"], ["https://tec.openplanner.team/stops/Lchsaro2", "https://tec.openplanner.team/stops/Lchsart2"], ["https://tec.openplanner.team/stops/X801bja", "https://tec.openplanner.team/stops/X801bka"], ["https://tec.openplanner.team/stops/X979aeb", "https://tec.openplanner.team/stops/X979aoa"], ["https://tec.openplanner.team/stops/X784ala", "https://tec.openplanner.team/stops/X784alb"], ["https://tec.openplanner.team/stops/N220aaa", "https://tec.openplanner.team/stops/X394aca"], ["https://tec.openplanner.team/stops/Cchsud01", "https://tec.openplanner.team/stops/Cmlecha1"], ["https://tec.openplanner.team/stops/Cfaeclu2", "https://tec.openplanner.team/stops/Cplrmon2"], ["https://tec.openplanner.team/stops/N558afb", "https://tec.openplanner.team/stops/N558agb"], ["https://tec.openplanner.team/stops/H4hx114a", "https://tec.openplanner.team/stops/H4hx120a"], ["https://tec.openplanner.team/stops/LHvvill*", "https://tec.openplanner.team/stops/LPurech2"], ["https://tec.openplanner.team/stops/Cmgcabi1", "https://tec.openplanner.team/stops/Cmgslo1"], ["https://tec.openplanner.team/stops/Bsaucre1", "https://tec.openplanner.team/stops/Bsaupco1"], ["https://tec.openplanner.team/stops/Cnacroc1", "https://tec.openplanner.team/stops/Cnahous2"], ["https://tec.openplanner.team/stops/LkOzoll1", "https://tec.openplanner.team/stops/LkOzoll2"], ["https://tec.openplanner.team/stops/N385abb", "https://tec.openplanner.team/stops/N385acb"], ["https://tec.openplanner.team/stops/N220aca", "https://tec.openplanner.team/stops/N224aba"], ["https://tec.openplanner.team/stops/Lvtcalv2", "https://tec.openplanner.team/stops/Lvtcime2"], ["https://tec.openplanner.team/stops/Bwaygrg2", "https://tec.openplanner.team/stops/Cbtlong1"], ["https://tec.openplanner.team/stops/LSkb1351", "https://tec.openplanner.team/stops/LSkb1352"], ["https://tec.openplanner.team/stops/N539baa", "https://tec.openplanner.team/stops/N539bab"], ["https://tec.openplanner.team/stops/X611aba", "https://tec.openplanner.team/stops/X611aea"], ["https://tec.openplanner.team/stops/Ccychap2", "https://tec.openplanner.team/stops/Ccymabo2"], ["https://tec.openplanner.team/stops/NL74aaa", "https://tec.openplanner.team/stops/NL74ajb"], ["https://tec.openplanner.team/stops/LGMforg2", "https://tec.openplanner.team/stops/LTRoasi2"], ["https://tec.openplanner.team/stops/N506ata", "https://tec.openplanner.team/stops/N506azb"], ["https://tec.openplanner.team/stops/LSPvigi1", "https://tec.openplanner.team/stops/LSPvigi2"], ["https://tec.openplanner.team/stops/Lsn130-1", "https://tec.openplanner.team/stops/Lsnlhon1"], ["https://tec.openplanner.team/stops/H5rx110a", "https://tec.openplanner.team/stops/H5rx139a"], ["https://tec.openplanner.team/stops/Cgoson12", "https://tec.openplanner.team/stops/Cjudelv4"], ["https://tec.openplanner.team/stops/N536afb", "https://tec.openplanner.team/stops/N536aqa"], ["https://tec.openplanner.team/stops/N555aca", "https://tec.openplanner.team/stops/N573aba"], ["https://tec.openplanner.team/stops/Lccuner1", "https://tec.openplanner.team/stops/LRArami2"], ["https://tec.openplanner.team/stops/H5bl117b", "https://tec.openplanner.team/stops/H5qu182b"], ["https://tec.openplanner.team/stops/Lbrmc--2", "https://tec.openplanner.team/stops/Lbrptbr2"], ["https://tec.openplanner.team/stops/Bblague1", "https://tec.openplanner.team/stops/Bblasse1"], ["https://tec.openplanner.team/stops/X615akb", "https://tec.openplanner.team/stops/X615bia"], ["https://tec.openplanner.team/stops/H2sv214a", "https://tec.openplanner.team/stops/H2sv214b"], ["https://tec.openplanner.team/stops/H2lh125b", "https://tec.openplanner.team/stops/H2lh131b"], ["https://tec.openplanner.team/stops/X619aaa", "https://tec.openplanner.team/stops/X619aab"], ["https://tec.openplanner.team/stops/X999apa", "https://tec.openplanner.team/stops/X999apb"], ["https://tec.openplanner.team/stops/LTPbode1", "https://tec.openplanner.team/stops/LTPreco2"], ["https://tec.openplanner.team/stops/Bchadpt1", "https://tec.openplanner.team/stops/Bchamco2"], ["https://tec.openplanner.team/stops/Cmcceta1", "https://tec.openplanner.team/stops/Cmcegli3"], ["https://tec.openplanner.team/stops/X641asa", "https://tec.openplanner.team/stops/X823aab"], ["https://tec.openplanner.team/stops/X804ata", "https://tec.openplanner.team/stops/X804awa"], ["https://tec.openplanner.team/stops/Llgcamp1", "https://tec.openplanner.team/stops/Llgelis1"], ["https://tec.openplanner.team/stops/H1br120a", "https://tec.openplanner.team/stops/H1br125b"], ["https://tec.openplanner.team/stops/H2hg145b", "https://tec.openplanner.team/stops/H2hg265b"], ["https://tec.openplanner.team/stops/LRRbuta1", "https://tec.openplanner.team/stops/LRRbuta2"], ["https://tec.openplanner.team/stops/LWAcham1", "https://tec.openplanner.team/stops/LWAvisi2"], ["https://tec.openplanner.team/stops/Lfhncha1", "https://tec.openplanner.team/stops/Lfhncha2"], ["https://tec.openplanner.team/stops/LSTchat1", "https://tec.openplanner.team/stops/LSTchef1"], ["https://tec.openplanner.team/stops/H5ma185a", "https://tec.openplanner.team/stops/H5ma186b"], ["https://tec.openplanner.team/stops/N127aeb", "https://tec.openplanner.team/stops/N127aja"], ["https://tec.openplanner.team/stops/LSssurl1", "https://tec.openplanner.team/stops/N506bqa"], ["https://tec.openplanner.team/stops/X902awa", "https://tec.openplanner.team/stops/X902axa"], ["https://tec.openplanner.team/stops/LrDkirc1", "https://tec.openplanner.team/stops/LrDkirc2"], ["https://tec.openplanner.team/stops/X637acb", "https://tec.openplanner.team/stops/X637ala"], ["https://tec.openplanner.team/stops/Lhefoot2", "https://tec.openplanner.team/stops/Lhr4ave2"], ["https://tec.openplanner.team/stops/X760acb", "https://tec.openplanner.team/stops/X760aea"], ["https://tec.openplanner.team/stops/LLNcime2", "https://tec.openplanner.team/stops/LLNcruc2"], ["https://tec.openplanner.team/stops/X850aea", "https://tec.openplanner.team/stops/X850alb"], ["https://tec.openplanner.team/stops/LOtthie1", "https://tec.openplanner.team/stops/LOtthie2"], ["https://tec.openplanner.team/stops/Csobail1", "https://tec.openplanner.team/stops/Csograf1"], ["https://tec.openplanner.team/stops/Caigibe1", "https://tec.openplanner.team/stops/Caigibe2"], ["https://tec.openplanner.team/stops/X650aja", "https://tec.openplanner.team/stops/X650amb"], ["https://tec.openplanner.team/stops/X750afb", "https://tec.openplanner.team/stops/X750aia"], ["https://tec.openplanner.team/stops/LJSeg--1", "https://tec.openplanner.team/stops/LTHcime2"], ["https://tec.openplanner.team/stops/H1br132b", "https://tec.openplanner.team/stops/H2ma264a"], ["https://tec.openplanner.team/stops/X949afa", "https://tec.openplanner.team/stops/X949aja"], ["https://tec.openplanner.team/stops/Cldvign2", "https://tec.openplanner.team/stops/CMleer2"], ["https://tec.openplanner.team/stops/X396ada", "https://tec.openplanner.team/stops/X919ama"], ["https://tec.openplanner.team/stops/LARauto2", "https://tec.openplanner.team/stops/LARauto4"], ["https://tec.openplanner.team/stops/NL76ama", "https://tec.openplanner.team/stops/NL76aqa"], ["https://tec.openplanner.team/stops/LVlleme1", "https://tec.openplanner.team/stops/LVlleme3"], ["https://tec.openplanner.team/stops/H1ne143b", "https://tec.openplanner.team/stops/H1ne147a"], ["https://tec.openplanner.team/stops/Bbeacha1", "https://tec.openplanner.team/stops/Bbeacha2"], ["https://tec.openplanner.team/stops/LATphar2", "https://tec.openplanner.team/stops/LVNbale1"], ["https://tec.openplanner.team/stops/LBUvall2", "https://tec.openplanner.team/stops/LLtrout2"], ["https://tec.openplanner.team/stops/H4mx119a", "https://tec.openplanner.team/stops/H4ve131a"], ["https://tec.openplanner.team/stops/N116aba", "https://tec.openplanner.team/stops/N116aca"], ["https://tec.openplanner.team/stops/N106aqb", "https://tec.openplanner.team/stops/N106arb"], ["https://tec.openplanner.team/stops/Bmrscol1", "https://tec.openplanner.team/stops/Bmrscsp1"], ["https://tec.openplanner.team/stops/LFArela2", "https://tec.openplanner.team/stops/LFArela3"], ["https://tec.openplanner.team/stops/LHrkin-1", "https://tec.openplanner.team/stops/LREprea2"], ["https://tec.openplanner.team/stops/Cbfegch2", "https://tec.openplanner.team/stops/Cbfplch1"], ["https://tec.openplanner.team/stops/LSPclai1", "https://tec.openplanner.team/stops/LSPvigi2"], ["https://tec.openplanner.team/stops/Lanschu1", "https://tec.openplanner.team/stops/Lanstat1"], ["https://tec.openplanner.team/stops/N122afb", "https://tec.openplanner.team/stops/N304abb"], ["https://tec.openplanner.team/stops/LESgare1", "https://tec.openplanner.team/stops/LESlieg1"], ["https://tec.openplanner.team/stops/N352aea", "https://tec.openplanner.team/stops/N352aeb"], ["https://tec.openplanner.team/stops/Bpthcai1", "https://tec.openplanner.team/stops/Bpthcgo1"], ["https://tec.openplanner.team/stops/X837abb", "https://tec.openplanner.team/stops/X837acb"], ["https://tec.openplanner.team/stops/Bsompri1", "https://tec.openplanner.team/stops/N584awb"], ["https://tec.openplanner.team/stops/N554afa", "https://tec.openplanner.team/stops/N554aha"], ["https://tec.openplanner.team/stops/N506awa", "https://tec.openplanner.team/stops/N506bab"], ["https://tec.openplanner.team/stops/H4fr141a", "https://tec.openplanner.team/stops/H4te254b"], ["https://tec.openplanner.team/stops/N203aaa", "https://tec.openplanner.team/stops/N203aab"], ["https://tec.openplanner.team/stops/N549aaa", "https://tec.openplanner.team/stops/N578acb"], ["https://tec.openplanner.team/stops/H1sb144a", "https://tec.openplanner.team/stops/H1sb145b"], ["https://tec.openplanner.team/stops/NL68acb", "https://tec.openplanner.team/stops/NL68aea"], ["https://tec.openplanner.team/stops/X659asa", "https://tec.openplanner.team/stops/X741afa"], ["https://tec.openplanner.team/stops/Lghfore3", "https://tec.openplanner.team/stops/Lghwall1"], ["https://tec.openplanner.team/stops/LjedTEC1", "https://tec.openplanner.team/stops/Ljeespe2"], ["https://tec.openplanner.team/stops/Bbchm381", "https://tec.openplanner.team/stops/Bbchm382"], ["https://tec.openplanner.team/stops/LBTchai4", "https://tec.openplanner.team/stops/LCHsaul2"], ["https://tec.openplanner.team/stops/N305aca", "https://tec.openplanner.team/stops/N305acb"], ["https://tec.openplanner.team/stops/H4hs136a", "https://tec.openplanner.team/stops/H4hs136b"], ["https://tec.openplanner.team/stops/X796ada", "https://tec.openplanner.team/stops/X796agb"], ["https://tec.openplanner.team/stops/LWAlong3", "https://tec.openplanner.team/stops/LWApr%C3%A9s3"], ["https://tec.openplanner.team/stops/H2hg149a", "https://tec.openplanner.team/stops/H2hg154c"], ["https://tec.openplanner.team/stops/X786adb", "https://tec.openplanner.team/stops/X786aja"], ["https://tec.openplanner.team/stops/LElcent1", "https://tec.openplanner.team/stops/LElverl1"], ["https://tec.openplanner.team/stops/X917aaa", "https://tec.openplanner.team/stops/X917acb"], ["https://tec.openplanner.team/stops/Bdlmegl1", "https://tec.openplanner.team/stops/Bdvmcsa1"], ["https://tec.openplanner.team/stops/N548afa", "https://tec.openplanner.team/stops/N548aya"], ["https://tec.openplanner.team/stops/H1sg146a", "https://tec.openplanner.team/stops/H1sg150c"], ["https://tec.openplanner.team/stops/Cjuphil2", "https://tec.openplanner.team/stops/Cragill2"], ["https://tec.openplanner.team/stops/LeSsaal*", "https://tec.openplanner.team/stops/X793aqa"], ["https://tec.openplanner.team/stops/X937aka", "https://tec.openplanner.team/stops/X937ala"], ["https://tec.openplanner.team/stops/H4lz118b", "https://tec.openplanner.team/stops/H4lz121d"], ["https://tec.openplanner.team/stops/X901aob", "https://tec.openplanner.team/stops/X901bpa"], ["https://tec.openplanner.team/stops/Lmnfawe2", "https://tec.openplanner.team/stops/Lmnjeha1"], ["https://tec.openplanner.team/stops/N122aaa", "https://tec.openplanner.team/stops/N122aia"], ["https://tec.openplanner.team/stops/N548agc", "https://tec.openplanner.team/stops/N548agd"], ["https://tec.openplanner.team/stops/LHMchbl1", "https://tec.openplanner.team/stops/LMNheme1"], ["https://tec.openplanner.team/stops/N167aba", "https://tec.openplanner.team/stops/N167abb"], ["https://tec.openplanner.team/stops/H3th133a", "https://tec.openplanner.team/stops/H3th133b"], ["https://tec.openplanner.team/stops/H1em104a", "https://tec.openplanner.team/stops/H1em104b"], ["https://tec.openplanner.team/stops/LPRecol1", "https://tec.openplanner.team/stops/LPRecol2"], ["https://tec.openplanner.team/stops/LCvneuf2", "https://tec.openplanner.team/stops/LCvoufn2"], ["https://tec.openplanner.team/stops/H5fl100a", "https://tec.openplanner.team/stops/H5fl103b"], ["https://tec.openplanner.team/stops/Cchsud0", "https://tec.openplanner.team/stops/Cmlvitf2"], ["https://tec.openplanner.team/stops/N501gta", "https://tec.openplanner.team/stops/N501mta"], ["https://tec.openplanner.team/stops/X872agb", "https://tec.openplanner.team/stops/X890aea"], ["https://tec.openplanner.team/stops/H1gg116a", "https://tec.openplanner.team/stops/H1ry135a"], ["https://tec.openplanner.team/stops/N553aaa", "https://tec.openplanner.team/stops/N553afa"], ["https://tec.openplanner.team/stops/N517adc", "https://tec.openplanner.team/stops/NL74ahc"], ["https://tec.openplanner.team/stops/LMoviel1", "https://tec.openplanner.team/stops/LTrrich1"], ["https://tec.openplanner.team/stops/Bbldvaa1", "https://tec.openplanner.team/stops/Bnetegl1"], ["https://tec.openplanner.team/stops/X766aca", "https://tec.openplanner.team/stops/X766ada"], ["https://tec.openplanner.team/stops/H4ty299c", "https://tec.openplanner.team/stops/H4ty299f"], ["https://tec.openplanner.team/stops/N521alb", "https://tec.openplanner.team/stops/N527aea"], ["https://tec.openplanner.team/stops/LOTjacq1", "https://tec.openplanner.team/stops/LOTmonu2"], ["https://tec.openplanner.team/stops/N352aba", "https://tec.openplanner.team/stops/N353aba"], ["https://tec.openplanner.team/stops/N244abc", "https://tec.openplanner.team/stops/N244ajb"], ["https://tec.openplanner.team/stops/H2le147a", "https://tec.openplanner.team/stops/H2le152a"], ["https://tec.openplanner.team/stops/H4ae102b", "https://tec.openplanner.team/stops/H4eh100b"], ["https://tec.openplanner.team/stops/LHAheml2", "https://tec.openplanner.team/stops/LHAleru1"], ["https://tec.openplanner.team/stops/H1gr115a", "https://tec.openplanner.team/stops/H1gr120b"], ["https://tec.openplanner.team/stops/Cssgare2", "https://tec.openplanner.team/stops/Csspn1"], ["https://tec.openplanner.team/stops/LrAverb1", "https://tec.openplanner.team/stops/LrAwald2"], ["https://tec.openplanner.team/stops/X802aib", "https://tec.openplanner.team/stops/X802aoa"], ["https://tec.openplanner.team/stops/Cctchea1", "https://tec.openplanner.team/stops/NC11ahb"], ["https://tec.openplanner.team/stops/X763ahb", "https://tec.openplanner.team/stops/X763aib"], ["https://tec.openplanner.team/stops/Lbopote2", "https://tec.openplanner.team/stops/Lsevill2"], ["https://tec.openplanner.team/stops/Lghjans2", "https://tec.openplanner.team/stops/Ljejoli1"], ["https://tec.openplanner.team/stops/H2sv219a", "https://tec.openplanner.team/stops/H2sv219b"], ["https://tec.openplanner.team/stops/N553aoa", "https://tec.openplanner.team/stops/N553aob"], ["https://tec.openplanner.team/stops/LWEbr511", "https://tec.openplanner.team/stops/LWEbruy1"], ["https://tec.openplanner.team/stops/X666acb", "https://tec.openplanner.team/stops/X666aeb"], ["https://tec.openplanner.team/stops/LRCviad1", "https://tec.openplanner.team/stops/LTPbode2"], ["https://tec.openplanner.team/stops/Llglaha2", "https://tec.openplanner.team/stops/Llglys-2"], ["https://tec.openplanner.team/stops/Btslenf1", "https://tec.openplanner.team/stops/Btslhau1"], ["https://tec.openplanner.team/stops/Cmohotv3", "https://tec.openplanner.team/stops/Cmosaba4"], ["https://tec.openplanner.team/stops/Llmbouv1", "https://tec.openplanner.team/stops/Llmdeba1"], ["https://tec.openplanner.team/stops/LLNeg--1", "https://tec.openplanner.team/stops/LPOchan2"], ["https://tec.openplanner.team/stops/LBavive1", "https://tec.openplanner.team/stops/LTAairi2"], ["https://tec.openplanner.team/stops/LBWbatt1", "https://tec.openplanner.team/stops/LDArich1"], ["https://tec.openplanner.team/stops/Bitrcro3", "https://tec.openplanner.team/stops/Bitrh%C3%BBl2"], ["https://tec.openplanner.team/stops/Bboneta1", "https://tec.openplanner.team/stops/Bgzdfpo1"], ["https://tec.openplanner.team/stops/Ccpbrun2", "https://tec.openplanner.team/stops/H2ch125a"], ["https://tec.openplanner.team/stops/Llmeg--*", "https://tec.openplanner.team/stops/LWetrib1"], ["https://tec.openplanner.team/stops/LPLg90-1", "https://tec.openplanner.team/stops/LPLruis2"], ["https://tec.openplanner.team/stops/X901beb", "https://tec.openplanner.team/stops/X901bta"], ["https://tec.openplanner.team/stops/Lhrdelv2", "https://tec.openplanner.team/stops/Lhrpont2"], ["https://tec.openplanner.team/stops/LrcarsT3", "https://tec.openplanner.team/stops/Lrchero2"], ["https://tec.openplanner.team/stops/Bsdafra2", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/LAWhein1", "https://tec.openplanner.team/stops/LAWxhen1"], ["https://tec.openplanner.team/stops/H1hg180b", "https://tec.openplanner.team/stops/H1qy131b"], ["https://tec.openplanner.team/stops/LHDchar3", "https://tec.openplanner.team/stops/LJelava1"], ["https://tec.openplanner.team/stops/Cjuecho1", "https://tec.openplanner.team/stops/Cjuecho2"], ["https://tec.openplanner.team/stops/N584aja", "https://tec.openplanner.team/stops/N584ama"], ["https://tec.openplanner.team/stops/Lpeptwa1", "https://tec.openplanner.team/stops/LWecorn1"], ["https://tec.openplanner.team/stops/N501iga", "https://tec.openplanner.team/stops/N501zaa"], ["https://tec.openplanner.team/stops/LBGjacq1", "https://tec.openplanner.team/stops/LBGvill1"], ["https://tec.openplanner.team/stops/X620abb", "https://tec.openplanner.team/stops/X620ada"], ["https://tec.openplanner.team/stops/LLWchat2", "https://tec.openplanner.team/stops/LVBdela1"], ["https://tec.openplanner.team/stops/X822abb", "https://tec.openplanner.team/stops/X822apa"], ["https://tec.openplanner.team/stops/Brixres1", "https://tec.openplanner.team/stops/Brixroi2"], ["https://tec.openplanner.team/stops/Bgzddfh1", "https://tec.openplanner.team/stops/Bgzddur1"], ["https://tec.openplanner.team/stops/N301aoa", "https://tec.openplanner.team/stops/N301apa"], ["https://tec.openplanner.team/stops/N232abb", "https://tec.openplanner.team/stops/N232bqa"], ["https://tec.openplanner.team/stops/X307aca", "https://tec.openplanner.team/stops/X307ada"], ["https://tec.openplanner.team/stops/Bwatb4s1", "https://tec.openplanner.team/stops/Bwatgib2"], ["https://tec.openplanner.team/stops/Cgygazo2", "https://tec.openplanner.team/stops/Cgygazo8"], ["https://tec.openplanner.team/stops/X609acb", "https://tec.openplanner.team/stops/X609ana"], ["https://tec.openplanner.team/stops/LHAstal2", "https://tec.openplanner.team/stops/Lviweri2"], ["https://tec.openplanner.team/stops/LAMjeha1", "https://tec.openplanner.team/stops/LAMrich1"], ["https://tec.openplanner.team/stops/LTNcarr1", "https://tec.openplanner.team/stops/LTNcarr4"], ["https://tec.openplanner.team/stops/N120ama", "https://tec.openplanner.team/stops/N120ana"], ["https://tec.openplanner.team/stops/Bbiecoc1", "https://tec.openplanner.team/stops/Bbsgbos3"], ["https://tec.openplanner.team/stops/LKmmelo2", "https://tec.openplanner.team/stops/LMOfrel2"], ["https://tec.openplanner.team/stops/X818aaa", "https://tec.openplanner.team/stops/X818aab"], ["https://tec.openplanner.team/stops/N118aba", "https://tec.openplanner.team/stops/N118abb"], ["https://tec.openplanner.team/stops/X670ama", "https://tec.openplanner.team/stops/X670anb"], ["https://tec.openplanner.team/stops/Bgligra2", "https://tec.openplanner.team/stops/Btlbtbe3"], ["https://tec.openplanner.team/stops/LLmwaut2", "https://tec.openplanner.team/stops/LRemorr1"], ["https://tec.openplanner.team/stops/LCPbatt2", "https://tec.openplanner.team/stops/LCTpt--2"], ["https://tec.openplanner.team/stops/Cmmadma1", "https://tec.openplanner.team/stops/Cmmadma2"], ["https://tec.openplanner.team/stops/X825aea", "https://tec.openplanner.team/stops/X826aca"], ["https://tec.openplanner.team/stops/LBGroma2", "https://tec.openplanner.team/stops/LLnpomp2"], ["https://tec.openplanner.team/stops/Clbentr2", "https://tec.openplanner.team/stops/H1bi103b"], ["https://tec.openplanner.team/stops/X641afd", "https://tec.openplanner.team/stops/X641aob"], ["https://tec.openplanner.team/stops/H3go101b", "https://tec.openplanner.team/stops/H3lr107a"], ["https://tec.openplanner.team/stops/LWaruth2", "https://tec.openplanner.team/stops/LwYsarl2"], ["https://tec.openplanner.team/stops/Cdadest1", "https://tec.openplanner.team/stops/Cdadest2"], ["https://tec.openplanner.team/stops/Cmlcaya1", "https://tec.openplanner.team/stops/Cmlhaie1"], ["https://tec.openplanner.team/stops/LNAbass1", "https://tec.openplanner.team/stops/LNAbouh2"], ["https://tec.openplanner.team/stops/X660aba", "https://tec.openplanner.team/stops/X672acb"], ["https://tec.openplanner.team/stops/Bsambra2", "https://tec.openplanner.team/stops/Bsammon3"], ["https://tec.openplanner.team/stops/H4ty354a", "https://tec.openplanner.team/stops/H4ty360a"], ["https://tec.openplanner.team/stops/X921aqb", "https://tec.openplanner.team/stops/X925aea"], ["https://tec.openplanner.team/stops/X595aaa", "https://tec.openplanner.team/stops/X595aab"], ["https://tec.openplanner.team/stops/LACeg--1", "https://tec.openplanner.team/stops/NL74aea"], ["https://tec.openplanner.team/stops/X903acb", "https://tec.openplanner.team/stops/X903adb"], ["https://tec.openplanner.team/stops/N512agc", "https://tec.openplanner.team/stops/NL57aea"], ["https://tec.openplanner.team/stops/Cwgcroi2", "https://tec.openplanner.team/stops/Cwgpatr2"], ["https://tec.openplanner.team/stops/N302aea", "https://tec.openplanner.team/stops/N302aeb"], ["https://tec.openplanner.team/stops/Csylaha2", "https://tec.openplanner.team/stops/Csystan2"], ["https://tec.openplanner.team/stops/N117aob", "https://tec.openplanner.team/stops/N117aoc"], ["https://tec.openplanner.team/stops/Lhrherm2", "https://tec.openplanner.team/stops/Lmirca-2"], ["https://tec.openplanner.team/stops/X662aeb", "https://tec.openplanner.team/stops/X662arb"], ["https://tec.openplanner.team/stops/X361aba", "https://tec.openplanner.team/stops/X371aja"], ["https://tec.openplanner.team/stops/H1do119a", "https://tec.openplanner.team/stops/H1do119b"], ["https://tec.openplanner.team/stops/Cbmpopr1", "https://tec.openplanner.team/stops/Csschat1"], ["https://tec.openplanner.team/stops/N501eea", "https://tec.openplanner.team/stops/N501eeb"], ["https://tec.openplanner.team/stops/H1th182a", "https://tec.openplanner.team/stops/H2na131b"], ["https://tec.openplanner.team/stops/H1ne145a", "https://tec.openplanner.team/stops/H1ne149b"], ["https://tec.openplanner.team/stops/LeSsaal*", "https://tec.openplanner.team/stops/LlE02--1"], ["https://tec.openplanner.team/stops/H3bi115b", "https://tec.openplanner.team/stops/H3bi117a"], ["https://tec.openplanner.team/stops/H4hq129b", "https://tec.openplanner.team/stops/H4hq132b"], ["https://tec.openplanner.team/stops/X670acb", "https://tec.openplanner.team/stops/X670aka"], ["https://tec.openplanner.team/stops/LHTptha4", "https://tec.openplanner.team/stops/LVIvert2"], ["https://tec.openplanner.team/stops/X738adb", "https://tec.openplanner.team/stops/X754amb"], ["https://tec.openplanner.team/stops/X717aea", "https://tec.openplanner.team/stops/X717aia"], ["https://tec.openplanner.team/stops/LCLgend2", "https://tec.openplanner.team/stops/NL35adc"], ["https://tec.openplanner.team/stops/H1gy114b", "https://tec.openplanner.team/stops/H1gy116a"], ["https://tec.openplanner.team/stops/H4mb205a", "https://tec.openplanner.team/stops/H4mb205b"], ["https://tec.openplanner.team/stops/Crodebr1", "https://tec.openplanner.team/stops/Crodebr2"], ["https://tec.openplanner.team/stops/Lanyser1", "https://tec.openplanner.team/stops/Lanyser2"], ["https://tec.openplanner.team/stops/LMNpann1", "https://tec.openplanner.team/stops/LMNpann2"], ["https://tec.openplanner.team/stops/N122afa", "https://tec.openplanner.team/stops/N122aga"], ["https://tec.openplanner.team/stops/N529abd", "https://tec.openplanner.team/stops/N529ahb"], ["https://tec.openplanner.team/stops/Cna4che2", "https://tec.openplanner.team/stops/Cnawari2"], ["https://tec.openplanner.team/stops/N569aca", "https://tec.openplanner.team/stops/N569aea"], ["https://tec.openplanner.team/stops/Bbcoroy1", "https://tec.openplanner.team/stops/Bhen5ma1"], ["https://tec.openplanner.team/stops/Bbsicea2", "https://tec.openplanner.team/stops/Bbsivil1"], ["https://tec.openplanner.team/stops/Cstcent2", "https://tec.openplanner.team/stops/Cstvape1"], ["https://tec.openplanner.team/stops/Brebblo1", "https://tec.openplanner.team/stops/Brebchb2"], ["https://tec.openplanner.team/stops/H4ft134b", "https://tec.openplanner.team/stops/H4rm108a"], ["https://tec.openplanner.team/stops/N501mxa", "https://tec.openplanner.team/stops/N527afb"], ["https://tec.openplanner.team/stops/LAUmerc1", "https://tec.openplanner.team/stops/LHMa2321"], ["https://tec.openplanner.team/stops/X910agb", "https://tec.openplanner.team/stops/X910ahb"], ["https://tec.openplanner.team/stops/H4le128a", "https://tec.openplanner.team/stops/H4ry130a"], ["https://tec.openplanner.team/stops/LLUdoya1", "https://tec.openplanner.team/stops/LLUvent5"], ["https://tec.openplanner.team/stops/N551aga", "https://tec.openplanner.team/stops/N568acb"], ["https://tec.openplanner.team/stops/LhSbruc1", "https://tec.openplanner.team/stops/LhSkirc1"], ["https://tec.openplanner.team/stops/N201aee", "https://tec.openplanner.team/stops/N201ata"], ["https://tec.openplanner.team/stops/LbThau11", "https://tec.openplanner.team/stops/LmR50--2"], ["https://tec.openplanner.team/stops/H4by117a", "https://tec.openplanner.team/stops/H4by119b"], ["https://tec.openplanner.team/stops/X224aab", "https://tec.openplanner.team/stops/X224abb"], ["https://tec.openplanner.team/stops/LlCgren1", "https://tec.openplanner.team/stops/LrAkape1"], ["https://tec.openplanner.team/stops/Cnaplbu1", "https://tec.openplanner.team/stops/Cnaplbu2"], ["https://tec.openplanner.team/stops/H4eh100a", "https://tec.openplanner.team/stops/H4sl154a"], ["https://tec.openplanner.team/stops/X664adc", "https://tec.openplanner.team/stops/X664add"], ["https://tec.openplanner.team/stops/H1ho132a", "https://tec.openplanner.team/stops/H1ho132b"], ["https://tec.openplanner.team/stops/Cjochap2", "https://tec.openplanner.team/stops/NC02abb"], ["https://tec.openplanner.team/stops/LoUzent1", "https://tec.openplanner.team/stops/X769arb"], ["https://tec.openplanner.team/stops/X902afc", "https://tec.openplanner.team/stops/X902afd"], ["https://tec.openplanner.team/stops/LJA65h-1", "https://tec.openplanner.team/stops/LJAfawe1"], ["https://tec.openplanner.team/stops/Lmlboul2", "https://tec.openplanner.team/stops/Lmlscie2"], ["https://tec.openplanner.team/stops/H1qg138a", "https://tec.openplanner.team/stops/H1qy133b"], ["https://tec.openplanner.team/stops/H1do113a", "https://tec.openplanner.team/stops/H1do131c"], ["https://tec.openplanner.team/stops/LBSpail3", "https://tec.openplanner.team/stops/LBSvi322"], ["https://tec.openplanner.team/stops/LHecime1", "https://tec.openplanner.team/stops/Lheelva2"], ["https://tec.openplanner.team/stops/LSomonu1", "https://tec.openplanner.team/stops/LSorobe1"], ["https://tec.openplanner.team/stops/LlNbusc2", "https://tec.openplanner.team/stops/LWEcomp1"], ["https://tec.openplanner.team/stops/H1ba116b", "https://tec.openplanner.team/stops/H1qu104a"], ["https://tec.openplanner.team/stops/LESslmo1", "https://tec.openplanner.team/stops/LESslmo2"], ["https://tec.openplanner.team/stops/N103abb", "https://tec.openplanner.team/stops/N103adb"], ["https://tec.openplanner.team/stops/H4ty281b", "https://tec.openplanner.team/stops/H4ty329a"], ["https://tec.openplanner.team/stops/LGMvoue2", "https://tec.openplanner.team/stops/LSEcent2"], ["https://tec.openplanner.team/stops/X636axa", "https://tec.openplanner.team/stops/X636ayb"], ["https://tec.openplanner.team/stops/X614bbb", "https://tec.openplanner.team/stops/X614bdb"], ["https://tec.openplanner.team/stops/Bptblma1", "https://tec.openplanner.team/stops/Bptbsar1"], ["https://tec.openplanner.team/stops/H1ba106b", "https://tec.openplanner.team/stops/H1ba114c"], ["https://tec.openplanner.team/stops/Landolh3", "https://tec.openplanner.team/stops/Lanmouf1"], ["https://tec.openplanner.team/stops/Bcercsa1", "https://tec.openplanner.team/stops/Bcercsa2"], ["https://tec.openplanner.team/stops/Lvc4bra1", "https://tec.openplanner.team/stops/Lvc4bra2"], ["https://tec.openplanner.team/stops/N501jrb", "https://tec.openplanner.team/stops/N501lfb"], ["https://tec.openplanner.team/stops/Cptberg1", "https://tec.openplanner.team/stops/Cptberg2"], ["https://tec.openplanner.team/stops/Clvimtr1", "https://tec.openplanner.team/stops/Clvimtr2"], ["https://tec.openplanner.team/stops/H5rx100b", "https://tec.openplanner.team/stops/H5rx102a"], ["https://tec.openplanner.team/stops/X396aab", "https://tec.openplanner.team/stops/X922aaa"], ["https://tec.openplanner.team/stops/Ctmmonu1", "https://tec.openplanner.team/stops/Ctmmonu2"], ["https://tec.openplanner.team/stops/Bbghepi1", "https://tec.openplanner.team/stops/Bsteegl1"], ["https://tec.openplanner.team/stops/X605aea", "https://tec.openplanner.team/stops/X605aeb"], ["https://tec.openplanner.team/stops/H1er109a", "https://tec.openplanner.team/stops/H1so142c"], ["https://tec.openplanner.team/stops/H1pa100b", "https://tec.openplanner.team/stops/H1pa118a"], ["https://tec.openplanner.team/stops/LBVzand1", "https://tec.openplanner.team/stops/LBVzand2"], ["https://tec.openplanner.team/stops/N222aea", "https://tec.openplanner.team/stops/X222azb"], ["https://tec.openplanner.team/stops/Bsamc7d1", "https://tec.openplanner.team/stops/Bsamc7d2"], ["https://tec.openplanner.team/stops/Laghetr1", "https://tec.openplanner.team/stops/Laghetr2"], ["https://tec.openplanner.team/stops/LHCmais1", "https://tec.openplanner.team/stops/LWEmito1"], ["https://tec.openplanner.team/stops/Cfccol2", "https://tec.openplanner.team/stops/Cfcgrat1"], ["https://tec.openplanner.team/stops/Cfojoli2", "https://tec.openplanner.team/stops/Cptberg1"], ["https://tec.openplanner.team/stops/LBEchan1", "https://tec.openplanner.team/stops/LBEcroi2"], ["https://tec.openplanner.team/stops/X396afa", "https://tec.openplanner.team/stops/X919amb"], ["https://tec.openplanner.team/stops/Cjucomb2", "https://tec.openplanner.team/stops/Clomakr1"], ["https://tec.openplanner.team/stops/H1hv135b", "https://tec.openplanner.team/stops/H1hv136a"], ["https://tec.openplanner.team/stops/H2mo145b", "https://tec.openplanner.team/stops/H2mo146b"], ["https://tec.openplanner.team/stops/H2ch103c", "https://tec.openplanner.team/stops/H2ch108a"], ["https://tec.openplanner.team/stops/NC14aba", "https://tec.openplanner.team/stops/NC44aba"], ["https://tec.openplanner.team/stops/H4fr145b", "https://tec.openplanner.team/stops/H4rc234a"], ["https://tec.openplanner.team/stops/LBhsign2", "https://tec.openplanner.team/stops/LtEnach1"], ["https://tec.openplanner.team/stops/Btsleco2", "https://tec.openplanner.team/stops/Btslnil2"], ["https://tec.openplanner.team/stops/LSPdesc2", "https://tec.openplanner.team/stops/LSPhapa1"], ["https://tec.openplanner.team/stops/N528atb", "https://tec.openplanner.team/stops/N542aqb"], ["https://tec.openplanner.team/stops/LBHinva1", "https://tec.openplanner.team/stops/LBHinva2"], ["https://tec.openplanner.team/stops/Bblapje1", "https://tec.openplanner.team/stops/Bblapje2"], ["https://tec.openplanner.team/stops/H5bl121a", "https://tec.openplanner.team/stops/H5bl124a"], ["https://tec.openplanner.team/stops/H1lb134a", "https://tec.openplanner.team/stops/H1lb153b"], ["https://tec.openplanner.team/stops/N537akb", "https://tec.openplanner.team/stops/N562bia"], ["https://tec.openplanner.team/stops/H4rs117b", "https://tec.openplanner.team/stops/H4rs119b"], ["https://tec.openplanner.team/stops/Lhr3jui2", "https://tec.openplanner.team/stops/Lhrferr2"], ["https://tec.openplanner.team/stops/X801aqb", "https://tec.openplanner.team/stops/X801bdd"], ["https://tec.openplanner.team/stops/N117ajb", "https://tec.openplanner.team/stops/N117bba"], ["https://tec.openplanner.team/stops/H1bn148b", "https://tec.openplanner.team/stops/H1qp150b"], ["https://tec.openplanner.team/stops/Cchprun1", "https://tec.openplanner.team/stops/Cchtiro3"], ["https://tec.openplanner.team/stops/Bzlufbo1", "https://tec.openplanner.team/stops/Bzlufbo2"], ["https://tec.openplanner.team/stops/LJAdeho3", "https://tec.openplanner.team/stops/LJAdeho4"], ["https://tec.openplanner.team/stops/X902aaa", "https://tec.openplanner.team/stops/X902aoa"], ["https://tec.openplanner.team/stops/H1wi150b", "https://tec.openplanner.team/stops/H1wi155b"], ["https://tec.openplanner.team/stops/X831aea", "https://tec.openplanner.team/stops/X831aeb"], ["https://tec.openplanner.team/stops/X899acb", "https://tec.openplanner.team/stops/X899adb"], ["https://tec.openplanner.team/stops/LrDhind2", "https://tec.openplanner.team/stops/LrDrose4"], ["https://tec.openplanner.team/stops/N106ala", "https://tec.openplanner.team/stops/N106anb"], ["https://tec.openplanner.team/stops/Btilmar1", "https://tec.openplanner.team/stops/Btilsnc1"], ["https://tec.openplanner.team/stops/LGLcour4", "https://tec.openplanner.team/stops/LGLecol1"], ["https://tec.openplanner.team/stops/Lhrbell1", "https://tec.openplanner.team/stops/Lhrpost1"], ["https://tec.openplanner.team/stops/Blascim1", "https://tec.openplanner.team/stops/Blasvil1"], ["https://tec.openplanner.team/stops/H1er110b", "https://tec.openplanner.team/stops/H1er112a"], ["https://tec.openplanner.team/stops/H2hg153b", "https://tec.openplanner.team/stops/H2hg156a"], ["https://tec.openplanner.team/stops/LFEland1", "https://tec.openplanner.team/stops/LMYvill1"], ["https://tec.openplanner.team/stops/Bgemga10", "https://tec.openplanner.team/stops/N522bvd"], ["https://tec.openplanner.team/stops/N390aab", "https://tec.openplanner.team/stops/N390adb"], ["https://tec.openplanner.team/stops/Bblafrn1", "https://tec.openplanner.team/stops/Bblasse1"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/Crcrlf2"], ["https://tec.openplanner.team/stops/X908afb", "https://tec.openplanner.team/stops/X908ala"], ["https://tec.openplanner.team/stops/X764aca", "https://tec.openplanner.team/stops/X764aga"], ["https://tec.openplanner.team/stops/Ccoh1211", "https://tec.openplanner.team/stops/Crodrai1"], ["https://tec.openplanner.team/stops/Ccychba1", "https://tec.openplanner.team/stops/Crbrgar1"], ["https://tec.openplanner.team/stops/H2ll195a", "https://tec.openplanner.team/stops/H2ll195b"], ["https://tec.openplanner.team/stops/H4bi156b", "https://tec.openplanner.team/stops/H4eg106b"], ["https://tec.openplanner.team/stops/X937aia", "https://tec.openplanner.team/stops/X937ajb"], ["https://tec.openplanner.team/stops/X611ada", "https://tec.openplanner.team/stops/X611aea"], ["https://tec.openplanner.team/stops/LaAbush*", "https://tec.openplanner.team/stops/LVAbuss1"], ["https://tec.openplanner.team/stops/LWieg--*", "https://tec.openplanner.team/stops/LXhmara1"], ["https://tec.openplanner.team/stops/LBAfort2", "https://tec.openplanner.team/stops/LBAtign2"], ["https://tec.openplanner.team/stops/X983aea", "https://tec.openplanner.team/stops/X983aeb"], ["https://tec.openplanner.team/stops/H1wa162a", "https://tec.openplanner.team/stops/H1wa162b"], ["https://tec.openplanner.team/stops/N214adb", "https://tec.openplanner.team/stops/N214afb"], ["https://tec.openplanner.team/stops/X744aaa", "https://tec.openplanner.team/stops/X744abb"], ["https://tec.openplanner.team/stops/Lhemilm1", "https://tec.openplanner.team/stops/Lhepaqu2"], ["https://tec.openplanner.team/stops/LRmkast*", "https://tec.openplanner.team/stops/LSInd--2"], ["https://tec.openplanner.team/stops/H1fr111a", "https://tec.openplanner.team/stops/H1fr127a"], ["https://tec.openplanner.team/stops/H1hc127a", "https://tec.openplanner.team/stops/H1hc127d"], ["https://tec.openplanner.team/stops/LBAcent2", "https://tec.openplanner.team/stops/LBApak2*"], ["https://tec.openplanner.team/stops/X791abb", "https://tec.openplanner.team/stops/X791aca"], ["https://tec.openplanner.team/stops/N543cbb", "https://tec.openplanner.team/stops/N543cfa"], ["https://tec.openplanner.team/stops/H4ht173a", "https://tec.openplanner.team/stops/H4te261a"], ["https://tec.openplanner.team/stops/Blincal2", "https://tec.openplanner.team/stops/Bolgfon2"], ["https://tec.openplanner.team/stops/Cgzclef2", "https://tec.openplanner.team/stops/Cgzha621"], ["https://tec.openplanner.team/stops/N139aaa", "https://tec.openplanner.team/stops/N146adb"], ["https://tec.openplanner.team/stops/LsCkirc2", "https://tec.openplanner.team/stops/LwPdorf1"], ["https://tec.openplanner.team/stops/Llmbouv2", "https://tec.openplanner.team/stops/Llmeg--2"], ["https://tec.openplanner.team/stops/H1sp356b", "https://tec.openplanner.team/stops/H1ss349b"], ["https://tec.openplanner.team/stops/Cmmmarl1", "https://tec.openplanner.team/stops/Cmmp2052"], ["https://tec.openplanner.team/stops/Cchbaza1", "https://tec.openplanner.team/stops/Cchccom1"], ["https://tec.openplanner.team/stops/H1by101b", "https://tec.openplanner.team/stops/H1by109b"], ["https://tec.openplanner.team/stops/N102aca", "https://tec.openplanner.team/stops/N103aaa"], ["https://tec.openplanner.team/stops/LScchpl1", "https://tec.openplanner.team/stops/LVTeg--2"], ["https://tec.openplanner.team/stops/H4ty295c", "https://tec.openplanner.team/stops/H4ty295d"], ["https://tec.openplanner.team/stops/Cmychap3", "https://tec.openplanner.team/stops/Cmychap4"], ["https://tec.openplanner.team/stops/Bblacim2", "https://tec.openplanner.team/stops/Bblavol2"], ["https://tec.openplanner.team/stops/LROgeuz1", "https://tec.openplanner.team/stops/LROmons1"], ["https://tec.openplanner.team/stops/LHCmais1", "https://tec.openplanner.team/stops/LHCpaci1"], ["https://tec.openplanner.team/stops/NL78aab", "https://tec.openplanner.team/stops/NL78aba"], ["https://tec.openplanner.team/stops/Bbstdpa1", "https://tec.openplanner.team/stops/Bbststa1"], ["https://tec.openplanner.team/stops/X804aob", "https://tec.openplanner.team/stops/X804brb"], ["https://tec.openplanner.team/stops/N141aja", "https://tec.openplanner.team/stops/N146abb"], ["https://tec.openplanner.team/stops/Bjodcoi2", "https://tec.openplanner.team/stops/Bjodtpo1"], ["https://tec.openplanner.team/stops/H4hu120a", "https://tec.openplanner.team/stops/H4og216b"], ["https://tec.openplanner.team/stops/NH01aka", "https://tec.openplanner.team/stops/NH01akb"], ["https://tec.openplanner.team/stops/Ccicloc1", "https://tec.openplanner.team/stops/Ccigene2"], ["https://tec.openplanner.team/stops/H4br107b", "https://tec.openplanner.team/stops/H4br111b"], ["https://tec.openplanner.team/stops/Ccoptca1", "https://tec.openplanner.team/stops/Cgosmoi2"], ["https://tec.openplanner.team/stops/N222ayb", "https://tec.openplanner.team/stops/X919ama"], ["https://tec.openplanner.team/stops/H1eu107a", "https://tec.openplanner.team/stops/H1eu107b"], ["https://tec.openplanner.team/stops/Bdlmgla4", "https://tec.openplanner.team/stops/Bwavdmo3"], ["https://tec.openplanner.team/stops/X804aga", "https://tec.openplanner.team/stops/X804bda"], ["https://tec.openplanner.team/stops/LSpfond1", "https://tec.openplanner.team/stops/LSpvanr1"], ["https://tec.openplanner.team/stops/LBaeg--1", "https://tec.openplanner.team/stops/LBajean1"], ["https://tec.openplanner.team/stops/LGepeck1", "https://tec.openplanner.team/stops/LMschap1"], ["https://tec.openplanner.team/stops/N118avd", "https://tec.openplanner.team/stops/N118bbb"], ["https://tec.openplanner.team/stops/H1me118a", "https://tec.openplanner.team/stops/H1me118b"], ["https://tec.openplanner.team/stops/N505adb", "https://tec.openplanner.team/stops/N505aea"], ["https://tec.openplanner.team/stops/N254aea", "https://tec.openplanner.team/stops/N254afb"], ["https://tec.openplanner.team/stops/Bottcli4", "https://tec.openplanner.team/stops/Bottra91"], ["https://tec.openplanner.team/stops/N135aha", "https://tec.openplanner.team/stops/N135aib"], ["https://tec.openplanner.team/stops/LCtcref1", "https://tec.openplanner.team/stops/X750bpb"], ["https://tec.openplanner.team/stops/Ljugode1", "https://tec.openplanner.team/stops/Ljuvert2"], ["https://tec.openplanner.team/stops/LJueg--1", "https://tec.openplanner.team/stops/LMolone1"], ["https://tec.openplanner.team/stops/H4mo140b", "https://tec.openplanner.team/stops/H4mo158a"], ["https://tec.openplanner.team/stops/H4fr385a", "https://tec.openplanner.team/stops/H4ka188a"], ["https://tec.openplanner.team/stops/LNCmarc1", "https://tec.openplanner.team/stops/LNCmc--1"], ["https://tec.openplanner.team/stops/X396aea", "https://tec.openplanner.team/stops/X919ama"], ["https://tec.openplanner.team/stops/N230aja", "https://tec.openplanner.team/stops/N230ajb"], ["https://tec.openplanner.team/stops/H1hw121b", "https://tec.openplanner.team/stops/H1hw123a"], ["https://tec.openplanner.team/stops/Bhvltol1", "https://tec.openplanner.team/stops/Bmsgpfo2"], ["https://tec.openplanner.team/stops/H1bo102a", "https://tec.openplanner.team/stops/H1te178b"], ["https://tec.openplanner.team/stops/Cfarcam1", "https://tec.openplanner.team/stops/Cfastan2"], ["https://tec.openplanner.team/stops/LeUkehr1", "https://tec.openplanner.team/stops/LeUkehr4"], ["https://tec.openplanner.team/stops/H4ma398a", "https://tec.openplanner.team/stops/H4ma419a"], ["https://tec.openplanner.team/stops/Bnivchh1", "https://tec.openplanner.team/stops/Bnivspi2"], ["https://tec.openplanner.team/stops/N301amb", "https://tec.openplanner.team/stops/N301ana"], ["https://tec.openplanner.team/stops/H1ob341a", "https://tec.openplanner.team/stops/H1ob341b"], ["https://tec.openplanner.team/stops/LESevie1", "https://tec.openplanner.team/stops/LFNhame1"], ["https://tec.openplanner.team/stops/X946afa", "https://tec.openplanner.team/stops/X946aga"], ["https://tec.openplanner.team/stops/Baudsju1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/N222aab", "https://tec.openplanner.team/stops/X222alb"], ["https://tec.openplanner.team/stops/Bllnfle1", "https://tec.openplanner.team/stops/Bllnjpa1"], ["https://tec.openplanner.team/stops/X674aaa", "https://tec.openplanner.team/stops/X674aab"], ["https://tec.openplanner.team/stops/X784aca", "https://tec.openplanner.team/stops/X784ada"], ["https://tec.openplanner.team/stops/H4ve134b", "https://tec.openplanner.team/stops/H4ve136b"], ["https://tec.openplanner.team/stops/Lpegiet1", "https://tec.openplanner.team/stops/Lpevove2"], ["https://tec.openplanner.team/stops/H5qu143a", "https://tec.openplanner.team/stops/H5qu156d"], ["https://tec.openplanner.team/stops/X889abb", "https://tec.openplanner.team/stops/X889acb"], ["https://tec.openplanner.team/stops/LLTcent1", "https://tec.openplanner.team/stops/LLTeg--1"], ["https://tec.openplanner.team/stops/Cbbcent2", "https://tec.openplanner.team/stops/Cssgare1"], ["https://tec.openplanner.team/stops/X613aab", "https://tec.openplanner.team/stops/X613abb"], ["https://tec.openplanner.team/stops/N506ajb", "https://tec.openplanner.team/stops/N506asb"], ["https://tec.openplanner.team/stops/LLmwaut1", "https://tec.openplanner.team/stops/LLmwaut2"], ["https://tec.openplanner.team/stops/N501geb", "https://tec.openplanner.team/stops/N501hkb"], ["https://tec.openplanner.team/stops/H1mr124b", "https://tec.openplanner.team/stops/H1mr126a"], ["https://tec.openplanner.team/stops/N211aea", "https://tec.openplanner.team/stops/N211afa"], ["https://tec.openplanner.team/stops/X993aaa", "https://tec.openplanner.team/stops/X993abc"], ["https://tec.openplanner.team/stops/H4ir162a", "https://tec.openplanner.team/stops/H5at141b"], ["https://tec.openplanner.team/stops/Bovecha1", "https://tec.openplanner.team/stops/Bovetdo1"], ["https://tec.openplanner.team/stops/N501cnb", "https://tec.openplanner.team/stops/N501csb"], ["https://tec.openplanner.team/stops/H1br127b", "https://tec.openplanner.team/stops/H1vs144a"], ["https://tec.openplanner.team/stops/LSubass2", "https://tec.openplanner.team/stops/LSuusin1"], ["https://tec.openplanner.team/stops/H2an103a", "https://tec.openplanner.team/stops/H2ca102a"], ["https://tec.openplanner.team/stops/N349acb", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/Cgxchea2", "https://tec.openplanner.team/stops/Cgxdeba1"], ["https://tec.openplanner.team/stops/N423aab", "https://tec.openplanner.team/stops/N423afa"], ["https://tec.openplanner.team/stops/X685aib", "https://tec.openplanner.team/stops/X685ama"], ["https://tec.openplanner.team/stops/H4wa161a", "https://tec.openplanner.team/stops/H4wa161b"], ["https://tec.openplanner.team/stops/H2an110a", "https://tec.openplanner.team/stops/H2an110b"], ["https://tec.openplanner.team/stops/H4ka174a", "https://tec.openplanner.team/stops/H4ka180a"], ["https://tec.openplanner.team/stops/LRMn58-2", "https://tec.openplanner.team/stops/LSfcoll*"], ["https://tec.openplanner.team/stops/Cgocat1", "https://tec.openplanner.team/stops/Cgoetun3"], ["https://tec.openplanner.team/stops/N540aba", "https://tec.openplanner.team/stops/N540abb"], ["https://tec.openplanner.team/stops/Cfrfede1", "https://tec.openplanner.team/stops/Cfrfede2"], ["https://tec.openplanner.team/stops/LSznoel1", "https://tec.openplanner.team/stops/LSznoel2"], ["https://tec.openplanner.team/stops/Bsdecdi2", "https://tec.openplanner.team/stops/N574aeb"], ["https://tec.openplanner.team/stops/LPoewer2", "https://tec.openplanner.team/stops/LPoneuf1"], ["https://tec.openplanner.team/stops/H4gz114b", "https://tec.openplanner.team/stops/H4gz115a"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/Csspn1"], ["https://tec.openplanner.team/stops/X805ajb", "https://tec.openplanner.team/stops/X831aaa"], ["https://tec.openplanner.team/stops/Blimsob2", "https://tec.openplanner.team/stops/Blimvcg2"], ["https://tec.openplanner.team/stops/Lmopans2", "https://tec.openplanner.team/stops/Lmopans4"], ["https://tec.openplanner.team/stops/Cgoclad1", "https://tec.openplanner.team/stops/Cgoclad2"], ["https://tec.openplanner.team/stops/X758ama", "https://tec.openplanner.team/stops/X758amb"], ["https://tec.openplanner.team/stops/X908aaa", "https://tec.openplanner.team/stops/X908ada"], ["https://tec.openplanner.team/stops/Lcavign1", "https://tec.openplanner.team/stops/LNipla4"], ["https://tec.openplanner.team/stops/LGlbour2", "https://tec.openplanner.team/stops/LGlcite2"], ["https://tec.openplanner.team/stops/X359adb", "https://tec.openplanner.team/stops/X371aaa"], ["https://tec.openplanner.team/stops/X542adb", "https://tec.openplanner.team/stops/X542aea"], ["https://tec.openplanner.team/stops/Cwgmell2", "https://tec.openplanner.team/stops/Cwgmell3"], ["https://tec.openplanner.team/stops/Bpercsp1", "https://tec.openplanner.team/stops/N524ala"], ["https://tec.openplanner.team/stops/X837aec", "https://tec.openplanner.team/stops/X837ajb"], ["https://tec.openplanner.team/stops/Llgerac1", "https://tec.openplanner.team/stops/Llgfont4"], ["https://tec.openplanner.team/stops/LBYegli2", "https://tec.openplanner.team/stops/LHEelva1"], ["https://tec.openplanner.team/stops/X636aka", "https://tec.openplanner.team/stops/X636akb"], ["https://tec.openplanner.team/stops/N211apa", "https://tec.openplanner.team/stops/N211apb"], ["https://tec.openplanner.team/stops/Bjodfab1", "https://tec.openplanner.team/stops/Bjodfab2"], ["https://tec.openplanner.team/stops/N232beb", "https://tec.openplanner.team/stops/N232bvb"], ["https://tec.openplanner.team/stops/X727adb", "https://tec.openplanner.team/stops/X727aea"], ["https://tec.openplanner.team/stops/X836aaa", "https://tec.openplanner.team/stops/X836acb"], ["https://tec.openplanner.team/stops/NB33aia", "https://tec.openplanner.team/stops/NB33aja"], ["https://tec.openplanner.team/stops/N501cpa", "https://tec.openplanner.team/stops/N501kka"], ["https://tec.openplanner.team/stops/LhSbruc2", "https://tec.openplanner.team/stops/LhSgete2"], ["https://tec.openplanner.team/stops/N203abb", "https://tec.openplanner.team/stops/N560aba"], ["https://tec.openplanner.team/stops/Cjupuis2", "https://tec.openplanner.team/stops/Clolidl1"], ["https://tec.openplanner.team/stops/Bcbqcha2", "https://tec.openplanner.team/stops/Bhalcbr2"], ["https://tec.openplanner.team/stops/Lpeeg--1", "https://tec.openplanner.team/stops/Lpemata2"], ["https://tec.openplanner.team/stops/H4bh100a", "https://tec.openplanner.team/stops/H4bh101b"], ["https://tec.openplanner.team/stops/Csuptou1", "https://tec.openplanner.team/stops/Csuptou2"], ["https://tec.openplanner.team/stops/N343aba", "https://tec.openplanner.team/stops/X343ahb"], ["https://tec.openplanner.team/stops/N139aca", "https://tec.openplanner.team/stops/N139adb"], ["https://tec.openplanner.team/stops/LWepost2", "https://tec.openplanner.team/stops/LWexhav1"], ["https://tec.openplanner.team/stops/Cciecol2", "https://tec.openplanner.team/stops/NC02aua"], ["https://tec.openplanner.team/stops/Csufrom5", "https://tec.openplanner.team/stops/Csufrom6"], ["https://tec.openplanner.team/stops/LhIfrie2", "https://tec.openplanner.team/stops/LrDzoll3"], ["https://tec.openplanner.team/stops/H1te188a", "https://tec.openplanner.team/stops/H1te188b"], ["https://tec.openplanner.team/stops/X733aha", "https://tec.openplanner.team/stops/X733aia"], ["https://tec.openplanner.team/stops/X670aqb", "https://tec.openplanner.team/stops/X671aaa"], ["https://tec.openplanner.team/stops/LMOm48-1", "https://tec.openplanner.team/stops/LMOm64-1"], ["https://tec.openplanner.team/stops/X662afa", "https://tec.openplanner.team/stops/X662ana"], ["https://tec.openplanner.team/stops/Lmlmich1", "https://tec.openplanner.team/stops/Lmlmich2"], ["https://tec.openplanner.team/stops/N894acb", "https://tec.openplanner.team/stops/X887aaa"], ["https://tec.openplanner.team/stops/Lhrpont1", "https://tec.openplanner.team/stops/Lhrwigi2"], ["https://tec.openplanner.team/stops/LNIec--1", "https://tec.openplanner.team/stops/LNIhaut1"], ["https://tec.openplanner.team/stops/N340aba", "https://tec.openplanner.team/stops/N340acb"], ["https://tec.openplanner.team/stops/X823afd", "https://tec.openplanner.team/stops/X825aab"], ["https://tec.openplanner.team/stops/Becepon2", "https://tec.openplanner.team/stops/H2ec112a"], ["https://tec.openplanner.team/stops/Bspkker1", "https://tec.openplanner.team/stops/Bspkkhe2"], ["https://tec.openplanner.team/stops/Lrcauto1", "https://tec.openplanner.team/stops/Lrcstad1"], ["https://tec.openplanner.team/stops/Ctachst2", "https://tec.openplanner.team/stops/N543bqa"], ["https://tec.openplanner.team/stops/Cjupui02", "https://tec.openplanner.team/stops/Cjurogi1"], ["https://tec.openplanner.team/stops/Caimeno4", "https://tec.openplanner.team/stops/Crsaise1"], ["https://tec.openplanner.team/stops/Llgbour2", "https://tec.openplanner.team/stops/Lsccime2"], ["https://tec.openplanner.team/stops/X609aoa", "https://tec.openplanner.team/stops/X631acb"], ["https://tec.openplanner.team/stops/H4ty272b", "https://tec.openplanner.team/stops/H4ty306a"], ["https://tec.openplanner.team/stops/X754aga", "https://tec.openplanner.team/stops/X754amb"], ["https://tec.openplanner.team/stops/H1vb141a", "https://tec.openplanner.team/stops/H1vb148a"], ["https://tec.openplanner.team/stops/LCEcent1", "https://tec.openplanner.team/stops/LCEeg--1"], ["https://tec.openplanner.team/stops/H2sv213a", "https://tec.openplanner.team/stops/H2sv215a"], ["https://tec.openplanner.team/stops/N522aea", "https://tec.openplanner.team/stops/N522apb"], ["https://tec.openplanner.team/stops/Cslegli1", "https://tec.openplanner.team/stops/Cvtmaro2"], ["https://tec.openplanner.team/stops/Lalmakr1", "https://tec.openplanner.team/stops/Lanplat2"], ["https://tec.openplanner.team/stops/Llgcour2", "https://tec.openplanner.team/stops/Llgpitt1"], ["https://tec.openplanner.team/stops/H4cp103b", "https://tec.openplanner.team/stops/H4li178a"], ["https://tec.openplanner.team/stops/N513aha", "https://tec.openplanner.team/stops/N513awb"], ["https://tec.openplanner.team/stops/Braccen1", "https://tec.openplanner.team/stops/Braccen2"], ["https://tec.openplanner.team/stops/X908ada", "https://tec.openplanner.team/stops/X955aha"], ["https://tec.openplanner.team/stops/N120aja", "https://tec.openplanner.team/stops/N121aha"], ["https://tec.openplanner.team/stops/LAyfren1", "https://tec.openplanner.team/stops/Lflcle-5"], ["https://tec.openplanner.team/stops/H4ch120d", "https://tec.openplanner.team/stops/H4vx364c"], ["https://tec.openplanner.team/stops/Lmopota1", "https://tec.openplanner.team/stops/Lmopota2"], ["https://tec.openplanner.team/stops/LhUdenk1", "https://tec.openplanner.team/stops/LhUdenk2"], ["https://tec.openplanner.team/stops/H1bo100a", "https://tec.openplanner.team/stops/H1bo100b"], ["https://tec.openplanner.team/stops/NL77amb", "https://tec.openplanner.team/stops/NL78aha"], ["https://tec.openplanner.team/stops/H1wa142a", "https://tec.openplanner.team/stops/H1wa143a"], ["https://tec.openplanner.team/stops/H4hq131a", "https://tec.openplanner.team/stops/H4hq131b"], ["https://tec.openplanner.team/stops/N503abb", "https://tec.openplanner.team/stops/N509aja"], ["https://tec.openplanner.team/stops/LRmrode2", "https://tec.openplanner.team/stops/LTEkl162"], ["https://tec.openplanner.team/stops/LCRvert2", "https://tec.openplanner.team/stops/LKmdrie2"], ["https://tec.openplanner.team/stops/LGLdeni2", "https://tec.openplanner.team/stops/LGLecol2"], ["https://tec.openplanner.team/stops/X767aba", "https://tec.openplanner.team/stops/X767ada"], ["https://tec.openplanner.team/stops/LRRbuta2", "https://tec.openplanner.team/stops/LRRchea4"], ["https://tec.openplanner.team/stops/X630ada", "https://tec.openplanner.team/stops/X631ada"], ["https://tec.openplanner.team/stops/LBBabat2", "https://tec.openplanner.team/stops/LMnlogi1"], ["https://tec.openplanner.team/stops/N529adb", "https://tec.openplanner.team/stops/N584acb"], ["https://tec.openplanner.team/stops/LAmarbo1", "https://tec.openplanner.team/stops/LAMecse*"], ["https://tec.openplanner.team/stops/Bbchsac1", "https://tec.openplanner.team/stops/Bhtipir2"], ["https://tec.openplanner.team/stops/Csychap2", "https://tec.openplanner.team/stops/Csyjumo1"], ["https://tec.openplanner.team/stops/LHUalbe1", "https://tec.openplanner.team/stops/LHUaveu2"], ["https://tec.openplanner.team/stops/N120ala", "https://tec.openplanner.team/stops/N120amb"], ["https://tec.openplanner.team/stops/Bwaypav2", "https://tec.openplanner.team/stops/Cwsegli1"], ["https://tec.openplanner.team/stops/X359aga", "https://tec.openplanner.team/stops/X359aha"], ["https://tec.openplanner.team/stops/LCsgend2", "https://tec.openplanner.team/stops/LCsraws1"], ["https://tec.openplanner.team/stops/X649acb", "https://tec.openplanner.team/stops/X650aoa"], ["https://tec.openplanner.team/stops/H1fr125b", "https://tec.openplanner.team/stops/H1lb134b"], ["https://tec.openplanner.team/stops/N235agb", "https://tec.openplanner.team/stops/N241acb"], ["https://tec.openplanner.team/stops/Bgnttma1", "https://tec.openplanner.team/stops/Bgnttma2"], ["https://tec.openplanner.team/stops/H4be145b", "https://tec.openplanner.team/stops/H5bl144a"], ["https://tec.openplanner.team/stops/Lveabat1", "https://tec.openplanner.team/stops/Lvefluc2"], ["https://tec.openplanner.team/stops/LBJchau*", "https://tec.openplanner.team/stops/LBJplan2"], ["https://tec.openplanner.team/stops/N562akb", "https://tec.openplanner.team/stops/N562asb"], ["https://tec.openplanner.team/stops/Cfaterg6", "https://tec.openplanner.team/stops/NC23afb"], ["https://tec.openplanner.team/stops/LTHbelv2", "https://tec.openplanner.team/stops/LTHjevo1"], ["https://tec.openplanner.team/stops/LSeaque3", "https://tec.openplanner.team/stops/LVbgend1"], ["https://tec.openplanner.team/stops/Bbrycar2", "https://tec.openplanner.team/stops/Bmarcat1"], ["https://tec.openplanner.team/stops/H1pa116b", "https://tec.openplanner.team/stops/H1pa120a"], ["https://tec.openplanner.team/stops/H4lu125a", "https://tec.openplanner.team/stops/H4mo160a"], ["https://tec.openplanner.team/stops/Bhalalb2", "https://tec.openplanner.team/stops/Bhalber3"], ["https://tec.openplanner.team/stops/LJAverv1", "https://tec.openplanner.team/stops/LSUhage1"], ["https://tec.openplanner.team/stops/LStroch2", "https://tec.openplanner.team/stops/LWNberg1"], ["https://tec.openplanner.team/stops/Cauushm2", "https://tec.openplanner.team/stops/Cvsbois1"], ["https://tec.openplanner.team/stops/Cdalpla1", "https://tec.openplanner.team/stops/CMlpla2"], ["https://tec.openplanner.team/stops/H1ls108a", "https://tec.openplanner.team/stops/H1ls108b"], ["https://tec.openplanner.team/stops/Ceregl1", "https://tec.openplanner.team/stops/N103aea"], ["https://tec.openplanner.team/stops/LVIastr1", "https://tec.openplanner.team/stops/LVIsacr2"], ["https://tec.openplanner.team/stops/Bhlvlou1", "https://tec.openplanner.team/stops/Crewaba2"], ["https://tec.openplanner.team/stops/H2hl113a", "https://tec.openplanner.team/stops/H2hp121b"], ["https://tec.openplanner.team/stops/Lhrcols1", "https://tec.openplanner.team/stops/Lvtmeun1"], ["https://tec.openplanner.team/stops/X639aka", "https://tec.openplanner.team/stops/X639alb"], ["https://tec.openplanner.team/stops/Llgcrah2", "https://tec.openplanner.team/stops/LlgPRVo2"], ["https://tec.openplanner.team/stops/H1gy113a", "https://tec.openplanner.team/stops/H1og135a"], ["https://tec.openplanner.team/stops/H4al100a", "https://tec.openplanner.team/stops/H4ch115b"], ["https://tec.openplanner.team/stops/X733abb", "https://tec.openplanner.team/stops/X734aoa"], ["https://tec.openplanner.team/stops/LFLcent2", "https://tec.openplanner.team/stops/LFLgara2"], ["https://tec.openplanner.team/stops/LHHpt--2", "https://tec.openplanner.team/stops/LSkbo832"], ["https://tec.openplanner.team/stops/X790aea", "https://tec.openplanner.team/stops/X790afb"], ["https://tec.openplanner.team/stops/Lalwaro2", "https://tec.openplanner.team/stops/Llofort1"], ["https://tec.openplanner.team/stops/N584caa", "https://tec.openplanner.team/stops/N584cab"], ["https://tec.openplanner.team/stops/Bgnvpos1", "https://tec.openplanner.team/stops/Bgnvpos2"], ["https://tec.openplanner.team/stops/LHUmari1", "https://tec.openplanner.team/stops/LHUmari2"], ["https://tec.openplanner.team/stops/Cmtgrim1", "https://tec.openplanner.team/stops/Cmtyern1"], ["https://tec.openplanner.team/stops/H4ft134a", "https://tec.openplanner.team/stops/H4ma205b"], ["https://tec.openplanner.team/stops/H4tu170a", "https://tec.openplanner.team/stops/H4tu171b"], ["https://tec.openplanner.team/stops/X837ada", "https://tec.openplanner.team/stops/X837aea"], ["https://tec.openplanner.team/stops/LMOford1", "https://tec.openplanner.team/stops/LMOmome1"], ["https://tec.openplanner.team/stops/Ljeblum1", "https://tec.openplanner.team/stops/Ljeheur1"], ["https://tec.openplanner.team/stops/LNEvpn-1", "https://tec.openplanner.team/stops/LNEvpn-2"], ["https://tec.openplanner.team/stops/N310aca", "https://tec.openplanner.team/stops/N310acb"], ["https://tec.openplanner.team/stops/LOucarr2", "https://tec.openplanner.team/stops/LOunebl2"], ["https://tec.openplanner.team/stops/Caioign3", "https://tec.openplanner.team/stops/Caistro1"], ["https://tec.openplanner.team/stops/LbUvith1", "https://tec.openplanner.team/stops/LbUwhon2"], ["https://tec.openplanner.team/stops/X634aab", "https://tec.openplanner.team/stops/X634ahb"], ["https://tec.openplanner.team/stops/X608apa", "https://tec.openplanner.team/stops/X608ara"], ["https://tec.openplanner.team/stops/X717aba", "https://tec.openplanner.team/stops/X782apb"], ["https://tec.openplanner.team/stops/Cbweco2", "https://tec.openplanner.team/stops/Cbwegl2"], ["https://tec.openplanner.team/stops/X687aba", "https://tec.openplanner.team/stops/X688aab"], ["https://tec.openplanner.team/stops/H1bn114b", "https://tec.openplanner.team/stops/H1ge117a"], ["https://tec.openplanner.team/stops/H1le122d", "https://tec.openplanner.team/stops/H1le130b"], ["https://tec.openplanner.team/stops/LSOchau2", "https://tec.openplanner.team/stops/LSOgard1"], ["https://tec.openplanner.team/stops/N509awa", "https://tec.openplanner.team/stops/N509axb"], ["https://tec.openplanner.team/stops/CMparc1", "https://tec.openplanner.team/stops/NC01ahb"], ["https://tec.openplanner.team/stops/X725afc", "https://tec.openplanner.team/stops/X725afh"], ["https://tec.openplanner.team/stops/N230ada", "https://tec.openplanner.team/stops/N230ama"], ["https://tec.openplanner.team/stops/Bbsicas2", "https://tec.openplanner.team/stops/Bbsicul1"], ["https://tec.openplanner.team/stops/X940aec", "https://tec.openplanner.team/stops/X940afb"], ["https://tec.openplanner.team/stops/H2tr252b", "https://tec.openplanner.team/stops/H2tr255b"], ["https://tec.openplanner.team/stops/Bgemcha2", "https://tec.openplanner.team/stops/N522akb"], ["https://tec.openplanner.team/stops/LkAmess1", "https://tec.openplanner.team/stops/LmHdrei2"], ["https://tec.openplanner.team/stops/N545aba", "https://tec.openplanner.team/stops/N545aca"], ["https://tec.openplanner.team/stops/LETfort2", "https://tec.openplanner.team/stops/LETmagn1"], ["https://tec.openplanner.team/stops/X811apa", "https://tec.openplanner.team/stops/X811aqb"], ["https://tec.openplanner.team/stops/N522ana", "https://tec.openplanner.team/stops/N522ara"], ["https://tec.openplanner.team/stops/LWAhart1", "https://tec.openplanner.team/stops/LWAmouh1"], ["https://tec.openplanner.team/stops/H2tr248a", "https://tec.openplanner.team/stops/H2tr253a"], ["https://tec.openplanner.team/stops/H2bh105a", "https://tec.openplanner.team/stops/H2bh115a"], ["https://tec.openplanner.team/stops/Lpeathe*", "https://tec.openplanner.team/stops/Lpemata1"], ["https://tec.openplanner.team/stops/N528agb", "https://tec.openplanner.team/stops/N528aib"], ["https://tec.openplanner.team/stops/X721aia", "https://tec.openplanner.team/stops/X721aib"], ["https://tec.openplanner.team/stops/LWNwavr1", "https://tec.openplanner.team/stops/LWNwavr5"], ["https://tec.openplanner.team/stops/N206adb", "https://tec.openplanner.team/stops/N220aab"], ["https://tec.openplanner.team/stops/H4fa127b", "https://tec.openplanner.team/stops/H4ss153a"], ["https://tec.openplanner.team/stops/X624ada", "https://tec.openplanner.team/stops/X624adb"], ["https://tec.openplanner.team/stops/LHEcruc4", "https://tec.openplanner.team/stops/LHEoutr2"], ["https://tec.openplanner.team/stops/X723aga", "https://tec.openplanner.team/stops/X723aia"], ["https://tec.openplanner.team/stops/LOrpont1", "https://tec.openplanner.team/stops/LOrpont2"], ["https://tec.openplanner.team/stops/Bbosgar1", "https://tec.openplanner.team/stops/Btiegma1"], ["https://tec.openplanner.team/stops/H1qp150a", "https://tec.openplanner.team/stops/H1qp150b"], ["https://tec.openplanner.team/stops/X908aqa", "https://tec.openplanner.team/stops/X908ara"], ["https://tec.openplanner.team/stops/N576afb", "https://tec.openplanner.team/stops/N576amb"], ["https://tec.openplanner.team/stops/NL76ahb", "https://tec.openplanner.team/stops/NL76amb"], ["https://tec.openplanner.team/stops/N528ala", "https://tec.openplanner.team/stops/N551acb"], ["https://tec.openplanner.team/stops/X767abb", "https://tec.openplanner.team/stops/X767aia"], ["https://tec.openplanner.team/stops/Bincegl2", "https://tec.openplanner.team/stops/Binclib2"], ["https://tec.openplanner.team/stops/H2an102a", "https://tec.openplanner.team/stops/H2an110b"], ["https://tec.openplanner.team/stops/LTiespe4", "https://tec.openplanner.team/stops/LTiruel1"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N331ajb"], ["https://tec.openplanner.team/stops/H1ob339a", "https://tec.openplanner.team/stops/H1sd366a"], ["https://tec.openplanner.team/stops/N524aba", "https://tec.openplanner.team/stops/N524ada"], ["https://tec.openplanner.team/stops/Cgzplac1", "https://tec.openplanner.team/stops/Cgzplac6"], ["https://tec.openplanner.team/stops/LFMkrut3", "https://tec.openplanner.team/stops/LFMveur1"], ["https://tec.openplanner.team/stops/X774aga", "https://tec.openplanner.team/stops/X774agb"], ["https://tec.openplanner.team/stops/H1si153b", "https://tec.openplanner.team/stops/H1si156d"], ["https://tec.openplanner.team/stops/Cgzplac3", "https://tec.openplanner.team/stops/Cgzplac4"], ["https://tec.openplanner.team/stops/Bbgerlr2", "https://tec.openplanner.team/stops/Bbgever2"], ["https://tec.openplanner.team/stops/LSogare1", "https://tec.openplanner.team/stops/LSoprom1"], ["https://tec.openplanner.team/stops/Bosqcim2", "https://tec.openplanner.team/stops/Bosqpco2"], ["https://tec.openplanner.team/stops/LHAvall2", "https://tec.openplanner.team/stops/LHTcarr1"], ["https://tec.openplanner.team/stops/Bllnjpa2", "https://tec.openplanner.team/stops/Bllnrod3"], ["https://tec.openplanner.team/stops/Lbogonh*", "https://tec.openplanner.team/stops/Lbogonh2"], ["https://tec.openplanner.team/stops/H1en103a", "https://tec.openplanner.team/stops/H1en105a"], ["https://tec.openplanner.team/stops/X982anb", "https://tec.openplanner.team/stops/X982byb"], ["https://tec.openplanner.team/stops/X940ada", "https://tec.openplanner.team/stops/X940aec"], ["https://tec.openplanner.team/stops/X947aba", "https://tec.openplanner.team/stops/X947abb"], ["https://tec.openplanner.team/stops/Bvirflu2", "https://tec.openplanner.team/stops/Bvirvol2"], ["https://tec.openplanner.team/stops/LFypfei1", "https://tec.openplanner.team/stops/LwYsarl1"], ["https://tec.openplanner.team/stops/LLzcruc1", "https://tec.openplanner.team/stops/LSTchen1"], ["https://tec.openplanner.team/stops/Ccheden1", "https://tec.openplanner.team/stops/Cchfran1"], ["https://tec.openplanner.team/stops/H1gg117a", "https://tec.openplanner.team/stops/H1gg117b"], ["https://tec.openplanner.team/stops/Ljuhava1", "https://tec.openplanner.team/stops/Ljuhava2"], ["https://tec.openplanner.team/stops/LCTcret2", "https://tec.openplanner.team/stops/LCTmonu2"], ["https://tec.openplanner.team/stops/Cchoues5", "https://tec.openplanner.team/stops/CMoues1"], ["https://tec.openplanner.team/stops/N522afa", "https://tec.openplanner.team/stops/N522aga"], ["https://tec.openplanner.team/stops/X910ahb", "https://tec.openplanner.team/stops/X910aib"], ["https://tec.openplanner.team/stops/LSPecho2", "https://tec.openplanner.team/stops/LSPgend2"], ["https://tec.openplanner.team/stops/H1er108a", "https://tec.openplanner.team/stops/H1mb125a"], ["https://tec.openplanner.team/stops/H2ch103a", "https://tec.openplanner.team/stops/H2ch103c"], ["https://tec.openplanner.team/stops/Bnivfch1", "https://tec.openplanner.team/stops/Bnivfch2"], ["https://tec.openplanner.team/stops/N565alb", "https://tec.openplanner.team/stops/N569afa"], ["https://tec.openplanner.team/stops/N501bua", "https://tec.openplanner.team/stops/N501eob"], ["https://tec.openplanner.team/stops/LDAalbe2", "https://tec.openplanner.team/stops/LTreg--1"], ["https://tec.openplanner.team/stops/LPtrefa1", "https://tec.openplanner.team/stops/LrEochs1"], ["https://tec.openplanner.team/stops/LLAchpl1", "https://tec.openplanner.team/stops/Llxcite2"], ["https://tec.openplanner.team/stops/Bsgihmo2", "https://tec.openplanner.team/stops/Bsgipmo2"], ["https://tec.openplanner.team/stops/Lhufont1", "https://tec.openplanner.team/stops/Lhuwaid2"], ["https://tec.openplanner.team/stops/Cvlbvir1", "https://tec.openplanner.team/stops/Cvlgrta2"], ["https://tec.openplanner.team/stops/LnEkirc2", "https://tec.openplanner.team/stops/LnEmett1"], ["https://tec.openplanner.team/stops/N155aia", "https://tec.openplanner.team/stops/NC14avb"], ["https://tec.openplanner.team/stops/H1pw120b", "https://tec.openplanner.team/stops/H1wa146a"], ["https://tec.openplanner.team/stops/LrAneue2", "https://tec.openplanner.team/stops/LrAneus3"], ["https://tec.openplanner.team/stops/Bottgar3", "https://tec.openplanner.team/stops/Bottgar6"], ["https://tec.openplanner.team/stops/H1ag106a", "https://tec.openplanner.team/stops/H1ro133a"], ["https://tec.openplanner.team/stops/N162aca", "https://tec.openplanner.team/stops/N162ada"], ["https://tec.openplanner.team/stops/X888acb", "https://tec.openplanner.team/stops/X899aga"], ["https://tec.openplanner.team/stops/H2ll173b", "https://tec.openplanner.team/stops/H2sv259a"], ["https://tec.openplanner.team/stops/H1pa167b", "https://tec.openplanner.team/stops/H1qu108b"], ["https://tec.openplanner.team/stops/Cchsud05", "https://tec.openplanner.team/stops/Cchsud06"], ["https://tec.openplanner.team/stops/LSIcour1", "https://tec.openplanner.team/stops/LSItert1"], ["https://tec.openplanner.team/stops/Bsensab2", "https://tec.openplanner.team/stops/H2se110a"], ["https://tec.openplanner.team/stops/LNCsera1", "https://tec.openplanner.team/stops/LNCspor2"], ["https://tec.openplanner.team/stops/N501kfb", "https://tec.openplanner.team/stops/N538axb"], ["https://tec.openplanner.team/stops/N534aqa", "https://tec.openplanner.team/stops/N534bbb"], ["https://tec.openplanner.team/stops/LrApark1", "https://tec.openplanner.team/stops/LrAwald1"], ["https://tec.openplanner.team/stops/X512ajb", "https://tec.openplanner.team/stops/X713afa"], ["https://tec.openplanner.team/stops/X761aaa", "https://tec.openplanner.team/stops/X764afb"], ["https://tec.openplanner.team/stops/H1fr112a", "https://tec.openplanner.team/stops/H1fr131a"], ["https://tec.openplanner.team/stops/LhUrich1", "https://tec.openplanner.team/stops/LmUzent1"], ["https://tec.openplanner.team/stops/Bbcoroy2", "https://tec.openplanner.team/stops/Brebrha2"], ["https://tec.openplanner.team/stops/N206acb", "https://tec.openplanner.team/stops/N206adb"], ["https://tec.openplanner.team/stops/LJuhaie2", "https://tec.openplanner.team/stops/LMovich2"], ["https://tec.openplanner.team/stops/LLrdrev1", "https://tec.openplanner.team/stops/LLUdeig2"], ["https://tec.openplanner.team/stops/H1hq158a", "https://tec.openplanner.team/stops/H1sy137c"], ["https://tec.openplanner.team/stops/LOLcroi1", "https://tec.openplanner.team/stops/LOLcroi2"], ["https://tec.openplanner.team/stops/H1ho122c", "https://tec.openplanner.team/stops/H1ho122d"], ["https://tec.openplanner.team/stops/Cmeptmi1", "https://tec.openplanner.team/stops/Cmerued1"], ["https://tec.openplanner.team/stops/LVEbors1", "https://tec.openplanner.team/stops/LVEcacq1"], ["https://tec.openplanner.team/stops/Bflccav1", "https://tec.openplanner.team/stops/Bjauwar2"], ["https://tec.openplanner.team/stops/X982blb", "https://tec.openplanner.team/stops/X982blc"], ["https://tec.openplanner.team/stops/Llgdart5", "https://tec.openplanner.team/stops/LlgguilF"], ["https://tec.openplanner.team/stops/N528awb", "https://tec.openplanner.team/stops/N577afa"], ["https://tec.openplanner.team/stops/H4fr139a", "https://tec.openplanner.team/stops/H4fr142a"], ["https://tec.openplanner.team/stops/N211awb", "https://tec.openplanner.team/stops/N212ada"], ["https://tec.openplanner.team/stops/Bperalv1", "https://tec.openplanner.team/stops/Bpernov2"], ["https://tec.openplanner.team/stops/N101aga", "https://tec.openplanner.team/stops/N101aib"], ["https://tec.openplanner.team/stops/Broscha2", "https://tec.openplanner.team/stops/H2gy109b"], ["https://tec.openplanner.team/stops/H1hg180b", "https://tec.openplanner.team/stops/H1hy128a"], ["https://tec.openplanner.team/stops/LSZcock1", "https://tec.openplanner.team/stops/LSZlegr1"], ["https://tec.openplanner.team/stops/Cchdelf2", "https://tec.openplanner.team/stops/Cchtour1"], ["https://tec.openplanner.team/stops/N562ala", "https://tec.openplanner.team/stops/N562bwa"], ["https://tec.openplanner.team/stops/N117auc", "https://tec.openplanner.team/stops/N117ayb"], ["https://tec.openplanner.team/stops/N136aeb", "https://tec.openplanner.team/stops/N143aba"], ["https://tec.openplanner.team/stops/Cfrchro2", "https://tec.openplanner.team/stops/Cfrempe2"], ["https://tec.openplanner.team/stops/H4ar177a", "https://tec.openplanner.team/stops/H4ar177b"], ["https://tec.openplanner.team/stops/N501eza", "https://tec.openplanner.team/stops/N501ezb"], ["https://tec.openplanner.team/stops/N540aoa", "https://tec.openplanner.team/stops/N540apb"], ["https://tec.openplanner.team/stops/LOMcabi1", "https://tec.openplanner.team/stops/LOMdTEC1"], ["https://tec.openplanner.team/stops/LBY4che1", "https://tec.openplanner.team/stops/LBY4che2"], ["https://tec.openplanner.team/stops/X724aab", "https://tec.openplanner.team/stops/X725bfb"], ["https://tec.openplanner.team/stops/Bcrnnpl1", "https://tec.openplanner.team/stops/Bernpla1"], ["https://tec.openplanner.team/stops/N558amb", "https://tec.openplanner.team/stops/N559aeb"], ["https://tec.openplanner.team/stops/Lsepair2", "https://tec.openplanner.team/stops/Lsevecq2"], ["https://tec.openplanner.team/stops/X950adb", "https://tec.openplanner.team/stops/X952alb"], ["https://tec.openplanner.team/stops/X949aga", "https://tec.openplanner.team/stops/X949ahb"], ["https://tec.openplanner.team/stops/H1hn365a", "https://tec.openplanner.team/stops/H1ms940b"], ["https://tec.openplanner.team/stops/LTIecma1", "https://tec.openplanner.team/stops/LTIsupe1"], ["https://tec.openplanner.team/stops/Lghmavi1", "https://tec.openplanner.team/stops/Lmopeup1"], ["https://tec.openplanner.team/stops/Bwanthi2", "https://tec.openplanner.team/stops/Bwanwar2"], ["https://tec.openplanner.team/stops/H2ll184a", "https://tec.openplanner.team/stops/H2ll184b"], ["https://tec.openplanner.team/stops/CMmoul2", "https://tec.openplanner.team/stops/Cmopn4"], ["https://tec.openplanner.team/stops/Lhrmeta1", "https://tec.openplanner.team/stops/Lhrmeta2"], ["https://tec.openplanner.team/stops/LAMjeha2", "https://tec.openplanner.team/stops/LJEtige1"], ["https://tec.openplanner.team/stops/Canbruy1", "https://tec.openplanner.team/stops/Canegbr1"], ["https://tec.openplanner.team/stops/Bhakmkr1", "https://tec.openplanner.team/stops/Btiegma1"], ["https://tec.openplanner.team/stops/LHXfont1", "https://tec.openplanner.team/stops/LHXfont2"], ["https://tec.openplanner.team/stops/X982bja", "https://tec.openplanner.team/stops/X982bjb"], ["https://tec.openplanner.team/stops/LElgerd6", "https://tec.openplanner.team/stops/LOumaro1"], ["https://tec.openplanner.team/stops/X750ata", "https://tec.openplanner.team/stops/X750ava"], ["https://tec.openplanner.team/stops/LhP25--2", "https://tec.openplanner.team/stops/LhPkirc1"], ["https://tec.openplanner.team/stops/LJAchat1", "https://tec.openplanner.team/stops/LJAwerf2"], ["https://tec.openplanner.team/stops/LTIecma2", "https://tec.openplanner.team/stops/LTIsupe2"], ["https://tec.openplanner.team/stops/H4wi167a", "https://tec.openplanner.team/stops/H5pe144a"], ["https://tec.openplanner.team/stops/H4am101b", "https://tec.openplanner.team/stops/H4or116b"], ["https://tec.openplanner.team/stops/Bwspmon2", "https://tec.openplanner.team/stops/Bwsppos2"], ["https://tec.openplanner.team/stops/X818aga", "https://tec.openplanner.team/stops/X820aca"], ["https://tec.openplanner.team/stops/LeUkabe2", "https://tec.openplanner.team/stops/LeUrote1"], ["https://tec.openplanner.team/stops/H1ch100a", "https://tec.openplanner.team/stops/H1ch102a"], ["https://tec.openplanner.team/stops/H4hx124a", "https://tec.openplanner.team/stops/H4wa149a"], ["https://tec.openplanner.team/stops/LXfsolw1", "https://tec.openplanner.team/stops/LXftche1"], ["https://tec.openplanner.team/stops/Cmaegal1", "https://tec.openplanner.team/stops/Cmocalv4"], ["https://tec.openplanner.team/stops/N517ada", "https://tec.openplanner.team/stops/N517aea"], ["https://tec.openplanner.team/stops/X801cca", "https://tec.openplanner.team/stops/X801cea"], ["https://tec.openplanner.team/stops/N557acb", "https://tec.openplanner.team/stops/N558aja"], ["https://tec.openplanner.team/stops/N352afb", "https://tec.openplanner.team/stops/N353aba"], ["https://tec.openplanner.team/stops/Bbeubos1", "https://tec.openplanner.team/stops/N576ada"], ["https://tec.openplanner.team/stops/N543ahb", "https://tec.openplanner.team/stops/N543ara"], ["https://tec.openplanner.team/stops/Lflcle-1", "https://tec.openplanner.team/stops/Lflfort*"], ["https://tec.openplanner.team/stops/X659aca", "https://tec.openplanner.team/stops/X659acb"], ["https://tec.openplanner.team/stops/NL77aka", "https://tec.openplanner.team/stops/NL77alb"], ["https://tec.openplanner.team/stops/LHZcouv1", "https://tec.openplanner.team/stops/LHZcouv2"], ["https://tec.openplanner.team/stops/Bwaygrg1", "https://tec.openplanner.team/stops/Bwaygrg2"], ["https://tec.openplanner.team/stops/LAMceri1", "https://tec.openplanner.team/stops/LOmpont1"], ["https://tec.openplanner.team/stops/H2ll172b", "https://tec.openplanner.team/stops/H2ll181b"], ["https://tec.openplanner.team/stops/Bnivlde1", "https://tec.openplanner.team/stops/Bnivlde2"], ["https://tec.openplanner.team/stops/H1hv130a", "https://tec.openplanner.team/stops/H3st119a"], ["https://tec.openplanner.team/stops/N515apb", "https://tec.openplanner.team/stops/N515ara"], ["https://tec.openplanner.team/stops/H4te255b", "https://tec.openplanner.team/stops/H4te261a"], ["https://tec.openplanner.team/stops/Brebrog1", "https://tec.openplanner.team/stops/H2pr115b"], ["https://tec.openplanner.team/stops/N549afa", "https://tec.openplanner.team/stops/N549aha"], ["https://tec.openplanner.team/stops/Creluth1", "https://tec.openplanner.team/stops/Creluth2"], ["https://tec.openplanner.team/stops/N501dtc", "https://tec.openplanner.team/stops/N501jsa"], ["https://tec.openplanner.team/stops/Lboeg--1", "https://tec.openplanner.team/stops/Lbomc--6"], ["https://tec.openplanner.team/stops/Lpeflec1", "https://tec.openplanner.team/stops/Lpeflec2"], ["https://tec.openplanner.team/stops/X879acb", "https://tec.openplanner.team/stops/X879ada"], ["https://tec.openplanner.team/stops/Ccofayt1", "https://tec.openplanner.team/stops/Crowall1"], ["https://tec.openplanner.team/stops/X822acb", "https://tec.openplanner.team/stops/X822aqb"], ["https://tec.openplanner.team/stops/N559acb", "https://tec.openplanner.team/stops/NL77afa"], ["https://tec.openplanner.team/stops/X999aka", "https://tec.openplanner.team/stops/X999ata"], ["https://tec.openplanner.team/stops/H4wp150a", "https://tec.openplanner.team/stops/H4wp150b"], ["https://tec.openplanner.team/stops/N513acd", "https://tec.openplanner.team/stops/N513agd"], ["https://tec.openplanner.team/stops/LVPcrok1", "https://tec.openplanner.team/stops/LVPcrok2"], ["https://tec.openplanner.team/stops/X878aba", "https://tec.openplanner.team/stops/X898aca"], ["https://tec.openplanner.team/stops/X750ara", "https://tec.openplanner.team/stops/X750aua"], ["https://tec.openplanner.team/stops/Cgycime3", "https://tec.openplanner.team/stops/Cgylami2"], ["https://tec.openplanner.team/stops/H4bc104a", "https://tec.openplanner.team/stops/H4wr173c"], ["https://tec.openplanner.team/stops/Llgcfra1", "https://tec.openplanner.team/stops/Llgchev2"], ["https://tec.openplanner.team/stops/H4ma202b", "https://tec.openplanner.team/stops/H4ma411a"], ["https://tec.openplanner.team/stops/NR21agb", "https://tec.openplanner.team/stops/NR21ahb"], ["https://tec.openplanner.team/stops/Bsdafra2", "https://tec.openplanner.team/stops/Csdrofr2"], ["https://tec.openplanner.team/stops/LmRmuhl1", "https://tec.openplanner.team/stops/LsHkreu4"], ["https://tec.openplanner.team/stops/N236aca", "https://tec.openplanner.team/stops/N254agb"], ["https://tec.openplanner.team/stops/Cctbifu1", "https://tec.openplanner.team/stops/NC11aha"], ["https://tec.openplanner.team/stops/LTamoul2", "https://tec.openplanner.team/stops/LTaxhos1"], ["https://tec.openplanner.team/stops/X780aib", "https://tec.openplanner.team/stops/X780ata"], ["https://tec.openplanner.team/stops/Blmlgar2", "https://tec.openplanner.team/stops/Blmlpla2"], ["https://tec.openplanner.team/stops/X718ada", "https://tec.openplanner.team/stops/X719abb"], ["https://tec.openplanner.team/stops/Landolh2", "https://tec.openplanner.team/stops/Landolh3"], ["https://tec.openplanner.team/stops/N538akb", "https://tec.openplanner.team/stops/N538apb"], ["https://tec.openplanner.team/stops/Bhaldbo1", "https://tec.openplanner.team/stops/Blemwob2"], ["https://tec.openplanner.team/stops/Lfh-sci2", "https://tec.openplanner.team/stops/Lseivoz1"], ["https://tec.openplanner.team/stops/LFslign2", "https://tec.openplanner.team/stops/LSLstra2"], ["https://tec.openplanner.team/stops/H1eq117a", "https://tec.openplanner.team/stops/H1fy142a"], ["https://tec.openplanner.team/stops/X992acb", "https://tec.openplanner.team/stops/X992ada"], ["https://tec.openplanner.team/stops/LNHhome1", "https://tec.openplanner.team/stops/LNHhome2"], ["https://tec.openplanner.team/stops/X882aea", "https://tec.openplanner.team/stops/X882aeb"], ["https://tec.openplanner.team/stops/N232bob", "https://tec.openplanner.team/stops/N232bqb"], ["https://tec.openplanner.team/stops/H1at110c", "https://tec.openplanner.team/stops/H1fy143a"], ["https://tec.openplanner.team/stops/Bbosgar1", "https://tec.openplanner.team/stops/Bbosgar2"], ["https://tec.openplanner.team/stops/N538aqa", "https://tec.openplanner.team/stops/N538aqb"], ["https://tec.openplanner.team/stops/X739alb", "https://tec.openplanner.team/stops/X771aeb"], ["https://tec.openplanner.team/stops/N534acb", "https://tec.openplanner.team/stops/N534ada"], ["https://tec.openplanner.team/stops/X811ahb", "https://tec.openplanner.team/stops/X811ala"], ["https://tec.openplanner.team/stops/X605aeb", "https://tec.openplanner.team/stops/X605ala"], ["https://tec.openplanner.team/stops/LTHec--1", "https://tec.openplanner.team/stops/LTHec--2"], ["https://tec.openplanner.team/stops/H2sv212b", "https://tec.openplanner.team/stops/H2sv219b"], ["https://tec.openplanner.team/stops/N548adb", "https://tec.openplanner.team/stops/N548asb"], ["https://tec.openplanner.team/stops/X982aba", "https://tec.openplanner.team/stops/X982aca"], ["https://tec.openplanner.team/stops/X636ama", "https://tec.openplanner.team/stops/X649aab"], ["https://tec.openplanner.team/stops/Bborbif1", "https://tec.openplanner.team/stops/Bborppa1"], ["https://tec.openplanner.team/stops/H4mb203a", "https://tec.openplanner.team/stops/H4og211a"], ["https://tec.openplanner.team/stops/Lcehipp2", "https://tec.openplanner.team/stops/Lcepass1"], ["https://tec.openplanner.team/stops/LGeduc-1", "https://tec.openplanner.team/stops/LGegare2"], ["https://tec.openplanner.team/stops/Bolgegl2", "https://tec.openplanner.team/stops/Bolgeva1"], ["https://tec.openplanner.team/stops/N515afb", "https://tec.openplanner.team/stops/N517aca"], ["https://tec.openplanner.team/stops/LkOaugu1", "https://tec.openplanner.team/stops/LkOzoll1"], ["https://tec.openplanner.team/stops/H1al106a", "https://tec.openplanner.team/stops/H1al108a"], ["https://tec.openplanner.team/stops/LFMrijk2", "https://tec.openplanner.team/stops/LFMvoge2"], ["https://tec.openplanner.team/stops/N573aia", "https://tec.openplanner.team/stops/N573aib"], ["https://tec.openplanner.team/stops/LFIinse2", "https://tec.openplanner.team/stops/LXocomb2"], ["https://tec.openplanner.team/stops/H4am100b", "https://tec.openplanner.team/stops/H4an108a"], ["https://tec.openplanner.team/stops/X877aba", "https://tec.openplanner.team/stops/X877aea"], ["https://tec.openplanner.team/stops/H4ne131b", "https://tec.openplanner.team/stops/H4ne134a"], ["https://tec.openplanner.team/stops/Bsomwav1", "https://tec.openplanner.team/stops/N584bnb"], ["https://tec.openplanner.team/stops/LPLcite1", "https://tec.openplanner.team/stops/LPLphar2"], ["https://tec.openplanner.team/stops/N343abb", "https://tec.openplanner.team/stops/N343alb"], ["https://tec.openplanner.team/stops/Cvvgrsa2", "https://tec.openplanner.team/stops/Cvvsncb2"], ["https://tec.openplanner.team/stops/Cgyblob1", "https://tec.openplanner.team/stops/Cgycvie2"], ["https://tec.openplanner.team/stops/Ccucorb2", "https://tec.openplanner.team/stops/Cgycorv2"], ["https://tec.openplanner.team/stops/H2hg267b", "https://tec.openplanner.team/stops/H2ll198b"], ["https://tec.openplanner.team/stops/Bhanwav2", "https://tec.openplanner.team/stops/NL37aab"], ["https://tec.openplanner.team/stops/N229aab", "https://tec.openplanner.team/stops/N229afb"], ["https://tec.openplanner.team/stops/X925aja", "https://tec.openplanner.team/stops/X996aba"], ["https://tec.openplanner.team/stops/N153aaa", "https://tec.openplanner.team/stops/N153afb"], ["https://tec.openplanner.team/stops/H1je220b", "https://tec.openplanner.team/stops/H1je223a"], ["https://tec.openplanner.team/stops/Bhancre1", "https://tec.openplanner.team/stops/Bhanwav1"], ["https://tec.openplanner.team/stops/LGogare2", "https://tec.openplanner.team/stops/LNEcite2"], ["https://tec.openplanner.team/stops/X890acb", "https://tec.openplanner.team/stops/X890aeb"], ["https://tec.openplanner.team/stops/Bperpla2", "https://tec.openplanner.team/stops/Bperrcr2"], ["https://tec.openplanner.team/stops/N501awb", "https://tec.openplanner.team/stops/N501mga"], ["https://tec.openplanner.team/stops/Bpiepnd1", "https://tec.openplanner.team/stops/Bpiesta1"], ["https://tec.openplanner.team/stops/LCPconf1", "https://tec.openplanner.team/stops/LCPvign1"], ["https://tec.openplanner.team/stops/LVLcent2", "https://tec.openplanner.team/stops/LVNcoop1"], ["https://tec.openplanner.team/stops/Llgdefr2", "https://tec.openplanner.team/stops/Llgmass2"], ["https://tec.openplanner.team/stops/Lbomc--4", "https://tec.openplanner.team/stops/Lbomc--5"], ["https://tec.openplanner.team/stops/Lsekubo1", "https://tec.openplanner.team/stops/Lsekubo4"], ["https://tec.openplanner.team/stops/Bolggar1", "https://tec.openplanner.team/stops/Bolgrsa1"], ["https://tec.openplanner.team/stops/H4he104a", "https://tec.openplanner.team/stops/H4he107a"], ["https://tec.openplanner.team/stops/X713ama", "https://tec.openplanner.team/stops/X713amb"], ["https://tec.openplanner.team/stops/N218aea", "https://tec.openplanner.team/stops/N287aca"], ["https://tec.openplanner.team/stops/LXhjupr1", "https://tec.openplanner.team/stops/LXhjupr3"], ["https://tec.openplanner.team/stops/H1hr122a", "https://tec.openplanner.team/stops/H1hr129a"], ["https://tec.openplanner.team/stops/LAmshel1", "https://tec.openplanner.team/stops/LNHbarr2"], ["https://tec.openplanner.team/stops/NL77aab", "https://tec.openplanner.team/stops/NL77adb"], ["https://tec.openplanner.team/stops/X661aqb", "https://tec.openplanner.team/stops/X840aga"], ["https://tec.openplanner.team/stops/LbEkirc*", "https://tec.openplanner.team/stops/LbTcarm2"], ["https://tec.openplanner.team/stops/Ltheg--2", "https://tec.openplanner.team/stops/Lthgros1"], ["https://tec.openplanner.team/stops/LBEairp3", "https://tec.openplanner.team/stops/LBEtroo1"], ["https://tec.openplanner.team/stops/Cfaplma1", "https://tec.openplanner.team/stops/Clafaub2"], ["https://tec.openplanner.team/stops/LHe3com1", "https://tec.openplanner.team/stops/LHSheur2"], ["https://tec.openplanner.team/stops/LBhsign2", "https://tec.openplanner.team/stops/LMRmont2"], ["https://tec.openplanner.team/stops/Cflfaub2", "https://tec.openplanner.team/stops/NC23aab"], ["https://tec.openplanner.team/stops/H4eg106b", "https://tec.openplanner.team/stops/H4eg107a"], ["https://tec.openplanner.team/stops/LaHzoll*", "https://tec.openplanner.team/stops/X685acb"], ["https://tec.openplanner.team/stops/Lendonh1", "https://tec.openplanner.team/stops/Lenhosp2"], ["https://tec.openplanner.team/stops/LGLbrus1", "https://tec.openplanner.team/stops/LGLgeer1"], ["https://tec.openplanner.team/stops/Bllngar1", "https://tec.openplanner.team/stops/Bllngar7"], ["https://tec.openplanner.team/stops/Bfelequ1", "https://tec.openplanner.team/stops/Bfelpla2"], ["https://tec.openplanner.team/stops/LsVfrie1", "https://tec.openplanner.team/stops/LsVrodt1"], ["https://tec.openplanner.team/stops/Bwatprp2", "https://tec.openplanner.team/stops/Bwatsuc1"], ["https://tec.openplanner.team/stops/X955aga", "https://tec.openplanner.team/stops/X955agb"], ["https://tec.openplanner.team/stops/H1be101a", "https://tec.openplanner.team/stops/H1be104a"], ["https://tec.openplanner.team/stops/Lkinyst1", "https://tec.openplanner.team/stops/Lkithie1"], ["https://tec.openplanner.team/stops/Cjuhame1", "https://tec.openplanner.team/stops/Cragill2"], ["https://tec.openplanner.team/stops/LVGeg--2", "https://tec.openplanner.team/stops/LVGeg--5"], ["https://tec.openplanner.team/stops/Brixblh3", "https://tec.openplanner.team/stops/Brixwav3"], ["https://tec.openplanner.team/stops/N501cky", "https://tec.openplanner.team/stops/N501mpa"], ["https://tec.openplanner.team/stops/Bdlvpco2", "https://tec.openplanner.team/stops/Bdvmc032"], ["https://tec.openplanner.team/stops/X622aab", "https://tec.openplanner.team/stops/X622acb"], ["https://tec.openplanner.team/stops/H1hw120b", "https://tec.openplanner.team/stops/H1hw123b"], ["https://tec.openplanner.team/stops/Bniv4co2", "https://tec.openplanner.team/stops/Bnivaig1"], ["https://tec.openplanner.team/stops/X765adb", "https://tec.openplanner.team/stops/X765afb"], ["https://tec.openplanner.team/stops/Bcbqh451", "https://tec.openplanner.team/stops/Btubois2"], ["https://tec.openplanner.team/stops/H1gn148a", "https://tec.openplanner.team/stops/H1hq126a"], ["https://tec.openplanner.team/stops/X759adb", "https://tec.openplanner.team/stops/X759aeb"], ["https://tec.openplanner.team/stops/LaMahof2", "https://tec.openplanner.team/stops/LmI82--1"], ["https://tec.openplanner.team/stops/LAMhopi1", "https://tec.openplanner.team/stops/LAMhopi2"], ["https://tec.openplanner.team/stops/H4ld125a", "https://tec.openplanner.team/stops/H4to135a"], ["https://tec.openplanner.team/stops/Bcbqcha1", "https://tec.openplanner.team/stops/Bhalcbr2"], ["https://tec.openplanner.team/stops/N874ana", "https://tec.openplanner.team/stops/N988aca"], ["https://tec.openplanner.team/stops/LHUfali3", "https://tec.openplanner.team/stops/LHUfali4"], ["https://tec.openplanner.team/stops/N313aeb", "https://tec.openplanner.team/stops/N313aec"], ["https://tec.openplanner.team/stops/Cmcgoch1", "https://tec.openplanner.team/stops/Cmggthi2"], ["https://tec.openplanner.team/stops/H1by109a", "https://tec.openplanner.team/stops/H1by109b"], ["https://tec.openplanner.team/stops/LHVgoro2", "https://tec.openplanner.team/stops/LSubass2"], ["https://tec.openplanner.team/stops/LrGzent2", "https://tec.openplanner.team/stops/LsVfeye2"], ["https://tec.openplanner.team/stops/X753aaa", "https://tec.openplanner.team/stops/X928aab"], ["https://tec.openplanner.team/stops/H1fr112b", "https://tec.openplanner.team/stops/H1fr127a"], ["https://tec.openplanner.team/stops/H1au111b", "https://tec.openplanner.team/stops/H1au112b"], ["https://tec.openplanner.team/stops/X730aeb", "https://tec.openplanner.team/stops/X730afb"], ["https://tec.openplanner.team/stops/LHheg--1", "https://tec.openplanner.team/stops/LHhvivi1"], ["https://tec.openplanner.team/stops/LSHmais1", "https://tec.openplanner.team/stops/LSOtheu2"], ["https://tec.openplanner.team/stops/Bbsicul2", "https://tec.openplanner.team/stops/Bbsigaz2"], ["https://tec.openplanner.team/stops/N204aaa", "https://tec.openplanner.team/stops/N204aea"], ["https://tec.openplanner.team/stops/X362aca", "https://tec.openplanner.team/stops/X363acb"], ["https://tec.openplanner.team/stops/Btsllbv1", "https://tec.openplanner.team/stops/Btsllnd1"], ["https://tec.openplanner.team/stops/X872abb", "https://tec.openplanner.team/stops/X872aca"], ["https://tec.openplanner.team/stops/Bpergar1", "https://tec.openplanner.team/stops/Bpergar3"], ["https://tec.openplanner.team/stops/H2hg149b", "https://tec.openplanner.team/stops/H2mi122b"], ["https://tec.openplanner.team/stops/Llgbatt2", "https://tec.openplanner.team/stops/Llgwesp1"], ["https://tec.openplanner.team/stops/X731aea", "https://tec.openplanner.team/stops/X731afa"], ["https://tec.openplanner.team/stops/Lchpniv2", "https://tec.openplanner.team/stops/Lchstat*"], ["https://tec.openplanner.team/stops/H4lh118b", "https://tec.openplanner.team/stops/H4lh120b"], ["https://tec.openplanner.team/stops/N351atb", "https://tec.openplanner.team/stops/N351atd"], ["https://tec.openplanner.team/stops/X901baa", "https://tec.openplanner.team/stops/X901bbb"], ["https://tec.openplanner.team/stops/H1wa154b", "https://tec.openplanner.team/stops/H1wg124b"], ["https://tec.openplanner.team/stops/LbTathe1", "https://tec.openplanner.team/stops/LbThau11"], ["https://tec.openplanner.team/stops/X999adb", "https://tec.openplanner.team/stops/X999afa"], ["https://tec.openplanner.team/stops/H1wz171b", "https://tec.openplanner.team/stops/H2pe161b"], ["https://tec.openplanner.team/stops/N261aha", "https://tec.openplanner.team/stops/N261ahb"], ["https://tec.openplanner.team/stops/Cptplac3", "https://tec.openplanner.team/stops/Cptplac4"], ["https://tec.openplanner.team/stops/N101adb", "https://tec.openplanner.team/stops/N116aea"], ["https://tec.openplanner.team/stops/N584bbb", "https://tec.openplanner.team/stops/N584bqb"], ["https://tec.openplanner.team/stops/LSseg--1", "https://tec.openplanner.team/stops/N506bcb"], ["https://tec.openplanner.team/stops/X723aeb", "https://tec.openplanner.team/stops/X723aka"], ["https://tec.openplanner.team/stops/Bkrabhu1", "https://tec.openplanner.team/stops/Boveklo2"], ["https://tec.openplanner.team/stops/Blhusor1", "https://tec.openplanner.team/stops/Bovepla2"], ["https://tec.openplanner.team/stops/X614ahb", "https://tec.openplanner.team/stops/X614aqa"], ["https://tec.openplanner.team/stops/LOLrafh1", "https://tec.openplanner.team/stops/LOLvill4"], ["https://tec.openplanner.team/stops/H1mv241a", "https://tec.openplanner.team/stops/H1mv241b"], ["https://tec.openplanner.team/stops/Ccucorb1", "https://tec.openplanner.team/stops/Cgyruis2"], ["https://tec.openplanner.team/stops/H1bd100a", "https://tec.openplanner.team/stops/H1gy115a"], ["https://tec.openplanner.team/stops/N513aaa", "https://tec.openplanner.team/stops/N513bhb"], ["https://tec.openplanner.team/stops/H2pe158b", "https://tec.openplanner.team/stops/H2pe159b"], ["https://tec.openplanner.team/stops/Cramadi2", "https://tec.openplanner.team/stops/Cravign4"], ["https://tec.openplanner.team/stops/X902aaa", "https://tec.openplanner.team/stops/X902ana"], ["https://tec.openplanner.team/stops/LPbec--2", "https://tec.openplanner.team/stops/LSItert1"], ["https://tec.openplanner.team/stops/H4mo145b", "https://tec.openplanner.team/stops/H4mo158a"], ["https://tec.openplanner.team/stops/LDAbois1", "https://tec.openplanner.team/stops/LRIcite1"], ["https://tec.openplanner.team/stops/LXhhaka2", "https://tec.openplanner.team/stops/LXhnouv2"], ["https://tec.openplanner.team/stops/H5pe134a", "https://tec.openplanner.team/stops/H5pe152a"], ["https://tec.openplanner.team/stops/X658aab", "https://tec.openplanner.team/stops/X658agc"], ["https://tec.openplanner.team/stops/N203aba", "https://tec.openplanner.team/stops/N203abb"], ["https://tec.openplanner.team/stops/Lveanto1", "https://tec.openplanner.team/stops/Lvefabr2"], ["https://tec.openplanner.team/stops/Llgcroi1", "https://tec.openplanner.team/stops/Llgpier1"], ["https://tec.openplanner.team/stops/Bbeubos1", "https://tec.openplanner.team/stops/N526abb"], ["https://tec.openplanner.team/stops/X361aca", "https://tec.openplanner.team/stops/X362abb"], ["https://tec.openplanner.team/stops/N229aea", "https://tec.openplanner.team/stops/N229aeb"], ["https://tec.openplanner.team/stops/LBEcomm1", "https://tec.openplanner.team/stops/LTIchev1"], ["https://tec.openplanner.team/stops/X907aeb", "https://tec.openplanner.team/stops/X907aga"], ["https://tec.openplanner.team/stops/X612aea", "https://tec.openplanner.team/stops/X613aaa"], ["https://tec.openplanner.team/stops/Lghsimo1", "https://tec.openplanner.team/stops/Lghsimo3"], ["https://tec.openplanner.team/stops/X955aaa", "https://tec.openplanner.team/stops/X955agb"], ["https://tec.openplanner.team/stops/LAmeclu2", "https://tec.openplanner.team/stops/LTipont2"], ["https://tec.openplanner.team/stops/LoEauto1", "https://tec.openplanner.team/stops/LoEbach1"], ["https://tec.openplanner.team/stops/LBpbruy2", "https://tec.openplanner.team/stops/LBpecco2"], ["https://tec.openplanner.team/stops/N520aib", "https://tec.openplanner.team/stops/N520aja"], ["https://tec.openplanner.team/stops/LaLkabi2", "https://tec.openplanner.team/stops/LmAaldr2"], ["https://tec.openplanner.team/stops/H2lh129a", "https://tec.openplanner.team/stops/H2lh129b"], ["https://tec.openplanner.team/stops/H4bc101c", "https://tec.openplanner.team/stops/H4tu172a"], ["https://tec.openplanner.team/stops/X804aea", "https://tec.openplanner.team/stops/X804aeb"], ["https://tec.openplanner.team/stops/LmOkape1", "https://tec.openplanner.team/stops/LmOkape2"], ["https://tec.openplanner.team/stops/Lstetud1", "https://tec.openplanner.team/stops/Lstetud2"], ["https://tec.openplanner.team/stops/X994aia", "https://tec.openplanner.team/stops/X994aib"], ["https://tec.openplanner.team/stops/Cmqbasv2", "https://tec.openplanner.team/stops/H4ar100a"], ["https://tec.openplanner.team/stops/H4gz114a", "https://tec.openplanner.team/stops/H4lz155a"], ["https://tec.openplanner.team/stops/NL57aja", "https://tec.openplanner.team/stops/NL57ajb"], ["https://tec.openplanner.team/stops/Bfelbri2", "https://tec.openplanner.team/stops/Bfelbri3"], ["https://tec.openplanner.team/stops/N556aeb", "https://tec.openplanner.team/stops/N557ada"], ["https://tec.openplanner.team/stops/H1cu126a", "https://tec.openplanner.team/stops/H1cu126b"], ["https://tec.openplanner.team/stops/Cctgaux2", "https://tec.openplanner.team/stops/Cctrobe1"], ["https://tec.openplanner.team/stops/N514afa", "https://tec.openplanner.team/stops/N514anb"], ["https://tec.openplanner.team/stops/LJEmalg1", "https://tec.openplanner.team/stops/LYegeor2"], ["https://tec.openplanner.team/stops/N135aib", "https://tec.openplanner.team/stops/N135akb"], ["https://tec.openplanner.team/stops/NL81afa", "https://tec.openplanner.team/stops/NL81afb"], ["https://tec.openplanner.team/stops/Bolppla2", "https://tec.openplanner.team/stops/Bolppsn2"], ["https://tec.openplanner.team/stops/H1mb130a", "https://tec.openplanner.team/stops/H1mx123a"], ["https://tec.openplanner.team/stops/H1qu111a", "https://tec.openplanner.team/stops/H1qu111b"], ["https://tec.openplanner.team/stops/X762acb", "https://tec.openplanner.team/stops/X762ada"], ["https://tec.openplanner.team/stops/LMTdeho1", "https://tec.openplanner.team/stops/LMTfagn1"], ["https://tec.openplanner.team/stops/X948anb", "https://tec.openplanner.team/stops/X948aoa"], ["https://tec.openplanner.team/stops/X995ada", "https://tec.openplanner.team/stops/X995adb"], ["https://tec.openplanner.team/stops/X666aka", "https://tec.openplanner.team/stops/X745aea"], ["https://tec.openplanner.team/stops/H2mo130b", "https://tec.openplanner.team/stops/H2mo130c"], ["https://tec.openplanner.team/stops/LSPguer2", "https://tec.openplanner.team/stops/LSPhapa1"], ["https://tec.openplanner.team/stops/LAwfans2", "https://tec.openplanner.team/stops/LHrbast1"], ["https://tec.openplanner.team/stops/X890ada", "https://tec.openplanner.team/stops/X890adb"], ["https://tec.openplanner.team/stops/Btilmon1", "https://tec.openplanner.team/stops/Btilmon2"], ["https://tec.openplanner.team/stops/X731aca", "https://tec.openplanner.team/stops/X731aja"], ["https://tec.openplanner.team/stops/X824aec", "https://tec.openplanner.team/stops/X824aed"], ["https://tec.openplanner.team/stops/LBaeg--2", "https://tec.openplanner.team/stops/LBafagn2"], ["https://tec.openplanner.team/stops/H1hr126a", "https://tec.openplanner.team/stops/H1hr126b"], ["https://tec.openplanner.team/stops/Bwavcui2", "https://tec.openplanner.team/stops/Bwavtas2"], ["https://tec.openplanner.team/stops/Cvlcalv1", "https://tec.openplanner.team/stops/Cvlpeau2"], ["https://tec.openplanner.team/stops/Cstgare2", "https://tec.openplanner.team/stops/Cstplac1"], ["https://tec.openplanner.team/stops/LHThall4", "https://tec.openplanner.team/stops/LHTmoul1"], ["https://tec.openplanner.team/stops/H4mb202b", "https://tec.openplanner.team/stops/H4va231a"], ["https://tec.openplanner.team/stops/Bmrqpla2", "https://tec.openplanner.team/stops/H1mk108d"], ["https://tec.openplanner.team/stops/LiV19--1", "https://tec.openplanner.team/stops/LiVgirk2"], ["https://tec.openplanner.team/stops/Lhufays1", "https://tec.openplanner.team/stops/LLrgare2"], ["https://tec.openplanner.team/stops/H1he109a", "https://tec.openplanner.team/stops/H1he110a"], ["https://tec.openplanner.team/stops/H2bh105b", "https://tec.openplanner.team/stops/H2bh112b"], ["https://tec.openplanner.team/stops/N145aka", "https://tec.openplanner.team/stops/N145akb"], ["https://tec.openplanner.team/stops/Bmarmpr2", "https://tec.openplanner.team/stops/Bmarmru2"], ["https://tec.openplanner.team/stops/Lbrdepo1", "https://tec.openplanner.team/stops/Ljucrah1"], ["https://tec.openplanner.team/stops/Bgemgcw1", "https://tec.openplanner.team/stops/N522aja"], ["https://tec.openplanner.team/stops/H1og131a", "https://tec.openplanner.team/stops/H1og133a"], ["https://tec.openplanner.team/stops/Bezebru2", "https://tec.openplanner.team/stops/Bezeksj2"], ["https://tec.openplanner.team/stops/Bgoegma2", "https://tec.openplanner.team/stops/Boplcsj2"], ["https://tec.openplanner.team/stops/H2se114b", "https://tec.openplanner.team/stops/H2se115a"], ["https://tec.openplanner.team/stops/Caihai81", "https://tec.openplanner.team/stops/Caihai82"], ["https://tec.openplanner.team/stops/X654aja", "https://tec.openplanner.team/stops/X654ala"], ["https://tec.openplanner.team/stops/LREchal2", "https://tec.openplanner.team/stops/LREprea2"], ["https://tec.openplanner.team/stops/LGemari1", "https://tec.openplanner.team/stops/LGemari2"], ["https://tec.openplanner.team/stops/N135adc", "https://tec.openplanner.team/stops/N135akb"], ["https://tec.openplanner.team/stops/N355aeb", "https://tec.openplanner.team/stops/N383aeb"], ["https://tec.openplanner.team/stops/LFsec--1", "https://tec.openplanner.team/stops/LFsguil1"], ["https://tec.openplanner.team/stops/H1el133a", "https://tec.openplanner.team/stops/H1el137a"], ["https://tec.openplanner.team/stops/X718ada", "https://tec.openplanner.team/stops/X733acb"], ["https://tec.openplanner.team/stops/H1pa108a", "https://tec.openplanner.team/stops/H1pa111a"], ["https://tec.openplanner.team/stops/H2be102a", "https://tec.openplanner.team/stops/H2mg151a"], ["https://tec.openplanner.team/stops/H1wa146a", "https://tec.openplanner.team/stops/H1wa158b"], ["https://tec.openplanner.team/stops/LSPbalm1", "https://tec.openplanner.team/stops/LSPwarf2"], ["https://tec.openplanner.team/stops/N535ada", "https://tec.openplanner.team/stops/N535aea"], ["https://tec.openplanner.team/stops/H1cr100a", "https://tec.openplanner.team/stops/H1ry134b"], ["https://tec.openplanner.team/stops/N525aba", "https://tec.openplanner.team/stops/N525ada"], ["https://tec.openplanner.team/stops/LDAandr1", "https://tec.openplanner.team/stops/LDAandr2"], ["https://tec.openplanner.team/stops/N512ara", "https://tec.openplanner.team/stops/N512aua"], ["https://tec.openplanner.team/stops/Bhalber2", "https://tec.openplanner.team/stops/Bhalber3"], ["https://tec.openplanner.team/stops/NC02aua", "https://tec.openplanner.team/stops/NC02aub"], ["https://tec.openplanner.team/stops/X940adb", "https://tec.openplanner.team/stops/X941aba"], ["https://tec.openplanner.team/stops/Llgarmu1", "https://tec.openplanner.team/stops/Llgfoy-1"], ["https://tec.openplanner.team/stops/N584aza", "https://tec.openplanner.team/stops/N584boa"], ["https://tec.openplanner.team/stops/H4ty293a", "https://tec.openplanner.team/stops/H4ty353a"], ["https://tec.openplanner.team/stops/X615agb", "https://tec.openplanner.team/stops/X615baa"], ["https://tec.openplanner.team/stops/Bwatifr1", "https://tec.openplanner.team/stops/Bwatrsg2"], ["https://tec.openplanner.team/stops/H1ol137a", "https://tec.openplanner.team/stops/H1ol137b"], ["https://tec.openplanner.team/stops/Llgbuis1", "https://tec.openplanner.team/stops/Llgcmes1"], ["https://tec.openplanner.team/stops/X638akb", "https://tec.openplanner.team/stops/X638apa"], ["https://tec.openplanner.team/stops/X770aab", "https://tec.openplanner.team/stops/X771aib"], ["https://tec.openplanner.team/stops/Bwatdmo1", "https://tec.openplanner.team/stops/Bwatlbs1"], ["https://tec.openplanner.team/stops/Lghferr2", "https://tec.openplanner.team/stops/Lmochan2"], ["https://tec.openplanner.team/stops/LaAdiep1", "https://tec.openplanner.team/stops/LaAkapi1"], ["https://tec.openplanner.team/stops/H1hh110b", "https://tec.openplanner.team/stops/H1hh117a"], ["https://tec.openplanner.team/stops/H4do103a", "https://tec.openplanner.team/stops/H4do106a"], ["https://tec.openplanner.team/stops/LDAcite2", "https://tec.openplanner.team/stops/LFethie2"], ["https://tec.openplanner.team/stops/Cflmarc2", "https://tec.openplanner.team/stops/Cwgmell1"], ["https://tec.openplanner.team/stops/Llgfont1", "https://tec.openplanner.team/stops/Llghoch1"], ["https://tec.openplanner.team/stops/Bdvmc031", "https://tec.openplanner.team/stops/Bdvmc032"], ["https://tec.openplanner.team/stops/LJEmalg1", "https://tec.openplanner.team/stops/LJEmalg2"], ["https://tec.openplanner.team/stops/X801ama", "https://tec.openplanner.team/stops/X801apb"], ["https://tec.openplanner.team/stops/N507afa", "https://tec.openplanner.team/stops/N507agb"], ["https://tec.openplanner.team/stops/LEBdoct2", "https://tec.openplanner.team/stops/LEBmoul1"], ["https://tec.openplanner.team/stops/LmSdorf2", "https://tec.openplanner.team/stops/LmSkape1"], ["https://tec.openplanner.team/stops/Ladplen*", "https://tec.openplanner.team/stops/Ladstat2"], ["https://tec.openplanner.team/stops/X941acb", "https://tec.openplanner.team/stops/X941ada"], ["https://tec.openplanner.team/stops/LBStec-2", "https://tec.openplanner.team/stops/LWOplat2"], ["https://tec.openplanner.team/stops/Bcrbrpb1", "https://tec.openplanner.team/stops/Bllnjpa2"], ["https://tec.openplanner.team/stops/LSZchpl1", "https://tec.openplanner.team/stops/LSZprie1"], ["https://tec.openplanner.team/stops/N874aca", "https://tec.openplanner.team/stops/N874acb"], ["https://tec.openplanner.team/stops/N346aaa", "https://tec.openplanner.team/stops/N346aab"], ["https://tec.openplanner.team/stops/LEnvill1", "https://tec.openplanner.team/stops/NL73aab"], ["https://tec.openplanner.team/stops/X602aea", "https://tec.openplanner.team/stops/X602agb"], ["https://tec.openplanner.team/stops/LOMtomb1", "https://tec.openplanner.team/stops/LOMtomb2"], ["https://tec.openplanner.team/stops/LNCecdo1", "https://tec.openplanner.team/stops/Lsearbo2"], ["https://tec.openplanner.team/stops/LCAeg--2", "https://tec.openplanner.team/stops/LTGsucr2"], ["https://tec.openplanner.team/stops/Cmcbriq2", "https://tec.openplanner.team/stops/Cmcgoch1"], ["https://tec.openplanner.team/stops/N539ara", "https://tec.openplanner.team/stops/N539bdb"], ["https://tec.openplanner.team/stops/LMAhall2", "https://tec.openplanner.team/stops/LMAroch3"], ["https://tec.openplanner.team/stops/Ljewale3", "https://tec.openplanner.team/stops/Lmocoop2"], ["https://tec.openplanner.team/stops/Cmyland4", "https://tec.openplanner.team/stops/Cmyvesa1"], ["https://tec.openplanner.team/stops/Bbghepi1", "https://tec.openplanner.team/stops/Bbghepi2"], ["https://tec.openplanner.team/stops/LBBlaga1", "https://tec.openplanner.team/stops/LBBlaga2"], ["https://tec.openplanner.team/stops/Cfasamb1", "https://tec.openplanner.team/stops/Cfaysle1"], ["https://tec.openplanner.team/stops/H1be100a", "https://tec.openplanner.team/stops/H1be104a"], ["https://tec.openplanner.team/stops/Lroeg--2", "https://tec.openplanner.team/stops/Lromerl2"], ["https://tec.openplanner.team/stops/Lbrfune*", "https://tec.openplanner.team/stops/Lbrfusi2"], ["https://tec.openplanner.team/stops/Cfrfaub2", "https://tec.openplanner.team/stops/Cfrfaub3"], ["https://tec.openplanner.team/stops/Balsnay1", "https://tec.openplanner.team/stops/Balssvi1"], ["https://tec.openplanner.team/stops/H2sb221a", "https://tec.openplanner.team/stops/H2sb221b"], ["https://tec.openplanner.team/stops/Bcbqcht2", "https://tec.openplanner.team/stops/Bcbqcim1"], ["https://tec.openplanner.team/stops/N120ahb", "https://tec.openplanner.team/stops/N340aba"], ["https://tec.openplanner.team/stops/H1br131a", "https://tec.openplanner.team/stops/H1br131b"], ["https://tec.openplanner.team/stops/X714adb", "https://tec.openplanner.team/stops/X715aja"], ["https://tec.openplanner.team/stops/X922aja", "https://tec.openplanner.team/stops/X942aea"], ["https://tec.openplanner.team/stops/N501lxa", "https://tec.openplanner.team/stops/N501mja"], ["https://tec.openplanner.team/stops/Lsnbrac1", "https://tec.openplanner.team/stops/Lsnvand3"], ["https://tec.openplanner.team/stops/H4ff115a", "https://tec.openplanner.team/stops/H4mb138b"], ["https://tec.openplanner.team/stops/Caih1631", "https://tec.openplanner.team/stops/N543bba"], ["https://tec.openplanner.team/stops/X640apb", "https://tec.openplanner.team/stops/X640aua"], ["https://tec.openplanner.team/stops/H4ne137b", "https://tec.openplanner.team/stops/H4te249a"], ["https://tec.openplanner.team/stops/NL76aea", "https://tec.openplanner.team/stops/NL76arb"], ["https://tec.openplanner.team/stops/N874aba", "https://tec.openplanner.team/stops/N874aca"], ["https://tec.openplanner.team/stops/Beclbar1", "https://tec.openplanner.team/stops/Bronrch2"], ["https://tec.openplanner.team/stops/Lougare3", "https://tec.openplanner.team/stops/Lscbarg2"], ["https://tec.openplanner.team/stops/H1wi157a", "https://tec.openplanner.team/stops/H1wi157b"], ["https://tec.openplanner.team/stops/LPOleli1", "https://tec.openplanner.team/stops/LPOpass1"], ["https://tec.openplanner.team/stops/LBlchin1", "https://tec.openplanner.team/stops/LGMvoue2"], ["https://tec.openplanner.team/stops/H1wa156b", "https://tec.openplanner.team/stops/H1wa163b"], ["https://tec.openplanner.team/stops/Lhrathe*", "https://tec.openplanner.team/stops/Lhrdeme2"], ["https://tec.openplanner.team/stops/LBDtill1", "https://tec.openplanner.team/stops/LJEniho2"], ["https://tec.openplanner.team/stops/Cfosurs2", "https://tec.openplanner.team/stops/Cptdubo2"], ["https://tec.openplanner.team/stops/N501blb", "https://tec.openplanner.team/stops/N501chf"], ["https://tec.openplanner.team/stops/Cmacreu1", "https://tec.openplanner.team/stops/Cmmtomb2"], ["https://tec.openplanner.team/stops/N228aba", "https://tec.openplanner.team/stops/N228acb"], ["https://tec.openplanner.team/stops/Bbstegl2", "https://tec.openplanner.team/stops/Bbstmco1"], ["https://tec.openplanner.team/stops/X639ada", "https://tec.openplanner.team/stops/X639aqa"], ["https://tec.openplanner.team/stops/Lbhbalt1", "https://tec.openplanner.team/stops/Lroeg--4"], ["https://tec.openplanner.team/stops/Bnstpla1", "https://tec.openplanner.team/stops/Bnstpla2"], ["https://tec.openplanner.team/stops/LVEdTEC1", "https://tec.openplanner.team/stops/LVEphar1"], ["https://tec.openplanner.team/stops/Ceqcfra1", "https://tec.openplanner.team/stops/H1er105b"], ["https://tec.openplanner.team/stops/X641aqb", "https://tec.openplanner.team/stops/X641ara"], ["https://tec.openplanner.team/stops/Cthgend1", "https://tec.openplanner.team/stops/Cthgend2"], ["https://tec.openplanner.team/stops/LPlchpl1", "https://tec.openplanner.team/stops/LPlchpl2"], ["https://tec.openplanner.team/stops/H1gq153a", "https://tec.openplanner.team/stops/H1sy147a"], ["https://tec.openplanner.team/stops/H1gh151b", "https://tec.openplanner.team/stops/H1gh365a"], ["https://tec.openplanner.team/stops/N547aba", "https://tec.openplanner.team/stops/N547abb"], ["https://tec.openplanner.team/stops/LWDsieg1", "https://tec.openplanner.team/stops/LWDsieg2"], ["https://tec.openplanner.team/stops/N357abb", "https://tec.openplanner.team/stops/N383aab"], ["https://tec.openplanner.team/stops/LVnroch1", "https://tec.openplanner.team/stops/LVnroch2"], ["https://tec.openplanner.team/stops/H5rx138a", "https://tec.openplanner.team/stops/H5rx138b"], ["https://tec.openplanner.team/stops/Canresi2", "https://tec.openplanner.team/stops/H2an104b"], ["https://tec.openplanner.team/stops/Llgcong2", "https://tec.openplanner.team/stops/Llgqmar2"], ["https://tec.openplanner.team/stops/H1er112a", "https://tec.openplanner.team/stops/H1pe130b"], ["https://tec.openplanner.team/stops/Bbsgbos1", "https://tec.openplanner.team/stops/Bbsgbos2"], ["https://tec.openplanner.team/stops/N516ada", "https://tec.openplanner.team/stops/N516ala"], ["https://tec.openplanner.team/stops/N252aaa", "https://tec.openplanner.team/stops/N252abb"], ["https://tec.openplanner.team/stops/H4ty273a", "https://tec.openplanner.team/stops/H4ty273d"], ["https://tec.openplanner.team/stops/LAYdieu1", "https://tec.openplanner.team/stops/LAYdieu2"], ["https://tec.openplanner.team/stops/H4ty272b", "https://tec.openplanner.team/stops/H4ty274a"], ["https://tec.openplanner.team/stops/X908aab", "https://tec.openplanner.team/stops/X908ala"], ["https://tec.openplanner.team/stops/X921ahb", "https://tec.openplanner.team/stops/X921ajc"], ["https://tec.openplanner.team/stops/Lvecote2", "https://tec.openplanner.team/stops/Lvemull2"], ["https://tec.openplanner.team/stops/X595aca", "https://tec.openplanner.team/stops/X595adb"], ["https://tec.openplanner.team/stops/X999aba", "https://tec.openplanner.team/stops/X999adb"], ["https://tec.openplanner.team/stops/Boplcsj3", "https://tec.openplanner.team/stops/Boplsma4"], ["https://tec.openplanner.team/stops/Cthathe1", "https://tec.openplanner.team/stops/Cthegli1"], ["https://tec.openplanner.team/stops/H1te182a", "https://tec.openplanner.team/stops/H1te185a"], ["https://tec.openplanner.team/stops/N585ahb", "https://tec.openplanner.team/stops/N585ajb"], ["https://tec.openplanner.team/stops/Bdoncar2", "https://tec.openplanner.team/stops/Bgliopp1"], ["https://tec.openplanner.team/stops/X882acb", "https://tec.openplanner.team/stops/X882ahb"], ["https://tec.openplanner.team/stops/H1ba106a", "https://tec.openplanner.team/stops/H1ba106b"], ["https://tec.openplanner.team/stops/X637agb", "https://tec.openplanner.team/stops/X637agd"], ["https://tec.openplanner.team/stops/Bnilcha1", "https://tec.openplanner.team/stops/Bnilpje2"], ["https://tec.openplanner.team/stops/Cmyplac2", "https://tec.openplanner.team/stops/Cmypost2"], ["https://tec.openplanner.team/stops/X723aha", "https://tec.openplanner.team/stops/X723ahb"], ["https://tec.openplanner.team/stops/X601aaa", "https://tec.openplanner.team/stops/X601bga"], ["https://tec.openplanner.team/stops/Cgpchgo2", "https://tec.openplanner.team/stops/Ctrterm1"], ["https://tec.openplanner.team/stops/Cmgpla2", "https://tec.openplanner.team/stops/Cmgvpa"], ["https://tec.openplanner.team/stops/LeUgend1", "https://tec.openplanner.team/stops/LeUrath2"], ["https://tec.openplanner.team/stops/X878adb", "https://tec.openplanner.team/stops/X879aaa"], ["https://tec.openplanner.team/stops/Cprbevu1", "https://tec.openplanner.team/stops/Cprbevu2"], ["https://tec.openplanner.team/stops/N543bxa", "https://tec.openplanner.team/stops/N543bxb"], ["https://tec.openplanner.team/stops/LTAchau1", "https://tec.openplanner.team/stops/LTHmont2"], ["https://tec.openplanner.team/stops/LiVkreu4", "https://tec.openplanner.team/stops/LONcroi2"], ["https://tec.openplanner.team/stops/N538aca", "https://tec.openplanner.team/stops/N538ama"], ["https://tec.openplanner.team/stops/N120ama", "https://tec.openplanner.team/stops/N121ahb"], ["https://tec.openplanner.team/stops/Llxeg--1", "https://tec.openplanner.team/stops/Llxeg--2"], ["https://tec.openplanner.team/stops/X771ahb", "https://tec.openplanner.team/stops/X771aia"], ["https://tec.openplanner.team/stops/Crapaep1", "https://tec.openplanner.team/stops/Crasocq2"], ["https://tec.openplanner.team/stops/X633ajc", "https://tec.openplanner.team/stops/X654aba"], ["https://tec.openplanner.team/stops/Cfrgare1", "https://tec.openplanner.team/stops/Cfrgivr1"], ["https://tec.openplanner.team/stops/LHupont1", "https://tec.openplanner.team/stops/LHurobi2"], ["https://tec.openplanner.team/stops/LWZponb2", "https://tec.openplanner.team/stops/LWZponh2"], ["https://tec.openplanner.team/stops/H5qu143a", "https://tec.openplanner.team/stops/H5qu143c"], ["https://tec.openplanner.team/stops/X633aha", "https://tec.openplanner.team/stops/X633aia"], ["https://tec.openplanner.team/stops/N535amc", "https://tec.openplanner.team/stops/N564aaa"], ["https://tec.openplanner.team/stops/LhBdorf1", "https://tec.openplanner.team/stops/LhBdorf2"], ["https://tec.openplanner.team/stops/Bsomwav2", "https://tec.openplanner.team/stops/N584abb"], ["https://tec.openplanner.team/stops/Bhevgar1", "https://tec.openplanner.team/stops/Bovesnh2"], ["https://tec.openplanner.team/stops/N166aaa", "https://tec.openplanner.team/stops/N565aab"], ["https://tec.openplanner.team/stops/H2ll187a", "https://tec.openplanner.team/stops/H2ll198a"], ["https://tec.openplanner.team/stops/H1ms279a", "https://tec.openplanner.team/stops/H1ms279b"], ["https://tec.openplanner.team/stops/H1wl121a", "https://tec.openplanner.team/stops/H1wl125a"], ["https://tec.openplanner.team/stops/LSkoran1", "https://tec.openplanner.team/stops/LSkoran2"], ["https://tec.openplanner.team/stops/X396aaa", "https://tec.openplanner.team/stops/X901ala"], ["https://tec.openplanner.team/stops/X982bra", "https://tec.openplanner.team/stops/X982brb"], ["https://tec.openplanner.team/stops/H1do109a", "https://tec.openplanner.team/stops/H1do109b"], ["https://tec.openplanner.team/stops/LHUdelc2", "https://tec.openplanner.team/stops/LHUloui2"], ["https://tec.openplanner.team/stops/N146aaa", "https://tec.openplanner.team/stops/N146aab"], ["https://tec.openplanner.team/stops/H4ga166a", "https://tec.openplanner.team/stops/H4ga166b"], ["https://tec.openplanner.team/stops/N229aca", "https://tec.openplanner.team/stops/N229acb"], ["https://tec.openplanner.team/stops/Cdanvpr2", "https://tec.openplanner.team/stops/Cmafafe1"], ["https://tec.openplanner.team/stops/N102aaa", "https://tec.openplanner.team/stops/N151ajf"], ["https://tec.openplanner.team/stops/Chpfoli3", "https://tec.openplanner.team/stops/Cracime1"], ["https://tec.openplanner.team/stops/Cchdaup1", "https://tec.openplanner.team/stops/Cchture1"], ["https://tec.openplanner.team/stops/Cctmari1", "https://tec.openplanner.team/stops/NC11aha"], ["https://tec.openplanner.team/stops/H1gr118a", "https://tec.openplanner.team/stops/H1gr119a"], ["https://tec.openplanner.team/stops/Clfbarr4", "https://tec.openplanner.team/stops/Clfbarr6"], ["https://tec.openplanner.team/stops/LDLgran2", "https://tec.openplanner.team/stops/LDLgran3"], ["https://tec.openplanner.team/stops/N536apa", "https://tec.openplanner.team/stops/N563anb"], ["https://tec.openplanner.team/stops/Bnetace1", "https://tec.openplanner.team/stops/Bnetrtb2"], ["https://tec.openplanner.team/stops/Crachap1", "https://tec.openplanner.team/stops/Crasocq1"], ["https://tec.openplanner.team/stops/LSceg--2", "https://tec.openplanner.team/stops/LTNegli1"], ["https://tec.openplanner.team/stops/H1ho122d", "https://tec.openplanner.team/stops/H1ho131b"], ["https://tec.openplanner.team/stops/N501lbb", "https://tec.openplanner.team/stops/N501zba"], ["https://tec.openplanner.team/stops/H4ne138b", "https://tec.openplanner.team/stops/H4ne141b"], ["https://tec.openplanner.team/stops/H5at115a", "https://tec.openplanner.team/stops/H5at115b"], ["https://tec.openplanner.team/stops/N348abb", "https://tec.openplanner.team/stops/N353awb"], ["https://tec.openplanner.team/stops/H1br120a", "https://tec.openplanner.team/stops/H2tr248b"], ["https://tec.openplanner.team/stops/LWDbure1", "https://tec.openplanner.team/stops/LWDplac1"], ["https://tec.openplanner.team/stops/N205acb", "https://tec.openplanner.team/stops/N205adb"], ["https://tec.openplanner.team/stops/Cgxbeau2", "https://tec.openplanner.team/stops/Cgxwaut2"], ["https://tec.openplanner.team/stops/LTigera2", "https://tec.openplanner.team/stops/LTiruel2"], ["https://tec.openplanner.team/stops/Bjdscnd1", "https://tec.openplanner.team/stops/Bjodgai2"], ["https://tec.openplanner.team/stops/LTAbran1", "https://tec.openplanner.team/stops/LTHmont1"], ["https://tec.openplanner.team/stops/H1pa100a", "https://tec.openplanner.team/stops/H1pa100b"], ["https://tec.openplanner.team/stops/N515afa", "https://tec.openplanner.team/stops/N515afb"], ["https://tec.openplanner.team/stops/H4ty323a", "https://tec.openplanner.team/stops/H4ty405a"], ["https://tec.openplanner.team/stops/X608asb", "https://tec.openplanner.team/stops/X622acb"], ["https://tec.openplanner.team/stops/H4bi100b", "https://tec.openplanner.team/stops/H4rc231c"], ["https://tec.openplanner.team/stops/X747aka", "https://tec.openplanner.team/stops/X747akb"], ["https://tec.openplanner.team/stops/LmTreic1", "https://tec.openplanner.team/stops/LmTzoll2"], ["https://tec.openplanner.team/stops/LVu03--1", "https://tec.openplanner.team/stops/LVu03--2"], ["https://tec.openplanner.team/stops/H2ml114a", "https://tec.openplanner.team/stops/H2ml114b"], ["https://tec.openplanner.team/stops/Balssvi2", "https://tec.openplanner.team/stops/Brsg7fo2"], ["https://tec.openplanner.team/stops/Bjodcsb1", "https://tec.openplanner.team/stops/Bjodppe2"], ["https://tec.openplanner.team/stops/Lvehodi1", "https://tec.openplanner.team/stops/Lveveou1"], ["https://tec.openplanner.team/stops/H1ca101b", "https://tec.openplanner.team/stops/H1ca184a"], ["https://tec.openplanner.team/stops/Csepote2", "https://tec.openplanner.team/stops/Csesabo2"], ["https://tec.openplanner.team/stops/Ccicent4", "https://tec.openplanner.team/stops/Cmtstan2"], ["https://tec.openplanner.team/stops/LBEpier1", "https://tec.openplanner.team/stops/LBEpier2"], ["https://tec.openplanner.team/stops/X831aba", "https://tec.openplanner.team/stops/X833aca"], ["https://tec.openplanner.team/stops/Lseberg1", "https://tec.openplanner.team/stops/Lsecoop2"], ["https://tec.openplanner.team/stops/X947aca", "https://tec.openplanner.team/stops/X947afa"], ["https://tec.openplanner.team/stops/N512aca", "https://tec.openplanner.team/stops/N512aid"], ["https://tec.openplanner.team/stops/H4fg116a", "https://tec.openplanner.team/stops/H4ho119a"], ["https://tec.openplanner.team/stops/N155aia", "https://tec.openplanner.team/stops/N170aab"], ["https://tec.openplanner.team/stops/X822aba", "https://tec.openplanner.team/stops/X822ana"], ["https://tec.openplanner.team/stops/Cgzplac2", "https://tec.openplanner.team/stops/Cgzplac6"], ["https://tec.openplanner.team/stops/Llggill2", "https://tec.openplanner.team/stops/Llgmaus1"], ["https://tec.openplanner.team/stops/N232bwb", "https://tec.openplanner.team/stops/N260acb"], ["https://tec.openplanner.team/stops/N521aqa", "https://tec.openplanner.team/stops/N521aub"], ["https://tec.openplanner.team/stops/Lpecaze1", "https://tec.openplanner.team/stops/LWeatel2"], ["https://tec.openplanner.team/stops/N539bfa", "https://tec.openplanner.team/stops/N539bga"], ["https://tec.openplanner.team/stops/LCOcrom2", "https://tec.openplanner.team/stops/LNEbo472"], ["https://tec.openplanner.team/stops/LVefont2", "https://tec.openplanner.team/stops/LVevill2"], ["https://tec.openplanner.team/stops/LSphote1", "https://tec.openplanner.team/stops/LSpvanr1"], ["https://tec.openplanner.team/stops/H4mo138b", "https://tec.openplanner.team/stops/H4mo158a"], ["https://tec.openplanner.team/stops/Csycant2", "https://tec.openplanner.team/stops/Csylaha1"], ["https://tec.openplanner.team/stops/Lheaaz-2", "https://tec.openplanner.team/stops/Lheelva2"], ["https://tec.openplanner.team/stops/N337aea", "https://tec.openplanner.team/stops/N337agb"], ["https://tec.openplanner.team/stops/H5pe141a", "https://tec.openplanner.team/stops/H5pe149b"], ["https://tec.openplanner.team/stops/Lhehoux2", "https://tec.openplanner.team/stops/Lheneuv4"], ["https://tec.openplanner.team/stops/X601bjb", "https://tec.openplanner.team/stops/X662aoa"], ["https://tec.openplanner.team/stops/X721akb", "https://tec.openplanner.team/stops/X721aoa"], ["https://tec.openplanner.team/stops/N120aab", "https://tec.openplanner.team/stops/N121agb"], ["https://tec.openplanner.team/stops/LWOruis1", "https://tec.openplanner.team/stops/LWOwaer1"], ["https://tec.openplanner.team/stops/LLvpost2", "https://tec.openplanner.team/stops/NL78aeb"], ["https://tec.openplanner.team/stops/X608aqa", "https://tec.openplanner.team/stops/X621adb"], ["https://tec.openplanner.team/stops/NL37ala", "https://tec.openplanner.team/stops/NL37aob"], ["https://tec.openplanner.team/stops/LSTchen1", "https://tec.openplanner.team/stops/LSTmast1"], ["https://tec.openplanner.team/stops/H1ho128a", "https://tec.openplanner.team/stops/H1wa135b"], ["https://tec.openplanner.team/stops/X672apa", "https://tec.openplanner.team/stops/X675aba"], ["https://tec.openplanner.team/stops/Bchgpap2", "https://tec.openplanner.team/stops/Bgisber2"], ["https://tec.openplanner.team/stops/Lglsana2", "https://tec.openplanner.team/stops/Lglvand1"], ["https://tec.openplanner.team/stops/N353aba", "https://tec.openplanner.team/stops/N355aea"], ["https://tec.openplanner.team/stops/Ccocroi1", "https://tec.openplanner.team/stops/Csocime1"], ["https://tec.openplanner.team/stops/LcRmich2", "https://tec.openplanner.team/stops/LnNkirc1"], ["https://tec.openplanner.team/stops/Lchsaeg1", "https://tec.openplanner.team/stops/LSReg--1"], ["https://tec.openplanner.team/stops/H4ir163c", "https://tec.openplanner.team/stops/H4ir164a"], ["https://tec.openplanner.team/stops/LbTathe2", "https://tec.openplanner.team/stops/LbTkran2"], ["https://tec.openplanner.team/stops/H1ch143b", "https://tec.openplanner.team/stops/H1hh112a"], ["https://tec.openplanner.team/stops/Bgntcbo2", "https://tec.openplanner.team/stops/Bgntcom2"], ["https://tec.openplanner.team/stops/H1ch142a", "https://tec.openplanner.team/stops/H1nm141b"], ["https://tec.openplanner.team/stops/LCSfagn2", "https://tec.openplanner.team/stops/LCSgend2"], ["https://tec.openplanner.team/stops/LsF39--2", "https://tec.openplanner.team/stops/LsFcafe1"], ["https://tec.openplanner.team/stops/Bwatgar1", "https://tec.openplanner.team/stops/Bwatgar2"], ["https://tec.openplanner.team/stops/Csdetan2", "https://tec.openplanner.team/stops/Csdpira1"], ["https://tec.openplanner.team/stops/X871aab", "https://tec.openplanner.team/stops/X873aaa"], ["https://tec.openplanner.team/stops/Cbmvalt2", "https://tec.openplanner.team/stops/Cstmarz2"], ["https://tec.openplanner.team/stops/N211aha", "https://tec.openplanner.team/stops/N211azb"], ["https://tec.openplanner.team/stops/N204aja", "https://tec.openplanner.team/stops/N205ada"], ["https://tec.openplanner.team/stops/LAVeg--2", "https://tec.openplanner.team/stops/LVHweri1"], ["https://tec.openplanner.team/stops/Bgntcom2", "https://tec.openplanner.team/stops/Bgnttma1"], ["https://tec.openplanner.team/stops/X911ada", "https://tec.openplanner.team/stops/X911asa"], ["https://tec.openplanner.team/stops/X713aia", "https://tec.openplanner.team/stops/X713aib"], ["https://tec.openplanner.team/stops/LAmsart2", "https://tec.openplanner.team/stops/LVLchem1"], ["https://tec.openplanner.team/stops/Lstphys1", "https://tec.openplanner.team/stops/Lstphys2"], ["https://tec.openplanner.team/stops/N524aba", "https://tec.openplanner.team/stops/N524ama"], ["https://tec.openplanner.team/stops/Bwatavo1", "https://tec.openplanner.team/stops/Bwatgar3"], ["https://tec.openplanner.team/stops/X607aaa", "https://tec.openplanner.team/stops/X608aza"], ["https://tec.openplanner.team/stops/N522aba", "https://tec.openplanner.team/stops/N522afa"], ["https://tec.openplanner.team/stops/X684aba", "https://tec.openplanner.team/stops/X684abb"], ["https://tec.openplanner.team/stops/H1lb153a", "https://tec.openplanner.team/stops/H1lb153b"], ["https://tec.openplanner.team/stops/H1ms257b", "https://tec.openplanner.team/stops/H1ss349a"], ["https://tec.openplanner.team/stops/LHCcroy1", "https://tec.openplanner.team/stops/LWEwilc1"], ["https://tec.openplanner.team/stops/X636aja", "https://tec.openplanner.team/stops/X636ala"], ["https://tec.openplanner.team/stops/LGLobor2", "https://tec.openplanner.team/stops/LGLspor1"], ["https://tec.openplanner.team/stops/H2mm136a", "https://tec.openplanner.team/stops/H2mo131b"], ["https://tec.openplanner.team/stops/Cbmpopr2", "https://tec.openplanner.team/stops/Clcfall2"], ["https://tec.openplanner.team/stops/LwYkreu1", "https://tec.openplanner.team/stops/LwYkreu4"], ["https://tec.openplanner.team/stops/H3lr110a", "https://tec.openplanner.team/stops/H3lr113b"], ["https://tec.openplanner.team/stops/X616ahb", "https://tec.openplanner.team/stops/X617aca"], ["https://tec.openplanner.team/stops/LlgLAMB1", "https://tec.openplanner.team/stops/LlgLEOP1"], ["https://tec.openplanner.team/stops/LNAbois1", "https://tec.openplanner.team/stops/LNAdemo1"], ["https://tec.openplanner.team/stops/N543avh", "https://tec.openplanner.team/stops/N543cob"], ["https://tec.openplanner.team/stops/N529afa", "https://tec.openplanner.team/stops/N529akb"], ["https://tec.openplanner.team/stops/N355aba", "https://tec.openplanner.team/stops/N355aeb"], ["https://tec.openplanner.team/stops/H2be101a", "https://tec.openplanner.team/stops/H2lh124a"], ["https://tec.openplanner.team/stops/N155afc", "https://tec.openplanner.team/stops/N155aga"], ["https://tec.openplanner.team/stops/H4ga155b", "https://tec.openplanner.team/stops/H4ga169b"], ["https://tec.openplanner.team/stops/LBPauto2", "https://tec.openplanner.team/stops/LBPrueg2"], ["https://tec.openplanner.team/stops/Lveptle4", "https://tec.openplanner.team/stops/Lveveou1"], ["https://tec.openplanner.team/stops/N232acb", "https://tec.openplanner.team/stops/N232adb"], ["https://tec.openplanner.team/stops/H4ty326a", "https://tec.openplanner.team/stops/H4wc373b"], ["https://tec.openplanner.team/stops/Cmtfabi1", "https://tec.openplanner.team/stops/Cmtfabi2"], ["https://tec.openplanner.team/stops/X999aea", "https://tec.openplanner.team/stops/X999aub"], ["https://tec.openplanner.team/stops/X725bab", "https://tec.openplanner.team/stops/X725bbb"], ["https://tec.openplanner.team/stops/Ccppn1", "https://tec.openplanner.team/stops/Ccpsecp1"], ["https://tec.openplanner.team/stops/X725afd", "https://tec.openplanner.team/stops/X725afh"], ["https://tec.openplanner.team/stops/LWOcour2", "https://tec.openplanner.team/stops/LWOmart2"], ["https://tec.openplanner.team/stops/H1bu139a", "https://tec.openplanner.team/stops/H1mm131a"], ["https://tec.openplanner.team/stops/LAvambr2", "https://tec.openplanner.team/stops/LMXempe2"], ["https://tec.openplanner.team/stops/H1hw123b", "https://tec.openplanner.team/stops/H1hw125a"], ["https://tec.openplanner.team/stops/LOljean2", "https://tec.openplanner.team/stops/LOltill1"], ["https://tec.openplanner.team/stops/LGHplai1", "https://tec.openplanner.team/stops/LTPwann2"], ["https://tec.openplanner.team/stops/H3bi107b", "https://tec.openplanner.team/stops/H3bi110a"], ["https://tec.openplanner.team/stops/Bcrnncb2", "https://tec.openplanner.team/stops/Bcrnnra1"], ["https://tec.openplanner.team/stops/Cbmclar2", "https://tec.openplanner.team/stops/H1tt109b"], ["https://tec.openplanner.team/stops/Cctjoue6", "https://tec.openplanner.team/stops/Cpllimi4"], ["https://tec.openplanner.team/stops/H1br124b", "https://tec.openplanner.team/stops/H1br130b"], ["https://tec.openplanner.team/stops/X812acb", "https://tec.openplanner.team/stops/X826abb"], ["https://tec.openplanner.team/stops/Bitrh%C3%BBl1", "https://tec.openplanner.team/stops/Bronpfe1"], ["https://tec.openplanner.team/stops/N508aba", "https://tec.openplanner.team/stops/N508acb"], ["https://tec.openplanner.team/stops/H1hq158a", "https://tec.openplanner.team/stops/H1sy148c"], ["https://tec.openplanner.team/stops/Caihai82", "https://tec.openplanner.team/stops/Crsaise1"], ["https://tec.openplanner.team/stops/N531acb", "https://tec.openplanner.team/stops/N531aeb"], ["https://tec.openplanner.team/stops/X653afb", "https://tec.openplanner.team/stops/X667acb"], ["https://tec.openplanner.team/stops/X871ada", "https://tec.openplanner.team/stops/X871aea"], ["https://tec.openplanner.team/stops/X725aya", "https://tec.openplanner.team/stops/X725bbb"], ["https://tec.openplanner.team/stops/H4ty269a", "https://tec.openplanner.team/stops/H4ty292a"], ["https://tec.openplanner.team/stops/N241aca", "https://tec.openplanner.team/stops/N241ada"], ["https://tec.openplanner.team/stops/LENaout1", "https://tec.openplanner.team/stops/LENchem1"], ["https://tec.openplanner.team/stops/Blanath2", "https://tec.openplanner.team/stops/Blanmde2"], ["https://tec.openplanner.team/stops/Bgisber1", "https://tec.openplanner.team/stops/Bgisber2"], ["https://tec.openplanner.team/stops/Lcealig1", "https://tec.openplanner.team/stops/Lcealig2"], ["https://tec.openplanner.team/stops/H1by108b", "https://tec.openplanner.team/stops/H1by108e"], ["https://tec.openplanner.team/stops/H1wa132a", "https://tec.openplanner.team/stops/H1wa145a"], ["https://tec.openplanner.team/stops/Bboncgs1", "https://tec.openplanner.team/stops/Bboneta2"], ["https://tec.openplanner.team/stops/N521aha", "https://tec.openplanner.team/stops/N521apa"], ["https://tec.openplanner.team/stops/LHEvign1", "https://tec.openplanner.team/stops/LHEvign2"], ["https://tec.openplanner.team/stops/Ljucano1", "https://tec.openplanner.team/stops/Ljuetie2"], ["https://tec.openplanner.team/stops/H1hh111a", "https://tec.openplanner.team/stops/H1hh114a"], ["https://tec.openplanner.team/stops/LLUmc--2", "https://tec.openplanner.team/stops/LLUtill2"], ["https://tec.openplanner.team/stops/Llgcadr2", "https://tec.openplanner.team/stops/Llgcadr3"], ["https://tec.openplanner.team/stops/N202ahb", "https://tec.openplanner.team/stops/N202aia"], ["https://tec.openplanner.team/stops/LSNecol3", "https://tec.openplanner.team/stops/LSNecol4"], ["https://tec.openplanner.team/stops/X801aib", "https://tec.openplanner.team/stops/X801boa"], ["https://tec.openplanner.team/stops/H3bo100c", "https://tec.openplanner.team/stops/H3th127a"], ["https://tec.openplanner.team/stops/Bhptcha1", "https://tec.openplanner.team/stops/Bhptpla2"], ["https://tec.openplanner.team/stops/Ljecoqu2", "https://tec.openplanner.team/stops/Ljexhav2"], ["https://tec.openplanner.team/stops/N301ama", "https://tec.openplanner.team/stops/N302afa"], ["https://tec.openplanner.team/stops/Cgycime4", "https://tec.openplanner.team/stops/Cgylami2"], ["https://tec.openplanner.team/stops/Cdogrro1", "https://tec.openplanner.team/stops/Cstplac2"], ["https://tec.openplanner.team/stops/H4ea132a", "https://tec.openplanner.team/stops/H4ea132c"], ["https://tec.openplanner.team/stops/Cmohotv4", "https://tec.openplanner.team/stops/Cmorgof2"], ["https://tec.openplanner.team/stops/H4fo118b", "https://tec.openplanner.team/stops/H4pe128b"], ["https://tec.openplanner.team/stops/H1og131b", "https://tec.openplanner.team/stops/H1og134b"], ["https://tec.openplanner.team/stops/Bblager1", "https://tec.openplanner.team/stops/Bplnfpa1"], ["https://tec.openplanner.team/stops/Bwatcap1", "https://tec.openplanner.team/stops/Bwatsan1"], ["https://tec.openplanner.team/stops/Crchutt1", "https://tec.openplanner.team/stops/Crcrwas2"], ["https://tec.openplanner.team/stops/Cgxchan1", "https://tec.openplanner.team/stops/Cmofosb2"], ["https://tec.openplanner.team/stops/LwYbruc3", "https://tec.openplanner.team/stops/LwYbruc4"], ["https://tec.openplanner.team/stops/N571adb", "https://tec.openplanner.team/stops/N573adb"], ["https://tec.openplanner.team/stops/LLOspin1", "https://tec.openplanner.team/stops/LLOspin2"], ["https://tec.openplanner.team/stops/N506bma", "https://tec.openplanner.team/stops/N506bqa"], ["https://tec.openplanner.team/stops/Btstbes1", "https://tec.openplanner.team/stops/Btstche2"], ["https://tec.openplanner.team/stops/LFymare3", "https://tec.openplanner.team/stops/LFypont1"], ["https://tec.openplanner.team/stops/LSubass1", "https://tec.openplanner.team/stops/LSuusin1"], ["https://tec.openplanner.team/stops/X654afa", "https://tec.openplanner.team/stops/X670ala"], ["https://tec.openplanner.team/stops/H4rm114a", "https://tec.openplanner.team/stops/H4rm114b"], ["https://tec.openplanner.team/stops/LVLeg--3", "https://tec.openplanner.team/stops/LVLruis1"], ["https://tec.openplanner.team/stops/LSssurl2", "https://tec.openplanner.team/stops/N506bqa"], ["https://tec.openplanner.team/stops/LMNheme2", "https://tec.openplanner.team/stops/LMNpann1"], ["https://tec.openplanner.team/stops/LPcforg1", "https://tec.openplanner.team/stops/LVParal1"], ["https://tec.openplanner.team/stops/N502aca", "https://tec.openplanner.team/stops/N502acb"], ["https://tec.openplanner.team/stops/LMNgare2", "https://tec.openplanner.team/stops/LMNgend2"], ["https://tec.openplanner.team/stops/H4ea131a", "https://tec.openplanner.team/stops/H4ea134a"], ["https://tec.openplanner.team/stops/LPoewer1", "https://tec.openplanner.team/stops/LPoneuf1"], ["https://tec.openplanner.team/stops/Bnetrtb2", "https://tec.openplanner.team/stops/Bnetvan1"], ["https://tec.openplanner.team/stops/Bbaubru1", "https://tec.openplanner.team/stops/Bbaulil1"], ["https://tec.openplanner.team/stops/LoUpete1", "https://tec.openplanner.team/stops/LoUpete2"], ["https://tec.openplanner.team/stops/X820ada", "https://tec.openplanner.team/stops/X820agc"], ["https://tec.openplanner.team/stops/H5pe133b", "https://tec.openplanner.team/stops/H5pe147a"], ["https://tec.openplanner.team/stops/NC14aab", "https://tec.openplanner.team/stops/NC14aua"], ["https://tec.openplanner.team/stops/N501hrb", "https://tec.openplanner.team/stops/N501isb"], ["https://tec.openplanner.team/stops/X923acb", "https://tec.openplanner.team/stops/X923aeb"], ["https://tec.openplanner.team/stops/X661amb", "https://tec.openplanner.team/stops/X661bcb"], ["https://tec.openplanner.team/stops/Bvilcha1", "https://tec.openplanner.team/stops/Bvilvil2"], ["https://tec.openplanner.team/stops/N550ajb", "https://tec.openplanner.team/stops/N550akb"], ["https://tec.openplanner.team/stops/X398aab", "https://tec.openplanner.team/stops/X398acb"], ["https://tec.openplanner.team/stops/LHdvill1", "https://tec.openplanner.team/stops/LLOspin1"], ["https://tec.openplanner.team/stops/LJUmc--2", "https://tec.openplanner.team/stops/LJUxhen3"], ["https://tec.openplanner.team/stops/Crglyre1", "https://tec.openplanner.team/stops/Crgmgri1"], ["https://tec.openplanner.team/stops/LAyegli2", "https://tec.openplanner.team/stops/LSHmais1"], ["https://tec.openplanner.team/stops/H1ho132b", "https://tec.openplanner.team/stops/H1ho144b"], ["https://tec.openplanner.team/stops/N170aba", "https://tec.openplanner.team/stops/NC14abb"], ["https://tec.openplanner.team/stops/H4hx110a", "https://tec.openplanner.team/stops/H4hx113b"], ["https://tec.openplanner.team/stops/LVLf10-1", "https://tec.openplanner.team/stops/LVLgotr3"], ["https://tec.openplanner.team/stops/X993ahb", "https://tec.openplanner.team/stops/X993aia"], ["https://tec.openplanner.team/stops/H1fa117a", "https://tec.openplanner.team/stops/H1fa117b"], ["https://tec.openplanner.team/stops/Bchgbar2", "https://tec.openplanner.team/stops/Bchgflo1"], ["https://tec.openplanner.team/stops/Lhurfay2", "https://tec.openplanner.team/stops/LLrgare2"], ["https://tec.openplanner.team/stops/X666aka", "https://tec.openplanner.team/stops/X666akb"], ["https://tec.openplanner.team/stops/LWapl--3", "https://tec.openplanner.team/stops/LWapl--4"], ["https://tec.openplanner.team/stops/X743acb", "https://tec.openplanner.team/stops/X756aka"], ["https://tec.openplanner.team/stops/Ctrleju2", "https://tec.openplanner.team/stops/Ctrstro1"], ["https://tec.openplanner.team/stops/LAYcher1", "https://tec.openplanner.team/stops/LAYcorn1"], ["https://tec.openplanner.team/stops/Bllnrod3", "https://tec.openplanner.team/stops/Bmsgaxp1"], ["https://tec.openplanner.team/stops/X771anb", "https://tec.openplanner.team/stops/X773anb"], ["https://tec.openplanner.team/stops/X888afb", "https://tec.openplanner.team/stops/X888aga"], ["https://tec.openplanner.team/stops/X822adb", "https://tec.openplanner.team/stops/X822agb"], ["https://tec.openplanner.team/stops/H2pe163a", "https://tec.openplanner.team/stops/H2tr249a"], ["https://tec.openplanner.team/stops/Cgpauln1", "https://tec.openplanner.team/stops/Cgpauln2"], ["https://tec.openplanner.team/stops/Lengran1", "https://tec.openplanner.team/stops/Lveoctr2"], ["https://tec.openplanner.team/stops/X750axa", "https://tec.openplanner.team/stops/X750beb"], ["https://tec.openplanner.team/stops/Cwgmutu1", "https://tec.openplanner.team/stops/Cwgplac2"], ["https://tec.openplanner.team/stops/Ldichat2", "https://tec.openplanner.team/stops/Ldilyce*"], ["https://tec.openplanner.team/stops/N513bab", "https://tec.openplanner.team/stops/N513bbd"], ["https://tec.openplanner.team/stops/X760ada", "https://tec.openplanner.team/stops/X760aeb"], ["https://tec.openplanner.team/stops/H2go114c", "https://tec.openplanner.team/stops/H2go115a"], ["https://tec.openplanner.team/stops/N574aaa", "https://tec.openplanner.team/stops/N574aba"], ["https://tec.openplanner.team/stops/LHHgare2", "https://tec.openplanner.team/stops/LSG111-1"], ["https://tec.openplanner.team/stops/H4ho119b", "https://tec.openplanner.team/stops/H4ho120a"], ["https://tec.openplanner.team/stops/LFMkrin2", "https://tec.openplanner.team/stops/LVu03--2"], ["https://tec.openplanner.team/stops/LAvatri1", "https://tec.openplanner.team/stops/LAvchpl2"], ["https://tec.openplanner.team/stops/N501evb", "https://tec.openplanner.team/stops/N501kjb"], ["https://tec.openplanner.team/stops/H4ty297a", "https://tec.openplanner.team/stops/H4ty314e"], ["https://tec.openplanner.team/stops/NL68add", "https://tec.openplanner.team/stops/NL68aga"], ["https://tec.openplanner.team/stops/LLUg82-1", "https://tec.openplanner.team/stops/LLUgend2"], ["https://tec.openplanner.team/stops/X660aib", "https://tec.openplanner.team/stops/X672ahb"], ["https://tec.openplanner.team/stops/Cobmara1", "https://tec.openplanner.team/stops/Cobmven1"], ["https://tec.openplanner.team/stops/LBEtrix2", "https://tec.openplanner.team/stops/LDLbois2"], ["https://tec.openplanner.team/stops/X818aab", "https://tec.openplanner.team/stops/X818aba"], ["https://tec.openplanner.team/stops/LSPfrai1", "https://tec.openplanner.team/stops/LSPfrai2"], ["https://tec.openplanner.team/stops/LAibego1", "https://tec.openplanner.team/stops/Lccaigr1"], ["https://tec.openplanner.team/stops/Cfocorn1", "https://tec.openplanner.team/stops/Cforpet2"], ["https://tec.openplanner.team/stops/H1ch106a", "https://tec.openplanner.team/stops/H5ma186a"], ["https://tec.openplanner.team/stops/X818anb", "https://tec.openplanner.team/stops/X818awa"], ["https://tec.openplanner.team/stops/H1on128a", "https://tec.openplanner.team/stops/H1on128d"], ["https://tec.openplanner.team/stops/LhEherb1", "https://tec.openplanner.team/stops/LhEklos1"], ["https://tec.openplanner.team/stops/Cmogtri1", "https://tec.openplanner.team/stops/Cmogtri2"], ["https://tec.openplanner.team/stops/N348aab", "https://tec.openplanner.team/stops/N348ada"], ["https://tec.openplanner.team/stops/H4mv193a", "https://tec.openplanner.team/stops/H4mv196a"], ["https://tec.openplanner.team/stops/H1ol142a", "https://tec.openplanner.team/stops/H1ol144a"], ["https://tec.openplanner.team/stops/Cgostex2", "https://tec.openplanner.team/stops/Cjuaero1"], ["https://tec.openplanner.team/stops/Lsn184-1", "https://tec.openplanner.team/stops/Lsnhoco2"], ["https://tec.openplanner.team/stops/H2ch100b", "https://tec.openplanner.team/stops/H2ch123c"], ["https://tec.openplanner.team/stops/Cmqcend1", "https://tec.openplanner.team/stops/Cmqchap2"], ["https://tec.openplanner.team/stops/Lhubriq1", "https://tec.openplanner.team/stops/Lmntast3"], ["https://tec.openplanner.team/stops/H4ve135a", "https://tec.openplanner.team/stops/H4ve135b"], ["https://tec.openplanner.team/stops/LBRmc--3", "https://tec.openplanner.team/stops/LBRruel2"], ["https://tec.openplanner.team/stops/N514acb", "https://tec.openplanner.team/stops/N514aka"], ["https://tec.openplanner.team/stops/N501ira", "https://tec.openplanner.team/stops/N501irb"], ["https://tec.openplanner.team/stops/X714ada", "https://tec.openplanner.team/stops/X714aeb"], ["https://tec.openplanner.team/stops/N531alb", "https://tec.openplanner.team/stops/N531arb"], ["https://tec.openplanner.team/stops/Lsephar2", "https://tec.openplanner.team/stops/Ltihala2"], ["https://tec.openplanner.team/stops/X670aka", "https://tec.openplanner.team/stops/X670amb"], ["https://tec.openplanner.team/stops/H1ha193a", "https://tec.openplanner.team/stops/H1ms282a"], ["https://tec.openplanner.team/stops/Csdpira2", "https://tec.openplanner.team/stops/Csdrofr1"], ["https://tec.openplanner.team/stops/X641aea", "https://tec.openplanner.team/stops/X641akb"], ["https://tec.openplanner.team/stops/Lghmavi1", "https://tec.openplanner.team/stops/Lghpero2"], ["https://tec.openplanner.team/stops/Bcsecar1", "https://tec.openplanner.team/stops/Bcsepes2"], ["https://tec.openplanner.team/stops/LTPbeau1", "https://tec.openplanner.team/stops/LTPpisc2"], ["https://tec.openplanner.team/stops/X837aia", "https://tec.openplanner.team/stops/X886aaa"], ["https://tec.openplanner.team/stops/NC23abb", "https://tec.openplanner.team/stops/NC23acb"], ["https://tec.openplanner.team/stops/Llgbour1", "https://tec.openplanner.team/stops/Llgcmes2"], ["https://tec.openplanner.team/stops/H2ch105c", "https://tec.openplanner.team/stops/H2ch108a"], ["https://tec.openplanner.team/stops/LHUaveu1", "https://tec.openplanner.team/stops/LHUfont1"], ["https://tec.openplanner.team/stops/N501hmb", "https://tec.openplanner.team/stops/N501iub"], ["https://tec.openplanner.team/stops/X938aea", "https://tec.openplanner.team/stops/X950aca"], ["https://tec.openplanner.team/stops/Cchba09", "https://tec.openplanner.team/stops/Cchba12"], ["https://tec.openplanner.team/stops/Lfhdonn1", "https://tec.openplanner.team/stops/Lfhxhor1"], ["https://tec.openplanner.team/stops/LPLbiol1", "https://tec.openplanner.team/stops/LPLline2"], ["https://tec.openplanner.team/stops/N343aab", "https://tec.openplanner.team/stops/N343abb"], ["https://tec.openplanner.team/stops/Blmlcle2", "https://tec.openplanner.team/stops/Blmlmco2"], ["https://tec.openplanner.team/stops/LESpaix1", "https://tec.openplanner.team/stops/LESslmo1"], ["https://tec.openplanner.team/stops/LNOning2", "https://tec.openplanner.team/stops/LNOsedo2"], ["https://tec.openplanner.team/stops/LMAroch3", "https://tec.openplanner.team/stops/LMAroch4"], ["https://tec.openplanner.team/stops/NC11aoa", "https://tec.openplanner.team/stops/NC11aob"], ["https://tec.openplanner.team/stops/H4cr110a", "https://tec.openplanner.team/stops/H4ff122b"], ["https://tec.openplanner.team/stops/H1hq124b", "https://tec.openplanner.team/stops/H1hq126b"], ["https://tec.openplanner.team/stops/LFPkape1", "https://tec.openplanner.team/stops/LFPkape4"], ["https://tec.openplanner.team/stops/X805aka", "https://tec.openplanner.team/stops/X807adb"], ["https://tec.openplanner.team/stops/H1er105a", "https://tec.openplanner.team/stops/H1er111a"], ["https://tec.openplanner.team/stops/Bnstmig2", "https://tec.openplanner.team/stops/Bnstver2"], ["https://tec.openplanner.team/stops/X921afa", "https://tec.openplanner.team/stops/X921apa"], ["https://tec.openplanner.team/stops/Cgzcorn2", "https://tec.openplanner.team/stops/Cgzplac6"], ["https://tec.openplanner.team/stops/LMNjard2", "https://tec.openplanner.team/stops/LPbusin2"], ["https://tec.openplanner.team/stops/X786adb", "https://tec.openplanner.team/stops/X789aga"], ["https://tec.openplanner.team/stops/H4bu108a", "https://tec.openplanner.team/stops/H4cw104a"], ["https://tec.openplanner.team/stops/LaMadam2", "https://tec.openplanner.team/stops/LaMschw2"], ["https://tec.openplanner.team/stops/LFehaut2", "https://tec.openplanner.team/stops/LFemoul1"], ["https://tec.openplanner.team/stops/Lpeeg--2", "https://tec.openplanner.team/stops/Lpevesd1"], ["https://tec.openplanner.team/stops/N145aja", "https://tec.openplanner.team/stops/N145aka"], ["https://tec.openplanner.team/stops/N505ada", "https://tec.openplanner.team/stops/N505aeb"], ["https://tec.openplanner.team/stops/N117aga", "https://tec.openplanner.team/stops/N117ara"], ["https://tec.openplanner.team/stops/Blthvil1", "https://tec.openplanner.team/stops/Blthwav3"], ["https://tec.openplanner.team/stops/H1gh163b", "https://tec.openplanner.team/stops/H1je225a"], ["https://tec.openplanner.team/stops/X746ada", "https://tec.openplanner.team/stops/X746aeb"], ["https://tec.openplanner.team/stops/Llgjose1", "https://tec.openplanner.team/stops/Llgware2"], ["https://tec.openplanner.team/stops/H2bh110a", "https://tec.openplanner.team/stops/H2bh110d"], ["https://tec.openplanner.team/stops/LBegare2", "https://tec.openplanner.team/stops/LWHmath2"], ["https://tec.openplanner.team/stops/Ccogibr1", "https://tec.openplanner.team/stops/Ccovies1"], ["https://tec.openplanner.team/stops/X983ada", "https://tec.openplanner.team/stops/X996aha"], ["https://tec.openplanner.team/stops/X917aca", "https://tec.openplanner.team/stops/X919aeb"], ["https://tec.openplanner.team/stops/Llgamer2", "https://tec.openplanner.team/stops/Llgamer4"], ["https://tec.openplanner.team/stops/LVnetan1", "https://tec.openplanner.team/stops/LVnetan2"], ["https://tec.openplanner.team/stops/X612aba", "https://tec.openplanner.team/stops/X623aaa"], ["https://tec.openplanner.team/stops/X666ada", "https://tec.openplanner.team/stops/X666aea"], ["https://tec.openplanner.team/stops/LFIinse1", "https://tec.openplanner.team/stops/LMYvill1"], ["https://tec.openplanner.team/stops/X575afb", "https://tec.openplanner.team/stops/X575agb"], ["https://tec.openplanner.team/stops/X749aab", "https://tec.openplanner.team/stops/X754aeb"], ["https://tec.openplanner.team/stops/X805aab", "https://tec.openplanner.team/stops/X805akb"], ["https://tec.openplanner.team/stops/X926aaa", "https://tec.openplanner.team/stops/X926afb"], ["https://tec.openplanner.team/stops/X793aaa", "https://tec.openplanner.team/stops/X793apb"], ["https://tec.openplanner.team/stops/Bcrncce2", "https://tec.openplanner.team/stops/N584acb"], ["https://tec.openplanner.team/stops/LAWcite2", "https://tec.openplanner.team/stops/LAWcorn1"], ["https://tec.openplanner.team/stops/Lsefive1", "https://tec.openplanner.team/stops/Lsemany2"], ["https://tec.openplanner.team/stops/N232bba", "https://tec.openplanner.team/stops/N232bsa"], ["https://tec.openplanner.team/stops/Ljekess2", "https://tec.openplanner.team/stops/Ljestat3"], ["https://tec.openplanner.team/stops/Bcbqcim2", "https://tec.openplanner.team/stops/Bcbqp252"], ["https://tec.openplanner.team/stops/Bblaccm1", "https://tec.openplanner.team/stops/Bblamer2"], ["https://tec.openplanner.team/stops/X601aga", "https://tec.openplanner.team/stops/X601cba"], ["https://tec.openplanner.team/stops/LdEkreu2", "https://tec.openplanner.team/stops/LdEschw2"], ["https://tec.openplanner.team/stops/Beclpma2", "https://tec.openplanner.team/stops/H2ec105a"], ["https://tec.openplanner.team/stops/LHMgulp1", "https://tec.openplanner.team/stops/LHMmarq1"], ["https://tec.openplanner.team/stops/N347adb", "https://tec.openplanner.team/stops/X347ajb"], ["https://tec.openplanner.team/stops/Cchblne1", "https://tec.openplanner.team/stops/Cdalpla2"], ["https://tec.openplanner.team/stops/X896aeb", "https://tec.openplanner.team/stops/X993aja"], ["https://tec.openplanner.team/stops/X743aab", "https://tec.openplanner.team/stops/X743abb"], ["https://tec.openplanner.team/stops/N301abb", "https://tec.openplanner.team/stops/N301abc"], ["https://tec.openplanner.team/stops/X898aib", "https://tec.openplanner.team/stops/X898aja"], ["https://tec.openplanner.team/stops/Bsjgmil1", "https://tec.openplanner.team/stops/Bsjgmil2"], ["https://tec.openplanner.team/stops/X942abb", "https://tec.openplanner.team/stops/X942abd"], ["https://tec.openplanner.team/stops/Ljedepa2", "https://tec.openplanner.team/stops/Ljemeca1"], ["https://tec.openplanner.team/stops/X788abb", "https://tec.openplanner.team/stops/X789ahd"], ["https://tec.openplanner.team/stops/Bhercsj1", "https://tec.openplanner.team/stops/Bpiehte2"], ["https://tec.openplanner.team/stops/H1fv102a", "https://tec.openplanner.team/stops/H1fv102b"], ["https://tec.openplanner.team/stops/X663aab", "https://tec.openplanner.team/stops/X663ana"], ["https://tec.openplanner.team/stops/LsVfrde2", "https://tec.openplanner.team/stops/LsVviel1"], ["https://tec.openplanner.team/stops/LVErtt-1", "https://tec.openplanner.team/stops/LVErtt-2"], ["https://tec.openplanner.team/stops/H1he104a", "https://tec.openplanner.team/stops/H1he109a"], ["https://tec.openplanner.team/stops/Bixlpat1", "https://tec.openplanner.team/stops/Buccbas2"], ["https://tec.openplanner.team/stops/N524afb", "https://tec.openplanner.team/stops/N524aid"], ["https://tec.openplanner.team/stops/X801cia", "https://tec.openplanner.team/stops/X801cib"], ["https://tec.openplanner.team/stops/Lmocail1", "https://tec.openplanner.team/stops/Lmocail2"], ["https://tec.openplanner.team/stops/Loubiez2", "https://tec.openplanner.team/stops/Loubour1"], ["https://tec.openplanner.team/stops/H4ea130b", "https://tec.openplanner.team/stops/H4ea134b"], ["https://tec.openplanner.team/stops/Bptecal1", "https://tec.openplanner.team/stops/Bptemch2"], ["https://tec.openplanner.team/stops/X601bta", "https://tec.openplanner.team/stops/X662atb"], ["https://tec.openplanner.team/stops/X824ada", "https://tec.openplanner.team/stops/X824adb"], ["https://tec.openplanner.team/stops/X983aaa", "https://tec.openplanner.team/stops/X983agb"], ["https://tec.openplanner.team/stops/H1lb137b", "https://tec.openplanner.team/stops/H1lb138a"], ["https://tec.openplanner.team/stops/LVMcent1", "https://tec.openplanner.team/stops/LVMcent2"], ["https://tec.openplanner.team/stops/Cgogare1", "https://tec.openplanner.team/stops/Cgostex1"], ["https://tec.openplanner.team/stops/X664aja", "https://tec.openplanner.team/stops/X664aqa"], ["https://tec.openplanner.team/stops/LVNroua1", "https://tec.openplanner.team/stops/LWDsott1"], ["https://tec.openplanner.team/stops/X673ada", "https://tec.openplanner.team/stops/X673aeb"], ["https://tec.openplanner.team/stops/Btgrpla1", "https://tec.openplanner.team/stops/N584aba"], ["https://tec.openplanner.team/stops/H1bs111a", "https://tec.openplanner.team/stops/H1bs111b"], ["https://tec.openplanner.team/stops/X625aea", "https://tec.openplanner.team/stops/X625aeb"], ["https://tec.openplanner.team/stops/N340ada", "https://tec.openplanner.team/stops/N340adb"], ["https://tec.openplanner.team/stops/Bsomthi1", "https://tec.openplanner.team/stops/N584bnb"], ["https://tec.openplanner.team/stops/NL77ala", "https://tec.openplanner.team/stops/NL78akb"], ["https://tec.openplanner.team/stops/N204aca", "https://tec.openplanner.team/stops/N204adb"], ["https://tec.openplanner.team/stops/LrAalte2", "https://tec.openplanner.team/stops/LrAneue2"], ["https://tec.openplanner.team/stops/LFCalte1", "https://tec.openplanner.team/stops/LFCkerk2"], ["https://tec.openplanner.team/stops/Bwatb4s1", "https://tec.openplanner.team/stops/Bwatcro2"], ["https://tec.openplanner.team/stops/Lanfont1", "https://tec.openplanner.team/stops/Lannico2"], ["https://tec.openplanner.team/stops/LkEfrie2", "https://tec.openplanner.team/stops/LkEhatt2"], ["https://tec.openplanner.team/stops/H2ch100b", "https://tec.openplanner.team/stops/H2ch107a"], ["https://tec.openplanner.team/stops/N501kga", "https://tec.openplanner.team/stops/N501kha"], ["https://tec.openplanner.team/stops/Livcoll2", "https://tec.openplanner.team/stops/Livroch1"], ["https://tec.openplanner.team/stops/H2sb227b", "https://tec.openplanner.team/stops/H2sb243b"], ["https://tec.openplanner.team/stops/H4va232b", "https://tec.openplanner.team/stops/H5at129b"], ["https://tec.openplanner.team/stops/X998aab", "https://tec.openplanner.team/stops/X999amb"], ["https://tec.openplanner.team/stops/H1em102a", "https://tec.openplanner.team/stops/H1ev114b"], ["https://tec.openplanner.team/stops/Cfcleco2", "https://tec.openplanner.team/stops/Cfcpier1"], ["https://tec.openplanner.team/stops/Lscbarg1", "https://tec.openplanner.team/stops/Lscbarg2"], ["https://tec.openplanner.team/stops/X926aab", "https://tec.openplanner.team/stops/X926aba"], ["https://tec.openplanner.team/stops/Louetan2", "https://tec.openplanner.team/stops/Louwuid2"], ["https://tec.openplanner.team/stops/Bnivga31", "https://tec.openplanner.team/stops/Bnivga41"], ["https://tec.openplanner.team/stops/Bbcogpl2", "https://tec.openplanner.team/stops/H3br108d"], ["https://tec.openplanner.team/stops/X870aea", "https://tec.openplanner.team/stops/X870aeb"], ["https://tec.openplanner.team/stops/Ldilyce*", "https://tec.openplanner.team/stops/Ldineuf2"], ["https://tec.openplanner.team/stops/Clvndam1", "https://tec.openplanner.team/stops/Cmlavch1"], ["https://tec.openplanner.team/stops/Bbsicea2", "https://tec.openplanner.team/stops/Bwaunop2"], ["https://tec.openplanner.team/stops/X608ana", "https://tec.openplanner.team/stops/X622acb"], ["https://tec.openplanner.team/stops/Ctrleju1", "https://tec.openplanner.team/stops/Ctrvert2"], ["https://tec.openplanner.team/stops/N118ayb", "https://tec.openplanner.team/stops/N155aka"], ["https://tec.openplanner.team/stops/LLReg--2", "https://tec.openplanner.team/stops/LLSba4-1"], ["https://tec.openplanner.team/stops/N501eza", "https://tec.openplanner.team/stops/N501jrb"], ["https://tec.openplanner.team/stops/H1cu111b", "https://tec.openplanner.team/stops/H1ms922a"], ["https://tec.openplanner.team/stops/H4ty349a", "https://tec.openplanner.team/stops/H4ty349b"], ["https://tec.openplanner.team/stops/X650aeb", "https://tec.openplanner.team/stops/X650afe"], ["https://tec.openplanner.team/stops/H1bi100a", "https://tec.openplanner.team/stops/H1bu139a"], ["https://tec.openplanner.team/stops/H1si151a", "https://tec.openplanner.team/stops/H1si163b"], ["https://tec.openplanner.team/stops/Ccodubo1", "https://tec.openplanner.team/stops/Cpcchau"], ["https://tec.openplanner.team/stops/X663apa", "https://tec.openplanner.team/stops/X663aqa"], ["https://tec.openplanner.team/stops/LOchalo2", "https://tec.openplanner.team/stops/NL35acb"], ["https://tec.openplanner.team/stops/N507aib", "https://tec.openplanner.team/stops/N508aca"], ["https://tec.openplanner.team/stops/Bwbfeta2", "https://tec.openplanner.team/stops/Bwbfgar1"], ["https://tec.openplanner.team/stops/Lsmpost1", "https://tec.openplanner.team/stops/Lsmpost2"], ["https://tec.openplanner.team/stops/LAipala1", "https://tec.openplanner.team/stops/LAipala2"], ["https://tec.openplanner.team/stops/LWNcham1", "https://tec.openplanner.team/stops/LWNcham2"], ["https://tec.openplanner.team/stops/LBXhacb2", "https://tec.openplanner.team/stops/LHEpriv2"], ["https://tec.openplanner.team/stops/Cfmsncb2", "https://tec.openplanner.team/stops/Cfmwaut2"], ["https://tec.openplanner.team/stops/X901awa", "https://tec.openplanner.team/stops/X902bfa"], ["https://tec.openplanner.team/stops/H5el110b", "https://tec.openplanner.team/stops/H5el117a"], ["https://tec.openplanner.team/stops/Becebju2", "https://tec.openplanner.team/stops/Beceres2"], ["https://tec.openplanner.team/stops/N110afb", "https://tec.openplanner.team/stops/N110aga"], ["https://tec.openplanner.team/stops/LCsbors1", "https://tec.openplanner.team/stops/LVBneuv1"], ["https://tec.openplanner.team/stops/Llgpier2", "https://tec.openplanner.team/stops/LlgPTAV6"], ["https://tec.openplanner.team/stops/LCRf14-1", "https://tec.openplanner.team/stops/LTymahr2"], ["https://tec.openplanner.team/stops/H3bi104a", "https://tec.openplanner.team/stops/H3bi110b"], ["https://tec.openplanner.team/stops/N229aga", "https://tec.openplanner.team/stops/N291aba"], ["https://tec.openplanner.team/stops/X629aba", "https://tec.openplanner.team/stops/X636anb"], ["https://tec.openplanner.team/stops/H1em103b", "https://tec.openplanner.team/stops/H1em106b"], ["https://tec.openplanner.team/stops/Llgchal1", "https://tec.openplanner.team/stops/Llgelis2"], ["https://tec.openplanner.team/stops/LROhaie1", "https://tec.openplanner.team/stops/LSorobe1"], ["https://tec.openplanner.team/stops/Bbiemor2", "https://tec.openplanner.team/stops/Bgzdast2"], ["https://tec.openplanner.team/stops/X850aja", "https://tec.openplanner.team/stops/X850aoa"], ["https://tec.openplanner.team/stops/X661ama", "https://tec.openplanner.team/stops/X661amb"], ["https://tec.openplanner.team/stops/H1le128a", "https://tec.openplanner.team/stops/H1le128d"], ["https://tec.openplanner.team/stops/X345aaa", "https://tec.openplanner.team/stops/X363aaa"], ["https://tec.openplanner.team/stops/Llgrame1", "https://tec.openplanner.team/stops/Llgwiar2"], ["https://tec.openplanner.team/stops/X623afa", "https://tec.openplanner.team/stops/X623aga"], ["https://tec.openplanner.team/stops/X636ata", "https://tec.openplanner.team/stops/X636ayb"], ["https://tec.openplanner.team/stops/Bmoucnd1", "https://tec.openplanner.team/stops/Bottrfa4"], ["https://tec.openplanner.team/stops/Cgygazo2", "https://tec.openplanner.team/stops/CMgazo2"], ["https://tec.openplanner.team/stops/LVAgemm1", "https://tec.openplanner.team/stops/LVAmaas1"], ["https://tec.openplanner.team/stops/N532aab", "https://tec.openplanner.team/stops/N532aha"], ["https://tec.openplanner.team/stops/N170ada", "https://tec.openplanner.team/stops/N170adb"], ["https://tec.openplanner.team/stops/Ctrrpla1", "https://tec.openplanner.team/stops/Ctrrpla2"], ["https://tec.openplanner.team/stops/Llgcite2", "https://tec.openplanner.team/stops/Llghong2"], ["https://tec.openplanner.team/stops/LFArela5", "https://tec.openplanner.team/stops/LWDchab2"], ["https://tec.openplanner.team/stops/H4bh102d", "https://tec.openplanner.team/stops/H4bh104a"], ["https://tec.openplanner.team/stops/LaHzoll*", "https://tec.openplanner.team/stops/LbAhenk1"], ["https://tec.openplanner.team/stops/H1fr111a", "https://tec.openplanner.team/stops/H1fr112b"], ["https://tec.openplanner.team/stops/N101ala", "https://tec.openplanner.team/stops/N101alb"], ["https://tec.openplanner.team/stops/X639aoa", "https://tec.openplanner.team/stops/X639aoc"], ["https://tec.openplanner.team/stops/LHThall4", "https://tec.openplanner.team/stops/LLxcana2"], ["https://tec.openplanner.team/stops/N501gfa", "https://tec.openplanner.team/stops/N501gva"], ["https://tec.openplanner.team/stops/N170aca", "https://tec.openplanner.team/stops/N170acb"], ["https://tec.openplanner.team/stops/Cfcrerp2", "https://tec.openplanner.team/stops/N103aea"], ["https://tec.openplanner.team/stops/LHehacc1", "https://tec.openplanner.team/stops/LHehacc2"], ["https://tec.openplanner.team/stops/Lchec--2", "https://tec.openplanner.team/stops/Lvieg--1"], ["https://tec.openplanner.team/stops/Blindel5", "https://tec.openplanner.team/stops/Blindel6"], ["https://tec.openplanner.team/stops/H1qu106a", "https://tec.openplanner.team/stops/H1qu109a"], ["https://tec.openplanner.team/stops/Clproi1", "https://tec.openplanner.team/stops/Clpsola2"], ["https://tec.openplanner.team/stops/LbTaral2", "https://tec.openplanner.team/stops/LbTmons1"], ["https://tec.openplanner.team/stops/Csyplac2", "https://tec.openplanner.team/stops/H1mb125a"], ["https://tec.openplanner.team/stops/NL76aab", "https://tec.openplanner.team/stops/NL76aba"], ["https://tec.openplanner.team/stops/N543aza", "https://tec.openplanner.team/stops/N543cga"], ["https://tec.openplanner.team/stops/Cfrtill2", "https://tec.openplanner.team/stops/Crewath2"], ["https://tec.openplanner.team/stops/X725axa", "https://tec.openplanner.team/stops/X725aza"], ["https://tec.openplanner.team/stops/Llgchat2", "https://tec.openplanner.team/stops/Llggcha1"], ["https://tec.openplanner.team/stops/X879aja", "https://tec.openplanner.team/stops/X898aeb"], ["https://tec.openplanner.team/stops/N522aka", "https://tec.openplanner.team/stops/N522ara"], ["https://tec.openplanner.team/stops/X725aia", "https://tec.openplanner.team/stops/X725ala"], ["https://tec.openplanner.team/stops/H4me211a", "https://tec.openplanner.team/stops/H4me213a"], ["https://tec.openplanner.team/stops/LELchap1", "https://tec.openplanner.team/stops/LELeg--1"], ["https://tec.openplanner.team/stops/N580acb", "https://tec.openplanner.team/stops/N580afb"], ["https://tec.openplanner.team/stops/H1gh150a", "https://tec.openplanner.team/stops/H1gh152b"], ["https://tec.openplanner.team/stops/LRtcarr1", "https://tec.openplanner.team/stops/LRtcarr2"], ["https://tec.openplanner.team/stops/H4ch116b", "https://tec.openplanner.team/stops/H4ch119b"], ["https://tec.openplanner.team/stops/X782anb", "https://tec.openplanner.team/stops/X783ada"], ["https://tec.openplanner.team/stops/N351arb", "https://tec.openplanner.team/stops/N351axa"], ["https://tec.openplanner.team/stops/X725afh", "https://tec.openplanner.team/stops/X725bga"], ["https://tec.openplanner.team/stops/H4ty329b", "https://tec.openplanner.team/stops/H4ty350a"], ["https://tec.openplanner.team/stops/H5bs102a", "https://tec.openplanner.team/stops/H5bs104b"], ["https://tec.openplanner.team/stops/X616aca", "https://tec.openplanner.team/stops/X616aja"], ["https://tec.openplanner.team/stops/Cobcent1", "https://tec.openplanner.team/stops/Cobobjo2"], ["https://tec.openplanner.team/stops/Llmbell2", "https://tec.openplanner.team/stops/Llmhalt1"], ["https://tec.openplanner.team/stops/N533ada", "https://tec.openplanner.team/stops/N551aib"], ["https://tec.openplanner.team/stops/LBCaube2", "https://tec.openplanner.team/stops/LMAchod2"], ["https://tec.openplanner.team/stops/LCIcent2", "https://tec.openplanner.team/stops/LCIpiet2"], ["https://tec.openplanner.team/stops/X657ada", "https://tec.openplanner.team/stops/X657aea"], ["https://tec.openplanner.team/stops/X743agb", "https://tec.openplanner.team/stops/X756aka"], ["https://tec.openplanner.team/stops/H4vx360a", "https://tec.openplanner.team/stops/H4vx363b"], ["https://tec.openplanner.team/stops/N504aca", "https://tec.openplanner.team/stops/N579aea"], ["https://tec.openplanner.team/stops/LmHvenn1", "https://tec.openplanner.team/stops/LmTkirc1"], ["https://tec.openplanner.team/stops/Lvimc--1", "https://tec.openplanner.team/stops/Lvimc--2"], ["https://tec.openplanner.team/stops/Bblapra2", "https://tec.openplanner.team/stops/Bwaunou2"], ["https://tec.openplanner.team/stops/X721ara", "https://tec.openplanner.team/stops/X721asb"], ["https://tec.openplanner.team/stops/Bmalsme1", "https://tec.openplanner.team/stops/Btlbgla1"], ["https://tec.openplanner.team/stops/Bhanath2", "https://tec.openplanner.team/stops/LHNland1"], ["https://tec.openplanner.team/stops/X921arb", "https://tec.openplanner.team/stops/X979aab"], ["https://tec.openplanner.team/stops/N151ajb", "https://tec.openplanner.team/stops/N151ajc"], ["https://tec.openplanner.team/stops/H1so131b", "https://tec.openplanner.team/stops/H1so131f"], ["https://tec.openplanner.team/stops/H4co148a", "https://tec.openplanner.team/stops/H4co149a"], ["https://tec.openplanner.team/stops/Laltrav1", "https://tec.openplanner.team/stops/Laltrav2"], ["https://tec.openplanner.team/stops/Cmlhubi2", "https://tec.openplanner.team/stops/Cmlpche2"], ["https://tec.openplanner.team/stops/H4ga153a", "https://tec.openplanner.team/stops/H4ga166b"], ["https://tec.openplanner.team/stops/X897afb", "https://tec.openplanner.team/stops/X985aab"], ["https://tec.openplanner.team/stops/LBYegli1", "https://tec.openplanner.team/stops/Lgdblom2"], ["https://tec.openplanner.team/stops/X641afa", "https://tec.openplanner.team/stops/X641afd"], ["https://tec.openplanner.team/stops/Bgnvgir2", "https://tec.openplanner.team/stops/Blhumpo4"], ["https://tec.openplanner.team/stops/X224acb", "https://tec.openplanner.team/stops/X224ahb"], ["https://tec.openplanner.team/stops/Cctpano1", "https://tec.openplanner.team/stops/NC11afa"], ["https://tec.openplanner.team/stops/N138aac", "https://tec.openplanner.team/stops/N138afa"], ["https://tec.openplanner.team/stops/LwYkreu2", "https://tec.openplanner.team/stops/LwYsarl2"], ["https://tec.openplanner.team/stops/X719abb", "https://tec.openplanner.team/stops/X719aca"], ["https://tec.openplanner.team/stops/Cgyplst2", "https://tec.openplanner.team/stops/Cgyplvi1"], ["https://tec.openplanner.team/stops/N522bvd", "https://tec.openplanner.team/stops/N522bve"], ["https://tec.openplanner.team/stops/H4la196a", "https://tec.openplanner.team/stops/H4la198d"], ["https://tec.openplanner.team/stops/Ljucaba1", "https://tec.openplanner.team/stops/Ljuvert2"], ["https://tec.openplanner.team/stops/Cfrsour2", "https://tec.openplanner.team/stops/Crewath2"], ["https://tec.openplanner.team/stops/H4ch119a", "https://tec.openplanner.team/stops/H4vx365a"], ["https://tec.openplanner.team/stops/X617acb", "https://tec.openplanner.team/stops/X617ada"], ["https://tec.openplanner.team/stops/LWHkerk1", "https://tec.openplanner.team/stops/LWHkerk2"], ["https://tec.openplanner.team/stops/Bramcom1", "https://tec.openplanner.team/stops/Bramcom2"], ["https://tec.openplanner.team/stops/LCaalou1", "https://tec.openplanner.team/stops/LCacoop2"], ["https://tec.openplanner.team/stops/Blhurcl1", "https://tec.openplanner.team/stops/Bovesog2"], ["https://tec.openplanner.team/stops/X740aab", "https://tec.openplanner.team/stops/X740agb"], ["https://tec.openplanner.team/stops/Lprfoot1", "https://tec.openplanner.team/stops/Lprfoot2"], ["https://tec.openplanner.team/stops/N543aeb", "https://tec.openplanner.team/stops/N543ara"], ["https://tec.openplanner.team/stops/LrDhind2", "https://tec.openplanner.team/stops/LrDrose3"], ["https://tec.openplanner.team/stops/H2ll172a", "https://tec.openplanner.team/stops/H2ll172d"], ["https://tec.openplanner.team/stops/X779aba", "https://tec.openplanner.team/stops/X779adb"], ["https://tec.openplanner.team/stops/N540aea", "https://tec.openplanner.team/stops/N540aha"], ["https://tec.openplanner.team/stops/H4an110a", "https://tec.openplanner.team/stops/H4an110b"], ["https://tec.openplanner.team/stops/H4mo191a", "https://tec.openplanner.team/stops/H4mo191b"], ["https://tec.openplanner.team/stops/H2ha129d", "https://tec.openplanner.team/stops/H2ha138a"], ["https://tec.openplanner.team/stops/N135aqa", "https://tec.openplanner.team/stops/N135aub"], ["https://tec.openplanner.team/stops/Bblacar2", "https://tec.openplanner.team/stops/Bbsivi11"], ["https://tec.openplanner.team/stops/X840aba", "https://tec.openplanner.team/stops/X840acc"], ["https://tec.openplanner.team/stops/N212aeb", "https://tec.openplanner.team/stops/N212agc"], ["https://tec.openplanner.team/stops/X784aka", "https://tec.openplanner.team/stops/X784akb"], ["https://tec.openplanner.team/stops/LETsaiv1", "https://tec.openplanner.team/stops/Lretill1"], ["https://tec.openplanner.team/stops/X741ala", "https://tec.openplanner.team/stops/X741alb"], ["https://tec.openplanner.team/stops/X804ama", "https://tec.openplanner.team/stops/X804bya"], ["https://tec.openplanner.team/stops/H1pe131b", "https://tec.openplanner.team/stops/H1pe132a"], ["https://tec.openplanner.team/stops/X922aaa", "https://tec.openplanner.team/stops/X922adb"], ["https://tec.openplanner.team/stops/Cflmarc1", "https://tec.openplanner.team/stops/Cflmarc2"], ["https://tec.openplanner.team/stops/N538ajc", "https://tec.openplanner.team/stops/N538ajd"], ["https://tec.openplanner.team/stops/H4lh161a", "https://tec.openplanner.team/stops/H4lh161b"], ["https://tec.openplanner.team/stops/N244ara", "https://tec.openplanner.team/stops/N244arb"], ["https://tec.openplanner.team/stops/Bwavbva1", "https://tec.openplanner.team/stops/Bwavbva2"], ["https://tec.openplanner.team/stops/LNAanne1", "https://tec.openplanner.team/stops/LNAmart1"], ["https://tec.openplanner.team/stops/X995aba", "https://tec.openplanner.team/stops/X995adb"], ["https://tec.openplanner.team/stops/H1fl139a", "https://tec.openplanner.team/stops/H1fl141b"], ["https://tec.openplanner.team/stops/LSkdouf1", "https://tec.openplanner.team/stops/LSkdouf2"], ["https://tec.openplanner.team/stops/N501bda", "https://tec.openplanner.team/stops/N501hsb"], ["https://tec.openplanner.team/stops/X902aeb", "https://tec.openplanner.team/stops/X902aia"], ["https://tec.openplanner.team/stops/N506aua", "https://tec.openplanner.team/stops/N506awa"], ["https://tec.openplanner.team/stops/LMNcite1", "https://tec.openplanner.team/stops/LMNjard1"], ["https://tec.openplanner.team/stops/Cfodepo2", "https://tec.openplanner.team/stops/Cfoermi2"], ["https://tec.openplanner.team/stops/X982alb", "https://tec.openplanner.team/stops/X982aqc"], ["https://tec.openplanner.team/stops/N509aeb", "https://tec.openplanner.team/stops/N509agb"], ["https://tec.openplanner.team/stops/H3bi110b", "https://tec.openplanner.team/stops/H3bi112a"], ["https://tec.openplanner.team/stops/Ccobour1", "https://tec.openplanner.team/stops/Ccobour2"], ["https://tec.openplanner.team/stops/Cjuhden3", "https://tec.openplanner.team/stops/Cjuhden4"], ["https://tec.openplanner.team/stops/X746adb", "https://tec.openplanner.team/stops/X746ala"], ["https://tec.openplanner.team/stops/X897apa", "https://tec.openplanner.team/stops/X897apb"], ["https://tec.openplanner.team/stops/Lbbremy1", "https://tec.openplanner.team/stops/Lbbremy2"], ["https://tec.openplanner.team/stops/N213aaa", "https://tec.openplanner.team/stops/N348aab"], ["https://tec.openplanner.team/stops/LFEmala1", "https://tec.openplanner.team/stops/LFtcarr2"], ["https://tec.openplanner.team/stops/Cgobl%C3%A9r2", "https://tec.openplanner.team/stops/Cgoclad2"], ["https://tec.openplanner.team/stops/LHUpost3", "https://tec.openplanner.team/stops/LHUpost4"], ["https://tec.openplanner.team/stops/LsVbell1", "https://tec.openplanner.team/stops/LsVhunn1"], ["https://tec.openplanner.team/stops/LBahome2", "https://tec.openplanner.team/stops/LBalacr2"], ["https://tec.openplanner.team/stops/LJAroue1", "https://tec.openplanner.team/stops/LJAverv1"], ["https://tec.openplanner.team/stops/N506aqa", "https://tec.openplanner.team/stops/N506bpa"], ["https://tec.openplanner.team/stops/X636aib", "https://tec.openplanner.team/stops/X636bja"], ["https://tec.openplanner.team/stops/LGorysa1", "https://tec.openplanner.team/stops/Lpeflec2"], ["https://tec.openplanner.team/stops/Bnetegl3", "https://tec.openplanner.team/stops/Bnetegl4"], ["https://tec.openplanner.team/stops/LFFmarc1", "https://tec.openplanner.team/stops/LFFmarc2"], ["https://tec.openplanner.team/stops/N218aba", "https://tec.openplanner.team/stops/N385acb"], ["https://tec.openplanner.team/stops/N207aca", "https://tec.openplanner.team/stops/N221aab"], ["https://tec.openplanner.team/stops/LHHcite1", "https://tec.openplanner.team/stops/LHHroua2"], ["https://tec.openplanner.team/stops/X638ara", "https://tec.openplanner.team/stops/X652ajb"], ["https://tec.openplanner.team/stops/X948apa", "https://tec.openplanner.team/stops/X948bab"], ["https://tec.openplanner.team/stops/H1fl136a", "https://tec.openplanner.team/stops/H1fl136c"], ["https://tec.openplanner.team/stops/Lmobras2", "https://tec.openplanner.team/stops/Lmojans1"], ["https://tec.openplanner.team/stops/LBdcarr1", "https://tec.openplanner.team/stops/LCpeg-*"], ["https://tec.openplanner.team/stops/Cmoruau1", "https://tec.openplanner.team/stops/Cmoruau2"], ["https://tec.openplanner.team/stops/LClange2", "https://tec.openplanner.team/stops/LFdeg--2"], ["https://tec.openplanner.team/stops/N517adb", "https://tec.openplanner.team/stops/NR30aab"], ["https://tec.openplanner.team/stops/H1ms261a", "https://tec.openplanner.team/stops/H1ms272c"], ["https://tec.openplanner.team/stops/H2sb225a", "https://tec.openplanner.team/stops/H2sb243a"], ["https://tec.openplanner.team/stops/Bwatgge1", "https://tec.openplanner.team/stops/Bwatgge2"], ["https://tec.openplanner.team/stops/Lcegeor2", "https://tec.openplanner.team/stops/Lcepass1"], ["https://tec.openplanner.team/stops/H4pl116a", "https://tec.openplanner.team/stops/H4pl137b"], ["https://tec.openplanner.team/stops/H1by106a", "https://tec.openplanner.team/stops/H1by108d"], ["https://tec.openplanner.team/stops/H3so155a", "https://tec.openplanner.team/stops/H3so172a"], ["https://tec.openplanner.team/stops/H1fr133a", "https://tec.openplanner.team/stops/H1no143b"], ["https://tec.openplanner.team/stops/Blhugar2", "https://tec.openplanner.team/stops/Blhuone1"], ["https://tec.openplanner.team/stops/Brixfro3", "https://tec.openplanner.team/stops/Brixpbs2"], ["https://tec.openplanner.team/stops/LHcbaro1", "https://tec.openplanner.team/stops/LSx309-2"], ["https://tec.openplanner.team/stops/LRGeg--2", "https://tec.openplanner.team/stops/LRGunio3"], ["https://tec.openplanner.team/stops/LMAgb--1", "https://tec.openplanner.team/stops/LMAgb--2"], ["https://tec.openplanner.team/stops/LFArela5", "https://tec.openplanner.team/stops/LFArela6"], ["https://tec.openplanner.team/stops/X775aeb", "https://tec.openplanner.team/stops/X775afa"], ["https://tec.openplanner.team/stops/Bmrshan1", "https://tec.openplanner.team/stops/Bmrshan2"], ["https://tec.openplanner.team/stops/H1wa144a", "https://tec.openplanner.team/stops/H1wa144b"], ["https://tec.openplanner.team/stops/LHUpsar1", "https://tec.openplanner.team/stops/NL76aqa"], ["https://tec.openplanner.team/stops/Cvrfcho2", "https://tec.openplanner.team/stops/Cvrhaie1"], ["https://tec.openplanner.team/stops/H2hl113b", "https://tec.openplanner.team/stops/H2ll179a"], ["https://tec.openplanner.team/stops/N528agb", "https://tec.openplanner.team/stops/N528ana"], ["https://tec.openplanner.team/stops/LSPfrai2", "https://tec.openplanner.team/stops/LSPpelz2"], ["https://tec.openplanner.team/stops/LAYcont2", "https://tec.openplanner.team/stops/LAYwerb2"], ["https://tec.openplanner.team/stops/N518acd", "https://tec.openplanner.team/stops/N520aib"], ["https://tec.openplanner.team/stops/LFPho8a2", "https://tec.openplanner.team/stops/LFPknap1"], ["https://tec.openplanner.team/stops/Cmechnd1", "https://tec.openplanner.team/stops/Cmesafi1"], ["https://tec.openplanner.team/stops/H4fr385a", "https://tec.openplanner.team/stops/H4ka176b"], ["https://tec.openplanner.team/stops/H4ty347b", "https://tec.openplanner.team/stops/H4ty416a"], ["https://tec.openplanner.team/stops/LRObarr1", "https://tec.openplanner.team/stops/LROcham1"], ["https://tec.openplanner.team/stops/H4fo117c", "https://tec.openplanner.team/stops/H4fo117d"], ["https://tec.openplanner.team/stops/X576aib", "https://tec.openplanner.team/stops/X715aka"], ["https://tec.openplanner.team/stops/N115aab", "https://tec.openplanner.team/stops/N147aeb"], ["https://tec.openplanner.team/stops/H1hc150a", "https://tec.openplanner.team/stops/H4be149a"], ["https://tec.openplanner.team/stops/LPRecol1", "https://tec.openplanner.team/stops/LTRgare1"], ["https://tec.openplanner.team/stops/N501gqb", "https://tec.openplanner.team/stops/N501mia"], ["https://tec.openplanner.team/stops/H4mo151b", "https://tec.openplanner.team/stops/H4mo190a"], ["https://tec.openplanner.team/stops/H3so157b", "https://tec.openplanner.team/stops/H3so177b"], ["https://tec.openplanner.team/stops/H4ne131a", "https://tec.openplanner.team/stops/H4ne142a"], ["https://tec.openplanner.team/stops/H4sm247a", "https://tec.openplanner.team/stops/H4sm247b"], ["https://tec.openplanner.team/stops/H1ba114c", "https://tec.openplanner.team/stops/H1ba114d"], ["https://tec.openplanner.team/stops/Blindel6", "https://tec.openplanner.team/stops/Blingar2"], ["https://tec.openplanner.team/stops/H3so154a", "https://tec.openplanner.team/stops/H3so167a"], ["https://tec.openplanner.team/stops/N562bna", "https://tec.openplanner.team/stops/N562boa"], ["https://tec.openplanner.team/stops/N351asb", "https://tec.openplanner.team/stops/N351axa"], ["https://tec.openplanner.team/stops/Cgythio2", "https://tec.openplanner.team/stops/CMsartc1"], ["https://tec.openplanner.team/stops/Bhmmgar1", "https://tec.openplanner.team/stops/Bhmmlad1"], ["https://tec.openplanner.team/stops/X949ada", "https://tec.openplanner.team/stops/X949aea"], ["https://tec.openplanner.team/stops/LOlvill1", "https://tec.openplanner.team/stops/LOmrela2"], ["https://tec.openplanner.team/stops/LWApt--1", "https://tec.openplanner.team/stops/LWAvisi2"], ["https://tec.openplanner.team/stops/H1wg124a", "https://tec.openplanner.team/stops/H1wg131a"], ["https://tec.openplanner.team/stops/LBPunic2", "https://tec.openplanner.team/stops/LGLeg--1"], ["https://tec.openplanner.team/stops/H4ha167a", "https://tec.openplanner.team/stops/H4mt222a"], ["https://tec.openplanner.team/stops/N125aaa", "https://tec.openplanner.team/stops/N125aba"], ["https://tec.openplanner.team/stops/X801aja", "https://tec.openplanner.team/stops/X801bma"], ["https://tec.openplanner.team/stops/Crodrai2", "https://tec.openplanner.team/stops/Crowilb2"], ["https://tec.openplanner.team/stops/LLbbons2", "https://tec.openplanner.team/stops/LrEviel2"], ["https://tec.openplanner.team/stops/N501faa", "https://tec.openplanner.team/stops/N501fda"], ["https://tec.openplanner.team/stops/X659ada", "https://tec.openplanner.team/stops/X659ava"], ["https://tec.openplanner.team/stops/LBEbelf1", "https://tec.openplanner.team/stops/LBEtilf2"], ["https://tec.openplanner.team/stops/H4hx118b", "https://tec.openplanner.team/stops/H4hx119b"], ["https://tec.openplanner.team/stops/LBrmeiz2", "https://tec.openplanner.team/stops/LFRfagn2"], ["https://tec.openplanner.team/stops/N201aia", "https://tec.openplanner.team/stops/N214aaa"], ["https://tec.openplanner.team/stops/Bitrcen2", "https://tec.openplanner.team/stops/Bitrpsr2"], ["https://tec.openplanner.team/stops/LHZbren1", "https://tec.openplanner.team/stops/LHZbren2"], ["https://tec.openplanner.team/stops/LVLmart1", "https://tec.openplanner.team/stops/LVLmart2"], ["https://tec.openplanner.team/stops/LSZclem2", "https://tec.openplanner.team/stops/LSZheid2"], ["https://tec.openplanner.team/stops/Lcemeta1", "https://tec.openplanner.team/stops/Lcepepi1"], ["https://tec.openplanner.team/stops/Bgemfbo1", "https://tec.openplanner.team/stops/Bgemfbo2"], ["https://tec.openplanner.team/stops/N234adb", "https://tec.openplanner.team/stops/N242aea"], ["https://tec.openplanner.team/stops/Ccoptca1", "https://tec.openplanner.team/stops/Cjuheig1"], ["https://tec.openplanner.team/stops/X773aib", "https://tec.openplanner.team/stops/X773aoa"], ["https://tec.openplanner.team/stops/N229aeb", "https://tec.openplanner.team/stops/N540aqa"], ["https://tec.openplanner.team/stops/LCljose1", "https://tec.openplanner.team/stops/LFdbagu1"], ["https://tec.openplanner.team/stops/N501eeb", "https://tec.openplanner.team/stops/N501kid"], ["https://tec.openplanner.team/stops/H4gr111b", "https://tec.openplanner.team/stops/H4ld130b"], ["https://tec.openplanner.team/stops/N534asb", "https://tec.openplanner.team/stops/N543ckb"], ["https://tec.openplanner.team/stops/LHHgare1", "https://tec.openplanner.team/stops/LSkrena2"], ["https://tec.openplanner.team/stops/LPRfour1", "https://tec.openplanner.team/stops/LPRfour2"], ["https://tec.openplanner.team/stops/H4bd109a", "https://tec.openplanner.team/stops/H4te254b"], ["https://tec.openplanner.team/stops/Cmqbasv1", "https://tec.openplanner.team/stops/Cmqegl1"], ["https://tec.openplanner.team/stops/LSGeg--2", "https://tec.openplanner.team/stops/LSGeg--3"], ["https://tec.openplanner.team/stops/X601cia", "https://tec.openplanner.team/stops/X601cka"], ["https://tec.openplanner.team/stops/LgAdorf1", "https://tec.openplanner.team/stops/LgAnr491"], ["https://tec.openplanner.team/stops/H4rm110a", "https://tec.openplanner.team/stops/H4rm112a"], ["https://tec.openplanner.team/stops/X624aeb", "https://tec.openplanner.team/stops/X624afb"], ["https://tec.openplanner.team/stops/LHTbeau1", "https://tec.openplanner.team/stops/LHTbonn1"], ["https://tec.openplanner.team/stops/Cnaplan1", "https://tec.openplanner.team/stops/Cnaplbu1"], ["https://tec.openplanner.team/stops/Ccogibr2", "https://tec.openplanner.team/stops/Ccovies2"], ["https://tec.openplanner.team/stops/Cauromi2", "https://tec.openplanner.team/stops/N543anh"], ["https://tec.openplanner.team/stops/Bengvma2", "https://tec.openplanner.team/stops/H1en104a"], ["https://tec.openplanner.team/stops/X639ajb", "https://tec.openplanner.team/stops/X639aua"], ["https://tec.openplanner.team/stops/H4ru246b", "https://tec.openplanner.team/stops/H4ty349a"], ["https://tec.openplanner.team/stops/Lveleje2", "https://tec.openplanner.team/stops/Lveoctr2"], ["https://tec.openplanner.team/stops/N516aca", "https://tec.openplanner.team/stops/N516acb"], ["https://tec.openplanner.team/stops/H4an104b", "https://tec.openplanner.team/stops/H4an112a"], ["https://tec.openplanner.team/stops/Bbxltou1", "https://tec.openplanner.team/stops/Bbxltrv1"], ["https://tec.openplanner.team/stops/Lbofrai1", "https://tec.openplanner.team/stops/Lbofrai2"], ["https://tec.openplanner.team/stops/Lsn130-2", "https://tec.openplanner.team/stops/Lsnagne1"], ["https://tec.openplanner.team/stops/X639aoa", "https://tec.openplanner.team/stops/X639arb"], ["https://tec.openplanner.team/stops/H2lc168a", "https://tec.openplanner.team/stops/H2lc170b"], ["https://tec.openplanner.team/stops/N202aba", "https://tec.openplanner.team/stops/N202aec"], ["https://tec.openplanner.team/stops/Cflcoro1", "https://tec.openplanner.team/stops/Cflglav2"], ["https://tec.openplanner.team/stops/X762aaa", "https://tec.openplanner.team/stops/X762abb"], ["https://tec.openplanner.team/stops/H4ca122a", "https://tec.openplanner.team/stops/H4wi162b"], ["https://tec.openplanner.team/stops/LAo161-1", "https://tec.openplanner.team/stops/LTPpreh1"], ["https://tec.openplanner.team/stops/X765acb", "https://tec.openplanner.team/stops/X765ada"], ["https://tec.openplanner.team/stops/LLRrape1", "https://tec.openplanner.team/stops/LLRrape2"], ["https://tec.openplanner.team/stops/H2sv218a", "https://tec.openplanner.team/stops/H2sv218b"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LCxreno2"], ["https://tec.openplanner.team/stops/LNAbras3", "https://tec.openplanner.team/stops/LScgore1"], ["https://tec.openplanner.team/stops/H1bb113a", "https://tec.openplanner.team/stops/H1bb114a"], ["https://tec.openplanner.team/stops/N557aia", "https://tec.openplanner.team/stops/N557ajb"], ["https://tec.openplanner.team/stops/N501mta", "https://tec.openplanner.team/stops/N501mtd"], ["https://tec.openplanner.team/stops/N553ada", "https://tec.openplanner.team/stops/N553adb"], ["https://tec.openplanner.team/stops/N308aab", "https://tec.openplanner.team/stops/N308beb"], ["https://tec.openplanner.team/stops/N576aea", "https://tec.openplanner.team/stops/N576akc"], ["https://tec.openplanner.team/stops/N565aab", "https://tec.openplanner.team/stops/N565aea"], ["https://tec.openplanner.team/stops/N560aca", "https://tec.openplanner.team/stops/N560acb"], ["https://tec.openplanner.team/stops/X937adb", "https://tec.openplanner.team/stops/X952aab"], ["https://tec.openplanner.team/stops/LMvgare1", "https://tec.openplanner.team/stops/LMvrabo2"], ["https://tec.openplanner.team/stops/N229ahb", "https://tec.openplanner.team/stops/N229aia"], ["https://tec.openplanner.team/stops/LBOande1", "https://tec.openplanner.team/stops/LWRbomb4"], ["https://tec.openplanner.team/stops/H4bl105a", "https://tec.openplanner.team/stops/H4ga158a"], ["https://tec.openplanner.team/stops/H1bo102a", "https://tec.openplanner.team/stops/H1bo102b"], ["https://tec.openplanner.team/stops/Bdlmegl2", "https://tec.openplanner.team/stops/Bdvmtve2"], ["https://tec.openplanner.team/stops/Cnapair2", "https://tec.openplanner.team/stops/N160aab"], ["https://tec.openplanner.team/stops/X982ada", "https://tec.openplanner.team/stops/X982adb"], ["https://tec.openplanner.team/stops/LSJlabe1", "https://tec.openplanner.team/stops/LSJlabe2"], ["https://tec.openplanner.team/stops/Blhueso1", "https://tec.openplanner.team/stops/Blhueso2"], ["https://tec.openplanner.team/stops/LVnflox2", "https://tec.openplanner.team/stops/LVnourt4"], ["https://tec.openplanner.team/stops/N308aea", "https://tec.openplanner.team/stops/N308afc"], ["https://tec.openplanner.team/stops/Bflegar5", "https://tec.openplanner.team/stops/Cflsncb1"], ["https://tec.openplanner.team/stops/LOucarr2", "https://tec.openplanner.team/stops/LWZponb1"], ["https://tec.openplanner.team/stops/H2ca115a", "https://tec.openplanner.team/stops/H2ca115b"], ["https://tec.openplanner.team/stops/LBzec--1", "https://tec.openplanner.team/stops/LBzvill1"], ["https://tec.openplanner.team/stops/LAnchat2", "https://tec.openplanner.team/stops/LSdencl*"], ["https://tec.openplanner.team/stops/Bwatgar5", "https://tec.openplanner.team/stops/Bwattri1"], ["https://tec.openplanner.team/stops/X639amb", "https://tec.openplanner.team/stops/X639ata"], ["https://tec.openplanner.team/stops/X879aea", "https://tec.openplanner.team/stops/X879aob"], ["https://tec.openplanner.team/stops/X657aba", "https://tec.openplanner.team/stops/X742afb"], ["https://tec.openplanner.team/stops/Bblmwma1", "https://tec.openplanner.team/stops/Bnilpie1"], ["https://tec.openplanner.team/stops/LCLscie2", "https://tec.openplanner.team/stops/LLvpost2"], ["https://tec.openplanner.team/stops/LBIfore1", "https://tec.openplanner.team/stops/Llocime2"], ["https://tec.openplanner.team/stops/H4ru235a", "https://tec.openplanner.team/stops/H4ru235b"], ["https://tec.openplanner.team/stops/Lhurigu1", "https://tec.openplanner.team/stops/Lhurouh1"], ["https://tec.openplanner.team/stops/H2gy101a", "https://tec.openplanner.team/stops/H2gy101b"], ["https://tec.openplanner.team/stops/H4co106a", "https://tec.openplanner.team/stops/H4co110a"], ["https://tec.openplanner.team/stops/X307aba", "https://tec.openplanner.team/stops/X307aca"], ["https://tec.openplanner.team/stops/Llgnati1", "https://tec.openplanner.team/stops/Llgnati2"], ["https://tec.openplanner.team/stops/Blthbss1", "https://tec.openplanner.team/stops/Bmlnbpr1"], ["https://tec.openplanner.team/stops/X720aca", "https://tec.openplanner.team/stops/X720acb"], ["https://tec.openplanner.team/stops/H4jm118a", "https://tec.openplanner.team/stops/H4sm247a"], ["https://tec.openplanner.team/stops/LBLcalv2", "https://tec.openplanner.team/stops/LBLplac2"], ["https://tec.openplanner.team/stops/N536agb", "https://tec.openplanner.team/stops/N536aoa"], ["https://tec.openplanner.team/stops/X806aia", "https://tec.openplanner.team/stops/X806akc"], ["https://tec.openplanner.team/stops/X342ada", "https://tec.openplanner.team/stops/X342ahb"], ["https://tec.openplanner.team/stops/X999aob", "https://tec.openplanner.team/stops/X999aub"], ["https://tec.openplanner.team/stops/Bclgvse1", "https://tec.openplanner.team/stops/Bclgvse2"], ["https://tec.openplanner.team/stops/LSZeg--1", "https://tec.openplanner.team/stops/LSZmonu4"], ["https://tec.openplanner.team/stops/Cctecol2", "https://tec.openplanner.team/stops/Ccunvus2"], ["https://tec.openplanner.team/stops/LpEbins2", "https://tec.openplanner.team/stops/LrApark2"], ["https://tec.openplanner.team/stops/LCPaywa1", "https://tec.openplanner.team/stops/LMvgare2"], ["https://tec.openplanner.team/stops/LOCeg--1", "https://tec.openplanner.team/stops/LOCeg--2"], ["https://tec.openplanner.team/stops/LLg9---2", "https://tec.openplanner.team/stops/LSMfroi2"], ["https://tec.openplanner.team/stops/H5pe127a", "https://tec.openplanner.team/stops/H5pe127b"], ["https://tec.openplanner.team/stops/X850afb", "https://tec.openplanner.team/stops/X850ala"], ["https://tec.openplanner.team/stops/H1wa142a", "https://tec.openplanner.team/stops/H1wa164a"], ["https://tec.openplanner.team/stops/H1ms264a", "https://tec.openplanner.team/stops/H1ms266b"], ["https://tec.openplanner.team/stops/N241agb", "https://tec.openplanner.team/stops/N270aca"], ["https://tec.openplanner.team/stops/H1ms253a", "https://tec.openplanner.team/stops/H1ms278a"], ["https://tec.openplanner.team/stops/X634ajb", "https://tec.openplanner.team/stops/X634aka"], ["https://tec.openplanner.team/stops/Ccifies2", "https://tec.openplanner.team/stops/Ccimont1"], ["https://tec.openplanner.team/stops/Crs74em4", "https://tec.openplanner.team/stops/Crswaut2"], ["https://tec.openplanner.team/stops/X813aba", "https://tec.openplanner.team/stops/X813abb"], ["https://tec.openplanner.team/stops/N521ala", "https://tec.openplanner.team/stops/N527aga"], ["https://tec.openplanner.team/stops/LNCvann1", "https://tec.openplanner.team/stops/LNCvill1"], ["https://tec.openplanner.team/stops/N321afa", "https://tec.openplanner.team/stops/N321afb"], ["https://tec.openplanner.team/stops/Ctybaco2", "https://tec.openplanner.team/stops/N137aib"], ["https://tec.openplanner.team/stops/LTAchpl1", "https://tec.openplanner.team/stops/LTAchpl2"], ["https://tec.openplanner.team/stops/H1cv101b", "https://tec.openplanner.team/stops/H1cv102b"], ["https://tec.openplanner.team/stops/LGmloti2", "https://tec.openplanner.team/stops/LMAbijo1"], ["https://tec.openplanner.team/stops/Baegm501", "https://tec.openplanner.team/stops/Baegm502"], ["https://tec.openplanner.team/stops/Bchgegl1", "https://tec.openplanner.team/stops/Bchgegl2"], ["https://tec.openplanner.team/stops/Cerrver4", "https://tec.openplanner.team/stops/Cvrhab21"], ["https://tec.openplanner.team/stops/H2se113a", "https://tec.openplanner.team/stops/H2se113b"], ["https://tec.openplanner.team/stops/N531ajb", "https://tec.openplanner.team/stops/N534boh"], ["https://tec.openplanner.team/stops/LBabeco4", "https://tec.openplanner.team/stops/LBapeup1"], ["https://tec.openplanner.team/stops/H4co107a", "https://tec.openplanner.team/stops/H4co146a"], ["https://tec.openplanner.team/stops/N548aib", "https://tec.openplanner.team/stops/N548aka"], ["https://tec.openplanner.team/stops/Ldidefo1", "https://tec.openplanner.team/stops/Ldimeun2"], ["https://tec.openplanner.team/stops/NL57aia", "https://tec.openplanner.team/stops/NL57ajb"], ["https://tec.openplanner.team/stops/N501cnb", "https://tec.openplanner.team/stops/N501eoa"], ["https://tec.openplanner.team/stops/LXomc--4", "https://tec.openplanner.team/stops/LXopeti2"], ["https://tec.openplanner.team/stops/LHMparq2", "https://tec.openplanner.team/stops/LHMpatl2"], ["https://tec.openplanner.team/stops/N348aca", "https://tec.openplanner.team/stops/N351alb"], ["https://tec.openplanner.team/stops/LrAneud2", "https://tec.openplanner.team/stops/LrAtitf2"], ["https://tec.openplanner.team/stops/LNCecdo1", "https://tec.openplanner.team/stops/LPLc49-1"], ["https://tec.openplanner.team/stops/X681aca", "https://tec.openplanner.team/stops/X681ada"], ["https://tec.openplanner.team/stops/Cbfstry1", "https://tec.openplanner.team/stops/Cbfstry2"], ["https://tec.openplanner.team/stops/Cchhopi4", "https://tec.openplanner.team/stops/Cchwate4"], ["https://tec.openplanner.team/stops/H4ir161b", "https://tec.openplanner.team/stops/H4vd230a"], ["https://tec.openplanner.team/stops/Lwaelme2", "https://tec.openplanner.team/stops/Lwapomp2"], ["https://tec.openplanner.team/stops/Lvedepo*", "https://tec.openplanner.team/stops/Lveoctr1"], ["https://tec.openplanner.team/stops/N110aha", "https://tec.openplanner.team/stops/N111acb"], ["https://tec.openplanner.team/stops/Candett1", "https://tec.openplanner.team/stops/Canvane2"], ["https://tec.openplanner.team/stops/Balswsa1", "https://tec.openplanner.team/stops/Brsgfon1"], ["https://tec.openplanner.team/stops/Ladmoli1", "https://tec.openplanner.team/stops/Ladpara1"], ["https://tec.openplanner.team/stops/N308ada", "https://tec.openplanner.team/stops/N312abb"], ["https://tec.openplanner.team/stops/Cfocant1", "https://tec.openplanner.team/stops/Clrpast1"], ["https://tec.openplanner.team/stops/Lflcime2", "https://tec.openplanner.team/stops/Lflcle-5"], ["https://tec.openplanner.team/stops/N503aja", "https://tec.openplanner.team/stops/N580afa"], ["https://tec.openplanner.team/stops/Cgxchea1", "https://tec.openplanner.team/stops/Cgxvvel2"], ["https://tec.openplanner.team/stops/LCPaywa2", "https://tec.openplanner.team/stops/LLNcruc2"], ["https://tec.openplanner.team/stops/LeUdepo1", "https://tec.openplanner.team/stops/LkTkabi2"], ["https://tec.openplanner.team/stops/H4ht172a", "https://tec.openplanner.team/stops/H4te261a"], ["https://tec.openplanner.team/stops/Bvxgeta1", "https://tec.openplanner.team/stops/Bvxgeta2"], ["https://tec.openplanner.team/stops/LHSlava1", "https://tec.openplanner.team/stops/LHSlava2"], ["https://tec.openplanner.team/stops/Bpiehte1", "https://tec.openplanner.team/stops/Bpienod1"], ["https://tec.openplanner.team/stops/X614amb", "https://tec.openplanner.team/stops/X614arb"], ["https://tec.openplanner.team/stops/H1by103b", "https://tec.openplanner.team/stops/H1by108b"], ["https://tec.openplanner.team/stops/H1ne139b", "https://tec.openplanner.team/stops/H1ne148b"], ["https://tec.openplanner.team/stops/X654aib", "https://tec.openplanner.team/stops/X654aja"], ["https://tec.openplanner.team/stops/Croegli2", "https://tec.openplanner.team/stops/Cropcan1"], ["https://tec.openplanner.team/stops/Lvtauna2", "https://tec.openplanner.team/stops/Lvtmeun1"], ["https://tec.openplanner.team/stops/H4bi100b", "https://tec.openplanner.team/stops/H4pq120a"], ["https://tec.openplanner.team/stops/LmD163-1", "https://tec.openplanner.team/stops/LmYamel1"], ["https://tec.openplanner.team/stops/H4ta132a", "https://tec.openplanner.team/stops/H4ta132b"], ["https://tec.openplanner.team/stops/LbOhoff2", "https://tec.openplanner.team/stops/LmYwall1"], ["https://tec.openplanner.team/stops/Livgera6", "https://tec.openplanner.team/stops/Livjeu-2"], ["https://tec.openplanner.team/stops/Ccigill3", "https://tec.openplanner.team/stops/NC02aua"], ["https://tec.openplanner.team/stops/Lcebail2", "https://tec.openplanner.team/stops/Lcelhon3"], ["https://tec.openplanner.team/stops/LCRf14-1", "https://tec.openplanner.team/stops/LCRgdrt1"], ["https://tec.openplanner.team/stops/LMalarg3", "https://tec.openplanner.team/stops/LPlpomp1"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X670ara"], ["https://tec.openplanner.team/stops/H3so163a", "https://tec.openplanner.team/stops/H3so163b"], ["https://tec.openplanner.team/stops/X773aga", "https://tec.openplanner.team/stops/X773agb"], ["https://tec.openplanner.team/stops/Cchheig1", "https://tec.openplanner.team/stops/CMvil2"], ["https://tec.openplanner.team/stops/X634aja", "https://tec.openplanner.team/stops/X636aaa"], ["https://tec.openplanner.team/stops/LHrkin-1", "https://tec.openplanner.team/stops/LREchal1"], ["https://tec.openplanner.team/stops/N565aic", "https://tec.openplanner.team/stops/N565ajb"], ["https://tec.openplanner.team/stops/LkEcoop2", "https://tec.openplanner.team/stops/LkEsada1"], ["https://tec.openplanner.team/stops/N551abb", "https://tec.openplanner.team/stops/N551aec"], ["https://tec.openplanner.team/stops/Csurela1", "https://tec.openplanner.team/stops/Csurela2"], ["https://tec.openplanner.team/stops/Lfhhaso2", "https://tec.openplanner.team/stops/Lfhweri1"], ["https://tec.openplanner.team/stops/N537agb", "https://tec.openplanner.team/stops/N537aja"], ["https://tec.openplanner.team/stops/LESslmo2", "https://tec.openplanner.team/stops/LTIdumo1"], ["https://tec.openplanner.team/stops/N123aaa", "https://tec.openplanner.team/stops/N123aab"], ["https://tec.openplanner.team/stops/Ccstord2", "https://tec.openplanner.team/stops/Chhthui2"], ["https://tec.openplanner.team/stops/LSznoel1", "https://tec.openplanner.team/stops/N512agc"], ["https://tec.openplanner.team/stops/Bwavlav1", "https://tec.openplanner.team/stops/Bwavzno1"], ["https://tec.openplanner.team/stops/Bbcogpl1", "https://tec.openplanner.team/stops/H3br108d"], ["https://tec.openplanner.team/stops/Cfaauln2", "https://tec.openplanner.team/stops/Cfanoci1"], ["https://tec.openplanner.team/stops/LHdfays1", "https://tec.openplanner.team/stops/LHdfays2"], ["https://tec.openplanner.team/stops/N301afa", "https://tec.openplanner.team/stops/N301afb"], ["https://tec.openplanner.team/stops/N236alb", "https://tec.openplanner.team/stops/N236apb"], ["https://tec.openplanner.team/stops/X899aia", "https://tec.openplanner.team/stops/X899ajb"], ["https://tec.openplanner.team/stops/Bnivasa1", "https://tec.openplanner.team/stops/Bnivpro1"], ["https://tec.openplanner.team/stops/LeYheid1", "https://tec.openplanner.team/stops/LeYwald2"], ["https://tec.openplanner.team/stops/Cmmmarb1", "https://tec.openplanner.team/stops/Cmmpjou4"], ["https://tec.openplanner.team/stops/Bnivrec1", "https://tec.openplanner.team/stops/Bnivsci1"], ["https://tec.openplanner.team/stops/Cmeptmi5", "https://tec.openplanner.team/stops/Cmewaya2"], ["https://tec.openplanner.team/stops/N501ija", "https://tec.openplanner.team/stops/N501ipa"], ["https://tec.openplanner.team/stops/N138afa", "https://tec.openplanner.team/stops/N138aia"], ["https://tec.openplanner.team/stops/Clsghoy1", "https://tec.openplanner.team/stops/H1ls105a"], ["https://tec.openplanner.team/stops/H4mo138a", "https://tec.openplanner.team/stops/H4mo138b"], ["https://tec.openplanner.team/stops/N351atb", "https://tec.openplanner.team/stops/X358aba"], ["https://tec.openplanner.team/stops/LMtcent2", "https://tec.openplanner.team/stops/LSdencl*"], ["https://tec.openplanner.team/stops/N548asb", "https://tec.openplanner.team/stops/N548aya"], ["https://tec.openplanner.team/stops/N163aba", "https://tec.openplanner.team/stops/N569alb"], ["https://tec.openplanner.team/stops/X672afa", "https://tec.openplanner.team/stops/X672aic"], ["https://tec.openplanner.team/stops/H1gr111a", "https://tec.openplanner.team/stops/H1mk111a"], ["https://tec.openplanner.team/stops/N149aba", "https://tec.openplanner.team/stops/N149abb"], ["https://tec.openplanner.team/stops/LAxbott2", "https://tec.openplanner.team/stops/LFsguil2"], ["https://tec.openplanner.team/stops/H4ty329a", "https://tec.openplanner.team/stops/H4ty329b"], ["https://tec.openplanner.team/stops/N501hca", "https://tec.openplanner.team/stops/N501mib"], ["https://tec.openplanner.team/stops/Lgrclos1", "https://tec.openplanner.team/stops/Lgrlabo2"], ["https://tec.openplanner.team/stops/X879afb", "https://tec.openplanner.team/stops/X879agb"], ["https://tec.openplanner.team/stops/Csytouq1", "https://tec.openplanner.team/stops/Csytouq2"], ["https://tec.openplanner.team/stops/H1ms310a", "https://tec.openplanner.team/stops/H1ms310b"], ["https://tec.openplanner.team/stops/X601cub", "https://tec.openplanner.team/stops/X601cva"], ["https://tec.openplanner.team/stops/Csecarr1", "https://tec.openplanner.team/stops/Csemacq4"], ["https://tec.openplanner.team/stops/N120aja", "https://tec.openplanner.team/stops/N120ala"], ["https://tec.openplanner.team/stops/X666aca", "https://tec.openplanner.team/stops/X666ada"], ["https://tec.openplanner.team/stops/Bbchmai2", "https://tec.openplanner.team/stops/Bhtibru2"], ["https://tec.openplanner.team/stops/Bnivmet1", "https://tec.openplanner.team/stops/Bnivmet2"], ["https://tec.openplanner.team/stops/LBLtroi2", "https://tec.openplanner.team/stops/LTrgibe2"], ["https://tec.openplanner.team/stops/N558aaa", "https://tec.openplanner.team/stops/N558anb"], ["https://tec.openplanner.team/stops/Creespi1", "https://tec.openplanner.team/stops/Crewath2"], ["https://tec.openplanner.team/stops/N553aha", "https://tec.openplanner.team/stops/N553aob"], ["https://tec.openplanner.team/stops/Loucent2", "https://tec.openplanner.team/stops/Louvira2"], ["https://tec.openplanner.team/stops/N214adb", "https://tec.openplanner.team/stops/N261aaa"], ["https://tec.openplanner.team/stops/LbTmons1", "https://tec.openplanner.team/stops/LbTmuhl1"], ["https://tec.openplanner.team/stops/X662aha", "https://tec.openplanner.team/stops/X662aoa"], ["https://tec.openplanner.team/stops/Beclfde2", "https://tec.openplanner.team/stops/Bronrch2"], ["https://tec.openplanner.team/stops/LFrfrai1", "https://tec.openplanner.team/stops/LSHfief2"], ["https://tec.openplanner.team/stops/X802aua", "https://tec.openplanner.team/stops/X802aub"], ["https://tec.openplanner.team/stops/X741agb", "https://tec.openplanner.team/stops/X741ana"], ["https://tec.openplanner.team/stops/LmNha152", "https://tec.openplanner.team/stops/LmNkess2"], ["https://tec.openplanner.team/stops/N218aba", "https://tec.openplanner.team/stops/N218aeb"], ["https://tec.openplanner.team/stops/Ccugend2", "https://tec.openplanner.team/stops/Ccuhsti2"], ["https://tec.openplanner.team/stops/LRRecdu2", "https://tec.openplanner.team/stops/LRRemul1"], ["https://tec.openplanner.team/stops/Bglitro3", "https://tec.openplanner.team/stops/Btlbtho2"], ["https://tec.openplanner.team/stops/LREgrot1", "https://tec.openplanner.team/stops/LREgrot2"], ["https://tec.openplanner.team/stops/LJSec--1", "https://tec.openplanner.team/stops/LTHcent2"], ["https://tec.openplanner.team/stops/LBRgend1", "https://tec.openplanner.team/stops/LBRmc--1"], ["https://tec.openplanner.team/stops/LSProya1", "https://tec.openplanner.team/stops/LSProya2"], ["https://tec.openplanner.team/stops/X661arc", "https://tec.openplanner.team/stops/X661asb"], ["https://tec.openplanner.team/stops/H1je215b", "https://tec.openplanner.team/stops/H1je221a"], ["https://tec.openplanner.team/stops/LFmcarr1", "https://tec.openplanner.team/stops/LFmcarr2"], ["https://tec.openplanner.team/stops/X804aba", "https://tec.openplanner.team/stops/X804acb"], ["https://tec.openplanner.team/stops/LREgar-1", "https://tec.openplanner.team/stops/LREsp301"], ["https://tec.openplanner.team/stops/N542abb", "https://tec.openplanner.team/stops/N542agb"], ["https://tec.openplanner.team/stops/Ladmoul1", "https://tec.openplanner.team/stops/Lveepar2"], ["https://tec.openplanner.team/stops/Cblbaiv2", "https://tec.openplanner.team/stops/Cblcent2"], ["https://tec.openplanner.team/stops/H4gz115a", "https://tec.openplanner.team/stops/H4th142a"], ["https://tec.openplanner.team/stops/X725ahb", "https://tec.openplanner.team/stops/X725bda"], ["https://tec.openplanner.team/stops/H1hr115a", "https://tec.openplanner.team/stops/H1hr115b"], ["https://tec.openplanner.team/stops/LHUbatt1", "https://tec.openplanner.team/stops/NL80ahb"], ["https://tec.openplanner.team/stops/Brsgges1", "https://tec.openplanner.team/stops/Brsggol2"], ["https://tec.openplanner.team/stops/N539aba", "https://tec.openplanner.team/stops/N539afa"], ["https://tec.openplanner.team/stops/Bnivbng1", "https://tec.openplanner.team/stops/Broscha2"], ["https://tec.openplanner.team/stops/X822alb", "https://tec.openplanner.team/stops/X822ana"], ["https://tec.openplanner.team/stops/X982aja", "https://tec.openplanner.team/stops/X982bra"], ["https://tec.openplanner.team/stops/X759aga", "https://tec.openplanner.team/stops/X759agb"], ["https://tec.openplanner.team/stops/H4ty319a", "https://tec.openplanner.team/stops/H4ty356b"], ["https://tec.openplanner.team/stops/Cgoetun4", "https://tec.openplanner.team/stops/Cgoetun5"], ["https://tec.openplanner.team/stops/X790ada", "https://tec.openplanner.team/stops/X790aea"], ["https://tec.openplanner.team/stops/Crbegli1", "https://tec.openplanner.team/stops/Crbhurt2"], ["https://tec.openplanner.team/stops/X715afb", "https://tec.openplanner.team/stops/X715amb"], ["https://tec.openplanner.team/stops/N212aba", "https://tec.openplanner.team/stops/N213aab"], ["https://tec.openplanner.team/stops/LFMvoge*", "https://tec.openplanner.team/stops/LFMvoge1"], ["https://tec.openplanner.team/stops/N209ajc", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/Lvehauz3", "https://tec.openplanner.team/stops/Lvelieg2"], ["https://tec.openplanner.team/stops/Cmychpl2", "https://tec.openplanner.team/stops/Cmyland1"], ["https://tec.openplanner.team/stops/N501cva", "https://tec.openplanner.team/stops/N501daa"], ["https://tec.openplanner.team/stops/N150aeb", "https://tec.openplanner.team/stops/N150aec"], ["https://tec.openplanner.team/stops/Ltibalt1", "https://tec.openplanner.team/stops/Ltiplat1"], ["https://tec.openplanner.team/stops/X901aca", "https://tec.openplanner.team/stops/X901acb"], ["https://tec.openplanner.team/stops/LRE154-1", "https://tec.openplanner.team/stops/LREchif1"], ["https://tec.openplanner.team/stops/H2fa108a", "https://tec.openplanner.team/stops/H2lc172b"], ["https://tec.openplanner.team/stops/H4ty334b", "https://tec.openplanner.team/stops/H4ty336a"], ["https://tec.openplanner.team/stops/N504aba", "https://tec.openplanner.team/stops/N504abb"], ["https://tec.openplanner.team/stops/Lmomarr2", "https://tec.openplanner.team/stops/Lmomarr3"], ["https://tec.openplanner.team/stops/LHcaube1", "https://tec.openplanner.team/stops/LSWeg--3"], ["https://tec.openplanner.team/stops/Bsencen1", "https://tec.openplanner.team/stops/H2mg135a"], ["https://tec.openplanner.team/stops/N353aaa", "https://tec.openplanner.team/stops/N353aeb"], ["https://tec.openplanner.team/stops/H4mo188b", "https://tec.openplanner.team/stops/H4mo208b"], ["https://tec.openplanner.team/stops/NB33aia", "https://tec.openplanner.team/stops/NB59akb"], ["https://tec.openplanner.team/stops/N145aca", "https://tec.openplanner.team/stops/N145adb"], ["https://tec.openplanner.team/stops/H4ty293b", "https://tec.openplanner.team/stops/H4ty303a"], ["https://tec.openplanner.team/stops/H1ms245a", "https://tec.openplanner.team/stops/H1ms260a"], ["https://tec.openplanner.team/stops/X616aba", "https://tec.openplanner.team/stops/X616ada"], ["https://tec.openplanner.team/stops/H2mo138b", "https://tec.openplanner.team/stops/H2mo138c"], ["https://tec.openplanner.team/stops/Lfhhosp1", "https://tec.openplanner.team/stops/Lfhpass1"], ["https://tec.openplanner.team/stops/X784adb", "https://tec.openplanner.team/stops/X784ala"], ["https://tec.openplanner.team/stops/N102aab", "https://tec.openplanner.team/stops/N104aaa"], ["https://tec.openplanner.team/stops/LAUberg1", "https://tec.openplanner.team/stops/LLC170-2"], ["https://tec.openplanner.team/stops/Bgoesch3", "https://tec.openplanner.team/stops/Bgoesch4"], ["https://tec.openplanner.team/stops/Cchjaur1", "https://tec.openplanner.team/stops/Cchplan2"], ["https://tec.openplanner.team/stops/N424aea", "https://tec.openplanner.team/stops/N425agb"], ["https://tec.openplanner.team/stops/X750afa", "https://tec.openplanner.team/stops/X750afb"], ["https://tec.openplanner.team/stops/Cblcen3", "https://tec.openplanner.team/stops/Cblcent1"], ["https://tec.openplanner.team/stops/N544aab", "https://tec.openplanner.team/stops/N549aea"], ["https://tec.openplanner.team/stops/X782aea", "https://tec.openplanner.team/stops/X782aeb"], ["https://tec.openplanner.team/stops/NC14aoa", "https://tec.openplanner.team/stops/NC14aob"], ["https://tec.openplanner.team/stops/LnEmett1", "https://tec.openplanner.team/stops/LsVhunn2"], ["https://tec.openplanner.team/stops/H4hx120a", "https://tec.openplanner.team/stops/H4hx120b"], ["https://tec.openplanner.team/stops/X758aaa", "https://tec.openplanner.team/stops/X758ahb"], ["https://tec.openplanner.team/stops/LROmorf1", "https://tec.openplanner.team/stops/LWaccom2"], ["https://tec.openplanner.team/stops/X826aab", "https://tec.openplanner.team/stops/X826agb"], ["https://tec.openplanner.team/stops/X869aaa", "https://tec.openplanner.team/stops/X869adb"], ["https://tec.openplanner.team/stops/NL81ada", "https://tec.openplanner.team/stops/NL81aea"], ["https://tec.openplanner.team/stops/Chpceri1", "https://tec.openplanner.team/stops/Chprobi1"], ["https://tec.openplanner.team/stops/LLOspin1", "https://tec.openplanner.team/stops/LVtvalu1"], ["https://tec.openplanner.team/stops/Lhujonc1", "https://tec.openplanner.team/stops/Lhujonc2"], ["https://tec.openplanner.team/stops/Bwatppa1", "https://tec.openplanner.team/stops/Bwatppa2"], ["https://tec.openplanner.team/stops/LHMa2321", "https://tec.openplanner.team/stops/LLC170-2"], ["https://tec.openplanner.team/stops/Beclfde1", "https://tec.openplanner.team/stops/Bronrch2"], ["https://tec.openplanner.team/stops/Cchparc3", "https://tec.openplanner.team/stops/CMparc1"], ["https://tec.openplanner.team/stops/Cmlsart2", "https://tec.openplanner.team/stops/Cnadrev2"], ["https://tec.openplanner.team/stops/Bcbqcim1", "https://tec.openplanner.team/stops/Bcbqegl1"], ["https://tec.openplanner.team/stops/LaMschr2", "https://tec.openplanner.team/stops/LmDwei31"], ["https://tec.openplanner.team/stops/Bdvmcbo2", "https://tec.openplanner.team/stops/Bwavbva2"], ["https://tec.openplanner.team/stops/LFCotte1", "https://tec.openplanner.team/stops/LFMrijk2"], ["https://tec.openplanner.team/stops/N539bba", "https://tec.openplanner.team/stops/N539bbb"], ["https://tec.openplanner.team/stops/H1fr131a", "https://tec.openplanner.team/stops/H1fr133b"], ["https://tec.openplanner.team/stops/Cmechnd2", "https://tec.openplanner.team/stops/Cmecite1"], ["https://tec.openplanner.team/stops/N244apa", "https://tec.openplanner.team/stops/N244asa"], ["https://tec.openplanner.team/stops/Cfometr1", "https://tec.openplanner.team/stops/CMfont1"], ["https://tec.openplanner.team/stops/H1bu139a", "https://tec.openplanner.team/stops/H1bu142a"], ["https://tec.openplanner.team/stops/N501cja", "https://tec.openplanner.team/stops/N501ckb"], ["https://tec.openplanner.team/stops/Bbsihau2", "https://tec.openplanner.team/stops/Bwaunop1"], ["https://tec.openplanner.team/stops/LSeaque4", "https://tec.openplanner.team/stops/LVbgend1"], ["https://tec.openplanner.team/stops/H1wa135a", "https://tec.openplanner.team/stops/H1wa144a"], ["https://tec.openplanner.team/stops/H4de113b", "https://tec.openplanner.team/stops/H4de114a"], ["https://tec.openplanner.team/stops/N383afa", "https://tec.openplanner.team/stops/N383afb"], ["https://tec.openplanner.team/stops/N106aaa", "https://tec.openplanner.team/stops/N106abb"], ["https://tec.openplanner.team/stops/X806aba", "https://tec.openplanner.team/stops/X806acb"], ["https://tec.openplanner.team/stops/Cprcalv2", "https://tec.openplanner.team/stops/NC44aba"], ["https://tec.openplanner.team/stops/H4ae100a", "https://tec.openplanner.team/stops/H4ef111a"], ["https://tec.openplanner.team/stops/X747ahb", "https://tec.openplanner.team/stops/X747aia"], ["https://tec.openplanner.team/stops/LTGsucr2", "https://tec.openplanner.team/stops/LTGvill2"], ["https://tec.openplanner.team/stops/LsCbrau1", "https://tec.openplanner.team/stops/LsCbrau2"], ["https://tec.openplanner.team/stops/Cfcpla2", "https://tec.openplanner.team/stops/Cfcplac3"], ["https://tec.openplanner.team/stops/N585abb", "https://tec.openplanner.team/stops/N585aja"], ["https://tec.openplanner.team/stops/Bmarcat2", "https://tec.openplanner.team/stops/Bmaregl2"], ["https://tec.openplanner.team/stops/Bcbqa361", "https://tec.openplanner.team/stops/Bcbqcoi1"], ["https://tec.openplanner.team/stops/H1so137a", "https://tec.openplanner.team/stops/H1so143b"], ["https://tec.openplanner.team/stops/LMupont2", "https://tec.openplanner.team/stops/LSDheus2"], ["https://tec.openplanner.team/stops/LBJchau*", "https://tec.openplanner.team/stops/LMTfagn1"], ["https://tec.openplanner.team/stops/LBPeg--2", "https://tec.openplanner.team/stops/LBPxhav1"], ["https://tec.openplanner.team/stops/H4ob110b", "https://tec.openplanner.team/stops/H4rc234a"], ["https://tec.openplanner.team/stops/H4ve140a", "https://tec.openplanner.team/stops/H4ve140b"], ["https://tec.openplanner.team/stops/X922acb", "https://tec.openplanner.team/stops/X922ada"], ["https://tec.openplanner.team/stops/Bbcocou2", "https://tec.openplanner.team/stops/Bbcogpl1"], ["https://tec.openplanner.team/stops/X869adb", "https://tec.openplanner.team/stops/X870ahb"], ["https://tec.openplanner.team/stops/Canlalu2", "https://tec.openplanner.team/stops/Canpeup1"], ["https://tec.openplanner.team/stops/N539abb", "https://tec.openplanner.team/stops/N539adc"], ["https://tec.openplanner.team/stops/X715aaa", "https://tec.openplanner.team/stops/X715aqb"], ["https://tec.openplanner.team/stops/N894aab", "https://tec.openplanner.team/stops/N894age"], ["https://tec.openplanner.team/stops/Cjulucq1", "https://tec.openplanner.team/stops/Cjuvand1"], ["https://tec.openplanner.team/stops/X602aaa", "https://tec.openplanner.team/stops/X602aqa"], ["https://tec.openplanner.team/stops/N506bua", "https://tec.openplanner.team/stops/N506bwa"], ["https://tec.openplanner.team/stops/LBgcroi2", "https://tec.openplanner.team/stops/LBgcroi4"], ["https://tec.openplanner.team/stops/N205aba", "https://tec.openplanner.team/stops/N205abb"], ["https://tec.openplanner.team/stops/Bllnchv1", "https://tec.openplanner.team/stops/Bllnhoc2"], ["https://tec.openplanner.team/stops/Bllncyc2", "https://tec.openplanner.team/stops/Bllnrro1"], ["https://tec.openplanner.team/stops/H1as102a", "https://tec.openplanner.team/stops/H1hg180a"], ["https://tec.openplanner.team/stops/Baisbar1", "https://tec.openplanner.team/stops/N519abb"], ["https://tec.openplanner.team/stops/LBkdahl2", "https://tec.openplanner.team/stops/LMsheid1"], ["https://tec.openplanner.team/stops/X740aea", "https://tec.openplanner.team/stops/X758aha"], ["https://tec.openplanner.team/stops/X636aha", "https://tec.openplanner.team/stops/X636ala"], ["https://tec.openplanner.team/stops/Bbryfon1", "https://tec.openplanner.team/stops/Bsammon4"], ["https://tec.openplanner.team/stops/H1ms252c", "https://tec.openplanner.team/stops/H1ms308b"], ["https://tec.openplanner.team/stops/H1gn148a", "https://tec.openplanner.team/stops/H1gn150b"], ["https://tec.openplanner.team/stops/N340aea", "https://tec.openplanner.team/stops/N340afb"], ["https://tec.openplanner.team/stops/LVbpave1", "https://tec.openplanner.team/stops/NL78afa"], ["https://tec.openplanner.team/stops/LkEbran2", "https://tec.openplanner.team/stops/LkEwolf2"], ["https://tec.openplanner.team/stops/Bchgbar1", "https://tec.openplanner.team/stops/Bchgbel1"], ["https://tec.openplanner.team/stops/NR38aba", "https://tec.openplanner.team/stops/NR38aca"], ["https://tec.openplanner.team/stops/Cgdcent1", "https://tec.openplanner.team/stops/Cgdrhau1"], ["https://tec.openplanner.team/stops/LDArich1", "https://tec.openplanner.team/stops/LVImons1"], ["https://tec.openplanner.team/stops/LLrgare2", "https://tec.openplanner.team/stops/LTHturo2"], ["https://tec.openplanner.team/stops/X801aub", "https://tec.openplanner.team/stops/X801ava"], ["https://tec.openplanner.team/stops/Bixlpat1", "https://tec.openplanner.team/stops/Buccdho2"], ["https://tec.openplanner.team/stops/H4my120b", "https://tec.openplanner.team/stops/H4vz367b"], ["https://tec.openplanner.team/stops/H2go113b", "https://tec.openplanner.team/stops/H2mg152a"], ["https://tec.openplanner.team/stops/LsCbrau2", "https://tec.openplanner.team/stops/LsCkirc2"], ["https://tec.openplanner.team/stops/H4gu111a", "https://tec.openplanner.team/stops/H4ta116b"], ["https://tec.openplanner.team/stops/Cctgiss1", "https://tec.openplanner.team/stops/Cctgiss2"], ["https://tec.openplanner.team/stops/H1tl121a", "https://tec.openplanner.team/stops/H1tl121b"], ["https://tec.openplanner.team/stops/X729aaa", "https://tec.openplanner.team/stops/X729aab"], ["https://tec.openplanner.team/stops/X561abc", "https://tec.openplanner.team/stops/XODvill2"], ["https://tec.openplanner.team/stops/N540aab", "https://tec.openplanner.team/stops/N540acd"], ["https://tec.openplanner.team/stops/X614aib", "https://tec.openplanner.team/stops/X623aab"], ["https://tec.openplanner.team/stops/X662acb", "https://tec.openplanner.team/stops/X663aea"], ["https://tec.openplanner.team/stops/Cmeloti1", "https://tec.openplanner.team/stops/Cwxplac2"], ["https://tec.openplanner.team/stops/N166adb", "https://tec.openplanner.team/stops/N167aea"], ["https://tec.openplanner.team/stops/N501cca", "https://tec.openplanner.team/stops/N501ccb"], ["https://tec.openplanner.team/stops/NR38aca", "https://tec.openplanner.team/stops/NR38acb"], ["https://tec.openplanner.team/stops/N254aab", "https://tec.openplanner.team/stops/N254adb"], ["https://tec.openplanner.team/stops/Lanpast1", "https://tec.openplanner.team/stops/Lanstat1"], ["https://tec.openplanner.team/stops/N563ama", "https://tec.openplanner.team/stops/N570abb"], ["https://tec.openplanner.team/stops/Cchfaub2", "https://tec.openplanner.team/stops/Cchlefe2"], ["https://tec.openplanner.team/stops/LPAchpl1", "https://tec.openplanner.team/stops/LVSpota1"], ["https://tec.openplanner.team/stops/Lvtbocl2", "https://tec.openplanner.team/stops/Lvtlomb1"], ["https://tec.openplanner.team/stops/LmRkape1", "https://tec.openplanner.team/stops/LmRkape2"], ["https://tec.openplanner.team/stops/Llgnico3", "https://tec.openplanner.team/stops/Llgnico7"], ["https://tec.openplanner.team/stops/X948aga", "https://tec.openplanner.team/stops/X948aub"], ["https://tec.openplanner.team/stops/LAvrout2", "https://tec.openplanner.team/stops/LLteg--1"], ["https://tec.openplanner.team/stops/LTHec--1", "https://tec.openplanner.team/stops/LTHperr2"], ["https://tec.openplanner.team/stops/N522aga", "https://tec.openplanner.team/stops/N522ala"], ["https://tec.openplanner.team/stops/Cfmgara2", "https://tec.openplanner.team/stops/Cfmrrou2"], ["https://tec.openplanner.team/stops/LSGcent1", "https://tec.openplanner.team/stops/LYechpl1"], ["https://tec.openplanner.team/stops/N232ava", "https://tec.openplanner.team/stops/N232boa"], ["https://tec.openplanner.team/stops/LHUchh-2", "https://tec.openplanner.team/stops/LHUremy1"], ["https://tec.openplanner.team/stops/LBGroma2", "https://tec.openplanner.team/stops/LLncime2"], ["https://tec.openplanner.team/stops/H2mo129a", "https://tec.openplanner.team/stops/H2mo129b"], ["https://tec.openplanner.team/stops/X850aka", "https://tec.openplanner.team/stops/X872aab"], ["https://tec.openplanner.team/stops/H1th180a", "https://tec.openplanner.team/stops/H3go103a"], ["https://tec.openplanner.team/stops/LTEnuro1", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://tec.openplanner.team/stops/N501jja", "https://tec.openplanner.team/stops/N501jjb"], ["https://tec.openplanner.team/stops/H3bi110a", "https://tec.openplanner.team/stops/H3bi110b"], ["https://tec.openplanner.team/stops/LkAbahn*", "https://tec.openplanner.team/stops/LtEnach1"], ["https://tec.openplanner.team/stops/Lghferr1", "https://tec.openplanner.team/stops/Lghgend2"], ["https://tec.openplanner.team/stops/Bwaypon2", "https://tec.openplanner.team/stops/Cwsegli1"], ["https://tec.openplanner.team/stops/H5el100a", "https://tec.openplanner.team/stops/H5rx121a"], ["https://tec.openplanner.team/stops/NH21agb", "https://tec.openplanner.team/stops/NH21ahb"], ["https://tec.openplanner.team/stops/N545aab", "https://tec.openplanner.team/stops/N545acb"], ["https://tec.openplanner.team/stops/Bhptegl1", "https://tec.openplanner.team/stops/Bhptpla2"], ["https://tec.openplanner.team/stops/Bzluqga2", "https://tec.openplanner.team/stops/Bzluvil1"], ["https://tec.openplanner.team/stops/Cgzchab1", "https://tec.openplanner.team/stops/Cgzcour1"], ["https://tec.openplanner.team/stops/H2ha128a", "https://tec.openplanner.team/stops/H2hg146b"], ["https://tec.openplanner.team/stops/LWHkape2", "https://tec.openplanner.team/stops/LWHtrui1"], ["https://tec.openplanner.team/stops/N539asa", "https://tec.openplanner.team/stops/N539bda"], ["https://tec.openplanner.team/stops/N543bna", "https://tec.openplanner.team/stops/N543bnb"], ["https://tec.openplanner.team/stops/X768adb", "https://tec.openplanner.team/stops/X769apa"], ["https://tec.openplanner.team/stops/Cci28ju2", "https://tec.openplanner.team/stops/Ccipano1"], ["https://tec.openplanner.team/stops/Bnstgar2", "https://tec.openplanner.team/stops/Bnstpla2"], ["https://tec.openplanner.team/stops/Cgoclad2", "https://tec.openplanner.team/stops/Cgoloca2"], ["https://tec.openplanner.team/stops/Cluplve4", "https://tec.openplanner.team/stops/Clusncb4"], ["https://tec.openplanner.team/stops/X901awa", "https://tec.openplanner.team/stops/X901awb"], ["https://tec.openplanner.team/stops/N517aab", "https://tec.openplanner.team/stops/N517aca"], ["https://tec.openplanner.team/stops/H4cr110a", "https://tec.openplanner.team/stops/H4cr111b"], ["https://tec.openplanner.team/stops/H4hu119b", "https://tec.openplanner.team/stops/H4hu121b"], ["https://tec.openplanner.team/stops/N134aab", "https://tec.openplanner.team/stops/N134ada"], ["https://tec.openplanner.team/stops/LHCpaci2", "https://tec.openplanner.team/stops/LHMhof-1"], ["https://tec.openplanner.team/stops/N510acf", "https://tec.openplanner.team/stops/N510afa"], ["https://tec.openplanner.team/stops/X901ava", "https://tec.openplanner.team/stops/X901avb"], ["https://tec.openplanner.team/stops/N308ayb", "https://tec.openplanner.team/stops/N308azb"], ["https://tec.openplanner.team/stops/X806aeb", "https://tec.openplanner.team/stops/X806aia"], ["https://tec.openplanner.team/stops/Ccugail2", "https://tec.openplanner.team/stops/Ccutill3"], ["https://tec.openplanner.team/stops/H1mh113a", "https://tec.openplanner.team/stops/H1mh113c"], ["https://tec.openplanner.team/stops/Ljegoss2", "https://tec.openplanner.team/stops/Ltimarq2"], ["https://tec.openplanner.team/stops/N501aha", "https://tec.openplanner.team/stops/N501mda"], ["https://tec.openplanner.team/stops/Bfelcsa1", "https://tec.openplanner.team/stops/Bfelpla1"], ["https://tec.openplanner.team/stops/LBjvill3", "https://tec.openplanner.team/stops/X575ahb"], ["https://tec.openplanner.team/stops/N101ala", "https://tec.openplanner.team/stops/N101apa"], ["https://tec.openplanner.team/stops/LaAseba1", "https://tec.openplanner.team/stops/LaAseba2"], ["https://tec.openplanner.team/stops/X818alb", "https://tec.openplanner.team/stops/X818ama"], ["https://tec.openplanner.team/stops/X923aab", "https://tec.openplanner.team/stops/X923aba"], ["https://tec.openplanner.team/stops/Cmobeau1", "https://tec.openplanner.team/stops/Cromart1"], ["https://tec.openplanner.team/stops/X661ayb", "https://tec.openplanner.team/stops/X661ayc"], ["https://tec.openplanner.team/stops/N224agc", "https://tec.openplanner.team/stops/N349abb"], ["https://tec.openplanner.team/stops/N517aga", "https://tec.openplanner.team/stops/NR30aab"], ["https://tec.openplanner.team/stops/H2ma204b", "https://tec.openplanner.team/stops/H2ma206b"], ["https://tec.openplanner.team/stops/H4gu108c", "https://tec.openplanner.team/stops/H4jm116a"], ["https://tec.openplanner.team/stops/N135axb", "https://tec.openplanner.team/stops/N135aya"], ["https://tec.openplanner.team/stops/Bkrapri2", "https://tec.openplanner.team/stops/Bwolvan1"], ["https://tec.openplanner.team/stops/NL72aca", "https://tec.openplanner.team/stops/NL72acb"], ["https://tec.openplanner.team/stops/N501gqa", "https://tec.openplanner.team/stops/N501nda"], ["https://tec.openplanner.team/stops/Lsecime1", "https://tec.openplanner.team/stops/Lserena1"], ["https://tec.openplanner.team/stops/N538azb", "https://tec.openplanner.team/stops/N538baa"], ["https://tec.openplanner.team/stops/N521aua", "https://tec.openplanner.team/stops/N521aub"], ["https://tec.openplanner.team/stops/X796afa", "https://tec.openplanner.team/stops/X796aib"], ["https://tec.openplanner.team/stops/N135bha", "https://tec.openplanner.team/stops/N135bhb"], ["https://tec.openplanner.team/stops/LOuhalb2", "https://tec.openplanner.team/stops/LOuouff2"], ["https://tec.openplanner.team/stops/LATabba2", "https://tec.openplanner.team/stops/LATgill1"], ["https://tec.openplanner.team/stops/N539aea", "https://tec.openplanner.team/stops/N539amb"], ["https://tec.openplanner.team/stops/H1ho132a", "https://tec.openplanner.team/stops/H1ho135a"], ["https://tec.openplanner.team/stops/N261adb", "https://tec.openplanner.team/stops/N261aha"], ["https://tec.openplanner.team/stops/Csdpira1", "https://tec.openplanner.team/stops/Csdpira2"], ["https://tec.openplanner.team/stops/Ccomott2", "https://tec.openplanner.team/stops/Cvvgrsa1"], ["https://tec.openplanner.team/stops/H4ws160a", "https://tec.openplanner.team/stops/H4ws160b"], ["https://tec.openplanner.team/stops/Llgchai1", "https://tec.openplanner.team/stops/Llgcoll1"], ["https://tec.openplanner.team/stops/N529aha", "https://tec.openplanner.team/stops/N529ahb"], ["https://tec.openplanner.team/stops/N221abb", "https://tec.openplanner.team/stops/N221adb"], ["https://tec.openplanner.team/stops/Beclpma1", "https://tec.openplanner.team/stops/H2ec108a"], ["https://tec.openplanner.team/stops/H1bu140b", "https://tec.openplanner.team/stops/H2le147a"], ["https://tec.openplanner.team/stops/X750baa", "https://tec.openplanner.team/stops/X750bib"], ["https://tec.openplanner.team/stops/LHUlieg2", "https://tec.openplanner.team/stops/LHUmala1"], ["https://tec.openplanner.team/stops/H4co158a", "https://tec.openplanner.team/stops/H4co158b"], ["https://tec.openplanner.team/stops/LWetrib1", "https://tec.openplanner.team/stops/LWetrib2"], ["https://tec.openplanner.team/stops/LVLgotr3", "https://tec.openplanner.team/stops/LVLgotr4"], ["https://tec.openplanner.team/stops/X763aba", "https://tec.openplanner.team/stops/X763acb"], ["https://tec.openplanner.team/stops/Blhunys1", "https://tec.openplanner.team/stops/Bohngen1"], ["https://tec.openplanner.team/stops/N109ada", "https://tec.openplanner.team/stops/N122aba"], ["https://tec.openplanner.team/stops/Bbeubos2", "https://tec.openplanner.team/stops/N576ada"], ["https://tec.openplanner.team/stops/H1el134b", "https://tec.openplanner.team/stops/H1wi153a"], ["https://tec.openplanner.team/stops/Cptberg1", "https://tec.openplanner.team/stops/Cptdubo2"], ["https://tec.openplanner.team/stops/LLAchpl1", "https://tec.openplanner.team/stops/LLApavi2"], ["https://tec.openplanner.team/stops/Bfelpmo1", "https://tec.openplanner.team/stops/Bronpfe2"], ["https://tec.openplanner.team/stops/Cfcleco1", "https://tec.openplanner.team/stops/Cfcpier2"], ["https://tec.openplanner.team/stops/H5rx100b", "https://tec.openplanner.team/stops/H5rx122b"], ["https://tec.openplanner.team/stops/X761aba", "https://tec.openplanner.team/stops/X761aca"], ["https://tec.openplanner.team/stops/LAieg--2", "https://tec.openplanner.team/stops/LAigrim2"], ["https://tec.openplanner.team/stops/LCPaube2", "https://tec.openplanner.team/stops/LCPhall2"], ["https://tec.openplanner.team/stops/Cwfaldi1", "https://tec.openplanner.team/stops/Cwfcast1"], ["https://tec.openplanner.team/stops/LCPaywa2", "https://tec.openplanner.team/stops/LSpxhig2"], ["https://tec.openplanner.team/stops/Cjualed1", "https://tec.openplanner.team/stops/Cjuplco3"], ["https://tec.openplanner.team/stops/Bnivros2", "https://tec.openplanner.team/stops/Bnivsnu1"], ["https://tec.openplanner.team/stops/H4ht173b", "https://tec.openplanner.team/stops/H4la198c"], ["https://tec.openplanner.team/stops/LLMcouv1", "https://tec.openplanner.team/stops/LLMeg--2"], ["https://tec.openplanner.team/stops/Bnivpba1", "https://tec.openplanner.team/stops/Bnivphs1"], ["https://tec.openplanner.team/stops/H2sb231b", "https://tec.openplanner.team/stops/H2sb231c"], ["https://tec.openplanner.team/stops/X754apb", "https://tec.openplanner.team/stops/X754ava"], ["https://tec.openplanner.team/stops/Lmojans1", "https://tec.openplanner.team/stops/Lmoweri1"], ["https://tec.openplanner.team/stops/Lsebelv1", "https://tec.openplanner.team/stops/Lsehcoc1"], ["https://tec.openplanner.team/stops/H1hn205a", "https://tec.openplanner.team/stops/H1hn363b"], ["https://tec.openplanner.team/stops/Bgliopp3", "https://tec.openplanner.team/stops/Boppcar2"], ["https://tec.openplanner.team/stops/LBNgarn2", "https://tec.openplanner.team/stops/LeUindu1"], ["https://tec.openplanner.team/stops/Cwfbarr1", "https://tec.openplanner.team/stops/NC23aaa"], ["https://tec.openplanner.team/stops/Lvedepa*", "https://tec.openplanner.team/stops/Lveepar2"], ["https://tec.openplanner.team/stops/H1ms287a", "https://tec.openplanner.team/stops/H1ms287b"], ["https://tec.openplanner.team/stops/X818apa", "https://tec.openplanner.team/stops/X818avb"], ["https://tec.openplanner.team/stops/LCHeg--1", "https://tec.openplanner.team/stops/LCHfond2"], ["https://tec.openplanner.team/stops/NC44afb", "https://tec.openplanner.team/stops/NC44ahb"], ["https://tec.openplanner.team/stops/LMIbois1", "https://tec.openplanner.team/stops/LSOathe2"], ["https://tec.openplanner.team/stops/X952abb", "https://tec.openplanner.team/stops/X952aka"], ["https://tec.openplanner.team/stops/LXHadam1", "https://tec.openplanner.team/stops/LXHfalh1"], ["https://tec.openplanner.team/stops/H2hp119c", "https://tec.openplanner.team/stops/H2ll260b"], ["https://tec.openplanner.team/stops/LVAflat1", "https://tec.openplanner.team/stops/LVAflat2"], ["https://tec.openplanner.team/stops/LhDkreu1", "https://tec.openplanner.team/stops/LmRkreu2"], ["https://tec.openplanner.team/stops/H1hn209a", "https://tec.openplanner.team/stops/H1ms293b"], ["https://tec.openplanner.team/stops/H4ef162a", "https://tec.openplanner.team/stops/H4ef162b"], ["https://tec.openplanner.team/stops/H4oq224a", "https://tec.openplanner.team/stops/H4ty331a"], ["https://tec.openplanner.team/stops/Bwatber1", "https://tec.openplanner.team/stops/Bwatgge1"], ["https://tec.openplanner.team/stops/X639aaa", "https://tec.openplanner.team/stops/X639apa"], ["https://tec.openplanner.team/stops/LNIbas-2", "https://tec.openplanner.team/stops/LSZstoc2"], ["https://tec.openplanner.team/stops/H1hy128a", "https://tec.openplanner.team/stops/H1hy130a"], ["https://tec.openplanner.team/stops/LBBpech1", "https://tec.openplanner.team/stops/LCLscie1"], ["https://tec.openplanner.team/stops/Bwaab121", "https://tec.openplanner.team/stops/LWSstat2"], ["https://tec.openplanner.team/stops/N534bqa", "https://tec.openplanner.team/stops/N553aca"], ["https://tec.openplanner.team/stops/LBYwez-2", "https://tec.openplanner.team/stops/LHEelva1"], ["https://tec.openplanner.team/stops/H1as104b", "https://tec.openplanner.team/stops/H1ci106a"], ["https://tec.openplanner.team/stops/Ccocorb1", "https://tec.openplanner.team/stops/Ctrepin2"], ["https://tec.openplanner.team/stops/LHSfexh1", "https://tec.openplanner.team/stops/LHSlava1"], ["https://tec.openplanner.team/stops/Cfmcoro2", "https://tec.openplanner.team/stops/Cfmpui81"], ["https://tec.openplanner.team/stops/Cjxcoll1", "https://tec.openplanner.team/stops/Cmyboci1"], ["https://tec.openplanner.team/stops/X740abd", "https://tec.openplanner.team/stops/X740aga"], ["https://tec.openplanner.team/stops/Cthpano2", "https://tec.openplanner.team/stops/Cthstre1"], ["https://tec.openplanner.team/stops/X999ajb", "https://tec.openplanner.team/stops/X999aob"], ["https://tec.openplanner.team/stops/X739aha", "https://tec.openplanner.team/stops/X773abb"], ["https://tec.openplanner.team/stops/H1mm121a", "https://tec.openplanner.team/stops/H1mm121b"], ["https://tec.openplanner.team/stops/LCsbors1", "https://tec.openplanner.team/stops/LCsraws2"], ["https://tec.openplanner.team/stops/X601avb", "https://tec.openplanner.team/stops/X601cya"], ["https://tec.openplanner.team/stops/H2sv220a", "https://tec.openplanner.team/stops/H2sv220b"], ["https://tec.openplanner.team/stops/N506bha", "https://tec.openplanner.team/stops/N506bhb"], ["https://tec.openplanner.team/stops/Cmregli3", "https://tec.openplanner.team/stops/N162abb"], ["https://tec.openplanner.team/stops/N424aba", "https://tec.openplanner.team/stops/N424abb"], ["https://tec.openplanner.team/stops/Becepri1", "https://tec.openplanner.team/stops/Becepri2"], ["https://tec.openplanner.team/stops/H4ir167a", "https://tec.openplanner.team/stops/H4og209a"], ["https://tec.openplanner.team/stops/Ccychco2", "https://tec.openplanner.team/stops/NH01acb"], ["https://tec.openplanner.team/stops/Ltibure2", "https://tec.openplanner.team/stops/Ltibure4"], ["https://tec.openplanner.team/stops/LTymahr2", "https://tec.openplanner.team/stops/LTywyna1"], ["https://tec.openplanner.team/stops/LHAstal2", "https://tec.openplanner.team/stops/LOUbleu1"], ["https://tec.openplanner.team/stops/LBGgeer2", "https://tec.openplanner.team/stops/LGrchpl2"], ["https://tec.openplanner.team/stops/X818acb", "https://tec.openplanner.team/stops/X818aeb"], ["https://tec.openplanner.team/stops/N349aga", "https://tec.openplanner.team/stops/N349aia"], ["https://tec.openplanner.team/stops/X993aca", "https://tec.openplanner.team/stops/X994amb"], ["https://tec.openplanner.team/stops/X750ana", "https://tec.openplanner.team/stops/X750aoa"], ["https://tec.openplanner.team/stops/X796afb", "https://tec.openplanner.team/stops/X796aib"], ["https://tec.openplanner.team/stops/N357acb", "https://tec.openplanner.team/stops/N357aea"], ["https://tec.openplanner.team/stops/H1hv135b", "https://tec.openplanner.team/stops/H1mk123b"], ["https://tec.openplanner.team/stops/Lsebrun4", "https://tec.openplanner.team/stops/Lsepapi3"], ["https://tec.openplanner.team/stops/X820acb", "https://tec.openplanner.team/stops/X820adb"], ["https://tec.openplanner.team/stops/Ccuwain2", "https://tec.openplanner.team/stops/Cgysole2"], ["https://tec.openplanner.team/stops/X633aeb", "https://tec.openplanner.team/stops/X633ahb"], ["https://tec.openplanner.team/stops/H1mr122a", "https://tec.openplanner.team/stops/H1mr122b"], ["https://tec.openplanner.team/stops/LLxcite1", "https://tec.openplanner.team/stops/LLxcrem1"], ["https://tec.openplanner.team/stops/Llgverg1", "https://tec.openplanner.team/stops/Llgverg2"], ["https://tec.openplanner.team/stops/H1ht129a", "https://tec.openplanner.team/stops/H1ht135a"], ["https://tec.openplanner.team/stops/Ljufler1", "https://tec.openplanner.team/stops/Ljumesa1"], ["https://tec.openplanner.team/stops/H1sg148b", "https://tec.openplanner.team/stops/H1sg149b"], ["https://tec.openplanner.team/stops/H4ln128b", "https://tec.openplanner.team/stops/H4ne144a"], ["https://tec.openplanner.team/stops/Cmastma4", "https://tec.openplanner.team/stops/Cmazsnc2"], ["https://tec.openplanner.team/stops/Bmlnsms1", "https://tec.openplanner.team/stops/Brxmcna1"], ["https://tec.openplanner.team/stops/N245aba", "https://tec.openplanner.team/stops/N245aca"], ["https://tec.openplanner.team/stops/LJAsuri1", "https://tec.openplanner.team/stops/LSUhage1"], ["https://tec.openplanner.team/stops/Lvegc--3", "https://tec.openplanner.team/stops/Lvegc--6"], ["https://tec.openplanner.team/stops/NL77ajb", "https://tec.openplanner.team/stops/NL77aka"], ["https://tec.openplanner.team/stops/Lgrfass2", "https://tec.openplanner.team/stops/Lgrfrcu2"], ["https://tec.openplanner.team/stops/Cgzclef1", "https://tec.openplanner.team/stops/Cgzvivi1"], ["https://tec.openplanner.team/stops/H4ka179a", "https://tec.openplanner.team/stops/H4ka189b"], ["https://tec.openplanner.team/stops/LCHfond2", "https://tec.openplanner.team/stops/Lprsher2"], ["https://tec.openplanner.team/stops/LhM07--1", "https://tec.openplanner.team/stops/LhM07--2"], ["https://tec.openplanner.team/stops/X940abb", "https://tec.openplanner.team/stops/X940ada"], ["https://tec.openplanner.team/stops/LMAbell1", "https://tec.openplanner.team/stops/LMAbijo1"], ["https://tec.openplanner.team/stops/H4bo120b", "https://tec.openplanner.team/stops/H4bo178a"], ["https://tec.openplanner.team/stops/X672afb", "https://tec.openplanner.team/stops/X672apa"], ["https://tec.openplanner.team/stops/X666ajb", "https://tec.openplanner.team/stops/X666akb"], ["https://tec.openplanner.team/stops/Cvscomb1", "https://tec.openplanner.team/stops/N530afa"], ["https://tec.openplanner.team/stops/X640aua", "https://tec.openplanner.team/stops/X640aub"], ["https://tec.openplanner.team/stops/Cmychau2", "https://tec.openplanner.team/stops/Cmyplac1"], ["https://tec.openplanner.team/stops/LLrc1651", "https://tec.openplanner.team/stops/LWMcent2"], ["https://tec.openplanner.team/stops/LJAcime2", "https://tec.openplanner.team/stops/LJAherb4"], ["https://tec.openplanner.team/stops/X817aaa", "https://tec.openplanner.team/stops/X822apb"], ["https://tec.openplanner.team/stops/X601bva", "https://tec.openplanner.team/stops/X601dga"], ["https://tec.openplanner.team/stops/Cgrbert1", "https://tec.openplanner.team/stops/Cgrchas1"], ["https://tec.openplanner.team/stops/LClange2", "https://tec.openplanner.team/stops/LLMcouv1"], ["https://tec.openplanner.team/stops/N135aja", "https://tec.openplanner.team/stops/N135aqa"], ["https://tec.openplanner.team/stops/LkEkric1", "https://tec.openplanner.team/stops/LkEneus1"], ["https://tec.openplanner.team/stops/H4an111b", "https://tec.openplanner.team/stops/H4cr110a"], ["https://tec.openplanner.team/stops/N526acb", "https://tec.openplanner.team/stops/N526aea"], ["https://tec.openplanner.team/stops/Ceregl1", "https://tec.openplanner.team/stops/Cfcrerp2"], ["https://tec.openplanner.team/stops/N501hua", "https://tec.openplanner.team/stops/N501hya"], ["https://tec.openplanner.team/stops/N242aeb", "https://tec.openplanner.team/stops/N243aaa"], ["https://tec.openplanner.team/stops/X604abb", "https://tec.openplanner.team/stops/X604acb"], ["https://tec.openplanner.team/stops/X609ahb", "https://tec.openplanner.team/stops/X609ara"], ["https://tec.openplanner.team/stops/LWDplac1", "https://tec.openplanner.team/stops/LWDplac2"], ["https://tec.openplanner.team/stops/Lousimo1", "https://tec.openplanner.team/stops/Louvand2"], ["https://tec.openplanner.team/stops/Bsdacab2", "https://tec.openplanner.team/stops/Bsdampe1"], ["https://tec.openplanner.team/stops/X390ahb", "https://tec.openplanner.team/stops/X390aia"], ["https://tec.openplanner.team/stops/Lghpara1", "https://tec.openplanner.team/stops/Lghpara2"], ["https://tec.openplanner.team/stops/Canboha1", "https://tec.openplanner.team/stops/Canboha2"], ["https://tec.openplanner.team/stops/X667aca", "https://tec.openplanner.team/stops/X667acb"], ["https://tec.openplanner.team/stops/Bjodcoi2", "https://tec.openplanner.team/stops/NR10aaa"], ["https://tec.openplanner.team/stops/LSOferr1", "https://tec.openplanner.team/stops/LSOferr3"], ["https://tec.openplanner.team/stops/Cragoss2", "https://tec.openplanner.team/stops/Craplac3"], ["https://tec.openplanner.team/stops/H4ff120a", "https://tec.openplanner.team/stops/H4ff122b"], ["https://tec.openplanner.team/stops/H1mj127a", "https://tec.openplanner.team/stops/H1mj128a"], ["https://tec.openplanner.team/stops/X825aga", "https://tec.openplanner.team/stops/X826aga"], ["https://tec.openplanner.team/stops/Clftour2", "https://tec.openplanner.team/stops/Crglyre2"], ["https://tec.openplanner.team/stops/X609afa", "https://tec.openplanner.team/stops/X609afb"], ["https://tec.openplanner.team/stops/N232ajb", "https://tec.openplanner.team/stops/N232cab"], ["https://tec.openplanner.team/stops/H4bu109a", "https://tec.openplanner.team/stops/H4fa167a"], ["https://tec.openplanner.team/stops/LAWaube1", "https://tec.openplanner.team/stops/LHGtong2"], ["https://tec.openplanner.team/stops/H1mc127a", "https://tec.openplanner.team/stops/H1mc127b"], ["https://tec.openplanner.team/stops/H4hx111a", "https://tec.openplanner.team/stops/H4hx112a"], ["https://tec.openplanner.team/stops/H2ch100a", "https://tec.openplanner.team/stops/H2ch100c"], ["https://tec.openplanner.team/stops/X651afa", "https://tec.openplanner.team/stops/X659acb"], ["https://tec.openplanner.team/stops/H1ho143c", "https://tec.openplanner.team/stops/H1sg147a"], ["https://tec.openplanner.team/stops/LAUabat2", "https://tec.openplanner.team/stops/LAUcose1"], ["https://tec.openplanner.team/stops/N512aka", "https://tec.openplanner.team/stops/N512akb"], ["https://tec.openplanner.team/stops/Boppegl1", "https://tec.openplanner.team/stops/Bopplon2"], ["https://tec.openplanner.team/stops/Lgdhall*", "https://tec.openplanner.team/stops/Lgdmaye1"], ["https://tec.openplanner.team/stops/N425adb", "https://tec.openplanner.team/stops/N425aeb"], ["https://tec.openplanner.team/stops/X597aaa", "https://tec.openplanner.team/stops/X796aib"], ["https://tec.openplanner.team/stops/Bneeace1", "https://tec.openplanner.team/stops/Bneehou1"], ["https://tec.openplanner.team/stops/N151aja", "https://tec.openplanner.team/stops/N151ajb"], ["https://tec.openplanner.team/stops/N549aab", "https://tec.openplanner.team/stops/N549acb"], ["https://tec.openplanner.team/stops/X730afb", "https://tec.openplanner.team/stops/X731aia"], ["https://tec.openplanner.team/stops/N576aia", "https://tec.openplanner.team/stops/N576aja"], ["https://tec.openplanner.team/stops/LVlroua2", "https://tec.openplanner.team/stops/LVlroua4"], ["https://tec.openplanner.team/stops/X946agb", "https://tec.openplanner.team/stops/X946aha"], ["https://tec.openplanner.team/stops/N573aca", "https://tec.openplanner.team/stops/N573acb"], ["https://tec.openplanner.team/stops/Balswwe2", "https://tec.openplanner.team/stops/Bhalcbr1"], ["https://tec.openplanner.team/stops/N501gcb", "https://tec.openplanner.team/stops/N501lda"], ["https://tec.openplanner.team/stops/LTEkl121", "https://tec.openplanner.team/stops/LTEkl122"], ["https://tec.openplanner.team/stops/Lccawir2", "https://tec.openplanner.team/stops/Lccawir3"], ["https://tec.openplanner.team/stops/Bclgavi2", "https://tec.openplanner.team/stops/Bclgpla1"], ["https://tec.openplanner.team/stops/Lhrbass2", "https://tec.openplanner.team/stops/Lhrdron2"], ["https://tec.openplanner.team/stops/H1gi118a", "https://tec.openplanner.team/stops/H1hl122b"], ["https://tec.openplanner.team/stops/X672apa", "https://tec.openplanner.team/stops/X817aga"], ["https://tec.openplanner.team/stops/N155afa", "https://tec.openplanner.team/stops/N155afb"], ["https://tec.openplanner.team/stops/X818awa", "https://tec.openplanner.team/stops/X820aeb"], ["https://tec.openplanner.team/stops/X781ada", "https://tec.openplanner.team/stops/X781adb"], ["https://tec.openplanner.team/stops/Blonegl2", "https://tec.openplanner.team/stops/Blontry1"], ["https://tec.openplanner.team/stops/LLedoya1", "https://tec.openplanner.team/stops/X782aba"], ["https://tec.openplanner.team/stops/H4fr140b", "https://tec.openplanner.team/stops/H4ma399b"], ["https://tec.openplanner.team/stops/X908afb", "https://tec.openplanner.team/stops/X911aoa"], ["https://tec.openplanner.team/stops/N308aic", "https://tec.openplanner.team/stops/N308aja"], ["https://tec.openplanner.team/stops/H4ag105a", "https://tec.openplanner.team/stops/H4ag105b"], ["https://tec.openplanner.team/stops/N311aeb", "https://tec.openplanner.team/stops/N311afb"], ["https://tec.openplanner.team/stops/X641acb", "https://tec.openplanner.team/stops/X641aob"], ["https://tec.openplanner.team/stops/LdElamb2", "https://tec.openplanner.team/stops/LeIdeid1"], ["https://tec.openplanner.team/stops/Lbhmc--1", "https://tec.openplanner.team/stops/Lrogene*"], ["https://tec.openplanner.team/stops/N511aea", "https://tec.openplanner.team/stops/N511afb"], ["https://tec.openplanner.team/stops/Crorogn2", "https://tec.openplanner.team/stops/Csograf4"], ["https://tec.openplanner.team/stops/LHCcroy1", "https://tec.openplanner.team/stops/LHCcroy2"], ["https://tec.openplanner.team/stops/LETeg--1", "https://tec.openplanner.team/stops/LMIlac-2"], ["https://tec.openplanner.team/stops/N149ahb", "https://tec.openplanner.team/stops/N149ala"], ["https://tec.openplanner.team/stops/LVIastr1", "https://tec.openplanner.team/stops/LVIdepo2"], ["https://tec.openplanner.team/stops/Cfocant2", "https://tec.openplanner.team/stops/Cfometr2"], ["https://tec.openplanner.team/stops/Cmqbert1", "https://tec.openplanner.team/stops/N425aba"], ["https://tec.openplanner.team/stops/Btanbth1", "https://tec.openplanner.team/stops/Btanvil1"], ["https://tec.openplanner.team/stops/X758aca", "https://tec.openplanner.team/stops/X758aha"], ["https://tec.openplanner.team/stops/N507aaa", "https://tec.openplanner.team/stops/NL68aac"], ["https://tec.openplanner.team/stops/Bcsgcou2", "https://tec.openplanner.team/stops/Blaspch2"], ["https://tec.openplanner.team/stops/X982ata", "https://tec.openplanner.team/stops/X982aub"], ["https://tec.openplanner.team/stops/X771aeb", "https://tec.openplanner.team/stops/X771afb"], ["https://tec.openplanner.team/stops/N101aea", "https://tec.openplanner.team/stops/N101aua"], ["https://tec.openplanner.team/stops/H5wo126b", "https://tec.openplanner.team/stops/H5wo136b"], ["https://tec.openplanner.team/stops/N118agb", "https://tec.openplanner.team/stops/N118ana"], ["https://tec.openplanner.team/stops/X750bma", "https://tec.openplanner.team/stops/X750bmb"], ["https://tec.openplanner.team/stops/Cjumarc2", "https://tec.openplanner.team/stops/Cjuvand1"], ["https://tec.openplanner.team/stops/X917acb", "https://tec.openplanner.team/stops/X919aeb"], ["https://tec.openplanner.team/stops/LCObouh2", "https://tec.openplanner.team/stops/Lpejonc2"], ["https://tec.openplanner.team/stops/Brebrha1", "https://tec.openplanner.team/stops/Brebrha2"], ["https://tec.openplanner.team/stops/Cptcamb1", "https://tec.openplanner.team/stops/Cptcamb2"], ["https://tec.openplanner.team/stops/LeYvoge2", "https://tec.openplanner.team/stops/LrAalte1"], ["https://tec.openplanner.team/stops/X351ada", "https://tec.openplanner.team/stops/X358afa"], ["https://tec.openplanner.team/stops/LFFchal2", "https://tec.openplanner.team/stops/LFFeg--1"], ["https://tec.openplanner.team/stops/N506aaa", "https://tec.openplanner.team/stops/N506bub"], ["https://tec.openplanner.team/stops/Cmgpthi1", "https://tec.openplanner.team/stops/Cmqbert1"], ["https://tec.openplanner.team/stops/Bettcha3", "https://tec.openplanner.team/stops/Bettlha1"], ["https://tec.openplanner.team/stops/X937adb", "https://tec.openplanner.team/stops/X952ama"], ["https://tec.openplanner.team/stops/LeLcrem2", "https://tec.openplanner.team/stops/LkAbahn*"], ["https://tec.openplanner.team/stops/Cjucar01", "https://tec.openplanner.team/stops/Cjucar02"], ["https://tec.openplanner.team/stops/H1bb146b", "https://tec.openplanner.team/stops/H1do115a"], ["https://tec.openplanner.team/stops/LSGmall2", "https://tec.openplanner.team/stops/LSGsurf1"], ["https://tec.openplanner.team/stops/N874abb", "https://tec.openplanner.team/stops/N874aha"], ["https://tec.openplanner.team/stops/X542aia", "https://tec.openplanner.team/stops/X542aib"], ["https://tec.openplanner.team/stops/Bjod7co1", "https://tec.openplanner.team/stops/Bjodeco2"], ["https://tec.openplanner.team/stops/Bplnfpa1", "https://tec.openplanner.team/stops/Bwatmgo3"], ["https://tec.openplanner.team/stops/N501kna", "https://tec.openplanner.team/stops/N501kpa"], ["https://tec.openplanner.team/stops/Bbiefon1", "https://tec.openplanner.team/stops/Bndbnod1"], ["https://tec.openplanner.team/stops/X801bwa", "https://tec.openplanner.team/stops/X802aza"], ["https://tec.openplanner.team/stops/N106ajb", "https://tec.openplanner.team/stops/N106ana"], ["https://tec.openplanner.team/stops/H2pe162a", "https://tec.openplanner.team/stops/H2pe163a"], ["https://tec.openplanner.team/stops/N514ama", "https://tec.openplanner.team/stops/N515ana"], ["https://tec.openplanner.team/stops/Bbcocvb1", "https://tec.openplanner.team/stops/Bbcomar2"], ["https://tec.openplanner.team/stops/Lflsana2", "https://tec.openplanner.team/stops/Lmabott2"], ["https://tec.openplanner.team/stops/X659aha", "https://tec.openplanner.team/stops/X659aib"], ["https://tec.openplanner.team/stops/LtH28a-1", "https://tec.openplanner.team/stops/LtHfrie1"], ["https://tec.openplanner.team/stops/N540acb", "https://tec.openplanner.team/stops/N540acd"], ["https://tec.openplanner.team/stops/LSZeg--1", "https://tec.openplanner.team/stops/LSZprie1"], ["https://tec.openplanner.team/stops/LbRfrie2", "https://tec.openplanner.team/stops/LbRkirc1"], ["https://tec.openplanner.team/stops/LFfeg--1", "https://tec.openplanner.team/stops/LPRmoul1"], ["https://tec.openplanner.team/stops/X917aha", "https://tec.openplanner.team/stops/X917ahb"], ["https://tec.openplanner.team/stops/H1ho122b", "https://tec.openplanner.team/stops/H1ho122c"], ["https://tec.openplanner.team/stops/NR21aaa", "https://tec.openplanner.team/stops/NR21abb"], ["https://tec.openplanner.team/stops/Ccucora1", "https://tec.openplanner.team/stops/Ccucorb3"], ["https://tec.openplanner.team/stops/X902ada", "https://tec.openplanner.team/stops/X902aga"], ["https://tec.openplanner.team/stops/X615bca", "https://tec.openplanner.team/stops/X615bcb"], ["https://tec.openplanner.team/stops/Cchcaya1", "https://tec.openplanner.team/stops/Cchcaya2"], ["https://tec.openplanner.team/stops/LeUbael1", "https://tec.openplanner.team/stops/LhEauto2"], ["https://tec.openplanner.team/stops/LmR50--2", "https://tec.openplanner.team/stops/LsHfrie2"], ["https://tec.openplanner.team/stops/H1by101b", "https://tec.openplanner.team/stops/H1mk116a"], ["https://tec.openplanner.team/stops/Lbrnanc1", "https://tec.openplanner.team/stops/Llginte1"], ["https://tec.openplanner.team/stops/LAMfroi1", "https://tec.openplanner.team/stops/LAMpirk1"], ["https://tec.openplanner.team/stops/Csysans1", "https://tec.openplanner.team/stops/Csysans2"], ["https://tec.openplanner.team/stops/X649aaa", "https://tec.openplanner.team/stops/X671aaa"], ["https://tec.openplanner.team/stops/X903aba", "https://tec.openplanner.team/stops/X903abb"], ["https://tec.openplanner.team/stops/Crcegli3", "https://tec.openplanner.team/stops/Crcverr2"], ["https://tec.openplanner.team/stops/X650aab", "https://tec.openplanner.team/stops/X650anb"], ["https://tec.openplanner.team/stops/Bgntcom1", "https://tec.openplanner.team/stops/Bmelmqu2"], ["https://tec.openplanner.team/stops/Bmrspel1", "https://tec.openplanner.team/stops/Bmrspel2"], ["https://tec.openplanner.team/stops/X394aea", "https://tec.openplanner.team/stops/X394aeb"], ["https://tec.openplanner.team/stops/X928aaa", "https://tec.openplanner.team/stops/X928aab"], ["https://tec.openplanner.team/stops/H1em101b", "https://tec.openplanner.team/stops/H1em109b"], ["https://tec.openplanner.team/stops/Bgerprg2", "https://tec.openplanner.team/stops/Bgrhche2"], ["https://tec.openplanner.team/stops/Cmlbulp3", "https://tec.openplanner.team/stops/Cmlcazi2"], ["https://tec.openplanner.team/stops/LFyanto1", "https://tec.openplanner.team/stops/LFyWarc2"], ["https://tec.openplanner.team/stops/N501lpb", "https://tec.openplanner.team/stops/N501lrb"], ["https://tec.openplanner.team/stops/H4ty301a", "https://tec.openplanner.team/stops/H4ty328b"], ["https://tec.openplanner.team/stops/H1as103a", "https://tec.openplanner.team/stops/H1as103b"], ["https://tec.openplanner.team/stops/H5rx127a", "https://tec.openplanner.team/stops/H5rx127b"], ["https://tec.openplanner.team/stops/NL76asa", "https://tec.openplanner.team/stops/NL80aub"], ["https://tec.openplanner.team/stops/Crcpla1", "https://tec.openplanner.team/stops/NH03aga"], ["https://tec.openplanner.team/stops/LBhcent2", "https://tec.openplanner.team/stops/LSoeg--2"], ["https://tec.openplanner.team/stops/H1cd112a", "https://tec.openplanner.team/stops/H1ne145a"], ["https://tec.openplanner.team/stops/Bolpmre1", "https://tec.openplanner.team/stops/Bolppsn1"], ["https://tec.openplanner.team/stops/LLmeg--2", "https://tec.openplanner.team/stops/LLmetat1"], ["https://tec.openplanner.team/stops/H1br131b", "https://tec.openplanner.team/stops/H1ev149a"], ["https://tec.openplanner.team/stops/N155aha", "https://tec.openplanner.team/stops/N160aga"], ["https://tec.openplanner.team/stops/N501gnb", "https://tec.openplanner.team/stops/N501gsa"], ["https://tec.openplanner.team/stops/LJOchar2", "https://tec.openplanner.team/stops/LXHbell2"], ["https://tec.openplanner.team/stops/Lmoboeu1", "https://tec.openplanner.team/stops/Lmomarr1"], ["https://tec.openplanner.team/stops/X695aga", "https://tec.openplanner.team/stops/X696aha"], ["https://tec.openplanner.team/stops/Csbberg1", "https://tec.openplanner.team/stops/H1sa113a"], ["https://tec.openplanner.team/stops/Bqueblo1", "https://tec.openplanner.team/stops/Bqueblo2"], ["https://tec.openplanner.team/stops/Crachap1", "https://tec.openplanner.team/stops/Crachap2"], ["https://tec.openplanner.team/stops/Bhalalb2", "https://tec.openplanner.team/stops/Bhalsro2"], ["https://tec.openplanner.team/stops/H2fy119b", "https://tec.openplanner.team/stops/H2mg137a"], ["https://tec.openplanner.team/stops/X609aha", "https://tec.openplanner.team/stops/X609aib"], ["https://tec.openplanner.team/stops/X725afg", "https://tec.openplanner.team/stops/X725bga"], ["https://tec.openplanner.team/stops/H1en100b", "https://tec.openplanner.team/stops/H1en101b"], ["https://tec.openplanner.team/stops/LSPmalc1", "https://tec.openplanner.team/stops/LSTamer2"], ["https://tec.openplanner.team/stops/Brsga152", "https://tec.openplanner.team/stops/Brsggol2"], ["https://tec.openplanner.team/stops/Blasbh52", "https://tec.openplanner.team/stops/Blasbti2"], ["https://tec.openplanner.team/stops/X953ada", "https://tec.openplanner.team/stops/X953aeb"], ["https://tec.openplanner.team/stops/X371aea", "https://tec.openplanner.team/stops/X371afb"], ["https://tec.openplanner.team/stops/Ccipech2", "https://tec.openplanner.team/stops/Cmttrie2"], ["https://tec.openplanner.team/stops/LLeeg--1", "https://tec.openplanner.team/stops/X547aeb"], ["https://tec.openplanner.team/stops/LHhchau1", "https://tec.openplanner.team/stops/NL30akb"], ["https://tec.openplanner.team/stops/X892aaa", "https://tec.openplanner.team/stops/X892aha"], ["https://tec.openplanner.team/stops/X955aea", "https://tec.openplanner.team/stops/X955aeb"], ["https://tec.openplanner.team/stops/LAuchau1", "https://tec.openplanner.team/stops/LAuchau2"], ["https://tec.openplanner.team/stops/LAncoup1", "https://tec.openplanner.team/stops/LVncarr1"], ["https://tec.openplanner.team/stops/Csshouy1", "https://tec.openplanner.team/stops/Csspn2"], ["https://tec.openplanner.team/stops/LLbcafe1", "https://tec.openplanner.team/stops/LRcjard2"], ["https://tec.openplanner.team/stops/LBMecol2", "https://tec.openplanner.team/stops/X982bfa"], ["https://tec.openplanner.team/stops/Lsmecol2", "https://tec.openplanner.team/stops/Lsmrwan2"], ["https://tec.openplanner.team/stops/H4by116a", "https://tec.openplanner.team/stops/H4by116b"], ["https://tec.openplanner.team/stops/H4bo122b", "https://tec.openplanner.team/stops/H4bo182b"], ["https://tec.openplanner.team/stops/Cacscav1", "https://tec.openplanner.team/stops/NC24afb"], ["https://tec.openplanner.team/stops/LmD27--1", "https://tec.openplanner.team/stops/LmD27--2"], ["https://tec.openplanner.team/stops/X890adb", "https://tec.openplanner.team/stops/X891aab"], ["https://tec.openplanner.team/stops/N117ayb", "https://tec.openplanner.team/stops/N117aza"], ["https://tec.openplanner.team/stops/H1wg125c", "https://tec.openplanner.team/stops/H1wg126a"], ["https://tec.openplanner.team/stops/Brsgleq1", "https://tec.openplanner.team/stops/Brsgleq2"], ["https://tec.openplanner.team/stops/Clolidl2", "https://tec.openplanner.team/stops/Cloravi1"], ["https://tec.openplanner.team/stops/H2hg271b", "https://tec.openplanner.team/stops/H2ll198b"], ["https://tec.openplanner.team/stops/H4to131a", "https://tec.openplanner.team/stops/H4to134b"], ["https://tec.openplanner.team/stops/Bheneco1", "https://tec.openplanner.team/stops/Bhenpln1"], ["https://tec.openplanner.team/stops/N503afb", "https://tec.openplanner.team/stops/N503aia"], ["https://tec.openplanner.team/stops/N501fxa", "https://tec.openplanner.team/stops/N501hja"], ["https://tec.openplanner.team/stops/LDmwaef2", "https://tec.openplanner.team/stops/LSBdelc1"], ["https://tec.openplanner.team/stops/N203aab", "https://tec.openplanner.team/stops/N203aeb"], ["https://tec.openplanner.team/stops/X991aga", "https://tec.openplanner.team/stops/X991agc"], ["https://tec.openplanner.team/stops/N506aba", "https://tec.openplanner.team/stops/N506aoa"], ["https://tec.openplanner.team/stops/Ljetout3", "https://tec.openplanner.team/stops/Ljetout4"], ["https://tec.openplanner.team/stops/Llgbruy2", "https://tec.openplanner.team/stops/Llgcmes2"], ["https://tec.openplanner.team/stops/X619adb", "https://tec.openplanner.team/stops/X619aea"], ["https://tec.openplanner.team/stops/H1ba108a", "https://tec.openplanner.team/stops/H1gh371a"], ["https://tec.openplanner.team/stops/N525adb", "https://tec.openplanner.team/stops/N525aeb"], ["https://tec.openplanner.team/stops/N543cib", "https://tec.openplanner.team/stops/N543cja"], ["https://tec.openplanner.team/stops/Clostan1", "https://tec.openplanner.team/stops/Clostan2"], ["https://tec.openplanner.team/stops/X911akb", "https://tec.openplanner.team/stops/X911ala"], ["https://tec.openplanner.team/stops/Ldimeun2", "https://tec.openplanner.team/stops/Ldipost1"], ["https://tec.openplanner.team/stops/N215aba", "https://tec.openplanner.team/stops/N215abb"], ["https://tec.openplanner.team/stops/Bnilpco1", "https://tec.openplanner.team/stops/Bnilpco2"], ["https://tec.openplanner.team/stops/H4ne140a", "https://tec.openplanner.team/stops/H4ne140b"], ["https://tec.openplanner.team/stops/X825ada", "https://tec.openplanner.team/stops/X825adb"], ["https://tec.openplanner.team/stops/Cjupier1", "https://tec.openplanner.team/stops/Cjupier2"], ["https://tec.openplanner.team/stops/X806abb", "https://tec.openplanner.team/stops/X806aia"], ["https://tec.openplanner.team/stops/Blhueca2", "https://tec.openplanner.team/stops/Blhugmo1"], ["https://tec.openplanner.team/stops/H1ba109b", "https://tec.openplanner.team/stops/H1te174a"], ["https://tec.openplanner.team/stops/H1gn147a", "https://tec.openplanner.team/stops/H1gn151a"], ["https://tec.openplanner.team/stops/N383adb", "https://tec.openplanner.team/stops/N383afa"], ["https://tec.openplanner.team/stops/X723akb", "https://tec.openplanner.team/stops/X723amb"], ["https://tec.openplanner.team/stops/X624ada", "https://tec.openplanner.team/stops/X624aga"], ["https://tec.openplanner.team/stops/Lagcolo2", "https://tec.openplanner.team/stops/LTIsain1"], ["https://tec.openplanner.team/stops/LHMbach4", "https://tec.openplanner.team/stops/LRmmabr2"], ["https://tec.openplanner.team/stops/Cmlbruy1", "https://tec.openplanner.team/stops/Cmlrbru1"], ["https://tec.openplanner.team/stops/H4fg116b", "https://tec.openplanner.team/stops/H4wn131b"], ["https://tec.openplanner.team/stops/N532aca", "https://tec.openplanner.team/stops/N532ajb"], ["https://tec.openplanner.team/stops/Llgphol2", "https://tec.openplanner.team/stops/Llgtcha1"], ["https://tec.openplanner.team/stops/N120aoc", "https://tec.openplanner.team/stops/N301aga"], ["https://tec.openplanner.team/stops/Cctecol2", "https://tec.openplanner.team/stops/Cctvill1"], ["https://tec.openplanner.team/stops/H1al146a", "https://tec.openplanner.team/stops/H1mb137b"], ["https://tec.openplanner.team/stops/LBsoha-1", "https://tec.openplanner.team/stops/LBsoha-2"], ["https://tec.openplanner.team/stops/Ltithie1", "https://tec.openplanner.team/stops/Ltithie2"], ["https://tec.openplanner.team/stops/N217ada", "https://tec.openplanner.team/stops/N232ada"], ["https://tec.openplanner.team/stops/LGLchap1", "https://tec.openplanner.team/stops/LGLobor1"], ["https://tec.openplanner.team/stops/LhGfl241", "https://tec.openplanner.team/stops/LhGfl242"], ["https://tec.openplanner.team/stops/Lagfour1", "https://tec.openplanner.team/stops/Lagfour2"], ["https://tec.openplanner.team/stops/Lsebove2", "https://tec.openplanner.team/stops/Lsecroi2"], ["https://tec.openplanner.team/stops/N501ldb", "https://tec.openplanner.team/stops/N538abb"], ["https://tec.openplanner.team/stops/Bhticbr1", "https://tec.openplanner.team/stops/Bhtihau1"], ["https://tec.openplanner.team/stops/N501ffb", "https://tec.openplanner.team/stops/N501mkb"], ["https://tec.openplanner.team/stops/LCPone92", "https://tec.openplanner.team/stops/LHycent*"], ["https://tec.openplanner.team/stops/X952aca", "https://tec.openplanner.team/stops/X952aha"], ["https://tec.openplanner.team/stops/H1pd145a", "https://tec.openplanner.team/stops/H1sb147a"], ["https://tec.openplanner.team/stops/LVGeg--1", "https://tec.openplanner.team/stops/LVGeg--5"], ["https://tec.openplanner.team/stops/LlNbene2", "https://tec.openplanner.team/stops/LlNlont1"], ["https://tec.openplanner.team/stops/Cstdona1", "https://tec.openplanner.team/stops/Cstplac2"], ["https://tec.openplanner.team/stops/Bnivros1", "https://tec.openplanner.team/stops/Bnivvri1"], ["https://tec.openplanner.team/stops/X601dfa", "https://tec.openplanner.team/stops/X612aba"], ["https://tec.openplanner.team/stops/X808aga", "https://tec.openplanner.team/stops/X811afb"], ["https://tec.openplanner.team/stops/N577aaa", "https://tec.openplanner.team/stops/N577acb"], ["https://tec.openplanner.team/stops/Ctybaco1", "https://tec.openplanner.team/stops/Ctybaco2"], ["https://tec.openplanner.team/stops/LeLdorf1", "https://tec.openplanner.team/stops/LkAkirc2"], ["https://tec.openplanner.team/stops/H4ga170a", "https://tec.openplanner.team/stops/H4ga170b"], ["https://tec.openplanner.team/stops/H2tr251a", "https://tec.openplanner.team/stops/H2tr253a"], ["https://tec.openplanner.team/stops/Lsebove1", "https://tec.openplanner.team/stops/Lsehaut2"], ["https://tec.openplanner.team/stops/N536aca", "https://tec.openplanner.team/stops/N536aoa"], ["https://tec.openplanner.team/stops/Bcrncen2", "https://tec.openplanner.team/stops/Bcrnpla3"], ["https://tec.openplanner.team/stops/Csobrou2", "https://tec.openplanner.team/stops/Ctrpn2"], ["https://tec.openplanner.team/stops/N234aab", "https://tec.openplanner.team/stops/N243adb"], ["https://tec.openplanner.team/stops/LDmhave2", "https://tec.openplanner.team/stops/LSGmale1"], ["https://tec.openplanner.team/stops/Canplch2", "https://tec.openplanner.team/stops/Canplch4"], ["https://tec.openplanner.team/stops/X782ana", "https://tec.openplanner.team/stops/X782anb"], ["https://tec.openplanner.team/stops/LeYauto2", "https://tec.openplanner.team/stops/LeYmuhl2"], ["https://tec.openplanner.team/stops/LRmrode1", "https://tec.openplanner.team/stops/LTEkl161"], ["https://tec.openplanner.team/stops/Llgauxc1", "https://tec.openplanner.team/stops/Llggee52"], ["https://tec.openplanner.team/stops/X760afb", "https://tec.openplanner.team/stops/X790agb"], ["https://tec.openplanner.team/stops/X910afc", "https://tec.openplanner.team/stops/X910aib"], ["https://tec.openplanner.team/stops/X768afa", "https://tec.openplanner.team/stops/X768afb"], ["https://tec.openplanner.team/stops/X669aga", "https://tec.openplanner.team/stops/X669agc"], ["https://tec.openplanner.team/stops/H2lh128a", "https://tec.openplanner.team/stops/H2lh128b"], ["https://tec.openplanner.team/stops/H4mb143a", "https://tec.openplanner.team/stops/H4mb143c"], ["https://tec.openplanner.team/stops/H4ty326a", "https://tec.openplanner.team/stops/H4vx366a"], ["https://tec.openplanner.team/stops/X685aga", "https://tec.openplanner.team/stops/X685apb"], ["https://tec.openplanner.team/stops/N351ajd", "https://tec.openplanner.team/stops/N351amb"], ["https://tec.openplanner.team/stops/H4bo112b", "https://tec.openplanner.team/stops/H4bo122b"], ["https://tec.openplanner.team/stops/X634aba", "https://tec.openplanner.team/stops/X634ala"], ["https://tec.openplanner.team/stops/N308ada", "https://tec.openplanner.team/stops/N308adb"], ["https://tec.openplanner.team/stops/H4hq133a", "https://tec.openplanner.team/stops/H4hq133b"], ["https://tec.openplanner.team/stops/Lrcchpl1", "https://tec.openplanner.team/stops/Lrcrars1"], ["https://tec.openplanner.team/stops/LCUgale1", "https://tec.openplanner.team/stops/LCUmars2"], ["https://tec.openplanner.team/stops/Cgoboll3", "https://tec.openplanner.team/stops/Cgotech2"], ["https://tec.openplanner.team/stops/LaR1G--1", "https://tec.openplanner.team/stops/LrUwenz2"], ["https://tec.openplanner.team/stops/H3lr113a", "https://tec.openplanner.team/stops/H3lr132a"], ["https://tec.openplanner.team/stops/Bcer4br3", "https://tec.openplanner.team/stops/Bcerldo1"], ["https://tec.openplanner.team/stops/H2le150b", "https://tec.openplanner.team/stops/H2ml110b"], ["https://tec.openplanner.team/stops/H4ae100a", "https://tec.openplanner.team/stops/H4ae100b"], ["https://tec.openplanner.team/stops/Lanclon1", "https://tec.openplanner.team/stops/Lanetie2"], ["https://tec.openplanner.team/stops/Btubcim1", "https://tec.openplanner.team/stops/Btubsal1"], ["https://tec.openplanner.team/stops/X636anb", "https://tec.openplanner.team/stops/X636arb"], ["https://tec.openplanner.team/stops/Lbofrai1", "https://tec.openplanner.team/stops/Lbotige2"], ["https://tec.openplanner.team/stops/LHHpt--1", "https://tec.openplanner.team/stops/LSkbo832"], ["https://tec.openplanner.team/stops/Livvill2", "https://tec.openplanner.team/stops/LNCmarc1"], ["https://tec.openplanner.team/stops/LBGjacq2", "https://tec.openplanner.team/stops/LORroma1"], ["https://tec.openplanner.team/stops/Bperros2", "https://tec.openplanner.team/stops/N519acb"], ["https://tec.openplanner.team/stops/LHHecol1", "https://tec.openplanner.team/stops/LHHindu2"], ["https://tec.openplanner.team/stops/Bwagpco2", "https://tec.openplanner.team/stops/Cwgmell3"], ["https://tec.openplanner.team/stops/LENaout1", "https://tec.openplanner.team/stops/LENparc2"], ["https://tec.openplanner.team/stops/Llghaye2", "https://tec.openplanner.team/stops/Llghenr2"], ["https://tec.openplanner.team/stops/Cthcrom1", "https://tec.openplanner.team/stops/Cthwaib2"], ["https://tec.openplanner.team/stops/H4ag102a", "https://tec.openplanner.team/stops/H4fo119a"], ["https://tec.openplanner.team/stops/Cmamarc2", "https://tec.openplanner.team/stops/Cmazone2"], ["https://tec.openplanner.team/stops/N226aba", "https://tec.openplanner.team/stops/N226acb"], ["https://tec.openplanner.team/stops/N219abb", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/X804ana", "https://tec.openplanner.team/stops/X804aoa"], ["https://tec.openplanner.team/stops/X820aeb", "https://tec.openplanner.team/stops/X821aab"], ["https://tec.openplanner.team/stops/H2sb257b", "https://tec.openplanner.team/stops/H2sb257c"], ["https://tec.openplanner.team/stops/LCpeg-*", "https://tec.openplanner.team/stops/LLgmini2"], ["https://tec.openplanner.team/stops/X741ahb", "https://tec.openplanner.team/stops/X741aia"], ["https://tec.openplanner.team/stops/Cctrjus2", "https://tec.openplanner.team/stops/NC11aia"], ["https://tec.openplanner.team/stops/Cciethi2", "https://tec.openplanner.team/stops/Ccircar1"], ["https://tec.openplanner.team/stops/LBNauto1", "https://tec.openplanner.team/stops/LBNhegg1"], ["https://tec.openplanner.team/stops/LLz21--2", "https://tec.openplanner.team/stops/LLzcruc1"], ["https://tec.openplanner.team/stops/Lstbarb2", "https://tec.openplanner.team/stops/Lstpole2"], ["https://tec.openplanner.team/stops/Crasabl3", "https://tec.openplanner.team/stops/Crasocq2"], ["https://tec.openplanner.team/stops/X907abb", "https://tec.openplanner.team/stops/X907acb"], ["https://tec.openplanner.team/stops/N501fra", "https://tec.openplanner.team/stops/N501izb"], ["https://tec.openplanner.team/stops/LsVfrde1", "https://tec.openplanner.team/stops/LsVgend1"], ["https://tec.openplanner.team/stops/Cvsduve1", "https://tec.openplanner.team/stops/N530ahb"], ["https://tec.openplanner.team/stops/H2ll182a", "https://tec.openplanner.team/stops/H2ll257b"], ["https://tec.openplanner.team/stops/H2hl111b", "https://tec.openplanner.team/stops/H2sv211a"], ["https://tec.openplanner.team/stops/X641agb", "https://tec.openplanner.team/stops/X641ajb"], ["https://tec.openplanner.team/stops/N510aaa", "https://tec.openplanner.team/stops/N510aab"], ["https://tec.openplanner.team/stops/Brixala1", "https://tec.openplanner.team/stops/Brixpro4"], ["https://tec.openplanner.team/stops/N115adb", "https://tec.openplanner.team/stops/N115aeb"], ["https://tec.openplanner.team/stops/X624aia", "https://tec.openplanner.team/stops/X624aja"], ["https://tec.openplanner.team/stops/LMubras2", "https://tec.openplanner.team/stops/LMucarr3"], ["https://tec.openplanner.team/stops/Cchheig2", "https://tec.openplanner.team/stops/Cdadest2"], ["https://tec.openplanner.team/stops/H4ta117b", "https://tec.openplanner.team/stops/H4ta127b"], ["https://tec.openplanner.team/stops/LAYsupe1", "https://tec.openplanner.team/stops/LREraph1"], ["https://tec.openplanner.team/stops/Lghmaha2", "https://tec.openplanner.team/stops/Lghpier2"], ["https://tec.openplanner.team/stops/LsVbell2", "https://tec.openplanner.team/stops/LsVfrie1"], ["https://tec.openplanner.team/stops/N512aib", "https://tec.openplanner.team/stops/N512aid"], ["https://tec.openplanner.team/stops/X614acb", "https://tec.openplanner.team/stops/X614adb"], ["https://tec.openplanner.team/stops/H4pl114b", "https://tec.openplanner.team/stops/H4pl117b"], ["https://tec.openplanner.team/stops/Bnetrec2", "https://tec.openplanner.team/stops/Bnettou1"], ["https://tec.openplanner.team/stops/Lvemull2", "https://tec.openplanner.team/stops/Lvepala1"], ["https://tec.openplanner.team/stops/Cchbrou2", "https://tec.openplanner.team/stops/Cchfort1"], ["https://tec.openplanner.team/stops/LPLhout1", "https://tec.openplanner.team/stops/LPLstat1"], ["https://tec.openplanner.team/stops/N104aac", "https://tec.openplanner.team/stops/N104aad"], ["https://tec.openplanner.team/stops/H5pe141b", "https://tec.openplanner.team/stops/H5pe147c"], ["https://tec.openplanner.team/stops/H5rx134b", "https://tec.openplanner.team/stops/H5rx135a"], ["https://tec.openplanner.team/stops/X657aia", "https://tec.openplanner.team/stops/X657aib"], ["https://tec.openplanner.team/stops/CMfbru1", "https://tec.openplanner.team/stops/CMfbru2"], ["https://tec.openplanner.team/stops/Bbchdra1", "https://tec.openplanner.team/stops/Bbchm381"], ["https://tec.openplanner.team/stops/LhLbalt1", "https://tec.openplanner.team/stops/LhLbalt2"], ["https://tec.openplanner.team/stops/LNOpt--2", "https://tec.openplanner.team/stops/LREchif2"], ["https://tec.openplanner.team/stops/LFyec--1", "https://tec.openplanner.team/stops/LWamass1"], ["https://tec.openplanner.team/stops/Buccfja1", "https://tec.openplanner.team/stops/Buccfja2"], ["https://tec.openplanner.team/stops/X358abb", "https://tec.openplanner.team/stops/X358aea"], ["https://tec.openplanner.team/stops/N230acb", "https://tec.openplanner.team/stops/N230ahb"], ["https://tec.openplanner.team/stops/Bnivsto1", "https://tec.openplanner.team/stops/Bnivzep1"], ["https://tec.openplanner.team/stops/X780aca", "https://tec.openplanner.team/stops/X780adb"], ["https://tec.openplanner.team/stops/N509axb", "https://tec.openplanner.team/stops/N511aea"], ["https://tec.openplanner.team/stops/Cmmcomb1", "https://tec.openplanner.team/stops/Cmmschw1"], ["https://tec.openplanner.team/stops/Lrogene1", "https://tec.openplanner.team/stops/Lromerl2"], ["https://tec.openplanner.team/stops/H5at135a", "https://tec.openplanner.team/stops/H5at136a"], ["https://tec.openplanner.team/stops/LBivi--1", "https://tec.openplanner.team/stops/LHCcroy1"], ["https://tec.openplanner.team/stops/Bbxlfro1", "https://tec.openplanner.team/stops/Bbxlple2"], ["https://tec.openplanner.team/stops/X897aoa", "https://tec.openplanner.team/stops/X897aqb"], ["https://tec.openplanner.team/stops/X804amb", "https://tec.openplanner.team/stops/X804bja"], ["https://tec.openplanner.team/stops/Lansarm1", "https://tec.openplanner.team/stops/Lmobols1"], ["https://tec.openplanner.team/stops/Llghars5", "https://tec.openplanner.team/stops/Llgm%C3%A9di2"], ["https://tec.openplanner.team/stops/Lrc594-1", "https://tec.openplanner.team/stops/Lrc594-2"], ["https://tec.openplanner.team/stops/LHNcoll1", "https://tec.openplanner.team/stops/NL37aca"], ["https://tec.openplanner.team/stops/LHecime2", "https://tec.openplanner.team/stops/LHSheur1"], ["https://tec.openplanner.team/stops/LBLwaid2", "https://tec.openplanner.team/stops/LTrgibe2"], ["https://tec.openplanner.team/stops/Cflecep2", "https://tec.openplanner.team/stops/Cflhano2"], ["https://tec.openplanner.team/stops/X667aea", "https://tec.openplanner.team/stops/X670ara"], ["https://tec.openplanner.team/stops/LsCback2", "https://tec.openplanner.team/stops/LsF39--1"], ["https://tec.openplanner.team/stops/Ctufleu3", "https://tec.openplanner.team/stops/Ctufleu4"], ["https://tec.openplanner.team/stops/X985aeb", "https://tec.openplanner.team/stops/X985afb"], ["https://tec.openplanner.team/stops/H5rx101a", "https://tec.openplanner.team/stops/H5rx114b"], ["https://tec.openplanner.team/stops/Landeja1", "https://tec.openplanner.team/stops/Lanothe2"], ["https://tec.openplanner.team/stops/N106aab", "https://tec.openplanner.team/stops/N106abb"], ["https://tec.openplanner.team/stops/Cwfaldi2", "https://tec.openplanner.team/stops/Cwfghis2"], ["https://tec.openplanner.team/stops/N510acb", "https://tec.openplanner.team/stops/N513acb"], ["https://tec.openplanner.team/stops/Cgycime3", "https://tec.openplanner.team/stops/Cgysarr2"], ["https://tec.openplanner.team/stops/X725afe", "https://tec.openplanner.team/stops/X725aha"], ["https://tec.openplanner.team/stops/H5wo136a", "https://tec.openplanner.team/stops/H5wo136b"], ["https://tec.openplanner.team/stops/Bjaugar2", "https://tec.openplanner.team/stops/Bjaupro1"], ["https://tec.openplanner.team/stops/X826afb", "https://tec.openplanner.team/stops/X826aha"], ["https://tec.openplanner.team/stops/X840aab", "https://tec.openplanner.team/stops/X840adb"], ["https://tec.openplanner.team/stops/LSXbecc1", "https://tec.openplanner.team/stops/LSXbecc2"], ["https://tec.openplanner.team/stops/X640afb", "https://tec.openplanner.team/stops/X640ahb"], ["https://tec.openplanner.team/stops/N539aaa", "https://tec.openplanner.team/stops/N540aha"], ["https://tec.openplanner.team/stops/H1fr111b", "https://tec.openplanner.team/stops/H1fr127b"], ["https://tec.openplanner.team/stops/LMAcite1", "https://tec.openplanner.team/stops/LMAhall1"], ["https://tec.openplanner.team/stops/Lsnfoot2", "https://tec.openplanner.team/stops/Lsnpaqu1"], ["https://tec.openplanner.team/stops/X639akd", "https://tec.openplanner.team/stops/X639ata"], ["https://tec.openplanner.team/stops/N563ama", "https://tec.openplanner.team/stops/N563aob"], ["https://tec.openplanner.team/stops/X818arb", "https://tec.openplanner.team/stops/X818avb"], ["https://tec.openplanner.team/stops/NL57add", "https://tec.openplanner.team/stops/NL57afa"], ["https://tec.openplanner.team/stops/X992acb", "https://tec.openplanner.team/stops/X992ajb"], ["https://tec.openplanner.team/stops/LSogite2", "https://tec.openplanner.team/stops/LSopost2"], ["https://tec.openplanner.team/stops/LChvill*", "https://tec.openplanner.team/stops/LSUvill2"], ["https://tec.openplanner.team/stops/Bbghcar1", "https://tec.openplanner.team/stops/Brebpca2"], ["https://tec.openplanner.team/stops/LMIbois2", "https://tec.openplanner.team/stops/LMImc--1"], ["https://tec.openplanner.team/stops/Lhufont1", "https://tec.openplanner.team/stops/Lmncasi1"], ["https://tec.openplanner.team/stops/Canlemo2", "https://tec.openplanner.team/stops/Clbhour2"], ["https://tec.openplanner.team/stops/H4vz368a", "https://tec.openplanner.team/stops/H4vz368b"], ["https://tec.openplanner.team/stops/N584aoa", "https://tec.openplanner.team/stops/N584aob"], ["https://tec.openplanner.team/stops/LbUwhon2", "https://tec.openplanner.team/stops/LhPheps2"], ["https://tec.openplanner.team/stops/LhMdorf2", "https://tec.openplanner.team/stops/LhMmeil2"], ["https://tec.openplanner.team/stops/Lchmarc2", "https://tec.openplanner.team/stops/Lchsaro1"], ["https://tec.openplanner.team/stops/N141aia", "https://tec.openplanner.team/stops/N141aib"], ["https://tec.openplanner.team/stops/Lalbout1", "https://tec.openplanner.team/stops/Lalbout2"], ["https://tec.openplanner.team/stops/X659adb", "https://tec.openplanner.team/stops/X659adc"], ["https://tec.openplanner.team/stops/N311aga", "https://tec.openplanner.team/stops/N312aba"], ["https://tec.openplanner.team/stops/H4ne134a", "https://tec.openplanner.team/stops/H4ne144a"], ["https://tec.openplanner.team/stops/Brebpca1", "https://tec.openplanner.team/stops/Brebrog1"], ["https://tec.openplanner.team/stops/H1bl105a", "https://tec.openplanner.team/stops/H1bl105b"], ["https://tec.openplanner.team/stops/H4ga157a", "https://tec.openplanner.team/stops/H4ga158a"], ["https://tec.openplanner.team/stops/Blsmbfe2", "https://tec.openplanner.team/stops/Bneedia1"], ["https://tec.openplanner.team/stops/Ctrsema2", "https://tec.openplanner.team/stops/H2tz115b"], ["https://tec.openplanner.team/stops/Lmitech1", "https://tec.openplanner.team/stops/Lvtcime2"], ["https://tec.openplanner.team/stops/X823aca", "https://tec.openplanner.team/stops/X823aff"], ["https://tec.openplanner.team/stops/X634aea", "https://tec.openplanner.team/stops/X634aga"], ["https://tec.openplanner.team/stops/Cmtneuv1", "https://tec.openplanner.team/stops/Cmtpaix1"], ["https://tec.openplanner.team/stops/Bosqcim1", "https://tec.openplanner.team/stops/Bvirdco1"], ["https://tec.openplanner.team/stops/LATgill1", "https://tec.openplanner.team/stops/LAThach2"], ["https://tec.openplanner.team/stops/Bcbqcha1", "https://tec.openplanner.team/stops/Bcbqcha2"], ["https://tec.openplanner.team/stops/X805aha", "https://tec.openplanner.team/stops/X869aeb"], ["https://tec.openplanner.team/stops/X770aba", "https://tec.openplanner.team/stops/X770aca"], ["https://tec.openplanner.team/stops/H1fr107e", "https://tec.openplanner.team/stops/H1fr130a"], ["https://tec.openplanner.team/stops/X620aha", "https://tec.openplanner.team/stops/X620ahb"], ["https://tec.openplanner.team/stops/Broneco1", "https://tec.openplanner.team/stops/Broneco2"], ["https://tec.openplanner.team/stops/LTPec--1", "https://tec.openplanner.team/stops/LTPreco1"], ["https://tec.openplanner.team/stops/X614afa", "https://tec.openplanner.team/stops/X614ayb"], ["https://tec.openplanner.team/stops/Ljubrec2", "https://tec.openplanner.team/stops/Ljugode1"], ["https://tec.openplanner.team/stops/LVBbvin", "https://tec.openplanner.team/stops/LWDmass2"], ["https://tec.openplanner.team/stops/Bsaubra1", "https://tec.openplanner.team/stops/Bsaubra2"], ["https://tec.openplanner.team/stops/N874aia", "https://tec.openplanner.team/stops/X887aab"], ["https://tec.openplanner.team/stops/H2lc169a", "https://tec.openplanner.team/stops/H2lc170b"], ["https://tec.openplanner.team/stops/LHDchar4", "https://tec.openplanner.team/stops/LHDmc--2"], ["https://tec.openplanner.team/stops/N535ana", "https://tec.openplanner.team/stops/N535aoa"], ["https://tec.openplanner.team/stops/LWEhosp2", "https://tec.openplanner.team/stops/LWEpaul1"], ["https://tec.openplanner.team/stops/LBvnico1", "https://tec.openplanner.team/stops/LBvnico2"], ["https://tec.openplanner.team/stops/LThnouv1", "https://tec.openplanner.team/stops/LThnouv2"], ["https://tec.openplanner.team/stops/LFarhuy2", "https://tec.openplanner.team/stops/LGAbois1"], ["https://tec.openplanner.team/stops/Cmamonu2", "https://tec.openplanner.team/stops/Cmorgof2"], ["https://tec.openplanner.team/stops/Bsrgcur2", "https://tec.openplanner.team/stops/Bsrgegl2"], ["https://tec.openplanner.team/stops/H4ga149a", "https://tec.openplanner.team/stops/H4ga171a"], ["https://tec.openplanner.team/stops/Cblbaiv1", "https://tec.openplanner.team/stops/Cslbarb1"], ["https://tec.openplanner.team/stops/H1ms253b", "https://tec.openplanner.team/stops/H1ms926a"], ["https://tec.openplanner.team/stops/H4hg156a", "https://tec.openplanner.team/stops/H4mv194b"], ["https://tec.openplanner.team/stops/LWEcool1", "https://tec.openplanner.team/stops/LWEgend2"], ["https://tec.openplanner.team/stops/Bqueaga1", "https://tec.openplanner.team/stops/Bquepos2"], ["https://tec.openplanner.team/stops/Lbhhomv1", "https://tec.openplanner.team/stops/Lbhhomv2"], ["https://tec.openplanner.team/stops/X756ajb", "https://tec.openplanner.team/stops/X779aha"], ["https://tec.openplanner.team/stops/Bblaphi1", "https://tec.openplanner.team/stops/Bblaphi2"], ["https://tec.openplanner.team/stops/N519ada", "https://tec.openplanner.team/stops/N519aja"], ["https://tec.openplanner.team/stops/H4an108a", "https://tec.openplanner.team/stops/H4an108b"], ["https://tec.openplanner.team/stops/Bwaucig2", "https://tec.openplanner.team/stops/Bwaunce2"], ["https://tec.openplanner.team/stops/Cmlhotv2", "https://tec.openplanner.team/stops/Cmlvxmo1"], ["https://tec.openplanner.team/stops/LsHlenz2", "https://tec.openplanner.team/stops/LsHthom2"], ["https://tec.openplanner.team/stops/Bgzdcwa2", "https://tec.openplanner.team/stops/Bgzdgli2"], ["https://tec.openplanner.team/stops/H4ae102b", "https://tec.openplanner.team/stops/H4do108a"], ["https://tec.openplanner.team/stops/N219aeb", "https://tec.openplanner.team/stops/N219afb"], ["https://tec.openplanner.team/stops/Bjodcdt1", "https://tec.openplanner.team/stops/NR21aeb"], ["https://tec.openplanner.team/stops/N501jja", "https://tec.openplanner.team/stops/N521afa"], ["https://tec.openplanner.team/stops/Cvlbvir1", "https://tec.openplanner.team/stops/NH21ada"], ["https://tec.openplanner.team/stops/H1ci105a", "https://tec.openplanner.team/stops/H1hn206b"], ["https://tec.openplanner.team/stops/LAumari1", "https://tec.openplanner.team/stops/LWRbois1"], ["https://tec.openplanner.team/stops/H1nv325a", "https://tec.openplanner.team/stops/H1nv325b"], ["https://tec.openplanner.team/stops/X667aba", "https://tec.openplanner.team/stops/X667ada"], ["https://tec.openplanner.team/stops/H4pl112a", "https://tec.openplanner.team/stops/H4pl112b"], ["https://tec.openplanner.team/stops/Cmbborn1", "https://tec.openplanner.team/stops/Cmbborn2"], ["https://tec.openplanner.team/stops/X922aca", "https://tec.openplanner.team/stops/X922acb"], ["https://tec.openplanner.team/stops/H4ab101a", "https://tec.openplanner.team/stops/H5ma180b"], ["https://tec.openplanner.team/stops/X715aia", "https://tec.openplanner.team/stops/X715alb"], ["https://tec.openplanner.team/stops/N501fma", "https://tec.openplanner.team/stops/N501fna"], ["https://tec.openplanner.team/stops/X917aga", "https://tec.openplanner.team/stops/X917aia"], ["https://tec.openplanner.team/stops/LWEbr511", "https://tec.openplanner.team/stops/LWEwall1"], ["https://tec.openplanner.team/stops/LBgcroi1", "https://tec.openplanner.team/stops/LBgcroi2"], ["https://tec.openplanner.team/stops/X641aqa", "https://tec.openplanner.team/stops/X641ara"], ["https://tec.openplanner.team/stops/N339aca", "https://tec.openplanner.team/stops/N339acb"], ["https://tec.openplanner.team/stops/N531apb", "https://tec.openplanner.team/stops/N531aqa"], ["https://tec.openplanner.team/stops/N533aha", "https://tec.openplanner.team/stops/N551aba"], ["https://tec.openplanner.team/stops/Ccupomp1", "https://tec.openplanner.team/stops/Ccupomp2"], ["https://tec.openplanner.team/stops/X734ara", "https://tec.openplanner.team/stops/X734arb"], ["https://tec.openplanner.team/stops/LsVfrde2", "https://tec.openplanner.team/stops/LsVfrie2"], ["https://tec.openplanner.team/stops/N557abb", "https://tec.openplanner.team/stops/N557aca"], ["https://tec.openplanner.team/stops/Cpccpas1", "https://tec.openplanner.team/stops/Cpclibe3"], ["https://tec.openplanner.team/stops/Cmlbevu1", "https://tec.openplanner.team/stops/Cmlbevu2"], ["https://tec.openplanner.team/stops/LBRpier1", "https://tec.openplanner.team/stops/LBRruel1"], ["https://tec.openplanner.team/stops/Bbryfon1", "https://tec.openplanner.team/stops/Bmarcat1"], ["https://tec.openplanner.team/stops/LeUmeye2", "https://tec.openplanner.team/stops/LrApley1"], ["https://tec.openplanner.team/stops/N111aca", "https://tec.openplanner.team/stops/N111acb"], ["https://tec.openplanner.team/stops/LHMbach2", "https://tec.openplanner.team/stops/LHMbach4"], ["https://tec.openplanner.team/stops/Lgdmaye1", "https://tec.openplanner.team/stops/LWetrib2"], ["https://tec.openplanner.team/stops/H1be100a", "https://tec.openplanner.team/stops/H1er113b"], ["https://tec.openplanner.team/stops/X615ama", "https://tec.openplanner.team/stops/X615amb"], ["https://tec.openplanner.team/stops/N121afa", "https://tec.openplanner.team/stops/N121aia"], ["https://tec.openplanner.team/stops/Bgzdcen1", "https://tec.openplanner.team/stops/Bgzddub1"], ["https://tec.openplanner.team/stops/N141afb", "https://tec.openplanner.team/stops/N141agb"], ["https://tec.openplanner.team/stops/X736aca", "https://tec.openplanner.team/stops/X736acb"], ["https://tec.openplanner.team/stops/LNHhome2", "https://tec.openplanner.team/stops/LTibarb1"], ["https://tec.openplanner.team/stops/Crccarr2", "https://tec.openplanner.team/stops/Crcgmah2"], ["https://tec.openplanner.team/stops/Lqbecco2", "https://tec.openplanner.team/stops/LSAtrih2"], ["https://tec.openplanner.team/stops/N550abe", "https://tec.openplanner.team/stops/N550anb"], ["https://tec.openplanner.team/stops/Bhalvla1", "https://tec.openplanner.team/stops/Bhalvla2"], ["https://tec.openplanner.team/stops/X783aab", "https://tec.openplanner.team/stops/X789aab"], ["https://tec.openplanner.team/stops/LOltill1", "https://tec.openplanner.team/stops/LOmvill4"], ["https://tec.openplanner.team/stops/LGEcent1", "https://tec.openplanner.team/stops/LGEpt--2"], ["https://tec.openplanner.team/stops/Bsomthi1", "https://tec.openplanner.team/stops/N584ada"], ["https://tec.openplanner.team/stops/N539bga", "https://tec.openplanner.team/stops/N540aga"], ["https://tec.openplanner.team/stops/X818ata", "https://tec.openplanner.team/stops/X818awb"], ["https://tec.openplanner.team/stops/Cmxpleg2", "https://tec.openplanner.team/stops/Ctuosso1"], ["https://tec.openplanner.team/stops/LFMrijk1", "https://tec.openplanner.team/stops/LWRbois2"], ["https://tec.openplanner.team/stops/X878ada", "https://tec.openplanner.team/stops/X879aaa"], ["https://tec.openplanner.team/stops/N528aqb", "https://tec.openplanner.team/stops/N528arb"], ["https://tec.openplanner.team/stops/Bnivplt2", "https://tec.openplanner.team/stops/Bnivsho2"], ["https://tec.openplanner.team/stops/H2hg155c", "https://tec.openplanner.team/stops/H2ll195a"], ["https://tec.openplanner.team/stops/N542ala", "https://tec.openplanner.team/stops/N542ama"], ["https://tec.openplanner.team/stops/Lvedepa*", "https://tec.openplanner.team/stops/Lvereno2"], ["https://tec.openplanner.team/stops/LPLec131", "https://tec.openplanner.team/stops/LPLhout2"], ["https://tec.openplanner.team/stops/H3bi113b", "https://tec.openplanner.team/stops/H3bi116a"], ["https://tec.openplanner.team/stops/LCvmonu1", "https://tec.openplanner.team/stops/LCvneuf2"], ["https://tec.openplanner.team/stops/N564aaa", "https://tec.openplanner.team/stops/N564aab"], ["https://tec.openplanner.team/stops/LHtdros1", "https://tec.openplanner.team/stops/LHthest1"], ["https://tec.openplanner.team/stops/Ceqcfra2", "https://tec.openplanner.team/stops/H1er111b"], ["https://tec.openplanner.team/stops/Cjuspin1", "https://tec.openplanner.team/stops/Cjuspin2"], ["https://tec.openplanner.team/stops/Lghgoll1", "https://tec.openplanner.team/stops/Lghgoll2"], ["https://tec.openplanner.team/stops/Boveker1", "https://tec.openplanner.team/stops/Boveker2"], ["https://tec.openplanner.team/stops/Lmoknae1", "https://tec.openplanner.team/stops/Lmoknae4"], ["https://tec.openplanner.team/stops/H2sb227a", "https://tec.openplanner.team/stops/H2sb238b"], ["https://tec.openplanner.team/stops/H1hl126b", "https://tec.openplanner.team/stops/H1hl129a"], ["https://tec.openplanner.team/stops/Brsgece2", "https://tec.openplanner.team/stops/Brsgleq2"], ["https://tec.openplanner.team/stops/H1ag105a", "https://tec.openplanner.team/stops/H1ag107a"], ["https://tec.openplanner.team/stops/Bcseeco2", "https://tec.openplanner.team/stops/Bcsegar2"], ["https://tec.openplanner.team/stops/H4rc232b", "https://tec.openplanner.team/stops/H4rc234b"], ["https://tec.openplanner.team/stops/X601awa", "https://tec.openplanner.team/stops/X601cya"], ["https://tec.openplanner.team/stops/N343alb", "https://tec.openplanner.team/stops/N350aea"], ["https://tec.openplanner.team/stops/X774aeb", "https://tec.openplanner.team/stops/X774aha"], ["https://tec.openplanner.team/stops/LXHbois1", "https://tec.openplanner.team/stops/LXHeg--2"], ["https://tec.openplanner.team/stops/Clddeve2", "https://tec.openplanner.team/stops/Cmyland5"], ["https://tec.openplanner.team/stops/X604ada", "https://tec.openplanner.team/stops/X604aeb"], ["https://tec.openplanner.team/stops/X601bzb", "https://tec.openplanner.team/stops/X601dea"], ["https://tec.openplanner.team/stops/N512aqb", "https://tec.openplanner.team/stops/N512arb"], ["https://tec.openplanner.team/stops/Lhurigu1", "https://tec.openplanner.team/stops/Lvewaut1"], ["https://tec.openplanner.team/stops/X808aha", "https://tec.openplanner.team/stops/X808amb"], ["https://tec.openplanner.team/stops/LWAbett2", "https://tec.openplanner.team/stops/LWAmouh1"], ["https://tec.openplanner.team/stops/Loumair1", "https://tec.openplanner.team/stops/Lscstan3"], ["https://tec.openplanner.team/stops/Ljemake2", "https://tec.openplanner.team/stops/Ljerose3"], ["https://tec.openplanner.team/stops/LHMbelv1", "https://tec.openplanner.team/stops/LHMec--2"], ["https://tec.openplanner.team/stops/H1ha192a", "https://tec.openplanner.team/stops/H1vh136b"], ["https://tec.openplanner.team/stops/LAUvdab1", "https://tec.openplanner.team/stops/LCxross1"], ["https://tec.openplanner.team/stops/N150aha", "https://tec.openplanner.team/stops/N150ahb"], ["https://tec.openplanner.team/stops/Lpeptle2", "https://tec.openplanner.team/stops/LWevand2"], ["https://tec.openplanner.team/stops/H1sy139a", "https://tec.openplanner.team/stops/H1sy140b"], ["https://tec.openplanner.team/stops/Bboueta1", "https://tec.openplanner.team/stops/Bboueta2"], ["https://tec.openplanner.team/stops/LON02--2", "https://tec.openplanner.team/stops/LWamass1"], ["https://tec.openplanner.team/stops/H1au112a", "https://tec.openplanner.team/stops/H1ro136a"], ["https://tec.openplanner.team/stops/LOcgdro4", "https://tec.openplanner.team/stops/LTecent4"], ["https://tec.openplanner.team/stops/Lhuecol2", "https://tec.openplanner.team/stops/Lmntast1"], ["https://tec.openplanner.team/stops/X641apc", "https://tec.openplanner.team/stops/X823aab"], ["https://tec.openplanner.team/stops/Bflcneu2", "https://tec.openplanner.team/stops/NR27aba"], ["https://tec.openplanner.team/stops/LWinavi1", "https://tec.openplanner.team/stops/LWipaif1"], ["https://tec.openplanner.team/stops/N557aba", "https://tec.openplanner.team/stops/N558aja"], ["https://tec.openplanner.team/stops/X738acb", "https://tec.openplanner.team/stops/X771afb"], ["https://tec.openplanner.team/stops/Ldifoye1", "https://tec.openplanner.team/stops/Ldifoye2"], ["https://tec.openplanner.team/stops/X790ajb", "https://tec.openplanner.team/stops/X790aka"], ["https://tec.openplanner.team/stops/Clvorle1", "https://tec.openplanner.team/stops/Cmlstni2"], ["https://tec.openplanner.team/stops/X829abb", "https://tec.openplanner.team/stops/X831aca"], ["https://tec.openplanner.team/stops/LHAstal2", "https://tec.openplanner.team/stops/LOUpres1"], ["https://tec.openplanner.team/stops/Ljetomb2", "https://tec.openplanner.team/stops/Ljetout4"], ["https://tec.openplanner.team/stops/NL76aba", "https://tec.openplanner.team/stops/NL76abb"], ["https://tec.openplanner.team/stops/Bmrlnce1", "https://tec.openplanner.team/stops/Bmrlnce2"], ["https://tec.openplanner.team/stops/N261aab", "https://tec.openplanner.team/stops/N338aia"], ["https://tec.openplanner.team/stops/LeUbahn4", "https://tec.openplanner.team/stops/LeUhook2"], ["https://tec.openplanner.team/stops/LSteg--2", "https://tec.openplanner.team/stops/LStgare*"], ["https://tec.openplanner.team/stops/X684aaa", "https://tec.openplanner.team/stops/X684aab"], ["https://tec.openplanner.team/stops/H2an101a", "https://tec.openplanner.team/stops/H2an101b"], ["https://tec.openplanner.team/stops/Bcsempl2", "https://tec.openplanner.team/stops/Bsmgmou2"], ["https://tec.openplanner.team/stops/X660afa", "https://tec.openplanner.team/stops/X660afb"], ["https://tec.openplanner.team/stops/Cmacreu2", "https://tec.openplanner.team/stops/Cmmegli3"], ["https://tec.openplanner.team/stops/LkEbbl-*", "https://tec.openplanner.team/stops/LkEbbl-1"], ["https://tec.openplanner.team/stops/Bhmmtou2", "https://tec.openplanner.team/stops/Bndbdra2"], ["https://tec.openplanner.team/stops/Lemdieu1", "https://tec.openplanner.team/stops/Lemmc--2"], ["https://tec.openplanner.team/stops/Bblamsp1", "https://tec.openplanner.team/stops/Bwatcli2"], ["https://tec.openplanner.team/stops/Bovesol2", "https://tec.openplanner.team/stops/Brsrfen2"], ["https://tec.openplanner.team/stops/LlA43--1", "https://tec.openplanner.team/stops/LsBzent1"], ["https://tec.openplanner.team/stops/Chpatel2", "https://tec.openplanner.team/stops/Chppack2"], ["https://tec.openplanner.team/stops/LLUmont1", "https://tec.openplanner.team/stops/LLUreut2"], ["https://tec.openplanner.team/stops/N501mey", "https://tec.openplanner.team/stops/N501mkb"], ["https://tec.openplanner.team/stops/Cdadest2", "https://tec.openplanner.team/stops/CMdamp1"], ["https://tec.openplanner.team/stops/H4ty273c", "https://tec.openplanner.team/stops/H4ty273d"], ["https://tec.openplanner.team/stops/X575adb", "https://tec.openplanner.team/stops/X575aea"], ["https://tec.openplanner.team/stops/N134abb", "https://tec.openplanner.team/stops/N134aca"], ["https://tec.openplanner.team/stops/Bnilpor3", "https://tec.openplanner.team/stops/Bnilpor4"], ["https://tec.openplanner.team/stops/Brsrpch1", "https://tec.openplanner.team/stops/Brsrpmo1"], ["https://tec.openplanner.team/stops/X766aaa", "https://tec.openplanner.team/stops/X768agb"], ["https://tec.openplanner.team/stops/Cthalli1", "https://tec.openplanner.team/stops/Cthgend1"], ["https://tec.openplanner.team/stops/Bblaaca1", "https://tec.openplanner.team/stops/Bblasmo2"], ["https://tec.openplanner.team/stops/Cfrtill2", "https://tec.openplanner.team/stops/Crebien2"], ["https://tec.openplanner.team/stops/H4ef163b", "https://tec.openplanner.team/stops/H4ef164a"], ["https://tec.openplanner.team/stops/N244aia", "https://tec.openplanner.team/stops/N244aib"], ["https://tec.openplanner.team/stops/H3so170a", "https://tec.openplanner.team/stops/H3so175b"], ["https://tec.openplanner.team/stops/N135aaa", "https://tec.openplanner.team/stops/N136aaa"], ["https://tec.openplanner.team/stops/Bwavcui2", "https://tec.openplanner.team/stops/Bwavvpr2"], ["https://tec.openplanner.team/stops/Cgrsaul2", "https://tec.openplanner.team/stops/NC14aia"], ["https://tec.openplanner.team/stops/N501kka", "https://tec.openplanner.team/stops/N501kkb"], ["https://tec.openplanner.team/stops/LkEl1211", "https://tec.openplanner.team/stops/LkEl1212"], ["https://tec.openplanner.team/stops/X953aea", "https://tec.openplanner.team/stops/X953afa"], ["https://tec.openplanner.team/stops/Bmrqpla2", "https://tec.openplanner.team/stops/H1mk112a"], ["https://tec.openplanner.team/stops/Lboastr1", "https://tec.openplanner.team/stops/Lbosart1"], ["https://tec.openplanner.team/stops/X638agb", "https://tec.openplanner.team/stops/X638aha"], ["https://tec.openplanner.team/stops/N204afb", "https://tec.openplanner.team/stops/N204aga"], ["https://tec.openplanner.team/stops/H4mo153d", "https://tec.openplanner.team/stops/H4mo184b"], ["https://tec.openplanner.team/stops/Bcer4br5", "https://tec.openplanner.team/stops/Bottpin1"], ["https://tec.openplanner.team/stops/Llgbois2", "https://tec.openplanner.team/stops/Llgwild6"], ["https://tec.openplanner.team/stops/Beclbar2", "https://tec.openplanner.team/stops/Beclfde2"], ["https://tec.openplanner.team/stops/X717ada", "https://tec.openplanner.team/stops/X789aab"], ["https://tec.openplanner.team/stops/H1pa117a", "https://tec.openplanner.team/stops/H1pa117b"], ["https://tec.openplanner.team/stops/X741abc", "https://tec.openplanner.team/stops/X741abd"], ["https://tec.openplanner.team/stops/LCRrape1", "https://tec.openplanner.team/stops/LFmbure1"], ["https://tec.openplanner.team/stops/X681aga", "https://tec.openplanner.team/stops/X681aha"], ["https://tec.openplanner.team/stops/Bwaanwi1", "https://tec.openplanner.team/stops/LWscona2"], ["https://tec.openplanner.team/stops/H1sg144a", "https://tec.openplanner.team/stops/H1te177a"], ["https://tec.openplanner.team/stops/LCF1spa2", "https://tec.openplanner.team/stops/LCF2spa2"], ["https://tec.openplanner.team/stops/N212aka", "https://tec.openplanner.team/stops/N213aca"], ["https://tec.openplanner.team/stops/Cluplve3", "https://tec.openplanner.team/stops/Cluplve4"], ["https://tec.openplanner.team/stops/H5qu147a", "https://tec.openplanner.team/stops/H5qu155a"], ["https://tec.openplanner.team/stops/H4va231b", "https://tec.openplanner.team/stops/H4va234b"], ["https://tec.openplanner.team/stops/X801bwa", "https://tec.openplanner.team/stops/X801bwb"], ["https://tec.openplanner.team/stops/H4la198b", "https://tec.openplanner.team/stops/H4la198c"], ["https://tec.openplanner.team/stops/Csedoua1", "https://tec.openplanner.team/stops/Csedoua2"], ["https://tec.openplanner.team/stops/X901aga", "https://tec.openplanner.team/stops/X901agb"], ["https://tec.openplanner.team/stops/H4mo140b", "https://tec.openplanner.team/stops/H4mo165a"], ["https://tec.openplanner.team/stops/LHTmoul1", "https://tec.openplanner.team/stops/LHTmoul2"], ["https://tec.openplanner.team/stops/X672ahb", "https://tec.openplanner.team/stops/X672aja"], ["https://tec.openplanner.team/stops/Bwatbce1", "https://tec.openplanner.team/stops/Bwatbce2"], ["https://tec.openplanner.team/stops/N131ahb", "https://tec.openplanner.team/stops/N132afa"], ["https://tec.openplanner.team/stops/X801aua", "https://tec.openplanner.team/stops/X889aea"], ["https://tec.openplanner.team/stops/Cgzbouh1", "https://tec.openplanner.team/stops/Cgzvivi1"], ["https://tec.openplanner.team/stops/Cgohnda2", "https://tec.openplanner.team/stops/Ctmazeb1"], ["https://tec.openplanner.team/stops/Lscgare1", "https://tec.openplanner.team/stops/Lscpamp1"], ["https://tec.openplanner.team/stops/X897aea", "https://tec.openplanner.team/stops/X897ara"], ["https://tec.openplanner.team/stops/N101aeb", "https://tec.openplanner.team/stops/N147aba"], ["https://tec.openplanner.team/stops/Ljegare1", "https://tec.openplanner.team/stops/Ljetout2"], ["https://tec.openplanner.team/stops/Lhrcols4", "https://tec.openplanner.team/stops/Llghori1"], ["https://tec.openplanner.team/stops/LHgec--0", "https://tec.openplanner.team/stops/LHggeer1"], ["https://tec.openplanner.team/stops/X619aba", "https://tec.openplanner.team/stops/X619ama"], ["https://tec.openplanner.team/stops/LACeg--2", "https://tec.openplanner.team/stops/LAChann1"], ["https://tec.openplanner.team/stops/N536acb", "https://tec.openplanner.team/stops/N580aga"], ["https://tec.openplanner.team/stops/N528ama", "https://tec.openplanner.team/stops/N528aqa"], ["https://tec.openplanner.team/stops/Bpte1ma1", "https://tec.openplanner.team/stops/Bpte1ma2"], ["https://tec.openplanner.team/stops/Baegegl1", "https://tec.openplanner.team/stops/Bflccav2"], ["https://tec.openplanner.team/stops/LDAalbe1", "https://tec.openplanner.team/stops/LDAwich2"], ["https://tec.openplanner.team/stops/LStroch2", "https://tec.openplanner.team/stops/NL72afa"], ["https://tec.openplanner.team/stops/X636ama", "https://tec.openplanner.team/stops/X636aua"], ["https://tec.openplanner.team/stops/N101anb", "https://tec.openplanner.team/stops/N101ara"], ["https://tec.openplanner.team/stops/X741aia", "https://tec.openplanner.team/stops/X741aic"], ["https://tec.openplanner.team/stops/Cli4bra1", "https://tec.openplanner.team/stops/Cliegli1"], ["https://tec.openplanner.team/stops/Lanclon1", "https://tec.openplanner.team/stops/Lrctec-1"], ["https://tec.openplanner.team/stops/H4mv190a", "https://tec.openplanner.team/stops/H4mv197a"], ["https://tec.openplanner.team/stops/Cprbevu2", "https://tec.openplanner.team/stops/Cprvill2"], ["https://tec.openplanner.team/stops/Llxec--2", "https://tec.openplanner.team/stops/Llxeg--2"], ["https://tec.openplanner.team/stops/N165abb", "https://tec.openplanner.team/stops/N168aaa"], ["https://tec.openplanner.team/stops/X831abb", "https://tec.openplanner.team/stops/X831acb"], ["https://tec.openplanner.team/stops/NL76aka", "https://tec.openplanner.team/stops/NL77aib"], ["https://tec.openplanner.team/stops/H1fr109a", "https://tec.openplanner.team/stops/H1fr125a"], ["https://tec.openplanner.team/stops/LHdkenn1", "https://tec.openplanner.team/stops/LVnetan1"], ["https://tec.openplanner.team/stops/X359aja", "https://tec.openplanner.team/stops/X359ama"], ["https://tec.openplanner.team/stops/Bspkkhe1", "https://tec.openplanner.team/stops/H1mk116a"], ["https://tec.openplanner.team/stops/X736afa", "https://tec.openplanner.team/stops/X736aga"], ["https://tec.openplanner.team/stops/H2pe163a", "https://tec.openplanner.team/stops/H2pe163b"], ["https://tec.openplanner.team/stops/LBLplac3", "https://tec.openplanner.team/stops/LBLplas2"], ["https://tec.openplanner.team/stops/LSsmond1", "https://tec.openplanner.team/stops/LSssurl1"], ["https://tec.openplanner.team/stops/LhPhale1", "https://tec.openplanner.team/stops/LvA30--1"], ["https://tec.openplanner.team/stops/Bptblma2", "https://tec.openplanner.team/stops/Btlgfto1"], ["https://tec.openplanner.team/stops/N118adb", "https://tec.openplanner.team/stops/N118alb"], ["https://tec.openplanner.team/stops/Bbrycar1", "https://tec.openplanner.team/stops/N584bab"], ["https://tec.openplanner.team/stops/H2bh121b", "https://tec.openplanner.team/stops/H2lc172a"], ["https://tec.openplanner.team/stops/Cblcen3", "https://tec.openplanner.team/stops/Cmbcime4"], ["https://tec.openplanner.team/stops/X730aaa", "https://tec.openplanner.team/stops/X753aba"], ["https://tec.openplanner.team/stops/Bbghepi2", "https://tec.openplanner.team/stops/Bstecou2"], ["https://tec.openplanner.team/stops/H4te251b", "https://tec.openplanner.team/stops/H4te253b"], ["https://tec.openplanner.team/stops/Lsnagne1", "https://tec.openplanner.team/stops/Lsnagne2"], ["https://tec.openplanner.team/stops/N571afa", "https://tec.openplanner.team/stops/N571aja"], ["https://tec.openplanner.team/stops/H4os223a", "https://tec.openplanner.team/stops/H4os223b"], ["https://tec.openplanner.team/stops/N217abb", "https://tec.openplanner.team/stops/N217aca"], ["https://tec.openplanner.team/stops/Llgchan1", "https://tec.openplanner.team/stops/Llgcouv2"], ["https://tec.openplanner.team/stops/X720aba", "https://tec.openplanner.team/stops/X733aaa"], ["https://tec.openplanner.team/stops/H4pq112b", "https://tec.openplanner.team/stops/H4pq119b"], ["https://tec.openplanner.team/stops/LPTeg--2", "https://tec.openplanner.team/stops/LWneg--1"], ["https://tec.openplanner.team/stops/LBk79--2", "https://tec.openplanner.team/stops/LMsheid1"], ["https://tec.openplanner.team/stops/X823adb", "https://tec.openplanner.team/stops/X823aea"], ["https://tec.openplanner.team/stops/Cmovies1", "https://tec.openplanner.team/stops/Cmovies2"], ["https://tec.openplanner.team/stops/Bbeaech1", "https://tec.openplanner.team/stops/Bbeagae1"], ["https://tec.openplanner.team/stops/H4lu125a", "https://tec.openplanner.team/stops/H4lu127a"], ["https://tec.openplanner.team/stops/LCEeg--1", "https://tec.openplanner.team/stops/LMEpech2"], ["https://tec.openplanner.team/stops/X796aib", "https://tec.openplanner.team/stops/X986amb"], ["https://tec.openplanner.team/stops/N523aab", "https://tec.openplanner.team/stops/N523acb"], ["https://tec.openplanner.team/stops/Lveoctr1", "https://tec.openplanner.team/stops/Lverdep1"], ["https://tec.openplanner.team/stops/Boffegl2", "https://tec.openplanner.team/stops/Bramcom1"], ["https://tec.openplanner.team/stops/H2ca115b", "https://tec.openplanner.team/stops/H2ch125a"], ["https://tec.openplanner.team/stops/H4mo192a", "https://tec.openplanner.team/stops/H4mo206b"], ["https://tec.openplanner.team/stops/Bmrscsp1", "https://tec.openplanner.team/stops/Bmrsmco1"], ["https://tec.openplanner.team/stops/LNAdemo1", "https://tec.openplanner.team/stops/LNAdemo2"], ["https://tec.openplanner.team/stops/Blmlpla2", "https://tec.openplanner.team/stops/Blmlqlo1"], ["https://tec.openplanner.team/stops/X989aeb", "https://tec.openplanner.team/stops/X989agb"], ["https://tec.openplanner.team/stops/LJAroue2", "https://tec.openplanner.team/stops/LJAverv2"], ["https://tec.openplanner.team/stops/H5rx113b", "https://tec.openplanner.team/stops/H5rx125b"], ["https://tec.openplanner.team/stops/N537aba", "https://tec.openplanner.team/stops/N537aja"], ["https://tec.openplanner.team/stops/Cmacreu2", "https://tec.openplanner.team/stops/CMprov1"], ["https://tec.openplanner.team/stops/Bllnlb11", "https://tec.openplanner.team/stops/Bllnpsc1"], ["https://tec.openplanner.team/stops/N166aaa", "https://tec.openplanner.team/stops/N167aga"], ["https://tec.openplanner.team/stops/N535acb", "https://tec.openplanner.team/stops/N535acd"], ["https://tec.openplanner.team/stops/LChvill*", "https://tec.openplanner.team/stops/LChxhav2"], ["https://tec.openplanner.team/stops/LMOstat1", "https://tec.openplanner.team/stops/LNveg--2"], ["https://tec.openplanner.team/stops/H4vz369a", "https://tec.openplanner.team/stops/H4vz370b"], ["https://tec.openplanner.team/stops/LSznoel2", "https://tec.openplanner.team/stops/N506bvb"], ["https://tec.openplanner.team/stops/X899aaa", "https://tec.openplanner.team/stops/X899afb"], ["https://tec.openplanner.team/stops/Lhrlico3", "https://tec.openplanner.team/stops/Lwachal1"], ["https://tec.openplanner.team/stops/LSUhage2", "https://tec.openplanner.team/stops/LSUvill2"], ["https://tec.openplanner.team/stops/N423aba", "https://tec.openplanner.team/stops/N424aeb"], ["https://tec.openplanner.team/stops/Btslcej1", "https://tec.openplanner.team/stops/Btslhau2"], ["https://tec.openplanner.team/stops/Cgxcite2", "https://tec.openplanner.team/stops/Cgxvkho4"], ["https://tec.openplanner.team/stops/Bgembhe1", "https://tec.openplanner.team/stops/N576anb"], ["https://tec.openplanner.team/stops/Bcsebde1", "https://tec.openplanner.team/stops/Bcsempl2"], ["https://tec.openplanner.team/stops/N531apa", "https://tec.openplanner.team/stops/N576afb"], ["https://tec.openplanner.team/stops/X986adb", "https://tec.openplanner.team/stops/X986aeb"], ["https://tec.openplanner.team/stops/H4wn128a", "https://tec.openplanner.team/stops/H4wn128b"], ["https://tec.openplanner.team/stops/H1cv101a", "https://tec.openplanner.team/stops/H1cv101b"], ["https://tec.openplanner.team/stops/N125aba", "https://tec.openplanner.team/stops/N125acb"], ["https://tec.openplanner.team/stops/N170ada", "https://tec.openplanner.team/stops/NC14aca"], ["https://tec.openplanner.team/stops/Lghberl2", "https://tec.openplanner.team/stops/Lghviad1"], ["https://tec.openplanner.team/stops/Lmobras2", "https://tec.openplanner.team/stops/Lmopast1"], ["https://tec.openplanner.team/stops/H4ty308d", "https://tec.openplanner.team/stops/H4ty309a"], ["https://tec.openplanner.team/stops/NL68adb", "https://tec.openplanner.team/stops/NL68adc"], ["https://tec.openplanner.team/stops/H4rx141a", "https://tec.openplanner.team/stops/H4rx176b"], ["https://tec.openplanner.team/stops/H4ld123b", "https://tec.openplanner.team/stops/H4tm140a"], ["https://tec.openplanner.team/stops/N501cea", "https://tec.openplanner.team/stops/N501ckb"], ["https://tec.openplanner.team/stops/X750aga", "https://tec.openplanner.team/stops/X750ala"], ["https://tec.openplanner.team/stops/N301akb", "https://tec.openplanner.team/stops/N302afa"], ["https://tec.openplanner.team/stops/Ccipier1", "https://tec.openplanner.team/stops/Ccipier2"], ["https://tec.openplanner.team/stops/Ctarpoi2", "https://tec.openplanner.team/stops/N543cmb"], ["https://tec.openplanner.team/stops/X904acb", "https://tec.openplanner.team/stops/X904ada"], ["https://tec.openplanner.team/stops/Lrecomp1", "https://tec.openplanner.team/stops/Lrecomp2"], ["https://tec.openplanner.team/stops/Btubeur1", "https://tec.openplanner.team/stops/Btubsca1"], ["https://tec.openplanner.team/stops/Cmmcomb2", "https://tec.openplanner.team/stops/Cmmpjou1"], ["https://tec.openplanner.team/stops/N230ahb", "https://tec.openplanner.team/stops/N231adb"], ["https://tec.openplanner.team/stops/H1by108e", "https://tec.openplanner.team/stops/H1sy143a"], ["https://tec.openplanner.team/stops/X989abb", "https://tec.openplanner.team/stops/X989aca"], ["https://tec.openplanner.team/stops/H1en106a", "https://tec.openplanner.team/stops/H1en106b"], ["https://tec.openplanner.team/stops/N347aea", "https://tec.openplanner.team/stops/N347afb"], ["https://tec.openplanner.team/stops/X745aca", "https://tec.openplanner.team/stops/X745ada"], ["https://tec.openplanner.team/stops/Cmlceri2", "https://tec.openplanner.team/stops/Cmlcons1"], ["https://tec.openplanner.team/stops/LVIcarm1", "https://tec.openplanner.team/stops/LVItcm-1"], ["https://tec.openplanner.team/stops/X907aga", "https://tec.openplanner.team/stops/X907agb"], ["https://tec.openplanner.team/stops/H1cu118a", "https://tec.openplanner.team/stops/H1cu118b"], ["https://tec.openplanner.team/stops/Lvefran2", "https://tec.openplanner.team/stops/Lvepris1"], ["https://tec.openplanner.team/stops/N514aha", "https://tec.openplanner.team/stops/N515apb"], ["https://tec.openplanner.team/stops/N145aha", "https://tec.openplanner.team/stops/N149aaa"], ["https://tec.openplanner.team/stops/H1bg110a", "https://tec.openplanner.team/stops/H1go174a"], ["https://tec.openplanner.team/stops/Bbrlvil1", "https://tec.openplanner.team/stops/Buccptj2"], ["https://tec.openplanner.team/stops/N207aba", "https://tec.openplanner.team/stops/N207aea"], ["https://tec.openplanner.team/stops/X937akb", "https://tec.openplanner.team/stops/X945aeb"], ["https://tec.openplanner.team/stops/Caicalv2", "https://tec.openplanner.team/stops/Crspana4"], ["https://tec.openplanner.team/stops/X725aee", "https://tec.openplanner.team/stops/X725apb"], ["https://tec.openplanner.team/stops/H4ff115a", "https://tec.openplanner.team/stops/H4ff115b"], ["https://tec.openplanner.team/stops/Bhmmcor1", "https://tec.openplanner.team/stops/Btlgbro1"], ["https://tec.openplanner.team/stops/X724aea", "https://tec.openplanner.team/stops/X724aeb"], ["https://tec.openplanner.team/stops/X610aaa", "https://tec.openplanner.team/stops/X610aba"], ["https://tec.openplanner.team/stops/LWAchpg2", "https://tec.openplanner.team/stops/LWAwegg1"], ["https://tec.openplanner.team/stops/Cmccet2", "https://tec.openplanner.team/stops/Cmivert2"], ["https://tec.openplanner.team/stops/N513ahb", "https://tec.openplanner.team/stops/N521ata"], ["https://tec.openplanner.team/stops/N543baa", "https://tec.openplanner.team/stops/N543bba"], ["https://tec.openplanner.team/stops/LCxwade1", "https://tec.openplanner.team/stops/LJueg--1"], ["https://tec.openplanner.team/stops/Cchheig1", "https://tec.openplanner.team/stops/Cdaptca1"], ["https://tec.openplanner.team/stops/LPLhout2", "https://tec.openplanner.team/stops/LPLstat2"], ["https://tec.openplanner.team/stops/N509aib", "https://tec.openplanner.team/stops/N509bdb"], ["https://tec.openplanner.team/stops/LLelava1", "https://tec.openplanner.team/stops/X547abb"], ["https://tec.openplanner.team/stops/X829aea", "https://tec.openplanner.team/stops/X829aeb"], ["https://tec.openplanner.team/stops/H3so157b", "https://tec.openplanner.team/stops/H3so158b"], ["https://tec.openplanner.team/stops/N565akb", "https://tec.openplanner.team/stops/N565alb"], ["https://tec.openplanner.team/stops/Caiegli2", "https://tec.openplanner.team/stops/Caindsa1"], ["https://tec.openplanner.team/stops/X742aga", "https://tec.openplanner.team/stops/X743aca"], ["https://tec.openplanner.team/stops/H4ft135d", "https://tec.openplanner.team/stops/H4wu377b"], ["https://tec.openplanner.team/stops/LBSchar2", "https://tec.openplanner.team/stops/LBSgeer1"], ["https://tec.openplanner.team/stops/Clbchlo1", "https://tec.openplanner.team/stops/Cthrlef1"], ["https://tec.openplanner.team/stops/X870aba", "https://tec.openplanner.team/stops/X870acb"], ["https://tec.openplanner.team/stops/X839aeb", "https://tec.openplanner.team/stops/X839afb"], ["https://tec.openplanner.team/stops/N538apa", "https://tec.openplanner.team/stops/N538apb"], ["https://tec.openplanner.team/stops/Bbaualz1", "https://tec.openplanner.team/stops/Bbaualz2"], ["https://tec.openplanner.team/stops/N528aaa", "https://tec.openplanner.team/stops/N528aeb"], ["https://tec.openplanner.team/stops/Crapaep1", "https://tec.openplanner.team/stops/Crapaep2"], ["https://tec.openplanner.team/stops/X804afb", "https://tec.openplanner.team/stops/X804baa"], ["https://tec.openplanner.team/stops/X991acb", "https://tec.openplanner.team/stops/X991adb"], ["https://tec.openplanner.team/stops/N222acb", "https://tec.openplanner.team/stops/N222ada"], ["https://tec.openplanner.team/stops/H5pe146b", "https://tec.openplanner.team/stops/H5pe152a"], ["https://tec.openplanner.team/stops/Cobbusc2", "https://tec.openplanner.team/stops/Creoudo1"], ["https://tec.openplanner.team/stops/N425adb", "https://tec.openplanner.team/stops/N426ada"], ["https://tec.openplanner.team/stops/X882aha", "https://tec.openplanner.team/stops/X882ahb"], ["https://tec.openplanner.team/stops/LSdsa8a1", "https://tec.openplanner.team/stops/LSdsa8a2"], ["https://tec.openplanner.team/stops/LSGbail2", "https://tec.openplanner.team/stops/LSkathe1"], ["https://tec.openplanner.team/stops/N539aib", "https://tec.openplanner.team/stops/N539aqa"], ["https://tec.openplanner.team/stops/LMovich2", "https://tec.openplanner.team/stops/LSDgris2"], ["https://tec.openplanner.team/stops/Cnamonn2", "https://tec.openplanner.team/stops/Cnathib2"], ["https://tec.openplanner.team/stops/N563aaa", "https://tec.openplanner.team/stops/N563ana"], ["https://tec.openplanner.team/stops/LCSpoud1", "https://tec.openplanner.team/stops/LCSpoud4"], ["https://tec.openplanner.team/stops/H1te176a", "https://tec.openplanner.team/stops/H1te183a"]] \ No newline at end of file diff --git a/src/analytics/isochrones/demo.html b/src/analytics/isochrones/demo.html index e7b9c430..b51c9426 100644 --- a/src/analytics/isochrones/demo.html +++ b/src/analytics/isochrones/demo.html @@ -46,6 +46,10 @@
+

+

+ +

Latitude:

@@ -55,7 +59,7 @@

Time (s):
-

+

@@ -72,7 +76,7 @@ let generator; async function drawIsochrone(distance, color) { - const data = await generator.then((x) => x.getIsochrone(distance, true)); + const data = await generator.getIsochrone(distance, true); const isochrones = data.isochrones; @@ -99,7 +103,7 @@ } } - async function initialize(focus) { + function initialize(focus) { if (map) { map.off(); map.remove(); @@ -114,15 +118,14 @@ }).addTo(map); const point = { latitude: focus[0], longitude: focus[1] }; - const x = new Planner.IsochroneGenerator(); + const x = new Planner.IsochroneGenerator(point); x.on("TILE", (coord) => { const bounds = getTileBoundingBox(coord); L.rectangle(bounds, { color: 'blue', weight: 1, fillOpacity: 0 }).addTo(map); }) - await x.init(point) - return x + return x; } function newMap() { @@ -172,10 +175,14 @@ return [[top, left], [bottom, right]]; } - newMap() - drawIsochrone(1000000, "#fc4e2a").then(() => { + async function setProfile() { + const profileId = document.getElementById("profile").value; + generator.setProfileID(profileId); + } - }) + newMap(); + setProfile(); + addIsochrone(); diff --git a/src/analytics/isochrones/main.ts b/src/analytics/isochrones/main.ts index 520857f5..163ae2d2 100644 --- a/src/analytics/isochrones/main.ts +++ b/src/analytics/isochrones/main.ts @@ -6,16 +6,16 @@ import inBBox from "tiles-in-bbox"; import Context from "../../Context"; import { RoutableTileCoordinate } from "../../entities/tiles/coordinate"; import RoutableTileRegistry from "../../entities/tiles/registry"; +import ProfileProvider from "../../fetcher/profiles/ProfileProviderDefault"; import IRoutableTileProvider from "../../fetcher/tiles/IRoutableTileProvider"; import ILocation from "../../interfaces/ILocation"; import defaultContainer from "../../inversify.config"; import { IPathTree } from "../../pathfinding/pathfinder"; import PathfinderProvider from "../../pathfinding/PathfinderProvider"; -import ProfileProvider from "../../profile/ProfileProvider"; import TYPES from "../../types"; import Geo from "../../util/Geo"; import { toTileCoordinate } from "./util"; -import { visualizeIsochrone } from "./visualize"; +import { visualizeConcaveIsochrone, visualizeIsochrone } from "./visualize"; // @ts-ignore export default class IsochroneGenerator implements EventEmitter { @@ -28,7 +28,9 @@ export default class IsochroneGenerator implements EventEmitter { private registry: RoutableTileRegistry; private profileProvider: ProfileProvider; - constructor(container = defaultContainer) { + private loaded: Promise; + + constructor(point: ILocation, container = defaultContainer) { this.context = container.get(TYPES.Context); this.context.setContainer(container); this.tileProvider = container.get(TYPES.RoutableTileProvider); @@ -36,6 +38,9 @@ export default class IsochroneGenerator implements EventEmitter { this.registry = container.get(TYPES.RoutableTileRegistry); this.profileProvider = container.get(TYPES.ProfileProvider); this.reachedTiles = new Set(); + this.startPoint = point; + + this.setProfileID("http://hdelva.be/profile/car"); } public addListener(type: string | symbol, listener: Listener): this { @@ -86,12 +91,17 @@ export default class IsochroneGenerator implements EventEmitter { return this; } - public async init(point: ILocation) { - this.startPoint = point; - await this.fetchInitialTiles(point); + public async setProfileID(profileID: string) { + this.loaded = this.profileProvider.setActiveProfileID(profileID).then(() => { + return this.embedBeginPoint(this.startPoint); + }).then(() => { + return true; + }); } public async getIsochrone(maxDuration: number, reset = true) { + await this.loaded; + const pathfinder = this.pathfinderProvider.getShortestPathTreeAlgorithm(); // wait for all data to arrive @@ -105,7 +115,7 @@ export default class IsochroneGenerator implements EventEmitter { pathTree = await pathfinder.continue(maxDuration); } - return visualizeIsochrone(this.registry, pathTree, maxDuration); + return visualizeConcaveIsochrone(this.registry, pathTree, maxDuration); } private async fetchTile(coordinate: RoutableTileCoordinate) { @@ -137,7 +147,7 @@ export default class IsochroneGenerator implements EventEmitter { } } - private async fetchInitialTiles(from: ILocation) { + private async embedBeginPoint(from: ILocation) { const zoom = 14; const padding = 0.01; @@ -157,6 +167,6 @@ export default class IsochroneGenerator implements EventEmitter { // this won't download anything new // but we need the tile data to embed the starting location const fromTileset = await this.tileProvider.getMultipleByTileCoords(fromTileCoords); - this.pathfinderProvider.embedLocation(from, fromTileset); + await this.pathfinderProvider.embedLocation(from, fromTileset); } } diff --git a/src/analytics/isochrones/visualize.ts b/src/analytics/isochrones/visualize.ts index 20d7a49d..19917c09 100644 --- a/src/analytics/isochrones/visualize.ts +++ b/src/analytics/isochrones/visualize.ts @@ -1,3 +1,4 @@ +import concaveman = require("concaveman"); import { Delaunay } from "d3-delaunay"; import { RoutableTileNode } from "../../entities/tiles/node"; import RoutableTileRegistry from "../../entities/tiles/registry"; @@ -23,6 +24,30 @@ type Ring = ILocation[]; // The first being the outer ring, the others being holes. type Polygon = Ring[]; +export function visualizeConcaveIsochrone(registry: RoutableTileRegistry, pathTree: IPathTree, maxCost: number) { + const nodes: NodeList = []; + const costs = {}; + for (const [id, branch] of Object.entries(pathTree)) { + const { duration } = branch; + const node = registry.getNode(id); + if (node && duration !== Infinity) { + nodes.push(node); + costs[node.id] = duration; + } + } + + const internalNodes = nodes + .filter((node) => costs[node.id] < maxCost) + .map((n) => [n.longitude, n.latitude]); + + const shell = concaveman(internalNodes); + return { + isochrones: [[shell.map((point) => { + return { longitude: point[0], latitude: point[1] }; + })]], + }; +} + export function visualizeIsochrone(registry: RoutableTileRegistry, pathTree: IPathTree, maxCost: number) { /** * Isochrones are generated by applying a delaunay triangulisation to the road network nodes, @@ -54,6 +79,7 @@ export function visualizeIsochrone(registry: RoutableTileRegistry, pathTree: IPa const delaunay = createTriangulation(nodes); const internalNodes: NodeLabelList = nodes.map((node) => costs[node.id] < maxCost); const externalNodes: NodeLabelList = internalNodes.map((v) => !v); + const internalClusters = clusterNodes(nodes, internalNodes, delaunay); const externalClusters = clusterNodes(nodes, externalNodes, delaunay); diff --git a/src/entities/profile/DynamicProfile.ts b/src/entities/profile/DynamicProfile.ts new file mode 100644 index 00000000..4a90e8de --- /dev/null +++ b/src/entities/profile/DynamicProfile.ts @@ -0,0 +1,163 @@ +import Highway from "../../enums/Highway"; +import getOsmTagMapping from "../../enums/OSMTags"; +import { DistanceM, DurationMs } from "../../interfaces/units"; +import { PROFILE } from "../../uri/constants"; +import URI from "../../uri/uri"; +import Geo from "../../util/Geo"; +import { RoutableTileNode } from "../tiles/node"; +import { RoutableTileWay } from "../tiles/way"; +import Profile from "./Profile"; +import ProfileRule from "./ProfileRule"; + +export default class DynamicProfile extends Profile { + public static create(url: string): DynamicProfile { + return new DynamicProfile(url); + } + + public id: string; + public accessRules: ProfileRule[]; + public onewayRules: ProfileRule[]; + public speedRules: ProfileRule[]; + public priorityRules: ProfileRule[]; + public obstacleRules: ProfileRule[]; + + public maxSpeed: number; + public usePublicTransport: boolean; + + constructor(url: string) { + super(); + this.id = url; + } + + public getID(): string { + return this.id; + } + + public isOneWay(way: RoutableTileWay): boolean { + // todo, reversed order + for (const rule of this.onewayRules) { + if (rule.conclusion.isOneway !== undefined) { + // should always be the case, but just in case + if (rule.condition !== undefined) { + const field = getOsmTagMapping()[rule.condition.predicate]; + if (way[field] === rule.condition.object) { + return rule.conclusion.isOneway; + } + } else { + return rule.conclusion.isOneway; + } + } + } + } + + public hasAccess(way: RoutableTileWay): boolean { + for (const rule of this.accessRules) { + if (rule.conclusion.hasAccess !== undefined) { + // should always be the case, but just in case + if (rule.condition !== undefined) { + const field = getOsmTagMapping()[rule.condition.predicate]; + if (way[field] === rule.condition.object) { + return rule.conclusion.hasAccess; + } + } else { + return rule.conclusion.hasAccess; + } + } + } + } + + public getDefaultSpeed() { + return 5; + } + + public getMaxSpeed(): number { + return this.maxSpeed; + } + + public getSpeed(way: RoutableTileWay): number { + for (const rule of this.speedRules) { + if (rule.conclusion.speed !== undefined) { + // should always be the case, but just in case + if (rule.condition !== undefined) { + const field = getOsmTagMapping()[rule.condition.predicate]; + if (way[field] === rule.condition.object) { + if (typeof (rule.conclusion.speed) === "number") { + return rule.conclusion.speed; + } + /* + // fixme: speeds are currently strings + else { + const uri = URI.inNS(PROFILE, "fromProperty"); + const sourceField = getOsmTagMapping()[rule.conclusion.speed[uri]]; + if (way[sourceField]) { + return way[sourceField]; + } + } + */ + } else { + if (typeof (rule.conclusion.speed) === "number") { + return rule.conclusion.speed; + } + /* + // fixme: speeds are currently strings + else { + const uri = URI.inNS(PROFILE, "fromProperty"); + const sourceField = getOsmTagMapping()[rule.conclusion.speed[uri]]; + if (way[sourceField]) { + return way[sourceField]; + } + } + */ + } + } + } + } + } + + public getDistance(from: RoutableTileNode, to: RoutableTileNode, way: RoutableTileWay): DistanceM { + return Geo.getDistanceBetweenLocations(from, to); + } + + public getDuration(from: RoutableTileNode, to: RoutableTileNode, way: RoutableTileWay): DurationMs { + const distance = this.getDistance(from, to, way) / 1000; // km + const speed = this.getSpeed(way); + const time = distance / speed; // h + return time * 60 * 60 * 1000; // ms + } + + public getMultiplier(way: RoutableTileWay): number { + for (const rule of this.priorityRules) { + if (rule.conclusion.priority !== undefined) { + // should always be the case, but just in case + if (rule.condition !== undefined) { + const field = getOsmTagMapping()[rule.condition.predicate]; + if (way[field] === rule.condition.object) { + return 1 - (rule.conclusion.priority - 1); + } + } else { + return 1 - (rule.conclusion.priority - 1); + } + } + } + } + + public getCost(from: RoutableTileNode, to: RoutableTileNode, way: RoutableTileWay): number { + return this.getMultiplier(way) * this.getDuration(from, to, way); + } + + public isObstacle(node: RoutableTileNode): boolean { + for (const rule of this.accessRules) { + if (rule.conclusion.isObstacle !== undefined) { + // should always be the case, but just in case + if (rule.condition !== undefined) { + const field = getOsmTagMapping()[rule.condition.predicate]; + if (node[field] === rule.condition.object) { + return rule.conclusion.isObstacle; + } + } else { + return rule.conclusion.isObstacle; + } + } + } + } +} diff --git a/src/profile/PedestrianProfile.ts b/src/entities/profile/PedestrianProfile.ts similarity index 91% rename from src/profile/PedestrianProfile.ts rename to src/entities/profile/PedestrianProfile.ts index 2db35c5c..bc64dbcc 100644 --- a/src/profile/PedestrianProfile.ts +++ b/src/entities/profile/PedestrianProfile.ts @@ -1,8 +1,8 @@ -import { RoutableTileNode } from "../entities/tiles/node"; -import { RoutableTileWay } from "../entities/tiles/way"; -import Highway from "../enums/Highway"; -import { DistanceM, DurationMs } from "../interfaces/units"; -import Geo from "../util/Geo"; +import Highway from "../../enums/Highway"; +import { DistanceM, DurationMs } from "../../interfaces/units"; +import Geo from "../../util/Geo"; +import { RoutableTileNode } from "../tiles/node"; +import { RoutableTileWay } from "../tiles/way"; import Profile from "./Profile"; export default class PedestrianProfile extends Profile { diff --git a/src/profile/Profile.ts b/src/entities/profile/Profile.ts similarity index 77% rename from src/profile/Profile.ts rename to src/entities/profile/Profile.ts index c33e882c..557d85e6 100644 --- a/src/profile/Profile.ts +++ b/src/entities/profile/Profile.ts @@ -1,7 +1,7 @@ -import { RoutableTileNode } from "../entities/tiles/node"; -import { RoutableTileWay } from "../entities/tiles/way"; -import ILocation from "../interfaces/ILocation"; -import { DistanceM, DurationMs } from "../interfaces/units"; +import ILocation from "../../interfaces/ILocation"; +import { DistanceM, DurationMs } from "../../interfaces/units"; +import { RoutableTileNode } from "../tiles/node"; +import { RoutableTileWay } from "../tiles/way"; export default abstract class Profile { public abstract getID(): string; diff --git a/src/entities/profile/ProfileConclusion.ts b/src/entities/profile/ProfileConclusion.ts new file mode 100644 index 00000000..802e6dcf --- /dev/null +++ b/src/entities/profile/ProfileConclusion.ts @@ -0,0 +1,24 @@ +import { IEntity } from "../../loader/common"; +import ProfileValueReference from "./ProfileValueReference"; + +export default class ProfileConclusion implements IEntity { + public static create(id: string): ProfileConclusion { + return new ProfileConclusion(id); + } + + public id: string; + public hasAccess?: boolean; + public isOneway?: boolean; + public isReversed?: boolean; + public speed?: number | ProfileValueReference; + public isObstacle?: boolean; + public priority?: number; + + constructor(id: string) { + this.id = id; + } + + public getID(): string { + return this.id; + } +} diff --git a/src/entities/profile/ProfileCondition.ts b/src/entities/profile/ProfileCondition.ts new file mode 100644 index 00000000..05c04fea --- /dev/null +++ b/src/entities/profile/ProfileCondition.ts @@ -0,0 +1,19 @@ +import { IEntity } from "../../loader/common"; + +export default class ProfileCondition implements IEntity { + public static create(id: string): ProfileCondition { + return new ProfileCondition(id); + } + + public id: string; + public predicate: string; + public object: string; + + constructor(id: string) { + this.id = id; + } + + public getID(): string { + return this.id; + } +} diff --git a/src/entities/profile/ProfileRule.ts b/src/entities/profile/ProfileRule.ts new file mode 100644 index 00000000..1ef9be37 --- /dev/null +++ b/src/entities/profile/ProfileRule.ts @@ -0,0 +1,22 @@ +import { IEntity } from "../../loader/common"; +import ProfileConclusion from "./ProfileConclusion"; +import ProfileCondition from "./ProfileCondition"; + +export default class ProfileRule implements IEntity { + public static create(id: string): ProfileRule { + return new ProfileRule(id); + } + + public id: string; + public conclusion: ProfileConclusion; + public condition: ProfileCondition; + public order: number; + + constructor(id: string) { + this.id = id; + } + + public getID(): string { + return this.id; + } +} diff --git a/src/entities/profile/ProfileValueReference.ts b/src/entities/profile/ProfileValueReference.ts new file mode 100644 index 00000000..b2ed71c9 --- /dev/null +++ b/src/entities/profile/ProfileValueReference.ts @@ -0,0 +1,24 @@ +import { IEntity } from "../../loader/common"; +import { RoutableTileNode } from "../tiles/node"; +import { RoutableTileWay } from "../tiles/way"; + +export default class ProfileValueReference implements IEntity { + public static create(id: string): ProfileValueReference { + return new ProfileValueReference(id); + } + + public id: string; + public from: string; + + constructor(id: string) { + this.id = id; + } + + public getID(): string { + return this.id; + } + + public resolve(element: RoutableTileNode | RoutableTileWay) { + return element[this.from]; + } +} diff --git a/src/enums/OSMTags.ts b/src/enums/OSMTags.ts new file mode 100644 index 00000000..d9454e13 --- /dev/null +++ b/src/enums/OSMTags.ts @@ -0,0 +1,25 @@ +import { OSM } from "../uri/constants"; +import URI from "../uri/uri"; + +export default function getOsmTagMapping() { + const result = {}; + + result[URI.inNS(OSM, "access")] = "accessRestrictions"; + result[URI.inNS(OSM, "bicycle")] = "bicycleAccessRestrictions"; + result[URI.inNS(OSM, "construction")] = "constructionKind"; + result[URI.inNS(OSM, "crossing")] = "crossingKind"; + result[URI.inNS(OSM, "cycleway")] = "cyclewayKind"; + result[URI.inNS(OSM, "footway")] = "footwayKind"; + result[URI.inNS(OSM, "highway")] = "highwayKind"; + result[URI.inNS(OSM, "maxspeed")] = "maxSpeed"; + result[URI.inNS(OSM, "motor_vehicle")] = "motorVehicleAccessRestrictions"; + result[URI.inNS(OSM, "motorcar")] = "motorcarAccessRestrictions"; + result[URI.inNS(OSM, "oneway_bicycle")] = "onewayBicycleKind"; + result[URI.inNS(OSM, "oneway")] = "onewayKind"; + result[URI.inNS(OSM, "smoothness")] = "smoothnessKind"; + result[URI.inNS(OSM, "surface")] = "surfaceKind"; + result[URI.inNS(OSM, "tracktype")] = "trackType"; + result[URI.inNS(OSM, "vehicle")] = "vehicleAccessRestrictions"; + + return result; +} diff --git a/src/fetcher/profiles/IProfileFetcher.ts b/src/fetcher/profiles/IProfileFetcher.ts new file mode 100644 index 00000000..9639269f --- /dev/null +++ b/src/fetcher/profiles/IProfileFetcher.ts @@ -0,0 +1,5 @@ +import Profile from "../../entities/profile/Profile"; + +export default interface IProfileFetcher { + get(url: string): Promise; +} diff --git a/src/fetcher/profiles/IProfileProvider.ts b/src/fetcher/profiles/IProfileProvider.ts new file mode 100644 index 00000000..ac3f9189 --- /dev/null +++ b/src/fetcher/profiles/IProfileProvider.ts @@ -0,0 +1,12 @@ +import Profile from "../../entities/profile/Profile"; + +export default interface IProfileProvider { + setActiveProfile(profile: Profile): void; + setActiveProfileID(profileId: string): void; + + addProfile(profile: Profile): void; + + getActiveProfile(): Profile; + getProfile(profileId: string): Promise; + getProfiles(): Promise; +} diff --git a/src/fetcher/profiles/ProfileFetcherDefault.ts b/src/fetcher/profiles/ProfileFetcherDefault.ts new file mode 100644 index 00000000..7bea1da6 --- /dev/null +++ b/src/fetcher/profiles/ProfileFetcherDefault.ts @@ -0,0 +1,106 @@ +import { inject, injectable } from "inversify"; +import LDFetch from "ldfetch"; +import DynamicProfile from "../../entities/profile/DynamicProfile"; +import Profile from "../../entities/profile/Profile"; +import ProfileConclusion from "../../entities/profile/ProfileConclusion"; +import ProfileCondition from "../../entities/profile/ProfileCondition"; +import ProfileRule from "../../entities/profile/ProfileRule"; +import { LDLoader } from "../../loader/ldloader"; +import { ThingView } from "../../loader/views/single"; +import TYPES from "../../types"; +import { PROFILE } from "../../uri/constants"; +import URI from "../../uri/uri"; +import IProfileFetcher from "./IProfileFetcher"; + +@injectable() +export default class ProfileFetcherDefault implements IProfileFetcher { + + protected ldFetch: LDFetch; + protected ldLoader: LDLoader; + + constructor( + @inject(TYPES.LDFetch) ldFetch: LDFetch, + ) { + this.ldFetch = ldFetch; + this.ldLoader = new LDLoader(); + + // unordered collections + this.ldLoader.defineCollection(URI.inNS(PROFILE, "hasAccessRules")); + this.ldLoader.defineCollection(URI.inNS(PROFILE, "hasOnewayRules")); + this.ldLoader.defineCollection(URI.inNS(PROFILE, "hasSpeedRules")); + this.ldLoader.defineCollection(URI.inNS(PROFILE, "hasPriorityRules")); + this.ldLoader.defineCollection(URI.inNS(PROFILE, "hasObstacleRules")); + } + + public async get(url: string): Promise { + const rdfThing = await this.ldFetch.get(url); + const triples = rdfThing.triples; + + const [profile] = this.ldLoader.process(triples, [ + this.getView(), + ]); + + profile.id = url; + + return profile; + } + + protected getView() { + const view = new ThingView(DynamicProfile.create); + view.addFilter((entity) => + entity[URI.inNS(PROFILE, "hasAccessRules")] !== undefined || + entity[URI.inNS(PROFILE, "hasOnewayRules")] !== undefined || + entity[URI.inNS(PROFILE, "hasSpeedRules")] !== undefined || + entity[URI.inNS(PROFILE, "hasPriorityRules")] !== undefined || + entity[URI.inNS(PROFILE, "hasObstacleRules")] !== undefined, + ); + view.addMapping(URI.inNS(PROFILE, "hasAccessRules"), "accessRules", this.getRuleView()); + view.addMapping(URI.inNS(PROFILE, "hasOnewayRules"), "onewayRules", this.getRuleView()); + view.addMapping(URI.inNS(PROFILE, "hasSpeedRules"), "speedRules", this.getRuleView()); + view.addMapping(URI.inNS(PROFILE, "hasPriorityRules"), "priorityRules", this.getRuleView()); + view.addMapping(URI.inNS(PROFILE, "hasObstacleRules"), "obstacleRules", this.getRuleView()); + view.addMapping(URI.inNS(PROFILE, "hasMaxSpeed"), "maxSpeed"); + view.addMapping(URI.inNS(PROFILE, "usePublicTransport"), "usePublicTransport"); + return view; + } + + protected getRuleView() { + const view = new ThingView(ProfileRule.create); + view.addFilter((entity) => + entity[URI.inNS(PROFILE, "concludes")] !== undefined, + ); + view.addMapping(URI.inNS(PROFILE, "concludes"), "conclusion", this.getConclusionView()); + view.addMapping(URI.inNS(PROFILE, "match"), "condition", this.getConditionView()); + view.addMapping(URI.inNS(PROFILE, "hasOrder"), "order"); + return view; + } + + protected getConditionView() { + const view = new ThingView(ProfileCondition.create); + view.addFilter((entity) => + entity[URI.inNS(PROFILE, "hasPredicate")] !== undefined, + ); + view.addMapping(URI.inNS(PROFILE, "hasPredicate"), "predicate"); + view.addMapping(URI.inNS(PROFILE, "hasObject"), "object"); + return view; + } + + protected getConclusionView() { + const view = new ThingView(ProfileConclusion.create); + view.addFilter((entity) => + (entity[URI.inNS(PROFILE, "hasAccess")] !== undefined) || + (entity[URI.inNS(PROFILE, "isOneway")] !== undefined) || + (entity[URI.inNS(PROFILE, "isReversed")] !== undefined) || + (entity[URI.inNS(PROFILE, "hasSpeed")] !== undefined) || + (entity[URI.inNS(PROFILE, "isObstacle")] !== undefined) || + (entity[URI.inNS(PROFILE, "hasPriority")] !== undefined), + ); + view.addMapping(URI.inNS(PROFILE, "hasAccess"), "hasAccess"); + view.addMapping(URI.inNS(PROFILE, "isOneway"), "isOneway"); + view.addMapping(URI.inNS(PROFILE, "isReversed"), "isReversed"); + view.addMapping(URI.inNS(PROFILE, "hasSpeed"), "speed"); + view.addMapping(URI.inNS(PROFILE, "isObstacle"), "isObstacle"); + view.addMapping(URI.inNS(PROFILE, "hasPriority"), "priority"); + return view; + } +} diff --git a/src/fetcher/profiles/ProfileProviderDefault.ts b/src/fetcher/profiles/ProfileProviderDefault.ts new file mode 100644 index 00000000..9396d828 --- /dev/null +++ b/src/fetcher/profiles/ProfileProviderDefault.ts @@ -0,0 +1,65 @@ +import { inject, injectable } from "inversify"; +import PedestrianProfile from "../../entities/profile/PedestrianProfile"; +import Profile from "../../entities/profile/Profile"; +import TYPES from "../../types"; +import IProfileFetcher from "./IProfileFetcher"; +import IProfileProvider from "./IProfileProvider"; + +interface IProfileMap { + [label: string]: Promise; +} + +@injectable() +export default class ProfileProviderDefault implements IProfileProvider { + // todo, fetcher that loads a profile from a URI + // todo, profiles per location + // e.g. bicycle near a specific station + + private profiles: IProfileMap; + private activeProfile: Profile; + private fetcher: IProfileFetcher; + + constructor( + @inject(TYPES.ProfileFetcher) fetcher: IProfileFetcher, + ) { + this.profiles = {}; + this.activeProfile = undefined; + this.fetcher = fetcher; + + // some placeholders + const pedestrian = new PedestrianProfile(); + this.setActiveProfile(pedestrian); + } + + public setActiveProfile(profile: Profile) { + if (!this.profiles[profile.getID()]) { + this.addProfile(profile); + } + this.activeProfile = profile; + } + + public async setActiveProfileID(profileId: string) { + await this.getProfile(profileId).then((profile) => { + this.activeProfile = profile; + }); + } + + public getActiveProfile(): Profile { + return this.activeProfile; + } + + public addProfile(profile: Profile) { + this.profiles[profile.getID()] = Promise.resolve(profile); + } + + public getProfile(profileId: string): Promise { + if (this.profiles[profileId] === undefined) { + this.profiles[profileId] = this.fetcher.get(profileId); + } + return this.profiles[profileId]; + } + + public getProfiles(): Promise { + return Promise.all(Object.values(this.profiles)); + } +} diff --git a/src/fetcher/tiles/RoutableTileFetcherDefault.test.ts b/src/fetcher/tiles/RoutableTileFetcherDefault.test.ts index c0a769ef..0d18e466 100644 --- a/src/fetcher/tiles/RoutableTileFetcherDefault.test.ts +++ b/src/fetcher/tiles/RoutableTileFetcherDefault.test.ts @@ -2,13 +2,15 @@ import "jest"; import LDFetch from "ldfetch"; import RoutableTileRegistry from "../../entities/tiles/registry"; import PathfinderProvider from "../../pathfinding/PathfinderProvider"; -import ProfileProvider from "../../profile/ProfileProvider"; +import ProfileFetcherDefault from "../profiles/ProfileFetcherDefault"; +import ProfileProviderDefault from "../profiles/ProfileProviderDefault"; import RoutableTileFetcherDefault from "./RoutableTileFetcherDefault"; +const ldfetch = new LDFetch({ headers: { Accept: "application/ld+json" } }); const registry = new RoutableTileRegistry(); -const profileProvider = new ProfileProvider(); +const profileProvider = new ProfileProviderDefault(new ProfileFetcherDefault(ldfetch)); const fetcher = new RoutableTileFetcherDefault( - new LDFetch({ headers: { Accept: "application/ld+json" } }), + ldfetch, new PathfinderProvider(undefined, undefined, registry, profileProvider), registry); diff --git a/src/fetcher/tiles/RoutableTileFetcherDefault.ts b/src/fetcher/tiles/RoutableTileFetcherDefault.ts index f4b5aa71..7fc0d8da 100644 --- a/src/fetcher/tiles/RoutableTileFetcherDefault.ts +++ b/src/fetcher/tiles/RoutableTileFetcherDefault.ts @@ -4,6 +4,7 @@ import { IRoutableTileNodeIndex, RoutableTileNode } from "../../entities/tiles/n import RoutableTileRegistry from "../../entities/tiles/registry"; import { RoutableTile } from "../../entities/tiles/tile"; import { IRoutableTileWayIndex, RoutableTileWay } from "../../entities/tiles/way"; +import getOsmTagMapping from "../../enums/OSMTags"; import { LDLoader } from "../../loader/ldloader"; import { IndexThingView } from "../../loader/views"; import PathfinderProvider from "../../pathfinding/PathfinderProvider"; @@ -68,6 +69,11 @@ export default class RoutableTileFetcherDefault implements IRoutableTileFetcher ); nodesView.addMapping(URI.inNS(GEO, "lat"), "latitude"); nodesView.addMapping(URI.inNS(GEO, "long"), "longitude"); + + for (const [tag, field] of Object.entries(getOsmTagMapping())) { + nodesView.addMapping(tag, field); + } + return nodesView; } @@ -76,24 +82,14 @@ export default class RoutableTileFetcherDefault implements IRoutableTileFetcher waysView.addFilter((entity) => entity[URI.inNS(RDF, "type")] === URI.inNS(OSM, "Way"), ); + waysView.addMapping(URI.inNS(OSM, "hasNodes"), "segments"); waysView.addMapping(URI.inNS(OSM, "name"), "name"); - waysView.addMapping(URI.inNS(OSM, "access"), "accessRestrictions"); - waysView.addMapping(URI.inNS(OSM, "bicycle"), "bicycleAccessRestrictions"); - waysView.addMapping(URI.inNS(OSM, "construction"), "constructionKind"); - waysView.addMapping(URI.inNS(OSM, "crossing"), "crossingKind"); - waysView.addMapping(URI.inNS(OSM, "cycleway"), "cyclewayKind"); - waysView.addMapping(URI.inNS(OSM, "footway"), "footwayKind"); - waysView.addMapping(URI.inNS(OSM, "highway"), "highwayKind"); - waysView.addMapping(URI.inNS(OSM, "maxspeed"), "maxSpeed"); - waysView.addMapping(URI.inNS(OSM, "motor_vehicle"), "motorVehicleAccessRestrictions"); - waysView.addMapping(URI.inNS(OSM, "motorcar"), "motorcarAccessRestrictions"); - waysView.addMapping(URI.inNS(OSM, "oneway_bicycle"), "onewayBicycleKind"); - waysView.addMapping(URI.inNS(OSM, "oneway"), "onewayKind"); - waysView.addMapping(URI.inNS(OSM, "smoothness"), "smoothnessKind"); - waysView.addMapping(URI.inNS(OSM, "surface"), "surfaceKind"); - waysView.addMapping(URI.inNS(OSM, "tracktype"), "trackType"); - waysView.addMapping(URI.inNS(OSM, "vehicle"), "vehicleAccessRestrictions"); + + for (const [tag, field] of Object.entries(getOsmTagMapping())) { + waysView.addMapping(tag, field); + } + return waysView; } } diff --git a/src/index.ts b/src/index.ts index 15225cbb..1c164857 100644 --- a/src/index.ts +++ b/src/index.ts @@ -3,6 +3,19 @@ import "reflect-metadata"; import IsochroneGenerator from "./analytics/isochrones/main"; import Planner from "./Planner"; +/* +import defaultContainer from "./inversify.config"; +import Context from "./Context"; +import TYPES from "./types"; +import IProfileFetcher from "./fetcher/profiles/IProfileFetcher"; + +const x = new IsochroneGenerator(); +x.init({latitude: 51.0262973, longitude: 3.7110885}).then(async () => { + const i = await x.getIsochrone(10000); + let y = 9; +}) +*/ + export default { Planner, IsochroneGenerator, diff --git a/src/inversify.config.ts b/src/inversify.config.ts index 9505c062..00c46172 100644 --- a/src/inversify.config.ts +++ b/src/inversify.config.ts @@ -16,6 +16,10 @@ import ConnectionsProviderPrefetch from "./fetcher/connections/prefetch/Connecti import FootpathsProviderDefault from "./fetcher/footpaths/FootpathsProviderDefault"; import IFootpathsFetcher from "./fetcher/footpaths/IFootpathsProvider"; import LDFetch from "./fetcher/LDFetch"; +import IProfileFetcher from "./fetcher/profiles/IProfileFetcher"; +import IProfileProvider from "./fetcher/profiles/IProfileProvider"; +import ProfileFetcherDefault from "./fetcher/profiles/ProfileFetcherDefault"; +import ProfileProviderDefault from "./fetcher/profiles/ProfileProviderDefault"; import IStopsFetcher from "./fetcher/stops/IStopsFetcher"; import IStopsProvider from "./fetcher/stops/IStopsProvider"; import StopsFetcherLDFetch from "./fetcher/stops/ld-fetch/StopsFetcherLDFetch"; @@ -45,7 +49,6 @@ import ReachableStopsFinderFootpaths from "./planner/stops/ReachableStopsFinderF import ReachableStopsFinderOnlySelf from "./planner/stops/ReachableStopsFinderOnlySelf"; import ReachableStopsFinderRoadPlanner from "./planner/stops/ReachableStopsFinderRoadPlanner"; import ReachableStopsFinderRoadPlannerCached from "./planner/stops/ReachableStopsFinderRoadPlannerCached"; -import ProfileProvider from "./profile/ProfileProvider"; import QueryRunnerExponential from "./query-runner/exponential/QueryRunnerExponential"; import ILocationResolver from "./query-runner/ILocationResolver"; import IQueryRunner from "./query-runner/IQueryRunner"; @@ -68,7 +71,8 @@ container.bind(TYPES.RoadPlanner) container.bind(TYPES.ShortestPathTreeAlgorithm).to(DijkstraTree).inSingletonScope(); container.bind(TYPES.ShortestPathAlgorithm).to(Dijkstra).inSingletonScope(); container.bind(TYPES.PathfinderProvider).to(PathfinderProvider).inSingletonScope(); -container.bind(TYPES.ProfileProvider).to(ProfileProvider).inSingletonScope(); +container.bind(TYPES.ProfileFetcher).to(ProfileFetcherDefault).inSingletonScope(); +container.bind(TYPES.ProfileProvider).to(ProfileProviderDefault).inSingletonScope(); container.bind(TYPES.JourneyExtractor) .to(JourneyExtractorProfile); diff --git a/src/isochrone.demo.ts b/src/isochrone.demo.ts index 4299b18a..dbf89146 100644 --- a/src/isochrone.demo.ts +++ b/src/isochrone.demo.ts @@ -1,7 +1,6 @@ import Planner from "."; -const point = { latitude: 51.0262973, longitude: 3.7110885 }; -const x = new Planner.IsochroneGenerator(); -x.init(point).then(async () => { - await x.getIsochrone(2500, true); +const x = new Planner.IsochroneGenerator({ latitude: 51.0262973, longitude: 3.7110885 }); +x.getIsochrone(2500, true).then((y) => { + console.log(y); }); diff --git a/src/pathfinding/PathfinderProvider.ts b/src/pathfinding/PathfinderProvider.ts index 77ad43a6..67d409be 100644 --- a/src/pathfinding/PathfinderProvider.ts +++ b/src/pathfinding/PathfinderProvider.ts @@ -1,11 +1,11 @@ import { inject, injectable } from "inversify"; +import Profile from "../entities/profile/Profile"; import { IRoutableTileNodeIndex, RoutableTileNode } from "../entities/tiles/node"; import RoutableTileRegistry from "../entities/tiles/registry"; import { RoutableTile } from "../entities/tiles/tile"; import { IRoutableTileWayIndex, RoutableTileWay } from "../entities/tiles/way"; +import ProfileProvider from "../fetcher/profiles/ProfileProviderDefault"; import ILocation from "../interfaces/ILocation"; -import Profile from "../profile/Profile"; -import ProfileProvider from "../profile/ProfileProvider"; import TYPES from "../types"; import Geo from "../util/Geo"; import PathfindingGraph from "./graph"; @@ -59,10 +59,10 @@ export default class PathfinderProvider { return this.shortestPathTree; } - public registerEdges(ways: IRoutableTileWayIndex, nodes: IRoutableTileNodeIndex): void { + public async registerEdges(ways: IRoutableTileWayIndex, nodes: IRoutableTileNodeIndex): Promise { // add new edges to existing graphs for (const profileId of Object.keys(this.graphs)) { - const profile = this.profileProvider.getProfile(profileId); + const profile = await this.profileProvider.getProfile(profileId); for (const way of Object.values(ways)) { if (!profile.hasAccess(way)) { @@ -86,8 +86,8 @@ export default class PathfinderProvider { } } - public embedLocation(p: ILocation, tileset: RoutableTile, invert = false) { - for (const profile of this.profileProvider.getProfiles()) { + public async embedLocation(p: ILocation, tileset: RoutableTile, invert = false) { + for (const profile of await this.profileProvider.getProfiles()) { let bestDistance = Infinity; let bestEmbedding: IPointEmbedding; diff --git a/src/planner/road/RoadPlannerPathfinding.ts b/src/planner/road/RoadPlannerPathfinding.ts index a5793acd..52b55dc8 100644 --- a/src/planner/road/RoadPlannerPathfinding.ts +++ b/src/planner/road/RoadPlannerPathfinding.ts @@ -97,8 +97,10 @@ export default class RoadPlannerPathfinding implements IRoadPlanner { this.tileProvider.getMultipleByTileCoords(toTileCoords), this.tileProvider.getMultipleByTileCoords(betweenTileCoords)]); - this.pathfinderProvider.embedLocation(from, fromTileset); - this.pathfinderProvider.embedLocation(to, toTileset, true); + await Promise.all([ + this.pathfinderProvider.embedLocation(from, fromTileset), + this.pathfinderProvider.embedLocation(to, toTileset, true), + ]); return this._innerPath(from, to); } diff --git a/src/profile/ProfileProvider.ts b/src/profile/ProfileProvider.ts deleted file mode 100644 index 0e521432..00000000 --- a/src/profile/ProfileProvider.ts +++ /dev/null @@ -1,57 +0,0 @@ -import { injectable } from "inversify"; -import TravelMode from "../enums/TravelMode"; -import Profile from "../profile/Profile"; -import PedestrianProfile from "./PedestrianProfile"; - -interface IProfileMap { - [label: string]: Profile; -} - -@injectable() -export default class ProfileProvider { - // todo, fetcher that loads a profile from a URI - // todo, profiles per location - // e.g. bicycle near a specific station - - private travelModeProfiles: Map; - private profiles: IProfileMap; - private activeProfile: Profile; - - constructor() { - this.profiles = {}; - this.travelModeProfiles = new Map(); - this.activeProfile = undefined; - - // some placeholders - const pedestrian = new PedestrianProfile(); - this.travelModeProfiles.set(TravelMode.Walking, pedestrian); - this.setActiveProfile(pedestrian); - } - - public setActiveProfile(profile: Profile) { - if (!this.profiles[profile.getID()]) { - this.addProfile(profile); - } - this.activeProfile = profile; - } - - public setActiveProfileID(profileId: string) { - this.activeProfile = this.profiles[profileId]; - } - - public getActiveProfile(): Profile { - return this.activeProfile; - } - - public addProfile(profile: Profile) { - this.profiles[profile.getID()] = profile; - } - - public getProfile(profileId: string): Profile { - return this.profiles[profileId]; - } - - public getProfiles(): Profile[] { - return Object.values(this.profiles); - } -} diff --git a/src/types.ts b/src/types.ts index 3ff3e2f0..71159f92 100644 --- a/src/types.ts +++ b/src/types.ts @@ -25,6 +25,7 @@ const TYPES = { PublicTransportPlanner: Symbol("PublicTransportPlanner"), PublicTransportPlannerFactory: Symbol("PublicTransportPlannerFactory"), + ProfileFetcher: Symbol("ProfileFetcher"), ProfileProvider: Symbol("ProfileProvider"), RoadPlanner: Symbol("RoadPlanner"), RoadPlannerFactory: Symbol("RoadPlannerFactory"), diff --git a/src/uri/constants.ts b/src/uri/constants.ts index 31fb11cb..4984889e 100644 --- a/src/uri/constants.ts +++ b/src/uri/constants.ts @@ -6,3 +6,4 @@ export const RDF = "http://www.w3.org/1999/02/22-rdf-syntax-ns"; export const RDFS = "http://www.w3.org/2000/01/rdf-schema"; export const ROUTE = "https://w3id.org/routabletiles/terms#"; export const PLANNER = "https://planner.js.org/terms#"; +export const PROFILE = "https://w3id.org/openplannerteam/profile#"; From 9b637f3422d84250951650332156a67b05b441af Mon Sep 17 00:00:00 2001 From: Harm Delva Date: Wed, 10 Jul 2019 14:47:03 +0200 Subject: [PATCH 05/85] Remove unnecesary data --- package-lock.json | 90 ++++++++++++++++++++++++++++++ src/analytics/isochrones/demo.html | 3 +- 2 files changed, 92 insertions(+), 1 deletion(-) diff --git a/package-lock.json b/package-lock.json index 27822215..4973f320 100644 --- a/package-lock.json +++ b/package-lock.json @@ -50,6 +50,11 @@ } } }, + "@types/concaveman": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@types/concaveman/-/concaveman-1.1.3.tgz", + "integrity": "sha512-G6crIs1efR4OV/Nshgh2w7H0GSsUomloz9Hq0iFysLXsIRX5fHbYGLncIo/RyCljgcpBOqsQdS5e+qJ+ZBVNSg==" + }, "@types/events": { "version": "1.2.0", "resolved": "http://registry.npmjs.org/@types/events/-/events-1.2.0.tgz", @@ -1826,6 +1831,25 @@ "typedarray": "^0.0.6" } }, + "concaveman": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/concaveman/-/concaveman-1.1.1.tgz", + "integrity": "sha1-bCSCWAslI874L8K+wAoEFebmgWI=", + "requires": { + "monotone-convex-hull-2d": "^1.0.1", + "point-in-polygon": "^1.0.1", + "rbush": "^2.0.1", + "robust-orientation": "^1.1.3", + "tinyqueue": "^1.1.0" + }, + "dependencies": { + "tinyqueue": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/tinyqueue/-/tinyqueue-1.2.3.tgz", + "integrity": "sha512-Qz9RgWuO9l8lT+Y9xvbzhPT2efIUIFd69N7eF7tJ9lnQl0iLj1M7peK7IoUGZL9DJHw9XftqLreccfxcQgYLxA==" + } + } + }, "console-browserify": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz", @@ -4862,6 +4886,14 @@ "minimist": "0.0.8" } }, + "monotone-convex-hull-2d": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/monotone-convex-hull-2d/-/monotone-convex-hull-2d-1.0.1.tgz", + "integrity": "sha1-R/Xa6t88Sv03dkuqGqh4ekDu4Iw=", + "requires": { + "robust-orientation": "^1.1.3" + } + }, "move-concurrently": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", @@ -5434,6 +5466,11 @@ "resolved": "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz", "integrity": "sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==" }, + "point-in-polygon": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/point-in-polygon/-/point-in-polygon-1.0.1.tgz", + "integrity": "sha1-1Ztk6P7kHElFiqyCtWcYxZV7Kvc=" + }, "posix-character-classes": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", @@ -5625,6 +5662,11 @@ "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", "dev": true }, + "quickselect": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/quickselect/-/quickselect-1.1.1.tgz", + "integrity": "sha512-qN0Gqdw4c4KGPsBOQafj6yj/PA6c/L63f6CaZ/DCF/xF4Esu3jVmKLUDYxghFx8Kb/O7y9tI7x2RjTSXwdK1iQ==" + }, "randomatic": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.0.tgz", @@ -5669,6 +5711,14 @@ "safe-buffer": "^5.1.0" } }, + "rbush": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/rbush/-/rbush-2.0.2.tgz", + "integrity": "sha512-XBOuALcTm+O/H8G90b6pzu6nX6v2zCKiFG4BJho8a+bY6AER6t8uQUZdi5bomQc0AprCWhEGa7ncAbbRap0bRA==", + "requires": { + "quickselect": "^1.0.1" + } + }, "rdf-canonize": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/rdf-canonize/-/rdf-canonize-1.0.1.tgz", @@ -6248,6 +6298,36 @@ "inherits": "^2.0.1" } }, + "robust-orientation": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/robust-orientation/-/robust-orientation-1.1.3.tgz", + "integrity": "sha1-2v9bANO+TmByLw6cAVbvln8cIEk=", + "requires": { + "robust-scale": "^1.0.2", + "robust-subtract": "^1.0.0", + "robust-sum": "^1.0.0", + "two-product": "^1.0.2" + } + }, + "robust-scale": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/robust-scale/-/robust-scale-1.0.2.tgz", + "integrity": "sha1-d1Ey7QlULQKOWLLMecBikLz3jDI=", + "requires": { + "two-product": "^1.0.2", + "two-sum": "^1.0.0" + } + }, + "robust-subtract": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/robust-subtract/-/robust-subtract-1.0.0.tgz", + "integrity": "sha1-4LFk4e2LpOOl3aRaEgODSNvtPpo=" + }, + "robust-sum": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/robust-sum/-/robust-sum-1.0.0.tgz", + "integrity": "sha1-FmRuUlKStNJdgnV6KGlV4Lv6U9k=" + }, "rsvp": { "version": "3.6.2", "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-3.6.2.tgz", @@ -7689,6 +7769,16 @@ "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" }, + "two-product": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/two-product/-/two-product-1.0.2.tgz", + "integrity": "sha1-Z9ldSyV6kh4stL16+VEfkIhSLqo=" + }, + "two-sum": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/two-sum/-/two-sum-1.0.0.tgz", + "integrity": "sha1-MdPzIjnk9zHsqd+RVeKyl/AIq2Q=" + }, "type-check": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", diff --git a/src/analytics/isochrones/demo.html b/src/analytics/isochrones/demo.html index b51c9426..c0cc0be5 100644 --- a/src/analytics/isochrones/demo.html +++ b/src/analytics/isochrones/demo.html @@ -79,7 +79,6 @@ const data = await generator.getIsochrone(distance, true); const isochrones = data.isochrones; - for (const isochrone of isochrones) { const polygonData = []; @@ -90,6 +89,8 @@ polygonData.push(ring.map((p) => [p.latitude, p.longitude])); } + console.log(polygonData); + if (polygonData.length > 0) { var firstpolyline = new L.polygon(polygonData, { smoothFactor: 2, weight: 1, color: color }); firstpolyline.addTo(map); From fdca29ea24c2ceb4f12c8dd594989f827b50038c Mon Sep 17 00:00:00 2001 From: Harm Delva Date: Wed, 10 Jul 2019 14:51:11 +0200 Subject: [PATCH 06/85] For real this time --- .../analyze_approximations-checkpoint.ipynb | 583 ------------------ src/analytics/footpaths/combined_pairs.json | 1 - src/analytics/footpaths/delijn_pairs.json | 1 - src/analytics/footpaths/mivb_pairs.json | 1 - src/analytics/footpaths/nmbs_pairs.json | 1 - src/analytics/footpaths/tec_pairs.json | 1 - 6 files changed, 588 deletions(-) delete mode 100644 src/analytics/footpaths/.ipynb_checkpoints/analyze_approximations-checkpoint.ipynb delete mode 100644 src/analytics/footpaths/combined_pairs.json delete mode 100644 src/analytics/footpaths/delijn_pairs.json delete mode 100644 src/analytics/footpaths/mivb_pairs.json delete mode 100644 src/analytics/footpaths/nmbs_pairs.json delete mode 100644 src/analytics/footpaths/tec_pairs.json diff --git a/src/analytics/footpaths/.ipynb_checkpoints/analyze_approximations-checkpoint.ipynb b/src/analytics/footpaths/.ipynb_checkpoints/analyze_approximations-checkpoint.ipynb deleted file mode 100644 index 770665f5..00000000 --- a/src/analytics/footpaths/.ipynb_checkpoints/analyze_approximations-checkpoint.ipynb +++ /dev/null @@ -1,583 +0,0 @@ -{ - "cells": [ - { - "cell_type": "raw", - "metadata": {}, - "source": [ - "Tested with Python 3.7\n", - "Dependencies:\n", - " haversine 2.0.2\n", - " matplotlib 3.0.3\n", - " numpy 1.16.2\n", - " pandas 0.24.2\n", - " seaborn 0.9.0\n", - " tqdm 4.31.1" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [], - "source": [ - "import json" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [], - "source": [ - "pairs = []" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [], - "source": [ - "# assumes you've written the pairs to files first\n", - "# alternatively, you can create your own triangulation using scipy and these URIs:\n", - "# https://irail.be/stations/NMBS\n", - "# https://openplanner.ilabt.imec.be/delijn/Antwerpen/stops\n", - "# https://openplanner.ilabt.imec.be/delijn/Limburg/stops\n", - "# https://openplanner.ilabt.imec.be/delijn/Oost-Vlaanderen/stops\n", - "# https://openplanner.ilabt.imec.be/delijn/Vlaams-Brabant/stops\n", - "# https://openplanner.ilabt.imec.be/delijn/West-Vlaanderen/stops\n", - "# https://openplanner.ilabt.imec.be/mivb/stops\n", - "# https://openplanner.ilabt.imec.be/tec/stops\n", - "\n", - "with open('combined_pairs.json') as f:\n", - " combined_pairs = json.load(f)\n", - "\n", - "with open('delijn_pairs.json') as f:\n", - " delijn_pairs = json.load(f)\n", - "\n", - "with open('nmbs_pairs.json') as f:\n", - " nmbs_pairs = json.load(f)\n", - " \n", - "with open('mivb_pairs.json') as f:\n", - " mivb_pairs = json.load(f)\n", - " \n", - "with open('tec_pairs.json') as f:\n", - " tec_pairs = json.load(f)" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [], - "source": [ - "def toId(uri):\n", - " id = uri.split(\"//\")[1];\n", - " id = id.replace(\".\", \"_\");\n", - " return id.replace(\"/\", \"_\");" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [], - "source": [ - "def to_file_name(t, f):\n", - " dir_name = \"distances/{}/\".format(toId(f))\n", - " return \"{}{}.json\".format(dir_name, toId(t)) " - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [], - "source": [ - "def load_distances(pairs):\n", - " distances = []\n", - " for f, t in pairs:\n", - " try:\n", - " with open(to_file_name(f, t)) as file:\n", - " distance = int(file.read())\n", - " distances.append((f, t, distance))\n", - " except:\n", - " pass\n", - " \n", - " try:\n", - " with open(to_file_name(t, f)) as file:\n", - " distance = int(file.read())\n", - " distances.append((t, f, distance))\n", - " except:\n", - " pass\n", - " return distances" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [], - "source": [ - "nmbs_distances = load_distances(nmbs_pairs)" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [], - "source": [ - "tec_distances = load_distances(tec_pairs)" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [], - "source": [ - "delijn_distances = load_distances(delijn_pairs)" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [], - "source": [ - "mivb_distances = load_distances(mivb_pairs)" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [], - "source": [ - "combined_distances = load_distances(combined_pairs)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": 12, - "metadata": {}, - "outputs": [], - "source": [ - "from collections import defaultdict\n", - "from heapq import *\n", - "\n", - "def dijkstra(edges, f, t):\n", - " g = defaultdict(list)\n", - " for l,r,c in edges:\n", - " g[l].append((c,r))\n", - "\n", - " q, seen, mins = [(0,f)], set(), {f: 0}\n", - " while q:\n", - " (cost,v1) = heappop(q)\n", - " if v1 not in seen:\n", - " seen.add(v1)\n", - " if v1 == t: \n", - " return cost\n", - "\n", - " for c, v2 in g.get(v1, ()):\n", - " if v2 in seen: \n", - " continue\n", - " prev = mins.get(v2, None)\n", - " next = cost + c\n", - " if prev is None or next < prev:\n", - " mins[v2] = next\n", - " heappush(q, (next, v2))\n", - " return float(\"inf\")" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "metadata": {}, - "outputs": [], - "source": [ - "from haversine import haversine\n", - "import requests\n", - "\n", - "def load_stations():\n", - " result = {}\n", - " stations = json.loads(requests.get(\"https://irail.be/stations/NMBS\").content)[\"@graph\"]\n", - " for station in stations:\n", - " result[station[\"@id\"]] = float(station['http://www.w3.org/2003/01/geo/wgs84_pos#lat']), \\\n", - " float(station['http://www.w3.org/2003/01/geo/wgs84_pos#long'])\n", - " return result\n", - "\n", - "stations = load_stations()" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "100%|██████████| 3494/3494 [09:50<00:00, 5.92it/s]\n" - ] - } - ], - "source": [ - "from tqdm import tqdm\n", - "\n", - "triangle_errors = []\n", - "haversine_errors = []\n", - "\n", - "edges = delijn_distances + mivb_distances + tec_distances + combined_distances\n", - "for f, t, actual in tqdm(nmbs_distances):\n", - " if f < t:\n", - " approximated = dijkstra(edges, f, t)\n", - " if approximated != float(\"inf\"):\n", - " triangle_errors.append((actual, approximated))\n", - " \n", - " approximated = haversine(stations[f], stations[t], 'm')\n", - " haversine_errors.append((actual, approximated))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "\n", - " " - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "metadata": {}, - "outputs": [], - "source": [ - "%matplotlib inline\n", - "\n", - "import matplotlib\n", - "import numpy as np\n", - "import matplotlib.pyplot as plt\n", - "\n", - "import seaborn as sns\n", - "import pandas as pd" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": 16, - "metadata": {}, - "outputs": [], - "source": [ - "actual_distance_bins = []\n", - "actual_distances = []\n", - "triangle_approximations = []\n", - "haversine_approximations = []\n", - "\n", - "for h_error, t_error in zip(haversine_errors, triangle_errors):\n", - " actual, h_predicted = h_error\n", - " _, t_predicted = t_error\n", - " \n", - " h_relative_error = ((h_predicted / actual) - 1) * 100\n", - " t_relative_error = ((t_predicted / actual) - 1) * 100\n", - " if t_relative_error < 225:\n", - " actual_distance_bins.append((actual + 500) // 1000)\n", - " actual_distances.append(actual / 1000)\n", - " triangle_approximations.append(t_relative_error)\n", - " haversine_approximations.append(h_relative_error)" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "metadata": {}, - "outputs": [], - "source": [ - "combined_approximations = [(x + y) / 2 for x, y in zip(triangle_approximations, haversine_approximations)]" - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAagAAAEYCAYAAAAJeGK1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJzt3Xl8nWWZ+P/PlX1rmu5LmqZ70oLQYgU6QmXpVyWs+rVURqAonY7++CIKzlAVHMdB7ai4zcz3qxlQUQcsIlCWIjAI0o6yFAqUkqQJJemSpk2XpNmXk+v3x7NwTnpOzslykpPmer9eeSXneZ7znPs8SZ7r3Pd93fctqooxxhiTaJJGugDGGGNMOBagjDHGJCQLUMYYYxKSBShjjDEJyQKUMcaYhGQByhhjTEKyAGWGnIj8TETuHOlynMpEZLaINItI8jC93lMisnY4XssYj9g4KNMfIlINTAO6gQDwDvBroFRVewZwrnWq+t9DXEwzCCLyTWCBql470mUxY5vVoMxAXK6q44BCYCNwO3DvyBZp9BGRlJEuw2gS7nr19xraNR9dLECZAVPVRlV9DFgDrBWR0wFE5Fcicpf782QReUJEGkTkmIhsFZEkEfkNMBt43G2q+kf3+N+LSJ2INIrIiyJymvd67nn/Q0SeFJEmEXlZROYH7T9NRJ51X+eQiHzN3Z4kIhtE5F0ROSoiD4rIxHDvSUQmuOWtF5Hj7s+zgva/ICLfFZFX3DJu9s4lInNEREVkvYjUishBEbkt6LnfFJGHROS3InICuEFE0kXkx+7xte7P6e7xt4vIS95NVUS+ICK7RCQj6LVSgsp1l4j8xb2ej4vIJBH5LxE5ISKvisicoLL8RET2ufteE5Hz3e0fB74GrHHP82bQ+dcFXc87RKRGRA6LyK9FZHyva7BWRPaKyBER+XqkvyH3/f/APfaQ2zyc6e67QET2u9ehDvhluG3usX8nIlXu7/4xEZkZ9BoqIjeJSCVQGaksJvFYgDKDpqqvAPuB88Psvs3dNwWnafBrzlP0OmAvTm0sR1W/5x7/FLAQmAq8DvxXr/NdA/wzMAGoAr4NICLjgP8G/gjMBBYAz7nP+SJwFfARd99x4D8ivJ0knJteIU4AbQP+vdcx1wOfc8/VDfy01/4L3ffwUWCDiKwK2ncl8BCQ5763rwPnAkuBM4GzgTvcY78PdAJ3iMhC4DvAtaraHqHsnwauA/KB+cBf3fcyESgD/ino2Ffd15wI3A/8XkQyVPWP7utscn8vZ4Z5nRvcrwuBeUBOmGt0HlAEXAx8Q0QWRyjzvwKL3LIscMv+jaD9090yFgLrw20TkYuA7wJXAzOAGuB3vV7nKuAcYEmEcphEpKr2ZV8xfwHVwKow218Cvu7+/CvgLvfnbwGbcfo0YjpX0P48QIHxQee9J2h/CVDu/nwNsCPCecqAi4MezwC6gJQY3u9S4HjQ4xeAjUGPl+AEkWRgjlve4qD93wPudX/+JvBir/O/C5QEPf4YUB30eA5wzH0PX+21Xb334Jbr60H77waeCnp8OfBGH+/zOHBmUDl/22v/Czj9heAE/v8vaF+Rdz2DyjUraP8rwKfDvKYALcD8oG0rgPfcny9wr21G0P5w2+4Fvhf0OMctzxz3sQIXjfT/jn31/8tqUGao5OPcSHv7Pk5N5xkR2SMiGyKdQESSRWSj2xR3AieAAUwOOqwu6OdWnJsRQAHOzT6cQuARcZoZG3Bu9gGcGl3vMmSJyM/d5qsTwItAnoRmy+0L+rkGSO1Vxt77Z0bYh7uvJtLxqloNPI9z449U6/McCvq5Lcxj71ohIreJSJnbTNkAjO/1HvoSrswphF7PSL+nYFOALOC1oN/NH93tnno9ucbYe1tIeVS1GTiK8zfp6X3dzShgAcoMmoh8COdmsK33PlVtUtXbVHUezqf4W0XkYm93r8P/FqcJbBXODXOO9xIxFGMfTrNWpH2XqGpe0FeGqh4Ic+xtODWCc1Q1F1gZpgwFQT/Pxvm0fqSP/bVBj3u/51qcABr2eBEpwalVPIcT7AfN7W+6HadJbIKq5gGNvP8eo6X2hitzN6EBMRZHcALnaUG/l/GqGhzMwpWlz2soItnAJOBAH88xo4AFKDNgIpIrIpfhtPf/VlV3hjnmMhFZICICnMCpuQTc3Ydw+jA844AOnE+/WTh9IbF6ApguIl9yO97Hicg57r6fAd8WkUK3TFNE5MoI5xmHc9NscJMf/inMMdeKyBIRycJpwnxIVQNB++90a2KnAZ8FNvVR7gdw+pimiMhknP6X37rlnIzTfLUOWAtc7gaswRqHE1DqgRQR+QaQG7T/EDBHRCLdHx4Aviwic0Ukh/f7rLr7Uwh1hiX8J/AjEZkKICL5IvKx/r0d7gc+KyJL3QST7wAvu7VPM4pZgDID8biINOHUTL4O/BDnRhzOQpzkhWacTvv/q6ovuPu+i3NzbhCRr+CMp6rB+eT7Dk6/VkxUtQn4Xzi1tDqcbK0L3d0/AR7DaWZscs97TrjzAD8GMnE+3b+E0+TU229w+sPqgAycJIxgf8Zp1nwO+IGqPtNH0e8CtgNvATtxEkPucveVAptVdYuqHgVuBO4RkUl9nC8WT+Mko+zGud7thDaB/d79flREXg/z/F/gXIMXgffc5988wLLcjnOtXnKbVP8bpwYbM1V9DrgT+ANwEKcm/ekBlsckEBuoa0w/iMgLOLXFe8Lsm4Nzw07tb23CGHMyq0EZY4xJSBagjDHGJCRr4jPGGJOQrAZljDEmIY2KiRMnT56sc+bMGeliGGOMGQKvvfbaEVWdEu24URGg5syZw/bt20e6GMYYY4aAiNREP8qa+IwxxiQoC1DGGGMSkgUoY4wxCckClDHGmIRkAcoYY0xCsgBljDEmIVmAMsYYk5DGZIBas2YNS5cuZc2aNSNdFGOMMRGMioG6Q62iooI333xzpIthjDGmD2OyBmWMMSbxWYAyxhiTkCxAGWOMSUgWoIwxxiQkC1DGGGMSkgUoY4wxCckClDHGmIRkAcoYY0xCiutAXRGpBpqAANCtqstFZCKwCZgDVANXq+rxeJbDGGPM6DMcNagLVXWpqi53H28AnlPVhcBz7mNjjDEmxEg08V0J3Of+fB9w1QiUwRhjTIKLd4BS4BkReU1E1rvbpqnqQQD3+9RwTxSR9SKyXUS219fXx7mYxhhjEk28J4v9sKrWishU4FkRKY/1iapaCpQCLF++XONVQGOMMYkprjUoVa11vx8GHgHOBg6JyAwA9/vheJbBGGPM6BS3ACUi2SIyzvsZ+CjwNvAYsNY9bC2wOV5lMMYYM3rFs4lvGvCIiHivc7+q/lFEXgUeFJEbgb3A6jiWwRhjzCgVtwClqnuAM8NsPwpcHK/XNcYYc2qwmSSMMcYkJAtQxhhjEpIFKGOMMQnJApQxxpiEZAHKGGNMQrIAZYwxJiFZgDLGGJOQLEAZY4xJSBagjDHGJCQLUMYYYxKSBShjjDEJyQKUMcaYhGQByhhjTEKyAGWMMSYhWYAyxhiTkCxAGWOMSUgWoIwxxiQkC1DGGGMSkgUoY4wxCckClDHGmIRkAcoYY0xCsgBljDEmIVmAMsYYk5AsQBljjElIFqCMMcYkJAtQxhhjEpIFKGOMMQnJApQxxpiEZAHKGGNMQrIAZYwxJiFZgDLGGJOQ4h6gRCRZRHaIyBPu47ki8rKIVIrIJhFJi3cZjDHGjD7DUYO6BSgLevyvwI9UdSFwHLhxGMpgjDFmlIlrgBKRWcClwD3uYwEuAh5yD7kPuCqeZTDGGDM6RQ1QIrJCRP5DRN4SkXoR2SsiW0TkJhEZH+XpPwb+EehxH08CGlS12328H8gfcOmNMcacsvoMUCLyFLAOeBr4ODADWALcAWQAm0XkigjPvQw4rKqvBW8Oc6hGeP56EdkuItvr6+ujvhFjjDGnlpQo+69T1SO9tjUDr7tfd4vI5AjP/TBwhYiU4ASzXJwaVZ6IpLi1qFlAbbgnq2opUAqwfPnysEHMGGPMqavPGlSY4ISIXCwil4tIaqRj3O1fVdVZqjoH+DTwJ1X9DPA88Cn3sLXA5kGU3xhjzCmqX0kSInI3sAo4l4EHltuBW0WkCqdP6t4BnscYY8wprM8mPhH5AfAvqtrobpoNXO3+vDPWF1HVF4AX3J/3AGf3t6DGGGPGlmg1qEeATSJys4gkA78GXgLewO0fMsYYY+IhWh/U/6jqx4EG4I/utnNU9UxV/elwFNAYY8zYFC3NPEVELgUOAZ8AlonIYyJyxrCUzhhjzJgVLc38UZzmvCzgM6q6VkRmAt8SEVXVv4t7CY0xxoxJ0QJUoape5k7o+hKAqtYC60RkadxLZ4wxZsyKFqBKReQNnNke7g7eoapvxK1Uxhhjxrw+A5Sq/hvwb8NUFmOMMcYXLUniDhGZ0Mf+i9w594wxxpghFa2JbyfwhIi048y9V48zr95CYCnw38B34lpCY4wxY1K0cVCbVfXDwOeBXUAycAL4LXC2qn5ZVW2qcWNOQWvWrGHp0qWsWbNmpItixqhoNSgAVLUSqIxzWYwxCaSiooI333xzpIthxrDhWPLdGGOM6TcLUMYYYxKSBShjjDEJKaY+KBGZAvwdMCf4Oar6ufgUyxhjzFgXU4DCWZxwK05aeSB+xTHGGGMcsQaoLFW9Pa4lMcYYY4LE2gf1hIiUxLUkCcTGfxhjzMiLtQZ1C/A1EekEutxtqqq58SnWyLLxH8YYM/JiHag7Lt4FMcYYY4LFWoNCRK4AVroPX1DVJ+JTJGOMMSbGPigR2YjTzPeO+3WLu80YY4yJi1hrUCXAUlXtARCR+4AdwIZ4FcwYE19r1qyhoqKCoqIiNm3aNNLFMeYkMTfxAXnAMffn8XEoizFmGA02GcgCnIm3WAPUd4EdIvI8IDh9UV+NW6mMMQnPsl1NvMWaxfeAiLwAfAgnQN2uqnXxLJgxxpixLdqS78Xu97OAGcB+YB8w091mjDHGxEW0GtStwHrg7jD7FLhoyEtkjDHGECVAqep698dLVLU9eJ+IZMStVMYYY8a8WOfi+0uM24wxxpgh0WcNSkSmA/lApogsw0mQAMgFsuJcNmOMMWNYtD6ojwE3ALOAHwZtbwK+FqcyJTwb/2GMMfEXrQ/qPuA+EfnfqvqH/pzY7aN6EUh3X+chVf0nEZkL/A6YCLwOXKeqnQMq/Qix8R/GGBN/sY6D+oOIXAqcBmQEbf9WH0/rAC5S1WYRSQW2ichTOJmBP1LV34nIz4Abgf834HdgjDHmlBTrZLE/A9YAN+P0Q60GCvt6jjqa3Yep7peXmv6Qu/0+4Kr+F9sYY8ypLtYsvr9R1euB46r6z8AKoCDak0QkWUTeAA4DzwLvAg2q2u0esh8nCSPcc9eLyHYR2V5fXx9jMY0xxpwqYg1Qbe73VhGZibOq7txoT1LVgKouxUmyOBtYHO6wCM8tVdXlqrp8ypQpMRYzMST6kvGJXj5jjIHYJ4t9QkTygO/jJDYocE+sL6KqDe5cfucCeSKS4taiZgG1/Sty4kv0JIpEL58xxkCMNShV/RdVbXAz+QqBYlW9s6/niMgUN6ghIpnAKqAMeB74lHvYWmDzQAtvjDHm1BVTDUpEkoFLgTnec0QEVf1hH0+bgZOinowTCB9U1SdE5B3gdyJyF86ih/cOovzGGGNOUbE28T0OtAM7gZ5YnqCqbwHLwmzfg9MfZU5hNpjZGDNYsQaoWap6RlxLYk4p1s9ljBmsWLP4nhKRj8a1JMYYY0yQWGtQLwGPiEgSToq54IzFzY1byYIEAgE6OztJS0sbjpczxhiTAGINUHfjDM7dqaphxy3FU1dXF9XV1SQnJ5OZmel/paenIyLRT2CMMWbUiTVAVQJvj0RwChYIBGhubqa52ZlBSUTIyMgICVpJSbG2WhpjxjJL5El8sQaog8AL7mSvHd7GKGnmcaeqtLW10dbW5m9LT0/3g1ZWVhYpKbG+xcRh/zjGxJ8l8iS+WO/e77lfae5Xwuro6KCjo4PGxkYAUlJSTmoWTHT2j2OMMbEvt/HP8S5IvHR3d9PU1ERTUxMAycnJdHV1AdDT04Oq9qsfq6mpiaNHjwJw9OhRmpqaGDdu3NAX3Bhjxrg+O2xE5Mfu98dF5LHeX8NTxKEVCATo6XHGGnd1dVFVVcXevXupr6+npaWFQCAQ8bnbtm0jPz+f2lpn+sDa2lry8/PZtm2bf0y4AGaMGZ1sYuWRFa0G9Rv3+w/iXZC+7N+/n3vvvZfi4mIWL17MxIkTh+zcqkp7ezvt7e0cP34cgM5OZ4Hfnp4eurq6SE1NpampiZKSkpCA09PT42+vra3ljTfeoKSkhJaWFuD9ALZlyxbOO++8ISuzMWZ4nMrN7U1NTWzatInKykoWLlzImjVrEq41KNqS76+5Py5V1Z8E7xORW4A/x6tgwRobG/ne977nP54yZQqLFy/2A1ZxcTGFhYUkJycPyet5yYpdXV289957pKSk8PDDD0esXfX09HDffffx1a9+tc8AlpOTMyTlM8aYwdi2bRslJSX09PTQ0tJCdnY2t956a8J9mI41SWIt8JNe224Isy0uxo8fz+TJk3nvvffo6emhvr6e+vp6XnzxRf+YzMxMFi1aRHFxsR+4Fi1aRHZ29qBfv7u7m4qKClpbW8Pub2lp4cknn/SbDnvr6elh06ZN3HjjjYBl6RljRk641iCv1SfRPkz3GaBE5Brgb4G5vfqccoGj8SxYsFmzZvHwww/T1tZGZWUl5eXllJeXU1ZWRnl5Oa2trbS1tfHmm2+GVMdFhMLCQoqKikJqXAMZzlVYWEhmZmZISrsnMzOT1tZW/5fcW0tLC1VVVf7jU7nZwBiT2DZt2hTzh+mRFq0G9RecMVCTcWaT8DQBb8WrUJFkZmZyxhlncMYZ789b29PTw/79+ykrK/MDVnl5OQcPHkRVqa6uprq6mqefftp/jtcUeOjQIR599FGKi4uZP38+qampNDc309DQAEBDQwPNzc3k5ORQUlLCxo0bw5YrKSmJlStX8sorr4QNYFlZWcyfP38oL8WAWRaiMWNbZWVlzB+mR1q0PqgaoEZEVgFtqtojIouAYpylN0ZcUlISs2fPZvbs2XzsYx/ztzc0NFBWVkZFRYUftKqqqujq6vL7ko4fP87tt98OQGpqKjNnzuTAgQN0d3cDUFdXx8qVKyktLWX58uWUlpayfv16Wltb/fT0rKwsSktLKS4u5oc/DD9uWURYvnw5e/fuJTMzM+Knl3jz2p0ticOMhg8q1hQeHwsXLiQ7OztskMrOzmbBggUjUKrwYp0X6EUgQ0TygeeAzwK/ilehhkJeXh4rVqzghhtuYOPGjTz66KO8/vrrbN68mRkzZgBOzSYvLw9wEiJqamr84ORpaWnh+uuv5wc/+AHHjh3jgQceYOrUqQBMmzaNrVu3snz5cnJycigtLSU7O9sfVyUiZGdnU1paSlZWlp8p6I3D6uzspK6ujsbGRjo6nAk6YklTH0jqa3C7sxcgg5M4vOmjzKkvluESicBrCq+oqBjpopxS1qxZE3FKuKSkpIRKqY81QImqtgKfBP5NVT8BLIlfseIjLS2N4uJixo8fD8Ds2bN56aWXeOGFF7j22msjTosUCAT4z//8T26++WauuOIK6uvrAWhvb2fLli3s3LmT9vZ2li9fztatW5k2bRoQGsDCUVVOnDjBoUOHqKmp4Xe/+x0zZszgwIEDABw4cCDsjWMg/7ixtDubU599UDHjxo1jy5YtjBs3zk8iy87O9rcnSoIExJ7FJyKyAvgM4PWeDdskd/GcsVxEmDFjBhkZGSfVnoJNmTKFpqYm2tvb/X/shoYG7rjjDsD55DFv3jyKi4v9JsScnJyYswibm5tZt25dSLVbVWlqauLjH/84u3fvZsqUKaSmpg7ofY6mdmcTP6Opg9zEz3nnnUdtbS2bNm2iqqqKBQsWsGbNmoQKThB7kPkS8FXgEVXdJSLzgOfjV6xQ6enpLFy4kK6uLrq6uujs7Az57jWZDUa0LL1bbrmFT37yk1RXV7Nu3Tpqa2vJzs4mKyuL+vp6enp6qKqqCrnRV1VVcd5554VkERYWFvoDgoOTMLZs2dLnjeOXv/wlq1evJiUlJepUTeHa7kdTu7OJn6H6oDIa+rBM33JychL+w0isc/H9GfiziGS7j/cAX4xnwXoTEdLS0khLSzupVqKqIcErOID1VSsKFi1Lr6SkhOTkZObPn09ubi61tbUUFBSwefNmjh496mcQlpWV8cwzz/izUXhjtsK179fV1bFixQo2bNhAdXV12OAI0NbWxt69ewFnTFbvqZrS09PJzMz0Z3EPl8a+Zs0abr311ojvbyjbne3mlbhi/aDS1+/Qkm3McImpD0pEVojIO0CZ+/hMEfm/cS1ZP3jBKzs7mwkTJjBt2jRmzZrFvHnzWLBgAbNnz2b69OlMnDiRnJycsE2G0ZIc+mqqmzRpEueddx7r1q3j7rvvZt68eQDMmTOHu+66i2uvvZZly5aFfW5nZyff+ta3+PWvfx2xKTMzM5PZs2eH3edN1XT8+HEOHjzInj17/ODorUQMoe3OXgdpUlLSgNudIyVqjJYO+LEqlg7yvn6H1odlhlOsSRI/Bj6GOzhXVd8EVsarUEMpKSmJjIwMcnNzmTx5MjNnzvSXjk9LS6OgoMAPXhdeeCGvvPJKzEkO0WRkZLB69WruvPNOPvnJT5KRkdHn8ZEGEHd0dPDOO+/wyCOPUFZWFnWgsbe/u7ub6upq3n33XQ4cOMCSJUt49913mTlzJoB/ExrIp95wiRp280p80T6oqGqfv8P77rvPkm3MsIk50UFV9/X6hB952u9RQkT8daI8M2bMYNq0adTV1TFlyhTmz59/Up/XQNTU1NDe3h5x/2WXXcaECRN44IEHTmqW7Onp4f777+f+++8P2V5dXc3Pf/5zzjzzTIqLi/2U+d4CgQAtLS1+k4xXW8rNzQWcQDYUCztaB/zo4HWQL1myhH379pGfn88777xDTk4O99xzT5+/wyeffNKSbcywifWutE9E/gZQEUnD6X8qi1+xEkNSUpJ/Ew/mLXqYmprKpEmTQpI1Ik0oGy0J49xzz2X16tV8+ctfpqSkhLq6OiZNmsQtt9xCdXU15eXl7Ny5M2RcVHt7e8jg4BkzZlBcXOynwXd2dtLT0xOxSScQCPjNOCkpKX4flrewY3+zJ4czU9AGcQ5OTk4OEydOZN++fX7TN0T/HXrN3pZsY4ZDrAHq8zgTw+YD+4FngJviVajRIikpiUmTJoVs6+np8ZsQU1JSGD9+PF1dXVxxxRVRkzDA+SfPy8vza3BeH09zczPnn39+n+U5ePAgBw8e9B/v2bOHD37wgyfNRRjuE3J3dzfNzc1+M5xXu8zIyCArK4uMjIyIgc4znJmCNp9hfET7HV566aUR+xMTbZCnGf1izeI7gjMGykSRlJTk1zySk5P9/qxZs2axZcsWLr30UlpaWkKmSrr33nujjpfy+gfCycjIYO3atcyYMYOysjI2b97sNye2trayY8cOduzYcdLzDhw44E/TtHjxYqZMmeLvU1VaW1tpbW3l2LFjgFNz9GpZ4crSn0xBqwElpmi/w7Vr13LmmWf6WXxeDT07OzvhBnma0a/fHQ8i8rqqnhWPwpzqVq5cycGDB/22/1mzZvlt/4FAwO/n8vqDkpKSSEpKoqenh5qamohp6O3t7agq11xzDc3Nzfz5z3+mrq6OyZMnc9ttt1FTU+NPpnv48GH/eU1NTdx99/tzAE+aNInFixdz4MAB2tvbmT9/Pj//+c/98nR0dNDR0UFjY6OfHdjV1UV9fT0ZGRlkZGSwZcuWmG5eVgNKTF6yRF+/w776sBKJfQga/QbSMx6/aR3GgEht/8nJySQnJ5ORkeHPtp6amsqCBQsIBAIsW7aMrKyssGtSeWno27dv9yezBWf8yl133UVpaSlf/vKXATh27BhXX301+/btIzc3l+nTp/Puu+8SCAQ4evRoSPPNwYMHOeuss1i4cKHfROh9eXp6evyBx+D0g7366qtcdNFF1NbWMnPmTMrKyob95mU3p4GLJQBF+jtOJPYhaPQbSIB6cshLcYopKioK+T5YycnJXHfddWzYsCHi/tWrV3PWWWedNFVSS0sL69evZ+vWrWRnZzNx4kS/OXHmzJls3ryZjo4Oqqqq/MHGDz30kF9b6+jo4O233+btt98+6TUB9u/fzxNPPMGyZcuYOXMmgUAAEfEHM+fk5HDo0CEaGxv9Wla0dPuhYDenwRkNAcic+qIGKBFJBp5W1VUAqnpH3EsVR8Mxy0E8PrFHa3oJXl24N1Xl+eef51Of+lTYNPn09HROO+00TjvtNABeffVVysvLmT9/PrfeemvI4pD79+8H8LMVm5ubue222wAnbd2rYXlravX09JyU5g6EDCZuaWkhPT19SFLdjTGnjqh3BFUNiEiriIxX1cbhKFS8jPYpWvpqenn88ccjpge3trZSX1/vz0YRnCY/ceLEkHFewckPqamprFq1ilWrVgHvZxKGa2YEOHHiBK+88gqvvPKKv2337t1cfvnlfiLG4sWLKSoqChlM7M3enpycTHp6up+MkZGRMeDJcY01c5rRL9aPrO3AThF5FvDvgqoacT4+ESkAfg1MB3qAUlX9iYhMBDYBc4Bq4GpVPR7pPEMleJYDT/AIea85KhZD3YTXH5GaXgaS4p2UlMTkyZNDtnV1dflBwesT88ZT9ZVJmJ6ezuWXX8748eMpLy/npZde8mtZu3fvZvfu3Tz22GP+8V5tqb6+nqeeesqfSDcQCIQEQK8MXuBKT0/30/hN36yZ04x2sQaoJ+l/31M3cJuqvi4i44DX3AB3A/Ccqm4UkQ3ABuD2fp6734ZyloPBfhqNFuAGEgCHajLY1NRUf7xTSkqKX+vq7u7m2LFjETMJOzo6mDhxot/cd8UVV1BRUcGsWbO4+uqr/WbC6upqVNWfLePo0aN86UtfApwFJIuKikLGbS1atMhvBgx+P15TZSAQoL29nbS0tKjjtIJZ7WLk2e/ARBPrOKj7RCQTmK2qMa2Sp6oHgYPuz00iUoYz0PdK4AItO0GtAAAgAElEQVT3sPuAFxiGAJVI6yFF+2ccyD9rLOnBsYjUR5eSksKSJUsi1tKysrJYsmQJOTk5dHR0+GPBcnJy+Pu//3v/uG3btnHTTTeFnfYp3JgtEaGwsDBkoHFBQYFfxiNHjvjNnKmpqX4tK9KHEY/VLkae/Q5MNLHOZn458AbwR/fxUhF5rO9nhTx/DrAMeBmY5gYvL4hNjfCc9SKyXUS2e1P3DIbXBBbOqTJFi9dHlZ+fD/R/MthoM5H3NRN2cnIyN954IzNnzmTu3Lkh/VyTJ08mNzeX7u5uvvjFL4YNTpmZmXzve9/j85//PBdccAHTp08HnASP6upqnnrqKX70ox+xfv16LrnkEg4dOgQ4S5b8zd/8DY888gitra00Nzdz9OhRv4bV0dHBvn37OHz4MI2NjbS1tUUNXsZA+A9rZnjF2sT3TeBsnNoOqvqGiMyN5YkikgP8AfiSqp6IdX43VS0FSgGWL1/e9/TdMRjO9ZBGUizpweGaEGPpoxtILS0pKYmJEycC8MQTT/RZ9s7OTn+8FsDx48cpLy+noqKCsrIydu3aRWVl5UnP6+joYMOGDdx5550sWrSIoqIif/aLQCBAW1vbSU2TXhZhd3c3J06cIC0tbUDzD5pT02hPqDpVxBqgulW1sdc/b9SgISKpOMHpv1T1YXfzIRGZoaoHRWQGcDjyGYbOUDWBnQrCNSHG2kc3mFkE+mpmbWtro7Gxkfz8fDo6Oujs7CQ9PZ2JEyeyYsUKAB588EG+/e1vR5wVvquri127drFr166Q17zwwgv9DEIvDd57r4FAgLq6Ov/41NRU0tLSuOmmm9izZw+LFi3iwQcf7Ff/1nCxPpz4GMqEKjM4sQaot0Xkb4FkEVmIM5v5X/p6gjjR7F6gTFV/GLTrMWAtsNH9vrnfpR6g0TJFSzTxyCLsTx/dQAdxRss0LCoqIjs7+6SmWC8F/vDhw30uWfKxj32McePG8cgjj4TMKl9bW0ttbS3PPfecv80LOIcOHeL3v/89ixcvZuHChf7rVVRUUF5e7q9a7AUuL4vQ+z6SNS7rw4kPWzYmccQaoG4Gvg50APcDTwN3RXnOh4HrcNLT33C3fQ0nMD0oIjcCe4HV/S30YJwKI+Tj8Wl5OGYiH8xksqmpqZxxxhkRy5iZmcmKFSv4/ve/H3bJk5SUFIqKiqiqqqKjo8O/AR0/fpw77nDGnicnJzNv3jyKior8vgcv29BbTqX3a3uJGWlpaSFfiVjjGk2GY0B9JImUUDXWxRqgilT16zhBKiaquo3I8/ZdHOt5zPAYjj66/jSzhqsd9FXGlJQUJk2aFHGcVmpqKtdccw2f+MQnqKmpYd26ddTW1pKdnU1mZiZHjhwhEAhQWVkZ0s9VVVXFeeedF5JFWFRUxJw5c0hOTvYDV7jyeLUur8aVmpo6bAOPR/IGP1gj3f8znMvGmL7FGqB+6PYX/R74naruivYEM7oMVx/dYJpZo5Xx8ccfjzjLRVtbG0eOHGHChAn09PT4Nahx48bx5JNP0tbWRnl5uf/1zDPP+IkU9fX11NfXh0wnlZmZyaJFi/w+rcWLF7No0SK/ebK7u5vu7u6TkjNEhLS0NG6++Wbee+89Fi5cyP333z+kta6RvsEPRiL0/4yVhKrRINZxUBeKyHTgaqBURHKBTaoarZnPjICB9lENVx/dYJpZ+ypjeXl5n598Tz/9dN59911KSkr8hRkPHTrEypUr+cUvfsH555/vLwp55ZVXUl5eTmFhIevWrQsJXi0tLbS1tfHmm2+G1PK8MVu9F4icNm2a31elqnR0dFBZWUl5eTnd3d3s3bsXcJoYvVpXcO2rP31diXCDH4xE6P+xhKrEEfPsnKpaB/xURJ4H/hH4BtH7ocwIGEwf1VD10Q0mkSNa81SkMkb75FtSUkJRUVHIzdub8X3dunXs27eP1NRU2tvb/dpMZmYmV199tX98T08PBw4c8CfP9b7X1tb6Y7aqq6t5+umn/efk5eWF1LSKi4vDNkUGAgF/ZozegpM0vKbCcOdIhBv8YAxV/0+0v6Fo+0+VhKrRLqYAJSKLgTU4CQ1HgN8Bt8WxXGaUG2iQHEzzVLRPvk8++WSfN++HHnqIG2+8kaysLL+vKD093U99b29vp729nYKCAgoKCvjoRz/qP7+hocEfr1VRUcGzzz7rB8KGhgZeeuklXnrppZNet7a2ll/96ld+4Bo/fnzY8oVL0vCaIDs7Ozlw4ABpaWns3LlzVHfwD0X/T7S/oVj/xk6FhKrRLtYa1C+BB4D/paq1cSyPGSXikeo+FM1TA53xPfjm3fvTdU9Pjz/YGN6f/6+9vZ22tjba29vJy8vjnHPO4ZxzzgHgnXfeoby8nDlz5vCFL3whpLblLUUCzgzw3/3ud/3HM2fOPKm2NWvWrJP6p5qbm/3zHD9+nEOHDpGTk8OUKVPIzMwMO2diVlYWs2fPpru7O2GXNhls/0+0v6GKiopR3QQ61sT6V3ohMB+YICLHVDXyYBQzJsQj1X2omqcGM+N7LJ+uk5OTTxqv1dnZ6Qer4OCQkZHBVVdd5T9WVerq6rj22mvZv38/48aNY+LEidTU1PivV1tby5/+9KeQsgUHLVXlu9/9rv86Xj9aaWkpJSUlbNy4Mex1ERHOPfdc9uzZEzLhbnd3Nw0NDaSmpvrZh/FOk4/UxDbY/p9of0MbNmwY1U2gY02fAUpEUoDvAJ/FGbOUBMwSkV8CX1fVk/NrjRmgeI8/GUgfVaRP173HaXnJDF4TnTcXobdcSEdHB6qKiDBjxgz/PPn5+WzevJnm5mZ2794dkoyxc+dOenp6aGlp4bXXXuO1114LW/bgfrT/+Z//obS0lPXr19Pa2uq/ZlZWFqWlpX5QDc5kDAQCHD4cOqFLcnJyyHRQjY2Nfj/YYGtf0T4ExGu2kpaWFioqKkZ1E+hYE+0v7fvAOGCeqjYBuBl8P3C/bolv8cxIGI71rsK9RrzHnwy2jyr403Wsszh4S5aoqt8sWF9fT2Ojs/ZnQ0MDzc3N5OTkcNZZZ3HWWWf5z/WWLJk5cyaXX345ZWVlvP76634GYm9tbW2sXLmSpUuX8qlPfYpHH32UxsZGpk6dylNPPRVxsuRwAoGAn4QRCAT8yXnBqYmlpqaGLHnS0tLiJ2/0lXEYazNuPGcrefvtt22M0ygRLUBdBizSoHQhd8LXLwDlWIA6JQ3HvG7hXqM//Q/xSKWPtY9qIESEzMxMXnvttZDag9c8d99993HmmWeGBEjvRp+bm+tfl+9///vcc889EV+nubmZbdu2+TPQAxw+fJi1a9eG9GsVFRUxd64z37P3PVaq6i9iCaGrIoMTlL1U+eC0+dTU1LhnGUb7G9q4cSOPPPJIxP02ximxRAtQqmFyWd1l4Ac9w3iiGskVc8ey/vQ/xCOVfqhqcJH6V8LVHrzmuc9+9rPU1tb6ae7t7e1hayKFhYURkyDS09O55JJLGDdunF/b6unpQVXZuXMnO3fuDDl+9uzZ/hyEzz33HIsXL2bGjBkxj7mKFOC8Qcpf+tKXeO+995g7dy4//vGPAXjllVfi2sQW7W9oxowZNsZpFIkWoN4RketV9dfBG0XkWpwa1CnJZoYeOSM5/mQoZhDoq3+lvLw8ptpDeno648eP95e2T01NZeLEibS1tXHppZdGTIJISUnhG9/4ht+U5zUR5ufn84lPfIJ33nmHiooKv7azd+9e9u7dGzJma/z48X5ChtcMGWn6KC/oRPLee+9RXh56m5g9e3bEAJuZmUleXh4HDhwgNTXVn1NRVf2+tFhE+xuyMU6jR7QAdRPwsIh8DngNZ4mNDwGZwCfiXDYzRo3U+JPBZpBF619Zt27dgGoPSUlJTJ48GYBZs2axefNmrrrqKlpaWiImQcD7TYTjxo3j5ptv9rc3Njb6Y7a89bZ2795NV1cXjY2NvPzyy7z88sv+8RUVFVxxxRUhy5UUFxczYcKEKFf0ZH1lGSYlJfHRj37Uv0beRL2dnZ1UVlaGNBd62YbB34NF+xsajr+xpqYmNm3aRGVlJQsXLmTNmjWjZj7ERNFngFLVA8A5InIRcBrO5K9PqepzfT3PmNEqlk/XkZrwovWvHD16NOYmxEivISJcfPHFHDx4MKSMr776KikpKX6qe6RaDzi1pLPPPpuzzz7b39bV1cWePXtCsghffvllvxZTUVFBRUVFyHmmT5/uT57rrbdVUFDQZ4p6Tk5OTFmG4USamBec4NZ7mqiRXDnZq0l7WZjZ2dnceuuto2I+xEQS61x8fwL+FPVAYxLEYPoR+/p03VcTXrQU50mTJkW8eQc3IcYyFiu4jJMmTWL69On+ubyMQa9WEUvTWGpqKkVFRRQVFXHllVcC7zcRzpo1i9WrV/uDjWtqavzxXHV1dTz//PP+ebKysigqKqK4uNgfSNw7UCxfvpytW7dSUlJCXV0d06ZNY8uWLf3KMuytp6eHjo4OOjo6/G1eMOvo6GDv3r0nJWzES7iatPe7tMHA/ZOYw8nNmDfYRJVo/YgDOX+0JrzvfOc7fdaQTjvttKhNiEMxm4aXMZicnAxAWloac+bM8QcRt7W1+WOcop0HnGD4+c9/3t/e2trqL+jofVVUVNDW1kZrays7duxgx44d/vG7d+/mkksuCVmuZPHixYwfP566ujry8vIGFZxi4SWeBPOCWWdnJwcPHjxpgt6BDlYe7fMhJhILUCYhxTtRZSDnj3bjEZGoNaScnJw+mxCH8uYWHIS9m25ubi7gjF3ygpXXLBirrKwsli1bxrJly/xtgUCAvXv3+nMR7ty5k7/+9a/+e9mzZw979uxhy5Yt/nO8AHr48GEee+wxFi9ezNy5c4d9GiZVDflAEFy+4LFeJ06c8GtgXtnDsQUPh44FKGNiFO3Gs3///piSLPpqQhzKm1tfQTg5OdkfEAtO8BtowPLON3fuXObOncvUqVP5zW9+E9IPlpaWxtlnn83hw4fZs2cP3d3dfv/WsWPH+Id/+Af/uIULF1JcXMyxY8cAwq6QPBwCgUDIWK+6ujp/n9fn1Xusl1d+W/BwaFiAMiZGsdx4BpvCPFI3Ny+Qek1tqur30yQlJZGUlBRT0kFzczPr168/qfydnZ3s2LGDrVu3kpqaSlVVFV/4wheoq6sjMzOTlJQUmpqa6OzsZNeuXeza9f6aqJWVlVx88cUnZRHm5+fHnHo+1ML1eXk++MEPRnyeDQbuHwtQxsQo1nFSg0lhTpTVXIObK1NTU1mwYIHfh9Xa2kpbW1vYgLVly5Y+myi3bNnC6tWrWbJkCXl5edTV1VFYWMijjz5KbW2tn/peXl7OCy+84Dex7d+/n/379/Pss8/658vNzfUTMrwswgULFvjjx0ZKdna2n6no1UwzMzNJSkqitLSUY8eO0dTU5De7ejWveE/QOxpZgDImRsOx0moirebaO5EkIyODjIwMf/xTuIBVU1MTdhAuOHMFeqsH9yYi5Ofnk5+fz6pVq4D3VzWePXs2a9eupaysjLKyMiorK+ns7OTEiRO8+uqrvPrqq/55UlJSmDdvHsXFxX6avjeeajh5mYpbtmxh7969zJ49m5KSErKzs8MmbIDTTBocsIK/j9XgZQHKmDAiZfkNxywEiTLTQbREknAB6/TTT+9zpojZs2f3uxxZWVlce+21/uPu7m6qq6tZt24dBw8eJDs7m/T0dI4dO0Z3dze7d+9m9+7d/vFVVVWcf/75IU2E3rIlgxVuOidPdnY2q1evjvlcwYkrvYULXmOh5mUBypgw+ro5D8csBLG8RqLNGZmRkcHnPvc57rzzzrD7vSVNBislJYUFCxYwfvx4Dh48SEFBAY8++ij19fV+FmF5eTnPPvusn05/+PBhDh8+zJ///Gf/PF7/VV1dHQ888ADFxcUsWrSoXynv4aZziodowStc4IqWbTgaWIAyZgQMRXBJxDkj+2qifPzxx1m4cGHEG+1giAhTp05l6tSpfOQjHwHebyIsLCzkxhtvDJnayZvFApwlT775zW/65yksLPRrW97SJkNR24qXQCDgr/Lcmxe8wjUbjobgZQHKmDiIFoASMbgMlWhNlN734EUdMzMzo07RNFCZmZkhySU9PT3s27ePG264gdraWrKzsxk3bhx1dXWoKtXV1VRXV/PUU0/5z6mqquKGG27wA5c3ZivR9RW8wk0P5QWz4R6LFklilMKYU8ypHIBi0d8myoKCAn+KJq+GFa8U8qSkJAoLC8nNzaW2tpaCggI2b97M8ePH/RqWl5Cxe/duVJVAIMBf//pX/vrXv/rnCU5eOHbsGK+88grFxcX+YOhE11eqvIj4qyeHG+81XOn9FqCMMSOidxD3pmjKzMwE8NPFU1JSyM3Npb29PaYpmjz9XZBxwoQJrFixghUrVvjbOjs72bNnj9886H1vbGwMmbj28OHDXHfddQDk5+eHTKBbXFzMrFmzRmzM1kCoasTgBfjBygtgwbPMD2XToQUoYxJUoiVBjJTk5GR/Mlyvuaq+vt5fr6qhoYHm5uaTamnR1quKRVpamp/551FVDh48yBtvvMGdd95Jc3MzycnJ/owXBw4c4MCBA/zpT+/Pr52TkxMyyNhLyPCaOUebWGaWj/TVn0BtAcqYARiO4DHWmwnDSU5OZseOHSGzvR86dIiPfOQj/OY3v+GMM86I+7gnEaG2tpY77riD1tZWwGkuy8rK4itf+QqAX9PavXs3HR0dNDc3s337drZv3x7yXrwxW16/VnFxMZMmTYpr+eOtr6ZDoF/9WxagjBkACx4jI9xs76pKc3Mz119/PbW1tWRkZPjzCba1tdHR0TGkyRfhpnNSVVpbW7n77rvZunUrn/nMZwBnzFZNTc1JTYRHjhwhEAhQWVlJZWUljz/+uH+uKVOmhMyOUVRUxJw5c0ZF1l0s+vMBwgKUMSYu4lHLjHW293Hjxvmr1wYnX3jfBzMBbazTOYFTW5g/fz7z58/nsssu84+rr68PWa6kvLycPXv20NPTQ319PfX19WzdutU/PiMjg0WLFoUsV7Jo0aJTfl0pC1DGmLgYbC0zXIAbyGzvvZMvwEl+8CbD7W/ywkCncwo2ZcoUpkyZwvnnn+9va29vp7Ky0g9YXm2rpaWF9vZ23nrrLd56662Q8xQWFoY0ES5evJhp06aNqoSMvsQtQInIL4DLgMOqerq7bSKwCZgDVANXq+rxeJXBGDN6hQtwQzXbe/AUQWlpacybNy9kuZFI/SfgBIWhns4JnFrSBz7wAT7wgQ/423p6eti/f39I0KqoqODAgQOAEyxramp4+umn/efk5eWd1K81b968EZ9EdyAkXiOkRWQl0Az8OihAfQ84pqobRWQDMEFVb492ruXLl2tw5+JgLV26lDfffJMzzzyTN954Y8jOa4yJr6amJvLz88MuMDhu3Lh+Lafe133Am4Xcm9i1vb3dbxZsbm5m5cqVEYPk1q1b475CcGNjY0jAKisro6qqKmJmnTcjfe9Mwry8vLiWM5KioqLXVHV5tOPiVoNS1RdFZE6vzVcCF7g/3we8AEQNUMYYA8M323vv9bHAaRZsa2sjNzeXX/ziF3zuc5/zp0wSEbKysigtLY17cAIYP34855xzDuecc05I+fbs2XNSE2FDQwNdXV3+4ONgM2bMCGke9MZsJSUl0dzczJYtW6ipqaGwsJCSkpJh7/OKWw0KwA1QTwTVoBpUNS9o/3FVnRDhueuB9QCzZ8/+YE1NzZCVy2pQxoxuzc3N/lRKBQUFA5rtfbD3gYaGBk4//XQOHDjAjBkzePLJJ4clOPWHqnLo0KGQgFVeXk5NTU3EzMbs7Gzy8/PZs2cPIkJXVxcZGRkkJydTWlrK8uVRKz5RjXgNarBUtRQoBaeJb4SLY4xJIMMxo3w0eXl5TJ48mQMHDjB16lQ+8IEPhKyP1Z9ZL+JFRJg+fTrTp0/nggsu8Le3tLSwe/fukMBVUVFBe3u7vy+YN5ff9ddfz0033cQZZ5zB4sWLmTx5clzLP9wB6pCIzFDVgyIyAzg8zK9vjDFxkZKSEpLe3t3dnXABy5Odnc2yZctYtmyZvy0QCFBTU8Mvf/lLHn744bDjlQKBAD/96U/9x5MnTz4pIWPOnDlDNtnscAeox4C1wEb3++Zhfn1jjBkWvQNWIBDwg1W0TMGR4M1skZub2+dg2gkTJnDixAkCgQBHjhxh27ZtbNu2zd+fnp7OokWL/KBVVFREcXHxgGq58UwzfwAnIWKyiOwH/gknMD0oIjcCe4HYl5s0xphRLDk5+aSAFVzDSpSAFS2N/rbbbuOKK66gqqrqpBkympub6ejoYOfOnezcuTPkuQUFBX4tK1bxzOK7JsKui+P1msYYM1okJyeTk5Pj1yyCV81tbW0dsYBVUlLCxo0bw+7zVkVOT0/ntNNO47TTTvP3qSr79+/30969wOWN2dq3bx/79u3jmWeeibksCZskYYwxY0nvgOWNxfJqWOEWHYyHnJwcSktLWb9+vV+GzMxMkpKS+kyjFxEKCgooKChg1apV/vYTJ05QUVERUtPatWtXTGWxAGWMMQmo91gsL1gE17DiNUxo+fLlbN26lS1btrB3715mz55NSUnJgNLoc3Nz+dCHPsSHPvQhf1us8zNagDLGjEpjbb2s4Q5Y2dnZ/qS3I8UClDFmVBrrS570DliqGhKw2tvb41bDGi4WoIwx5hTgTbeUlZXFpEmTQpYZ8QJWpGVCEpUFKGOMOQUFLzMyceJEVJWOjo6QxItED1gWoIwxY9JQ9GGNpn4wESEjI4OMjAwmTHCmQO0dsAazkGM8WIAyxoxJQ9GHNdr7wdLT00lPT/eX3fBmbPcCVn+WZ48HC1DGGGMAZ/HGtLQ0xo8fD0BXV1dIwIq03lS8WIAyxhgTVmpqKqmpqeTm5gLDPwGuBShjjDExCTcBbjznE7QAZYwxZkAizSc4VAHLApQxxpghES5gecGqtbW1302CFqCMMcbERe8lRrq7u2ltbY35+UnxKpgxxhgTLCUlxU+4iIUFKGOMMQnJApQxxpiEZAHKGGNMQrIAZYwxJiFZgDLGGJOQLEAZY4xJSBagjDHGJKQxOVB3NK3hYowxY9WYDFCjfQ0XY4wZC6yJzxhjTEKyAGWMMSYhWYAyxhiTkCxAGWOMSUgWoIwxxiQkC1DGGGMSkgUoY4wxCUlUdaTLEJWI1AM1Q3zaycCRIT7nWGPXcHDs+g2eXcPBG4lrWKiqU6IdNCoCVDyIyHZVXT7S5RjN7BoOjl2/wbNrOHiJfA2tic8YY0xCsgBljDEmIY3lAFU60gU4Bdg1HBy7foNn13DwEvYajtk+KGOMMYltLNegjDHGJDALUMYYYxLSmAtQIvJxEakQkSoR2TDS5RkNROQXInJYRN4O2jZRRJ4VkUr3+4SRLGOiE5ECEXleRMpEZJeI3OJut+sYIxHJEJFXRORN9xr+s7t9roi87F7DTSKSNtJlTWQikiwiO0TkCfdxwl6/MRWgRCQZ+A/gEmAJcI2ILBnZUo0KvwI+3mvbBuA5VV0IPOc+NpF1A7ep6mLgXOAm92/PrmPsOoCLVPVMYCnwcRE5F/hX4EfuNTwO3DiCZRwNbgHKgh4n7PUbUwEKOBuoUtU9qtoJ/A64coTLlPBU9UXgWK/NVwL3uT/fB1w1rIUaZVT1oKq+7v7chHODyMeuY8zU0ew+THW/FLgIeMjdbtewDyIyC7gUuMd9LCTw9RtrASof2Bf0eL+7zfTfNFU9CM7NF5g6wuUZNURkDrAMeBm7jv3iNk+9ARwGngXeBRpUtds9xP6n+/Zj4B+BHvfxJBL4+o21ACVhtlmevRk2IpID/AH4kqqeGOnyjDaqGlDVpcAsnBaRxeEOG95SjQ4ichlwWFVfC94c5tCEuX4pI12AYbYfKAh6PAuoHaGyjHaHRGSGqh4UkRk4n2hNH0QkFSc4/ZeqPuxutus4AKraICIv4PTn5YlIilsLsP/pyD4MXCEiJUAGkItTo0rY6zfWalCvAgvdrJU04NPAYyNcptHqMWCt+/NaYPMIliXhuW399wJlqvrDoF12HWMkIlNEJM/9ORNYhdOX9zzwKfcwu4YRqOpXVXWWqs7Buff9SVU/QwJfvzE3k4T76eHHQDLwC1X99ggXKeGJyAPABTjT8h8C/gl4FHgQmA3sBVarau9ECuMSkfOArcBO3m///xpOP5RdxxiIyBk4nfjJOB+uH1TVb4nIPJyEp4nADuBaVe0YuZImPhG5APiKql6WyNdvzAUoY4wxo8NYa+IzxhgzSliAMsYYk5AsQBljjElIFqCMMcYkJAtQxhhjEpIFKDPqicgnRERFpDiGY28QkZmDeK0LvFmgw2xvdGeJrhCRF92R+97+z4vI9VHO+zcDLddgicgyEfHmZ/umiHxlgOdJc9/7WJsEwMSBBShzKrgG2IYz+DCaG4ABB6gotqrqMlUtAr4I/LuIXAygqj9T1V/38dwLgBELUDhjsv5tsCdxJ2F+Dlgz6BKZMc8ClBnV3LntPoyzRMCne+37RxHZ6a4ftFFEPgUsB/5LRN4QkUwRqRaRye7xy93pcxCRs0XkL26N6C8iUtSfcqnqG8C3gP/jns+vlYjIF0XkHRF5S0R+504e+3ngy265zheRy901enaIyH+LyLSg8/xCRF4QkT0i8sWg93u9e843ReQ37rYpIvIHEXnV/fpwmGs4DjhDVd8Ms+/vROQp91q9ICI/cmtIZSLyIRF52F1H6K6gpz0KfKY/18uYcKwabka7q4A/qupuETkmImep6usicom77xxVbRWRiap6TET+D84I+u0AzgxEYZUDK1W1W0RWAd8B/nc/y/Y68A9htm8A5qpqh4jkufPK/QxoVtUfuOWaAJyrqioi63BmoL7NfX4xcCEwDqgQkf8HLAK+DnxYVY+IyET32J/grPWzTURmA09z8gSry4G3e23DvYE4Dz4AAAKUSURBVFYfBa5yywrQqaorxVlwcTPwQZylWN4VkR+p6lH3XB/q57Uy5iQWoMxodw3O1FXgTNdyDU5gWAX8UlVbAQYwfdB44D4RWYgzu3PqAMoWKfq9hVOLexSnthHOLGCTO4FsGvBe0L4n3aloOkTkMDANd00fVT0CIe93FbAkKBDnisg4d00qzwygvtfrX4czufJVqtoVtN2bu3InsMtbKkRE9uBMxHxUVQMi0hnmdYzpF2viM6OWiEzCuTHfIyLVOLWVNe7ErEJsywZ08/7/QUbQ9n8BnlfV04HLe+2L1TJCVy71XIqzsvMHgdciJBT8G/DvqvoB4O97vX7wPGkBnA+akd5vErBCVZe6X/lhgkYbJ7+/t4E5OIEymPfaPb3K0UPoB950oD1MeYyJmQUoM5p9Cvi1qhaq6hxVLcCpaZwHPAN8TkSyAIKavJpwmsY81TiBAkKb8MYDB9yfb+hvwdyJTe/ECUTB25OAAlV9HqfZLg/ICVOu4NdfS3TPAVe7QTv4/T6D2w/mbl8a5rllwIJe23bgBMbH+pv16JahvlfNy5h+swBlRrNrgEd6bfsD8Leq+kec5qjt4qzA6qVN/wr4mZckAfwz8BMR2YpTG/F8D/iuiPwPzuzZsTjfSzPHCUxfVNXneh2TDPxWRHbiBIEfqWoD8DjwCS9JAvgm8Hu3XEeivbCq7gK+DfxZRN4EvCU9vggsd5Mn3sFJxuj93HJgvJssEbx9G851e9JLJInRhcCWfhxvTFg2m7kxBhH5MtCkqvcMwbkeBr6qqhWDL5kZy6wGZYwB+H+E9ikNiDgLgT5qwckMBatBGWOMSUhWgzLGGJOQLEAZY4xJSBagjDHGJCQLUMYYYxKSBShjjDEJ6f8HPBF5e0BTeCMAAAAASUVORK5CYII=\n", - "text/plain": [ - "
" - ] - }, - "metadata": { - "needs_background": "light" - }, - "output_type": "display_data" - } - ], - "source": [ - "x, y = pd.Series(actual_distance_bins, name=\"Actual Distance (km)\"), pd.Series(triangle_approximations, name=\"Over-estimation (%)\")\n", - "ax = sns.regplot(x=x, y=y, color='black', x_estimator=np.mean)\n", - "\n", - "plt.title('Distance approximation error')\n", - "plt.tight_layout()\n", - "plt.savefig('overestimation.svg')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": 19, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAagAAAEYCAYAAAAJeGK1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJzs3Xl81NW9+P/Xe7Inkw0IQRAMkU1AiBDDHqqitSlV24roVa9Wb6nXeq/U2mqr396trVv1avvrRtVetVSp1V65GGu1kg0EZAmyL0JkCYQ1yUz25fz+mJmPkzhJJsssSd7PxyOPTOYzy/lkknnPOed93keMMSillFLhxhbqBiillFK+aIBSSikVljRAKaWUCksaoJRSSoUlDVBKKaXCkgYopZRSYUkDlOoTIvIbEfl/oW7HQCYiY0TEKSIRQXq+d0TkjmA8l1K+iK6DUl0RkTIgHWgGWoDdwMvACmNMaw8e65+MMe/3cTNVL4jIvwPjjDG3hbotSnloD0r56yvGmETgIuBx4CHghdA2qf8RkchQt6E/8fX76u7vUH/n/ZcGKNUtxpgqY8xqYClwh4hMBRCR/xGRH7svDxORNSJSKSLnRKRYRGwi8gowBvg/91DV9923f11ETopIlYgUicgUz/O5H/eXIvK2iDhEZKOIXOx1fIqIvOd+ngoR+aH7epuIPCwin4jIWRH5k4gM8XVOIpLqbu9pETnvvnyh1/ECEXlMRDa52/iW57FEJENEjIgsE5FyETkhIt/1uu+/i8ifReQPIlIN3CkiMSLyrPv25e7LMe7bPyQiGzxvqiLyzyKyS0RivZ4r0qtdPxaR9e7f5/+JyFARWSki1SLykYhkeLXlORE56j62RUQWuK+/FvghsNT9ONu9Hv+fvH6fj4rIpyJySkReFpHkdr+DO0TkiIicEZFHOvobcp//z9y3rXAPD8e5j31BRI65fw8ngd/7us5922+KyEH3a79aREZ6PYcRkW+LyAHgQEdtUeFNA5TqEWPMJuAYsMDH4e+6j6XhGhr8oesu5nbgCK7emN0Y86T79u8A44HhwFZgZbvHuwX4DyAVOAj8BEBEEoH3gb8CI4FxwN/d9/lX4AZgofvYeeCXHZyODdeb3kW4Amgd8P+1u80/Ane5H6sZ+Hm741e4z+Ea4GERWeR17Hrgz0CK+9weAWYDWcB0IAd41H3bp4BG4FERGQ/8FLjNGFPfQdtvBm4HRgEXAx+6z2UIsAf4N6/bfuR+ziHAH4HXRSTWGPNX9/Oscr8u0308z53uryuATMDu43c0H5gIXAX8SEQu6aDNTwAT3G0Z5277j7yOj3C38SJgma/rRORK4DHgJuAC4FPgtXbPcwMwC5jcQTtUuDPG6Jd+dfoFlAGLfFy/AXjEffl/gB+7L/8n8BauOQ2/HsvreApggGSvx33e63gesNd9+RZgWwePswe4yuvnC4AmINKP880Cznv9XAA87vXzZFxBJALIcLd3ktfxJ4EX3Jf/HShq9/ifAHleP38RKPP6OQM45z6HH7S73njOwd2uR7yOPw284/XzV4DSTs7zPDDdq51/aHe8ANd8IbgC/71exyZ6fp9e7brQ6/gm4GYfzylADXCx13VzgMPuy19w/25jvY77uu4F4Emvn+3u9mS4fzbAlaH+39Gv3n1pD0r1xihcb6TtPYWrp/M3ETkkIg939AAiEiEij7uH4qpxBTCAYV43O+l1uRbXmxHAaFxv9r5cBPxFXMOMlbje7Ftw9ejatyFeRH7rHr6qBoqAFGmbLXfU6/KnQFS7NrY/PrKDY7iPfdrR7Y0xZcBaXG/8HfX6PCq8Ltf5+Nnzu0JEvisie9zDlJVAcrtz6IyvNkfS9vfZ0evkLQ2IB7Z4vTZ/dV/vcdp8vsfY/ro27THGOIGzuP4mPdr/3lU/owFK9YiIXI7rzaCk/TFjjMMY811jTCauT/EPiMhVnsPtbv4PuIbAFuF6w8zwPIUfzTiKa1iro2NfMsakeH3FGmOO+7jtd3H1CGYZY5KAXB9tGO11eQyuT+tnOjle7vVz+3MuxxVAfd5eRPJw9Sr+jivY95p7vukhXENiqcaYFKCKz86xq3ReX21upm1A9McZXIFzitfrkmyM8Q5mvtrS6e9QRBKAocDxTu6j+hkNUKpbRCRJRBbjGu//gzFmh4/bLBaRcSIiQDWunkuL+3AFrjkMj0SgAden33hccyH+WgOMEJHl7on3RBGZ5T72G+AnInKRu01pInJ9B4+TiOtNs9Kd/PBvPm5zm4hMFpF4XEOYfzbGtHgd/3/untgU4BvAqk7a/SquOaY0ERmGa/7lD+52DsM1fPVPwB3AV9wBq7cScQWU00CkiPwISPI6XgFkiEhH7wmvAt8RkbEiYuezOavm7jTCuJYl/A74bxEZDiAio0Tki907Hf4IfENEstwJJj8FNrp7n2qA0ACl/PV/IuLA1TN5BHgG1xuxL+NxJS84cU3a/8oYU+A+9hiuN+dKEXkQ13qqT3F98t2Na17LL8YYB3A1rl7aSVzZWle4Dz8HrMY1zOhwP+4sX48DPAvE4fp0vwHXkFN7r+CaDzsJxOJKwvBWiGtY8+/Az4wxf+uk6T8GNgMfAztwJYb82H1sBfCWMSbfGHMWuBt4XkSGdvJ4/ngXVzLKfly/73raDoG97v5+VkS2+rj/i7h+B0XAYff9/6WHbXkI1+9qg3tI9X1cPVi/GWP+Dvw/4A3gBK6e9M09bI8KU7pQV6kuiEgBrt7i8z6OZeB6w47qbm9CKdU57UEppZQKSxqglFJKhSUd4lNKKRWWtAellFIqLPWLIorDhg0zGRkZoW6GUkqpbtqyZcsZY0xa17f8vH4RoDIyMti8eXOom6GUUqqbROTTrm/lmw7xKaWUCksaoJRSSoUlDVBKKaXCkgYopZRSYUkDlFJKqbCkAUoppVRY0gCllFIqLA26ALV06VKysrJYunRpqJuilFKqE/1ioW5f2rdvH9u3bw91M5RSSnVh0PWglFJK9Q8aoJRSSoUlDVBKKaXCkgYopZRSYSlgAUpERovIWhHZIyK7ROR+9/VZIrJBREpFZLOI5ASqDUoppfqvQGbxNQPfNcZsFZFEYIuIvAc8CfyHMeYdEclz//yFALZDKaVUPxSwAGWMOQGccF92iMgeYBRggCT3zZKB8kC1QSmlVP8VlHVQIpIBXAZsBJYD74rIz3ANMc4NRhuUUkr1LwFPkhARO/AGsNwYUw38M/AdY8xo4DvACx3cb5l7jmrz6dOnA91MpZRSYSagAUpEonAFp5XGmDfdV98BeC6/DvhMkjDGrDDGZBtjstPSerSdvVJKqX4skFl8gqt3tMcY84zXoXJgofvylcCBQLVBKaVU/xXIOah5wO3ADhEpdV/3Q+CbwHMiEgnUA8sC2AallFL9VCCz+EoA6eDwzEA9r1JKqYFBK0kopZQKSxqglFJKhSUNUEoppcKSBiillFJhSQOUUkqpsKQBSimlVFjSAKWUUiosaYBSSikVljRAKaWUCksaoJRSSoUlDVBKKaXCkgYopZRSYUkDlFJKqbCkAUoppVRY0gCllFIqLGmA6gNLly4lKyuLpUuXhropSik1YARyR91BY9++fWzfvj3UzVBKqQFFe1BKKaXCkgYopZRSYUkDlFJKqbCkAaof0CQMpdRgpEkS/YAmYSilBqOA9aBEZLSIrBWRPSKyS0Tu9zr2LyKyz339k4Fqg1JKqf4rkD2oZuC7xpitIpIIbBGR94B04HpgmjGmQUSGB7ANSiml+qmABShjzAnghPuyQ0T2AKOAbwKPG2Ma3MdOBaoNSiml+q+gJEmISAZwGbARmAAsEJGNIlIoIpd3cJ9lIrJZRDafPn06GM1USikVRgIeoETEDrwBLDfGVOPqtaUCs4HvAX8SEWl/P2PMCmNMtjEmOyUlhZqamkA3VSmlVBgJaBafiEThCk4rjTFvuq8+BrxpjDHAJhFpBYYBHXaTWlpaOH78OFFRUSQnJ5OUlERkpCYgKqXUQBbILD4BXgD2GGOe8Tr0v8CV7ttMAKKBM/48ZlNTE2fOnOHw4cOUl5drr0oppQawQHZD5gG3AztEpNR93Q+BF4EXRWQn0Ajc4e5N+c0Yg9PpxOl0EhkZid1uJykpidjY2D49AaWUUqETyCy+EuBzc0tut/XV8zQ3N1NZWUllZSVRUVEkJiaSmJhITExMXz2FUkqpEBhQEzlNTU2cO3eOc+fOER0dbQWr6OjoUDdNKaVUNw2oAOWtsbGRs2fPcvbsWWJiYkhMTCQpKSnUzVJKKeWnARugvDU0NNDQ0MCZM2doamoCXPNYSimlwtegqmbudDo5d+4cAKdOnWLv3r1UVVXR0tIS4pYppZRqb9AEqM2bN5Obm0tFRQUAFRUVZGdn8/bbb3Po0CGOHz9OdXU1ra2tIW6pUkopGCRDfE6nk2XLlrVZN2WMoaamhmXLllFcXGz9LCIkJCSQlJREQkICPopcKKWUCoJB0YPKz8/vsGfU2tpKfn6+9bNnjVV5eTmffPIJFRUV1NXVBaupSiml3LrsQYnIHFzrlhYAFwB1wE7gbeAPxpiqgLawD3z66acdBpm6ujqOHDni81hraytVVVVUVVURHR1NUlKSlllSSqkg6bQHJSLvAP8EvAtciytATQYeBWKBt0TkukA3srcuuugi4uLifB6Li4tjzJgxXT5GY2MjZ86c4dChQxw7dgyHw6GZgEopFUBddQVuN8a0r5PnBLa6v54WkWEBaVkfysvL4/HHH/d5zGazkZeX163Hq62tpba2FpvNRmJiogYqpZQKgE57UD6CEyJylYh8xV2p3Odtwo3dbmfFihVtkh48yRCe63vCMwTY2NgIuKquNzc391m7lVJqMOtWkoSIPA0swrWX01sBaVGAZGdnU1xcTHp6OgDp6ekUFxeTnZ3dZ8/R3NxspazrEKBSSvVOp0N8IvIz4L+8EiHGADe5L+8IZMMCISEhgZSUFE6ePElKSkqPe05dqampoaamxhoCTE5O1krrSinVTV3NQf0FWCUibwO/Al4GNuBKkFgR4Lb1e5oFqJRSPdfpO6UxZh1wrYjcDvwV+LkxZlZQWjbAeLIAz5w5Q1xcHElJSdjtdiIiIkLdNKWUCktdpZlHisiXgQrgq8BlIrJaRKYFpXUDVF1dHRUVFVpiSSmlOtHVWNP/AqVAPHCrMeYOERkJ/KeIGGPMNwPewgHMU17Ju8RSYmIiCQkJ2GyDosiHUkp1qKsAdZExZrGIROOae8IYUw78k4hkBbx1btXV1TgcDhITE4P1lEHnvY29iBAfH4/dbsdut4e6aUopFRJdBagVIlIKGOBp7wPGmNKAtaqdo0ePMnv2bGbMmMHChQtZuHAh48aNG7CFXL17VqdOnbL2sFJKqcGkqySJXwC/CFJbOiQiNDc3s2nTJjZt2sRTTz3FyJEjyc3NJTc3l9mzZwcsZTzUjDHW/FRDQwMVFRUkJiYSHx8f4pYppVRgdbUO6lHgl8aY8x0cvxKIN8asCUTjPCZNmsR9991HUVERBQUFVFRUUF5ezmuvvcZrr71GVFQUOTk55ObmsnDhQjIyMoLWu3I6nVRWVgJQWVmJ0+kM6LCcJ209MjLS2sY+JiYmYM+nlFKh0tUQ3w5gjYjU46q9dxrXGqjxQBbwPvBTX3cUkdG41k2NAFqBFcaY57yOPwg8BaR1VS7JZrOxaNEiFi1ahDGG/fv3U1hYSFFREVu3bqWpqYl169axbt06HnvsMcaMGcPChQvJzc0lJycnYItkN2/ezLJly6itrQVcmyDm5uayYsWKPqtQ0VEAbG5u5vz585w/f57o6GgrWEVFRfXJ8yqlVKiJP+V4RGQ8MI/PttvYAxQZYzrcKElELgAuMMZsFZFEYAtwgzFmtzt4PQ9MAmZ2FaCmTp1q3nzzTZ/HqqurWb9+vRWwzpxp+1CxsbHMnj3bGg6877772Lt3L5MmTeKtt3percnpdJKbm9tmE0SPhIQEiouLez3s6B0AjTFW8kRnATA2NpakpCQSExN1jZVSKuREZIsxpkef2P0qaWCMOQAc6M4DG2NOACfclx0isgcYBewG/hv4Pn1Qzy8pKYlrr72Wa6+9ltbWVvbs2WMFq+3bt1NfX09BQQEFBQUAREdHA65yRI2NjdbP3eXPJohLlizp0WODf7sA+wqA9fX11NfXc/r0aRISEkhOTiY+Pr5PhzyXLl3Kvn37mDhxIqtWreqzx1VKKW9BqbkjIhnAZcBG9/5Rx40x2zt70xSRZcAygJEjR/r1PDabjSlTpjBlyhTuvfdezp8/z7p166yAVVlZaVUeP3r0KLNmzWLu3LnWcOCIESP8PqeeboLor94GQO+09YiICKvMUl/MV+3bt4/t27f3+nGUUqozAQ9QImIH3gCWA83AI8A1Xd3PGLMCd72/qVOn9qgseGpqKosXL2bx4sW0tLSwY8cO7r33Xs6ePQu49nV6//33ef/99wGYMGGClcaelZXV6XyOZxNEX0HK300QO9OXAbClpaXNfJXWBFRK9QcBLVfg3jPqDWClMeZN4GJgLLBdRMqAC4GtIuJ/16WHIiIiyMrKIi0tDYBx48bxxBNPkJeXR1JSEgD79+/nd7/7Hbfddhtz5szh/vvv58033+T06dOfe7y8vLwOqz30ZBPE9vpiF2BfvHcGPnr0KFVVVVpmSSkVlvz6CC0iacA3gQzv+xhj7urkPgK8AOwxxjzjvv0OYLjXbcqA7FBsehgZGckNN9zADTfcQHNzM6WlpRQVFVFYWMjevXtxOBz89a9/5a9//SsAU6ZMsYYCp02bZm2C2FESQ28TJPp6F2Bf6urqqKur49SpU1pmSSkVdvwd43kLKMaVVt7i533mAbcDO9zVKAB+aIzJ714TAy8yMpLs7Gyys7N54IEHOHnyJEVFRRQVFbF+/XpqamrYtWsXu3bt4le/+hUpKSnMnz+fhQsXsnr1am699VZOnjxJeno6+fn5fbJoONAB0Fv7MksarJRS4cDfABVvjHmoOw9sjCkBOk0dM8ZkdOcxg2XEiBHcdNNN3HTTTTQ2NrJ161Yr0eLgwYNUVlayZs0a1qxZg4hYiQcxMTEdDsv1hGcX4Ly8vD4PgB3pKFjZ7fYBW1pKKRWe/A1Qa0QkLxx7P4EWHR3N7NmzmT17Ng899BDHjh2jsLCQ4uJiPvzwQyutG1yJDQsWLCA3N5cFCxYwf/58a36rp4K1C7Av3sHKsztwb89HKaX85W+Auh/4oYg0Ap7KpcYYM+jerS688EJuvfVWbr31VhoaGti0aRPf+973OH/eVQ3qzJkzvPnmm7z55ptERERw2WWXWSWYJk6c2G97Id67A3tS9f1Z5K2UUj3l70LdgbvPRS/ExMSwYMEC0tPTOX/+PJmZmdx8880UFRWxadMmGhsb2bx5M5s3b+aZZ54hPT3dClZz5szpt1tpeAJTY2MjR44c0coVSqmA8HshjHuBba77x4JAF4jtj6Kjo7njjju44447qK2tZePGjRQUFFBcXMzx48epqKjg9ddf5/XXXycqKoqZM2da664yMzP7Ze/KM8R56tQp4uPjrfkqDVZKqd7yN838ceByYKX7qvtFZL4x5uGAtayfi4+P54orruCKK67AGMMnn3xiVWPfsmULTU1NbNiwgQ0bNvDEE08watQoq3c1a9asfrmdRm1tLbW1tZw6dYq4uDgNVkqpXvG3B5UHZBljWgFE5CVgG6AByg8iwrhx4xg3bhx33XUXTqeTDz/8kMLCQgoLCzl16hTHjx/n1Vdf5dVXXyU6OpqcnByrd9XfGGPaBCvvnpWmrSul/NWdWjcpwDn35eQAtGXQsNvtXH311Vx99dUYY9i3b58VrEpLS2lsbKSkpISSkhJ+8pOfWCWXnE4nDQ0N/Wr/J+/dgTVtXSnVHf4GqMeAbSKyFtfaplzgBwFr1SAiIkyaNIlJkybxrW99i6qqKtatW2ctFD579qy15fuxY8eYNWuWtX3IwoULGTVqVIjPwH/t11jZ7XZrQbAGK6VUe/5m8b0qIgW45qEEeMgYczKQDRuskpOTycvLIy8vj9bWVnbt2sU999xj7XNVV1fH2rVrWbt2LeCqKegJVjNmzOjx9iHBZozB4XDgcDiw2WxWsOrrrUGUUv1XV1u+TzLG7BWRGe6rjrm/jxSRkcaYrYFt3uBms9m49NJLGTZsGGfOnGHcuHF861vforCwkJKSEiorKzl48CAHDx7kxRdfJCEhoc32Ienp6aE+Bb+0trZSXV1NdXU1ERERVrCKi4vTYKXUINZVD+oBXHsyPe3jmAGu7PMWqQ5FRkZy3XXXcd1111nbhxQUFFBUVMSuXbuoqanhvffe47333gNg0qRJVrDKysrqF9trtLS0WAuCvYNVf8xq7Eu6SaQajDp9xzLGLHNf/JIxpt77mIjEBqxV7dhsNiIiImhp8bdO7cDn2T4kKyuL5cuXc+rUKYqLiykqKqKkpASn08nevXvZu3cvv/3tb0lKSrIK3C5YsIChQ4eG+hS65B2sIiMjrVJL/SlJpK/oJpFqMPL3I/V6YIYf1wVEdHQ0F198Mc3NzTQ0NNDQ0GAtEG1ubg5GE8Le8OHD+frXv87Xv/51mpqa2LZtm7V9yP79+6muriY/P5/8fFc5xalTp1pp7FOnTg37tUrNzc3WposxMTEkJyd3WL1CextKDQxdzUGNAEYBcSJyGZ9VJ08Cgj7mEhkZSWRkZJuCqS0tLdTX11NXV2cFrcG+AV9UVBQ5OTnk5OTw4IMPcuLEiTbbh9TW1rJz50527tzJL3/5S1JTU1mwYAELFy5k3rx5pKamhvoUOtXQ0MCpU6c6rF6hvQ2lBoauelBfBO7EtfPtM17XO4AfBqhN3RIREUFCQkKboOUJWLW1tdTV1Q36gHXBBRewdOlSli5datUH9PSuDh06xPnz51m9ejWrV6/GZrMxffp0a+7qkksuCevFte0XBGu1daUGjq7moF4CXhKRrxtj3ghSm3otNjaW2NhYqyfQ0NBgBavBnhUWHR3N3LlzmTt3Lg8//DBHjx61elcbNmygvr6ebdu2sW3bNp599lnS0tLa9K4SE8OzbrD3guCGhgaAQf/BRKn+zt91UG+IyJeBKUCs1/X/GaiG9aWYmBhiYmJITU211glFRkaSlJREfX29tX3EYDR69Ghr+5D6+no2bdpkVbU4evQop0+ftrYPiYyMZMaMGZw9exYI/+02mpqaOHTo0KBOrlCqP/O3WOxvcM05XQE8D9wIbApguwIuIiKCESNGAK5P2p5hQc9XuL/5BkJsbCy5ubnk5uby6KOPUlZWZgWrjz76iKamJjZt+uxl/+STT/jRj35Ebm4uc+bMCepmiv7yTq6Ijo62tgbxlI9SSoUvf7P45hpjponIx8aY/xCRp4E3A9mwYLLZbMTHx1trbYwxbYYFB+M8logwduxYxo4dy5133klNTQ0bNmygsLCQN954g+bmZpqbm1m1ahWrVq0iKiqKyy+/3Jq7Gjt2bNgNpzY2NnLmzBnOnDlDXFwcycnJWsBWqTDmb4Cqc3+vFZGRwFlgbGCaFHoiYs1jeXinttfX11vzHINFQkICV111FVdddRWlpaXs27ePtLQ0xo4dy9atW2lqamL9+vWsX7+exx57jAsvvNBKY8/JySEuLi7Up9CG54OHpyZgUlKSlllSKsz4G6DWiEgK8BSwFVcViecD1qow5JnHSk52FXJvbW21gla4ryHqa5438aFDh/LKK6/gcDhYv369lRl4+vRpjh07xsqVK1m5ciUxMTHMmjXLClijR48O8Rl8xrsmoFauUCq8+Jsk8V/ui2+IyBog1hhT1dl9RGQ08DIwAmgFVhhjnhORp4CvAI3AJ8A3jDGVPT2BULHZbMTFxREXF2eVEIqJiWH06NFtelmDIQEjMTGRL37xi3zxi1/EGMPevXvbbB/S0NBgZQr+13/9FxkZGVawuvzyy8OmwG37MkuJiYlWTUClVPD5myQRAXwZyPDcR0QwxjzTyd2age8aY7aKSCKwRUTeA94DfmCMaRaRJ3Bt2/FQL84hrHiClod3Aobne3+ez3I6nVRWuj5PVFZW4nQ6sdvt1nER4ZJLLuGSSy7hnnvuobKyss32IefOnaOsrIyysjJeeukl4uPjmT17tjV3NXLkyFCdWhstLS1UVlZSWVlJZGQkdrsdu92uBWyVCiJ/h/j+D6gHduDqDXXJGHMCOOG+7BCRPcAoY8zfvG62AVdG4IDVPgEDXJP1nuFBT+mm/lBncPPmzSxbtoza2loAKioqyM3NZcWKFWRnZ/u8T0pKCl/+8pf58pe/TGtrKzt37rSGAnfs2EFtbS0ffPABH3zwAQDjx49vs31IOGTbNTc3W8HKMwxot9t1zkqpAPM3QF1ojJnW0ycRkQzgMmBju0N3AYOuWFp0dDTR0dFtFr02NTW1qTPY0NAQVnUGnU4ny5Yto6amxrrOszh22bJlFBcXd5lmbrPZmDZtGtOmTeO+++7j7NmzbQrcVlVVceDAAQ4cOMALL7yA3W5n3rx55ObmsmDBgrDYPkSrrSsVPP4GqHdE5Jp2vR+/iIgdeANYboyp9rr+EVzDgCs7uN8yXFt9MGbMmO4+bb8TFRVFVFRUm+EyT3FczxxXKD+t5+fndzg02draSn5+PkuWLOnWYw4dOpQbbriBG264gebmZrZv3271rvbs2YPT6eTdd9/l3XffBWDy5MlW72r69OkhT07xVW3dbrcTGxurPSul+oC/AWoD8BcRsQFNuIrGGmNMp4XPRCQKV3BaaYx50+v6O4DFwFWmgxWxxpgVwAqA7Ozswbdqls+K43reiKOjo8nMzGyThFFfXx+U4cFPP/2Uuro6n8fq6uo4cuRIrx4/MjKSmTNnMnPmTL7zne9QUVHRpndVU1PD7t272b17N7/5zW9ISUmxele5ubkMGTKkV8/fW94Lgm02m1UfUtdZKdVz/gaop4E5wI6OAkp74voI+QKwxzuZQkSuxZUUsdAYU9vN9g563hP2Hp7hwfr6empra2loaOjzShgXXXQRcXFxPoNUXFxcn/dy09PTufHGG7nxxhtpampiy5YtVqLFgQNKk/LUAAAgAElEQVQHqKys5O233+btt99GRLj00kutRItQVwFpbW21Utc966wSExNJSEjQnpVS3eBvgDoA7PQ3OLnNA24HdohIqfu6HwI/B2KA99z/rBuMMfd043F7ZeLEiW2+DwTthwc9mYOeShj19fW9ftPOy8vj8ccf93nMZrORl5fXq8fvTFRUFLNnz2b27Nl8//vfp7y8nKKiIgoKCtiwYQN1dXV8/PHHfPzxx/ziF7+wepzV1dVUVlaSkpISsLZ1xXudlc1mazNnpcFKqc75G6BOAAUi8g5glVDoLM3cGFPCZ/tHecvvVgv7WH/cwK67QdVX6SbvOoM92TPLbrezYsUKK4vPGIOIEB8fz4oVK4Jah2/kyJHcfPPN3HzzzTQ0NLB582YKCgooKiqirKzMGvIsLy9nzpw5ZGVlWeuuJk2aFLLA0NraSnV1NdXV1W2CVTjWMFQqHIg/n6xF5N98XW+M+Y8+b5EP2dnZZvPmzcF4qh7Jyspi+/btTJ8+ndLS0q7vEAa8swU93/35W6ipqSEvL4+TJ08yYsQI8vPzw+oN9siRI9x2221UVFR41uq1OT58+HAr0WLu3LlthkpDxZ9Fwf3xb0wpABHZYozxvQ6lC/5WkghKIFLB4ynd5GGM8bk+q31PKyEhgZSUFE6ePElKSkpYBSdwZXympqZSUVHB+PHjefDBB62qFseOHePUqVP8+c9/5s9//rOVmOHpXV188cUh6V15LwrWdVZKfaarLd+fNcYsF5H/w1V/rw1jzHUBa1k/MhDmtUTEClreu9I2Njb22yK5NpvNCj7GGA4fPmwFq82bN9PU1MTGjRvZuHEjTz75JCNHjrR6V7Nnzw7J2ibv1HXPUG24fQhQKli66kG94v7+s0A3pD/rj/Na/vIsKvYELWOMVd3BZrP5HEYLRyJCZmYmmZmZfOMb38DpdLJhwwZr3dXJkycpLy/ntdde47XXXiMqKopZs2ZZASsjIyPobW5tbcXpdOJ0Oq0PBi0tLTQ1NYVFhQ2lAq2rLd+3uC9mGWOe8z4mIvcDhYFqmApPImKt64mKimLcuHHU1tZaX/2lh2W321m0aBGLFi3CGMP+/fspLCykqKjI2j6kpKSEkpISfvrTnzJmzBgrjT0nJ6fNVizB1NzczOHDh4mJicFut5OQkBCytigVaP5m8d0BPNfuujt9XKcGGRGxFqWC6xO+90aP/SFgiQgTJ05k4sSJLFu2jOrq6jYFbs+cOcORI0d45ZVXeOWVV4iNjbW2D8nNzQ3J9iGeOcKzZ89aa+MSEhJ03koNKF3NQd0C/AMwVkRWex1KwrVpoVJteGekwWcBq7a2lpqamrCqL9iRpKQkvvSlL/GlL32J1tZW9uzZY/Wutm/fTn19vTWXBZCZmWnNdc2cOTPo24d4F7P1rmKRkJAQ8nJQSvVGVz2o9bjWQA3DVU3CwwF8HKhGqYGjfcBqbGykrq7O6mWFe8Cy2WxMmTKFKVOmcO+993L+/HnWrVtHYWEhxcXFnD9/nkOHDnHo0CF+//vfEx8fz9y5c63e1YgRI4La3vZVLOLi4qysQE9NR6X6i67moD4FPhWRRUCdMaZVRCYAk3BtvaFUt3iSLjw7Ezc3N7fJEuzJIuJgSk1NZfHixSxevJiWlhZ27NhhJVrs3LmT2tpa3n//fd5//30AJkyYYPWusrKygprcYIyxeq+nTp0iNjbWKmirSRaqP/D3I1URsEBEUoG/A5uBpcCtgWqYGhx81Rb0rMfqyTxWVxsq9qWIiAiysrLIysriX//1Xzlz5gwlJSUUFBSwbt06qqur2b9/P/v37+d3v/sdiYmJbXpXaWlpAWlXRzwfAE6fPk1sbKxVyUKDlQpX/gYoMcbUisjdwC+MMU+KyLZANkwNXu33y2ppaWkzLNhRwOrJhop9adiwYW22DyktLbUSLfbs2YPD4WizfciUKVOsNPZp06YFdb7IE6zOnDlDdHS0lWSh29urcOJ3gBKRObh6THd3875K9Yp3dQX4LGB597AcDkevN1TsS5GRkWRnZ5Odnc0DDzxARUWFFazWrVtHTU0Nu3btYteuXfz6178mJSWF+fPns3DhQubPnx/U7UMaGxs5d+4c586d00oWKqz4G2SWAz8A/mKM2SUimcDawDVLqY61D1jGGH71q191uGC4pxsq9qX09HSWLFnCkiVLaGxsZOvWrVYm4CeffEJlZSVr1qxhzZo1iAjTp0+3eleTJ08OWjt9VbLwfAU7O1Epf2vxFQKFIpLg/vkQ8K+BbJhS/hIRjhw5Yg3ttVdXV8fx48eD3KqORUdHW9uHPPTQQxw7dszKCvzwww+pr6+ntLSU0tJSfv7znzN06FCrZ3ju3LmAzqt5865kAZ/NF3ZW1FapvuRXgHIP770A2IExIjId+JYx5t5ANk4pf40fP56EhIQ2Q3weCQkJzJw5k/Hjx1tzL575rHDIGLzwwgu59dZbufXWW2loaGDTpk1W7+rIkSOcPfvZksNTp05x+eWXc+ONN3LrrbcyceLEoA3Dea+38k5uCUXNQjU4+LvdxkbgRmC1MeYy93U7jTFTA9w+IPy32xhswnHrB4fDwahRo3A4HJ87lpiYSHl5uc9eR319fZt9ssJpXZbT6WT+/Pk+dzH2SE9Pt7IC58yZE5LtQ3TeSnUm4NttABhjjrb7w2vpyRMqFQiJiYnk5+eTl5dHTU0Nra2tVlWF/Pz8Dt+4Y2NjiY2NJTU1FYCmpiarl+VJwAhVMdz8/I739vQU6a2oqOBPf/oTf/rTn4iKimqzfUhmZmZQgkX7eauEhAQrWGklC9Ub/gaooyIyFzAiEo1r/mlP4JqlVPfNnz+f8vJyJk+ezNGjRxk1ahS7d+/uVq8iKiqKqKgoK8XdGGOtyfIErWD1sj799NMOe0/GGJYsWUJmZiYFBQVWgdsNGzawYcMGnnjiCUaNGmX1rmbPnh2UeSPvShbgmm+Li4sjPj6euLg4rWahusXfv5Z7cBWGHQUcA/4GfDtQjVKqp+x2O0OGDOHo0aMMGTKk10NeImL1sjyamprarMtqamrqbbN9uuiii4iLi/MZpOLi4pg+fTpLlizhrrvuwul08uGHH1o1AysqKjh+/Dh//OMf+eMf/0h0dLRV4HbhwoWMGTMmIG1ur7GxkcbGRqqqqgDXB4C4uDgraOkiYdUZv+agQk3noMJLOM5BeQt2+5qbmz+3LqsvOJ1OcnNzO0z86GhtlzGGffv2WYkWpaWltLS0HZHPyMggNzfX2j7Ee3flYIqKirI2ZUxISND5qwEoKHNQXk+21RgzoydPptRAFBkZ+bkK7u0DVk8+CNrtdlasWGFVxzDGICLEx8ezYsWKDhceiwiTJk1i0qRJfOtb36KqqqrN9iFnz56lrKyMsrIyXn75ZeLi4pg9e7a17mrUqFG9+n10R1NT0+fWXXnmr3Q4UPXkL0A/4ijVCV8LiXua3p6dnU1xcTF5eXmcPHmS9PR08vPzu1UVIzk5mby8PPLy8mhtbWXXrl1WsNq+fTt1dXWsXbuWtWtda+/HjRtnBasZM2YEbYGur3VXcXFx1hBrTEyMtVmmGhx6EqDe9udGIjIaeBkYAbQCK4wxz4nIEGAVkAGUATcZY873oB1K9QuebS/i4uKsbMGGhgar0nhXASshIYGUlBROnjxJSkpKr0o22Ww2Lr30Ui699FK+/e1vc+7cOYqLiykqKqKkpITKykoOHjzIwYMHefHFF0lISGhT4DY9Pb3Hz91dzc3NbRIuoG3ShWYJDnxdBigRiQDeNcYsAjDGPOrnYzcD3zXGbBWRRGCLiLyHayfevxtjHheRh4GHgYd61Hql+qmYmBhiYmJITU21MgW9dyIO1gLiIUOGcP3113P99ddb24d45q527dpFTU0N7733Hu+99x4AkyZNsoJVVlZW0Ifh2iddxMTEWPNXWt1i4Onyr8sY0yIitSKSbIyp8veBjTEncG12iDHGISJ7cGUBXg98wX2zl4ACNECpQcxXpqAnpd0TtILBe/uQ+++/n1OnTlFSUkJhYSHr1q3D4XCwd+9e9u7dy29/+1uSkpKYN28eCxcuZMGCBQwbNiwo7fTW0NBAQ0ODVejWs+297iY8MPj78ace2OHuAVkpRcYYv+rxiUgGcBmwEUh3By+MMSdEZHgH91kGLAOClhKrVLhov4DYMw8UzDmY4cOH87WvfY2vfe1rNDU1sW3bNmtzxv3791NdXc0777zDO++8A8DUqVOtNPapU6cGPUC0tLRQXV1NdXU14PodenpX3sFf9R/+Bqi38XPuqT0RsQNvAMuNMdX+ppEaY1YAK8CVZt6T51ZqoPD830RFRXHxxRdb81e1tbUBW4flLSoqipycHHJycnjwwQc5ceKElWixfv16amtr2blzJzt37uSXv/wlqampLFiwgIULFzJv3jwr0AaTJzHl7NmzVoagd9KFprSHP3+rmb8kInHAGGPMPn8fXESicAWnlcaYN91XV4jIBe7e0wXAqW63WqlBLCIiok1ae7AWDnu74IILWLp0KUuXLqWxsZEtW7ZQUFBAUVERhw4d4vz586xevZrVq1djs9nabB9yySWXBD0br32GoIgQExNjpbVrDys8+VvN/CvAz4BoYKyIZAH/aYy5rpP7CK4K6HuMMc94HVoN3AE87v7+Vg/brkJk4sSJbb6r0PKUZ0pKSgICt3C4I9HR0cyZM4c5c+bwgx/8gKNHj1q9qw0bNlBfX8+2bdvYtm0bzz33HGlpaW16V55AG0zeqf+e+StPZmBcXJzufRUm/K1mvgW4Eijwqma+wxhzaSf3mQ8UAztwpZkD/BDXPNSfgDHAEWCJMeZcZ8+vlSRUd4R7pYue6M05tbS0UFNTY30Fc4uR+vr6NtuHHD16tM3xiIgIZsyYYfWuJkyYEBZDbxEREdbSgLi4OGJiYsKiXf1RMCpJNBtjqtq9QJ1GNmNMCR0v6r3Kz+dVSvVSREQESUlJJCUlYYyhrq4Oh8OB0+n8XAmkvhYbG2uVVHr00UcpKyuz6gVu2rSJpqYmPvroIz766COefvppLrjgAuv2c+bM6dWar95oaWlpMyRos9msuStP0NJFw4Hnb4DaKSL/AESIyHhc1czXB65ZSqlA8JRKio+PJz093Zq7qq2tpb6+PqBbi4gIY8eOZezYsdx5553U1NSwceNGK2CVl5dz4sQJVq1axapVq4iKiuLyyy+30tiDtX2IL62trdbvycMTrDy/T+1h9T1/A9S/AI8ADcAfgXeBHweqUUqp4PD0BoYOHUpra2ubgBXouauEhASuvPJKrrzySowxHDx40Epj37JlC01NTaxfv57169fz2GOPceGFF1pp7Dk5OSFfmOuZwzp//ry1ls2zDkuTLvqGvwFqojHmEVxBSik1AHk2G/QMqwVz7kpEGD9+POPHj+fuu+/G4XBY24cUFhZy+vRpjh07xsqVK1m5ciUxMTHk5OQEffuQjniGTj2Lqr0XX3tS27X4bff5+xt7xp0S/jrwmjFmVwDbpJQKA77mrmpqanA6nX2ayr58+XIOHz7M2LFjefbZZwHXDsnXXHMN11xzDcYY9uzZY/WuSktLaWhooLi4mOLiYn784x+TkZFhBavLL7885Fl43gHr/HlXqVFP8VvvxAvVOX/XQV0hIiOAm4AVIpIErDLG6DCfUoOA99xVWloaDQ0NOJ1OHA4HjY2NvXrsw4cPs3fv3k6fe/LkyUyePJl77rmHyspKSkpKrFT28+fPW9uHvPTSS8THxzN79myrZuDIkSN71b6+0r74rc1maxOwdPHw5/nd5zTGnAR+LiJrge8DP0LnoZQalDzFbocOHUpjYyMOh4Oamhrq6+sD/twpKSksXryYxYsX09rays6dO63e1Y4dO6itreWDDz7ggw8+AGDChAlWZuCMGTPCZhff1tZWa/gUPhsW9A5agz1T0N+FupcAS4ElwBngNeC7AWyXUqqfiI6OZujQoQwdOpSWlhZqa2upqamhtraW5ubmgD63zWZj2rRpTJs2jfvuu4+zZ89aQ3/FxcVUVVWxf/9+9u/fz/PPP4/dbmfevHlWwBo+3Gcp0JBoP48Fn1Vr9ywgHmw9LH97UL8HXgWuNsaUB7A9Sql+rH0ZpsbGRmvuqra2NuCLhIcOHcoNN9zADTfcQHNzMx9//LGVxr57926cTifvvvsu7777LgCTJ0+2FglPnz497Cqge1dr9wwJeoZaB8Mclr8B6grgYiBVRM4ZYwLfj1dK9XvR0dFER0eTnJyMMcbqXdXU1AS8ZmBkZCQzZsxgxowZfOc736GiosLanHHdunU4nU52797N7t27+c1vfkNKSkqb3tWQIUMC2r7uaj8k6NlexG63Ex8fPyCHAzsNUCISCfwU+AauskQ24EIR+T3wiDEm8FUplVIDgoi0SWNvamqitrY2aG+s6enp3Hjjjdx44400NTWxdetWK9Fi//79VFZW8vbbb/P2228jIlx66aVWosXUqVPDLgB4by/iSWKx2+0kJCQMmJT2rs7iKSARyDTGOADcGXw/c3/dH9jmKaUGqqioKJKTk62kBc/PwSjBFBUVxaxZs5g1axbf+973KC8vt4YCP/zwQ+rq6vj444/5+OOP+cUvfsGQIUPaFLhNSUkJaPu6yxjTpnflmbvyrMXqrwGrq1YvBiYYr/on7j2d/hnYiwYoFYa02nr/ZLPZSE9Pt0owed5wA13RAmDkyJHccsst3HLLLTQ2NvLRRx9Zi4TLyso4d+4cb731Fm+99RY2m42srCxr3dWkSZPCLnnBM3flERkZaQWr2NhYYmJiwm6+zZdOq5mLyH5jzITuHutrWs1cDXYDsUK7R1fn1tTUZC0QrqurC2i9QF+OHDli9a42btz4uYCZlpZmJVrMnTs3JNuH9ER0dHSblPZApd8Hspr5bhH5R2PMy+2e8DZcPSillAqoqKgoUlJSSElJaZPGXlNTE/ChQIAxY8Zw++23c/vtt1NXV9dm+5Bjx45x+vRp3njjDd544w0rMcPTuxo3blzY9a48GhsbaWxspKqqCnD9nj1ZgoEMWN3RVYD6NvCmiNwFbMG1xcblQBzw1QC3TSml2mifxl5fX28Fq2AsEo6Li7OCjzGGw4cPU1RUREFBAZs3b6apqYlNmzaxadMmnnrqKUaOHGnNXc2ePTtk24f4o6mpiaamJqqrq4HPSjN5it+GIq290wBljDkOzBKRK4EpuPZ3escY8/dgNE4ppTrjmVPxLBKuqanB4XBQW1sb8KFAESEzM5PMzEzuvPNOnE4nGzZssKpanDx5kvLy8jbbh+Tk5FjDgRkZGWHbuwLfpZliYmKsYBUbGxvwmof+1uL7APggoC1RSqle8C5u69lw0BOsgsFut7No0SIWLVqEMYYDBw5YQ4Fbt26lqamJdevWsW7dOh577DHGjBljrbmaNWtW2G/R4dmOxbvShYhYZa88gasvdx/un7mHSg0ympnYPRERESQnJ5OcnExzc7MVrLzfXANJRJgwYQITJkzgm9/8JtXV1axfv57CwkKKi4s5ffo0R44c4Q9/+AN/+MMfiI2NZdasWda6q9GjRwelnb1ljLH2xfLMZXmClmd4sDc6zeILF5rFp9TAFcwMRc8cS3V1dcArWXSktbWVvXv3Wr2r7du3f64EVGZmpjXXNXPmzJBvH9JTUVFRZGZm9jiLTwOUUipkHA4HkydP5tixY1x44YXs3r07aGna3jUCg5Fg0ZHz58+zbt06K5W9srKyzfH4+Hjmzp1rzV2NGDEiRC3tPg1QSql+qaSkhLy8PGu3Xs+Ovvn5+cyfPz+obfHe7r6mpqbXe1z1VEtLCzt37rR6Vzt37vzcbSZMmGD1rrKyssIiHbwjYRugRORFXJUoThljprqvywJ+A8QCzcC9xphNXT2WBiilBhaHw8GoUaOsDDFviYmJlJeXY7fbQ9Ayl+bmZisjMBSLgz3OnDlDSUkJhYWFlJSUWCngHomJicybN4+FCxeyYMEC0tLSQtLOjoRzgMoFnMDLXgHqb8B/G2PeEZE84PvGmC909VgaoJQaWJ5//nmWL19u1Y7zlpCQwHPPPcfdd98dgpZ9nicj0Ol0BiV9vSPNzc2UlpZaaey+diGeMmWKNRQ4bdq0kJcz6m2AClgWnzGmSEQy2l8NJLkvJwO6t5RSg9CBAwd8BieAmpoaDh48GOQWdcw7I9CzZYjT6aSmpibgGzJ6i4yMJDs7m+zsbB544AEqKiqsauzr1q2jpqaGXbt2sWvXLn7961+TkpLC/Pnzyc3NZcGCBWG3fYg/gp1mvhx4V0R+hmvrjrkd3VBElgHLwFVqRCk1cIwfP56EhIQOe1Djxo0LQau61n7LkPr6eitYBaOorbf09HSWLFnCkiVLaGxsZOvWrVaixcGDB6msrGTNmjWsWbMGEWHatGlW72rKlClht32ILwFNknD3oNZ4DfH9HCg0xrwhIjcBy4wxi7p6HB3iU2pgCfc5qJ5obGy0hgJDmRUIcPz4cStYbdiw4XPrv4YOHWotEp4/fz5JSUksX76cw4cPM3bsWJ599tk+aUfYzkGBzwBVBaQYY4y4lhpXGWOSOnkIQAOUUgNROGXx9TXP4mDPvFUoNTQ08NFHH1FQUEBxcTFlZWVtjkdERHDZZZfx6aefcvr0aSZOnMjq1av75Ln7W4DaA/yzMaZARK4CnjTGzOzqcTRAKTUwOZ1OJk+ezNGjRxk9ejS7d+/udz2nrrS0tOBwOKiurg55zwqgrKzM6l1t2rTpcyn1kZGRfPWrX2XhwoXMmTOnV69H2AYoEXkV+AIwDKgA/g3YBzyHa+6rHlea+ZauHksDlFID10De66q9xsZGq5JFMBMsOlJbW8vGjRspLCzk9ddf/1yboqKimDlzprXuKjMzs1t19sI2QPUlDVBKDVyDKUB5q62tpaqqCqfTGbLUdW/XXXcd+/btIy0tjczMTKvArbdRo0ZZiRazZs3qstZe2KaZK6WU6lh8fDzx8fG0trZavapQDgF6ekZDhw7l5Zdfxul08uGHH1rrrioqKjh+/Divvvoqr776KtHR0eTk5Fi9q4suuqjP26QBSimlQshms1k7Bjc0NFjzVaEeArTb7Vx99dVcffXVGGPYt2+ftTljaWkpjY2NlJSUUFJSwk9+8hMyMjKszRlzcnL6ZINDDVBKKRUmPPspDRs2jNraWhwOB06nMyhb23dGRJg0aRKTJk1i2bJlVFVVsW7dOoqLiyksLOTs2bOUlZVRVlbGK6+8QmxsLHPmzOGKK67o1fNqgFJKqTDkGQIcPnx4m2DVfmuOUEhOTiYvL4+8vDxaW1vZvXu3lRm4fft26uvrWbt2LWvXru3V82iAUkqpMOZdvcIYY20TEsqq695sNhtTp05l6tSpfPvb3+bcuXNtCty23z6kOzRAKaVUPyEiVs8qLS0trKpXeAwZMoTrrruO6667DpvNxvjx43v8WBqglFKqn4qOjmbIkCEMGTKE5uZmKxswHHpWQK+rqWuAUkqpASAyMtIKVnV1dVRXV4dFgkVvaIBSSqkBJi4ujri4ONLT0605K6fTGTY9K39pgFJKqQHME6yGDRsWlnNWndEApZRSg0T7OSuHw4HD4QjbYKUBSimlBqHIyEhSU1NJTU2lqamJyMjwCwfhv6WiUkqpgKqvr7fWKzmdTqKjo4mKigpxqzRAKaXUoFZSUsKoUaMoLy8HoLy8nGnTpnH8+HFGjx5NSkpKr9PFeyr8+nRKqUFl4sSJbb6r4HE4HOTl5eFwOKzrWltbrevLy8sZPnw4aWlp1NbWWqnrwdoeRAOUUiqkVq1aFeomDFqrVq3qsLZfa2srq1at4u67725Tbqm1tRWn04nD4aC2tjagwUoDlFJKDVIHDhygpqbG57GamhoOHjz4uettNhtJSUkkJSVZ29k7HA7q6ur6vH0aoJRSapAaP348CQkJPoNUQkIC48aN6/T+ERER1l5WTU1N1l5WfbUgWJMklFJqkFq6dCk2m+8wYLPZWLp0qd+PFRUVxZAhQ8jIyOCiiy4iNTW116nrGqCUUmqQSkxMJD8/n8TERCtQ2Ww263q73d6jx42JiSEtLY3Ro0f3qn0aoJRSahCbP38+5eXljBo1CsBKOZ8/f36IWxbAACUiL4rIKRHZ2e76fxGRfSKyS0SeDNTzK6WU8o/dbmfIkCGAaz+nnvac+loge1D/A1zrfYWIXAFcD0wzxkwBfhbA51dKKdWPBSxAGWOKgHPtrv5n4HFjTIP7NqcC9fxKKaX6t2DPQU0AFojIRhEpFJHLg/z8Siml+olgr4OKBFKB2cDlwJ9EJNP4WIosIsuAZQBjxowJaiOVUkqFXrB7UMeAN43LJqAVGObrhsaYFcaYbGNMdlpaWlAbqZRSKvSCHaD+F7gSQEQmANHAmSC3QSmlVD8QsCE+EXkV+AIwTESOAf8GvAi86E49bwTu8DW8p5RSSgUsQBljbung0G2Bek6llFIDh1aSUEopFZY0QCmllApLGqCUUkqFJQ1QSimlwpIGKKWUUmFJd9RVSinFxIkT23wPBxqglFJKsWrVqlA34XN0iE8ppVRY0gCllFIqLGmAUkopFZY0QCmllApLGqCUUkqFJQ1QSimlwpIGKKWUUmFJ+sN2TCJyGvi0jx5uGANjk8SBcB4D4RxgYJyHnkP4GAjn4X0OFxljerQter8IUH1JRDYbY7JD3Y7eGgjnMRDOAQbGeeg5hI+BcB59dQ46xKeUUiosaYBSSikVlgZjgFoR6gb0kYFwHgPhHGBgnIeeQ/gYCOfRJ+cw6OaglFJK9Q+DsQellFKqH9AApZRSKiwNyAAlIqNFZK2I7BGRXSJyv4/bfEFEqkSk1P31o1C0tTMiUiYiO9zt2+zjuIjIz0XkoIh8LCIzQtHOzojIRK/fcamIVIvI8na3CcvXQkReFJFTIrLT62Hb2XwAAAjZSURBVLohIvKeiBxwf0/t4L53uG9zQETuCF6rP9cOX+fwlIjsdf/N/EVEUjq4b6d/f8HSwTn8u4gc9/qbyevgvteKyD73/8jDwWu1z7b4Oo9VXudQJiKlHdw3XF4Ln++tAfu/MMYMuC/gAmCG+3IisB+Y3O42XwDWhLqtXZxHGTCsk+N5wDuAALOBjaFucxfnEwGcxLVwL+xfCyAXmAHs9LruSeBh9+WHgSd83G8IcMj9PdV9OTWMzuEaINJ9+Qlf52D8+PsL8Tn8O/CgH39vnwCZQDSwvf37QKjPo93xp4Efhflr4fO9NVD/FwOyB2WMOWGM2eq+7AD2AKNC26qAuB542bhsAFJE5IJQN6oTVwGfGGP6qipIQBljioBz7a6+HnjJffkl4AYfd/0i8J4x5pwx5jzwHnBtwBraCV/nYIz5mzGm2f3jBuDCoDesGzp4HfyRAxw0xhwyxjQCr+F6/UKis/MQEQFuAl4NaqO6qZP31oD8XwzIAOVNRDKAy4CNPg7PEZHtIvKOiEwJasP8Y4C/icgWEVnm4/go4KjXz8cI70B8Mx3/A4b7a+GRbow5Aa5/VmC4j9v0p9flLly9cF+6+vsLtfvcw5QvdjCk1J9ehwVAhTHmQAfHw+61aPfeGpD/iwEdoETEDrwBLDfGVLc7vBXXUNN04BfA/wa7fX6YZ4yZAXwJ+LaI5LY7Lj7uE5brBkQkGrgOeN3H4f7wWnRHv3hdROQRoBlY2cFNuvr7C6VfAxcDWcAJXMNj7fWL18HtFjrvPYXVa9HFe2uHd/NxXaevx4ANUCIShesXuNIY82b748aYamOM0305H4gSkWFBbmanjDHl7u+ngL/gGrLwdgwY7fXzhUB5cFrXbV8CthpjKtof6A+vhZcKzzCq+/spH7cJ+9fFPUG9GLjVuCcI2vPj7y9kjDEVxpgWY0wr8Dt8ty3sXwcAEYkEvgas6ug24fRadPDeGpD/iwEZoNzjuS8Ae4wxz3RwmxHu2yEiObh+F2eD18rOiUiCiCR6LuOa2N7Z7margX90Z/PNBqo83eww1OEnxHB/LdpZDXiyj+4A3vJxm3eBa0Qk1T30dI37urAgItcCDwHXGWNqO7iNP39/IdNurvWr+G7bR8B4ERnr7sHfjOv1CzeLgL3GmGO+DobTa9HJe2tg/i9CnRUSiC9gPq6u48dAqfsrD7gHuMd9m/uAXbgyezYAc0Pd7nbnkOlu23Z3Ox9xX+99DgL8Elem0g4gO9Tt7uBc4nEFnGSv68L+tcAVUE8ATbg+/d0NDAX+Dhxwfx/ivm028LzXfe8CDrq/vhFm53AQ11yA53/jN+7bjgTyO/v7C6NzeMX9N/8xrjfHC9qfg/vnPFyZZp+E8hw6Og/39f/j+V/wum24vhYdvbcG5P9CSx0ppZQKSwNyiE8ppVT/pwFKKaVUWNIApZRSKixpgFJKKRWWNEAppZQKSxqgVL8kIl8VESMik/y47Z0iMrIXz/UFEVnTwfVVIrLNXTG7SEQWex2/R/7/9u42NKs6jOP496dlGZlmhURZBpUVJS5nT6ZkSRAhGElmkUkU9SIGUkkPBPYcESxJcC9Gz4FRihWGSENDEyJbLvMpyHzTm5wiGNVM/fXi/7/p7Pae9+5t0W52fWBwds59zrnOYeza/+x/rktaUOW4N/Q1rv6S1CCpNS8vkfR4H48zIl/7SQMbYRjqIkGFejUf2ER6+bKahaT3Sv4LG2032J4INAHLJN0CYLvF9nsn2Pcm4H9LUMDTpNJS/eJUiLUNmNfviEIoiAQV6k6uAzaN9MLm3WXbFue+OR2SXpU0l/Sy4Ie5l87I3Fvn7Pz5Rkkb8vI1kjbnEdFmSRNricv2VuB50ovH3UYlkpok7cjFTVfkQpuPAItyXNMlzZb0TT7/l5LGFY7zlqQNkvZIaipc74J8zA5J7+d150haKenb/DWtwj0cBUyy3VFh20NKRXtH5nM25xHSTklTJa1S6ufzYmG31cC9tdyvEKqJIXmoR3OAtbZ/knRA0tW22yXdlrdda/sPSWNtH5D0KKl30BaAXFWpkl3ADNtHJM0CXgburDG2duCJCuufBC6y3SVpjO2DklqA322/nuM6E7jOtiU9CCwGHsv7XwbMJPXg2S1pOXAp8AypkGinpLH5s0uBZtubJF1AKidzeVk8jVQol5Pv1a3AnBwrwGHbM5Sa030KTCG1jfhZUrPt/flYU2u8VyGcUCSoUI/mA2/k5RX5+3ZSTbO3nevL2a61h9Bo4F1Jl5DKuZzch9h6yn4/kEZxq+m5Wvv5wEe5ztwI4JfCtjW2u4AuSb8B44CbgU9sd0K3650FXFFIxGdIGuXUv6fkXGBf2fnvI5XgmWP778L6Uv26bcB253qPkvaQin/ut31U0uEK5wmhz+IRX6grks4i/WJulbSXNFqZl4tYit61UzjCvz/7pxbWvwCst30lMLtsW281kJq4lbudVDdxCvBdDxMK3gSW2b4KeLjs/F2F5aOkPy57ut5hwPW2J+ev8yokjT85/vp+BCZwfAPD0rmPlcVxjO5/5J4C/FUhnhD6JBJUqDdzSV2EL7Q9wfZ40kjjRmAd8ICk0wAKj7wOkR6NlewlJQro/ghvNPBrXl5Ya2CSJgHPkhJRcf0wYLzt9aTHdmOA0yvEVTz//VTXBtyVk3bxeteR/w+W10+usO9O4OKydd+TEuNntc56zDHsKxt5hdAvkaBCvZlP6odTtBK4x/Za0uOoLZK2AqVp0+8ALaVJEsBzwFJJG0mjkZLXgFckfQ0M72U800vTzEmJqcl2W9lnhgMfSNpGSgLNtg8CnwN3lCZJAEuAj3NcndVObHs78BLwlaQOoNT+oAlozJMndpAmY5TvuwsYnSdLFNdvIt23NaqtJ9dM4IsaPh9CVVHNPIQhStIi4JDt1gE41irgKdu7+x9ZCEmMoEIYupbT/X9KfaLUDHB1JKcw0GIEFUIIYVCKEVQIIYRBKRJUCCGEQSkSVAghhEEpElQIIYRBKRJUCCGEQekfD8AS9erFljkAAAAASUVORK5CYII=\n", - "text/plain": [ - "
" - ] - }, - "metadata": { - "needs_background": "light" - }, - "output_type": "display_data" - } - ], - "source": [ - "x, y = pd.Series(actual_distances, name=\"Actual Distance (km)\"), pd.Series(triangle_approximations, name=\"Over-estimation (%)\")\n", - "sns.regplot(x=x, y=y, color='black', x_bins=8)\n", - "\n", - "plt.title('Distance approximation error')\n", - "plt.tight_layout()\n", - "plt.savefig('overestimation_2.svg')" - ] - }, - { - "cell_type": "code", - "execution_count": 20, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAagAAAEYCAYAAAAJeGK1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJztnXl4VeW1/z+LMcxJMCoODMapopd4g1MdrlqrgrZ6C1RpUDS0VvA6xREsFYsFq22cWlGv4HCLVFuKc2ttHLi9WtvQ0jrVn4lxQGbIQBgDrN8fe+/jPpt9puQcskPW53nOk3Pe/e53r71Pzvvda73rfbeoKoZhGIYRNbq0twGGYRiGEYYJlGEYhhFJTKAMwzCMSGICZRiGYUQSEyjDMAwjkphAGYZhGJHEBMrIKSLyoIhMb2879mREZLCINItI1910vN+JyMTdcSyjcyM2D8poLSLyCbAPsB3YAbwPPAE8rKo7W9HWd1X1j1k202gDIjIDOFhVJ7S3LUbnwzwoo618Q1X7AUOAO4CbgLnta1LHQ0S6tbcNHYmw65XpNbRrHn1MoIysoKqNqvoccAEwUUSOBBCRx0Tkdvf9XiLygog0iMh6EflfEekiIv8DDAaed0NVN7r1fy0iK0WkUUQWi8hw73huu78QkRdFZIOIvC0ixb7tw0XkFfc4q0RkmlveRURuFpFaEVknIk+LSGHYOYlIgWvvGhGpd98f4Nv+uojMFpG/uDY+67UlIkNFREXkMhFZLiIrROQ6374zROQ3IvJLEWkCLhGRniJyj1t/ufu+p1v/JhH5s9epishkEXlPRPJ8x+rms+t2EXnTvZ7Pi8hAEZkvIk0i8lcRGeqz5V4R+dzdtkRETnbLzwamARe47fzD1/53fdfzByLyqYisFpEnRGRA4BpMFJHPRGStiNyS6H/IPf+funVXueHhXu62U0VkmXsdVgKPhpW5db8nIjXud/+ciOznO4aKyBUi8hHwUSJbjGhgAmVkFVX9C7AMODlk83XutiKc0OA0Zxe9CPgMxxvrq6p3uvV/BxwC7A38DZgfaG88cBtQANQAPwYQkX7AH4HfA/sBBwNV7j5XAecD/+Fuqwd+keB0uuB0ekNwBHQz8PNAnYuBcret7cB9ge2nuedwJnCziJzh23Ye8Bsg3z23W4DjgRJgBHAs8AO37l3ANuAHInIIMAuYoKpbEth+IXARsD9QDLzlnksh8AFwq6/uX91jFgJPAr8WkTxV/b17nKfc72VEyHEucV+nAQcBfUOu0UnAYcDXgB+KyFcS2PwT4FDXloNd23/o276va+MQ4LKwMhE5HZgNfBsYBHwK/CpwnPOB44AjEthhRAVVtZe9WvUCPgHOCCn/M3CL+/4x4Hb3/Y+AZ3HGNNJqy7c9H1BggK/dR3zbRwP/ct+PB/6eoJ0PgK/5Pg8CWoBuaZxvCVDv+/w6cIfv8xE4ItIVGOrae7hv+53AXPf9DGBxoP1aYLTv81nAJ77PQ4H17jlMDZSrdw6uXbf4tv8M+J3v8zeApUnOsx4Y4bPzl4Htr+OMF4Ij/FN82w7zrqfPrgN82/8CXBhyTAE2AsW+shOAOvf9qe61zfNtDyubC9zp+9zXtWeo+1mB09v7t2Ov9F7mQRm5YH+cjjTIXTiezh9E5GMRuTlRAyLSVUTucENxTTgCBrCXr9pK3/tNOJ0RwIE4nX0YQ4BF4oQZG3A6+x04Hl3Qht4i8pAbvmoCFgP5Ep8t97nv/adA94CNwe37JdiGu+3TRPVV9RPgNZyOP5HX57HK935zyGfvWiEi14nIB26YsgEYEDiHZITZ3I3465noe/JTBPQGlvi+m9+75R5rdFePMVgWZ4+qNgPrcP4nPYLX3YgoJlBGVhGRY3A6gz8Ft6nqBlW9TlUPwrmLrxCRr3mbA9W/gxMCOwOnwxzqHSINMz7HCWsl2jZKVfN9rzxV/SKk7nU4HsFxqtofOCXEhgN97wfj3K2vTbJ9ue9z8JyX4whoaH0RGY3jVVThiH2bccebbsIJiRWoaj7QyJfnmCrNN8zm7cQLYjqsxRHO4b7vZYCq+sUszJak11BE+gADgS+S7GNEFBMoIyuISH8RORcn3v9LVX0npM65InKwiAjQhOO57HA3r8IZw/DoB2zFufvtjTMWki4vAPuKyDXuwHs/ETnO3fYg8GMRGeLaVCQi5yVopx9Op9ngJj/cGlJngogcISK9cUKYv1HVHb7t011PbDhwKfBUErsX4IwxFYnIXjjjL7907dwLJ3z1XWAi8A1XsNpKPxxBWQN0E5EfAv1921cBQ0UkUV+xALhWRIaJSF++HLPanokR6kxL+G/gbhHZG0BE9heRszI7HZ4ELhWREjfBZBbwtut9Gh0MEyijrTwvIhtwPJNbgEqcjjiMQ3CSF5pxBu0fUNXX3W2zcTrnBhG5Hmc+1ac4d77v44xrpYWqbgC+juOlrcTJ1jrN3Xwv8BxOmHGD2+5xYe0A9wC9cO7u/4wTcgryPzjjYSuBPJwkDD9v4IQ1q4Cfquofkph+O1AN/BN4Bycx5HZ328PAs6r6kqquAyYBj4jIwCTtpcPLOMko/w/nem8hPgT2a/fvOhH5W8j+83CuwWKgzt3/ylbachPOtfqzG1L9I44HmzaqWgVMBxYCK3A86QtbaY/RzthEXcNoJSLyOo63+EjItqE4HXb3TL0JwzAczIMyDMMwIokJlGEYhhFJLMRnGIZhRBLzoAzDMIxI0qEXS9xrr7106NCh7W2GYRiGkQFLlixZq6pFqep1aIEaOnQo1dXV7W2GYRiGkQEi8mnqWhbiMwzDMCKKCZRhGIYRSUygDMMwjEhiAmUYhmFEEhMowzAMI5KYQBmGYRiRxATKMAzDiCQmUElYvz7sobCGYRjG7sAEKgHr169n1qxZJlKGYRjthAlUAgoLC5k2bRqFhYXtbYphGEanxAQqCSZOhmEY7YcJlGEYhhFJTKAMwzCMSJIzgRKRA0XkNRH5QETeE5Gr3fJCEXlFRD5y/xa45SIi94lIjYj8U0T+PVe2GYZhGNEnlx7UduA6Vf0KcDxwhYgcAdwMVKnqIUCV+xlgFHCI+7oMmJND2wzDMIyIkzOBUtUVqvo39/0G4ANgf+A84HG32uPA+e7784An1OHPQL6IDMqVfYZhGEa02S1jUCIyFDgaeBvYR1VXgCNiwN5utf2Bz327LXPLgm1dJiLVIlK9Zs2aXJptGIZhtCM5FygR6QssBK5R1aZkVUPKdJcC1YdVdaSqjiwqSvnE4N2OTew1DMPIDjkVKBHpjiNO81X1t27xKi905/5d7ZYvAw707X4AsDyX9mUbW33CMAwje+Qyi0+AucAHqlrp2/QcMNF9PxF41ld+sZvNdzzQ6IUCOwq2+oRhGEb26JbDtk8ELgLeEZGlbtk04A7gaRGZBHwGjHO3vQSMBmqATcClObQtZ5g4GYZhZIecCZSq/onwcSWAr4XUV+CKXNljGIZhdCxsJQnDMAwjkphAGYZhGJHEBMowDMOIJCZQhmEYRiQxgTIMwzAiiQmUYRiGEUlMoAzDMIxIYgJlGIZhRBITKMMwDCOSmEDlGFs41jAMo3WYQOUQW93cMAyj9ZhA5RBb3dwwDKP1mEDlGBMnwzCM1mECZRiGYUQSEyjDMAwjkphAtRFLgDAMw8gNJlBtwLL0DMMwcocJVBuwLD3DMIzcYQLVRkycDMMwcoMJlGEYhhFJTKAMwzCMSGICZRiGYUQSEyjDMAwjkphAGYZhGJHEBMowDMOIJCZQhmEYRiQxgWoFtnKEYRhG7jGByhBb3sgwDGP3YAKVIba8kWEYxu7BBKoVmDgZhmHkHhMowzAMI5KYQBmGYRiRxATKyAmWRGIYRlsxgTKyjmU6GoaRDUygjKxjmY6GYWQDEygjJ5g4GYbRVkygDMMwjEhiAmUYhmFEkm6pKojICcAE4GRgELAZeBd4Efilqjbm1ELDMAyjU5LUgxKR3wHfBV4GzsYRqCOAHwB5wLMi8s0E+84TkdUi8q6vbIaIfCEiS93XaN+2qSJSIyIfishZbT81wzAMoyOTyoO6SFXXBsqagb+5r5+JyF4J9n0M+DnwRKD8blX9qb9ARI4ALgSGA/sBfxSRQ1V1R+pTMAzDMPZEknpQIeKEiHxNRL4hIt0T1XHLFwPpToQ5D/iVqm5V1TqgBjg2zX0NwzCMPZCMkiRE5GfAGcDxwLOtPOZ/icg/3RBggVu2P/C5r84ytyzMhstEpFpEqtesWdNKEwzDMIyok2oM6qciMsBXNBiYhjMGNbgVx5sDFAMlwArgZ96hQupqWAOq+rCqjlTVkUVFRa0wwTAMw+gIpPKgFgFPiciVItIVZzzpz8BS4OFMD6aqq1R1h6ruBP6bL8N4y4ADfVUPAJZn2r5hGIax55BqDOr/VPVsoAH4vVt2nKqOUNX7Mj2YiAzyffxPnHR1gOeAC0Wkp4gMAw4B/pJp+4ZhGMaeQ6oQXzcROQdYhSMoR4vIcyLyb6kaFpEFwFvAYSKyTEQmAXeKyDsi8k/gNOBaAFV9D3gaeB9HCK+wDD7DMIzOjaiGDvU4G0VewAnn9QYGqupEEdkP+BGgqvq93WNmOCNHjtTq6ur2NMEwDMPIEBFZoqojU9VLNQ9qiKqeKyI9cMaeUNXlwHdFpCQLdnZ41q9fbwujGoZh5IBUSRIPi8hS4G2g0r9BVZfmzKoOgj33yDAMI3ckDfFFnSiE+MyDMgzDyIx0Q3ypkiR+4JtMG7b9dBE5tzUG7imYOBmGYeSGVGNQ7wAviMgWnLX31uAsEnsIzmTbPwKzcmqhYRiG0SlJKlCq+izOiuWHACfirGbeBPwSuExVN+feRMMwDKMzkvJ5UACq+hHwUY5tMQzDMIwY9kRdwzAMI5KYQBmGYRiRxATKMAzDiCRpjUGJSBHwPWCofx9VLc+NWYZhGEZnJy2Bwnk44f/ipJXbIq4dGJtYbBhGRyHdEF9vVb1JVZ9W1YXeK6eWGVnHlmYyDKMjka5AvSAio3NqiZFzCgsLmTZtmnlQhmF0CNIVqKtxV5QQkQ3uqymXhhm5wcTJMIyOQroTdfvl2hDDMAzD8JNukgQi8k3gFPfj66r6Qm5MMgzDMIw0Q3wicgdOmO9993W1W2YYhmEYOSFdD2o0UKKqOwFE5HHg78DNuTLMMAzD6NxkspJEvu/9gGwbsqdgKdyGYRjZIV2Bmg38XUQec72nJdhzoHbB5hkZhmFkj7Qf+S4ig4BjAAHeVtWVuTQsHaLwyPcgtlKDYRhGcrL1yPfD3b//jvOwwmXA58B+bpkRwMTJMAwjO6RKkqgALgN+FrJNgdOzbpFhGIZhkPqR75e5b0ep6hb/NhHJy5lVhmEYRqcn3SSJN9MsMwzDMIyskNSDEpF9gf2BXiJyNE6CBEB/oHeObTMMwzA6ManGoM4CLgEOACp95RuAaTmyyTAMwzBSjkE9DjwuImPs+U+GYRjG7iTd1cwXisg5wHAgz1f+o1wZZhiGYXRu0l0s9kHgAuBKnHGoccCQHNplGIZhdHLSzeL7qqpeDNSr6m3ACcCBuTMr+thyRoZhGLklXYHa7P7dJCL7AS3AsNyYFH1szT3DMIzck+7jNl4QkXzgLuBvOKtIPJIzqyJOYWEh06ZNs2WNDMMwcki6SRIz3bcLReQFIE9VG3NnVvQxcTIMw8gtaQmUiHQFzgGGevuICKpamWw/wzAMw2gt6Yb4nge2AO8AO3NnjmEYhmE4pCtQB6jqv+XUEsMwDMPwkW4W3+9E5MycWmIYhmEYPtIVqD8Di0Rks4g0icgGEWlKtoOIzBOR1SLyrq+sUEReEZGP3L8FbrmIyH0iUiMi/7SHIRpGtLApFUZ7kK5A/Qxncm5vVe2vqv1UtX+KfR4Dzg6U3QxUqeohQJX7GWAUcIj7ugyYk6Zduw37gRqdFZv3Z7QX6QrUR8C7qqrpNqyqi4Hgf/R5wOPu+8eB833lT6jDn4F8ERmU7rFyjf1Ajc6Mzfsz2ot0kyRWAK+LyO+ArV5hK9LM91HVFe6+K0Rkb7d8f+BzX71lbtmKYAMichmOl8XgwYMzPHzrsB+o0dmx/32jPUjXg6rDCcn1APr5XtlCQspCvTVVfVhVR6rqyKKioiyakBz/D9Q8KcMwjNyT7koSt2XpeKtEZJDrPQ0CVrvly4hffPYAYHmWjplVvHCfeVSGYRi5JakHJSL3uH+fF5Hngq9WHO85YKL7fiLwrK/8Yjeb73ig0QsFRg0L9xmGYeweUnlQ/+P+/WmmDYvIAuBUYC8RWQbcCtwBPC0ik4DPcJ4rBfASMBqoATYBl2Z6vN3JnihO69ev3yPPyzCMjkuqR74vcd+WqOq9/m0icjXwRpJ9xyfY9LWQugpckdxUI1dY2NIwjCiSbpLExJCyS7Joh9GOWNjSMIwoktSDEpHxwHeAYYExp/7AulwaZmSPdMJ3Jk6GYUSNVGNQb+LMRdoLZzUJjw3AP3NllJE9LHxnGEZHRdJZHEJE+gCbVXWniBwKHA78TlVbcm1gMkaOHKnV1dXtaUKHwBIgDMOIEiKyRFVHpqqX7hjUYiBPRPbHmbB7Kc5ae0YHwMTJMIyOSLoCJaq6CfgWcL+q/idwRO7MMgzDMDo7aQuUiJwAlAEvumXpruPX6Yna0khRs8cwDCOMdAXqGmAqsEhV3xORg4DXcmfWnkPUVkKPmj2GYRiJSCtJIlZZpI+qbsyhPRnRUZIkopakEDV7DMPoXGQ1SUJEThCR94EP3M8jROSBNtrYaYiaGHj2mBdlGEaUSTfEdw9wFu7kXFX9B3BKrowyco+F+ozdgf1/GW0hXYFCVT8PFO3Isi1GErL9Q7fljYxcYzdBRltJV6A+F5GvAioiPUTketxwn5Ee3o+0NT/WXP3QTZyMXGI3QUZbSVegLsdZbXx/nIcLlmCrj6eNJzC1tbWtEhr7oRsdFfufNdpCRll8UaOjZPHBl5lziTLo2jOzzrL6DMPYnWR7qSN/w39rnUmdm6AA+L2oTEN42Qz12TiBYRhRJWOBAiTrVnQSgqG+2tpaILMQXrYFxcKHhmFElYxDfCJyu6r+IEf2ZERHCvF5eOG02tpa5syZ0ypx6IghuY5os2EYuSFrIT4R6Soif/Q+R0WcOipeJ11cXNxqz6WjdfQWRjQMozWkFChV3QFsEpEBu8GeTkVHE5rWkm4Y0QTMMAw/6Y5BbQHeEZG5InKf98qlYVEn0860s3e+6YiTeVmGYfhJV6BeBKbjPLhwie/VKWlN1p11vsmxZA3DMIKknSQhIr2Awar6YW5NSp/2TJLwxCbdDjWYJGBJA4ZhdFayvZr5N4ClwO/dzyUi8lzbTOz4BL2iZB6SN0nXq2celWEYRnLSDfHNAI4FGgBUdSkwLEc2dQiCIan169czffr0hGvu+Zc5SiecZeJlGEZnJ12B2q6qjYGyjrtGUpZI9Fwlv4fkvebMmcPkyZNj+6QSpz3Rw9rTzscwjNySrkC9KyLfAbqKyCEicj/wZg7t6jB4YgIwc+ZMCgsLYx4SENs2bdo0iouL02pzT0wY2FNF1zCM3JFWkoSI9AZuAc50i14GblfVLTm0LSVRWUkiWcKDJUN8iV0LwzAg/SSJbmm2d5iq3oIjUp2SZJ1rsk53d3XIHaHzj7p9hmFEi3RDfJUi8i8RmSkiw3NqUQSJengq6vZ1ZOyaGkb7kZZAqeppwKnAGuBhEXlHRDrNmnxtWaonFx1csM09ccwqCpjwG0b7kvbjNlR1pareh/N03aXAD3NmVQRpzVI9bengEu2TqM3dKU6dpcM24TeM9iXdibpfEZEZIvIe8HOcDL4DcmpZRPDSxFORqDPzp5Znckz/nKp0jrO76GxehYmTYbQf6XpQjwL1wNdV9T9UdY6qrs6hXZHAE4pEYhEkuJTR9OnTqaysTOoNtYb27DTbWyBT0VmE0zA6A+mmmfcCinEm59a2d3q5Ry7TzL2suLA199LJmFu/fj319fUUFBSE1vU8kUSdfUfIyosaqa6pYRjRICtr8YlINxG5E/gMeBz4JfC5iNwpIt2zY2r08IexvIm3YduS7e95T4koLCzcJfznb9M62MyJunfXkTBP1IgCqUJ8dwGFwEGqWqqqR+N4UvnAT3NtXHuRqqMLbgtLWJg5c2ZsZYmwOt7yR8EFZGtrayPZOUTRpjBMnNpOZxtnNKJLKoE6F/ieqm7wClS1CZgMjM6lYe1NsKPzkiW8pYv85Ymy6vziFKwTFEHPo6qsrEx7zGt3YR1W58I8USMqJB2DEpH/p6qHZrptd5HNMahUyxV5YxsQLl6pxpHSHbfyiFrnYGNihmFki2w9D+p9Ebk4pPEJwL/aYNwn7mTfpSJS7ZYVisgrIvKR+7egte1nSioPwX9HGRayS+ZthYX2Etkwffr00PaiQBRtMnKLecxGe5NKoK4ArhCR10XkZyLyUxF5A7gKJ8zXFk5T1RKfit4MVKnqIUCV+3m3kCykkSiLL5Gg+cOAXpte2ZIlS7IeKsvmJOD2aseIHhbWNSKBqqZ8AacDV+II09fS2SdFe58AewXKPgQGue8HAR+maqe0tFRzybp16/S6667TdevWhW5Ltl+Qmpoave6667SmpiauLFgnE9uS2Zdsv0z3SdTOlClT2tyOEV3suzVyBVCt6WhFOpWy/QLqgL8BS4DL3LKGQJ36BPteBlQD1YMHD87BpYsnEyFKVNcTk6A4lZaWxsqCwpGqLa9upuKZzvZ0MIEyDKO1RF2g9nP/7g38AzglXYHyv3LtQSUjKCiehxQmWlOmTNHy8vJdOvSampq4z35xCraVjjAl2jdXmDgZhtEaIi1QcQbADOD6KIb4wkgmKH5vKLiPX1T8n4NhvzAPKh1hSmRjqvLWiEyUhSnKthmG4ZCuQKW9mnm2EJE+ItLPe4/zlN53geeAiW61icCzu9u2VAQHjoNzmIqLixPOefJe/vX9wFlMds6cObEJuv4VLPz7B7MIk5FsaaW2rrYe5cHzKNtmGEYrSEfFsvkCDsIJ6/0DeA+4xS0fiJO995H7tzBVW+3tQfnLEo0fBT2nYJlqfHgwzJvK1J5EddLxoLJ1zPYiyrYZhuFARwnxteXVnmNQQRJ1/t7YU6IxKn/dYCgvGP4L2ycs9JcoPJjOObRl/CrK4hBl2wyjs2EClSMyyZDzEiQ8kUkkNv4xKf/+VVVVKQUjkbAlE6y2nF8iUglwNo7RWnZn4ohhGKkxgcoSYYKTqKPzd9JhYb0wj8hrc8KECXFiVl1draWlpVpdXZ3UpkR2JjqXXHTU6Xh7ubYhneMahhEN0hWo3Z4k0ZHIZNDdW5188mRngY2wZAcvISLYXkVFBf3792fMmDGxhIkFCxbw0EMPkZ+fH2s/aFPYckvB9f/8tGUR0GRPFvbaLS4uTtmO34Z0kxkyTXqora0NPa5hGB2MdFQsqq/d7UGFfU60LZjskCgJwiuvrq7eJVXdm8zrbQsmWYSF8pKF+lpzvl7ZlClT4rzHtnok6dqX6XkEJ0AbhhE9sBBf7mhNp+qJhj+MF5wPFRbOSzW3KlH9dOwM1ksmBsGwZbaWS8pmPQ8TJ8OINukKlIX4MiRRiM1P2NNyvfdbt26lsrKS2tra2KKyXv0FCxbs0qYXNgtbrNZ77y/3hxDTCWsF514lCr/552AFQ4WtnXeUbtgt3XqeHemEGv31jcyxa2fsFtJRsai+2tODSra6QzIPw7+8UWvmIPmPnypjz1+WKl09+DlRMkg659ra82oLmXp1ltnXeuzaGW0FC/HlhrCwXaI1+IL1a2pq2jyOEzxeWFvB9+Xl5XrkkUeGZhAmstmzM9EYV7Jjp1qjMBcdW6KQZ7BOss9G7sKuhuHHBCoHhHkWYSnlHsG0c2/R2DAPLJMffDKRDEv5rqmp0fLy8l28t2RCkshLDO4f5pklq5OLu+9EwpmsTjptdjY6s2dkNy+7FxOoHBAUqDBh8G/zRMH7XFNTEzdp1y9ckyZNSip2Ybb4BcC/b5jX4nlvnkD62/BsSCQ2iTquYHZhIjuTlWUqzqmOk6yTtfBfajrrOQd/u531+99dmEBlmUTCEdbZrlvnpI2PGDEiJh6eCE2ZMkWrqqriUqE98fA/1DDZhGD/D6i6ulqnTJkSJxaJOv2wEGPweMlChWE2BLMMM/UEvfT1ZJ5Ysv1TlWfSRlDQc02uQp1G5pgHtXsxgcoSibyjYB3v76RJk2Lr71VVVcXKPe/JEyFvW1gbYUISPLZf+MrKymKdfDJbw4QreAy/UKV6IKF/36DApisM/muSygsM7h8WkgzalW4bqbzhbJOLu3S78zc6CiZQWSDYYasm90L8HXVVVVXsvf+BhVVVVUlDYzU1NTp27Ni4JY+8/f3iFvSWguM8wRBgsg4/KDSpBCpM5Ly63vkmSwbxC5n/PLzPwUnLyb4f//HDFuVtrQe1O8I9HaXNKB7T6NiYQGWBYCftffaP46jumgxRU1OjI0aM0LKysrjxoaqqKi0qKtKysjKtrq7exRtat26djhs3TvPy8rSqqiq2KoIndl4bI0aMiJvUu27dul3Glrz61dXVsdBiojBaIjFJVJYoazHozQRFUlVDV8zwX8Nk4hTmASY6fqI6rSEdke7otOXatFXA97RraaTGBCpLhHXEYas7hHkJYV5LdXV1zCvyxo6GDx8elyThD/8FV53wQnr+Djw43uX35DxBDVulwms3TKDCxC7RuXplQc/F71V54hO2AG7QCw27ln4vqTUdWjKPMN39g/aG/W+k20aUaKvIpPrfyOWxMzmOER06hUCNGDFCV69erWvXrtX6+nptbGzUDRs26MaNG3Xz5s26bds23b59u+7cuTOji5fqLj3R852CnkNYZxvWGU+aNEkXLVqU0AZ/O37h8485eR5ZMCTpeVGZLGEU9Aj94pmsMwoe02+L9/J7jsF9w5JDPG/UP4aXjETfXaLEk2Remb9OWLp8OqKV7vb2JpfCnatjZ9J+lK99Z6RTCFSPHj308MMP16OPPlpPPPFEPeOMM/Sb3/ymXnDBBXrppZfqFVdcoddff73+8Ic/1DvuuEPvv/9+nTdvnj799NP64osv6htvvKFLlizRDz/8UL8cL7eBAAAgAElEQVT44gtdv3691tXV6ZVXXqmfffaZbt68Wbdu3aqrVq3SNWvWJM1483sr3svvQfgJfl60aJHus88+Mc/C/4Pyj+n4hckTAH+nHeYN+QUsSNgPN+ix+edQ+T2YZF5EeXl5LAzpt3nSpElxCR3+fcLS4P3thY1teduTnY+/PDg3LBOvLGxsK9G1S0QiYc4Vu7PjD3reuThWe+6/u9vd0+kUAgVoNl/du3fX/v37a1FRkQ4bNkyHDx+uJSUluv/+++vpp5+u55xzjpaVlenFF1+s11xzjf7gBz/Q2bNn6+zZs/Wss87S2bNn669+9St94YUX9MEHH9RXXnlF33zzTS0pKdH33ntPW1padPXq1Tp58uS4FPPrrrsu1IMKy4rzd+RlZWWxTt8vbv52/e2EdSKJOniv8y4rK9MJEybEeUGJFrAN2h603xNu/5ia56F5IpRs7CkdryXR+6A4eWN76XhQYe0lu3aJ6oe1l6tswdbY09rj5MpDSXYzEAWiale2ycX5dQqB2n///XXq1Kl69dVX6/e+9z2dMGGCfutb39JRo0bpqaeeqscee6weeeSRWlxcrIMGDdL8/Hzt0aNHVkUt3VfPnj01Pz9f9957b+3bt68WFBToiBEj9MADD9STTz5ZDz74YP3Od76jV155pV599dV67bXX6oknnqi33HKLPvnkk/r888/ra6+9ptXV1THhW7x4sf7xj3/Uww8/PG4po7BUdv+P3Rv7ChsLCnbknnj4hS+dx1n4PTf/sf0C6xeuSZMmxQlasK10MwqDx0/UgQbnooW1megcEwlVuuGuMNHIRmeXzK5cd6bZtNsrC6500haS/Z/kot09hVz936QrUOLU7ZiMHDlS//KXv8ROZufOnbucYFjZtm3b2LhxY+y1YcMGNm7cyKZNm+LKN27cyPr169mxYwebNm2ioaGBd999l6KiIurq6igoKGD16tV0796dDRs2sH37dnbu3Lnbr0PPnj3Jy8ujd+/e9OnTh6amJgYOHMjnn3/OV7/6Vfbdd1/69OlDnz596Nq1K3/4wx/45JNP2LZtGz/60Y8oKSlh586dzJ07l+7du/PDH/6QAw44gI0bNyIiQPyK4rW1tRQXF+/yQEY/69evp76+nsrKSgBmzpwZa8fbNmfOHKZNmxbbp7CwkNraWiorK5k5c2bcqurTp0+PKws7rn8V9+CK7t4+/n2XLFlCaWnpLg95nDVrFuPHj+f73/8+Tz31VNzq6N52/6rvs2bNYvLkybusoh5mZ3D/VPXTxd9u8Lw9+woKCnLy4MZs2R12PTwS1WnLMZId2/iStny/iRCRJao6MmW9ji5Q1dXVOWs/+KOvr6+noKCA+vp6vvWtb/HII48wYMAADjroIKqqqpg6dSrXX389b7zxBmeeeSYFBQVs2rSJ5uZmPvnkE1577TVGjBhBXl4ey5cv55lnnuHMM89kx44dbNy4kc2bN/Phhx+Sn59PS0sLzc3NbN26lS1btrBp0yZ293clIjFh88SvT58+9OjRgz59+lBXV8cxxxxDnz59GDhwIH379qVLly707duXl19+mYsuuojevXuzfft2Bg0axNy5c7n55ps54IAD6N69e8IO3BMjIK5z9UjUEd9444307NmTioqKmPgl6pC8dsaPH8+CBQt2ecyIJ5ZBcQoTyNra2tDjJSKZwCYTrVQdhWd7sNPN1L5MyEYnn+x6hH3X2T6GidPuxwSqjfg7o/r6embNmsVf/vIXHnvsMYYNG0ZdXR1z5syhZ8+elJeXs2DBAkaPHs3pp5/Oq6++yo033shDDz3EnDlzmDp1KnPmzIl1huPHjwfgkksu4d5772XhwoVUVFRQXFwc553478xramrYb7/9aG5uZtmyZTQ3N9OtWzeam5upqqqKtV9cXMzatWv53e9+x9ChQ6mtreWggw5i06ZNtLS0UF9fz7Jly+jRo0fMM9yyZUtOrmEyunfvHid6vXv3pm/fvvTp0weA3r17M2jQIFpaWnjvvfc49dRTefPNN7nwwgtRVXr16sXLL7/M5MmTY+1UVlZyww03cOihhybsePyi43Xc3jVO1pGnc6efSUeXjsj5xdrvcaY6Tpg9QbFtjY2Z1MtWx9+aa2tEn3QFqtvuMKajEQyLzJkzhylTprB161Z+8pOfUFRURHl5OT179mTMmDHMmzcvJlJDhgxh/vz53HnnneTn5/N///d/NDQ0xDrBzz//nIkTJ3L88cczc+ZM5s+fz7Zt26isrIy14XVCkydPZtasWUyZMiUWbiooKGDu3LlxIbPi4mLOOussTj/9dMDpjNatW0deXh733HMPAJWVlVRUVDBr1ixaWlo45phjGDBgABUVFfzsZz/j8ssvZ/bs2XTt2pXx48fTtWtXHnjgAUaNGkXfvn1ZtWoVv/3tb2lubmb79u0cd9xxbN++nfr6ehobG9m5cydNTU18+umn7Ny5k+7du7N582a2bt0aeo1bWlpobGyksbExre/krbfeAuCNN96IK//Vr34V9/mRRx6hV69eMdHq3bs3PXv2ZMCAAfTo0YPPPvuM0tJSBg4cSNeuXenTpw8vvPACAH/4wx8477zzWLp0aUw4+/TpQ0tLC71792bq1Km72OUXlkT/S8HONShG3oMmgw+59PDEKdH2MIJhyEw9qLBQZqJ9k51f2PZMyWYYzjymjoV5UAkI63gWL17MjBkzqKys5KWXXuKkk07ilVdeoampiXvvvRdwOpPzzz+fESNGcO211zJu3DhKS0vp378/ZWVlXHHFFRx11FHcdNNNzJs3j61btzJ16lQaGhpYsGBB3FhGbW0t559/Ps888wxAzLOaPn06FRUVVFZWMmbMGCoqKigtLeWuu+4CnPGaMWPGMGTIEAoKCrjxxhtRVe666y7q6+uZMWMGM2bMiI1JeD/a2trauLLvf//77L333rGxn9raWm699Vby8vKYOnUqBQUFTJ8+nS1btjBt2rTY54qKilg7q1evZtOmTXTv3p2NGzeyfPlyunXrxooVK9i4cSNr167l+eefZ9u2bZx00kmsX7+ejRs38tZbb3HooYfy/vvvs2PHDvLz89m8eTMtLS00NTWxZcsWduzYkZPvPhEiQteuXcnPz6dv37707NmTxsZGhgwZQv/+/SkoKIh5gn379kVEeOuttzjzzDMpKipi3333RVV56qmnuOiiizjiiCNiItjc3MzAgQOB8LBeJh2r9z3CrmNwiQgeJzieFxSJVGE57+YulbikG7bMRvjQxpyiQ7oeVLtn4rXltTuWOvL+Tpo0SYcPHx7LjPNWRaiqqtKysrK4dOWqqiqdNGmSVlVV6Ve+8hX95je/qWVlZTpu3Dg9/PDDY5ltXlq1P7MumFIdNi/I29ebUxTcr6ysLLY6hTdfyr9wbaIJq/4MOm+CbDALL7hyut8O/+TjZMsW+TP3/HO5/Onf3rE924PrEa5du1aXL1+uU6ZM0cWLF+uFF16oTzzxhL7++uv64osv6lNPPaX33XefnnTSSVpSUqIVFRV62WWX6bhx4/Swww7TM888U0888UQ9+uijdeDAgTp48GDde++9tU+fPioiuz3Ls2vXrtqvXz8tKirSAQMG6Fe+8hU99thj9eSTT9Zzzz1Xv/3tb2t5ebleeeWVevPNN+vtt9+ud999tz788MP60EMP6bPPPqtVVVW6cOFCPeKII/T555/XK664QletWpX0fzv43Qf/JqufTmZcsjlS6bTTlgyyRJPpW8Oenq23u6GzZPFl24NKNnYxa9Ys7rrrrpg34TFmzBgqKytjY0mVlZUsW7aMoqIivvOd77Bw4ULGjBnDwoULKS8vJz8/n8rKSpqamujRowfTpk3j1ltvBZyMPBGhZ8+esbEHz6Py351WVlbGeS7w5aB/fn4+DQ0NseOMGTOGG2+8MZaRFna3XFhYyDPPPMOf/vQnJk+eHDs3z7MLC2H5s+6C4cklS5bEhT7DxlYqKipibXneqne+nhdQV1cXG9/zrq8/G827w040RuPZ530vQFwb3hij/xr/+Mc/5tprr41ldt57772ceuqpLFq0iP/4j//g97//PS0tLZxxxhmoasxL3L59OytXruTDDz9k0KBBbNy4kc8//5yePXvGwp3tNd7Xp0+fWOizZ8+e1NfXc/DBBzNgwAB69+5N165dGThwICLCXnvtxZYtW/jrX//KmDFj4rJA+/TpQ79+/di2bRsHHnggXbt2paGhIbav//369etj39/kyZMTJq6k49llSrLsyta2ZZ5X9rAkiVYQljUUFm6pra2NCU5xcXGsM162bBmPPvoodXV1XHLJJRQXFzN9+nTy8/NjYwiffvppTKjuvvtuNmzYwNVXX82cOXPIy8tjxowZALFswcrKSr7+9a9z/vnnA8R13Pn5+XFhlLq6OiZNmsRRRx1F//79GTNmDE8++SR33nlnrBP2n4PXcc+ZM4fRo0fz7W9/m0ceeYSFCxfyzjvvxLbPnTuXYcOGxYmj18n7wzn19fUx26dPnx4LXwbTm/3pw9OnT6exsZHbbrttF/G86qqrGDBgAF//+tf505/+xOjRo3nppZdi5+qliPuz/rzvLXgsf9jKO65ftIJp7V4d7ybBE2HvmH68G4Nhw4bF2vXOxcv89NoaMGBAbDrDF198ERfuBFi5ciUbN27k+eef59hjj6W5uZkdO3ZQX1/P0qVLOeCAA9i0aROffPIJffv2ZevWrbEM0JaWltb827eJnj17As717dWrF01NTQwdOpRevXrx8ccf09zczMknn8zgwYPp0qULhYWFcQkx3vvt27ez3377xcp79epFly5dEBFEJOH7RNsgubhlKnw2dpVdLEmiFRQWFsalIAfv+rwOrKCggNLS0th+w4YNY8yYMVx44YUsXryY888/n5kzZ3LTTTcxceJEnn32WUaPHk1DQwNjx47l5JNPJj8/n61bt/LGG2/w97//nV69enHMMccAxMRs9uzZfPHFF4wfP54XX3yRAQMGMG/ePNasWcP777/P8ccfz9SpU5k8eTJ1dXUMGzaMhQsXAvDpp59y1VVXMXjwYMARDX/W2uzZs2Np616HP3DgQA488EB69OgRE6WRI0cybNiwuGvT1NQUEymvbPr06axevZoPPviAZ599lpkzZ8YyHb2sRf94xujRoykpKaG8vJyJEycCxETpvvvuo66ujnfffTc2XnbdddfFPKi6ujrOOeccXnzxRfLz8wFi5x82Ryk4WO95vwUFBbvMz/Lqe2ILjhe5detW5s2bx7Bhw2LlXl1vztRDDz0Ud6098SsvL4/t07VrV/r160e/fv3Yd999Wb9+PSNGjIjZ5f2/ffe7342zy/8/6l2rYIe5cuVK8vLyaGpqYsOGDXzwwQc88cQTtLS08I1vfAMRobm5mY0bN8b+eu83bdoU+tq8eTObN29OON7nJcGsWLEiVrZ27dq4Ol4SSiZ06dIlNrevd+/eMe8v+Nd7731WN8OzqKgolijTt2/fuIzRzZs38/Of/5yrrrqKwsLCmKg1NDTEffa/evToEZsXmEgc/a9MMPFLjHlQCQgbnPaHDfxJDd7EUi+JYu7cucybN4/GxkauvfZaAM455xwefPBBbrzxRo444gjmzZtHfX09b775JrNmzeIXv/gFJSUlcXOtvAy+n/zkJ1x++eWxO37PA2tsbGThwoWsWbOGV199lVGjRsWSOLZs2cLy5ct5++23+c1vfsOTTz4ZmyMExIXlvPBZY2Mj5eXlLFy4MC4xwh8OA7jhhhsoKyuL1QNHIB544AHWrl3Lo48+ChATomASx9KlS/n2t7/NqFGjuPTSS3n00Ue59957Y+VPP/00L730UkzELr30Uj7++GMOP/xw7rjjDoqLi3n11VcZMmRIzPurqKhg4cKFoeG/sLlQ48ePj91kBL9jz3bP4/WmDAwbNizmTfmFDeInL/v3B+JS2f0EE3GC3pffY4UvvbxE/69+cQ7ak2kHqO4k9507d7Jjxw7efPNNDj74YJYtW0aXLl1iArdixYo44fPCos3NzdTX18emMmzYsCH2v7R161Y2b94cE8DdTbdu3cjLy6NXr14xL6579+6sXbuWQw45hN69ezNgwIDYdr8AJhPHXr160a2bc88vIjQ2NtKlSxcKCgoSilpDQwP3338/11xzDYWFhQlFL5kHGazXETAPqo0kmtfh7zC8zt4bVzjllFMoLS1l2LBhsRCYdyf+4IMPcv7559O/f3+uuuoq6urqYmHBo446CnA6bq8z9DL8AGbPns2sWbM46qijKCkpoaSkhLq6uriO0/MgCgsLY+NcADfffDNDhgxBVXcRp2HDhjF69OhYOwCTJk1i7ty5sXOeNWsWIsLUqVNjXpOIMH/+fESE+vr6mDdWVlZGRUVFLJzodbyecHiiO23aNM4++2wuvfRSKioqOPLII6mrq2PhwoWcdtpplJSUxMRnyJAhFBUVMXbsWN54443YmNr8+fPJy8uLnUdpaeku4uT3nvwi5HnGnjfk79g9Ifa8qKuvvpqZM2dSWlpKbW1t7Fy9GwkPT3y8Y/i9OP/4nT/E6k8dX79+PVu3bo3LvvPaCIqhvy3vWvvr19bWcsEFF+yyCoZ/P397YXfw9fX1FBYW0rVrVz777LPYGOZXv/rVXdoLw2vTE7nq6mouu+wy5s+fz9ChQ2PCt3379rhwZ3NzMytXruTJJ5/khBNOoE+fPrt4dA0NDezYsSPm3XkhzubmZlatWkW3bt3YsmUL27ZtC7Vt+/btNDc309zczJo1a+K2ffHFF2mdXyJ69OgRG+fbvHkz3bp1Y+jQofTr1y8mYkHRy8/P5/nnn08qgF7IMx0SCVcmnzMJqwZDq9nEBCoJ/rtYL0GiuLg41tF7YwsehYWF3HXXXTFvYsqUKVx00UW0tLSQl5fHgQceyJAhQzj66KMZNmwYxx9/PFdeeSWlpaWMGTOGffbZhwceeIDS0lLy8/OZMWNGTDDy8vLiOqB58+bx0EMPxcZEvM62traWiRMnctxxxzFt2jT23ntvGhoaYjZWVlbS2NjInDlzUFXy8vJ46KGHYuNZRx55JPn5+XEegKrG2igoKIilxXvH3LJlC3l5eQwZMiQ2LufhF4mpU6fywQcfAHDbbbdRUFDAwoULY96oJ+pATODq6+vZsmULd955J4899hiNjY1UVFRw1FFHMWXKlNjEZy95xesYvZuJ4HibPzTpFxC/J+T3alpaWnjhhRc46qijqKysRFWZMmVKXJJKcNknTwD83po/UcD/13+tvOSFoOfu9179Ajd79myqq6tj19yrX1xcHCdOQdu8/1n/ah3BJBZ/WUFBQVKxCxvz8+/f0NDAb37zGx599NHYzVgQf+gU4IQTTogdz+/NrV27ljvuuIPrr7+e/Pz8mNCtW7eOnTt3xrYNGDCAlpYWvvjiC37xi18wduxYNm/eTNeuXVmzZg3PPvssxxxzDL169Yp5c0EB9Jf5w53Jxvu2bdu2izAGxyxbi1+sggKWyNML2xb86yVmZYN0BS3t9izElxh/hth5553Hfffdx5AhQ2Ie1Ne//nVOOeWUuASE+vp6zj33XHbs2MGCBQt44IEHKCsro6mpKTZnqkePHkyZMoWJEyeyZcsWHn744ViH5U22hS/HSoLJA9OnT6epqSmWUOF5OV4Ib8aMGVxzzTWxu34vY9CrD8Td/dfX13PBBRfEPDd/9qB3Tv7EiBtuuIElS5bEPKPp06eHZuuBs96d5+F5K2eUlJTEOkkvScPrrIOej9fBe4K/YMECTjrpJE455ZRYtqB/EnNYaM0T5dtuu41Zs2aRl5fHmDFjGDBgwC4ZisHwXzDE6c8ynD17dtzSSt5x/SE5fxab3ztKNoE3KGDJhM77/wj+3yab+5PMgwrL8PSvgxg8TqIxP39mZPAYqUiVNRe2BFWy9Qb9onnTTTeRn5/P2rVrYwLnf+3YsWOXsuA2ddfzXLlyJT169NhFyMLeB0UuTPy8v7t7Pc8uXbqkPcaXShCD+/To0SP0mIcddpjNg8qURHM9ampqdOzYsTp8+HCdMGGC1tTU6KJFi7R37966aNGiuKfXVldXxx5R4T23qby8XI888sjYfB5vzo+3orh/XpB/nlPYc5NUNWZPeXm5TpgwIbYSuLef/1lUXn2vfW9b2CPXvc/+Y/s/++daBZ/oG7x+XvmRRx4Z91iQ4Arb/mMHn0W1bt26WNueDWGrkPtXZfeusf8cg/ZXVVXpwIED4+aked918OGOyeb/hD0GJTgvLfhgyURzgsK+4+C8tODndFYBT3asdPdN9ryssLlNYefq/75TtZHM5kRzo4IP2Uz3OK1h586dun37dt22bZtu2bJFN23apM3NzdrU1KQNDQ26fv16Xbt2ra5evVpXrlypy5cv188//1w//fRTraur09raWv3oo4/0ww8/3OX1r3/9S//5z3/qW2+9pa+++qq++OKL+utf/1off/xxffDBB/Xuu+/W22+/XW+55RatqKjQyy+/XC+++GIdN26cnnvuuXr66afr8ccfryNGjNBDDz1U999/fy0sLNRevXq1y1McvEcY7bPPPjp06FA94ogjdOTIkTYPKlPC7gY9/IkRnodRV1dHY2MjJSUl3HDDDUybNi12d15RUUFDQwP33HMPqkp5eTnz58+PJQl46eCHHHJIbKUGv5dSWVkZmzMzYMCAXUIx9fX1sblX8+fPZ8qUKbFQnz/lORh68cap/GnTieYoNTU1xUKAnpfg91AaGhooLS2N82DC0ti9RBEvhBh2d+t5YF4400vXXr16NR999FEsM9FLTgjz7rzvxMumCzt//2cvycIfBvMvKRTmzQU9izDPJDgfK5F3ks4K3ona8ofpvKSKYButzQoLW7OvNenaQVu9MHDQE2vNHKNkx8xkzcIokIkHl2x7usfyhym9sbswLy6Rh7dhwwY+++wz+vbty7Zt22L1Eo33JcE8qExJ9Gye4Gz46upq3WeffWIPvPN7RV7dSZMm6UEHHaSHHnpozJvyPA9vlQlvZYSgBxLmQfi3q3756PcJEybs4i0lusMsLS3dxWNL9DykoBfllVdVVemECRO0qKhIq6qq4p47FbYiQaIn4frP07sO3ooU/uP7PZyg9+A9UNH/LKmwJweHnV8iTyFs1Yvg8cO+j7B9kh0/bLt3zt4KG6m8gUTfdWvJdOWGdOv7fxeJ2kl1nEzsaeuzo7LB7lx5IpFH19jYqPX19bpu3Tpds2ZNzJtbtmyZfvbZZ/rJJ58k9eYSvd5+++1dyt577z1dsmSJLl68WF9++WVdtGiRzp8/Xx955BG9//779Sc/+YneeuuteuONN+qVV17ZOR5YmMuljoJi4Q/3qWrcU2HDHlfuhdW8Dt0L9Y0dO1YPO+yw2DI+ixYtinX2/n9q73HpXjgrTHD8y//47U4UMgkuURQW6ksUGvJEd8SIEVpVVRUXegsLXQX3DRMn/6Pgw8JAicKb3jUJnkMmHVOYPYlENHieqcJ0ycJN/v+lsPBhqs48aFe2O8JM20vHzraIaGtEsy3bs0Fbz7m92LFjh7a0tISGLT2RW7Vqla5YsSJO5D7++GOtqanJSORMoLJAsNPw1qfz38F77z3BCa6LV1NTo4cddphOmDBBx44dq2VlZbGxGE/ERo0aFXfX7Hlonkj5x1BUvxQn/zp5nr1hnaxnm98u/x24/2+q8Yaw9fXacmecTBgS3Q0HvTp//bZ0CsnExG+v/5olszuRTcGbnkTHT2ZnR+oA22pne3mIbT1WZ8QTua1bt+rmzZt148aNoWNzJlAZEOyA/J+Doa6gl+SFZMrLy/Wuu+6KJQX4BcFbtLWsrCwmON7+3r5BL8kf9vN7Z157XmgrmUB59g8fPlzHjh0bJwhhgpVILIKkE1pK1jmHXfcw/B5fmLcRVp4pYfukajOV3enalE0xzVa7USPb4pZtD9FoHSZQaRL0HvxjM96YxtixY0PHYzwBqK6u1lGjRmleXp4ef/zxsXBdUCi8FbrDxmm8emH2BdvyvKdkISn/nfyECRPihDWsvWSdbiJRyTScEgx9pbOSdSJPJJ02ktniP0Yi8euIdHT7/bT1XNq6f7bH+Iwv6bACBZwNfAjUADcnq9tWgQqGkfwek/d+woQJOnz4cF20aFFc5zplyhQdN26clpeXx0Ttrrvu0oKCAj300ENjSRBBkQqKgydYYenN/vEWP8kEzX9uwVeiesm8pkSikqk4BAUnlf3B7el4K8naSWRrpmUdobPqCDamS7Y9qEz2i0rCxZ5IhxQooCtQCxwE9AD+ARyRqH42PKhUnZE398afIeZ5Tf7nJXkdb1VVlY4bN07Lysr08MMPj/MAPK/HH+Lzkg6CCQv+eTlBUUs0dhHmPaUTskvHiwmrm6k4ZCps2aSt4bRENxGZXg+j42DfZ+7oqAJ1AvCy7/NUYGqi+rlOklDdNYvLe1BhMDTnn6Tp/Q2beOtPC1+37ssU66CQ+BMxghNvw0JSYdl0qbyjTM6/LSQKQ3YkghNl/d95ewqvkRr7TqJHRxWoscAjvs8XAT8P1LkMqAaqBw8enPULlwy/WIVtC+vEwjyIZN6P9z7ZPonsSjdcZbSOMKE1Dyra2I1DNElXoCK1koSIjAPOUtXvup8vAo5V1SvD6ud6Lb7WEDbLvTUz++0ZMYaRHey3FD3SfdxG1B4esgw40Pf5AGB5O9nSKsJ+CK35cdgPyjCyg/2WOi5RE6i/AoeIyDAR6QFcCDzXzjYZhmEY7UCkngelqttF5L+Al3Ey+uap6nvtbJZhGIbRDkRKoABU9SXgpfa2wzAMw2hfohbiMwzDMAzABMowDMOIKCZQhmEYRiQxgTIMwzAiSaQm6maKiKwBPm3l7nsBa7NoTq7oCHaajdnBbMwOZmN2yKWNQ1S1KFWlDi1QbUFEqtOZydzedAQ7zWRm10AAAAiqSURBVMbsYDZmB7MxO0TBRgvxGYZhGJHEBMowDMOIJJ1ZoB5ubwPSpCPYaTZmB7MxO5iN2aHdbey0Y1CGYRhGtOnMHpRhGIYRYUygDMMwjEjSKQVKRM4WkQ9FpEZEbm5ve8IQkU9E5B0RWSoikXgqo4jME5HVIvKur6xQRF4RkY/cvwURtHGGiHzhXsulIjK6nW08UEReE5EPROQ9EbnaLY/MtUxiY9SuZZ6I/EVE/uHaeZtbPkxE3nav5VPu43uiZuNjIlLnu5Yl7WWja09XEfm7iLzgfm73a9jpBEpEugK/AEYBRwDjReSI9rUqIaepakl7z0Xw8RhwdqDsZqBKVQ8BqtzP7clj7GojwN3utSxxV8xvT7YD16nqV4DjgSvc/8EoXctENkK0ruVW4HRVHQGUAGeLyPHAT3DsPASoByZF0EaAG3zXcmn7mQjA1cAHvs/tfg07nUABxwI1qvqxqm4DfgWc1842dQhUdTGwPlB8HvC4+/5x4PzdalSABDZGClVdoap/c99vwOkU9idC1zKJjZFCHZrdj93dlwKnA79xy9v7WiayMTKIyAHAOcAj7mchAtewMwrU/sDnvs/LiOAPD+cf+A8iskRELmtvY5Kwj6quAKdTA/ZuZ3sS8V8i8k83BNiuYUg/IjIUOBp4m4hey4CNELFr6YamlgKrgVeAWqBBVbe7Vdr9Nx60UVW9a/lj91reLSI929HEe4AbgZ3u54FE4Bp2RoGSkLJI3c24nKiq/44TirxCRE5pb4M6MHOAYpzwygrgZ+1rjoOI9AUWAteoalN72xNGiI2Ru5aqukNVS4ADcCIkXwmrtnutChw8YKOIHAlMBQ4HjgEKgZvawzYRORdYrapL/MUhVXf7NeyMArUMOND3+QBgeTvZkhBVXe7+XQ0swvnhRZFVIjIIwP27up3t2QVVXeV2EDuB/yYC11JEuuN0/PNV9bducaSuZZiNUbyWHqraALyOM2aWLyLeE8Mj8xv32Xi2G0ZVVd0KPEr7XcsTgW+KyCc4Qx6n43hU7X4NO6NA/RU4xM1Q6QFcCDzXzjbFISJ9RKSf9x44E3g3+V7txnPARPf9RODZdrQlFK/Td/lP2vlauvH9ucAHqlrp2xSZa5nIxgheyyIRyXff9wLOwBkvew0Y61Zr72sZZuO/fDcjgjO+0y7XUlWnquoBqjoUpz98VVXLiMA17JQrSbipsfcAXYF5qvrjdjYpDhE5CMdrAugGPBkFG0VkAXAqzjL8q4BbgWeAp4HBwGfAOFVttySFBDaeihOSUuAT4PveWE97ICInAf8LvMOXMf9pOGM8kbiWSWwcT7Su5b/hDOB3xbnhflpVf+T+hn6FEzr7OzDB9VSiZOOrQBFOOG0pcLkvmaJdEJFTgetV9dwoXMNOKVCGYRhG9OmMIT7DMAyjA2ACZRiGYUQSEyjDMAwjkphAGYZhGJHEBMowDMOIJCZQxh6FiPyniKiIHJ5G3UtEZL82HOtUb+XnkPJGd2XoD0VksTtb39t+uYhcnKLdr7bWrrYiIkeLiLcm2wwRub6V7fRwz71b6tqGsSsmUMaexnjgTzgTDlNxCdBqgUrB/6rq0ap6GHAV8HMR+RqAqj6oqk8k2fdUoN0ECme+0/1tbcRdjLkKuKDNFhmdEhMoY4/BXTfuRJzHAlwY2HajOM/X+oeI3CEiY4GRwHz3WTy9xHkG115u/ZEi8rr7/lgRedP1iN4UkcMysct9jMKPgP9y24t5JSJylYi87y4Y+it3YdbLgWtdu04WkW+I81yev4vIH0VkH18780TkdRH5WESu8p3vxW6b/xCR/3HLikRkoYj81X2dGHIN+wH/pqr/CNn2PRH5nXutXncXOF0szjOjjhGR34rz7KDbfbs9A5Rlcr0Mw8Ncb2NP4nzg96r6/0RkvYj8u6r+TURGuduOU9VNIlKoqutF5L9wZs1XAzgrzoTyL+AUVd0uImcAs4AxGdr2N+CGkPKbgWGqulVE8lW1QUQeBJpV9aeuXQXA8aqqIvJdnFWnr3P3Pxw4DegHfCgic4BDgVtwFhxeKyKFbt17cZ7v8ycRGQy8zK4Lq44kZMkd91qdCZzv2gqwTVVPEedhhs8CpTiPOqkVkbtVdZ3b1jEZXivDAEygjD2L8ThLWIGzRMt4HGE4A3hUVTcBtGL5oAHA4yJyCM4SP91bYVsi9fsnjhf3DI63EcYBwFPu2m09gDrfthfd5We2ishqYB/c5/io6lqIO98zgCN8QtxfRPq5z3vyGASsCRz/IpxFls9X1RZfubeG5TvAe96SRyLyMc6CzOtUdYeIbAs5jmGkxEJ8xh6BiAzE6ZgfEWdV5huAC9yFOIX0HhWwnS9/E3m+8pnAa6p6JPCNwLZ0OZr4p5V6nIPzhOdSYEmChIL7gZ+r6lHA9wPH96+NtgPnpjPR+XYBTvA9wXX/ENHYzK7n9y4wFEco/XjH3hmwYyfxN789gS0h9hhGUkygjD2FscATqjpEVYeq6oE4nsZJwB+AchHpDeALeW3ACY15fIIjFBAfwhsAfOG+vyRTw9zFQqfjCJG/vAtwoKq+hhO2ywf6htjlP/5EUlMFfNsVbf/5/gF3HMwtLwnZ9wPg4EDZ33GE8blMsx5dG9YEPC/DSAsTKGNPYTxfrgDvsRD4jqr+HiccVS3OU029tOnHgAe9JAngNuBeEflfHG/E405gtoj8H86K1OlwspdmjiNMV6lqVaBOV+CXIvIOjgjc7T4v6HngP70kCWAG8GvXrrWpDqyq7wE/Bt4QkX8A3uMyrgJGuskT7+MkYwT3/RcwwE2W8Jf/Cee6veglkqTJacBLGdQ3jBi2mrlhGHGIyLXABlV9JAtt/RaYqqoftt0yo7NhHpRhGEHmED+m1CrEeSDoMyZORmsxD8owDMOIJOZBGYZhGJHEBMowDMOIJCZQhmEYRiQxgTIMwzAiiQmUYRiGEUn+P40e53xvEv7kAAAAAElFTkSuQmCC\n", - "text/plain": [ - "
" - ] - }, - "metadata": { - "needs_background": "light" - }, - "output_type": "display_data" - } - ], - "source": [ - "x, y = pd.Series(actual_distances, name=\"Actual Distance (km)\"), pd.Series(triangle_approximations, name=\"Over-estimation (%)\")\n", - "sns.regplot(x=x, y=y, marker='o', color='black', scatter_kws={'s':0.1})\n", - "\n", - "plt.title('Distance approximation error')\n", - "plt.tight_layout()\n", - "plt.savefig('overestimation_3.svg')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": 33, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAagAAAEYCAYAAAAJeGK1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJzt3XmcVNWd///Xp7tZegOEhkg3ICqIggJJEDUuP7eMggsmo6LRhCiGaPRrjJlMYtRoJtHRmIlmdKJBxomJC23cF6JRR0cYV1xwQRhAkKVFmwbsbna6P78/7q2yuru2Xqqruvv9fDzq0VX33rr3U7eq7+eec889x9wdERGRXJOX7QBERETiUYISEZGcpAQlIiI5SQlKRERykhKUiIjkJCUoERHJSUpQ3ZiZ3WFmV2c7ju7MzEaYWb2Z5XfS9v5mZjM6Y1vZZmYjzczNrCDbsSTS2d9/T2O6D6prMrNVwJeA3UADsBj4MzDb3RvbsK4L3P25Dg5T2sHMrgVGufu52Y4lG8xsJLAS6OXuu7MbjWSDSlBd2ynuXgrsBdwA/BT4z+yG1PXk8hl6Loq3v1q7D7vSPu9KsXY77q5HF3wAq4Djm02bDDQCB4av/wT8OnxeBjwJbAY2AvMJTlD+Er5nG1AP/HO4/F+B9cDnwEvAuJjt/An4D+ApoA54Ddg3Zv444NlwO58CPw+n5wE/A1YANcADwMAEn2+PMN5qYFP4fFjM/BeBfwVeD2N8LLIuYCTgwCygCvgE+HHMe68FHgTuAWqBC4A+wC3h8lXh8z7h8j8FXgUKwtcXAR8AfWO2VRAT16+Bl8P9+QQwCLg33NYbwMiYWH4PrAnnvQkcGU4/EdgJ7ArXsyhm/RfE7M+rgI+BzwhK0P2b7YMZwGpgA3Blkt9TH+C34bKfAncAheG8o4G14X5YT/CbaTEtXPZ7wPLwu38cKI/ZhgMXA8uAlWn8xpN+BoLf+ysEv+lPgNuA3uG8O4DfNlvfY8Dl4fNy4CGC39dK4NIUv4/JwMLw9afA75rFGPv9/wr4X4L/jb8DZTHrPjT8bWwGFgFHZ/tYksuPrAegRxu/uDgJKpy+GrgofP4nvkhQ/xr+0/YKH0fyRRVvi3UB5wOlfHHgfidm3p/CA9BkoIDg4Ds3nFcaHix+THAALwUOCeddRnCgHxau94/A/Qk+3yDgH4GicB1/BR6Nmf8isA44ECgODzb3hPMiB437w3kHhQei48P51xIc+E8jOMgXAv8SxjYEGBweRH4VLp9HkKSvBUYTJMwvN9tW7AFqObAv0J+g6vX/gOPDffVn4L9iPse54WctCPfZeqBvTJz3NNsvL/JFgjo/3NY+QAnwMF8kikhcd4afbwKwAzggwf6+hSChDAz39xPAv4bzjiaoSr4x/N4KE0w7liCJfCWcdivwUsw2nODEZSBfJL8ngZ8liCnpZwC+SnDALwiX/RC4LJx3FEHij/zG9yA4CSsPv883gV8AvcP99xFwQpLfxyvAt8P5JcChSb7/FcB+4fteBG4I51UQnJhNDdf79fD14GwfT3L1kfUA9GjjF5c4Qb1KeJZJ0wT1LwRnkKPSXVfM/AHhP2H/mPXOiZk/FVgSPj8beDvBej4Ejot5PTQ8EBSk8XknAptiXkf/8cPXYwlKHPkxB439Y+b/BvjP8Pm1xBw4w2krgKkxr08AVsW8HkmQlD8Ermg2vfkBKvYs/9+Av8W8PoWYZB/nc24CJsTEmSxBPQ/8IGbemMj+jIkrttT5OnBWnG0asIWmpeDDCEs5BMloJ2HiTDLtP4HfxLwuCeMZGb524NhW/MbT/gzhvMuAR2I+02rgqPD194D/Dp8fAqxu9t4rCE8cEvw+XgJ+SUxpKMn3f1XM/B8AT4fPf0p4AhEz/xlgRrr7pKc9dA2q+6kgOJA2dxPB2fbfzewjM/tZohWYWb6Z3WBmK8ysliCBQVBNGLE+5vlWgoMRwHCCg308ewGPmNlmM9tMcLBvIGjs0TyGIjP7o5l9HMbwEjCgWWupNTHPPyYoGZYlmV+eYB7hvI8TLe/uq4AXCA5I/5Hg80V8GvN8W5zXkX2Fmf3YzD40s8/DfdK/2WdIJl7MBTTdn4m+p1iDCUqqb8Z8N0+H0yOq3X17s/c1n9YkHnevJyghVMQs03y/pyPuZzCz/czsSTNbH/5Grifcdx4c/ecSnDABfIugpA/B77A88lnDz/tzmu635nHOJCgVLTGzN8zs5NbGG273jGbbPYLgRE3iUILqRszsYIKDwYLm89y9zt1/7O77EJzFX25mx0VmN1v8W8A0gmqp/gQHZQjOSlNZQ1C9lWjeFHcfEPPo6+7r4iz7Y4ISwSHu3o+gyqZ5DMNjno8gOFvfkGR+Vczr5p+5iuAAEnd5M5tKUKp4niDZt5uZHUlwVn0msIe7DyC4nhb5jM1jbC5ezLtpmhDTsYEgcY6L+V76u3tsMosXS9J9aGbFBNWX65K8pz1uB5YAo8PfyM9p+vu4HzjdzPYiKDU9FE5fQ1A6jP0dlrr71ERxuvsydz+boAr4RuDB8PO1xhqCElTsdovd/YZWrqfHUILqBsysX3hGN5egSui9OMucbGajzMwILvQ2hA8IDmj7xCxeSlDXX0NwZn19K8J5EtjTzC4zsz5mVmpmh4Tz7gCuCw8YmNlgM5uWYD2lBAfNzWY2ELgmzjLnmtlYMysiqMJ80N0bYuZfHZbExgHnAZVJ4r4fuCqMqYzg+sQ9YZxlBNVXFxBcsD8lTFjtVUqQUKqBAjP7BdAvZv6nwEgzS/R/ej/wIzPb28xKCL6nSm9lk2wPbku4E7jZzIYAmFmFmZ3Quo/DfcB5ZjbRzPqE8bwWlj4zoZTgt1xvZvsTNF6Jcve3CfbtHOAZd98cznodqDWzn5pZYVhjcGB4gheXmZ1rZoPDfRVZT0Oi5RO4h+C3c0K4zb5mdrSZDWvlenoMJaiu7QkzqyM4M7sS+B3BgTie0cBzBC3CXgH+4O4vhvP+leDgvNnM/ongQv7HBGe+iwmua6XF3esILv6eQlDVsQw4Jpz9e4IL8X8P436V4Mw2nlsILjJvCJd7Os4yfyG4HraeoEHGpc3m/w9BtebzBC26/p4k9F8TtNJ6F3gPeCucBjAbeMzd57l7DUF1zxwzG5Rkfel4BvgbQSOKj4HtNK1a+mv4t8bM3orz/rsI9sFLBC3RtgP/r42x/JRgX70aVpc9R1CCTZu7Pw9cTVBS+YSgJH1WsveENx7/vE0Rwz8RlPbrCBJsvBOQ+wlqAu6LibOB4Pc5kWC/bSBIYv2TbOtE4AMzqyf4HZ8Vp8ozKXdfQ1Az8XOCxLkG+Ak6DiekG3WlSzKzFwlKi3PizBuJbvAU6fKUuUVEJCcpQYmISE5SFZ+IiOQklaBERCQndYtOEMvKynzkyJHZDkNERNLw5ptvbnD3wamW6xYJauTIkSxcuDDbYYiISBrM7OPUS6mKT0REcpQSlIiI5CQlKBERyUlKUCIikpOUoEREJCcpQYmISE5SghIRkZykBCUiIjmpW9yoKyIiuamhoYHdu3eza9cudu3axe7d6Y+AowQlIjlv+vTpLF26lDFjxlBZmWxgZOlsu3fvbpGAYv82Nja2ed1ZSVBmdgZwLXAAMNndF8bMu4JgxNIG4FJ3fyYbMYr0JLmeAJYuXcqiRYva/P5c/3y5yt2bJKB4iSiTI2JkqwT1PvBN4I+xE81sLMEQ0eOAcuA5M9svHKJZRDKkvQkg13X3z9dW7p4w8bS2Oi4TspKg3P1DADNrPmsaMNfddwArzWw5MBl4pXMjFBHp+hobGxMmoEjJKJfl2jWoCuDVmNdrw2ktmNksYBbAiBEjMh+ZiEiOidcAIfZ5Q0PXrnzKWIIys+eAPePMutLdH0v0tjjT4lZwuvtsYDbApEmTNCywiLRZrl6jamhoiCaceAmoPQ0QMqGhoYGNGzdSXV1NdXU1n332WfR57CNdGUtQ7n58G962Fhge83oYUNUxEYn0XLl6AO4MdXV11NTUAFBTU0NdXR2lpaVNlsnWNap4VXCxj1xJQDt37qSmpiZh0olMq6mp6dBSW65V8T0O3GdmvyNoJDEaeD27IYl0DcmSUE9tJLBgwQKmTp3Kli1bAKiqqqKiooJ58+ZxxBFHZHz7kUYIiZJQtqvgtm7dmrK089lnn7F58+ZWr7tXr14MHjy4xWPIkCFcddVVaa0jW83MvwHcCgwGnjKzd9z9BHf/wMweABYDu4GL1YJPJD1tTULplDByvQQWL766ujqmTp1KXV1ddLnGxsbo9KqqKkpKStq13WSNELKVgNydurq6lKWdzz77LJq4W6OoqChh4ol9PWDAgHgN4QByO0G5+yPAIwnmXQdc17kRieS+tiaJZAko3RJGrt+HFC++ysrKhFVkjY2NVFZWMnPmzKTrzeRNqK3V2NjIpk2bqK6u5tNPP6W6upoNGzbELQHt2LGj1evv169fi0TTPOkMHjy43Um9NXKtik9EEmhLkkiWgCZMmJDxEka6sWcigS1btixhCWHLli0sX7482gghkmh2797NunXrognJ3bnssstYuXIle++9N7fcckuLdaWan8quXbuoqalJWtqJXN9pbbNwM2PQoEEJSztlZWXRaX379m117JmmBCXSTaWq4rr++uvbXcLoKJm4RjZ69GiKiorYunVri3mFhYWUlpayYsUKIEgSELRCa57UVq5cyZIlSxJuJ9H87du3p6xmq66uZtOmTa3ujaGgoCCtarZBgwZRUNB1D/NdN3IRSSpVFddTTz2VsoSR6yLXgGJLQFVVVezatYtJkyYlvAaSl5fHlClTWr09d6e+vr5FyQaC0ul3vvOd6PTYE4N0FRYWNinZxKtiGzJkCAMGDCAvr/sPRqEEJdJNpariMjOKi4vjLlNcXMyoUaMyHWJKiargYq8B1dfXR++tqampYf369ZSUlFBUVMTs2bOZNWsWW7duxd0xs+j04uLi6HYiJZjt27czf/78JqWddevWAbBixQomTpzI9u3b48ZaW1vLa6+9FndeaWlpiyTTPPkMGTKE4uLihEk1F5kZ+fn55OXlkZ+f3+IRb3prEqsSlEiacr0lW3OjR49OmoBOOukkFixYEPe9eXl5TJ8+vUPiSNZII14JqPk1IEhcBbdw4cJoAgL49NNPOeqoo5g9ezaTJk1i4sSJPPTQQ5xzzjnU1NRQWlrK2WefzRNPPMFdd90VTUKffPIJAKtWreKCCy6I+zkiMcXaY489qKurY/fu3RQWFnLWWWdRUVHRJOmUlZVRWFjYIfsyk5onk3SSTqZLcUpQImnKxoX+9pg+fTqXX3553Hl5eXnMmDEj2lBiy5YtNDY2kpeXR3FxMfPmzWtVA4lEn33+/PlNGmmsW7eOoUOHcvfddzNx4sRoM+xk14Di2bFjB6tWrWLmzJlNSjTuzpYtW/j2t7/NgAEDWlzfqa2t5Y9//GO8VUbl5+c3qWJ766232Lx5M3vuuSfXXHMNZWVlDBkyhFWrVvGDH/wg+hm2b9/OAw88EE2O2RJJIM3/pirV5GLJTQlKpIPk2s2wpaWlzJs3L2kCOuKII6iqqmLs2LGsWbOGiooKFi9enHZyityI+uGHH/Lee+/R0NDA+vXr2bVrF5s3b2bKlClNEk4kgcyYMYP58+c3qWaDIEF99NFHLZpPV1UFHcp89NFHHHzwwdTW1iaNq7GxkY0bN7aY3qtXLw488MBo9drOnTt59NFH2blzZ3SZPn368Lvf/S6aZKZNm8bmzZsZMGAAxx57LAD19fX84Ac/iPvZZs2aFfeztVa6JZnmf7sTJSjpVNksZeRaCacjJapGSycBlZSUMHDgQNasWcPAgQObzIt3Daiqqip6Dah5CWj37t3R5PHYY48lbKSxY8cOLr74Yvr378/69etZtmwZEFw3S9Z4YefOnU2SSTLHHHMMM2bMYMiQIfzwhz9k2bJl7LvvvsydOxcIksxRRx3VYn1bt25NmWTmzZuXtAHKvHnzOOOMM6LTUiWbeA9RgpJOls1SRq6VcDpKqpttEyWg2LGAYhPQ2rVrWwxGF1sFV19fH30e6Z8tMm3Dhg1ce+21VFdXs2jRIrZt2xY35t27d/PKK8lH0dljjz2i1WzvvvsutbW1DBkyhJ///OcMHjyYhQsXcvvtt8dttFBYWMhxxx3HYYcdBhD3gN/aJBORn5/P2rVrE362bdu2sWnTJkaOHKlk005KUK3Unc/Cc10293063QG1V1s+X7J7naZMmcKKFSvo27dvk5LOxx9/3GIohtgEtHnz5ibNqNeuXcuaNWuA4J6fU089lY0bN1JTU9PiAL9hwwbuv//+lHGbGaNGjWLlypVxbz4tKiri+eefj5Zgpk2bRm1tLQMHDoyWsPbff39mz54dd/15eXlMnTo1+nrvvfdu8hdg9erVSZPMhg0bKC8vp1evXkBQ9bfffvsBMGnSJO65556EDVAOOOAAevfunXI/SHJKUK3UXc/Cu4Js7fvO6nC0NZ8vUvV29913J+zvraGhgTvvvJMzzjiD4cOHs3PnTsrKyliwYEGLm0VXr14NwP/93/9x0EEHJdzujh07WLp0acL5vXr14sgjj2To0KH079+fOXPmxK2SKyoq4qyzzuK3v/1t3ATl7tESTH19fbSz0s2bN1NfX09JSQklJSXceeedfO9732vRjPz+++9nxIgR0Sq1v/71ry1an02ePJn77rsvYZI58MADcXc2bdoEND0xSdUApaNaQPZ47t7lH1/96le9s0yYMMEBnzBhQqdtM5eceeaZPmHCBD/zzDNb/d7a2lofNmyYAz5s2DCvra3tlPdGtOW7q62t9dLSUicYl6zJo7S01Ovq6tJef6p9F/v+7du3e319vW/evNmrq6v9k08+8bFjxzrg+++/vy9dutSXLl3qM2fOjBtb5DF06FAfOXKkFxUVJV2utY8+ffr47bff7jfeeGOTdZuZFxcX+7333utLly71e++914uLi93MWsy/4IILkm7jkksu8ccff9xLSkqavL+kpMRfeOEFb2hocHf3uro6Hz58uAM+fPjwJt9Je77bZ555xktLSz0vL88Bz8vL89LSUp8/f767u8+fPz/pfEkMWOhpHNuznlw64qEE1Xna+vnT+WdOdADvqANBW2K/8847vbi4OO5BrLi42OfMmZP2+iPzx48f71u2bPHPP//cN2zY4OvXr/e1a9f6AQccEE1Aixcv9gULFvgjjzzis2fP9quvvtpLSkqiyeGggw7yiooKLygoaFOCGTBggO+3335++OGH+7Rp03zgwIEOeHl5ud9zzz3+zDPP+FVXXeWFhYVx319YWOhXX3110n2zePFiX7t2rS9btszLy8sd8IqKCl+3bp3X19f7H/7wh4SJs7i42G+77bYOOzlIJNFvK5KcUm27rcmxp0s3QamKT9LW1mEZ0h32IF4VV2uGTMhWh6PNNTY2Ultb26Qn7N27d0erurZs2cJTTz2VsJpt+fLlHHTQQQmr7nbs2MF7772XMvaCggLOO+88ysvLm/RaUFZW1uL6yLRp09i4cSP9+vXj4IMPBuDBBx9Meo3mlVdeaXKPUXMvv/xytC+/wYMHU1VVRVlZGeXl5QCce+65/PSnP4373ry8PNw9430FJmrlOHfu3LS2nawFpLSfEpQ0kegg355hGdIZ9uDMM8+Mm/xaM2RCsms4bU2uyXpjKCoqoqysjNWrV1NbWxtNojU1Ndx4440tOgiNdEy6YsUKzjzzzLhxAmn3WN27d29uuukm6urquO6666LJJLY7n9gbRmOvwRQUFDRp0nzAAQfQq1cvxowZwz777ENBQUHKazQFBQVxO2KF9PryS3Wf1hNPPNEpfQXGSzJtOTGRjqcEJU20txQTT6p/9hdeeIEf/ehHcZNfugeK9o551NDQwJIlS3j33XdpaGhgw4YN7Nq1i/HjxydMkNu3b+fWW2/lmmuuaRJjVVUV119/fcL9EdF84LdXX32VTZs2MXToUK6//noGDx7M//7v/3LzzTfHbUqdn5/Pjh07OP/88zn77LM58sgjqaqqory8nIULF9K/f/+0ewp4+OGHW0xL1RDgpJNOYv78+e3qyy/ZfVpLlizJWl+BqbqJyoV+CnuC7t8dbg8zffp0Jk6c2KGtiNIpxSQT+WePp6ioiIceeoi6urroNmKT3/DhwxO+N3KgWLBgARUVFdHeBiIJaMGCBdTW1jJlypS46//617/OHXfcwQ033MBPfvKTaBXbihUr+PKXv8zee+/NIYcckrCaq7GxkY8//jjuQczMGDduHKeeeiozZ87kiiuuiFZt7bPPPrz55pu8/fbbPPvss8ydO5c//OEPDB06FICBAwdy8skn87WvfY2tW7cm7Jx027ZtbNy4kaFDh7LPPvswePBgAMrKythzzz0pLCykd+/e5Ofnt6kbm0gJp7S0NNrnWl5eXnT6jBkzEvbF1pqWbJESDNCkmmz69Olpr3/MmDFMmDCBMWPGpP35kmnNtiVzVIJqha4wNHYm+otrbykm2Zl4Q0NDwvFqGhsbMbOEBwoz45hjjmHChAnRG0Uj76urq+O4447j0EMPTZhgtm/fzkUXXdRi+rZt21i7dm2LbZkZjY2N9O7dmylTpkSbUt9yyy0tRjB1d1atWsUTTzxBv379yM/P58knn4yWNsePH09eXl6Tzxa536agoICysjIADjzwwKyeyafqiSJVV0oRkcTRmgSSTldNER39v9aabSdTV1dHZWUly5YtY/To0UyfPr3D75/r1tJpSZHrj85oxZduS7JstvJLpyl2ui3NYuen05It1f5JNP9b3/pW0tZml112mT/44IMtWpP16tXLjzrqKB81alS0CXJbHnl5eT506FAfP358tJVcWVmZ/+pXv/I//vGP/uijj/prr73mK1eujDbzHjdunG/cuNE///xzv+2225K2REu3lV+i764jm7m3R7J1d0RLtkyvv63bT2fbid4b+c1H/neKi4vVDD1Emq34VMWXhthrMPGqoWLP3rMlWTVXuuKVgCB1dcfUqVNT7p/DDjuMlStXRquxvvSlLzF//nwqKioS3nFvZtxxxx2cfvrpLUpBu3bt4qWXXmL58uVJW5L169cvYex9+/blxhtv5N133+WJJ56gf//+0emXXHIJs2bNYtq0aUyePJmRI0c2KeHsscce9OvXj9WrV6fVUCDRvoXk312qarZcaDWWqIquq6y/vduOV70Ye8yIlH63bNmSU8eMrkAJKg3pXoNJdhDKpHQTaEceJM2MkpISHnnkER566KGETaK3b9/ON7/5Tc477zzOOeecaA/T69evZ+LEidx0000JO/9097jXX3r37s2hhx7KKaecwuGHH56wirCoqIhrrrmGoqKiuPN79erFhRdeyJIlSzjwwAOjYwJVVVUxYsSItJJ7sutr6VwjS+e7i1SzVVRUAETX1ZG9WEjbVVZW8s477zSpZmzvdVsJKEGlIZ1rMB1RgmmrdP4ZUh0kEzUkOPHEE1m+fDnDhg3jscceY4899gCCOvpzzjmHO++8k5tuuilhKWLXrl08++yz/OUvf+GZZ56JloSSlXogSB7nn38+d9xxB48//jhvvPEGY8eOBYIz1hdeeIGHH36YefPmJRwMLj8/n1mzZvG3v/0tYQnE3dtVOm5v6fLuu+9O60CWzVKEtJ6aqXcMNZJIQ6omp8OGDWtXM+z2SvXP8NZbb3HZZZfFbUhwwgkncP755ycsxWzdupWJEydG+zqLSGfgNwhKWuXl5YwZM4bBgwfz3HPPUVNTw/Dhw5k9ezYVFRUMHTqUhoYGJk2axNq1axk+fHjcMYkOPPDA6L06ffv2BYIqvPaMeTRnzpx23Qya6mL6U089lXT9Tz31lA5k3ZCaqXcMJag0pLofxDvwjvfmrezcPdrzdOwjMkRCQ0MDgwYNorCwMG5rtd69e/P6668nbKq8detWbrvttoTxuHvcf7LYgd8GDBjAww8/3GI4bAj+Gd9++2369+9PQUEBX/nKV6ipqWHgwIGceOKJTZYdNGgQa9euTVhCSFQt0p4xj1pzppuoJVqy7ae62dTMusWBrC2t9HJJR8evzmQ7hhJUGjrqjnd3jyag0aNH86c//alJwmloaOD9999n8eLF7Ny5k2XLljUptbg7F198MStWrKCsrIzTTz+d6upq1q1bl7AEtHPnThYuXNjmz15QUMA3vvENTjvtNMrLy7noootYsmQJY8aMYf78+RQUFFBQUMArr7yScP9E7s+B5AeC9hwk2trlTGvOdJNdN0i0/VTrP+mkkxJWA3elA1l7r6lkO8Eli7+9TeQbGxvZsmULxcXF5OXl5Uzjlq5ACSpNzc+Sy8vLWbRoEYWFhbzzzjsUFRXFvQ5TWFhI//79Wb58OY2Njbz33nssWbKEnTt3Rq8H7d69m40bN1JdXR0djbS6uppf/OIXTbrKifRuALBq1aq0E09RURHbtm2Le92nd+/eXHjhhcyZMydu/H379uWuu+6K/kONHz+ePn36MGbMmCaNA9IdOjzZgSAbB7lMn+mmWv+MGTOYMGFCu++36epyudFAW2OL/E9UVlayfPlyRo0axfTp03vMd9oRlKCgRfVZQ0NDtPqseQknclAuKSlhw4YNAHzta19Leqf+nnvuydNPPx1NNABr1qzhtNNOo7q6mo0bN8Yd+C0yNHUikQ5AI3/79+9PZWVldGC3e+65h7333pvGxkYmT54c9yy+T58+XHfddZxxxhntviEy2x1ntuVA0lE3ZLZn/ekmd+l6SkpK2t2hbU/WrRJUJKnEJpfmiab560TNo1PZuXMnb7zxRrRH6qOPPpqnn366xfq2bdvGeeed1+L9W7Zs4cMPP0y6jfz8fI499ljGjRsX7a/t+uuvZ9WqVYwZM4bHH3+cgoICevXqFf37yiuv8P777zNs2DBOPPHEaOJ8+umndZBMINOfvT3XyER6sm6RoOJdr2ktd+fzzz+PlnJih0GIfUT6a/voo48499xz015/cXExZWVlVFVVsWvXLoqKivje975HRUUFpaWlXH755S0aOTQ0NPDyyy9z22230b9/f3r16sWtt94KBCWf0aNHtyi5jR3oFXjoAAAZ4UlEQVQ7lvz8fMaMGdNkXmcdJLN9LaGtMp0gOiMBZXLfd9XvVbq2rCQoM7sJOAXYCawAznP3zeG8K4CZQANwqbs/k846EyWnhoaG6PWdZImnuro6YUODZAYMGMCQIUMoKytjyJAhvPTSS2zcuJHy8nJuuummaMln8eLFzJo1KzqUwrZt25gzZw533303K1euTFpFOH/+fGbOnEldXV10+OmNGzdSX1/fol+vbFfB5fK1hO4uk/te36tkQ7ZKUM8CV7j7bjO7EbgC+KmZjQXOAsYB5cBzZrafuyeth/v888+57777WiSczz77jI0bN7a6Gi8vL49BgwY1GeQt8pgzZw7r1q1j33335dFHH0068Nuhhx5K79692b59O9///vebXAOKNN8+77zzuOCCC1J2l5PueEwiIt1FVhKUu/895uWrwOnh82nAXHffAaw0s+XAZOCVZOtbvXo1v/zlL1Nut1evXi0STmwjg8hj0KBB5Ofnx11H5EyyV69elJSU0KtXr+gjch0Igiq4ffbZB4A5c+YkLOE1NjZSU1PTaTcC9+Sqmp782UW6oly4BnU+EKk/qCBIWBFrw2ktmNksYFb4nL322itu8ol9DBgwIO1xcfLz85skncjfSImpT58+jBw5ssX74nV7k+pm0EGDBiXtLqcjbwROVVXTnQ/iqqYS6VoylqDM7DlgzzizrnT3x8JlrgR2A/dG3hZn+bhFD3efDcwGGD9+vD/44IOtiS16g2nz0k/kb6JElirBxTvAp7pZc9y4cTkx9DX07IN4d07OIl1RxhKUux+fbL6ZzQBOBo7zL+q/1gLDYxYbBlS1dttmFjfpNK+Gy4R4B/h0bgYtKSnJyaGve5Ku3huCSHeTrVZ8JwI/Bf4/d49tHfA4cJ+Z/Y6gkcRo4PVU6ysoKKC8vDyagBJdP+oImRwZNFErO/Xr1TX05NKnSCZk6xrUbUAf4NmwyuxVd7/Q3T8wsweAxQRVfxenasEHwUG6s25sbG+3J225GTTTvR1IblAJTKSpbLXiS1gn5e7XAdd1YjidJp37kNrSY7Z0DakSkEpgIk2llaDMbAhwOEG12zbgfYIx5eM3LZM2y/aNtpI5SkBtp9Jlz5Q0QZnZMcDPgIHA28BnQF/gNGBfM3sQ+Dd3r810oCLScym590ypSlBTge+5++rmM8ysgKAV3teBhzIQm4iIZFBdXR2VlZUsW7aM0aNHM3369Bbdp2VT0gTl7j9JMm838GiHR9TNtbeqQlUdPZe+e+lIke7TYgdUvPzyy3Oq+zRrTQ/gZnYocD1BC7zfuvsjmQqsNSZNmuTtGTVWRKQnqauro6Kiokn3aRGlpaWt6j6tLczsTXeflGq5+P3rfLGS5j1BXA6cCpwI/EvbwxMRkWyprKxM2X1aLkh1DeoOM3sTuMndtwObgW8BjYAaRoiIdEGp+gftyO7T2iNpCcrdTwPeAZ40s28DlxEkpyKClnwiItLFRPoHjSeXuk9LmqAA3P0J4ARgAPAwsNTd/93dqzMdnIiIdLzp06cnHUEhV7pPS3UN6lQzWwD8N8HNuWcB3zCz+81s384IUEREOlak+7TS0tJoSaq4uDg6PVc6AUh1DerXwGFAITDP3ScDl5vZaILuiM7KcHwiIpIBke7TKisrWb58OaNGjYqOrBCR7fukkjYzN7P5wJ8IEtSJ7n5yJ8XVKmpmLiLSseLdJ5WXl9ch90l1SDNz4BsEDSJ2E7TeExGRbq6uro6pU6dSV1cXbe23ZcuW6PT6+vpOiSNVgtru7re6+x2J+tszs9yorBQRkQ6RK/dJpUpQj5nZv5nZUWYWbZNoZvuY2Uwze4bgpl0REekmcuU+qVR98R1nZlOB7wOHm9keBNV9S4GngBnuvj7zYYqISGeJ3CcVL0l15n1SreqLL1epkYSISMfJdF99HdVIQkREephcuU8qK0O+i4hIbkvnPqlMU4ISEZG4SkpKmDlzZta2n3aCMrN84Eux74k30q6IiEhHSCtBmdn/A64BPiXozRzAgfEZiktERHq4dEtQPwTGuHtNJoMRERGJSLcV3xrg80wGIiIiEivdEtRHwItm9hSwIzLR3X+XkahERKTHSzdBrQ4fvcOHiIhIRqWVoNz9lwBmVhq89M7pylZERHqstK5BmdmBZvY2wai6H5jZm2Y2LrOhiYhIT5ZuI4nZwOXuvpe77wX8GLizrRs1s1+Z2btm9o6Z/d3MysPpZmb/bmbLw/lfaes22mP69OlMnDiR6dOnZ2PzIiJC+gmq2N1fiLxw9xeB4sSLp3STu49394nAk8AvwulTgNHhYxZwezu20WZLly5l0aJFLF26NBubFxER0k9QH5nZ1WY2MnxcBaxs60abDX5YTHDTL8A04M8eeBUYYGZD27odERHputJNUOcDg4GHgUfC5+e1Z8Nmdp2ZrQHO4YsSVAXBPVcRa8NpIiLSw6Tbim8TcGlrVmxmzwF7xpl1pbs/5u5XAlea2RXAJQRdKVm8zSdY/yyCakBGjBjRmtBERKQLSJqgzOwWd7/MzJ4gTqJw91MTvdfdj08zhvsIRue9hqDENDxm3jCgKsH6ZxM03mDSpEldf9RFERFpIlUJ6i/h39925EbNbLS7LwtfngosCZ8/DlxiZnOBQ4DP3f2Tjty2iIh0DUkTlLu/GT6d6O6/j51nZj8E/qeN273BzMYQ9Iz+MXBhOH0eMBVYDmylnde5RESk60q3q6MZwO+bTftunGlpcfd/TDDdgYvbsk4REeleUl2DOhv4FrC3mT0eM6sU0NAbIiKSMalKUC8DnwBlwL/FTK8D3s1UUCIiIqmuQX1McI3osM4JR0REJJBuZ7GHmtkbZlZvZjvNrMHMalO/U0REpG3S7UniNuBsYBlQCFwA3JqpoERERNJtxYe7LzezfHdvAP7LzF7OYFwiItLDpZugtppZb+AdM/sNQcOJ9vRmLiIiklS6VXzfBvIJ+szbQtAdUdx7mURERDpCup3Ffhw+3Qb8MnPhiIiIBNJtxXeymb1tZhvNrNbM6tSKT0REMinda1C3AN8E3gu7IxIREcmodK9BrQHeV3ISEZHOkm4J6p+BeWb2P8COyER3/11GohIRkR4v3QR1HVAP9AV6Zy4cERGRQLoJaqC7/0NGIxEREYmR7jWo58xMCUpERDpNugnqYuBpM9umZuYiItIZ0r1RtzTTgYiIiMRKNaLu/u6+xMy+Em++u7+VmbBERKSnS1WCuhyYRdPRdCMcOLbDIxIRESH1iLqzwqdT3H177Dwz65uxqEREpMdLt5FEvLGfNB6UiIhkTKprUHsCFUChmX0ZsHBWP6Aow7GJiEgPluoa1AnAd4FhBNehIgmqDvh55sISEZGeLtU1qLuBu83sH939oU6KSUREJO1rUMPMrJ8F5pjZW+pZQkREMindBHW+u9cC/wAMAc4DbshYVCIi0uOlm6Ai156mAv/l7otipomIiHS4dBPUm2b2d4IE9YyZlQKNmQtLRER6unQT1EzgZ8DB7r6VYEyo89q7cTP7JzNzMysLX5uZ/buZLTezdxN1sSQiIt1fugnKgbHApeHrYoLBC9vMzIYDXwdWx0yeAowOH7OA29uzDRER6brSTVB/AA4Dzg5f1wH/0c5t30wwlLzHTJsG/NkDrwIDzGxoO7cjIiJdULoJ6hB3vxjYDuDum2jH0O9mdiqwLmxsEasCWBPzem04Ld46ZpnZQjNbWF1d3dZQREQkR6U75PsuM8snLO2Y2WBSNJIws+eAPePMupKgF4p491HFaxnocabh7rOB2QCTJk2Ku4yIiHRd6SaofwceAYaY2XXA6cBVyd7g7sfHm25mBwF7A4vMDIJulN4ys8kEJabhMYsPA6rSjFFERLqRdEfUvdfM3gSOIyjlnObuH7Zlg+7+HsHNvgCY2SpgkrtvMLPHgUvMbC5wCPC5u3/Slu2IiEjXlm4JCndfAiwxs1ltTU5pmEdwr9VyYCsd0JRdRES6prQTVIwLCa/9dAR3Hxnz3IGLO2rdIiLSdaXbii+WujgSEZGMS5mgzCzPzM6MmXRKBuMREREB0khQ7t4IXBLzem1GIxIRESH9Kr5nw37zhpvZwMgjo5GJiEiPlm4jifPDv7ENGBzYp2PDyb66ujpqamoAqKmpoa6ujtLS0ixHJSLS86RVgnL3veM8ul1yWrBgARUVFVRVBfcGV1VVUVFRwYIFC7IcmYhIz5NWgjKzIjO7ysxmh69Hm9nJmQ2tc9XV1TF16lTq6upobAx6cWpsbIxOr6+vz3KEIiI9S7rXoP4L2Al8LXy9Fvh1RiLKksrKymhiaq6xsZHKyspOjkhEpGdLN0Ht6+6/AXYBuPs2utn9UMuWLWPLli1x523ZsoXly5d3ckQiIj1buglqp5kV8kVv5vsCOzIWVRaMHj2a4uLiuPOKi4sZNWpUJ0ckItKzpZugrgGeBoab2b3A8wSDDXYb06dPJy8v/u7Iy8tj+vTpnRyRiEjPlm4rvmeBbwLfBe4n6H38xcyF1flKS0uZN28epaWl0USVl5cXnV5SUpLlCEVEepak90GZ2VeaTYoMfTHCzEa4+1uZCSs7jjjiCKqqqhg7dixr1qyhoqKCxYsXKzmJiGRBqht1/y382xeYBCwiaBwxHngNOCJzoWVHSUkJAwcOZM2aNQwcOFDJSUQkS5JW8bn7Me5+DPAx8BV3n+TuXwW+TDBmk4iISEak20hi/3AkXADc/X1gYmZCEhERSb8vvg/NbA5wD0FT83OBTI2qKyIiknaCOg+4CPhh+Pol4PaMRCQiIkKaCcrdtwM3hw8REZGMSytBmdnhwLXAXrHv6Y49mouISG5It4rvP4EfAW8CDZkLR0REJJBugvrc3f+W0UhERERipJugXjCzm4CHiekktrv1JCEiIrkj3QR1SPh3Usw0B47t2HBEREQC6bbiOybTgYiIiMRK1Vns5c0mObABWODuKzMWlYiI9HipujoqbfboR1DN9zczOyvDsYmISA+WtATl7r+MN93MBgLPAXMzEZSIiEi6ncU24e4bCYbdaBMzu9bM1pnZO+Fjasy8K8xsuZktNbMT2roNERHp2tJtxdeEmR0LbGrntm929982W+9Y4CxgHFAOPGdm+7m7bg4WEelhUjWSeI+gYUSsgUAV8J0MxDMNmOvuO4CVZrYcmAy8koFtiYhIDktVgjq52WsHatx9Swds+xIz+w6wEPixu28CKoBXY5ZZG04TEZEeJlUjiY/bumIzew7YM86sKwmG6vgVQcL7FcHQ8ucT/7pW8xJcZP2zgFkAI0aMaGuYIiKSo9p0DSod7n58OsuZ2Z3Ak+HLtcDwmNnDCKoT461/NjAbYNKkSXGTmIiIdF1tasXXXmY2NOblN4D3w+ePA2eZWR8z2xsYDbze2fGJiEj2ZawElcJvzGwiQfXdKuD7AO7+gZk9ACwGdgMXqwWfiEjPlJUE5e7fTjLvOuC6TgxHRERyUFaq+ERERFJRghIRkZykBCUiIjlJCUpERHKSEpSIiOQkJSgREclJSlAiIpKTlKBERCQnKUGJiEhOUoISEZGcpAQlIiI5SQlKRERykhKUiIjkJCUoERHJSUpQIiKSk5SgREQkJylBiYhITlKCEhGRnKQEJSIiOUkJSkREcpISlIiI5CQlKBERyUlKUCIikpOUoEREJCcpQYmISE5SghIRkZykBCUiIjlJCUpERHKSEpSIiOSkrCUoM/t/ZrbUzD4ws9/ETL/CzJaH807IVnwiIpJdBdnYqJkdA0wDxrv7DjMbEk4fC5wFjAPKgefMbD93b8hGnCIikj3ZKkFdBNzg7jsA3P2zcPo0YK6773D3lcByYHKWYhQRkSzKVoLaDzjSzF4zs/8xs4PD6RXAmpjl1obTWjCzWWa20MwWVldXZzhcERHpbBmr4jOz54A948y6MtzuHsChwMHAA2a2D2Bxlvd463f32cBsgEmTJsVdRkREuq6MJSh3Pz7RPDO7CHjY3R143cwagTKCEtPwmEWHAVWZilFERHJXtqr4HgWOBTCz/YDewAbgceAsM+tjZnsDo4HXsxSjiIhkUVZa8QF3AXeZ2fvATmBGWJr6wMweABYDu4GL1YJPRKRnykqCcvedwLkJ5l0HXNe5EYmISK5RTxIiIpKTlKBERCQnZesaVE4bM2ZMk78iItL5lKDiqKyszHYIIiI9nqr4REQkJylBiYhITlKCEhGRnKQEJSIiOUkJSkREcpISlIiI5CQlKBERyUkW9NHatZlZNfBxB6+2jKCHdWk97bu2075rO+27tuvsfbeXuw9OtVC3SFCZYGYL3X1StuPoirTv2k77ru2079ouV/edqvhERCQnKUGJiEhOUoJKbHa2A+jCtO/aTvuu7bTv2i4n952uQYmISE5SCUpERHKSEpSIiOQkJahmzOxEM1tqZsvN7GfZjieXmdldZvaZmb0fM22gmT1rZsvCv3tkM8ZcZWbDzewFM/vQzD4wsx+G07X/UjCzvmb2upktCvfdL8Ppe5vZa+G+qzSz3tmONVeZWb6ZvW1mT4avc3LfKUHFMLN84D+AKcBY4GwzG5vdqHLan4ATm037GfC8u48Gng9fS0u7gR+7+wHAocDF4W9N+y+1HcCx7j4BmAicaGaHAjcCN4f7bhMwM4sx5rofAh/GvM7JfacE1dRkYLm7f+TuO4G5wLQsx5Sz3P0lYGOzydOAu8PndwOndWpQXYS7f+Lub4XP6wgOFhVo/6XkgfrwZa/w4cCxwIPhdO27BMxsGHASMCd8beTovlOCaqoCWBPzem04TdL3JXf/BIKDMDAky/HkPDMbCXwZeA3tv7SEVVTvAJ8BzwIrgM3uvjtcRP+7id0C/DPQGL4eRI7uOyWopizONLXDl4wxsxLgIeAyd6/Ndjxdhbs3uPtEYBhBzccB8Rbr3Khyn5mdDHzm7m/GTo6zaE7su4JsB5Bj1gLDY14PA6qyFEtX9amZDXX3T8xsKMEZrsRhZr0IktO97v5wOFn7rxXcfbOZvUhwHW+AmRWEJQH978Z3OHCqmU0F+gL9CEpUObnvVIJq6g1gdNiipTdwFvB4lmPqah4HZoTPZwCPZTGWnBXW+/8n8KG7/y5mlvZfCmY22MwGhM8LgeMJruG9AJweLqZ9F4e7X+Huw9x9JMHx7b/d/RxydN+pJ4lmwjOLW4B84C53vy7LIeUsM7sfOJqgq/5PgWuAR4EHgBHAauAMd2/ekKLHM7MjgPnAe3xxLeDnBNehtP+SMLPxBBfy8wlOsh9w938xs30IGjYNBN4GznX3HdmLNLeZ2dHAP7n7ybm675SgREQkJ6mKT0REcpISlIiI5CQlKBERyUlKUCIikpOUoEREJCcpQUm3Y2bfMDM3s/3TWPa7Zlbejm0dHekROs70z8Meo5ea2UvhXfyR+Rea2XdSrPdrbY2rvczsy2YW6avtWjP7pzaup3f42dUpgLSaEpR0R2cDCwhuREzlu0CbE1QK8939y+4+BrgUuM3MjgNw9zvc/c9J3ns0kLUERXBP1q3tXUnY6fLzwPR2RyQ9jhKUdCth33aHEwwXcFazef9sZu+F4wjdYGanA5OAe83sHTMrNLNVZlYWLj8p7EYHM5tsZi+HJaKXzWxMa+Jy93eAfwEuCdcXLZWY2aVmttjM3jWzuWHnsRcCPwrjOtLMTgnH63nbzJ4zsy/FrOcuM3vRzD4ys0tjPu93wnUuMrO/hNMGm9lDZvZG+Dg8zj4sBca7+6I4875nZn8L99WLZnZzWEL60MwONrOHwzGFfh3ztkeBc1qzv0RAffFJ93Ma8LS7/5+ZbTSzr7j7W2Y2JZx3iLtvNbOB7r7RzC4huJt+IUDQA1FcS4Cj3H23mR0PXA/8Yytjewv4SZzpPwP2dvcdZjYg7F/uDqDe3X8bxrUHcKi7u5ldQNAb9Y/D9+8PHAOUAkvN7HZgP+BK4HB332BmA8Nlf08w7s8CMxsBPEPLjlYnAe83m0a4r/4BOC2MFWCnux9lwYCLjwFfJRiCZYWZ3ezuNeG6Dm7lvhJRgpJu52yCrqog6LrlbILEcDzwX+6+FaAN3Qf1B+42s9EEPT33akNsibLfuwSluEcJShvxDAMqww5kewMrY+Y9FXZLs8PMPgO+RDi+j7tvgCaf93hgbEwi7mdmpeGYVBFDgepm2/82QWfKp7n7rpjpkb4q3wM+iAwVYmYfEXS8XOPuDWa2M852RJJSFZ90G2Y2iODAPMfMVhGUVqaHHbMa6Q0hsJsv/i/6xkz/FfCCux8InNJsXrq+TNNRTCNOIhjJ+avAmwkaFNwK3ObuBwHfb7b92D7TGghOPBN93jzgMHefGD4q4iSNbbT8fO8DIwkSZazIthubxdFI0xPgPsD2OPGIJKQEJd3J6cCf3X0vdx/p7sMJShpHAH8HzjezIoCYKq86gqqxiFUEiQKaVuH1B9aFz7/b2sDCDk6vJkhEsdPzgOHu/gJBtd0AoCROXLHbn0FqzwNnhkk79vP+nfA6WDh9Ypz3fgiMajbtbYLE+HhrWz2GMVQ3K3mJpKQEJd3J2cAjzaY9BHzL3Z8mqI5aaMFIrJFm038C7og0kgB+CfzezOYTlEYifgP8q5n9L0Ev2uk4MtLMnCAxXeruzzdbJh+4x8zeI0gCN7v7ZuAJ4BuRRhLAtcBfw7g2pNqwu38AXAf8j5ktAiJDelwKTAobTywmaIzR/L1LgP5hY4nY6QsI9ttTkYYkaToGmNeK5UUA9WYuInGY2Y+AOnef0wHrehi4wt2Xtj8y6UlUghKReG6n6TWlNrFg4M9HlZykLVSCEhGRnKQSlIiI5CQlKBERyUlKUCIikpOUoEREJCcpQYmISE76/wHXWPN/VBMwrgAAAABJRU5ErkJggg==\n", - "text/plain": [ - "
" - ] - }, - "metadata": { - "needs_background": "light" - }, - "output_type": "display_data" - } - ], - "source": [ - "x, y = pd.Series(actual_distance_bins, name=\"Actual Distance (km)\"), pd.Series(haversine_approximations, name=\"Under-estimation (%)\")\n", - "ax = sns.regplot(x=x, y=y, color='black', x_estimator=np.mean)\n", - "\n", - "plt.title('Distance approximation error: haversine')\n", - "plt.tight_layout()\n", - "plt.savefig('underestimation.svg')" - ] - }, - { - "cell_type": "code", - "execution_count": 34, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAagAAAEYCAYAAAAJeGK1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJzt3XmcXHWV8P/P6b27ukMTCAkJJAGysC+hSUKnybgwiP0DEZUJOiouQz/O6KOIjqCMM8yMjriCD8wMtowrPBIVEZVWWX6iSWeBBBICJCGEbCTprIT0ml7qPH/chVvVVd3V3VV1b3ef9+tVr66691bdU0vXqe+53/v9iqpijDHGRE1B2AEYY4wxqViCMsYYE0mWoIwxxkSSJShjjDGRZAnKGGNMJFmCMsYYE0mWoMYgEblXRL4cdhxjmYhMF5E2ESnM0/5+LyI35GNfYRORmSKiIlIUdizp5Pv9H6/EzoMaXURkOzAZ6AX6gJeAnwCNqhofxmP9nao+keUwzQiIyO3ALFX9YNixhEFEZgLbgGJV7Q03GhMma0GNTlerahUwA7gDuAX4n3BDGn2i/As9ilK9XkN9DUfTaz6aYh2zVNUuo+gCbAcuT1o2H4gD57q3fwR8xb1+IvA74AhwGFiG88Pkp+59OoE24Avu9r8AWoA3gL8A5wT28yPgP4FHgVZgNXBGYP05wOPufvYBX3KXFwC3AluBQ8DPgYlpnt/xbrwHgNfd66cE1j8FfA142o3xEe+xgJmAAg3AHmAv8LnAfW8HfgncDxwF/g4oBe5yt9/jXi91t78FWAUUubf/HngRKAvsqygQ11eAFe7r+VvgBOABd1/PADMDsXwX2OWuWwtc5i6/EugGetzHWR94/L8LvJ7/BOwA9uO0oI9Leg1uAHYCB4HbBvg8lQLfcrfdB9wLlLvr3gK85r4OLTifmX7L3G1vBF5x3/vfAFMD+1Dgk8AWYFsGn/EBnwPO530lzmd6L3APUOKuuxf4VtLjPQLc7F6fCjyE8/naBnx6kM/HfGCNe3sf8J2kGIPv/78DzTj/G48BJwYee6H72TgCrAfeEvZ3yWi4hB6AXYb4hqVIUO7yncDfu9d/xJsJ6mvuP22xe7mMN0u7/R4L+BhQxZtf3OsC637kfgHNB4pwvnwfdNdVuV8Wn8P5Aq8CFrjrbsL5oj/FfdzvAT9L8/xOAN4LVLiP8Qvg14H1TwG7gXOBmPtlc7+7zvvS+Jm77jz3i+hyd/3tOF/878b5ki8H/s2N7SRgkvsl8u/u9gU4Sfp2YDZOwrwoaV/BL6hXgDOA43BKry8Dl7uv1U+AHwaexwfd51rkvmYtQFkgzvuTXpeneDNBfczd1+lAJfAr3kwUXlzfd5/fBcAx4Kw0r/ddOAllovt6/xb4mrvuLTil5K+771t5mmVvw0ki89xldwN/CexDcX64TOTN5Pc74NY0MQ34HICLcb7wi9xtNwI3uesW4yR+7zN+PM6PsKnu+7kW+GegxH39XgXeMcDnYyXwIXd9JbBwgPd/KzDHvd9TwB3uumk4P8zq3cf9a/f2pLC/T6J+CT0AuwzxDUufoFbh/sokMUH9G84vyFmZPlZgfbX7T3hc4HHvC6yvBza5198PPJfmcTYCbw/cPtn9IijK4PleCLweuO3/47u3z8ZpcRQGvjTODKz/BvA/7vXbCXxxusu2AvWB2+8Atgduz8RJyhuBLyYtT/6CCv7K/zbw+8Dtqwkk+xTP83XggkCcAyWoJ4F/CKyb672egbiCrc6ngetT7FOAdhJbwZfitnJwklE3buIcYNn/AN8I3K5045np3lbgbUP4jGf8HNx1NwEPB57TTmCxe/tG4P93ry8Adibd94u4PxzSfD7+AvwrgdbQAO//PwXW/wPwB/f6Lbg/IALr/wjckOlrMl4vdgxq7JiG80Wa7Js4v7YfE5FXReTWdA8gIoUicoeIbBWRozgJDJwyoaclcL0D58sI4FScL/tUZgAPi8gRETmC82Xfh9PZIzmGChH5nojscGP4C1Cd1FtqV+D6DpyW4YkDrJ+aZh3uuh3ptlfV7cCfcL6Q/jPN8/PsC1zvTHHbe60Qkc+JyEYRecN9TY5Leg4DSRVzEYmvZ7r3KWgSTkt1beC9+YO73HNAVbuS7pe8LCEeVW3DaSFMC2yT/LpnIuVzEJE5IvI7EWlxPyP/gfvaqfPt/yDODyaAD+C09MH5HE71nqv7fL9E4uuWHOfHcVpFm0TkGRG5aqjxuvu9Lmm/dTg/1MwALEGNASJyCc6XwfLkdaraqqqfU9XTcX7F3ywib/dWJ23+AeAanLLUcThfyuD8Kh3MLpzyVrp171TV6sClTFV3p9j2czgtggWqOgGnZJMcw6mB69Nxfq0fHGD9nsDt5Oe8B+cLJOX2IlKP06p4EifZj5iIXIbzq/pvgONVtRrneJr3HJNjTJYq5l4SE2ImDuIkznMC78txqhpMZqliGfA1FJEYTvly9wD3GYn/BjYBs93PyJdI/Hz8DHifiMzAaTU95C7fhdM6DH4Oq1S1Pl2cqrpFVd+PUwL+OvBL9/kNxS6cFlRwvzFVvWOIjzPuWIIaxURkgvuL7kGcktCGFNtcJSKzRERwDvT2uRdwvtBOD2xehVPrP4Tzy/o/hhDO74ApInKTiJSKSJWILHDX3Qt81f3CQEQmicg1aR6nCudL84iITAT+JcU2HxSRs0WkAqeE+UtV7Qus/7LbEjsH+CiwdIC4fwb8kxvTiTjHJ+534zwRp3z1dzgH7K92E9ZIVeEklANAkYj8MzAhsH4fMFNE0v1//gz4rIicJiKVOO/TUh1il2x1Tkv4PnCniJwEICLTROQdQ3s6/F/goyJyoYiUuvGsdlufuVCF81luE5EzcTqv+FT1OZzX9j7gj6p6xF31NHBURG4RkXK3YnCu+wMvJRH5oIhMcl8r73H60m2fxv04n513uPssE5G3iMgpQ3yccccS1Oj0WxFpxflldhvwHZwv4lRmA0/g9AhbCfyXqj7lrvsazpfzERH5PM6B/B04v3xfwjmulRFVbcU5+Hs1TqljC/BWd/V3cQ7EP+bGvQrnl20qd+EcZD7obveHFNv8FOd4WAtOh4xPJ63/M05Z80mcHl2PDRD6V3B6aT0PbACedZcBNAKPqGqTqh7CKffcJyInDPB4mfgj8HucThQ7gC4SS0u/cP8eEpFnU9z/BzivwV9weqJ1Af97mLHcgvNarXLLZU/gtGAzpqpPAl/GaansxWlJXz/QfdwTj780rIjh8zit/VacBJvqB8jPcCoB/zcQZx/O5/NCnNftIE4SO26AfV0JvCgibTif4+tTlDwHpKq7cCoTX8JJnLuAf8S+fwdlJ+qaUUVEnsJpLd6XYt1M7ARPY8YMy+DGGGMiyRKUMcaYSLISnzHGmEiyFpQxxphIGhODIZ544ok6c+bMsMMwxhiTZO3atQdVddLgW/Y3JhLUzJkzWbNmTdhhGGOMSSIiOwbfKjUr8RljjImkUBKUiFwnIi+KSFxEalKs92ar/HwY8RljjAlfWC2oF4D34JwJn8qdOGfaG2OMGadCOQalqhsBnOHhEonIu3HmaGnPc1jGGGMiJFLHoNxRgm/BmX9lsG0bRGSNiKw5cOBA7oMzxhiTVzlLUCLyhIi8kOKSbhRrcBLTne58MgNS1UZVrVHVmkmThtWD0RhjTITlrMSnqpcP424LcOZx+QbObK5xEelS1XuyG50xxpioi9R5UKp6mXddRG4H2iw5GWNMfixZsoTNmzczd+5cli4daBq1/AglQYnItcDdOFNLPyoi61R1qJOkGWOMyaLNmzezfv36sMPwhdWL72Hg4UG2uT0/0RhjjImiSPXiM8YYYzyWoIwxxkSSJShjjDGRZAnKGGNMJFmCMsYYE0mWoIwxxkSSJShjjDGRZAnKGGNMJFmCMsYYE0mWoIwxxkSSJShjjDGRFKnRzI0xxox+qkpnZyednZ0jehxLUMYYY0ZMVWlvb6etrY22tjbi8TjFxcUjekxLUMYYY4ZFVf2E1N7eTjwez+rjW4IyxhiTMa+l1NraSltbG6qas31ZgjLGGDMgVaWjo8NPStluKaVjCcoYY0w/fX19tLe3+5d8JaWgULqZi8h1IvKiiMRFpCawfKaIdIrIOvdybxjxGWPMeOSV63p6eti6dSstLS20traGkpwgvBbUC8B7gO+lWLdVVS/MczzGGDMudXd309bWxt69e9m/fz8Ahw8fpq2tjcrKylBjC6UFpaobVXVzGPs2xpjxrru7m0OHDrFjxw62b9/OH/7wBxYsWMC+ffsA2LdvH4sXL2bNmjWhxhnFkSROE5HnROTPInJZuo1EpEFE1ojImgMHDuQzPmOMGXWOHTvGoUOH2L59O9u3b+fQoUMcO3aMtrY2GhoaaG9v90t8Xk89b3lYclbiE5EngCkpVt2mqo+kudteYLqqHhKRi4Ffi8g5qno0eUNVbQQaAWpqanLXz9EYY0aprq4u2traaG1tpaenJ+U2TU1NaY8xxeNxmpqauO6663IZZlo5S1Cqevkw7nMMOOZeXysiW4E5QLjtTGMiZsmSJWzevJm5c+eydOnSsMMxEdLV1UVrayutra309vYOuv2OHTvSDknU2dnJzp07sx1ixiLVzVxEJgGHVbVPRE4HZgOvhhyWMZGzefNm1q9fH3YYJiK8pNTW1pa2pZTOjBkzKC8vT5mkysvLmT59erbCHLKwuplfKyKvAZcCj4rIH91Vi4HnRWQ98EvgE6p6OIwYjTEmyrq7uzl48CDbtm1j586dvP7660NOTgD19fUUFKROBQUFBdTX14801GELpQWlqg8DD6dY/hDwUP4jMsaY6Ovt7aWtrY2jR4/S1dWVlcesrKyksbGRhoYGOjo6UFVEhIqKChobG4nFYlnZz3BEqsRnjDEmkZeUWltbRzx9RTo1NTUsW7aM+vp6WlpamDx5Mk1NTcNKTqrK9u3baW5uZsWKFSOKyxKUMSYyrPOHo6ury5+64tixY3nZZywWo7q6mpaWFqqrq4eUnN544w1WrlxJc3Mzzc3N7N69OysxWYIyxkTGeO384U3w501dkUnvuzD19PSwfv16PyFt2LChX1f1E044gbq6Oh55JN1ZRYOzBGWMMSEIjhDe3t5OX19f2CGlpars2LGD5uZmli9fzurVq/udwFtSUsLFF19MXV0ddXV1zJkzh9LSUktQxhgzGqSadTaqvLLdihUrWL58ecqy3Zw5c1i0aBG1tbVccskllJeXZzUGS1DGGJNDvb29dHR0hDptRSZ6enro6OgAYPv27SxcuLBfrBMnTmTRokXU1dVx6aWXMnny5JzGZAnKGGOyyDue1NraSkdHx7DOTcqHYNmuubmZVatW+WU7rwt7cXExNTU1LFq0iEWLFnHmmWemPWcqFyxBGWPMCI2W40lvvPEGq1at8o8lpettd/zxx/ONb3wjJ2W7obAEZYwxw6Cq/rGkqJbuenp6eP755/1W0vPPP5+ybFdbW8uiRYu477772Lp1K5MnT2bx4sUhRf0mS1DGGJMhr6V09OjRSCYlVWXnzp0sX76c5uZmVq9eTVtbW8I2xcXFXHzxxf6xpGDZ7sc//nEYYadlCcoYYwbR1dXF0aNHaW1tjVz57ujRo6xatcpPSq+99lq/bWbPnu33tps/f36oZbuhsARlxgUbocAMVU9PD62trRw9epTu7u6ww/H19vayfv16VqxYQXNzM+vXr09btqutraWuri7nve1yxRKUGRfG6wgFZmh6enpob2/P6bh3wxEs261atWpIZbvRzBKUMWbc8o4peecoRaVL+NGjR1m9erWflHbt2tVvm1mzZvndvy+55BIqKipCiDS3LEEZY8aVvr4+fzSHjo6OSHR06O3t7dfbLvlY1/HHH+8fR1q0aBFTpkwJKdr8sQRljBnzOjs7/VZSvkYHH8yuXbv8FtLKlStTlu3mzZtHXV0dtbW1nH322WOibDcUlqCMMWNOcMy7qJw429ramlC227lzZ79tzjjjDP84Uk1NTaiTBUZBKAlKRK4DbgfOAuar6prAuvOB7wETgDhwiapmZ+pIY8yYFY/HE5JS2KW73t5eNmzY4Jft1q9f3y9RVldXJ5TtTj755JCiza6ioiLKy8tH3J09rBbUC8B7cBKRT0SKgPuBD6nqehE5AYjGUUtjTOT09fX5ozl405WHadeuXX5CWrlyJa2trQnri4uLueiii/yy3TnnnDPqy3aFhYWUlpZSVlZGeXk5ZWVlFBYWZuWxQ0lQqroRQESSV10BPK+q693tDuU5NGNMxHmzzba3t/uDmoZlKGU7r7fdaC7biYifjLxLSUlJzvYXtWNQcwAVkT8Ck4AHVfUbqTYUkQagAWD69On5i9AYk1fB0l1HR0eox5MyLdsFT5IdTWW70047LeFvSUlJQjIqLS1N1bDImYwSlIicBCwCpgKdOCW6NaqatsgrIk8AqfpB3qaq6aZYLALqgEuADuBJEVmrqk8mb6iqjUAjQE1NTbjtemPyqLW1lUOHnOLCoUOHaG1tpaqqKuSoRi75ee3atYuCgoLQS3e7du3yR21YuXIlR48eTVjvle28VtLZZ5+dtRJXPhUWFvL973/fL9OVlZWFXn4cMEGJyFuBW4GJwHPAfqAMeDdwhoj8Evi2qh5Nvq+qXj6MeF4D/qyqB939NwHzgH4JypjxaPny5dTX1/vz9uzZs4dp06bR1NREXV1dyNEN37JlyxKe1+7duznrrLNobGykpqYmr7G0tbX5U1KsWLGC7du399vm9NNP93vbjdayXUFBAeXl5VRUVFBRUUFpaWnYIfUzWAuqHrhRVfsVVt0ODVcBfw08lKV4/gh8QUQqgG7gr4A7s/TYxoxqra2t1NfXJxx4j8fj/vI9e/ZQWVkZYoRD45XuWlpaeOc73+knJ3izm3hDQwPLli3LaQLo6+vjhRde8I8jrVu3LmXZ7tJLL/VbSVOnTs1ZPLmQ72NH2TJgglLVfxxgXS/w6+HsVESuBe7GOc70qIisU9V3qOrrIvId4BlAgSZVfXQ4+zBmrFm6dGnartPxeJylS5fy8Y9/PM9RDY03/bnXFVxV+fnPfz7g82pqauK6667LahyDle2KioqYN2+e3/37nHPOGVVlu6KiIj8ReSW7fB47ypYhdZIQkYXAfwClwLdU9eHh7NS9X8r7qur9OF3NjTEBW7ZsSWhlBLW3t/PKK6/kOaLB9fX10dnZSUdHBx0dHSlHBd+xY0fagVk7OztT9owbqmDZrrm5mR07dvTbxivbeb3tRktrtLCwMKETQ1lZGUVFUev/NjyDHYOaoqotgUU3A+8CBFhBmiRjjMm+2bNnE4vFUiapWCzGrFmzQogqUTwe95NRZ2dnRsMKzZgxg/Ly8pRJqry8fFi9dMdy2a6kpMQ/Cba8vJzi4uKwQ8qZwdLsvSKyFvimO5rDEeADOCM89OsYYYzJnSVLlnDzzTenXFdQUMCSJUvyHJFjpOcl1dfXc8cdd6RcV1BQQH19fUaP89prr7FixQqWL1/OqlWreOONNxLWFxUVJfS2i3rZTkQoLi72W0Xe37B71uXTYMeg3i0iVwO/E5EfAzfhJKgKnJ58xpg8qaqqoqmpye/tFo/HKSgoIBaL0dTUlLeSVHd3d0LZbqTnJVVWVtLY2EhDQ4PfpVxEqKiooLGxMW0Hiba2NlavXu2X7VL1tps5cyZ1dXUsWrSI+fPnR7ps57WMgp0YRuNxo2watFCpqr91u3v/A/Ar4KuquiznkRlj+qmrq2PPnj2cffbZ7Nq1i2nTpvHSSy/l9Iu3u7s7oWyXixNla2pq/K7mLS0tTJ48maampoTk1NfXx4svvphQtuvt7U14nOOOO84v29XW1nLKKadkPdZsKCgoSOjAkM3hgcaSwY5BvQv4AtCHM7jrT4F/FpF/AP5JVbfmPEJjTILKykomTpzIrl27mDhxYtaTkzdfkpeUkpNArsRiMaqrq2lpaaG6uppYLMbu3bv9st3KlStTlu0uvPBCv2x37rnnRvKLvri42D9m5JXrzOAGa0F9BbgUKMfp8j0fuFlEZgNfBa7PcXzGmBxTVb9kF/Z8SV7rbN++fVx55ZVs27at3zYzZ870E9KCBQsiWbYrKSmhoqLCT0pjpVddvg32qr2Bk4TKcUaRAEBVt2DJyZhRq6enJ6GVFNbUFF7ZzjuOtGXLFgBef/11Xn/9dQAmTJiQULY79dRTQ4l1IEVFRf6IDBUVFZaQsmSwV/Fa4P04U158IPfhGGNyIdj9u729nZ6e8Gax2bNnD83NzX5vuyNHjvTbpry8nBtvvJG6urpIlu28YYJisRgVFRWjYlSG0WiwBNWlqncPtIGIVKpq20DbmPFhyZIlbN68mblz57J06dKwwxn3jh075reSOjs7Qxtwtb29naefftpPSgOV7Z566il2797NjBkz+OQnPxlCtKmJCGVlZX4LabSOzDDaDJagHhGRdcAjwFpVbQcQkdOBtwJ/A3wf+GVOozSjwubNm1m/fn3YYYxbfX19fgspn50bUsXx0ksv+WW75557rl+LLV3Zbu3atWGE3I+XkIInxI6n84+iYrDzoN4uIvXA/wIWicjxQC+wGXgUuCFppAljTB7F43EOHjxIR0dHqJP37d27l+XLl7NixQpWrFjRr2xXWFjIBRdc4I8Afu6550bqOI03dl2w27e1kMKXyXlQTUBTHmIxxgyip6eHjo4Ov0XS09PD4cOH8x5He3s7zzzzjH9O0quvvtpvm+nTp/snyS5YsCAyc1YVFRVRXl5OaWmpf4lSsjRvsnfFjHmjeYK/eDxOZ2enP5SQl5jy3esuHo8n9LZLVbarqqryZ5JdtGhRZHrbiUhChwY7B2n0sARlxrTROMHfsWPH/GNJYXZu2Lt3r5+QBivbLVq0iPPOOy8yLZFgh4by8nIr141S0fg0GZMDo2WCv6h0bujo6Ego223d2n+gmOnTp/vHkaJSthMRfxw7LylZh4axIeMEJSKFwOTgfVLNtGtMVER1gr94PE5XV5dfugurc0M8Hvd72y1fvjxt2S44JUUUynYlJSUJM8OWlpZaC2mMyihBicj/Bv4F2Icz1QY4M96eP5ydish1OGP7nQXMV9U17vK/BYKz+J4PzFPVdcPZjxnfojLBn3ccKThHUlhlu5aWFr+3XXNzc8qy3fnnn+93bgi7bBecjM/rYWeto/Ej00/eZ4C5qnooS/t9AXgP8L3gQlV9AHgAQETOAx6x5GSGK4wJ/uLxOMeOHUu4hNn9e7SV7byWUFFRETNnzrQRGsa5TBPULpxx+bJCVTcCgzXL3w/8LFv7NONPPib4Cw602tHREWrrCJwEuXHjRr9s9+yzz/Yr21VWViaU7YYzY222JPew8xJSYWGhJSeTcYJ6FXhKRB4F/KGOVfU7OYnKsQS4Jt1KEWkAGoBQ/8FMdOVigj/vPKSuri66urpCHfnbs2/fPr+3XXNzsz/IqqegoIALLriAuro6amtrOf/880Mt25WWlvoJyXrYmYFk+ind6V5K3MugROQJYEqKVbep6iOD3HcB0KGqL6TbRlUbgUaAmpqa8H6ymkgb6QR/vb29fusozB52QR0dHbS1OcNfvvrqqyxevLjfNqeccgp1dXV+2W7ChAn5DtNXVFTkJ6SKiorIDfxqoiujBKWq/wogIlXOzcEHh1XVy0cQ1/VYec9kyVAm+Ovp6fF72HV0dNDd3Z3HSFMLlu2am5tZu3atX7bz4qusrGThwoX+saQwqwo20rfJlkx78Z2LM5vuRPf2QeDDqvpitgMSkQLgOqD/z0Jjsqivry+hVNfV1RWJFhIMXrbznHDCCdxzzz2hlu1spG+TK5l+ohuBm1X1TwAi8hacUcxrh7NTEbkWuBuYBDwqIutU9R3u6sXAa6raf3AvY0aor6+PPXv2RCoZAXR2dvpTUjQ3N6fsAn/KKaf4HRvuvvtutmzZwqRJk5g3b17e4/VmjLUTY00uZZqgYl5yAlDVp0QkNtydqurDwMNp1j0FLBzuYxsDiSfDer3rwDmm5B2/CVM8HmfTpk1+9+9g2c4Ti8USetvNmDHDX/df//VfeY23sLDQT0axWCwyQxqZsS3jXnwi8mWcMh/AB4H+s46ZvLNJAp2u3l6JzrtE4dhRsn379rFixQr/RNnkUcgLCgo4//zz/YR0/vnnU1xcHEqs3vQTXlLK13GkuXPnJvw141umCepjwL8CvwIE+Avw0VwFZTI3HicJ7O7uprOzM1JdvVPp7OxkzZo1ftnu5Zdf7rfNtGnT/FEbFi5cyHHHHRdCpFBcXJxwDCmsxDhef2SZ1DLtxfc68Okcx2JMSl6pzrv09fWFHVJK8XiczZs3+2W7NWvWpCzbeb3tvLLdcDoUnHbaaQl/h0pEEkp21tPORNGACUpE7lLVm0Tktzhj7yVQ1XflLDIzLnnlOm/cus7OzrzPfTQU+/fvT5iSwpt3yhMs29XW1nLBBRdkpXVy1113Dfk+JSUlCecjWU87E3WDtaC8Y07fynUgZvzyEpKXlKKckLq6uvyy3fLlyyNdtisoKPBbSBUVFaGV7YwZrgETlKquda9eqKrfDa4Tkc8Af85VYGZsCvau844jRTkhqapftluxYgXPPPNMvw4YFRUVLFy40E9Kwy3bZUNZWVnCMELGjGaZdpK4Afhu0rKPpFg26lmvuOzq7u72E1KUOzQE7d+/35+OYsWKFRw8eDBhfUFBAeeee66fkLJVthsOr/t3LBYjFovZMEJmTBnsGNT7gQ8Ap4nIbwKrqoBsTb0RKeOxV1y29fX1sXv3brq6uiLboSHI623ndQFPVbabOnVqQtmuuro6hEgdXispFotRVlYWWhzG5NpgLagVwF7gRODbgeWtwPO5CsqMDsFx6w4ePMi+ffsA/OtRmE49lWDZzuttl65s5/W2mzlzZmhlu8LCQj8h2WCrZjwZ7BjUDmAHcGl+wjFR5U3EFyzXeUMFrVmzhoaGBjo6OgDnhNTFixfT2NhITU1NmGH7vFj37NlDXV1dv7KdiHDeeef5g62GWbYDayUZA5kPFrsQZ+y8s3Cm2ygE2lU1vDH8Tc4kj8zgzQybSlsqhw4fAAAeIklEQVRbGw0NDQmz1qoq7e3tNDQ0sGzZMmKxYY+KNWzB3nbBse2OHj3qb3PyyScnlO2OP/74vMfpsWNJxvSXaSeJe3CmwPgFUAN8GMj+fNkm71Ilo+7u7oxnhW1qakrbCy8ej9PU1MR1112XzZBT8sp2XkJK1dsOnBNlb775ZmpraznttNNCK9slzyRbWloaShzGRFnGIz6q6isiUqiqfcAPRWRFDuMyOaCqfq+64Jh1I5mifMeOHXR2dqZc19nZyc6dO4f92IM5cOBAQm+7AwcOJKwXEc455xzq6upoampi586dnHrqqXzwgx/MWUwD8VpJlZWVxGIxGwHcmEFkmqA6RKQEWCci38DpOJH/uo3JmNcy8i5e62gkySiVGTNmUF5enjJJlZeXZ3XivK6uLtauXeufk7Rp06Z+25x88sl+x4ZLL73UL9s99dRTWYtjKLzpzWOxmJ2XZMwQZZqgPoRz3OlTwGeBU4H35iooM3SqypEjR4ZVphuJ+vp67rjjjpTrCgoKqK+vH/Zjqyovv/xyQtku+VhYRUUFCxYs8JNSmGU7cEYBD45xZ8eSjBm+TAeL3eFe7cQZ1dyEJPmYkXecpbu7m/379+c9nsrKShobG/1efKrqD0Ta2Ng45A4SBw8eTBjbLlXZ7uyzz+ayyy5j0aJFXHjhhaEOdGrHkozJnUx78V0F/Dsww72PAGq9+HIrk950+WglDaampoZly5ZRX19PS0sLkydPpqmpKaPkdOzYMb9s19zcnLJsN2XKFL+3XbBsF5bgeUl2LMmY3Mm0xHcX8B5gg2bhG1FErgNux+m2Pl9V17jLi4H7gHlubD9R1a+NdH+jRapJ96KQgDIRi8Worq6mpaWF6urqtMlJVdmyZYs/2Gqqsl15eXlC2e70008PfeRtO5ZkTP5lmqB2AS9kIzm5XsBJeN9LWn4dUKqq54lIBfCSiPxMVbdnab+Roar9Bk0dDcMCDcfBgwf93nbNzc1pe9t5Cemiiy4KfX4ir0zp9bizKc6Nyb9M/+u+ADSJyJ8B/+euqn5nODtV1Y1Aql/FCsREpAgoB7qBo8kbjUZ9fX1+IvL+jpbW0VDF43FWrlzpl+02btzYb5spU6b4ozYsXLiQiRMnhhBposLCQiorK6msrLT5koyJgEwT1FeBNqAMZySJXPklcA1ON/YK4LOqejjVhiLSADQAWe3KnA3elBLBkl3yzKpjiVe2O3zYeau2bNnCRz7ykYRtoli2AyvdGRNlmSaoiap6xVAeWESeAKakWHWbqj6S5m7zgT5gKnA8sExEnlDVV5M3VNVGoBGgpqYm1KZIX18fXV1d/oR7XV1dYYaTF4cOHUoo2wV7EHotQ+8k2aiU7Tzl5eV+S8km8TMmujJNUE+IyBWq+limD6yqlw8jng8Af1DVHmC/iDTjDK3UL0GFJdizrrOz0z/naKw7duwYzz77rH+S7EsvvdRvm6KiInp7e5k6dSoPPfRQJMp2Hq+nXUlJCaeeemrI0RhjMpFpgvok8AUROQb0kLtu5juBt4nI/TglvoU4PQhDkYuhgUYLVeWVV15J6G2X3DIsKytj/vz5/rGkm2++mc2bNzNhwoRIJCevpVRVVcW5555LcXExc+fODTssY0yGMj1RtyqbOxWRa3FGR58EPCoi61T1HcB/Aj/E6eUnwA9VNW/zTqmqP/BpT08Pr7zyyrhIRp7Dhw/7Zbvly5enPPHX621XW1vLxRdfnFC2C/uYUkFBQULPu+AoDjY7sjGjz2Az6p6pqptEZF6q9ar67HB2qqoPAw+nWN6G09U8L7q7u/1jRl7ryOvMEI/Hx3xy6u7uZu3atf5xpFRlu5NOOinhJNkTTjghhEjTKy4uJhaLUVlZSXl5eehJ0hiTPYO1oG7G6Sn37RTrFHhb1iPKkd7e3oRSXVdXV9ppIsYqVWXr1q1+9+9nnnmm3yCvZWVlXHLJJdTV1VFXV8cZZ5wRuS/94uJiqqqqqKystMn8jBnDBptRt8G9+k5VTTgAISKR/WbwToINXsZyN++BHD58OOGcJG9a9qCzzjrLbyUll+2iwpKSMeNPpp0kVuAMPzTYslCoKm+88ca468iQSnd3N88++2xC2S75tZg0aZKfkGprayNXtvOUlpb63cFtEFZjxp/BjkFNAaYB5SJyEU7HBYAJOL3sIqG3tzdly2A88JLP4cOHaWho4Omnn05ZtqupqfFHAJ81a1bkynbw5sjgXlKy4YWMGd8G+wZ4B/AR4BSc41Det1or8KXchWUGEizbbd26FYD9+/cn9Lo766yz/O7f8+bNi2wLpKCgwO/kYCODG2OCBjsG9WPgxyLyXlV9KE8xmSTd3d0899xzfvfvVGW7oqIirr766siX7cBJSt75STbmnTEmnUxrKKeIyAScltP3cY493TqUkSVM5lSVV1991R+14emnn6ajoyNhm9LSUi655BJefvll9u/fzxlnnJF2ZtsoEBFisRgTJkwgFotZUjLGDCrTBPUxVf2uiLwDOAn4KM4JtZagsuTw4cOsWrXK723X0tLSb5szzzzTL9tdfPHFlJaWcs0117B///5IfuF7U1Z4ve+sfGeMGYpME5T37VePM7rDeoniN+IItbW1ceTIEQCOHDlCW1sblZWVOdlXsGzX3NzMiy++mLK3nTf6d21tLSeeeGJOYsm2goICpkyZYknJGDMimSaotSLyGHAa8EURqQLG1Fmua9asoaGhwS+l7du3j8WLF9PY2EhNTc2IH98r23kJaaCyndcFfPbs2ZFsGSXzWkper7vi4mImTMj2MI3GmPEm0wT1ceBC4FVV7RCRE3DKfGNCW1sbDQ0NtLe3+8tUlfb2dhoaGli2bFnaKcwH8vrrr7Ny5Uo/Ke3du7ffNnPnzvVHbfDKdkOJO18tvmSpet8Fx74zxpiRyjRBKXA2cBXwb0AMZ/LCMaGpqSntsEfxeJympiauu27wIQK7u7tZt26dn5BeeOGFfmW7E088kdraWurq6qitrWXSpEnDijnXLb5UbMZZY0w+ZZqg/gunpPc2nATVCjwEXJKjuPJqx44d/U5u9XR2drJz586U61SVbdu2+Qlp9erVKct2NTU1ftluzpw5I/5iz1WLL5Xi4mI/KdmMs8aYfMo0QS1Q1Xki8hyAqr4uItEbsG2YZsyYQXl5ecokVV5enjClvFe286al2LNnT7/7zJ07N6G3XbbHjstWiy8dG2LIGBMFmSaoHhEpxCn1ISKTGEOdJOrr69OeQyQiTJ48mTvvvHPAsl2wt91wy3aZGm6LbyClpaV+d/AoDhZrjBl/Mk1Q/wdn/qaTROSrwPuAf8pZVHlWWVlJY2Njv7JZYWEh8XicG2+8MWH7kpKShLLd3Llz83o8ZigtvoF4Samqqori4uJsh2mMMSOS6Yy6D4jIWuDtOOdEvVtVN+Y0sjw6cuQIBw4c4IorruCRRx7xy2d9fX309fUBb5btFi1aRE1NTahTPgzU4isoKKC+vj7tfcvKyvxhhrKdlLzp1G1adWNMNmQ8XLSqbgI2iUjDSJOTiFwH3A6cBcxX1TXu8hLge0ANTgnxM6r61Ej2lUpPTw/r16/3R23YsGFDv7JdYWEh9fX1fm+7k046aVj7uummm9i2bRunnXYad911VzbCT2jxdXR0oKr+uUiNjY39OkiUlZX55btctpRsWnVjTDYNZz6DTwCNI9zvC8B7cJJR0I0AqnqeiJwE/F5ELlHVER3vUlW2b9/uD7aaqredV7bbsmULBw4cYNasWXzrW98ayW4B2LZtG5s2bRrx4ySrqalh2bJl1NfX09LSwuTJk2lqavKTU76SkjHG5MpwEtSID7Z4LbAUx23OBp50t9kvIkdwWlNPD3UfR44cYdWqVX4X8N27d/fbZs6cOf5xJK9sd80113DgwIFRcY5PLBajurqalpYWqqurmTx5MrFYjFgsZnMpGWNGvUG/xUSkAHifqv7cXXR1DuNZD1wjIg8CpwIXu3/7JSgRaQAaAKZNm+aX7byEtGHDhn5dsU844QT/JNlLL72UyZMn5/Cp5F5hYaE/ekNpaSlTp04NOSJjjMmeQROUqsZF5FPAz93br2XywCLyBDAlxarbVPWRNHf7Ac5xqTXADpxp5XvTxNWIW2o87rjjdMGCBQk98ODNsl1tbS2XXXYZc+bMGfWDl3pzKU2YMIHy8nJrKRljxqxMv90eF5HPA0sBPwuo6uF0d1DVy4cajKr2Ap/1bovICmDLYPc7evSof33OnDl+K6mmpmZMjH4gIn7PO5tLyRgzXmQ8H5T795OBZQqcns1gRKQCEFVtF5G/BnpV9aXB7lddXc2tt95KbW3tqC/beWwuJWPMeJfpeVCnZXOnInItcDcwCXhURNapqjcZ4h9FJA7sBj6UyeNNnz6da6+9Npshhqa8vJwJEyZQWVlpo4MbY8a1jBKU27K5GZiuqg0iMhuYq6q/G85OVfVhnJEpkpdvB8bVWZ4iQnl5ud9SsqRkjDGOTEt8PwTWArXu7deAXwDDSlCGhPKdJSVjjOkv0wR1hqouEZH3A6hq51ic8j3XvJNnq6qqrPedMcYMItNvyW4RKefN0czPAI7lLKoxxOvcUFJSkvEgrsYYYzJPUP8C/AE4VUQeABYBH8lVUKNdSUkJEyZMSBiQ1RqcxhgzNJn24ntcRJ4FFuIMdfQZVT2Y08hGmaKiIqqqqpgwYYJN8meMMVkwYIISkXlJi/a6f6eLyHRVfTY3YY0OhYWF/gm0FRUVYYdjjDFjymAtqG+7f8twBm1dj9OCOh9YDdTlLrRoslEdjDEmPwZMUKr6VgB38NYGVd3g3j4X+Hzuw4uOiooK/wRaG9XBGGNyL9NOEmd6yQlAVV8QkQtzFFNklJWV+Z0d7FwlY4zJr0wT1EYRuQ+4H6er+QeBMTPle5BXsrNu4cYYE65ME9RHgb8HPuPe/gvw3zmJKATFxcX+CbQlJSWAdQs3xpiwZdrNvAu4072MCV638KqqKsrKysIOxxhjTJJMB4tdBNwOzAjeR1WzOt1GrhUVFRGLxaxbuDHGjAKZlvj+B2ciwbVAX+7Cyb7y8nJisRixWMxOoDXGmFEk0wT1hqr+PqeRZElhYaGfkCoqKqz3nTHGjFKZJqg/icg3gV8RGCQ2KiNJiAjV1dVUVlZa6c4YY8aITBPUAvdvTWCZAm8bzk7dZHc10A1sBT6qqkfcdV8EPo5TSvy0qv5xsMcrKiripJNOGk4oxhhjIirTXnxvzfJ+Hwe+qKq9IvJ14IvALSJyNnA9cA4wFXhCROao6qg67mWMMWbkBhss9uakRQocBJar6rbh7lRVHwvcXAW8z71+DfCgqh4DtonIK8B8YOVw92WMMWZ0GmxQuaqkywScMt/vReT6LMXwMcDrgDEN2BVY95q7zBhjzDgz2GCx/5pquYhMBJ4AHkx3XxF5ApiSYtVtqvqIu81tQC/wgHe3VGGkefwGoAGwIYmMMWYMyrSTRAJVPSyDjAWkqpcPtF5EbgCuAt6uql4Seg04NbDZKcCeNI/fCDQC1NTUpExixhhjRq9hzRshIm8DXh/uTkXkSuAW4F2q2hFY9RvgehEpFZHTgNnA08PdjzHGmNFrsE4SG+hfYpuI06r58Aj2ew9QCjzuNsRWqeonVPVFEfk58BJO6e+T1oPPGGPGp8FKfFcl3VbgkKq2j2SnqjprgHVfBb46ksc3xhgz+g3WSWJHvgIxxhhjgmzu8hxqbW3l0KFDABw6dIjW1taQIzLGmNHDElSOLF++nGnTprFnj9MJcc+ePUybNo3ly5eHHJkxxowOw+pmPpbNnTs34e9wtLa2Ul9fn9Biisfj/vI9e/ZQWVk54liNMWYsswSVZOnSpVl5jHg8nnJdPB5n6dKlfPzjHx/xfowxZiyzEl8ObNmyhfb21B0d29vbeeWVV/IckTHGjD6WoHJg9uzZxGKxlOtisRizZqXtZW+MMcZlCSoHlixZQkFB6pe2oKCAJUuWZG1fc+fO5YILLhjRMTNjjIkiOwaVA1VVVTQ1NVFfX097ezvxeJyCggJisRhNTU1Z7SCRjWNmxhgTRdaCypG6ujq/azngdzmvq6sLOTJjjBkdLEHlUGVlJRMnTgRg4sSJ1rXcGGOGwBKUMcaYSLIEZYwxJpIsQRljjIkkS1DGGGMiyRKUMcaYSLIEZYwxJpJCSVAi8k0R2SQiz4vIwyJS7S4/QUT+JCJtInJPGLEZY4yJhrBaUI8D56rq+cDLwBfd5V3Al4HPhxSXMcaYiAglQanqY6ra695cBZziLm9X1eU4icoYY8w4FoVjUB8Dfj/UO4lIg4isEZE1Bw4cyEFYxhhjwpSzwWJF5AlgSopVt6nqI+42twG9wANDfXxVbQQaAWpqanQEoRpjjImgnCUoVb18oPUicgNwFfB2VbUEY4wxJkEo022IyJXALcBfqWpHGDEYY4yJtrDmg7oHKAUeFxGAVar6CQAR2Q5MAEpE5N3AFar6UkhxGmOMCUkoCUpV0855rqoz8xiKMcaYiIpCLz5jjDGmH0tQxhhjIskSlDHGmEiyBGWMMSaSLEEZY4yJJEtQxhhjIskSlDHGmEiyBGWMMSaSLEEZY4yJJEtQxhhjIskSlDHGmEiyBGWMMSaSLEEZY4yJJEtQxhhjIskSlDHGmEiyBGWMMSaSLEEZY4yJpFASlIh8U0Q2icjzIvKwiFS7y/9aRNaKyAb379vCiM8YY0z4wmpBPQ6cq6rnAy8DX3SXHwSuVtXzgBuAn4YUnzHGmJAVhbFTVX0scHMV8D53+XOB5S8CZSJSqqrH8hlfNs2dOzfhrzHGmMyEkqCSfAxYmmL5e4Hn0iUnEWkAGgCmT5+eu+hGaOnSVE/NGGPMYHKWoETkCWBKilW3qeoj7ja3Ab3AA0n3PQf4OnBFusdX1UagEaCmpkazFLYxxpiIyFmCUtXLB1ovIjcAVwFvV1UNLD8FeBj4sKpuzVV8xhhjoi2UEp+IXAncAvyVqnYEllcDjwJfVNXmMGIzxhgTDWH14rsHqAIeF5F1InKvu/xTwCzgy+7ydSJyUkgxGmOMCVFYvfhmpVn+FeAreQ7HGGNMBNlIEsYYYyLJEpQxxphIkkAHulFLRA4AO7L0cCfijGgxWo32+GH0PweLP3yj/TmMpfhnqOqk4TzImEhQ2SQia1S1Juw4hmu0xw+j/zlY/OEb7c/B4ndYic8YY0wkWYIyxhgTSZag+msMO4ARGu3xw+h/DhZ/+Eb7c7D4sWNQxhhjIspaUMYYYyLJEpQxxphIGpcJSkROFZE/ichGEXlRRD6TYpu3iMgbgTEB/zmMWNMRke0issGNbU2K9SIi/0dEXhGR50VkXhhxpiMicwOv7ToROSoiNyVtE6n3QER+ICL7ReSFwLKJIvK4iGxx/x6f5r43uNtscUfyz7s08X9TRDa5n5GH3QGbU913wM9bvqR5DreLyO7A56Q+zX2vFJHN7v/ErfmLOiGGVPEvDcS+XUTWpblv6O9Buu/OnP0fqOq4uwAnA/Pc61U4086fnbTNW4DfhR3rAM9hO3DiAOvrgd8DAiwEVocd8wCxFgItOCf0RfY9ABYD84AXAsu+AdzqXr8V+HqK+00EXnX/Hu9ePz4i8V8BFLnXv54q/kw+byE/h9uBz2fwGdsKnA6UAOuT/+fDij9p/beBf47qe5DuuzNX/wfjsgWlqntV9Vn3eiuwEZgWblRZdw3wE3WsAqpF5OSwg0rj7cBWVc3WaCA5oap/AQ4nLb4G+LF7/cfAu1Pc9R3A46p6WFVfBx4HrsxZoGmkil9VH1PVXvfmKuCUfMc1FGneg0zMB15R1VdVtRt4EOe9y6uB4hcRAf4G+FlegxqCAb47c/J/MC4TVJCIzAQuAlanWH2piKwXkd+7s/xGiQKPichaEWlIsX4asCtw+zWim4SvJ/0/ZZTfA4DJqroXnH9eINX0MKPlvfgYTqs7lcE+b2H7lFum/EGa8tJoeA8uA/ap6pY06yP1HiR9d+bk/2BcJygRqQQeAm5S1aNJq5/FKTldANwN/Drf8Q1ikarOA94JfFJEFietlxT3idw5BSJSArwL+EWK1VF/DzIV+fdCRG4DeoEH0mwy2OctTP8NnAFcCOzFKZMli/x7ALyfgVtPkXkPBvnuTHu3FMsGfA/GbYISkWKcF/gBVf1V8npVPaqqbe71JqBYRE7Mc5hpqeoe9+9+4GGcEkbQa8CpgdunAHvyE92QvBN4VlX3Ja+I+nvg2ueVTt2/+1NsE+n3wj1YfRXwt+oeLEiWwectNKq6T1X7VDUOfJ/UsUX9PSgC3gMsTbdNVN6DNN+dOfk/GJcJyq31/g+wUVW/k2abKe52iMh8nNfqUP6iTE9EYiJS5V3HOdD9QtJmvwE+7PbmWwi84TXBIybtr8YovwcBvwG83kg3AI+k2OaPwBUicrxbfrrCXRY6EbkSuAV4l6p2pNkmk89baJKOrV5L6tieAWaLyGluq/16nPcuKi4HNqnqa6lWRuU9GOC7Mzf/B2H2CAnrAtThNC2fB9a5l3rgE8An3G0+BbyI09tnFVAbdtyB+E9341rvxnibuzwYvwD/idNzaQNQE3bcKZ5HBU7COS6wLLLvAU4i3Qv04Pwa/DhwAvAksMX9O9Hdtga4L3DfjwGvuJePRij+V3COC3j/B/e6204Fmgb6vEXoOfzU/Yw/j/NFeXLyc3Bv1+P0Otsa1nNIFb+7/Efe5z6wbeTegwG+O3Pyf2BDHRljjImkcVniM8YYE32WoIwxxkSSJShjjDGRZAnKGGNMJFmCMsYYE0mWoMyYISLXioiKyJkZbPsREZk6gn29RUR+l2b5GyLynDty9l9E5KrA+k+IyIcHedza4cY1UiJykYjc516/XUQ+P8zHKXGfe1F2IzTjiSUoM5a8H1iOcxLmYD6Cc55JLixT1YtUdS7waeAeEXk7gKreq6o/GeC+bwFCS1DAl3CGlRoRdQZkfRJYMuKIzLhlCcqMCe7YYItwTty8PmndF9x5dNaLyB0i8j6cEwgfcOfWKXfn2jnR3b5GRJ5yr88XkRVui2iFiMwdSlyqug74N5yTjhNaJSLyaRF5yR3k9EF38M1PAJ9147pMRK4WkdXu/p8QkcmBx/mBiDwlIq+KyKcDz/fD7mOuF5GfussmichDIvKMe1mU4jWsAs5X1fUp1t0ozoC95e4+73RbSBtF5BIR+ZU4c/x8JXC3XwN/O5TXy5gga36bseLdwB9U9WUROSwi81T1WRF5p7tugap2iMhEVT0sIp/CmUNoDYA7olIqm4DFqtorIpcD/wG8d4ixPQv8Y4rltwKnqeoxEalW1SMici/QpqrfcuM6Hlioqioifwd8Afice/8zgbfizMuzWUT+G5gD3IYzsOhBEZnobvtd4E5VXS4i03GGmDkrKZ4aUgyf475WVwDvdmMF6FbVxeJMWPcIcDHONBJbReROVT3kPtYlQ3ytjPFZgjJjxfuBu9zrD7q3n8UZ4+yH6o4zp6pDnUvoOODHIjIbZ4iX4mHEli77PY/Tivs16UdqPwVY6o43VwJsC6x7VFWPAcdEZD8wGXgb8EtVPQgJz/dy4OxAIp4gIlXqzOnjORk4kLT/D+EMyfNuVe0JLPfGsdsAvKjuOI8i8irOgKCHVLVPRLpT7MeYjFiJz4x6InICzhfzfSKyHae1ssQd2FLIbFqFXt78fygLLP934E+qei5wddK6TF2EM7Fbsv8PZ7zEi4G1aToU3A3co6rnAf8raf/HAtf7cH5wpnu+BcClqnqhe5mWIml00v/5vQDMpP9Eht6+40lxxEn84VsKdKWIx5hBWYIyY8H7cGYPnqGqM1X1VJyWRh3wGPAxEakACJS8WnFKY57tOIkCEkt4xwG73esfGWpgInI+8GWcRBRcXgCcqqp/winbVQOVKeIK7v8GBvck8Ddu0g4+38dwj4O5yy9Mcd+NwKykZc/hJMbfDLXXoxvDgaSWlzEZswRlxoL348yPE/QQ8AFV/QNOOWqNiKwDvG7TPwLu9TpJAP8KfFdEluG0RjzfAL4mIs1AYYbxXOZ1M8dJTJ9W1SeTtikE7heRDThJ4E5VPQL8FrjW6yQB3A78wo3r4GA7VtUXga8CfxaR9YA3JcKngRq388RLOJ0xku+7CTjO7SwRXL4c53V7VIY2H9dbgaYhbG9MAhvN3BjjE5HPAq2qel8WHutXwBdVdfPIIzPjkbWgjDFB/03iMaVhEWdSwF9bcjIjYS0oY4wxkWQtKGOMMZFkCcoYY0wkWYIyxhgTSZagjDHGRJIlKGOMMZH0/wDFVId/oWsfgwAAAABJRU5ErkJggg==\n", - "text/plain": [ - "
" - ] - }, - "metadata": { - "needs_background": "light" - }, - "output_type": "display_data" - } - ], - "source": [ - "x, y = pd.Series(actual_distances, name=\"Actual Distance (km)\"), pd.Series(haversine_approximations, name=\"Under-estimation (%)\")\n", - "sns.regplot(x=x, y=y, color='black', x_bins=8)\n", - "\n", - "plt.title('Distance approximation error: haversine')\n", - "plt.tight_layout()\n", - "plt.savefig('underestimation_2.svg')" - ] - }, - { - "cell_type": "code", - "execution_count": 35, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAagAAAEYCAYAAAAJeGK1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJztvXmcHUXV//8+SciEJDPJDAlhJyEPCgQNkAiI+nwR+LkExAUUImFx4iNkVNBoWOITWaJh07C4RFEiLhhAAQFF5XEUcZcZBMMqE0JkScwyM5kkkP38/ujum7o93ff23Xtmzvv16tf07a6uPl33Tn36VJ2qElXFMAzDMNLGoFobYBiGYRhRmEAZhmEYqcQEyjAMw0glJlCGYRhGKjGBMgzDMFKJCZRhGIaRSkyg+jEi8i0RmVdrO/ozInKAiGwUkcFVut8vReTcatyr1ojIeBFRERlSa1viqPb3P9AQGwfVNxGRF4FxwHZgB/A08APgFlXdWUReH1fV35TZTKMEROQK4L9UdUatbakFIjIeWA7spqrba2uNUQvMg+rbvE9V64EDgWuAS4Bba2tS3yPNb+hpJKq8Ci3DvlTmfcnWfoeq2tYHN+BF4KTQsaOBncDh/ufbgC/5+2OAnwPdQCfwB7wXlB/617wObAQu9tP/BFgFrAceASY597kN+AbwC2AD8DdgonN+EvB//n3+A8z1jw8CLgWWAeuAu4CmmOdr9O1dA3T5+/s55x8Grgb+7tt4X5AXMB5Q4BPAq8BK4HPOtVcAPwV+BPQAHwfqgBv99K/6+3V++kuAvwJD/M+zgKeAYc69hjh2fQn4s1+eDwB7ALf793oUGO/YchPwkn+uHXiHf/w9wFZgm5/PE07+H3fK83+BFcBqPA96VKgMzgX+DawFvpDj91QHfMVP+x/gW8Du/rnjgZf9cliF95vpdcxP+z9Ah//d3w/s49xDgU8CzwPLE/zGcz4D3u/9L3i/6ZXA14Gh/rlvAV8J5XcfMNvf3we4G+/3tRy4MM/v42igzf/8H2BhyEb3+58P/Anvf+MhYIyT97H+b6MbeAI4vtZ1SZq3mhtgW5FfXIRA+cf/Dczy929jl0Bd7f/T7uZv72BXE2+vvIBmoJ5dFffjzrnb/AroaGAIXuV7h3+u3q8sPodXgdcDx/jnPoNX0e/n5/ttYEnM8+0BnAYM9/P4CfAz5/zDwCvA4cAIv7L5kX8uqDSW+Ofe5FdEJ/nnr8Cr+D+AV8nvDlzl27YnMNavROb76QfhifQVwMF4gnlk6F5uBdUBTARG4TW9/gs4yS+rHwDfc55jhv+sQ/wyWwUMc+z8UahcHmaXQDX79zoIGAncwy6hCOz6jv98k4EtwKEx5X0jnqA0+eX9AHC1f+54vKbka/3vbfeYYyfgichR/rGvAY8491C8F5cmdonfz4FLY2zK+QzAFLwKf4if9hngM/65/8YT/uA33oj3EraP/322A18Ehvrl9wLw7hy/j78AZ/vnRwLH5vj+lwFv8K97GLjGP7cv3ovZND/f/8//PLbW9Ulat5obYFuRX1y8QP0V/y2TbIG6Cu8N8r+S5uWcH+3/E45y8v2uc34a8Ky/Px34R0w+zwAnOp/39iuCIQme9wigy/mc+cf3Px+G53EMdiqNQ5zz1wG3+vtX4FSc/rFlwDTn87uBF53P4/FE+RngstDxcAXlvuV/Ffil8/l9OGIf8ZxdwGTHzlwC1Qq0OOfeGJSnY5frdf4dODPingJsItsLfiu+l4MnRlvxhTPHsVuB65zPI317xvufFTihgN944mfwz30GuNd5pn8D/+1//h/gt/7+McC/Q9dehv/iEPP7eAS4EscbyvH9/69zvgX4lb9/Cf4LhHP+18C5SctkoG3WB9X/2BevIg1zPd7b9kMi8oKIXBqXgYgMFpFrRGSZiPTgCRh4zYQBq5z91/AqI4D98Sr7KA4E7hWRbhHpxqvsd+AFe4RtGC4i3xaRFb4NjwCjQ9FSLzn7K/A8wzE5zu8Tcw7/3Iq49Kr6IvA7vArpGzHPF/AfZ//1iM9BWSEinxORZ0RkvV8mo0LPkIsom4eQXZ5x35PLWDxPtd35bn7lHw9Yo6qbQ9eFj2XZo6ob8TyEfZ004XJPQuQziMgbROTnIrLK/40swC879Wr/O/BemAA+iufpg/c73Cd4Vv9555JdbmE7Z+J5Rc+KyKMickqh9vr3/XDovm/He1EzIjCB6keIyFvwKoM/hs+p6gZV/ZyqHoT3Fj9bRE4MToeSfxR4P16z1Ci8Shm8t9J8vITXvBV37r2qOtrZhqnqKxFpP4fnERyjqg14TTZhG/Z39g/Ae1tfm+P8q87n8DO/ileBRKYXkWl4XkUrntiXjIi8A++t+iNAo6qOxutPC54xbGOYKJu3ky2ISViLJ5yTnO9llKq6YhZlS84yFJEReM2Xr+S4phQWAc8CB/u/kblk/z6WAKeLyIF4XtPd/vGX8LxD93dYr6rT4uxU1edVdTpeE/C1wE/95yuEl/A8KPe+I1T1mgLzGTCYQPUDRKTBf6O7A69JaGlEmlNE5L9ERPA6enf4G3gV2kFO8nq8tv51eG/WCwow5+fAXiLyGRGpE5F6ETnGP/ct4Mt+hYGIjBWR98fkU49XaXaLSBNweUSaGSJymIgMx2vC/Kmq7nDOz/M9sUnAx4A7c9i9BPhf36YxeP0TP/LtHIPXfPVxvA779/mCVSr1eIKyBhgiIl8EGpzz/wHGi0jc/+kS4LMiMkFERuJ9T3dqgSHZ6g1L+A5wg4jsCSAi+4rIuwt7HH4MfExEjhCROt+ev/neZyWox/stbxSRQ/CCVzKo6j/wyva7wK9Vtds/9XegR0QuEZHd/RaDw/0XvEhEZIaIjPXLKshnR1z6GH6E99t5t3/PYSJyvIjsV2A+AwYTqL7NAyKyAe/N7AvAQryKOIqDgd/gRYT9Bfimqj7sn7sar3LuFpHP43Xkr8B7830ar18rEaq6Aa/z9314TR3PA+/0T9+E1xH/kG/3X/HebKO4Ea+Tea2f7lcRaX6I1x+2Ci8g48LQ+d/jNWu24kV0PZTD9C/hRWn9E1gKPOYfA7gFuE9VH1TVdXjNPd8VkT1y5JeEXwO/xAuiWAFsJrtp6Sf+33Ui8ljE9YvxyuARvEi0zcCni7TlEryy+qvfXPYbPA82MaraCszD81RW4nnSZ+a6xh94PLcoi+HzeN7+BjyBjXoBWYLXEvBjx84deL/PI/DKbS2eiI3Kca/3AE+JyEa83/GZEU2eOVHVl/BaJubiCedLwBysHo7FBuoafRIReRjPW/xuxLnx2ABPw+jzmHIbhmEYqcQEyjAMw0gl1sRnGIZhpBLzoAzDMIxU0i8mQRwzZoyOHz++1mYYhmEYCWhvb1+rqmPzpesXAjV+/Hja2tpqbYZhGIaRABFZkT+VNfEZhmEYKcUEyjAMw0glJlCGYRhGKjGBMgzDMFJJagVKRN4jIs+JSEeupSEMwzCM/kkqBcpf8+cbwHvxFqKbLiKH1dYqwzAMo5qkUqDwlhLvUNUXVHUr3jISccsyGIZhGP2QtArUvmQvO/Ay2atyIiKfEJE2EWlbs2ZNVY0D6OyMWrTWMAzDKBdpFaiolVvDK1zeoqpTVXXq2LF5BySXlc7OThYsWGAiZRiGUUHSKlAvk71c935kL9ddU5qampg7dy5NTU2R50sVrmKuN7E0DKO/kVaBehQ42F/Keijeqpz319imLFxxcsWhVO+qmOvNozPsuzf6I6kUKH8V1E/hLYn9DHCXqj5VW6uiK4GwOOTzrvJRzPWl3tPo29gLitFf6RfrQU2dOlUrOVlsZ2cnXV1dLFq0KFIIOjs784pDkjR9nYHwjGnFyt7oS4hIu6pOzZculR5Umli2bBnz5s1j4cKFzJo1i6amJjo7O7PeVpOIU9QbbjneeNPy1jyQ3uLT+Iy1EKc0loPRvzCBykFnZyeLFi1i9uzZzJ8/n4kTJ9LZ2cm8efOYM2dO4n/QqCa4Yvuawp/TIgrlbmYM9+uFj9WKNJV5LbFyMKqCqvb5bcqUKVoJ1q1bp+vWret1vKOjQ1taWiLPudfmOxf+m8+Wz33uc0Vdm8S+YvMplnzlEzxrsN/R0ZH1/OW+Zy3y6etYORjFArRpgrq95uJSjq0SArVu3bqcIpSkgu3o6Ig95wpM0orXvSbOtjhRdQlX9oXYELalGJLczz1XqhgnvWe5sIrbMHJjAlUi+QQqnDa8H4hAR0dHL9Eo1XuJsy04Hmd3YEuUeBYqToVU9nFCWsy9S6Fa4lQtITSMvooJVBmI84DCn8PNUa5INTc3a3Nzs7a0tGQEohzEeRWuGLrnOjo6dMqUKYlsSOKxFCJOcd6ke74/VehpepZyvUT0FfqizQMRE6gSiao44ypTt/INpw+EKei3CrwbVwTiPKpCm+ry2R9nZ9R1xfT5xKWNalJMcl2a6As2hkkq/oX81tNMX7R5oGICVQbiKv5wRZ/rnyL8Tx9sgXCFm+RyCURUBdLW1laQ/VE2x3lhhfT9JC2HUiqROC+s0pSjSbNW9AcPqlp9o0b1MIGqEEFTWSAM+YIS4v7xXU8qiQcV1VRWqJcTF3gQFqu4Zss4e3M9aynpXDo6OnTy5MmJvMBCKMTmcgh1MRTyolBuqlnGcdeaV9T/MIGqEOvWrdPW1taM9xJ4QsG5cFpXVNx0uZrDwnm453J5Vfnsjrs2SqyiPL+WlpZMf1rS+xbj9QR5h8V45syZOYW1mPsUEkFZaLRlMeT6DVXj/m4ehTQR5jqXluEBRnowgSozbiXd0tKSEaezzjpLZ86cGVuBBMfb2tp08uTJ2tbWFluxtra2Zrwzt4Iol9eQyyOLE9moMkjqTUR5Pfnsc5su3aCOXJGHpVSCpTYfldOji3uOcja1hvPMl0eSfAoZMpAW0mjTQMIEqoxENXMFx91Bu7m8ora2Nm1ubs6KonPzDSrze++9N6tfKl+AQT67o/YDArF0xSBXevd5knhRYa/HzTfOU3DLsZDKP2nlXc6KKRwZWcrg7ULSlJpHuUWlr3lHhb7QmJiVHxOoMpCrgneDE+J+wIHANDc36+TJkzNNg2GRC7bm5mZdt25dxoMK5++KVVRlG9ccGNe8l6v5MVd0YEtLi86YMSOyKTCcf7icgnvGjeMqhxC5uM+Va4xYrvvl+h2E88/1W6jmYOha5l2IDfk8tUJfzJL8fgp5USnFOzfiMYEqkbhKXdVrihs3bpy2trbGXutWiIEHpdp7sGzYi3Lfyl3CA3/jov9cgcnlgQT3i3rmsJcXJhAYt7kyqryimj2DsoiqzPP1sxRaWYTLMvxikI9wOUeVazh9vvyqWTGmoVJNWiZxTZuF9L/lK7PgJbCYlxSjvJhAlYE4j6OlpUXvvffeSAELey6BNxR4E64YBZV8kDbwSsL9QUFFGRacsMhEeWVxz+WKp3s8sDEQS7dCjhKffM1wrogHFcThhx/ey7OKyi/O9nzHwnZGpS8k4CCX6BYqeHFBKHHpiyXXC1YpeZZiQ67rq+FBRf0fGeVn586dun37dt2yZYu+/vrrunHjRu3p6dGuri5dt26drl692gSqXERV+lGzQgTHg4AJ1ew3+KjK/tRTT80EEbS1tWljY2OvAIngc5zHERV6HdiX720/3H/mBoDMmDEjy0sKC2+4TKIIPE03JD9o8gyLb6EVh1uO4dk7klTM+QQ8jvDzh8s6n4CGPYZyeEq5bHX3S+l3KtZO9zdSzucs5TmMZOzYsUO3bt2qmzdv1k2bNumGDRu0u7s7IzKrVq3SV155RV966SV98cUXddmyZfr888/rc889l3czgSoDYa8pXAmGhcGtfIO0rqfgpg+i+gIPo6OjQydOnJjlZQVRfYHABfdx7TjrrLN6CUZgazhi0LU1+BtuJgzuFUQchtO7FU3UQGP3HjNnzsw8X5T3kCTsPmxzcF14LFr4+3Kvi/NacjUrxQlN2CNwg1miyiKJ15TLS0hSNkkpVYCKsSPu+UuhkO8oXz5R+/2NsDezfv167erq0rVr1+rq1at15cqV+vLLL+uKFSt0+fLl2tHRof/6178SCU0x29NPP20CVS7ClX7Um3pYyNzouLi+pnAAQUdHh06aNCnWg3Lzd2ehCKLkwt5Q3Ft9VCUb9ZYb1QcWTp/La8g3sNYV3yTfQbjSySe+Ud9hlGeVz+MJpwvP3JE0v3wVZ1RFHvzugujPuOviKFQUyplXMdeW09Yk14f7FtMsUjt37tRt27bp5s2b9bXXXst4M52dnbpmzRpdtWqVvvrqqxlv5oUXXkjszRQiLI8++qj+7ne/0wceeECXLFmit9xyi95www06f/58veSSS7SlpUXPOecc/dCHPqTvete79LjjjtM3v/nNOmHCBB07dqwOHz5cgcQCZUu+h4hbOjtYmG3BggXMnTs361xTUxPLli2jsbGR5cuXs2TJEqZPn575u3jxYubPnw9AV1cXCxcuZPbs2ZkFEIP7tbe3s2TJkszCf0GeUYTPz5s3j56eHm666abM8vSzZs0C6LVUvXvPzs5OLr74Yurq6jI2hp9/2bJlnHbaadx6660Z+4JnmThxYla6JJ/b29s5//zzue666zjhhBMSfQfhvNzvJMrmKMJ5BIvuTZ8+nSlTpvRK29jYSFdXF1dffTV1dXWcdtppzJ49m7vvvruXLblsT3LOfZ7gNxZ8xwsWLGDYsGHMnj2bxsbGrO/OTRvOa968eQCZ31qxuHnNnz8/8neU7/o4OwtJUyxRdgbPFDxP0mcplZ07d7Jjxw527NhR0H4p9fTOnTt57bXX2LRpExs3bmTDhg1Zfzdt2pTzWHD8tddeK2NJ0K4Jlnw3gXLI9w8f/JDBq0RmzZrFokWLmDZtGnfffTc9PT00NDRkKpKuri4AFi5cmKn8AyH52Mc+xhFHHJHJJ6hAgko0+AfavHlzpnIKhCbg4osv5rrrrqOpqYn29nYWL16cSTd9+nQmTJiQlX9ge3hl33nz5uWsxNrb27nhhhu4+eabgV0iC7sqrGXLlnHGGWdw5513Rt4rOP/tb3+bJUuWMG3atCxxcss3qDiC693vxRXFcMUZfrYk320glt/+9rczItXe3s7MmTM5+OCDGTVqFKpKS0sLixcvpqenhyuuuCLLBvd34VZ6cbjXxL00hL+jqDKPShu+T/CyUmrFH/4+CxWUJAIQJySl2p3vfzqpPcFnVc0IhysmSYSmEFSV119/PSMQSQTG3dzzlarnd9ttN0aOHEl9fT0jRoygvr6ekSNHZvbDn0eOHMnIkSM5++yzTaCKIe6fxPWc3MrF9QZuv/125s6dS2NjIxdffDGqyrBhw2hubs6q/K655hp+//vf88tf/pLRo0dnPKrGxsas+wQCF7w1B2/1CxYsYPLkyVx77bXcd999ABmPKRBGN0+34ofelXkur7Grq4vTTjuNww8/PCNQgei5b/PQW1yDewX3D8Rl2bJlGXvd9PPnz2f58uXceOONXHHFFb2eqbu7m/PPPz8jgsE9gzJK8pYe9d0GXm9Q7gsWLMi8dITL0K3w3bIIbHVfRuLKNPDawvfMV9lHiUSSZ43zNEsVhEp7HcV6VXHCEmbnzp2RIrJz507Wrl3LwoUL+fSnP01DQwPr1q3ja1/7GhdccAENDQ0576+qbNmyJSMSq1atAuglHFFiEghKsF+oqCVl8ODBWaISJyTBFhagYKurqyvq/m984xtNoMpJUBG6b6OuSE2YMIE5c+Zw/fXXA2S8Evca2FWhLV26lA984AN0dnZy0UUX0dDQ0KsZMPCeguPBP+vjjz/OmWeeyVvf+lYWLlyYVZEH912wYAFbtmzJiIr7lu/aEeU1hZuaAqGM8hrimkfcyjSqoglEKiiXefPm0dzczHnnnce2bdu4/fbbM+K9efNmtm7dSkNDQ5bYh4UwEMA4TzHJi4dreziPqLyiysItu6jrwwIdZ18u8nkG7rm4F4bw9cGxuN9FtYn6HqNwBWbNmjVcd911zJ49m4aGBtauXcvOnTtpaGjoJUJRdd/WrVszYrFy5Upgl7CsWbOGHTt2ZIlK2KsJtu3bt5e/QIBBgwZlxCKXcESJjHuurq4OEamIjUkwgSojnZ2dzJkzJ9PUFlSCwT9z4K0E//CNjY08/vjjHHHEEVn5BF7Q0qVL+dKXvsSdd95JY2Mjc+bMYe7cub28i6j+J7e/asKECb0qx6DZb/ny5Zm3dLcPzL0+OB6uyMMeUvD8119/fS+BCbyHsPhE9Rflelt3+3xWrFjBgw8+mCWOl19+OVdeeWVsP5Tb7xaIWmBvuDJ2Pb1wubplkKvfLnxNmFxNdnHHch2PIqqc4/JxPdhc91q2bFnGC0xic66yKORZAtEIBGTNmjV85Stf4TOf+QyjRo2KbTLbuXMnANu2bcsIxquvvoqI8J///Ie7776b7du3c/TRR7N9+/ZYDyY4vm3btkT2FoqIZHkrrsAEwhElOuG0u+++e82ERUQYNGgQgwYNyuznOhb3d9CgQey+++6JBGpINR6sP+CKE3j/kG4FCt4XuGDBAl588UWeeOIJTjjhBMaOHcvs2bNZuHAhzc3NXHXVVfzlL3/hq1/9alYl2djYSGdnZ6Q4uQEQAVOmTKG9vZ2mpqasSsB1uTs7O1m/fj1AphkryHvx4sWZc2HCTVVdXV20t7ezfPnyTAXvegBuRR703wSBBK4IhHHF6fLLL2fUqFHMnj2bBx98MBPgEZTbY489Rnd3d2QenZ2dWU2ap512GnfffXdWmlmzZmX1lQV9YW7znPvdBumDcnQ9rSQBA/n6auIq9HAfVi4hcz3Q8MtB1DVJ+qLignLiRNsti3B/zPXXX89nP/vZjMCERWjnzp1s2bKFnp4eXn31VQYNGpTVpzJixAi+9a1vxXbau8e2bNkS+0wAjz76aM7zuRg+fHhej8QVmfr6egD23nvvzPHhw4czaNCgom3IRRJhKPacKz61wAQqAU1NTZFvlOGIvMsuu4wVK1Zw5plncumll/LBD34w8w/f09PDDTfcwAsvvMDFF1/ME088wcknnwx4P7Dg7TaomN1//ObmZmbOnElXV1eWEJx88sn84he/yDR5NTU1MXv27Ixoffe73+WEE07gwAMPzAROBJVxIJpBnuHgD5eJEyeycOFClixZApCJTgxHIXZ2drJ48WIOP/zwjODOmzePLVu2oKpZHlhAZ2cnV199NX//+99ZsmRJluAFNq1fv56dO3dyww03cOWVV/aKZHO5+OKL+etf/8r3v//9rDRB5Txx4sRMQMTo0aMzZe56DW76oCzdijmqDy9Xk54rdoUQjuoM7uXaFHxnwctSOFAluC78DLmE86KLLmLkyJFs3rw5IySDBg3iggsuYMeOHaxatYpt27bR09PDKaecQk9PD/feey8/+tGPMpFexxxzDJs2beLSSy/NvFhEeS6vv/56weWSlN133z2vkMQ1h7l9MqUIS1IvoxAPJCwq/Rlr4iuQcLTZ+vXrufnmm7OamP785z9z7bXXcuyxxzJr1qysQIgVK1Ywe/Zsbr31VqZMmUJnZycXXnhhxnsIIrXCIcXt7e29QqF/+9vfZiLhwlFkQXDD3XffnRFJ1/sJKrRwM12QLiw8QR+RG0If17wXFpCuri6uuOIKbrrpptgghbPPPpsHHnggq1nRtXfatGksWrSIhoYGRITrrrsu63nd57v66qsz0Y1R31tUkEJSzyXuXNyxYgJTwp6e2+cWJSrhptKJEyeybt06vvzlLzNnzhxGjRqV8Vq2bdvGxo0b6erq4qWXXgKgu7ubDRs2sHLlSjZu3Mjvf/97DjnkkEzaqG3Tpk2RZVMO6urqYjvt3eavXE1mI0aMYMiQIZnnGz16dK/7JPUoShEWIxoRsSa+chOuIFwvJPBQLr/8curq6jjyyCP56Ec/yllnncVb3vKWTGhyY2Mjb3rTm5gwYUImXxHJeGFREWCdnZ0sWbIkc01Q0T744IOZfq6w59PY2Mjhhx+eOTd37tyMiAVv9EFTVuC1uHkH93WZMGFC5tlHjx5Nd3d3Vti763m4b/pdXV0sXbo00xwa1Sn/1re+Nes5gnwaGxuZO3cuy5cv5/nnn2fhwoXcfvvtvb6bIM/GxkYuu+yyXuXnpnOb9VyvKK6JLqp/Kjx2Ki5oIvg+3e/B3Q+/DLjPcccddzB+/Hi2bt3K9u3b2b59Ox/+8Ifp6Oigu7ub9evXZ7aenh42bNhAT08Pa9euZevWrXR3d3PyySezceNGenp62LRpU+KQ48cffzxvmjC77bZbllcyYsQI6urqGDp0KHvttRc7duxgxIgR7Lvvvr1Ex+2DGTp0KFB4n0ew393dzZgxYzL73/zmN7n00kvZY489at5kZRSGeVAFEhfBFngKwYDWCRMm0NXVxfve9z6mTJmS8R6CgZdBc5PbZwNkAiXCIdxR0WHhSLmA4D5uPxLAnDlz+POf/8xxxx2XqSijvKkgyADIiiJ0K+ELL7yQBx98kJ/+9KeZgAbw+roCj9Gt9KOiIPOVZ/C8gaBMnz4dICu4I8rTA7KCWYoZZJorGi8YWhAEubjfQdg7a2xsZOPGjXR3d/Piiy+iqqxfv55XXnmFHTt2sHLlSh566CEOP/xwtm7dyrp169iwYQPPP/88DQ0NvP7665mmsSAgoNwMGTIk008yatSoyGawqEixhoYG6uvrGTVqFJ2dnRxyyCGx3sSKFSs4++yzATJNueF03d3dWSJSDHF9ZZBsMLdRHZJ6UCZQBRKuOMNRVOGmuCDaDnb1Wa1fvz7TpBc0Xx144IGcccYZXHfddVx00UUcffTRsX02Uf0IQd7Nzc2MHj26V8d/YMuNN97IZz7zmaxBp8EYovCA3oCof+z29nZmzJjBz3/+80wlff755/Pss88yefJk6urqsuwvNoTZFazly5czc+bMTPOo+324ohaUhSti4efJ14S3YMECZs+ezYYNGxg0aBBLly6lvr4+47k89dRTDB48mIceeoitW7dy8MEHs3nzZtasWcNLL71EXV1dZpBlpUKORYSRI0eiquy1116MGjUq47UE3sjTTz/NSSedxIgRIzJp6uvraWhooKGhgVHFexa4AAAgAElEQVSjRrH77rszePDggpuywuWVLwAjeEmJi8TMFTlZCHFebyVmqTCKwwSqArhRVuEBm+4bdHgAanNzM4sXLwZ29S0F14T7hBobG7nooou44oorgN7/zGF7AubNm8fq1at55plnOPbYY7nsssuyxtgAmcHDc+fOpbu7m3PPPZfvf//7TJkyJSv0OmkFEYix6z0uXLiQAw88MMt2t18lLvw8/JYbVclcfPHFbN68mZtvvjnLSwzKNRClbdu2MXfuXD75yU8yaNAg1q9fz7///W9uu+02tmzZwpQpU/jTn/7EoYceypYtW1i7di2bN2/ONJFVM+TYbeaqr69n2LBhNDU1ZQTE9VJGjRpFQ0MDqsqBBx7Ili1bGDt2LF1dXYwZMybLE7nmmmv4whe+kFWmhVKIQCRJG9dPFzcWrZyiUqzYlZJvpe7ZH0gqUDWf6LUcW6UWLHT/BvvushDhSWBVNWsxPnfZimCW8FyTk7qTvoaXYc8363Zra2vmnlGzj4cnsu3o6MiyLTy5bZA+3/3dSXOD55s5c2bkIn+5VvVtaWnRCy64QNva2vQf//iHfuQjH9ElS5bo/fffrz/84Q/1i1/8oh599NH68Y9/XM8880z90Ic+pAcccIBOmTJFJ02apPvss4/W1dVpXV1dMBllRbYRI0boXnvtpQcddJAeeeSRetxxx+kpp5yiH/3oR/X888/XOXPm6Pz58/Wmm27S2267Te+55x5tbW3V1tZW7ejo0LVr1+qWLVt0x44dunPnziJ/nfkpdc2jckygGvU7TDI5b9T1hd6zGDvDx/LlVa5Z1Qci2GSxxRN4Pu78d25fStAfEvSFBJ4PkJk/r6WlhfPOO49DDz2USy65JGtWBHcAqZvvggULEJGM9+N6NXHRW+D1+5x88sn8+Mc/zuoPCs8E4U6ZFJ5xIfBGAm/Pnb3BLYfwbA3gDbLcbbfd6Onp4amnnuI73/kO06ZNY/fdd2f9+vWsXLmSrVu3snr1arZu3UpPTw+dnZ2ZvpXXXnuN9evXZ/q9KoE7lmX48OGsW7eOwYMHc8wxx7DbbrvR0dHBu971Lvbee++MtxJsPT091NfXM3PmTO66664szzANTUeVatIqxQNwWxOixmsVmk+SZ8mVNlfUZL7xXfn6Kkv1oAaip2VNfCXgNuUFhDvJFy9ezJYtW7jssst6hYYDmdDqYLqioUOHZiYcDdK5zYULFy6kp6eHoUOHZglYcO98zSPLly/PivILzoPXtNfW1pYJOQ+uGT16NP/85z8ZM2YMS5cu5ZZbbuGMM87oFRW2bds2XnnlFTZu3Mjf/vY39ttvP1auXMmQIUNYv359xfpYwJszbLfddmPs2LHsscce1NfXM2TIEMaNG8ewYcMYO3YsQ4cOZfDgwey9997ss88+DB48mLvuuovZs2dzwAEHZK5xcQU5aKaMKl/IFvrwTAxuecdRyQooSeh5rQgHvpSaT7Fp84lcru++0mWYlpecamMCVSLhcTNu5Jwb0h14E24UXCA+zc3N3HjjjWzevJm6urpe46WCfK+++mpmzZqVifwLRM6dXim4F8CaNWsYOnQo3d3dLF26lIaGBh577DF+8Ytf8Pa3v52hQ4fS09OT2dauXcuaNWsyU70E41gqOcvx4MGDM30mdXV1rF+/nqFDh3LUUUchIvzhD3/glFNO4aijjmLw4MHceeedvPLKK1x11VXss88+/OQnP2HevHls2rQpNqIx6vsJf3+5cKPxovrGwkurBN9NrvuG84BkE8GWQpKIxLRUfqV6ZbW4ttJ5pun7qRbWB1VGwu3IQV+Lu5pqcNztU/nXv/6lp59+uk6fPl3PO+88ffLJJ3Xt2rX66KOP6n333afTpk3TK6+8UseNG6fHHnuszpo1S4888kidNGmSnnrqqTp+/HidMmWKNjU1aV1dne65555aX1+vIlKxPhYR0dGjR+v++++vhx12mB555JG6zz776IknnqhnnXWWHnXUUTpnzhz90pe+pDfffLN+85vf1NbWVn3ssce0o6NDn3vuOd28eXNW/4G7sGFQbq2trb0WTgwv8Bi3yGCwiJ+7eGTcd5WPXH01rm0zZ87USZMm9VquPtc15V5JthhK7Qspp+2l2JLk2vDvpJJYH1NpYCvq5mfnzp26Y8cO3bZtm27dujWzWuWmTZt0w4YNun79+syqla+++qo+/fTT+tBDD+lpp52m1157rb797W/XlpYW3XvvvfXjH/+4fuITn9DTTjtNTznlFH3b296mb3rTm6omLIMGDdL6+nodN26cHnzwwTpu3Dh9xzveoR/84Af1nHPO0bPPPlsnTZqk48aN0y984Qv6ne98R3/1q1/pX//6V3322Wd11apV+vrrr+vatWsz5bNu3Tptbm7WQw89tNdS9sH5JP+k4c7ysLC7hIMposTADUQJC0ExopC0QzxqdeJwmijbS6XUfEoRp3JXwuUIuog7F/U7qCQmTsWTVKBq0sQnItcD7wO2AsuAj6lqt3/uMmAmsAO4UFV/nS+/o446SltbW1HVzGSUwb4bPhzuWwnPDeYu8BU+VsmQ48GDB9PY2JgJPW5sbGTYsGH8+9//ZvLkyYwdO5b6+nr23ntvBg0axEMPPURzczMNDQ2MHj2ar3/961xyySVs2LAha/oe6N0f9fjjj3P33Xfn7fwNCJovw81s7vkk/QxRTWZxiym64evh5jT3uvC0SO5zJh1z5YaqJy2T8PPENS0W03QTFW5fyz6KvtT8VGrZG9Uj1U18wLuAIf7+tcC1/v5hwBNAHTABT7wG58tv9OjReuKJJ+oxxxyjkyZN0gMPPFD32GOPioccDx8+XMeMGaOjR4/WQw89VPfdd1898cQT9dRTT9VJkybpOeeco8ccc4zOmTNHv/KVr+hJJ52kN954ox5wwAF6xx136NKlS3X9+vX65JNP6vnnn6/nnXeeNjc3a1tbm6pmNxkGf1Wz39xaW1t15syZetZZZ+nkyZMz10a9UXZ0dGhzc3PGG3I9mGLDkpO+sUZ5KW6TXktLS1Z4vXsu/MxJ7hkX1h62KQivL6YpLukbfSH5BeUQZXetmwqj9vsCfc3egQB9pYkP+CBwu79/GXCZc+7XwFsT5FGwsOy555560EEH6Zvf/GZ929vepu9+97v1Qx/6kJ5zzjna0tKil1xyiV511VV644036uLFi/W2227T008/Xe+55x7917/+pc8++6y2tLTo8uXLdcWKFbpp0yZ96qmndMuWLbp69Wp9/vnnVXVXJRxUgG1tbXrIIYf06m/p6OjQ1tZW/fCHP6yTJ0/OqpiD8+Hmq9bWVh03blxmjE24CSrcN+OObero6MiMswr2XXGLqszDhEUw13iWmTNnRvYlhZ/TtTtKZOJsylehxwlG+CUg6rnzlUUS++JIcr9c9leDWjSflYtC7e0rz9XX6UsC9QAww9//erDvf74VOD3muk8AbUDb8OHD9eyzz9ZZs2bpnDlz9Morr9SFCxfqLbfcorfffrs+8MAD+sgjj+gTTzyhL7zwgr7yyiu6atUqXbNmja5bt067u7u1p6dHN23apK+//rpu3bpVt2/f3msgZVT/iFuphr2BKM9nxowZetZZZ2UJxsyZM/X000/XSZMm6YwZM3oJRVjI3PsE4uQOtI2qSKJscQUsCFoI8g0HA+QakBjuWwrT0dGRJbrBde494khy3rUvrg8rLi/3O4wSi7BHE9XPVMmO/3D6WlGIBxVXzrWikPLtS+Lbl6m5QAG/AZ6M2N7vpPkCcC+7wt2/ESFQp+W71xFHHNFLaDZv3qxbt27VHTt2lLVgo97Kw5V/4JWoakZsguOTJ0/OzPrgekctLS36gx/8oJcQBV5X+D5B5Rmcc/+GbQ2LXFwl69of18zkPkv42ubm5timwvBxV9CSeiBx3k9YJMO25co/STNg+HxSDyrf8xRybRpI6hHGzRjSF561L9jYH6i5QOW9MZwL/AUY7hwrqomv0mHmuQi/fbtv3W1tbb2a64IINHc6oKB5r7GxUU8//XRtbm7OVLRR4hLgek7u5yiRCHs5UXZHPVcUbvOgKw7uM8WVU5RNcU1rYfHJ5REG14S9srjnc58l6p5RlOLxxFXcfaVCLOTZ+7oQG5Un1QIFvAd4GhgbOj4pFCTxQpIgiWoLVNJmI7fCDDdDud7TlClTtLW1Vd/4xjdGdtjnqsg7OjoyTYbB57gmrrBnlKTSyVWxR3licR5ILm8plyCEhSo47npKbvoogcx1vFDRKESccpWN+yLTVyrvpJ5urrSGoZp+geoAXgIe97dvOee+4EfvPQe8N0l+1RSocIUZV/EFhN/Qg2vcSV3dprXw9W4FFzUgta2tTceOHRvZtOd6GXHeVb7KON+4niTXB15j0si68OcoUS7UU0ua3vVYSyXfi4DbFFxuqiUQcSLfV5r0jNpQVoEC9vSj7T4JNANHA4OSXFuNrRoCFSUOURVf2FuIevufMWOGTpo0SWfOnNlLlNzr3Sa8qBnCXZFy8wj2XXHI1T+Ui0K8rShyhchHCWBUM164/AoV2iTno2wuZwUb59WV4kHl8miqKRBxTcrlwoSu/1EWgQLe6fcDPQrcAnwJ+ApwP/AUcCXQkORGldwqLVBun0uYKC8o3Izmhne7x8LBD66HFUTVRQlMXFNaVGUeZVMS8nkypeSV7z7BX7fvLZcnF1chl1KxlVPw4tKXWqZJQ/ArSaXF0Lyx2lOJsi+XQF0PHBBzbgjwgSRRdpXequVBxX1R7jiiqEi6lpYWPf3007M8prBoueLnDlYN8sjlyQTn3ei+YirrJJ6M+0yVrjQKbQoMf65UxVZo3m74f9I8C/m+ak0lxamS+Rv5qdT/Uar7oMq9VUOgwk13YVyhCYTIreCD8U+BKLW0tOiHP/zhyCY7N784W8J2uZF/4TFMSSu7qEG3UU1q1RKoJLbmS1fM+XKKQ3gQdJI8zWuwMkgTqfWgeiWGY4HfAn8CPljItZXcquVBxXX0h9NNmjQpS4yCCj08PuqNb3xjZN9MQNLmH1dUwkJaSD9HVHNaPtsq2ddQSNNgMffKF95eLkrp+6sltbYh6cuV0fcoVxPfXqHPdwEjgXpgaZIbVGOrxnIbbn9IVMSci5subixPR0eHHnroob3erMNv0UG0X9K57sL/1OGmyVz74T6scN5x5VKOiiSqiavSb9CleFD9nTR4MLleIoy+TbkE6mfAPGCY//kWf4qhjwN/SnKDamzVauJbt84b1xRMyhpVQYf7aaLCzFV3jV9yvZ1wfkFfVK7+L9dTCpr54prnwvnH2R71HHH9WnFNlEnLtJDPRnUptvwr7VXXWjiN0r/jsjXx4S2L8RvgbGC4L04XhgfZ1nKr9jio8HpErhCEo/FyiUPU1ENRnlb4/u6+e12u2SaivKs4oYoKishXUUSF4cd9dq8vtPkr3z+GVVy1pZaer1EdyvEdl3sc1GDg08CvgHckuaaaW7UEKuxVxHkcqrsGYSaduDTJ56hmsChvKaoPKa7vLCyK4WUukpZHlGcWPhem0PFGufIqxZMzyouVf/8nFR4UcCrwR+D3/pio0cBCYAkwMckNqrFVq4kvXPHmmhg1iNyKEqdS7h1X8cc11blpo7yxfPPbFWJj1H7U56TnkqaPKh/DMNJLuQTqn8AIYAzwd+f4wcAdSW5Qja3aHpRq9BISLm6ARJKKP5dn456P89rydSbHVdyV6vcph/CU8/pKCNdAE8OB9rxG5UgqUIPIzXrgTH9bHRxU1edV9cw81/Y7wktIT506lcbGxsi0U6ZMySxRvnDhQqZNm8aiRYsyS3rDruW9g2W93c/z5s1jzpw5zJs3r9fS552dnZm0y5Yto6mpKXLpcTfPrq6uRM9UyJLnuc65986XR1z6fNcnJarcyplnualEnqVSyec1jFhyqRee5/Rp4AJSMKVR3FaLPqhC+mncQbRxaxXFBTCE31rdcVXBMu9xAQru4OG4qZpyPWeu88XOgh6XR67gjXz5JLUn1z2LoVJeWVr70dJok9E3oUxNfCPzZpAgTaW3WvVBuefCx8LHg7n3XKEI55ErmCBcwQbH4tYziupfinqmfM+ZqzySkrR5MXz/QkSukECL8LVpI402GUY5KZdAtQJfBf4bGOEcPwiYiTeRbOSS7NXcqjFQ1/0bPhcVPReuPN1FDKPyiKtkg76umTNnZqXLFc0WtR9nd1zfV7koRggqlbac1xqGUTxJBSpYaj0WEZkGnAW8DWgEtuOt1fQL4FZVXVW+BsfimDp1qra1tZWUR9DPE3V8wYIFmf6kuDRBH1GQJmo/6vqgvwlg/vz5kfm3t7czYcKEXn1Mwec42/MRvs591iT5Jb1vrnTF2m4YRt9FRNpVdWrehElULO1bqR5Uvrd81wtK4pW4y1sk7R+J6x9KYlst+lWi7Comcq/YJjrDMPou2GzmhZGkvyPJpKuumOVavyl8Ta6gi6T9QdXuV0nah5br2kIDItLab2QYRnJMoCpAIQNY3T6pXLM4RKUvhUpFlhWTLlfQSLHeV5rFKc22GUaaSCpQ+cZBGT6dnZ0sWrSIZcuWJUo/ceLETL/VokWLmD59eq/+nmCMU5B+1qxZOftqkhC+RykE44aSjn/JNQ7L/Rw1bitpP1SudJUao5MkXxsnZBjlJ7FAichgEdlHRA4ItkoaljaampqYNWtWr8G2LuHjTU1NmeuWLFmSd3BrXN6FVn6usOQT1LjzwfVA4qAJl7AIRX0uJ5USiKT5RomuYRglksTNwhusuxZ4Cljqb/9Mcm01tmrPZh533J2hPO66uPFTSfqpktqXr2kxIGoAb5LxXUlsKIVir69UE5s13RlGeaHMs5l3AHskSVuLrZoCFcatxIPoPXfJ9XDaqL6XQla9LcSm8H4UcQN9cx3Ld+9S+tIsEMIw+j/lFqjfAUOSpK3FViuBihqk29HR0Uug8glGuQfHhvMuNX2hnl0aAz0KuZ+Jo2FUlqQClbQP6gXgYRG5TERmB1s5mxr7IkH/UhAQ0dTURGNjI8OGDcukCfdhRA3UDfqqatV/4hLVh5IrcCMq/1L7YarZjxN+hmXLllmwg2GkhLwzSQCIyOVRx1X1yrJbVATlmEnCpZAZEqJmXoiaoSFKmICsWSoWLFiQEbxysWzZsrLmF6Y/zAQRni2+3N+BYRjZVGQmCaCeFEwOG97K2cRXTJ9LePLXQgb95hsLVUpzU7nGVrn09+av/v58hpEGKGcTn4gcLiL/AJ4EnhKRdhGZVIKAppa4tZXi6Orq4owzzqC9vT0T1p2riSiuOayzszOrqTA4VmxzUxC2nmtsVZQ9udLlsqe/NIn1dW/QMPoVSVQM+DPwTufz8cCfk1xbja2SQRJJPKqkHlQ4BDzJPUoJoCjX1EH55syzyDvDMAqBcs1mDiAiT6jq5HzHakW5+6DClLOfJdz3lG9G8kr3i5RjRvJy5tPfGGjPaxhJSNoHlTiKT0Tmich4f/tfYHlpJvYdSq1gwsttFDrVT74ZLErBFcgk6Yo9H9xjIEXIDbTnNYxyk1SgmoGxwD3Avf7+xyplVF8g6Zx8pfYjLViwgMbGxshpdMpV8VWrIh1o0wENtOc1jHKTqIkv7VS6iS/MsmXLOOOMM7jzzjsTNbuFx0AVsjBgkoUUy1EBWlNUbUgyJMEw+htlaeITkRv9vw+IyP3hrVzG9jUmTpyYWJwCAg8lbjbvOOLSlPvt3CrF6pNrxnfDMPJ4UCIyRVXbReT/RZ1X1d9XzLICqLYHVQxxwRHVurcJUDoxD8oYiJTFg1LVdn/3CFX9vbsBR5TD0IFCUOkEs0ZU6y3Z3srTTViMTJwMYxdJgyTOjTh2Xqk3F5HPi4iKyBj/s4jIzSLSISL/FJGjSr1HWgiEoquri3nz5mUtVlhJgqbAWjIQxHEgPKNhVJt8fVDTReQBYEKo/+l3wLpSbiwi+wP/H/Bv5/B7gYP97RPAolLukSYCoWhsbGT27NnMnz+/rKvf5qNWXtRA8OAGwjMaRi3I1wd1IDABuBq41Dm1AW/Bwu1F31jkp8B84D5gqqquFZFvAw+r6hI/zXPA8aq6Mldete6DKmSQ6rx58wCyBGrZsmUsWrSoqL6pvjBANk39KpWyJU3PaBhpp1x9UCtU9WFVfWuoD+qxEsXpVOAVVX0idGpf4CXn88v+sapR6Ftw3NtzVD5NTU3Mnz+f2bNn9xKnfHPmFXLvKGpZeaal4q6kp5OWZzSM/kTSyWKPFZFHRWSjiGwVkR0i0pPnmt+IyJMR2/uBLwBfjLos4likiycinxCRNhFpW7NmTZLHyEux6ycFnk/ScOFgVgh3QtekIevhPG0gaHJs4Kxh9DGSTNgHtAH/BfwDGIw3i8SXk1wbkdebgNXAi/62Ha8fai/g28B0J+1zwN758iz3chvFXudOmJp0FdpC7heetNUmaDUMoy9CmSeLbVPVqSLyT1V9s3/sz6p6XKkCKSIvsqsP6mTgU8A04BjgZlU9Ol8ete6DCii0H6KYfgv3mr7Q/2QYhhGm3JPFviYiQ4HHReQ6EfksMKIkC6N5EG95+Q7gO0BLBe5RMQoVp6R9V3H3sAlaDcPozyT1oA7Ea5bbDfgsMAr4pqp2VNa8ZKTFgyqUqFkEkiwhX+p9+jL96VkMY6BSVg9KvWi+11W1R1WvVNXZaRGnvkzULAJR4lSqB9RfKnTzBg1jYJHUgzoFb8zSgcAQvGg7VdWGypqXjL7qQSXFvIZd9PVxTPZdGkb5+6BuxJvuaA9VbVDV+rSI00DAKrRdVEqcquGZmQdoGIWR1IP6HXCiqu6svEmF0989qGoxkN/uzYMyjOpRbg/qYuBBEblMRGYHW2km9j3685vvQH+7r5ZomDgZRnKSCtSXgdeAYUC9sw0YKl2B11oYbJYFwzDSxpCE6ZpU9V0VtSTlVLICz7d8e7WahUycDMNIE0k9qN+IyIAWKKhcBZ5L/AZ605thGAOXpEESG/BmjtgCbMPCzKuKdawbcdhvw+iLlHugbr2qDlLV3S3MvPpYBdT3qIbHa9610d/Jt6LuIf7fo6K26pjYd6hWpZR2+oKNlaRawmGBLUZ/J58HFYSSfzVi+0oF7epzJKmU8lVYSc6XWvEN9MGo1bCrmsJh4mT0a5KsyQEMS3KsVls514MqhVxrQeVbvynp+k6lrP9UrTWk0rpGla2hZRjpgDKvB/WYqh6V71itSFOQRK6Q8bgO7eB4NTq8B3qn+kB/fsNIA2UJkhCRvURkCrC7iBzp9D8dDwwvk639ilzNO/nCyN1l4ytp30BmoD+/YfQl8vVBvRuvr2k/svufZgNzK2ta36WQStAVtGIXMTTSiX1vhlEaOQVKVb+vqu8EzlPVE1T1nf52qqreUyUb+z2BoFVqPSij+tj3Zhilk7QP6iLge8AGvKXYjwIuVdWHKmteMtLUB1UJrN+kb2Lfm2FEU+7ZzJtVtQd4F7An8DHgmhLsMwqgUvP/GZXFxMkwSiOpQIn/dxrwPVV9wjlm9DGq3fxkYmgYRjEkFah2EXkIT6B+LSL1QCoXLzTyU82BpNYXYxhGsSTtgxoEHAG8oKrdIrIHsK+q/rPSBiahv/dB9XWsL8YwDJdy90EpcBhwof95BN7ihYaRFxMnwzCKIalAfRN4KzDd/7wB+EZFLEoh1jxlGIZRfZIK1DGq+klgM4CqdgFDK2ZViqh1H4p7XxNKwzAGEkkFapuIDMZr6kNExjJAgiRquaSBK461FkojG/seDKPyJBWom4F7gT1F5MvAH4EFFbMqZZRbnJJWbq442to/6cFeFgyjOiRdUfd24GLgamAl8AFV/UklDeuvFFq5uYJk4pQO7GXBMKpDUg8KVX1WVb8BbFXVZypoU7/GKrf+gX1/hlF5EguUwwVlt2KAYZWbYRhGfooRKJviqB9i/SmGYaSNvAIlIoNE5CPOofdV0J4BSa3FwTr9DcNII3kFSlV3Ap9yPr9cUYsGGGkQB+sXMwwjjSRt4vs/Efm8iOwvIk3BVlHL+jmBIKVFHGp9f8MwjDCJ14MCPgk8ArT7m83OWiRhr8nEwTAMozdDkiRS1QmVNmQgkRavyTAMI80k8qBEZLiI/K+I3OJ/PlhETinlxiLyaRF5TkSeEpHrnOOXiUiHf+7dpdwjzZg4GYZh5CaRBwV8D69Z7zj/88vAT4CfF3NTEXkn8H7gzaq6RUT29I8fBpwJTAL2AX4jIm9Q1R3F3McwDMPouyTtg5qoqtcB2wBU9XVKGw81C7hGVbf4+a32j78fuENVt6jqcqADOLqE+xiGYRh9lKQCtVVEdmfXbOYTgS0l3PcNwDtE5G8i8nsReYt/fF/gJSfdy/6xXojIJ0SkTUTa1qxZU4IplcHGFBmGYZRGUoG6HPgVsL+I3A604k0eG4uI/EZEnozY3o/XtNgIHAvMAe4SESHaK4tck15Vb1HVqao6dezYsQkfozqkYWyT0T+x35QxkEgaxfd/IvIYnqAIcJGqrs1zzUlx50RkFnCPqirwdxHZCYzB85j2d5LuB7yaxMY0YVF6RiUIXnzst2UMFHJ6UCJyVLABB+IttfEqcIB/rFh+Bpzg3+MNeKvzrgXuB84UkToRmQAcDPy9hPsURClvp+FrrQIxyo29+BgDjXxNfF/1t28AfwNuAb7j799cwn0XAweJyJPAHcC56vEUcBfwNF6T4ierFcFXSrOcNekZ1cLEyRhIiNfKlieRyB3Al1V1qf/5cODzqnpeZc1LxtSpU7WtrfSJLTo7O4uuAEq51jAMYyAhIu2qOjVfuqRBEocE4gSgqk8CRxRrXFopRWBMnAzDMMpL0oG6z4jId4Ef4UXVzQBsVV3DMAyjYiQVqI/hDa69yP/8CLCoIhYZhmEYBsnDzDcDN/ibYRiGYVScRAIlIm8DrsALNc9co6oHVcYswzAMY6CTtInvVuCzeBPG2urSlrwAAAyOSURBVMSthmEYRsVJKlDrVfWXFbXEMAzDMBySCtTvROR64B6cSWJV9bGKWGUYhmEMeJIK1DH+X3dgleJPV2QYhmEY5SZpFN87K22IYRiGYbjkFCgRmR06pHiTuv7RX1DQMAzDMCpCvqmO6kNbA14z3y9F5MwK22YYhmEMYHJ6UKp6ZdRxEWkCfoM3E7lhGIZhlJ2kk8VmoaqdRK9+axiGYRhloSiBEpETgK4y22IYhmEYGfIFSSzFC4xwacJbVfecShllGIZhGPnCzE8JfVZgnapuqpA9hmEYhgHkD5JYUS1DDMMwDMOlqD4owzAMw6g0JlCGYRhGKjGBMgzDMFKJCZRhGIaRSkygqkxnZ2etTTAMw+gTmEBVkc7OThYsWGAiZRiGkQATqCrS1NTE3LlzaWpqqrUphmEYqccEqsqYOBmGYSTDBMowDMNIJSZQhmEYRioxgTIMwzBSiQmUYRiGkUpMoAzDMIxUYgJlGIZhpBITKMMwDCOVmEAZhmEYqcQEyjAMw0glJlCGYRhGKqmJQInIESLyVxF5XETaRORo/7iIyM0i0iEi/xSRo2phn2EYhlF7auVBXQdcqapHAF/0PwO8FzjY3z4BLKqNeYZhGEatqZVAKdDg748CXvX33w/8QD3+CowWkb1rYaBhGIZRW4bU6L6fAX4tIl/BE8nj/OP7Ai856V72j60MZyAin8DzsjjggAMqaqxhGIZRfSrmQYnIb0TkyYjt/cAs4LOquj/wWeDW4LKIrDQqf1W9RVWnqurUsWPHVuYhyoQtUGgYhlE4FRMoVT1JVQ+P2O4DzgXu8ZP+BDja338Z2N/JZj92Nf/1SWwVXcMwjOKoVR/Uq8D/8/dPAJ739+8HzvGj+Y4F1qtqr+a9voStomsYhlEcteqD+h/gJhEZAmzG70sCHgSmAR3Aa8DHamNeeTFxMgzDKJyaCJSq/hGYEnFcgU9W3yLDMAwjbdhMEoZhGEYqMYEyDMMwUokJlGEYhpFKTKAMwzCMVGICZRiGYaQSEyjDMAwjlZhAGYZhGKnEBMowDMNIJSZQhmEYRioxgTIMwzBSiQmUYRiGkUpMoAzDMIxUYgJlGIZhpBITKMMwDCOVmEAZhmEYqcQEqoLYMu+GYRjFYwJVITo7O1mwYIGJlGEYRpGYQFWIpqYm5s6da8u9G4ZhFIkJVAUxcTIMwygeEyjDMAwjlZhAGYZhGKnEBMowDMNIJSZQhmEYRioxgTIMwzBSiQmUYRiGkUpMoAzDMIxUIqpaaxtKRkTWACuKvHwMsLaM5lQCs7E8mI3lwWwsnbTbB5W18UBVHZsvUb8QqFIQkTZVnVprO3JhNpYHs7E8mI2lk3b7IB02WhOfYRiGkUpMoAzDMIxUYgIFt9TagASYjeXBbCwPZmPppN0+SIGNA74PyjAMw0gn5kEZhmEYqcQEyjAMw0glA1qgROQ9IvKciHSIyKW1ticKEXlRRJaKyOMi0lZrewBEZLGIrBaRJ51jTSLyfyLyvP+3MYU2XiEir/hl+biITKuhffuLyO9E5BkReUpELvKPp6Ycc9iYpnIcJiJ/F5EnfBuv9I9PEJG/+eV4p4gMTaGNt4nIcqccj6iVjY6tg0XkHyLyc/9zTctxwAqUiAwGvgG8FzgMmC4ih9XWqljeqapH1HpMgsNtwHtCxy4FWlX1YKDV/1xLbqO3jQA3+GV5hKo+WGWbXLYDn1PVQ4FjgU/6v780lWOcjZCectwCnKCqk4EjgPeIyLHAtb6NBwNdwMwU2ggwxynHx2tnYoaLgGeczzUtxwErUMDRQIeqvqCqW4E7gPfX2KY+gao+AnSGDr8f+L6//33gA1U1KkSMjalBVVeq6mP+/ga8SmFfUlSOOWxMDeqx0f+4m78pcALwU/94rcsxzsZUISL7AScD3/U/CzUux4EsUPsCLzmfXyZl/3w+CjwkIu0i8olaG5ODcaq6EryKDdizxvbE8SkR+affBFjTZsgAERkPHAn8jZSWY8hGSFE5+s1SjwOrgf8DlgHdqrrdT1Lz/+2wjaoalOOX/XK8QUTqamgiwI3AxcBO//Me1LgcB7JAScSx1L3VAG9T1aPwmiI/KSL/XWuD+jCLgIl4zSwrga/W1hwQkZHA3cBnVLWn1vZEEWFjqspRVXeo6hHAfngtI4dGJauuVaGbh2wUkcOBy4BDgLcATcAltbJPRE4BVqtqu3s4ImlVy3EgC9TLwP7O5/2AV2tkSyyq+qr/dzVwL94/YBr5j4jsDeD/XV1je3qhqv/xK4qdwHeocVmKyG54Ff/tqnqPfzhV5RhlY9rKMUBVu4GH8frLRovIEP9Uav63HRvf4zehqqpuAb5HbcvxbcCpIvIiXnfHCXgeVU3LcSAL1KPAwX6UylDgTOD+GtuUhYiMEJH6YB94F/Bk7qtqxv3Auf7+ucB9NbQlkqDi9/kgNSxLv33/VuAZVV3onEpNOcbZmLJyHCsio/393YGT8PrKfgec7ierdTlG2fis8yIieH07NStHVb1MVfdT1fF4deFvVfUsalyOA3omCT889kZgMLBYVb9cY5OyEJGD8LwmgCHAj9Ngo4gsAY7Hm47/P8DlwM+Au4ADgH8DH1bVmgUpxNh4PF6zlAIvAucH/T01sO/twB+Apexq85+L18eTinLMYeN00lOOb8brvB+M98J9l6pe5f/v3IHXdPYPYIbvqaTJxt8CY/Ga0h4HLnCCKWqGiBwPfF5VT6l1OQ5ogTIMwzDSy0Bu4jMMwzBSjAmUYRiGkUpMoAzDMIxUYgJlGIZhpBITKMMwDCOVmEAZ/Q4R+aCIqIgckiDteSKyTwn3Oj6Y+Tni+Hp/ZujnROQRf7R+cP4CETknT77HFWtXqYjIkSISzMl2hYh8vsh8hvrPPiR/asPIxgTK6I9MB/6IN+AwH+cBRQtUHv6gqkeq6huBC4Gvi8iJAKr6LVX9QY5rjwdqJlB4452+Vmom/kTMrcAZJVtkDDhMoIx+hT9v3NvwlgU4M3TuYvHW1npCRK4RkdOBqcDt/no8u4u3/tYYP/1UEXnY3z9aRP7se0R/FpE3FmKXv5TCVcCn/PwyXomIXCgiT/uTht7hT8x6AfBZ3653iMj7xFuX5x8i8hsRGefks1hEHhaRF0TkQud5z/HzfEJEfugfGysid4vIo/72togyrAferKpPRJz7HxH5pV9WD/uTnD4i3ppRbxGRe8RbO+hLzmU/A84qpLwMA7zZCQyjP/EB4Feq+i8R6RSRo1T1MRF5r3/uGFV9TUSaVLVTRD6FN2q+DcCbdSaSZ4H/VtXtInISsAA4rUDbHgPmRBy/FJigqltEZLSqdovIt4CNqvoV365G4FhVVRH5ON6s05/zrz8EeCdQDzwnIouANwBfwJtseK2INPlpb8Jb3+ePInIA8Gt6T646lYhpd/yyehfwAd9WgK2q+t/iLWZ4HzAFb5mTZSJyg6qu8/N6S4FlZRgmUEa/Yzre9FXgTdEyHU8YTgK+p6qvARQxfdAo4PsicjDeFD+7FWFbnPr9E8+L+xmetxHFfsCd/vxtQ4Hlzrlf+NPPbBGR1cA4/HV8VHUtZD3vScBhjhA3iEi9v95TwN7AmtD9z8abYPkDqrrNOR7MX7kUeCqY8khEXsCbjHmdqu4Qka0R9zGMnFgTn9FvEJE98Crm74o3K/Mc4Ax/Mk4h2VIB29n1fzHMOT4f+J2qHg68L3QuKUeSvVppwMl4qztPAdpjAgq+BnxdVd8EnB+6vzs32g68F8+45x0EvNVZxXXfCNF4nd7P9yQwHk8oXYJ77wzZsZPsF+A6YHOEPYYRiwmU0Z84HfiBqh6oquNVdX88T+PtwENAs4gMB3CavDbgNY0FvIgnFJDdhDcKeMXfP69Qw/wJQ+fhCZF7fBCwv6r+Dq/ZbjQwMsIu9/7nkp9W4CO+aLvP+xB+P5h//IiIa58B/it07B94wnh/oVGPvg1rQp6XYeTFBMroT0xn1+zvAXcDH1XVX+E1R7WJt7JpEDZ9G/CtIEgCuBK4SUT+gOeNBFwHXC0if8KblToJ7wjCzPGE6UJVbQ2lGQz8SESW4onADf6aQQ8AHwyCJIArgJ/4dq3Nd2NVfQr4MvB7EXkCCJbLuBCY6gdPPI0XjBG+9llglB8s4R7/I165/SIIJEnIO4EHC0hvGIDNZm4YRgQi8llgg6p+twx53QNcpqrPlW6ZMZAwD8owjCgWkd2nVBTiLQb6MxMnoxjMgzIMwzBSiXlQhmEYRioxgTIMwzBSiQmUYRiGkUpMoAzDMIxUYgJlGIZhpJL/H3VRa+eFlVHKAAAAAElFTkSuQmCC\n", - "text/plain": [ - "
" - ] - }, - "metadata": { - "needs_background": "light" - }, - "output_type": "display_data" - } - ], - "source": [ - "x, y = pd.Series(actual_distances, name=\"Actual Distance (km)\"), pd.Series(haversine_approximations, name=\"Under-estimation (%)\")\n", - "sns.regplot(x=x, y=y, marker='o', color='black', scatter_kws={'s':0.1})\n", - "\n", - "plt.title('Distance approximation error: haversine')\n", - "plt.tight_layout()\n", - "plt.savefig('underestimation_3.svg')" - ] - }, - { - "cell_type": "code", - "execution_count": 76, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": 36, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAagAAAEYCAYAAAAJeGK1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJzt3XmcZHV57/HP09v0Cj3DDOMszI6MQACx4xJhrqJxmQtC7o0Oaoyosa9bFMUtEg3XGFySuNzExLTgLjpqRJG0C/FCGPSiDpugMEx3D9MNMz1LM0vv63P/OOcUp6qru6qX6jrd/X2/XvXqqnNO1XlOVfV56vc7z/kdc3dERESSpqTYAYiIiGSjBCUiIomkBCUiIomkBCUiIomkBCUiIomkBCUiIomkBDUPmdkXzOzDxY5jITOzdWbWY2alc7S+H5vZ6+diXYuFmX3FzD42yfweM9tUgPVeZWZ3zfbrLkZlxQ5A0pnZY8BKYAQYBX4PfA1ocvcxAHd/yxRe6y/c/T8LEuwC5u7tQG0hXtvMrgO2uPufxdb38kKsSybm7gX5fGX2qAWVTJe5ex2wHvgE8AHgxuKGNP+YmX6ATUG292uq76Hec5lNSlAJ5u4n3P0WYAfwejM7F9K7LsxsuZndambHzexJM9tlZiVm9nVgHfCjsCvj/eHy3zWzTjM7YWZ3mtk50frC1/28mf2HmXWb2a/MbHNs/jlmdlu4nkNm9qFweomZfdDMWs2sy8y+Y2bLsm2TmS0N4z1iZsfC+2tj8+8ws4+b2a/DGH8YvZaZbTAzN7NGMztgZgfN7JrYc68zs++Z2TfM7CRwlZktMbPPhssfCO8vCZf/gJndHe1UzeytZvY7M6uMrassFtfHzOyX4fv5IzM7zcy+aWYnzew3ZrYhFsvnzKwjnHePmV0cTn8Z8CFgR/g6D8Re/y9i7+dfm9l+MztsZl8zs1Mz3oPXm1m7mR01s2sn+g6F2/8P4bKHwu7hqnDeC8zs8fB96AS+nG1auOybzawl/OxvMbPVsXW4mb3dzPYCeyeKJSOui8L38nj4Pl0VTj813N4j4fb/tZmVhPOuMrNfmNlnwue1mdkfhdM7wvcqs5t0efid7Taz/zKz9Rlxbwnv5/rub7Wnvvt7zOxVsXmnhe/JSTP7NbAZmR3urluCbsBjwIuzTG8H3hre/wrwsfD+x4EvAOXh7WLAJnot4I1AHbAE+Cxwf2zeV4AngWcTdP9+E/h2OK8OOAhcA1SGj58TzrsauBtYG77uvwHfmmD7TgP+J1AdvsZ3gR/E5t8BPAGcC9QA/w58I5y3AXDgW+G8PwCORNsIXAcMA1cQ/PiqAj4axnY6sAL4JfC34fIlwJ3h884EjgHPzFhXWSyuFoKdz6kEXa+PAi8O36uvAV+ObcefhdtaFr5nnUBlLM5vZLwvdxB0x0afUQuwiaCb8fvA1zPi+mK4fecDg8AzJni/PwvcAiwL3+8fAR8P572AoCv5k+HnVjXBtEuAo8CF4bR/Au6MrcOB28J1VIXTbgU+OEFM64Bu4NUE39nTgAvCeV8DfhjGuiF8j98UzrsqjO0NQCnwMYL/i8+Hcb0kfN3a2Pe5G9gWzv8ccFdG3Fvy+O7XAB3hesvC9+EocE44/9vAd8LlziX4/t6Vbdt1m+L+sNgB6JbxgUycoO4Grg3vf4WnEtRHw3/oLfm+Vmx+ffhPemrsdW+Izd8OPBLefzVw3wSv8zDwotjjVQSJoiyP7b0AOBZ7fAfwidjjs4GhcIe0IYx3a2z+p4Abw/vXEdtxhtNage2xxy8FHos93hDumB4G/ipjemaCujY2/x+BH8ceX0Ys2WfZzmPA+bE4J0tQPwfeFpt3VvR+xuJaG5v/a+DKLOs0oBfYHJv2PGBfeP8F4XtbGZufbdqNwKdij2vDeDaEjx24ZArf8b8Cbs4yvZQg2Z4dm/a/gDvC+1cBe2Pz/iBc98rYtC6eSnZfIUwysbhHgTNicccT1ETf/R3AroxY/w34mzDmYdK/k9ejBDUrN3XxzR9rCHakmf6e4Nf2z8Iujw9O9AJmVmpmn7CgK+4kQQIDWB5brDN2v4+nCgXOINjZZ7MeuDnsdjlOsLMfJSj2yIyh2sz+Ley+OUnQgqm39Gq5jtj9/QS/spdPMn/1BPMI5+2faHl3fwy4nWDH//kJti9yKHa/P8vj1EF3M7vGzB62oJvyOEGrK74Nk8kWcxnp7+dEn1PcCoKW6j2xz+Yn4fTIEXcfyHhe5rS0eNy9hyARrIktk/m+T2ai79JyoILx2x5fT+Z7jrtP+DnE4wrjfpL070vcRO/peuA50XsYvo+vBZ5G8F6WMf47KbNACWoeMLM/JPgnHVe66u7d7n6Nu28i+BX/HjN7UTQ7Y/HXAJcTdEudSrBThuCXdi4dTNy33gG83N3rY7dKd38iy7LXELQInuPupxB0v2TGcEbs/jqCX6hHJ5l/IPY4c5sPEOxgsi5vZtsJWhU/J0j2MxYeb/oA8CpgqbvXAyd4ahtzXUIgW8wjpO+c83GUYId9TuxzOdXTq9eyxTLpe2hmNQTdck9M8pzJTPRdOkrwWWdue7bvUb5S3xUzqyXohjww8eJZdQD/lfH9rnX3txJ0MY8w/jsps0AJKsHM7BQzu5Sgj/sb7v5glmUuNbMtZmbASYKWy2g4+xDBcYxIHUEXShfBL+vrpxDOrcDTzOzq8MB7nZk9J5z3BeDvogPQZrbCzC6f4HXqCHaaxy0ofvibLMv8mZmdbWbVBF2Y33P30dj8D4ctsXMIjgvsnCTubwF/Hca0HPgI8I0wzuUE3Vd/AbweuCxMWDNVR7DTOgKUmdlHgFNi8w8BG6KD/xPE/G4z2xjuVK8Hdrr7yFSC8OC0hC8CnzGz0wHMbI2ZvXRqm8NNwBvM7AILCkyuB34Vtj6n45vAi83sVWZWFhYZXBB+xt8h+C7Vhd+n9xB+XtO0PSzIqAD+Nox7Kq09CL77Tzez15lZeXj7QzN7Rhjz94Hrwu/k2QTfJZkFSlDJ9CMz6yb45XYt8GmCHXE2ZwL/CfQA/w/4F3e/I5z3cYKd83Ezey/BAej9BL9If09wXCsv7t4N/DFBK62ToFrrheHszxEciP9ZGPfdwHOyvQ7BQfsqgl/LdxN0OWX6OsExgU6Cgox3Zsz/L4JuzZ8D/+DuP5sk9I8Bu4HfAg8C94bTAJqAH7p7s7t3AW8CbjCz0yZ5vXz8FPgxwQH+/cAA6V1A3w3/dpnZvVme/yWC9+BOYF/4/L+cZiwfIHiv7g67VP+ToAWbN3f/OfBhgoKVgwStnysne44FJx5/aILXayc4xnMNQZfb/QTFHhBsZy/QRtBjcBPB+zFdNxH8CHoSeBZB19yUhN/9lxBs8wGC72VURALwDoLuwE6C7+2XZxCvxETVXiKJYGZ3ELQWb8gybwPBDrt8qq0JEZl/1IISEZFEUoISEZFEUhefiIgkklpQIiKSSIka2HH58uW+YcOGYochIiKz5J577jnq7ityLzleohLUhg0b2L17d7HDEBGRWWJm0x5ZQ118IiKSSEpQIiKSSEpQIiKSSEpQIiKSSEpQIiKSSEpQIiKSSEpQIiKSSAs2Qe3YsYMLLriAHTt2FDsUERGZhkSdqDub9uzZwwMPPFDsMEREZJoWbAtKRETmNyUoERFJJCUoERFJJCUoERFJJCUoERFJpIJW8ZnZY0A3MAqMuHtDIdcnIiILx1yUmb/Q3Y/OwXpERGQBURefiIgkUqETlAM/M7N7zKwx2wJm1mhmu81s95EjRwocjoiIzBeFTlDPd/cLgZcDbzezbZkLuHuTuze4e8OKFdO6bL2IiCxABU1Q7n4g/HsYuBl4diHXJyIiC0fBEpSZ1ZhZXXQfeAnwUKHWJyIiC0shq/hWAjebWbSem9z9JwVcn4iILCAFS1Du3gacX6jXFxGRhU1l5iIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkhKUCIikkh5JygzW2pm55jZJjObyvNKzew+M7t1eiGKiMhiVDbZTDM7FXg78GqgAjgCVAIrzexu4F/c/fYc63gX8DBwyszDFRGRxSJXS+h7QAdwsbuf5e4XuXuDu58BfAK43MzeNNGTzWwt8N+BG2Yt4gVux44dXHDBBezYsaPYoYiIFNWkLSh3/+NJ5t0D3JPj9T8LvB+om2gBM2sEGgHWrVuX4+UWvj179vDAAw8UOwwRkaKbUpGEma0ws4+Z2T+a2ZYcy14KHA4T2YTcvSlslTWsWLFiKuGIiMgCNtUqvn8E7gR+Anwrx7LPB15hZo8B3wYuMbNvTDlCERFZlCZNUGb2EzO7ODapAngsvC2Z7Lnu/lfuvtbdNwBXAv/X3f9sRtGKiMiikasFtYOgEOImM9sMfBj4CEGBxNsKHZyIiCxeuYokTgDvNbNNwN8BTwBvD6fnzd3vAO6YZowiIrII5ToPahPwVmAYuAbYDHwnPOn2X9x9tPAhiojIYpSri+9bBAURdwNfd/dd7v5S4CTws0IHJyIii9ekLSiCUSP2ATVAdTTR3b9qZt8pZGAiIrK45UpQbwP+HhgC3hKf4e79hQpKREQkV5HEL4BfzFEsIiIiKbnOg/qRmV1qZuVZ5m0ys4+a2RsLF56IiCxWubr43gy8B/icmT3JU6OZbwBagX929x8WNEIREVmUcnXxdRIM9vp+M9sArAL6gUfdva/g0YmIyKKVqwWV4u6PEQxxJCIiUnC65LuIiCSSEpSIiCRS3gnKzKrM7KxCBiMiIhLJK0GZ2WXA/QTDHmFmF5jZLbMdzNDQEMeOHWNwcHC2X1pEROaZfIskrgOeTTgiubvfH1b1zaqxsTGOHDkSBFZWRnV1NTU1NVRXV1NaWjrbq5uyHTt2sGfPHs466yx27txZ7HBERBa0fBPUiLufMLOCBpO2wpERTp48ycmTJwGorKykpqaGmpoaKisr5yyOuD179vDAAw8UZd2y+OgHkSx2+Saoh8zsNUCpmZ0JvBP4ZeHCGm9gYICBgQG6urooLS1Na12VleVdLS8yb+gHkSx2+RZJ/CVwDjAI3AScAK4uVFC5jI6O0t3dTWdnJ21tbezfv5/Dhw9z8uRJhoeHixXWgrRjxw4uuOACduzYUexQRGSRyavpEY4acW14S5zBwcG0woqysrJUohobG8PdmcvuyYVEv+JFpFjyreK7zczqY4+XmtlPCxfWzIyMjDA2NgbA8PAwLS0tPPHEExw7doyhoaEiRyciIvnI9+DNcnc/Hj1w92NmdnqBYpp17k5vby+9vb0cOXKEsrKyVMFFdXU1JSU6X1lEJGnyTVBjZrbO3dsBzGw94IULa2Z6eno4fjzIp8ePH6enp4fa2trU/JGREU6cOMGJEycwM5YsWUJ1dTVVVVVUVVUpYYmIJEC+Cepa4C4z+6/w8TagsTAhzczu3btpbGykry8YbP3QoUNs27aNpqYmGhoaxi3v7qkKwUhlZSVVVVVUV1dTWVmZiHOwREQWm3yLJH5iZhcCzwUMeLe7Hy1oZNPQ09NDY2Mjvb29qWlR915jYyO7du2ipqYm5+tECevYsWMAVFRUUFVVlTquJSIihTeVvqwlwJMEJeZnm9m2woQ0fc3NzRMmkbGxMZqbm6f1ukNDQ5w4cSJVGTg0NMSRI0fo6+vDPbE9nSIi81peLSgz+ySwA/gdEGUAB+4sUFzTsn//fvr7+7PO6+/vp729fVbW4+4cO3aMY8eOUVJSkjppuKamRicNF4FGXBBZmPLdm14BnOXuiR7Fdf369VRVVWVNUlVVVaxbt27W1zk2NkZPTw89PT0ALFmyhNra2qIOybTY6FwtkYUp3y6+NqC8kIHMhu3bt09YgVdSUsL27dsLHsPg4CBdXV20t7fT2tpKZ2cn3d3dOn4lIjJF+bag+oD7zeznBMMdAeDu7yxIVNNUW1tLU1NTqoovGkGiurqapqamvAokZtPo6GhqwFszo6qqKtUVWFFRMaexiIjMN/kmqFvCW+I1NDSwa9cutm/fTmdnJytXrqS5uXnOk1Mmd6evr4++vj6OHDlCeXl56kRhnSwsIjJevmXmXzWzKmCdu+/J5zlmVklQRLEkXM/33P1vph3pFNTU1FBfX09nZyf19fVFT07ZDA8Pc/z48dQJxdG5V+oKFBEJFPKKuoPAJe5+PnAB8DIze+5Mgl3IovOuMkvZe3p6GB0dLXJ0IiJzbyZX1N042RM8OEGoJ3xYHt500lCe4qXsEFQHRkMxJeUKwyIihTSTK+rmTDZmVgrcA2wBPu/uv8qyTCPhsEmrV6/OM5zFJ7qkSNQlGI1uEY0hqPOvRGShKegVdd19FLggvFTHzWZ2rrs/lLFME9AEcO6556qFlaehoaHUCBcA5eXlqWSlqwyLyEIwJ1fUDS/VcQfwsinGJ3kaHh7mxIkTaVcZ7urqSruQo4jIfJLzZ3bYTfe/3f19TOGKuma2Ahh29+NhBeCLgU9OO1KZkqhLsKuri/Ly8tToFlVVVbq6sIjMCzkTlLuPmtmzpvHaq4CvhgmuBPiOu986jdeRGRoeHk4bOzA6/0pjB4pIkuW7d7ovLCv/LpC6loW7f3+iJ7j7b4Fnziw8mW1jY2N0d3fT3d0NpFcHVlZWUl6e+BGtRGSRyDdBLQO6gEti0xyYMEHJ/JBZHVhaWppWHSgiUiz5jiTxhkIHIskwOjqaNjr70NBQavrg4CBLliwpZngisojkez2opwP/Cqx093PN7DzgFe7+sYJGJ0UXXZBxZGSE/fv3U1pamhqWqbKyksrKSo0jKCIFkW8X3xeB9wH/BsHxJTO7CVCCWmRGR0fp7e2ltzc4FGlmLFmyJNUlWFVVpYQlIrMi3wRV7e6/zihPHilAPDLPuDsDAwMMDAwATyWs+HEsJSwRmY58E9RRM9tMOLyRmf0pcLBgUcm8FU9Yx44dS2thVVdXq0tQRPKWb4J6O8FwRFvN7AlgH/DagkW1SPX09KSq6Y4fP05PTw+1tbVFjmpm4gnrySefBIJhmZYsWUJlZWUqaYmIZJr0p6yZvSu8u8rdXwysALa6+0Xuvn+2gzlx4gQPP/xwqrtoMdm9ezfbtm3j0KFDABw6dIht27axe/fuIkc2+4aHh+np6eHo0aO0t7fT2tpKZ2cnJ06cYGBgIFWYISKLW64W1BuAzwH/BFzo7r05lp+Rxx9/nCuuuAIzY+3atWzZsoXNmzezefNmtmzZwqZNm+Z9iyKbnp4eGhsbU4UHELQ8ent7aWxsZNeuXYm86OJsGR0d5eTJk5w8eRIIjmNVVFSkWlgarV1kccr1X/+wmT0GrDCz38amG8Eln86bzWBKS0sZHR3F3eno6KCjo4Pbb789bZmnPe1paUkrur906dLZDGVONTc3T3gl3bGxMZqbm3nlK185x1EVj7unTiCORmuPLi8S3TTihcjCN2mCcvdXm9nTgJ8Cryh0MFu3bqWpqYmWlhZaWlpobW2ltbWVlpYWurq6AOjs7KSzs5Nf/OIXac897bTT0hJX1BqZD91F+/fvp7+/P+u8/v5+2tvb5zii5Mm8vEhZWRk1NTULumUpsthNmqDM7Ofu/iIz+2khjjlls3z5cpYvX85zn5t+dfhjx47R2tpKW1tbWvI6eDAoJuzq6qKrq4tf//rXac/bu3cvV155ZVqLa8uWLaxatSoxo3qvX7+eqqqqrEmqqqqKdevWFSGqZBsZGeHEiROcOHEidUmR0dFRhoeH1boSWSBydfGtMrP/BlxmZt8i6NpLcfd7CxZZhqVLl9LQ0EBDQ0Pa9J6eHtra2lItrehvR0cHEHSR3Xfffdx3331pz6uurmbTpk3jEtfatWvn/HLq27dv5xOf+ETWeSUlJWzfvn1O45mvRkZG2LdvHxUVFakR23Uelsj8lStBfQT4ILAW+HTGPCd98NiiqK2t5bzzzuO889IPh1122WU8+uijrF69miuuuCKVuPbv38/IyAh9fX089NBDPPRQ2gV+qaioYOPGjamijC1btrBly5aCtmJqa2tpamqisbGRvr4+3B0zo7q6mqamJnVjTVHUHRidhxUNzaTzsETml1zHoL4HfM/MPuzufztHMc2KaCd0yimn8K53vSs1fWhoiI6OjnHHudra2lI7tj179rBnz5601ysrK0u95pEjR/jRj37E5s2b2bRp06ycx9PQ0MCuXbvYvn07nZ2drFy5kubmZiWnGXJ3+vv76e/vT52HFSWs6DbXLWYRyU+uY1Bb3f0R4D/M7MLM+XPZxTdbKioqUsUUL33pS1PTR0dHefzxx1NJK36sq6+vj5GRp0Z26urq4r3vfS9AWkl8vMU1nZL4mpoa6uvr6ezspL6+XsmpQOIjXUBw4nBlZSVLlixJnUCspCVSfLm6+K4B3gz8Y5Z5iejimy2lpaWsX7+e9evX86IXvSg1fWxsjM7OTlpbW/nQhz7E4cOHU2XOJ0+eXHQl8QvR8PAww8PDqYs4AuOGZ1LCEpl7ubr43hz+feHchJM8JSUlrF69mtWrV7Ns2TIOHz7M+vXr+cEPfsDRo0dTXYStra3s3buXtrY2jh49CuQuiY8nrc2bN7NixYpibKJkEZ2HFbWyohOHo5ZWRUWFkpZIgeXq4vsfk82f7JLvC52ZsWLFClasWDGuJP748eNpVYX5lsSfcsopDA8PA/Dkk09y5513Jq4kfrGKjk9Go11AcFwy6hKMjmupAENk9uTq4rss/Hs68EfA/w0fvxC4A13yPav6+nqe9axn8axnPStteraS+NbWVjo6OnD3tJ3f4cOHefOb3wwkqyRenjIyMsLIyEjaEFXRiBcaoklk5nJ18b0BwMxuBc5294Ph41XA5wsf3sIyUUn8wMAA+/bto7W1leuvv56uri4qKioYGxubdkl8RUXFXG6ahDJHvCgvL0+rGNTnIpK/fH/ebYiSU+gQ8PQCxLMoVVZW8oxnPINnPOMZfPGLX6Srq4tNmzbxve99j/b2dlpaWlLHt/ItiV+3bt24wXY3btyoS1vMsagAI2odl5SUUFFRQUVFRVrVoLoGRcbLN0HdYWY/Bb5FUL13JXD75E+RmSovL5+0JD7bca6oJL6trY22tra015vNkniZnrGxsbQrEEeiIowoaQ0NDaXGn+zq6qK7u5u6urpihCxSNHklKHd/h5n9CbAtnNTk7jcXLiyZTLwk/pJLnqr0d3c6OzvHDbTb0tKSV0l8PHFFiVHmRtQihuDaYNGoIgBPPPEEq1ev5uabb+aSSy5Ra0sWjbyP4IYJSUkpwcyMVatWsWrVKi6++OLUdHdPK4nfu3dvqqswsyT+rrvuSnvNaGfY3t7OjTfeyNlnn82WLVtYvny5KgsLYKJrg/X09HDFFVewa9culi5dmuoajFpcKpaRhUglRotAPiXx8RZXvCQ+uk5VX18fn/rUp1LPO+WUU8adhKyS+JnL99pgQ0NDaScWl5eXp5JVdNOo7jLfKUEtctlK4nt6erj44otTXUzZnDx5ctJR4jMLNFQSn5/pXhssKsbo6elJTSspKRmXtJYsWaIfEDJv5J2gzKwKWOfue3IuLPNac3PzhBd6rKys5E1vehObNm2ipaUlNWbhTEaJV+n1U2bz2mBjY2OpgXLj4hWE0U3na0kS5fWtNLPLgH8AKoCNZnYB8FF3L/hVdmXuTfYrfmBggOHhYS699NK06UNDQ7S3t4+7Lte+fftUEj8Fc3FtsOjziHcRlpaWpsrfKyoqKCsro7y8nLKyMiUvKZp8v3nXAc8mGD0Cd7/fzDYUJCIpuun8iq+oqEi1iiYbJX46JfHxxLXQS+KLdW2w0dHRrK0tCD6L8vLy1K2ioiLtsboMpVDyTVAj7n5iKl9EMzsD+BrwNGCMoDT9c1MPUebabP6Kz2eU+MxW11RHiZ/sWNl8lLRrg7l7Whl8nJmljfxeVVWlhCWzJt8E9ZCZvQYoNbMzgXcCv8zxnBHgGne/18zqgHvM7DZ3//0M4pU5MBe/4uOjxGcriY8f34ru5xol/tFHH+U1r3kNT3/609NaXitWrJh3O835cm0wd0+deBxdEDKztaVSeJmufBPUXwLXAoPATcBPgY9N9oRwaKSD4f1uM3sYWAMoQc0DxfoVHy+Jf97znpc2L14Sv3fvXu677z4eeuihVEHH2NgY99xzD/fcc0/a87KVxG/evJlVq1bppNcCiCoKM5WVlaUSVvS3vLxciUsmlG+COsvdryVIUlMWHq96JvCrLPMagUaA1atXT+flpUCS9is+XhLf09PDtm3bslYblpaWsmrVKp544onUKPGTlcRnJq4zzjhDO80CiEZ/z+ySjY5xRQUZ0f3o3C59FotXvgnq0+EI5t8Fvu3uv8t3BWZWC/w7cLW7n8yc7+5NQBPAueeem722WSTDZCe0VlRU8Ja3vIXLLruMffv2jRv6qb29PWdJ/IYNG9JOQN68eTPr169XSXwBTHaMC4KWV2VlZVpxRpTA5lvXrUxNvmPxvdDMnga8Cmgys1OAne4+aTefmZUTJKdvLuaLG8rsy+eE1vgo8XFRSXxmZWF8lPhHH32URx99NO15UcFHZnfhxo0bqaqqKti2LnYjIyNpJyBHzGzcyPA6p2thmcpYfJ3A/zGz24H3Ax9hkuNQFvy0uRF42N0/PdNAReJmckJrvCQ+bnR0lI6OjnFDP7W1tdHX18fo6GiqJP62225LPW+xlsQXm7szODjI4ODguHO64uMUVlZWatineSrfE3WfAewA/hToAr4NXJPjac8HXgc8aGb3h9M+5O7N04y1qHp6ejh+/DgQHKzv6enRzqeICnFCa2lpKRs2bGDDhg1ZS+IzuwpbW1vzHiU+nrS2bNlCfX39lOOT/IyOjtLb25s24G5JSUnWc7mik5IlmfL9ZL5McC2ol7j7gXye4O53AQuigzjz8geHDh1i27ZtNDU10dBgxBCYAAAY9UlEQVTQUOToFqe5PKE1XhK/bdu21PT4KPGZ3YW5Rolfvnz5uDEL52tJ/HwwNjaWam1liroKo+rC+LEuVXkWV77HoJ6be6mFaaLLH/T29tLY2MiuXbuKXt22WBX7hNZco8THz+WKklhnZycAR48e5ejRo/z6179Oe15UEr9ly5bUeUXDw8OpBCyzL95VmKm0tDRVCl9aWkpZWVnqb3RfxRqFM2mCMrPvuPurzOxBgivppmYB7u7nzWYwS5YsYd26dYyOjjI6Ooq74+6MjY1lvT/ZvNn6wuR7+QMpjqSVwkfq6+tpaGgY18Lu6emhra1tXKuro6NjwpL41tZWLrzwwnEl8RolvvCifVEu0Tle8ZOT1X04c7nevXeFfy+ddKlZYmazNkBoVA68ZMkStmzZkvqiZd5GRkbSHo+NjaUSHUz/8gci2dTW1nLeeedx3nnpv+0GBgZ47LHH0lpbd9xxR6r0Op9R4uMFGholfm5F53hlilpeJSUllJSUpO6bWepx5i2aLjkSVDgaBMDb3P0D8Xlm9kngA+OflTzRl2MqlTxRi6yhoYGbbrop63hv1dXVnHvuuSxfvjyV2KIvapT4JrpshUhcZWUlW7duZevWralpl19+OY888ggbN27k6quvTpXCR12HGiU++fJtgWWTrbAj6lqMuhcXunzbn3/M+GT08izTFgwzo7S0lNe85jW8733vy7pMaWkpb3jDGyat5ou31Ca7iUxkyZIlvOxlL0ubFo0Sn61AI99R4uPX5VJJfPJMVtgBT+2jMpNW/PF8T2S5jkG9FXgbsMnMfhubVQf8IvuzFpa6ujqam5vZvn07vb29jI2NUVJSQk1NDc3NzTn/qaNm+2TdLe6eSmJRK6+srIz6+vq0BDc2NqZWmQDpo8RfcsklqenuzsGDB9MS1t69e2lra+PEiRN5lcRnVhcuXbq0INtw9dVXs2/fPjZu3MhnP/vZgqxjIXP3vH7gRoks3n2Y2eUYFXtEo3QkRa5IbgJ+DHwc+GBsere7P1mwqBLmoosu4sCBA5x99tl0dHSwZs0afv/738/aL04zS/3aicpaS0tLOf3007MuH3U/xo+ZjYyMpAbpHB4eTn1xlcwWFzObcJT4rq6urOdy5SqJP+2001JdhPEEtnz58hkVI+3bt49HHnlk2s+X/OSbyCLZWmZmltqXxIvQzCy1/8r2nJnKdQzqBHACeHUYzOlAJVBrZrXuvmgqBGpra1m2bBkdHR0sW7asqN0h8V9EuWRrdUWVjtH9KMlFrbXh4eFJx0aT+cfMWL58OcuXL89aEp+ZtFpbWzl4MDgE3dXVRVdX16Ql8fHjXKtWrVLZ9Tw21YQ2kbKyshkPATaVS75/GlgNHAbWAw8D58xo7VJwUVN+uqKuyfLyclauXJmW7KJEl1kFGT8NIEqAklzxUeLj4iXxUfJqaWnh8ccfn/Io8SqJX3xGRkYYGBiY0Wvk29n4MeC5wH+6+zPN7IWErSpZ2KJfwiUlJZx66qnTfp3MVlrmcbWom3JoaEhFIwkxWUn8vn370o5vtba2sn///pyjxEcl8Zs2beLkyeDiBuqGlonkm6CG3b3LzErMrMTdbw/LzEXyErXk8jkAOzY2ltbNODQ0xODgYGpEBSmuXKPEx7sKW1pa2Ldv36Ql8Xv27OHlL3/5uAINjRIv+Sao4+F1ne4Evmlmhwku6S4y60pKSlIjUWeKdnRRMcjo6KjGS0uI+CjxL33pS1PTo5L4KGlF53LFr4asknjJJt8EdTkwALwbeC1wKvDRQgUlMpFoMM+4qDR/yZIlbN68OVXFGLXC4tWNMvfiJfHxUeJf8YpXsGfPHtauXcvrXve6tAKNXCXxq1atShtkt9Al8VIc+Q4W2xt7+NUCxSIyY5NVN0bVSZlJK7qpmGNuRcc3a2trueqqq1LTo1Hi44PtRsmrq6sLgIMHD3Lw4MFJS+LjlYUzLYmX4sh1om43WQaJ5anBYk8pYGwis8rMUicjZhMd+4qfX5Z5vlnmcFY6Jjb74qPEP+95z0ubd+zYsbSTkFUSP3uSeOJ0rvOg6uYqEJFii459TUW2YawmGphYyWzmli5dOmujxINK4uOSeOJ03mNamNlFwJnu/mUzWw7Uufu+woUmknxRl2I+iS1qoWXe4olNpidXSXxmgcZUSuI1Snzx5Hui7t8ADcBZBFfXrQC+QXBZ90Q666yz0v6KFNtk1YmQfgb/yMhIqiS/pKSE6urq1HQdK8vfRCXxw8PDtLe309LSknYul0aJT5Z8W1B/AjwTuBfA3Q+YWaK7/3bu3FnsEESmJPMYWdTFVF5eztq1a1PLxU9qjt/io3nI5MrLy1MJJltJfNRV2NbWlkpgGiV+7uWboIbc3c3MAcwsGZctFVmESkpKspbbR+LVivHzxjRKR24TjRI/NjZGZ2fnuEub5FMSP9ejxC8k+Sao75jZvwH1ZvZm4I3ADYULS0SmK94Sq6lJ/y05NjY2boSOwcFBJa4cSkpKUqPEb9u2LTU9KomPX9ok6irMd5T4zOrCFStWqLIwlO95UP9gZn8MnCQ4DvURd7+toJGJyKwrKSmhsrJy3PGS0dFRBgYGUgkrPlKHTCxeEp9tlPj4uVxRt2FnZyegkvh85F3FFyak2wDMrNTMXuvu3yxYZCIyZ0pLS6mpqRnX4nL3ceMixqsPZWL19fU5S+LjZfH5lsRnJq6FXBKf60TdU4C3A2uAWwgS1NuB9wH3A0pQIguYmU14vCtKXplDSkXHunTeV3aTlcQ/9thjqZEzosTV3t4+pVHiowS2fv36eV8Sn6sF9XXgGPD/gL8gSEwVwOXufn+BY1uUVB4v80U8eWW2vIBUwhocHEwd7xoaGlKV4QQqKyvZunUrW7duTZsejRKfWaCRqyQ+KviYzyXxuRLUJnf/AwAzuwE4Cqxz9+6CR7ZIqTxeFoqoUKO6ujptelRhGD/Pq7S0VMe7JhAfJT4uW0l8lMT6+voYHR2dUkl8Et//XAkqNfyzu4+a2T4lJxGZibKyMsrKytLO89q8eTMjIyP09/fT19dHf38/Q0NDRY402XKVxMdbW9G5XLlK4gE6Ojq4/vrrEzFKfK4Edb6ZnQzvG1AVPtZgsSIyq8rKyqirq6OuLhgDYHR0NFVVGHUPRmMf6vjWxOIl8RdffHFqerwkPrO7MCqJB+jt7eWrX02/aEV8lPh4y6vQo8TnGix2YZaGiEjilZaWUl1dPa6LENKvuhwlr/7+/kR2UyVFrpL4V77ylbS3t7N06VLOOeecRIwSn3eZ+VSZ2ZeAS4HD7n5uodYjIotPfFzDqMUFMDg4SF9fH319fToBeQrq6+tTPwRWrlzJjTfeCAQl8ZkjZ7S0tPD444/nVRL/9Kc/fUZxFSxBAV8B/hn4WgHXISKSEiWt6JhJNHJG1E0YnYysLsL81NbWcv7553P++eenTY9GiY8f32ptbc05SvxUFSxBufudZrahUK8vIvNXd3d36uq4XV1ddHd3p7WEZku2kTPcPZW0BgYGlLSmYaJR4oeGhujo6Eidx9XW1satt9467fUUsgWVFzNrBBoB1q1bV+RoRKTQ7rrrLrZv305vby8ABw4cYM2aNTQ3N3PRRRcVfP1mlmppnXJKUOfl7qmE1d/fT39/v7oHp6GioiJtlPjy8vL5naDcvQloAmhoaNBPGJHQQjxpu7u7m+3bt9Pd/dTZKmNjY6npBw4cKMrlKcws1dKqr68HghONo2QVtbJkbhU9QUmyLcSd5HyxEE/a3rlz54QjSYyNjbFz507e9KY3zXFU2UUnGketrLGxMQYHB1MJS1WDhacEJZNaiDtJKZ69e/emuvYy9fb20tLSMscR5a+kpISqqiqqqqpS09TKKqxClpl/C3gBsNzMHgf+xt1vLNT6RCT5zjzzTGpqarImqZqamnHD+SRdtlZWvIU1MDCgsQdnoJBVfK8u1GuLyPy0Y8cO3vOe92SdV1JSwo4dO+Y4otlVUlIy7rIl8YrBqItQFYP5URefiMyZuro6mpubU1V8Y2NjqZ16c3NzUQokCi0a8T0qo3f3tGrB/v7+oreyenp6OH78OBCMKtHT05OIz6Kk2AGIyOJy0UUXpUrLAdasWcOBAwfmpMQ8CcyMqqoqli1bxpo1a9iyZQvr16/n9NNPp66ubs6v4bR79262bdvGoUOHADh06BDbtm1j9+7dcxpHNmpBicicq62tZdmyZXR0dLBs2bJE/Fovpui8rKjEfWxsLHUScSErBnt6emhsbEw7Juju9Pb20tjYyK5du7Je62uuKEHJvKdSeFloSkpKxg2UOzQ0lBpnsK+vb1a6BZubmyct+29ubuaVr3zljNczXUpQMu+pFF4Wg+hYVn19feo4VrxacDojX+zfv5/+/v6s8/r7+2lvb59p2DOiBCUiMs9Ex7GqqqpSA+MODw+ndQsODg7mbGWtX7+eqqqqrEmqqqqq6MPPqUhCRGQBKC8vp66ujhUrVnDGGWewefNm1q1blyq+KCsb3x7Zvn07JSXZ00BJSQnbt28vdNiTUgtKRGQByja+4MjISKpLsK+vD4CmpiYaGxvp6+vD3TEzqquraWpqKmqBBChBiYgsGmVlZdTV1aXOyRodHWXVqlU8+OCDPP/5z+fgwYOsXLmS5ubmoicnUBefiMiiVVpaSl1dHRs3buT0008HYMWKFWzYsGHCbsG5pBaUiIiklJSUpAovIOgWjBdfzOX4gkpQIiIyobKyMmpra9NOps68uOPw8HBh1l2QVxURkQUrGvni1FNPBYJjWfHLjgwMDMzKgLhKUCIiMiOlpaVprSx3Z3BwkKGhoRm9rhKUiIjMqniJ+0yoik9ERBJJCUpERBJJCUpERBJJCUpERBJJCUpERBJJCUpERBJJCUpERBJJCUpERBJJCUpERBJJI0lMwVlnnZX2V0RECkcJagp27txZ7BBERBYNdfGJiEgiKUGJiEgiKUGJiEgiFfQYlJm9DPgcUArc4O6fKOT6RGT+UNGR5FKwBGVmpcDngT8GHgd+Y2a3uPvvC7VOEZk/VHQkuRSyi+/ZQIu7t7n7EPBt4PICrk9ERBaQQiaoNUBH7PHj4bQ0ZtZoZrvNbPeRI0cKGI6IiMwnhTwGZVmm+bgJ7k1AE0BDQ8O4+SIiUnhJPCZYyAT1OHBG7PFa4EAB1yciItOUxGOChezi+w1wppltNLMK4ErglgKuT0REFpCCtaDcfcTM3gH8lKDM/Evu/rtCrU9ERBaWgp4H5e7NQHMh1yEiIguTRpIQEZFEUoISEZFEUoISEZFEUoISEZFEMvfknBtrZkeA/bP0csuBo7P0WsW0ULYDFs62aDuSZ6Fsy0LcjvXuvmI6L5KoBDWbzGy3uzcUO46ZWijbAQtnW7QdybNQtkXbkU5dfCIikkhKUCIikkgLOUE1FTuAWbJQtgMWzrZoO5JnoWyLtiNmwR6DEhGR+W0ht6BERGQeU4ISEZFEmtcJyszOMLPbzexhM/udmb0ryzIvMLMTZnZ/ePtIMWLNxcweM7MHwxh3Z5lvZvZ/zKzFzH5rZhcWI85czOys2Ht9v5mdNLOrM5ZJ5GdiZl8ys8Nm9lBs2jIzu83M9oZ/l07w3NeHy+w1s9fPXdRZY8m2HX9vZo+E352bzax+gudO+j2caxNsy3Vm9kTs+7N9gue+zMz2hP8zH5y7qLPGkm07dsa24TEzu3+C5ybmM5lon1uw/xN3n7c3YBVwYXi/DngUODtjmRcAtxY71jy25TFg+STztwM/JrhS8XOBXxU75jy2qRToJDhRL/GfCbANuBB4KDbtU8AHw/sfBD6Z5XnLgLbw79Lw/tKEbcdLgLLw/iezbUc4b9LvYUK25TrgvXl891qBTUAF8EDmvqHY25Ex/x+BjyT9M5lon1uo/5N53YJy94Pufm94vxt4GFhT3KgK5nLgax64G6g3s1XFDiqHFwGt7j5bo4MUlLvfCTyZMfly4Kvh/a8CV2R56kuB29z9SXc/BtwGvKxggeaQbTvc/WfuPhI+vJvgCteJN8Fnko9nAy3u3ubuQ8C3CT7LophsO8zMgFcB35rToKZhkn1uQf5P5nWCijOzDcAzgV9lmf08M3vAzH5sZufMaWD5c+BnZnaPmTVmmb8G6Ig9fpzkJ+Mrmfifbj58JgAr3f0gBP+cwOlZlplvn80bCVrj2eT6HibFO8Luyi9N0J00nz6Ti4FD7r53gvmJ/Ewy9rkF+T9ZEAnKzGqBfweudveTGbPvJehiOh/4J+AHcx1fnp7v7hcCLwfebmbbMuZbluck9hwBM6sAXgF8N8vs+fKZ5GvefDZmdi0wAnxzgkVyfQ+T4F+BzcAFwEGC7rFM8+YzAV7N5K2nxH0mOfa5Ez4ty7RJP5N5n6DMrJzgjfqmu38/c767n3T3nvB+M1BuZsvnOMyc3P1A+PcwcDNBF0Xc48AZscdrgQNzE920vBy4190PZc6YL59J6FDUlRr+PZxlmXnx2YQHpS8FXuvhQYFMeXwPi87dD7n7qLuPAV8ke4zz5TMpA/4HsHOiZZL2mUywzy3I/8m8TlBh3+2NwMPu/ukJlnlauBxm9myCbe6auyhzM7MaM6uL7hMc0H4oY7FbgD8Pq/meC5yImtQJNeGvwvnwmcTcAkTVRq8HfphlmZ8CLzGzpWF300vCaYlhZi8DPgC8wt37Jlgmn+9h0WUce/0Tssf4G+BMM9sYtuavJPgsk+bFwCPu/ni2mUn7TCbZ5xbm/6TYVSEzrCi5iKCJ+Fvg/vC2HXgL8JZwmXcAvyOo4rkb+KNix51lOzaF8T0QxnptOD2+HQZ8nqAy6UGgodhxT7I91QQJ59TYtMR/JgQJ9SAwTPBr703AacDPgb3h32Xhsg3ADbHnvhFoCW9vSOB2tBD0/0f/J18Il10NNE/2PUzgtnw9/B/4LcGOcVXmtoSPtxNUmbUWe1uybUc4/SvR/0Vs2cR+JpPscwvyf6KhjkREJJHmdRefiIgsXEpQIiKSSEpQIiKSSEpQIiKSSEpQIiKSSEpQMm+Y2Z+YmZvZ1jyWvcrMVs9gXS8ws1snmH7CzO4LR8q+08wujc1/i5n9eY7X/aPpxjVTZvZMM7shvH+dmb13mq9TEW572exGKPIUJSiZT14N3EVw0mUuVxGcT1IIu9z9me5+FvBO4J/N7EUA7v4Fd//aJM99AVC0BAV8iGB4qRnxYADWnwM7ZhyRyASUoGReCMf+ej7BiZpXZsx7f3i9nAfM7BNm9qcEJwh+M7yGTlV4TZ3l4fINZnZHeP/ZZvbLsEX0SzM7aypxufv9wEcJTj5Oa5WY2TvN7PfhoKbfDgfXfAvw7jCui83sMjP7Vbj+/zSzlbHX+ZKZ3WFmbWb2ztj2/nn4mg+Y2dfDaSvM7N/N7Dfh7flZ3sM64Dx3fyDLvDdbMHBvVbjOz4QtpIfN7A/N7PsWXMPnY7Gn/QB47VTeL5GpUPNc5osrgJ+4+6Nm9qSZXeju95rZy8N5z3H3PjNb5u5Pmtk7CK4ZtBsgHFkpm0eAbe4+YmYvBq4H/ucUY7sXeF+W6R8ENrr7oJnVu/txM/sC0OPu/xDGtRR4rru7mf0F8H7gmvD5W4EXElx3Z4+Z/SvwdOBaggFEj5rZsnDZzwGfcfe7zGwdwRAyz8iIp4Esw+SE79VLgCvCWAGG3H2bBRek+yHwLILLRbSa2WfcvSt8rT+c4nslkjclKJkvXg18Nrz/7fDxvQRjmX3Zw/Hl3H2q1w46FfiqmZ1JMIRL+TRimyj7/ZagFfcDJh6xfS2wMxxfrgLYF5v3H+4+CAya2WFgJXAJ8D13Pwpp2/ti4OxYIj7FzOo8uGZPZBVwJGP9ryMYeucKdx+OTY/GrXsQ+J2H4z6aWRvBgJ9d7j5qZkNZ1iMyK9TFJ4lnZqcR7JhvMLPHCForO8KBK438LqMwwlPf98rY9L8Fbnf3c4HLMubl65kEF27L9N8Jxk98FnDPBAUF/wT8s7v/AfC/MtY/GLs/SvCDcqLtLQGe5+4XhLc1WZJGP+O37yFgA+MvYBiteywjjjHSf9guAQayxCMyY0pQMh/8KcHVhNe7+wZ3P4OgpXER8DPgjWZWDRDr8uom6BqLPEaQKCC9C+9U4Inw/lVTDczMzgM+TJCI4tNLgDPc/XaCbrt6oDZLXPH1v57cfg68Kkza8e39GeFxsHD6BVme+zCwJWPafQSJ8ZapVj2GMRzJaHmJzBolKJkPXk1wHZy4fwde4+4/IeiO2m1m9wNR2fRXgC9ERRLA/wY+Z2a7CFojkU8BHzezXwClecZzcVRmTpCY3unuP89YphT4hpk9SJAEPuPux4EfAX8SFUkA1wHfDeM6mmvF7v474O+A/zKzB4DokgfvBBrC4onfExRjZD73EeDUsFgiPv0ugvftP2xq1+V6IdA8heVFpkSjmYssImb2bqDb3W+Yhdf6PvBX7r5n5pGJjKcWlMji8q+kH1OaFgsuAvgDJScpJLWgREQkkdSCEhGRRFKCEhGRRFKCEhGRRFKCEhGRRFKCEhGRRPr/NqnS5LACvbgAAAAASUVORK5CYII=\n", - "text/plain": [ - "
" - ] - }, - "metadata": { - "needs_background": "light" - }, - "output_type": "display_data" - } - ], - "source": [ - "x, y = pd.Series(actual_distances, name=\"Actual Distance (km)\"), pd.Series(combined_approximations, name=\"Relative difference (%)\")\n", - "sns.regplot(x=x, y=y, color='black', x_bins=8)\n", - "\n", - "plt.title('Distance approximation error: combined')\n", - "plt.tight_layout()\n", - "plt.savefig('approximation_2.svg')" - ] - }, - { - "cell_type": "code", - "execution_count": 37, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAagAAAEYCAYAAAAJeGK1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJztnXmYHUW5/z9vZrIBWSYLiEDIIiaQYCIJoFeuFwG9gGwKEUIiwckVSBQ0YZEtP9BggkEioBJAEiVKIiggIAjEkcXlAnfCLusMYQkBksxMFrLP5P390d2Hmk73OX22OWdm3s/z9DOnu6ur3q5zpr79Vr1dJaqKYRiGYZQbXUptgGEYhmFEYQJlGIZhlCUmUIZhGEZZYgJlGIZhlCUmUIZhGEZZYgJlGIZhlCUmUB0YEblJRGaW2o6OjIgMEpGPRKSijcr7i4hMbouyOgsi8hsRuSrN+Y9EZGgRyj1TRP5R6Hw7EpWlNsDIDRF5C9gDaAZagJeBRcAtqroDQFXPySKv/1HVvxbF2A6Mqr4D7FaMvEXkSuBTqjrJKe+YYpRlxKOqRfl+jcyYB9W+OV5VewH7AlcDPwAWlNak9oeI2INaFkTVV7Z1aHVuJMEEqgOgqutU9T7gVGCyiIyC1l0XIjJARP4sImtFpFFE/i4iXUTkt8Ag4H6/K+MiP/0fROQDEVknIk+IyMigPD/fX4rIAyKyQUSeEpFhzvmRIrLUL+dDEbnUP95FRC4WkXoRaRCRO0WkX9Q9iUiVb+9qEWnyP+/tnH9MROaIyNO+jfcGeYnIYBFRETlLRFaKyPsicr5z7ZUi8kcR+Z2IrAfOFJHuInKdn36l/7m7n/4HIvJk0KiKyFQR+beI9HDKqnTsukpE/uXX5/0i0l9EbheR9SLyfyIy2LHlehF51z+3TET+0z9+NHApcKqfz/NO/v/j1OflIvK2iKwSkUUi0idUB5NF5B0RWSMil8X9hvz7/6mf9kO/e7inf+5wEVnh18MHwK+jjvlpvy0idf53f5+IfNIpQ0XkOyLyBvBGnC0huw7z63KtX09n+sf7+Pe72r//y0Wki3/uTBH5p4j8zL/uTRH5D//4u35dhbtJB/i/2Q0i8riI7Buy+1P+50y//RHy8W//NRH5hnOuv18n60XkaWAYRnpU1bZ2uAFvAUdFHH8HmOp//g1wlf95DnAT0NXf/hOQuLyAaqAX0B24DnjOOfcboBE4BK+b+Hbg9/65XsD7wPlAD3//UP/c94Engb39fG8GlsTcX3/gZGAXP48/AH9yzj8GvAeMAnYF7gJ+558bDCiwxD93ILA6uEfgSmA7cBLeQ1pP4Ee+bbsDA4F/AbP89F2AJ/zr9gOagM+Gyqp07KrDa3z64HW9vg4c5dfVIuDXzn1M8u+10q+zD4Aejp2/C9XLY3jdscF3VAcMxetmvBv4bciuX/n3NxrYCuwfU9/XAfcB/fz6vh+Y4587HK8r+Sf+99Yz5tgRwBrgIP/Yz4EnnDIUWOqX0dM/9mfg4hibBgEbgAl4v9n+wBj/3CLgXt/WwX4dT/HPnenb9i2gArgK7//il75dX/Hz3c35PW8Avuifvx74R8juTyX47e8KvOuXW+nXwxpgpH/+98CdfrpReL/ff0Tdu21+3ZfaANty/OLiBepJ4DL/82/4WKB+5P9DfyppXs75vv4/aR8n31ud88cCr/qfJwDPxuTzCnCks78nnlBUJrjfMUCTs/8YcLWzfwCwzW+QBvv2jnDOzwUW+J+vxGk4/WP1wLHO/n8Dbzn7g/2G6RXgktDxsEBd5py/FviLs388jthH3GcTMNqxM51A1QDTnHPDg/p07NrbOf80cFpEmQJsBIY5xz4PLPc/H+7XbQ/nfNSxBcBcZ383357B/r4CR2TxG78EuCfieAWe2B7gHDsbeMz/fCbwhnPuQL/sPZxjDXwsdr/BFxnH7hZgH8duV6DifvunAn8P2XozcIVv83Za/yZnYwKVdrMuvo7HXngNaZhr8J62H/G7PC6Oy0BEKkTkavG64tbjCRjAACfZB87nTXwcKLAPXmMfxb7APX63y1q8xr4FL9gjbMMuInKz332zHs+D6Suto+XedT6/jfeUPSDN+U/GnMM/93ZcelV9C3gUr+H/Zcz9BXzofN4csZ8adBeR80XkFfG6KdfieV3uPaQjyuZKWtdn3PfkMhDPU13mfDcP+ccDVqvqltB14WOt7FHVj/CEYC8nTbje0xH3WxoAdGPne3fLCdc5qhr7Pbh2+XY30vr34hJXp/sChwZ16NfjROATeHVZyc6/SSMNJlAdCBE5GO+fdKfQVVXdoKrnq+pQvKf4GSJyZHA6lPx04ES8bqk+eI0yeE/amXiX+L71d4FjVLWvs/VQ1fci0p6P5xEcqqq98bpfwjbs43wehPeEuibN+ZXOfvieV+I1MJHpReRYPK+iBk/s88Yfb/oB8A2gSlX7Auv4+B4zLTUQZXMzrRvnJKzBa7BHOt9LH20dvRZlS9o6FJFd8brl3ktzTTrifktr8L7r8L1H/Y6SkvqtiMhueN2QK+OTR/Iu8Hjo972bqk7F62JuZuffpJEGE6gOgIj0FpHj8Pq4f6eqL0akOU5EPiUiAqzH81xa/NMf4o1jBPTC60JpwHuynp2FOX8GPiEi3/cH3nuJyKH+uZuAHwcD0CIyUEROjMmnF16juVa84IcrItJMEpEDRGQXvC7MP6pqi3N+pu+JjcQbF7gjjd1LgMt9mwYA/w/4nW/nALzuq/8BJgPH+4KVL73wGq3VQKWI/D+gt3P+Q2BwMPgfY/N0ERniN6qzgTtUtTkbI9R7LeFXwM9EZHcAEdlLRP47u9thMfAtERkjXoDJbOAp3/vMhduBo0TkGyJS6QcZjPG/4zvxfku9/N/TDPzvK0eO9QMyugGzfLuz8fbA++1/WkS+KSJd/e1gEdnft/lu4Er/N3kA3m/JSIMJVPvmfhHZgPfkdhkwD68hjmI/4K/AR8D/Ajeq6mP+uTl4jfNaEbkAbwD6bbwn0pfxxrUSoaobgC/jeWkf4EVrfck/fT3eQPwjvt1PAodG5YM3aN8T72n5SbwupzC/xRsT+AAvIOO80PnH8bo1a4CfquojaUy/CqgFXgBeBJ7xjwHcAtyrqg+qagMwBbhVRPqnyS8JDwN/wRvgfxvYQusuoD/4fxtE5JmI6xfi1cETwHL/+nNztOUHeHX1pN+l+lc8DzYxqloDzMQLWHkfz/s5Ld014r14fGlMfu/gjfGcj9fl9hxesAd497kReBOvx2AxXn3kymK8h6BGYCxe11xW+L/9r+Dd80q832UQRALwXbzuwA/wfre/zsPeTkEQxWUY7QoReQzPW7w14txgvAa7a7behGEY5YN5UIZhGEZZYgJlGIZhlCXWxWcYhmGUJeZBGYZhGGVJh5iwccCAATp48OBSm2EYhmEkYNmyZWtUdWCmdB1CoAYPHkxtbW2pzTAMwzASICKJZtGwLj7DMAyjLDGBMgzDMMoSEyjDMAyjLDGBMgzDMMoSEyjDMAyjLDGBMgzDMMoSEyjDMAyjLDGBKhKNjVGL2hqGYRhJMYEqAo2NjcyePdtEyjAMIw9MoIpAv379uPTSS+nXr1+pTTEMw2i3mEAVCRMnwzCM/DCBMgzDMMoSEyjDMAyjLDGBMgzDMMoSEyjDMAyjLDGBMgzDMMoSE6g2wN6HMgzDyB4TqAIRJ0L20q5hGEZumEAVgHQiZC/tGoZh5IYJVAHIJEImToZhGNlTUoESkeki8m8ReUlElohIDxEZIiJPicgbInKHiHQrpY1JMREyDMMoLCUTKBHZCzgPGKeqo4AK4DTgJ8DPVHU/oAmYUiobDcMwjNJR6i6+SqCniFQCuwDvA0cAf/TP3wacVCLbDMMwjBJSMoFS1feAnwLv4AnTOmAZsFZVm/1kK4C9SmOhYRiGUUpK2cVXBZwIDAE+CewKHBORVGOuP0tEakWkdvXq1cUz1DAMwygJpeziOwpYrqqrVXU7cDfwH0Bfv8sPYG9gZdTFqnqLqo5T1XEDBw5sG4tD2LtNhmEYxaOUAvUO8DkR2UVEBDgSeBl4FDjFTzMZuLdE9qXFXsA1DMMoLqUcg3oKLxjiGeBF35ZbgB8AM0SkDugPLCiVjQH2Aq5hGEbbU9IoPlW9QlVHqOooVf2mqm5V1TdV9RBV/ZSqjlfVraW0MdMsEYZhGEZxKHWYedljnpJhGEZpMIFKgImTYRhG22MCZRQNCyAxDCMfTKCMomBRjoZh5IsJlFEUbOzOMIx8MYEyioaJk2EY+WACZRiGYZQlJlCGYRhGWWICZRiGYZQlJlCGYRhGWWICZRiGYZQlJlCGYRhGWWICZRiGYZQlJlCGYRhGWWICZRiGYZQlJlCGYRhGWWICZRiGYZQlJlCGYRhGWWICZRiGYZQlJlCGYRhGWWICVSBsYT7DMIzCYgJVAGz1WMMwjMJTUoESkb4i8kcReVVEXhGRz4tIPxFZKiJv+H+rSmljEmz1WMMwjMKTWKBEpEpERorIUBEplLBdDzykqiOA0cArwMVAjaruB9T4+2WPiZNhGEZhqUx3UkT6AN8BJgDdgNVAD2APEXkSuFFVH82lYBHpDXwROBNAVbcB20TkROBwP9ltwGPAD3IpwzAMw2i/pBUo4I/AIuA/VXWte0JExgLfFJGhqrogh7KH4gner0VkNLAM+B6wh6q+D6Cq74vI7lEXi8hZwFkAgwYNyqF4wzAMo5wRVS1NwSLjgCeBL6jqUyJyPbAeOFdV+zrpmlQ17TjUuHHjtLa2trgGG4ZhGAVBRJap6rhM6bIaSxKRgSJylYhcKyKfyt08AFYAK1T1KX//j8BBwIcisqdf3p7AqjzLMQzDMNoh2QY7XAs8ATwELMmnYFX9AHhXRIb7h44EXgbuAyb7xyYD9+ZTjmEYhtE+yRQk8RDwY1X9u3+oG/AWoED3ApR/LnC7iHQD3gS+hSead4rIFOAdYHwByjFCNDY2WuShYRhlTSYP6lTgRBFZLCLDgJnA/wOuBqblW7iqPqeq41T1M6p6kqo2qWqDqh6pqvv5f+3t1wJjLxYbhtEeSBQkISJDgR8D7wGzVHVdsQ3LBguSyB7zoAzDKBVJgyQydfENBaYC24HzgWF43W9/xnsHqqUQxnZEyl0Aytk2wzAMyNzFtwQvIOJJ4Leq+ndV/W+8cPBHim1ce8W60AzDMPIn04u6PYDlwK7ALsFBVb1NRO4spmHtGZubzzAMI38yCdQ04BpgG3COe0JVNxfLqI6AiZNhGEZ+pBUoVf0n8M82ssUwDMMwUqQdgxKR+0XkOBHpGnFuqIj8SESqi2eeYRiG0VnJ1MX3bWAGcL2INPLxbOaDgXrgF6pqMz0YhmEYBSdTF98HwEXARSIyGNgT2Ay8rqqbim6dYRiG0WnJ5EGlUNW38KY5MgzDMIyiU9Il3w3DMAwjDhMowzAMoyxJLFAi0tNZGsPwsdkiDMMwikMigRKR44Hn8KY9QkTGiMh9xTSsPWBTGhmGYRSPpB7UlcAhwFrwlsnACzXv1NiURoZhGMUjqUA1l9sSG+WCiZNhGEZxSBpm/pKInA5UiMh+wHnAv4pnlmEYhtHZSepBnQuMBLYCi4F1wPeLZZRhGIZhJPKg/FkjLvM3wzAMwyg6SaP4lopIX2e/SkQeLp5ZhmEYRmcnaRffAFVdG+yoahOwe3FMMgzDMIzkArVDRAYFOyKyL6DFMckwDMMwkkfxXQb8Q0Qe9/e/CJxVCANEpAKoBd5T1eNEZAjwe6Af8AzwTVXdVoiyDMMwjPZDIg9KVR8CDgLuAO4Exqpqocagvge84uz/BPiZqu4HNAFTClSOYRiG0Y7IZrLY7kAjXoj5ASLyxXwLF5G9ga8Ct/r7AhwB/NFPchtwUr7lGIZhGO2PRF18IvIT4FTg38AO/7ACT+RZ/nV4CyL28vf7A2tVtdnfXwHsFWPTWfjdjIMGDYpKUnY0NjbazBOGYRgJSepBnQQMV9Wvqurx/nZCPgWLyHHAKlVd5h6OSBoZjKGqt6jqOFUdN3DgwHxMaRPaw8Sy5WybYRidj6QC9SbQtcBlfwE4QUTewguKOALPo+orIoFntzewssDl5kWujXg5Tyzb2NjYLgTUMIzORVKB2gQ8JyI3i8gNwZZPwap6iaruraqDgdOAv6nqROBR4BQ/2WTg3nzKKST5NuLlKk6zZ88GKFsBNQyjcyKqmV9nEpHJUcdV9baCGCFyOHCBH2Y+lI/DzJ8FJqnq1nTXjxs3TmtrawthSkY64jhSR7wno/DY78QoFCKyTFXHZUyXRKD8DHsCg1T1tXyNKzRtKVAdCWtwjKQEnrZ52UYhSCpQtqJuiSjFWI9bpo05GdmQzxiq/caMXMlnRd0hRbKp3ZDrP14pxCFcZjkHbRjlSa7iZA9CRq4kHYN6SlUPFZFnVfWz/rEXVPUzRbcwAaXo4su3y6MU3WuZyrQuP6MY2O/KCFPQLj5CK+qKyM/p5CvqpvNAkjwtluIfNpM42ZOuUQxMnIxcsRV18yBOnJI29OUkBtblZxhGuZFRoPzZxn+oqpep6sH+drmqbmkD+9odSRv6cvRYTJwMwygnMgqUqrYAY9vAlg5DkobePBbDMIz0JF0P6lk/rPwPwMbgoKreXRSrOgkmToZhGPEkFah+QAPefHkBCphAGYZhGEUhkUCp6reKbUhHIEk4bbFDbi2k1zCMjkLSmSQ+LSI1IvKSv/8ZEbm8uKa1LzIFPdTX1ycKjMgnaKIcAy8MwzByJWmY+a+AS4DtAKr6At4M5J2KdA1/EPQQRX19PaeeeirLly9PGxhRiNnSLfDCMIyOQlKB2kVVnw4da45M2UFJKh5RaYYNG8bNN9/MkiVL0l5bCIExcTIMo6OQdKqjvwDfBf6gqgeJyCnAFFU9ptgGJqGtpjrKZYzJ3Y/7nEs5hmEY7ZVCT3X0HeBmYISIvIc3i8Q5edjXLkn6flNA1AStmVavba8zURiGYRSatAIlIt/zP+6pqkcBA4ERqnqYqr5ddOvaOeEuuySr17aXmShMHA3DKDZpu/hE5DlVHSMiz6jqQW1oV1a0pwULC9l9V6quQFu8zjCMfChUF98rIvIWMFxEXnC2F0XkhYJYWsaEF/grBOEuwELl1ZaUe7SgeXeG0TFIK1CqOgH4HFAHHO9sx/l/OyxuF1o+3Wlx15S6iy5X3PG0cqS91qthGDuTqYuvRlWPFJG5qnpRG9qVFcXq4ouKusumWy1oLKdOncqwYcNi84/Ls9yi+dpL11651ZthGK0pVBffniLyX8DxIvJZETnI3QpjavniNnKBkISfzjO9vDt16lTmz58fmS4uzyDfmTNnlpUnUO5dewHlbl97opx+f0bnI5NA/T/gYmBvYB5wrbP9tLimlR9xUXn19fWx1wwbNmyna9LlGZWmnMin8S/n+zJ2xrpLjVKTaQzqj/7LuHNV9Uuh7Yh012ZCRPYRkUdF5BUR+XcQ0i4i/URkqYi84f+tyqecQhP2qtJ5SOFr4jywqHenAGbNmlVo81NluH/bIg9r7Nof7cVjNjowqhq74b3zBHBQ1Jbu2kwbsGeQB9ALeB04AJgLXOwfvxj4Saa8xo4dq6WkoaGh1d+kaRoaGnTatGk7XRfs19XV6fnnn58231xsPf/88/PKO9c8CnkfhmG0X4BaTaITaU/Cr/y/j0Zsf0tSQNINuBf4MvAa3ovBgYi9lunaUghUQ0PDTmIT11jHnQsEqq6uLvaa8LlCNPJxYplrHkkEOpe8jdJi34NRLAoiUG21AYOBd4DewNrQuaaYa84CaoHaQYMGFbr+0tLQ0KDV1dU7iUsmDyrqfDovJErQCu1R5ZtvITyyQtliFA77HoxiklSgMoWZfz1D92DeK+qKyG7A48CPVfVuEVmrqn2d802qmnYcqi1mkgiHnM+cOZPq6mqWLFmS1dREl156KU1NTa3CzqPCzdOFnkPmYIVsQ63zCc3OJQS/WLYYhcO+B6NYJA0zz+TZ/NrfHgCagLv8rRG4O4kCZsi/K/AwMMM5VnZdfFFPk+m6teLSNTQ0aF1dnY4dOzay6y4Yj0raXRjXRdfenn7bi52GYRQGEnpQmaL4vqXecu8KHKCqJ6vqycDI7DWzNSIiwALgFVWd55y6D5jsf56MNzZVUqKimYLP4SfMqBko6uvrU5F5VVVV3HHHHVRVpQ9OnDp1amToubswYtxMF4WIvmqraLu2jO6zCELDaGckUTHgpdB+l/CxbDfgMDzhewF4zt+OBfoDNcAb/t9+mfIqdRRfmHQeVNx4TXA+8KRcbyqp11RI+9vSA2uLctqbV9kesLo0coVCBkkAv8DrijsTz6v5C/DzJNe2xdYWAhXu0ksa1JApn+Cz23jW1dVFClNbNrIdsfHpiPdUKkzwjXwoqEB5+fE14Gf+9rWk17XF1lZjUIHnE+cBucfCYeKZvJ0oUYpKm02DEE4bFc6eDbk2RknH7kpBEjvKxdZyw+rFyJWCC1Q5b6XwoOLeXXKpq6tLhaK7nlD4/Sa3Wy8Qqrhy48oKExbRuro6HT16dKRgJiHJE3OSoI5ChqTnS9J7KgdbDaMjYQJVRDI1Wq4oRImO64kF6YMIP3dmibgGPW5Myi0/6h2t6urqvLoK03lgmSIPw5+L3eAnzd88KMNoe0ygikw6cXJFpba2NrLhdkXKDYgIT32UzoOKE4WofMJ5ZNsw5+pBFZJsRCfq/g3DKA+KMQbVExieNH1bbuUaxZfJWwg8K7cxdb2tJEEWmby4fGyPe/erFGTj9ZlAGUZ5k1SgMi23AYCIHO+HgT/k748RkftyCWvvCATvHmUimF0hLo/58+cDMGPGjFTaefPmMXPmzNS7U+71wTH3XNy7Tklmmog65pYZ9+5XMYizxy076btd/fr1Y9asWTYLgmG0d5KoGLAM6AM86xx7Icm1bbG1dZDEtGnTtLq6Ou0kr26XnTv24xLlQbkh5VFdbOEghyRBFFHn0o0XRQVyRNVDVN5xNqQjzlvLZZwsifdppKcz1lNnvOdSQoHfg3rK/9upBCquu6uurk4nTZqUaLyotrY2MpLPDWSIyicq0i9OaNxxrrDApBunSrefya504fZRdZaJJIKSKS/XvjjbrSFKT2esp854z6Wm0AK1ADgdb9aH/YCfAzclubYttmIIVPhHG27soqLkXFGpq6uLjdYLRMUNjgiXERaduH+gcKRgkC4siOF7S3ev7j3GeUxx9RIWyrh06cbloshGaOPGoOLKLfQ4XnunFPdd6roudfmdjUIL1C7Aj4H/87ergB5Jrm2LrdgeVJJzrijU1NToqFGjtLq6Wmtra3dKV1NTEylc4clikyzlEW6M012TTuyihCeJN5SujChPK7A36PYM11/cRLpxZaV7iEhy7+nqo1hLm5QrudqW7z2ZB9P5KLRAfTZJulJtpYzia2hoaOXtBB7NxIkTdwoxb2ho0EmTJuno0aO1pqYmdSyqWyqu2yzOhnBeUWnCHlv4fFToe7iM8DWZZnmPejG4tra2lUC5AhY1xpbpna84W6LszNeDyqcRTdIQF6KRziWPXEWiUOJi4tS5KLRAPQq8CswCRia5pi23UglUIDjDhw9v5Sml69qqrq7We+65J2P3WZTohMUu/E9dV1eX8s6iPIK4MhsaGnTKlCmtugqThmm7aaJsDAeI1NXVaXV1tU6aNCmttxjOJ8nsE4Vu+IvhVWWysRD557P4ZC7kO4VWuWKiWTwKKlBefnwCOA/4J/AicHnSa4u9taVAhRv2SZMm6YgRIxJNIRQ0zqeccopOnDgxUmQCcZgyZUpaAZsyZUqrxr+urk5Hjhyp+++/f0osw/mHPZawx+TeQ5wXFudVReVRW1uro0ePTnmSrncZ3H9UPuHywyIWVWfpyMejiIuajMo7zkPLttwkx9KlyeT5FpJCeVCZymhrsWiL++rMFFygUhfAgcBvgW3ZXlusra0EKsqbcRvTQICixlCCa2tqanTkyJE6ceLESI8jyGfatGlaW1sbK2LV1dV64okntupGdLvOgjRhTygcuBHVALvLfbj2h+cLjBtXCuwP7iF8b2Exc20bPXq0Tpw4MdJu9zsIe5hxjViS83Gki1aMyjtqbC1fkjSUcWnybWSTXpftA0O2NoR/j22FiVPxKHQX3/7AlcBLeMuzTwV2T3JtW2yFFKi4H2W4uylONEaMGJESn+B4OLItaKTD+bqNdm1trY4cOXKncPYgj5qaGq2qqtLx48e3usbNN8qjCR+La9jCdgViGRcd6N6fG+LuEh5rimp03Fndo/KM+o7cNHEiFHU+aeMfVWb4fGB7MRrSbD0olySBNnH5ZStumb6HXCmWZ2qUjkIL1JPA94BPJknf1luhBCrJk2i6WcEDEQjGc8Ji5npG4XGXuro6PeGEE1oFMkyaNCny+kBkxo8fnxrLqamp0YEDB+opp5yyk22BZxeIZ1iAourBPT9+/Pid7jl83+Hr4+rWzcPtxnRFOzjvPjlHzWmYSViT2pWEUqXLBbdOwx5etoKTTdqkrzVkQyHqqRiiaeRH0br4ynFrCw8q3LCGgwnCDWPQqAZjMO74S1ikGhoadOLEidq/f3+tqalJHXO7i4Lgh5qamtQx1yOaNm2aLlq0qFW3nvtEW1NTk+p+TOflhIXBFVW3LqK6+qLqMuxhuOfcLsGRI0fqqFGjdhLBOK8s7iXhwNZ03UKZGtC4B5SgDtLNsJHkePh3k8lLc6/LlCZqfDFcZrFI92CSqX5yuTYX20rh3Ro7UxCBAu70/77ov6QbbC92hpkkAsL/KIG4hGeJCL9cO23atJSX4zboQaPsNiKBoNXW1urYsWNb5V1bW6t77LGHLlq0KPWeUPjaQJjcIANXZKI8tqgxquB+XWEIRyhOmTKl1ThRXOMSDuQIjx2F399yx9zCT+NhoYoKp4+qh3TfZZRnEeXpBd/52LFjtaamZqd3taLuLep4VPer6xFnasgzjcXE2R58zjfaLtfGOIm9mbqaC0GhPSnzzHKnUAK1p/9336gtSQFtsbXVXHxuY+++bBslAm764KneDUwIuszC+Zx//vl6zz33pNIFAuGOAbkNnCtubv7Tpk0636OoAAAgAElEQVRLdf8F9oTvZ8qUKTsFMYQb06hAjvD9RJURiEXQjRfnrbmfw0EYUeNd6e7Hrfd0hL3IcMBGXHCEWydR9sQJcXAvrrBF2ZvU7nSk89jy8aCiGuO4z9nmG3V9pvIy5ZdNefkIjIlTbhR6DOonSY6VauvXr5+efvrpesYZZ2h1dbWeddZZOm3aND3vvPN0xowZetFFF+lll12mV1xxhc6aNUvnzJmj11xzjV533XX6i1/8Qm+66SZdsGCB3nbbbXr77bfrnXfeqXfffbfef//9euedd2pNTY3ef//9+vWvf11PPvlkXbx4sX7ta1/TpUuX6jPPPKPf/va39eWXX9Y33nhDly9fri+++KJOnz5d16xZk2rIp0yZkhKloPEOnsYXLVrUSojchixI477f5IrEqFGj9JRTTknNXOEK4imnnJK2AQi8ILdBdu1yG+RwAx5+8nc9tvAWbpzjcEUp3AUaFXbvXpdNsENY9OK6C+PKihIwN9847yrd/acTqSjhy0S23kgSkQzXT9S9x9meC3HlpUufxBNLans6e4z8SCpQ4qVNj4g8o6oHhY69oKqfyXhxGyAimW+iBIgIqkr37t2pqKigoqKC7t2706WLt8rJpk2b2GWXXVi3bh0DBw6koaGBIUOGUFFRwW677UZzczMffPABu+++O42NjQwdOpQ+ffpQWVlJS0sLlZWV1NbWcvDBB9PS0kJVVRWVlZX87//+LwcccAD33HMPZ555JrvvvjuPPfYYRx99NBUVFfTt25fGxkaWLl3Kcccdxz777MOWLVvYsmULP/rRjxg5ciRf//rXGTVqFBs3buTnP/85L774IjfddBNDhw6lsrKSFStW0L9/fyorK6moqKBr167MmjWLCy64gDlz5iAizJ07N7XkRX19PcOGDWtVP+5yIe75+vp65s+fz4QJExg7diz19fWcfPLJ3HXXXQDMnz+fqVOnUlVVlbo+bumRYMmOmTNnppbgCNLGlR+XX2NjIzNnzgS8JVKGDRvWKq+A2bNnt1oaJN2yKO79Tp06lfnz5+90bZAfJFvyxL0mfJ9R9xekd8tPUlY4j3T1VYjlTzLVY1Sa+vp65s2bt5MNmWyPyjf8vRq5IyLLVHVcxnTpBEpEpgLTgKFAvXOqF/BPVZ2Ur6GFoG/fvvr5z3+elpYWmpubaWlpSX1ubm5mx44dbN++vdX54FxUWve4kT0igojQvXt3unbtSmVlJQCVlZV0796dyspKduzYwbp169hzzz0BeOuttxg+fDi9evVKPT2tXLmSoUOH0rNnT7Zu3Urv3r15/vnnGTlyJG+88QZdunRh7NixVFZWsttuu9G7d2+2b99O79696dq1K9u2baOmpoZDDjmEJ598kpNPPpm+fftSWVnJli1buOeeezj++OPp27cvd9xxB2eccQb9+vVj06ZN/OpXv+Lcc8+loqKCyspKKisrGTBgABs2bKCyspKBAwdSWVnJ+vXr6dq1K3PnzuWyyy6LFYQ4XHEIC57bgMLOgpGuHDefKMF0y3TLCIhqjLO5r3CeSYW1kI2/e5/uw0w++Zk4FYZCCVQfoAqYA1zsnNqgqplX7MsDETkauB6oAG5V1avj0o4bN06feuopAML3k2k/fMz93NDQwJVXXsk555zDXnvtlRKyuro6br31VjZs2EDXrl1paWlh2rRprFixgkceeYSvfvWrdO/enVtvvZWRI0dSX1/Ppz/9afr27cvChQuZOHEi3bt358EHH+TII49kw4YN9OnTh/vuu4+uXbty8MEH07VrV/72t7+xY8cOAHbs2MHw4cPp06cPmzdvprm5mWXLliEiDB8+nI8++ogVK1akGk4RYd26daxatYpNmzaxxx57UFFRwapVq+jduzfbtm1j48aNdOvWjZaWFjZv3kyXLl1obm6OrCMjM126dGnlUQafu3TpQrdu3VqJnZsOoEePHlRUVKCqVFZWsnz5cgYNGsSAAQPYsmULb775JqNHj2bXXXelsrKS5uZmnn32WT7/+c+z2267pfIMyq2srGTr1q306dMn9beiooJu3bpRWVnJmjVreOSRR5gwYQJVVVVs2rSJ3//+95x55pn079+fjRs3MnDgwJTNGzdu5MYbb2T69OkMHDgwVc769evp378/TU1NO3mnV199NWeffXZKHBobG+nfv3+qvkQk9bmpqSnWQ3HTJSGdd5TOazaiKYYwF0SgIjLdHegR7KvqO7mZl7GcCuB14MvACrwZ1Ceo6stR6ceNG6e1tbXFMCXVReB2D82cOZPq6mquu+46rrzySoDUP6HbXTN79mzWr1/P1KlTmTFjBgsWLGDdunWMGTMGIJXP2Wefzdy5c5kxYwbz5s3jwQcfTHWzgPfPe8UVV/DSSy+xYMEClixZwoQJE5gyZQrz5s1jzJgxzJw5k5NPPplp06Zx2GGHMXXqVM4++2xuvvlmAJYsWcLUqVNT9wLw3HPP8eCDD6aOB+V///vfp3fv3jQ3N1NfX89tt93G5s2bufzyy2lpaeH666/ntNNO4/rrr6eyspJzzz2XXXfdlebmZt566y3uvPNOvvnNb9KzZ0+2b99Oc3Mzr7/+Oo888gjHHHMMNTU1HHbYYXTt2pUdO3bwyCOPcOCBB7LbbrvRrVs33n33Xbp27cpTTz3FiBEjqKysZNWqVSxbtowDDzyQlStXMmLECJqbm9m8eTNbtmyhubmZV199lX333ZeGhgb22GOPVBdp7969ERGam5vZtm0b27ZtY/369fTo0SPlKbe0tKQeBozsCLqsu3Xrxo4dO+jZsyfdunUDvG5sEaGqqooNGzaw++67p0Qy6PYOPqsqPXv2TB1raWlhl112iUzb3NycEutA6CsqKti2bRv/+te/OOKII+jVqxcVFRUpgd6yZQsPP/wwJ5xwAlu3buWXv/wl06dPZ++9997p4SH8IBG1H/QUhHGPiQhNTU1UVVVFno8iU57p8khybTbXNzU1cd111zF9+vRE95D0eFVVVeEEyl/yfR7wSWAVXhTfK6o6MuPFOSAinweuVNX/9vcvAVDVOVHpiyFQbveEO34RCFZ1dTVTpkxhwYIFLFy4ECDV8C9fvpyxY8fy29/+lvPPP59bbrmFxYsXo6q8+uqr7L///tx0002p/Juamhg2bBjLli0DYMiQITs9jbrpguN/+tOfWLp0KdXV1SlRPP3001m8eDFDhgzhiSee4KSTTgI+flqsr/d6amfPns2yZcuYN28eRxxxxE5dPBdeeGHqH3vGjBkArcaIqqqquOiii1BVrrnmmlZPpbNnz04da2xs5LnnnkuVETUGFFzTo0cPqqurOfPMMxk9ejQiQrdu3di2bRu1tbWMGjWKqVOnsnjxYi655BLmzZvHli1b6NGjBzNmzEiVC7Sqt6jxnOA7Ch4ojj32WA4//HBWrVrFnDlzmDFjBs3NzWzfvp0f/vCHbN26lZaWFrp168b06dN5++23eeCBBzjjjDNSDenbb7/NH/7wB3bs2MFpp51Gz549aW5upqmpKeWpbt++nXXr1tG1a9eUBx6U09zczJo1a3j22WcZM2YMTU1NvPrqqwwfPryV2Afd1Zs3b+bNN99kr732AmDLli2sXLmS/v37p86vX78+NZ65Y8eOlBhv376dbdu2AZgw50hYNF2hdEVs7dq1OwmzK3ZuHmERLNT5sF1R14ePB383btxI//79U2mz9WijGD58eCKBqkyY31XA54C/qupnReRLwIR8DMzAXsC7zv4K4FA3gYicBZwFMGjQoIIV7A6qgyc6rjjNnz8/NUB+1113MWzYMIYMGQJ4wnTjjTfy1FNPcdVVV3H99ddz7bXXsnTpUrp160aPHj2YNWsWl19+OcuXL6dv374pYWlsbOQnP/kJjz32GLfccgsHHnhgyqsJGt5AIAJbrrzySvbdd19uvPFGANatW5d6mv3e977Hww8/TO/evenTp0/Kg5ozZw7du3fn0ksvZe3atdx4440pj84djAdSDX9VVVXqXFNTU8rmuXPnprp24GNvM/gBNzY2cs455/DnP/+ZxYsXp8QyODd79mwmTJiQqr+grDFjxvD9738/dTzo/pk4cSIzZszgwAMPTH03Af369eOaa65pJeLh++nXr1/qHpYsWQLAwoUL+fKXv8zpp5/OAw88wNixY7niiitadWn88pe/pKmpKfV9VFVVcffddzN9+nSGDBmSKue//uu/OO6441qV5/6mAsIBCeEuqODawFsPfm9xv9WostxgDvf7i+ruCoTLFcBt27axevVqbrjhBr7xjW9w++23c/LJJ/OJT3yC7du3p9IG6YNt7dq13HPPPRxzzDGpcw899BCHHnoojz/+ONu2beNLX/oS3bp1ayXMGzdupLa2lpEjR1JZWcn27dvZvHkzIhI5Rrx161aAVmPKW7duZfXq1ezYsYNevXqlzm/fvr2VOAd55duVHeQXCH061q5dm1dZ5UQ6UUwqpklJ6kHVquo4EXkeb22oHSLytKoeksd9pitvPPDfqvo//v43gUNU9dyo9IXyoMKNWtDYuefcgWWX+vp6Tj31VC6//HJuv/12evfuzbRp0xgyZEhKjAIuvvhievToQbdu3Zg2bRo33ngjl156KfPmzeNzn/sc1157Lfvttx99+vRh6tSpTJkyJSWGrq3Lly9n4cKFzJgxIyU2W7du5YYbbgDggQce4PHHH+fJJ5/ktttuY8iQIVx44YVMmzaNsWPHsmzZMiZPnsxtt91G3759Uy580DgG9x94TPBxt2QgeG5EXXAu8AADO5944gn+8Y9/pOrV9WKC7s277rorJThnn302u++++05RV0E9rl27loULF+4UGRZ8B3fccUcrTzP8PQURgoGwX3PNNSmPKigrqIfwteGu3KiIt/DvaObMmWzdupXu3bun7jHII/ydhoXELSeqDLfbNp3QRd1PHFFjONkGfgA7RR+Gu8vTlRtFOAR5x44dKZEJjq1Zs4ampiaGDBkSG7rc0NBA3759U6LsCnOc+Lppg/3gWCB+wTWBaAYesvsAEA7UamlpYdOmTSlRDucbzjPufFwgWNjG7du3J/oO24CCdvH9FTgJL1hiAF4338Gq+h/5WhlTXsm6+NJFPwUNlCtc7jXLli1j4cKFrF+/ni1btnD11Vcze/Zsnn76aUaPHk337t1bPW0FAjV58mRuuOEG+vTpw5AhQ3jggQd48sknU0/O4YbMbbSC/u2gEbzkkktS15x66qnMnTuXxYsXM3fuXAAuuugiunfvnhpvWrVqFSLC66+/nhrfcoVkwoQJKREJxrpmzZpFU1NTyp7As5gzZ85OXX5R9eqyfPny1JiaG1K+YMECxo4d26puv/rVr7J48WLuuusutmzZ0qobET5uBIHIkPbgnqZOnQrAnDlzuOSSS3YKV3e95yDf4PiWLVu49NJLUwIY1H+6CDtX4KO6G+OEJSqvKOFxu6DDZBsenSSsPalYRdkdl2e6PLK5JtODZNL6yBSGnun9nYaGBubOncsFF1xAVVVVbLrGxsbUuG/fvn0Tv/sZiLO7JcWNVA6LXyBmgUiH06aLeg4LbDitu3/LLbckEqikL+ruihdNVwlMxlsXqn/Sysx288t5ExgCdAOeJ81CiW2x5Hvwsu3EiRNT8+sFadw584JZHUaOHJma/SGYPy94mTXYD84feeSROnToUB02bJiecMIJOnDgwNSKu2Fbgpd0w/PgRb0IGp4ZPDjmzmYQTKkUXkPK3WpqalL3HBwbP368jho1SmtqalpN6BpebiI8s4b7QnB4eY7ABtcWd/aDoE7cGTTCsyS4U0W5dee+9BtcE7zYHPWSbvglzsBOdyLg4Ht2XyKO+g2lm/cwvJ/ppVf3XpO8XJvkfJi4ORZzeWHYtTuYwzLb67KdASPJtFHpyszmJeRM+SShUC8A79ixQ1taWrS5uVm3b9+u27Zt061bt+qWLVt08+bNumnTJt24caN+9NFHumHDBl2/fr2uW7dO165dq01NTdrY2KgNDQ26Zs0aXb16ta5atUo//PBD/eCDD/T999/XlStX6nvvvacrVqzQd999V9955x19++239a233tLly5drfX291tXV6RtvvKGvv/66vvbaa7Eb7X2yWOBYvEi+euCydGnbYi4+t0ELGuVg/jh3pu8g/aRJk1Kr544ePTo1fVHQ2AfHFy1apH369NF99tlHhw0bpjU1NZHi5M5p586x5za6cROqutMzhSeCDTfcbqPgzuowfvz4VteNGjVKjz766FZi6YpOUL47r6Db0AfTIAXXTpo0qdXihq5wufcX3EN4zr1wmnCjEjVlkzulUtR3HvwNz7Ho1lMw43zc7yYoO+k8epmEJ0o805WdLVF2pDuelExzP6azJ1sxzJRnumvj7j1d2mzOdUbCwrl169aCzcW3AVjvbBvcv0kKaIutLQQqaKiCf7SJEyemnqYDQQk3iJMmTdJRo0bpkUcemfKKgoUGJ06cqCeeeKJWV1fr+PHjddGiRTpp0iQ95ZRTIr2QT3/60608i2A+v2Ai2tra2lYC5IpL2AsKjgVz8UU9mYcb13BDHLW2VHhOO1dEq6urU2UFohieKijsxbn2B+dHjx6dmvE9WNokbG9coxa2LRC6cH27DYwrsuHfgytu4YbRFVf3GjePqN9ZlA1xJBG7XEgnjPkQlUchG/NMnlMSMn1HcWmzOWdo+/egstmKKVBuQxms9hp4Uu5kr+4M527DHIiaKwrjx4/XiRMn6qRJk1rNv3fPPffoqFGjWi2HHlzbp0+fnZZJd/Pef//9dfjw4alyVD8WEXeZeXdW7mBBxLBnEP7ncj2g8PG4f+jwHH3umlLhdOH0AYHgBrOi19bWph4MgvoL7tmdhzBq3r5AkMJlh720uHtxP4e7B8P36qbJ9ISdTSOXjbdUyAay2B5BPkLgpoma4T4fm8wLKh4FFyjgMOBb/ucBwJCk1xZ7aysPKtydNH78eB05cmRKpAKBCSZvDRpTt3suaOxramr0hBNOaDUO43bZqX7cRVZTU7PTKr3hbq6gwXYb5EAwXe/JLcPtqgzsCzwp15uJW35i9OjRkY1wWGzC3oabLm65EtdzcbuHXFEJPNLg/qIEJ6q7MHxf4bTufbqfgzTuuFvYQwp3ZYbzcPezeeKPazDbqiHN1lsolD3Z1lEhMXEqHgUVKOAK4H7gdX//k3hz8ZVcnLRIAhXX3eKKx8iRI1MzhgeNVuCluOMbQYPvegKTJk3Sqqqq1PXhWcwDXM8sbF+UaLq4Yx9Bt5g7JhS1uF/gFQa2hMtxPYWwB+XWVZQYhdO53k64oQ9fE+V5uaIWjPFFfXdBWXECGS473PUYXnIj3ZN6WMzihCiunrIVgrjjbdW4Rglk3LFsyVTXRvul0AL1HCDAs86xDrtgYdw/WLibyBUh92k/ajB+2rRpqTEn15tyG8HwOEdAeJDeTZNk8N21yR0vCzfMbpegO17kimdUPUTl5xLUT5RAhK9J15hHiWFQP+mW8wh7NlHHg33XUwuXE7cfRzpxdM9nus9saSuvyi0v3bFc7IkT8LjyjPZFoQXqaf/vM/7fXTuyQKnGd/FENTZud06cxxHuZgvn73ojYY8tvKBhVCBCpn/aoPsrHHEY4I5NhRvt4PpweteGsFBGiZSbPu6+cm2UMj1lR3lD4XzTiUkSG+Ia6rgHiEJ5GkltKRZJBDwXe5LWWS75GKWl0AJ1AXCz/27St4H/Bc5Lcm1bbG0RJOE21G53WFRD64aeu5F1gTiNHj26VddWEO0Xfp8q+BuOngt7aGFxcAMPXA8qGMuJalBcDy5OZAKiPKLw2FmSENxwV1pUmbl6L3HkIjLB8Uxh3bm+L5OLneVC+L7bwnvLVpzyWUnYiCbf+ixGkMSXgWuAnwJfTnpdW2xtESThfg7EJmikww1t8N5QMJYTHqsJd20FXWpxYyTusulRL326+buBFUGUXjgQIsk9Zmpowh6Re//pvJCosqI+h/ON2k+Xbz7kmn8hy0/SyJdLo1voh4hCYgJVeArxEFLUMHN/VomJuVxbjK3YAhUQ1e0VNMrusREjRuh+++2nEydO3OmlW9erCfJyQ5PDjbEbaRf21IJ8wt5MMFOF+55TVPdg3D1m80Kma68rUElFKKrc8PF8rs+WXPMpdAOYRJwsDDoZVkeFpyw8KKA3cAnwC+ArfqDEd4G3gXuTFNAWW1sIVFSDENe9FoQ+u9PiBJ7V6NGjW70TFFwT1bDHhWsHn9107ucoz87NL5OHkPTHFxazJDMQZOsBZdMQF9uDSpc+l+69uPPZ1L9htEcKJVD3Ar8BzgbuBJYCjwNjkmTeVltbCVSmSKw4QQnEx42Oc9Ok81jCeSVprKMi0DKJTyE8h6Tdh5nSZHMumzRtfX0SQU4asWgYHYlCCdSLzucKoAnolSTjttzaYgwqbh4xN026CLTwRKrhRinuePgF1iSNfZxtuTzNZ1NOruTbKOfrZRVTFIrpQRlGe6VQAvVMuv1y2dpqstikoczh/WAuOzdyL2oWg6guuLjQ66guwXTkEzqdaYaFQtAWHlA+XXGGYRSOQglUS2ii2ObOOFms6s7iE5cmEBNXbIIAiHC4eNTSCUnfAUonUOFjcQ1ztp5VNuNJ5Uq521vu9hlGIbDJYrMkSSOdxGMJgiTctW/iAgeiXtjNptGPEpx0YpQkj2zKtMH8wtJeRd8wsiWpQHXBSK2yGV7tNcyWLVsy5lVVVcW2bdtQVaqqqlJ5u/Tr1y+1Kmt4pc64lT6jbItaAjwuj7jVQ7NZ3TScPmol2DBJ69b4+HeR7XdiGB0VEyiSNww9evSIPB4sMx7Qu3fvVH7hvKOW7A6Oh4UsOF5fXx/byLv5uWW2JelEqF+/fkydOjVySfSOTK73Z+JkGA5J3Kxy34oxWWzS4+57R+nGkYLjUUtBBHlHdcu5CxBG2VMuMw5YKPXHdPT7M4x8wcagciNp4xI1D11cJF6Qr7vQXXDMPZdkxuuo84W4n2LSGaPmOvr9GUY+JBUo8dK2b8aNG6e1tbUFy6+xsTFtV0t9fT2nnnoqd9xxB8OGDUulD/+NyrepqYn58+fv1O134YUX0qNHD2bMmMGwYcMKdi9J7scwDKMtEZFlqjouYzoTqNyor69PidPs2bOzGtwOrnWJEy+jPMlV9O1hwTCSC5QFSeRIIDDZRl41NjYyf/78nQIk+vXrx7Bhw0omTh09aKGQ5BqZaBGNhpEd5kGVAPcpOhcPrBj2lNqG9oZ5UIaRO2XdxSci1wDHA9uAeuBbqrrWP3cJMAVvFovzVPXhTPmVi0C150arHGwwsse+N6M9Uu5dfEuBUar6GeB1vCU9EJEDgNOAkcDRwI0iUlEiG7Min+6b8DtRmcopBOF8rJFrf1iXodHRKYlAqeojqtrs7z4J7O1/PhH4vapuVdXlQB1wSClszJa4F1KTkLShKVSDZA1b21Ds+rWZJ4yOTjkESVQDf/E/7wW865xb4R/bCRE5S0RqRaR29erVRTYxM1HBD9mQpKEpVIMUl48JVuFoq4cAEyejI1M0gRKRv4rISxHbiU6ay/BmSL89OBSRVeQgmareoqrjVHXcwIEDC38DWRLV6CdpnOKmOEpXTiGIEifzqgqHeTeGkT9FEyhVPUpVR0Vs9wKIyGTgOGCifhypsQLYx8lmb2BlsWwsNFGTt2Zq8MulISsXOzoSxahLe4AwOhMl6eITkaOBHwAnqOom59R9wGki0l1EhgD7AU+XwsZ8yabBLxdRKBc7jGjMyzU6G5UlKvcXQHdgqYgAPKmq56jqv0XkTuBlvK6/76hqS4lszBtr8I1CYl6u0dkoiUCp6qfSnPsx8OM2NKfssXddjAD7HRidiXKI4jPSYN06hmF0VkygSkA2YmPdOoZhdFZMoNqYXDwiEyfDMDojJlBtTC6zn0d9NgzD6OiYQJWAbMQp8LZsLMowjM6GLbdR5oSX5rDuPsMw2jvlPpt5WZKPd5LL4nVJcAXJxMkwjM6ECZRPPl1o2V5r3XWGYRiZsS4+h3y60LK91rrrDMPorFgXXw7kIxjZLl1h4mQYhpEeE6giYF14hmEY+WMCVQRs9gfDMIz8MYEqEiZOhmEY+WECZRiGYZQlJlCGYRhGWWICZRiGYZQlJlCGYRhGWWICZRiGYZQlJlCGYRhGWWICZRiGYZQlJlCGYRhGWWICZRiGYZQlJRUoEblARFREBvj7IiI3iEidiLwgIgeV0j7DMAyjdJRMoERkH+DLwDvO4WOA/fztLGB+CUwrODZprGEYRvaU0oP6GXAR4C5IdSKwSD2eBPqKyJ4lsa5A2MzmhmEYuVESgRKRE4D3VPX50Km9gHed/RX+sag8zhKRWhGpXb16dZEszR+b2dwwDCM3KouVsYj8FfhExKnLgEuBr0RdFnEscslfVb0FuAW8FXVzNLNNMHEyDMPInqIJlKoeFXVcRA4EhgDPiwjA3sAzInIInse0j5N8b2BlsWw0DMMwypc27+JT1RdVdXdVHayqg/FE6SBV/QC4DzjDj+b7HLBOVd9vaxsNwzCM0lM0DypHHgSOBeqATcC3SmuOYRiGUSpKLlC+FxV8VuA7pbPGMAzDKBdsJgnDMAyjLDGBMgzDMMoSEyjDMAyjLBFv2Kd9IyKrgbdzvHwAsKaA5hQDs7EwmI2FwWzMn3K3D4pr476qOjBTog4hUPkgIrWqOq7UdqTDbCwMZmNhMBvzp9ztg/Kw0br4DMMwjLLEBMowDMMoS0yg/Pn8yhyzsTCYjYXBbMyfcrcPysDGTj8GZRiGYZQn5kEZhmEYZYkJlGEYhlGWdGqBEpGjReQ1EakTkYtLbU8UIvKWiLwoIs+JSG2p7QEQkYUiskpEXnKO9RORpSLyhv+3qgxtvFJE3vPr8jkRObaE9u0jIo+KyCsi8m8R+Z5/vGzqMY2N5VSPPUTkaRF53pQGTB8AAAf1SURBVLfxh/7xISLylF+Pd4hItzK08TcistypxzGlstGxtUJEnhWRP/v7Ja3HTitQIlIB/BI4BjgAmCAiB5TWqli+pKpjSv1OgsNvgKNDxy4GalR1P6DG3y8lv2FnGwF+5tflGFV9sI1tcmkGzlfV/YHPAd/xf3/lVI9xNkL51ONW4AhVHQ2MAY72l+r5iW/jfkATMKUMbQS40KnH50pnYorvAa84+yWtx04rUMAhQJ2qvqmq24DfAyeW2KZ2gao+ATSGDp8I3OZ/vg04qU2NChFjY9mgqu+r6jP+5w14jcJelFE9prGxbFCPj/zdrv6mwBHAH/3jpa7HOBvLChHZG/gqcKu/L5S4HjuzQO0FvOvsr6DM/vl8FHhERJaJyFmlNiYNewSLS/p/dy+xPXF8V0Re8LsAS9oNGSAig4HPAk9RpvUYshHKqB79bqnngFXAUqAeWKuqzX6Skv9vh21U1aAef+zX489EpHsJTQS4DrgI2OHv96fE9diZBUoijpXdUw3wBVU9CK8r8jsi8sVSG9SOmQ8Mw+tmeR+4trTmgIjsBtwFfF9V15fanigibCyrelTVFlUdA+yN1zOyf1SytrUqVHjIRhEZBVwCjAAOBvoBPyiVfSJyHLBKVZe5hyOStmk9dmaBWgHs4+zvDawskS2xqOpK/+8q4B68f8By5EMR2RPA/7uqxPbshKp+6DcUO4BfUeK6FJGueA3/7ap6t3+4rOoxysZyq8cAVV0LPIY3XtZXRIIFWcvmf9ux8Wi/C1VVdSvwa0pbj18AThCRt/CGO47A86hKWo+dWaD+D9jPj1LpBpwG3Fdim1ohIruKSK/gM/AV4KX0V5WM+4DJ/ufJwL0ltCWSoOH3+RolrEu/f38B8IqqznNOlU09xtlYZvU4UET6+p97AkfhjZU9CpziJyt1PUbZ+KrzICJ4Yzslq0dVvURV9/ZXOD8N+JuqTqTE9dipZ5Lww2OvAyqAhar64xKb1AoRGYrnNQFUAovLwUYRWQIcjjcd/4fAFcCfgDuBQcA7wHhVLVmQQoyNh+N1SynwFnB2MN5TAvsOA/4OvMjHff6X4o3xlEU9prFxAuVTj5/BG7yvwHvgvlNVf+T/7/wer+vsWWCS76mUk41/AwbidaU9B5zjBFOUDBE5HLhAVY8rdT12aoEyDMMwypfO3MVnGIZhlDEmUIZhGEZZYgJlGIZhlCUmUIZhGEZZYgJlGIZhlCUmUEaHQ0S+JiIqIiMSpD1TRD6ZR1mHBzM/Rxxf588M/ZqIPOG/rR+cP0dEzsiQ73/kale+iMhnRSSYk+1KEbkgx3y6+fdemTm1YbTGBMroiEwA/oH3wmEmzgRyFqgM/F1VP6uqw4HzgF+IyJEAqnqTqi5Kc+3hQMkECu99p5/nm4k/EXMNcGreFhmdDhMoo0Phzxv3BbxlAU4LnbtIvLW1nheRq0XkFGAccLu/Hk9P8dbfGuCnHycij/mfDxGRf/ke0b9EZHg2dvlLKfwI+K6fX8orEZHzRORlf9LQ3/sTs54DTPft+k8ROV68dXmeFZG/isgeTj4LReQxEXlTRM5z7vcMP8/nReS3/rGBInKXiPyfv30hog57AZ9R1ecjzn1bRP7i19Vj/iSnT4i3ZtTBInK3eGsHXeVc9idgYjb1ZRjgzU5gGB2Jk4CHVPV1EWkUkYNU9RkROcY/d6iqbhKRfqraKCLfxXtrvhbAm3UmkleBL6pqs4gcBcwGTs7StmeACyOOXwwMUdWtItJXVdeKyE3AR6r6U9+uKuBzqqoi8j94s06f718/AvgS0At4TUTmA58GLsObbHiNiPTz016Pt77PP0RkEPAwO0+uOo6IaXf8uvoKcJJvK8A2Vf2ieIsZ3guMxVvmpF5EfqaqDX5eB2dZV4ZhAmV0OCbgTV8F3hQtE/CE4Sjg16q6CSCH6YP6ALeJyH54U/x0zcG2OPV7Ac+L+xOetxHF3sAd/vxt3YDlzrkH/OlntorIKmAP/HV8VHUNtLrfo4ADHCHuLSK9/PWeAvYEVofK/ybeBMsnqep253gwf+WLwL+DKY9E5E28yZgbVLVFRLZFlGMYabEuPqPDICL98RrmW8WblflC4FR/Mk4h2VIBzXz8f9HDOT4LeFRVRwHHh84l5bO0Xq004Kt4qzuPBZbFBBT8HPiFqh4InB0q350brQXvwTPufrsAn3dWcd0rQjQ2s/P9vQQMxhNKl6DsHSE7dtD6Abg7sCXCHsOIxQTK6EicAixS1X1VdbCq7oPnaRwGPAJUi8guAE6X1wa8rrGAt/CEAlp34fUB3vM/n5mtYf6EoTPxhMg93gXYR1Ufxeu26wvsFmGXW/5kMlMDfMMXbfd+H8EfB/OPj4m49hXgU6Fjz+IJ433ZRj36NqwOeV6GkRETKKMjMYGPZ38PuAs4XVUfwuuOqhVvZdMgbPo3wE1BkATwQ+B6Efk7njcSMBeYIyL/xJuVOgn/GYSZ4wnTeapaE0pTAfxORF7EE4Gf+WsG3Q98LQiSAK4E/uDbtSZTwar6b+DHwOMi8jwQLJdxHjDOD554GS8YI3ztq0AfP1jCPf4PvHp7IAgkSciXgAezSG8YgM1mbhhGBCIyHdigqrcWIK+7gUtU9bX8LTM6E+ZBGYYRxXxajynlhHiLgf7JxMnIBfOgDMMwjLLEPCjDMAyjLDGBMgzDMMoSEyjDMAyjLDGBMgzDMMoSEyjDMAyjLPn/VzRK4BGHv8MAAAAASUVORK5CYII=\n", - "text/plain": [ - "
" - ] - }, - "metadata": { - "needs_background": "light" - }, - "output_type": "display_data" - } - ], - "source": [ - "x, y = pd.Series(actual_distances, name=\"Actual Distance (km)\"), pd.Series(combined_approximations, name=\"Relative difference (%)\")\n", - "sns.regplot(x=x, y=y, marker='o', color='black', scatter_kws={'s':0.1})\n", - "\n", - "plt.title('Distance approximation error: combined')\n", - "plt.tight_layout()\n", - "plt.savefig('approximation_3.svg')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "geo2", - "language": "python", - "name": "geo2" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/src/analytics/footpaths/combined_pairs.json b/src/analytics/footpaths/combined_pairs.json deleted file mode 100644 index 4c37536f..00000000 --- a/src/analytics/footpaths/combined_pairs.json +++ /dev/null @@ -1 +0,0 @@ -[["https://data.delijn.be/stops/209590", "https://tec.openplanner.team/stops/H1mk115a"], ["http://irail.be/stations/NMBS/008822426", "https://data.delijn.be/stops/105134"], ["https://data.delijn.be/stops/401398", "https://mivb.openplanner.team/stops/1320"], ["https://data.delijn.be/stops/300894", "https://mivb.openplanner.team/stops/0430748"], ["https://data.delijn.be/stops/300933", "https://mivb.openplanner.team/stops/3420"], ["https://data.delijn.be/stops/408916", "https://tec.openplanner.team/stops/LFPdeme2"], ["http://irail.be/stations/NMBS/008893542", "https://data.delijn.be/stops/207593"], ["http://irail.be/stations/NMBS/008896909", "https://data.delijn.be/stops/508307"], ["http://irail.be/stations/NMBS/008863008", "https://tec.openplanner.team/stops/N501gab"], ["http://irail.be/stations/NMBS/008861440", "https://tec.openplanner.team/stops/N527afa"], ["https://data.delijn.be/stops/302393", "https://tec.openplanner.team/stops/Bpecvme2"], ["https://data.delijn.be/stops/300849", "https://mivb.openplanner.team/stops/2854"], ["https://data.delijn.be/stops/301134", "https://tec.openplanner.team/stops/Buccdef2"], ["https://data.delijn.be/stops/307813", "https://mivb.openplanner.team/stops/2029"], ["http://irail.be/stations/NMBS/008861531", "https://tec.openplanner.team/stops/Bblmcel1"], ["https://data.delijn.be/stops/303121", "https://mivb.openplanner.team/stops/5964"], ["https://data.delijn.be/stops/408893", "https://tec.openplanner.team/stops/LFMvoge2"], ["https://data.delijn.be/stops/307498", "https://tec.openplanner.team/stops/Bixepla2"], ["https://data.delijn.be/stops/305915", "https://mivb.openplanner.team/stops/1196"], ["https://data.delijn.be/stops/300743", "https://mivb.openplanner.team/stops/2257G"], ["https://data.delijn.be/stops/305269", "https://mivb.openplanner.team/stops/2822"], ["http://irail.be/stations/NMBS/008892288", "https://data.delijn.be/stops/508111"], ["http://irail.be/stations/NMBS/008895869", "https://data.delijn.be/stops/207503"], ["http://irail.be/stations/NMBS/008893179", "https://data.delijn.be/stops/211086"], ["https://data.delijn.be/stops/302409", "https://mivb.openplanner.team/stops/7660209"], ["https://data.delijn.be/stops/410141", "https://tec.openplanner.team/stops/Lrcstad2"], ["https://data.delijn.be/stops/300811", "https://mivb.openplanner.team/stops/4130F"], ["https://data.delijn.be/stops/504772", "https://tec.openplanner.team/stops/H4wn130b"], ["https://data.delijn.be/stops/307722", "https://tec.openplanner.team/stops/Bwaucan1"], ["https://data.delijn.be/stops/208177", "https://tec.openplanner.team/stops/H5wo130a"], ["https://data.delijn.be/stops/305233", "https://mivb.openplanner.team/stops/9607"], ["http://irail.be/stations/NMBS/008872587", "https://tec.openplanner.team/stops/Btanbth1"], ["https://mivb.openplanner.team/stops/4342", "https://tec.openplanner.team/stops/Bwbfeta2"], ["http://irail.be/stations/NMBS/008872553", "https://tec.openplanner.team/stops/Btileco2"], ["http://irail.be/stations/NMBS/008896735", "https://data.delijn.be/stops/505970"], ["http://irail.be/stations/NMBS/008400526", "https://data.delijn.be/stops/104348"], ["https://data.delijn.be/stops/301048", "https://mivb.openplanner.team/stops/4655"], ["http://irail.be/stations/NMBS/008874054", "https://tec.openplanner.team/stops/Ccipier2"], ["http://irail.be/stations/NMBS/008892601", "https://data.delijn.be/stops/208237"], ["https://data.delijn.be/stops/408875", "https://tec.openplanner.team/stops/LVu03--2"], ["https://mivb.openplanner.team/stops/2152", "https://tec.openplanner.team/stops/Buccplj1"], ["https://data.delijn.be/stops/305430", "https://mivb.openplanner.team/stops/1631"], ["https://data.delijn.be/stops/303580", "https://mivb.openplanner.team/stops/9726"], ["http://irail.be/stations/NMBS/008833308", "https://data.delijn.be/stops/305202"], ["http://irail.be/stations/NMBS/008728687", "https://tec.openplanner.team/stops/H4bx167a"], ["https://data.delijn.be/stops/304116", "https://tec.openplanner.team/stops/Blmlvex2"], ["https://data.delijn.be/stops/300939", "https://mivb.openplanner.team/stops/3280"], ["http://irail.be/stations/NMBS/008811247", "https://data.delijn.be/stops/305550"], ["http://irail.be/stations/NMBS/008884335", "https://tec.openplanner.team/stops/H1qv111b"], ["http://irail.be/stations/NMBS/008871308", "https://tec.openplanner.team/stops/Clusncb1"], ["https://data.delijn.be/stops/302871", "https://mivb.openplanner.team/stops/2140"], ["https://data.delijn.be/stops/307636", "https://mivb.openplanner.team/stops/2702"], ["https://data.delijn.be/stops/504299", "https://tec.openplanner.team/stops/H4mo151a"], ["https://data.delijn.be/stops/405714", "https://tec.openplanner.team/stops/Llghoch3"], ["https://data.delijn.be/stops/208408", "https://tec.openplanner.team/stops/H5rx145a"], ["https://data.delijn.be/stops/300789", "https://mivb.openplanner.team/stops/1486B"], ["http://irail.be/stations/NMBS/008400280", "https://data.delijn.be/stops/501409"], ["https://data.delijn.be/stops/301130", "https://mivb.openplanner.team/stops/2136"], ["http://irail.be/stations/NMBS/008821543", "https://data.delijn.be/stops/109060"], ["http://irail.be/stations/NMBS/008863404", "https://tec.openplanner.team/stops/N506bma"], ["http://irail.be/stations/NMBS/008881406", "https://tec.openplanner.team/stops/H1ob330a"], ["https://data.delijn.be/stops/301928", "https://mivb.openplanner.team/stops/2022"], ["https://data.delijn.be/stops/301016", "https://mivb.openplanner.team/stops/4109"], ["https://data.delijn.be/stops/307696", "https://tec.openplanner.team/stops/Brsgsan1"], ["https://data.delijn.be/stops/208178", "https://tec.openplanner.team/stops/H5el100b"], ["http://irail.be/stations/NMBS/008832664", "https://data.delijn.be/stops/402851"], ["http://irail.be/stations/NMBS/008893252", "https://data.delijn.be/stops/203297"], ["https://data.delijn.be/stops/306912", "https://tec.openplanner.team/stops/Bbosgar1"], ["https://data.delijn.be/stops/307973", "https://tec.openplanner.team/stops/Bwavcar1"], ["https://data.delijn.be/stops/508772", "https://tec.openplanner.team/stops/H4eh100b"], ["https://data.delijn.be/stops/302446", "https://tec.openplanner.team/stops/Bzluqga2"], ["https://data.delijn.be/stops/302444", "https://tec.openplanner.team/stops/Bsrgm101"], ["https://mivb.openplanner.team/stops/3508", "https://tec.openplanner.team/stops/Bixlfla1"], ["https://mivb.openplanner.team/stops/2753", "https://tec.openplanner.team/stops/Baudhde1"], ["https://data.delijn.be/stops/304962", "https://mivb.openplanner.team/stops/9784B"], ["https://data.delijn.be/stops/301122", "https://tec.openplanner.team/stops/Buccdef1"], ["http://irail.be/stations/NMBS/008811726", "https://data.delijn.be/stops/305356"], ["http://irail.be/stations/NMBS/008814456", "https://mivb.openplanner.team/stops/5451F"], ["http://irail.be/stations/NMBS/008843067", "https://tec.openplanner.team/stops/Lsebrun4"], ["https://data.delijn.be/stops/300973", "https://mivb.openplanner.team/stops/1863"], ["https://data.delijn.be/stops/306049", "https://mivb.openplanner.team/stops/0536"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/503447"], ["https://data.delijn.be/stops/405730", "https://tec.openplanner.team/stops/Lrchype2"], ["https://data.delijn.be/stops/509739", "https://tec.openplanner.team/stops/H4mo206a"], ["https://data.delijn.be/stops/306284", "https://mivb.openplanner.team/stops/3201"], ["https://data.delijn.be/stops/301035", "https://mivb.openplanner.team/stops/42"], ["https://mivb.openplanner.team/stops/0140228", "https://tec.openplanner.team/stops/Bwolvan1"], ["http://irail.be/stations/NMBS/008811544", "https://tec.openplanner.team/stops/Blmlcar1"], ["https://data.delijn.be/stops/405456", "https://tec.openplanner.team/stops/LWHzave1"], ["http://irail.be/stations/NMBS/008871175", "https://tec.openplanner.team/stops/Cjxetri1"], ["https://data.delijn.be/stops/304580", "https://mivb.openplanner.team/stops/0430748"], ["https://data.delijn.be/stops/305425", "https://mivb.openplanner.team/stops/9577"], ["https://data.delijn.be/stops/304705", "https://tec.openplanner.team/stops/Baudtri1"], ["http://irail.be/stations/NMBS/008842663", "https://tec.openplanner.team/stops/LESgare*"], ["http://irail.be/stations/NMBS/008811429", "https://mivb.openplanner.team/stops/2080"], ["https://data.delijn.be/stops/307233", "https://mivb.openplanner.team/stops/4266"], ["http://irail.be/stations/NMBS/008865565", "https://tec.openplanner.team/stops/X850aoa"], ["http://irail.be/stations/NMBS/008869054", "https://tec.openplanner.team/stops/X626afa"], ["https://data.delijn.be/stops/208402", "https://tec.openplanner.team/stops/H5rx103a"], ["https://data.delijn.be/stops/302401", "https://mivb.openplanner.team/stops/1495"], ["https://data.delijn.be/stops/305224", "https://tec.openplanner.team/stops/H1mk108d"], ["https://mivb.openplanner.team/stops/6119F", "https://tec.openplanner.team/stops/Bixlfla2"], ["http://irail.be/stations/NMBS/008863115", "https://tec.openplanner.team/stops/N501jqa"], ["https://mivb.openplanner.team/stops/2752", "https://tec.openplanner.team/stops/Baudulb2"], ["http://irail.be/stations/NMBS/008884319", "https://tec.openplanner.team/stops/H1bo105a"], ["http://irail.be/stations/NMBS/008882107", "https://tec.openplanner.team/stops/H2ll258a"], ["http://irail.be/stations/NMBS/008811676", "https://tec.openplanner.team/stops/Bllncom1"], ["https://data.delijn.be/stops/306312", "https://mivb.openplanner.team/stops/1110"], ["https://data.delijn.be/stops/303650", "https://mivb.openplanner.team/stops/1273"], ["https://data.delijn.be/stops/307147", "https://tec.openplanner.team/stops/Bhaless1"], ["https://data.delijn.be/stops/301400", "https://mivb.openplanner.team/stops/9683"], ["http://irail.be/stations/NMBS/008811916", "https://mivb.openplanner.team/stops/8062"], ["https://data.delijn.be/stops/307035", "https://tec.openplanner.team/stops/Balssvi2"], ["https://data.delijn.be/stops/401401", "https://mivb.openplanner.team/stops/3207"], ["https://data.delijn.be/stops/208190", "https://tec.openplanner.team/stops/H5rx126b"], ["http://irail.be/stations/NMBS/008814209", "https://tec.openplanner.team/stops/Bnivath1"], ["https://data.delijn.be/stops/407203", "https://tec.openplanner.team/stops/LHThall4"], ["https://data.delijn.be/stops/303832", "https://mivb.openplanner.team/stops/4253"], ["https://data.delijn.be/stops/406368", "https://tec.openplanner.team/stops/LMaburg4"], ["https://mivb.openplanner.team/stops/1160", "https://tec.openplanner.team/stops/Bbxltou1"], ["https://data.delijn.be/stops/410319", "https://tec.openplanner.team/stops/LPldoua4"], ["http://irail.be/stations/NMBS/008400280", "https://data.delijn.be/stops/501412"], ["https://data.delijn.be/stops/308447", "https://tec.openplanner.team/stops/Bovecha1"], ["https://data.delijn.be/stops/300062", "https://tec.openplanner.team/stops/Btubcal1"], ["http://irail.be/stations/NMBS/008872520", "https://tec.openplanner.team/stops/Bsamegl2"], ["http://irail.be/stations/NMBS/008891116", "https://data.delijn.be/stops/507278"], ["https://mivb.openplanner.team/stops/1497B", "https://tec.openplanner.team/stops/Bbxltou1"], ["http://irail.be/stations/NMBS/008821147", "https://data.delijn.be/stops/104320"], ["https://data.delijn.be/stops/308819", "https://mivb.openplanner.team/stops/0410146"], ["http://irail.be/stations/NMBS/008811601", "https://tec.openplanner.team/stops/Bottgar5"], ["https://data.delijn.be/stops/308095", "https://tec.openplanner.team/stops/Bpiesta2"], ["https://data.delijn.be/stops/304147", "https://tec.openplanner.team/stops/Bbghpln1"], ["http://irail.be/stations/NMBS/008891264", "https://data.delijn.be/stops/507664"], ["http://irail.be/stations/NMBS/008843307", "https://tec.openplanner.team/stops/NL80afa"], ["http://irail.be/stations/NMBS/008200520", "https://tec.openplanner.team/stops/X626agb"], ["https://data.delijn.be/stops/300827", "https://mivb.openplanner.team/stops/2838"], ["http://irail.be/stations/NMBS/008864469", "https://tec.openplanner.team/stops/X982bua"], ["https://mivb.openplanner.team/stops/1828", "https://tec.openplanner.team/stops/Bwolkra2"], ["https://data.delijn.be/stops/300938", "https://mivb.openplanner.team/stops/1303"], ["http://irail.be/stations/NMBS/008842846", "https://tec.openplanner.team/stops/LHaxhor1"], ["https://data.delijn.be/stops/408810", "https://tec.openplanner.team/stops/LVIdeva1"], ["https://mivb.openplanner.team/stops/5269F", "https://tec.openplanner.team/stops/Baudwav2"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Clb4dgi1"], ["https://data.delijn.be/stops/401418", "https://mivb.openplanner.team/stops/1321"], ["http://irail.be/stations/NMBS/008893534", "https://data.delijn.be/stops/207402"], ["http://irail.be/stations/NMBS/008865300", "https://tec.openplanner.team/stops/X804bwa"], ["http://irail.be/stations/NMBS/008842838", "https://tec.openplanner.team/stops/LCTmonu1"], ["https://data.delijn.be/stops/305243", "https://mivb.openplanner.team/stops/9780"], ["https://data.delijn.be/stops/300742", "https://mivb.openplanner.team/stops/7710204"], ["http://irail.be/stations/NMBS/008895620", "https://data.delijn.be/stops/307600"], ["https://data.delijn.be/stops/307193", "https://tec.openplanner.team/stops/Bhalark2"], ["https://data.delijn.be/stops/404091", "https://tec.openplanner.team/stops/LCRabbe1"], ["https://data.delijn.be/stops/302885", "https://tec.openplanner.team/stops/Bhevgro2"], ["https://data.delijn.be/stops/305174", "https://tec.openplanner.team/stops/Bwaveur2"], ["https://data.delijn.be/stops/408825", "https://tec.openplanner.team/stops/LMgwith2"], ["http://irail.be/stations/NMBS/008861135", "https://tec.openplanner.team/stops/N551aja"], ["https://data.delijn.be/stops/301301", "https://mivb.openplanner.team/stops/1483"], ["https://data.delijn.be/stops/408585", "https://tec.openplanner.team/stops/LCRabbe1"], ["https://data.delijn.be/stops/300941", "https://mivb.openplanner.team/stops/3204"], ["https://data.delijn.be/stops/300833", "https://mivb.openplanner.team/stops/2323"], ["http://irail.be/stations/NMBS/008861416", "https://tec.openplanner.team/stops/Blnzcar1"], ["https://data.delijn.be/stops/504241", "https://tec.openplanner.team/stops/H4co105a"], ["http://irail.be/stations/NMBS/008844347", "https://tec.openplanner.team/stops/Lhufays1"], ["http://irail.be/stations/NMBS/008822459", "https://data.delijn.be/stops/300670"], ["http://irail.be/stations/NMBS/008812237", "https://data.delijn.be/stops/306149"], ["https://data.delijn.be/stops/301118", "https://mivb.openplanner.team/stops/5656"], ["https://mivb.openplanner.team/stops/5229F", "https://tec.openplanner.team/stops/Bwolrod1"], ["http://irail.be/stations/NMBS/008892205", "https://data.delijn.be/stops/502807"], ["https://data.delijn.be/stops/300770", "https://mivb.openplanner.team/stops/6860G"], ["https://data.delijn.be/stops/300897", "https://mivb.openplanner.team/stops/2895"], ["https://data.delijn.be/stops/410154", "https://mivb.openplanner.team/stops/1316"], ["https://data.delijn.be/stops/303994", "https://tec.openplanner.team/stops/Bhaawdr1"], ["https://data.delijn.be/stops/304190", "https://mivb.openplanner.team/stops/3017"], ["http://irail.be/stations/NMBS/008814134", "https://mivb.openplanner.team/stops/5817F"], ["https://data.delijn.be/stops/300980", "https://mivb.openplanner.team/stops/1513"], ["http://irail.be/stations/NMBS/008728654", "https://tec.openplanner.team/stops/H4tg163a"], ["http://irail.be/stations/NMBS/008844628", "https://tec.openplanner.team/stops/LeUhook2"], ["http://irail.be/stations/NMBS/008874609", "https://tec.openplanner.team/stops/N543cbb"], ["http://irail.be/stations/NMBS/008812021", "https://mivb.openplanner.team/stops/7790556"], ["http://irail.be/stations/NMBS/008891611", "https://data.delijn.be/stops/505835"], ["http://irail.be/stations/NMBS/008843158", "https://tec.openplanner.team/stops/Ljegare1"], ["https://data.delijn.be/stops/304641", "https://mivb.openplanner.team/stops/1606"], ["http://irail.be/stations/NMBS/008886041", "https://tec.openplanner.team/stops/H5ma180a"], ["http://irail.be/stations/NMBS/008883006", "https://tec.openplanner.team/stops/H3br112a"], ["https://data.delijn.be/stops/305324", "https://mivb.openplanner.team/stops/9627"], ["http://irail.be/stations/NMBS/008896305", "https://data.delijn.be/stops/503547"], ["http://irail.be/stations/NMBS/008886587", "https://tec.openplanner.team/stops/H5at122a"], ["https://data.delijn.be/stops/306915", "https://tec.openplanner.team/stops/Btiegoo2"], ["https://data.delijn.be/stops/505828", "https://tec.openplanner.team/stops/H4mo165a"], ["https://data.delijn.be/stops/403773", "https://tec.openplanner.team/stops/LLnlimb2"], ["https://mivb.openplanner.team/stops/1640B", "https://tec.openplanner.team/stops/Bwolvan1"], ["https://data.delijn.be/stops/302421", "https://tec.openplanner.team/stops/Bmlngch1"], ["https://data.delijn.be/stops/300789", "https://mivb.openplanner.team/stops/3718"], ["http://irail.be/stations/NMBS/008866530", "https://tec.openplanner.team/stops/X617aha"], ["https://data.delijn.be/stops/407216", "https://tec.openplanner.team/stops/LHecime2"], ["https://data.delijn.be/stops/300890", "https://mivb.openplanner.team/stops/2814"], ["http://irail.be/stations/NMBS/008822053", "https://data.delijn.be/stops/305874"], ["https://mivb.openplanner.team/stops/2701", "https://tec.openplanner.team/stops/Bucccal3"], ["http://irail.be/stations/NMBS/008814167", "https://data.delijn.be/stops/307651"], ["http://irail.be/stations/NMBS/008833001", "https://data.delijn.be/stops/303148"], ["https://data.delijn.be/stops/302192", "https://tec.openplanner.team/stops/Bbeagae2"], ["https://data.delijn.be/stops/300781", "https://mivb.openplanner.team/stops/2564"], ["https://data.delijn.be/stops/405311", "https://tec.openplanner.team/stops/Blankal3"], ["https://data.delijn.be/stops/408805", "https://tec.openplanner.team/stops/LVIgare2"], ["http://irail.be/stations/NMBS/008814209", "https://tec.openplanner.team/stops/Bnivga62"], ["http://irail.be/stations/NMBS/008895257", "https://data.delijn.be/stops/208691"], ["http://irail.be/stations/NMBS/008811718", "https://tec.openplanner.team/stops/Bbgevil1"], ["http://irail.be/stations/NMBS/008811635", "https://tec.openplanner.team/stops/Blimegl1"], ["http://irail.be/stations/NMBS/008891405", "https://data.delijn.be/stops/506620"], ["https://data.delijn.be/stops/301688", "https://tec.openplanner.team/stops/Bhaawdr1"], ["http://irail.be/stations/NMBS/008891140", "https://data.delijn.be/stops/203303"], ["http://irail.be/stations/NMBS/008861333", "https://tec.openplanner.team/stops/N531anb"], ["http://irail.be/stations/NMBS/008882248", "https://tec.openplanner.team/stops/Cptrebe2"], ["https://data.delijn.be/stops/300785", "https://mivb.openplanner.team/stops/2535F"], ["http://irail.be/stations/NMBS/008872579", "https://tec.openplanner.team/stops/Bvlvbth2"], ["http://irail.be/stations/NMBS/008842853", "https://tec.openplanner.team/stops/LHaeg--1"], ["http://irail.be/stations/NMBS/008811304", "https://mivb.openplanner.team/stops/1728"], ["https://data.delijn.be/stops/302855", "https://tec.openplanner.team/stops/LWscona2"], ["http://irail.be/stations/NMBS/008895752", "https://data.delijn.be/stops/206713"], ["https://data.delijn.be/stops/306000", "https://tec.openplanner.team/stops/Brsregl2"], ["http://irail.be/stations/NMBS/008400219", "https://tec.openplanner.team/stops/LLApavi1"], ["https://data.delijn.be/stops/408976", "https://tec.openplanner.team/stops/LWAalou2"], ["https://data.delijn.be/stops/333234", "https://mivb.openplanner.team/stops/7830352"], ["https://data.delijn.be/stops/308722", "https://tec.openplanner.team/stops/Bgoesch1"], ["http://irail.be/stations/NMBS/008891405", "https://data.delijn.be/stops/501687"], ["https://data.delijn.be/stops/307250", "https://mivb.openplanner.team/stops/9979B"], ["http://irail.be/stations/NMBS/008821105", "https://data.delijn.be/stops/102286"], ["https://data.delijn.be/stops/408878", "https://tec.openplanner.team/stops/LFMkrut1"], ["http://irail.be/stations/NMBS/008200100", "https://tec.openplanner.team/stops/X685acb"], ["https://data.delijn.be/stops/301414", "https://tec.openplanner.team/stops/H1en106b"], ["https://data.delijn.be/stops/305237", "https://tec.openplanner.team/stops/Bspkdon2"], ["http://irail.be/stations/NMBS/008873379", "https://tec.openplanner.team/stops/Ccstord1"], ["http://irail.be/stations/NMBS/008863354", "https://tec.openplanner.team/stops/N501kpb"], ["https://data.delijn.be/stops/300389", "https://mivb.openplanner.team/stops/9678"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LMastat4"], ["https://data.delijn.be/stops/301061", "https://mivb.openplanner.team/stops/5089"], ["https://data.delijn.be/stops/407212", "https://tec.openplanner.team/stops/LHecime1"], ["https://mivb.openplanner.team/stops/2018", "https://tec.openplanner.team/stops/Bwbfhip1"], ["https://data.delijn.be/stops/302449", "https://tec.openplanner.team/stops/Bzluegl2"], ["http://irail.be/stations/NMBS/008811155", "https://mivb.openplanner.team/stops/3130"], ["https://data.delijn.be/stops/300769", "https://mivb.openplanner.team/stops/3802"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N203aca"], ["https://data.delijn.be/stops/302239", "https://tec.openplanner.team/stops/Blhupqu1"], ["https://mivb.openplanner.team/stops/1476", "https://tec.openplanner.team/stops/Bbxlple2"], ["http://irail.be/stations/NMBS/008822269", "https://data.delijn.be/stops/305605"], ["http://irail.be/stations/NMBS/008871837", "https://tec.openplanner.team/stops/Clddelh2"], ["https://data.delijn.be/stops/305263", "https://mivb.openplanner.team/stops/9783"], ["https://data.delijn.be/stops/400458", "https://tec.openplanner.team/stops/LEBeg--2"], ["http://irail.be/stations/NMBS/008822715", "https://data.delijn.be/stops/102593"], ["https://data.delijn.be/stops/308871", "https://mivb.openplanner.team/stops/6475F"], ["https://data.delijn.be/stops/207795", "https://tec.openplanner.team/stops/H5rx101b"], ["https://data.delijn.be/stops/302402", "https://mivb.openplanner.team/stops/6799F"], ["https://data.delijn.be/stops/308046", "https://tec.openplanner.team/stops/Bovetdo2"], ["https://data.delijn.be/stops/300979", "https://mivb.openplanner.team/stops/6365"], ["https://data.delijn.be/stops/307853", "https://mivb.openplanner.team/stops/4298"], ["http://irail.be/stations/NMBS/008895638", "https://data.delijn.be/stops/307296"], ["http://irail.be/stations/NMBS/008811270", "https://data.delijn.be/stops/302075"], ["http://irail.be/stations/NMBS/008843349", "https://tec.openplanner.team/stops/LAMvert1"], ["http://irail.be/stations/NMBS/008811817", "https://tec.openplanner.team/stops/Bottvtc1"], ["http://irail.be/stations/NMBS/008881125", "https://tec.openplanner.team/stops/H1gh165c"], ["https://data.delijn.be/stops/304463", "https://tec.openplanner.team/stops/Brsgtou2"], ["https://data.delijn.be/stops/410137", "https://tec.openplanner.team/stops/Lalverr2"], ["https://data.delijn.be/stops/308105", "https://tec.openplanner.team/stops/Bsrgegl2"], ["http://irail.be/stations/NMBS/008895802", "https://data.delijn.be/stops/207105"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/503707"], ["https://mivb.openplanner.team/stops/4292", "https://tec.openplanner.team/stops/Bwbfeta1"], ["http://irail.be/stations/NMBS/008814126", "https://mivb.openplanner.team/stops/2306"], ["https://data.delijn.be/stops/303949", "https://tec.openplanner.team/stops/Bbldass1"], ["http://irail.be/stations/NMBS/008841525", "https://tec.openplanner.team/stops/LlgOPER2"], ["http://irail.be/stations/NMBS/008822459", "https://data.delijn.be/stops/305830"], ["http://irail.be/stations/NMBS/008812005", "https://mivb.openplanner.team/stops/6413F"], ["https://data.delijn.be/stops/300392", "https://tec.openplanner.team/stops/Bhalh312"], ["https://data.delijn.be/stops/504380", "https://tec.openplanner.team/stops/H4pl115b"], ["http://irail.be/stations/NMBS/008885522", "https://tec.openplanner.team/stops/H4ag100a"], ["https://data.delijn.be/stops/300623", "https://tec.openplanner.team/stops/Bbeapim2"], ["https://data.delijn.be/stops/408447", "https://tec.openplanner.team/stops/LCAeg--1"], ["https://data.delijn.be/stops/300957", "https://tec.openplanner.team/stops/Baudulb2"], ["http://irail.be/stations/NMBS/008832433", "https://data.delijn.be/stops/401934"], ["http://irail.be/stations/NMBS/008844545", "https://tec.openplanner.team/stops/LDOviad2"], ["https://mivb.openplanner.team/stops/5261", "https://tec.openplanner.team/stops/Bettgar1"], ["https://data.delijn.be/stops/208011", "https://tec.openplanner.team/stops/H5fl101a"], ["https://data.delijn.be/stops/308128", "https://tec.openplanner.team/stops/Bgoekaz2"], ["http://irail.be/stations/NMBS/008833050", "https://data.delijn.be/stops/301426"], ["http://irail.be/stations/NMBS/008821337", "https://data.delijn.be/stops/107243"], ["https://data.delijn.be/stops/300774", "https://mivb.openplanner.team/stops/2375"], ["https://data.delijn.be/stops/300798", "https://mivb.openplanner.team/stops/2218F"], ["http://irail.be/stations/NMBS/008844339", "https://tec.openplanner.team/stops/LTHperr2"], ["http://irail.be/stations/NMBS/008841467", "https://tec.openplanner.team/stops/LFHsucr1"], ["https://data.delijn.be/stops/302793", "https://mivb.openplanner.team/stops/1668"], ["https://data.delijn.be/stops/401409", "https://mivb.openplanner.team/stops/8081"], ["http://irail.be/stations/NMBS/008865615", "https://tec.openplanner.team/stops/N347acb"], ["http://irail.be/stations/NMBS/008811734", "https://data.delijn.be/stops/304817"], ["http://irail.be/stations/NMBS/008844206", "https://tec.openplanner.team/stops/Lpeptwa2"], ["https://data.delijn.be/stops/307976", "https://tec.openplanner.team/stops/Bwavfbe1"], ["https://data.delijn.be/stops/303832", "https://mivb.openplanner.team/stops/6604F"], ["https://data.delijn.be/stops/300880", "https://mivb.openplanner.team/stops/4956"], ["https://data.delijn.be/stops/304096", "https://tec.openplanner.team/stops/Bove4ko2"], ["http://irail.be/stations/NMBS/008865300", "https://tec.openplanner.team/stops/X804alb"], ["http://irail.be/stations/NMBS/008881430", "https://tec.openplanner.team/stops/H1ha189b"], ["http://irail.be/stations/NMBS/008719203", "https://tec.openplanner.team/stops/X610aja"], ["http://irail.be/stations/NMBS/008883311", "https://data.delijn.be/stops/301418"], ["http://irail.be/stations/NMBS/008811536", "https://tec.openplanner.team/stops/Brixpla1"], ["https://data.delijn.be/stops/308729", "https://tec.openplanner.team/stops/Bhakmkr2"], ["http://irail.be/stations/NMBS/008843166", "https://tec.openplanner.team/stops/Lfhxhor2"], ["http://irail.be/stations/NMBS/008822160", "https://data.delijn.be/stops/207701"], ["https://data.delijn.be/stops/304207", "https://tec.openplanner.team/stops/Brsrpch2"], ["https://mivb.openplanner.team/stops/19", "https://tec.openplanner.team/stops/Bbxltou1"], ["https://mivb.openplanner.team/stops/1714", "https://tec.openplanner.team/stops/Bettbue2"], ["https://data.delijn.be/stops/503332", "https://tec.openplanner.team/stops/H4eh100b"], ["https://data.delijn.be/stops/302141", "https://tec.openplanner.team/stops/Bptecal2"], ["https://data.delijn.be/stops/305520", "https://mivb.openplanner.team/stops/1381"], ["https://data.delijn.be/stops/304090", "https://tec.openplanner.team/stops/Bovesol2"], ["http://irail.be/stations/NMBS/008841558", "https://tec.openplanner.team/stops/Llgerac1"], ["http://irail.be/stations/NMBS/008400280", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/301418", "https://tec.openplanner.team/stops/Benggar1"], ["http://irail.be/stations/NMBS/008895232", "https://data.delijn.be/stops/208954"], ["http://irail.be/stations/NMBS/008833209", "https://data.delijn.be/stops/108612"], ["http://irail.be/stations/NMBS/008821535", "https://data.delijn.be/stops/102082"], ["http://irail.be/stations/NMBS/008885704", "https://data.delijn.be/stops/504322"], ["http://irail.be/stations/NMBS/008864469", "https://tec.openplanner.team/stops/X982bca"], ["https://data.delijn.be/stops/301121", "https://tec.openplanner.team/stops/Buccdef1"], ["https://mivb.openplanner.team/stops/5265F", "https://tec.openplanner.team/stops/Bettbue2"], ["http://irail.be/stations/NMBS/008893542", "https://data.delijn.be/stops/202240"], ["https://data.delijn.be/stops/400485", "https://tec.openplanner.team/stops/LRGcana2"], ["http://irail.be/stations/NMBS/008864337", "https://tec.openplanner.team/stops/X994afa"], ["https://data.delijn.be/stops/307974", "https://tec.openplanner.team/stops/Bwavfol2"], ["https://data.delijn.be/stops/300983", "https://mivb.openplanner.team/stops/5867F"], ["https://data.delijn.be/stops/302427", "https://tec.openplanner.team/stops/Bjodrrg1"], ["https://mivb.openplanner.team/stops/1876", "https://tec.openplanner.team/stops/Bsgicfo1"], ["https://data.delijn.be/stops/408925", "https://tec.openplanner.team/stops/LTEnuro1"], ["http://irail.be/stations/NMBS/008845005", "https://tec.openplanner.team/stops/X790akc"], ["http://irail.be/stations/NMBS/008822145", "https://data.delijn.be/stops/207741"], ["https://data.delijn.be/stops/504772", "https://tec.openplanner.team/stops/H4wn124a"], ["http://irail.be/stations/NMBS/008015345", "https://tec.openplanner.team/stops/LaAnorm1"], ["http://irail.be/stations/NMBS/008891645", "https://data.delijn.be/stops/501659"], ["https://data.delijn.be/stops/305448", "https://mivb.openplanner.team/stops/1904"], ["https://data.delijn.be/stops/410143", "https://tec.openplanner.team/stops/Llgverg1"], ["http://irail.be/stations/NMBS/008843430", "https://tec.openplanner.team/stops/LBsfer-1"], ["http://irail.be/stations/NMBS/008864931", "https://tec.openplanner.team/stops/N235aga"], ["http://irail.be/stations/NMBS/008833126", "https://data.delijn.be/stops/302886"], ["https://data.delijn.be/stops/304600", "https://mivb.openplanner.team/stops/1382"], ["https://data.delijn.be/stops/302886", "https://tec.openplanner.team/stops/Bhevgro2"], ["http://irail.be/stations/NMBS/008895646", "https://data.delijn.be/stops/305238"], ["https://data.delijn.be/stops/408856", "https://tec.openplanner.team/stops/LFChuis1"], ["http://irail.be/stations/NMBS/008400131", "https://data.delijn.be/stops/108024"], ["http://irail.be/stations/NMBS/008811106", "https://mivb.openplanner.team/stops/3448B"], ["https://data.delijn.be/stops/307086", "https://tec.openplanner.team/stops/Btiegoo2"], ["http://irail.be/stations/NMBS/008728686", "https://tec.openplanner.team/stops/H4rx143b"], ["https://data.delijn.be/stops/209591", "https://tec.openplanner.team/stops/H1en101b"], ["https://data.delijn.be/stops/509292", "https://tec.openplanner.team/stops/H4mo208a"], ["https://data.delijn.be/stops/305353", "https://tec.openplanner.team/stops/Blmlvex2"], ["https://data.delijn.be/stops/308725", "https://tec.openplanner.team/stops/Bgoevli1"], ["https://mivb.openplanner.team/stops/1762", "https://tec.openplanner.team/stops/Bettcha1"], ["https://data.delijn.be/stops/307030", "https://tec.openplanner.team/stops/Balssvi1"], ["https://data.delijn.be/stops/301038", "https://mivb.openplanner.team/stops/8744"], ["https://data.delijn.be/stops/301156", "https://tec.openplanner.team/stops/Buccpor2"], ["https://data.delijn.be/stops/303660", "https://tec.openplanner.team/stops/Blkbavo2"], ["https://data.delijn.be/stops/308853", "https://mivb.openplanner.team/stops/5003"], ["http://irail.be/stations/NMBS/008822228", "https://data.delijn.be/stops/109508"], ["http://irail.be/stations/NMBS/008884632", "https://tec.openplanner.team/stops/H1po133a"], ["http://irail.be/stations/NMBS/008811635", "https://tec.openplanner.team/stops/Bottbou2"], ["http://irail.be/stations/NMBS/008821436", "https://data.delijn.be/stops/104306"], ["http://irail.be/stations/NMBS/008863867", "https://tec.openplanner.team/stops/N308aha"], ["http://irail.be/stations/NMBS/008881570", "https://tec.openplanner.team/stops/H1fr127a"], ["http://irail.be/stations/NMBS/008842705", "https://tec.openplanner.team/stops/LCPconf2"], ["http://irail.be/stations/NMBS/008833175", "https://data.delijn.be/stops/303175"], ["http://irail.be/stations/NMBS/008200510", "https://tec.openplanner.team/stops/X685agb"], ["http://irail.be/stations/NMBS/008883808", "https://tec.openplanner.team/stops/Btubdeh2"], ["https://data.delijn.be/stops/301076", "https://mivb.openplanner.team/stops/3017"], ["https://mivb.openplanner.team/stops/1250", "https://tec.openplanner.team/stops/Buccdho1"], ["http://irail.be/stations/NMBS/008844339", "https://tec.openplanner.team/stops/LTHec--2"], ["https://data.delijn.be/stops/300918", "https://mivb.openplanner.team/stops/5044"], ["http://irail.be/stations/NMBS/008831781", "https://data.delijn.be/stops/402118"], ["http://irail.be/stations/NMBS/008814456", "https://mivb.openplanner.team/stops/4309"], ["https://data.delijn.be/stops/306912", "https://tec.openplanner.team/stops/Bbosgar2"], ["http://irail.be/stations/NMBS/008814209", "https://tec.openplanner.team/stops/Bnivrwi2"], ["http://irail.be/stations/NMBS/008821659", "https://data.delijn.be/stops/103136"], ["https://data.delijn.be/stops/404667", "https://tec.openplanner.team/stops/LJUmate1"], ["https://data.delijn.be/stops/300854", "https://mivb.openplanner.team/stops/0430948"], ["https://data.delijn.be/stops/406714", "https://tec.openplanner.team/stops/LRUhama1"], ["https://data.delijn.be/stops/300996", "https://mivb.openplanner.team/stops/2247"], ["http://irail.be/stations/NMBS/008811817", "https://tec.openplanner.team/stops/Bmoucnd2"], ["https://data.delijn.be/stops/300955", "https://mivb.openplanner.team/stops/2753"], ["https://mivb.openplanner.team/stops/8331", "https://tec.openplanner.team/stops/Bsgihmo1"], ["https://data.delijn.be/stops/504654", "https://tec.openplanner.team/stops/H4co162a"], ["https://data.delijn.be/stops/303223", "https://mivb.openplanner.team/stops/1479"], ["https://data.delijn.be/stops/400468", "https://tec.openplanner.team/stops/LEMeg--1"], ["http://irail.be/stations/NMBS/008843133", "https://tec.openplanner.team/stops/Lkivolg2"], ["https://data.delijn.be/stops/304442", "https://tec.openplanner.team/stops/Brsggar2"], ["http://irail.be/stations/NMBS/008833274", "https://data.delijn.be/stops/304428"], ["https://data.delijn.be/stops/504310", "https://tec.openplanner.team/stops/H4mo188a"], ["http://irail.be/stations/NMBS/008822715", "https://data.delijn.be/stops/102387"], ["https://data.delijn.be/stops/509452", "https://tec.openplanner.team/stops/H4mo133a"], ["https://data.delijn.be/stops/407772", "https://tec.openplanner.team/stops/LRmrode1"], ["https://data.delijn.be/stops/208186", "https://tec.openplanner.team/stops/H5rx135b"], ["https://data.delijn.be/stops/300833", "https://mivb.openplanner.team/stops/2518"], ["http://irail.be/stations/NMBS/008863842", "https://tec.openplanner.team/stops/N338aab"], ["https://data.delijn.be/stops/509738", "https://tec.openplanner.team/stops/H4mo195b"], ["https://data.delijn.be/stops/404662", "https://tec.openplanner.team/stops/LWinavi1"], ["http://irail.be/stations/NMBS/008811411", "https://data.delijn.be/stops/401415"], ["http://irail.be/stations/NMBS/008893815", "https://data.delijn.be/stops/202037"], ["https://data.delijn.be/stops/300773", "https://mivb.openplanner.team/stops/2373"], ["http://irail.be/stations/NMBS/008821816", "https://data.delijn.be/stops/104739"], ["http://irail.be/stations/NMBS/008845229", "https://tec.openplanner.team/stops/LCogara1"], ["https://data.delijn.be/stops/504295", "https://tec.openplanner.team/stops/H4lu127a"], ["http://irail.be/stations/NMBS/008832409", "https://data.delijn.be/stops/406795"], ["https://data.delijn.be/stops/301741", "https://mivb.openplanner.team/stops/9609"], ["https://data.delijn.be/stops/300906", "https://mivb.openplanner.team/stops/1913"], ["https://data.delijn.be/stops/401413", "https://mivb.openplanner.team/stops/4364"], ["http://irail.be/stations/NMBS/008811288", "https://data.delijn.be/stops/306340"], ["https://data.delijn.be/stops/407215", "https://tec.openplanner.team/stops/LHSfexh1"], ["https://data.delijn.be/stops/504317", "https://tec.openplanner.team/stops/H4mo207b"], ["https://data.delijn.be/stops/305208", "https://tec.openplanner.team/stops/Btiegma1"], ["https://mivb.openplanner.team/stops/5461F", "https://tec.openplanner.team/stops/Bixlozo1"], ["https://data.delijn.be/stops/300316", "https://tec.openplanner.team/stops/Bhmmcha1"], ["http://irail.be/stations/NMBS/008831765", "https://data.delijn.be/stops/402109"], ["http://irail.be/stations/NMBS/008871670", "https://tec.openplanner.team/stops/Clsghoy1"], ["https://data.delijn.be/stops/408920", "https://tec.openplanner.team/stops/LTEzinn2"], ["http://irail.be/stations/NMBS/008863362", "https://tec.openplanner.team/stops/N501cpa"], ["http://irail.be/stations/NMBS/008842051", "https://tec.openplanner.team/stops/Lcacaps2"], ["https://data.delijn.be/stops/408952", "https://tec.openplanner.team/stops/LWAor--1"], ["http://irail.be/stations/NMBS/008811148", "https://mivb.openplanner.team/stops/2899"], ["https://data.delijn.be/stops/303567", "https://mivb.openplanner.team/stops/3201"], ["https://data.delijn.be/stops/302400", "https://mivb.openplanner.team/stops/1490"], ["https://data.delijn.be/stops/404687", "https://tec.openplanner.team/stops/LWipaif1"], ["http://irail.be/stations/NMBS/008814308", "https://data.delijn.be/stops/301967"], ["https://mivb.openplanner.team/stops/5426", "https://tec.openplanner.team/stops/Baudhde1"], ["http://irail.be/stations/NMBS/008881315", "https://tec.openplanner.team/stops/H1ni323b"], ["https://data.delijn.be/stops/400467", "https://tec.openplanner.team/stops/LEMeg--1"], ["https://data.delijn.be/stops/305426", "https://mivb.openplanner.team/stops/5520F"], ["http://irail.be/stations/NMBS/008869047", "https://tec.openplanner.team/stops/X615afb"], ["https://data.delijn.be/stops/509534", "https://tec.openplanner.team/stops/H4wn126b"], ["http://irail.be/stations/NMBS/008889045", "https://tec.openplanner.team/stops/H4te249b"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bcsegal2"], ["https://data.delijn.be/stops/300920", "https://mivb.openplanner.team/stops/7271"], ["http://irail.be/stations/NMBS/008821089", "https://data.delijn.be/stops/101589"], ["http://irail.be/stations/NMBS/008728600", "https://tec.openplanner.team/stops/H4co142a"], ["http://irail.be/stations/NMBS/008893815", "https://data.delijn.be/stops/202986"], ["http://irail.be/stations/NMBS/008844230", "https://tec.openplanner.team/stops/LBachpl2"], ["https://data.delijn.be/stops/304168", "https://tec.openplanner.team/stops/Blemmar1"], ["http://irail.be/stations/NMBS/008821600", "https://data.delijn.be/stops/109664"], ["https://data.delijn.be/stops/308867", "https://tec.openplanner.team/stops/Bkrapri2"], ["http://irail.be/stations/NMBS/008843141", "https://tec.openplanner.team/stops/LjeGRPMD"], ["http://irail.be/stations/NMBS/008882230", "https://tec.openplanner.team/stops/H2mo144a"], ["http://irail.be/stations/NMBS/008863156", "https://tec.openplanner.team/stops/N539bfb"], ["http://irail.be/stations/NMBS/008886009", "https://tec.openplanner.team/stops/H5at116a"], ["http://irail.be/stations/NMBS/008811916", "https://mivb.openplanner.team/stops/6464"], ["https://data.delijn.be/stops/306396", "https://mivb.openplanner.team/stops/9726"], ["http://irail.be/stations/NMBS/008842648", "https://tec.openplanner.team/stops/LTIdonn1"], ["https://data.delijn.be/stops/407231", "https://tec.openplanner.team/stops/LORherl1"], ["http://irail.be/stations/NMBS/008861135", "https://tec.openplanner.team/stops/N533aca"], ["https://data.delijn.be/stops/303232", "https://tec.openplanner.team/stops/Bhevhha1"], ["https://data.delijn.be/stops/306816", "https://tec.openplanner.team/stops/Balsnie2"], ["https://mivb.openplanner.team/stops/2138B", "https://tec.openplanner.team/stops/Buccvoi2"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1ju119b"], ["https://data.delijn.be/stops/304446", "https://tec.openplanner.team/stops/Brsgleq1"], ["https://data.delijn.be/stops/308991", "https://tec.openplanner.team/stops/Balsnay2"], ["https://data.delijn.be/stops/300803", "https://mivb.openplanner.team/stops/2252"], ["https://data.delijn.be/stops/306930", "https://tec.openplanner.team/stops/Bgoevli1"], ["https://data.delijn.be/stops/509740", "https://tec.openplanner.team/stops/H4mo195b"], ["http://irail.be/stations/NMBS/008842838", "https://tec.openplanner.team/stops/LCPbatt1"], ["https://data.delijn.be/stops/300961", "https://mivb.openplanner.team/stops/0260137"], ["https://data.delijn.be/stops/302132", "https://tec.openplanner.team/stops/Bptemch2"], ["https://mivb.openplanner.team/stops/5826", "https://tec.openplanner.team/stops/Bucccre2"], ["http://irail.be/stations/NMBS/008874716", "https://tec.openplanner.team/stops/Causncb2"], ["http://irail.be/stations/NMBS/008811510", "https://tec.openplanner.team/stops/Blhupcl2"], ["https://data.delijn.be/stops/300810", "https://mivb.openplanner.team/stops/4266"], ["https://data.delijn.be/stops/408847", "https://tec.openplanner.team/stops/LRmrode2"], ["https://data.delijn.be/stops/408893", "https://tec.openplanner.team/stops/LDpulve2"], ["https://data.delijn.be/stops/209180", "https://tec.openplanner.team/stops/H5el101b"], ["http://irail.be/stations/NMBS/008845203", "https://tec.openplanner.team/stops/LTPpreh2"], ["https://data.delijn.be/stops/408951", "https://tec.openplanner.team/stops/LWApr%C3%A9s4"], ["http://irail.be/stations/NMBS/008811007", "https://mivb.openplanner.team/stops/5320"], ["https://data.delijn.be/stops/300999", "https://mivb.openplanner.team/stops/6419F"], ["http://irail.be/stations/NMBS/008896503", "https://data.delijn.be/stops/500949"], ["https://data.delijn.be/stops/304153", "https://tec.openplanner.team/stops/Blempuc2"], ["http://irail.be/stations/NMBS/008849023", "https://tec.openplanner.team/stops/LkEschi2"], ["https://data.delijn.be/stops/408863", "https://tec.openplanner.team/stops/LFCscho2"], ["https://data.delijn.be/stops/405430", "https://tec.openplanner.team/stops/Bezeksj1"], ["http://irail.be/stations/NMBS/008843901", "https://tec.openplanner.team/stops/Ljulieg2"], ["http://irail.be/stations/NMBS/008891165", "https://data.delijn.be/stops/209650"], ["https://data.delijn.be/stops/307676", "https://tec.openplanner.team/stops/Bbghepi2"], ["https://data.delijn.be/stops/304012", "https://tec.openplanner.team/stops/Boveker1"], ["https://data.delijn.be/stops/300801", "https://mivb.openplanner.team/stops/3854B"], ["http://irail.be/stations/NMBS/008821444", "https://data.delijn.be/stops/102236"], ["http://irail.be/stations/NMBS/008892007", "https://data.delijn.be/stops/205915"], ["http://irail.be/stations/NMBS/007015440", "https://data.delijn.be/stops/501170"], ["http://irail.be/stations/NMBS/008865565", "https://tec.openplanner.team/stops/X850aga"], ["https://data.delijn.be/stops/307605", "https://tec.openplanner.team/stops/Bspkkhe1"], ["http://irail.be/stations/NMBS/008892288", "https://data.delijn.be/stops/507685"], ["https://data.delijn.be/stops/303246", "https://tec.openplanner.team/stops/Blkbbeu1"], ["https://data.delijn.be/stops/307003", "https://tec.openplanner.team/stops/Blkbbvh2"], ["http://irail.be/stations/NMBS/008893542", "https://data.delijn.be/stops/200088"], ["https://mivb.openplanner.team/stops/1724", "https://tec.openplanner.team/stops/Baudsta2"], ["https://mivb.openplanner.team/stops/1915", "https://tec.openplanner.team/stops/Buccbas1"], ["https://data.delijn.be/stops/305226", "https://mivb.openplanner.team/stops/1143"], ["http://irail.be/stations/NMBS/008891157", "https://data.delijn.be/stops/211068"], ["https://data.delijn.be/stops/208872", "https://tec.openplanner.team/stops/H5rx106b"], ["https://mivb.openplanner.team/stops/3125", "https://tec.openplanner.team/stops/Bixleix1"], ["http://irail.be/stations/NMBS/008821071", "https://data.delijn.be/stops/109150"], ["https://data.delijn.be/stops/305522", "https://mivb.openplanner.team/stops/1635"], ["https://data.delijn.be/stops/401724", "https://tec.openplanner.team/stops/LWHkerk2"], ["https://mivb.openplanner.team/stops/1920", "https://tec.openplanner.team/stops/Buccobs2"], ["https://data.delijn.be/stops/301043", "https://mivb.openplanner.team/stops/3226B"], ["http://irail.be/stations/NMBS/008814266", "https://tec.openplanner.team/stops/Bwatgar4"], ["http://irail.be/stations/NMBS/008843224", "https://tec.openplanner.team/stops/Lpocent2"], ["http://irail.be/stations/NMBS/008895125", "https://data.delijn.be/stops/206005"], ["http://irail.be/stations/NMBS/008881000", "https://tec.openplanner.team/stops/H1ms936a"], ["https://data.delijn.be/stops/307644", "https://tec.openplanner.team/stops/Bbrlmez1"], ["http://irail.be/stations/NMBS/008886041", "https://tec.openplanner.team/stops/H5ma185a"], ["https://data.delijn.be/stops/209187", "https://tec.openplanner.team/stops/H5rx136a"], ["http://irail.be/stations/NMBS/008811247", "https://data.delijn.be/stops/305580"], ["http://irail.be/stations/NMBS/007015440", "https://data.delijn.be/stops/504023"], ["https://data.delijn.be/stops/303080", "https://tec.openplanner.team/stops/Bleunaa1"], ["https://data.delijn.be/stops/404662", "https://tec.openplanner.team/stops/LJU493-1"], ["https://mivb.openplanner.team/stops/0260237", "https://tec.openplanner.team/stops/Baudhde1"], ["http://irail.be/stations/NMBS/008893070", "https://data.delijn.be/stops/208697"], ["https://data.delijn.be/stops/408869", "https://tec.openplanner.team/stops/LFCalte2"], ["http://irail.be/stations/NMBS/008863834", "https://tec.openplanner.team/stops/N261afa"], ["https://data.delijn.be/stops/304038", "https://tec.openplanner.team/stops/Boveklo2"], ["https://data.delijn.be/stops/400454", "https://tec.openplanner.team/stops/LEBdoct2"], ["https://mivb.openplanner.team/stops/5208", "https://tec.openplanner.team/stops/Bixlozo2"], ["https://data.delijn.be/stops/300862", "https://mivb.openplanner.team/stops/4271"], ["https://data.delijn.be/stops/301156", "https://mivb.openplanner.team/stops/2118"], ["https://data.delijn.be/stops/300365", "https://tec.openplanner.team/stops/Bwaucig1"], ["https://data.delijn.be/stops/301924", "https://mivb.openplanner.team/stops/2071"], ["https://data.delijn.be/stops/300785", "https://mivb.openplanner.team/stops/7700205"], ["https://data.delijn.be/stops/407211", "https://tec.openplanner.team/stops/LHScite2"], ["https://data.delijn.be/stops/405701", "https://tec.openplanner.team/stops/Llghugo2"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N219abb"], ["http://irail.be/stations/NMBS/008872579", "https://tec.openplanner.team/stops/Bvlvpco1"], ["http://irail.be/stations/NMBS/008821071", "https://data.delijn.be/stops/107320"], ["http://irail.be/stations/NMBS/008842648", "https://tec.openplanner.team/stops/LEShony1"], ["https://mivb.openplanner.team/stops/1871B", "https://tec.openplanner.team/stops/Bettlha1"], ["https://data.delijn.be/stops/408492", "https://tec.openplanner.team/stops/LWAvisi2"], ["https://data.delijn.be/stops/209601", "https://tec.openplanner.team/stops/Bspkbeu1"], ["https://data.delijn.be/stops/304089", "https://tec.openplanner.team/stops/Bovesog2"], ["https://data.delijn.be/stops/304437", "https://tec.openplanner.team/stops/Brsggea1"], ["https://data.delijn.be/stops/406767", "https://tec.openplanner.team/stops/LHgroso2"], ["http://irail.be/stations/NMBS/008843224", "https://tec.openplanner.team/stops/Lfhdone2"], ["https://data.delijn.be/stops/307717", "https://mivb.openplanner.team/stops/4319"], ["https://data.delijn.be/stops/300335", "https://tec.openplanner.team/stops/Balswsa2"], ["https://data.delijn.be/stops/301014", "https://mivb.openplanner.team/stops/4058F"], ["https://data.delijn.be/stops/407901", "https://tec.openplanner.team/stops/LLaover3"], ["https://data.delijn.be/stops/302823", "https://tec.openplanner.team/stops/Blhugar2"], ["http://irail.be/stations/NMBS/008814373", "https://mivb.openplanner.team/stops/3860"], ["http://irail.be/stations/NMBS/008871647", "https://tec.openplanner.team/stops/H1so142c"], ["https://data.delijn.be/stops/307971", "https://tec.openplanner.team/stops/Bwavlav1"], ["https://data.delijn.be/stops/305297", "https://mivb.openplanner.team/stops/9631"], ["https://data.delijn.be/stops/205982", "https://tec.openplanner.team/stops/H4wt160b"], ["https://data.delijn.be/stops/308875", "https://tec.openplanner.team/stops/Bbosdra2"], ["https://data.delijn.be/stops/301072", "https://mivb.openplanner.team/stops/6471"], ["https://data.delijn.be/stops/504452", "https://tec.openplanner.team/stops/H4rk101b"], ["https://data.delijn.be/stops/307142", "https://mivb.openplanner.team/stops/2541"], ["https://data.delijn.be/stops/401417", "https://mivb.openplanner.team/stops/0806"], ["https://data.delijn.be/stops/307641", "https://mivb.openplanner.team/stops/1933B"], ["http://irail.be/stations/NMBS/008814340", "https://data.delijn.be/stops/303283"], ["https://data.delijn.be/stops/300816", "https://mivb.openplanner.team/stops/4230"], ["https://data.delijn.be/stops/509654", "https://tec.openplanner.team/stops/H4co151a"], ["https://data.delijn.be/stops/504451", "https://tec.openplanner.team/stops/H4mo133a"], ["http://irail.be/stations/NMBS/008871308", "https://tec.openplanner.team/stops/Cpccoss2"], ["https://data.delijn.be/stops/405739", "https://tec.openplanner.team/stops/Lrcarse2"], ["http://irail.be/stations/NMBS/008815040", "https://data.delijn.be/stops/301069"], ["http://irail.be/stations/NMBS/008873239", "https://tec.openplanner.team/stops/N118bbb"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N570aaa"], ["https://data.delijn.be/stops/406565", "https://tec.openplanner.team/stops/LLxmonu2"], ["http://irail.be/stations/NMBS/008892031", "https://data.delijn.be/stops/201186"], ["http://irail.be/stations/NMBS/008731388", "https://tec.openplanner.team/stops/H4lg100a"], ["https://data.delijn.be/stops/301985", "https://tec.openplanner.team/stops/Bhalark2"], ["https://data.delijn.be/stops/405717", "https://tec.openplanner.team/stops/Llglefe2"], ["https://data.delijn.be/stops/303948", "https://tec.openplanner.team/stops/Bbbksth2"], ["https://data.delijn.be/stops/307975", "https://tec.openplanner.team/stops/Bwavpar1"], ["https://data.delijn.be/stops/304726", "https://mivb.openplanner.team/stops/9600B"], ["http://irail.be/stations/NMBS/008811247", "https://data.delijn.be/stops/305460"], ["https://data.delijn.be/stops/208182", "https://tec.openplanner.team/stops/H5rx131a"], ["https://data.delijn.be/stops/302411", "https://tec.openplanner.team/stops/Bmlngch2"], ["http://irail.be/stations/NMBS/008885530", "https://tec.openplanner.team/stops/H4my120a"], ["https://data.delijn.be/stops/304621", "https://mivb.openplanner.team/stops/3850"], ["http://irail.be/stations/NMBS/008881166", "https://tec.openplanner.team/stops/H1ju120b"], ["https://data.delijn.be/stops/305342", "https://tec.openplanner.team/stops/Bbgever2"], ["http://irail.be/stations/NMBS/008861432", "https://tec.openplanner.team/stops/N525atb"], ["https://data.delijn.be/stops/307213", "https://tec.openplanner.team/stops/Bbchgod2"], ["https://data.delijn.be/stops/404062", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://data.delijn.be/stops/305423", "https://mivb.openplanner.team/stops/9169"], ["https://data.delijn.be/stops/409000", "https://tec.openplanner.team/stops/LWAeloi2"], ["https://data.delijn.be/stops/300969", "https://mivb.openplanner.team/stops/3529"], ["http://irail.be/stations/NMBS/008821725", "https://data.delijn.be/stops/107042"], ["http://irail.be/stations/NMBS/008844230", "https://tec.openplanner.team/stops/LNEgaul4"], ["http://irail.be/stations/NMBS/008814258", "https://tec.openplanner.team/stops/Bblagar1"], ["https://data.delijn.be/stops/307151", "https://tec.openplanner.team/stops/Bhalomo2"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2hp123d"], ["https://data.delijn.be/stops/300812", "https://mivb.openplanner.team/stops/8793"], ["http://irail.be/stations/NMBS/008885068", "https://tec.openplanner.team/stops/H4fr145b"], ["http://irail.be/stations/NMBS/008812120", "https://data.delijn.be/stops/302152"], ["http://irail.be/stations/NMBS/008814167", "https://tec.openplanner.team/stops/Brsggar1"], ["https://data.delijn.be/stops/304818", "https://tec.openplanner.team/stops/Bwavpar1"], ["http://irail.be/stations/NMBS/008811767", "https://tec.openplanner.team/stops/Bpecvme1"], ["http://irail.be/stations/NMBS/008891033", "https://data.delijn.be/stops/507643"], ["https://data.delijn.be/stops/305350", "https://tec.openplanner.team/stops/Bbgerlr2"], ["http://irail.be/stations/NMBS/008881505", "https://tec.openplanner.team/stops/H1qp150a"], ["http://irail.be/stations/NMBS/008811775", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://data.delijn.be/stops/308853", "https://mivb.openplanner.team/stops/5471"], ["https://data.delijn.be/stops/400475", "https://tec.openplanner.team/stops/LGLdeni2"], ["https://data.delijn.be/stops/300992", "https://mivb.openplanner.team/stops/2243F"], ["http://irail.be/stations/NMBS/008886553", "https://tec.openplanner.team/stops/H1le121a"], ["https://data.delijn.be/stops/410018", "https://tec.openplanner.team/stops/Blanath1"], ["http://irail.be/stations/NMBS/008821063", "https://data.delijn.be/stops/102909"], ["https://data.delijn.be/stops/303225", "https://mivb.openplanner.team/stops/9686"], ["https://data.delijn.be/stops/308856", "https://mivb.openplanner.team/stops/2801"], ["https://data.delijn.be/stops/304103", "https://tec.openplanner.team/stops/Bove4ko2"], ["https://mivb.openplanner.team/stops/1729", "https://tec.openplanner.team/stops/Bixlqll1"], ["https://data.delijn.be/stops/410144", "https://tec.openplanner.team/stops/Llgbois2"], ["https://data.delijn.be/stops/302855", "https://tec.openplanner.team/stops/Bwaanwi2"], ["https://data.delijn.be/stops/306641", "https://mivb.openplanner.team/stops/4274"], ["https://data.delijn.be/stops/308733", "https://tec.openplanner.team/stops/Bgoewat1"], ["https://data.delijn.be/stops/209183", "https://tec.openplanner.team/stops/H5rx104a"], ["https://data.delijn.be/stops/308446", "https://tec.openplanner.team/stops/Bovetdo2"], ["http://irail.be/stations/NMBS/008843349", "https://tec.openplanner.team/stops/LOmlime1"], ["https://data.delijn.be/stops/301076", "https://mivb.openplanner.team/stops/1320"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/N574aea"], ["https://mivb.openplanner.team/stops/2110B", "https://tec.openplanner.team/stops/Buccvoi3"], ["https://data.delijn.be/stops/302440", "https://tec.openplanner.team/stops/Bzluegl1"], ["https://data.delijn.be/stops/304452", "https://tec.openplanner.team/stops/Brsgrol1"], ["https://data.delijn.be/stops/301134", "https://tec.openplanner.team/stops/Buccvch2"], ["http://irail.be/stations/NMBS/008821519", "https://data.delijn.be/stops/105853"], ["http://irail.be/stations/NMBS/008822145", "https://data.delijn.be/stops/207338"], ["https://data.delijn.be/stops/405719", "https://tec.openplanner.team/stops/Llgwild8"], ["http://irail.be/stations/NMBS/008821154", "https://data.delijn.be/stops/104315"], ["https://mivb.openplanner.team/stops/6115F", "https://tec.openplanner.team/stops/Bettcha3"], ["http://irail.be/stations/NMBS/008400219", "https://data.delijn.be/stops/408826"], ["https://data.delijn.be/stops/305346", "https://tec.openplanner.team/stops/Bbgever2"], ["https://data.delijn.be/stops/407201", "https://tec.openplanner.team/stops/LHehacc2"], ["https://data.delijn.be/stops/400682", "https://tec.openplanner.team/stops/LHgtomb1"], ["https://data.delijn.be/stops/207761", "https://tec.openplanner.team/stops/H5rx150a"], ["https://data.delijn.be/stops/408681", "https://tec.openplanner.team/stops/LRUhama2"], ["http://irail.be/stations/NMBS/008874724", "https://tec.openplanner.team/stops/N534abb"], ["https://data.delijn.be/stops/301000", "https://mivb.openplanner.team/stops/6419F"], ["https://mivb.openplanner.team/stops/2927", "https://tec.openplanner.team/stops/Bbxltrv2"], ["https://data.delijn.be/stops/408894", "https://tec.openplanner.team/stops/LWHkerk1"], ["http://irail.be/stations/NMBS/008822053", "https://data.delijn.be/stops/301452"], ["http://irail.be/stations/NMBS/008844321", "https://tec.openplanner.team/stops/LTHcime2"], ["http://irail.be/stations/NMBS/008892692", "https://data.delijn.be/stops/209210"], ["https://data.delijn.be/stops/301088", "https://mivb.openplanner.team/stops/1515"], ["https://data.delijn.be/stops/307965", "https://tec.openplanner.team/stops/Bwavcar1"], ["http://irail.be/stations/NMBS/008822608", "https://data.delijn.be/stops/104573"], ["https://data.delijn.be/stops/307167", "https://tec.openplanner.team/stops/Bhalpar2"], ["http://irail.be/stations/NMBS/008822269", "https://data.delijn.be/stops/301448"], ["https://data.delijn.be/stops/408804", "https://tec.openplanner.team/stops/LVIgare2"], ["https://data.delijn.be/stops/401404", "https://mivb.openplanner.team/stops/5039"], ["http://irail.be/stations/NMBS/008847258", "https://tec.openplanner.team/stops/Lkivolg2"], ["https://data.delijn.be/stops/300330", "https://tec.openplanner.team/stops/Bblapin2"], ["http://irail.be/stations/NMBS/008863818", "https://tec.openplanner.team/stops/N232aaa"], ["https://data.delijn.be/stops/305435", "https://mivb.openplanner.team/stops/1627"], ["https://data.delijn.be/stops/408908", "https://tec.openplanner.team/stops/LXhmara2"], ["http://irail.be/stations/NMBS/008871381", "https://tec.openplanner.team/stops/H2go114c"], ["https://data.delijn.be/stops/208192", "https://tec.openplanner.team/stops/H5rx102b"], ["https://data.delijn.be/stops/300018", "https://mivb.openplanner.team/stops/2762"], ["https://data.delijn.be/stops/405401", "https://tec.openplanner.team/stops/Blanmde2"], ["https://data.delijn.be/stops/408871", "https://tec.openplanner.team/stops/LFCdree2"], ["https://data.delijn.be/stops/300772", "https://mivb.openplanner.team/stops/7670108"], ["https://data.delijn.be/stops/408690", "https://tec.openplanner.team/stops/LTobilz2"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/503465"], ["https://data.delijn.be/stops/300804", "https://mivb.openplanner.team/stops/1498"], ["https://data.delijn.be/stops/401419", "https://mivb.openplanner.team/stops/1540"], ["https://data.delijn.be/stops/301089", "https://tec.openplanner.team/stops/Bkrawil1"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/101666"], ["http://irail.be/stations/NMBS/008811510", "https://tec.openplanner.team/stops/Blhulor1"], ["http://irail.be/stations/NMBS/008866530", "https://tec.openplanner.team/stops/X696ala"], ["http://irail.be/stations/NMBS/008844008", "https://tec.openplanner.team/stops/Lveyser1"], ["http://irail.be/stations/NMBS/008892692", "https://data.delijn.be/stops/209808"], ["http://irail.be/stations/NMBS/008872520", "https://tec.openplanner.team/stops/N584bba"], ["https://data.delijn.be/stops/300815", "https://mivb.openplanner.team/stops/4276"], ["http://irail.be/stations/NMBS/008891124", "https://data.delijn.be/stops/502072"], ["https://data.delijn.be/stops/307807", "https://mivb.openplanner.team/stops/7750260"], ["http://irail.be/stations/NMBS/008811213", "https://data.delijn.be/stops/303529"], ["http://irail.be/stations/NMBS/008821907", "https://data.delijn.be/stops/109801"], ["https://data.delijn.be/stops/405310", "https://tec.openplanner.team/stops/Blangar1"], ["http://irail.be/stations/NMBS/008864964", "https://tec.openplanner.team/stops/N535aib"], ["https://data.delijn.be/stops/504239", "https://tec.openplanner.team/stops/H4co106a"], ["https://data.delijn.be/stops/303632", "https://mivb.openplanner.team/stops/6659F"], ["https://data.delijn.be/stops/307683", "https://mivb.openplanner.team/stops/1995F"], ["http://irail.be/stations/NMBS/008814373", "https://mivb.openplanner.team/stops/2665F"], ["https://data.delijn.be/stops/207767", "https://tec.openplanner.team/stops/H5rx114b"], ["https://mivb.openplanner.team/stops/1638B", "https://tec.openplanner.team/stops/Bwolkra1"], ["http://irail.be/stations/NMBS/008886058", "https://tec.openplanner.team/stops/H5ar103a"], ["https://data.delijn.be/stops/208760", "https://tec.openplanner.team/stops/H5rx102b"], ["https://data.delijn.be/stops/308955", "https://mivb.openplanner.team/stops/9553"], ["https://data.delijn.be/stops/408904", "https://tec.openplanner.team/stops/LAUscha1"], ["https://data.delijn.be/stops/302798", "https://mivb.openplanner.team/stops/2041"], ["https://data.delijn.be/stops/304435", "https://tec.openplanner.team/stops/Bwatcoq1"], ["http://irail.be/stations/NMBS/008842689", "https://tec.openplanner.team/stops/LPOeg--2"], ["https://mivb.openplanner.team/stops/8222", "https://tec.openplanner.team/stops/Baudsju1"], ["https://data.delijn.be/stops/301005", "https://mivb.openplanner.team/stops/4153"], ["http://irail.be/stations/NMBS/008896230", "https://data.delijn.be/stops/503828"], ["http://irail.be/stations/NMBS/008894425", "https://data.delijn.be/stops/204066"], ["https://data.delijn.be/stops/304103", "https://tec.openplanner.team/stops/Bovetwe1"], ["https://data.delijn.be/stops/504255", "https://tec.openplanner.team/stops/H4pl132a"], ["https://data.delijn.be/stops/208614", "https://tec.openplanner.team/stops/H1hq127b"], ["https://data.delijn.be/stops/307636", "https://mivb.openplanner.team/stops/1959"], ["https://data.delijn.be/stops/301108", "https://mivb.openplanner.team/stops/5256F"], ["http://irail.be/stations/NMBS/008821444", "https://data.delijn.be/stops/102907"], ["https://data.delijn.be/stops/504310", "https://tec.openplanner.team/stops/H4mo172a"], ["https://data.delijn.be/stops/301922", "https://mivb.openplanner.team/stops/2017"], ["https://data.delijn.be/stops/302822", "https://tec.openplanner.team/stops/Blhupcl1"], ["https://data.delijn.be/stops/306052", "https://mivb.openplanner.team/stops/0529"], ["https://data.delijn.be/stops/300787", "https://mivb.openplanner.team/stops/1259"], ["http://irail.be/stations/NMBS/008811155", "https://mivb.openplanner.team/stops/3280"], ["https://data.delijn.be/stops/504318", "https://tec.openplanner.team/stops/H4hx121a"], ["https://data.delijn.be/stops/407212", "https://tec.openplanner.team/stops/LWOpier1"], ["https://mivb.openplanner.team/stops/5419", "https://tec.openplanner.team/stops/Bwbfgar2"], ["https://data.delijn.be/stops/303629", "https://tec.openplanner.team/stops/Brsrrcu1"], ["https://data.delijn.be/stops/408893", "https://tec.openplanner.team/stops/LFMvoge1"], ["http://irail.be/stations/NMBS/008841327", "https://tec.openplanner.team/stops/LKmmelo2"], ["http://irail.be/stations/NMBS/008872306", "https://tec.openplanner.team/stops/Clojone1"], ["https://data.delijn.be/stops/408585", "https://tec.openplanner.team/stops/LTymahr1"], ["https://data.delijn.be/stops/208757", "https://tec.openplanner.team/stops/H5rx105a"], ["http://irail.be/stations/NMBS/008895489", "https://data.delijn.be/stops/207556"], ["https://data.delijn.be/stops/504772", "https://tec.openplanner.team/stops/H4wn138a"], ["http://irail.be/stations/NMBS/008814340", "https://data.delijn.be/stops/304659"], ["https://data.delijn.be/stops/300012", "https://mivb.openplanner.team/stops/7700205"], ["https://data.delijn.be/stops/301160", "https://mivb.openplanner.team/stops/5921B"], ["http://irail.be/stations/NMBS/008812245", "https://data.delijn.be/stops/306643"], ["http://irail.be/stations/NMBS/008824158", "https://data.delijn.be/stops/104888"], ["https://data.delijn.be/stops/301088", "https://mivb.openplanner.team/stops/1565"], ["https://data.delijn.be/stops/300923", "https://mivb.openplanner.team/stops/1538B"], ["http://irail.be/stations/NMBS/008831112", "https://data.delijn.be/stops/402023"], ["https://data.delijn.be/stops/307248", "https://mivb.openplanner.team/stops/9979B"], ["http://irail.be/stations/NMBS/008895208", "https://data.delijn.be/stops/218015"], ["https://data.delijn.be/stops/301117", "https://mivb.openplanner.team/stops/1048F"], ["https://data.delijn.be/stops/308874", "https://mivb.openplanner.team/stops/0050419"], ["https://mivb.openplanner.team/stops/2152", "https://tec.openplanner.team/stops/Buccplj2"], ["http://irail.be/stations/NMBS/008843349", "https://tec.openplanner.team/stops/LAMfrai2"], ["http://irail.be/stations/NMBS/008811817", "https://tec.openplanner.team/stops/Bottpar2"], ["http://irail.be/stations/NMBS/008884335", "https://tec.openplanner.team/stops/H1qv112a"], ["https://data.delijn.be/stops/305334", "https://tec.openplanner.team/stops/Bspkkhe1"], ["https://mivb.openplanner.team/stops/1472", "https://tec.openplanner.team/stops/Bwbfbon2"], ["https://data.delijn.be/stops/300794", "https://mivb.openplanner.team/stops/7660209"], ["http://irail.be/stations/NMBS/008841525", "https://tec.openplanner.team/stops/Llgelis1"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N568aeb"], ["http://irail.be/stations/NMBS/008891553", "https://data.delijn.be/stops/501541"], ["http://irail.be/stations/NMBS/008892650", "https://data.delijn.be/stops/201355"], ["https://data.delijn.be/stops/408428", "https://tec.openplanner.team/stops/LRUhama2"], ["https://data.delijn.be/stops/306159", "https://mivb.openplanner.team/stops/2041"], ["https://data.delijn.be/stops/405714", "https://tec.openplanner.team/stops/Llghoch4"], ["http://irail.be/stations/NMBS/008841434", "https://tec.openplanner.team/stops/LPUlecl1"], ["https://data.delijn.be/stops/308094", "https://tec.openplanner.team/stops/Bgoegma1"], ["https://data.delijn.be/stops/308981", "https://tec.openplanner.team/stops/Blhumga2"], ["http://irail.be/stations/NMBS/008896149", "https://data.delijn.be/stops/503850"], ["http://irail.be/stations/NMBS/008883022", "https://tec.openplanner.team/stops/Bquegen1"], ["https://data.delijn.be/stops/404666", "https://tec.openplanner.team/stops/LJUmc--2"], ["http://irail.be/stations/NMBS/008811460", "https://data.delijn.be/stops/302218"], ["http://irail.be/stations/NMBS/008883212", "https://tec.openplanner.team/stops/H2ec103b"], ["https://data.delijn.be/stops/307676", "https://tec.openplanner.team/stops/Bstecou2"], ["http://irail.be/stations/NMBS/008821964", "https://data.delijn.be/stops/109234"], ["http://irail.be/stations/NMBS/008842648", "https://tec.openplanner.team/stops/LESchat1"], ["https://data.delijn.be/stops/302405", "https://mivb.openplanner.team/stops/3608"], ["https://data.delijn.be/stops/400487", "https://tec.openplanner.team/stops/LRGile-2"], ["http://irail.be/stations/NMBS/008884640", "https://tec.openplanner.team/stops/H1po137a"], ["https://data.delijn.be/stops/304097", "https://tec.openplanner.team/stops/Bovetwe2"], ["http://irail.be/stations/NMBS/008719100", "https://tec.openplanner.team/stops/X687aaa"], ["https://data.delijn.be/stops/304614", "https://mivb.openplanner.team/stops/9655"], ["http://irail.be/stations/NMBS/008892254", "https://data.delijn.be/stops/505340"], ["https://data.delijn.be/stops/400496", "https://tec.openplanner.team/stops/LLxnive2"], ["https://data.delijn.be/stops/302446", "https://tec.openplanner.team/stops/Bzluqga1"], ["https://data.delijn.be/stops/301080", "https://mivb.openplanner.team/stops/1508"], ["http://irail.be/stations/NMBS/008893062", "https://data.delijn.be/stops/200647"], ["http://irail.be/stations/NMBS/008894714", "https://data.delijn.be/stops/204710"], ["http://irail.be/stations/NMBS/008811536", "https://tec.openplanner.team/stops/Brixcme2"], ["http://irail.be/stations/NMBS/008896735", "https://data.delijn.be/stops/509426"], ["http://irail.be/stations/NMBS/008896370", "https://data.delijn.be/stops/508871"], ["http://irail.be/stations/NMBS/008881562", "https://tec.openplanner.team/stops/H1sb144b"], ["https://data.delijn.be/stops/305227", "https://mivb.openplanner.team/stops/9626"], ["http://irail.be/stations/NMBS/008894433", "https://data.delijn.be/stops/204223"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Clbpepi1"], ["http://irail.be/stations/NMBS/008866662", "https://tec.openplanner.team/stops/X614aeb"], ["https://data.delijn.be/stops/401416", "https://mivb.openplanner.team/stops/5267"], ["https://data.delijn.be/stops/308447", "https://tec.openplanner.team/stops/Bovetsa1"], ["https://data.delijn.be/stops/305427", "https://mivb.openplanner.team/stops/1629"], ["https://data.delijn.be/stops/300326", "https://tec.openplanner.team/stops/Balswwe2"], ["http://irail.be/stations/NMBS/008895612", "https://data.delijn.be/stops/208548"], ["https://data.delijn.be/stops/301035", "https://mivb.openplanner.team/stops/5018"], ["http://irail.be/stations/NMBS/008862018", "https://tec.openplanner.team/stops/X602apb"], ["http://irail.be/stations/NMBS/008871175", "https://tec.openplanner.team/stops/Cjxetri2"], ["https://data.delijn.be/stops/301802", "https://mivb.openplanner.team/stops/5001F"], ["http://irail.be/stations/NMBS/008861200", "https://tec.openplanner.team/stops/N522bva"], ["https://data.delijn.be/stops/300861", "https://mivb.openplanner.team/stops/4258"], ["https://data.delijn.be/stops/307974", "https://tec.openplanner.team/stops/Bwavfbe1"], ["http://irail.be/stations/NMBS/008842663", "https://tec.openplanner.team/stops/LESgare1"], ["http://irail.be/stations/NMBS/008815016", "https://mivb.openplanner.team/stops/7780157"], ["http://irail.be/stations/NMBS/008814431", "https://data.delijn.be/stops/307641"], ["https://data.delijn.be/stops/307233", "https://mivb.openplanner.team/stops/4267"], ["https://data.delijn.be/stops/300920", "https://mivb.openplanner.team/stops/2900"], ["http://irail.be/stations/NMBS/008871225", "https://tec.openplanner.team/stops/Ccoptca2"], ["https://data.delijn.be/stops/405745", "https://tec.openplanner.team/stops/Llghugo2"], ["https://data.delijn.be/stops/408820", "https://tec.openplanner.team/stops/LMgberw1"], ["http://irail.be/stations/NMBS/008869054", "https://tec.openplanner.team/stops/X626aeb"], ["https://data.delijn.be/stops/307331", "https://tec.openplanner.team/stops/Bleugar1"], ["http://irail.be/stations/NMBS/008891165", "https://data.delijn.be/stops/208650"], ["https://data.delijn.be/stops/208179", "https://tec.openplanner.team/stops/H5el100b"], ["https://data.delijn.be/stops/308854", "https://mivb.openplanner.team/stops/5471"], ["https://mivb.openplanner.team/stops/1713", "https://tec.openplanner.team/stops/Bettcha2"], ["https://data.delijn.be/stops/307791", "https://mivb.openplanner.team/stops/1599"], ["http://irail.be/stations/NMBS/008892288", "https://data.delijn.be/stops/508021"], ["http://irail.be/stations/NMBS/008814431", "https://tec.openplanner.team/stops/Blkbbvh1"], ["http://irail.be/stations/NMBS/008864816", "https://tec.openplanner.team/stops/N201ama"], ["https://data.delijn.be/stops/408866", "https://tec.openplanner.team/stops/LFCvoge3"], ["https://mivb.openplanner.team/stops/0230334", "https://tec.openplanner.team/stops/Bauddel1"], ["http://irail.be/stations/NMBS/008895422", "https://data.delijn.be/stops/208538"], ["http://irail.be/stations/NMBS/008893401", "https://data.delijn.be/stops/206301"], ["https://data.delijn.be/stops/504382", "https://tec.openplanner.team/stops/H4pl122a"], ["http://irail.be/stations/NMBS/008822608", "https://data.delijn.be/stops/104469"], ["https://data.delijn.be/stops/305495", "https://mivb.openplanner.team/stops/3017"], ["https://data.delijn.be/stops/408601", "https://tec.openplanner.team/stops/LTotrui2"], ["https://data.delijn.be/stops/408883", "https://tec.openplanner.team/stops/LFCvoge4"], ["https://data.delijn.be/stops/304722", "https://mivb.openplanner.team/stops/5350G"], ["http://irail.be/stations/NMBS/008884319", "https://tec.openplanner.team/stops/H1bo105b"], ["https://data.delijn.be/stops/302401", "https://mivb.openplanner.team/stops/6856"], ["https://mivb.openplanner.team/stops/6162", "https://tec.openplanner.team/stops/Bsgimor1"], ["https://data.delijn.be/stops/300816", "https://mivb.openplanner.team/stops/7810254"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/503644"], ["http://irail.be/stations/NMBS/008811726", "https://tec.openplanner.team/stops/Bwavtpi2"], ["http://irail.be/stations/NMBS/008811916", "https://mivb.openplanner.team/stops/8061"], ["https://data.delijn.be/stops/308730", "https://tec.openplanner.team/stops/Bhakmkr2"], ["https://data.delijn.be/stops/308721", "https://tec.openplanner.team/stops/Bgoewat1"], ["http://irail.be/stations/NMBS/008863156", "https://tec.openplanner.team/stops/N539aha"], ["http://irail.be/stations/NMBS/008886009", "https://tec.openplanner.team/stops/H5at104b"], ["http://irail.be/stations/NMBS/008814167", "https://data.delijn.be/stops/304456"], ["http://irail.be/stations/NMBS/008821105", "https://data.delijn.be/stops/105518"], ["https://data.delijn.be/stops/408852", "https://tec.openplanner.team/stops/LFChofv1"], ["https://data.delijn.be/stops/410138", "https://tec.openplanner.team/stops/Lvopaqu1"], ["http://irail.be/stations/NMBS/008841673", "https://tec.openplanner.team/stops/Llianix2"], ["https://data.delijn.be/stops/303652", "https://tec.openplanner.team/stops/Bovevnd1"], ["https://data.delijn.be/stops/209189", "https://tec.openplanner.team/stops/H5rx150a"], ["https://mivb.openplanner.team/stops/2136", "https://tec.openplanner.team/stops/Buccfja2"], ["https://data.delijn.be/stops/303666", "https://mivb.openplanner.team/stops/1721"], ["https://data.delijn.be/stops/407688", "https://tec.openplanner.team/stops/LRGchap2"], ["http://irail.be/stations/NMBS/008843174", "https://tec.openplanner.team/stops/Louense2"], ["https://data.delijn.be/stops/304069", "https://tec.openplanner.team/stops/Bovesog2"], ["http://irail.be/stations/NMBS/008200520", "https://tec.openplanner.team/stops/X626aia"], ["http://irail.be/stations/NMBS/008894508", "https://data.delijn.be/stops/205714"], ["https://data.delijn.be/stops/305262", "https://tec.openplanner.team/stops/Bspkker1"], ["https://data.delijn.be/stops/408884", "https://tec.openplanner.team/stops/LFPho8a1"], ["https://data.delijn.be/stops/302398", "https://mivb.openplanner.team/stops/6484B"], ["http://irail.be/stations/NMBS/008844206", "https://tec.openplanner.team/stops/Lpegole1"], ["https://data.delijn.be/stops/408910", "https://tec.openplanner.team/stops/LVu03--1"], ["https://data.delijn.be/stops/301117", "https://mivb.openplanner.team/stops/5256F"], ["https://data.delijn.be/stops/400476", "https://tec.openplanner.team/stops/LBPmili2"], ["http://irail.be/stations/NMBS/008821089", "https://data.delijn.be/stops/107110"], ["http://irail.be/stations/NMBS/008871647", "https://tec.openplanner.team/stops/H1be100a"], ["https://data.delijn.be/stops/509452", "https://tec.openplanner.team/stops/H4rk101b"], ["https://data.delijn.be/stops/304458", "https://tec.openplanner.team/stops/Brsg7fo2"], ["http://irail.be/stations/NMBS/008895448", "https://data.delijn.be/stops/206536"], ["http://irail.be/stations/NMBS/007015440", "https://data.delijn.be/stops/501736"], ["http://irail.be/stations/NMBS/008891702", "https://data.delijn.be/stops/510012"], ["https://data.delijn.be/stops/209408", "https://tec.openplanner.team/stops/H5rx139b"], ["https://data.delijn.be/stops/300742", "https://mivb.openplanner.team/stops/7710104"], ["https://data.delijn.be/stops/302000", "https://tec.openplanner.team/stops/Blempuc2"], ["https://data.delijn.be/stops/509236", "https://tec.openplanner.team/stops/H4co109a"], ["https://data.delijn.be/stops/302163", "https://tec.openplanner.team/stops/Bzluqga2"], ["https://data.delijn.be/stops/300775", "https://mivb.openplanner.team/stops/1255"], ["https://data.delijn.be/stops/300565", "https://tec.openplanner.team/stops/Bhmmbog1"], ["http://irail.be/stations/NMBS/008821436", "https://data.delijn.be/stops/109747"], ["https://mivb.openplanner.team/stops/4288", "https://tec.openplanner.team/stops/Bwbfeta2"], ["https://data.delijn.be/stops/304091", "https://tec.openplanner.team/stops/Boveker2"], ["http://irail.be/stations/NMBS/008831039", "https://data.delijn.be/stops/400152"], ["http://irail.be/stations/NMBS/008863461", "https://tec.openplanner.team/stops/N509bga"], ["http://irail.be/stations/NMBS/008892320", "https://data.delijn.be/stops/509509"], ["https://data.delijn.be/stops/400470", "https://tec.openplanner.team/stops/LPleclu2"], ["https://data.delijn.be/stops/305889", "https://mivb.openplanner.team/stops/2358"], ["http://irail.be/stations/NMBS/008861135", "https://tec.openplanner.team/stops/N551ajb"], ["http://irail.be/stations/NMBS/008815016", "https://mivb.openplanner.team/stops/5077"], ["https://data.delijn.be/stops/408855", "https://tec.openplanner.team/stops/LFCkerk1"], ["https://data.delijn.be/stops/406212", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://data.delijn.be/stops/208180", "https://tec.openplanner.team/stops/H5el110b"], ["https://data.delijn.be/stops/300817", "https://mivb.openplanner.team/stops/0270314"], ["https://data.delijn.be/stops/300759", "https://mivb.openplanner.team/stops/3281"], ["https://data.delijn.be/stops/300314", "https://tec.openplanner.team/stops/Bhmmlad2"], ["http://irail.be/stations/NMBS/008863834", "https://tec.openplanner.team/stops/N217aba"], ["https://data.delijn.be/stops/408428", "https://tec.openplanner.team/stops/LTowijk2"], ["https://data.delijn.be/stops/301230", "https://tec.openplanner.team/stops/Bhaleur2"], ["https://data.delijn.be/stops/301197", "https://tec.openplanner.team/stops/Bmlnegl3"], ["http://irail.be/stations/NMBS/008886066", "https://tec.openplanner.team/stops/H1ch101b"], ["http://irail.be/stations/NMBS/008896503", "https://data.delijn.be/stops/504182"], ["http://irail.be/stations/NMBS/008841665", "https://tec.openplanner.team/stops/Lmigare2"], ["https://data.delijn.be/stops/304203", "https://tec.openplanner.team/stops/Brsregl2"], ["https://data.delijn.be/stops/401415", "https://tec.openplanner.team/stops/Bixepla2"], ["https://data.delijn.be/stops/307965", "https://tec.openplanner.team/stops/Bwavpar1"], ["http://irail.be/stations/NMBS/008814134", "https://mivb.openplanner.team/stops/5817"], ["http://irail.be/stations/NMBS/008728654", "https://tec.openplanner.team/stops/H4tg170a"], ["https://data.delijn.be/stops/300980", "https://mivb.openplanner.team/stops/1514"], ["https://mivb.openplanner.team/stops/5029", "https://tec.openplanner.team/stops/Buccmer2"], ["https://data.delijn.be/stops/300750", "https://mivb.openplanner.team/stops/3233"], ["http://irail.be/stations/NMBS/008832003", "https://data.delijn.be/stops/405552"], ["http://irail.be/stations/NMBS/008843158", "https://tec.openplanner.team/stops/Ljegare2"], ["http://irail.be/stations/NMBS/008892007", "https://data.delijn.be/stops/200144"], ["https://data.delijn.be/stops/305294", "https://mivb.openplanner.team/stops/2352"], ["https://data.delijn.be/stops/504382", "https://tec.openplanner.team/stops/H4pl122b"], ["http://irail.be/stations/NMBS/008813003", "https://mivb.openplanner.team/stops/3012"], ["https://data.delijn.be/stops/208024", "https://tec.openplanner.team/stops/H1og131a"], ["http://irail.be/stations/NMBS/008400426", "https://data.delijn.be/stops/406272"], ["https://data.delijn.be/stops/306915", "https://tec.openplanner.team/stops/Btiegoo1"], ["https://data.delijn.be/stops/401411", "https://mivb.openplanner.team/stops/5265F"], ["https://data.delijn.be/stops/300958", "https://mivb.openplanner.team/stops/3524"], ["https://data.delijn.be/stops/505828", "https://tec.openplanner.team/stops/H4mo165b"], ["http://irail.be/stations/NMBS/008841434", "https://tec.openplanner.team/stops/LBveg--1"], ["https://data.delijn.be/stops/300789", "https://mivb.openplanner.team/stops/3751"], ["https://data.delijn.be/stops/301196", "https://tec.openplanner.team/stops/Blthwav2"], ["https://data.delijn.be/stops/304930", "https://mivb.openplanner.team/stops/9784B"], ["https://mivb.openplanner.team/stops/2701", "https://tec.openplanner.team/stops/Bucccal4"], ["https://data.delijn.be/stops/301166", "https://tec.openplanner.team/stops/Buccvbe2"], ["https://data.delijn.be/stops/405311", "https://tec.openplanner.team/stops/Blankal4"], ["https://mivb.openplanner.team/stops/1716", "https://tec.openplanner.team/stops/Baudstr1"], ["http://irail.be/stations/NMBS/008811718", "https://tec.openplanner.team/stops/Bbgevil2"], ["https://data.delijn.be/stops/301016", "https://mivb.openplanner.team/stops/1094"], ["https://data.delijn.be/stops/300964", "https://mivb.openplanner.team/stops/1756B"], ["https://mivb.openplanner.team/stops/2717", "https://tec.openplanner.team/stops/Buccham2"], ["https://data.delijn.be/stops/300798", "https://mivb.openplanner.team/stops/2259"], ["http://irail.be/stations/NMBS/008861333", "https://tec.openplanner.team/stops/N531aoa"], ["http://irail.be/stations/NMBS/008865128", "https://tec.openplanner.team/stops/X725aef"], ["http://irail.be/stations/NMBS/008873312", "https://tec.openplanner.team/stops/N106akb"], ["https://mivb.openplanner.team/stops/5311", "https://tec.openplanner.team/stops/Bettars1"], ["https://data.delijn.be/stops/300885", "https://mivb.openplanner.team/stops/7830152"], ["http://irail.be/stations/NMBS/008874567", "https://tec.openplanner.team/stops/Cfachap2"], ["http://irail.be/stations/NMBS/008895752", "https://data.delijn.be/stops/206714"], ["http://irail.be/stations/NMBS/008400280", "https://data.delijn.be/stops/505602"], ["http://irail.be/stations/NMBS/008865615", "https://tec.openplanner.team/stops/X346akb"], ["http://irail.be/stations/NMBS/008896370", "https://data.delijn.be/stops/504755"], ["https://data.delijn.be/stops/400496", "https://tec.openplanner.team/stops/Llxcite2"], ["https://mivb.openplanner.team/stops/3524", "https://tec.openplanner.team/stops/Baudulb1"], ["https://data.delijn.be/stops/401402", "https://mivb.openplanner.team/stops/9311"], ["http://irail.be/stations/NMBS/008832227", "https://data.delijn.be/stops/407042"], ["http://irail.be/stations/NMBS/008864352", "https://tec.openplanner.team/stops/X999aia"], ["http://irail.be/stations/NMBS/008894821", "https://data.delijn.be/stops/205335"], ["https://data.delijn.be/stops/301029", "https://mivb.openplanner.team/stops/2122"], ["http://irail.be/stations/NMBS/008831401", "https://data.delijn.be/stops/306326"], ["http://irail.be/stations/NMBS/008843166", "https://tec.openplanner.team/stops/Lfhhosp2"], ["http://irail.be/stations/NMBS/008812005", "https://data.delijn.be/stops/306048"], ["http://irail.be/stations/NMBS/008811460", "https://tec.openplanner.team/stops/Blhuibm2"], ["https://data.delijn.be/stops/408878", "https://tec.openplanner.team/stops/LFMkrut2"], ["https://data.delijn.be/stops/304178", "https://tec.openplanner.team/stops/Bbldass2"], ["https://data.delijn.be/stops/408976", "https://tec.openplanner.team/stops/LWAwegg2"], ["http://irail.be/stations/NMBS/008824240", "https://data.delijn.be/stops/105997"], ["http://irail.be/stations/NMBS/008873379", "https://tec.openplanner.team/stops/Ccspla"], ["https://data.delijn.be/stops/300487", "https://tec.openplanner.team/stops/Bhalrat1"], ["https://data.delijn.be/stops/407212", "https://tec.openplanner.team/stops/LHecime2"], ["https://data.delijn.be/stops/410355", "https://tec.openplanner.team/stops/Llgangl1"], ["http://irail.be/stations/NMBS/008864469", "https://tec.openplanner.team/stops/X982aia"], ["http://irail.be/stations/NMBS/008811825", "https://tec.openplanner.team/stops/Bcsebde2"], ["http://irail.be/stations/NMBS/008865227", "https://tec.openplanner.team/stops/X878aca"], ["https://data.delijn.be/stops/407210", "https://tec.openplanner.team/stops/LHScite2"], ["http://irail.be/stations/NMBS/008871837", "https://tec.openplanner.team/stops/Cldplac1"], ["https://data.delijn.be/stops/209610", "https://tec.openplanner.team/stops/H1by106b"], ["https://data.delijn.be/stops/300961", "https://mivb.openplanner.team/stops/37"], ["http://irail.be/stations/NMBS/008893526", "https://data.delijn.be/stops/207398"], ["https://data.delijn.be/stops/306063", "https://tec.openplanner.team/stops/Brsga812"], ["https://data.delijn.be/stops/400458", "https://tec.openplanner.team/stops/LEBeg--1"], ["https://data.delijn.be/stops/308871", "https://mivb.openplanner.team/stops/6474F"], ["http://irail.be/stations/NMBS/008833233", "https://data.delijn.be/stops/304356"], ["https://data.delijn.be/stops/300795", "https://mivb.openplanner.team/stops/1541"], ["https://mivb.openplanner.team/stops/0631", "https://tec.openplanner.team/stops/Bbxlmid4"], ["http://irail.be/stations/NMBS/008831138", "https://data.delijn.be/stops/400761"], ["http://irail.be/stations/NMBS/008882701", "https://tec.openplanner.team/stops/Bmangar1"], ["http://irail.be/stations/NMBS/008866001", "https://tec.openplanner.team/stops/X601bca"], ["https://data.delijn.be/stops/301078", "https://mivb.openplanner.team/stops/6357"], ["https://data.delijn.be/stops/300355", "https://tec.openplanner.team/stops/Bbrlvil2"], ["https://data.delijn.be/stops/300744", "https://mivb.openplanner.team/stops/1327"], ["https://mivb.openplanner.team/stops/1835", "https://tec.openplanner.team/stops/Bkrapri1"], ["http://irail.be/stations/NMBS/008861515", "https://tec.openplanner.team/stops/Bcrnrpc1"], ["http://irail.be/stations/NMBS/008843323", "https://tec.openplanner.team/stops/LAmeg--2"], ["http://irail.be/stations/NMBS/008731388", "https://tec.openplanner.team/stops/Cmqbasv2"], ["http://irail.be/stations/NMBS/008844008", "https://tec.openplanner.team/stops/Lvegc--4"], ["http://irail.be/stations/NMBS/008895802", "https://data.delijn.be/stops/207104"], ["http://irail.be/stations/NMBS/008892692", "https://data.delijn.be/stops/208802"], ["https://data.delijn.be/stops/300925", "https://mivb.openplanner.team/stops/4505"], ["https://data.delijn.be/stops/301995", "https://tec.openplanner.team/stops/Bhalber2"], ["https://mivb.openplanner.team/stops/4292", "https://tec.openplanner.team/stops/Bwbfeta2"], ["https://data.delijn.be/stops/300972", "https://mivb.openplanner.team/stops/1719"], ["https://data.delijn.be/stops/405361", "https://tec.openplanner.team/stops/Blangar1"], ["https://data.delijn.be/stops/300392", "https://tec.openplanner.team/stops/Bhalh311"], ["https://data.delijn.be/stops/401416", "https://mivb.openplanner.team/stops/1779"], ["https://data.delijn.be/stops/308734", "https://tec.openplanner.team/stops/Boplsma4"], ["http://irail.be/stations/NMBS/008874005", "https://tec.openplanner.team/stops/Cculgeo2"], ["https://data.delijn.be/stops/400477", "https://tec.openplanner.team/stops/LBPmili1"], ["https://data.delijn.be/stops/408957", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://data.delijn.be/stops/304834", "https://mivb.openplanner.team/stops/5520F"], ["http://irail.be/stations/NMBS/008832433", "https://data.delijn.be/stops/401935"], ["https://data.delijn.be/stops/300907", "https://mivb.openplanner.team/stops/1975"], ["https://data.delijn.be/stops/400464", "https://tec.openplanner.team/stops/LPleclu2"], ["https://mivb.openplanner.team/stops/5205", "https://tec.openplanner.team/stops/Bettgar1"], ["https://data.delijn.be/stops/509453", "https://tec.openplanner.team/stops/H4tg170a"], ["https://mivb.openplanner.team/stops/1323", "https://tec.openplanner.team/stops/Bixllep1"], ["https://data.delijn.be/stops/300964", "https://mivb.openplanner.team/stops/1720B"], ["http://irail.be/stations/NMBS/008833134", "https://data.delijn.be/stops/308358"], ["http://irail.be/stations/NMBS/008892627", "https://data.delijn.be/stops/205987"], ["http://irail.be/stations/NMBS/008815040", "https://mivb.openplanner.team/stops/1145"], ["https://data.delijn.be/stops/300945", "https://mivb.openplanner.team/stops/4160"], ["http://irail.be/stations/NMBS/008811148", "https://mivb.openplanner.team/stops/5968"], ["https://data.delijn.be/stops/408921", "https://tec.openplanner.team/stops/LTEnuro1"], ["http://irail.be/stations/NMBS/008844206", "https://tec.openplanner.team/stops/Lpeptwa1"], ["http://irail.be/stations/NMBS/008400424", "https://data.delijn.be/stops/406368"], ["https://data.delijn.be/stops/404675", "https://tec.openplanner.team/stops/LVSslin3"], ["http://irail.be/stations/NMBS/008895737", "https://data.delijn.be/stops/206756"], ["http://irail.be/stations/NMBS/008892908", "https://data.delijn.be/stops/208406"], ["https://data.delijn.be/stops/300880", "https://mivb.openplanner.team/stops/4955F"], ["http://irail.be/stations/NMBS/008872066", "https://tec.openplanner.team/stops/Cchoues1"], ["https://data.delijn.be/stops/404676", "https://tec.openplanner.team/stops/Llabriq1"], ["https://data.delijn.be/stops/404655", "https://tec.openplanner.team/stops/LVSslin2"], ["https://mivb.openplanner.team/stops/4853", "https://tec.openplanner.team/stops/Buccmer2"], ["http://irail.be/stations/NMBS/008833258", "https://data.delijn.be/stops/306842"], ["http://irail.be/stations/NMBS/008865300", "https://tec.openplanner.team/stops/X804alc"], ["http://irail.be/stations/NMBS/008821022", "https://data.delijn.be/stops/101530"], ["http://irail.be/stations/NMBS/008843166", "https://tec.openplanner.team/stops/Lfhxhor1"], ["https://data.delijn.be/stops/307681", "https://mivb.openplanner.team/stops/5952F"], ["https://data.delijn.be/stops/304460", "https://tec.openplanner.team/stops/Brsgter2"], ["https://data.delijn.be/stops/305348", "https://tec.openplanner.team/stops/Bbgevil1"], ["http://irail.be/stations/NMBS/008841319", "https://tec.openplanner.team/stops/LAWbrou2"], ["https://mivb.openplanner.team/stops/1714", "https://tec.openplanner.team/stops/Bettbue1"], ["https://mivb.openplanner.team/stops/3953", "https://tec.openplanner.team/stops/Bettgle2"], ["https://data.delijn.be/stops/401399", "https://mivb.openplanner.team/stops/5041B"], ["https://data.delijn.be/stops/503332", "https://tec.openplanner.team/stops/H4eh100a"], ["https://data.delijn.be/stops/304663", "https://mivb.openplanner.team/stops/9660"], ["https://data.delijn.be/stops/307694", "https://tec.openplanner.team/stops/Brsgtou1"], ["https://data.delijn.be/stops/303631", "https://mivb.openplanner.team/stops/6648F"], ["http://irail.be/stations/NMBS/008892643", "https://data.delijn.be/stops/201279"], ["https://data.delijn.be/stops/304090", "https://tec.openplanner.team/stops/Bovesol1"], ["http://irail.be/stations/NMBS/008889045", "https://tec.openplanner.team/stops/H4ht172a"], ["https://data.delijn.be/stops/300487", "https://tec.openplanner.team/stops/Bhalber3"], ["https://data.delijn.be/stops/302121", "https://tec.openplanner.team/stops/Bpte1ma2"], ["http://irail.be/stations/NMBS/008895570", "https://data.delijn.be/stops/207666"], ["https://data.delijn.be/stops/401412", "https://mivb.openplanner.team/stops/4305"], ["https://data.delijn.be/stops/307974", "https://tec.openplanner.team/stops/Bwavfol1"], ["https://data.delijn.be/stops/207796", "https://tec.openplanner.team/stops/H5rx105a"], ["https://data.delijn.be/stops/305269", "https://mivb.openplanner.team/stops/2817"], ["http://irail.be/stations/NMBS/007015440", "https://data.delijn.be/stops/504547"], ["https://data.delijn.be/stops/408779", "https://tec.openplanner.team/stops/LVlleme1"], ["https://data.delijn.be/stops/304434", "https://tec.openplanner.team/stops/Bblapin1"], ["http://irail.be/stations/NMBS/008845005", "https://tec.openplanner.team/stops/X790aka"], ["http://irail.be/stations/NMBS/008811254", "https://data.delijn.be/stops/302776"], ["https://mivb.openplanner.team/stops/1757", "https://tec.openplanner.team/stops/Baudvdr2"], ["http://irail.be/stations/NMBS/008811528", "https://data.delijn.be/stops/307504"], ["http://irail.be/stations/NMBS/008015345", "https://tec.openplanner.team/stops/LaAnorm2"], ["https://data.delijn.be/stops/504295", "https://tec.openplanner.team/stops/H4mo142a"], ["https://mivb.openplanner.team/stops/5254", "https://tec.openplanner.team/stops/Buccbas1"], ["http://irail.be/stations/NMBS/008833126", "https://data.delijn.be/stops/302887"], ["http://irail.be/stations/NMBS/008822277", "https://data.delijn.be/stops/305612"], ["https://data.delijn.be/stops/404683", "https://tec.openplanner.team/stops/LWibare2"], ["https://data.delijn.be/stops/410132", "https://tec.openplanner.team/stops/LJU51--2"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/509951"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/300399"], ["https://data.delijn.be/stops/408962", "https://tec.openplanner.team/stops/LWAchpg1"], ["https://data.delijn.be/stops/305928", "https://mivb.openplanner.team/stops/2856B"], ["http://irail.be/stations/NMBS/008832227", "https://data.delijn.be/stops/401436"], ["http://irail.be/stations/NMBS/008843208", "https://tec.openplanner.team/stops/Lfhnrou2"], ["https://data.delijn.be/stops/300851", "https://mivb.openplanner.team/stops/6653F"], ["http://irail.be/stations/NMBS/008895877", "https://data.delijn.be/stops/206161"], ["https://data.delijn.be/stops/301038", "https://mivb.openplanner.team/stops/7740201"], ["https://data.delijn.be/stops/303660", "https://tec.openplanner.team/stops/Blkbavo1"], ["https://data.delijn.be/stops/505275", "https://tec.openplanner.team/stops/H4po124b"], ["https://data.delijn.be/stops/304431", "https://tec.openplanner.team/stops/Brsgcfl2"], ["http://irail.be/stations/NMBS/008884632", "https://tec.openplanner.team/stops/H1po133b"], ["https://data.delijn.be/stops/307147", "https://tec.openplanner.team/stops/Bhalvel2"], ["https://data.delijn.be/stops/300782", "https://mivb.openplanner.team/stops/2522"], ["http://irail.be/stations/NMBS/008821337", "https://data.delijn.be/stops/107210"], ["https://data.delijn.be/stops/301412", "https://tec.openplanner.team/stops/H1en105a"], ["https://data.delijn.be/stops/302887", "https://tec.openplanner.team/stops/Bhevhha2"], ["http://irail.be/stations/NMBS/008200510", "https://tec.openplanner.team/stops/X685aia"], ["http://irail.be/stations/NMBS/008200520", "https://tec.openplanner.team/stops/X626aja"], ["https://data.delijn.be/stops/408492", "https://tec.openplanner.team/stops/LWAathe1"], ["https://mivb.openplanner.team/stops/1048F", "https://tec.openplanner.team/stops/Bixlaca2"], ["http://irail.be/stations/NMBS/008821105", "https://data.delijn.be/stops/102736"], ["https://data.delijn.be/stops/301007", "https://mivb.openplanner.team/stops/1064"], ["https://data.delijn.be/stops/307050", "https://tec.openplanner.team/stops/Bovepla1"], ["https://data.delijn.be/stops/300839", "https://mivb.openplanner.team/stops/8823"], ["https://data.delijn.be/stops/300996", "https://mivb.openplanner.team/stops/2248"], ["https://data.delijn.be/stops/400457", "https://tec.openplanner.team/stops/LEBdoct2"], ["https://data.delijn.be/stops/301085", "https://mivb.openplanner.team/stops/1641"], ["http://irail.be/stations/NMBS/008866142", "https://tec.openplanner.team/stops/X670asa"], ["https://data.delijn.be/stops/305999", "https://tec.openplanner.team/stops/Brsrbbo2"], ["https://data.delijn.be/stops/406374", "https://tec.openplanner.team/stops/LMalamb4"], ["http://irail.be/stations/NMBS/008892080", "https://data.delijn.be/stops/201336"], ["http://irail.be/stations/NMBS/008893542", "https://data.delijn.be/stops/201922"], ["https://data.delijn.be/stops/302450", "https://tec.openplanner.team/stops/Bzluqga1"], ["https://data.delijn.be/stops/301047", "https://mivb.openplanner.team/stops/3009"], ["http://irail.be/stations/NMBS/008844545", "https://tec.openplanner.team/stops/LDOgare1"], ["https://data.delijn.be/stops/301002", "https://mivb.openplanner.team/stops/1512"], ["http://irail.be/stations/NMBS/008811155", "https://mivb.openplanner.team/stops/2987"], ["https://data.delijn.be/stops/305999", "https://tec.openplanner.team/stops/Bovetwe2"], ["http://irail.be/stations/NMBS/008833274", "https://data.delijn.be/stops/304429"], ["https://data.delijn.be/stops/305916", "https://mivb.openplanner.team/stops/5102F"], ["http://irail.be/stations/NMBS/008895471", "https://data.delijn.be/stops/206043"], ["http://irail.be/stations/NMBS/008892452", "https://data.delijn.be/stops/500929"], ["http://irail.be/stations/NMBS/008731388", "https://data.delijn.be/stops/504327"], ["https://data.delijn.be/stops/300768", "https://mivb.openplanner.team/stops/3858"], ["https://data.delijn.be/stops/300849", "https://mivb.openplanner.team/stops/2814"], ["http://irail.be/stations/NMBS/008863842", "https://tec.openplanner.team/stops/N338aaa"], ["https://data.delijn.be/stops/405702", "https://tec.openplanner.team/stops/Llgangl2"], ["https://data.delijn.be/stops/300995", "https://mivb.openplanner.team/stops/2241G"], ["https://data.delijn.be/stops/408806", "https://tec.openplanner.team/stops/LVItcm-1"], ["https://data.delijn.be/stops/300780", "https://mivb.openplanner.team/stops/6857"], ["https://data.delijn.be/stops/304255", "https://mivb.openplanner.team/stops/4004"], ["http://irail.be/stations/NMBS/008895067", "https://data.delijn.be/stops/206829"], ["https://data.delijn.be/stops/408874", "https://tec.openplanner.team/stops/LVu03--2"], ["http://irail.be/stations/NMBS/008845229", "https://tec.openplanner.team/stops/LCogara2"], ["https://data.delijn.be/stops/207781", "https://tec.openplanner.team/stops/H5rx114a"], ["http://irail.be/stations/NMBS/008832409", "https://data.delijn.be/stops/406792"], ["https://data.delijn.be/stops/301028", "https://mivb.openplanner.team/stops/2959"], ["https://data.delijn.be/stops/304551", "https://mivb.openplanner.team/stops/9679"], ["https://data.delijn.be/stops/208764", "https://tec.openplanner.team/stops/H5rx140b"], ["https://data.delijn.be/stops/504451", "https://tec.openplanner.team/stops/H4mo175b"], ["http://irail.be/stations/NMBS/008842002", "https://tec.openplanner.team/stops/Lagjado5"], ["http://irail.be/stations/NMBS/008864956", "https://tec.openplanner.team/stops/N564abb"], ["http://irail.be/stations/NMBS/008892288", "https://data.delijn.be/stops/508006"], ["https://data.delijn.be/stops/300358", "https://tec.openplanner.team/stops/Bbrlpar1"], ["https://data.delijn.be/stops/303950", "https://tec.openplanner.team/stops/Bbldass1"], ["https://data.delijn.be/stops/408779", "https://tec.openplanner.team/stops/LVleg--1"], ["http://irail.be/stations/NMBS/008874609", "https://tec.openplanner.team/stops/N543cjb"], ["http://irail.be/stations/NMBS/008895745", "https://data.delijn.be/stops/206618"], ["https://data.delijn.be/stops/407206", "https://tec.openplanner.team/stops/LHThall4"], ["https://data.delijn.be/stops/408920", "https://tec.openplanner.team/stops/LTEziho1"], ["http://irail.be/stations/NMBS/008842051", "https://tec.openplanner.team/stops/Lcacasi1"], ["http://irail.be/stations/NMBS/008821600", "https://data.delijn.be/stops/106931"], ["https://data.delijn.be/stops/404687", "https://tec.openplanner.team/stops/LWipaif3"], ["http://irail.be/stations/NMBS/008811171", "https://data.delijn.be/stops/301088"], ["https://data.delijn.be/stops/407230", "https://tec.openplanner.team/stops/LLGramk1"], ["https://data.delijn.be/stops/509299", "https://tec.openplanner.team/stops/H4mo206b"], ["https://mivb.openplanner.team/stops/1959", "https://tec.openplanner.team/stops/Bucceng2"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bcsegal1"], ["https://data.delijn.be/stops/305495", "https://mivb.openplanner.team/stops/3328"], ["https://data.delijn.be/stops/509455", "https://tec.openplanner.team/stops/H4mo164a"], ["http://irail.be/stations/NMBS/008821089", "https://data.delijn.be/stops/101590"], ["http://irail.be/stations/NMBS/008883121", "https://tec.openplanner.team/stops/H1ne143b"], ["http://irail.be/stations/NMBS/008844230", "https://tec.openplanner.team/stops/LBaeg--1"], ["https://data.delijn.be/stops/304168", "https://tec.openplanner.team/stops/Blemmar2"], ["https://data.delijn.be/stops/304545", "https://mivb.openplanner.team/stops/9685"], ["https://data.delijn.be/stops/308819", "https://mivb.openplanner.team/stops/1571"], ["https://mivb.openplanner.team/stops/1125", "https://tec.openplanner.team/stops/Bsgipha2"], ["https://data.delijn.be/stops/307195", "https://tec.openplanner.team/stops/Bhalsro2"], ["http://irail.be/stations/NMBS/008841673", "https://tec.openplanner.team/stops/Llithon1"], ["https://data.delijn.be/stops/300963", "https://mivb.openplanner.team/stops/0250236"], ["https://data.delijn.be/stops/304169", "https://tec.openplanner.team/stops/Blemwob2"], ["http://irail.be/stations/NMBS/008811635", "https://tec.openplanner.team/stops/Blmlcle1"], ["https://data.delijn.be/stops/303223", "https://mivb.openplanner.team/stops/3853"], ["http://irail.be/stations/NMBS/008883022", "https://tec.openplanner.team/stops/Bquevel2"], ["https://data.delijn.be/stops/303666", "https://mivb.openplanner.team/stops/1685F"], ["https://data.delijn.be/stops/400451", "https://tec.openplanner.team/stops/LBPrueg1"], ["http://irail.be/stations/NMBS/008832227", "https://data.delijn.be/stops/400559"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2le153a"], ["http://irail.be/stations/NMBS/008843406", "https://tec.openplanner.team/stops/LSteg--1"], ["https://mivb.openplanner.team/stops/2142", "https://tec.openplanner.team/stops/Buccrac2"], ["https://data.delijn.be/stops/410142", "https://tec.openplanner.team/stops/Llgverg1"], ["http://irail.be/stations/NMBS/008821196", "https://data.delijn.be/stops/104407"], ["https://data.delijn.be/stops/306123", "https://tec.openplanner.team/stops/Bhalcbr1"], ["http://irail.be/stations/NMBS/008894508", "https://data.delijn.be/stops/205696"], ["https://data.delijn.be/stops/408493", "https://tec.openplanner.team/stops/LWAvand2"], ["https://data.delijn.be/stops/305229", "https://mivb.openplanner.team/stops/2317"], ["https://data.delijn.be/stops/304127", "https://mivb.openplanner.team/stops/2838"], ["http://irail.be/stations/NMBS/008879004", "https://tec.openplanner.team/stops/H1mb125a"], ["https://data.delijn.be/stops/307697", "https://tec.openplanner.team/stops/Brsgfso1"], ["https://data.delijn.be/stops/300315", "https://tec.openplanner.team/stops/Bhmmcge1"], ["http://irail.be/stations/NMBS/008814464", "https://mivb.openplanner.team/stops/2138B"], ["https://data.delijn.be/stops/507689", "https://tec.openplanner.team/stops/H4mo193b"], ["http://irail.be/stations/NMBS/008822053", "https://data.delijn.be/stops/302511"], ["http://irail.be/stations/NMBS/008832433", "https://data.delijn.be/stops/103678"], ["https://mivb.openplanner.team/stops/5261", "https://tec.openplanner.team/stops/Bixepla2"], ["https://data.delijn.be/stops/304204", "https://tec.openplanner.team/stops/Brsrrcu1"], ["http://irail.be/stations/NMBS/008892288", "https://data.delijn.be/stops/503111"], ["http://irail.be/stations/NMBS/008843331", "https://tec.openplanner.team/stops/LAMgreg1"], ["https://data.delijn.be/stops/306399", "https://mivb.openplanner.team/stops/6648F"], ["http://irail.be/stations/NMBS/008813037", "https://mivb.openplanner.team/stops/1126"], ["https://data.delijn.be/stops/408847", "https://tec.openplanner.team/stops/LRmsmvo1"], ["http://irail.be/stations/NMBS/008895760", "https://data.delijn.be/stops/206995"], ["http://irail.be/stations/NMBS/008833134", "https://data.delijn.be/stops/300509"], ["http://irail.be/stations/NMBS/008843067", "https://tec.openplanner.team/stops/Lsecoll2"], ["http://irail.be/stations/NMBS/008841004", "https://tec.openplanner.team/stops/Llgfran1"], ["http://irail.be/stations/NMBS/008884640", "https://tec.openplanner.team/stops/H5gr137a"], ["http://irail.be/stations/NMBS/008811825", "https://tec.openplanner.team/stops/Bcsegar1"], ["https://data.delijn.be/stops/408863", "https://tec.openplanner.team/stops/LFCvoge3"], ["http://irail.be/stations/NMBS/008812013", "https://mivb.openplanner.team/stops/0472"], ["http://irail.be/stations/NMBS/008892627", "https://data.delijn.be/stops/219018"], ["https://data.delijn.be/stops/300906", "https://tec.openplanner.team/stops/Bixlpat2"], ["https://data.delijn.be/stops/405430", "https://tec.openplanner.team/stops/Bezeksj2"], ["https://data.delijn.be/stops/301070", "https://mivb.openplanner.team/stops/3225"], ["https://data.delijn.be/stops/301153", "https://tec.openplanner.team/stops/Buccpin2"], ["https://data.delijn.be/stops/301132", "https://mivb.openplanner.team/stops/1048F"], ["http://irail.be/stations/NMBS/008844057", "https://tec.openplanner.team/stops/Lvehv--1"], ["https://data.delijn.be/stops/300369", "https://tec.openplanner.team/stops/Bwaunou1"], ["http://irail.be/stations/NMBS/008891124", "https://data.delijn.be/stops/507605"], ["http://irail.be/stations/NMBS/008833266", "https://data.delijn.be/stops/304416"], ["https://data.delijn.be/stops/400486", "https://tec.openplanner.team/stops/LRGgrov2"], ["http://irail.be/stations/NMBS/008865565", "https://tec.openplanner.team/stops/X850agb"], ["https://data.delijn.be/stops/401409", "https://mivb.openplanner.team/stops/2289"], ["https://data.delijn.be/stops/508677", "https://tec.openplanner.team/stops/H4ef109a"], ["https://data.delijn.be/stops/404671", "https://tec.openplanner.team/stops/LJUxhen2"], ["https://data.delijn.be/stops/300852", "https://mivb.openplanner.team/stops/6608G"], ["http://irail.be/stations/NMBS/008822517", "https://data.delijn.be/stops/302465"], ["https://data.delijn.be/stops/301003", "https://mivb.openplanner.team/stops/3412"], ["https://data.delijn.be/stops/303246", "https://tec.openplanner.team/stops/Blkbbeu2"], ["http://irail.be/stations/NMBS/008895877", "https://data.delijn.be/stops/206449"], ["https://data.delijn.be/stops/305448", "https://mivb.openplanner.team/stops/1988"], ["http://irail.be/stations/NMBS/008829009", "https://data.delijn.be/stops/102187"], ["https://mivb.openplanner.team/stops/1915", "https://tec.openplanner.team/stops/Buccbas2"], ["http://irail.be/stations/NMBS/008812005", "https://data.delijn.be/stops/304580"], ["http://irail.be/stations/NMBS/008871605", "https://tec.openplanner.team/stops/H1er108d"], ["https://data.delijn.be/stops/305281", "https://mivb.openplanner.team/stops/9779"], ["http://irail.be/stations/NMBS/008893120", "https://data.delijn.be/stops/209922"], ["https://data.delijn.be/stops/300988", "https://mivb.openplanner.team/stops/4558"], ["https://data.delijn.be/stops/401724", "https://tec.openplanner.team/stops/LWHkerk1"], ["http://irail.be/stations/NMBS/008814266", "https://tec.openplanner.team/stops/Bwatgar3"], ["https://data.delijn.be/stops/408831", "https://tec.openplanner.team/stops/LBWviad2"], ["https://data.delijn.be/stops/300934", "https://mivb.openplanner.team/stops/7268"], ["https://data.delijn.be/stops/306387", "https://tec.openplanner.team/stops/Bhalrat2"], ["http://irail.be/stations/NMBS/008812146", "https://data.delijn.be/stops/207690"], ["https://data.delijn.be/stops/303080", "https://tec.openplanner.team/stops/Bleunaa2"], ["http://irail.be/stations/NMBS/008893070", "https://data.delijn.be/stops/208700"], ["http://irail.be/stations/NMBS/008875002", "https://tec.openplanner.team/stops/N134ada"], ["https://data.delijn.be/stops/400454", "https://tec.openplanner.team/stops/LEBdoct1"], ["http://irail.be/stations/NMBS/008895125", "https://data.delijn.be/stops/206257"], ["http://irail.be/stations/NMBS/008812047", "https://mivb.openplanner.team/stops/1066"], ["https://data.delijn.be/stops/509860", "https://tec.openplanner.team/stops/H4mo192a"], ["https://data.delijn.be/stops/301082", "https://mivb.openplanner.team/stops/2241G"], ["https://data.delijn.be/stops/301056", "https://mivb.openplanner.team/stops/4253"], ["https://data.delijn.be/stops/405701", "https://tec.openplanner.team/stops/Llghugo1"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N219aba"], ["https://data.delijn.be/stops/306048", "https://mivb.openplanner.team/stops/1644F"], ["https://data.delijn.be/stops/301030", "https://mivb.openplanner.team/stops/6162"], ["https://data.delijn.be/stops/304857", "https://mivb.openplanner.team/stops/7501"], ["http://irail.be/stations/NMBS/008842648", "https://tec.openplanner.team/stops/LEShony2"], ["https://data.delijn.be/stops/507767", "https://tec.openplanner.team/stops/H4ae100a"], ["https://mivb.openplanner.team/stops/1871B", "https://tec.openplanner.team/stops/Bettlha2"], ["http://irail.be/stations/NMBS/008821824", "https://data.delijn.be/stops/108163"], ["http://irail.be/stations/NMBS/008821238", "https://data.delijn.be/stops/107925"], ["https://data.delijn.be/stops/401409", "https://mivb.openplanner.team/stops/1042"], ["https://data.delijn.be/stops/300942", "https://mivb.openplanner.team/stops/1315"], ["http://irail.be/stations/NMBS/008893054", "https://data.delijn.be/stops/200604"], ["https://data.delijn.be/stops/407214", "https://tec.openplanner.team/stops/LHSvina2"], ["http://irail.be/stations/NMBS/008811916", "https://mivb.openplanner.team/stops/1273"], ["https://data.delijn.be/stops/408865", "https://tec.openplanner.team/stops/LFCkett1"], ["https://data.delijn.be/stops/404843", "https://tec.openplanner.team/stops/LEMec--2"], ["https://data.delijn.be/stops/301080", "https://mivb.openplanner.team/stops/1570"], ["https://data.delijn.be/stops/300922", "https://mivb.openplanner.team/stops/3902"], ["http://irail.be/stations/NMBS/008896503", "https://data.delijn.be/stops/502801"], ["http://irail.be/stations/NMBS/008896396", "https://data.delijn.be/stops/509568"], ["http://irail.be/stations/NMBS/008883212", "https://tec.openplanner.team/stops/Becepon1"], ["https://data.delijn.be/stops/400492", "https://tec.openplanner.team/stops/LBStong2"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Clbhour1"], ["https://data.delijn.be/stops/305297", "https://mivb.openplanner.team/stops/9627"], ["https://data.delijn.be/stops/205982", "https://tec.openplanner.team/stops/H4wt160a"], ["https://data.delijn.be/stops/504452", "https://tec.openplanner.team/stops/H4rk101a"], ["https://mivb.openplanner.team/stops/5420F", "https://tec.openplanner.team/stops/Bwbfgar1"], ["http://irail.be/stations/NMBS/008893211", "https://data.delijn.be/stops/200419"], ["https://data.delijn.be/stops/401417", "https://mivb.openplanner.team/stops/0801"], ["https://data.delijn.be/stops/301078", "https://mivb.openplanner.team/stops/3313"], ["https://data.delijn.be/stops/405455", "https://tec.openplanner.team/stops/LWHtrui1"], ["http://irail.be/stations/NMBS/008892403", "https://data.delijn.be/stops/503335"], ["http://irail.be/stations/NMBS/008895877", "https://data.delijn.be/stops/207449"], ["https://data.delijn.be/stops/208406", "https://tec.openplanner.team/stops/H5rx115d"], ["https://data.delijn.be/stops/207773", "https://tec.openplanner.team/stops/H5rx120b"], ["https://data.delijn.be/stops/504326", "https://tec.openplanner.team/stops/H4pl136a"], ["https://data.delijn.be/stops/306897", "https://tec.openplanner.team/stops/Bgoesch4"], ["https://data.delijn.be/stops/307683", "https://mivb.openplanner.team/stops/5952F"], ["http://irail.be/stations/NMBS/008841442", "https://tec.openplanner.team/stops/LReeg--1"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bsmgmas2"], ["http://irail.be/stations/NMBS/008844545", "https://tec.openplanner.team/stops/LBiroch1"], ["http://irail.be/stations/NMBS/008872306", "https://tec.openplanner.team/stops/Cjuhame3"], ["https://data.delijn.be/stops/300629", "https://tec.openplanner.team/stops/Bbeamon2"], ["http://irail.be/stations/NMBS/008895620", "https://data.delijn.be/stops/208598"], ["https://data.delijn.be/stops/302408", "https://mivb.openplanner.team/stops/3610F"], ["http://irail.be/stations/NMBS/008822004", "https://data.delijn.be/stops/105066"], ["https://data.delijn.be/stops/209358", "https://tec.openplanner.team/stops/H5rx135a"], ["https://data.delijn.be/stops/504639", "https://tec.openplanner.team/stops/H4co149a"], ["https://data.delijn.be/stops/406359", "https://tec.openplanner.team/stops/LMaburg4"], ["https://data.delijn.be/stops/301106", "https://mivb.openplanner.team/stops/5224F"], ["http://irail.be/stations/NMBS/008896412", "https://data.delijn.be/stops/504237"], ["https://data.delijn.be/stops/308818", "https://mivb.openplanner.team/stops/8421"], ["http://irail.be/stations/NMBS/008728600", "https://tec.openplanner.team/stops/H4ar101a"], ["https://data.delijn.be/stops/301402", "https://mivb.openplanner.team/stops/5727F"], ["http://irail.be/stations/NMBS/008893054", "https://data.delijn.be/stops/201940"], ["https://data.delijn.be/stops/208395", "https://tec.openplanner.team/stops/H4or116b"], ["http://irail.be/stations/NMBS/008861515", "https://tec.openplanner.team/stops/Bcrnnra2"], ["https://data.delijn.be/stops/404833", "https://tec.openplanner.team/stops/LaAbush*"], ["https://data.delijn.be/stops/405717", "https://tec.openplanner.team/stops/Llglefe1"], ["http://irail.be/stations/NMBS/008881125", "https://tec.openplanner.team/stops/H1gh147a"], ["https://mivb.openplanner.team/stops/2932", "https://tec.openplanner.team/stops/Bsgimca1"], ["http://irail.be/stations/NMBS/008200520", "https://tec.openplanner.team/stops/X687aba"], ["https://mivb.openplanner.team/stops/8042", "https://tec.openplanner.team/stops/Bbxltrv1"], ["http://irail.be/stations/NMBS/008884327", "https://tec.openplanner.team/stops/H1bo107a"], ["https://data.delijn.be/stops/303535", "https://mivb.openplanner.team/stops/9725"], ["https://data.delijn.be/stops/305342", "https://tec.openplanner.team/stops/Bbgever1"], ["https://data.delijn.be/stops/401413", "https://mivb.openplanner.team/stops/3125"], ["https://data.delijn.be/stops/302449", "https://tec.openplanner.team/stops/Bsjgegl1"], ["http://irail.be/stations/NMBS/008821907", "https://data.delijn.be/stops/106229"], ["http://irail.be/stations/NMBS/008814209", "https://tec.openplanner.team/stops/Bnivga71"], ["https://data.delijn.be/stops/300977", "https://mivb.openplanner.team/stops/6058"], ["https://data.delijn.be/stops/307151", "https://tec.openplanner.team/stops/Bhalomo1"], ["http://irail.be/stations/NMBS/008833001", "https://data.delijn.be/stops/304909"], ["https://data.delijn.be/stops/408903", "https://tec.openplanner.team/stops/LFPkape1"], ["https://mivb.openplanner.team/stops/2717", "https://tec.openplanner.team/stops/Buccrac2"], ["https://data.delijn.be/stops/300812", "https://mivb.openplanner.team/stops/8794"], ["https://data.delijn.be/stops/301116", "https://mivb.openplanner.team/stops/5604"], ["http://irail.be/stations/NMBS/008896115", "https://data.delijn.be/stops/503196"], ["http://irail.be/stations/NMBS/008885068", "https://tec.openplanner.team/stops/H4fr146a"], ["http://irail.be/stations/NMBS/008892452", "https://data.delijn.be/stops/508132"], ["https://data.delijn.be/stops/208614", "https://tec.openplanner.team/stops/H1bd100a"], ["https://data.delijn.be/stops/305261", "https://tec.openplanner.team/stops/Bspkkhe2"], ["https://data.delijn.be/stops/305350", "https://tec.openplanner.team/stops/Bbgerlr1"], ["https://data.delijn.be/stops/307151", "https://tec.openplanner.team/stops/Bhalwat1"], ["https://data.delijn.be/stops/306050", "https://mivb.openplanner.team/stops/0521"], ["https://data.delijn.be/stops/307817", "https://tec.openplanner.team/stops/Bovesnh1"], ["https://data.delijn.be/stops/301102", "https://mivb.openplanner.team/stops/5553"], ["https://data.delijn.be/stops/300963", "https://mivb.openplanner.team/stops/4407"], ["http://irail.be/stations/NMBS/008400280", "https://data.delijn.be/stops/204029"], ["https://data.delijn.be/stops/505926", "https://tec.openplanner.team/stops/H4co133b"], ["https://data.delijn.be/stops/308856", "https://mivb.openplanner.team/stops/2803"], ["https://data.delijn.be/stops/504234", "https://tec.openplanner.team/stops/H4co108b"], ["https://mivb.openplanner.team/stops/2131", "https://tec.openplanner.team/stops/Buccdho2"], ["http://irail.be/stations/NMBS/008863503", "https://tec.openplanner.team/stops/N232ana"], ["https://data.delijn.be/stops/304103", "https://tec.openplanner.team/stops/Bove4ko1"], ["http://irail.be/stations/NMBS/008865300", "https://tec.openplanner.team/stops/X804bpa"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LFCvoer2"], ["https://data.delijn.be/stops/208372", "https://tec.openplanner.team/stops/H5rx151a"], ["http://irail.be/stations/NMBS/008811536", "https://tec.openplanner.team/stops/Brixpje1"], ["https://data.delijn.be/stops/305294", "https://mivb.openplanner.team/stops/3001B"], ["http://irail.be/stations/NMBS/008881190", "https://tec.openplanner.team/stops/H1hh116a"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/107061"], ["https://data.delijn.be/stops/301076", "https://mivb.openplanner.team/stops/1321"], ["https://mivb.openplanner.team/stops/2110B", "https://tec.openplanner.team/stops/Buccvoi2"], ["http://irail.be/stations/NMBS/008841558", "https://tec.openplanner.team/stops/Llgfoss2"], ["https://mivb.openplanner.team/stops/3515", "https://tec.openplanner.team/stops/Bixefra1"], ["http://irail.be/stations/NMBS/008892734", "https://data.delijn.be/stops/508010"], ["https://data.delijn.be/stops/301050", "https://mivb.openplanner.team/stops/4074B"], ["http://irail.be/stations/NMBS/008842754", "https://tec.openplanner.team/stops/LAYwerb1"], ["http://irail.be/stations/NMBS/008841434", "https://tec.openplanner.team/stops/LBKmoes2"], ["http://irail.be/stations/NMBS/008821519", "https://data.delijn.be/stops/105854"], ["http://irail.be/stations/NMBS/008885001", "https://tec.openplanner.team/stops/H4ty305a"], ["http://irail.be/stations/NMBS/008886546", "https://tec.openplanner.team/stops/H1le120a"], ["http://irail.be/stations/NMBS/008822145", "https://data.delijn.be/stops/207337"], ["http://irail.be/stations/NMBS/008896909", "https://data.delijn.be/stops/505814"], ["https://mivb.openplanner.team/stops/6115F", "https://tec.openplanner.team/stops/Bettcha2"], ["http://irail.be/stations/NMBS/008400219", "https://data.delijn.be/stops/408825"], ["http://irail.be/stations/NMBS/008881463", "https://tec.openplanner.team/stops/H2sb221b"], ["https://data.delijn.be/stops/300061", "https://tec.openplanner.team/stops/Blemwro1"], ["https://data.delijn.be/stops/207761", "https://tec.openplanner.team/stops/H5rx151a"], ["https://data.delijn.be/stops/410152", "https://mivb.openplanner.team/stops/3403"], ["https://data.delijn.be/stops/305466", "https://tec.openplanner.team/stops/Bsgipha3"], ["https://mivb.openplanner.team/stops/3572", "https://tec.openplanner.team/stops/Bixlfla1"], ["https://data.delijn.be/stops/207787", "https://tec.openplanner.team/stops/H5rx138a"], ["http://irail.be/stations/NMBS/008893534", "https://data.delijn.be/stops/206247"], ["http://irail.be/stations/NMBS/008893039", "https://data.delijn.be/stops/202938"], ["https://data.delijn.be/stops/301118", "https://tec.openplanner.team/stops/Bovejei1"], ["http://irail.be/stations/NMBS/008892692", "https://data.delijn.be/stops/209213"], ["http://irail.be/stations/NMBS/008893211", "https://data.delijn.be/stops/201420"], ["http://irail.be/stations/NMBS/008886348", "https://tec.openplanner.team/stops/H4lz121d"], ["http://irail.be/stations/NMBS/008895505", "https://data.delijn.be/stops/208045"], ["https://data.delijn.be/stops/408804", "https://tec.openplanner.team/stops/LVIhala3"], ["https://data.delijn.be/stops/307795", "https://mivb.openplanner.team/stops/5299"], ["https://data.delijn.be/stops/307461", "https://mivb.openplanner.team/stops/1876"], ["http://irail.be/stations/NMBS/008200102", "https://tec.openplanner.team/stops/X685apb"], ["https://data.delijn.be/stops/304202", "https://tec.openplanner.team/stops/Brsregl4"], ["http://irail.be/stations/NMBS/008832565", "https://data.delijn.be/stops/404689"], ["http://irail.be/stations/NMBS/008871381", "https://tec.openplanner.team/stops/H2go114d"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N349afa"], ["https://data.delijn.be/stops/208405", "https://tec.openplanner.team/stops/H4rs117a"], ["https://data.delijn.be/stops/305225", "https://mivb.openplanner.team/stops/1143"], ["https://data.delijn.be/stops/305315", "https://mivb.openplanner.team/stops/9783"], ["http://irail.be/stations/NMBS/008895745", "https://data.delijn.be/stops/207657"], ["https://data.delijn.be/stops/405714", "https://tec.openplanner.team/stops/Llghoch2"], ["https://data.delijn.be/stops/208743", "https://tec.openplanner.team/stops/H4am101b"], ["http://irail.be/stations/NMBS/008811403", "https://mivb.openplanner.team/stops/3123"], ["https://data.delijn.be/stops/305889", "https://mivb.openplanner.team/stops/3002"], ["http://irail.be/stations/NMBS/008889045", "https://tec.openplanner.team/stops/H4te261a"], ["https://data.delijn.be/stops/307718", "https://tec.openplanner.team/stops/Bwatcoq1"], ["https://mivb.openplanner.team/stops/1975", "https://tec.openplanner.team/stops/Buccbas2"], ["http://irail.be/stations/NMBS/008866530", "https://tec.openplanner.team/stops/X696aka"], ["https://data.delijn.be/stops/302429", "https://tec.openplanner.team/stops/Bjodeco2"], ["http://irail.be/stations/NMBS/008872520", "https://tec.openplanner.team/stops/N584bab"], ["https://data.delijn.be/stops/300812", "https://mivb.openplanner.team/stops/4132B"], ["https://data.delijn.be/stops/307988", "https://mivb.openplanner.team/stops/3334G"], ["http://irail.be/stations/NMBS/008832045", "https://data.delijn.be/stops/102484"], ["http://irail.be/stations/NMBS/008815040", "https://mivb.openplanner.team/stops/7720303"], ["https://data.delijn.be/stops/405718", "https://tec.openplanner.team/stops/Llgwild8"], ["https://data.delijn.be/stops/307457", "https://mivb.openplanner.team/stops/1142"], ["http://irail.be/stations/NMBS/008841731", "https://data.delijn.be/stops/404681"], ["https://data.delijn.be/stops/504231", "https://tec.openplanner.team/stops/H4co146b"], ["https://data.delijn.be/stops/301052", "https://mivb.openplanner.team/stops/1056"], ["http://irail.be/stations/NMBS/008865615", "https://tec.openplanner.team/stops/N346aaa"], ["https://data.delijn.be/stops/300953", "https://mivb.openplanner.team/stops/51"], ["https://data.delijn.be/stops/504239", "https://tec.openplanner.team/stops/H4co103b"], ["http://irail.be/stations/NMBS/008843133", "https://tec.openplanner.team/stops/Lscgare2"], ["https://data.delijn.be/stops/300768", "https://mivb.openplanner.team/stops/2259"], ["https://data.delijn.be/stops/408904", "https://tec.openplanner.team/stops/LAUscha2"], ["http://irail.be/stations/NMBS/008896008", "https://data.delijn.be/stops/510015"], ["https://data.delijn.be/stops/302423", "https://tec.openplanner.team/stops/Bjodgai1"], ["https://data.delijn.be/stops/307002", "https://tec.openplanner.team/stops/Bjodgar1"], ["https://data.delijn.be/stops/208741", "https://tec.openplanner.team/stops/H5rx135b"], ["https://data.delijn.be/stops/400469", "https://tec.openplanner.team/stops/LEMfort2"], ["https://data.delijn.be/stops/301680", "https://tec.openplanner.team/stops/Bnetegl1"], ["http://irail.be/stations/NMBS/008833605", "https://tec.openplanner.team/stops/Blangar1"], ["https://data.delijn.be/stops/410136", "https://tec.openplanner.team/stops/Lvo60--1"], ["https://data.delijn.be/stops/305522", "https://mivb.openplanner.team/stops/1387"], ["http://irail.be/stations/NMBS/008865540", "https://tec.openplanner.team/stops/X850ana"], ["https://data.delijn.be/stops/301108", "https://mivb.openplanner.team/stops/5256"], ["https://mivb.openplanner.team/stops/1162C", "https://tec.openplanner.team/stops/Bixlqll1"], ["https://data.delijn.be/stops/403781", "https://tec.openplanner.team/stops/LORec--*"], ["http://irail.be/stations/NMBS/008821451", "https://data.delijn.be/stops/104289"], ["https://data.delijn.be/stops/305908", "https://mivb.openplanner.team/stops/9632"], ["https://data.delijn.be/stops/208406", "https://tec.openplanner.team/stops/H5rx151a"], ["https://data.delijn.be/stops/300940", "https://mivb.openplanner.team/stops/3203"], ["https://data.delijn.be/stops/301005", "https://mivb.openplanner.team/stops/1304"], ["https://data.delijn.be/stops/302822", "https://tec.openplanner.team/stops/Blhupcl2"], ["https://data.delijn.be/stops/306312", "https://mivb.openplanner.team/stops/5822F"], ["https://data.delijn.be/stops/304074", "https://tec.openplanner.team/stops/Bovepla1"], ["https://data.delijn.be/stops/408979", "https://tec.openplanner.team/stops/LWApt--2"], ["https://data.delijn.be/stops/408853", "https://tec.openplanner.team/stops/LFCdree2"], ["https://mivb.openplanner.team/stops/5455", "https://tec.openplanner.team/stops/Bwbfhip2"], ["http://irail.be/stations/NMBS/008832409", "https://data.delijn.be/stops/107726"], ["https://data.delijn.be/stops/408893", "https://tec.openplanner.team/stops/LFMvoge*"], ["http://irail.be/stations/NMBS/008728673", "https://tec.openplanner.team/stops/H4rx142a"], ["https://data.delijn.be/stops/300997", "https://mivb.openplanner.team/stops/6364"], ["https://data.delijn.be/stops/408779", "https://tec.openplanner.team/stops/LVlplan1"], ["https://data.delijn.be/stops/408833", "https://tec.openplanner.team/stops/LMgberw1"], ["https://data.delijn.be/stops/301062", "https://mivb.openplanner.team/stops/5015"], ["https://data.delijn.be/stops/302409", "https://mivb.openplanner.team/stops/8661"], ["https://data.delijn.be/stops/305914", "https://mivb.openplanner.team/stops/1303"], ["https://data.delijn.be/stops/305433", "https://mivb.openplanner.team/stops/5519"], ["http://irail.be/stations/NMBS/008841525", "https://data.delijn.be/stops/405720"], ["http://irail.be/stations/NMBS/008832573", "https://data.delijn.be/stops/407274"], ["https://data.delijn.be/stops/300781", "https://mivb.openplanner.team/stops/2522"], ["https://mivb.openplanner.team/stops/0230234", "https://tec.openplanner.team/stops/Baudtri1"], ["https://data.delijn.be/stops/306900", "https://tec.openplanner.team/stops/Bpienod2"], ["https://data.delijn.be/stops/408920", "https://tec.openplanner.team/stops/LTEkerk2"], ["https://data.delijn.be/stops/407643", "https://tec.openplanner.team/stops/LEMgren*"], ["http://irail.be/stations/NMBS/008824158", "https://data.delijn.be/stops/104889"], ["https://data.delijn.be/stops/300828", "https://mivb.openplanner.team/stops/2545"], ["https://data.delijn.be/stops/408848", "https://tec.openplanner.team/stops/LRmsmvo1"], ["http://irail.be/stations/NMBS/008865003", "https://tec.openplanner.team/stops/X801ajb"], ["https://data.delijn.be/stops/408877", "https://tec.openplanner.team/stops/LFMkrut3"], ["https://data.delijn.be/stops/400478", "https://tec.openplanner.team/stops/LBPmais2"], ["https://data.delijn.be/stops/509299", "https://tec.openplanner.team/stops/H4mo190a"], ["http://irail.be/stations/NMBS/008200110", "https://tec.openplanner.team/stops/X688aaa"], ["http://irail.be/stations/NMBS/008863115", "https://tec.openplanner.team/stops/N501kpa"], ["https://data.delijn.be/stops/301117", "https://mivb.openplanner.team/stops/1049F"], ["http://irail.be/stations/NMBS/008811528", "https://data.delijn.be/stops/304086"], ["http://irail.be/stations/NMBS/008843349", "https://tec.openplanner.team/stops/LAMfrai1"], ["http://irail.be/stations/NMBS/008833308", "https://data.delijn.be/stops/305200"], ["https://data.delijn.be/stops/308823", "https://tec.openplanner.team/stops/Blinbru1"], ["http://irail.be/stations/NMBS/008891314", "https://data.delijn.be/stops/502511"], ["https://data.delijn.be/stops/305264", "https://mivb.openplanner.team/stops/9783"], ["https://data.delijn.be/stops/306375", "https://tec.openplanner.team/stops/Boveker2"], ["http://irail.be/stations/NMBS/008843208", "https://tec.openplanner.team/stops/Lfhgare2"], ["http://irail.be/stations/NMBS/008861168", "https://tec.openplanner.team/stops/N534awc"], ["https://mivb.openplanner.team/stops/1472", "https://tec.openplanner.team/stops/Bwbfbon1"], ["http://irail.be/stations/NMBS/008200120", "https://tec.openplanner.team/stops/X626afb"], ["https://data.delijn.be/stops/305436", "https://mivb.openplanner.team/stops/5528F"], ["https://data.delijn.be/stops/405344", "https://tec.openplanner.team/stops/Bezeksj3"], ["http://irail.be/stations/NMBS/008844271", "https://tec.openplanner.team/stops/LTRfend2"], ["https://mivb.openplanner.team/stops/0650265", "https://tec.openplanner.team/stops/Bsgipmo1"], ["http://irail.be/stations/NMBS/008863156", "https://tec.openplanner.team/stops/N539asb"], ["http://irail.be/stations/NMBS/008821832", "https://data.delijn.be/stops/109584"], ["http://irail.be/stations/NMBS/008886009", "https://tec.openplanner.team/stops/H5at120b"], ["https://data.delijn.be/stops/405390", "https://tec.openplanner.team/stops/Braccen2"], ["https://data.delijn.be/stops/400466", "https://tec.openplanner.team/stops/LEMeg--2"], ["https://data.delijn.be/stops/304431", "https://tec.openplanner.team/stops/Brsgfso2"], ["https://data.delijn.be/stops/308981", "https://tec.openplanner.team/stops/Blhumga1"], ["https://data.delijn.be/stops/304169", "https://tec.openplanner.team/stops/Blemwob1"], ["https://data.delijn.be/stops/303223", "https://mivb.openplanner.team/stops/3860"], ["http://irail.be/stations/NMBS/008881570", "https://tec.openplanner.team/stops/H1fr114a"], ["https://data.delijn.be/stops/404666", "https://tec.openplanner.team/stops/LJUmc--1"], ["https://data.delijn.be/stops/405738", "https://tec.openplanner.team/stops/Lrclant3"], ["https://data.delijn.be/stops/410142", "https://tec.openplanner.team/stops/Llgverg2"], ["https://data.delijn.be/stops/406398", "https://tec.openplanner.team/stops/Blankal4"], ["https://data.delijn.be/stops/208761", "https://tec.openplanner.team/stops/H5rx122a"], ["https://data.delijn.be/stops/301109", "https://tec.openplanner.team/stops/Buccbou1"], ["http://irail.be/stations/NMBS/008812229", "https://data.delijn.be/stops/300286"], ["http://irail.be/stations/NMBS/008892338", "https://data.delijn.be/stops/501056"], ["https://data.delijn.be/stops/304097", "https://tec.openplanner.team/stops/Bovetwe1"], ["http://irail.be/stations/NMBS/008822772", "https://data.delijn.be/stops/104919"], ["https://data.delijn.be/stops/305295", "https://mivb.openplanner.team/stops/9635"], ["https://data.delijn.be/stops/300935", "https://mivb.openplanner.team/stops/3449"], ["http://irail.be/stations/NMBS/008814373", "https://mivb.openplanner.team/stops/9920F"], ["https://data.delijn.be/stops/300768", "https://mivb.openplanner.team/stops/2217"], ["https://data.delijn.be/stops/408927", "https://tec.openplanner.team/stops/LTEziho2"], ["http://irail.be/stations/NMBS/008814373", "https://mivb.openplanner.team/stops/5152"], ["https://data.delijn.be/stops/306647", "https://tec.openplanner.team/stops/Bsgicfo1"], ["http://irail.be/stations/NMBS/008811536", "https://tec.openplanner.team/stops/Brixcme1"], ["https://data.delijn.be/stops/303669", "https://mivb.openplanner.team/stops/1684F"], ["https://data.delijn.be/stops/406318", "https://tec.openplanner.team/stops/LMalune4"], ["https://data.delijn.be/stops/307208", "https://tec.openplanner.team/stops/Bcbqcha1"], ["https://data.delijn.be/stops/300962", "https://mivb.openplanner.team/stops/1754"], ["http://irail.be/stations/NMBS/008015345", "https://tec.openplanner.team/stops/LrTpost2"], ["https://data.delijn.be/stops/208411", "https://tec.openplanner.team/stops/H5rx110b"], ["https://data.delijn.be/stops/304705", "https://mivb.openplanner.team/stops/1597"], ["https://data.delijn.be/stops/301123", "https://tec.openplanner.team/stops/Buccham1"], ["http://irail.be/stations/NMBS/008892734", "https://data.delijn.be/stops/503021"], ["http://irail.be/stations/NMBS/008811544", "https://tec.openplanner.team/stops/Blmlbou1"], ["https://data.delijn.be/stops/308447", "https://tec.openplanner.team/stops/Bovetdo2"], ["http://irail.be/stations/NMBS/008895091", "https://data.delijn.be/stops/206977"], ["https://data.delijn.be/stops/305928", "https://mivb.openplanner.team/stops/5806"], ["http://irail.be/stations/NMBS/008891264", "https://data.delijn.be/stops/502653"], ["https://data.delijn.be/stops/301403", "https://mivb.openplanner.team/stops/5751"], ["https://data.delijn.be/stops/302898", "https://tec.openplanner.team/stops/Bhevgar2"], ["https://data.delijn.be/stops/306001", "https://mivb.openplanner.team/stops/0900468"], ["http://irail.be/stations/NMBS/008872413", "https://tec.openplanner.team/stops/Cflgazo2"], ["https://data.delijn.be/stops/305303", "https://mivb.openplanner.team/stops/9780"], ["http://irail.be/stations/NMBS/008821071", "https://data.delijn.be/stops/108965"], ["https://data.delijn.be/stops/302792", "https://mivb.openplanner.team/stops/1629"], ["https://data.delijn.be/stops/301944", "https://mivb.openplanner.team/stops/2519"], ["http://irail.be/stations/NMBS/008844057", "https://tec.openplanner.team/stops/Lveecol1"], ["https://data.delijn.be/stops/301032", "https://tec.openplanner.team/stops/Bsgipmo1"], ["https://data.delijn.be/stops/302155", "https://tec.openplanner.team/stops/Bhoealt2"], ["https://data.delijn.be/stops/306068", "https://tec.openplanner.team/stops/Btubcal2"], ["http://irail.be/stations/NMBS/008895745", "https://data.delijn.be/stops/206721"], ["http://irail.be/stations/NMBS/008200128", "https://tec.openplanner.team/stops/LoUzent1"], ["http://irail.be/stations/NMBS/008833233", "https://data.delijn.be/stops/304303"], ["http://irail.be/stations/NMBS/008891165", "https://data.delijn.be/stops/208649"], ["https://data.delijn.be/stops/300557", "https://tec.openplanner.team/stops/Bhmmbog1"], ["https://data.delijn.be/stops/508229", "https://tec.openplanner.team/stops/H4po130b"], ["http://irail.be/stations/NMBS/008861150", "https://tec.openplanner.team/stops/N534bsb"], ["https://data.delijn.be/stops/300927", "https://mivb.openplanner.team/stops/3460"], ["https://mivb.openplanner.team/stops/0230334", "https://tec.openplanner.team/stops/Bauddel2"], ["http://irail.be/stations/NMBS/008895422", "https://data.delijn.be/stops/208537"], ["https://data.delijn.be/stops/300935", "https://mivb.openplanner.team/stops/5802"], ["https://data.delijn.be/stops/504292", "https://tec.openplanner.team/stops/H4mo147a"], ["http://irail.be/stations/NMBS/008841319", "https://tec.openplanner.team/stops/LBIbois2"], ["https://data.delijn.be/stops/408601", "https://tec.openplanner.team/stops/LTotrui1"], ["https://data.delijn.be/stops/307877", "https://mivb.openplanner.team/stops/9853"], ["https://data.delijn.be/stops/403788", "https://tec.openplanner.team/stops/LWAbett2"], ["https://data.delijn.be/stops/410135", "https://tec.openplanner.team/stops/Lalverr2"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/300350"], ["https://data.delijn.be/stops/304449", "https://tec.openplanner.team/stops/Brsgleq1"], ["https://data.delijn.be/stops/300816", "https://mivb.openplanner.team/stops/7810154"], ["https://data.delijn.be/stops/408779", "https://tec.openplanner.team/stops/LOdmonu1"], ["https://data.delijn.be/stops/306932", "https://tec.openplanner.team/stops/Bboseco2"], ["https://data.delijn.be/stops/304030", "https://tec.openplanner.team/stops/Bovejme1"], ["https://data.delijn.be/stops/308544", "https://mivb.openplanner.team/stops/9553"], ["https://data.delijn.be/stops/307688", "https://tec.openplanner.team/stops/Blkbavo1"], ["http://irail.be/stations/NMBS/008822111", "https://data.delijn.be/stops/303358"], ["https://data.delijn.be/stops/308721", "https://tec.openplanner.team/stops/Bgoewat2"], ["https://data.delijn.be/stops/300297", "https://mivb.openplanner.team/stops/9802"], ["http://irail.be/stations/NMBS/008896230", "https://data.delijn.be/stops/508675"], ["https://data.delijn.be/stops/300741", "https://mivb.openplanner.team/stops/7710204"], ["http://irail.be/stations/NMBS/008863156", "https://tec.openplanner.team/stops/N539ahb"], ["https://data.delijn.be/stops/307160", "https://tec.openplanner.team/stops/Bhalomo1"], ["http://irail.be/stations/NMBS/008886009", "https://tec.openplanner.team/stops/H5at104a"], ["https://data.delijn.be/stops/307877", "https://mivb.openplanner.team/stops/2022"], ["http://irail.be/stations/NMBS/008884640", "https://tec.openplanner.team/stops/H1hc125b"], ["http://irail.be/stations/NMBS/008844347", "https://tec.openplanner.team/stops/LSXvill2"], ["http://irail.be/stations/NMBS/008821147", "https://data.delijn.be/stops/104310"], ["https://data.delijn.be/stops/301107", "https://tec.openplanner.team/stops/Bixlpat1"], ["https://data.delijn.be/stops/301016", "https://mivb.openplanner.team/stops/4169"], ["https://data.delijn.be/stops/306124", "https://tec.openplanner.team/stops/Bhalcbr1"], ["https://data.delijn.be/stops/410140", "https://tec.openplanner.team/stops/Lrctec-1"], ["https://data.delijn.be/stops/308819", "https://mivb.openplanner.team/stops/8411"], ["https://data.delijn.be/stops/208024", "https://tec.openplanner.team/stops/H1gy113a"], ["http://irail.be/stations/NMBS/008891009", "https://data.delijn.be/stops/500051"], ["https://data.delijn.be/stops/307697", "https://tec.openplanner.team/stops/Brsgcfl1"], ["https://data.delijn.be/stops/408910", "https://tec.openplanner.team/stops/LVu03--2"], ["https://data.delijn.be/stops/509452", "https://tec.openplanner.team/stops/H4rk101a"], ["http://irail.be/stations/NMBS/008815016", "https://data.delijn.be/stops/300862"], ["http://irail.be/stations/NMBS/008832565", "https://data.delijn.be/stops/409417"], ["http://irail.be/stations/NMBS/008872066", "https://tec.openplanner.team/stops/CMvil2"], ["http://irail.be/stations/NMBS/008821865", "https://data.delijn.be/stops/308503"], ["http://irail.be/stations/NMBS/008895448", "https://data.delijn.be/stops/206535"], ["http://irail.be/stations/NMBS/008891702", "https://data.delijn.be/stops/510013"], ["https://data.delijn.be/stops/509452", "https://tec.openplanner.team/stops/H4mo164a"], ["http://irail.be/stations/NMBS/008886504", "https://tec.openplanner.team/stops/H1le130b"], ["https://data.delijn.be/stops/302163", "https://tec.openplanner.team/stops/Bzluqga1"], ["https://data.delijn.be/stops/304535", "https://mivb.openplanner.team/stops/1410"], ["https://mivb.openplanner.team/stops/4288", "https://tec.openplanner.team/stops/Bwbfeta1"], ["http://irail.be/stations/NMBS/008812120", "https://data.delijn.be/stops/207958"], ["http://irail.be/stations/NMBS/008849023", "https://tec.openplanner.team/stops/LkEherg2"], ["https://data.delijn.be/stops/304450", "https://tec.openplanner.team/stops/Brsgece2"], ["https://data.delijn.be/stops/304018", "https://tec.openplanner.team/stops/Bovesol2"], ["http://irail.be/stations/NMBS/008814472", "https://mivb.openplanner.team/stops/2079"], ["https://data.delijn.be/stops/304929", "https://mivb.openplanner.team/stops/9751"], ["https://data.delijn.be/stops/207761", "https://tec.openplanner.team/stops/H5rx120a"], ["https://data.delijn.be/stops/208180", "https://tec.openplanner.team/stops/H5el110a"], ["http://irail.be/stations/NMBS/008885001", "https://tec.openplanner.team/stops/H4ty379a"], ["http://irail.be/stations/NMBS/008871837", "https://tec.openplanner.team/stops/Cldvign1"], ["https://data.delijn.be/stops/207769", "https://tec.openplanner.team/stops/H5rx114b"], ["https://data.delijn.be/stops/300311", "https://tec.openplanner.team/stops/Bzluegl2"], ["http://irail.be/stations/NMBS/008895620", "https://data.delijn.be/stops/208573"], ["https://data.delijn.be/stops/408428", "https://tec.openplanner.team/stops/LTowijk1"], ["https://data.delijn.be/stops/300927", "https://mivb.openplanner.team/stops/3766"], ["https://data.delijn.be/stops/301197", "https://tec.openplanner.team/stops/Bmlnegl4"], ["http://irail.be/stations/NMBS/008728600", "https://tec.openplanner.team/stops/H4ho119a"], ["https://data.delijn.be/stops/308957", "https://mivb.openplanner.team/stops/4308"], ["https://data.delijn.be/stops/308446", "https://tec.openplanner.team/stops/Bovetdo1"], ["https://data.delijn.be/stops/401415", "https://tec.openplanner.team/stops/Bixefra1"], ["https://data.delijn.be/stops/300954", "https://mivb.openplanner.team/stops/1782"], ["http://irail.be/stations/NMBS/008728654", "https://tec.openplanner.team/stops/H4tg170b"], ["https://mivb.openplanner.team/stops/5029", "https://tec.openplanner.team/stops/Buccmer1"], ["https://data.delijn.be/stops/308673", "https://mivb.openplanner.team/stops/1486B"], ["https://data.delijn.be/stops/300391", "https://tec.openplanner.team/stops/Bhalh311"], ["http://irail.be/stations/NMBS/008864501", "https://tec.openplanner.team/stops/N201aia"], ["http://irail.be/stations/NMBS/008883006", "https://tec.openplanner.team/stops/H3br110a"], ["https://data.delijn.be/stops/305918", "https://mivb.openplanner.team/stops/9802"], ["https://data.delijn.be/stops/405301", "https://tec.openplanner.team/stops/Blanmde2"], ["http://irail.be/stations/NMBS/008883220", "https://tec.openplanner.team/stops/H2me117a"], ["https://data.delijn.be/stops/307808", "https://mivb.openplanner.team/stops/1244"], ["https://data.delijn.be/stops/301074", "https://mivb.openplanner.team/stops/6018"], ["http://irail.be/stations/NMBS/008841434", "https://tec.openplanner.team/stops/LBveg--2"], ["https://data.delijn.be/stops/301196", "https://tec.openplanner.team/stops/Blthwav1"], ["http://irail.be/stations/NMBS/008843174", "https://tec.openplanner.team/stops/Lscbarg2"], ["https://data.delijn.be/stops/300024", "https://mivb.openplanner.team/stops/9659"], ["http://irail.be/stations/NMBS/008863446", "https://tec.openplanner.team/stops/N512ava"], ["https://data.delijn.be/stops/307969", "https://tec.openplanner.team/stops/Bbgever1"], ["http://irail.be/stations/NMBS/008895257", "https://data.delijn.be/stops/208689"], ["https://data.delijn.be/stops/408862", "https://tec.openplanner.team/stops/LFCscho2"], ["http://irail.be/stations/NMBS/008866258", "https://tec.openplanner.team/stops/X661ara"], ["https://data.delijn.be/stops/408978", "https://tec.openplanner.team/stops/LWAwegg2"], ["https://data.delijn.be/stops/308529", "https://tec.openplanner.team/stops/Bovevnd1"], ["http://irail.be/stations/NMBS/008882248", "https://tec.openplanner.team/stops/H2ca115b"], ["https://data.delijn.be/stops/302414", "https://tec.openplanner.team/stops/Bjodrdp2"], ["https://data.delijn.be/stops/305226", "https://mivb.openplanner.team/stops/9753"], ["https://data.delijn.be/stops/408851", "https://tec.openplanner.team/stops/LRmrode1"], ["http://irail.be/stations/NMBS/008896230", "https://data.delijn.be/stops/504201"], ["http://irail.be/stations/NMBS/008895869", "https://data.delijn.be/stops/206503"], ["https://mivb.openplanner.team/stops/0220233", "https://tec.openplanner.team/stops/Baudhan1"], ["http://irail.be/stations/NMBS/008010316", "https://data.delijn.be/stops/404726"], ["http://irail.be/stations/NMBS/008893260", "https://data.delijn.be/stops/202349"], ["http://irail.be/stations/NMBS/008865615", "https://tec.openplanner.team/stops/X346aka"], ["http://irail.be/stations/NMBS/008831088", "https://data.delijn.be/stops/403977"], ["http://irail.be/stations/NMBS/008864352", "https://tec.openplanner.team/stops/X999agb"], ["http://irail.be/stations/NMBS/008843166", "https://tec.openplanner.team/stops/Lfhhosp1"], ["http://irail.be/stations/NMBS/008812005", "https://data.delijn.be/stops/306049"], ["https://data.delijn.be/stops/301038", "https://mivb.openplanner.team/stops/3225"], ["https://data.delijn.be/stops/304178", "https://tec.openplanner.team/stops/Bbldgar1"], ["http://irail.be/stations/NMBS/008884715", "https://tec.openplanner.team/stops/H5bl119d"], ["https://data.delijn.be/stops/300810", "https://mivb.openplanner.team/stops/4125"], ["https://data.delijn.be/stops/301098", "https://tec.openplanner.team/stops/Bhalgja1"], ["https://data.delijn.be/stops/307111", "https://tec.openplanner.team/stops/Bjodsme2"], ["http://irail.be/stations/NMBS/008896909", "https://data.delijn.be/stops/503307"], ["http://irail.be/stations/NMBS/008821709", "https://data.delijn.be/stops/107051"], ["https://data.delijn.be/stops/300487", "https://tec.openplanner.team/stops/Bhalrat2"], ["http://irail.be/stations/NMBS/008845203", "https://tec.openplanner.team/stops/LTPcarr1"], ["https://data.delijn.be/stops/301043", "https://mivb.openplanner.team/stops/4594"], ["https://data.delijn.be/stops/305425", "https://mivb.openplanner.team/stops/1629"], ["https://data.delijn.be/stops/405658", "https://tec.openplanner.team/stops/LTowijk1"], ["http://irail.be/stations/NMBS/008833175", "https://data.delijn.be/stops/301919"], ["http://irail.be/stations/NMBS/008895646", "https://tec.openplanner.team/stops/Bspkker2"], ["https://data.delijn.be/stops/408979", "https://tec.openplanner.team/stops/LWApr%C3%A9s4"], ["http://irail.be/stations/NMBS/008871183", "https://tec.openplanner.team/stops/Cnapetr1"], ["http://irail.be/stations/NMBS/008863008", "https://tec.openplanner.team/stops/N501grc"], ["http://irail.be/stations/NMBS/008400219", "https://data.delijn.be/stops/408832"], ["https://data.delijn.be/stops/405732", "https://tec.openplanner.team/stops/Lrcastr1"], ["http://irail.be/stations/NMBS/008895570", "https://data.delijn.be/stops/208506"], ["https://data.delijn.be/stops/408894", "https://tec.openplanner.team/stops/LBegare1"], ["https://data.delijn.be/stops/509380", "https://tec.openplanner.team/stops/H4pl136a"], ["https://data.delijn.be/stops/402022", "https://tec.openplanner.team/stops/LFMkrut3"], ["http://irail.be/stations/NMBS/008400526", "https://data.delijn.be/stops/204029"], ["https://data.delijn.be/stops/204985", "https://tec.openplanner.team/stops/H5rx132a"], ["https://data.delijn.be/stops/304127", "https://mivb.openplanner.team/stops/2267"], ["https://mivb.openplanner.team/stops/1802", "https://tec.openplanner.team/stops/Bbxlner2"], ["http://irail.be/stations/NMBS/008811767", "https://tec.openplanner.team/stops/Bnetegl4"], ["https://data.delijn.be/stops/300744", "https://mivb.openplanner.team/stops/1326"], ["http://irail.be/stations/NMBS/008871811", "https://tec.openplanner.team/stops/Cthpibl2"], ["https://data.delijn.be/stops/301088", "https://mivb.openplanner.team/stops/6214"], ["https://data.delijn.be/stops/306775", "https://tec.openplanner.team/stops/Blanath1"], ["https://data.delijn.be/stops/304216", "https://mivb.openplanner.team/stops/0636"], ["https://data.delijn.be/stops/300789", "https://mivb.openplanner.team/stops/3752"], ["https://data.delijn.be/stops/304877", "https://mivb.openplanner.team/stops/9557"], ["http://irail.be/stations/NMBS/008843323", "https://tec.openplanner.team/stops/LAmeg--1"], ["http://irail.be/stations/NMBS/008844008", "https://tec.openplanner.team/stops/Lvegc--3"], ["https://data.delijn.be/stops/308105", "https://tec.openplanner.team/stops/Bsrgcur2"], ["https://data.delijn.be/stops/301995", "https://tec.openplanner.team/stops/Bhalber3"], ["https://data.delijn.be/stops/408851", "https://tec.openplanner.team/stops/LVu40--1"], ["https://data.delijn.be/stops/303949", "https://tec.openplanner.team/stops/Bbldgar1"], ["http://irail.be/stations/NMBS/008814456", "https://mivb.openplanner.team/stops/2074"], ["http://irail.be/stations/NMBS/008881562", "https://tec.openplanner.team/stops/H1ge115b"], ["http://irail.be/stations/NMBS/008821311", "https://data.delijn.be/stops/106902"], ["https://data.delijn.be/stops/301084", "https://mivb.openplanner.team/stops/2022"], ["http://irail.be/stations/NMBS/008871183", "https://tec.openplanner.team/stops/Chhplbe2"], ["https://data.delijn.be/stops/401401", "https://mivb.openplanner.team/stops/3765"], ["https://data.delijn.be/stops/305168", "https://tec.openplanner.team/stops/Btiegma1"], ["https://data.delijn.be/stops/303833", "https://mivb.openplanner.team/stops/0270114"], ["http://irail.be/stations/NMBS/008832433", "https://data.delijn.be/stops/401936"], ["https://data.delijn.be/stops/300957", "https://mivb.openplanner.team/stops/1723B"], ["http://irail.be/stations/NMBS/008869047", "https://tec.openplanner.team/stops/X615bda"], ["https://data.delijn.be/stops/302438", "https://tec.openplanner.team/stops/Bjodrrg2"], ["https://data.delijn.be/stops/305325", "https://mivb.openplanner.team/stops/9626"], ["https://data.delijn.be/stops/307913", "https://tec.openplanner.team/stops/Bhalgar2"], ["http://irail.be/stations/NMBS/008821121", "https://data.delijn.be/stops/104685"], ["https://data.delijn.be/stops/308731", "https://tec.openplanner.team/stops/Bgoemho1"], ["http://irail.be/stations/NMBS/008821238", "https://data.delijn.be/stops/102445"], ["https://data.delijn.be/stops/300346", "https://tec.openplanner.team/stops/Bbrlvil2"], ["https://data.delijn.be/stops/301030", "https://mivb.openplanner.team/stops/6430F"], ["https://data.delijn.be/stops/300408", "https://tec.openplanner.team/stops/Blemwro1"], ["https://data.delijn.be/stops/509385", "https://tec.openplanner.team/stops/H4pl121a"], ["http://irail.be/stations/NMBS/008719100", "https://tec.openplanner.team/stops/X696aea"], ["https://data.delijn.be/stops/208405", "https://tec.openplanner.team/stops/H5rx128b"], ["https://mivb.openplanner.team/stops/4853", "https://tec.openplanner.team/stops/Buccmer1"], ["http://irail.be/stations/NMBS/008833258", "https://data.delijn.be/stops/306843"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LFCdree2"], ["https://data.delijn.be/stops/208372", "https://tec.openplanner.team/stops/H5rx138a"], ["http://irail.be/stations/NMBS/008814118", "https://mivb.openplanner.team/stops/2952B"], ["https://data.delijn.be/stops/302437", "https://tec.openplanner.team/stops/Bjodcsb1"], ["https://mivb.openplanner.team/stops/1714", "https://tec.openplanner.team/stops/Bettars2"], ["https://mivb.openplanner.team/stops/3953", "https://tec.openplanner.team/stops/Bettgle1"], ["https://data.delijn.be/stops/308866", "https://mivb.openplanner.team/stops/1668"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N551aga"], ["http://irail.be/stations/NMBS/008871217", "https://tec.openplanner.team/stops/Crolach1"], ["http://irail.be/stations/NMBS/008884640", "https://tec.openplanner.team/stops/H5bl120b"], ["http://irail.be/stations/NMBS/008811189", "https://mivb.openplanner.team/stops/9729"], ["http://irail.be/stations/NMBS/008841442", "https://tec.openplanner.team/stops/LPUchpl2"], ["http://irail.be/stations/NMBS/008814308", "https://data.delijn.be/stops/307222"], ["https://data.delijn.be/stops/301033", "https://tec.openplanner.team/stops/Bsgimor2"], ["https://data.delijn.be/stops/401412", "https://mivb.openplanner.team/stops/1278"], ["https://data.delijn.be/stops/405703", "https://tec.openplanner.team/stops/Llgcamp1"], ["https://data.delijn.be/stops/307714", "https://tec.openplanner.team/stops/Buccpes2"], ["https://data.delijn.be/stops/305428", "https://mivb.openplanner.team/stops/9164"], ["https://data.delijn.be/stops/306286", "https://mivb.openplanner.team/stops/9825F"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N533ada"], ["https://data.delijn.be/stops/308095", "https://tec.openplanner.team/stops/Bzluegl1"], ["http://irail.be/stations/NMBS/008814175", "https://data.delijn.be/stops/304463"], ["https://data.delijn.be/stops/407205", "https://tec.openplanner.team/stops/LHTbaud1"], ["https://mivb.openplanner.team/stops/1132", "https://tec.openplanner.team/stops/Bbxltrv2"], ["https://data.delijn.be/stops/305226", "https://mivb.openplanner.team/stops/1121"], ["http://irail.be/stations/NMBS/008821022", "https://data.delijn.be/stops/104650"], ["https://data.delijn.be/stops/207796", "https://tec.openplanner.team/stops/H5rx105b"], ["http://irail.be/stations/NMBS/008871415", "https://tec.openplanner.team/stops/Cptrebe2"], ["https://data.delijn.be/stops/301009", "https://mivb.openplanner.team/stops/1236F"], ["https://data.delijn.be/stops/301034", "https://mivb.openplanner.team/stops/8331"], ["http://irail.be/stations/NMBS/008811528", "https://tec.openplanner.team/stops/Bgnvpos1"], ["http://irail.be/stations/NMBS/008845005", "https://tec.openplanner.team/stops/X790ajb"], ["https://data.delijn.be/stops/301010", "https://mivb.openplanner.team/stops/1094F"], ["http://irail.be/stations/NMBS/008811254", "https://data.delijn.be/stops/302777"], ["http://irail.be/stations/NMBS/008893443", "https://data.delijn.be/stops/207914"], ["https://data.delijn.be/stops/207776", "https://tec.openplanner.team/stops/H5rx135a"], ["http://irail.be/stations/NMBS/008872587", "https://tec.openplanner.team/stops/Bsmgpon2"], ["http://irail.be/stations/NMBS/008886348", "https://tec.openplanner.team/stops/H4lz157a"], ["https://data.delijn.be/stops/406565", "https://tec.openplanner.team/stops/LLxcana2"], ["https://data.delijn.be/stops/208402", "https://tec.openplanner.team/stops/H5rx128b"], ["https://data.delijn.be/stops/300987", "https://mivb.openplanner.team/stops/4550"], ["https://data.delijn.be/stops/300411", "https://mivb.openplanner.team/stops/9657"], ["http://irail.be/stations/NMBS/008863115", "https://tec.openplanner.team/stops/N501kea"], ["https://data.delijn.be/stops/304600", "https://mivb.openplanner.team/stops/1384"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/503727"], ["http://irail.be/stations/NMBS/008821600", "https://data.delijn.be/stops/107303"], ["https://data.delijn.be/stops/301047", "https://mivb.openplanner.team/stops/1792"], ["http://irail.be/stations/NMBS/008824158", "https://data.delijn.be/stops/104667"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/300402"], ["http://irail.be/stations/NMBS/008896412", "https://tec.openplanner.team/stops/H4co106a"], ["http://irail.be/stations/NMBS/008895067", "https://data.delijn.be/stops/207252"], ["https://mivb.openplanner.team/stops/5256", "https://tec.openplanner.team/stops/Buccbas2"], ["http://irail.be/stations/NMBS/008864915", "https://tec.openplanner.team/stops/N254ahb"], ["https://data.delijn.be/stops/404669", "https://tec.openplanner.team/stops/LSLhall*"], ["http://irail.be/stations/NMBS/008896230", "https://data.delijn.be/stops/505256"], ["http://irail.be/stations/NMBS/008843208", "https://tec.openplanner.team/stops/Lfhnrou1"], ["https://data.delijn.be/stops/303666", "https://mivb.openplanner.team/stops/1328"], ["https://data.delijn.be/stops/208182", "https://tec.openplanner.team/stops/H5el105a"], ["http://irail.be/stations/NMBS/008895448", "https://data.delijn.be/stops/209689"], ["https://data.delijn.be/stops/302806", "https://mivb.openplanner.team/stops/1673"], ["https://data.delijn.be/stops/408992", "https://tec.openplanner.team/stops/LWAlieg1"], ["https://data.delijn.be/stops/408840", "https://tec.openplanner.team/stops/LTEkl122"], ["http://irail.be/stations/NMBS/008872553", "https://tec.openplanner.team/stops/Bmarmpr2"], ["https://data.delijn.be/stops/505275", "https://tec.openplanner.team/stops/H4po126a"], ["https://data.delijn.be/stops/301986", "https://tec.openplanner.team/stops/Bhalark2"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/N524acb"], ["https://data.delijn.be/stops/302855", "https://tec.openplanner.team/stops/Blanmde1"], ["http://irail.be/stations/NMBS/008881125", "https://tec.openplanner.team/stops/H1eo103a"], ["http://irail.be/stations/NMBS/008821543", "https://data.delijn.be/stops/109055"], ["http://irail.be/stations/NMBS/008812211", "https://data.delijn.be/stops/300304"], ["https://mivb.openplanner.team/stops/1804", "https://tec.openplanner.team/stops/Bettlha2"], ["http://irail.be/stations/NMBS/008896396", "https://data.delijn.be/stops/504557"], ["https://data.delijn.be/stops/302887", "https://tec.openplanner.team/stops/Bhevhha1"], ["https://data.delijn.be/stops/403772", "https://tec.openplanner.team/stops/LBGvill2"], ["https://data.delijn.be/stops/300918", "https://mivb.openplanner.team/stops/5046"], ["https://data.delijn.be/stops/308673", "https://mivb.openplanner.team/stops/3751"], ["https://data.delijn.be/stops/308734", "https://tec.openplanner.team/stops/Bneecha2"], ["http://irail.be/stations/NMBS/008895729", "https://data.delijn.be/stops/206851"], ["https://data.delijn.be/stops/508995", "https://tec.openplanner.team/stops/H4po127a"], ["https://data.delijn.be/stops/207790", "https://tec.openplanner.team/stops/H5rx145a"], ["https://data.delijn.be/stops/407213", "https://tec.openplanner.team/stops/LBStec-2"], ["http://irail.be/stations/NMBS/008895778", "https://data.delijn.be/stops/207983"], ["http://irail.be/stations/NMBS/008884004", "https://tec.openplanner.team/stops/H1sg147a"], ["http://irail.be/stations/NMBS/008821659", "https://data.delijn.be/stops/103134"], ["http://irail.be/stations/NMBS/008822715", "https://data.delijn.be/stops/101182"], ["http://irail.be/stations/NMBS/008886561", "https://tec.openplanner.team/stops/H1ol137b"], ["https://data.delijn.be/stops/307716", "https://tec.openplanner.team/stops/Brsgges1"], ["http://irail.be/stations/NMBS/008872066", "https://tec.openplanner.team/stops/Cchdigu1"], ["http://irail.be/stations/NMBS/008811817", "https://tec.openplanner.team/stops/Bmoufil2"], ["https://data.delijn.be/stops/400457", "https://tec.openplanner.team/stops/LEBeg--1"], ["https://data.delijn.be/stops/307987", "https://mivb.openplanner.team/stops/3335F"], ["https://data.delijn.be/stops/300829", "https://mivb.openplanner.team/stops/4274"], ["https://data.delijn.be/stops/404843", "https://tec.openplanner.team/stops/LEBdoct2"], ["https://data.delijn.be/stops/408843", "https://tec.openplanner.team/stops/LRmstat2"], ["https://data.delijn.be/stops/507689", "https://tec.openplanner.team/stops/H4lu128a"], ["http://irail.be/stations/NMBS/008863560", "https://tec.openplanner.team/stops/N229asa"], ["http://irail.be/stations/NMBS/008896735", "https://data.delijn.be/stops/509411"], ["http://irail.be/stations/NMBS/008814456", "https://mivb.openplanner.team/stops/5416"], ["https://data.delijn.be/stops/302219", "https://tec.openplanner.team/stops/Bhoeboo2"], ["http://irail.be/stations/NMBS/008893047", "https://data.delijn.be/stops/200606"], ["https://data.delijn.be/stops/300746", "https://mivb.openplanner.team/stops/3760"], ["http://irail.be/stations/NMBS/008814357", "https://mivb.openplanner.team/stops/9659"], ["http://irail.be/stations/NMBS/008833274", "https://data.delijn.be/stops/304430"], ["https://data.delijn.be/stops/305916", "https://mivb.openplanner.team/stops/5102"], ["http://irail.be/stations/NMBS/008895232", "https://data.delijn.be/stops/208811"], ["http://irail.be/stations/NMBS/008884541", "https://tec.openplanner.team/stops/H1qu104b"], ["http://irail.be/stations/NMBS/008400058", "https://data.delijn.be/stops/408948"], ["http://irail.be/stations/NMBS/008891264", "https://data.delijn.be/stops/502664"], ["http://irail.be/stations/NMBS/008872413", "https://tec.openplanner.team/stops/Cflsncb3"], ["https://data.delijn.be/stops/302929", "https://tec.openplanner.team/stops/Blhusor1"], ["https://data.delijn.be/stops/300849", "https://mivb.openplanner.team/stops/2815B"], ["https://data.delijn.be/stops/209181", "https://tec.openplanner.team/stops/H5rx131b"], ["https://data.delijn.be/stops/408882", "https://tec.openplanner.team/stops/LFCvoer2"], ["https://data.delijn.be/stops/308871", "https://mivb.openplanner.team/stops/1840"], ["http://irail.be/stations/NMBS/008861119", "https://tec.openplanner.team/stops/N501apb"], ["http://irail.be/stations/NMBS/008822525", "https://data.delijn.be/stops/305974"], ["https://data.delijn.be/stops/301099", "https://tec.openplanner.team/stops/Bkrawil1"], ["https://data.delijn.be/stops/407751", "https://tec.openplanner.team/stops/LWOcomm2"], ["https://data.delijn.be/stops/509815", "https://tec.openplanner.team/stops/H4ef111a"], ["https://data.delijn.be/stops/400683", "https://tec.openplanner.team/stops/LHggeer1"], ["http://irail.be/stations/NMBS/008865540", "https://tec.openplanner.team/stops/X806abb"], ["http://irail.be/stations/NMBS/008842002", "https://tec.openplanner.team/stops/Laggare2"], ["http://irail.be/stations/NMBS/008822210", "https://data.delijn.be/stops/101424"], ["https://data.delijn.be/stops/505992", "https://tec.openplanner.team/stops/H4pl136a"], ["https://data.delijn.be/stops/300874", "https://mivb.openplanner.team/stops/4274"], ["http://irail.be/stations/NMBS/008885753", "https://tec.openplanner.team/stops/H4hx118a"], ["http://irail.be/stations/NMBS/008864931", "https://tec.openplanner.team/stops/N236anb"], ["http://irail.be/stations/NMBS/008831112", "https://data.delijn.be/stops/401559"], ["https://data.delijn.be/stops/408677", "https://tec.openplanner.team/stops/LRUhama2"], ["https://data.delijn.be/stops/400467", "https://tec.openplanner.team/stops/LEMec--1"], ["http://irail.be/stations/NMBS/008814266", "https://tec.openplanner.team/stops/Bwatgar5"], ["http://irail.be/stations/NMBS/008812211", "https://data.delijn.be/stops/301768"], ["http://irail.be/stations/NMBS/008889011", "https://tec.openplanner.team/stops/H4mo170a"], ["https://data.delijn.be/stops/504236", "https://tec.openplanner.team/stops/H4co142a"], ["http://irail.be/stations/NMBS/008884319", "https://tec.openplanner.team/stops/H1bo106b"], ["http://irail.be/stations/NMBS/008895067", "https://data.delijn.be/stops/207250"], ["http://irail.be/stations/NMBS/008821907", "https://data.delijn.be/stops/109123"], ["https://mivb.openplanner.team/stops/1995F", "https://tec.openplanner.team/stops/Bucccal4"], ["http://irail.be/stations/NMBS/008883121", "https://tec.openplanner.team/stops/H1ne144a"], ["http://irail.be/stations/NMBS/008893815", "https://data.delijn.be/stops/202988"], ["https://data.delijn.be/stops/307685", "https://mivb.openplanner.team/stops/1938"], ["https://data.delijn.be/stops/307198", "https://tec.openplanner.team/stops/Bhaleur1"], ["https://data.delijn.be/stops/307035", "https://tec.openplanner.team/stops/Balswwe1"], ["http://irail.be/stations/NMBS/008832243", "https://data.delijn.be/stops/404177"], ["http://irail.be/stations/NMBS/008894508", "https://data.delijn.be/stops/205340"], ["http://irail.be/stations/NMBS/008886546", "https://tec.openplanner.team/stops/H1gy111a"], ["https://data.delijn.be/stops/504240", "https://tec.openplanner.team/stops/H4co146b"], ["http://irail.be/stations/NMBS/008811155", "https://data.delijn.be/stops/300896"], ["https://mivb.openplanner.team/stops/1597", "https://tec.openplanner.team/stops/Baudtri2"], ["http://irail.be/stations/NMBS/008886009", "https://tec.openplanner.team/stops/H5at108b"], ["https://data.delijn.be/stops/304462", "https://tec.openplanner.team/stops/Brsggar2"], ["http://irail.be/stations/NMBS/008891660", "https://data.delijn.be/stops/506427"], ["http://irail.be/stations/NMBS/008822269", "https://data.delijn.be/stops/305242"], ["http://irail.be/stations/NMBS/008813045", "https://data.delijn.be/stops/304580"], ["http://irail.be/stations/NMBS/008842648", "https://tec.openplanner.team/stops/LTIdumo1"], ["https://data.delijn.be/stops/306913", "https://tec.openplanner.team/stops/Bbosgar1"], ["http://irail.be/stations/NMBS/008728671", "https://tec.openplanner.team/stops/H4rx142a"], ["http://irail.be/stations/NMBS/008883238", "https://tec.openplanner.team/stops/H2mg135a"], ["http://irail.be/stations/NMBS/008814365", "https://data.delijn.be/stops/303229"], ["https://data.delijn.be/stops/306123", "https://tec.openplanner.team/stops/Bhalcbr2"], ["https://data.delijn.be/stops/302397", "https://tec.openplanner.team/stops/Bpecdel2"], ["https://data.delijn.be/stops/408982", "https://tec.openplanner.team/stops/LWAaxhe2"], ["https://data.delijn.be/stops/305295", "https://mivb.openplanner.team/stops/3001B"], ["http://irail.be/stations/NMBS/008812005", "https://mivb.openplanner.team/stops/0526"], ["https://data.delijn.be/stops/303632", "https://mivb.openplanner.team/stops/6603"], ["http://irail.be/stations/NMBS/008893054", "https://data.delijn.be/stops/201637"], ["https://data.delijn.be/stops/300961", "https://mivb.openplanner.team/stops/8261"], ["http://irail.be/stations/NMBS/008841459", "https://tec.openplanner.team/stops/LJesole1"], ["https://data.delijn.be/stops/300357", "https://tec.openplanner.team/stops/Bbrlpar1"], ["https://data.delijn.be/stops/307241", "https://mivb.openplanner.team/stops/6806F"], ["http://irail.be/stations/NMBS/008861549", "https://tec.openplanner.team/stops/Bmsgpfo1"], ["https://data.delijn.be/stops/301080", "https://mivb.openplanner.team/stops/0410446"], ["http://irail.be/stations/NMBS/008200132", "https://tec.openplanner.team/stops/X791aba"], ["http://irail.be/stations/NMBS/008833134", "https://data.delijn.be/stops/300508"], ["http://irail.be/stations/NMBS/007015440", "https://data.delijn.be/stops/501508"], ["https://data.delijn.be/stops/300955", "https://mivb.openplanner.team/stops/5270F"], ["https://data.delijn.be/stops/304547", "https://mivb.openplanner.team/stops/9660"], ["https://data.delijn.be/stops/304461", "https://tec.openplanner.team/stops/Brsgter2"], ["https://mivb.openplanner.team/stops/3158B", "https://tec.openplanner.team/stops/Bbxlner2"], ["https://data.delijn.be/stops/505992", "https://tec.openplanner.team/stops/H4ar104b"], ["https://data.delijn.be/stops/505831", "https://tec.openplanner.team/stops/H4po125b"], ["https://data.delijn.be/stops/301925", "https://mivb.openplanner.team/stops/9876"], ["https://mivb.openplanner.team/stops/2118", "https://tec.openplanner.team/stops/Buccpor1"], ["https://data.delijn.be/stops/307225", "https://tec.openplanner.team/stops/Bhalgar2"], ["http://irail.be/stations/NMBS/008872306", "https://tec.openplanner.team/stops/Cgymast1"], ["https://data.delijn.be/stops/405655", "https://tec.openplanner.team/stops/LBevill1"], ["http://irail.be/stations/NMBS/008812013", "https://mivb.openplanner.team/stops/0471"], ["https://data.delijn.be/stops/300991", "https://mivb.openplanner.team/stops/4550"], ["https://data.delijn.be/stops/300940", "https://mivb.openplanner.team/stops/3280"], ["http://irail.be/stations/NMBS/008811411", "https://mivb.openplanner.team/stops/5261"], ["https://data.delijn.be/stops/300906", "https://tec.openplanner.team/stops/Bixlpat1"], ["https://data.delijn.be/stops/405430", "https://tec.openplanner.team/stops/Bezebru2"], ["https://data.delijn.be/stops/303669", "https://mivb.openplanner.team/stops/1080"], ["https://data.delijn.be/stops/401398", "https://mivb.openplanner.team/stops/3463"], ["http://irail.be/stations/NMBS/008822137", "https://data.delijn.be/stops/206332"], ["http://irail.be/stations/NMBS/008833605", "https://data.delijn.be/stops/405352"], ["http://irail.be/stations/NMBS/008894714", "https://data.delijn.be/stops/205705"], ["https://data.delijn.be/stops/301153", "https://tec.openplanner.team/stops/Buccpin1"], ["https://data.delijn.be/stops/307682", "https://mivb.openplanner.team/stops/5723B"], ["http://irail.be/stations/NMBS/008833266", "https://data.delijn.be/stops/304415"], ["https://data.delijn.be/stops/307791", "https://mivb.openplanner.team/stops/1368"], ["https://data.delijn.be/stops/304873", "https://mivb.openplanner.team/stops/9577"], ["http://irail.be/stations/NMBS/008865565", "https://tec.openplanner.team/stops/X850aja"], ["https://data.delijn.be/stops/300801", "https://mivb.openplanner.team/stops/1475"], ["https://data.delijn.be/stops/401650", "https://tec.openplanner.team/stops/Brach122"], ["https://data.delijn.be/stops/405343", "https://tec.openplanner.team/stops/Bneesjo2"], ["http://irail.be/stations/NMBS/008811726", "https://tec.openplanner.team/stops/Bwavmes2"], ["http://irail.be/stations/NMBS/008814415", "https://data.delijn.be/stops/303322"], ["https://data.delijn.be/stops/300771", "https://mivb.openplanner.team/stops/8672"], ["https://data.delijn.be/stops/404671", "https://tec.openplanner.team/stops/LJUxhen3"], ["https://data.delijn.be/stops/300852", "https://mivb.openplanner.team/stops/6653F"], ["https://data.delijn.be/stops/300769", "https://mivb.openplanner.team/stops/6860G"], ["https://data.delijn.be/stops/300933", "https://mivb.openplanner.team/stops/2995"], ["https://data.delijn.be/stops/303648", "https://mivb.openplanner.team/stops/5700G"], ["https://data.delijn.be/stops/307000", "https://mivb.openplanner.team/stops/9659"], ["http://irail.be/stations/NMBS/008849064", "https://data.delijn.be/stops/408802"], ["https://data.delijn.be/stops/307504", "https://tec.openplanner.team/stops/Brsrpar1"], ["https://data.delijn.be/stops/300934", "https://mivb.openplanner.team/stops/7269"], ["http://irail.be/stations/NMBS/008895125", "https://data.delijn.be/stops/205986"], ["http://irail.be/stations/NMBS/008811817", "https://tec.openplanner.team/stops/Bcsegar1"], ["http://irail.be/stations/NMBS/008200132", "https://tec.openplanner.team/stops/X769arb"], ["http://irail.be/stations/NMBS/008885704", "https://tec.openplanner.team/stops/H4mo142a"], ["https://data.delijn.be/stops/208357", "https://tec.openplanner.team/stops/H5rx121b"], ["https://data.delijn.be/stops/308105", "https://tec.openplanner.team/stops/Bbeagae2"], ["http://irail.be/stations/NMBS/008896503", "https://data.delijn.be/stops/509154"], ["http://irail.be/stations/NMBS/008833001", "https://data.delijn.be/stops/303135"], ["https://data.delijn.be/stops/305398", "https://mivb.openplanner.team/stops/1328"], ["https://data.delijn.be/stops/400494", "https://tec.openplanner.team/stops/LBSneuv2"], ["http://irail.be/stations/NMBS/008863446", "https://tec.openplanner.team/stops/N512ala"], ["http://irail.be/stations/NMBS/008891033", "https://data.delijn.be/stops/502643"], ["http://irail.be/stations/NMBS/008812047", "https://mivb.openplanner.team/stops/1065"], ["https://data.delijn.be/stops/302888", "https://tec.openplanner.team/stops/Bhevhha1"], ["http://irail.be/stations/NMBS/008821543", "https://data.delijn.be/stops/107315"], ["http://irail.be/stations/NMBS/008821006", "https://data.delijn.be/stops/101725"], ["https://data.delijn.be/stops/300785", "https://mivb.openplanner.team/stops/8701"], ["https://data.delijn.be/stops/300974", "https://mivb.openplanner.team/stops/6469"], ["http://irail.be/stations/NMBS/008814423", "https://mivb.openplanner.team/stops/9685"], ["http://irail.be/stations/NMBS/008821824", "https://data.delijn.be/stops/108162"], ["http://irail.be/stations/NMBS/008832458", "https://data.delijn.be/stops/109259"], ["http://irail.be/stations/NMBS/008886561", "https://tec.openplanner.team/stops/H1ol137a"], ["http://irail.be/stations/NMBS/008893054", "https://data.delijn.be/stops/200603"], ["http://irail.be/stations/NMBS/008833209", "https://data.delijn.be/stops/109048"], ["https://mivb.openplanner.team/stops/2721", "https://tec.openplanner.team/stops/Bixlozo2"], ["https://mivb.openplanner.team/stops/6408", "https://tec.openplanner.team/stops/Bixllep2"], ["http://irail.be/stations/NMBS/008812260", "https://data.delijn.be/stops/306705"], ["https://data.delijn.be/stops/400496", "https://tec.openplanner.team/stops/LLxcbr-2"], ["http://irail.be/stations/NMBS/008811247", "https://data.delijn.be/stops/306557"], ["http://irail.be/stations/NMBS/008811601", "https://tec.openplanner.team/stops/Blimmer2"], ["https://data.delijn.be/stops/304191", "https://mivb.openplanner.team/stops/3337F"], ["https://data.delijn.be/stops/301080", "https://mivb.openplanner.team/stops/1571"], ["https://data.delijn.be/stops/408897", "https://tec.openplanner.team/stops/LFPkast1"], ["http://irail.be/stations/NMBS/008831401", "https://data.delijn.be/stops/308671"], ["https://data.delijn.be/stops/305297", "https://mivb.openplanner.team/stops/9626"], ["https://data.delijn.be/stops/302423", "https://tec.openplanner.team/stops/Bsrgegl2"], ["http://irail.be/stations/NMBS/008861440", "https://tec.openplanner.team/stops/N521ala"], ["https://data.delijn.be/stops/307142", "https://mivb.openplanner.team/stops/2539F"], ["https://data.delijn.be/stops/305238", "https://tec.openplanner.team/stops/Bspkdon1"], ["http://irail.be/stations/NMBS/008893211", "https://data.delijn.be/stops/200420"], ["https://data.delijn.be/stops/301027", "https://mivb.openplanner.team/stops/2470"], ["https://data.delijn.be/stops/405734", "https://tec.openplanner.team/stops/Lrchype2"], ["https://data.delijn.be/stops/304190", "https://mivb.openplanner.team/stops/3338F"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/503217"], ["http://irail.be/stations/NMBS/008822137", "https://data.delijn.be/stops/207732"], ["http://irail.be/stations/NMBS/008874724", "https://tec.openplanner.team/stops/N534awb"], ["https://data.delijn.be/stops/401412", "https://mivb.openplanner.team/stops/4364"], ["https://data.delijn.be/stops/301052", "https://mivb.openplanner.team/stops/0460250"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bsmgmas1"], ["https://data.delijn.be/stops/301072", "https://mivb.openplanner.team/stops/1114B"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N570aba"], ["http://irail.be/stations/NMBS/008814373", "https://data.delijn.be/stops/303121"], ["https://data.delijn.be/stops/302201", "https://tec.openplanner.team/stops/Bhoealt2"], ["https://data.delijn.be/stops/302418", "https://tec.openplanner.team/stops/Bjodeco1"], ["http://irail.be/stations/NMBS/008833266", "https://data.delijn.be/stops/306847"], ["https://data.delijn.be/stops/305497", "https://mivb.openplanner.team/stops/2015"], ["http://irail.be/stations/NMBS/008841731", "https://tec.openplanner.team/stops/LPAeg--2"], ["http://irail.be/stations/NMBS/008882248", "https://tec.openplanner.team/stops/Ccpetan2"], ["https://data.delijn.be/stops/407642", "https://tec.openplanner.team/stops/LEMfort2"], ["https://data.delijn.be/stops/303226", "https://mivb.openplanner.team/stops/2661"], ["https://data.delijn.be/stops/308818", "https://mivb.openplanner.team/stops/8422"], ["https://mivb.openplanner.team/stops/5020", "https://tec.openplanner.team/stops/Bsgimca1"], ["https://data.delijn.be/stops/307640", "https://mivb.openplanner.team/stops/1954"], ["https://data.delijn.be/stops/306400", "https://mivb.openplanner.team/stops/6648F"], ["https://data.delijn.be/stops/305224", "https://tec.openplanner.team/stops/H1mk115a"], ["https://data.delijn.be/stops/305324", "https://mivb.openplanner.team/stops/9788"], ["http://irail.be/stations/NMBS/008892601", "https://data.delijn.be/stops/209120"], ["http://irail.be/stations/NMBS/008821048", "https://data.delijn.be/stops/105387"], ["https://data.delijn.be/stops/308855", "https://mivb.openplanner.team/stops/5403"], ["https://data.delijn.be/stops/301069", "https://mivb.openplanner.team/stops/8382"], ["https://data.delijn.be/stops/307791", "https://mivb.openplanner.team/stops/1008"], ["https://mivb.openplanner.team/stops/5453", "https://tec.openplanner.team/stops/Bwbfckr2"], ["https://data.delijn.be/stops/401416", "https://mivb.openplanner.team/stops/1807"], ["https://data.delijn.be/stops/508032", "https://tec.openplanner.team/stops/H4ef113b"], ["https://data.delijn.be/stops/403765", "https://tec.openplanner.team/stops/LBGvill2"], ["https://mivb.openplanner.team/stops/3508F", "https://tec.openplanner.team/stops/Bixlfla1"], ["http://irail.be/stations/NMBS/008821451", "https://data.delijn.be/stops/105859"], ["http://irail.be/stations/NMBS/008831807", "https://data.delijn.be/stops/407897"], ["https://data.delijn.be/stops/205982", "https://tec.openplanner.team/stops/H4an105a"], ["https://data.delijn.be/stops/509295", "https://tec.openplanner.team/stops/H4lu127a"], ["https://data.delijn.be/stops/408854", "https://tec.openplanner.team/stops/LFCkerk2"], ["http://irail.be/stations/NMBS/008891157", "https://data.delijn.be/stops/200820"], ["https://data.delijn.be/stops/408903", "https://tec.openplanner.team/stops/LFPho8a2"], ["https://data.delijn.be/stops/407204", "https://tec.openplanner.team/stops/LHTdelh1"], ["https://data.delijn.be/stops/303224", "https://mivb.openplanner.team/stops/3860"], ["https://data.delijn.be/stops/301116", "https://mivb.openplanner.team/stops/5603"], ["http://irail.be/stations/NMBS/008896115", "https://data.delijn.be/stops/503211"], ["http://irail.be/stations/NMBS/008822343", "https://data.delijn.be/stops/105189"], ["https://data.delijn.be/stops/207774", "https://tec.openplanner.team/stops/H5rx136b"], ["http://irail.be/stations/NMBS/008832375", "https://data.delijn.be/stops/403001"], ["https://data.delijn.be/stops/308732", "https://tec.openplanner.team/stops/Bneesj32"], ["https://data.delijn.be/stops/308732", "https://tec.openplanner.team/stops/Bgoemho2"], ["http://irail.be/stations/NMBS/008893013", "https://data.delijn.be/stops/205984"], ["http://irail.be/stations/NMBS/008811734", "https://tec.openplanner.team/stops/Bwavfbe1"], ["https://data.delijn.be/stops/304548", "https://mivb.openplanner.team/stops/9660"], ["https://data.delijn.be/stops/300344", "https://tec.openplanner.team/stops/Bbrlpar2"], ["https://data.delijn.be/stops/302398", "https://mivb.openplanner.team/stops/6856"], ["https://data.delijn.be/stops/207780", "https://tec.openplanner.team/stops/H5rx101a"], ["https://data.delijn.be/stops/504234", "https://tec.openplanner.team/stops/H4co108a"], ["http://irail.be/stations/NMBS/008866142", "https://tec.openplanner.team/stops/X670ala"], ["https://data.delijn.be/stops/303831", "https://mivb.openplanner.team/stops/6649F"], ["https://data.delijn.be/stops/308675", "https://mivb.openplanner.team/stops/1018"], ["https://data.delijn.be/stops/408843", "https://tec.openplanner.team/stops/LRmkerk2"], ["https://data.delijn.be/stops/405421", "https://tec.openplanner.team/stops/Blanath1"], ["http://irail.be/stations/NMBS/008833605", "https://data.delijn.be/stops/302831"], ["http://irail.be/stations/NMBS/008863461", "https://tec.openplanner.team/stops/N503abb"], ["https://data.delijn.be/stops/307791", "https://mivb.openplanner.team/stops/1755"], ["http://irail.be/stations/NMBS/008872579", "https://tec.openplanner.team/stops/Btilsce1"], ["https://data.delijn.be/stops/301026", "https://tec.openplanner.team/stops/Bsgipha1"], ["https://data.delijn.be/stops/308724", "https://tec.openplanner.team/stops/Bboseco1"], ["https://data.delijn.be/stops/307827", "https://mivb.openplanner.team/stops/9876"], ["https://data.delijn.be/stops/307726", "https://tec.openplanner.team/stops/Bbchm381"], ["https://data.delijn.be/stops/303631", "https://mivb.openplanner.team/stops/6650G"], ["http://irail.be/stations/NMBS/008863461", "https://tec.openplanner.team/stops/N503alb"], ["http://irail.be/stations/NMBS/008871217", "https://tec.openplanner.team/stops/Cropcan2"], ["http://irail.be/stations/NMBS/008841558", "https://tec.openplanner.team/stops/Llgfoss1"], ["https://data.delijn.be/stops/300487", "https://tec.openplanner.team/stops/Bhaleur1"], ["https://data.delijn.be/stops/503228", "https://tec.openplanner.team/stops/H4eh104b"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1mj129b"], ["http://irail.be/stations/NMBS/008885530", "https://tec.openplanner.team/stops/H4vz371b"], ["https://data.delijn.be/stops/301030", "https://mivb.openplanner.team/stops/5018"], ["http://irail.be/stations/NMBS/008821519", "https://data.delijn.be/stops/105856"], ["https://data.delijn.be/stops/304133", "https://tec.openplanner.team/stops/Bbghpln1"], ["https://data.delijn.be/stops/400465", "https://tec.openplanner.team/stops/LPleclu2"], ["http://irail.be/stations/NMBS/008832045", "https://data.delijn.be/stops/407100"], ["https://data.delijn.be/stops/301398", "https://mivb.openplanner.team/stops/5923"], ["https://data.delijn.be/stops/305346", "https://tec.openplanner.team/stops/Bbgerlr2"], ["http://irail.be/stations/NMBS/008881463", "https://tec.openplanner.team/stops/H2sb223a"], ["https://data.delijn.be/stops/405711", "https://tec.openplanner.team/stops/Llghugo2"], ["http://irail.be/stations/NMBS/007015440", "https://data.delijn.be/stops/504553"], ["https://data.delijn.be/stops/300952", "https://mivb.openplanner.team/stops/8471"], ["https://data.delijn.be/stops/304109", "https://tec.openplanner.team/stops/Bovejme1"], ["http://irail.be/stations/NMBS/008865540", "https://tec.openplanner.team/stops/X808aka"], ["http://irail.be/stations/NMBS/008400131", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/308644", "https://tec.openplanner.team/stops/Bovepla2"], ["https://mivb.openplanner.team/stops/3572", "https://tec.openplanner.team/stops/Bixlfla2"], ["http://irail.be/stations/NMBS/008893534", "https://data.delijn.be/stops/206246"], ["https://data.delijn.be/stops/307142", "https://mivb.openplanner.team/stops/0350240"], ["https://data.delijn.be/stops/300801", "https://mivb.openplanner.team/stops/1541"], ["https://data.delijn.be/stops/509380", "https://tec.openplanner.team/stops/H4pl114a"], ["https://data.delijn.be/stops/303231", "https://tec.openplanner.team/stops/Bhevl3l1"], ["https://data.delijn.be/stops/408884", "https://tec.openplanner.team/stops/LWRbois2"], ["https://data.delijn.be/stops/208872", "https://tec.openplanner.team/stops/H5rx147a"], ["http://irail.be/stations/NMBS/008874054", "https://tec.openplanner.team/stops/Ccicent3"], ["https://data.delijn.be/stops/307921", "https://mivb.openplanner.team/stops/4250"], ["http://irail.be/stations/NMBS/008895638", "https://data.delijn.be/stops/307327"], ["http://irail.be/stations/NMBS/008895505", "https://data.delijn.be/stops/208046"], ["http://irail.be/stations/NMBS/008842655", "https://tec.openplanner.team/stops/LESmich2"], ["http://irail.be/stations/NMBS/008895760", "https://data.delijn.be/stops/217011"], ["http://irail.be/stations/NMBS/008894672", "https://data.delijn.be/stops/205668"], ["https://data.delijn.be/stops/302869", "https://tec.openplanner.team/stops/Bhevjal1"], ["http://irail.be/stations/NMBS/008824240", "https://data.delijn.be/stops/107957"], ["http://irail.be/stations/NMBS/008811759", "https://tec.openplanner.team/stops/Bgzdgth1"], ["https://data.delijn.be/stops/307698", "https://tec.openplanner.team/stops/Brsgsan2"], ["http://irail.be/stations/NMBS/008200102", "https://tec.openplanner.team/stops/X685apa"], ["https://data.delijn.be/stops/304202", "https://tec.openplanner.team/stops/Brsregl3"], ["https://data.delijn.be/stops/300964", "https://tec.openplanner.team/stops/Baudvdu2"], ["https://data.delijn.be/stops/208184", "https://tec.openplanner.team/stops/H5rx104a"], ["https://data.delijn.be/stops/300922", "https://mivb.openplanner.team/stops/1534"], ["http://irail.be/stations/NMBS/008883113", "https://tec.openplanner.team/stops/H3so163b"], ["http://irail.be/stations/NMBS/008881562", "https://tec.openplanner.team/stops/H1bs110c"], ["https://data.delijn.be/stops/302870", "https://tec.openplanner.team/stops/Bhevjal1"], ["https://data.delijn.be/stops/302451", "https://tec.openplanner.team/stops/Bzluvil2"], ["http://irail.be/stations/NMBS/008821030", "https://data.delijn.be/stops/106000"], ["https://data.delijn.be/stops/304838", "https://mivb.openplanner.team/stops/9556"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/106498"], ["http://irail.be/stations/NMBS/008881570", "https://tec.openplanner.team/stops/H1fr152a"], ["http://irail.be/stations/NMBS/008200101", "https://tec.openplanner.team/stops/X685apb"], ["https://data.delijn.be/stops/405738", "https://tec.openplanner.team/stops/Lrc594-1"], ["http://irail.be/stations/NMBS/008891157", "https://data.delijn.be/stops/200851"], ["https://data.delijn.be/stops/306068", "https://tec.openplanner.team/stops/Blemwro2"], ["https://data.delijn.be/stops/508749", "https://tec.openplanner.team/stops/H4do106a"], ["https://data.delijn.be/stops/303648", "https://mivb.openplanner.team/stops/2857B"], ["https://data.delijn.be/stops/505391", "https://tec.openplanner.team/stops/H4po125a"], ["https://data.delijn.be/stops/306900", "https://tec.openplanner.team/stops/Boplcsj2"], ["https://data.delijn.be/stops/504231", "https://tec.openplanner.team/stops/H4co148a"], ["https://data.delijn.be/stops/408963", "https://tec.openplanner.team/stops/LWAchpg1"], ["https://data.delijn.be/stops/400496", "https://tec.openplanner.team/stops/LEBmoul1"], ["http://irail.be/stations/NMBS/008814373", "https://mivb.openplanner.team/stops/2664"], ["https://data.delijn.be/stops/307716", "https://tec.openplanner.team/stops/Brsgepr2"], ["https://data.delijn.be/stops/400665", "https://tec.openplanner.team/stops/LWAaxhe2"], ["https://data.delijn.be/stops/209188", "https://tec.openplanner.team/stops/H5rx137b"], ["https://data.delijn.be/stops/300768", "https://mivb.openplanner.team/stops/2259F"], ["http://irail.be/stations/NMBS/008896008", "https://data.delijn.be/stops/510022"], ["https://data.delijn.be/stops/300991", "https://mivb.openplanner.team/stops/3762"], ["https://data.delijn.be/stops/301005", "https://mivb.openplanner.team/stops/4157"], ["https://data.delijn.be/stops/408832", "https://tec.openplanner.team/stops/LMgkrui2"], ["http://irail.be/stations/NMBS/008866662", "https://tec.openplanner.team/stops/X614asb"], ["https://data.delijn.be/stops/300942", "https://mivb.openplanner.team/stops/3130"], ["https://data.delijn.be/stops/300740", "https://mivb.openplanner.team/stops/2550"], ["https://data.delijn.be/stops/300938", "https://mivb.openplanner.team/stops/6805F"], ["https://data.delijn.be/stops/304872", "https://mivb.openplanner.team/stops/9577"], ["http://irail.be/stations/NMBS/008822772", "https://data.delijn.be/stops/107858"], ["https://mivb.openplanner.team/stops/1673", "https://tec.openplanner.team/stops/Bkrawil1"], ["http://irail.be/stations/NMBS/007015440", "https://data.delijn.be/stops/501409"], ["https://data.delijn.be/stops/307717", "https://tec.openplanner.team/stops/Bwbfbon2"], ["http://irail.be/stations/NMBS/007015440", "https://data.delijn.be/stops/505401"], ["http://irail.be/stations/NMBS/008893708", "https://data.delijn.be/stops/202537"], ["https://data.delijn.be/stops/508023", "https://tec.openplanner.team/stops/H4ae102b"], ["https://data.delijn.be/stops/408853", "https://tec.openplanner.team/stops/LFChofv1"], ["http://irail.be/stations/NMBS/008821238", "https://data.delijn.be/stops/101915"], ["https://mivb.openplanner.team/stops/3556", "https://tec.openplanner.team/stops/Bauddel1"], ["http://irail.be/stations/NMBS/008892007", "https://data.delijn.be/stops/202350"], ["http://irail.be/stations/NMBS/008728673", "https://tec.openplanner.team/stops/H4rx142b"], ["http://irail.be/stations/NMBS/008814134", "https://tec.openplanner.team/stops/Bucccal3"], ["https://data.delijn.be/stops/301133", "https://mivb.openplanner.team/stops/2714"], ["https://data.delijn.be/stops/308855", "https://mivb.openplanner.team/stops/2874"], ["https://data.delijn.be/stops/206778", "https://tec.openplanner.team/stops/H1gy115a"], ["https://data.delijn.be/stops/408833", "https://tec.openplanner.team/stops/LMgberw2"], ["http://irail.be/stations/NMBS/008831088", "https://data.delijn.be/stops/402936"], ["http://irail.be/stations/NMBS/008895638", "https://tec.openplanner.team/stops/Bspkbeu2"], ["http://irail.be/stations/NMBS/008882107", "https://tec.openplanner.team/stops/H2ll186b"], ["https://data.delijn.be/stops/408848", "https://tec.openplanner.team/stops/LRmrode2"], ["http://irail.be/stations/NMBS/008864501", "https://tec.openplanner.team/stops/N201ajb"], ["http://irail.be/stations/NMBS/008822277", "https://data.delijn.be/stops/105132"], ["https://data.delijn.be/stops/408877", "https://tec.openplanner.team/stops/LFMkrut2"], ["https://data.delijn.be/stops/304932", "https://mivb.openplanner.team/stops/9751"], ["https://data.delijn.be/stops/400478", "https://tec.openplanner.team/stops/LBPmais1"], ["https://data.delijn.be/stops/303580", "https://mivb.openplanner.team/stops/9701"], ["https://data.delijn.be/stops/408842", "https://tec.openplanner.team/stops/LRmstat2"], ["http://irail.be/stations/NMBS/008812070", "https://data.delijn.be/stops/303735"], ["http://irail.be/stations/NMBS/008843208", "https://tec.openplanner.team/stops/Lfhgare1"], ["https://data.delijn.be/stops/209195", "https://tec.openplanner.team/stops/H5rx146b"], ["https://data.delijn.be/stops/409000", "https://tec.openplanner.team/stops/LWAvand1"], ["https://data.delijn.be/stops/302425", "https://tec.openplanner.team/stops/Bsjgegl1"], ["https://data.delijn.be/stops/405701", "https://tec.openplanner.team/stops/Llgplat2"], ["http://irail.be/stations/NMBS/008863156", "https://tec.openplanner.team/stops/N539ata"], ["http://irail.be/stations/NMBS/008886009", "https://tec.openplanner.team/stops/H5at120a"], ["http://irail.be/stations/NMBS/008891033", "https://data.delijn.be/stops/502140"], ["https://data.delijn.be/stops/300759", "https://mivb.openplanner.team/stops/6005"], ["http://irail.be/stations/NMBS/008863545", "https://tec.openplanner.team/stops/N229aka"], ["https://data.delijn.be/stops/300802", "https://mivb.openplanner.team/stops/7660109"], ["https://mivb.openplanner.team/stops/1048F", "https://tec.openplanner.team/stops/Buccgob2"], ["https://data.delijn.be/stops/208407", "https://tec.openplanner.team/stops/H5rx129a"], ["https://data.delijn.be/stops/305313", "https://mivb.openplanner.team/stops/2854"], ["https://data.delijn.be/stops/300976", "https://mivb.openplanner.team/stops/6019"], ["https://data.delijn.be/stops/208742", "https://tec.openplanner.team/stops/H4or113b"], ["https://data.delijn.be/stops/406398", "https://tec.openplanner.team/stops/Blaneli2"], ["http://irail.be/stations/NMBS/008821063", "https://data.delijn.be/stops/102625"], ["http://irail.be/stations/NMBS/008886041", "https://tec.openplanner.team/stops/H4ab103a"], ["http://irail.be/stations/NMBS/008832664", "https://data.delijn.be/stops/409881"], ["http://irail.be/stations/NMBS/008882206", "https://tec.openplanner.team/stops/H2hl112b"], ["https://data.delijn.be/stops/404675", "https://tec.openplanner.team/stops/LJU51--1"], ["http://irail.be/stations/NMBS/008893054", "https://data.delijn.be/stops/202859"], ["https://data.delijn.be/stops/306065", "https://tec.openplanner.team/stops/Blemsta2"], ["http://irail.be/stations/NMBS/008822228", "https://data.delijn.be/stops/106964"], ["https://data.delijn.be/stops/304453", "https://tec.openplanner.team/stops/Brsgrol2"], ["http://irail.be/stations/NMBS/008821600", "https://data.delijn.be/stops/101554"], ["https://data.delijn.be/stops/307693", "https://mivb.openplanner.team/stops/2147B"], ["https://data.delijn.be/stops/307555", "https://tec.openplanner.team/stops/Bstecal2"], ["https://data.delijn.be/stops/300955", "https://mivb.openplanner.team/stops/5283F"], ["http://irail.be/stations/NMBS/008845203", "https://tec.openplanner.team/stops/LTPsalm1"], ["https://data.delijn.be/stops/308825", "https://tec.openplanner.team/stops/LLaover4"], ["https://data.delijn.be/stops/300952", "https://mivb.openplanner.team/stops/1286"], ["http://irail.be/stations/NMBS/008814472", "https://mivb.openplanner.team/stops/2016"], ["http://irail.be/stations/NMBS/008895505", "https://data.delijn.be/stops/200978"], ["http://irail.be/stations/NMBS/008893054", "https://data.delijn.be/stops/210098"], ["https://data.delijn.be/stops/408597", "https://tec.openplanner.team/stops/LOreg--2"], ["http://irail.be/stations/NMBS/008891652", "https://data.delijn.be/stops/501665"], ["https://data.delijn.be/stops/301080", "https://mivb.openplanner.team/stops/3355"], ["https://data.delijn.be/stops/408844", "https://tec.openplanner.team/stops/LRmhage8"], ["https://data.delijn.be/stops/307683", "https://mivb.openplanner.team/stops/5917F"], ["https://data.delijn.be/stops/302836", "https://tec.openplanner.team/stops/Blanove2"], ["https://data.delijn.be/stops/304580", "https://mivb.openplanner.team/stops/0430448"], ["https://data.delijn.be/stops/301453", "https://tec.openplanner.team/stops/Bhalsro2"], ["http://irail.be/stations/NMBS/008814332", "https://data.delijn.be/stops/307607"], ["http://irail.be/stations/NMBS/008811429", "https://mivb.openplanner.team/stops/2115"], ["https://data.delijn.be/stops/301032", "https://tec.openplanner.team/stops/Bsgipmo2"], ["https://data.delijn.be/stops/300881", "https://mivb.openplanner.team/stops/5082"], ["http://irail.be/stations/NMBS/008869088", "https://tec.openplanner.team/stops/X615afa"], ["https://data.delijn.be/stops/302155", "https://tec.openplanner.team/stops/Bhoealt1"], ["http://irail.be/stations/NMBS/008892007", "https://data.delijn.be/stops/205923"], ["http://irail.be/stations/NMBS/008893062", "https://data.delijn.be/stops/208700"], ["https://data.delijn.be/stops/301001", "https://mivb.openplanner.team/stops/1567"], ["http://irail.be/stations/NMBS/008895745", "https://data.delijn.be/stops/206720"], ["http://irail.be/stations/NMBS/008833233", "https://data.delijn.be/stops/304302"], ["http://irail.be/stations/NMBS/008811726", "https://tec.openplanner.team/stops/Bwavgar4"], ["https://data.delijn.be/stops/301025", "https://tec.openplanner.team/stops/Bsgibla2"], ["https://data.delijn.be/stops/302450", "https://tec.openplanner.team/stops/Bjodrrg1"], ["https://data.delijn.be/stops/301019", "https://mivb.openplanner.team/stops/4165"], ["http://irail.be/stations/NMBS/008864451", "https://tec.openplanner.team/stops/X982cfa"], ["https://data.delijn.be/stops/208415", "https://tec.openplanner.team/stops/H4rs117a"], ["https://data.delijn.be/stops/307226", "https://tec.openplanner.team/stops/Bhalgar1"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/300349"], ["http://irail.be/stations/NMBS/008874716", "https://tec.openplanner.team/stops/N543aja"], ["https://data.delijn.be/stops/301752", "https://mivb.openplanner.team/stops/4273F"], ["https://mivb.openplanner.team/stops/4076", "https://tec.openplanner.team/stops/Buccdch1"], ["https://mivb.openplanner.team/stops/2050", "https://tec.openplanner.team/stops/Baudhde2"], ["http://irail.be/stations/NMBS/008811916", "https://mivb.openplanner.team/stops/0060120"], ["https://data.delijn.be/stops/300329", "https://tec.openplanner.team/stops/Balsnie2"], ["https://data.delijn.be/stops/304030", "https://tec.openplanner.team/stops/Bovejei1"], ["http://irail.be/stations/NMBS/008841327", "https://tec.openplanner.team/stops/LVGeg--1"], ["https://data.delijn.be/stops/300297", "https://mivb.openplanner.team/stops/9801"], ["https://data.delijn.be/stops/400474", "https://tec.openplanner.team/stops/LGLspor2"], ["https://data.delijn.be/stops/408700", "https://tec.openplanner.team/stops/LGLobor2"], ["http://irail.be/stations/NMBS/008821105", "https://data.delijn.be/stops/105521"], ["https://data.delijn.be/stops/410319", "https://tec.openplanner.team/stops/LPldoua3"], ["https://data.delijn.be/stops/306782", "https://tec.openplanner.team/stops/LLagert*"], ["https://data.delijn.be/stops/306898", "https://tec.openplanner.team/stops/Bgoegma2"], ["https://data.delijn.be/stops/300021", "https://mivb.openplanner.team/stops/9677"], ["https://data.delijn.be/stops/304107", "https://tec.openplanner.team/stops/Bovevri1"], ["https://data.delijn.be/stops/300750", "https://mivb.openplanner.team/stops/1256"], ["https://data.delijn.be/stops/218019", "https://tec.openplanner.team/stops/H5rx121a"], ["https://data.delijn.be/stops/404680", "https://tec.openplanner.team/stops/LWidepo2"], ["https://data.delijn.be/stops/410140", "https://tec.openplanner.team/stops/Lrctec-2"], ["http://irail.be/stations/NMBS/008861317", "https://tec.openplanner.team/stops/N522ahb"], ["https://data.delijn.be/stops/301752", "https://mivb.openplanner.team/stops/1142"], ["http://irail.be/stations/NMBS/008843174", "https://tec.openplanner.team/stops/Lougare3"], ["https://mivb.openplanner.team/stops/1810", "https://tec.openplanner.team/stops/Baudsju1"], ["https://data.delijn.be/stops/410152", "https://mivb.openplanner.team/stops/5045"], ["https://data.delijn.be/stops/307697", "https://tec.openplanner.team/stops/Brsgcfl2"], ["https://data.delijn.be/stops/300937", "https://mivb.openplanner.team/stops/4110"], ["https://data.delijn.be/stops/301026", "https://mivb.openplanner.team/stops/2467"], ["https://data.delijn.be/stops/303832", "https://mivb.openplanner.team/stops/0270514"], ["https://data.delijn.be/stops/307643", "https://mivb.openplanner.team/stops/1955"], ["https://mivb.openplanner.team/stops/1133", "https://tec.openplanner.team/stops/Bbxltrv2"], ["http://irail.be/stations/NMBS/008841731", "https://tec.openplanner.team/stops/LSLhall*"], ["https://data.delijn.be/stops/300793", "https://mivb.openplanner.team/stops/1256"], ["http://irail.be/stations/NMBS/008891702", "https://data.delijn.be/stops/510014"], ["https://data.delijn.be/stops/304453", "https://tec.openplanner.team/stops/Brsgfon1"], ["https://data.delijn.be/stops/300742", "https://mivb.openplanner.team/stops/8712"], ["https://data.delijn.be/stops/308902", "https://mivb.openplanner.team/stops/1722"], ["https://data.delijn.be/stops/304207", "https://tec.openplanner.team/stops/Brsrber1"], ["https://mivb.openplanner.team/stops/2148", "https://tec.openplanner.team/stops/Buccron1"], ["https://data.delijn.be/stops/403787", "https://tec.openplanner.team/stops/LWAbett2"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LMalune3"], ["http://irail.be/stations/NMBS/008811734", "https://tec.openplanner.team/stops/Bbwacol2"], ["http://irail.be/stations/NMBS/008864436", "https://tec.openplanner.team/stops/X923anb"], ["http://irail.be/stations/NMBS/008863461", "https://tec.openplanner.team/stops/N509bfa"], ["https://mivb.openplanner.team/stops/6956G", "https://tec.openplanner.team/stops/Buccptj1"], ["https://data.delijn.be/stops/400455", "https://tec.openplanner.team/stops/Llxcite2"], ["https://data.delijn.be/stops/307580", "https://tec.openplanner.team/stops/Bbghepi2"], ["https://data.delijn.be/stops/408806", "https://tec.openplanner.team/stops/LVIdepo2"], ["http://irail.be/stations/NMBS/008814472", "https://mivb.openplanner.team/stops/2080"], ["https://data.delijn.be/stops/300321", "https://tec.openplanner.team/stops/Bbeagae1"], ["https://data.delijn.be/stops/304929", "https://mivb.openplanner.team/stops/9729"], ["https://data.delijn.be/stops/405732", "https://tec.openplanner.team/stops/Lrclant2"], ["https://data.delijn.be/stops/300880", "https://mivb.openplanner.team/stops/7800455"], ["https://data.delijn.be/stops/405364", "https://tec.openplanner.team/stops/Bneelaa1"], ["https://data.delijn.be/stops/405453", "https://tec.openplanner.team/stops/LWHzave2"], ["http://irail.be/stations/NMBS/008882701", "https://tec.openplanner.team/stops/H2mg138d"], ["http://irail.be/stations/NMBS/008871837", "https://tec.openplanner.team/stops/Cldplac2"], ["https://mivb.openplanner.team/stops/5427", "https://tec.openplanner.team/stops/Baudhde1"], ["https://mivb.openplanner.team/stops/5026", "https://tec.openplanner.team/stops/Buccdch2"], ["http://irail.be/stations/NMBS/008879004", "https://tec.openplanner.team/stops/H1be102a"], ["http://irail.be/stations/NMBS/008895620", "https://data.delijn.be/stops/208572"], ["https://mivb.openplanner.team/stops/5407F", "https://tec.openplanner.team/stops/Bixlozo2"], ["http://irail.be/stations/NMBS/008728600", "https://tec.openplanner.team/stops/H4ho119b"], ["http://irail.be/stations/NMBS/008841665", "https://tec.openplanner.team/stops/Lmigare1"], ["https://data.delijn.be/stops/301677", "https://tec.openplanner.team/stops/Bpecsta1"], ["https://data.delijn.be/stops/300327", "https://tec.openplanner.team/stops/Balswwe1"], ["http://irail.be/stations/NMBS/008813003", "https://mivb.openplanner.team/stops/1144"], ["http://irail.be/stations/NMBS/008822004", "https://data.delijn.be/stops/105221"], ["https://data.delijn.be/stops/306050", "https://mivb.openplanner.team/stops/1900"], ["https://data.delijn.be/stops/300391", "https://tec.openplanner.team/stops/Bhalh312"], ["https://data.delijn.be/stops/306813", "https://mivb.openplanner.team/stops/1511"], ["https://data.delijn.be/stops/300752", "https://mivb.openplanner.team/stops/7650210"], ["https://data.delijn.be/stops/307534", "https://tec.openplanner.team/stops/H1mk112b"], ["https://data.delijn.be/stops/408587", "https://tec.openplanner.team/stops/LOreg--2"], ["http://irail.be/stations/NMBS/008874005", "https://tec.openplanner.team/stops/Cctsncb3"], ["https://data.delijn.be/stops/509735", "https://tec.openplanner.team/stops/H4do103a"], ["http://irail.be/stations/NMBS/008893708", "https://data.delijn.be/stops/203042"], ["http://irail.be/stations/NMBS/008864006", "https://tec.openplanner.team/stops/X390ana"], ["https://data.delijn.be/stops/300978", "https://mivb.openplanner.team/stops/6303"], ["http://irail.be/stations/NMBS/008822053", "https://data.delijn.be/stops/305873"], ["https://data.delijn.be/stops/300024", "https://mivb.openplanner.team/stops/9658"], ["https://data.delijn.be/stops/408881", "https://tec.openplanner.team/stops/LTEcamp2"], ["https://data.delijn.be/stops/301056", "https://mivb.openplanner.team/stops/5014"], ["https://data.delijn.be/stops/408883", "https://tec.openplanner.team/stops/LWRchem2"], ["http://irail.be/stations/NMBS/008895257", "https://data.delijn.be/stops/208690"], ["https://data.delijn.be/stops/300862", "https://mivb.openplanner.team/stops/7780157"], ["http://irail.be/stations/NMBS/008821089", "https://data.delijn.be/stops/103279"], ["https://data.delijn.be/stops/302849", "https://tec.openplanner.team/stops/LWHmath2"], ["http://irail.be/stations/NMBS/008841731", "https://data.delijn.be/stops/408625"], ["http://irail.be/stations/NMBS/008841202", "https://tec.openplanner.team/stops/Lmolagu1"], ["https://data.delijn.be/stops/300957", "https://mivb.openplanner.team/stops/3524"], ["http://irail.be/stations/NMBS/008841467", "https://tec.openplanner.team/stops/LFHjamo1"], ["http://irail.be/stations/NMBS/008865128", "https://tec.openplanner.team/stops/X725aed"], ["http://irail.be/stations/NMBS/008849072", "https://tec.openplanner.team/stops/X790amb"], ["https://data.delijn.be/stops/406564", "https://tec.openplanner.team/stops/LHThall4"], ["http://irail.be/stations/NMBS/008892734", "https://data.delijn.be/stops/508544"], ["https://data.delijn.be/stops/300962", "https://tec.openplanner.team/stops/Baudhde1"], ["https://mivb.openplanner.team/stops/0220233", "https://tec.openplanner.team/stops/Baudhan2"], ["http://irail.be/stations/NMBS/008896230", "https://data.delijn.be/stops/507709"], ["https://data.delijn.be/stops/304208", "https://tec.openplanner.team/stops/Brsrber2"], ["http://irail.be/stations/NMBS/008400280", "https://data.delijn.be/stops/505600"], ["https://data.delijn.be/stops/207789", "https://tec.openplanner.team/stops/H5rx150a"], ["https://data.delijn.be/stops/406318", "https://tec.openplanner.team/stops/LMawilh4"], ["http://irail.be/stations/NMBS/008863503", "https://tec.openplanner.team/stops/N232aza"], ["https://data.delijn.be/stops/300997", "https://mivb.openplanner.team/stops/3167"], ["http://irail.be/stations/NMBS/008819406", "https://data.delijn.be/stops/305550"], ["http://irail.be/stations/NMBS/008864352", "https://tec.openplanner.team/stops/X999aga"], ["https://data.delijn.be/stops/301145", "https://tec.openplanner.team/stops/Buccpes1"], ["http://irail.be/stations/NMBS/008821865", "https://data.delijn.be/stops/308538"], ["http://irail.be/stations/NMBS/008824240", "https://data.delijn.be/stops/105999"], ["http://irail.be/stations/NMBS/008832334", "https://data.delijn.be/stops/409263"], ["https://data.delijn.be/stops/400482", "https://tec.openplanner.team/stops/LRGchap1"], ["https://data.delijn.be/stops/300337", "https://tec.openplanner.team/stops/Balswin3"], ["https://data.delijn.be/stops/307971", "https://tec.openplanner.team/stops/Bwavrij1"], ["https://data.delijn.be/stops/307232", "https://mivb.openplanner.team/stops/4267"], ["https://data.delijn.be/stops/302810", "https://tec.openplanner.team/stops/Bkrabhu1"], ["http://irail.be/stations/NMBS/008873379", "https://tec.openplanner.team/stops/Ccstord2"], ["https://data.delijn.be/stops/408681", "https://tec.openplanner.team/stops/LOTsav-2"], ["https://mivb.openplanner.team/stops/9059", "https://tec.openplanner.team/stops/Bwbfckr1"], ["https://data.delijn.be/stops/302445", "https://tec.openplanner.team/stops/Bjodrrg2"], ["http://irail.be/stations/NMBS/008814431", "https://mivb.openplanner.team/stops/1110"], ["https://data.delijn.be/stops/400476", "https://tec.openplanner.team/stops/LSLdall1"], ["https://data.delijn.be/stops/300994", "https://mivb.openplanner.team/stops/5712F"], ["https://data.delijn.be/stops/300934", "https://mivb.openplanner.team/stops/3449"], ["https://data.delijn.be/stops/301039", "https://mivb.openplanner.team/stops/3257F"], ["https://data.delijn.be/stops/205982", "https://tec.openplanner.team/stops/H5rx103a"], ["https://data.delijn.be/stops/307795", "https://mivb.openplanner.team/stops/3214"], ["http://irail.be/stations/NMBS/008822269", "https://data.delijn.be/stops/305600"], ["http://irail.be/stations/NMBS/008881463", "https://tec.openplanner.team/stops/H2sb239c"], ["http://irail.be/stations/NMBS/008841442", "https://tec.openplanner.team/stops/LRepous2"], ["http://irail.be/stations/NMBS/008812021", "https://mivb.openplanner.team/stops/2545"], ["http://irail.be/stations/NMBS/008892254", "https://data.delijn.be/stops/502803"], ["https://data.delijn.be/stops/305263", "https://mivb.openplanner.team/stops/9787"], ["https://mivb.openplanner.team/stops/3517", "https://tec.openplanner.team/stops/Bixleix2"], ["https://data.delijn.be/stops/407686", "https://tec.openplanner.team/stops/LBPboir1"], ["https://data.delijn.be/stops/410154", "https://mivb.openplanner.team/stops/9311"], ["https://data.delijn.be/stops/408894", "https://tec.openplanner.team/stops/LBegare2"], ["https://data.delijn.be/stops/307637", "https://mivb.openplanner.team/stops/1937"], ["https://data.delijn.be/stops/408911", "https://tec.openplanner.team/stops/LFMkrin1"], ["https://mivb.openplanner.team/stops/0340341", "https://tec.openplanner.team/stops/Bsgipha3"], ["https://mivb.openplanner.team/stops/1802", "https://tec.openplanner.team/stops/Bbxlner1"], ["https://data.delijn.be/stops/304439", "https://tec.openplanner.team/stops/Balsnie1"], ["https://data.delijn.be/stops/408972", "https://tec.openplanner.team/stops/LWAlong3"], ["http://irail.be/stations/NMBS/008811262", "https://data.delijn.be/stops/302713"], ["https://data.delijn.be/stops/300730", "https://tec.openplanner.team/stops/Bbealou1"], ["https://data.delijn.be/stops/403788", "https://tec.openplanner.team/stops/LWAmouh1"], ["http://irail.be/stations/NMBS/008811270", "https://data.delijn.be/stops/302074"], ["http://irail.be/stations/NMBS/008811221", "https://data.delijn.be/stops/303892"], ["https://data.delijn.be/stops/304216", "https://mivb.openplanner.team/stops/0631"], ["https://data.delijn.be/stops/304463", "https://tec.openplanner.team/stops/Brsgtou1"], ["https://data.delijn.be/stops/301399", "https://mivb.openplanner.team/stops/5725"], ["http://irail.be/stations/NMBS/008844008", "https://tec.openplanner.team/stops/Lvegc-1*"], ["http://irail.be/stations/NMBS/008893518", "https://data.delijn.be/stops/207309"], ["https://data.delijn.be/stops/408851", "https://tec.openplanner.team/stops/LVu40--2"], ["http://irail.be/stations/NMBS/008814431", "https://data.delijn.be/stops/303249"], ["http://irail.be/stations/NMBS/008881562", "https://tec.openplanner.team/stops/H1ge116a"], ["http://irail.be/stations/NMBS/008821311", "https://data.delijn.be/stops/106905"], ["http://irail.be/stations/NMBS/008886066", "https://tec.openplanner.team/stops/H1hh116a"], ["http://irail.be/stations/NMBS/008871183", "https://tec.openplanner.team/stops/Chhverr1"], ["http://irail.be/stations/NMBS/008874005", "https://tec.openplanner.team/stops/Ccuhsti2"], ["https://data.delijn.be/stops/301089", "https://tec.openplanner.team/stops/Bkrawil2"], ["https://data.delijn.be/stops/307553", "https://tec.openplanner.team/stops/Blemwob2"], ["https://data.delijn.be/stops/208183", "https://tec.openplanner.team/stops/H5rx132a"], ["http://irail.be/stations/NMBS/008821337", "https://data.delijn.be/stops/107215"], ["https://data.delijn.be/stops/300811", "https://mivb.openplanner.team/stops/6171"], ["https://data.delijn.be/stops/300981", "https://mivb.openplanner.team/stops/2918"], ["https://data.delijn.be/stops/307913", "https://tec.openplanner.team/stops/Bhalgar1"], ["http://irail.be/stations/NMBS/008893179", "https://data.delijn.be/stops/201887"], ["https://data.delijn.be/stops/308731", "https://tec.openplanner.team/stops/Bgoemho2"], ["https://data.delijn.be/stops/305350", "https://tec.openplanner.team/stops/Bbgewal2"], ["https://data.delijn.be/stops/405459", "https://tec.openplanner.team/stops/LWHkape1"], ["https://data.delijn.be/stops/302822", "https://tec.openplanner.team/stops/Bgnvfai1"], ["http://irail.be/stations/NMBS/008400424", "https://data.delijn.be/stops/406370"], ["https://mivb.openplanner.team/stops/1863", "https://tec.openplanner.team/stops/Baudvdr1"], ["https://data.delijn.be/stops/400652", "https://tec.openplanner.team/stops/LHgroso1"], ["https://data.delijn.be/stops/219015", "https://tec.openplanner.team/stops/H5rx125b"], ["http://irail.be/stations/NMBS/008822343", "https://data.delijn.be/stops/105074"], ["https://data.delijn.be/stops/300880", "https://mivb.openplanner.team/stops/4957"], ["https://data.delijn.be/stops/301686", "https://tec.openplanner.team/stops/Bnetrec2"], ["https://data.delijn.be/stops/301048", "https://mivb.openplanner.team/stops/1201"], ["http://irail.be/stations/NMBS/008882206", "https://tec.openplanner.team/stops/H2ll179d"], ["https://data.delijn.be/stops/300370", "https://tec.openplanner.team/stops/Bwaubru1"], ["https://data.delijn.be/stops/404067", "https://tec.openplanner.team/stops/LBpbruy2"], ["https://data.delijn.be/stops/305150", "https://tec.openplanner.team/stops/Btiegma1"], ["https://data.delijn.be/stops/300748", "https://mivb.openplanner.team/stops/5296B"], ["https://data.delijn.be/stops/304451", "https://tec.openplanner.team/stops/Brsgera2"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/N574adb"], ["https://data.delijn.be/stops/302437", "https://tec.openplanner.team/stops/Bjodcsb2"], ["https://data.delijn.be/stops/301408", "https://tec.openplanner.team/stops/H1en102a"], ["https://mivb.openplanner.team/stops/1714", "https://tec.openplanner.team/stops/Bettars1"], ["https://data.delijn.be/stops/307252", "https://mivb.openplanner.team/stops/6068"], ["http://irail.be/stations/NMBS/008871308", "https://tec.openplanner.team/stops/H2lu100a"], ["https://data.delijn.be/stops/301074", "https://mivb.openplanner.team/stops/1568"], ["http://irail.be/stations/NMBS/008871217", "https://tec.openplanner.team/stops/Croheig2"], ["https://data.delijn.be/stops/208406", "https://tec.openplanner.team/stops/H5rx143b"], ["http://irail.be/stations/NMBS/008895570", "https://data.delijn.be/stops/207668"], ["http://irail.be/stations/NMBS/008841202", "https://tec.openplanner.team/stops/Lghsimo3"], ["https://data.delijn.be/stops/300836", "https://mivb.openplanner.team/stops/5701"], ["https://data.delijn.be/stops/301943", "https://mivb.openplanner.team/stops/4116"], ["https://data.delijn.be/stops/305519", "https://mivb.openplanner.team/stops/7501"], ["https://data.delijn.be/stops/300956", "https://mivb.openplanner.team/stops/1720B"], ["https://data.delijn.be/stops/300897", "https://mivb.openplanner.team/stops/3199"], ["https://data.delijn.be/stops/300792", "https://mivb.openplanner.team/stops/3281"], ["http://irail.be/stations/NMBS/008871415", "https://tec.openplanner.team/stops/Cptrebe1"], ["http://irail.be/stations/NMBS/008200134", "https://tec.openplanner.team/stops/LoUzent1"], ["https://data.delijn.be/stops/406132", "https://tec.openplanner.team/stops/LVAstjo1"], ["http://irail.be/stations/NMBS/008811254", "https://data.delijn.be/stops/302778"], ["https://data.delijn.be/stops/300924", "https://mivb.openplanner.team/stops/1538B"], ["http://irail.be/stations/NMBS/008833050", "https://data.delijn.be/stops/306935"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bboupde2"], ["https://data.delijn.be/stops/306116", "https://mivb.openplanner.team/stops/1483"], ["http://irail.be/stations/NMBS/008872306", "https://tec.openplanner.team/stops/Cjuruni2"], ["https://data.delijn.be/stops/408907", "https://tec.openplanner.team/stops/LFPkape1"], ["https://data.delijn.be/stops/305913", "https://mivb.openplanner.team/stops/4152"], ["https://data.delijn.be/stops/307649", "https://tec.openplanner.team/stops/Brsgrol2"], ["http://irail.be/stations/NMBS/008842002", "https://tec.openplanner.team/stops/Lagcile2"], ["http://irail.be/stations/NMBS/008822277", "https://data.delijn.be/stops/305614"], ["https://mivb.openplanner.team/stops/6166", "https://tec.openplanner.team/stops/Bsgicfo1"], ["http://irail.be/stations/NMBS/008400526", "https://data.delijn.be/stops/104344"], ["http://irail.be/stations/NMBS/008841327", "https://tec.openplanner.team/stops/LFHjamo1"], ["http://irail.be/stations/NMBS/008728686", "https://tec.openplanner.team/stops/H4lg103b"], ["https://data.delijn.be/stops/304721", "https://mivb.openplanner.team/stops/7246"], ["http://irail.be/stations/NMBS/008811445", "https://data.delijn.be/stops/302219"], ["https://mivb.openplanner.team/stops/1271B", "https://tec.openplanner.team/stops/Bbxlfro1"], ["http://irail.be/stations/NMBS/008871811", "https://tec.openplanner.team/stops/Cthathe1"], ["https://data.delijn.be/stops/300548", "https://tec.openplanner.team/stops/Bhmmbog1"], ["https://data.delijn.be/stops/300833", "https://mivb.openplanner.team/stops/8701"], ["https://data.delijn.be/stops/300743", "https://mivb.openplanner.team/stops/3805"], ["https://data.delijn.be/stops/307086", "https://tec.openplanner.team/stops/Btieast1"], ["http://irail.be/stations/NMBS/008728686", "https://tec.openplanner.team/stops/H4rx142a"], ["http://irail.be/stations/NMBS/008893534", "https://data.delijn.be/stops/205979"], ["https://data.delijn.be/stops/300854", "https://mivb.openplanner.team/stops/1083"], ["http://irail.be/stations/NMBS/008842655", "https://tec.openplanner.team/stops/LTIcime1"], ["http://irail.be/stations/NMBS/008843208", "https://tec.openplanner.team/stops/Lfhmalv2"], ["http://irail.be/stations/NMBS/008895448", "https://data.delijn.be/stops/209688"], ["https://data.delijn.be/stops/301411", "https://tec.openplanner.team/stops/H1en102a"], ["https://data.delijn.be/stops/408992", "https://tec.openplanner.team/stops/LWAlieg2"], ["http://irail.be/stations/NMBS/008400424", "https://tec.openplanner.team/stops/LMalamb4"], ["http://irail.be/stations/NMBS/008200940", "https://tec.openplanner.team/stops/X681aga"], ["http://irail.be/stations/NMBS/008872553", "https://tec.openplanner.team/stops/Bmarmru1"], ["https://data.delijn.be/stops/209190", "https://tec.openplanner.team/stops/H5rx127a"], ["https://data.delijn.be/stops/304535", "https://mivb.openplanner.team/stops/1816"], ["http://irail.be/stations/NMBS/008891033", "https://data.delijn.be/stops/507151"], ["http://irail.be/stations/NMBS/008822814", "https://data.delijn.be/stops/106754"], ["https://data.delijn.be/stops/406767", "https://tec.openplanner.team/stops/LBpvue-1"], ["http://irail.be/stations/NMBS/008863867", "https://tec.openplanner.team/stops/N308aea"], ["https://mivb.openplanner.team/stops/1804", "https://tec.openplanner.team/stops/Bettlha1"], ["http://irail.be/stations/NMBS/008881570", "https://tec.openplanner.team/stops/H1fr124b"], ["https://data.delijn.be/stops/300776", "https://mivb.openplanner.team/stops/1208"], ["http://irail.be/stations/NMBS/008200510", "https://tec.openplanner.team/stops/X685ama"], ["https://data.delijn.be/stops/301003", "https://mivb.openplanner.team/stops/7484"], ["https://data.delijn.be/stops/306123", "https://tec.openplanner.team/stops/Bhalvla1"], ["https://mivb.openplanner.team/stops/5605", "https://tec.openplanner.team/stops/Bkrabhu2"], ["https://data.delijn.be/stops/307696", "https://tec.openplanner.team/stops/Brsgtou1"], ["https://data.delijn.be/stops/300944", "https://mivb.openplanner.team/stops/1727"], ["http://irail.be/stations/NMBS/008895067", "https://data.delijn.be/stops/209951"], ["http://irail.be/stations/NMBS/008831088", "https://data.delijn.be/stops/405976"], ["https://data.delijn.be/stops/305164", "https://tec.openplanner.team/stops/Btiegoo2"], ["https://data.delijn.be/stops/408911", "https://tec.openplanner.team/stops/LVukabi2"], ["http://irail.be/stations/NMBS/008845146", "https://tec.openplanner.team/stops/X750alb"], ["https://data.delijn.be/stops/400472", "https://tec.openplanner.team/stops/LGLgeer1"], ["https://data.delijn.be/stops/400457", "https://tec.openplanner.team/stops/LEBeg--2"], ["https://data.delijn.be/stops/408867", "https://tec.openplanner.team/stops/LFCkett2"], ["https://data.delijn.be/stops/208023", "https://tec.openplanner.team/stops/H1og136a"], ["https://data.delijn.be/stops/300923", "https://mivb.openplanner.team/stops/3210B"], ["http://irail.be/stations/NMBS/008833274", "https://data.delijn.be/stops/307371"], ["https://data.delijn.be/stops/301016", "https://mivb.openplanner.team/stops/1236F"], ["https://data.delijn.be/stops/306969", "https://mivb.openplanner.team/stops/2824"], ["https://data.delijn.be/stops/302219", "https://tec.openplanner.team/stops/Bhoeboo1"], ["http://irail.be/stations/NMBS/008814365", "https://data.delijn.be/stops/304544"], ["https://data.delijn.be/stops/408906", "https://tec.openplanner.team/stops/LFPkerk2"], ["https://data.delijn.be/stops/308818", "https://mivb.openplanner.team/stops/6357"], ["https://data.delijn.be/stops/302450", "https://tec.openplanner.team/stops/Bzlufbo1"], ["https://mivb.openplanner.team/stops/5525", "https://tec.openplanner.team/stops/Bkrawil1"], ["http://irail.be/stations/NMBS/008814357", "https://mivb.openplanner.team/stops/9658"], ["http://irail.be/stations/NMBS/008895737", "https://data.delijn.be/stops/207658"], ["https://data.delijn.be/stops/301046", "https://mivb.openplanner.team/stops/0460150"], ["http://irail.be/stations/NMBS/008895232", "https://data.delijn.be/stops/208812"], ["http://irail.be/stations/NMBS/008884541", "https://tec.openplanner.team/stops/H1qu105a"], ["https://data.delijn.be/stops/509452", "https://tec.openplanner.team/stops/H4mo133b"], ["https://data.delijn.be/stops/407772", "https://tec.openplanner.team/stops/LRmrode2"], ["https://data.delijn.be/stops/307714", "https://tec.openplanner.team/stops/Brsgece2"], ["http://irail.be/stations/NMBS/008891264", "https://data.delijn.be/stops/502663"], ["http://irail.be/stations/NMBS/008842754", "https://tec.openplanner.team/stops/LAYgare1"], ["https://data.delijn.be/stops/407205", "https://tec.openplanner.team/stops/LHTmonu2"], ["http://irail.be/stations/NMBS/008871175", "https://tec.openplanner.team/stops/Cjxplac1"], ["https://mivb.openplanner.team/stops/5032B", "https://tec.openplanner.team/stops/Buccrac1"], ["http://irail.be/stations/NMBS/008892692", "https://data.delijn.be/stops/208210"], ["https://data.delijn.be/stops/504135", "https://tec.openplanner.team/stops/H4co162a"], ["https://data.delijn.be/stops/407201", "https://tec.openplanner.team/stops/LHe3com1"], ["http://irail.be/stations/NMBS/008832409", "https://data.delijn.be/stops/406796"], ["https://data.delijn.be/stops/301741", "https://mivb.openplanner.team/stops/9634"], ["http://irail.be/stations/NMBS/008893815", "https://data.delijn.be/stops/203037"], ["https://data.delijn.be/stops/302409", "https://mivb.openplanner.team/stops/8652"], ["https://data.delijn.be/stops/303577", "https://mivb.openplanner.team/stops/9729"], ["https://data.delijn.be/stops/408820", "https://tec.openplanner.team/stops/LMgbatt2"], ["http://irail.be/stations/NMBS/008842663", "https://tec.openplanner.team/stops/LFNhame1"], ["http://irail.be/stations/NMBS/008869054", "https://tec.openplanner.team/stops/X626ala"], ["http://irail.be/stations/NMBS/008864956", "https://tec.openplanner.team/stops/N564aab"], ["https://data.delijn.be/stops/301050", "https://mivb.openplanner.team/stops/7770258"], ["http://irail.be/stations/NMBS/008822210", "https://data.delijn.be/stops/101423"], ["https://data.delijn.be/stops/303833", "https://mivb.openplanner.team/stops/3320B"], ["https://data.delijn.be/stops/407215", "https://tec.openplanner.team/stops/LHStrez1"], ["http://irail.be/stations/NMBS/008812070", "https://data.delijn.be/stops/300213"], ["http://irail.be/stations/NMBS/008843323", "https://tec.openplanner.team/stops/LNHbarr1"], ["http://irail.be/stations/NMBS/008885753", "https://tec.openplanner.team/stops/H4hx118b"], ["http://irail.be/stations/NMBS/008883022", "https://tec.openplanner.team/stops/Btubren2"], ["http://irail.be/stations/NMBS/008822111", "https://data.delijn.be/stops/205572"], ["https://data.delijn.be/stops/302415", "https://tec.openplanner.team/stops/Bjodgar1"], ["https://mivb.openplanner.team/stops/1803B", "https://tec.openplanner.team/stops/Bettgle2"], ["http://irail.be/stations/NMBS/008841319", "https://tec.openplanner.team/stops/LBIaepo4"], ["http://irail.be/stations/NMBS/008822814", "https://data.delijn.be/stops/109529"], ["https://data.delijn.be/stops/405401", "https://tec.openplanner.team/stops/Brach122"], ["http://irail.be/stations/NMBS/008728654", "https://tec.openplanner.team/stops/H4mo155a"], ["http://irail.be/stations/NMBS/008893583", "https://data.delijn.be/stops/206589"], ["http://irail.be/stations/NMBS/008889011", "https://tec.openplanner.team/stops/H4mo170b"], ["http://irail.be/stations/NMBS/008882107", "https://tec.openplanner.team/stops/H2ll198a"], ["http://irail.be/stations/NMBS/008869047", "https://tec.openplanner.team/stops/X615aca"], ["https://mivb.openplanner.team/stops/3006", "https://tec.openplanner.team/stops/Bsgipha1"], ["http://irail.be/stations/NMBS/008872306", "https://tec.openplanner.team/stops/Cchalou2"], ["https://data.delijn.be/stops/405735", "https://tec.openplanner.team/stops/LrcarsT1"], ["https://data.delijn.be/stops/304545", "https://mivb.openplanner.team/stops/9682"], ["https://data.delijn.be/stops/509234", "https://tec.openplanner.team/stops/H4co133b"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N568adb"], ["https://data.delijn.be/stops/409000", "https://tec.openplanner.team/stops/LWArege1"], ["https://mivb.openplanner.team/stops/3122", "https://tec.openplanner.team/stops/Bixlfla2"], ["http://irail.be/stations/NMBS/008832227", "https://data.delijn.be/stops/403850"], ["https://data.delijn.be/stops/300579", "https://mivb.openplanner.team/stops/6202"], ["https://data.delijn.be/stops/304071", "https://tec.openplanner.team/stops/Bgnvbsi1"], ["https://data.delijn.be/stops/300821", "https://mivb.openplanner.team/stops/7820253"], ["https://data.delijn.be/stops/304544", "https://mivb.openplanner.team/stops/9685"], ["https://data.delijn.be/stops/309669", "https://mivb.openplanner.team/stops/9651"], ["http://irail.be/stations/NMBS/008891314", "https://data.delijn.be/stops/502806"], ["http://irail.be/stations/NMBS/008842648", "https://tec.openplanner.team/stops/LTIdumo2"], ["http://irail.be/stations/NMBS/008811635", "https://tec.openplanner.team/stops/Blmldmi1"], ["https://data.delijn.be/stops/208407", "https://tec.openplanner.team/stops/H5rx138a"], ["http://irail.be/stations/NMBS/008895067", "https://data.delijn.be/stops/207750"], ["https://data.delijn.be/stops/308104", "https://tec.openplanner.team/stops/Bsrgm102"], ["https://data.delijn.be/stops/300763", "https://mivb.openplanner.team/stops/1260"], ["https://mivb.openplanner.team/stops/2138B", "https://tec.openplanner.team/stops/Buccvoi3"], ["http://irail.be/stations/NMBS/008841004", "https://tec.openplanner.team/stops/Llgoise2"], ["https://data.delijn.be/stops/401415", "https://mivb.openplanner.team/stops/4306"], ["https://data.delijn.be/stops/300887", "https://mivb.openplanner.team/stops/52"], ["https://data.delijn.be/stops/207795", "https://tec.openplanner.team/stops/H4ss158b"], ["https://data.delijn.be/stops/410138", "https://tec.openplanner.team/stops/Lrc594-1"], ["https://data.delijn.be/stops/300357", "https://tec.openplanner.team/stops/Bbrlpar2"], ["https://data.delijn.be/stops/301802", "https://mivb.openplanner.team/stops/5776"], ["https://data.delijn.be/stops/308823", "https://tec.openplanner.team/stops/Bwaak101"], ["https://data.delijn.be/stops/333234", "https://mivb.openplanner.team/stops/4069"], ["https://data.delijn.be/stops/302163", "https://tec.openplanner.team/stops/Bzluvil1"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LMaslav3"], ["http://irail.be/stations/NMBS/008892320", "https://data.delijn.be/stops/504511"], ["http://irail.be/stations/NMBS/008010316", "https://data.delijn.be/stops/404945"], ["https://data.delijn.be/stops/300804", "https://mivb.openplanner.team/stops/2226"], ["https://data.delijn.be/stops/505992", "https://tec.openplanner.team/stops/H4ar104a"], ["https://data.delijn.be/stops/505831", "https://tec.openplanner.team/stops/H4po125a"], ["https://data.delijn.be/stops/402551", "https://tec.openplanner.team/stops/LCAeg--1"], ["https://mivb.openplanner.team/stops/2118", "https://tec.openplanner.team/stops/Buccpor2"], ["https://data.delijn.be/stops/301039", "https://mivb.openplanner.team/stops/4014"], ["http://irail.be/stations/NMBS/008884640", "https://tec.openplanner.team/stops/H5gr138a"], ["http://irail.be/stations/NMBS/008813003", "https://mivb.openplanner.team/stops/6447"], ["https://data.delijn.be/stops/408830", "https://tec.openplanner.team/stops/LMgbatt2"], ["http://irail.be/stations/NMBS/008843331", "https://tec.openplanner.team/stops/LOmpont1"], ["https://data.delijn.be/stops/305174", "https://tec.openplanner.team/stops/Bwavgar8"], ["http://irail.be/stations/NMBS/008891264", "https://data.delijn.be/stops/502549"], ["https://mivb.openplanner.team/stops/5532", "https://tec.openplanner.team/stops/Bkrawil2"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/CMsud2"], ["http://irail.be/stations/NMBS/008894714", "https://data.delijn.be/stops/205704"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/108727"], ["https://data.delijn.be/stops/306064", "https://tec.openplanner.team/stops/Brsggea2"], ["https://data.delijn.be/stops/405716", "https://tec.openplanner.team/stops/Llgpire2"], ["https://data.delijn.be/stops/301010", "https://mivb.openplanner.team/stops/4005F"], ["https://data.delijn.be/stops/307795", "https://mivb.openplanner.team/stops/3132"], ["http://irail.be/stations/NMBS/008871688", "https://tec.openplanner.team/stops/H1fv100a"], ["https://data.delijn.be/stops/301067", "https://mivb.openplanner.team/stops/0370138"], ["https://data.delijn.be/stops/303994", "https://tec.openplanner.team/stops/Bhevwzw1"], ["http://irail.be/stations/NMBS/008865565", "https://tec.openplanner.team/stops/X850ajb"], ["http://irail.be/stations/NMBS/008863362", "https://tec.openplanner.team/stops/N538aka"], ["https://data.delijn.be/stops/401650", "https://tec.openplanner.team/stops/Brach121"], ["http://irail.be/stations/NMBS/008821667", "https://data.delijn.be/stops/107016"], ["https://data.delijn.be/stops/300771", "https://mivb.openplanner.team/stops/7670208"], ["https://data.delijn.be/stops/300905", "https://mivb.openplanner.team/stops/6408"], ["https://data.delijn.be/stops/301003", "https://mivb.openplanner.team/stops/3410"], ["https://data.delijn.be/stops/301102", "https://mivb.openplanner.team/stops/1853"], ["https://data.delijn.be/stops/303650", "https://mivb.openplanner.team/stops/3219"], ["https://data.delijn.be/stops/301027", "https://mivb.openplanner.team/stops/0650165"], ["http://irail.be/stations/NMBS/008883006", "https://tec.openplanner.team/stops/H3br108a"], ["https://data.delijn.be/stops/307000", "https://mivb.openplanner.team/stops/9658"], ["https://data.delijn.be/stops/301944", "https://mivb.openplanner.team/stops/4110"], ["https://data.delijn.be/stops/301298", "https://mivb.openplanner.team/stops/7640111"], ["http://irail.be/stations/NMBS/008832235", "https://data.delijn.be/stops/410008"], ["http://irail.be/stations/NMBS/008811429", "https://mivb.openplanner.team/stops/4299"], ["https://data.delijn.be/stops/504232", "https://tec.openplanner.team/stops/H4co148a"], ["https://data.delijn.be/stops/300995", "https://mivb.openplanner.team/stops/3216"], ["https://data.delijn.be/stops/302876", "https://mivb.openplanner.team/stops/2759"], ["https://data.delijn.be/stops/303586", "https://mivb.openplanner.team/stops/9726"], ["http://irail.be/stations/NMBS/008871183", "https://tec.openplanner.team/stops/Chhclde1"], ["http://irail.be/stations/NMBS/008833001", "https://data.delijn.be/stops/303132"], ["https://data.delijn.be/stops/300325", "https://tec.openplanner.team/stops/Balsnay1"], ["https://data.delijn.be/stops/208183", "https://tec.openplanner.team/stops/H5rx121a"], ["https://mivb.openplanner.team/stops/2708G", "https://tec.openplanner.team/stops/Buccdst1"], ["https://data.delijn.be/stops/307970", "https://tec.openplanner.team/stops/Bwavrij2"], ["https://data.delijn.be/stops/407233", "https://tec.openplanner.team/stops/LORherl1"], ["https://data.delijn.be/stops/307835", "https://mivb.openplanner.team/stops/2027"], ["https://data.delijn.be/stops/306001", "https://mivb.openplanner.team/stops/1810"], ["http://irail.be/stations/NMBS/008822814", "https://data.delijn.be/stops/101060"], ["https://data.delijn.be/stops/301113", "https://tec.openplanner.team/stops/Buccbou1"], ["http://irail.be/stations/NMBS/008865128", "https://tec.openplanner.team/stops/X725bea"], ["https://data.delijn.be/stops/300974", "https://mivb.openplanner.team/stops/6468"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N219aea"], ["https://data.delijn.be/stops/306048", "https://mivb.openplanner.team/stops/1646F"], ["http://irail.be/stations/NMBS/008833209", "https://data.delijn.be/stops/108009"], ["http://irail.be/stations/NMBS/008891157", "https://data.delijn.be/stops/200890"], ["http://irail.be/stations/NMBS/008812237", "https://data.delijn.be/stops/301303"], ["http://irail.be/stations/NMBS/008872579", "https://tec.openplanner.team/stops/Bvlvpco2"], ["http://irail.be/stations/NMBS/008843240", "https://tec.openplanner.team/stops/LEN42--1"], ["https://data.delijn.be/stops/405744", "https://tec.openplanner.team/stops/Llgpire1"], ["https://data.delijn.be/stops/400479", "https://tec.openplanner.team/stops/LBPmais2"], ["http://irail.be/stations/NMBS/008833209", "https://data.delijn.be/stops/300070"], ["https://data.delijn.be/stops/407214", "https://tec.openplanner.team/stops/LHStrez2"], ["http://irail.be/stations/NMBS/008861168", "https://tec.openplanner.team/stops/N534aga"], ["https://data.delijn.be/stops/300979", "https://mivb.openplanner.team/stops/5711F"], ["https://data.delijn.be/stops/405731", "https://tec.openplanner.team/stops/Lrctec-1"], ["http://irail.be/stations/NMBS/008812260", "https://data.delijn.be/stops/306706"], ["https://data.delijn.be/stops/302133", "https://tec.openplanner.team/stops/Bptecal2"], ["https://data.delijn.be/stops/305341", "https://tec.openplanner.team/stops/Bbgever1"], ["https://data.delijn.be/stops/301032", "https://mivb.openplanner.team/stops/6109"], ["https://data.delijn.be/stops/408897", "https://tec.openplanner.team/stops/LFPkast2"], ["https://data.delijn.be/stops/302903", "https://tec.openplanner.team/stops/Bhevl3l2"], ["http://irail.be/stations/NMBS/008883212", "https://tec.openplanner.team/stops/Becepco1"], ["http://irail.be/stations/NMBS/008841202", "https://tec.openplanner.team/stops/Lloross2"], ["https://data.delijn.be/stops/301014", "https://mivb.openplanner.team/stops/4062"], ["https://data.delijn.be/stops/209838", "https://tec.openplanner.team/stops/H5rx100a"], ["https://data.delijn.be/stops/408892", "https://tec.openplanner.team/stops/LFMvoge2"], ["https://data.delijn.be/stops/401412", "https://mivb.openplanner.team/stops/5205"], ["https://data.delijn.be/stops/307964", "https://tec.openplanner.team/stops/Bwavnep1"], ["https://data.delijn.be/stops/408828", "https://tec.openplanner.team/stops/LVItroi*"], ["https://data.delijn.be/stops/302413", "https://tec.openplanner.team/stops/Bjodcar2"], ["https://data.delijn.be/stops/300745", "https://mivb.openplanner.team/stops/3760"], ["http://irail.be/stations/NMBS/008861440", "https://tec.openplanner.team/stops/N521alb"], ["https://data.delijn.be/stops/405715", "https://tec.openplanner.team/stops/Llgangl2"], ["http://irail.be/stations/NMBS/008824224", "https://data.delijn.be/stops/101087"], ["https://data.delijn.be/stops/307142", "https://mivb.openplanner.team/stops/2540"], ["https://data.delijn.be/stops/301131", "https://tec.openplanner.team/stops/Buccgob1"], ["https://data.delijn.be/stops/305238", "https://tec.openplanner.team/stops/Bspkdon2"], ["https://data.delijn.be/stops/305494", "https://mivb.openplanner.team/stops/1528"], ["https://data.delijn.be/stops/304552", "https://mivb.openplanner.team/stops/9655"], ["http://irail.be/stations/NMBS/008893120", "https://data.delijn.be/stops/201138"], ["https://data.delijn.be/stops/401413", "https://mivb.openplanner.team/stops/5205"], ["https://data.delijn.be/stops/408844", "https://tec.openplanner.team/stops/LRmsmvo1"], ["http://irail.be/stations/NMBS/008861127", "https://tec.openplanner.team/stops/N501dab"], ["https://data.delijn.be/stops/405734", "https://tec.openplanner.team/stops/Lrclant3"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N202aec"], ["http://irail.be/stations/NMBS/008891405", "https://data.delijn.be/stops/501021"], ["http://irail.be/stations/NMBS/008842630", "https://tec.openplanner.team/stops/LTIgare2"], ["https://data.delijn.be/stops/301019", "https://mivb.openplanner.team/stops/4010"], ["https://data.delijn.be/stops/301678", "https://tec.openplanner.team/stops/Bnetrec2"], ["https://data.delijn.be/stops/300829", "https://mivb.openplanner.team/stops/2875"], ["http://irail.be/stations/NMBS/008874724", "https://tec.openplanner.team/stops/N534awc"], ["https://data.delijn.be/stops/304698", "https://mivb.openplanner.team/stops/5727F"], ["https://data.delijn.be/stops/301008", "https://mivb.openplanner.team/stops/4112"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bsmgmar2"], ["http://irail.be/stations/NMBS/008811205", "https://data.delijn.be/stops/307852"], ["http://irail.be/stations/NMBS/008831781", "https://data.delijn.be/stops/403426"], ["https://mivb.openplanner.team/stops/1870", "https://tec.openplanner.team/stops/Bettcha3"], ["http://irail.be/stations/NMBS/008844404", "https://tec.openplanner.team/stops/LSPvigi2"], ["https://data.delijn.be/stops/304641", "https://mivb.openplanner.team/stops/1103"], ["https://data.delijn.be/stops/304061", "https://tec.openplanner.team/stops/Bovecha1"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N570aab"], ["http://irail.be/stations/NMBS/008814373", "https://data.delijn.be/stops/303120"], ["http://irail.be/stations/NMBS/008863362", "https://tec.openplanner.team/stops/N538axa"], ["https://data.delijn.be/stops/300927", "https://mivb.openplanner.team/stops/3898"], ["https://data.delijn.be/stops/302201", "https://tec.openplanner.team/stops/Bhoealt1"], ["https://data.delijn.be/stops/304714", "https://tec.openplanner.team/stops/Blkbbeu2"], ["http://irail.be/stations/NMBS/008893708", "https://data.delijn.be/stops/202730"], ["http://irail.be/stations/NMBS/008866175", "https://tec.openplanner.team/stops/X658aaa"], ["http://irail.be/stations/NMBS/008841731", "https://tec.openplanner.team/stops/LPAeg--1"], ["http://irail.be/stations/NMBS/008832243", "https://data.delijn.be/stops/401441"], ["http://irail.be/stations/NMBS/008833159", "https://data.delijn.be/stops/303995"], ["http://irail.be/stations/NMBS/008821147", "https://data.delijn.be/stops/105125"], ["http://irail.be/stations/NMBS/008895463", "https://data.delijn.be/stops/207484"], ["http://irail.be/stations/NMBS/007015440", "https://data.delijn.be/stops/504131"], ["https://data.delijn.be/stops/307157", "https://tec.openplanner.team/stops/Bhalwat2"], ["https://data.delijn.be/stops/305501", "https://mivb.openplanner.team/stops/1528"], ["http://irail.be/stations/NMBS/008863818", "https://tec.openplanner.team/stops/N232ana"], ["https://data.delijn.be/stops/307677", "https://tec.openplanner.team/stops/Bstecou2"], ["https://data.delijn.be/stops/308855", "https://mivb.openplanner.team/stops/5402"], ["http://irail.be/stations/NMBS/008885530", "https://tec.openplanner.team/stops/H4my121b"], ["https://mivb.openplanner.team/stops/5825", "https://tec.openplanner.team/stops/Bucceng2"], ["http://irail.be/stations/NMBS/008891132", "https://data.delijn.be/stops/200831"], ["https://data.delijn.be/stops/300992", "https://mivb.openplanner.team/stops/3705"], ["https://data.delijn.be/stops/404669", "https://tec.openplanner.team/stops/LPAmc--2"], ["https://data.delijn.be/stops/308867", "https://mivb.openplanner.team/stops/1835"], ["https://data.delijn.be/stops/307970", "https://tec.openplanner.team/stops/Bbgeegl1"], ["https://data.delijn.be/stops/209395", "https://tec.openplanner.team/stops/H4or116b"], ["https://data.delijn.be/stops/504380", "https://tec.openplanner.team/stops/H4pl117b"], ["https://data.delijn.be/stops/302387", "https://tec.openplanner.team/stops/Bgzdgpa2"], ["https://mivb.openplanner.team/stops/3526", "https://tec.openplanner.team/stops/Baudulb1"], ["https://data.delijn.be/stops/307213", "https://tec.openplanner.team/stops/Bbchgod1"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/300014"], ["http://irail.be/stations/NMBS/008824158", "https://data.delijn.be/stops/102875"], ["http://irail.be/stations/NMBS/008865227", "https://tec.openplanner.team/stops/X995afa"], ["http://irail.be/stations/NMBS/008821451", "https://data.delijn.be/stops/105862"], ["https://data.delijn.be/stops/209184", "https://tec.openplanner.team/stops/H5rx121b"], ["https://data.delijn.be/stops/408854", "https://tec.openplanner.team/stops/LFClage1"], ["https://data.delijn.be/stops/405720", "https://tec.openplanner.team/stops/LlgLAMB3"], ["https://data.delijn.be/stops/407204", "https://tec.openplanner.team/stops/LHTdelh2"], ["https://data.delijn.be/stops/208614", "https://tec.openplanner.team/stops/H1bd103a"], ["http://irail.be/stations/NMBS/008896230", "https://data.delijn.be/stops/508449"], ["https://data.delijn.be/stops/305261", "https://tec.openplanner.team/stops/Bspkker2"], ["http://irail.be/stations/NMBS/008822343", "https://data.delijn.be/stops/105191"], ["https://data.delijn.be/stops/406127", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://data.delijn.be/stops/400475", "https://tec.openplanner.team/stops/LGLcour4"], ["http://irail.be/stations/NMBS/008892031", "https://data.delijn.be/stops/200179"], ["http://irail.be/stations/NMBS/008866175", "https://tec.openplanner.team/stops/X671agb"], ["https://data.delijn.be/stops/301007", "https://mivb.openplanner.team/stops/4107"], ["https://data.delijn.be/stops/410018", "https://tec.openplanner.team/stops/Blanath2"], ["https://data.delijn.be/stops/301034", "https://mivb.openplanner.team/stops/0724"], ["https://data.delijn.be/stops/407202", "https://tec.openplanner.team/stops/LHThall3"], ["http://irail.be/stations/NMBS/008832003", "https://data.delijn.be/stops/404266"], ["https://data.delijn.be/stops/300344", "https://tec.openplanner.team/stops/Bbrlvil1"], ["http://irail.be/stations/NMBS/008895125", "https://data.delijn.be/stops/207007"], ["https://data.delijn.be/stops/408867", "https://tec.openplanner.team/stops/LFCvoge4"], ["http://irail.be/stations/NMBS/008866142", "https://tec.openplanner.team/stops/X670amb"], ["http://irail.be/stations/NMBS/008863503", "https://tec.openplanner.team/stops/N232aqa"], ["https://data.delijn.be/stops/509003", "https://tec.openplanner.team/stops/H4mo192a"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LFClage2"], ["https://mivb.openplanner.team/stops/1760", "https://tec.openplanner.team/stops/Baudhan1"], ["https://data.delijn.be/stops/301420", "https://tec.openplanner.team/stops/H1en105a"], ["https://data.delijn.be/stops/302855", "https://tec.openplanner.team/stops/Bwaanwi1"], ["http://irail.be/stations/NMBS/008863461", "https://tec.openplanner.team/stops/N503aba"], ["http://irail.be/stations/NMBS/008821121", "https://data.delijn.be/stops/102113"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/Cmlvpla1"], ["https://data.delijn.be/stops/300937", "https://mivb.openplanner.team/stops/1111"], ["https://mivb.openplanner.team/stops/5414F", "https://tec.openplanner.team/stops/Bixlozo2"], ["https://data.delijn.be/stops/401399", "https://mivb.openplanner.team/stops/5038"], ["https://data.delijn.be/stops/304459", "https://tec.openplanner.team/stops/Brsg7fo2"], ["http://irail.be/stations/NMBS/008863461", "https://tec.openplanner.team/stops/N503ala"], ["https://mivb.openplanner.team/stops/1913", "https://tec.openplanner.team/stops/Bixlpat2"], ["https://data.delijn.be/stops/208174", "https://tec.openplanner.team/stops/H5fl100a"], ["http://irail.be/stations/NMBS/008885522", "https://tec.openplanner.team/stops/H4ga150a"], ["https://data.delijn.be/stops/304653", "https://mivb.openplanner.team/stops/8642"], ["https://data.delijn.be/stops/503333", "https://tec.openplanner.team/stops/H4do105a"], ["http://irail.be/stations/NMBS/008841434", "https://tec.openplanner.team/stops/LBKmare2"], ["http://irail.be/stations/NMBS/008821519", "https://data.delijn.be/stops/105857"], ["https://mivb.openplanner.team/stops/0260137", "https://tec.openplanner.team/stops/Baudhde1"], ["https://data.delijn.be/stops/405737", "https://tec.openplanner.team/stops/Lrcstad1"], ["http://irail.be/stations/NMBS/008886546", "https://tec.openplanner.team/stops/H1le121a"], ["http://irail.be/stations/NMBS/008843901", "https://tec.openplanner.team/stops/Lbrddef3"], ["https://data.delijn.be/stops/300855", "https://mivb.openplanner.team/stops/0531"], ["https://data.delijn.be/stops/305346", "https://tec.openplanner.team/stops/Bbgerlr1"], ["https://data.delijn.be/stops/305244", "https://mivb.openplanner.team/stops/9780"], ["http://irail.be/stations/NMBS/008871852", "https://tec.openplanner.team/stops/Cmohame1"], ["https://data.delijn.be/stops/408681", "https://tec.openplanner.team/stops/LRUhama1"], ["https://data.delijn.be/stops/300958", "https://mivb.openplanner.team/stops/2752"], ["https://mivb.openplanner.team/stops/0130227", "https://tec.openplanner.team/stops/Bwolvan1"], ["https://data.delijn.be/stops/405739", "https://tec.openplanner.team/stops/Lrclohe2"], ["https://data.delijn.be/stops/301000", "https://mivb.openplanner.team/stops/6413F"], ["https://data.delijn.be/stops/408980", "https://tec.openplanner.team/stops/LWAathe1"], ["https://data.delijn.be/stops/401402", "https://mivb.openplanner.team/stops/5046"], ["https://data.delijn.be/stops/509380", "https://tec.openplanner.team/stops/H4pl114b"], ["http://irail.be/stations/NMBS/008892650", "https://data.delijn.be/stops/209726"], ["http://irail.be/stations/NMBS/008886348", "https://tec.openplanner.team/stops/H4lz118b"], ["https://data.delijn.be/stops/301088", "https://mivb.openplanner.team/stops/1514"], ["https://data.delijn.be/stops/307682", "https://mivb.openplanner.team/stops/5916F"], ["http://irail.be/stations/NMBS/008886546", "https://data.delijn.be/stops/206778"], ["http://irail.be/stations/NMBS/008842655", "https://tec.openplanner.team/stops/LESmich1"], ["https://data.delijn.be/stops/408804", "https://tec.openplanner.team/stops/LVIgare1"], ["https://data.delijn.be/stops/401404", "https://mivb.openplanner.team/stops/5038"], ["https://data.delijn.be/stops/302869", "https://tec.openplanner.team/stops/Bhevjac2"], ["http://irail.be/stations/NMBS/008811817", "https://tec.openplanner.team/stops/Bottegl2"], ["https://data.delijn.be/stops/509292", "https://tec.openplanner.team/stops/H4mo188a"], ["https://data.delijn.be/stops/307698", "https://tec.openplanner.team/stops/Brsgsan1"], ["https://data.delijn.be/stops/301416", "https://tec.openplanner.team/stops/H1en104d"], ["https://data.delijn.be/stops/305270", "https://mivb.openplanner.team/stops/2365"], ["https://data.delijn.be/stops/304202", "https://tec.openplanner.team/stops/Brsregl2"], ["https://data.delijn.be/stops/408896", "https://tec.openplanner.team/stops/LFMkrut1"], ["https://data.delijn.be/stops/305435", "https://mivb.openplanner.team/stops/1620B"], ["https://data.delijn.be/stops/505274", "https://tec.openplanner.team/stops/H4po129b"], ["https://data.delijn.be/stops/300953", "https://mivb.openplanner.team/stops/0470459"], ["https://data.delijn.be/stops/300932", "https://mivb.openplanner.team/stops/2982"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N349aea"], ["https://data.delijn.be/stops/401401", "https://mivb.openplanner.team/stops/3401"], ["https://data.delijn.be/stops/400455", "https://tec.openplanner.team/stops/LLAchpl1"], ["https://data.delijn.be/stops/409249", "https://tec.openplanner.team/stops/LEMfort2"], ["http://irail.be/stations/NMBS/008841731", "https://data.delijn.be/stops/408727"], ["https://data.delijn.be/stops/407209", "https://tec.openplanner.team/stops/LHTbonn2"], ["https://data.delijn.be/stops/400466", "https://tec.openplanner.team/stops/LEMec--2"], ["https://data.delijn.be/stops/302451", "https://tec.openplanner.team/stops/Bzluvil1"], ["https://data.delijn.be/stops/405738", "https://tec.openplanner.team/stops/Lrc594-2"], ["https://data.delijn.be/stops/306068", "https://tec.openplanner.team/stops/Blempuc1"], ["https://data.delijn.be/stops/504322", "https://tec.openplanner.team/stops/H4mo193a"], ["http://irail.be/stations/NMBS/008891702", "https://data.delijn.be/stops/501509"], ["https://data.delijn.be/stops/405310", "https://tec.openplanner.team/stops/Blankal3"], ["https://mivb.openplanner.team/stops/4290", "https://tec.openplanner.team/stops/Bwbfckr2"], ["http://irail.be/stations/NMBS/008812245", "https://data.delijn.be/stops/308767"], ["http://irail.be/stations/NMBS/008812146", "https://data.delijn.be/stops/206957"], ["http://irail.be/stations/NMBS/008831005", "https://data.delijn.be/stops/403065"], ["https://data.delijn.be/stops/400665", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://data.delijn.be/stops/305495", "https://mivb.openplanner.team/stops/1321"], ["http://irail.be/stations/NMBS/008812120", "https://data.delijn.be/stops/303844"], ["http://irail.be/stations/NMBS/008896008", "https://data.delijn.be/stops/510021"], ["http://irail.be/stations/NMBS/008814134", "https://data.delijn.be/stops/307683"], ["http://irail.be/stations/NMBS/008866845", "https://tec.openplanner.team/stops/X673ada"], ["https://data.delijn.be/stops/504377", "https://tec.openplanner.team/stops/H4pl121a"], ["https://data.delijn.be/stops/301057", "https://mivb.openplanner.team/stops/4212B"], ["https://data.delijn.be/stops/300336", "https://tec.openplanner.team/stops/Balssvi1"], ["http://irail.be/stations/NMBS/008865540", "https://tec.openplanner.team/stops/X850ama"], ["https://data.delijn.be/stops/300876", "https://mivb.openplanner.team/stops/4265"], ["http://irail.be/stations/NMBS/008822772", "https://data.delijn.be/stops/107857"], ["https://mivb.openplanner.team/stops/1869", "https://tec.openplanner.team/stops/Bettars1"], ["https://data.delijn.be/stops/301088", "https://mivb.openplanner.team/stops/3216"], ["http://irail.be/stations/NMBS/008872413", "https://tec.openplanner.team/stops/Cflbrun1"], ["http://irail.be/stations/NMBS/008842754", "https://tec.openplanner.team/stops/LAYchal2"], ["https://data.delijn.be/stops/302805", "https://mivb.openplanner.team/stops/1668"], ["https://data.delijn.be/stops/301020", "https://mivb.openplanner.team/stops/4004"], ["http://irail.be/stations/NMBS/008821089", "https://data.delijn.be/stops/107725"], ["https://data.delijn.be/stops/405703", "https://tec.openplanner.team/stops/Llgelis1"], ["https://data.delijn.be/stops/410137", "https://tec.openplanner.team/stops/Lrccomm1"], ["https://data.delijn.be/stops/307974", "https://tec.openplanner.team/stops/Bwavmes2"], ["http://irail.be/stations/NMBS/008847258", "https://tec.openplanner.team/stops/Loureno1"], ["https://data.delijn.be/stops/301133", "https://mivb.openplanner.team/stops/2715"], ["http://irail.be/stations/NMBS/008864006", "https://tec.openplanner.team/stops/N390aeb"], ["https://mivb.openplanner.team/stops/5418", "https://tec.openplanner.team/stops/Bwbfhip2"], ["https://data.delijn.be/stops/503678", "https://tec.openplanner.team/stops/H4ef111a"], ["https://data.delijn.be/stops/307682", "https://mivb.openplanner.team/stops/5953"], ["http://irail.be/stations/NMBS/008886504", "https://tec.openplanner.team/stops/H1le121a"], ["https://data.delijn.be/stops/408927", "https://tec.openplanner.team/stops/LRmstat2"], ["http://irail.be/stations/NMBS/008885753", "https://tec.openplanner.team/stops/H4hx119a"], ["http://irail.be/stations/NMBS/008821600", "https://data.delijn.be/stops/106933"], ["https://data.delijn.be/stops/301048", "https://mivb.openplanner.team/stops/4600"], ["https://data.delijn.be/stops/303648", "https://mivb.openplanner.team/stops/5773"], ["http://irail.be/stations/NMBS/008844008", "https://tec.openplanner.team/stops/Lvegc--6"], ["https://data.delijn.be/stops/304550", "https://mivb.openplanner.team/stops/9651"], ["https://mivb.openplanner.team/stops/1729", "https://tec.openplanner.team/stops/Bbxltrv2"], ["http://irail.be/stations/NMBS/008883238", "https://tec.openplanner.team/stops/H2fa101b"], ["https://data.delijn.be/stops/300877", "https://mivb.openplanner.team/stops/5474"], ["https://data.delijn.be/stops/305319", "https://mivb.openplanner.team/stops/2817"], ["https://data.delijn.be/stops/301972", "https://tec.openplanner.team/stops/Bhalgja2"], ["https://data.delijn.be/stops/300877", "https://mivb.openplanner.team/stops/1289"], ["https://data.delijn.be/stops/301078", "https://mivb.openplanner.team/stops/9023"], ["http://irail.be/stations/NMBS/008844271", "https://tec.openplanner.team/stops/LTRgare1"], ["http://irail.be/stations/NMBS/008871100", "https://tec.openplanner.team/stops/Cmastni2"], ["http://irail.be/stations/NMBS/008728654", "https://data.delijn.be/stops/509453"], ["http://irail.be/stations/NMBS/008886009", "https://tec.openplanner.team/stops/H5at119a"], ["https://data.delijn.be/stops/408697", "https://tec.openplanner.team/stops/LGLspor2"], ["https://data.delijn.be/stops/306907", "https://tec.openplanner.team/stops/Bboseco1"], ["http://irail.be/stations/NMBS/008893047", "https://data.delijn.be/stops/201941"], ["http://irail.be/stations/NMBS/008844420", "https://tec.openplanner.team/stops/LSPther2"], ["https://data.delijn.be/stops/300802", "https://mivb.openplanner.team/stops/8661"], ["http://irail.be/stations/NMBS/008866258", "https://tec.openplanner.team/stops/X661ajb"], ["https://data.delijn.be/stops/301016", "https://mivb.openplanner.team/stops/4104"], ["https://data.delijn.be/stops/401419", "https://mivb.openplanner.team/stops/1321"], ["https://data.delijn.be/stops/300976", "https://mivb.openplanner.team/stops/6020"], ["https://data.delijn.be/stops/208742", "https://tec.openplanner.team/stops/H4or115a"], ["https://data.delijn.be/stops/302410", "https://tec.openplanner.team/stops/Bmlngch2"], ["https://data.delijn.be/stops/408888", "https://tec.openplanner.team/stops/LFPknap1"], ["https://data.delijn.be/stops/406398", "https://tec.openplanner.team/stops/Blangar1"], ["https://data.delijn.be/stops/300829", "https://mivb.openplanner.team/stops/2545"], ["http://irail.be/stations/NMBS/008811213", "https://data.delijn.be/stops/303570"], ["http://irail.be/stations/NMBS/008883311", "https://data.delijn.be/stops/301422"], ["http://irail.be/stations/NMBS/008822772", "https://data.delijn.be/stops/208900"], ["http://irail.be/stations/NMBS/008864311", "https://tec.openplanner.team/stops/X991agb"], ["http://irail.be/stations/NMBS/008871365", "https://tec.openplanner.team/stops/Cobobjo2"], ["https://data.delijn.be/stops/307158", "https://tec.openplanner.team/stops/Bhalwat2"], ["https://data.delijn.be/stops/300745", "https://mivb.openplanner.team/stops/1255"], ["http://irail.be/stations/NMBS/008842846", "https://tec.openplanner.team/stops/LHaxhig2"], ["http://irail.be/stations/NMBS/008822053", "https://data.delijn.be/stops/302505"], ["http://irail.be/stations/NMBS/008822228", "https://data.delijn.be/stops/106965"], ["http://irail.be/stations/NMBS/008200120", "https://tec.openplanner.team/stops/LmNlieb1"], ["http://irail.be/stations/NMBS/008891660", "https://data.delijn.be/stops/501159"], ["https://data.delijn.be/stops/301077", "https://mivb.openplanner.team/stops/6436"], ["https://data.delijn.be/stops/300797", "https://mivb.openplanner.team/stops/6858C"], ["https://mivb.openplanner.team/stops/2714", "https://tec.openplanner.team/stops/Buccvch1"], ["http://irail.be/stations/NMBS/008886561", "https://tec.openplanner.team/stops/H1le119b"], ["https://data.delijn.be/stops/305238", "https://tec.openplanner.team/stops/Bspkker2"], ["https://data.delijn.be/stops/307814", "https://tec.openplanner.team/stops/Bovesnh1"], ["http://irail.be/stations/NMBS/008813003", "https://mivb.openplanner.team/stops/6445"], ["https://data.delijn.be/stops/300343", "https://tec.openplanner.team/stops/Bbrlvil2"], ["http://irail.be/stations/NMBS/008821337", "https://data.delijn.be/stops/108250"], ["https://data.delijn.be/stops/303229", "https://mivb.openplanner.team/stops/9649"], ["http://irail.be/stations/NMBS/008841608", "https://tec.openplanner.team/stops/Lhrtunn1"], ["https://data.delijn.be/stops/302895", "https://tec.openplanner.team/stops/Bhevl3l2"], ["https://data.delijn.be/stops/300950", "https://mivb.openplanner.team/stops/1184"], ["http://irail.be/stations/NMBS/008895489", "https://data.delijn.be/stops/206583"], ["https://data.delijn.be/stops/301975", "https://tec.openplanner.team/stops/Bhaldbo1"], ["http://irail.be/stations/NMBS/008866845", "https://tec.openplanner.team/stops/X641ala"], ["http://irail.be/stations/NMBS/008869088", "https://tec.openplanner.team/stops/X615afb"], ["http://irail.be/stations/NMBS/008891660", "https://data.delijn.be/stops/501749"], ["http://irail.be/stations/NMBS/008869054", "https://tec.openplanner.team/stops/X626ada"], ["http://irail.be/stations/NMBS/008811726", "https://tec.openplanner.team/stops/Bwavgar3"], ["https://data.delijn.be/stops/300387", "https://mivb.openplanner.team/stops/9658"], ["https://data.delijn.be/stops/307649", "https://tec.openplanner.team/stops/Brsgfon1"], ["http://irail.be/stations/NMBS/008814415", "https://data.delijn.be/stops/300033"], ["https://data.delijn.be/stops/208374", "https://tec.openplanner.team/stops/H5rx115a"], ["http://irail.be/stations/NMBS/008893518", "https://data.delijn.be/stops/207393"], ["http://irail.be/stations/NMBS/008895240", "https://data.delijn.be/stops/208442"], ["https://data.delijn.be/stops/401408", "https://mivb.openplanner.team/stops/5230F"], ["https://mivb.openplanner.team/stops/6162", "https://tec.openplanner.team/stops/Bsgimor2"], ["https://data.delijn.be/stops/307025", "https://tec.openplanner.team/stops/H1en101a"], ["https://mivb.openplanner.team/stops/4076", "https://tec.openplanner.team/stops/Buccdch2"], ["https://data.delijn.be/stops/408896", "https://tec.openplanner.team/stops/LFPzwaa2"], ["http://irail.be/stations/NMBS/008843208", "https://tec.openplanner.team/stops/Lfhtrxc1"], ["https://data.delijn.be/stops/307685", "https://mivb.openplanner.team/stops/1963"], ["https://data.delijn.be/stops/300329", "https://tec.openplanner.team/stops/Balsnie1"], ["https://data.delijn.be/stops/307688", "https://tec.openplanner.team/stops/Blkbbeu1"], ["https://data.delijn.be/stops/301138", "https://mivb.openplanner.team/stops/6440"], ["https://data.delijn.be/stops/400474", "https://tec.openplanner.team/stops/LGLspor1"], ["https://data.delijn.be/stops/407204", "https://tec.openplanner.team/stops/LHTbaud1"], ["https://data.delijn.be/stops/300885", "https://mivb.openplanner.team/stops/52"], ["http://irail.be/stations/NMBS/008812005", "https://mivb.openplanner.team/stops/5735"], ["http://irail.be/stations/NMBS/008841673", "https://tec.openplanner.team/stops/Llianix1"], ["https://data.delijn.be/stops/300021", "https://mivb.openplanner.team/stops/9678"], ["http://irail.be/stations/NMBS/008861317", "https://tec.openplanner.team/stops/N522aha"], ["https://data.delijn.be/stops/307859", "https://tec.openplanner.team/stops/Bhmmbog1"], ["https://data.delijn.be/stops/308095", "https://tec.openplanner.team/stops/Bpiepla2"], ["http://irail.be/stations/NMBS/008843240", "https://tec.openplanner.team/stops/LENpt--1"], ["https://data.delijn.be/stops/208024", "https://tec.openplanner.team/stops/H1gy112a"], ["https://data.delijn.be/stops/410152", "https://mivb.openplanner.team/stops/5046"], ["https://data.delijn.be/stops/300827", "https://mivb.openplanner.team/stops/2831"], ["http://irail.be/stations/NMBS/008844206", "https://tec.openplanner.team/stops/Lpegole2"], ["http://irail.be/stations/NMBS/008893559", "https://data.delijn.be/stops/203480"], ["http://irail.be/stations/NMBS/008821006", "https://data.delijn.be/stops/104470"], ["https://data.delijn.be/stops/301026", "https://mivb.openplanner.team/stops/2470"], ["https://data.delijn.be/stops/301968", "https://tec.openplanner.team/stops/Bhalath1"], ["https://data.delijn.be/stops/305891", "https://mivb.openplanner.team/stops/9707"], ["http://irail.be/stations/NMBS/008893401", "https://data.delijn.be/stops/207738"], ["https://data.delijn.be/stops/208187", "https://tec.openplanner.team/stops/H5rx136b"], ["https://data.delijn.be/stops/300810", "https://mivb.openplanner.team/stops/4127"], ["https://data.delijn.be/stops/301040", "https://mivb.openplanner.team/stops/5011"], ["http://irail.be/stations/NMBS/008811304", "https://mivb.openplanner.team/stops/1233"], ["https://data.delijn.be/stops/302854", "https://tec.openplanner.team/stops/Blanmde1"], ["https://data.delijn.be/stops/304661", "https://mivb.openplanner.team/stops/5963"], ["https://data.delijn.be/stops/408857", "https://tec.openplanner.team/stops/LFChofv2"], ["https://data.delijn.be/stops/405458", "https://tec.openplanner.team/stops/LWHtrui1"], ["http://irail.be/stations/NMBS/008893047", "https://data.delijn.be/stops/200633"], ["http://irail.be/stations/NMBS/008892288", "https://data.delijn.be/stops/503006"], ["https://mivb.openplanner.team/stops/1718B", "https://tec.openplanner.team/stops/Baudsju1"], ["https://data.delijn.be/stops/307019", "https://tec.openplanner.team/stops/Bhevwzw1"], ["https://mivb.openplanner.team/stops/1919", "https://tec.openplanner.team/stops/Buccgob1"], ["https://mivb.openplanner.team/stops/6956G", "https://tec.openplanner.team/stops/Buccptj2"], ["https://data.delijn.be/stops/307580", "https://tec.openplanner.team/stops/Bbghepi1"], ["https://data.delijn.be/stops/304450", "https://tec.openplanner.team/stops/Brsgera2"], ["https://data.delijn.be/stops/408825", "https://tec.openplanner.team/stops/LMgberw2"], ["https://data.delijn.be/stops/300987", "https://mivb.openplanner.team/stops/3956"], ["http://irail.be/stations/NMBS/008894201", "https://data.delijn.be/stops/203114"], ["https://data.delijn.be/stops/300759", "https://mivb.openplanner.team/stops/3282"], ["https://data.delijn.be/stops/410152", "https://mivb.openplanner.team/stops/3424"], ["https://data.delijn.be/stops/301110", "https://tec.openplanner.team/stops/Bucccre2"], ["https://data.delijn.be/stops/300976", "https://mivb.openplanner.team/stops/3360F"], ["http://irail.be/stations/NMBS/008814464", "https://data.delijn.be/stops/301123"], ["http://irail.be/stations/NMBS/008863362", "https://tec.openplanner.team/stops/N538ara"], ["http://irail.be/stations/NMBS/008896503", "https://data.delijn.be/stops/504181"], ["https://data.delijn.be/stops/400483", "https://tec.openplanner.team/stops/LRGunio3"], ["http://irail.be/stations/NMBS/008894151", "https://data.delijn.be/stops/203140"], ["http://irail.be/stations/NMBS/008892031", "https://data.delijn.be/stops/201199"], ["https://data.delijn.be/stops/307205", "https://tec.openplanner.team/stops/Btubnav1"], ["http://irail.be/stations/NMBS/008728600", "https://tec.openplanner.team/stops/H4ar103a"], ["http://irail.be/stations/NMBS/008861515", "https://tec.openplanner.team/stops/Bcrncjo1"], ["http://irail.be/stations/NMBS/008892080", "https://data.delijn.be/stops/200338"], ["https://data.delijn.be/stops/306065", "https://tec.openplanner.team/stops/Bhalker2"], ["https://data.delijn.be/stops/307534", "https://tec.openplanner.team/stops/H1mk112a"], ["http://irail.be/stations/NMBS/008881406", "https://tec.openplanner.team/stops/H1ha193b"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Cgzhour2"], ["https://data.delijn.be/stops/401417", "https://mivb.openplanner.team/stops/22"], ["https://data.delijn.be/stops/405364", "https://tec.openplanner.team/stops/Braclin2"], ["http://irail.be/stations/NMBS/008863446", "https://tec.openplanner.team/stops/N512awa"], ["https://data.delijn.be/stops/307647", "https://mivb.openplanner.team/stops/1953"], ["https://data.delijn.be/stops/300767", "https://mivb.openplanner.team/stops/2260F"], ["https://data.delijn.be/stops/301247", "https://tec.openplanner.team/stops/Bhalrat2"], ["https://data.delijn.be/stops/304134", "https://tec.openplanner.team/stops/Bbghsar2"], ["http://irail.be/stations/NMBS/008832243", "https://data.delijn.be/stops/404282"], ["https://data.delijn.be/stops/300862", "https://mivb.openplanner.team/stops/8784"], ["https://mivb.openplanner.team/stops/1716", "https://tec.openplanner.team/stops/Baudstr2"], ["https://data.delijn.be/stops/408862", "https://tec.openplanner.team/stops/LFCotte2"], ["https://data.delijn.be/stops/407201", "https://tec.openplanner.team/stops/LWOruis1"], ["https://data.delijn.be/stops/302228", "https://tec.openplanner.team/stops/Blhutma1"], ["http://irail.be/stations/NMBS/008815016", "https://mivb.openplanner.team/stops/2503"], ["http://irail.be/stations/NMBS/008892007", "https://data.delijn.be/stops/205358"], ["https://data.delijn.be/stops/403711", "https://tec.openplanner.team/stops/LWAbett2"], ["http://irail.be/stations/NMBS/008865128", "https://tec.openplanner.team/stops/X725aee"], ["https://data.delijn.be/stops/302414", "https://tec.openplanner.team/stops/Bjodeco3"], ["http://irail.be/stations/NMBS/008841525", "https://data.delijn.be/stops/410355"], ["https://data.delijn.be/stops/305427", "https://mivb.openplanner.team/stops/9164"], ["https://mivb.openplanner.team/stops/1322", "https://tec.openplanner.team/stops/Bixllep1"], ["http://irail.be/stations/NMBS/008895471", "https://data.delijn.be/stops/207455"], ["https://data.delijn.be/stops/304569", "https://mivb.openplanner.team/stops/7650110"], ["https://data.delijn.be/stops/207789", "https://tec.openplanner.team/stops/H5rx151a"], ["https://data.delijn.be/stops/302398", "https://mivb.openplanner.team/stops/7690206"], ["https://data.delijn.be/stops/300743", "https://mivb.openplanner.team/stops/6858G"], ["https://data.delijn.be/stops/408885", "https://tec.openplanner.team/stops/LDpzol-2"], ["https://data.delijn.be/stops/504230", "https://tec.openplanner.team/stops/H4co105a"], ["http://irail.be/stations/NMBS/008881430", "https://tec.openplanner.team/stops/H1ha192a"], ["http://irail.be/stations/NMBS/008812005", "https://data.delijn.be/stops/306052"], ["http://irail.be/stations/NMBS/008895760", "https://data.delijn.be/stops/206988"], ["http://irail.be/stations/NMBS/008811460", "https://tec.openplanner.team/stops/Blhuibm1"], ["https://data.delijn.be/stops/300016", "https://mivb.openplanner.team/stops/2138B"], ["https://data.delijn.be/stops/302410", "https://tec.openplanner.team/stops/Bjodgai1"], ["http://irail.be/stations/NMBS/008832334", "https://data.delijn.be/stops/409262"], ["https://data.delijn.be/stops/302925", "https://tec.openplanner.team/stops/Bhevgar1"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/107064"], ["https://data.delijn.be/stops/509244", "https://tec.openplanner.team/stops/H4co133a"], ["https://data.delijn.be/stops/307971", "https://tec.openplanner.team/stops/Bwavrij2"], ["http://irail.be/stations/NMBS/008883121", "https://tec.openplanner.team/stops/H1ca103b"], ["http://irail.be/stations/NMBS/008833670", "https://tec.openplanner.team/stops/Braccen1"], ["https://data.delijn.be/stops/307232", "https://mivb.openplanner.team/stops/4266"], ["http://irail.be/stations/NMBS/008814449", "https://tec.openplanner.team/stops/Buccptj1"], ["https://mivb.openplanner.team/stops/9059", "https://tec.openplanner.team/stops/Bwbfckr2"], ["http://irail.be/stations/NMBS/008885522", "https://tec.openplanner.team/stops/H4fo119a"], ["http://irail.be/stations/NMBS/008400058", "https://data.delijn.be/stops/104636"], ["https://data.delijn.be/stops/308854", "https://mivb.openplanner.team/stops/2859"], ["https://data.delijn.be/stops/307605", "https://tec.openplanner.team/stops/H1mk116a"], ["https://data.delijn.be/stops/307687", "https://tec.openplanner.team/stops/Bbrlmez1"], ["https://data.delijn.be/stops/207798", "https://tec.openplanner.team/stops/H5rx121b"], ["http://irail.be/stations/NMBS/008863008", "https://tec.openplanner.team/stops/N501gre"], ["https://data.delijn.be/stops/304432", "https://tec.openplanner.team/stops/Brsgcfl2"], ["https://data.delijn.be/stops/208766", "https://tec.openplanner.team/stops/H5rx103b"], ["https://data.delijn.be/stops/304549", "https://mivb.openplanner.team/stops/9683"], ["http://irail.be/stations/NMBS/008822269", "https://data.delijn.be/stops/305601"], ["https://data.delijn.be/stops/307246", "https://mivb.openplanner.team/stops/0350640"], ["https://data.delijn.be/stops/301165", "https://mivb.openplanner.team/stops/2144"], ["http://irail.be/stations/NMBS/008821725", "https://data.delijn.be/stops/108242"], ["https://data.delijn.be/stops/306064", "https://tec.openplanner.team/stops/Brsgera1"], ["https://data.delijn.be/stops/209610", "https://tec.openplanner.team/stops/H1by106a"], ["https://mivb.openplanner.team/stops/3517", "https://tec.openplanner.team/stops/Bixleix1"], ["https://data.delijn.be/stops/300997", "https://mivb.openplanner.team/stops/6302"], ["http://irail.be/stations/NMBS/008873239", "https://tec.openplanner.team/stops/N118ava"], ["http://irail.be/stations/NMBS/008844628", "https://tec.openplanner.team/stops/LeUschn2"], ["https://data.delijn.be/stops/301411", "https://tec.openplanner.team/stops/H1mk123a"], ["http://irail.be/stations/NMBS/008811734", "https://data.delijn.be/stops/307974"], ["https://data.delijn.be/stops/408851", "https://tec.openplanner.team/stops/LTErest1"], ["http://irail.be/stations/NMBS/008863560", "https://tec.openplanner.team/stops/N540ala"], ["http://irail.be/stations/NMBS/008866001", "https://tec.openplanner.team/stops/X601bbd"], ["http://irail.be/stations/NMBS/008842655", "https://tec.openplanner.team/stops/LESslmo2"], ["https://mivb.openplanner.team/stops/1835", "https://tec.openplanner.team/stops/Bkrapri2"], ["https://data.delijn.be/stops/404843", "https://tec.openplanner.team/stops/LWOrout2"], ["https://data.delijn.be/stops/403785", "https://tec.openplanner.team/stops/LOehart2"], ["https://data.delijn.be/stops/305501", "https://mivb.openplanner.team/stops/1552"], ["https://data.delijn.be/stops/302854", "https://tec.openplanner.team/stops/Bwaanwi2"], ["http://irail.be/stations/NMBS/008892692", "https://data.delijn.be/stops/208803"], ["https://data.delijn.be/stops/300815", "https://mivb.openplanner.team/stops/5400"], ["https://data.delijn.be/stops/304031", "https://tec.openplanner.team/stops/Bovevnd2"], ["http://irail.be/stations/NMBS/008895638", "https://data.delijn.be/stops/305261"], ["https://data.delijn.be/stops/209407", "https://tec.openplanner.team/stops/H5rx138a"], ["https://mivb.openplanner.team/stops/1719", "https://tec.openplanner.team/stops/Baudvdr1"], ["https://data.delijn.be/stops/303121", "https://mivb.openplanner.team/stops/3850"], ["https://data.delijn.be/stops/308819", "https://mivb.openplanner.team/stops/1508"], ["http://irail.be/stations/NMBS/008891702", "https://data.delijn.be/stops/506742"], ["https://data.delijn.be/stops/300832", "https://mivb.openplanner.team/stops/6100"], ["https://data.delijn.be/stops/300925", "https://mivb.openplanner.team/stops/3898"], ["https://data.delijn.be/stops/301132", "https://tec.openplanner.team/stops/Bixlaca2"], ["https://data.delijn.be/stops/301923", "https://mivb.openplanner.team/stops/2085"], ["http://irail.be/stations/NMBS/008822111", "https://data.delijn.be/stops/307136"], ["https://data.delijn.be/stops/306968", "https://mivb.openplanner.team/stops/5772"], ["http://irail.be/stations/NMBS/008894151", "https://data.delijn.be/stops/202176"], ["https://data.delijn.be/stops/301138", "https://tec.openplanner.team/stops/Buccham2"], ["http://irail.be/stations/NMBS/008400424", "https://data.delijn.be/stops/406369"], ["https://data.delijn.be/stops/300062", "https://tec.openplanner.team/stops/Blemsta2"], ["https://data.delijn.be/stops/400652", "https://tec.openplanner.team/stops/LHgroso2"], ["http://irail.be/stations/NMBS/008895455", "https://data.delijn.be/stops/207648"], ["http://irail.be/stations/NMBS/008841459", "https://tec.openplanner.team/stops/LMOfleu1"], ["https://data.delijn.be/stops/301686", "https://tec.openplanner.team/stops/Bnetrec1"], ["https://mivb.openplanner.team/stops/5456", "https://tec.openplanner.team/stops/Bwbfhip1"], ["https://data.delijn.be/stops/306969", "https://mivb.openplanner.team/stops/2875"], ["https://data.delijn.be/stops/305227", "https://mivb.openplanner.team/stops/9707"], ["https://mivb.openplanner.team/stops/1965", "https://tec.openplanner.team/stops/Buccbou1"], ["https://data.delijn.be/stops/301408", "https://tec.openplanner.team/stops/H1en103a"], ["https://data.delijn.be/stops/301054", "https://mivb.openplanner.team/stops/5013F"], ["https://data.delijn.be/stops/306314", "https://tec.openplanner.team/stops/Bhalber2"], ["https://data.delijn.be/stops/408847", "https://tec.openplanner.team/stops/LRmha262"], ["https://data.delijn.be/stops/302413", "https://tec.openplanner.team/stops/Bjodgar1"], ["https://data.delijn.be/stops/307156", "https://tec.openplanner.team/stops/Bhalalb1"], ["http://irail.be/stations/NMBS/008843067", "https://tec.openplanner.team/stops/Lsepapi4"], ["https://data.delijn.be/stops/304090", "https://tec.openplanner.team/stops/Boveker2"], ["http://irail.be/stations/NMBS/008841442", "https://tec.openplanner.team/stops/LPUlecl2"], ["https://data.delijn.be/stops/408916", "https://tec.openplanner.team/stops/LFPloob1"], ["https://data.delijn.be/stops/301114", "https://tec.openplanner.team/stops/Bucccal3"], ["http://irail.be/stations/NMBS/008894748", "https://data.delijn.be/stops/205536"], ["http://irail.be/stations/NMBS/008841202", "https://tec.openplanner.team/stops/Lghsimo4"], ["https://data.delijn.be/stops/300849", "https://mivb.openplanner.team/stops/2855"], ["https://data.delijn.be/stops/300407", "https://tec.openplanner.team/stops/Blempuc2"], ["https://data.delijn.be/stops/301013", "https://mivb.openplanner.team/stops/1236F"], ["https://data.delijn.be/stops/300933", "https://mivb.openplanner.team/stops/2903F"], ["http://irail.be/stations/NMBS/008874724", "https://tec.openplanner.team/stops/N534apg"], ["https://data.delijn.be/stops/304077", "https://tec.openplanner.team/stops/Bovesnh1"], ["https://data.delijn.be/stops/209185", "https://tec.openplanner.team/stops/H5rx134a"], ["https://data.delijn.be/stops/401397", "https://mivb.openplanner.team/stops/3962"], ["https://data.delijn.be/stops/304109", "https://tec.openplanner.team/stops/Bovejme2"], ["https://data.delijn.be/stops/308125", "https://tec.openplanner.team/stops/Bgoesch4"], ["https://mivb.openplanner.team/stops/1757", "https://tec.openplanner.team/stops/Baudvdr1"], ["https://data.delijn.be/stops/308819", "https://mivb.openplanner.team/stops/3354"], ["https://data.delijn.be/stops/408859", "https://tec.openplanner.team/stops/LWRvert2"], ["https://data.delijn.be/stops/408907", "https://tec.openplanner.team/stops/LFPkape2"], ["https://data.delijn.be/stops/208764", "https://tec.openplanner.team/stops/H5rx106a"], ["http://irail.be/stations/NMBS/008811544", "https://tec.openplanner.team/stops/Bottpry1"], ["https://data.delijn.be/stops/406565", "https://tec.openplanner.team/stops/LLxcbr-2"], ["https://data.delijn.be/stops/300813", "https://mivb.openplanner.team/stops/7790456"], ["https://data.delijn.be/stops/504307", "https://tec.openplanner.team/stops/H4mo188b"], ["https://data.delijn.be/stops/300979", "https://mivb.openplanner.team/stops/6303"], ["http://irail.be/stations/NMBS/008822277", "https://data.delijn.be/stops/305613"], ["http://irail.be/stations/NMBS/008874054", "https://tec.openplanner.team/stops/Ccivill1"], ["http://irail.be/stations/NMBS/008863115", "https://tec.openplanner.team/stops/N501kmz"], ["http://irail.be/stations/NMBS/008831765", "https://data.delijn.be/stops/409642"], ["https://data.delijn.be/stops/300331", "https://tec.openplanner.team/stops/Bblapin2"], ["https://data.delijn.be/stops/301154", "https://tec.openplanner.team/stops/Bwbfhip2"], ["http://irail.be/stations/NMBS/008811106", "https://mivb.openplanner.team/stops/3419"], ["http://irail.be/stations/NMBS/008811817", "https://tec.openplanner.team/stops/Bottpma2"], ["https://data.delijn.be/stops/305319", "https://mivb.openplanner.team/stops/2853"], ["https://data.delijn.be/stops/303079", "https://tec.openplanner.team/stops/Bhevgro2"], ["http://irail.be/stations/NMBS/008895802", "https://data.delijn.be/stops/206911"], ["https://data.delijn.be/stops/300764", "https://mivb.openplanner.team/stops/3713"], ["http://irail.be/stations/NMBS/008843208", "https://tec.openplanner.team/stops/Lfhmalv1"], ["https://data.delijn.be/stops/305436", "https://mivb.openplanner.team/stops/5521"], ["https://data.delijn.be/stops/301196", "https://tec.openplanner.team/stops/Bmlnegl1"], ["https://data.delijn.be/stops/208740", "https://tec.openplanner.team/stops/H5rx115d"], ["http://irail.be/stations/NMBS/008821063", "https://data.delijn.be/stops/102414"], ["https://data.delijn.be/stops/207794", "https://tec.openplanner.team/stops/H5rx130b"], ["https://data.delijn.be/stops/504327", "https://tec.openplanner.team/stops/H4ar100a"], ["https://data.delijn.be/stops/301033", "https://mivb.openplanner.team/stops/6109"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/N524adb"], ["https://data.delijn.be/stops/301688", "https://tec.openplanner.team/stops/Bnetvan1"], ["https://data.delijn.be/stops/209190", "https://tec.openplanner.team/stops/H5rx127b"], ["https://data.delijn.be/stops/305333", "https://tec.openplanner.team/stops/Bspkbeu1"], ["https://data.delijn.be/stops/305344", "https://tec.openplanner.team/stops/Bbgewal2"], ["http://irail.be/stations/NMBS/008863867", "https://tec.openplanner.team/stops/N308afb"], ["https://data.delijn.be/stops/304013", "https://tec.openplanner.team/stops/Bovesnh1"], ["http://irail.be/stations/NMBS/008881570", "https://tec.openplanner.team/stops/H1fr124a"], ["https://data.delijn.be/stops/304089", "https://tec.openplanner.team/stops/Bovevri1"], ["http://irail.be/stations/NMBS/008861135", "https://tec.openplanner.team/stops/N533aeb"], ["http://irail.be/stations/NMBS/008893260", "https://data.delijn.be/stops/202022"], ["http://irail.be/stations/NMBS/008891629", "https://data.delijn.be/stops/501529"], ["https://data.delijn.be/stops/407213", "https://tec.openplanner.team/stops/LWOpier1"], ["https://data.delijn.be/stops/305223", "https://tec.openplanner.team/stops/H1mk115a"], ["http://irail.be/stations/NMBS/008812229", "https://data.delijn.be/stops/300289"], ["https://data.delijn.be/stops/308957", "https://tec.openplanner.team/stops/Bixefra1"], ["https://data.delijn.be/stops/407217", "https://tec.openplanner.team/stops/LBStec-2"], ["https://data.delijn.be/stops/508995", "https://tec.openplanner.team/stops/H4po128a"], ["https://data.delijn.be/stops/401410", "https://mivb.openplanner.team/stops/4550"], ["https://data.delijn.be/stops/305164", "https://tec.openplanner.team/stops/Btiegoo1"], ["http://irail.be/stations/NMBS/008884004", "https://tec.openplanner.team/stops/H1sg148a"], ["http://irail.be/stations/NMBS/008873387", "https://tec.openplanner.team/stops/Chhsncb2"], ["https://data.delijn.be/stops/408911", "https://tec.openplanner.team/stops/LVukabi1"], ["https://data.delijn.be/stops/300958", "https://mivb.openplanner.team/stops/37"], ["http://irail.be/stations/NMBS/008845146", "https://tec.openplanner.team/stops/X750ama"], ["http://irail.be/stations/NMBS/008811817", "https://tec.openplanner.team/stops/Bmouegl2"], ["https://data.delijn.be/stops/307987", "https://mivb.openplanner.team/stops/3334F"], ["https://data.delijn.be/stops/404658", "https://tec.openplanner.team/stops/Llaflot2"], ["http://irail.be/stations/NMBS/008866142", "https://tec.openplanner.team/stops/X670asb"], ["https://data.delijn.be/stops/307853", "https://mivb.openplanner.team/stops/0230234"], ["https://data.delijn.be/stops/301015", "https://mivb.openplanner.team/stops/1094"], ["https://data.delijn.be/stops/304775", "https://mivb.openplanner.team/stops/2218F"], ["https://data.delijn.be/stops/300955", "https://mivb.openplanner.team/stops/2725"], ["http://irail.be/stations/NMBS/008833274", "https://data.delijn.be/stops/307372"], ["http://irail.be/stations/NMBS/008842689", "https://tec.openplanner.team/stops/LESchac1"], ["http://irail.be/stations/NMBS/008874559", "https://tec.openplanner.team/stops/Cfachap2"], ["http://irail.be/stations/NMBS/008821030", "https://data.delijn.be/stops/105316"], ["http://irail.be/stations/NMBS/008814456", "https://mivb.openplanner.team/stops/5415"], ["http://irail.be/stations/NMBS/008841004", "https://tec.openplanner.team/stops/LlgguilD"], ["https://data.delijn.be/stops/308818", "https://mivb.openplanner.team/stops/6357F"], ["https://data.delijn.be/stops/404686", "https://tec.openplanner.team/stops/LWipaif3"], ["https://data.delijn.be/stops/302450", "https://tec.openplanner.team/stops/Bzlufbo2"], ["http://irail.be/stations/NMBS/008861119", "https://tec.openplanner.team/stops/N501gba"], ["https://data.delijn.be/stops/300938", "https://mivb.openplanner.team/stops/6864F"], ["https://data.delijn.be/stops/308723", "https://tec.openplanner.team/stops/Bgoewat2"], ["https://data.delijn.be/stops/303583", "https://mivb.openplanner.team/stops/9701"], ["http://irail.be/stations/NMBS/008728686", "https://tec.openplanner.team/stops/H4rm110a"], ["https://data.delijn.be/stops/408800", "https://tec.openplanner.team/stops/LVItroi*"], ["https://data.delijn.be/stops/301046", "https://mivb.openplanner.team/stops/8462"], ["http://irail.be/stations/NMBS/008895232", "https://data.delijn.be/stops/208813"], ["http://irail.be/stations/NMBS/008884541", "https://tec.openplanner.team/stops/H1qu105b"], ["https://data.delijn.be/stops/208762", "https://tec.openplanner.team/stops/H5rx100a"], ["https://data.delijn.be/stops/407205", "https://tec.openplanner.team/stops/LHTmonu1"], ["https://data.delijn.be/stops/305388", "https://mivb.openplanner.team/stops/1687F"], ["http://irail.be/stations/NMBS/008832615", "https://data.delijn.be/stops/406931"], ["https://data.delijn.be/stops/208766", "https://tec.openplanner.team/stops/H5rx146b"], ["https://data.delijn.be/stops/304037", "https://tec.openplanner.team/stops/Boveker1"], ["https://data.delijn.be/stops/304721", "https://mivb.openplanner.team/stops/5866"], ["https://data.delijn.be/stops/301021", "https://mivb.openplanner.team/stops/1209"], ["https://data.delijn.be/stops/408820", "https://tec.openplanner.team/stops/LMgbatt1"], ["http://irail.be/stations/NMBS/008864956", "https://tec.openplanner.team/stops/N564aba"], ["https://data.delijn.be/stops/209178", "https://tec.openplanner.team/stops/H5el100b"], ["http://irail.be/stations/NMBS/008843323", "https://tec.openplanner.team/stops/LNHhome2"], ["https://data.delijn.be/stops/307813", "https://mivb.openplanner.team/stops/2015"], ["https://data.delijn.be/stops/407206", "https://tec.openplanner.team/stops/LHThall3"], ["http://irail.be/stations/NMBS/008842705", "https://tec.openplanner.team/stops/LCPlacr1"], ["https://data.delijn.be/stops/409797", "https://tec.openplanner.team/stops/LBSvi522"], ["https://data.delijn.be/stops/308727", "https://tec.openplanner.team/stops/Bhakmkr1"], ["https://data.delijn.be/stops/408601", "https://tec.openplanner.team/stops/LToluik2"], ["http://irail.be/stations/NMBS/008844644", "https://tec.openplanner.team/stops/LhGfl241"], ["https://mivb.openplanner.team/stops/3552", "https://tec.openplanner.team/stops/Baudvdr2"], ["https://data.delijn.be/stops/307504", "https://tec.openplanner.team/stops/Brsrrcu1"], ["https://data.delijn.be/stops/405448", "https://tec.openplanner.team/stops/LWHzave2"], ["http://irail.be/stations/NMBS/008832235", "https://data.delijn.be/stops/410006"], ["https://data.delijn.be/stops/301078", "https://mivb.openplanner.team/stops/0420147"], ["http://irail.be/stations/NMBS/008869047", "https://tec.openplanner.team/stops/X615acb"], ["http://irail.be/stations/NMBS/008814373", "https://mivb.openplanner.team/stops/5964"], ["https://data.delijn.be/stops/503331", "https://tec.openplanner.team/stops/H4do105a"], ["http://irail.be/stations/NMBS/008891702", "https://data.delijn.be/stops/501338"], ["http://irail.be/stations/NMBS/008814126", "https://mivb.openplanner.team/stops/2452"], ["http://irail.be/stations/NMBS/008843901", "https://tec.openplanner.team/stops/Llggeer3"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N568ada"], ["http://irail.be/stations/NMBS/008841327", "https://tec.openplanner.team/stops/LVGeg--5"], ["http://irail.be/stations/NMBS/008895877", "https://data.delijn.be/stops/206059"], ["https://data.delijn.be/stops/300579", "https://mivb.openplanner.team/stops/6203"], ["http://irail.be/stations/NMBS/008841525", "https://tec.openplanner.team/stops/Llgcadr4"], ["http://irail.be/stations/NMBS/008841673", "https://tec.openplanner.team/stops/Lligare2"], ["https://data.delijn.be/stops/300953", "https://mivb.openplanner.team/stops/59"], ["https://data.delijn.be/stops/207757", "https://tec.openplanner.team/stops/H5rx101a"], ["https://data.delijn.be/stops/300763", "https://mivb.openplanner.team/stops/1259"], ["http://irail.be/stations/NMBS/008843240", "https://tec.openplanner.team/stops/LENmc--2"], ["http://irail.be/stations/NMBS/008895752", "https://data.delijn.be/stops/206719"], ["https://data.delijn.be/stops/306930", "https://tec.openplanner.team/stops/Bgoekaz1"], ["https://data.delijn.be/stops/300826", "https://mivb.openplanner.team/stops/2828"], ["http://irail.be/stations/NMBS/008811304", "https://mivb.openplanner.team/stops/1769"], ["http://irail.be/stations/NMBS/008886587", "https://tec.openplanner.team/stops/H1le125b"], ["http://irail.be/stations/NMBS/008843224", "https://tec.openplanner.team/stops/Lfhvoye1"], ["https://data.delijn.be/stops/507766", "https://tec.openplanner.team/stops/H4ae102a"], ["https://data.delijn.be/stops/302807", "https://mivb.openplanner.team/stops/1673"], ["https://data.delijn.be/stops/305337", "https://tec.openplanner.team/stops/Blmlvex2"], ["https://data.delijn.be/stops/307199", "https://tec.openplanner.team/stops/Bhalker1"], ["http://irail.be/stations/NMBS/008200136", "https://tec.openplanner.team/stops/X793aqa"], ["http://irail.be/stations/NMBS/008815040", "https://mivb.openplanner.team/stops/2"], ["https://data.delijn.be/stops/304204", "https://tec.openplanner.team/stops/Brsrrcu2"], ["http://irail.be/stations/NMBS/008008094", "https://tec.openplanner.team/stops/LrTpost2"], ["https://data.delijn.be/stops/301478", "https://mivb.openplanner.team/stops/7660209"], ["http://irail.be/stations/NMBS/008892080", "https://data.delijn.be/stops/201281"], ["http://irail.be/stations/NMBS/008811403", "https://mivb.openplanner.team/stops/4366"], ["https://data.delijn.be/stops/308720", "https://tec.openplanner.team/stops/Bgoevli1"], ["https://data.delijn.be/stops/301768", "https://mivb.openplanner.team/stops/4270F"], ["https://data.delijn.be/stops/306781", "https://tec.openplanner.team/stops/LLagert*"], ["https://data.delijn.be/stops/301029", "https://mivb.openplanner.team/stops/6425F"], ["https://data.delijn.be/stops/304580", "https://mivb.openplanner.team/stops/2221"], ["https://data.delijn.be/stops/304091", "https://tec.openplanner.team/stops/Bovesol2"], ["https://data.delijn.be/stops/301925", "https://mivb.openplanner.team/stops/9851"], ["https://data.delijn.be/stops/402551", "https://tec.openplanner.team/stops/LCAcruc2"], ["http://irail.be/stations/NMBS/008884640", "https://tec.openplanner.team/stops/H5gr137b"], ["http://irail.be/stations/NMBS/008861333", "https://tec.openplanner.team/stops/N576afb"], ["http://irail.be/stations/NMBS/008896925", "https://data.delijn.be/stops/500955"], ["https://data.delijn.be/stops/301925", "https://mivb.openplanner.team/stops/2071"], ["https://data.delijn.be/stops/401408", "https://mivb.openplanner.team/stops/1385"], ["https://data.delijn.be/stops/504241", "https://tec.openplanner.team/stops/H4co134a"], ["https://data.delijn.be/stops/307283", "https://tec.openplanner.team/stops/Bbchgod1"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/CMsud1"], ["https://data.delijn.be/stops/300314", "https://tec.openplanner.team/stops/Bhmmcge1"], ["https://data.delijn.be/stops/306064", "https://tec.openplanner.team/stops/Brsggea1"], ["https://data.delijn.be/stops/300956", "https://mivb.openplanner.team/stops/1813"], ["http://irail.be/stations/NMBS/008833670", "https://data.delijn.be/stops/405390"], ["https://data.delijn.be/stops/300861", "https://mivb.openplanner.team/stops/4217"], ["http://irail.be/stations/NMBS/008886066", "https://tec.openplanner.team/stops/H5me105a"], ["https://data.delijn.be/stops/301055", "https://mivb.openplanner.team/stops/5071"], ["http://irail.be/stations/NMBS/008865565", "https://tec.openplanner.team/stops/X850aia"], ["http://irail.be/stations/NMBS/008863362", "https://tec.openplanner.team/stops/N538akb"], ["https://data.delijn.be/stops/401650", "https://tec.openplanner.team/stops/Bracgar2"], ["https://data.delijn.be/stops/208765", "https://tec.openplanner.team/stops/H5rx125a"], ["http://irail.be/stations/NMBS/008832250", "https://data.delijn.be/stops/404231"], ["https://mivb.openplanner.team/stops/6158", "https://tec.openplanner.team/stops/Bixleix1"], ["https://data.delijn.be/stops/300771", "https://mivb.openplanner.team/stops/7670108"], ["http://irail.be/stations/NMBS/008893252", "https://data.delijn.be/stops/201002"], ["http://irail.be/stations/NMBS/008813045", "https://mivb.openplanner.team/stops/1901"], ["http://irail.be/stations/NMBS/008891173", "https://data.delijn.be/stops/501461"], ["https://data.delijn.be/stops/403702", "https://tec.openplanner.team/stops/LOeelbe2"], ["http://irail.be/stations/NMBS/008821063", "https://data.delijn.be/stops/101620"], ["http://irail.be/stations/NMBS/008872553", "https://tec.openplanner.team/stops/Btilsnc1"], ["http://irail.be/stations/NMBS/008871605", "https://tec.openplanner.team/stops/H1er109a"], ["https://data.delijn.be/stops/307644", "https://mivb.openplanner.team/stops/1935"], ["https://mivb.openplanner.team/stops/4362", "https://tec.openplanner.team/stops/Bixefra1"], ["https://data.delijn.be/stops/301068", "https://mivb.openplanner.team/stops/3253F"], ["https://data.delijn.be/stops/301009", "https://mivb.openplanner.team/stops/1094"], ["https://data.delijn.be/stops/301399", "https://mivb.openplanner.team/stops/5922"], ["http://irail.be/stations/NMBS/008822145", "https://data.delijn.be/stops/206337"], ["http://irail.be/stations/NMBS/008875002", "https://tec.openplanner.team/stops/N134abb"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2re163a"], ["http://irail.be/stations/NMBS/008814464", "https://data.delijn.be/stops/300016"], ["https://data.delijn.be/stops/400474", "https://tec.openplanner.team/stops/LGLdeni2"], ["http://irail.be/stations/NMBS/008895000", "https://data.delijn.be/stops/217002"], ["http://irail.be/stations/NMBS/008821154", "https://data.delijn.be/stops/104090"], ["https://data.delijn.be/stops/300888", "https://mivb.openplanner.team/stops/3260"], ["https://data.delijn.be/stops/208173", "https://tec.openplanner.team/stops/H5fl103a"], ["https://data.delijn.be/stops/509860", "https://tec.openplanner.team/stops/H4mo190b"], ["http://irail.be/stations/NMBS/008814167", "https://tec.openplanner.team/stops/Brsggar2"], ["http://irail.be/stations/NMBS/008871514", "https://tec.openplanner.team/stops/Cfmwaut1"], ["https://mivb.openplanner.team/stops/1585", "https://tec.openplanner.team/stops/Bwolvan2"], ["https://data.delijn.be/stops/408992", "https://tec.openplanner.team/stops/LWAvisi2"], ["http://irail.be/stations/NMBS/008881406", "https://tec.openplanner.team/stops/H1ob335c"], ["http://irail.be/stations/NMBS/008864931", "https://tec.openplanner.team/stops/N570agb"], ["https://data.delijn.be/stops/301113", "https://mivb.openplanner.team/stops/5825"], ["http://irail.be/stations/NMBS/008814159", "https://data.delijn.be/stops/307693"], ["https://data.delijn.be/stops/405744", "https://tec.openplanner.team/stops/Llgpire2"], ["http://irail.be/stations/NMBS/008874567", "https://tec.openplanner.team/stops/Cfaamio1"], ["https://data.delijn.be/stops/301079", "https://mivb.openplanner.team/stops/6434F"], ["http://irail.be/stations/NMBS/008821519", "https://data.delijn.be/stops/102401"], ["http://irail.be/stations/NMBS/008833209", "https://data.delijn.be/stops/300071"], ["http://irail.be/stations/NMBS/008893252", "https://data.delijn.be/stops/211856"], ["https://data.delijn.be/stops/504563", "https://tec.openplanner.team/stops/H4co148b"], ["https://data.delijn.be/stops/505842", "https://tec.openplanner.team/stops/H4co133b"], ["https://data.delijn.be/stops/407214", "https://tec.openplanner.team/stops/LHSvina1"], ["https://data.delijn.be/stops/300323", "https://tec.openplanner.team/stops/Balswsa1"], ["http://irail.be/stations/NMBS/008861168", "https://tec.openplanner.team/stops/N534aeb"], ["http://irail.be/stations/NMBS/008400219", "https://tec.openplanner.team/stops/LLAvi651"], ["https://data.delijn.be/stops/307649", "https://tec.openplanner.team/stops/Balswsa1"], ["https://data.delijn.be/stops/308726", "https://tec.openplanner.team/stops/Bgoevli1"], ["https://data.delijn.be/stops/408865", "https://tec.openplanner.team/stops/LWRgare1"], ["https://data.delijn.be/stops/408897", "https://tec.openplanner.team/stops/LFPkerk1"], ["https://data.delijn.be/stops/302903", "https://tec.openplanner.team/stops/Bhevl3l1"], ["http://irail.be/stations/NMBS/008883212", "https://tec.openplanner.team/stops/Becegar1"], ["https://data.delijn.be/stops/400492", "https://tec.openplanner.team/stops/LBSnouw1"], ["http://irail.be/stations/NMBS/008893401", "https://data.delijn.be/stops/207861"], ["http://irail.be/stations/NMBS/008812120", "https://data.delijn.be/stops/207178"], ["https://data.delijn.be/stops/408964", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://data.delijn.be/stops/408918", "https://tec.openplanner.team/stops/LTEcamp1"], ["https://data.delijn.be/stops/302423", "https://tec.openplanner.team/stops/Bsrgcur2"], ["https://mivb.openplanner.team/stops/1046G", "https://tec.openplanner.team/stops/Bixlaca2"], ["https://data.delijn.be/stops/304076", "https://tec.openplanner.team/stops/Bovesnh1"], ["http://irail.be/stations/NMBS/008824224", "https://data.delijn.be/stops/101086"], ["http://irail.be/stations/NMBS/008864469", "https://tec.openplanner.team/stops/X982apb"], ["http://irail.be/stations/NMBS/008831039", "https://data.delijn.be/stops/400119"], ["https://data.delijn.be/stops/408844", "https://tec.openplanner.team/stops/LRmsmvo2"], ["https://data.delijn.be/stops/405734", "https://tec.openplanner.team/stops/Lrclant4"], ["https://data.delijn.be/stops/208406", "https://tec.openplanner.team/stops/H5rx115a"], ["https://data.delijn.be/stops/406461", "https://tec.openplanner.team/stops/LOTsav-1"], ["https://data.delijn.be/stops/301050", "https://mivb.openplanner.team/stops/5009F"], ["http://irail.be/stations/NMBS/008881190", "https://tec.openplanner.team/stops/H1mj126b"], ["https://data.delijn.be/stops/301399", "https://mivb.openplanner.team/stops/2661"], ["https://data.delijn.be/stops/504004", "https://tec.openplanner.team/stops/H4mo192a"], ["http://irail.be/stations/NMBS/008842838", "https://tec.openplanner.team/stops/LGmcent1"], ["https://data.delijn.be/stops/307878", "https://mivb.openplanner.team/stops/9853"], ["https://data.delijn.be/stops/302238", "https://tec.openplanner.team/stops/Blhupqu1"], ["http://irail.be/stations/NMBS/008892304", "https://data.delijn.be/stops/504503"], ["https://data.delijn.be/stops/508332", "https://tec.openplanner.team/stops/H4eh100b"], ["http://irail.be/stations/NMBS/008015345", "https://tec.openplanner.team/stops/LaAjahn1"], ["https://data.delijn.be/stops/300787", "https://mivb.openplanner.team/stops/1482"], ["http://irail.be/stations/NMBS/008842036", "https://tec.openplanner.team/stops/Lcelhon3"], ["https://data.delijn.be/stops/408830", "https://tec.openplanner.team/stops/LBWeg--4"], ["http://irail.be/stations/NMBS/008822004", "https://data.delijn.be/stops/108057"], ["https://data.delijn.be/stops/302425", "https://tec.openplanner.team/stops/Bjodrga1"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N570aca"], ["http://irail.be/stations/NMBS/008863362", "https://tec.openplanner.team/stops/N538axb"], ["http://irail.be/stations/NMBS/008833233", "https://data.delijn.be/stops/304352"], ["http://irail.be/stations/NMBS/008841731", "https://tec.openplanner.team/stops/LPAmc--2"], ["https://data.delijn.be/stops/300875", "https://mivb.openplanner.team/stops/4232"], ["http://irail.be/stations/NMBS/008811270", "https://data.delijn.be/stops/302088"], ["https://data.delijn.be/stops/301051", "https://mivb.openplanner.team/stops/5089"], ["https://data.delijn.be/stops/505276", "https://tec.openplanner.team/stops/H4eh101a"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Canplch3"], ["https://data.delijn.be/stops/205982", "https://tec.openplanner.team/stops/H4rs117a"], ["http://irail.be/stations/NMBS/008885530", "https://tec.openplanner.team/stops/H4my122a"], ["http://irail.be/stations/NMBS/008894672", "https://data.delijn.be/stops/205654"], ["http://irail.be/stations/NMBS/008891132", "https://data.delijn.be/stops/200832"], ["https://mivb.openplanner.team/stops/5825", "https://tec.openplanner.team/stops/Bucceng1"], ["http://irail.be/stations/NMBS/008881166", "https://tec.openplanner.team/stops/H1ju121b"], ["https://data.delijn.be/stops/300877", "https://mivb.openplanner.team/stops/5400"], ["https://data.delijn.be/stops/209395", "https://tec.openplanner.team/stops/H4or116a"], ["https://data.delijn.be/stops/302387", "https://tec.openplanner.team/stops/Bgzdgpa1"], ["http://irail.be/stations/NMBS/008891611", "https://data.delijn.be/stops/501472"], ["https://mivb.openplanner.team/stops/3526", "https://tec.openplanner.team/stops/Baudulb2"], ["http://irail.be/stations/NMBS/008824158", "https://data.delijn.be/stops/102880"], ["https://data.delijn.be/stops/300969", "https://mivb.openplanner.team/stops/3522"], ["https://data.delijn.be/stops/305892", "https://mivb.openplanner.team/stops/9729"], ["http://irail.be/stations/NMBS/008844230", "https://tec.openplanner.team/stops/LNEgare*"], ["https://data.delijn.be/stops/405720", "https://tec.openplanner.team/stops/LlgLAMB5"], ["https://data.delijn.be/stops/305914", "https://mivb.openplanner.team/stops/2508"], ["https://data.delijn.be/stops/208614", "https://tec.openplanner.team/stops/H1bd102b"], ["http://irail.be/stations/NMBS/008811767", "https://tec.openplanner.team/stops/Bpechos1"], ["http://irail.be/stations/NMBS/008822343", "https://data.delijn.be/stops/105192"], ["http://irail.be/stations/NMBS/008873312", "https://tec.openplanner.team/stops/N162afa"], ["http://irail.be/stations/NMBS/008886553", "https://tec.openplanner.team/stops/H1le124a"], ["http://irail.be/stations/NMBS/008892031", "https://data.delijn.be/stops/200180"], ["http://irail.be/stations/NMBS/008845146", "https://tec.openplanner.team/stops/X750bga"], ["http://irail.be/stations/NMBS/008871837", "https://tec.openplanner.team/stops/Cmyjaci2"], ["https://data.delijn.be/stops/302398", "https://mivb.openplanner.team/stops/6811"], ["https://data.delijn.be/stops/207754", "https://tec.openplanner.team/stops/H4ss158b"], ["http://irail.be/stations/NMBS/008866142", "https://tec.openplanner.team/stops/X670ama"], ["https://data.delijn.be/stops/307835", "https://mivb.openplanner.team/stops/2041"], ["http://irail.be/stations/NMBS/008893443", "https://data.delijn.be/stops/207353"], ["http://irail.be/stations/NMBS/008861531", "https://tec.openplanner.team/stops/Bchamco1"], ["http://irail.be/stations/NMBS/008811536", "https://tec.openplanner.team/stops/Brixpao3"], ["http://irail.be/stations/NMBS/008895422", "https://data.delijn.be/stops/209696"], ["https://data.delijn.be/stops/208589", "https://tec.openplanner.team/stops/H1mk115a"], ["https://mivb.openplanner.team/stops/5414F", "https://tec.openplanner.team/stops/Bixlozo1"], ["https://data.delijn.be/stops/300991", "https://mivb.openplanner.team/stops/3704"], ["https://data.delijn.be/stops/307971", "https://tec.openplanner.team/stops/Bwavcar1"], ["https://data.delijn.be/stops/400495", "https://tec.openplanner.team/stops/LHScite1"], ["http://irail.be/stations/NMBS/008849064", "https://tec.openplanner.team/stops/LVItcm-1"], ["http://irail.be/stations/NMBS/008893401", "https://data.delijn.be/stops/207299"], ["https://data.delijn.be/stops/304452", "https://tec.openplanner.team/stops/Brsgter1"], ["http://irail.be/stations/NMBS/008711184", "https://tec.openplanner.team/stops/N425aba"], ["http://irail.be/stations/NMBS/008885001", "https://tec.openplanner.team/stops/H4ty305d"], ["http://irail.be/stations/NMBS/008849064", "https://tec.openplanner.team/stops/LLxmonu1"], ["http://irail.be/stations/NMBS/008886546", "https://tec.openplanner.team/stops/H1le121b"], ["http://irail.be/stations/NMBS/008873122", "https://tec.openplanner.team/stops/N101aua"], ["https://data.delijn.be/stops/300941", "https://mivb.openplanner.team/stops/3279"], ["http://irail.be/stations/NMBS/008891629", "https://data.delijn.be/stops/509896"], ["https://mivb.openplanner.team/stops/4299", "https://tec.openplanner.team/stops/Baudtri2"], ["https://data.delijn.be/stops/407201", "https://tec.openplanner.team/stops/LHegame4"], ["https://data.delijn.be/stops/301687", "https://tec.openplanner.team/stops/Bnetrbr2"], ["https://data.delijn.be/stops/405739", "https://tec.openplanner.team/stops/Lrclohe1"], ["https://data.delijn.be/stops/300319", "https://tec.openplanner.team/stops/Bbeaech2"], ["http://irail.be/stations/NMBS/008891645", "https://data.delijn.be/stops/501674"], ["http://irail.be/stations/NMBS/008863438", "https://tec.openplanner.team/stops/N506bhb"], ["http://irail.be/stations/NMBS/008886348", "https://tec.openplanner.team/stops/H4lz121a"], ["https://data.delijn.be/stops/304065", "https://tec.openplanner.team/stops/Bovevnd2"], ["http://irail.be/stations/NMBS/008893526", "https://data.delijn.be/stops/207280"], ["http://irail.be/stations/NMBS/008865003", "https://tec.openplanner.team/stops/X801bma"], ["http://irail.be/stations/NMBS/008886587", "https://tec.openplanner.team/stops/H5la177b"], ["http://irail.be/stations/NMBS/008811817", "https://tec.openplanner.team/stops/Bottegl1"], ["http://irail.be/stations/NMBS/008864345", "https://tec.openplanner.team/stops/X999aga"], ["http://irail.be/stations/NMBS/008832334", "https://data.delijn.be/stops/403664"], ["http://irail.be/stations/NMBS/008881125", "https://tec.openplanner.team/stops/H1gh168a"], ["http://irail.be/stations/NMBS/008811759", "https://tec.openplanner.team/stops/Bgzdpis1"], ["https://data.delijn.be/stops/301927", "https://mivb.openplanner.team/stops/2069"], ["https://mivb.openplanner.team/stops/2715", "https://tec.openplanner.team/stops/Buccvch2"], ["http://irail.be/stations/NMBS/008861523", "https://tec.openplanner.team/stops/Bchadpt1"], ["http://irail.be/stations/NMBS/008871381", "https://tec.openplanner.team/stops/H2go116a"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N349adb"], ["http://irail.be/stations/NMBS/008883113", "https://tec.openplanner.team/stops/H3so166a"], ["http://irail.be/stations/NMBS/008884889", "https://tec.openplanner.team/stops/H4ca122b"], ["https://data.delijn.be/stops/307815", "https://tec.openplanner.team/stops/Bovesnh2"], ["https://data.delijn.be/stops/304086", "https://tec.openplanner.team/stops/Bgnvbsi1"], ["http://irail.be/stations/NMBS/008842689", "https://tec.openplanner.team/stops/LFNlato1"], ["http://irail.be/stations/NMBS/008821048", "https://data.delijn.be/stops/105626"], ["http://irail.be/stations/NMBS/008831310", "https://data.delijn.be/stops/408795"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/503460"], ["https://data.delijn.be/stops/400466", "https://tec.openplanner.team/stops/LEMec--1"], ["https://mivb.openplanner.team/stops/1975", "https://tec.openplanner.team/stops/Bixlpat1"], ["http://irail.be/stations/NMBS/008871852", "https://tec.openplanner.team/stops/Cmastma1"], ["https://data.delijn.be/stops/304447", "https://tec.openplanner.team/stops/Brsgece2"], ["https://data.delijn.be/stops/300778", "https://mivb.openplanner.team/stops/8651"], ["https://data.delijn.be/stops/209189", "https://tec.openplanner.team/stops/H5rx120a"], ["https://data.delijn.be/stops/300812", "https://mivb.openplanner.team/stops/4131B"], ["http://irail.be/stations/NMBS/008846201", "https://tec.openplanner.team/stops/LVIdepo3"], ["https://data.delijn.be/stops/301675", "https://tec.openplanner.team/stops/Bhaawdr1"], ["https://data.delijn.be/stops/404682", "https://tec.openplanner.team/stops/LWipaif4"], ["https://data.delijn.be/stops/302928", "https://tec.openplanner.team/stops/Blhulor1"], ["https://data.delijn.be/stops/405718", "https://tec.openplanner.team/stops/Llgwild6"], ["https://data.delijn.be/stops/303960", "https://tec.openplanner.team/stops/Bbldvaa2"], ["https://data.delijn.be/stops/300763", "https://mivb.openplanner.team/stops/1204"], ["https://mivb.openplanner.team/stops/4290", "https://tec.openplanner.team/stops/Bwbfckr1"], ["http://irail.be/stations/NMBS/008864964", "https://tec.openplanner.team/stops/N535aeb"], ["https://data.delijn.be/stops/404659", "https://tec.openplanner.team/stops/LJUmate2"], ["http://irail.be/stations/NMBS/008812245", "https://data.delijn.be/stops/308768"], ["http://irail.be/stations/NMBS/008843307", "https://tec.openplanner.team/stops/LHUlieg2"], ["http://irail.be/stations/NMBS/008831005", "https://data.delijn.be/stops/403064"], ["https://data.delijn.be/stops/301083", "https://mivb.openplanner.team/stops/2028"], ["https://data.delijn.be/stops/504452", "https://tec.openplanner.team/stops/H4mo164a"], ["http://irail.be/stations/NMBS/008812120", "https://data.delijn.be/stops/303843"], ["https://mivb.openplanner.team/stops/1873", "https://tec.openplanner.team/stops/Bbxlner1"], ["http://irail.be/stations/NMBS/008896008", "https://data.delijn.be/stops/510020"], ["https://data.delijn.be/stops/302399", "https://mivb.openplanner.team/stops/6"], ["https://data.delijn.be/stops/300579", "https://mivb.openplanner.team/stops/3164"], ["https://data.delijn.be/stops/208741", "https://tec.openplanner.team/stops/H5rx135a"], ["https://data.delijn.be/stops/408832", "https://tec.openplanner.team/stops/LMgwith2"], ["https://data.delijn.be/stops/307717", "https://mivb.openplanner.team/stops/1472"], ["https://data.delijn.be/stops/307555", "https://tec.openplanner.team/stops/Bstemco2"], ["http://irail.be/stations/NMBS/008841558", "https://tec.openplanner.team/stops/Llglonh2"], ["http://irail.be/stations/NMBS/008843067", "https://tec.openplanner.team/stops/Lsepuit2"], ["https://data.delijn.be/stops/408916", "https://tec.openplanner.team/stops/LFPdeme1"], ["https://mivb.openplanner.team/stops/5024", "https://tec.openplanner.team/stops/Buccdst2"], ["http://irail.be/stations/NMBS/008842754", "https://tec.openplanner.team/stops/LAYchal1"], ["http://irail.be/stations/NMBS/008866175", "https://tec.openplanner.team/stops/X651aaa"], ["https://data.delijn.be/stops/509239", "https://tec.openplanner.team/stops/H4co109a"], ["https://data.delijn.be/stops/504004", "https://tec.openplanner.team/stops/H4mo206b"], ["https://data.delijn.be/stops/408853", "https://tec.openplanner.team/stops/LFCdree1"], ["https://data.delijn.be/stops/307634", "https://mivb.openplanner.team/stops/5825"], ["https://data.delijn.be/stops/405716", "https://tec.openplanner.team/stops/Llglimb2"], ["https://data.delijn.be/stops/300395", "https://tec.openplanner.team/stops/Bhalgja2"], ["http://irail.be/stations/NMBS/008864006", "https://tec.openplanner.team/stops/N390aea"], ["https://data.delijn.be/stops/410152", "https://mivb.openplanner.team/stops/3304"], ["https://data.delijn.be/stops/300762", "https://mivb.openplanner.team/stops/8641"], ["http://irail.be/stations/NMBS/008864956", "https://tec.openplanner.team/stops/N564adb"], ["http://irail.be/stations/NMBS/008886504", "https://tec.openplanner.team/stops/H1le122d"], ["http://irail.be/stations/NMBS/008811403", "https://mivb.openplanner.team/stops/6157F"], ["https://mivb.openplanner.team/stops/1951", "https://tec.openplanner.team/stops/Buccdst1"], ["https://data.delijn.be/stops/308355", "https://mivb.openplanner.team/stops/6419F"], ["http://irail.be/stations/NMBS/008864931", "https://tec.openplanner.team/stops/N236afa"], ["http://irail.be/stations/NMBS/008814142", "https://data.delijn.be/stops/307646"], ["https://data.delijn.be/stops/408848", "https://tec.openplanner.team/stops/LRmsmvo2"], ["https://data.delijn.be/stops/408877", "https://tec.openplanner.team/stops/LFMkrut4"], ["http://irail.be/stations/NMBS/008822277", "https://data.delijn.be/stops/105134"], ["http://irail.be/stations/NMBS/008811163", "https://mivb.openplanner.team/stops/5362"], ["http://irail.be/stations/NMBS/008200110", "https://tec.openplanner.team/stops/X688abb"], ["https://data.delijn.be/stops/404654", "https://tec.openplanner.team/stops/Llaflot2"], ["https://data.delijn.be/stops/308047", "https://tec.openplanner.team/stops/Bovetdo1"], ["https://data.delijn.be/stops/404091", "https://tec.openplanner.team/stops/LOdcris2"], ["http://irail.be/stations/NMBS/008844644", "https://tec.openplanner.team/stops/LhGadap1"], ["https://data.delijn.be/stops/302793", "https://mivb.openplanner.team/stops/9551"], ["https://data.delijn.be/stops/308871", "https://mivb.openplanner.team/stops/5532"], ["http://irail.be/stations/NMBS/008883238", "https://tec.openplanner.team/stops/H2fa101a"], ["http://irail.be/stations/NMBS/008400131", "https://data.delijn.be/stops/102752"], ["https://data.delijn.be/stops/303249", "https://tec.openplanner.team/stops/Blkbbvh1"], ["http://irail.be/stations/NMBS/008728687", "https://tec.openplanner.team/stops/H4bx167b"], ["http://irail.be/stations/NMBS/008814431", "https://data.delijn.be/stops/303659"], ["https://data.delijn.be/stops/301042", "https://mivb.openplanner.team/stops/4595"], ["http://irail.be/stations/NMBS/008841467", "https://tec.openplanner.team/stops/LKmmelo2"], ["https://data.delijn.be/stops/300877", "https://mivb.openplanner.team/stops/1290"], ["https://data.delijn.be/stops/304168", "https://tec.openplanner.team/stops/Blemhon2"], ["https://data.delijn.be/stops/301071", "https://mivb.openplanner.team/stops/8382"], ["https://mivb.openplanner.team/stops/1455", "https://tec.openplanner.team/stops/Bwbfgar1"], ["https://data.delijn.be/stops/304088", "https://tec.openplanner.team/stops/Bovesog2"], ["http://irail.be/stations/NMBS/008844271", "https://tec.openplanner.team/stops/LTRgare4"], ["http://irail.be/stations/NMBS/008843141", "https://tec.openplanner.team/stops/Ljecocc2"], ["http://irail.be/stations/NMBS/008871183", "https://tec.openplanner.team/stops/Cjxdesc2"], ["http://irail.be/stations/NMBS/008841202", "https://tec.openplanner.team/stops/Lanstat2"], ["https://data.delijn.be/stops/300763", "https://mivb.openplanner.team/stops/2536"], ["https://data.delijn.be/stops/309669", "https://mivb.openplanner.team/stops/9683"], ["http://irail.be/stations/NMBS/008892080", "https://data.delijn.be/stops/208707"], ["http://irail.be/stations/NMBS/008863545", "https://tec.openplanner.team/stops/N229akc"], ["https://data.delijn.be/stops/401419", "https://mivb.openplanner.team/stops/1320"], ["https://data.delijn.be/stops/308129", "https://tec.openplanner.team/stops/Bgoestu2"], ["https://data.delijn.be/stops/307592", "https://tec.openplanner.team/stops/Bspkbeu1"], ["http://irail.be/stations/NMBS/008886546", "https://tec.openplanner.team/stops/H1bd100a"], ["https://data.delijn.be/stops/400492", "https://tec.openplanner.team/stops/LRGbett3"], ["http://irail.be/stations/NMBS/008821105", "https://data.delijn.be/stops/102737"], ["https://data.delijn.be/stops/302429", "https://tec.openplanner.team/stops/Bjod7co1"], ["http://irail.be/stations/NMBS/008886074", "https://tec.openplanner.team/stops/H1hh116a"], ["https://data.delijn.be/stops/307648", "https://mivb.openplanner.team/stops/1953"], ["http://irail.be/stations/NMBS/008843307", "https://tec.openplanner.team/stops/LHUmala1"], ["https://data.delijn.be/stops/509815", "https://tec.openplanner.team/stops/H4po127b"], ["https://mivb.openplanner.team/stops/1970", "https://tec.openplanner.team/stops/Buccobs2"], ["http://irail.be/stations/NMBS/008822228", "https://data.delijn.be/stops/106966"], ["https://data.delijn.be/stops/302831", "https://tec.openplanner.team/stops/LLaover3"], ["http://irail.be/stations/NMBS/008874559", "https://tec.openplanner.team/stops/Cfamonu8"], ["https://data.delijn.be/stops/301077", "https://mivb.openplanner.team/stops/6435"], ["https://data.delijn.be/stops/300797", "https://mivb.openplanner.team/stops/6858G"], ["https://data.delijn.be/stops/300829", "https://mivb.openplanner.team/stops/4998"], ["https://data.delijn.be/stops/406714", "https://tec.openplanner.team/stops/LOTsav-1"], ["http://irail.be/stations/NMBS/008811304", "https://mivb.openplanner.team/stops/1262B"], ["http://irail.be/stations/NMBS/008889011", "https://tec.openplanner.team/stops/H4rx176a"], ["https://data.delijn.be/stops/304931", "https://mivb.openplanner.team/stops/9784B"], ["https://data.delijn.be/stops/304642", "https://mivb.openplanner.team/stops/1679F"], ["https://data.delijn.be/stops/408841", "https://tec.openplanner.team/stops/LRmha262"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/Cchsud05"], ["https://data.delijn.be/stops/504296", "https://tec.openplanner.team/stops/H4mo144a"], ["https://mivb.openplanner.team/stops/1754", "https://tec.openplanner.team/stops/Baudhde1"], ["http://irail.be/stations/NMBS/008893518", "https://data.delijn.be/stops/206308"], ["http://irail.be/stations/NMBS/008879004", "https://tec.openplanner.team/stops/H1gg117a"], ["http://irail.be/stations/NMBS/008822517", "https://data.delijn.be/stops/301882"], ["http://irail.be/stations/NMBS/008841608", "https://tec.openplanner.team/stops/Lhrtunn2"], ["http://irail.be/stations/NMBS/008814373", "https://data.delijn.be/stops/303224"], ["http://irail.be/stations/NMBS/008893583", "https://data.delijn.be/stops/207590"], ["https://data.delijn.be/stops/300777", "https://mivb.openplanner.team/stops/7660209"], ["https://data.delijn.be/stops/302804", "https://mivb.openplanner.team/stops/5656"], ["https://data.delijn.be/stops/306647", "https://mivb.openplanner.team/stops/3004"], ["https://data.delijn.be/stops/408822", "https://tec.openplanner.team/stops/LMgberw2"], ["http://irail.be/stations/NMBS/008895778", "https://data.delijn.be/stops/206727"], ["https://data.delijn.be/stops/207763", "https://tec.openplanner.team/stops/H5rx139a"], ["https://data.delijn.be/stops/300962", "https://mivb.openplanner.team/stops/2753"], ["https://data.delijn.be/stops/207755", "https://tec.openplanner.team/stops/H5rx115d"], ["https://data.delijn.be/stops/300952", "https://mivb.openplanner.team/stops/0470159"], ["https://data.delijn.be/stops/301021", "https://mivb.openplanner.team/stops/1307F"], ["http://irail.be/stations/NMBS/008869054", "https://tec.openplanner.team/stops/X626acb"], ["https://data.delijn.be/stops/208402", "https://tec.openplanner.team/stops/H5rx110b"], ["https://data.delijn.be/stops/300825", "https://mivb.openplanner.team/stops/6607"], ["https://data.delijn.be/stops/300894", "https://mivb.openplanner.team/stops/1988"], ["https://data.delijn.be/stops/505272", "https://tec.openplanner.team/stops/H4eh101a"], ["https://data.delijn.be/stops/305918", "https://mivb.openplanner.team/stops/1194"], ["https://data.delijn.be/stops/508229", "https://tec.openplanner.team/stops/H4po130a"], ["http://irail.be/stations/NMBS/008814431", "https://tec.openplanner.team/stops/Blkbavo1"], ["http://irail.be/stations/NMBS/008895091", "https://data.delijn.be/stops/207412"], ["https://data.delijn.be/stops/307207", "https://tec.openplanner.team/stops/Bcbqcha1"], ["http://irail.be/stations/NMBS/008861150", "https://tec.openplanner.team/stops/N534bsa"], ["https://data.delijn.be/stops/301046", "https://mivb.openplanner.team/stops/6755"], ["http://irail.be/stations/NMBS/008400526", "https://data.delijn.be/stops/102323"], ["https://data.delijn.be/stops/300877", "https://mivb.openplanner.team/stops/4229"], ["http://irail.be/stations/NMBS/008865110", "https://tec.openplanner.team/stops/X725ada"], ["https://data.delijn.be/stops/208766", "https://tec.openplanner.team/stops/H4de114a"], ["https://mivb.openplanner.team/stops/1830", "https://tec.openplanner.team/stops/Bwolvan1"], ["https://data.delijn.be/stops/302928", "https://tec.openplanner.team/stops/Blhusor1"], ["https://data.delijn.be/stops/304048", "https://tec.openplanner.team/stops/Bovetwe1"], ["https://data.delijn.be/stops/301029", "https://mivb.openplanner.team/stops/2932"], ["https://data.delijn.be/stops/307043", "https://mivb.openplanner.team/stops/6203"], ["http://irail.be/stations/NMBS/008893518", "https://data.delijn.be/stops/207392"], ["https://data.delijn.be/stops/304933", "https://mivb.openplanner.team/stops/9784B"], ["http://irail.be/stations/NMBS/008895646", "https://data.delijn.be/stops/208575"], ["http://irail.be/stations/NMBS/008874583", "https://tec.openplanner.team/stops/N543chb"], ["http://irail.be/stations/NMBS/008892056", "https://data.delijn.be/stops/200696"], ["https://data.delijn.be/stops/300891", "https://mivb.openplanner.team/stops/5001F"], ["https://data.delijn.be/stops/306932", "https://tec.openplanner.team/stops/Bboseco1"], ["https://data.delijn.be/stops/301154", "https://mivb.openplanner.team/stops/5419"], ["https://data.delijn.be/stops/305423", "https://mivb.openplanner.team/stops/5528F"], ["http://irail.be/stations/NMBS/008873007", "https://tec.openplanner.team/stops/N106anb"], ["https://mivb.openplanner.team/stops/1134", "https://tec.openplanner.team/stops/Bbxlner1"], ["https://data.delijn.be/stops/301028", "https://tec.openplanner.team/stops/Bsgimca1"], ["https://data.delijn.be/stops/303650", "https://mivb.openplanner.team/stops/1511"], ["https://data.delijn.be/stops/301921", "https://mivb.openplanner.team/stops/2017"], ["https://data.delijn.be/stops/207782", "https://tec.openplanner.team/stops/H5rx127a"], ["http://irail.be/stations/NMBS/008822533", "https://data.delijn.be/stops/301868"], ["http://irail.be/stations/NMBS/008871514", "https://tec.openplanner.team/stops/Cfmcoro2"], ["https://data.delijn.be/stops/302381", "https://tec.openplanner.team/stops/Bwavlav2"], ["http://irail.be/stations/NMBS/008891652", "https://data.delijn.be/stops/506636"], ["http://irail.be/stations/NMBS/008861317", "https://tec.openplanner.team/stops/N522agb"], ["http://irail.be/stations/NMBS/008811106", "https://mivb.openplanner.team/stops/2996"], ["https://data.delijn.be/stops/306816", "https://tec.openplanner.team/stops/Balsbeg2"], ["http://irail.be/stations/NMBS/008891264", "https://data.delijn.be/stops/507663"], ["http://irail.be/stations/NMBS/008874567", "https://tec.openplanner.team/stops/Cfaysle2"], ["http://irail.be/stations/NMBS/008811445", "https://tec.openplanner.team/stops/Bhoeboo2"], ["http://irail.be/stations/NMBS/008865649", "https://tec.openplanner.team/stops/X343aic"], ["https://data.delijn.be/stops/301029", "https://tec.openplanner.team/stops/Bsgimca2"], ["https://data.delijn.be/stops/300747", "https://mivb.openplanner.team/stops/7680107"], ["http://irail.be/stations/NMBS/008895802", "https://data.delijn.be/stops/206101"], ["http://irail.be/stations/NMBS/008821022", "https://data.delijn.be/stops/103990"], ["https://data.delijn.be/stops/300827", "https://mivb.openplanner.team/stops/2833"], ["http://irail.be/stations/NMBS/008895000", "https://data.delijn.be/stops/205970"], ["https://data.delijn.be/stops/403701", "https://tec.openplanner.team/stops/LGreg--2"], ["https://data.delijn.be/stops/301059", "https://mivb.openplanner.team/stops/58"], ["http://irail.be/stations/NMBS/008896388", "https://data.delijn.be/stops/508076"], ["https://data.delijn.be/stops/208189", "https://tec.openplanner.team/stops/H5rx120b"], ["https://data.delijn.be/stops/408897", "https://tec.openplanner.team/stops/LFPkerk2"], ["https://data.delijn.be/stops/408901", "https://tec.openplanner.team/stops/LFPkerk1"], ["https://data.delijn.be/stops/300749", "https://mivb.openplanner.team/stops/1207"], ["https://data.delijn.be/stops/305243", "https://mivb.openplanner.team/stops/9786"], ["http://irail.be/stations/NMBS/008813037", "https://mivb.openplanner.team/stops/0610163"], ["https://data.delijn.be/stops/306311", "https://mivb.openplanner.team/stops/5751"], ["https://data.delijn.be/stops/300362", "https://tec.openplanner.team/stops/Bbrlvil2"], ["http://irail.be/stations/NMBS/008871217", "https://tec.openplanner.team/stops/Croegli2"], ["https://data.delijn.be/stops/405458", "https://tec.openplanner.team/stops/LWHmath2"], ["https://data.delijn.be/stops/305224", "https://tec.openplanner.team/stops/Bmrqpla1"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LMamuse3"], ["http://irail.be/stations/NMBS/008865110", "https://tec.openplanner.team/stops/X725aff"], ["https://data.delijn.be/stops/408951", "https://tec.openplanner.team/stops/LWAgare*"], ["https://data.delijn.be/stops/401411", "https://tec.openplanner.team/stops/Bettbue2"], ["https://data.delijn.be/stops/302437", "https://tec.openplanner.team/stops/Bsrgegl2"], ["https://data.delijn.be/stops/301029", "https://mivb.openplanner.team/stops/6408"], ["https://mivb.openplanner.team/stops/1718B", "https://tec.openplanner.team/stops/Baudsju2"], ["http://irail.be/stations/NMBS/008863461", "https://tec.openplanner.team/stops/N509bea"], ["http://irail.be/stations/NMBS/008821006", "https://data.delijn.be/stops/108005"], ["https://data.delijn.be/stops/305388", "https://mivb.openplanner.team/stops/1745"], ["https://data.delijn.be/stops/305347", "https://tec.openplanner.team/stops/Bwaveur1"], ["https://data.delijn.be/stops/307637", "https://mivb.openplanner.team/stops/5823"], ["https://data.delijn.be/stops/304018", "https://tec.openplanner.team/stops/Bovesol1"], ["https://data.delijn.be/stops/208762", "https://tec.openplanner.team/stops/H5rx100b"], ["https://data.delijn.be/stops/300366", "https://tec.openplanner.team/stops/Bwaucan1"], ["https://data.delijn.be/stops/305229", "https://mivb.openplanner.team/stops/9632"], ["http://irail.be/stations/NMBS/008892080", "https://data.delijn.be/stops/209707"], ["https://data.delijn.be/stops/308824", "https://tec.openplanner.team/stops/Blaneli1"], ["http://irail.be/stations/NMBS/008895455", "https://data.delijn.be/stops/206487"], ["https://data.delijn.be/stops/301118", "https://mivb.openplanner.team/stops/5604"], ["http://irail.be/stations/NMBS/008871837", "https://tec.openplanner.team/stops/Cldvign2"], ["http://irail.be/stations/NMBS/008844057", "https://tec.openplanner.team/stops/Lvepala9"], ["http://irail.be/stations/NMBS/008811254", "https://data.delijn.be/stops/302715"], ["https://data.delijn.be/stops/504307", "https://tec.openplanner.team/stops/H4mo144a"], ["https://data.delijn.be/stops/301110", "https://tec.openplanner.team/stops/Bucccre1"], ["http://irail.be/stations/NMBS/008831138", "https://data.delijn.be/stops/400859"], ["http://irail.be/stations/NMBS/008879004", "https://tec.openplanner.team/stops/H1be104a"], ["https://data.delijn.be/stops/307110", "https://tec.openplanner.team/stops/Bjodath1"], ["https://data.delijn.be/stops/300624", "https://tec.openplanner.team/stops/Bbealou2"], ["http://irail.be/stations/NMBS/008863362", "https://tec.openplanner.team/stops/N538arb"], ["https://data.delijn.be/stops/307262", "https://mivb.openplanner.team/stops/9657"], ["https://data.delijn.be/stops/307965", "https://tec.openplanner.team/stops/Bwavnep1"], ["http://irail.be/stations/NMBS/008814340", "https://data.delijn.be/stops/306970"], ["https://data.delijn.be/stops/408886", "https://tec.openplanner.team/stops/LVu40--2"], ["http://irail.be/stations/NMBS/008728600", "https://tec.openplanner.team/stops/H4ar103b"], ["https://data.delijn.be/stops/300940", "https://mivb.openplanner.team/stops/3130"], ["https://data.delijn.be/stops/307282", "https://tec.openplanner.team/stops/Bcbqa361"], ["https://data.delijn.be/stops/405448", "https://tec.openplanner.team/stops/LWscona1"], ["http://irail.be/stations/NMBS/008811742", "https://data.delijn.be/stops/302377"], ["https://data.delijn.be/stops/307975", "https://tec.openplanner.team/stops/Bwavfol1"], ["http://irail.be/stations/NMBS/008861127", "https://tec.openplanner.team/stops/N528akb"], ["https://data.delijn.be/stops/300752", "https://mivb.openplanner.team/stops/8651"], ["http://irail.be/stations/NMBS/008849064", "https://data.delijn.be/stops/408824"], ["http://irail.be/stations/NMBS/008881406", "https://tec.openplanner.team/stops/H1ha193a"], ["http://irail.be/stations/NMBS/008843224", "https://tec.openplanner.team/stops/Lpoprie2"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Cgzhour3"], ["http://irail.be/stations/NMBS/008866530", "https://tec.openplanner.team/stops/X617agb"], ["https://data.delijn.be/stops/305264", "https://mivb.openplanner.team/stops/1143"], ["https://data.delijn.be/stops/302177", "https://tec.openplanner.team/stops/Bzlucam1"], ["https://data.delijn.be/stops/408950", "https://tec.openplanner.team/stops/LWAfabr1"], ["https://data.delijn.be/stops/301247", "https://tec.openplanner.team/stops/Bhalrat1"], ["https://data.delijn.be/stops/408862", "https://tec.openplanner.team/stops/LFCscho1"], ["http://irail.be/stations/NMBS/008895000", "https://data.delijn.be/stops/216002"], ["https://data.delijn.be/stops/304872", "https://mivb.openplanner.team/stops/1629"], ["https://mivb.openplanner.team/stops/5025", "https://tec.openplanner.team/stops/Buccdst2"], ["https://data.delijn.be/stops/304599", "https://mivb.openplanner.team/stops/1379"], ["https://data.delijn.be/stops/209011", "https://tec.openplanner.team/stops/H1og136a"], ["http://irail.be/stations/NMBS/008865128", "https://tec.openplanner.team/stops/X725aeb"], ["https://mivb.openplanner.team/stops/5462F", "https://tec.openplanner.team/stops/Bixlozo1"], ["http://irail.be/stations/NMBS/008849072", "https://tec.openplanner.team/stops/X790alb"], ["http://irail.be/stations/NMBS/008873312", "https://tec.openplanner.team/stops/N106aeb"], ["https://data.delijn.be/stops/302001", "https://tec.openplanner.team/stops/Blemwro2"], ["http://irail.be/stations/NMBS/008886553", "https://tec.openplanner.team/stops/H1le118b"], ["https://data.delijn.be/stops/308868", "https://mivb.openplanner.team/stops/5515"], ["https://data.delijn.be/stops/300949", "https://mivb.openplanner.team/stops/1334"], ["http://irail.be/stations/NMBS/008844339", "https://tec.openplanner.team/stops/LTHroch2"], ["http://irail.be/stations/NMBS/008010316", "https://data.delijn.be/stops/404748"], ["https://data.delijn.be/stops/303955", "https://tec.openplanner.team/stops/Bbldvaa2"], ["https://data.delijn.be/stops/304569", "https://mivb.openplanner.team/stops/7650210"], ["https://data.delijn.be/stops/408963", "https://tec.openplanner.team/stops/LWAwila1"], ["https://data.delijn.be/stops/207754", "https://tec.openplanner.team/stops/H4ss158a"], ["https://mivb.openplanner.team/stops/2145", "https://tec.openplanner.team/stops/Buccpor1"], ["https://data.delijn.be/stops/408507", "https://tec.openplanner.team/stops/LTobilz2"], ["https://data.delijn.be/stops/400484", "https://tec.openplanner.team/stops/LRGgend1"], ["https://data.delijn.be/stops/503029", "https://tec.openplanner.team/stops/H4ae102a"], ["http://irail.be/stations/NMBS/008843224", "https://tec.openplanner.team/stops/Lfhnrou1"], ["http://irail.be/stations/NMBS/008841202", "https://tec.openplanner.team/stops/Llojeme4"], ["http://irail.be/stations/NMBS/008821121", "https://data.delijn.be/stops/101267"], ["http://irail.be/stations/NMBS/008831807", "https://data.delijn.be/stops/407931"], ["http://irail.be/stations/NMBS/008892304", "https://data.delijn.be/stops/505167"], ["http://irail.be/stations/NMBS/008833670", "https://tec.openplanner.team/stops/Braccen2"], ["http://irail.be/stations/NMBS/008843067", "https://tec.openplanner.team/stops/Lsehya-1"], ["http://irail.be/stations/NMBS/008821709", "https://data.delijn.be/stops/107052"], ["http://irail.be/stations/NMBS/008885522", "https://tec.openplanner.team/stops/H4fo118b"], ["https://data.delijn.be/stops/207764", "https://tec.openplanner.team/stops/H5rx130a"], ["https://data.delijn.be/stops/306968", "https://mivb.openplanner.team/stops/2824"], ["https://data.delijn.be/stops/302822", "https://tec.openplanner.team/stops/Blhugar2"], ["https://data.delijn.be/stops/306908", "https://tec.openplanner.team/stops/Bboseco1"], ["https://data.delijn.be/stops/300876", "https://mivb.openplanner.team/stops/5400"], ["http://irail.be/stations/NMBS/008881463", "https://tec.openplanner.team/stops/H2sb239a"], ["https://data.delijn.be/stops/305515", "https://mivb.openplanner.team/stops/9561"], ["https://data.delijn.be/stops/408747", "https://tec.openplanner.team/stops/LTowijk1"], ["https://data.delijn.be/stops/307246", "https://mivb.openplanner.team/stops/0350240"], ["https://data.delijn.be/stops/301165", "https://mivb.openplanner.team/stops/2143B"], ["http://irail.be/stations/NMBS/008821725", "https://data.delijn.be/stops/108241"], ["http://irail.be/stations/NMBS/008811304", "https://mivb.openplanner.team/stops/1133"], ["http://irail.be/stations/NMBS/008895570", "https://data.delijn.be/stops/208507"], ["https://data.delijn.be/stops/301154", "https://tec.openplanner.team/stops/Buccpin2"], ["http://irail.be/stations/NMBS/008895430", "https://data.delijn.be/stops/209690"], ["http://irail.be/stations/NMBS/008841525", "https://data.delijn.be/stops/405706"], ["http://irail.be/stations/NMBS/008842036", "https://tec.openplanner.team/stops/Lcegare2"], ["https://data.delijn.be/stops/405702", "https://tec.openplanner.team/stops/Llgpire2"], ["https://data.delijn.be/stops/306098", "https://tec.openplanner.team/stops/Bhevjac2"], ["https://data.delijn.be/stops/400452", "https://tec.openplanner.team/stops/LBPeg--1"], ["http://irail.be/stations/NMBS/008883220", "https://tec.openplanner.team/stops/H2ec106a"], ["https://data.delijn.be/stops/402022", "https://tec.openplanner.team/stops/LFMkrut4"], ["https://data.delijn.be/stops/307223", "https://tec.openplanner.team/stops/Bhalgar2"], ["http://irail.be/stations/NMBS/008833266", "https://data.delijn.be/stops/306858"], ["https://data.delijn.be/stops/408972", "https://tec.openplanner.team/stops/LWAlong1"], ["http://irail.be/stations/NMBS/008866407", "https://tec.openplanner.team/stops/X608abb"], ["http://irail.be/stations/NMBS/008842655", "https://tec.openplanner.team/stops/LESslmo1"], ["https://data.delijn.be/stops/306099", "https://tec.openplanner.team/stops/Bhevwzw2"], ["https://data.delijn.be/stops/304877", "https://mivb.openplanner.team/stops/9556"], ["https://data.delijn.be/stops/307792", "https://mivb.openplanner.team/stops/1746"], ["https://data.delijn.be/stops/307795", "https://mivb.openplanner.team/stops/5041B"], ["https://data.delijn.be/stops/404666", "https://tec.openplanner.team/stops/LJU51--1"], ["http://irail.be/stations/NMBS/008881000", "https://tec.openplanner.team/stops/H1ms259a"], ["http://irail.be/stations/NMBS/008811817", "https://tec.openplanner.team/stops/Bcseaba1"], ["http://irail.be/stations/NMBS/008821311", "https://data.delijn.be/stops/106901"], ["https://data.delijn.be/stops/408690", "https://tec.openplanner.team/stops/LTotrui2"], ["http://irail.be/stations/NMBS/008814142", "https://mivb.openplanner.team/stops/1935"], ["http://irail.be/stations/NMBS/008812112", "https://data.delijn.be/stops/301937"], ["https://data.delijn.be/stops/209373", "https://tec.openplanner.team/stops/H5rx151a"], ["https://data.delijn.be/stops/306932", "https://tec.openplanner.team/stops/Bgoekaz1"], ["http://irail.be/stations/NMBS/008894748", "https://data.delijn.be/stops/204530"], ["https://data.delijn.be/stops/303121", "https://mivb.openplanner.team/stops/3815"], ["https://data.delijn.be/stops/305168", "https://tec.openplanner.team/stops/Btiegoo1"], ["http://irail.be/stations/NMBS/008841525", "https://tec.openplanner.team/stops/LlgLAMB7"], ["https://data.delijn.be/stops/300767", "https://mivb.openplanner.team/stops/2217"], ["https://data.delijn.be/stops/300920", "https://mivb.openplanner.team/stops/6081"], ["http://irail.be/stations/NMBS/008844420", "https://tec.openplanner.team/stops/LSPec--1"], ["https://data.delijn.be/stops/305325", "https://mivb.openplanner.team/stops/9627"], ["https://data.delijn.be/stops/301132", "https://tec.openplanner.team/stops/Bixlaca1"], ["https://data.delijn.be/stops/401410", "https://mivb.openplanner.team/stops/2246F"], ["http://irail.be/stations/NMBS/008822111", "https://data.delijn.be/stops/307135"], ["http://irail.be/stations/NMBS/008844339", "https://tec.openplanner.team/stops/LTHmaka2"], ["http://irail.be/stations/NMBS/008814464", "https://data.delijn.be/stops/302872"], ["https://data.delijn.be/stops/401409", "https://mivb.openplanner.team/stops/0080422"], ["http://irail.be/stations/NMBS/008843133", "https://tec.openplanner.team/stops/Lscbour2"], ["http://irail.be/stations/NMBS/008844255", "https://tec.openplanner.team/stops/LFrfrai2"], ["https://mivb.openplanner.team/stops/1872B", "https://tec.openplanner.team/stops/Bettgle2"], ["https://data.delijn.be/stops/301129", "https://mivb.openplanner.team/stops/2136"], ["https://data.delijn.be/stops/301138", "https://tec.openplanner.team/stops/Buccham1"], ["https://data.delijn.be/stops/509381", "https://tec.openplanner.team/stops/H4pl137b"], ["https://data.delijn.be/stops/300815", "https://mivb.openplanner.team/stops/7810254"], ["https://data.delijn.be/stops/302401", "https://mivb.openplanner.team/stops/7"], ["http://irail.be/stations/NMBS/008822343", "https://data.delijn.be/stops/105076"], ["https://data.delijn.be/stops/303832", "https://mivb.openplanner.team/stops/6652"], ["https://data.delijn.be/stops/300859", "https://mivb.openplanner.team/stops/0536"], ["http://irail.be/stations/NMBS/008872066", "https://tec.openplanner.team/stops/Cchoues5"], ["https://mivb.openplanner.team/stops/5456", "https://tec.openplanner.team/stops/Bwbfhip2"], ["http://irail.be/stations/NMBS/008719203", "https://tec.openplanner.team/stops/X611aea"], ["https://data.delijn.be/stops/300747", "https://mivb.openplanner.team/stops/7"], ["http://irail.be/stations/NMBS/008895208", "https://data.delijn.be/stops/209447"], ["https://mivb.openplanner.team/stops/1965", "https://tec.openplanner.team/stops/Buccbou2"], ["https://data.delijn.be/stops/300757", "https://mivb.openplanner.team/stops/2220"], ["https://mivb.openplanner.team/stops/0210132", "https://tec.openplanner.team/stops/Baudstr1"], ["https://data.delijn.be/stops/307156", "https://tec.openplanner.team/stops/Bhalalb2"], ["https://data.delijn.be/stops/300888", "https://mivb.openplanner.team/stops/6654F"], ["http://irail.be/stations/NMBS/008821451", "https://data.delijn.be/stops/104334"], ["http://irail.be/stations/NMBS/008896388", "https://data.delijn.be/stops/503075"], ["https://data.delijn.be/stops/301012", "https://mivb.openplanner.team/stops/4006G"], ["http://irail.be/stations/NMBS/008833209", "https://data.delijn.be/stops/108607"], ["https://data.delijn.be/stops/301014", "https://mivb.openplanner.team/stops/1310"], ["http://irail.be/stations/NMBS/008833001", "https://data.delijn.be/stops/306086"], ["http://irail.be/stations/NMBS/008861440", "https://tec.openplanner.team/stops/N527aca"], ["https://data.delijn.be/stops/302393", "https://tec.openplanner.team/stops/Bpecdel2"], ["http://irail.be/stations/NMBS/008844347", "https://tec.openplanner.team/stops/Lhurfay1"], ["https://mivb.openplanner.team/stops/3562", "https://tec.openplanner.team/stops/Bixlaca2"], ["https://mivb.openplanner.team/stops/0350740", "https://tec.openplanner.team/stops/Bbxlmid1"], ["https://data.delijn.be/stops/302244", "https://tec.openplanner.team/stops/Bwbfbon1"], ["http://irail.be/stations/NMBS/008892692", "https://data.delijn.be/stops/208211"], ["https://data.delijn.be/stops/205982", "https://tec.openplanner.team/stops/H5rx128b"], ["https://data.delijn.be/stops/400465", "https://tec.openplanner.team/stops/LPlpomp2"], ["https://data.delijn.be/stops/300802", "https://mivb.openplanner.team/stops/1541"], ["https://data.delijn.be/stops/302427", "https://tec.openplanner.team/stops/Bjodrrg2"], ["https://data.delijn.be/stops/300933", "https://mivb.openplanner.team/stops/2903"], ["http://irail.be/stations/NMBS/008874724", "https://tec.openplanner.team/stops/N534aph"], ["https://data.delijn.be/stops/208765", "https://tec.openplanner.team/stops/H5rx146b"], ["https://data.delijn.be/stops/308125", "https://tec.openplanner.team/stops/Bgoesch3"], ["http://irail.be/stations/NMBS/008893518", "https://data.delijn.be/stops/206309"], ["https://data.delijn.be/stops/504305", "https://tec.openplanner.team/stops/H4mo186a"], ["http://irail.be/stations/NMBS/008811254", "https://data.delijn.be/stops/302780"], ["http://irail.be/stations/NMBS/008891645", "https://data.delijn.be/stops/501642"], ["http://irail.be/stations/NMBS/008814472", "https://mivb.openplanner.team/stops/4299"], ["https://data.delijn.be/stops/208402", "https://tec.openplanner.team/stops/H5rx128a"], ["http://irail.be/stations/NMBS/008822848", "https://data.delijn.be/stops/107889"], ["http://irail.be/stations/NMBS/008874054", "https://tec.openplanner.team/stops/Ccivill2"], ["http://irail.be/stations/NMBS/008863115", "https://tec.openplanner.team/stops/N501kmy"], ["https://data.delijn.be/stops/300782", "https://mivb.openplanner.team/stops/2564"], ["http://irail.be/stations/NMBS/008895240", "https://data.delijn.be/stops/208676"], ["http://irail.be/stations/NMBS/008811817", "https://tec.openplanner.team/stops/Bottpma1"], ["http://irail.be/stations/NMBS/008885704", "https://tec.openplanner.team/stops/H4lu125a"], ["http://irail.be/stations/NMBS/008864915", "https://tec.openplanner.team/stops/N254aha"], ["http://irail.be/stations/NMBS/008884335", "https://tec.openplanner.team/stops/H1qv116b"], ["http://irail.be/stations/NMBS/008811528", "https://tec.openplanner.team/stops/Bgnvbsi2"], ["https://data.delijn.be/stops/206772", "https://tec.openplanner.team/stops/H1gy115a"], ["https://data.delijn.be/stops/300972", "https://mivb.openplanner.team/stops/1757"], ["https://data.delijn.be/stops/307030", "https://tec.openplanner.team/stops/Balssvi2"], ["https://data.delijn.be/stops/208740", "https://tec.openplanner.team/stops/H5rx115a"], ["https://data.delijn.be/stops/301038", "https://mivb.openplanner.team/stops/8741"], ["http://irail.be/stations/NMBS/008822111", "https://data.delijn.be/stops/303393"], ["http://irail.be/stations/NMBS/008200110", "https://tec.openplanner.team/stops/X684aab"], ["http://irail.be/stations/NMBS/008821311", "https://data.delijn.be/stops/103923"], ["https://data.delijn.be/stops/305333", "https://tec.openplanner.team/stops/Bspkbeu2"], ["https://data.delijn.be/stops/401412", "https://tec.openplanner.team/stops/Bixepla2"], ["http://irail.be/stations/NMBS/008866530", "https://tec.openplanner.team/stops/X695ada"], ["https://data.delijn.be/stops/305344", "https://tec.openplanner.team/stops/Bbgewal1"], ["http://irail.be/stations/NMBS/008811635", "https://tec.openplanner.team/stops/Bottcbp2"], ["http://irail.be/stations/NMBS/008841731", "https://data.delijn.be/stops/408700"], ["http://irail.be/stations/NMBS/008811460", "https://data.delijn.be/stops/302232"], ["http://irail.be/stations/NMBS/008883808", "https://tec.openplanner.team/stops/Btubga04"], ["https://data.delijn.be/stops/301943", "https://mivb.openplanner.team/stops/0470651"], ["https://data.delijn.be/stops/307645", "https://mivb.openplanner.team/stops/1935"], ["https://data.delijn.be/stops/408888", "https://tec.openplanner.team/stops/LFMstat2"], ["https://data.delijn.be/stops/509532", "https://tec.openplanner.team/stops/H4wn129a"], ["http://irail.be/stations/NMBS/008875127", "https://tec.openplanner.team/stops/N135aka"], ["https://data.delijn.be/stops/207790", "https://tec.openplanner.team/stops/H5rx145b"], ["https://data.delijn.be/stops/504239", "https://tec.openplanner.team/stops/H4co134a"], ["https://data.delijn.be/stops/207767", "https://tec.openplanner.team/stops/H5rx126b"], ["http://irail.be/stations/NMBS/008873387", "https://tec.openplanner.team/stops/Chhthui1"], ["https://data.delijn.be/stops/302228", "https://tec.openplanner.team/stops/Blhufro1"], ["https://data.delijn.be/stops/307987", "https://mivb.openplanner.team/stops/3328"], ["https://data.delijn.be/stops/302395", "https://tec.openplanner.team/stops/Bpechos2"], ["https://data.delijn.be/stops/208023", "https://tec.openplanner.team/stops/H1og135a"], ["https://data.delijn.be/stops/208174", "https://tec.openplanner.team/stops/H5wo130a"], ["http://irail.be/stations/NMBS/008841558", "https://tec.openplanner.team/stops/Llgreyn1"], ["https://data.delijn.be/stops/400683", "https://tec.openplanner.team/stops/LGAnovi2"], ["https://data.delijn.be/stops/300346", "https://tec.openplanner.team/stops/Blkbbeu2"], ["https://data.delijn.be/stops/300906", "https://mivb.openplanner.team/stops/6453"], ["http://irail.be/stations/NMBS/008872066", "https://tec.openplanner.team/stops/CMoues1"], ["https://data.delijn.be/stops/508013", "https://tec.openplanner.team/stops/H4po127a"], ["https://data.delijn.be/stops/303996", "https://tec.openplanner.team/stops/Bovecha1"], ["https://data.delijn.be/stops/402652", "https://tec.openplanner.team/stops/LCAwals2"], ["https://data.delijn.be/stops/305227", "https://mivb.openplanner.team/stops/9605"], ["http://irail.be/stations/NMBS/008814365", "https://data.delijn.be/stops/304546"], ["http://irail.be/stations/NMBS/008821121", "https://data.delijn.be/stops/101520"], ["https://data.delijn.be/stops/300951", "https://mivb.openplanner.team/stops/1313"], ["http://irail.be/stations/NMBS/008886561", "https://tec.openplanner.team/stops/H1le118b"], ["https://data.delijn.be/stops/404686", "https://tec.openplanner.team/stops/LWipaif1"], ["https://data.delijn.be/stops/303653", "https://mivb.openplanner.team/stops/9575"], ["https://data.delijn.be/stops/300825", "https://mivb.openplanner.team/stops/0440549"], ["https://data.delijn.be/stops/300791", "https://mivb.openplanner.team/stops/3232"], ["https://data.delijn.be/stops/307647", "https://tec.openplanner.team/stops/Bbrlrph1"], ["https://data.delijn.be/stops/408870", "https://tec.openplanner.team/stops/LFCdree2"], ["http://irail.be/stations/NMBS/008811544", "https://tec.openplanner.team/stops/Blimbet3"], ["https://data.delijn.be/stops/304116", "https://tec.openplanner.team/stops/Bwavcin2"], ["https://data.delijn.be/stops/301046", "https://mivb.openplanner.team/stops/8461"], ["https://data.delijn.be/stops/307714", "https://tec.openplanner.team/stops/Brsgera2"], ["https://data.delijn.be/stops/300768", "https://mivb.openplanner.team/stops/3852"], ["http://irail.be/stations/NMBS/008866654", "https://tec.openplanner.team/stops/X615bdb"], ["http://irail.be/stations/NMBS/008882362", "https://tec.openplanner.team/stops/H3bi113b"], ["http://irail.be/stations/NMBS/008866175", "https://tec.openplanner.team/stops/X650afe"], ["http://irail.be/stations/NMBS/008812161", "https://data.delijn.be/stops/206357"], ["http://irail.be/stations/NMBS/008832615", "https://data.delijn.be/stops/406932"], ["https://data.delijn.be/stops/504233", "https://tec.openplanner.team/stops/H4co107b"], ["https://data.delijn.be/stops/301099", "https://tec.openplanner.team/stops/Bkrawil2"], ["https://data.delijn.be/stops/305144", "https://tec.openplanner.team/stops/H1mk108c"], ["http://irail.be/stations/NMBS/008891116", "https://data.delijn.be/stops/505225"], ["https://data.delijn.be/stops/302409", "https://mivb.openplanner.team/stops/7650110"], ["http://irail.be/stations/NMBS/008883022", "https://tec.openplanner.team/stops/Bhensei2"], ["https://data.delijn.be/stops/300811", "https://mivb.openplanner.team/stops/4126"], ["http://irail.be/stations/NMBS/008833209", "https://data.delijn.be/stops/109330"], ["http://irail.be/stations/NMBS/008814332", "https://tec.openplanner.team/stops/Blemsta1"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/N525aob"], ["http://irail.be/stations/NMBS/008843323", "https://tec.openplanner.team/stops/LNHhome1"], ["https://data.delijn.be/stops/209410", "https://tec.openplanner.team/stops/H5rx146a"], ["http://irail.be/stations/NMBS/008893039", "https://data.delijn.be/stops/210124"], ["https://data.delijn.be/stops/304177", "https://tec.openplanner.team/stops/Bbldvaa2"], ["http://irail.be/stations/NMBS/008814357", "https://data.delijn.be/stops/307490"], ["http://irail.be/stations/NMBS/008842705", "https://tec.openplanner.team/stops/LCPlacr2"], ["https://data.delijn.be/stops/509238", "https://tec.openplanner.team/stops/H4co158a"], ["https://data.delijn.be/stops/408991", "https://tec.openplanner.team/stops/LWAvisi2"], ["https://data.delijn.be/stops/300012", "https://mivb.openplanner.team/stops/2256F"], ["https://data.delijn.be/stops/300935", "https://mivb.openplanner.team/stops/5868"], ["https://data.delijn.be/stops/303670", "https://mivb.openplanner.team/stops/1727"], ["https://data.delijn.be/stops/308050", "https://tec.openplanner.team/stops/Btieast1"], ["https://data.delijn.be/stops/300785", "https://mivb.openplanner.team/stops/6857"], ["https://data.delijn.be/stops/408601", "https://tec.openplanner.team/stops/LToluik1"], ["http://irail.be/stations/NMBS/008821048", "https://data.delijn.be/stops/105291"], ["https://data.delijn.be/stops/407210", "https://tec.openplanner.team/stops/LRGbett3"], ["https://data.delijn.be/stops/303230", "https://mivb.openplanner.team/stops/9649"], ["http://irail.be/stations/NMBS/008891314", "https://data.delijn.be/stops/502498"], ["http://irail.be/stations/NMBS/008833308", "https://tec.openplanner.team/stops/Btiegar2"], ["https://data.delijn.be/stops/302871", "https://mivb.openplanner.team/stops/2138B"], ["http://irail.be/stations/NMBS/008891702", "https://data.delijn.be/stops/501342"], ["http://irail.be/stations/NMBS/008814126", "https://mivb.openplanner.team/stops/2414"], ["https://data.delijn.be/stops/307198", "https://tec.openplanner.team/stops/Bhaleur2"], ["https://data.delijn.be/stops/307035", "https://tec.openplanner.team/stops/Balswwe2"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N568acb"], ["https://data.delijn.be/stops/300830", "https://mivb.openplanner.team/stops/4274"], ["http://irail.be/stations/NMBS/008833126", "https://tec.openplanner.team/stops/Bhevgar1"], ["http://irail.be/stations/NMBS/008822475", "https://data.delijn.be/stops/300664"], ["https://mivb.openplanner.team/stops/6439", "https://tec.openplanner.team/stops/Bixlozo2"], ["http://irail.be/stations/NMBS/008811155", "https://data.delijn.be/stops/300897"], ["https://data.delijn.be/stops/407668", "https://tec.openplanner.team/stops/LBPboir1"], ["https://data.delijn.be/stops/406350", "https://tec.openplanner.team/stops/LMawilh3"], ["https://data.delijn.be/stops/302125", "https://tec.openplanner.team/stops/Bptecar1"], ["https://data.delijn.be/stops/300785", "https://mivb.openplanner.team/stops/2323"], ["https://data.delijn.be/stops/306913", "https://tec.openplanner.team/stops/Bbosdra2"], ["http://irail.be/stations/NMBS/008864956", "https://tec.openplanner.team/stops/N535amc"], ["https://data.delijn.be/stops/300837", "https://mivb.openplanner.team/stops/5776"], ["http://irail.be/stations/NMBS/008882206", "https://tec.openplanner.team/stops/H2ll197b"], ["http://irail.be/stations/NMBS/008811213", "https://data.delijn.be/stops/303552"], ["https://data.delijn.be/stops/207759", "https://tec.openplanner.team/stops/H5rx134b"], ["https://data.delijn.be/stops/304722", "https://mivb.openplanner.team/stops/7252B"], ["https://data.delijn.be/stops/307967", "https://tec.openplanner.team/stops/Bwavzno2"], ["https://data.delijn.be/stops/300315", "https://tec.openplanner.team/stops/Bhmmlad2"], ["https://data.delijn.be/stops/403761", "https://tec.openplanner.team/stops/LORroma1"], ["https://data.delijn.be/stops/408859", "https://tec.openplanner.team/stops/LFCotte2"], ["https://mivb.openplanner.team/stops/0060120", "https://tec.openplanner.team/stops/Bbxlple2"], ["https://data.delijn.be/stops/300805", "https://mivb.openplanner.team/stops/2257B"], ["http://irail.be/stations/NMBS/008821451", "https://data.delijn.be/stops/102237"], ["https://data.delijn.be/stops/304031", "https://tec.openplanner.team/stops/Bovehst2"], ["http://irail.be/stations/NMBS/008814118", "https://mivb.openplanner.team/stops/2667"], ["https://data.delijn.be/stops/301039", "https://mivb.openplanner.team/stops/1244"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LMastat3"], ["https://data.delijn.be/stops/301061", "https://mivb.openplanner.team/stops/5015"], ["http://irail.be/stations/NMBS/008865110", "https://tec.openplanner.team/stops/X725bga"], ["https://data.delijn.be/stops/304547", "https://mivb.openplanner.team/stops/9679"], ["https://data.delijn.be/stops/307213", "https://tec.openplanner.team/stops/Bhaltre2"], ["https://data.delijn.be/stops/509533", "https://tec.openplanner.team/stops/H4wn126b"], ["http://irail.be/stations/NMBS/008200133", "https://tec.openplanner.team/stops/X764afb"], ["https://data.delijn.be/stops/306906", "https://tec.openplanner.team/stops/Bgoekaz2"], ["http://irail.be/stations/NMBS/008822814", "https://data.delijn.be/stops/107463"], ["http://irail.be/stations/NMBS/008843331", "https://tec.openplanner.team/stops/LOmrela1"], ["http://irail.be/stations/NMBS/008864410", "https://tec.openplanner.team/stops/X901ava"], ["https://mivb.openplanner.team/stops/4363", "https://tec.openplanner.team/stops/Bettgar1"], ["https://data.delijn.be/stops/404668", "https://tec.openplanner.team/stops/LVSpota2"], ["https://data.delijn.be/stops/401408", "https://mivb.openplanner.team/stops/1384"], ["http://irail.be/stations/NMBS/008015458", "https://tec.openplanner.team/stops/LrTpost2"], ["https://data.delijn.be/stops/307639", "https://mivb.openplanner.team/stops/1938"], ["http://irail.be/stations/NMBS/008886066", "https://tec.openplanner.team/stops/H5me106a"], ["http://irail.be/stations/NMBS/008833266", "https://data.delijn.be/stops/304412"], ["http://irail.be/stations/NMBS/008891173", "https://data.delijn.be/stops/501016"], ["https://data.delijn.be/stops/400486", "https://tec.openplanner.team/stops/LRGmoul2"], ["http://irail.be/stations/NMBS/008874583", "https://tec.openplanner.team/stops/Caibras2"], ["https://data.delijn.be/stops/208765", "https://tec.openplanner.team/stops/H5rx125b"], ["http://irail.be/stations/NMBS/008865540", "https://tec.openplanner.team/stops/X806aab"], ["http://irail.be/stations/NMBS/008821667", "https://data.delijn.be/stops/107014"], ["http://irail.be/stations/NMBS/008871662", "https://tec.openplanner.team/stops/H1so135b"], ["http://irail.be/stations/NMBS/008882230", "https://tec.openplanner.team/stops/H2mo143a"], ["https://data.delijn.be/stops/300771", "https://mivb.openplanner.team/stops/8671"], ["http://irail.be/stations/NMBS/008200120", "https://tec.openplanner.team/stops/LoUpete2"], ["https://data.delijn.be/stops/503024", "https://tec.openplanner.team/stops/H4or116a"], ["https://data.delijn.be/stops/408980", "https://tec.openplanner.team/stops/LWAvand1"], ["http://irail.be/stations/NMBS/008864501", "https://tec.openplanner.team/stops/N201aea"], ["https://data.delijn.be/stops/508772", "https://tec.openplanner.team/stops/H4sl154a"], ["https://data.delijn.be/stops/401411", "https://mivb.openplanner.team/stops/5266F"], ["https://data.delijn.be/stops/301411", "https://tec.openplanner.team/stops/H1mk107a"], ["http://irail.be/stations/NMBS/008831401", "https://data.delijn.be/stops/307625"], ["https://data.delijn.be/stops/308984", "https://tec.openplanner.team/stops/Blhucmo2"], ["https://data.delijn.be/stops/403701", "https://tec.openplanner.team/stops/LORroma1"], ["https://data.delijn.be/stops/504232", "https://tec.openplanner.team/stops/H4co149a"], ["http://irail.be/stations/NMBS/008892452", "https://data.delijn.be/stops/509885"], ["http://irail.be/stations/NMBS/008841434", "https://tec.openplanner.team/stops/LBvviem3"], ["https://data.delijn.be/stops/504383", "https://tec.openplanner.team/stops/H4pl115a"], ["https://data.delijn.be/stops/302986", "https://mivb.openplanner.team/stops/0270314"], ["https://data.delijn.be/stops/209195", "https://tec.openplanner.team/stops/H5rx146a"], ["http://irail.be/stations/NMBS/008886553", "https://tec.openplanner.team/stops/H1le130b"], ["http://irail.be/stations/NMBS/008821006", "https://data.delijn.be/stops/102313"], ["http://irail.be/stations/NMBS/008893567", "https://data.delijn.be/stops/201949"], ["http://irail.be/stations/NMBS/008831807", "https://data.delijn.be/stops/407855"], ["https://data.delijn.be/stops/300977", "https://mivb.openplanner.team/stops/6020"], ["https://mivb.openplanner.team/stops/8221", "https://tec.openplanner.team/stops/Baudhan2"], ["https://data.delijn.be/stops/300018", "https://mivb.openplanner.team/stops/2109B"], ["https://data.delijn.be/stops/208173", "https://tec.openplanner.team/stops/H5fl100a"], ["https://data.delijn.be/stops/305889", "https://mivb.openplanner.team/stops/3064"], ["https://data.delijn.be/stops/509860", "https://tec.openplanner.team/stops/H4mo190a"], ["http://irail.be/stations/NMBS/008861531", "https://tec.openplanner.team/stops/Bhvltol2"], ["http://irail.be/stations/NMBS/008891652", "https://data.delijn.be/stops/506671"], ["http://irail.be/stations/NMBS/008821964", "https://data.delijn.be/stops/109153"], ["http://irail.be/stations/NMBS/008874567", "https://tec.openplanner.team/stops/Cfaamio4"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1ne142a"], ["https://mivb.openplanner.team/stops/2710G", "https://tec.openplanner.team/stops/Buccdch2"], ["https://data.delijn.be/stops/305165", "https://mivb.openplanner.team/stops/0900568"], ["https://data.delijn.be/stops/301089", "https://mivb.openplanner.team/stops/5525"], ["http://irail.be/stations/NMBS/008812260", "https://data.delijn.be/stops/306708"], ["http://irail.be/stations/NMBS/008842846", "https://tec.openplanner.team/stops/LHanest2"], ["https://mivb.openplanner.team/stops/4075", "https://tec.openplanner.team/stops/Buccdch1"], ["https://data.delijn.be/stops/408802", "https://tec.openplanner.team/stops/LVIacac1"], ["https://mivb.openplanner.team/stops/2108", "https://tec.openplanner.team/stops/Buccplj2"], ["https://data.delijn.be/stops/400492", "https://tec.openplanner.team/stops/LBSnouw2"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/Bbeubos1"], ["https://data.delijn.be/stops/300297", "https://mivb.openplanner.team/stops/4599"], ["https://data.delijn.be/stops/307971", "https://tec.openplanner.team/stops/Bwavlep2"], ["http://irail.be/stations/NMBS/008891009", "https://data.delijn.be/stops/502820"], ["https://data.delijn.be/stops/408918", "https://tec.openplanner.team/stops/LTEcamp2"], ["http://irail.be/stations/NMBS/008814126", "https://mivb.openplanner.team/stops/2952B"], ["http://irail.be/stations/NMBS/008400280", "https://data.delijn.be/stops/506146"], ["https://data.delijn.be/stops/303613", "https://tec.openplanner.team/stops/Bhalber3"], ["http://irail.be/stations/NMBS/008841558", "https://tec.openplanner.team/stops/Llglaur2"], ["https://data.delijn.be/stops/307142", "https://mivb.openplanner.team/stops/2539"], ["http://irail.be/stations/NMBS/008845203", "https://tec.openplanner.team/stops/LTPgare*"], ["http://irail.be/stations/NMBS/008841459", "https://tec.openplanner.team/stops/LNveg--2"], ["https://data.delijn.be/stops/408844", "https://tec.openplanner.team/stops/LRmsmvo3"], ["https://data.delijn.be/stops/303994", "https://tec.openplanner.team/stops/Bbldass1"], ["https://data.delijn.be/stops/407205", "https://tec.openplanner.team/stops/LHTptha4"], ["https://data.delijn.be/stops/307969", "https://tec.openplanner.team/stops/Bwavbar2"], ["https://data.delijn.be/stops/509654", "https://tec.openplanner.team/stops/H4co162a"], ["http://irail.be/stations/NMBS/008842630", "https://tec.openplanner.team/stops/LTIgare3"], ["https://data.delijn.be/stops/408904", "https://tec.openplanner.team/stops/LFProt-1"], ["https://data.delijn.be/stops/301399", "https://mivb.openplanner.team/stops/2662B"], ["https://data.delijn.be/stops/302244", "https://mivb.openplanner.team/stops/3522"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bsmgegl2"], ["https://mivb.openplanner.team/stops/3530", "https://tec.openplanner.team/stops/Baudulb2"], ["http://irail.be/stations/NMBS/008822004", "https://data.delijn.be/stops/108056"], ["https://data.delijn.be/stops/302425", "https://tec.openplanner.team/stops/Bjodrga2"], ["http://irail.be/stations/NMBS/008833233", "https://data.delijn.be/stops/304351"], ["https://data.delijn.be/stops/300786", "https://mivb.openplanner.team/stops/1489"], ["http://irail.be/stations/NMBS/008895851", "https://data.delijn.be/stops/207111"], ["http://irail.be/stations/NMBS/008863560", "https://tec.openplanner.team/stops/N540ama"], ["http://irail.be/stations/NMBS/008400526", "https://data.delijn.be/stops/102187"], ["https://data.delijn.be/stops/509377", "https://tec.openplanner.team/stops/H4pl121a"], ["http://irail.be/stations/NMBS/008833159", "https://data.delijn.be/stops/301684"], ["https://data.delijn.be/stops/301073", "https://mivb.openplanner.team/stops/8291"], ["https://data.delijn.be/stops/408908", "https://tec.openplanner.team/stops/LOTferm1"], ["http://irail.be/stations/NMBS/008811742", "https://data.delijn.be/stops/302393"], ["https://data.delijn.be/stops/408922", "https://tec.openplanner.team/stops/LTEnuro1"], ["https://data.delijn.be/stops/300749", "https://mivb.openplanner.team/stops/2564"], ["https://data.delijn.be/stops/307252", "https://mivb.openplanner.team/stops/9979B"], ["http://irail.be/stations/NMBS/008821154", "https://data.delijn.be/stops/105120"], ["https://data.delijn.be/stops/403726", "https://tec.openplanner.team/stops/LOewaut2"], ["http://irail.be/stations/NMBS/008884889", "https://tec.openplanner.team/stops/H4bs112a"], ["https://data.delijn.be/stops/404665", "https://tec.openplanner.team/stops/LPAeg--1"], ["https://data.delijn.be/stops/208745", "https://tec.openplanner.team/stops/H4am113a"], ["http://irail.be/stations/NMBS/008865227", "https://tec.openplanner.team/stops/X995aga"], ["http://irail.be/stations/NMBS/008822111", "https://data.delijn.be/stops/303395"], ["http://irail.be/stations/NMBS/008210014", "https://tec.openplanner.team/stops/X684aba"], ["https://data.delijn.be/stops/504304", "https://tec.openplanner.team/stops/H4pl114b"], ["https://data.delijn.be/stops/305448", "https://mivb.openplanner.team/stops/0511"], ["http://irail.be/stations/NMBS/008844230", "https://tec.openplanner.team/stops/LNEcite2"], ["https://mivb.openplanner.team/stops/0340141", "https://tec.openplanner.team/stops/Bsgipha3"], ["https://data.delijn.be/stops/405720", "https://tec.openplanner.team/stops/LlgLAMB7"], ["https://data.delijn.be/stops/405705", "https://tec.openplanner.team/stops/LlgR-F1*"], ["http://irail.be/stations/NMBS/008896115", "https://data.delijn.be/stops/503210"], ["https://data.delijn.be/stops/208614", "https://tec.openplanner.team/stops/H1bd102a"], ["http://irail.be/stations/NMBS/008849072", "https://tec.openplanner.team/stops/X793aab"], ["https://data.delijn.be/stops/308732", "https://tec.openplanner.team/stops/Bneesjo1"], ["https://data.delijn.be/stops/307152", "https://tec.openplanner.team/stops/Bhaless2"], ["http://irail.be/stations/NMBS/008895125", "https://data.delijn.be/stops/207005"], ["http://irail.be/stations/NMBS/008866142", "https://tec.openplanner.team/stops/X670anb"], ["http://irail.be/stations/NMBS/008893443", "https://data.delijn.be/stops/207354"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LFCotte2"], ["https://data.delijn.be/stops/405421", "https://tec.openplanner.team/stops/Blanath2"], ["https://data.delijn.be/stops/209387", "https://tec.openplanner.team/stops/H5rx110a"], ["https://data.delijn.be/stops/302855", "https://tec.openplanner.team/stops/Bwaakap1"], ["http://irail.be/stations/NMBS/008871373", "https://tec.openplanner.team/stops/Broscha2"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Cthdeco1"], ["http://irail.be/stations/NMBS/008812146", "https://data.delijn.be/stops/206182"], ["https://data.delijn.be/stops/301054", "https://mivb.openplanner.team/stops/5072"], ["https://data.delijn.be/stops/405716", "https://tec.openplanner.team/stops/Llglefe2"], ["https://data.delijn.be/stops/300922", "https://mivb.openplanner.team/stops/3210B"], ["https://data.delijn.be/stops/303078", "https://tec.openplanner.team/stops/Bleunaa1"], ["http://irail.be/stations/NMBS/008871217", "https://tec.openplanner.team/stops/Cropcan1"], ["https://data.delijn.be/stops/405711", "https://tec.openplanner.team/stops/Llgvott1"], ["https://data.delijn.be/stops/307089", "https://tec.openplanner.team/stops/Brsgfon2"], ["https://data.delijn.be/stops/301018", "https://mivb.openplanner.team/stops/1307F"], ["http://irail.be/stations/NMBS/008728105", "https://data.delijn.be/stops/500926"], ["https://data.delijn.be/stops/304653", "https://mivb.openplanner.team/stops/7640211"], ["http://irail.be/stations/NMBS/008864469", "https://tec.openplanner.team/stops/X982bjb"], ["http://irail.be/stations/NMBS/008862018", "https://tec.openplanner.team/stops/X602asa"], ["https://data.delijn.be/stops/400485", "https://tec.openplanner.team/stops/LRGgend1"], ["https://data.delijn.be/stops/304549", "https://mivb.openplanner.team/stops/9649"], ["https://data.delijn.be/stops/208759", "https://tec.openplanner.team/stops/H5rx104b"], ["https://data.delijn.be/stops/410152", "https://mivb.openplanner.team/stops/3362"], ["http://irail.be/stations/NMBS/008821022", "https://data.delijn.be/stops/102085"], ["http://irail.be/stations/NMBS/008865540", "https://tec.openplanner.team/stops/X808aib"], ["https://data.delijn.be/stops/405719", "https://tec.openplanner.team/stops/Llgcrah2"], ["http://irail.be/stations/NMBS/008400131", "https://data.delijn.be/stops/107709"], ["https://data.delijn.be/stops/300319", "https://tec.openplanner.team/stops/Bbeaech1"], ["http://irail.be/stations/NMBS/008892031", "https://data.delijn.be/stops/201732"], ["http://irail.be/stations/NMBS/008821824", "https://data.delijn.be/stops/104741"], ["http://irail.be/stations/NMBS/008863438", "https://tec.openplanner.team/stops/N506bia"], ["http://irail.be/stations/NMBS/008832375", "https://data.delijn.be/stops/403077"], ["https://data.delijn.be/stops/304065", "https://tec.openplanner.team/stops/Bovevnd1"], ["https://data.delijn.be/stops/404683", "https://tec.openplanner.team/stops/LWipaif3"], ["https://mivb.openplanner.team/stops/1059", "https://tec.openplanner.team/stops/Bixlaca2"], ["https://data.delijn.be/stops/302902", "https://tec.openplanner.team/stops/Bhevl3l2"], ["https://data.delijn.be/stops/301944", "https://mivb.openplanner.team/stops/2571"], ["https://data.delijn.be/stops/405343", "https://tec.openplanner.team/stops/Bezegar2"], ["https://data.delijn.be/stops/302406", "https://mivb.openplanner.team/stops/3611F"], ["https://data.delijn.be/stops/304209", "https://tec.openplanner.team/stops/Brsrabe2"], ["http://irail.be/stations/NMBS/008824240", "https://data.delijn.be/stops/107958"], ["https://data.delijn.be/stops/408885", "https://tec.openplanner.team/stops/LFCotte2"], ["https://mivb.openplanner.team/stops/2715", "https://tec.openplanner.team/stops/Buccvch1"], ["http://irail.be/stations/NMBS/008821238", "https://data.delijn.be/stops/104510"], ["https://data.delijn.be/stops/308356", "https://mivb.openplanner.team/stops/6416"], ["http://irail.be/stations/NMBS/008832003", "https://data.delijn.be/stops/402071"], ["http://irail.be/stations/NMBS/008871381", "https://tec.openplanner.team/stops/H2go116b"], ["https://data.delijn.be/stops/208192", "https://tec.openplanner.team/stops/H5rx102a"], ["https://data.delijn.be/stops/307966", "https://tec.openplanner.team/stops/Bwavlav2"], ["https://data.delijn.be/stops/304861", "https://tec.openplanner.team/stops/Bbrlvil2"], ["https://mivb.openplanner.team/stops/1742", "https://tec.openplanner.team/stops/Buccptj1"], ["https://data.delijn.be/stops/300579", "https://mivb.openplanner.team/stops/6304"], ["http://irail.be/stations/NMBS/008833308", "https://data.delijn.be/stops/308048"], ["https://data.delijn.be/stops/505827", "https://tec.openplanner.team/stops/H4mo145a"], ["https://data.delijn.be/stops/304061", "https://tec.openplanner.team/stops/Bwavcin1"], ["https://data.delijn.be/stops/305228", "https://mivb.openplanner.team/stops/9607"], ["https://data.delijn.be/stops/504381", "https://tec.openplanner.team/stops/H4pl122a"], ["https://data.delijn.be/stops/300803", "https://mivb.openplanner.team/stops/7690206"], ["http://irail.be/stations/NMBS/008812237", "https://data.delijn.be/stops/301374"], ["https://data.delijn.be/stops/303648", "https://mivb.openplanner.team/stops/2856B"], ["https://data.delijn.be/stops/307807", "https://mivb.openplanner.team/stops/8753"], ["https://data.delijn.be/stops/207791", "https://tec.openplanner.team/stops/H5rx106b"], ["https://data.delijn.be/stops/404682", "https://tec.openplanner.team/stops/LWipaif3"], ["https://data.delijn.be/stops/408982", "https://tec.openplanner.team/stops/LWAwila1"], ["http://irail.be/stations/NMBS/008864964", "https://tec.openplanner.team/stops/N535ahb"], ["https://data.delijn.be/stops/307639", "https://mivb.openplanner.team/stops/5823"], ["https://data.delijn.be/stops/307830", "https://mivb.openplanner.team/stops/9556"], ["https://mivb.openplanner.team/stops/1873", "https://tec.openplanner.team/stops/Bbxlner2"], ["http://irail.be/stations/NMBS/008892650", "https://data.delijn.be/stops/208294"], ["https://data.delijn.be/stops/408832", "https://tec.openplanner.team/stops/LMgwith1"], ["https://data.delijn.be/stops/400464", "https://tec.openplanner.team/stops/LEMgren*"], ["https://data.delijn.be/stops/410136", "https://tec.openplanner.team/stops/Lvopaqu2"], ["https://data.delijn.be/stops/302422", "https://tec.openplanner.team/stops/Bsrgegl2"], ["http://irail.be/stations/NMBS/008866662", "https://tec.openplanner.team/stops/X614baa"], ["https://data.delijn.be/stops/400482", "https://tec.openplanner.team/stops/LRGunio3"], ["http://irail.be/stations/NMBS/008843067", "https://tec.openplanner.team/stops/Lsepuit1"], ["https://data.delijn.be/stops/300023", "https://mivb.openplanner.team/stops/9658"], ["https://data.delijn.be/stops/409000", "https://tec.openplanner.team/stops/LFarhuy1"], ["https://data.delijn.be/stops/300963", "https://tec.openplanner.team/stops/Baudvdu1"], ["http://irail.be/stations/NMBS/008892205", "https://data.delijn.be/stops/502267"], ["https://data.delijn.be/stops/305270", "https://mivb.openplanner.team/stops/2822"], ["https://data.delijn.be/stops/300981", "https://mivb.openplanner.team/stops/1514"], ["https://data.delijn.be/stops/405353", "https://tec.openplanner.team/stops/LLasta-*"], ["http://irail.be/stations/NMBS/008866654", "https://tec.openplanner.team/stops/X615ayb"], ["http://irail.be/stations/NMBS/008842754", "https://tec.openplanner.team/stops/LAYathe2"], ["http://irail.be/stations/NMBS/008884566", "https://tec.openplanner.team/stops/H1je216b"], ["https://data.delijn.be/stops/405711", "https://tec.openplanner.team/stops/Llgplat2"], ["https://data.delijn.be/stops/408898", "https://tec.openplanner.team/stops/LFPdeme1"], ["http://irail.be/stations/NMBS/008871712", "https://tec.openplanner.team/stops/Clbentr1"], ["http://irail.be/stations/NMBS/008864410", "https://tec.openplanner.team/stops/X901adb"], ["https://data.delijn.be/stops/306641", "https://mivb.openplanner.team/stops/2545"], ["http://irail.be/stations/NMBS/008895869", "https://data.delijn.be/stops/207501"], ["https://data.delijn.be/stops/306116", "https://mivb.openplanner.team/stops/1203"], ["http://irail.be/stations/NMBS/008872306", "https://tec.openplanner.team/stops/Clogfay2"], ["http://irail.be/stations/NMBS/008864006", "https://tec.openplanner.team/stops/N390adb"], ["http://irail.be/stations/NMBS/008886504", "https://tec.openplanner.team/stops/H1le122a"], ["http://irail.be/stations/NMBS/008200120", "https://tec.openplanner.team/stops/X663aca"], ["https://data.delijn.be/stops/303585", "https://mivb.openplanner.team/stops/9702"], ["https://data.delijn.be/stops/300316", "https://tec.openplanner.team/stops/Bhmmgar1"], ["https://data.delijn.be/stops/300874", "https://mivb.openplanner.team/stops/4232"], ["https://data.delijn.be/stops/307249", "https://mivb.openplanner.team/stops/9979B"], ["https://data.delijn.be/stops/408972", "https://tec.openplanner.team/stops/LWAaxhe2"], ["http://irail.be/stations/NMBS/008811163", "https://mivb.openplanner.team/stops/5362F"], ["http://irail.be/stations/NMBS/008889011", "https://tec.openplanner.team/stops/H4mo155a"], ["http://irail.be/stations/NMBS/008895729", "https://data.delijn.be/stops/200976"], ["https://data.delijn.be/stops/302869", "https://tec.openplanner.team/stops/Bhevjac1"], ["https://data.delijn.be/stops/303230", "https://mivb.openplanner.team/stops/9683"], ["https://data.delijn.be/stops/408842", "https://tec.openplanner.team/stops/LRmstat1"], ["https://data.delijn.be/stops/208357", "https://tec.openplanner.team/stops/H5rx134a"], ["https://data.delijn.be/stops/301042", "https://mivb.openplanner.team/stops/4594"], ["http://irail.be/stations/NMBS/008891314", "https://data.delijn.be/stops/502515"], ["https://data.delijn.be/stops/410135", "https://tec.openplanner.team/stops/Lvo60--2"], ["https://data.delijn.be/stops/300322", "https://tec.openplanner.team/stops/Balsbeg2"], ["https://data.delijn.be/stops/300824", "https://mivb.openplanner.team/stops/0440649"], ["http://irail.be/stations/NMBS/008844271", "https://tec.openplanner.team/stops/LTRfica2"], ["http://irail.be/stations/NMBS/008843141", "https://tec.openplanner.team/stops/Ljecocc1"], ["https://data.delijn.be/stops/401416", "https://mivb.openplanner.team/stops/1716"], ["http://irail.be/stations/NMBS/008871100", "https://tec.openplanner.team/stops/Cmastfi1"], ["http://irail.be/stations/NMBS/008892205", "https://data.delijn.be/stops/507619"], ["http://irail.be/stations/NMBS/008871688", "https://tec.openplanner.team/stops/H1ls106a"], ["http://irail.be/stations/NMBS/008863404", "https://tec.openplanner.team/stops/N506bqa"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N224agc"], ["https://data.delijn.be/stops/301031", "https://mivb.openplanner.team/stops/0660166"], ["http://irail.be/stations/NMBS/008866258", "https://tec.openplanner.team/stops/X661aib"], ["https://data.delijn.be/stops/307922", "https://mivb.openplanner.team/stops/2803"], ["http://irail.be/stations/NMBS/008886546", "https://tec.openplanner.team/stops/H1bd100b"], ["http://irail.be/stations/NMBS/008864311", "https://tec.openplanner.team/stops/X991afb"], ["https://data.delijn.be/stops/300945", "https://mivb.openplanner.team/stops/4103"], ["https://data.delijn.be/stops/408654", "https://tec.openplanner.team/stops/LTotrui2"], ["http://irail.be/stations/NMBS/008719100", "https://tec.openplanner.team/stops/X685aia"], ["https://data.delijn.be/stops/302429", "https://tec.openplanner.team/stops/Bjod7co2"], ["http://irail.be/stations/NMBS/008831781", "https://data.delijn.be/stops/402129"], ["http://irail.be/stations/NMBS/008895851", "https://data.delijn.be/stops/206108"], ["https://data.delijn.be/stops/305311", "https://mivb.openplanner.team/stops/9788"], ["https://data.delijn.be/stops/300018", "https://tec.openplanner.team/stops/Buccvoi1"], ["http://irail.be/stations/NMBS/008811510", "https://data.delijn.be/stops/302823"], ["http://irail.be/stations/NMBS/008815040", "https://mivb.openplanner.team/stops/3230F"], ["http://irail.be/stations/NMBS/008843307", "https://tec.openplanner.team/stops/LHUgare*"], ["https://data.delijn.be/stops/403700", "https://tec.openplanner.team/stops/LBGvill2"], ["http://irail.be/stations/NMBS/008821865", "https://data.delijn.be/stops/308496"], ["https://data.delijn.be/stops/301689", "https://tec.openplanner.team/stops/Bnetrtb2"], ["https://data.delijn.be/stops/306065", "https://tec.openplanner.team/stops/Blemsta1"], ["https://data.delijn.be/stops/307162", "https://tec.openplanner.team/stops/Bhalkrk1"], ["http://irail.be/stations/NMBS/008200120", "https://tec.openplanner.team/stops/LmNkrew1"], ["https://data.delijn.be/stops/301134", "https://mivb.openplanner.team/stops/6440"], ["https://data.delijn.be/stops/300810", "https://mivb.openplanner.team/stops/4252"], ["https://data.delijn.be/stops/301310", "https://mivb.openplanner.team/stops/7640111"], ["https://data.delijn.be/stops/303653", "https://mivb.openplanner.team/stops/9552"], ["https://data.delijn.be/stops/333234", "https://mivb.openplanner.team/stops/4221"], ["https://data.delijn.be/stops/301077", "https://mivb.openplanner.team/stops/6434F"], ["http://irail.be/stations/NMBS/008892007", "https://data.delijn.be/stops/201242"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/304698"], ["https://data.delijn.be/stops/300780", "https://mivb.openplanner.team/stops/2323"], ["http://irail.be/stations/NMBS/008812245", "https://data.delijn.be/stops/301365"], ["https://data.delijn.be/stops/304642", "https://mivb.openplanner.team/stops/1680F"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/Cchsud04"], ["https://data.delijn.be/stops/405345", "https://tec.openplanner.team/stops/Bezeksj1"], ["https://data.delijn.be/stops/302898", "https://tec.openplanner.team/stops/Bhevhha2"], ["https://data.delijn.be/stops/306001", "https://mivb.openplanner.team/stops/0906"], ["http://irail.be/stations/NMBS/008871332", "https://tec.openplanner.team/stops/Cobbusc1"], ["https://data.delijn.be/stops/404670", "https://tec.openplanner.team/stops/LJUxhen3"], ["http://irail.be/stations/NMBS/008893583", "https://data.delijn.be/stops/207589"], ["https://data.delijn.be/stops/302895", "https://tec.openplanner.team/stops/Bhevjal2"], ["http://irail.be/stations/NMBS/008866845", "https://tec.openplanner.team/stops/X641ama"], ["http://irail.be/stations/NMBS/008814431", "https://data.delijn.be/stops/307638"], ["https://data.delijn.be/stops/408822", "https://tec.openplanner.team/stops/LMgberw1"], ["https://mivb.openplanner.team/stops/2046", "https://tec.openplanner.team/stops/Baudhde2"], ["http://irail.be/stations/NMBS/008869054", "https://tec.openplanner.team/stops/X626aca"], ["http://irail.be/stations/NMBS/008811726", "https://tec.openplanner.team/stops/Bwavgar5"], ["https://data.delijn.be/stops/307498", "https://mivb.openplanner.team/stops/5266F"], ["https://mivb.openplanner.team/stops/1713", "https://tec.openplanner.team/stops/Bettlha1"], ["https://data.delijn.be/stops/301017", "https://mivb.openplanner.team/stops/1306"], ["https://data.delijn.be/stops/407206", "https://tec.openplanner.team/stops/LHTbeau2"], ["https://mivb.openplanner.team/stops/1169", "https://tec.openplanner.team/stops/Bsgicfo1"], ["http://irail.be/stations/NMBS/008841525", "https://tec.openplanner.team/stops/LlgR-Fr*"], ["https://data.delijn.be/stops/307226", "https://tec.openplanner.team/stops/Bhalgar2"], ["https://data.delijn.be/stops/308984", "https://tec.openplanner.team/stops/Blhumga1"], ["https://data.delijn.be/stops/208192", "https://tec.openplanner.team/stops/H5rx144b"], ["https://data.delijn.be/stops/307202", "https://tec.openplanner.team/stops/Bhalker1"], ["https://data.delijn.be/stops/400497", "https://tec.openplanner.team/stops/LWOwonc1"], ["http://irail.be/stations/NMBS/008873007", "https://tec.openplanner.team/stops/N106aqb"], ["https://data.delijn.be/stops/409000", "https://tec.openplanner.team/stops/LWAor--2"], ["https://data.delijn.be/stops/301153", "https://mivb.openplanner.team/stops/2117B"], ["https://data.delijn.be/stops/301056", "https://mivb.openplanner.team/stops/5071"], ["https://data.delijn.be/stops/207782", "https://tec.openplanner.team/stops/H5rx127b"], ["http://irail.be/stations/NMBS/008822715", "https://data.delijn.be/stops/107813"], ["https://data.delijn.be/stops/304456", "https://tec.openplanner.team/stops/Brsggar1"], ["http://irail.be/stations/NMBS/008822533", "https://data.delijn.be/stops/301865"], ["http://irail.be/stations/NMBS/008872520", "https://tec.openplanner.team/stops/Bsampli2"], ["http://irail.be/stations/NMBS/008831765", "https://data.delijn.be/stops/406535"], ["http://irail.be/stations/NMBS/008861317", "https://tec.openplanner.team/stops/N522aga"], ["http://irail.be/stations/NMBS/008811106", "https://mivb.openplanner.team/stops/2997"], ["https://data.delijn.be/stops/308095", "https://tec.openplanner.team/stops/Bpiepnd2"], ["http://irail.be/stations/NMBS/008843174", "https://tec.openplanner.team/stops/Lougare2"], ["https://data.delijn.be/stops/304448", "https://tec.openplanner.team/stops/Brsgece2"], ["https://data.delijn.be/stops/504322", "https://tec.openplanner.team/stops/H4mo142a"], ["https://data.delijn.be/stops/300747", "https://mivb.openplanner.team/stops/8682"], ["http://irail.be/stations/NMBS/008861515", "https://tec.openplanner.team/stops/Bernpon1"], ["http://irail.be/stations/NMBS/008895729", "https://data.delijn.be/stops/206760"], ["http://irail.be/stations/NMBS/008871688", "https://tec.openplanner.team/stops/Csbsart1"], ["https://data.delijn.be/stops/300936", "https://mivb.openplanner.team/stops/1765"], ["http://irail.be/stations/NMBS/008896388", "https://data.delijn.be/stops/508075"], ["http://irail.be/stations/NMBS/008892627", "https://data.delijn.be/stops/209285"], ["https://data.delijn.be/stops/209387", "https://tec.openplanner.team/stops/H5rx128a"], ["http://irail.be/stations/NMBS/008843224", "https://tec.openplanner.team/stops/Lfhhaso2"], ["https://data.delijn.be/stops/301689", "https://tec.openplanner.team/stops/Bnetrtb1"], ["http://irail.be/stations/NMBS/008400219", "https://tec.openplanner.team/stops/LMgwith2"], ["https://data.delijn.be/stops/300822", "https://mivb.openplanner.team/stops/8824"], ["https://mivb.openplanner.team/stops/5826", "https://tec.openplanner.team/stops/Buccbou1"], ["https://data.delijn.be/stops/305514", "https://mivb.openplanner.team/stops/9561"], ["http://irail.be/stations/NMBS/008813037", "https://mivb.openplanner.team/stops/0610363"], ["https://data.delijn.be/stops/306311", "https://mivb.openplanner.team/stops/5753F"], ["https://data.delijn.be/stops/304106", "https://tec.openplanner.team/stops/Bovevri2"], ["https://data.delijn.be/stops/305224", "https://tec.openplanner.team/stops/Bmrqpla2"], ["https://data.delijn.be/stops/306641", "https://mivb.openplanner.team/stops/2809"], ["http://irail.be/stations/NMBS/008865110", "https://tec.openplanner.team/stops/X725afe"], ["https://data.delijn.be/stops/300273", "https://mivb.openplanner.team/stops/4168"], ["https://data.delijn.be/stops/307637", "https://mivb.openplanner.team/stops/5824"], ["http://irail.be/stations/NMBS/008711184", "https://tec.openplanner.team/stops/Cmqegl2"], ["https://data.delijn.be/stops/400495", "https://tec.openplanner.team/stops/LBSneuv2"], ["https://data.delijn.be/stops/300801", "https://mivb.openplanner.team/stops/8661"], ["https://data.delijn.be/stops/300817", "https://mivb.openplanner.team/stops/0270414"], ["https://data.delijn.be/stops/300744", "https://mivb.openplanner.team/stops/3805"], ["https://data.delijn.be/stops/504237", "https://tec.openplanner.team/stops/H4co110a"], ["https://data.delijn.be/stops/405453", "https://tec.openplanner.team/stops/LWHzave1"], ["https://data.delijn.be/stops/307252", "https://mivb.openplanner.team/stops/2262"], ["https://data.delijn.be/stops/307682", "https://mivb.openplanner.team/stops/5754"], ["https://data.delijn.be/stops/408587", "https://tec.openplanner.team/stops/LTywyna1"], ["https://data.delijn.be/stops/300624", "https://tec.openplanner.team/stops/Bbealou1"], ["https://data.delijn.be/stops/408811", "https://tec.openplanner.team/stops/LVIdeva2"], ["https://data.delijn.be/stops/302226", "https://tec.openplanner.team/stops/Bhoemel1"], ["https://data.delijn.be/stops/508677", "https://tec.openplanner.team/stops/H4ae101a"], ["https://data.delijn.be/stops/305918", "https://mivb.openplanner.team/stops/5170"], ["https://data.delijn.be/stops/209820", "https://tec.openplanner.team/stops/H5rx143b"], ["http://irail.be/stations/NMBS/008863362", "https://tec.openplanner.team/stops/N538asa"], ["http://irail.be/stations/NMBS/008821089", "https://data.delijn.be/stops/109040"], ["https://data.delijn.be/stops/301055", "https://mivb.openplanner.team/stops/1019"], ["https://data.delijn.be/stops/308957", "https://mivb.openplanner.team/stops/3515"], ["https://data.delijn.be/stops/408514", "https://tec.openplanner.team/stops/LRUhama2"], ["https://data.delijn.be/stops/208766", "https://tec.openplanner.team/stops/H4ss157a"], ["https://data.delijn.be/stops/300327", "https://tec.openplanner.team/stops/Balswwe2"], ["https://data.delijn.be/stops/301413", "https://tec.openplanner.team/stops/H1en106b"], ["https://data.delijn.be/stops/300769", "https://mivb.openplanner.team/stops/6808G"], ["https://data.delijn.be/stops/300806", "https://mivb.openplanner.team/stops/6809F"], ["https://data.delijn.be/stops/307282", "https://tec.openplanner.team/stops/Bcbqa362"], ["https://data.delijn.be/stops/305428", "https://mivb.openplanner.team/stops/1627"], ["https://data.delijn.be/stops/302426", "https://tec.openplanner.team/stops/Bjodrrg2"], ["http://irail.be/stations/NMBS/008844503", "https://tec.openplanner.team/stops/LWEcool2"], ["https://data.delijn.be/stops/408887", "https://tec.openplanner.team/stops/LTErest1"], ["https://data.delijn.be/stops/307975", "https://tec.openplanner.team/stops/Bwavfol2"], ["https://mivb.openplanner.team/stops/3547", "https://tec.openplanner.team/stops/Baudsju2"], ["http://irail.be/stations/NMBS/008883220", "https://tec.openplanner.team/stops/H2me115a"], ["https://data.delijn.be/stops/301074", "https://mivb.openplanner.team/stops/6059"], ["https://data.delijn.be/stops/303230", "https://mivb.openplanner.team/stops/9686"], ["http://irail.be/stations/NMBS/008884327", "https://tec.openplanner.team/stops/H1bo101a"], ["http://irail.be/stations/NMBS/008884327", "https://tec.openplanner.team/stops/H1hi124b"], ["http://irail.be/stations/NMBS/008866530", "https://tec.openplanner.team/stops/X617aga"], ["http://irail.be/stations/NMBS/008861432", "https://tec.openplanner.team/stops/N526abb"], ["http://irail.be/stations/NMBS/008811221", "https://data.delijn.be/stops/308829"], ["http://irail.be/stations/NMBS/008875002", "https://tec.openplanner.team/stops/N134ala"], ["http://irail.be/stations/NMBS/008844545", "https://tec.openplanner.team/stops/LDOgare2"], ["https://data.delijn.be/stops/404681", "https://tec.openplanner.team/stops/LWibare2"], ["https://data.delijn.be/stops/300981", "https://mivb.openplanner.team/stops/2974"], ["https://data.delijn.be/stops/408854", "https://tec.openplanner.team/stops/LFClage2"], ["https://mivb.openplanner.team/stops/5025", "https://tec.openplanner.team/stops/Buccdst1"], ["http://irail.be/stations/NMBS/008865128", "https://tec.openplanner.team/stops/X725aec"], ["https://mivb.openplanner.team/stops/5462F", "https://tec.openplanner.team/stops/Bixlozo2"], ["https://data.delijn.be/stops/301679", "https://tec.openplanner.team/stops/Bnetegl1"], ["https://data.delijn.be/stops/302414", "https://tec.openplanner.team/stops/Bjodeco1"], ["https://data.delijn.be/stops/305305", "https://mivb.openplanner.team/stops/9788"], ["http://irail.be/stations/NMBS/008886553", "https://tec.openplanner.team/stops/H1le118a"], ["https://data.delijn.be/stops/304569", "https://mivb.openplanner.team/stops/8652"], ["https://data.delijn.be/stops/300344", "https://tec.openplanner.team/stops/Bbrlvil2"], ["https://data.delijn.be/stops/408884", "https://tec.openplanner.team/stops/LFMrijk2"], ["https://data.delijn.be/stops/207754", "https://tec.openplanner.team/stops/H4ss157b"], ["https://mivb.openplanner.team/stops/2145", "https://tec.openplanner.team/stops/Buccpor2"], ["https://data.delijn.be/stops/408507", "https://tec.openplanner.team/stops/LTobilz1"], ["https://data.delijn.be/stops/503029", "https://tec.openplanner.team/stops/H4ae102b"], ["https://data.delijn.be/stops/301956", "https://mivb.openplanner.team/stops/8692"], ["https://data.delijn.be/stops/408885", "https://tec.openplanner.team/stops/LDpulve2"], ["https://data.delijn.be/stops/408563", "https://tec.openplanner.team/stops/LTobilz2"], ["https://data.delijn.be/stops/503679", "https://tec.openplanner.team/stops/H4ae101a"], ["https://data.delijn.be/stops/303581", "https://mivb.openplanner.team/stops/9729"], ["http://irail.be/stations/NMBS/008869088", "https://tec.openplanner.team/stops/X681aca"], ["http://irail.be/stations/NMBS/008831807", "https://data.delijn.be/stops/407932"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/107066"], ["https://data.delijn.be/stops/209183", "https://tec.openplanner.team/stops/H5rx121a"], ["http://irail.be/stations/NMBS/008811734", "https://data.delijn.be/stops/302387"], ["http://irail.be/stations/NMBS/008894425", "https://data.delijn.be/stops/204228"], ["https://data.delijn.be/stops/300907", "https://tec.openplanner.team/stops/Bixlpat1"], ["https://data.delijn.be/stops/300796", "https://mivb.openplanner.team/stops/7660209"], ["http://irail.be/stations/NMBS/008814308", "https://data.delijn.be/stops/307227"], ["https://data.delijn.be/stops/408951", "https://tec.openplanner.team/stops/LWAathe2"], ["http://irail.be/stations/NMBS/008891116", "https://data.delijn.be/stops/502278"], ["https://data.delijn.be/stops/301005", "https://mivb.openplanner.team/stops/5172F"], ["https://data.delijn.be/stops/306908", "https://tec.openplanner.team/stops/Bboseco2"], ["http://irail.be/stations/NMBS/008842754", "https://tec.openplanner.team/stops/LAYpl--3"], ["https://data.delijn.be/stops/207797", "https://tec.openplanner.team/stops/H4ss153a"], ["https://data.delijn.be/stops/301415", "https://tec.openplanner.team/stops/Bengvma2"], ["https://data.delijn.be/stops/308956", "https://mivb.openplanner.team/stops/9575"], ["http://irail.be/stations/NMBS/008873122", "https://tec.openplanner.team/stops/N101agc"], ["https://data.delijn.be/stops/407750", "https://tec.openplanner.team/stops/LWOcomm2"], ["https://data.delijn.be/stops/306914", "https://tec.openplanner.team/stops/Bbosdra2"], ["https://mivb.openplanner.team/stops/1806", "https://tec.openplanner.team/stops/Bettbue1"], ["https://data.delijn.be/stops/408747", "https://tec.openplanner.team/stops/LTowijk2"], ["https://mivb.openplanner.team/stops/1876", "https://tec.openplanner.team/stops/Bsgipha3"], ["https://data.delijn.be/stops/306064", "https://tec.openplanner.team/stops/Brsgepr1"], ["http://irail.be/stations/NMBS/008895240", "https://data.delijn.be/stops/209442"], ["https://data.delijn.be/stops/305345", "https://tec.openplanner.team/stops/Bbgerlr1"], ["http://irail.be/stations/NMBS/008814241", "https://tec.openplanner.team/stops/Blilton1"], ["http://irail.be/stations/NMBS/008833050", "https://data.delijn.be/stops/300724"], ["http://irail.be/stations/NMBS/008833001", "https://tec.openplanner.team/stops/Bleugar1"], ["http://irail.be/stations/NMBS/008895612", "https://data.delijn.be/stops/209547"], ["https://data.delijn.be/stops/302853", "https://tec.openplanner.team/stops/Blinbru1"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1et102b"], ["http://irail.be/stations/NMBS/008881125", "https://tec.openplanner.team/stops/H1gh160b"], ["http://irail.be/stations/NMBS/008896305", "https://data.delijn.be/stops/503574"], ["https://data.delijn.be/stops/308105", "https://tec.openplanner.team/stops/Bsrgm102"], ["https://data.delijn.be/stops/306091", "https://mivb.openplanner.team/stops/9784B"], ["https://data.delijn.be/stops/303949", "https://tec.openplanner.team/stops/Bbldvaa1"], ["https://data.delijn.be/stops/407215", "https://tec.openplanner.team/stops/LHScite1"], ["https://mivb.openplanner.team/stops/2119", "https://tec.openplanner.team/stops/Buccvbe2"], ["http://irail.be/stations/NMBS/008728686", "https://tec.openplanner.team/stops/H4tf147b"], ["https://data.delijn.be/stops/408690", "https://tec.openplanner.team/stops/LTotrui1"], ["http://irail.be/stations/NMBS/008894748", "https://data.delijn.be/stops/204532"], ["http://irail.be/stations/NMBS/008400424", "https://tec.openplanner.team/stops/LMaburg4"], ["https://data.delijn.be/stops/303121", "https://mivb.openplanner.team/stops/3814"], ["http://irail.be/stations/NMBS/008833258", "https://data.delijn.be/stops/300115"], ["https://data.delijn.be/stops/307004", "https://mivb.openplanner.team/stops/1110"], ["https://mivb.openplanner.team/stops/42", "https://tec.openplanner.team/stops/Bsgihmo2"], ["http://irail.be/stations/NMBS/008811288", "https://data.delijn.be/stops/308755"], ["https://data.delijn.be/stops/304113", "https://tec.openplanner.team/stops/Bovesog2"], ["https://data.delijn.be/stops/300760", "https://mivb.openplanner.team/stops/1211B"], ["http://irail.be/stations/NMBS/008812120", "https://data.delijn.be/stops/308574"], ["http://irail.be/stations/NMBS/008400424", "https://data.delijn.be/stops/406374"], ["http://irail.be/stations/NMBS/008015345", "https://tec.openplanner.team/stops/LlCgren1"], ["http://irail.be/stations/NMBS/008893443", "https://data.delijn.be/stops/206885"], ["https://data.delijn.be/stops/301967", "https://tec.openplanner.team/stops/Bhalath1"], ["http://irail.be/stations/NMBS/008893567", "https://data.delijn.be/stops/203943"], ["https://data.delijn.be/stops/307602", "https://tec.openplanner.team/stops/Bspkbeu1"], ["https://data.delijn.be/stops/219015", "https://tec.openplanner.team/stops/H5rx125a"], ["https://data.delijn.be/stops/207792", "https://tec.openplanner.team/stops/H5rx147a"], ["http://irail.be/stations/NMBS/008822053", "https://data.delijn.be/stops/302518"], ["https://data.delijn.be/stops/408714", "https://tec.openplanner.team/stops/LRUhama1"], ["http://irail.be/stations/NMBS/008874054", "https://tec.openplanner.team/stops/Cmtstan2"], ["https://data.delijn.be/stops/408906", "https://tec.openplanner.team/stops/LFPkape4"], ["http://irail.be/stations/NMBS/008841319", "https://tec.openplanner.team/stops/LAWbrou1"], ["https://data.delijn.be/stops/301021", "https://mivb.openplanner.team/stops/4003G"], ["https://data.delijn.be/stops/306314", "https://tec.openplanner.team/stops/Bhalark2"], ["https://mivb.openplanner.team/stops/5533", "https://tec.openplanner.team/stops/Bkrawil1"], ["http://irail.be/stations/NMBS/008831039", "https://data.delijn.be/stops/400085"], ["https://data.delijn.be/stops/305520", "https://mivb.openplanner.team/stops/1387"], ["http://irail.be/stations/NMBS/008811247", "https://data.delijn.be/stops/304724"], ["https://data.delijn.be/stops/300963", "https://tec.openplanner.team/stops/Baudvdu2"], ["https://data.delijn.be/stops/405703", "https://tec.openplanner.team/stops/Llgbatt2"], ["http://irail.be/stations/NMBS/008893542", "https://data.delijn.be/stops/203961"], ["http://irail.be/stations/NMBS/008833209", "https://data.delijn.be/stops/108608"], ["https://mivb.openplanner.team/stops/2760B", "https://tec.openplanner.team/stops/Buccham2"], ["http://irail.be/stations/NMBS/008861440", "https://tec.openplanner.team/stops/N527acb"], ["http://irail.be/stations/NMBS/008842754", "https://tec.openplanner.team/stops/LAYathe1"], ["http://irail.be/stations/NMBS/008822137", "https://data.delijn.be/stops/206364"], ["https://mivb.openplanner.team/stops/2144", "https://tec.openplanner.team/stops/Buccvbe2"], ["http://irail.be/stations/NMBS/008844347", "https://tec.openplanner.team/stops/Lhurfay2"], ["https://data.delijn.be/stops/307713", "https://tec.openplanner.team/stops/Brsggde1"], ["https://data.delijn.be/stops/409000", "https://tec.openplanner.team/stops/LBvviem3"], ["http://irail.be/stations/NMBS/008891116", "https://data.delijn.be/stops/505052"], ["https://data.delijn.be/stops/301050", "https://mivb.openplanner.team/stops/1180"], ["https://data.delijn.be/stops/504451", "https://tec.openplanner.team/stops/H4mo165b"], ["https://data.delijn.be/stops/302806", "https://mivb.openplanner.team/stops/1587"], ["https://data.delijn.be/stops/308125", "https://tec.openplanner.team/stops/Bgoesch2"], ["http://irail.be/stations/NMBS/008845005", "https://tec.openplanner.team/stops/X790alb"], ["https://data.delijn.be/stops/400658", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://data.delijn.be/stops/305433", "https://mivb.openplanner.team/stops/5528F"], ["https://data.delijn.be/stops/504294", "https://tec.openplanner.team/stops/H4mo190b"], ["https://data.delijn.be/stops/408907", "https://tec.openplanner.team/stops/LFPkape4"], ["https://data.delijn.be/stops/305356", "https://tec.openplanner.team/stops/Bwaveur2"], ["https://data.delijn.be/stops/308869", "https://tec.openplanner.team/stops/Bkrapri2"], ["https://data.delijn.be/stops/304216", "https://mivb.openplanner.team/stops/1370"], ["http://irail.be/stations/NMBS/008822277", "https://data.delijn.be/stops/305615"], ["http://irail.be/stations/NMBS/008400526", "https://data.delijn.be/stops/104341"], ["http://irail.be/stations/NMBS/008884350", "https://tec.openplanner.team/stops/H1tl119a"], ["http://irail.be/stations/NMBS/008893708", "https://data.delijn.be/stops/203245"], ["http://irail.be/stations/NMBS/008814431", "https://data.delijn.be/stops/307686"], ["https://data.delijn.be/stops/307194", "https://tec.openplanner.team/stops/Bhalark2"], ["http://irail.be/stations/NMBS/008863115", "https://tec.openplanner.team/stops/N501kmb"], ["https://data.delijn.be/stops/302886", "https://tec.openplanner.team/stops/Bhevgar2"], ["http://irail.be/stations/NMBS/008871811", "https://tec.openplanner.team/stops/Cthhvil1"], ["https://data.delijn.be/stops/300828", "https://mivb.openplanner.team/stops/2875"], ["https://mivb.openplanner.team/stops/6934F", "https://tec.openplanner.team/stops/Buccfja1"], ["http://irail.be/stations/NMBS/008863818", "https://tec.openplanner.team/stops/N232abb"], ["https://data.delijn.be/stops/406298", "https://tec.openplanner.team/stops/Blankal4"], ["https://data.delijn.be/stops/306901", "https://tec.openplanner.team/stops/Bgoestu1"], ["https://data.delijn.be/stops/308725", "https://tec.openplanner.team/stops/Bgoemgr1"], ["https://data.delijn.be/stops/405430", "https://tec.openplanner.team/stops/Bneelaa2"], ["http://irail.be/stations/NMBS/008821816", "https://data.delijn.be/stops/107329"], ["https://data.delijn.be/stops/301006", "https://mivb.openplanner.team/stops/2569"], ["https://data.delijn.be/stops/305436", "https://mivb.openplanner.team/stops/5519"], ["https://data.delijn.be/stops/300926", "https://mivb.openplanner.team/stops/3961"], ["https://data.delijn.be/stops/302442", "https://tec.openplanner.team/stops/Bzlufbo2"], ["https://data.delijn.be/stops/306003", "https://tec.openplanner.team/stops/Brsrabe1"], ["https://data.delijn.be/stops/408868", "https://tec.openplanner.team/stops/LWRgare1"], ["https://data.delijn.be/stops/505275", "https://tec.openplanner.team/stops/H4po124a"], ["https://data.delijn.be/stops/302855", "https://tec.openplanner.team/stops/Blaneli2"], ["https://data.delijn.be/stops/406767", "https://tec.openplanner.team/stops/LBpvue-2"], ["https://data.delijn.be/stops/305280", "https://mivb.openplanner.team/stops/9778"], ["http://irail.be/stations/NMBS/008824232", "https://data.delijn.be/stops/102014"], ["http://irail.be/stations/NMBS/008883212", "https://tec.openplanner.team/stops/H2ec100a"], ["http://irail.be/stations/NMBS/008200510", "https://tec.openplanner.team/stops/X687aaa"], ["http://irail.be/stations/NMBS/008883808", "https://tec.openplanner.team/stops/Btubga05"], ["https://data.delijn.be/stops/408888", "https://tec.openplanner.team/stops/LFMstat1"], ["https://data.delijn.be/stops/301079", "https://mivb.openplanner.team/stops/6438"], ["http://irail.be/stations/NMBS/008892908", "https://tec.openplanner.team/stops/H5rx149a"], ["http://irail.be/stations/NMBS/008864311", "https://tec.openplanner.team/stops/X991ahb"], ["https://data.delijn.be/stops/408912", "https://tec.openplanner.team/stops/LFProt-2"], ["http://irail.be/stations/NMBS/008871605", "https://tec.openplanner.team/stops/H1be100a"], ["http://irail.be/stations/NMBS/008875127", "https://tec.openplanner.team/stops/N135akb"], ["https://data.delijn.be/stops/408924", "https://tec.openplanner.team/stops/LTEnuro2"], ["http://irail.be/stations/NMBS/008882206", "https://tec.openplanner.team/stops/H2hl110b"], ["https://data.delijn.be/stops/301035", "https://mivb.openplanner.team/stops/0330242"], ["https://data.delijn.be/stops/307853", "https://mivb.openplanner.team/stops/8232"], ["http://irail.be/stations/NMBS/008893179", "https://data.delijn.be/stops/201479"], ["https://data.delijn.be/stops/301110", "https://mivb.openplanner.team/stops/5826"], ["https://data.delijn.be/stops/300884", "https://mivb.openplanner.team/stops/6482"], ["https://data.delijn.be/stops/303998", "https://tec.openplanner.team/stops/Blhurcl1"], ["http://irail.be/stations/NMBS/008841004", "https://tec.openplanner.team/stops/LlgguilB"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1ml112b"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N552aca"], ["https://data.delijn.be/stops/408961", "https://tec.openplanner.team/stops/LWAchpg1"], ["https://data.delijn.be/stops/300343", "https://tec.openplanner.team/stops/Bbrlvil1"], ["http://irail.be/stations/NMBS/008884541", "https://tec.openplanner.team/stops/H1qu110b"], ["http://irail.be/stations/NMBS/008814449", "https://mivb.openplanner.team/stops/6931G"], ["https://data.delijn.be/stops/307714", "https://tec.openplanner.team/stops/Brsgera1"], ["http://irail.be/stations/NMBS/008891652", "https://data.delijn.be/stops/501640"], ["http://irail.be/stations/NMBS/008893559", "https://data.delijn.be/stops/202889"], ["https://data.delijn.be/stops/300759", "https://mivb.openplanner.team/stops/3231"], ["https://data.delijn.be/stops/301676", "https://tec.openplanner.team/stops/Bnetace2"], ["https://data.delijn.be/stops/300780", "https://mivb.openplanner.team/stops/6810"], ["https://data.delijn.be/stops/300792", "https://mivb.openplanner.team/stops/3232"], ["https://data.delijn.be/stops/305272", "https://tec.openplanner.team/stops/Bspkker2"], ["http://irail.be/stations/NMBS/008864824", "https://tec.openplanner.team/stops/N211ala"], ["http://irail.be/stations/NMBS/008893062", "https://data.delijn.be/stops/208714"], ["https://data.delijn.be/stops/207755", "https://tec.openplanner.team/stops/H5rx102b"], ["https://data.delijn.be/stops/407751", "https://tec.openplanner.team/stops/LWOmart2"], ["https://data.delijn.be/stops/407686", "https://tec.openplanner.team/stops/LRGchap2"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/304545"], ["http://irail.be/stations/NMBS/008896230", "https://data.delijn.be/stops/505809"], ["https://data.delijn.be/stops/305347", "https://tec.openplanner.team/stops/Bbgepau1"], ["https://data.delijn.be/stops/302409", "https://mivb.openplanner.team/stops/8651"], ["https://data.delijn.be/stops/303577", "https://mivb.openplanner.team/stops/9751"], ["https://data.delijn.be/stops/300811", "https://mivb.openplanner.team/stops/4125"], ["https://data.delijn.be/stops/301000", "https://mivb.openplanner.team/stops/6201F"], ["https://data.delijn.be/stops/408960", "https://tec.openplanner.team/stops/LWAperv1"], ["http://irail.be/stations/NMBS/008813003", "https://mivb.openplanner.team/stops/4324"], ["http://irail.be/stations/NMBS/008883022", "https://tec.openplanner.team/stops/Btubren1"], ["https://data.delijn.be/stops/308957", "https://tec.openplanner.team/stops/Baudstr2"], ["https://data.delijn.be/stops/300012", "https://mivb.openplanner.team/stops/2256B"], ["https://data.delijn.be/stops/304932", "https://mivb.openplanner.team/stops/9784B"], ["http://irail.be/stations/NMBS/008881315", "https://tec.openplanner.team/stops/H1ni320b"], ["http://irail.be/stations/NMBS/008821196", "https://data.delijn.be/stops/103266"], ["https://data.delijn.be/stops/301422", "https://tec.openplanner.team/stops/Bengvma2"], ["http://irail.be/stations/NMBS/008895638", "https://data.delijn.be/stops/209600"], ["http://irail.be/stations/NMBS/008821048", "https://data.delijn.be/stops/105290"], ["https://data.delijn.be/stops/303832", "https://mivb.openplanner.team/stops/3221"], ["http://irail.be/stations/NMBS/008883436", "https://tec.openplanner.team/stops/H1by108e"], ["https://data.delijn.be/stops/409796", "https://tec.openplanner.team/stops/LWOsudr2"], ["http://irail.be/stations/NMBS/008881562", "https://tec.openplanner.team/stops/H1fr111b"], ["https://data.delijn.be/stops/304071", "https://tec.openplanner.team/stops/Bgnvtas1"], ["https://data.delijn.be/stops/300325", "https://tec.openplanner.team/stops/Balssvi1"], ["http://irail.be/stations/NMBS/008822475", "https://data.delijn.be/stops/300663"], ["https://data.delijn.be/stops/303584", "https://mivb.openplanner.team/stops/9729"], ["http://irail.be/stations/NMBS/008896149", "https://data.delijn.be/stops/505804"], ["https://data.delijn.be/stops/408978", "https://tec.openplanner.team/stops/LWAperv1"], ["https://data.delijn.be/stops/300905", "https://mivb.openplanner.team/stops/2931"], ["https://data.delijn.be/stops/307921", "https://mivb.openplanner.team/stops/9047"], ["http://irail.be/stations/NMBS/008893260", "https://data.delijn.be/stops/203349"], ["https://data.delijn.be/stops/303832", "https://mivb.openplanner.team/stops/5014"], ["https://data.delijn.be/stops/303223", "https://mivb.openplanner.team/stops/3810"], ["http://irail.be/stations/NMBS/008824232", "https://data.delijn.be/stops/101086"], ["https://data.delijn.be/stops/301018", "https://mivb.openplanner.team/stops/4066F"], ["https://data.delijn.be/stops/208407", "https://tec.openplanner.team/stops/H5rx138b"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2le149b"], ["http://irail.be/stations/NMBS/008843406", "https://tec.openplanner.team/stops/LStgare*"], ["https://data.delijn.be/stops/306816", "https://tec.openplanner.team/stops/Balswsa2"], ["https://data.delijn.be/stops/404666", "https://tec.openplanner.team/stops/LVSpota2"], ["https://data.delijn.be/stops/307473", "https://tec.openplanner.team/stops/Bhalvel1"], ["https://data.delijn.be/stops/300998", "https://mivb.openplanner.team/stops/3167"], ["http://irail.be/stations/NMBS/008893559", "https://data.delijn.be/stops/200086"], ["https://data.delijn.be/stops/304019", "https://tec.openplanner.team/stops/Bovevri1"], ["https://data.delijn.be/stops/300924", "https://mivb.openplanner.team/stops/3272"], ["https://data.delijn.be/stops/307643", "https://mivb.openplanner.team/stops/1935"], ["https://data.delijn.be/stops/301054", "https://mivb.openplanner.team/stops/4213"], ["https://data.delijn.be/stops/408810", "https://tec.openplanner.team/stops/LVIhala4"], ["http://irail.be/stations/NMBS/008821832", "https://data.delijn.be/stops/104681"], ["https://data.delijn.be/stops/300805", "https://mivb.openplanner.team/stops/2257G"], ["http://irail.be/stations/NMBS/008821451", "https://data.delijn.be/stops/102236"], ["https://data.delijn.be/stops/408964", "https://tec.openplanner.team/stops/LWAbett2"], ["http://irail.be/stations/NMBS/008861549", "https://tec.openplanner.team/stops/Bmsgmon1"], ["https://data.delijn.be/stops/300783", "https://mivb.openplanner.team/stops/7640111"], ["http://irail.be/stations/NMBS/008821535", "https://data.delijn.be/stops/105839"], ["http://irail.be/stations/NMBS/008843406", "https://tec.openplanner.team/stops/NL72afa"], ["http://irail.be/stations/NMBS/008893534", "https://data.delijn.be/stops/207247"], ["http://irail.be/stations/NMBS/008864436", "https://tec.openplanner.team/stops/X923apb"], ["http://irail.be/stations/NMBS/008814001", "https://mivb.openplanner.team/stops/2671F"], ["https://data.delijn.be/stops/509713", "https://tec.openplanner.team/stops/H4mo142a"], ["https://data.delijn.be/stops/304547", "https://mivb.openplanner.team/stops/9680"], ["https://data.delijn.be/stops/509533", "https://tec.openplanner.team/stops/H4wn126a"], ["http://irail.be/stations/NMBS/008811544", "https://tec.openplanner.team/stops/Blmlcim1"], ["https://data.delijn.be/stops/504003", "https://tec.openplanner.team/stops/H4mo192a"], ["https://data.delijn.be/stops/304096", "https://tec.openplanner.team/stops/Bovetwe1"], ["https://data.delijn.be/stops/407208", "https://tec.openplanner.team/stops/LHTbonn2"], ["https://data.delijn.be/stops/408910", "https://tec.openplanner.team/stops/LFPzwaa2"], ["https://data.delijn.be/stops/304153", "https://tec.openplanner.team/stops/Blemhon2"], ["http://irail.be/stations/NMBS/008821659", "https://data.delijn.be/stops/107107"], ["http://irail.be/stations/NMBS/008864410", "https://tec.openplanner.team/stops/X901atb"], ["http://irail.be/stations/NMBS/008822517", "https://data.delijn.be/stops/305871"], ["https://data.delijn.be/stops/405711", "https://tec.openplanner.team/stops/Llgegwa1"], ["https://data.delijn.be/stops/408871", "https://tec.openplanner.team/stops/LMgbatt2"], ["http://irail.be/stations/NMBS/008833670", "https://data.delijn.be/stops/405392"], ["https://data.delijn.be/stops/218014", "https://tec.openplanner.team/stops/H5rx122a"], ["https://data.delijn.be/stops/408894", "https://tec.openplanner.team/stops/LBevill1"], ["https://data.delijn.be/stops/400486", "https://tec.openplanner.team/stops/LRGmoul1"], ["http://irail.be/stations/NMBS/008874583", "https://tec.openplanner.team/stops/Caibras1"], ["https://data.delijn.be/stops/308096", "https://tec.openplanner.team/stops/Bhoealt2"], ["http://irail.be/stations/NMBS/008871662", "https://tec.openplanner.team/stops/H1so135a"], ["http://irail.be/stations/NMBS/008882230", "https://tec.openplanner.team/stops/H2mo143b"], ["https://data.delijn.be/stops/407213", "https://tec.openplanner.team/stops/LHSheur1"], ["https://data.delijn.be/stops/504292", "https://tec.openplanner.team/stops/H4mo208b"], ["https://data.delijn.be/stops/301133", "https://tec.openplanner.team/stops/Buccdef1"], ["https://data.delijn.be/stops/300759", "https://mivb.openplanner.team/stops/7720303"], ["https://data.delijn.be/stops/300945", "https://mivb.openplanner.team/stops/1727"], ["https://data.delijn.be/stops/304210", "https://tec.openplanner.team/stops/Brsrmon1"], ["https://data.delijn.be/stops/300904", "https://mivb.openplanner.team/stops/6453"], ["http://irail.be/stations/NMBS/008886546", "https://data.delijn.be/stops/206797"], ["http://irail.be/stations/NMBS/008892692", "https://data.delijn.be/stops/208838"], ["https://mivb.openplanner.team/stops/1370", "https://tec.openplanner.team/stops/Bbxlmid4"], ["https://data.delijn.be/stops/408908", "https://tec.openplanner.team/stops/LWieg--*"], ["https://data.delijn.be/stops/307635", "https://mivb.openplanner.team/stops/5826"], ["https://data.delijn.be/stops/509737", "https://tec.openplanner.team/stops/H4mo195a"], ["https://data.delijn.be/stops/304449", "https://tec.openplanner.team/stops/Brsgfso1"], ["https://data.delijn.be/stops/405300", "https://tec.openplanner.team/stops/Blanmde2"], ["https://data.delijn.be/stops/504232", "https://tec.openplanner.team/stops/H4co148b"], ["https://data.delijn.be/stops/300905", "https://tec.openplanner.team/stops/Bixllep2"], ["https://mivb.openplanner.team/stops/3921", "https://tec.openplanner.team/stops/Bbxlple2"], ["http://irail.be/stations/NMBS/008871225", "https://tec.openplanner.team/stops/Crowall1"], ["https://data.delijn.be/stops/303586", "https://mivb.openplanner.team/stops/9725"], ["https://data.delijn.be/stops/410142", "https://tec.openplanner.team/stops/Lrcstad1"], ["https://data.delijn.be/stops/300318", "https://tec.openplanner.team/stops/Bbeaech2"], ["https://data.delijn.be/stops/308991", "https://tec.openplanner.team/stops/Bbrlpar2"], ["http://irail.be/stations/NMBS/008821659", "https://data.delijn.be/stops/102391"], ["https://data.delijn.be/stops/301004", "https://mivb.openplanner.team/stops/7762"], ["https://data.delijn.be/stops/405733", "https://tec.openplanner.team/stops/Lrcastr1"], ["https://data.delijn.be/stops/300018", "https://mivb.openplanner.team/stops/2110B"], ["https://data.delijn.be/stops/308676", "https://mivb.openplanner.team/stops/1900"], ["https://data.delijn.be/stops/300881", "https://mivb.openplanner.team/stops/7800355"], ["https://data.delijn.be/stops/306001", "https://mivb.openplanner.team/stops/1809"], ["http://irail.be/stations/NMBS/008861531", "https://tec.openplanner.team/stops/Bhvltol1"], ["https://data.delijn.be/stops/304455", "https://tec.openplanner.team/stops/Brsgsan2"], ["https://data.delijn.be/stops/304721", "https://mivb.openplanner.team/stops/5350G"], ["http://irail.be/stations/NMBS/008893708", "https://data.delijn.be/stops/203730"], ["http://irail.be/stations/NMBS/008814159", "https://data.delijn.be/stops/307691"], ["https://data.delijn.be/stops/405408", "https://tec.openplanner.team/stops/LLagert*"], ["http://irail.be/stations/NMBS/008846201", "https://tec.openplanner.team/stops/LVIhv--2"], ["https://data.delijn.be/stops/400479", "https://tec.openplanner.team/stops/LBPmais1"], ["http://irail.be/stations/NMBS/008832458", "https://data.delijn.be/stops/109263"], ["https://data.delijn.be/stops/509135", "https://tec.openplanner.team/stops/H4co162a"], ["https://mivb.openplanner.team/stops/2710G", "https://tec.openplanner.team/stops/Buccdch1"], ["https://data.delijn.be/stops/407214", "https://tec.openplanner.team/stops/LHStrez1"], ["http://irail.be/stations/NMBS/008861168", "https://tec.openplanner.team/stops/N534agb"], ["https://data.delijn.be/stops/410144", "https://tec.openplanner.team/stops/Llgwild6"], ["https://data.delijn.be/stops/304027", "https://tec.openplanner.team/stops/Bovelge2"], ["http://irail.be/stations/NMBS/008842846", "https://tec.openplanner.team/stops/LHanest1"], ["https://data.delijn.be/stops/304317", "https://mivb.openplanner.team/stops/9725"], ["https://mivb.openplanner.team/stops/2108", "https://tec.openplanner.team/stops/Buccplj1"], ["http://irail.be/stations/NMBS/008811601", "https://tec.openplanner.team/stops/Blimegl1"], ["http://irail.be/stations/NMBS/008894821", "https://data.delijn.be/stops/205337"], ["https://mivb.openplanner.team/stops/1723B", "https://tec.openplanner.team/stops/Baudulb2"], ["http://irail.be/stations/NMBS/008871373", "https://tec.openplanner.team/stops/Cgpauln2"], ["https://data.delijn.be/stops/301061", "https://mivb.openplanner.team/stops/1056"], ["http://irail.be/stations/NMBS/008841319", "https://tec.openplanner.team/stops/LAWgill1"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/Bbeubos2"], ["http://irail.be/stations/NMBS/008871647", "https://tec.openplanner.team/stops/H1so142a"], ["http://irail.be/stations/NMBS/008891009", "https://data.delijn.be/stops/502821"], ["http://irail.be/stations/NMBS/008895471", "https://data.delijn.be/stops/206532"], ["https://data.delijn.be/stops/303669", "https://mivb.openplanner.team/stops/1328"], ["https://data.delijn.be/stops/405455", "https://tec.openplanner.team/stops/LWHkape2"], ["https://data.delijn.be/stops/405734", "https://tec.openplanner.team/stops/Lrclant2"], ["https://data.delijn.be/stops/408922", "https://tec.openplanner.team/stops/LSInd--2"], ["http://irail.be/stations/NMBS/008812161", "https://data.delijn.be/stops/207349"], ["https://data.delijn.be/stops/408977", "https://tec.openplanner.team/stops/LWApr%C3%A9s3"], ["https://data.delijn.be/stops/408904", "https://tec.openplanner.team/stops/LFProt-2"], ["https://data.delijn.be/stops/306052", "https://mivb.openplanner.team/stops/1900"], ["http://irail.be/stations/NMBS/008821238", "https://data.delijn.be/stops/108830"], ["https://data.delijn.be/stops/208180", "https://tec.openplanner.team/stops/H5el100a"], ["https://data.delijn.be/stops/302479", "https://mivb.openplanner.team/stops/1582"], ["http://irail.be/stations/NMBS/008882701", "https://tec.openplanner.team/stops/H2mg144b"], ["http://irail.be/stations/NMBS/008015345", "https://tec.openplanner.team/stops/LaAkapi1"], ["http://irail.be/stations/NMBS/008873239", "https://tec.openplanner.team/stops/N118avd"], ["http://irail.be/stations/NMBS/008895711", "https://data.delijn.be/stops/206760"], ["https://data.delijn.be/stops/302425", "https://tec.openplanner.team/stops/Bjodrrg1"], ["http://irail.be/stations/NMBS/008821022", "https://data.delijn.be/stops/104494"], ["http://irail.be/stations/NMBS/008811510", "https://data.delijn.be/stops/301184"], ["https://data.delijn.be/stops/509238", "https://tec.openplanner.team/stops/H4co144b"], ["https://data.delijn.be/stops/300938", "https://mivb.openplanner.team/stops/5165"], ["http://irail.be/stations/NMBS/008811148", "https://mivb.openplanner.team/stops/2991"], ["http://irail.be/stations/NMBS/008895851", "https://data.delijn.be/stops/207112"], ["http://irail.be/stations/NMBS/008863560", "https://tec.openplanner.team/stops/N540amb"], ["http://irail.be/stations/NMBS/008400526", "https://data.delijn.be/stops/104338"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N534bsb"], ["http://irail.be/stations/NMBS/008892031", "https://data.delijn.be/stops/201180"], ["http://irail.be/stations/NMBS/008841731", "https://tec.openplanner.team/stops/LGLgare*"], ["https://data.delijn.be/stops/303668", "https://mivb.openplanner.team/stops/1683F"], ["https://data.delijn.be/stops/301026", "https://mivb.openplanner.team/stops/3006"], ["https://data.delijn.be/stops/301974", "https://tec.openplanner.team/stops/Bhaldbo1"], ["https://data.delijn.be/stops/408701", "https://tec.openplanner.team/stops/LGLspor2"], ["http://irail.be/stations/NMBS/008895463", "https://data.delijn.be/stops/207485"], ["https://mivb.openplanner.team/stops/1587", "https://tec.openplanner.team/stops/Bwolkra2"], ["https://data.delijn.be/stops/408922", "https://tec.openplanner.team/stops/LTEnuro2"], ["https://data.delijn.be/stops/301422", "https://tec.openplanner.team/stops/Bptemch2"], ["http://irail.be/stations/NMBS/008885530", "https://tec.openplanner.team/stops/H4my121a"], ["https://data.delijn.be/stops/302415", "https://tec.openplanner.team/stops/Bjodcad1"], ["http://irail.be/stations/NMBS/008886561", "https://tec.openplanner.team/stops/H5is171b"], ["https://data.delijn.be/stops/404669", "https://tec.openplanner.team/stops/LPAchpl1"], ["http://irail.be/stations/NMBS/008841459", "https://tec.openplanner.team/stops/LMOpiss1"], ["https://data.delijn.be/stops/408862", "https://tec.openplanner.team/stops/LWRchem1"], ["https://data.delijn.be/stops/305448", "https://mivb.openplanner.team/stops/0516"], ["http://irail.be/stations/NMBS/008873312", "https://tec.openplanner.team/stops/N137ajb"], ["https://data.delijn.be/stops/407204", "https://tec.openplanner.team/stops/LHTbaud2"], ["https://data.delijn.be/stops/301063", "https://mivb.openplanner.team/stops/4656"], ["https://data.delijn.be/stops/301927", "https://mivb.openplanner.team/stops/9851"], ["https://data.delijn.be/stops/302832", "https://tec.openplanner.team/stops/Blangar1"], ["http://irail.be/stations/NMBS/008882248", "https://tec.openplanner.team/stops/H2ca105b"], ["https://data.delijn.be/stops/305261", "https://tec.openplanner.team/stops/Bspkker1"], ["https://data.delijn.be/stops/305350", "https://tec.openplanner.team/stops/Bbgeegl2"], ["https://data.delijn.be/stops/300906", "https://mivb.openplanner.team/stops/5212"], ["http://irail.be/stations/NMBS/008811189", "https://data.delijn.be/stops/304962"], ["https://data.delijn.be/stops/306969", "https://mivb.openplanner.team/stops/5001F"], ["https://data.delijn.be/stops/300062", "https://tec.openplanner.team/stops/Blemwro1"], ["https://data.delijn.be/stops/301052", "https://mivb.openplanner.team/stops/5013B"], ["https://data.delijn.be/stops/304548", "https://mivb.openplanner.team/stops/9680"], ["http://irail.be/stations/NMBS/008871100", "https://tec.openplanner.team/stops/Cmamons1"], ["http://irail.be/stations/NMBS/008866605", "https://tec.openplanner.team/stops/X615aaa"], ["https://data.delijn.be/stops/405347", "https://tec.openplanner.team/stops/Bezeksj1"], ["http://irail.be/stations/NMBS/008833258", "https://data.delijn.be/stops/306844"], ["http://irail.be/stations/NMBS/008865300", "https://tec.openplanner.team/stops/X804bma"], ["https://data.delijn.be/stops/509233", "https://tec.openplanner.team/stops/H4co107a"], ["http://irail.be/stations/NMBS/008814118", "https://mivb.openplanner.team/stops/2938"], ["https://data.delijn.be/stops/405337", "https://tec.openplanner.team/stops/Bezebru2"], ["http://irail.be/stations/NMBS/008833274", "https://data.delijn.be/stops/303681"], ["http://irail.be/stations/NMBS/008812146", "https://data.delijn.be/stops/206183"], ["https://data.delijn.be/stops/401399", "https://mivb.openplanner.team/stops/5039"], ["https://data.delijn.be/stops/304698", "https://mivb.openplanner.team/stops/9652"], ["https://data.delijn.be/stops/303078", "https://tec.openplanner.team/stops/Bleunaa2"], ["http://irail.be/stations/NMBS/008896735", "https://data.delijn.be/stops/504426"], ["https://data.delijn.be/stops/307089", "https://tec.openplanner.team/stops/Brsgfon1"], ["http://irail.be/stations/NMBS/008864469", "https://tec.openplanner.team/stops/X982bja"], ["http://irail.be/stations/NMBS/008841434", "https://tec.openplanner.team/stops/LBKmare1"], ["https://data.delijn.be/stops/300920", "https://mivb.openplanner.team/stops/3304"], ["https://data.delijn.be/stops/504318", "https://tec.openplanner.team/stops/H4mo160a"], ["http://irail.be/stations/NMBS/008886546", "https://tec.openplanner.team/stops/H1le122d"], ["https://data.delijn.be/stops/400485", "https://tec.openplanner.team/stops/LRGgend2"], ["http://irail.be/stations/NMBS/008811726", "https://tec.openplanner.team/stops/Bbgepau1"], ["https://data.delijn.be/stops/408926", "https://tec.openplanner.team/stops/LRmstat2"], ["https://data.delijn.be/stops/301102", "https://mivb.openplanner.team/stops/1822"], ["https://data.delijn.be/stops/405335", "https://tec.openplanner.team/stops/Bneelaa2"], ["https://data.delijn.be/stops/301165", "https://mivb.openplanner.team/stops/2117B"], ["https://data.delijn.be/stops/300958", "https://mivb.openplanner.team/stops/2725"], ["https://mivb.openplanner.team/stops/0130227", "https://tec.openplanner.team/stops/Bwolvan2"], ["https://data.delijn.be/stops/308874", "https://mivb.openplanner.team/stops/1570"], ["https://data.delijn.be/stops/307072", "https://tec.openplanner.team/stops/Bhevjal1"], ["https://data.delijn.be/stops/400650", "https://tec.openplanner.team/stops/LHgroso1"], ["http://irail.be/stations/NMBS/008892031", "https://data.delijn.be/stops/201733"], ["https://data.delijn.be/stops/405700", "https://tec.openplanner.team/stops/Llgcamp2"], ["https://data.delijn.be/stops/410143", "https://tec.openplanner.team/stops/Llgverg2"], ["https://data.delijn.be/stops/401397", "https://mivb.openplanner.team/stops/3462"], ["https://data.delijn.be/stops/304112", "https://tec.openplanner.team/stops/Bovesog2"], ["https://data.delijn.be/stops/300961", "https://tec.openplanner.team/stops/Baudhde2"], ["https://data.delijn.be/stops/300987", "https://mivb.openplanner.team/stops/4500"], ["https://data.delijn.be/stops/301134", "https://mivb.openplanner.team/stops/2762"], ["http://irail.be/stations/NMBS/008842655", "https://tec.openplanner.team/stops/LEShony1"], ["https://data.delijn.be/stops/300952", "https://mivb.openplanner.team/stops/51"], ["http://irail.be/stations/NMBS/008864345", "https://tec.openplanner.team/stops/X999aia"], ["https://data.delijn.be/stops/307791", "https://mivb.openplanner.team/stops/1067"], ["http://irail.be/stations/NMBS/008893047", "https://data.delijn.be/stops/201603"], ["https://data.delijn.be/stops/307249", "https://mivb.openplanner.team/stops/0350640"], ["http://irail.be/stations/NMBS/008895760", "https://data.delijn.be/stops/207989"], ["https://data.delijn.be/stops/305435", "https://mivb.openplanner.team/stops/1631"], ["https://data.delijn.be/stops/505274", "https://tec.openplanner.team/stops/H4po129a"], ["http://irail.be/stations/NMBS/008861523", "https://tec.openplanner.team/stops/Bchamco2"], ["https://data.delijn.be/stops/304216", "https://tec.openplanner.team/stops/Bbxlmid4"], ["http://irail.be/stations/NMBS/008871381", "https://tec.openplanner.team/stops/H2go117a"], ["https://data.delijn.be/stops/408881", "https://tec.openplanner.team/stops/LDppana1"], ["http://irail.be/stations/NMBS/008883113", "https://tec.openplanner.team/stops/H3so161b"], ["https://data.delijn.be/stops/408842", "https://tec.openplanner.team/stops/LRmkast*"], ["http://irail.be/stations/NMBS/008884889", "https://tec.openplanner.team/stops/H4ca121b"], ["https://data.delijn.be/stops/307966", "https://tec.openplanner.team/stops/Bwavlav1"], ["https://data.delijn.be/stops/304861", "https://tec.openplanner.team/stops/Bbrlvil1"], ["https://data.delijn.be/stops/302870", "https://tec.openplanner.team/stops/Bhevwzw1"], ["https://data.delijn.be/stops/207794", "https://tec.openplanner.team/stops/H5rx130a"], ["https://data.delijn.be/stops/306176", "https://tec.openplanner.team/stops/Bkrabhu2"], ["https://data.delijn.be/stops/408927", "https://tec.openplanner.team/stops/LTEzinn2"], ["https://data.delijn.be/stops/406406", "https://tec.openplanner.team/stops/LMastat4"], ["http://irail.be/stations/NMBS/008863404", "https://tec.openplanner.team/stops/N506baa"], ["https://data.delijn.be/stops/504381", "https://tec.openplanner.team/stops/H4pl116a"], ["http://irail.be/stations/NMBS/008811601", "https://tec.openplanner.team/stops/Bottvil2"], ["http://irail.be/stations/NMBS/008895430", "https://data.delijn.be/stops/206432"], ["https://data.delijn.be/stops/300778", "https://mivb.openplanner.team/stops/7650210"], ["https://data.delijn.be/stops/404687", "https://tec.openplanner.team/stops/LPAbour1"], ["https://data.delijn.be/stops/307921", "https://mivb.openplanner.team/stops/2872"], ["https://data.delijn.be/stops/404682", "https://tec.openplanner.team/stops/LWipaif1"], ["https://mivb.openplanner.team/stops/3623B", "https://tec.openplanner.team/stops/Bixlqll1"], ["https://data.delijn.be/stops/304073", "https://tec.openplanner.team/stops/Bovepla2"], ["https://data.delijn.be/stops/408921", "https://tec.openplanner.team/stops/LTEkerk2"], ["https://data.delijn.be/stops/300763", "https://mivb.openplanner.team/stops/1206"], ["https://data.delijn.be/stops/300549", "https://tec.openplanner.team/stops/Bhmmbog1"], ["https://data.delijn.be/stops/301102", "https://mivb.openplanner.team/stops/5510"], ["http://irail.be/stations/NMBS/008864964", "https://tec.openplanner.team/stops/N535afb"], ["http://irail.be/stations/NMBS/008812245", "https://data.delijn.be/stops/308766"], ["https://data.delijn.be/stops/405718", "https://tec.openplanner.team/stops/Llgcrah2"], ["http://irail.be/stations/NMBS/008891629", "https://data.delijn.be/stops/501199"], ["http://irail.be/stations/NMBS/008814001", "https://data.delijn.be/stops/307142"], ["https://data.delijn.be/stops/408898", "https://tec.openplanner.team/stops/LVukabi1"], ["http://irail.be/stations/NMBS/008400131", "https://data.delijn.be/stops/101749"], ["https://data.delijn.be/stops/504319", "https://tec.openplanner.team/stops/H4mo169a"], ["https://mivb.openplanner.team/stops/5056", "https://tec.openplanner.team/stops/Buccmer1"], ["http://irail.be/stations/NMBS/008883113", "https://tec.openplanner.team/stops/Bsoigar1"], ["https://data.delijn.be/stops/208405", "https://tec.openplanner.team/stops/H5rx112b"], ["https://data.delijn.be/stops/408861", "https://tec.openplanner.team/stops/LWRgare2"], ["https://data.delijn.be/stops/400456", "https://tec.openplanner.team/stops/LEBeg--1"], ["https://data.delijn.be/stops/305910", "https://mivb.openplanner.team/stops/9726"], ["http://irail.be/stations/NMBS/008894151", "https://data.delijn.be/stops/202496"], ["https://data.delijn.be/stops/408912", "https://tec.openplanner.team/stops/LVu40--1"], ["http://irail.be/stations/NMBS/008822772", "https://data.delijn.be/stops/107854"], ["https://data.delijn.be/stops/300023", "https://mivb.openplanner.team/stops/9659"], ["http://irail.be/stations/NMBS/008821451", "https://data.delijn.be/stops/104288"], ["http://irail.be/stations/NMBS/008811189", "https://mivb.openplanner.team/stops/9784B"], ["http://irail.be/stations/NMBS/008811775", "https://data.delijn.be/stops/302388"], ["https://data.delijn.be/stops/300981", "https://mivb.openplanner.team/stops/1513"], ["https://data.delijn.be/stops/305345", "https://tec.openplanner.team/stops/Blmlvex2"], ["http://irail.be/stations/NMBS/008882362", "https://tec.openplanner.team/stops/H3bi104a"], ["http://irail.be/stations/NMBS/008814175", "https://data.delijn.be/stops/304443"], ["https://data.delijn.be/stops/408882", "https://tec.openplanner.team/stops/LFCkett1"], ["https://data.delijn.be/stops/509239", "https://tec.openplanner.team/stops/H4co144a"], ["http://irail.be/stations/NMBS/008871852", "https://tec.openplanner.team/stops/CMmoul1"], ["http://irail.be/stations/NMBS/008861531", "https://tec.openplanner.team/stops/Bblmcel2"], ["http://irail.be/stations/NMBS/008821006", "https://data.delijn.be/stops/103377"], ["https://data.delijn.be/stops/407212", "https://tec.openplanner.team/stops/LWOruis1"], ["http://irail.be/stations/NMBS/008871712", "https://tec.openplanner.team/stops/Clbentr2"], ["https://data.delijn.be/stops/301021", "https://mivb.openplanner.team/stops/5168F"], ["http://irail.be/stations/NMBS/008832615", "https://data.delijn.be/stops/406950"], ["https://data.delijn.be/stops/301050", "https://mivb.openplanner.team/stops/5089"], ["https://data.delijn.be/stops/410355", "https://tec.openplanner.team/stops/Llgcadr2"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bsmgres2"], ["http://irail.be/stations/NMBS/008841400", "https://data.delijn.be/stops/408976"], ["https://data.delijn.be/stops/300395", "https://tec.openplanner.team/stops/Bhalh312"], ["http://irail.be/stations/NMBS/008893062", "https://data.delijn.be/stops/202861"], ["http://irail.be/stations/NMBS/008864006", "https://tec.openplanner.team/stops/N390ada"], ["https://data.delijn.be/stops/302121", "https://tec.openplanner.team/stops/Bbghgli2"], ["http://irail.be/stations/NMBS/008821535", "https://data.delijn.be/stops/105244"], ["https://mivb.openplanner.team/stops/6931B", "https://tec.openplanner.team/stops/Buccptj2"], ["http://irail.be/stations/NMBS/008865649", "https://tec.openplanner.team/stops/X892aga"], ["http://irail.be/stations/NMBS/008812237", "https://data.delijn.be/stops/306046"], ["https://data.delijn.be/stops/302986", "https://mivb.openplanner.team/stops/3320B"], ["http://irail.be/stations/NMBS/008864931", "https://tec.openplanner.team/stops/N254aab"], ["https://data.delijn.be/stops/304127", "https://mivb.openplanner.team/stops/0440349"], ["https://data.delijn.be/stops/504294", "https://tec.openplanner.team/stops/H4mo151a"], ["https://data.delijn.be/stops/300798", "https://mivb.openplanner.team/stops/3805"], ["http://irail.be/stations/NMBS/008814126", "https://data.delijn.be/stops/301168"], ["http://irail.be/stations/NMBS/008885753", "https://tec.openplanner.team/stops/H4hx120b"], ["https://data.delijn.be/stops/503775", "https://tec.openplanner.team/stops/H4eh101a"], ["https://data.delijn.be/stops/300750", "https://mivb.openplanner.team/stops/3252"], ["http://irail.be/stations/NMBS/008886587", "https://tec.openplanner.team/stops/H1og133a"], ["https://data.delijn.be/stops/408972", "https://tec.openplanner.team/stops/LWAaxhe1"], ["https://data.delijn.be/stops/301048", "https://mivb.openplanner.team/stops/4601"], ["http://irail.be/stations/NMBS/008895729", "https://data.delijn.be/stops/200975"], ["http://irail.be/stations/NMBS/008400131", "https://data.delijn.be/stops/102754"], ["https://data.delijn.be/stops/305334", "https://tec.openplanner.team/stops/Bspkbeu1"], ["http://irail.be/stations/NMBS/008893583", "https://data.delijn.be/stops/201925"], ["https://data.delijn.be/stops/408838", "https://tec.openplanner.team/stops/LRmkerk1"], ["https://data.delijn.be/stops/410135", "https://tec.openplanner.team/stops/Lvo60--1"], ["http://irail.be/stations/NMBS/008832375", "https://data.delijn.be/stops/401966"], ["http://irail.be/stations/NMBS/008894755", "https://data.delijn.be/stops/205289"], ["http://irail.be/stations/NMBS/008881562", "https://tec.openplanner.team/stops/H1fr113b"], ["https://mivb.openplanner.team/stops/1598", "https://tec.openplanner.team/stops/Baudtri2"], ["http://irail.be/stations/NMBS/008814209", "https://tec.openplanner.team/stops/Bnivaig1"], ["https://data.delijn.be/stops/405344", "https://tec.openplanner.team/stops/Bezeksj2"], ["https://data.delijn.be/stops/300824", "https://mivb.openplanner.team/stops/0440549"], ["http://irail.be/stations/NMBS/008844271", "https://tec.openplanner.team/stops/LTRgare0"], ["https://mivb.openplanner.team/stops/2290B", "https://tec.openplanner.team/stops/Baudhan1"], ["https://data.delijn.be/stops/505828", "https://tec.openplanner.team/stops/H4mo145a"], ["https://data.delijn.be/stops/209191", "https://tec.openplanner.team/stops/H5rx131b"], ["http://irail.be/stations/NMBS/008893260", "https://data.delijn.be/stops/201854"], ["http://irail.be/stations/NMBS/008871688", "https://tec.openplanner.team/stops/H1ls105b"], ["https://data.delijn.be/stops/408852", "https://tec.openplanner.team/stops/LFChofv2"], ["https://data.delijn.be/stops/306907", "https://tec.openplanner.team/stops/Bboseco2"], ["https://data.delijn.be/stops/308981", "https://tec.openplanner.team/stops/Blhunys2"], ["https://data.delijn.be/stops/307152", "https://tec.openplanner.team/stops/Bhalwat1"], ["https://data.delijn.be/stops/304169", "https://tec.openplanner.team/stops/Blemmar2"], ["http://irail.be/stations/NMBS/008863545", "https://tec.openplanner.team/stops/N229aia"], ["https://data.delijn.be/stops/300802", "https://mivb.openplanner.team/stops/7670108"], ["http://irail.be/stations/NMBS/008883022", "https://tec.openplanner.team/stops/Bquecge2"], ["https://data.delijn.be/stops/305234", "https://mivb.openplanner.team/stops/9755"], ["https://data.delijn.be/stops/301062", "https://mivb.openplanner.team/stops/0460150"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N224aba"], ["https://data.delijn.be/stops/301145", "https://mivb.openplanner.team/stops/2146"], ["https://data.delijn.be/stops/208742", "https://tec.openplanner.team/stops/H4or115b"], ["https://data.delijn.be/stops/300945", "https://mivb.openplanner.team/stops/4104"], ["http://irail.be/stations/NMBS/008871365", "https://tec.openplanner.team/stops/Cobobjo1"], ["https://data.delijn.be/stops/405440", "https://tec.openplanner.team/stops/LWscona2"], ["http://irail.be/stations/NMBS/008891405", "https://data.delijn.be/stops/506014"], ["http://irail.be/stations/NMBS/008831781", "https://data.delijn.be/stops/402128"], ["http://irail.be/stations/NMBS/008895851", "https://data.delijn.be/stops/206110"], ["http://irail.be/stations/NMBS/008875127", "https://tec.openplanner.team/stops/N135ada"], ["https://data.delijn.be/stops/300018", "https://tec.openplanner.team/stops/Buccvoi2"], ["https://data.delijn.be/stops/302444", "https://tec.openplanner.team/stops/Bsrgm102"], ["http://irail.be/stations/NMBS/008822053", "https://data.delijn.be/stops/302504"], ["https://mivb.openplanner.team/stops/1970", "https://tec.openplanner.team/stops/Buccplj2"], ["http://irail.be/stations/NMBS/008843224", "https://tec.openplanner.team/stops/Lfhweri2"], ["http://irail.be/stations/NMBS/008821865", "https://data.delijn.be/stops/308497"], ["https://data.delijn.be/stops/301134", "https://mivb.openplanner.team/stops/6439"], ["https://data.delijn.be/stops/508679", "https://tec.openplanner.team/stops/H4ae100b"], ["http://irail.be/stations/NMBS/008200130", "https://tec.openplanner.team/stops/X769arb"], ["https://data.delijn.be/stops/304439", "https://tec.openplanner.team/stops/Brsg7fo2"], ["https://data.delijn.be/stops/333234", "https://mivb.openplanner.team/stops/4223"], ["https://data.delijn.be/stops/503772", "https://tec.openplanner.team/stops/H4sl154a"], ["https://data.delijn.be/stops/301011", "https://mivb.openplanner.team/stops/1199F"], ["http://irail.be/stations/NMBS/008814456", "https://mivb.openplanner.team/stops/5459"], ["https://data.delijn.be/stops/504640", "https://tec.openplanner.team/stops/H4co149b"], ["http://irail.be/stations/NMBS/008895711", "https://data.delijn.be/stops/209456"], ["https://data.delijn.be/stops/408956", "https://tec.openplanner.team/stops/LWAbett2"], ["http://irail.be/stations/NMBS/008812229", "https://mivb.openplanner.team/stops/9825F"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/Cchsud03"], ["https://data.delijn.be/stops/405345", "https://tec.openplanner.team/stops/Bezeksj2"], ["http://irail.be/stations/NMBS/008884541", "https://tec.openplanner.team/stops/H1qu102b"], ["https://data.delijn.be/stops/301018", "https://mivb.openplanner.team/stops/1190"], ["http://irail.be/stations/NMBS/008882230", "https://tec.openplanner.team/stops/H2mo124a"], ["https://data.delijn.be/stops/304066", "https://tec.openplanner.team/stops/Bovevnd1"], ["https://data.delijn.be/stops/301453", "https://tec.openplanner.team/stops/Bhalpar2"], ["https://data.delijn.be/stops/300982", "https://mivb.openplanner.team/stops/2346"], ["https://data.delijn.be/stops/300369", "https://tec.openplanner.team/stops/Bwaubru1"], ["http://irail.be/stations/NMBS/008865227", "https://tec.openplanner.team/stops/X898abb"], ["https://data.delijn.be/stops/304654", "https://mivb.openplanner.team/stops/8642"], ["https://data.delijn.be/stops/407751", "https://tec.openplanner.team/stops/LWOwa162"], ["https://data.delijn.be/stops/209820", "https://tec.openplanner.team/stops/H5rx129a"], ["http://irail.be/stations/NMBS/008833175", "https://data.delijn.be/stops/301990"], ["https://data.delijn.be/stops/408972", "https://tec.openplanner.team/stops/LWAwila1"], ["http://irail.be/stations/NMBS/008731388", "https://tec.openplanner.team/stops/H4lg106a"], ["http://irail.be/stations/NMBS/008861150", "https://tec.openplanner.team/stops/N534bva"], ["http://irail.be/stations/NMBS/008821048", "https://data.delijn.be/stops/109881"], ["https://data.delijn.be/stops/408858", "https://tec.openplanner.team/stops/LWRvert2"], ["https://mivb.openplanner.team/stops/2117B", "https://tec.openplanner.team/stops/Buccvbe1"], ["http://irail.be/stations/NMBS/008814415", "https://data.delijn.be/stops/300032"], ["https://data.delijn.be/stops/300955", "https://mivb.openplanner.team/stops/2058"], ["https://data.delijn.be/stops/301029", "https://mivb.openplanner.team/stops/2931"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/300353"], ["https://data.delijn.be/stops/401412", "https://mivb.openplanner.team/stops/6155F"], ["https://data.delijn.be/stops/405735", "https://tec.openplanner.team/stops/Lrclant2"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2re174b"], ["https://data.delijn.be/stops/207784", "https://tec.openplanner.team/stops/H5rx150a"], ["http://irail.be/stations/NMBS/008891264", "https://data.delijn.be/stops/505019"], ["http://irail.be/stations/NMBS/008863156", "https://tec.openplanner.team/stops/N539afa"], ["http://irail.be/stations/NMBS/008841673", "https://tec.openplanner.team/stops/Lligare*"], ["http://irail.be/stations/NMBS/008822533", "https://data.delijn.be/stops/301866"], ["http://irail.be/stations/NMBS/008872520", "https://tec.openplanner.team/stops/Bsampli1"], ["http://irail.be/stations/NMBS/008814167", "https://tec.openplanner.team/stops/Brsgter1"], ["http://irail.be/stations/NMBS/008829009", "https://data.delijn.be/stops/101361"], ["https://mivb.openplanner.team/stops/1497B", "https://tec.openplanner.team/stops/Bbxltrv1"], ["https://data.delijn.be/stops/304112", "https://tec.openplanner.team/stops/Bovevnd2"], ["http://irail.be/stations/NMBS/008843240", "https://tec.openplanner.team/stops/LENsent2"], ["https://data.delijn.be/stops/306383", "https://mivb.openplanner.team/stops/9729"], ["http://irail.be/stations/NMBS/008893211", "https://data.delijn.be/stops/201163"], ["https://data.delijn.be/stops/300827", "https://mivb.openplanner.team/stops/2837"], ["http://irail.be/stations/NMBS/008811916", "https://mivb.openplanner.team/stops/1318"], ["https://data.delijn.be/stops/302876", "https://tec.openplanner.team/stops/Buccron1"], ["https://data.delijn.be/stops/300368", "https://tec.openplanner.team/stops/Bblapra1"], ["http://irail.be/stations/NMBS/008892627", "https://data.delijn.be/stops/209284"], ["http://irail.be/stations/NMBS/008841442", "https://tec.openplanner.team/stops/LLirout1"], ["https://data.delijn.be/stops/408801", "https://tec.openplanner.team/stops/LVIsacr2"], ["https://data.delijn.be/stops/208187", "https://tec.openplanner.team/stops/H5rx136a"], ["https://data.delijn.be/stops/403805", "https://tec.openplanner.team/stops/LOrchau1"], ["https://data.delijn.be/stops/300335", "https://tec.openplanner.team/stops/Balsnie1"], ["https://data.delijn.be/stops/300822", "https://mivb.openplanner.team/stops/7820153"], ["https://data.delijn.be/stops/301035", "https://tec.openplanner.team/stops/Bsgihmo2"], ["https://data.delijn.be/stops/405458", "https://tec.openplanner.team/stops/LWSstat2"], ["https://mivb.openplanner.team/stops/5826", "https://tec.openplanner.team/stops/Buccbou2"], ["https://data.delijn.be/stops/507748", "https://tec.openplanner.team/stops/H4ae102b"], ["https://mivb.openplanner.team/stops/4289", "https://tec.openplanner.team/stops/Bwbfeta1"], ["https://data.delijn.be/stops/305299", "https://tec.openplanner.team/stops/Bspkkhe1"], ["https://mivb.openplanner.team/stops/2714", "https://tec.openplanner.team/stops/Buccdef1"], ["http://irail.be/stations/NMBS/008865110", "https://tec.openplanner.team/stops/X725afd"], ["http://irail.be/stations/NMBS/008863818", "https://tec.openplanner.team/stops/N232bqa"], ["http://irail.be/stations/NMBS/008813037", "https://mivb.openplanner.team/stops/1167"], ["https://data.delijn.be/stops/400665", "https://tec.openplanner.team/stops/LGAbois2"], ["http://irail.be/stations/NMBS/008895646", "https://data.delijn.be/stops/209588"], ["http://irail.be/stations/NMBS/008863461", "https://tec.openplanner.team/stops/N509bda"], ["http://irail.be/stations/NMBS/008832227", "https://data.delijn.be/stops/410109"], ["https://data.delijn.be/stops/308530", "https://mivb.openplanner.team/stops/2225"], ["https://data.delijn.be/stops/307852", "https://mivb.openplanner.team/stops/0230234"], ["https://data.delijn.be/stops/400495", "https://tec.openplanner.team/stops/LBSneuv1"], ["https://data.delijn.be/stops/407201", "https://tec.openplanner.team/stops/LHexhav2"], ["http://irail.be/stations/NMBS/008895836", "https://data.delijn.be/stops/306716"], ["https://data.delijn.be/stops/300817", "https://mivb.openplanner.team/stops/0270514"], ["https://data.delijn.be/stops/504305", "https://tec.openplanner.team/stops/H4mo160a"], ["http://irail.be/stations/NMBS/008812237", "https://data.delijn.be/stops/306150"], ["http://irail.be/stations/NMBS/008844057", "https://tec.openplanner.team/stops/Lvepala7"], ["http://irail.be/stations/NMBS/008879004", "https://tec.openplanner.team/stops/H1be100a"], ["https://data.delijn.be/stops/218014", "https://tec.openplanner.team/stops/H5rx106a"], ["https://data.delijn.be/stops/302226", "https://tec.openplanner.team/stops/Bhoemel2"], ["https://data.delijn.be/stops/408913", "https://tec.openplanner.team/stops/LVukabi2"], ["http://irail.be/stations/NMBS/008894235", "https://data.delijn.be/stops/204165"], ["https://data.delijn.be/stops/301197", "https://tec.openplanner.team/stops/Bmlnegl1"], ["https://data.delijn.be/stops/509238", "https://tec.openplanner.team/stops/H4co107a"], ["https://data.delijn.be/stops/410154", "https://mivb.openplanner.team/stops/1315"], ["https://data.delijn.be/stops/307262", "https://mivb.openplanner.team/stops/9659"], ["https://data.delijn.be/stops/404677", "https://tec.openplanner.team/stops/Lvovent1"], ["http://irail.be/stations/NMBS/008822608", "https://data.delijn.be/stops/101886"], ["https://data.delijn.be/stops/303226", "https://mivb.openplanner.team/stops/2609"], ["http://irail.be/stations/NMBS/008812153", "https://data.delijn.be/stops/207873"], ["https://data.delijn.be/stops/302426", "https://tec.openplanner.team/stops/Bjodrrg1"], ["http://irail.be/stations/NMBS/008844503", "https://tec.openplanner.team/stops/LWEcool1"], ["https://data.delijn.be/stops/408887", "https://tec.openplanner.team/stops/LTErest2"], ["https://mivb.openplanner.team/stops/5408", "https://tec.openplanner.team/stops/Bixleix2"], ["http://irail.be/stations/NMBS/008814415", "https://data.delijn.be/stops/219080"], ["http://irail.be/stations/NMBS/008400426", "https://data.delijn.be/stops/406278"], ["http://irail.be/stations/NMBS/008883220", "https://tec.openplanner.team/stops/H2me113a"], ["https://data.delijn.be/stops/307261", "https://mivb.openplanner.team/stops/9657"], ["http://irail.be/stations/NMBS/008831310", "https://data.delijn.be/stops/408567"], ["https://mivb.openplanner.team/stops/1807", "https://tec.openplanner.team/stops/Bettars1"], ["http://irail.be/stations/NMBS/008832565", "https://data.delijn.be/stops/401924"], ["https://mivb.openplanner.team/stops/6112", "https://tec.openplanner.team/stops/Bixlfla2"], ["http://irail.be/stations/NMBS/008811288", "https://data.delijn.be/stops/304631"], ["http://irail.be/stations/NMBS/008822269", "https://data.delijn.be/stops/307272"], ["http://irail.be/stations/NMBS/008884327", "https://tec.openplanner.team/stops/H1hi124a"], ["http://irail.be/stations/NMBS/008884889", "https://tec.openplanner.team/stops/H4bs110b"], ["https://data.delijn.be/stops/305151", "https://tec.openplanner.team/stops/Btiegma1"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Cgzhour1"], ["https://data.delijn.be/stops/400663", "https://tec.openplanner.team/stops/LWAbeec1"], ["http://irail.be/stations/NMBS/008866530", "https://tec.openplanner.team/stops/X617acb"], ["http://irail.be/stations/NMBS/008895745", "https://data.delijn.be/stops/207617"], ["http://irail.be/stations/NMBS/008863446", "https://tec.openplanner.team/stops/N512awb"], ["https://data.delijn.be/stops/408862", "https://tec.openplanner.team/stops/LWRvert2"], ["https://data.delijn.be/stops/301398", "https://mivb.openplanner.team/stops/2662B"], ["https://data.delijn.be/stops/404681", "https://tec.openplanner.team/stops/LWidepo2"], ["http://irail.be/stations/NMBS/008833258", "https://data.delijn.be/stops/300105"], ["https://data.delijn.be/stops/409000", "https://tec.openplanner.team/stops/LWAipes1"], ["https://data.delijn.be/stops/301155", "https://tec.openplanner.team/stops/Buccpor1"], ["https://data.delijn.be/stops/207782", "https://tec.openplanner.team/stops/H5rx148a"], ["https://data.delijn.be/stops/509383", "https://tec.openplanner.team/stops/H4pl121b"], ["https://data.delijn.be/stops/302398", "https://mivb.openplanner.team/stops/6"], ["https://data.delijn.be/stops/307510", "https://tec.openplanner.team/stops/Bovesnh2"], ["https://data.delijn.be/stops/302414", "https://tec.openplanner.team/stops/Bjodeco2"], ["http://irail.be/stations/NMBS/008886553", "https://tec.openplanner.team/stops/H1le117a"], ["https://data.delijn.be/stops/304546", "https://mivb.openplanner.team/stops/9652"], ["https://data.delijn.be/stops/300769", "https://mivb.openplanner.team/stops/2528"], ["https://data.delijn.be/stops/301026", "https://mivb.openplanner.team/stops/2402"], ["https://data.delijn.be/stops/301052", "https://mivb.openplanner.team/stops/5072"], ["https://data.delijn.be/stops/505926", "https://tec.openplanner.team/stops/H4co108b"], ["https://data.delijn.be/stops/407202", "https://tec.openplanner.team/stops/LHTcent2"], ["https://data.delijn.be/stops/408884", "https://tec.openplanner.team/stops/LFMrijk1"], ["https://data.delijn.be/stops/304072", "https://tec.openplanner.team/stops/Blhugar1"], ["https://data.delijn.be/stops/307697", "https://tec.openplanner.team/stops/Brsgleq1"], ["http://irail.be/stations/NMBS/008891009", "https://data.delijn.be/stops/507456"], ["https://data.delijn.be/stops/305169", "https://tec.openplanner.team/stops/Btieast1"], ["http://irail.be/stations/NMBS/008821832", "https://data.delijn.be/stops/104784"], ["https://data.delijn.be/stops/303581", "https://mivb.openplanner.team/stops/9728"], ["https://data.delijn.be/stops/302925", "https://tec.openplanner.team/stops/Bhevgar2"], ["http://irail.be/stations/NMBS/008814118", "https://mivb.openplanner.team/stops/2604"], ["https://mivb.openplanner.team/stops/3529", "https://tec.openplanner.team/stops/Baudsta2"], ["https://data.delijn.be/stops/300907", "https://tec.openplanner.team/stops/Bixlpat2"], ["https://data.delijn.be/stops/405658", "https://tec.openplanner.team/stops/LToluik2"], ["http://irail.be/stations/NMBS/008885530", "https://tec.openplanner.team/stops/H4vz368a"], ["https://data.delijn.be/stops/304452", "https://tec.openplanner.team/stops/Brsgter2"], ["https://data.delijn.be/stops/504310", "https://tec.openplanner.team/stops/H4mo208a"], ["http://irail.be/stations/NMBS/008864337", "https://tec.openplanner.team/stops/X995afa"], ["https://mivb.openplanner.team/stops/4307", "https://tec.openplanner.team/stops/Bixefra1"], ["https://data.delijn.be/stops/405700", "https://tec.openplanner.team/stops/Llgpire1"], ["http://irail.be/stations/NMBS/008821725", "https://data.delijn.be/stops/108239"], ["https://data.delijn.be/stops/209609", "https://tec.openplanner.team/stops/H1by106b"], ["https://data.delijn.be/stops/408913", "https://tec.openplanner.team/stops/LDpulve1"], ["https://data.delijn.be/stops/300881", "https://mivb.openplanner.team/stops/4957"], ["http://irail.be/stations/NMBS/008814241", "https://tec.openplanner.team/stops/Blilhay1"], ["http://irail.be/stations/NMBS/008884541", "https://tec.openplanner.team/stops/H1wl123a"], ["http://irail.be/stations/NMBS/008883220", "https://tec.openplanner.team/stops/H2ec105a"], ["http://irail.be/stations/NMBS/008833050", "https://data.delijn.be/stops/300723"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1hh118b"], ["https://data.delijn.be/stops/407754", "https://tec.openplanner.team/stops/LWOcomm2"], ["https://data.delijn.be/stops/407648", "https://tec.openplanner.team/stops/LBPboir1"], ["http://irail.be/stations/NMBS/008843158", "https://tec.openplanner.team/stops/Ljejoli1"], ["https://data.delijn.be/stops/302986", "https://mivb.openplanner.team/stops/3261"], ["http://irail.be/stations/NMBS/008895612", "https://data.delijn.be/stops/209548"], ["https://data.delijn.be/stops/304817", "https://tec.openplanner.team/stops/Bwavpar1"], ["http://irail.be/stations/NMBS/008811262", "https://data.delijn.be/stops/302717"], ["http://irail.be/stations/NMBS/008893559", "https://data.delijn.be/stops/203749"], ["https://data.delijn.be/stops/307042", "https://tec.openplanner.team/stops/Bblapin2"], ["http://irail.be/stations/NMBS/008895638", "https://data.delijn.be/stops/307303"], ["http://irail.be/stations/NMBS/008833605", "https://data.delijn.be/stops/406398"], ["http://irail.be/stations/NMBS/008861515", "https://tec.openplanner.team/stops/Bcrnvic1"], ["https://data.delijn.be/stops/408890", "https://tec.openplanner.team/stops/LFMveur2"], ["https://data.delijn.be/stops/307159", "https://tec.openplanner.team/stops/Bhalwat1"], ["https://data.delijn.be/stops/304877", "https://mivb.openplanner.team/stops/9552"], ["http://irail.be/stations/NMBS/008843323", "https://tec.openplanner.team/stops/LAmarbo1"], ["https://data.delijn.be/stops/307971", "https://tec.openplanner.team/stops/Bbgeegl1"], ["https://mivb.openplanner.team/stops/2119", "https://tec.openplanner.team/stops/Buccvbe1"], ["https://data.delijn.be/stops/400675", "https://tec.openplanner.team/stops/Blinbru1"], ["https://data.delijn.be/stops/302798", "https://mivb.openplanner.team/stops/1339"], ["http://irail.be/stations/NMBS/008881190", "https://tec.openplanner.team/stops/H1cv102a"], ["https://data.delijn.be/stops/300957", "https://tec.openplanner.team/stops/Baudulb1"], ["http://irail.be/stations/NMBS/008811510", "https://tec.openplanner.team/stops/Blhugar1"], ["http://irail.be/stations/NMBS/008842648", "https://tec.openplanner.team/stops/LTIptme1"], ["https://data.delijn.be/stops/300956", "https://mivb.openplanner.team/stops/5282F"], ["http://irail.be/stations/NMBS/008200101", "https://tec.openplanner.team/stops/X685afb"], ["https://data.delijn.be/stops/306003", "https://tec.openplanner.team/stops/Brsrfen1"], ["http://irail.be/stations/NMBS/008895430", "https://data.delijn.be/stops/206433"], ["http://irail.be/stations/NMBS/008821402", "https://data.delijn.be/stops/102192"], ["https://data.delijn.be/stops/307089", "https://tec.openplanner.team/stops/Bblapin1"], ["https://data.delijn.be/stops/302428", "https://tec.openplanner.team/stops/Bjodfab2"], ["http://irail.be/stations/NMBS/008894508", "https://data.delijn.be/stops/204002"], ["http://irail.be/stations/NMBS/008821600", "https://data.delijn.be/stops/102068"], ["https://data.delijn.be/stops/304446", "https://tec.openplanner.team/stops/Brsgece2"], ["http://irail.be/stations/NMBS/008871365", "https://tec.openplanner.team/stops/Cpcha432"], ["https://data.delijn.be/stops/408963", "https://tec.openplanner.team/stops/LWAalou1"], ["https://data.delijn.be/stops/509237", "https://tec.openplanner.team/stops/H4co106d"], ["http://irail.be/stations/NMBS/008893567", "https://data.delijn.be/stops/203944"], ["http://irail.be/stations/NMBS/008893062", "https://data.delijn.be/stops/203860"], ["http://irail.be/stations/NMBS/008861333", "https://tec.openplanner.team/stops/N529afb"], ["http://irail.be/stations/NMBS/008892320", "https://data.delijn.be/stops/501180"], ["http://irail.be/stations/NMBS/008883006", "https://tec.openplanner.team/stops/Bbcoubo2"], ["https://data.delijn.be/stops/207767", "https://tec.openplanner.team/stops/H5rx126a"], ["http://irail.be/stations/NMBS/008811544", "https://tec.openplanner.team/stops/Brixcro1"], ["https://data.delijn.be/stops/301411", "https://tec.openplanner.team/stops/Bengvma1"], ["http://irail.be/stations/NMBS/008871100", "https://tec.openplanner.team/stops/Cmasncb2"], ["https://data.delijn.be/stops/407230", "https://tec.openplanner.team/stops/LORhorp1"], ["https://data.delijn.be/stops/301107", "https://tec.openplanner.team/stops/Buccbas1"], ["https://data.delijn.be/stops/301032", "https://mivb.openplanner.team/stops/6162"], ["https://data.delijn.be/stops/308902", "https://mivb.openplanner.team/stops/1732"], ["https://data.delijn.be/stops/408861", "https://tec.openplanner.team/stops/LBWfusi2"], ["http://irail.be/stations/NMBS/008822210", "https://data.delijn.be/stops/106976"], ["https://data.delijn.be/stops/304207", "https://tec.openplanner.team/stops/Brsrfen1"], ["https://data.delijn.be/stops/305887", "https://mivb.openplanner.team/stops/2823B"], ["https://data.delijn.be/stops/308981", "https://tec.openplanner.team/stops/Bgnvgir2"], ["https://data.delijn.be/stops/408906", "https://tec.openplanner.team/stops/LFPkerk1"], ["https://data.delijn.be/stops/406312", "https://tec.openplanner.team/stops/LMastat4"], ["https://data.delijn.be/stops/209609", "https://tec.openplanner.team/stops/H1mk116a"], ["https://data.delijn.be/stops/306000", "https://tec.openplanner.team/stops/Bovetsa1"], ["http://irail.be/stations/NMBS/008881455", "https://tec.openplanner.team/stops/H3th131b"], ["https://data.delijn.be/stops/405715", "https://tec.openplanner.team/stops/Llghoch2"], ["http://irail.be/stations/NMBS/008811247", "https://data.delijn.be/stops/304723"], ["https://data.delijn.be/stops/405337", "https://tec.openplanner.team/stops/Bneelaa1"], ["https://data.delijn.be/stops/408800", "https://tec.openplanner.team/stops/LVIjacq2"], ["https://data.delijn.be/stops/405703", "https://tec.openplanner.team/stops/Llgbatt1"], ["https://data.delijn.be/stops/307533", "https://tec.openplanner.team/stops/H1en101b"], ["https://data.delijn.be/stops/301099", "https://mivb.openplanner.team/stops/5532"], ["https://data.delijn.be/stops/503496", "https://tec.openplanner.team/stops/H4rk101b"], ["https://data.delijn.be/stops/304021", "https://tec.openplanner.team/stops/Bovehst1"], ["https://data.delijn.be/stops/301011", "https://mivb.openplanner.team/stops/1064"], ["https://mivb.openplanner.team/stops/2144", "https://tec.openplanner.team/stops/Buccvbe1"], ["http://irail.be/stations/NMBS/008863842", "https://tec.openplanner.team/stops/N338ahb"], ["https://data.delijn.be/stops/301082", "https://mivb.openplanner.team/stops/6214"], ["https://mivb.openplanner.team/stops/3562", "https://tec.openplanner.team/stops/Bixleix2"], ["https://data.delijn.be/stops/307713", "https://tec.openplanner.team/stops/Brsggde2"], ["https://data.delijn.be/stops/404676", "https://tec.openplanner.team/stops/Lvovent2"], ["http://irail.be/stations/NMBS/008892692", "https://data.delijn.be/stops/208213"], ["http://irail.be/stations/NMBS/008891611", "https://data.delijn.be/stops/506510"], ["https://data.delijn.be/stops/305914", "https://mivb.openplanner.team/stops/5108"], ["https://data.delijn.be/stops/508032", "https://tec.openplanner.team/stops/H4ae100a"], ["http://irail.be/stations/NMBS/008842036", "https://tec.openplanner.team/stops/Lcebail2"], ["https://data.delijn.be/stops/408926", "https://tec.openplanner.team/stops/LRmkast*"], ["http://irail.be/stations/NMBS/008845229", "https://tec.openplanner.team/stops/LCocasc1"], ["https://data.delijn.be/stops/209185", "https://tec.openplanner.team/stops/H5rx134b"], ["http://irail.be/stations/NMBS/008812153", "https://data.delijn.be/stops/207691"], ["https://data.delijn.be/stops/410153", "https://mivb.openplanner.team/stops/5046"], ["https://data.delijn.be/stops/301155", "https://mivb.openplanner.team/stops/2145"], ["http://irail.be/stations/NMBS/008831310", "https://tec.openplanner.team/stops/LTolijn*"], ["http://irail.be/stations/NMBS/008863404", "https://tec.openplanner.team/stops/LSssurl1"], ["https://data.delijn.be/stops/305356", "https://tec.openplanner.team/stops/Bwaveur1"], ["http://irail.be/stations/NMBS/008864451", "https://tec.openplanner.team/stops/X982aua"], ["http://irail.be/stations/NMBS/008821238", "https://data.delijn.be/stops/102335"], ["https://data.delijn.be/stops/305353", "https://tec.openplanner.team/stops/Brsreco2"], ["https://data.delijn.be/stops/307599", "https://tec.openplanner.team/stops/Bhalker1"], ["https://data.delijn.be/stops/308869", "https://tec.openplanner.team/stops/Bkrapri1"], ["https://data.delijn.be/stops/300813", "https://mivb.openplanner.team/stops/7790556"], ["http://irail.be/stations/NMBS/008822277", "https://data.delijn.be/stops/305618"], ["https://data.delijn.be/stops/301033", "https://mivb.openplanner.team/stops/2959"], ["https://data.delijn.be/stops/408810", "https://tec.openplanner.team/stops/LHAclin2"], ["http://irail.be/stations/NMBS/008872306", "https://tec.openplanner.team/stops/Cgyrdid1"], ["https://data.delijn.be/stops/307167", "https://tec.openplanner.team/stops/Bhalark2"], ["https://data.delijn.be/stops/410143", "https://tec.openplanner.team/stops/Llgbois2"], ["http://irail.be/stations/NMBS/008885704", "https://data.delijn.be/stops/509713"], ["https://mivb.openplanner.team/stops/1262B", "https://tec.openplanner.team/stops/Bixlqll1"], ["https://data.delijn.be/stops/306647", "https://mivb.openplanner.team/stops/1169"], ["http://irail.be/stations/NMBS/008864915", "https://tec.openplanner.team/stops/N254aga"], ["http://irail.be/stations/NMBS/008841327", "https://tec.openplanner.team/stops/LFOcomb4"], ["https://data.delijn.be/stops/400465", "https://tec.openplanner.team/stops/LEMgren*"], ["https://data.delijn.be/stops/300932", "https://mivb.openplanner.team/stops/2924"], ["https://data.delijn.be/stops/308856", "https://mivb.openplanner.team/stops/4251"], ["https://data.delijn.be/stops/305436", "https://mivb.openplanner.team/stops/5520F"], ["https://mivb.openplanner.team/stops/3550", "https://tec.openplanner.team/stops/Baudvdr2"], ["https://data.delijn.be/stops/301072", "https://mivb.openplanner.team/stops/1179"], ["http://irail.be/stations/NMBS/008871712", "https://tec.openplanner.team/stops/H1lo119a"], ["http://irail.be/stations/NMBS/008822475", "https://data.delijn.be/stops/305814"], ["https://data.delijn.be/stops/302442", "https://tec.openplanner.team/stops/Bzlufbo1"], ["https://data.delijn.be/stops/303660", "https://tec.openplanner.team/stops/Blkbbeu1"], ["http://irail.be/stations/NMBS/008871688", "https://tec.openplanner.team/stops/H1ls129a"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/N524aba"], ["https://data.delijn.be/stops/402549", "https://tec.openplanner.team/stops/LBpcren1"], ["https://data.delijn.be/stops/301688", "https://tec.openplanner.team/stops/Bnetrbr2"], ["http://irail.be/stations/NMBS/008200110", "https://tec.openplanner.team/stops/X684abb"], ["https://data.delijn.be/stops/300368", "https://tec.openplanner.team/stops/Bwaunou1"], ["https://data.delijn.be/stops/305280", "https://mivb.openplanner.team/stops/9779"], ["http://irail.be/stations/NMBS/008711184", "https://tec.openplanner.team/stops/X611aca"], ["http://irail.be/stations/NMBS/008881570", "https://tec.openplanner.team/stops/H1fr122a"], ["https://data.delijn.be/stops/301412", "https://tec.openplanner.team/stops/H1en106b"], ["https://data.delijn.be/stops/301079", "https://mivb.openplanner.team/stops/6437F"], ["http://irail.be/stations/NMBS/008892908", "https://tec.openplanner.team/stops/H5rx148a"], ["https://data.delijn.be/stops/303632", "https://mivb.openplanner.team/stops/6602"], ["https://data.delijn.be/stops/300887", "https://mivb.openplanner.team/stops/7830352"], ["http://irail.be/stations/NMBS/008892650", "https://data.delijn.be/stops/208726"], ["https://data.delijn.be/stops/307716", "https://tec.openplanner.team/stops/Brsggol2"], ["https://data.delijn.be/stops/308094", "https://tec.openplanner.team/stops/Bpienod2"], ["https://data.delijn.be/stops/301008", "https://mivb.openplanner.team/stops/1199F"], ["https://data.delijn.be/stops/300753", "https://mivb.openplanner.team/stops/1205"], ["http://irail.be/stations/NMBS/008841459", "https://tec.openplanner.team/stops/LJelava1"], ["https://data.delijn.be/stops/301086", "https://mivb.openplanner.team/stops/8131"], ["https://data.delijn.be/stops/509382", "https://tec.openplanner.team/stops/H4pl122b"], ["http://irail.be/stations/NMBS/008842689", "https://tec.openplanner.team/stops/LESchpl1"], ["https://data.delijn.be/stops/400683", "https://tec.openplanner.team/stops/LGAholl2"], ["https://data.delijn.be/stops/301958", "https://mivb.openplanner.team/stops/6484B"], ["https://data.delijn.be/stops/301928", "https://mivb.openplanner.team/stops/9853"], ["https://data.delijn.be/stops/300884", "https://mivb.openplanner.team/stops/6481"], ["https://data.delijn.be/stops/300982", "https://mivb.openplanner.team/stops/5350G"], ["http://irail.be/stations/NMBS/008866605", "https://tec.openplanner.team/stops/X615bia"], ["https://data.delijn.be/stops/303996", "https://tec.openplanner.team/stops/Bove4ko1"], ["https://data.delijn.be/stops/301006", "https://mivb.openplanner.team/stops/1111"], ["http://irail.be/stations/NMBS/008832433", "https://data.delijn.be/stops/109667"], ["https://data.delijn.be/stops/301051", "https://mivb.openplanner.team/stops/1792"], ["https://data.delijn.be/stops/504654", "https://tec.openplanner.team/stops/H4co150a"], ["https://data.delijn.be/stops/403750", "https://tec.openplanner.team/stops/LORec--*"], ["http://irail.be/stations/NMBS/008841004", "https://tec.openplanner.team/stops/LlgguilA"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/Cmlhotv1"], ["http://irail.be/stations/NMBS/008886561", "https://tec.openplanner.team/stops/H1le117a"], ["https://data.delijn.be/stops/404686", "https://tec.openplanner.team/stops/LWipaif4"], ["https://data.delijn.be/stops/306400", "https://mivb.openplanner.team/stops/3228"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N552abb"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/Cchsud01"], ["http://irail.be/stations/NMBS/008866118", "https://tec.openplanner.team/stops/X602aha"], ["https://data.delijn.be/stops/307636", "https://tec.openplanner.team/stops/Bucceng2"], ["http://irail.be/stations/NMBS/008884541", "https://tec.openplanner.team/stops/H1qu111a"], ["http://irail.be/stations/NMBS/008814449", "https://mivb.openplanner.team/stops/6931B"], ["https://mivb.openplanner.team/stops/8212", "https://tec.openplanner.team/stops/Baudstr1"], ["https://data.delijn.be/stops/509861", "https://tec.openplanner.team/stops/H4mo159a"], ["http://irail.be/stations/NMBS/008863842", "https://tec.openplanner.team/stops/N338aga"], ["http://irail.be/stations/NMBS/008866175", "https://tec.openplanner.team/stops/X650aha"], ["https://data.delijn.be/stops/301676", "https://tec.openplanner.team/stops/Bnetace1"], ["https://data.delijn.be/stops/504233", "https://tec.openplanner.team/stops/H4co108b"], ["http://irail.be/stations/NMBS/008861119", "https://tec.openplanner.team/stops/N501amb"], ["http://irail.be/stations/NMBS/008200516", "https://tec.openplanner.team/stops/X684aaa"], ["http://irail.be/stations/NMBS/008821667", "https://data.delijn.be/stops/107111"], ["https://data.delijn.be/stops/308823", "https://tec.openplanner.team/stops/Bgdhdet1"], ["https://data.delijn.be/stops/302849", "https://tec.openplanner.team/stops/Bwaakap2"], ["https://data.delijn.be/stops/304443", "https://tec.openplanner.team/stops/Brsggar2"], ["https://data.delijn.be/stops/305347", "https://tec.openplanner.team/stops/Bbgepau2"], ["https://data.delijn.be/stops/405414", "https://tec.openplanner.team/stops/Blanath1"], ["https://data.delijn.be/stops/404671", "https://tec.openplanner.team/stops/LJUmate1"], ["https://data.delijn.be/stops/303585", "https://mivb.openplanner.team/stops/9778"], ["http://irail.be/stations/NMBS/008891173", "https://data.delijn.be/stops/501412"], ["https://data.delijn.be/stops/408920", "https://tec.openplanner.team/stops/LTEnuro1"], ["http://irail.be/stations/NMBS/008842705", "https://tec.openplanner.team/stops/LCPscay1"], ["https://data.delijn.be/stops/305145", "https://tec.openplanner.team/stops/H1mk123b"], ["https://data.delijn.be/stops/401397", "https://mivb.openplanner.team/stops/1533"], ["https://data.delijn.be/stops/301923", "https://mivb.openplanner.team/stops/2017"], ["https://data.delijn.be/stops/306813", "https://mivb.openplanner.team/stops/1568"], ["https://data.delijn.be/stops/301043", "https://mivb.openplanner.team/stops/3263B"], ["http://irail.be/stations/NMBS/008884319", "https://tec.openplanner.team/stops/H1bo108b"], ["http://irail.be/stations/NMBS/008833308", "https://data.delijn.be/stops/305160"], ["http://irail.be/stations/NMBS/008883121", "https://tec.openplanner.team/stops/H1ne147a"], ["https://data.delijn.be/stops/304545", "https://mivb.openplanner.team/stops/9652"], ["http://irail.be/stations/NMBS/008863834", "https://tec.openplanner.team/stops/N261aab"], ["https://data.delijn.be/stops/300325", "https://tec.openplanner.team/stops/Balsnie2"], ["https://data.delijn.be/stops/400479", "https://tec.openplanner.team/stops/LSLdall1"], ["http://irail.be/stations/NMBS/008886587", "https://tec.openplanner.team/stops/H4re225a"], ["https://data.delijn.be/stops/300776", "https://mivb.openplanner.team/stops/1255"], ["https://data.delijn.be/stops/301811", "https://mivb.openplanner.team/stops/5776"], ["https://data.delijn.be/stops/303833", "https://mivb.openplanner.team/stops/2282"], ["https://data.delijn.be/stops/306816", "https://tec.openplanner.team/stops/Bbrlrph2"], ["https://data.delijn.be/stops/302438", "https://tec.openplanner.team/stops/Bsrgm102"], ["http://irail.be/stations/NMBS/008869088", "https://tec.openplanner.team/stops/X695aea"], ["http://irail.be/stations/NMBS/008822269", "https://data.delijn.be/stops/305274"], ["https://data.delijn.be/stops/306898", "https://tec.openplanner.team/stops/Bgoesch3"], ["http://irail.be/stations/NMBS/008811635", "https://tec.openplanner.team/stops/Blmlgar1"], ["https://data.delijn.be/stops/305913", "https://mivb.openplanner.team/stops/1314"], ["https://data.delijn.be/stops/407231", "https://tec.openplanner.team/stops/LORdtec*"], ["https://data.delijn.be/stops/303081", "https://tec.openplanner.team/stops/Bleunaa1"], ["https://data.delijn.be/stops/307859", "https://tec.openplanner.team/stops/Bhmmjco1"], ["https://data.delijn.be/stops/300012", "https://mivb.openplanner.team/stops/6857"], ["http://irail.be/stations/NMBS/008843240", "https://tec.openplanner.team/stops/LENindu2"], ["http://irail.be/stations/NMBS/008874567", "https://tec.openplanner.team/stops/Cfaplma2"], ["https://data.delijn.be/stops/304705", "https://mivb.openplanner.team/stops/0230234"], ["https://data.delijn.be/stops/300753", "https://mivb.openplanner.team/stops/2532"], ["http://irail.be/stations/NMBS/008719100", "https://tec.openplanner.team/stops/X681aeb"], ["https://data.delijn.be/stops/300979", "https://mivb.openplanner.team/stops/5765F"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N254aha"], ["https://data.delijn.be/stops/304011", "https://tec.openplanner.team/stops/Bovelge2"], ["https://data.delijn.be/stops/300994", "https://mivb.openplanner.team/stops/6202"], ["https://data.delijn.be/stops/305428", "https://mivb.openplanner.team/stops/5520F"], ["http://irail.be/stations/NMBS/008821832", "https://data.delijn.be/stops/104683"], ["http://irail.be/stations/NMBS/008814340", "https://data.delijn.be/stops/301952"], ["https://data.delijn.be/stops/301146", "https://mivb.openplanner.team/stops/4319"], ["https://data.delijn.be/stops/302807", "https://mivb.openplanner.team/stops/1661"], ["http://irail.be/stations/NMBS/008872579", "https://tec.openplanner.team/stops/Btilgar2"], ["https://data.delijn.be/stops/304204", "https://tec.openplanner.team/stops/Brsrfen2"], ["https://data.delijn.be/stops/305236", "https://tec.openplanner.team/stops/H1mk109b"], ["https://data.delijn.be/stops/300783", "https://mivb.openplanner.team/stops/7640211"], ["https://data.delijn.be/stops/301298", "https://mivb.openplanner.team/stops/1018"], ["https://data.delijn.be/stops/406318", "https://tec.openplanner.team/stops/LMapark3"], ["https://data.delijn.be/stops/400480", "https://tec.openplanner.team/stops/LGLcour4"], ["https://data.delijn.be/stops/308642", "https://mivb.openplanner.team/stops/9786"], ["http://irail.be/stations/NMBS/008893534", "https://data.delijn.be/stops/207246"], ["http://irail.be/stations/NMBS/008843331", "https://tec.openplanner.team/stops/LAMcloc1"], ["http://irail.be/stations/NMBS/008895620", "https://data.delijn.be/stops/307590"], ["https://data.delijn.be/stops/302898", "https://tec.openplanner.team/stops/Bhevl3l2"], ["https://data.delijn.be/stops/301107", "https://tec.openplanner.team/stops/Buccbas2"], ["https://data.delijn.be/stops/300758", "https://mivb.openplanner.team/stops/2220"], ["https://data.delijn.be/stops/300830", "https://mivb.openplanner.team/stops/7790456"], ["https://mivb.openplanner.team/stops/2709F", "https://tec.openplanner.team/stops/Buccdst1"], ["http://irail.be/stations/NMBS/008884640", "https://tec.openplanner.team/stops/H5gr135a"], ["https://mivb.openplanner.team/stops/1278", "https://tec.openplanner.team/stops/Bettcha3"], ["https://data.delijn.be/stops/301037", "https://mivb.openplanner.team/stops/3288"], ["http://irail.be/stations/NMBS/008821659", "https://data.delijn.be/stops/107106"], ["https://data.delijn.be/stops/408956", "https://tec.openplanner.team/stops/LWAwila1"], ["https://data.delijn.be/stops/304909", "https://tec.openplanner.team/stops/Bleugar1"], ["https://data.delijn.be/stops/301925", "https://mivb.openplanner.team/stops/2069"], ["https://data.delijn.be/stops/304432", "https://tec.openplanner.team/stops/Brsggea1"], ["http://irail.be/stations/NMBS/008831401", "https://data.delijn.be/stops/308251"], ["http://irail.be/stations/NMBS/008833670", "https://data.delijn.be/stops/405393"], ["https://data.delijn.be/stops/300938", "https://mivb.openplanner.team/stops/2571"], ["http://irail.be/stations/NMBS/008895489", "https://data.delijn.be/stops/206528"], ["http://irail.be/stations/NMBS/008821030", "https://data.delijn.be/stops/103900"], ["https://data.delijn.be/stops/301134", "https://tec.openplanner.team/stops/Bixlozo2"], ["https://data.delijn.be/stops/209820", "https://tec.openplanner.team/stops/H5rx138a"], ["https://data.delijn.be/stops/307695", "https://mivb.openplanner.team/stops/2147B"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1gh171a"], ["http://irail.be/stations/NMBS/008871662", "https://tec.openplanner.team/stops/H1so133b"], ["https://data.delijn.be/stops/300837", "https://mivb.openplanner.team/stops/5701"], ["https://data.delijn.be/stops/408885", "https://tec.openplanner.team/stops/LFMrijk2"], ["https://data.delijn.be/stops/300933", "https://mivb.openplanner.team/stops/2910"], ["http://irail.be/stations/NMBS/008829009", "https://data.delijn.be/stops/102193"], ["https://data.delijn.be/stops/301133", "https://tec.openplanner.team/stops/Buccdef2"], ["https://data.delijn.be/stops/503332", "https://tec.openplanner.team/stops/H4do108a"], ["http://irail.be/stations/NMBS/008811676", "https://tec.openplanner.team/stops/Bllngal1"], ["https://data.delijn.be/stops/400467", "https://tec.openplanner.team/stops/LEMeg--2"], ["https://data.delijn.be/stops/307827", "https://mivb.openplanner.team/stops/2071"], ["https://data.delijn.be/stops/410139", "https://tec.openplanner.team/stops/Llglimb2"], ["https://mivb.openplanner.team/stops/1370", "https://tec.openplanner.team/stops/Bbxlmid1"], ["https://mivb.openplanner.team/stops/7369", "https://tec.openplanner.team/stops/Bsgipha2"], ["https://data.delijn.be/stops/300919", "https://mivb.openplanner.team/stops/3129"], ["https://data.delijn.be/stops/407207", "https://tec.openplanner.team/stops/LHehacc2"], ["https://mivb.openplanner.team/stops/1961B", "https://tec.openplanner.team/stops/Bucceng2"], ["https://data.delijn.be/stops/304449", "https://tec.openplanner.team/stops/Brsgfso2"], ["https://data.delijn.be/stops/301106", "https://mivb.openplanner.team/stops/1449"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Cgzoctr2"], ["https://data.delijn.be/stops/301009", "https://mivb.openplanner.team/stops/1094F"], ["https://data.delijn.be/stops/504383", "https://tec.openplanner.team/stops/H4pl114a"], ["http://irail.be/stations/NMBS/008843430", "https://tec.openplanner.team/stops/NL72aab"], ["https://data.delijn.be/stops/305508", "https://mivb.openplanner.team/stops/9561"], ["https://data.delijn.be/stops/303586", "https://mivb.openplanner.team/stops/9702"], ["https://data.delijn.be/stops/305223", "https://tec.openplanner.team/stops/Bmrqpla2"], ["http://irail.be/stations/NMBS/008822251", "https://data.delijn.be/stops/308407"], ["http://irail.be/stations/NMBS/008896925", "https://data.delijn.be/stops/508288"], ["http://irail.be/stations/NMBS/008833266", "https://data.delijn.be/stops/307359"], ["http://irail.be/stations/NMBS/008871225", "https://tec.openplanner.team/stops/Cgofert1"], ["http://irail.be/stations/NMBS/008811205", "https://mivb.openplanner.team/stops/3556"], ["https://data.delijn.be/stops/405733", "https://tec.openplanner.team/stops/LrcarsT3"], ["https://mivb.openplanner.team/stops/1251", "https://tec.openplanner.team/stops/Buccdho1"], ["http://irail.be/stations/NMBS/008895125", "https://data.delijn.be/stops/206268"], ["https://data.delijn.be/stops/405714", "https://tec.openplanner.team/stops/Llgmart2"], ["https://data.delijn.be/stops/208173", "https://tec.openplanner.team/stops/H5fl101a"], ["https://data.delijn.be/stops/307645", "https://tec.openplanner.team/stops/Bbrlmez1"], ["https://data.delijn.be/stops/301043", "https://mivb.openplanner.team/stops/2261"], ["https://data.delijn.be/stops/408973", "https://tec.openplanner.team/stops/LWAlong5"], ["http://irail.be/stations/NMBS/008864949", "https://tec.openplanner.team/stops/N563ana"], ["http://irail.be/stations/NMBS/008865128", "https://tec.openplanner.team/stops/X725bca"], ["http://irail.be/stations/NMBS/008893583", "https://data.delijn.be/stops/206247"], ["http://irail.be/stations/NMBS/008821964", "https://data.delijn.be/stops/109156"], ["https://data.delijn.be/stops/405462", "https://tec.openplanner.team/stops/LWHwaas4"], ["http://irail.be/stations/NMBS/008832458", "https://data.delijn.be/stops/109262"], ["https://data.delijn.be/stops/207765", "https://tec.openplanner.team/stops/H5rx100b"], ["https://data.delijn.be/stops/305165", "https://mivb.openplanner.team/stops/0901"], ["http://irail.be/stations/NMBS/008811247", "https://data.delijn.be/stops/306556"], ["https://data.delijn.be/stops/509003", "https://tec.openplanner.team/stops/H4mo159b"], ["https://data.delijn.be/stops/303669", "https://mivb.openplanner.team/stops/1743"], ["http://irail.be/stations/NMBS/008874583", "https://tec.openplanner.team/stops/Crswaut2"], ["http://irail.be/stations/NMBS/008821246", "https://data.delijn.be/stops/107238"], ["http://irail.be/stations/NMBS/008883212", "https://tec.openplanner.team/stops/Becepri1"], ["http://irail.be/stations/NMBS/008891033", "https://data.delijn.be/stops/502767"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Cthrpoi1"], ["http://irail.be/stations/NMBS/008200100", "https://tec.openplanner.team/stops/X685apa"], ["http://irail.be/stations/NMBS/008871647", "https://tec.openplanner.team/stops/H1so142b"], ["https://data.delijn.be/stops/302423", "https://tec.openplanner.team/stops/Bsrgcur1"], ["http://irail.be/stations/NMBS/008811767", "https://tec.openplanner.team/stops/Barcsta1"], ["https://data.delijn.be/stops/308902", "https://mivb.openplanner.team/stops/1683F"], ["https://mivb.openplanner.team/stops/1764", "https://tec.openplanner.team/stops/Bettlha1"], ["https://data.delijn.be/stops/303112", "https://tec.openplanner.team/stops/Bleunaa1"], ["http://irail.be/stations/NMBS/008895471", "https://data.delijn.be/stops/206533"], ["https://data.delijn.be/stops/304876", "https://mivb.openplanner.team/stops/9575"], ["https://data.delijn.be/stops/302794", "https://mivb.openplanner.team/stops/2017"], ["https://data.delijn.be/stops/305348", "https://tec.openplanner.team/stops/Bwavwal3"], ["http://irail.be/stations/NMBS/008831039", "https://data.delijn.be/stops/400118"], ["http://irail.be/stations/NMBS/008841459", "https://tec.openplanner.team/stops/LNvrout2"], ["http://irail.be/stations/NMBS/008812047", "https://mivb.openplanner.team/stops/6800F"], ["https://data.delijn.be/stops/301927", "https://mivb.openplanner.team/stops/1043"], ["http://irail.be/stations/NMBS/008861333", "https://tec.openplanner.team/stops/N584aoa"], ["http://irail.be/stations/NMBS/008863818", "https://tec.openplanner.team/stops/N261acb"], ["http://irail.be/stations/NMBS/008863008", "https://tec.openplanner.team/stops/N501gra"], ["http://irail.be/stations/NMBS/008894672", "https://data.delijn.be/stops/214001"], ["https://data.delijn.be/stops/208180", "https://tec.openplanner.team/stops/H5el101b"], ["https://data.delijn.be/stops/305437", "https://tec.openplanner.team/stops/Bovesol2"], ["https://data.delijn.be/stops/301958", "https://mivb.openplanner.team/stops/7690106"], ["http://irail.be/stations/NMBS/008200128", "https://tec.openplanner.team/stops/LoUpete2"], ["http://irail.be/stations/NMBS/008895455", "https://data.delijn.be/stops/206534"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bsmgbsa2"], ["https://mivb.openplanner.team/stops/1870", "https://tec.openplanner.team/stops/Bettlha1"], ["https://data.delijn.be/stops/308855", "https://mivb.openplanner.team/stops/4257"], ["https://data.delijn.be/stops/405735", "https://tec.openplanner.team/stops/Lrcpaqu2"], ["https://data.delijn.be/stops/301230", "https://tec.openplanner.team/stops/Bhalrat1"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1hh110b"], ["https://mivb.openplanner.team/stops/3510", "https://tec.openplanner.team/stops/Bixlaca2"], ["http://irail.be/stations/NMBS/008863560", "https://tec.openplanner.team/stops/N540ana"], ["http://irail.be/stations/NMBS/008883220", "https://tec.openplanner.team/stops/Beclpma2"], ["http://irail.be/stations/NMBS/008866407", "https://tec.openplanner.team/stops/X608ala"], ["https://data.delijn.be/stops/307264", "https://tec.openplanner.team/stops/Bhalgar2"], ["http://irail.be/stations/NMBS/008841731", "https://tec.openplanner.team/stops/LGLeg--2"], ["http://irail.be/stations/NMBS/008833159", "https://data.delijn.be/stops/301682"], ["http://irail.be/stations/NMBS/008811270", "https://data.delijn.be/stops/302099"], ["https://data.delijn.be/stops/303122", "https://tec.openplanner.team/stops/Blemsta2"], ["https://data.delijn.be/stops/404668", "https://tec.openplanner.team/stops/LJUmc--2"], ["http://irail.be/stations/NMBS/008811742", "https://data.delijn.be/stops/302391"], ["http://irail.be/stations/NMBS/008881125", "https://tec.openplanner.team/stops/H1gh148a"], ["http://irail.be/stations/NMBS/008843323", "https://tec.openplanner.team/stops/LAmcorn1"], ["https://data.delijn.be/stops/300764", "https://mivb.openplanner.team/stops/3755"], ["https://data.delijn.be/stops/301422", "https://tec.openplanner.team/stops/Bptemch1"], ["https://data.delijn.be/stops/403726", "https://tec.openplanner.team/stops/LOesour2"], ["http://irail.be/stations/NMBS/008891132", "https://data.delijn.be/stops/200827"], ["https://data.delijn.be/stops/305918", "https://mivb.openplanner.team/stops/4599"], ["http://irail.be/stations/NMBS/008727100", "https://data.delijn.be/stops/505375"], ["https://data.delijn.be/stops/408862", "https://tec.openplanner.team/stops/LWRchem2"], ["http://irail.be/stations/NMBS/008895208", "https://data.delijn.be/stops/208125"], ["http://irail.be/stations/NMBS/008210014", "https://tec.openplanner.team/stops/X684aaa"], ["https://data.delijn.be/stops/307209", "https://tec.openplanner.team/stops/Bcbqa362"], ["https://mivb.openplanner.team/stops/4407", "https://tec.openplanner.team/stops/Baudvdu2"], ["http://irail.be/stations/NMBS/008844230", "https://tec.openplanner.team/stops/LNEcouc2"], ["http://irail.be/stations/NMBS/008873312", "https://tec.openplanner.team/stops/N137aja"], ["https://data.delijn.be/stops/408900", "https://tec.openplanner.team/stops/LFPkerk2"], ["https://data.delijn.be/stops/300925", "https://mivb.openplanner.team/stops/3272"], ["https://data.delijn.be/stops/303224", "https://mivb.openplanner.team/stops/3815"], ["http://irail.be/stations/NMBS/008824240", "https://data.delijn.be/stops/101132"], ["https://data.delijn.be/stops/301927", "https://mivb.openplanner.team/stops/9853"], ["https://data.delijn.be/stops/304445", "https://tec.openplanner.team/stops/Brsggar2"], ["https://data.delijn.be/stops/305261", "https://tec.openplanner.team/stops/Bspkbeu2"], ["http://irail.be/stations/NMBS/008843133", "https://tec.openplanner.team/stops/Lscbour1"], ["http://irail.be/stations/NMBS/008889045", "https://tec.openplanner.team/stops/H4bx167a"], ["https://data.delijn.be/stops/308676", "https://mivb.openplanner.team/stops/0521"], ["http://irail.be/stations/NMBS/008844255", "https://tec.openplanner.team/stops/LFrvesd2"], ["https://data.delijn.be/stops/503330", "https://tec.openplanner.team/stops/H4do108a"], ["https://data.delijn.be/stops/300815", "https://mivb.openplanner.team/stops/9056F"], ["http://irail.be/stations/NMBS/008811544", "https://tec.openplanner.team/stops/Brixape1"], ["http://irail.be/stations/NMBS/008895646", "https://data.delijn.be/stops/307327"], ["https://data.delijn.be/stops/300759", "https://mivb.openplanner.team/stops/1211B"], ["https://data.delijn.be/stops/300788", "https://mivb.openplanner.team/stops/3717"], ["http://irail.be/stations/NMBS/008866605", "https://tec.openplanner.team/stops/X615aab"], ["https://data.delijn.be/stops/301002", "https://mivb.openplanner.team/stops/6058"], ["http://irail.be/stations/NMBS/008881430", "https://tec.openplanner.team/stops/H1ha185b"], ["http://irail.be/stations/NMBS/008833274", "https://data.delijn.be/stops/307395"], ["http://irail.be/stations/NMBS/008881505", "https://tec.openplanner.team/stops/H1al106a"], ["http://irail.be/stations/NMBS/008895067", "https://data.delijn.be/stops/216021"], ["https://data.delijn.be/stops/301421", "https://tec.openplanner.team/stops/Bptemch2"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/Bgembhe1"], ["https://data.delijn.be/stops/300770", "https://mivb.openplanner.team/stops/3800"], ["https://data.delijn.be/stops/301107", "https://mivb.openplanner.team/stops/1975"], ["https://data.delijn.be/stops/408847", "https://tec.openplanner.team/stops/LRmhage8"], ["http://irail.be/stations/NMBS/008895000", "https://data.delijn.be/stops/204971"], ["https://data.delijn.be/stops/301002", "https://mivb.openplanner.team/stops/1567"], ["http://irail.be/stations/NMBS/008893815", "https://data.delijn.be/stops/203986"], ["http://irail.be/stations/NMBS/008842853", "https://tec.openplanner.team/stops/LVvboma2"], ["https://data.delijn.be/stops/209413", "https://tec.openplanner.team/stops/H5rx128b"], ["https://mivb.openplanner.team/stops/1942", "https://tec.openplanner.team/stops/Buccdst1"], ["https://mivb.openplanner.team/stops/5064", "https://tec.openplanner.team/stops/Bsgimca1"], ["https://data.delijn.be/stops/207798", "https://tec.openplanner.team/stops/H5rx105a"], ["http://irail.be/stations/NMBS/008873122", "https://tec.openplanner.team/stops/N101aob"], ["https://mivb.openplanner.team/stops/3625B", "https://tec.openplanner.team/stops/Bsgimca1"], ["https://data.delijn.be/stops/400485", "https://tec.openplanner.team/stops/LRGgend3"], ["https://data.delijn.be/stops/300836", "https://mivb.openplanner.team/stops/9056F"], ["http://irail.be/stations/NMBS/008864337", "https://tec.openplanner.team/stops/X994akb"], ["http://irail.be/stations/NMBS/008200940", "https://tec.openplanner.team/stops/X615ada"], ["http://irail.be/stations/NMBS/008884566", "https://tec.openplanner.team/stops/H1je225b"], ["https://data.delijn.be/stops/207761", "https://tec.openplanner.team/stops/H5rx149a"], ["https://mivb.openplanner.team/stops/2718", "https://tec.openplanner.team/stops/Buccvbe2"], ["https://data.delijn.be/stops/300786", "https://mivb.openplanner.team/stops/1259"], ["https://data.delijn.be/stops/404726", "https://tec.openplanner.team/stops/LaAbush*"], ["https://data.delijn.be/stops/308644", "https://tec.openplanner.team/stops/Boveklo1"], ["http://irail.be/stations/NMBS/008811163", "https://mivb.openplanner.team/stops/5042"], ["http://irail.be/stations/NMBS/008841731", "https://tec.openplanner.team/stops/LGLchap1"], ["http://irail.be/stations/NMBS/008863438", "https://tec.openplanner.team/stops/N506bha"], ["https://data.delijn.be/stops/407754", "https://tec.openplanner.team/stops/LWOsudr2"], ["https://data.delijn.be/stops/406565", "https://tec.openplanner.team/stops/LLxconj2"], ["http://irail.be/stations/NMBS/008832375", "https://data.delijn.be/stops/403073"], ["https://data.delijn.be/stops/301415", "https://tec.openplanner.team/stops/H1en104d"], ["http://irail.be/stations/NMBS/008874054", "https://tec.openplanner.team/stops/Ccipech1"], ["https://data.delijn.be/stops/303226", "https://mivb.openplanner.team/stops/2664"], ["https://data.delijn.be/stops/300806", "https://mivb.openplanner.team/stops/2257B"], ["https://data.delijn.be/stops/307635", "https://mivb.openplanner.team/stops/1937"], ["https://data.delijn.be/stops/302406", "https://mivb.openplanner.team/stops/3610F"], ["http://irail.be/stations/NMBS/008874583", "https://tec.openplanner.team/stops/N543cna"], ["https://data.delijn.be/stops/301020", "https://mivb.openplanner.team/stops/4059"], ["https://data.delijn.be/stops/406298", "https://tec.openplanner.team/stops/Blanmde2"], ["http://irail.be/stations/NMBS/008871381", "https://tec.openplanner.team/stops/H2go117b"], ["http://irail.be/stations/NMBS/008883113", "https://tec.openplanner.team/stops/H3so163a"], ["https://data.delijn.be/stops/206784", "https://tec.openplanner.team/stops/H1gy112a"], ["http://irail.be/stations/NMBS/008884889", "https://tec.openplanner.team/stops/H4ca122a"], ["http://irail.be/stations/NMBS/008886587", "https://tec.openplanner.team/stops/H4re226a"], ["https://data.delijn.be/stops/409249", "https://tec.openplanner.team/stops/LEMeg--2"], ["http://irail.be/stations/NMBS/008814142", "https://mivb.openplanner.team/stops/1953"], ["https://data.delijn.be/stops/208743", "https://tec.openplanner.team/stops/H4am100b"], ["http://irail.be/stations/NMBS/008822111", "https://data.delijn.be/stops/303359"], ["https://data.delijn.be/stops/307807", "https://mivb.openplanner.team/stops/1202"], ["https://data.delijn.be/stops/305918", "https://mivb.openplanner.team/stops/1116"], ["http://irail.be/stations/NMBS/008863404", "https://tec.openplanner.team/stops/N506azb"], ["https://data.delijn.be/stops/305228", "https://mivb.openplanner.team/stops/9605"], ["http://irail.be/stations/NMBS/008891157", "https://data.delijn.be/stops/200848"], ["https://data.delijn.be/stops/208763", "https://tec.openplanner.team/stops/H5rx112a"], ["https://data.delijn.be/stops/300815", "https://mivb.openplanner.team/stops/4265"], ["https://data.delijn.be/stops/300778", "https://mivb.openplanner.team/stops/8652"], ["http://irail.be/stations/NMBS/008812237", "https://data.delijn.be/stops/301380"], ["https://data.delijn.be/stops/404687", "https://tec.openplanner.team/stops/LPAbour2"], ["https://data.delijn.be/stops/307921", "https://mivb.openplanner.team/stops/2873"], ["https://data.delijn.be/stops/307877", "https://mivb.openplanner.team/stops/1552"], ["http://irail.be/stations/NMBS/008811916", "https://data.delijn.be/stops/303650"], ["https://data.delijn.be/stops/305149", "https://tec.openplanner.team/stops/Btieast1"], ["https://data.delijn.be/stops/218019", "https://tec.openplanner.team/stops/H5rx132a"], ["https://data.delijn.be/stops/408921", "https://tec.openplanner.team/stops/LTEkerk1"], ["https://data.delijn.be/stops/301007", "https://mivb.openplanner.team/stops/4156"], ["https://data.delijn.be/stops/404659", "https://tec.openplanner.team/stops/LJUmate1"], ["http://irail.be/stations/NMBS/008400131", "https://data.delijn.be/stops/101748"], ["http://irail.be/stations/NMBS/008815016", "https://mivb.openplanner.team/stops/2576"], ["https://data.delijn.be/stops/208405", "https://tec.openplanner.team/stops/H5rx112a"], ["https://data.delijn.be/stops/305522", "https://mivb.openplanner.team/stops/1375"], ["https://data.delijn.be/stops/400458", "https://tec.openplanner.team/stops/LWOwonc2"], ["https://data.delijn.be/stops/304642", "https://mivb.openplanner.team/stops/1008"], ["https://data.delijn.be/stops/208181", "https://tec.openplanner.team/stops/H5el105a"], ["https://data.delijn.be/stops/400456", "https://tec.openplanner.team/stops/LEBmoul2"], ["https://mivb.openplanner.team/stops/1731", "https://tec.openplanner.team/stops/Baudwav1"], ["http://irail.be/stations/NMBS/008824240", "https://data.delijn.be/stops/105987"], ["https://data.delijn.be/stops/305910", "https://mivb.openplanner.team/stops/9729"], ["https://data.delijn.be/stops/301408", "https://tec.openplanner.team/stops/H1en105a"], ["https://data.delijn.be/stops/410136", "https://tec.openplanner.team/stops/Lvomoul2"], ["https://data.delijn.be/stops/302422", "https://tec.openplanner.team/stops/Bsrgcur2"], ["https://data.delijn.be/stops/300826", "https://mivb.openplanner.team/stops/2209"], ["https://data.delijn.be/stops/307636", "https://mivb.openplanner.team/stops/1949"], ["https://data.delijn.be/stops/301131", "https://tec.openplanner.team/stops/Buccdef2"], ["https://data.delijn.be/stops/302450", "https://tec.openplanner.team/stops/Bzluvil2"], ["http://irail.be/stations/NMBS/008841434", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/307726", "https://tec.openplanner.team/stops/Bbchdra1"], ["https://mivb.openplanner.team/stops/1385", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://mivb.openplanner.team/stops/1712", "https://tec.openplanner.team/stops/Bettlha2"], ["https://data.delijn.be/stops/505396", "https://tec.openplanner.team/stops/H4or114b"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N552aba"], ["http://irail.be/stations/NMBS/008821451", "https://data.delijn.be/stops/104287"], ["http://irail.be/stations/NMBS/008822814", "https://data.delijn.be/stops/106012"], ["http://irail.be/stations/NMBS/008822426", "https://data.delijn.be/stops/305826"], ["https://data.delijn.be/stops/307970", "https://tec.openplanner.team/stops/Bwavzno2"], ["http://irail.be/stations/NMBS/008821006", "https://data.delijn.be/stops/103378"], ["https://data.delijn.be/stops/207772", "https://tec.openplanner.team/stops/H5rx115a"], ["http://irail.be/stations/NMBS/008871712", "https://tec.openplanner.team/stops/Clbgare1"], ["https://data.delijn.be/stops/301021", "https://mivb.openplanner.team/stops/5168"], ["http://irail.be/stations/NMBS/008832615", "https://data.delijn.be/stops/406951"], ["https://data.delijn.be/stops/307922", "https://mivb.openplanner.team/stops/5403"], ["https://data.delijn.be/stops/408821", "https://tec.openplanner.team/stops/LMgbatt2"], ["https://data.delijn.be/stops/410355", "https://tec.openplanner.team/stops/Llgcadr3"], ["http://irail.be/stations/NMBS/008841400", "https://data.delijn.be/stops/408973"], ["http://irail.be/stations/NMBS/008864824", "https://tec.openplanner.team/stops/N211bba"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/304547"], ["http://irail.be/stations/NMBS/008821535", "https://data.delijn.be/stops/105243"], ["https://mivb.openplanner.team/stops/6931B", "https://tec.openplanner.team/stops/Buccptj1"], ["https://data.delijn.be/stops/503678", "https://tec.openplanner.team/stops/H4ef109a"], ["https://mivb.openplanner.team/stops/5212", "https://tec.openplanner.team/stops/Bixllep1"], ["https://data.delijn.be/stops/504294", "https://tec.openplanner.team/stops/H4mo153d"], ["https://data.delijn.be/stops/503775", "https://tec.openplanner.team/stops/H4eh101b"], ["https://data.delijn.be/stops/303626", "https://tec.openplanner.team/stops/Bcbqcim2"], ["http://irail.be/stations/NMBS/008842705", "https://tec.openplanner.team/stops/LCPgare1"], ["https://data.delijn.be/stops/408848", "https://tec.openplanner.team/stops/LRmrode1"], ["https://data.delijn.be/stops/304316", "https://mivb.openplanner.team/stops/2991"], ["https://data.delijn.be/stops/301133", "https://tec.openplanner.team/stops/Buccvch1"], ["http://irail.be/stations/NMBS/008884004", "https://tec.openplanner.team/stops/H1ho131a"], ["http://irail.be/stations/NMBS/008895455", "https://data.delijn.be/stops/206648"], ["http://irail.be/stations/NMBS/008814472", "https://mivb.openplanner.team/stops/4359"], ["http://irail.be/stations/NMBS/008874716", "https://tec.openplanner.team/stops/N543azb"], ["https://data.delijn.be/stops/405448", "https://tec.openplanner.team/stops/LWHwaas1"], ["http://irail.be/stations/NMBS/008895729", "https://data.delijn.be/stops/200974"], ["http://irail.be/stations/NMBS/008843349", "https://tec.openplanner.team/stops/LAMhaut2"], ["http://irail.be/stations/NMBS/008400131", "https://data.delijn.be/stops/102753"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bcsempl2"], ["http://irail.be/stations/NMBS/008893567", "https://data.delijn.be/stops/202944"], ["https://data.delijn.be/stops/304863", "https://tec.openplanner.team/stops/Bbrlrph2"], ["https://data.delijn.be/stops/305928", "https://mivb.openplanner.team/stops/2813"], ["https://data.delijn.be/stops/405705", "https://tec.openplanner.team/stops/LlgLAMB3"], ["http://irail.be/stations/NMBS/008894755", "https://data.delijn.be/stops/205288"], ["https://data.delijn.be/stops/305434", "https://mivb.openplanner.team/stops/5521"], ["https://mivb.openplanner.team/stops/1598", "https://tec.openplanner.team/stops/Baudtri1"], ["https://data.delijn.be/stops/300824", "https://mivb.openplanner.team/stops/0440449"], ["https://mivb.openplanner.team/stops/2290B", "https://tec.openplanner.team/stops/Baudhan2"], ["http://irail.be/stations/NMBS/008843141", "https://tec.openplanner.team/stops/Ljecoqu1"], ["https://data.delijn.be/stops/209191", "https://tec.openplanner.team/stops/H5rx131a"], ["http://irail.be/stations/NMBS/008863156", "https://tec.openplanner.team/stops/N539atb"], ["https://data.delijn.be/stops/307279", "https://tec.openplanner.team/stops/Bhalh312"], ["https://data.delijn.be/stops/300821", "https://mivb.openplanner.team/stops/7820153"], ["https://data.delijn.be/stops/306902", "https://tec.openplanner.team/stops/Bgoestu1"], ["https://data.delijn.be/stops/401415", "https://mivb.openplanner.team/stops/5266F"], ["https://data.delijn.be/stops/303652", "https://mivb.openplanner.team/stops/9551"], ["http://irail.be/stations/NMBS/008833274", "https://data.delijn.be/stops/304364"], ["http://irail.be/stations/NMBS/008863503", "https://tec.openplanner.team/stops/N232bna"], ["http://irail.be/stations/NMBS/008863545", "https://tec.openplanner.team/stops/N229ajb"], ["https://data.delijn.be/stops/305234", "https://mivb.openplanner.team/stops/9756"], ["http://irail.be/stations/NMBS/008863834", "https://tec.openplanner.team/stops/N337aia"], ["http://irail.be/stations/NMBS/008891652", "https://data.delijn.be/stops/506148"], ["https://data.delijn.be/stops/305387", "https://mivb.openplanner.team/stops/1687F"], ["https://mivb.openplanner.team/stops/4856B", "https://tec.openplanner.team/stops/Buccobs1"], ["https://data.delijn.be/stops/406565", "https://tec.openplanner.team/stops/LWOwonc1"], ["https://data.delijn.be/stops/301085", "https://mivb.openplanner.team/stops/0120426"], ["https://data.delijn.be/stops/305889", "https://mivb.openplanner.team/stops/9608"], ["https://data.delijn.be/stops/301086", "https://mivb.openplanner.team/stops/1043"], ["https://data.delijn.be/stops/306123", "https://tec.openplanner.team/stops/Bhaltre1"], ["http://irail.be/stations/NMBS/008894508", "https://data.delijn.be/stops/204364"], ["https://data.delijn.be/stops/306386", "https://tec.openplanner.team/stops/Bhalrat2"], ["https://mivb.openplanner.team/stops/8341", "https://tec.openplanner.team/stops/Bsgicfo1"], ["https://mivb.openplanner.team/stops/0230434", "https://tec.openplanner.team/stops/Bauddel2"], ["https://data.delijn.be/stops/408924", "https://tec.openplanner.team/stops/LTEkerk1"], ["http://irail.be/stations/NMBS/008895737", "https://data.delijn.be/stops/206849"], ["https://data.delijn.be/stops/303632", "https://mivb.openplanner.team/stops/6656"], ["http://irail.be/stations/NMBS/008894714", "https://data.delijn.be/stops/205049"], ["http://irail.be/stations/NMBS/008883006", "https://tec.openplanner.team/stops/Bbcogar2"], ["https://data.delijn.be/stops/509815", "https://tec.openplanner.team/stops/H4po127a"], ["http://irail.be/stations/NMBS/008883436", "https://tec.openplanner.team/stops/H1sy143a"], ["http://irail.be/stations/NMBS/008891124", "https://data.delijn.be/stops/507072"], ["https://data.delijn.be/stops/508679", "https://tec.openplanner.team/stops/H4ae100a"], ["http://irail.be/stations/NMBS/008892908", "https://data.delijn.be/stops/208191"], ["https://data.delijn.be/stops/302831", "https://tec.openplanner.team/stops/LLaover4"], ["http://irail.be/stations/NMBS/008814449", "https://mivb.openplanner.team/stops/1742"], ["https://data.delijn.be/stops/408884", "https://tec.openplanner.team/stops/LFCotte1"], ["https://data.delijn.be/stops/305298", "https://tec.openplanner.team/stops/Bspkker1"], ["https://data.delijn.be/stops/300832", "https://mivb.openplanner.team/stops/2860"], ["https://data.delijn.be/stops/302848", "https://tec.openplanner.team/stops/Bwaak101"], ["https://data.delijn.be/stops/300973", "https://tec.openplanner.team/stops/Baudvdr1"], ["https://data.delijn.be/stops/307695", "https://tec.openplanner.team/stops/Brsgsan1"], ["https://data.delijn.be/stops/405345", "https://tec.openplanner.team/stops/Bezeksj3"], ["https://data.delijn.be/stops/300974", "https://mivb.openplanner.team/stops/5427"], ["http://irail.be/stations/NMBS/008824232", "https://data.delijn.be/stops/105981"], ["http://irail.be/stations/NMBS/008883311", "https://tec.openplanner.team/stops/Bengvma2"], ["https://mivb.openplanner.team/stops/1919", "https://tec.openplanner.team/stops/Buccchu1"], ["http://irail.be/stations/NMBS/008879004", "https://tec.openplanner.team/stops/H1gg117b"], ["https://data.delijn.be/stops/404670", "https://tec.openplanner.team/stops/LJUxhen1"], ["https://data.delijn.be/stops/404662", "https://tec.openplanner.team/stops/LPAmc--1"], ["https://data.delijn.be/stops/302895", "https://tec.openplanner.team/stops/Bhevjac2"], ["http://irail.be/stations/NMBS/008200516", "https://tec.openplanner.team/stops/X687aba"], ["https://data.delijn.be/stops/410355", "https://tec.openplanner.team/stops/Llghoch4"], ["http://irail.be/stations/NMBS/008811429", "https://mivb.openplanner.team/stops/2107"], ["https://data.delijn.be/stops/302450", "https://tec.openplanner.team/stops/Bsjgegl1"], ["https://data.delijn.be/stops/508677", "https://tec.openplanner.team/stops/H4ef109b"], ["https://data.delijn.be/stops/208402", "https://tec.openplanner.team/stops/H5rx110a"], ["http://irail.be/stations/NMBS/008895067", "https://data.delijn.be/stops/206936"], ["https://data.delijn.be/stops/301017", "https://mivb.openplanner.team/stops/1307"], ["https://data.delijn.be/stops/406272", "https://tec.openplanner.team/stops/LMastat4"], ["http://irail.be/stations/NMBS/008821048", "https://data.delijn.be/stops/109880"], ["http://irail.be/stations/NMBS/008811007", "https://mivb.openplanner.team/stops/3008"], ["http://irail.be/stations/NMBS/008831401", "https://data.delijn.be/stops/305950"], ["http://irail.be/stations/NMBS/008872553", "https://tec.openplanner.team/stops/Btilmon1"], ["http://irail.be/stations/NMBS/008812062", "https://data.delijn.be/stops/300302"], ["http://irail.be/stations/NMBS/008811288", "https://data.delijn.be/stops/307819"], ["https://data.delijn.be/stops/305272", "https://tec.openplanner.team/stops/H1mk111b"], ["https://data.delijn.be/stops/305225", "https://mivb.openplanner.team/stops/1121"], ["http://irail.be/stations/NMBS/008814266", "https://tec.openplanner.team/stops/Bwatfia1"], ["https://data.delijn.be/stops/404674", "https://tec.openplanner.team/stops/LVSslin4"], ["https://data.delijn.be/stops/302871", "https://tec.openplanner.team/stops/Buccvoi3"], ["https://data.delijn.be/stops/504236", "https://tec.openplanner.team/stops/H4co104a"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/300356"], ["https://data.delijn.be/stops/308814", "https://tec.openplanner.team/stops/Bjodsme2"], ["http://irail.be/stations/NMBS/008831765", "https://data.delijn.be/stops/410334"], ["https://data.delijn.be/stops/405735", "https://tec.openplanner.team/stops/Lrclant1"], ["https://data.delijn.be/stops/308673", "https://mivb.openplanner.team/stops/1018"], ["http://irail.be/stations/NMBS/008884855", "https://tec.openplanner.team/stops/H5pe127a"], ["http://irail.be/stations/NMBS/008873007", "https://tec.openplanner.team/stops/N106apa"], ["http://irail.be/stations/NMBS/008895778", "https://data.delijn.be/stops/206983"], ["http://irail.be/stations/NMBS/008886546", "https://data.delijn.be/stops/208541"], ["https://data.delijn.be/stops/301944", "https://mivb.openplanner.team/stops/5166"], ["https://data.delijn.be/stops/400474", "https://tec.openplanner.team/stops/LGLobor1"], ["http://irail.be/stations/NMBS/008896149", "https://data.delijn.be/stops/510028"], ["https://data.delijn.be/stops/410319", "https://tec.openplanner.team/stops/LPlchpl2"], ["http://irail.be/stations/NMBS/008841673", "https://tec.openplanner.team/stops/Lligare1"], ["http://irail.be/stations/NMBS/008822533", "https://data.delijn.be/stops/301863"], ["https://data.delijn.be/stops/207791", "https://tec.openplanner.team/stops/H5rx147a"], ["https://data.delijn.be/stops/304107", "https://tec.openplanner.team/stops/Bovevri2"], ["https://data.delijn.be/stops/302872", "https://mivb.openplanner.team/stops/2717"], ["https://data.delijn.be/stops/305271", "https://mivb.openplanner.team/stops/9783"], ["http://irail.be/stations/NMBS/008812237", "https://data.delijn.be/stops/301306"], ["http://irail.be/stations/NMBS/008843240", "https://tec.openplanner.team/stops/LENsent1"], ["https://data.delijn.be/stops/302407", "https://mivb.openplanner.team/stops/8661"], ["http://irail.be/stations/NMBS/008833209", "https://data.delijn.be/stops/300066"], ["https://mivb.openplanner.team/stops/3131", "https://tec.openplanner.team/stops/Bixleix1"], ["http://irail.be/stations/NMBS/008861515", "https://tec.openplanner.team/stops/Bernrar1"], ["https://data.delijn.be/stops/302876", "https://tec.openplanner.team/stops/Buccron2"], ["http://irail.be/stations/NMBS/008400219", "https://tec.openplanner.team/stops/LLAeg--1"], ["https://data.delijn.be/stops/300938", "https://mivb.openplanner.team/stops/1313"], ["https://data.delijn.be/stops/307601", "https://tec.openplanner.team/stops/Bspkbeu1"], ["http://irail.be/stations/NMBS/008812260", "https://data.delijn.be/stops/306703"], ["https://data.delijn.be/stops/302427", "https://tec.openplanner.team/stops/Bzlucam1"], ["https://data.delijn.be/stops/408969", "https://tec.openplanner.team/stops/LWAchpg2"], ["https://data.delijn.be/stops/408865", "https://tec.openplanner.team/stops/LWRcruc1"], ["http://irail.be/stations/NMBS/008874583", "https://tec.openplanner.team/stops/Crsaise4"], ["http://irail.be/stations/NMBS/008883436", "https://tec.openplanner.team/stops/H1sy143d"], ["https://data.delijn.be/stops/300996", "https://mivb.openplanner.team/stops/2249"], ["https://mivb.openplanner.team/stops/5655", "https://tec.openplanner.team/stops/Bkrabhu2"], ["https://data.delijn.be/stops/408901", "https://tec.openplanner.team/stops/LFPkerk2"], ["https://data.delijn.be/stops/304039", "https://tec.openplanner.team/stops/Boveklo2"], ["https://data.delijn.be/stops/507748", "https://tec.openplanner.team/stops/H4ae102a"], ["https://data.delijn.be/stops/307203", "https://tec.openplanner.team/stops/Btubcal1"], ["https://data.delijn.be/stops/306067", "https://tec.openplanner.team/stops/Blempuc2"], ["http://irail.be/stations/NMBS/008871217", "https://tec.openplanner.team/stops/Croegli1"], ["https://data.delijn.be/stops/300775", "https://mivb.openplanner.team/stops/2534"], ["https://data.delijn.be/stops/302792", "https://mivb.openplanner.team/stops/9551"], ["https://data.delijn.be/stops/302437", "https://tec.openplanner.team/stops/Bsrgegl1"], ["https://data.delijn.be/stops/307324", "https://mivb.openplanner.team/stops/1018"], ["https://data.delijn.be/stops/301015", "https://mivb.openplanner.team/stops/1199F"], ["http://irail.be/stations/NMBS/008711184", "https://tec.openplanner.team/stops/Cmqchap2"], ["https://data.delijn.be/stops/304141", "https://tec.openplanner.team/stops/Bbghpln1"], ["https://data.delijn.be/stops/504294", "https://tec.openplanner.team/stops/H4mo147a"], ["https://data.delijn.be/stops/407201", "https://tec.openplanner.team/stops/LHexhav1"], ["http://irail.be/stations/NMBS/008894201", "https://data.delijn.be/stops/203109"], ["http://irail.be/stations/NMBS/008822517", "https://data.delijn.be/stops/301848"], ["http://irail.be/stations/NMBS/008874724", "https://tec.openplanner.team/stops/N534caa"], ["https://data.delijn.be/stops/306063", "https://tec.openplanner.team/stops/Brsggea2"], ["https://data.delijn.be/stops/300830", "https://mivb.openplanner.team/stops/2809"], ["https://data.delijn.be/stops/301117", "https://tec.openplanner.team/stops/Buccchu2"], ["https://data.delijn.be/stops/307110", "https://tec.openplanner.team/stops/Bjodcad1"], ["http://irail.be/stations/NMBS/008864816", "https://tec.openplanner.team/stops/N211aib"], ["http://irail.be/stations/NMBS/008894235", "https://data.delijn.be/stops/204166"], ["https://data.delijn.be/stops/208764", "https://tec.openplanner.team/stops/H5rx147a"], ["http://irail.be/stations/NMBS/008863362", "https://tec.openplanner.team/stops/N538asc"], ["http://irail.be/stations/NMBS/008728600", "https://tec.openplanner.team/stops/H4ho120a"], ["https://data.delijn.be/stops/305310", "https://mivb.openplanner.team/stops/9788"], ["http://irail.be/stations/NMBS/008892056", "https://data.delijn.be/stops/208645"], ["https://data.delijn.be/stops/307972", "https://tec.openplanner.team/stops/Bwavlep1"], ["https://data.delijn.be/stops/404677", "https://tec.openplanner.team/stops/Lvovent2"], ["http://irail.be/stations/NMBS/008892031", "https://data.delijn.be/stops/201195"], ["https://data.delijn.be/stops/509316", "https://tec.openplanner.team/stops/H4mo159b"], ["https://data.delijn.be/stops/300783", "https://mivb.openplanner.team/stops/3610F"], ["https://data.delijn.be/stops/302426", "https://tec.openplanner.team/stops/Bjodrga2"], ["http://irail.be/stations/NMBS/008814332", "https://data.delijn.be/stops/307201"], ["https://data.delijn.be/stops/303567", "https://mivb.openplanner.team/stops/3334G"], ["http://irail.be/stations/NMBS/008821857", "https://data.delijn.be/stops/104646"], ["http://irail.be/stations/NMBS/008883220", "https://tec.openplanner.team/stops/H2me113b"], ["http://irail.be/stations/NMBS/008811429", "https://mivb.openplanner.team/stops/4358"], ["https://data.delijn.be/stops/303652", "https://tec.openplanner.team/stops/Bovelge1"], ["http://irail.be/stations/NMBS/008884327", "https://tec.openplanner.team/stops/H1hi123b"], ["http://irail.be/stations/NMBS/008813003", "https://mivb.openplanner.team/stops/3347"], ["https://data.delijn.be/stops/307820", "https://mivb.openplanner.team/stops/2015"], ["https://data.delijn.be/stops/301032", "https://mivb.openplanner.team/stops/2965"], ["http://irail.be/stations/NMBS/008861432", "https://tec.openplanner.team/stops/N526aab"], ["https://data.delijn.be/stops/404681", "https://tec.openplanner.team/stops/LWieg--*"], ["https://data.delijn.be/stops/300832", "https://mivb.openplanner.team/stops/2545"], ["https://data.delijn.be/stops/307142", "https://mivb.openplanner.team/stops/3800"], ["http://irail.be/stations/NMBS/008865128", "https://tec.openplanner.team/stops/X725aea"], ["http://irail.be/stations/NMBS/008822533", "https://data.delijn.be/stops/305465"], ["https://data.delijn.be/stops/300876", "https://mivb.openplanner.team/stops/1290"], ["https://data.delijn.be/stops/304546", "https://mivb.openplanner.team/stops/9651"], ["http://irail.be/stations/NMBS/008832458", "https://data.delijn.be/stops/109246"], ["https://data.delijn.be/stops/304548", "https://mivb.openplanner.team/stops/9654"], ["https://data.delijn.be/stops/301066", "https://mivb.openplanner.team/stops/3225"], ["https://data.delijn.be/stops/400484", "https://tec.openplanner.team/stops/LRGgend2"], ["http://irail.be/stations/NMBS/008864345", "https://tec.openplanner.team/stops/X902ada"], ["https://data.delijn.be/stops/301956", "https://mivb.openplanner.team/stops/7690106"], ["http://irail.be/stations/NMBS/008831088", "https://data.delijn.be/stops/403975"], ["http://irail.be/stations/NMBS/008864352", "https://tec.openplanner.team/stops/X999aib"], ["https://data.delijn.be/stops/301115", "https://mivb.openplanner.team/stops/5211"], ["http://irail.be/stations/NMBS/008843166", "https://tec.openplanner.team/stops/Lfhdonn1"], ["http://irail.be/stations/NMBS/008841202", "https://tec.openplanner.team/stops/Llojeme3"], ["https://data.delijn.be/stops/303581", "https://mivb.openplanner.team/stops/9727"], ["https://mivb.openplanner.team/stops/1937", "https://tec.openplanner.team/stops/Bucccre2"], ["https://data.delijn.be/stops/308733", "https://tec.openplanner.team/stops/Bgoesch1"], ["https://data.delijn.be/stops/305236", "https://tec.openplanner.team/stops/H1mk117b"], ["https://data.delijn.be/stops/300337", "https://tec.openplanner.team/stops/Balsnie1"], ["http://irail.be/stations/NMBS/008883121", "https://tec.openplanner.team/stops/H1ca106a"], ["https://data.delijn.be/stops/305510", "https://mivb.openplanner.team/stops/1635"], ["https://data.delijn.be/stops/301978", "https://tec.openplanner.team/stops/Bhaldbo1"], ["https://data.delijn.be/stops/301003", "https://mivb.openplanner.team/stops/5303"], ["https://data.delijn.be/stops/400450", "https://tec.openplanner.team/stops/LBPauto2"], ["https://mivb.openplanner.team/stops/3570", "https://tec.openplanner.team/stops/Bixleix1"], ["https://data.delijn.be/stops/302822", "https://tec.openplanner.team/stops/Blhugar1"], ["https://data.delijn.be/stops/307215", "https://tec.openplanner.team/stops/Bhalcbr2"], ["http://irail.be/stations/NMBS/008832409", "https://data.delijn.be/stops/107606"], ["https://data.delijn.be/stops/207758", "https://tec.openplanner.team/stops/H5rx121b"], ["http://irail.be/stations/NMBS/008842754", "https://tec.openplanner.team/stops/LAYpl--1"], ["http://irail.be/stations/NMBS/008892403", "https://data.delijn.be/stops/503342"], ["https://data.delijn.be/stops/307461", "https://tec.openplanner.team/stops/Bsgicfo1"], ["https://data.delijn.be/stops/504310", "https://tec.openplanner.team/stops/H4mo207b"], ["http://irail.be/stations/NMBS/008849064", "https://tec.openplanner.team/stops/LLxcite1"], ["https://data.delijn.be/stops/408831", "https://tec.openplanner.team/stops/LMgberw1"], ["https://data.delijn.be/stops/405335", "https://tec.openplanner.team/stops/Bneeace1"], ["https://data.delijn.be/stops/303226", "https://mivb.openplanner.team/stops/9686"], ["https://data.delijn.be/stops/408822", "https://tec.openplanner.team/stops/LVImons2"], ["http://irail.be/stations/NMBS/008892106", "https://data.delijn.be/stops/203403"], ["https://data.delijn.be/stops/302406", "https://mivb.openplanner.team/stops/8661"], ["http://irail.be/stations/NMBS/008863354", "https://tec.openplanner.team/stops/N501mvc"], ["https://data.delijn.be/stops/306063", "https://tec.openplanner.team/stops/Brsga811"], ["http://irail.be/stations/NMBS/008814241", "https://tec.openplanner.team/stops/Blilgar1"], ["http://irail.be/stations/NMBS/008881315", "https://tec.openplanner.team/stops/H1ms942a"], ["https://data.delijn.be/stops/300565", "https://tec.openplanner.team/stops/Bbeamon2"], ["https://data.delijn.be/stops/400452", "https://tec.openplanner.team/stops/LBPeg--2"], ["https://data.delijn.be/stops/402022", "https://tec.openplanner.team/stops/LFMkrut1"], ["http://irail.be/stations/NMBS/008821071", "https://data.delijn.be/stops/109060"], ["http://irail.be/stations/NMBS/008865003", "https://tec.openplanner.team/stops/X801bdb"], ["https://data.delijn.be/stops/300730", "https://tec.openplanner.team/stops/Bbealon4"], ["http://irail.be/stations/NMBS/008895638", "https://data.delijn.be/stops/307304"], ["https://data.delijn.be/stops/302924", "https://tec.openplanner.team/stops/Bhevgar2"], ["http://irail.be/stations/NMBS/008891157", "https://data.delijn.be/stops/209654"], ["https://data.delijn.be/stops/306814", "https://mivb.openplanner.team/stops/3100"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1et101b"], ["https://data.delijn.be/stops/408890", "https://tec.openplanner.team/stops/LFMveur1"], ["https://data.delijn.be/stops/307635", "https://mivb.openplanner.team/stops/1965"], ["https://data.delijn.be/stops/300754", "https://mivb.openplanner.team/stops/6811"], ["https://data.delijn.be/stops/301927", "https://mivb.openplanner.team/stops/2043"], ["https://data.delijn.be/stops/301146", "https://tec.openplanner.team/stops/Buccpes1"], ["http://irail.be/stations/NMBS/008896305", "https://data.delijn.be/stops/503572"], ["http://irail.be/stations/NMBS/008871712", "https://tec.openplanner.team/stops/H1bi101b"], ["https://data.delijn.be/stops/301054", "https://mivb.openplanner.team/stops/8461"], ["https://data.delijn.be/stops/306091", "https://mivb.openplanner.team/stops/9780"], ["http://irail.be/stations/NMBS/008892734", "https://data.delijn.be/stops/505285"], ["https://mivb.openplanner.team/stops/1354", "https://tec.openplanner.team/stops/Bixlfla1"], ["https://data.delijn.be/stops/304049", "https://tec.openplanner.team/stops/Bovetwe1"], ["https://data.delijn.be/stops/300992", "https://mivb.openplanner.team/stops/3761"], ["https://data.delijn.be/stops/400490", "https://tec.openplanner.team/stops/LBSneuv1"], ["http://irail.be/stations/NMBS/008884889", "https://tec.openplanner.team/stops/H4ca120b"], ["http://irail.be/stations/NMBS/008821089", "https://data.delijn.be/stops/105766"], ["https://data.delijn.be/stops/404681", "https://tec.openplanner.team/stops/LPAmosa2"], ["https://data.delijn.be/stops/301013", "https://mivb.openplanner.team/stops/4169"], ["http://irail.be/stations/NMBS/008210014", "https://tec.openplanner.team/stops/X687aba"], ["https://data.delijn.be/stops/408950", "https://tec.openplanner.team/stops/LWAathe1"], ["https://mivb.openplanner.team/stops/1416", "https://tec.openplanner.team/stops/Bbxlfro1"], ["https://data.delijn.be/stops/208183", "https://tec.openplanner.team/stops/H5rx132b"], ["http://irail.be/stations/NMBS/008863867", "https://tec.openplanner.team/stops/N308ahb"], ["http://irail.be/stations/NMBS/008861200", "https://tec.openplanner.team/stops/Bgemga12"], ["https://mivb.openplanner.team/stops/0340141", "https://tec.openplanner.team/stops/Bsgibla2"], ["http://irail.be/stations/NMBS/008814308", "https://data.delijn.be/stops/301358"], ["https://data.delijn.be/stops/405344", "https://tec.openplanner.team/stops/Bneeace2"], ["https://data.delijn.be/stops/307636", "https://mivb.openplanner.team/stops/2167"], ["https://data.delijn.be/stops/404682", "https://tec.openplanner.team/stops/LWieg--*"], ["https://data.delijn.be/stops/300346", "https://tec.openplanner.team/stops/Bbrlmez2"], ["http://irail.be/stations/NMBS/008871365", "https://tec.openplanner.team/stops/Cpcgout1"], ["http://irail.be/stations/NMBS/008814159", "https://data.delijn.be/stops/307651"], ["https://data.delijn.be/stops/509237", "https://tec.openplanner.team/stops/H4co106a"], ["https://data.delijn.be/stops/300826", "https://mivb.openplanner.team/stops/2837"], ["http://irail.be/stations/NMBS/008883006", "https://tec.openplanner.team/stops/Bbcoser2"], ["https://data.delijn.be/stops/301921", "https://mivb.openplanner.team/stops/2078"], ["https://data.delijn.be/stops/307716", "https://tec.openplanner.team/stops/Brsga152"], ["https://data.delijn.be/stops/301411", "https://tec.openplanner.team/stops/Bengvma2"], ["http://irail.be/stations/NMBS/008871100", "https://tec.openplanner.team/stops/Cmasncb1"], ["https://data.delijn.be/stops/208760", "https://tec.openplanner.team/stops/H5rx122b"], ["https://data.delijn.be/stops/308722", "https://tec.openplanner.team/stops/Bgoewat2"], ["http://irail.be/stations/NMBS/008822525", "https://data.delijn.be/stops/301881"], ["http://irail.be/stations/NMBS/008864931", "https://tec.openplanner.team/stops/N585alb"], ["https://data.delijn.be/stops/307681", "https://mivb.openplanner.team/stops/5952"], ["https://data.delijn.be/stops/308110", "https://tec.openplanner.team/stops/Bbeaech2"], ["https://data.delijn.be/stops/408951", "https://tec.openplanner.team/stops/LWApt--2"], ["https://data.delijn.be/stops/208784", "https://tec.openplanner.team/stops/H5el100a"], ["https://data.delijn.be/stops/306000", "https://tec.openplanner.team/stops/Bovetdo2"], ["http://irail.be/stations/NMBS/008841434", "https://tec.openplanner.team/stops/LWAeloi2"], ["http://irail.be/stations/NMBS/008831039", "https://data.delijn.be/stops/400083"], ["https://data.delijn.be/stops/301006", "https://mivb.openplanner.team/stops/2509"], ["https://data.delijn.be/stops/300888", "https://mivb.openplanner.team/stops/6604F"], ["https://data.delijn.be/stops/405715", "https://tec.openplanner.team/stops/Llghoch1"], ["https://data.delijn.be/stops/509861", "https://tec.openplanner.team/stops/H4mo192a"], ["https://data.delijn.be/stops/408861", "https://tec.openplanner.team/stops/LFChofv1"], ["https://data.delijn.be/stops/307832", "https://mivb.openplanner.team/stops/6857"], ["https://data.delijn.be/stops/308870", "https://mivb.openplanner.team/stops/5515"], ["http://irail.be/stations/NMBS/008863842", "https://tec.openplanner.team/stops/N338aha"], ["https://mivb.openplanner.team/stops/3562", "https://tec.openplanner.team/stops/Bixleix1"], ["https://data.delijn.be/stops/408871", "https://tec.openplanner.team/stops/LBWeg--4"], ["https://data.delijn.be/stops/300300", "https://mivb.openplanner.team/stops/4165"], ["http://irail.be/stations/NMBS/008844503", "https://tec.openplanner.team/stops/LBNauto1"], ["http://irail.be/stations/NMBS/008843901", "https://tec.openplanner.team/stops/Lbrgrot1"], ["https://data.delijn.be/stops/301132", "https://tec.openplanner.team/stops/Buccdef2"], ["http://irail.be/stations/NMBS/008871662", "https://tec.openplanner.team/stops/H1hw125b"], ["https://data.delijn.be/stops/508032", "https://tec.openplanner.team/stops/H4ae100b"], ["http://irail.be/stations/NMBS/008845229", "https://tec.openplanner.team/stops/LCocasc2"], ["https://data.delijn.be/stops/400659", "https://tec.openplanner.team/stops/LWAbeec1"], ["http://irail.be/stations/NMBS/008861523", "https://tec.openplanner.team/stops/Bwlhppg2"], ["https://data.delijn.be/stops/405370", "https://tec.openplanner.team/stops/Bneelaa1"], ["https://data.delijn.be/stops/410141", "https://tec.openplanner.team/stops/Lrcpaqu1"], ["http://irail.be/stations/NMBS/008889011", "https://tec.openplanner.team/stops/H4wa148a"], ["https://data.delijn.be/stops/410153", "https://mivb.openplanner.team/stops/5045"], ["https://data.delijn.be/stops/405702", "https://tec.openplanner.team/stops/Llgwesp1"], ["https://data.delijn.be/stops/404677", "https://tec.openplanner.team/stops/Llabriq1"], ["https://data.delijn.be/stops/400491", "https://tec.openplanner.team/stops/LBSchar4"], ["https://data.delijn.be/stops/304177", "https://tec.openplanner.team/stops/Bbldgar2"], ["http://irail.be/stations/NMBS/008812252", "https://data.delijn.be/stops/304796"], ["http://irail.be/stations/NMBS/008886348", "https://tec.openplanner.team/stops/H4lz158b"], ["https://data.delijn.be/stops/305343", "https://tec.openplanner.team/stops/Bbgeegl1"], ["http://irail.be/stations/NMBS/008882107", "https://tec.openplanner.team/stops/H2ll178d"], ["http://irail.be/stations/NMBS/008884350", "https://tec.openplanner.team/stops/H1tl120a"], ["http://irail.be/stations/NMBS/008814431", "https://data.delijn.be/stops/307688"], ["https://data.delijn.be/stops/410143", "https://tec.openplanner.team/stops/Llgbois1"], ["http://irail.be/stations/NMBS/008883238", "https://tec.openplanner.team/stops/H2fa103a"], ["http://irail.be/stations/NMBS/008832664", "https://data.delijn.be/stops/409017"], ["https://data.delijn.be/stops/508228", "https://tec.openplanner.team/stops/H4po130a"], ["http://irail.be/stations/NMBS/008815016", "https://mivb.openplanner.team/stops/58"], ["https://data.delijn.be/stops/302424", "https://tec.openplanner.team/stops/Bjodfab1"], ["http://irail.be/stations/NMBS/008895448", "https://data.delijn.be/stops/207535"], ["https://data.delijn.be/stops/302897", "https://tec.openplanner.team/stops/Bhevgro2"], ["http://irail.be/stations/NMBS/008831112", "https://data.delijn.be/stops/401554"], ["https://data.delijn.be/stops/301039", "https://mivb.openplanner.team/stops/60"], ["http://irail.be/stations/NMBS/008822475", "https://data.delijn.be/stops/305813"], ["https://data.delijn.be/stops/302837", "https://tec.openplanner.team/stops/LLaover3"], ["https://data.delijn.be/stops/408864", "https://tec.openplanner.team/stops/LFCvoer1"], ["https://data.delijn.be/stops/405736", "https://tec.openplanner.team/stops/Lanc14v1"], ["https://data.delijn.be/stops/307635", "https://tec.openplanner.team/stops/Bucccre2"], ["https://data.delijn.be/stops/305494", "https://mivb.openplanner.team/stops/3328"], ["http://irail.be/stations/NMBS/008811262", "https://data.delijn.be/stops/307522"], ["https://data.delijn.be/stops/402549", "https://tec.openplanner.team/stops/LBpbruy2"], ["https://data.delijn.be/stops/405736", "https://tec.openplanner.team/stops/Lrcstad1"], ["http://irail.be/stations/NMBS/008896925", "https://data.delijn.be/stops/503283"], ["https://data.delijn.be/stops/307148", "https://tec.openplanner.team/stops/Bhalvel2"], ["http://irail.be/stations/NMBS/008821634", "https://data.delijn.be/stops/102729"], ["https://data.delijn.be/stops/302410", "https://tec.openplanner.team/stops/Bmlngvi1"], ["http://irail.be/stations/NMBS/008844339", "https://tec.openplanner.team/stops/LTHcent2"], ["http://irail.be/stations/NMBS/008814308", "https://data.delijn.be/stops/307912"], ["https://data.delijn.be/stops/405504", "https://tec.openplanner.team/stops/LCAeg--1"], ["https://data.delijn.be/stops/300323", "https://tec.openplanner.team/stops/Balsbeg1"], ["http://irail.be/stations/NMBS/008844206", "https://tec.openplanner.team/stops/Lpeathe*"], ["https://data.delijn.be/stops/407230", "https://tec.openplanner.team/stops/LORgend1"], ["http://irail.be/stations/NMBS/008821196", "https://data.delijn.be/stops/104627"], ["http://irail.be/stations/NMBS/008886561", "https://tec.openplanner.team/stops/H1ol145b"], ["http://irail.be/stations/NMBS/008873387", "https://tec.openplanner.team/stops/Chhplbe2"], ["http://irail.be/stations/NMBS/008821048", "https://data.delijn.be/stops/102724"], ["http://irail.be/stations/NMBS/008841459", "https://tec.openplanner.team/stops/LJelava2"], ["https://data.delijn.be/stops/405659", "https://tec.openplanner.team/stops/LTowijk1"], ["https://data.delijn.be/stops/306911", "https://tec.openplanner.team/stops/Bboseco1"], ["https://mivb.openplanner.team/stops/2714", "https://tec.openplanner.team/stops/Buccplj2"], ["http://irail.be/stations/NMBS/008814365", "https://data.delijn.be/stops/304549"], ["https://data.delijn.be/stops/307968", "https://tec.openplanner.team/stops/Bwavzno2"], ["https://data.delijn.be/stops/307203", "https://tec.openplanner.team/stops/Btubnav1"], ["https://data.delijn.be/stops/306400", "https://mivb.openplanner.team/stops/3228F"], ["https://data.delijn.be/stops/408870", "https://tec.openplanner.team/stops/LFCdree1"], ["http://irail.be/stations/NMBS/008869047", "https://tec.openplanner.team/stops/X695aka"], ["https://data.delijn.be/stops/408910", "https://tec.openplanner.team/stops/LFPdeme2"], ["http://irail.be/stations/NMBS/008866118", "https://tec.openplanner.team/stops/X602ahb"], ["http://irail.be/stations/NMBS/008884541", "https://tec.openplanner.team/stops/H1qu111b"], ["https://data.delijn.be/stops/301001", "https://mivb.openplanner.team/stops/6082"], ["https://data.delijn.be/stops/301080", "https://mivb.openplanner.team/stops/3332"], ["https://data.delijn.be/stops/300833", "https://mivb.openplanner.team/stops/2533"], ["https://data.delijn.be/stops/408844", "https://tec.openplanner.team/stops/LRmhage6"], ["http://irail.be/stations/NMBS/008863842", "https://tec.openplanner.team/stops/N226aaa"], ["https://data.delijn.be/stops/307639", "https://mivb.openplanner.team/stops/1959"], ["http://irail.be/stations/NMBS/008866175", "https://tec.openplanner.team/stops/X650ahb"], ["https://data.delijn.be/stops/300920", "https://mivb.openplanner.team/stops/5362F"], ["https://data.delijn.be/stops/300980", "https://mivb.openplanner.team/stops/6056"], ["http://irail.be/stations/NMBS/008821667", "https://data.delijn.be/stops/107112"], ["http://irail.be/stations/NMBS/008866845", "https://tec.openplanner.team/stops/X641amb"], ["https://data.delijn.be/stops/300743", "https://mivb.openplanner.team/stops/2220"], ["https://data.delijn.be/stops/304037", "https://tec.openplanner.team/stops/Bovesol1"], ["http://irail.be/stations/NMBS/008864006", "https://tec.openplanner.team/stops/N390acb"], ["https://data.delijn.be/stops/301083", "https://mivb.openplanner.team/stops/1552"], ["https://data.delijn.be/stops/306904", "https://tec.openplanner.team/stops/Bgoevli2"], ["https://data.delijn.be/stops/301084", "https://mivb.openplanner.team/stops/1043"], ["https://data.delijn.be/stops/300811", "https://mivb.openplanner.team/stops/4123"], ["http://irail.be/stations/NMBS/008822210", "https://data.delijn.be/stops/101422"], ["https://mivb.openplanner.team/stops/0702", "https://tec.openplanner.team/stops/Bbxlmid1"], ["http://irail.be/stations/NMBS/008844628", "https://tec.openplanner.team/stops/LeUbahn4"], ["https://data.delijn.be/stops/408902", "https://tec.openplanner.team/stops/LFPknap1"], ["https://data.delijn.be/stops/301043", "https://mivb.openplanner.team/stops/3263F"], ["https://data.delijn.be/stops/306931", "https://tec.openplanner.team/stops/Bboseco1"], ["http://irail.be/stations/NMBS/008821048", "https://data.delijn.be/stops/105292"], ["https://data.delijn.be/stops/300854", "https://mivb.openplanner.team/stops/0529"], ["https://data.delijn.be/stops/302838", "https://tec.openplanner.team/stops/LLasta-*"], ["https://data.delijn.be/stops/301078", "https://mivb.openplanner.team/stops/0410346"], ["http://irail.be/stations/NMBS/008892601", "https://data.delijn.be/stops/209243"], ["http://irail.be/stations/NMBS/008015345", "https://tec.openplanner.team/stops/LpEzoll*"], ["https://data.delijn.be/stops/304457", "https://tec.openplanner.team/stops/Brsggar1"], ["https://data.delijn.be/stops/301015", "https://mivb.openplanner.team/stops/4112"], ["https://data.delijn.be/stops/300325", "https://tec.openplanner.team/stops/Balsnie1"], ["http://irail.be/stations/NMBS/008895638", "https://data.delijn.be/stops/305333"], ["http://irail.be/stations/NMBS/008892080", "https://data.delijn.be/stops/208956"], ["https://data.delijn.be/stops/407203", "https://tec.openplanner.team/stops/LHTcent2"], ["https://data.delijn.be/stops/300821", "https://mivb.openplanner.team/stops/9056F"], ["http://irail.be/stations/NMBS/008200940", "https://tec.openplanner.team/stops/X681ada"], ["http://irail.be/stations/NMBS/008869088", "https://tec.openplanner.team/stops/X695afa"], ["https://data.delijn.be/stops/302125", "https://tec.openplanner.team/stops/Bpte1ma2"], ["https://data.delijn.be/stops/306898", "https://tec.openplanner.team/stops/Bgoesch4"], ["https://data.delijn.be/stops/405462", "https://tec.openplanner.team/stops/LWscona2"], ["http://irail.be/stations/NMBS/008811635", "https://tec.openplanner.team/stops/Blmlgar2"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2le148b"], ["https://data.delijn.be/stops/301033", "https://mivb.openplanner.team/stops/6162"], ["https://data.delijn.be/stops/400470", "https://tec.openplanner.team/stops/LEMfort1"], ["https://data.delijn.be/stops/407214", "https://tec.openplanner.team/stops/LHSfexh1"], ["https://data.delijn.be/stops/302397", "https://tec.openplanner.team/stops/Bpechos2"], ["http://irail.be/stations/NMBS/008844206", "https://tec.openplanner.team/stops/Lpemata2"], ["https://data.delijn.be/stops/302903", "https://tec.openplanner.team/stops/Bhevhha2"], ["http://irail.be/stations/NMBS/008811163", "https://data.delijn.be/stops/300920"], ["http://irail.be/stations/NMBS/008844321", "https://tec.openplanner.team/stops/LJSec--1"], ["http://irail.be/stations/NMBS/008893526", "https://data.delijn.be/stops/203975"], ["https://data.delijn.be/stops/408861", "https://tec.openplanner.team/stops/LBOande2"], ["https://mivb.openplanner.team/stops/8152", "https://tec.openplanner.team/stops/Bwolkra2"], ["https://data.delijn.be/stops/405342", "https://tec.openplanner.team/stops/Bneesjo2"], ["http://irail.be/stations/NMBS/008865300", "https://tec.openplanner.team/stops/X804bwb"], ["http://irail.be/stations/NMBS/008894508", "https://data.delijn.be/stops/204716"], ["https://data.delijn.be/stops/303613", "https://tec.openplanner.team/stops/Bhalpar3"], ["https://data.delijn.be/stops/301010", "https://mivb.openplanner.team/stops/1236"], ["https://data.delijn.be/stops/307193", "https://tec.openplanner.team/stops/Bhalber3"], ["https://data.delijn.be/stops/405711", "https://tec.openplanner.team/stops/Llglimb1"], ["https://data.delijn.be/stops/300412", "https://mivb.openplanner.team/stops/9677"], ["http://irail.be/stations/NMBS/008822814", "https://data.delijn.be/stops/106853"], ["https://data.delijn.be/stops/207773", "https://tec.openplanner.team/stops/H5rx126b"], ["https://data.delijn.be/stops/208762", "https://tec.openplanner.team/stops/H5rx122b"], ["https://data.delijn.be/stops/300754", "https://mivb.openplanner.team/stops/2518"], ["https://data.delijn.be/stops/304012", "https://tec.openplanner.team/stops/Bovesnh1"], ["https://data.delijn.be/stops/209179", "https://tec.openplanner.team/stops/H5el100b"], ["https://data.delijn.be/stops/301944", "https://mivb.openplanner.team/stops/2507"], ["http://irail.be/stations/NMBS/008841400", "https://tec.openplanner.team/stops/LWAgare*"], ["https://data.delijn.be/stops/300938", "https://mivb.openplanner.team/stops/2572"], ["https://data.delijn.be/stops/302804", "https://mivb.openplanner.team/stops/5655"], ["https://data.delijn.be/stops/305272", "https://tec.openplanner.team/stops/Bspkker1"], ["http://irail.be/stations/NMBS/008865565", "https://tec.openplanner.team/stops/X850aka"], ["https://data.delijn.be/stops/301316", "https://mivb.openplanner.team/stops/9825F"], ["http://irail.be/stations/NMBS/008822004", "https://data.delijn.be/stops/105036"], ["https://data.delijn.be/stops/302418", "https://tec.openplanner.team/stops/Bjodsje1"], ["http://irail.be/stations/NMBS/008892635", "https://data.delijn.be/stops/208495"], ["https://data.delijn.be/stops/301047", "https://mivb.openplanner.team/stops/6702"], ["http://irail.be/stations/NMBS/008871662", "https://tec.openplanner.team/stops/H1so133a"], ["http://irail.be/stations/NMBS/008882230", "https://tec.openplanner.team/stops/H2mo144b"], ["http://irail.be/stations/NMBS/008833175", "https://data.delijn.be/stops/302007"], ["https://data.delijn.be/stops/503024", "https://tec.openplanner.team/stops/H4or114b"], ["https://data.delijn.be/stops/301102", "https://mivb.openplanner.team/stops/1850"], ["https://data.delijn.be/stops/305165", "https://mivb.openplanner.team/stops/1809"], ["https://data.delijn.be/stops/408991", "https://tec.openplanner.team/stops/LWAor--1"], ["https://data.delijn.be/stops/305230", "https://mivb.openplanner.team/stops/9707"], ["https://data.delijn.be/stops/408980", "https://tec.openplanner.team/stops/LWAvand2"], ["https://mivb.openplanner.team/stops/3159", "https://tec.openplanner.team/stops/Bbxlple2"], ["https://data.delijn.be/stops/304061", "https://tec.openplanner.team/stops/Bwavtrt1"], ["https://data.delijn.be/stops/401412", "https://mivb.openplanner.team/stops/6114F"], ["https://data.delijn.be/stops/410139", "https://tec.openplanner.team/stops/Llglimb1"], ["https://mivb.openplanner.team/stops/1961B", "https://tec.openplanner.team/stops/Bucceng1"], ["https://data.delijn.be/stops/406564", "https://tec.openplanner.team/stops/LWOwonc1"], ["https://data.delijn.be/stops/301166", "https://tec.openplanner.team/stops/Buccpor2"], ["http://irail.be/stations/NMBS/008822251", "https://data.delijn.be/stops/308406"], ["http://irail.be/stations/NMBS/008812005", "https://mivb.openplanner.team/stops/6012G"], ["https://data.delijn.be/stops/304075", "https://tec.openplanner.team/stops/Bovepla1"], ["https://data.delijn.be/stops/405733", "https://tec.openplanner.team/stops/LrcarsT2"], ["http://irail.be/stations/NMBS/008822848", "https://data.delijn.be/stops/104579"], ["http://irail.be/stations/NMBS/008871183", "https://tec.openplanner.team/stops/Cjxvalh2"], ["https://data.delijn.be/stops/307717", "https://tec.openplanner.team/stops/Brsggde2"], ["http://irail.be/stations/NMBS/008873312", "https://tec.openplanner.team/stops/N106aqa"], ["http://irail.be/stations/NMBS/008811189", "https://data.delijn.be/stops/304929"], ["https://data.delijn.be/stops/306899", "https://tec.openplanner.team/stops/Bgoestu2"], ["https://data.delijn.be/stops/403789", "https://tec.openplanner.team/stops/LWAbett2"], ["http://irail.be/stations/NMBS/008832458", "https://data.delijn.be/stops/109261"], ["http://irail.be/stations/NMBS/008894508", "https://data.delijn.be/stops/205716"], ["https://data.delijn.be/stops/302855", "https://tec.openplanner.team/stops/LWSstat1"], ["https://data.delijn.be/stops/505842", "https://tec.openplanner.team/stops/H4co142a"], ["https://data.delijn.be/stops/405731", "https://tec.openplanner.team/stops/Lrcpaqu2"], ["https://data.delijn.be/stops/302404", "https://mivb.openplanner.team/stops/3608"], ["https://data.delijn.be/stops/301089", "https://mivb.openplanner.team/stops/5532"], ["https://data.delijn.be/stops/207799", "https://tec.openplanner.team/stops/H5el101a"], ["http://irail.be/stations/NMBS/008811247", "https://data.delijn.be/stops/306555"], ["https://data.delijn.be/stops/408865", "https://tec.openplanner.team/stops/LFCvoer2"], ["https://data.delijn.be/stops/303669", "https://mivb.openplanner.team/stops/1744"], ["https://data.delijn.be/stops/208181", "https://tec.openplanner.team/stops/H5rx131a"], ["http://irail.be/stations/NMBS/008874583", "https://tec.openplanner.team/stops/Crswaut1"], ["http://irail.be/stations/NMBS/008821246", "https://data.delijn.be/stops/107237"], ["https://data.delijn.be/stops/408892", "https://tec.openplanner.team/stops/LFMveur2"], ["https://data.delijn.be/stops/404653", "https://tec.openplanner.team/stops/LJUfort1"], ["https://data.delijn.be/stops/300977", "https://mivb.openplanner.team/stops/9296"], ["https://data.delijn.be/stops/410135", "https://tec.openplanner.team/stops/Lladete4"], ["https://data.delijn.be/stops/302445", "https://tec.openplanner.team/stops/Bjodeco3"], ["https://mivb.openplanner.team/stops/1764", "https://tec.openplanner.team/stops/Bettlha2"], ["http://irail.be/stations/NMBS/008895620", "https://data.delijn.be/stops/209573"], ["http://irail.be/stations/NMBS/008845203", "https://tec.openplanner.team/stops/LTPnoup1"], ["http://irail.be/stations/NMBS/008892205", "https://data.delijn.be/stops/509723"], ["https://mivb.openplanner.team/stops/6956G", "https://tec.openplanner.team/stops/Buccmer2"], ["http://irail.be/stations/NMBS/008812047", "https://mivb.openplanner.team/stops/6800"], ["https://data.delijn.be/stops/301006", "https://mivb.openplanner.team/stops/1198"], ["https://data.delijn.be/stops/301956", "https://mivb.openplanner.team/stops/6483B"], ["https://data.delijn.be/stops/207773", "https://tec.openplanner.team/stops/H5rx126a"], ["https://data.delijn.be/stops/509235", "https://tec.openplanner.team/stops/H4co148b"], ["http://irail.be/stations/NMBS/008814126", "https://mivb.openplanner.team/stops/5756"], ["https://data.delijn.be/stops/304570", "https://mivb.openplanner.team/stops/7650210"], ["https://data.delijn.be/stops/404654", "https://tec.openplanner.team/stops/LJU51--2"], ["https://data.delijn.be/stops/301399", "https://mivb.openplanner.team/stops/2664"], ["http://irail.be/stations/NMBS/008841608", "https://tec.openplanner.team/stops/Lhrmare1"], ["https://data.delijn.be/stops/400487", "https://tec.openplanner.team/stops/LBPxhav1"], ["https://data.delijn.be/stops/401402", "https://mivb.openplanner.team/stops/3765"], ["https://data.delijn.be/stops/301046", "https://mivb.openplanner.team/stops/4214"], ["https://data.delijn.be/stops/305145", "https://tec.openplanner.team/stops/H1mk107b"], ["https://data.delijn.be/stops/300802", "https://mivb.openplanner.team/stops/1493"], ["http://irail.be/stations/NMBS/008728710", "https://tec.openplanner.team/stops/H4lg103b"], ["http://irail.be/stations/NMBS/008015345", "https://tec.openplanner.team/stops/LaAlinz1"], ["https://data.delijn.be/stops/410145", "https://tec.openplanner.team/stops/LlgPRVo2"], ["https://data.delijn.be/stops/405700", "https://tec.openplanner.team/stops/Llghugo1"], ["https://mivb.openplanner.team/stops/3510", "https://tec.openplanner.team/stops/Bixlaca1"], ["http://irail.be/stations/NMBS/008895851", "https://data.delijn.be/stops/207110"], ["https://data.delijn.be/stops/300961", "https://mivb.openplanner.team/stops/1754"], ["http://irail.be/stations/NMBS/008811262", "https://data.delijn.be/stops/302731"], ["https://data.delijn.be/stops/509299", "https://tec.openplanner.team/stops/H4mo151a"], ["http://irail.be/stations/NMBS/008841731", "https://tec.openplanner.team/stops/LGLgeer2"], ["https://data.delijn.be/stops/300746", "https://mivb.openplanner.team/stops/7720203"], ["http://irail.be/stations/NMBS/008861515", "https://tec.openplanner.team/stops/Bcrnnpl1"], ["https://data.delijn.be/stops/300390", "https://mivb.openplanner.team/stops/9677"], ["https://data.delijn.be/stops/301073", "https://mivb.openplanner.team/stops/0290212"], ["http://irail.be/stations/NMBS/008811742", "https://data.delijn.be/stops/302390"], ["https://data.delijn.be/stops/400496", "https://tec.openplanner.team/stops/LWOwonc1"], ["http://irail.be/stations/NMBS/008815040", "https://mivb.openplanner.team/stops/1117"], ["http://irail.be/stations/NMBS/008821063", "https://data.delijn.be/stops/103895"], ["https://mivb.openplanner.team/stops/5453", "https://tec.openplanner.team/stops/Bwbfeta2"], ["http://irail.be/stations/NMBS/008811130", "https://mivb.openplanner.team/stops/3130"], ["http://irail.be/stations/NMBS/008831765", "https://data.delijn.be/stops/402256"], ["https://data.delijn.be/stops/303583", "https://mivb.openplanner.team/stops/3042"], ["https://data.delijn.be/stops/407213", "https://tec.openplanner.team/stops/LHecime2"], ["http://irail.be/stations/NMBS/008821451", "https://data.delijn.be/stops/105857"], ["https://data.delijn.be/stops/409000", "https://tec.openplanner.team/stops/LWAclos1"], ["http://irail.be/stations/NMBS/008821337", "https://data.delijn.be/stops/107237"], ["https://data.delijn.be/stops/407200", "https://tec.openplanner.team/stops/LHehacc2"], ["https://data.delijn.be/stops/408903", "https://tec.openplanner.team/stops/LFPknap2"], ["http://irail.be/stations/NMBS/008894425", "https://data.delijn.be/stops/205227"], ["http://irail.be/stations/NMBS/008824240", "https://data.delijn.be/stops/101131"], ["https://data.delijn.be/stops/301063", "https://mivb.openplanner.team/stops/4599"], ["https://data.delijn.be/stops/303226", "https://mivb.openplanner.team/stops/5964"], ["https://data.delijn.be/stops/302793", "https://mivb.openplanner.team/stops/1656B"], ["http://irail.be/stations/NMBS/008893179", "https://data.delijn.be/stops/204556"], ["https://data.delijn.be/stops/304440", "https://tec.openplanner.team/stops/Balsnie1"], ["http://irail.be/stations/NMBS/008849072", "https://tec.openplanner.team/stops/X793ada"], ["http://irail.be/stations/NMBS/008889045", "https://tec.openplanner.team/stops/H4bx108b"], ["https://data.delijn.be/stops/406565", "https://tec.openplanner.team/stops/LHTcent2"], ["http://irail.be/stations/NMBS/008866175", "https://tec.openplanner.team/stops/X671afa"], ["https://data.delijn.be/stops/307283", "https://tec.openplanner.team/stops/Bcbqa361"], ["https://data.delijn.be/stops/301012", "https://mivb.openplanner.team/stops/1199F"], ["http://irail.be/stations/NMBS/008866605", "https://tec.openplanner.team/stops/X615aba"], ["https://data.delijn.be/stops/301400", "https://mivb.openplanner.team/stops/5729"], ["http://irail.be/stations/NMBS/008895125", "https://data.delijn.be/stops/207004"], ["http://irail.be/stations/NMBS/008895463", "https://data.delijn.be/stops/206861"], ["https://data.delijn.be/stops/405347", "https://tec.openplanner.team/stops/Bezebru2"], ["http://irail.be/stations/NMBS/008863503", "https://tec.openplanner.team/stops/N232aqb"], ["https://data.delijn.be/stops/302807", "https://mivb.openplanner.team/stops/1601"], ["http://irail.be/stations/NMBS/008200130", "https://tec.openplanner.team/stops/X663aac"], ["https://data.delijn.be/stops/300396", "https://tec.openplanner.team/stops/Blemwro1"], ["http://irail.be/stations/NMBS/008896388", "https://data.delijn.be/stops/508070"], ["https://data.delijn.be/stops/407491", "https://tec.openplanner.team/stops/LToluik2"], ["http://irail.be/stations/NMBS/008811536", "https://tec.openplanner.team/stops/Brixrmo1"], ["http://irail.be/stations/NMBS/008881505", "https://tec.openplanner.team/stops/H1al108a"], ["https://data.delijn.be/stops/301005", "https://mivb.openplanner.team/stops/4106"], ["https://data.delijn.be/stops/300315", "https://tec.openplanner.team/stops/Bnetace2"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/Cchdagn2"], ["https://data.delijn.be/stops/300974", "https://tec.openplanner.team/stops/Baudhde1"], ["https://data.delijn.be/stops/408847", "https://tec.openplanner.team/stops/LRmkult2"], ["https://data.delijn.be/stops/305494", "https://mivb.openplanner.team/stops/1321"], ["http://irail.be/stations/NMBS/008843224", "https://tec.openplanner.team/stops/Lfhborg1"], ["https://data.delijn.be/stops/308723", "https://tec.openplanner.team/stops/Bgoesch4"], ["http://irail.be/stations/NMBS/008895000", "https://data.delijn.be/stops/204970"], ["http://irail.be/stations/NMBS/008822160", "https://data.delijn.be/stops/207366"], ["https://data.delijn.be/stops/307634", "https://mivb.openplanner.team/stops/1965"], ["https://data.delijn.be/stops/509231", "https://tec.openplanner.team/stops/H4co146b"], ["http://irail.be/stations/NMBS/008811742", "https://tec.openplanner.team/stops/Bgzdgth1"], ["https://mivb.openplanner.team/stops/1715", "https://tec.openplanner.team/stops/Bettars1"], ["http://irail.be/stations/NMBS/008864469", "https://tec.openplanner.team/stops/X982bfb"], ["https://mivb.openplanner.team/stops/1942", "https://tec.openplanner.team/stops/Buccdst2"], ["http://irail.be/stations/NMBS/008842630", "https://tec.openplanner.team/stops/LTIpora2"], ["http://irail.be/stations/NMBS/008884566", "https://tec.openplanner.team/stops/H1je225a"], ["http://irail.be/stations/NMBS/008881463", "https://tec.openplanner.team/stops/H2sb228c"], ["https://data.delijn.be/stops/400682", "https://tec.openplanner.team/stops/LHgpost2"], ["https://data.delijn.be/stops/300963", "https://mivb.openplanner.team/stops/1720B"], ["https://data.delijn.be/stops/208759", "https://tec.openplanner.team/stops/H5rx104a"], ["https://data.delijn.be/stops/306399", "https://mivb.openplanner.team/stops/1245"], ["http://irail.be/stations/NMBS/008895489", "https://data.delijn.be/stops/207528"], ["http://irail.be/stations/NMBS/008821824", "https://data.delijn.be/stops/104742"], ["http://irail.be/stations/NMBS/008886348", "https://tec.openplanner.team/stops/H4lz123a"], ["http://irail.be/stations/NMBS/008843158", "https://tec.openplanner.team/stops/Ljetout2"], ["https://data.delijn.be/stops/408952", "https://tec.openplanner.team/stops/LWAvisi2"], ["https://data.delijn.be/stops/504307", "https://tec.openplanner.team/stops/H4mo180a"], ["http://irail.be/stations/NMBS/008866001", "https://tec.openplanner.team/stops/X601bcb"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/108231"], ["https://data.delijn.be/stops/209597", "https://tec.openplanner.team/stops/Benggar1"], ["http://irail.be/stations/NMBS/008863362", "https://tec.openplanner.team/stops/N501evb"], ["https://data.delijn.be/stops/408866", "https://tec.openplanner.team/stops/LFCvoge4"], ["https://data.delijn.be/stops/408856", "https://tec.openplanner.team/stops/LFClage2"], ["https://mivb.openplanner.team/stops/2757C", "https://tec.openplanner.team/stops/Buccpor2"], ["http://irail.be/stations/NMBS/008833308", "https://data.delijn.be/stops/305173"], ["https://data.delijn.be/stops/410145", "https://tec.openplanner.team/stops/Llgbois1"], ["https://data.delijn.be/stops/408885", "https://tec.openplanner.team/stops/LFCotte1"], ["https://data.delijn.be/stops/301020", "https://mivb.openplanner.team/stops/4059F"], ["https://data.delijn.be/stops/308356", "https://mivb.openplanner.team/stops/6418F"], ["http://irail.be/stations/NMBS/008821063", "https://data.delijn.be/stops/102178"], ["https://data.delijn.be/stops/308823", "https://tec.openplanner.team/stops/LWHmath2"], ["https://data.delijn.be/stops/300922", "https://mivb.openplanner.team/stops/1538B"], ["https://mivb.openplanner.team/stops/1762", "https://tec.openplanner.team/stops/Bettbue2"], ["https://data.delijn.be/stops/300803", "https://mivb.openplanner.team/stops/6"], ["http://irail.be/stations/NMBS/008821857", "https://data.delijn.be/stops/108054"], ["https://data.delijn.be/stops/301926", "https://mivb.openplanner.team/stops/9853"], ["http://irail.be/stations/NMBS/008844313", "https://tec.openplanner.team/stops/Lpemata2"], ["http://irail.be/stations/NMBS/008814142", "https://mivb.openplanner.team/stops/1954"], ["https://mivb.openplanner.team/stops/0650265", "https://tec.openplanner.team/stops/Bsgihmo2"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/503474"], ["http://irail.be/stations/NMBS/008892734", "https://data.delijn.be/stops/505279"], ["https://data.delijn.be/stops/304722", "https://mivb.openplanner.team/stops/5804G"], ["https://data.delijn.be/stops/302836", "https://tec.openplanner.team/stops/LLaover3"], ["https://data.delijn.be/stops/408600", "https://tec.openplanner.team/stops/LToluik2"], ["http://irail.be/stations/NMBS/008822210", "https://data.delijn.be/stops/109722"], ["https://data.delijn.be/stops/304838", "https://mivb.openplanner.team/stops/9552"], ["https://data.delijn.be/stops/404664", "https://tec.openplanner.team/stops/LPAvill2"], ["http://irail.be/stations/NMBS/008866530", "https://tec.openplanner.team/stops/X696ada"], ["http://irail.be/stations/NMBS/008896396", "https://data.delijn.be/stops/504564"], ["https://data.delijn.be/stops/400452", "https://tec.openplanner.team/stops/LRGile-2"], ["http://irail.be/stations/NMBS/008200510", "https://tec.openplanner.team/stops/X684aba"], ["http://irail.be/stations/NMBS/008812237", "https://data.delijn.be/stops/301379"], ["https://data.delijn.be/stops/303648", "https://mivb.openplanner.team/stops/2814"], ["https://data.delijn.be/stops/308675", "https://mivb.openplanner.team/stops/1486B"], ["http://irail.be/stations/NMBS/008811213", "https://data.delijn.be/stops/303542"], ["https://data.delijn.be/stops/308673", "https://mivb.openplanner.team/stops/3610F"], ["https://data.delijn.be/stops/306386", "https://tec.openplanner.team/stops/Bhalber3"], ["http://irail.be/stations/NMBS/008811734", "https://tec.openplanner.team/stops/Bwavpar1"], ["http://irail.be/stations/NMBS/008864345", "https://tec.openplanner.team/stops/X902afb"], ["https://data.delijn.be/stops/305427", "https://mivb.openplanner.team/stops/5520F"], ["http://irail.be/stations/NMBS/008849023", "https://tec.openplanner.team/stops/LhGscha*"], ["http://irail.be/stations/NMBS/008843133", "https://tec.openplanner.team/stops/Lscpamp1"], ["http://irail.be/stations/NMBS/008814464", "https://tec.openplanner.team/stops/Buccham2"], ["https://data.delijn.be/stops/408867", "https://tec.openplanner.team/stops/LFCscho2"], ["http://irail.be/stations/NMBS/008886074", "https://tec.openplanner.team/stops/H1cv101a"], ["https://data.delijn.be/stops/301020", "https://mivb.openplanner.team/stops/1196"], ["https://data.delijn.be/stops/307830", "https://mivb.openplanner.team/stops/9557"], ["https://data.delijn.be/stops/400458", "https://tec.openplanner.team/stops/LWOwonc1"], ["https://data.delijn.be/stops/304642", "https://mivb.openplanner.team/stops/1009"], ["https://data.delijn.be/stops/307967", "https://tec.openplanner.team/stops/Bwavrij1"], ["https://data.delijn.be/stops/400456", "https://tec.openplanner.team/stops/LEBmoul1"], ["https://mivb.openplanner.team/stops/1731", "https://tec.openplanner.team/stops/Baudwav2"], ["https://mivb.openplanner.team/stops/5817F", "https://tec.openplanner.team/stops/Bucccal4"], ["http://irail.be/stations/NMBS/008843067", "https://tec.openplanner.team/stops/Lseaven2"], ["https://data.delijn.be/stops/305910", "https://mivb.openplanner.team/stops/9728"], ["http://irail.be/stations/NMBS/008821709", "https://data.delijn.be/stops/102614"], ["https://data.delijn.be/stops/410136", "https://tec.openplanner.team/stops/Lvopaqu1"], ["https://data.delijn.be/stops/307555", "https://tec.openplanner.team/stops/Bstetre2"], ["https://data.delijn.be/stops/306660", "https://mivb.openplanner.team/stops/9802"], ["http://irail.be/stations/NMBS/008200516", "https://tec.openplanner.team/stops/X688aaa"], ["https://data.delijn.be/stops/301400", "https://mivb.openplanner.team/stops/2660"], ["https://data.delijn.be/stops/408912", "https://tec.openplanner.team/stops/LVukabi1"], ["http://irail.be/stations/NMBS/008881562", "https://tec.openplanner.team/stops/H1qp140a"], ["https://data.delijn.be/stops/305270", "https://mivb.openplanner.team/stops/2823B"], ["http://irail.be/stations/NMBS/008861119", "https://tec.openplanner.team/stops/N501cyb"], ["http://irail.be/stations/NMBS/008846201", "https://data.delijn.be/stops/408805"], ["http://irail.be/stations/NMBS/008882362", "https://tec.openplanner.team/stops/H3bi105d"], ["https://data.delijn.be/stops/307813", "https://mivb.openplanner.team/stops/2087"], ["https://data.delijn.be/stops/307713", "https://tec.openplanner.team/stops/Brsgepr1"], ["https://mivb.openplanner.team/stops/1962F", "https://tec.openplanner.team/stops/Bucccal3"], ["https://data.delijn.be/stops/408893", "https://tec.openplanner.team/stops/LFMrijk2"], ["http://irail.be/stations/NMBS/008891553", "https://data.delijn.be/stops/500603"], ["http://irail.be/stations/NMBS/008896305", "https://data.delijn.be/stops/504277"], ["https://data.delijn.be/stops/300980", "https://mivb.openplanner.team/stops/6190"], ["https://data.delijn.be/stops/410140", "https://tec.openplanner.team/stops/Lanetie2"], ["https://data.delijn.be/stops/300762", "https://mivb.openplanner.team/stops/7640311"], ["https://data.delijn.be/stops/407581", "https://tec.openplanner.team/stops/LDpzol-1"], ["https://data.delijn.be/stops/208757", "https://tec.openplanner.team/stops/H5rx101a"], ["https://data.delijn.be/stops/300316", "https://tec.openplanner.team/stops/Bhmmlad1"], ["https://data.delijn.be/stops/307689", "https://mivb.openplanner.team/stops/1935"], ["https://data.delijn.be/stops/308355", "https://mivb.openplanner.team/stops/6416"], ["https://data.delijn.be/stops/303626", "https://tec.openplanner.team/stops/Bcbqcim1"], ["https://data.delijn.be/stops/300945", "https://mivb.openplanner.team/stops/1732"], ["http://irail.be/stations/NMBS/008842705", "https://tec.openplanner.team/stops/LCPgare2"], ["http://irail.be/stations/NMBS/008891652", "https://data.delijn.be/stops/501164"], ["https://data.delijn.be/stops/306117", "https://mivb.openplanner.team/stops/3717"], ["https://data.delijn.be/stops/208591", "https://tec.openplanner.team/stops/H1en103a"], ["http://irail.be/stations/NMBS/008822228", "https://data.delijn.be/stops/108874"], ["https://data.delijn.be/stops/301675", "https://tec.openplanner.team/stops/Bbbksth1"], ["https://data.delijn.be/stops/301133", "https://tec.openplanner.team/stops/Buccvch2"], ["https://data.delijn.be/stops/401417", "https://mivb.openplanner.team/stops/0080222"], ["http://irail.be/stations/NMBS/008843349", "https://tec.openplanner.team/stops/LAMhaut1"], ["https://data.delijn.be/stops/408950", "https://tec.openplanner.team/stops/LWApt--2"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bcsempl1"], ["https://data.delijn.be/stops/302870", "https://tec.openplanner.team/stops/Bhevjac1"], ["http://irail.be/stations/NMBS/008883238", "https://tec.openplanner.team/stops/H2fa112b"], ["http://irail.be/stations/NMBS/008881000", "https://tec.openplanner.team/stops/H1ms400a"], ["https://data.delijn.be/stops/509234", "https://tec.openplanner.team/stops/H4co108b"], ["https://data.delijn.be/stops/401401", "https://mivb.openplanner.team/stops/3274"], ["https://data.delijn.be/stops/300830", "https://mivb.openplanner.team/stops/4232"], ["https://data.delijn.be/stops/300322", "https://tec.openplanner.team/stops/Balsbeg1"], ["https://data.delijn.be/stops/307642", "https://mivb.openplanner.team/stops/1935"], ["https://data.delijn.be/stops/302403", "https://mivb.openplanner.team/stops/3613F"], ["https://data.delijn.be/stops/404669", "https://tec.openplanner.team/stops/LVSpota1"], ["https://data.delijn.be/stops/509738", "https://tec.openplanner.team/stops/H4hx116b"], ["https://mivb.openplanner.team/stops/1598", "https://tec.openplanner.team/stops/Baudstr2"], ["https://data.delijn.be/stops/301168", "https://mivb.openplanner.team/stops/5953"], ["https://data.delijn.be/stops/302808", "https://mivb.openplanner.team/stops/1613"], ["https://data.delijn.be/stops/301068", "https://mivb.openplanner.team/stops/1145"], ["http://irail.be/stations/NMBS/008841525", "https://tec.openplanner.team/stops/Llgangl1"], ["https://data.delijn.be/stops/306902", "https://tec.openplanner.team/stops/Bgoestu2"], ["https://data.delijn.be/stops/505275", "https://tec.openplanner.team/stops/H4po129a"], ["https://data.delijn.be/stops/301130", "https://mivb.openplanner.team/stops/2120"], ["http://irail.be/stations/NMBS/008863503", "https://tec.openplanner.team/stops/N232bnb"], ["https://data.delijn.be/stops/305555", "https://mivb.openplanner.team/stops/9600B"], ["http://irail.be/stations/NMBS/008844420", "https://tec.openplanner.team/stops/LSPxhou1"], ["https://data.delijn.be/stops/306913", "https://tec.openplanner.team/stops/Bbosgar2"], ["https://data.delijn.be/stops/305201", "https://tec.openplanner.team/stops/Btiegar2"], ["http://irail.be/stations/NMBS/008814308", "https://tec.openplanner.team/stops/Bhalpar2"], ["http://irail.be/stations/NMBS/008863834", "https://tec.openplanner.team/stops/N337aib"], ["http://irail.be/stations/NMBS/008811460", "https://data.delijn.be/stops/302210"], ["https://data.delijn.be/stops/208742", "https://tec.openplanner.team/stops/H4or116b"], ["http://irail.be/stations/NMBS/008811213", "https://data.delijn.be/stops/303565"], ["https://data.delijn.be/stops/208178", "https://tec.openplanner.team/stops/H5el117a"], ["http://irail.be/stations/NMBS/008831781", "https://data.delijn.be/stops/402126"], ["http://irail.be/stations/NMBS/008875127", "https://tec.openplanner.team/stops/N135aba"], ["https://data.delijn.be/stops/302438", "https://tec.openplanner.team/stops/Bzlucam2"], ["https://mivb.openplanner.team/stops/0230434", "https://tec.openplanner.team/stops/Bauddel1"], ["http://irail.be/stations/NMBS/008882206", "https://tec.openplanner.team/stops/H2hp116b"], ["https://data.delijn.be/stops/403764", "https://tec.openplanner.team/stops/LBGvill2"], ["http://irail.be/stations/NMBS/008883006", "https://tec.openplanner.team/stops/Bbcogar1"], ["https://data.delijn.be/stops/301012", "https://mivb.openplanner.team/stops/1108"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N254aaa"], ["http://irail.be/stations/NMBS/008895729", "https://data.delijn.be/stops/209581"], ["https://data.delijn.be/stops/408927", "https://tec.openplanner.team/stops/LTEzinn1"], ["https://data.delijn.be/stops/509006", "https://tec.openplanner.team/stops/H4wn126a"], ["https://data.delijn.be/stops/509004", "https://tec.openplanner.team/stops/H4mo206b"], ["http://irail.be/stations/NMBS/008821048", "https://data.delijn.be/stops/107005"], ["http://irail.be/stations/NMBS/008814449", "https://mivb.openplanner.team/stops/1741"], ["https://data.delijn.be/stops/300795", "https://mivb.openplanner.team/stops/3850"], ["https://data.delijn.be/stops/303080", "https://tec.openplanner.team/stops/Bhevgar2"], ["https://data.delijn.be/stops/300999", "https://mivb.openplanner.team/stops/6409F"], ["https://data.delijn.be/stops/302848", "https://tec.openplanner.team/stops/Bwaab122"], ["https://data.delijn.be/stops/402551", "https://tec.openplanner.team/stops/LCAcruc1"], ["http://irail.be/stations/NMBS/008831005", "https://data.delijn.be/stops/403444"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N553aoa"], ["https://data.delijn.be/stops/300973", "https://tec.openplanner.team/stops/Baudvdr2"], ["http://irail.be/stations/NMBS/008811007", "https://mivb.openplanner.team/stops/5760"], ["http://irail.be/stations/NMBS/008824232", "https://data.delijn.be/stops/105982"], ["https://data.delijn.be/stops/301403", "https://mivb.openplanner.team/stops/5731F"], ["https://data.delijn.be/stops/405719", "https://tec.openplanner.team/stops/Llglimb1"], ["http://irail.be/stations/NMBS/008842630", "https://tec.openplanner.team/stops/LTIdamr1"], ["http://irail.be/stations/NMBS/008865227", "https://tec.openplanner.team/stops/X898ada"], ["http://irail.be/stations/NMBS/008864824", "https://tec.openplanner.team/stops/N211acb"], ["https://data.delijn.be/stops/300962", "https://mivb.openplanner.team/stops/2725"], ["https://data.delijn.be/stops/306310", "https://mivb.openplanner.team/stops/5823"], ["https://data.delijn.be/stops/307836", "https://mivb.openplanner.team/stops/1661"], ["https://data.delijn.be/stops/306910", "https://tec.openplanner.team/stops/Bbosgar2"], ["https://data.delijn.be/stops/408691", "https://tec.openplanner.team/stops/LTotrui2"], ["https://data.delijn.be/stops/307054", "https://mivb.openplanner.team/stops/9575"], ["https://data.delijn.be/stops/300933", "https://mivb.openplanner.team/stops/2982"], ["http://irail.be/stations/NMBS/008831401", "https://data.delijn.be/stops/305949"], ["http://irail.be/stations/NMBS/008872553", "https://tec.openplanner.team/stops/Btilmon2"], ["http://irail.be/stations/NMBS/008812062", "https://data.delijn.be/stops/300303"], ["https://mivb.openplanner.team/stops/5054F", "https://tec.openplanner.team/stops/Buccplj1"], ["http://irail.be/stations/NMBS/008893708", "https://data.delijn.be/stops/203225"], ["http://irail.be/stations/NMBS/008821451", "https://data.delijn.be/stops/102566"], ["https://data.delijn.be/stops/307808", "https://mivb.openplanner.team/stops/1202"], ["https://data.delijn.be/stops/404674", "https://tec.openplanner.team/stops/LVSslin3"], ["http://irail.be/stations/NMBS/008892056", "https://data.delijn.be/stops/209646"], ["http://irail.be/stations/NMBS/008889045", "https://tec.openplanner.team/stops/H4te253b"], ["http://irail.be/stations/NMBS/008896230", "https://data.delijn.be/stops/508828"], ["http://irail.be/stations/NMBS/008831765", "https://data.delijn.be/stops/410335"], ["https://data.delijn.be/stops/208183", "https://tec.openplanner.team/stops/H5el111a"], ["https://data.delijn.be/stops/307831", "https://mivb.openplanner.team/stops/5520F"], ["https://data.delijn.be/stops/408869", "https://tec.openplanner.team/stops/LFCalte1"], ["https://data.delijn.be/stops/301073", "https://mivb.openplanner.team/stops/1793"], ["http://irail.be/stations/NMBS/008861168", "https://tec.openplanner.team/stops/N534bnh"], ["https://mivb.openplanner.team/stops/2109B", "https://tec.openplanner.team/stops/Buccvoi3"], ["http://irail.be/stations/NMBS/008863834", "https://tec.openplanner.team/stops/N261ahb"], ["https://data.delijn.be/stops/407207", "https://tec.openplanner.team/stops/LHTmoul2"], ["https://data.delijn.be/stops/300904", "https://tec.openplanner.team/stops/Bixllep2"], ["http://irail.be/stations/NMBS/008841459", "https://tec.openplanner.team/stops/LMOm64-1"], ["http://irail.be/stations/NMBS/008873007", "https://tec.openplanner.team/stops/N106aqa"], ["http://irail.be/stations/NMBS/008821030", "https://data.delijn.be/stops/102414"], ["http://irail.be/stations/NMBS/008895778", "https://data.delijn.be/stops/206984"], ["https://data.delijn.be/stops/301153", "https://mivb.openplanner.team/stops/2118"], ["https://data.delijn.be/stops/306159", "https://mivb.openplanner.team/stops/8152"], ["http://irail.be/stations/NMBS/008863362", "https://tec.openplanner.team/stops/N501kfb"], ["https://data.delijn.be/stops/404655", "https://tec.openplanner.team/stops/LJU51--1"], ["https://data.delijn.be/stops/207786", "https://tec.openplanner.team/stops/H5rx139a"], ["https://data.delijn.be/stops/304462", "https://tec.openplanner.team/stops/Brsgtou2"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N219afa"], ["https://data.delijn.be/stops/404668", "https://tec.openplanner.team/stops/LPAchpl1"], ["http://irail.be/stations/NMBS/008811445", "https://tec.openplanner.team/stops/Bhoemel2"], ["http://irail.be/stations/NMBS/008842853", "https://tec.openplanner.team/stops/X982bfb"], ["http://irail.be/stations/NMBS/008895802", "https://data.delijn.be/stops/206105"], ["https://data.delijn.be/stops/307158", "https://tec.openplanner.team/stops/Bhalalb1"], ["http://irail.be/stations/NMBS/008844206", "https://tec.openplanner.team/stops/Lpeeg--1"], ["https://data.delijn.be/stops/304437", "https://tec.openplanner.team/stops/Brsggea2"], ["https://data.delijn.be/stops/307227", "https://tec.openplanner.team/stops/Bhalgar1"], ["https://data.delijn.be/stops/408969", "https://tec.openplanner.team/stops/LWAchpg1"], ["http://irail.be/stations/NMBS/008841442", "https://tec.openplanner.team/stops/LListie1"], ["https://data.delijn.be/stops/305435", "https://mivb.openplanner.team/stops/5518"], ["http://irail.be/stations/NMBS/008895455", "https://data.delijn.be/stops/207485"], ["http://irail.be/stations/NMBS/008400219", "https://tec.openplanner.team/stops/LMgkrui1"], ["https://data.delijn.be/stops/300988", "https://mivb.openplanner.team/stops/3763"], ["https://data.delijn.be/stops/301020", "https://mivb.openplanner.team/stops/1099"], ["http://irail.be/stations/NMBS/008811742", "https://tec.openplanner.team/stops/Bpecvme2"], ["https://data.delijn.be/stops/401399", "https://mivb.openplanner.team/stops/3132"], ["http://irail.be/stations/NMBS/008728654", "https://data.delijn.be/stops/508128"], ["https://data.delijn.be/stops/302000", "https://tec.openplanner.team/stops/Blemwro2"], ["https://data.delijn.be/stops/509236", "https://tec.openplanner.team/stops/H4co104a"], ["https://data.delijn.be/stops/300362", "https://tec.openplanner.team/stops/Bbrlpar2"], ["https://data.delijn.be/stops/301085", "https://mivb.openplanner.team/stops/1525"], ["https://data.delijn.be/stops/304442", "https://tec.openplanner.team/stops/Bwatali1"], ["http://irail.be/stations/NMBS/008821634", "https://data.delijn.be/stops/106587"], ["http://irail.be/stations/NMBS/008824224", "https://data.delijn.be/stops/101089"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LMalarg3"], ["http://irail.be/stations/NMBS/008841558", "https://tec.openplanner.team/stops/Llghec-1"], ["https://data.delijn.be/stops/300986", "https://mivb.openplanner.team/stops/0536"], ["https://data.delijn.be/stops/304720", "https://mivb.openplanner.team/stops/3280"], ["http://irail.be/stations/NMBS/008893179", "https://data.delijn.be/stops/200479"], ["https://data.delijn.be/stops/300993", "https://mivb.openplanner.team/stops/6304"], ["https://data.delijn.be/stops/300896", "https://mivb.openplanner.team/stops/3280"], ["https://data.delijn.be/stops/307852", "https://mivb.openplanner.team/stops/8232"], ["https://data.delijn.be/stops/301301", "https://mivb.openplanner.team/stops/1484"], ["https://data.delijn.be/stops/408855", "https://tec.openplanner.team/stops/LFCalte1"], ["http://irail.be/stations/NMBS/008895836", "https://data.delijn.be/stops/306718"], ["http://irail.be/stations/NMBS/008822517", "https://data.delijn.be/stops/301849"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/503080"], ["https://data.delijn.be/stops/300764", "https://mivb.openplanner.team/stops/2319"], ["https://data.delijn.be/stops/301055", "https://mivb.openplanner.team/stops/5014"], ["https://data.delijn.be/stops/307647", "https://tec.openplanner.team/stops/Balsbeg1"], ["http://irail.be/stations/NMBS/008831138", "https://data.delijn.be/stops/400863"], ["http://irail.be/stations/NMBS/008879004", "https://tec.openplanner.team/stops/H1be101a"], ["https://data.delijn.be/stops/207769", "https://tec.openplanner.team/stops/H5rx114a"], ["https://data.delijn.be/stops/307150", "https://tec.openplanner.team/stops/Bhaless2"], ["http://irail.be/stations/NMBS/008864816", "https://tec.openplanner.team/stops/N211ala"], ["https://data.delijn.be/stops/408913", "https://tec.openplanner.team/stops/LVu40--2"], ["http://irail.be/stations/NMBS/008872587", "https://tec.openplanner.team/stops/Bsmgmas1"], ["http://irail.be/stations/NMBS/008821089", "https://data.delijn.be/stops/109035"], ["http://irail.be/stations/NMBS/008822004", "https://data.delijn.be/stops/105057"], ["http://irail.be/stations/NMBS/008892056", "https://data.delijn.be/stops/208644"], ["https://data.delijn.be/stops/306176", "https://mivb.openplanner.team/stops/5605"], ["https://data.delijn.be/stops/301413", "https://tec.openplanner.team/stops/H1en106a"], ["https://data.delijn.be/stops/302407", "https://mivb.openplanner.team/stops/3609F"], ["https://data.delijn.be/stops/307651", "https://tec.openplanner.team/stops/Brsgter1"], ["https://data.delijn.be/stops/408886", "https://tec.openplanner.team/stops/LTErest2"], ["https://data.delijn.be/stops/407206", "https://tec.openplanner.team/stops/LHTmoul1"], ["https://data.delijn.be/stops/304210", "https://tec.openplanner.team/stops/Brsrabe2"], ["https://data.delijn.be/stops/307640", "https://mivb.openplanner.team/stops/1963"], ["https://data.delijn.be/stops/300982", "https://mivb.openplanner.team/stops/5803G"], ["http://irail.be/stations/NMBS/008833126", "https://data.delijn.be/stops/302924"], ["https://data.delijn.be/stops/304209", "https://tec.openplanner.team/stops/Brsrmon3"], ["https://data.delijn.be/stops/208024", "https://tec.openplanner.team/stops/H1og135a"], ["https://data.delijn.be/stops/401724", "https://tec.openplanner.team/stops/LWHzave2"], ["http://irail.be/stations/NMBS/008821519", "https://data.delijn.be/stops/104334"], ["http://irail.be/stations/NMBS/008811510", "https://data.delijn.be/stops/304072"], ["http://irail.be/stations/NMBS/008200101", "https://tec.openplanner.team/stops/LmNlieb1"], ["https://data.delijn.be/stops/304600", "https://mivb.openplanner.team/stops/1540"], ["https://data.delijn.be/stops/308356", "https://mivb.openplanner.team/stops/6202"], ["https://data.delijn.be/stops/509735", "https://tec.openplanner.team/stops/H4do106a"], ["http://irail.be/stations/NMBS/008895422", "https://data.delijn.be/stops/208752"], ["https://data.delijn.be/stops/300338", "https://tec.openplanner.team/stops/Balssvi1"], ["http://irail.be/stations/NMBS/008400526", "https://data.delijn.be/stops/105332"], ["https://data.delijn.be/stops/303652", "https://tec.openplanner.team/stops/Bovelge2"], ["http://irail.be/stations/NMBS/008400180", "https://data.delijn.be/stops/104636"], ["http://irail.be/stations/NMBS/008711184", "https://tec.openplanner.team/stops/X317aba"], ["http://irail.be/stations/NMBS/008893260", "https://data.delijn.be/stops/203027"], ["http://irail.be/stations/NMBS/008814266", "https://tec.openplanner.team/stops/Bwattri1"], ["http://irail.be/stations/NMBS/008861432", "https://tec.openplanner.team/stops/N526aaa"], ["https://data.delijn.be/stops/408447", "https://tec.openplanner.team/stops/LCAwals1"], ["http://irail.be/stations/NMBS/008400426", "https://data.delijn.be/stops/408869"], ["http://irail.be/stations/NMBS/008814258", "https://tec.openplanner.team/stops/Bblagard"], ["https://data.delijn.be/stops/305226", "https://mivb.openplanner.team/stops/9779"], ["https://data.delijn.be/stops/404067", "https://tec.openplanner.team/stops/LCAcruc2"], ["http://irail.be/stations/NMBS/008872066", "https://tec.openplanner.team/stops/Cchviad2"], ["https://data.delijn.be/stops/304862", "https://tec.openplanner.team/stops/Bbrlrph2"], ["http://irail.be/stations/NMBS/008886553", "https://tec.openplanner.team/stops/H1le120b"], ["https://data.delijn.be/stops/304208", "https://tec.openplanner.team/stops/Brsrmon1"], ["https://data.delijn.be/stops/504231", "https://tec.openplanner.team/stops/H4co105a"], ["http://irail.be/stations/NMBS/008819406", "https://data.delijn.be/stops/305558"], ["https://data.delijn.be/stops/302428", "https://tec.openplanner.team/stops/Bjod7co2"], ["http://irail.be/stations/NMBS/008831088", "https://data.delijn.be/stops/403974"], ["http://irail.be/stations/NMBS/008861531", "https://tec.openplanner.team/stops/Bchapir2"], ["https://mivb.openplanner.team/stops/2960F", "https://tec.openplanner.team/stops/Bixllep2"], ["https://data.delijn.be/stops/304437", "https://tec.openplanner.team/stops/Brsga811"], ["https://data.delijn.be/stops/301129", "https://tec.openplanner.team/stops/Buccfja1"], ["https://data.delijn.be/stops/300922", "https://mivb.openplanner.team/stops/3958"], ["https://data.delijn.be/stops/307213", "https://tec.openplanner.team/stops/Bhalvla2"], ["http://irail.be/stations/NMBS/008841202", "https://tec.openplanner.team/stops/Llonaes2"], ["http://irail.be/stations/NMBS/008811460", "https://tec.openplanner.team/stops/Blhufro1"], ["http://irail.be/stations/NMBS/008831807", "https://data.delijn.be/stops/407935"], ["http://irail.be/stations/NMBS/008831005", "https://data.delijn.be/stops/403445"], ["http://irail.be/stations/NMBS/008883121", "https://tec.openplanner.team/stops/H1ca106b"], ["https://data.delijn.be/stops/509236", "https://tec.openplanner.team/stops/H4co158a"], ["http://irail.be/stations/NMBS/008896735", "https://data.delijn.be/stops/504411"], ["https://data.delijn.be/stops/405715", "https://tec.openplanner.team/stops/Llghoch3"], ["https://data.delijn.be/stops/300389", "https://mivb.openplanner.team/stops/9655"], ["https://data.delijn.be/stops/400450", "https://tec.openplanner.team/stops/LBPauto1"], ["https://data.delijn.be/stops/307089", "https://tec.openplanner.team/stops/Brsg7fo2"], ["https://data.delijn.be/stops/300328", "https://tec.openplanner.team/stops/Balsnie2"], ["https://mivb.openplanner.team/stops/1811", "https://tec.openplanner.team/stops/Baudsju1"], ["http://irail.be/stations/NMBS/008200518", "https://tec.openplanner.team/stops/X688abb"], ["http://irail.be/stations/NMBS/008892403", "https://data.delijn.be/stops/503343"], ["http://irail.be/stations/NMBS/008895869", "https://data.delijn.be/stops/207153"], ["https://data.delijn.be/stops/307605", "https://tec.openplanner.team/stops/H1mk116b"], ["http://irail.be/stations/NMBS/008873122", "https://tec.openplanner.team/stops/N101aha"], ["https://data.delijn.be/stops/308046", "https://tec.openplanner.team/stops/Bovetdo1"], ["http://irail.be/stations/NMBS/008892007", "https://data.delijn.be/stops/200309"], ["https://data.delijn.be/stops/308957", "https://mivb.openplanner.team/stops/1598"], ["https://data.delijn.be/stops/306914", "https://tec.openplanner.team/stops/Bbosdra1"], ["http://irail.be/stations/NMBS/008822715", "https://data.delijn.be/stops/102599"], ["https://data.delijn.be/stops/408913", "https://tec.openplanner.team/stops/LDppana1"], ["http://irail.be/stations/NMBS/008896503", "https://data.delijn.be/stops/504154"], ["http://irail.be/stations/NMBS/008814142", "https://data.delijn.be/stops/307689"], ["https://data.delijn.be/stops/209610", "https://tec.openplanner.team/stops/H1by101b"], ["http://irail.be/stations/NMBS/008842036", "https://tec.openplanner.team/stops/Lceembo2"], ["https://mivb.openplanner.team/stops/2927", "https://tec.openplanner.team/stops/Bbxlple2"], ["http://irail.be/stations/NMBS/008884541", "https://tec.openplanner.team/stops/H1wl125a"], ["http://irail.be/stations/NMBS/008883220", "https://tec.openplanner.team/stops/H2ec104a"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1hh117b"], ["https://data.delijn.be/stops/407754", "https://tec.openplanner.team/stops/LWOunio2"], ["http://irail.be/stations/NMBS/008886348", "https://tec.openplanner.team/stops/H4lz126a"], ["http://irail.be/stations/NMBS/008891652", "https://data.delijn.be/stops/501114"], ["https://data.delijn.be/stops/307972", "https://tec.openplanner.team/stops/Bwavcar2"], ["https://data.delijn.be/stops/306001", "https://mivb.openplanner.team/stops/1544"], ["http://irail.be/stations/NMBS/008866001", "https://tec.openplanner.team/stops/X601azb"], ["http://irail.be/stations/NMBS/008822459", "https://data.delijn.be/stops/305965"], ["http://irail.be/stations/NMBS/008865003", "https://tec.openplanner.team/stops/X801bdc"], ["http://irail.be/stations/NMBS/008814365", "https://mivb.openplanner.team/stops/9682"], ["http://irail.be/stations/NMBS/008821402", "https://data.delijn.be/stops/105929"], ["https://data.delijn.be/stops/300875", "https://mivb.openplanner.team/stops/4274"], ["http://irail.be/stations/NMBS/008400131", "https://data.delijn.be/stops/108058"], ["https://data.delijn.be/stops/300754", "https://mivb.openplanner.team/stops/6810"], ["https://data.delijn.be/stops/208409", "https://tec.openplanner.team/stops/H5rx147a"], ["https://data.delijn.be/stops/301146", "https://tec.openplanner.team/stops/Buccpes2"], ["https://mivb.openplanner.team/stops/1354", "https://tec.openplanner.team/stops/Bixlfla2"], ["https://data.delijn.be/stops/300992", "https://mivb.openplanner.team/stops/3762"], ["https://data.delijn.be/stops/400490", "https://tec.openplanner.team/stops/LBSneuv2"], ["http://irail.be/stations/NMBS/008884889", "https://tec.openplanner.team/stops/H4ca121a"], ["https://data.delijn.be/stops/504383", "https://tec.openplanner.team/stops/H4pl136a"], ["http://irail.be/stations/NMBS/008891645", "https://data.delijn.be/stops/506662"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/503449"], ["http://irail.be/stations/NMBS/008881190", "https://tec.openplanner.team/stops/H1cv101a"], ["http://irail.be/stations/NMBS/008811403", "https://mivb.openplanner.team/stops/3156"], ["http://irail.be/stations/NMBS/008210014", "https://tec.openplanner.team/stops/X687aaa"], ["https://data.delijn.be/stops/300320", "https://tec.openplanner.team/stops/Bbeagae1"], ["http://irail.be/stations/NMBS/008863867", "https://tec.openplanner.team/stops/N308aia"], ["http://irail.be/stations/NMBS/008861200", "https://tec.openplanner.team/stops/Bgemgcw1"], ["http://irail.be/stations/NMBS/008843174", "https://tec.openplanner.team/stops/Loutras1"], ["http://irail.be/stations/NMBS/008883808", "https://tec.openplanner.team/stops/Btubind1"], ["https://data.delijn.be/stops/400493", "https://tec.openplanner.team/stops/LBSnouw2"], ["http://irail.be/stations/NMBS/008893542", "https://data.delijn.be/stops/207409"], ["https://data.delijn.be/stops/300408", "https://tec.openplanner.team/stops/Blemwro2"], ["https://data.delijn.be/stops/307241", "https://mivb.openplanner.team/stops/6068"], ["http://irail.be/stations/NMBS/008814159", "https://data.delijn.be/stops/307650"], ["http://irail.be/stations/NMBS/008893567", "https://data.delijn.be/stops/203946"], ["https://data.delijn.be/stops/302200", "https://tec.openplanner.team/stops/Bhoealt1"], ["https://data.delijn.be/stops/307973", "https://tec.openplanner.team/stops/Bwavfol1"], ["http://irail.be/stations/NMBS/008814118", "https://mivb.openplanner.team/stops/5161"], ["http://irail.be/stations/NMBS/008845146", "https://tec.openplanner.team/stops/X750bna"], ["https://data.delijn.be/stops/504534", "https://tec.openplanner.team/stops/H4pl112a"], ["http://irail.be/stations/NMBS/008896149", "https://data.delijn.be/stops/508847"], ["https://data.delijn.be/stops/304543", "https://mivb.openplanner.team/stops/9685"], ["https://data.delijn.be/stops/300831", "https://mivb.openplanner.team/stops/2860"], ["http://irail.be/stations/NMBS/008894201", "https://data.delijn.be/stops/205587"], ["https://data.delijn.be/stops/401411", "https://mivb.openplanner.team/stops/1762"], ["https://data.delijn.be/stops/308722", "https://tec.openplanner.team/stops/Bgoewat1"], ["http://irail.be/stations/NMBS/008895455", "https://data.delijn.be/stops/207487"], ["https://data.delijn.be/stops/300974", "https://tec.openplanner.team/stops/Baudwav2"], ["https://data.delijn.be/stops/305298", "https://tec.openplanner.team/stops/Bspkkhe2"], ["http://irail.be/stations/NMBS/008881455", "https://tec.openplanner.team/stops/H3th130b"], ["https://mivb.openplanner.team/stops/3117", "https://tec.openplanner.team/stops/Bbxlple2"], ["https://data.delijn.be/stops/301006", "https://mivb.openplanner.team/stops/2510"], ["https://mivb.openplanner.team/stops/6465", "https://tec.openplanner.team/stops/Bbxltou1"], ["https://data.delijn.be/stops/302436", "https://tec.openplanner.team/stops/Bsrgegl1"], ["https://data.delijn.be/stops/303576", "https://mivb.openplanner.team/stops/9779"], ["https://data.delijn.be/stops/504310", "https://tec.openplanner.team/stops/H4mo186a"], ["https://data.delijn.be/stops/303248", "https://tec.openplanner.team/stops/Blkbbvh1"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N562aya"], ["https://data.delijn.be/stops/407212", "https://tec.openplanner.team/stops/LHSheur1"], ["https://data.delijn.be/stops/509861", "https://tec.openplanner.team/stops/H4mo190b"], ["http://irail.be/stations/NMBS/008843901", "https://tec.openplanner.team/stops/Llgatel1"], ["http://irail.be/stations/NMBS/008861440", "https://tec.openplanner.team/stops/N527aea"], ["http://irail.be/stations/NMBS/008814340", "https://data.delijn.be/stops/303290"], ["http://irail.be/stations/NMBS/008884566", "https://tec.openplanner.team/stops/H1je213b"], ["http://irail.be/stations/NMBS/008863842", "https://tec.openplanner.team/stops/N338aib"], ["http://irail.be/stations/NMBS/008895505", "https://data.delijn.be/stops/209047"], ["https://data.delijn.be/stops/300300", "https://mivb.openplanner.team/stops/4168"], ["https://data.delijn.be/stops/400459", "https://tec.openplanner.team/stops/LEBmoul1"], ["http://irail.be/stations/NMBS/008843901", "https://tec.openplanner.team/stops/Lbrgrot2"], ["https://data.delijn.be/stops/408821", "https://tec.openplanner.team/stops/LMgbern2"], ["https://data.delijn.be/stops/302872", "https://mivb.openplanner.team/stops/2137"], ["http://irail.be/stations/NMBS/008871415", "https://tec.openplanner.team/stops/Cptsncb1"], ["https://data.delijn.be/stops/300954", "https://mivb.openplanner.team/stops/6805F"], ["http://irail.be/stations/NMBS/008861523", "https://tec.openplanner.team/stops/Bwlhppg3"], ["http://irail.be/stations/NMBS/008895620", "https://data.delijn.be/stops/306367"], ["https://data.delijn.be/stops/306159", "https://mivb.openplanner.team/stops/1339"], ["https://data.delijn.be/stops/410141", "https://tec.openplanner.team/stops/Lrctec-2"], ["https://data.delijn.be/stops/300811", "https://mivb.openplanner.team/stops/4129"], ["https://data.delijn.be/stops/305914", "https://mivb.openplanner.team/stops/1313"], ["https://data.delijn.be/stops/404652", "https://tec.openplanner.team/stops/Llabriq2"], ["https://data.delijn.be/stops/300795", "https://mivb.openplanner.team/stops/1499"], ["https://data.delijn.be/stops/308868", "https://mivb.openplanner.team/stops/1602"], ["http://irail.be/stations/NMBS/008892338", "https://data.delijn.be/stops/506505"], ["https://data.delijn.be/stops/305353", "https://tec.openplanner.team/stops/Brsregl3"], ["http://irail.be/stations/NMBS/008863438", "https://tec.openplanner.team/stops/N506bnb"], ["http://irail.be/stations/NMBS/008812252", "https://data.delijn.be/stops/304795"], ["http://irail.be/stations/NMBS/008893211", "https://data.delijn.be/stops/201452"], ["https://data.delijn.be/stops/305343", "https://tec.openplanner.team/stops/Bbgeegl2"], ["https://data.delijn.be/stops/307194", "https://tec.openplanner.team/stops/Bhalber3"], ["http://irail.be/stations/NMBS/008811445", "https://data.delijn.be/stops/302213"], ["https://data.delijn.be/stops/302812", "https://mivb.openplanner.team/stops/2029"], ["https://data.delijn.be/stops/208410", "https://tec.openplanner.team/stops/H5rx146b"], ["https://data.delijn.be/stops/305430", "https://mivb.openplanner.team/stops/1627"], ["http://irail.be/stations/NMBS/008871811", "https://tec.openplanner.team/stops/Cthnsnc"], ["http://irail.be/stations/NMBS/008869047", "https://tec.openplanner.team/stops/X615aub"], ["https://data.delijn.be/stops/302424", "https://tec.openplanner.team/stops/Bjodeco3"], ["http://irail.be/stations/NMBS/008864915", "https://tec.openplanner.team/stops/N254afa"], ["http://irail.be/stations/NMBS/008841327", "https://tec.openplanner.team/stops/LFOmc--2"], ["https://data.delijn.be/stops/303079", "https://tec.openplanner.team/stops/Bhevgro1"], ["https://data.delijn.be/stops/208192", "https://tec.openplanner.team/stops/H5rx122b"], ["http://irail.be/stations/NMBS/008821816", "https://data.delijn.be/stops/107328"], ["https://data.delijn.be/stops/301166", "https://mivb.openplanner.team/stops/2145"], ["http://irail.be/stations/NMBS/008891553", "https://data.delijn.be/stops/501533"], ["https://data.delijn.be/stops/307051", "https://mivb.openplanner.team/stops/9575"], ["https://data.delijn.be/stops/408864", "https://tec.openplanner.team/stops/LFCvoer2"], ["http://irail.be/stations/NMBS/008811759", "https://tec.openplanner.team/stops/Bpecvme2"], ["https://data.delijn.be/stops/405736", "https://tec.openplanner.team/stops/Lrcstad2"], ["https://data.delijn.be/stops/408973", "https://tec.openplanner.team/stops/LWAalou2"], ["http://irail.be/stations/NMBS/008893260", "https://data.delijn.be/stops/202027"], ["http://irail.be/stations/NMBS/008843406", "https://tec.openplanner.team/stops/LStroch2"], ["http://irail.be/stations/NMBS/008812260", "https://data.delijn.be/stops/303620"], ["https://data.delijn.be/stops/305352", "https://tec.openplanner.team/stops/Bwavbar2"], ["https://data.delijn.be/stops/306310", "https://mivb.openplanner.team/stops/5754"], ["https://data.delijn.be/stops/400664", "https://tec.openplanner.team/stops/LGAbois2"], ["http://irail.be/stations/NMBS/008864311", "https://tec.openplanner.team/stops/X991aha"], ["https://data.delijn.be/stops/408493", "https://tec.openplanner.team/stops/LWArege1"], ["https://data.delijn.be/stops/207783", "https://tec.openplanner.team/stops/H5rx150a"], ["https://data.delijn.be/stops/300781", "https://mivb.openplanner.team/stops/4601"], ["https://data.delijn.be/stops/305311", "https://mivb.openplanner.team/stops/9754B"], ["http://irail.be/stations/NMBS/008893542", "https://data.delijn.be/stops/201088"], ["https://data.delijn.be/stops/300861", "https://mivb.openplanner.team/stops/1019"], ["http://irail.be/stations/NMBS/008811148", "https://mivb.openplanner.team/stops/9756"], ["https://data.delijn.be/stops/301035", "https://mivb.openplanner.team/stops/0330342"], ["https://data.delijn.be/stops/209011", "https://tec.openplanner.team/stops/H5fl101a"], ["https://data.delijn.be/stops/401408", "https://mivb.openplanner.team/stops/0120226"], ["https://data.delijn.be/stops/208174", "https://tec.openplanner.team/stops/H5wo128a"], ["https://data.delijn.be/stops/305298", "https://tec.openplanner.team/stops/H1mk116b"], ["https://data.delijn.be/stops/300922", "https://mivb.openplanner.team/stops/3661"], ["https://data.delijn.be/stops/306969", "https://mivb.openplanner.team/stops/2810"], ["http://irail.be/stations/NMBS/008728654", "https://data.delijn.be/stops/504561"], ["http://irail.be/stations/NMBS/008814365", "https://data.delijn.be/stops/304550"], ["https://data.delijn.be/stops/301028", "https://mivb.openplanner.team/stops/5020"], ["https://data.delijn.be/stops/304580", "https://mivb.openplanner.team/stops/1901"], ["https://data.delijn.be/stops/308871", "https://tec.openplanner.team/stops/Bkrapri1"], ["https://data.delijn.be/stops/301055", "https://mivb.openplanner.team/stops/1350"], ["https://data.delijn.be/stops/300948", "https://mivb.openplanner.team/stops/1328"], ["https://data.delijn.be/stops/306284", "https://mivb.openplanner.team/stops/3199"], ["https://data.delijn.be/stops/300764", "https://mivb.openplanner.team/stops/1259"], ["https://data.delijn.be/stops/400668", "https://tec.openplanner.team/stops/LBpcren1"], ["https://data.delijn.be/stops/408831", "https://tec.openplanner.team/stops/LVImons2"], ["http://irail.be/stations/NMBS/008892106", "https://data.delijn.be/stops/202212"], ["http://irail.be/stations/NMBS/008871647", "https://tec.openplanner.team/stops/H1er109a"], ["https://data.delijn.be/stops/301025", "https://mivb.openplanner.team/stops/1169"], ["https://data.delijn.be/stops/301298", "https://mivb.openplanner.team/stops/3610F"], ["https://data.delijn.be/stops/301073", "https://mivb.openplanner.team/stops/4111"], ["https://data.delijn.be/stops/300751", "https://mivb.openplanner.team/stops/3610F"], ["https://data.delijn.be/stops/301064", "https://mivb.openplanner.team/stops/1261"], ["http://irail.be/stations/NMBS/008864006", "https://tec.openplanner.team/stops/N390aca"], ["http://irail.be/stations/NMBS/008894821", "https://data.delijn.be/stops/204446"], ["https://data.delijn.be/stops/304551", "https://mivb.openplanner.team/stops/9655"], ["https://data.delijn.be/stops/301062", "https://mivb.openplanner.team/stops/5089"], ["http://irail.be/stations/NMBS/008842002", "https://tec.openplanner.team/stops/Laggare1"], ["https://mivb.openplanner.team/stops/0702", "https://tec.openplanner.team/stops/Bbxlmid4"], ["http://irail.be/stations/NMBS/008812070", "https://data.delijn.be/stops/300223"], ["https://data.delijn.be/stops/403772", "https://tec.openplanner.team/stops/LLnlimb2"], ["http://irail.be/stations/NMBS/008861432", "https://tec.openplanner.team/stops/Bsdecdi2"], ["https://data.delijn.be/stops/408902", "https://tec.openplanner.team/stops/LFPknap2"], ["https://data.delijn.be/stops/308050", "https://tec.openplanner.team/stops/Btiegoo1"], ["https://data.delijn.be/stops/306159", "https://mivb.openplanner.team/stops/1638B"], ["https://data.delijn.be/stops/208192", "https://tec.openplanner.team/stops/H5rx130b"], ["http://irail.be/stations/NMBS/008895646", "https://data.delijn.be/stops/208588"], ["http://irail.be/stations/NMBS/008895463", "https://data.delijn.be/stops/206484"], ["https://mivb.openplanner.team/stops/2109B", "https://tec.openplanner.team/stops/Buccplj2"], ["https://data.delijn.be/stops/209186", "https://tec.openplanner.team/stops/H5rx135a"], ["https://data.delijn.be/stops/305423", "https://mivb.openplanner.team/stops/5521"], ["https://data.delijn.be/stops/304454", "https://tec.openplanner.team/stops/Brsgsan2"], ["http://irail.be/stations/NMBS/008892080", "https://data.delijn.be/stops/208957"], ["https://data.delijn.be/stops/209182", "https://tec.openplanner.team/stops/H5rx131a"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/304063"], ["http://irail.be/stations/NMBS/008831807", "https://data.delijn.be/stops/407856"], ["https://data.delijn.be/stops/303120", "https://mivb.openplanner.team/stops/3814"], ["https://data.delijn.be/stops/302402", "https://mivb.openplanner.team/stops/3613F"], ["https://data.delijn.be/stops/304020", "https://tec.openplanner.team/stops/Bovehst1"], ["http://irail.be/stations/NMBS/008893401", "https://data.delijn.be/stops/207640"], ["http://irail.be/stations/NMBS/008869088", "https://tec.openplanner.team/stops/X695aka"], ["http://irail.be/stations/NMBS/008872520", "https://tec.openplanner.team/stops/Bsamc7d2"], ["http://irail.be/stations/NMBS/008849072", "https://tec.openplanner.team/stops/X761aab"], ["https://data.delijn.be/stops/408562", "https://tec.openplanner.team/stops/LTobilz2"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2le149a"], ["https://data.delijn.be/stops/408492", "https://tec.openplanner.team/stops/LWApt--2"], ["https://data.delijn.be/stops/401409", "https://mivb.openplanner.team/stops/1113"], ["http://irail.be/stations/NMBS/008895752", "https://data.delijn.be/stops/206740"], ["https://data.delijn.be/stops/407688", "https://tec.openplanner.team/stops/LBSchpl2"], ["https://data.delijn.be/stops/302441", "https://tec.openplanner.team/stops/Bhoealt1"], ["http://irail.be/stations/NMBS/008731388", "https://tec.openplanner.team/stops/H4ry132b"], ["https://data.delijn.be/stops/300942", "https://mivb.openplanner.team/stops/3204"], ["https://data.delijn.be/stops/301004", "https://mivb.openplanner.team/stops/2898"], ["https://data.delijn.be/stops/405741", "https://tec.openplanner.team/stops/Llgcamp2"], ["https://data.delijn.be/stops/302903", "https://tec.openplanner.team/stops/Bhevhha1"], ["https://data.delijn.be/stops/400472", "https://tec.openplanner.team/stops/LBPunic2"], ["http://irail.be/stations/NMBS/008039904", "https://data.delijn.be/stops/404726"], ["http://irail.be/stations/NMBS/008200136", "https://tec.openplanner.team/stops/LwMzoll2"], ["https://mivb.openplanner.team/stops/8152", "https://tec.openplanner.team/stops/Bwolkra1"], ["https://data.delijn.be/stops/408726", "https://tec.openplanner.team/stops/LWieg--*"], ["https://data.delijn.be/stops/405342", "https://tec.openplanner.team/stops/Bneesjo1"], ["http://irail.be/stations/NMBS/008842838", "https://tec.openplanner.team/stops/LCTgare3"], ["https://data.delijn.be/stops/301924", "https://mivb.openplanner.team/stops/2017"], ["https://data.delijn.be/stops/401412", "https://mivb.openplanner.team/stops/5261"], ["http://irail.be/stations/NMBS/008843331", "https://tec.openplanner.team/stops/LAMhopi3"], ["http://irail.be/stations/NMBS/008813037", "https://mivb.openplanner.team/stops/0616"], ["http://irail.be/stations/NMBS/008811916", "https://mivb.openplanner.team/stops/2970"], ["https://data.delijn.be/stops/509236", "https://tec.openplanner.team/stops/H4co109b"], ["https://data.delijn.be/stops/303613", "https://tec.openplanner.team/stops/Bhalpar2"], ["https://data.delijn.be/stops/304547", "https://mivb.openplanner.team/stops/9685"], ["https://data.delijn.be/stops/308818", "https://mivb.openplanner.team/stops/6437F"], ["https://data.delijn.be/stops/302405", "https://mivb.openplanner.team/stops/7670108"], ["http://irail.be/stations/NMBS/008895471", "https://data.delijn.be/stops/206562"], ["https://data.delijn.be/stops/408951", "https://tec.openplanner.team/stops/LWAfabr1"], ["https://data.delijn.be/stops/401411", "https://tec.openplanner.team/stops/Bettcha1"], ["https://data.delijn.be/stops/303548", "https://mivb.openplanner.team/stops/9725"], ["https://data.delijn.be/stops/301010", "https://mivb.openplanner.team/stops/1236F"], ["https://data.delijn.be/stops/300764", "https://mivb.openplanner.team/stops/1204"], ["https://data.delijn.be/stops/307193", "https://tec.openplanner.team/stops/Bhalber2"], ["https://data.delijn.be/stops/304834", "https://mivb.openplanner.team/stops/9557"], ["https://mivb.openplanner.team/stops/1278", "https://tec.openplanner.team/stops/Bettcha1"], ["https://data.delijn.be/stops/408830", "https://tec.openplanner.team/stops/LMgbern2"], ["https://data.delijn.be/stops/300816", "https://mivb.openplanner.team/stops/4276"], ["https://data.delijn.be/stops/207773", "https://tec.openplanner.team/stops/H5rx127a"], ["https://data.delijn.be/stops/408806", "https://tec.openplanner.team/stops/LVIastr1"], ["http://irail.be/stations/NMBS/008872587", "https://tec.openplanner.team/stops/Btanpla3"], ["http://irail.be/stations/NMBS/008864410", "https://tec.openplanner.team/stops/X901ata"], ["http://irail.be/stations/NMBS/008015345", "https://data.delijn.be/stops/404726"], ["https://data.delijn.be/stops/300748", "https://mivb.openplanner.team/stops/8682"], ["https://data.delijn.be/stops/409796", "https://tec.openplanner.team/stops/LBSvi522"], ["http://irail.be/stations/NMBS/008811775", "https://data.delijn.be/stops/301681"], ["https://data.delijn.be/stops/408855", "https://tec.openplanner.team/stops/LFCkerk2"], ["https://data.delijn.be/stops/300936", "https://mivb.openplanner.team/stops/4110"], ["https://data.delijn.be/stops/306900", "https://tec.openplanner.team/stops/Bgoegma1"], ["https://data.delijn.be/stops/300995", "https://mivb.openplanner.team/stops/2250"], ["https://data.delijn.be/stops/209179", "https://tec.openplanner.team/stops/H5el100a"], ["http://irail.be/stations/NMBS/008829009", "https://data.delijn.be/stops/101778"], ["http://irail.be/stations/NMBS/008822715", "https://data.delijn.be/stops/102648"], ["https://data.delijn.be/stops/307792", "https://mivb.openplanner.team/stops/1067"], ["http://irail.be/stations/NMBS/008844230", "https://tec.openplanner.team/stops/LNEolne1"], ["http://irail.be/stations/NMBS/008863834", "https://tec.openplanner.team/stops/N217acd"], ["https://data.delijn.be/stops/300976", "https://mivb.openplanner.team/stops/3309F"], ["http://irail.be/stations/NMBS/008821030", "https://data.delijn.be/stops/103895"], ["https://data.delijn.be/stops/408587", "https://tec.openplanner.team/stops/LTymahr1"], ["http://irail.be/stations/NMBS/008865565", "https://tec.openplanner.team/stops/X850akb"], ["http://irail.be/stations/NMBS/008829009", "https://data.delijn.be/stops/104261"], ["https://data.delijn.be/stops/301316", "https://mivb.openplanner.team/stops/9802"], ["https://data.delijn.be/stops/302425", "https://tec.openplanner.team/stops/Bjodfab1"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1gh168a"], ["https://data.delijn.be/stops/308957", "https://mivb.openplanner.team/stops/3557"], ["http://irail.be/stations/NMBS/008871662", "https://tec.openplanner.team/stops/H1so132b"], ["https://mivb.openplanner.team/stops/5424", "https://tec.openplanner.team/stops/Bwbfhip1"], ["https://data.delijn.be/stops/301102", "https://mivb.openplanner.team/stops/1851"], ["http://irail.be/stations/NMBS/008812062", "https://data.delijn.be/stops/300287"], ["https://data.delijn.be/stops/408919", "https://tec.openplanner.team/stops/LTEkl121"], ["http://irail.be/stations/NMBS/008864501", "https://tec.openplanner.team/stops/N201aee"], ["https://data.delijn.be/stops/300988", "https://mivb.openplanner.team/stops/4500"], ["http://irail.be/stations/NMBS/008849064", "https://data.delijn.be/stops/408829"], ["https://data.delijn.be/stops/504323", "https://tec.openplanner.team/stops/H4mo207a"], ["https://data.delijn.be/stops/301050", "https://mivb.openplanner.team/stops/1792"], ["http://irail.be/stations/NMBS/008821154", "https://data.delijn.be/stops/105125"], ["http://irail.be/stations/NMBS/008894755", "https://data.delijn.be/stops/205498"], ["https://data.delijn.be/stops/207797", "https://tec.openplanner.team/stops/H4fa167b"], ["https://mivb.openplanner.team/stops/6931G", "https://tec.openplanner.team/stops/Buccptj1"], ["https://data.delijn.be/stops/408846", "https://tec.openplanner.team/stops/LRmsmvo4"], ["https://data.delijn.be/stops/304930", "https://mivb.openplanner.team/stops/9751"], ["https://data.delijn.be/stops/302850", "https://tec.openplanner.team/stops/Bwaakap2"], ["https://data.delijn.be/stops/300972", "https://mivb.openplanner.team/stops/3551"], ["http://irail.be/stations/NMBS/008884855", "https://tec.openplanner.team/stops/H5pe176a"], ["https://data.delijn.be/stops/408655", "https://tec.openplanner.team/stops/LTotrui2"], ["https://data.delijn.be/stops/301247", "https://tec.openplanner.team/stops/Bhalh311"], ["https://data.delijn.be/stops/407201", "https://tec.openplanner.team/stops/LWOwaer1"], ["https://data.delijn.be/stops/403701", "https://tec.openplanner.team/stops/LBGgeer2"], ["https://data.delijn.be/stops/300954", "https://mivb.openplanner.team/stops/4152"], ["https://data.delijn.be/stops/304455", "https://tec.openplanner.team/stops/Brsgsan1"], ["http://irail.be/stations/NMBS/008871514", "https://tec.openplanner.team/stops/Cfmpui82"], ["http://irail.be/stations/NMBS/008849072", "https://tec.openplanner.team/stops/X790afa"], ["http://irail.be/stations/NMBS/008894235", "https://data.delijn.be/stops/204589"], ["http://irail.be/stations/NMBS/008881406", "https://tec.openplanner.team/stops/H1ob335b"], ["https://data.delijn.be/stops/308676", "https://mivb.openplanner.team/stops/0526"], ["https://data.delijn.be/stops/306899", "https://tec.openplanner.team/stops/Bgoestu1"], ["https://data.delijn.be/stops/302448", "https://tec.openplanner.team/stops/Bzluegl2"], ["https://data.delijn.be/stops/304440", "https://tec.openplanner.team/stops/Brsgfon2"], ["http://irail.be/stations/NMBS/008821964", "https://data.delijn.be/stops/109158"], ["http://irail.be/stations/NMBS/008891314", "https://data.delijn.be/stops/507489"], ["http://irail.be/stations/NMBS/008832458", "https://data.delijn.be/stops/109260"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1ne140a"], ["https://data.delijn.be/stops/305165", "https://mivb.openplanner.team/stops/0900168"], ["http://irail.be/stations/NMBS/008861168", "https://tec.openplanner.team/stops/N534aea"], ["https://data.delijn.be/stops/405731", "https://tec.openplanner.team/stops/Lrcpaqu1"], ["https://data.delijn.be/stops/302404", "https://mivb.openplanner.team/stops/3609F"], ["https://mivb.openplanner.team/stops/2762", "https://tec.openplanner.team/stops/Buccvch2"], ["https://data.delijn.be/stops/300937", "https://mivb.openplanner.team/stops/4153"], ["https://data.delijn.be/stops/408865", "https://tec.openplanner.team/stops/LFCvoer1"], ["http://irail.be/stations/NMBS/008811601", "https://tec.openplanner.team/stops/Blimegl2"], ["https://data.delijn.be/stops/208181", "https://tec.openplanner.team/stops/H5rx131b"], ["https://data.delijn.be/stops/305891", "https://mivb.openplanner.team/stops/9626"], ["http://irail.be/stations/NMBS/008821246", "https://data.delijn.be/stops/107236"], ["http://irail.be/stations/NMBS/008895612", "https://data.delijn.be/stops/208611"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Cthrlef1"], ["http://irail.be/stations/NMBS/008200100", "https://tec.openplanner.team/stops/X685aib"], ["https://data.delijn.be/stops/300856", "https://mivb.openplanner.team/stops/0531"], ["http://irail.be/stations/NMBS/008821089", "https://data.delijn.be/stops/107600"], ["https://mivb.openplanner.team/stops/5458", "https://tec.openplanner.team/stops/Bixlozo2"], ["https://data.delijn.be/stops/404663", "https://tec.openplanner.team/stops/LPAchpl1"], ["https://mivb.openplanner.team/stops/2137", "https://tec.openplanner.team/stops/Buccrac1"], ["https://data.delijn.be/stops/300973", "https://mivb.openplanner.team/stops/1756B"], ["https://data.delijn.be/stops/307089", "https://tec.openplanner.team/stops/Brsg7fo1"], ["http://irail.be/stations/NMBS/008811742", "https://tec.openplanner.team/stops/Bgzdgst1"], ["http://irail.be/stations/NMBS/008811437", "https://mivb.openplanner.team/stops/5453"], ["https://data.delijn.be/stops/308854", "https://mivb.openplanner.team/stops/2871"], ["https://data.delijn.be/stops/303994", "https://tec.openplanner.team/stops/Bbldmun1"], ["https://data.delijn.be/stops/301956", "https://mivb.openplanner.team/stops/6484B"], ["http://irail.be/stations/NMBS/008895091", "https://data.delijn.be/stops/207684"], ["http://irail.be/stations/NMBS/008812161", "https://data.delijn.be/stops/207348"], ["http://irail.be/stations/NMBS/008849064", "https://tec.openplanner.team/stops/LLxconj1"], ["http://irail.be/stations/NMBS/008814126", "https://mivb.openplanner.team/stops/1258G"], ["https://data.delijn.be/stops/301019", "https://mivb.openplanner.team/stops/4002G"], ["https://data.delijn.be/stops/404654", "https://tec.openplanner.team/stops/LJU51--1"], ["https://data.delijn.be/stops/208180", "https://tec.openplanner.team/stops/H5el102b"], ["https://data.delijn.be/stops/302439", "https://tec.openplanner.team/stops/Bzlucam1"], ["https://data.delijn.be/stops/302479", "https://mivb.openplanner.team/stops/1570"], ["http://irail.be/stations/NMBS/008821022", "https://data.delijn.be/stops/102060"], ["https://data.delijn.be/stops/305145", "https://tec.openplanner.team/stops/H1mk108a"], ["https://data.delijn.be/stops/304441", "https://tec.openplanner.team/stops/Brsggde1"], ["http://irail.be/stations/NMBS/008728710", "https://tec.openplanner.team/stops/H4lg106a"], ["http://irail.be/stations/NMBS/008821121", "https://data.delijn.be/stops/102884"], ["https://data.delijn.be/stops/405700", "https://tec.openplanner.team/stops/Llghugo2"], ["https://data.delijn.be/stops/400675", "https://tec.openplanner.team/stops/Blanmde1"], ["http://irail.be/stations/NMBS/008829009", "https://data.delijn.be/stops/102323"], ["https://data.delijn.be/stops/307831", "https://mivb.openplanner.team/stops/9557"], ["https://data.delijn.be/stops/407648", "https://tec.openplanner.team/stops/LBPmais2"], ["https://data.delijn.be/stops/509238", "https://tec.openplanner.team/stops/H4co144a"], ["https://data.delijn.be/stops/401410", "https://mivb.openplanner.team/stops/0820270"], ["https://data.delijn.be/stops/305918", "https://mivb.openplanner.team/stops/1195"], ["http://irail.be/stations/NMBS/008895638", "https://data.delijn.be/stops/307302"], ["https://data.delijn.be/stops/304687", "https://tec.openplanner.team/stops/Bhalalb2"], ["https://data.delijn.be/stops/307640", "https://mivb.openplanner.team/stops/1939"], ["https://data.delijn.be/stops/307698", "https://tec.openplanner.team/stops/Brsgcfl2"], ["http://irail.be/stations/NMBS/008871712", "https://tec.openplanner.team/stops/H1bi103b"], ["http://irail.be/stations/NMBS/008885530", "https://tec.openplanner.team/stops/H4my122b"], ["https://data.delijn.be/stops/302415", "https://tec.openplanner.team/stops/Bjodcad2"], ["https://data.delijn.be/stops/301067", "https://mivb.openplanner.team/stops/3225"], ["https://data.delijn.be/stops/301690", "https://tec.openplanner.team/stops/Bnetvan1"], ["http://irail.be/stations/NMBS/008894433", "https://data.delijn.be/stops/204098"], ["https://data.delijn.be/stops/408779", "https://tec.openplanner.team/stops/LOdcris1"], ["https://data.delijn.be/stops/305340", "https://tec.openplanner.team/stops/Bwavtrt2"], ["https://data.delijn.be/stops/404665", "https://tec.openplanner.team/stops/LPAmosa1"], ["http://irail.be/stations/NMBS/008812013", "https://mivb.openplanner.team/stops/0470651"], ["https://mivb.openplanner.team/stops/5823", "https://tec.openplanner.team/stops/Bucccre1"], ["http://irail.be/stations/NMBS/008833449", "https://tec.openplanner.team/stops/Bezegar2"], ["http://irail.be/stations/NMBS/008871183", "https://tec.openplanner.team/stops/Chhverr2"], ["https://data.delijn.be/stops/207778", "https://tec.openplanner.team/stops/H5rx101a"], ["http://irail.be/stations/NMBS/008869047", "https://tec.openplanner.team/stops/X615bia"], ["https://data.delijn.be/stops/409000", "https://tec.openplanner.team/stops/LWAclos2"], ["https://data.delijn.be/stops/302795", "https://mivb.openplanner.team/stops/2017"], ["https://data.delijn.be/stops/307878", "https://mivb.openplanner.team/stops/1552"], ["http://irail.be/stations/NMBS/008821337", "https://data.delijn.be/stops/107236"], ["https://data.delijn.be/stops/300956", "https://mivb.openplanner.team/stops/5283F"], ["https://data.delijn.be/stops/408903", "https://tec.openplanner.team/stops/LFPknap1"], ["https://data.delijn.be/stops/303224", "https://mivb.openplanner.team/stops/3851"], ["http://irail.be/stations/NMBS/008894425", "https://data.delijn.be/stops/205226"], ["https://data.delijn.be/stops/301063", "https://mivb.openplanner.team/stops/4600"], ["http://irail.be/stations/NMBS/008885068", "https://tec.openplanner.team/stops/H4fr142a"], ["https://data.delijn.be/stops/303226", "https://mivb.openplanner.team/stops/5963"], ["http://irail.be/stations/NMBS/008849072", "https://tec.openplanner.team/stops/X793acb"], ["http://irail.be/stations/NMBS/008722326", "https://data.delijn.be/stops/505362"], ["http://irail.be/stations/NMBS/008814449", "https://mivb.openplanner.team/stops/2108"], ["https://data.delijn.be/stops/509385", "https://tec.openplanner.team/stops/H4pl137a"], ["https://data.delijn.be/stops/301052", "https://mivb.openplanner.team/stops/5013F"], ["https://data.delijn.be/stops/504534", "https://tec.openplanner.team/stops/H4pl121a"], ["http://irail.be/stations/NMBS/008871100", "https://tec.openplanner.team/stops/Cmamons2"], ["http://irail.be/stations/NMBS/008895570", "https://data.delijn.be/stops/217004"], ["https://data.delijn.be/stops/300756", "https://mivb.openplanner.team/stops/3856"], ["https://data.delijn.be/stops/405347", "https://tec.openplanner.team/stops/Bezegar2"], ["https://data.delijn.be/stops/407230", "https://tec.openplanner.team/stops/LORvill3"], ["http://irail.be/stations/NMBS/008200130", "https://tec.openplanner.team/stops/X663aca"], ["http://irail.be/stations/NMBS/008896388", "https://data.delijn.be/stops/508069"], ["https://data.delijn.be/stops/407491", "https://tec.openplanner.team/stops/LToluik1"], ["https://data.delijn.be/stops/409797", "https://tec.openplanner.team/stops/LBSchpl2"], ["http://irail.be/stations/NMBS/008728686", "https://tec.openplanner.team/stops/H4ne139b"], ["http://irail.be/stations/NMBS/008895000", "https://data.delijn.be/stops/204973"], ["http://irail.be/stations/NMBS/008879004", "https://tec.openplanner.team/stops/Ceqmeti1"], ["http://irail.be/stations/NMBS/008896735", "https://data.delijn.be/stops/504427"], ["http://irail.be/stations/NMBS/008843067", "https://tec.openplanner.team/stops/Lsemara2"], ["http://irail.be/stations/NMBS/008896388", "https://data.delijn.be/stops/503074"], ["http://irail.be/stations/NMBS/008812047", "https://data.delijn.be/stops/308856"], ["https://data.delijn.be/stops/408800", "https://tec.openplanner.team/stops/LVIsacr1"], ["https://mivb.openplanner.team/stops/1715", "https://tec.openplanner.team/stops/Bettars2"], ["http://irail.be/stations/NMBS/008872413", "https://tec.openplanner.team/stops/Cflchap2"], ["https://data.delijn.be/stops/304720", "https://mivb.openplanner.team/stops/3203"], ["https://data.delijn.be/stops/305356", "https://tec.openplanner.team/stops/Bbgepau1"], ["https://data.delijn.be/stops/305448", "https://mivb.openplanner.team/stops/0430948"], ["https://mivb.openplanner.team/stops/8352", "https://tec.openplanner.team/stops/Bbxlmid1"], ["http://irail.be/stations/NMBS/008842630", "https://tec.openplanner.team/stops/LTIpora1"], ["https://data.delijn.be/stops/400682", "https://tec.openplanner.team/stops/LHgpost1"], ["https://data.delijn.be/stops/305890", "https://mivb.openplanner.team/stops/9634"], ["https://data.delijn.be/stops/400471", "https://tec.openplanner.team/stops/LEMfort2"], ["http://irail.be/stations/NMBS/008821022", "https://data.delijn.be/stops/101992"], ["http://irail.be/stations/NMBS/008895646", "https://data.delijn.be/stops/302135"], ["https://data.delijn.be/stops/300919", "https://mivb.openplanner.team/stops/3317"], ["http://irail.be/stations/NMBS/008844339", "https://tec.openplanner.team/stops/Lpevove2"], ["https://data.delijn.be/stops/408991", "https://tec.openplanner.team/stops/LWAlieg1"], ["http://irail.be/stations/NMBS/008871415", "https://tec.openplanner.team/stops/Cfosurs2"], ["https://data.delijn.be/stops/300319", "https://tec.openplanner.team/stops/Bbeagae1"], ["http://irail.be/stations/NMBS/008895711", "https://data.delijn.be/stops/206798"], ["https://data.delijn.be/stops/208764", "https://tec.openplanner.team/stops/H5rx113a"], ["http://irail.be/stations/NMBS/008844321", "https://tec.openplanner.team/stops/LTHcent1"], ["https://data.delijn.be/stops/400483", "https://tec.openplanner.team/stops/LRGeg--1"], ["https://mivb.openplanner.team/stops/1971", "https://tec.openplanner.team/stops/Buccgob1"], ["https://data.delijn.be/stops/303668", "https://mivb.openplanner.team/stops/1743"], ["https://mivb.openplanner.team/stops/1159", "https://tec.openplanner.team/stops/Bettlha1"], ["https://data.delijn.be/stops/302812", "https://mivb.openplanner.team/stops/2078"], ["https://data.delijn.be/stops/408856", "https://tec.openplanner.team/stops/LFClage1"], ["http://irail.be/stations/NMBS/008896412", "https://tec.openplanner.team/stops/H4co110a"], ["https://data.delijn.be/stops/300851", "https://mivb.openplanner.team/stops/6608G"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N349aba"], ["https://data.delijn.be/stops/301025", "https://mivb.openplanner.team/stops/0340241"], ["https://mivb.openplanner.team/stops/1762", "https://tec.openplanner.team/stops/Bettbue1"], ["https://data.delijn.be/stops/308730", "https://tec.openplanner.team/stops/Bgoemgr1"], ["http://irail.be/stations/NMBS/008821857", "https://data.delijn.be/stops/108053"], ["https://data.delijn.be/stops/301926", "https://mivb.openplanner.team/stops/9851"], ["https://data.delijn.be/stops/307030", "https://tec.openplanner.team/stops/Balswwe1"], ["https://data.delijn.be/stops/208767", "https://tec.openplanner.team/stops/H5rx103b"], ["http://irail.be/stations/NMBS/008822475", "https://data.delijn.be/stops/300646"], ["http://irail.be/stations/NMBS/008844313", "https://tec.openplanner.team/stops/Lpemata1"], ["https://data.delijn.be/stops/300949", "https://mivb.openplanner.team/stops/4071"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/503466"], ["https://data.delijn.be/stops/302836", "https://tec.openplanner.team/stops/LLaover4"], ["https://data.delijn.be/stops/303960", "https://tec.openplanner.team/stops/Bhevwzw2"], ["https://data.delijn.be/stops/408600", "https://tec.openplanner.team/stops/LTowijk1"], ["https://data.delijn.be/stops/306176", "https://tec.openplanner.team/stops/Bkrabhu1"], ["http://irail.be/stations/NMBS/008812211", "https://mivb.openplanner.team/stops/4273F"], ["https://data.delijn.be/stops/404664", "https://tec.openplanner.team/stops/LPAvill1"], ["http://irail.be/stations/NMBS/008811510", "https://tec.openplanner.team/stops/Blhuone1"], ["http://irail.be/stations/NMBS/008891033", "https://data.delijn.be/stops/507140"], ["https://data.delijn.be/stops/304719", "https://mivb.openplanner.team/stops/1315"], ["http://irail.be/stations/NMBS/008812021", "https://mivb.openplanner.team/stops/4132B"], ["https://data.delijn.be/stops/305198", "https://tec.openplanner.team/stops/Btiegar1"], ["https://data.delijn.be/stops/400452", "https://tec.openplanner.team/stops/LRGile-1"], ["http://irail.be/stations/NMBS/008200510", "https://tec.openplanner.team/stops/X684abb"], ["http://irail.be/stations/NMBS/008895620", "https://data.delijn.be/stops/206800"], ["https://data.delijn.be/stops/301129", "https://mivb.openplanner.team/stops/2142"], ["http://irail.be/stations/NMBS/008894151", "https://data.delijn.be/stops/202155"], ["http://irail.be/stations/NMBS/008864345", "https://tec.openplanner.team/stops/X902afc"], ["http://irail.be/stations/NMBS/008833134", "https://data.delijn.be/stops/303977"], ["http://irail.be/stations/NMBS/008843133", "https://tec.openplanner.team/stops/Lscpamp2"], ["https://data.delijn.be/stops/300887", "https://mivb.openplanner.team/stops/4268"], ["http://irail.be/stations/NMBS/008814464", "https://tec.openplanner.team/stops/Buccham1"], ["http://irail.be/stations/NMBS/008893062", "https://data.delijn.be/stops/200605"], ["https://data.delijn.be/stops/408867", "https://tec.openplanner.team/stops/LFCvoge3"], ["https://data.delijn.be/stops/408839", "https://tec.openplanner.team/stops/LRmkerk2"], ["https://data.delijn.be/stops/302423", "https://tec.openplanner.team/stops/Bjodcsb2"], ["http://irail.be/stations/NMBS/008842689", "https://tec.openplanner.team/stops/LPOpass1"], ["https://mivb.openplanner.team/stops/5817F", "https://tec.openplanner.team/stops/Bucccal3"], ["https://data.delijn.be/stops/408827", "https://tec.openplanner.team/stops/LMgkrui1"], ["https://data.delijn.be/stops/305424", "https://mivb.openplanner.team/stops/5520F"], ["http://irail.be/stations/NMBS/008821709", "https://data.delijn.be/stops/102613"], ["https://mivb.openplanner.team/stops/5530", "https://tec.openplanner.team/stops/Bwolkra2"], ["https://data.delijn.be/stops/301400", "https://mivb.openplanner.team/stops/2659"], ["https://data.delijn.be/stops/300876", "https://mivb.openplanner.team/stops/4277"], ["https://data.delijn.be/stops/408912", "https://tec.openplanner.team/stops/LVukabi2"], ["http://irail.be/stations/NMBS/008893708", "https://data.delijn.be/stops/202686"], ["http://irail.be/stations/NMBS/008811544", "https://tec.openplanner.team/stops/Blimrof1"], ["https://data.delijn.be/stops/305908", "https://mivb.openplanner.team/stops/9605"], ["https://data.delijn.be/stops/306066", "https://tec.openplanner.team/stops/Blemsta2"], ["https://data.delijn.be/stops/303554", "https://mivb.openplanner.team/stops/3201"], ["https://data.delijn.be/stops/333233", "https://mivb.openplanner.team/stops/7830352"], ["https://data.delijn.be/stops/408882", "https://tec.openplanner.team/stops/LFCkett2"], ["https://data.delijn.be/stops/509239", "https://tec.openplanner.team/stops/H4co144b"], ["https://data.delijn.be/stops/303632", "https://mivb.openplanner.team/stops/2262"], ["http://irail.be/stations/NMBS/008811130", "https://mivb.openplanner.team/stops/2294B"], ["https://mivb.openplanner.team/stops/1962F", "https://tec.openplanner.team/stops/Bucccal4"], ["https://data.delijn.be/stops/301041", "https://mivb.openplanner.team/stops/4212B"], ["https://data.delijn.be/stops/410355", "https://tec.openplanner.team/stops/Llgcadr6"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bsmgpon1"], ["http://irail.be/stations/NMBS/008895489", "https://data.delijn.be/stops/206556"], ["http://irail.be/stations/NMBS/008821816", "https://data.delijn.be/stops/104752"], ["http://irail.be/stations/NMBS/008893062", "https://data.delijn.be/stops/202860"], ["http://irail.be/stations/NMBS/008842002", "https://tec.openplanner.team/stops/Lagjado6"], ["https://data.delijn.be/stops/300762", "https://mivb.openplanner.team/stops/8642"], ["https://data.delijn.be/stops/407581", "https://tec.openplanner.team/stops/LDpulve2"], ["https://data.delijn.be/stops/208757", "https://tec.openplanner.team/stops/H5rx101b"], ["https://data.delijn.be/stops/307682", "https://mivb.openplanner.team/stops/5921G"], ["http://irail.be/stations/NMBS/008844404", "https://tec.openplanner.team/stops/LSPclai2"], ["https://data.delijn.be/stops/408960", "https://tec.openplanner.team/stops/LWAmouh1"], ["https://data.delijn.be/stops/303585", "https://mivb.openplanner.team/stops/9726"], ["https://data.delijn.be/stops/301155", "https://mivb.openplanner.team/stops/2118"], ["https://data.delijn.be/stops/400491", "https://tec.openplanner.team/stops/LBSneuv1"], ["https://data.delijn.be/stops/401417", "https://mivb.openplanner.team/stops/2283"], ["https://data.delijn.be/stops/405346", "https://tec.openplanner.team/stops/Bezegar2"], ["http://irail.be/stations/NMBS/008895612", "https://data.delijn.be/stops/209611"], ["http://irail.be/stations/NMBS/008892601", "https://data.delijn.be/stops/208243"], ["http://irail.be/stations/NMBS/008824232", "https://data.delijn.be/stops/104458"], ["https://data.delijn.be/stops/504236", "https://tec.openplanner.team/stops/H4co109b"], ["https://data.delijn.be/stops/400477", "https://tec.openplanner.team/stops/LBPmili2"], ["http://irail.be/stations/NMBS/008895489", "https://data.delijn.be/stops/206927"], ["https://mivb.openplanner.team/stops/2291B", "https://tec.openplanner.team/stops/Baudsju1"], ["https://data.delijn.be/stops/302876", "https://mivb.openplanner.team/stops/2718"], ["https://data.delijn.be/stops/408896", "https://tec.openplanner.team/stops/LFPgeme2"], ["http://irail.be/stations/NMBS/008883238", "https://tec.openplanner.team/stops/H2fa112a"], ["https://data.delijn.be/stops/401401", "https://mivb.openplanner.team/stops/3276"], ["https://data.delijn.be/stops/405705", "https://tec.openplanner.team/stops/LlgLAMB7"], ["https://data.delijn.be/stops/304088", "https://tec.openplanner.team/stops/Bovesog1"], ["https://data.delijn.be/stops/306313", "https://mivb.openplanner.team/stops/5822F"], ["https://data.delijn.be/stops/301048", "https://mivb.openplanner.team/stops/2536"], ["https://data.delijn.be/stops/404669", "https://tec.openplanner.team/stops/LVSpota2"], ["https://data.delijn.be/stops/302443", "https://tec.openplanner.team/stops/Bzlucam1"], ["https://mivb.openplanner.team/stops/4854C", "https://tec.openplanner.team/stops/Buccobs1"], ["https://data.delijn.be/stops/300744", "https://mivb.openplanner.team/stops/2220"], ["http://irail.be/stations/NMBS/008814167", "https://data.delijn.be/stops/304462"], ["https://data.delijn.be/stops/208408", "https://tec.openplanner.team/stops/H5rx139a"], ["https://data.delijn.be/stops/300905", "https://mivb.openplanner.team/stops/2960F"], ["https://data.delijn.be/stops/306396", "https://mivb.openplanner.team/stops/9728"], ["https://data.delijn.be/stops/305280", "https://mivb.openplanner.team/stops/9754B"], ["https://data.delijn.be/stops/303223", "https://mivb.openplanner.team/stops/3850"], ["http://irail.be/stations/NMBS/008883022", "https://tec.openplanner.team/stops/Bquecge1"], ["https://data.delijn.be/stops/404675", "https://tec.openplanner.team/stops/LVSpota1"], ["http://irail.be/stations/NMBS/008882206", "https://tec.openplanner.team/stops/H2ll197a"], ["https://data.delijn.be/stops/400473", "https://tec.openplanner.team/stops/LGLc12-3"], ["https://data.delijn.be/stops/304535", "https://mivb.openplanner.team/stops/1859"], ["https://data.delijn.be/stops/408493", "https://tec.openplanner.team/stops/LWAvand1"], ["https://data.delijn.be/stops/307638", "https://mivb.openplanner.team/stops/1958B"], ["https://data.delijn.be/stops/301003", "https://mivb.openplanner.team/stops/5865"], ["https://data.delijn.be/stops/509003", "https://tec.openplanner.team/stops/H4mo133b"], ["https://mivb.openplanner.team/stops/8051", "https://tec.openplanner.team/stops/Bbxltou1"], ["https://data.delijn.be/stops/405440", "https://tec.openplanner.team/stops/LWHtrui1"], ["https://mivb.openplanner.team/stops/0230134", "https://tec.openplanner.team/stops/Bauddel2"], ["https://data.delijn.be/stops/305349", "https://tec.openplanner.team/stops/Bbgerlr1"], ["https://data.delijn.be/stops/508679", "https://tec.openplanner.team/stops/H4ae101a"], ["http://irail.be/stations/NMBS/008895505", "https://data.delijn.be/stops/209489"], ["https://data.delijn.be/stops/509382", "https://tec.openplanner.team/stops/H4pl121b"], ["https://data.delijn.be/stops/301004", "https://mivb.openplanner.team/stops/3166"], ["https://data.delijn.be/stops/304453", "https://tec.openplanner.team/stops/Brsgrol1"], ["http://irail.be/stations/NMBS/008874559", "https://tec.openplanner.team/stops/Cfamonu4"], ["https://mivb.openplanner.team/stops/1805", "https://tec.openplanner.team/stops/Bettcha1"], ["https://data.delijn.be/stops/307211", "https://tec.openplanner.team/stops/Bbchgod1"], ["https://data.delijn.be/stops/408875", "https://tec.openplanner.team/stops/LFMkrin2"], ["https://data.delijn.be/stops/300775", "https://mivb.openplanner.team/stops/7710204"], ["http://irail.be/stations/NMBS/008886561", "https://tec.openplanner.team/stops/H1le125b"], ["https://data.delijn.be/stops/505992", "https://tec.openplanner.team/stops/H4ar100a"], ["https://data.delijn.be/stops/410142", "https://tec.openplanner.team/stops/Lanc14v1"], ["http://irail.be/stations/NMBS/008811510", "https://data.delijn.be/stops/302928"], ["http://irail.be/stations/NMBS/008871670", "https://tec.openplanner.team/stops/H1ls108a"], ["https://data.delijn.be/stops/305174", "https://tec.openplanner.team/stops/Bwavgar1"], ["http://irail.be/stations/NMBS/008824232", "https://data.delijn.be/stops/105979"], ["https://data.delijn.be/stops/306897", "https://tec.openplanner.team/stops/Bgoewat2"], ["https://data.delijn.be/stops/304720", "https://mivb.openplanner.team/stops/3321"], ["https://data.delijn.be/stops/307553", "https://tec.openplanner.team/stops/Bstecal2"], ["https://data.delijn.be/stops/300936", "https://mivb.openplanner.team/stops/4063"], ["https://data.delijn.be/stops/306814", "https://mivb.openplanner.team/stops/1510"], ["https://mivb.openplanner.team/stops/5413F", "https://tec.openplanner.team/stops/Bixlozo1"], ["http://irail.be/stations/NMBS/008865227", "https://tec.openplanner.team/stops/X898aca"], ["https://data.delijn.be/stops/209820", "https://tec.openplanner.team/stops/H5rx129b"], ["http://irail.be/stations/NMBS/008895745", "https://data.delijn.be/stops/206729"], ["https://data.delijn.be/stops/300927", "https://mivb.openplanner.team/stops/3961"], ["https://data.delijn.be/stops/301017", "https://mivb.openplanner.team/stops/1308G"], ["https://data.delijn.be/stops/304660", "https://mivb.openplanner.team/stops/5963"], ["http://irail.be/stations/NMBS/008872553", "https://tec.openplanner.team/stops/Btilmar1"], ["https://data.delijn.be/stops/301053", "https://mivb.openplanner.team/stops/4213"], ["https://data.delijn.be/stops/303670", "https://mivb.openplanner.team/stops/1732"], ["https://data.delijn.be/stops/408506", "https://tec.openplanner.team/stops/LTobilz1"], ["https://data.delijn.be/stops/301042", "https://mivb.openplanner.team/stops/3226F"], ["http://irail.be/stations/NMBS/008884327", "https://tec.openplanner.team/stops/H1bo109a"], ["http://irail.be/stations/NMBS/008889045", "https://tec.openplanner.team/stops/H4te253a"], ["https://data.delijn.be/stops/301015", "https://mivb.openplanner.team/stops/4163"], ["http://irail.be/stations/NMBS/008811130", "https://mivb.openplanner.team/stops/2988"], ["https://data.delijn.be/stops/301168", "https://mivb.openplanner.team/stops/5916"], ["https://data.delijn.be/stops/408846", "https://tec.openplanner.team/stops/LRmsmvo3"], ["https://data.delijn.be/stops/307051", "https://mivb.openplanner.team/stops/9553"], ["https://data.delijn.be/stops/504304", "https://tec.openplanner.team/stops/H4ar102b"], ["http://irail.be/stations/NMBS/008861168", "https://tec.openplanner.team/stops/N534bpa"], ["http://irail.be/stations/NMBS/008884855", "https://tec.openplanner.team/stops/H5pe126a"], ["https://data.delijn.be/stops/300904", "https://tec.openplanner.team/stops/Bixllep1"], ["https://data.delijn.be/stops/300315", "https://tec.openplanner.team/stops/Bbsggot1"], ["https://data.delijn.be/stops/307557", "https://tec.openplanner.team/stops/Bstemco2"], ["http://irail.be/stations/NMBS/008886546", "https://data.delijn.be/stops/208543"], ["https://data.delijn.be/stops/306159", "https://mivb.openplanner.team/stops/8151"], ["https://data.delijn.be/stops/304462", "https://tec.openplanner.team/stops/Brsgtou1"], ["https://data.delijn.be/stops/410319", "https://tec.openplanner.team/stops/LPlpomp2"], ["http://irail.be/stations/NMBS/008822533", "https://data.delijn.be/stops/301861"], ["https://data.delijn.be/stops/300969", "https://tec.openplanner.team/stops/Baudsta2"], ["https://data.delijn.be/stops/305344", "https://tec.openplanner.team/stops/Bbgeegl2"], ["http://irail.be/stations/NMBS/008865128", "https://tec.openplanner.team/stops/X725aza"], ["http://irail.be/stations/NMBS/008832227", "https://data.delijn.be/stops/401961"], ["https://mivb.openplanner.team/stops/1943", "https://tec.openplanner.team/stops/Buccdst1"], ["https://data.delijn.be/stops/301304", "https://mivb.openplanner.team/stops/4599"], ["https://data.delijn.be/stops/301414", "https://tec.openplanner.team/stops/Bengvma1"], ["https://data.delijn.be/stops/307922", "https://mivb.openplanner.team/stops/2874"], ["https://mivb.openplanner.team/stops/5031F", "https://tec.openplanner.team/stops/Buccplj2"], ["https://data.delijn.be/stops/305271", "https://mivb.openplanner.team/stops/9786"], ["https://data.delijn.be/stops/308124", "https://tec.openplanner.team/stops/Boplsma4"], ["https://data.delijn.be/stops/306115", "https://mivb.openplanner.team/stops/2218"], ["https://data.delijn.be/stops/305424", "https://mivb.openplanner.team/stops/9169"], ["http://irail.be/stations/NMBS/008821824", "https://data.delijn.be/stops/108154"], ["http://irail.be/stations/NMBS/008833209", "https://data.delijn.be/stops/300069"], ["http://irail.be/stations/NMBS/008893252", "https://data.delijn.be/stops/211854"], ["https://data.delijn.be/stops/207792", "https://tec.openplanner.team/stops/H5rx106a"], ["https://data.delijn.be/stops/305237", "https://tec.openplanner.team/stops/H1mk109b"], ["https://data.delijn.be/stops/304860", "https://tec.openplanner.team/stops/Bbrlvil1"], ["https://data.delijn.be/stops/305354", "https://tec.openplanner.team/stops/Bovetsa1"], ["https://data.delijn.be/stops/306813", "https://mivb.openplanner.team/stops/3219"], ["https://data.delijn.be/stops/305429", "https://mivb.openplanner.team/stops/1631"], ["http://irail.be/stations/NMBS/008893559", "https://data.delijn.be/stops/203478"], ["https://data.delijn.be/stops/406276", "https://tec.openplanner.team/stops/LMastat4"], ["http://irail.be/stations/NMBS/008841442", "https://tec.openplanner.team/stops/LLirout2"], ["http://irail.be/stations/NMBS/008864931", "https://tec.openplanner.team/stops/N563ana"], ["https://data.delijn.be/stops/300335", "https://tec.openplanner.team/stops/Balsnie2"], ["http://irail.be/stations/NMBS/008814373", "https://mivb.openplanner.team/stops/3814"], ["https://data.delijn.be/stops/305339", "https://tec.openplanner.team/stops/Bovetsa2"], ["https://data.delijn.be/stops/307964", "https://tec.openplanner.team/stops/Bwavnep2"], ["https://data.delijn.be/stops/304642", "https://mivb.openplanner.team/stops/1368"], ["https://data.delijn.be/stops/305299", "https://tec.openplanner.team/stops/Bspkkhe2"], ["https://data.delijn.be/stops/401922", "https://tec.openplanner.team/stops/LORec--*"], ["http://irail.be/stations/NMBS/008824224", "https://data.delijn.be/stops/101088"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LMalarg4"], ["http://irail.be/stations/NMBS/008845203", "https://tec.openplanner.team/stops/LTPbeau2"], ["http://irail.be/stations/NMBS/008889011", "https://tec.openplanner.team/stops/H4rx143a"], ["https://data.delijn.be/stops/403785", "https://tec.openplanner.team/stops/LWAperv1"], ["https://data.delijn.be/stops/405734", "https://tec.openplanner.team/stops/Lrccomm2"], ["https://data.delijn.be/stops/408956", "https://tec.openplanner.team/stops/LWAmouh2"], ["https://data.delijn.be/stops/301301", "https://mivb.openplanner.team/stops/1486B"], ["http://irail.be/stations/NMBS/008814126", "https://mivb.openplanner.team/stops/5721"], ["https://data.delijn.be/stops/300764", "https://mivb.openplanner.team/stops/1489"], ["https://data.delijn.be/stops/504295", "https://tec.openplanner.team/stops/H4mo193a"], ["http://irail.be/stations/NMBS/008822517", "https://data.delijn.be/stops/301850"], ["https://data.delijn.be/stops/300790", "https://mivb.openplanner.team/stops/1208"], ["https://data.delijn.be/stops/307646", "https://mivb.openplanner.team/stops/1953"], ["https://data.delijn.be/stops/301676", "https://tec.openplanner.team/stops/Bbbksth1"], ["https://data.delijn.be/stops/504307", "https://tec.openplanner.team/stops/H4mo147a"], ["http://irail.be/stations/NMBS/008831138", "https://data.delijn.be/stops/400862"], ["https://data.delijn.be/stops/218014", "https://tec.openplanner.team/stops/H5rx106b"], ["https://data.delijn.be/stops/410133", "https://tec.openplanner.team/stops/LJUmc--1"], ["https://data.delijn.be/stops/402022", "https://tec.openplanner.team/stops/LVu03--1"], ["https://data.delijn.be/stops/301049", "https://mivb.openplanner.team/stops/4600"], ["https://data.delijn.be/stops/408913", "https://tec.openplanner.team/stops/LVu40--1"], ["http://irail.be/stations/NMBS/008872587", "https://tec.openplanner.team/stops/Bsmgmas2"], ["https://data.delijn.be/stops/503772", "https://tec.openplanner.team/stops/H4eh100a"], ["https://data.delijn.be/stops/300884", "https://mivb.openplanner.team/stops/7830152"], ["https://data.delijn.be/stops/407648", "https://tec.openplanner.team/stops/LBPauto1"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N534bqb"], ["http://irail.be/stations/NMBS/008814431", "https://mivb.openplanner.team/stops/1957B"], ["https://data.delijn.be/stops/407206", "https://tec.openplanner.team/stops/LHTmoul2"], ["http://irail.be/stations/NMBS/008821337", "https://data.delijn.be/stops/106598"], ["https://data.delijn.be/stops/208410", "https://tec.openplanner.team/stops/H5rx146a"], ["http://irail.be/stations/NMBS/008832565", "https://data.delijn.be/stops/405748"], ["http://irail.be/stations/NMBS/008833126", "https://data.delijn.be/stops/302925"], ["https://data.delijn.be/stops/305502", "https://mivb.openplanner.team/stops/2015"], ["http://irail.be/stations/NMBS/008871605", "https://tec.openplanner.team/stops/H1er113a"], ["https://data.delijn.be/stops/304209", "https://tec.openplanner.team/stops/Brsrmon1"], ["https://data.delijn.be/stops/302892", "https://tec.openplanner.team/stops/Bhevl3l2"], ["https://data.delijn.be/stops/302411", "https://tec.openplanner.team/stops/Bmlngvi2"], ["https://mivb.openplanner.team/stops/6440", "https://tec.openplanner.team/stops/Buccham2"], ["http://irail.be/stations/NMBS/008812229", "https://data.delijn.be/stops/301315"], ["https://data.delijn.be/stops/308544", "https://mivb.openplanner.team/stops/9575"], ["https://data.delijn.be/stops/208589", "https://tec.openplanner.team/stops/Bmrqgar2"], ["https://data.delijn.be/stops/307970", "https://tec.openplanner.team/stops/Bbgever2"], ["https://data.delijn.be/stops/307030", "https://tec.openplanner.team/stops/Balsnay1"], ["http://irail.be/stations/NMBS/008832243", "https://data.delijn.be/stops/404156"], ["http://irail.be/stations/NMBS/008895844", "https://data.delijn.be/stops/207846"], ["https://data.delijn.be/stops/307043", "https://mivb.openplanner.team/stops/3414"], ["https://data.delijn.be/stops/300781", "https://mivb.openplanner.team/stops/2579"], ["http://irail.be/stations/NMBS/008821907", "https://data.delijn.be/stops/106232"], ["http://irail.be/stations/NMBS/008865649", "https://tec.openplanner.team/stops/X346abb"], ["https://data.delijn.be/stops/408978", "https://tec.openplanner.team/stops/LWApt--2"], ["http://irail.be/stations/NMBS/008873379", "https://tec.openplanner.team/stops/Cbetrie1"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/109665"], ["https://data.delijn.be/stops/405731", "https://tec.openplanner.team/stops/Lrchype2"], ["http://irail.be/stations/NMBS/008886553", "https://tec.openplanner.team/stops/H1le120a"], ["https://data.delijn.be/stops/408492", "https://tec.openplanner.team/stops/LWApt--1"], ["https://data.delijn.be/stops/505926", "https://tec.openplanner.team/stops/H4co133a"], ["http://irail.be/stations/NMBS/008821436", "https://data.delijn.be/stops/102196"], ["https://data.delijn.be/stops/405741", "https://tec.openplanner.team/stops/Llgelis2"], ["https://data.delijn.be/stops/404676", "https://tec.openplanner.team/stops/Llaacca1"], ["https://data.delijn.be/stops/400484", "https://tec.openplanner.team/stops/LRGchap1"], ["https://data.delijn.be/stops/403784", "https://tec.openplanner.team/stops/LOehart2"], ["https://data.delijn.be/stops/302428", "https://tec.openplanner.team/stops/Bjod7co1"], ["http://irail.be/stations/NMBS/008819406", "https://data.delijn.be/stops/305555"], ["http://irail.be/stations/NMBS/008893039", "https://data.delijn.be/stops/203940"], ["http://irail.be/stations/NMBS/008831088", "https://data.delijn.be/stops/403969"], ["https://data.delijn.be/stops/404658", "https://tec.openplanner.team/stops/LJUmate2"], ["http://irail.be/stations/NMBS/008831807", "https://data.delijn.be/stops/407936"], ["http://irail.be/stations/NMBS/008896909", "https://data.delijn.be/stops/503315"], ["http://irail.be/stations/NMBS/008879004", "https://tec.openplanner.team/stops/H1er106b"], ["https://data.delijn.be/stops/304442", "https://tec.openplanner.team/stops/Bblapri1"], ["https://mivb.openplanner.team/stops/1949", "https://tec.openplanner.team/stops/Bucceng2"], ["https://data.delijn.be/stops/304028", "https://tec.openplanner.team/stops/Bovejme1"], ["http://irail.be/stations/NMBS/008813037", "https://mivb.openplanner.team/stops/2245"], ["http://irail.be/stations/NMBS/008893401", "https://data.delijn.be/stops/207301"], ["http://irail.be/stations/NMBS/008842754", "https://tec.openplanner.team/stops/LAYnias1"], ["http://irail.be/stations/NMBS/008895869", "https://data.delijn.be/stops/207152"], ["http://irail.be/stations/NMBS/008893252", "https://data.delijn.be/stops/210008"], ["https://data.delijn.be/stops/408831", "https://tec.openplanner.team/stops/LMgbern1"], ["http://irail.be/stations/NMBS/008844339", "https://tec.openplanner.team/stops/LJSec--2"], ["http://irail.be/stations/NMBS/008400219", "https://data.delijn.be/stops/408824"], ["http://irail.be/stations/NMBS/008822269", "https://data.delijn.be/stops/305595"], ["https://data.delijn.be/stops/301165", "https://mivb.openplanner.team/stops/2146"], ["https://data.delijn.be/stops/209610", "https://tec.openplanner.team/stops/H1by102a"], ["http://irail.be/stations/NMBS/008832433", "https://data.delijn.be/stops/108967"], ["http://irail.be/stations/NMBS/008842036", "https://tec.openplanner.team/stops/Lceembo1"], ["https://data.delijn.be/stops/305296", "https://mivb.openplanner.team/stops/9626"], ["https://mivb.openplanner.team/stops/2927", "https://tec.openplanner.team/stops/Bbxltou1"], ["https://data.delijn.be/stops/303582", "https://mivb.openplanner.team/stops/9727"], ["https://data.delijn.be/stops/408894", "https://tec.openplanner.team/stops/LWHkape1"], ["http://irail.be/stations/NMBS/008892106", "https://data.delijn.be/stops/201467"], ["http://irail.be/stations/NMBS/008822004", "https://data.delijn.be/stops/105169"], ["http://irail.be/stations/NMBS/008812112", "https://data.delijn.be/stops/302152"], ["https://data.delijn.be/stops/307972", "https://tec.openplanner.team/stops/Bwavcar1"], ["http://irail.be/stations/NMBS/008866001", "https://tec.openplanner.team/stops/X601aza"], ["https://data.delijn.be/stops/304019", "https://tec.openplanner.team/stops/Boveklo1"], ["https://data.delijn.be/stops/301920", "https://mivb.openplanner.team/stops/2029"], ["http://irail.be/stations/NMBS/008865003", "https://tec.openplanner.team/stops/X801bdd"], ["https://data.delijn.be/stops/405740", "https://tec.openplanner.team/stops/Llgbatt2"], ["https://data.delijn.be/stops/509736", "https://tec.openplanner.team/stops/H4ev126b"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1et100b"], ["http://irail.be/stations/NMBS/008822848", "https://data.delijn.be/stops/104853"], ["https://mivb.openplanner.team/stops/1417B", "https://tec.openplanner.team/stops/Bbxlner2"], ["http://irail.be/stations/NMBS/008871100", "https://tec.openplanner.team/stops/Cmocalv4"], ["https://data.delijn.be/stops/401404", "https://mivb.openplanner.team/stops/5045"], ["http://irail.be/stations/NMBS/008895463", "https://data.delijn.be/stops/206485"], ["https://data.delijn.be/stops/307159", "https://tec.openplanner.team/stops/Bhalwat2"], ["http://irail.be/stations/NMBS/008812245", "https://data.delijn.be/stops/306141"], ["https://data.delijn.be/stops/300772", "https://mivb.openplanner.team/stops/1493"], ["https://mivb.openplanner.team/stops/5284F", "https://tec.openplanner.team/stops/Baudwav2"], ["https://data.delijn.be/stops/304102", "https://tec.openplanner.team/stops/Bove4ko1"], ["http://irail.be/stations/NMBS/008891645", "https://data.delijn.be/stops/506661"], ["https://data.delijn.be/stops/300334", "https://tec.openplanner.team/stops/Balswsa2"], ["https://data.delijn.be/stops/302986", "https://mivb.openplanner.team/stops/2212"], ["https://data.delijn.be/stops/401419", "https://mivb.openplanner.team/stops/1550"], ["http://irail.be/stations/NMBS/008811403", "https://mivb.openplanner.team/stops/3155"], ["https://data.delijn.be/stops/504304", "https://tec.openplanner.team/stops/H4pl132a"], ["https://data.delijn.be/stops/308856", "https://mivb.openplanner.team/stops/1467"], ["http://irail.be/stations/NMBS/008811510", "https://tec.openplanner.team/stops/Blhugar2"], ["https://data.delijn.be/stops/300320", "https://tec.openplanner.team/stops/Bbeagae2"], ["https://data.delijn.be/stops/308645", "https://tec.openplanner.team/stops/Bovepla2"], ["https://data.delijn.be/stops/308128", "https://tec.openplanner.team/stops/Bgoestu2"], ["http://irail.be/stations/NMBS/008863867", "https://tec.openplanner.team/stops/N308aic"], ["http://irail.be/stations/NMBS/008892627", "https://data.delijn.be/stops/208284"], ["http://irail.be/stations/NMBS/008861200", "https://tec.openplanner.team/stops/Bgemgjo1"], ["http://irail.be/stations/NMBS/008881190", "https://tec.openplanner.team/stops/H1et102a"], ["http://irail.be/stations/NMBS/008883808", "https://tec.openplanner.team/stops/Btubga06"], ["https://data.delijn.be/stops/504322", "https://tec.openplanner.team/stops/H4mo207a"], ["http://irail.be/stations/NMBS/008833134", "https://data.delijn.be/stops/308357"], ["https://data.delijn.be/stops/404682", "https://tec.openplanner.team/stops/LWibare2"], ["http://irail.be/stations/NMBS/008821907", "https://data.delijn.be/stops/109803"], ["http://irail.be/stations/NMBS/008884715", "https://tec.openplanner.team/stops/H5qu182a"], ["https://data.delijn.be/stops/307716", "https://tec.openplanner.team/stops/Brsga812"], ["https://data.delijn.be/stops/300859", "https://mivb.openplanner.team/stops/0520161"], ["https://data.delijn.be/stops/407231", "https://tec.openplanner.team/stops/LLGramk2"], ["https://data.delijn.be/stops/410144", "https://tec.openplanner.team/stops/Llgseel2"], ["https://data.delijn.be/stops/304543", "https://mivb.openplanner.team/stops/9660"], ["https://data.delijn.be/stops/308856", "https://mivb.openplanner.team/stops/2873"], ["https://data.delijn.be/stops/307042", "https://tec.openplanner.team/stops/Brsg7fo2"], ["https://data.delijn.be/stops/509241", "https://tec.openplanner.team/stops/H4co134a"], ["https://mivb.openplanner.team/stops/1812", "https://tec.openplanner.team/stops/Baudvdr1"], ["http://irail.be/stations/NMBS/008822210", "https://data.delijn.be/stops/106977"], ["http://irail.be/stations/NMBS/008881463", "https://tec.openplanner.team/stops/H2sb228d"], ["https://data.delijn.be/stops/509735", "https://tec.openplanner.team/stops/H4ev118b"], ["https://data.delijn.be/stops/302244", "https://mivb.openplanner.team/stops/1725"], ["http://irail.be/stations/NMBS/008881455", "https://tec.openplanner.team/stops/H3th130a"], ["http://irail.be/stations/NMBS/008822772", "https://data.delijn.be/stops/102637"], ["https://data.delijn.be/stops/208188", "https://tec.openplanner.team/stops/H5rx137b"], ["https://data.delijn.be/stops/408916", "https://tec.openplanner.team/stops/LFPzwaa2"], ["https://data.delijn.be/stops/303248", "https://tec.openplanner.team/stops/Blkbbvh2"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1mj125a"], ["https://data.delijn.be/stops/407212", "https://tec.openplanner.team/stops/LHSheur2"], ["http://irail.be/stations/NMBS/008895125", "https://data.delijn.be/stops/207263"], ["https://data.delijn.be/stops/301099", "https://mivb.openplanner.team/stops/5533"], ["https://data.delijn.be/stops/307215", "https://tec.openplanner.team/stops/Bhalvel2"], ["http://irail.be/stations/NMBS/008814340", "https://data.delijn.be/stops/303291"], ["https://data.delijn.be/stops/408861", "https://tec.openplanner.team/stops/LFCdree1"], ["https://data.delijn.be/stops/306315", "https://tec.openplanner.team/stops/Bhalber2"], ["https://data.delijn.be/stops/301048", "https://mivb.openplanner.team/stops/2579"], ["http://irail.be/stations/NMBS/008841558", "https://tec.openplanner.team/stops/Llgcfra1"], ["https://data.delijn.be/stops/408871", "https://tec.openplanner.team/stops/LBWfusi2"], ["https://data.delijn.be/stops/400459", "https://tec.openplanner.team/stops/LEBmoul2"], ["https://data.delijn.be/stops/301050", "https://mivb.openplanner.team/stops/5074"], ["https://data.delijn.be/stops/302872", "https://mivb.openplanner.team/stops/2138B"], ["https://data.delijn.be/stops/207796", "https://tec.openplanner.team/stops/H5rx101b"], ["https://data.delijn.be/stops/508032", "https://tec.openplanner.team/stops/H4ae101b"], ["http://irail.be/stations/NMBS/008893013", "https://data.delijn.be/stops/200628"], ["https://data.delijn.be/stops/300998", "https://mivb.openplanner.team/stops/7762"], ["https://data.delijn.be/stops/302121", "https://tec.openplanner.team/stops/Bbghcar2"], ["http://irail.be/stations/NMBS/008861523", "https://tec.openplanner.team/stops/Bwlhppg4"], ["https://data.delijn.be/stops/410143", "https://tec.openplanner.team/stops/Llgnaes1"], ["https://data.delijn.be/stops/410141", "https://tec.openplanner.team/stops/Lrctec-1"], ["https://mivb.openplanner.team/stops/5409", "https://tec.openplanner.team/stops/Bixlaca2"], ["https://data.delijn.be/stops/300811", "https://mivb.openplanner.team/stops/4127"], ["https://data.delijn.be/stops/404652", "https://tec.openplanner.team/stops/Llabriq1"], ["http://irail.be/stations/NMBS/008821246", "https://data.delijn.be/stops/101909"], ["https://data.delijn.be/stops/504772", "https://tec.openplanner.team/stops/H4wn129a"], ["https://data.delijn.be/stops/304100", "https://tec.openplanner.team/stops/Bovelge2"], ["https://data.delijn.be/stops/300798", "https://mivb.openplanner.team/stops/3858"], ["https://mivb.openplanner.team/stops/2039", "https://tec.openplanner.team/stops/Bwolkra1"], ["https://data.delijn.be/stops/304912", "https://tec.openplanner.team/stops/Bovelge2"], ["http://irail.be/stations/NMBS/008894508", "https://data.delijn.be/stops/205100"], ["https://data.delijn.be/stops/304177", "https://tec.openplanner.team/stops/Bbldass2"], ["https://data.delijn.be/stops/301197", "https://tec.openplanner.team/stops/Blthwav2"], ["https://data.delijn.be/stops/307649", "https://tec.openplanner.team/stops/Brsgrol1"], ["https://data.delijn.be/stops/207765", "https://tec.openplanner.team/stops/H4ss157b"], ["http://irail.be/stations/NMBS/008864931", "https://tec.openplanner.team/stops/N235aha"], ["http://irail.be/stations/NMBS/008822277", "https://data.delijn.be/stops/305619"], ["http://irail.be/stations/NMBS/008884350", "https://tec.openplanner.team/stops/H1tl121a"], ["https://data.delijn.be/stops/300012", "https://mivb.openplanner.team/stops/2220"], ["https://data.delijn.be/stops/509299", "https://tec.openplanner.team/stops/H4mo190b"], ["http://irail.be/stations/NMBS/008811445", "https://data.delijn.be/stops/302212"], ["http://irail.be/stations/NMBS/008871811", "https://tec.openplanner.team/stops/Cthnord2"], ["http://irail.be/stations/NMBS/008833308", "https://data.delijn.be/stops/305198"], ["http://irail.be/stations/NMBS/008893567", "https://data.delijn.be/stops/201105"], ["https://data.delijn.be/stops/305197", "https://tec.openplanner.team/stops/Btiegar2"], ["https://data.delijn.be/stops/300806", "https://mivb.openplanner.team/stops/7710104"], ["http://irail.be/stations/NMBS/008833159", "https://data.delijn.be/stops/306294"], ["http://irail.be/stations/NMBS/008871308", "https://tec.openplanner.team/stops/Clusncb4"], ["https://data.delijn.be/stops/306375", "https://tec.openplanner.team/stops/Bovesol1"], ["http://irail.be/stations/NMBS/008881000", "https://tec.openplanner.team/stops/H1ms280a"], ["https://data.delijn.be/stops/300961", "https://mivb.openplanner.team/stops/2086"], ["https://data.delijn.be/stops/505362", "https://tec.openplanner.team/stops/H4co142a"], ["https://data.delijn.be/stops/302403", "https://mivb.openplanner.team/stops/3608"], ["https://data.delijn.be/stops/408574", "https://tec.openplanner.team/stops/LRUhama2"], ["https://data.delijn.be/stops/208408", "https://tec.openplanner.team/stops/H5rx139b"], ["https://data.delijn.be/stops/303956", "https://tec.openplanner.team/stops/Bbldmun2"], ["http://irail.be/stations/NMBS/008821667", "https://data.delijn.be/stops/102393"], ["https://data.delijn.be/stops/308529", "https://tec.openplanner.team/stops/Bovesog1"], ["https://data.delijn.be/stops/406398", "https://tec.openplanner.team/stops/Blanraa1"], ["http://irail.be/stations/NMBS/008849023", "https://tec.openplanner.team/stops/LhGfl242"], ["https://data.delijn.be/stops/300918", "https://mivb.openplanner.team/stops/5038"], ["https://data.delijn.be/stops/208761", "https://tec.openplanner.team/stops/H5rx122b"], ["http://irail.be/stations/NMBS/008719100", "https://tec.openplanner.team/stops/X687aga"], ["http://irail.be/stations/NMBS/008832664", "https://data.delijn.be/stops/402858"], ["https://data.delijn.be/stops/503556", "https://tec.openplanner.team/stops/H4mn100d"], ["https://data.delijn.be/stops/302446", "https://tec.openplanner.team/stops/Bzlucam1"], ["http://irail.be/stations/NMBS/008814449", "https://mivb.openplanner.team/stops/1970"], ["http://irail.be/stations/NMBS/008811148", "https://mivb.openplanner.team/stops/9776"], ["http://irail.be/stations/NMBS/008814159", "https://mivb.openplanner.team/stops/2116B"], ["https://data.delijn.be/stops/300728", "https://tec.openplanner.team/stops/Bbealon4"], ["https://data.delijn.be/stops/208785", "https://tec.openplanner.team/stops/H5el100a"], ["https://data.delijn.be/stops/306911", "https://tec.openplanner.team/stops/Bbosgar1"], ["https://data.delijn.be/stops/307853", "https://mivb.openplanner.team/stops/0230434"], ["http://irail.be/stations/NMBS/008894714", "https://data.delijn.be/stops/204704"], ["https://data.delijn.be/stops/304439", "https://tec.openplanner.team/stops/Brsgfon2"], ["http://irail.be/stations/NMBS/008811536", "https://tec.openplanner.team/stops/Brixga11"], ["https://data.delijn.be/stops/307002", "https://tec.openplanner.team/stops/Bjodath2"], ["https://data.delijn.be/stops/302810", "https://mivb.openplanner.team/stops/9578"], ["https://data.delijn.be/stops/402652", "https://tec.openplanner.team/stops/LCAwals1"], ["https://data.delijn.be/stops/504654", "https://tec.openplanner.team/stops/H4co150b"], ["https://data.delijn.be/stops/208188", "https://tec.openplanner.team/stops/H5rx120b"], ["http://irail.be/stations/NMBS/008866662", "https://tec.openplanner.team/stops/X614aqa"], ["http://irail.be/stations/NMBS/008891140", "https://data.delijn.be/stops/200845"], ["https://data.delijn.be/stops/303627", "https://tec.openplanner.team/stops/Bcbqcim1"], ["https://data.delijn.be/stops/302400", "https://mivb.openplanner.team/stops/6799F"], ["https://data.delijn.be/stops/408841", "https://tec.openplanner.team/stops/LRmmabr1"], ["https://data.delijn.be/stops/300764", "https://mivb.openplanner.team/stops/1260"], ["https://data.delijn.be/stops/302830", "https://tec.openplanner.team/stops/Blaneli2"], ["http://irail.be/stations/NMBS/008874609", "https://tec.openplanner.team/stops/Caih1632"], ["https://data.delijn.be/stops/509451", "https://tec.openplanner.team/stops/H4mo133b"], ["http://irail.be/stations/NMBS/008882362", "https://tec.openplanner.team/stops/H3bi116a"], ["https://data.delijn.be/stops/303577", "https://mivb.openplanner.team/stops/3042"], ["https://data.delijn.be/stops/300300", "https://mivb.openplanner.team/stops/4270F"], ["http://irail.be/stations/NMBS/008842663", "https://tec.openplanner.team/stops/LESlieg1"], ["https://data.delijn.be/stops/301685", "https://tec.openplanner.team/stops/Bnettir1"], ["https://data.delijn.be/stops/302891", "https://tec.openplanner.team/stops/Bhevjal2"], ["http://irail.be/stations/NMBS/008812005", "https://mivb.openplanner.team/stops/1900"], ["https://data.delijn.be/stops/306001", "https://mivb.openplanner.team/stops/5501"], ["https://data.delijn.be/stops/305144", "https://tec.openplanner.team/stops/H1mk108b"], ["https://data.delijn.be/stops/302849", "https://tec.openplanner.team/stops/Bwaab121"], ["https://data.delijn.be/stops/302479", "https://mivb.openplanner.team/stops/1509"], ["https://data.delijn.be/stops/302408", "https://mivb.openplanner.team/stops/8651"], ["https://data.delijn.be/stops/304255", "https://mivb.openplanner.team/stops/4273F"], ["https://data.delijn.be/stops/304065", "https://tec.openplanner.team/stops/Bovehst2"], ["http://irail.be/stations/NMBS/008844404", "https://tec.openplanner.team/stops/LSPgare*"], ["https://data.delijn.be/stops/504294", "https://tec.openplanner.team/stops/H4mo159a"], ["http://irail.be/stations/NMBS/008842051", "https://tec.openplanner.team/stops/Lcapisc2"], ["http://irail.be/stations/NMBS/008896735", "https://data.delijn.be/stops/505997"], ["http://irail.be/stations/NMBS/008861432", "https://tec.openplanner.team/stops/Bsdecdi1"], ["https://mivb.openplanner.team/stops/2117B", "https://tec.openplanner.team/stops/Buccpin1"], ["http://irail.be/stations/NMBS/008881315", "https://tec.openplanner.team/stops/H1ni322b"], ["https://mivb.openplanner.team/stops/2752", "https://tec.openplanner.team/stops/Baudulb1"], ["http://irail.be/stations/NMBS/008893211", "https://data.delijn.be/stops/203654"], ["https://data.delijn.be/stops/300828", "https://mivb.openplanner.team/stops/2811"], ["https://data.delijn.be/stops/206673", "https://tec.openplanner.team/stops/H5fl101a"], ["http://irail.be/stations/NMBS/008893047", "https://data.delijn.be/stops/201633"], ["http://irail.be/stations/NMBS/008863453", "https://tec.openplanner.team/stops/N504abb"], ["https://data.delijn.be/stops/408858", "https://tec.openplanner.team/stops/LFCotte1"], ["https://mivb.openplanner.team/stops/6109", "https://tec.openplanner.team/stops/Bsgimor2"], ["https://data.delijn.be/stops/503331", "https://tec.openplanner.team/stops/H4do202a"], ["http://irail.be/stations/NMBS/008885704", "https://data.delijn.be/stops/509295"], ["https://data.delijn.be/stops/308734", "https://tec.openplanner.team/stops/Bgoesch1"], ["https://data.delijn.be/stops/301154", "https://mivb.openplanner.team/stops/5455"], ["https://data.delijn.be/stops/308825", "https://tec.openplanner.team/stops/Blanove2"], ["https://data.delijn.be/stops/304454", "https://tec.openplanner.team/stops/Brsgsan1"], ["https://data.delijn.be/stops/300756", "https://mivb.openplanner.team/stops/2550"], ["http://irail.be/stations/NMBS/008892031", "https://data.delijn.be/stops/200195"], ["http://irail.be/stations/NMBS/008892080", "https://data.delijn.be/stops/208958"], ["https://data.delijn.be/stops/303120", "https://mivb.openplanner.team/stops/3815"], ["http://irail.be/stations/NMBS/008886546", "https://tec.openplanner.team/stops/H1gy115a"], ["https://data.delijn.be/stops/304020", "https://tec.openplanner.team/stops/Bovehst2"], ["https://data.delijn.be/stops/406350", "https://tec.openplanner.team/stops/LMastat4"], ["https://mivb.openplanner.team/stops/0050419", "https://tec.openplanner.team/stops/Bbxltrv1"], ["https://data.delijn.be/stops/408640", "https://tec.openplanner.team/stops/LRUhama1"], ["https://data.delijn.be/stops/307251", "https://mivb.openplanner.team/stops/9979B"], ["https://data.delijn.be/stops/304544", "https://mivb.openplanner.team/stops/9660"], ["https://data.delijn.be/stops/301106", "https://mivb.openplanner.team/stops/1859"], ["https://data.delijn.be/stops/301130", "https://mivb.openplanner.team/stops/2148"], ["http://irail.be/stations/NMBS/008821543", "https://data.delijn.be/stops/107320"], ["http://irail.be/stations/NMBS/008811635", "https://tec.openplanner.team/stops/Blmlmco2"], ["http://irail.be/stations/NMBS/008892254", "https://data.delijn.be/stops/502485"], ["https://data.delijn.be/stops/302400", "https://mivb.openplanner.team/stops/7"], ["https://data.delijn.be/stops/407638", "https://tec.openplanner.team/stops/LEMfort2"], ["http://irail.be/stations/NMBS/008200520", "https://tec.openplanner.team/stops/X626afa"], ["https://data.delijn.be/stops/301034", "https://mivb.openplanner.team/stops/0650265"], ["https://data.delijn.be/stops/304833", "https://mivb.openplanner.team/stops/9557"], ["http://irail.be/stations/NMBS/008861515", "https://tec.openplanner.team/stops/Bernpla1"], ["https://data.delijn.be/stops/307638", "https://mivb.openplanner.team/stops/1932"], ["https://data.delijn.be/stops/407232", "https://tec.openplanner.team/stops/LORherl1"], ["https://data.delijn.be/stops/308955", "https://mivb.openplanner.team/stops/9577"], ["https://data.delijn.be/stops/401415", "https://mivb.openplanner.team/stops/4307"], ["https://data.delijn.be/stops/307643", "https://mivb.openplanner.team/stops/1939"], ["https://data.delijn.be/stops/405741", "https://tec.openplanner.team/stops/Llgcamp1"], ["https://data.delijn.be/stops/301071", "https://mivb.openplanner.team/stops/1145"], ["https://data.delijn.be/stops/400492", "https://tec.openplanner.team/stops/LBSkann2"], ["http://irail.be/stations/NMBS/008844321", "https://tec.openplanner.team/stops/LJSeg--1"], ["http://irail.be/stations/NMBS/008200136", "https://tec.openplanner.team/stops/LwMzoll1"], ["http://irail.be/stations/NMBS/008893526", "https://data.delijn.be/stops/206280"], ["https://data.delijn.be/stops/300988", "https://mivb.openplanner.team/stops/3766"], ["https://data.delijn.be/stops/408726", "https://tec.openplanner.team/stops/LWidepo2"], ["http://irail.be/stations/NMBS/008842838", "https://tec.openplanner.team/stops/LCTgare4"], ["https://data.delijn.be/stops/307224", "https://tec.openplanner.team/stops/Bhalgar2"], ["http://irail.be/stations/NMBS/008843331", "https://tec.openplanner.team/stops/LAMgreg2"], ["https://mivb.openplanner.team/stops/1262B", "https://tec.openplanner.team/stops/Bbxltrv2"], ["https://data.delijn.be/stops/305209", "https://tec.openplanner.team/stops/Bboseco1"], ["https://mivb.openplanner.team/stops/4369", "https://tec.openplanner.team/stops/Bixefra1"], ["https://data.delijn.be/stops/308818", "https://mivb.openplanner.team/stops/6438"], ["https://mivb.openplanner.team/stops/4288", "https://tec.openplanner.team/stops/Bwbfckr2"], ["https://data.delijn.be/stops/301123", "https://tec.openplanner.team/stops/Buccvoi1"], ["https://data.delijn.be/stops/207758", "https://tec.openplanner.team/stops/H5rx134b"], ["https://data.delijn.be/stops/300830", "https://mivb.openplanner.team/stops/7790556"], ["https://mivb.openplanner.team/stops/9952G", "https://tec.openplanner.team/stops/Bixleix2"], ["https://data.delijn.be/stops/405706", "https://tec.openplanner.team/stops/Llgcadr4"], ["https://data.delijn.be/stops/408830", "https://tec.openplanner.team/stops/LMgbern1"], ["https://data.delijn.be/stops/300412", "https://mivb.openplanner.team/stops/9659"], ["https://data.delijn.be/stops/408806", "https://tec.openplanner.team/stops/LVIcarm1"], ["https://data.delijn.be/stops/300896", "https://mivb.openplanner.team/stops/3199"], ["http://irail.be/stations/NMBS/008814472", "https://mivb.openplanner.team/stops/2107"], ["http://irail.be/stations/NMBS/008892635", "https://data.delijn.be/stops/208277"], ["https://data.delijn.be/stops/300748", "https://mivb.openplanner.team/stops/7680107"], ["https://data.delijn.be/stops/410145", "https://tec.openplanner.team/stops/Llgwild6"], ["https://data.delijn.be/stops/306900", "https://tec.openplanner.team/stops/Bgoegma2"], ["https://data.delijn.be/stops/301086", "https://mivb.openplanner.team/stops/1641"], ["https://data.delijn.be/stops/300829", "https://mivb.openplanner.team/stops/2861"], ["https://data.delijn.be/stops/300875", "https://mivb.openplanner.team/stops/6173"], ["http://irail.be/stations/NMBS/008841400", "https://tec.openplanner.team/stops/LWAfabr2"], ["https://data.delijn.be/stops/504237", "https://tec.openplanner.team/stops/H4co141a"], ["http://irail.be/stations/NMBS/008844230", "https://tec.openplanner.team/stops/LNEolne2"], ["http://irail.be/stations/NMBS/008833670", "https://data.delijn.be/stops/405386"], ["https://data.delijn.be/stops/300961", "https://mivb.openplanner.team/stops/5427"], ["https://data.delijn.be/stops/305272", "https://tec.openplanner.team/stops/Bspkdon1"], ["http://irail.be/stations/NMBS/008821030", "https://data.delijn.be/stops/103896"], ["http://irail.be/stations/NMBS/008895778", "https://data.delijn.be/stops/206736"], ["https://data.delijn.be/stops/209820", "https://tec.openplanner.team/stops/H5rx138b"], ["https://data.delijn.be/stops/301316", "https://mivb.openplanner.team/stops/9801"], ["http://irail.be/stations/NMBS/008811304", "https://mivb.openplanner.team/stops/4367B"], ["https://data.delijn.be/stops/307695", "https://mivb.openplanner.team/stops/2146"], ["https://data.delijn.be/stops/303650", "https://mivb.openplanner.team/stops/2920"], ["http://irail.be/stations/NMBS/008841665", "https://tec.openplanner.team/stops/Lmirca-2"], ["http://irail.be/stations/NMBS/008871662", "https://tec.openplanner.team/stops/H1so132a"], ["https://mivb.openplanner.team/stops/5424", "https://tec.openplanner.team/stops/Bwbfhip2"], ["https://data.delijn.be/stops/307637", "https://tec.openplanner.team/stops/Bucccre2"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/101444"], ["https://data.delijn.be/stops/301922", "https://mivb.openplanner.team/stops/2078"], ["https://data.delijn.be/stops/300982", "https://mivb.openplanner.team/stops/5867F"], ["https://data.delijn.be/stops/300760", "https://mivb.openplanner.team/stops/3281"], ["https://data.delijn.be/stops/408980", "https://tec.openplanner.team/stops/LWAvisi2"], ["http://irail.be/stations/NMBS/008811676", "https://tec.openplanner.team/stops/Bllngar5"], ["http://irail.be/stations/NMBS/008811742", "https://data.delijn.be/stops/302387"], ["http://irail.be/stations/NMBS/008864824", "https://tec.openplanner.team/stops/N211ava"], ["https://data.delijn.be/stops/504323", "https://tec.openplanner.team/stops/H4mo206b"], ["https://data.delijn.be/stops/408836", "https://tec.openplanner.team/stops/LFPstro2"], ["https://mivb.openplanner.team/stops/5466", "https://tec.openplanner.team/stops/Bixleix2"], ["https://data.delijn.be/stops/301159", "https://mivb.openplanner.team/stops/4502F"], ["https://data.delijn.be/stops/207797", "https://tec.openplanner.team/stops/H4fa167a"], ["https://data.delijn.be/stops/302850", "https://tec.openplanner.team/stops/Bwaakap1"], ["https://data.delijn.be/stops/301059", "https://mivb.openplanner.team/stops/4271"], ["http://irail.be/stations/NMBS/008821006", "https://data.delijn.be/stops/104655"], ["https://data.delijn.be/stops/300817", "https://mivb.openplanner.team/stops/3261"], ["https://data.delijn.be/stops/308556", "https://tec.openplanner.team/stops/Bpecdel2"], ["http://irail.be/stations/NMBS/008891405", "https://data.delijn.be/stops/506598"], ["http://irail.be/stations/NMBS/008866258", "https://tec.openplanner.team/stops/X661amb"], ["https://data.delijn.be/stops/405714", "https://tec.openplanner.team/stops/Llgmart1"], ["http://irail.be/stations/NMBS/008711184", "https://tec.openplanner.team/stops/N141aaa"], ["http://irail.be/stations/NMBS/008811767", "https://tec.openplanner.team/stops/Bpecvme2"], ["http://irail.be/stations/NMBS/008864949", "https://tec.openplanner.team/stops/N563aab"], ["https://data.delijn.be/stops/400476", "https://tec.openplanner.team/stops/LBPmais1"], ["https://data.delijn.be/stops/306903", "https://tec.openplanner.team/stops/Bgoekaz1"], ["https://data.delijn.be/stops/306968", "https://mivb.openplanner.team/stops/2318G"], ["http://irail.be/stations/NMBS/008821964", "https://data.delijn.be/stops/109159"], ["https://data.delijn.be/stops/304546", "https://mivb.openplanner.team/stops/9682"], ["https://data.delijn.be/stops/300998", "https://mivb.openplanner.team/stops/3109"], ["http://irail.be/stations/NMBS/008832458", "https://data.delijn.be/stops/109267"], ["https://data.delijn.be/stops/505842", "https://tec.openplanner.team/stops/H4co144b"], ["https://data.delijn.be/stops/302876", "https://tec.openplanner.team/stops/Buccfja2"], ["https://data.delijn.be/stops/300979", "https://mivb.openplanner.team/stops/5712F"], ["https://mivb.openplanner.team/stops/2762", "https://tec.openplanner.team/stops/Buccvch1"], ["https://data.delijn.be/stops/408664", "https://tec.openplanner.team/stops/LRUhama1"], ["http://irail.be/stations/NMBS/008731388", "https://tec.openplanner.team/stops/H4ar100a"], ["https://data.delijn.be/stops/509233", "https://tec.openplanner.team/stops/H4co108b"], ["https://data.delijn.be/stops/408897", "https://tec.openplanner.team/stops/LFPgeme1"], ["https://data.delijn.be/stops/301027", "https://tec.openplanner.team/stops/Bsgipha2"], ["http://irail.be/stations/NMBS/008873320", "https://tec.openplanner.team/stops/N161aeb"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Cthrlef2"], ["https://data.delijn.be/stops/408892", "https://tec.openplanner.team/stops/LFMvoge1"], ["http://irail.be/stations/NMBS/008200100", "https://tec.openplanner.team/stops/X685aia"], ["https://data.delijn.be/stops/300856", "https://mivb.openplanner.team/stops/0520161"], ["http://irail.be/stations/NMBS/008861416", "https://tec.openplanner.team/stops/N541abb"], ["https://data.delijn.be/stops/504316", "https://tec.openplanner.team/stops/H4mo159b"], ["https://data.delijn.be/stops/404663", "https://tec.openplanner.team/stops/LPAchpl2"], ["https://mivb.openplanner.team/stops/2137", "https://tec.openplanner.team/stops/Buccrac2"], ["https://data.delijn.be/stops/301033", "https://mivb.openplanner.team/stops/5020"], ["http://irail.be/stations/NMBS/008811155", "https://mivb.openplanner.team/stops/2895"], ["https://data.delijn.be/stops/300973", "https://mivb.openplanner.team/stops/1757"], ["http://irail.be/stations/NMBS/008841558", "https://tec.openplanner.team/stops/Llglaur1"], ["http://irail.be/stations/NMBS/008845203", "https://tec.openplanner.team/stops/LTPpisc1"], ["https://mivb.openplanner.team/stops/5860", "https://tec.openplanner.team/stops/Buccbou1"], ["https://data.delijn.be/stops/207764", "https://tec.openplanner.team/stops/H5rx145a"], ["http://irail.be/stations/NMBS/008811742", "https://tec.openplanner.team/stops/Bgzdgpa2"], ["https://data.delijn.be/stops/304774", "https://mivb.openplanner.team/stops/6858C"], ["https://mivb.openplanner.team/stops/6956G", "https://tec.openplanner.team/stops/Buccobs2"], ["http://irail.be/stations/NMBS/008812047", "https://mivb.openplanner.team/stops/6803F"], ["https://data.delijn.be/stops/305915", "https://mivb.openplanner.team/stops/1099"], ["http://irail.be/stations/NMBS/008811759", "https://tec.openplanner.team/stops/Barcsta2"], ["https://data.delijn.be/stops/302154", "https://tec.openplanner.team/stops/Bhoealt1"], ["https://data.delijn.be/stops/300950", "https://mivb.openplanner.team/stops/1098"], ["https://data.delijn.be/stops/402953", "https://tec.openplanner.team/stops/LLagert*"], ["https://data.delijn.be/stops/301019", "https://mivb.openplanner.team/stops/4002B"], ["http://irail.be/stations/NMBS/008822269", "https://data.delijn.be/stops/305609"], ["http://irail.be/stations/NMBS/008895836", "https://data.delijn.be/stops/306709"], ["http://irail.be/stations/NMBS/008871852", "https://tec.openplanner.team/stops/Cmomoul6"], ["https://data.delijn.be/stops/405732", "https://tec.openplanner.team/stops/Lrcastr2"], ["https://data.delijn.be/stops/208180", "https://tec.openplanner.team/stops/H5el102a"], ["https://data.delijn.be/stops/302439", "https://tec.openplanner.team/stops/Bzlucam2"], ["https://mivb.openplanner.team/stops/6406", "https://tec.openplanner.team/stops/Bixllep1"], ["https://mivb.openplanner.team/stops/2763", "https://tec.openplanner.team/stops/Buccgob1"], ["https://data.delijn.be/stops/306064", "https://tec.openplanner.team/stops/Brsgfso2"], ["https://data.delijn.be/stops/301008", "https://mivb.openplanner.team/stops/4106"], ["https://data.delijn.be/stops/305145", "https://tec.openplanner.team/stops/H1mk108b"], ["https://data.delijn.be/stops/300787", "https://mivb.openplanner.team/stops/1489"], ["https://data.delijn.be/stops/400452", "https://tec.openplanner.team/stops/LBPboir1"], ["http://irail.be/stations/NMBS/008841400", "https://tec.openplanner.team/stops/LWAloui2"], ["http://irail.be/stations/NMBS/008844321", "https://tec.openplanner.team/stops/LTHmaka1"], ["https://data.delijn.be/stops/304719", "https://mivb.openplanner.team/stops/3317"], ["https://data.delijn.be/stops/407648", "https://tec.openplanner.team/stops/LBPmais1"], ["https://mivb.openplanner.team/stops/1846", "https://tec.openplanner.team/stops/Bwolkra2"], ["http://irail.be/stations/NMBS/008894151", "https://data.delijn.be/stops/203155"], ["https://data.delijn.be/stops/305343", "https://tec.openplanner.team/stops/Bbgewal1"], ["https://data.delijn.be/stops/307686", "https://mivb.openplanner.team/stops/1933B"], ["https://data.delijn.be/stops/307965", "https://tec.openplanner.team/stops/Bwavfol1"], ["https://data.delijn.be/stops/301920", "https://mivb.openplanner.team/stops/2078"], ["https://data.delijn.be/stops/308727", "https://tec.openplanner.team/stops/Bgoemho2"], ["http://irail.be/stations/NMBS/008883220", "https://tec.openplanner.team/stops/Beclpma1"], ["https://data.delijn.be/stops/300739", "https://mivb.openplanner.team/stops/6857"], ["https://data.delijn.be/stops/308355", "https://mivb.openplanner.team/stops/6202"], ["https://data.delijn.be/stops/301031", "https://tec.openplanner.team/stops/Bsgipmo2"], ["https://data.delijn.be/stops/304687", "https://tec.openplanner.team/stops/Bhalalb1"], ["https://data.delijn.be/stops/306814", "https://mivb.openplanner.team/stops/3118"], ["http://irail.be/stations/NMBS/008811270", "https://data.delijn.be/stops/302098"], ["https://data.delijn.be/stops/307640", "https://mivb.openplanner.team/stops/1938"], ["https://data.delijn.be/stops/303122", "https://tec.openplanner.team/stops/Blemsta1"], ["https://data.delijn.be/stops/509737", "https://tec.openplanner.team/stops/H4mo206b"], ["https://data.delijn.be/stops/305352", "https://tec.openplanner.team/stops/Bbgever1"], ["https://data.delijn.be/stops/408701", "https://tec.openplanner.team/stops/LGLobor2"], ["https://data.delijn.be/stops/400455", "https://tec.openplanner.team/stops/LEBdoct1"], ["http://irail.be/stations/NMBS/008891132", "https://data.delijn.be/stops/200826"], ["http://irail.be/stations/NMBS/008891173", "https://data.delijn.be/stops/501534"], ["https://data.delijn.be/stops/301068", "https://mivb.openplanner.team/stops/8381"], ["http://irail.be/stations/NMBS/008861523", "https://tec.openplanner.team/stops/Bcrnnca2"], ["http://irail.be/stations/NMBS/008874005", "https://tec.openplanner.team/stops/Ccugend2"], ["http://irail.be/stations/NMBS/008892007", "https://data.delijn.be/stops/201144"], ["http://irail.be/stations/NMBS/008400219", "https://tec.openplanner.team/stops/LFCdree2"], ["https://data.delijn.be/stops/305423", "https://mivb.openplanner.team/stops/9561"], ["https://data.delijn.be/stops/207760", "https://tec.openplanner.team/stops/H5rx137a"], ["https://data.delijn.be/stops/408922", "https://tec.openplanner.team/stops/LDpzol-2"], ["http://irail.be/stations/NMBS/008832433", "https://data.delijn.be/stops/104958"], ["https://data.delijn.be/stops/302798", "https://mivb.openplanner.team/stops/1587"], ["http://irail.be/stations/NMBS/008844420", "https://tec.openplanner.team/stops/LSPchap2"], ["http://irail.be/stations/NMBS/008821337", "https://data.delijn.be/stops/107239"], ["http://irail.be/stations/NMBS/008885068", "https://tec.openplanner.team/stops/H4fr142b"], ["https://mivb.openplanner.team/stops/2402", "https://tec.openplanner.team/stops/Bsgipha1"], ["https://data.delijn.be/stops/301043", "https://mivb.openplanner.team/stops/2216"], ["https://data.delijn.be/stops/403774", "https://tec.openplanner.team/stops/LBGvill2"], ["https://data.delijn.be/stops/509385", "https://tec.openplanner.team/stops/H4pl137b"], ["http://irail.be/stations/NMBS/008811734", "https://tec.openplanner.team/stops/Bwavdel1"], ["http://irail.be/stations/NMBS/008822160", "https://data.delijn.be/stops/207740"], ["http://irail.be/stations/NMBS/008866175", "https://tec.openplanner.team/stops/X671aga"], ["https://data.delijn.be/stops/509237", "https://tec.openplanner.team/stops/H4co141a"], ["http://irail.be/stations/NMBS/008814118", "https://mivb.openplanner.team/stops/5121"], ["https://data.delijn.be/stops/300827", "https://mivb.openplanner.team/stops/2828"], ["https://data.delijn.be/stops/307148", "https://tec.openplanner.team/stops/Bhaless2"], ["http://irail.be/stations/NMBS/008814373", "https://mivb.openplanner.team/stops/5719"], ["https://data.delijn.be/stops/300793", "https://mivb.openplanner.team/stops/1208"], ["https://data.delijn.be/stops/302133", "https://tec.openplanner.team/stops/Bptemch2"], ["https://data.delijn.be/stops/307490", "https://mivb.openplanner.team/stops/9659"], ["https://mivb.openplanner.team/stops/1760", "https://tec.openplanner.team/stops/Baudstr1"], ["http://irail.be/stations/NMBS/008833605", "https://tec.openplanner.team/stops/LLaover3"], ["https://data.delijn.be/stops/400456", "https://tec.openplanner.team/stops/LEBdoct2"], ["https://data.delijn.be/stops/304207", "https://tec.openplanner.team/stops/Brsrrcu2"], ["https://data.delijn.be/stops/306395", "https://mivb.openplanner.team/stops/9727"], ["https://data.delijn.be/stops/509739", "https://tec.openplanner.team/stops/H4lu128a"], ["https://data.delijn.be/stops/308723", "https://tec.openplanner.team/stops/Bgoesch2"], ["https://data.delijn.be/stops/303631", "https://mivb.openplanner.team/stops/6603"], ["http://irail.be/stations/NMBS/008895000", "https://data.delijn.be/stops/204972"], ["https://data.delijn.be/stops/304088", "https://tec.openplanner.team/stops/Bovevnd2"], ["https://data.delijn.be/stops/300758", "https://mivb.openplanner.team/stops/1327"], ["https://data.delijn.be/stops/300924", "https://mivb.openplanner.team/stops/4505"], ["http://irail.be/stations/NMBS/008841558", "https://tec.openplanner.team/stops/Llgerac2"], ["http://irail.be/stations/NMBS/008814308", "https://data.delijn.be/stops/307223"], ["https://data.delijn.be/stops/308818", "https://mivb.openplanner.team/stops/6436"], ["http://irail.be/stations/NMBS/008893815", "https://data.delijn.be/stops/203987"], ["https://data.delijn.be/stops/301018", "https://mivb.openplanner.team/stops/1306"], ["http://irail.be/stations/NMBS/008881505", "https://tec.openplanner.team/stops/H1go169a"], ["https://data.delijn.be/stops/209413", "https://tec.openplanner.team/stops/H5rx128a"], ["https://data.delijn.be/stops/300935", "https://mivb.openplanner.team/stops/7269"], ["http://irail.be/stations/NMBS/008822111", "https://data.delijn.be/stops/308715"], ["https://data.delijn.be/stops/302428", "https://tec.openplanner.team/stops/Bsjgmil1"], ["https://data.delijn.be/stops/305890", "https://mivb.openplanner.team/stops/9632"], ["http://irail.be/stations/NMBS/008895646", "https://data.delijn.be/stops/302134"], ["http://irail.be/stations/NMBS/008822145", "https://data.delijn.be/stops/207746"], ["https://data.delijn.be/stops/301019", "https://mivb.openplanner.team/stops/4062"], ["http://irail.be/stations/NMBS/008893120", "https://data.delijn.be/stops/203450"], ["http://irail.be/stations/NMBS/008015345", "https://tec.openplanner.team/stops/LaAlinz2"], ["http://irail.be/stations/NMBS/008895711", "https://data.delijn.be/stops/206799"], ["http://irail.be/stations/NMBS/008892635", "https://data.delijn.be/stops/208281"], ["https://data.delijn.be/stops/400483", "https://tec.openplanner.team/stops/LRGchap1"], ["https://mivb.openplanner.team/stops/0340341", "https://tec.openplanner.team/stops/Bsgicfo1"], ["http://irail.be/stations/NMBS/008833126", "https://data.delijn.be/stops/302897"], ["http://irail.be/stations/NMBS/008895208", "https://data.delijn.be/stops/218029"], ["http://irail.be/stations/NMBS/008872306", "https://tec.openplanner.team/stops/Cgystbe1"], ["http://irail.be/stations/NMBS/008886587", "https://tec.openplanner.team/stops/H5is168b"], ["http://irail.be/stations/NMBS/008842655", "https://tec.openplanner.team/stops/LESlieg1"], ["https://mivb.openplanner.team/stops/5254", "https://tec.openplanner.team/stops/Bixlpat1"], ["http://irail.be/stations/NMBS/008892304", "https://data.delijn.be/stops/501600"], ["https://mivb.openplanner.team/stops/6934F", "https://tec.openplanner.team/stops/Buccrac2"], ["https://data.delijn.be/stops/304209", "https://tec.openplanner.team/stops/Brsrabe1"], ["https://data.delijn.be/stops/308652", "https://mivb.openplanner.team/stops/9600B"], ["http://irail.be/stations/NMBS/008864345", "https://tec.openplanner.team/stops/X999aka"], ["http://irail.be/stations/NMBS/008895844", "https://data.delijn.be/stops/206846"], ["https://data.delijn.be/stops/406298", "https://tec.openplanner.team/stops/Blanraa1"], ["http://irail.be/stations/NMBS/008895760", "https://data.delijn.be/stops/207977"], ["https://data.delijn.be/stops/307024", "https://tec.openplanner.team/stops/H1en100b"], ["http://irail.be/stations/NMBS/008871381", "https://tec.openplanner.team/stops/H2go119a"], ["https://data.delijn.be/stops/300932", "https://mivb.openplanner.team/stops/2995"], ["http://irail.be/stations/NMBS/008883113", "https://tec.openplanner.team/stops/H3so159b"], ["https://data.delijn.be/stops/301025", "https://mivb.openplanner.team/stops/0340141"], ["http://irail.be/stations/NMBS/008821857", "https://data.delijn.be/stops/108052"], ["http://irail.be/stations/NMBS/008821543", "https://data.delijn.be/stops/105406"], ["http://irail.be/stations/NMBS/008822475", "https://data.delijn.be/stops/300645"], ["https://data.delijn.be/stops/407216", "https://tec.openplanner.team/stops/LHStrez1"], ["https://data.delijn.be/stops/301080", "https://mivb.openplanner.team/stops/6017"], ["https://data.delijn.be/stops/407209", "https://tec.openplanner.team/stops/LHTdelh2"], ["http://irail.be/stations/NMBS/008861416", "https://tec.openplanner.team/stops/Bgembhe2"], ["https://data.delijn.be/stops/300340", "https://tec.openplanner.team/stops/Bblapin2"], ["https://data.delijn.be/stops/308728", "https://tec.openplanner.team/stops/Bgoemho2"], ["https://data.delijn.be/stops/305234", "https://mivb.openplanner.team/stops/9627"], ["https://data.delijn.be/stops/307690", "https://tec.openplanner.team/stops/Bbrlpar1"], ["https://data.delijn.be/stops/300022", "https://mivb.openplanner.team/stops/9677"], ["https://data.delijn.be/stops/306068", "https://tec.openplanner.team/stops/Blempuc2"], ["https://data.delijn.be/stops/304688", "https://tec.openplanner.team/stops/Bhalwat2"], ["https://data.delijn.be/stops/303958", "https://tec.openplanner.team/stops/Bhmmhde1"], ["http://irail.be/stations/NMBS/008833175", "https://data.delijn.be/stops/303172"], ["http://irail.be/stations/NMBS/008015458", "https://tec.openplanner.team/stops/LmHflor2"], ["https://data.delijn.be/stops/504235", "https://tec.openplanner.team/stops/H4co148b"], ["http://irail.be/stations/NMBS/008872579", "https://tec.openplanner.team/stops/Bbstchv1"], ["https://data.delijn.be/stops/300753", "https://mivb.openplanner.team/stops/2373"], ["https://data.delijn.be/stops/408912", "https://tec.openplanner.team/stops/LFPchat2"], ["https://mivb.openplanner.team/stops/5210", "https://tec.openplanner.team/stops/Buccbas2"], ["https://data.delijn.be/stops/509381", "https://tec.openplanner.team/stops/H4pl116b"], ["http://irail.be/stations/NMBS/008864345", "https://tec.openplanner.team/stops/X902afd"], ["https://data.delijn.be/stops/308124", "https://tec.openplanner.team/stops/Bgoesch1"], ["http://irail.be/stations/NMBS/008821196", "https://data.delijn.be/stops/102470"], ["http://irail.be/stations/NMBS/008843307", "https://tec.openplanner.team/stops/LHUlebo2"], ["http://irail.be/stations/NMBS/008814134", "https://data.delijn.be/stops/301114"], ["http://irail.be/stations/NMBS/008845146", "https://tec.openplanner.team/stops/X750aga"], ["https://data.delijn.be/stops/408867", "https://tec.openplanner.team/stops/LFCvoer2"], ["http://irail.be/stations/NMBS/008822137", "https://data.delijn.be/stops/207710"], ["http://irail.be/stations/NMBS/008865300", "https://tec.openplanner.team/stops/X804ald"], ["https://data.delijn.be/stops/505396", "https://tec.openplanner.team/stops/H4ef113b"], ["http://irail.be/stations/NMBS/008847258", "https://tec.openplanner.team/stops/Louazot1"], ["https://data.delijn.be/stops/301680", "https://tec.openplanner.team/stops/Bnetrec2"], ["https://data.delijn.be/stops/305348", "https://tec.openplanner.team/stops/Bbgepau2"], ["http://irail.be/stations/NMBS/008894433", "https://data.delijn.be/stops/205222"], ["https://data.delijn.be/stops/408827", "https://tec.openplanner.team/stops/LMgkrui2"], ["http://irail.be/stations/NMBS/008821709", "https://data.delijn.be/stops/102617"], ["https://data.delijn.be/stops/410136", "https://tec.openplanner.team/stops/Lvomoul1"], ["https://data.delijn.be/stops/300969", "https://mivb.openplanner.team/stops/1724"], ["http://irail.be/stations/NMBS/008841327", "https://tec.openplanner.team/stops/LBIrout1"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1ml111a"], ["http://irail.be/stations/NMBS/008812229", "https://data.delijn.be/stops/306286"], ["http://irail.be/stations/NMBS/008892304", "https://data.delijn.be/stops/509503"], ["https://data.delijn.be/stops/408965", "https://tec.openplanner.team/stops/LWAbett2"], ["https://data.delijn.be/stops/304931", "https://mivb.openplanner.team/stops/9751"], ["https://data.delijn.be/stops/301315", "https://mivb.openplanner.team/stops/9801"], ["http://irail.be/stations/NMBS/008812005", "https://mivb.openplanner.team/stops/8422"], ["https://data.delijn.be/stops/305270", "https://mivb.openplanner.team/stops/2827"], ["https://data.delijn.be/stops/301083", "https://mivb.openplanner.team/stops/2022"], ["https://data.delijn.be/stops/404683", "https://tec.openplanner.team/stops/LPAbour2"], ["http://irail.be/stations/NMBS/008862018", "https://tec.openplanner.team/stops/X602ada"], ["https://mivb.openplanner.team/stops/3912", "https://tec.openplanner.team/stops/Bettgle2"], ["http://irail.be/stations/NMBS/008814175", "https://data.delijn.be/stops/304455"], ["http://irail.be/stations/NMBS/008866175", "https://tec.openplanner.team/stops/X650afc"], ["https://data.delijn.be/stops/303632", "https://mivb.openplanner.team/stops/2263"], ["https://data.delijn.be/stops/300995", "https://mivb.openplanner.team/stops/2247"], ["http://irail.be/stations/NMBS/008821006", "https://data.delijn.be/stops/103364"], ["http://irail.be/stations/NMBS/008811130", "https://mivb.openplanner.team/stops/2292B"], ["http://irail.be/stations/NMBS/008822525", "https://data.delijn.be/stops/305973"], ["https://data.delijn.be/stops/504135", "https://tec.openplanner.team/stops/H4co149b"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bsmgpla2"], ["http://irail.be/stations/NMBS/008842663", "https://tec.openplanner.team/stops/LESpaix1"], ["https://mivb.openplanner.team/stops/2764G", "https://tec.openplanner.team/stops/Buccdch1"], ["https://data.delijn.be/stops/302451", "https://tec.openplanner.team/stops/Bsjgegl1"], ["http://irail.be/stations/NMBS/008821071", "https://data.delijn.be/stops/108815"], ["https://mivb.openplanner.team/stops/6453", "https://tec.openplanner.team/stops/Bixllep2"], ["http://irail.be/stations/NMBS/008871332", "https://tec.openplanner.team/stops/Bbuztai1"], ["https://data.delijn.be/stops/401402", "https://mivb.openplanner.team/stops/3207"], ["https://data.delijn.be/stops/301010", "https://mivb.openplanner.team/stops/4055G"], ["https://data.delijn.be/stops/306904", "https://tec.openplanner.team/stops/Bgoekaz1"], ["https://data.delijn.be/stops/407581", "https://tec.openplanner.team/stops/LDpulve1"], ["https://data.delijn.be/stops/408839", "https://tec.openplanner.team/stops/LTEkl122"], ["https://data.delijn.be/stops/408858", "https://tec.openplanner.team/stops/LWRbois2"], ["http://irail.be/stations/NMBS/008861416", "https://tec.openplanner.team/stops/N522acb"], ["https://data.delijn.be/stops/208591", "https://tec.openplanner.team/stops/H1en101b"], ["https://data.delijn.be/stops/303958", "https://tec.openplanner.team/stops/Bbbksth2"], ["https://data.delijn.be/stops/302400", "https://mivb.openplanner.team/stops/1495"], ["https://data.delijn.be/stops/305518", "https://mivb.openplanner.team/stops/9169"], ["https://data.delijn.be/stops/300920", "https://mivb.openplanner.team/stops/5048"], ["https://data.delijn.be/stops/208766", "https://tec.openplanner.team/stops/H4de114b"], ["http://irail.be/stations/NMBS/008824232", "https://data.delijn.be/stops/104459"], ["https://data.delijn.be/stops/307795", "https://mivb.openplanner.team/stops/5363"], ["https://data.delijn.be/stops/302424", "https://tec.openplanner.team/stops/Bjodrga1"], ["https://data.delijn.be/stops/503331", "https://tec.openplanner.team/stops/H4do100b"], ["http://irail.be/stations/NMBS/008883121", "https://tec.openplanner.team/stops/H1ne140b"], ["http://irail.be/stations/NMBS/008832235", "https://data.delijn.be/stops/403062"], ["https://data.delijn.be/stops/408838", "https://tec.openplanner.team/stops/LRmmabr1"], ["https://data.delijn.be/stops/300907", "https://mivb.openplanner.team/stops/1913"], ["https://mivb.openplanner.team/stops/4854C", "https://tec.openplanner.team/stops/Buccobs2"], ["http://irail.be/stations/NMBS/008863156", "https://tec.openplanner.team/stops/N539bfa"], ["http://irail.be/stations/NMBS/008811155", "https://data.delijn.be/stops/300940"], ["https://data.delijn.be/stops/306902", "https://tec.openplanner.team/stops/Bgoekaz2"], ["https://data.delijn.be/stops/301752", "https://mivb.openplanner.team/stops/1099"], ["https://data.delijn.be/stops/304066", "https://tec.openplanner.team/stops/Bovehst1"], ["http://irail.be/stations/NMBS/008728105", "https://data.delijn.be/stops/504561"], ["https://data.delijn.be/stops/303223", "https://mivb.openplanner.team/stops/3851"], ["http://irail.be/stations/NMBS/008841665", "https://tec.openplanner.team/stops/Lhrmemo2"], ["https://data.delijn.be/stops/408890", "https://tec.openplanner.team/stops/LFMkrin2"], ["http://irail.be/stations/NMBS/008883808", "https://tec.openplanner.team/stops/Btubpla1"], ["https://data.delijn.be/stops/404675", "https://tec.openplanner.team/stops/LVSpota2"], ["http://irail.be/stations/NMBS/008842051", "https://tec.openplanner.team/stops/Lvcbasi*"], ["https://data.delijn.be/stops/307638", "https://mivb.openplanner.team/stops/1957B"], ["https://data.delijn.be/stops/408836", "https://tec.openplanner.team/stops/LAUcent2"], ["https://data.delijn.be/stops/305237", "https://tec.openplanner.team/stops/Bmrqgar2"], ["https://data.delijn.be/stops/301401", "https://mivb.openplanner.team/stops/2609"], ["https://data.delijn.be/stops/300935", "https://mivb.openplanner.team/stops/3407"], ["http://irail.be/stations/NMBS/008822053", "https://data.delijn.be/stops/302517"], ["http://irail.be/stations/NMBS/008821105", "https://data.delijn.be/stops/102212"], ["https://data.delijn.be/stops/301160", "https://mivb.openplanner.team/stops/1258B"], ["https://data.delijn.be/stops/508679", "https://tec.openplanner.team/stops/H4ae102b"], ["http://irail.be/stations/NMBS/008831807", "https://data.delijn.be/stops/410344"], ["https://data.delijn.be/stops/305340", "https://tec.openplanner.team/stops/Bovetsa2"], ["https://data.delijn.be/stops/300788", "https://mivb.openplanner.team/stops/1487"], ["http://irail.be/stations/NMBS/008893542", "https://data.delijn.be/stops/203240"], ["https://data.delijn.be/stops/303225", "https://mivb.openplanner.team/stops/5963"], ["https://data.delijn.be/stops/300852", "https://mivb.openplanner.team/stops/3259B"], ["https://data.delijn.be/stops/303831", "https://mivb.openplanner.team/stops/0280213"], ["https://mivb.openplanner.team/stops/3551", "https://tec.openplanner.team/stops/Baudvdr1"], ["http://irail.be/stations/NMBS/008866662", "https://tec.openplanner.team/stops/X614ahb"], ["https://data.delijn.be/stops/302848", "https://tec.openplanner.team/stops/Bwaak102"], ["https://data.delijn.be/stops/207773", "https://tec.openplanner.team/stops/H5rx137a"], ["http://irail.be/stations/NMBS/008892452", "https://data.delijn.be/stops/500938"], ["http://irail.be/stations/NMBS/008847258", "https://tec.openplanner.team/stops/Lscgare2"], ["https://data.delijn.be/stops/301403", "https://mivb.openplanner.team/stops/5727F"], ["https://data.delijn.be/stops/407205", "https://tec.openplanner.team/stops/LHTbaud2"], ["https://data.delijn.be/stops/305913", "https://mivb.openplanner.team/stops/5109"], ["http://irail.be/stations/NMBS/008814373", "https://data.delijn.be/stops/303226"], ["http://irail.be/stations/NMBS/008811437", "https://data.delijn.be/stops/301146"], ["https://data.delijn.be/stops/209411", "https://tec.openplanner.team/stops/H5rx110a"], ["https://data.delijn.be/stops/300952", "https://mivb.openplanner.team/stops/0470259"], ["https://data.delijn.be/stops/301069", "https://mivb.openplanner.team/stops/3230F"], ["https://data.delijn.be/stops/308822", "https://tec.openplanner.team/stops/Bwaak101"], ["http://irail.be/stations/NMBS/008891173", "https://data.delijn.be/stops/501018"], ["http://irail.be/stations/NMBS/008865565", "https://tec.openplanner.team/stops/X850afb"], ["https://data.delijn.be/stops/300813", "https://mivb.openplanner.team/stops/4131B"], ["https://data.delijn.be/stops/300784", "https://mivb.openplanner.team/stops/7640211"], ["https://data.delijn.be/stops/301017", "https://mivb.openplanner.team/stops/1307F"], ["https://data.delijn.be/stops/405403", "https://tec.openplanner.team/stops/Brach122"], ["http://irail.be/stations/NMBS/008884004", "https://tec.openplanner.team/stops/H1ho143c"], ["https://data.delijn.be/stops/303628", "https://tec.openplanner.team/stops/Brsrrcu1"], ["https://data.delijn.be/stops/302426", "https://tec.openplanner.team/stops/Bjodeco3"], ["https://data.delijn.be/stops/303631", "https://mivb.openplanner.team/stops/3228F"], ["https://data.delijn.be/stops/408919", "https://tec.openplanner.team/stops/LTEcamp1"], ["https://data.delijn.be/stops/301106", "https://mivb.openplanner.team/stops/5272F"], ["https://data.delijn.be/stops/400455", "https://tec.openplanner.team/stops/LEMec--1"], ["http://irail.be/stations/NMBS/008814266", "https://tec.openplanner.team/stops/Bwatfia2"], ["http://irail.be/stations/NMBS/008872520", "https://tec.openplanner.team/stops/N584bqb"], ["http://irail.be/stations/NMBS/008885068", "https://tec.openplanner.team/stops/H4rc234a"], ["http://irail.be/stations/NMBS/008886041", "https://tec.openplanner.team/stops/H5ma186b"], ["https://data.delijn.be/stops/301042", "https://mivb.openplanner.team/stops/3226B"], ["https://data.delijn.be/stops/305887", "https://mivb.openplanner.team/stops/2352"], ["https://data.delijn.be/stops/408846", "https://tec.openplanner.team/stops/LRmsmvo2"], ["https://data.delijn.be/stops/302420", "https://tec.openplanner.team/stops/Bmlngch2"], ["https://data.delijn.be/stops/300315", "https://tec.openplanner.team/stops/Bbsgrve2"], ["https://data.delijn.be/stops/307557", "https://tec.openplanner.team/stops/Bstemco1"], ["http://irail.be/stations/NMBS/008894201", "https://data.delijn.be/stops/204079"], ["http://irail.be/stations/NMBS/008814167", "https://data.delijn.be/stops/307694"], ["https://mivb.openplanner.team/stops/1160", "https://tec.openplanner.team/stops/Bbxltrv1"], ["http://irail.be/stations/NMBS/008866258", "https://tec.openplanner.team/stops/X661bca"], ["http://irail.be/stations/NMBS/008896149", "https://data.delijn.be/stops/510029"], ["https://data.delijn.be/stops/303376", "https://mivb.openplanner.team/stops/1850"], ["https://data.delijn.be/stops/308868", "https://tec.openplanner.team/stops/Bkrapri1"], ["http://irail.be/stations/NMBS/008895711", "https://data.delijn.be/stops/200973"], ["https://data.delijn.be/stops/302225", "https://tec.openplanner.team/stops/Bovelge2"], ["http://irail.be/stations/NMBS/008832227", "https://data.delijn.be/stops/401960"], ["http://irail.be/stations/NMBS/008861317", "https://tec.openplanner.team/stops/N522ama"], ["https://data.delijn.be/stops/304448", "https://tec.openplanner.team/stops/Brsgece1"], ["https://data.delijn.be/stops/302407", "https://mivb.openplanner.team/stops/7670108"], ["http://irail.be/stations/NMBS/008821824", "https://data.delijn.be/stops/108157"], ["http://irail.be/stations/NMBS/008886074", "https://tec.openplanner.team/stops/H5me106a"], ["https://mivb.openplanner.team/stops/6425F", "https://tec.openplanner.team/stops/Bsgimca2"], ["https://data.delijn.be/stops/300851", "https://mivb.openplanner.team/stops/1245"], ["https://data.delijn.be/stops/305354", "https://tec.openplanner.team/stops/Bovetsa2"], ["https://data.delijn.be/stops/305429", "https://mivb.openplanner.team/stops/1629"], ["https://data.delijn.be/stops/301943", "https://mivb.openplanner.team/stops/0470759"], ["https://data.delijn.be/stops/407721", "https://tec.openplanner.team/stops/LMalarg4"], ["https://data.delijn.be/stops/408810", "https://tec.openplanner.team/stops/LVIcarm4"], ["http://irail.be/stations/NMBS/008871647", "https://tec.openplanner.team/stops/H1so131e"], ["https://data.delijn.be/stops/306198", "https://tec.openplanner.team/stops/Bhalgja2"], ["https://mivb.openplanner.team/stops/4306", "https://tec.openplanner.team/stops/Bettgar1"], ["http://irail.be/stations/NMBS/008841558", "https://tec.openplanner.team/stops/Llghec-3"], ["http://irail.be/stations/NMBS/008865110", "https://tec.openplanner.team/stops/X725afh"], ["https://data.delijn.be/stops/301086", "https://mivb.openplanner.team/stops/2028"], ["https://data.delijn.be/stops/408836", "https://tec.openplanner.team/stops/LRmhage5"], ["https://data.delijn.be/stops/407212", "https://tec.openplanner.team/stops/LHe3com1"], ["https://data.delijn.be/stops/304552", "https://mivb.openplanner.team/stops/9679"], ["https://data.delijn.be/stops/301166", "https://mivb.openplanner.team/stops/2718"], ["https://data.delijn.be/stops/400668", "https://tec.openplanner.team/stops/LBpvue-1"], ["https://data.delijn.be/stops/401398", "https://mivb.openplanner.team/stops/1533"], ["http://irail.be/stations/NMBS/008861127", "https://tec.openplanner.team/stops/N501cwb"], ["http://irail.be/stations/NMBS/008811825", "https://tec.openplanner.team/stops/Bcsemon2"], ["http://irail.be/stations/NMBS/008849064", "https://tec.openplanner.team/stops/LVIacac1"], ["https://data.delijn.be/stops/304432", "https://tec.openplanner.team/stops/Brsgsan2"], ["http://irail.be/stations/NMBS/008822533", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/304141", "https://tec.openplanner.team/stops/Bbghgli2"], ["https://data.delijn.be/stops/207755", "https://tec.openplanner.team/stops/H5rx144b"], ["http://irail.be/stations/NMBS/008822517", "https://data.delijn.be/stops/301851"], ["http://irail.be/stations/NMBS/008821238", "https://data.delijn.be/stops/108835"], ["http://irail.be/stations/NMBS/008833274", "https://data.delijn.be/stops/308640"], ["http://irail.be/stations/NMBS/008811205", "https://mivb.openplanner.team/stops/8231"], ["https://data.delijn.be/stops/300974", "https://mivb.openplanner.team/stops/2753"], ["https://data.delijn.be/stops/304441", "https://tec.openplanner.team/stops/Brsgepr1"], ["http://irail.be/stations/NMBS/008882701", "https://tec.openplanner.team/stops/H2mg143a"], ["http://irail.be/stations/NMBS/008831138", "https://data.delijn.be/stops/400861"], ["http://irail.be/stations/NMBS/008015345", "https://tec.openplanner.team/stops/LaAbush*"], ["https://data.delijn.be/stops/303247", "https://tec.openplanner.team/stops/Blkbbeu2"], ["http://irail.be/stations/NMBS/008871373", "https://tec.openplanner.team/stops/H2gy113a"], ["https://data.delijn.be/stops/503772", "https://tec.openplanner.team/stops/H4eh100b"], ["http://irail.be/stations/NMBS/008832250", "https://data.delijn.be/stops/404221"], ["http://irail.be/stations/NMBS/008731388", "https://data.delijn.be/stops/504694"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N534bqa"], ["https://data.delijn.be/stops/302403", "https://mivb.openplanner.team/stops/7670208"], ["http://irail.be/stations/NMBS/008892254", "https://data.delijn.be/stops/509700"], ["http://irail.be/stations/NMBS/008874609", "https://tec.openplanner.team/stops/N543cfa"], ["https://data.delijn.be/stops/504323", "https://tec.openplanner.team/stops/H4mo193b"], ["https://data.delijn.be/stops/307726", "https://tec.openplanner.team/stops/Bwaucan1"], ["https://data.delijn.be/stops/306000", "https://tec.openplanner.team/stops/Bove4ko2"], ["http://irail.be/stations/NMBS/008844503", "https://tec.openplanner.team/stops/LWEgare1"], ["http://irail.be/stations/NMBS/008200132", "https://tec.openplanner.team/stops/X764afb"], ["https://data.delijn.be/stops/307792", "https://mivb.openplanner.team/stops/1755"], ["https://data.delijn.be/stops/307261", "https://mivb.openplanner.team/stops/9677"], ["https://data.delijn.be/stops/302411", "https://tec.openplanner.team/stops/Bmlngvi1"], ["https://data.delijn.be/stops/300338", "https://tec.openplanner.team/stops/Balsnie1"], ["https://mivb.openplanner.team/stops/0120126", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://data.delijn.be/stops/307970", "https://tec.openplanner.team/stops/Bbgever1"], ["http://irail.be/stations/NMBS/008811775", "https://data.delijn.be/stops/302761"], ["https://data.delijn.be/stops/304457", "https://tec.openplanner.team/stops/Brsggar2"], ["https://data.delijn.be/stops/406564", "https://tec.openplanner.team/stops/LWOrout1"], ["https://data.delijn.be/stops/302886", "https://tec.openplanner.team/stops/Bleunaa2"], ["https://data.delijn.be/stops/405364", "https://tec.openplanner.team/stops/Braclin1"], ["https://data.delijn.be/stops/404062", "https://tec.openplanner.team/stops/LWAbett2"], ["http://irail.be/stations/NMBS/008844255", "https://tec.openplanner.team/stops/LLUcdoy1"], ["http://irail.be/stations/NMBS/008845229", "https://tec.openplanner.team/stops/LTPlegr2"], ["http://irail.be/stations/NMBS/008728673", "https://tec.openplanner.team/stops/H4mo155a"], ["http://irail.be/stations/NMBS/008821907", "https://data.delijn.be/stops/106231"], ["http://irail.be/stations/NMBS/008824224", "https://data.delijn.be/stops/105972"], ["https://data.delijn.be/stops/408880", "https://tec.openplanner.team/stops/LDppana2"], ["https://data.delijn.be/stops/209191", "https://tec.openplanner.team/stops/H5el101a"], ["http://irail.be/stations/NMBS/008811437", "https://tec.openplanner.team/stops/Bwbfckr2"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2hp124c"], ["http://irail.be/stations/NMBS/008873379", "https://tec.openplanner.team/stops/Cbecarr2"], ["https://data.delijn.be/stops/305543", "https://tec.openplanner.team/stops/Brsg7fo2"], ["http://irail.be/stations/NMBS/008821402", "https://data.delijn.be/stops/104261"], ["http://irail.be/stations/NMBS/008882248", "https://tec.openplanner.team/stops/H2ca115a"], ["https://data.delijn.be/stops/301679", "https://tec.openplanner.team/stops/Bnetegl2"], ["http://irail.be/stations/NMBS/008849072", "https://tec.openplanner.team/stops/X790aib"], ["http://irail.be/stations/NMBS/008895646", "https://data.delijn.be/stops/300306"], ["https://mivb.openplanner.team/stops/0220333", "https://tec.openplanner.team/stops/Baudhan1"], ["https://data.delijn.be/stops/405731", "https://tec.openplanner.team/stops/Lrchype1"], ["https://data.delijn.be/stops/504653", "https://tec.openplanner.team/stops/H4wn124a"], ["https://data.delijn.be/stops/307976", "https://tec.openplanner.team/stops/Bwavmes2"], ["https://data.delijn.be/stops/405741", "https://tec.openplanner.team/stops/Llgelis1"], ["https://data.delijn.be/stops/207754", "https://tec.openplanner.team/stops/H4ss155a"], ["https://data.delijn.be/stops/302445", "https://tec.openplanner.team/stops/Bsrgm102"], ["http://irail.be/stations/NMBS/008864345", "https://tec.openplanner.team/stops/X902afa"], ["https://data.delijn.be/stops/300761", "https://mivb.openplanner.team/stops/7640311"], ["http://irail.be/stations/NMBS/008893039", "https://data.delijn.be/stops/203938"], ["http://irail.be/stations/NMBS/008831088", "https://data.delijn.be/stops/403968"], ["https://data.delijn.be/stops/300977", "https://mivb.openplanner.team/stops/2974"], ["https://data.delijn.be/stops/307205", "https://tec.openplanner.team/stops/Bcbqegl1"], ["https://data.delijn.be/stops/300994", "https://mivb.openplanner.team/stops/1642F"], ["http://irail.be/stations/NMBS/008881505", "https://tec.openplanner.team/stops/H1al108b"], ["http://irail.be/stations/NMBS/008892338", "https://data.delijn.be/stops/501004"], ["http://irail.be/stations/NMBS/008893211", "https://data.delijn.be/stops/202011"], ["https://data.delijn.be/stops/306048", "https://mivb.openplanner.team/stops/6012G"], ["http://irail.be/stations/NMBS/008879004", "https://tec.openplanner.team/stops/H1er108d"], ["https://data.delijn.be/stops/301006", "https://mivb.openplanner.team/stops/1304"], ["https://data.delijn.be/stops/301061", "https://mivb.openplanner.team/stops/5072"], ["https://mivb.openplanner.team/stops/1949", "https://tec.openplanner.team/stops/Bucceng1"], ["https://data.delijn.be/stops/304028", "https://tec.openplanner.team/stops/Bovejme2"], ["http://irail.be/stations/NMBS/008200518", "https://tec.openplanner.team/stops/X688aab"], ["http://irail.be/stations/NMBS/008832409", "https://data.delijn.be/stops/107603"], ["https://data.delijn.be/stops/302449", "https://tec.openplanner.team/stops/Bzluvil1"], ["https://data.delijn.be/stops/304069", "https://tec.openplanner.team/stops/Bovevri1"], ["https://data.delijn.be/stops/301134", "https://tec.openplanner.team/stops/Buccham1"], ["https://data.delijn.be/stops/405737", "https://tec.openplanner.team/stops/Lrcvill4"], ["https://data.delijn.be/stops/306814", "https://mivb.openplanner.team/stops/1569B"], ["https://data.delijn.be/stops/408831", "https://tec.openplanner.team/stops/LMgbern2"], ["https://data.delijn.be/stops/408826", "https://tec.openplanner.team/stops/LMgkrui2"], ["http://irail.be/stations/NMBS/008821154", "https://data.delijn.be/stops/104310"], ["https://data.delijn.be/stops/405335", "https://tec.openplanner.team/stops/Bneelaa1"], ["http://irail.be/stations/NMBS/008821725", "https://data.delijn.be/stops/108243"], ["http://irail.be/stations/NMBS/008811304", "https://mivb.openplanner.team/stops/1131B"], ["http://irail.be/stations/NMBS/008871308", "https://tec.openplanner.team/stops/Cpctunn2"], ["http://irail.be/stations/NMBS/008832375", "https://data.delijn.be/stops/403291"], ["https://data.delijn.be/stops/405449", "https://tec.openplanner.team/stops/LWscona1"], ["http://irail.be/stations/NMBS/008872306", "https://tec.openplanner.team/stops/Cjuecha1"], ["http://irail.be/stations/NMBS/008841467", "https://tec.openplanner.team/stops/LMOfrel2"], ["http://irail.be/stations/NMBS/008863438", "https://tec.openplanner.team/stops/N506bea"], ["http://irail.be/stations/NMBS/008832003", "https://data.delijn.be/stops/405582"], ["http://irail.be/stations/NMBS/008812112", "https://data.delijn.be/stops/302153"], ["https://data.delijn.be/stops/308534", "https://mivb.openplanner.team/stops/9553"], ["http://irail.be/stations/NMBS/008865003", "https://tec.openplanner.team/stops/X801bde"], ["http://irail.be/stations/NMBS/008814365", "https://mivb.openplanner.team/stops/9685"], ["https://data.delijn.be/stops/306115", "https://mivb.openplanner.team/stops/7720103"], ["http://irail.be/stations/NMBS/008811262", "https://data.delijn.be/stops/302721"], ["https://data.delijn.be/stops/302924", "https://tec.openplanner.team/stops/Bhevgar1"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1et101a"], ["http://irail.be/stations/NMBS/008893518", "https://data.delijn.be/stops/207308"], ["https://data.delijn.be/stops/301812", "https://mivb.openplanner.team/stops/5776"], ["http://irail.be/stations/NMBS/008896305", "https://data.delijn.be/stops/503569"], ["https://data.delijn.be/stops/300824", "https://mivb.openplanner.team/stops/6607"], ["https://data.delijn.be/stops/308105", "https://tec.openplanner.team/stops/Bsrgcur1"], ["https://data.delijn.be/stops/208416", "https://tec.openplanner.team/stops/H4rs119a"], ["https://data.delijn.be/stops/304102", "https://tec.openplanner.team/stops/Bove4ko2"], ["https://data.delijn.be/stops/206784", "https://tec.openplanner.team/stops/H1gy114a"], ["http://irail.be/stations/NMBS/008884889", "https://tec.openplanner.team/stops/H4ca120a"], ["https://data.delijn.be/stops/410133", "https://tec.openplanner.team/stops/LJU51--1"], ["https://data.delijn.be/stops/404067", "https://tec.openplanner.team/stops/LAOeg--1"], ["http://irail.be/stations/NMBS/008892106", "https://data.delijn.be/stops/210115"], ["https://data.delijn.be/stops/404681", "https://tec.openplanner.team/stops/LPAeg--1"], ["https://data.delijn.be/stops/400451", "https://tec.openplanner.team/stops/LBPmais2"], ["https://data.delijn.be/stops/301013", "https://mivb.openplanner.team/stops/4101"], ["https://data.delijn.be/stops/408950", "https://tec.openplanner.team/stops/LWAathe2"], ["https://data.delijn.be/stops/301923", "https://mivb.openplanner.team/stops/2069"], ["https://data.delijn.be/stops/306068", "https://tec.openplanner.team/stops/Blemwro1"], ["http://irail.be/stations/NMBS/008832573", "https://data.delijn.be/stops/405524"], ["https://data.delijn.be/stops/306310", "https://mivb.openplanner.team/stops/5724"], ["https://mivb.openplanner.team/stops/5208", "https://tec.openplanner.team/stops/Buccdef2"], ["http://irail.be/stations/NMBS/008844255", "https://tec.openplanner.team/stops/LFreg--1"], ["https://data.delijn.be/stops/300763", "https://mivb.openplanner.team/stops/1201"], ["http://irail.be/stations/NMBS/008814159", "https://data.delijn.be/stops/307648"], ["http://irail.be/stations/NMBS/008884715", "https://tec.openplanner.team/stops/H5qu182b"], ["https://data.delijn.be/stops/307152", "https://tec.openplanner.team/stops/Bhalomo2"], ["https://data.delijn.be/stops/407231", "https://tec.openplanner.team/stops/LLGramk3"], ["http://irail.be/stations/NMBS/008893054", "https://data.delijn.be/stops/201604"], ["http://irail.be/stations/NMBS/008811197", "https://mivb.openplanner.team/stops/0070221"], ["http://irail.be/stations/NMBS/008893518", "https://data.delijn.be/stops/204212"], ["https://data.delijn.be/stops/208355", "https://tec.openplanner.team/stops/H5rx121b"], ["https://data.delijn.be/stops/208417", "https://tec.openplanner.team/stops/H4rs118a"], ["https://data.delijn.be/stops/304451", "https://tec.openplanner.team/stops/Brsgfso2"], ["http://irail.be/stations/NMBS/008892080", "https://data.delijn.be/stops/201282"], ["https://data.delijn.be/stops/301116", "https://mivb.openplanner.team/stops/3522"], ["http://irail.be/stations/NMBS/008821444", "https://data.delijn.be/stops/102906"], ["http://irail.be/stations/NMBS/008822426", "https://data.delijn.be/stops/105138"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N553aca"], ["https://data.delijn.be/stops/301070", "https://mivb.openplanner.team/stops/1145"], ["https://data.delijn.be/stops/408916", "https://tec.openplanner.team/stops/LFPzwaa1"], ["https://data.delijn.be/stops/208406", "https://tec.openplanner.team/stops/H5rx149a"], ["https://data.delijn.be/stops/302399", "https://mivb.openplanner.team/stops/7690206"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1mj125b"], ["http://irail.be/stations/NMBS/008814175", "https://data.delijn.be/stops/307718"], ["http://irail.be/stations/NMBS/008861440", "https://tec.openplanner.team/stops/N527ada"], ["https://data.delijn.be/stops/408898", "https://tec.openplanner.team/stops/LFProt-2"], ["https://data.delijn.be/stops/307969", "https://tec.openplanner.team/stops/Bwavzno1"], ["https://data.delijn.be/stops/509133", "https://tec.openplanner.team/stops/H4co149b"], ["https://data.delijn.be/stops/401413", "https://mivb.openplanner.team/stops/4304"], ["https://data.delijn.be/stops/300784", "https://mivb.openplanner.team/stops/3610F"], ["https://data.delijn.be/stops/305503", "https://mivb.openplanner.team/stops/2015"], ["http://irail.be/stations/NMBS/008819406", "https://mivb.openplanner.team/stops/9600B"], ["https://data.delijn.be/stops/300754", "https://mivb.openplanner.team/stops/2373"], ["http://irail.be/stations/NMBS/008893013", "https://data.delijn.be/stops/200629"], ["http://irail.be/stations/NMBS/008871332", "https://tec.openplanner.team/stops/Bobacou2"], ["https://data.delijn.be/stops/304434", "https://tec.openplanner.team/stops/Bblapri1"], ["https://data.delijn.be/stops/401650", "https://tec.openplanner.team/stops/Bracgar1"], ["https://data.delijn.be/stops/404652", "https://tec.openplanner.team/stops/Llaacca2"], ["https://data.delijn.be/stops/305433", "https://mivb.openplanner.team/stops/5521"], ["https://data.delijn.be/stops/404671", "https://tec.openplanner.team/stops/LJUmate2"], ["https://data.delijn.be/stops/208745", "https://tec.openplanner.team/stops/H4rs118a"], ["http://irail.be/stations/NMBS/008894508", "https://data.delijn.be/stops/205099"], ["https://data.delijn.be/stops/400491", "https://tec.openplanner.team/stops/LBSchar1"], ["https://data.delijn.be/stops/304719", "https://mivb.openplanner.team/stops/9311"], ["http://irail.be/stations/NMBS/008843430", "https://tec.openplanner.team/stops/LBscasi2"], ["https://data.delijn.be/stops/306661", "https://mivb.openplanner.team/stops/9825F"], ["http://irail.be/stations/NMBS/008884350", "https://tec.openplanner.team/stops/H1tl120b"], ["https://data.delijn.be/stops/302387", "https://tec.openplanner.team/stops/Bwavlon1"], ["https://data.delijn.be/stops/404674", "https://tec.openplanner.team/stops/LVSpota1"], ["http://irail.be/stations/NMBS/008832664", "https://data.delijn.be/stops/409009"], ["http://irail.be/stations/NMBS/008832235", "https://data.delijn.be/stops/410034"], ["http://irail.be/stations/NMBS/008833308", "https://data.delijn.be/stops/305197"], ["https://data.delijn.be/stops/302424", "https://tec.openplanner.team/stops/Bjodfab2"], ["http://irail.be/stations/NMBS/008864915", "https://tec.openplanner.team/stops/N254aea"], ["http://irail.be/stations/NMBS/008821311", "https://data.delijn.be/stops/103043"], ["http://irail.be/stations/NMBS/008881000", "https://tec.openplanner.team/stops/H1ms280d"], ["http://irail.be/stations/NMBS/008861168", "https://tec.openplanner.team/stops/N534axb"], ["https://data.delijn.be/stops/302442", "https://tec.openplanner.team/stops/Bzlucam1"], ["https://data.delijn.be/stops/302218", "https://tec.openplanner.team/stops/Bhoeboo1"], ["https://data.delijn.be/stops/305466", "https://mivb.openplanner.team/stops/0340141"], ["http://irail.be/stations/NMBS/008841319", "https://tec.openplanner.team/stops/Lghlogi2"], ["https://data.delijn.be/stops/405736", "https://tec.openplanner.team/stops/Lrctec-2"], ["http://irail.be/stations/NMBS/008200110", "https://tec.openplanner.team/stops/X685afb"], ["https://mivb.openplanner.team/stops/9578", "https://tec.openplanner.team/stops/Bovejei1"], ["http://irail.be/stations/NMBS/008844347", "https://tec.openplanner.team/stops/LLrgare2"], ["https://data.delijn.be/stops/504381", "https://tec.openplanner.team/stops/H4pl136a"], ["http://irail.be/stations/NMBS/008861135", "https://tec.openplanner.team/stops/N533aea"], ["https://data.delijn.be/stops/304913", "https://tec.openplanner.team/stops/Bovelge1"], ["https://data.delijn.be/stops/304641", "https://mivb.openplanner.team/stops/1745"], ["http://irail.be/stations/NMBS/008821196", "https://data.delijn.be/stops/104408"], ["http://irail.be/stations/NMBS/008849023", "https://tec.openplanner.team/stops/LhGfl241"], ["https://data.delijn.be/stops/300739", "https://mivb.openplanner.team/stops/2225"], ["http://irail.be/stations/NMBS/008842853", "https://tec.openplanner.team/stops/X982agb"], ["https://data.delijn.be/stops/305168", "https://tec.openplanner.team/stops/Bbosdra1"], ["https://data.delijn.be/stops/300944", "https://mivb.openplanner.team/stops/1684F"], ["http://irail.be/stations/NMBS/008719100", "https://tec.openplanner.team/stops/X687afa"], ["http://irail.be/stations/NMBS/008871688", "https://tec.openplanner.team/stops/Csbberg1"], ["http://irail.be/stations/NMBS/008832664", "https://data.delijn.be/stops/402856"], ["https://data.delijn.be/stops/305295", "https://mivb.openplanner.team/stops/9609"], ["https://data.delijn.be/stops/301401", "https://mivb.openplanner.team/stops/2610"], ["https://data.delijn.be/stops/404667", "https://tec.openplanner.team/stops/LJUmc--2"], ["http://irail.be/stations/NMBS/008873387", "https://tec.openplanner.team/stops/Chhsncb1"], ["http://irail.be/stations/NMBS/008831005", "https://data.delijn.be/stops/403104"], ["https://data.delijn.be/stops/504319", "https://tec.openplanner.team/stops/H4mo154a"], ["http://irail.be/stations/NMBS/008895240", "https://data.delijn.be/stops/203348"], ["https://data.delijn.be/stops/308868", "https://mivb.openplanner.team/stops/1668"], ["http://irail.be/stations/NMBS/008811536", "https://tec.openplanner.team/stops/Brixfro3"], ["https://data.delijn.be/stops/306311", "https://mivb.openplanner.team/stops/5822F"], ["https://data.delijn.be/stops/307002", "https://tec.openplanner.team/stops/Bjodath1"], ["https://data.delijn.be/stops/307688", "https://mivb.openplanner.team/stops/1939"], ["https://data.delijn.be/stops/306049", "https://mivb.openplanner.team/stops/0526"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/Cchriga2"], ["https://data.delijn.be/stops/307912", "https://tec.openplanner.team/stops/Bhalgar1"], ["http://irail.be/stations/NMBS/008891652", "https://data.delijn.be/stops/501655"], ["https://data.delijn.be/stops/300833", "https://mivb.openplanner.team/stops/2532"], ["https://data.delijn.be/stops/307639", "https://mivb.openplanner.team/stops/1958B"], ["https://data.delijn.be/stops/300920", "https://mivb.openplanner.team/stops/5361"], ["https://data.delijn.be/stops/300949", "https://mivb.openplanner.team/stops/1687F"], ["http://irail.be/stations/NMBS/008895471", "https://data.delijn.be/stops/206277"], ["https://data.delijn.be/stops/303573", "https://mivb.openplanner.team/stops/9726"], ["https://data.delijn.be/stops/304435", "https://tec.openplanner.team/stops/Brsga811"], ["https://data.delijn.be/stops/300861", "https://mivb.openplanner.team/stops/4271"], ["https://data.delijn.be/stops/301685", "https://tec.openplanner.team/stops/Bnettou1"], ["https://data.delijn.be/stops/302891", "https://tec.openplanner.team/stops/Bhevjal1"], ["http://irail.be/stations/NMBS/008812005", "https://mivb.openplanner.team/stops/1901"], ["https://data.delijn.be/stops/305144", "https://tec.openplanner.team/stops/H1mk108a"], ["https://data.delijn.be/stops/302849", "https://tec.openplanner.team/stops/Bwaab122"], ["https://data.delijn.be/stops/302806", "https://mivb.openplanner.team/stops/5530"], ["https://data.delijn.be/stops/504294", "https://tec.openplanner.team/stops/H4mo158b"], ["https://data.delijn.be/stops/509230", "https://tec.openplanner.team/stops/H4co158a"], ["https://data.delijn.be/stops/300826", "https://mivb.openplanner.team/stops/0430348"], ["https://data.delijn.be/stops/303950", "https://tec.openplanner.team/stops/Bbldvaa1"], ["https://mivb.openplanner.team/stops/5454F", "https://tec.openplanner.team/stops/Bwbfgar1"], ["https://data.delijn.be/stops/301043", "https://mivb.openplanner.team/stops/0370438"], ["https://data.delijn.be/stops/304027", "https://mivb.openplanner.team/stops/9551"], ["https://data.delijn.be/stops/307004", "https://tec.openplanner.team/stops/Blkbbvh2"], ["http://irail.be/stations/NMBS/008871308", "https://tec.openplanner.team/stops/Cpcwaut1"], ["http://irail.be/stations/NMBS/008015588", "https://tec.openplanner.team/stops/LaHzoll*"], ["http://irail.be/stations/NMBS/008864931", "https://tec.openplanner.team/stops/N241aca"], ["https://data.delijn.be/stops/301923", "https://mivb.openplanner.team/stops/2025"], ["http://irail.be/stations/NMBS/008864501", "https://tec.openplanner.team/stops/N201ava"], ["http://irail.be/stations/NMBS/008881315", "https://tec.openplanner.team/stops/H1ni323a"], ["http://irail.be/stations/NMBS/008722326", "https://data.delijn.be/stops/504567"], ["https://data.delijn.be/stops/408957", "https://tec.openplanner.team/stops/LWAwila1"], ["https://data.delijn.be/stops/300828", "https://mivb.openplanner.team/stops/2810"], ["http://irail.be/stations/NMBS/008863453", "https://tec.openplanner.team/stops/N504aca"], ["https://mivb.openplanner.team/stops/1969", "https://tec.openplanner.team/stops/Buccdho1"], ["https://mivb.openplanner.team/stops/6109", "https://tec.openplanner.team/stops/Bsgimor1"], ["https://data.delijn.be/stops/408829", "https://tec.openplanner.team/stops/LVItroi*"], ["https://data.delijn.be/stops/401401", "https://mivb.openplanner.team/stops/3200"], ["https://data.delijn.be/stops/209182", "https://tec.openplanner.team/stops/H5rx132a"], ["https://data.delijn.be/stops/405733", "https://tec.openplanner.team/stops/Lrclant2"], ["https://data.delijn.be/stops/304071", "https://tec.openplanner.team/stops/Bgnvfai1"], ["https://data.delijn.be/stops/208758", "https://tec.openplanner.team/stops/H5rx105b"], ["http://irail.be/stations/NMBS/008822533", "https://data.delijn.be/stops/301859"], ["https://data.delijn.be/stops/301106", "https://mivb.openplanner.team/stops/1857"], ["http://irail.be/stations/NMBS/008811635", "https://tec.openplanner.team/stops/Blmlpla1"], ["https://data.delijn.be/stops/301145", "https://mivb.openplanner.team/stops/2117B"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2le148a"], ["https://data.delijn.be/stops/405462", "https://tec.openplanner.team/stops/LWHtrui1"], ["http://irail.be/stations/NMBS/008891009", "https://data.delijn.be/stops/500041"], ["https://data.delijn.be/stops/305888", "https://mivb.openplanner.team/stops/2352"], ["https://data.delijn.be/stops/404843", "https://tec.openplanner.team/stops/LEMeg--2"], ["https://data.delijn.be/stops/303832", "https://mivb.openplanner.team/stops/0280213"], ["http://irail.be/stations/NMBS/008844321", "https://tec.openplanner.team/stops/LJSeg--2"], ["http://irail.be/stations/NMBS/008893526", "https://data.delijn.be/stops/206281"], ["https://data.delijn.be/stops/307162", "https://tec.openplanner.team/stops/Bhalalb1"], ["https://data.delijn.be/stops/408746", "https://tec.openplanner.team/stops/LTowijk1"], ["https://data.delijn.be/stops/408811", "https://tec.openplanner.team/stops/LHAclin2"], ["https://data.delijn.be/stops/305514", "https://mivb.openplanner.team/stops/9169"], ["https://data.delijn.be/stops/507748", "https://tec.openplanner.team/stops/H4ae100a"], ["https://data.delijn.be/stops/301004", "https://mivb.openplanner.team/stops/5359"], ["https://data.delijn.be/stops/209408", "https://tec.openplanner.team/stops/H5rx139a"], ["https://data.delijn.be/stops/305280", "https://mivb.openplanner.team/stops/1143"], ["https://data.delijn.be/stops/405745", "https://tec.openplanner.team/stops/Llgpire2"], ["https://data.delijn.be/stops/400468", "https://tec.openplanner.team/stops/LEMeg--2"], ["http://irail.be/stations/NMBS/008812112", "https://data.delijn.be/stops/306825"], ["https://data.delijn.be/stops/207758", "https://tec.openplanner.team/stops/H5rx134a"], ["http://irail.be/stations/NMBS/008892320", "https://data.delijn.be/stops/509499"], ["https://data.delijn.be/stops/301121", "https://tec.openplanner.team/stops/Buccdef2"], ["http://irail.be/stations/NMBS/008811163", "https://mivb.openplanner.team/stops/3214"], ["https://data.delijn.be/stops/405706", "https://tec.openplanner.team/stops/Llgcadr3"], ["http://irail.be/stations/NMBS/008872587", "https://tec.openplanner.team/stops/Btanvil1"], ["http://irail.be/stations/NMBS/008892635", "https://data.delijn.be/stops/208278"], ["https://data.delijn.be/stops/307690", "https://mivb.openplanner.team/stops/1935"], ["http://irail.be/stations/NMBS/008811775", "https://data.delijn.be/stops/301683"], ["https://data.delijn.be/stops/407582", "https://tec.openplanner.team/stops/LDpzol-1"], ["http://irail.be/stations/NMBS/008831401", "https://data.delijn.be/stops/308259"], ["http://irail.be/stations/NMBS/008885001", "https://tec.openplanner.team/stops/H4ty397b"], ["https://data.delijn.be/stops/301944", "https://mivb.openplanner.team/stops/2508"], ["https://data.delijn.be/stops/300314", "https://tec.openplanner.team/stops/Bhmmlad1"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1ba113a"], ["http://irail.be/stations/NMBS/008822459", "https://data.delijn.be/stops/300683"], ["http://irail.be/stations/NMBS/008814332", "https://data.delijn.be/stops/307599"], ["https://data.delijn.be/stops/207797", "https://tec.openplanner.team/stops/H5rx104b"], ["https://data.delijn.be/stops/410143", "https://tec.openplanner.team/stops/LlgPRVo2"], ["http://irail.be/stations/NMBS/008811197", "https://mivb.openplanner.team/stops/1136"], ["https://data.delijn.be/stops/404833", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://data.delijn.be/stops/308874", "https://mivb.openplanner.team/stops/1509"], ["http://irail.be/stations/NMBS/008832250", "https://data.delijn.be/stops/404242"], ["https://mivb.openplanner.team/stops/4857B", "https://tec.openplanner.team/stops/Buccmer2"], ["http://irail.be/stations/NMBS/008811676", "https://tec.openplanner.team/stops/Bllngar4"], ["http://irail.be/stations/NMBS/008864501", "https://tec.openplanner.team/stops/N201aec"], ["https://data.delijn.be/stops/408922", "https://tec.openplanner.team/stops/LTEcamp2"], ["http://irail.be/stations/NMBS/008891314", "https://data.delijn.be/stops/502636"], ["http://irail.be/stations/NMBS/008811411", "https://tec.openplanner.team/stops/Bettgar1"], ["http://irail.be/stations/NMBS/008874005", "https://tec.openplanner.team/stops/Cctpass2"], ["https://data.delijn.be/stops/408836", "https://tec.openplanner.team/stops/LFPstro1"], ["https://data.delijn.be/stops/305318", "https://mivb.openplanner.team/stops/2853"], ["http://irail.be/stations/NMBS/008811429", "https://mivb.openplanner.team/stops/4310"], ["https://data.delijn.be/stops/305338", "https://tec.openplanner.team/stops/Bwavtrt2"], ["https://data.delijn.be/stops/302850", "https://tec.openplanner.team/stops/Bwaak102"], ["https://data.delijn.be/stops/300972", "https://mivb.openplanner.team/stops/3553"], ["http://irail.be/stations/NMBS/008821444", "https://data.delijn.be/stops/104287"], ["https://data.delijn.be/stops/209195", "https://tec.openplanner.team/stops/H5rx140a"], ["https://data.delijn.be/stops/307807", "https://mivb.openplanner.team/stops/1115"], ["https://data.delijn.be/stops/300862", "https://mivb.openplanner.team/stops/4258"], ["https://data.delijn.be/stops/408883", "https://tec.openplanner.team/stops/LWRcruc1"], ["http://irail.be/stations/NMBS/008895257", "https://data.delijn.be/stops/208687"], ["https://data.delijn.be/stops/304075", "https://tec.openplanner.team/stops/Bovepla2"], ["https://data.delijn.be/stops/405733", "https://tec.openplanner.team/stops/Lrcarse1"], ["https://data.delijn.be/stops/307714", "https://mivb.openplanner.team/stops/4319"], ["https://data.delijn.be/stops/302832", "https://tec.openplanner.team/stops/LLasta-*"], ["https://data.delijn.be/stops/403701", "https://tec.openplanner.team/stops/LBGjacq2"], ["https://data.delijn.be/stops/300812", "https://mivb.openplanner.team/stops/7790356"], ["http://irail.be/stations/NMBS/008896115", "https://data.delijn.be/stops/503218"], ["http://irail.be/stations/NMBS/008821311", "https://data.delijn.be/stops/104014"], ["http://irail.be/stations/NMBS/008893252", "https://data.delijn.be/stops/210856"], ["http://irail.be/stations/NMBS/008864949", "https://tec.openplanner.team/stops/N563aaa"], ["http://irail.be/stations/NMBS/008842002", "https://tec.openplanner.team/stops/Llgcond2"], ["https://data.delijn.be/stops/304688", "https://tec.openplanner.team/stops/Bhalomo1"], ["https://data.delijn.be/stops/505396", "https://tec.openplanner.team/stops/H4ae102a"], ["https://data.delijn.be/stops/305388", "https://mivb.openplanner.team/stops/4223"], ["https://mivb.openplanner.team/stops/2037", "https://tec.openplanner.team/stops/Bwolvan1"], ["http://irail.be/stations/NMBS/008846201", "https://tec.openplanner.team/stops/LVIgare2"], ["https://data.delijn.be/stops/301046", "https://mivb.openplanner.team/stops/1792"], ["https://data.delijn.be/stops/407202", "https://tec.openplanner.team/stops/LHTbeau2"], ["https://data.delijn.be/stops/207765", "https://tec.openplanner.team/stops/H5rx102b"], ["http://irail.be/stations/NMBS/008861168", "https://tec.openplanner.team/stops/N534aba"], ["http://irail.be/stations/NMBS/008842846", "https://tec.openplanner.team/stops/LHaeg--1"], ["https://data.delijn.be/stops/305225", "https://mivb.openplanner.team/stops/9753"], ["http://irail.be/stations/NMBS/008200136", "https://tec.openplanner.team/stops/X761aaa"], ["https://data.delijn.be/stops/208590", "https://tec.openplanner.team/stops/H1en101b"], ["https://data.delijn.be/stops/302428", "https://tec.openplanner.team/stops/Bjodcar2"], ["https://data.delijn.be/stops/304317", "https://mivb.openplanner.team/stops/9702"], ["https://data.delijn.be/stops/304437", "https://tec.openplanner.team/stops/Brsgsan2"], ["https://data.delijn.be/stops/305916", "https://mivb.openplanner.team/stops/4661B"], ["https://data.delijn.be/stops/300014", "https://mivb.openplanner.team/stops/9678"], ["http://irail.be/stations/NMBS/008873312", "https://tec.openplanner.team/stops/N137aga"], ["https://data.delijn.be/stops/307324", "https://mivb.openplanner.team/stops/1486B"], ["https://mivb.openplanner.team/stops/1739", "https://tec.openplanner.team/stops/Buccptj1"], ["https://data.delijn.be/stops/301145", "https://tec.openplanner.team/stops/Buccpin2"], ["https://data.delijn.be/stops/408897", "https://tec.openplanner.team/stops/LFPgeme2"], ["http://irail.be/stations/NMBS/008843224", "https://tec.openplanner.team/stops/Lfh-sci1"], ["https://data.delijn.be/stops/304178", "https://tec.openplanner.team/stops/Bbldass1"], ["http://irail.be/stations/NMBS/008814365", "https://data.delijn.be/stops/304606"], ["https://data.delijn.be/stops/308733", "https://tec.openplanner.team/stops/Bgoemgr1"], ["http://irail.be/stations/NMBS/008861416", "https://tec.openplanner.team/stops/N541aba"], ["https://data.delijn.be/stops/404663", "https://tec.openplanner.team/stops/LPAbrun1"], ["https://data.delijn.be/stops/301085", "https://mivb.openplanner.team/stops/1551"], ["http://irail.be/stations/NMBS/008812021", "https://data.delijn.be/stops/300812"], ["https://data.delijn.be/stops/404653", "https://tec.openplanner.team/stops/Llabriq2"], ["https://mivb.openplanner.team/stops/5860", "https://tec.openplanner.team/stops/Buccbou2"], ["https://data.delijn.be/stops/300324", "https://tec.openplanner.team/stops/Balsnay2"], ["https://data.delijn.be/stops/301011", "https://mivb.openplanner.team/stops/1108"], ["https://data.delijn.be/stops/405455", "https://tec.openplanner.team/stops/LWHkape1"], ["https://data.delijn.be/stops/304450", "https://tec.openplanner.team/stops/Brsgece1"], ["https://data.delijn.be/stops/208610", "https://tec.openplanner.team/stops/H1by109b"], ["http://irail.be/stations/NMBS/008849064", "https://tec.openplanner.team/stops/LLxcrem1"], ["http://irail.be/stations/NMBS/008881190", "https://tec.openplanner.team/stops/H1ml110b"], ["https://data.delijn.be/stops/509291", "https://tec.openplanner.team/stops/H4wn129a"], ["https://mivb.openplanner.team/stops/1806", "https://tec.openplanner.team/stops/Bettcha1"], ["http://irail.be/stations/NMBS/008841608", "https://tec.openplanner.team/stops/Lhrmare8"], ["https://mivb.openplanner.team/stops/6406", "https://tec.openplanner.team/stops/Bixllep2"], ["https://data.delijn.be/stops/305437", "https://tec.openplanner.team/stops/Boveker2"], ["https://data.delijn.be/stops/504455", "https://tec.openplanner.team/stops/H4tg162a"], ["https://mivb.openplanner.team/stops/3530", "https://tec.openplanner.team/stops/Baudsta2"], ["http://irail.be/stations/NMBS/008821121", "https://data.delijn.be/stops/102886"], ["http://irail.be/stations/NMBS/008893039", "https://data.delijn.be/stops/211052"], ["http://irail.be/stations/NMBS/008841467", "https://tec.openplanner.team/stops/LMOfrel1"], ["http://irail.be/stations/NMBS/008841400", "https://tec.openplanner.team/stops/LWAloui1"], ["http://irail.be/stations/NMBS/008814365", "https://mivb.openplanner.team/stops/9651"], ["http://irail.be/stations/NMBS/008811262", "https://data.delijn.be/stops/302736"], ["https://data.delijn.be/stops/308867", "https://mivb.openplanner.team/stops/5656"], ["http://irail.be/stations/NMBS/008895638", "https://data.delijn.be/stops/307300"], ["https://data.delijn.be/stops/301031", "https://tec.openplanner.team/stops/Bsgipmo1"], ["http://irail.be/stations/NMBS/008814431", "https://mivb.openplanner.team/stops/1932"], ["https://data.delijn.be/stops/300390", "https://mivb.openplanner.team/stops/9678"], ["https://data.delijn.be/stops/509737", "https://tec.openplanner.team/stops/H4mo206a"], ["https://data.delijn.be/stops/400455", "https://tec.openplanner.team/stops/LEBdoct2"], ["http://irail.be/stations/NMBS/008811759", "https://tec.openplanner.team/stops/Bgzddge1"], ["http://irail.be/stations/NMBS/008895802", "https://data.delijn.be/stops/207101"], ["https://data.delijn.be/stops/304114", "https://tec.openplanner.team/stops/Bovevri2"], ["https://data.delijn.be/stops/300972", "https://tec.openplanner.team/stops/Baudvdr1"], ["http://irail.be/stations/NMBS/008872587", "https://tec.openplanner.team/stops/Bbstchv1"], ["https://data.delijn.be/stops/408798", "https://tec.openplanner.team/stops/LOTsav-1"], ["http://irail.be/stations/NMBS/008885704", "https://tec.openplanner.team/stops/H4mo172a"], ["http://irail.be/stations/NMBS/008881562", "https://tec.openplanner.team/stops/H1ge116b"], ["https://data.delijn.be/stops/308867", "https://mivb.openplanner.team/stops/1826"], ["https://data.delijn.be/stops/404665", "https://tec.openplanner.team/stops/LPAvill1"], ["http://irail.be/stations/NMBS/008814142", "https://mivb.openplanner.team/stops/1944"], ["http://irail.be/stations/NMBS/008885522", "https://tec.openplanner.team/stops/H4ag102b"], ["https://data.delijn.be/stops/300623", "https://tec.openplanner.team/stops/Bbeamon2"], ["http://irail.be/stations/NMBS/008874005", "https://tec.openplanner.team/stops/Ccugend1"], ["https://data.delijn.be/stops/407567", "https://tec.openplanner.team/stops/LWHzave1"], ["https://data.delijn.be/stops/207760", "https://tec.openplanner.team/stops/H5rx136b"], ["https://data.delijn.be/stops/304599", "https://mivb.openplanner.team/stops/1382"], ["https://data.delijn.be/stops/405428", "https://tec.openplanner.team/stops/Blanmde1"], ["http://irail.be/stations/NMBS/008721222", "https://tec.openplanner.team/stops/LaHzoll*"], ["https://data.delijn.be/stops/307726", "https://tec.openplanner.team/stops/Bhalvla1"], ["http://irail.be/stations/NMBS/008866258", "https://tec.openplanner.team/stops/X661bcb"], ["http://irail.be/stations/NMBS/008894425", "https://data.delijn.be/stops/205228"], ["http://irail.be/stations/NMBS/008885068", "https://tec.openplanner.team/stops/H4fr139a"], ["http://irail.be/stations/NMBS/008865128", "https://tec.openplanner.team/stops/X725apb"], ["https://data.delijn.be/stops/407772", "https://tec.openplanner.team/stops/LTEkl122"], ["https://data.delijn.be/stops/301132", "https://mivb.openplanner.team/stops/5208"], ["http://irail.be/stations/NMBS/008812062", "https://data.delijn.be/stops/307476"], ["https://data.delijn.be/stops/307243", "https://mivb.openplanner.team/stops/0350640"], ["http://irail.be/stations/NMBS/008842853", "https://tec.openplanner.team/stops/LHaxhor1"], ["http://irail.be/stations/NMBS/008894201", "https://data.delijn.be/stops/205832"], ["https://data.delijn.be/stops/300747", "https://mivb.openplanner.team/stops/5297B"], ["https://data.delijn.be/stops/408801", "https://tec.openplanner.team/stops/LVIacac1"], ["https://data.delijn.be/stops/301063", "https://mivb.openplanner.team/stops/1201"], ["https://data.delijn.be/stops/305928", "https://mivb.openplanner.team/stops/5700G"], ["https://data.delijn.be/stops/307490", "https://mivb.openplanner.team/stops/9658"], ["https://mivb.openplanner.team/stops/1760", "https://tec.openplanner.team/stops/Baudstr2"], ["http://irail.be/stations/NMBS/008821535", "https://data.delijn.be/stops/101644"], ["https://data.delijn.be/stops/400456", "https://tec.openplanner.team/stops/LEBdoct1"], ["https://data.delijn.be/stops/307204", "https://tec.openplanner.team/stops/Btubcal1"], ["https://data.delijn.be/stops/300315", "https://tec.openplanner.team/stops/Bnetcor1"], ["http://irail.be/stations/NMBS/008814365", "https://data.delijn.be/stops/304605"], ["https://data.delijn.be/stops/305916", "https://mivb.openplanner.team/stops/1102"], ["https://data.delijn.be/stops/402529", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://data.delijn.be/stops/301098", "https://tec.openplanner.team/stops/Bhalker2"], ["https://data.delijn.be/stops/304698", "https://mivb.openplanner.team/stops/9683"], ["https://data.delijn.be/stops/408847", "https://tec.openplanner.team/stops/LRmkult1"], ["https://data.delijn.be/stops/302141", "https://tec.openplanner.team/stops/Bptegna2"], ["https://data.delijn.be/stops/302413", "https://tec.openplanner.team/stops/Bjodeco2"], ["https://data.delijn.be/stops/301033", "https://mivb.openplanner.team/stops/5063"], ["http://irail.be/stations/NMBS/008814308", "https://data.delijn.be/stops/307224"], ["http://irail.be/stations/NMBS/008866118", "https://tec.openplanner.team/stops/X601ccb"], ["https://mivb.openplanner.team/stops/2759", "https://tec.openplanner.team/stops/Bixlozo2"], ["https://data.delijn.be/stops/300324", "https://tec.openplanner.team/stops/Balsnay1"], ["https://data.delijn.be/stops/304621", "https://mivb.openplanner.team/stops/5964"], ["https://data.delijn.be/stops/307142", "https://mivb.openplanner.team/stops/39"], ["http://irail.be/stations/NMBS/008864337", "https://tec.openplanner.team/stops/X994aia"], ["http://irail.be/stations/NMBS/008871415", "https://tec.openplanner.team/stops/Cptdubo2"], ["https://data.delijn.be/stops/300935", "https://mivb.openplanner.team/stops/7268"], ["https://data.delijn.be/stops/400471", "https://tec.openplanner.team/stops/LEMfort1"], ["https://data.delijn.be/stops/509736", "https://tec.openplanner.team/stops/H4hx116b"], ["http://irail.be/stations/NMBS/008895646", "https://data.delijn.be/stops/306270"], ["http://irail.be/stations/NMBS/008845005", "https://tec.openplanner.team/stops/X790aib"], ["https://data.delijn.be/stops/300776", "https://mivb.openplanner.team/stops/2534"], ["https://data.delijn.be/stops/301019", "https://mivb.openplanner.team/stops/4059F"], ["https://data.delijn.be/stops/408868", "https://tec.openplanner.team/stops/LFCalte1"], ["http://irail.be/stations/NMBS/008811163", "https://mivb.openplanner.team/stops/5048"], ["https://data.delijn.be/stops/303626", "https://tec.openplanner.team/stops/Bcbqcha1"], ["http://irail.be/stations/NMBS/008814472", "https://mivb.openplanner.team/stops/4309"], ["https://data.delijn.be/stops/408952", "https://tec.openplanner.team/stops/LWAvand1"], ["https://data.delijn.be/stops/404683", "https://tec.openplanner.team/stops/LWibare1"], ["http://irail.be/stations/NMBS/008814365", "https://mivb.openplanner.team/stops/9649"], ["http://irail.be/stations/NMBS/008811262", "https://data.delijn.be/stops/302705"], ["https://mivb.openplanner.team/stops/2470", "https://tec.openplanner.team/stops/Bsgipha2"], ["https://data.delijn.be/stops/308874", "https://mivb.openplanner.team/stops/8042"], ["http://irail.be/stations/NMBS/008811445", "https://data.delijn.be/stops/302226"], ["https://data.delijn.be/stops/302812", "https://mivb.openplanner.team/stops/2087"], ["https://data.delijn.be/stops/300396", "https://tec.openplanner.team/stops/Bhalgja2"], ["https://data.delijn.be/stops/406298", "https://tec.openplanner.team/stops/Blanraa2"], ["https://data.delijn.be/stops/308356", "https://mivb.openplanner.team/stops/6418"], ["https://data.delijn.be/stops/307024", "https://tec.openplanner.team/stops/H1en101a"], ["https://data.delijn.be/stops/300964", "https://tec.openplanner.team/stops/Baudvdu1"], ["https://data.delijn.be/stops/301025", "https://mivb.openplanner.team/stops/8342"], ["https://data.delijn.be/stops/301926", "https://mivb.openplanner.team/stops/9876"], ["http://irail.be/stations/NMBS/008821543", "https://data.delijn.be/stops/105407"], ["http://irail.be/stations/NMBS/008822475", "https://data.delijn.be/stops/300640"], ["https://data.delijn.be/stops/304861", "https://tec.openplanner.team/stops/Bbrlmez2"], ["https://data.delijn.be/stops/407216", "https://tec.openplanner.team/stops/LHStrez2"], ["http://irail.be/stations/NMBS/008895844", "https://data.delijn.be/stops/207932"], ["https://mivb.openplanner.team/stops/1110", "https://tec.openplanner.team/stops/Blkbbvh1"], ["https://mivb.openplanner.team/stops/0650265", "https://tec.openplanner.team/stops/Bsgihmo1"], ["http://irail.be/stations/NMBS/008844347", "https://tec.openplanner.team/stops/LTHroch1"], ["http://irail.be/stations/NMBS/008861416", "https://tec.openplanner.team/stops/Bgembhe1"], ["https://data.delijn.be/stops/207760", "https://tec.openplanner.team/stops/H5rx114a"], ["http://irail.be/stations/NMBS/008891033", "https://data.delijn.be/stops/502151"], ["http://irail.be/stations/NMBS/008895208", "https://data.delijn.be/stops/208080"], ["http://irail.be/stations/NMBS/008822210", "https://data.delijn.be/stops/109723"], ["https://data.delijn.be/stops/301398", "https://mivb.openplanner.team/stops/5725"], ["https://data.delijn.be/stops/304101", "https://tec.openplanner.team/stops/Bovejme2"], ["https://data.delijn.be/stops/302876", "https://mivb.openplanner.team/stops/2143B"], ["https://data.delijn.be/stops/404660", "https://tec.openplanner.team/stops/LPAbrun2"], ["https://data.delijn.be/stops/308728", "https://tec.openplanner.team/stops/Bgoemho1"], ["https://data.delijn.be/stops/305234", "https://mivb.openplanner.team/stops/9631"], ["https://data.delijn.be/stops/300953", "https://mivb.openplanner.team/stops/1112"], ["https://data.delijn.be/stops/408968", "https://tec.openplanner.team/stops/LWAchpg2"], ["https://data.delijn.be/stops/400452", "https://tec.openplanner.team/stops/LRGmoul1"], ["https://data.delijn.be/stops/304073", "https://tec.openplanner.team/stops/Boveklo1"], ["https://data.delijn.be/stops/301129", "https://mivb.openplanner.team/stops/2148"], ["https://mivb.openplanner.team/stops/1661", "https://tec.openplanner.team/stops/Bkrawil1"], ["https://data.delijn.be/stops/509381", "https://tec.openplanner.team/stops/H4pl116a"], ["http://irail.be/stations/NMBS/008821659", "https://data.delijn.be/stops/103140"], ["http://irail.be/stations/NMBS/008814134", "https://data.delijn.be/stops/301113"], ["https://data.delijn.be/stops/407491", "https://tec.openplanner.team/stops/LTobilz2"], ["https://data.delijn.be/stops/303580", "https://mivb.openplanner.team/stops/3042"], ["https://data.delijn.be/stops/504319", "https://tec.openplanner.team/stops/H4mo153d"], ["https://data.delijn.be/stops/307232", "https://mivb.openplanner.team/stops/4217"], ["https://data.delijn.be/stops/302804", "https://tec.openplanner.team/stops/Bkrabhu2"], ["http://irail.be/stations/NMBS/008894433", "https://data.delijn.be/stops/205223"], ["https://data.delijn.be/stops/300969", "https://mivb.openplanner.team/stops/1725"], ["https://data.delijn.be/stops/301168", "https://mivb.openplanner.team/stops/1258G"], ["http://irail.be/stations/NMBS/008841327", "https://tec.openplanner.team/stops/LBIrout2"], ["https://data.delijn.be/stops/301004", "https://mivb.openplanner.team/stops/3412"], ["http://irail.be/stations/NMBS/008892304", "https://data.delijn.be/stops/509501"], ["http://irail.be/stations/NMBS/008831039", "https://data.delijn.be/stops/400090"], ["http://irail.be/stations/NMBS/008844503", "https://tec.openplanner.team/stops/LWElanc1"], ["https://data.delijn.be/stops/408878", "https://tec.openplanner.team/stops/LFPkerk2"], ["https://data.delijn.be/stops/503771", "https://tec.openplanner.team/stops/H4eh104b"], ["https://data.delijn.be/stops/402578", "https://tec.openplanner.team/stops/LCAwals1"], ["https://data.delijn.be/stops/300780", "https://mivb.openplanner.team/stops/2518"], ["https://data.delijn.be/stops/408836", "https://tec.openplanner.team/stops/LRmsmvo4"], ["http://irail.be/stations/NMBS/008891116", "https://data.delijn.be/stops/502332"], ["http://irail.be/stations/NMBS/008892106", "https://data.delijn.be/stops/203212"], ["http://irail.be/stations/NMBS/008866654", "https://tec.openplanner.team/stops/X615azb"], ["https://data.delijn.be/stops/509451", "https://tec.openplanner.team/stops/H4mo145b"], ["https://mivb.openplanner.team/stops/3912", "https://tec.openplanner.team/stops/Bettgle1"], ["https://data.delijn.be/stops/308870", "https://mivb.openplanner.team/stops/5532"], ["https://data.delijn.be/stops/208177", "https://tec.openplanner.team/stops/H5el104a"], ["http://irail.be/stations/NMBS/008866175", "https://tec.openplanner.team/stops/X650afd"], ["https://mivb.openplanner.team/stops/5032B", "https://tec.openplanner.team/stops/Buccplj2"], ["http://irail.be/stations/NMBS/008812237", "https://data.delijn.be/stops/306256"], ["https://data.delijn.be/stops/302872", "https://mivb.openplanner.team/stops/2140"], ["https://data.delijn.be/stops/304255", "https://mivb.openplanner.team/stops/4011"], ["http://irail.be/stations/NMBS/008886058", "https://tec.openplanner.team/stops/H1ch101a"], ["https://data.delijn.be/stops/300395", "https://tec.openplanner.team/stops/Bhalgja1"], ["https://mivb.openplanner.team/stops/6453", "https://tec.openplanner.team/stops/Bixllep1"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/304551"], ["http://irail.be/stations/NMBS/008896503", "https://data.delijn.be/stops/504990"], ["https://data.delijn.be/stops/306904", "https://tec.openplanner.team/stops/Bgoekaz2"], ["https://data.delijn.be/stops/407581", "https://tec.openplanner.team/stops/LDppana2"], ["https://data.delijn.be/stops/405730", "https://tec.openplanner.team/stops/Lantonn2"], ["http://irail.be/stations/NMBS/008844404", "https://tec.openplanner.team/stops/LSPClem2"], ["http://irail.be/stations/NMBS/008812070", "https://data.delijn.be/stops/300212"], ["https://data.delijn.be/stops/509243", "https://tec.openplanner.team/stops/H4co133a"], ["http://irail.be/stations/NMBS/008892288", "https://data.delijn.be/stops/508001"], ["https://data.delijn.be/stops/405449", "https://tec.openplanner.team/stops/Blanove2"], ["http://irail.be/stations/NMBS/008861416", "https://tec.openplanner.team/stops/N522aca"], ["http://irail.be/stations/NMBS/008821832", "https://data.delijn.be/stops/103244"], ["https://data.delijn.be/stops/308126", "https://tec.openplanner.team/stops/Bbosgar2"], ["https://data.delijn.be/stops/302875", "https://mivb.openplanner.team/stops/2143B"], ["http://irail.be/stations/NMBS/008822228", "https://data.delijn.be/stops/108877"], ["https://data.delijn.be/stops/208192", "https://tec.openplanner.team/stops/H5rx129a"], ["https://data.delijn.be/stops/207797", "https://tec.openplanner.team/stops/H5el111b"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bcsemar2"], ["http://irail.be/stations/NMBS/008821089", "https://data.delijn.be/stops/101593"], ["http://irail.be/stations/NMBS/008400058", "https://data.delijn.be/stops/103303"], ["https://data.delijn.be/stops/509234", "https://tec.openplanner.team/stops/H4co108a"], ["https://data.delijn.be/stops/301166", "https://mivb.openplanner.team/stops/2118"], ["https://data.delijn.be/stops/300907", "https://mivb.openplanner.team/stops/1914"], ["https://data.delijn.be/stops/410132", "https://tec.openplanner.team/stops/Llaflot2"], ["https://data.delijn.be/stops/301168", "https://mivb.openplanner.team/stops/5953F"], ["https://data.delijn.be/stops/305314", "https://mivb.openplanner.team/stops/9787"], ["https://data.delijn.be/stops/305426", "https://mivb.openplanner.team/stops/1629"], ["https://data.delijn.be/stops/405717", "https://tec.openplanner.team/stops/Llgpire2"], ["http://irail.be/stations/NMBS/008821816", "https://data.delijn.be/stops/103944"], ["https://data.delijn.be/stops/209192", "https://tec.openplanner.team/stops/H5rx136b"], ["https://data.delijn.be/stops/307853", "https://mivb.openplanner.team/stops/1597"], ["https://data.delijn.be/stops/304066", "https://tec.openplanner.team/stops/Bovehst2"], ["https://mivb.openplanner.team/stops/1931", "https://tec.openplanner.team/stops/Bucceng2"], ["http://irail.be/stations/NMBS/008863545", "https://tec.openplanner.team/stops/N229apa"], ["http://irail.be/stations/NMBS/008896149", "https://data.delijn.be/stops/503842"], ["http://irail.be/stations/NMBS/008883022", "https://tec.openplanner.team/stops/Bquevel1"], ["https://data.delijn.be/stops/301031", "https://mivb.openplanner.team/stops/0650265"], ["https://data.delijn.be/stops/307132", "https://tec.openplanner.team/stops/Bovecha1"], ["http://irail.be/stations/NMBS/008400131", "https://data.delijn.be/stops/106382"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2le176b"], ["https://data.delijn.be/stops/304447", "https://tec.openplanner.team/stops/Brsgleq2"], ["https://data.delijn.be/stops/300948", "https://mivb.openplanner.team/stops/1686F"], ["https://data.delijn.be/stops/408968", "https://tec.openplanner.team/stops/LWAwegg2"], ["https://data.delijn.be/stops/208178", "https://tec.openplanner.team/stops/H5el110b"], ["https://data.delijn.be/stops/408836", "https://tec.openplanner.team/stops/LAUcent1"], ["https://data.delijn.be/stops/305237", "https://tec.openplanner.team/stops/Bmrqgar1"], ["http://irail.be/stations/NMBS/008895851", "https://data.delijn.be/stops/206111"], ["https://data.delijn.be/stops/400494", "https://tec.openplanner.team/stops/LHScite1"], ["http://irail.be/stations/NMBS/008883006", "https://tec.openplanner.team/stops/Bbcoeca1"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N254aab"], ["https://data.delijn.be/stops/407721", "https://tec.openplanner.team/stops/LMaburg4"], ["https://data.delijn.be/stops/405460", "https://tec.openplanner.team/stops/LWHzave1"], ["http://irail.be/stations/NMBS/008814365", "https://data.delijn.be/stops/304660"], ["https://mivb.openplanner.team/stops/1805", "https://tec.openplanner.team/stops/Bettcha3"], ["https://data.delijn.be/stops/300579", "https://mivb.openplanner.team/stops/3113"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/N541adb"], ["https://mivb.openplanner.team/stops/1829", "https://tec.openplanner.team/stops/Bwolkra2"], ["https://data.delijn.be/stops/304547", "https://mivb.openplanner.team/stops/9654"], ["http://irail.be/stations/NMBS/008845203", "https://tec.openplanner.team/stops/LTPpisc2"], ["https://data.delijn.be/stops/301021", "https://mivb.openplanner.team/stops/4058F"], ["https://data.delijn.be/stops/300999", "https://mivb.openplanner.team/stops/6416"], ["http://irail.be/stations/NMBS/008811221", "https://data.delijn.be/stops/305568"], ["https://data.delijn.be/stops/304127", "https://mivb.openplanner.team/stops/0010415"], ["http://irail.be/stations/NMBS/008843406", "https://tec.openplanner.team/stops/NL80aaa"], ["https://data.delijn.be/stops/405702", "https://tec.openplanner.team/stops/Llgbatt1"], ["http://irail.be/stations/NMBS/008893039", "https://data.delijn.be/stops/210052"], ["http://irail.be/stations/NMBS/008010316", "https://data.delijn.be/stops/408948"], ["http://irail.be/stations/NMBS/008849064", "https://tec.openplanner.team/stops/LLApavi1"], ["https://data.delijn.be/stops/207773", "https://tec.openplanner.team/stops/H5rx137b"], ["http://irail.be/stations/NMBS/008811007", "https://mivb.openplanner.team/stops/5761"], ["http://irail.be/stations/NMBS/008892452", "https://data.delijn.be/stops/500937"], ["https://data.delijn.be/stops/218013", "https://tec.openplanner.team/stops/H5rx129a"], ["http://irail.be/stations/NMBS/008871332", "https://tec.openplanner.team/stops/Cobmven1"], ["https://data.delijn.be/stops/307639", "https://mivb.openplanner.team/stops/1932"], ["http://irail.be/stations/NMBS/008885001", "https://tec.openplanner.team/stops/H4ty406a"], ["https://data.delijn.be/stops/408679", "https://tec.openplanner.team/stops/LOTsava1"], ["https://data.delijn.be/stops/301013", "https://mivb.openplanner.team/stops/1310"], ["http://irail.be/stations/NMBS/008866845", "https://tec.openplanner.team/stops/X641aha"], ["https://data.delijn.be/stops/207763", "https://tec.openplanner.team/stops/H5rx145b"], ["https://data.delijn.be/stops/408977", "https://tec.openplanner.team/stops/LWAgare*"], ["https://mivb.openplanner.team/stops/4857B", "https://tec.openplanner.team/stops/Buccobs1"], ["http://irail.be/stations/NMBS/008864451", "https://tec.openplanner.team/stops/X982caa"], ["http://irail.be/stations/NMBS/008884004", "https://tec.openplanner.team/stops/H1ho143b"], ["http://irail.be/stations/NMBS/008894821", "https://data.delijn.be/stops/204337"], ["https://data.delijn.be/stops/304210", "https://tec.openplanner.team/stops/Brsrpmo1"], ["https://data.delijn.be/stops/305145", "https://tec.openplanner.team/stops/H1mk112a"], ["https://data.delijn.be/stops/301113", "https://mivb.openplanner.team/stops/2701"], ["https://data.delijn.be/stops/208185", "https://tec.openplanner.team/stops/H5rx134b"], ["https://data.delijn.be/stops/400455", "https://tec.openplanner.team/stops/LEMec--2"], ["http://irail.be/stations/NMBS/008832334", "https://data.delijn.be/stops/408198"], ["https://data.delijn.be/stops/408962", "https://tec.openplanner.team/stops/LWAmouh1"], ["http://irail.be/stations/NMBS/008822111", "https://data.delijn.be/stops/204572"], ["http://irail.be/stations/NMBS/008896149", "https://data.delijn.be/stops/200669"], ["http://irail.be/stations/NMBS/008832243", "https://data.delijn.be/stops/404157"], ["https://data.delijn.be/stops/302420", "https://tec.openplanner.team/stops/Bmlngch1"], ["https://data.delijn.be/stops/410142", "https://tec.openplanner.team/stops/Lrcvill1"], ["https://data.delijn.be/stops/308725", "https://tec.openplanner.team/stops/Bgoewat1"], ["http://irail.be/stations/NMBS/008863834", "https://tec.openplanner.team/stops/N261aha"], ["https://data.delijn.be/stops/407233", "https://tec.openplanner.team/stops/LGreg--2"], ["https://data.delijn.be/stops/301413", "https://tec.openplanner.team/stops/Bengvma1"], ["https://data.delijn.be/stops/306159", "https://mivb.openplanner.team/stops/0150129"], ["https://data.delijn.be/stops/400494", "https://tec.openplanner.team/stops/LRGbett3"], ["http://irail.be/stations/NMBS/008812047", "https://mivb.openplanner.team/stops/1067"], ["http://irail.be/stations/NMBS/008893013", "https://data.delijn.be/stops/201628"], ["http://irail.be/stations/NMBS/008892635", "https://data.delijn.be/stops/209494"], ["https://data.delijn.be/stops/300944", "https://mivb.openplanner.team/stops/1732"], ["https://mivb.openplanner.team/stops/1752", "https://tec.openplanner.team/stops/Baudulb2"], ["https://data.delijn.be/stops/306899", "https://tec.openplanner.team/stops/Bgoegma2"], ["http://irail.be/stations/NMBS/008861317", "https://tec.openplanner.team/stops/N522ala"], ["https://data.delijn.be/stops/300962", "https://mivb.openplanner.team/stops/0260237"], ["https://data.delijn.be/stops/505842", "https://tec.openplanner.team/stops/H4co107b"], ["http://irail.be/stations/NMBS/008865615", "https://tec.openplanner.team/stops/X347aab"], ["https://data.delijn.be/stops/304860", "https://tec.openplanner.team/stops/Bbrlmez1"], ["https://data.delijn.be/stops/407217", "https://tec.openplanner.team/stops/LHStrez1"], ["http://irail.be/stations/NMBS/008844206", "https://tec.openplanner.team/stops/Lpeeg--2"], ["https://data.delijn.be/stops/305429", "https://mivb.openplanner.team/stops/1627"], ["https://data.delijn.be/stops/302427", "https://tec.openplanner.team/stops/Bzlufbo1"], ["https://data.delijn.be/stops/208189", "https://tec.openplanner.team/stops/H5rx120a"], ["http://irail.be/stations/NMBS/008884715", "https://tec.openplanner.team/stops/H5bl141a"], ["https://data.delijn.be/stops/304580", "https://mivb.openplanner.team/stops/0529"], ["http://irail.be/stations/NMBS/008871217", "https://tec.openplanner.team/stops/Crodebr1"], ["https://data.delijn.be/stops/408857", "https://tec.openplanner.team/stops/LFClage2"], ["https://data.delijn.be/stops/301070", "https://mivb.openplanner.team/stops/8741"], ["http://irail.be/stations/NMBS/008812252", "https://data.delijn.be/stops/302313"], ["http://irail.be/stations/NMBS/008813037", "https://mivb.openplanner.team/stops/1168"], ["http://irail.be/stations/NMBS/008889011", "https://tec.openplanner.team/stops/H4rx175a"], ["http://irail.be/stations/NMBS/008861127", "https://tec.openplanner.team/stops/N501cwa"], ["https://mivb.openplanner.team/stops/6439", "https://tec.openplanner.team/stops/Buccham2"], ["https://data.delijn.be/stops/207773", "https://tec.openplanner.team/stops/H5rx114a"], ["https://data.delijn.be/stops/208610", "https://tec.openplanner.team/stops/H1by101b"], ["https://data.delijn.be/stops/405716", "https://tec.openplanner.team/stops/Llgwild8"], ["https://data.delijn.be/stops/301132", "https://tec.openplanner.team/stops/Buccgob2"], ["https://data.delijn.be/stops/304072", "https://tec.openplanner.team/stops/Bgnvfai1"], ["https://data.delijn.be/stops/300936", "https://mivb.openplanner.team/stops/4153"], ["http://irail.be/stations/NMBS/008885001", "https://tec.openplanner.team/stops/H4ty357a"], ["http://irail.be/stations/NMBS/008811205", "https://mivb.openplanner.team/stops/8232"], ["https://data.delijn.be/stops/306064", "https://tec.openplanner.team/stops/Brsga812"], ["https://data.delijn.be/stops/304698", "https://mivb.openplanner.team/stops/5729"], ["https://data.delijn.be/stops/504653", "https://tec.openplanner.team/stops/H4co151a"], ["http://irail.be/stations/NMBS/008892635", "https://data.delijn.be/stops/209277"], ["https://data.delijn.be/stops/304441", "https://tec.openplanner.team/stops/Brsgepr2"], ["https://data.delijn.be/stops/504305", "https://tec.openplanner.team/stops/H4mo161a"], ["https://data.delijn.be/stops/509456", "https://tec.openplanner.team/stops/H4rk101b"], ["http://irail.be/stations/NMBS/008015345", "https://tec.openplanner.team/stops/LaAdiep1"], ["https://data.delijn.be/stops/303247", "https://tec.openplanner.team/stops/Blkbbeu1"], ["http://irail.be/stations/NMBS/008871373", "https://tec.openplanner.team/stops/H2gy109b"], ["https://data.delijn.be/stops/302226", "https://tec.openplanner.team/stops/Bhoegbr1"], ["https://data.delijn.be/stops/307150", "https://tec.openplanner.team/stops/Bhaless1"], ["https://data.delijn.be/stops/301001", "https://mivb.openplanner.team/stops/1512"], ["http://irail.be/stations/NMBS/008832250", "https://data.delijn.be/stops/404222"], ["https://data.delijn.be/stops/509238", "https://tec.openplanner.team/stops/H4co107b"], ["http://irail.be/stations/NMBS/008871662", "https://tec.openplanner.team/stops/H1so141a"], ["https://data.delijn.be/stops/306905", "https://tec.openplanner.team/stops/Bboseco2"], ["https://data.delijn.be/stops/300327", "https://tec.openplanner.team/stops/Balsnay2"], ["https://data.delijn.be/stops/408972", "https://tec.openplanner.team/stops/LWAloui1"], ["https://data.delijn.be/stops/303950", "https://tec.openplanner.team/stops/Bhevwzw1"], ["http://irail.be/stations/NMBS/008874609", "https://tec.openplanner.team/stops/N543cfb"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1eo103a"], ["https://data.delijn.be/stops/504323", "https://tec.openplanner.team/stops/H4mo193a"], ["http://irail.be/stations/NMBS/008812021", "https://mivb.openplanner.team/stops/7790156"], ["http://irail.be/stations/NMBS/008889011", "https://tec.openplanner.team/stops/H4mo137a"], ["http://irail.be/stations/NMBS/008893567", "https://data.delijn.be/stops/201644"], ["https://data.delijn.be/stops/307157", "https://tec.openplanner.team/stops/Bhalwat1"], ["https://data.delijn.be/stops/301032", "https://mivb.openplanner.team/stops/6078"], ["https://data.delijn.be/stops/302892", "https://tec.openplanner.team/stops/Bhevjal2"], ["https://data.delijn.be/stops/304114", "https://tec.openplanner.team/stops/Bovevri1"], ["https://data.delijn.be/stops/300338", "https://tec.openplanner.team/stops/Balswin3"], ["https://data.delijn.be/stops/305318", "https://mivb.openplanner.team/stops/2816"], ["http://irail.be/stations/NMBS/008886561", "https://tec.openplanner.team/stops/H5is168b"], ["http://irail.be/stations/NMBS/008822251", "https://data.delijn.be/stops/301448"], ["http://irail.be/stations/NMBS/008811775", "https://data.delijn.be/stops/302762"], ["https://data.delijn.be/stops/307966", "https://tec.openplanner.team/stops/Bwavbar1"], ["http://irail.be/stations/NMBS/008893260", "https://data.delijn.be/stops/203030"], ["https://data.delijn.be/stops/300797", "https://mivb.openplanner.team/stops/3805"], ["https://data.delijn.be/stops/406350", "https://tec.openplanner.team/stops/LMastat3"], ["http://irail.be/stations/NMBS/008814308", "https://data.delijn.be/stops/301453"], ["https://data.delijn.be/stops/301076", "https://mivb.openplanner.team/stops/3286B"], ["https://data.delijn.be/stops/509534", "https://tec.openplanner.team/stops/H4pl112a"], ["https://data.delijn.be/stops/305509", "https://mivb.openplanner.team/stops/1381"], ["https://data.delijn.be/stops/408880", "https://tec.openplanner.team/stops/LDppana1"], ["https://mivb.openplanner.team/stops/0130127", "https://tec.openplanner.team/stops/Bwolvan1"], ["https://data.delijn.be/stops/408903", "https://tec.openplanner.team/stops/LFPkast2"], ["http://irail.be/stations/NMBS/008896115", "https://data.delijn.be/stops/503199"], ["http://irail.be/stations/NMBS/008821402", "https://data.delijn.be/stops/104262"], ["http://irail.be/stations/NMBS/008861333", "https://tec.openplanner.team/stops/N531apb"], ["https://data.delijn.be/stops/301679", "https://tec.openplanner.team/stops/Bnetegl3"], ["http://irail.be/stations/NMBS/008894235", "https://data.delijn.be/stops/204579"], ["https://data.delijn.be/stops/304862", "https://tec.openplanner.team/stops/Bbrlrph1"], ["https://data.delijn.be/stops/301007", "https://mivb.openplanner.team/stops/4106"], ["http://irail.be/stations/NMBS/008821436", "https://data.delijn.be/stops/102194"], ["https://data.delijn.be/stops/306398", "https://mivb.openplanner.team/stops/9726"], ["https://data.delijn.be/stops/400484", "https://tec.openplanner.team/stops/LRGderr1"], ["https://data.delijn.be/stops/300743", "https://mivb.openplanner.team/stops/6809F"], ["https://data.delijn.be/stops/403784", "https://tec.openplanner.team/stops/LOesour2"], ["https://data.delijn.be/stops/307687", "https://tec.openplanner.team/stops/Blkbbeu2"], ["http://irail.be/stations/NMBS/008841202", "https://tec.openplanner.team/stops/Llonaes1"], ["https://data.delijn.be/stops/303667", "https://mivb.openplanner.team/stops/1685F"], ["https://data.delijn.be/stops/509241", "https://tec.openplanner.team/stops/H4co158b"], ["http://irail.be/stations/NMBS/008811528", "https://tec.openplanner.team/stops/Brsrpar1"], ["http://irail.be/stations/NMBS/008893179", "https://data.delijn.be/stops/200797"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/Cmltemp5"], ["https://data.delijn.be/stops/300749", "https://mivb.openplanner.team/stops/1256"], ["https://data.delijn.be/stops/300829", "https://mivb.openplanner.team/stops/5087"], ["http://irail.be/stations/NMBS/008831807", "https://data.delijn.be/stops/407934"], ["https://data.delijn.be/stops/306117", "https://mivb.openplanner.team/stops/1483"], ["https://data.delijn.be/stops/300791", "https://mivb.openplanner.team/stops/3252"], ["http://irail.be/stations/NMBS/008812153", "https://data.delijn.be/stops/206691"], ["http://irail.be/stations/NMBS/008866118", "https://tec.openplanner.team/stops/X601bsa"], ["https://data.delijn.be/stops/303948", "https://tec.openplanner.team/stops/Bhaawdr2"], ["https://data.delijn.be/stops/508228", "https://tec.openplanner.team/stops/H4he101b"], ["http://irail.be/stations/NMBS/008200518", "https://tec.openplanner.team/stops/X688aba"], ["https://data.delijn.be/stops/405737", "https://tec.openplanner.team/stops/Lrcvill2"], ["https://data.delijn.be/stops/304133", "https://tec.openplanner.team/stops/Bbghsar2"], ["http://irail.be/stations/NMBS/008873122", "https://tec.openplanner.team/stops/N101aoa"], ["https://data.delijn.be/stops/300986", "https://mivb.openplanner.team/stops/1030"], ["https://data.delijn.be/stops/208766", "https://tec.openplanner.team/stops/H5rx110b"], ["http://irail.be/stations/NMBS/008884566", "https://tec.openplanner.team/stops/H1je222a"], ["http://irail.be/stations/NMBS/008400131", "https://data.delijn.be/stops/105799"], ["http://irail.be/stations/NMBS/008832433", "https://data.delijn.be/stops/108969"], ["https://data.delijn.be/stops/305296", "https://mivb.openplanner.team/stops/9631"], ["http://irail.be/stations/NMBS/008892338", "https://data.delijn.be/stops/506010"], ["https://mivb.openplanner.team/stops/5824", "https://tec.openplanner.team/stops/Bucccre1"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1hh117a"], ["https://data.delijn.be/stops/207752", "https://tec.openplanner.team/stops/H5rx126b"], ["http://irail.be/stations/NMBS/008822459", "https://data.delijn.be/stops/305964"], ["http://irail.be/stations/NMBS/008865003", "https://tec.openplanner.team/stops/X801bea"], ["https://data.delijn.be/stops/306115", "https://mivb.openplanner.team/stops/7720203"], ["http://irail.be/stations/NMBS/008886546", "https://data.delijn.be/stops/206771"], ["https://data.delijn.be/stops/504292", "https://tec.openplanner.team/stops/H4mo188b"], ["https://data.delijn.be/stops/305347", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://data.delijn.be/stops/300919", "https://mivb.openplanner.team/stops/5044"], ["https://data.delijn.be/stops/301030", "https://tec.openplanner.team/stops/Bsgipmo1"], ["http://irail.be/stations/NMBS/008895463", "https://data.delijn.be/stops/206487"], ["http://irail.be/stations/NMBS/008814001", "https://mivb.openplanner.team/stops/0350140"], ["https://data.delijn.be/stops/400490", "https://tec.openplanner.team/stops/LBSkann1"], ["http://irail.be/stations/NMBS/008833134", "https://data.delijn.be/stops/305524"], ["http://irail.be/stations/NMBS/008822137", "https://data.delijn.be/stops/207332"], ["https://data.delijn.be/stops/304033", "https://tec.openplanner.team/stops/Boveker2"], ["https://data.delijn.be/stops/410133", "https://tec.openplanner.team/stops/LJU51--2"], ["https://data.delijn.be/stops/209372", "https://tec.openplanner.team/stops/H5rx151a"], ["http://irail.be/stations/NMBS/008871183", "https://tec.openplanner.team/stops/Chhlori2"], ["https://data.delijn.be/stops/408829", "https://tec.openplanner.team/stops/LVIacac1"], ["https://data.delijn.be/stops/209409", "https://tec.openplanner.team/stops/H5rx140a"], ["https://mivb.openplanner.team/stops/1416", "https://tec.openplanner.team/stops/Bbxlner2"], ["http://irail.be/stations/NMBS/008882248", "https://tec.openplanner.team/stops/H2ch125a"], ["https://data.delijn.be/stops/300804", "https://mivb.openplanner.team/stops/5296B"], ["https://data.delijn.be/stops/305198", "https://tec.openplanner.team/stops/Btiegar2"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2le146a"], ["https://data.delijn.be/stops/301923", "https://mivb.openplanner.team/stops/2071"], ["http://irail.be/stations/NMBS/008896396", "https://data.delijn.be/stops/504568"], ["https://data.delijn.be/stops/208763", "https://tec.openplanner.team/stops/H5rx112b"], ["https://data.delijn.be/stops/304641", "https://mivb.openplanner.team/stops/1681F"], ["https://data.delijn.be/stops/302793", "https://mivb.openplanner.team/stops/1629"], ["http://irail.be/stations/NMBS/008895729", "https://data.delijn.be/stops/206803"], ["http://irail.be/stations/NMBS/008842630", "https://tec.openplanner.team/stops/Lstbota3"], ["https://data.delijn.be/stops/405459", "https://tec.openplanner.team/stops/LWHmath2"], ["http://irail.be/stations/NMBS/008844255", "https://tec.openplanner.team/stops/LFrec--1"], ["https://data.delijn.be/stops/301984", "https://tec.openplanner.team/stops/Bhaldbo1"], ["https://data.delijn.be/stops/209838", "https://tec.openplanner.team/stops/H4ss157b"], ["https://data.delijn.be/stops/307821", "https://mivb.openplanner.team/stops/2015"], ["http://irail.be/stations/NMBS/008811197", "https://mivb.openplanner.team/stops/0070521"], ["https://data.delijn.be/stops/305508", "https://mivb.openplanner.team/stops/1381"], ["http://irail.be/stations/NMBS/008893062", "https://data.delijn.be/stops/200604"], ["https://data.delijn.be/stops/504319", "https://tec.openplanner.team/stops/H4mo163a"], ["https://data.delijn.be/stops/208760", "https://tec.openplanner.team/stops/H5rx100b"], ["https://data.delijn.be/stops/304665", "https://mivb.openplanner.team/stops/9660"], ["http://irail.be/stations/NMBS/008813037", "https://mivb.openplanner.team/stops/1063"], ["http://irail.be/stations/NMBS/008822525", "https://data.delijn.be/stops/301887"], ["https://data.delijn.be/stops/208417", "https://tec.openplanner.team/stops/H4rs118b"], ["https://data.delijn.be/stops/302805", "https://mivb.openplanner.team/stops/5656"], ["https://data.delijn.be/stops/209838", "https://tec.openplanner.team/stops/H5rx100b"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Cthha501"], ["https://mivb.openplanner.team/stops/1725", "https://tec.openplanner.team/stops/Bwbfbon1"], ["https://data.delijn.be/stops/408906", "https://tec.openplanner.team/stops/LFPkape2"], ["https://data.delijn.be/stops/301168", "https://mivb.openplanner.team/stops/2452"], ["https://data.delijn.be/stops/410152", "https://mivb.openplanner.team/stops/6081"], ["https://data.delijn.be/stops/305298", "https://tec.openplanner.team/stops/Bspkkhe1"], ["https://data.delijn.be/stops/300336", "https://tec.openplanner.team/stops/Balssvi2"], ["https://mivb.openplanner.team/stops/0210132", "https://tec.openplanner.team/stops/Baudhan1"], ["https://data.delijn.be/stops/304639", "https://mivb.openplanner.team/stops/9655"], ["https://data.delijn.be/stops/303576", "https://mivb.openplanner.team/stops/9778"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N562ayb"], ["http://irail.be/stations/NMBS/008833449", "https://data.delijn.be/stops/405346"], ["http://irail.be/stations/NMBS/008884566", "https://tec.openplanner.team/stops/H1je211b"], ["http://irail.be/stations/NMBS/008866175", "https://tec.openplanner.team/stops/X650aka"], ["https://data.delijn.be/stops/408898", "https://tec.openplanner.team/stops/LFProt-1"], ["https://data.delijn.be/stops/300407", "https://tec.openplanner.team/stops/Blemwro2"], ["https://data.delijn.be/stops/408596", "https://tec.openplanner.team/stops/LOreg--2"], ["https://data.delijn.be/stops/401413", "https://mivb.openplanner.team/stops/4305"], ["http://irail.be/stations/NMBS/008871332", "https://tec.openplanner.team/stops/Bobacou1"], ["https://mivb.openplanner.team/stops/2150", "https://tec.openplanner.team/stops/Buccrac1"], ["https://data.delijn.be/stops/503678", "https://tec.openplanner.team/stops/H4ef111b"], ["https://mivb.openplanner.team/stops/5605", "https://tec.openplanner.team/stops/Bovejei1"], ["https://data.delijn.be/stops/404652", "https://tec.openplanner.team/stops/Llaacca1"], ["http://irail.be/stations/NMBS/008821246", "https://data.delijn.be/stops/101917"], ["https://data.delijn.be/stops/504772", "https://tec.openplanner.team/stops/H4wn130a"], ["https://data.delijn.be/stops/305233", "https://mivb.openplanner.team/stops/9606"], ["http://irail.be/stations/NMBS/008892205", "https://data.delijn.be/stops/502703"], ["https://data.delijn.be/stops/307808", "https://mivb.openplanner.team/stops/1115"], ["https://data.delijn.be/stops/400453", "https://tec.openplanner.team/stops/LBPboir1"], ["http://irail.be/stations/NMBS/008832565", "https://data.delijn.be/stops/405820"], ["https://data.delijn.be/stops/306661", "https://mivb.openplanner.team/stops/9802"], ["https://data.delijn.be/stops/300941", "https://mivb.openplanner.team/stops/3129"], ["http://irail.be/stations/NMBS/008896115", "https://data.delijn.be/stops/503983"], ["http://irail.be/stations/NMBS/008833308", "https://data.delijn.be/stops/305195"], ["http://irail.be/stations/NMBS/008874005", "https://tec.openplanner.team/stops/NC02aob"], ["https://data.delijn.be/stops/504277", "https://tec.openplanner.team/stops/H4mn100d"], ["http://irail.be/stations/NMBS/008811528", "https://tec.openplanner.team/stops/Bgnvbsi1"], ["http://irail.be/stations/NMBS/008881000", "https://tec.openplanner.team/stops/H1ms300a"], ["https://data.delijn.be/stops/303972", "https://tec.openplanner.team/stops/Bhmmjco1"], ["https://data.delijn.be/stops/405336", "https://tec.openplanner.team/stops/Bneelaa1"], ["http://irail.be/stations/NMBS/008895463", "https://data.delijn.be/stops/206323"], ["https://data.delijn.be/stops/307233", "https://mivb.openplanner.team/stops/9027"], ["https://data.delijn.be/stops/307642", "https://mivb.openplanner.team/stops/1955"], ["http://irail.be/stations/NMBS/008886009", "https://tec.openplanner.team/stops/H5at127a"], ["https://data.delijn.be/stops/302421", "https://tec.openplanner.team/stops/Bjodgai1"], ["https://data.delijn.be/stops/407209", "https://tec.openplanner.team/stops/LHTmc--1"], ["https://data.delijn.be/stops/300789", "https://mivb.openplanner.team/stops/1487"], ["https://mivb.openplanner.team/stops/5208", "https://tec.openplanner.team/stops/Bixlaca1"], ["https://data.delijn.be/stops/301688", "https://tec.openplanner.team/stops/Bnetrbr1"], ["https://data.delijn.be/stops/308981", "https://tec.openplanner.team/stops/Blhumpo4"], ["https://data.delijn.be/stops/408978", "https://tec.openplanner.team/stops/LWAcost2"], ["http://irail.be/stations/NMBS/008865649", "https://tec.openplanner.team/stops/N343aeb"], ["https://data.delijn.be/stops/504322", "https://tec.openplanner.team/stops/H4mo172a"], ["https://data.delijn.be/stops/400664", "https://tec.openplanner.team/stops/LGAnovi2"], ["http://irail.be/stations/NMBS/008842853", "https://tec.openplanner.team/stops/X982aha"], ["https://data.delijn.be/stops/301047", "https://mivb.openplanner.team/stops/4214"], ["https://data.delijn.be/stops/301401", "https://mivb.openplanner.team/stops/2611"], ["https://data.delijn.be/stops/300315", "https://tec.openplanner.team/stops/Bhmmvdu1"], ["https://data.delijn.be/stops/407230", "https://tec.openplanner.team/stops/LORec--*"], ["http://irail.be/stations/NMBS/008882206", "https://tec.openplanner.team/stops/H2hl113b"], ["https://data.delijn.be/stops/307973", "https://tec.openplanner.team/stops/Bwavcar2"], ["http://irail.be/stations/NMBS/008831005", "https://data.delijn.be/stops/403103"], ["http://irail.be/stations/NMBS/008895471", "https://data.delijn.be/stops/207532"], ["http://irail.be/stations/NMBS/008811148", "https://mivb.openplanner.team/stops/9755"], ["https://data.delijn.be/stops/401408", "https://mivb.openplanner.team/stops/0120326"], ["http://irail.be/stations/NMBS/008811536", "https://tec.openplanner.team/stops/Brixeur5"], ["http://irail.be/stations/NMBS/008812021", "https://mivb.openplanner.team/stops/6100"], ["https://data.delijn.be/stops/306311", "https://mivb.openplanner.team/stops/5823"], ["https://data.delijn.be/stops/301156", "https://tec.openplanner.team/stops/Bwbfhip2"], ["http://irail.be/stations/NMBS/008821535", "https://data.delijn.be/stops/109977"], ["https://data.delijn.be/stops/301039", "https://mivb.openplanner.team/stops/1202"], ["https://data.delijn.be/stops/302441", "https://tec.openplanner.team/stops/Bzluegl1"], ["http://irail.be/stations/NMBS/008896370", "https://data.delijn.be/stops/508867"], ["https://data.delijn.be/stops/301107", "https://mivb.openplanner.team/stops/1915"], ["http://irail.be/stations/NMBS/008843158", "https://tec.openplanner.team/stops/Lghmeun3"], ["https://data.delijn.be/stops/302831", "https://tec.openplanner.team/stops/Blaneli1"], ["https://data.delijn.be/stops/408841", "https://tec.openplanner.team/stops/LRmkult1"], ["https://data.delijn.be/stops/303583", "https://mivb.openplanner.team/stops/9729"], ["http://irail.be/stations/NMBS/008895232", "https://data.delijn.be/stops/208805"], ["https://data.delijn.be/stops/300897", "https://mivb.openplanner.team/stops/9946"], ["https://data.delijn.be/stops/307991", "https://tec.openplanner.team/stops/Bovejei1"], ["https://data.delijn.be/stops/404662", "https://tec.openplanner.team/stops/LPAbrun2"], ["https://data.delijn.be/stops/304705", "https://tec.openplanner.team/stops/Baudtri2"], ["https://data.delijn.be/stops/400675", "https://tec.openplanner.team/stops/Brach122"], ["http://irail.be/stations/NMBS/008833605", "https://data.delijn.be/stops/302838"], ["https://data.delijn.be/stops/504000", "https://tec.openplanner.team/stops/H4eh102b"], ["http://irail.be/stations/NMBS/008811429", "https://mivb.openplanner.team/stops/2079"], ["https://data.delijn.be/stops/302891", "https://tec.openplanner.team/stops/Bhevjac2"], ["https://data.delijn.be/stops/303576", "https://mivb.openplanner.team/stops/1121"], ["https://data.delijn.be/stops/308823", "https://tec.openplanner.team/stops/Bgdhbvu2"], ["https://data.delijn.be/stops/300920", "https://mivb.openplanner.team/stops/2903"], ["https://data.delijn.be/stops/303831", "https://mivb.openplanner.team/stops/3222"], ["https://data.delijn.be/stops/407751", "https://tec.openplanner.team/stops/LWOrout2"], ["https://data.delijn.be/stops/304037", "https://tec.openplanner.team/stops/Bovesnh1"], ["http://irail.be/stations/NMBS/008871225", "https://tec.openplanner.team/stops/Ccomott2"], ["http://irail.be/stations/NMBS/008821089", "https://data.delijn.be/stops/109135"], ["https://data.delijn.be/stops/408820", "https://tec.openplanner.team/stops/LMgwith1"], ["https://data.delijn.be/stops/508677", "https://tec.openplanner.team/stops/H4ef138a"], ["http://irail.be/stations/NMBS/008811726", "https://tec.openplanner.team/stops/Bwavlep2"], ["http://irail.be/stations/NMBS/008895711", "https://data.delijn.be/stops/206853"], ["https://mivb.openplanner.team/stops/5454F", "https://tec.openplanner.team/stops/Bwbfgar2"], ["https://data.delijn.be/stops/307004", "https://tec.openplanner.team/stops/Blkbbvh1"], ["https://data.delijn.be/stops/307831", "https://mivb.openplanner.team/stops/7501"], ["http://irail.be/stations/NMBS/008842705", "https://tec.openplanner.team/stops/LCPoneu2"], ["https://data.delijn.be/stops/301115", "https://mivb.openplanner.team/stops/1918"], ["https://data.delijn.be/stops/408908", "https://tec.openplanner.team/stops/LOTsav-1"], ["https://data.delijn.be/stops/302415", "https://tec.openplanner.team/stops/Bjodeco1"], ["http://irail.be/stations/NMBS/008813045", "https://mivb.openplanner.team/stops/6357F"], ["https://data.delijn.be/stops/308050", "https://tec.openplanner.team/stops/Btiegma1"], ["http://irail.be/stations/NMBS/008895646", "https://data.delijn.be/stops/208589"], ["https://data.delijn.be/stops/404661", "https://tec.openplanner.team/stops/LPAchpl1"], ["http://irail.be/stations/NMBS/008863453", "https://tec.openplanner.team/stops/N504acb"], ["https://data.delijn.be/stops/405740", "https://tec.openplanner.team/stops/Llgpire1"], ["http://irail.be/stations/NMBS/008891314", "https://data.delijn.be/stops/502505"], ["https://data.delijn.be/stops/207753", "https://tec.openplanner.team/stops/H4ss158b"], ["https://data.delijn.be/stops/307025", "https://tec.openplanner.team/stops/H1en100b"], ["https://mivb.openplanner.team/stops/1969", "https://tec.openplanner.team/stops/Buccdho2"], ["https://data.delijn.be/stops/308814", "https://tec.openplanner.team/stops/Bjodsje1"], ["https://data.delijn.be/stops/408896", "https://tec.openplanner.team/stops/LFPkerk2"], ["https://data.delijn.be/stops/302398", "https://mivb.openplanner.team/stops/5297B"], ["https://mivb.openplanner.team/stops/1872B", "https://tec.openplanner.team/stops/Bbxlner1"], ["https://data.delijn.be/stops/307233", "https://mivb.openplanner.team/stops/8784"], ["http://irail.be/stations/NMBS/008821311", "https://data.delijn.be/stops/107250"], ["https://data.delijn.be/stops/307221", "https://tec.openplanner.team/stops/Bhalgar2"], ["https://data.delijn.be/stops/407203", "https://tec.openplanner.team/stops/LHThall3"], ["https://data.delijn.be/stops/405733", "https://tec.openplanner.team/stops/Lrclant1"], ["https://data.delijn.be/stops/303376", "https://mivb.openplanner.team/stops/1826"], ["https://data.delijn.be/stops/208758", "https://tec.openplanner.team/stops/H5rx105a"], ["http://irail.be/stations/NMBS/008400280", "https://data.delijn.be/stops/501413"], ["http://irail.be/stations/NMBS/008892452", "https://data.delijn.be/stops/506629"], ["http://irail.be/stations/NMBS/008884640", "https://tec.openplanner.team/stops/H1hc127d"], ["http://irail.be/stations/NMBS/008863834", "https://tec.openplanner.team/stops/N338aia"], ["http://irail.be/stations/NMBS/008811601", "https://tec.openplanner.team/stops/Bottgar4"], ["http://irail.be/stations/NMBS/008200520", "https://tec.openplanner.team/stops/X626aga"], ["https://data.delijn.be/stops/301034", "https://mivb.openplanner.team/stops/0704"], ["https://data.delijn.be/stops/405462", "https://tec.openplanner.team/stops/LWHwaas1"], ["https://data.delijn.be/stops/300753", "https://mivb.openplanner.team/stops/2518"], ["https://data.delijn.be/stops/304027", "https://tec.openplanner.team/stops/Bovejme1"], ["https://mivb.openplanner.team/stops/3557", "https://tec.openplanner.team/stops/Bixefra1"], ["http://irail.be/stations/NMBS/008844206", "https://tec.openplanner.team/stops/Lpeprev2"], ["https://data.delijn.be/stops/408910", "https://tec.openplanner.team/stops/LVukabi1"], ["https://data.delijn.be/stops/300756", "https://mivb.openplanner.team/stops/1327"], ["https://data.delijn.be/stops/307807", "https://mivb.openplanner.team/stops/60"], ["http://irail.be/stations/NMBS/008844271", "https://tec.openplanner.team/stops/LTRfend1"], ["https://data.delijn.be/stops/300942", "https://mivb.openplanner.team/stops/3203"], ["http://irail.be/stations/NMBS/008893401", "https://data.delijn.be/stops/206915"], ["https://data.delijn.be/stops/301689", "https://tec.openplanner.team/stops/Bnetcor1"], ["https://data.delijn.be/stops/400492", "https://tec.openplanner.team/stops/LBSgeer2"], ["http://irail.be/stations/NMBS/008844321", "https://tec.openplanner.team/stops/LJSforg1"], ["https://data.delijn.be/stops/300923", "https://mivb.openplanner.team/stops/3273"], ["https://data.delijn.be/stops/307111", "https://tec.openplanner.team/stops/Bjodeco1"], ["https://mivb.openplanner.team/stops/5267", "https://tec.openplanner.team/stops/Bettars1"], ["https://data.delijn.be/stops/408828", "https://tec.openplanner.team/stops/LVImons2"], ["https://data.delijn.be/stops/305209", "https://tec.openplanner.team/stops/Bbosgar1"], ["http://irail.be/stations/NMBS/008015345", "https://tec.openplanner.team/stops/LrTbahn2"], ["https://data.delijn.be/stops/401416", "https://mivb.openplanner.team/stops/5312"], ["https://data.delijn.be/stops/405745", "https://tec.openplanner.team/stops/Llgpire1"], ["https://data.delijn.be/stops/304642", "https://mivb.openplanner.team/stops/1606"], ["http://irail.be/stations/NMBS/008811221", "https://data.delijn.be/stops/305547"], ["https://data.delijn.be/stops/307641", "https://mivb.openplanner.team/stops/1963"], ["https://data.delijn.be/stops/300412", "https://mivb.openplanner.team/stops/9657"], ["https://data.delijn.be/stops/302885", "https://tec.openplanner.team/stops/Bhevgro1"], ["https://data.delijn.be/stops/408983", "https://tec.openplanner.team/stops/LWAaxhe2"], ["https://data.delijn.be/stops/301037", "https://mivb.openplanner.team/stops/3284"], ["http://irail.be/stations/NMBS/008864410", "https://tec.openplanner.team/stops/X901aza"], ["http://irail.be/stations/NMBS/008711184", "https://tec.openplanner.team/stops/Cmqbasv2"], ["http://irail.be/stations/NMBS/008811775", "https://data.delijn.be/stops/301684"], ["https://data.delijn.be/stops/307146", "https://tec.openplanner.team/stops/Bhalvel1"], ["http://irail.be/stations/NMBS/008864824", "https://tec.openplanner.team/stops/N219adb"], ["https://data.delijn.be/stops/407582", "https://tec.openplanner.team/stops/LDpzol-2"], ["http://irail.be/stations/NMBS/008811411", "https://tec.openplanner.team/stops/Bixepla2"], ["http://irail.be/stations/NMBS/008822459", "https://data.delijn.be/stops/300679"], ["http://irail.be/stations/NMBS/008841202", "https://tec.openplanner.team/stops/Lghalli1"], ["https://data.delijn.be/stops/300855", "https://mivb.openplanner.team/stops/1083"], ["http://irail.be/stations/NMBS/008871688", "https://tec.openplanner.team/stops/H1fv103b"], ["https://data.delijn.be/stops/307233", "https://mivb.openplanner.team/stops/4129"], ["https://data.delijn.be/stops/408598", "https://tec.openplanner.team/stops/LTotrui2"], ["http://irail.be/stations/NMBS/008812120", "https://data.delijn.be/stops/307492"], ["https://data.delijn.be/stops/207797", "https://tec.openplanner.team/stops/H5rx104a"], ["http://irail.be/stations/NMBS/008895778", "https://data.delijn.be/stops/206734"], ["https://data.delijn.be/stops/300951", "https://mivb.openplanner.team/stops/2570"], ["http://irail.be/stations/NMBS/008864816", "https://tec.openplanner.team/stops/N211aia"], ["http://irail.be/stations/NMBS/008832250", "https://data.delijn.be/stops/404243"], ["https://data.delijn.be/stops/301047", "https://mivb.openplanner.team/stops/6755"], ["https://data.delijn.be/stops/303833", "https://mivb.openplanner.team/stops/1465"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/101446"], ["https://data.delijn.be/stops/306310", "https://tec.openplanner.team/stops/Bucccre1"], ["http://irail.be/stations/NMBS/008874609", "https://tec.openplanner.team/stops/N543cbc"], ["http://irail.be/stations/NMBS/008812237", "https://data.delijn.be/stops/306649"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/300347"], ["http://irail.be/stations/NMBS/008811106", "https://mivb.openplanner.team/stops/5275F"], ["https://data.delijn.be/stops/504382", "https://tec.openplanner.team/stops/H4pl136a"], ["http://irail.be/stations/NMBS/008886041", "https://tec.openplanner.team/stops/H5ma180b"], ["https://data.delijn.be/stops/405703", "https://tec.openplanner.team/stops/Llgangl2"], ["https://data.delijn.be/stops/301031", "https://mivb.openplanner.team/stops/6078"], ["http://irail.be/stations/NMBS/008891611", "https://data.delijn.be/stops/501510"], ["https://data.delijn.be/stops/306929", "https://tec.openplanner.team/stops/Bgoekaz1"], ["https://data.delijn.be/stops/303833", "https://mivb.openplanner.team/stops/2303"], ["https://data.delijn.be/stops/305318", "https://mivb.openplanner.team/stops/2854"], ["http://irail.be/stations/NMBS/008822228", "https://data.delijn.be/stops/102302"], ["http://irail.be/stations/NMBS/008841434", "https://tec.openplanner.team/stops/LBvnico1"], ["https://data.delijn.be/stops/301106", "https://mivb.openplanner.team/stops/1421"], ["https://data.delijn.be/stops/408869", "https://tec.openplanner.team/stops/LFClage2"], ["https://data.delijn.be/stops/308853", "https://mivb.openplanner.team/stops/5081F"], ["https://data.delijn.be/stops/306097", "https://tec.openplanner.team/stops/Bhevwzw2"], ["https://data.delijn.be/stops/408805", "https://tec.openplanner.team/stops/LVIgare1"], ["http://irail.be/stations/NMBS/008841665", "https://tec.openplanner.team/stops/Lhrherm2"], ["https://data.delijn.be/stops/302228", "https://tec.openplanner.team/stops/Blhupqu1"], ["http://irail.be/stations/NMBS/008891173", "https://data.delijn.be/stops/506461"], ["https://data.delijn.be/stops/306647", "https://mivb.openplanner.team/stops/7621"], ["https://data.delijn.be/stops/300957", "https://mivb.openplanner.team/stops/3526"], ["https://mivb.openplanner.team/stops/2717", "https://tec.openplanner.team/stops/Buccfja2"], ["https://data.delijn.be/stops/407233", "https://tec.openplanner.team/stops/LORroma1"], ["https://data.delijn.be/stops/302232", "https://tec.openplanner.team/stops/Blhufro1"], ["https://data.delijn.be/stops/400476", "https://tec.openplanner.team/stops/LBPmili1"], ["http://irail.be/stations/NMBS/008881406", "https://tec.openplanner.team/stops/H1ob330b"], ["http://irail.be/stations/NMBS/008872579", "https://tec.openplanner.team/stops/Bvlvbth1"], ["http://irail.be/stations/NMBS/008895737", "https://data.delijn.be/stops/206721"], ["http://irail.be/stations/NMBS/008844339", "https://tec.openplanner.team/stops/LTHwaux2"], ["http://irail.be/stations/NMBS/008846201", "https://tec.openplanner.team/stops/LVIgare1"], ["http://irail.be/stations/NMBS/008832458", "https://data.delijn.be/stops/109265"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1ne146a"], ["https://data.delijn.be/stops/407202", "https://tec.openplanner.team/stops/LHTbonn1"], ["https://data.delijn.be/stops/406318", "https://tec.openplanner.team/stops/LMastat4"], ["https://data.delijn.be/stops/305225", "https://mivb.openplanner.team/stops/9751"], ["https://data.delijn.be/stops/400496", "https://tec.openplanner.team/stops/LLxcrem2"], ["http://irail.be/stations/NMBS/008813003", "https://mivb.openplanner.team/stops/2268"], ["http://irail.be/stations/NMBS/008731388", "https://tec.openplanner.team/stops/H4ar101a"], ["https://data.delijn.be/stops/304317", "https://mivb.openplanner.team/stops/9703"], ["https://data.delijn.be/stops/509233", "https://tec.openplanner.team/stops/H4co107b"], ["http://irail.be/stations/NMBS/008844503", "https://tec.openplanner.team/stops/LhEcolo2"], ["http://irail.be/stations/NMBS/008873312", "https://tec.openplanner.team/stops/N137afb"], ["https://data.delijn.be/stops/301145", "https://tec.openplanner.team/stops/Buccpin1"], ["http://irail.be/stations/NMBS/008843224", "https://tec.openplanner.team/stops/Lfh-sci2"], ["https://data.delijn.be/stops/301014", "https://mivb.openplanner.team/stops/4101"], ["http://irail.be/stations/NMBS/008884715", "https://tec.openplanner.team/stops/H5bl117b"], ["https://data.delijn.be/stops/301675", "https://tec.openplanner.team/stops/Bnetcor1"], ["https://data.delijn.be/stops/308733", "https://tec.openplanner.team/stops/Bgoemgr2"], ["https://data.delijn.be/stops/301414", "https://tec.openplanner.team/stops/H1en106a"], ["http://irail.be/stations/NMBS/008861416", "https://tec.openplanner.team/stops/N541acb"], ["https://data.delijn.be/stops/301077", "https://mivb.openplanner.team/stops/6437F"], ["https://data.delijn.be/stops/305237", "https://tec.openplanner.team/stops/Bspkdon1"], ["http://irail.be/stations/NMBS/008896909", "https://data.delijn.be/stops/503312"], ["https://data.delijn.be/stops/404663", "https://tec.openplanner.team/stops/LPAbrun2"], ["https://data.delijn.be/stops/307791", "https://mivb.openplanner.team/stops/1711"], ["https://data.delijn.be/stops/407647", "https://tec.openplanner.team/stops/LBPmais1"], ["https://data.delijn.be/stops/208354", "https://tec.openplanner.team/stops/H5rx121b"], ["https://data.delijn.be/stops/408823", "https://tec.openplanner.team/stops/LMgberw2"], ["https://data.delijn.be/stops/504296", "https://tec.openplanner.team/stops/H4mo180a"], ["https://data.delijn.be/stops/303105", "https://tec.openplanner.team/stops/Bhevgro1"], ["https://data.delijn.be/stops/208610", "https://tec.openplanner.team/stops/H1by109a"], ["http://irail.be/stations/NMBS/008728687", "https://tec.openplanner.team/stops/H4rm110a"], ["http://irail.be/stations/NMBS/008881190", "https://tec.openplanner.team/stops/H1ml110a"], ["http://irail.be/stations/NMBS/008892452", "https://data.delijn.be/stops/505406"], ["https://data.delijn.be/stops/405702", "https://tec.openplanner.team/stops/Llghoch1"], ["http://irail.be/stations/NMBS/008895836", "https://data.delijn.be/stops/306713"], ["http://irail.be/stations/NMBS/008871852", "https://tec.openplanner.team/stops/Cmorgof2"], ["https://data.delijn.be/stops/400497", "https://tec.openplanner.team/stops/LEBmoul1"], ["https://data.delijn.be/stops/301071", "https://mivb.openplanner.team/stops/3253"], ["http://irail.be/stations/NMBS/008832615", "https://data.delijn.be/stops/400265"], ["http://irail.be/stations/NMBS/008871837", "https://tec.openplanner.team/stops/Clddelh1"], ["http://irail.be/stations/NMBS/008821634", "https://data.delijn.be/stops/101596"], ["https://data.delijn.be/stops/301022", "https://mivb.openplanner.team/stops/5105"], ["https://data.delijn.be/stops/504317", "https://tec.openplanner.team/stops/H4mo151b"], ["https://data.delijn.be/stops/305296", "https://mivb.openplanner.team/stops/9605"], ["https://mivb.openplanner.team/stops/1639", "https://tec.openplanner.team/stops/Bwolvan1"], ["http://irail.be/stations/NMBS/008812146", "https://data.delijn.be/stops/217006"], ["https://data.delijn.be/stops/207756", "https://tec.openplanner.team/stops/H5rx101a"], ["https://data.delijn.be/stops/207795", "https://tec.openplanner.team/stops/H5rx101a"], ["http://irail.be/stations/NMBS/008811734", "https://data.delijn.be/stops/307975"], ["https://data.delijn.be/stops/305145", "https://tec.openplanner.team/stops/Bmrqpla2"], ["https://data.delijn.be/stops/300760", "https://mivb.openplanner.team/stops/3760"], ["http://irail.be/stations/NMBS/008811262", "https://data.delijn.be/stops/302735"], ["https://data.delijn.be/stops/300875", "https://mivb.openplanner.team/stops/8803"], ["http://irail.be/stations/NMBS/008814431", "https://mivb.openplanner.team/stops/1933B"], ["http://irail.be/stations/NMBS/008861515", "https://tec.openplanner.team/stops/Bcrntru1"], ["http://irail.be/stations/NMBS/008869054", "https://tec.openplanner.team/stops/X687aca"], ["http://irail.be/stations/NMBS/008896412", "https://tec.openplanner.team/stops/H4co157b"], ["http://irail.be/stations/NMBS/008843349", "https://tec.openplanner.team/stops/LAMwall1"], ["http://irail.be/stations/NMBS/008894672", "https://data.delijn.be/stops/205830"], ["https://data.delijn.be/stops/300939", "https://mivb.openplanner.team/stops/3203"], ["http://irail.be/stations/NMBS/008895802", "https://data.delijn.be/stops/207100"], ["https://data.delijn.be/stops/301690", "https://tec.openplanner.team/stops/Bnetrtb2"], ["http://irail.be/stations/NMBS/008881562", "https://tec.openplanner.team/stops/H1ge117a"], ["https://data.delijn.be/stops/308867", "https://mivb.openplanner.team/stops/1825"], ["http://irail.be/stations/NMBS/008891173", "https://data.delijn.be/stops/501541"], ["http://irail.be/stations/NMBS/008844313", "https://tec.openplanner.team/stops/Lpecime2"], ["https://data.delijn.be/stops/404665", "https://tec.openplanner.team/stops/LPAvill2"], ["http://irail.be/stations/NMBS/008885522", "https://tec.openplanner.team/stops/H4ag102a"], ["http://irail.be/stations/NMBS/008832433", "https://data.delijn.be/stops/401931"], ["http://irail.be/stations/NMBS/008841459", "https://tec.openplanner.team/stops/LMOstat1"], ["https://data.delijn.be/stops/304599", "https://mivb.openplanner.team/stops/1383"], ["https://data.delijn.be/stops/307209", "https://tec.openplanner.team/stops/Bcbqcha1"], ["http://irail.be/stations/NMBS/008821337", "https://data.delijn.be/stops/107242"], ["http://irail.be/stations/NMBS/008832003", "https://data.delijn.be/stops/408556"], ["https://data.delijn.be/stops/208739", "https://tec.openplanner.team/stops/H5rx115a"], ["https://data.delijn.be/stops/300798", "https://mivb.openplanner.team/stops/2218"], ["https://data.delijn.be/stops/400493", "https://tec.openplanner.team/stops/LBStong2"], ["http://irail.be/stations/NMBS/008821238", "https://data.delijn.be/stops/102440"], ["https://mivb.openplanner.team/stops/1756B", "https://tec.openplanner.team/stops/Baudvdu2"], ["https://data.delijn.be/stops/406564", "https://tec.openplanner.team/stops/LHTcent2"], ["https://data.delijn.be/stops/208742", "https://tec.openplanner.team/stops/H4am100b"], ["http://irail.be/stations/NMBS/008865615", "https://tec.openplanner.team/stops/N347aca"], ["https://data.delijn.be/stops/503032", "https://tec.openplanner.team/stops/H4ae100a"], ["http://irail.be/stations/NMBS/008892254", "https://data.delijn.be/stops/505664"], ["http://irail.be/stations/NMBS/008812245", "https://data.delijn.be/stops/304782"], ["http://irail.be/stations/NMBS/008893252", "https://data.delijn.be/stops/203018"], ["http://irail.be/stations/NMBS/008831005", "https://data.delijn.be/stops/403121"], ["http://irail.be/stations/NMBS/008811544", "https://tec.openplanner.team/stops/Brixape2"], ["http://irail.be/stations/NMBS/008821246", "https://data.delijn.be/stops/107885"], ["https://data.delijn.be/stops/408801", "https://tec.openplanner.team/stops/LVIastr1"], ["https://data.delijn.be/stops/302807", "https://mivb.openplanner.team/stops/1587"], ["https://mivb.openplanner.team/stops/1760", "https://tec.openplanner.team/stops/Baudtri1"], ["https://data.delijn.be/stops/408976", "https://tec.openplanner.team/stops/LWApr%C3%A9s3"], ["https://data.delijn.be/stops/305354", "https://tec.openplanner.team/stops/Brsregl2"], ["https://data.delijn.be/stops/301014", "https://mivb.openplanner.team/stops/4162"], ["https://data.delijn.be/stops/304207", "https://tec.openplanner.team/stops/Brsrpri2"], ["http://irail.be/stations/NMBS/008896305", "https://tec.openplanner.team/stops/H4mn100d"], ["https://data.delijn.be/stops/307966", "https://tec.openplanner.team/stops/Bwavzno1"], ["http://irail.be/stations/NMBS/008895752", "https://data.delijn.be/stops/207652"], ["https://data.delijn.be/stops/509735", "https://tec.openplanner.team/stops/H4ev126b"], ["https://data.delijn.be/stops/300956", "https://mivb.openplanner.team/stops/2058"], ["https://data.delijn.be/stops/302413", "https://tec.openplanner.team/stops/Bjodeco1"], ["https://data.delijn.be/stops/305520", "https://mivb.openplanner.team/stops/1377"], ["https://data.delijn.be/stops/301053", "https://mivb.openplanner.team/stops/0460250"], ["http://irail.be/stations/NMBS/008814308", "https://data.delijn.be/stops/307225"], ["http://irail.be/stations/NMBS/008884335", "https://tec.openplanner.team/stops/H1he100a"], ["https://mivb.openplanner.team/stops/1251", "https://tec.openplanner.team/stops/Buccdho2"], ["http://irail.be/stations/NMBS/008864469", "https://tec.openplanner.team/stops/X982bdb"], ["http://irail.be/stations/NMBS/008833449", "https://data.delijn.be/stops/405343"], ["https://data.delijn.be/stops/304621", "https://mivb.openplanner.team/stops/5963"], ["https://data.delijn.be/stops/408861", "https://tec.openplanner.team/stops/LFChuis2"], ["https://mivb.openplanner.team/stops/2763", "https://tec.openplanner.team/stops/Buccdef1"], ["https://data.delijn.be/stops/301419", "https://tec.openplanner.team/stops/H1en105a"], ["https://data.delijn.be/stops/305341", "https://tec.openplanner.team/stops/Blmlvex2"], ["https://mivb.openplanner.team/stops/3625B", "https://tec.openplanner.team/stops/Bsgimca2"], ["https://data.delijn.be/stops/301041", "https://mivb.openplanner.team/stops/58"], ["https://data.delijn.be/stops/304447", "https://tec.openplanner.team/stops/Buccpes1"], ["https://data.delijn.be/stops/301683", "https://tec.openplanner.team/stops/Bpecsta1"], ["https://data.delijn.be/stops/300061", "https://tec.openplanner.team/stops/Blemsta2"], ["http://irail.be/stations/NMBS/008841442", "https://tec.openplanner.team/stops/LRemorr3"], ["https://data.delijn.be/stops/408889", "https://tec.openplanner.team/stops/LFMveur2"], ["http://irail.be/stations/NMBS/008895646", "https://data.delijn.be/stops/306269"], ["http://irail.be/stations/NMBS/008845005", "https://tec.openplanner.team/stops/X790aia"], ["http://irail.be/stations/NMBS/008821667", "https://data.delijn.be/stops/107012"], ["https://data.delijn.be/stops/301019", "https://mivb.openplanner.team/stops/4059"], ["https://data.delijn.be/stops/302851", "https://tec.openplanner.team/stops/Bwaakap1"], ["https://data.delijn.be/stops/404654", "https://tec.openplanner.team/stops/LJUfort2"], ["https://data.delijn.be/stops/208764", "https://tec.openplanner.team/stops/H5rx113b"], ["https://data.delijn.be/stops/408851", "https://tec.openplanner.team/stops/LTEkl161"], ["http://irail.be/stations/NMBS/008843430", "https://tec.openplanner.team/stops/LBseg--2"], ["http://irail.be/stations/NMBS/008832565", "https://data.delijn.be/stops/405765"], ["https://mivb.openplanner.team/stops/0220133", "https://tec.openplanner.team/stops/Baudsju1"], ["https://data.delijn.be/stops/304316", "https://mivb.openplanner.team/stops/9703"], ["http://irail.be/stations/NMBS/008886587", "https://tec.openplanner.team/stops/H5is169b"], ["https://data.delijn.be/stops/300886", "https://mivb.openplanner.team/stops/6482"], ["https://data.delijn.be/stops/302902", "https://tec.openplanner.team/stops/Bhevl3l1"], ["http://irail.be/stations/NMBS/008895240", "https://data.delijn.be/stops/208684"], ["https://data.delijn.be/stops/509292", "https://tec.openplanner.team/stops/H4mo208b"], ["http://irail.be/stations/NMBS/008896008", "https://data.delijn.be/stops/509770"], ["http://irail.be/stations/NMBS/008821238", "https://data.delijn.be/stops/105430"], ["https://data.delijn.be/stops/301068", "https://mivb.openplanner.team/stops/8741"], ["https://data.delijn.be/stops/300396", "https://tec.openplanner.team/stops/Bhalgja1"], ["http://irail.be/stations/NMBS/008842655", "https://tec.openplanner.team/stops/LTIdumo2"], ["https://data.delijn.be/stops/307024", "https://tec.openplanner.team/stops/H1en101b"], ["https://data.delijn.be/stops/300961", "https://mivb.openplanner.team/stops/2046"], ["https://data.delijn.be/stops/301025", "https://mivb.openplanner.team/stops/8341"], ["https://data.delijn.be/stops/301033", "https://mivb.openplanner.team/stops/3625B"], ["http://irail.be/stations/NMBS/008821857", "https://data.delijn.be/stops/108050"], ["http://irail.be/stations/NMBS/008821543", "https://data.delijn.be/stops/105404"], ["https://data.delijn.be/stops/208767", "https://tec.openplanner.team/stops/H5rx103a"], ["https://data.delijn.be/stops/304861", "https://tec.openplanner.team/stops/Bbrlmez1"], ["http://irail.be/stations/NMBS/008844347", "https://tec.openplanner.team/stops/LTHroch2"], ["http://irail.be/stations/NMBS/008200940", "https://tec.openplanner.team/stops/X681aha"], ["https://data.delijn.be/stops/505827", "https://tec.openplanner.team/stops/H4mo145b"], ["http://irail.be/stations/NMBS/008812211", "https://mivb.openplanner.team/stops/4270F"], ["http://irail.be/stations/NMBS/008871852", "https://tec.openplanner.team/stops/Cmazsnc2"], ["https://data.delijn.be/stops/307718", "https://tec.openplanner.team/stops/Bwatcrf1"], ["http://irail.be/stations/NMBS/008884632", "https://tec.openplanner.team/stops/H1po130a"], ["https://data.delijn.be/stops/300739", "https://mivb.openplanner.team/stops/2550"], ["http://irail.be/stations/NMBS/008822814", "https://data.delijn.be/stops/106752"], ["https://data.delijn.be/stops/302876", "https://mivb.openplanner.team/stops/2144"], ["http://irail.be/stations/NMBS/008863867", "https://tec.openplanner.team/stops/N308afc"], ["https://data.delijn.be/stops/404660", "https://tec.openplanner.team/stops/LJU493-1"], ["https://data.delijn.be/stops/301412", "https://tec.openplanner.team/stops/H1en102a"], ["http://irail.be/stations/NMBS/008833175", "https://data.delijn.be/stops/303174"], ["http://irail.be/stations/NMBS/008200510", "https://tec.openplanner.team/stops/X685afa"], ["https://data.delijn.be/stops/307921", "https://mivb.openplanner.team/stops/2874"], ["https://data.delijn.be/stops/504235", "https://tec.openplanner.team/stops/H4co146b"], ["http://irail.be/stations/NMBS/008895067", "https://data.delijn.be/stops/207929"], ["https://data.delijn.be/stops/300018", "https://tec.openplanner.team/stops/Buccham1"], ["https://data.delijn.be/stops/308124", "https://tec.openplanner.team/stops/Bgoesch3"], ["https://data.delijn.be/stops/400473", "https://tec.openplanner.team/stops/LGLeg--1"], ["https://data.delijn.be/stops/300806", "https://mivb.openplanner.team/stops/3709"], ["https://data.delijn.be/stops/407491", "https://tec.openplanner.team/stops/LTobilz1"], ["http://irail.be/stations/NMBS/008821063", "https://data.delijn.be/stops/102799"], ["http://irail.be/stations/NMBS/008872066", "https://tec.openplanner.team/stops/Cchheig1"], ["http://irail.be/stations/NMBS/008821154", "https://data.delijn.be/stops/101166"], ["https://data.delijn.be/stops/303585", "https://mivb.openplanner.team/stops/3042"], ["https://data.delijn.be/stops/509740", "https://tec.openplanner.team/stops/H4lu128a"], ["https://data.delijn.be/stops/307140", "https://tec.openplanner.team/stops/Bzluqga2"], ["https://data.delijn.be/stops/301004", "https://mivb.openplanner.team/stops/3109"], ["https://mivb.openplanner.team/stops/8331", "https://tec.openplanner.team/stops/Bsgihmo2"], ["https://data.delijn.be/stops/304451", "https://tec.openplanner.team/stops/Brsgece1"], ["https://data.delijn.be/stops/301680", "https://tec.openplanner.team/stops/Bnetegl2"], ["https://data.delijn.be/stops/307636", "https://mivb.openplanner.team/stops/1938"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1ml112a"], ["https://data.delijn.be/stops/305350", "https://tec.openplanner.team/stops/Blmldmi2"], ["https://data.delijn.be/stops/301315", "https://mivb.openplanner.team/stops/9825F"], ["https://data.delijn.be/stops/503771", "https://tec.openplanner.team/stops/H4eh104a"], ["http://irail.be/stations/NMBS/008893039", "https://data.delijn.be/stops/201495"], ["https://data.delijn.be/stops/408836", "https://tec.openplanner.team/stops/LRmsmvo3"], ["https://data.delijn.be/stops/301041", "https://mivb.openplanner.team/stops/5011"], ["http://irail.be/stations/NMBS/008822251", "https://data.delijn.be/stops/306765"], ["http://irail.be/stations/NMBS/008883311", "https://tec.openplanner.team/stops/Benggar1"], ["http://irail.be/stations/NMBS/008862018", "https://tec.openplanner.team/stops/X602aea"], ["http://irail.be/stations/NMBS/008812161", "https://data.delijn.be/stops/206349"], ["https://data.delijn.be/stops/408898", "https://tec.openplanner.team/stops/LFPdeme2"], ["https://data.delijn.be/stops/305913", "https://mivb.openplanner.team/stops/5165"], ["http://irail.be/stations/NMBS/008844503", "https://tec.openplanner.team/stops/LBNhegg1"], ["https://data.delijn.be/stops/504135", "https://tec.openplanner.team/stops/H4co150b"], ["http://irail.be/stations/NMBS/008872611", "https://tec.openplanner.team/stops/Bsmgmou2"], ["http://irail.be/stations/NMBS/008864824", "https://tec.openplanner.team/stops/N211asa"], ["http://irail.be/stations/NMBS/008841608", "https://tec.openplanner.team/stops/Lhrbell1"], ["http://irail.be/stations/NMBS/008889011", "https://tec.openplanner.team/stops/H4wa156a"], ["https://data.delijn.be/stops/300982", "https://mivb.openplanner.team/stops/7246"], ["https://data.delijn.be/stops/407581", "https://tec.openplanner.team/stops/LDppana1"], ["https://mivb.openplanner.team/stops/1903", "https://tec.openplanner.team/stops/Bixleix2"], ["http://irail.be/stations/NMBS/008812070", "https://data.delijn.be/stops/300211"], ["https://data.delijn.be/stops/300316", "https://tec.openplanner.team/stops/Bhmmpos1"], ["https://data.delijn.be/stops/208543", "https://tec.openplanner.team/stops/H1bd100a"], ["http://irail.be/stations/NMBS/008892288", "https://data.delijn.be/stops/508002"], ["https://data.delijn.be/stops/405449", "https://tec.openplanner.team/stops/Blanove1"], ["https://data.delijn.be/stops/302875", "https://mivb.openplanner.team/stops/2146"], ["http://irail.be/stations/NMBS/008822814", "https://data.delijn.be/stops/109527"], ["https://data.delijn.be/stops/301130", "https://tec.openplanner.team/stops/Buccron2"], ["http://irail.be/stations/NMBS/008812120", "https://data.delijn.be/stops/206178"], ["http://irail.be/stations/NMBS/008874583", "https://tec.openplanner.team/stops/N543bpc"], ["http://irail.be/stations/NMBS/008894755", "https://data.delijn.be/stops/205445"], ["https://data.delijn.be/stops/408842", "https://tec.openplanner.team/stops/LRmmabr2"], ["https://data.delijn.be/stops/301106", "https://mivb.openplanner.team/stops/1500"], ["http://irail.be/stations/NMBS/008893815", "https://data.delijn.be/stops/202985"], ["https://data.delijn.be/stops/307202", "https://tec.openplanner.team/stops/Bhaleur1"], ["https://data.delijn.be/stops/308734", "https://tec.openplanner.team/stops/Bgoemgr2"], ["https://data.delijn.be/stops/301166", "https://mivb.openplanner.team/stops/2119"], ["https://data.delijn.be/stops/305434", "https://mivb.openplanner.team/stops/5528F"], ["http://irail.be/stations/NMBS/008843141", "https://tec.openplanner.team/stops/LjeGRPMC"], ["http://irail.be/stations/NMBS/008812013", "https://mivb.openplanner.team/stops/0470759"], ["http://irail.be/stations/NMBS/008731388", "https://data.delijn.be/stops/505375"], ["https://data.delijn.be/stops/209192", "https://tec.openplanner.team/stops/H5rx137a"], ["https://data.delijn.be/stops/300954", "https://mivb.openplanner.team/stops/4116"], ["http://irail.be/stations/NMBS/008822533", "https://data.delijn.be/stops/301873"], ["http://irail.be/stations/NMBS/008863404", "https://tec.openplanner.team/stops/N506bqb"], ["http://irail.be/stations/NMBS/008821436", "https://data.delijn.be/stops/104277"], ["https://data.delijn.be/stops/407231", "https://tec.openplanner.team/stops/LORroma1"], ["https://data.delijn.be/stops/303223", "https://mivb.openplanner.team/stops/3815"], ["http://irail.be/stations/NMBS/008891652", "https://data.delijn.be/stops/506149"], ["https://data.delijn.be/stops/305352", "https://tec.openplanner.team/stops/Bwavcin2"], ["https://data.delijn.be/stops/404675", "https://tec.openplanner.team/stops/LVSslin2"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1ne138b"], ["http://irail.be/stations/NMBS/008864311", "https://tec.openplanner.team/stops/X991aaa"], ["https://data.delijn.be/stops/408963", "https://tec.openplanner.team/stops/LWAmouh2"], ["https://data.delijn.be/stops/405440", "https://tec.openplanner.team/stops/LWSstat2"], ["https://data.delijn.be/stops/300979", "https://mivb.openplanner.team/stops/5741"], ["https://data.delijn.be/stops/407232", "https://tec.openplanner.team/stops/LORroma1"], ["https://data.delijn.be/stops/400484", "https://tec.openplanner.team/stops/LRGunio3"], ["https://data.delijn.be/stops/305916", "https://mivb.openplanner.team/stops/4598"], ["http://irail.be/stations/NMBS/008861119", "https://tec.openplanner.team/stops/N501lxa"], ["http://irail.be/stations/NMBS/008883436", "https://tec.openplanner.team/stops/H1sy139b"], ["http://irail.be/stations/NMBS/008821105", "https://data.delijn.be/stops/102214"], ["http://irail.be/stations/NMBS/008821865", "https://data.delijn.be/stops/308499"], ["https://data.delijn.be/stops/303948", "https://tec.openplanner.team/stops/Bbldmun2"], ["https://data.delijn.be/stops/307199", "https://tec.openplanner.team/stops/Bhalker2"], ["https://data.delijn.be/stops/300788", "https://mivb.openplanner.team/stops/1484"], ["https://data.delijn.be/stops/300804", "https://mivb.openplanner.team/stops/7690206"], ["https://data.delijn.be/stops/307693", "https://mivb.openplanner.team/stops/2116B"], ["https://data.delijn.be/stops/400469", "https://tec.openplanner.team/stops/LEMeg--1"], ["http://irail.be/stations/NMBS/008863842", "https://tec.openplanner.team/stops/N261aab"], ["https://data.delijn.be/stops/303831", "https://mivb.openplanner.team/stops/8282"], ["https://data.delijn.be/stops/509317", "https://tec.openplanner.team/stops/H4mo206b"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/Cmlecha1"], ["https://mivb.openplanner.team/stops/1829", "https://tec.openplanner.team/stops/Bwolkra1"], ["https://data.delijn.be/stops/300999", "https://mivb.openplanner.team/stops/6413F"], ["http://irail.be/stations/NMBS/008896503", "https://data.delijn.be/stops/500954"], ["https://data.delijn.be/stops/302848", "https://tec.openplanner.team/stops/Bwaakap2"], ["https://data.delijn.be/stops/505831", "https://tec.openplanner.team/stops/H4po128a"], ["http://irail.be/stations/NMBS/008881190", "https://tec.openplanner.team/stops/H1ju121b"], ["http://irail.be/stations/NMBS/008843406", "https://tec.openplanner.team/stops/NL80aab"], ["https://data.delijn.be/stops/405702", "https://tec.openplanner.team/stops/Llgbatt2"], ["https://data.delijn.be/stops/408863", "https://tec.openplanner.team/stops/LFCscho1"], ["http://irail.be/stations/NMBS/008892452", "https://data.delijn.be/stops/500936"], ["https://data.delijn.be/stops/300273", "https://mivb.openplanner.team/stops/4115"], ["http://irail.be/stations/NMBS/008728600", "https://tec.openplanner.team/stops/H4fg116b"], ["http://irail.be/stations/NMBS/008892734", "https://data.delijn.be/stops/503010"], ["https://data.delijn.be/stops/303230", "https://mivb.openplanner.team/stops/2659"], ["https://data.delijn.be/stops/307832", "https://mivb.openplanner.team/stops/6483B"], ["http://irail.be/stations/NMBS/008821071", "https://data.delijn.be/stops/108970"], ["http://irail.be/stations/NMBS/008871332", "https://tec.openplanner.team/stops/Cobmara2"], ["https://data.delijn.be/stops/408871", "https://tec.openplanner.team/stops/LMgkrui1"], ["https://data.delijn.be/stops/305425", "https://mivb.openplanner.team/stops/9553"], ["https://data.delijn.be/stops/504237", "https://tec.openplanner.team/stops/H4co106a"], ["https://data.delijn.be/stops/408679", "https://tec.openplanner.team/stops/LOTsav-2"], ["https://data.delijn.be/stops/208416", "https://tec.openplanner.team/stops/H4rs117b"], ["http://irail.be/stations/NMBS/008865227", "https://tec.openplanner.team/stops/X898aoa"], ["https://data.delijn.be/stops/305338", "https://tec.openplanner.team/stops/Bwavcin2"], ["https://data.delijn.be/stops/301159", "https://mivb.openplanner.team/stops/5920C"], ["http://irail.be/stations/NMBS/008722326", "https://data.delijn.be/stops/500926"], ["http://irail.be/stations/NMBS/008814431", "https://mivb.openplanner.team/stops/5822F"], ["http://irail.be/stations/NMBS/008832250", "https://data.delijn.be/stops/404236"], ["https://data.delijn.be/stops/408896", "https://tec.openplanner.team/stops/LVu03--1"], ["http://irail.be/stations/NMBS/008822277", "https://data.delijn.be/stops/305825"], ["http://irail.be/stations/NMBS/008832045", "https://data.delijn.be/stops/400421"], ["https://mivb.openplanner.team/stops/4857B", "https://tec.openplanner.team/stops/Buccobs2"], ["https://data.delijn.be/stops/404660", "https://tec.openplanner.team/stops/LJUxhen1"], ["http://irail.be/stations/NMBS/008892403", "https://data.delijn.be/stops/508342"], ["https://mivb.openplanner.team/stops/1962", "https://tec.openplanner.team/stops/Bucccal4"], ["https://data.delijn.be/stops/307832", "https://mivb.openplanner.team/stops/2254"], ["http://irail.be/stations/NMBS/008883006", "https://tec.openplanner.team/stops/H3br100a"], ["http://irail.be/stations/NMBS/008831310", "https://data.delijn.be/stops/408540"], ["http://irail.be/stations/NMBS/008886041", "https://tec.openplanner.team/stops/H5ma185b"], ["http://irail.be/stations/NMBS/008889045", "https://tec.openplanner.team/stops/H4te251b"], ["http://irail.be/stations/NMBS/008891314", "https://data.delijn.be/stops/502489"], ["https://data.delijn.be/stops/301015", "https://mivb.openplanner.team/stops/4159"], ["https://data.delijn.be/stops/301131", "https://mivb.openplanner.team/stops/2763"], ["https://data.delijn.be/stops/305356", "https://tec.openplanner.team/stops/Bwavtpi2"], ["https://data.delijn.be/stops/307816", "https://tec.openplanner.team/stops/Bovesnh2"], ["http://irail.be/stations/NMBS/008893070", "https://data.delijn.be/stops/208696"], ["https://data.delijn.be/stops/307043", "https://mivb.openplanner.team/stops/3309F"], ["https://data.delijn.be/stops/307685", "https://mivb.openplanner.team/stops/1957B"], ["https://mivb.openplanner.team/stops/2109B", "https://tec.openplanner.team/stops/Buccvch1"], ["https://data.delijn.be/stops/408655", "https://tec.openplanner.team/stops/LToluik2"], ["https://data.delijn.be/stops/307557", "https://tec.openplanner.team/stops/Bstecou2"], ["https://data.delijn.be/stops/301413", "https://tec.openplanner.team/stops/Bengvma2"], ["http://irail.be/stations/NMBS/008893567", "https://data.delijn.be/stops/201939"], ["https://data.delijn.be/stops/400481", "https://tec.openplanner.team/stops/LGLc12-3"], ["http://irail.be/stations/NMBS/008822848", "https://data.delijn.be/stops/104578"], ["http://irail.be/stations/NMBS/008814258", "https://tec.openplanner.team/stops/Bblaast1"], ["http://irail.be/stations/NMBS/008895125", "https://data.delijn.be/stops/206262"], ["https://data.delijn.be/stops/307835", "https://mivb.openplanner.team/stops/2017"], ["https://data.delijn.be/stops/301113", "https://tec.openplanner.team/stops/Bucccal3"], ["https://data.delijn.be/stops/306903", "https://tec.openplanner.team/stops/Bgoevli2"], ["http://irail.be/stations/NMBS/008892635", "https://data.delijn.be/stops/209495"], ["https://data.delijn.be/stops/307922", "https://mivb.openplanner.team/stops/2871"], ["https://data.delijn.be/stops/306899", "https://tec.openplanner.team/stops/Bgoegma1"], ["https://data.delijn.be/stops/300542", "https://tec.openplanner.team/stops/Bhmmjco1"], ["https://data.delijn.be/stops/507767", "https://tec.openplanner.team/stops/H4ae102a"], ["http://irail.be/stations/NMBS/008891314", "https://data.delijn.be/stops/507509"], ["https://data.delijn.be/stops/301137", "https://tec.openplanner.team/stops/Buccham1"], ["https://data.delijn.be/stops/403773", "https://tec.openplanner.team/stops/LOeelbe2"], ["https://data.delijn.be/stops/505842", "https://tec.openplanner.team/stops/H4co108a"], ["http://irail.be/stations/NMBS/008865615", "https://tec.openplanner.team/stops/X347aaa"], ["http://irail.be/stations/NMBS/008814340", "https://data.delijn.be/stops/219080"], ["https://data.delijn.be/stops/301014", "https://mivb.openplanner.team/stops/4002B"], ["https://data.delijn.be/stops/308094", "https://tec.openplanner.team/stops/Bpiepnd2"], ["https://data.delijn.be/stops/301080", "https://mivb.openplanner.team/stops/9060"], ["https://data.delijn.be/stops/300335", "https://tec.openplanner.team/stops/Balswsa1"], ["https://data.delijn.be/stops/302823", "https://tec.openplanner.team/stops/Blhugar1"], ["https://data.delijn.be/stops/301137", "https://mivb.openplanner.team/stops/6440"], ["https://data.delijn.be/stops/410141", "https://tec.openplanner.team/stops/Lrcauto2"], ["https://mivb.openplanner.team/stops/2120", "https://tec.openplanner.team/stops/Buccron1"], ["https://data.delijn.be/stops/404663", "https://tec.openplanner.team/stops/LPAmc--1"], ["https://data.delijn.be/stops/401922", "https://tec.openplanner.team/stops/LORcomb1"], ["http://irail.be/stations/NMBS/008864436", "https://tec.openplanner.team/stops/X923ajb"], ["https://mivb.openplanner.team/stops/1718B", "https://tec.openplanner.team/stops/Baudvdr1"], ["https://data.delijn.be/stops/401413", "https://mivb.openplanner.team/stops/5264F"], ["https://data.delijn.be/stops/307641", "https://mivb.openplanner.team/stops/1939"], ["http://irail.be/stations/NMBS/008861127", "https://tec.openplanner.team/stops/N501cxb"], ["http://irail.be/stations/NMBS/008896008", "https://data.delijn.be/stops/508388"], ["https://data.delijn.be/stops/403809", "https://tec.openplanner.team/stops/LOreg--2"], ["http://irail.be/stations/NMBS/008895844", "https://data.delijn.be/stops/206101"], ["https://data.delijn.be/stops/405420", "https://tec.openplanner.team/stops/Blanath2"], ["http://irail.be/stations/NMBS/008821089", "https://data.delijn.be/stops/108875"], ["https://data.delijn.be/stops/308684", "https://mivb.openplanner.team/stops/9600B"], ["https://data.delijn.be/stops/301132", "https://tec.openplanner.team/stops/Buccgob1"], ["https://data.delijn.be/stops/504294", "https://tec.openplanner.team/stops/H4mo144a"], ["http://irail.be/stations/NMBS/008841400", "https://tec.openplanner.team/stops/LWAlong2"], ["https://data.delijn.be/stops/304698", "https://mivb.openplanner.team/stops/5731F"], ["http://irail.be/stations/NMBS/008892635", "https://data.delijn.be/stops/209278"], ["http://irail.be/stations/NMBS/008727100", "https://data.delijn.be/stops/504547"], ["https://data.delijn.be/stops/300774", "https://mivb.openplanner.team/stops/1489"], ["https://data.delijn.be/stops/306399", "https://mivb.openplanner.team/stops/1242"], ["https://data.delijn.be/stops/302238", "https://tec.openplanner.team/stops/Blhurcl1"], ["https://data.delijn.be/stops/304720", "https://mivb.openplanner.team/stops/1315"], ["http://irail.be/stations/NMBS/008831138", "https://data.delijn.be/stops/400867"], ["https://data.delijn.be/stops/305915", "https://mivb.openplanner.team/stops/5102"], ["https://data.delijn.be/stops/509230", "https://tec.openplanner.team/stops/H4co107a"], ["https://data.delijn.be/stops/302226", "https://tec.openplanner.team/stops/Bhoegbr2"], ["https://data.delijn.be/stops/307150", "https://tec.openplanner.team/stops/Bhalomo1"], ["https://data.delijn.be/stops/410152", "https://mivb.openplanner.team/stops/3765"], ["https://data.delijn.be/stops/302794", "https://mivb.openplanner.team/stops/2078"], ["http://irail.be/stations/NMBS/008871662", "https://tec.openplanner.team/stops/H1so139d"], ["https://data.delijn.be/stops/405740", "https://tec.openplanner.team/stops/Llgcamp1"], ["https://data.delijn.be/stops/302407", "https://mivb.openplanner.team/stops/3612F"], ["https://data.delijn.be/stops/304563", "https://tec.openplanner.team/stops/Bhaldbo1"], ["https://data.delijn.be/stops/303226", "https://mivb.openplanner.team/stops/2611"], ["https://data.delijn.be/stops/401411", "https://mivb.openplanner.team/stops/1278"], ["https://data.delijn.be/stops/300759", "https://mivb.openplanner.team/stops/7730602"], ["https://data.delijn.be/stops/304062", "https://tec.openplanner.team/stops/Bwavcin1"], ["https://data.delijn.be/stops/304687", "https://tec.openplanner.team/stops/Bhalkrk1"], ["http://irail.be/stations/NMBS/008889011", "https://tec.openplanner.team/stops/H4mo137b"], ["http://irail.be/stations/NMBS/008811189", "https://data.delijn.be/stops/306383"], ["http://irail.be/stations/NMBS/008871605", "https://tec.openplanner.team/stops/H1er113b"], ["https://data.delijn.be/stops/410145", "https://tec.openplanner.team/stops/Llgcrah2"], ["https://data.delijn.be/stops/405655", "https://tec.openplanner.team/stops/LCAwals2"], ["https://data.delijn.be/stops/208182", "https://tec.openplanner.team/stops/H5rx132b"], ["https://data.delijn.be/stops/302799", "https://mivb.openplanner.team/stops/1661"], ["https://data.delijn.be/stops/509735", "https://tec.openplanner.team/stops/H4do104a"], ["https://data.delijn.be/stops/208745", "https://tec.openplanner.team/stops/H4am101b"], ["https://data.delijn.be/stops/301115", "https://tec.openplanner.team/stops/Buccchu1"], ["https://data.delijn.be/stops/300890", "https://mivb.openplanner.team/stops/2856B"], ["http://irail.be/stations/NMBS/008812146", "https://data.delijn.be/stops/206358"], ["https://mivb.openplanner.team/stops/5460F", "https://tec.openplanner.team/stops/Bixlozo1"], ["https://data.delijn.be/stops/405720", "https://tec.openplanner.team/stops/LlgR-Fr*"], ["https://data.delijn.be/stops/404681", "https://tec.openplanner.team/stops/LWibare1"], ["http://irail.be/stations/NMBS/008821451", "https://data.delijn.be/stops/105864"], ["https://data.delijn.be/stops/301076", "https://mivb.openplanner.team/stops/3288"], ["https://data.delijn.be/stops/307718", "https://tec.openplanner.team/stops/Bwatali1"], ["https://data.delijn.be/stops/303079", "https://tec.openplanner.team/stops/Bleunaa2"], ["http://irail.be/stations/NMBS/008871514", "https://tec.openplanner.team/stops/Cfmwaut2"], ["https://data.delijn.be/stops/408973", "https://tec.openplanner.team/stops/LWAlong2"], ["http://irail.be/stations/NMBS/008881430", "https://tec.openplanner.team/stops/H1vh136b"], ["https://data.delijn.be/stops/305543", "https://tec.openplanner.team/stops/Balswin3"], ["https://data.delijn.be/stops/408854", "https://tec.openplanner.team/stops/LFChuis1"], ["https://data.delijn.be/stops/405738", "https://tec.openplanner.team/stops/Lrclohe1"], ["http://irail.be/stations/NMBS/008833001", "https://data.delijn.be/stops/302944"], ["http://irail.be/stations/NMBS/008400180", "https://data.delijn.be/stops/102754"], ["https://mivb.openplanner.team/stops/1758B", "https://tec.openplanner.team/stops/Baudsju2"], ["http://irail.be/stations/NMBS/008886546", "https://tec.openplanner.team/stops/H1ol140a"], ["http://irail.be/stations/NMBS/008849072", "https://tec.openplanner.team/stops/X790ahb"], ["http://irail.be/stations/NMBS/008881505", "https://tec.openplanner.team/stops/H1qp142b"], ["https://data.delijn.be/stops/505918", "https://tec.openplanner.team/stops/H4co148b"], ["https://data.delijn.be/stops/301051", "https://mivb.openplanner.team/stops/0460150"], ["http://irail.be/stations/NMBS/008812245", "https://data.delijn.be/stops/304797"], ["https://data.delijn.be/stops/304208", "https://tec.openplanner.team/stops/Brsrpch1"], ["https://mivb.openplanner.team/stops/8122", "https://tec.openplanner.team/stops/Bwolrod1"], ["http://irail.be/stations/NMBS/008891652", "https://data.delijn.be/stops/506435"], ["https://data.delijn.be/stops/300831", "https://mivb.openplanner.team/stops/2810"], ["https://data.delijn.be/stops/306398", "https://mivb.openplanner.team/stops/9727"], ["https://data.delijn.be/stops/300761", "https://mivb.openplanner.team/stops/7640111"], ["https://data.delijn.be/stops/304191", "https://mivb.openplanner.team/stops/3328"], ["https://data.delijn.be/stops/300994", "https://mivb.openplanner.team/stops/6304"], ["https://data.delijn.be/stops/301156", "https://mivb.openplanner.team/stops/5424"], ["https://data.delijn.be/stops/307681", "https://mivb.openplanner.team/stops/5916F"], ["https://data.delijn.be/stops/509241", "https://tec.openplanner.team/stops/H4co158a"], ["https://data.delijn.be/stops/305999", "https://tec.openplanner.team/stops/Brsregl4"], ["https://data.delijn.be/stops/300749", "https://mivb.openplanner.team/stops/1257"], ["http://irail.be/stations/NMBS/008811007", "https://mivb.openplanner.team/stops/3107"], ["https://data.delijn.be/stops/509244", "https://tec.openplanner.team/stops/H4co133b"], ["https://data.delijn.be/stops/300952", "https://mivb.openplanner.team/stops/1183"], ["http://irail.be/stations/NMBS/008883121", "https://tec.openplanner.team/stops/H1ca108b"], ["http://irail.be/stations/NMBS/008811304", "https://mivb.openplanner.team/stops/1162C"], ["https://data.delijn.be/stops/308875", "https://tec.openplanner.team/stops/Bbosgar2"], ["https://data.delijn.be/stops/305299", "https://tec.openplanner.team/stops/Bspkbeu2"], ["http://irail.be/stations/NMBS/008814449", "https://tec.openplanner.team/stops/Buccobs2"], ["https://data.delijn.be/stops/307243", "https://mivb.openplanner.team/stops/6862F"], ["http://irail.be/stations/NMBS/008863453", "https://tec.openplanner.team/stops/N511aha"], ["https://data.delijn.be/stops/302872", "https://tec.openplanner.team/stops/Buccham2"], ["https://data.delijn.be/stops/307697", "https://mivb.openplanner.team/stops/2146"], ["https://data.delijn.be/stops/300993", "https://mivb.openplanner.team/stops/6363"], ["https://data.delijn.be/stops/208406", "https://tec.openplanner.team/stops/H5rx129b"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1mj131a"], ["https://data.delijn.be/stops/403785", "https://tec.openplanner.team/stops/LWAhart1"], ["http://irail.be/stations/NMBS/008822251", "https://data.delijn.be/stops/307271"], ["https://data.delijn.be/stops/508228", "https://tec.openplanner.team/stops/H4he101a"], ["http://irail.be/stations/NMBS/008832409", "https://data.delijn.be/stops/107605"], ["https://data.delijn.be/stops/308104", "https://tec.openplanner.team/stops/Bzlucam1"], ["https://data.delijn.be/stops/308854", "https://mivb.openplanner.team/stops/5081F"], ["https://data.delijn.be/stops/503333", "https://tec.openplanner.team/stops/H4do106a"], ["https://data.delijn.be/stops/408983", "https://tec.openplanner.team/stops/LWAwila1"], ["https://data.delijn.be/stops/405737", "https://tec.openplanner.team/stops/Lrcvill1"], ["http://irail.be/stations/NMBS/008886546", "https://tec.openplanner.team/stops/H1le118a"], ["https://data.delijn.be/stops/410137", "https://tec.openplanner.team/stops/Lrc594-2"], ["http://irail.be/stations/NMBS/008864410", "https://tec.openplanner.team/stops/X901bpa"], ["https://data.delijn.be/stops/205982", "https://tec.openplanner.team/stops/H5rx112a"], ["http://irail.be/stations/NMBS/008864337", "https://tec.openplanner.team/stops/X995add"], ["http://irail.be/stations/NMBS/008832375", "https://data.delijn.be/stops/409317"], ["https://data.delijn.be/stops/300987", "https://mivb.openplanner.team/stops/3704"], ["https://data.delijn.be/stops/408874", "https://tec.openplanner.team/stops/LFMkrin2"], ["https://data.delijn.be/stops/400650", "https://tec.openplanner.team/stops/LHgtomb1"], ["http://irail.be/stations/NMBS/008832375", "https://data.delijn.be/stops/403289"], ["https://data.delijn.be/stops/405711", "https://tec.openplanner.team/stops/Llgcime1"], ["http://irail.be/stations/NMBS/008772319", "https://tec.openplanner.team/stops/X611aca"], ["http://irail.be/stations/NMBS/008895711", "https://data.delijn.be/stops/206775"], ["https://data.delijn.be/stops/408894", "https://tec.openplanner.team/stops/LWHkerk2"], ["https://data.delijn.be/stops/401402", "https://mivb.openplanner.team/stops/5044"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/109187"], ["https://mivb.openplanner.team/stops/5824", "https://tec.openplanner.team/stops/Bucccre2"], ["http://irail.be/stations/NMBS/008892692", "https://data.delijn.be/stops/209209"], ["http://irail.be/stations/NMBS/008814332", "https://data.delijn.be/stops/306065"], ["https://data.delijn.be/stops/300748", "https://mivb.openplanner.team/stops/7"], ["https://data.delijn.be/stops/307686", "https://mivb.openplanner.team/stops/1957B"], ["http://irail.be/stations/NMBS/008822608", "https://data.delijn.be/stops/104572"], ["https://data.delijn.be/stops/504292", "https://tec.openplanner.team/stops/H4mo188a"], ["https://data.delijn.be/stops/408573", "https://tec.openplanner.team/stops/LRUhama2"], ["http://irail.be/stations/NMBS/008831765", "https://data.delijn.be/stops/409631"], ["https://data.delijn.be/stops/408804", "https://tec.openplanner.team/stops/LVIhv--2"], ["http://irail.be/stations/NMBS/008896412", "https://tec.openplanner.team/stops/H4co134a"], ["http://irail.be/stations/NMBS/008814001", "https://mivb.openplanner.team/stops/0350240"], ["https://data.delijn.be/stops/302854", "https://tec.openplanner.team/stops/Bwaanwi1"], ["http://irail.be/stations/NMBS/008895802", "https://data.delijn.be/stops/306724"], ["https://data.delijn.be/stops/208184", "https://tec.openplanner.team/stops/H5rx104b"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N349ada"], ["https://data.delijn.be/stops/206784", "https://tec.openplanner.team/stops/H1gy115a"], ["https://data.delijn.be/stops/408926", "https://tec.openplanner.team/stops/LSInd--2"], ["https://data.delijn.be/stops/400490", "https://tec.openplanner.team/stops/LBSkann2"], ["http://irail.be/stations/NMBS/008833134", "https://data.delijn.be/stops/305523"], ["https://data.delijn.be/stops/304458", "https://tec.openplanner.team/stops/Balswin2"], ["https://data.delijn.be/stops/407211", "https://tec.openplanner.team/stops/LHScite1"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/503461"], ["https://data.delijn.be/stops/308823", "https://tec.openplanner.team/stops/LBegare2"], ["https://data.delijn.be/stops/300334", "https://tec.openplanner.team/stops/Balswsa1"], ["http://irail.be/stations/NMBS/008893518", "https://data.delijn.be/stops/206880"], ["http://irail.be/stations/NMBS/008833001", "https://data.delijn.be/stops/303124"], ["https://data.delijn.be/stops/303956", "https://tec.openplanner.team/stops/Bbldass2"], ["http://irail.be/stations/NMBS/008871852", "https://tec.openplanner.team/stops/Cmastma2"], ["http://irail.be/stations/NMBS/008893252", "https://data.delijn.be/stops/208889"], ["http://irail.be/stations/NMBS/008863115", "https://tec.openplanner.team/stops/N501dwb"], ["http://irail.be/stations/NMBS/008822343", "https://data.delijn.be/stops/108883"], ["https://data.delijn.be/stops/308645", "https://tec.openplanner.team/stops/Bovepla1"], ["https://data.delijn.be/stops/408493", "https://tec.openplanner.team/stops/LWAathe1"], ["http://irail.be/stations/NMBS/008200101", "https://tec.openplanner.team/stops/X685agb"], ["https://data.delijn.be/stops/302428", "https://tec.openplanner.team/stops/Bjodeco3"], ["https://data.delijn.be/stops/304641", "https://mivb.openplanner.team/stops/1680F"], ["https://data.delijn.be/stops/405459", "https://tec.openplanner.team/stops/LWHtrui1"], ["http://irail.be/stations/NMBS/008821907", "https://data.delijn.be/stops/109804"], ["https://data.delijn.be/stops/209838", "https://tec.openplanner.team/stops/H4ss157a"], ["https://data.delijn.be/stops/305424", "https://mivb.openplanner.team/stops/7501"], ["https://data.delijn.be/stops/504239", "https://tec.openplanner.team/stops/H4co106d"], ["http://irail.be/stations/NMBS/008886058", "https://tec.openplanner.team/stops/H5ar102a"], ["https://data.delijn.be/stops/407231", "https://tec.openplanner.team/stops/LLGramk1"], ["https://data.delijn.be/stops/305508", "https://mivb.openplanner.team/stops/1380"], ["https://data.delijn.be/stops/209188", "https://tec.openplanner.team/stops/H5rx137a"], ["http://irail.be/stations/NMBS/008811288", "https://data.delijn.be/stops/302014"], ["https://data.delijn.be/stops/208760", "https://tec.openplanner.team/stops/H5rx102a"], ["https://data.delijn.be/stops/301057", "https://mivb.openplanner.team/stops/1056"], ["https://data.delijn.be/stops/304599", "https://mivb.openplanner.team/stops/0120126"], ["https://data.delijn.be/stops/300859", "https://mivb.openplanner.team/stops/1030"], ["http://irail.be/stations/NMBS/008842689", "https://tec.openplanner.team/stops/LPOeg--1"], ["https://data.delijn.be/stops/300994", "https://mivb.openplanner.team/stops/6419F"], ["https://data.delijn.be/stops/307581", "https://tec.openplanner.team/stops/Bbghsar2"], ["http://irail.be/stations/NMBS/008814159", "https://mivb.openplanner.team/stops/1953"], ["https://data.delijn.be/stops/400469", "https://tec.openplanner.team/stops/LEMeg--2"], ["https://data.delijn.be/stops/304535", "https://mivb.openplanner.team/stops/5504"], ["https://data.delijn.be/stops/300336", "https://tec.openplanner.team/stops/Balswin2"], ["https://data.delijn.be/stops/507959", "https://tec.openplanner.team/stops/H4or116a"], ["http://irail.be/stations/NMBS/008822426", "https://data.delijn.be/stops/105136"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N562bfa"], ["http://irail.be/stations/NMBS/008861440", "https://tec.openplanner.team/stops/N527aga"], ["https://data.delijn.be/stops/300948", "https://mivb.openplanner.team/stops/4071"], ["https://data.delijn.be/stops/307832", "https://mivb.openplanner.team/stops/6810"], ["https://mivb.openplanner.team/stops/1716", "https://tec.openplanner.team/stops/Bixefra1"], ["http://irail.be/stations/NMBS/008814357", "https://data.delijn.be/stops/300023"], ["https://data.delijn.be/stops/401413", "https://mivb.openplanner.team/stops/4306"], ["http://irail.be/stations/NMBS/008841400", "https://data.delijn.be/stops/408977"], ["http://irail.be/stations/NMBS/008728673", "https://tec.openplanner.team/stops/H4rx175a"], ["https://data.delijn.be/stops/408833", "https://tec.openplanner.team/stops/LMgwith1"], ["http://irail.be/stations/NMBS/008842002", "https://tec.openplanner.team/stops/Lagpaix2"], ["https://mivb.openplanner.team/stops/2150", "https://tec.openplanner.team/stops/Buccrac2"], ["http://irail.be/stations/NMBS/008832375", "https://data.delijn.be/stops/403250"], ["https://data.delijn.be/stops/307650", "https://tec.openplanner.team/stops/Brsgter1"], ["http://irail.be/stations/NMBS/008844404", "https://tec.openplanner.team/stops/LSPastr2"], ["https://data.delijn.be/stops/300781", "https://mivb.openplanner.team/stops/2514"], ["https://data.delijn.be/stops/305233", "https://mivb.openplanner.team/stops/9605"], ["http://irail.be/stations/NMBS/008864451", "https://tec.openplanner.team/stops/X982ata"], ["https://data.delijn.be/stops/304912", "https://tec.openplanner.team/stops/Bovelge1"], ["https://data.delijn.be/stops/400453", "https://tec.openplanner.team/stops/LBPboir2"], ["http://irail.be/stations/NMBS/008864931", "https://tec.openplanner.team/stops/N236afb"], ["https://mivb.openplanner.team/stops/1983", "https://tec.openplanner.team/stops/Bixlqll1"], ["http://irail.be/stations/NMBS/008884350", "https://tec.openplanner.team/stops/H1tl121b"], ["https://data.delijn.be/stops/301053", "https://mivb.openplanner.team/stops/4253"], ["https://data.delijn.be/stops/509299", "https://tec.openplanner.team/stops/H4mo192a"], ["https://data.delijn.be/stops/408890", "https://tec.openplanner.team/stops/LFPkape4"], ["http://irail.be/stations/NMBS/008811247", "https://data.delijn.be/stops/305558"], ["https://data.delijn.be/stops/300951", "https://mivb.openplanner.team/stops/5108"], ["http://irail.be/stations/NMBS/008884335", "https://tec.openplanner.team/stops/H1qv112b"], ["http://irail.be/stations/NMBS/008833159", "https://data.delijn.be/stops/306293"], ["http://irail.be/stations/NMBS/008832235", "https://data.delijn.be/stops/403082"], ["https://data.delijn.be/stops/308721", "https://tec.openplanner.team/stops/Bgoevli1"], ["https://data.delijn.be/stops/307642", "https://mivb.openplanner.team/stops/1954"], ["http://irail.be/stations/NMBS/008871852", "https://tec.openplanner.team/stops/Cmamonu2"], ["http://irail.be/stations/NMBS/008892650", "https://data.delijn.be/stops/201356"], ["https://data.delijn.be/stops/408428", "https://tec.openplanner.team/stops/LRUhama1"], ["https://data.delijn.be/stops/302244", "https://tec.openplanner.team/stops/Bhoegbr2"], ["https://data.delijn.be/stops/307533", "https://tec.openplanner.team/stops/H1mk112b"], ["http://irail.be/stations/NMBS/008833266", "https://data.delijn.be/stops/307501"], ["http://irail.be/stations/NMBS/008841434", "https://tec.openplanner.team/stops/LPUlecl2"], ["https://data.delijn.be/stops/308094", "https://tec.openplanner.team/stops/Bgoestu2"], ["http://irail.be/stations/NMBS/008892643", "https://data.delijn.be/stops/209737"], ["http://irail.be/stations/NMBS/008822228", "https://data.delijn.be/stops/109505"], ["http://irail.be/stations/NMBS/008863404", "https://tec.openplanner.team/stops/N506bna"], ["https://data.delijn.be/stops/305501", "https://mivb.openplanner.team/stops/3328"], ["https://data.delijn.be/stops/301085", "https://mivb.openplanner.team/stops/2028"], ["https://data.delijn.be/stops/306001", "https://mivb.openplanner.team/stops/1865"], ["http://irail.be/stations/NMBS/008821964", "https://data.delijn.be/stops/109231"], ["http://irail.be/stations/NMBS/008891140", "https://data.delijn.be/stops/211005"], ["http://irail.be/stations/NMBS/008865649", "https://tec.openplanner.team/stops/N343aia"], ["http://irail.be/stations/NMBS/008842853", "https://tec.openplanner.team/stops/X982ahb"], ["https://data.delijn.be/stops/400487", "https://tec.openplanner.team/stops/LRGmoul1"], ["https://data.delijn.be/stops/300760", "https://mivb.openplanner.team/stops/1255"], ["https://data.delijn.be/stops/408924", "https://tec.openplanner.team/stops/LTEkl121"], ["https://data.delijn.be/stops/407230", "https://tec.openplanner.team/stops/LORdtec*"], ["http://irail.be/stations/NMBS/008882206", "https://tec.openplanner.team/stops/H2hl113a"], ["https://data.delijn.be/stops/509455", "https://tec.openplanner.team/stops/H4tg162a"], ["https://data.delijn.be/stops/302446", "https://tec.openplanner.team/stops/Bzlufbo2"], ["http://irail.be/stations/NMBS/008844347", "https://tec.openplanner.team/stops/LSPastr2"], ["http://irail.be/stations/NMBS/008814159", "https://mivb.openplanner.team/stops/2157"], ["http://irail.be/stations/NMBS/008894714", "https://data.delijn.be/stops/204705"], ["https://data.delijn.be/stops/305298", "https://tec.openplanner.team/stops/H1mk110a"], ["https://data.delijn.be/stops/300788", "https://mivb.openplanner.team/stops/1483"], ["https://data.delijn.be/stops/300982", "https://mivb.openplanner.team/stops/5317G"], ["http://irail.be/stations/NMBS/008894748", "https://data.delijn.be/stops/205761"], ["https://data.delijn.be/stops/406318", "https://tec.openplanner.team/stops/LMalamb4"], ["http://irail.be/stations/NMBS/008821535", "https://data.delijn.be/stops/109976"], ["http://irail.be/stations/NMBS/008728654", "https://data.delijn.be/stops/504565"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Clbpepi2"], ["http://irail.be/stations/NMBS/008010316", "https://data.delijn.be/stops/404772"], ["https://data.delijn.be/stops/301356", "https://tec.openplanner.team/stops/Bhalalb2"], ["https://data.delijn.be/stops/301711", "https://mivb.openplanner.team/stops/9632"], ["http://irail.be/stations/NMBS/008200132", "https://tec.openplanner.team/stops/X791aab"], ["https://data.delijn.be/stops/302830", "https://tec.openplanner.team/stops/Blaneli1"], ["https://data.delijn.be/stops/504296", "https://tec.openplanner.team/stops/H4mo136a"], ["https://data.delijn.be/stops/302402", "https://mivb.openplanner.team/stops/7670208"], ["http://irail.be/stations/NMBS/008882230", "https://tec.openplanner.team/stops/H2mo127d"], ["https://data.delijn.be/stops/509451", "https://tec.openplanner.team/stops/H4mo133a"], ["http://irail.be/stations/NMBS/008871175", "https://tec.openplanner.team/stops/Cjxegli1"], ["https://mivb.openplanner.team/stops/5032B", "https://tec.openplanner.team/stops/Buccvoi3"], ["http://irail.be/stations/NMBS/008731388", "https://tec.openplanner.team/stops/H1ro133a"], ["https://data.delijn.be/stops/404662", "https://tec.openplanner.team/stops/LPAbrun1"], ["https://data.delijn.be/stops/504000", "https://tec.openplanner.team/stops/H4eh104a"], ["http://irail.be/stations/NMBS/008821121", "https://data.delijn.be/stops/101880"], ["https://data.delijn.be/stops/300920", "https://mivb.openplanner.team/stops/2902"], ["https://data.delijn.be/stops/304443", "https://tec.openplanner.team/stops/Brsgtou2"], ["http://irail.be/stations/NMBS/008871225", "https://tec.openplanner.team/stops/Ccomott1"], ["http://irail.be/stations/NMBS/008812153", "https://data.delijn.be/stops/207718"], ["https://data.delijn.be/stops/301997", "https://tec.openplanner.team/stops/Blemwro1"], ["https://mivb.openplanner.team/stops/6931B", "https://tec.openplanner.team/stops/Buccobs2"], ["http://irail.be/stations/NMBS/008811726", "https://tec.openplanner.team/stops/Bwavlep1"], ["https://data.delijn.be/stops/303148", "https://tec.openplanner.team/stops/Bleugar1"], ["http://irail.be/stations/NMBS/008844628", "https://tec.openplanner.team/stops/LeUbahn3"], ["http://irail.be/stations/NMBS/008842705", "https://tec.openplanner.team/stops/LCPpech2"], ["http://irail.be/stations/NMBS/008842051", "https://tec.openplanner.team/stops/Lcapisc1"], ["https://data.delijn.be/stops/301923", "https://mivb.openplanner.team/stops/2027"], ["http://irail.be/stations/NMBS/008822608", "https://data.delijn.be/stops/104468"], ["https://data.delijn.be/stops/208767", "https://tec.openplanner.team/stops/H4wt159a"], ["http://irail.be/stations/NMBS/008881315", "https://tec.openplanner.team/stops/H1ni322a"], ["https://mivb.openplanner.team/stops/1920", "https://tec.openplanner.team/stops/Buccdho2"], ["https://mivb.openplanner.team/stops/1751", "https://tec.openplanner.team/stops/Baudwav1"], ["https://mivb.openplanner.team/stops/1986", "https://tec.openplanner.team/stops/Bixleix2"], ["https://data.delijn.be/stops/302871", "https://tec.openplanner.team/stops/Buccrac1"], ["https://data.delijn.be/stops/404661", "https://tec.openplanner.team/stops/LPAchpl2"], ["https://data.delijn.be/stops/405351", "https://tec.openplanner.team/stops/LLaover3"], ["https://data.delijn.be/stops/405740", "https://tec.openplanner.team/stops/Llgpire2"], ["https://data.delijn.be/stops/408858", "https://tec.openplanner.team/stops/LFCotte2"], ["https://data.delijn.be/stops/308814", "https://tec.openplanner.team/stops/Bjodsje2"], ["http://irail.be/stations/NMBS/008722326", "https://tec.openplanner.team/stops/H4co142a"], ["http://irail.be/stations/NMBS/008872520", "https://tec.openplanner.team/stops/NC12aab"], ["https://data.delijn.be/stops/301059", "https://mivb.openplanner.team/stops/4212B"], ["http://irail.be/stations/NMBS/008884855", "https://tec.openplanner.team/stops/H5pe137a"], ["https://data.delijn.be/stops/503572", "https://tec.openplanner.team/stops/H4mn100d"], ["https://data.delijn.be/stops/208190", "https://tec.openplanner.team/stops/H5rx127b"], ["https://data.delijn.be/stops/300817", "https://mivb.openplanner.team/stops/3221"], ["https://data.delijn.be/stops/407203", "https://tec.openplanner.team/stops/LHThall2"], ["https://data.delijn.be/stops/300964", "https://mivb.openplanner.team/stops/1813"], ["https://data.delijn.be/stops/303376", "https://mivb.openplanner.team/stops/1825"], ["http://irail.be/stations/NMBS/008866142", "https://tec.openplanner.team/stops/X636aba"], ["https://data.delijn.be/stops/208758", "https://tec.openplanner.team/stops/H5rx104b"], ["https://data.delijn.be/stops/304431", "https://tec.openplanner.team/stops/Brsggea1"], ["http://irail.be/stations/NMBS/008822533", "https://data.delijn.be/stops/301857"], ["http://irail.be/stations/NMBS/008821006", "https://data.delijn.be/stops/101700"], ["http://irail.be/stations/NMBS/008871514", "https://tec.openplanner.team/stops/Cfmcent1"], ["http://irail.be/stations/NMBS/008884640", "https://tec.openplanner.team/stops/H1hc127c"], ["https://data.delijn.be/stops/301039", "https://mivb.openplanner.team/stops/7740201"], ["https://mivb.openplanner.team/stops/2142", "https://tec.openplanner.team/stops/Buccfja2"], ["http://irail.be/stations/NMBS/008200520", "https://tec.openplanner.team/stops/X626afb"], ["https://mivb.openplanner.team/stops/2043", "https://tec.openplanner.team/stops/Bwolvan1"], ["https://data.delijn.be/stops/405462", "https://tec.openplanner.team/stops/LWHwaas3"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2mo122d"], ["https://data.delijn.be/stops/306284", "https://mivb.openplanner.team/stops/2905"], ["https://data.delijn.be/stops/304027", "https://tec.openplanner.team/stops/Bovejei1"], ["http://irail.be/stations/NMBS/008844206", "https://tec.openplanner.team/stops/Lpeprev1"], ["https://data.delijn.be/stops/300894", "https://mivb.openplanner.team/stops/48"], ["https://data.delijn.be/stops/301117", "https://mivb.openplanner.team/stops/5255"], ["https://data.delijn.be/stops/300016", "https://tec.openplanner.team/stops/Buccvoi1"], ["http://irail.be/stations/NMBS/008891611", "https://data.delijn.be/stops/500006"], ["https://data.delijn.be/stops/303832", "https://mivb.openplanner.team/stops/8282"], ["https://data.delijn.be/stops/300986", "https://mivb.openplanner.team/stops/5714"], ["https://mivb.openplanner.team/stops/1133", "https://tec.openplanner.team/stops/Bbxlple2"], ["http://irail.be/stations/NMBS/008821832", "https://data.delijn.be/stops/107959"], ["http://irail.be/stations/NMBS/008871688", "https://tec.openplanner.team/stops/H1sa112a"], ["http://irail.be/stations/NMBS/008893120", "https://data.delijn.be/stops/200137"], ["http://irail.be/stations/NMBS/008814159", "https://mivb.openplanner.team/stops/2112"], ["http://irail.be/stations/NMBS/008861549", "https://tec.openplanner.team/stops/Bmsgeco2"], ["https://data.delijn.be/stops/304039", "https://tec.openplanner.team/stops/Bovesol2"], ["http://irail.be/stations/NMBS/008842838", "https://tec.openplanner.team/stops/LCTpt--1"], ["https://data.delijn.be/stops/301924", "https://mivb.openplanner.team/stops/2025"], ["https://data.delijn.be/stops/300810", "https://mivb.openplanner.team/stops/4217"], ["http://irail.be/stations/NMBS/008833670", "https://tec.openplanner.team/stops/Bracgar2"], ["https://data.delijn.be/stops/400480", "https://tec.openplanner.team/stops/LGLc50-3"], ["http://irail.be/stations/NMBS/008895760", "https://data.delijn.be/stops/207012"], ["https://data.delijn.be/stops/401922", "https://tec.openplanner.team/stops/LOrchau2"], ["https://data.delijn.be/stops/303613", "https://tec.openplanner.team/stops/Bhalsro2"], ["http://irail.be/stations/NMBS/008864436", "https://tec.openplanner.team/stops/X923ala"], ["https://mivb.openplanner.team/stops/1929", "https://tec.openplanner.team/stops/Bucceng1"], ["https://data.delijn.be/stops/408922", "https://tec.openplanner.team/stops/LSIvieu2"], ["https://data.delijn.be/stops/407208", "https://tec.openplanner.team/stops/LHTbonn1"], ["https://data.delijn.be/stops/408585", "https://tec.openplanner.team/stops/LCRchpl1"], ["http://irail.be/stations/NMBS/008400424", "https://data.delijn.be/stops/410395"], ["https://data.delijn.be/stops/300987", "https://mivb.openplanner.team/stops/3905"], ["https://data.delijn.be/stops/305148", "https://tec.openplanner.team/stops/Btieast1"], ["http://irail.be/stations/NMBS/008844347", "https://tec.openplanner.team/stops/Lhuferm1"], ["http://irail.be/stations/NMBS/008822459", "https://data.delijn.be/stops/300680"], ["https://data.delijn.be/stops/300802", "https://mivb.openplanner.team/stops/1475"], ["https://data.delijn.be/stops/301032", "https://tec.openplanner.team/stops/Bsgimor1"], ["https://data.delijn.be/stops/408811", "https://tec.openplanner.team/stops/LVIcarm4"], ["https://data.delijn.be/stops/509653", "https://tec.openplanner.team/stops/H4co151a"], ["https://data.delijn.be/stops/302418", "https://tec.openplanner.team/stops/Bjodrdp2"], ["https://data.delijn.be/stops/304203", "https://tec.openplanner.team/stops/Brsregl3"], ["https://data.delijn.be/stops/301017", "https://mivb.openplanner.team/stops/1310"], ["https://data.delijn.be/stops/407213", "https://tec.openplanner.team/stops/LHSheur2"], ["http://irail.be/stations/NMBS/008895836", "https://data.delijn.be/stops/304889"], ["http://irail.be/stations/NMBS/008892601", "https://data.delijn.be/stops/208120"], ["https://data.delijn.be/stops/508229", "https://tec.openplanner.team/stops/H4po126a"], ["https://data.delijn.be/stops/302808", "https://mivb.openplanner.team/stops/1635"], ["http://irail.be/stations/NMBS/008874609", "https://tec.openplanner.team/stops/N543cca"], ["http://irail.be/stations/NMBS/008842655", "https://tec.openplanner.team/stops/LESecco2"], ["http://irail.be/stations/NMBS/008812062", "https://data.delijn.be/stops/300291"], ["http://irail.be/stations/NMBS/008811676", "https://tec.openplanner.team/stops/Bllngle1"], ["http://irail.be/stations/NMBS/008886041", "https://tec.openplanner.team/stops/H5ma181a"], ["http://irail.be/stations/NMBS/008872413", "https://tec.openplanner.team/stops/Bflegar5"], ["http://irail.be/stations/NMBS/008894508", "https://data.delijn.be/stops/205064"], ["https://data.delijn.be/stops/403773", "https://tec.openplanner.team/stops/LLnlimb1"], ["http://irail.be/stations/NMBS/008833159", "https://data.delijn.be/stops/306188"], ["http://irail.be/stations/NMBS/008895760", "https://data.delijn.be/stops/206265"], ["https://data.delijn.be/stops/504383", "https://tec.openplanner.team/stops/H4pl121b"], ["http://irail.be/stations/NMBS/008892908", "https://data.delijn.be/stops/207766"], ["https://data.delijn.be/stops/300974", "https://mivb.openplanner.team/stops/1751"], ["http://irail.be/stations/NMBS/008831310", "https://data.delijn.be/stops/405445"], ["http://irail.be/stations/NMBS/008891702", "https://data.delijn.be/stops/501292"], ["http://irail.be/stations/NMBS/008822251", "https://data.delijn.be/stops/308409"], ["http://irail.be/stations/NMBS/008821907", "https://data.delijn.be/stops/102109"], ["http://irail.be/stations/NMBS/008814209", "https://tec.openplanner.team/stops/Bnivga51"], ["https://data.delijn.be/stops/305244", "https://mivb.openplanner.team/stops/1143"], ["http://irail.be/stations/NMBS/008811718", "https://tec.openplanner.team/stops/Bbgewal1"], ["http://irail.be/stations/NMBS/008814258", "https://tec.openplanner.team/stops/Bblacim2"], ["https://data.delijn.be/stops/307160", "https://tec.openplanner.team/stops/Bhaless1"], ["https://data.delijn.be/stops/300742", "https://mivb.openplanner.team/stops/1255"], ["https://mivb.openplanner.team/stops/1586", "https://tec.openplanner.team/stops/Bwolkra1"], ["https://data.delijn.be/stops/300774", "https://mivb.openplanner.team/stops/2319"], ["http://irail.be/stations/NMBS/008812047", "https://mivb.openplanner.team/stops/1768"], ["https://data.delijn.be/stops/301074", "https://mivb.openplanner.team/stops/3219"], ["http://irail.be/stations/NMBS/008891140", "https://data.delijn.be/stops/203301"], ["https://mivb.openplanner.team/stops/2727", "https://tec.openplanner.team/stops/Baudulb2"], ["https://data.delijn.be/stops/308676", "https://mivb.openplanner.team/stops/0536"], ["http://irail.be/stations/NMBS/008895430", "https://data.delijn.be/stops/206537"], ["https://data.delijn.be/stops/300885", "https://mivb.openplanner.team/stops/7830252"], ["http://irail.be/stations/NMBS/008813045", "https://data.delijn.be/stops/308818"], ["https://data.delijn.be/stops/303659", "https://tec.openplanner.team/stops/Blkbavo1"], ["https://data.delijn.be/stops/509135", "https://tec.openplanner.team/stops/H4co151a"], ["https://data.delijn.be/stops/307043", "https://mivb.openplanner.team/stops/3164"], ["http://irail.be/stations/NMBS/008866605", "https://tec.openplanner.team/stops/X615afb"], ["https://data.delijn.be/stops/306000", "https://tec.openplanner.team/stops/Brsregl4"], ["https://data.delijn.be/stops/403701", "https://tec.openplanner.team/stops/LGrchpl2"], ["http://irail.be/stations/NMBS/008896370", "https://data.delijn.be/stops/504756"], ["http://irail.be/stations/NMBS/008873320", "https://tec.openplanner.team/stops/N161aea"], ["https://data.delijn.be/stops/408892", "https://tec.openplanner.team/stops/LFMstat1"], ["https://data.delijn.be/stops/300924", "https://mivb.openplanner.team/stops/3957"], ["http://irail.be/stations/NMBS/008883121", "https://tec.openplanner.team/stops/H1ca100b"], ["https://data.delijn.be/stops/304191", "https://mivb.openplanner.team/stops/3017"], ["https://data.delijn.be/stops/407721", "https://tec.openplanner.team/stops/LMazonn4"], ["http://irail.be/stations/NMBS/008861416", "https://tec.openplanner.team/stops/N541aca"], ["https://data.delijn.be/stops/504316", "https://tec.openplanner.team/stops/H4mo159a"], ["http://irail.be/stations/NMBS/008863354", "https://tec.openplanner.team/stops/N501knb"], ["https://data.delijn.be/stops/307243", "https://mivb.openplanner.team/stops/6806"], ["https://data.delijn.be/stops/404653", "https://tec.openplanner.team/stops/Llaacca2"], ["https://data.delijn.be/stops/306117", "https://mivb.openplanner.team/stops/1203"], ["https://data.delijn.be/stops/301041", "https://mivb.openplanner.team/stops/5074F"], ["https://data.delijn.be/stops/300324", "https://tec.openplanner.team/stops/Balsnie2"], ["http://irail.be/stations/NMBS/008811759", "https://tec.openplanner.team/stops/Barcsta1"], ["https://data.delijn.be/stops/301061", "https://mivb.openplanner.team/stops/8462"], ["https://data.delijn.be/stops/307968", "https://tec.openplanner.team/stops/Bbgever1"], ["http://irail.be/stations/NMBS/008861135", "https://tec.openplanner.team/stops/N551afa"], ["https://data.delijn.be/stops/301301", "https://mivb.openplanner.team/stops/1261"], ["https://data.delijn.be/stops/308046", "https://tec.openplanner.team/stops/Bove4ko1"], ["http://irail.be/stations/NMBS/008871837", "https://tec.openplanner.team/stops/Cgzdeve1"], ["http://irail.be/stations/NMBS/008866845", "https://tec.openplanner.team/stops/X640ada"], ["https://data.delijn.be/stops/301022", "https://mivb.openplanner.team/stops/1209"], ["https://data.delijn.be/stops/300987", "https://mivb.openplanner.team/stops/3763"], ["http://irail.be/stations/NMBS/008822269", "https://data.delijn.be/stops/305608"], ["https://data.delijn.be/stops/305466", "https://mivb.openplanner.team/stops/1801"], ["http://irail.be/stations/NMBS/008895836", "https://data.delijn.be/stops/306714"], ["https://mivb.openplanner.team/stops/5611", "https://tec.openplanner.team/stops/Bixlfla2"], ["http://irail.be/stations/NMBS/008871712", "https://tec.openplanner.team/stops/Clbhvil1"], ["https://data.delijn.be/stops/308824", "https://tec.openplanner.team/stops/Blanove2"], ["https://data.delijn.be/stops/305236", "https://tec.openplanner.team/stops/Bmrqgar1"], ["https://data.delijn.be/stops/304441", "https://tec.openplanner.team/stops/Brsgges1"], ["http://irail.be/stations/NMBS/008892304", "https://data.delijn.be/stops/504510"], ["https://data.delijn.be/stops/408887", "https://tec.openplanner.team/stops/LVu40--2"], ["http://irail.be/stations/NMBS/008821634", "https://data.delijn.be/stops/101597"], ["https://data.delijn.be/stops/301022", "https://mivb.openplanner.team/stops/5105F"], ["https://data.delijn.be/stops/305296", "https://mivb.openplanner.team/stops/9606"], ["https://data.delijn.be/stops/400458", "https://tec.openplanner.team/stops/LEBmoul2"], ["https://data.delijn.be/stops/400452", "https://tec.openplanner.team/stops/LBPboir2"], ["https://data.delijn.be/stops/307637", "https://mivb.openplanner.team/stops/1931"], ["https://data.delijn.be/stops/305343", "https://tec.openplanner.team/stops/Bbgevil2"], ["http://irail.be/stations/NMBS/008822277", "https://data.delijn.be/stops/305610"], ["http://irail.be/stations/NMBS/008863560", "https://tec.openplanner.team/stops/N540aia"], ["http://irail.be/stations/NMBS/008811262", "https://data.delijn.be/stops/302710"], ["http://irail.be/stations/NMBS/008895638", "https://data.delijn.be/stops/307298"], ["https://data.delijn.be/stops/300875", "https://mivb.openplanner.team/stops/8804"], ["https://data.delijn.be/stops/300390", "https://mivb.openplanner.team/stops/9656"], ["http://irail.be/stations/NMBS/008869054", "https://tec.openplanner.team/stops/X687aba"], ["http://irail.be/stations/NMBS/008896412", "https://tec.openplanner.team/stops/H4co157a"], ["http://irail.be/stations/NMBS/008895836", "https://data.delijn.be/stops/300843"], ["http://irail.be/stations/NMBS/008895570", "https://data.delijn.be/stops/208059"], ["http://irail.be/stations/NMBS/008831112", "https://data.delijn.be/stops/401503"], ["http://irail.be/stations/NMBS/008812005", "https://mivb.openplanner.team/stops/6411"], ["http://irail.be/stations/NMBS/008881562", "https://tec.openplanner.team/stops/H1ge117b"], ["https://data.delijn.be/stops/405361", "https://tec.openplanner.team/stops/Blankal3"], ["https://data.delijn.be/stops/307966", "https://tec.openplanner.team/stops/Bwavcin1"], ["https://data.delijn.be/stops/504380", "https://tec.openplanner.team/stops/H4pl114b"], ["http://irail.be/stations/NMBS/008814142", "https://mivb.openplanner.team/stops/1936"], ["https://data.delijn.be/stops/300891", "https://mivb.openplanner.team/stops/2856B"], ["https://data.delijn.be/stops/300623", "https://tec.openplanner.team/stops/Bbealou2"], ["http://irail.be/stations/NMBS/008832433", "https://data.delijn.be/stops/401932"], ["http://irail.be/stations/NMBS/008841459", "https://tec.openplanner.team/stops/LMOstat2"], ["https://data.delijn.be/stops/209597", "https://tec.openplanner.team/stops/H1en104a"], ["https://data.delijn.be/stops/307209", "https://tec.openplanner.team/stops/Bcbqcha2"], ["http://irail.be/stations/NMBS/008844420", "https://tec.openplanner.team/stops/LSPec--2"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1ca105a"], ["http://irail.be/stations/NMBS/008881190", "https://tec.openplanner.team/stops/H1et100a"], ["http://irail.be/stations/NMBS/008400131", "https://data.delijn.be/stops/104338"], ["https://data.delijn.be/stops/400493", "https://tec.openplanner.team/stops/LBStong1"], ["https://data.delijn.be/stops/407772", "https://tec.openplanner.team/stops/LTEkl162"], ["https://data.delijn.be/stops/208742", "https://tec.openplanner.team/stops/H4am100a"], ["https://data.delijn.be/stops/301047", "https://mivb.openplanner.team/stops/4074B"], ["http://irail.be/stations/NMBS/008400280", "https://data.delijn.be/stops/505781"], ["http://irail.be/stations/NMBS/008811460", "https://tec.openplanner.team/stops/Bhoeboo1"], ["http://irail.be/stations/NMBS/008812062", "https://data.delijn.be/stops/307478"], ["https://data.delijn.be/stops/503330", "https://tec.openplanner.team/stops/H4do202a"], ["https://data.delijn.be/stops/503032", "https://tec.openplanner.team/stops/H4ae100b"], ["https://data.delijn.be/stops/305349", "https://tec.openplanner.team/stops/Bbgerlr2"], ["https://data.delijn.be/stops/504653", "https://tec.openplanner.team/stops/H4wn131a"], ["http://irail.be/stations/NMBS/008843307", "https://tec.openplanner.team/stops/LHUalbe2"], ["https://data.delijn.be/stops/404676", "https://tec.openplanner.team/stops/Lladete4"], ["http://irail.be/stations/NMBS/008896149", "https://data.delijn.be/stops/508850"], ["https://data.delijn.be/stops/307201", "https://tec.openplanner.team/stops/Blemsta1"], ["https://data.delijn.be/stops/303831", "https://mivb.openplanner.team/stops/6654F"], ["http://irail.be/stations/NMBS/008865300", "https://tec.openplanner.team/stops/X804akb"], ["https://data.delijn.be/stops/407491", "https://tec.openplanner.team/stops/LTotrui1"], ["http://irail.be/stations/NMBS/008814118", "https://mivb.openplanner.team/stops/2939B"], ["https://data.delijn.be/stops/301115", "https://mivb.openplanner.team/stops/5255"], ["https://mivb.openplanner.team/stops/1601", "https://tec.openplanner.team/stops/Bkrawil1"], ["https://data.delijn.be/stops/303667", "https://mivb.openplanner.team/stops/1721"], ["https://data.delijn.be/stops/304460", "https://tec.openplanner.team/stops/Brsgter1"], ["https://data.delijn.be/stops/304207", "https://tec.openplanner.team/stops/Brsrpri1"], ["https://data.delijn.be/stops/302437", "https://tec.openplanner.team/stops/Bjodeco3"], ["http://irail.be/stations/NMBS/008895752", "https://data.delijn.be/stops/207653"], ["https://data.delijn.be/stops/304876", "https://mivb.openplanner.team/stops/9557"], ["https://data.delijn.be/stops/302141", "https://tec.openplanner.team/stops/Bptecar2"], ["https://data.delijn.be/stops/503575", "https://tec.openplanner.team/stops/H4mn100d"], ["https://data.delijn.be/stops/403781", "https://tec.openplanner.team/stops/LORroma1"], ["http://irail.be/stations/NMBS/008811247", "https://data.delijn.be/stops/304733"], ["https://data.delijn.be/stops/302872", "https://tec.openplanner.team/stops/Buccrac2"], ["https://data.delijn.be/stops/405337", "https://tec.openplanner.team/stops/Bneelaa2"], ["http://irail.be/stations/NMBS/008814308", "https://data.delijn.be/stops/307226"], ["https://data.delijn.be/stops/509231", "https://tec.openplanner.team/stops/H4co146a"], ["https://data.delijn.be/stops/509739", "https://tec.openplanner.team/stops/H4mo195a"], ["http://irail.be/stations/NMBS/008864469", "https://tec.openplanner.team/stops/X982bda"], ["https://mivb.openplanner.team/stops/5265F", "https://tec.openplanner.team/stops/Bettars2"], ["https://mivb.openplanner.team/stops/0340441", "https://tec.openplanner.team/stops/Bsgipha1"], ["https://data.delijn.be/stops/301037", "https://mivb.openplanner.team/stops/3462"], ["https://data.delijn.be/stops/300977", "https://mivb.openplanner.team/stops/3360F"], ["http://irail.be/stations/NMBS/008864337", "https://tec.openplanner.team/stops/X994aja"], ["https://data.delijn.be/stops/304447", "https://tec.openplanner.team/stops/Buccpes2"], ["https://data.delijn.be/stops/410319", "https://tec.openplanner.team/stops/LMalarg3"], ["http://irail.be/stations/NMBS/008893708", "https://data.delijn.be/stops/202042"], ["https://data.delijn.be/stops/301064", "https://mivb.openplanner.team/stops/1201"], ["http://irail.be/stations/NMBS/008841442", "https://tec.openplanner.team/stops/LRemorr2"], ["http://irail.be/stations/NMBS/008841608", "https://tec.openplanner.team/stops/Lhrgall1"], ["http://irail.be/stations/NMBS/008821667", "https://data.delijn.be/stops/107013"], ["https://data.delijn.be/stops/504772", "https://tec.openplanner.team/stops/H4wn123a"], ["http://irail.be/stations/NMBS/008891645", "https://data.delijn.be/stops/501662"], ["http://irail.be/stations/NMBS/008814241", "https://tec.openplanner.team/stops/Blilwit1"], ["http://irail.be/stations/NMBS/008891660", "https://data.delijn.be/stops/501668"], ["https://data.delijn.be/stops/410152", "https://mivb.openplanner.team/stops/3702"], ["https://data.delijn.be/stops/410139", "https://tec.openplanner.team/stops/Llghugo2"], ["http://irail.be/stations/NMBS/008861119", "https://tec.openplanner.team/stops/N528aha"], ["https://data.delijn.be/stops/408851", "https://tec.openplanner.team/stops/LTEkl162"], ["https://data.delijn.be/stops/300556", "https://tec.openplanner.team/stops/Bhmmbog1"], ["http://irail.be/stations/NMBS/008843430", "https://tec.openplanner.team/stops/LBseg--1"], ["http://irail.be/stations/NMBS/008896909", "https://data.delijn.be/stops/507173"], ["https://data.delijn.be/stops/301078", "https://mivb.openplanner.team/stops/6436"], ["https://data.delijn.be/stops/300411", "https://mivb.openplanner.team/stops/9677"], ["https://data.delijn.be/stops/408902", "https://tec.openplanner.team/stops/LFMveur1"], ["http://irail.be/stations/NMBS/008844644", "https://tec.openplanner.team/stops/LhGscha*"], ["http://irail.be/stations/NMBS/008895760", "https://data.delijn.be/stops/217008"], ["http://irail.be/stations/NMBS/008874716", "https://tec.openplanner.team/stops/N543awg"], ["https://data.delijn.be/stops/300828", "https://mivb.openplanner.team/stops/2861"], ["http://irail.be/stations/NMBS/008728686", "https://tec.openplanner.team/stops/H4rx175b"], ["https://data.delijn.be/stops/208614", "https://tec.openplanner.team/stops/H1by109b"], ["https://data.delijn.be/stops/410137", "https://tec.openplanner.team/stops/Lalexpa2"], ["https://data.delijn.be/stops/300961", "https://mivb.openplanner.team/stops/2050"], ["https://data.delijn.be/stops/401410", "https://mivb.openplanner.team/stops/1563"], ["http://irail.be/stations/NMBS/008831765", "https://data.delijn.be/stops/402301"], ["http://irail.be/stations/NMBS/008200940", "https://tec.openplanner.team/stops/X681aia"], ["https://data.delijn.be/stops/208408", "https://tec.openplanner.team/stops/H5rx106b"], ["https://data.delijn.be/stops/304431", "https://tec.openplanner.team/stops/Brsgcfl1"], ["https://data.delijn.be/stops/302855", "https://tec.openplanner.team/stops/Blanraa1"], ["https://data.delijn.be/stops/405736", "https://tec.openplanner.team/stops/Lrcvill1"], ["https://data.delijn.be/stops/306176", "https://mivb.openplanner.team/stops/9578"], ["https://data.delijn.be/stops/308981", "https://tec.openplanner.team/stops/Blhucmo2"], ["https://data.delijn.be/stops/404664", "https://tec.openplanner.team/stops/LPAmc--1"], ["http://irail.be/stations/NMBS/008822814", "https://data.delijn.be/stops/106753"], ["https://data.delijn.be/stops/300340", "https://tec.openplanner.team/stops/Bblapra1"], ["http://irail.be/stations/NMBS/008821337", "https://data.delijn.be/stops/107209"], ["https://data.delijn.be/stops/404660", "https://tec.openplanner.team/stops/LPAchpl2"], ["https://data.delijn.be/stops/305234", "https://mivb.openplanner.team/stops/9606"], ["https://data.delijn.be/stops/304774", "https://mivb.openplanner.team/stops/2218F"], ["https://data.delijn.be/stops/301677", "https://tec.openplanner.team/stops/Bnetegl4"], ["http://irail.be/stations/NMBS/008891629", "https://data.delijn.be/stops/501531"], ["https://data.delijn.be/stops/304688", "https://tec.openplanner.team/stops/Bhalwat1"], ["https://data.delijn.be/stops/303958", "https://tec.openplanner.team/stops/Bhmmjco1"], ["http://irail.be/stations/NMBS/008811460", "https://data.delijn.be/stops/302237"], ["http://irail.be/stations/NMBS/008200510", "https://tec.openplanner.team/stops/X685afb"], ["https://data.delijn.be/stops/504235", "https://tec.openplanner.team/stops/H4co148a"], ["https://mivb.openplanner.team/stops/5480", "https://tec.openplanner.team/stops/Bettcha2"], ["https://data.delijn.be/stops/306284", "https://mivb.openplanner.team/stops/2991"], ["http://irail.be/stations/NMBS/008811734", "https://tec.openplanner.team/stops/Bwavlon1"], ["https://data.delijn.be/stops/400473", "https://tec.openplanner.team/stops/LGLeg--2"], ["https://data.delijn.be/stops/300839", "https://mivb.openplanner.team/stops/8824"], ["http://irail.be/stations/NMBS/008811148", "https://mivb.openplanner.team/stops/9703"], ["https://data.delijn.be/stops/400472", "https://tec.openplanner.team/stops/LGLeg--1"], ["https://data.delijn.be/stops/300996", "https://mivb.openplanner.team/stops/2241G"], ["https://data.delijn.be/stops/503496", "https://tec.openplanner.team/stops/H4mo133b"], ["https://data.delijn.be/stops/303667", "https://mivb.openplanner.team/stops/1744"], ["http://irail.be/stations/NMBS/008200136", "https://tec.openplanner.team/stops/X793ada"], ["https://data.delijn.be/stops/305999", "https://tec.openplanner.team/stops/Brsrabe1"], ["http://irail.be/stations/NMBS/008874559", "https://tec.openplanner.team/stops/Cfaheni4"], ["http://irail.be/stations/NMBS/008842689", "https://tec.openplanner.team/stops/LPOthom1"], ["https://data.delijn.be/stops/307634", "https://tec.openplanner.team/stops/Bucceng2"], ["https://data.delijn.be/stops/307002", "https://tec.openplanner.team/stops/Bjodcad1"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/Cmlgoff2"], ["https://data.delijn.be/stops/504255", "https://tec.openplanner.team/stops/H4pl120a"], ["https://data.delijn.be/stops/307111", "https://tec.openplanner.team/stops/Bjodcad2"], ["http://irail.be/stations/NMBS/008821600", "https://data.delijn.be/stops/101397"], ["https://data.delijn.be/stops/305350", "https://tec.openplanner.team/stops/Blmldmi1"], ["https://mivb.openplanner.team/stops/5258", "https://tec.openplanner.team/stops/Bixlozo2"], ["https://data.delijn.be/stops/300335", "https://tec.openplanner.team/stops/Brsgfon1"], ["http://irail.be/stations/NMBS/008811775", "https://data.delijn.be/stops/302395"], ["http://irail.be/stations/NMBS/008885522", "https://tec.openplanner.team/stops/H4ga166a"], ["http://irail.be/stations/NMBS/008728687", "https://tec.openplanner.team/stops/H4ne139b"], ["https://data.delijn.be/stops/300740", "https://mivb.openplanner.team/stops/2226"], ["http://irail.be/stations/NMBS/008866654", "https://tec.openplanner.team/stops/X615bda"], ["https://data.delijn.be/stops/300956", "https://mivb.openplanner.team/stops/1751"], ["http://irail.be/stations/NMBS/008866845", "https://tec.openplanner.team/stops/X641aya"], ["http://irail.be/stations/NMBS/008815016", "https://mivb.openplanner.team/stops/4271"], ["http://irail.be/stations/NMBS/008886058", "https://tec.openplanner.team/stops/H1ch102a"], ["http://irail.be/stations/NMBS/008821071", "https://data.delijn.be/stops/108820"], ["https://data.delijn.be/stops/300767", "https://mivb.openplanner.team/stops/3804B"], ["https://mivb.openplanner.team/stops/3553", "https://tec.openplanner.team/stops/Baudvdr2"], ["http://irail.be/stations/NMBS/008841608", "https://tec.openplanner.team/stops/Lhrbell2"], ["https://data.delijn.be/stops/208764", "https://tec.openplanner.team/stops/H5rx140a"], ["https://data.delijn.be/stops/408840", "https://tec.openplanner.team/stops/LRmkult1"], ["https://data.delijn.be/stops/207796", "https://tec.openplanner.team/stops/H4ss158b"], ["https://data.delijn.be/stops/301165", "https://tec.openplanner.team/stops/Buccvbe1"], ["https://data.delijn.be/stops/303667", "https://mivb.openplanner.team/stops/1328"], ["https://data.delijn.be/stops/300316", "https://tec.openplanner.team/stops/Bhmmcge1"], ["https://data.delijn.be/stops/403772", "https://tec.openplanner.team/stops/LLnpomp2"], ["https://data.delijn.be/stops/400491", "https://tec.openplanner.team/stops/LBSkann1"], ["http://irail.be/stations/NMBS/008871670", "https://tec.openplanner.team/stops/Clsstpi1"], ["http://irail.be/stations/NMBS/008895745", "https://data.delijn.be/stops/206617"], ["http://irail.be/stations/NMBS/008842051", "https://tec.openplanner.team/stops/Lcacasi2"], ["http://irail.be/stations/NMBS/008871605", "https://tec.openplanner.team/stops/Ceqmeti1"], ["http://irail.be/stations/NMBS/008841319", "https://tec.openplanner.team/stops/LBIpont1"], ["http://irail.be/stations/NMBS/008822814", "https://data.delijn.be/stops/109528"], ["https://mivb.openplanner.team/stops/2759", "https://tec.openplanner.team/stops/Buccfja2"], ["http://irail.be/stations/NMBS/008894151", "https://data.delijn.be/stops/203176"], ["https://data.delijn.be/stops/301050", "https://mivb.openplanner.team/stops/1626"], ["https://data.delijn.be/stops/400477", "https://tec.openplanner.team/stops/LBPunic2"], ["http://irail.be/stations/NMBS/008812120", "https://data.delijn.be/stops/206177"], ["https://data.delijn.be/stops/302424", "https://tec.openplanner.team/stops/Bjodrga2"], ["http://irail.be/stations/NMBS/008894755", "https://data.delijn.be/stops/205444"], ["https://data.delijn.be/stops/503331", "https://tec.openplanner.team/stops/H4do100a"], ["http://irail.be/stations/NMBS/008833308", "https://tec.openplanner.team/stops/Btiegar1"], ["https://data.delijn.be/stops/305334", "https://tec.openplanner.team/stops/Bspkbeu2"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2pe156b"], ["https://data.delijn.be/stops/405705", "https://tec.openplanner.team/stops/LlgLAMB2"], ["https://data.delijn.be/stops/404664", "https://tec.openplanner.team/stops/LWinavi1"], ["https://data.delijn.be/stops/302443", "https://tec.openplanner.team/stops/Bzlufbo1"], ["http://irail.be/stations/NMBS/008821659", "https://data.delijn.be/stops/101391"], ["http://irail.be/stations/NMBS/008841673", "https://tec.openplanner.team/stops/Llithon2"], ["http://irail.be/stations/NMBS/008891553", "https://data.delijn.be/stops/506460"], ["http://irail.be/stations/NMBS/008821436", "https://data.delijn.be/stops/104276"], ["https://data.delijn.be/stops/306913", "https://tec.openplanner.team/stops/Bbosdra1"], ["http://irail.be/stations/NMBS/008861135", "https://tec.openplanner.team/stops/N533aaa"], ["https://data.delijn.be/stops/303666", "https://mivb.openplanner.team/stops/1684F"], ["https://data.delijn.be/stops/400451", "https://tec.openplanner.team/stops/LBPrueg2"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2le153b"], ["https://data.delijn.be/stops/306816", "https://tec.openplanner.team/stops/Balsnay2"], ["http://irail.be/stations/NMBS/008814365", "https://data.delijn.be/stops/303225"], ["https://data.delijn.be/stops/305889", "https://mivb.openplanner.team/stops/9634"], ["http://irail.be/stations/NMBS/008864311", "https://tec.openplanner.team/stops/X991aab"], ["https://data.delijn.be/stops/408963", "https://tec.openplanner.team/stops/LWAmouh1"], ["https://data.delijn.be/stops/405440", "https://tec.openplanner.team/stops/LWSstat1"], ["https://data.delijn.be/stops/304127", "https://mivb.openplanner.team/stops/2833"], ["http://irail.be/stations/NMBS/008832664", "https://data.delijn.be/stops/402832"], ["http://irail.be/stations/NMBS/008893526", "https://data.delijn.be/stops/206398"], ["https://data.delijn.be/stops/400484", "https://tec.openplanner.team/stops/LRGpt5-3"], ["http://irail.be/stations/NMBS/008864345", "https://tec.openplanner.team/stops/X902bca"], ["http://irail.be/stations/NMBS/008832334", "https://data.delijn.be/stops/409340"], ["http://irail.be/stations/NMBS/008864923", "https://tec.openplanner.team/stops/N254abb"], ["http://irail.be/stations/NMBS/008891124", "https://data.delijn.be/stops/507066"], ["http://irail.be/stations/NMBS/008861549", "https://tec.openplanner.team/stops/Bmsgstj1"], ["https://data.delijn.be/stops/304535", "https://mivb.openplanner.team/stops/5559"], ["https://data.delijn.be/stops/301004", "https://mivb.openplanner.team/stops/5303"], ["https://data.delijn.be/stops/408875", "https://tec.openplanner.team/stops/LFMkrut4"], ["https://data.delijn.be/stops/300579", "https://mivb.openplanner.team/stops/3111"], ["https://data.delijn.be/stops/308720", "https://tec.openplanner.team/stops/Bgoewat1"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/N541aeb"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LDpzol-2"], ["https://data.delijn.be/stops/509317", "https://tec.openplanner.team/stops/H4mo207a"], ["https://data.delijn.be/stops/306906", "https://tec.openplanner.team/stops/Bboseco2"], ["http://irail.be/stations/NMBS/008811221", "https://data.delijn.be/stops/305565"], ["https://data.delijn.be/stops/307213", "https://tec.openplanner.team/stops/Bhalcbr2"], ["http://irail.be/stations/NMBS/008881190", "https://tec.openplanner.team/stops/H1ju121a"], ["https://data.delijn.be/stops/304127", "https://mivb.openplanner.team/stops/0010215"], ["http://irail.be/stations/NMBS/008811825", "https://tec.openplanner.team/stops/Bcsegar2"], ["https://data.delijn.be/stops/300906", "https://tec.openplanner.team/stops/Bixllep1"], ["https://data.delijn.be/stops/305519", "https://mivb.openplanner.team/stops/9169"], ["http://irail.be/stations/NMBS/008896925", "https://data.delijn.be/stops/505951"], ["https://data.delijn.be/stops/308856", "https://mivb.openplanner.team/stops/1768"], ["http://irail.be/stations/NMBS/008871332", "https://tec.openplanner.team/stops/Cobmara1"], ["https://data.delijn.be/stops/303632", "https://mivb.openplanner.team/stops/2214"], ["https://data.delijn.be/stops/208416", "https://tec.openplanner.team/stops/H4rs117a"], ["https://data.delijn.be/stops/300777", "https://mivb.openplanner.team/stops/7650110"], ["https://mivb.openplanner.team/stops/9551", "https://tec.openplanner.team/stops/Bovejei1"], ["http://irail.be/stations/NMBS/008866845", "https://tec.openplanner.team/stops/X641aia"], ["https://data.delijn.be/stops/301685", "https://tec.openplanner.team/stops/Bnetrbr2"], ["https://data.delijn.be/stops/308822", "https://tec.openplanner.team/stops/Bwaak102"], ["https://data.delijn.be/stops/300767", "https://mivb.openplanner.team/stops/3852"], ["https://data.delijn.be/stops/301159", "https://mivb.openplanner.team/stops/5921G"], ["https://data.delijn.be/stops/300281", "https://mivb.openplanner.team/stops/4168"], ["http://irail.be/stations/NMBS/008891660", "https://data.delijn.be/stops/501777"], ["https://data.delijn.be/stops/303231", "https://tec.openplanner.team/stops/Bhevhha1"], ["https://data.delijn.be/stops/300813", "https://mivb.openplanner.team/stops/4132B"], ["http://irail.be/stations/NMBS/008892734", "https://data.delijn.be/stops/505974"], ["http://irail.be/stations/NMBS/008832250", "https://data.delijn.be/stops/404237"], ["https://data.delijn.be/stops/301159", "https://mivb.openplanner.team/stops/5754"], ["https://data.delijn.be/stops/403702", "https://tec.openplanner.team/stops/LOewaut2"], ["https://data.delijn.be/stops/302229", "https://tec.openplanner.team/stops/Blhupqu1"], ["http://irail.be/stations/NMBS/008861150", "https://tec.openplanner.team/stops/N534bqb"], ["http://irail.be/stations/NMBS/008894821", "https://data.delijn.be/stops/204335"], ["https://data.delijn.be/stops/300945", "https://mivb.openplanner.team/stops/1684F"], ["https://mivb.openplanner.team/stops/1962", "https://tec.openplanner.team/stops/Bucccal3"], ["https://data.delijn.be/stops/307832", "https://mivb.openplanner.team/stops/2252"], ["https://data.delijn.be/stops/208409", "https://tec.openplanner.team/stops/H5rx140b"], ["http://irail.be/stations/NMBS/008891702", "https://data.delijn.be/stops/506343"], ["https://data.delijn.be/stops/408779", "https://tec.openplanner.team/stops/LOTsava1"], ["https://data.delijn.be/stops/508772", "https://tec.openplanner.team/stops/H4wg122b"], ["https://data.delijn.be/stops/408883", "https://tec.openplanner.team/stops/LFCkett1"], ["https://data.delijn.be/stops/302793", "https://mivb.openplanner.team/stops/9578"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/Bsdecdi2"], ["http://irail.be/stations/NMBS/008863354", "https://tec.openplanner.team/stops/N501dqa"], ["https://data.delijn.be/stops/307644", "https://tec.openplanner.team/stops/Bbrlvil1"], ["http://irail.be/stations/NMBS/008886041", "https://tec.openplanner.team/stops/H5ma186a"], ["https://data.delijn.be/stops/307147", "https://tec.openplanner.team/stops/Bhalvel1"], ["http://irail.be/stations/NMBS/008892908", "https://data.delijn.be/stops/207782"], ["https://data.delijn.be/stops/307043", "https://mivb.openplanner.team/stops/3309"], ["http://irail.be/stations/NMBS/008875002", "https://tec.openplanner.team/stops/N134aeb"], ["https://data.delijn.be/stops/307685", "https://mivb.openplanner.team/stops/1958B"], ["https://data.delijn.be/stops/408881", "https://tec.openplanner.team/stops/LTErest2"], ["https://data.delijn.be/stops/303576", "https://mivb.openplanner.team/stops/3042"], ["https://data.delijn.be/stops/400481", "https://tec.openplanner.team/stops/LGLc50-3"], ["http://irail.be/stations/NMBS/008728687", "https://tec.openplanner.team/stops/H4ep128b"], ["http://irail.be/stations/NMBS/008863362", "https://tec.openplanner.team/stops/N501kjb"], ["http://irail.be/stations/NMBS/008895125", "https://data.delijn.be/stops/206263"], ["https://data.delijn.be/stops/300982", "https://mivb.openplanner.team/stops/3407"], ["https://data.delijn.be/stops/301129", "https://mivb.openplanner.team/stops/6934F"], ["https://data.delijn.be/stops/303376", "https://mivb.openplanner.team/stops/1851"], ["https://data.delijn.be/stops/300888", "https://mivb.openplanner.team/stops/3222"], ["http://irail.be/stations/NMBS/008893013", "https://data.delijn.be/stops/201625"], ["https://mivb.openplanner.team/stops/5059", "https://tec.openplanner.team/stops/Buccdst2"], ["https://data.delijn.be/stops/306903", "https://tec.openplanner.team/stops/Bgoevli1"], ["https://data.delijn.be/stops/302381", "https://tec.openplanner.team/stops/Bwavcin1"], ["https://data.delijn.be/stops/301928", "https://mivb.openplanner.team/stops/1043"], ["http://irail.be/stations/NMBS/008833001", "https://data.delijn.be/stops/307075"], ["https://mivb.openplanner.team/stops/1871B", "https://tec.openplanner.team/stops/Bettgle1"], ["http://irail.be/stations/NMBS/008821824", "https://data.delijn.be/stops/108158"], ["https://data.delijn.be/stops/505842", "https://tec.openplanner.team/stops/H4co108b"], ["https://data.delijn.be/stops/307684", "https://mivb.openplanner.team/stops/5952F"], ["https://mivb.openplanner.team/stops/2140", "https://tec.openplanner.team/stops/Buccrac1"], ["https://data.delijn.be/stops/207799", "https://tec.openplanner.team/stops/H5el100a"], ["http://irail.be/stations/NMBS/008844503", "https://tec.openplanner.team/stops/LhEbruc2"], ["https://data.delijn.be/stops/305435", "https://mivb.openplanner.team/stops/5521"], ["http://irail.be/stations/NMBS/008874583", "https://tec.openplanner.team/stops/Crsapol2"], ["https://data.delijn.be/stops/306916", "https://tec.openplanner.team/stops/Btiegoo2"], ["http://irail.be/stations/NMBS/008893401", "https://data.delijn.be/stops/207859"], ["https://data.delijn.be/stops/508228", "https://tec.openplanner.team/stops/H4eh102b"], ["https://data.delijn.be/stops/304102", "https://tec.openplanner.team/stops/Bovetdo2"], ["https://data.delijn.be/stops/300805", "https://mivb.openplanner.team/stops/6809F"], ["https://data.delijn.be/stops/408866", "https://tec.openplanner.team/stops/LWRchem2"], ["http://irail.be/stations/NMBS/008893534", "https://data.delijn.be/stops/207404"], ["http://irail.be/stations/NMBS/008831807", "https://data.delijn.be/stops/407937"], ["https://mivb.openplanner.team/stops/2120", "https://tec.openplanner.team/stops/Buccron2"], ["http://irail.be/stations/NMBS/008821246", "https://data.delijn.be/stops/107920"], ["https://data.delijn.be/stops/404663", "https://tec.openplanner.team/stops/LPAmc--2"], ["http://irail.be/stations/NMBS/008812021", "https://data.delijn.be/stops/300832"], ["http://irail.be/stations/NMBS/008863453", "https://tec.openplanner.team/stops/N511aaa"], ["http://irail.be/stations/NMBS/008889011", "https://tec.openplanner.team/stops/H4rx141a"], ["https://data.delijn.be/stops/307200", "https://tec.openplanner.team/stops/Bhalker2"], ["https://mivb.openplanner.team/stops/4367B", "https://tec.openplanner.team/stops/Bixlqll1"], ["http://irail.be/stations/NMBS/008893443", "https://data.delijn.be/stops/206353"], ["https://data.delijn.be/stops/307461", "https://tec.openplanner.team/stops/Bsgipha3"], ["https://data.delijn.be/stops/307580", "https://tec.openplanner.team/stops/Bbghsar2"], ["https://data.delijn.be/stops/305174", "https://tec.openplanner.team/stops/Bwavcen1"], ["http://irail.be/stations/NMBS/008885001", "https://tec.openplanner.team/stops/H4ty296a"], ["https://data.delijn.be/stops/303229", "https://mivb.openplanner.team/stops/9686"], ["https://data.delijn.be/stops/509654", "https://tec.openplanner.team/stops/H4co150a"], ["https://data.delijn.be/stops/305229", "https://mivb.openplanner.team/stops/9608"], ["https://mivb.openplanner.team/stops/3520", "https://tec.openplanner.team/stops/Bauddel2"], ["https://data.delijn.be/stops/504294", "https://tec.openplanner.team/stops/H4mo138b"], ["https://data.delijn.be/stops/301072", "https://mivb.openplanner.team/stops/8291"], ["https://data.delijn.be/stops/300936", "https://mivb.openplanner.team/stops/4157"], ["http://irail.be/stations/NMBS/008811205", "https://mivb.openplanner.team/stops/0230234"], ["http://irail.be/stations/NMBS/008811411", "https://mivb.openplanner.team/stops/4306"], ["http://irail.be/stations/NMBS/008892304", "https://data.delijn.be/stops/504501"], ["http://irail.be/stations/NMBS/008815040", "https://data.delijn.be/stops/301071"], ["https://data.delijn.be/stops/305915", "https://mivb.openplanner.team/stops/5102F"], ["http://irail.be/stations/NMBS/008831138", "https://data.delijn.be/stops/400866"], ["http://irail.be/stations/NMBS/008842036", "https://tec.openplanner.team/stops/Lcemc--2"], ["https://data.delijn.be/stops/304697", "https://tec.openplanner.team/stops/Bhalalb2"], ["http://irail.be/stations/NMBS/008871373", "https://tec.openplanner.team/stops/H2gy113b"], ["https://data.delijn.be/stops/300749", "https://mivb.openplanner.team/stops/3233"], ["https://data.delijn.be/stops/307150", "https://tec.openplanner.team/stops/Bhalomo2"], ["https://data.delijn.be/stops/306968", "https://mivb.openplanner.team/stops/5704F"], ["http://irail.be/stations/NMBS/008891173", "https://data.delijn.be/stops/505781"], ["http://irail.be/stations/NMBS/008893013", "https://data.delijn.be/stops/204984"], ["https://data.delijn.be/stops/306112", "https://tec.openplanner.team/stops/Bbeamon2"], ["http://irail.be/stations/NMBS/008893013", "https://data.delijn.be/stops/200954"], ["http://irail.be/stations/NMBS/008866175", "https://tec.openplanner.team/stops/X658abb"], ["https://data.delijn.be/stops/405740", "https://tec.openplanner.team/stops/Llgcamp2"], ["https://data.delijn.be/stops/302407", "https://mivb.openplanner.team/stops/3611F"], ["http://irail.be/stations/NMBS/008891165", "https://data.delijn.be/stops/200683"], ["http://irail.be/stations/NMBS/008841731", "https://tec.openplanner.team/stops/LGLobor2"], ["https://data.delijn.be/stops/300806", "https://mivb.openplanner.team/stops/6858G"], ["http://irail.be/stations/NMBS/008728600", "https://tec.openplanner.team/stops/H4ar101b"], ["https://data.delijn.be/stops/300986", "https://mivb.openplanner.team/stops/2271"], ["https://data.delijn.be/stops/304255", "https://mivb.openplanner.team/stops/1099"], ["https://data.delijn.be/stops/301956", "https://mivb.openplanner.team/stops/2252"], ["https://mivb.openplanner.team/stops/6009", "https://tec.openplanner.team/stops/Bettlha1"], ["https://mivb.openplanner.team/stops/2932", "https://tec.openplanner.team/stops/Bsgimca2"], ["https://data.delijn.be/stops/208182", "https://tec.openplanner.team/stops/H5rx132a"], ["https://data.delijn.be/stops/509735", "https://tec.openplanner.team/stops/H4do103b"], ["https://data.delijn.be/stops/301067", "https://mivb.openplanner.team/stops/3257"], ["https://data.delijn.be/stops/301115", "https://tec.openplanner.team/stops/Buccchu2"], ["https://data.delijn.be/stops/300579", "https://mivb.openplanner.team/stops/6418F"], ["http://irail.be/stations/NMBS/008893120", "https://data.delijn.be/stops/201222"], ["https://data.delijn.be/stops/405720", "https://tec.openplanner.team/stops/LlgR-Fr3"], ["https://data.delijn.be/stops/306905", "https://tec.openplanner.team/stops/Bgoekaz2"], ["https://data.delijn.be/stops/408718", "https://tec.openplanner.team/stops/LWieg--*"], ["https://data.delijn.be/stops/504304", "https://tec.openplanner.team/stops/H4pl120a"], ["http://irail.be/stations/NMBS/008813045", "https://mivb.openplanner.team/stops/2221"], ["https://data.delijn.be/stops/307204", "https://tec.openplanner.team/stops/Blemsta2"], ["https://data.delijn.be/stops/408973", "https://tec.openplanner.team/stops/LWAlong3"], ["https://data.delijn.be/stops/208183", "https://tec.openplanner.team/stops/H5rx104a"], ["http://irail.be/stations/NMBS/008811437", "https://tec.openplanner.team/stops/Bwbfgar1"], ["https://mivb.openplanner.team/stops/2002", "https://tec.openplanner.team/stops/Buccplj2"], ["https://data.delijn.be/stops/509383", "https://tec.openplanner.team/stops/H4pl115b"], ["https://data.delijn.be/stops/405738", "https://tec.openplanner.team/stops/Lrclohe2"], ["http://irail.be/stations/NMBS/008844339", "https://tec.openplanner.team/stops/Lhuferm1"], ["http://irail.be/stations/NMBS/008894425", "https://data.delijn.be/stops/205225"], ["https://data.delijn.be/stops/307921", "https://mivb.openplanner.team/stops/2803"], ["https://mivb.openplanner.team/stops/1758B", "https://tec.openplanner.team/stops/Baudsju1"], ["http://irail.be/stations/NMBS/008861333", "https://tec.openplanner.team/stops/N531aob"], ["http://irail.be/stations/NMBS/008882248", "https://tec.openplanner.team/stops/Cpthaud2"], ["http://irail.be/stations/NMBS/008811767", "https://tec.openplanner.team/stops/Bpecsta1"], ["https://mivb.openplanner.team/stops/1756B", "https://tec.openplanner.team/stops/Baudvdr2"], ["https://data.delijn.be/stops/305350", "https://tec.openplanner.team/stops/Bbgever2"], ["http://irail.be/stations/NMBS/008881505", "https://tec.openplanner.team/stops/H1qp142a"], ["http://irail.be/stations/NMBS/008811775", "https://tec.openplanner.team/stops/Bpechos2"], ["https://data.delijn.be/stops/301027", "https://mivb.openplanner.team/stops/8331"], ["https://data.delijn.be/stops/306115", "https://mivb.openplanner.team/stops/2259"], ["https://data.delijn.be/stops/307817", "https://tec.openplanner.team/stops/Bovesnh2"], ["https://data.delijn.be/stops/308868", "https://mivb.openplanner.team/stops/5524"], ["https://data.delijn.be/stops/301967", "https://tec.openplanner.team/stops/Bhalpar2"], ["http://irail.be/stations/NMBS/008812245", "https://data.delijn.be/stops/304798"], ["https://data.delijn.be/stops/304448", "https://tec.openplanner.team/stops/Brsgleq1"], ["https://data.delijn.be/stops/304208", "https://tec.openplanner.team/stops/Brsrpch2"], ["https://data.delijn.be/stops/307976", "https://tec.openplanner.team/stops/Bwavcen1"], ["https://data.delijn.be/stops/300872", "https://tec.openplanner.team/stops/Bbeagae2"], ["https://data.delijn.be/stops/302445", "https://tec.openplanner.team/stops/Bsrgm101"], ["http://irail.be/stations/NMBS/008863503", "https://tec.openplanner.team/stops/N232anb"], ["https://data.delijn.be/stops/301042", "https://mivb.openplanner.team/stops/6706"], ["https://data.delijn.be/stops/300761", "https://mivb.openplanner.team/stops/8642"], ["http://irail.be/stations/NMBS/008813003", "https://mivb.openplanner.team/stops/2296"], ["https://data.delijn.be/stops/300924", "https://mivb.openplanner.team/stops/3461"], ["http://irail.be/stations/NMBS/008833605", "https://tec.openplanner.team/stops/LLasta-*"], ["https://data.delijn.be/stops/507689", "https://tec.openplanner.team/stops/H4mo206b"], ["http://irail.be/stations/NMBS/008821022", "https://data.delijn.be/stops/101515"], ["https://mivb.openplanner.team/stops/3572F", "https://tec.openplanner.team/stops/Bixlfla1"], ["http://irail.be/stations/NMBS/008896735", "https://data.delijn.be/stops/504697"], ["https://mivb.openplanner.team/stops/1937", "https://tec.openplanner.team/stops/Bucceng2"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/107058"], ["https://data.delijn.be/stops/306283", "https://mivb.openplanner.team/stops/3201"], ["http://irail.be/stations/NMBS/008814118", "https://mivb.openplanner.team/stops/2604F"], ["https://data.delijn.be/stops/509452", "https://tec.openplanner.team/stops/H4mo181b"], ["http://irail.be/stations/NMBS/008812153", "https://data.delijn.be/stops/206689"], ["https://data.delijn.be/stops/401397", "https://mivb.openplanner.team/stops/3920"], ["http://irail.be/stations/NMBS/008821154", "https://data.delijn.be/stops/102385"], ["https://data.delijn.be/stops/300389", "https://mivb.openplanner.team/stops/9656"], ["https://data.delijn.be/stops/503228", "https://tec.openplanner.team/stops/H4eh101b"], ["http://irail.be/stations/NMBS/008719203", "https://tec.openplanner.team/stops/X622aba"], ["https://data.delijn.be/stops/300934", "https://mivb.openplanner.team/stops/3411"], ["http://irail.be/stations/NMBS/008885530", "https://tec.openplanner.team/stops/H4vz369b"], ["https://data.delijn.be/stops/304205", "https://tec.openplanner.team/stops/Brsrfen1"], ["https://data.delijn.be/stops/509240", "https://tec.openplanner.team/stops/H4co146a"], ["http://irail.be/stations/NMBS/008200518", "https://tec.openplanner.team/stops/X688aaa"], ["http://irail.be/stations/NMBS/008832409", "https://data.delijn.be/stops/107604"], ["http://irail.be/stations/NMBS/008811437", "https://mivb.openplanner.team/stops/5419"], ["https://data.delijn.be/stops/308104", "https://tec.openplanner.team/stops/Bzlucam2"], ["http://irail.be/stations/NMBS/008015458", "https://tec.openplanner.team/stops/LaHzoll*"], ["https://data.delijn.be/stops/300956", "https://tec.openplanner.team/stops/Baudwav1"], ["https://data.delijn.be/stops/410137", "https://tec.openplanner.team/stops/Lrc594-1"], ["https://data.delijn.be/stops/405719", "https://tec.openplanner.team/stops/Llgwild1"], ["https://data.delijn.be/stops/300894", "https://mivb.openplanner.team/stops/0516"], ["https://data.delijn.be/stops/307149", "https://tec.openplanner.team/stops/Bhaless2"], ["https://data.delijn.be/stops/305244", "https://mivb.openplanner.team/stops/9786"], ["http://irail.be/stations/NMBS/008811718", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://data.delijn.be/stops/408874", "https://tec.openplanner.team/stops/LFMkrin1"], ["https://data.delijn.be/stops/408889", "https://tec.openplanner.team/stops/LFMstat2"], ["http://irail.be/stations/NMBS/008832375", "https://data.delijn.be/stops/403290"], ["https://data.delijn.be/stops/305915", "https://mivb.openplanner.team/stops/5174"], ["https://data.delijn.be/stops/300881", "https://mivb.openplanner.team/stops/4956"], ["http://irail.be/stations/NMBS/008832433", "https://data.delijn.be/stops/108971"], ["https://data.delijn.be/stops/300997", "https://mivb.openplanner.team/stops/7762"], ["https://data.delijn.be/stops/405711", "https://tec.openplanner.team/stops/Llgcime2"], ["https://data.delijn.be/stops/408894", "https://tec.openplanner.team/stops/LWHmath1"], ["https://data.delijn.be/stops/207776", "https://tec.openplanner.team/stops/H5rx135b"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/109188"], ["http://irail.be/stations/NMBS/008832003", "https://data.delijn.be/stops/405583"], ["https://data.delijn.be/stops/410341", "https://tec.openplanner.team/stops/LOdcris1"], ["http://irail.be/stations/NMBS/008843158", "https://tec.openplanner.team/stops/Ljeorda1"], ["https://data.delijn.be/stops/306914", "https://tec.openplanner.team/stops/Btiegoo1"], ["https://data.delijn.be/stops/207752", "https://tec.openplanner.team/stops/H5rx127b"], ["http://irail.be/stations/NMBS/008822608", "https://data.delijn.be/stops/104571"], ["http://irail.be/stations/NMBS/008895505", "https://data.delijn.be/stops/208040"], ["https://data.delijn.be/stops/408804", "https://tec.openplanner.team/stops/LVIhala4"], ["https://mivb.openplanner.team/stops/1417B", "https://tec.openplanner.team/stops/Bbxlfro1"], ["https://data.delijn.be/stops/300919", "https://mivb.openplanner.team/stops/5038"], ["http://irail.be/stations/NMBS/008895240", "https://data.delijn.be/stops/208516"], ["https://mivb.openplanner.team/stops/5266F", "https://tec.openplanner.team/stops/Bixefra1"], ["http://irail.be/stations/NMBS/008863818", "https://tec.openplanner.team/stops/N232aba"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N349acb"], ["http://irail.be/stations/NMBS/008831112", "https://data.delijn.be/stops/401520"], ["https://data.delijn.be/stops/206784", "https://tec.openplanner.team/stops/H1gy115b"], ["https://data.delijn.be/stops/301069", "https://mivb.openplanner.team/stops/8732"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Canboni1"], ["http://irail.be/stations/NMBS/008814001", "https://mivb.openplanner.team/stops/0726"], ["https://data.delijn.be/stops/304458", "https://tec.openplanner.team/stops/Balssvi2"], ["https://data.delijn.be/stops/508678", "https://tec.openplanner.team/stops/H4ef109a"], ["https://data.delijn.be/stops/305315", "https://mivb.openplanner.team/stops/9787"], ["https://data.delijn.be/stops/300772", "https://mivb.openplanner.team/stops/8672"], ["https://data.delijn.be/stops/301035", "https://mivb.openplanner.team/stops/0650265"], ["https://data.delijn.be/stops/300767", "https://mivb.openplanner.team/stops/6808G"], ["http://irail.be/stations/NMBS/008889045", "https://tec.openplanner.team/stops/H4te413b"], ["http://irail.be/stations/NMBS/008884632", "https://tec.openplanner.team/stops/H1po154a"], ["https://data.delijn.be/stops/301049", "https://mivb.openplanner.team/stops/1201"], ["https://data.delijn.be/stops/509639", "https://tec.openplanner.team/stops/H4co149a"], ["http://irail.be/stations/NMBS/008881000", "https://tec.openplanner.team/stops/Cmonsnc1"], ["http://irail.be/stations/NMBS/008891124", "https://data.delijn.be/stops/502066"], ["http://irail.be/stations/NMBS/008832573", "https://data.delijn.be/stops/405525"], ["https://data.delijn.be/stops/307988", "https://mivb.openplanner.team/stops/3334F"], ["http://irail.be/stations/NMBS/008832045", "https://data.delijn.be/stops/407928"], ["http://irail.be/stations/NMBS/008815040", "https://mivb.openplanner.team/stops/7730502"], ["http://irail.be/stations/NMBS/008841731", "https://data.delijn.be/stops/404680"], ["https://data.delijn.be/stops/404655", "https://tec.openplanner.team/stops/LJUfort1"], ["https://data.delijn.be/stops/301030", "https://mivb.openplanner.team/stops/6427F"], ["http://irail.be/stations/NMBS/008811734", "https://tec.openplanner.team/stops/Bwavfol2"], ["http://irail.be/stations/NMBS/008886058", "https://tec.openplanner.team/stops/H5ar100a"], ["http://irail.be/stations/NMBS/008811148", "https://mivb.openplanner.team/stops/9777"], ["https://data.delijn.be/stops/300370", "https://tec.openplanner.team/stops/Bwaucig2"], ["https://data.delijn.be/stops/302423", "https://tec.openplanner.team/stops/Bjodgai2"], ["https://mivb.openplanner.team/stops/4298", "https://tec.openplanner.team/stops/Baudtri2"], ["https://data.delijn.be/stops/307967", "https://tec.openplanner.team/stops/Bwavlav1"], ["http://irail.be/stations/NMBS/008821709", "https://data.delijn.be/stops/102612"], ["http://irail.be/stations/NMBS/008822269", "https://data.delijn.be/stops/308695"], ["https://data.delijn.be/stops/504255", "https://tec.openplanner.team/stops/H4pl135b"], ["http://irail.be/stations/NMBS/008865540", "https://tec.openplanner.team/stops/X850aob"], ["http://irail.be/stations/NMBS/008881455", "https://tec.openplanner.team/stops/H3th133a"], ["https://data.delijn.be/stops/302436", "https://tec.openplanner.team/stops/Bsrgm102"], ["https://data.delijn.be/stops/300894", "https://mivb.openplanner.team/stops/0430648"], ["https://data.delijn.be/stops/400450", "https://tec.openplanner.team/stops/LBPrueg1"], ["https://data.delijn.be/stops/307634", "https://mivb.openplanner.team/stops/1937"], ["https://data.delijn.be/stops/509231", "https://tec.openplanner.team/stops/H4co107a"], ["https://data.delijn.be/stops/300740", "https://mivb.openplanner.team/stops/2252"], ["http://irail.be/stations/NMBS/008863008", "https://tec.openplanner.team/stops/N501gaa"], ["https://data.delijn.be/stops/300941", "https://mivb.openplanner.team/stops/3317"], ["http://irail.be/stations/NMBS/008814175", "https://data.delijn.be/stops/307719"], ["http://irail.be/stations/NMBS/008861440", "https://tec.openplanner.team/stops/N527agb"], ["https://data.delijn.be/stops/302421", "https://tec.openplanner.team/stops/Bsrgcur1"], ["https://data.delijn.be/stops/307683", "https://mivb.openplanner.team/stops/5817"], ["https://data.delijn.be/stops/307142", "https://mivb.openplanner.team/stops/9979B"], ["https://data.delijn.be/stops/408925", "https://tec.openplanner.team/stops/LTEkerk1"], ["http://irail.be/stations/NMBS/008874583", "https://tec.openplanner.team/stops/Caimeno3"], ["https://data.delijn.be/stops/408833", "https://tec.openplanner.team/stops/LMgwith2"], ["http://irail.be/stations/NMBS/008881158", "https://tec.openplanner.team/stops/H1gh143a"], ["https://data.delijn.be/stops/300950", "https://mivb.openplanner.team/stops/5165"], ["https://mivb.openplanner.team/stops/0050119", "https://tec.openplanner.team/stops/Bbxltou1"], ["https://data.delijn.be/stops/408991", "https://tec.openplanner.team/stops/LWAcham1"], ["https://mivb.openplanner.team/stops/5058", "https://tec.openplanner.team/stops/Buccdch2"], ["https://data.delijn.be/stops/307461", "https://mivb.openplanner.team/stops/0340341"], ["https://data.delijn.be/stops/301160", "https://mivb.openplanner.team/stops/5920C"], ["http://irail.be/stations/NMBS/008812245", "https://data.delijn.be/stops/306645"], ["https://data.delijn.be/stops/408811", "https://tec.openplanner.team/stops/LVIvert1"], ["http://irail.be/stations/NMBS/008863404", "https://tec.openplanner.team/stops/LSssurl2"], ["http://irail.be/stations/NMBS/008893179", "https://data.delijn.be/stops/210072"], ["https://data.delijn.be/stops/408920", "https://tec.openplanner.team/stops/LTEkl121"], ["http://irail.be/stations/NMBS/008861416", "https://tec.openplanner.team/stops/N522afb"], ["http://irail.be/stations/NMBS/008896115", "https://data.delijn.be/stops/508983"], ["http://irail.be/stations/NMBS/008872553", "https://tec.openplanner.team/stops/Btileco1"], ["http://irail.be/stations/NMBS/008891132", "https://data.delijn.be/stops/200862"], ["https://data.delijn.be/stops/408848", "https://tec.openplanner.team/stops/LRmsmvo4"], ["https://data.delijn.be/stops/306660", "https://mivb.openplanner.team/stops/1142"], ["https://data.delijn.be/stops/408875", "https://tec.openplanner.team/stops/LVu03--1"], ["https://data.delijn.be/stops/300833", "https://mivb.openplanner.team/stops/8702"], ["https://data.delijn.be/stops/301130", "https://tec.openplanner.team/stops/Buccfja2"], ["http://irail.be/stations/NMBS/008881166", "https://tec.openplanner.team/stops/H1mj126b"], ["http://irail.be/stations/NMBS/008728687", "https://tec.openplanner.team/stops/H4bx108b"], ["http://irail.be/stations/NMBS/008864915", "https://tec.openplanner.team/stops/N254abb"], ["https://data.delijn.be/stops/305264", "https://mivb.openplanner.team/stops/9787"], ["http://irail.be/stations/NMBS/008831765", "https://data.delijn.be/stops/402485"], ["https://mivb.openplanner.team/stops/5817", "https://tec.openplanner.team/stops/Bucccal4"], ["http://irail.be/stations/NMBS/008811528", "https://tec.openplanner.team/stops/Bgnvgar1"], ["https://data.delijn.be/stops/306375", "https://tec.openplanner.team/stops/Boveker1"], ["https://data.delijn.be/stops/300794", "https://mivb.openplanner.team/stops/8661"], ["https://data.delijn.be/stops/402653", "https://tec.openplanner.team/stops/LCAwals2"], ["http://irail.be/stations/NMBS/008885704", "https://tec.openplanner.team/stops/H4mo160a"], ["https://data.delijn.be/stops/308721", "https://tec.openplanner.team/stops/Bgoevli2"], ["https://data.delijn.be/stops/504299", "https://tec.openplanner.team/stops/H4mo151b"], ["http://irail.be/stations/NMBS/008895471", "https://data.delijn.be/stops/207413"], ["http://irail.be/stations/NMBS/008863446", "https://tec.openplanner.team/stops/N511aia"], ["https://data.delijn.be/stops/307635", "https://tec.openplanner.team/stops/Buccbou2"], ["https://data.delijn.be/stops/304431", "https://tec.openplanner.team/stops/Brsgfso1"], ["https://data.delijn.be/stops/300789", "https://mivb.openplanner.team/stops/1484"], ["https://data.delijn.be/stops/300304", "https://mivb.openplanner.team/stops/4273F"], ["http://irail.be/stations/NMBS/008892643", "https://data.delijn.be/stops/209736"], ["http://irail.be/stations/NMBS/008892601", "https://data.delijn.be/stops/205974"], ["http://irail.be/stations/NMBS/008863404", "https://tec.openplanner.team/stops/N506bmb"], ["https://data.delijn.be/stops/408973", "https://tec.openplanner.team/stops/LWAwila1"], ["http://irail.be/stations/NMBS/008400426", "https://data.delijn.be/stops/408922"], ["https://data.delijn.be/stops/306915", "https://tec.openplanner.team/stops/Bbosdra2"], ["http://irail.be/stations/NMBS/008881570", "https://tec.openplanner.team/stops/H1fr116a"], ["http://irail.be/stations/NMBS/008866258", "https://tec.openplanner.team/stops/X661ama"], ["http://irail.be/stations/NMBS/008822608", "https://data.delijn.be/stops/107531"], ["http://irail.be/stations/NMBS/008814308", "https://data.delijn.be/stops/300633"], ["http://irail.be/stations/NMBS/008821964", "https://data.delijn.be/stops/109232"], ["https://data.delijn.be/stops/307473", "https://tec.openplanner.team/stops/Bhalcbr1"], ["https://data.delijn.be/stops/505391", "https://tec.openplanner.team/stops/H4po129b"], ["https://data.delijn.be/stops/300945", "https://mivb.openplanner.team/stops/4115"], ["https://data.delijn.be/stops/400487", "https://tec.openplanner.team/stops/LRGmoul2"], ["https://data.delijn.be/stops/301401", "https://mivb.openplanner.team/stops/2660"], ["https://mivb.openplanner.team/stops/8341", "https://tec.openplanner.team/stops/Bsgibla2"], ["https://data.delijn.be/stops/508772", "https://tec.openplanner.team/stops/H4eh101a"], ["https://data.delijn.be/stops/404667", "https://tec.openplanner.team/stops/LJUmc--1"], ["https://data.delijn.be/stops/304642", "https://mivb.openplanner.team/stops/1066"], ["https://data.delijn.be/stops/302805", "https://tec.openplanner.team/stops/Bkrabhu1"], ["https://data.delijn.be/stops/301122", "https://tec.openplanner.team/stops/Buccdef2"], ["https://data.delijn.be/stops/302852", "https://tec.openplanner.team/stops/Bwaak102"], ["https://data.delijn.be/stops/301057", "https://mivb.openplanner.team/stops/4254B"], ["https://data.delijn.be/stops/305298", "https://tec.openplanner.team/stops/H1mk110b"], ["https://data.delijn.be/stops/301006", "https://mivb.openplanner.team/stops/1096"], ["http://irail.be/stations/NMBS/008896370", "https://data.delijn.be/stops/508873"], ["https://data.delijn.be/stops/208411", "https://tec.openplanner.team/stops/H5rx110a"], ["https://data.delijn.be/stops/405730", "https://tec.openplanner.team/stops/Lrchype1"], ["https://data.delijn.be/stops/301711", "https://mivb.openplanner.team/stops/9634"], ["https://data.delijn.be/stops/209371", "https://tec.openplanner.team/stops/H5rx138a"], ["https://data.delijn.be/stops/300876", "https://mivb.openplanner.team/stops/8823"], ["https://data.delijn.be/stops/400668", "https://tec.openplanner.team/stops/LBpberl2"], ["http://irail.be/stations/NMBS/008874609", "https://tec.openplanner.team/stops/Cairous2"], ["https://data.delijn.be/stops/306001", "https://mivb.openplanner.team/stops/0900568"], ["http://irail.be/stations/NMBS/008862018", "https://tec.openplanner.team/stops/X602aob"], ["http://irail.be/stations/NMBS/008814175", "https://data.delijn.be/stops/304436"], ["http://irail.be/stations/NMBS/008886058", "https://tec.openplanner.team/stops/H4ab100b"], ["https://data.delijn.be/stops/208177", "https://tec.openplanner.team/stops/H5el117a"], ["http://irail.be/stations/NMBS/008842838", "https://tec.openplanner.team/stops/LGmhumb1"], ["http://irail.be/stations/NMBS/008894821", "https://data.delijn.be/stops/204626"], ["http://irail.be/stations/NMBS/008893583", "https://data.delijn.be/stops/207588"], ["https://data.delijn.be/stops/300956", "https://mivb.openplanner.team/stops/1731"], ["http://irail.be/stations/NMBS/008886066", "https://tec.openplanner.team/stops/H5ar103a"], ["http://irail.be/stations/NMBS/008200516", "https://tec.openplanner.team/stops/X684aab"], ["http://irail.be/stations/NMBS/008844057", "https://tec.openplanner.team/stops/Lveecol2"], ["https://data.delijn.be/stops/301108", "https://mivb.openplanner.team/stops/1975"], ["https://data.delijn.be/stops/300920", "https://mivb.openplanner.team/stops/2901"], ["https://data.delijn.be/stops/300770", "https://mivb.openplanner.team/stops/2528"], ["http://irail.be/stations/NMBS/008812153", "https://data.delijn.be/stops/207717"], ["https://data.delijn.be/stops/207785", "https://tec.openplanner.team/stops/H5rx137a"], ["https://data.delijn.be/stops/300825", "https://mivb.openplanner.team/stops/6651"], ["http://irail.be/stations/NMBS/008832573", "https://data.delijn.be/stops/407311"], ["http://irail.be/stations/NMBS/008864824", "https://tec.openplanner.team/stops/N201apa"], ["https://data.delijn.be/stops/304115", "https://tec.openplanner.team/stops/Bovepla1"], ["https://data.delijn.be/stops/301108", "https://tec.openplanner.team/stops/Buccbas2"], ["https://data.delijn.be/stops/300826", "https://mivb.openplanner.team/stops/0430848"], ["http://irail.be/stations/NMBS/008893583", "https://data.delijn.be/stops/216019"], ["http://irail.be/stations/NMBS/008842051", "https://tec.openplanner.team/stops/Lcavign2"], ["https://data.delijn.be/stops/408908", "https://tec.openplanner.team/stops/LOTtong1"], ["https://data.delijn.be/stops/301027", "https://mivb.openplanner.team/stops/0724"], ["https://data.delijn.be/stops/300904", "https://mivb.openplanner.team/stops/6406"], ["https://data.delijn.be/stops/300881", "https://mivb.openplanner.team/stops/54"], ["http://irail.be/stations/NMBS/008811171", "https://data.delijn.be/stops/301082"], ["http://irail.be/stations/NMBS/008892254", "https://data.delijn.be/stops/507483"], ["https://data.delijn.be/stops/208767", "https://tec.openplanner.team/stops/H4wt159b"], ["http://irail.be/stations/NMBS/008841319", "https://tec.openplanner.team/stops/LBIbois1"], ["https://mivb.openplanner.team/stops/1751", "https://tec.openplanner.team/stops/Baudwav2"], ["http://irail.be/stations/NMBS/008822004", "https://data.delijn.be/stops/102984"], ["http://irail.be/stations/NMBS/008814423", "https://data.delijn.be/stops/300361"], ["http://irail.be/stations/NMBS/008883436", "https://tec.openplanner.team/stops/H1by106a"], ["http://irail.be/stations/NMBS/008893401", "https://data.delijn.be/stops/206155"], ["http://irail.be/stations/NMBS/008811676", "https://tec.openplanner.team/stops/Bllncom2"], ["http://irail.be/stations/NMBS/008811155", "https://mivb.openplanner.team/stops/2294B"], ["https://data.delijn.be/stops/307685", "https://mivb.openplanner.team/stops/1933B"], ["http://irail.be/stations/NMBS/008895570", "https://data.delijn.be/stops/208660"], ["http://irail.be/stations/NMBS/008896925", "https://data.delijn.be/stops/508280"], ["http://irail.be/stations/NMBS/008873007", "https://tec.openplanner.team/stops/N106alb"], ["http://irail.be/stations/NMBS/008812161", "https://data.delijn.be/stops/207729"], ["https://data.delijn.be/stops/208190", "https://tec.openplanner.team/stops/H5rx127a"], ["https://data.delijn.be/stops/208590", "https://tec.openplanner.team/stops/H1mk115a"], ["https://data.delijn.be/stops/300741", "https://mivb.openplanner.team/stops/8712"], ["https://mivb.openplanner.team/stops/5656", "https://tec.openplanner.team/stops/Bovejei1"], ["https://data.delijn.be/stops/303584", "https://mivb.openplanner.team/stops/9701"], ["https://mivb.openplanner.team/stops/1048F", "https://tec.openplanner.team/stops/Buccchu2"], ["https://data.delijn.be/stops/300786", "https://mivb.openplanner.team/stops/2373"], ["http://irail.be/stations/NMBS/008841202", "https://tec.openplanner.team/stops/Langare*"], ["https://data.delijn.be/stops/308447", "https://tec.openplanner.team/stops/Bovecha2"], ["https://data.delijn.be/stops/300062", "https://tec.openplanner.team/stops/Btubcal2"], ["https://data.delijn.be/stops/207791", "https://tec.openplanner.team/stops/H5rx139b"], ["https://data.delijn.be/stops/400470", "https://tec.openplanner.team/stops/LEMfort2"], ["https://mivb.openplanner.team/stops/2142", "https://tec.openplanner.team/stops/Buccfja1"], ["http://irail.be/stations/NMBS/008200520", "https://tec.openplanner.team/stops/X626aha"], ["http://irail.be/stations/NMBS/008864469", "https://tec.openplanner.team/stops/X982bub"], ["http://irail.be/stations/NMBS/008842846", "https://tec.openplanner.team/stops/LHaxhor2"], ["https://data.delijn.be/stops/300997", "https://mivb.openplanner.team/stops/3109"], ["https://data.delijn.be/stops/300398", "https://mivb.openplanner.team/stops/9677"], ["https://data.delijn.be/stops/301040", "https://mivb.openplanner.team/stops/1056"], ["https://data.delijn.be/stops/300016", "https://tec.openplanner.team/stops/Buccvoi2"], ["https://data.delijn.be/stops/300994", "https://mivb.openplanner.team/stops/6201F"], ["https://data.delijn.be/stops/400492", "https://tec.openplanner.team/stops/LBSneuv2"], ["https://data.delijn.be/stops/403805", "https://tec.openplanner.team/stops/LOreg--2"], ["https://data.delijn.be/stops/401418", "https://mivb.openplanner.team/stops/1320"], ["http://irail.be/stations/NMBS/008200134", "https://tec.openplanner.team/stops/LwMzoll2"], ["https://data.delijn.be/stops/300958", "https://mivb.openplanner.team/stops/1753"], ["http://irail.be/stations/NMBS/008813037", "https://mivb.openplanner.team/stops/0610263"], ["https://data.delijn.be/stops/300876", "https://mivb.openplanner.team/stops/4229"], ["https://data.delijn.be/stops/401922", "https://tec.openplanner.team/stops/LOrchau1"], ["https://data.delijn.be/stops/301030", "https://mivb.openplanner.team/stops/0650265"], ["https://data.delijn.be/stops/307826", "https://mivb.openplanner.team/stops/1552"], ["http://irail.be/stations/NMBS/008865110", "https://tec.openplanner.team/stops/X725adb"], ["https://data.delijn.be/stops/300925", "https://mivb.openplanner.team/stops/1535"], ["https://data.delijn.be/stops/300956", "https://mivb.openplanner.team/stops/2009"], ["https://mivb.openplanner.team/stops/3546", "https://tec.openplanner.team/stops/Bauddel2"], ["https://data.delijn.be/stops/408904", "https://tec.openplanner.team/stops/LFPchat2"], ["https://data.delijn.be/stops/408855", "https://tec.openplanner.team/stops/LFChuis1"], ["https://data.delijn.be/stops/407582", "https://tec.openplanner.team/stops/LDpulve2"], ["http://irail.be/stations/NMBS/008892643", "https://data.delijn.be/stops/208736"], ["http://irail.be/stations/NMBS/008814001", "https://mivb.openplanner.team/stops/3211"], ["https://data.delijn.be/stops/306048", "https://mivb.openplanner.team/stops/5714"], ["http://irail.be/stations/NMBS/008833670", "https://data.delijn.be/stops/401650"], ["http://irail.be/stations/NMBS/008891124", "https://data.delijn.be/stops/502605"], ["https://data.delijn.be/stops/304190", "https://mivb.openplanner.team/stops/3018"], ["http://irail.be/stations/NMBS/008895836", "https://data.delijn.be/stops/304890"], ["https://mivb.openplanner.team/stops/2355", "https://tec.openplanner.team/stops/Buccdch1"], ["http://irail.be/stations/NMBS/008874609", "https://tec.openplanner.team/stops/N543cba"], ["http://irail.be/stations/NMBS/008812062", "https://data.delijn.be/stops/300292"], ["https://data.delijn.be/stops/305428", "https://mivb.openplanner.team/stops/1629"], ["http://irail.be/stations/NMBS/008811676", "https://tec.openplanner.team/stops/Bllngar9"], ["https://data.delijn.be/stops/307832", "https://mivb.openplanner.team/stops/2225"], ["http://irail.be/stations/NMBS/008864501", "https://tec.openplanner.team/stops/N201aef"], ["http://irail.be/stations/NMBS/008883006", "https://tec.openplanner.team/stops/H3br112b"], ["https://data.delijn.be/stops/300025", "https://mivb.openplanner.team/stops/9658"], ["https://mivb.openplanner.team/stops/5265F", "https://tec.openplanner.team/stops/Bixefra1"], ["http://irail.be/stations/NMBS/008872413", "https://tec.openplanner.team/stops/Bflegar6"], ["http://irail.be/stations/NMBS/008886587", "https://tec.openplanner.team/stops/H5at122b"], ["http://irail.be/stations/NMBS/008894508", "https://data.delijn.be/stops/205063"], ["https://mivb.openplanner.team/stops/1640B", "https://tec.openplanner.team/stops/Bwolvan2"], ["http://irail.be/stations/NMBS/008812070", "https://data.delijn.be/stops/307464"], ["http://irail.be/stations/NMBS/008866530", "https://tec.openplanner.team/stops/X617ahb"], ["https://data.delijn.be/stops/306116", "https://mivb.openplanner.team/stops/4215"], ["https://data.delijn.be/stops/406564", "https://tec.openplanner.team/stops/LWOwaer1"], ["https://data.delijn.be/stops/408869", "https://tec.openplanner.team/stops/LFCvoer2"], ["http://irail.be/stations/NMBS/008822251", "https://data.delijn.be/stops/308408"], ["https://data.delijn.be/stops/403701", "https://tec.openplanner.team/stops/LBGvill2"], ["https://data.delijn.be/stops/306097", "https://tec.openplanner.team/stops/Bhevjac2"], ["http://irail.be/stations/NMBS/008814209", "https://tec.openplanner.team/stops/Bnivga61"], ["https://data.delijn.be/stops/208175", "https://tec.openplanner.team/stops/H5wo130a"], ["https://data.delijn.be/stops/304456", "https://tec.openplanner.team/stops/Brsgter1"], ["https://data.delijn.be/stops/300982", "https://mivb.openplanner.team/stops/3454"], ["http://irail.be/stations/NMBS/008891173", "https://data.delijn.be/stops/506459"], ["http://irail.be/stations/NMBS/008894755", "https://data.delijn.be/stops/204288"], ["https://data.delijn.be/stops/300365", "https://tec.openplanner.team/stops/Bwaucan1"], ["https://data.delijn.be/stops/300785", "https://mivb.openplanner.team/stops/2535B"], ["http://irail.be/stations/NMBS/008873312", "https://tec.openplanner.team/stops/N106alb"], ["http://irail.be/stations/NMBS/008893583", "https://data.delijn.be/stops/206248"], ["https://data.delijn.be/stops/300906", "https://mivb.openplanner.team/stops/5254"], ["https://data.delijn.be/stops/302448", "https://tec.openplanner.team/stops/Bzluvil1"], ["https://data.delijn.be/stops/302200", "https://tec.openplanner.team/stops/Bzluegl1"], ["https://data.delijn.be/stops/304440", "https://tec.openplanner.team/stops/Brsgfon1"], ["http://irail.be/stations/NMBS/008872579", "https://tec.openplanner.team/stops/Bvlvmar1"], ["http://irail.be/stations/NMBS/008895869", "https://data.delijn.be/stops/206502"], ["https://data.delijn.be/stops/303659", "https://tec.openplanner.team/stops/Blkbavo2"], ["https://data.delijn.be/stops/407202", "https://tec.openplanner.team/stops/LHTbeau1"], ["http://irail.be/stations/NMBS/008861119", "https://tec.openplanner.team/stops/N501mja"], ["http://irail.be/stations/NMBS/008400219", "https://tec.openplanner.team/stops/LMalarg3"], ["https://data.delijn.be/stops/400484", "https://tec.openplanner.team/stops/LRGcana2"], ["http://irail.be/stations/NMBS/008200136", "https://tec.openplanner.team/stops/X761aab"], ["http://irail.be/stations/NMBS/008814373", "https://mivb.openplanner.team/stops/5720F"], ["https://data.delijn.be/stops/308722", "https://tec.openplanner.team/stops/Bgoesch2"], ["https://data.delijn.be/stops/407721", "https://tec.openplanner.team/stops/LMaslav4"], ["http://irail.be/stations/NMBS/008814126", "https://mivb.openplanner.team/stops/2663"], ["http://irail.be/stations/NMBS/008873320", "https://tec.openplanner.team/stops/N161aab"], ["https://data.delijn.be/stops/304178", "https://tec.openplanner.team/stops/Bbldgar2"], ["https://data.delijn.be/stops/409797", "https://tec.openplanner.team/stops/LBSvi322"], ["https://mivb.openplanner.team/stops/9972F", "https://tec.openplanner.team/stops/Buccdst1"], ["http://irail.be/stations/NMBS/008893559", "https://data.delijn.be/stops/202479"], ["https://data.delijn.be/stops/408892", "https://tec.openplanner.team/stops/LFMstat2"], ["https://data.delijn.be/stops/300856", "https://mivb.openplanner.team/stops/0521"], ["https://data.delijn.be/stops/400482", "https://tec.openplanner.team/stops/LRGeg--2"], ["https://data.delijn.be/stops/301675", "https://tec.openplanner.team/stops/Bnetace1"], ["https://data.delijn.be/stops/304191", "https://mivb.openplanner.team/stops/3018"], ["https://data.delijn.be/stops/504242", "https://tec.openplanner.team/stops/H4co149a"], ["https://data.delijn.be/stops/504316", "https://tec.openplanner.team/stops/H4mo133b"], ["https://data.delijn.be/stops/208589", "https://tec.openplanner.team/stops/Bspkdon2"], ["http://irail.be/stations/NMBS/008879004", "https://tec.openplanner.team/stops/H1er106a"], ["http://irail.be/stations/NMBS/008863354", "https://tec.openplanner.team/stops/N501kna"], ["https://data.delijn.be/stops/407647", "https://tec.openplanner.team/stops/LBPmili1"], ["https://data.delijn.be/stops/307243", "https://mivb.openplanner.team/stops/6806F"], ["https://data.delijn.be/stops/404653", "https://tec.openplanner.team/stops/Llabriq1"], ["http://irail.be/stations/NMBS/008400426", "https://tec.openplanner.team/stops/LMazonn3"], ["https://data.delijn.be/stops/301043", "https://mivb.openplanner.team/stops/4595"], ["https://data.delijn.be/stops/509240", "https://tec.openplanner.team/stops/H4co146b"], ["http://irail.be/stations/NMBS/008864469", "https://tec.openplanner.team/stops/X982aja"], ["https://data.delijn.be/stops/308127", "https://tec.openplanner.team/stops/Bbosgar2"], ["https://data.delijn.be/stops/401416", "https://mivb.openplanner.team/stops/4369"], ["http://irail.be/stations/NMBS/008861135", "https://tec.openplanner.team/stops/N551afb"], ["http://irail.be/stations/NMBS/008865227", "https://tec.openplanner.team/stops/X878aba"], ["http://irail.be/stations/NMBS/008841442", "https://tec.openplanner.team/stops/LRemorr4"], ["https://data.delijn.be/stops/308824", "https://tec.openplanner.team/stops/Blanove1"], ["https://data.delijn.be/stops/305236", "https://tec.openplanner.team/stops/Bmrqgar2"], ["https://data.delijn.be/stops/504455", "https://tec.openplanner.team/stops/H4tg170a"], ["https://data.delijn.be/stops/304441", "https://tec.openplanner.team/stops/Brsgges2"], ["http://irail.be/stations/NMBS/008872306", "https://tec.openplanner.team/stops/Cjufrat2"], ["http://irail.be/stations/NMBS/008832003", "https://data.delijn.be/stops/405604"], ["http://irail.be/stations/NMBS/008833233", "https://data.delijn.be/stops/304358"], ["https://data.delijn.be/stops/305348", "https://tec.openplanner.team/stops/Bwavlep2"], ["http://irail.be/stations/NMBS/008882701", "https://tec.openplanner.team/stops/Bmanfbg1"], ["https://data.delijn.be/stops/301027", "https://mivb.openplanner.team/stops/1125"], ["http://irail.be/stations/NMBS/008866407", "https://tec.openplanner.team/stops/X608aib"], ["https://mivb.openplanner.team/stops/2146", "https://tec.openplanner.team/stops/Buccpes1"], ["http://irail.be/stations/NMBS/008811270", "https://data.delijn.be/stops/302094"], ["https://data.delijn.be/stops/308957", "https://mivb.openplanner.team/stops/4359"], ["https://data.delijn.be/stops/307640", "https://mivb.openplanner.team/stops/1944"], ["http://irail.be/stations/NMBS/008861127", "https://tec.openplanner.team/stops/N528aia"], ["https://data.delijn.be/stops/305324", "https://mivb.openplanner.team/stops/9754B"], ["https://data.delijn.be/stops/408922", "https://tec.openplanner.team/stops/LTEzinn2"], ["http://irail.be/stations/NMBS/008814266", "https://tec.openplanner.team/stops/Bwatath3"], ["https://data.delijn.be/stops/300972", "https://tec.openplanner.team/stops/Baudvdr2"], ["https://data.delijn.be/stops/208184", "https://tec.openplanner.team/stops/H5rx121b"], ["http://irail.be/stations/NMBS/008822459", "https://data.delijn.be/stops/305829"], ["https://data.delijn.be/stops/405361", "https://tec.openplanner.team/stops/Blankal4"], ["https://data.delijn.be/stops/504380", "https://tec.openplanner.team/stops/H4pl114a"], ["http://irail.be/stations/NMBS/008871183", "https://tec.openplanner.team/stops/Chhsncb1"], ["https://data.delijn.be/stops/405364", "https://tec.openplanner.team/stops/Braccen2"], ["https://data.delijn.be/stops/407567", "https://tec.openplanner.team/stops/LWHzave2"], ["http://irail.be/stations/NMBS/008832433", "https://data.delijn.be/stops/401933"], ["https://data.delijn.be/stops/209597", "https://tec.openplanner.team/stops/H1en104d"], ["https://mivb.openplanner.team/stops/1352", "https://tec.openplanner.team/stops/Bixleix2"], ["https://data.delijn.be/stops/509295", "https://tec.openplanner.team/stops/H4lu125a"], ["http://irail.be/stations/NMBS/008892106", "https://data.delijn.be/stops/211117"], ["https://data.delijn.be/stops/300906", "https://mivb.openplanner.team/stops/4705"], ["https://data.delijn.be/stops/302382", "https://tec.openplanner.team/stops/Bwavlav2"], ["https://data.delijn.be/stops/301029", "https://mivb.openplanner.team/stops/5020"], ["http://irail.be/stations/NMBS/008895067", "https://data.delijn.be/stops/207829"], ["http://irail.be/stations/NMBS/008894151", "https://data.delijn.be/stops/202179"], ["https://data.delijn.be/stops/509237", "https://tec.openplanner.team/stops/H4co110b"], ["https://data.delijn.be/stops/219015", "https://tec.openplanner.team/stops/H5rx113b"], ["http://irail.be/stations/NMBS/008815016", "https://data.delijn.be/stops/301059"], ["http://irail.be/stations/NMBS/008871100", "https://tec.openplanner.team/stops/Cmaprov2"], ["https://data.delijn.be/stops/307715", "https://tec.openplanner.team/stops/Brsgera1"], ["http://irail.be/stations/NMBS/008865300", "https://tec.openplanner.team/stops/X804ala"], ["https://data.delijn.be/stops/504230", "https://tec.openplanner.team/stops/H4co158a"], ["http://irail.be/stations/NMBS/008881430", "https://tec.openplanner.team/stops/H1ha189a"], ["https://data.delijn.be/stops/300942", "https://mivb.openplanner.team/stops/3317"], ["http://irail.be/stations/NMBS/008883311", "https://data.delijn.be/stops/301417"], ["https://data.delijn.be/stops/308729", "https://tec.openplanner.team/stops/Bhakmkr1"], ["http://irail.be/stations/NMBS/008893054", "https://data.delijn.be/stops/202858"], ["https://data.delijn.be/stops/305436", "https://mivb.openplanner.team/stops/1627"], ["https://mivb.openplanner.team/stops/1379", "https://tec.openplanner.team/stops/Bwolrod1"], ["http://irail.be/stations/NMBS/008871829", "https://tec.openplanner.team/stops/Cthalli3"], ["https://data.delijn.be/stops/305518", "https://mivb.openplanner.team/stops/7501"], ["https://mivb.openplanner.team/stops/3953", "https://tec.openplanner.team/stops/Bettlha2"], ["https://data.delijn.be/stops/302141", "https://tec.openplanner.team/stops/Bptecar1"], ["https://data.delijn.be/stops/303631", "https://mivb.openplanner.team/stops/6608G"], ["http://irail.be/stations/NMBS/008861143", "https://tec.openplanner.team/stops/N551aha"], ["http://irail.be/stations/NMBS/008871217", "https://tec.openplanner.team/stops/Crolach2"], ["https://data.delijn.be/stops/301072", "https://mivb.openplanner.team/stops/1793"], ["http://irail.be/stations/NMBS/008200110", "https://tec.openplanner.team/stops/X626afb"], ["http://irail.be/stations/NMBS/008889045", "https://tec.openplanner.team/stops/H4ht173a"], ["http://irail.be/stations/NMBS/008866118", "https://tec.openplanner.team/stops/X601cca"], ["https://data.delijn.be/stops/509240", "https://tec.openplanner.team/stops/H4co107a"], ["https://data.delijn.be/stops/408853", "https://tec.openplanner.team/stops/LFChofv2"], ["https://data.delijn.be/stops/301419", "https://tec.openplanner.team/stops/H1en106b"], ["https://data.delijn.be/stops/400485", "https://tec.openplanner.team/stops/LRGcana1"], ["http://irail.be/stations/NMBS/008864337", "https://tec.openplanner.team/stops/X994aib"], ["https://data.delijn.be/stops/300855", "https://mivb.openplanner.team/stops/0521"], ["http://irail.be/stations/NMBS/007015440", "https://data.delijn.be/stops/505212"], ["https://data.delijn.be/stops/410319", "https://tec.openplanner.team/stops/LMalarg4"], ["https://data.delijn.be/stops/300983", "https://mivb.openplanner.team/stops/5868"], ["https://data.delijn.be/stops/301009", "https://mivb.openplanner.team/stops/1236"], ["http://irail.be/stations/NMBS/008841608", "https://tec.openplanner.team/stops/Lhrgall2"], ["http://irail.be/stations/NMBS/008829009", "https://data.delijn.be/stops/104246"], ["https://data.delijn.be/stops/408925", "https://tec.openplanner.team/stops/LTEnuro2"], ["http://irail.be/stations/NMBS/008892403", "https://data.delijn.be/stops/504863"], ["https://data.delijn.be/stops/308644", "https://tec.openplanner.team/stops/Boveklo2"], ["http://irail.be/stations/NMBS/008891645", "https://data.delijn.be/stops/501661"], ["http://irail.be/stations/NMBS/008863438", "https://tec.openplanner.team/stops/N506bkb"], ["http://irail.be/stations/NMBS/008843430", "https://tec.openplanner.team/stops/LBsfer-2"], ["https://data.delijn.be/stops/400483", "https://tec.openplanner.team/stops/LRGeg--2"], ["http://irail.be/stations/NMBS/008822848", "https://data.delijn.be/stops/107893"], ["https://data.delijn.be/stops/207796", "https://tec.openplanner.team/stops/H4ss153a"], ["http://irail.be/stations/NMBS/008812047", "https://mivb.openplanner.team/stops/2803"], ["https://data.delijn.be/stops/300987", "https://mivb.openplanner.team/stops/4558"], ["https://data.delijn.be/stops/304316", "https://mivb.openplanner.team/stops/9725"], ["https://data.delijn.be/stops/300983", "https://mivb.openplanner.team/stops/3407"], ["https://data.delijn.be/stops/408902", "https://tec.openplanner.team/stops/LFMveur2"], ["https://data.delijn.be/stops/308047", "https://tec.openplanner.team/stops/Bove4ko1"], ["http://irail.be/stations/NMBS/008863115", "https://tec.openplanner.team/stops/N501kha"], ["https://data.delijn.be/stops/305893", "https://mivb.openplanner.team/stops/9729"], ["https://data.delijn.be/stops/304600", "https://mivb.openplanner.team/stops/1383"], ["http://irail.be/stations/NMBS/008821600", "https://data.delijn.be/stops/107302"], ["https://data.delijn.be/stops/408856", "https://tec.openplanner.team/stops/LFChuis2"], ["http://irail.be/stations/NMBS/008895760", "https://data.delijn.be/stops/217007"], ["http://irail.be/stations/NMBS/008874583", "https://tec.openplanner.team/stops/N543cnb"], ["https://data.delijn.be/stops/301072", "https://mivb.openplanner.team/stops/4111"], ["https://data.delijn.be/stops/307086", "https://tec.openplanner.team/stops/Btiegoo1"], ["https://data.delijn.be/stops/410137", "https://tec.openplanner.team/stops/Lalexpa1"], ["https://data.delijn.be/stops/307024", "https://tec.openplanner.team/stops/H1en103a"], ["https://data.delijn.be/stops/408926", "https://tec.openplanner.team/stops/LTEzinn2"], ["http://irail.be/stations/NMBS/008881562", "https://tec.openplanner.team/stops/H1fr130b"], ["https://data.delijn.be/stops/400451", "https://tec.openplanner.team/stops/LBPauto1"], ["https://data.delijn.be/stops/407209", "https://tec.openplanner.team/stops/LHTcent2"], ["http://irail.be/stations/NMBS/008824158", "https://data.delijn.be/stops/102910"], ["https://data.delijn.be/stops/306003", "https://tec.openplanner.team/stops/Brsrabe2"], ["https://data.delijn.be/stops/301006", "https://mivb.openplanner.team/stops/5172F"], ["http://irail.be/stations/NMBS/008895430", "https://data.delijn.be/stops/207432"], ["http://irail.be/stations/NMBS/008895208", "https://data.delijn.be/stops/208081"], ["https://data.delijn.be/stops/405736", "https://tec.openplanner.team/stops/Lrcvill2"], ["http://irail.be/stations/NMBS/008822228", "https://data.delijn.be/stops/109507"], ["http://irail.be/stations/NMBS/008863867", "https://tec.openplanner.team/stops/N308agb"], ["http://irail.be/stations/NMBS/008821337", "https://data.delijn.be/stops/107208"], ["http://irail.be/stations/NMBS/008881570", "https://tec.openplanner.team/stops/H1fr127b"], ["https://data.delijn.be/stops/305234", "https://mivb.openplanner.team/stops/9607"], ["https://data.delijn.be/stops/304438", "https://tec.openplanner.team/stops/Brsgsan2"], ["https://data.delijn.be/stops/304774", "https://mivb.openplanner.team/stops/2218"], ["http://irail.be/stations/NMBS/008891629", "https://data.delijn.be/stops/501532"], ["http://irail.be/stations/NMBS/008871415", "https://tec.openplanner.team/stops/Canboha1"], ["http://irail.be/stations/NMBS/008812260", "https://data.delijn.be/stops/303618"], ["https://mivb.openplanner.team/stops/1250", "https://tec.openplanner.team/stops/Buccdho2"], ["http://irail.be/stations/NMBS/008846201", "https://tec.openplanner.team/stops/LVIastr1"], ["https://mivb.openplanner.team/stops/5480", "https://tec.openplanner.team/stops/Bettcha3"], ["https://mivb.openplanner.team/stops/1233", "https://tec.openplanner.team/stops/Bixlqll1"], ["https://data.delijn.be/stops/509532", "https://tec.openplanner.team/stops/H4wn126a"], ["http://irail.be/stations/NMBS/008831781", "https://data.delijn.be/stops/402119"], ["https://data.delijn.be/stops/301074", "https://mivb.openplanner.team/stops/3100"], ["http://irail.be/stations/NMBS/008814001", "https://mivb.openplanner.team/stops/2539"], ["https://data.delijn.be/stops/408911", "https://tec.openplanner.team/stops/LVu03--2"], ["https://data.delijn.be/stops/300974", "https://mivb.openplanner.team/stops/0250336"], ["https://mivb.openplanner.team/stops/2753", "https://tec.openplanner.team/stops/Baudwav2"], ["http://irail.be/stations/NMBS/008886074", "https://tec.openplanner.team/stops/H1gq153b"], ["https://data.delijn.be/stops/408839", "https://tec.openplanner.team/stops/LRmkerk1"], ["https://data.delijn.be/stops/406212", "https://tec.openplanner.team/stops/LSIvieu2"], ["https://data.delijn.be/stops/408843", "https://tec.openplanner.team/stops/LRmstat1"], ["https://data.delijn.be/stops/302804", "https://tec.openplanner.team/stops/Bkrabhu1"], ["http://irail.be/stations/NMBS/008821030", "https://data.delijn.be/stops/105315"], ["https://data.delijn.be/stops/301680", "https://tec.openplanner.team/stops/Bnetegl4"], ["http://irail.be/stations/NMBS/008893047", "https://data.delijn.be/stops/200603"], ["http://irail.be/stations/NMBS/008872009", "https://tec.openplanner.team/stops/Cmlgoff1"], ["http://irail.be/stations/NMBS/008892908", "https://data.delijn.be/stops/208739"], ["https://data.delijn.be/stops/303997", "https://tec.openplanner.team/stops/Blhurcl1"], ["https://data.delijn.be/stops/302875", "https://tec.openplanner.team/stops/Buccron1"], ["http://irail.be/stations/NMBS/008881174", "https://tec.openplanner.team/stops/H1ml109a"], ["https://data.delijn.be/stops/302120", "https://tec.openplanner.team/stops/Bpte1ma2"], ["http://irail.be/stations/NMBS/008833274", "https://data.delijn.be/stops/304427"], ["https://data.delijn.be/stops/305916", "https://mivb.openplanner.team/stops/5105"], ["https://data.delijn.be/stops/301034", "https://tec.openplanner.team/stops/Bsgihmo1"], ["https://data.delijn.be/stops/300740", "https://mivb.openplanner.team/stops/2225"], ["http://irail.be/stations/NMBS/008866654", "https://tec.openplanner.team/stops/X615bcb"], ["http://irail.be/stations/NMBS/008862018", "https://tec.openplanner.team/stops/X602aga"], ["https://data.delijn.be/stops/302929", "https://tec.openplanner.team/stops/Blhurcl1"], ["https://data.delijn.be/stops/209181", "https://tec.openplanner.team/stops/H5rx131a"], ["https://data.delijn.be/stops/308870", "https://mivb.openplanner.team/stops/5525"], ["https://data.delijn.be/stops/408882", "https://tec.openplanner.team/stops/LFCvoer1"], ["https://data.delijn.be/stops/509738", "https://tec.openplanner.team/stops/H4mo195a"], ["https://data.delijn.be/stops/308871", "https://mivb.openplanner.team/stops/1835"], ["https://data.delijn.be/stops/300773", "https://mivb.openplanner.team/stops/2375"], ["http://irail.be/stations/NMBS/008886058", "https://tec.openplanner.team/stops/H1ch101b"], ["http://irail.be/stations/NMBS/008864824", "https://tec.openplanner.team/stops/N211avb"], ["https://data.delijn.be/stops/300767", "https://mivb.openplanner.team/stops/3802"], ["https://data.delijn.be/stops/405700", "https://tec.openplanner.team/stops/Llgelis2"], ["http://irail.be/stations/NMBS/008883022", "https://tec.openplanner.team/stops/Bhenron2"], ["https://data.delijn.be/stops/408840", "https://tec.openplanner.team/stops/LRmkult2"], ["https://data.delijn.be/stops/401413", "https://mivb.openplanner.team/stops/4363"], ["http://irail.be/stations/NMBS/008811288", "https://data.delijn.be/stops/306341"], ["https://data.delijn.be/stops/407215", "https://tec.openplanner.team/stops/LHSfexh2"], ["https://data.delijn.be/stops/504317", "https://tec.openplanner.team/stops/H4mo208a"], ["http://irail.be/stations/NMBS/008861424", "https://tec.openplanner.team/stops/N525atb"], ["https://data.delijn.be/stops/504294", "https://tec.openplanner.team/stops/H4mo169a"], ["https://data.delijn.be/stops/300316", "https://tec.openplanner.team/stops/Bhmmcge2"], ["http://irail.be/stations/NMBS/008831765", "https://data.delijn.be/stops/402108"], ["http://irail.be/stations/NMBS/008871670", "https://tec.openplanner.team/stops/Clsferr1"], ["http://irail.be/stations/NMBS/008832615", "https://data.delijn.be/stops/406812"], ["https://data.delijn.be/stops/408920", "https://tec.openplanner.team/stops/LTEzinn1"], ["http://irail.be/stations/NMBS/008895638", "https://tec.openplanner.team/stops/Bspkker2"], ["https://data.delijn.be/stops/408952", "https://tec.openplanner.team/stops/LWAor--2"], ["https://data.delijn.be/stops/307169", "https://tec.openplanner.team/stops/Bhalath1"], ["https://data.delijn.be/stops/404687", "https://tec.openplanner.team/stops/LWinavi1"], ["https://data.delijn.be/stops/302875", "https://mivb.openplanner.team/stops/2148"], ["http://irail.be/stations/NMBS/008813045", "https://mivb.openplanner.team/stops/6308"], ["https://data.delijn.be/stops/300926", "https://mivb.openplanner.team/stops/4500"], ["https://mivb.openplanner.team/stops/0350740", "https://tec.openplanner.team/stops/Bsgicfo1"], ["https://data.delijn.be/stops/304933", "https://mivb.openplanner.team/stops/9751"], ["https://data.delijn.be/stops/504232", "https://tec.openplanner.team/stops/H4co105a"], ["https://data.delijn.be/stops/301015", "https://mivb.openplanner.team/stops/4104"], ["http://irail.be/stations/NMBS/008883121", "https://tec.openplanner.team/stops/H1ne142b"], ["http://irail.be/stations/NMBS/008861168", "https://tec.openplanner.team/stops/N534cbh"], ["https://data.delijn.be/stops/305558", "https://mivb.openplanner.team/stops/9600B"], ["https://data.delijn.be/stops/301166", "https://mivb.openplanner.team/stops/2117B"], ["http://irail.be/stations/NMBS/008832243", "https://data.delijn.be/stops/404176"], ["https://data.delijn.be/stops/300978", "https://mivb.openplanner.team/stops/6363"], ["https://data.delijn.be/stops/305336", "https://mivb.openplanner.team/stops/2854"], ["http://irail.be/stations/NMBS/008886009", "https://tec.openplanner.team/stops/H5at116d"], ["https://data.delijn.be/stops/303631", "https://mivb.openplanner.team/stops/2262"], ["https://data.delijn.be/stops/209192", "https://tec.openplanner.team/stops/H5rx136a"], ["http://irail.be/stations/NMBS/008822533", "https://data.delijn.be/stops/301871"], ["http://irail.be/stations/NMBS/008844347", "https://tec.openplanner.team/stops/LLrdigu2"], ["https://data.delijn.be/stops/402503", "https://tec.openplanner.team/stops/LWAbeec1"], ["http://irail.be/stations/NMBS/008849072", "https://tec.openplanner.team/stops/X761abb"], ["https://data.delijn.be/stops/408890", "https://tec.openplanner.team/stops/LFMkrut4"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2le176a"], ["https://data.delijn.be/stops/301113", "https://mivb.openplanner.team/stops/1965"], ["https://data.delijn.be/stops/304447", "https://tec.openplanner.team/stops/Brsgleq1"], ["https://data.delijn.be/stops/408968", "https://tec.openplanner.team/stops/LWAwegg1"], ["http://irail.be/stations/NMBS/008821196", "https://data.delijn.be/stops/104405"], ["https://data.delijn.be/stops/304446", "https://tec.openplanner.team/stops/Brsgleq2"], ["https://data.delijn.be/stops/302429", "https://tec.openplanner.team/stops/Bjodcar2"], ["https://data.delijn.be/stops/305311", "https://mivb.openplanner.team/stops/9787"], ["https://data.delijn.be/stops/509740", "https://tec.openplanner.team/stops/H4mo195a"], ["https://data.delijn.be/stops/408802", "https://tec.openplanner.team/stops/LVItcm-1"], ["https://data.delijn.be/stops/300839", "https://mivb.openplanner.team/stops/6482"], ["https://data.delijn.be/stops/307197", "https://tec.openplanner.team/stops/Bhaleur2"], ["https://data.delijn.be/stops/304444", "https://tec.openplanner.team/stops/Bblapri1"], ["https://data.delijn.be/stops/305144", "https://tec.openplanner.team/stops/Bmrqpla2"], ["http://irail.be/stations/NMBS/008874716", "https://tec.openplanner.team/stops/Cauushm1"], ["http://irail.be/stations/NMBS/008861549", "https://tec.openplanner.team/stops/Bmsgstj2"], ["http://irail.be/stations/NMBS/008843331", "https://tec.openplanner.team/stops/LAMgare2"], ["https://data.delijn.be/stops/408828", "https://tec.openplanner.team/stops/LVIferm2"], ["https://data.delijn.be/stops/306311", "https://mivb.openplanner.team/stops/5724"], ["https://data.delijn.be/stops/302871", "https://mivb.openplanner.team/stops/5032B"], ["https://data.delijn.be/stops/300579", "https://mivb.openplanner.team/stops/3112"], ["https://data.delijn.be/stops/209180", "https://tec.openplanner.team/stops/H5el101a"], ["https://data.delijn.be/stops/509317", "https://tec.openplanner.team/stops/H4mo207b"], ["http://irail.be/stations/NMBS/007015440", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/408951", "https://tec.openplanner.team/stops/LWApr%C3%A9s3"], ["https://data.delijn.be/stops/304096", "https://tec.openplanner.team/stops/Bovetwe2"], ["https://data.delijn.be/stops/504310", "https://tec.openplanner.team/stops/H4mo160a"], ["http://irail.be/stations/NMBS/008871670", "https://tec.openplanner.team/stops/H1ls108b"], ["https://data.delijn.be/stops/301156", "https://mivb.openplanner.team/stops/2757C"], ["https://data.delijn.be/stops/304216", "https://mivb.openplanner.team/stops/7621"], ["https://data.delijn.be/stops/306400", "https://mivb.openplanner.team/stops/1242"], ["http://irail.be/stations/NMBS/008891165", "https://data.delijn.be/stops/209651"], ["http://irail.be/stations/NMBS/008871332", "https://tec.openplanner.team/stops/Cobhaut2"], ["http://irail.be/stations/NMBS/008833605", "https://data.delijn.be/stops/405351"], ["https://data.delijn.be/stops/400683", "https://tec.openplanner.team/stops/LHgpost1"], ["http://irail.be/stations/NMBS/008811437", "https://data.delijn.be/stops/301154"], ["https://data.delijn.be/stops/301021", "https://mivb.openplanner.team/stops/1095"], ["http://irail.be/stations/NMBS/008871365", "https://tec.openplanner.team/stops/Cgpmoul2"], ["https://data.delijn.be/stops/208416", "https://tec.openplanner.team/stops/H4rs118b"], ["https://data.delijn.be/stops/300861", "https://mivb.openplanner.team/stops/4254B"], ["https://mivb.openplanner.team/stops/5421", "https://tec.openplanner.team/stops/Bwbfeta2"], ["http://irail.be/stations/NMBS/008844057", "https://tec.openplanner.team/stops/Lvehv--4"], ["http://irail.be/stations/NMBS/008811254", "https://data.delijn.be/stops/302726"], ["http://irail.be/stations/NMBS/008871688", "https://tec.openplanner.team/stops/H1fv102a"], ["http://irail.be/stations/NMBS/008866845", "https://tec.openplanner.team/stops/X641ahb"], ["https://data.delijn.be/stops/301685", "https://tec.openplanner.team/stops/Bnetrec1"], ["http://irail.be/stations/NMBS/008815016", "https://mivb.openplanner.team/stops/8773"], ["https://data.delijn.be/stops/301159", "https://mivb.openplanner.team/stops/5921B"], ["https://data.delijn.be/stops/207763", "https://tec.openplanner.team/stops/H5rx145a"], ["http://irail.be/stations/NMBS/008814415", "https://data.delijn.be/stops/303323"], ["http://irail.be/stations/NMBS/008894821", "https://data.delijn.be/stops/204336"], ["https://data.delijn.be/stops/302140", "https://tec.openplanner.team/stops/Bptecal2"], ["http://irail.be/stations/NMBS/008892403", "https://data.delijn.be/stops/508344"], ["https://data.delijn.be/stops/304640", "https://mivb.openplanner.team/stops/9679"], ["http://irail.be/stations/NMBS/008400426", "https://data.delijn.be/stops/406211"], ["http://irail.be/stations/NMBS/008719203", "https://tec.openplanner.team/stops/X696aea"], ["https://data.delijn.be/stops/408883", "https://tec.openplanner.team/stops/LFCkett2"], ["http://irail.be/stations/NMBS/008891611", "https://data.delijn.be/stops/501532"], ["http://irail.be/stations/NMBS/008843224", "https://tec.openplanner.team/stops/Lpocent1"], ["https://data.delijn.be/stops/306284", "https://mivb.openplanner.team/stops/9946"], ["https://data.delijn.be/stops/305466", "https://mivb.openplanner.team/stops/0340341"], ["http://irail.be/stations/NMBS/008811247", "https://data.delijn.be/stops/305581"], ["http://irail.be/stations/NMBS/008832243", "https://data.delijn.be/stops/404164"], ["http://irail.be/stations/NMBS/008893070", "https://data.delijn.be/stops/208698"], ["http://irail.be/stations/NMBS/008875002", "https://tec.openplanner.team/stops/N134aea"], ["https://data.delijn.be/stops/301059", "https://mivb.openplanner.team/stops/4254B"], ["https://data.delijn.be/stops/304038", "https://tec.openplanner.team/stops/Boveklo1"], ["http://irail.be/stations/NMBS/008728687", "https://tec.openplanner.team/stops/H4ep129a"], ["https://data.delijn.be/stops/300982", "https://mivb.openplanner.team/stops/3408"], ["http://irail.be/stations/NMBS/008833001", "https://data.delijn.be/stops/302985"], ["http://irail.be/stations/NMBS/008896735", "https://data.delijn.be/stops/505166"], ["https://data.delijn.be/stops/302888", "https://tec.openplanner.team/stops/Bhevhha2"], ["https://data.delijn.be/stops/300785", "https://mivb.openplanner.team/stops/7700105"], ["http://irail.be/stations/NMBS/008865128", "https://tec.openplanner.team/stops/X725awa"], ["http://irail.be/stations/NMBS/008881406", "https://tec.openplanner.team/stops/H1ob341a"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N219aca"], ["https://data.delijn.be/stops/306647", "https://mivb.openplanner.team/stops/0350740"], ["http://irail.be/stations/NMBS/008891553", "https://data.delijn.be/stops/501461"], ["https://data.delijn.be/stops/408492", "https://tec.openplanner.team/stops/LWAvisi1"], ["http://irail.be/stations/NMBS/008821824", "https://data.delijn.be/stops/108161"], ["https://data.delijn.be/stops/304089", "https://tec.openplanner.team/stops/Bovesog1"], ["http://irail.be/stations/NMBS/008400219", "https://tec.openplanner.team/stops/LLAcalv1"], ["https://data.delijn.be/stops/300728", "https://tec.openplanner.team/stops/Bbeaech2"], ["http://irail.be/stations/NMBS/008811437", "https://mivb.openplanner.team/stops/9059"], ["https://data.delijn.be/stops/508775", "https://tec.openplanner.team/stops/H4eh101b"], ["https://data.delijn.be/stops/301014", "https://mivb.openplanner.team/stops/4003G"], ["https://data.delijn.be/stops/305429", "https://mivb.openplanner.team/stops/1620B"], ["https://mivb.openplanner.team/stops/4075", "https://tec.openplanner.team/stops/Buccdst1"], ["http://irail.be/stations/NMBS/008843224", "https://tec.openplanner.team/stops/Lfhdone1"], ["http://irail.be/stations/NMBS/008811437", "https://mivb.openplanner.team/stops/4319"], ["http://irail.be/stations/NMBS/008841467", "https://tec.openplanner.team/stops/LNveg--1"], ["http://irail.be/stations/NMBS/008891140", "https://data.delijn.be/stops/200886"], ["https://data.delijn.be/stops/306117", "https://mivb.openplanner.team/stops/1488"], ["https://data.delijn.be/stops/205982", "https://tec.openplanner.team/stops/H4wt159a"], ["http://irail.be/stations/NMBS/008863354", "https://tec.openplanner.team/stops/N501kga"], ["http://irail.be/stations/NMBS/008821634", "https://data.delijn.be/stops/106585"], ["https://data.delijn.be/stops/408800", "https://tec.openplanner.team/stops/LVIacac1"], ["https://data.delijn.be/stops/504296", "https://tec.openplanner.team/stops/H4mo161a"], ["http://irail.be/stations/NMBS/008889011", "https://tec.openplanner.team/stops/H4rx141b"], ["https://data.delijn.be/stops/300751", "https://mivb.openplanner.team/stops/7650210"], ["https://data.delijn.be/stops/304216", "https://mivb.openplanner.team/stops/6862"], ["https://data.delijn.be/stops/307200", "https://tec.openplanner.team/stops/Bhalker1"], ["http://irail.be/stations/NMBS/008814340", "https://data.delijn.be/stops/303282"], ["https://data.delijn.be/stops/301042", "https://mivb.openplanner.team/stops/1237"], ["http://irail.be/stations/NMBS/008893443", "https://data.delijn.be/stops/206354"], ["https://data.delijn.be/stops/300962", "https://mivb.openplanner.team/stops/2046"], ["http://irail.be/stations/NMBS/008895646", "https://tec.openplanner.team/stops/Bspkdon2"], ["https://data.delijn.be/stops/300933", "https://mivb.openplanner.team/stops/3304"], ["https://data.delijn.be/stops/407208", "https://tec.openplanner.team/stops/LHTmc--1"], ["https://data.delijn.be/stops/408979", "https://tec.openplanner.team/stops/LWAcost2"], ["https://data.delijn.be/stops/205982", "https://tec.openplanner.team/stops/H5rx112b"], ["https://data.delijn.be/stops/305229", "https://mivb.openplanner.team/stops/9607"], ["https://data.delijn.be/stops/304929", "https://mivb.openplanner.team/stops/9784B"], ["https://data.delijn.be/stops/504294", "https://tec.openplanner.team/stops/H4mo138a"], ["https://data.delijn.be/stops/300980", "https://mivb.openplanner.team/stops/6021"], ["https://data.delijn.be/stops/308649", "https://mivb.openplanner.team/stops/9600B"], ["http://irail.be/stations/NMBS/008871308", "https://tec.openplanner.team/stops/Cpccoss1"], ["https://data.delijn.be/stops/300950", "https://mivb.openplanner.team/stops/1314"], ["https://data.delijn.be/stops/405739", "https://tec.openplanner.team/stops/Lrc594-1"], ["https://data.delijn.be/stops/301110", "https://tec.openplanner.team/stops/Buccbou1"], ["http://irail.be/stations/NMBS/008873239", "https://tec.openplanner.team/stops/N118bba"], ["http://irail.be/stations/NMBS/008841467", "https://tec.openplanner.team/stops/LMObouh1"], ["https://data.delijn.be/stops/300749", "https://mivb.openplanner.team/stops/3234"], ["https://data.delijn.be/stops/401402", "https://mivb.openplanner.team/stops/3317"], ["https://data.delijn.be/stops/307637", "https://mivb.openplanner.team/stops/1959"], ["https://data.delijn.be/stops/300786", "https://mivb.openplanner.team/stops/1482"], ["http://irail.be/stations/NMBS/008813037", "https://mivb.openplanner.team/stops/4323"], ["http://irail.be/stations/NMBS/008896412", "https://data.delijn.be/stops/504239"], ["http://irail.be/stations/NMBS/008841731", "https://tec.openplanner.team/stops/LGLobor1"], ["https://data.delijn.be/stops/300806", "https://mivb.openplanner.team/stops/6858C"], ["https://data.delijn.be/stops/302808", "https://mivb.openplanner.team/stops/1661"], ["https://mivb.openplanner.team/stops/2959", "https://tec.openplanner.team/stops/Bsgimca1"], ["http://irail.be/stations/NMBS/008812021", "https://mivb.openplanner.team/stops/8794"], ["https://data.delijn.be/stops/304877", "https://mivb.openplanner.team/stops/9575"], ["https://data.delijn.be/stops/302892", "https://tec.openplanner.team/stops/Bhevjal1"], ["https://data.delijn.be/stops/300338", "https://tec.openplanner.team/stops/Balswin2"], ["http://irail.be/stations/NMBS/008886561", "https://tec.openplanner.team/stops/H5is168a"], ["http://irail.be/stations/NMBS/008881166", "https://tec.openplanner.team/stops/H1ju120c"], ["https://data.delijn.be/stops/301067", "https://mivb.openplanner.team/stops/3257F"], ["http://irail.be/stations/NMBS/008894433", "https://data.delijn.be/stops/204070"], ["https://data.delijn.be/stops/303652", "https://tec.openplanner.team/stops/Bovehst1"], ["https://data.delijn.be/stops/404665", "https://tec.openplanner.team/stops/LPAbour1"], ["https://data.delijn.be/stops/304722", "https://mivb.openplanner.team/stops/5866"], ["http://irail.be/stations/NMBS/008893120", "https://data.delijn.be/stops/201223"], ["https://data.delijn.be/stops/306905", "https://tec.openplanner.team/stops/Bgoekaz1"], ["http://irail.be/stations/NMBS/008812047", "https://mivb.openplanner.team/stops/1009"], ["http://irail.be/stations/NMBS/008844545", "https://tec.openplanner.team/stops/LDOchev1"], ["https://data.delijn.be/stops/504304", "https://tec.openplanner.team/stops/H4pl117b"], ["http://irail.be/stations/NMBS/008824224", "https://data.delijn.be/stops/105977"], ["http://irail.be/stations/NMBS/008200101", "https://tec.openplanner.team/stops/LaHzoll*"], ["https://data.delijn.be/stops/408880", "https://tec.openplanner.team/stops/LDpzol-2"], ["http://irail.be/stations/NMBS/008864949", "https://tec.openplanner.team/stops/N585alb"], ["http://irail.be/stations/NMBS/008811437", "https://tec.openplanner.team/stops/Bwbfgar2"], ["https://data.delijn.be/stops/509383", "https://tec.openplanner.team/stops/H4pl115a"], ["https://data.delijn.be/stops/408854", "https://tec.openplanner.team/stops/LFCkerk1"], ["https://data.delijn.be/stops/306003", "https://tec.openplanner.team/stops/Brsrpri1"], ["http://irail.be/stations/NMBS/008882339", "https://tec.openplanner.team/stops/H2hp123c"], ["https://data.delijn.be/stops/408903", "https://tec.openplanner.team/stops/LFPkape3"], ["https://data.delijn.be/stops/405705", "https://tec.openplanner.team/stops/LlgR-Fr3"], ["https://data.delijn.be/stops/407204", "https://tec.openplanner.team/stops/LHTcent2"], ["http://irail.be/stations/NMBS/008821402", "https://data.delijn.be/stops/102193"], ["http://irail.be/stations/NMBS/008885068", "https://tec.openplanner.team/stops/H4fr145a"], ["https://data.delijn.be/stops/302382", "https://tec.openplanner.team/stops/Bwavnep2"], ["https://mivb.openplanner.team/stops/1250", "https://tec.openplanner.team/stops/Buccobs2"], ["http://irail.be/stations/NMBS/008812120", "https://data.delijn.be/stops/302153"], ["http://irail.be/stations/NMBS/008861333", "https://tec.openplanner.team/stops/N531apa"], ["https://data.delijn.be/stops/208614", "https://tec.openplanner.team/stops/H1bd101a"], ["http://irail.be/stations/NMBS/008882248", "https://tec.openplanner.team/stops/H2ca105a"], ["http://irail.be/stations/NMBS/008881505", "https://tec.openplanner.team/stops/H1qp150b"], ["http://irail.be/stations/NMBS/008811775", "https://tec.openplanner.team/stops/Bpecsta1"], ["https://mivb.openplanner.team/stops/0220333", "https://tec.openplanner.team/stops/Baudsju1"], ["https://data.delijn.be/stops/300992", "https://mivb.openplanner.team/stops/2246F"], ["https://data.delijn.be/stops/306115", "https://mivb.openplanner.team/stops/2259F"], ["http://irail.be/stations/NMBS/008886553", "https://tec.openplanner.team/stops/H1le121b"], ["https://data.delijn.be/stops/304548", "https://mivb.openplanner.team/stops/9679"], ["https://mivb.openplanner.team/stops/1918", "https://tec.openplanner.team/stops/Buccchu1"], ["https://data.delijn.be/stops/300344", "https://tec.openplanner.team/stops/Bbrlpar1"], ["https://data.delijn.be/stops/300976", "https://mivb.openplanner.team/stops/6210"], ["https://data.delijn.be/stops/300761", "https://mivb.openplanner.team/stops/8641"], ["http://irail.be/stations/NMBS/008861531", "https://tec.openplanner.team/stops/Bchacen1"], ["https://data.delijn.be/stops/301052", "https://mivb.openplanner.team/stops/4253"], ["https://data.delijn.be/stops/300958", "https://tec.openplanner.team/stops/Baudulb1"], ["https://data.delijn.be/stops/307205", "https://tec.openplanner.team/stops/Bcbqcim1"], ["http://irail.be/stations/NMBS/008832565", "https://data.delijn.be/stops/409421"], ["https://data.delijn.be/stops/410144", "https://tec.openplanner.team/stops/Llgbois1"], ["http://irail.be/stations/NMBS/008811916", "https://mivb.openplanner.team/stops/3219"], ["https://data.delijn.be/stops/219015", "https://tec.openplanner.team/stops/H4ss157a"], ["https://data.delijn.be/stops/301085", "https://mivb.openplanner.team/stops/1584"], ["http://irail.be/stations/NMBS/008895737", "https://data.delijn.be/stops/207849"], ["https://data.delijn.be/stops/308818", "https://mivb.openplanner.team/stops/1901"], ["https://data.delijn.be/stops/306968", "https://mivb.openplanner.team/stops/2810"], ["https://data.delijn.be/stops/302440", "https://tec.openplanner.team/stops/Bzluegl2"], ["http://irail.be/stations/NMBS/008812021", "https://mivb.openplanner.team/stops/6171"], ["https://data.delijn.be/stops/304205", "https://tec.openplanner.team/stops/Brsrfen2"], ["http://irail.be/stations/NMBS/008864469", "https://tec.openplanner.team/stops/X982bld"], ["https://data.delijn.be/stops/404653", "https://tec.openplanner.team/stops/LVSbleu2"], ["http://irail.be/stations/NMBS/008811437", "https://mivb.openplanner.team/stops/5420F"], ["https://data.delijn.be/stops/301943", "https://mivb.openplanner.team/stops/4152"], ["https://data.delijn.be/stops/504318", "https://tec.openplanner.team/stops/H4mo161a"], ["https://data.delijn.be/stops/308854", "https://mivb.openplanner.team/stops/5403"], ["https://data.delijn.be/stops/307149", "https://tec.openplanner.team/stops/Bhaless1"], ["http://irail.be/stations/NMBS/008400219", "https://data.delijn.be/stops/408827"], ["http://irail.be/stations/NMBS/008881463", "https://tec.openplanner.team/stops/H2sb223b"], ["http://irail.be/stations/NMBS/008874724", "https://tec.openplanner.team/stops/N534aba"], ["http://irail.be/stations/NMBS/008895877", "https://data.delijn.be/stops/207161"], ["https://data.delijn.be/stops/305890", "https://mivb.openplanner.team/stops/9608"], ["https://mivb.openplanner.team/stops/2718", "https://tec.openplanner.team/stops/Buccpor2"], ["https://data.delijn.be/stops/301687", "https://tec.openplanner.team/stops/Bnetrbr1"], ["http://irail.be/stations/NMBS/008896800", "https://data.delijn.be/stops/500007"], ["https://data.delijn.be/stops/305915", "https://mivb.openplanner.team/stops/5174F"], ["http://irail.be/stations/NMBS/008772319", "https://tec.openplanner.team/stops/X611aea"], ["https://data.delijn.be/stops/303582", "https://mivb.openplanner.team/stops/9728"], ["https://data.delijn.be/stops/408894", "https://tec.openplanner.team/stops/LWHkape2"], ["http://irail.be/stations/NMBS/008821717", "https://data.delijn.be/stops/109189"], ["http://irail.be/stations/NMBS/008844321", "https://tec.openplanner.team/stops/LTHcime1"], ["http://irail.be/stations/NMBS/008811171", "https://mivb.openplanner.team/stops/6214"], ["https://data.delijn.be/stops/410341", "https://tec.openplanner.team/stops/LOdcris2"], ["http://irail.be/stations/NMBS/008895000", "https://data.delijn.be/stops/206902"], ["https://data.delijn.be/stops/301055", "https://mivb.openplanner.team/stops/6607"], ["http://irail.be/stations/NMBS/008896370", "https://data.delijn.be/stops/509755"], ["http://irail.be/stations/NMBS/008874054", "https://tec.openplanner.team/stops/Ccicent4"], ["http://irail.be/stations/NMBS/008822608", "https://data.delijn.be/stops/104574"], ["http://irail.be/stations/NMBS/008866407", "https://tec.openplanner.team/stops/X608aaa"], ["https://data.delijn.be/stops/307219", "https://tec.openplanner.team/stops/Bhaleur1"], ["http://irail.be/stations/NMBS/008871811", "https://tec.openplanner.team/stops/Cthvbas3"], ["https://data.delijn.be/stops/307692", "https://tec.openplanner.team/stops/Brsgter1"], ["https://data.delijn.be/stops/400455", "https://tec.openplanner.team/stops/LEBmoul1"], ["https://data.delijn.be/stops/304463", "https://tec.openplanner.team/stops/Brsgsan1"], ["http://irail.be/stations/NMBS/008896305", "https://data.delijn.be/stops/503565"], ["https://data.delijn.be/stops/301121", "https://mivb.openplanner.team/stops/2763"], ["https://data.delijn.be/stops/302854", "https://tec.openplanner.team/stops/Bwaakap1"], ["https://mivb.openplanner.team/stops/4804B", "https://tec.openplanner.team/stops/Buccmer2"], ["http://irail.be/stations/NMBS/008895760", "https://data.delijn.be/stops/207988"], ["http://irail.be/stations/NMBS/008871381", "https://tec.openplanner.team/stops/H2go114b"], ["http://irail.be/stations/NMBS/008895000", "https://data.delijn.be/stops/207265"], ["http://irail.be/stations/NMBS/008864832", "https://tec.openplanner.team/stops/N349aca"], ["http://irail.be/stations/NMBS/008831112", "https://data.delijn.be/stops/401521"], ["https://data.delijn.be/stops/206784", "https://tec.openplanner.team/stops/H1gy116a"], ["https://data.delijn.be/stops/300772", "https://mivb.openplanner.team/stops/8671"], ["http://irail.be/stations/NMBS/008833001", "https://data.delijn.be/stops/303130"], ["https://data.delijn.be/stops/302400", "https://mivb.openplanner.team/stops/7670208"], ["https://data.delijn.be/stops/209409", "https://tec.openplanner.team/stops/H5rx140b"], ["https://data.delijn.be/stops/307697", "https://tec.openplanner.team/stops/Buccpes1"], ["http://irail.be/stations/NMBS/008821543", "https://data.delijn.be/stops/105834"], ["http://irail.be/stations/NMBS/008844008", "https://tec.openplanner.team/stops/Lveyser2"], ["https://data.delijn.be/stops/300804", "https://mivb.openplanner.team/stops/5297B"], ["https://data.delijn.be/stops/305228", "https://mivb.openplanner.team/stops/9632"], ["https://data.delijn.be/stops/300832", "https://mivb.openplanner.team/stops/6122"], ["https://data.delijn.be/stops/509639", "https://tec.openplanner.team/stops/H4co149b"], ["http://irail.be/stations/NMBS/008872520", "https://tec.openplanner.team/stops/N584bbb"], ["https://data.delijn.be/stops/504322", "https://tec.openplanner.team/stops/H4mo207b"], ["http://irail.be/stations/NMBS/008814175", "https://tec.openplanner.team/stops/Brsgtou2"], ["https://data.delijn.be/stops/404655", "https://tec.openplanner.team/stops/LJUfort2"], ["https://data.delijn.be/stops/405459", "https://tec.openplanner.team/stops/LWHmath1"], ["https://data.delijn.be/stops/301030", "https://mivb.openplanner.team/stops/6428"], ["https://data.delijn.be/stops/307716", "https://tec.openplanner.team/stops/Brsgepr1"], ["http://irail.be/stations/NMBS/008811544", "https://tec.openplanner.team/stops/Brixble5"], ["http://irail.be/stations/NMBS/008811197", "https://mivb.openplanner.team/stops/0070621"], ["https://data.delijn.be/stops/305500", "https://mivb.openplanner.team/stops/1552"], ["https://data.delijn.be/stops/301066", "https://mivb.openplanner.team/stops/3257F"], ["http://irail.be/stations/NMBS/008200136", "https://tec.openplanner.team/stops/X764afb"], ["https://data.delijn.be/stops/300370", "https://tec.openplanner.team/stops/Bwaucig1"], ["https://data.delijn.be/stops/404843", "https://tec.openplanner.team/stops/LEBeg--2"], ["https://data.delijn.be/stops/301040", "https://mivb.openplanner.team/stops/5089"], ["http://irail.be/stations/NMBS/008874559", "https://tec.openplanner.team/stops/Cfaamio1"], ["http://irail.be/stations/NMBS/008866845", "https://tec.openplanner.team/stops/X673aaa"], ["https://data.delijn.be/stops/410138", "https://tec.openplanner.team/stops/Lrcprin6"], ["https://data.delijn.be/stops/400469", "https://tec.openplanner.team/stops/LEMfort1"], ["https://data.delijn.be/stops/305348", "https://tec.openplanner.team/stops/Bbgeegl1"], ["https://data.delijn.be/stops/304207", "https://tec.openplanner.team/stops/Brsrber2"], ["https://data.delijn.be/stops/302437", "https://tec.openplanner.team/stops/Bjodpvi2"], ["https://data.delijn.be/stops/305910", "https://mivb.openplanner.team/stops/9701"], ["https://data.delijn.be/stops/305424", "https://mivb.openplanner.team/stops/5528F"]] \ No newline at end of file diff --git a/src/analytics/footpaths/delijn_pairs.json b/src/analytics/footpaths/delijn_pairs.json deleted file mode 100644 index 2af645ba..00000000 --- a/src/analytics/footpaths/delijn_pairs.json +++ /dev/null @@ -1 +0,0 @@ -[["https://data.delijn.be/stops/500948", "https://data.delijn.be/stops/504205"], ["https://data.delijn.be/stops/206872", "https://data.delijn.be/stops/209364"], ["https://data.delijn.be/stops/200187", "https://data.delijn.be/stops/201198"], ["https://data.delijn.be/stops/403028", "https://data.delijn.be/stops/403569"], ["https://data.delijn.be/stops/504244", "https://data.delijn.be/stops/504442"], ["https://data.delijn.be/stops/408000", "https://data.delijn.be/stops/408429"], ["https://data.delijn.be/stops/504828", "https://data.delijn.be/stops/509455"], ["https://data.delijn.be/stops/301342", "https://data.delijn.be/stops/301343"], ["https://data.delijn.be/stops/207052", "https://data.delijn.be/stops/207520"], ["https://data.delijn.be/stops/203790", "https://data.delijn.be/stops/203791"], ["https://data.delijn.be/stops/402539", "https://data.delijn.be/stops/410264"], ["https://data.delijn.be/stops/302202", "https://data.delijn.be/stops/304165"], ["https://data.delijn.be/stops/107425", "https://data.delijn.be/stops/107429"], ["https://data.delijn.be/stops/306023", "https://data.delijn.be/stops/307684"], ["https://data.delijn.be/stops/103287", "https://data.delijn.be/stops/103288"], ["https://data.delijn.be/stops/306107", "https://data.delijn.be/stops/306110"], ["https://data.delijn.be/stops/207675", "https://data.delijn.be/stops/209142"], ["https://data.delijn.be/stops/200770", "https://data.delijn.be/stops/200773"], ["https://data.delijn.be/stops/108607", "https://data.delijn.be/stops/302939"], ["https://data.delijn.be/stops/403158", "https://data.delijn.be/stops/403159"], ["https://data.delijn.be/stops/201467", "https://data.delijn.be/stops/202775"], ["https://data.delijn.be/stops/502012", "https://data.delijn.be/stops/502246"], ["https://data.delijn.be/stops/201724", "https://data.delijn.be/stops/201725"], ["https://data.delijn.be/stops/407166", "https://data.delijn.be/stops/407171"], ["https://data.delijn.be/stops/208163", "https://data.delijn.be/stops/209169"], ["https://data.delijn.be/stops/507818", "https://data.delijn.be/stops/509789"], ["https://data.delijn.be/stops/304946", "https://data.delijn.be/stops/304948"], ["https://data.delijn.be/stops/404513", "https://data.delijn.be/stops/408981"], ["https://data.delijn.be/stops/106693", "https://data.delijn.be/stops/109390"], ["https://data.delijn.be/stops/504224", "https://data.delijn.be/stops/509627"], ["https://data.delijn.be/stops/401295", "https://data.delijn.be/stops/401315"], ["https://data.delijn.be/stops/301096", "https://data.delijn.be/stops/301097"], ["https://data.delijn.be/stops/302375", "https://data.delijn.be/stops/302381"], ["https://data.delijn.be/stops/204172", "https://data.delijn.be/stops/205593"], ["https://data.delijn.be/stops/200864", "https://data.delijn.be/stops/210291"], ["https://data.delijn.be/stops/208227", "https://data.delijn.be/stops/208233"], ["https://data.delijn.be/stops/304128", "https://data.delijn.be/stops/307580"], ["https://data.delijn.be/stops/503948", "https://data.delijn.be/stops/508948"], ["https://data.delijn.be/stops/106187", "https://data.delijn.be/stops/109560"], ["https://data.delijn.be/stops/307295", "https://data.delijn.be/stops/308927"], ["https://data.delijn.be/stops/101692", "https://data.delijn.be/stops/103693"], ["https://data.delijn.be/stops/509044", "https://data.delijn.be/stops/509650"], ["https://data.delijn.be/stops/406351", "https://data.delijn.be/stops/406352"], ["https://data.delijn.be/stops/400726", "https://data.delijn.be/stops/400732"], ["https://data.delijn.be/stops/406652", "https://data.delijn.be/stops/406656"], ["https://data.delijn.be/stops/300388", "https://data.delijn.be/stops/306089"], ["https://data.delijn.be/stops/210092", "https://data.delijn.be/stops/211093"], ["https://data.delijn.be/stops/207014", "https://data.delijn.be/stops/207020"], ["https://data.delijn.be/stops/204223", "https://data.delijn.be/stops/205222"], ["https://data.delijn.be/stops/404935", "https://data.delijn.be/stops/404966"], ["https://data.delijn.be/stops/206028", "https://data.delijn.be/stops/207871"], ["https://data.delijn.be/stops/201638", "https://data.delijn.be/stops/201639"], ["https://data.delijn.be/stops/105827", "https://data.delijn.be/stops/109749"], ["https://data.delijn.be/stops/502087", "https://data.delijn.be/stops/502729"], ["https://data.delijn.be/stops/405794", "https://data.delijn.be/stops/405795"], ["https://data.delijn.be/stops/501063", "https://data.delijn.be/stops/501485"], ["https://data.delijn.be/stops/409116", "https://data.delijn.be/stops/410049"], ["https://data.delijn.be/stops/206914", "https://data.delijn.be/stops/207912"], ["https://data.delijn.be/stops/504076", "https://data.delijn.be/stops/509329"], ["https://data.delijn.be/stops/500555", "https://data.delijn.be/stops/502210"], ["https://data.delijn.be/stops/107612", "https://data.delijn.be/stops/109719"], ["https://data.delijn.be/stops/201137", "https://data.delijn.be/stops/203134"], ["https://data.delijn.be/stops/405243", "https://data.delijn.be/stops/405249"], ["https://data.delijn.be/stops/303416", "https://data.delijn.be/stops/308066"], ["https://data.delijn.be/stops/503038", "https://data.delijn.be/stops/503456"], ["https://data.delijn.be/stops/209548", "https://data.delijn.be/stops/209611"], ["https://data.delijn.be/stops/504941", "https://data.delijn.be/stops/508808"], ["https://data.delijn.be/stops/200810", "https://data.delijn.be/stops/202052"], ["https://data.delijn.be/stops/407231", "https://data.delijn.be/stops/407232"], ["https://data.delijn.be/stops/205395", "https://data.delijn.be/stops/205396"], ["https://data.delijn.be/stops/400177", "https://data.delijn.be/stops/405297"], ["https://data.delijn.be/stops/105292", "https://data.delijn.be/stops/109880"], ["https://data.delijn.be/stops/400219", "https://data.delijn.be/stops/400226"], ["https://data.delijn.be/stops/108918", "https://data.delijn.be/stops/109427"], ["https://data.delijn.be/stops/103482", "https://data.delijn.be/stops/103484"], ["https://data.delijn.be/stops/507328", "https://data.delijn.be/stops/507330"], ["https://data.delijn.be/stops/400730", "https://data.delijn.be/stops/406611"], ["https://data.delijn.be/stops/102091", "https://data.delijn.be/stops/106811"], ["https://data.delijn.be/stops/301049", "https://data.delijn.be/stops/301063"], ["https://data.delijn.be/stops/104043", "https://data.delijn.be/stops/108406"], ["https://data.delijn.be/stops/502191", "https://data.delijn.be/stops/508338"], ["https://data.delijn.be/stops/304364", "https://data.delijn.be/stops/307097"], ["https://data.delijn.be/stops/108371", "https://data.delijn.be/stops/108459"], ["https://data.delijn.be/stops/108408", "https://data.delijn.be/stops/108409"], ["https://data.delijn.be/stops/106839", "https://data.delijn.be/stops/106840"], ["https://data.delijn.be/stops/102765", "https://data.delijn.be/stops/102790"], ["https://data.delijn.be/stops/106851", "https://data.delijn.be/stops/106984"], ["https://data.delijn.be/stops/506218", "https://data.delijn.be/stops/506422"], ["https://data.delijn.be/stops/200492", "https://data.delijn.be/stops/208939"], ["https://data.delijn.be/stops/507738", "https://data.delijn.be/stops/508211"], ["https://data.delijn.be/stops/308213", "https://data.delijn.be/stops/308244"], ["https://data.delijn.be/stops/500941", "https://data.delijn.be/stops/508897"], ["https://data.delijn.be/stops/505843", "https://data.delijn.be/stops/508788"], ["https://data.delijn.be/stops/302958", "https://data.delijn.be/stops/302965"], ["https://data.delijn.be/stops/208224", "https://data.delijn.be/stops/209773"], ["https://data.delijn.be/stops/200570", "https://data.delijn.be/stops/200960"], ["https://data.delijn.be/stops/302154", "https://data.delijn.be/stops/302200"], ["https://data.delijn.be/stops/102721", "https://data.delijn.be/stops/103725"], ["https://data.delijn.be/stops/500928", "https://data.delijn.be/stops/501508"], ["https://data.delijn.be/stops/104286", "https://data.delijn.be/stops/104287"], ["https://data.delijn.be/stops/501476", "https://data.delijn.be/stops/506476"], ["https://data.delijn.be/stops/106351", "https://data.delijn.be/stops/106353"], ["https://data.delijn.be/stops/304890", "https://data.delijn.be/stops/306718"], ["https://data.delijn.be/stops/400071", "https://data.delijn.be/stops/403544"], ["https://data.delijn.be/stops/300680", "https://data.delijn.be/stops/305830"], ["https://data.delijn.be/stops/303121", "https://data.delijn.be/stops/303225"], ["https://data.delijn.be/stops/106595", "https://data.delijn.be/stops/106596"], ["https://data.delijn.be/stops/504030", "https://data.delijn.be/stops/509030"], ["https://data.delijn.be/stops/204657", "https://data.delijn.be/stops/205657"], ["https://data.delijn.be/stops/202965", "https://data.delijn.be/stops/203530"], ["https://data.delijn.be/stops/202061", "https://data.delijn.be/stops/203061"], ["https://data.delijn.be/stops/408100", "https://data.delijn.be/stops/408101"], ["https://data.delijn.be/stops/102335", "https://data.delijn.be/stops/102445"], ["https://data.delijn.be/stops/502327", "https://data.delijn.be/stops/502328"], ["https://data.delijn.be/stops/501714", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/104553", "https://data.delijn.be/stops/107487"], ["https://data.delijn.be/stops/102461", "https://data.delijn.be/stops/400405"], ["https://data.delijn.be/stops/407364", "https://data.delijn.be/stops/408476"], ["https://data.delijn.be/stops/108406", "https://data.delijn.be/stops/108408"], ["https://data.delijn.be/stops/205975", "https://data.delijn.be/stops/209747"], ["https://data.delijn.be/stops/207785", "https://data.delijn.be/stops/209192"], ["https://data.delijn.be/stops/102145", "https://data.delijn.be/stops/104117"], ["https://data.delijn.be/stops/105479", "https://data.delijn.be/stops/105492"], ["https://data.delijn.be/stops/502648", "https://data.delijn.be/stops/502764"], ["https://data.delijn.be/stops/204126", "https://data.delijn.be/stops/205788"], ["https://data.delijn.be/stops/203860", "https://data.delijn.be/stops/208700"], ["https://data.delijn.be/stops/301448", "https://data.delijn.be/stops/308409"], ["https://data.delijn.be/stops/501309", "https://data.delijn.be/stops/501345"], ["https://data.delijn.be/stops/404570", "https://data.delijn.be/stops/404571"], ["https://data.delijn.be/stops/202342", "https://data.delijn.be/stops/202447"], ["https://data.delijn.be/stops/200860", "https://data.delijn.be/stops/203333"], ["https://data.delijn.be/stops/406323", "https://data.delijn.be/stops/406411"], ["https://data.delijn.be/stops/403644", "https://data.delijn.be/stops/403645"], ["https://data.delijn.be/stops/503719", "https://data.delijn.be/stops/508719"], ["https://data.delijn.be/stops/204248", "https://data.delijn.be/stops/204259"], ["https://data.delijn.be/stops/206245", "https://data.delijn.be/stops/207244"], ["https://data.delijn.be/stops/102006", "https://data.delijn.be/stops/104670"], ["https://data.delijn.be/stops/101755", "https://data.delijn.be/stops/105753"], ["https://data.delijn.be/stops/302689", "https://data.delijn.be/stops/302701"], ["https://data.delijn.be/stops/508767", "https://data.delijn.be/stops/508823"], ["https://data.delijn.be/stops/301432", "https://data.delijn.be/stops/301433"], ["https://data.delijn.be/stops/503751", "https://data.delijn.be/stops/508751"], ["https://data.delijn.be/stops/404327", "https://data.delijn.be/stops/404366"], ["https://data.delijn.be/stops/102464", "https://data.delijn.be/stops/400145"], ["https://data.delijn.be/stops/502528", "https://data.delijn.be/stops/507528"], ["https://data.delijn.be/stops/105068", "https://data.delijn.be/stops/105069"], ["https://data.delijn.be/stops/206849", "https://data.delijn.be/stops/207849"], ["https://data.delijn.be/stops/204135", "https://data.delijn.be/stops/205134"], ["https://data.delijn.be/stops/101591", "https://data.delijn.be/stops/101730"], ["https://data.delijn.be/stops/408507", "https://data.delijn.be/stops/408562"], ["https://data.delijn.be/stops/505529", "https://data.delijn.be/stops/509943"], ["https://data.delijn.be/stops/305610", "https://data.delijn.be/stops/305611"], ["https://data.delijn.be/stops/405825", "https://data.delijn.be/stops/405861"], ["https://data.delijn.be/stops/505619", "https://data.delijn.be/stops/505746"], ["https://data.delijn.be/stops/104364", "https://data.delijn.be/stops/104379"], ["https://data.delijn.be/stops/407172", "https://data.delijn.be/stops/410094"], ["https://data.delijn.be/stops/405936", "https://data.delijn.be/stops/405947"], ["https://data.delijn.be/stops/300413", "https://data.delijn.be/stops/307891"], ["https://data.delijn.be/stops/102780", "https://data.delijn.be/stops/102812"], ["https://data.delijn.be/stops/106767", "https://data.delijn.be/stops/106869"], ["https://data.delijn.be/stops/503010", "https://data.delijn.be/stops/508010"], ["https://data.delijn.be/stops/409435", "https://data.delijn.be/stops/409436"], ["https://data.delijn.be/stops/208221", "https://data.delijn.be/stops/209593"], ["https://data.delijn.be/stops/302508", "https://data.delijn.be/stops/305782"], ["https://data.delijn.be/stops/208308", "https://data.delijn.be/stops/209307"], ["https://data.delijn.be/stops/408333", "https://data.delijn.be/stops/410160"], ["https://data.delijn.be/stops/406053", "https://data.delijn.be/stops/409288"], ["https://data.delijn.be/stops/207740", "https://data.delijn.be/stops/207885"], ["https://data.delijn.be/stops/408599", "https://data.delijn.be/stops/306778"], ["https://data.delijn.be/stops/105571", "https://data.delijn.be/stops/105578"], ["https://data.delijn.be/stops/304216", "https://data.delijn.be/stops/307461"], ["https://data.delijn.be/stops/106227", "https://data.delijn.be/stops/106326"], ["https://data.delijn.be/stops/200803", "https://data.delijn.be/stops/203062"], ["https://data.delijn.be/stops/401215", "https://data.delijn.be/stops/401273"], ["https://data.delijn.be/stops/303192", "https://data.delijn.be/stops/307929"], ["https://data.delijn.be/stops/204171", "https://data.delijn.be/stops/204172"], ["https://data.delijn.be/stops/108994", "https://data.delijn.be/stops/108995"], ["https://data.delijn.be/stops/104608", "https://data.delijn.be/stops/108072"], ["https://data.delijn.be/stops/408107", "https://data.delijn.be/stops/408119"], ["https://data.delijn.be/stops/407016", "https://data.delijn.be/stops/407045"], ["https://data.delijn.be/stops/208719", "https://data.delijn.be/stops/209706"], ["https://data.delijn.be/stops/501117", "https://data.delijn.be/stops/501693"], ["https://data.delijn.be/stops/405521", "https://data.delijn.be/stops/407787"], ["https://data.delijn.be/stops/401980", "https://data.delijn.be/stops/401987"], ["https://data.delijn.be/stops/200752", "https://data.delijn.be/stops/200767"], ["https://data.delijn.be/stops/206380", "https://data.delijn.be/stops/207380"], ["https://data.delijn.be/stops/200536", "https://data.delijn.be/stops/201160"], ["https://data.delijn.be/stops/408231", "https://data.delijn.be/stops/408421"], ["https://data.delijn.be/stops/400502", "https://data.delijn.be/stops/402780"], ["https://data.delijn.be/stops/505716", "https://data.delijn.be/stops/508479"], ["https://data.delijn.be/stops/108808", "https://data.delijn.be/stops/108809"], ["https://data.delijn.be/stops/400754", "https://data.delijn.be/stops/407700"], ["https://data.delijn.be/stops/403746", "https://data.delijn.be/stops/403806"], ["https://data.delijn.be/stops/507915", "https://data.delijn.be/stops/508730"], ["https://data.delijn.be/stops/208800", "https://data.delijn.be/stops/209208"], ["https://data.delijn.be/stops/400881", "https://data.delijn.be/stops/409609"], ["https://data.delijn.be/stops/406350", "https://data.delijn.be/stops/408869"], ["https://data.delijn.be/stops/101152", "https://data.delijn.be/stops/102057"], ["https://data.delijn.be/stops/401123", "https://data.delijn.be/stops/408939"], ["https://data.delijn.be/stops/201926", "https://data.delijn.be/stops/201927"], ["https://data.delijn.be/stops/102946", "https://data.delijn.be/stops/109101"], ["https://data.delijn.be/stops/501426", "https://data.delijn.be/stops/501467"], ["https://data.delijn.be/stops/108376", "https://data.delijn.be/stops/108442"], ["https://data.delijn.be/stops/505165", "https://data.delijn.be/stops/509510"], ["https://data.delijn.be/stops/207720", "https://data.delijn.be/stops/207721"], ["https://data.delijn.be/stops/406925", "https://data.delijn.be/stops/406926"], ["https://data.delijn.be/stops/408239", "https://data.delijn.be/stops/408241"], ["https://data.delijn.be/stops/305265", "https://data.delijn.be/stops/305266"], ["https://data.delijn.be/stops/407677", "https://data.delijn.be/stops/408698"], ["https://data.delijn.be/stops/504042", "https://data.delijn.be/stops/504659"], ["https://data.delijn.be/stops/409674", "https://data.delijn.be/stops/409676"], ["https://data.delijn.be/stops/505754", "https://data.delijn.be/stops/507231"], ["https://data.delijn.be/stops/202766", "https://data.delijn.be/stops/202768"], ["https://data.delijn.be/stops/209118", "https://data.delijn.be/stops/219008"], ["https://data.delijn.be/stops/504644", "https://data.delijn.be/stops/505101"], ["https://data.delijn.be/stops/504066", "https://data.delijn.be/stops/504068"], ["https://data.delijn.be/stops/104056", "https://data.delijn.be/stops/108898"], ["https://data.delijn.be/stops/402808", "https://data.delijn.be/stops/404619"], ["https://data.delijn.be/stops/305781", "https://data.delijn.be/stops/305802"], ["https://data.delijn.be/stops/408585", "https://data.delijn.be/stops/408597"], ["https://data.delijn.be/stops/503993", "https://data.delijn.be/stops/508128"], ["https://data.delijn.be/stops/201022", "https://data.delijn.be/stops/201113"], ["https://data.delijn.be/stops/200852", "https://data.delijn.be/stops/203304"], ["https://data.delijn.be/stops/508657", "https://data.delijn.be/stops/509153"], ["https://data.delijn.be/stops/300904", "https://data.delijn.be/stops/301029"], ["https://data.delijn.be/stops/201683", "https://data.delijn.be/stops/208644"], ["https://data.delijn.be/stops/303024", "https://data.delijn.be/stops/303088"], ["https://data.delijn.be/stops/219024", "https://data.delijn.be/stops/219025"], ["https://data.delijn.be/stops/304362", "https://data.delijn.be/stops/307368"], ["https://data.delijn.be/stops/407760", "https://data.delijn.be/stops/409793"], ["https://data.delijn.be/stops/205578", "https://data.delijn.be/stops/207968"], ["https://data.delijn.be/stops/208065", "https://data.delijn.be/stops/209065"], ["https://data.delijn.be/stops/109323", "https://data.delijn.be/stops/307438"], ["https://data.delijn.be/stops/306903", "https://data.delijn.be/stops/308720"], ["https://data.delijn.be/stops/404551", "https://data.delijn.be/stops/406740"], ["https://data.delijn.be/stops/402100", "https://data.delijn.be/stops/402101"], ["https://data.delijn.be/stops/102570", "https://data.delijn.be/stops/103115"], ["https://data.delijn.be/stops/104986", "https://data.delijn.be/stops/104994"], ["https://data.delijn.be/stops/301333", "https://data.delijn.be/stops/301905"], ["https://data.delijn.be/stops/105414", "https://data.delijn.be/stops/105846"], ["https://data.delijn.be/stops/305181", "https://data.delijn.be/stops/308049"], ["https://data.delijn.be/stops/408650", "https://data.delijn.be/stops/408807"], ["https://data.delijn.be/stops/306926", "https://data.delijn.be/stops/307278"], ["https://data.delijn.be/stops/106695", "https://data.delijn.be/stops/106696"], ["https://data.delijn.be/stops/503126", "https://data.delijn.be/stops/504829"], ["https://data.delijn.be/stops/502411", "https://data.delijn.be/stops/502462"], ["https://data.delijn.be/stops/503030", "https://data.delijn.be/stops/508026"], ["https://data.delijn.be/stops/401110", "https://data.delijn.be/stops/401111"], ["https://data.delijn.be/stops/202949", "https://data.delijn.be/stops/216009"], ["https://data.delijn.be/stops/504390", "https://data.delijn.be/stops/504391"], ["https://data.delijn.be/stops/109260", "https://data.delijn.be/stops/109262"], ["https://data.delijn.be/stops/202476", "https://data.delijn.be/stops/203476"], ["https://data.delijn.be/stops/104284", "https://data.delijn.be/stops/105801"], ["https://data.delijn.be/stops/406556", "https://data.delijn.be/stops/406567"], ["https://data.delijn.be/stops/501596", "https://data.delijn.be/stops/505311"], ["https://data.delijn.be/stops/407262", "https://data.delijn.be/stops/407263"], ["https://data.delijn.be/stops/300885", "https://data.delijn.be/stops/300886"], ["https://data.delijn.be/stops/307618", "https://data.delijn.be/stops/307620"], ["https://data.delijn.be/stops/204162", "https://data.delijn.be/stops/207962"], ["https://data.delijn.be/stops/207866", "https://data.delijn.be/stops/208749"], ["https://data.delijn.be/stops/103596", "https://data.delijn.be/stops/103605"], ["https://data.delijn.be/stops/300821", "https://data.delijn.be/stops/301792"], ["https://data.delijn.be/stops/403457", "https://data.delijn.be/stops/410287"], ["https://data.delijn.be/stops/108087", "https://data.delijn.be/stops/108385"], ["https://data.delijn.be/stops/101475", "https://data.delijn.be/stops/108774"], ["https://data.delijn.be/stops/307296", "https://data.delijn.be/stops/307299"], ["https://data.delijn.be/stops/503237", "https://data.delijn.be/stops/509949"], ["https://data.delijn.be/stops/500931", "https://data.delijn.be/stops/508132"], ["https://data.delijn.be/stops/207108", "https://data.delijn.be/stops/207110"], ["https://data.delijn.be/stops/104043", "https://data.delijn.be/stops/104666"], ["https://data.delijn.be/stops/305771", "https://data.delijn.be/stops/305772"], ["https://data.delijn.be/stops/106101", "https://data.delijn.be/stops/106102"], ["https://data.delijn.be/stops/404676", "https://data.delijn.be/stops/410135"], ["https://data.delijn.be/stops/502648", "https://data.delijn.be/stops/507281"], ["https://data.delijn.be/stops/209597", "https://data.delijn.be/stops/301416"], ["https://data.delijn.be/stops/502373", "https://data.delijn.be/stops/507520"], ["https://data.delijn.be/stops/206679", "https://data.delijn.be/stops/209777"], ["https://data.delijn.be/stops/203788", "https://data.delijn.be/stops/210027"], ["https://data.delijn.be/stops/304361", "https://data.delijn.be/stops/307367"], ["https://data.delijn.be/stops/202138", "https://data.delijn.be/stops/202395"], ["https://data.delijn.be/stops/102384", "https://data.delijn.be/stops/106226"], ["https://data.delijn.be/stops/302850", "https://data.delijn.be/stops/302852"], ["https://data.delijn.be/stops/503959", "https://data.delijn.be/stops/504677"], ["https://data.delijn.be/stops/200748", "https://data.delijn.be/stops/202971"], ["https://data.delijn.be/stops/101070", "https://data.delijn.be/stops/101075"], ["https://data.delijn.be/stops/406717", "https://data.delijn.be/stops/406921"], ["https://data.delijn.be/stops/504394", "https://data.delijn.be/stops/509117"], ["https://data.delijn.be/stops/502058", "https://data.delijn.be/stops/507058"], ["https://data.delijn.be/stops/401135", "https://data.delijn.be/stops/407796"], ["https://data.delijn.be/stops/105579", "https://data.delijn.be/stops/105592"], ["https://data.delijn.be/stops/206181", "https://data.delijn.be/stops/207182"], ["https://data.delijn.be/stops/305157", "https://data.delijn.be/stops/305161"], ["https://data.delijn.be/stops/202523", "https://data.delijn.be/stops/203524"], ["https://data.delijn.be/stops/109220", "https://data.delijn.be/stops/109221"], ["https://data.delijn.be/stops/208385", "https://data.delijn.be/stops/209385"], ["https://data.delijn.be/stops/502554", "https://data.delijn.be/stops/502556"], ["https://data.delijn.be/stops/407925", "https://data.delijn.be/stops/407968"], ["https://data.delijn.be/stops/200937", "https://data.delijn.be/stops/203716"], ["https://data.delijn.be/stops/302573", "https://data.delijn.be/stops/302576"], ["https://data.delijn.be/stops/400056", "https://data.delijn.be/stops/400072"], ["https://data.delijn.be/stops/300125", "https://data.delijn.be/stops/300126"], ["https://data.delijn.be/stops/104029", "https://data.delijn.be/stops/107312"], ["https://data.delijn.be/stops/304985", "https://data.delijn.be/stops/308015"], ["https://data.delijn.be/stops/508715", "https://data.delijn.be/stops/509872"], ["https://data.delijn.be/stops/503879", "https://data.delijn.be/stops/508994"], ["https://data.delijn.be/stops/201818", "https://data.delijn.be/stops/208257"], ["https://data.delijn.be/stops/408059", "https://data.delijn.be/stops/408285"], ["https://data.delijn.be/stops/403755", "https://data.delijn.be/stops/403757"], ["https://data.delijn.be/stops/202020", "https://data.delijn.be/stops/203020"], ["https://data.delijn.be/stops/405891", "https://data.delijn.be/stops/409771"], ["https://data.delijn.be/stops/305156", "https://data.delijn.be/stops/305157"], ["https://data.delijn.be/stops/503072", "https://data.delijn.be/stops/503073"], ["https://data.delijn.be/stops/406576", "https://data.delijn.be/stops/407155"], ["https://data.delijn.be/stops/505302", "https://data.delijn.be/stops/509594"], ["https://data.delijn.be/stops/206839", "https://data.delijn.be/stops/207559"], ["https://data.delijn.be/stops/305066", "https://data.delijn.be/stops/305091"], ["https://data.delijn.be/stops/501198", "https://data.delijn.be/stops/501527"], ["https://data.delijn.be/stops/101501", "https://data.delijn.be/stops/308505"], ["https://data.delijn.be/stops/107197", "https://data.delijn.be/stops/109773"], ["https://data.delijn.be/stops/208352", "https://data.delijn.be/stops/209184"], ["https://data.delijn.be/stops/404116", "https://data.delijn.be/stops/404182"], ["https://data.delijn.be/stops/302908", "https://data.delijn.be/stops/304319"], ["https://data.delijn.be/stops/402781", "https://data.delijn.be/stops/404042"], ["https://data.delijn.be/stops/206903", "https://data.delijn.be/stops/207261"], ["https://data.delijn.be/stops/505046", "https://data.delijn.be/stops/506412"], ["https://data.delijn.be/stops/403702", "https://data.delijn.be/stops/403726"], ["https://data.delijn.be/stops/103597", "https://data.delijn.be/stops/109400"], ["https://data.delijn.be/stops/301544", "https://data.delijn.be/stops/305142"], ["https://data.delijn.be/stops/101571", "https://data.delijn.be/stops/101574"], ["https://data.delijn.be/stops/202826", "https://data.delijn.be/stops/203826"], ["https://data.delijn.be/stops/101193", "https://data.delijn.be/stops/101204"], ["https://data.delijn.be/stops/404269", "https://data.delijn.be/stops/405550"], ["https://data.delijn.be/stops/205660", "https://data.delijn.be/stops/205661"], ["https://data.delijn.be/stops/405807", "https://data.delijn.be/stops/405855"], ["https://data.delijn.be/stops/401590", "https://data.delijn.be/stops/401592"], ["https://data.delijn.be/stops/303184", "https://data.delijn.be/stops/303196"], ["https://data.delijn.be/stops/503427", "https://data.delijn.be/stops/508427"], ["https://data.delijn.be/stops/408103", "https://data.delijn.be/stops/408106"], ["https://data.delijn.be/stops/505734", "https://data.delijn.be/stops/509880"], ["https://data.delijn.be/stops/300840", "https://data.delijn.be/stops/304623"], ["https://data.delijn.be/stops/404700", "https://data.delijn.be/stops/404710"], ["https://data.delijn.be/stops/504666", "https://data.delijn.be/stops/509368"], ["https://data.delijn.be/stops/505271", "https://data.delijn.be/stops/508783"], ["https://data.delijn.be/stops/302763", "https://data.delijn.be/stops/302775"], ["https://data.delijn.be/stops/303541", "https://data.delijn.be/stops/304125"], ["https://data.delijn.be/stops/400535", "https://data.delijn.be/stops/403886"], ["https://data.delijn.be/stops/301046", "https://data.delijn.be/stops/301051"], ["https://data.delijn.be/stops/308229", "https://data.delijn.be/stops/308240"], ["https://data.delijn.be/stops/406076", "https://data.delijn.be/stops/407168"], ["https://data.delijn.be/stops/407537", "https://data.delijn.be/stops/408156"], ["https://data.delijn.be/stops/406430", "https://data.delijn.be/stops/409505"], ["https://data.delijn.be/stops/506146", "https://data.delijn.be/stops/506637"], ["https://data.delijn.be/stops/503213", "https://data.delijn.be/stops/508195"], ["https://data.delijn.be/stops/503196", "https://data.delijn.be/stops/508983"], ["https://data.delijn.be/stops/206207", "https://data.delijn.be/stops/206608"], ["https://data.delijn.be/stops/103558", "https://data.delijn.be/stops/103594"], ["https://data.delijn.be/stops/107125", "https://data.delijn.be/stops/107130"], ["https://data.delijn.be/stops/202267", "https://data.delijn.be/stops/203267"], ["https://data.delijn.be/stops/101898", "https://data.delijn.be/stops/107803"], ["https://data.delijn.be/stops/403324", "https://data.delijn.be/stops/403325"], ["https://data.delijn.be/stops/505190", "https://data.delijn.be/stops/505910"], ["https://data.delijn.be/stops/504494", "https://data.delijn.be/stops/504497"], ["https://data.delijn.be/stops/308773", "https://data.delijn.be/stops/308776"], ["https://data.delijn.be/stops/300489", "https://data.delijn.be/stops/300491"], ["https://data.delijn.be/stops/208736", "https://data.delijn.be/stops/208737"], ["https://data.delijn.be/stops/104454", "https://data.delijn.be/stops/104472"], ["https://data.delijn.be/stops/503413", "https://data.delijn.be/stops/510019"], ["https://data.delijn.be/stops/305633", "https://data.delijn.be/stops/306809"], ["https://data.delijn.be/stops/501426", "https://data.delijn.be/stops/506208"], ["https://data.delijn.be/stops/503055", "https://data.delijn.be/stops/509789"], ["https://data.delijn.be/stops/200865", "https://data.delijn.be/stops/202342"], ["https://data.delijn.be/stops/107311", "https://data.delijn.be/stops/107314"], ["https://data.delijn.be/stops/206856", "https://data.delijn.be/stops/207856"], ["https://data.delijn.be/stops/406521", "https://data.delijn.be/stops/407479"], ["https://data.delijn.be/stops/501095", "https://data.delijn.be/stops/501421"], ["https://data.delijn.be/stops/206455", "https://data.delijn.be/stops/206824"], ["https://data.delijn.be/stops/501135", "https://data.delijn.be/stops/506135"], ["https://data.delijn.be/stops/103572", "https://data.delijn.be/stops/107134"], ["https://data.delijn.be/stops/201739", "https://data.delijn.be/stops/505723"], ["https://data.delijn.be/stops/400854", "https://data.delijn.be/stops/400855"], ["https://data.delijn.be/stops/406265", "https://data.delijn.be/stops/406425"], ["https://data.delijn.be/stops/404354", "https://data.delijn.be/stops/404393"], ["https://data.delijn.be/stops/109432", "https://data.delijn.be/stops/109433"], ["https://data.delijn.be/stops/102498", "https://data.delijn.be/stops/400440"], ["https://data.delijn.be/stops/402452", "https://data.delijn.be/stops/402455"], ["https://data.delijn.be/stops/306923", "https://data.delijn.be/stops/306924"], ["https://data.delijn.be/stops/501533", "https://data.delijn.be/stops/501541"], ["https://data.delijn.be/stops/304061", "https://data.delijn.be/stops/304062"], ["https://data.delijn.be/stops/104320", "https://data.delijn.be/stops/104321"], ["https://data.delijn.be/stops/107353", "https://data.delijn.be/stops/108176"], ["https://data.delijn.be/stops/501608", "https://data.delijn.be/stops/506606"], ["https://data.delijn.be/stops/107012", "https://data.delijn.be/stops/107016"], ["https://data.delijn.be/stops/101461", "https://data.delijn.be/stops/109251"], ["https://data.delijn.be/stops/505129", "https://data.delijn.be/stops/508290"], ["https://data.delijn.be/stops/205729", "https://data.delijn.be/stops/205759"], ["https://data.delijn.be/stops/103944", "https://data.delijn.be/stops/108825"], ["https://data.delijn.be/stops/308781", "https://data.delijn.be/stops/308782"], ["https://data.delijn.be/stops/300303", "https://data.delijn.be/stops/307476"], ["https://data.delijn.be/stops/107537", "https://data.delijn.be/stops/107538"], ["https://data.delijn.be/stops/409522", "https://data.delijn.be/stops/410164"], ["https://data.delijn.be/stops/503856", "https://data.delijn.be/stops/505848"], ["https://data.delijn.be/stops/504979", "https://data.delijn.be/stops/504984"], ["https://data.delijn.be/stops/105390", "https://data.delijn.be/stops/105700"], ["https://data.delijn.be/stops/106272", "https://data.delijn.be/stops/109626"], ["https://data.delijn.be/stops/201053", "https://data.delijn.be/stops/211118"], ["https://data.delijn.be/stops/501307", "https://data.delijn.be/stops/506301"], ["https://data.delijn.be/stops/102210", "https://data.delijn.be/stops/105885"], ["https://data.delijn.be/stops/202264", "https://data.delijn.be/stops/203263"], ["https://data.delijn.be/stops/101583", "https://data.delijn.be/stops/101587"], ["https://data.delijn.be/stops/208001", "https://data.delijn.be/stops/209098"], ["https://data.delijn.be/stops/500924", "https://data.delijn.be/stops/508337"], ["https://data.delijn.be/stops/200733", "https://data.delijn.be/stops/200736"], ["https://data.delijn.be/stops/102693", "https://data.delijn.be/stops/102694"], ["https://data.delijn.be/stops/503915", "https://data.delijn.be/stops/508915"], ["https://data.delijn.be/stops/407406", "https://data.delijn.be/stops/407565"], ["https://data.delijn.be/stops/402284", "https://data.delijn.be/stops/410335"], ["https://data.delijn.be/stops/103236", "https://data.delijn.be/stops/109433"], ["https://data.delijn.be/stops/401997", "https://data.delijn.be/stops/406988"], ["https://data.delijn.be/stops/407396", "https://data.delijn.be/stops/407542"], ["https://data.delijn.be/stops/103146", "https://data.delijn.be/stops/109520"], ["https://data.delijn.be/stops/103121", "https://data.delijn.be/stops/105445"], ["https://data.delijn.be/stops/409296", "https://data.delijn.be/stops/409305"], ["https://data.delijn.be/stops/305399", "https://data.delijn.be/stops/305401"], ["https://data.delijn.be/stops/208153", "https://data.delijn.be/stops/209151"], ["https://data.delijn.be/stops/105386", "https://data.delijn.be/stops/105387"], ["https://data.delijn.be/stops/400909", "https://data.delijn.be/stops/400961"], ["https://data.delijn.be/stops/503097", "https://data.delijn.be/stops/508097"], ["https://data.delijn.be/stops/408157", "https://data.delijn.be/stops/408158"], ["https://data.delijn.be/stops/302750", "https://data.delijn.be/stops/306184"], ["https://data.delijn.be/stops/103639", "https://data.delijn.be/stops/103641"], ["https://data.delijn.be/stops/200224", "https://data.delijn.be/stops/200226"], ["https://data.delijn.be/stops/206063", "https://data.delijn.be/stops/206500"], ["https://data.delijn.be/stops/208679", "https://data.delijn.be/stops/219002"], ["https://data.delijn.be/stops/509102", "https://data.delijn.be/stops/509759"], ["https://data.delijn.be/stops/202127", "https://data.delijn.be/stops/203597"], ["https://data.delijn.be/stops/506170", "https://data.delijn.be/stops/506182"], ["https://data.delijn.be/stops/404475", "https://data.delijn.be/stops/404537"], ["https://data.delijn.be/stops/407223", "https://data.delijn.be/stops/407490"], ["https://data.delijn.be/stops/205986", "https://data.delijn.be/stops/207993"], ["https://data.delijn.be/stops/408270", "https://data.delijn.be/stops/408278"], ["https://data.delijn.be/stops/201091", "https://data.delijn.be/stops/202896"], ["https://data.delijn.be/stops/404332", "https://data.delijn.be/stops/404336"], ["https://data.delijn.be/stops/501262", "https://data.delijn.be/stops/501359"], ["https://data.delijn.be/stops/206933", "https://data.delijn.be/stops/210003"], ["https://data.delijn.be/stops/300403", "https://data.delijn.be/stops/300404"], ["https://data.delijn.be/stops/502735", "https://data.delijn.be/stops/507721"], ["https://data.delijn.be/stops/405941", "https://data.delijn.be/stops/405995"], ["https://data.delijn.be/stops/302068", "https://data.delijn.be/stops/302070"], ["https://data.delijn.be/stops/403448", "https://data.delijn.be/stops/403525"], ["https://data.delijn.be/stops/500009", "https://data.delijn.be/stops/502768"], ["https://data.delijn.be/stops/401415", "https://data.delijn.be/stops/401416"], ["https://data.delijn.be/stops/305775", "https://data.delijn.be/stops/305778"], ["https://data.delijn.be/stops/403742", "https://data.delijn.be/stops/403755"], ["https://data.delijn.be/stops/302693", "https://data.delijn.be/stops/302694"], ["https://data.delijn.be/stops/107476", "https://data.delijn.be/stops/107477"], ["https://data.delijn.be/stops/105241", "https://data.delijn.be/stops/105246"], ["https://data.delijn.be/stops/204525", "https://data.delijn.be/stops/205481"], ["https://data.delijn.be/stops/502918", "https://data.delijn.be/stops/505580"], ["https://data.delijn.be/stops/303359", "https://data.delijn.be/stops/308892"], ["https://data.delijn.be/stops/205158", "https://data.delijn.be/stops/205164"], ["https://data.delijn.be/stops/207857", "https://data.delijn.be/stops/208625"], ["https://data.delijn.be/stops/104794", "https://data.delijn.be/stops/106825"], ["https://data.delijn.be/stops/301870", "https://data.delijn.be/stops/301874"], ["https://data.delijn.be/stops/501282", "https://data.delijn.be/stops/506283"], ["https://data.delijn.be/stops/204332", "https://data.delijn.be/stops/205332"], ["https://data.delijn.be/stops/203912", "https://data.delijn.be/stops/203915"], ["https://data.delijn.be/stops/208155", "https://data.delijn.be/stops/208509"], ["https://data.delijn.be/stops/206925", "https://data.delijn.be/stops/207814"], ["https://data.delijn.be/stops/206670", "https://data.delijn.be/stops/209342"], ["https://data.delijn.be/stops/405004", "https://data.delijn.be/stops/406501"], ["https://data.delijn.be/stops/105134", "https://data.delijn.be/stops/305618"], ["https://data.delijn.be/stops/207418", "https://data.delijn.be/stops/207660"], ["https://data.delijn.be/stops/504268", "https://data.delijn.be/stops/505298"], ["https://data.delijn.be/stops/102227", "https://data.delijn.be/stops/105526"], ["https://data.delijn.be/stops/303856", "https://data.delijn.be/stops/303860"], ["https://data.delijn.be/stops/201959", "https://data.delijn.be/stops/203198"], ["https://data.delijn.be/stops/503755", "https://data.delijn.be/stops/508766"], ["https://data.delijn.be/stops/407963", "https://data.delijn.be/stops/407967"], ["https://data.delijn.be/stops/304190", "https://data.delijn.be/stops/305495"], ["https://data.delijn.be/stops/205106", "https://data.delijn.be/stops/205750"], ["https://data.delijn.be/stops/304308", "https://data.delijn.be/stops/304309"], ["https://data.delijn.be/stops/300199", "https://data.delijn.be/stops/303127"], ["https://data.delijn.be/stops/108429", "https://data.delijn.be/stops/108432"], ["https://data.delijn.be/stops/106860", "https://data.delijn.be/stops/106862"], ["https://data.delijn.be/stops/507396", "https://data.delijn.be/stops/507671"], ["https://data.delijn.be/stops/503042", "https://data.delijn.be/stops/509206"], ["https://data.delijn.be/stops/407883", "https://data.delijn.be/stops/408443"], ["https://data.delijn.be/stops/304995", "https://data.delijn.be/stops/305035"], ["https://data.delijn.be/stops/300036", "https://data.delijn.be/stops/300857"], ["https://data.delijn.be/stops/203738", "https://data.delijn.be/stops/209693"], ["https://data.delijn.be/stops/102011", "https://data.delijn.be/stops/102079"], ["https://data.delijn.be/stops/301567", "https://data.delijn.be/stops/308080"], ["https://data.delijn.be/stops/208068", "https://data.delijn.be/stops/209071"], ["https://data.delijn.be/stops/403300", "https://data.delijn.be/stops/404174"], ["https://data.delijn.be/stops/306124", "https://data.delijn.be/stops/307146"], ["https://data.delijn.be/stops/206014", "https://data.delijn.be/stops/206913"], ["https://data.delijn.be/stops/407785", "https://data.delijn.be/stops/307379"], ["https://data.delijn.be/stops/108443", "https://data.delijn.be/stops/108446"], ["https://data.delijn.be/stops/106571", "https://data.delijn.be/stops/108540"], ["https://data.delijn.be/stops/200807", "https://data.delijn.be/stops/202388"], ["https://data.delijn.be/stops/209789", "https://data.delijn.be/stops/219009"], ["https://data.delijn.be/stops/506127", "https://data.delijn.be/stops/506128"], ["https://data.delijn.be/stops/206994", "https://data.delijn.be/stops/307768"], ["https://data.delijn.be/stops/503541", "https://data.delijn.be/stops/508580"], ["https://data.delijn.be/stops/501684", "https://data.delijn.be/stops/506172"], ["https://data.delijn.be/stops/102411", "https://data.delijn.be/stops/104388"], ["https://data.delijn.be/stops/208117", "https://data.delijn.be/stops/208336"], ["https://data.delijn.be/stops/201730", "https://data.delijn.be/stops/211850"], ["https://data.delijn.be/stops/406356", "https://data.delijn.be/stops/406357"], ["https://data.delijn.be/stops/208593", "https://data.delijn.be/stops/209967"], ["https://data.delijn.be/stops/108510", "https://data.delijn.be/stops/108511"], ["https://data.delijn.be/stops/402548", "https://data.delijn.be/stops/402549"], ["https://data.delijn.be/stops/209259", "https://data.delijn.be/stops/209260"], ["https://data.delijn.be/stops/302648", "https://data.delijn.be/stops/308120"], ["https://data.delijn.be/stops/108924", "https://data.delijn.be/stops/108927"], ["https://data.delijn.be/stops/209114", "https://data.delijn.be/stops/218007"], ["https://data.delijn.be/stops/300688", "https://data.delijn.be/stops/306940"], ["https://data.delijn.be/stops/300807", "https://data.delijn.be/stops/307574"], ["https://data.delijn.be/stops/504353", "https://data.delijn.be/stops/509353"], ["https://data.delijn.be/stops/504274", "https://data.delijn.be/stops/509274"], ["https://data.delijn.be/stops/400623", "https://data.delijn.be/stops/400628"], ["https://data.delijn.be/stops/201877", "https://data.delijn.be/stops/202424"], ["https://data.delijn.be/stops/303519", "https://data.delijn.be/stops/303523"], ["https://data.delijn.be/stops/202500", "https://data.delijn.be/stops/203499"], ["https://data.delijn.be/stops/201808", "https://data.delijn.be/stops/208261"], ["https://data.delijn.be/stops/402409", "https://data.delijn.be/stops/406911"], ["https://data.delijn.be/stops/302240", "https://data.delijn.be/stops/302241"], ["https://data.delijn.be/stops/404724", "https://data.delijn.be/stops/404749"], ["https://data.delijn.be/stops/404324", "https://data.delijn.be/stops/404325"], ["https://data.delijn.be/stops/204045", "https://data.delijn.be/stops/204046"], ["https://data.delijn.be/stops/308484", "https://data.delijn.be/stops/308536"], ["https://data.delijn.be/stops/302512", "https://data.delijn.be/stops/305874"], ["https://data.delijn.be/stops/200388", "https://data.delijn.be/stops/208496"], ["https://data.delijn.be/stops/304906", "https://data.delijn.be/stops/304908"], ["https://data.delijn.be/stops/108058", "https://data.delijn.be/stops/108220"], ["https://data.delijn.be/stops/102912", "https://data.delijn.be/stops/102913"], ["https://data.delijn.be/stops/204613", "https://data.delijn.be/stops/204731"], ["https://data.delijn.be/stops/105117", "https://data.delijn.be/stops/105156"], ["https://data.delijn.be/stops/406664", "https://data.delijn.be/stops/406665"], ["https://data.delijn.be/stops/408164", "https://data.delijn.be/stops/409315"], ["https://data.delijn.be/stops/201626", "https://data.delijn.be/stops/219003"], ["https://data.delijn.be/stops/502490", "https://data.delijn.be/stops/507512"], ["https://data.delijn.be/stops/503870", "https://data.delijn.be/stops/508875"], ["https://data.delijn.be/stops/503607", "https://data.delijn.be/stops/508607"], ["https://data.delijn.be/stops/401123", "https://data.delijn.be/stops/409643"], ["https://data.delijn.be/stops/202337", "https://data.delijn.be/stops/203337"], ["https://data.delijn.be/stops/503075", "https://data.delijn.be/stops/508075"], ["https://data.delijn.be/stops/102088", "https://data.delijn.be/stops/102089"], ["https://data.delijn.be/stops/101954", "https://data.delijn.be/stops/101956"], ["https://data.delijn.be/stops/206747", "https://data.delijn.be/stops/207336"], ["https://data.delijn.be/stops/502319", "https://data.delijn.be/stops/507710"], ["https://data.delijn.be/stops/209206", "https://data.delijn.be/stops/209207"], ["https://data.delijn.be/stops/402292", "https://data.delijn.be/stops/402293"], ["https://data.delijn.be/stops/300763", "https://data.delijn.be/stops/301049"], ["https://data.delijn.be/stops/303333", "https://data.delijn.be/stops/303335"], ["https://data.delijn.be/stops/300952", "https://data.delijn.be/stops/301072"], ["https://data.delijn.be/stops/503039", "https://data.delijn.be/stops/508042"], ["https://data.delijn.be/stops/104056", "https://data.delijn.be/stops/108097"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/402620"], ["https://data.delijn.be/stops/207571", "https://data.delijn.be/stops/208953"], ["https://data.delijn.be/stops/202783", "https://data.delijn.be/stops/203782"], ["https://data.delijn.be/stops/105416", "https://data.delijn.be/stops/109846"], ["https://data.delijn.be/stops/200817", "https://data.delijn.be/stops/203055"], ["https://data.delijn.be/stops/403048", "https://data.delijn.be/stops/403049"], ["https://data.delijn.be/stops/307885", "https://data.delijn.be/stops/307886"], ["https://data.delijn.be/stops/202704", "https://data.delijn.be/stops/202705"], ["https://data.delijn.be/stops/208814", "https://data.delijn.be/stops/209198"], ["https://data.delijn.be/stops/104535", "https://data.delijn.be/stops/108025"], ["https://data.delijn.be/stops/106826", "https://data.delijn.be/stops/106827"], ["https://data.delijn.be/stops/505388", "https://data.delijn.be/stops/508106"], ["https://data.delijn.be/stops/506001", "https://data.delijn.be/stops/509556"], ["https://data.delijn.be/stops/303761", "https://data.delijn.be/stops/303765"], ["https://data.delijn.be/stops/308124", "https://data.delijn.be/stops/308125"], ["https://data.delijn.be/stops/201762", "https://data.delijn.be/stops/208266"], ["https://data.delijn.be/stops/407648", "https://data.delijn.be/stops/407676"], ["https://data.delijn.be/stops/303313", "https://data.delijn.be/stops/303330"], ["https://data.delijn.be/stops/402225", "https://data.delijn.be/stops/402368"], ["https://data.delijn.be/stops/103000", "https://data.delijn.be/stops/104021"], ["https://data.delijn.be/stops/402952", "https://data.delijn.be/stops/405308"], ["https://data.delijn.be/stops/403127", "https://data.delijn.be/stops/403138"], ["https://data.delijn.be/stops/305103", "https://data.delijn.be/stops/305124"], ["https://data.delijn.be/stops/304583", "https://data.delijn.be/stops/304617"], ["https://data.delijn.be/stops/408202", "https://data.delijn.be/stops/408205"], ["https://data.delijn.be/stops/202646", "https://data.delijn.be/stops/203646"], ["https://data.delijn.be/stops/101805", "https://data.delijn.be/stops/106359"], ["https://data.delijn.be/stops/400739", "https://data.delijn.be/stops/400740"], ["https://data.delijn.be/stops/503981", "https://data.delijn.be/stops/508635"], ["https://data.delijn.be/stops/202112", "https://data.delijn.be/stops/205585"], ["https://data.delijn.be/stops/406086", "https://data.delijn.be/stops/406139"], ["https://data.delijn.be/stops/104643", "https://data.delijn.be/stops/107966"], ["https://data.delijn.be/stops/303070", "https://data.delijn.be/stops/303126"], ["https://data.delijn.be/stops/304666", "https://data.delijn.be/stops/304676"], ["https://data.delijn.be/stops/300286", "https://data.delijn.be/stops/301315"], ["https://data.delijn.be/stops/401417", "https://data.delijn.be/stops/305165"], ["https://data.delijn.be/stops/409236", "https://data.delijn.be/stops/409246"], ["https://data.delijn.be/stops/403970", "https://data.delijn.be/stops/403971"], ["https://data.delijn.be/stops/400451", "https://data.delijn.be/stops/400453"], ["https://data.delijn.be/stops/404306", "https://data.delijn.be/stops/404330"], ["https://data.delijn.be/stops/200130", "https://data.delijn.be/stops/201131"], ["https://data.delijn.be/stops/202705", "https://data.delijn.be/stops/203704"], ["https://data.delijn.be/stops/502332", "https://data.delijn.be/stops/505225"], ["https://data.delijn.be/stops/206969", "https://data.delijn.be/stops/207969"], ["https://data.delijn.be/stops/302752", "https://data.delijn.be/stops/302754"], ["https://data.delijn.be/stops/508438", "https://data.delijn.be/stops/509920"], ["https://data.delijn.be/stops/502802", "https://data.delijn.be/stops/507582"], ["https://data.delijn.be/stops/205215", "https://data.delijn.be/stops/205216"], ["https://data.delijn.be/stops/202878", "https://data.delijn.be/stops/203878"], ["https://data.delijn.be/stops/402970", "https://data.delijn.be/stops/402979"], ["https://data.delijn.be/stops/105917", "https://data.delijn.be/stops/105918"], ["https://data.delijn.be/stops/409662", "https://data.delijn.be/stops/409774"], ["https://data.delijn.be/stops/407755", "https://data.delijn.be/stops/407756"], ["https://data.delijn.be/stops/202345", "https://data.delijn.be/stops/209743"], ["https://data.delijn.be/stops/101958", "https://data.delijn.be/stops/108296"], ["https://data.delijn.be/stops/206551", "https://data.delijn.be/stops/209744"], ["https://data.delijn.be/stops/103129", "https://data.delijn.be/stops/104431"], ["https://data.delijn.be/stops/405517", "https://data.delijn.be/stops/407291"], ["https://data.delijn.be/stops/209302", "https://data.delijn.be/stops/507962"], ["https://data.delijn.be/stops/204130", "https://data.delijn.be/stops/205789"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/302868"], ["https://data.delijn.be/stops/305017", "https://data.delijn.be/stops/305018"], ["https://data.delijn.be/stops/501103", "https://data.delijn.be/stops/506225"], ["https://data.delijn.be/stops/208182", "https://data.delijn.be/stops/208759"], ["https://data.delijn.be/stops/503894", "https://data.delijn.be/stops/508895"], ["https://data.delijn.be/stops/301791", "https://data.delijn.be/stops/301796"], ["https://data.delijn.be/stops/304436", "https://data.delijn.be/stops/304438"], ["https://data.delijn.be/stops/307152", "https://data.delijn.be/stops/307159"], ["https://data.delijn.be/stops/303759", "https://data.delijn.be/stops/303763"], ["https://data.delijn.be/stops/300292", "https://data.delijn.be/stops/300300"], ["https://data.delijn.be/stops/503540", "https://data.delijn.be/stops/508552"], ["https://data.delijn.be/stops/208602", "https://data.delijn.be/stops/306367"], ["https://data.delijn.be/stops/204172", "https://data.delijn.be/stops/205172"], ["https://data.delijn.be/stops/206912", "https://data.delijn.be/stops/207018"], ["https://data.delijn.be/stops/102867", "https://data.delijn.be/stops/106449"], ["https://data.delijn.be/stops/301287", "https://data.delijn.be/stops/307942"], ["https://data.delijn.be/stops/102172", "https://data.delijn.be/stops/108097"], ["https://data.delijn.be/stops/101226", "https://data.delijn.be/stops/107802"], ["https://data.delijn.be/stops/200072", "https://data.delijn.be/stops/201072"], ["https://data.delijn.be/stops/407741", "https://data.delijn.be/stops/409632"], ["https://data.delijn.be/stops/207401", "https://data.delijn.be/stops/207402"], ["https://data.delijn.be/stops/408312", "https://data.delijn.be/stops/408313"], ["https://data.delijn.be/stops/404408", "https://data.delijn.be/stops/404420"], ["https://data.delijn.be/stops/504287", "https://data.delijn.be/stops/504776"], ["https://data.delijn.be/stops/500027", "https://data.delijn.be/stops/502369"], ["https://data.delijn.be/stops/401285", "https://data.delijn.be/stops/410198"], ["https://data.delijn.be/stops/200117", "https://data.delijn.be/stops/200872"], ["https://data.delijn.be/stops/301213", "https://data.delijn.be/stops/301215"], ["https://data.delijn.be/stops/302206", "https://data.delijn.be/stops/308102"], ["https://data.delijn.be/stops/404776", "https://data.delijn.be/stops/404777"], ["https://data.delijn.be/stops/206840", "https://data.delijn.be/stops/206841"], ["https://data.delijn.be/stops/305028", "https://data.delijn.be/stops/305029"], ["https://data.delijn.be/stops/302715", "https://data.delijn.be/stops/302725"], ["https://data.delijn.be/stops/403124", "https://data.delijn.be/stops/403176"], ["https://data.delijn.be/stops/104960", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/101016", "https://data.delijn.be/stops/105070"], ["https://data.delijn.be/stops/209581", "https://data.delijn.be/stops/219020"], ["https://data.delijn.be/stops/103693", "https://data.delijn.be/stops/103694"], ["https://data.delijn.be/stops/306912", "https://data.delijn.be/stops/308875"], ["https://data.delijn.be/stops/205289", "https://data.delijn.be/stops/205546"], ["https://data.delijn.be/stops/501180", "https://data.delijn.be/stops/509495"], ["https://data.delijn.be/stops/406057", "https://data.delijn.be/stops/406138"], ["https://data.delijn.be/stops/208044", "https://data.delijn.be/stops/208082"], ["https://data.delijn.be/stops/304434", "https://data.delijn.be/stops/304459"], ["https://data.delijn.be/stops/206489", "https://data.delijn.be/stops/207489"], ["https://data.delijn.be/stops/503155", "https://data.delijn.be/stops/503437"], ["https://data.delijn.be/stops/101757", "https://data.delijn.be/stops/102182"], ["https://data.delijn.be/stops/201975", "https://data.delijn.be/stops/208045"], ["https://data.delijn.be/stops/502512", "https://data.delijn.be/stops/507512"], ["https://data.delijn.be/stops/205322", "https://data.delijn.be/stops/205323"], ["https://data.delijn.be/stops/405604", "https://data.delijn.be/stops/408556"], ["https://data.delijn.be/stops/200030", "https://data.delijn.be/stops/200031"], ["https://data.delijn.be/stops/205261", "https://data.delijn.be/stops/205652"], ["https://data.delijn.be/stops/406596", "https://data.delijn.be/stops/406611"], ["https://data.delijn.be/stops/206261", "https://data.delijn.be/stops/207261"], ["https://data.delijn.be/stops/104100", "https://data.delijn.be/stops/104300"], ["https://data.delijn.be/stops/105449", "https://data.delijn.be/stops/105450"], ["https://data.delijn.be/stops/503059", "https://data.delijn.be/stops/503117"], ["https://data.delijn.be/stops/304773", "https://data.delijn.be/stops/305250"], ["https://data.delijn.be/stops/409713", "https://data.delijn.be/stops/409715"], ["https://data.delijn.be/stops/406912", "https://data.delijn.be/stops/406969"], ["https://data.delijn.be/stops/302646", "https://data.delijn.be/stops/308113"], ["https://data.delijn.be/stops/408326", "https://data.delijn.be/stops/408335"], ["https://data.delijn.be/stops/200331", "https://data.delijn.be/stops/201961"], ["https://data.delijn.be/stops/407684", "https://data.delijn.be/stops/407687"], ["https://data.delijn.be/stops/405517", "https://data.delijn.be/stops/405519"], ["https://data.delijn.be/stops/200364", "https://data.delijn.be/stops/201364"], ["https://data.delijn.be/stops/400082", "https://data.delijn.be/stops/400085"], ["https://data.delijn.be/stops/505748", "https://data.delijn.be/stops/507183"], ["https://data.delijn.be/stops/104417", "https://data.delijn.be/stops/204489"], ["https://data.delijn.be/stops/501370", "https://data.delijn.be/stops/506370"], ["https://data.delijn.be/stops/206871", "https://data.delijn.be/stops/208790"], ["https://data.delijn.be/stops/102947", "https://data.delijn.be/stops/106127"], ["https://data.delijn.be/stops/508721", "https://data.delijn.be/stops/508723"], ["https://data.delijn.be/stops/302979", "https://data.delijn.be/stops/303450"], ["https://data.delijn.be/stops/102340", "https://data.delijn.be/stops/106359"], ["https://data.delijn.be/stops/201377", "https://data.delijn.be/stops/201378"], ["https://data.delijn.be/stops/105356", "https://data.delijn.be/stops/106235"], ["https://data.delijn.be/stops/503029", "https://data.delijn.be/stops/507766"], ["https://data.delijn.be/stops/400034", "https://data.delijn.be/stops/400681"], ["https://data.delijn.be/stops/103251", "https://data.delijn.be/stops/107720"], ["https://data.delijn.be/stops/303226", "https://data.delijn.be/stops/303229"], ["https://data.delijn.be/stops/406503", "https://data.delijn.be/stops/406508"], ["https://data.delijn.be/stops/200396", "https://data.delijn.be/stops/204804"], ["https://data.delijn.be/stops/102632", "https://data.delijn.be/stops/103334"], ["https://data.delijn.be/stops/300480", "https://data.delijn.be/stops/300535"], ["https://data.delijn.be/stops/503150", "https://data.delijn.be/stops/508148"], ["https://data.delijn.be/stops/504093", "https://data.delijn.be/stops/505196"], ["https://data.delijn.be/stops/208222", "https://data.delijn.be/stops/209282"], ["https://data.delijn.be/stops/402222", "https://data.delijn.be/stops/409631"], ["https://data.delijn.be/stops/402976", "https://data.delijn.be/stops/403317"], ["https://data.delijn.be/stops/505257", "https://data.delijn.be/stops/508292"], ["https://data.delijn.be/stops/307213", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/109693", "https://data.delijn.be/stops/109695"], ["https://data.delijn.be/stops/401572", "https://data.delijn.be/stops/402248"], ["https://data.delijn.be/stops/206756", "https://data.delijn.be/stops/207515"], ["https://data.delijn.be/stops/106590", "https://data.delijn.be/stops/107251"], ["https://data.delijn.be/stops/201401", "https://data.delijn.be/stops/202364"], ["https://data.delijn.be/stops/407452", "https://data.delijn.be/stops/407460"], ["https://data.delijn.be/stops/503633", "https://data.delijn.be/stops/508633"], ["https://data.delijn.be/stops/301596", "https://data.delijn.be/stops/307675"], ["https://data.delijn.be/stops/300288", "https://data.delijn.be/stops/300303"], ["https://data.delijn.be/stops/208538", "https://data.delijn.be/stops/209693"], ["https://data.delijn.be/stops/301603", "https://data.delijn.be/stops/301620"], ["https://data.delijn.be/stops/401783", "https://data.delijn.be/stops/410251"], ["https://data.delijn.be/stops/408840", "https://data.delijn.be/stops/408841"], ["https://data.delijn.be/stops/209776", "https://data.delijn.be/stops/219031"], ["https://data.delijn.be/stops/400827", "https://data.delijn.be/stops/402011"], ["https://data.delijn.be/stops/200076", "https://data.delijn.be/stops/201242"], ["https://data.delijn.be/stops/200958", "https://data.delijn.be/stops/209852"], ["https://data.delijn.be/stops/301745", "https://data.delijn.be/stops/308413"], ["https://data.delijn.be/stops/500002", "https://data.delijn.be/stops/505132"], ["https://data.delijn.be/stops/502574", "https://data.delijn.be/stops/507571"], ["https://data.delijn.be/stops/307251", "https://data.delijn.be/stops/307252"], ["https://data.delijn.be/stops/208110", "https://data.delijn.be/stops/219009"], ["https://data.delijn.be/stops/301165", "https://data.delijn.be/stops/307693"], ["https://data.delijn.be/stops/402095", "https://data.delijn.be/stops/402486"], ["https://data.delijn.be/stops/503425", "https://data.delijn.be/stops/508441"], ["https://data.delijn.be/stops/208718", "https://data.delijn.be/stops/209496"], ["https://data.delijn.be/stops/501205", "https://data.delijn.be/stops/501321"], ["https://data.delijn.be/stops/404767", "https://data.delijn.be/stops/404817"], ["https://data.delijn.be/stops/408284", "https://data.delijn.be/stops/408376"], ["https://data.delijn.be/stops/403077", "https://data.delijn.be/stops/403250"], ["https://data.delijn.be/stops/208174", "https://data.delijn.be/stops/209174"], ["https://data.delijn.be/stops/206471", "https://data.delijn.be/stops/207470"], ["https://data.delijn.be/stops/407498", "https://data.delijn.be/stops/407540"], ["https://data.delijn.be/stops/304296", "https://data.delijn.be/stops/304478"], ["https://data.delijn.be/stops/503111", "https://data.delijn.be/stops/508112"], ["https://data.delijn.be/stops/504862", "https://data.delijn.be/stops/505951"], ["https://data.delijn.be/stops/505138", "https://data.delijn.be/stops/505296"], ["https://data.delijn.be/stops/502754", "https://data.delijn.be/stops/505647"], ["https://data.delijn.be/stops/407803", "https://data.delijn.be/stops/407848"], ["https://data.delijn.be/stops/208159", "https://data.delijn.be/stops/209098"], ["https://data.delijn.be/stops/501617", "https://data.delijn.be/stops/506015"], ["https://data.delijn.be/stops/301122", "https://data.delijn.be/stops/301132"], ["https://data.delijn.be/stops/304877", "https://data.delijn.be/stops/307830"], ["https://data.delijn.be/stops/505814", "https://data.delijn.be/stops/507173"], ["https://data.delijn.be/stops/103087", "https://data.delijn.be/stops/107468"], ["https://data.delijn.be/stops/405696", "https://data.delijn.be/stops/405925"], ["https://data.delijn.be/stops/208536", "https://data.delijn.be/stops/209696"], ["https://data.delijn.be/stops/102567", "https://data.delijn.be/stops/406488"], ["https://data.delijn.be/stops/406826", "https://data.delijn.be/stops/409433"], ["https://data.delijn.be/stops/206546", "https://data.delijn.be/stops/209750"], ["https://data.delijn.be/stops/208149", "https://data.delijn.be/stops/209149"], ["https://data.delijn.be/stops/300543", "https://data.delijn.be/stops/300561"], ["https://data.delijn.be/stops/501245", "https://data.delijn.be/stops/501254"], ["https://data.delijn.be/stops/208225", "https://data.delijn.be/stops/208774"], ["https://data.delijn.be/stops/501423", "https://data.delijn.be/stops/506423"], ["https://data.delijn.be/stops/407692", "https://data.delijn.be/stops/407693"], ["https://data.delijn.be/stops/104666", "https://data.delijn.be/stops/108464"], ["https://data.delijn.be/stops/106955", "https://data.delijn.be/stops/106959"], ["https://data.delijn.be/stops/201683", "https://data.delijn.be/stops/210081"], ["https://data.delijn.be/stops/402873", "https://data.delijn.be/stops/402876"], ["https://data.delijn.be/stops/407538", "https://data.delijn.be/stops/407557"], ["https://data.delijn.be/stops/502128", "https://data.delijn.be/stops/502146"], ["https://data.delijn.be/stops/109314", "https://data.delijn.be/stops/109867"], ["https://data.delijn.be/stops/308506", "https://data.delijn.be/stops/308591"], ["https://data.delijn.be/stops/103066", "https://data.delijn.be/stops/305823"], ["https://data.delijn.be/stops/404042", "https://data.delijn.be/stops/404049"], ["https://data.delijn.be/stops/402105", "https://data.delijn.be/stops/407328"], ["https://data.delijn.be/stops/405772", "https://data.delijn.be/stops/409420"], ["https://data.delijn.be/stops/400312", "https://data.delijn.be/stops/400313"], ["https://data.delijn.be/stops/403132", "https://data.delijn.be/stops/403411"], ["https://data.delijn.be/stops/502326", "https://data.delijn.be/stops/507326"], ["https://data.delijn.be/stops/207797", "https://data.delijn.be/stops/208759"], ["https://data.delijn.be/stops/107224", "https://data.delijn.be/stops/109886"], ["https://data.delijn.be/stops/403255", "https://data.delijn.be/stops/403428"], ["https://data.delijn.be/stops/400063", "https://data.delijn.be/stops/400096"], ["https://data.delijn.be/stops/303188", "https://data.delijn.be/stops/303212"], ["https://data.delijn.be/stops/303824", "https://data.delijn.be/stops/303827"], ["https://data.delijn.be/stops/405875", "https://data.delijn.be/stops/406995"], ["https://data.delijn.be/stops/406443", "https://data.delijn.be/stops/409349"], ["https://data.delijn.be/stops/301517", "https://data.delijn.be/stops/301527"], ["https://data.delijn.be/stops/508105", "https://data.delijn.be/stops/508974"], ["https://data.delijn.be/stops/206145", "https://data.delijn.be/stops/207145"], ["https://data.delijn.be/stops/201370", "https://data.delijn.be/stops/201446"], ["https://data.delijn.be/stops/401776", "https://data.delijn.be/stops/401781"], ["https://data.delijn.be/stops/503277", "https://data.delijn.be/stops/504713"], ["https://data.delijn.be/stops/109115", "https://data.delijn.be/stops/109120"], ["https://data.delijn.be/stops/405527", "https://data.delijn.be/stops/405530"], ["https://data.delijn.be/stops/101442", "https://data.delijn.be/stops/106479"], ["https://data.delijn.be/stops/406305", "https://data.delijn.be/stops/406364"], ["https://data.delijn.be/stops/303497", "https://data.delijn.be/stops/303499"], ["https://data.delijn.be/stops/505687", "https://data.delijn.be/stops/507070"], ["https://data.delijn.be/stops/302722", "https://data.delijn.be/stops/308833"], ["https://data.delijn.be/stops/207453", "https://data.delijn.be/stops/207482"], ["https://data.delijn.be/stops/209303", "https://data.delijn.be/stops/507962"], ["https://data.delijn.be/stops/103108", "https://data.delijn.be/stops/104770"], ["https://data.delijn.be/stops/501115", "https://data.delijn.be/stops/506113"], ["https://data.delijn.be/stops/105844", "https://data.delijn.be/stops/105847"], ["https://data.delijn.be/stops/400085", "https://data.delijn.be/stops/400152"], ["https://data.delijn.be/stops/304403", "https://data.delijn.be/stops/307414"], ["https://data.delijn.be/stops/503714", "https://data.delijn.be/stops/508739"], ["https://data.delijn.be/stops/303733", "https://data.delijn.be/stops/307258"], ["https://data.delijn.be/stops/101789", "https://data.delijn.be/stops/106364"], ["https://data.delijn.be/stops/302091", "https://data.delijn.be/stops/302102"], ["https://data.delijn.be/stops/108874", "https://data.delijn.be/stops/109507"], ["https://data.delijn.be/stops/507817", "https://data.delijn.be/stops/508346"], ["https://data.delijn.be/stops/502665", "https://data.delijn.be/stops/505013"], ["https://data.delijn.be/stops/408981", "https://data.delijn.be/stops/408994"], ["https://data.delijn.be/stops/505306", "https://data.delijn.be/stops/508932"], ["https://data.delijn.be/stops/200135", "https://data.delijn.be/stops/200136"], ["https://data.delijn.be/stops/107315", "https://data.delijn.be/stops/108970"], ["https://data.delijn.be/stops/501064", "https://data.delijn.be/stops/501065"], ["https://data.delijn.be/stops/201672", "https://data.delijn.be/stops/203211"], ["https://data.delijn.be/stops/302374", "https://data.delijn.be/stops/302375"], ["https://data.delijn.be/stops/301257", "https://data.delijn.be/stops/301258"], ["https://data.delijn.be/stops/108042", "https://data.delijn.be/stops/108043"], ["https://data.delijn.be/stops/104018", "https://data.delijn.be/stops/107262"], ["https://data.delijn.be/stops/408135", "https://data.delijn.be/stops/408136"], ["https://data.delijn.be/stops/103313", "https://data.delijn.be/stops/109420"], ["https://data.delijn.be/stops/203785", "https://data.delijn.be/stops/203786"], ["https://data.delijn.be/stops/507912", "https://data.delijn.be/stops/509946"], ["https://data.delijn.be/stops/102217", "https://data.delijn.be/stops/102671"], ["https://data.delijn.be/stops/105602", "https://data.delijn.be/stops/105604"], ["https://data.delijn.be/stops/507090", "https://data.delijn.be/stops/507644"], ["https://data.delijn.be/stops/400911", "https://data.delijn.be/stops/400962"], ["https://data.delijn.be/stops/304359", "https://data.delijn.be/stops/307368"], ["https://data.delijn.be/stops/406158", "https://data.delijn.be/stops/406297"], ["https://data.delijn.be/stops/200070", "https://data.delijn.be/stops/200448"], ["https://data.delijn.be/stops/303818", "https://data.delijn.be/stops/303845"], ["https://data.delijn.be/stops/406108", "https://data.delijn.be/stops/406109"], ["https://data.delijn.be/stops/503982", "https://data.delijn.be/stops/508982"], ["https://data.delijn.be/stops/206002", "https://data.delijn.be/stops/207002"], ["https://data.delijn.be/stops/400452", "https://data.delijn.be/stops/400453"], ["https://data.delijn.be/stops/301184", "https://data.delijn.be/stops/304072"], ["https://data.delijn.be/stops/105139", "https://data.delijn.be/stops/305830"], ["https://data.delijn.be/stops/300323", "https://data.delijn.be/stops/300335"], ["https://data.delijn.be/stops/102598", "https://data.delijn.be/stops/102603"], ["https://data.delijn.be/stops/401127", "https://data.delijn.be/stops/401135"], ["https://data.delijn.be/stops/103496", "https://data.delijn.be/stops/106215"], ["https://data.delijn.be/stops/107492", "https://data.delijn.be/stops/107518"], ["https://data.delijn.be/stops/300267", "https://data.delijn.be/stops/302151"], ["https://data.delijn.be/stops/206305", "https://data.delijn.be/stops/206880"], ["https://data.delijn.be/stops/303123", "https://data.delijn.be/stops/307206"], ["https://data.delijn.be/stops/305603", "https://data.delijn.be/stops/305606"], ["https://data.delijn.be/stops/107300", "https://data.delijn.be/stops/107600"], ["https://data.delijn.be/stops/400825", "https://data.delijn.be/stops/403574"], ["https://data.delijn.be/stops/509299", "https://data.delijn.be/stops/509861"], ["https://data.delijn.be/stops/503656", "https://data.delijn.be/stops/505526"], ["https://data.delijn.be/stops/206377", "https://data.delijn.be/stops/207916"], ["https://data.delijn.be/stops/400830", "https://data.delijn.be/stops/409394"], ["https://data.delijn.be/stops/504376", "https://data.delijn.be/stops/507918"], ["https://data.delijn.be/stops/302848", "https://data.delijn.be/stops/308823"], ["https://data.delijn.be/stops/505099", "https://data.delijn.be/stops/507274"], ["https://data.delijn.be/stops/207712", "https://data.delijn.be/stops/207744"], ["https://data.delijn.be/stops/503332", "https://data.delijn.be/stops/508330"], ["https://data.delijn.be/stops/106395", "https://data.delijn.be/stops/107280"], ["https://data.delijn.be/stops/400878", "https://data.delijn.be/stops/400879"], ["https://data.delijn.be/stops/507278", "https://data.delijn.be/stops/507279"], ["https://data.delijn.be/stops/501600", "https://data.delijn.be/stops/506683"], ["https://data.delijn.be/stops/301255", "https://data.delijn.be/stops/308261"], ["https://data.delijn.be/stops/502218", "https://data.delijn.be/stops/507208"], ["https://data.delijn.be/stops/107600", "https://data.delijn.be/stops/108230"], ["https://data.delijn.be/stops/502351", "https://data.delijn.be/stops/502571"], ["https://data.delijn.be/stops/200205", "https://data.delijn.be/stops/202000"], ["https://data.delijn.be/stops/206595", "https://data.delijn.be/stops/207596"], ["https://data.delijn.be/stops/304542", "https://data.delijn.be/stops/307569"], ["https://data.delijn.be/stops/304722", "https://data.delijn.be/stops/306968"], ["https://data.delijn.be/stops/106607", "https://data.delijn.be/stops/106688"], ["https://data.delijn.be/stops/401504", "https://data.delijn.be/stops/404333"], ["https://data.delijn.be/stops/101386", "https://data.delijn.be/stops/101394"], ["https://data.delijn.be/stops/307372", "https://data.delijn.be/stops/308640"], ["https://data.delijn.be/stops/406313", "https://data.delijn.be/stops/406322"], ["https://data.delijn.be/stops/300072", "https://data.delijn.be/stops/304671"], ["https://data.delijn.be/stops/502363", "https://data.delijn.be/stops/507363"], ["https://data.delijn.be/stops/104596", "https://data.delijn.be/stops/107426"], ["https://data.delijn.be/stops/202388", "https://data.delijn.be/stops/202655"], ["https://data.delijn.be/stops/304157", "https://data.delijn.be/stops/307758"], ["https://data.delijn.be/stops/200669", "https://data.delijn.be/stops/508847"], ["https://data.delijn.be/stops/206484", "https://data.delijn.be/stops/206552"], ["https://data.delijn.be/stops/507318", "https://data.delijn.be/stops/507534"], ["https://data.delijn.be/stops/504090", "https://data.delijn.be/stops/508474"], ["https://data.delijn.be/stops/201001", "https://data.delijn.be/stops/202540"], ["https://data.delijn.be/stops/408143", "https://data.delijn.be/stops/308202"], ["https://data.delijn.be/stops/303091", "https://data.delijn.be/stops/303113"], ["https://data.delijn.be/stops/407819", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/503642", "https://data.delijn.be/stops/504876"], ["https://data.delijn.be/stops/305342", "https://data.delijn.be/stops/305345"], ["https://data.delijn.be/stops/402720", "https://data.delijn.be/stops/410057"], ["https://data.delijn.be/stops/202712", "https://data.delijn.be/stops/203712"], ["https://data.delijn.be/stops/108306", "https://data.delijn.be/stops/108308"], ["https://data.delijn.be/stops/403924", "https://data.delijn.be/stops/404005"], ["https://data.delijn.be/stops/405154", "https://data.delijn.be/stops/405160"], ["https://data.delijn.be/stops/105339", "https://data.delijn.be/stops/105341"], ["https://data.delijn.be/stops/208418", "https://data.delijn.be/stops/209418"], ["https://data.delijn.be/stops/106594", "https://data.delijn.be/stops/107790"], ["https://data.delijn.be/stops/106671", "https://data.delijn.be/stops/106673"], ["https://data.delijn.be/stops/305069", "https://data.delijn.be/stops/305079"], ["https://data.delijn.be/stops/507231", "https://data.delijn.be/stops/507237"], ["https://data.delijn.be/stops/305261", "https://data.delijn.be/stops/307296"], ["https://data.delijn.be/stops/501695", "https://data.delijn.be/stops/502061"], ["https://data.delijn.be/stops/301519", "https://data.delijn.be/stops/305737"], ["https://data.delijn.be/stops/300727", "https://data.delijn.be/stops/304254"], ["https://data.delijn.be/stops/106039", "https://data.delijn.be/stops/106041"], ["https://data.delijn.be/stops/302675", "https://data.delijn.be/stops/302679"], ["https://data.delijn.be/stops/202676", "https://data.delijn.be/stops/203677"], ["https://data.delijn.be/stops/304060", "https://data.delijn.be/stops/307504"], ["https://data.delijn.be/stops/108504", "https://data.delijn.be/stops/108506"], ["https://data.delijn.be/stops/506019", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/304805", "https://data.delijn.be/stops/308771"], ["https://data.delijn.be/stops/401355", "https://data.delijn.be/stops/401356"], ["https://data.delijn.be/stops/206888", "https://data.delijn.be/stops/207883"], ["https://data.delijn.be/stops/102675", "https://data.delijn.be/stops/105415"], ["https://data.delijn.be/stops/503487", "https://data.delijn.be/stops/509190"], ["https://data.delijn.be/stops/305285", "https://data.delijn.be/stops/305288"], ["https://data.delijn.be/stops/501322", "https://data.delijn.be/stops/506322"], ["https://data.delijn.be/stops/401784", "https://data.delijn.be/stops/401785"], ["https://data.delijn.be/stops/401410", "https://data.delijn.be/stops/300987"], ["https://data.delijn.be/stops/402642", "https://data.delijn.be/stops/402643"], ["https://data.delijn.be/stops/202558", "https://data.delijn.be/stops/203558"], ["https://data.delijn.be/stops/504909", "https://data.delijn.be/stops/504940"], ["https://data.delijn.be/stops/103037", "https://data.delijn.be/stops/107407"], ["https://data.delijn.be/stops/406169", "https://data.delijn.be/stops/406172"], ["https://data.delijn.be/stops/502668", "https://data.delijn.be/stops/502766"], ["https://data.delijn.be/stops/106215", "https://data.delijn.be/stops/106216"], ["https://data.delijn.be/stops/301967", "https://data.delijn.be/stops/307167"], ["https://data.delijn.be/stops/200506", "https://data.delijn.be/stops/201506"], ["https://data.delijn.be/stops/303594", "https://data.delijn.be/stops/308604"], ["https://data.delijn.be/stops/304662", "https://data.delijn.be/stops/304665"], ["https://data.delijn.be/stops/302385", "https://data.delijn.be/stops/304068"], ["https://data.delijn.be/stops/109023", "https://data.delijn.be/stops/109026"], ["https://data.delijn.be/stops/402406", "https://data.delijn.be/stops/402410"], ["https://data.delijn.be/stops/107921", "https://data.delijn.be/stops/308797"], ["https://data.delijn.be/stops/403411", "https://data.delijn.be/stops/403845"], ["https://data.delijn.be/stops/405397", "https://data.delijn.be/stops/408606"], ["https://data.delijn.be/stops/208263", "https://data.delijn.be/stops/209263"], ["https://data.delijn.be/stops/206967", "https://data.delijn.be/stops/207929"], ["https://data.delijn.be/stops/302952", "https://data.delijn.be/stops/306374"], ["https://data.delijn.be/stops/405633", "https://data.delijn.be/stops/405634"], ["https://data.delijn.be/stops/302113", "https://data.delijn.be/stops/302120"], ["https://data.delijn.be/stops/500024", "https://data.delijn.be/stops/500943"], ["https://data.delijn.be/stops/305567", "https://data.delijn.be/stops/307184"], ["https://data.delijn.be/stops/307149", "https://data.delijn.be/stops/307150"], ["https://data.delijn.be/stops/303421", "https://data.delijn.be/stops/304987"], ["https://data.delijn.be/stops/500118", "https://data.delijn.be/stops/507672"], ["https://data.delijn.be/stops/405322", "https://data.delijn.be/stops/405326"], ["https://data.delijn.be/stops/505060", "https://data.delijn.be/stops/505646"], ["https://data.delijn.be/stops/105740", "https://data.delijn.be/stops/105750"], ["https://data.delijn.be/stops/504594", "https://data.delijn.be/stops/505367"], ["https://data.delijn.be/stops/406205", "https://data.delijn.be/stops/410353"], ["https://data.delijn.be/stops/202360", "https://data.delijn.be/stops/202361"], ["https://data.delijn.be/stops/407657", "https://data.delijn.be/stops/407713"], ["https://data.delijn.be/stops/207672", "https://data.delijn.be/stops/208101"], ["https://data.delijn.be/stops/202743", "https://data.delijn.be/stops/203742"], ["https://data.delijn.be/stops/403092", "https://data.delijn.be/stops/403120"], ["https://data.delijn.be/stops/407363", "https://data.delijn.be/stops/408477"], ["https://data.delijn.be/stops/101261", "https://data.delijn.be/stops/103675"], ["https://data.delijn.be/stops/206124", "https://data.delijn.be/stops/207512"], ["https://data.delijn.be/stops/107622", "https://data.delijn.be/stops/109764"], ["https://data.delijn.be/stops/400037", "https://data.delijn.be/stops/400041"], ["https://data.delijn.be/stops/305628", "https://data.delijn.be/stops/305766"], ["https://data.delijn.be/stops/205987", "https://data.delijn.be/stops/209284"], ["https://data.delijn.be/stops/304135", "https://data.delijn.be/stops/307760"], ["https://data.delijn.be/stops/105111", "https://data.delijn.be/stops/105112"], ["https://data.delijn.be/stops/401574", "https://data.delijn.be/stops/407328"], ["https://data.delijn.be/stops/304866", "https://data.delijn.be/stops/304868"], ["https://data.delijn.be/stops/206406", "https://data.delijn.be/stops/207407"], ["https://data.delijn.be/stops/306765", "https://data.delijn.be/stops/307273"], ["https://data.delijn.be/stops/102199", "https://data.delijn.be/stops/103747"], ["https://data.delijn.be/stops/104485", "https://data.delijn.be/stops/105110"], ["https://data.delijn.be/stops/503335", "https://data.delijn.be/stops/503343"], ["https://data.delijn.be/stops/308660", "https://data.delijn.be/stops/308661"], ["https://data.delijn.be/stops/306873", "https://data.delijn.be/stops/306874"], ["https://data.delijn.be/stops/210058", "https://data.delijn.be/stops/211058"], ["https://data.delijn.be/stops/406205", "https://data.delijn.be/stops/406295"], ["https://data.delijn.be/stops/502013", "https://data.delijn.be/stops/507168"], ["https://data.delijn.be/stops/503945", "https://data.delijn.be/stops/508162"], ["https://data.delijn.be/stops/302915", "https://data.delijn.be/stops/303236"], ["https://data.delijn.be/stops/300945", "https://data.delijn.be/stops/300946"], ["https://data.delijn.be/stops/300232", "https://data.delijn.be/stops/302412"], ["https://data.delijn.be/stops/400621", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/506409", "https://data.delijn.be/stops/506410"], ["https://data.delijn.be/stops/207390", "https://data.delijn.be/stops/207391"], ["https://data.delijn.be/stops/200008", "https://data.delijn.be/stops/200416"], ["https://data.delijn.be/stops/503489", "https://data.delijn.be/stops/505718"], ["https://data.delijn.be/stops/101005", "https://data.delijn.be/stops/101141"], ["https://data.delijn.be/stops/102197", "https://data.delijn.be/stops/105259"], ["https://data.delijn.be/stops/302257", "https://data.delijn.be/stops/304343"], ["https://data.delijn.be/stops/302620", "https://data.delijn.be/stops/305726"], ["https://data.delijn.be/stops/105709", "https://data.delijn.be/stops/106078"], ["https://data.delijn.be/stops/101973", "https://data.delijn.be/stops/109705"], ["https://data.delijn.be/stops/504064", "https://data.delijn.be/stops/509064"], ["https://data.delijn.be/stops/506215", "https://data.delijn.be/stops/506221"], ["https://data.delijn.be/stops/300870", "https://data.delijn.be/stops/302234"], ["https://data.delijn.be/stops/403688", "https://data.delijn.be/stops/403689"], ["https://data.delijn.be/stops/505104", "https://data.delijn.be/stops/508887"], ["https://data.delijn.be/stops/105283", "https://data.delijn.be/stops/109957"], ["https://data.delijn.be/stops/400287", "https://data.delijn.be/stops/400402"], ["https://data.delijn.be/stops/406193", "https://data.delijn.be/stops/406746"], ["https://data.delijn.be/stops/404960", "https://data.delijn.be/stops/409524"], ["https://data.delijn.be/stops/501003", "https://data.delijn.be/stops/501056"], ["https://data.delijn.be/stops/508555", "https://data.delijn.be/stops/509404"], ["https://data.delijn.be/stops/209979", "https://data.delijn.be/stops/214003"], ["https://data.delijn.be/stops/201849", "https://data.delijn.be/stops/209641"], ["https://data.delijn.be/stops/400913", "https://data.delijn.be/stops/400918"], ["https://data.delijn.be/stops/404558", "https://data.delijn.be/stops/406706"], ["https://data.delijn.be/stops/504609", "https://data.delijn.be/stops/504614"], ["https://data.delijn.be/stops/101134", "https://data.delijn.be/stops/107805"], ["https://data.delijn.be/stops/400658", "https://data.delijn.be/stops/400662"], ["https://data.delijn.be/stops/207764", "https://data.delijn.be/stops/207790"], ["https://data.delijn.be/stops/101671", "https://data.delijn.be/stops/408809"], ["https://data.delijn.be/stops/201598", "https://data.delijn.be/stops/210132"], ["https://data.delijn.be/stops/302022", "https://data.delijn.be/stops/302047"], ["https://data.delijn.be/stops/502513", "https://data.delijn.be/stops/507513"], ["https://data.delijn.be/stops/109836", "https://data.delijn.be/stops/109856"], ["https://data.delijn.be/stops/206006", "https://data.delijn.be/stops/207079"], ["https://data.delijn.be/stops/303124", "https://data.delijn.be/stops/303130"], ["https://data.delijn.be/stops/101923", "https://data.delijn.be/stops/106506"], ["https://data.delijn.be/stops/503854", "https://data.delijn.be/stops/508857"], ["https://data.delijn.be/stops/407045", "https://data.delijn.be/stops/407079"], ["https://data.delijn.be/stops/105219", "https://data.delijn.be/stops/308817"], ["https://data.delijn.be/stops/204437", "https://data.delijn.be/stops/204749"], ["https://data.delijn.be/stops/302061", "https://data.delijn.be/stops/303516"], ["https://data.delijn.be/stops/106954", "https://data.delijn.be/stops/107267"], ["https://data.delijn.be/stops/304539", "https://data.delijn.be/stops/307576"], ["https://data.delijn.be/stops/503760", "https://data.delijn.be/stops/508760"], ["https://data.delijn.be/stops/301068", "https://data.delijn.be/stops/301071"], ["https://data.delijn.be/stops/202529", "https://data.delijn.be/stops/204063"], ["https://data.delijn.be/stops/302823", "https://data.delijn.be/stops/308981"], ["https://data.delijn.be/stops/104768", "https://data.delijn.be/stops/104771"], ["https://data.delijn.be/stops/200083", "https://data.delijn.be/stops/200269"], ["https://data.delijn.be/stops/405077", "https://data.delijn.be/stops/406501"], ["https://data.delijn.be/stops/502756", "https://data.delijn.be/stops/502761"], ["https://data.delijn.be/stops/209387", "https://data.delijn.be/stops/209411"], ["https://data.delijn.be/stops/106421", "https://data.delijn.be/stops/106422"], ["https://data.delijn.be/stops/303465", "https://data.delijn.be/stops/303478"], ["https://data.delijn.be/stops/403084", "https://data.delijn.be/stops/403085"], ["https://data.delijn.be/stops/509120", "https://data.delijn.be/stops/509481"], ["https://data.delijn.be/stops/206666", "https://data.delijn.be/stops/206868"], ["https://data.delijn.be/stops/300874", "https://data.delijn.be/stops/306641"], ["https://data.delijn.be/stops/303346", "https://data.delijn.be/stops/306336"], ["https://data.delijn.be/stops/200724", "https://data.delijn.be/stops/203329"], ["https://data.delijn.be/stops/406436", "https://data.delijn.be/stops/406445"], ["https://data.delijn.be/stops/102489", "https://data.delijn.be/stops/400383"], ["https://data.delijn.be/stops/102985", "https://data.delijn.be/stops/103675"], ["https://data.delijn.be/stops/201005", "https://data.delijn.be/stops/202524"], ["https://data.delijn.be/stops/406711", "https://data.delijn.be/stops/306781"], ["https://data.delijn.be/stops/101537", "https://data.delijn.be/stops/109022"], ["https://data.delijn.be/stops/501007", "https://data.delijn.be/stops/508253"], ["https://data.delijn.be/stops/200162", "https://data.delijn.be/stops/201162"], ["https://data.delijn.be/stops/204421", "https://data.delijn.be/stops/204829"], ["https://data.delijn.be/stops/202616", "https://data.delijn.be/stops/203594"], ["https://data.delijn.be/stops/202955", "https://data.delijn.be/stops/203749"], ["https://data.delijn.be/stops/403201", "https://data.delijn.be/stops/403419"], ["https://data.delijn.be/stops/105314", "https://data.delijn.be/stops/105317"], ["https://data.delijn.be/stops/503962", "https://data.delijn.be/stops/504667"], ["https://data.delijn.be/stops/201863", "https://data.delijn.be/stops/203667"], ["https://data.delijn.be/stops/102398", "https://data.delijn.be/stops/102421"], ["https://data.delijn.be/stops/209606", "https://data.delijn.be/stops/307606"], ["https://data.delijn.be/stops/503667", "https://data.delijn.be/stops/505131"], ["https://data.delijn.be/stops/503317", "https://data.delijn.be/stops/504668"], ["https://data.delijn.be/stops/501361", "https://data.delijn.be/stops/506117"], ["https://data.delijn.be/stops/206033", "https://data.delijn.be/stops/206034"], ["https://data.delijn.be/stops/206003", "https://data.delijn.be/stops/206524"], ["https://data.delijn.be/stops/206906", "https://data.delijn.be/stops/207108"], ["https://data.delijn.be/stops/103227", "https://data.delijn.be/stops/103228"], ["https://data.delijn.be/stops/400749", "https://data.delijn.be/stops/407670"], ["https://data.delijn.be/stops/304046", "https://data.delijn.be/stops/304792"], ["https://data.delijn.be/stops/503175", "https://data.delijn.be/stops/508164"], ["https://data.delijn.be/stops/102729", "https://data.delijn.be/stops/106590"], ["https://data.delijn.be/stops/502559", "https://data.delijn.be/stops/507559"], ["https://data.delijn.be/stops/204522", "https://data.delijn.be/stops/204756"], ["https://data.delijn.be/stops/301953", "https://data.delijn.be/stops/307055"], ["https://data.delijn.be/stops/303480", "https://data.delijn.be/stops/308739"], ["https://data.delijn.be/stops/504991", "https://data.delijn.be/stops/507948"], ["https://data.delijn.be/stops/301868", "https://data.delijn.be/stops/301875"], ["https://data.delijn.be/stops/509592", "https://data.delijn.be/stops/509594"], ["https://data.delijn.be/stops/102765", "https://data.delijn.be/stops/103090"], ["https://data.delijn.be/stops/204154", "https://data.delijn.be/stops/205153"], ["https://data.delijn.be/stops/407063", "https://data.delijn.be/stops/408001"], ["https://data.delijn.be/stops/505389", "https://data.delijn.be/stops/508106"], ["https://data.delijn.be/stops/404891", "https://data.delijn.be/stops/404904"], ["https://data.delijn.be/stops/200047", "https://data.delijn.be/stops/201245"], ["https://data.delijn.be/stops/502084", "https://data.delijn.be/stops/507101"], ["https://data.delijn.be/stops/105018", "https://data.delijn.be/stops/106830"], ["https://data.delijn.be/stops/201868", "https://data.delijn.be/stops/202657"], ["https://data.delijn.be/stops/300200", "https://data.delijn.be/stops/304655"], ["https://data.delijn.be/stops/505269", "https://data.delijn.be/stops/508784"], ["https://data.delijn.be/stops/101205", "https://data.delijn.be/stops/105500"], ["https://data.delijn.be/stops/502277", "https://data.delijn.be/stops/502289"], ["https://data.delijn.be/stops/101595", "https://data.delijn.be/stops/107180"], ["https://data.delijn.be/stops/300056", "https://data.delijn.be/stops/306793"], ["https://data.delijn.be/stops/302260", "https://data.delijn.be/stops/302271"], ["https://data.delijn.be/stops/204409", "https://data.delijn.be/stops/205201"], ["https://data.delijn.be/stops/400037", "https://data.delijn.be/stops/400175"], ["https://data.delijn.be/stops/409747", "https://data.delijn.be/stops/409752"], ["https://data.delijn.be/stops/505163", "https://data.delijn.be/stops/509425"], ["https://data.delijn.be/stops/506145", "https://data.delijn.be/stops/506150"], ["https://data.delijn.be/stops/403325", "https://data.delijn.be/stops/405984"], ["https://data.delijn.be/stops/404941", "https://data.delijn.be/stops/405648"], ["https://data.delijn.be/stops/202875", "https://data.delijn.be/stops/206968"], ["https://data.delijn.be/stops/503844", "https://data.delijn.be/stops/508844"], ["https://data.delijn.be/stops/209337", "https://data.delijn.be/stops/209338"], ["https://data.delijn.be/stops/407595", "https://data.delijn.be/stops/410349"], ["https://data.delijn.be/stops/405330", "https://data.delijn.be/stops/409311"], ["https://data.delijn.be/stops/402428", "https://data.delijn.be/stops/409856"], ["https://data.delijn.be/stops/203521", "https://data.delijn.be/stops/203540"], ["https://data.delijn.be/stops/204250", "https://data.delijn.be/stops/205208"], ["https://data.delijn.be/stops/204208", "https://data.delijn.be/stops/205208"], ["https://data.delijn.be/stops/201016", "https://data.delijn.be/stops/201551"], ["https://data.delijn.be/stops/304303", "https://data.delijn.be/stops/304358"], ["https://data.delijn.be/stops/409093", "https://data.delijn.be/stops/409224"], ["https://data.delijn.be/stops/105006", "https://data.delijn.be/stops/105074"], ["https://data.delijn.be/stops/302557", "https://data.delijn.be/stops/306638"], ["https://data.delijn.be/stops/304688", "https://data.delijn.be/stops/307158"], ["https://data.delijn.be/stops/202338", "https://data.delijn.be/stops/203338"], ["https://data.delijn.be/stops/101507", "https://data.delijn.be/stops/101509"], ["https://data.delijn.be/stops/300189", "https://data.delijn.be/stops/304163"], ["https://data.delijn.be/stops/208789", "https://data.delijn.be/stops/209347"], ["https://data.delijn.be/stops/101752", "https://data.delijn.be/stops/109825"], ["https://data.delijn.be/stops/104905", "https://data.delijn.be/stops/104910"], ["https://data.delijn.be/stops/502333", "https://data.delijn.be/stops/507333"], ["https://data.delijn.be/stops/304007", "https://data.delijn.be/stops/304008"], ["https://data.delijn.be/stops/301797", "https://data.delijn.be/stops/305395"], ["https://data.delijn.be/stops/200350", "https://data.delijn.be/stops/211335"], ["https://data.delijn.be/stops/108134", "https://data.delijn.be/stops/108136"], ["https://data.delijn.be/stops/503804", "https://data.delijn.be/stops/508803"], ["https://data.delijn.be/stops/206888", "https://data.delijn.be/stops/207358"], ["https://data.delijn.be/stops/307154", "https://data.delijn.be/stops/307155"], ["https://data.delijn.be/stops/504466", "https://data.delijn.be/stops/509418"], ["https://data.delijn.be/stops/206216", "https://data.delijn.be/stops/207215"], ["https://data.delijn.be/stops/208070", "https://data.delijn.be/stops/208072"], ["https://data.delijn.be/stops/306956", "https://data.delijn.be/stops/308295"], ["https://data.delijn.be/stops/405698", "https://data.delijn.be/stops/405909"], ["https://data.delijn.be/stops/402068", "https://data.delijn.be/stops/402766"], ["https://data.delijn.be/stops/204523", "https://data.delijn.be/stops/205523"], ["https://data.delijn.be/stops/202502", "https://data.delijn.be/stops/203501"], ["https://data.delijn.be/stops/404586", "https://data.delijn.be/stops/406913"], ["https://data.delijn.be/stops/200624", "https://data.delijn.be/stops/211093"], ["https://data.delijn.be/stops/404402", "https://data.delijn.be/stops/404444"], ["https://data.delijn.be/stops/204723", "https://data.delijn.be/stops/205722"], ["https://data.delijn.be/stops/503343", "https://data.delijn.be/stops/508344"], ["https://data.delijn.be/stops/202647", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/108702", "https://data.delijn.be/stops/108704"], ["https://data.delijn.be/stops/400453", "https://data.delijn.be/stops/407686"], ["https://data.delijn.be/stops/406299", "https://data.delijn.be/stops/409100"], ["https://data.delijn.be/stops/302931", "https://data.delijn.be/stops/307466"], ["https://data.delijn.be/stops/400830", "https://data.delijn.be/stops/401900"], ["https://data.delijn.be/stops/109457", "https://data.delijn.be/stops/109460"], ["https://data.delijn.be/stops/301835", "https://data.delijn.be/stops/305871"], ["https://data.delijn.be/stops/504679", "https://data.delijn.be/stops/504858"], ["https://data.delijn.be/stops/206738", "https://data.delijn.be/stops/206976"], ["https://data.delijn.be/stops/300271", "https://data.delijn.be/stops/302148"], ["https://data.delijn.be/stops/103925", "https://data.delijn.be/stops/104015"], ["https://data.delijn.be/stops/109058", "https://data.delijn.be/stops/109065"], ["https://data.delijn.be/stops/501456", "https://data.delijn.be/stops/501457"], ["https://data.delijn.be/stops/303183", "https://data.delijn.be/stops/303193"], ["https://data.delijn.be/stops/510012", "https://data.delijn.be/stops/510013"], ["https://data.delijn.be/stops/404200", "https://data.delijn.be/stops/404214"], ["https://data.delijn.be/stops/200753", "https://data.delijn.be/stops/201814"], ["https://data.delijn.be/stops/408270", "https://data.delijn.be/stops/408375"], ["https://data.delijn.be/stops/502691", "https://data.delijn.be/stops/507691"], ["https://data.delijn.be/stops/400540", "https://data.delijn.be/stops/403186"], ["https://data.delijn.be/stops/400512", "https://data.delijn.be/stops/400513"], ["https://data.delijn.be/stops/407010", "https://data.delijn.be/stops/407011"], ["https://data.delijn.be/stops/208678", "https://data.delijn.be/stops/209426"], ["https://data.delijn.be/stops/201714", "https://data.delijn.be/stops/202378"], ["https://data.delijn.be/stops/500010", "https://data.delijn.be/stops/505737"], ["https://data.delijn.be/stops/406915", "https://data.delijn.be/stops/406933"], ["https://data.delijn.be/stops/308496", "https://data.delijn.be/stops/308538"], ["https://data.delijn.be/stops/200231", "https://data.delijn.be/stops/200468"], ["https://data.delijn.be/stops/204721", "https://data.delijn.be/stops/205718"], ["https://data.delijn.be/stops/400793", "https://data.delijn.be/stops/400892"], ["https://data.delijn.be/stops/402254", "https://data.delijn.be/stops/402290"], ["https://data.delijn.be/stops/404488", "https://data.delijn.be/stops/404489"], ["https://data.delijn.be/stops/303837", "https://data.delijn.be/stops/303838"], ["https://data.delijn.be/stops/305228", "https://data.delijn.be/stops/305908"], ["https://data.delijn.be/stops/209132", "https://data.delijn.be/stops/209197"], ["https://data.delijn.be/stops/506173", "https://data.delijn.be/stops/506184"], ["https://data.delijn.be/stops/105060", "https://data.delijn.be/stops/106711"], ["https://data.delijn.be/stops/400786", "https://data.delijn.be/stops/409588"], ["https://data.delijn.be/stops/300423", "https://data.delijn.be/stops/308063"], ["https://data.delijn.be/stops/209078", "https://data.delijn.be/stops/218016"], ["https://data.delijn.be/stops/204995", "https://data.delijn.be/stops/303839"], ["https://data.delijn.be/stops/505956", "https://data.delijn.be/stops/508287"], ["https://data.delijn.be/stops/105547", "https://data.delijn.be/stops/106131"], ["https://data.delijn.be/stops/204064", "https://data.delijn.be/stops/205092"], ["https://data.delijn.be/stops/102322", "https://data.delijn.be/stops/106463"], ["https://data.delijn.be/stops/205090", "https://data.delijn.be/stops/214018"], ["https://data.delijn.be/stops/405327", "https://data.delijn.be/stops/405370"], ["https://data.delijn.be/stops/303849", "https://data.delijn.be/stops/303863"], ["https://data.delijn.be/stops/408164", "https://data.delijn.be/stops/408165"], ["https://data.delijn.be/stops/404655", "https://data.delijn.be/stops/404675"], ["https://data.delijn.be/stops/105987", "https://data.delijn.be/stops/105988"], ["https://data.delijn.be/stops/203024", "https://data.delijn.be/stops/203025"], ["https://data.delijn.be/stops/204122", "https://data.delijn.be/stops/205122"], ["https://data.delijn.be/stops/402946", "https://data.delijn.be/stops/306021"], ["https://data.delijn.be/stops/300237", "https://data.delijn.be/stops/302412"], ["https://data.delijn.be/stops/505969", "https://data.delijn.be/stops/508828"], ["https://data.delijn.be/stops/408598", "https://data.delijn.be/stops/408654"], ["https://data.delijn.be/stops/301192", "https://data.delijn.be/stops/307614"], ["https://data.delijn.be/stops/504283", "https://data.delijn.be/stops/509279"], ["https://data.delijn.be/stops/105599", "https://data.delijn.be/stops/106360"], ["https://data.delijn.be/stops/204079", "https://data.delijn.be/stops/205832"], ["https://data.delijn.be/stops/206226", "https://data.delijn.be/stops/300182"], ["https://data.delijn.be/stops/308512", "https://data.delijn.be/stops/308690"], ["https://data.delijn.be/stops/404464", "https://data.delijn.be/stops/406878"], ["https://data.delijn.be/stops/508299", "https://data.delijn.be/stops/508304"], ["https://data.delijn.be/stops/302273", "https://data.delijn.be/stops/306786"], ["https://data.delijn.be/stops/504819", "https://data.delijn.be/stops/508208"], ["https://data.delijn.be/stops/406603", "https://data.delijn.be/stops/406646"], ["https://data.delijn.be/stops/103186", "https://data.delijn.be/stops/103230"], ["https://data.delijn.be/stops/406159", "https://data.delijn.be/stops/406287"], ["https://data.delijn.be/stops/105971", "https://data.delijn.be/stops/205635"], ["https://data.delijn.be/stops/108062", "https://data.delijn.be/stops/108363"], ["https://data.delijn.be/stops/207423", "https://data.delijn.be/stops/207805"], ["https://data.delijn.be/stops/407258", "https://data.delijn.be/stops/407263"], ["https://data.delijn.be/stops/404506", "https://data.delijn.be/stops/404573"], ["https://data.delijn.be/stops/207744", "https://data.delijn.be/stops/207745"], ["https://data.delijn.be/stops/403621", "https://data.delijn.be/stops/403623"], ["https://data.delijn.be/stops/106290", "https://data.delijn.be/stops/106305"], ["https://data.delijn.be/stops/508710", "https://data.delijn.be/stops/509947"], ["https://data.delijn.be/stops/304952", "https://data.delijn.be/stops/304953"], ["https://data.delijn.be/stops/200117", "https://data.delijn.be/stops/201116"], ["https://data.delijn.be/stops/303457", "https://data.delijn.be/stops/304225"], ["https://data.delijn.be/stops/304248", "https://data.delijn.be/stops/304286"], ["https://data.delijn.be/stops/104812", "https://data.delijn.be/stops/105164"], ["https://data.delijn.be/stops/200744", "https://data.delijn.be/stops/202781"], ["https://data.delijn.be/stops/503320", "https://data.delijn.be/stops/508133"], ["https://data.delijn.be/stops/108846", "https://data.delijn.be/stops/108863"], ["https://data.delijn.be/stops/501018", "https://data.delijn.be/stops/506018"], ["https://data.delijn.be/stops/206893", "https://data.delijn.be/stops/207892"], ["https://data.delijn.be/stops/400848", "https://data.delijn.be/stops/400855"], ["https://data.delijn.be/stops/208355", "https://data.delijn.be/stops/209354"], ["https://data.delijn.be/stops/208179", "https://data.delijn.be/stops/208180"], ["https://data.delijn.be/stops/106479", "https://data.delijn.be/stops/109646"], ["https://data.delijn.be/stops/503241", "https://data.delijn.be/stops/508241"], ["https://data.delijn.be/stops/300214", "https://data.delijn.be/stops/307464"], ["https://data.delijn.be/stops/300478", "https://data.delijn.be/stops/302863"], ["https://data.delijn.be/stops/407493", "https://data.delijn.be/stops/407540"], ["https://data.delijn.be/stops/208155", "https://data.delijn.be/stops/209156"], ["https://data.delijn.be/stops/106964", "https://data.delijn.be/stops/106965"], ["https://data.delijn.be/stops/405357", "https://data.delijn.be/stops/408994"], ["https://data.delijn.be/stops/504354", "https://data.delijn.be/stops/509354"], ["https://data.delijn.be/stops/300896", "https://data.delijn.be/stops/304190"], ["https://data.delijn.be/stops/303623", "https://data.delijn.be/stops/304254"], ["https://data.delijn.be/stops/303829", "https://data.delijn.be/stops/305419"], ["https://data.delijn.be/stops/300379", "https://data.delijn.be/stops/300384"], ["https://data.delijn.be/stops/404851", "https://data.delijn.be/stops/404881"], ["https://data.delijn.be/stops/307199", "https://data.delijn.be/stops/307200"], ["https://data.delijn.be/stops/400450", "https://data.delijn.be/stops/400452"], ["https://data.delijn.be/stops/204406", "https://data.delijn.be/stops/205413"], ["https://data.delijn.be/stops/504943", "https://data.delijn.be/stops/505549"], ["https://data.delijn.be/stops/200928", "https://data.delijn.be/stops/202046"], ["https://data.delijn.be/stops/201313", "https://data.delijn.be/stops/210132"], ["https://data.delijn.be/stops/303576", "https://data.delijn.be/stops/303580"], ["https://data.delijn.be/stops/301301", "https://data.delijn.be/stops/306116"], ["https://data.delijn.be/stops/400004", "https://data.delijn.be/stops/400010"], ["https://data.delijn.be/stops/103647", "https://data.delijn.be/stops/103648"], ["https://data.delijn.be/stops/505748", "https://data.delijn.be/stops/507543"], ["https://data.delijn.be/stops/302869", "https://data.delijn.be/stops/302870"], ["https://data.delijn.be/stops/200826", "https://data.delijn.be/stops/200827"], ["https://data.delijn.be/stops/108453", "https://data.delijn.be/stops/108454"], ["https://data.delijn.be/stops/105048", "https://data.delijn.be/stops/106710"], ["https://data.delijn.be/stops/504222", "https://data.delijn.be/stops/509223"], ["https://data.delijn.be/stops/504635", "https://data.delijn.be/stops/509635"], ["https://data.delijn.be/stops/102054", "https://data.delijn.be/stops/103307"], ["https://data.delijn.be/stops/207651", "https://data.delijn.be/stops/207652"], ["https://data.delijn.be/stops/403274", "https://data.delijn.be/stops/403384"], ["https://data.delijn.be/stops/106658", "https://data.delijn.be/stops/106661"], ["https://data.delijn.be/stops/206327", "https://data.delijn.be/stops/304554"], ["https://data.delijn.be/stops/103520", "https://data.delijn.be/stops/104485"], ["https://data.delijn.be/stops/401174", "https://data.delijn.be/stops/406655"], ["https://data.delijn.be/stops/305335", "https://data.delijn.be/stops/305887"], ["https://data.delijn.be/stops/202869", "https://data.delijn.be/stops/208835"], ["https://data.delijn.be/stops/404302", "https://data.delijn.be/stops/409568"], ["https://data.delijn.be/stops/407241", "https://data.delijn.be/stops/407449"], ["https://data.delijn.be/stops/206561", "https://data.delijn.be/stops/209125"], ["https://data.delijn.be/stops/208218", "https://data.delijn.be/stops/209771"], ["https://data.delijn.be/stops/103557", "https://data.delijn.be/stops/103592"], ["https://data.delijn.be/stops/401034", "https://data.delijn.be/stops/404909"], ["https://data.delijn.be/stops/305945", "https://data.delijn.be/stops/308416"], ["https://data.delijn.be/stops/206059", "https://data.delijn.be/stops/206449"], ["https://data.delijn.be/stops/104647", "https://data.delijn.be/stops/107986"], ["https://data.delijn.be/stops/302219", "https://data.delijn.be/stops/302226"], ["https://data.delijn.be/stops/503416", "https://data.delijn.be/stops/508424"], ["https://data.delijn.be/stops/107393", "https://data.delijn.be/stops/107406"], ["https://data.delijn.be/stops/406088", "https://data.delijn.be/stops/407114"], ["https://data.delijn.be/stops/401157", "https://data.delijn.be/stops/407301"], ["https://data.delijn.be/stops/210085", "https://data.delijn.be/stops/211085"], ["https://data.delijn.be/stops/301504", "https://data.delijn.be/stops/301508"], ["https://data.delijn.be/stops/507206", "https://data.delijn.be/stops/507209"], ["https://data.delijn.be/stops/206214", "https://data.delijn.be/stops/206640"], ["https://data.delijn.be/stops/300014", "https://data.delijn.be/stops/307001"], ["https://data.delijn.be/stops/304207", "https://data.delijn.be/stops/307504"], ["https://data.delijn.be/stops/104893", "https://data.delijn.be/stops/109617"], ["https://data.delijn.be/stops/304239", "https://data.delijn.be/stops/304240"], ["https://data.delijn.be/stops/405400", "https://data.delijn.be/stops/405401"], ["https://data.delijn.be/stops/408315", "https://data.delijn.be/stops/408345"], ["https://data.delijn.be/stops/408560", "https://data.delijn.be/stops/408672"], ["https://data.delijn.be/stops/108746", "https://data.delijn.be/stops/108747"], ["https://data.delijn.be/stops/107546", "https://data.delijn.be/stops/109590"], ["https://data.delijn.be/stops/504963", "https://data.delijn.be/stops/509964"], ["https://data.delijn.be/stops/201864", "https://data.delijn.be/stops/202085"], ["https://data.delijn.be/stops/208463", "https://data.delijn.be/stops/209684"], ["https://data.delijn.be/stops/200620", "https://data.delijn.be/stops/201894"], ["https://data.delijn.be/stops/402719", "https://data.delijn.be/stops/402722"], ["https://data.delijn.be/stops/401773", "https://data.delijn.be/stops/406341"], ["https://data.delijn.be/stops/102869", "https://data.delijn.be/stops/105860"], ["https://data.delijn.be/stops/308138", "https://data.delijn.be/stops/308144"], ["https://data.delijn.be/stops/204634", "https://data.delijn.be/stops/205634"], ["https://data.delijn.be/stops/301976", "https://data.delijn.be/stops/301979"], ["https://data.delijn.be/stops/201088", "https://data.delijn.be/stops/202960"], ["https://data.delijn.be/stops/305160", "https://data.delijn.be/stops/305173"], ["https://data.delijn.be/stops/305198", "https://data.delijn.be/stops/307086"], ["https://data.delijn.be/stops/407423", "https://data.delijn.be/stops/407470"], ["https://data.delijn.be/stops/107590", "https://data.delijn.be/stops/109060"], ["https://data.delijn.be/stops/106366", "https://data.delijn.be/stops/106368"], ["https://data.delijn.be/stops/503755", "https://data.delijn.be/stops/508755"], ["https://data.delijn.be/stops/502112", "https://data.delijn.be/stops/505894"], ["https://data.delijn.be/stops/502143", "https://data.delijn.be/stops/502767"], ["https://data.delijn.be/stops/304831", "https://data.delijn.be/stops/304885"], ["https://data.delijn.be/stops/503837", "https://data.delijn.be/stops/505159"], ["https://data.delijn.be/stops/105726", "https://data.delijn.be/stops/105728"], ["https://data.delijn.be/stops/502587", "https://data.delijn.be/stops/505766"], ["https://data.delijn.be/stops/504862", "https://data.delijn.be/stops/508289"], ["https://data.delijn.be/stops/201692", "https://data.delijn.be/stops/203395"], ["https://data.delijn.be/stops/300887", "https://data.delijn.be/stops/305382"], ["https://data.delijn.be/stops/402115", "https://data.delijn.be/stops/402125"], ["https://data.delijn.be/stops/503776", "https://data.delijn.be/stops/508776"], ["https://data.delijn.be/stops/301769", "https://data.delijn.be/stops/301774"], ["https://data.delijn.be/stops/109330", "https://data.delijn.be/stops/300026"], ["https://data.delijn.be/stops/205719", "https://data.delijn.be/stops/214012"], ["https://data.delijn.be/stops/301480", "https://data.delijn.be/stops/301488"], ["https://data.delijn.be/stops/208298", "https://data.delijn.be/stops/209299"], ["https://data.delijn.be/stops/305743", "https://data.delijn.be/stops/306332"], ["https://data.delijn.be/stops/407728", "https://data.delijn.be/stops/407729"], ["https://data.delijn.be/stops/208506", "https://data.delijn.be/stops/208507"], ["https://data.delijn.be/stops/103294", "https://data.delijn.be/stops/105171"], ["https://data.delijn.be/stops/106269", "https://data.delijn.be/stops/106270"], ["https://data.delijn.be/stops/401899", "https://data.delijn.be/stops/406420"], ["https://data.delijn.be/stops/200473", "https://data.delijn.be/stops/201250"], ["https://data.delijn.be/stops/200389", "https://data.delijn.be/stops/201349"], ["https://data.delijn.be/stops/401099", "https://data.delijn.be/stops/401100"], ["https://data.delijn.be/stops/306882", "https://data.delijn.be/stops/306883"], ["https://data.delijn.be/stops/208601", "https://data.delijn.be/stops/307603"], ["https://data.delijn.be/stops/200399", "https://data.delijn.be/stops/200410"], ["https://data.delijn.be/stops/407830", "https://data.delijn.be/stops/407847"], ["https://data.delijn.be/stops/400568", "https://data.delijn.be/stops/400569"], ["https://data.delijn.be/stops/207238", "https://data.delijn.be/stops/207925"], ["https://data.delijn.be/stops/401187", "https://data.delijn.be/stops/401326"], ["https://data.delijn.be/stops/404207", "https://data.delijn.be/stops/404216"], ["https://data.delijn.be/stops/101845", "https://data.delijn.be/stops/102446"], ["https://data.delijn.be/stops/103981", "https://data.delijn.be/stops/105736"], ["https://data.delijn.be/stops/501422", "https://data.delijn.be/stops/506421"], ["https://data.delijn.be/stops/404543", "https://data.delijn.be/stops/406856"], ["https://data.delijn.be/stops/509247", "https://data.delijn.be/stops/509250"], ["https://data.delijn.be/stops/204788", "https://data.delijn.be/stops/205790"], ["https://data.delijn.be/stops/503573", "https://data.delijn.be/stops/503582"], ["https://data.delijn.be/stops/302614", "https://data.delijn.be/stops/302635"], ["https://data.delijn.be/stops/503333", "https://data.delijn.be/stops/508259"], ["https://data.delijn.be/stops/201779", "https://data.delijn.be/stops/209248"], ["https://data.delijn.be/stops/400791", "https://data.delijn.be/stops/409532"], ["https://data.delijn.be/stops/207165", "https://data.delijn.be/stops/308900"], ["https://data.delijn.be/stops/501596", "https://data.delijn.be/stops/504513"], ["https://data.delijn.be/stops/106018", "https://data.delijn.be/stops/106019"], ["https://data.delijn.be/stops/507616", "https://data.delijn.be/stops/507617"], ["https://data.delijn.be/stops/101268", "https://data.delijn.be/stops/101274"], ["https://data.delijn.be/stops/101290", "https://data.delijn.be/stops/101515"], ["https://data.delijn.be/stops/401413", "https://data.delijn.be/stops/301108"], ["https://data.delijn.be/stops/200278", "https://data.delijn.be/stops/201995"], ["https://data.delijn.be/stops/300570", "https://data.delijn.be/stops/301599"], ["https://data.delijn.be/stops/108836", "https://data.delijn.be/stops/108849"], ["https://data.delijn.be/stops/201863", "https://data.delijn.be/stops/202327"], ["https://data.delijn.be/stops/505096", "https://data.delijn.be/stops/505944"], ["https://data.delijn.be/stops/406178", "https://data.delijn.be/stops/406202"], ["https://data.delijn.be/stops/501254", "https://data.delijn.be/stops/506200"], ["https://data.delijn.be/stops/300305", "https://data.delijn.be/stops/301286"], ["https://data.delijn.be/stops/503487", "https://data.delijn.be/stops/509474"], ["https://data.delijn.be/stops/300772", "https://data.delijn.be/stops/303223"], ["https://data.delijn.be/stops/302308", "https://data.delijn.be/stops/302330"], ["https://data.delijn.be/stops/407301", "https://data.delijn.be/stops/409427"], ["https://data.delijn.be/stops/302276", "https://data.delijn.be/stops/303516"], ["https://data.delijn.be/stops/400839", "https://data.delijn.be/stops/409567"], ["https://data.delijn.be/stops/504571", "https://data.delijn.be/stops/509464"], ["https://data.delijn.be/stops/502328", "https://data.delijn.be/stops/505574"], ["https://data.delijn.be/stops/504136", "https://data.delijn.be/stops/509136"], ["https://data.delijn.be/stops/303617", "https://data.delijn.be/stops/306700"], ["https://data.delijn.be/stops/403307", "https://data.delijn.be/stops/403467"], ["https://data.delijn.be/stops/304159", "https://data.delijn.be/stops/307758"], ["https://data.delijn.be/stops/503204", "https://data.delijn.be/stops/503662"], ["https://data.delijn.be/stops/200583", "https://data.delijn.be/stops/200590"], ["https://data.delijn.be/stops/503210", "https://data.delijn.be/stops/508211"], ["https://data.delijn.be/stops/300230", "https://data.delijn.be/stops/300231"], ["https://data.delijn.be/stops/202289", "https://data.delijn.be/stops/202334"], ["https://data.delijn.be/stops/200742", "https://data.delijn.be/stops/203383"], ["https://data.delijn.be/stops/400212", "https://data.delijn.be/stops/408551"], ["https://data.delijn.be/stops/407918", "https://data.delijn.be/stops/305716"], ["https://data.delijn.be/stops/305171", "https://data.delijn.be/stops/307101"], ["https://data.delijn.be/stops/504178", "https://data.delijn.be/stops/504182"], ["https://data.delijn.be/stops/208216", "https://data.delijn.be/stops/209785"], ["https://data.delijn.be/stops/400877", "https://data.delijn.be/stops/401664"], ["https://data.delijn.be/stops/304144", "https://data.delijn.be/stops/304170"], ["https://data.delijn.be/stops/501355", "https://data.delijn.be/stops/501525"], ["https://data.delijn.be/stops/206923", "https://data.delijn.be/stops/207923"], ["https://data.delijn.be/stops/305438", "https://data.delijn.be/stops/305516"], ["https://data.delijn.be/stops/505422", "https://data.delijn.be/stops/509615"], ["https://data.delijn.be/stops/407984", "https://data.delijn.be/stops/408125"], ["https://data.delijn.be/stops/208748", "https://data.delijn.be/stops/209413"], ["https://data.delijn.be/stops/302950", "https://data.delijn.be/stops/306297"], ["https://data.delijn.be/stops/108710", "https://data.delijn.be/stops/108713"], ["https://data.delijn.be/stops/104042", "https://data.delijn.be/stops/108519"], ["https://data.delijn.be/stops/504430", "https://data.delijn.be/stops/509430"], ["https://data.delijn.be/stops/109448", "https://data.delijn.be/stops/109555"], ["https://data.delijn.be/stops/501629", "https://data.delijn.be/stops/503634"], ["https://data.delijn.be/stops/308462", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/104392", "https://data.delijn.be/stops/104396"], ["https://data.delijn.be/stops/200410", "https://data.delijn.be/stops/201399"], ["https://data.delijn.be/stops/504650", "https://data.delijn.be/stops/509650"], ["https://data.delijn.be/stops/108089", "https://data.delijn.be/stops/108689"], ["https://data.delijn.be/stops/503320", "https://data.delijn.be/stops/505823"], ["https://data.delijn.be/stops/208792", "https://data.delijn.be/stops/209786"], ["https://data.delijn.be/stops/505315", "https://data.delijn.be/stops/505696"], ["https://data.delijn.be/stops/107009", "https://data.delijn.be/stops/107011"], ["https://data.delijn.be/stops/401009", "https://data.delijn.be/stops/401010"], ["https://data.delijn.be/stops/405211", "https://data.delijn.be/stops/407341"], ["https://data.delijn.be/stops/205345", "https://data.delijn.be/stops/205346"], ["https://data.delijn.be/stops/206753", "https://data.delijn.be/stops/207851"], ["https://data.delijn.be/stops/503679", "https://data.delijn.be/stops/508677"], ["https://data.delijn.be/stops/204178", "https://data.delijn.be/stops/204905"], ["https://data.delijn.be/stops/204308", "https://data.delijn.be/stops/214008"], ["https://data.delijn.be/stops/107557", "https://data.delijn.be/stops/107559"], ["https://data.delijn.be/stops/104463", "https://data.delijn.be/stops/107197"], ["https://data.delijn.be/stops/408900", "https://data.delijn.be/stops/408906"], ["https://data.delijn.be/stops/308795", "https://data.delijn.be/stops/308850"], ["https://data.delijn.be/stops/200426", "https://data.delijn.be/stops/201426"], ["https://data.delijn.be/stops/302206", "https://data.delijn.be/stops/305095"], ["https://data.delijn.be/stops/109082", "https://data.delijn.be/stops/109086"], ["https://data.delijn.be/stops/302703", "https://data.delijn.be/stops/302717"], ["https://data.delijn.be/stops/402768", "https://data.delijn.be/stops/408124"], ["https://data.delijn.be/stops/408580", "https://data.delijn.be/stops/408587"], ["https://data.delijn.be/stops/506150", "https://data.delijn.be/stops/506644"], ["https://data.delijn.be/stops/206625", "https://data.delijn.be/stops/207625"], ["https://data.delijn.be/stops/108186", "https://data.delijn.be/stops/108187"], ["https://data.delijn.be/stops/403346", "https://data.delijn.be/stops/403347"], ["https://data.delijn.be/stops/303411", "https://data.delijn.be/stops/303425"], ["https://data.delijn.be/stops/105883", "https://data.delijn.be/stops/105894"], ["https://data.delijn.be/stops/410075", "https://data.delijn.be/stops/410076"], ["https://data.delijn.be/stops/301637", "https://data.delijn.be/stops/301649"], ["https://data.delijn.be/stops/101442", "https://data.delijn.be/stops/107057"], ["https://data.delijn.be/stops/401210", "https://data.delijn.be/stops/401268"], ["https://data.delijn.be/stops/500936", "https://data.delijn.be/stops/500937"], ["https://data.delijn.be/stops/502592", "https://data.delijn.be/stops/505783"], ["https://data.delijn.be/stops/200935", "https://data.delijn.be/stops/203711"], ["https://data.delijn.be/stops/209160", "https://data.delijn.be/stops/209161"], ["https://data.delijn.be/stops/401308", "https://data.delijn.be/stops/406652"], ["https://data.delijn.be/stops/107368", "https://data.delijn.be/stops/107371"], ["https://data.delijn.be/stops/202627", "https://data.delijn.be/stops/203627"], ["https://data.delijn.be/stops/406445", "https://data.delijn.be/stops/406446"], ["https://data.delijn.be/stops/402095", "https://data.delijn.be/stops/402197"], ["https://data.delijn.be/stops/202243", "https://data.delijn.be/stops/202486"], ["https://data.delijn.be/stops/507100", "https://data.delijn.be/stops/507143"], ["https://data.delijn.be/stops/504680", "https://data.delijn.be/stops/509265"], ["https://data.delijn.be/stops/108667", "https://data.delijn.be/stops/306610"], ["https://data.delijn.be/stops/308503", "https://data.delijn.be/stops/308505"], ["https://data.delijn.be/stops/401298", "https://data.delijn.be/stops/401300"], ["https://data.delijn.be/stops/404420", "https://data.delijn.be/stops/404449"], ["https://data.delijn.be/stops/304957", "https://data.delijn.be/stops/304958"], ["https://data.delijn.be/stops/109757", "https://data.delijn.be/stops/109758"], ["https://data.delijn.be/stops/307431", "https://data.delijn.be/stops/307440"], ["https://data.delijn.be/stops/208812", "https://data.delijn.be/stops/208954"], ["https://data.delijn.be/stops/300290", "https://data.delijn.be/stops/300317"], ["https://data.delijn.be/stops/301423", "https://data.delijn.be/stops/307326"], ["https://data.delijn.be/stops/206674", "https://data.delijn.be/stops/208166"], ["https://data.delijn.be/stops/305131", "https://data.delijn.be/stops/305135"], ["https://data.delijn.be/stops/409367", "https://data.delijn.be/stops/409368"], ["https://data.delijn.be/stops/200068", "https://data.delijn.be/stops/200198"], ["https://data.delijn.be/stops/407874", "https://data.delijn.be/stops/408166"], ["https://data.delijn.be/stops/507386", "https://data.delijn.be/stops/507413"], ["https://data.delijn.be/stops/303581", "https://data.delijn.be/stops/306398"], ["https://data.delijn.be/stops/106180", "https://data.delijn.be/stops/106181"], ["https://data.delijn.be/stops/404598", "https://data.delijn.be/stops/406900"], ["https://data.delijn.be/stops/200007", "https://data.delijn.be/stops/201007"], ["https://data.delijn.be/stops/202197", "https://data.delijn.be/stops/203151"], ["https://data.delijn.be/stops/209157", "https://data.delijn.be/stops/209158"], ["https://data.delijn.be/stops/101501", "https://data.delijn.be/stops/104892"], ["https://data.delijn.be/stops/202964", "https://data.delijn.be/stops/206271"], ["https://data.delijn.be/stops/202560", "https://data.delijn.be/stops/203610"], ["https://data.delijn.be/stops/200010", "https://data.delijn.be/stops/200416"], ["https://data.delijn.be/stops/202426", "https://data.delijn.be/stops/203327"], ["https://data.delijn.be/stops/209647", "https://data.delijn.be/stops/209648"], ["https://data.delijn.be/stops/106990", "https://data.delijn.be/stops/107314"], ["https://data.delijn.be/stops/300683", "https://data.delijn.be/stops/305829"], ["https://data.delijn.be/stops/304216", "https://data.delijn.be/stops/307142"], ["https://data.delijn.be/stops/503544", "https://data.delijn.be/stops/503565"], ["https://data.delijn.be/stops/508240", "https://data.delijn.be/stops/508514"], ["https://data.delijn.be/stops/504004", "https://data.delijn.be/stops/508494"], ["https://data.delijn.be/stops/105512", "https://data.delijn.be/stops/108728"], ["https://data.delijn.be/stops/204138", "https://data.delijn.be/stops/205239"], ["https://data.delijn.be/stops/208147", "https://data.delijn.be/stops/209678"], ["https://data.delijn.be/stops/101816", "https://data.delijn.be/stops/107836"], ["https://data.delijn.be/stops/305658", "https://data.delijn.be/stops/305666"], ["https://data.delijn.be/stops/102531", "https://data.delijn.be/stops/405087"], ["https://data.delijn.be/stops/404713", "https://data.delijn.be/stops/404765"], ["https://data.delijn.be/stops/501376", "https://data.delijn.be/stops/504667"], ["https://data.delijn.be/stops/403833", "https://data.delijn.be/stops/403835"], ["https://data.delijn.be/stops/403944", "https://data.delijn.be/stops/404087"], ["https://data.delijn.be/stops/101027", "https://data.delijn.be/stops/101350"], ["https://data.delijn.be/stops/509773", "https://data.delijn.be/stops/509789"], ["https://data.delijn.be/stops/103228", "https://data.delijn.be/stops/103229"], ["https://data.delijn.be/stops/502807", "https://data.delijn.be/stops/509725"], ["https://data.delijn.be/stops/302775", "https://data.delijn.be/stops/304733"], ["https://data.delijn.be/stops/306919", "https://data.delijn.be/stops/306921"], ["https://data.delijn.be/stops/400779", "https://data.delijn.be/stops/400807"], ["https://data.delijn.be/stops/107985", "https://data.delijn.be/stops/107990"], ["https://data.delijn.be/stops/107042", "https://data.delijn.be/stops/108244"], ["https://data.delijn.be/stops/201208", "https://data.delijn.be/stops/202144"], ["https://data.delijn.be/stops/505099", "https://data.delijn.be/stops/508590"], ["https://data.delijn.be/stops/102161", "https://data.delijn.be/stops/107906"], ["https://data.delijn.be/stops/202611", "https://data.delijn.be/stops/202612"], ["https://data.delijn.be/stops/206205", "https://data.delijn.be/stops/207204"], ["https://data.delijn.be/stops/104752", "https://data.delijn.be/stops/107329"], ["https://data.delijn.be/stops/106422", "https://data.delijn.be/stops/106423"], ["https://data.delijn.be/stops/505393", "https://data.delijn.be/stops/508277"], ["https://data.delijn.be/stops/102218", "https://data.delijn.be/stops/105539"], ["https://data.delijn.be/stops/208392", "https://data.delijn.be/stops/209393"], ["https://data.delijn.be/stops/102236", "https://data.delijn.be/stops/105864"], ["https://data.delijn.be/stops/301170", "https://data.delijn.be/stops/303207"], ["https://data.delijn.be/stops/301736", "https://data.delijn.be/stops/308418"], ["https://data.delijn.be/stops/400718", "https://data.delijn.be/stops/409512"], ["https://data.delijn.be/stops/208423", "https://data.delijn.be/stops/209466"], ["https://data.delijn.be/stops/503523", "https://data.delijn.be/stops/508523"], ["https://data.delijn.be/stops/508143", "https://data.delijn.be/stops/508988"], ["https://data.delijn.be/stops/504695", "https://data.delijn.be/stops/504993"], ["https://data.delijn.be/stops/208191", "https://data.delijn.be/stops/208739"], ["https://data.delijn.be/stops/504243", "https://data.delijn.be/stops/509398"], ["https://data.delijn.be/stops/403994", "https://data.delijn.be/stops/407635"], ["https://data.delijn.be/stops/105649", "https://data.delijn.be/stops/105651"], ["https://data.delijn.be/stops/300868", "https://data.delijn.be/stops/302243"], ["https://data.delijn.be/stops/204756", "https://data.delijn.be/stops/205756"], ["https://data.delijn.be/stops/301657", "https://data.delijn.be/stops/301892"], ["https://data.delijn.be/stops/303139", "https://data.delijn.be/stops/308604"], ["https://data.delijn.be/stops/107873", "https://data.delijn.be/stops/107874"], ["https://data.delijn.be/stops/502096", "https://data.delijn.be/stops/502139"], ["https://data.delijn.be/stops/504267", "https://data.delijn.be/stops/505298"], ["https://data.delijn.be/stops/503108", "https://data.delijn.be/stops/503159"], ["https://data.delijn.be/stops/405758", "https://data.delijn.be/stops/405761"], ["https://data.delijn.be/stops/202982", "https://data.delijn.be/stops/203037"], ["https://data.delijn.be/stops/204979", "https://data.delijn.be/stops/209008"], ["https://data.delijn.be/stops/209040", "https://data.delijn.be/stops/209053"], ["https://data.delijn.be/stops/401388", "https://data.delijn.be/stops/401452"], ["https://data.delijn.be/stops/402853", "https://data.delijn.be/stops/306044"], ["https://data.delijn.be/stops/204089", "https://data.delijn.be/stops/205088"], ["https://data.delijn.be/stops/104014", "https://data.delijn.be/stops/106905"], ["https://data.delijn.be/stops/101581", "https://data.delijn.be/stops/105731"], ["https://data.delijn.be/stops/204078", "https://data.delijn.be/stops/204198"], ["https://data.delijn.be/stops/207757", "https://data.delijn.be/stops/207776"], ["https://data.delijn.be/stops/106728", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/304229", "https://data.delijn.be/stops/305443"], ["https://data.delijn.be/stops/401970", "https://data.delijn.be/stops/408094"], ["https://data.delijn.be/stops/407388", "https://data.delijn.be/stops/407389"], ["https://data.delijn.be/stops/302794", "https://data.delijn.be/stops/302795"], ["https://data.delijn.be/stops/403996", "https://data.delijn.be/stops/404081"], ["https://data.delijn.be/stops/305778", "https://data.delijn.be/stops/306878"], ["https://data.delijn.be/stops/301961", "https://data.delijn.be/stops/304153"], ["https://data.delijn.be/stops/206265", "https://data.delijn.be/stops/207977"], ["https://data.delijn.be/stops/406707", "https://data.delijn.be/stops/408001"], ["https://data.delijn.be/stops/408512", "https://data.delijn.be/stops/408706"], ["https://data.delijn.be/stops/503432", "https://data.delijn.be/stops/508346"], ["https://data.delijn.be/stops/206941", "https://data.delijn.be/stops/218012"], ["https://data.delijn.be/stops/500045", "https://data.delijn.be/stops/500047"], ["https://data.delijn.be/stops/406107", "https://data.delijn.be/stops/406114"], ["https://data.delijn.be/stops/404071", "https://data.delijn.be/stops/409257"], ["https://data.delijn.be/stops/204754", "https://data.delijn.be/stops/205753"], ["https://data.delijn.be/stops/406106", "https://data.delijn.be/stops/406115"], ["https://data.delijn.be/stops/208211", "https://data.delijn.be/stops/209808"], ["https://data.delijn.be/stops/304462", "https://data.delijn.be/stops/304463"], ["https://data.delijn.be/stops/209345", "https://data.delijn.be/stops/209346"], ["https://data.delijn.be/stops/501173", "https://data.delijn.be/stops/504495"], ["https://data.delijn.be/stops/200266", "https://data.delijn.be/stops/201218"], ["https://data.delijn.be/stops/405771", "https://data.delijn.be/stops/405889"], ["https://data.delijn.be/stops/304074", "https://data.delijn.be/stops/304115"], ["https://data.delijn.be/stops/508004", "https://data.delijn.be/stops/508008"], ["https://data.delijn.be/stops/204503", "https://data.delijn.be/stops/205501"], ["https://data.delijn.be/stops/308476", "https://data.delijn.be/stops/308477"], ["https://data.delijn.be/stops/209461", "https://data.delijn.be/stops/209683"], ["https://data.delijn.be/stops/204445", "https://data.delijn.be/stops/205671"], ["https://data.delijn.be/stops/406622", "https://data.delijn.be/stops/406623"], ["https://data.delijn.be/stops/205981", "https://data.delijn.be/stops/208686"], ["https://data.delijn.be/stops/208068", "https://data.delijn.be/stops/208071"], ["https://data.delijn.be/stops/302576", "https://data.delijn.be/stops/305125"], ["https://data.delijn.be/stops/501770", "https://data.delijn.be/stops/507222"], ["https://data.delijn.be/stops/405344", "https://data.delijn.be/stops/306900"], ["https://data.delijn.be/stops/207666", "https://data.delijn.be/stops/207668"], ["https://data.delijn.be/stops/105964", "https://data.delijn.be/stops/105968"], ["https://data.delijn.be/stops/306861", "https://data.delijn.be/stops/307438"], ["https://data.delijn.be/stops/501253", "https://data.delijn.be/stops/506256"], ["https://data.delijn.be/stops/408628", "https://data.delijn.be/stops/408700"], ["https://data.delijn.be/stops/201809", "https://data.delijn.be/stops/201845"], ["https://data.delijn.be/stops/204290", "https://data.delijn.be/stops/204330"], ["https://data.delijn.be/stops/106790", "https://data.delijn.be/stops/106793"], ["https://data.delijn.be/stops/301588", "https://data.delijn.be/stops/301590"], ["https://data.delijn.be/stops/308265", "https://data.delijn.be/stops/308268"], ["https://data.delijn.be/stops/101473", "https://data.delijn.be/stops/109615"], ["https://data.delijn.be/stops/407014", "https://data.delijn.be/stops/407045"], ["https://data.delijn.be/stops/403336", "https://data.delijn.be/stops/403995"], ["https://data.delijn.be/stops/102247", "https://data.delijn.be/stops/105874"], ["https://data.delijn.be/stops/200833", "https://data.delijn.be/stops/505646"], ["https://data.delijn.be/stops/101846", "https://data.delijn.be/stops/101852"], ["https://data.delijn.be/stops/504883", "https://data.delijn.be/stops/505964"], ["https://data.delijn.be/stops/301249", "https://data.delijn.be/stops/307409"], ["https://data.delijn.be/stops/208395", "https://data.delijn.be/stops/209395"], ["https://data.delijn.be/stops/105718", "https://data.delijn.be/stops/105719"], ["https://data.delijn.be/stops/504016", "https://data.delijn.be/stops/509016"], ["https://data.delijn.be/stops/102428", "https://data.delijn.be/stops/103592"], ["https://data.delijn.be/stops/101497", "https://data.delijn.be/stops/108304"], ["https://data.delijn.be/stops/503364", "https://data.delijn.be/stops/503714"], ["https://data.delijn.be/stops/102684", "https://data.delijn.be/stops/107339"], ["https://data.delijn.be/stops/202327", "https://data.delijn.be/stops/203327"], ["https://data.delijn.be/stops/206543", "https://data.delijn.be/stops/207563"], ["https://data.delijn.be/stops/102222", "https://data.delijn.be/stops/102702"], ["https://data.delijn.be/stops/504073", "https://data.delijn.be/stops/509073"], ["https://data.delijn.be/stops/502406", "https://data.delijn.be/stops/507621"], ["https://data.delijn.be/stops/407645", "https://data.delijn.be/stops/409628"], ["https://data.delijn.be/stops/509422", "https://data.delijn.be/stops/509719"], ["https://data.delijn.be/stops/300768", "https://data.delijn.be/stops/301071"], ["https://data.delijn.be/stops/209069", "https://data.delijn.be/stops/209154"], ["https://data.delijn.be/stops/106844", "https://data.delijn.be/stops/106845"], ["https://data.delijn.be/stops/502203", "https://data.delijn.be/stops/508312"], ["https://data.delijn.be/stops/204084", "https://data.delijn.be/stops/204085"], ["https://data.delijn.be/stops/403924", "https://data.delijn.be/stops/403925"], ["https://data.delijn.be/stops/101176", "https://data.delijn.be/stops/106788"], ["https://data.delijn.be/stops/407647", "https://data.delijn.be/stops/407648"], ["https://data.delijn.be/stops/405144", "https://data.delijn.be/stops/405167"], ["https://data.delijn.be/stops/305258", "https://data.delijn.be/stops/306342"], ["https://data.delijn.be/stops/502210", "https://data.delijn.be/stops/505327"], ["https://data.delijn.be/stops/503456", "https://data.delijn.be/stops/508456"], ["https://data.delijn.be/stops/502104", "https://data.delijn.be/stops/502127"], ["https://data.delijn.be/stops/202311", "https://data.delijn.be/stops/203311"], ["https://data.delijn.be/stops/400928", "https://data.delijn.be/stops/400933"], ["https://data.delijn.be/stops/104301", "https://data.delijn.be/stops/104551"], ["https://data.delijn.be/stops/502258", "https://data.delijn.be/stops/502262"], ["https://data.delijn.be/stops/302162", "https://data.delijn.be/stops/302177"], ["https://data.delijn.be/stops/409106", "https://data.delijn.be/stops/409107"], ["https://data.delijn.be/stops/405148", "https://data.delijn.be/stops/405286"], ["https://data.delijn.be/stops/404722", "https://data.delijn.be/stops/404723"], ["https://data.delijn.be/stops/406255", "https://data.delijn.be/stops/406291"], ["https://data.delijn.be/stops/303425", "https://data.delijn.be/stops/307951"], ["https://data.delijn.be/stops/101183", "https://data.delijn.be/stops/107873"], ["https://data.delijn.be/stops/504282", "https://data.delijn.be/stops/504289"], ["https://data.delijn.be/stops/304832", "https://data.delijn.be/stops/306173"], ["https://data.delijn.be/stops/403777", "https://data.delijn.be/stops/403793"], ["https://data.delijn.be/stops/302619", "https://data.delijn.be/stops/303265"], ["https://data.delijn.be/stops/409343", "https://data.delijn.be/stops/409664"], ["https://data.delijn.be/stops/502012", "https://data.delijn.be/stops/507244"], ["https://data.delijn.be/stops/202758", "https://data.delijn.be/stops/203758"], ["https://data.delijn.be/stops/303645", "https://data.delijn.be/stops/305540"], ["https://data.delijn.be/stops/404539", "https://data.delijn.be/stops/404566"], ["https://data.delijn.be/stops/401442", "https://data.delijn.be/stops/401566"], ["https://data.delijn.be/stops/405333", "https://data.delijn.be/stops/405341"], ["https://data.delijn.be/stops/503402", "https://data.delijn.be/stops/509773"], ["https://data.delijn.be/stops/300008", "https://data.delijn.be/stops/304610"], ["https://data.delijn.be/stops/208219", "https://data.delijn.be/stops/209772"], ["https://data.delijn.be/stops/402106", "https://data.delijn.be/stops/402107"], ["https://data.delijn.be/stops/407319", "https://data.delijn.be/stops/407781"], ["https://data.delijn.be/stops/200630", "https://data.delijn.be/stops/200954"], ["https://data.delijn.be/stops/400444", "https://data.delijn.be/stops/400446"], ["https://data.delijn.be/stops/208493", "https://data.delijn.be/stops/209735"], ["https://data.delijn.be/stops/106211", "https://data.delijn.be/stops/106212"], ["https://data.delijn.be/stops/501158", "https://data.delijn.be/stops/506644"], ["https://data.delijn.be/stops/304009", "https://data.delijn.be/stops/304824"], ["https://data.delijn.be/stops/302571", "https://data.delijn.be/stops/308118"], ["https://data.delijn.be/stops/300719", "https://data.delijn.be/stops/300731"], ["https://data.delijn.be/stops/204176", "https://data.delijn.be/stops/205241"], ["https://data.delijn.be/stops/105019", "https://data.delijn.be/stops/105097"], ["https://data.delijn.be/stops/204472", "https://data.delijn.be/stops/204777"], ["https://data.delijn.be/stops/402220", "https://data.delijn.be/stops/402221"], ["https://data.delijn.be/stops/101261", "https://data.delijn.be/stops/105270"], ["https://data.delijn.be/stops/101944", "https://data.delijn.be/stops/108753"], ["https://data.delijn.be/stops/306326", "https://data.delijn.be/stops/308266"], ["https://data.delijn.be/stops/206257", "https://data.delijn.be/stops/206262"], ["https://data.delijn.be/stops/203671", "https://data.delijn.be/stops/203672"], ["https://data.delijn.be/stops/206650", "https://data.delijn.be/stops/207127"], ["https://data.delijn.be/stops/502506", "https://data.delijn.be/stops/507506"], ["https://data.delijn.be/stops/206294", "https://data.delijn.be/stops/207286"], ["https://data.delijn.be/stops/203825", "https://data.delijn.be/stops/203826"], ["https://data.delijn.be/stops/308746", "https://data.delijn.be/stops/308747"], ["https://data.delijn.be/stops/106921", "https://data.delijn.be/stops/106945"], ["https://data.delijn.be/stops/301321", "https://data.delijn.be/stops/301913"], ["https://data.delijn.be/stops/103748", "https://data.delijn.be/stops/106293"], ["https://data.delijn.be/stops/206390", "https://data.delijn.be/stops/207391"], ["https://data.delijn.be/stops/407911", "https://data.delijn.be/stops/407912"], ["https://data.delijn.be/stops/504452", "https://data.delijn.be/stops/509452"], ["https://data.delijn.be/stops/201658", "https://data.delijn.be/stops/210048"], ["https://data.delijn.be/stops/405574", "https://data.delijn.be/stops/405576"], ["https://data.delijn.be/stops/502527", "https://data.delijn.be/stops/505336"], ["https://data.delijn.be/stops/208022", "https://data.delijn.be/stops/209016"], ["https://data.delijn.be/stops/105994", "https://data.delijn.be/stops/105998"], ["https://data.delijn.be/stops/104659", "https://data.delijn.be/stops/306606"], ["https://data.delijn.be/stops/303355", "https://data.delijn.be/stops/308892"], ["https://data.delijn.be/stops/502227", "https://data.delijn.be/stops/507822"], ["https://data.delijn.be/stops/203622", "https://data.delijn.be/stops/210043"], ["https://data.delijn.be/stops/407819", "https://data.delijn.be/stops/407822"], ["https://data.delijn.be/stops/101383", "https://data.delijn.be/stops/107099"], ["https://data.delijn.be/stops/405369", "https://data.delijn.be/stops/405385"], ["https://data.delijn.be/stops/503923", "https://data.delijn.be/stops/509174"], ["https://data.delijn.be/stops/300808", "https://data.delijn.be/stops/304582"], ["https://data.delijn.be/stops/303472", "https://data.delijn.be/stops/303474"], ["https://data.delijn.be/stops/504227", "https://data.delijn.be/stops/505707"], ["https://data.delijn.be/stops/206286", "https://data.delijn.be/stops/206294"], ["https://data.delijn.be/stops/503498", "https://data.delijn.be/stops/508877"], ["https://data.delijn.be/stops/404006", "https://data.delijn.be/stops/404013"], ["https://data.delijn.be/stops/101398", "https://data.delijn.be/stops/106533"], ["https://data.delijn.be/stops/104492", "https://data.delijn.be/stops/104870"], ["https://data.delijn.be/stops/403377", "https://data.delijn.be/stops/403553"], ["https://data.delijn.be/stops/301787", "https://data.delijn.be/stops/301790"], ["https://data.delijn.be/stops/401810", "https://data.delijn.be/stops/401811"], ["https://data.delijn.be/stops/108981", "https://data.delijn.be/stops/108984"], ["https://data.delijn.be/stops/304152", "https://data.delijn.be/stops/304153"], ["https://data.delijn.be/stops/304432", "https://data.delijn.be/stops/306064"], ["https://data.delijn.be/stops/501008", "https://data.delijn.be/stops/501068"], ["https://data.delijn.be/stops/303963", "https://data.delijn.be/stops/303970"], ["https://data.delijn.be/stops/200949", "https://data.delijn.be/stops/202097"], ["https://data.delijn.be/stops/300421", "https://data.delijn.be/stops/302696"], ["https://data.delijn.be/stops/205288", "https://data.delijn.be/stops/205546"], ["https://data.delijn.be/stops/305694", "https://data.delijn.be/stops/307839"], ["https://data.delijn.be/stops/504151", "https://data.delijn.be/stops/509151"], ["https://data.delijn.be/stops/206471", "https://data.delijn.be/stops/207137"], ["https://data.delijn.be/stops/202745", "https://data.delijn.be/stops/203946"], ["https://data.delijn.be/stops/209087", "https://data.delijn.be/stops/209088"], ["https://data.delijn.be/stops/300690", "https://data.delijn.be/stops/308936"], ["https://data.delijn.be/stops/304849", "https://data.delijn.be/stops/304856"], ["https://data.delijn.be/stops/301866", "https://data.delijn.be/stops/301873"], ["https://data.delijn.be/stops/400904", "https://data.delijn.be/stops/401246"], ["https://data.delijn.be/stops/206917", "https://data.delijn.be/stops/207262"], ["https://data.delijn.be/stops/101141", "https://data.delijn.be/stops/102847"], ["https://data.delijn.be/stops/203771", "https://data.delijn.be/stops/208641"], ["https://data.delijn.be/stops/305774", "https://data.delijn.be/stops/305775"], ["https://data.delijn.be/stops/200948", "https://data.delijn.be/stops/202047"], ["https://data.delijn.be/stops/303142", "https://data.delijn.be/stops/308438"], ["https://data.delijn.be/stops/102422", "https://data.delijn.be/stops/107318"], ["https://data.delijn.be/stops/409772", "https://data.delijn.be/stops/409775"], ["https://data.delijn.be/stops/302508", "https://data.delijn.be/stops/302514"], ["https://data.delijn.be/stops/503792", "https://data.delijn.be/stops/508791"], ["https://data.delijn.be/stops/303496", "https://data.delijn.be/stops/303504"], ["https://data.delijn.be/stops/501680", "https://data.delijn.be/stops/509261"], ["https://data.delijn.be/stops/303440", "https://data.delijn.be/stops/303458"], ["https://data.delijn.be/stops/504491", "https://data.delijn.be/stops/509490"], ["https://data.delijn.be/stops/208225", "https://data.delijn.be/stops/209225"], ["https://data.delijn.be/stops/503463", "https://data.delijn.be/stops/503467"], ["https://data.delijn.be/stops/103676", "https://data.delijn.be/stops/103732"], ["https://data.delijn.be/stops/104504", "https://data.delijn.be/stops/104508"], ["https://data.delijn.be/stops/400467", "https://data.delijn.be/stops/400469"], ["https://data.delijn.be/stops/302935", "https://data.delijn.be/stops/302936"], ["https://data.delijn.be/stops/102951", "https://data.delijn.be/stops/102952"], ["https://data.delijn.be/stops/303256", "https://data.delijn.be/stops/303277"], ["https://data.delijn.be/stops/106287", "https://data.delijn.be/stops/106289"], ["https://data.delijn.be/stops/407237", "https://data.delijn.be/stops/409858"], ["https://data.delijn.be/stops/501379", "https://data.delijn.be/stops/506394"], ["https://data.delijn.be/stops/202180", "https://data.delijn.be/stops/204201"], ["https://data.delijn.be/stops/505330", "https://data.delijn.be/stops/505775"], ["https://data.delijn.be/stops/409317", "https://data.delijn.be/stops/409334"], ["https://data.delijn.be/stops/407114", "https://data.delijn.be/stops/407865"], ["https://data.delijn.be/stops/208575", "https://data.delijn.be/stops/208588"], ["https://data.delijn.be/stops/108041", "https://data.delijn.be/stops/108043"], ["https://data.delijn.be/stops/202007", "https://data.delijn.be/stops/209908"], ["https://data.delijn.be/stops/301019", "https://data.delijn.be/stops/301022"], ["https://data.delijn.be/stops/206191", "https://data.delijn.be/stops/207191"], ["https://data.delijn.be/stops/202109", "https://data.delijn.be/stops/203167"], ["https://data.delijn.be/stops/201452", "https://data.delijn.be/stops/202011"], ["https://data.delijn.be/stops/503388", "https://data.delijn.be/stops/508347"], ["https://data.delijn.be/stops/206402", "https://data.delijn.be/stops/207401"], ["https://data.delijn.be/stops/201298", "https://data.delijn.be/stops/203142"], ["https://data.delijn.be/stops/106131", "https://data.delijn.be/stops/106240"], ["https://data.delijn.be/stops/307780", "https://data.delijn.be/stops/308911"], ["https://data.delijn.be/stops/403458", "https://data.delijn.be/stops/409321"], ["https://data.delijn.be/stops/204309", "https://data.delijn.be/stops/205448"], ["https://data.delijn.be/stops/503824", "https://data.delijn.be/stops/508824"], ["https://data.delijn.be/stops/200649", "https://data.delijn.be/stops/201316"], ["https://data.delijn.be/stops/103231", "https://data.delijn.be/stops/103557"], ["https://data.delijn.be/stops/502146", "https://data.delijn.be/stops/502152"], ["https://data.delijn.be/stops/203559", "https://data.delijn.be/stops/203562"], ["https://data.delijn.be/stops/407796", "https://data.delijn.be/stops/409643"], ["https://data.delijn.be/stops/503924", "https://data.delijn.be/stops/508924"], ["https://data.delijn.be/stops/105315", "https://data.delijn.be/stops/106000"], ["https://data.delijn.be/stops/304929", "https://data.delijn.be/stops/305225"], ["https://data.delijn.be/stops/507109", "https://data.delijn.be/stops/507114"], ["https://data.delijn.be/stops/407860", "https://data.delijn.be/stops/306056"], ["https://data.delijn.be/stops/304060", "https://data.delijn.be/stops/304086"], ["https://data.delijn.be/stops/302018", "https://data.delijn.be/stops/302034"], ["https://data.delijn.be/stops/108912", "https://data.delijn.be/stops/109398"], ["https://data.delijn.be/stops/501337", "https://data.delijn.be/stops/506311"], ["https://data.delijn.be/stops/305168", "https://data.delijn.be/stops/306914"], ["https://data.delijn.be/stops/207061", "https://data.delijn.be/stops/207446"], ["https://data.delijn.be/stops/403785", "https://data.delijn.be/stops/408978"], ["https://data.delijn.be/stops/305178", "https://data.delijn.be/stops/305193"], ["https://data.delijn.be/stops/105706", "https://data.delijn.be/stops/105708"], ["https://data.delijn.be/stops/301650", "https://data.delijn.be/stops/301651"], ["https://data.delijn.be/stops/103923", "https://data.delijn.be/stops/103924"], ["https://data.delijn.be/stops/102505", "https://data.delijn.be/stops/104945"], ["https://data.delijn.be/stops/303139", "https://data.delijn.be/stops/307056"], ["https://data.delijn.be/stops/400749", "https://data.delijn.be/stops/407590"], ["https://data.delijn.be/stops/107637", "https://data.delijn.be/stops/107704"], ["https://data.delijn.be/stops/202300", "https://data.delijn.be/stops/203300"], ["https://data.delijn.be/stops/504667", "https://data.delijn.be/stops/505354"], ["https://data.delijn.be/stops/200915", "https://data.delijn.be/stops/200942"], ["https://data.delijn.be/stops/101093", "https://data.delijn.be/stops/101131"], ["https://data.delijn.be/stops/401076", "https://data.delijn.be/stops/401165"], ["https://data.delijn.be/stops/101182", "https://data.delijn.be/stops/102593"], ["https://data.delijn.be/stops/101795", "https://data.delijn.be/stops/101801"], ["https://data.delijn.be/stops/405506", "https://data.delijn.be/stops/410086"], ["https://data.delijn.be/stops/102512", "https://data.delijn.be/stops/406479"], ["https://data.delijn.be/stops/500941", "https://data.delijn.be/stops/504831"], ["https://data.delijn.be/stops/301608", "https://data.delijn.be/stops/301658"], ["https://data.delijn.be/stops/107138", "https://data.delijn.be/stops/107139"], ["https://data.delijn.be/stops/400577", "https://data.delijn.be/stops/404153"], ["https://data.delijn.be/stops/403545", "https://data.delijn.be/stops/410323"], ["https://data.delijn.be/stops/300015", "https://data.delijn.be/stops/303092"], ["https://data.delijn.be/stops/208635", "https://data.delijn.be/stops/209098"], ["https://data.delijn.be/stops/106643", "https://data.delijn.be/stops/106650"], ["https://data.delijn.be/stops/304321", "https://data.delijn.be/stops/304331"], ["https://data.delijn.be/stops/301358", "https://data.delijn.be/stops/301967"], ["https://data.delijn.be/stops/509017", "https://data.delijn.be/stops/509508"], ["https://data.delijn.be/stops/508357", "https://data.delijn.be/stops/508371"], ["https://data.delijn.be/stops/200181", "https://data.delijn.be/stops/201196"], ["https://data.delijn.be/stops/408265", "https://data.delijn.be/stops/408272"], ["https://data.delijn.be/stops/303457", "https://data.delijn.be/stops/303458"], ["https://data.delijn.be/stops/401436", "https://data.delijn.be/stops/401437"], ["https://data.delijn.be/stops/101519", "https://data.delijn.be/stops/109008"], ["https://data.delijn.be/stops/200767", "https://data.delijn.be/stops/200776"], ["https://data.delijn.be/stops/204753", "https://data.delijn.be/stops/205754"], ["https://data.delijn.be/stops/301457", "https://data.delijn.be/stops/307930"], ["https://data.delijn.be/stops/405938", "https://data.delijn.be/stops/405947"], ["https://data.delijn.be/stops/505542", "https://data.delijn.be/stops/508568"], ["https://data.delijn.be/stops/109242", "https://data.delijn.be/stops/109243"], ["https://data.delijn.be/stops/405986", "https://data.delijn.be/stops/405987"], ["https://data.delijn.be/stops/101914", "https://data.delijn.be/stops/101915"], ["https://data.delijn.be/stops/405683", "https://data.delijn.be/stops/405825"], ["https://data.delijn.be/stops/103151", "https://data.delijn.be/stops/103272"], ["https://data.delijn.be/stops/206818", "https://data.delijn.be/stops/207820"], ["https://data.delijn.be/stops/106375", "https://data.delijn.be/stops/106385"], ["https://data.delijn.be/stops/505158", "https://data.delijn.be/stops/508781"], ["https://data.delijn.be/stops/109260", "https://data.delijn.be/stops/109263"], ["https://data.delijn.be/stops/506641", "https://data.delijn.be/stops/506659"], ["https://data.delijn.be/stops/206101", "https://data.delijn.be/stops/207844"], ["https://data.delijn.be/stops/408897", "https://data.delijn.be/stops/408916"], ["https://data.delijn.be/stops/101786", "https://data.delijn.be/stops/109144"], ["https://data.delijn.be/stops/200977", "https://data.delijn.be/stops/203906"], ["https://data.delijn.be/stops/101781", "https://data.delijn.be/stops/104521"], ["https://data.delijn.be/stops/304068", "https://data.delijn.be/stops/304118"], ["https://data.delijn.be/stops/208293", "https://data.delijn.be/stops/209725"], ["https://data.delijn.be/stops/205021", "https://data.delijn.be/stops/205408"], ["https://data.delijn.be/stops/301711", "https://data.delijn.be/stops/301741"], ["https://data.delijn.be/stops/209090", "https://data.delijn.be/stops/209655"], ["https://data.delijn.be/stops/105873", "https://data.delijn.be/stops/105877"], ["https://data.delijn.be/stops/103928", "https://data.delijn.be/stops/106900"], ["https://data.delijn.be/stops/501551", "https://data.delijn.be/stops/507519"], ["https://data.delijn.be/stops/101475", "https://data.delijn.be/stops/108734"], ["https://data.delijn.be/stops/400842", "https://data.delijn.be/stops/409575"], ["https://data.delijn.be/stops/108743", "https://data.delijn.be/stops/109561"], ["https://data.delijn.be/stops/216002", "https://data.delijn.be/stops/217002"], ["https://data.delijn.be/stops/207942", "https://data.delijn.be/stops/209101"], ["https://data.delijn.be/stops/205930", "https://data.delijn.be/stops/210105"], ["https://data.delijn.be/stops/503048", "https://data.delijn.be/stops/509845"], ["https://data.delijn.be/stops/302308", "https://data.delijn.be/stops/302481"], ["https://data.delijn.be/stops/400166", "https://data.delijn.be/stops/400168"], ["https://data.delijn.be/stops/206232", "https://data.delijn.be/stops/207803"], ["https://data.delijn.be/stops/408882", "https://data.delijn.be/stops/408883"], ["https://data.delijn.be/stops/407292", "https://data.delijn.be/stops/407293"], ["https://data.delijn.be/stops/101296", "https://data.delijn.be/stops/109807"], ["https://data.delijn.be/stops/105708", "https://data.delijn.be/stops/106069"], ["https://data.delijn.be/stops/403258", "https://data.delijn.be/stops/403395"], ["https://data.delijn.be/stops/303361", "https://data.delijn.be/stops/307810"], ["https://data.delijn.be/stops/204981", "https://data.delijn.be/stops/206489"], ["https://data.delijn.be/stops/108607", "https://data.delijn.be/stops/307433"], ["https://data.delijn.be/stops/503449", "https://data.delijn.be/stops/503465"], ["https://data.delijn.be/stops/404402", "https://data.delijn.be/stops/404403"], ["https://data.delijn.be/stops/104023", "https://data.delijn.be/stops/109884"], ["https://data.delijn.be/stops/500001", "https://data.delijn.be/stops/502294"], ["https://data.delijn.be/stops/108052", "https://data.delijn.be/stops/108053"], ["https://data.delijn.be/stops/303752", "https://data.delijn.be/stops/303788"], ["https://data.delijn.be/stops/504220", "https://data.delijn.be/stops/509221"], ["https://data.delijn.be/stops/104090", "https://data.delijn.be/stops/105120"], ["https://data.delijn.be/stops/108216", "https://data.delijn.be/stops/108217"], ["https://data.delijn.be/stops/302687", "https://data.delijn.be/stops/302688"], ["https://data.delijn.be/stops/200582", "https://data.delijn.be/stops/200590"], ["https://data.delijn.be/stops/208566", "https://data.delijn.be/stops/208611"], ["https://data.delijn.be/stops/308798", "https://data.delijn.be/stops/308850"], ["https://data.delijn.be/stops/505848", "https://data.delijn.be/stops/508841"], ["https://data.delijn.be/stops/303057", "https://data.delijn.be/stops/303965"], ["https://data.delijn.be/stops/302757", "https://data.delijn.be/stops/307046"], ["https://data.delijn.be/stops/400598", "https://data.delijn.be/stops/404042"], ["https://data.delijn.be/stops/106435", "https://data.delijn.be/stops/106499"], ["https://data.delijn.be/stops/404502", "https://data.delijn.be/stops/404534"], ["https://data.delijn.be/stops/404740", "https://data.delijn.be/stops/404741"], ["https://data.delijn.be/stops/407910", "https://data.delijn.be/stops/407997"], ["https://data.delijn.be/stops/104463", "https://data.delijn.be/stops/104464"], ["https://data.delijn.be/stops/501640", "https://data.delijn.be/stops/506640"], ["https://data.delijn.be/stops/101366", "https://data.delijn.be/stops/102746"], ["https://data.delijn.be/stops/407491", "https://data.delijn.be/stops/408600"], ["https://data.delijn.be/stops/306123", "https://data.delijn.be/stops/307143"], ["https://data.delijn.be/stops/401404", "https://data.delijn.be/stops/300919"], ["https://data.delijn.be/stops/106116", "https://data.delijn.be/stops/106117"], ["https://data.delijn.be/stops/307003", "https://data.delijn.be/stops/307004"], ["https://data.delijn.be/stops/405187", "https://data.delijn.be/stops/405215"], ["https://data.delijn.be/stops/303419", "https://data.delijn.be/stops/305085"], ["https://data.delijn.be/stops/504790", "https://data.delijn.be/stops/508519"], ["https://data.delijn.be/stops/102532", "https://data.delijn.be/stops/405108"], ["https://data.delijn.be/stops/102280", "https://data.delijn.be/stops/104860"], ["https://data.delijn.be/stops/203184", "https://data.delijn.be/stops/205587"], ["https://data.delijn.be/stops/102638", "https://data.delijn.be/stops/104928"], ["https://data.delijn.be/stops/102137", "https://data.delijn.be/stops/103478"], ["https://data.delijn.be/stops/403552", "https://data.delijn.be/stops/410282"], ["https://data.delijn.be/stops/306340", "https://data.delijn.be/stops/307819"], ["https://data.delijn.be/stops/304466", "https://data.delijn.be/stops/304467"], ["https://data.delijn.be/stops/300214", "https://data.delijn.be/stops/300215"], ["https://data.delijn.be/stops/405252", "https://data.delijn.be/stops/408367"], ["https://data.delijn.be/stops/404102", "https://data.delijn.be/stops/404103"], ["https://data.delijn.be/stops/404647", "https://data.delijn.be/stops/405512"], ["https://data.delijn.be/stops/305664", "https://data.delijn.be/stops/307102"], ["https://data.delijn.be/stops/402759", "https://data.delijn.be/stops/408124"], ["https://data.delijn.be/stops/302390", "https://data.delijn.be/stops/302392"], ["https://data.delijn.be/stops/206318", "https://data.delijn.be/stops/206319"], ["https://data.delijn.be/stops/200846", "https://data.delijn.be/stops/200847"], ["https://data.delijn.be/stops/104137", "https://data.delijn.be/stops/104139"], ["https://data.delijn.be/stops/405397", "https://data.delijn.be/stops/302833"], ["https://data.delijn.be/stops/402237", "https://data.delijn.be/stops/402293"], ["https://data.delijn.be/stops/200413", "https://data.delijn.be/stops/203359"], ["https://data.delijn.be/stops/504347", "https://data.delijn.be/stops/504354"], ["https://data.delijn.be/stops/103668", "https://data.delijn.be/stops/106215"], ["https://data.delijn.be/stops/200926", "https://data.delijn.be/stops/202392"], ["https://data.delijn.be/stops/504641", "https://data.delijn.be/stops/509190"], ["https://data.delijn.be/stops/306770", "https://data.delijn.be/stops/307733"], ["https://data.delijn.be/stops/407984", "https://data.delijn.be/stops/408032"], ["https://data.delijn.be/stops/405907", "https://data.delijn.be/stops/405932"], ["https://data.delijn.be/stops/403039", "https://data.delijn.be/stops/404721"], ["https://data.delijn.be/stops/102531", "https://data.delijn.be/stops/408351"], ["https://data.delijn.be/stops/407955", "https://data.delijn.be/stops/408054"], ["https://data.delijn.be/stops/103151", "https://data.delijn.be/stops/109987"], ["https://data.delijn.be/stops/305578", "https://data.delijn.be/stops/305579"], ["https://data.delijn.be/stops/402069", "https://data.delijn.be/stops/402079"], ["https://data.delijn.be/stops/200719", "https://data.delijn.be/stops/202576"], ["https://data.delijn.be/stops/202656", "https://data.delijn.be/stops/203657"], ["https://data.delijn.be/stops/102874", "https://data.delijn.be/stops/103371"], ["https://data.delijn.be/stops/407613", "https://data.delijn.be/stops/407651"], ["https://data.delijn.be/stops/203525", "https://data.delijn.be/stops/203960"], ["https://data.delijn.be/stops/206162", "https://data.delijn.be/stops/207162"], ["https://data.delijn.be/stops/405433", "https://data.delijn.be/stops/408792"], ["https://data.delijn.be/stops/204330", "https://data.delijn.be/stops/204547"], ["https://data.delijn.be/stops/305590", "https://data.delijn.be/stops/305591"], ["https://data.delijn.be/stops/109671", "https://data.delijn.be/stops/408450"], ["https://data.delijn.be/stops/202359", "https://data.delijn.be/stops/210133"], ["https://data.delijn.be/stops/202032", "https://data.delijn.be/stops/203034"], ["https://data.delijn.be/stops/504622", "https://data.delijn.be/stops/504631"], ["https://data.delijn.be/stops/207228", "https://data.delijn.be/stops/302153"], ["https://data.delijn.be/stops/504772", "https://data.delijn.be/stops/509291"], ["https://data.delijn.be/stops/504163", "https://data.delijn.be/stops/509162"], ["https://data.delijn.be/stops/104589", "https://data.delijn.be/stops/106414"], ["https://data.delijn.be/stops/503189", "https://data.delijn.be/stops/509819"], ["https://data.delijn.be/stops/200686", "https://data.delijn.be/stops/203376"], ["https://data.delijn.be/stops/408672", "https://data.delijn.be/stops/408673"], ["https://data.delijn.be/stops/408246", "https://data.delijn.be/stops/408294"], ["https://data.delijn.be/stops/105102", "https://data.delijn.be/stops/107637"], ["https://data.delijn.be/stops/407363", "https://data.delijn.be/stops/407566"], ["https://data.delijn.be/stops/204386", "https://data.delijn.be/stops/204387"], ["https://data.delijn.be/stops/106098", "https://data.delijn.be/stops/106118"], ["https://data.delijn.be/stops/400103", "https://data.delijn.be/stops/400163"], ["https://data.delijn.be/stops/106480", "https://data.delijn.be/stops/106485"], ["https://data.delijn.be/stops/204073", "https://data.delijn.be/stops/205597"], ["https://data.delijn.be/stops/502293", "https://data.delijn.be/stops/507290"], ["https://data.delijn.be/stops/201301", "https://data.delijn.be/stops/201946"], ["https://data.delijn.be/stops/300416", "https://data.delijn.be/stops/300444"], ["https://data.delijn.be/stops/304862", "https://data.delijn.be/stops/307646"], ["https://data.delijn.be/stops/101703", "https://data.delijn.be/stops/104870"], ["https://data.delijn.be/stops/403160", "https://data.delijn.be/stops/403481"], ["https://data.delijn.be/stops/105999", "https://data.delijn.be/stops/106006"], ["https://data.delijn.be/stops/304290", "https://data.delijn.be/stops/304515"], ["https://data.delijn.be/stops/105902", "https://data.delijn.be/stops/105904"], ["https://data.delijn.be/stops/503490", "https://data.delijn.be/stops/504834"], ["https://data.delijn.be/stops/102212", "https://data.delijn.be/stops/102609"], ["https://data.delijn.be/stops/300129", "https://data.delijn.be/stops/306808"], ["https://data.delijn.be/stops/501066", "https://data.delijn.be/stops/506506"], ["https://data.delijn.be/stops/108387", "https://data.delijn.be/stops/108389"], ["https://data.delijn.be/stops/204095", "https://data.delijn.be/stops/205250"], ["https://data.delijn.be/stops/301888", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/203400", "https://data.delijn.be/stops/208262"], ["https://data.delijn.be/stops/503808", "https://data.delijn.be/stops/504587"], ["https://data.delijn.be/stops/409560", "https://data.delijn.be/stops/409606"], ["https://data.delijn.be/stops/107601", "https://data.delijn.be/stops/107657"], ["https://data.delijn.be/stops/503227", "https://data.delijn.be/stops/505275"], ["https://data.delijn.be/stops/304312", "https://data.delijn.be/stops/304319"], ["https://data.delijn.be/stops/200028", "https://data.delijn.be/stops/201447"], ["https://data.delijn.be/stops/505932", "https://data.delijn.be/stops/508137"], ["https://data.delijn.be/stops/103600", "https://data.delijn.be/stops/109898"], ["https://data.delijn.be/stops/208428", "https://data.delijn.be/stops/209808"], ["https://data.delijn.be/stops/406193", "https://data.delijn.be/stops/406436"], ["https://data.delijn.be/stops/506775", "https://data.delijn.be/stops/506776"], ["https://data.delijn.be/stops/400600", "https://data.delijn.be/stops/400601"], ["https://data.delijn.be/stops/202251", "https://data.delijn.be/stops/203252"], ["https://data.delijn.be/stops/304900", "https://data.delijn.be/stops/306405"], ["https://data.delijn.be/stops/103992", "https://data.delijn.be/stops/105394"], ["https://data.delijn.be/stops/107037", "https://data.delijn.be/stops/108241"], ["https://data.delijn.be/stops/306397", "https://data.delijn.be/stops/306398"], ["https://data.delijn.be/stops/501380", "https://data.delijn.be/stops/506380"], ["https://data.delijn.be/stops/104962", "https://data.delijn.be/stops/107425"], ["https://data.delijn.be/stops/108259", "https://data.delijn.be/stops/108351"], ["https://data.delijn.be/stops/102596", "https://data.delijn.be/stops/104918"], ["https://data.delijn.be/stops/204707", "https://data.delijn.be/stops/205707"], ["https://data.delijn.be/stops/300741", "https://data.delijn.be/stops/300806"], ["https://data.delijn.be/stops/402394", "https://data.delijn.be/stops/402395"], ["https://data.delijn.be/stops/400505", "https://data.delijn.be/stops/400516"], ["https://data.delijn.be/stops/200953", "https://data.delijn.be/stops/211114"], ["https://data.delijn.be/stops/306667", "https://data.delijn.be/stops/306669"], ["https://data.delijn.be/stops/402177", "https://data.delijn.be/stops/402470"], ["https://data.delijn.be/stops/405701", "https://data.delijn.be/stops/405740"], ["https://data.delijn.be/stops/201718", "https://data.delijn.be/stops/202375"], ["https://data.delijn.be/stops/506070", "https://data.delijn.be/stops/506075"], ["https://data.delijn.be/stops/508629", "https://data.delijn.be/stops/590009"], ["https://data.delijn.be/stops/304447", "https://data.delijn.be/stops/307697"], ["https://data.delijn.be/stops/209604", "https://data.delijn.be/stops/307595"], ["https://data.delijn.be/stops/501219", "https://data.delijn.be/stops/501222"], ["https://data.delijn.be/stops/103007", "https://data.delijn.be/stops/106512"], ["https://data.delijn.be/stops/401378", "https://data.delijn.be/stops/401380"], ["https://data.delijn.be/stops/202492", "https://data.delijn.be/stops/202493"], ["https://data.delijn.be/stops/301606", "https://data.delijn.be/stops/301607"], ["https://data.delijn.be/stops/503270", "https://data.delijn.be/stops/503274"], ["https://data.delijn.be/stops/301722", "https://data.delijn.be/stops/305275"], ["https://data.delijn.be/stops/406229", "https://data.delijn.be/stops/410131"], ["https://data.delijn.be/stops/402554", "https://data.delijn.be/stops/405302"], ["https://data.delijn.be/stops/302510", "https://data.delijn.be/stops/302520"], ["https://data.delijn.be/stops/208279", "https://data.delijn.be/stops/209280"], ["https://data.delijn.be/stops/404914", "https://data.delijn.be/stops/404915"], ["https://data.delijn.be/stops/304718", "https://data.delijn.be/stops/308685"], ["https://data.delijn.be/stops/206735", "https://data.delijn.be/stops/207655"], ["https://data.delijn.be/stops/503365", "https://data.delijn.be/stops/508072"], ["https://data.delijn.be/stops/402714", "https://data.delijn.be/stops/308145"], ["https://data.delijn.be/stops/409351", "https://data.delijn.be/stops/409370"], ["https://data.delijn.be/stops/504287", "https://data.delijn.be/stops/504618"], ["https://data.delijn.be/stops/401782", "https://data.delijn.be/stops/406424"], ["https://data.delijn.be/stops/107715", "https://data.delijn.be/stops/107717"], ["https://data.delijn.be/stops/208213", "https://data.delijn.be/stops/208838"], ["https://data.delijn.be/stops/208780", "https://data.delijn.be/stops/208799"], ["https://data.delijn.be/stops/201876", "https://data.delijn.be/stops/202661"], ["https://data.delijn.be/stops/406060", "https://data.delijn.be/stops/406138"], ["https://data.delijn.be/stops/404696", "https://data.delijn.be/stops/405306"], ["https://data.delijn.be/stops/502083", "https://data.delijn.be/stops/507412"], ["https://data.delijn.be/stops/105233", "https://data.delijn.be/stops/105251"], ["https://data.delijn.be/stops/206379", "https://data.delijn.be/stops/206380"], ["https://data.delijn.be/stops/206046", "https://data.delijn.be/stops/207967"], ["https://data.delijn.be/stops/107461", "https://data.delijn.be/stops/109202"], ["https://data.delijn.be/stops/104049", "https://data.delijn.be/stops/107525"], ["https://data.delijn.be/stops/405466", "https://data.delijn.be/stops/408570"], ["https://data.delijn.be/stops/502202", "https://data.delijn.be/stops/508805"], ["https://data.delijn.be/stops/503126", "https://data.delijn.be/stops/503159"], ["https://data.delijn.be/stops/305772", "https://data.delijn.be/stops/305774"], ["https://data.delijn.be/stops/202100", "https://data.delijn.be/stops/203100"], ["https://data.delijn.be/stops/405718", "https://data.delijn.be/stops/410145"], ["https://data.delijn.be/stops/405994", "https://data.delijn.be/stops/405995"], ["https://data.delijn.be/stops/104456", "https://data.delijn.be/stops/307524"], ["https://data.delijn.be/stops/106068", "https://data.delijn.be/stops/106416"], ["https://data.delijn.be/stops/301928", "https://data.delijn.be/stops/307878"], ["https://data.delijn.be/stops/206161", "https://data.delijn.be/stops/206492"], ["https://data.delijn.be/stops/207241", "https://data.delijn.be/stops/207320"], ["https://data.delijn.be/stops/505717", "https://data.delijn.be/stops/509387"], ["https://data.delijn.be/stops/200574", "https://data.delijn.be/stops/203194"], ["https://data.delijn.be/stops/509151", "https://data.delijn.be/stops/509194"], ["https://data.delijn.be/stops/300996", "https://data.delijn.be/stops/301082"], ["https://data.delijn.be/stops/304134", "https://data.delijn.be/stops/307580"], ["https://data.delijn.be/stops/405282", "https://data.delijn.be/stops/405505"], ["https://data.delijn.be/stops/204497", "https://data.delijn.be/stops/205497"], ["https://data.delijn.be/stops/503326", "https://data.delijn.be/stops/508326"], ["https://data.delijn.be/stops/403057", "https://data.delijn.be/stops/403569"], ["https://data.delijn.be/stops/503561", "https://data.delijn.be/stops/503583"], ["https://data.delijn.be/stops/306612", "https://data.delijn.be/stops/306617"], ["https://data.delijn.be/stops/208469", "https://data.delijn.be/stops/209469"], ["https://data.delijn.be/stops/304889", "https://data.delijn.be/stops/306714"], ["https://data.delijn.be/stops/303061", "https://data.delijn.be/stops/304465"], ["https://data.delijn.be/stops/206660", "https://data.delijn.be/stops/207417"], ["https://data.delijn.be/stops/405885", "https://data.delijn.be/stops/409704"], ["https://data.delijn.be/stops/105197", "https://data.delijn.be/stops/108881"], ["https://data.delijn.be/stops/109146", "https://data.delijn.be/stops/109149"], ["https://data.delijn.be/stops/305611", "https://data.delijn.be/stops/308944"], ["https://data.delijn.be/stops/200147", "https://data.delijn.be/stops/201567"], ["https://data.delijn.be/stops/501299", "https://data.delijn.be/stops/506299"], ["https://data.delijn.be/stops/501005", "https://data.delijn.be/stops/501220"], ["https://data.delijn.be/stops/202671", "https://data.delijn.be/stops/211034"], ["https://data.delijn.be/stops/104131", "https://data.delijn.be/stops/108434"], ["https://data.delijn.be/stops/505543", "https://data.delijn.be/stops/508803"], ["https://data.delijn.be/stops/206342", "https://data.delijn.be/stops/207705"], ["https://data.delijn.be/stops/206784", "https://data.delijn.be/stops/208024"], ["https://data.delijn.be/stops/206012", "https://data.delijn.be/stops/207388"], ["https://data.delijn.be/stops/507216", "https://data.delijn.be/stops/507219"], ["https://data.delijn.be/stops/304102", "https://data.delijn.be/stops/304103"], ["https://data.delijn.be/stops/108192", "https://data.delijn.be/stops/108194"], ["https://data.delijn.be/stops/103161", "https://data.delijn.be/stops/109932"], ["https://data.delijn.be/stops/208259", "https://data.delijn.be/stops/209260"], ["https://data.delijn.be/stops/206289", "https://data.delijn.be/stops/207256"], ["https://data.delijn.be/stops/409606", "https://data.delijn.be/stops/409609"], ["https://data.delijn.be/stops/105743", "https://data.delijn.be/stops/105744"], ["https://data.delijn.be/stops/203535", "https://data.delijn.be/stops/203588"], ["https://data.delijn.be/stops/505617", "https://data.delijn.be/stops/505618"], ["https://data.delijn.be/stops/206515", "https://data.delijn.be/stops/206659"], ["https://data.delijn.be/stops/301797", "https://data.delijn.be/stops/301798"], ["https://data.delijn.be/stops/403776", "https://data.delijn.be/stops/403816"], ["https://data.delijn.be/stops/103266", "https://data.delijn.be/stops/103268"], ["https://data.delijn.be/stops/403945", "https://data.delijn.be/stops/404087"], ["https://data.delijn.be/stops/204367", "https://data.delijn.be/stops/205216"], ["https://data.delijn.be/stops/204379", "https://data.delijn.be/stops/204764"], ["https://data.delijn.be/stops/400527", "https://data.delijn.be/stops/400580"], ["https://data.delijn.be/stops/106940", "https://data.delijn.be/stops/109714"], ["https://data.delijn.be/stops/206733", "https://data.delijn.be/stops/207998"], ["https://data.delijn.be/stops/400688", "https://data.delijn.be/stops/404253"], ["https://data.delijn.be/stops/203597", "https://data.delijn.be/stops/210077"], ["https://data.delijn.be/stops/105098", "https://data.delijn.be/stops/109504"], ["https://data.delijn.be/stops/106453", "https://data.delijn.be/stops/106457"], ["https://data.delijn.be/stops/200582", "https://data.delijn.be/stops/210078"], ["https://data.delijn.be/stops/107830", "https://data.delijn.be/stops/107832"], ["https://data.delijn.be/stops/203822", "https://data.delijn.be/stops/205941"], ["https://data.delijn.be/stops/208807", "https://data.delijn.be/stops/208811"], ["https://data.delijn.be/stops/206265", "https://data.delijn.be/stops/206739"], ["https://data.delijn.be/stops/303387", "https://data.delijn.be/stops/307183"], ["https://data.delijn.be/stops/509168", "https://data.delijn.be/stops/509173"], ["https://data.delijn.be/stops/302159", "https://data.delijn.be/stops/308099"], ["https://data.delijn.be/stops/303059", "https://data.delijn.be/stops/303082"], ["https://data.delijn.be/stops/101878", "https://data.delijn.be/stops/105697"], ["https://data.delijn.be/stops/109436", "https://data.delijn.be/stops/109437"], ["https://data.delijn.be/stops/209740", "https://data.delijn.be/stops/209741"], ["https://data.delijn.be/stops/504203", "https://data.delijn.be/stops/509203"], ["https://data.delijn.be/stops/402889", "https://data.delijn.be/stops/402898"], ["https://data.delijn.be/stops/202976", "https://data.delijn.be/stops/203976"], ["https://data.delijn.be/stops/403353", "https://data.delijn.be/stops/403483"], ["https://data.delijn.be/stops/106593", "https://data.delijn.be/stops/107246"], ["https://data.delijn.be/stops/105385", "https://data.delijn.be/stops/107040"], ["https://data.delijn.be/stops/205212", "https://data.delijn.be/stops/205342"], ["https://data.delijn.be/stops/303586", "https://data.delijn.be/stops/306398"], ["https://data.delijn.be/stops/406578", "https://data.delijn.be/stops/406579"], ["https://data.delijn.be/stops/208646", "https://data.delijn.be/stops/211041"], ["https://data.delijn.be/stops/202161", "https://data.delijn.be/stops/203161"], ["https://data.delijn.be/stops/505378", "https://data.delijn.be/stops/508839"], ["https://data.delijn.be/stops/501175", "https://data.delijn.be/stops/501184"], ["https://data.delijn.be/stops/503294", "https://data.delijn.be/stops/508294"], ["https://data.delijn.be/stops/504207", "https://data.delijn.be/stops/507255"], ["https://data.delijn.be/stops/303543", "https://data.delijn.be/stops/303564"], ["https://data.delijn.be/stops/301110", "https://data.delijn.be/stops/307637"], ["https://data.delijn.be/stops/107624", "https://data.delijn.be/stops/108543"], ["https://data.delijn.be/stops/503393", "https://data.delijn.be/stops/508393"], ["https://data.delijn.be/stops/303342", "https://data.delijn.be/stops/303345"], ["https://data.delijn.be/stops/400110", "https://data.delijn.be/stops/409833"], ["https://data.delijn.be/stops/302533", "https://data.delijn.be/stops/302538"], ["https://data.delijn.be/stops/208010", "https://data.delijn.be/stops/209009"], ["https://data.delijn.be/stops/400230", "https://data.delijn.be/stops/400231"], ["https://data.delijn.be/stops/408138", "https://data.delijn.be/stops/408139"], ["https://data.delijn.be/stops/408820", "https://data.delijn.be/stops/408822"], ["https://data.delijn.be/stops/304367", "https://data.delijn.be/stops/307454"], ["https://data.delijn.be/stops/406150", "https://data.delijn.be/stops/406274"], ["https://data.delijn.be/stops/203903", "https://data.delijn.be/stops/218003"], ["https://data.delijn.be/stops/401905", "https://data.delijn.be/stops/405055"], ["https://data.delijn.be/stops/506311", "https://data.delijn.be/stops/506480"], ["https://data.delijn.be/stops/103638", "https://data.delijn.be/stops/107164"], ["https://data.delijn.be/stops/200055", "https://data.delijn.be/stops/201470"], ["https://data.delijn.be/stops/405763", "https://data.delijn.be/stops/409280"], ["https://data.delijn.be/stops/102991", "https://data.delijn.be/stops/106358"], ["https://data.delijn.be/stops/404507", "https://data.delijn.be/stops/404508"], ["https://data.delijn.be/stops/303961", "https://data.delijn.be/stops/303962"], ["https://data.delijn.be/stops/107675", "https://data.delijn.be/stops/108625"], ["https://data.delijn.be/stops/405324", "https://data.delijn.be/stops/405325"], ["https://data.delijn.be/stops/502730", "https://data.delijn.be/stops/507732"], ["https://data.delijn.be/stops/405626", "https://data.delijn.be/stops/407470"], ["https://data.delijn.be/stops/300022", "https://data.delijn.be/stops/300025"], ["https://data.delijn.be/stops/101706", "https://data.delijn.be/stops/102920"], ["https://data.delijn.be/stops/400474", "https://data.delijn.be/stops/404665"], ["https://data.delijn.be/stops/106893", "https://data.delijn.be/stops/107219"], ["https://data.delijn.be/stops/206156", "https://data.delijn.be/stops/207156"], ["https://data.delijn.be/stops/503188", "https://data.delijn.be/stops/508385"], ["https://data.delijn.be/stops/501489", "https://data.delijn.be/stops/506038"], ["https://data.delijn.be/stops/107198", "https://data.delijn.be/stops/107199"], ["https://data.delijn.be/stops/405877", "https://data.delijn.be/stops/409889"], ["https://data.delijn.be/stops/504975", "https://data.delijn.be/stops/509975"], ["https://data.delijn.be/stops/106719", "https://data.delijn.be/stops/106720"], ["https://data.delijn.be/stops/208076", "https://data.delijn.be/stops/209076"], ["https://data.delijn.be/stops/203332", "https://data.delijn.be/stops/210291"], ["https://data.delijn.be/stops/505039", "https://data.delijn.be/stops/506122"], ["https://data.delijn.be/stops/202157", "https://data.delijn.be/stops/203158"], ["https://data.delijn.be/stops/302136", "https://data.delijn.be/stops/307529"], ["https://data.delijn.be/stops/408521", "https://data.delijn.be/stops/408734"], ["https://data.delijn.be/stops/204642", "https://data.delijn.be/stops/205643"], ["https://data.delijn.be/stops/102826", "https://data.delijn.be/stops/106236"], ["https://data.delijn.be/stops/500011", "https://data.delijn.be/stops/507282"], ["https://data.delijn.be/stops/407784", "https://data.delijn.be/stops/307447"], ["https://data.delijn.be/stops/504004", "https://data.delijn.be/stops/509737"], ["https://data.delijn.be/stops/105367", "https://data.delijn.be/stops/105386"], ["https://data.delijn.be/stops/200864", "https://data.delijn.be/stops/201493"], ["https://data.delijn.be/stops/501463", "https://data.delijn.be/stops/501537"], ["https://data.delijn.be/stops/200133", "https://data.delijn.be/stops/200134"], ["https://data.delijn.be/stops/404193", "https://data.delijn.be/stops/405983"], ["https://data.delijn.be/stops/400819", "https://data.delijn.be/stops/409641"], ["https://data.delijn.be/stops/101045", "https://data.delijn.be/stops/104320"], ["https://data.delijn.be/stops/304869", "https://data.delijn.be/stops/307799"], ["https://data.delijn.be/stops/502121", "https://data.delijn.be/stops/502149"], ["https://data.delijn.be/stops/405514", "https://data.delijn.be/stops/407319"], ["https://data.delijn.be/stops/200003", "https://data.delijn.be/stops/200004"], ["https://data.delijn.be/stops/504050", "https://data.delijn.be/stops/509050"], ["https://data.delijn.be/stops/203636", "https://data.delijn.be/stops/204077"], ["https://data.delijn.be/stops/405786", "https://data.delijn.be/stops/409750"], ["https://data.delijn.be/stops/201186", "https://data.delijn.be/stops/204951"], ["https://data.delijn.be/stops/304188", "https://data.delijn.be/stops/305335"], ["https://data.delijn.be/stops/501551", "https://data.delijn.be/stops/502373"], ["https://data.delijn.be/stops/201351", "https://data.delijn.be/stops/211335"], ["https://data.delijn.be/stops/107600", "https://data.delijn.be/stops/109040"], ["https://data.delijn.be/stops/505918", "https://data.delijn.be/stops/505927"], ["https://data.delijn.be/stops/400661", "https://data.delijn.be/stops/400662"], ["https://data.delijn.be/stops/306275", "https://data.delijn.be/stops/306276"], ["https://data.delijn.be/stops/102242", "https://data.delijn.be/stops/105882"], ["https://data.delijn.be/stops/216016", "https://data.delijn.be/stops/217016"], ["https://data.delijn.be/stops/106644", "https://data.delijn.be/stops/106679"], ["https://data.delijn.be/stops/401586", "https://data.delijn.be/stops/402126"], ["https://data.delijn.be/stops/408605", "https://data.delijn.be/stops/408608"], ["https://data.delijn.be/stops/408423", "https://data.delijn.be/stops/408490"], ["https://data.delijn.be/stops/300740", "https://data.delijn.be/stops/300804"], ["https://data.delijn.be/stops/303664", "https://data.delijn.be/stops/305397"], ["https://data.delijn.be/stops/207376", "https://data.delijn.be/stops/207726"], ["https://data.delijn.be/stops/401290", "https://data.delijn.be/stops/406652"], ["https://data.delijn.be/stops/401547", "https://data.delijn.be/stops/401551"], ["https://data.delijn.be/stops/404335", "https://data.delijn.be/stops/404355"], ["https://data.delijn.be/stops/204056", "https://data.delijn.be/stops/205725"], ["https://data.delijn.be/stops/402231", "https://data.delijn.be/stops/402294"], ["https://data.delijn.be/stops/105488", "https://data.delijn.be/stops/105493"], ["https://data.delijn.be/stops/505770", "https://data.delijn.be/stops/505811"], ["https://data.delijn.be/stops/200703", "https://data.delijn.be/stops/200706"], ["https://data.delijn.be/stops/507646", "https://data.delijn.be/stops/507696"], ["https://data.delijn.be/stops/304882", "https://data.delijn.be/stops/308543"], ["https://data.delijn.be/stops/102435", "https://data.delijn.be/stops/107975"], ["https://data.delijn.be/stops/108065", "https://data.delijn.be/stops/108160"], ["https://data.delijn.be/stops/200135", "https://data.delijn.be/stops/202134"], ["https://data.delijn.be/stops/200102", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/206074", "https://data.delijn.be/stops/207964"], ["https://data.delijn.be/stops/502092", "https://data.delijn.be/stops/507167"], ["https://data.delijn.be/stops/103767", "https://data.delijn.be/stops/106531"], ["https://data.delijn.be/stops/400069", "https://data.delijn.be/stops/400161"], ["https://data.delijn.be/stops/408523", "https://data.delijn.be/stops/408776"], ["https://data.delijn.be/stops/304569", "https://data.delijn.be/stops/304661"], ["https://data.delijn.be/stops/105234", "https://data.delijn.be/stops/109956"], ["https://data.delijn.be/stops/103766", "https://data.delijn.be/stops/108762"], ["https://data.delijn.be/stops/304244", "https://data.delijn.be/stops/305449"], ["https://data.delijn.be/stops/503104", "https://data.delijn.be/stops/505306"], ["https://data.delijn.be/stops/208433", "https://data.delijn.be/stops/208436"], ["https://data.delijn.be/stops/503568", "https://data.delijn.be/stops/508433"], ["https://data.delijn.be/stops/304263", "https://data.delijn.be/stops/304268"], ["https://data.delijn.be/stops/407324", "https://data.delijn.be/stops/408472"], ["https://data.delijn.be/stops/304216", "https://data.delijn.be/stops/307243"], ["https://data.delijn.be/stops/502526", "https://data.delijn.be/stops/507526"], ["https://data.delijn.be/stops/408952", "https://data.delijn.be/stops/408980"], ["https://data.delijn.be/stops/403399", "https://data.delijn.be/stops/410217"], ["https://data.delijn.be/stops/406339", "https://data.delijn.be/stops/406365"], ["https://data.delijn.be/stops/103789", "https://data.delijn.be/stops/109146"], ["https://data.delijn.be/stops/503980", "https://data.delijn.be/stops/505286"], ["https://data.delijn.be/stops/300232", "https://data.delijn.be/stops/301375"], ["https://data.delijn.be/stops/108943", "https://data.delijn.be/stops/109222"], ["https://data.delijn.be/stops/400265", "https://data.delijn.be/stops/406931"], ["https://data.delijn.be/stops/409681", "https://data.delijn.be/stops/409687"], ["https://data.delijn.be/stops/409320", "https://data.delijn.be/stops/409321"], ["https://data.delijn.be/stops/509937", "https://data.delijn.be/stops/509938"], ["https://data.delijn.be/stops/307881", "https://data.delijn.be/stops/307882"], ["https://data.delijn.be/stops/503159", "https://data.delijn.be/stops/509886"], ["https://data.delijn.be/stops/201281", "https://data.delijn.be/stops/208707"], ["https://data.delijn.be/stops/408546", "https://data.delijn.be/stops/408602"], ["https://data.delijn.be/stops/301038", "https://data.delijn.be/stops/301068"], ["https://data.delijn.be/stops/300777", "https://data.delijn.be/stops/300796"], ["https://data.delijn.be/stops/209305", "https://data.delijn.be/stops/507962"], ["https://data.delijn.be/stops/204066", "https://data.delijn.be/stops/205225"], ["https://data.delijn.be/stops/305337", "https://data.delijn.be/stops/305345"], ["https://data.delijn.be/stops/105075", "https://data.delijn.be/stops/105092"], ["https://data.delijn.be/stops/405364", "https://data.delijn.be/stops/405366"], ["https://data.delijn.be/stops/206464", "https://data.delijn.be/stops/206465"], ["https://data.delijn.be/stops/302336", "https://data.delijn.be/stops/302343"], ["https://data.delijn.be/stops/502176", "https://data.delijn.be/stops/508066"], ["https://data.delijn.be/stops/202697", "https://data.delijn.be/stops/203707"], ["https://data.delijn.be/stops/205659", "https://data.delijn.be/stops/205679"], ["https://data.delijn.be/stops/201911", "https://data.delijn.be/stops/204063"], ["https://data.delijn.be/stops/405538", "https://data.delijn.be/stops/409332"], ["https://data.delijn.be/stops/104008", "https://data.delijn.be/stops/104275"], ["https://data.delijn.be/stops/402339", "https://data.delijn.be/stops/402443"], ["https://data.delijn.be/stops/502035", "https://data.delijn.be/stops/502620"], ["https://data.delijn.be/stops/302552", "https://data.delijn.be/stops/302560"], ["https://data.delijn.be/stops/206175", "https://data.delijn.be/stops/207059"], ["https://data.delijn.be/stops/202988", "https://data.delijn.be/stops/203986"], ["https://data.delijn.be/stops/400366", "https://data.delijn.be/stops/400416"], ["https://data.delijn.be/stops/407504", "https://data.delijn.be/stops/407512"], ["https://data.delijn.be/stops/509329", "https://data.delijn.be/stops/509334"], ["https://data.delijn.be/stops/403157", "https://data.delijn.be/stops/403380"], ["https://data.delijn.be/stops/206295", "https://data.delijn.be/stops/206809"], ["https://data.delijn.be/stops/504144", "https://data.delijn.be/stops/505710"], ["https://data.delijn.be/stops/503933", "https://data.delijn.be/stops/508934"], ["https://data.delijn.be/stops/108107", "https://data.delijn.be/stops/108119"], ["https://data.delijn.be/stops/101050", "https://data.delijn.be/stops/101055"], ["https://data.delijn.be/stops/210013", "https://data.delijn.be/stops/502277"], ["https://data.delijn.be/stops/203389", "https://data.delijn.be/stops/203390"], ["https://data.delijn.be/stops/503774", "https://data.delijn.be/stops/508722"], ["https://data.delijn.be/stops/200013", "https://data.delijn.be/stops/211335"], ["https://data.delijn.be/stops/302807", "https://data.delijn.be/stops/306159"], ["https://data.delijn.be/stops/502083", "https://data.delijn.be/stops/502140"], ["https://data.delijn.be/stops/505387", "https://data.delijn.be/stops/505394"], ["https://data.delijn.be/stops/204363", "https://data.delijn.be/stops/205363"], ["https://data.delijn.be/stops/302753", "https://data.delijn.be/stops/303219"], ["https://data.delijn.be/stops/305197", "https://data.delijn.be/stops/305201"], ["https://data.delijn.be/stops/204171", "https://data.delijn.be/stops/205771"], ["https://data.delijn.be/stops/402048", "https://data.delijn.be/stops/402049"], ["https://data.delijn.be/stops/101525", "https://data.delijn.be/stops/103049"], ["https://data.delijn.be/stops/204077", "https://data.delijn.be/stops/205091"], ["https://data.delijn.be/stops/200203", "https://data.delijn.be/stops/200212"], ["https://data.delijn.be/stops/208269", "https://data.delijn.be/stops/208270"], ["https://data.delijn.be/stops/107343", "https://data.delijn.be/stops/108164"], ["https://data.delijn.be/stops/208027", "https://data.delijn.be/stops/208079"], ["https://data.delijn.be/stops/208610", "https://data.delijn.be/stops/209608"], ["https://data.delijn.be/stops/206950", "https://data.delijn.be/stops/306077"], ["https://data.delijn.be/stops/302523", "https://data.delijn.be/stops/302524"], ["https://data.delijn.be/stops/107573", "https://data.delijn.be/stops/109434"], ["https://data.delijn.be/stops/404095", "https://data.delijn.be/stops/409284"], ["https://data.delijn.be/stops/403236", "https://data.delijn.be/stops/410210"], ["https://data.delijn.be/stops/102763", "https://data.delijn.be/stops/106332"], ["https://data.delijn.be/stops/208451", "https://data.delijn.be/stops/219028"], ["https://data.delijn.be/stops/103283", "https://data.delijn.be/stops/104345"], ["https://data.delijn.be/stops/200919", "https://data.delijn.be/stops/211114"], ["https://data.delijn.be/stops/300890", "https://data.delijn.be/stops/300891"], ["https://data.delijn.be/stops/207785", "https://data.delijn.be/stops/209373"], ["https://data.delijn.be/stops/400762", "https://data.delijn.be/stops/400763"], ["https://data.delijn.be/stops/209235", "https://data.delijn.be/stops/209236"], ["https://data.delijn.be/stops/400078", "https://data.delijn.be/stops/400105"], ["https://data.delijn.be/stops/409024", "https://data.delijn.be/stops/409036"], ["https://data.delijn.be/stops/205029", "https://data.delijn.be/stops/205035"], ["https://data.delijn.be/stops/109309", "https://data.delijn.be/stops/109655"], ["https://data.delijn.be/stops/105566", "https://data.delijn.be/stops/105573"], ["https://data.delijn.be/stops/106198", "https://data.delijn.be/stops/106306"], ["https://data.delijn.be/stops/400970", "https://data.delijn.be/stops/400971"], ["https://data.delijn.be/stops/406944", "https://data.delijn.be/stops/406974"], ["https://data.delijn.be/stops/504554", "https://data.delijn.be/stops/509240"], ["https://data.delijn.be/stops/509347", "https://data.delijn.be/stops/509351"], ["https://data.delijn.be/stops/404237", "https://data.delijn.be/stops/404243"], ["https://data.delijn.be/stops/505436", "https://data.delijn.be/stops/509265"], ["https://data.delijn.be/stops/404708", "https://data.delijn.be/stops/410051"], ["https://data.delijn.be/stops/203373", "https://data.delijn.be/stops/203374"], ["https://data.delijn.be/stops/404192", "https://data.delijn.be/stops/405916"], ["https://data.delijn.be/stops/300660", "https://data.delijn.be/stops/305816"], ["https://data.delijn.be/stops/208604", "https://data.delijn.be/stops/307596"], ["https://data.delijn.be/stops/208655", "https://data.delijn.be/stops/209655"], ["https://data.delijn.be/stops/200151", "https://data.delijn.be/stops/201151"], ["https://data.delijn.be/stops/205369", "https://data.delijn.be/stops/205760"], ["https://data.delijn.be/stops/404170", "https://data.delijn.be/stops/404171"], ["https://data.delijn.be/stops/201766", "https://data.delijn.be/stops/209273"], ["https://data.delijn.be/stops/107189", "https://data.delijn.be/stops/107191"], ["https://data.delijn.be/stops/301404", "https://data.delijn.be/stops/301405"], ["https://data.delijn.be/stops/410152", "https://data.delijn.be/stops/300927"], ["https://data.delijn.be/stops/303139", "https://data.delijn.be/stops/303140"], ["https://data.delijn.be/stops/408052", "https://data.delijn.be/stops/408442"], ["https://data.delijn.be/stops/101227", "https://data.delijn.be/stops/107809"], ["https://data.delijn.be/stops/202097", "https://data.delijn.be/stops/203097"], ["https://data.delijn.be/stops/101919", "https://data.delijn.be/stops/102422"], ["https://data.delijn.be/stops/200897", "https://data.delijn.be/stops/200909"], ["https://data.delijn.be/stops/204108", "https://data.delijn.be/stops/204479"], ["https://data.delijn.be/stops/101464", "https://data.delijn.be/stops/109249"], ["https://data.delijn.be/stops/501474", "https://data.delijn.be/stops/506322"], ["https://data.delijn.be/stops/305576", "https://data.delijn.be/stops/305578"], ["https://data.delijn.be/stops/501601", "https://data.delijn.be/stops/504493"], ["https://data.delijn.be/stops/305642", "https://data.delijn.be/stops/305643"], ["https://data.delijn.be/stops/200308", "https://data.delijn.be/stops/209450"], ["https://data.delijn.be/stops/301908", "https://data.delijn.be/stops/306256"], ["https://data.delijn.be/stops/105988", "https://data.delijn.be/stops/109870"], ["https://data.delijn.be/stops/400741", "https://data.delijn.be/stops/400938"], ["https://data.delijn.be/stops/109814", "https://data.delijn.be/stops/109815"], ["https://data.delijn.be/stops/408109", "https://data.delijn.be/stops/408115"], ["https://data.delijn.be/stops/400045", "https://data.delijn.be/stops/407101"], ["https://data.delijn.be/stops/404932", "https://data.delijn.be/stops/404943"], ["https://data.delijn.be/stops/202886", "https://data.delijn.be/stops/209747"], ["https://data.delijn.be/stops/106687", "https://data.delijn.be/stops/106688"], ["https://data.delijn.be/stops/105036", "https://data.delijn.be/stops/108056"], ["https://data.delijn.be/stops/102843", "https://data.delijn.be/stops/108040"], ["https://data.delijn.be/stops/301332", "https://data.delijn.be/stops/306121"], ["https://data.delijn.be/stops/105129", "https://data.delijn.be/stops/105133"], ["https://data.delijn.be/stops/106760", "https://data.delijn.be/stops/107517"], ["https://data.delijn.be/stops/506291", "https://data.delijn.be/stops/506326"], ["https://data.delijn.be/stops/105693", "https://data.delijn.be/stops/105696"], ["https://data.delijn.be/stops/205347", "https://data.delijn.be/stops/205707"], ["https://data.delijn.be/stops/101404", "https://data.delijn.be/stops/106527"], ["https://data.delijn.be/stops/400606", "https://data.delijn.be/stops/400607"], ["https://data.delijn.be/stops/208556", "https://data.delijn.be/stops/209547"], ["https://data.delijn.be/stops/501038", "https://data.delijn.be/stops/501490"], ["https://data.delijn.be/stops/105289", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/207047", "https://data.delijn.be/stops/300172"], ["https://data.delijn.be/stops/204692", "https://data.delijn.be/stops/205322"], ["https://data.delijn.be/stops/505285", "https://data.delijn.be/stops/505286"], ["https://data.delijn.be/stops/206980", "https://data.delijn.be/stops/207979"], ["https://data.delijn.be/stops/304507", "https://data.delijn.be/stops/307674"], ["https://data.delijn.be/stops/109084", "https://data.delijn.be/stops/109312"], ["https://data.delijn.be/stops/404149", "https://data.delijn.be/stops/404278"], ["https://data.delijn.be/stops/202784", "https://data.delijn.be/stops/202785"], ["https://data.delijn.be/stops/502575", "https://data.delijn.be/stops/505700"], ["https://data.delijn.be/stops/208239", "https://data.delijn.be/stops/209123"], ["https://data.delijn.be/stops/503312", "https://data.delijn.be/stops/504859"], ["https://data.delijn.be/stops/300953", "https://data.delijn.be/stops/307808"], ["https://data.delijn.be/stops/102375", "https://data.delijn.be/stops/105745"], ["https://data.delijn.be/stops/403262", "https://data.delijn.be/stops/403862"], ["https://data.delijn.be/stops/300436", "https://data.delijn.be/stops/300441"], ["https://data.delijn.be/stops/403418", "https://data.delijn.be/stops/403559"], ["https://data.delijn.be/stops/206963", "https://data.delijn.be/stops/207040"], ["https://data.delijn.be/stops/208781", "https://data.delijn.be/stops/209351"], ["https://data.delijn.be/stops/303529", "https://data.delijn.be/stops/303571"], ["https://data.delijn.be/stops/303282", "https://data.delijn.be/stops/304659"], ["https://data.delijn.be/stops/206598", "https://data.delijn.be/stops/209666"], ["https://data.delijn.be/stops/504873", "https://data.delijn.be/stops/508701"], ["https://data.delijn.be/stops/202011", "https://data.delijn.be/stops/203653"], ["https://data.delijn.be/stops/104640", "https://data.delijn.be/stops/104805"], ["https://data.delijn.be/stops/406128", "https://data.delijn.be/stops/406129"], ["https://data.delijn.be/stops/300194", "https://data.delijn.be/stops/300220"], ["https://data.delijn.be/stops/108806", "https://data.delijn.be/stops/108807"], ["https://data.delijn.be/stops/200309", "https://data.delijn.be/stops/201341"], ["https://data.delijn.be/stops/300037", "https://data.delijn.be/stops/300038"], ["https://data.delijn.be/stops/300618", "https://data.delijn.be/stops/300691"], ["https://data.delijn.be/stops/101926", "https://data.delijn.be/stops/107074"], ["https://data.delijn.be/stops/303546", "https://data.delijn.be/stops/308791"], ["https://data.delijn.be/stops/302375", "https://data.delijn.be/stops/304068"], ["https://data.delijn.be/stops/200906", "https://data.delijn.be/stops/203237"], ["https://data.delijn.be/stops/101195", "https://data.delijn.be/stops/104721"], ["https://data.delijn.be/stops/302534", "https://data.delijn.be/stops/302545"], ["https://data.delijn.be/stops/402678", "https://data.delijn.be/stops/402736"], ["https://data.delijn.be/stops/208338", "https://data.delijn.be/stops/208360"], ["https://data.delijn.be/stops/202435", "https://data.delijn.be/stops/203717"], ["https://data.delijn.be/stops/300751", "https://data.delijn.be/stops/304570"], ["https://data.delijn.be/stops/209067", "https://data.delijn.be/stops/209194"], ["https://data.delijn.be/stops/101152", "https://data.delijn.be/stops/103032"], ["https://data.delijn.be/stops/500006", "https://data.delijn.be/stops/505835"], ["https://data.delijn.be/stops/302729", "https://data.delijn.be/stops/302737"], ["https://data.delijn.be/stops/406996", "https://data.delijn.be/stops/407130"], ["https://data.delijn.be/stops/303273", "https://data.delijn.be/stops/303304"], ["https://data.delijn.be/stops/503002", "https://data.delijn.be/stops/508002"], ["https://data.delijn.be/stops/300546", "https://data.delijn.be/stops/300551"], ["https://data.delijn.be/stops/501617", "https://data.delijn.be/stops/506616"], ["https://data.delijn.be/stops/305186", "https://data.delijn.be/stops/306961"], ["https://data.delijn.be/stops/206552", "https://data.delijn.be/stops/206860"], ["https://data.delijn.be/stops/103923", "https://data.delijn.be/stops/106901"], ["https://data.delijn.be/stops/306306", "https://data.delijn.be/stops/306307"], ["https://data.delijn.be/stops/200891", "https://data.delijn.be/stops/211012"], ["https://data.delijn.be/stops/407163", "https://data.delijn.be/stops/407185"], ["https://data.delijn.be/stops/101747", "https://data.delijn.be/stops/106371"], ["https://data.delijn.be/stops/206349", "https://data.delijn.be/stops/207689"], ["https://data.delijn.be/stops/304562", "https://data.delijn.be/stops/304640"], ["https://data.delijn.be/stops/505385", "https://data.delijn.be/stops/508009"], ["https://data.delijn.be/stops/400609", "https://data.delijn.be/stops/400617"], ["https://data.delijn.be/stops/408944", "https://data.delijn.be/stops/408970"], ["https://data.delijn.be/stops/503998", "https://data.delijn.be/stops/508917"], ["https://data.delijn.be/stops/204764", "https://data.delijn.be/stops/205764"], ["https://data.delijn.be/stops/500953", "https://data.delijn.be/stops/503627"], ["https://data.delijn.be/stops/509135", "https://data.delijn.be/stops/509653"], ["https://data.delijn.be/stops/302084", "https://data.delijn.be/stops/302251"], ["https://data.delijn.be/stops/409064", "https://data.delijn.be/stops/409120"], ["https://data.delijn.be/stops/302562", "https://data.delijn.be/stops/302573"], ["https://data.delijn.be/stops/501536", "https://data.delijn.be/stops/501537"], ["https://data.delijn.be/stops/201574", "https://data.delijn.be/stops/203194"], ["https://data.delijn.be/stops/405730", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/206515", "https://data.delijn.be/stops/207662"], ["https://data.delijn.be/stops/207275", "https://data.delijn.be/stops/207962"], ["https://data.delijn.be/stops/208700", "https://data.delijn.be/stops/208701"], ["https://data.delijn.be/stops/410135", "https://data.delijn.be/stops/410137"], ["https://data.delijn.be/stops/300270", "https://data.delijn.be/stops/302147"], ["https://data.delijn.be/stops/302734", "https://data.delijn.be/stops/302773"], ["https://data.delijn.be/stops/104412", "https://data.delijn.be/stops/104416"], ["https://data.delijn.be/stops/208562", "https://data.delijn.be/stops/209562"], ["https://data.delijn.be/stops/408180", "https://data.delijn.be/stops/408439"], ["https://data.delijn.be/stops/404764", "https://data.delijn.be/stops/404765"], ["https://data.delijn.be/stops/304998", "https://data.delijn.be/stops/305009"], ["https://data.delijn.be/stops/504699", "https://data.delijn.be/stops/509575"], ["https://data.delijn.be/stops/305228", "https://data.delijn.be/stops/305229"], ["https://data.delijn.be/stops/201072", "https://data.delijn.be/stops/211047"], ["https://data.delijn.be/stops/203715", "https://data.delijn.be/stops/203716"], ["https://data.delijn.be/stops/304262", "https://data.delijn.be/stops/304275"], ["https://data.delijn.be/stops/303569", "https://data.delijn.be/stops/303571"], ["https://data.delijn.be/stops/101920", "https://data.delijn.be/stops/103845"], ["https://data.delijn.be/stops/501223", "https://data.delijn.be/stops/506219"], ["https://data.delijn.be/stops/408580", "https://data.delijn.be/stops/408777"], ["https://data.delijn.be/stops/204306", "https://data.delijn.be/stops/205306"], ["https://data.delijn.be/stops/308876", "https://data.delijn.be/stops/308878"], ["https://data.delijn.be/stops/202034", "https://data.delijn.be/stops/203034"], ["https://data.delijn.be/stops/502820", "https://data.delijn.be/stops/507456"], ["https://data.delijn.be/stops/401474", "https://data.delijn.be/stops/410146"], ["https://data.delijn.be/stops/205981", "https://data.delijn.be/stops/208661"], ["https://data.delijn.be/stops/304878", "https://data.delijn.be/stops/304880"], ["https://data.delijn.be/stops/405565", "https://data.delijn.be/stops/405566"], ["https://data.delijn.be/stops/301703", "https://data.delijn.be/stops/305305"], ["https://data.delijn.be/stops/108566", "https://data.delijn.be/stops/108571"], ["https://data.delijn.be/stops/501694", "https://data.delijn.be/stops/502531"], ["https://data.delijn.be/stops/202772", "https://data.delijn.be/stops/203771"], ["https://data.delijn.be/stops/200632", "https://data.delijn.be/stops/202909"], ["https://data.delijn.be/stops/104139", "https://data.delijn.be/stops/109575"], ["https://data.delijn.be/stops/302426", "https://data.delijn.be/stops/302427"], ["https://data.delijn.be/stops/504993", "https://data.delijn.be/stops/507719"], ["https://data.delijn.be/stops/402006", "https://data.delijn.be/stops/405144"], ["https://data.delijn.be/stops/300380", "https://data.delijn.be/stops/300468"], ["https://data.delijn.be/stops/504096", "https://data.delijn.be/stops/505288"], ["https://data.delijn.be/stops/408664", "https://data.delijn.be/stops/410191"], ["https://data.delijn.be/stops/305377", "https://data.delijn.be/stops/305406"], ["https://data.delijn.be/stops/406960", "https://data.delijn.be/stops/406961"], ["https://data.delijn.be/stops/304349", "https://data.delijn.be/stops/304350"], ["https://data.delijn.be/stops/509843", "https://data.delijn.be/stops/509846"], ["https://data.delijn.be/stops/508920", "https://data.delijn.be/stops/508929"], ["https://data.delijn.be/stops/408628", "https://data.delijn.be/stops/408629"], ["https://data.delijn.be/stops/509452", "https://data.delijn.be/stops/509455"], ["https://data.delijn.be/stops/301451", "https://data.delijn.be/stops/301469"], ["https://data.delijn.be/stops/201608", "https://data.delijn.be/stops/202779"], ["https://data.delijn.be/stops/102308", "https://data.delijn.be/stops/102309"], ["https://data.delijn.be/stops/504526", "https://data.delijn.be/stops/509523"], ["https://data.delijn.be/stops/503925", "https://data.delijn.be/stops/505251"], ["https://data.delijn.be/stops/105564", "https://data.delijn.be/stops/105568"], ["https://data.delijn.be/stops/102182", "https://data.delijn.be/stops/102733"], ["https://data.delijn.be/stops/300478", "https://data.delijn.be/stops/300494"], ["https://data.delijn.be/stops/104553", "https://data.delijn.be/stops/104554"], ["https://data.delijn.be/stops/101873", "https://data.delijn.be/stops/106877"], ["https://data.delijn.be/stops/103140", "https://data.delijn.be/stops/106516"], ["https://data.delijn.be/stops/200190", "https://data.delijn.be/stops/201402"], ["https://data.delijn.be/stops/203510", "https://data.delijn.be/stops/203607"], ["https://data.delijn.be/stops/200390", "https://data.delijn.be/stops/200394"], ["https://data.delijn.be/stops/503841", "https://data.delijn.be/stops/503856"], ["https://data.delijn.be/stops/307546", "https://data.delijn.be/stops/307578"], ["https://data.delijn.be/stops/206121", "https://data.delijn.be/stops/206122"], ["https://data.delijn.be/stops/503276", "https://data.delijn.be/stops/508281"], ["https://data.delijn.be/stops/300374", "https://data.delijn.be/stops/300381"], ["https://data.delijn.be/stops/404533", "https://data.delijn.be/stops/404567"], ["https://data.delijn.be/stops/501547", "https://data.delijn.be/stops/505398"], ["https://data.delijn.be/stops/304637", "https://data.delijn.be/stops/304658"], ["https://data.delijn.be/stops/302272", "https://data.delijn.be/stops/303436"], ["https://data.delijn.be/stops/108937", "https://data.delijn.be/stops/109221"], ["https://data.delijn.be/stops/400932", "https://data.delijn.be/stops/402834"], ["https://data.delijn.be/stops/505551", "https://data.delijn.be/stops/505553"], ["https://data.delijn.be/stops/303030", "https://data.delijn.be/stops/307145"], ["https://data.delijn.be/stops/104803", "https://data.delijn.be/stops/108972"], ["https://data.delijn.be/stops/504519", "https://data.delijn.be/stops/504521"], ["https://data.delijn.be/stops/505636", "https://data.delijn.be/stops/508337"], ["https://data.delijn.be/stops/404900", "https://data.delijn.be/stops/404901"], ["https://data.delijn.be/stops/104031", "https://data.delijn.be/stops/104034"], ["https://data.delijn.be/stops/508603", "https://data.delijn.be/stops/508605"], ["https://data.delijn.be/stops/505781", "https://data.delijn.be/stops/506459"], ["https://data.delijn.be/stops/205029", "https://data.delijn.be/stops/205437"], ["https://data.delijn.be/stops/400161", "https://data.delijn.be/stops/409173"], ["https://data.delijn.be/stops/302078", "https://data.delijn.be/stops/302079"], ["https://data.delijn.be/stops/206141", "https://data.delijn.be/stops/207141"], ["https://data.delijn.be/stops/404944", "https://data.delijn.be/stops/404965"], ["https://data.delijn.be/stops/406575", "https://data.delijn.be/stops/406589"], ["https://data.delijn.be/stops/202952", "https://data.delijn.be/stops/203439"], ["https://data.delijn.be/stops/101170", "https://data.delijn.be/stops/101770"], ["https://data.delijn.be/stops/502114", "https://data.delijn.be/stops/502147"], ["https://data.delijn.be/stops/200218", "https://data.delijn.be/stops/201218"], ["https://data.delijn.be/stops/404908", "https://data.delijn.be/stops/404909"], ["https://data.delijn.be/stops/302174", "https://data.delijn.be/stops/302175"], ["https://data.delijn.be/stops/204319", "https://data.delijn.be/stops/204320"], ["https://data.delijn.be/stops/405088", "https://data.delijn.be/stops/405089"], ["https://data.delijn.be/stops/104514", "https://data.delijn.be/stops/107797"], ["https://data.delijn.be/stops/401124", "https://data.delijn.be/stops/402830"], ["https://data.delijn.be/stops/200489", "https://data.delijn.be/stops/201488"], ["https://data.delijn.be/stops/401415", "https://data.delijn.be/stops/307498"], ["https://data.delijn.be/stops/502536", "https://data.delijn.be/stops/507741"], ["https://data.delijn.be/stops/406101", "https://data.delijn.be/stops/406113"], ["https://data.delijn.be/stops/200437", "https://data.delijn.be/stops/201408"], ["https://data.delijn.be/stops/208449", "https://data.delijn.be/stops/208520"], ["https://data.delijn.be/stops/504338", "https://data.delijn.be/stops/504340"], ["https://data.delijn.be/stops/503855", "https://data.delijn.be/stops/508858"], ["https://data.delijn.be/stops/206397", "https://data.delijn.be/stops/207397"], ["https://data.delijn.be/stops/502946", "https://data.delijn.be/stops/508586"], ["https://data.delijn.be/stops/402670", "https://data.delijn.be/stops/402732"], ["https://data.delijn.be/stops/303830", "https://data.delijn.be/stops/305420"], ["https://data.delijn.be/stops/302913", "https://data.delijn.be/stops/304184"], ["https://data.delijn.be/stops/505424", "https://data.delijn.be/stops/509081"], ["https://data.delijn.be/stops/503093", "https://data.delijn.be/stops/508093"], ["https://data.delijn.be/stops/408092", "https://data.delijn.be/stops/408159"], ["https://data.delijn.be/stops/405231", "https://data.delijn.be/stops/409375"], ["https://data.delijn.be/stops/207680", "https://data.delijn.be/stops/209155"], ["https://data.delijn.be/stops/109162", "https://data.delijn.be/stops/109163"], ["https://data.delijn.be/stops/102445", "https://data.delijn.be/stops/107695"], ["https://data.delijn.be/stops/210035", "https://data.delijn.be/stops/210036"], ["https://data.delijn.be/stops/200159", "https://data.delijn.be/stops/200536"], ["https://data.delijn.be/stops/107708", "https://data.delijn.be/stops/109672"], ["https://data.delijn.be/stops/408576", "https://data.delijn.be/stops/408761"], ["https://data.delijn.be/stops/302255", "https://data.delijn.be/stops/302260"], ["https://data.delijn.be/stops/208336", "https://data.delijn.be/stops/209335"], ["https://data.delijn.be/stops/409052", "https://data.delijn.be/stops/409053"], ["https://data.delijn.be/stops/102188", "https://data.delijn.be/stops/102189"], ["https://data.delijn.be/stops/101502", "https://data.delijn.be/stops/101503"], ["https://data.delijn.be/stops/201843", "https://data.delijn.be/stops/202198"], ["https://data.delijn.be/stops/507946", "https://data.delijn.be/stops/507947"], ["https://data.delijn.be/stops/504142", "https://data.delijn.be/stops/509142"], ["https://data.delijn.be/stops/402468", "https://data.delijn.be/stops/410076"], ["https://data.delijn.be/stops/300260", "https://data.delijn.be/stops/307497"], ["https://data.delijn.be/stops/505257", "https://data.delijn.be/stops/508673"], ["https://data.delijn.be/stops/200179", "https://data.delijn.be/stops/200988"], ["https://data.delijn.be/stops/403038", "https://data.delijn.be/stops/410212"], ["https://data.delijn.be/stops/408919", "https://data.delijn.be/stops/408922"], ["https://data.delijn.be/stops/301661", "https://data.delijn.be/stops/301663"], ["https://data.delijn.be/stops/504397", "https://data.delijn.be/stops/509397"], ["https://data.delijn.be/stops/104275", "https://data.delijn.be/stops/105380"], ["https://data.delijn.be/stops/502185", "https://data.delijn.be/stops/507184"], ["https://data.delijn.be/stops/400701", "https://data.delijn.be/stops/400898"], ["https://data.delijn.be/stops/101701", "https://data.delijn.be/stops/102698"], ["https://data.delijn.be/stops/301743", "https://data.delijn.be/stops/305395"], ["https://data.delijn.be/stops/202266", "https://data.delijn.be/stops/203267"], ["https://data.delijn.be/stops/207883", "https://data.delijn.be/stops/207884"], ["https://data.delijn.be/stops/408719", "https://data.delijn.be/stops/408727"], ["https://data.delijn.be/stops/505943", "https://data.delijn.be/stops/508220"], ["https://data.delijn.be/stops/105803", "https://data.delijn.be/stops/305789"], ["https://data.delijn.be/stops/306608", "https://data.delijn.be/stops/306611"], ["https://data.delijn.be/stops/507227", "https://data.delijn.be/stops/507822"], ["https://data.delijn.be/stops/305669", "https://data.delijn.be/stops/305740"], ["https://data.delijn.be/stops/200764", "https://data.delijn.be/stops/208375"], ["https://data.delijn.be/stops/206979", "https://data.delijn.be/stops/207978"], ["https://data.delijn.be/stops/303959", "https://data.delijn.be/stops/303963"], ["https://data.delijn.be/stops/208746", "https://data.delijn.be/stops/209418"], ["https://data.delijn.be/stops/408099", "https://data.delijn.be/stops/408160"], ["https://data.delijn.be/stops/305344", "https://data.delijn.be/stops/305346"], ["https://data.delijn.be/stops/502330", "https://data.delijn.be/stops/505560"], ["https://data.delijn.be/stops/503728", "https://data.delijn.be/stops/504961"], ["https://data.delijn.be/stops/408332", "https://data.delijn.be/stops/408333"], ["https://data.delijn.be/stops/301775", "https://data.delijn.be/stops/301776"], ["https://data.delijn.be/stops/503849", "https://data.delijn.be/stops/505226"], ["https://data.delijn.be/stops/200982", "https://data.delijn.be/stops/210097"], ["https://data.delijn.be/stops/101186", "https://data.delijn.be/stops/101187"], ["https://data.delijn.be/stops/109259", "https://data.delijn.be/stops/109261"], ["https://data.delijn.be/stops/404988", "https://data.delijn.be/stops/406748"], ["https://data.delijn.be/stops/201089", "https://data.delijn.be/stops/202947"], ["https://data.delijn.be/stops/201364", "https://data.delijn.be/stops/201985"], ["https://data.delijn.be/stops/303194", "https://data.delijn.be/stops/303213"], ["https://data.delijn.be/stops/102584", "https://data.delijn.be/stops/109109"], ["https://data.delijn.be/stops/101815", "https://data.delijn.be/stops/105455"], ["https://data.delijn.be/stops/305178", "https://data.delijn.be/stops/307091"], ["https://data.delijn.be/stops/300647", "https://data.delijn.be/stops/300654"], ["https://data.delijn.be/stops/403500", "https://data.delijn.be/stops/403528"], ["https://data.delijn.be/stops/103263", "https://data.delijn.be/stops/204631"], ["https://data.delijn.be/stops/301633", "https://data.delijn.be/stops/306155"], ["https://data.delijn.be/stops/102715", "https://data.delijn.be/stops/102720"], ["https://data.delijn.be/stops/400092", "https://data.delijn.be/stops/409144"], ["https://data.delijn.be/stops/105626", "https://data.delijn.be/stops/109880"], ["https://data.delijn.be/stops/509282", "https://data.delijn.be/stops/509343"], ["https://data.delijn.be/stops/102594", "https://data.delijn.be/stops/102599"], ["https://data.delijn.be/stops/405412", "https://data.delijn.be/stops/303284"], ["https://data.delijn.be/stops/303815", "https://data.delijn.be/stops/303823"], ["https://data.delijn.be/stops/503074", "https://data.delijn.be/stops/508070"], ["https://data.delijn.be/stops/102012", "https://data.delijn.be/stops/205643"], ["https://data.delijn.be/stops/503169", "https://data.delijn.be/stops/508169"], ["https://data.delijn.be/stops/101223", "https://data.delijn.be/stops/102653"], ["https://data.delijn.be/stops/301469", "https://data.delijn.be/stops/306307"], ["https://data.delijn.be/stops/200003", "https://data.delijn.be/stops/200994"], ["https://data.delijn.be/stops/505735", "https://data.delijn.be/stops/507548"], ["https://data.delijn.be/stops/505098", "https://data.delijn.be/stops/508589"], ["https://data.delijn.be/stops/406417", "https://data.delijn.be/stops/406518"], ["https://data.delijn.be/stops/302584", "https://data.delijn.be/stops/302599"], ["https://data.delijn.be/stops/211019", "https://data.delijn.be/stops/503578"], ["https://data.delijn.be/stops/300128", "https://data.delijn.be/stops/300134"], ["https://data.delijn.be/stops/402800", "https://data.delijn.be/stops/402811"], ["https://data.delijn.be/stops/200777", "https://data.delijn.be/stops/208307"], ["https://data.delijn.be/stops/106707", "https://data.delijn.be/stops/106708"], ["https://data.delijn.be/stops/102423", "https://data.delijn.be/stops/102899"], ["https://data.delijn.be/stops/209654", "https://data.delijn.be/stops/211068"], ["https://data.delijn.be/stops/406748", "https://data.delijn.be/stops/409485"], ["https://data.delijn.be/stops/504433", "https://data.delijn.be/stops/505785"], ["https://data.delijn.be/stops/108203", "https://data.delijn.be/stops/108207"], ["https://data.delijn.be/stops/503525", "https://data.delijn.be/stops/503529"], ["https://data.delijn.be/stops/109786", "https://data.delijn.be/stops/109790"], ["https://data.delijn.be/stops/408310", "https://data.delijn.be/stops/408378"], ["https://data.delijn.be/stops/502736", "https://data.delijn.be/stops/507821"], ["https://data.delijn.be/stops/408497", "https://data.delijn.be/stops/408772"], ["https://data.delijn.be/stops/503272", "https://data.delijn.be/stops/503273"], ["https://data.delijn.be/stops/302664", "https://data.delijn.be/stops/302665"], ["https://data.delijn.be/stops/205976", "https://data.delijn.be/stops/218022"], ["https://data.delijn.be/stops/308264", "https://data.delijn.be/stops/308268"], ["https://data.delijn.be/stops/401074", "https://data.delijn.be/stops/401077"], ["https://data.delijn.be/stops/403830", "https://data.delijn.be/stops/403845"], ["https://data.delijn.be/stops/105684", "https://data.delijn.be/stops/105686"], ["https://data.delijn.be/stops/306344", "https://data.delijn.be/stops/306346"], ["https://data.delijn.be/stops/301146", "https://data.delijn.be/stops/301154"], ["https://data.delijn.be/stops/205116", "https://data.delijn.be/stops/205118"], ["https://data.delijn.be/stops/204822", "https://data.delijn.be/stops/205508"], ["https://data.delijn.be/stops/206896", "https://data.delijn.be/stops/207895"], ["https://data.delijn.be/stops/300208", "https://data.delijn.be/stops/300232"], ["https://data.delijn.be/stops/500010", "https://data.delijn.be/stops/505560"], ["https://data.delijn.be/stops/300905", "https://data.delijn.be/stops/308819"], ["https://data.delijn.be/stops/103484", "https://data.delijn.be/stops/109161"], ["https://data.delijn.be/stops/206765", "https://data.delijn.be/stops/209617"], ["https://data.delijn.be/stops/302323", "https://data.delijn.be/stops/302331"], ["https://data.delijn.be/stops/204396", "https://data.delijn.be/stops/205768"], ["https://data.delijn.be/stops/202948", "https://data.delijn.be/stops/203948"], ["https://data.delijn.be/stops/302600", "https://data.delijn.be/stops/302612"], ["https://data.delijn.be/stops/402807", "https://data.delijn.be/stops/405813"], ["https://data.delijn.be/stops/102301", "https://data.delijn.be/stops/102302"], ["https://data.delijn.be/stops/510028", "https://data.delijn.be/stops/510030"], ["https://data.delijn.be/stops/408514", "https://data.delijn.be/stops/408577"], ["https://data.delijn.be/stops/502063", "https://data.delijn.be/stops/502068"], ["https://data.delijn.be/stops/306620", "https://data.delijn.be/stops/306621"], ["https://data.delijn.be/stops/109068", "https://data.delijn.be/stops/306859"], ["https://data.delijn.be/stops/301718", "https://data.delijn.be/stops/308429"], ["https://data.delijn.be/stops/301336", "https://data.delijn.be/stops/301337"], ["https://data.delijn.be/stops/406035", "https://data.delijn.be/stops/406128"], ["https://data.delijn.be/stops/202156", "https://data.delijn.be/stops/205068"], ["https://data.delijn.be/stops/204365", "https://data.delijn.be/stops/205213"], ["https://data.delijn.be/stops/403702", "https://data.delijn.be/stops/403716"], ["https://data.delijn.be/stops/403057", "https://data.delijn.be/stops/403315"], ["https://data.delijn.be/stops/508048", "https://data.delijn.be/stops/508049"], ["https://data.delijn.be/stops/104137", "https://data.delijn.be/stops/108414"], ["https://data.delijn.be/stops/207461", "https://data.delijn.be/stops/207489"], ["https://data.delijn.be/stops/301428", "https://data.delijn.be/stops/307316"], ["https://data.delijn.be/stops/501382", "https://data.delijn.be/stops/501394"], ["https://data.delijn.be/stops/101272", "https://data.delijn.be/stops/101276"], ["https://data.delijn.be/stops/302235", "https://data.delijn.be/stops/302248"], ["https://data.delijn.be/stops/305537", "https://data.delijn.be/stops/307044"], ["https://data.delijn.be/stops/400828", "https://data.delijn.be/stops/403574"], ["https://data.delijn.be/stops/300181", "https://data.delijn.be/stops/307131"], ["https://data.delijn.be/stops/109987", "https://data.delijn.be/stops/406814"], ["https://data.delijn.be/stops/503400", "https://data.delijn.be/stops/508370"], ["https://data.delijn.be/stops/401910", "https://data.delijn.be/stops/409511"], ["https://data.delijn.be/stops/101073", "https://data.delijn.be/stops/105964"], ["https://data.delijn.be/stops/405861", "https://data.delijn.be/stops/409742"], ["https://data.delijn.be/stops/200308", "https://data.delijn.be/stops/210090"], ["https://data.delijn.be/stops/401207", "https://data.delijn.be/stops/401347"], ["https://data.delijn.be/stops/200725", "https://data.delijn.be/stops/202610"], ["https://data.delijn.be/stops/405854", "https://data.delijn.be/stops/405855"], ["https://data.delijn.be/stops/300813", "https://data.delijn.be/stops/300830"], ["https://data.delijn.be/stops/303758", "https://data.delijn.be/stops/303784"], ["https://data.delijn.be/stops/501206", "https://data.delijn.be/stops/506206"], ["https://data.delijn.be/stops/305213", "https://data.delijn.be/stops/306881"], ["https://data.delijn.be/stops/301345", "https://data.delijn.be/stops/304677"], ["https://data.delijn.be/stops/502739", "https://data.delijn.be/stops/506439"], ["https://data.delijn.be/stops/104853", "https://data.delijn.be/stops/107891"], ["https://data.delijn.be/stops/105599", "https://data.delijn.be/stops/109606"], ["https://data.delijn.be/stops/401573", "https://data.delijn.be/stops/402178"], ["https://data.delijn.be/stops/204774", "https://data.delijn.be/stops/205594"], ["https://data.delijn.be/stops/200566", "https://data.delijn.be/stops/201666"], ["https://data.delijn.be/stops/204767", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/208079", "https://data.delijn.be/stops/209634"], ["https://data.delijn.be/stops/502327", "https://data.delijn.be/stops/505338"], ["https://data.delijn.be/stops/300553", "https://data.delijn.be/stops/300563"], ["https://data.delijn.be/stops/403822", "https://data.delijn.be/stops/408440"], ["https://data.delijn.be/stops/405024", "https://data.delijn.be/stops/405607"], ["https://data.delijn.be/stops/303987", "https://data.delijn.be/stops/307014"], ["https://data.delijn.be/stops/101385", "https://data.delijn.be/stops/102565"], ["https://data.delijn.be/stops/408838", "https://data.delijn.be/stops/408839"], ["https://data.delijn.be/stops/302783", "https://data.delijn.be/stops/307046"], ["https://data.delijn.be/stops/406502", "https://data.delijn.be/stops/406504"], ["https://data.delijn.be/stops/305523", "https://data.delijn.be/stops/308358"], ["https://data.delijn.be/stops/508090", "https://data.delijn.be/stops/508107"], ["https://data.delijn.be/stops/400042", "https://data.delijn.be/stops/400043"], ["https://data.delijn.be/stops/505842", "https://data.delijn.be/stops/509244"], ["https://data.delijn.be/stops/201875", "https://data.delijn.be/stops/203020"], ["https://data.delijn.be/stops/304235", "https://data.delijn.be/stops/304805"], ["https://data.delijn.be/stops/208699", "https://data.delijn.be/stops/208709"], ["https://data.delijn.be/stops/204446", "https://data.delijn.be/stops/205335"], ["https://data.delijn.be/stops/509166", "https://data.delijn.be/stops/509196"], ["https://data.delijn.be/stops/402515", "https://data.delijn.be/stops/402519"], ["https://data.delijn.be/stops/305833", "https://data.delijn.be/stops/305834"], ["https://data.delijn.be/stops/400201", "https://data.delijn.be/stops/400211"], ["https://data.delijn.be/stops/306620", "https://data.delijn.be/stops/306761"], ["https://data.delijn.be/stops/202280", "https://data.delijn.be/stops/203280"], ["https://data.delijn.be/stops/503584", "https://data.delijn.be/stops/504774"], ["https://data.delijn.be/stops/104335", "https://data.delijn.be/stops/105351"], ["https://data.delijn.be/stops/300767", "https://data.delijn.be/stops/301067"], ["https://data.delijn.be/stops/101048", "https://data.delijn.be/stops/204608"], ["https://data.delijn.be/stops/308615", "https://data.delijn.be/stops/308616"], ["https://data.delijn.be/stops/202986", "https://data.delijn.be/stops/202987"], ["https://data.delijn.be/stops/204083", "https://data.delijn.be/stops/205201"], ["https://data.delijn.be/stops/106673", "https://data.delijn.be/stops/106675"], ["https://data.delijn.be/stops/504614", "https://data.delijn.be/stops/509613"], ["https://data.delijn.be/stops/108259", "https://data.delijn.be/stops/109338"], ["https://data.delijn.be/stops/403321", "https://data.delijn.be/stops/403906"], ["https://data.delijn.be/stops/404985", "https://data.delijn.be/stops/408647"], ["https://data.delijn.be/stops/208331", "https://data.delijn.be/stops/209715"], ["https://data.delijn.be/stops/408204", "https://data.delijn.be/stops/408205"], ["https://data.delijn.be/stops/204168", "https://data.delijn.be/stops/205168"], ["https://data.delijn.be/stops/403595", "https://data.delijn.be/stops/404319"], ["https://data.delijn.be/stops/201562", "https://data.delijn.be/stops/201563"], ["https://data.delijn.be/stops/400801", "https://data.delijn.be/stops/400856"], ["https://data.delijn.be/stops/204912", "https://data.delijn.be/stops/204913"], ["https://data.delijn.be/stops/302384", "https://data.delijn.be/stops/302672"], ["https://data.delijn.be/stops/407824", "https://data.delijn.be/stops/407921"], ["https://data.delijn.be/stops/402377", "https://data.delijn.be/stops/405568"], ["https://data.delijn.be/stops/303047", "https://data.delijn.be/stops/305504"], ["https://data.delijn.be/stops/209314", "https://data.delijn.be/stops/209788"], ["https://data.delijn.be/stops/104007", "https://data.delijn.be/stops/104021"], ["https://data.delijn.be/stops/301141", "https://data.delijn.be/stops/302954"], ["https://data.delijn.be/stops/300790", "https://data.delijn.be/stops/300792"], ["https://data.delijn.be/stops/503053", "https://data.delijn.be/stops/503056"], ["https://data.delijn.be/stops/106023", "https://data.delijn.be/stops/106133"], ["https://data.delijn.be/stops/200351", "https://data.delijn.be/stops/202650"], ["https://data.delijn.be/stops/101025", "https://data.delijn.be/stops/104946"], ["https://data.delijn.be/stops/405226", "https://data.delijn.be/stops/405227"], ["https://data.delijn.be/stops/206474", "https://data.delijn.be/stops/207475"], ["https://data.delijn.be/stops/201902", "https://data.delijn.be/stops/201921"], ["https://data.delijn.be/stops/202644", "https://data.delijn.be/stops/203644"], ["https://data.delijn.be/stops/108733", "https://data.delijn.be/stops/108734"], ["https://data.delijn.be/stops/209070", "https://data.delijn.be/stops/209087"], ["https://data.delijn.be/stops/404131", "https://data.delijn.be/stops/404189"], ["https://data.delijn.be/stops/403601", "https://data.delijn.be/stops/407514"], ["https://data.delijn.be/stops/402534", "https://data.delijn.be/stops/405029"], ["https://data.delijn.be/stops/301582", "https://data.delijn.be/stops/301583"], ["https://data.delijn.be/stops/204298", "https://data.delijn.be/stops/204352"], ["https://data.delijn.be/stops/107025", "https://data.delijn.be/stops/107026"], ["https://data.delijn.be/stops/505993", "https://data.delijn.be/stops/508825"], ["https://data.delijn.be/stops/305000", "https://data.delijn.be/stops/305002"], ["https://data.delijn.be/stops/106802", "https://data.delijn.be/stops/106871"], ["https://data.delijn.be/stops/404508", "https://data.delijn.be/stops/406753"], ["https://data.delijn.be/stops/503114", "https://data.delijn.be/stops/505373"], ["https://data.delijn.be/stops/201617", "https://data.delijn.be/stops/203921"], ["https://data.delijn.be/stops/104340", "https://data.delijn.be/stops/105351"], ["https://data.delijn.be/stops/501546", "https://data.delijn.be/stops/506326"], ["https://data.delijn.be/stops/202688", "https://data.delijn.be/stops/203038"], ["https://data.delijn.be/stops/107972", "https://data.delijn.be/stops/107973"], ["https://data.delijn.be/stops/108757", "https://data.delijn.be/stops/108797"], ["https://data.delijn.be/stops/302404", "https://data.delijn.be/stops/306117"], ["https://data.delijn.be/stops/506086", "https://data.delijn.be/stops/507739"], ["https://data.delijn.be/stops/206743", "https://data.delijn.be/stops/207743"], ["https://data.delijn.be/stops/200028", "https://data.delijn.be/stops/201028"], ["https://data.delijn.be/stops/106086", "https://data.delijn.be/stops/106090"], ["https://data.delijn.be/stops/402177", "https://data.delijn.be/stops/402298"], ["https://data.delijn.be/stops/409231", "https://data.delijn.be/stops/409234"], ["https://data.delijn.be/stops/502637", "https://data.delijn.be/stops/507569"], ["https://data.delijn.be/stops/400761", "https://data.delijn.be/stops/400847"], ["https://data.delijn.be/stops/508604", "https://data.delijn.be/stops/508616"], ["https://data.delijn.be/stops/105493", "https://data.delijn.be/stops/105503"], ["https://data.delijn.be/stops/404253", "https://data.delijn.be/stops/404254"], ["https://data.delijn.be/stops/300634", "https://data.delijn.be/stops/306627"], ["https://data.delijn.be/stops/405224", "https://data.delijn.be/stops/405226"], ["https://data.delijn.be/stops/106909", "https://data.delijn.be/stops/107252"], ["https://data.delijn.be/stops/209109", "https://data.delijn.be/stops/209455"], ["https://data.delijn.be/stops/102022", "https://data.delijn.be/stops/109962"], ["https://data.delijn.be/stops/400405", "https://data.delijn.be/stops/400406"], ["https://data.delijn.be/stops/102440", "https://data.delijn.be/stops/108830"], ["https://data.delijn.be/stops/302744", "https://data.delijn.be/stops/305551"], ["https://data.delijn.be/stops/108103", "https://data.delijn.be/stops/108112"], ["https://data.delijn.be/stops/203153", "https://data.delijn.be/stops/203175"], ["https://data.delijn.be/stops/403957", "https://data.delijn.be/stops/407075"], ["https://data.delijn.be/stops/103210", "https://data.delijn.be/stops/106303"], ["https://data.delijn.be/stops/402323", "https://data.delijn.be/stops/405573"], ["https://data.delijn.be/stops/203476", "https://data.delijn.be/stops/210003"], ["https://data.delijn.be/stops/103233", "https://data.delijn.be/stops/107141"], ["https://data.delijn.be/stops/204647", "https://data.delijn.be/stops/205647"], ["https://data.delijn.be/stops/302426", "https://data.delijn.be/stops/302438"], ["https://data.delijn.be/stops/301270", "https://data.delijn.be/stops/307034"], ["https://data.delijn.be/stops/101545", "https://data.delijn.be/stops/103800"], ["https://data.delijn.be/stops/209781", "https://data.delijn.be/stops/209782"], ["https://data.delijn.be/stops/103586", "https://data.delijn.be/stops/104254"], ["https://data.delijn.be/stops/201679", "https://data.delijn.be/stops/201840"], ["https://data.delijn.be/stops/402229", "https://data.delijn.be/stops/402333"], ["https://data.delijn.be/stops/508691", "https://data.delijn.be/stops/508692"], ["https://data.delijn.be/stops/201813", "https://data.delijn.be/stops/209328"], ["https://data.delijn.be/stops/503515", "https://data.delijn.be/stops/508514"], ["https://data.delijn.be/stops/206207", "https://data.delijn.be/stops/206686"], ["https://data.delijn.be/stops/208148", "https://data.delijn.be/stops/209149"], ["https://data.delijn.be/stops/204375", "https://data.delijn.be/stops/205374"], ["https://data.delijn.be/stops/200047", "https://data.delijn.be/stops/201142"], ["https://data.delijn.be/stops/504532", "https://data.delijn.be/stops/504634"], ["https://data.delijn.be/stops/406162", "https://data.delijn.be/stops/407331"], ["https://data.delijn.be/stops/301411", "https://data.delijn.be/stops/301422"], ["https://data.delijn.be/stops/400497", "https://data.delijn.be/stops/406564"], ["https://data.delijn.be/stops/504760", "https://data.delijn.be/stops/504767"], ["https://data.delijn.be/stops/202328", "https://data.delijn.be/stops/205559"], ["https://data.delijn.be/stops/101191", "https://data.delijn.be/stops/204651"], ["https://data.delijn.be/stops/304823", "https://data.delijn.be/stops/304900"], ["https://data.delijn.be/stops/204098", "https://data.delijn.be/stops/204224"], ["https://data.delijn.be/stops/101064", "https://data.delijn.be/stops/106747"], ["https://data.delijn.be/stops/302266", "https://data.delijn.be/stops/306374"], ["https://data.delijn.be/stops/203993", "https://data.delijn.be/stops/211025"], ["https://data.delijn.be/stops/306312", "https://data.delijn.be/stops/307004"], ["https://data.delijn.be/stops/507118", "https://data.delijn.be/stops/507821"], ["https://data.delijn.be/stops/404738", "https://data.delijn.be/stops/404741"], ["https://data.delijn.be/stops/204204", "https://data.delijn.be/stops/205230"], ["https://data.delijn.be/stops/104332", "https://data.delijn.be/stops/108125"], ["https://data.delijn.be/stops/407544", "https://data.delijn.be/stops/407557"], ["https://data.delijn.be/stops/104341", "https://data.delijn.be/stops/104344"], ["https://data.delijn.be/stops/206452", "https://data.delijn.be/stops/207452"], ["https://data.delijn.be/stops/107562", "https://data.delijn.be/stops/107564"], ["https://data.delijn.be/stops/505813", "https://data.delijn.be/stops/505911"], ["https://data.delijn.be/stops/300305", "https://data.delijn.be/stops/306249"], ["https://data.delijn.be/stops/300224", "https://data.delijn.be/stops/307112"], ["https://data.delijn.be/stops/204309", "https://data.delijn.be/stops/204310"], ["https://data.delijn.be/stops/503546", "https://data.delijn.be/stops/508546"], ["https://data.delijn.be/stops/504374", "https://data.delijn.be/stops/509580"], ["https://data.delijn.be/stops/403761", "https://data.delijn.be/stops/403781"], ["https://data.delijn.be/stops/107528", "https://data.delijn.be/stops/107748"], ["https://data.delijn.be/stops/200764", "https://data.delijn.be/stops/209382"], ["https://data.delijn.be/stops/200018", "https://data.delijn.be/stops/201171"], ["https://data.delijn.be/stops/104254", "https://data.delijn.be/stops/104255"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/202190"], ["https://data.delijn.be/stops/108339", "https://data.delijn.be/stops/109299"], ["https://data.delijn.be/stops/304168", "https://data.delijn.be/stops/307538"], ["https://data.delijn.be/stops/408802", "https://data.delijn.be/stops/408810"], ["https://data.delijn.be/stops/505926", "https://data.delijn.be/stops/505960"], ["https://data.delijn.be/stops/501368", "https://data.delijn.be/stops/590413"], ["https://data.delijn.be/stops/204373", "https://data.delijn.be/stops/205373"], ["https://data.delijn.be/stops/202272", "https://data.delijn.be/stops/202276"], ["https://data.delijn.be/stops/201414", "https://data.delijn.be/stops/208888"], ["https://data.delijn.be/stops/302262", "https://data.delijn.be/stops/302951"], ["https://data.delijn.be/stops/300871", "https://data.delijn.be/stops/302234"], ["https://data.delijn.be/stops/407003", "https://data.delijn.be/stops/408196"], ["https://data.delijn.be/stops/301713", "https://data.delijn.be/stops/305302"], ["https://data.delijn.be/stops/303295", "https://data.delijn.be/stops/303298"], ["https://data.delijn.be/stops/300672", "https://data.delijn.be/stops/300680"], ["https://data.delijn.be/stops/503508", "https://data.delijn.be/stops/503512"], ["https://data.delijn.be/stops/206563", "https://data.delijn.be/stops/209126"], ["https://data.delijn.be/stops/405527", "https://data.delijn.be/stops/408131"], ["https://data.delijn.be/stops/401045", "https://data.delijn.be/stops/409817"], ["https://data.delijn.be/stops/204660", "https://data.delijn.be/stops/204661"], ["https://data.delijn.be/stops/303392", "https://data.delijn.be/stops/308794"], ["https://data.delijn.be/stops/202936", "https://data.delijn.be/stops/203935"], ["https://data.delijn.be/stops/304925", "https://data.delijn.be/stops/306101"], ["https://data.delijn.be/stops/104461", "https://data.delijn.be/stops/104464"], ["https://data.delijn.be/stops/101617", "https://data.delijn.be/stops/102934"], ["https://data.delijn.be/stops/202499", "https://data.delijn.be/stops/203498"], ["https://data.delijn.be/stops/402386", "https://data.delijn.be/stops/402490"], ["https://data.delijn.be/stops/102693", "https://data.delijn.be/stops/102885"], ["https://data.delijn.be/stops/405678", "https://data.delijn.be/stops/408392"], ["https://data.delijn.be/stops/501501", "https://data.delijn.be/stops/506356"], ["https://data.delijn.be/stops/104887", "https://data.delijn.be/stops/104889"], ["https://data.delijn.be/stops/502107", "https://data.delijn.be/stops/502126"], ["https://data.delijn.be/stops/403192", "https://data.delijn.be/stops/407580"], ["https://data.delijn.be/stops/105102", "https://data.delijn.be/stops/109504"], ["https://data.delijn.be/stops/300398", "https://data.delijn.be/stops/307490"], ["https://data.delijn.be/stops/108713", "https://data.delijn.be/stops/108715"], ["https://data.delijn.be/stops/204505", "https://data.delijn.be/stops/205505"], ["https://data.delijn.be/stops/203535", "https://data.delijn.be/stops/203964"], ["https://data.delijn.be/stops/304561", "https://data.delijn.be/stops/304665"], ["https://data.delijn.be/stops/504737", "https://data.delijn.be/stops/505411"], ["https://data.delijn.be/stops/400228", "https://data.delijn.be/stops/400229"], ["https://data.delijn.be/stops/403932", "https://data.delijn.be/stops/403933"], ["https://data.delijn.be/stops/503609", "https://data.delijn.be/stops/503610"], ["https://data.delijn.be/stops/501046", "https://data.delijn.be/stops/505029"], ["https://data.delijn.be/stops/200392", "https://data.delijn.be/stops/201390"], ["https://data.delijn.be/stops/304132", "https://data.delijn.be/stops/304163"], ["https://data.delijn.be/stops/508715", "https://data.delijn.be/stops/509970"], ["https://data.delijn.be/stops/103162", "https://data.delijn.be/stops/103163"], ["https://data.delijn.be/stops/301320", "https://data.delijn.be/stops/301322"], ["https://data.delijn.be/stops/106400", "https://data.delijn.be/stops/106402"], ["https://data.delijn.be/stops/208199", "https://data.delijn.be/stops/208814"], ["https://data.delijn.be/stops/104856", "https://data.delijn.be/stops/104857"], ["https://data.delijn.be/stops/201569", "https://data.delijn.be/stops/202193"], ["https://data.delijn.be/stops/202014", "https://data.delijn.be/stops/203013"], ["https://data.delijn.be/stops/400558", "https://data.delijn.be/stops/407042"], ["https://data.delijn.be/stops/502189", "https://data.delijn.be/stops/505053"], ["https://data.delijn.be/stops/102752", "https://data.delijn.be/stops/103701"], ["https://data.delijn.be/stops/202154", "https://data.delijn.be/stops/202175"], ["https://data.delijn.be/stops/206022", "https://data.delijn.be/stops/206075"], ["https://data.delijn.be/stops/106273", "https://data.delijn.be/stops/106274"], ["https://data.delijn.be/stops/200730", "https://data.delijn.be/stops/202614"], ["https://data.delijn.be/stops/404306", "https://data.delijn.be/stops/404307"], ["https://data.delijn.be/stops/301194", "https://data.delijn.be/stops/308257"], ["https://data.delijn.be/stops/101546", "https://data.delijn.be/stops/101898"], ["https://data.delijn.be/stops/405624", "https://data.delijn.be/stops/409258"], ["https://data.delijn.be/stops/204726", "https://data.delijn.be/stops/205725"], ["https://data.delijn.be/stops/103712", "https://data.delijn.be/stops/104050"], ["https://data.delijn.be/stops/104703", "https://data.delijn.be/stops/107084"], ["https://data.delijn.be/stops/403588", "https://data.delijn.be/stops/403664"], ["https://data.delijn.be/stops/501080", "https://data.delijn.be/stops/501082"], ["https://data.delijn.be/stops/203429", "https://data.delijn.be/stops/205939"], ["https://data.delijn.be/stops/207373", "https://data.delijn.be/stops/215809"], ["https://data.delijn.be/stops/508213", "https://data.delijn.be/stops/509746"], ["https://data.delijn.be/stops/104720", "https://data.delijn.be/stops/105235"], ["https://data.delijn.be/stops/304012", "https://data.delijn.be/stops/307814"], ["https://data.delijn.be/stops/102715", "https://data.delijn.be/stops/103363"], ["https://data.delijn.be/stops/405637", "https://data.delijn.be/stops/405641"], ["https://data.delijn.be/stops/307553", "https://data.delijn.be/stops/307555"], ["https://data.delijn.be/stops/405434", "https://data.delijn.be/stops/409292"], ["https://data.delijn.be/stops/208035", "https://data.delijn.be/stops/209035"], ["https://data.delijn.be/stops/206566", "https://data.delijn.be/stops/207567"], ["https://data.delijn.be/stops/503949", "https://data.delijn.be/stops/508949"], ["https://data.delijn.be/stops/209274", "https://data.delijn.be/stops/209275"], ["https://data.delijn.be/stops/302034", "https://data.delijn.be/stops/308958"], ["https://data.delijn.be/stops/105046", "https://data.delijn.be/stops/109759"], ["https://data.delijn.be/stops/107970", "https://data.delijn.be/stops/107972"], ["https://data.delijn.be/stops/104584", "https://data.delijn.be/stops/107931"], ["https://data.delijn.be/stops/400704", "https://data.delijn.be/stops/400705"], ["https://data.delijn.be/stops/202009", "https://data.delijn.be/stops/203009"], ["https://data.delijn.be/stops/501006", "https://data.delijn.be/stops/506513"], ["https://data.delijn.be/stops/106619", "https://data.delijn.be/stops/106621"], ["https://data.delijn.be/stops/504596", "https://data.delijn.be/stops/509596"], ["https://data.delijn.be/stops/107842", "https://data.delijn.be/stops/107846"], ["https://data.delijn.be/stops/202737", "https://data.delijn.be/stops/203738"], ["https://data.delijn.be/stops/207669", "https://data.delijn.be/stops/208503"], ["https://data.delijn.be/stops/409053", "https://data.delijn.be/stops/409064"], ["https://data.delijn.be/stops/502640", "https://data.delijn.be/stops/507412"], ["https://data.delijn.be/stops/108644", "https://data.delijn.be/stops/109678"], ["https://data.delijn.be/stops/503819", "https://data.delijn.be/stops/508820"], ["https://data.delijn.be/stops/202406", "https://data.delijn.be/stops/203406"], ["https://data.delijn.be/stops/101995", "https://data.delijn.be/stops/103545"], ["https://data.delijn.be/stops/407061", "https://data.delijn.be/stops/407071"], ["https://data.delijn.be/stops/206301", "https://data.delijn.be/stops/206302"], ["https://data.delijn.be/stops/102013", "https://data.delijn.be/stops/102076"], ["https://data.delijn.be/stops/204047", "https://data.delijn.be/stops/204048"], ["https://data.delijn.be/stops/507605", "https://data.delijn.be/stops/507606"], ["https://data.delijn.be/stops/206547", "https://data.delijn.be/stops/207547"], ["https://data.delijn.be/stops/107331", "https://data.delijn.be/stops/107333"], ["https://data.delijn.be/stops/204310", "https://data.delijn.be/stops/205448"], ["https://data.delijn.be/stops/107058", "https://data.delijn.be/stops/108224"], ["https://data.delijn.be/stops/302459", "https://data.delijn.be/stops/302467"], ["https://data.delijn.be/stops/501247", "https://data.delijn.be/stops/501559"], ["https://data.delijn.be/stops/101607", "https://data.delijn.be/stops/109809"], ["https://data.delijn.be/stops/501045", "https://data.delijn.be/stops/501049"], ["https://data.delijn.be/stops/305146", "https://data.delijn.be/stops/305157"], ["https://data.delijn.be/stops/101985", "https://data.delijn.be/stops/103795"], ["https://data.delijn.be/stops/407371", "https://data.delijn.be/stops/407392"], ["https://data.delijn.be/stops/407427", "https://data.delijn.be/stops/409861"], ["https://data.delijn.be/stops/303051", "https://data.delijn.be/stops/303061"], ["https://data.delijn.be/stops/106713", "https://data.delijn.be/stops/106714"], ["https://data.delijn.be/stops/308459", "https://data.delijn.be/stops/308460"], ["https://data.delijn.be/stops/105727", "https://data.delijn.be/stops/109845"], ["https://data.delijn.be/stops/308158", "https://data.delijn.be/stops/308162"], ["https://data.delijn.be/stops/202171", "https://data.delijn.be/stops/202174"], ["https://data.delijn.be/stops/407331", "https://data.delijn.be/stops/409494"], ["https://data.delijn.be/stops/109754", "https://data.delijn.be/stops/109755"], ["https://data.delijn.be/stops/502109", "https://data.delijn.be/stops/502145"], ["https://data.delijn.be/stops/404969", "https://data.delijn.be/stops/404970"], ["https://data.delijn.be/stops/105666", "https://data.delijn.be/stops/105667"], ["https://data.delijn.be/stops/406738", "https://data.delijn.be/stops/407407"], ["https://data.delijn.be/stops/405631", "https://data.delijn.be/stops/405632"], ["https://data.delijn.be/stops/504713", "https://data.delijn.be/stops/508286"], ["https://data.delijn.be/stops/201954", "https://data.delijn.be/stops/211054"], ["https://data.delijn.be/stops/400712", "https://data.delijn.be/stops/409509"], ["https://data.delijn.be/stops/406804", "https://data.delijn.be/stops/410101"], ["https://data.delijn.be/stops/204144", "https://data.delijn.be/stops/205150"], ["https://data.delijn.be/stops/208261", "https://data.delijn.be/stops/209262"], ["https://data.delijn.be/stops/303459", "https://data.delijn.be/stops/303482"], ["https://data.delijn.be/stops/206470", "https://data.delijn.be/stops/207469"], ["https://data.delijn.be/stops/300687", "https://data.delijn.be/stops/306936"], ["https://data.delijn.be/stops/408243", "https://data.delijn.be/stops/408308"], ["https://data.delijn.be/stops/300431", "https://data.delijn.be/stops/302696"], ["https://data.delijn.be/stops/204221", "https://data.delijn.be/stops/205245"], ["https://data.delijn.be/stops/109182", "https://data.delijn.be/stops/109253"], ["https://data.delijn.be/stops/201799", "https://data.delijn.be/stops/210050"], ["https://data.delijn.be/stops/203105", "https://data.delijn.be/stops/203106"], ["https://data.delijn.be/stops/404661", "https://data.delijn.be/stops/404669"], ["https://data.delijn.be/stops/504752", "https://data.delijn.be/stops/504753"], ["https://data.delijn.be/stops/407088", "https://data.delijn.be/stops/407263"], ["https://data.delijn.be/stops/304247", "https://data.delijn.be/stops/306826"], ["https://data.delijn.be/stops/106765", "https://data.delijn.be/stops/107513"], ["https://data.delijn.be/stops/403929", "https://data.delijn.be/stops/403960"], ["https://data.delijn.be/stops/307725", "https://data.delijn.be/stops/307895"], ["https://data.delijn.be/stops/106493", "https://data.delijn.be/stops/109712"], ["https://data.delijn.be/stops/104861", "https://data.delijn.be/stops/105109"], ["https://data.delijn.be/stops/303865", "https://data.delijn.be/stops/308881"], ["https://data.delijn.be/stops/206298", "https://data.delijn.be/stops/207143"], ["https://data.delijn.be/stops/503925", "https://data.delijn.be/stops/503929"], ["https://data.delijn.be/stops/401842", "https://data.delijn.be/stops/401852"], ["https://data.delijn.be/stops/502429", "https://data.delijn.be/stops/507432"], ["https://data.delijn.be/stops/409081", "https://data.delijn.be/stops/409139"], ["https://data.delijn.be/stops/301467", "https://data.delijn.be/stops/307959"], ["https://data.delijn.be/stops/105764", "https://data.delijn.be/stops/106017"], ["https://data.delijn.be/stops/107577", "https://data.delijn.be/stops/109432"], ["https://data.delijn.be/stops/409763", "https://data.delijn.be/stops/409764"], ["https://data.delijn.be/stops/104026", "https://data.delijn.be/stops/104027"], ["https://data.delijn.be/stops/102928", "https://data.delijn.be/stops/106239"], ["https://data.delijn.be/stops/304932", "https://data.delijn.be/stops/304933"], ["https://data.delijn.be/stops/304376", "https://data.delijn.be/stops/305993"], ["https://data.delijn.be/stops/504949", "https://data.delijn.be/stops/507941"], ["https://data.delijn.be/stops/105091", "https://data.delijn.be/stops/108880"], ["https://data.delijn.be/stops/303033", "https://data.delijn.be/stops/303119"], ["https://data.delijn.be/stops/107182", "https://data.delijn.be/stops/107183"], ["https://data.delijn.be/stops/207499", "https://data.delijn.be/stops/207528"], ["https://data.delijn.be/stops/505201", "https://data.delijn.be/stops/508152"], ["https://data.delijn.be/stops/401565", "https://data.delijn.be/stops/401580"], ["https://data.delijn.be/stops/401393", "https://data.delijn.be/stops/410208"], ["https://data.delijn.be/stops/105704", "https://data.delijn.be/stops/105706"], ["https://data.delijn.be/stops/501007", "https://data.delijn.be/stops/508750"], ["https://data.delijn.be/stops/102725", "https://data.delijn.be/stops/107417"], ["https://data.delijn.be/stops/305076", "https://data.delijn.be/stops/307295"], ["https://data.delijn.be/stops/404865", "https://data.delijn.be/stops/404913"], ["https://data.delijn.be/stops/206948", "https://data.delijn.be/stops/207948"], ["https://data.delijn.be/stops/101907", "https://data.delijn.be/stops/101917"], ["https://data.delijn.be/stops/301724", "https://data.delijn.be/stops/301726"], ["https://data.delijn.be/stops/501323", "https://data.delijn.be/stops/501347"], ["https://data.delijn.be/stops/206251", "https://data.delijn.be/stops/216021"], ["https://data.delijn.be/stops/400200", "https://data.delijn.be/stops/402375"], ["https://data.delijn.be/stops/102309", "https://data.delijn.be/stops/105567"], ["https://data.delijn.be/stops/102638", "https://data.delijn.be/stops/107848"], ["https://data.delijn.be/stops/501560", "https://data.delijn.be/stops/506089"], ["https://data.delijn.be/stops/408360", "https://data.delijn.be/stops/408361"], ["https://data.delijn.be/stops/301642", "https://data.delijn.be/stops/301643"], ["https://data.delijn.be/stops/108683", "https://data.delijn.be/stops/108827"], ["https://data.delijn.be/stops/408520", "https://data.delijn.be/stops/408562"], ["https://data.delijn.be/stops/505201", "https://data.delijn.be/stops/505369"], ["https://data.delijn.be/stops/302128", "https://data.delijn.be/stops/307530"], ["https://data.delijn.be/stops/402809", "https://data.delijn.be/stops/409018"], ["https://data.delijn.be/stops/501255", "https://data.delijn.be/stops/506635"], ["https://data.delijn.be/stops/208188", "https://data.delijn.be/stops/209188"], ["https://data.delijn.be/stops/203512", "https://data.delijn.be/stops/203513"], ["https://data.delijn.be/stops/300368", "https://data.delijn.be/stops/300370"], ["https://data.delijn.be/stops/406296", "https://data.delijn.be/stops/406423"], ["https://data.delijn.be/stops/200514", "https://data.delijn.be/stops/200515"], ["https://data.delijn.be/stops/304000", "https://data.delijn.be/stops/306002"], ["https://data.delijn.be/stops/408314", "https://data.delijn.be/stops/408315"], ["https://data.delijn.be/stops/205064", "https://data.delijn.be/stops/205212"], ["https://data.delijn.be/stops/200228", "https://data.delijn.be/stops/201369"], ["https://data.delijn.be/stops/202277", "https://data.delijn.be/stops/203662"], ["https://data.delijn.be/stops/105059", "https://data.delijn.be/stops/105824"], ["https://data.delijn.be/stops/105724", "https://data.delijn.be/stops/108780"], ["https://data.delijn.be/stops/505424", "https://data.delijn.be/stops/505810"], ["https://data.delijn.be/stops/204566", "https://data.delijn.be/stops/305856"], ["https://data.delijn.be/stops/400318", "https://data.delijn.be/stops/400319"], ["https://data.delijn.be/stops/104001", "https://data.delijn.be/stops/104006"], ["https://data.delijn.be/stops/207762", "https://data.delijn.be/stops/209372"], ["https://data.delijn.be/stops/202855", "https://data.delijn.be/stops/203854"], ["https://data.delijn.be/stops/300304", "https://data.delijn.be/stops/304255"], ["https://data.delijn.be/stops/105716", "https://data.delijn.be/stops/106081"], ["https://data.delijn.be/stops/200401", "https://data.delijn.be/stops/202364"], ["https://data.delijn.be/stops/106444", "https://data.delijn.be/stops/106445"], ["https://data.delijn.be/stops/308770", "https://data.delijn.be/stops/308771"], ["https://data.delijn.be/stops/106436", "https://data.delijn.be/stops/106437"], ["https://data.delijn.be/stops/103043", "https://data.delijn.be/stops/107250"], ["https://data.delijn.be/stops/102915", "https://data.delijn.be/stops/103388"], ["https://data.delijn.be/stops/101536", "https://data.delijn.be/stops/109051"], ["https://data.delijn.be/stops/102163", "https://data.delijn.be/stops/104394"], ["https://data.delijn.be/stops/208484", "https://data.delijn.be/stops/208485"], ["https://data.delijn.be/stops/410085", "https://data.delijn.be/stops/410088"], ["https://data.delijn.be/stops/106774", "https://data.delijn.be/stops/106778"], ["https://data.delijn.be/stops/103326", "https://data.delijn.be/stops/105102"], ["https://data.delijn.be/stops/204706", "https://data.delijn.be/stops/205709"], ["https://data.delijn.be/stops/207353", "https://data.delijn.be/stops/207916"], ["https://data.delijn.be/stops/400598", "https://data.delijn.be/stops/404543"], ["https://data.delijn.be/stops/503244", "https://data.delijn.be/stops/508244"], ["https://data.delijn.be/stops/107696", "https://data.delijn.be/stops/107718"], ["https://data.delijn.be/stops/101850", "https://data.delijn.be/stops/103535"], ["https://data.delijn.be/stops/103611", "https://data.delijn.be/stops/103613"], ["https://data.delijn.be/stops/308451", "https://data.delijn.be/stops/308453"], ["https://data.delijn.be/stops/300516", "https://data.delijn.be/stops/300531"], ["https://data.delijn.be/stops/503845", "https://data.delijn.be/stops/505972"], ["https://data.delijn.be/stops/207302", "https://data.delijn.be/stops/207890"], ["https://data.delijn.be/stops/405505", "https://data.delijn.be/stops/407716"], ["https://data.delijn.be/stops/302474", "https://data.delijn.be/stops/302475"], ["https://data.delijn.be/stops/505570", "https://data.delijn.be/stops/508864"], ["https://data.delijn.be/stops/202188", "https://data.delijn.be/stops/203616"], ["https://data.delijn.be/stops/403750", "https://data.delijn.be/stops/403758"], ["https://data.delijn.be/stops/505600", "https://data.delijn.be/stops/506146"], ["https://data.delijn.be/stops/503073", "https://data.delijn.be/stops/503238"], ["https://data.delijn.be/stops/504695", "https://data.delijn.be/stops/508857"], ["https://data.delijn.be/stops/306119", "https://data.delijn.be/stops/306120"], ["https://data.delijn.be/stops/502622", "https://data.delijn.be/stops/502676"], ["https://data.delijn.be/stops/308227", "https://data.delijn.be/stops/308228"], ["https://data.delijn.be/stops/207737", "https://data.delijn.be/stops/207860"], ["https://data.delijn.be/stops/505926", "https://data.delijn.be/stops/509233"], ["https://data.delijn.be/stops/101649", "https://data.delijn.be/stops/103586"], ["https://data.delijn.be/stops/206642", "https://data.delijn.be/stops/209687"], ["https://data.delijn.be/stops/209370", "https://data.delijn.be/stops/209408"], ["https://data.delijn.be/stops/108736", "https://data.delijn.be/stops/108763"], ["https://data.delijn.be/stops/501612", "https://data.delijn.be/stops/506612"], ["https://data.delijn.be/stops/502367", "https://data.delijn.be/stops/505416"], ["https://data.delijn.be/stops/200308", "https://data.delijn.be/stops/201308"], ["https://data.delijn.be/stops/200400", "https://data.delijn.be/stops/203363"], ["https://data.delijn.be/stops/405492", "https://data.delijn.be/stops/405620"], ["https://data.delijn.be/stops/304309", "https://data.delijn.be/stops/304329"], ["https://data.delijn.be/stops/301096", "https://data.delijn.be/stops/306667"], ["https://data.delijn.be/stops/304437", "https://data.delijn.be/stops/304438"], ["https://data.delijn.be/stops/300306", "https://data.delijn.be/stops/302135"], ["https://data.delijn.be/stops/303664", "https://data.delijn.be/stops/308903"], ["https://data.delijn.be/stops/400874", "https://data.delijn.be/stops/409646"], ["https://data.delijn.be/stops/200774", "https://data.delijn.be/stops/505286"], ["https://data.delijn.be/stops/502748", "https://data.delijn.be/stops/507539"], ["https://data.delijn.be/stops/206944", "https://data.delijn.be/stops/206945"], ["https://data.delijn.be/stops/304725", "https://data.delijn.be/stops/308698"], ["https://data.delijn.be/stops/503513", "https://data.delijn.be/stops/508513"], ["https://data.delijn.be/stops/406541", "https://data.delijn.be/stops/406542"], ["https://data.delijn.be/stops/400752", "https://data.delijn.be/stops/409592"], ["https://data.delijn.be/stops/501693", "https://data.delijn.be/stops/505519"], ["https://data.delijn.be/stops/302014", "https://data.delijn.be/stops/306340"], ["https://data.delijn.be/stops/401030", "https://data.delijn.be/stops/401105"], ["https://data.delijn.be/stops/302906", "https://data.delijn.be/stops/302908"], ["https://data.delijn.be/stops/402825", "https://data.delijn.be/stops/402844"], ["https://data.delijn.be/stops/407580", "https://data.delijn.be/stops/409273"], ["https://data.delijn.be/stops/504582", "https://data.delijn.be/stops/504586"], ["https://data.delijn.be/stops/505292", "https://data.delijn.be/stops/509749"], ["https://data.delijn.be/stops/300097", "https://data.delijn.be/stops/306850"], ["https://data.delijn.be/stops/109847", "https://data.delijn.be/stops/109848"], ["https://data.delijn.be/stops/306844", "https://data.delijn.be/stops/307354"], ["https://data.delijn.be/stops/205191", "https://data.delijn.be/stops/205195"], ["https://data.delijn.be/stops/307814", "https://data.delijn.be/stops/307815"], ["https://data.delijn.be/stops/400489", "https://data.delijn.be/stops/400974"], ["https://data.delijn.be/stops/407271", "https://data.delijn.be/stops/407514"], ["https://data.delijn.be/stops/206215", "https://data.delijn.be/stops/207044"], ["https://data.delijn.be/stops/106325", "https://data.delijn.be/stops/109390"], ["https://data.delijn.be/stops/404328", "https://data.delijn.be/stops/404782"], ["https://data.delijn.be/stops/505022", "https://data.delijn.be/stops/505743"], ["https://data.delijn.be/stops/507404", "https://data.delijn.be/stops/507578"], ["https://data.delijn.be/stops/306060", "https://data.delijn.be/stops/306061"], ["https://data.delijn.be/stops/500602", "https://data.delijn.be/stops/501547"], ["https://data.delijn.be/stops/303677", "https://data.delijn.be/stops/303978"], ["https://data.delijn.be/stops/103634", "https://data.delijn.be/stops/107168"], ["https://data.delijn.be/stops/101943", "https://data.delijn.be/stops/108318"], ["https://data.delijn.be/stops/403520", "https://data.delijn.be/stops/410010"], ["https://data.delijn.be/stops/303640", "https://data.delijn.be/stops/303641"], ["https://data.delijn.be/stops/302667", "https://data.delijn.be/stops/302668"], ["https://data.delijn.be/stops/300582", "https://data.delijn.be/stops/300588"], ["https://data.delijn.be/stops/302100", "https://data.delijn.be/stops/302104"], ["https://data.delijn.be/stops/404466", "https://data.delijn.be/stops/404467"], ["https://data.delijn.be/stops/303818", "https://data.delijn.be/stops/303819"], ["https://data.delijn.be/stops/306688", "https://data.delijn.be/stops/307883"], ["https://data.delijn.be/stops/206027", "https://data.delijn.be/stops/207207"], ["https://data.delijn.be/stops/301506", "https://data.delijn.be/stops/301516"], ["https://data.delijn.be/stops/205346", "https://data.delijn.be/stops/205347"], ["https://data.delijn.be/stops/409576", "https://data.delijn.be/stops/410082"], ["https://data.delijn.be/stops/408142", "https://data.delijn.be/stops/307451"], ["https://data.delijn.be/stops/105521", "https://data.delijn.be/stops/105522"], ["https://data.delijn.be/stops/505215", "https://data.delijn.be/stops/505300"], ["https://data.delijn.be/stops/102702", "https://data.delijn.be/stops/105651"], ["https://data.delijn.be/stops/302087", "https://data.delijn.be/stops/302250"], ["https://data.delijn.be/stops/102997", "https://data.delijn.be/stops/109452"], ["https://data.delijn.be/stops/206254", "https://data.delijn.be/stops/206255"], ["https://data.delijn.be/stops/200091", "https://data.delijn.be/stops/201479"], ["https://data.delijn.be/stops/303019", "https://data.delijn.be/stops/304243"], ["https://data.delijn.be/stops/206123", "https://data.delijn.be/stops/207102"], ["https://data.delijn.be/stops/204648", "https://data.delijn.be/stops/205613"], ["https://data.delijn.be/stops/505660", "https://data.delijn.be/stops/508751"], ["https://data.delijn.be/stops/402200", "https://data.delijn.be/stops/402201"], ["https://data.delijn.be/stops/208274", "https://data.delijn.be/stops/209274"], ["https://data.delijn.be/stops/300456", "https://data.delijn.be/stops/304975"], ["https://data.delijn.be/stops/107056", "https://data.delijn.be/stops/107059"], ["https://data.delijn.be/stops/106479", "https://data.delijn.be/stops/107055"], ["https://data.delijn.be/stops/202170", "https://data.delijn.be/stops/203117"], ["https://data.delijn.be/stops/402807", "https://data.delijn.be/stops/409476"], ["https://data.delijn.be/stops/304205", "https://data.delijn.be/stops/306003"], ["https://data.delijn.be/stops/308958", "https://data.delijn.be/stops/308959"], ["https://data.delijn.be/stops/206446", "https://data.delijn.be/stops/207060"], ["https://data.delijn.be/stops/301447", "https://data.delijn.be/stops/307799"], ["https://data.delijn.be/stops/304296", "https://data.delijn.be/stops/304515"], ["https://data.delijn.be/stops/204522", "https://data.delijn.be/stops/205521"], ["https://data.delijn.be/stops/303336", "https://data.delijn.be/stops/305063"], ["https://data.delijn.be/stops/105357", "https://data.delijn.be/stops/105591"], ["https://data.delijn.be/stops/304218", "https://data.delijn.be/stops/308773"], ["https://data.delijn.be/stops/304542", "https://data.delijn.be/stops/307586"], ["https://data.delijn.be/stops/407460", "https://data.delijn.be/stops/407522"], ["https://data.delijn.be/stops/403307", "https://data.delijn.be/stops/410338"], ["https://data.delijn.be/stops/406244", "https://data.delijn.be/stops/409348"], ["https://data.delijn.be/stops/101838", "https://data.delijn.be/stops/102395"], ["https://data.delijn.be/stops/108638", "https://data.delijn.be/stops/109682"], ["https://data.delijn.be/stops/202524", "https://data.delijn.be/stops/203524"], ["https://data.delijn.be/stops/104215", "https://data.delijn.be/stops/104260"], ["https://data.delijn.be/stops/202316", "https://data.delijn.be/stops/203316"], ["https://data.delijn.be/stops/405160", "https://data.delijn.be/stops/405174"], ["https://data.delijn.be/stops/101785", "https://data.delijn.be/stops/101790"], ["https://data.delijn.be/stops/204597", "https://data.delijn.be/stops/205597"], ["https://data.delijn.be/stops/300419", "https://data.delijn.be/stops/300425"], ["https://data.delijn.be/stops/305087", "https://data.delijn.be/stops/306955"], ["https://data.delijn.be/stops/207941", "https://data.delijn.be/stops/208622"], ["https://data.delijn.be/stops/406668", "https://data.delijn.be/stops/406669"], ["https://data.delijn.be/stops/201666", "https://data.delijn.be/stops/201669"], ["https://data.delijn.be/stops/403528", "https://data.delijn.be/stops/410219"], ["https://data.delijn.be/stops/201531", "https://data.delijn.be/stops/210091"], ["https://data.delijn.be/stops/300078", "https://data.delijn.be/stops/306786"], ["https://data.delijn.be/stops/304235", "https://data.delijn.be/stops/308771"], ["https://data.delijn.be/stops/305078", "https://data.delijn.be/stops/308928"], ["https://data.delijn.be/stops/101292", "https://data.delijn.be/stops/105307"], ["https://data.delijn.be/stops/406286", "https://data.delijn.be/stops/406443"], ["https://data.delijn.be/stops/502415", "https://data.delijn.be/stops/507415"], ["https://data.delijn.be/stops/403149", "https://data.delijn.be/stops/403154"], ["https://data.delijn.be/stops/103143", "https://data.delijn.be/stops/109444"], ["https://data.delijn.be/stops/301518", "https://data.delijn.be/stops/301525"], ["https://data.delijn.be/stops/409073", "https://data.delijn.be/stops/409149"], ["https://data.delijn.be/stops/204013", "https://data.delijn.be/stops/204014"], ["https://data.delijn.be/stops/506491", "https://data.delijn.be/stops/506632"], ["https://data.delijn.be/stops/302995", "https://data.delijn.be/stops/303042"], ["https://data.delijn.be/stops/401389", "https://data.delijn.be/stops/401460"], ["https://data.delijn.be/stops/104738", "https://data.delijn.be/stops/104746"], ["https://data.delijn.be/stops/409265", "https://data.delijn.be/stops/409272"], ["https://data.delijn.be/stops/200967", "https://data.delijn.be/stops/209731"], ["https://data.delijn.be/stops/505970", "https://data.delijn.be/stops/509425"], ["https://data.delijn.be/stops/103042", "https://data.delijn.be/stops/106772"], ["https://data.delijn.be/stops/303019", "https://data.delijn.be/stops/303100"], ["https://data.delijn.be/stops/302258", "https://data.delijn.be/stops/302260"], ["https://data.delijn.be/stops/503007", "https://data.delijn.be/stops/505339"], ["https://data.delijn.be/stops/201518", "https://data.delijn.be/stops/204925"], ["https://data.delijn.be/stops/202761", "https://data.delijn.be/stops/203752"], ["https://data.delijn.be/stops/300086", "https://data.delijn.be/stops/300099"], ["https://data.delijn.be/stops/401355", "https://data.delijn.be/stops/401366"], ["https://data.delijn.be/stops/106558", "https://data.delijn.be/stops/106562"], ["https://data.delijn.be/stops/205930", "https://data.delijn.be/stops/211105"], ["https://data.delijn.be/stops/104082", "https://data.delijn.be/stops/104090"], ["https://data.delijn.be/stops/509037", "https://data.delijn.be/stops/509284"], ["https://data.delijn.be/stops/201736", "https://data.delijn.be/stops/202786"], ["https://data.delijn.be/stops/408195", "https://data.delijn.be/stops/408442"], ["https://data.delijn.be/stops/400651", "https://data.delijn.be/stops/400664"], ["https://data.delijn.be/stops/405333", "https://data.delijn.be/stops/405346"], ["https://data.delijn.be/stops/105244", "https://data.delijn.be/stops/105416"], ["https://data.delijn.be/stops/101982", "https://data.delijn.be/stops/108612"], ["https://data.delijn.be/stops/202169", "https://data.delijn.be/stops/202185"], ["https://data.delijn.be/stops/204989", "https://data.delijn.be/stops/205989"], ["https://data.delijn.be/stops/104955", "https://data.delijn.be/stops/105765"], ["https://data.delijn.be/stops/501184", "https://data.delijn.be/stops/506184"], ["https://data.delijn.be/stops/300925", "https://data.delijn.be/stops/300926"], ["https://data.delijn.be/stops/403278", "https://data.delijn.be/stops/403418"], ["https://data.delijn.be/stops/204394", "https://data.delijn.be/stops/205396"], ["https://data.delijn.be/stops/107208", "https://data.delijn.be/stops/107209"], ["https://data.delijn.be/stops/304537", "https://data.delijn.be/stops/306208"], ["https://data.delijn.be/stops/403259", "https://data.delijn.be/stops/403260"], ["https://data.delijn.be/stops/305356", "https://data.delijn.be/stops/307110"], ["https://data.delijn.be/stops/300690", "https://data.delijn.be/stops/303504"], ["https://data.delijn.be/stops/300564", "https://data.delijn.be/stops/300594"], ["https://data.delijn.be/stops/109043", "https://data.delijn.be/stops/109318"], ["https://data.delijn.be/stops/106105", "https://data.delijn.be/stops/106107"], ["https://data.delijn.be/stops/407889", "https://data.delijn.be/stops/408186"], ["https://data.delijn.be/stops/403306", "https://data.delijn.be/stops/405639"], ["https://data.delijn.be/stops/107149", "https://data.delijn.be/stops/109380"], ["https://data.delijn.be/stops/208702", "https://data.delijn.be/stops/209702"], ["https://data.delijn.be/stops/407198", "https://data.delijn.be/stops/407386"], ["https://data.delijn.be/stops/205015", "https://data.delijn.be/stops/205105"], ["https://data.delijn.be/stops/204261", "https://data.delijn.be/stops/205207"], ["https://data.delijn.be/stops/403375", "https://data.delijn.be/stops/410281"], ["https://data.delijn.be/stops/200591", "https://data.delijn.be/stops/201592"], ["https://data.delijn.be/stops/105085", "https://data.delijn.be/stops/105660"], ["https://data.delijn.be/stops/204583", "https://data.delijn.be/stops/205153"], ["https://data.delijn.be/stops/207082", "https://data.delijn.be/stops/217007"], ["https://data.delijn.be/stops/402701", "https://data.delijn.be/stops/306021"], ["https://data.delijn.be/stops/407337", "https://data.delijn.be/stops/407633"], ["https://data.delijn.be/stops/105644", "https://data.delijn.be/stops/105647"], ["https://data.delijn.be/stops/401194", "https://data.delijn.be/stops/410259"], ["https://data.delijn.be/stops/206846", "https://data.delijn.be/stops/207846"], ["https://data.delijn.be/stops/405959", "https://data.delijn.be/stops/405961"], ["https://data.delijn.be/stops/407038", "https://data.delijn.be/stops/407041"], ["https://data.delijn.be/stops/401066", "https://data.delijn.be/stops/406586"], ["https://data.delijn.be/stops/506444", "https://data.delijn.be/stops/590334"], ["https://data.delijn.be/stops/208592", "https://data.delijn.be/stops/208593"], ["https://data.delijn.be/stops/104895", "https://data.delijn.be/stops/108645"], ["https://data.delijn.be/stops/201310", "https://data.delijn.be/stops/201378"], ["https://data.delijn.be/stops/510017", "https://data.delijn.be/stops/510023"], ["https://data.delijn.be/stops/502441", "https://data.delijn.be/stops/502750"], ["https://data.delijn.be/stops/206641", "https://data.delijn.be/stops/207642"], ["https://data.delijn.be/stops/204611", "https://data.delijn.be/stops/204612"], ["https://data.delijn.be/stops/300413", "https://data.delijn.be/stops/300414"], ["https://data.delijn.be/stops/103244", "https://data.delijn.be/stops/104683"], ["https://data.delijn.be/stops/305290", "https://data.delijn.be/stops/305292"], ["https://data.delijn.be/stops/102212", "https://data.delijn.be/stops/102214"], ["https://data.delijn.be/stops/206775", "https://data.delijn.be/stops/207853"], ["https://data.delijn.be/stops/403432", "https://data.delijn.be/stops/403433"], ["https://data.delijn.be/stops/403065", "https://data.delijn.be/stops/403127"], ["https://data.delijn.be/stops/407894", "https://data.delijn.be/stops/408125"], ["https://data.delijn.be/stops/505773", "https://data.delijn.be/stops/507761"], ["https://data.delijn.be/stops/501093", "https://data.delijn.be/stops/506087"], ["https://data.delijn.be/stops/106488", "https://data.delijn.be/stops/109712"], ["https://data.delijn.be/stops/505957", "https://data.delijn.be/stops/508591"], ["https://data.delijn.be/stops/402305", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/201682", "https://data.delijn.be/stops/201687"], ["https://data.delijn.be/stops/101804", "https://data.delijn.be/stops/101812"], ["https://data.delijn.be/stops/202417", "https://data.delijn.be/stops/203417"], ["https://data.delijn.be/stops/304133", "https://data.delijn.be/stops/304147"], ["https://data.delijn.be/stops/504852", "https://data.delijn.be/stops/508832"], ["https://data.delijn.be/stops/402208", "https://data.delijn.be/stops/402321"], ["https://data.delijn.be/stops/109208", "https://data.delijn.be/stops/109226"], ["https://data.delijn.be/stops/208794", "https://data.delijn.be/stops/209378"], ["https://data.delijn.be/stops/103129", "https://data.delijn.be/stops/105068"], ["https://data.delijn.be/stops/307047", "https://data.delijn.be/stops/308911"], ["https://data.delijn.be/stops/206499", "https://data.delijn.be/stops/207555"], ["https://data.delijn.be/stops/503172", "https://data.delijn.be/stops/508170"], ["https://data.delijn.be/stops/503551", "https://data.delijn.be/stops/503561"], ["https://data.delijn.be/stops/503588", "https://data.delijn.be/stops/508588"], ["https://data.delijn.be/stops/308426", "https://data.delijn.be/stops/308429"], ["https://data.delijn.be/stops/206370", "https://data.delijn.be/stops/207728"], ["https://data.delijn.be/stops/106815", "https://data.delijn.be/stops/106842"], ["https://data.delijn.be/stops/406299", "https://data.delijn.be/stops/409811"], ["https://data.delijn.be/stops/305393", "https://data.delijn.be/stops/305463"], ["https://data.delijn.be/stops/109207", "https://data.delijn.be/stops/109208"], ["https://data.delijn.be/stops/305421", "https://data.delijn.be/stops/305422"], ["https://data.delijn.be/stops/200227", "https://data.delijn.be/stops/201368"], ["https://data.delijn.be/stops/501202", "https://data.delijn.be/stops/506201"], ["https://data.delijn.be/stops/106634", "https://data.delijn.be/stops/107164"], ["https://data.delijn.be/stops/404906", "https://data.delijn.be/stops/404966"], ["https://data.delijn.be/stops/502370", "https://data.delijn.be/stops/505608"], ["https://data.delijn.be/stops/308609", "https://data.delijn.be/stops/308610"], ["https://data.delijn.be/stops/202326", "https://data.delijn.be/stops/202714"], ["https://data.delijn.be/stops/302159", "https://data.delijn.be/stops/302162"], ["https://data.delijn.be/stops/401312", "https://data.delijn.be/stops/401328"], ["https://data.delijn.be/stops/407168", "https://data.delijn.be/stops/407169"], ["https://data.delijn.be/stops/300132", "https://data.delijn.be/stops/300133"], ["https://data.delijn.be/stops/201508", "https://data.delijn.be/stops/211510"], ["https://data.delijn.be/stops/400964", "https://data.delijn.be/stops/401254"], ["https://data.delijn.be/stops/103676", "https://data.delijn.be/stops/103677"], ["https://data.delijn.be/stops/409364", "https://data.delijn.be/stops/409501"], ["https://data.delijn.be/stops/400856", "https://data.delijn.be/stops/409541"], ["https://data.delijn.be/stops/408822", "https://data.delijn.be/stops/408828"], ["https://data.delijn.be/stops/101359", "https://data.delijn.be/stops/102187"], ["https://data.delijn.be/stops/200106", "https://data.delijn.be/stops/200196"], ["https://data.delijn.be/stops/407372", "https://data.delijn.be/stops/407377"], ["https://data.delijn.be/stops/306604", "https://data.delijn.be/stops/306609"], ["https://data.delijn.be/stops/202441", "https://data.delijn.be/stops/203441"], ["https://data.delijn.be/stops/104142", "https://data.delijn.be/stops/305793"], ["https://data.delijn.be/stops/101483", "https://data.delijn.be/stops/101972"], ["https://data.delijn.be/stops/508701", "https://data.delijn.be/stops/509937"], ["https://data.delijn.be/stops/406083", "https://data.delijn.be/stops/406140"], ["https://data.delijn.be/stops/102235", "https://data.delijn.be/stops/102816"], ["https://data.delijn.be/stops/403003", "https://data.delijn.be/stops/405603"], ["https://data.delijn.be/stops/204027", "https://data.delijn.be/stops/205818"], ["https://data.delijn.be/stops/200901", "https://data.delijn.be/stops/202268"], ["https://data.delijn.be/stops/106948", "https://data.delijn.be/stops/106950"], ["https://data.delijn.be/stops/105729", "https://data.delijn.be/stops/109839"], ["https://data.delijn.be/stops/307401", "https://data.delijn.be/stops/307404"], ["https://data.delijn.be/stops/503766", "https://data.delijn.be/stops/505532"], ["https://data.delijn.be/stops/307374", "https://data.delijn.be/stops/307377"], ["https://data.delijn.be/stops/207818", "https://data.delijn.be/stops/207820"], ["https://data.delijn.be/stops/506387", "https://data.delijn.be/stops/506390"], ["https://data.delijn.be/stops/107198", "https://data.delijn.be/stops/109771"], ["https://data.delijn.be/stops/107320", "https://data.delijn.be/stops/108970"], ["https://data.delijn.be/stops/304414", "https://data.delijn.be/stops/307385"], ["https://data.delijn.be/stops/503946", "https://data.delijn.be/stops/508178"], ["https://data.delijn.be/stops/408962", "https://data.delijn.be/stops/408965"], ["https://data.delijn.be/stops/408184", "https://data.delijn.be/stops/408443"], ["https://data.delijn.be/stops/504498", "https://data.delijn.be/stops/504705"], ["https://data.delijn.be/stops/302600", "https://data.delijn.be/stops/302630"], ["https://data.delijn.be/stops/505184", "https://data.delijn.be/stops/509561"], ["https://data.delijn.be/stops/500942", "https://data.delijn.be/stops/508801"], ["https://data.delijn.be/stops/506255", "https://data.delijn.be/stops/506635"], ["https://data.delijn.be/stops/108647", "https://data.delijn.be/stops/109791"], ["https://data.delijn.be/stops/307570", "https://data.delijn.be/stops/307571"], ["https://data.delijn.be/stops/200806", "https://data.delijn.be/stops/210056"], ["https://data.delijn.be/stops/107351", "https://data.delijn.be/stops/107352"], ["https://data.delijn.be/stops/403930", "https://data.delijn.be/stops/404084"], ["https://data.delijn.be/stops/103098", "https://data.delijn.be/stops/103266"], ["https://data.delijn.be/stops/305586", "https://data.delijn.be/stops/305592"], ["https://data.delijn.be/stops/301303", "https://data.delijn.be/stops/306256"], ["https://data.delijn.be/stops/400010", "https://data.delijn.be/stops/400431"], ["https://data.delijn.be/stops/207868", "https://data.delijn.be/stops/207997"], ["https://data.delijn.be/stops/101824", "https://data.delijn.be/stops/107013"], ["https://data.delijn.be/stops/301935", "https://data.delijn.be/stops/306098"], ["https://data.delijn.be/stops/201912", "https://data.delijn.be/stops/204100"], ["https://data.delijn.be/stops/102470", "https://data.delijn.be/stops/104627"], ["https://data.delijn.be/stops/402982", "https://data.delijn.be/stops/405592"], ["https://data.delijn.be/stops/208804", "https://data.delijn.be/stops/208805"], ["https://data.delijn.be/stops/200907", "https://data.delijn.be/stops/200908"], ["https://data.delijn.be/stops/409740", "https://data.delijn.be/stops/409999"], ["https://data.delijn.be/stops/102035", "https://data.delijn.be/stops/103630"], ["https://data.delijn.be/stops/105613", "https://data.delijn.be/stops/105657"], ["https://data.delijn.be/stops/403623", "https://data.delijn.be/stops/403653"], ["https://data.delijn.be/stops/304731", "https://data.delijn.be/stops/304732"], ["https://data.delijn.be/stops/202348", "https://data.delijn.be/stops/209709"], ["https://data.delijn.be/stops/108856", "https://data.delijn.be/stops/108857"], ["https://data.delijn.be/stops/407260", "https://data.delijn.be/stops/407272"], ["https://data.delijn.be/stops/300859", "https://data.delijn.be/stops/308676"], ["https://data.delijn.be/stops/200206", "https://data.delijn.be/stops/201208"], ["https://data.delijn.be/stops/300080", "https://data.delijn.be/stops/307341"], ["https://data.delijn.be/stops/303017", "https://data.delijn.be/stops/303087"], ["https://data.delijn.be/stops/204782", "https://data.delijn.be/stops/204783"], ["https://data.delijn.be/stops/305242", "https://data.delijn.be/stops/305600"], ["https://data.delijn.be/stops/104456", "https://data.delijn.be/stops/104472"], ["https://data.delijn.be/stops/300869", "https://data.delijn.be/stops/302233"], ["https://data.delijn.be/stops/305259", "https://data.delijn.be/stops/306344"], ["https://data.delijn.be/stops/308146", "https://data.delijn.be/stops/308159"], ["https://data.delijn.be/stops/101749", "https://data.delijn.be/stops/106392"], ["https://data.delijn.be/stops/301311", "https://data.delijn.be/stops/306200"], ["https://data.delijn.be/stops/406244", "https://data.delijn.be/stops/406258"], ["https://data.delijn.be/stops/101933", "https://data.delijn.be/stops/107742"], ["https://data.delijn.be/stops/302060", "https://data.delijn.be/stops/302061"], ["https://data.delijn.be/stops/302899", "https://data.delijn.be/stops/302901"], ["https://data.delijn.be/stops/400930", "https://data.delijn.be/stops/400940"], ["https://data.delijn.be/stops/202619", "https://data.delijn.be/stops/202620"], ["https://data.delijn.be/stops/401573", "https://data.delijn.be/stops/402197"], ["https://data.delijn.be/stops/200061", "https://data.delijn.be/stops/203132"], ["https://data.delijn.be/stops/303379", "https://data.delijn.be/stops/303392"], ["https://data.delijn.be/stops/500952", "https://data.delijn.be/stops/508633"], ["https://data.delijn.be/stops/103221", "https://data.delijn.be/stops/106016"], ["https://data.delijn.be/stops/104022", "https://data.delijn.be/stops/107266"], ["https://data.delijn.be/stops/101581", "https://data.delijn.be/stops/101584"], ["https://data.delijn.be/stops/400520", "https://data.delijn.be/stops/404051"], ["https://data.delijn.be/stops/308112", "https://data.delijn.be/stops/308113"], ["https://data.delijn.be/stops/508206", "https://data.delijn.be/stops/508815"], ["https://data.delijn.be/stops/102013", "https://data.delijn.be/stops/105996"], ["https://data.delijn.be/stops/107549", "https://data.delijn.be/stops/108933"], ["https://data.delijn.be/stops/304682", "https://data.delijn.be/stops/304683"], ["https://data.delijn.be/stops/408264", "https://data.delijn.be/stops/408305"], ["https://data.delijn.be/stops/403029", "https://data.delijn.be/stops/403086"], ["https://data.delijn.be/stops/206263", "https://data.delijn.be/stops/206917"], ["https://data.delijn.be/stops/305732", "https://data.delijn.be/stops/306328"], ["https://data.delijn.be/stops/400253", "https://data.delijn.be/stops/400333"], ["https://data.delijn.be/stops/307510", "https://data.delijn.be/stops/307815"], ["https://data.delijn.be/stops/101552", "https://data.delijn.be/stops/107919"], ["https://data.delijn.be/stops/208481", "https://data.delijn.be/stops/209501"], ["https://data.delijn.be/stops/300278", "https://data.delijn.be/stops/301314"], ["https://data.delijn.be/stops/305055", "https://data.delijn.be/stops/306931"], ["https://data.delijn.be/stops/101855", "https://data.delijn.be/stops/104999"], ["https://data.delijn.be/stops/103122", "https://data.delijn.be/stops/204605"], ["https://data.delijn.be/stops/303772", "https://data.delijn.be/stops/303785"], ["https://data.delijn.be/stops/405872", "https://data.delijn.be/stops/409762"], ["https://data.delijn.be/stops/504784", "https://data.delijn.be/stops/508514"], ["https://data.delijn.be/stops/205970", "https://data.delijn.be/stops/207067"], ["https://data.delijn.be/stops/504368", "https://data.delijn.be/stops/508648"], ["https://data.delijn.be/stops/301432", "https://data.delijn.be/stops/307320"], ["https://data.delijn.be/stops/202316", "https://data.delijn.be/stops/208887"], ["https://data.delijn.be/stops/400350", "https://data.delijn.be/stops/406866"], ["https://data.delijn.be/stops/103286", "https://data.delijn.be/stops/106105"], ["https://data.delijn.be/stops/403023", "https://data.delijn.be/stops/405768"], ["https://data.delijn.be/stops/305054", "https://data.delijn.be/stops/306934"], ["https://data.delijn.be/stops/307676", "https://data.delijn.be/stops/307677"], ["https://data.delijn.be/stops/206957", "https://data.delijn.be/stops/303858"], ["https://data.delijn.be/stops/300761", "https://data.delijn.be/stops/301310"], ["https://data.delijn.be/stops/107794", "https://data.delijn.be/stops/107796"], ["https://data.delijn.be/stops/102868", "https://data.delijn.be/stops/106442"], ["https://data.delijn.be/stops/206084", "https://data.delijn.be/stops/206410"], ["https://data.delijn.be/stops/510016", "https://data.delijn.be/stops/510020"], ["https://data.delijn.be/stops/301853", "https://data.delijn.be/stops/302550"], ["https://data.delijn.be/stops/406684", "https://data.delijn.be/stops/406689"], ["https://data.delijn.be/stops/508011", "https://data.delijn.be/stops/508012"], ["https://data.delijn.be/stops/207075", "https://data.delijn.be/stops/207903"], ["https://data.delijn.be/stops/207677", "https://data.delijn.be/stops/208121"], ["https://data.delijn.be/stops/105216", "https://data.delijn.be/stops/109405"], ["https://data.delijn.be/stops/302944", "https://data.delijn.be/stops/302985"], ["https://data.delijn.be/stops/503095", "https://data.delijn.be/stops/505383"], ["https://data.delijn.be/stops/404186", "https://data.delijn.be/stops/404281"], ["https://data.delijn.be/stops/204604", "https://data.delijn.be/stops/205604"], ["https://data.delijn.be/stops/301744", "https://data.delijn.be/stops/304571"], ["https://data.delijn.be/stops/503586", "https://data.delijn.be/stops/508586"], ["https://data.delijn.be/stops/508199", "https://data.delijn.be/stops/508204"], ["https://data.delijn.be/stops/304120", "https://data.delijn.be/stops/307578"], ["https://data.delijn.be/stops/407011", "https://data.delijn.be/stops/407068"], ["https://data.delijn.be/stops/101830", "https://data.delijn.be/stops/106070"], ["https://data.delijn.be/stops/406238", "https://data.delijn.be/stops/410043"], ["https://data.delijn.be/stops/109912", "https://data.delijn.be/stops/109916"], ["https://data.delijn.be/stops/104762", "https://data.delijn.be/stops/108902"], ["https://data.delijn.be/stops/102863", "https://data.delijn.be/stops/105934"], ["https://data.delijn.be/stops/205522", "https://data.delijn.be/stops/205523"], ["https://data.delijn.be/stops/306554", "https://data.delijn.be/stops/306555"], ["https://data.delijn.be/stops/406032", "https://data.delijn.be/stops/406651"], ["https://data.delijn.be/stops/501663", "https://data.delijn.be/stops/501674"], ["https://data.delijn.be/stops/302010", "https://data.delijn.be/stops/302016"], ["https://data.delijn.be/stops/404391", "https://data.delijn.be/stops/410082"], ["https://data.delijn.be/stops/209004", "https://data.delijn.be/stops/209097"], ["https://data.delijn.be/stops/301247", "https://data.delijn.be/stops/306387"], ["https://data.delijn.be/stops/505182", "https://data.delijn.be/stops/509422"], ["https://data.delijn.be/stops/507322", "https://data.delijn.be/stops/507338"], ["https://data.delijn.be/stops/501102", "https://data.delijn.be/stops/590334"], ["https://data.delijn.be/stops/106051", "https://data.delijn.be/stops/109876"], ["https://data.delijn.be/stops/508369", "https://data.delijn.be/stops/508411"], ["https://data.delijn.be/stops/508115", "https://data.delijn.be/stops/508116"], ["https://data.delijn.be/stops/102837", "https://data.delijn.be/stops/103761"], ["https://data.delijn.be/stops/206746", "https://data.delijn.be/stops/207745"], ["https://data.delijn.be/stops/106020", "https://data.delijn.be/stops/106188"], ["https://data.delijn.be/stops/501429", "https://data.delijn.be/stops/506429"], ["https://data.delijn.be/stops/206069", "https://data.delijn.be/stops/207902"], ["https://data.delijn.be/stops/302113", "https://data.delijn.be/stops/304141"], ["https://data.delijn.be/stops/301474", "https://data.delijn.be/stops/302623"], ["https://data.delijn.be/stops/303793", "https://data.delijn.be/stops/303870"], ["https://data.delijn.be/stops/505817", "https://data.delijn.be/stops/509394"], ["https://data.delijn.be/stops/504703", "https://data.delijn.be/stops/509350"], ["https://data.delijn.be/stops/404116", "https://data.delijn.be/stops/404119"], ["https://data.delijn.be/stops/303049", "https://data.delijn.be/stops/306111"], ["https://data.delijn.be/stops/203836", "https://data.delijn.be/stops/203837"], ["https://data.delijn.be/stops/202036", "https://data.delijn.be/stops/203036"], ["https://data.delijn.be/stops/505826", "https://data.delijn.be/stops/509908"], ["https://data.delijn.be/stops/209034", "https://data.delijn.be/stops/209035"], ["https://data.delijn.be/stops/300350", "https://data.delijn.be/stops/300353"], ["https://data.delijn.be/stops/305296", "https://data.delijn.be/stops/305297"], ["https://data.delijn.be/stops/410181", "https://data.delijn.be/stops/410259"], ["https://data.delijn.be/stops/102900", "https://data.delijn.be/stops/107610"], ["https://data.delijn.be/stops/202496", "https://data.delijn.be/stops/203173"], ["https://data.delijn.be/stops/208140", "https://data.delijn.be/stops/208815"], ["https://data.delijn.be/stops/307946", "https://data.delijn.be/stops/308064"], ["https://data.delijn.be/stops/500951", "https://data.delijn.be/stops/504987"], ["https://data.delijn.be/stops/106701", "https://data.delijn.be/stops/106703"], ["https://data.delijn.be/stops/509788", "https://data.delijn.be/stops/509789"], ["https://data.delijn.be/stops/202189", "https://data.delijn.be/stops/203189"], ["https://data.delijn.be/stops/302806", "https://data.delijn.be/stops/306159"], ["https://data.delijn.be/stops/407091", "https://data.delijn.be/stops/407260"], ["https://data.delijn.be/stops/105023", "https://data.delijn.be/stops/105829"], ["https://data.delijn.be/stops/206404", "https://data.delijn.be/stops/207403"], ["https://data.delijn.be/stops/104673", "https://data.delijn.be/stops/107376"], ["https://data.delijn.be/stops/105484", "https://data.delijn.be/stops/105501"], ["https://data.delijn.be/stops/408005", "https://data.delijn.be/stops/408090"], ["https://data.delijn.be/stops/108407", "https://data.delijn.be/stops/108408"], ["https://data.delijn.be/stops/203436", "https://data.delijn.be/stops/211114"], ["https://data.delijn.be/stops/202163", "https://data.delijn.be/stops/205070"], ["https://data.delijn.be/stops/200892", "https://data.delijn.be/stops/203074"], ["https://data.delijn.be/stops/305482", "https://data.delijn.be/stops/305508"], ["https://data.delijn.be/stops/301919", "https://data.delijn.be/stops/302006"], ["https://data.delijn.be/stops/302225", "https://data.delijn.be/stops/304010"], ["https://data.delijn.be/stops/508405", "https://data.delijn.be/stops/508427"], ["https://data.delijn.be/stops/105554", "https://data.delijn.be/stops/105563"], ["https://data.delijn.be/stops/403096", "https://data.delijn.be/stops/406887"], ["https://data.delijn.be/stops/502266", "https://data.delijn.be/stops/505558"], ["https://data.delijn.be/stops/405256", "https://data.delijn.be/stops/405261"], ["https://data.delijn.be/stops/302920", "https://data.delijn.be/stops/306199"], ["https://data.delijn.be/stops/200546", "https://data.delijn.be/stops/210061"], ["https://data.delijn.be/stops/300502", "https://data.delijn.be/stops/308357"], ["https://data.delijn.be/stops/109027", "https://data.delijn.be/stops/109077"], ["https://data.delijn.be/stops/304616", "https://data.delijn.be/stops/305977"], ["https://data.delijn.be/stops/101463", "https://data.delijn.be/stops/101466"], ["https://data.delijn.be/stops/400688", "https://data.delijn.be/stops/404369"], ["https://data.delijn.be/stops/104388", "https://data.delijn.be/stops/104389"], ["https://data.delijn.be/stops/105011", "https://data.delijn.be/stops/106831"], ["https://data.delijn.be/stops/201763", "https://data.delijn.be/stops/201765"], ["https://data.delijn.be/stops/103712", "https://data.delijn.be/stops/104630"], ["https://data.delijn.be/stops/300091", "https://data.delijn.be/stops/307947"], ["https://data.delijn.be/stops/200947", "https://data.delijn.be/stops/203230"], ["https://data.delijn.be/stops/301052", "https://data.delijn.be/stops/301053"], ["https://data.delijn.be/stops/404514", "https://data.delijn.be/stops/404515"], ["https://data.delijn.be/stops/402223", "https://data.delijn.be/stops/402260"], ["https://data.delijn.be/stops/502473", "https://data.delijn.be/stops/507487"], ["https://data.delijn.be/stops/305224", "https://data.delijn.be/stops/305236"], ["https://data.delijn.be/stops/301950", "https://data.delijn.be/stops/301951"], ["https://data.delijn.be/stops/103232", "https://data.delijn.be/stops/109405"], ["https://data.delijn.be/stops/102732", "https://data.delijn.be/stops/107056"], ["https://data.delijn.be/stops/401600", "https://data.delijn.be/stops/406859"], ["https://data.delijn.be/stops/303949", "https://data.delijn.be/stops/303950"], ["https://data.delijn.be/stops/206639", "https://data.delijn.be/stops/207416"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/504610"], ["https://data.delijn.be/stops/106816", "https://data.delijn.be/stops/106842"], ["https://data.delijn.be/stops/402715", "https://data.delijn.be/stops/308138"], ["https://data.delijn.be/stops/502917", "https://data.delijn.be/stops/507910"], ["https://data.delijn.be/stops/204406", "https://data.delijn.be/stops/205406"], ["https://data.delijn.be/stops/301047", "https://data.delijn.be/stops/301073"], ["https://data.delijn.be/stops/400714", "https://data.delijn.be/stops/400717"], ["https://data.delijn.be/stops/202213", "https://data.delijn.be/stops/202775"], ["https://data.delijn.be/stops/204239", "https://data.delijn.be/stops/204246"], ["https://data.delijn.be/stops/504019", "https://data.delijn.be/stops/505204"], ["https://data.delijn.be/stops/204169", "https://data.delijn.be/stops/204588"], ["https://data.delijn.be/stops/404489", "https://data.delijn.be/stops/404528"], ["https://data.delijn.be/stops/101206", "https://data.delijn.be/stops/101656"], ["https://data.delijn.be/stops/205307", "https://data.delijn.be/stops/214008"], ["https://data.delijn.be/stops/104364", "https://data.delijn.be/stops/204273"], ["https://data.delijn.be/stops/505236", "https://data.delijn.be/stops/505720"], ["https://data.delijn.be/stops/503401", "https://data.delijn.be/stops/509957"], ["https://data.delijn.be/stops/503511", "https://data.delijn.be/stops/508511"], ["https://data.delijn.be/stops/506034", "https://data.delijn.be/stops/506039"], ["https://data.delijn.be/stops/307860", "https://data.delijn.be/stops/307861"], ["https://data.delijn.be/stops/200502", "https://data.delijn.be/stops/205951"], ["https://data.delijn.be/stops/308243", "https://data.delijn.be/stops/308244"], ["https://data.delijn.be/stops/504585", "https://data.delijn.be/stops/505995"], ["https://data.delijn.be/stops/201278", "https://data.delijn.be/stops/201995"], ["https://data.delijn.be/stops/203827", "https://data.delijn.be/stops/218023"], ["https://data.delijn.be/stops/101512", "https://data.delijn.be/stops/109074"], ["https://data.delijn.be/stops/200352", "https://data.delijn.be/stops/200354"], ["https://data.delijn.be/stops/202930", "https://data.delijn.be/stops/203930"], ["https://data.delijn.be/stops/307648", "https://data.delijn.be/stops/307692"], ["https://data.delijn.be/stops/304653", "https://data.delijn.be/stops/304654"], ["https://data.delijn.be/stops/401090", "https://data.delijn.be/stops/409980"], ["https://data.delijn.be/stops/106113", "https://data.delijn.be/stops/106114"], ["https://data.delijn.be/stops/501358", "https://data.delijn.be/stops/501359"], ["https://data.delijn.be/stops/101922", "https://data.delijn.be/stops/106057"], ["https://data.delijn.be/stops/203270", "https://data.delijn.be/stops/211291"], ["https://data.delijn.be/stops/202923", "https://data.delijn.be/stops/202924"], ["https://data.delijn.be/stops/300105", "https://data.delijn.be/stops/306844"], ["https://data.delijn.be/stops/507103", "https://data.delijn.be/stops/507148"], ["https://data.delijn.be/stops/109173", "https://data.delijn.be/stops/109231"], ["https://data.delijn.be/stops/307643", "https://data.delijn.be/stops/307645"], ["https://data.delijn.be/stops/502628", "https://data.delijn.be/stops/507164"], ["https://data.delijn.be/stops/401636", "https://data.delijn.be/stops/401638"], ["https://data.delijn.be/stops/303513", "https://data.delijn.be/stops/303522"], ["https://data.delijn.be/stops/204496", "https://data.delijn.be/stops/205496"], ["https://data.delijn.be/stops/206751", "https://data.delijn.be/stops/208501"], ["https://data.delijn.be/stops/300875", "https://data.delijn.be/stops/300880"], ["https://data.delijn.be/stops/301780", "https://data.delijn.be/stops/306878"], ["https://data.delijn.be/stops/502419", "https://data.delijn.be/stops/507415"], ["https://data.delijn.be/stops/206192", "https://data.delijn.be/stops/207189"], ["https://data.delijn.be/stops/304446", "https://data.delijn.be/stops/304447"], ["https://data.delijn.be/stops/105434", "https://data.delijn.be/stops/109855"], ["https://data.delijn.be/stops/503381", "https://data.delijn.be/stops/509786"], ["https://data.delijn.be/stops/408862", "https://data.delijn.be/stops/408866"], ["https://data.delijn.be/stops/209162", "https://data.delijn.be/stops/209424"], ["https://data.delijn.be/stops/207743", "https://data.delijn.be/stops/207744"], ["https://data.delijn.be/stops/507812", "https://data.delijn.be/stops/508004"], ["https://data.delijn.be/stops/204410", "https://data.delijn.be/stops/205083"], ["https://data.delijn.be/stops/200370", "https://data.delijn.be/stops/201370"], ["https://data.delijn.be/stops/204525", "https://data.delijn.be/stops/205728"], ["https://data.delijn.be/stops/506045", "https://data.delijn.be/stops/506049"], ["https://data.delijn.be/stops/408165", "https://data.delijn.be/stops/410396"], ["https://data.delijn.be/stops/200028", "https://data.delijn.be/stops/200372"], ["https://data.delijn.be/stops/101341", "https://data.delijn.be/stops/104139"], ["https://data.delijn.be/stops/501308", "https://data.delijn.be/stops/506308"], ["https://data.delijn.be/stops/101757", "https://data.delijn.be/stops/103651"], ["https://data.delijn.be/stops/300214", "https://data.delijn.be/stops/303735"], ["https://data.delijn.be/stops/501638", "https://data.delijn.be/stops/506113"], ["https://data.delijn.be/stops/101193", "https://data.delijn.be/stops/204541"], ["https://data.delijn.be/stops/406545", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/402107", "https://data.delijn.be/stops/402217"], ["https://data.delijn.be/stops/102547", "https://data.delijn.be/stops/102550"], ["https://data.delijn.be/stops/207019", "https://data.delijn.be/stops/207107"], ["https://data.delijn.be/stops/408887", "https://data.delijn.be/stops/408913"], ["https://data.delijn.be/stops/300087", "https://data.delijn.be/stops/306855"], ["https://data.delijn.be/stops/207355", "https://data.delijn.be/stops/207725"], ["https://data.delijn.be/stops/503225", "https://data.delijn.be/stops/508225"], ["https://data.delijn.be/stops/205054", "https://data.delijn.be/stops/205065"], ["https://data.delijn.be/stops/503671", "https://data.delijn.be/stops/508673"], ["https://data.delijn.be/stops/102708", "https://data.delijn.be/stops/108040"], ["https://data.delijn.be/stops/208546", "https://data.delijn.be/stops/208614"], ["https://data.delijn.be/stops/402881", "https://data.delijn.be/stops/306391"], ["https://data.delijn.be/stops/304304", "https://data.delijn.be/stops/304324"], ["https://data.delijn.be/stops/409410", "https://data.delijn.be/stops/409411"], ["https://data.delijn.be/stops/302651", "https://data.delijn.be/stops/302652"], ["https://data.delijn.be/stops/507383", "https://data.delijn.be/stops/507725"], ["https://data.delijn.be/stops/106295", "https://data.delijn.be/stops/109480"], ["https://data.delijn.be/stops/202201", "https://data.delijn.be/stops/202505"], ["https://data.delijn.be/stops/101473", "https://data.delijn.be/stops/109269"], ["https://data.delijn.be/stops/504991", "https://data.delijn.be/stops/505797"], ["https://data.delijn.be/stops/303553", "https://data.delijn.be/stops/303558"], ["https://data.delijn.be/stops/204161", "https://data.delijn.be/stops/204167"], ["https://data.delijn.be/stops/406010", "https://data.delijn.be/stops/406131"], ["https://data.delijn.be/stops/300090", "https://data.delijn.be/stops/306862"], ["https://data.delijn.be/stops/300460", "https://data.delijn.be/stops/300467"], ["https://data.delijn.be/stops/102500", "https://data.delijn.be/stops/104161"], ["https://data.delijn.be/stops/407762", "https://data.delijn.be/stops/410319"], ["https://data.delijn.be/stops/302518", "https://data.delijn.be/stops/305873"], ["https://data.delijn.be/stops/101017", "https://data.delijn.be/stops/105070"], ["https://data.delijn.be/stops/201805", "https://data.delijn.be/stops/201832"], ["https://data.delijn.be/stops/504865", "https://data.delijn.be/stops/508094"], ["https://data.delijn.be/stops/106171", "https://data.delijn.be/stops/107442"], ["https://data.delijn.be/stops/206579", "https://data.delijn.be/stops/209680"], ["https://data.delijn.be/stops/301947", "https://data.delijn.be/stops/301948"], ["https://data.delijn.be/stops/208852", "https://data.delijn.be/stops/505602"], ["https://data.delijn.be/stops/307723", "https://data.delijn.be/stops/307725"], ["https://data.delijn.be/stops/200034", "https://data.delijn.be/stops/200391"], ["https://data.delijn.be/stops/302351", "https://data.delijn.be/stops/302355"], ["https://data.delijn.be/stops/308015", "https://data.delijn.be/stops/308016"], ["https://data.delijn.be/stops/300038", "https://data.delijn.be/stops/307730"], ["https://data.delijn.be/stops/301429", "https://data.delijn.be/stops/301446"], ["https://data.delijn.be/stops/402124", "https://data.delijn.be/stops/402125"], ["https://data.delijn.be/stops/400713", "https://data.delijn.be/stops/409500"], ["https://data.delijn.be/stops/409434", "https://data.delijn.be/stops/409435"], ["https://data.delijn.be/stops/308782", "https://data.delijn.be/stops/308925"], ["https://data.delijn.be/stops/107354", "https://data.delijn.be/stops/107357"], ["https://data.delijn.be/stops/107236", "https://data.delijn.be/stops/107243"], ["https://data.delijn.be/stops/104025", "https://data.delijn.be/stops/106900"], ["https://data.delijn.be/stops/308158", "https://data.delijn.be/stops/308180"], ["https://data.delijn.be/stops/508683", "https://data.delijn.be/stops/508685"], ["https://data.delijn.be/stops/503932", "https://data.delijn.be/stops/508009"], ["https://data.delijn.be/stops/200309", "https://data.delijn.be/stops/205358"], ["https://data.delijn.be/stops/102460", "https://data.delijn.be/stops/103369"], ["https://data.delijn.be/stops/106733", "https://data.delijn.be/stops/106734"], ["https://data.delijn.be/stops/408378", "https://data.delijn.be/stops/408379"], ["https://data.delijn.be/stops/101620", "https://data.delijn.be/stops/102808"], ["https://data.delijn.be/stops/200754", "https://data.delijn.be/stops/200769"], ["https://data.delijn.be/stops/404148", "https://data.delijn.be/stops/404182"], ["https://data.delijn.be/stops/200337", "https://data.delijn.be/stops/208730"], ["https://data.delijn.be/stops/408327", "https://data.delijn.be/stops/408339"], ["https://data.delijn.be/stops/107003", "https://data.delijn.be/stops/107004"], ["https://data.delijn.be/stops/403115", "https://data.delijn.be/stops/403116"], ["https://data.delijn.be/stops/302248", "https://data.delijn.be/stops/302249"], ["https://data.delijn.be/stops/502122", "https://data.delijn.be/stops/502147"], ["https://data.delijn.be/stops/407193", "https://data.delijn.be/stops/409514"], ["https://data.delijn.be/stops/200676", "https://data.delijn.be/stops/201460"], ["https://data.delijn.be/stops/503696", "https://data.delijn.be/stops/509948"], ["https://data.delijn.be/stops/108944", "https://data.delijn.be/stops/109224"], ["https://data.delijn.be/stops/300336", "https://data.delijn.be/stops/300338"], ["https://data.delijn.be/stops/206679", "https://data.delijn.be/stops/209102"], ["https://data.delijn.be/stops/509415", "https://data.delijn.be/stops/509435"], ["https://data.delijn.be/stops/200931", "https://data.delijn.be/stops/203235"], ["https://data.delijn.be/stops/102012", "https://data.delijn.be/stops/102078"], ["https://data.delijn.be/stops/303291", "https://data.delijn.be/stops/306970"], ["https://data.delijn.be/stops/405592", "https://data.delijn.be/stops/405604"], ["https://data.delijn.be/stops/502631", "https://data.delijn.be/stops/507455"], ["https://data.delijn.be/stops/107538", "https://data.delijn.be/stops/303880"], ["https://data.delijn.be/stops/202053", "https://data.delijn.be/stops/203356"], ["https://data.delijn.be/stops/200090", "https://data.delijn.be/stops/201479"], ["https://data.delijn.be/stops/106641", "https://data.delijn.be/stops/106643"], ["https://data.delijn.be/stops/501310", "https://data.delijn.be/stops/506222"], ["https://data.delijn.be/stops/105477", "https://data.delijn.be/stops/105479"], ["https://data.delijn.be/stops/104665", "https://data.delijn.be/stops/104670"], ["https://data.delijn.be/stops/302214", "https://data.delijn.be/stops/302226"], ["https://data.delijn.be/stops/402881", "https://data.delijn.be/stops/402944"], ["https://data.delijn.be/stops/208595", "https://data.delijn.be/stops/208679"], ["https://data.delijn.be/stops/402262", "https://data.delijn.be/stops/402401"], ["https://data.delijn.be/stops/503447", "https://data.delijn.be/stops/503461"], ["https://data.delijn.be/stops/405640", "https://data.delijn.be/stops/410339"], ["https://data.delijn.be/stops/202622", "https://data.delijn.be/stops/203622"], ["https://data.delijn.be/stops/503435", "https://data.delijn.be/stops/504872"], ["https://data.delijn.be/stops/204198", "https://data.delijn.be/stops/204199"], ["https://data.delijn.be/stops/107458", "https://data.delijn.be/stops/107459"], ["https://data.delijn.be/stops/401024", "https://data.delijn.be/stops/401025"], ["https://data.delijn.be/stops/101484", "https://data.delijn.be/stops/101957"], ["https://data.delijn.be/stops/504117", "https://data.delijn.be/stops/509120"], ["https://data.delijn.be/stops/102618", "https://data.delijn.be/stops/108208"], ["https://data.delijn.be/stops/303428", "https://data.delijn.be/stops/303435"], ["https://data.delijn.be/stops/408235", "https://data.delijn.be/stops/308204"], ["https://data.delijn.be/stops/505057", "https://data.delijn.be/stops/505646"], ["https://data.delijn.be/stops/405852", "https://data.delijn.be/stops/409755"], ["https://data.delijn.be/stops/509451", "https://data.delijn.be/stops/509452"], ["https://data.delijn.be/stops/401996", "https://data.delijn.be/stops/406988"], ["https://data.delijn.be/stops/308453", "https://data.delijn.be/stops/308692"], ["https://data.delijn.be/stops/504443", "https://data.delijn.be/stops/504445"], ["https://data.delijn.be/stops/305175", "https://data.delijn.be/stops/308905"], ["https://data.delijn.be/stops/108299", "https://data.delijn.be/stops/108326"], ["https://data.delijn.be/stops/504378", "https://data.delijn.be/stops/507958"], ["https://data.delijn.be/stops/206082", "https://data.delijn.be/stops/206265"], ["https://data.delijn.be/stops/509165", "https://data.delijn.be/stops/509645"], ["https://data.delijn.be/stops/503925", "https://data.delijn.be/stops/507698"], ["https://data.delijn.be/stops/206077", "https://data.delijn.be/stops/206889"], ["https://data.delijn.be/stops/106267", "https://data.delijn.be/stops/106341"], ["https://data.delijn.be/stops/501292", "https://data.delijn.be/stops/501525"], ["https://data.delijn.be/stops/106450", "https://data.delijn.be/stops/106460"], ["https://data.delijn.be/stops/505056", "https://data.delijn.be/stops/505658"], ["https://data.delijn.be/stops/504255", "https://data.delijn.be/stops/504304"], ["https://data.delijn.be/stops/108573", "https://data.delijn.be/stops/108993"], ["https://data.delijn.be/stops/307936", "https://data.delijn.be/stops/307938"], ["https://data.delijn.be/stops/404474", "https://data.delijn.be/stops/404584"], ["https://data.delijn.be/stops/206049", "https://data.delijn.be/stops/206162"], ["https://data.delijn.be/stops/206597", "https://data.delijn.be/stops/206598"], ["https://data.delijn.be/stops/507027", "https://data.delijn.be/stops/507042"], ["https://data.delijn.be/stops/407854", "https://data.delijn.be/stops/407897"], ["https://data.delijn.be/stops/102179", "https://data.delijn.be/stops/102790"], ["https://data.delijn.be/stops/401066", "https://data.delijn.be/stops/401172"], ["https://data.delijn.be/stops/200722", "https://data.delijn.be/stops/210256"], ["https://data.delijn.be/stops/407582", "https://data.delijn.be/stops/408893"], ["https://data.delijn.be/stops/503437", "https://data.delijn.be/stops/508437"], ["https://data.delijn.be/stops/404253", "https://data.delijn.be/stops/404308"], ["https://data.delijn.be/stops/208004", "https://data.delijn.be/stops/208005"], ["https://data.delijn.be/stops/203821", "https://data.delijn.be/stops/203890"], ["https://data.delijn.be/stops/200686", "https://data.delijn.be/stops/202750"], ["https://data.delijn.be/stops/505627", "https://data.delijn.be/stops/507708"], ["https://data.delijn.be/stops/206506", "https://data.delijn.be/stops/207145"], ["https://data.delijn.be/stops/203794", "https://data.delijn.be/stops/203796"], ["https://data.delijn.be/stops/107521", "https://data.delijn.be/stops/107522"], ["https://data.delijn.be/stops/404205", "https://data.delijn.be/stops/404206"], ["https://data.delijn.be/stops/504755", "https://data.delijn.be/stops/509755"], ["https://data.delijn.be/stops/305409", "https://data.delijn.be/stops/305925"], ["https://data.delijn.be/stops/402266", "https://data.delijn.be/stops/402268"], ["https://data.delijn.be/stops/201667", "https://data.delijn.be/stops/203400"], ["https://data.delijn.be/stops/200641", "https://data.delijn.be/stops/201219"], ["https://data.delijn.be/stops/104974", "https://data.delijn.be/stops/109769"], ["https://data.delijn.be/stops/403103", "https://data.delijn.be/stops/403118"], ["https://data.delijn.be/stops/204195", "https://data.delijn.be/stops/205193"], ["https://data.delijn.be/stops/108454", "https://data.delijn.be/stops/108508"], ["https://data.delijn.be/stops/304868", "https://data.delijn.be/stops/306267"], ["https://data.delijn.be/stops/207441", "https://data.delijn.be/stops/209086"], ["https://data.delijn.be/stops/101674", "https://data.delijn.be/stops/408809"], ["https://data.delijn.be/stops/201501", "https://data.delijn.be/stops/211087"], ["https://data.delijn.be/stops/300244", "https://data.delijn.be/stops/305926"], ["https://data.delijn.be/stops/101262", "https://data.delijn.be/stops/108800"], ["https://data.delijn.be/stops/104468", "https://data.delijn.be/stops/307524"], ["https://data.delijn.be/stops/202064", "https://data.delijn.be/stops/507596"], ["https://data.delijn.be/stops/407399", "https://data.delijn.be/stops/407404"], ["https://data.delijn.be/stops/504064", "https://data.delijn.be/stops/504067"], ["https://data.delijn.be/stops/403365", "https://data.delijn.be/stops/403519"], ["https://data.delijn.be/stops/101344", "https://data.delijn.be/stops/108364"], ["https://data.delijn.be/stops/503096", "https://data.delijn.be/stops/503097"], ["https://data.delijn.be/stops/101531", "https://data.delijn.be/stops/109556"], ["https://data.delijn.be/stops/405963", "https://data.delijn.be/stops/405987"], ["https://data.delijn.be/stops/300017", "https://data.delijn.be/stops/301991"], ["https://data.delijn.be/stops/206490", "https://data.delijn.be/stops/207491"], ["https://data.delijn.be/stops/400954", "https://data.delijn.be/stops/400955"], ["https://data.delijn.be/stops/103042", "https://data.delijn.be/stops/107529"], ["https://data.delijn.be/stops/102251", "https://data.delijn.be/stops/109032"], ["https://data.delijn.be/stops/101512", "https://data.delijn.be/stops/305994"], ["https://data.delijn.be/stops/106434", "https://data.delijn.be/stops/106435"], ["https://data.delijn.be/stops/303573", "https://data.delijn.be/stops/306397"], ["https://data.delijn.be/stops/206129", "https://data.delijn.be/stops/207650"], ["https://data.delijn.be/stops/200316", "https://data.delijn.be/stops/201729"], ["https://data.delijn.be/stops/101083", "https://data.delijn.be/stops/104459"], ["https://data.delijn.be/stops/300824", "https://data.delijn.be/stops/300856"], ["https://data.delijn.be/stops/503410", "https://data.delijn.be/stops/508419"], ["https://data.delijn.be/stops/400806", "https://data.delijn.be/stops/405666"], ["https://data.delijn.be/stops/301810", "https://data.delijn.be/stops/304669"], ["https://data.delijn.be/stops/403600", "https://data.delijn.be/stops/407525"], ["https://data.delijn.be/stops/201840", "https://data.delijn.be/stops/203320"], ["https://data.delijn.be/stops/407245", "https://data.delijn.be/stops/407558"], ["https://data.delijn.be/stops/306699", "https://data.delijn.be/stops/306700"], ["https://data.delijn.be/stops/202549", "https://data.delijn.be/stops/203550"], ["https://data.delijn.be/stops/504092", "https://data.delijn.be/stops/504981"], ["https://data.delijn.be/stops/206122", "https://data.delijn.be/stops/207138"], ["https://data.delijn.be/stops/308514", "https://data.delijn.be/stops/308515"], ["https://data.delijn.be/stops/204026", "https://data.delijn.be/stops/205026"], ["https://data.delijn.be/stops/208631", "https://data.delijn.be/stops/209511"], ["https://data.delijn.be/stops/506201", "https://data.delijn.be/stops/506257"], ["https://data.delijn.be/stops/503495", "https://data.delijn.be/stops/508501"], ["https://data.delijn.be/stops/502268", "https://data.delijn.be/stops/505671"], ["https://data.delijn.be/stops/202597", "https://data.delijn.be/stops/210077"], ["https://data.delijn.be/stops/504211", "https://data.delijn.be/stops/504214"], ["https://data.delijn.be/stops/301678", "https://data.delijn.be/stops/301686"], ["https://data.delijn.be/stops/206260", "https://data.delijn.be/stops/206262"], ["https://data.delijn.be/stops/306809", "https://data.delijn.be/stops/308407"], ["https://data.delijn.be/stops/407705", "https://data.delijn.be/stops/407708"], ["https://data.delijn.be/stops/209574", "https://data.delijn.be/stops/307310"], ["https://data.delijn.be/stops/202951", "https://data.delijn.be/stops/203951"], ["https://data.delijn.be/stops/101440", "https://data.delijn.be/stops/101815"], ["https://data.delijn.be/stops/506292", "https://data.delijn.be/stops/506742"], ["https://data.delijn.be/stops/102516", "https://data.delijn.be/stops/406464"], ["https://data.delijn.be/stops/204420", "https://data.delijn.be/stops/204829"], ["https://data.delijn.be/stops/101926", "https://data.delijn.be/stops/102899"], ["https://data.delijn.be/stops/205989", "https://data.delijn.be/stops/208549"], ["https://data.delijn.be/stops/106987", "https://data.delijn.be/stops/106988"], ["https://data.delijn.be/stops/504001", "https://data.delijn.be/stops/509001"], ["https://data.delijn.be/stops/102900", "https://data.delijn.be/stops/108485"], ["https://data.delijn.be/stops/301410", "https://data.delijn.be/stops/308411"], ["https://data.delijn.be/stops/300484", "https://data.delijn.be/stops/302863"], ["https://data.delijn.be/stops/300531", "https://data.delijn.be/stops/300533"], ["https://data.delijn.be/stops/208024", "https://data.delijn.be/stops/209029"], ["https://data.delijn.be/stops/307758", "https://data.delijn.be/stops/307760"], ["https://data.delijn.be/stops/407446", "https://data.delijn.be/stops/407500"], ["https://data.delijn.be/stops/200834", "https://data.delijn.be/stops/203302"], ["https://data.delijn.be/stops/102865", "https://data.delijn.be/stops/104890"], ["https://data.delijn.be/stops/104899", "https://data.delijn.be/stops/107548"], ["https://data.delijn.be/stops/502622", "https://data.delijn.be/stops/507431"], ["https://data.delijn.be/stops/204055", "https://data.delijn.be/stops/205056"], ["https://data.delijn.be/stops/107251", "https://data.delijn.be/stops/107254"], ["https://data.delijn.be/stops/208682", "https://data.delijn.be/stops/208683"], ["https://data.delijn.be/stops/106133", "https://data.delijn.be/stops/106134"], ["https://data.delijn.be/stops/208623", "https://data.delijn.be/stops/209622"], ["https://data.delijn.be/stops/201947", "https://data.delijn.be/stops/202453"], ["https://data.delijn.be/stops/408922", "https://data.delijn.be/stops/408925"], ["https://data.delijn.be/stops/206564", "https://data.delijn.be/stops/206997"], ["https://data.delijn.be/stops/404095", "https://data.delijn.be/stops/404110"], ["https://data.delijn.be/stops/200874", "https://data.delijn.be/stops/202077"], ["https://data.delijn.be/stops/404681", "https://data.delijn.be/stops/404683"], ["https://data.delijn.be/stops/206436", "https://data.delijn.be/stops/209689"], ["https://data.delijn.be/stops/301922", "https://data.delijn.be/stops/307835"], ["https://data.delijn.be/stops/303563", "https://data.delijn.be/stops/304125"], ["https://data.delijn.be/stops/409211", "https://data.delijn.be/stops/409215"], ["https://data.delijn.be/stops/406248", "https://data.delijn.be/stops/406249"], ["https://data.delijn.be/stops/204378", "https://data.delijn.be/stops/205376"], ["https://data.delijn.be/stops/405610", "https://data.delijn.be/stops/407156"], ["https://data.delijn.be/stops/400710", "https://data.delijn.be/stops/400720"], ["https://data.delijn.be/stops/204433", "https://data.delijn.be/stops/205432"], ["https://data.delijn.be/stops/503778", "https://data.delijn.be/stops/503781"], ["https://data.delijn.be/stops/400438", "https://data.delijn.be/stops/400441"], ["https://data.delijn.be/stops/505425", "https://data.delijn.be/stops/508150"], ["https://data.delijn.be/stops/508194", "https://data.delijn.be/stops/508201"], ["https://data.delijn.be/stops/210106", "https://data.delijn.be/stops/211009"], ["https://data.delijn.be/stops/202638", "https://data.delijn.be/stops/205072"], ["https://data.delijn.be/stops/406202", "https://data.delijn.be/stops/406203"], ["https://data.delijn.be/stops/300607", "https://data.delijn.be/stops/300608"], ["https://data.delijn.be/stops/402765", "https://data.delijn.be/stops/402791"], ["https://data.delijn.be/stops/508416", "https://data.delijn.be/stops/508438"], ["https://data.delijn.be/stops/304784", "https://data.delijn.be/stops/306685"], ["https://data.delijn.be/stops/303426", "https://data.delijn.be/stops/303430"], ["https://data.delijn.be/stops/404071", "https://data.delijn.be/stops/409266"], ["https://data.delijn.be/stops/103688", "https://data.delijn.be/stops/109432"], ["https://data.delijn.be/stops/408684", "https://data.delijn.be/stops/408688"], ["https://data.delijn.be/stops/203215", "https://data.delijn.be/stops/203224"], ["https://data.delijn.be/stops/504336", "https://data.delijn.be/stops/509331"], ["https://data.delijn.be/stops/206816", "https://data.delijn.be/stops/207817"], ["https://data.delijn.be/stops/107446", "https://data.delijn.be/stops/107448"], ["https://data.delijn.be/stops/508750", "https://data.delijn.be/stops/509783"], ["https://data.delijn.be/stops/302023", "https://data.delijn.be/stops/302047"], ["https://data.delijn.be/stops/405771", "https://data.delijn.be/stops/405841"], ["https://data.delijn.be/stops/107111", "https://data.delijn.be/stops/107113"], ["https://data.delijn.be/stops/105496", "https://data.delijn.be/stops/105497"], ["https://data.delijn.be/stops/206955", "https://data.delijn.be/stops/207954"], ["https://data.delijn.be/stops/206971", "https://data.delijn.be/stops/207971"], ["https://data.delijn.be/stops/301410", "https://data.delijn.be/stops/307269"], ["https://data.delijn.be/stops/300095", "https://data.delijn.be/stops/300099"], ["https://data.delijn.be/stops/405106", "https://data.delijn.be/stops/405108"], ["https://data.delijn.be/stops/308128", "https://data.delijn.be/stops/308129"], ["https://data.delijn.be/stops/406370", "https://data.delijn.be/stops/409884"], ["https://data.delijn.be/stops/307337", "https://data.delijn.be/stops/308833"], ["https://data.delijn.be/stops/107085", "https://data.delijn.be/stops/108775"], ["https://data.delijn.be/stops/505923", "https://data.delijn.be/stops/505972"], ["https://data.delijn.be/stops/208436", "https://data.delijn.be/stops/209436"], ["https://data.delijn.be/stops/408247", "https://data.delijn.be/stops/308194"], ["https://data.delijn.be/stops/504046", "https://data.delijn.be/stops/509046"], ["https://data.delijn.be/stops/201080", "https://data.delijn.be/stops/201121"], ["https://data.delijn.be/stops/301583", "https://data.delijn.be/stops/301590"], ["https://data.delijn.be/stops/300227", "https://data.delijn.be/stops/307131"], ["https://data.delijn.be/stops/303847", "https://data.delijn.be/stops/303871"], ["https://data.delijn.be/stops/208014", "https://data.delijn.be/stops/209013"], ["https://data.delijn.be/stops/301848", "https://data.delijn.be/stops/301850"], ["https://data.delijn.be/stops/405166", "https://data.delijn.be/stops/405167"], ["https://data.delijn.be/stops/400094", "https://data.delijn.be/stops/400095"], ["https://data.delijn.be/stops/300501", "https://data.delijn.be/stops/300502"], ["https://data.delijn.be/stops/503158", "https://data.delijn.be/stops/503175"], ["https://data.delijn.be/stops/304267", "https://data.delijn.be/stops/304268"], ["https://data.delijn.be/stops/203230", "https://data.delijn.be/stops/203231"], ["https://data.delijn.be/stops/308655", "https://data.delijn.be/stops/308656"], ["https://data.delijn.be/stops/104365", "https://data.delijn.be/stops/104375"], ["https://data.delijn.be/stops/504548", "https://data.delijn.be/stops/504553"], ["https://data.delijn.be/stops/207791", "https://data.delijn.be/stops/208409"], ["https://data.delijn.be/stops/503542", "https://data.delijn.be/stops/508548"], ["https://data.delijn.be/stops/201478", "https://data.delijn.be/stops/211072"], ["https://data.delijn.be/stops/101154", "https://data.delijn.be/stops/103308"], ["https://data.delijn.be/stops/303709", "https://data.delijn.be/stops/303733"], ["https://data.delijn.be/stops/506337", "https://data.delijn.be/stops/506480"], ["https://data.delijn.be/stops/408600", "https://data.delijn.be/stops/408601"], ["https://data.delijn.be/stops/208045", "https://data.delijn.be/stops/208046"], ["https://data.delijn.be/stops/400145", "https://data.delijn.be/stops/405537"], ["https://data.delijn.be/stops/206146", "https://data.delijn.be/stops/206321"], ["https://data.delijn.be/stops/505970", "https://data.delijn.be/stops/505997"], ["https://data.delijn.be/stops/101462", "https://data.delijn.be/stops/109282"], ["https://data.delijn.be/stops/201847", "https://data.delijn.be/stops/202654"], ["https://data.delijn.be/stops/109054", "https://data.delijn.be/stops/109067"], ["https://data.delijn.be/stops/401479", "https://data.delijn.be/stops/401581"], ["https://data.delijn.be/stops/308194", "https://data.delijn.be/stops/308195"], ["https://data.delijn.be/stops/107077", "https://data.delijn.be/stops/107078"], ["https://data.delijn.be/stops/503221", "https://data.delijn.be/stops/508219"], ["https://data.delijn.be/stops/400109", "https://data.delijn.be/stops/400144"], ["https://data.delijn.be/stops/305025", "https://data.delijn.be/stops/305026"], ["https://data.delijn.be/stops/200729", "https://data.delijn.be/stops/203591"], ["https://data.delijn.be/stops/301443", "https://data.delijn.be/stops/301444"], ["https://data.delijn.be/stops/104732", "https://data.delijn.be/stops/204273"], ["https://data.delijn.be/stops/509886", "https://data.delijn.be/stops/509887"], ["https://data.delijn.be/stops/200485", "https://data.delijn.be/stops/208732"], ["https://data.delijn.be/stops/400730", "https://data.delijn.be/stops/406601"], ["https://data.delijn.be/stops/505320", "https://data.delijn.be/stops/505654"], ["https://data.delijn.be/stops/300083", "https://data.delijn.be/stops/307344"], ["https://data.delijn.be/stops/303136", "https://data.delijn.be/stops/306086"], ["https://data.delijn.be/stops/405512", "https://data.delijn.be/stops/405671"], ["https://data.delijn.be/stops/404933", "https://data.delijn.be/stops/404941"], ["https://data.delijn.be/stops/104043", "https://data.delijn.be/stops/108414"], ["https://data.delijn.be/stops/508725", "https://data.delijn.be/stops/509938"], ["https://data.delijn.be/stops/503865", "https://data.delijn.be/stops/508964"], ["https://data.delijn.be/stops/301984", "https://data.delijn.be/stops/301986"], ["https://data.delijn.be/stops/204211", "https://data.delijn.be/stops/206385"], ["https://data.delijn.be/stops/402323", "https://data.delijn.be/stops/402626"], ["https://data.delijn.be/stops/207256", "https://data.delijn.be/stops/207257"], ["https://data.delijn.be/stops/101419", "https://data.delijn.be/stops/107269"], ["https://data.delijn.be/stops/505268", "https://data.delijn.be/stops/508333"], ["https://data.delijn.be/stops/403352", "https://data.delijn.be/stops/405636"], ["https://data.delijn.be/stops/402369", "https://data.delijn.be/stops/405573"], ["https://data.delijn.be/stops/501600", "https://data.delijn.be/stops/501601"], ["https://data.delijn.be/stops/208358", "https://data.delijn.be/stops/209192"], ["https://data.delijn.be/stops/409287", "https://data.delijn.be/stops/409319"], ["https://data.delijn.be/stops/503809", "https://data.delijn.be/stops/508812"], ["https://data.delijn.be/stops/102582", "https://data.delijn.be/stops/105150"], ["https://data.delijn.be/stops/208348", "https://data.delijn.be/stops/208784"], ["https://data.delijn.be/stops/505843", "https://data.delijn.be/stops/508780"], ["https://data.delijn.be/stops/102842", "https://data.delijn.be/stops/103047"], ["https://data.delijn.be/stops/302448", "https://data.delijn.be/stops/302449"], ["https://data.delijn.be/stops/407052", "https://data.delijn.be/stops/410016"], ["https://data.delijn.be/stops/209596", "https://data.delijn.be/stops/218012"], ["https://data.delijn.be/stops/101191", "https://data.delijn.be/stops/205542"], ["https://data.delijn.be/stops/302677", "https://data.delijn.be/stops/302680"], ["https://data.delijn.be/stops/408191", "https://data.delijn.be/stops/408257"], ["https://data.delijn.be/stops/508760", "https://data.delijn.be/stops/509743"], ["https://data.delijn.be/stops/108684", "https://data.delijn.be/stops/108685"], ["https://data.delijn.be/stops/304994", "https://data.delijn.be/stops/305035"], ["https://data.delijn.be/stops/303146", "https://data.delijn.be/stops/305442"], ["https://data.delijn.be/stops/505038", "https://data.delijn.be/stops/506126"], ["https://data.delijn.be/stops/406358", "https://data.delijn.be/stops/406359"], ["https://data.delijn.be/stops/304116", "https://data.delijn.be/stops/305341"], ["https://data.delijn.be/stops/104975", "https://data.delijn.be/stops/104980"], ["https://data.delijn.be/stops/505416", "https://data.delijn.be/stops/507370"], ["https://data.delijn.be/stops/201701", "https://data.delijn.be/stops/203610"], ["https://data.delijn.be/stops/504642", "https://data.delijn.be/stops/509647"], ["https://data.delijn.be/stops/504167", "https://data.delijn.be/stops/509169"], ["https://data.delijn.be/stops/105309", "https://data.delijn.be/stops/105396"], ["https://data.delijn.be/stops/402408", "https://data.delijn.be/stops/402430"], ["https://data.delijn.be/stops/405472", "https://data.delijn.be/stops/405484"], ["https://data.delijn.be/stops/202250", "https://data.delijn.be/stops/202251"], ["https://data.delijn.be/stops/108358", "https://data.delijn.be/stops/109012"], ["https://data.delijn.be/stops/206467", "https://data.delijn.be/stops/206469"], ["https://data.delijn.be/stops/206675", "https://data.delijn.be/stops/209163"], ["https://data.delijn.be/stops/402698", "https://data.delijn.be/stops/402743"], ["https://data.delijn.be/stops/105432", "https://data.delijn.be/stops/109953"], ["https://data.delijn.be/stops/303032", "https://data.delijn.be/stops/308654"], ["https://data.delijn.be/stops/106586", "https://data.delijn.be/stops/107276"], ["https://data.delijn.be/stops/402392", "https://data.delijn.be/stops/402394"], ["https://data.delijn.be/stops/106518", "https://data.delijn.be/stops/106520"], ["https://data.delijn.be/stops/305428", "https://data.delijn.be/stops/305434"], ["https://data.delijn.be/stops/307650", "https://data.delijn.be/stops/307693"], ["https://data.delijn.be/stops/201936", "https://data.delijn.be/stops/207407"], ["https://data.delijn.be/stops/209279", "https://data.delijn.be/stops/209398"], ["https://data.delijn.be/stops/403906", "https://data.delijn.be/stops/403914"], ["https://data.delijn.be/stops/504118", "https://data.delijn.be/stops/509119"], ["https://data.delijn.be/stops/208581", "https://data.delijn.be/stops/307322"], ["https://data.delijn.be/stops/103334", "https://data.delijn.be/stops/107046"], ["https://data.delijn.be/stops/208059", "https://data.delijn.be/stops/217004"], ["https://data.delijn.be/stops/401870", "https://data.delijn.be/stops/406124"], ["https://data.delijn.be/stops/102050", "https://data.delijn.be/stops/102800"], ["https://data.delijn.be/stops/200867", "https://data.delijn.be/stops/202336"], ["https://data.delijn.be/stops/105123", "https://data.delijn.be/stops/105127"], ["https://data.delijn.be/stops/204036", "https://data.delijn.be/stops/204558"], ["https://data.delijn.be/stops/503485", "https://data.delijn.be/stops/503989"], ["https://data.delijn.be/stops/208111", "https://data.delijn.be/stops/208387"], ["https://data.delijn.be/stops/303280", "https://data.delijn.be/stops/308938"], ["https://data.delijn.be/stops/102872", "https://data.delijn.be/stops/105456"], ["https://data.delijn.be/stops/507184", "https://data.delijn.be/stops/507667"], ["https://data.delijn.be/stops/200578", "https://data.delijn.be/stops/201579"], ["https://data.delijn.be/stops/106637", "https://data.delijn.be/stops/106638"], ["https://data.delijn.be/stops/302037", "https://data.delijn.be/stops/303895"], ["https://data.delijn.be/stops/406944", "https://data.delijn.be/stops/409453"], ["https://data.delijn.be/stops/304650", "https://data.delijn.be/stops/307982"], ["https://data.delijn.be/stops/502252", "https://data.delijn.be/stops/502253"], ["https://data.delijn.be/stops/204142", "https://data.delijn.be/stops/206898"], ["https://data.delijn.be/stops/504734", "https://data.delijn.be/stops/506768"], ["https://data.delijn.be/stops/206484", "https://data.delijn.be/stops/206485"], ["https://data.delijn.be/stops/204712", "https://data.delijn.be/stops/205714"], ["https://data.delijn.be/stops/104345", "https://data.delijn.be/stops/107070"], ["https://data.delijn.be/stops/503807", "https://data.delijn.be/stops/508807"], ["https://data.delijn.be/stops/200222", "https://data.delijn.be/stops/201987"], ["https://data.delijn.be/stops/102870", "https://data.delijn.be/stops/103610"], ["https://data.delijn.be/stops/300351", "https://data.delijn.be/stops/304693"], ["https://data.delijn.be/stops/401013", "https://data.delijn.be/stops/401016"], ["https://data.delijn.be/stops/304512", "https://data.delijn.be/stops/305606"], ["https://data.delijn.be/stops/302834", "https://data.delijn.be/stops/306774"], ["https://data.delijn.be/stops/505203", "https://data.delijn.be/stops/507011"], ["https://data.delijn.be/stops/108635", "https://data.delijn.be/stops/109773"], ["https://data.delijn.be/stops/106396", "https://data.delijn.be/stops/106573"], ["https://data.delijn.be/stops/500559", "https://data.delijn.be/stops/506037"], ["https://data.delijn.be/stops/204390", "https://data.delijn.be/stops/205390"], ["https://data.delijn.be/stops/200921", "https://data.delijn.be/stops/200946"], ["https://data.delijn.be/stops/206901", "https://data.delijn.be/stops/207034"], ["https://data.delijn.be/stops/504340", "https://data.delijn.be/stops/509339"], ["https://data.delijn.be/stops/402204", "https://data.delijn.be/stops/402499"], ["https://data.delijn.be/stops/107575", "https://data.delijn.be/stops/107746"], ["https://data.delijn.be/stops/203429", "https://data.delijn.be/stops/204939"], ["https://data.delijn.be/stops/200214", "https://data.delijn.be/stops/203545"], ["https://data.delijn.be/stops/502547", "https://data.delijn.be/stops/505025"], ["https://data.delijn.be/stops/203662", "https://data.delijn.be/stops/210007"], ["https://data.delijn.be/stops/409055", "https://data.delijn.be/stops/409069"], ["https://data.delijn.be/stops/401964", "https://data.delijn.be/stops/401990"], ["https://data.delijn.be/stops/301716", "https://data.delijn.be/stops/308424"], ["https://data.delijn.be/stops/306931", "https://data.delijn.be/stops/308724"], ["https://data.delijn.be/stops/105546", "https://data.delijn.be/stops/107234"], ["https://data.delijn.be/stops/300059", "https://data.delijn.be/stops/300060"], ["https://data.delijn.be/stops/304571", "https://data.delijn.be/stops/308878"], ["https://data.delijn.be/stops/407075", "https://data.delijn.be/stops/407775"], ["https://data.delijn.be/stops/308232", "https://data.delijn.be/stops/308234"], ["https://data.delijn.be/stops/205269", "https://data.delijn.be/stops/205286"], ["https://data.delijn.be/stops/401172", "https://data.delijn.be/stops/407169"], ["https://data.delijn.be/stops/409696", "https://data.delijn.be/stops/409701"], ["https://data.delijn.be/stops/206816", "https://data.delijn.be/stops/207291"], ["https://data.delijn.be/stops/504719", "https://data.delijn.be/stops/508562"], ["https://data.delijn.be/stops/106483", "https://data.delijn.be/stops/106484"], ["https://data.delijn.be/stops/407230", "https://data.delijn.be/stops/408597"], ["https://data.delijn.be/stops/205381", "https://data.delijn.be/stops/205382"], ["https://data.delijn.be/stops/508509", "https://data.delijn.be/stops/509824"], ["https://data.delijn.be/stops/505211", "https://data.delijn.be/stops/505898"], ["https://data.delijn.be/stops/208656", "https://data.delijn.be/stops/209638"], ["https://data.delijn.be/stops/407617", "https://data.delijn.be/stops/407674"], ["https://data.delijn.be/stops/104773", "https://data.delijn.be/stops/108150"], ["https://data.delijn.be/stops/302223", "https://data.delijn.be/stops/306277"], ["https://data.delijn.be/stops/202674", "https://data.delijn.be/stops/202726"], ["https://data.delijn.be/stops/400711", "https://data.delijn.be/stops/409504"], ["https://data.delijn.be/stops/300623", "https://data.delijn.be/stops/300626"], ["https://data.delijn.be/stops/202895", "https://data.delijn.be/stops/204357"], ["https://data.delijn.be/stops/502035", "https://data.delijn.be/stops/507604"], ["https://data.delijn.be/stops/202244", "https://data.delijn.be/stops/202500"], ["https://data.delijn.be/stops/302165", "https://data.delijn.be/stops/308099"], ["https://data.delijn.be/stops/502004", "https://data.delijn.be/stops/507007"], ["https://data.delijn.be/stops/402800", "https://data.delijn.be/stops/407080"], ["https://data.delijn.be/stops/301718", "https://data.delijn.be/stops/301754"], ["https://data.delijn.be/stops/304725", "https://data.delijn.be/stops/308652"], ["https://data.delijn.be/stops/400160", "https://data.delijn.be/stops/410278"], ["https://data.delijn.be/stops/102874", "https://data.delijn.be/stops/103710"], ["https://data.delijn.be/stops/505692", "https://data.delijn.be/stops/505703"], ["https://data.delijn.be/stops/204212", "https://data.delijn.be/stops/207392"], ["https://data.delijn.be/stops/200728", "https://data.delijn.be/stops/203572"], ["https://data.delijn.be/stops/402220", "https://data.delijn.be/stops/402383"], ["https://data.delijn.be/stops/300318", "https://data.delijn.be/stops/300321"], ["https://data.delijn.be/stops/204639", "https://data.delijn.be/stops/205639"], ["https://data.delijn.be/stops/302910", "https://data.delijn.be/stops/304711"], ["https://data.delijn.be/stops/502080", "https://data.delijn.be/stops/502410"], ["https://data.delijn.be/stops/502767", "https://data.delijn.be/stops/507116"], ["https://data.delijn.be/stops/211014", "https://data.delijn.be/stops/507277"], ["https://data.delijn.be/stops/208151", "https://data.delijn.be/stops/208153"], ["https://data.delijn.be/stops/103275", "https://data.delijn.be/stops/107035"], ["https://data.delijn.be/stops/200923", "https://data.delijn.be/stops/202724"], ["https://data.delijn.be/stops/505147", "https://data.delijn.be/stops/505721"], ["https://data.delijn.be/stops/108062", "https://data.delijn.be/stops/108064"], ["https://data.delijn.be/stops/304834", "https://data.delijn.be/stops/305434"], ["https://data.delijn.be/stops/202091", "https://data.delijn.be/stops/203091"], ["https://data.delijn.be/stops/201236", "https://data.delijn.be/stops/210051"], ["https://data.delijn.be/stops/504192", "https://data.delijn.be/stops/504739"], ["https://data.delijn.be/stops/104602", "https://data.delijn.be/stops/108272"], ["https://data.delijn.be/stops/300976", "https://data.delijn.be/stops/307043"], ["https://data.delijn.be/stops/105404", "https://data.delijn.be/stops/107315"], ["https://data.delijn.be/stops/208354", "https://data.delijn.be/stops/208799"], ["https://data.delijn.be/stops/402179", "https://data.delijn.be/stops/402196"], ["https://data.delijn.be/stops/106722", "https://data.delijn.be/stops/106726"], ["https://data.delijn.be/stops/106663", "https://data.delijn.be/stops/106665"], ["https://data.delijn.be/stops/503620", "https://data.delijn.be/stops/503623"], ["https://data.delijn.be/stops/400605", "https://data.delijn.be/stops/400621"], ["https://data.delijn.be/stops/502337", "https://data.delijn.be/stops/507337"], ["https://data.delijn.be/stops/104844", "https://data.delijn.be/stops/109964"], ["https://data.delijn.be/stops/107133", "https://data.delijn.be/stops/107136"], ["https://data.delijn.be/stops/103068", "https://data.delijn.be/stops/109824"], ["https://data.delijn.be/stops/401024", "https://data.delijn.be/stops/409643"], ["https://data.delijn.be/stops/202184", "https://data.delijn.be/stops/203183"], ["https://data.delijn.be/stops/406556", "https://data.delijn.be/stops/406559"], ["https://data.delijn.be/stops/404108", "https://data.delijn.be/stops/404205"], ["https://data.delijn.be/stops/102840", "https://data.delijn.be/stops/103744"], ["https://data.delijn.be/stops/307539", "https://data.delijn.be/stops/307577"], ["https://data.delijn.be/stops/200625", "https://data.delijn.be/stops/201625"], ["https://data.delijn.be/stops/301599", "https://data.delijn.be/stops/301624"], ["https://data.delijn.be/stops/105813", "https://data.delijn.be/stops/105815"], ["https://data.delijn.be/stops/102515", "https://data.delijn.be/stops/105495"], ["https://data.delijn.be/stops/304543", "https://data.delijn.be/stops/304544"], ["https://data.delijn.be/stops/104564", "https://data.delijn.be/stops/307523"], ["https://data.delijn.be/stops/206127", "https://data.delijn.be/stops/207127"], ["https://data.delijn.be/stops/404006", "https://data.delijn.be/stops/404009"], ["https://data.delijn.be/stops/301779", "https://data.delijn.be/stops/306796"], ["https://data.delijn.be/stops/106915", "https://data.delijn.be/stops/106951"], ["https://data.delijn.be/stops/109069", "https://data.delijn.be/stops/306859"], ["https://data.delijn.be/stops/306271", "https://data.delijn.be/stops/306272"], ["https://data.delijn.be/stops/301679", "https://data.delijn.be/stops/301686"], ["https://data.delijn.be/stops/307296", "https://data.delijn.be/stops/307323"], ["https://data.delijn.be/stops/204122", "https://data.delijn.be/stops/204666"], ["https://data.delijn.be/stops/301102", "https://data.delijn.be/stops/306159"], ["https://data.delijn.be/stops/303956", "https://data.delijn.be/stops/304177"], ["https://data.delijn.be/stops/207806", "https://data.delijn.be/stops/207817"], ["https://data.delijn.be/stops/407720", "https://data.delijn.be/stops/409777"], ["https://data.delijn.be/stops/206043", "https://data.delijn.be/stops/207533"], ["https://data.delijn.be/stops/302490", "https://data.delijn.be/stops/302495"], ["https://data.delijn.be/stops/503790", "https://data.delijn.be/stops/505822"], ["https://data.delijn.be/stops/200577", "https://data.delijn.be/stops/203756"], ["https://data.delijn.be/stops/202087", "https://data.delijn.be/stops/203088"], ["https://data.delijn.be/stops/308458", "https://data.delijn.be/stops/308462"], ["https://data.delijn.be/stops/503430", "https://data.delijn.be/stops/508255"], ["https://data.delijn.be/stops/505204", "https://data.delijn.be/stops/508474"], ["https://data.delijn.be/stops/208392", "https://data.delijn.be/stops/208744"], ["https://data.delijn.be/stops/300471", "https://data.delijn.be/stops/300545"], ["https://data.delijn.be/stops/207670", "https://data.delijn.be/stops/209618"], ["https://data.delijn.be/stops/204108", "https://data.delijn.be/stops/204109"], ["https://data.delijn.be/stops/206724", "https://data.delijn.be/stops/207985"], ["https://data.delijn.be/stops/204188", "https://data.delijn.be/stops/205189"], ["https://data.delijn.be/stops/503374", "https://data.delijn.be/stops/508374"], ["https://data.delijn.be/stops/103006", "https://data.delijn.be/stops/103007"], ["https://data.delijn.be/stops/105223", "https://data.delijn.be/stops/108057"], ["https://data.delijn.be/stops/407488", "https://data.delijn.be/stops/407509"], ["https://data.delijn.be/stops/504118", "https://data.delijn.be/stops/504395"], ["https://data.delijn.be/stops/408428", "https://data.delijn.be/stops/408681"], ["https://data.delijn.be/stops/206151", "https://data.delijn.be/stops/206497"], ["https://data.delijn.be/stops/101533", "https://data.delijn.be/stops/108786"], ["https://data.delijn.be/stops/102651", "https://data.delijn.be/stops/103061"], ["https://data.delijn.be/stops/408864", "https://data.delijn.be/stops/408869"], ["https://data.delijn.be/stops/101900", "https://data.delijn.be/stops/102655"], ["https://data.delijn.be/stops/300051", "https://data.delijn.be/stops/307732"], ["https://data.delijn.be/stops/300602", "https://data.delijn.be/stops/303523"], ["https://data.delijn.be/stops/303269", "https://data.delijn.be/stops/303306"], ["https://data.delijn.be/stops/408236", "https://data.delijn.be/stops/308222"], ["https://data.delijn.be/stops/503317", "https://data.delijn.be/stops/508316"], ["https://data.delijn.be/stops/107491", "https://data.delijn.be/stops/107492"], ["https://data.delijn.be/stops/301654", "https://data.delijn.be/stops/301655"], ["https://data.delijn.be/stops/301979", "https://data.delijn.be/stops/302920"], ["https://data.delijn.be/stops/403818", "https://data.delijn.be/stops/403819"], ["https://data.delijn.be/stops/406628", "https://data.delijn.be/stops/406629"], ["https://data.delijn.be/stops/300326", "https://data.delijn.be/stops/300327"], ["https://data.delijn.be/stops/301591", "https://data.delijn.be/stops/301593"], ["https://data.delijn.be/stops/300007", "https://data.delijn.be/stops/301339"], ["https://data.delijn.be/stops/104931", "https://data.delijn.be/stops/107841"], ["https://data.delijn.be/stops/506447", "https://data.delijn.be/stops/506454"], ["https://data.delijn.be/stops/405694", "https://data.delijn.be/stops/405989"], ["https://data.delijn.be/stops/406307", "https://data.delijn.be/stops/406322"], ["https://data.delijn.be/stops/505753", "https://data.delijn.be/stops/509878"], ["https://data.delijn.be/stops/204241", "https://data.delijn.be/stops/205240"], ["https://data.delijn.be/stops/302306", "https://data.delijn.be/stops/304083"], ["https://data.delijn.be/stops/202400", "https://data.delijn.be/stops/202401"], ["https://data.delijn.be/stops/301430", "https://data.delijn.be/stops/301438"], ["https://data.delijn.be/stops/404307", "https://data.delijn.be/stops/404648"], ["https://data.delijn.be/stops/403262", "https://data.delijn.be/stops/403445"], ["https://data.delijn.be/stops/200565", "https://data.delijn.be/stops/201565"], ["https://data.delijn.be/stops/403747", "https://data.delijn.be/stops/403751"], ["https://data.delijn.be/stops/101434", "https://data.delijn.be/stops/107292"], ["https://data.delijn.be/stops/105289", "https://data.delijn.be/stops/106496"], ["https://data.delijn.be/stops/107098", "https://data.delijn.be/stops/107099"], ["https://data.delijn.be/stops/408673", "https://data.delijn.be/stops/408807"], ["https://data.delijn.be/stops/403148", "https://data.delijn.be/stops/403149"], ["https://data.delijn.be/stops/402754", "https://data.delijn.be/stops/402776"], ["https://data.delijn.be/stops/400738", "https://data.delijn.be/stops/400742"], ["https://data.delijn.be/stops/105642", "https://data.delijn.be/stops/105643"], ["https://data.delijn.be/stops/300481", "https://data.delijn.be/stops/306162"], ["https://data.delijn.be/stops/206357", "https://data.delijn.be/stops/207729"], ["https://data.delijn.be/stops/102024", "https://data.delijn.be/stops/104844"], ["https://data.delijn.be/stops/408839", "https://data.delijn.be/stops/408840"], ["https://data.delijn.be/stops/102735", "https://data.delijn.be/stops/105405"], ["https://data.delijn.be/stops/501062", "https://data.delijn.be/stops/506135"], ["https://data.delijn.be/stops/407152", "https://data.delijn.be/stops/407183"], ["https://data.delijn.be/stops/204832", "https://data.delijn.be/stops/205832"], ["https://data.delijn.be/stops/404101", "https://data.delijn.be/stops/404109"], ["https://data.delijn.be/stops/504181", "https://data.delijn.be/stops/509170"], ["https://data.delijn.be/stops/503791", "https://data.delijn.be/stops/508795"], ["https://data.delijn.be/stops/502765", "https://data.delijn.be/stops/505701"], ["https://data.delijn.be/stops/209634", "https://data.delijn.be/stops/209635"], ["https://data.delijn.be/stops/202195", "https://data.delijn.be/stops/209491"], ["https://data.delijn.be/stops/301448", "https://data.delijn.be/stops/305609"], ["https://data.delijn.be/stops/504969", "https://data.delijn.be/stops/509969"], ["https://data.delijn.be/stops/300493", "https://data.delijn.be/stops/302094"], ["https://data.delijn.be/stops/102424", "https://data.delijn.be/stops/103751"], ["https://data.delijn.be/stops/102161", "https://data.delijn.be/stops/108963"], ["https://data.delijn.be/stops/304277", "https://data.delijn.be/stops/304286"], ["https://data.delijn.be/stops/300268", "https://data.delijn.be/stops/307492"], ["https://data.delijn.be/stops/204591", "https://data.delijn.be/stops/205594"], ["https://data.delijn.be/stops/404443", "https://data.delijn.be/stops/405851"], ["https://data.delijn.be/stops/406378", "https://data.delijn.be/stops/407862"], ["https://data.delijn.be/stops/301646", "https://data.delijn.be/stops/301670"], ["https://data.delijn.be/stops/408969", "https://data.delijn.be/stops/408978"], ["https://data.delijn.be/stops/504028", "https://data.delijn.be/stops/504036"], ["https://data.delijn.be/stops/503224", "https://data.delijn.be/stops/503593"], ["https://data.delijn.be/stops/209343", "https://data.delijn.be/stops/219031"], ["https://data.delijn.be/stops/102230", "https://data.delijn.be/stops/102390"], ["https://data.delijn.be/stops/303245", "https://data.delijn.be/stops/306670"], ["https://data.delijn.be/stops/504538", "https://data.delijn.be/stops/508012"], ["https://data.delijn.be/stops/300088", "https://data.delijn.be/stops/300089"], ["https://data.delijn.be/stops/408236", "https://data.delijn.be/stops/408237"], ["https://data.delijn.be/stops/104586", "https://data.delijn.be/stops/107817"], ["https://data.delijn.be/stops/404835", "https://data.delijn.be/stops/406129"], ["https://data.delijn.be/stops/302777", "https://data.delijn.be/stops/302779"], ["https://data.delijn.be/stops/501194", "https://data.delijn.be/stops/501699"], ["https://data.delijn.be/stops/400643", "https://data.delijn.be/stops/400961"], ["https://data.delijn.be/stops/305688", "https://data.delijn.be/stops/305702"], ["https://data.delijn.be/stops/202091", "https://data.delijn.be/stops/202093"], ["https://data.delijn.be/stops/308606", "https://data.delijn.be/stops/308631"], ["https://data.delijn.be/stops/507400", "https://data.delijn.be/stops/507590"], ["https://data.delijn.be/stops/101676", "https://data.delijn.be/stops/101679"], ["https://data.delijn.be/stops/408622", "https://data.delijn.be/stops/408626"], ["https://data.delijn.be/stops/501617", "https://data.delijn.be/stops/501624"], ["https://data.delijn.be/stops/101969", "https://data.delijn.be/stops/108208"], ["https://data.delijn.be/stops/305006", "https://data.delijn.be/stops/305015"], ["https://data.delijn.be/stops/302891", "https://data.delijn.be/stops/302903"], ["https://data.delijn.be/stops/107503", "https://data.delijn.be/stops/107504"], ["https://data.delijn.be/stops/308753", "https://data.delijn.be/stops/308754"], ["https://data.delijn.be/stops/402336", "https://data.delijn.be/stops/402441"], ["https://data.delijn.be/stops/208406", "https://data.delijn.be/stops/218013"], ["https://data.delijn.be/stops/108698", "https://data.delijn.be/stops/108704"], ["https://data.delijn.be/stops/503421", "https://data.delijn.be/stops/504099"], ["https://data.delijn.be/stops/300029", "https://data.delijn.be/stops/300065"], ["https://data.delijn.be/stops/505986", "https://data.delijn.be/stops/508482"], ["https://data.delijn.be/stops/402769", "https://data.delijn.be/stops/409552"], ["https://data.delijn.be/stops/201897", "https://data.delijn.be/stops/211043"], ["https://data.delijn.be/stops/109434", "https://data.delijn.be/stops/109435"], ["https://data.delijn.be/stops/303487", "https://data.delijn.be/stops/308739"], ["https://data.delijn.be/stops/307341", "https://data.delijn.be/stops/307344"], ["https://data.delijn.be/stops/501655", "https://data.delijn.be/stops/506671"], ["https://data.delijn.be/stops/504618", "https://data.delijn.be/stops/504627"], ["https://data.delijn.be/stops/204448", "https://data.delijn.be/stops/205269"], ["https://data.delijn.be/stops/307921", "https://data.delijn.be/stops/308854"], ["https://data.delijn.be/stops/209316", "https://data.delijn.be/stops/209789"], ["https://data.delijn.be/stops/300547", "https://data.delijn.be/stops/300551"], ["https://data.delijn.be/stops/301380", "https://data.delijn.be/stops/306649"], ["https://data.delijn.be/stops/206480", "https://data.delijn.be/stops/207480"], ["https://data.delijn.be/stops/401386", "https://data.delijn.be/stops/410178"], ["https://data.delijn.be/stops/102745", "https://data.delijn.be/stops/102814"], ["https://data.delijn.be/stops/101527", "https://data.delijn.be/stops/101953"], ["https://data.delijn.be/stops/206065", "https://data.delijn.be/stops/207065"], ["https://data.delijn.be/stops/304876", "https://data.delijn.be/stops/307051"], ["https://data.delijn.be/stops/308492", "https://data.delijn.be/stops/308522"], ["https://data.delijn.be/stops/400004", "https://data.delijn.be/stops/400440"], ["https://data.delijn.be/stops/106955", "https://data.delijn.be/stops/109734"], ["https://data.delijn.be/stops/507222", "https://data.delijn.be/stops/507223"], ["https://data.delijn.be/stops/307207", "https://data.delijn.be/stops/307209"], ["https://data.delijn.be/stops/509572", "https://data.delijn.be/stops/509577"], ["https://data.delijn.be/stops/405697", "https://data.delijn.be/stops/405900"], ["https://data.delijn.be/stops/202231", "https://data.delijn.be/stops/219505"], ["https://data.delijn.be/stops/103233", "https://data.delijn.be/stops/103582"], ["https://data.delijn.be/stops/203765", "https://data.delijn.be/stops/203766"], ["https://data.delijn.be/stops/405713", "https://data.delijn.be/stops/408276"], ["https://data.delijn.be/stops/103288", "https://data.delijn.be/stops/103293"], ["https://data.delijn.be/stops/503105", "https://data.delijn.be/stops/505383"], ["https://data.delijn.be/stops/500958", "https://data.delijn.be/stops/508286"], ["https://data.delijn.be/stops/400702", "https://data.delijn.be/stops/404310"], ["https://data.delijn.be/stops/218010", "https://data.delijn.be/stops/219011"], ["https://data.delijn.be/stops/400175", "https://data.delijn.be/stops/402791"], ["https://data.delijn.be/stops/109336", "https://data.delijn.be/stops/109371"], ["https://data.delijn.be/stops/505770", "https://data.delijn.be/stops/507344"], ["https://data.delijn.be/stops/105853", "https://data.delijn.be/stops/105854"], ["https://data.delijn.be/stops/505579", "https://data.delijn.be/stops/505580"], ["https://data.delijn.be/stops/501029", "https://data.delijn.be/stops/506029"], ["https://data.delijn.be/stops/105718", "https://data.delijn.be/stops/106562"], ["https://data.delijn.be/stops/407618", "https://data.delijn.be/stops/407662"], ["https://data.delijn.be/stops/200807", "https://data.delijn.be/stops/202655"], ["https://data.delijn.be/stops/409153", "https://data.delijn.be/stops/409154"], ["https://data.delijn.be/stops/207302", "https://data.delijn.be/stops/207303"], ["https://data.delijn.be/stops/108048", "https://data.delijn.be/stops/108051"], ["https://data.delijn.be/stops/201485", "https://data.delijn.be/stops/208732"], ["https://data.delijn.be/stops/502072", "https://data.delijn.be/stops/502605"], ["https://data.delijn.be/stops/305430", "https://data.delijn.be/stops/308868"], ["https://data.delijn.be/stops/200456", "https://data.delijn.be/stops/201456"], ["https://data.delijn.be/stops/502734", "https://data.delijn.be/stops/505596"], ["https://data.delijn.be/stops/103261", "https://data.delijn.be/stops/105853"], ["https://data.delijn.be/stops/202295", "https://data.delijn.be/stops/202334"], ["https://data.delijn.be/stops/102764", "https://data.delijn.be/stops/102766"], ["https://data.delijn.be/stops/103301", "https://data.delijn.be/stops/105778"], ["https://data.delijn.be/stops/305297", "https://data.delijn.be/stops/305325"], ["https://data.delijn.be/stops/302671", "https://data.delijn.be/stops/308555"], ["https://data.delijn.be/stops/303020", "https://data.delijn.be/stops/303062"], ["https://data.delijn.be/stops/304574", "https://data.delijn.be/stops/304575"], ["https://data.delijn.be/stops/302023", "https://data.delijn.be/stops/306341"], ["https://data.delijn.be/stops/502811", "https://data.delijn.be/stops/509724"], ["https://data.delijn.be/stops/501225", "https://data.delijn.be/stops/505085"], ["https://data.delijn.be/stops/402364", "https://data.delijn.be/stops/402462"], ["https://data.delijn.be/stops/400968", "https://data.delijn.be/stops/400970"], ["https://data.delijn.be/stops/107734", "https://data.delijn.be/stops/109383"], ["https://data.delijn.be/stops/104050", "https://data.delijn.be/stops/109709"], ["https://data.delijn.be/stops/105407", "https://data.delijn.be/stops/107320"], ["https://data.delijn.be/stops/210001", "https://data.delijn.be/stops/211094"], ["https://data.delijn.be/stops/405671", "https://data.delijn.be/stops/407869"], ["https://data.delijn.be/stops/203664", "https://data.delijn.be/stops/210080"], ["https://data.delijn.be/stops/307203", "https://data.delijn.be/stops/307206"], ["https://data.delijn.be/stops/303296", "https://data.delijn.be/stops/308737"], ["https://data.delijn.be/stops/308784", "https://data.delijn.be/stops/308785"], ["https://data.delijn.be/stops/501125", "https://data.delijn.be/stops/505221"], ["https://data.delijn.be/stops/507124", "https://data.delijn.be/stops/507434"], ["https://data.delijn.be/stops/206845", "https://data.delijn.be/stops/207844"], ["https://data.delijn.be/stops/102633", "https://data.delijn.be/stops/107849"], ["https://data.delijn.be/stops/501347", "https://data.delijn.be/stops/506742"], ["https://data.delijn.be/stops/206628", "https://data.delijn.be/stops/206629"], ["https://data.delijn.be/stops/302065", "https://data.delijn.be/stops/302460"], ["https://data.delijn.be/stops/208018", "https://data.delijn.be/stops/208079"], ["https://data.delijn.be/stops/302408", "https://data.delijn.be/stops/302409"], ["https://data.delijn.be/stops/400547", "https://data.delijn.be/stops/400973"], ["https://data.delijn.be/stops/108826", "https://data.delijn.be/stops/108891"], ["https://data.delijn.be/stops/208674", "https://data.delijn.be/stops/209439"], ["https://data.delijn.be/stops/403453", "https://data.delijn.be/stops/405127"], ["https://data.delijn.be/stops/502655", "https://data.delijn.be/stops/507655"], ["https://data.delijn.be/stops/404184", "https://data.delijn.be/stops/407365"], ["https://data.delijn.be/stops/302717", "https://data.delijn.be/stops/302718"], ["https://data.delijn.be/stops/203867", "https://data.delijn.be/stops/208712"], ["https://data.delijn.be/stops/207670", "https://data.delijn.be/stops/208483"], ["https://data.delijn.be/stops/202913", "https://data.delijn.be/stops/203822"], ["https://data.delijn.be/stops/503331", "https://data.delijn.be/stops/508333"], ["https://data.delijn.be/stops/400612", "https://data.delijn.be/stops/404293"], ["https://data.delijn.be/stops/300107", "https://data.delijn.be/stops/306842"], ["https://data.delijn.be/stops/301307", "https://data.delijn.be/stops/306256"], ["https://data.delijn.be/stops/200870", "https://data.delijn.be/stops/202287"], ["https://data.delijn.be/stops/101582", "https://data.delijn.be/stops/109890"], ["https://data.delijn.be/stops/300641", "https://data.delijn.be/stops/306747"], ["https://data.delijn.be/stops/400230", "https://data.delijn.be/stops/401865"], ["https://data.delijn.be/stops/104502", "https://data.delijn.be/stops/104506"], ["https://data.delijn.be/stops/504372", "https://data.delijn.be/stops/509612"], ["https://data.delijn.be/stops/101900", "https://data.delijn.be/stops/102150"], ["https://data.delijn.be/stops/107292", "https://data.delijn.be/stops/107297"], ["https://data.delijn.be/stops/502204", "https://data.delijn.be/stops/507204"], ["https://data.delijn.be/stops/504656", "https://data.delijn.be/stops/509643"], ["https://data.delijn.be/stops/406162", "https://data.delijn.be/stops/407302"], ["https://data.delijn.be/stops/204918", "https://data.delijn.be/stops/204919"], ["https://data.delijn.be/stops/208302", "https://data.delijn.be/stops/209301"], ["https://data.delijn.be/stops/103925", "https://data.delijn.be/stops/105655"], ["https://data.delijn.be/stops/502610", "https://data.delijn.be/stops/507610"], ["https://data.delijn.be/stops/102585", "https://data.delijn.be/stops/102590"], ["https://data.delijn.be/stops/407277", "https://data.delijn.be/stops/407326"], ["https://data.delijn.be/stops/504796", "https://data.delijn.be/stops/504799"], ["https://data.delijn.be/stops/208171", "https://data.delijn.be/stops/209171"], ["https://data.delijn.be/stops/305069", "https://data.delijn.be/stops/306953"], ["https://data.delijn.be/stops/400259", "https://data.delijn.be/stops/408363"], ["https://data.delijn.be/stops/503162", "https://data.delijn.be/stops/508174"], ["https://data.delijn.be/stops/303120", "https://data.delijn.be/stops/303121"], ["https://data.delijn.be/stops/301675", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/409305", "https://data.delijn.be/stops/409307"], ["https://data.delijn.be/stops/306829", "https://data.delijn.be/stops/306831"], ["https://data.delijn.be/stops/505047", "https://data.delijn.be/stops/509795"], ["https://data.delijn.be/stops/404222", "https://data.delijn.be/stops/404223"], ["https://data.delijn.be/stops/207713", "https://data.delijn.be/stops/207714"], ["https://data.delijn.be/stops/104009", "https://data.delijn.be/stops/104942"], ["https://data.delijn.be/stops/201877", "https://data.delijn.be/stops/202416"], ["https://data.delijn.be/stops/507200", "https://data.delijn.be/stops/507205"], ["https://data.delijn.be/stops/402409", "https://data.delijn.be/stops/406967"], ["https://data.delijn.be/stops/207066", "https://data.delijn.be/stops/207520"], ["https://data.delijn.be/stops/504389", "https://data.delijn.be/stops/509389"], ["https://data.delijn.be/stops/104703", "https://data.delijn.be/stops/108182"], ["https://data.delijn.be/stops/302886", "https://data.delijn.be/stops/303080"], ["https://data.delijn.be/stops/208606", "https://data.delijn.be/stops/307740"], ["https://data.delijn.be/stops/503590", "https://data.delijn.be/stops/508589"], ["https://data.delijn.be/stops/300634", "https://data.delijn.be/stops/304345"], ["https://data.delijn.be/stops/405181", "https://data.delijn.be/stops/406725"], ["https://data.delijn.be/stops/500129", "https://data.delijn.be/stops/505323"], ["https://data.delijn.be/stops/108273", "https://data.delijn.be/stops/108279"], ["https://data.delijn.be/stops/203873", "https://data.delijn.be/stops/209723"], ["https://data.delijn.be/stops/207231", "https://data.delijn.be/stops/300151"], ["https://data.delijn.be/stops/102408", "https://data.delijn.be/stops/109036"], ["https://data.delijn.be/stops/109997", "https://data.delijn.be/stops/109998"], ["https://data.delijn.be/stops/304738", "https://data.delijn.be/stops/304739"], ["https://data.delijn.be/stops/102851", "https://data.delijn.be/stops/106882"], ["https://data.delijn.be/stops/408258", "https://data.delijn.be/stops/307452"], ["https://data.delijn.be/stops/102396", "https://data.delijn.be/stops/108194"], ["https://data.delijn.be/stops/300862", "https://data.delijn.be/stops/308853"], ["https://data.delijn.be/stops/207338", "https://data.delijn.be/stops/207741"], ["https://data.delijn.be/stops/401672", "https://data.delijn.be/stops/308267"], ["https://data.delijn.be/stops/300762", "https://data.delijn.be/stops/304654"], ["https://data.delijn.be/stops/407986", "https://data.delijn.be/stops/407999"], ["https://data.delijn.be/stops/407324", "https://data.delijn.be/stops/407325"], ["https://data.delijn.be/stops/409651", "https://data.delijn.be/stops/409654"], ["https://data.delijn.be/stops/106206", "https://data.delijn.be/stops/109906"], ["https://data.delijn.be/stops/107697", "https://data.delijn.be/stops/107698"], ["https://data.delijn.be/stops/303381", "https://data.delijn.be/stops/305855"], ["https://data.delijn.be/stops/206617", "https://data.delijn.be/stops/207619"], ["https://data.delijn.be/stops/504405", "https://data.delijn.be/stops/505164"], ["https://data.delijn.be/stops/300400", "https://data.delijn.be/stops/300406"], ["https://data.delijn.be/stops/404845", "https://data.delijn.be/stops/407708"], ["https://data.delijn.be/stops/503500", "https://data.delijn.be/stops/508497"], ["https://data.delijn.be/stops/204369", "https://data.delijn.be/stops/205368"], ["https://data.delijn.be/stops/104113", "https://data.delijn.be/stops/107877"], ["https://data.delijn.be/stops/203186", "https://data.delijn.be/stops/203279"], ["https://data.delijn.be/stops/502564", "https://data.delijn.be/stops/502572"], ["https://data.delijn.be/stops/305685", "https://data.delijn.be/stops/305711"], ["https://data.delijn.be/stops/104459", "https://data.delijn.be/stops/104462"], ["https://data.delijn.be/stops/405159", "https://data.delijn.be/stops/405231"], ["https://data.delijn.be/stops/201758", "https://data.delijn.be/stops/201782"], ["https://data.delijn.be/stops/203634", "https://data.delijn.be/stops/205067"], ["https://data.delijn.be/stops/308116", "https://data.delijn.be/stops/308117"], ["https://data.delijn.be/stops/200155", "https://data.delijn.be/stops/203359"], ["https://data.delijn.be/stops/505388", "https://data.delijn.be/stops/508098"], ["https://data.delijn.be/stops/407648", "https://data.delijn.be/stops/407668"], ["https://data.delijn.be/stops/303467", "https://data.delijn.be/stops/308429"], ["https://data.delijn.be/stops/206894", "https://data.delijn.be/stops/206895"], ["https://data.delijn.be/stops/405499", "https://data.delijn.be/stops/407803"], ["https://data.delijn.be/stops/500120", "https://data.delijn.be/stops/507682"], ["https://data.delijn.be/stops/504146", "https://data.delijn.be/stops/509146"], ["https://data.delijn.be/stops/209362", "https://data.delijn.be/stops/209399"], ["https://data.delijn.be/stops/200522", "https://data.delijn.be/stops/201522"], ["https://data.delijn.be/stops/201880", "https://data.delijn.be/stops/202022"], ["https://data.delijn.be/stops/105080", "https://data.delijn.be/stops/105087"], ["https://data.delijn.be/stops/202710", "https://data.delijn.be/stops/202711"], ["https://data.delijn.be/stops/200947", "https://data.delijn.be/stops/211121"], ["https://data.delijn.be/stops/304962", "https://data.delijn.be/stops/305309"], ["https://data.delijn.be/stops/101171", "https://data.delijn.be/stops/102380"], ["https://data.delijn.be/stops/302310", "https://data.delijn.be/stops/302329"], ["https://data.delijn.be/stops/503797", "https://data.delijn.be/stops/508793"], ["https://data.delijn.be/stops/405805", "https://data.delijn.be/stops/409429"], ["https://data.delijn.be/stops/406202", "https://data.delijn.be/stops/406893"], ["https://data.delijn.be/stops/301759", "https://data.delijn.be/stops/308423"], ["https://data.delijn.be/stops/402986", "https://data.delijn.be/stops/410053"], ["https://data.delijn.be/stops/209163", "https://data.delijn.be/stops/209169"], ["https://data.delijn.be/stops/504130", "https://data.delijn.be/stops/504131"], ["https://data.delijn.be/stops/300851", "https://data.delijn.be/stops/303631"], ["https://data.delijn.be/stops/206242", "https://data.delijn.be/stops/207242"], ["https://data.delijn.be/stops/504469", "https://data.delijn.be/stops/509111"], ["https://data.delijn.be/stops/408078", "https://data.delijn.be/stops/408079"], ["https://data.delijn.be/stops/301464", "https://data.delijn.be/stops/301465"], ["https://data.delijn.be/stops/403970", "https://data.delijn.be/stops/403979"], ["https://data.delijn.be/stops/404229", "https://data.delijn.be/stops/404548"], ["https://data.delijn.be/stops/207643", "https://data.delijn.be/stops/209687"], ["https://data.delijn.be/stops/503613", "https://data.delijn.be/stops/509751"], ["https://data.delijn.be/stops/300266", "https://data.delijn.be/stops/300272"], ["https://data.delijn.be/stops/405342", "https://data.delijn.be/stops/308732"], ["https://data.delijn.be/stops/102200", "https://data.delijn.be/stops/104275"], ["https://data.delijn.be/stops/400222", "https://data.delijn.be/stops/406078"], ["https://data.delijn.be/stops/504148", "https://data.delijn.be/stops/509148"], ["https://data.delijn.be/stops/202878", "https://data.delijn.be/stops/202882"], ["https://data.delijn.be/stops/503667", "https://data.delijn.be/stops/508667"], ["https://data.delijn.be/stops/300997", "https://data.delijn.be/stops/307043"], ["https://data.delijn.be/stops/303169", "https://data.delijn.be/stops/303575"], ["https://data.delijn.be/stops/505238", "https://data.delijn.be/stops/507762"], ["https://data.delijn.be/stops/107162", "https://data.delijn.be/stops/107164"], ["https://data.delijn.be/stops/502673", "https://data.delijn.be/stops/507674"], ["https://data.delijn.be/stops/303723", "https://data.delijn.be/stops/303769"], ["https://data.delijn.be/stops/301668", "https://data.delijn.be/stops/301670"], ["https://data.delijn.be/stops/305457", "https://data.delijn.be/stops/305458"], ["https://data.delijn.be/stops/206003", "https://data.delijn.be/stops/207003"], ["https://data.delijn.be/stops/208363", "https://data.delijn.be/stops/208777"], ["https://data.delijn.be/stops/503423", "https://data.delijn.be/stops/508438"], ["https://data.delijn.be/stops/505694", "https://data.delijn.be/stops/507612"], ["https://data.delijn.be/stops/305101", "https://data.delijn.be/stops/305123"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/302894"], ["https://data.delijn.be/stops/303696", "https://data.delijn.be/stops/303698"], ["https://data.delijn.be/stops/505079", "https://data.delijn.be/stops/507690"], ["https://data.delijn.be/stops/503296", "https://data.delijn.be/stops/503303"], ["https://data.delijn.be/stops/401508", "https://data.delijn.be/stops/402033"], ["https://data.delijn.be/stops/303319", "https://data.delijn.be/stops/303330"], ["https://data.delijn.be/stops/304077", "https://data.delijn.be/stops/307509"], ["https://data.delijn.be/stops/205081", "https://data.delijn.be/stops/205203"], ["https://data.delijn.be/stops/502464", "https://data.delijn.be/stops/507464"], ["https://data.delijn.be/stops/206453", "https://data.delijn.be/stops/207454"], ["https://data.delijn.be/stops/206372", "https://data.delijn.be/stops/207346"], ["https://data.delijn.be/stops/204056", "https://data.delijn.be/stops/205703"], ["https://data.delijn.be/stops/504084", "https://data.delijn.be/stops/509083"], ["https://data.delijn.be/stops/300905", "https://data.delijn.be/stops/301029"], ["https://data.delijn.be/stops/101830", "https://data.delijn.be/stops/103950"], ["https://data.delijn.be/stops/409515", "https://data.delijn.be/stops/409876"], ["https://data.delijn.be/stops/101371", "https://data.delijn.be/stops/101406"], ["https://data.delijn.be/stops/406599", "https://data.delijn.be/stops/406638"], ["https://data.delijn.be/stops/301246", "https://data.delijn.be/stops/307092"], ["https://data.delijn.be/stops/503991", "https://data.delijn.be/stops/508692"], ["https://data.delijn.be/stops/205077", "https://data.delijn.be/stops/205078"], ["https://data.delijn.be/stops/305302", "https://data.delijn.be/stops/305315"], ["https://data.delijn.be/stops/200238", "https://data.delijn.be/stops/211129"], ["https://data.delijn.be/stops/504375", "https://data.delijn.be/stops/508609"], ["https://data.delijn.be/stops/204586", "https://data.delijn.be/stops/204594"], ["https://data.delijn.be/stops/302191", "https://data.delijn.be/stops/305458"], ["https://data.delijn.be/stops/404408", "https://data.delijn.be/stops/404412"], ["https://data.delijn.be/stops/106639", "https://data.delijn.be/stops/106678"], ["https://data.delijn.be/stops/104301", "https://data.delijn.be/stops/108940"], ["https://data.delijn.be/stops/200609", "https://data.delijn.be/stops/203311"], ["https://data.delijn.be/stops/206766", "https://data.delijn.be/stops/209544"], ["https://data.delijn.be/stops/107969", "https://data.delijn.be/stops/108431"], ["https://data.delijn.be/stops/307527", "https://data.delijn.be/stops/307530"], ["https://data.delijn.be/stops/501778", "https://data.delijn.be/stops/506157"], ["https://data.delijn.be/stops/305636", "https://data.delijn.be/stops/308600"], ["https://data.delijn.be/stops/103744", "https://data.delijn.be/stops/103759"], ["https://data.delijn.be/stops/501697", "https://data.delijn.be/stops/507248"], ["https://data.delijn.be/stops/208777", "https://data.delijn.be/stops/208778"], ["https://data.delijn.be/stops/202049", "https://data.delijn.be/stops/203050"], ["https://data.delijn.be/stops/102184", "https://data.delijn.be/stops/108027"], ["https://data.delijn.be/stops/203432", "https://data.delijn.be/stops/203435"], ["https://data.delijn.be/stops/305040", "https://data.delijn.be/stops/305041"], ["https://data.delijn.be/stops/503999", "https://data.delijn.be/stops/508164"], ["https://data.delijn.be/stops/403018", "https://data.delijn.be/stops/409276"], ["https://data.delijn.be/stops/407305", "https://data.delijn.be/stops/408472"], ["https://data.delijn.be/stops/204163", "https://data.delijn.be/stops/207962"], ["https://data.delijn.be/stops/203832", "https://data.delijn.be/stops/219024"], ["https://data.delijn.be/stops/209415", "https://data.delijn.be/stops/209417"], ["https://data.delijn.be/stops/502462", "https://data.delijn.be/stops/507462"], ["https://data.delijn.be/stops/203009", "https://data.delijn.be/stops/203652"], ["https://data.delijn.be/stops/202698", "https://data.delijn.be/stops/202706"], ["https://data.delijn.be/stops/502692", "https://data.delijn.be/stops/505959"], ["https://data.delijn.be/stops/405787", "https://data.delijn.be/stops/409764"], ["https://data.delijn.be/stops/400798", "https://data.delijn.be/stops/409654"], ["https://data.delijn.be/stops/206449", "https://data.delijn.be/stops/207449"], ["https://data.delijn.be/stops/101884", "https://data.delijn.be/stops/104489"], ["https://data.delijn.be/stops/101390", "https://data.delijn.be/stops/101828"], ["https://data.delijn.be/stops/504686", "https://data.delijn.be/stops/508522"], ["https://data.delijn.be/stops/305147", "https://data.delijn.be/stops/306962"], ["https://data.delijn.be/stops/201719", "https://data.delijn.be/stops/201886"], ["https://data.delijn.be/stops/101602", "https://data.delijn.be/stops/105553"], ["https://data.delijn.be/stops/101644", "https://data.delijn.be/stops/105243"], ["https://data.delijn.be/stops/202884", "https://data.delijn.be/stops/202887"], ["https://data.delijn.be/stops/206097", "https://data.delijn.be/stops/207998"], ["https://data.delijn.be/stops/405798", "https://data.delijn.be/stops/409705"], ["https://data.delijn.be/stops/202430", "https://data.delijn.be/stops/205939"], ["https://data.delijn.be/stops/306295", "https://data.delijn.be/stops/306299"], ["https://data.delijn.be/stops/200916", "https://data.delijn.be/stops/203247"], ["https://data.delijn.be/stops/204985", "https://data.delijn.be/stops/209182"], ["https://data.delijn.be/stops/301195", "https://data.delijn.be/stops/307613"], ["https://data.delijn.be/stops/305597", "https://data.delijn.be/stops/306270"], ["https://data.delijn.be/stops/308224", "https://data.delijn.be/stops/308226"], ["https://data.delijn.be/stops/305277", "https://data.delijn.be/stops/306344"], ["https://data.delijn.be/stops/502201", "https://data.delijn.be/stops/507099"], ["https://data.delijn.be/stops/207527", "https://data.delijn.be/stops/209080"], ["https://data.delijn.be/stops/204591", "https://data.delijn.be/stops/204775"], ["https://data.delijn.be/stops/500044", "https://data.delijn.be/stops/500046"], ["https://data.delijn.be/stops/203363", "https://data.delijn.be/stops/203989"], ["https://data.delijn.be/stops/101795", "https://data.delijn.be/stops/101940"], ["https://data.delijn.be/stops/108076", "https://data.delijn.be/stops/108462"], ["https://data.delijn.be/stops/203213", "https://data.delijn.be/stops/203775"], ["https://data.delijn.be/stops/306146", "https://data.delijn.be/stops/306259"], ["https://data.delijn.be/stops/504237", "https://data.delijn.be/stops/504255"], ["https://data.delijn.be/stops/502420", "https://data.delijn.be/stops/502424"], ["https://data.delijn.be/stops/206389", "https://data.delijn.be/stops/206553"], ["https://data.delijn.be/stops/102019", "https://data.delijn.be/stops/105477"], ["https://data.delijn.be/stops/206032", "https://data.delijn.be/stops/207901"], ["https://data.delijn.be/stops/302049", "https://data.delijn.be/stops/308860"], ["https://data.delijn.be/stops/200102", "https://data.delijn.be/stops/211094"], ["https://data.delijn.be/stops/208139", "https://data.delijn.be/stops/208815"], ["https://data.delijn.be/stops/109153", "https://data.delijn.be/stops/109156"], ["https://data.delijn.be/stops/106449", "https://data.delijn.be/stops/106506"], ["https://data.delijn.be/stops/109222", "https://data.delijn.be/stops/109224"], ["https://data.delijn.be/stops/202015", "https://data.delijn.be/stops/203015"], ["https://data.delijn.be/stops/406679", "https://data.delijn.be/stops/407179"], ["https://data.delijn.be/stops/509737", "https://data.delijn.be/stops/509866"], ["https://data.delijn.be/stops/503141", "https://data.delijn.be/stops/508146"], ["https://data.delijn.be/stops/409422", "https://data.delijn.be/stops/409674"], ["https://data.delijn.be/stops/207153", "https://data.delijn.be/stops/207503"], ["https://data.delijn.be/stops/302210", "https://data.delijn.be/stops/302232"], ["https://data.delijn.be/stops/304069", "https://data.delijn.be/stops/304070"], ["https://data.delijn.be/stops/305705", "https://data.delijn.be/stops/307840"], ["https://data.delijn.be/stops/108331", "https://data.delijn.be/stops/108332"], ["https://data.delijn.be/stops/109046", "https://data.delijn.be/stops/109047"], ["https://data.delijn.be/stops/304689", "https://data.delijn.be/stops/304690"], ["https://data.delijn.be/stops/202754", "https://data.delijn.be/stops/202794"], ["https://data.delijn.be/stops/509393", "https://data.delijn.be/stops/509395"], ["https://data.delijn.be/stops/508404", "https://data.delijn.be/stops/508426"], ["https://data.delijn.be/stops/400161", "https://data.delijn.be/stops/403296"], ["https://data.delijn.be/stops/106787", "https://data.delijn.be/stops/106788"], ["https://data.delijn.be/stops/304774", "https://data.delijn.be/stops/306115"], ["https://data.delijn.be/stops/101907", "https://data.delijn.be/stops/101916"], ["https://data.delijn.be/stops/103633", "https://data.delijn.be/stops/107562"], ["https://data.delijn.be/stops/508390", "https://data.delijn.be/stops/508451"], ["https://data.delijn.be/stops/407916", "https://data.delijn.be/stops/407917"], ["https://data.delijn.be/stops/308180", "https://data.delijn.be/stops/308181"], ["https://data.delijn.be/stops/504022", "https://data.delijn.be/stops/505103"], ["https://data.delijn.be/stops/101989", "https://data.delijn.be/stops/101991"], ["https://data.delijn.be/stops/504172", "https://data.delijn.be/stops/509166"], ["https://data.delijn.be/stops/200816", "https://data.delijn.be/stops/210016"], ["https://data.delijn.be/stops/208100", "https://data.delijn.be/stops/209097"], ["https://data.delijn.be/stops/108740", "https://data.delijn.be/stops/108870"], ["https://data.delijn.be/stops/206786", "https://data.delijn.be/stops/208846"], ["https://data.delijn.be/stops/300589", "https://data.delijn.be/stops/300590"], ["https://data.delijn.be/stops/109169", "https://data.delijn.be/stops/109170"], ["https://data.delijn.be/stops/502820", "https://data.delijn.be/stops/507410"], ["https://data.delijn.be/stops/407964", "https://data.delijn.be/stops/407965"], ["https://data.delijn.be/stops/103722", "https://data.delijn.be/stops/108539"], ["https://data.delijn.be/stops/405363", "https://data.delijn.be/stops/405410"], ["https://data.delijn.be/stops/101060", "https://data.delijn.be/stops/109527"], ["https://data.delijn.be/stops/208604", "https://data.delijn.be/stops/307595"], ["https://data.delijn.be/stops/503339", "https://data.delijn.be/stops/508336"], ["https://data.delijn.be/stops/301334", "https://data.delijn.be/stops/307941"], ["https://data.delijn.be/stops/101167", "https://data.delijn.be/stops/102385"], ["https://data.delijn.be/stops/400755", "https://data.delijn.be/stops/409586"], ["https://data.delijn.be/stops/502346", "https://data.delijn.be/stops/507345"], ["https://data.delijn.be/stops/101152", "https://data.delijn.be/stops/106747"], ["https://data.delijn.be/stops/503781", "https://data.delijn.be/stops/503885"], ["https://data.delijn.be/stops/503086", "https://data.delijn.be/stops/508106"], ["https://data.delijn.be/stops/201892", "https://data.delijn.be/stops/203776"], ["https://data.delijn.be/stops/504432", "https://data.delijn.be/stops/509426"], ["https://data.delijn.be/stops/402095", "https://data.delijn.be/stops/402101"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/509559"], ["https://data.delijn.be/stops/305077", "https://data.delijn.be/stops/307295"], ["https://data.delijn.be/stops/307069", "https://data.delijn.be/stops/308739"], ["https://data.delijn.be/stops/404118", "https://data.delijn.be/stops/404241"], ["https://data.delijn.be/stops/208784", "https://data.delijn.be/stops/208785"], ["https://data.delijn.be/stops/108201", "https://data.delijn.be/stops/108204"], ["https://data.delijn.be/stops/502049", "https://data.delijn.be/stops/502648"], ["https://data.delijn.be/stops/206830", "https://data.delijn.be/stops/207564"], ["https://data.delijn.be/stops/303812", "https://data.delijn.be/stops/303816"], ["https://data.delijn.be/stops/400312", "https://data.delijn.be/stops/405133"], ["https://data.delijn.be/stops/301392", "https://data.delijn.be/stops/301393"], ["https://data.delijn.be/stops/300573", "https://data.delijn.be/stops/300584"], ["https://data.delijn.be/stops/401250", "https://data.delijn.be/stops/401251"], ["https://data.delijn.be/stops/303581", "https://data.delijn.be/stops/305893"], ["https://data.delijn.be/stops/303994", "https://data.delijn.be/stops/306294"], ["https://data.delijn.be/stops/204160", "https://data.delijn.be/stops/205580"], ["https://data.delijn.be/stops/301367", "https://data.delijn.be/stops/304812"], ["https://data.delijn.be/stops/406204", "https://data.delijn.be/stops/410353"], ["https://data.delijn.be/stops/202490", "https://data.delijn.be/stops/203490"], ["https://data.delijn.be/stops/503227", "https://data.delijn.be/stops/508227"], ["https://data.delijn.be/stops/402256", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/108947", "https://data.delijn.be/stops/108948"], ["https://data.delijn.be/stops/302454", "https://data.delijn.be/stops/304754"], ["https://data.delijn.be/stops/300500", "https://data.delijn.be/stops/300514"], ["https://data.delijn.be/stops/303851", "https://data.delijn.be/stops/303978"], ["https://data.delijn.be/stops/304591", "https://data.delijn.be/stops/304592"], ["https://data.delijn.be/stops/504145", "https://data.delijn.be/stops/504254"], ["https://data.delijn.be/stops/407995", "https://data.delijn.be/stops/408139"], ["https://data.delijn.be/stops/201203", "https://data.delijn.be/stops/201210"], ["https://data.delijn.be/stops/210039", "https://data.delijn.be/stops/211039"], ["https://data.delijn.be/stops/202049", "https://data.delijn.be/stops/202050"], ["https://data.delijn.be/stops/104519", "https://data.delijn.be/stops/303881"], ["https://data.delijn.be/stops/101799", "https://data.delijn.be/stops/108513"], ["https://data.delijn.be/stops/303317", "https://data.delijn.be/stops/303333"], ["https://data.delijn.be/stops/502293", "https://data.delijn.be/stops/502296"], ["https://data.delijn.be/stops/303529", "https://data.delijn.be/stops/303542"], ["https://data.delijn.be/stops/205043", "https://data.delijn.be/stops/205409"], ["https://data.delijn.be/stops/201137", "https://data.delijn.be/stops/201224"], ["https://data.delijn.be/stops/106799", "https://data.delijn.be/stops/106802"], ["https://data.delijn.be/stops/505549", "https://data.delijn.be/stops/509944"], ["https://data.delijn.be/stops/405902", "https://data.delijn.be/stops/405993"], ["https://data.delijn.be/stops/403123", "https://data.delijn.be/stops/403124"], ["https://data.delijn.be/stops/301116", "https://data.delijn.be/stops/302213"], ["https://data.delijn.be/stops/203975", "https://data.delijn.be/stops/206399"], ["https://data.delijn.be/stops/303950", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/503490", "https://data.delijn.be/stops/503903"], ["https://data.delijn.be/stops/103971", "https://data.delijn.be/stops/106157"], ["https://data.delijn.be/stops/101605", "https://data.delijn.be/stops/102054"], ["https://data.delijn.be/stops/403141", "https://data.delijn.be/stops/403385"], ["https://data.delijn.be/stops/504852", "https://data.delijn.be/stops/507254"], ["https://data.delijn.be/stops/202034", "https://data.delijn.be/stops/202035"], ["https://data.delijn.be/stops/300443", "https://data.delijn.be/stops/300444"], ["https://data.delijn.be/stops/408183", "https://data.delijn.be/stops/408184"], ["https://data.delijn.be/stops/501159", "https://data.delijn.be/stops/501777"], ["https://data.delijn.be/stops/301427", "https://data.delijn.be/stops/301432"], ["https://data.delijn.be/stops/503118", "https://data.delijn.be/stops/504996"], ["https://data.delijn.be/stops/107092", "https://data.delijn.be/stops/107096"], ["https://data.delijn.be/stops/206741", "https://data.delijn.be/stops/207604"], ["https://data.delijn.be/stops/502404", "https://data.delijn.be/stops/502581"], ["https://data.delijn.be/stops/101587", "https://data.delijn.be/stops/105449"], ["https://data.delijn.be/stops/205513", "https://data.delijn.be/stops/205514"], ["https://data.delijn.be/stops/503405", "https://data.delijn.be/stops/503406"], ["https://data.delijn.be/stops/403485", "https://data.delijn.be/stops/405634"], ["https://data.delijn.be/stops/108114", "https://data.delijn.be/stops/108149"], ["https://data.delijn.be/stops/300637", "https://data.delijn.be/stops/302463"], ["https://data.delijn.be/stops/405421", "https://data.delijn.be/stops/410018"], ["https://data.delijn.be/stops/306314", "https://data.delijn.be/stops/307194"], ["https://data.delijn.be/stops/203301", "https://data.delijn.be/stops/203303"], ["https://data.delijn.be/stops/405297", "https://data.delijn.be/stops/406835"], ["https://data.delijn.be/stops/401177", "https://data.delijn.be/stops/406569"], ["https://data.delijn.be/stops/504322", "https://data.delijn.be/stops/509317"], ["https://data.delijn.be/stops/101944", "https://data.delijn.be/stops/108787"], ["https://data.delijn.be/stops/107561", "https://data.delijn.be/stops/107563"], ["https://data.delijn.be/stops/402877", "https://data.delijn.be/stops/306307"], ["https://data.delijn.be/stops/405748", "https://data.delijn.be/stops/409421"], ["https://data.delijn.be/stops/302985", "https://data.delijn.be/stops/303124"], ["https://data.delijn.be/stops/302189", "https://data.delijn.be/stops/302193"], ["https://data.delijn.be/stops/303965", "https://data.delijn.be/stops/304081"], ["https://data.delijn.be/stops/301548", "https://data.delijn.be/stops/301559"], ["https://data.delijn.be/stops/202233", "https://data.delijn.be/stops/203233"], ["https://data.delijn.be/stops/305600", "https://data.delijn.be/stops/305608"], ["https://data.delijn.be/stops/101614", "https://data.delijn.be/stops/106574"], ["https://data.delijn.be/stops/204035", "https://data.delijn.be/stops/204036"], ["https://data.delijn.be/stops/207014", "https://data.delijn.be/stops/207016"], ["https://data.delijn.be/stops/406395", "https://data.delijn.be/stops/302828"], ["https://data.delijn.be/stops/404172", "https://data.delijn.be/stops/404173"], ["https://data.delijn.be/stops/404466", "https://data.delijn.be/stops/404507"], ["https://data.delijn.be/stops/404658", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/206179", "https://data.delijn.be/stops/207179"], ["https://data.delijn.be/stops/505639", "https://data.delijn.be/stops/505643"], ["https://data.delijn.be/stops/200803", "https://data.delijn.be/stops/202062"], ["https://data.delijn.be/stops/200387", "https://data.delijn.be/stops/200391"], ["https://data.delijn.be/stops/208527", "https://data.delijn.be/stops/209526"], ["https://data.delijn.be/stops/305066", "https://data.delijn.be/stops/308294"], ["https://data.delijn.be/stops/403304", "https://data.delijn.be/stops/403305"], ["https://data.delijn.be/stops/503277", "https://data.delijn.be/stops/504891"], ["https://data.delijn.be/stops/204138", "https://data.delijn.be/stops/204141"], ["https://data.delijn.be/stops/102702", "https://data.delijn.be/stops/105544"], ["https://data.delijn.be/stops/408341", "https://data.delijn.be/stops/408343"], ["https://data.delijn.be/stops/501500", "https://data.delijn.be/stops/506391"], ["https://data.delijn.be/stops/503439", "https://data.delijn.be/stops/508439"], ["https://data.delijn.be/stops/406085", "https://data.delijn.be/stops/407168"], ["https://data.delijn.be/stops/308169", "https://data.delijn.be/stops/308171"], ["https://data.delijn.be/stops/304262", "https://data.delijn.be/stops/304276"], ["https://data.delijn.be/stops/501592", "https://data.delijn.be/stops/505411"], ["https://data.delijn.be/stops/103758", "https://data.delijn.be/stops/104215"], ["https://data.delijn.be/stops/504415", "https://data.delijn.be/stops/509435"], ["https://data.delijn.be/stops/404313", "https://data.delijn.be/stops/404381"], ["https://data.delijn.be/stops/201939", "https://data.delijn.be/stops/202944"], ["https://data.delijn.be/stops/303771", "https://data.delijn.be/stops/303808"], ["https://data.delijn.be/stops/200595", "https://data.delijn.be/stops/201524"], ["https://data.delijn.be/stops/200112", "https://data.delijn.be/stops/201147"], ["https://data.delijn.be/stops/404305", "https://data.delijn.be/stops/404649"], ["https://data.delijn.be/stops/103223", "https://data.delijn.be/stops/107040"], ["https://data.delijn.be/stops/300896", "https://data.delijn.be/stops/303567"], ["https://data.delijn.be/stops/300897", "https://data.delijn.be/stops/300942"], ["https://data.delijn.be/stops/400710", "https://data.delijn.be/stops/404382"], ["https://data.delijn.be/stops/506301", "https://data.delijn.be/stops/506318"], ["https://data.delijn.be/stops/208742", "https://data.delijn.be/stops/503678"], ["https://data.delijn.be/stops/204420", "https://data.delijn.be/stops/205765"], ["https://data.delijn.be/stops/503155", "https://data.delijn.be/stops/508376"], ["https://data.delijn.be/stops/406192", "https://data.delijn.be/stops/406193"], ["https://data.delijn.be/stops/505169", "https://data.delijn.be/stops/509337"], ["https://data.delijn.be/stops/101004", "https://data.delijn.be/stops/104882"], ["https://data.delijn.be/stops/403812", "https://data.delijn.be/stops/403875"], ["https://data.delijn.be/stops/304077", "https://data.delijn.be/stops/307816"], ["https://data.delijn.be/stops/202861", "https://data.delijn.be/stops/203860"], ["https://data.delijn.be/stops/101512", "https://data.delijn.be/stops/300110"], ["https://data.delijn.be/stops/400379", "https://data.delijn.be/stops/406774"], ["https://data.delijn.be/stops/304996", "https://data.delijn.be/stops/305029"], ["https://data.delijn.be/stops/404519", "https://data.delijn.be/stops/410396"], ["https://data.delijn.be/stops/401585", "https://data.delijn.be/stops/401741"], ["https://data.delijn.be/stops/211050", "https://data.delijn.be/stops/211092"], ["https://data.delijn.be/stops/102914", "https://data.delijn.be/stops/102917"], ["https://data.delijn.be/stops/200763", "https://data.delijn.be/stops/209302"], ["https://data.delijn.be/stops/301473", "https://data.delijn.be/stops/308937"], ["https://data.delijn.be/stops/205247", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/503176", "https://data.delijn.be/stops/508239"], ["https://data.delijn.be/stops/103756", "https://data.delijn.be/stops/104220"], ["https://data.delijn.be/stops/303448", "https://data.delijn.be/stops/307063"], ["https://data.delijn.be/stops/301241", "https://data.delijn.be/stops/307907"], ["https://data.delijn.be/stops/104838", "https://data.delijn.be/stops/104952"], ["https://data.delijn.be/stops/409279", "https://data.delijn.be/stops/409288"], ["https://data.delijn.be/stops/201703", "https://data.delijn.be/stops/202610"], ["https://data.delijn.be/stops/402002", "https://data.delijn.be/stops/406048"], ["https://data.delijn.be/stops/105055", "https://data.delijn.be/stops/108040"], ["https://data.delijn.be/stops/302190", "https://data.delijn.be/stops/305458"], ["https://data.delijn.be/stops/102720", "https://data.delijn.be/stops/103710"], ["https://data.delijn.be/stops/200698", "https://data.delijn.be/stops/203784"], ["https://data.delijn.be/stops/302675", "https://data.delijn.be/stops/303612"], ["https://data.delijn.be/stops/504398", "https://data.delijn.be/stops/509398"], ["https://data.delijn.be/stops/200465", "https://data.delijn.be/stops/201461"], ["https://data.delijn.be/stops/102045", "https://data.delijn.be/stops/108025"], ["https://data.delijn.be/stops/409082", "https://data.delijn.be/stops/409100"], ["https://data.delijn.be/stops/101224", "https://data.delijn.be/stops/108518"], ["https://data.delijn.be/stops/501444", "https://data.delijn.be/stops/506441"], ["https://data.delijn.be/stops/301063", "https://data.delijn.be/stops/301304"], ["https://data.delijn.be/stops/401817", "https://data.delijn.be/stops/406073"], ["https://data.delijn.be/stops/301870", "https://data.delijn.be/stops/304330"], ["https://data.delijn.be/stops/402587", "https://data.delijn.be/stops/408172"], ["https://data.delijn.be/stops/206536", "https://data.delijn.be/stops/207536"], ["https://data.delijn.be/stops/109844", "https://data.delijn.be/stops/109846"], ["https://data.delijn.be/stops/301309", "https://data.delijn.be/stops/306118"], ["https://data.delijn.be/stops/206122", "https://data.delijn.be/stops/207471"], ["https://data.delijn.be/stops/107045", "https://data.delijn.be/stops/108405"], ["https://data.delijn.be/stops/106446", "https://data.delijn.be/stops/106451"], ["https://data.delijn.be/stops/407663", "https://data.delijn.be/stops/409807"], ["https://data.delijn.be/stops/205036", "https://data.delijn.be/stops/205818"], ["https://data.delijn.be/stops/101357", "https://data.delijn.be/stops/102189"], ["https://data.delijn.be/stops/502296", "https://data.delijn.be/stops/507293"], ["https://data.delijn.be/stops/108785", "https://data.delijn.be/stops/109121"], ["https://data.delijn.be/stops/407051", "https://data.delijn.be/stops/407077"], ["https://data.delijn.be/stops/402973", "https://data.delijn.be/stops/402979"], ["https://data.delijn.be/stops/509081", "https://data.delijn.be/stops/509082"], ["https://data.delijn.be/stops/301669", "https://data.delijn.be/stops/301670"], ["https://data.delijn.be/stops/109123", "https://data.delijn.be/stops/109124"], ["https://data.delijn.be/stops/405512", "https://data.delijn.be/stops/405521"], ["https://data.delijn.be/stops/202046", "https://data.delijn.be/stops/203045"], ["https://data.delijn.be/stops/407173", "https://data.delijn.be/stops/408729"], ["https://data.delijn.be/stops/404486", "https://data.delijn.be/stops/404573"], ["https://data.delijn.be/stops/502163", "https://data.delijn.be/stops/502438"], ["https://data.delijn.be/stops/404561", "https://data.delijn.be/stops/404562"], ["https://data.delijn.be/stops/405838", "https://data.delijn.be/stops/409757"], ["https://data.delijn.be/stops/505344", "https://data.delijn.be/stops/505658"], ["https://data.delijn.be/stops/406550", "https://data.delijn.be/stops/406551"], ["https://data.delijn.be/stops/108371", "https://data.delijn.be/stops/108372"], ["https://data.delijn.be/stops/402709", "https://data.delijn.be/stops/402947"], ["https://data.delijn.be/stops/305651", "https://data.delijn.be/stops/308937"], ["https://data.delijn.be/stops/403008", "https://data.delijn.be/stops/403441"], ["https://data.delijn.be/stops/404836", "https://data.delijn.be/stops/406991"], ["https://data.delijn.be/stops/104649", "https://data.delijn.be/stops/108032"], ["https://data.delijn.be/stops/502740", "https://data.delijn.be/stops/507619"], ["https://data.delijn.be/stops/200290", "https://data.delijn.be/stops/211004"], ["https://data.delijn.be/stops/307596", "https://data.delijn.be/stops/307741"], ["https://data.delijn.be/stops/502525", "https://data.delijn.be/stops/507525"], ["https://data.delijn.be/stops/409788", "https://data.delijn.be/stops/409793"], ["https://data.delijn.be/stops/407724", "https://data.delijn.be/stops/407725"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/510012"], ["https://data.delijn.be/stops/200095", "https://data.delijn.be/stops/203131"], ["https://data.delijn.be/stops/400721", "https://data.delijn.be/stops/401466"], ["https://data.delijn.be/stops/101801", "https://data.delijn.be/stops/101955"], ["https://data.delijn.be/stops/207232", "https://data.delijn.be/stops/207233"], ["https://data.delijn.be/stops/206915", "https://data.delijn.be/stops/207299"], ["https://data.delijn.be/stops/500025", "https://data.delijn.be/stops/507467"], ["https://data.delijn.be/stops/404715", "https://data.delijn.be/stops/404768"], ["https://data.delijn.be/stops/206544", "https://data.delijn.be/stops/207543"], ["https://data.delijn.be/stops/400023", "https://data.delijn.be/stops/406497"], ["https://data.delijn.be/stops/404301", "https://data.delijn.be/stops/409572"], ["https://data.delijn.be/stops/104971", "https://data.delijn.be/stops/105299"], ["https://data.delijn.be/stops/200910", "https://data.delijn.be/stops/200952"], ["https://data.delijn.be/stops/202821", "https://data.delijn.be/stops/203913"], ["https://data.delijn.be/stops/405479", "https://data.delijn.be/stops/409290"], ["https://data.delijn.be/stops/105717", "https://data.delijn.be/stops/105719"], ["https://data.delijn.be/stops/404594", "https://data.delijn.be/stops/404596"], ["https://data.delijn.be/stops/400565", "https://data.delijn.be/stops/400568"], ["https://data.delijn.be/stops/501450", "https://data.delijn.be/stops/506450"], ["https://data.delijn.be/stops/106770", "https://data.delijn.be/stops/107521"], ["https://data.delijn.be/stops/504777", "https://data.delijn.be/stops/508528"], ["https://data.delijn.be/stops/502474", "https://data.delijn.be/stops/507474"], ["https://data.delijn.be/stops/405740", "https://data.delijn.be/stops/405741"], ["https://data.delijn.be/stops/504598", "https://data.delijn.be/stops/504604"], ["https://data.delijn.be/stops/504402", "https://data.delijn.be/stops/505163"], ["https://data.delijn.be/stops/403199", "https://data.delijn.be/stops/405359"], ["https://data.delijn.be/stops/301130", "https://data.delijn.be/stops/302875"], ["https://data.delijn.be/stops/204095", "https://data.delijn.be/stops/205471"], ["https://data.delijn.be/stops/505660", "https://data.delijn.be/stops/508958"], ["https://data.delijn.be/stops/507209", "https://data.delijn.be/stops/507214"], ["https://data.delijn.be/stops/102186", "https://data.delijn.be/stops/102196"], ["https://data.delijn.be/stops/103259", "https://data.delijn.be/stops/105854"], ["https://data.delijn.be/stops/101463", "https://data.delijn.be/stops/109282"], ["https://data.delijn.be/stops/400552", "https://data.delijn.be/stops/400553"], ["https://data.delijn.be/stops/207168", "https://data.delijn.be/stops/207169"], ["https://data.delijn.be/stops/106624", "https://data.delijn.be/stops/108016"], ["https://data.delijn.be/stops/105022", "https://data.delijn.be/stops/107292"], ["https://data.delijn.be/stops/401121", "https://data.delijn.be/stops/401154"], ["https://data.delijn.be/stops/301191", "https://data.delijn.be/stops/301198"], ["https://data.delijn.be/stops/107499", "https://data.delijn.be/stops/107529"], ["https://data.delijn.be/stops/510026", "https://data.delijn.be/stops/510028"], ["https://data.delijn.be/stops/207640", "https://data.delijn.be/stops/207859"], ["https://data.delijn.be/stops/404417", "https://data.delijn.be/stops/404448"], ["https://data.delijn.be/stops/101750", "https://data.delijn.be/stops/104882"], ["https://data.delijn.be/stops/300323", "https://data.delijn.be/stops/307647"], ["https://data.delijn.be/stops/300238", "https://data.delijn.be/stops/300247"], ["https://data.delijn.be/stops/101938", "https://data.delijn.be/stops/109341"], ["https://data.delijn.be/stops/301490", "https://data.delijn.be/stops/301493"], ["https://data.delijn.be/stops/206556", "https://data.delijn.be/stops/207528"], ["https://data.delijn.be/stops/208175", "https://data.delijn.be/stops/208176"], ["https://data.delijn.be/stops/300085", "https://data.delijn.be/stops/300108"], ["https://data.delijn.be/stops/101332", "https://data.delijn.be/stops/106645"], ["https://data.delijn.be/stops/501031", "https://data.delijn.be/stops/506023"], ["https://data.delijn.be/stops/303819", "https://data.delijn.be/stops/303823"], ["https://data.delijn.be/stops/200164", "https://data.delijn.be/stops/209730"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/506343"], ["https://data.delijn.be/stops/101451", "https://data.delijn.be/stops/101452"], ["https://data.delijn.be/stops/406361", "https://data.delijn.be/stops/409203"], ["https://data.delijn.be/stops/302441", "https://data.delijn.be/stops/308095"], ["https://data.delijn.be/stops/400879", "https://data.delijn.be/stops/410112"], ["https://data.delijn.be/stops/200724", "https://data.delijn.be/stops/202437"], ["https://data.delijn.be/stops/205247", "https://data.delijn.be/stops/205752"], ["https://data.delijn.be/stops/302302", "https://data.delijn.be/stops/302342"], ["https://data.delijn.be/stops/300978", "https://data.delijn.be/stops/300997"], ["https://data.delijn.be/stops/106661", "https://data.delijn.be/stops/107186"], ["https://data.delijn.be/stops/203344", "https://data.delijn.be/stops/207551"], ["https://data.delijn.be/stops/403207", "https://data.delijn.be/stops/403225"], ["https://data.delijn.be/stops/407351", "https://data.delijn.be/stops/409434"], ["https://data.delijn.be/stops/503586", "https://data.delijn.be/stops/504884"], ["https://data.delijn.be/stops/504425", "https://data.delijn.be/stops/509425"], ["https://data.delijn.be/stops/403163", "https://data.delijn.be/stops/403454"], ["https://data.delijn.be/stops/401258", "https://data.delijn.be/stops/401280"], ["https://data.delijn.be/stops/304640", "https://data.delijn.be/stops/304665"], ["https://data.delijn.be/stops/106454", "https://data.delijn.be/stops/106456"], ["https://data.delijn.be/stops/401397", "https://data.delijn.be/stops/304535"], ["https://data.delijn.be/stops/505681", "https://data.delijn.be/stops/507065"], ["https://data.delijn.be/stops/303588", "https://data.delijn.be/stops/305222"], ["https://data.delijn.be/stops/302070", "https://data.delijn.be/stops/302073"], ["https://data.delijn.be/stops/502267", "https://data.delijn.be/stops/507921"], ["https://data.delijn.be/stops/101131", "https://data.delijn.be/stops/101132"], ["https://data.delijn.be/stops/207117", "https://data.delijn.be/stops/207118"], ["https://data.delijn.be/stops/503637", "https://data.delijn.be/stops/503792"], ["https://data.delijn.be/stops/204031", "https://data.delijn.be/stops/204032"], ["https://data.delijn.be/stops/305251", "https://data.delijn.be/stops/305284"], ["https://data.delijn.be/stops/307167", "https://data.delijn.be/stops/307195"], ["https://data.delijn.be/stops/509387", "https://data.delijn.be/stops/509388"], ["https://data.delijn.be/stops/208569", "https://data.delijn.be/stops/209552"], ["https://data.delijn.be/stops/405815", "https://data.delijn.be/stops/409426"], ["https://data.delijn.be/stops/104551", "https://data.delijn.be/stops/104552"], ["https://data.delijn.be/stops/305394", "https://data.delijn.be/stops/305399"], ["https://data.delijn.be/stops/410003", "https://data.delijn.be/stops/410004"], ["https://data.delijn.be/stops/302380", "https://data.delijn.be/stops/302384"], ["https://data.delijn.be/stops/206975", "https://data.delijn.be/stops/207975"], ["https://data.delijn.be/stops/207100", "https://data.delijn.be/stops/207911"], ["https://data.delijn.be/stops/101424", "https://data.delijn.be/stops/106976"], ["https://data.delijn.be/stops/105423", "https://data.delijn.be/stops/109978"], ["https://data.delijn.be/stops/109795", "https://data.delijn.be/stops/109796"], ["https://data.delijn.be/stops/104816", "https://data.delijn.be/stops/105369"], ["https://data.delijn.be/stops/407972", "https://data.delijn.be/stops/303889"], ["https://data.delijn.be/stops/503027", "https://data.delijn.be/stops/508023"], ["https://data.delijn.be/stops/201949", "https://data.delijn.be/stops/203943"], ["https://data.delijn.be/stops/208183", "https://data.delijn.be/stops/218019"], ["https://data.delijn.be/stops/404218", "https://data.delijn.be/stops/404239"], ["https://data.delijn.be/stops/300654", "https://data.delijn.be/stops/302462"], ["https://data.delijn.be/stops/102055", "https://data.delijn.be/stops/102060"], ["https://data.delijn.be/stops/204980", "https://data.delijn.be/stops/207967"], ["https://data.delijn.be/stops/503741", "https://data.delijn.be/stops/504969"], ["https://data.delijn.be/stops/301392", "https://data.delijn.be/stops/306138"], ["https://data.delijn.be/stops/102827", "https://data.delijn.be/stops/106682"], ["https://data.delijn.be/stops/201467", "https://data.delijn.be/stops/202212"], ["https://data.delijn.be/stops/208305", "https://data.delijn.be/stops/209305"], ["https://data.delijn.be/stops/304191", "https://data.delijn.be/stops/305494"], ["https://data.delijn.be/stops/407806", "https://data.delijn.be/stops/407807"], ["https://data.delijn.be/stops/301524", "https://data.delijn.be/stops/301525"], ["https://data.delijn.be/stops/208416", "https://data.delijn.be/stops/208417"], ["https://data.delijn.be/stops/102289", "https://data.delijn.be/stops/109632"], ["https://data.delijn.be/stops/504991", "https://data.delijn.be/stops/507957"], ["https://data.delijn.be/stops/206418", "https://data.delijn.be/stops/207660"], ["https://data.delijn.be/stops/101903", "https://data.delijn.be/stops/105465"], ["https://data.delijn.be/stops/405628", "https://data.delijn.be/stops/407471"], ["https://data.delijn.be/stops/301568", "https://data.delijn.be/stops/308081"], ["https://data.delijn.be/stops/305017", "https://data.delijn.be/stops/308033"], ["https://data.delijn.be/stops/102651", "https://data.delijn.be/stops/104578"], ["https://data.delijn.be/stops/206548", "https://data.delijn.be/stops/207534"], ["https://data.delijn.be/stops/503100", "https://data.delijn.be/stops/508393"], ["https://data.delijn.be/stops/401220", "https://data.delijn.be/stops/401260"], ["https://data.delijn.be/stops/204069", "https://data.delijn.be/stops/205385"], ["https://data.delijn.be/stops/404809", "https://data.delijn.be/stops/406094"], ["https://data.delijn.be/stops/102714", "https://data.delijn.be/stops/108495"], ["https://data.delijn.be/stops/401671", "https://data.delijn.be/stops/307626"], ["https://data.delijn.be/stops/402756", "https://data.delijn.be/stops/405684"], ["https://data.delijn.be/stops/400325", "https://data.delijn.be/stops/400439"], ["https://data.delijn.be/stops/103132", "https://data.delijn.be/stops/103133"], ["https://data.delijn.be/stops/102668", "https://data.delijn.be/stops/305995"], ["https://data.delijn.be/stops/504404", "https://data.delijn.be/stops/504435"], ["https://data.delijn.be/stops/300481", "https://data.delijn.be/stops/300485"], ["https://data.delijn.be/stops/203810", "https://data.delijn.be/stops/208273"], ["https://data.delijn.be/stops/407911", "https://data.delijn.be/stops/408016"], ["https://data.delijn.be/stops/107549", "https://data.delijn.be/stops/107551"], ["https://data.delijn.be/stops/406739", "https://data.delijn.be/stops/407496"], ["https://data.delijn.be/stops/303189", "https://data.delijn.be/stops/303197"], ["https://data.delijn.be/stops/402578", "https://data.delijn.be/stops/402652"], ["https://data.delijn.be/stops/204038", "https://data.delijn.be/stops/205038"], ["https://data.delijn.be/stops/206914", "https://data.delijn.be/stops/207322"], ["https://data.delijn.be/stops/500008", "https://data.delijn.be/stops/507167"], ["https://data.delijn.be/stops/400418", "https://data.delijn.be/stops/407929"], ["https://data.delijn.be/stops/301439", "https://data.delijn.be/stops/307798"], ["https://data.delijn.be/stops/500116", "https://data.delijn.be/stops/502273"], ["https://data.delijn.be/stops/206400", "https://data.delijn.be/stops/206401"], ["https://data.delijn.be/stops/208588", "https://data.delijn.be/stops/208589"], ["https://data.delijn.be/stops/407656", "https://data.delijn.be/stops/407657"], ["https://data.delijn.be/stops/105668", "https://data.delijn.be/stops/105676"], ["https://data.delijn.be/stops/402772", "https://data.delijn.be/stops/402773"], ["https://data.delijn.be/stops/401163", "https://data.delijn.be/stops/408111"], ["https://data.delijn.be/stops/103241", "https://data.delijn.be/stops/107291"], ["https://data.delijn.be/stops/404958", "https://data.delijn.be/stops/404959"], ["https://data.delijn.be/stops/401783", "https://data.delijn.be/stops/401811"], ["https://data.delijn.be/stops/202129", "https://data.delijn.be/stops/202588"], ["https://data.delijn.be/stops/107041", "https://data.delijn.be/stops/108243"], ["https://data.delijn.be/stops/306880", "https://data.delijn.be/stops/307101"], ["https://data.delijn.be/stops/405019", "https://data.delijn.be/stops/405100"], ["https://data.delijn.be/stops/301986", "https://data.delijn.be/stops/307167"], ["https://data.delijn.be/stops/206314", "https://data.delijn.be/stops/207816"], ["https://data.delijn.be/stops/303047", "https://data.delijn.be/stops/305438"], ["https://data.delijn.be/stops/303800", "https://data.delijn.be/stops/308900"], ["https://data.delijn.be/stops/207103", "https://data.delijn.be/stops/207843"], ["https://data.delijn.be/stops/302647", "https://data.delijn.be/stops/302651"], ["https://data.delijn.be/stops/200640", "https://data.delijn.be/stops/201628"], ["https://data.delijn.be/stops/105887", "https://data.delijn.be/stops/105889"], ["https://data.delijn.be/stops/202094", "https://data.delijn.be/stops/202096"], ["https://data.delijn.be/stops/302370", "https://data.delijn.be/stops/306184"], ["https://data.delijn.be/stops/301640", "https://data.delijn.be/stops/307752"], ["https://data.delijn.be/stops/209014", "https://data.delijn.be/stops/209015"], ["https://data.delijn.be/stops/408956", "https://data.delijn.be/stops/408983"], ["https://data.delijn.be/stops/105759", "https://data.delijn.be/stops/109808"], ["https://data.delijn.be/stops/501070", "https://data.delijn.be/stops/501376"], ["https://data.delijn.be/stops/103604", "https://data.delijn.be/stops/109400"], ["https://data.delijn.be/stops/205258", "https://data.delijn.be/stops/205259"], ["https://data.delijn.be/stops/401196", "https://data.delijn.be/stops/410124"], ["https://data.delijn.be/stops/304555", "https://data.delijn.be/stops/307587"], ["https://data.delijn.be/stops/400411", "https://data.delijn.be/stops/400412"], ["https://data.delijn.be/stops/503680", "https://data.delijn.be/stops/509815"], ["https://data.delijn.be/stops/404596", "https://data.delijn.be/stops/404604"], ["https://data.delijn.be/stops/303080", "https://data.delijn.be/stops/303084"], ["https://data.delijn.be/stops/305652", "https://data.delijn.be/stops/305653"], ["https://data.delijn.be/stops/502429", "https://data.delijn.be/stops/502432"], ["https://data.delijn.be/stops/109014", "https://data.delijn.be/stops/109016"], ["https://data.delijn.be/stops/502127", "https://data.delijn.be/stops/502142"], ["https://data.delijn.be/stops/403613", "https://data.delijn.be/stops/403649"], ["https://data.delijn.be/stops/408481", "https://data.delijn.be/stops/409760"], ["https://data.delijn.be/stops/201694", "https://data.delijn.be/stops/202086"], ["https://data.delijn.be/stops/307351", "https://data.delijn.be/stops/307439"], ["https://data.delijn.be/stops/300770", "https://data.delijn.be/stops/307142"], ["https://data.delijn.be/stops/503323", "https://data.delijn.be/stops/508296"], ["https://data.delijn.be/stops/401425", "https://data.delijn.be/stops/401574"], ["https://data.delijn.be/stops/502435", "https://data.delijn.be/stops/507417"], ["https://data.delijn.be/stops/101060", "https://data.delijn.be/stops/106752"], ["https://data.delijn.be/stops/408950", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/503298", "https://data.delijn.be/stops/508304"], ["https://data.delijn.be/stops/104696", "https://data.delijn.be/stops/107351"], ["https://data.delijn.be/stops/102018", "https://data.delijn.be/stops/104092"], ["https://data.delijn.be/stops/106205", "https://data.delijn.be/stops/106213"], ["https://data.delijn.be/stops/203471", "https://data.delijn.be/stops/209852"], ["https://data.delijn.be/stops/202048", "https://data.delijn.be/stops/203436"], ["https://data.delijn.be/stops/105170", "https://data.delijn.be/stops/107130"], ["https://data.delijn.be/stops/107618", "https://data.delijn.be/stops/108689"], ["https://data.delijn.be/stops/508297", "https://data.delijn.be/stops/509926"], ["https://data.delijn.be/stops/202143", "https://data.delijn.be/stops/203143"], ["https://data.delijn.be/stops/505901", "https://data.delijn.be/stops/508123"], ["https://data.delijn.be/stops/103124", "https://data.delijn.be/stops/107429"], ["https://data.delijn.be/stops/303661", "https://data.delijn.be/stops/303662"], ["https://data.delijn.be/stops/405083", "https://data.delijn.be/stops/405093"], ["https://data.delijn.be/stops/105593", "https://data.delijn.be/stops/109737"], ["https://data.delijn.be/stops/200929", "https://data.delijn.be/stops/201122"], ["https://data.delijn.be/stops/409162", "https://data.delijn.be/stops/409163"], ["https://data.delijn.be/stops/107614", "https://data.delijn.be/stops/109218"], ["https://data.delijn.be/stops/101394", "https://data.delijn.be/stops/106515"], ["https://data.delijn.be/stops/407867", "https://data.delijn.be/stops/408188"], ["https://data.delijn.be/stops/402085", "https://data.delijn.be/stops/402087"], ["https://data.delijn.be/stops/504593", "https://data.delijn.be/stops/505928"], ["https://data.delijn.be/stops/405228", "https://data.delijn.be/stops/405287"], ["https://data.delijn.be/stops/209152", "https://data.delijn.be/stops/209153"], ["https://data.delijn.be/stops/400838", "https://data.delijn.be/stops/409567"], ["https://data.delijn.be/stops/505635", "https://data.delijn.be/stops/509807"], ["https://data.delijn.be/stops/107032", "https://data.delijn.be/stops/107034"], ["https://data.delijn.be/stops/201918", "https://data.delijn.be/stops/207566"], ["https://data.delijn.be/stops/304494", "https://data.delijn.be/stops/304508"], ["https://data.delijn.be/stops/304581", "https://data.delijn.be/stops/304582"], ["https://data.delijn.be/stops/208158", "https://data.delijn.be/stops/209158"], ["https://data.delijn.be/stops/503422", "https://data.delijn.be/stops/509939"], ["https://data.delijn.be/stops/401778", "https://data.delijn.be/stops/406144"], ["https://data.delijn.be/stops/405646", "https://data.delijn.be/stops/408642"], ["https://data.delijn.be/stops/101503", "https://data.delijn.be/stops/101977"], ["https://data.delijn.be/stops/405696", "https://data.delijn.be/stops/405698"], ["https://data.delijn.be/stops/204387", "https://data.delijn.be/stops/205388"], ["https://data.delijn.be/stops/101009", "https://data.delijn.be/stops/108420"], ["https://data.delijn.be/stops/106401", "https://data.delijn.be/stops/107406"], ["https://data.delijn.be/stops/206555", "https://data.delijn.be/stops/216006"], ["https://data.delijn.be/stops/305100", "https://data.delijn.be/stops/305140"], ["https://data.delijn.be/stops/302507", "https://data.delijn.be/stops/302513"], ["https://data.delijn.be/stops/400776", "https://data.delijn.be/stops/401280"], ["https://data.delijn.be/stops/303474", "https://data.delijn.be/stops/307932"], ["https://data.delijn.be/stops/102058", "https://data.delijn.be/stops/106862"], ["https://data.delijn.be/stops/109507", "https://data.delijn.be/stops/109509"], ["https://data.delijn.be/stops/409034", "https://data.delijn.be/stops/409039"], ["https://data.delijn.be/stops/104673", "https://data.delijn.be/stops/107377"], ["https://data.delijn.be/stops/501592", "https://data.delijn.be/stops/509497"], ["https://data.delijn.be/stops/504043", "https://data.delijn.be/stops/509043"], ["https://data.delijn.be/stops/101022", "https://data.delijn.be/stops/106030"], ["https://data.delijn.be/stops/502225", "https://data.delijn.be/stops/507235"], ["https://data.delijn.be/stops/201001", "https://data.delijn.be/stops/201910"], ["https://data.delijn.be/stops/403932", "https://data.delijn.be/stops/404030"], ["https://data.delijn.be/stops/101891", "https://data.delijn.be/stops/104959"], ["https://data.delijn.be/stops/209526", "https://data.delijn.be/stops/209527"], ["https://data.delijn.be/stops/209647", "https://data.delijn.be/stops/210111"], ["https://data.delijn.be/stops/105541", "https://data.delijn.be/stops/105542"], ["https://data.delijn.be/stops/505568", "https://data.delijn.be/stops/508637"], ["https://data.delijn.be/stops/307271", "https://data.delijn.be/stops/308409"], ["https://data.delijn.be/stops/301778", "https://data.delijn.be/stops/301788"], ["https://data.delijn.be/stops/504374", "https://data.delijn.be/stops/509585"], ["https://data.delijn.be/stops/102913", "https://data.delijn.be/stops/106335"], ["https://data.delijn.be/stops/105885", "https://data.delijn.be/stops/108090"], ["https://data.delijn.be/stops/300725", "https://data.delijn.be/stops/300735"], ["https://data.delijn.be/stops/300435", "https://data.delijn.be/stops/306043"], ["https://data.delijn.be/stops/104960", "https://data.delijn.be/stops/104965"], ["https://data.delijn.be/stops/302382", "https://data.delijn.be/stops/307965"], ["https://data.delijn.be/stops/401200", "https://data.delijn.be/stops/401360"], ["https://data.delijn.be/stops/408679", "https://data.delijn.be/stops/408681"], ["https://data.delijn.be/stops/101640", "https://data.delijn.be/stops/102837"], ["https://data.delijn.be/stops/104100", "https://data.delijn.be/stops/104111"], ["https://data.delijn.be/stops/506230", "https://data.delijn.be/stops/506403"], ["https://data.delijn.be/stops/501246", "https://data.delijn.be/stops/506246"], ["https://data.delijn.be/stops/101470", "https://data.delijn.be/stops/108764"], ["https://data.delijn.be/stops/300342", "https://data.delijn.be/stops/304714"], ["https://data.delijn.be/stops/503490", "https://data.delijn.be/stops/508490"], ["https://data.delijn.be/stops/102602", "https://data.delijn.be/stops/107866"], ["https://data.delijn.be/stops/101452", "https://data.delijn.be/stops/102629"], ["https://data.delijn.be/stops/209046", "https://data.delijn.be/stops/209561"], ["https://data.delijn.be/stops/408272", "https://data.delijn.be/stops/408388"], ["https://data.delijn.be/stops/301925", "https://data.delijn.be/stops/301926"], ["https://data.delijn.be/stops/102844", "https://data.delijn.be/stops/107900"], ["https://data.delijn.be/stops/403328", "https://data.delijn.be/stops/407040"], ["https://data.delijn.be/stops/505380", "https://data.delijn.be/stops/505381"], ["https://data.delijn.be/stops/202562", "https://data.delijn.be/stops/203562"], ["https://data.delijn.be/stops/101416", "https://data.delijn.be/stops/102068"], ["https://data.delijn.be/stops/104586", "https://data.delijn.be/stops/104858"], ["https://data.delijn.be/stops/105290", "https://data.delijn.be/stops/105291"], ["https://data.delijn.be/stops/405803", "https://data.delijn.be/stops/406995"], ["https://data.delijn.be/stops/407022", "https://data.delijn.be/stops/407034"], ["https://data.delijn.be/stops/305831", "https://data.delijn.be/stops/305832"], ["https://data.delijn.be/stops/403302", "https://data.delijn.be/stops/405637"], ["https://data.delijn.be/stops/502313", "https://data.delijn.be/stops/505681"], ["https://data.delijn.be/stops/404956", "https://data.delijn.be/stops/409075"], ["https://data.delijn.be/stops/200511", "https://data.delijn.be/stops/202358"], ["https://data.delijn.be/stops/501642", "https://data.delijn.be/stops/501658"], ["https://data.delijn.be/stops/206798", "https://data.delijn.be/stops/208532"], ["https://data.delijn.be/stops/206321", "https://data.delijn.be/stops/206991"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/402549"], ["https://data.delijn.be/stops/503504", "https://data.delijn.be/stops/508602"], ["https://data.delijn.be/stops/300358", "https://data.delijn.be/stops/307690"], ["https://data.delijn.be/stops/501698", "https://data.delijn.be/stops/506408"], ["https://data.delijn.be/stops/400541", "https://data.delijn.be/stops/404281"], ["https://data.delijn.be/stops/303892", "https://data.delijn.be/stops/305578"], ["https://data.delijn.be/stops/207168", "https://data.delijn.be/stops/303842"], ["https://data.delijn.be/stops/501005", "https://data.delijn.be/stops/506221"], ["https://data.delijn.be/stops/200703", "https://data.delijn.be/stops/200733"], ["https://data.delijn.be/stops/303551", "https://data.delijn.be/stops/306093"], ["https://data.delijn.be/stops/303288", "https://data.delijn.be/stops/308738"], ["https://data.delijn.be/stops/308776", "https://data.delijn.be/stops/308778"], ["https://data.delijn.be/stops/204698", "https://data.delijn.be/stops/205697"], ["https://data.delijn.be/stops/502628", "https://data.delijn.be/stops/507108"], ["https://data.delijn.be/stops/504083", "https://data.delijn.be/stops/509610"], ["https://data.delijn.be/stops/202209", "https://data.delijn.be/stops/202771"], ["https://data.delijn.be/stops/407664", "https://data.delijn.be/stops/407677"], ["https://data.delijn.be/stops/400785", "https://data.delijn.be/stops/400834"], ["https://data.delijn.be/stops/404710", "https://data.delijn.be/stops/404754"], ["https://data.delijn.be/stops/106630", "https://data.delijn.be/stops/107157"], ["https://data.delijn.be/stops/207766", "https://data.delijn.be/stops/209405"], ["https://data.delijn.be/stops/204983", "https://data.delijn.be/stops/207210"], ["https://data.delijn.be/stops/203626", "https://data.delijn.be/stops/203627"], ["https://data.delijn.be/stops/202857", "https://data.delijn.be/stops/203858"], ["https://data.delijn.be/stops/304938", "https://data.delijn.be/stops/304948"], ["https://data.delijn.be/stops/208026", "https://data.delijn.be/stops/208037"], ["https://data.delijn.be/stops/407403", "https://data.delijn.be/stops/409494"], ["https://data.delijn.be/stops/109002", "https://data.delijn.be/stops/402019"], ["https://data.delijn.be/stops/403373", "https://data.delijn.be/stops/403513"], ["https://data.delijn.be/stops/502258", "https://data.delijn.be/stops/502920"], ["https://data.delijn.be/stops/204477", "https://data.delijn.be/stops/205479"], ["https://data.delijn.be/stops/208451", "https://data.delijn.be/stops/218016"], ["https://data.delijn.be/stops/206328", "https://data.delijn.be/stops/207329"], ["https://data.delijn.be/stops/108573", "https://data.delijn.be/stops/108988"], ["https://data.delijn.be/stops/207957", "https://data.delijn.be/stops/303858"], ["https://data.delijn.be/stops/404306", "https://data.delijn.be/stops/404312"], ["https://data.delijn.be/stops/301641", "https://data.delijn.be/stops/302119"], ["https://data.delijn.be/stops/300297", "https://data.delijn.be/stops/301901"], ["https://data.delijn.be/stops/305261", "https://data.delijn.be/stops/305272"], ["https://data.delijn.be/stops/501665", "https://data.delijn.be/stops/506665"], ["https://data.delijn.be/stops/206347", "https://data.delijn.be/stops/207221"], ["https://data.delijn.be/stops/200478", "https://data.delijn.be/stops/200797"], ["https://data.delijn.be/stops/205171", "https://data.delijn.be/stops/205771"], ["https://data.delijn.be/stops/301951", "https://data.delijn.be/stops/301952"], ["https://data.delijn.be/stops/206374", "https://data.delijn.be/stops/207349"], ["https://data.delijn.be/stops/407923", "https://data.delijn.be/stops/408263"], ["https://data.delijn.be/stops/208002", "https://data.delijn.be/stops/208099"], ["https://data.delijn.be/stops/107649", "https://data.delijn.be/stops/107760"], ["https://data.delijn.be/stops/505734", "https://data.delijn.be/stops/507610"], ["https://data.delijn.be/stops/303172", "https://data.delijn.be/stops/303173"], ["https://data.delijn.be/stops/101651", "https://data.delijn.be/stops/101652"], ["https://data.delijn.be/stops/101956", "https://data.delijn.be/stops/109872"], ["https://data.delijn.be/stops/409123", "https://data.delijn.be/stops/409137"], ["https://data.delijn.be/stops/300503", "https://data.delijn.be/stops/302362"], ["https://data.delijn.be/stops/205260", "https://data.delijn.be/stops/205830"], ["https://data.delijn.be/stops/209168", "https://data.delijn.be/stops/209424"], ["https://data.delijn.be/stops/403090", "https://data.delijn.be/stops/410336"], ["https://data.delijn.be/stops/202913", "https://data.delijn.be/stops/203912"], ["https://data.delijn.be/stops/509157", "https://data.delijn.be/stops/509645"], ["https://data.delijn.be/stops/301753", "https://data.delijn.be/stops/304572"], ["https://data.delijn.be/stops/301914", "https://data.delijn.be/stops/305840"], ["https://data.delijn.be/stops/200906", "https://data.delijn.be/stops/200931"], ["https://data.delijn.be/stops/305087", "https://data.delijn.be/stops/305088"], ["https://data.delijn.be/stops/101875", "https://data.delijn.be/stops/104485"], ["https://data.delijn.be/stops/407537", "https://data.delijn.be/stops/409108"], ["https://data.delijn.be/stops/202225", "https://data.delijn.be/stops/208964"], ["https://data.delijn.be/stops/502580", "https://data.delijn.be/stops/507084"], ["https://data.delijn.be/stops/403730", "https://data.delijn.be/stops/403874"], ["https://data.delijn.be/stops/301830", "https://data.delijn.be/stops/301843"], ["https://data.delijn.be/stops/208483", "https://data.delijn.be/stops/209482"], ["https://data.delijn.be/stops/401147", "https://data.delijn.be/stops/401155"], ["https://data.delijn.be/stops/503796", "https://data.delijn.be/stops/507684"], ["https://data.delijn.be/stops/208750", "https://data.delijn.be/stops/209387"], ["https://data.delijn.be/stops/401768", "https://data.delijn.be/stops/401769"], ["https://data.delijn.be/stops/504316", "https://data.delijn.be/stops/509861"], ["https://data.delijn.be/stops/307443", "https://data.delijn.be/stops/307444"], ["https://data.delijn.be/stops/301693", "https://data.delijn.be/stops/301695"], ["https://data.delijn.be/stops/207561", "https://data.delijn.be/stops/209125"], ["https://data.delijn.be/stops/402460", "https://data.delijn.be/stops/410094"], ["https://data.delijn.be/stops/202714", "https://data.delijn.be/stops/203714"], ["https://data.delijn.be/stops/502675", "https://data.delijn.be/stops/502710"], ["https://data.delijn.be/stops/105569", "https://data.delijn.be/stops/105580"], ["https://data.delijn.be/stops/506760", "https://data.delijn.be/stops/509933"], ["https://data.delijn.be/stops/101227", "https://data.delijn.be/stops/104449"], ["https://data.delijn.be/stops/401639", "https://data.delijn.be/stops/308208"], ["https://data.delijn.be/stops/502391", "https://data.delijn.be/stops/507323"], ["https://data.delijn.be/stops/102841", "https://data.delijn.be/stops/102842"], ["https://data.delijn.be/stops/103303", "https://data.delijn.be/stops/408948"], ["https://data.delijn.be/stops/101515", "https://data.delijn.be/stops/102055"], ["https://data.delijn.be/stops/205069", "https://data.delijn.be/stops/205797"], ["https://data.delijn.be/stops/201070", "https://data.delijn.be/stops/208842"], ["https://data.delijn.be/stops/207789", "https://data.delijn.be/stops/208373"], ["https://data.delijn.be/stops/403058", "https://data.delijn.be/stops/403583"], ["https://data.delijn.be/stops/407809", "https://data.delijn.be/stops/407843"], ["https://data.delijn.be/stops/301253", "https://data.delijn.be/stops/307615"], ["https://data.delijn.be/stops/504580", "https://data.delijn.be/stops/509585"], ["https://data.delijn.be/stops/208087", "https://data.delijn.be/stops/209070"], ["https://data.delijn.be/stops/401455", "https://data.delijn.be/stops/401574"], ["https://data.delijn.be/stops/307440", "https://data.delijn.be/stops/307442"], ["https://data.delijn.be/stops/502918", "https://data.delijn.be/stops/508005"], ["https://data.delijn.be/stops/107815", "https://data.delijn.be/stops/107817"], ["https://data.delijn.be/stops/300656", "https://data.delijn.be/stops/300678"], ["https://data.delijn.be/stops/307143", "https://data.delijn.be/stops/307144"], ["https://data.delijn.be/stops/406738", "https://data.delijn.be/stops/407395"], ["https://data.delijn.be/stops/502174", "https://data.delijn.be/stops/507174"], ["https://data.delijn.be/stops/301233", "https://data.delijn.be/stops/307909"], ["https://data.delijn.be/stops/108526", "https://data.delijn.be/stops/108539"], ["https://data.delijn.be/stops/505552", "https://data.delijn.be/stops/505630"], ["https://data.delijn.be/stops/300816", "https://data.delijn.be/stops/300880"], ["https://data.delijn.be/stops/404148", "https://data.delijn.be/stops/404149"], ["https://data.delijn.be/stops/104592", "https://data.delijn.be/stops/104593"], ["https://data.delijn.be/stops/202420", "https://data.delijn.be/stops/203272"], ["https://data.delijn.be/stops/300357", "https://data.delijn.be/stops/308991"], ["https://data.delijn.be/stops/302719", "https://data.delijn.be/stops/308596"], ["https://data.delijn.be/stops/201833", "https://data.delijn.be/stops/201835"], ["https://data.delijn.be/stops/303142", "https://data.delijn.be/stops/303145"], ["https://data.delijn.be/stops/502706", "https://data.delijn.be/stops/505627"], ["https://data.delijn.be/stops/406891", "https://data.delijn.be/stops/406893"], ["https://data.delijn.be/stops/205751", "https://data.delijn.be/stops/205752"], ["https://data.delijn.be/stops/201776", "https://data.delijn.be/stops/208247"], ["https://data.delijn.be/stops/406511", "https://data.delijn.be/stops/406514"], ["https://data.delijn.be/stops/407595", "https://data.delijn.be/stops/407596"], ["https://data.delijn.be/stops/108400", "https://data.delijn.be/stops/108407"], ["https://data.delijn.be/stops/300579", "https://data.delijn.be/stops/300978"], ["https://data.delijn.be/stops/404169", "https://data.delijn.be/stops/410184"], ["https://data.delijn.be/stops/406676", "https://data.delijn.be/stops/406677"], ["https://data.delijn.be/stops/209756", "https://data.delijn.be/stops/216004"], ["https://data.delijn.be/stops/504085", "https://data.delijn.be/stops/509085"], ["https://data.delijn.be/stops/303069", "https://data.delijn.be/stops/303192"], ["https://data.delijn.be/stops/302326", "https://data.delijn.be/stops/302327"], ["https://data.delijn.be/stops/408766", "https://data.delijn.be/stops/408768"], ["https://data.delijn.be/stops/403275", "https://data.delijn.be/stops/403498"], ["https://data.delijn.be/stops/206794", "https://data.delijn.be/stops/209051"], ["https://data.delijn.be/stops/105963", "https://data.delijn.be/stops/105966"], ["https://data.delijn.be/stops/107867", "https://data.delijn.be/stops/107869"], ["https://data.delijn.be/stops/303977", "https://data.delijn.be/stops/303986"], ["https://data.delijn.be/stops/201250", "https://data.delijn.be/stops/211063"], ["https://data.delijn.be/stops/101586", "https://data.delijn.be/stops/101587"], ["https://data.delijn.be/stops/206859", "https://data.delijn.be/stops/207531"], ["https://data.delijn.be/stops/407088", "https://data.delijn.be/stops/409496"], ["https://data.delijn.be/stops/201242", "https://data.delijn.be/stops/205919"], ["https://data.delijn.be/stops/400821", "https://data.delijn.be/stops/400827"], ["https://data.delijn.be/stops/503029", "https://data.delijn.be/stops/508023"], ["https://data.delijn.be/stops/301873", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/103926", "https://data.delijn.be/stops/103927"], ["https://data.delijn.be/stops/405868", "https://data.delijn.be/stops/409769"], ["https://data.delijn.be/stops/300817", "https://data.delijn.be/stops/303632"], ["https://data.delijn.be/stops/204261", "https://data.delijn.be/stops/205472"], ["https://data.delijn.be/stops/502067", "https://data.delijn.be/stops/502465"], ["https://data.delijn.be/stops/407589", "https://data.delijn.be/stops/407658"], ["https://data.delijn.be/stops/400855", "https://data.delijn.be/stops/410047"], ["https://data.delijn.be/stops/404996", "https://data.delijn.be/stops/406911"], ["https://data.delijn.be/stops/304513", "https://data.delijn.be/stops/306206"], ["https://data.delijn.be/stops/103388", "https://data.delijn.be/stops/108395"], ["https://data.delijn.be/stops/303033", "https://data.delijn.be/stops/303100"], ["https://data.delijn.be/stops/308799", "https://data.delijn.be/stops/308845"], ["https://data.delijn.be/stops/301032", "https://data.delijn.be/stops/307683"], ["https://data.delijn.be/stops/503091", "https://data.delijn.be/stops/508973"], ["https://data.delijn.be/stops/408928", "https://data.delijn.be/stops/408946"], ["https://data.delijn.be/stops/501744", "https://data.delijn.be/stops/504125"], ["https://data.delijn.be/stops/300014", "https://data.delijn.be/stops/304547"], ["https://data.delijn.be/stops/501078", "https://data.delijn.be/stops/501401"], ["https://data.delijn.be/stops/501007", "https://data.delijn.be/stops/508745"], ["https://data.delijn.be/stops/208379", "https://data.delijn.be/stops/209379"], ["https://data.delijn.be/stops/303491", "https://data.delijn.be/stops/303497"], ["https://data.delijn.be/stops/304463", "https://data.delijn.be/stops/307719"], ["https://data.delijn.be/stops/502329", "https://data.delijn.be/stops/507327"], ["https://data.delijn.be/stops/200815", "https://data.delijn.be/stops/200816"], ["https://data.delijn.be/stops/301724", "https://data.delijn.be/stops/301761"], ["https://data.delijn.be/stops/403448", "https://data.delijn.be/stops/405139"], ["https://data.delijn.be/stops/410030", "https://data.delijn.be/stops/410031"], ["https://data.delijn.be/stops/206668", "https://data.delijn.be/stops/206799"], ["https://data.delijn.be/stops/303324", "https://data.delijn.be/stops/303325"], ["https://data.delijn.be/stops/503438", "https://data.delijn.be/stops/508438"], ["https://data.delijn.be/stops/104446", "https://data.delijn.be/stops/107538"], ["https://data.delijn.be/stops/508370", "https://data.delijn.be/stops/508444"], ["https://data.delijn.be/stops/300264", "https://data.delijn.be/stops/307495"], ["https://data.delijn.be/stops/501334", "https://data.delijn.be/stops/506334"], ["https://data.delijn.be/stops/204189", "https://data.delijn.be/stops/205189"], ["https://data.delijn.be/stops/105614", "https://data.delijn.be/stops/105617"], ["https://data.delijn.be/stops/300872", "https://data.delijn.be/stops/308109"], ["https://data.delijn.be/stops/400473", "https://data.delijn.be/stops/400480"], ["https://data.delijn.be/stops/201263", "https://data.delijn.be/stops/203545"], ["https://data.delijn.be/stops/403179", "https://data.delijn.be/stops/403183"], ["https://data.delijn.be/stops/503425", "https://data.delijn.be/stops/508374"], ["https://data.delijn.be/stops/504494", "https://data.delijn.be/stops/509490"], ["https://data.delijn.be/stops/402935", "https://data.delijn.be/stops/403964"], ["https://data.delijn.be/stops/407227", "https://data.delijn.be/stops/407507"], ["https://data.delijn.be/stops/503089", "https://data.delijn.be/stops/503094"], ["https://data.delijn.be/stops/303411", "https://data.delijn.be/stops/303417"], ["https://data.delijn.be/stops/200647", "https://data.delijn.be/stops/202863"], ["https://data.delijn.be/stops/401210", "https://data.delijn.be/stops/401256"], ["https://data.delijn.be/stops/410212", "https://data.delijn.be/stops/410390"], ["https://data.delijn.be/stops/403091", "https://data.delijn.be/stops/403094"], ["https://data.delijn.be/stops/208127", "https://data.delijn.be/stops/208128"], ["https://data.delijn.be/stops/301950", "https://data.delijn.be/stops/303287"], ["https://data.delijn.be/stops/405260", "https://data.delijn.be/stops/405261"], ["https://data.delijn.be/stops/405834", "https://data.delijn.be/stops/407361"], ["https://data.delijn.be/stops/102394", "https://data.delijn.be/stops/108183"], ["https://data.delijn.be/stops/401989", "https://data.delijn.be/stops/404980"], ["https://data.delijn.be/stops/200501", "https://data.delijn.be/stops/200502"], ["https://data.delijn.be/stops/200330", "https://data.delijn.be/stops/202200"], ["https://data.delijn.be/stops/402717", "https://data.delijn.be/stops/308145"], ["https://data.delijn.be/stops/404560", "https://data.delijn.be/stops/406742"], ["https://data.delijn.be/stops/204300", "https://data.delijn.be/stops/204306"], ["https://data.delijn.be/stops/101343", "https://data.delijn.be/stops/108101"], ["https://data.delijn.be/stops/106092", "https://data.delijn.be/stops/106143"], ["https://data.delijn.be/stops/101468", "https://data.delijn.be/stops/109267"], ["https://data.delijn.be/stops/407706", "https://data.delijn.be/stops/407707"], ["https://data.delijn.be/stops/402000", "https://data.delijn.be/stops/404969"], ["https://data.delijn.be/stops/502347", "https://data.delijn.be/stops/505309"], ["https://data.delijn.be/stops/305131", "https://data.delijn.be/stops/305143"], ["https://data.delijn.be/stops/104497", "https://data.delijn.be/stops/107511"], ["https://data.delijn.be/stops/405802", "https://data.delijn.be/stops/405861"], ["https://data.delijn.be/stops/403236", "https://data.delijn.be/stops/403471"], ["https://data.delijn.be/stops/400979", "https://data.delijn.be/stops/409632"], ["https://data.delijn.be/stops/207696", "https://data.delijn.be/stops/207714"], ["https://data.delijn.be/stops/405264", "https://data.delijn.be/stops/406410"], ["https://data.delijn.be/stops/400673", "https://data.delijn.be/stops/402539"], ["https://data.delijn.be/stops/501081", "https://data.delijn.be/stops/506078"], ["https://data.delijn.be/stops/106200", "https://data.delijn.be/stops/106301"], ["https://data.delijn.be/stops/502306", "https://data.delijn.be/stops/502316"], ["https://data.delijn.be/stops/508804", "https://data.delijn.be/stops/508809"], ["https://data.delijn.be/stops/407924", "https://data.delijn.be/stops/408037"], ["https://data.delijn.be/stops/200725", "https://data.delijn.be/stops/204942"], ["https://data.delijn.be/stops/302756", "https://data.delijn.be/stops/302763"], ["https://data.delijn.be/stops/108757", "https://data.delijn.be/stops/109757"], ["https://data.delijn.be/stops/201486", "https://data.delijn.be/stops/201489"], ["https://data.delijn.be/stops/101365", "https://data.delijn.be/stops/101580"], ["https://data.delijn.be/stops/204072", "https://data.delijn.be/stops/204186"], ["https://data.delijn.be/stops/501562", "https://data.delijn.be/stops/590411"], ["https://data.delijn.be/stops/401401", "https://data.delijn.be/stops/300924"], ["https://data.delijn.be/stops/102484", "https://data.delijn.be/stops/400421"], ["https://data.delijn.be/stops/203496", "https://data.delijn.be/stops/209867"], ["https://data.delijn.be/stops/106498", "https://data.delijn.be/stops/108231"], ["https://data.delijn.be/stops/406976", "https://data.delijn.be/stops/409478"], ["https://data.delijn.be/stops/103265", "https://data.delijn.be/stops/103270"], ["https://data.delijn.be/stops/103466", "https://data.delijn.be/stops/106686"], ["https://data.delijn.be/stops/401370", "https://data.delijn.be/stops/401377"], ["https://data.delijn.be/stops/405960", "https://data.delijn.be/stops/308153"], ["https://data.delijn.be/stops/200729", "https://data.delijn.be/stops/200730"], ["https://data.delijn.be/stops/402547", "https://data.delijn.be/stops/402580"], ["https://data.delijn.be/stops/101589", "https://data.delijn.be/stops/103695"], ["https://data.delijn.be/stops/204076", "https://data.delijn.be/stops/204088"], ["https://data.delijn.be/stops/504543", "https://data.delijn.be/stops/505989"], ["https://data.delijn.be/stops/306946", "https://data.delijn.be/stops/306949"], ["https://data.delijn.be/stops/101440", "https://data.delijn.be/stops/104081"], ["https://data.delijn.be/stops/109082", "https://data.delijn.be/stops/109654"], ["https://data.delijn.be/stops/505676", "https://data.delijn.be/stops/507303"], ["https://data.delijn.be/stops/302271", "https://data.delijn.be/stops/304315"], ["https://data.delijn.be/stops/101778", "https://data.delijn.be/stops/102186"], ["https://data.delijn.be/stops/403745", "https://data.delijn.be/stops/403777"], ["https://data.delijn.be/stops/202059", "https://data.delijn.be/stops/210073"], ["https://data.delijn.be/stops/201911", "https://data.delijn.be/stops/203529"], ["https://data.delijn.be/stops/305053", "https://data.delijn.be/stops/307277"], ["https://data.delijn.be/stops/302394", "https://data.delijn.be/stops/302396"], ["https://data.delijn.be/stops/206323", "https://data.delijn.be/stops/206860"], ["https://data.delijn.be/stops/404997", "https://data.delijn.be/stops/406908"], ["https://data.delijn.be/stops/301470", "https://data.delijn.be/stops/301480"], ["https://data.delijn.be/stops/505030", "https://data.delijn.be/stops/506476"], ["https://data.delijn.be/stops/202575", "https://data.delijn.be/stops/203575"], ["https://data.delijn.be/stops/206198", "https://data.delijn.be/stops/206199"], ["https://data.delijn.be/stops/407731", "https://data.delijn.be/stops/407734"], ["https://data.delijn.be/stops/503180", "https://data.delijn.be/stops/508179"], ["https://data.delijn.be/stops/102659", "https://data.delijn.be/stops/109382"], ["https://data.delijn.be/stops/108282", "https://data.delijn.be/stops/109361"], ["https://data.delijn.be/stops/400099", "https://data.delijn.be/stops/403311"], ["https://data.delijn.be/stops/206504", "https://data.delijn.be/stops/207504"], ["https://data.delijn.be/stops/305188", "https://data.delijn.be/stops/306965"], ["https://data.delijn.be/stops/407580", "https://data.delijn.be/stops/409313"], ["https://data.delijn.be/stops/200264", "https://data.delijn.be/stops/201432"], ["https://data.delijn.be/stops/200766", "https://data.delijn.be/stops/208300"], ["https://data.delijn.be/stops/300651", "https://data.delijn.be/stops/300652"], ["https://data.delijn.be/stops/101430", "https://data.delijn.be/stops/104225"], ["https://data.delijn.be/stops/206250", "https://data.delijn.be/stops/206586"], ["https://data.delijn.be/stops/105172", "https://data.delijn.be/stops/107707"], ["https://data.delijn.be/stops/407280", "https://data.delijn.be/stops/407281"], ["https://data.delijn.be/stops/408890", "https://data.delijn.be/stops/408892"], ["https://data.delijn.be/stops/108651", "https://data.delijn.be/stops/304329"], ["https://data.delijn.be/stops/204035", "https://data.delijn.be/stops/204558"], ["https://data.delijn.be/stops/300937", "https://data.delijn.be/stops/300951"], ["https://data.delijn.be/stops/303321", "https://data.delijn.be/stops/305685"], ["https://data.delijn.be/stops/304890", "https://data.delijn.be/stops/307982"], ["https://data.delijn.be/stops/501338", "https://data.delijn.be/stops/506343"], ["https://data.delijn.be/stops/502057", "https://data.delijn.be/stops/502750"], ["https://data.delijn.be/stops/403642", "https://data.delijn.be/stops/407344"], ["https://data.delijn.be/stops/302504", "https://data.delijn.be/stops/302505"], ["https://data.delijn.be/stops/503566", "https://data.delijn.be/stops/503996"], ["https://data.delijn.be/stops/204374", "https://data.delijn.be/stops/205383"], ["https://data.delijn.be/stops/407848", "https://data.delijn.be/stops/407908"], ["https://data.delijn.be/stops/200900", "https://data.delijn.be/stops/202236"], ["https://data.delijn.be/stops/200405", "https://data.delijn.be/stops/201724"], ["https://data.delijn.be/stops/300769", "https://data.delijn.be/stops/301067"], ["https://data.delijn.be/stops/502915", "https://data.delijn.be/stops/507019"], ["https://data.delijn.be/stops/307444", "https://data.delijn.be/stops/307825"], ["https://data.delijn.be/stops/102906", "https://data.delijn.be/stops/104287"], ["https://data.delijn.be/stops/204642", "https://data.delijn.be/stops/204643"], ["https://data.delijn.be/stops/505793", "https://data.delijn.be/stops/508040"], ["https://data.delijn.be/stops/208245", "https://data.delijn.be/stops/209245"], ["https://data.delijn.be/stops/106892", "https://data.delijn.be/stops/107219"], ["https://data.delijn.be/stops/400351", "https://data.delijn.be/stops/400396"], ["https://data.delijn.be/stops/403140", "https://data.delijn.be/stops/410010"], ["https://data.delijn.be/stops/407971", "https://data.delijn.be/stops/408421"], ["https://data.delijn.be/stops/204913", "https://data.delijn.be/stops/204916"], ["https://data.delijn.be/stops/200004", "https://data.delijn.be/stops/201004"], ["https://data.delijn.be/stops/103376", "https://data.delijn.be/stops/406848"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/107144"], ["https://data.delijn.be/stops/400936", "https://data.delijn.be/stops/400941"], ["https://data.delijn.be/stops/105074", "https://data.delijn.be/stops/105192"], ["https://data.delijn.be/stops/505364", "https://data.delijn.be/stops/508591"], ["https://data.delijn.be/stops/408034", "https://data.delijn.be/stops/408035"], ["https://data.delijn.be/stops/504548", "https://data.delijn.be/stops/509545"], ["https://data.delijn.be/stops/505803", "https://data.delijn.be/stops/509516"], ["https://data.delijn.be/stops/406290", "https://data.delijn.be/stops/410131"], ["https://data.delijn.be/stops/304385", "https://data.delijn.be/stops/306870"], ["https://data.delijn.be/stops/503840", "https://data.delijn.be/stops/508860"], ["https://data.delijn.be/stops/206442", "https://data.delijn.be/stops/207439"], ["https://data.delijn.be/stops/408537", "https://data.delijn.be/stops/408663"], ["https://data.delijn.be/stops/501415", "https://data.delijn.be/stops/501475"], ["https://data.delijn.be/stops/202513", "https://data.delijn.be/stops/203514"], ["https://data.delijn.be/stops/200027", "https://data.delijn.be/stops/201446"], ["https://data.delijn.be/stops/102248", "https://data.delijn.be/stops/105939"], ["https://data.delijn.be/stops/504462", "https://data.delijn.be/stops/504463"], ["https://data.delijn.be/stops/305092", "https://data.delijn.be/stops/305093"], ["https://data.delijn.be/stops/300673", "https://data.delijn.be/stops/300676"], ["https://data.delijn.be/stops/504909", "https://data.delijn.be/stops/509946"], ["https://data.delijn.be/stops/503560", "https://data.delijn.be/stops/503606"], ["https://data.delijn.be/stops/506769", "https://data.delijn.be/stops/506771"], ["https://data.delijn.be/stops/405300", "https://data.delijn.be/stops/405496"], ["https://data.delijn.be/stops/405546", "https://data.delijn.be/stops/406887"], ["https://data.delijn.be/stops/200408", "https://data.delijn.be/stops/200409"], ["https://data.delijn.be/stops/206973", "https://data.delijn.be/stops/207972"], ["https://data.delijn.be/stops/207980", "https://data.delijn.be/stops/207981"], ["https://data.delijn.be/stops/206809", "https://data.delijn.be/stops/207196"], ["https://data.delijn.be/stops/400533", "https://data.delijn.be/stops/403625"], ["https://data.delijn.be/stops/400593", "https://data.delijn.be/stops/405992"], ["https://data.delijn.be/stops/401480", "https://data.delijn.be/stops/406008"], ["https://data.delijn.be/stops/301845", "https://data.delijn.be/stops/306984"], ["https://data.delijn.be/stops/301382", "https://data.delijn.be/stops/306142"], ["https://data.delijn.be/stops/505208", "https://data.delijn.be/stops/505897"], ["https://data.delijn.be/stops/107539", "https://data.delijn.be/stops/109601"], ["https://data.delijn.be/stops/504520", "https://data.delijn.be/stops/509524"], ["https://data.delijn.be/stops/101023", "https://data.delijn.be/stops/105595"], ["https://data.delijn.be/stops/107449", "https://data.delijn.be/stops/107451"], ["https://data.delijn.be/stops/501635", "https://data.delijn.be/stops/506738"], ["https://data.delijn.be/stops/303271", "https://data.delijn.be/stops/305728"], ["https://data.delijn.be/stops/202498", "https://data.delijn.be/stops/205792"], ["https://data.delijn.be/stops/201705", "https://data.delijn.be/stops/203443"], ["https://data.delijn.be/stops/301422", "https://data.delijn.be/stops/302132"], ["https://data.delijn.be/stops/504976", "https://data.delijn.be/stops/509133"], ["https://data.delijn.be/stops/302472", "https://data.delijn.be/stops/302732"], ["https://data.delijn.be/stops/108840", "https://data.delijn.be/stops/108842"], ["https://data.delijn.be/stops/505341", "https://data.delijn.be/stops/507757"], ["https://data.delijn.be/stops/102064", "https://data.delijn.be/stops/109532"], ["https://data.delijn.be/stops/301949", "https://data.delijn.be/stops/303286"], ["https://data.delijn.be/stops/504018", "https://data.delijn.be/stops/509018"], ["https://data.delijn.be/stops/208846", "https://data.delijn.be/stops/209039"], ["https://data.delijn.be/stops/202776", "https://data.delijn.be/stops/202935"], ["https://data.delijn.be/stops/300487", "https://data.delijn.be/stops/301995"], ["https://data.delijn.be/stops/400850", "https://data.delijn.be/stops/400851"], ["https://data.delijn.be/stops/407792", "https://data.delijn.be/stops/307447"], ["https://data.delijn.be/stops/305180", "https://data.delijn.be/stops/305212"], ["https://data.delijn.be/stops/204078", "https://data.delijn.be/stops/205235"], ["https://data.delijn.be/stops/501108", "https://data.delijn.be/stops/506108"], ["https://data.delijn.be/stops/300955", "https://data.delijn.be/stops/301106"], ["https://data.delijn.be/stops/302707", "https://data.delijn.be/stops/302719"], ["https://data.delijn.be/stops/401618", "https://data.delijn.be/stops/308214"], ["https://data.delijn.be/stops/504010", "https://data.delijn.be/stops/509404"], ["https://data.delijn.be/stops/408311", "https://data.delijn.be/stops/408378"], ["https://data.delijn.be/stops/408572", "https://data.delijn.be/stops/408815"], ["https://data.delijn.be/stops/207732", "https://data.delijn.be/stops/304064"], ["https://data.delijn.be/stops/206927", "https://data.delijn.be/stops/207528"], ["https://data.delijn.be/stops/105238", "https://data.delijn.be/stops/105248"], ["https://data.delijn.be/stops/200247", "https://data.delijn.be/stops/201049"], ["https://data.delijn.be/stops/207787", "https://data.delijn.be/stops/208407"], ["https://data.delijn.be/stops/106374", "https://data.delijn.be/stops/106376"], ["https://data.delijn.be/stops/401865", "https://data.delijn.be/stops/401867"], ["https://data.delijn.be/stops/201403", "https://data.delijn.be/stops/202038"], ["https://data.delijn.be/stops/106786", "https://data.delijn.be/stops/106788"], ["https://data.delijn.be/stops/302630", "https://data.delijn.be/stops/302634"], ["https://data.delijn.be/stops/208238", "https://data.delijn.be/stops/209592"], ["https://data.delijn.be/stops/405756", "https://data.delijn.be/stops/405769"], ["https://data.delijn.be/stops/404245", "https://data.delijn.be/stops/409307"], ["https://data.delijn.be/stops/207664", "https://data.delijn.be/stops/209793"], ["https://data.delijn.be/stops/404871", "https://data.delijn.be/stops/404874"], ["https://data.delijn.be/stops/304832", "https://data.delijn.be/stops/306163"], ["https://data.delijn.be/stops/404794", "https://data.delijn.be/stops/404805"], ["https://data.delijn.be/stops/101572", "https://data.delijn.be/stops/105464"], ["https://data.delijn.be/stops/201964", "https://data.delijn.be/stops/206769"], ["https://data.delijn.be/stops/409250", "https://data.delijn.be/stops/409251"], ["https://data.delijn.be/stops/108854", "https://data.delijn.be/stops/108855"], ["https://data.delijn.be/stops/503549", "https://data.delijn.be/stops/503557"], ["https://data.delijn.be/stops/400444", "https://data.delijn.be/stops/404772"], ["https://data.delijn.be/stops/302374", "https://data.delijn.be/stops/304068"], ["https://data.delijn.be/stops/501344", "https://data.delijn.be/stops/501359"], ["https://data.delijn.be/stops/405344", "https://data.delijn.be/stops/308124"], ["https://data.delijn.be/stops/201017", "https://data.delijn.be/stops/201149"], ["https://data.delijn.be/stops/400730", "https://data.delijn.be/stops/406645"], ["https://data.delijn.be/stops/406659", "https://data.delijn.be/stops/406692"], ["https://data.delijn.be/stops/404213", "https://data.delijn.be/stops/404242"], ["https://data.delijn.be/stops/304873", "https://data.delijn.be/stops/308955"], ["https://data.delijn.be/stops/406639", "https://data.delijn.be/stops/406640"], ["https://data.delijn.be/stops/405294", "https://data.delijn.be/stops/405299"], ["https://data.delijn.be/stops/408125", "https://data.delijn.be/stops/408415"], ["https://data.delijn.be/stops/304813", "https://data.delijn.be/stops/308771"], ["https://data.delijn.be/stops/102543", "https://data.delijn.be/stops/405100"], ["https://data.delijn.be/stops/301971", "https://data.delijn.be/stops/301987"], ["https://data.delijn.be/stops/403682", "https://data.delijn.be/stops/403683"], ["https://data.delijn.be/stops/505301", "https://data.delijn.be/stops/509026"], ["https://data.delijn.be/stops/302345", "https://data.delijn.be/stops/306183"], ["https://data.delijn.be/stops/208474", "https://data.delijn.be/stops/209672"], ["https://data.delijn.be/stops/305714", "https://data.delijn.be/stops/306302"], ["https://data.delijn.be/stops/504772", "https://data.delijn.be/stops/509653"], ["https://data.delijn.be/stops/502242", "https://data.delijn.be/stops/507239"], ["https://data.delijn.be/stops/206130", "https://data.delijn.be/stops/206715"], ["https://data.delijn.be/stops/104724", "https://data.delijn.be/stops/105390"], ["https://data.delijn.be/stops/401311", "https://data.delijn.be/stops/406656"], ["https://data.delijn.be/stops/102548", "https://data.delijn.be/stops/405004"], ["https://data.delijn.be/stops/303202", "https://data.delijn.be/stops/305526"], ["https://data.delijn.be/stops/502736", "https://data.delijn.be/stops/507032"], ["https://data.delijn.be/stops/402808", "https://data.delijn.be/stops/402816"], ["https://data.delijn.be/stops/200807", "https://data.delijn.be/stops/200808"], ["https://data.delijn.be/stops/405806", "https://data.delijn.be/stops/408456"], ["https://data.delijn.be/stops/501418", "https://data.delijn.be/stops/506407"], ["https://data.delijn.be/stops/108952", "https://data.delijn.be/stops/108956"], ["https://data.delijn.be/stops/503364", "https://data.delijn.be/stops/509364"], ["https://data.delijn.be/stops/300022", "https://data.delijn.be/stops/307261"], ["https://data.delijn.be/stops/301188", "https://data.delijn.be/stops/301225"], ["https://data.delijn.be/stops/300789", "https://data.delijn.be/stops/302406"], ["https://data.delijn.be/stops/201414", "https://data.delijn.be/stops/201415"], ["https://data.delijn.be/stops/507272", "https://data.delijn.be/stops/507655"], ["https://data.delijn.be/stops/301265", "https://data.delijn.be/stops/301276"], ["https://data.delijn.be/stops/208166", "https://data.delijn.be/stops/209165"], ["https://data.delijn.be/stops/504729", "https://data.delijn.be/stops/504730"], ["https://data.delijn.be/stops/207584", "https://data.delijn.be/stops/207585"], ["https://data.delijn.be/stops/304994", "https://data.delijn.be/stops/305000"], ["https://data.delijn.be/stops/403142", "https://data.delijn.be/stops/403156"], ["https://data.delijn.be/stops/202318", "https://data.delijn.be/stops/208887"], ["https://data.delijn.be/stops/408356", "https://data.delijn.be/stops/410256"], ["https://data.delijn.be/stops/405414", "https://data.delijn.be/stops/306775"], ["https://data.delijn.be/stops/106184", "https://data.delijn.be/stops/107436"], ["https://data.delijn.be/stops/407835", "https://data.delijn.be/stops/407908"], ["https://data.delijn.be/stops/102679", "https://data.delijn.be/stops/105036"], ["https://data.delijn.be/stops/300753", "https://data.delijn.be/stops/300787"], ["https://data.delijn.be/stops/106285", "https://data.delijn.be/stops/106352"], ["https://data.delijn.be/stops/503366", "https://data.delijn.be/stops/510024"], ["https://data.delijn.be/stops/204539", "https://data.delijn.be/stops/205515"], ["https://data.delijn.be/stops/102724", "https://data.delijn.be/stops/105624"], ["https://data.delijn.be/stops/303988", "https://data.delijn.be/stops/306290"], ["https://data.delijn.be/stops/101828", "https://data.delijn.be/stops/101918"], ["https://data.delijn.be/stops/207566", "https://data.delijn.be/stops/207939"], ["https://data.delijn.be/stops/105121", "https://data.delijn.be/stops/105219"], ["https://data.delijn.be/stops/504480", "https://data.delijn.be/stops/505817"], ["https://data.delijn.be/stops/300367", "https://data.delijn.be/stops/304054"], ["https://data.delijn.be/stops/200604", "https://data.delijn.be/stops/201604"], ["https://data.delijn.be/stops/206639", "https://data.delijn.be/stops/207639"], ["https://data.delijn.be/stops/402160", "https://data.delijn.be/stops/402266"], ["https://data.delijn.be/stops/206645", "https://data.delijn.be/stops/207491"], ["https://data.delijn.be/stops/207186", "https://data.delijn.be/stops/207187"], ["https://data.delijn.be/stops/302858", "https://data.delijn.be/stops/302859"], ["https://data.delijn.be/stops/107106", "https://data.delijn.be/stops/107107"], ["https://data.delijn.be/stops/305171", "https://data.delijn.be/stops/305172"], ["https://data.delijn.be/stops/401951", "https://data.delijn.be/stops/407556"], ["https://data.delijn.be/stops/304992", "https://data.delijn.be/stops/304993"], ["https://data.delijn.be/stops/505154", "https://data.delijn.be/stops/505742"], ["https://data.delijn.be/stops/302955", "https://data.delijn.be/stops/302960"], ["https://data.delijn.be/stops/505959", "https://data.delijn.be/stops/509891"], ["https://data.delijn.be/stops/503194", "https://data.delijn.be/stops/503198"], ["https://data.delijn.be/stops/408399", "https://data.delijn.be/stops/408401"], ["https://data.delijn.be/stops/209683", "https://data.delijn.be/stops/209685"], ["https://data.delijn.be/stops/202160", "https://data.delijn.be/stops/203160"], ["https://data.delijn.be/stops/402192", "https://data.delijn.be/stops/402376"], ["https://data.delijn.be/stops/403145", "https://data.delijn.be/stops/410273"], ["https://data.delijn.be/stops/301289", "https://data.delijn.be/stops/301296"], ["https://data.delijn.be/stops/102420", "https://data.delijn.be/stops/102735"], ["https://data.delijn.be/stops/308609", "https://data.delijn.be/stops/308631"], ["https://data.delijn.be/stops/200835", "https://data.delijn.be/stops/200838"], ["https://data.delijn.be/stops/206257", "https://data.delijn.be/stops/207257"], ["https://data.delijn.be/stops/106615", "https://data.delijn.be/stops/106617"], ["https://data.delijn.be/stops/101197", "https://data.delijn.be/stops/101198"], ["https://data.delijn.be/stops/501212", "https://data.delijn.be/stops/501213"], ["https://data.delijn.be/stops/301262", "https://data.delijn.be/stops/307392"], ["https://data.delijn.be/stops/304389", "https://data.delijn.be/stops/304395"], ["https://data.delijn.be/stops/105109", "https://data.delijn.be/stops/107815"], ["https://data.delijn.be/stops/105487", "https://data.delijn.be/stops/108802"], ["https://data.delijn.be/stops/206322", "https://data.delijn.be/stops/206686"], ["https://data.delijn.be/stops/200570", "https://data.delijn.be/stops/200573"], ["https://data.delijn.be/stops/201914", "https://data.delijn.be/stops/201931"], ["https://data.delijn.be/stops/303256", "https://data.delijn.be/stops/303269"], ["https://data.delijn.be/stops/201218", "https://data.delijn.be/stops/201266"], ["https://data.delijn.be/stops/206669", "https://data.delijn.be/stops/209106"], ["https://data.delijn.be/stops/108896", "https://data.delijn.be/stops/108899"], ["https://data.delijn.be/stops/402287", "https://data.delijn.be/stops/406868"], ["https://data.delijn.be/stops/201279", "https://data.delijn.be/stops/211048"], ["https://data.delijn.be/stops/301343", "https://data.delijn.be/stops/301345"], ["https://data.delijn.be/stops/105128", "https://data.delijn.be/stops/105131"], ["https://data.delijn.be/stops/405063", "https://data.delijn.be/stops/405113"], ["https://data.delijn.be/stops/206116", "https://data.delijn.be/stops/206117"], ["https://data.delijn.be/stops/300545", "https://data.delijn.be/stops/307087"], ["https://data.delijn.be/stops/107523", "https://data.delijn.be/stops/107529"], ["https://data.delijn.be/stops/302613", "https://data.delijn.be/stops/302627"], ["https://data.delijn.be/stops/404431", "https://data.delijn.be/stops/404514"], ["https://data.delijn.be/stops/208593", "https://data.delijn.be/stops/209218"], ["https://data.delijn.be/stops/504134", "https://data.delijn.be/stops/504772"], ["https://data.delijn.be/stops/103998", "https://data.delijn.be/stops/104010"], ["https://data.delijn.be/stops/501153", "https://data.delijn.be/stops/509837"], ["https://data.delijn.be/stops/408223", "https://data.delijn.be/stops/408312"], ["https://data.delijn.be/stops/105216", "https://data.delijn.be/stops/106233"], ["https://data.delijn.be/stops/303420", "https://data.delijn.be/stops/308066"], ["https://data.delijn.be/stops/201387", "https://data.delijn.be/stops/209950"], ["https://data.delijn.be/stops/301370", "https://data.delijn.be/stops/306127"], ["https://data.delijn.be/stops/406179", "https://data.delijn.be/stops/406281"], ["https://data.delijn.be/stops/204230", "https://data.delijn.be/stops/205192"], ["https://data.delijn.be/stops/105117", "https://data.delijn.be/stops/109749"], ["https://data.delijn.be/stops/204252", "https://data.delijn.be/stops/204758"], ["https://data.delijn.be/stops/204362", "https://data.delijn.be/stops/205317"], ["https://data.delijn.be/stops/507557", "https://data.delijn.be/stops/509892"], ["https://data.delijn.be/stops/508445", "https://data.delijn.be/stops/508658"], ["https://data.delijn.be/stops/109784", "https://data.delijn.be/stops/109785"], ["https://data.delijn.be/stops/405277", "https://data.delijn.be/stops/410086"], ["https://data.delijn.be/stops/200354", "https://data.delijn.be/stops/201017"], ["https://data.delijn.be/stops/204144", "https://data.delijn.be/stops/207635"], ["https://data.delijn.be/stops/202690", "https://data.delijn.be/stops/203690"], ["https://data.delijn.be/stops/204115", "https://data.delijn.be/stops/205114"], ["https://data.delijn.be/stops/406232", "https://data.delijn.be/stops/406233"], ["https://data.delijn.be/stops/403565", "https://data.delijn.be/stops/410120"], ["https://data.delijn.be/stops/308694", "https://data.delijn.be/stops/308695"], ["https://data.delijn.be/stops/106511", "https://data.delijn.be/stops/106512"], ["https://data.delijn.be/stops/104044", "https://data.delijn.be/stops/107624"], ["https://data.delijn.be/stops/208164", "https://data.delijn.be/stops/209163"], ["https://data.delijn.be/stops/302202", "https://data.delijn.be/stops/304786"], ["https://data.delijn.be/stops/507454", "https://data.delijn.be/stops/509830"], ["https://data.delijn.be/stops/302353", "https://data.delijn.be/stops/306194"], ["https://data.delijn.be/stops/108154", "https://data.delijn.be/stops/108158"], ["https://data.delijn.be/stops/403368", "https://data.delijn.be/stops/403380"], ["https://data.delijn.be/stops/508436", "https://data.delijn.be/stops/508816"], ["https://data.delijn.be/stops/504290", "https://data.delijn.be/stops/504602"], ["https://data.delijn.be/stops/109285", "https://data.delijn.be/stops/109286"], ["https://data.delijn.be/stops/200809", "https://data.delijn.be/stops/203075"], ["https://data.delijn.be/stops/104698", "https://data.delijn.be/stops/104699"], ["https://data.delijn.be/stops/202760", "https://data.delijn.be/stops/203760"], ["https://data.delijn.be/stops/209571", "https://data.delijn.be/stops/209572"], ["https://data.delijn.be/stops/200915", "https://data.delijn.be/stops/200916"], ["https://data.delijn.be/stops/305031", "https://data.delijn.be/stops/305037"], ["https://data.delijn.be/stops/206813", "https://data.delijn.be/stops/206855"], ["https://data.delijn.be/stops/502795", "https://data.delijn.be/stops/502933"], ["https://data.delijn.be/stops/208130", "https://data.delijn.be/stops/209129"], ["https://data.delijn.be/stops/402750", "https://data.delijn.be/stops/402767"], ["https://data.delijn.be/stops/403570", "https://data.delijn.be/stops/406836"], ["https://data.delijn.be/stops/207137", "https://data.delijn.be/stops/207469"], ["https://data.delijn.be/stops/409271", "https://data.delijn.be/stops/409299"], ["https://data.delijn.be/stops/105528", "https://data.delijn.be/stops/105532"], ["https://data.delijn.be/stops/306147", "https://data.delijn.be/stops/306150"], ["https://data.delijn.be/stops/402374", "https://data.delijn.be/stops/402447"], ["https://data.delijn.be/stops/208661", "https://data.delijn.be/stops/208725"], ["https://data.delijn.be/stops/505272", "https://data.delijn.be/stops/505276"], ["https://data.delijn.be/stops/302490", "https://data.delijn.be/stops/308836"], ["https://data.delijn.be/stops/201707", "https://data.delijn.be/stops/202443"], ["https://data.delijn.be/stops/502084", "https://data.delijn.be/stops/507120"], ["https://data.delijn.be/stops/300155", "https://data.delijn.be/stops/300156"], ["https://data.delijn.be/stops/400556", "https://data.delijn.be/stops/403226"], ["https://data.delijn.be/stops/301758", "https://data.delijn.be/stops/305948"], ["https://data.delijn.be/stops/305894", "https://data.delijn.be/stops/308141"], ["https://data.delijn.be/stops/307777", "https://data.delijn.be/stops/307893"], ["https://data.delijn.be/stops/405185", "https://data.delijn.be/stops/405205"], ["https://data.delijn.be/stops/502290", "https://data.delijn.be/stops/507290"], ["https://data.delijn.be/stops/204113", "https://data.delijn.be/stops/205111"], ["https://data.delijn.be/stops/105487", "https://data.delijn.be/stops/105496"], ["https://data.delijn.be/stops/201566", "https://data.delijn.be/stops/201665"], ["https://data.delijn.be/stops/204753", "https://data.delijn.be/stops/205620"], ["https://data.delijn.be/stops/502181", "https://data.delijn.be/stops/507181"], ["https://data.delijn.be/stops/103630", "https://data.delijn.be/stops/103763"], ["https://data.delijn.be/stops/503372", "https://data.delijn.be/stops/503443"], ["https://data.delijn.be/stops/201953", "https://data.delijn.be/stops/202459"], ["https://data.delijn.be/stops/206220", "https://data.delijn.be/stops/207201"], ["https://data.delijn.be/stops/200537", "https://data.delijn.be/stops/200538"], ["https://data.delijn.be/stops/202699", "https://data.delijn.be/stops/203698"], ["https://data.delijn.be/stops/208128", "https://data.delijn.be/stops/208816"], ["https://data.delijn.be/stops/502170", "https://data.delijn.be/stops/507573"], ["https://data.delijn.be/stops/200278", "https://data.delijn.be/stops/200338"], ["https://data.delijn.be/stops/507798", "https://data.delijn.be/stops/508813"], ["https://data.delijn.be/stops/505319", "https://data.delijn.be/stops/505739"], ["https://data.delijn.be/stops/404360", "https://data.delijn.be/stops/408762"], ["https://data.delijn.be/stops/202153", "https://data.delijn.be/stops/202154"], ["https://data.delijn.be/stops/202161", "https://data.delijn.be/stops/203633"], ["https://data.delijn.be/stops/404300", "https://data.delijn.be/stops/409576"], ["https://data.delijn.be/stops/202276", "https://data.delijn.be/stops/210659"], ["https://data.delijn.be/stops/406718", "https://data.delijn.be/stops/408370"], ["https://data.delijn.be/stops/305430", "https://data.delijn.be/stops/305510"], ["https://data.delijn.be/stops/300278", "https://data.delijn.be/stops/301323"], ["https://data.delijn.be/stops/301711", "https://data.delijn.be/stops/301712"], ["https://data.delijn.be/stops/108539", "https://data.delijn.be/stops/108541"], ["https://data.delijn.be/stops/504940", "https://data.delijn.be/stops/509946"], ["https://data.delijn.be/stops/300298", "https://data.delijn.be/stops/306092"], ["https://data.delijn.be/stops/105846", "https://data.delijn.be/stops/105848"], ["https://data.delijn.be/stops/502005", "https://data.delijn.be/stops/505742"], ["https://data.delijn.be/stops/302368", "https://data.delijn.be/stops/302369"], ["https://data.delijn.be/stops/407899", "https://data.delijn.be/stops/407986"], ["https://data.delijn.be/stops/208314", "https://data.delijn.be/stops/209314"], ["https://data.delijn.be/stops/501372", "https://data.delijn.be/stops/506372"], ["https://data.delijn.be/stops/504595", "https://data.delijn.be/stops/509595"], ["https://data.delijn.be/stops/210057", "https://data.delijn.be/stops/211057"], ["https://data.delijn.be/stops/300944", "https://data.delijn.be/stops/300945"], ["https://data.delijn.be/stops/205239", "https://data.delijn.be/stops/207898"], ["https://data.delijn.be/stops/101474", "https://data.delijn.be/stops/109248"], ["https://data.delijn.be/stops/207473", "https://data.delijn.be/stops/207477"], ["https://data.delijn.be/stops/206238", "https://data.delijn.be/stops/206813"], ["https://data.delijn.be/stops/306069", "https://data.delijn.be/stops/306719"], ["https://data.delijn.be/stops/206068", "https://data.delijn.be/stops/207040"], ["https://data.delijn.be/stops/202028", "https://data.delijn.be/stops/211025"], ["https://data.delijn.be/stops/208184", "https://data.delijn.be/stops/208758"], ["https://data.delijn.be/stops/501519", "https://data.delijn.be/stops/510003"], ["https://data.delijn.be/stops/101686", "https://data.delijn.be/stops/101688"], ["https://data.delijn.be/stops/102182", "https://data.delijn.be/stops/105995"], ["https://data.delijn.be/stops/404953", "https://data.delijn.be/stops/404955"], ["https://data.delijn.be/stops/302687", "https://data.delijn.be/stops/302696"], ["https://data.delijn.be/stops/106229", "https://data.delijn.be/stops/106323"], ["https://data.delijn.be/stops/408666", "https://data.delijn.be/stops/408750"], ["https://data.delijn.be/stops/503270", "https://data.delijn.be/stops/505130"], ["https://data.delijn.be/stops/501768", "https://data.delijn.be/stops/507484"], ["https://data.delijn.be/stops/204056", "https://data.delijn.be/stops/205056"], ["https://data.delijn.be/stops/107125", "https://data.delijn.be/stops/108165"], ["https://data.delijn.be/stops/201385", "https://data.delijn.be/stops/202008"], ["https://data.delijn.be/stops/408675", "https://data.delijn.be/stops/408706"], ["https://data.delijn.be/stops/400598", "https://data.delijn.be/stops/404059"], ["https://data.delijn.be/stops/405025", "https://data.delijn.be/stops/405078"], ["https://data.delijn.be/stops/106337", "https://data.delijn.be/stops/106339"], ["https://data.delijn.be/stops/307306", "https://data.delijn.be/stops/307308"], ["https://data.delijn.be/stops/205482", "https://data.delijn.be/stops/205620"], ["https://data.delijn.be/stops/102077", "https://data.delijn.be/stops/105992"], ["https://data.delijn.be/stops/307429", "https://data.delijn.be/stops/308590"], ["https://data.delijn.be/stops/301466", "https://data.delijn.be/stops/308071"], ["https://data.delijn.be/stops/207488", "https://data.delijn.be/stops/207647"], ["https://data.delijn.be/stops/405863", "https://data.delijn.be/stops/405888"], ["https://data.delijn.be/stops/400775", "https://data.delijn.be/stops/402235"], ["https://data.delijn.be/stops/106007", "https://data.delijn.be/stops/106008"], ["https://data.delijn.be/stops/307961", "https://data.delijn.be/stops/308072"], ["https://data.delijn.be/stops/101013", "https://data.delijn.be/stops/109771"], ["https://data.delijn.be/stops/401074", "https://data.delijn.be/stops/401164"], ["https://data.delijn.be/stops/504856", "https://data.delijn.be/stops/508126"], ["https://data.delijn.be/stops/406285", "https://data.delijn.be/stops/409386"], ["https://data.delijn.be/stops/504653", "https://data.delijn.be/stops/509653"], ["https://data.delijn.be/stops/303393", "https://data.delijn.be/stops/308892"], ["https://data.delijn.be/stops/202314", "https://data.delijn.be/stops/203314"], ["https://data.delijn.be/stops/301896", "https://data.delijn.be/stops/304280"], ["https://data.delijn.be/stops/206186", "https://data.delijn.be/stops/206956"], ["https://data.delijn.be/stops/102889", "https://data.delijn.be/stops/108800"], ["https://data.delijn.be/stops/400162", "https://data.delijn.be/stops/400163"], ["https://data.delijn.be/stops/302373", "https://data.delijn.be/stops/302377"], ["https://data.delijn.be/stops/406110", "https://data.delijn.be/stops/406132"], ["https://data.delijn.be/stops/103467", "https://data.delijn.be/stops/106687"], ["https://data.delijn.be/stops/202483", "https://data.delijn.be/stops/203340"], ["https://data.delijn.be/stops/200482", "https://data.delijn.be/stops/202895"], ["https://data.delijn.be/stops/503593", "https://data.delijn.be/stops/503597"], ["https://data.delijn.be/stops/307441", "https://data.delijn.be/stops/307443"], ["https://data.delijn.be/stops/208551", "https://data.delijn.be/stops/208558"], ["https://data.delijn.be/stops/102063", "https://data.delijn.be/stops/102067"], ["https://data.delijn.be/stops/502232", "https://data.delijn.be/stops/507232"], ["https://data.delijn.be/stops/208223", "https://data.delijn.be/stops/209220"], ["https://data.delijn.be/stops/405930", "https://data.delijn.be/stops/405978"], ["https://data.delijn.be/stops/301992", "https://data.delijn.be/stops/303281"], ["https://data.delijn.be/stops/105593", "https://data.delijn.be/stops/105594"], ["https://data.delijn.be/stops/304399", "https://data.delijn.be/stops/307400"], ["https://data.delijn.be/stops/408098", "https://data.delijn.be/stops/408099"], ["https://data.delijn.be/stops/407070", "https://data.delijn.be/stops/407778"], ["https://data.delijn.be/stops/502929", "https://data.delijn.be/stops/507915"], ["https://data.delijn.be/stops/205996", "https://data.delijn.be/stops/206049"], ["https://data.delijn.be/stops/302919", "https://data.delijn.be/stops/303986"], ["https://data.delijn.be/stops/102355", "https://data.delijn.be/stops/105555"], ["https://data.delijn.be/stops/303735", "https://data.delijn.be/stops/307464"], ["https://data.delijn.be/stops/507209", "https://data.delijn.be/stops/507746"], ["https://data.delijn.be/stops/502554", "https://data.delijn.be/stops/507666"], ["https://data.delijn.be/stops/503205", "https://data.delijn.be/stops/508205"], ["https://data.delijn.be/stops/408002", "https://data.delijn.be/stops/408237"], ["https://data.delijn.be/stops/503927", "https://data.delijn.be/stops/505265"], ["https://data.delijn.be/stops/504356", "https://data.delijn.be/stops/505995"], ["https://data.delijn.be/stops/202981", "https://data.delijn.be/stops/203981"], ["https://data.delijn.be/stops/408713", "https://data.delijn.be/stops/408721"], ["https://data.delijn.be/stops/408633", "https://data.delijn.be/stops/410192"], ["https://data.delijn.be/stops/200555", "https://data.delijn.be/stops/201840"], ["https://data.delijn.be/stops/206744", "https://data.delijn.be/stops/207710"], ["https://data.delijn.be/stops/500945", "https://data.delijn.be/stops/504411"], ["https://data.delijn.be/stops/208305", "https://data.delijn.be/stops/209304"], ["https://data.delijn.be/stops/208724", "https://data.delijn.be/stops/209664"], ["https://data.delijn.be/stops/107220", "https://data.delijn.be/stops/107222"], ["https://data.delijn.be/stops/300840", "https://data.delijn.be/stops/304565"], ["https://data.delijn.be/stops/201645", "https://data.delijn.be/stops/203742"], ["https://data.delijn.be/stops/502805", "https://data.delijn.be/stops/505662"], ["https://data.delijn.be/stops/503093", "https://data.delijn.be/stops/507620"], ["https://data.delijn.be/stops/402068", "https://data.delijn.be/stops/402209"], ["https://data.delijn.be/stops/101025", "https://data.delijn.be/stops/101210"], ["https://data.delijn.be/stops/504831", "https://data.delijn.be/stops/508865"], ["https://data.delijn.be/stops/501353", "https://data.delijn.be/stops/501565"], ["https://data.delijn.be/stops/402352", "https://data.delijn.be/stops/405565"], ["https://data.delijn.be/stops/502608", "https://data.delijn.be/stops/507609"], ["https://data.delijn.be/stops/108065", "https://data.delijn.be/stops/109145"], ["https://data.delijn.be/stops/301596", "https://data.delijn.be/stops/301621"], ["https://data.delijn.be/stops/101830", "https://data.delijn.be/stops/103338"], ["https://data.delijn.be/stops/102785", "https://data.delijn.be/stops/102795"], ["https://data.delijn.be/stops/501231", "https://data.delijn.be/stops/506248"], ["https://data.delijn.be/stops/209341", "https://data.delijn.be/stops/218028"], ["https://data.delijn.be/stops/504501", "https://data.delijn.be/stops/509503"], ["https://data.delijn.be/stops/200108", "https://data.delijn.be/stops/201385"], ["https://data.delijn.be/stops/502730", "https://data.delijn.be/stops/506047"], ["https://data.delijn.be/stops/502548", "https://data.delijn.be/stops/505222"], ["https://data.delijn.be/stops/400587", "https://data.delijn.be/stops/400610"], ["https://data.delijn.be/stops/408674", "https://data.delijn.be/stops/408812"], ["https://data.delijn.be/stops/202875", "https://data.delijn.be/stops/203347"], ["https://data.delijn.be/stops/206116", "https://data.delijn.be/stops/207114"], ["https://data.delijn.be/stops/104941", "https://data.delijn.be/stops/400431"], ["https://data.delijn.be/stops/401458", "https://data.delijn.be/stops/401574"], ["https://data.delijn.be/stops/101488", "https://data.delijn.be/stops/109561"], ["https://data.delijn.be/stops/405071", "https://data.delijn.be/stops/408372"], ["https://data.delijn.be/stops/504737", "https://data.delijn.be/stops/509505"], ["https://data.delijn.be/stops/106923", "https://data.delijn.be/stops/106925"], ["https://data.delijn.be/stops/103352", "https://data.delijn.be/stops/104860"], ["https://data.delijn.be/stops/306851", "https://data.delijn.be/stops/306852"], ["https://data.delijn.be/stops/505261", "https://data.delijn.be/stops/508224"], ["https://data.delijn.be/stops/401401", "https://data.delijn.be/stops/304190"], ["https://data.delijn.be/stops/303693", "https://data.delijn.be/stops/303698"], ["https://data.delijn.be/stops/105757", "https://data.delijn.be/stops/109810"], ["https://data.delijn.be/stops/504102", "https://data.delijn.be/stops/504706"], ["https://data.delijn.be/stops/200142", "https://data.delijn.be/stops/200781"], ["https://data.delijn.be/stops/400481", "https://data.delijn.be/stops/408695"], ["https://data.delijn.be/stops/503848", "https://data.delijn.be/stops/507958"], ["https://data.delijn.be/stops/105683", "https://data.delijn.be/stops/105686"], ["https://data.delijn.be/stops/104844", "https://data.delijn.be/stops/105747"], ["https://data.delijn.be/stops/201164", "https://data.delijn.be/stops/208727"], ["https://data.delijn.be/stops/208462", "https://data.delijn.be/stops/209462"], ["https://data.delijn.be/stops/200075", "https://data.delijn.be/stops/201075"], ["https://data.delijn.be/stops/208208", "https://data.delijn.be/stops/209208"], ["https://data.delijn.be/stops/305794", "https://data.delijn.be/stops/305796"], ["https://data.delijn.be/stops/401199", "https://data.delijn.be/stops/401207"], ["https://data.delijn.be/stops/300415", "https://data.delijn.be/stops/300420"], ["https://data.delijn.be/stops/400519", "https://data.delijn.be/stops/410109"], ["https://data.delijn.be/stops/206885", "https://data.delijn.be/stops/207353"], ["https://data.delijn.be/stops/402387", "https://data.delijn.be/stops/402490"], ["https://data.delijn.be/stops/300140", "https://data.delijn.be/stops/306819"], ["https://data.delijn.be/stops/104958", "https://data.delijn.be/stops/104959"], ["https://data.delijn.be/stops/505973", "https://data.delijn.be/stops/509817"], ["https://data.delijn.be/stops/503109", "https://data.delijn.be/stops/503425"], ["https://data.delijn.be/stops/208628", "https://data.delijn.be/stops/209629"], ["https://data.delijn.be/stops/301503", "https://data.delijn.be/stops/301508"], ["https://data.delijn.be/stops/502648", "https://data.delijn.be/stops/507049"], ["https://data.delijn.be/stops/300263", "https://data.delijn.be/stops/302149"], ["https://data.delijn.be/stops/505985", "https://data.delijn.be/stops/509253"], ["https://data.delijn.be/stops/200139", "https://data.delijn.be/stops/200140"], ["https://data.delijn.be/stops/505030", "https://data.delijn.be/stops/506046"], ["https://data.delijn.be/stops/102422", "https://data.delijn.be/stops/106995"], ["https://data.delijn.be/stops/400446", "https://data.delijn.be/stops/400449"], ["https://data.delijn.be/stops/305979", "https://data.delijn.be/stops/305980"], ["https://data.delijn.be/stops/206169", "https://data.delijn.be/stops/303847"], ["https://data.delijn.be/stops/104646", "https://data.delijn.be/stops/108052"], ["https://data.delijn.be/stops/105967", "https://data.delijn.be/stops/105971"], ["https://data.delijn.be/stops/302289", "https://data.delijn.be/stops/307736"], ["https://data.delijn.be/stops/206029", "https://data.delijn.be/stops/207801"], ["https://data.delijn.be/stops/409723", "https://data.delijn.be/stops/409724"], ["https://data.delijn.be/stops/102513", "https://data.delijn.be/stops/102518"], ["https://data.delijn.be/stops/402574", "https://data.delijn.be/stops/402581"], ["https://data.delijn.be/stops/107327", "https://data.delijn.be/stops/107329"], ["https://data.delijn.be/stops/205425", "https://data.delijn.be/stops/205434"], ["https://data.delijn.be/stops/403953", "https://data.delijn.be/stops/404027"], ["https://data.delijn.be/stops/303088", "https://data.delijn.be/stops/303090"], ["https://data.delijn.be/stops/305263", "https://data.delijn.be/stops/305264"], ["https://data.delijn.be/stops/208652", "https://data.delijn.be/stops/208653"], ["https://data.delijn.be/stops/303567", "https://data.delijn.be/stops/307987"], ["https://data.delijn.be/stops/503278", "https://data.delijn.be/stops/505954"], ["https://data.delijn.be/stops/208528", "https://data.delijn.be/stops/209517"], ["https://data.delijn.be/stops/101030", "https://data.delijn.be/stops/105770"], ["https://data.delijn.be/stops/206129", "https://data.delijn.be/stops/207129"], ["https://data.delijn.be/stops/406606", "https://data.delijn.be/stops/406643"], ["https://data.delijn.be/stops/307545", "https://data.delijn.be/stops/307579"], ["https://data.delijn.be/stops/302283", "https://data.delijn.be/stops/302299"], ["https://data.delijn.be/stops/106735", "https://data.delijn.be/stops/107198"], ["https://data.delijn.be/stops/502296", "https://data.delijn.be/stops/505353"], ["https://data.delijn.be/stops/307940", "https://data.delijn.be/stops/308777"], ["https://data.delijn.be/stops/502093", "https://data.delijn.be/stops/502128"], ["https://data.delijn.be/stops/206180", "https://data.delijn.be/stops/207957"], ["https://data.delijn.be/stops/105926", "https://data.delijn.be/stops/109723"], ["https://data.delijn.be/stops/402551", "https://data.delijn.be/stops/405504"], ["https://data.delijn.be/stops/305413", "https://data.delijn.be/stops/305925"], ["https://data.delijn.be/stops/404332", "https://data.delijn.be/stops/404382"], ["https://data.delijn.be/stops/101204", "https://data.delijn.be/stops/205542"], ["https://data.delijn.be/stops/503241", "https://data.delijn.be/stops/503965"], ["https://data.delijn.be/stops/103116", "https://data.delijn.be/stops/107369"], ["https://data.delijn.be/stops/405149", "https://data.delijn.be/stops/405233"], ["https://data.delijn.be/stops/101060", "https://data.delijn.be/stops/106012"], ["https://data.delijn.be/stops/301653", "https://data.delijn.be/stops/306143"], ["https://data.delijn.be/stops/101556", "https://data.delijn.be/stops/102424"], ["https://data.delijn.be/stops/501051", "https://data.delijn.be/stops/502107"], ["https://data.delijn.be/stops/104411", "https://data.delijn.be/stops/104412"], ["https://data.delijn.be/stops/501760", "https://data.delijn.be/stops/506775"], ["https://data.delijn.be/stops/101395", "https://data.delijn.be/stops/103085"], ["https://data.delijn.be/stops/402049", "https://data.delijn.be/stops/402202"], ["https://data.delijn.be/stops/105731", "https://data.delijn.be/stops/105733"], ["https://data.delijn.be/stops/402580", "https://data.delijn.be/stops/402581"], ["https://data.delijn.be/stops/304642", "https://data.delijn.be/stops/305388"], ["https://data.delijn.be/stops/206209", "https://data.delijn.be/stops/206210"], ["https://data.delijn.be/stops/200386", "https://data.delijn.be/stops/200387"], ["https://data.delijn.be/stops/200343", "https://data.delijn.be/stops/211009"], ["https://data.delijn.be/stops/505799", "https://data.delijn.be/stops/509625"], ["https://data.delijn.be/stops/302141", "https://data.delijn.be/stops/307580"], ["https://data.delijn.be/stops/505045", "https://data.delijn.be/stops/506230"], ["https://data.delijn.be/stops/405835", "https://data.delijn.be/stops/407361"], ["https://data.delijn.be/stops/203384", "https://data.delijn.be/stops/203385"], ["https://data.delijn.be/stops/202179", "https://data.delijn.be/stops/203178"], ["https://data.delijn.be/stops/407833", "https://data.delijn.be/stops/407850"], ["https://data.delijn.be/stops/503082", "https://data.delijn.be/stops/508508"], ["https://data.delijn.be/stops/503225", "https://data.delijn.be/stops/508226"], ["https://data.delijn.be/stops/408016", "https://data.delijn.be/stops/408043"], ["https://data.delijn.be/stops/301885", "https://data.delijn.be/stops/301889"], ["https://data.delijn.be/stops/504909", "https://data.delijn.be/stops/508909"], ["https://data.delijn.be/stops/205192", "https://data.delijn.be/stops/205193"], ["https://data.delijn.be/stops/401509", "https://data.delijn.be/stops/402033"], ["https://data.delijn.be/stops/400330", "https://data.delijn.be/stops/400331"], ["https://data.delijn.be/stops/105762", "https://data.delijn.be/stops/109806"], ["https://data.delijn.be/stops/103019", "https://data.delijn.be/stops/107228"], ["https://data.delijn.be/stops/304383", "https://data.delijn.be/stops/304405"], ["https://data.delijn.be/stops/101748", "https://data.delijn.be/stops/104338"], ["https://data.delijn.be/stops/504705", "https://data.delijn.be/stops/504737"], ["https://data.delijn.be/stops/303436", "https://data.delijn.be/stops/307932"], ["https://data.delijn.be/stops/202738", "https://data.delijn.be/stops/209693"], ["https://data.delijn.be/stops/304972", "https://data.delijn.be/stops/308083"], ["https://data.delijn.be/stops/206854", "https://data.delijn.be/stops/207854"], ["https://data.delijn.be/stops/305483", "https://data.delijn.be/stops/308551"], ["https://data.delijn.be/stops/206094", "https://data.delijn.be/stops/206148"], ["https://data.delijn.be/stops/305149", "https://data.delijn.be/stops/305198"], ["https://data.delijn.be/stops/405673", "https://data.delijn.be/stops/409492"], ["https://data.delijn.be/stops/300729", "https://data.delijn.be/stops/304943"], ["https://data.delijn.be/stops/208498", "https://data.delijn.be/stops/209471"], ["https://data.delijn.be/stops/404446", "https://data.delijn.be/stops/404451"], ["https://data.delijn.be/stops/406122", "https://data.delijn.be/stops/406124"], ["https://data.delijn.be/stops/503590", "https://data.delijn.be/stops/505097"], ["https://data.delijn.be/stops/200501", "https://data.delijn.be/stops/201651"], ["https://data.delijn.be/stops/504517", "https://data.delijn.be/stops/509517"], ["https://data.delijn.be/stops/104598", "https://data.delijn.be/stops/107427"], ["https://data.delijn.be/stops/201676", "https://data.delijn.be/stops/201682"], ["https://data.delijn.be/stops/302627", "https://data.delijn.be/stops/302635"], ["https://data.delijn.be/stops/405222", "https://data.delijn.be/stops/405288"], ["https://data.delijn.be/stops/106091", "https://data.delijn.be/stops/106092"], ["https://data.delijn.be/stops/407963", "https://data.delijn.be/stops/408427"], ["https://data.delijn.be/stops/305830", "https://data.delijn.be/stops/305955"], ["https://data.delijn.be/stops/501205", "https://data.delijn.be/stops/506206"], ["https://data.delijn.be/stops/503168", "https://data.delijn.be/stops/508167"], ["https://data.delijn.be/stops/202175", "https://data.delijn.be/stops/203175"], ["https://data.delijn.be/stops/208543", "https://data.delijn.be/stops/208559"], ["https://data.delijn.be/stops/503009", "https://data.delijn.be/stops/508020"], ["https://data.delijn.be/stops/505085", "https://data.delijn.be/stops/505086"], ["https://data.delijn.be/stops/404647", "https://data.delijn.be/stops/406915"], ["https://data.delijn.be/stops/400807", "https://data.delijn.be/stops/400854"], ["https://data.delijn.be/stops/504210", "https://data.delijn.be/stops/504868"], ["https://data.delijn.be/stops/408649", "https://data.delijn.be/stops/410150"], ["https://data.delijn.be/stops/505276", "https://data.delijn.be/stops/508332"], ["https://data.delijn.be/stops/104133", "https://data.delijn.be/stops/104602"], ["https://data.delijn.be/stops/302106", "https://data.delijn.be/stops/302144"], ["https://data.delijn.be/stops/202347", "https://data.delijn.be/stops/209710"], ["https://data.delijn.be/stops/106213", "https://data.delijn.be/stops/109193"], ["https://data.delijn.be/stops/503415", "https://data.delijn.be/stops/508109"], ["https://data.delijn.be/stops/302663", "https://data.delijn.be/stops/302664"], ["https://data.delijn.be/stops/505218", "https://data.delijn.be/stops/505897"], ["https://data.delijn.be/stops/505180", "https://data.delijn.be/stops/507354"], ["https://data.delijn.be/stops/503199", "https://data.delijn.be/stops/508196"], ["https://data.delijn.be/stops/404177", "https://data.delijn.be/stops/404196"], ["https://data.delijn.be/stops/105244", "https://data.delijn.be/stops/109977"], ["https://data.delijn.be/stops/501017", "https://data.delijn.be/stops/505835"], ["https://data.delijn.be/stops/101892", "https://data.delijn.be/stops/104966"], ["https://data.delijn.be/stops/410285", "https://data.delijn.be/stops/410326"], ["https://data.delijn.be/stops/104054", "https://data.delijn.be/stops/108903"], ["https://data.delijn.be/stops/307756", "https://data.delijn.be/stops/307757"], ["https://data.delijn.be/stops/107223", "https://data.delijn.be/stops/107224"], ["https://data.delijn.be/stops/205983", "https://data.delijn.be/stops/208807"], ["https://data.delijn.be/stops/409054", "https://data.delijn.be/stops/409060"], ["https://data.delijn.be/stops/502691", "https://data.delijn.be/stops/502763"], ["https://data.delijn.be/stops/504811", "https://data.delijn.be/stops/508305"], ["https://data.delijn.be/stops/302308", "https://data.delijn.be/stops/304099"], ["https://data.delijn.be/stops/403500", "https://data.delijn.be/stops/410220"], ["https://data.delijn.be/stops/503454", "https://data.delijn.be/stops/503470"], ["https://data.delijn.be/stops/204724", "https://data.delijn.be/stops/205723"], ["https://data.delijn.be/stops/502748", "https://data.delijn.be/stops/507611"], ["https://data.delijn.be/stops/200022", "https://data.delijn.be/stops/201101"], ["https://data.delijn.be/stops/200734", "https://data.delijn.be/stops/202123"], ["https://data.delijn.be/stops/505062", "https://data.delijn.be/stops/505652"], ["https://data.delijn.be/stops/508758", "https://data.delijn.be/stops/509743"], ["https://data.delijn.be/stops/400133", "https://data.delijn.be/stops/409199"], ["https://data.delijn.be/stops/403644", "https://data.delijn.be/stops/407515"], ["https://data.delijn.be/stops/201645", "https://data.delijn.be/stops/203777"], ["https://data.delijn.be/stops/208050", "https://data.delijn.be/stops/209658"], ["https://data.delijn.be/stops/409077", "https://data.delijn.be/stops/409085"], ["https://data.delijn.be/stops/502030", "https://data.delijn.be/stops/507030"], ["https://data.delijn.be/stops/405607", "https://data.delijn.be/stops/406470"], ["https://data.delijn.be/stops/208017", "https://data.delijn.be/stops/208021"], ["https://data.delijn.be/stops/505199", "https://data.delijn.be/stops/505217"], ["https://data.delijn.be/stops/301426", "https://data.delijn.be/stops/306935"], ["https://data.delijn.be/stops/304240", "https://data.delijn.be/stops/304522"], ["https://data.delijn.be/stops/503342", "https://data.delijn.be/stops/505629"], ["https://data.delijn.be/stops/407673", "https://data.delijn.be/stops/407676"], ["https://data.delijn.be/stops/505847", "https://data.delijn.be/stops/508091"], ["https://data.delijn.be/stops/106333", "https://data.delijn.be/stops/106336"], ["https://data.delijn.be/stops/306875", "https://data.delijn.be/stops/307423"], ["https://data.delijn.be/stops/406294", "https://data.delijn.be/stops/406420"], ["https://data.delijn.be/stops/104619", "https://data.delijn.be/stops/205447"], ["https://data.delijn.be/stops/501195", "https://data.delijn.be/stops/501197"], ["https://data.delijn.be/stops/204098", "https://data.delijn.be/stops/205224"], ["https://data.delijn.be/stops/302210", "https://data.delijn.be/stops/302211"], ["https://data.delijn.be/stops/503518", "https://data.delijn.be/stops/508475"], ["https://data.delijn.be/stops/206121", "https://data.delijn.be/stops/207139"], ["https://data.delijn.be/stops/102239", "https://data.delijn.be/stops/102907"], ["https://data.delijn.be/stops/306385", "https://data.delijn.be/stops/307217"], ["https://data.delijn.be/stops/210061", "https://data.delijn.be/stops/211060"], ["https://data.delijn.be/stops/307969", "https://data.delijn.be/stops/308447"], ["https://data.delijn.be/stops/503271", "https://data.delijn.be/stops/508038"], ["https://data.delijn.be/stops/208759", "https://data.delijn.be/stops/209180"], ["https://data.delijn.be/stops/502105", "https://data.delijn.be/stops/502127"], ["https://data.delijn.be/stops/404838", "https://data.delijn.be/stops/405227"], ["https://data.delijn.be/stops/406086", "https://data.delijn.be/stops/406087"], ["https://data.delijn.be/stops/205531", "https://data.delijn.be/stops/205533"], ["https://data.delijn.be/stops/103729", "https://data.delijn.be/stops/108532"], ["https://data.delijn.be/stops/203004", "https://data.delijn.be/stops/203764"], ["https://data.delijn.be/stops/503142", "https://data.delijn.be/stops/508142"], ["https://data.delijn.be/stops/401867", "https://data.delijn.be/stops/406283"], ["https://data.delijn.be/stops/104596", "https://data.delijn.be/stops/106839"], ["https://data.delijn.be/stops/403938", "https://data.delijn.be/stops/403985"], ["https://data.delijn.be/stops/104896", "https://data.delijn.be/stops/105312"], ["https://data.delijn.be/stops/302587", "https://data.delijn.be/stops/302606"], ["https://data.delijn.be/stops/304392", "https://data.delijn.be/stops/305041"], ["https://data.delijn.be/stops/407991", "https://data.delijn.be/stops/408168"], ["https://data.delijn.be/stops/403964", "https://data.delijn.be/stops/406007"], ["https://data.delijn.be/stops/402134", "https://data.delijn.be/stops/402142"], ["https://data.delijn.be/stops/503279", "https://data.delijn.be/stops/503288"], ["https://data.delijn.be/stops/300065", "https://data.delijn.be/stops/307443"], ["https://data.delijn.be/stops/102085", "https://data.delijn.be/stops/102820"], ["https://data.delijn.be/stops/206745", "https://data.delijn.be/stops/207745"], ["https://data.delijn.be/stops/204414", "https://data.delijn.be/stops/205405"], ["https://data.delijn.be/stops/105555", "https://data.delijn.be/stops/108980"], ["https://data.delijn.be/stops/207755", "https://data.delijn.be/stops/208192"], ["https://data.delijn.be/stops/203580", "https://data.delijn.be/stops/203581"], ["https://data.delijn.be/stops/204716", "https://data.delijn.be/stops/205064"], ["https://data.delijn.be/stops/408579", "https://data.delijn.be/stops/408584"], ["https://data.delijn.be/stops/505155", "https://data.delijn.be/stops/506085"], ["https://data.delijn.be/stops/207123", "https://data.delijn.be/stops/306720"], ["https://data.delijn.be/stops/104899", "https://data.delijn.be/stops/109591"], ["https://data.delijn.be/stops/406066", "https://data.delijn.be/stops/406071"], ["https://data.delijn.be/stops/304231", "https://data.delijn.be/stops/304686"], ["https://data.delijn.be/stops/207772", "https://data.delijn.be/stops/208739"], ["https://data.delijn.be/stops/305219", "https://data.delijn.be/stops/305988"], ["https://data.delijn.be/stops/200261", "https://data.delijn.be/stops/201947"], ["https://data.delijn.be/stops/307544", "https://data.delijn.be/stops/307546"], ["https://data.delijn.be/stops/201564", "https://data.delijn.be/stops/210019"], ["https://data.delijn.be/stops/306020", "https://data.delijn.be/stops/306021"], ["https://data.delijn.be/stops/206637", "https://data.delijn.be/stops/206638"], ["https://data.delijn.be/stops/206525", "https://data.delijn.be/stops/207524"], ["https://data.delijn.be/stops/200570", "https://data.delijn.be/stops/201572"], ["https://data.delijn.be/stops/502027", "https://data.delijn.be/stops/507041"], ["https://data.delijn.be/stops/106232", "https://data.delijn.be/stops/106233"], ["https://data.delijn.be/stops/400113", "https://data.delijn.be/stops/409153"], ["https://data.delijn.be/stops/304522", "https://data.delijn.be/stops/304806"], ["https://data.delijn.be/stops/304649", "https://data.delijn.be/stops/307982"], ["https://data.delijn.be/stops/206168", "https://data.delijn.be/stops/303871"], ["https://data.delijn.be/stops/103377", "https://data.delijn.be/stops/103378"], ["https://data.delijn.be/stops/208162", "https://data.delijn.be/stops/209162"], ["https://data.delijn.be/stops/207900", "https://data.delijn.be/stops/207905"], ["https://data.delijn.be/stops/209679", "https://data.delijn.be/stops/209680"], ["https://data.delijn.be/stops/200669", "https://data.delijn.be/stops/510029"], ["https://data.delijn.be/stops/505298", "https://data.delijn.be/stops/509267"], ["https://data.delijn.be/stops/407830", "https://data.delijn.be/stops/407983"], ["https://data.delijn.be/stops/505953", "https://data.delijn.be/stops/508284"], ["https://data.delijn.be/stops/503412", "https://data.delijn.be/stops/503951"], ["https://data.delijn.be/stops/500555", "https://data.delijn.be/stops/507210"], ["https://data.delijn.be/stops/109729", "https://data.delijn.be/stops/109767"], ["https://data.delijn.be/stops/403255", "https://data.delijn.be/stops/403472"], ["https://data.delijn.be/stops/106018", "https://data.delijn.be/stops/106184"], ["https://data.delijn.be/stops/207763", "https://data.delijn.be/stops/209371"], ["https://data.delijn.be/stops/300319", "https://data.delijn.be/stops/300320"], ["https://data.delijn.be/stops/405372", "https://data.delijn.be/stops/405373"], ["https://data.delijn.be/stops/501050", "https://data.delijn.be/stops/502640"], ["https://data.delijn.be/stops/409681", "https://data.delijn.be/stops/409701"], ["https://data.delijn.be/stops/406208", "https://data.delijn.be/stops/406222"], ["https://data.delijn.be/stops/302034", "https://data.delijn.be/stops/307284"], ["https://data.delijn.be/stops/306343", "https://data.delijn.be/stops/306382"], ["https://data.delijn.be/stops/206705", "https://data.delijn.be/stops/206990"], ["https://data.delijn.be/stops/305682", "https://data.delijn.be/stops/306329"], ["https://data.delijn.be/stops/306096", "https://data.delijn.be/stops/306098"], ["https://data.delijn.be/stops/406596", "https://data.delijn.be/stops/406645"], ["https://data.delijn.be/stops/400145", "https://data.delijn.be/stops/400310"], ["https://data.delijn.be/stops/400599", "https://data.delijn.be/stops/401996"], ["https://data.delijn.be/stops/208799", "https://data.delijn.be/stops/209354"], ["https://data.delijn.be/stops/101810", "https://data.delijn.be/stops/105455"], ["https://data.delijn.be/stops/300601", "https://data.delijn.be/stops/300603"], ["https://data.delijn.be/stops/503286", "https://data.delijn.be/stops/505292"], ["https://data.delijn.be/stops/203851", "https://data.delijn.be/stops/203909"], ["https://data.delijn.be/stops/400823", "https://data.delijn.be/stops/406836"], ["https://data.delijn.be/stops/106422", "https://data.delijn.be/stops/106510"], ["https://data.delijn.be/stops/504349", "https://data.delijn.be/stops/509349"], ["https://data.delijn.be/stops/302599", "https://data.delijn.be/stops/302600"], ["https://data.delijn.be/stops/204458", "https://data.delijn.be/stops/205458"], ["https://data.delijn.be/stops/504348", "https://data.delijn.be/stops/509348"], ["https://data.delijn.be/stops/505351", "https://data.delijn.be/stops/507286"], ["https://data.delijn.be/stops/402546", "https://data.delijn.be/stops/402581"], ["https://data.delijn.be/stops/505438", "https://data.delijn.be/stops/507099"], ["https://data.delijn.be/stops/206596", "https://data.delijn.be/stops/206597"], ["https://data.delijn.be/stops/305380", "https://data.delijn.be/stops/305421"], ["https://data.delijn.be/stops/200906", "https://data.delijn.be/stops/202252"], ["https://data.delijn.be/stops/101379", "https://data.delijn.be/stops/103718"], ["https://data.delijn.be/stops/502302", "https://data.delijn.be/stops/505677"], ["https://data.delijn.be/stops/204372", "https://data.delijn.be/stops/204760"], ["https://data.delijn.be/stops/104135", "https://data.delijn.be/stops/105750"], ["https://data.delijn.be/stops/204016", "https://data.delijn.be/stops/205016"], ["https://data.delijn.be/stops/206619", "https://data.delijn.be/stops/206681"], ["https://data.delijn.be/stops/401648", "https://data.delijn.be/stops/406714"], ["https://data.delijn.be/stops/405775", "https://data.delijn.be/stops/405843"], ["https://data.delijn.be/stops/302837", "https://data.delijn.be/stops/302838"], ["https://data.delijn.be/stops/509382", "https://data.delijn.be/stops/509534"], ["https://data.delijn.be/stops/402311", "https://data.delijn.be/stops/402312"], ["https://data.delijn.be/stops/108685", "https://data.delijn.be/stops/108894"], ["https://data.delijn.be/stops/202104", "https://data.delijn.be/stops/203103"], ["https://data.delijn.be/stops/400274", "https://data.delijn.be/stops/400288"], ["https://data.delijn.be/stops/106096", "https://data.delijn.be/stops/106145"], ["https://data.delijn.be/stops/208309", "https://data.delijn.be/stops/209325"], ["https://data.delijn.be/stops/301314", "https://data.delijn.be/stops/301315"], ["https://data.delijn.be/stops/304266", "https://data.delijn.be/stops/304267"], ["https://data.delijn.be/stops/206391", "https://data.delijn.be/stops/207392"], ["https://data.delijn.be/stops/104722", "https://data.delijn.be/stops/105155"], ["https://data.delijn.be/stops/204386", "https://data.delijn.be/stops/205386"], ["https://data.delijn.be/stops/409263", "https://data.delijn.be/stops/409339"], ["https://data.delijn.be/stops/304512", "https://data.delijn.be/stops/306204"], ["https://data.delijn.be/stops/502138", "https://data.delijn.be/stops/507138"], ["https://data.delijn.be/stops/405308", "https://data.delijn.be/stops/302825"], ["https://data.delijn.be/stops/400565", "https://data.delijn.be/stops/400577"], ["https://data.delijn.be/stops/504954", "https://data.delijn.be/stops/508699"], ["https://data.delijn.be/stops/408836", "https://data.delijn.be/stops/408847"], ["https://data.delijn.be/stops/101941", "https://data.delijn.be/stops/101951"], ["https://data.delijn.be/stops/401751", "https://data.delijn.be/stops/408469"], ["https://data.delijn.be/stops/403199", "https://data.delijn.be/stops/403419"], ["https://data.delijn.be/stops/404411", "https://data.delijn.be/stops/404415"], ["https://data.delijn.be/stops/107718", "https://data.delijn.be/stops/107721"], ["https://data.delijn.be/stops/305109", "https://data.delijn.be/stops/305111"], ["https://data.delijn.be/stops/503824", "https://data.delijn.be/stops/507476"], ["https://data.delijn.be/stops/301179", "https://data.delijn.be/stops/305644"], ["https://data.delijn.be/stops/105303", "https://data.delijn.be/stops/105353"], ["https://data.delijn.be/stops/300637", "https://data.delijn.be/stops/305815"], ["https://data.delijn.be/stops/405311", "https://data.delijn.be/stops/405361"], ["https://data.delijn.be/stops/207286", "https://data.delijn.be/stops/207315"], ["https://data.delijn.be/stops/507047", "https://data.delijn.be/stops/507441"], ["https://data.delijn.be/stops/501309", "https://data.delijn.be/stops/501523"], ["https://data.delijn.be/stops/300257", "https://data.delijn.be/stops/300258"], ["https://data.delijn.be/stops/105266", "https://data.delijn.be/stops/105311"], ["https://data.delijn.be/stops/306277", "https://data.delijn.be/stops/306278"], ["https://data.delijn.be/stops/108612", "https://data.delijn.be/stops/109048"], ["https://data.delijn.be/stops/302552", "https://data.delijn.be/stops/305859"], ["https://data.delijn.be/stops/106425", "https://data.delijn.be/stops/106516"], ["https://data.delijn.be/stops/504515", "https://data.delijn.be/stops/504637"], ["https://data.delijn.be/stops/101687", "https://data.delijn.be/stops/101691"], ["https://data.delijn.be/stops/106064", "https://data.delijn.be/stops/109876"], ["https://data.delijn.be/stops/401435", "https://data.delijn.be/stops/410352"], ["https://data.delijn.be/stops/202630", "https://data.delijn.be/stops/203631"], ["https://data.delijn.be/stops/409478", "https://data.delijn.be/stops/410255"], ["https://data.delijn.be/stops/101474", "https://data.delijn.be/stops/109177"], ["https://data.delijn.be/stops/206487", "https://data.delijn.be/stops/207648"], ["https://data.delijn.be/stops/504052", "https://data.delijn.be/stops/505407"], ["https://data.delijn.be/stops/109171", "https://data.delijn.be/stops/109235"], ["https://data.delijn.be/stops/508055", "https://data.delijn.be/stops/508154"], ["https://data.delijn.be/stops/300261", "https://data.delijn.be/stops/302293"], ["https://data.delijn.be/stops/202266", "https://data.delijn.be/stops/202267"], ["https://data.delijn.be/stops/103631", "https://data.delijn.be/stops/107739"], ["https://data.delijn.be/stops/205779", "https://data.delijn.be/stops/214011"], ["https://data.delijn.be/stops/504834", "https://data.delijn.be/stops/505986"], ["https://data.delijn.be/stops/406203", "https://data.delijn.be/stops/410251"], ["https://data.delijn.be/stops/101161", "https://data.delijn.be/stops/105976"], ["https://data.delijn.be/stops/403678", "https://data.delijn.be/stops/410328"], ["https://data.delijn.be/stops/206258", "https://data.delijn.be/stops/207258"], ["https://data.delijn.be/stops/202620", "https://data.delijn.be/stops/202621"], ["https://data.delijn.be/stops/102693", "https://data.delijn.be/stops/103743"], ["https://data.delijn.be/stops/505708", "https://data.delijn.be/stops/509142"], ["https://data.delijn.be/stops/101533", "https://data.delijn.be/stops/109112"], ["https://data.delijn.be/stops/205130", "https://data.delijn.be/stops/205789"], ["https://data.delijn.be/stops/209164", "https://data.delijn.be/stops/209165"], ["https://data.delijn.be/stops/106677", "https://data.delijn.be/stops/106679"], ["https://data.delijn.be/stops/301263", "https://data.delijn.be/stops/301276"], ["https://data.delijn.be/stops/408672", "https://data.delijn.be/stops/408792"], ["https://data.delijn.be/stops/406100", "https://data.delijn.be/stops/406132"], ["https://data.delijn.be/stops/400206", "https://data.delijn.be/stops/400238"], ["https://data.delijn.be/stops/206032", "https://data.delijn.be/stops/206640"], ["https://data.delijn.be/stops/405797", "https://data.delijn.be/stops/409434"], ["https://data.delijn.be/stops/201736", "https://data.delijn.be/stops/203787"], ["https://data.delijn.be/stops/103201", "https://data.delijn.be/stops/109951"], ["https://data.delijn.be/stops/108708", "https://data.delijn.be/stops/108854"], ["https://data.delijn.be/stops/208992", "https://data.delijn.be/stops/211004"], ["https://data.delijn.be/stops/502235", "https://data.delijn.be/stops/507700"], ["https://data.delijn.be/stops/305085", "https://data.delijn.be/stops/306956"], ["https://data.delijn.be/stops/206909", "https://data.delijn.be/stops/207909"], ["https://data.delijn.be/stops/203737", "https://data.delijn.be/stops/209712"], ["https://data.delijn.be/stops/505212", "https://data.delijn.be/stops/509545"], ["https://data.delijn.be/stops/508561", "https://data.delijn.be/stops/508613"], ["https://data.delijn.be/stops/304267", "https://data.delijn.be/stops/304277"], ["https://data.delijn.be/stops/204978", "https://data.delijn.be/stops/208245"], ["https://data.delijn.be/stops/105135", "https://data.delijn.be/stops/105587"], ["https://data.delijn.be/stops/301318", "https://data.delijn.be/stops/306654"], ["https://data.delijn.be/stops/403259", "https://data.delijn.be/stops/409334"], ["https://data.delijn.be/stops/306290", "https://data.delijn.be/stops/306292"], ["https://data.delijn.be/stops/505774", "https://data.delijn.be/stops/509827"], ["https://data.delijn.be/stops/300836", "https://data.delijn.be/stops/300837"], ["https://data.delijn.be/stops/305735", "https://data.delijn.be/stops/305747"], ["https://data.delijn.be/stops/407675", "https://data.delijn.be/stops/407679"], ["https://data.delijn.be/stops/501300", "https://data.delijn.be/stops/506300"], ["https://data.delijn.be/stops/302198", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/304048", "https://data.delijn.be/stops/304049"], ["https://data.delijn.be/stops/107739", "https://data.delijn.be/stops/107741"], ["https://data.delijn.be/stops/200803", "https://data.delijn.be/stops/200898"], ["https://data.delijn.be/stops/102812", "https://data.delijn.be/stops/102813"], ["https://data.delijn.be/stops/101384", "https://data.delijn.be/stops/101396"], ["https://data.delijn.be/stops/204179", "https://data.delijn.be/stops/207394"], ["https://data.delijn.be/stops/208511", "https://data.delijn.be/stops/209062"], ["https://data.delijn.be/stops/301116", "https://data.delijn.be/stops/302245"], ["https://data.delijn.be/stops/101798", "https://data.delijn.be/stops/300641"], ["https://data.delijn.be/stops/509171", "https://data.delijn.be/stops/509348"], ["https://data.delijn.be/stops/206125", "https://data.delijn.be/stops/207684"], ["https://data.delijn.be/stops/405044", "https://data.delijn.be/stops/405068"], ["https://data.delijn.be/stops/308683", "https://data.delijn.be/stops/308684"], ["https://data.delijn.be/stops/507541", "https://data.delijn.be/stops/507712"], ["https://data.delijn.be/stops/200929", "https://data.delijn.be/stops/200950"], ["https://data.delijn.be/stops/302061", "https://data.delijn.be/stops/302074"], ["https://data.delijn.be/stops/403094", "https://data.delijn.be/stops/403507"], ["https://data.delijn.be/stops/108944", "https://data.delijn.be/stops/108946"], ["https://data.delijn.be/stops/501091", "https://data.delijn.be/stops/506099"], ["https://data.delijn.be/stops/505211", "https://data.delijn.be/stops/505998"], ["https://data.delijn.be/stops/503402", "https://data.delijn.be/stops/509760"], ["https://data.delijn.be/stops/301719", "https://data.delijn.be/stops/303891"], ["https://data.delijn.be/stops/502605", "https://data.delijn.be/stops/505705"], ["https://data.delijn.be/stops/200749", "https://data.delijn.be/stops/201167"], ["https://data.delijn.be/stops/504020", "https://data.delijn.be/stops/505248"], ["https://data.delijn.be/stops/400179", "https://data.delijn.be/stops/400435"], ["https://data.delijn.be/stops/507180", "https://data.delijn.be/stops/507182"], ["https://data.delijn.be/stops/200264", "https://data.delijn.be/stops/200431"], ["https://data.delijn.be/stops/505210", "https://data.delijn.be/stops/509087"], ["https://data.delijn.be/stops/200774", "https://data.delijn.be/stops/503329"], ["https://data.delijn.be/stops/407200", "https://data.delijn.be/stops/407206"], ["https://data.delijn.be/stops/303575", "https://data.delijn.be/stops/304327"], ["https://data.delijn.be/stops/402838", "https://data.delijn.be/stops/409011"], ["https://data.delijn.be/stops/405082", "https://data.delijn.be/stops/405708"], ["https://data.delijn.be/stops/503628", "https://data.delijn.be/stops/508628"], ["https://data.delijn.be/stops/105019", "https://data.delijn.be/stops/105081"], ["https://data.delijn.be/stops/405848", "https://data.delijn.be/stops/405893"], ["https://data.delijn.be/stops/304146", "https://data.delijn.be/stops/307547"], ["https://data.delijn.be/stops/300390", "https://data.delijn.be/stops/300411"], ["https://data.delijn.be/stops/302176", "https://data.delijn.be/stops/308103"], ["https://data.delijn.be/stops/102014", "https://data.delijn.be/stops/105985"], ["https://data.delijn.be/stops/209585", "https://data.delijn.be/stops/209586"], ["https://data.delijn.be/stops/105779", "https://data.delijn.be/stops/105782"], ["https://data.delijn.be/stops/302765", "https://data.delijn.be/stops/304704"], ["https://data.delijn.be/stops/303305", "https://data.delijn.be/stops/307294"], ["https://data.delijn.be/stops/403884", "https://data.delijn.be/stops/406886"], ["https://data.delijn.be/stops/508269", "https://data.delijn.be/stops/508275"], ["https://data.delijn.be/stops/208702", "https://data.delijn.be/stops/209331"], ["https://data.delijn.be/stops/106154", "https://data.delijn.be/stops/106445"], ["https://data.delijn.be/stops/504575", "https://data.delijn.be/stops/505300"], ["https://data.delijn.be/stops/102958", "https://data.delijn.be/stops/103138"], ["https://data.delijn.be/stops/503982", "https://data.delijn.be/stops/508516"], ["https://data.delijn.be/stops/302465", "https://data.delijn.be/stops/302486"], ["https://data.delijn.be/stops/101825", "https://data.delijn.be/stops/101830"], ["https://data.delijn.be/stops/407008", "https://data.delijn.be/stops/407010"], ["https://data.delijn.be/stops/105474", "https://data.delijn.be/stops/105476"], ["https://data.delijn.be/stops/106985", "https://data.delijn.be/stops/106986"], ["https://data.delijn.be/stops/408884", "https://data.delijn.be/stops/408888"], ["https://data.delijn.be/stops/207668", "https://data.delijn.be/stops/208507"], ["https://data.delijn.be/stops/300643", "https://data.delijn.be/stops/300662"], ["https://data.delijn.be/stops/303993", "https://data.delijn.be/stops/308711"], ["https://data.delijn.be/stops/304477", "https://data.delijn.be/stops/304482"], ["https://data.delijn.be/stops/505158", "https://data.delijn.be/stops/508839"], ["https://data.delijn.be/stops/403789", "https://data.delijn.be/stops/408965"], ["https://data.delijn.be/stops/102958", "https://data.delijn.be/stops/107008"], ["https://data.delijn.be/stops/306727", "https://data.delijn.be/stops/306730"], ["https://data.delijn.be/stops/105871", "https://data.delijn.be/stops/105874"], ["https://data.delijn.be/stops/501048", "https://data.delijn.be/stops/506048"], ["https://data.delijn.be/stops/406566", "https://data.delijn.be/stops/406567"], ["https://data.delijn.be/stops/505813", "https://data.delijn.be/stops/509013"], ["https://data.delijn.be/stops/504815", "https://data.delijn.be/stops/508013"], ["https://data.delijn.be/stops/401564", "https://data.delijn.be/stops/401580"], ["https://data.delijn.be/stops/108981", "https://data.delijn.be/stops/109689"], ["https://data.delijn.be/stops/204499", "https://data.delijn.be/stops/205495"], ["https://data.delijn.be/stops/305034", "https://data.delijn.be/stops/305035"], ["https://data.delijn.be/stops/109376", "https://data.delijn.be/stops/109377"], ["https://data.delijn.be/stops/500947", "https://data.delijn.be/stops/505415"], ["https://data.delijn.be/stops/503094", "https://data.delijn.be/stops/508094"], ["https://data.delijn.be/stops/402936", "https://data.delijn.be/stops/405928"], ["https://data.delijn.be/stops/302527", "https://data.delijn.be/stops/302528"], ["https://data.delijn.be/stops/107511", "https://data.delijn.be/stops/107518"], ["https://data.delijn.be/stops/202704", "https://data.delijn.be/stops/203703"], ["https://data.delijn.be/stops/104519", "https://data.delijn.be/stops/107933"], ["https://data.delijn.be/stops/206658", "https://data.delijn.be/stops/207658"], ["https://data.delijn.be/stops/205288", "https://data.delijn.be/stops/205445"], ["https://data.delijn.be/stops/304344", "https://data.delijn.be/stops/306784"], ["https://data.delijn.be/stops/200892", "https://data.delijn.be/stops/505683"], ["https://data.delijn.be/stops/303616", "https://data.delijn.be/stops/304581"], ["https://data.delijn.be/stops/504326", "https://data.delijn.be/stops/509380"], ["https://data.delijn.be/stops/503502", "https://data.delijn.be/stops/508270"], ["https://data.delijn.be/stops/305562", "https://data.delijn.be/stops/308553"], ["https://data.delijn.be/stops/403159", "https://data.delijn.be/stops/407583"], ["https://data.delijn.be/stops/407614", "https://data.delijn.be/stops/407680"], ["https://data.delijn.be/stops/102211", "https://data.delijn.be/stops/106121"], ["https://data.delijn.be/stops/201964", "https://data.delijn.be/stops/209035"], ["https://data.delijn.be/stops/200858", "https://data.delijn.be/stops/200890"], ["https://data.delijn.be/stops/206767", "https://data.delijn.be/stops/207800"], ["https://data.delijn.be/stops/406643", "https://data.delijn.be/stops/407410"], ["https://data.delijn.be/stops/303642", "https://data.delijn.be/stops/304530"], ["https://data.delijn.be/stops/301980", "https://data.delijn.be/stops/303615"], ["https://data.delijn.be/stops/200691", "https://data.delijn.be/stops/201745"], ["https://data.delijn.be/stops/504829", "https://data.delijn.be/stops/509887"], ["https://data.delijn.be/stops/300325", "https://data.delijn.be/stops/307030"], ["https://data.delijn.be/stops/502412", "https://data.delijn.be/stops/507669"], ["https://data.delijn.be/stops/200160", "https://data.delijn.be/stops/200311"], ["https://data.delijn.be/stops/308713", "https://data.delijn.be/stops/308714"], ["https://data.delijn.be/stops/402545", "https://data.delijn.be/stops/404064"], ["https://data.delijn.be/stops/400379", "https://data.delijn.be/stops/406835"], ["https://data.delijn.be/stops/503771", "https://data.delijn.be/stops/504000"], ["https://data.delijn.be/stops/202607", "https://data.delijn.be/stops/211076"], ["https://data.delijn.be/stops/401585", "https://data.delijn.be/stops/401743"], ["https://data.delijn.be/stops/207378", "https://data.delijn.be/stops/207379"], ["https://data.delijn.be/stops/508805", "https://data.delijn.be/stops/509588"], ["https://data.delijn.be/stops/304860", "https://data.delijn.be/stops/307687"], ["https://data.delijn.be/stops/502189", "https://data.delijn.be/stops/507713"], ["https://data.delijn.be/stops/407117", "https://data.delijn.be/stops/407276"], ["https://data.delijn.be/stops/400238", "https://data.delijn.be/stops/410000"], ["https://data.delijn.be/stops/304595", "https://data.delijn.be/stops/304658"], ["https://data.delijn.be/stops/202176", "https://data.delijn.be/stops/203178"], ["https://data.delijn.be/stops/204478", "https://data.delijn.be/stops/205479"], ["https://data.delijn.be/stops/201716", "https://data.delijn.be/stops/202642"], ["https://data.delijn.be/stops/504725", "https://data.delijn.be/stops/505813"], ["https://data.delijn.be/stops/305817", "https://data.delijn.be/stops/305819"], ["https://data.delijn.be/stops/406282", "https://data.delijn.be/stops/406283"], ["https://data.delijn.be/stops/503600", "https://data.delijn.be/stops/508151"], ["https://data.delijn.be/stops/304001", "https://data.delijn.be/stops/306002"], ["https://data.delijn.be/stops/101196", "https://data.delijn.be/stops/101204"], ["https://data.delijn.be/stops/107409", "https://data.delijn.be/stops/107598"], ["https://data.delijn.be/stops/404223", "https://data.delijn.be/stops/405547"], ["https://data.delijn.be/stops/504070", "https://data.delijn.be/stops/504074"], ["https://data.delijn.be/stops/101528", "https://data.delijn.be/stops/109007"], ["https://data.delijn.be/stops/502303", "https://data.delijn.be/stops/505678"], ["https://data.delijn.be/stops/405067", "https://data.delijn.be/stops/405114"], ["https://data.delijn.be/stops/503032", "https://data.delijn.be/stops/508679"], ["https://data.delijn.be/stops/200920", "https://data.delijn.be/stops/203260"], ["https://data.delijn.be/stops/504296", "https://data.delijn.be/stops/504305"], ["https://data.delijn.be/stops/108120", "https://data.delijn.be/stops/108465"], ["https://data.delijn.be/stops/103499", "https://data.delijn.be/stops/106215"], ["https://data.delijn.be/stops/509611", "https://data.delijn.be/stops/509612"], ["https://data.delijn.be/stops/504348", "https://data.delijn.be/stops/504353"], ["https://data.delijn.be/stops/504340", "https://data.delijn.be/stops/509329"], ["https://data.delijn.be/stops/201923", "https://data.delijn.be/stops/206406"], ["https://data.delijn.be/stops/505789", "https://data.delijn.be/stops/508059"], ["https://data.delijn.be/stops/207005", "https://data.delijn.be/stops/207263"], ["https://data.delijn.be/stops/205654", "https://data.delijn.be/stops/205670"], ["https://data.delijn.be/stops/502470", "https://data.delijn.be/stops/502763"], ["https://data.delijn.be/stops/106889", "https://data.delijn.be/stops/107220"], ["https://data.delijn.be/stops/403930", "https://data.delijn.be/stops/403984"], ["https://data.delijn.be/stops/204083", "https://data.delijn.be/stops/205082"], ["https://data.delijn.be/stops/407247", "https://data.delijn.be/stops/407458"], ["https://data.delijn.be/stops/201863", "https://data.delijn.be/stops/203186"], ["https://data.delijn.be/stops/303864", "https://data.delijn.be/stops/303868"], ["https://data.delijn.be/stops/509388", "https://data.delijn.be/stops/509392"], ["https://data.delijn.be/stops/406350", "https://data.delijn.be/stops/408853"], ["https://data.delijn.be/stops/408511", "https://data.delijn.be/stops/408750"], ["https://data.delijn.be/stops/200026", "https://data.delijn.be/stops/210113"], ["https://data.delijn.be/stops/101690", "https://data.delijn.be/stops/107395"], ["https://data.delijn.be/stops/501002", "https://data.delijn.be/stops/506215"], ["https://data.delijn.be/stops/201867", "https://data.delijn.be/stops/210033"], ["https://data.delijn.be/stops/505977", "https://data.delijn.be/stops/509390"], ["https://data.delijn.be/stops/503111", "https://data.delijn.be/stops/505667"], ["https://data.delijn.be/stops/109156", "https://data.delijn.be/stops/109157"], ["https://data.delijn.be/stops/108996", "https://data.delijn.be/stops/108998"], ["https://data.delijn.be/stops/201418", "https://data.delijn.be/stops/202654"], ["https://data.delijn.be/stops/305496", "https://data.delijn.be/stops/305497"], ["https://data.delijn.be/stops/102765", "https://data.delijn.be/stops/102938"], ["https://data.delijn.be/stops/202971", "https://data.delijn.be/stops/203971"], ["https://data.delijn.be/stops/101459", "https://data.delijn.be/stops/109281"], ["https://data.delijn.be/stops/301605", "https://data.delijn.be/stops/301612"], ["https://data.delijn.be/stops/301417", "https://data.delijn.be/stops/307529"], ["https://data.delijn.be/stops/305241", "https://data.delijn.be/stops/305274"], ["https://data.delijn.be/stops/505641", "https://data.delijn.be/stops/508893"], ["https://data.delijn.be/stops/301131", "https://data.delijn.be/stops/301133"], ["https://data.delijn.be/stops/504679", "https://data.delijn.be/stops/504680"], ["https://data.delijn.be/stops/101945", "https://data.delijn.be/stops/101946"], ["https://data.delijn.be/stops/204706", "https://data.delijn.be/stops/204710"], ["https://data.delijn.be/stops/404224", "https://data.delijn.be/stops/404231"], ["https://data.delijn.be/stops/302947", "https://data.delijn.be/stops/302998"], ["https://data.delijn.be/stops/202433", "https://data.delijn.be/stops/203438"], ["https://data.delijn.be/stops/407773", "https://data.delijn.be/stops/304360"], ["https://data.delijn.be/stops/303994", "https://data.delijn.be/stops/307016"], ["https://data.delijn.be/stops/109910", "https://data.delijn.be/stops/109911"], ["https://data.delijn.be/stops/404941", "https://data.delijn.be/stops/404943"], ["https://data.delijn.be/stops/405263", "https://data.delijn.be/stops/405269"], ["https://data.delijn.be/stops/200105", "https://data.delijn.be/stops/201549"], ["https://data.delijn.be/stops/405760", "https://data.delijn.be/stops/302845"], ["https://data.delijn.be/stops/102719", "https://data.delijn.be/stops/108307"], ["https://data.delijn.be/stops/304846", "https://data.delijn.be/stops/307280"], ["https://data.delijn.be/stops/301789", "https://data.delijn.be/stops/302523"], ["https://data.delijn.be/stops/106763", "https://data.delijn.be/stops/106866"], ["https://data.delijn.be/stops/208543", "https://data.delijn.be/stops/209543"], ["https://data.delijn.be/stops/303116", "https://data.delijn.be/stops/304222"], ["https://data.delijn.be/stops/501463", "https://data.delijn.be/stops/506463"], ["https://data.delijn.be/stops/102042", "https://data.delijn.be/stops/206898"], ["https://data.delijn.be/stops/303486", "https://data.delijn.be/stops/303487"], ["https://data.delijn.be/stops/402133", "https://data.delijn.be/stops/402397"], ["https://data.delijn.be/stops/206232", "https://data.delijn.be/stops/300151"], ["https://data.delijn.be/stops/404808", "https://data.delijn.be/stops/404812"], ["https://data.delijn.be/stops/103681", "https://data.delijn.be/stops/104514"], ["https://data.delijn.be/stops/501507", "https://data.delijn.be/stops/506072"], ["https://data.delijn.be/stops/404917", "https://data.delijn.be/stops/404919"], ["https://data.delijn.be/stops/405800", "https://data.delijn.be/stops/406995"], ["https://data.delijn.be/stops/404889", "https://data.delijn.be/stops/404897"], ["https://data.delijn.be/stops/408878", "https://data.delijn.be/stops/408890"], ["https://data.delijn.be/stops/202333", "https://data.delijn.be/stops/502315"], ["https://data.delijn.be/stops/106260", "https://data.delijn.be/stops/106278"], ["https://data.delijn.be/stops/301775", "https://data.delijn.be/stops/301784"], ["https://data.delijn.be/stops/202162", "https://data.delijn.be/stops/202163"], ["https://data.delijn.be/stops/505816", "https://data.delijn.be/stops/508544"], ["https://data.delijn.be/stops/302049", "https://data.delijn.be/stops/302709"], ["https://data.delijn.be/stops/201183", "https://data.delijn.be/stops/211003"], ["https://data.delijn.be/stops/106948", "https://data.delijn.be/stops/108714"], ["https://data.delijn.be/stops/101425", "https://data.delijn.be/stops/101426"], ["https://data.delijn.be/stops/302065", "https://data.delijn.be/stops/302096"], ["https://data.delijn.be/stops/207478", "https://data.delijn.be/stops/207479"], ["https://data.delijn.be/stops/303247", "https://data.delijn.be/stops/303660"], ["https://data.delijn.be/stops/204667", "https://data.delijn.be/stops/205667"], ["https://data.delijn.be/stops/204613", "https://data.delijn.be/stops/204638"], ["https://data.delijn.be/stops/304284", "https://data.delijn.be/stops/306140"], ["https://data.delijn.be/stops/101361", "https://data.delijn.be/stops/101363"], ["https://data.delijn.be/stops/201720", "https://data.delijn.be/stops/202372"], ["https://data.delijn.be/stops/502308", "https://data.delijn.be/stops/502815"], ["https://data.delijn.be/stops/102591", "https://data.delijn.be/stops/108564"], ["https://data.delijn.be/stops/302073", "https://data.delijn.be/stops/305636"], ["https://data.delijn.be/stops/302877", "https://data.delijn.be/stops/302978"], ["https://data.delijn.be/stops/104390", "https://data.delijn.be/stops/108395"], ["https://data.delijn.be/stops/200829", "https://data.delijn.be/stops/505066"], ["https://data.delijn.be/stops/200813", "https://data.delijn.be/stops/208919"], ["https://data.delijn.be/stops/507757", "https://data.delijn.be/stops/507758"], ["https://data.delijn.be/stops/207753", "https://data.delijn.be/stops/207796"], ["https://data.delijn.be/stops/502479", "https://data.delijn.be/stops/505510"], ["https://data.delijn.be/stops/401363", "https://data.delijn.be/stops/401366"], ["https://data.delijn.be/stops/405965", "https://data.delijn.be/stops/405986"], ["https://data.delijn.be/stops/107050", "https://data.delijn.be/stops/107985"], ["https://data.delijn.be/stops/505561", "https://data.delijn.be/stops/506105"], ["https://data.delijn.be/stops/507136", "https://data.delijn.be/stops/507138"], ["https://data.delijn.be/stops/504810", "https://data.delijn.be/stops/508204"], ["https://data.delijn.be/stops/204368", "https://data.delijn.be/stops/205368"], ["https://data.delijn.be/stops/505922", "https://data.delijn.be/stops/507939"], ["https://data.delijn.be/stops/301333", "https://data.delijn.be/stops/306118"], ["https://data.delijn.be/stops/300546", "https://data.delijn.be/stops/307860"], ["https://data.delijn.be/stops/208227", "https://data.delijn.be/stops/209227"], ["https://data.delijn.be/stops/303695", "https://data.delijn.be/stops/305970"], ["https://data.delijn.be/stops/108870", "https://data.delijn.be/stops/108875"], ["https://data.delijn.be/stops/501146", "https://data.delijn.be/stops/506146"], ["https://data.delijn.be/stops/302355", "https://data.delijn.be/stops/302356"], ["https://data.delijn.be/stops/403022", "https://data.delijn.be/stops/403484"], ["https://data.delijn.be/stops/305250", "https://data.delijn.be/stops/308694"], ["https://data.delijn.be/stops/403207", "https://data.delijn.be/stops/403509"], ["https://data.delijn.be/stops/504836", "https://data.delijn.be/stops/505110"], ["https://data.delijn.be/stops/503716", "https://data.delijn.be/stops/508306"], ["https://data.delijn.be/stops/302664", "https://data.delijn.be/stops/302673"], ["https://data.delijn.be/stops/307145", "https://data.delijn.be/stops/307895"], ["https://data.delijn.be/stops/206570", "https://data.delijn.be/stops/206571"], ["https://data.delijn.be/stops/402792", "https://data.delijn.be/stops/402793"], ["https://data.delijn.be/stops/504817", "https://data.delijn.be/stops/509817"], ["https://data.delijn.be/stops/400176", "https://data.delijn.be/stops/400398"], ["https://data.delijn.be/stops/404341", "https://data.delijn.be/stops/404383"], ["https://data.delijn.be/stops/300815", "https://data.delijn.be/stops/308855"], ["https://data.delijn.be/stops/208157", "https://data.delijn.be/stops/208509"], ["https://data.delijn.be/stops/200650", "https://data.delijn.be/stops/202864"], ["https://data.delijn.be/stops/306958", "https://data.delijn.be/stops/306959"], ["https://data.delijn.be/stops/402714", "https://data.delijn.be/stops/402716"], ["https://data.delijn.be/stops/504134", "https://data.delijn.be/stops/504653"], ["https://data.delijn.be/stops/304729", "https://data.delijn.be/stops/305558"], ["https://data.delijn.be/stops/206896", "https://data.delijn.be/stops/207887"], ["https://data.delijn.be/stops/502211", "https://data.delijn.be/stops/505244"], ["https://data.delijn.be/stops/403552", "https://data.delijn.be/stops/410214"], ["https://data.delijn.be/stops/400818", "https://data.delijn.be/stops/400819"], ["https://data.delijn.be/stops/409253", "https://data.delijn.be/stops/409316"], ["https://data.delijn.be/stops/106261", "https://data.delijn.be/stops/106263"], ["https://data.delijn.be/stops/504498", "https://data.delijn.be/stops/504499"], ["https://data.delijn.be/stops/302853", "https://data.delijn.be/stops/308823"], ["https://data.delijn.be/stops/204765", "https://data.delijn.be/stops/205375"], ["https://data.delijn.be/stops/406170", "https://data.delijn.be/stops/406171"], ["https://data.delijn.be/stops/205237", "https://data.delijn.be/stops/206873"], ["https://data.delijn.be/stops/403148", "https://data.delijn.be/stops/403154"], ["https://data.delijn.be/stops/400831", "https://data.delijn.be/stops/407532"], ["https://data.delijn.be/stops/207521", "https://data.delijn.be/stops/207876"], ["https://data.delijn.be/stops/505378", "https://data.delijn.be/stops/508538"], ["https://data.delijn.be/stops/503022", "https://data.delijn.be/stops/508016"], ["https://data.delijn.be/stops/305739", "https://data.delijn.be/stops/307118"], ["https://data.delijn.be/stops/204064", "https://data.delijn.be/stops/204770"], ["https://data.delijn.be/stops/208211", "https://data.delijn.be/stops/209211"], ["https://data.delijn.be/stops/504455", "https://data.delijn.be/stops/504828"], ["https://data.delijn.be/stops/400919", "https://data.delijn.be/stops/407374"], ["https://data.delijn.be/stops/301760", "https://data.delijn.be/stops/301761"], ["https://data.delijn.be/stops/403702", "https://data.delijn.be/stops/403703"], ["https://data.delijn.be/stops/200425", "https://data.delijn.be/stops/202536"], ["https://data.delijn.be/stops/303067", "https://data.delijn.be/stops/303182"], ["https://data.delijn.be/stops/406948", "https://data.delijn.be/stops/409499"], ["https://data.delijn.be/stops/503624", "https://data.delijn.be/stops/503629"], ["https://data.delijn.be/stops/206282", "https://data.delijn.be/stops/207283"], ["https://data.delijn.be/stops/206884", "https://data.delijn.be/stops/207354"], ["https://data.delijn.be/stops/402893", "https://data.delijn.be/stops/302631"], ["https://data.delijn.be/stops/501472", "https://data.delijn.be/stops/501510"], ["https://data.delijn.be/stops/400860", "https://data.delijn.be/stops/406700"], ["https://data.delijn.be/stops/200737", "https://data.delijn.be/stops/202595"], ["https://data.delijn.be/stops/501305", "https://data.delijn.be/stops/501337"], ["https://data.delijn.be/stops/205114", "https://data.delijn.be/stops/205115"], ["https://data.delijn.be/stops/103639", "https://data.delijn.be/stops/107171"], ["https://data.delijn.be/stops/107903", "https://data.delijn.be/stops/107910"], ["https://data.delijn.be/stops/301987", "https://data.delijn.be/stops/304153"], ["https://data.delijn.be/stops/307810", "https://data.delijn.be/stops/308714"], ["https://data.delijn.be/stops/307379", "https://data.delijn.be/stops/307448"], ["https://data.delijn.be/stops/404485", "https://data.delijn.be/stops/404525"], ["https://data.delijn.be/stops/409064", "https://data.delijn.be/stops/409082"], ["https://data.delijn.be/stops/102182", "https://data.delijn.be/stops/103505"], ["https://data.delijn.be/stops/301669", "https://data.delijn.be/stops/304179"], ["https://data.delijn.be/stops/402832", "https://data.delijn.be/stops/409017"], ["https://data.delijn.be/stops/107237", "https://data.delijn.be/stops/108730"], ["https://data.delijn.be/stops/509003", "https://data.delijn.be/stops/509316"], ["https://data.delijn.be/stops/208127", "https://data.delijn.be/stops/209074"], ["https://data.delijn.be/stops/305999", "https://data.delijn.be/stops/306000"], ["https://data.delijn.be/stops/104454", "https://data.delijn.be/stops/104456"], ["https://data.delijn.be/stops/502050", "https://data.delijn.be/stops/502750"], ["https://data.delijn.be/stops/107237", "https://data.delijn.be/stops/107920"], ["https://data.delijn.be/stops/107088", "https://data.delijn.be/stops/107089"], ["https://data.delijn.be/stops/208649", "https://data.delijn.be/stops/209650"], ["https://data.delijn.be/stops/200485", "https://data.delijn.be/stops/201485"], ["https://data.delijn.be/stops/300417", "https://data.delijn.be/stops/300446"], ["https://data.delijn.be/stops/305114", "https://data.delijn.be/stops/305128"], ["https://data.delijn.be/stops/504090", "https://data.delijn.be/stops/509005"], ["https://data.delijn.be/stops/402427", "https://data.delijn.be/stops/402961"], ["https://data.delijn.be/stops/403280", "https://data.delijn.be/stops/404175"], ["https://data.delijn.be/stops/206675", "https://data.delijn.be/stops/207942"], ["https://data.delijn.be/stops/208394", "https://data.delijn.be/stops/209393"], ["https://data.delijn.be/stops/101829", "https://data.delijn.be/stops/102422"], ["https://data.delijn.be/stops/207797", "https://data.delijn.be/stops/209610"], ["https://data.delijn.be/stops/101203", "https://data.delijn.be/stops/204663"], ["https://data.delijn.be/stops/104446", "https://data.delijn.be/stops/104447"], ["https://data.delijn.be/stops/204038", "https://data.delijn.be/stops/205039"], ["https://data.delijn.be/stops/202503", "https://data.delijn.be/stops/203502"], ["https://data.delijn.be/stops/404307", "https://data.delijn.be/stops/404312"], ["https://data.delijn.be/stops/502525", "https://data.delijn.be/stops/505336"], ["https://data.delijn.be/stops/109036", "https://data.delijn.be/stops/109037"], ["https://data.delijn.be/stops/202218", "https://data.delijn.be/stops/203218"], ["https://data.delijn.be/stops/208634", "https://data.delijn.be/stops/209509"], ["https://data.delijn.be/stops/302541", "https://data.delijn.be/stops/303360"], ["https://data.delijn.be/stops/102380", "https://data.delijn.be/stops/104855"], ["https://data.delijn.be/stops/505552", "https://data.delijn.be/stops/505981"], ["https://data.delijn.be/stops/402243", "https://data.delijn.be/stops/406870"], ["https://data.delijn.be/stops/300183", "https://data.delijn.be/stops/306743"], ["https://data.delijn.be/stops/205251", "https://data.delijn.be/stops/205525"], ["https://data.delijn.be/stops/102751", "https://data.delijn.be/stops/104811"], ["https://data.delijn.be/stops/104276", "https://data.delijn.be/stops/109748"], ["https://data.delijn.be/stops/101088", "https://data.delijn.be/stops/101161"], ["https://data.delijn.be/stops/503169", "https://data.delijn.be/stops/503172"], ["https://data.delijn.be/stops/505683", "https://data.delijn.be/stops/507315"], ["https://data.delijn.be/stops/302024", "https://data.delijn.be/stops/306381"], ["https://data.delijn.be/stops/505737", "https://data.delijn.be/stops/507333"], ["https://data.delijn.be/stops/202221", "https://data.delijn.be/stops/205077"], ["https://data.delijn.be/stops/403337", "https://data.delijn.be/stops/403957"], ["https://data.delijn.be/stops/405039", "https://data.delijn.be/stops/405072"], ["https://data.delijn.be/stops/302961", "https://data.delijn.be/stops/306300"], ["https://data.delijn.be/stops/400883", "https://data.delijn.be/stops/405667"], ["https://data.delijn.be/stops/505844", "https://data.delijn.be/stops/507235"], ["https://data.delijn.be/stops/403507", "https://data.delijn.be/stops/410130"], ["https://data.delijn.be/stops/205989", "https://data.delijn.be/stops/209568"], ["https://data.delijn.be/stops/208646", "https://data.delijn.be/stops/209648"], ["https://data.delijn.be/stops/203552", "https://data.delijn.be/stops/203564"], ["https://data.delijn.be/stops/103558", "https://data.delijn.be/stops/109394"], ["https://data.delijn.be/stops/300202", "https://data.delijn.be/stops/304785"], ["https://data.delijn.be/stops/301084", "https://data.delijn.be/stops/301086"], ["https://data.delijn.be/stops/200053", "https://data.delijn.be/stops/211057"], ["https://data.delijn.be/stops/101644", "https://data.delijn.be/stops/102082"], ["https://data.delijn.be/stops/208294", "https://data.delijn.be/stops/209726"], ["https://data.delijn.be/stops/105787", "https://data.delijn.be/stops/105938"], ["https://data.delijn.be/stops/502373", "https://data.delijn.be/stops/507373"], ["https://data.delijn.be/stops/406557", "https://data.delijn.be/stops/406559"], ["https://data.delijn.be/stops/405246", "https://data.delijn.be/stops/405248"], ["https://data.delijn.be/stops/501486", "https://data.delijn.be/stops/506135"], ["https://data.delijn.be/stops/107498", "https://data.delijn.be/stops/107501"], ["https://data.delijn.be/stops/507613", "https://data.delijn.be/stops/507749"], ["https://data.delijn.be/stops/308416", "https://data.delijn.be/stops/308430"], ["https://data.delijn.be/stops/206808", "https://data.delijn.be/stops/207204"], ["https://data.delijn.be/stops/101726", "https://data.delijn.be/stops/101846"], ["https://data.delijn.be/stops/205113", "https://data.delijn.be/stops/205681"], ["https://data.delijn.be/stops/304919", "https://data.delijn.be/stops/305395"], ["https://data.delijn.be/stops/303533", "https://data.delijn.be/stops/303572"], ["https://data.delijn.be/stops/406932", "https://data.delijn.be/stops/406951"], ["https://data.delijn.be/stops/200262", "https://data.delijn.be/stops/202549"], ["https://data.delijn.be/stops/104549", "https://data.delijn.be/stops/104852"], ["https://data.delijn.be/stops/407291", "https://data.delijn.be/stops/407310"], ["https://data.delijn.be/stops/506500", "https://data.delijn.be/stops/506511"], ["https://data.delijn.be/stops/209496", "https://data.delijn.be/stops/209718"], ["https://data.delijn.be/stops/505060", "https://data.delijn.be/stops/507918"], ["https://data.delijn.be/stops/108282", "https://data.delijn.be/stops/108283"], ["https://data.delijn.be/stops/107257", "https://data.delijn.be/stops/107259"], ["https://data.delijn.be/stops/303493", "https://data.delijn.be/stops/304989"], ["https://data.delijn.be/stops/404552", "https://data.delijn.be/stops/404553"], ["https://data.delijn.be/stops/505296", "https://data.delijn.be/stops/508839"], ["https://data.delijn.be/stops/306611", "https://data.delijn.be/stops/306619"], ["https://data.delijn.be/stops/204099", "https://data.delijn.be/stops/206408"], ["https://data.delijn.be/stops/404614", "https://data.delijn.be/stops/404996"], ["https://data.delijn.be/stops/304310", "https://data.delijn.be/stops/307005"], ["https://data.delijn.be/stops/306311", "https://data.delijn.be/stops/307682"], ["https://data.delijn.be/stops/302413", "https://data.delijn.be/stops/302429"], ["https://data.delijn.be/stops/407946", "https://data.delijn.be/stops/408055"], ["https://data.delijn.be/stops/501594", "https://data.delijn.be/stops/504663"], ["https://data.delijn.be/stops/206422", "https://data.delijn.be/stops/207424"], ["https://data.delijn.be/stops/108916", "https://data.delijn.be/stops/108917"], ["https://data.delijn.be/stops/503499", "https://data.delijn.be/stops/508688"], ["https://data.delijn.be/stops/208519", "https://data.delijn.be/stops/208520"], ["https://data.delijn.be/stops/403332", "https://data.delijn.be/stops/403339"], ["https://data.delijn.be/stops/109986", "https://data.delijn.be/stops/410346"], ["https://data.delijn.be/stops/102076", "https://data.delijn.be/stops/105996"], ["https://data.delijn.be/stops/405187", "https://data.delijn.be/stops/405249"], ["https://data.delijn.be/stops/300881", "https://data.delijn.be/stops/308853"], ["https://data.delijn.be/stops/403112", "https://data.delijn.be/stops/403234"], ["https://data.delijn.be/stops/406915", "https://data.delijn.be/stops/406968"], ["https://data.delijn.be/stops/405941", "https://data.delijn.be/stops/405944"], ["https://data.delijn.be/stops/502260", "https://data.delijn.be/stops/507257"], ["https://data.delijn.be/stops/206191", "https://data.delijn.be/stops/206192"], ["https://data.delijn.be/stops/104949", "https://data.delijn.be/stops/406832"], ["https://data.delijn.be/stops/301322", "https://data.delijn.be/stops/301323"], ["https://data.delijn.be/stops/105003", "https://data.delijn.be/stops/105191"], ["https://data.delijn.be/stops/102145", "https://data.delijn.be/stops/103209"], ["https://data.delijn.be/stops/506173", "https://data.delijn.be/stops/506175"], ["https://data.delijn.be/stops/200018", "https://data.delijn.be/stops/200354"], ["https://data.delijn.be/stops/102592", "https://data.delijn.be/stops/109002"], ["https://data.delijn.be/stops/505131", "https://data.delijn.be/stops/508667"], ["https://data.delijn.be/stops/207571", "https://data.delijn.be/stops/207573"], ["https://data.delijn.be/stops/503694", "https://data.delijn.be/stops/508347"], ["https://data.delijn.be/stops/301660", "https://data.delijn.be/stops/302995"], ["https://data.delijn.be/stops/206367", "https://data.delijn.be/stops/207809"], ["https://data.delijn.be/stops/300859", "https://data.delijn.be/stops/306049"], ["https://data.delijn.be/stops/200506", "https://data.delijn.be/stops/202359"], ["https://data.delijn.be/stops/507446", "https://data.delijn.be/stops/507462"], ["https://data.delijn.be/stops/207387", "https://data.delijn.be/stops/207967"], ["https://data.delijn.be/stops/300064", "https://data.delijn.be/stops/303836"], ["https://data.delijn.be/stops/409677", "https://data.delijn.be/stops/409722"], ["https://data.delijn.be/stops/402306", "https://data.delijn.be/stops/402307"], ["https://data.delijn.be/stops/107824", "https://data.delijn.be/stops/107827"], ["https://data.delijn.be/stops/301414", "https://data.delijn.be/stops/301419"], ["https://data.delijn.be/stops/501769", "https://data.delijn.be/stops/507705"], ["https://data.delijn.be/stops/206869", "https://data.delijn.be/stops/209748"], ["https://data.delijn.be/stops/305265", "https://data.delijn.be/stops/306346"], ["https://data.delijn.be/stops/404294", "https://data.delijn.be/stops/405698"], ["https://data.delijn.be/stops/503455", "https://data.delijn.be/stops/508200"], ["https://data.delijn.be/stops/307404", "https://data.delijn.be/stops/307410"], ["https://data.delijn.be/stops/107984", "https://data.delijn.be/stops/308491"], ["https://data.delijn.be/stops/109458", "https://data.delijn.be/stops/109793"], ["https://data.delijn.be/stops/208784", "https://data.delijn.be/stops/209179"], ["https://data.delijn.be/stops/305383", "https://data.delijn.be/stops/305386"], ["https://data.delijn.be/stops/301827", "https://data.delijn.be/stops/301829"], ["https://data.delijn.be/stops/401243", "https://data.delijn.be/stops/401390"], ["https://data.delijn.be/stops/203738", "https://data.delijn.be/stops/209712"], ["https://data.delijn.be/stops/300737", "https://data.delijn.be/stops/302199"], ["https://data.delijn.be/stops/107482", "https://data.delijn.be/stops/107517"], ["https://data.delijn.be/stops/301079", "https://data.delijn.be/stops/306052"], ["https://data.delijn.be/stops/504391", "https://data.delijn.be/stops/504715"], ["https://data.delijn.be/stops/301411", "https://data.delijn.be/stops/301414"], ["https://data.delijn.be/stops/304710", "https://data.delijn.be/stops/304711"], ["https://data.delijn.be/stops/400028", "https://data.delijn.be/stops/400029"], ["https://data.delijn.be/stops/408081", "https://data.delijn.be/stops/408174"], ["https://data.delijn.be/stops/101706", "https://data.delijn.be/stops/103415"], ["https://data.delijn.be/stops/109066", "https://data.delijn.be/stops/109067"], ["https://data.delijn.be/stops/502145", "https://data.delijn.be/stops/507113"], ["https://data.delijn.be/stops/504879", "https://data.delijn.be/stops/505171"], ["https://data.delijn.be/stops/508710", "https://data.delijn.be/stops/509979"], ["https://data.delijn.be/stops/302466", "https://data.delijn.be/stops/302467"], ["https://data.delijn.be/stops/306055", "https://data.delijn.be/stops/306056"], ["https://data.delijn.be/stops/208240", "https://data.delijn.be/stops/209717"], ["https://data.delijn.be/stops/303542", "https://data.delijn.be/stops/303564"], ["https://data.delijn.be/stops/410116", "https://data.delijn.be/stops/410118"], ["https://data.delijn.be/stops/105042", "https://data.delijn.be/stops/105043"], ["https://data.delijn.be/stops/206143", "https://data.delijn.be/stops/207021"], ["https://data.delijn.be/stops/301298", "https://data.delijn.be/stops/308673"], ["https://data.delijn.be/stops/108633", "https://data.delijn.be/stops/109669"], ["https://data.delijn.be/stops/504113", "https://data.delijn.be/stops/504466"], ["https://data.delijn.be/stops/204676", "https://data.delijn.be/stops/205676"], ["https://data.delijn.be/stops/508166", "https://data.delijn.be/stops/508171"], ["https://data.delijn.be/stops/200775", "https://data.delijn.be/stops/209302"], ["https://data.delijn.be/stops/401628", "https://data.delijn.be/stops/308245"], ["https://data.delijn.be/stops/208289", "https://data.delijn.be/stops/209288"], ["https://data.delijn.be/stops/304018", "https://data.delijn.be/stops/304036"], ["https://data.delijn.be/stops/406075", "https://data.delijn.be/stops/406076"], ["https://data.delijn.be/stops/504554", "https://data.delijn.be/stops/505926"], ["https://data.delijn.be/stops/404626", "https://data.delijn.be/stops/404632"], ["https://data.delijn.be/stops/303536", "https://data.delijn.be/stops/303537"], ["https://data.delijn.be/stops/301926", "https://data.delijn.be/stops/301927"], ["https://data.delijn.be/stops/101721", "https://data.delijn.be/stops/102924"], ["https://data.delijn.be/stops/504557", "https://data.delijn.be/stops/504568"], ["https://data.delijn.be/stops/407808", "https://data.delijn.be/stops/407837"], ["https://data.delijn.be/stops/201677", "https://data.delijn.be/stops/203773"], ["https://data.delijn.be/stops/408951", "https://data.delijn.be/stops/408972"], ["https://data.delijn.be/stops/301730", "https://data.delijn.be/stops/301782"], ["https://data.delijn.be/stops/400536", "https://data.delijn.be/stops/400572"], ["https://data.delijn.be/stops/200388", "https://data.delijn.be/stops/208703"], ["https://data.delijn.be/stops/306046", "https://data.delijn.be/stops/306257"], ["https://data.delijn.be/stops/103081", "https://data.delijn.be/stops/103082"], ["https://data.delijn.be/stops/208090", "https://data.delijn.be/stops/209846"], ["https://data.delijn.be/stops/201044", "https://data.delijn.be/stops/202487"], ["https://data.delijn.be/stops/403169", "https://data.delijn.be/stops/403183"], ["https://data.delijn.be/stops/502500", "https://data.delijn.be/stops/502515"], ["https://data.delijn.be/stops/200175", "https://data.delijn.be/stops/201174"], ["https://data.delijn.be/stops/405547", "https://data.delijn.be/stops/405653"], ["https://data.delijn.be/stops/501355", "https://data.delijn.be/stops/506318"], ["https://data.delijn.be/stops/408403", "https://data.delijn.be/stops/409825"], ["https://data.delijn.be/stops/402210", "https://data.delijn.be/stops/405566"], ["https://data.delijn.be/stops/404382", "https://data.delijn.be/stops/404395"], ["https://data.delijn.be/stops/200485", "https://data.delijn.be/stops/208265"], ["https://data.delijn.be/stops/304946", "https://data.delijn.be/stops/308017"], ["https://data.delijn.be/stops/206670", "https://data.delijn.be/stops/219030"], ["https://data.delijn.be/stops/101545", "https://data.delijn.be/stops/101985"], ["https://data.delijn.be/stops/106119", "https://data.delijn.be/stops/106121"], ["https://data.delijn.be/stops/200531", "https://data.delijn.be/stops/200532"], ["https://data.delijn.be/stops/407715", "https://data.delijn.be/stops/409777"], ["https://data.delijn.be/stops/206763", "https://data.delijn.be/stops/207631"], ["https://data.delijn.be/stops/503550", "https://data.delijn.be/stops/503551"], ["https://data.delijn.be/stops/104468", "https://data.delijn.be/stops/107531"], ["https://data.delijn.be/stops/406352", "https://data.delijn.be/stops/406353"], ["https://data.delijn.be/stops/503863", "https://data.delijn.be/stops/508863"], ["https://data.delijn.be/stops/202906", "https://data.delijn.be/stops/203906"], ["https://data.delijn.be/stops/204040", "https://data.delijn.be/stops/204041"], ["https://data.delijn.be/stops/305685", "https://data.delijn.be/stops/305722"], ["https://data.delijn.be/stops/406176", "https://data.delijn.be/stops/406200"], ["https://data.delijn.be/stops/403014", "https://data.delijn.be/stops/403024"], ["https://data.delijn.be/stops/503423", "https://data.delijn.be/stops/503434"], ["https://data.delijn.be/stops/102725", "https://data.delijn.be/stops/102792"], ["https://data.delijn.be/stops/305214", "https://data.delijn.be/stops/306880"], ["https://data.delijn.be/stops/204101", "https://data.delijn.be/stops/204102"], ["https://data.delijn.be/stops/304689", "https://data.delijn.be/stops/309671"], ["https://data.delijn.be/stops/502230", "https://data.delijn.be/stops/502699"], ["https://data.delijn.be/stops/206021", "https://data.delijn.be/stops/207028"], ["https://data.delijn.be/stops/504984", "https://data.delijn.be/stops/505967"], ["https://data.delijn.be/stops/401141", "https://data.delijn.be/stops/409817"], ["https://data.delijn.be/stops/304583", "https://data.delijn.be/stops/304604"], ["https://data.delijn.be/stops/408202", "https://data.delijn.be/stops/408204"], ["https://data.delijn.be/stops/105084", "https://data.delijn.be/stops/205279"], ["https://data.delijn.be/stops/404710", "https://data.delijn.be/stops/404791"], ["https://data.delijn.be/stops/300168", "https://data.delijn.be/stops/300173"], ["https://data.delijn.be/stops/504201", "https://data.delijn.be/stops/508449"], ["https://data.delijn.be/stops/402103", "https://data.delijn.be/stops/410094"], ["https://data.delijn.be/stops/106245", "https://data.delijn.be/stops/106246"], ["https://data.delijn.be/stops/501481", "https://data.delijn.be/stops/506466"], ["https://data.delijn.be/stops/401160", "https://data.delijn.be/stops/408187"], ["https://data.delijn.be/stops/402948", "https://data.delijn.be/stops/405561"], ["https://data.delijn.be/stops/401278", "https://data.delijn.be/stops/409191"], ["https://data.delijn.be/stops/106423", "https://data.delijn.be/stops/106559"], ["https://data.delijn.be/stops/407202", "https://data.delijn.be/stops/407206"], ["https://data.delijn.be/stops/105139", "https://data.delijn.be/stops/108503"], ["https://data.delijn.be/stops/204023", "https://data.delijn.be/stops/204024"], ["https://data.delijn.be/stops/510030", "https://data.delijn.be/stops/590007"], ["https://data.delijn.be/stops/406080", "https://data.delijn.be/stops/406140"], ["https://data.delijn.be/stops/101928", "https://data.delijn.be/stops/108207"], ["https://data.delijn.be/stops/201162", "https://data.delijn.be/stops/210132"], ["https://data.delijn.be/stops/105788", "https://data.delijn.be/stops/105790"], ["https://data.delijn.be/stops/503783", "https://data.delijn.be/stops/508783"], ["https://data.delijn.be/stops/102494", "https://data.delijn.be/stops/407109"], ["https://data.delijn.be/stops/101026", "https://data.delijn.be/stops/101989"], ["https://data.delijn.be/stops/101062", "https://data.delijn.be/stops/107955"], ["https://data.delijn.be/stops/206880", "https://data.delijn.be/stops/207309"], ["https://data.delijn.be/stops/505323", "https://data.delijn.be/stops/507497"], ["https://data.delijn.be/stops/407601", "https://data.delijn.be/stops/407693"], ["https://data.delijn.be/stops/402822", "https://data.delijn.be/stops/409228"], ["https://data.delijn.be/stops/304436", "https://data.delijn.be/stops/304455"], ["https://data.delijn.be/stops/507354", "https://data.delijn.be/stops/507665"], ["https://data.delijn.be/stops/400821", "https://data.delijn.be/stops/401664"], ["https://data.delijn.be/stops/505234", "https://data.delijn.be/stops/505330"], ["https://data.delijn.be/stops/401518", "https://data.delijn.be/stops/402028"], ["https://data.delijn.be/stops/200401", "https://data.delijn.be/stops/201400"], ["https://data.delijn.be/stops/206702", "https://data.delijn.be/stops/206980"], ["https://data.delijn.be/stops/400514", "https://data.delijn.be/stops/400520"], ["https://data.delijn.be/stops/209739", "https://data.delijn.be/stops/209741"], ["https://data.delijn.be/stops/501084", "https://data.delijn.be/stops/501435"], ["https://data.delijn.be/stops/210052", "https://data.delijn.be/stops/211053"], ["https://data.delijn.be/stops/400142", "https://data.delijn.be/stops/403512"], ["https://data.delijn.be/stops/200658", "https://data.delijn.be/stops/201527"], ["https://data.delijn.be/stops/303720", "https://data.delijn.be/stops/303750"], ["https://data.delijn.be/stops/400269", "https://data.delijn.be/stops/400955"], ["https://data.delijn.be/stops/303056", "https://data.delijn.be/stops/303965"], ["https://data.delijn.be/stops/504193", "https://data.delijn.be/stops/509193"], ["https://data.delijn.be/stops/201961", "https://data.delijn.be/stops/202196"], ["https://data.delijn.be/stops/101406", "https://data.delijn.be/stops/106524"], ["https://data.delijn.be/stops/106372", "https://data.delijn.be/stops/106375"], ["https://data.delijn.be/stops/200147", "https://data.delijn.be/stops/203355"], ["https://data.delijn.be/stops/208120", "https://data.delijn.be/stops/218008"], ["https://data.delijn.be/stops/102863", "https://data.delijn.be/stops/103301"], ["https://data.delijn.be/stops/501180", "https://data.delijn.be/stops/509511"], ["https://data.delijn.be/stops/303010", "https://data.delijn.be/stops/306101"], ["https://data.delijn.be/stops/106744", "https://data.delijn.be/stops/109775"], ["https://data.delijn.be/stops/502671", "https://data.delijn.be/stops/507670"], ["https://data.delijn.be/stops/305299", "https://data.delijn.be/stops/305333"], ["https://data.delijn.be/stops/307960", "https://data.delijn.be/stops/308070"], ["https://data.delijn.be/stops/202387", "https://data.delijn.be/stops/203387"], ["https://data.delijn.be/stops/202916", "https://data.delijn.be/stops/202917"], ["https://data.delijn.be/stops/300618", "https://data.delijn.be/stops/300619"], ["https://data.delijn.be/stops/106598", "https://data.delijn.be/stops/107215"], ["https://data.delijn.be/stops/101836", "https://data.delijn.be/stops/108202"], ["https://data.delijn.be/stops/102961", "https://data.delijn.be/stops/106591"], ["https://data.delijn.be/stops/109527", "https://data.delijn.be/stops/109528"], ["https://data.delijn.be/stops/211092", "https://data.delijn.be/stops/211093"], ["https://data.delijn.be/stops/501071", "https://data.delijn.be/stops/506073"], ["https://data.delijn.be/stops/301968", "https://data.delijn.be/stops/307169"], ["https://data.delijn.be/stops/200132", "https://data.delijn.be/stops/200468"], ["https://data.delijn.be/stops/202855", "https://data.delijn.be/stops/202857"], ["https://data.delijn.be/stops/502697", "https://data.delijn.be/stops/507696"], ["https://data.delijn.be/stops/502031", "https://data.delijn.be/stops/502619"], ["https://data.delijn.be/stops/401793", "https://data.delijn.be/stops/401816"], ["https://data.delijn.be/stops/505729", "https://data.delijn.be/stops/509893"], ["https://data.delijn.be/stops/206501", "https://data.delijn.be/stops/207500"], ["https://data.delijn.be/stops/103532", "https://data.delijn.be/stops/109626"], ["https://data.delijn.be/stops/504019", "https://data.delijn.be/stops/505428"], ["https://data.delijn.be/stops/502508", "https://data.delijn.be/stops/507496"], ["https://data.delijn.be/stops/403491", "https://data.delijn.be/stops/405630"], ["https://data.delijn.be/stops/507092", "https://data.delijn.be/stops/507167"], ["https://data.delijn.be/stops/400082", "https://data.delijn.be/stops/400084"], ["https://data.delijn.be/stops/402815", "https://data.delijn.be/stops/409034"], ["https://data.delijn.be/stops/505748", "https://data.delijn.be/stops/507186"], ["https://data.delijn.be/stops/101411", "https://data.delijn.be/stops/106921"], ["https://data.delijn.be/stops/106167", "https://data.delijn.be/stops/106170"], ["https://data.delijn.be/stops/302033", "https://data.delijn.be/stops/304631"], ["https://data.delijn.be/stops/104878", "https://data.delijn.be/stops/109972"], ["https://data.delijn.be/stops/207613", "https://data.delijn.be/stops/207614"], ["https://data.delijn.be/stops/200817", "https://data.delijn.be/stops/200896"], ["https://data.delijn.be/stops/504622", "https://data.delijn.be/stops/509628"], ["https://data.delijn.be/stops/301676", "https://data.delijn.be/stops/303948"], ["https://data.delijn.be/stops/408616", "https://data.delijn.be/stops/408707"], ["https://data.delijn.be/stops/102386", "https://data.delijn.be/stops/106318"], ["https://data.delijn.be/stops/301235", "https://data.delijn.be/stops/301243"], ["https://data.delijn.be/stops/504701", "https://data.delijn.be/stops/509550"], ["https://data.delijn.be/stops/300593", "https://data.delijn.be/stops/302955"], ["https://data.delijn.be/stops/401842", "https://data.delijn.be/stops/401844"], ["https://data.delijn.be/stops/405553", "https://data.delijn.be/stops/410052"], ["https://data.delijn.be/stops/301285", "https://data.delijn.be/stops/301286"], ["https://data.delijn.be/stops/306664", "https://data.delijn.be/stops/306681"], ["https://data.delijn.be/stops/403164", "https://data.delijn.be/stops/403267"], ["https://data.delijn.be/stops/504627", "https://data.delijn.be/stops/509627"], ["https://data.delijn.be/stops/504706", "https://data.delijn.be/stops/509487"], ["https://data.delijn.be/stops/301839", "https://data.delijn.be/stops/302487"], ["https://data.delijn.be/stops/400430", "https://data.delijn.be/stops/400431"], ["https://data.delijn.be/stops/303413", "https://data.delijn.be/stops/303418"], ["https://data.delijn.be/stops/505520", "https://data.delijn.be/stops/505620"], ["https://data.delijn.be/stops/302258", "https://data.delijn.be/stops/306370"], ["https://data.delijn.be/stops/403297", "https://data.delijn.be/stops/403305"], ["https://data.delijn.be/stops/305845", "https://data.delijn.be/stops/305898"], ["https://data.delijn.be/stops/302504", "https://data.delijn.be/stops/302518"], ["https://data.delijn.be/stops/302861", "https://data.delijn.be/stops/302914"], ["https://data.delijn.be/stops/102980", "https://data.delijn.be/stops/104810"], ["https://data.delijn.be/stops/407935", "https://data.delijn.be/stops/410344"], ["https://data.delijn.be/stops/501293", "https://data.delijn.be/stops/506565"], ["https://data.delijn.be/stops/106232", "https://data.delijn.be/stops/109395"], ["https://data.delijn.be/stops/404785", "https://data.delijn.be/stops/404832"], ["https://data.delijn.be/stops/401260", "https://data.delijn.be/stops/401303"], ["https://data.delijn.be/stops/302774", "https://data.delijn.be/stops/306556"], ["https://data.delijn.be/stops/504341", "https://data.delijn.be/stops/509073"], ["https://data.delijn.be/stops/101413", "https://data.delijn.be/stops/107297"], ["https://data.delijn.be/stops/208073", "https://data.delijn.be/stops/209073"], ["https://data.delijn.be/stops/206607", "https://data.delijn.be/stops/207606"], ["https://data.delijn.be/stops/101959", "https://data.delijn.be/stops/108764"], ["https://data.delijn.be/stops/400794", "https://data.delijn.be/stops/406691"], ["https://data.delijn.be/stops/201381", "https://data.delijn.be/stops/210079"], ["https://data.delijn.be/stops/101175", "https://data.delijn.be/stops/102973"], ["https://data.delijn.be/stops/505957", "https://data.delijn.be/stops/508277"], ["https://data.delijn.be/stops/200560", "https://data.delijn.be/stops/210067"], ["https://data.delijn.be/stops/208220", "https://data.delijn.be/stops/208224"], ["https://data.delijn.be/stops/202534", "https://data.delijn.be/stops/205174"], ["https://data.delijn.be/stops/404767", "https://data.delijn.be/stops/404816"], ["https://data.delijn.be/stops/202539", "https://data.delijn.be/stops/203539"], ["https://data.delijn.be/stops/302074", "https://data.delijn.be/stops/302099"], ["https://data.delijn.be/stops/300370", "https://data.delijn.be/stops/307213"], ["https://data.delijn.be/stops/200386", "https://data.delijn.be/stops/201729"], ["https://data.delijn.be/stops/102424", "https://data.delijn.be/stops/102874"], ["https://data.delijn.be/stops/403752", "https://data.delijn.be/stops/403757"], ["https://data.delijn.be/stops/203820", "https://data.delijn.be/stops/203890"], ["https://data.delijn.be/stops/402669", "https://data.delijn.be/stops/410057"], ["https://data.delijn.be/stops/202011", "https://data.delijn.be/stops/203011"], ["https://data.delijn.be/stops/407492", "https://data.delijn.be/stops/407493"], ["https://data.delijn.be/stops/505555", "https://data.delijn.be/stops/505556"], ["https://data.delijn.be/stops/504436", "https://data.delijn.be/stops/509409"], ["https://data.delijn.be/stops/400704", "https://data.delijn.be/stops/400896"], ["https://data.delijn.be/stops/109176", "https://data.delijn.be/stops/109228"], ["https://data.delijn.be/stops/206800", "https://data.delijn.be/stops/208554"], ["https://data.delijn.be/stops/105039", "https://data.delijn.be/stops/305831"], ["https://data.delijn.be/stops/208358", "https://data.delijn.be/stops/208741"], ["https://data.delijn.be/stops/307471", "https://data.delijn.be/stops/308911"], ["https://data.delijn.be/stops/101400", "https://data.delijn.be/stops/101403"], ["https://data.delijn.be/stops/405839", "https://data.delijn.be/stops/409760"], ["https://data.delijn.be/stops/201644", "https://data.delijn.be/stops/203743"], ["https://data.delijn.be/stops/405817", "https://data.delijn.be/stops/409712"], ["https://data.delijn.be/stops/506271", "https://data.delijn.be/stops/506302"], ["https://data.delijn.be/stops/300573", "https://data.delijn.be/stops/300574"], ["https://data.delijn.be/stops/204350", "https://data.delijn.be/stops/205103"], ["https://data.delijn.be/stops/206696", "https://data.delijn.be/stops/206743"], ["https://data.delijn.be/stops/505083", "https://data.delijn.be/stops/508112"], ["https://data.delijn.be/stops/300516", "https://data.delijn.be/stops/300523"], ["https://data.delijn.be/stops/202892", "https://data.delijn.be/stops/203892"], ["https://data.delijn.be/stops/302638", "https://data.delijn.be/stops/308117"], ["https://data.delijn.be/stops/402507", "https://data.delijn.be/stops/405663"], ["https://data.delijn.be/stops/501633", "https://data.delijn.be/stops/506634"], ["https://data.delijn.be/stops/108551", "https://data.delijn.be/stops/109590"], ["https://data.delijn.be/stops/301458", "https://data.delijn.be/stops/301459"], ["https://data.delijn.be/stops/103094", "https://data.delijn.be/stops/108767"], ["https://data.delijn.be/stops/102024", "https://data.delijn.be/stops/109950"], ["https://data.delijn.be/stops/504653", "https://data.delijn.be/stops/509134"], ["https://data.delijn.be/stops/109322", "https://data.delijn.be/stops/109354"], ["https://data.delijn.be/stops/107202", "https://data.delijn.be/stops/107607"], ["https://data.delijn.be/stops/505838", "https://data.delijn.be/stops/509207"], ["https://data.delijn.be/stops/504242", "https://data.delijn.be/stops/504639"], ["https://data.delijn.be/stops/103759", "https://data.delijn.be/stops/103761"], ["https://data.delijn.be/stops/503727", "https://data.delijn.be/stops/509873"], ["https://data.delijn.be/stops/400916", "https://data.delijn.be/stops/400917"], ["https://data.delijn.be/stops/201494", "https://data.delijn.be/stops/203937"], ["https://data.delijn.be/stops/504233", "https://data.delijn.be/stops/504234"], ["https://data.delijn.be/stops/404061", "https://data.delijn.be/stops/406988"], ["https://data.delijn.be/stops/304254", "https://data.delijn.be/stops/304280"], ["https://data.delijn.be/stops/505227", "https://data.delijn.be/stops/507270"], ["https://data.delijn.be/stops/404713", "https://data.delijn.be/stops/404718"], ["https://data.delijn.be/stops/410202", "https://data.delijn.be/stops/410203"], ["https://data.delijn.be/stops/102521", "https://data.delijn.be/stops/108632"], ["https://data.delijn.be/stops/502523", "https://data.delijn.be/stops/507525"], ["https://data.delijn.be/stops/208364", "https://data.delijn.be/stops/209364"], ["https://data.delijn.be/stops/301745", "https://data.delijn.be/stops/305906"], ["https://data.delijn.be/stops/404784", "https://data.delijn.be/stops/404785"], ["https://data.delijn.be/stops/204076", "https://data.delijn.be/stops/204091"], ["https://data.delijn.be/stops/301547", "https://data.delijn.be/stops/301550"], ["https://data.delijn.be/stops/400602", "https://data.delijn.be/stops/400610"], ["https://data.delijn.be/stops/301743", "https://data.delijn.be/stops/301791"], ["https://data.delijn.be/stops/201681", "https://data.delijn.be/stops/202809"], ["https://data.delijn.be/stops/204434", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/105137", "https://data.delijn.be/stops/105138"], ["https://data.delijn.be/stops/406485", "https://data.delijn.be/stops/406489"], ["https://data.delijn.be/stops/301597", "https://data.delijn.be/stops/301600"], ["https://data.delijn.be/stops/108566", "https://data.delijn.be/stops/109092"], ["https://data.delijn.be/stops/204168", "https://data.delijn.be/stops/204581"], ["https://data.delijn.be/stops/300355", "https://data.delijn.be/stops/300362"], ["https://data.delijn.be/stops/104549", "https://data.delijn.be/stops/301932"], ["https://data.delijn.be/stops/402511", "https://data.delijn.be/stops/402519"], ["https://data.delijn.be/stops/302470", "https://data.delijn.be/stops/302487"], ["https://data.delijn.be/stops/407975", "https://data.delijn.be/stops/408243"], ["https://data.delijn.be/stops/401342", "https://data.delijn.be/stops/410207"], ["https://data.delijn.be/stops/506080", "https://data.delijn.be/stops/506646"], ["https://data.delijn.be/stops/209707", "https://data.delijn.be/stops/209970"], ["https://data.delijn.be/stops/409331", "https://data.delijn.be/stops/410285"], ["https://data.delijn.be/stops/200253", "https://data.delijn.be/stops/210024"], ["https://data.delijn.be/stops/202901", "https://data.delijn.be/stops/203900"], ["https://data.delijn.be/stops/101578", "https://data.delijn.be/stops/105458"], ["https://data.delijn.be/stops/106770", "https://data.delijn.be/stops/106772"], ["https://data.delijn.be/stops/503057", "https://data.delijn.be/stops/508057"], ["https://data.delijn.be/stops/503147", "https://data.delijn.be/stops/505644"], ["https://data.delijn.be/stops/400702", "https://data.delijn.be/stops/400804"], ["https://data.delijn.be/stops/405363", "https://data.delijn.be/stops/410018"], ["https://data.delijn.be/stops/102537", "https://data.delijn.be/stops/405750"], ["https://data.delijn.be/stops/403756", "https://data.delijn.be/stops/403761"], ["https://data.delijn.be/stops/305888", "https://data.delijn.be/stops/305905"], ["https://data.delijn.be/stops/303321", "https://data.delijn.be/stops/305724"], ["https://data.delijn.be/stops/201872", "https://data.delijn.be/stops/211033"], ["https://data.delijn.be/stops/300934", "https://data.delijn.be/stops/300983"], ["https://data.delijn.be/stops/504331", "https://data.delijn.be/stops/504333"], ["https://data.delijn.be/stops/104260", "https://data.delijn.be/stops/104265"], ["https://data.delijn.be/stops/209006", "https://data.delijn.be/stops/209097"], ["https://data.delijn.be/stops/200509", "https://data.delijn.be/stops/201406"], ["https://data.delijn.be/stops/505819", "https://data.delijn.be/stops/509268"], ["https://data.delijn.be/stops/403714", "https://data.delijn.be/stops/406889"], ["https://data.delijn.be/stops/304375", "https://data.delijn.be/stops/304376"], ["https://data.delijn.be/stops/403705", "https://data.delijn.be/stops/403730"], ["https://data.delijn.be/stops/206513", "https://data.delijn.be/stops/206517"], ["https://data.delijn.be/stops/404978", "https://data.delijn.be/stops/404980"], ["https://data.delijn.be/stops/206775", "https://data.delijn.be/stops/206799"], ["https://data.delijn.be/stops/502469", "https://data.delijn.be/stops/507469"], ["https://data.delijn.be/stops/501410", "https://data.delijn.be/stops/506409"], ["https://data.delijn.be/stops/403347", "https://data.delijn.be/stops/407040"], ["https://data.delijn.be/stops/204178", "https://data.delijn.be/stops/205178"], ["https://data.delijn.be/stops/109974", "https://data.delijn.be/stops/109975"], ["https://data.delijn.be/stops/102702", "https://data.delijn.be/stops/105551"], ["https://data.delijn.be/stops/107370", "https://data.delijn.be/stops/109055"], ["https://data.delijn.be/stops/103004", "https://data.delijn.be/stops/108187"], ["https://data.delijn.be/stops/200918", "https://data.delijn.be/stops/200956"], ["https://data.delijn.be/stops/405775", "https://data.delijn.be/stops/409759"], ["https://data.delijn.be/stops/109498", "https://data.delijn.be/stops/306809"], ["https://data.delijn.be/stops/404458", "https://data.delijn.be/stops/404467"], ["https://data.delijn.be/stops/202883", "https://data.delijn.be/stops/203883"], ["https://data.delijn.be/stops/301704", "https://data.delijn.be/stops/305230"], ["https://data.delijn.be/stops/202249", "https://data.delijn.be/stops/203045"], ["https://data.delijn.be/stops/208304", "https://data.delijn.be/stops/208306"], ["https://data.delijn.be/stops/301539", "https://data.delijn.be/stops/306961"], ["https://data.delijn.be/stops/405966", "https://data.delijn.be/stops/405967"], ["https://data.delijn.be/stops/306384", "https://data.delijn.be/stops/307217"], ["https://data.delijn.be/stops/300326", "https://data.delijn.be/stops/308991"], ["https://data.delijn.be/stops/203166", "https://data.delijn.be/stops/204833"], ["https://data.delijn.be/stops/302328", "https://data.delijn.be/stops/304824"], ["https://data.delijn.be/stops/204795", "https://data.delijn.be/stops/205076"], ["https://data.delijn.be/stops/503161", "https://data.delijn.be/stops/508659"], ["https://data.delijn.be/stops/404702", "https://data.delijn.be/stops/404711"], ["https://data.delijn.be/stops/405268", "https://data.delijn.be/stops/405269"], ["https://data.delijn.be/stops/405342", "https://data.delijn.be/stops/405343"], ["https://data.delijn.be/stops/205000", "https://data.delijn.be/stops/207725"], ["https://data.delijn.be/stops/101508", "https://data.delijn.be/stops/102668"], ["https://data.delijn.be/stops/200894", "https://data.delijn.be/stops/202331"], ["https://data.delijn.be/stops/502309", "https://data.delijn.be/stops/505673"], ["https://data.delijn.be/stops/302334", "https://data.delijn.be/stops/302771"], ["https://data.delijn.be/stops/101492", "https://data.delijn.be/stops/108304"], ["https://data.delijn.be/stops/206356", "https://data.delijn.be/stops/215809"], ["https://data.delijn.be/stops/409365", "https://data.delijn.be/stops/410252"], ["https://data.delijn.be/stops/200934", "https://data.delijn.be/stops/202090"], ["https://data.delijn.be/stops/202017", "https://data.delijn.be/stops/203657"], ["https://data.delijn.be/stops/108791", "https://data.delijn.be/stops/109549"], ["https://data.delijn.be/stops/101501", "https://data.delijn.be/stops/109345"], ["https://data.delijn.be/stops/403186", "https://data.delijn.be/stops/403829"], ["https://data.delijn.be/stops/206754", "https://data.delijn.be/stops/206803"], ["https://data.delijn.be/stops/301117", "https://data.delijn.be/stops/301132"], ["https://data.delijn.be/stops/204106", "https://data.delijn.be/stops/205159"], ["https://data.delijn.be/stops/108728", "https://data.delijn.be/stops/108731"], ["https://data.delijn.be/stops/306922", "https://data.delijn.be/stops/308731"], ["https://data.delijn.be/stops/307212", "https://data.delijn.be/stops/307218"], ["https://data.delijn.be/stops/106749", "https://data.delijn.be/stops/307235"], ["https://data.delijn.be/stops/400738", "https://data.delijn.be/stops/404261"], ["https://data.delijn.be/stops/502134", "https://data.delijn.be/stops/502644"], ["https://data.delijn.be/stops/300177", "https://data.delijn.be/stops/300632"], ["https://data.delijn.be/stops/103914", "https://data.delijn.be/stops/107795"], ["https://data.delijn.be/stops/304149", "https://data.delijn.be/stops/307558"], ["https://data.delijn.be/stops/202721", "https://data.delijn.be/stops/203088"], ["https://data.delijn.be/stops/305251", "https://data.delijn.be/stops/305253"], ["https://data.delijn.be/stops/107265", "https://data.delijn.be/stops/107266"], ["https://data.delijn.be/stops/200850", "https://data.delijn.be/stops/203791"], ["https://data.delijn.be/stops/201249", "https://data.delijn.be/stops/201450"], ["https://data.delijn.be/stops/106349", "https://data.delijn.be/stops/106351"], ["https://data.delijn.be/stops/400606", "https://data.delijn.be/stops/408676"], ["https://data.delijn.be/stops/503878", "https://data.delijn.be/stops/508876"], ["https://data.delijn.be/stops/106149", "https://data.delijn.be/stops/106155"], ["https://data.delijn.be/stops/204065", "https://data.delijn.be/stops/205065"], ["https://data.delijn.be/stops/102854", "https://data.delijn.be/stops/204623"], ["https://data.delijn.be/stops/308222", "https://data.delijn.be/stops/308279"], ["https://data.delijn.be/stops/503009", "https://data.delijn.be/stops/503016"], ["https://data.delijn.be/stops/101931", "https://data.delijn.be/stops/103671"], ["https://data.delijn.be/stops/201663", "https://data.delijn.be/stops/203319"], ["https://data.delijn.be/stops/307355", "https://data.delijn.be/stops/307366"], ["https://data.delijn.be/stops/506347", "https://data.delijn.be/stops/506357"], ["https://data.delijn.be/stops/305452", "https://data.delijn.be/stops/307775"], ["https://data.delijn.be/stops/300432", "https://data.delijn.be/stops/300440"], ["https://data.delijn.be/stops/101700", "https://data.delijn.be/stops/101725"], ["https://data.delijn.be/stops/107398", "https://data.delijn.be/stops/107405"], ["https://data.delijn.be/stops/202725", "https://data.delijn.be/stops/203065"], ["https://data.delijn.be/stops/405603", "https://data.delijn.be/stops/405609"], ["https://data.delijn.be/stops/301867", "https://data.delijn.be/stops/301870"], ["https://data.delijn.be/stops/101416", "https://data.delijn.be/stops/101554"], ["https://data.delijn.be/stops/300340", "https://data.delijn.be/stops/304444"], ["https://data.delijn.be/stops/501425", "https://data.delijn.be/stops/506424"], ["https://data.delijn.be/stops/102243", "https://data.delijn.be/stops/102246"], ["https://data.delijn.be/stops/503149", "https://data.delijn.be/stops/508149"], ["https://data.delijn.be/stops/201087", "https://data.delijn.be/stops/202771"], ["https://data.delijn.be/stops/200408", "https://data.delijn.be/stops/201307"], ["https://data.delijn.be/stops/302172", "https://data.delijn.be/stops/302173"], ["https://data.delijn.be/stops/208015", "https://data.delijn.be/stops/209015"], ["https://data.delijn.be/stops/508793", "https://data.delijn.be/stops/508797"], ["https://data.delijn.be/stops/401557", "https://data.delijn.be/stops/410198"], ["https://data.delijn.be/stops/401309", "https://data.delijn.be/stops/401315"], ["https://data.delijn.be/stops/104277", "https://data.delijn.be/stops/104306"], ["https://data.delijn.be/stops/200902", "https://data.delijn.be/stops/200903"], ["https://data.delijn.be/stops/101315", "https://data.delijn.be/stops/104112"], ["https://data.delijn.be/stops/107664", "https://data.delijn.be/stops/107666"], ["https://data.delijn.be/stops/505391", "https://data.delijn.be/stops/505392"], ["https://data.delijn.be/stops/203237", "https://data.delijn.be/stops/203238"], ["https://data.delijn.be/stops/503854", "https://data.delijn.be/stops/507945"], ["https://data.delijn.be/stops/201055", "https://data.delijn.be/stops/202522"], ["https://data.delijn.be/stops/406197", "https://data.delijn.be/stops/406895"], ["https://data.delijn.be/stops/104861", "https://data.delijn.be/stops/107882"], ["https://data.delijn.be/stops/501259", "https://data.delijn.be/stops/506258"], ["https://data.delijn.be/stops/401679", "https://data.delijn.be/stops/308168"], ["https://data.delijn.be/stops/208162", "https://data.delijn.be/stops/208424"], ["https://data.delijn.be/stops/408762", "https://data.delijn.be/stops/410150"], ["https://data.delijn.be/stops/407773", "https://data.delijn.be/stops/304367"], ["https://data.delijn.be/stops/401789", "https://data.delijn.be/stops/406031"], ["https://data.delijn.be/stops/503216", "https://data.delijn.be/stops/508216"], ["https://data.delijn.be/stops/408504", "https://data.delijn.be/stops/408508"], ["https://data.delijn.be/stops/504085", "https://data.delijn.be/stops/504779"], ["https://data.delijn.be/stops/501390", "https://data.delijn.be/stops/506390"], ["https://data.delijn.be/stops/104659", "https://data.delijn.be/stops/306758"], ["https://data.delijn.be/stops/206368", "https://data.delijn.be/stops/206369"], ["https://data.delijn.be/stops/202819", "https://data.delijn.be/stops/202910"], ["https://data.delijn.be/stops/101377", "https://data.delijn.be/stops/106534"], ["https://data.delijn.be/stops/409378", "https://data.delijn.be/stops/409379"], ["https://data.delijn.be/stops/401416", "https://data.delijn.be/stops/304705"], ["https://data.delijn.be/stops/102543", "https://data.delijn.be/stops/102548"], ["https://data.delijn.be/stops/208443", "https://data.delijn.be/stops/209443"], ["https://data.delijn.be/stops/108521", "https://data.delijn.be/stops/108523"], ["https://data.delijn.be/stops/407625", "https://data.delijn.be/stops/407626"], ["https://data.delijn.be/stops/400660", "https://data.delijn.be/stops/402539"], ["https://data.delijn.be/stops/103273", "https://data.delijn.be/stops/410346"], ["https://data.delijn.be/stops/109396", "https://data.delijn.be/stops/109405"], ["https://data.delijn.be/stops/103981", "https://data.delijn.be/stops/109941"], ["https://data.delijn.be/stops/501623", "https://data.delijn.be/stops/506597"], ["https://data.delijn.be/stops/501267", "https://data.delijn.be/stops/506400"], ["https://data.delijn.be/stops/307393", "https://data.delijn.be/stops/307394"], ["https://data.delijn.be/stops/502514", "https://data.delijn.be/stops/505337"], ["https://data.delijn.be/stops/408888", "https://data.delijn.be/stops/408902"], ["https://data.delijn.be/stops/403464", "https://data.delijn.be/stops/407774"], ["https://data.delijn.be/stops/503520", "https://data.delijn.be/stops/507688"], ["https://data.delijn.be/stops/101019", "https://data.delijn.be/stops/101134"], ["https://data.delijn.be/stops/302922", "https://data.delijn.be/stops/303073"], ["https://data.delijn.be/stops/204251", "https://data.delijn.be/stops/205732"], ["https://data.delijn.be/stops/403438", "https://data.delijn.be/stops/404580"], ["https://data.delijn.be/stops/404677", "https://data.delijn.be/stops/410135"], ["https://data.delijn.be/stops/202588", "https://data.delijn.be/stops/210087"], ["https://data.delijn.be/stops/206339", "https://data.delijn.be/stops/207339"], ["https://data.delijn.be/stops/106017", "https://data.delijn.be/stops/106754"], ["https://data.delijn.be/stops/301580", "https://data.delijn.be/stops/301586"], ["https://data.delijn.be/stops/506014", "https://data.delijn.be/stops/506615"], ["https://data.delijn.be/stops/209461", "https://data.delijn.be/stops/209467"], ["https://data.delijn.be/stops/300420", "https://data.delijn.be/stops/300438"], ["https://data.delijn.be/stops/505950", "https://data.delijn.be/stops/505951"], ["https://data.delijn.be/stops/300932", "https://data.delijn.be/stops/300988"], ["https://data.delijn.be/stops/107196", "https://data.delijn.be/stops/107198"], ["https://data.delijn.be/stops/501427", "https://data.delijn.be/stops/506427"], ["https://data.delijn.be/stops/404115", "https://data.delijn.be/stops/404117"], ["https://data.delijn.be/stops/303316", "https://data.delijn.be/stops/303317"], ["https://data.delijn.be/stops/502711", "https://data.delijn.be/stops/507711"], ["https://data.delijn.be/stops/410037", "https://data.delijn.be/stops/410038"], ["https://data.delijn.be/stops/107792", "https://data.delijn.be/stops/107793"], ["https://data.delijn.be/stops/505694", "https://data.delijn.be/stops/507546"], ["https://data.delijn.be/stops/204980", "https://data.delijn.be/stops/206821"], ["https://data.delijn.be/stops/103357", "https://data.delijn.be/stops/103762"], ["https://data.delijn.be/stops/208124", "https://data.delijn.be/stops/209124"], ["https://data.delijn.be/stops/102760", "https://data.delijn.be/stops/102770"], ["https://data.delijn.be/stops/405265", "https://data.delijn.be/stops/405275"], ["https://data.delijn.be/stops/406222", "https://data.delijn.be/stops/406432"], ["https://data.delijn.be/stops/401409", "https://data.delijn.be/stops/401410"], ["https://data.delijn.be/stops/405442", "https://data.delijn.be/stops/408510"], ["https://data.delijn.be/stops/300999", "https://data.delijn.be/stops/306049"], ["https://data.delijn.be/stops/200037", "https://data.delijn.be/stops/201276"], ["https://data.delijn.be/stops/208425", "https://data.delijn.be/stops/209425"], ["https://data.delijn.be/stops/408065", "https://data.delijn.be/stops/408086"], ["https://data.delijn.be/stops/305192", "https://data.delijn.be/stops/305195"], ["https://data.delijn.be/stops/404406", "https://data.delijn.be/stops/404408"], ["https://data.delijn.be/stops/101274", "https://data.delijn.be/stops/108755"], ["https://data.delijn.be/stops/208402", "https://data.delijn.be/stops/209411"], ["https://data.delijn.be/stops/202667", "https://data.delijn.be/stops/203667"], ["https://data.delijn.be/stops/502249", "https://data.delijn.be/stops/505223"], ["https://data.delijn.be/stops/403927", "https://data.delijn.be/stops/308751"], ["https://data.delijn.be/stops/403514", "https://data.delijn.be/stops/410215"], ["https://data.delijn.be/stops/201768", "https://data.delijn.be/stops/201817"], ["https://data.delijn.be/stops/208710", "https://data.delijn.be/stops/208835"], ["https://data.delijn.be/stops/502286", "https://data.delijn.be/stops/507287"], ["https://data.delijn.be/stops/502006", "https://data.delijn.be/stops/507010"], ["https://data.delijn.be/stops/208738", "https://data.delijn.be/stops/209737"], ["https://data.delijn.be/stops/502447", "https://data.delijn.be/stops/507461"], ["https://data.delijn.be/stops/504403", "https://data.delijn.be/stops/504442"], ["https://data.delijn.be/stops/403256", "https://data.delijn.be/stops/403414"], ["https://data.delijn.be/stops/401758", "https://data.delijn.be/stops/401759"], ["https://data.delijn.be/stops/504852", "https://data.delijn.be/stops/504853"], ["https://data.delijn.be/stops/102617", "https://data.delijn.be/stops/108207"], ["https://data.delijn.be/stops/204696", "https://data.delijn.be/stops/205697"], ["https://data.delijn.be/stops/107694", "https://data.delijn.be/stops/406771"], ["https://data.delijn.be/stops/101812", "https://data.delijn.be/stops/107981"], ["https://data.delijn.be/stops/402876", "https://data.delijn.be/stops/402878"], ["https://data.delijn.be/stops/407032", "https://data.delijn.be/stops/407061"], ["https://data.delijn.be/stops/103472", "https://data.delijn.be/stops/107429"], ["https://data.delijn.be/stops/401434", "https://data.delijn.be/stops/401501"], ["https://data.delijn.be/stops/201841", "https://data.delijn.be/stops/210019"], ["https://data.delijn.be/stops/407646", "https://data.delijn.be/stops/407720"], ["https://data.delijn.be/stops/405954", "https://data.delijn.be/stops/405958"], ["https://data.delijn.be/stops/407570", "https://data.delijn.be/stops/407571"], ["https://data.delijn.be/stops/204695", "https://data.delijn.be/stops/205101"], ["https://data.delijn.be/stops/305220", "https://data.delijn.be/stops/306632"], ["https://data.delijn.be/stops/304082", "https://data.delijn.be/stops/304083"], ["https://data.delijn.be/stops/206868", "https://data.delijn.be/stops/207131"], ["https://data.delijn.be/stops/507529", "https://data.delijn.be/stops/507530"], ["https://data.delijn.be/stops/303742", "https://data.delijn.be/stops/303743"], ["https://data.delijn.be/stops/207622", "https://data.delijn.be/stops/207869"], ["https://data.delijn.be/stops/300381", "https://data.delijn.be/stops/300468"], ["https://data.delijn.be/stops/501105", "https://data.delijn.be/stops/506224"], ["https://data.delijn.be/stops/103274", "https://data.delijn.be/stops/107608"], ["https://data.delijn.be/stops/206631", "https://data.delijn.be/stops/208569"], ["https://data.delijn.be/stops/200751", "https://data.delijn.be/stops/200768"], ["https://data.delijn.be/stops/200917", "https://data.delijn.be/stops/202043"], ["https://data.delijn.be/stops/405907", "https://data.delijn.be/stops/405928"], ["https://data.delijn.be/stops/102055", "https://data.delijn.be/stops/102065"], ["https://data.delijn.be/stops/300162", "https://data.delijn.be/stops/301208"], ["https://data.delijn.be/stops/402085", "https://data.delijn.be/stops/402216"], ["https://data.delijn.be/stops/305108", "https://data.delijn.be/stops/305119"], ["https://data.delijn.be/stops/200706", "https://data.delijn.be/stops/200736"], ["https://data.delijn.be/stops/103609", "https://data.delijn.be/stops/106313"], ["https://data.delijn.be/stops/101394", "https://data.delijn.be/stops/102989"], ["https://data.delijn.be/stops/504623", "https://data.delijn.be/stops/509623"], ["https://data.delijn.be/stops/401847", "https://data.delijn.be/stops/406238"], ["https://data.delijn.be/stops/208536", "https://data.delijn.be/stops/208537"], ["https://data.delijn.be/stops/101808", "https://data.delijn.be/stops/104042"], ["https://data.delijn.be/stops/109246", "https://data.delijn.be/stops/109260"], ["https://data.delijn.be/stops/504834", "https://data.delijn.be/stops/508482"], ["https://data.delijn.be/stops/108843", "https://data.delijn.be/stops/108853"], ["https://data.delijn.be/stops/101632", "https://data.delijn.be/stops/105354"], ["https://data.delijn.be/stops/206632", "https://data.delijn.be/stops/207636"], ["https://data.delijn.be/stops/503292", "https://data.delijn.be/stops/505257"], ["https://data.delijn.be/stops/108434", "https://data.delijn.be/stops/109572"], ["https://data.delijn.be/stops/501132", "https://data.delijn.be/stops/501139"], ["https://data.delijn.be/stops/400819", "https://data.delijn.be/stops/400873"], ["https://data.delijn.be/stops/303814", "https://data.delijn.be/stops/303820"], ["https://data.delijn.be/stops/305347", "https://data.delijn.be/stops/305356"], ["https://data.delijn.be/stops/108900", "https://data.delijn.be/stops/108905"], ["https://data.delijn.be/stops/504236", "https://data.delijn.be/stops/504239"], ["https://data.delijn.be/stops/206726", "https://data.delijn.be/stops/301612"], ["https://data.delijn.be/stops/504836", "https://data.delijn.be/stops/509149"], ["https://data.delijn.be/stops/504530", "https://data.delijn.be/stops/509196"], ["https://data.delijn.be/stops/103134", "https://data.delijn.be/stops/103136"], ["https://data.delijn.be/stops/208696", "https://data.delijn.be/stops/208714"], ["https://data.delijn.be/stops/507289", "https://data.delijn.be/stops/509893"], ["https://data.delijn.be/stops/200482", "https://data.delijn.be/stops/201482"], ["https://data.delijn.be/stops/108934", "https://data.delijn.be/stops/108936"], ["https://data.delijn.be/stops/503290", "https://data.delijn.be/stops/508290"], ["https://data.delijn.be/stops/105555", "https://data.delijn.be/stops/105560"], ["https://data.delijn.be/stops/509061", "https://data.delijn.be/stops/509062"], ["https://data.delijn.be/stops/402497", "https://data.delijn.be/stops/402498"], ["https://data.delijn.be/stops/405366", "https://data.delijn.be/stops/302844"], ["https://data.delijn.be/stops/207709", "https://data.delijn.be/stops/207741"], ["https://data.delijn.be/stops/200202", "https://data.delijn.be/stops/201202"], ["https://data.delijn.be/stops/201928", "https://data.delijn.be/stops/202523"], ["https://data.delijn.be/stops/304007", "https://data.delijn.be/stops/304025"], ["https://data.delijn.be/stops/301008", "https://data.delijn.be/stops/301011"], ["https://data.delijn.be/stops/505817", "https://data.delijn.be/stops/509012"], ["https://data.delijn.be/stops/105170", "https://data.delijn.be/stops/108255"], ["https://data.delijn.be/stops/108046", "https://data.delijn.be/stops/108049"], ["https://data.delijn.be/stops/204116", "https://data.delijn.be/stops/205109"], ["https://data.delijn.be/stops/409715", "https://data.delijn.be/stops/409718"], ["https://data.delijn.be/stops/200442", "https://data.delijn.be/stops/202133"], ["https://data.delijn.be/stops/307215", "https://data.delijn.be/stops/307473"], ["https://data.delijn.be/stops/204473", "https://data.delijn.be/stops/205473"], ["https://data.delijn.be/stops/208668", "https://data.delijn.be/stops/208672"], ["https://data.delijn.be/stops/405337", "https://data.delijn.be/stops/405347"], ["https://data.delijn.be/stops/308129", "https://data.delijn.be/stops/308875"], ["https://data.delijn.be/stops/306043", "https://data.delijn.be/stops/307100"], ["https://data.delijn.be/stops/208134", "https://data.delijn.be/stops/209138"], ["https://data.delijn.be/stops/102705", "https://data.delijn.be/stops/103775"], ["https://data.delijn.be/stops/404586", "https://data.delijn.be/stops/406904"], ["https://data.delijn.be/stops/503591", "https://data.delijn.be/stops/504891"], ["https://data.delijn.be/stops/200719", "https://data.delijn.be/stops/200737"], ["https://data.delijn.be/stops/406276", "https://data.delijn.be/stops/406350"], ["https://data.delijn.be/stops/308485", "https://data.delijn.be/stops/308491"], ["https://data.delijn.be/stops/400138", "https://data.delijn.be/stops/409164"], ["https://data.delijn.be/stops/402584", "https://data.delijn.be/stops/402585"], ["https://data.delijn.be/stops/306864", "https://data.delijn.be/stops/306865"], ["https://data.delijn.be/stops/209283", "https://data.delijn.be/stops/209284"], ["https://data.delijn.be/stops/401093", "https://data.delijn.be/stops/401129"], ["https://data.delijn.be/stops/203061", "https://data.delijn.be/stops/211016"], ["https://data.delijn.be/stops/305170", "https://data.delijn.be/stops/305178"], ["https://data.delijn.be/stops/105489", "https://data.delijn.be/stops/105494"], ["https://data.delijn.be/stops/106130", "https://data.delijn.be/stops/109372"], ["https://data.delijn.be/stops/404915", "https://data.delijn.be/stops/404922"], ["https://data.delijn.be/stops/206592", "https://data.delijn.be/stops/207949"], ["https://data.delijn.be/stops/106793", "https://data.delijn.be/stops/106797"], ["https://data.delijn.be/stops/304821", "https://data.delijn.be/stops/304822"], ["https://data.delijn.be/stops/104771", "https://data.delijn.be/stops/108147"], ["https://data.delijn.be/stops/402837", "https://data.delijn.be/stops/409009"], ["https://data.delijn.be/stops/406185", "https://data.delijn.be/stops/406191"], ["https://data.delijn.be/stops/300137", "https://data.delijn.be/stops/300141"], ["https://data.delijn.be/stops/208153", "https://data.delijn.be/stops/208521"], ["https://data.delijn.be/stops/206060", "https://data.delijn.be/stops/206061"], ["https://data.delijn.be/stops/507431", "https://data.delijn.be/stops/507622"], ["https://data.delijn.be/stops/107596", "https://data.delijn.be/stops/107664"], ["https://data.delijn.be/stops/200682", "https://data.delijn.be/stops/209653"], ["https://data.delijn.be/stops/304510", "https://data.delijn.be/stops/305266"], ["https://data.delijn.be/stops/304931", "https://data.delijn.be/stops/304962"], ["https://data.delijn.be/stops/407638", "https://data.delijn.be/stops/407642"], ["https://data.delijn.be/stops/201281", "https://data.delijn.be/stops/201336"], ["https://data.delijn.be/stops/206938", "https://data.delijn.be/stops/207938"], ["https://data.delijn.be/stops/300875", "https://data.delijn.be/stops/307233"], ["https://data.delijn.be/stops/204145", "https://data.delijn.be/stops/206635"], ["https://data.delijn.be/stops/307388", "https://data.delijn.be/stops/307393"], ["https://data.delijn.be/stops/503904", "https://data.delijn.be/stops/508904"], ["https://data.delijn.be/stops/200118", "https://data.delijn.be/stops/201118"], ["https://data.delijn.be/stops/503710", "https://data.delijn.be/stops/509979"], ["https://data.delijn.be/stops/306925", "https://data.delijn.be/stops/306929"], ["https://data.delijn.be/stops/200660", "https://data.delijn.be/stops/210053"], ["https://data.delijn.be/stops/504871", "https://data.delijn.be/stops/509871"], ["https://data.delijn.be/stops/504530", "https://data.delijn.be/stops/509523"], ["https://data.delijn.be/stops/104608", "https://data.delijn.be/stops/108463"], ["https://data.delijn.be/stops/302265", "https://data.delijn.be/stops/304345"], ["https://data.delijn.be/stops/105574", "https://data.delijn.be/stops/105578"], ["https://data.delijn.be/stops/502281", "https://data.delijn.be/stops/507284"], ["https://data.delijn.be/stops/401047", "https://data.delijn.be/stops/401128"], ["https://data.delijn.be/stops/203826", "https://data.delijn.be/stops/209263"], ["https://data.delijn.be/stops/206448", "https://data.delijn.be/stops/207161"], ["https://data.delijn.be/stops/205528", "https://data.delijn.be/stops/205632"], ["https://data.delijn.be/stops/407156", "https://data.delijn.be/stops/407157"], ["https://data.delijn.be/stops/306248", "https://data.delijn.be/stops/306249"], ["https://data.delijn.be/stops/501555", "https://data.delijn.be/stops/506556"], ["https://data.delijn.be/stops/400634", "https://data.delijn.be/stops/400635"], ["https://data.delijn.be/stops/105127", "https://data.delijn.be/stops/105128"], ["https://data.delijn.be/stops/103256", "https://data.delijn.be/stops/107705"], ["https://data.delijn.be/stops/305785", "https://data.delijn.be/stops/305787"], ["https://data.delijn.be/stops/206048", "https://data.delijn.be/stops/207298"], ["https://data.delijn.be/stops/503060", "https://data.delijn.be/stops/508062"], ["https://data.delijn.be/stops/505717", "https://data.delijn.be/stops/509580"], ["https://data.delijn.be/stops/105428", "https://data.delijn.be/stops/105429"], ["https://data.delijn.be/stops/400581", "https://data.delijn.be/stops/400635"], ["https://data.delijn.be/stops/207213", "https://data.delijn.be/stops/207924"], ["https://data.delijn.be/stops/201820", "https://data.delijn.be/stops/201821"], ["https://data.delijn.be/stops/109810", "https://data.delijn.be/stops/109811"], ["https://data.delijn.be/stops/408010", "https://data.delijn.be/stops/408150"], ["https://data.delijn.be/stops/107401", "https://data.delijn.be/stops/107402"], ["https://data.delijn.be/stops/204619", "https://data.delijn.be/stops/205552"], ["https://data.delijn.be/stops/203118", "https://data.delijn.be/stops/204773"], ["https://data.delijn.be/stops/407837", "https://data.delijn.be/stops/407843"], ["https://data.delijn.be/stops/107565", "https://data.delijn.be/stops/108160"], ["https://data.delijn.be/stops/101972", "https://data.delijn.be/stops/103329"], ["https://data.delijn.be/stops/504429", "https://data.delijn.be/stops/505785"], ["https://data.delijn.be/stops/304316", "https://data.delijn.be/stops/305234"], ["https://data.delijn.be/stops/404421", "https://data.delijn.be/stops/404475"], ["https://data.delijn.be/stops/301728", "https://data.delijn.be/stops/301740"], ["https://data.delijn.be/stops/102479", "https://data.delijn.be/stops/102482"], ["https://data.delijn.be/stops/202436", "https://data.delijn.be/stops/210088"], ["https://data.delijn.be/stops/106091", "https://data.delijn.be/stops/108610"], ["https://data.delijn.be/stops/304494", "https://data.delijn.be/stops/304518"], ["https://data.delijn.be/stops/303490", "https://data.delijn.be/stops/303505"], ["https://data.delijn.be/stops/404617", "https://data.delijn.be/stops/406945"], ["https://data.delijn.be/stops/301569", "https://data.delijn.be/stops/303679"], ["https://data.delijn.be/stops/108231", "https://data.delijn.be/stops/108727"], ["https://data.delijn.be/stops/103622", "https://data.delijn.be/stops/103679"], ["https://data.delijn.be/stops/304088", "https://data.delijn.be/stops/304112"], ["https://data.delijn.be/stops/508356", "https://data.delijn.be/stops/508384"], ["https://data.delijn.be/stops/402740", "https://data.delijn.be/stops/406913"], ["https://data.delijn.be/stops/504076", "https://data.delijn.be/stops/504693"], ["https://data.delijn.be/stops/303245", "https://data.delijn.be/stops/306749"], ["https://data.delijn.be/stops/406368", "https://data.delijn.be/stops/407721"], ["https://data.delijn.be/stops/109316", "https://data.delijn.be/stops/109317"], ["https://data.delijn.be/stops/406002", "https://data.delijn.be/stops/406035"], ["https://data.delijn.be/stops/103958", "https://data.delijn.be/stops/105715"], ["https://data.delijn.be/stops/202204", "https://data.delijn.be/stops/203204"], ["https://data.delijn.be/stops/406109", "https://data.delijn.be/stops/406113"], ["https://data.delijn.be/stops/102109", "https://data.delijn.be/stops/102824"], ["https://data.delijn.be/stops/501441", "https://data.delijn.be/stops/501513"], ["https://data.delijn.be/stops/202155", "https://data.delijn.be/stops/203155"], ["https://data.delijn.be/stops/102382", "https://data.delijn.be/stops/106356"], ["https://data.delijn.be/stops/401458", "https://data.delijn.be/stops/401459"], ["https://data.delijn.be/stops/403364", "https://data.delijn.be/stops/403365"], ["https://data.delijn.be/stops/302229", "https://data.delijn.be/stops/302238"], ["https://data.delijn.be/stops/308408", "https://data.delijn.be/stops/308409"], ["https://data.delijn.be/stops/207760", "https://data.delijn.be/stops/207774"], ["https://data.delijn.be/stops/105319", "https://data.delijn.be/stops/105321"], ["https://data.delijn.be/stops/307298", "https://data.delijn.be/stops/307321"], ["https://data.delijn.be/stops/304546", "https://data.delijn.be/stops/309669"], ["https://data.delijn.be/stops/105149", "https://data.delijn.be/stops/109523"], ["https://data.delijn.be/stops/308468", "https://data.delijn.be/stops/308471"], ["https://data.delijn.be/stops/401876", "https://data.delijn.be/stops/408469"], ["https://data.delijn.be/stops/504533", "https://data.delijn.be/stops/509377"], ["https://data.delijn.be/stops/103245", "https://data.delijn.be/stops/103256"], ["https://data.delijn.be/stops/404160", "https://data.delijn.be/stops/404178"], ["https://data.delijn.be/stops/503041", "https://data.delijn.be/stops/508680"], ["https://data.delijn.be/stops/105267", "https://data.delijn.be/stops/105287"], ["https://data.delijn.be/stops/104966", "https://data.delijn.be/stops/109215"], ["https://data.delijn.be/stops/405496", "https://data.delijn.be/stops/303316"], ["https://data.delijn.be/stops/201357", "https://data.delijn.be/stops/209662"], ["https://data.delijn.be/stops/304955", "https://data.delijn.be/stops/304967"], ["https://data.delijn.be/stops/303115", "https://data.delijn.be/stops/304222"], ["https://data.delijn.be/stops/403464", "https://data.delijn.be/stops/410248"], ["https://data.delijn.be/stops/209266", "https://data.delijn.be/stops/209271"], ["https://data.delijn.be/stops/107818", "https://data.delijn.be/stops/107821"], ["https://data.delijn.be/stops/509226", "https://data.delijn.be/stops/509228"], ["https://data.delijn.be/stops/102466", "https://data.delijn.be/stops/102469"], ["https://data.delijn.be/stops/101645", "https://data.delijn.be/stops/102424"], ["https://data.delijn.be/stops/103985", "https://data.delijn.be/stops/103990"], ["https://data.delijn.be/stops/504055", "https://data.delijn.be/stops/509055"], ["https://data.delijn.be/stops/400060", "https://data.delijn.be/stops/400101"], ["https://data.delijn.be/stops/208175", "https://data.delijn.be/stops/209174"], ["https://data.delijn.be/stops/402575", "https://data.delijn.be/stops/402616"], ["https://data.delijn.be/stops/202279", "https://data.delijn.be/stops/203279"], ["https://data.delijn.be/stops/501366", "https://data.delijn.be/stops/506366"], ["https://data.delijn.be/stops/306267", "https://data.delijn.be/stops/307327"], ["https://data.delijn.be/stops/308955", "https://data.delijn.be/stops/308956"], ["https://data.delijn.be/stops/503621", "https://data.delijn.be/stops/503656"], ["https://data.delijn.be/stops/301342", "https://data.delijn.be/stops/306121"], ["https://data.delijn.be/stops/405210", "https://data.delijn.be/stops/409645"], ["https://data.delijn.be/stops/200567", "https://data.delijn.be/stops/201112"], ["https://data.delijn.be/stops/405984", "https://data.delijn.be/stops/410213"], ["https://data.delijn.be/stops/505626", "https://data.delijn.be/stops/505749"], ["https://data.delijn.be/stops/210855", "https://data.delijn.be/stops/211855"], ["https://data.delijn.be/stops/200978", "https://data.delijn.be/stops/201979"], ["https://data.delijn.be/stops/102206", "https://data.delijn.be/stops/105817"], ["https://data.delijn.be/stops/101227", "https://data.delijn.be/stops/101546"], ["https://data.delijn.be/stops/406450", "https://data.delijn.be/stops/406496"], ["https://data.delijn.be/stops/303948", "https://data.delijn.be/stops/304178"], ["https://data.delijn.be/stops/203178", "https://data.delijn.be/stops/209867"], ["https://data.delijn.be/stops/504705", "https://data.delijn.be/stops/509498"], ["https://data.delijn.be/stops/202973", "https://data.delijn.be/stops/205076"], ["https://data.delijn.be/stops/407378", "https://data.delijn.be/stops/407379"], ["https://data.delijn.be/stops/303531", "https://data.delijn.be/stops/303540"], ["https://data.delijn.be/stops/406763", "https://data.delijn.be/stops/406766"], ["https://data.delijn.be/stops/202607", "https://data.delijn.be/stops/203574"], ["https://data.delijn.be/stops/508098", "https://data.delijn.be/stops/508099"], ["https://data.delijn.be/stops/505125", "https://data.delijn.be/stops/505126"], ["https://data.delijn.be/stops/301013", "https://data.delijn.be/stops/301014"], ["https://data.delijn.be/stops/202103", "https://data.delijn.be/stops/202262"], ["https://data.delijn.be/stops/301439", "https://data.delijn.be/stops/301673"], ["https://data.delijn.be/stops/403948", "https://data.delijn.be/stops/403950"], ["https://data.delijn.be/stops/105049", "https://data.delijn.be/stops/305835"], ["https://data.delijn.be/stops/102621", "https://data.delijn.be/stops/108209"], ["https://data.delijn.be/stops/304420", "https://data.delijn.be/stops/307397"], ["https://data.delijn.be/stops/502003", "https://data.delijn.be/stops/507007"], ["https://data.delijn.be/stops/301504", "https://data.delijn.be/stops/301523"], ["https://data.delijn.be/stops/300585", "https://data.delijn.be/stops/300621"], ["https://data.delijn.be/stops/404670", "https://data.delijn.be/stops/404686"], ["https://data.delijn.be/stops/403087", "https://data.delijn.be/stops/410398"], ["https://data.delijn.be/stops/403126", "https://data.delijn.be/stops/403293"], ["https://data.delijn.be/stops/202507", "https://data.delijn.be/stops/203506"], ["https://data.delijn.be/stops/202549", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/206665", "https://data.delijn.be/stops/206713"], ["https://data.delijn.be/stops/407685", "https://data.delijn.be/stops/407694"], ["https://data.delijn.be/stops/506305", "https://data.delijn.be/stops/506353"], ["https://data.delijn.be/stops/306899", "https://data.delijn.be/stops/306902"], ["https://data.delijn.be/stops/400508", "https://data.delijn.be/stops/400511"], ["https://data.delijn.be/stops/101383", "https://data.delijn.be/stops/101829"], ["https://data.delijn.be/stops/401563", "https://data.delijn.be/stops/401564"], ["https://data.delijn.be/stops/401208", "https://data.delijn.be/stops/401239"], ["https://data.delijn.be/stops/502314", "https://data.delijn.be/stops/507307"], ["https://data.delijn.be/stops/502652", "https://data.delijn.be/stops/502766"], ["https://data.delijn.be/stops/405977", "https://data.delijn.be/stops/405991"], ["https://data.delijn.be/stops/106858", "https://data.delijn.be/stops/106861"], ["https://data.delijn.be/stops/403680", "https://data.delijn.be/stops/403681"], ["https://data.delijn.be/stops/108399", "https://data.delijn.be/stops/108401"], ["https://data.delijn.be/stops/402626", "https://data.delijn.be/stops/405560"], ["https://data.delijn.be/stops/208340", "https://data.delijn.be/stops/219010"], ["https://data.delijn.be/stops/203403", "https://data.delijn.be/stops/210115"], ["https://data.delijn.be/stops/409583", "https://data.delijn.be/stops/409588"], ["https://data.delijn.be/stops/403628", "https://data.delijn.be/stops/404581"], ["https://data.delijn.be/stops/108432", "https://data.delijn.be/stops/108433"], ["https://data.delijn.be/stops/303493", "https://data.delijn.be/stops/303494"], ["https://data.delijn.be/stops/405186", "https://data.delijn.be/stops/405215"], ["https://data.delijn.be/stops/406195", "https://data.delijn.be/stops/410224"], ["https://data.delijn.be/stops/304838", "https://data.delijn.be/stops/304877"], ["https://data.delijn.be/stops/506113", "https://data.delijn.be/stops/506642"], ["https://data.delijn.be/stops/105422", "https://data.delijn.be/stops/105427"], ["https://data.delijn.be/stops/209106", "https://data.delijn.be/stops/209777"], ["https://data.delijn.be/stops/403744", "https://data.delijn.be/stops/403745"], ["https://data.delijn.be/stops/505422", "https://data.delijn.be/stops/509080"], ["https://data.delijn.be/stops/305510", "https://data.delijn.be/stops/305522"], ["https://data.delijn.be/stops/104508", "https://data.delijn.be/stops/308849"], ["https://data.delijn.be/stops/503554", "https://data.delijn.be/stops/508554"], ["https://data.delijn.be/stops/302935", "https://data.delijn.be/stops/303450"], ["https://data.delijn.be/stops/102532", "https://data.delijn.be/stops/405664"], ["https://data.delijn.be/stops/400796", "https://data.delijn.be/stops/400798"], ["https://data.delijn.be/stops/208278", "https://data.delijn.be/stops/208281"], ["https://data.delijn.be/stops/300744", "https://data.delijn.be/stops/300805"], ["https://data.delijn.be/stops/405934", "https://data.delijn.be/stops/405935"], ["https://data.delijn.be/stops/404696", "https://data.delijn.be/stops/407255"], ["https://data.delijn.be/stops/300541", "https://data.delijn.be/stops/304906"], ["https://data.delijn.be/stops/200273", "https://data.delijn.be/stops/201273"], ["https://data.delijn.be/stops/504024", "https://data.delijn.be/stops/504034"], ["https://data.delijn.be/stops/502509", "https://data.delijn.be/stops/507714"], ["https://data.delijn.be/stops/404596", "https://data.delijn.be/stops/406951"], ["https://data.delijn.be/stops/305258", "https://data.delijn.be/stops/305892"], ["https://data.delijn.be/stops/200165", "https://data.delijn.be/stops/201166"], ["https://data.delijn.be/stops/205039", "https://data.delijn.be/stops/205040"], ["https://data.delijn.be/stops/107963", "https://data.delijn.be/stops/107964"], ["https://data.delijn.be/stops/302106", "https://data.delijn.be/stops/302108"], ["https://data.delijn.be/stops/104021", "https://data.delijn.be/stops/107213"], ["https://data.delijn.be/stops/500009", "https://data.delijn.be/stops/501692"], ["https://data.delijn.be/stops/501081", "https://data.delijn.be/stops/501082"], ["https://data.delijn.be/stops/207435", "https://data.delijn.be/stops/207436"], ["https://data.delijn.be/stops/203188", "https://data.delijn.be/stops/203616"], ["https://data.delijn.be/stops/303993", "https://data.delijn.be/stops/304851"], ["https://data.delijn.be/stops/104394", "https://data.delijn.be/stops/105083"], ["https://data.delijn.be/stops/202535", "https://data.delijn.be/stops/203534"], ["https://data.delijn.be/stops/405046", "https://data.delijn.be/stops/405756"], ["https://data.delijn.be/stops/208686", "https://data.delijn.be/stops/208687"], ["https://data.delijn.be/stops/404973", "https://data.delijn.be/stops/404975"], ["https://data.delijn.be/stops/205260", "https://data.delijn.be/stops/205261"], ["https://data.delijn.be/stops/402943", "https://data.delijn.be/stops/407299"], ["https://data.delijn.be/stops/208338", "https://data.delijn.be/stops/209376"], ["https://data.delijn.be/stops/206235", "https://data.delijn.be/stops/207235"], ["https://data.delijn.be/stops/305623", "https://data.delijn.be/stops/307269"], ["https://data.delijn.be/stops/304297", "https://data.delijn.be/stops/306826"], ["https://data.delijn.be/stops/304472", "https://data.delijn.be/stops/304473"], ["https://data.delijn.be/stops/108824", "https://data.delijn.be/stops/108825"], ["https://data.delijn.be/stops/104949", "https://data.delijn.be/stops/400430"], ["https://data.delijn.be/stops/308058", "https://data.delijn.be/stops/308059"], ["https://data.delijn.be/stops/504277", "https://data.delijn.be/stops/509277"], ["https://data.delijn.be/stops/301963", "https://data.delijn.be/stops/301988"], ["https://data.delijn.be/stops/204080", "https://data.delijn.be/stops/204202"], ["https://data.delijn.be/stops/206785", "https://data.delijn.be/stops/307316"], ["https://data.delijn.be/stops/406404", "https://data.delijn.be/stops/409778"], ["https://data.delijn.be/stops/101812", "https://data.delijn.be/stops/104639"], ["https://data.delijn.be/stops/204985", "https://data.delijn.be/stops/209351"], ["https://data.delijn.be/stops/503512", "https://data.delijn.be/stops/508512"], ["https://data.delijn.be/stops/301180", "https://data.delijn.be/stops/301260"], ["https://data.delijn.be/stops/200928", "https://data.delijn.be/stops/202137"], ["https://data.delijn.be/stops/109663", "https://data.delijn.be/stops/109668"], ["https://data.delijn.be/stops/400790", "https://data.delijn.be/stops/400889"], ["https://data.delijn.be/stops/400516", "https://data.delijn.be/stops/400517"], ["https://data.delijn.be/stops/106482", "https://data.delijn.be/stops/106483"], ["https://data.delijn.be/stops/204480", "https://data.delijn.be/stops/205420"], ["https://data.delijn.be/stops/303755", "https://data.delijn.be/stops/303764"], ["https://data.delijn.be/stops/504252", "https://data.delijn.be/stops/509365"], ["https://data.delijn.be/stops/208673", "https://data.delijn.be/stops/209444"], ["https://data.delijn.be/stops/408251", "https://data.delijn.be/stops/408305"], ["https://data.delijn.be/stops/202200", "https://data.delijn.be/stops/203200"], ["https://data.delijn.be/stops/102420", "https://data.delijn.be/stops/105410"], ["https://data.delijn.be/stops/207226", "https://data.delijn.be/stops/300187"], ["https://data.delijn.be/stops/206859", "https://data.delijn.be/stops/207559"], ["https://data.delijn.be/stops/304240", "https://data.delijn.be/stops/304488"], ["https://data.delijn.be/stops/203084", "https://data.delijn.be/stops/203085"], ["https://data.delijn.be/stops/500127", "https://data.delijn.be/stops/507479"], ["https://data.delijn.be/stops/204380", "https://data.delijn.be/stops/205763"], ["https://data.delijn.be/stops/503963", "https://data.delijn.be/stops/509886"], ["https://data.delijn.be/stops/108188", "https://data.delijn.be/stops/108206"], ["https://data.delijn.be/stops/503378", "https://data.delijn.be/stops/504763"], ["https://data.delijn.be/stops/301770", "https://data.delijn.be/stops/301775"], ["https://data.delijn.be/stops/103056", "https://data.delijn.be/stops/107179"], ["https://data.delijn.be/stops/302414", "https://data.delijn.be/stops/302415"], ["https://data.delijn.be/stops/408027", "https://data.delijn.be/stops/408029"], ["https://data.delijn.be/stops/503963", "https://data.delijn.be/stops/508124"], ["https://data.delijn.be/stops/201161", "https://data.delijn.be/stops/201313"], ["https://data.delijn.be/stops/410078", "https://data.delijn.be/stops/410079"], ["https://data.delijn.be/stops/401783", "https://data.delijn.be/stops/410357"], ["https://data.delijn.be/stops/106450", "https://data.delijn.be/stops/106452"], ["https://data.delijn.be/stops/508298", "https://data.delijn.be/stops/508301"], ["https://data.delijn.be/stops/208441", "https://data.delijn.be/stops/209440"], ["https://data.delijn.be/stops/102986", "https://data.delijn.be/stops/102987"], ["https://data.delijn.be/stops/107145", "https://data.delijn.be/stops/107315"], ["https://data.delijn.be/stops/210011", "https://data.delijn.be/stops/211011"], ["https://data.delijn.be/stops/209598", "https://data.delijn.be/stops/307334"], ["https://data.delijn.be/stops/200231", "https://data.delijn.be/stops/201231"], ["https://data.delijn.be/stops/303836", "https://data.delijn.be/stops/306835"], ["https://data.delijn.be/stops/505331", "https://data.delijn.be/stops/505767"], ["https://data.delijn.be/stops/104515", "https://data.delijn.be/stops/107797"], ["https://data.delijn.be/stops/407624", "https://data.delijn.be/stops/407691"], ["https://data.delijn.be/stops/102179", "https://data.delijn.be/stops/102765"], ["https://data.delijn.be/stops/507558", "https://data.delijn.be/stops/509892"], ["https://data.delijn.be/stops/403438", "https://data.delijn.be/stops/403448"], ["https://data.delijn.be/stops/204216", "https://data.delijn.be/stops/205216"], ["https://data.delijn.be/stops/302946", "https://data.delijn.be/stops/303022"], ["https://data.delijn.be/stops/406939", "https://data.delijn.be/stops/407285"], ["https://data.delijn.be/stops/103968", "https://data.delijn.be/stops/105764"], ["https://data.delijn.be/stops/101809", "https://data.delijn.be/stops/108107"], ["https://data.delijn.be/stops/405705", "https://data.delijn.be/stops/408904"], ["https://data.delijn.be/stops/405426", "https://data.delijn.be/stops/409303"], ["https://data.delijn.be/stops/200039", "https://data.delijn.be/stops/204100"], ["https://data.delijn.be/stops/200492", "https://data.delijn.be/stops/201131"], ["https://data.delijn.be/stops/201724", "https://data.delijn.be/stops/203377"], ["https://data.delijn.be/stops/101514", "https://data.delijn.be/stops/109375"], ["https://data.delijn.be/stops/202116", "https://data.delijn.be/stops/205832"], ["https://data.delijn.be/stops/101387", "https://data.delijn.be/stops/101393"], ["https://data.delijn.be/stops/304409", "https://data.delijn.be/stops/304416"], ["https://data.delijn.be/stops/207458", "https://data.delijn.be/stops/207823"], ["https://data.delijn.be/stops/502336", "https://data.delijn.be/stops/507658"], ["https://data.delijn.be/stops/307649", "https://data.delijn.be/stops/307692"], ["https://data.delijn.be/stops/503562", "https://data.delijn.be/stops/508550"], ["https://data.delijn.be/stops/206159", "https://data.delijn.be/stops/207507"], ["https://data.delijn.be/stops/102443", "https://data.delijn.be/stops/102840"], ["https://data.delijn.be/stops/200191", "https://data.delijn.be/stops/201191"], ["https://data.delijn.be/stops/403766", "https://data.delijn.be/stops/407882"], ["https://data.delijn.be/stops/107842", "https://data.delijn.be/stops/107843"], ["https://data.delijn.be/stops/204107", "https://data.delijn.be/stops/205107"], ["https://data.delijn.be/stops/404335", "https://data.delijn.be/stops/404384"], ["https://data.delijn.be/stops/504891", "https://data.delijn.be/stops/505091"], ["https://data.delijn.be/stops/104908", "https://data.delijn.be/stops/107849"], ["https://data.delijn.be/stops/304957", "https://data.delijn.be/stops/304972"], ["https://data.delijn.be/stops/502070", "https://data.delijn.be/stops/502072"], ["https://data.delijn.be/stops/504463", "https://data.delijn.be/stops/509463"], ["https://data.delijn.be/stops/505069", "https://data.delijn.be/stops/505655"], ["https://data.delijn.be/stops/505231", "https://data.delijn.be/stops/505330"], ["https://data.delijn.be/stops/505806", "https://data.delijn.be/stops/508597"], ["https://data.delijn.be/stops/104022", "https://data.delijn.be/stops/109885"], ["https://data.delijn.be/stops/202820", "https://data.delijn.be/stops/202890"], ["https://data.delijn.be/stops/102606", "https://data.delijn.be/stops/106834"], ["https://data.delijn.be/stops/302830", "https://data.delijn.be/stops/302855"], ["https://data.delijn.be/stops/403052", "https://data.delijn.be/stops/403090"], ["https://data.delijn.be/stops/208693", "https://data.delijn.be/stops/208725"], ["https://data.delijn.be/stops/403407", "https://data.delijn.be/stops/403417"], ["https://data.delijn.be/stops/306614", "https://data.delijn.be/stops/306615"], ["https://data.delijn.be/stops/105761", "https://data.delijn.be/stops/105762"], ["https://data.delijn.be/stops/404137", "https://data.delijn.be/stops/404178"], ["https://data.delijn.be/stops/202633", "https://data.delijn.be/stops/203632"], ["https://data.delijn.be/stops/206873", "https://data.delijn.be/stops/207285"], ["https://data.delijn.be/stops/201869", "https://data.delijn.be/stops/203015"], ["https://data.delijn.be/stops/105746", "https://data.delijn.be/stops/109831"], ["https://data.delijn.be/stops/106278", "https://data.delijn.be/stops/109909"], ["https://data.delijn.be/stops/102076", "https://data.delijn.be/stops/102077"], ["https://data.delijn.be/stops/301810", "https://data.delijn.be/stops/304679"], ["https://data.delijn.be/stops/107569", "https://data.delijn.be/stops/107570"], ["https://data.delijn.be/stops/400787", "https://data.delijn.be/stops/409588"], ["https://data.delijn.be/stops/101799", "https://data.delijn.be/stops/300671"], ["https://data.delijn.be/stops/501510", "https://data.delijn.be/stops/501531"], ["https://data.delijn.be/stops/503380", "https://data.delijn.be/stops/508380"], ["https://data.delijn.be/stops/209667", "https://data.delijn.be/stops/209670"], ["https://data.delijn.be/stops/106845", "https://data.delijn.be/stops/106851"], ["https://data.delijn.be/stops/109535", "https://data.delijn.be/stops/109589"], ["https://data.delijn.be/stops/208234", "https://data.delijn.be/stops/208797"], ["https://data.delijn.be/stops/201699", "https://data.delijn.be/stops/202782"], ["https://data.delijn.be/stops/307535", "https://data.delijn.be/stops/307538"], ["https://data.delijn.be/stops/305494", "https://data.delijn.be/stops/307877"], ["https://data.delijn.be/stops/404123", "https://data.delijn.be/stops/404129"], ["https://data.delijn.be/stops/304336", "https://data.delijn.be/stops/305219"], ["https://data.delijn.be/stops/504429", "https://data.delijn.be/stops/509418"], ["https://data.delijn.be/stops/201926", "https://data.delijn.be/stops/207750"], ["https://data.delijn.be/stops/106582", "https://data.delijn.be/stops/107387"], ["https://data.delijn.be/stops/504377", "https://data.delijn.be/stops/509377"], ["https://data.delijn.be/stops/504776", "https://data.delijn.be/stops/505714"], ["https://data.delijn.be/stops/304288", "https://data.delijn.be/stops/305493"], ["https://data.delijn.be/stops/305727", "https://data.delijn.be/stops/305728"], ["https://data.delijn.be/stops/103122", "https://data.delijn.be/stops/104369"], ["https://data.delijn.be/stops/305966", "https://data.delijn.be/stops/308138"], ["https://data.delijn.be/stops/105188", "https://data.delijn.be/stops/105189"], ["https://data.delijn.be/stops/102603", "https://data.delijn.be/stops/303882"], ["https://data.delijn.be/stops/202599", "https://data.delijn.be/stops/203125"], ["https://data.delijn.be/stops/209445", "https://data.delijn.be/stops/209446"], ["https://data.delijn.be/stops/109510", "https://data.delijn.be/stops/109511"], ["https://data.delijn.be/stops/206348", "https://data.delijn.be/stops/215809"], ["https://data.delijn.be/stops/207260", "https://data.delijn.be/stops/207319"], ["https://data.delijn.be/stops/301717", "https://data.delijn.be/stops/301760"], ["https://data.delijn.be/stops/403690", "https://data.delijn.be/stops/409286"], ["https://data.delijn.be/stops/300956", "https://data.delijn.be/stops/304535"], ["https://data.delijn.be/stops/308223", "https://data.delijn.be/stops/308288"], ["https://data.delijn.be/stops/400248", "https://data.delijn.be/stops/400925"], ["https://data.delijn.be/stops/207096", "https://data.delijn.be/stops/207908"], ["https://data.delijn.be/stops/205196", "https://data.delijn.be/stops/205197"], ["https://data.delijn.be/stops/407962", "https://data.delijn.be/stops/407967"], ["https://data.delijn.be/stops/301929", "https://data.delijn.be/stops/304493"], ["https://data.delijn.be/stops/202872", "https://data.delijn.be/stops/203080"], ["https://data.delijn.be/stops/303043", "https://data.delijn.be/stops/303104"], ["https://data.delijn.be/stops/506598", "https://data.delijn.be/stops/506612"], ["https://data.delijn.be/stops/301925", "https://data.delijn.be/stops/306159"], ["https://data.delijn.be/stops/206727", "https://data.delijn.be/stops/206736"], ["https://data.delijn.be/stops/304866", "https://data.delijn.be/stops/306172"], ["https://data.delijn.be/stops/101477", "https://data.delijn.be/stops/108736"], ["https://data.delijn.be/stops/305221", "https://data.delijn.be/stops/305893"], ["https://data.delijn.be/stops/401724", "https://data.delijn.be/stops/405462"], ["https://data.delijn.be/stops/304042", "https://data.delijn.be/stops/305836"], ["https://data.delijn.be/stops/308163", "https://data.delijn.be/stops/308227"], ["https://data.delijn.be/stops/200607", "https://data.delijn.be/stops/503642"], ["https://data.delijn.be/stops/502462", "https://data.delijn.be/stops/502581"], ["https://data.delijn.be/stops/505203", "https://data.delijn.be/stops/505764"], ["https://data.delijn.be/stops/108891", "https://data.delijn.be/stops/108892"], ["https://data.delijn.be/stops/304689", "https://data.delijn.be/stops/306686"], ["https://data.delijn.be/stops/400710", "https://data.delijn.be/stops/400712"], ["https://data.delijn.be/stops/508726", "https://data.delijn.be/stops/509965"], ["https://data.delijn.be/stops/408908", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/108889", "https://data.delijn.be/stops/108890"], ["https://data.delijn.be/stops/302262", "https://data.delijn.be/stops/306374"], ["https://data.delijn.be/stops/303282", "https://data.delijn.be/stops/303290"], ["https://data.delijn.be/stops/107559", "https://data.delijn.be/stops/109436"], ["https://data.delijn.be/stops/304865", "https://data.delijn.be/stops/308527"], ["https://data.delijn.be/stops/301246", "https://data.delijn.be/stops/308670"], ["https://data.delijn.be/stops/202541", "https://data.delijn.be/stops/209450"], ["https://data.delijn.be/stops/402755", "https://data.delijn.be/stops/408214"], ["https://data.delijn.be/stops/300797", "https://data.delijn.be/stops/304774"], ["https://data.delijn.be/stops/506112", "https://data.delijn.be/stops/506225"], ["https://data.delijn.be/stops/200187", "https://data.delijn.be/stops/201181"], ["https://data.delijn.be/stops/405168", "https://data.delijn.be/stops/405174"], ["https://data.delijn.be/stops/104814", "https://data.delijn.be/stops/105162"], ["https://data.delijn.be/stops/304656", "https://data.delijn.be/stops/304657"], ["https://data.delijn.be/stops/204769", "https://data.delijn.be/stops/205402"], ["https://data.delijn.be/stops/502762", "https://data.delijn.be/stops/507762"], ["https://data.delijn.be/stops/304619", "https://data.delijn.be/stops/304622"], ["https://data.delijn.be/stops/408638", "https://data.delijn.be/stops/307055"], ["https://data.delijn.be/stops/407234", "https://data.delijn.be/stops/407509"], ["https://data.delijn.be/stops/406264", "https://data.delijn.be/stops/406432"], ["https://data.delijn.be/stops/404653", "https://data.delijn.be/stops/404676"], ["https://data.delijn.be/stops/101851", "https://data.delijn.be/stops/107232"], ["https://data.delijn.be/stops/206646", "https://data.delijn.be/stops/207491"], ["https://data.delijn.be/stops/405771", "https://data.delijn.be/stops/405833"], ["https://data.delijn.be/stops/201071", "https://data.delijn.be/stops/211046"], ["https://data.delijn.be/stops/400304", "https://data.delijn.be/stops/400959"], ["https://data.delijn.be/stops/304024", "https://data.delijn.be/stops/304825"], ["https://data.delijn.be/stops/206905", "https://data.delijn.be/stops/207038"], ["https://data.delijn.be/stops/109308", "https://data.delijn.be/stops/109655"], ["https://data.delijn.be/stops/203177", "https://data.delijn.be/stops/209867"], ["https://data.delijn.be/stops/301159", "https://data.delijn.be/stops/301168"], ["https://data.delijn.be/stops/507239", "https://data.delijn.be/stops/507654"], ["https://data.delijn.be/stops/101918", "https://data.delijn.be/stops/106999"], ["https://data.delijn.be/stops/302320", "https://data.delijn.be/stops/303512"], ["https://data.delijn.be/stops/206296", "https://data.delijn.be/stops/207673"], ["https://data.delijn.be/stops/502605", "https://data.delijn.be/stops/507072"], ["https://data.delijn.be/stops/505222", "https://data.delijn.be/stops/507006"], ["https://data.delijn.be/stops/401831", "https://data.delijn.be/stops/406015"], ["https://data.delijn.be/stops/206190", "https://data.delijn.be/stops/308570"], ["https://data.delijn.be/stops/301645", "https://data.delijn.be/stops/301666"], ["https://data.delijn.be/stops/101078", "https://data.delijn.be/stops/107140"], ["https://data.delijn.be/stops/204085", "https://data.delijn.be/stops/205410"], ["https://data.delijn.be/stops/201696", "https://data.delijn.be/stops/202389"], ["https://data.delijn.be/stops/101677", "https://data.delijn.be/stops/102753"], ["https://data.delijn.be/stops/503104", "https://data.delijn.be/stops/508104"], ["https://data.delijn.be/stops/407928", "https://data.delijn.be/stops/407929"], ["https://data.delijn.be/stops/407083", "https://data.delijn.be/stops/407913"], ["https://data.delijn.be/stops/104384", "https://data.delijn.be/stops/105115"], ["https://data.delijn.be/stops/202935", "https://data.delijn.be/stops/203776"], ["https://data.delijn.be/stops/206570", "https://data.delijn.be/stops/207561"], ["https://data.delijn.be/stops/202104", "https://data.delijn.be/stops/202106"], ["https://data.delijn.be/stops/503158", "https://data.delijn.be/stops/503166"], ["https://data.delijn.be/stops/402656", "https://data.delijn.be/stops/402707"], ["https://data.delijn.be/stops/500115", "https://data.delijn.be/stops/502392"], ["https://data.delijn.be/stops/201881", "https://data.delijn.be/stops/203277"], ["https://data.delijn.be/stops/108872", "https://data.delijn.be/stops/109509"], ["https://data.delijn.be/stops/300106", "https://data.delijn.be/stops/307731"], ["https://data.delijn.be/stops/404300", "https://data.delijn.be/stops/404301"], ["https://data.delijn.be/stops/202719", "https://data.delijn.be/stops/210087"], ["https://data.delijn.be/stops/104601", "https://data.delijn.be/stops/106840"], ["https://data.delijn.be/stops/408492", "https://data.delijn.be/stops/408950"], ["https://data.delijn.be/stops/108106", "https://data.delijn.be/stops/108107"], ["https://data.delijn.be/stops/103013", "https://data.delijn.be/stops/109375"], ["https://data.delijn.be/stops/200163", "https://data.delijn.be/stops/201163"], ["https://data.delijn.be/stops/508050", "https://data.delijn.be/stops/508051"], ["https://data.delijn.be/stops/508902", "https://data.delijn.be/stops/508904"], ["https://data.delijn.be/stops/207695", "https://data.delijn.be/stops/207873"], ["https://data.delijn.be/stops/508191", "https://data.delijn.be/stops/508192"], ["https://data.delijn.be/stops/403220", "https://data.delijn.be/stops/403222"], ["https://data.delijn.be/stops/401580", "https://data.delijn.be/stops/408469"], ["https://data.delijn.be/stops/303668", "https://data.delijn.be/stops/308903"], ["https://data.delijn.be/stops/201933", "https://data.delijn.be/stops/206569"], ["https://data.delijn.be/stops/208064", "https://data.delijn.be/stops/209064"], ["https://data.delijn.be/stops/101849", "https://data.delijn.be/stops/107231"], ["https://data.delijn.be/stops/101130", "https://data.delijn.be/stops/102505"], ["https://data.delijn.be/stops/207798", "https://data.delijn.be/stops/208757"], ["https://data.delijn.be/stops/403683", "https://data.delijn.be/stops/405124"], ["https://data.delijn.be/stops/302075", "https://data.delijn.be/stops/302276"], ["https://data.delijn.be/stops/501485", "https://data.delijn.be/stops/501486"], ["https://data.delijn.be/stops/201515", "https://data.delijn.be/stops/201533"], ["https://data.delijn.be/stops/503592", "https://data.delijn.be/stops/507484"], ["https://data.delijn.be/stops/308214", "https://data.delijn.be/stops/308236"], ["https://data.delijn.be/stops/305166", "https://data.delijn.be/stops/305206"], ["https://data.delijn.be/stops/102158", "https://data.delijn.be/stops/107539"], ["https://data.delijn.be/stops/406578", "https://data.delijn.be/stops/410203"], ["https://data.delijn.be/stops/405807", "https://data.delijn.be/stops/406729"], ["https://data.delijn.be/stops/400846", "https://data.delijn.be/stops/410393"], ["https://data.delijn.be/stops/109203", "https://data.delijn.be/stops/109211"], ["https://data.delijn.be/stops/401345", "https://data.delijn.be/stops/406060"], ["https://data.delijn.be/stops/407888", "https://data.delijn.be/stops/408188"], ["https://data.delijn.be/stops/301354", "https://data.delijn.be/stops/304525"], ["https://data.delijn.be/stops/401432", "https://data.delijn.be/stops/401495"], ["https://data.delijn.be/stops/101468", "https://data.delijn.be/stops/101469"], ["https://data.delijn.be/stops/503653", "https://data.delijn.be/stops/505117"], ["https://data.delijn.be/stops/206866", "https://data.delijn.be/stops/208383"], ["https://data.delijn.be/stops/401105", "https://data.delijn.be/stops/401115"], ["https://data.delijn.be/stops/307114", "https://data.delijn.be/stops/307806"], ["https://data.delijn.be/stops/303435", "https://data.delijn.be/stops/307950"], ["https://data.delijn.be/stops/504464", "https://data.delijn.be/stops/504571"], ["https://data.delijn.be/stops/504021", "https://data.delijn.be/stops/509021"], ["https://data.delijn.be/stops/401177", "https://data.delijn.be/stops/406659"], ["https://data.delijn.be/stops/404642", "https://data.delijn.be/stops/404995"], ["https://data.delijn.be/stops/205747", "https://data.delijn.be/stops/205757"], ["https://data.delijn.be/stops/406668", "https://data.delijn.be/stops/406986"], ["https://data.delijn.be/stops/401783", "https://data.delijn.be/stops/406351"], ["https://data.delijn.be/stops/101591", "https://data.delijn.be/stops/106051"], ["https://data.delijn.be/stops/109352", "https://data.delijn.be/stops/109354"], ["https://data.delijn.be/stops/405146", "https://data.delijn.be/stops/405288"], ["https://data.delijn.be/stops/300006", "https://data.delijn.be/stops/300008"], ["https://data.delijn.be/stops/509484", "https://data.delijn.be/stops/509488"], ["https://data.delijn.be/stops/303632", "https://data.delijn.be/stops/307252"], ["https://data.delijn.be/stops/106853", "https://data.delijn.be/stops/107463"], ["https://data.delijn.be/stops/507225", "https://data.delijn.be/stops/507232"], ["https://data.delijn.be/stops/105013", "https://data.delijn.be/stops/105108"], ["https://data.delijn.be/stops/408497", "https://data.delijn.be/stops/408610"], ["https://data.delijn.be/stops/503161", "https://data.delijn.be/stops/503659"], ["https://data.delijn.be/stops/106139", "https://data.delijn.be/stops/106142"], ["https://data.delijn.be/stops/405748", "https://data.delijn.be/stops/405765"], ["https://data.delijn.be/stops/202967", "https://data.delijn.be/stops/202968"], ["https://data.delijn.be/stops/304540", "https://data.delijn.be/stops/307575"], ["https://data.delijn.be/stops/301368", "https://data.delijn.be/stops/306134"], ["https://data.delijn.be/stops/506120", "https://data.delijn.be/stops/506403"], ["https://data.delijn.be/stops/401086", "https://data.delijn.be/stops/401097"], ["https://data.delijn.be/stops/405002", "https://data.delijn.be/stops/405044"], ["https://data.delijn.be/stops/301464", "https://data.delijn.be/stops/305659"], ["https://data.delijn.be/stops/106564", "https://data.delijn.be/stops/106566"], ["https://data.delijn.be/stops/409502", "https://data.delijn.be/stops/409506"], ["https://data.delijn.be/stops/200921", "https://data.delijn.be/stops/201957"], ["https://data.delijn.be/stops/102295", "https://data.delijn.be/stops/107475"], ["https://data.delijn.be/stops/502729", "https://data.delijn.be/stops/507087"], ["https://data.delijn.be/stops/406678", "https://data.delijn.be/stops/407159"], ["https://data.delijn.be/stops/207937", "https://data.delijn.be/stops/208713"], ["https://data.delijn.be/stops/503699", "https://data.delijn.be/stops/503922"], ["https://data.delijn.be/stops/401035", "https://data.delijn.be/stops/401038"], ["https://data.delijn.be/stops/404499", "https://data.delijn.be/stops/404568"], ["https://data.delijn.be/stops/301009", "https://data.delijn.be/stops/301010"], ["https://data.delijn.be/stops/202215", "https://data.delijn.be/stops/203224"], ["https://data.delijn.be/stops/508986", "https://data.delijn.be/stops/509867"], ["https://data.delijn.be/stops/502566", "https://data.delijn.be/stops/505704"], ["https://data.delijn.be/stops/505918", "https://data.delijn.be/stops/509232"], ["https://data.delijn.be/stops/307347", "https://data.delijn.be/stops/308448"], ["https://data.delijn.be/stops/507239", "https://data.delijn.be/stops/507242"], ["https://data.delijn.be/stops/502647", "https://data.delijn.be/stops/507205"], ["https://data.delijn.be/stops/206534", "https://data.delijn.be/stops/207534"], ["https://data.delijn.be/stops/504058", "https://data.delijn.be/stops/504062"], ["https://data.delijn.be/stops/204681", "https://data.delijn.be/stops/205681"], ["https://data.delijn.be/stops/306063", "https://data.delijn.be/stops/307716"], ["https://data.delijn.be/stops/502647", "https://data.delijn.be/stops/507631"], ["https://data.delijn.be/stops/301502", "https://data.delijn.be/stops/301508"], ["https://data.delijn.be/stops/208457", "https://data.delijn.be/stops/209458"], ["https://data.delijn.be/stops/401951", "https://data.delijn.be/stops/407525"], ["https://data.delijn.be/stops/305377", "https://data.delijn.be/stops/305384"], ["https://data.delijn.be/stops/400560", "https://data.delijn.be/stops/402963"], ["https://data.delijn.be/stops/307250", "https://data.delijn.be/stops/307251"], ["https://data.delijn.be/stops/505949", "https://data.delijn.be/stops/508284"], ["https://data.delijn.be/stops/404114", "https://data.delijn.be/stops/404116"], ["https://data.delijn.be/stops/404081", "https://data.delijn.be/stops/404086"], ["https://data.delijn.be/stops/300396", "https://data.delijn.be/stops/306198"], ["https://data.delijn.be/stops/107995", "https://data.delijn.be/stops/108000"], ["https://data.delijn.be/stops/403710", "https://data.delijn.be/stops/403722"], ["https://data.delijn.be/stops/206348", "https://data.delijn.be/stops/207373"], ["https://data.delijn.be/stops/305654", "https://data.delijn.be/stops/305657"], ["https://data.delijn.be/stops/405567", "https://data.delijn.be/stops/405575"], ["https://data.delijn.be/stops/109211", "https://data.delijn.be/stops/109213"], ["https://data.delijn.be/stops/101459", "https://data.delijn.be/stops/108224"], ["https://data.delijn.be/stops/101423", "https://data.delijn.be/stops/101424"], ["https://data.delijn.be/stops/101586", "https://data.delijn.be/stops/105447"], ["https://data.delijn.be/stops/501454", "https://data.delijn.be/stops/506454"], ["https://data.delijn.be/stops/401026", "https://data.delijn.be/stops/404866"], ["https://data.delijn.be/stops/205140", "https://data.delijn.be/stops/206638"], ["https://data.delijn.be/stops/206219", "https://data.delijn.be/stops/207184"], ["https://data.delijn.be/stops/405796", "https://data.delijn.be/stops/405797"], ["https://data.delijn.be/stops/300223", "https://data.delijn.be/stops/307464"], ["https://data.delijn.be/stops/404734", "https://data.delijn.be/stops/404740"], ["https://data.delijn.be/stops/307724", "https://data.delijn.be/stops/307727"], ["https://data.delijn.be/stops/305040", "https://data.delijn.be/stops/307849"], ["https://data.delijn.be/stops/204321", "https://data.delijn.be/stops/205321"], ["https://data.delijn.be/stops/303108", "https://data.delijn.be/stops/303117"], ["https://data.delijn.be/stops/200853", "https://data.delijn.be/stops/202305"], ["https://data.delijn.be/stops/206713", "https://data.delijn.be/stops/206719"], ["https://data.delijn.be/stops/402311", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/201538", "https://data.delijn.be/stops/210049"], ["https://data.delijn.be/stops/400583", "https://data.delijn.be/stops/400625"], ["https://data.delijn.be/stops/101528", "https://data.delijn.be/stops/109004"], ["https://data.delijn.be/stops/104591", "https://data.delijn.be/stops/108696"], ["https://data.delijn.be/stops/201548", "https://data.delijn.be/stops/211528"], ["https://data.delijn.be/stops/504638", "https://data.delijn.be/stops/505305"], ["https://data.delijn.be/stops/302296", "https://data.delijn.be/stops/307133"], ["https://data.delijn.be/stops/209081", "https://data.delijn.be/stops/209524"], ["https://data.delijn.be/stops/206495", "https://data.delijn.be/stops/207507"], ["https://data.delijn.be/stops/202709", "https://data.delijn.be/stops/202710"], ["https://data.delijn.be/stops/504091", "https://data.delijn.be/stops/505102"], ["https://data.delijn.be/stops/501675", "https://data.delijn.be/stops/502366"], ["https://data.delijn.be/stops/202948", "https://data.delijn.be/stops/203849"], ["https://data.delijn.be/stops/300344", "https://data.delijn.be/stops/300357"], ["https://data.delijn.be/stops/202102", "https://data.delijn.be/stops/210006"], ["https://data.delijn.be/stops/204382", "https://data.delijn.be/stops/205381"], ["https://data.delijn.be/stops/202243", "https://data.delijn.be/stops/203750"], ["https://data.delijn.be/stops/403930", "https://data.delijn.be/stops/404030"], ["https://data.delijn.be/stops/304596", "https://data.delijn.be/stops/304598"], ["https://data.delijn.be/stops/108756", "https://data.delijn.be/stops/108758"], ["https://data.delijn.be/stops/502621", "https://data.delijn.be/stops/507394"], ["https://data.delijn.be/stops/107437", "https://data.delijn.be/stops/107439"], ["https://data.delijn.be/stops/505783", "https://data.delijn.be/stops/507707"], ["https://data.delijn.be/stops/507317", "https://data.delijn.be/stops/507323"], ["https://data.delijn.be/stops/305641", "https://data.delijn.be/stops/307269"], ["https://data.delijn.be/stops/303803", "https://data.delijn.be/stops/308900"], ["https://data.delijn.be/stops/200195", "https://data.delijn.be/stops/201186"], ["https://data.delijn.be/stops/403975", "https://data.delijn.be/stops/405979"], ["https://data.delijn.be/stops/300381", "https://data.delijn.be/stops/300382"], ["https://data.delijn.be/stops/409740", "https://data.delijn.be/stops/409754"], ["https://data.delijn.be/stops/105291", "https://data.delijn.be/stops/105292"], ["https://data.delijn.be/stops/302346", "https://data.delijn.be/stops/302350"], ["https://data.delijn.be/stops/208695", "https://data.delijn.be/stops/208696"], ["https://data.delijn.be/stops/501599", "https://data.delijn.be/stops/509833"], ["https://data.delijn.be/stops/303652", "https://data.delijn.be/stops/308955"], ["https://data.delijn.be/stops/408116", "https://data.delijn.be/stops/408117"], ["https://data.delijn.be/stops/108566", "https://data.delijn.be/stops/108992"], ["https://data.delijn.be/stops/200524", "https://data.delijn.be/stops/210131"], ["https://data.delijn.be/stops/105236", "https://data.delijn.be/stops/105239"], ["https://data.delijn.be/stops/403075", "https://data.delijn.be/stops/403250"], ["https://data.delijn.be/stops/404751", "https://data.delijn.be/stops/404945"], ["https://data.delijn.be/stops/408577", "https://data.delijn.be/stops/408637"], ["https://data.delijn.be/stops/405943", "https://data.delijn.be/stops/405978"], ["https://data.delijn.be/stops/306900", "https://data.delijn.be/stops/308094"], ["https://data.delijn.be/stops/504837", "https://data.delijn.be/stops/505427"], ["https://data.delijn.be/stops/302932", "https://data.delijn.be/stops/302937"], ["https://data.delijn.be/stops/209458", "https://data.delijn.be/stops/209676"], ["https://data.delijn.be/stops/206944", "https://data.delijn.be/stops/209551"], ["https://data.delijn.be/stops/204609", "https://data.delijn.be/stops/205609"], ["https://data.delijn.be/stops/404328", "https://data.delijn.be/stops/409572"], ["https://data.delijn.be/stops/104597", "https://data.delijn.be/stops/105158"], ["https://data.delijn.be/stops/304443", "https://data.delijn.be/stops/304457"], ["https://data.delijn.be/stops/203075", "https://data.delijn.be/stops/203436"], ["https://data.delijn.be/stops/300367", "https://data.delijn.be/stops/300368"], ["https://data.delijn.be/stops/408092", "https://data.delijn.be/stops/408110"], ["https://data.delijn.be/stops/305233", "https://data.delijn.be/stops/305234"], ["https://data.delijn.be/stops/404584", "https://data.delijn.be/stops/406786"], ["https://data.delijn.be/stops/104467", "https://data.delijn.be/stops/107197"], ["https://data.delijn.be/stops/103341", "https://data.delijn.be/stops/104575"], ["https://data.delijn.be/stops/508417", "https://data.delijn.be/stops/509867"], ["https://data.delijn.be/stops/104602", "https://data.delijn.be/stops/108262"], ["https://data.delijn.be/stops/301776", "https://data.delijn.be/stops/301785"], ["https://data.delijn.be/stops/102818", "https://data.delijn.be/stops/102821"], ["https://data.delijn.be/stops/304481", "https://data.delijn.be/stops/304482"], ["https://data.delijn.be/stops/409310", "https://data.delijn.be/stops/409311"], ["https://data.delijn.be/stops/403164", "https://data.delijn.be/stops/410222"], ["https://data.delijn.be/stops/407842", "https://data.delijn.be/stops/407843"], ["https://data.delijn.be/stops/300291", "https://data.delijn.be/stops/300292"], ["https://data.delijn.be/stops/206630", "https://data.delijn.be/stops/207630"], ["https://data.delijn.be/stops/206819", "https://data.delijn.be/stops/206820"], ["https://data.delijn.be/stops/504743", "https://data.delijn.be/stops/508624"], ["https://data.delijn.be/stops/302898", "https://data.delijn.be/stops/306096"], ["https://data.delijn.be/stops/504003", "https://data.delijn.be/stops/504004"], ["https://data.delijn.be/stops/107560", "https://data.delijn.be/stops/107565"], ["https://data.delijn.be/stops/107313", "https://data.delijn.be/stops/108813"], ["https://data.delijn.be/stops/306695", "https://data.delijn.be/stops/308789"], ["https://data.delijn.be/stops/103322", "https://data.delijn.be/stops/103749"], ["https://data.delijn.be/stops/502055", "https://data.delijn.be/stops/502736"], ["https://data.delijn.be/stops/503886", "https://data.delijn.be/stops/508115"], ["https://data.delijn.be/stops/202616", "https://data.delijn.be/stops/202617"], ["https://data.delijn.be/stops/108948", "https://data.delijn.be/stops/108951"], ["https://data.delijn.be/stops/200145", "https://data.delijn.be/stops/208842"], ["https://data.delijn.be/stops/202679", "https://data.delijn.be/stops/203691"], ["https://data.delijn.be/stops/407896", "https://data.delijn.be/stops/408044"], ["https://data.delijn.be/stops/303536", "https://data.delijn.be/stops/303878"], ["https://data.delijn.be/stops/207433", "https://data.delijn.be/stops/209690"], ["https://data.delijn.be/stops/109082", "https://data.delijn.be/stops/109309"], ["https://data.delijn.be/stops/304020", "https://data.delijn.be/stops/304913"], ["https://data.delijn.be/stops/504191", "https://data.delijn.be/stops/509159"], ["https://data.delijn.be/stops/206339", "https://data.delijn.be/stops/207342"], ["https://data.delijn.be/stops/207566", "https://data.delijn.be/stops/207997"], ["https://data.delijn.be/stops/103583", "https://data.delijn.be/stops/108913"], ["https://data.delijn.be/stops/303191", "https://data.delijn.be/stops/307952"], ["https://data.delijn.be/stops/303652", "https://data.delijn.be/stops/304027"], ["https://data.delijn.be/stops/410128", "https://data.delijn.be/stops/410288"], ["https://data.delijn.be/stops/301129", "https://data.delijn.be/stops/302872"], ["https://data.delijn.be/stops/303382", "https://data.delijn.be/stops/303384"], ["https://data.delijn.be/stops/406207", "https://data.delijn.be/stops/406268"], ["https://data.delijn.be/stops/305104", "https://data.delijn.be/stops/305127"], ["https://data.delijn.be/stops/201412", "https://data.delijn.be/stops/201454"], ["https://data.delijn.be/stops/207763", "https://data.delijn.be/stops/207787"], ["https://data.delijn.be/stops/202024", "https://data.delijn.be/stops/203023"], ["https://data.delijn.be/stops/301919", "https://data.delijn.be/stops/303175"], ["https://data.delijn.be/stops/306267", "https://data.delijn.be/stops/306268"], ["https://data.delijn.be/stops/300972", "https://data.delijn.be/stops/307852"], ["https://data.delijn.be/stops/503635", "https://data.delijn.be/stops/503981"], ["https://data.delijn.be/stops/400443", "https://data.delijn.be/stops/400444"], ["https://data.delijn.be/stops/507718", "https://data.delijn.be/stops/507719"], ["https://data.delijn.be/stops/506440", "https://data.delijn.be/stops/506442"], ["https://data.delijn.be/stops/507116", "https://data.delijn.be/stops/507725"], ["https://data.delijn.be/stops/405402", "https://data.delijn.be/stops/405403"], ["https://data.delijn.be/stops/101783", "https://data.delijn.be/stops/107872"], ["https://data.delijn.be/stops/501736", "https://data.delijn.be/stops/501746"], ["https://data.delijn.be/stops/206758", "https://data.delijn.be/stops/207623"], ["https://data.delijn.be/stops/404683", "https://data.delijn.be/stops/404687"], ["https://data.delijn.be/stops/206657", "https://data.delijn.be/stops/206729"], ["https://data.delijn.be/stops/504269", "https://data.delijn.be/stops/504851"], ["https://data.delijn.be/stops/304781", "https://data.delijn.be/stops/304782"], ["https://data.delijn.be/stops/300304", "https://data.delijn.be/stops/301752"], ["https://data.delijn.be/stops/502301", "https://data.delijn.be/stops/507301"], ["https://data.delijn.be/stops/405025", "https://data.delijn.be/stops/405092"], ["https://data.delijn.be/stops/203179", "https://data.delijn.be/stops/203498"], ["https://data.delijn.be/stops/402112", "https://data.delijn.be/stops/405189"], ["https://data.delijn.be/stops/206453", "https://data.delijn.be/stops/206454"], ["https://data.delijn.be/stops/409364", "https://data.delijn.be/stops/409366"], ["https://data.delijn.be/stops/303283", "https://data.delijn.be/stops/306970"], ["https://data.delijn.be/stops/201757", "https://data.delijn.be/stops/201778"], ["https://data.delijn.be/stops/108654", "https://data.delijn.be/stops/108656"], ["https://data.delijn.be/stops/103319", "https://data.delijn.be/stops/105420"], ["https://data.delijn.be/stops/203822", "https://data.delijn.be/stops/211004"], ["https://data.delijn.be/stops/302162", "https://data.delijn.be/stops/307804"], ["https://data.delijn.be/stops/301219", "https://data.delijn.be/stops/306717"], ["https://data.delijn.be/stops/405473", "https://data.delijn.be/stops/406689"], ["https://data.delijn.be/stops/103604", "https://data.delijn.be/stops/108924"], ["https://data.delijn.be/stops/404918", "https://data.delijn.be/stops/404920"], ["https://data.delijn.be/stops/404341", "https://data.delijn.be/stops/404344"], ["https://data.delijn.be/stops/302080", "https://data.delijn.be/stops/302082"], ["https://data.delijn.be/stops/104405", "https://data.delijn.be/stops/104407"], ["https://data.delijn.be/stops/400458", "https://data.delijn.be/stops/406564"], ["https://data.delijn.be/stops/505086", "https://data.delijn.be/stops/505762"], ["https://data.delijn.be/stops/106280", "https://data.delijn.be/stops/106344"], ["https://data.delijn.be/stops/208092", "https://data.delijn.be/stops/209657"], ["https://data.delijn.be/stops/202539", "https://data.delijn.be/stops/202688"], ["https://data.delijn.be/stops/203196", "https://data.delijn.be/stops/203203"], ["https://data.delijn.be/stops/102856", "https://data.delijn.be/stops/204624"], ["https://data.delijn.be/stops/308414", "https://data.delijn.be/stops/308428"], ["https://data.delijn.be/stops/302373", "https://data.delijn.be/stops/302386"], ["https://data.delijn.be/stops/405754", "https://data.delijn.be/stops/409294"], ["https://data.delijn.be/stops/103219", "https://data.delijn.be/stops/107364"], ["https://data.delijn.be/stops/106491", "https://data.delijn.be/stops/106495"], ["https://data.delijn.be/stops/103323", "https://data.delijn.be/stops/108395"], ["https://data.delijn.be/stops/105301", "https://data.delijn.be/stops/105303"], ["https://data.delijn.be/stops/108242", "https://data.delijn.be/stops/108244"], ["https://data.delijn.be/stops/201451", "https://data.delijn.be/stops/202550"], ["https://data.delijn.be/stops/105486", "https://data.delijn.be/stops/105487"], ["https://data.delijn.be/stops/509245", "https://data.delijn.be/stops/509593"], ["https://data.delijn.be/stops/200712", "https://data.delijn.be/stops/205090"], ["https://data.delijn.be/stops/303619", "https://data.delijn.be/stops/303620"], ["https://data.delijn.be/stops/404459", "https://data.delijn.be/stops/404523"], ["https://data.delijn.be/stops/304396", "https://data.delijn.be/stops/308055"], ["https://data.delijn.be/stops/305066", "https://data.delijn.be/stops/305075"], ["https://data.delijn.be/stops/104703", "https://data.delijn.be/stops/107357"], ["https://data.delijn.be/stops/304470", "https://data.delijn.be/stops/304557"], ["https://data.delijn.be/stops/103737", "https://data.delijn.be/stops/109461"], ["https://data.delijn.be/stops/406522", "https://data.delijn.be/stops/408477"], ["https://data.delijn.be/stops/301039", "https://data.delijn.be/stops/301043"], ["https://data.delijn.be/stops/208809", "https://data.delijn.be/stops/208810"], ["https://data.delijn.be/stops/107033", "https://data.delijn.be/stops/107036"], ["https://data.delijn.be/stops/108954", "https://data.delijn.be/stops/108958"], ["https://data.delijn.be/stops/204082", "https://data.delijn.be/stops/204087"], ["https://data.delijn.be/stops/308139", "https://data.delijn.be/stops/308142"], ["https://data.delijn.be/stops/201474", "https://data.delijn.be/stops/210061"], ["https://data.delijn.be/stops/200103", "https://data.delijn.be/stops/200104"], ["https://data.delijn.be/stops/307255", "https://data.delijn.be/stops/307466"], ["https://data.delijn.be/stops/204783", "https://data.delijn.be/stops/204788"], ["https://data.delijn.be/stops/209651", "https://data.delijn.be/stops/209652"], ["https://data.delijn.be/stops/105744", "https://data.delijn.be/stops/109832"], ["https://data.delijn.be/stops/202169", "https://data.delijn.be/stops/203109"], ["https://data.delijn.be/stops/304722", "https://data.delijn.be/stops/305319"], ["https://data.delijn.be/stops/304277", "https://data.delijn.be/stops/304278"], ["https://data.delijn.be/stops/301110", "https://data.delijn.be/stops/306312"], ["https://data.delijn.be/stops/404441", "https://data.delijn.be/stops/409418"], ["https://data.delijn.be/stops/203308", "https://data.delijn.be/stops/502759"], ["https://data.delijn.be/stops/300281", "https://data.delijn.be/stops/303825"], ["https://data.delijn.be/stops/204344", "https://data.delijn.be/stops/204346"], ["https://data.delijn.be/stops/300596", "https://data.delijn.be/stops/307170"], ["https://data.delijn.be/stops/108380", "https://data.delijn.be/stops/108964"], ["https://data.delijn.be/stops/204318", "https://data.delijn.be/stops/205321"], ["https://data.delijn.be/stops/105576", "https://data.delijn.be/stops/106040"], ["https://data.delijn.be/stops/307210", "https://data.delijn.be/stops/307217"], ["https://data.delijn.be/stops/505024", "https://data.delijn.be/stops/505749"], ["https://data.delijn.be/stops/400023", "https://data.delijn.be/stops/400199"], ["https://data.delijn.be/stops/300021", "https://data.delijn.be/stops/300404"], ["https://data.delijn.be/stops/501552", "https://data.delijn.be/stops/506682"], ["https://data.delijn.be/stops/504117", "https://data.delijn.be/stops/509759"], ["https://data.delijn.be/stops/107887", "https://data.delijn.be/stops/107888"], ["https://data.delijn.be/stops/300322", "https://data.delijn.be/stops/304863"], ["https://data.delijn.be/stops/206047", "https://data.delijn.be/stops/206048"], ["https://data.delijn.be/stops/104113", "https://data.delijn.be/stops/104114"], ["https://data.delijn.be/stops/403736", "https://data.delijn.be/stops/403743"], ["https://data.delijn.be/stops/200486", "https://data.delijn.be/stops/201471"], ["https://data.delijn.be/stops/108302", "https://data.delijn.be/stops/108303"], ["https://data.delijn.be/stops/208013", "https://data.delijn.be/stops/208023"], ["https://data.delijn.be/stops/103116", "https://data.delijn.be/stops/104687"], ["https://data.delijn.be/stops/102535", "https://data.delijn.be/stops/103500"], ["https://data.delijn.be/stops/404861", "https://data.delijn.be/stops/404862"], ["https://data.delijn.be/stops/106380", "https://data.delijn.be/stops/106383"], ["https://data.delijn.be/stops/201712", "https://data.delijn.be/stops/209652"], ["https://data.delijn.be/stops/501683", "https://data.delijn.be/stops/506684"], ["https://data.delijn.be/stops/503923", "https://data.delijn.be/stops/505388"], ["https://data.delijn.be/stops/502293", "https://data.delijn.be/stops/507291"], ["https://data.delijn.be/stops/109492", "https://data.delijn.be/stops/109800"], ["https://data.delijn.be/stops/409789", "https://data.delijn.be/stops/409813"], ["https://data.delijn.be/stops/301835", "https://data.delijn.be/stops/301847"], ["https://data.delijn.be/stops/202100", "https://data.delijn.be/stops/202258"], ["https://data.delijn.be/stops/103483", "https://data.delijn.be/stops/109162"], ["https://data.delijn.be/stops/202003", "https://data.delijn.be/stops/202349"], ["https://data.delijn.be/stops/508607", "https://data.delijn.be/stops/508616"], ["https://data.delijn.be/stops/306325", "https://data.delijn.be/stops/308671"], ["https://data.delijn.be/stops/502213", "https://data.delijn.be/stops/507213"], ["https://data.delijn.be/stops/404674", "https://data.delijn.be/stops/405737"], ["https://data.delijn.be/stops/303525", "https://data.delijn.be/stops/307858"], ["https://data.delijn.be/stops/407249", "https://data.delijn.be/stops/407468"], ["https://data.delijn.be/stops/208012", "https://data.delijn.be/stops/209018"], ["https://data.delijn.be/stops/504832", "https://data.delijn.be/stops/505192"], ["https://data.delijn.be/stops/103148", "https://data.delijn.be/stops/109480"], ["https://data.delijn.be/stops/408035", "https://data.delijn.be/stops/408056"], ["https://data.delijn.be/stops/405927", "https://data.delijn.be/stops/405986"], ["https://data.delijn.be/stops/206381", "https://data.delijn.be/stops/207381"], ["https://data.delijn.be/stops/204299", "https://data.delijn.be/stops/204300"], ["https://data.delijn.be/stops/204126", "https://data.delijn.be/stops/204789"], ["https://data.delijn.be/stops/501286", "https://data.delijn.be/stops/501289"], ["https://data.delijn.be/stops/400905", "https://data.delijn.be/stops/400964"], ["https://data.delijn.be/stops/204519", "https://data.delijn.be/stops/205520"], ["https://data.delijn.be/stops/504618", "https://data.delijn.be/stops/504619"], ["https://data.delijn.be/stops/505382", "https://data.delijn.be/stops/508096"], ["https://data.delijn.be/stops/502378", "https://data.delijn.be/stops/502595"], ["https://data.delijn.be/stops/302070", "https://data.delijn.be/stops/306350"], ["https://data.delijn.be/stops/101579", "https://data.delijn.be/stops/105731"], ["https://data.delijn.be/stops/302557", "https://data.delijn.be/stops/302558"], ["https://data.delijn.be/stops/501488", "https://data.delijn.be/stops/506284"], ["https://data.delijn.be/stops/203533", "https://data.delijn.be/stops/205174"], ["https://data.delijn.be/stops/407602", "https://data.delijn.be/stops/407605"], ["https://data.delijn.be/stops/103146", "https://data.delijn.be/stops/104974"], ["https://data.delijn.be/stops/302886", "https://data.delijn.be/stops/302925"], ["https://data.delijn.be/stops/405660", "https://data.delijn.be/stops/303189"], ["https://data.delijn.be/stops/102778", "https://data.delijn.be/stops/102956"], ["https://data.delijn.be/stops/204151", "https://data.delijn.be/stops/205151"], ["https://data.delijn.be/stops/300646", "https://data.delijn.be/stops/300664"], ["https://data.delijn.be/stops/503504", "https://data.delijn.be/stops/503612"], ["https://data.delijn.be/stops/503054", "https://data.delijn.be/stops/503057"], ["https://data.delijn.be/stops/201387", "https://data.delijn.be/stops/202651"], ["https://data.delijn.be/stops/107064", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/105825", "https://data.delijn.be/stops/305834"], ["https://data.delijn.be/stops/305668", "https://data.delijn.be/stops/307118"], ["https://data.delijn.be/stops/206961", "https://data.delijn.be/stops/306728"], ["https://data.delijn.be/stops/106886", "https://data.delijn.be/stops/109900"], ["https://data.delijn.be/stops/304783", "https://data.delijn.be/stops/308787"], ["https://data.delijn.be/stops/201870", "https://data.delijn.be/stops/203396"], ["https://data.delijn.be/stops/504149", "https://data.delijn.be/stops/505108"], ["https://data.delijn.be/stops/102742", "https://data.delijn.be/stops/102743"], ["https://data.delijn.be/stops/201272", "https://data.delijn.be/stops/201345"], ["https://data.delijn.be/stops/502087", "https://data.delijn.be/stops/507136"], ["https://data.delijn.be/stops/300246", "https://data.delijn.be/stops/300256"], ["https://data.delijn.be/stops/300428", "https://data.delijn.be/stops/301258"], ["https://data.delijn.be/stops/303533", "https://data.delijn.be/stops/303535"], ["https://data.delijn.be/stops/106027", "https://data.delijn.be/stops/106031"], ["https://data.delijn.be/stops/505969", "https://data.delijn.be/stops/508087"], ["https://data.delijn.be/stops/108678", "https://data.delijn.be/stops/300634"], ["https://data.delijn.be/stops/106768", "https://data.delijn.be/stops/106867"], ["https://data.delijn.be/stops/211052", "https://data.delijn.be/stops/211053"], ["https://data.delijn.be/stops/403967", "https://data.delijn.be/stops/403975"], ["https://data.delijn.be/stops/301468", "https://data.delijn.be/stops/301469"], ["https://data.delijn.be/stops/304801", "https://data.delijn.be/stops/307881"], ["https://data.delijn.be/stops/400382", "https://data.delijn.be/stops/400383"], ["https://data.delijn.be/stops/304927", "https://data.delijn.be/stops/304928"], ["https://data.delijn.be/stops/206479", "https://data.delijn.be/stops/207175"], ["https://data.delijn.be/stops/204663", "https://data.delijn.be/stops/205126"], ["https://data.delijn.be/stops/403850", "https://data.delijn.be/stops/403858"], ["https://data.delijn.be/stops/302356", "https://data.delijn.be/stops/302357"], ["https://data.delijn.be/stops/409351", "https://data.delijn.be/stops/409361"], ["https://data.delijn.be/stops/402578", "https://data.delijn.be/stops/408446"], ["https://data.delijn.be/stops/105349", "https://data.delijn.be/stops/109618"], ["https://data.delijn.be/stops/102509", "https://data.delijn.be/stops/406451"], ["https://data.delijn.be/stops/408096", "https://data.delijn.be/stops/408103"], ["https://data.delijn.be/stops/208390", "https://data.delijn.be/stops/208391"], ["https://data.delijn.be/stops/101878", "https://data.delijn.be/stops/106075"], ["https://data.delijn.be/stops/300045", "https://data.delijn.be/stops/300064"], ["https://data.delijn.be/stops/106147", "https://data.delijn.be/stops/106149"], ["https://data.delijn.be/stops/504767", "https://data.delijn.be/stops/508524"], ["https://data.delijn.be/stops/106860", "https://data.delijn.be/stops/109621"], ["https://data.delijn.be/stops/404174", "https://data.delijn.be/stops/404175"], ["https://data.delijn.be/stops/403659", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/508872", "https://data.delijn.be/stops/508873"], ["https://data.delijn.be/stops/306393", "https://data.delijn.be/stops/306394"], ["https://data.delijn.be/stops/403159", "https://data.delijn.be/stops/410320"], ["https://data.delijn.be/stops/204013", "https://data.delijn.be/stops/205697"], ["https://data.delijn.be/stops/400962", "https://data.delijn.be/stops/400963"], ["https://data.delijn.be/stops/503347", "https://data.delijn.be/stops/503439"], ["https://data.delijn.be/stops/104449", "https://data.delijn.be/stops/107809"], ["https://data.delijn.be/stops/407470", "https://data.delijn.be/stops/407471"], ["https://data.delijn.be/stops/303565", "https://data.delijn.be/stops/303570"], ["https://data.delijn.be/stops/101611", "https://data.delijn.be/stops/106405"], ["https://data.delijn.be/stops/404771", "https://data.delijn.be/stops/404777"], ["https://data.delijn.be/stops/107618", "https://data.delijn.be/stops/108097"], ["https://data.delijn.be/stops/206077", "https://data.delijn.be/stops/207315"], ["https://data.delijn.be/stops/405131", "https://data.delijn.be/stops/405199"], ["https://data.delijn.be/stops/206079", "https://data.delijn.be/stops/206304"], ["https://data.delijn.be/stops/202746", "https://data.delijn.be/stops/207937"], ["https://data.delijn.be/stops/200648", "https://data.delijn.be/stops/201646"], ["https://data.delijn.be/stops/101537", "https://data.delijn.be/stops/109073"], ["https://data.delijn.be/stops/201184", "https://data.delijn.be/stops/202955"], ["https://data.delijn.be/stops/409769", "https://data.delijn.be/stops/409770"], ["https://data.delijn.be/stops/101486", "https://data.delijn.be/stops/101487"], ["https://data.delijn.be/stops/102799", "https://data.delijn.be/stops/103901"], ["https://data.delijn.be/stops/503101", "https://data.delijn.be/stops/505384"], ["https://data.delijn.be/stops/204396", "https://data.delijn.be/stops/204413"], ["https://data.delijn.be/stops/202534", "https://data.delijn.be/stops/203533"], ["https://data.delijn.be/stops/503301", "https://data.delijn.be/stops/508301"], ["https://data.delijn.be/stops/400210", "https://data.delijn.be/stops/400211"], ["https://data.delijn.be/stops/505191", "https://data.delijn.be/stops/505195"], ["https://data.delijn.be/stops/105188", "https://data.delijn.be/stops/105832"], ["https://data.delijn.be/stops/201732", "https://data.delijn.be/stops/202756"], ["https://data.delijn.be/stops/400985", "https://data.delijn.be/stops/406622"], ["https://data.delijn.be/stops/108264", "https://data.delijn.be/stops/109336"], ["https://data.delijn.be/stops/305712", "https://data.delijn.be/stops/306302"], ["https://data.delijn.be/stops/402520", "https://data.delijn.be/stops/402586"], ["https://data.delijn.be/stops/504666", "https://data.delijn.be/stops/504667"], ["https://data.delijn.be/stops/200867", "https://data.delijn.be/stops/200868"], ["https://data.delijn.be/stops/103684", "https://data.delijn.be/stops/106316"], ["https://data.delijn.be/stops/203482", "https://data.delijn.be/stops/203952"], ["https://data.delijn.be/stops/106602", "https://data.delijn.be/stops/107214"], ["https://data.delijn.be/stops/102665", "https://data.delijn.be/stops/103754"], ["https://data.delijn.be/stops/402461", "https://data.delijn.be/stops/410094"], ["https://data.delijn.be/stops/503631", "https://data.delijn.be/stops/505906"], ["https://data.delijn.be/stops/400421", "https://data.delijn.be/stops/400422"], ["https://data.delijn.be/stops/403794", "https://data.delijn.be/stops/403813"], ["https://data.delijn.be/stops/206652", "https://data.delijn.be/stops/206714"], ["https://data.delijn.be/stops/405607", "https://data.delijn.be/stops/405689"], ["https://data.delijn.be/stops/508120", "https://data.delijn.be/stops/508131"], ["https://data.delijn.be/stops/105963", "https://data.delijn.be/stops/108940"], ["https://data.delijn.be/stops/107972", "https://data.delijn.be/stops/306759"], ["https://data.delijn.be/stops/504483", "https://data.delijn.be/stops/505837"], ["https://data.delijn.be/stops/505339", "https://data.delijn.be/stops/508007"], ["https://data.delijn.be/stops/401140", "https://data.delijn.be/stops/401141"], ["https://data.delijn.be/stops/301243", "https://data.delijn.be/stops/301244"], ["https://data.delijn.be/stops/301717", "https://data.delijn.be/stops/304572"], ["https://data.delijn.be/stops/200393", "https://data.delijn.be/stops/201066"], ["https://data.delijn.be/stops/200095", "https://data.delijn.be/stops/202132"], ["https://data.delijn.be/stops/501447", "https://data.delijn.be/stops/506451"], ["https://data.delijn.be/stops/206135", "https://data.delijn.be/stops/206511"], ["https://data.delijn.be/stops/505562", "https://data.delijn.be/stops/508636"], ["https://data.delijn.be/stops/108849", "https://data.delijn.be/stops/108850"], ["https://data.delijn.be/stops/106281", "https://data.delijn.be/stops/106344"], ["https://data.delijn.be/stops/103772", "https://data.delijn.be/stops/106499"], ["https://data.delijn.be/stops/206825", "https://data.delijn.be/stops/207825"], ["https://data.delijn.be/stops/206797", "https://data.delijn.be/stops/206802"], ["https://data.delijn.be/stops/200865", "https://data.delijn.be/stops/201723"], ["https://data.delijn.be/stops/504026", "https://data.delijn.be/stops/505113"], ["https://data.delijn.be/stops/105517", "https://data.delijn.be/stops/108709"], ["https://data.delijn.be/stops/506606", "https://data.delijn.be/stops/506607"], ["https://data.delijn.be/stops/105266", "https://data.delijn.be/stops/109966"], ["https://data.delijn.be/stops/206733", "https://data.delijn.be/stops/207983"], ["https://data.delijn.be/stops/107298", "https://data.delijn.be/stops/107301"], ["https://data.delijn.be/stops/103724", "https://data.delijn.be/stops/108691"], ["https://data.delijn.be/stops/404222", "https://data.delijn.be/stops/404231"], ["https://data.delijn.be/stops/206315", "https://data.delijn.be/stops/207286"], ["https://data.delijn.be/stops/104667", "https://data.delijn.be/stops/104888"], ["https://data.delijn.be/stops/102388", "https://data.delijn.be/stops/109915"], ["https://data.delijn.be/stops/503941", "https://data.delijn.be/stops/505558"], ["https://data.delijn.be/stops/300193", "https://data.delijn.be/stops/300220"], ["https://data.delijn.be/stops/501387", "https://data.delijn.be/stops/501390"], ["https://data.delijn.be/stops/300667", "https://data.delijn.be/stops/300677"], ["https://data.delijn.be/stops/400884", "https://data.delijn.be/stops/409614"], ["https://data.delijn.be/stops/400482", "https://data.delijn.be/stops/400485"], ["https://data.delijn.be/stops/401226", "https://data.delijn.be/stops/401239"], ["https://data.delijn.be/stops/406272", "https://data.delijn.be/stops/408859"], ["https://data.delijn.be/stops/304119", "https://data.delijn.be/stops/307545"], ["https://data.delijn.be/stops/403603", "https://data.delijn.be/stops/403645"], ["https://data.delijn.be/stops/204581", "https://data.delijn.be/stops/204596"], ["https://data.delijn.be/stops/401150", "https://data.delijn.be/stops/401154"], ["https://data.delijn.be/stops/204682", "https://data.delijn.be/stops/205615"], ["https://data.delijn.be/stops/301102", "https://data.delijn.be/stops/302804"], ["https://data.delijn.be/stops/103574", "https://data.delijn.be/stops/106610"], ["https://data.delijn.be/stops/407942", "https://data.delijn.be/stops/408014"], ["https://data.delijn.be/stops/105615", "https://data.delijn.be/stops/105830"], ["https://data.delijn.be/stops/109703", "https://data.delijn.be/stops/109706"], ["https://data.delijn.be/stops/101174", "https://data.delijn.be/stops/102380"], ["https://data.delijn.be/stops/409410", "https://data.delijn.be/stops/409766"], ["https://data.delijn.be/stops/503803", "https://data.delijn.be/stops/508803"], ["https://data.delijn.be/stops/204155", "https://data.delijn.be/stops/204774"], ["https://data.delijn.be/stops/508958", "https://data.delijn.be/stops/509743"], ["https://data.delijn.be/stops/407986", "https://data.delijn.be/stops/407989"], ["https://data.delijn.be/stops/402067", "https://data.delijn.be/stops/402766"], ["https://data.delijn.be/stops/303415", "https://data.delijn.be/stops/303433"], ["https://data.delijn.be/stops/502221", "https://data.delijn.be/stops/502224"], ["https://data.delijn.be/stops/507526", "https://data.delijn.be/stops/507708"], ["https://data.delijn.be/stops/204369", "https://data.delijn.be/stops/205355"], ["https://data.delijn.be/stops/507114", "https://data.delijn.be/stops/507145"], ["https://data.delijn.be/stops/300218", "https://data.delijn.be/stops/300221"], ["https://data.delijn.be/stops/407926", "https://data.delijn.be/stops/407990"], ["https://data.delijn.be/stops/408260", "https://data.delijn.be/stops/408340"], ["https://data.delijn.be/stops/206438", "https://data.delijn.be/stops/207438"], ["https://data.delijn.be/stops/401283", "https://data.delijn.be/stops/409191"], ["https://data.delijn.be/stops/208007", "https://data.delijn.be/stops/208009"], ["https://data.delijn.be/stops/302931", "https://data.delijn.be/stops/304505"], ["https://data.delijn.be/stops/405763", "https://data.delijn.be/stops/409293"], ["https://data.delijn.be/stops/505172", "https://data.delijn.be/stops/507348"], ["https://data.delijn.be/stops/105572", "https://data.delijn.be/stops/105578"], ["https://data.delijn.be/stops/302673", "https://data.delijn.be/stops/307088"], ["https://data.delijn.be/stops/102813", "https://data.delijn.be/stops/102829"], ["https://data.delijn.be/stops/105509", "https://data.delijn.be/stops/108731"], ["https://data.delijn.be/stops/400844", "https://data.delijn.be/stops/408550"], ["https://data.delijn.be/stops/400490", "https://data.delijn.be/stops/400495"], ["https://data.delijn.be/stops/402242", "https://data.delijn.be/stops/402336"], ["https://data.delijn.be/stops/304561", "https://data.delijn.be/stops/304589"], ["https://data.delijn.be/stops/406055", "https://data.delijn.be/stops/406064"], ["https://data.delijn.be/stops/402502", "https://data.delijn.be/stops/402559"], ["https://data.delijn.be/stops/407188", "https://data.delijn.be/stops/407198"], ["https://data.delijn.be/stops/208503", "https://data.delijn.be/stops/208504"], ["https://data.delijn.be/stops/503016", "https://data.delijn.be/stops/508016"], ["https://data.delijn.be/stops/400499", "https://data.delijn.be/stops/400948"], ["https://data.delijn.be/stops/103496", "https://data.delijn.be/stops/109897"], ["https://data.delijn.be/stops/206654", "https://data.delijn.be/stops/207655"], ["https://data.delijn.be/stops/301918", "https://data.delijn.be/stops/306746"], ["https://data.delijn.be/stops/502166", "https://data.delijn.be/stops/507166"], ["https://data.delijn.be/stops/501127", "https://data.delijn.be/stops/501139"], ["https://data.delijn.be/stops/300872", "https://data.delijn.be/stops/302420"], ["https://data.delijn.be/stops/203472", "https://data.delijn.be/stops/203473"], ["https://data.delijn.be/stops/208452", "https://data.delijn.be/stops/209452"], ["https://data.delijn.be/stops/102927", "https://data.delijn.be/stops/109421"], ["https://data.delijn.be/stops/410198", "https://data.delijn.be/stops/410207"], ["https://data.delijn.be/stops/507527", "https://data.delijn.be/stops/507808"], ["https://data.delijn.be/stops/206100", "https://data.delijn.be/stops/206101"], ["https://data.delijn.be/stops/403588", "https://data.delijn.be/stops/408197"], ["https://data.delijn.be/stops/102708", "https://data.delijn.be/stops/105055"], ["https://data.delijn.be/stops/205115", "https://data.delijn.be/stops/205117"], ["https://data.delijn.be/stops/303042", "https://data.delijn.be/stops/303142"], ["https://data.delijn.be/stops/501051", "https://data.delijn.be/stops/502242"], ["https://data.delijn.be/stops/101887", "https://data.delijn.be/stops/109998"], ["https://data.delijn.be/stops/301464", "https://data.delijn.be/stops/301490"], ["https://data.delijn.be/stops/402299", "https://data.delijn.be/stops/402471"], ["https://data.delijn.be/stops/400032", "https://data.delijn.be/stops/400317"], ["https://data.delijn.be/stops/402669", "https://data.delijn.be/stops/402735"], ["https://data.delijn.be/stops/104118", "https://data.delijn.be/stops/105160"], ["https://data.delijn.be/stops/505287", "https://data.delijn.be/stops/505816"], ["https://data.delijn.be/stops/502073", "https://data.delijn.be/stops/507073"], ["https://data.delijn.be/stops/501308", "https://data.delijn.be/stops/506356"], ["https://data.delijn.be/stops/505838", "https://data.delijn.be/stops/507253"], ["https://data.delijn.be/stops/204118", "https://data.delijn.be/stops/204689"], ["https://data.delijn.be/stops/503340", "https://data.delijn.be/stops/508340"], ["https://data.delijn.be/stops/505093", "https://data.delijn.be/stops/505139"], ["https://data.delijn.be/stops/301954", "https://data.delijn.be/stops/304183"], ["https://data.delijn.be/stops/308230", "https://data.delijn.be/stops/308234"], ["https://data.delijn.be/stops/302987", "https://data.delijn.be/stops/302988"], ["https://data.delijn.be/stops/304563", "https://data.delijn.be/stops/304616"], ["https://data.delijn.be/stops/105584", "https://data.delijn.be/stops/105592"], ["https://data.delijn.be/stops/400428", "https://data.delijn.be/stops/400429"], ["https://data.delijn.be/stops/202272", "https://data.delijn.be/stops/203272"], ["https://data.delijn.be/stops/200940", "https://data.delijn.be/stops/202705"], ["https://data.delijn.be/stops/301050", "https://data.delijn.be/stops/301072"], ["https://data.delijn.be/stops/102060", "https://data.delijn.be/stops/104494"], ["https://data.delijn.be/stops/503851", "https://data.delijn.be/stops/508826"], ["https://data.delijn.be/stops/503842", "https://data.delijn.be/stops/508847"], ["https://data.delijn.be/stops/201932", "https://data.delijn.be/stops/203510"], ["https://data.delijn.be/stops/103149", "https://data.delijn.be/stops/109992"], ["https://data.delijn.be/stops/403064", "https://data.delijn.be/stops/403862"], ["https://data.delijn.be/stops/308508", "https://data.delijn.be/stops/308509"], ["https://data.delijn.be/stops/503044", "https://data.delijn.be/stops/503962"], ["https://data.delijn.be/stops/105383", "https://data.delijn.be/stops/106025"], ["https://data.delijn.be/stops/509156", "https://data.delijn.be/stops/509191"], ["https://data.delijn.be/stops/403445", "https://data.delijn.be/stops/403862"], ["https://data.delijn.be/stops/407702", "https://data.delijn.be/stops/409521"], ["https://data.delijn.be/stops/500941", "https://data.delijn.be/stops/505643"], ["https://data.delijn.be/stops/104565", "https://data.delijn.be/stops/105180"], ["https://data.delijn.be/stops/107652", "https://data.delijn.be/stops/107653"], ["https://data.delijn.be/stops/304232", "https://data.delijn.be/stops/308771"], ["https://data.delijn.be/stops/501079", "https://data.delijn.be/stops/505354"], ["https://data.delijn.be/stops/400059", "https://data.delijn.be/stops/400935"], ["https://data.delijn.be/stops/207870", "https://data.delijn.be/stops/209177"], ["https://data.delijn.be/stops/200089", "https://data.delijn.be/stops/200983"], ["https://data.delijn.be/stops/400556", "https://data.delijn.be/stops/400557"], ["https://data.delijn.be/stops/501088", "https://data.delijn.be/stops/501091"], ["https://data.delijn.be/stops/508898", "https://data.delijn.be/stops/508987"], ["https://data.delijn.be/stops/204764", "https://data.delijn.be/stops/205378"], ["https://data.delijn.be/stops/103239", "https://data.delijn.be/stops/103241"], ["https://data.delijn.be/stops/200640", "https://data.delijn.be/stops/202905"], ["https://data.delijn.be/stops/101484", "https://data.delijn.be/stops/101486"], ["https://data.delijn.be/stops/104237", "https://data.delijn.be/stops/105006"], ["https://data.delijn.be/stops/202466", "https://data.delijn.be/stops/203466"], ["https://data.delijn.be/stops/204335", "https://data.delijn.be/stops/204336"], ["https://data.delijn.be/stops/109316", "https://data.delijn.be/stops/109357"], ["https://data.delijn.be/stops/304882", "https://data.delijn.be/stops/308525"], ["https://data.delijn.be/stops/108758", "https://data.delijn.be/stops/109757"], ["https://data.delijn.be/stops/408648", "https://data.delijn.be/stops/408649"], ["https://data.delijn.be/stops/104992", "https://data.delijn.be/stops/109992"], ["https://data.delijn.be/stops/203910", "https://data.delijn.be/stops/203916"], ["https://data.delijn.be/stops/106484", "https://data.delijn.be/stops/106485"], ["https://data.delijn.be/stops/503706", "https://data.delijn.be/stops/508706"], ["https://data.delijn.be/stops/106428", "https://data.delijn.be/stops/106558"], ["https://data.delijn.be/stops/303456", "https://data.delijn.be/stops/304225"], ["https://data.delijn.be/stops/407822", "https://data.delijn.be/stops/407823"], ["https://data.delijn.be/stops/107225", "https://data.delijn.be/stops/107226"], ["https://data.delijn.be/stops/202421", "https://data.delijn.be/stops/203420"], ["https://data.delijn.be/stops/103156", "https://data.delijn.be/stops/107666"], ["https://data.delijn.be/stops/404137", "https://data.delijn.be/stops/404152"], ["https://data.delijn.be/stops/402801", "https://data.delijn.be/stops/402816"], ["https://data.delijn.be/stops/401026", "https://data.delijn.be/stops/401029"], ["https://data.delijn.be/stops/304263", "https://data.delijn.be/stops/304285"], ["https://data.delijn.be/stops/401638", "https://data.delijn.be/stops/308221"], ["https://data.delijn.be/stops/202240", "https://data.delijn.be/stops/203240"], ["https://data.delijn.be/stops/200861", "https://data.delijn.be/stops/200864"], ["https://data.delijn.be/stops/200775", "https://data.delijn.be/stops/209383"], ["https://data.delijn.be/stops/406281", "https://data.delijn.be/stops/406891"], ["https://data.delijn.be/stops/202119", "https://data.delijn.be/stops/203119"], ["https://data.delijn.be/stops/403111", "https://data.delijn.be/stops/403112"], ["https://data.delijn.be/stops/202034", "https://data.delijn.be/stops/205995"], ["https://data.delijn.be/stops/402609", "https://data.delijn.be/stops/405485"], ["https://data.delijn.be/stops/103224", "https://data.delijn.be/stops/108615"], ["https://data.delijn.be/stops/300746", "https://data.delijn.be/stops/300760"], ["https://data.delijn.be/stops/108875", "https://data.delijn.be/stops/109135"], ["https://data.delijn.be/stops/303629", "https://data.delijn.be/stops/304016"], ["https://data.delijn.be/stops/503610", "https://data.delijn.be/stops/509751"], ["https://data.delijn.be/stops/409681", "https://data.delijn.be/stops/409704"], ["https://data.delijn.be/stops/302961", "https://data.delijn.be/stops/302962"], ["https://data.delijn.be/stops/402304", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/208238", "https://data.delijn.be/stops/209238"], ["https://data.delijn.be/stops/404885", "https://data.delijn.be/stops/404895"], ["https://data.delijn.be/stops/206997", "https://data.delijn.be/stops/207565"], ["https://data.delijn.be/stops/300352", "https://data.delijn.be/stops/301308"], ["https://data.delijn.be/stops/304701", "https://data.delijn.be/stops/308088"], ["https://data.delijn.be/stops/106092", "https://data.delijn.be/stops/108474"], ["https://data.delijn.be/stops/406056", "https://data.delijn.be/stops/406057"], ["https://data.delijn.be/stops/200183", "https://data.delijn.be/stops/202522"], ["https://data.delijn.be/stops/502141", "https://data.delijn.be/stops/502421"], ["https://data.delijn.be/stops/107338", "https://data.delijn.be/stops/107339"], ["https://data.delijn.be/stops/104347", "https://data.delijn.be/stops/105919"], ["https://data.delijn.be/stops/201626", "https://data.delijn.be/stops/211073"], ["https://data.delijn.be/stops/106275", "https://data.delijn.be/stops/109631"], ["https://data.delijn.be/stops/106107", "https://data.delijn.be/stops/106176"], ["https://data.delijn.be/stops/408625", "https://data.delijn.be/stops/408719"], ["https://data.delijn.be/stops/405364", "https://data.delijn.be/stops/405390"], ["https://data.delijn.be/stops/500874", "https://data.delijn.be/stops/508932"], ["https://data.delijn.be/stops/101004", "https://data.delijn.be/stops/103492"], ["https://data.delijn.be/stops/405449", "https://data.delijn.be/stops/308825"], ["https://data.delijn.be/stops/102190", "https://data.delijn.be/stops/102915"], ["https://data.delijn.be/stops/402546", "https://data.delijn.be/stops/402548"], ["https://data.delijn.be/stops/301156", "https://data.delijn.be/stops/304705"], ["https://data.delijn.be/stops/101007", "https://data.delijn.be/stops/108635"], ["https://data.delijn.be/stops/300739", "https://data.delijn.be/stops/307832"], ["https://data.delijn.be/stops/101870", "https://data.delijn.be/stops/102305"], ["https://data.delijn.be/stops/501365", "https://data.delijn.be/stops/501442"], ["https://data.delijn.be/stops/106137", "https://data.delijn.be/stops/106140"], ["https://data.delijn.be/stops/407548", "https://data.delijn.be/stops/407549"], ["https://data.delijn.be/stops/506645", "https://data.delijn.be/stops/506646"], ["https://data.delijn.be/stops/207157", "https://data.delijn.be/stops/207158"], ["https://data.delijn.be/stops/400912", "https://data.delijn.be/stops/400913"], ["https://data.delijn.be/stops/105356", "https://data.delijn.be/stops/106251"], ["https://data.delijn.be/stops/403451", "https://data.delijn.be/stops/407463"], ["https://data.delijn.be/stops/509490", "https://data.delijn.be/stops/509491"], ["https://data.delijn.be/stops/102579", "https://data.delijn.be/stops/102584"], ["https://data.delijn.be/stops/501217", "https://data.delijn.be/stops/501223"], ["https://data.delijn.be/stops/108984", "https://data.delijn.be/stops/109689"], ["https://data.delijn.be/stops/404919", "https://data.delijn.be/stops/404933"], ["https://data.delijn.be/stops/401446", "https://data.delijn.be/stops/401736"], ["https://data.delijn.be/stops/304266", "https://data.delijn.be/stops/304278"], ["https://data.delijn.be/stops/304139", "https://data.delijn.be/stops/307652"], ["https://data.delijn.be/stops/405850", "https://data.delijn.be/stops/409731"], ["https://data.delijn.be/stops/502269", "https://data.delijn.be/stops/507674"], ["https://data.delijn.be/stops/501121", "https://data.delijn.be/stops/506121"], ["https://data.delijn.be/stops/105091", "https://data.delijn.be/stops/108879"], ["https://data.delijn.be/stops/408191", "https://data.delijn.be/stops/408329"], ["https://data.delijn.be/stops/502436", "https://data.delijn.be/stops/505768"], ["https://data.delijn.be/stops/208492", "https://data.delijn.be/stops/211048"], ["https://data.delijn.be/stops/301185", "https://data.delijn.be/stops/301264"], ["https://data.delijn.be/stops/504075", "https://data.delijn.be/stops/504693"], ["https://data.delijn.be/stops/300087", "https://data.delijn.be/stops/300117"], ["https://data.delijn.be/stops/302457", "https://data.delijn.be/stops/305956"], ["https://data.delijn.be/stops/300979", "https://data.delijn.be/stops/306968"], ["https://data.delijn.be/stops/301654", "https://data.delijn.be/stops/304158"], ["https://data.delijn.be/stops/200337", "https://data.delijn.be/stops/203204"], ["https://data.delijn.be/stops/206353", "https://data.delijn.be/stops/206885"], ["https://data.delijn.be/stops/407239", "https://data.delijn.be/stops/407436"], ["https://data.delijn.be/stops/403073", "https://data.delijn.be/stops/410328"], ["https://data.delijn.be/stops/501541", "https://data.delijn.be/stops/506458"], ["https://data.delijn.be/stops/504954", "https://data.delijn.be/stops/508729"], ["https://data.delijn.be/stops/305187", "https://data.delijn.be/stops/307091"], ["https://data.delijn.be/stops/201380", "https://data.delijn.be/stops/205930"], ["https://data.delijn.be/stops/503532", "https://data.delijn.be/stops/508522"], ["https://data.delijn.be/stops/108369", "https://data.delijn.be/stops/108371"], ["https://data.delijn.be/stops/302694", "https://data.delijn.be/stops/302695"], ["https://data.delijn.be/stops/408038", "https://data.delijn.be/stops/408406"], ["https://data.delijn.be/stops/201733", "https://data.delijn.be/stops/211112"], ["https://data.delijn.be/stops/402464", "https://data.delijn.be/stops/402465"], ["https://data.delijn.be/stops/101975", "https://data.delijn.be/stops/105110"], ["https://data.delijn.be/stops/501218", "https://data.delijn.be/stops/506217"], ["https://data.delijn.be/stops/103291", "https://data.delijn.be/stops/105694"], ["https://data.delijn.be/stops/508180", "https://data.delijn.be/stops/508182"], ["https://data.delijn.be/stops/407618", "https://data.delijn.be/stops/410090"], ["https://data.delijn.be/stops/206184", "https://data.delijn.be/stops/308565"], ["https://data.delijn.be/stops/504515", "https://data.delijn.be/stops/509515"], ["https://data.delijn.be/stops/501308", "https://data.delijn.be/stops/506588"], ["https://data.delijn.be/stops/502002", "https://data.delijn.be/stops/505764"], ["https://data.delijn.be/stops/404278", "https://data.delijn.be/stops/404280"], ["https://data.delijn.be/stops/202738", "https://data.delijn.be/stops/203346"], ["https://data.delijn.be/stops/507195", "https://data.delijn.be/stops/507199"], ["https://data.delijn.be/stops/508359", "https://data.delijn.be/stops/508930"], ["https://data.delijn.be/stops/403691", "https://data.delijn.be/stops/409275"], ["https://data.delijn.be/stops/108266", "https://data.delijn.be/stops/109336"], ["https://data.delijn.be/stops/202235", "https://data.delijn.be/stops/202236"], ["https://data.delijn.be/stops/405882", "https://data.delijn.be/stops/409688"], ["https://data.delijn.be/stops/401441", "https://data.delijn.be/stops/404165"], ["https://data.delijn.be/stops/104959", "https://data.delijn.be/stops/108380"], ["https://data.delijn.be/stops/400106", "https://data.delijn.be/stops/410221"], ["https://data.delijn.be/stops/503169", "https://data.delijn.be/stops/507684"], ["https://data.delijn.be/stops/206602", "https://data.delijn.be/stops/206737"], ["https://data.delijn.be/stops/500944", "https://data.delijn.be/stops/509139"], ["https://data.delijn.be/stops/304519", "https://data.delijn.be/stops/307560"], ["https://data.delijn.be/stops/307844", "https://data.delijn.be/stops/307908"], ["https://data.delijn.be/stops/503439", "https://data.delijn.be/stops/503995"], ["https://data.delijn.be/stops/300828", "https://data.delijn.be/stops/306969"], ["https://data.delijn.be/stops/504492", "https://data.delijn.be/stops/504502"], ["https://data.delijn.be/stops/104894", "https://data.delijn.be/stops/105352"], ["https://data.delijn.be/stops/203180", "https://data.delijn.be/stops/203636"], ["https://data.delijn.be/stops/102131", "https://data.delijn.be/stops/106418"], ["https://data.delijn.be/stops/105830", "https://data.delijn.be/stops/105835"], ["https://data.delijn.be/stops/302519", "https://data.delijn.be/stops/302520"], ["https://data.delijn.be/stops/502798", "https://data.delijn.be/stops/507533"], ["https://data.delijn.be/stops/504067", "https://data.delijn.be/stops/505110"], ["https://data.delijn.be/stops/505154", "https://data.delijn.be/stops/505155"], ["https://data.delijn.be/stops/107280", "https://data.delijn.be/stops/107835"], ["https://data.delijn.be/stops/108434", "https://data.delijn.be/stops/108437"], ["https://data.delijn.be/stops/305029", "https://data.delijn.be/stops/305455"], ["https://data.delijn.be/stops/505647", "https://data.delijn.be/stops/505649"], ["https://data.delijn.be/stops/504126", "https://data.delijn.be/stops/504636"], ["https://data.delijn.be/stops/503285", "https://data.delijn.be/stops/505950"], ["https://data.delijn.be/stops/205546", "https://data.delijn.be/stops/205822"], ["https://data.delijn.be/stops/201892", "https://data.delijn.be/stops/202934"], ["https://data.delijn.be/stops/504435", "https://data.delijn.be/stops/504550"], ["https://data.delijn.be/stops/402743", "https://data.delijn.be/stops/306020"], ["https://data.delijn.be/stops/300396", "https://data.delijn.be/stops/301997"], ["https://data.delijn.be/stops/201090", "https://data.delijn.be/stops/206426"], ["https://data.delijn.be/stops/301329", "https://data.delijn.be/stops/306648"], ["https://data.delijn.be/stops/501438", "https://data.delijn.be/stops/506438"], ["https://data.delijn.be/stops/200419", "https://data.delijn.be/stops/203012"], ["https://data.delijn.be/stops/408943", "https://data.delijn.be/stops/408948"], ["https://data.delijn.be/stops/400807", "https://data.delijn.be/stops/400885"], ["https://data.delijn.be/stops/401638", "https://data.delijn.be/stops/308224"], ["https://data.delijn.be/stops/301453", "https://data.delijn.be/stops/307195"], ["https://data.delijn.be/stops/401565", "https://data.delijn.be/stops/401746"], ["https://data.delijn.be/stops/200355", "https://data.delijn.be/stops/201018"], ["https://data.delijn.be/stops/503272", "https://data.delijn.be/stops/509749"], ["https://data.delijn.be/stops/508329", "https://data.delijn.be/stops/508835"], ["https://data.delijn.be/stops/301134", "https://data.delijn.be/stops/301137"], ["https://data.delijn.be/stops/304427", "https://data.delijn.be/stops/304428"], ["https://data.delijn.be/stops/202341", "https://data.delijn.be/stops/203341"], ["https://data.delijn.be/stops/405902", "https://data.delijn.be/stops/405967"], ["https://data.delijn.be/stops/506629", "https://data.delijn.be/stops/509885"], ["https://data.delijn.be/stops/102093", "https://data.delijn.be/stops/105479"], ["https://data.delijn.be/stops/504162", "https://data.delijn.be/stops/505174"], ["https://data.delijn.be/stops/503658", "https://data.delijn.be/stops/504197"], ["https://data.delijn.be/stops/206583", "https://data.delijn.be/stops/207993"], ["https://data.delijn.be/stops/207754", "https://data.delijn.be/stops/207755"], ["https://data.delijn.be/stops/206145", "https://data.delijn.be/stops/206507"], ["https://data.delijn.be/stops/101278", "https://data.delijn.be/stops/106025"], ["https://data.delijn.be/stops/206628", "https://data.delijn.be/stops/207627"], ["https://data.delijn.be/stops/300743", "https://data.delijn.be/stops/300805"], ["https://data.delijn.be/stops/202183", "https://data.delijn.be/stops/202184"], ["https://data.delijn.be/stops/301494", "https://data.delijn.be/stops/301495"], ["https://data.delijn.be/stops/302453", "https://data.delijn.be/stops/302498"], ["https://data.delijn.be/stops/405045", "https://data.delijn.be/stops/405863"], ["https://data.delijn.be/stops/108740", "https://data.delijn.be/stops/109140"], ["https://data.delijn.be/stops/503286", "https://data.delijn.be/stops/505129"], ["https://data.delijn.be/stops/403453", "https://data.delijn.be/stops/403476"], ["https://data.delijn.be/stops/504330", "https://data.delijn.be/stops/509328"], ["https://data.delijn.be/stops/305215", "https://data.delijn.be/stops/306966"], ["https://data.delijn.be/stops/102701", "https://data.delijn.be/stops/105653"], ["https://data.delijn.be/stops/202142", "https://data.delijn.be/stops/203142"], ["https://data.delijn.be/stops/204006", "https://data.delijn.be/stops/204007"], ["https://data.delijn.be/stops/300231", "https://data.delijn.be/stops/300233"], ["https://data.delijn.be/stops/501386", "https://data.delijn.be/stops/501493"], ["https://data.delijn.be/stops/505665", "https://data.delijn.be/stops/505739"], ["https://data.delijn.be/stops/105811", "https://data.delijn.be/stops/105814"], ["https://data.delijn.be/stops/502120", "https://data.delijn.be/stops/507101"], ["https://data.delijn.be/stops/105069", "https://data.delijn.be/stops/106782"], ["https://data.delijn.be/stops/204290", "https://data.delijn.be/stops/205291"], ["https://data.delijn.be/stops/501079", "https://data.delijn.be/stops/501244"], ["https://data.delijn.be/stops/509050", "https://data.delijn.be/stops/509828"], ["https://data.delijn.be/stops/103575", "https://data.delijn.be/stops/103646"], ["https://data.delijn.be/stops/108066", "https://data.delijn.be/stops/108871"], ["https://data.delijn.be/stops/400716", "https://data.delijn.be/stops/400873"], ["https://data.delijn.be/stops/400877", "https://data.delijn.be/stops/402011"], ["https://data.delijn.be/stops/101665", "https://data.delijn.be/stops/104626"], ["https://data.delijn.be/stops/301290", "https://data.delijn.be/stops/307254"], ["https://data.delijn.be/stops/506080", "https://data.delijn.be/stops/506518"], ["https://data.delijn.be/stops/303481", "https://data.delijn.be/stops/303509"], ["https://data.delijn.be/stops/502533", "https://data.delijn.be/stops/505741"], ["https://data.delijn.be/stops/402495", "https://data.delijn.be/stops/404730"], ["https://data.delijn.be/stops/501298", "https://data.delijn.be/stops/506330"], ["https://data.delijn.be/stops/502928", "https://data.delijn.be/stops/509050"], ["https://data.delijn.be/stops/200031", "https://data.delijn.be/stops/205919"], ["https://data.delijn.be/stops/403686", "https://data.delijn.be/stops/403689"], ["https://data.delijn.be/stops/203345", "https://data.delijn.be/stops/209745"], ["https://data.delijn.be/stops/401042", "https://data.delijn.be/stops/409141"], ["https://data.delijn.be/stops/303621", "https://data.delijn.be/stops/306703"], ["https://data.delijn.be/stops/204164", "https://data.delijn.be/stops/207272"], ["https://data.delijn.be/stops/307109", "https://data.delijn.be/stops/308095"], ["https://data.delijn.be/stops/102622", "https://data.delijn.be/stops/108212"], ["https://data.delijn.be/stops/206763", "https://data.delijn.be/stops/208655"], ["https://data.delijn.be/stops/407008", "https://data.delijn.be/stops/407057"], ["https://data.delijn.be/stops/204145", "https://data.delijn.be/stops/207634"], ["https://data.delijn.be/stops/408259", "https://data.delijn.be/stops/307452"], ["https://data.delijn.be/stops/405767", "https://data.delijn.be/stops/406881"], ["https://data.delijn.be/stops/202769", "https://data.delijn.be/stops/203769"], ["https://data.delijn.be/stops/106750", "https://data.delijn.be/stops/307235"], ["https://data.delijn.be/stops/101935", "https://data.delijn.be/stops/101991"], ["https://data.delijn.be/stops/200967", "https://data.delijn.be/stops/208730"], ["https://data.delijn.be/stops/505373", "https://data.delijn.be/stops/505962"], ["https://data.delijn.be/stops/401378", "https://data.delijn.be/stops/410174"], ["https://data.delijn.be/stops/307639", "https://data.delijn.be/stops/307640"], ["https://data.delijn.be/stops/405448", "https://data.delijn.be/stops/405462"], ["https://data.delijn.be/stops/504779", "https://data.delijn.be/stops/509092"], ["https://data.delijn.be/stops/301834", "https://data.delijn.be/stops/305912"], ["https://data.delijn.be/stops/207146", "https://data.delijn.be/stops/207147"], ["https://data.delijn.be/stops/504667", "https://data.delijn.be/stops/509203"], ["https://data.delijn.be/stops/302097", "https://data.delijn.be/stops/302102"], ["https://data.delijn.be/stops/101442", "https://data.delijn.be/stops/102732"], ["https://data.delijn.be/stops/408341", "https://data.delijn.be/stops/408353"], ["https://data.delijn.be/stops/505440", "https://data.delijn.be/stops/509806"], ["https://data.delijn.be/stops/405067", "https://data.delijn.be/stops/405810"], ["https://data.delijn.be/stops/301720", "https://data.delijn.be/stops/301823"], ["https://data.delijn.be/stops/102652", "https://data.delijn.be/stops/104581"], ["https://data.delijn.be/stops/403145", "https://data.delijn.be/stops/407583"], ["https://data.delijn.be/stops/503655", "https://data.delijn.be/stops/504252"], ["https://data.delijn.be/stops/404458", "https://data.delijn.be/stops/404507"], ["https://data.delijn.be/stops/404699", "https://data.delijn.be/stops/405595"], ["https://data.delijn.be/stops/406200", "https://data.delijn.be/stops/406201"], ["https://data.delijn.be/stops/102888", "https://data.delijn.be/stops/108800"], ["https://data.delijn.be/stops/304974", "https://data.delijn.be/stops/304975"], ["https://data.delijn.be/stops/104097", "https://data.delijn.be/stops/104098"], ["https://data.delijn.be/stops/202481", "https://data.delijn.be/stops/203478"], ["https://data.delijn.be/stops/503088", "https://data.delijn.be/stops/503103"], ["https://data.delijn.be/stops/208471", "https://data.delijn.be/stops/209471"], ["https://data.delijn.be/stops/509117", "https://data.delijn.be/stops/509120"], ["https://data.delijn.be/stops/308070", "https://data.delijn.be/stops/308071"], ["https://data.delijn.be/stops/504119", "https://data.delijn.be/stops/504394"], ["https://data.delijn.be/stops/106976", "https://data.delijn.be/stops/106977"], ["https://data.delijn.be/stops/101516", "https://data.delijn.be/stops/109375"], ["https://data.delijn.be/stops/206917", "https://data.delijn.be/stops/207903"], ["https://data.delijn.be/stops/106963", "https://data.delijn.be/stops/106964"], ["https://data.delijn.be/stops/401477", "https://data.delijn.be/stops/401562"], ["https://data.delijn.be/stops/202184", "https://data.delijn.be/stops/204237"], ["https://data.delijn.be/stops/503155", "https://data.delijn.be/stops/508437"], ["https://data.delijn.be/stops/504181", "https://data.delijn.be/stops/504182"], ["https://data.delijn.be/stops/409424", "https://data.delijn.be/stops/409725"], ["https://data.delijn.be/stops/101983", "https://data.delijn.be/stops/109651"], ["https://data.delijn.be/stops/200227", "https://data.delijn.be/stops/201227"], ["https://data.delijn.be/stops/202779", "https://data.delijn.be/stops/203780"], ["https://data.delijn.be/stops/400205", "https://data.delijn.be/stops/400238"], ["https://data.delijn.be/stops/304917", "https://data.delijn.be/stops/308119"], ["https://data.delijn.be/stops/401728", "https://data.delijn.be/stops/406230"], ["https://data.delijn.be/stops/103593", "https://data.delijn.be/stops/109127"], ["https://data.delijn.be/stops/405302", "https://data.delijn.be/stops/408078"], ["https://data.delijn.be/stops/206250", "https://data.delijn.be/stops/207250"], ["https://data.delijn.be/stops/101547", "https://data.delijn.be/stops/107917"], ["https://data.delijn.be/stops/401446", "https://data.delijn.be/stops/401447"], ["https://data.delijn.be/stops/105771", "https://data.delijn.be/stops/109806"], ["https://data.delijn.be/stops/106817", "https://data.delijn.be/stops/106985"], ["https://data.delijn.be/stops/402410", "https://data.delijn.be/stops/402413"], ["https://data.delijn.be/stops/304348", "https://data.delijn.be/stops/304353"], ["https://data.delijn.be/stops/501624", "https://data.delijn.be/stops/506618"], ["https://data.delijn.be/stops/301540", "https://data.delijn.be/stops/305137"], ["https://data.delijn.be/stops/206197", "https://data.delijn.be/stops/207204"], ["https://data.delijn.be/stops/404460", "https://data.delijn.be/stops/404534"], ["https://data.delijn.be/stops/300413", "https://data.delijn.be/stops/303513"], ["https://data.delijn.be/stops/406589", "https://data.delijn.be/stops/406702"], ["https://data.delijn.be/stops/401746", "https://data.delijn.be/stops/410305"], ["https://data.delijn.be/stops/109887", "https://data.delijn.be/stops/109888"], ["https://data.delijn.be/stops/302003", "https://data.delijn.be/stops/302050"], ["https://data.delijn.be/stops/504212", "https://data.delijn.be/stops/509220"], ["https://data.delijn.be/stops/104638", "https://data.delijn.be/stops/107965"], ["https://data.delijn.be/stops/101502", "https://data.delijn.be/stops/308496"], ["https://data.delijn.be/stops/205434", "https://data.delijn.be/stops/205436"], ["https://data.delijn.be/stops/400925", "https://data.delijn.be/stops/401923"], ["https://data.delijn.be/stops/502100", "https://data.delijn.be/stops/502116"], ["https://data.delijn.be/stops/405566", "https://data.delijn.be/stops/410098"], ["https://data.delijn.be/stops/403640", "https://data.delijn.be/stops/407558"], ["https://data.delijn.be/stops/101589", "https://data.delijn.be/stops/103279"], ["https://data.delijn.be/stops/304502", "https://data.delijn.be/stops/306204"], ["https://data.delijn.be/stops/403930", "https://data.delijn.be/stops/403945"], ["https://data.delijn.be/stops/105424", "https://data.delijn.be/stops/105431"], ["https://data.delijn.be/stops/209290", "https://data.delijn.be/stops/209379"], ["https://data.delijn.be/stops/207790", "https://data.delijn.be/stops/208408"], ["https://data.delijn.be/stops/300121", "https://data.delijn.be/stops/300122"], ["https://data.delijn.be/stops/104687", "https://data.delijn.be/stops/104691"], ["https://data.delijn.be/stops/401297", "https://data.delijn.be/stops/401368"], ["https://data.delijn.be/stops/403774", "https://data.delijn.be/stops/403777"], ["https://data.delijn.be/stops/504489", "https://data.delijn.be/stops/509489"], ["https://data.delijn.be/stops/304873", "https://data.delijn.be/stops/307051"], ["https://data.delijn.be/stops/400103", "https://data.delijn.be/stops/410278"], ["https://data.delijn.be/stops/302789", "https://data.delijn.be/stops/307456"], ["https://data.delijn.be/stops/501294", "https://data.delijn.be/stops/501400"], ["https://data.delijn.be/stops/108445", "https://data.delijn.be/stops/108447"], ["https://data.delijn.be/stops/105517", "https://data.delijn.be/stops/105519"], ["https://data.delijn.be/stops/302347", "https://data.delijn.be/stops/302359"], ["https://data.delijn.be/stops/303785", "https://data.delijn.be/stops/303802"], ["https://data.delijn.be/stops/104511", "https://data.delijn.be/stops/107801"], ["https://data.delijn.be/stops/104749", "https://data.delijn.be/stops/107331"], ["https://data.delijn.be/stops/505972", "https://data.delijn.be/stops/508848"], ["https://data.delijn.be/stops/109362", "https://data.delijn.be/stops/109367"], ["https://data.delijn.be/stops/109306", "https://data.delijn.be/stops/109654"], ["https://data.delijn.be/stops/300109", "https://data.delijn.be/stops/300149"], ["https://data.delijn.be/stops/403009", "https://data.delijn.be/stops/410164"], ["https://data.delijn.be/stops/105603", "https://data.delijn.be/stops/105606"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/510004"], ["https://data.delijn.be/stops/404456", "https://data.delijn.be/stops/404480"], ["https://data.delijn.be/stops/108699", "https://data.delijn.be/stops/108704"], ["https://data.delijn.be/stops/105554", "https://data.delijn.be/stops/106034"], ["https://data.delijn.be/stops/505132", "https://data.delijn.be/stops/505978"], ["https://data.delijn.be/stops/503010", "https://data.delijn.be/stops/505974"], ["https://data.delijn.be/stops/305416", "https://data.delijn.be/stops/305422"], ["https://data.delijn.be/stops/500115", "https://data.delijn.be/stops/507381"], ["https://data.delijn.be/stops/109086", "https://data.delijn.be/stops/109319"], ["https://data.delijn.be/stops/104812", "https://data.delijn.be/stops/104813"], ["https://data.delijn.be/stops/502473", "https://data.delijn.be/stops/505317"], ["https://data.delijn.be/stops/509190", "https://data.delijn.be/stops/509641"], ["https://data.delijn.be/stops/300311", "https://data.delijn.be/stops/307805"], ["https://data.delijn.be/stops/502610", "https://data.delijn.be/stops/509880"], ["https://data.delijn.be/stops/408495", "https://data.delijn.be/stops/408608"], ["https://data.delijn.be/stops/202109", "https://data.delijn.be/stops/202167"], ["https://data.delijn.be/stops/300278", "https://data.delijn.be/stops/300285"], ["https://data.delijn.be/stops/200138", "https://data.delijn.be/stops/209931"], ["https://data.delijn.be/stops/502573", "https://data.delijn.be/stops/507572"], ["https://data.delijn.be/stops/302393", "https://data.delijn.be/stops/308556"], ["https://data.delijn.be/stops/301243", "https://data.delijn.be/stops/308559"], ["https://data.delijn.be/stops/304313", "https://data.delijn.be/stops/304329"], ["https://data.delijn.be/stops/502365", "https://data.delijn.be/stops/507365"], ["https://data.delijn.be/stops/503529", "https://data.delijn.be/stops/504670"], ["https://data.delijn.be/stops/203348", "https://data.delijn.be/stops/208676"], ["https://data.delijn.be/stops/503544", "https://data.delijn.be/stops/508564"], ["https://data.delijn.be/stops/503073", "https://data.delijn.be/stops/508238"], ["https://data.delijn.be/stops/206978", "https://data.delijn.be/stops/304275"], ["https://data.delijn.be/stops/207112", "https://data.delijn.be/stops/207125"], ["https://data.delijn.be/stops/206491", "https://data.delijn.be/stops/206518"], ["https://data.delijn.be/stops/502476", "https://data.delijn.be/stops/507476"], ["https://data.delijn.be/stops/301433", "https://data.delijn.be/stops/301434"], ["https://data.delijn.be/stops/104619", "https://data.delijn.be/stops/107870"], ["https://data.delijn.be/stops/504428", "https://data.delijn.be/stops/508299"], ["https://data.delijn.be/stops/405197", "https://data.delijn.be/stops/405198"], ["https://data.delijn.be/stops/305713", "https://data.delijn.be/stops/306305"], ["https://data.delijn.be/stops/300524", "https://data.delijn.be/stops/304905"], ["https://data.delijn.be/stops/505098", "https://data.delijn.be/stops/508586"], ["https://data.delijn.be/stops/503390", "https://data.delijn.be/stops/508390"], ["https://data.delijn.be/stops/203739", "https://data.delijn.be/stops/207431"], ["https://data.delijn.be/stops/101015", "https://data.delijn.be/stops/102987"], ["https://data.delijn.be/stops/106485", "https://data.delijn.be/stops/106486"], ["https://data.delijn.be/stops/506157", "https://data.delijn.be/stops/506165"], ["https://data.delijn.be/stops/300920", "https://data.delijn.be/stops/300933"], ["https://data.delijn.be/stops/202670", "https://data.delijn.be/stops/202671"], ["https://data.delijn.be/stops/308509", "https://data.delijn.be/stops/308691"], ["https://data.delijn.be/stops/402758", "https://data.delijn.be/stops/406545"], ["https://data.delijn.be/stops/402000", "https://data.delijn.be/stops/403081"], ["https://data.delijn.be/stops/509017", "https://data.delijn.be/stops/509018"], ["https://data.delijn.be/stops/502541", "https://data.delijn.be/stops/502542"], ["https://data.delijn.be/stops/509775", "https://data.delijn.be/stops/509784"], ["https://data.delijn.be/stops/404408", "https://data.delijn.be/stops/407245"], ["https://data.delijn.be/stops/204727", "https://data.delijn.be/stops/205726"], ["https://data.delijn.be/stops/106615", "https://data.delijn.be/stops/106692"], ["https://data.delijn.be/stops/307225", "https://data.delijn.be/stops/307913"], ["https://data.delijn.be/stops/104579", "https://data.delijn.be/stops/107893"], ["https://data.delijn.be/stops/109836", "https://data.delijn.be/stops/109838"], ["https://data.delijn.be/stops/206588", "https://data.delijn.be/stops/207572"], ["https://data.delijn.be/stops/103488", "https://data.delijn.be/stops/103499"], ["https://data.delijn.be/stops/303078", "https://data.delijn.be/stops/303081"], ["https://data.delijn.be/stops/203024", "https://data.delijn.be/stops/210039"], ["https://data.delijn.be/stops/301305", "https://data.delijn.be/stops/307324"], ["https://data.delijn.be/stops/401805", "https://data.delijn.be/stops/406078"], ["https://data.delijn.be/stops/405312", "https://data.delijn.be/stops/302827"], ["https://data.delijn.be/stops/104739", "https://data.delijn.be/stops/104747"], ["https://data.delijn.be/stops/305184", "https://data.delijn.be/stops/305206"], ["https://data.delijn.be/stops/305029", "https://data.delijn.be/stops/305031"], ["https://data.delijn.be/stops/209282", "https://data.delijn.be/stops/209967"], ["https://data.delijn.be/stops/208092", "https://data.delijn.be/stops/209056"], ["https://data.delijn.be/stops/203259", "https://data.delijn.be/stops/203260"], ["https://data.delijn.be/stops/302800", "https://data.delijn.be/stops/307838"], ["https://data.delijn.be/stops/207760", "https://data.delijn.be/stops/208187"], ["https://data.delijn.be/stops/400763", "https://data.delijn.be/stops/410035"], ["https://data.delijn.be/stops/200098", "https://data.delijn.be/stops/200383"], ["https://data.delijn.be/stops/401379", "https://data.delijn.be/stops/410183"], ["https://data.delijn.be/stops/102585", "https://data.delijn.be/stops/104280"], ["https://data.delijn.be/stops/402609", "https://data.delijn.be/stops/402645"], ["https://data.delijn.be/stops/102521", "https://data.delijn.be/stops/405013"], ["https://data.delijn.be/stops/501230", "https://data.delijn.be/stops/506227"], ["https://data.delijn.be/stops/504112", "https://data.delijn.be/stops/509111"], ["https://data.delijn.be/stops/101522", "https://data.delijn.be/stops/101983"], ["https://data.delijn.be/stops/201652", "https://data.delijn.be/stops/201662"], ["https://data.delijn.be/stops/507064", "https://data.delijn.be/stops/507071"], ["https://data.delijn.be/stops/208097", "https://data.delijn.be/stops/208160"], ["https://data.delijn.be/stops/201073", "https://data.delijn.be/stops/203353"], ["https://data.delijn.be/stops/102265", "https://data.delijn.be/stops/103762"], ["https://data.delijn.be/stops/206715", "https://data.delijn.be/stops/206868"], ["https://data.delijn.be/stops/101579", "https://data.delijn.be/stops/107205"], ["https://data.delijn.be/stops/208459", "https://data.delijn.be/stops/209754"], ["https://data.delijn.be/stops/106067", "https://data.delijn.be/stops/106068"], ["https://data.delijn.be/stops/105795", "https://data.delijn.be/stops/105942"], ["https://data.delijn.be/stops/207348", "https://data.delijn.be/stops/215809"], ["https://data.delijn.be/stops/505369", "https://data.delijn.be/stops/505426"], ["https://data.delijn.be/stops/201915", "https://data.delijn.be/stops/207426"], ["https://data.delijn.be/stops/106373", "https://data.delijn.be/stops/106387"], ["https://data.delijn.be/stops/101571", "https://data.delijn.be/stops/101577"], ["https://data.delijn.be/stops/203174", "https://data.delijn.be/stops/203190"], ["https://data.delijn.be/stops/502118", "https://data.delijn.be/stops/502620"], ["https://data.delijn.be/stops/201859", "https://data.delijn.be/stops/211038"], ["https://data.delijn.be/stops/404601", "https://data.delijn.be/stops/404603"], ["https://data.delijn.be/stops/102616", "https://data.delijn.be/stops/102617"], ["https://data.delijn.be/stops/505548", "https://data.delijn.be/stops/508572"], ["https://data.delijn.be/stops/308239", "https://data.delijn.be/stops/308242"], ["https://data.delijn.be/stops/200760", "https://data.delijn.be/stops/201806"], ["https://data.delijn.be/stops/101416", "https://data.delijn.be/stops/101427"], ["https://data.delijn.be/stops/300839", "https://data.delijn.be/stops/300884"], ["https://data.delijn.be/stops/208520", "https://data.delijn.be/stops/218016"], ["https://data.delijn.be/stops/201903", "https://data.delijn.be/stops/201932"], ["https://data.delijn.be/stops/503598", "https://data.delijn.be/stops/508078"], ["https://data.delijn.be/stops/203149", "https://data.delijn.be/stops/203150"], ["https://data.delijn.be/stops/204056", "https://data.delijn.be/stops/204057"], ["https://data.delijn.be/stops/106929", "https://data.delijn.be/stops/106930"], ["https://data.delijn.be/stops/206385", "https://data.delijn.be/stops/207807"], ["https://data.delijn.be/stops/410032", "https://data.delijn.be/stops/410033"], ["https://data.delijn.be/stops/107926", "https://data.delijn.be/stops/107930"], ["https://data.delijn.be/stops/306165", "https://data.delijn.be/stops/308587"], ["https://data.delijn.be/stops/401820", "https://data.delijn.be/stops/410357"], ["https://data.delijn.be/stops/408295", "https://data.delijn.be/stops/308291"], ["https://data.delijn.be/stops/303064", "https://data.delijn.be/stops/304484"], ["https://data.delijn.be/stops/109064", "https://data.delijn.be/stops/109065"], ["https://data.delijn.be/stops/206469", "https://data.delijn.be/stops/207862"], ["https://data.delijn.be/stops/404891", "https://data.delijn.be/stops/404925"], ["https://data.delijn.be/stops/204194", "https://data.delijn.be/stops/205232"], ["https://data.delijn.be/stops/206110", "https://data.delijn.be/stops/206111"], ["https://data.delijn.be/stops/200500", "https://data.delijn.be/stops/200501"], ["https://data.delijn.be/stops/405177", "https://data.delijn.be/stops/405203"], ["https://data.delijn.be/stops/208034", "https://data.delijn.be/stops/209034"], ["https://data.delijn.be/stops/400276", "https://data.delijn.be/stops/400368"], ["https://data.delijn.be/stops/207062", "https://data.delijn.be/stops/216008"], ["https://data.delijn.be/stops/502272", "https://data.delijn.be/stops/502273"], ["https://data.delijn.be/stops/503123", "https://data.delijn.be/stops/505793"], ["https://data.delijn.be/stops/103473", "https://data.delijn.be/stops/108267"], ["https://data.delijn.be/stops/505145", "https://data.delijn.be/stops/505775"], ["https://data.delijn.be/stops/408264", "https://data.delijn.be/stops/408271"], ["https://data.delijn.be/stops/205444", "https://data.delijn.be/stops/205445"], ["https://data.delijn.be/stops/106193", "https://data.delijn.be/stops/107440"], ["https://data.delijn.be/stops/305109", "https://data.delijn.be/stops/305128"], ["https://data.delijn.be/stops/400594", "https://data.delijn.be/stops/400595"], ["https://data.delijn.be/stops/106996", "https://data.delijn.be/stops/107099"], ["https://data.delijn.be/stops/408536", "https://data.delijn.be/stops/408663"], ["https://data.delijn.be/stops/104039", "https://data.delijn.be/stops/108369"], ["https://data.delijn.be/stops/504778", "https://data.delijn.be/stops/508531"], ["https://data.delijn.be/stops/302832", "https://data.delijn.be/stops/306777"], ["https://data.delijn.be/stops/103762", "https://data.delijn.be/stops/107485"], ["https://data.delijn.be/stops/508655", "https://data.delijn.be/stops/509252"], ["https://data.delijn.be/stops/405066", "https://data.delijn.be/stops/405067"], ["https://data.delijn.be/stops/200369", "https://data.delijn.be/stops/204810"], ["https://data.delijn.be/stops/204319", "https://data.delijn.be/stops/205697"], ["https://data.delijn.be/stops/502387", "https://data.delijn.be/stops/507389"], ["https://data.delijn.be/stops/502268", "https://data.delijn.be/stops/507268"], ["https://data.delijn.be/stops/408502", "https://data.delijn.be/stops/408504"], ["https://data.delijn.be/stops/101382", "https://data.delijn.be/stops/107099"], ["https://data.delijn.be/stops/206201", "https://data.delijn.be/stops/206295"], ["https://data.delijn.be/stops/305154", "https://data.delijn.be/stops/307872"], ["https://data.delijn.be/stops/302378", "https://data.delijn.be/stops/307842"], ["https://data.delijn.be/stops/200141", "https://data.delijn.be/stops/201245"], ["https://data.delijn.be/stops/501321", "https://data.delijn.be/stops/506321"], ["https://data.delijn.be/stops/208070", "https://data.delijn.be/stops/208088"], ["https://data.delijn.be/stops/404286", "https://data.delijn.be/stops/405814"], ["https://data.delijn.be/stops/405828", "https://data.delijn.be/stops/409437"], ["https://data.delijn.be/stops/302337", "https://data.delijn.be/stops/302343"], ["https://data.delijn.be/stops/106623", "https://data.delijn.be/stops/106670"], ["https://data.delijn.be/stops/201073", "https://data.delijn.be/stops/202353"], ["https://data.delijn.be/stops/107318", "https://data.delijn.be/stops/107321"], ["https://data.delijn.be/stops/402872", "https://data.delijn.be/stops/402874"], ["https://data.delijn.be/stops/208956", "https://data.delijn.be/stops/209956"], ["https://data.delijn.be/stops/302596", "https://data.delijn.be/stops/302693"], ["https://data.delijn.be/stops/204202", "https://data.delijn.be/stops/205082"], ["https://data.delijn.be/stops/101748", "https://data.delijn.be/stops/102754"], ["https://data.delijn.be/stops/300884", "https://data.delijn.be/stops/300885"], ["https://data.delijn.be/stops/400242", "https://data.delijn.be/stops/400935"], ["https://data.delijn.be/stops/206752", "https://data.delijn.be/stops/206755"], ["https://data.delijn.be/stops/505649", "https://data.delijn.be/stops/507918"], ["https://data.delijn.be/stops/501311", "https://data.delijn.be/stops/506309"], ["https://data.delijn.be/stops/402874", "https://data.delijn.be/stops/402876"], ["https://data.delijn.be/stops/207694", "https://data.delijn.be/stops/207956"], ["https://data.delijn.be/stops/503338", "https://data.delijn.be/stops/590010"], ["https://data.delijn.be/stops/208149", "https://data.delijn.be/stops/208521"], ["https://data.delijn.be/stops/302566", "https://data.delijn.be/stops/302605"], ["https://data.delijn.be/stops/504461", "https://data.delijn.be/stops/504679"], ["https://data.delijn.be/stops/207232", "https://data.delijn.be/stops/300161"], ["https://data.delijn.be/stops/401589", "https://data.delijn.be/stops/402124"], ["https://data.delijn.be/stops/405659", "https://data.delijn.be/stops/410191"], ["https://data.delijn.be/stops/302094", "https://data.delijn.be/stops/302098"], ["https://data.delijn.be/stops/503391", "https://data.delijn.be/stops/508251"], ["https://data.delijn.be/stops/302387", "https://data.delijn.be/stops/302391"], ["https://data.delijn.be/stops/300039", "https://data.delijn.be/stops/307732"], ["https://data.delijn.be/stops/302180", "https://data.delijn.be/stops/305091"], ["https://data.delijn.be/stops/106622", "https://data.delijn.be/stops/108017"], ["https://data.delijn.be/stops/403476", "https://data.delijn.be/stops/403477"], ["https://data.delijn.be/stops/202583", "https://data.delijn.be/stops/203128"], ["https://data.delijn.be/stops/201757", "https://data.delijn.be/stops/201758"], ["https://data.delijn.be/stops/400403", "https://data.delijn.be/stops/405871"], ["https://data.delijn.be/stops/405773", "https://data.delijn.be/stops/409421"], ["https://data.delijn.be/stops/502804", "https://data.delijn.be/stops/502805"], ["https://data.delijn.be/stops/200203", "https://data.delijn.be/stops/202554"], ["https://data.delijn.be/stops/506416", "https://data.delijn.be/stops/506475"], ["https://data.delijn.be/stops/409270", "https://data.delijn.be/stops/409271"], ["https://data.delijn.be/stops/201671", "https://data.delijn.be/stops/208640"], ["https://data.delijn.be/stops/504743", "https://data.delijn.be/stops/508760"], ["https://data.delijn.be/stops/103088", "https://data.delijn.be/stops/107476"], ["https://data.delijn.be/stops/107901", "https://data.delijn.be/stops/109751"], ["https://data.delijn.be/stops/201068", "https://data.delijn.be/stops/201188"], ["https://data.delijn.be/stops/106147", "https://data.delijn.be/stops/106155"], ["https://data.delijn.be/stops/106873", "https://data.delijn.be/stops/106877"], ["https://data.delijn.be/stops/505526", "https://data.delijn.be/stops/508632"], ["https://data.delijn.be/stops/403160", "https://data.delijn.be/stops/403220"], ["https://data.delijn.be/stops/505012", "https://data.delijn.be/stops/505735"], ["https://data.delijn.be/stops/101082", "https://data.delijn.be/stops/101083"], ["https://data.delijn.be/stops/504024", "https://data.delijn.be/stops/505301"], ["https://data.delijn.be/stops/402004", "https://data.delijn.be/stops/410354"], ["https://data.delijn.be/stops/400122", "https://data.delijn.be/stops/400123"], ["https://data.delijn.be/stops/507194", "https://data.delijn.be/stops/509312"], ["https://data.delijn.be/stops/501381", "https://data.delijn.be/stops/506383"], ["https://data.delijn.be/stops/200004", "https://data.delijn.be/stops/200005"], ["https://data.delijn.be/stops/404288", "https://data.delijn.be/stops/409746"], ["https://data.delijn.be/stops/200157", "https://data.delijn.be/stops/206404"], ["https://data.delijn.be/stops/206077", "https://data.delijn.be/stops/207078"], ["https://data.delijn.be/stops/301836", "https://data.delijn.be/stops/301847"], ["https://data.delijn.be/stops/404288", "https://data.delijn.be/stops/407511"], ["https://data.delijn.be/stops/207778", "https://data.delijn.be/stops/207798"], ["https://data.delijn.be/stops/505000", "https://data.delijn.be/stops/505107"], ["https://data.delijn.be/stops/108524", "https://data.delijn.be/stops/108527"], ["https://data.delijn.be/stops/403421", "https://data.delijn.be/stops/409149"], ["https://data.delijn.be/stops/200251", "https://data.delijn.be/stops/203193"], ["https://data.delijn.be/stops/405083", "https://data.delijn.be/stops/405109"], ["https://data.delijn.be/stops/304636", "https://data.delijn.be/stops/308963"], ["https://data.delijn.be/stops/300110", "https://data.delijn.be/stops/305995"], ["https://data.delijn.be/stops/501508", "https://data.delijn.be/stops/505401"], ["https://data.delijn.be/stops/502317", "https://data.delijn.be/stops/507336"], ["https://data.delijn.be/stops/300412", "https://data.delijn.be/stops/307490"], ["https://data.delijn.be/stops/400471", "https://data.delijn.be/stops/409249"], ["https://data.delijn.be/stops/300461", "https://data.delijn.be/stops/300471"], ["https://data.delijn.be/stops/301602", "https://data.delijn.be/stops/306301"], ["https://data.delijn.be/stops/507468", "https://data.delijn.be/stops/507761"], ["https://data.delijn.be/stops/407151", "https://data.delijn.be/stops/407901"], ["https://data.delijn.be/stops/503897", "https://data.delijn.be/stops/504141"], ["https://data.delijn.be/stops/504230", "https://data.delijn.be/stops/509230"], ["https://data.delijn.be/stops/402779", "https://data.delijn.be/stops/406921"], ["https://data.delijn.be/stops/505136", "https://data.delijn.be/stops/508669"], ["https://data.delijn.be/stops/208217", "https://data.delijn.be/stops/208218"], ["https://data.delijn.be/stops/104024", "https://data.delijn.be/stops/107214"], ["https://data.delijn.be/stops/208349", "https://data.delijn.be/stops/209191"], ["https://data.delijn.be/stops/204552", "https://data.delijn.be/stops/205297"], ["https://data.delijn.be/stops/103129", "https://data.delijn.be/stops/106783"], ["https://data.delijn.be/stops/400983", "https://data.delijn.be/stops/406569"], ["https://data.delijn.be/stops/501259", "https://data.delijn.be/stops/501406"], ["https://data.delijn.be/stops/401778", "https://data.delijn.be/stops/406135"], ["https://data.delijn.be/stops/504633", "https://data.delijn.be/stops/509633"], ["https://data.delijn.be/stops/501357", "https://data.delijn.be/stops/501772"], ["https://data.delijn.be/stops/300482", "https://data.delijn.be/stops/300496"], ["https://data.delijn.be/stops/409735", "https://data.delijn.be/stops/409737"], ["https://data.delijn.be/stops/408589", "https://data.delijn.be/stops/408670"], ["https://data.delijn.be/stops/401561", "https://data.delijn.be/stops/401738"], ["https://data.delijn.be/stops/402495", "https://data.delijn.be/stops/402496"], ["https://data.delijn.be/stops/302965", "https://data.delijn.be/stops/303005"], ["https://data.delijn.be/stops/409805", "https://data.delijn.be/stops/409810"], ["https://data.delijn.be/stops/403963", "https://data.delijn.be/stops/403968"], ["https://data.delijn.be/stops/103302", "https://data.delijn.be/stops/105769"], ["https://data.delijn.be/stops/108907", "https://data.delijn.be/stops/108908"], ["https://data.delijn.be/stops/400279", "https://data.delijn.be/stops/400954"], ["https://data.delijn.be/stops/503916", "https://data.delijn.be/stops/503922"], ["https://data.delijn.be/stops/103294", "https://data.delijn.be/stops/105031"], ["https://data.delijn.be/stops/101877", "https://data.delijn.be/stops/109496"], ["https://data.delijn.be/stops/504531", "https://data.delijn.be/stops/509155"], ["https://data.delijn.be/stops/302190", "https://data.delijn.be/stops/302193"], ["https://data.delijn.be/stops/200333", "https://data.delijn.be/stops/203890"], ["https://data.delijn.be/stops/104044", "https://data.delijn.be/stops/306591"], ["https://data.delijn.be/stops/400064", "https://data.delijn.be/stops/400065"], ["https://data.delijn.be/stops/407647", "https://data.delijn.be/stops/408698"], ["https://data.delijn.be/stops/305439", "https://data.delijn.be/stops/305507"], ["https://data.delijn.be/stops/205059", "https://data.delijn.be/stops/205318"], ["https://data.delijn.be/stops/502209", "https://data.delijn.be/stops/505156"], ["https://data.delijn.be/stops/406564", "https://data.delijn.be/stops/407203"], ["https://data.delijn.be/stops/102195", "https://data.delijn.be/stops/105316"], ["https://data.delijn.be/stops/200769", "https://data.delijn.be/stops/208250"], ["https://data.delijn.be/stops/106232", "https://data.delijn.be/stops/109802"], ["https://data.delijn.be/stops/500016", "https://data.delijn.be/stops/502466"], ["https://data.delijn.be/stops/204423", "https://data.delijn.be/stops/205431"], ["https://data.delijn.be/stops/507517", "https://data.delijn.be/stops/508800"], ["https://data.delijn.be/stops/207854", "https://data.delijn.be/stops/207863"], ["https://data.delijn.be/stops/408532", "https://data.delijn.be/stops/408763"], ["https://data.delijn.be/stops/501351", "https://data.delijn.be/stops/501449"], ["https://data.delijn.be/stops/302461", "https://data.delijn.be/stops/308669"], ["https://data.delijn.be/stops/308110", "https://data.delijn.be/stops/308111"], ["https://data.delijn.be/stops/303700", "https://data.delijn.be/stops/303728"], ["https://data.delijn.be/stops/203026", "https://data.delijn.be/stops/203082"], ["https://data.delijn.be/stops/204662", "https://data.delijn.be/stops/205662"], ["https://data.delijn.be/stops/206465", "https://data.delijn.be/stops/207465"], ["https://data.delijn.be/stops/201233", "https://data.delijn.be/stops/203354"], ["https://data.delijn.be/stops/501113", "https://data.delijn.be/stops/506659"], ["https://data.delijn.be/stops/208420", "https://data.delijn.be/stops/209401"], ["https://data.delijn.be/stops/207676", "https://data.delijn.be/stops/209135"], ["https://data.delijn.be/stops/504797", "https://data.delijn.be/stops/508470"], ["https://data.delijn.be/stops/300414", "https://data.delijn.be/stops/300601"], ["https://data.delijn.be/stops/105898", "https://data.delijn.be/stops/105902"], ["https://data.delijn.be/stops/404354", "https://data.delijn.be/stops/404355"], ["https://data.delijn.be/stops/306911", "https://data.delijn.be/stops/306912"], ["https://data.delijn.be/stops/200239", "https://data.delijn.be/stops/200276"], ["https://data.delijn.be/stops/206101", "https://data.delijn.be/stops/206846"], ["https://data.delijn.be/stops/508693", "https://data.delijn.be/stops/508718"], ["https://data.delijn.be/stops/505036", "https://data.delijn.be/stops/506022"], ["https://data.delijn.be/stops/408802", "https://data.delijn.be/stops/408829"], ["https://data.delijn.be/stops/200959", "https://data.delijn.be/stops/201906"], ["https://data.delijn.be/stops/500949", "https://data.delijn.be/stops/509154"], ["https://data.delijn.be/stops/300203", "https://data.delijn.be/stops/303127"], ["https://data.delijn.be/stops/202488", "https://data.delijn.be/stops/202930"], ["https://data.delijn.be/stops/501462", "https://data.delijn.be/stops/501535"], ["https://data.delijn.be/stops/305401", "https://data.delijn.be/stops/305402"], ["https://data.delijn.be/stops/505119", "https://data.delijn.be/stops/505175"], ["https://data.delijn.be/stops/304564", "https://data.delijn.be/stops/304616"], ["https://data.delijn.be/stops/304219", "https://data.delijn.be/stops/304220"], ["https://data.delijn.be/stops/200449", "https://data.delijn.be/stops/201449"], ["https://data.delijn.be/stops/501246", "https://data.delijn.be/stops/506236"], ["https://data.delijn.be/stops/200137", "https://data.delijn.be/stops/201138"], ["https://data.delijn.be/stops/104591", "https://data.delijn.be/stops/106535"], ["https://data.delijn.be/stops/202970", "https://data.delijn.be/stops/202971"], ["https://data.delijn.be/stops/202631", "https://data.delijn.be/stops/204091"], ["https://data.delijn.be/stops/302376", "https://data.delijn.be/stops/302382"], ["https://data.delijn.be/stops/108556", "https://data.delijn.be/stops/109602"], ["https://data.delijn.be/stops/105641", "https://data.delijn.be/stops/105811"], ["https://data.delijn.be/stops/108911", "https://data.delijn.be/stops/109398"], ["https://data.delijn.be/stops/503490", "https://data.delijn.be/stops/508482"], ["https://data.delijn.be/stops/407845", "https://data.delijn.be/stops/407906"], ["https://data.delijn.be/stops/304051", "https://data.delijn.be/stops/304056"], ["https://data.delijn.be/stops/108193", "https://data.delijn.be/stops/108194"], ["https://data.delijn.be/stops/105103", "https://data.delijn.be/stops/107633"], ["https://data.delijn.be/stops/208785", "https://data.delijn.be/stops/209178"], ["https://data.delijn.be/stops/503342", "https://data.delijn.be/stops/503343"], ["https://data.delijn.be/stops/208121", "https://data.delijn.be/stops/209121"], ["https://data.delijn.be/stops/401053", "https://data.delijn.be/stops/401136"], ["https://data.delijn.be/stops/302260", "https://data.delijn.be/stops/307007"], ["https://data.delijn.be/stops/503526", "https://data.delijn.be/stops/508524"], ["https://data.delijn.be/stops/200826", "https://data.delijn.be/stops/200875"], ["https://data.delijn.be/stops/201916", "https://data.delijn.be/stops/201920"], ["https://data.delijn.be/stops/403187", "https://data.delijn.be/stops/403864"], ["https://data.delijn.be/stops/502493", "https://data.delijn.be/stops/507493"], ["https://data.delijn.be/stops/303576", "https://data.delijn.be/stops/305281"], ["https://data.delijn.be/stops/203186", "https://data.delijn.be/stops/203298"], ["https://data.delijn.be/stops/104424", "https://data.delijn.be/stops/205445"], ["https://data.delijn.be/stops/407406", "https://data.delijn.be/stops/407571"], ["https://data.delijn.be/stops/503504", "https://data.delijn.be/stops/508611"], ["https://data.delijn.be/stops/402860", "https://data.delijn.be/stops/410203"], ["https://data.delijn.be/stops/300697", "https://data.delijn.be/stops/306941"], ["https://data.delijn.be/stops/503259", "https://data.delijn.be/stops/508174"], ["https://data.delijn.be/stops/303892", "https://data.delijn.be/stops/305565"], ["https://data.delijn.be/stops/201762", "https://data.delijn.be/stops/208272"], ["https://data.delijn.be/stops/103557", "https://data.delijn.be/stops/103558"], ["https://data.delijn.be/stops/207723", "https://data.delijn.be/stops/207921"], ["https://data.delijn.be/stops/203638", "https://data.delijn.be/stops/205072"], ["https://data.delijn.be/stops/407610", "https://data.delijn.be/stops/409788"], ["https://data.delijn.be/stops/302496", "https://data.delijn.be/stops/302497"], ["https://data.delijn.be/stops/305389", "https://data.delijn.be/stops/305418"], ["https://data.delijn.be/stops/109438", "https://data.delijn.be/stops/109440"], ["https://data.delijn.be/stops/305567", "https://data.delijn.be/stops/308829"], ["https://data.delijn.be/stops/203764", "https://data.delijn.be/stops/203765"], ["https://data.delijn.be/stops/105590", "https://data.delijn.be/stops/105595"], ["https://data.delijn.be/stops/202579", "https://data.delijn.be/stops/210077"], ["https://data.delijn.be/stops/206694", "https://data.delijn.be/stops/207185"], ["https://data.delijn.be/stops/300849", "https://data.delijn.be/stops/305319"], ["https://data.delijn.be/stops/302200", "https://data.delijn.be/stops/302201"], ["https://data.delijn.be/stops/303174", "https://data.delijn.be/stops/305526"], ["https://data.delijn.be/stops/501627", "https://data.delijn.be/stops/508806"], ["https://data.delijn.be/stops/401248", "https://data.delijn.be/stops/401254"], ["https://data.delijn.be/stops/302371", "https://data.delijn.be/stops/302750"], ["https://data.delijn.be/stops/300696", "https://data.delijn.be/stops/306936"], ["https://data.delijn.be/stops/202921", "https://data.delijn.be/stops/203921"], ["https://data.delijn.be/stops/405024", "https://data.delijn.be/stops/405025"], ["https://data.delijn.be/stops/200157", "https://data.delijn.be/stops/206242"], ["https://data.delijn.be/stops/106115", "https://data.delijn.be/stops/106117"], ["https://data.delijn.be/stops/504825", "https://data.delijn.be/stops/509423"], ["https://data.delijn.be/stops/407854", "https://data.delijn.be/stops/407855"], ["https://data.delijn.be/stops/300215", "https://data.delijn.be/stops/303735"], ["https://data.delijn.be/stops/304027", "https://data.delijn.be/stops/304100"], ["https://data.delijn.be/stops/408896", "https://data.delijn.be/stops/408916"], ["https://data.delijn.be/stops/205990", "https://data.delijn.be/stops/208779"], ["https://data.delijn.be/stops/304344", "https://data.delijn.be/stops/307344"], ["https://data.delijn.be/stops/204233", "https://data.delijn.be/stops/204261"], ["https://data.delijn.be/stops/300982", "https://data.delijn.be/stops/304722"], ["https://data.delijn.be/stops/108792", "https://data.delijn.be/stops/108797"], ["https://data.delijn.be/stops/405142", "https://data.delijn.be/stops/405289"], ["https://data.delijn.be/stops/305031", "https://data.delijn.be/stops/308034"], ["https://data.delijn.be/stops/407050", "https://data.delijn.be/stops/407052"], ["https://data.delijn.be/stops/301789", "https://data.delijn.be/stops/308887"], ["https://data.delijn.be/stops/501381", "https://data.delijn.be/stops/501641"], ["https://data.delijn.be/stops/103357", "https://data.delijn.be/stops/104075"], ["https://data.delijn.be/stops/303334", "https://data.delijn.be/stops/303335"], ["https://data.delijn.be/stops/204999", "https://data.delijn.be/stops/207723"], ["https://data.delijn.be/stops/305007", "https://data.delijn.be/stops/305025"], ["https://data.delijn.be/stops/105511", "https://data.delijn.be/stops/105788"], ["https://data.delijn.be/stops/200468", "https://data.delijn.be/stops/211086"], ["https://data.delijn.be/stops/408712", "https://data.delijn.be/stops/408713"], ["https://data.delijn.be/stops/405133", "https://data.delijn.be/stops/407928"], ["https://data.delijn.be/stops/303442", "https://data.delijn.be/stops/303449"], ["https://data.delijn.be/stops/301004", "https://data.delijn.be/stops/306968"], ["https://data.delijn.be/stops/206990", "https://data.delijn.be/stops/301442"], ["https://data.delijn.be/stops/501413", "https://data.delijn.be/stops/506413"], ["https://data.delijn.be/stops/409530", "https://data.delijn.be/stops/409547"], ["https://data.delijn.be/stops/402101", "https://data.delijn.be/stops/402330"], ["https://data.delijn.be/stops/303284", "https://data.delijn.be/stops/303316"], ["https://data.delijn.be/stops/300887", "https://data.delijn.be/stops/333454"], ["https://data.delijn.be/stops/200950", "https://data.delijn.be/stops/204994"], ["https://data.delijn.be/stops/109087", "https://data.delijn.be/stops/109314"], ["https://data.delijn.be/stops/504594", "https://data.delijn.be/stops/504775"], ["https://data.delijn.be/stops/503822", "https://data.delijn.be/stops/505073"], ["https://data.delijn.be/stops/503903", "https://data.delijn.be/stops/503907"], ["https://data.delijn.be/stops/202491", "https://data.delijn.be/stops/203491"], ["https://data.delijn.be/stops/207125", "https://data.delijn.be/stops/207412"], ["https://data.delijn.be/stops/500940", "https://data.delijn.be/stops/505642"], ["https://data.delijn.be/stops/102537", "https://data.delijn.be/stops/406547"], ["https://data.delijn.be/stops/209600", "https://data.delijn.be/stops/307302"], ["https://data.delijn.be/stops/205727", "https://data.delijn.be/stops/205728"], ["https://data.delijn.be/stops/200894", "https://data.delijn.be/stops/203340"], ["https://data.delijn.be/stops/201557", "https://data.delijn.be/stops/508021"], ["https://data.delijn.be/stops/407849", "https://data.delijn.be/stops/407852"], ["https://data.delijn.be/stops/301727", "https://data.delijn.be/stops/305227"], ["https://data.delijn.be/stops/304449", "https://data.delijn.be/stops/304451"], ["https://data.delijn.be/stops/101806", "https://data.delijn.be/stops/101955"], ["https://data.delijn.be/stops/501407", "https://data.delijn.be/stops/501698"], ["https://data.delijn.be/stops/503299", "https://data.delijn.be/stops/508299"], ["https://data.delijn.be/stops/403195", "https://data.delijn.be/stops/403226"], ["https://data.delijn.be/stops/403290", "https://data.delijn.be/stops/403394"], ["https://data.delijn.be/stops/101964", "https://data.delijn.be/stops/108733"], ["https://data.delijn.be/stops/102198", "https://data.delijn.be/stops/105847"], ["https://data.delijn.be/stops/303656", "https://data.delijn.be/stops/308616"], ["https://data.delijn.be/stops/106347", "https://data.delijn.be/stops/106350"], ["https://data.delijn.be/stops/102068", "https://data.delijn.be/stops/106929"], ["https://data.delijn.be/stops/307476", "https://data.delijn.be/stops/307477"], ["https://data.delijn.be/stops/403018", "https://data.delijn.be/stops/409339"], ["https://data.delijn.be/stops/306281", "https://data.delijn.be/stops/307096"], ["https://data.delijn.be/stops/202762", "https://data.delijn.be/stops/203761"], ["https://data.delijn.be/stops/200016", "https://data.delijn.be/stops/201017"], ["https://data.delijn.be/stops/104671", "https://data.delijn.be/stops/107382"], ["https://data.delijn.be/stops/504137", "https://data.delijn.be/stops/509137"], ["https://data.delijn.be/stops/403874", "https://data.delijn.be/stops/408185"], ["https://data.delijn.be/stops/107215", "https://data.delijn.be/stops/108250"], ["https://data.delijn.be/stops/308135", "https://data.delijn.be/stops/308178"], ["https://data.delijn.be/stops/106733", "https://data.delijn.be/stops/106774"], ["https://data.delijn.be/stops/502613", "https://data.delijn.be/stops/507749"], ["https://data.delijn.be/stops/102848", "https://data.delijn.be/stops/104981"], ["https://data.delijn.be/stops/404754", "https://data.delijn.be/stops/404758"], ["https://data.delijn.be/stops/206919", "https://data.delijn.be/stops/207919"], ["https://data.delijn.be/stops/405262", "https://data.delijn.be/stops/405278"], ["https://data.delijn.be/stops/400428", "https://data.delijn.be/stops/402759"], ["https://data.delijn.be/stops/206676", "https://data.delijn.be/stops/209166"], ["https://data.delijn.be/stops/202903", "https://data.delijn.be/stops/203904"], ["https://data.delijn.be/stops/109990", "https://data.delijn.be/stops/109997"], ["https://data.delijn.be/stops/208426", "https://data.delijn.be/stops/208681"], ["https://data.delijn.be/stops/403798", "https://data.delijn.be/stops/403805"], ["https://data.delijn.be/stops/103532", "https://data.delijn.be/stops/106338"], ["https://data.delijn.be/stops/208665", "https://data.delijn.be/stops/209128"], ["https://data.delijn.be/stops/401824", "https://data.delijn.be/stops/406333"], ["https://data.delijn.be/stops/503502", "https://data.delijn.be/stops/508867"], ["https://data.delijn.be/stops/204259", "https://data.delijn.be/stops/205095"], ["https://data.delijn.be/stops/204144", "https://data.delijn.be/stops/205131"], ["https://data.delijn.be/stops/107122", "https://data.delijn.be/stops/107127"], ["https://data.delijn.be/stops/206664", "https://data.delijn.be/stops/206711"], ["https://data.delijn.be/stops/305579", "https://data.delijn.be/stops/307824"], ["https://data.delijn.be/stops/402822", "https://data.delijn.be/stops/406304"], ["https://data.delijn.be/stops/206009", "https://data.delijn.be/stops/207052"], ["https://data.delijn.be/stops/403902", "https://data.delijn.be/stops/403914"], ["https://data.delijn.be/stops/108372", "https://data.delijn.be/stops/108462"], ["https://data.delijn.be/stops/305451", "https://data.delijn.be/stops/305452"], ["https://data.delijn.be/stops/400676", "https://data.delijn.be/stops/405029"], ["https://data.delijn.be/stops/307400", "https://data.delijn.be/stops/307401"], ["https://data.delijn.be/stops/503315", "https://data.delijn.be/stops/507173"], ["https://data.delijn.be/stops/201870", "https://data.delijn.be/stops/203662"], ["https://data.delijn.be/stops/202401", "https://data.delijn.be/stops/203401"], ["https://data.delijn.be/stops/504226", "https://data.delijn.be/stops/509228"], ["https://data.delijn.be/stops/108648", "https://data.delijn.be/stops/304329"], ["https://data.delijn.be/stops/503051", "https://data.delijn.be/stops/508056"], ["https://data.delijn.be/stops/402118", "https://data.delijn.be/stops/402127"], ["https://data.delijn.be/stops/202654", "https://data.delijn.be/stops/203654"], ["https://data.delijn.be/stops/209948", "https://data.delijn.be/stops/210119"], ["https://data.delijn.be/stops/202666", "https://data.delijn.be/stops/210080"], ["https://data.delijn.be/stops/202701", "https://data.delijn.be/stops/203705"], ["https://data.delijn.be/stops/102947", "https://data.delijn.be/stops/106238"], ["https://data.delijn.be/stops/306815", "https://data.delijn.be/stops/308506"], ["https://data.delijn.be/stops/405079", "https://data.delijn.be/stops/405091"], ["https://data.delijn.be/stops/503177", "https://data.delijn.be/stops/508176"], ["https://data.delijn.be/stops/201061", "https://data.delijn.be/stops/210058"], ["https://data.delijn.be/stops/408800", "https://data.delijn.be/stops/408861"], ["https://data.delijn.be/stops/201673", "https://data.delijn.be/stops/203207"], ["https://data.delijn.be/stops/202051", "https://data.delijn.be/stops/203052"], ["https://data.delijn.be/stops/305565", "https://data.delijn.be/stops/305568"], ["https://data.delijn.be/stops/300260", "https://data.delijn.be/stops/303893"], ["https://data.delijn.be/stops/208047", "https://data.delijn.be/stops/209047"], ["https://data.delijn.be/stops/201308", "https://data.delijn.be/stops/209450"], ["https://data.delijn.be/stops/502339", "https://data.delijn.be/stops/507339"], ["https://data.delijn.be/stops/202234", "https://data.delijn.be/stops/203234"], ["https://data.delijn.be/stops/403796", "https://data.delijn.be/stops/403800"], ["https://data.delijn.be/stops/307945", "https://data.delijn.be/stops/307946"], ["https://data.delijn.be/stops/216018", "https://data.delijn.be/stops/306072"], ["https://data.delijn.be/stops/204471", "https://data.delijn.be/stops/205471"], ["https://data.delijn.be/stops/210015", "https://data.delijn.be/stops/505723"], ["https://data.delijn.be/stops/108381", "https://data.delijn.be/stops/108445"], ["https://data.delijn.be/stops/209030", "https://data.delijn.be/stops/209031"], ["https://data.delijn.be/stops/105619", "https://data.delijn.be/stops/105622"], ["https://data.delijn.be/stops/201894", "https://data.delijn.be/stops/210069"], ["https://data.delijn.be/stops/300836", "https://data.delijn.be/stops/301792"], ["https://data.delijn.be/stops/104878", "https://data.delijn.be/stops/105278"], ["https://data.delijn.be/stops/504816", "https://data.delijn.be/stops/507960"], ["https://data.delijn.be/stops/105050", "https://data.delijn.be/stops/105060"], ["https://data.delijn.be/stops/502273", "https://data.delijn.be/stops/507673"], ["https://data.delijn.be/stops/102962", "https://data.delijn.be/stops/109279"], ["https://data.delijn.be/stops/407383", "https://data.delijn.be/stops/407857"], ["https://data.delijn.be/stops/304952", "https://data.delijn.be/stops/308033"], ["https://data.delijn.be/stops/105452", "https://data.delijn.be/stops/109937"], ["https://data.delijn.be/stops/206672", "https://data.delijn.be/stops/208096"], ["https://data.delijn.be/stops/206077", "https://data.delijn.be/stops/206912"], ["https://data.delijn.be/stops/206269", "https://data.delijn.be/stops/207269"], ["https://data.delijn.be/stops/403118", "https://data.delijn.be/stops/403120"], ["https://data.delijn.be/stops/109578", "https://data.delijn.be/stops/109581"], ["https://data.delijn.be/stops/207216", "https://data.delijn.be/stops/207905"], ["https://data.delijn.be/stops/502382", "https://data.delijn.be/stops/507398"], ["https://data.delijn.be/stops/102309", "https://data.delijn.be/stops/105552"], ["https://data.delijn.be/stops/301337", "https://data.delijn.be/stops/301338"], ["https://data.delijn.be/stops/507941", "https://data.delijn.be/stops/509949"], ["https://data.delijn.be/stops/209450", "https://data.delijn.be/stops/209987"], ["https://data.delijn.be/stops/505440", "https://data.delijn.be/stops/505825"], ["https://data.delijn.be/stops/410224", "https://data.delijn.be/stops/410270"], ["https://data.delijn.be/stops/403964", "https://data.delijn.be/stops/403978"], ["https://data.delijn.be/stops/406207", "https://data.delijn.be/stops/406449"], ["https://data.delijn.be/stops/204939", "https://data.delijn.be/stops/205939"], ["https://data.delijn.be/stops/208537", "https://data.delijn.be/stops/209538"], ["https://data.delijn.be/stops/504671", "https://data.delijn.be/stops/504766"], ["https://data.delijn.be/stops/401135", "https://data.delijn.be/stops/401139"], ["https://data.delijn.be/stops/505687", "https://data.delijn.be/stops/505783"], ["https://data.delijn.be/stops/405765", "https://data.delijn.be/stops/409421"], ["https://data.delijn.be/stops/502932", "https://data.delijn.be/stops/507016"], ["https://data.delijn.be/stops/304876", "https://data.delijn.be/stops/308544"], ["https://data.delijn.be/stops/104584", "https://data.delijn.be/stops/104587"], ["https://data.delijn.be/stops/303841", "https://data.delijn.be/stops/303870"], ["https://data.delijn.be/stops/203932", "https://data.delijn.be/stops/208426"], ["https://data.delijn.be/stops/505268", "https://data.delijn.be/stops/507715"], ["https://data.delijn.be/stops/200756", "https://data.delijn.be/stops/507693"], ["https://data.delijn.be/stops/200168", "https://data.delijn.be/stops/202624"], ["https://data.delijn.be/stops/304765", "https://data.delijn.be/stops/305250"], ["https://data.delijn.be/stops/302669", "https://data.delijn.be/stops/302670"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/404067"], ["https://data.delijn.be/stops/300398", "https://data.delijn.be/stops/308963"], ["https://data.delijn.be/stops/506429", "https://data.delijn.be/stops/506430"], ["https://data.delijn.be/stops/101305", "https://data.delijn.be/stops/102385"], ["https://data.delijn.be/stops/201103", "https://data.delijn.be/stops/211001"], ["https://data.delijn.be/stops/404795", "https://data.delijn.be/stops/404813"], ["https://data.delijn.be/stops/102613", "https://data.delijn.be/stops/102618"], ["https://data.delijn.be/stops/304591", "https://data.delijn.be/stops/304611"], ["https://data.delijn.be/stops/305612", "https://data.delijn.be/stops/305619"], ["https://data.delijn.be/stops/404149", "https://data.delijn.be/stops/404182"], ["https://data.delijn.be/stops/302474", "https://data.delijn.be/stops/302503"], ["https://data.delijn.be/stops/201326", "https://data.delijn.be/stops/210048"], ["https://data.delijn.be/stops/109244", "https://data.delijn.be/stops/109257"], ["https://data.delijn.be/stops/300824", "https://data.delijn.be/stops/300826"], ["https://data.delijn.be/stops/304639", "https://data.delijn.be/stops/304640"], ["https://data.delijn.be/stops/201851", "https://data.delijn.be/stops/201875"], ["https://data.delijn.be/stops/502428", "https://data.delijn.be/stops/502432"], ["https://data.delijn.be/stops/503772", "https://data.delijn.be/stops/509735"], ["https://data.delijn.be/stops/208831", "https://data.delijn.be/stops/209226"], ["https://data.delijn.be/stops/206269", "https://data.delijn.be/stops/207999"], ["https://data.delijn.be/stops/407629", "https://data.delijn.be/stops/407656"], ["https://data.delijn.be/stops/400063", "https://data.delijn.be/stops/400139"], ["https://data.delijn.be/stops/206693", "https://data.delijn.be/stops/207956"], ["https://data.delijn.be/stops/204759", "https://data.delijn.be/stops/204765"], ["https://data.delijn.be/stops/407141", "https://data.delijn.be/stops/407144"], ["https://data.delijn.be/stops/407734", "https://data.delijn.be/stops/407735"], ["https://data.delijn.be/stops/504248", "https://data.delijn.be/stops/505928"], ["https://data.delijn.be/stops/405769", "https://data.delijn.be/stops/307367"], ["https://data.delijn.be/stops/200159", "https://data.delijn.be/stops/210132"], ["https://data.delijn.be/stops/505097", "https://data.delijn.be/stops/505099"], ["https://data.delijn.be/stops/507033", "https://data.delijn.be/stops/507617"], ["https://data.delijn.be/stops/201667", "https://data.delijn.be/stops/209262"], ["https://data.delijn.be/stops/102071", "https://data.delijn.be/stops/106534"], ["https://data.delijn.be/stops/503675", "https://data.delijn.be/stops/508675"], ["https://data.delijn.be/stops/206811", "https://data.delijn.be/stops/207996"], ["https://data.delijn.be/stops/200951", "https://data.delijn.be/stops/203392"], ["https://data.delijn.be/stops/408097", "https://data.delijn.be/stops/408098"], ["https://data.delijn.be/stops/401637", "https://data.delijn.be/stops/308207"], ["https://data.delijn.be/stops/305960", "https://data.delijn.be/stops/305963"], ["https://data.delijn.be/stops/107795", "https://data.delijn.be/stops/107880"], ["https://data.delijn.be/stops/503141", "https://data.delijn.be/stops/505408"], ["https://data.delijn.be/stops/105876", "https://data.delijn.be/stops/105878"], ["https://data.delijn.be/stops/400817", "https://data.delijn.be/stops/406836"], ["https://data.delijn.be/stops/404559", "https://data.delijn.be/stops/405434"], ["https://data.delijn.be/stops/400039", "https://data.delijn.be/stops/400040"], ["https://data.delijn.be/stops/308464", "https://data.delijn.be/stops/308465"], ["https://data.delijn.be/stops/505076", "https://data.delijn.be/stops/507473"], ["https://data.delijn.be/stops/304648", "https://data.delijn.be/stops/304657"], ["https://data.delijn.be/stops/301741", "https://data.delijn.be/stops/305890"], ["https://data.delijn.be/stops/404009", "https://data.delijn.be/stops/404011"], ["https://data.delijn.be/stops/207690", "https://data.delijn.be/stops/308565"], ["https://data.delijn.be/stops/201918", "https://data.delijn.be/stops/207965"], ["https://data.delijn.be/stops/407055", "https://data.delijn.be/stops/410014"], ["https://data.delijn.be/stops/210004", "https://data.delijn.be/stops/211004"], ["https://data.delijn.be/stops/101235", "https://data.delijn.be/stops/101600"], ["https://data.delijn.be/stops/502378", "https://data.delijn.be/stops/507407"], ["https://data.delijn.be/stops/204918", "https://data.delijn.be/stops/205911"], ["https://data.delijn.be/stops/501213", "https://data.delijn.be/stops/506220"], ["https://data.delijn.be/stops/307628", "https://data.delijn.be/stops/307631"], ["https://data.delijn.be/stops/401773", "https://data.delijn.be/stops/401871"], ["https://data.delijn.be/stops/108061", "https://data.delijn.be/stops/108361"], ["https://data.delijn.be/stops/200808", "https://data.delijn.be/stops/203075"], ["https://data.delijn.be/stops/305804", "https://data.delijn.be/stops/305841"], ["https://data.delijn.be/stops/401063", "https://data.delijn.be/stops/406332"], ["https://data.delijn.be/stops/301789", "https://data.delijn.be/stops/303715"], ["https://data.delijn.be/stops/206479", "https://data.delijn.be/stops/207478"], ["https://data.delijn.be/stops/502368", "https://data.delijn.be/stops/507529"], ["https://data.delijn.be/stops/206087", "https://data.delijn.be/stops/206723"], ["https://data.delijn.be/stops/107897", "https://data.delijn.be/stops/108956"], ["https://data.delijn.be/stops/109552", "https://data.delijn.be/stops/300027"], ["https://data.delijn.be/stops/408890", "https://data.delijn.be/stops/408902"], ["https://data.delijn.be/stops/503005", "https://data.delijn.be/stops/508005"], ["https://data.delijn.be/stops/307441", "https://data.delijn.be/stops/308590"], ["https://data.delijn.be/stops/503272", "https://data.delijn.be/stops/505130"], ["https://data.delijn.be/stops/508059", "https://data.delijn.be/stops/508063"], ["https://data.delijn.be/stops/305262", "https://data.delijn.be/stops/305272"], ["https://data.delijn.be/stops/300655", "https://data.delijn.be/stops/306744"], ["https://data.delijn.be/stops/405408", "https://data.delijn.be/stops/302833"], ["https://data.delijn.be/stops/301234", "https://data.delijn.be/stops/307033"], ["https://data.delijn.be/stops/502050", "https://data.delijn.be/stops/502057"], ["https://data.delijn.be/stops/504541", "https://data.delijn.be/stops/509560"], ["https://data.delijn.be/stops/402544", "https://data.delijn.be/stops/404064"], ["https://data.delijn.be/stops/202778", "https://data.delijn.be/stops/203779"], ["https://data.delijn.be/stops/300262", "https://data.delijn.be/stops/304934"], ["https://data.delijn.be/stops/205523", "https://data.delijn.be/stops/205726"], ["https://data.delijn.be/stops/400774", "https://data.delijn.be/stops/400873"], ["https://data.delijn.be/stops/103472", "https://data.delijn.be/stops/104966"], ["https://data.delijn.be/stops/303753", "https://data.delijn.be/stops/303791"], ["https://data.delijn.be/stops/202888", "https://data.delijn.be/stops/203888"], ["https://data.delijn.be/stops/302270", "https://data.delijn.be/stops/302271"], ["https://data.delijn.be/stops/202827", "https://data.delijn.be/stops/202836"], ["https://data.delijn.be/stops/505227", "https://data.delijn.be/stops/505508"], ["https://data.delijn.be/stops/501120", "https://data.delijn.be/stops/506125"], ["https://data.delijn.be/stops/408475", "https://data.delijn.be/stops/410069"], ["https://data.delijn.be/stops/108706", "https://data.delijn.be/stops/108852"], ["https://data.delijn.be/stops/206628", "https://data.delijn.be/stops/209572"], ["https://data.delijn.be/stops/404622", "https://data.delijn.be/stops/406732"], ["https://data.delijn.be/stops/106596", "https://data.delijn.be/stops/107795"], ["https://data.delijn.be/stops/501057", "https://data.delijn.be/stops/506057"], ["https://data.delijn.be/stops/106913", "https://data.delijn.be/stops/106914"], ["https://data.delijn.be/stops/401095", "https://data.delijn.be/stops/401100"], ["https://data.delijn.be/stops/207513", "https://data.delijn.be/stops/207517"], ["https://data.delijn.be/stops/501114", "https://data.delijn.be/stops/501640"], ["https://data.delijn.be/stops/405808", "https://data.delijn.be/stops/405809"], ["https://data.delijn.be/stops/210118", "https://data.delijn.be/stops/211116"], ["https://data.delijn.be/stops/403420", "https://data.delijn.be/stops/403423"], ["https://data.delijn.be/stops/505232", "https://data.delijn.be/stops/507232"], ["https://data.delijn.be/stops/304033", "https://data.delijn.be/stops/305437"], ["https://data.delijn.be/stops/300456", "https://data.delijn.be/stops/304976"], ["https://data.delijn.be/stops/207767", "https://data.delijn.be/stops/207773"], ["https://data.delijn.be/stops/503693", "https://data.delijn.be/stops/508690"], ["https://data.delijn.be/stops/303771", "https://data.delijn.be/stops/303789"], ["https://data.delijn.be/stops/503828", "https://data.delijn.be/stops/505256"], ["https://data.delijn.be/stops/407641", "https://data.delijn.be/stops/407763"], ["https://data.delijn.be/stops/200369", "https://data.delijn.be/stops/201066"], ["https://data.delijn.be/stops/504263", "https://data.delijn.be/stops/505301"], ["https://data.delijn.be/stops/503804", "https://data.delijn.be/stops/505543"], ["https://data.delijn.be/stops/405072", "https://data.delijn.be/stops/406548"], ["https://data.delijn.be/stops/301447", "https://data.delijn.be/stops/307798"], ["https://data.delijn.be/stops/508918", "https://data.delijn.be/stops/508928"], ["https://data.delijn.be/stops/206008", "https://data.delijn.be/stops/206268"], ["https://data.delijn.be/stops/303336", "https://data.delijn.be/stops/305116"], ["https://data.delijn.be/stops/305819", "https://data.delijn.be/stops/305871"], ["https://data.delijn.be/stops/203231", "https://data.delijn.be/stops/203232"], ["https://data.delijn.be/stops/402821", "https://data.delijn.be/stops/406569"], ["https://data.delijn.be/stops/103963", "https://data.delijn.be/stops/108996"], ["https://data.delijn.be/stops/305504", "https://data.delijn.be/stops/305505"], ["https://data.delijn.be/stops/305540", "https://data.delijn.be/stops/305560"], ["https://data.delijn.be/stops/102183", "https://data.delijn.be/stops/107129"], ["https://data.delijn.be/stops/204376", "https://data.delijn.be/stops/204765"], ["https://data.delijn.be/stops/202607", "https://data.delijn.be/stops/215003"], ["https://data.delijn.be/stops/300524", "https://data.delijn.be/stops/305552"], ["https://data.delijn.be/stops/502580", "https://data.delijn.be/stops/502725"], ["https://data.delijn.be/stops/205998", "https://data.delijn.be/stops/209377"], ["https://data.delijn.be/stops/503754", "https://data.delijn.be/stops/509750"], ["https://data.delijn.be/stops/201666", "https://data.delijn.be/stops/201668"], ["https://data.delijn.be/stops/405967", "https://data.delijn.be/stops/405983"], ["https://data.delijn.be/stops/208354", "https://data.delijn.be/stops/208355"], ["https://data.delijn.be/stops/400725", "https://data.delijn.be/stops/400782"], ["https://data.delijn.be/stops/504158", "https://data.delijn.be/stops/504193"], ["https://data.delijn.be/stops/200668", "https://data.delijn.be/stops/200670"], ["https://data.delijn.be/stops/509617", "https://data.delijn.be/stops/509626"], ["https://data.delijn.be/stops/105063", "https://data.delijn.be/stops/105804"], ["https://data.delijn.be/stops/106682", "https://data.delijn.be/stops/106685"], ["https://data.delijn.be/stops/200336", "https://data.delijn.be/stops/201569"], ["https://data.delijn.be/stops/304706", "https://data.delijn.be/stops/304707"], ["https://data.delijn.be/stops/101125", "https://data.delijn.be/stops/101565"], ["https://data.delijn.be/stops/202208", "https://data.delijn.be/stops/203209"], ["https://data.delijn.be/stops/508454", "https://data.delijn.be/stops/508986"], ["https://data.delijn.be/stops/103139", "https://data.delijn.be/stops/103140"], ["https://data.delijn.be/stops/307640", "https://data.delijn.be/stops/307685"], ["https://data.delijn.be/stops/501388", "https://data.delijn.be/stops/501502"], ["https://data.delijn.be/stops/505223", "https://data.delijn.be/stops/505583"], ["https://data.delijn.be/stops/105794", "https://data.delijn.be/stops/105795"], ["https://data.delijn.be/stops/206402", "https://data.delijn.be/stops/207245"], ["https://data.delijn.be/stops/302491", "https://data.delijn.be/stops/302499"], ["https://data.delijn.be/stops/409106", "https://data.delijn.be/stops/409127"], ["https://data.delijn.be/stops/200506", "https://data.delijn.be/stops/203359"], ["https://data.delijn.be/stops/503045", "https://data.delijn.be/stops/508043"], ["https://data.delijn.be/stops/202971", "https://data.delijn.be/stops/202972"], ["https://data.delijn.be/stops/504485", "https://data.delijn.be/stops/504489"], ["https://data.delijn.be/stops/206814", "https://data.delijn.be/stops/207210"], ["https://data.delijn.be/stops/106777", "https://data.delijn.be/stops/106778"], ["https://data.delijn.be/stops/202085", "https://data.delijn.be/stops/203085"], ["https://data.delijn.be/stops/403917", "https://data.delijn.be/stops/404089"], ["https://data.delijn.be/stops/103641", "https://data.delijn.be/stops/103642"], ["https://data.delijn.be/stops/508689", "https://data.delijn.be/stops/508866"], ["https://data.delijn.be/stops/401016", "https://data.delijn.be/stops/401125"], ["https://data.delijn.be/stops/403409", "https://data.delijn.be/stops/405126"], ["https://data.delijn.be/stops/101078", "https://data.delijn.be/stops/101081"], ["https://data.delijn.be/stops/401423", "https://data.delijn.be/stops/401439"], ["https://data.delijn.be/stops/300435", "https://data.delijn.be/stops/300439"], ["https://data.delijn.be/stops/501050", "https://data.delijn.be/stops/506050"], ["https://data.delijn.be/stops/305797", "https://data.delijn.be/stops/305799"], ["https://data.delijn.be/stops/302087", "https://data.delijn.be/stops/306378"], ["https://data.delijn.be/stops/301985", "https://data.delijn.be/stops/301986"], ["https://data.delijn.be/stops/101471", "https://data.delijn.be/stops/109117"], ["https://data.delijn.be/stops/108638", "https://data.delijn.be/stops/108642"], ["https://data.delijn.be/stops/202178", "https://data.delijn.be/stops/203177"], ["https://data.delijn.be/stops/500208", "https://data.delijn.be/stops/500950"], ["https://data.delijn.be/stops/202696", "https://data.delijn.be/stops/203696"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/106453"], ["https://data.delijn.be/stops/407376", "https://data.delijn.be/stops/407598"], ["https://data.delijn.be/stops/503308", "https://data.delijn.be/stops/509926"], ["https://data.delijn.be/stops/504793", "https://data.delijn.be/stops/509774"], ["https://data.delijn.be/stops/105790", "https://data.delijn.be/stops/105792"], ["https://data.delijn.be/stops/304038", "https://data.delijn.be/stops/308644"], ["https://data.delijn.be/stops/406829", "https://data.delijn.be/stops/410070"], ["https://data.delijn.be/stops/300363", "https://data.delijn.be/stops/300372"], ["https://data.delijn.be/stops/504084", "https://data.delijn.be/stops/505803"], ["https://data.delijn.be/stops/401582", "https://data.delijn.be/stops/405501"], ["https://data.delijn.be/stops/301286", "https://data.delijn.be/stops/304691"], ["https://data.delijn.be/stops/109247", "https://data.delijn.be/stops/109248"], ["https://data.delijn.be/stops/201119", "https://data.delijn.be/stops/201120"], ["https://data.delijn.be/stops/407005", "https://data.delijn.be/stops/408441"], ["https://data.delijn.be/stops/202308", "https://data.delijn.be/stops/203307"], ["https://data.delijn.be/stops/206313", "https://data.delijn.be/stops/207314"], ["https://data.delijn.be/stops/405155", "https://data.delijn.be/stops/408367"], ["https://data.delijn.be/stops/301779", "https://data.delijn.be/stops/301780"], ["https://data.delijn.be/stops/204039", "https://data.delijn.be/stops/205039"], ["https://data.delijn.be/stops/301662", "https://data.delijn.be/stops/302136"], ["https://data.delijn.be/stops/302045", "https://data.delijn.be/stops/307285"], ["https://data.delijn.be/stops/404968", "https://data.delijn.be/stops/406890"], ["https://data.delijn.be/stops/103665", "https://data.delijn.be/stops/106359"], ["https://data.delijn.be/stops/202174", "https://data.delijn.be/stops/203172"], ["https://data.delijn.be/stops/400299", "https://data.delijn.be/stops/400365"], ["https://data.delijn.be/stops/503336", "https://data.delijn.be/stops/509807"], ["https://data.delijn.be/stops/101005", "https://data.delijn.be/stops/101008"], ["https://data.delijn.be/stops/206888", "https://data.delijn.be/stops/206916"], ["https://data.delijn.be/stops/205225", "https://data.delijn.be/stops/205226"], ["https://data.delijn.be/stops/505602", "https://data.delijn.be/stops/505603"], ["https://data.delijn.be/stops/502230", "https://data.delijn.be/stops/507230"], ["https://data.delijn.be/stops/300744", "https://data.delijn.be/stops/303223"], ["https://data.delijn.be/stops/507412", "https://data.delijn.be/stops/507668"], ["https://data.delijn.be/stops/504485", "https://data.delijn.be/stops/509248"], ["https://data.delijn.be/stops/302163", "https://data.delijn.be/stops/307140"], ["https://data.delijn.be/stops/308161", "https://data.delijn.be/stops/308181"], ["https://data.delijn.be/stops/403080", "https://data.delijn.be/stops/409574"], ["https://data.delijn.be/stops/104140", "https://data.delijn.be/stops/105750"], ["https://data.delijn.be/stops/300360", "https://data.delijn.be/stops/307003"], ["https://data.delijn.be/stops/403258", "https://data.delijn.be/stops/403260"], ["https://data.delijn.be/stops/106895", "https://data.delijn.be/stops/107220"], ["https://data.delijn.be/stops/200885", "https://data.delijn.be/stops/502596"], ["https://data.delijn.be/stops/509724", "https://data.delijn.be/stops/509725"], ["https://data.delijn.be/stops/109596", "https://data.delijn.be/stops/109597"], ["https://data.delijn.be/stops/203397", "https://data.delijn.be/stops/203611"], ["https://data.delijn.be/stops/209161", "https://data.delijn.be/stops/209162"], ["https://data.delijn.be/stops/500946", "https://data.delijn.be/stops/504168"], ["https://data.delijn.be/stops/401870", "https://data.delijn.be/stops/406092"], ["https://data.delijn.be/stops/206620", "https://data.delijn.be/stops/207621"], ["https://data.delijn.be/stops/301339", "https://data.delijn.be/stops/306119"], ["https://data.delijn.be/stops/102643", "https://data.delijn.be/stops/205649"], ["https://data.delijn.be/stops/200150", "https://data.delijn.be/stops/201151"], ["https://data.delijn.be/stops/402526", "https://data.delijn.be/stops/402536"], ["https://data.delijn.be/stops/303626", "https://data.delijn.be/stops/303627"], ["https://data.delijn.be/stops/306126", "https://data.delijn.be/stops/306127"], ["https://data.delijn.be/stops/206038", "https://data.delijn.be/stops/207046"], ["https://data.delijn.be/stops/202843", "https://data.delijn.be/stops/203839"], ["https://data.delijn.be/stops/401346", "https://data.delijn.be/stops/401349"], ["https://data.delijn.be/stops/502556", "https://data.delijn.be/stops/507548"], ["https://data.delijn.be/stops/201258", "https://data.delijn.be/stops/203611"], ["https://data.delijn.be/stops/505017", "https://data.delijn.be/stops/505627"], ["https://data.delijn.be/stops/104007", "https://data.delijn.be/stops/104275"], ["https://data.delijn.be/stops/202682", "https://data.delijn.be/stops/202710"], ["https://data.delijn.be/stops/405314", "https://data.delijn.be/stops/302829"], ["https://data.delijn.be/stops/303364", "https://data.delijn.be/stops/303389"], ["https://data.delijn.be/stops/504170", "https://data.delijn.be/stops/509164"], ["https://data.delijn.be/stops/307873", "https://data.delijn.be/stops/308122"], ["https://data.delijn.be/stops/407304", "https://data.delijn.be/stops/408472"], ["https://data.delijn.be/stops/501175", "https://data.delijn.be/stops/506175"], ["https://data.delijn.be/stops/508674", "https://data.delijn.be/stops/509842"], ["https://data.delijn.be/stops/401311", "https://data.delijn.be/stops/401314"], ["https://data.delijn.be/stops/104666", "https://data.delijn.be/stops/305987"], ["https://data.delijn.be/stops/101502", "https://data.delijn.be/stops/101977"], ["https://data.delijn.be/stops/208347", "https://data.delijn.be/stops/209347"], ["https://data.delijn.be/stops/200856", "https://data.delijn.be/stops/200857"], ["https://data.delijn.be/stops/104588", "https://data.delijn.be/stops/104589"], ["https://data.delijn.be/stops/504403", "https://data.delijn.be/stops/504414"], ["https://data.delijn.be/stops/302457", "https://data.delijn.be/stops/307514"], ["https://data.delijn.be/stops/501063", "https://data.delijn.be/stops/501064"], ["https://data.delijn.be/stops/300037", "https://data.delijn.be/stops/306865"], ["https://data.delijn.be/stops/200861", "https://data.delijn.be/stops/502065"], ["https://data.delijn.be/stops/101977", "https://data.delijn.be/stops/108274"], ["https://data.delijn.be/stops/105288", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/503361", "https://data.delijn.be/stops/503442"], ["https://data.delijn.be/stops/102292", "https://data.delijn.be/stops/108296"], ["https://data.delijn.be/stops/400583", "https://data.delijn.be/stops/400591"], ["https://data.delijn.be/stops/403051", "https://data.delijn.be/stops/403429"], ["https://data.delijn.be/stops/406547", "https://data.delijn.be/stops/408342"], ["https://data.delijn.be/stops/205303", "https://data.delijn.be/stops/205705"], ["https://data.delijn.be/stops/202929", "https://data.delijn.be/stops/203929"], ["https://data.delijn.be/stops/503035", "https://data.delijn.be/stops/508949"], ["https://data.delijn.be/stops/203809", "https://data.delijn.be/stops/210108"], ["https://data.delijn.be/stops/104133", "https://data.delijn.be/stops/108033"], ["https://data.delijn.be/stops/106738", "https://data.delijn.be/stops/107196"], ["https://data.delijn.be/stops/504111", "https://data.delijn.be/stops/509110"], ["https://data.delijn.be/stops/208813", "https://data.delijn.be/stops/208954"], ["https://data.delijn.be/stops/107526", "https://data.delijn.be/stops/107539"], ["https://data.delijn.be/stops/108067", "https://data.delijn.be/stops/108136"], ["https://data.delijn.be/stops/204393", "https://data.delijn.be/stops/205392"], ["https://data.delijn.be/stops/403861", "https://data.delijn.be/stops/403862"], ["https://data.delijn.be/stops/504602", "https://data.delijn.be/stops/509291"], ["https://data.delijn.be/stops/218011", "https://data.delijn.be/stops/219011"], ["https://data.delijn.be/stops/302353", "https://data.delijn.be/stops/306183"], ["https://data.delijn.be/stops/200451", "https://data.delijn.be/stops/202536"], ["https://data.delijn.be/stops/200723", "https://data.delijn.be/stops/203329"], ["https://data.delijn.be/stops/405443", "https://data.delijn.be/stops/405445"], ["https://data.delijn.be/stops/406151", "https://data.delijn.be/stops/406225"], ["https://data.delijn.be/stops/504089", "https://data.delijn.be/stops/505915"], ["https://data.delijn.be/stops/105896", "https://data.delijn.be/stops/105903"], ["https://data.delijn.be/stops/304377", "https://data.delijn.be/stops/304378"], ["https://data.delijn.be/stops/204980", "https://data.delijn.be/stops/205980"], ["https://data.delijn.be/stops/209491", "https://data.delijn.be/stops/211087"], ["https://data.delijn.be/stops/102485", "https://data.delijn.be/stops/103170"], ["https://data.delijn.be/stops/300837", "https://data.delijn.be/stops/301812"], ["https://data.delijn.be/stops/501259", "https://data.delijn.be/stops/501684"], ["https://data.delijn.be/stops/200928", "https://data.delijn.be/stops/200948"], ["https://data.delijn.be/stops/500138", "https://data.delijn.be/stops/590333"], ["https://data.delijn.be/stops/204666", "https://data.delijn.be/stops/205126"], ["https://data.delijn.be/stops/503240", "https://data.delijn.be/stops/508231"], ["https://data.delijn.be/stops/108843", "https://data.delijn.be/stops/108844"], ["https://data.delijn.be/stops/300359", "https://data.delijn.be/stops/304699"], ["https://data.delijn.be/stops/207381", "https://data.delijn.be/stops/207382"], ["https://data.delijn.be/stops/409062", "https://data.delijn.be/stops/409063"], ["https://data.delijn.be/stops/208005", "https://data.delijn.be/stops/209005"], ["https://data.delijn.be/stops/300155", "https://data.delijn.be/stops/300165"], ["https://data.delijn.be/stops/208402", "https://data.delijn.be/stops/208405"], ["https://data.delijn.be/stops/208127", "https://data.delijn.be/stops/209127"], ["https://data.delijn.be/stops/307373", "https://data.delijn.be/stops/307377"], ["https://data.delijn.be/stops/203121", "https://data.delijn.be/stops/203636"], ["https://data.delijn.be/stops/101050", "https://data.delijn.be/stops/103047"], ["https://data.delijn.be/stops/301304", "https://data.delijn.be/stops/301305"], ["https://data.delijn.be/stops/217009", "https://data.delijn.be/stops/217010"], ["https://data.delijn.be/stops/403900", "https://data.delijn.be/stops/403901"], ["https://data.delijn.be/stops/103082", "https://data.delijn.be/stops/104669"], ["https://data.delijn.be/stops/108474", "https://data.delijn.be/stops/108610"], ["https://data.delijn.be/stops/206046", "https://data.delijn.be/stops/206387"], ["https://data.delijn.be/stops/505051", "https://data.delijn.be/stops/507554"], ["https://data.delijn.be/stops/301539", "https://data.delijn.be/stops/301541"], ["https://data.delijn.be/stops/503898", "https://data.delijn.be/stops/508898"], ["https://data.delijn.be/stops/403041", "https://data.delijn.be/stops/403497"], ["https://data.delijn.be/stops/303512", "https://data.delijn.be/stops/307892"], ["https://data.delijn.be/stops/101581", "https://data.delijn.be/stops/101583"], ["https://data.delijn.be/stops/402870", "https://data.delijn.be/stops/404433"], ["https://data.delijn.be/stops/401882", "https://data.delijn.be/stops/410306"], ["https://data.delijn.be/stops/202652", "https://data.delijn.be/stops/203651"], ["https://data.delijn.be/stops/301402", "https://data.delijn.be/stops/304699"], ["https://data.delijn.be/stops/202954", "https://data.delijn.be/stops/203954"], ["https://data.delijn.be/stops/106265", "https://data.delijn.be/stops/106342"], ["https://data.delijn.be/stops/200731", "https://data.delijn.be/stops/202613"], ["https://data.delijn.be/stops/507361", "https://data.delijn.be/stops/507374"], ["https://data.delijn.be/stops/503808", "https://data.delijn.be/stops/505538"], ["https://data.delijn.be/stops/403703", "https://data.delijn.be/stops/403705"], ["https://data.delijn.be/stops/105231", "https://data.delijn.be/stops/109926"], ["https://data.delijn.be/stops/200267", "https://data.delijn.be/stops/200444"], ["https://data.delijn.be/stops/502231", "https://data.delijn.be/stops/505754"], ["https://data.delijn.be/stops/103963", "https://data.delijn.be/stops/408147"], ["https://data.delijn.be/stops/300006", "https://data.delijn.be/stops/306202"], ["https://data.delijn.be/stops/106360", "https://data.delijn.be/stops/109606"], ["https://data.delijn.be/stops/202940", "https://data.delijn.be/stops/211053"], ["https://data.delijn.be/stops/200278", "https://data.delijn.be/stops/200347"], ["https://data.delijn.be/stops/402409", "https://data.delijn.be/stops/404996"], ["https://data.delijn.be/stops/407732", "https://data.delijn.be/stops/409782"], ["https://data.delijn.be/stops/205993", "https://data.delijn.be/stops/208809"], ["https://data.delijn.be/stops/202852", "https://data.delijn.be/stops/203851"], ["https://data.delijn.be/stops/108356", "https://data.delijn.be/stops/109333"], ["https://data.delijn.be/stops/204595", "https://data.delijn.be/stops/205093"], ["https://data.delijn.be/stops/200584", "https://data.delijn.be/stops/201583"], ["https://data.delijn.be/stops/503839", "https://data.delijn.be/stops/505159"], ["https://data.delijn.be/stops/201899", "https://data.delijn.be/stops/202362"], ["https://data.delijn.be/stops/107026", "https://data.delijn.be/stops/107027"], ["https://data.delijn.be/stops/401034", "https://data.delijn.be/stops/401036"], ["https://data.delijn.be/stops/400304", "https://data.delijn.be/stops/400424"], ["https://data.delijn.be/stops/505045", "https://data.delijn.be/stops/505221"], ["https://data.delijn.be/stops/406933", "https://data.delijn.be/stops/406948"], ["https://data.delijn.be/stops/105106", "https://data.delijn.be/stops/106970"], ["https://data.delijn.be/stops/200577", "https://data.delijn.be/stops/203193"], ["https://data.delijn.be/stops/401460", "https://data.delijn.be/stops/410207"], ["https://data.delijn.be/stops/107427", "https://data.delijn.be/stops/107502"], ["https://data.delijn.be/stops/504754", "https://data.delijn.be/stops/508265"], ["https://data.delijn.be/stops/300733", "https://data.delijn.be/stops/300738"], ["https://data.delijn.be/stops/107258", "https://data.delijn.be/stops/107262"], ["https://data.delijn.be/stops/203782", "https://data.delijn.be/stops/203783"], ["https://data.delijn.be/stops/106115", "https://data.delijn.be/stops/108803"], ["https://data.delijn.be/stops/305333", "https://data.delijn.be/stops/307298"], ["https://data.delijn.be/stops/305514", "https://data.delijn.be/stops/305519"], ["https://data.delijn.be/stops/303477", "https://data.delijn.be/stops/303497"], ["https://data.delijn.be/stops/208575", "https://data.delijn.be/stops/306269"], ["https://data.delijn.be/stops/406574", "https://data.delijn.be/stops/406586"], ["https://data.delijn.be/stops/107080", "https://data.delijn.be/stops/108173"], ["https://data.delijn.be/stops/403218", "https://data.delijn.be/stops/403376"], ["https://data.delijn.be/stops/505692", "https://data.delijn.be/stops/507542"], ["https://data.delijn.be/stops/103273", "https://data.delijn.be/stops/108705"], ["https://data.delijn.be/stops/201855", "https://data.delijn.be/stops/203021"], ["https://data.delijn.be/stops/501519", "https://data.delijn.be/stops/510011"], ["https://data.delijn.be/stops/200318", "https://data.delijn.be/stops/200585"], ["https://data.delijn.be/stops/502412", "https://data.delijn.be/stops/507412"], ["https://data.delijn.be/stops/504502", "https://data.delijn.be/stops/509744"], ["https://data.delijn.be/stops/404442", "https://data.delijn.be/stops/404548"], ["https://data.delijn.be/stops/206611", "https://data.delijn.be/stops/206706"], ["https://data.delijn.be/stops/301835", "https://data.delijn.be/stops/305820"], ["https://data.delijn.be/stops/407067", "https://data.delijn.be/stops/407068"], ["https://data.delijn.be/stops/305259", "https://data.delijn.be/stops/305277"], ["https://data.delijn.be/stops/504470", "https://data.delijn.be/stops/509109"], ["https://data.delijn.be/stops/202290", "https://data.delijn.be/stops/203294"], ["https://data.delijn.be/stops/403022", "https://data.delijn.be/stops/405768"], ["https://data.delijn.be/stops/106429", "https://data.delijn.be/stops/106431"], ["https://data.delijn.be/stops/503042", "https://data.delijn.be/stops/508042"], ["https://data.delijn.be/stops/503286", "https://data.delijn.be/stops/508286"], ["https://data.delijn.be/stops/303774", "https://data.delijn.be/stops/307810"], ["https://data.delijn.be/stops/409286", "https://data.delijn.be/stops/409287"], ["https://data.delijn.be/stops/408454", "https://data.delijn.be/stops/408490"], ["https://data.delijn.be/stops/201281", "https://data.delijn.be/stops/201295"], ["https://data.delijn.be/stops/504317", "https://data.delijn.be/stops/509292"], ["https://data.delijn.be/stops/204556", "https://data.delijn.be/stops/211086"], ["https://data.delijn.be/stops/402525", "https://data.delijn.be/stops/402649"], ["https://data.delijn.be/stops/101274", "https://data.delijn.be/stops/103760"], ["https://data.delijn.be/stops/408636", "https://data.delijn.be/stops/408753"], ["https://data.delijn.be/stops/300016", "https://data.delijn.be/stops/300018"], ["https://data.delijn.be/stops/306681", "https://data.delijn.be/stops/306682"], ["https://data.delijn.be/stops/508705", "https://data.delijn.be/stops/508731"], ["https://data.delijn.be/stops/500136", "https://data.delijn.be/stops/502075"], ["https://data.delijn.be/stops/301865", "https://data.delijn.be/stops/305465"], ["https://data.delijn.be/stops/308496", "https://data.delijn.be/stops/308497"], ["https://data.delijn.be/stops/107452", "https://data.delijn.be/stops/107455"], ["https://data.delijn.be/stops/208025", "https://data.delijn.be/stops/209029"], ["https://data.delijn.be/stops/301624", "https://data.delijn.be/stops/301625"], ["https://data.delijn.be/stops/104412", "https://data.delijn.be/stops/205335"], ["https://data.delijn.be/stops/400748", "https://data.delijn.be/stops/407659"], ["https://data.delijn.be/stops/304793", "https://data.delijn.be/stops/304799"], ["https://data.delijn.be/stops/407103", "https://data.delijn.be/stops/407104"], ["https://data.delijn.be/stops/300074", "https://data.delijn.be/stops/304670"], ["https://data.delijn.be/stops/101178", "https://data.delijn.be/stops/106782"], ["https://data.delijn.be/stops/303810", "https://data.delijn.be/stops/303811"], ["https://data.delijn.be/stops/505764", "https://data.delijn.be/stops/507002"], ["https://data.delijn.be/stops/305553", "https://data.delijn.be/stops/305878"], ["https://data.delijn.be/stops/301970", "https://data.delijn.be/stops/304537"], ["https://data.delijn.be/stops/108377", "https://data.delijn.be/stops/108443"], ["https://data.delijn.be/stops/404532", "https://data.delijn.be/stops/404567"], ["https://data.delijn.be/stops/102694", "https://data.delijn.be/stops/103743"], ["https://data.delijn.be/stops/101721", "https://data.delijn.be/stops/109567"], ["https://data.delijn.be/stops/505798", "https://data.delijn.be/stops/508934"], ["https://data.delijn.be/stops/401794", "https://data.delijn.be/stops/401853"], ["https://data.delijn.be/stops/505515", "https://data.delijn.be/stops/505607"], ["https://data.delijn.be/stops/206710", "https://data.delijn.be/stops/207601"], ["https://data.delijn.be/stops/409102", "https://data.delijn.be/stops/409140"], ["https://data.delijn.be/stops/402532", "https://data.delijn.be/stops/402533"], ["https://data.delijn.be/stops/500127", "https://data.delijn.be/stops/502478"], ["https://data.delijn.be/stops/505694", "https://data.delijn.be/stops/505701"], ["https://data.delijn.be/stops/301951", "https://data.delijn.be/stops/303283"], ["https://data.delijn.be/stops/203731", "https://data.delijn.be/stops/203844"], ["https://data.delijn.be/stops/206232", "https://data.delijn.be/stops/206864"], ["https://data.delijn.be/stops/302808", "https://data.delijn.be/stops/305531"], ["https://data.delijn.be/stops/403872", "https://data.delijn.be/stops/410164"], ["https://data.delijn.be/stops/200504", "https://data.delijn.be/stops/200505"], ["https://data.delijn.be/stops/208134", "https://data.delijn.be/stops/208137"], ["https://data.delijn.be/stops/200928", "https://data.delijn.be/stops/203137"], ["https://data.delijn.be/stops/201451", "https://data.delijn.be/stops/203406"], ["https://data.delijn.be/stops/101729", "https://data.delijn.be/stops/106047"], ["https://data.delijn.be/stops/107581", "https://data.delijn.be/stops/107721"], ["https://data.delijn.be/stops/101800", "https://data.delijn.be/stops/101940"], ["https://data.delijn.be/stops/206519", "https://data.delijn.be/stops/216007"], ["https://data.delijn.be/stops/302348", "https://data.delijn.be/stops/302364"], ["https://data.delijn.be/stops/102918", "https://data.delijn.be/stops/102921"], ["https://data.delijn.be/stops/501038", "https://data.delijn.be/stops/506031"], ["https://data.delijn.be/stops/204761", "https://data.delijn.be/stops/205724"], ["https://data.delijn.be/stops/301967", "https://data.delijn.be/stops/303092"], ["https://data.delijn.be/stops/202447", "https://data.delijn.be/stops/203446"], ["https://data.delijn.be/stops/200631", "https://data.delijn.be/stops/202909"], ["https://data.delijn.be/stops/407680", "https://data.delijn.be/stops/407681"], ["https://data.delijn.be/stops/300473", "https://data.delijn.be/stops/302670"], ["https://data.delijn.be/stops/406317", "https://data.delijn.be/stops/406410"], ["https://data.delijn.be/stops/401074", "https://data.delijn.be/stops/408092"], ["https://data.delijn.be/stops/503047", "https://data.delijn.be/stops/503624"], ["https://data.delijn.be/stops/503292", "https://data.delijn.be/stops/503295"], ["https://data.delijn.be/stops/200694", "https://data.delijn.be/stops/203789"], ["https://data.delijn.be/stops/209343", "https://data.delijn.be/stops/219030"], ["https://data.delijn.be/stops/504884", "https://data.delijn.be/stops/505091"], ["https://data.delijn.be/stops/103019", "https://data.delijn.be/stops/103021"], ["https://data.delijn.be/stops/410117", "https://data.delijn.be/stops/410118"], ["https://data.delijn.be/stops/200318", "https://data.delijn.be/stops/200996"], ["https://data.delijn.be/stops/400106", "https://data.delijn.be/stops/400107"], ["https://data.delijn.be/stops/506105", "https://data.delijn.be/stops/506106"], ["https://data.delijn.be/stops/501133", "https://data.delijn.be/stops/506140"], ["https://data.delijn.be/stops/504299", "https://data.delijn.be/stops/504317"], ["https://data.delijn.be/stops/200296", "https://data.delijn.be/stops/211004"], ["https://data.delijn.be/stops/408303", "https://data.delijn.be/stops/408938"], ["https://data.delijn.be/stops/104080", "https://data.delijn.be/stops/104090"], ["https://data.delijn.be/stops/106098", "https://data.delijn.be/stops/106102"], ["https://data.delijn.be/stops/206382", "https://data.delijn.be/stops/207382"], ["https://data.delijn.be/stops/301882", "https://data.delijn.be/stops/305911"], ["https://data.delijn.be/stops/304616", "https://data.delijn.be/stops/304652"], ["https://data.delijn.be/stops/109399", "https://data.delijn.be/stops/109400"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/203621"], ["https://data.delijn.be/stops/301329", "https://data.delijn.be/stops/305920"], ["https://data.delijn.be/stops/500555", "https://data.delijn.be/stops/505844"], ["https://data.delijn.be/stops/300416", "https://data.delijn.be/stops/300426"], ["https://data.delijn.be/stops/204688", "https://data.delijn.be/stops/205689"], ["https://data.delijn.be/stops/205020", "https://data.delijn.be/stops/205413"], ["https://data.delijn.be/stops/400654", "https://data.delijn.be/stops/401246"], ["https://data.delijn.be/stops/409084", "https://data.delijn.be/stops/409086"], ["https://data.delijn.be/stops/404318", "https://data.delijn.be/stops/404319"], ["https://data.delijn.be/stops/102826", "https://data.delijn.be/stops/106682"], ["https://data.delijn.be/stops/204459", "https://data.delijn.be/stops/204460"], ["https://data.delijn.be/stops/406081", "https://data.delijn.be/stops/406087"], ["https://data.delijn.be/stops/107607", "https://data.delijn.be/stops/406796"], ["https://data.delijn.be/stops/200079", "https://data.delijn.be/stops/203895"], ["https://data.delijn.be/stops/101770", "https://data.delijn.be/stops/104300"], ["https://data.delijn.be/stops/105563", "https://data.delijn.be/stops/106289"], ["https://data.delijn.be/stops/303423", "https://data.delijn.be/stops/303430"], ["https://data.delijn.be/stops/207330", "https://data.delijn.be/stops/308845"], ["https://data.delijn.be/stops/403765", "https://data.delijn.be/stops/403793"], ["https://data.delijn.be/stops/105589", "https://data.delijn.be/stops/105592"], ["https://data.delijn.be/stops/407713", "https://data.delijn.be/stops/407714"], ["https://data.delijn.be/stops/206168", "https://data.delijn.be/stops/207732"], ["https://data.delijn.be/stops/402879", "https://data.delijn.be/stops/306020"], ["https://data.delijn.be/stops/206142", "https://data.delijn.be/stops/207142"], ["https://data.delijn.be/stops/408718", "https://data.delijn.be/stops/408719"], ["https://data.delijn.be/stops/404691", "https://data.delijn.be/stops/407315"], ["https://data.delijn.be/stops/300692", "https://data.delijn.be/stops/308132"], ["https://data.delijn.be/stops/301713", "https://data.delijn.be/stops/305235"], ["https://data.delijn.be/stops/502576", "https://data.delijn.be/stops/507576"], ["https://data.delijn.be/stops/401006", "https://data.delijn.be/stops/401009"], ["https://data.delijn.be/stops/108327", "https://data.delijn.be/stops/109305"], ["https://data.delijn.be/stops/104117", "https://data.delijn.be/stops/104122"], ["https://data.delijn.be/stops/402690", "https://data.delijn.be/stops/402865"], ["https://data.delijn.be/stops/501022", "https://data.delijn.be/stops/506471"], ["https://data.delijn.be/stops/504881", "https://data.delijn.be/stops/505705"], ["https://data.delijn.be/stops/206327", "https://data.delijn.be/stops/207732"], ["https://data.delijn.be/stops/400450", "https://data.delijn.be/stops/400478"], ["https://data.delijn.be/stops/408596", "https://data.delijn.be/stops/408744"], ["https://data.delijn.be/stops/307834", "https://data.delijn.be/stops/308279"], ["https://data.delijn.be/stops/400348", "https://data.delijn.be/stops/400350"], ["https://data.delijn.be/stops/406090", "https://data.delijn.be/stops/409406"], ["https://data.delijn.be/stops/503485", "https://data.delijn.be/stops/503486"], ["https://data.delijn.be/stops/206349", "https://data.delijn.be/stops/206350"], ["https://data.delijn.be/stops/203962", "https://data.delijn.be/stops/206554"], ["https://data.delijn.be/stops/400953", "https://data.delijn.be/stops/400955"], ["https://data.delijn.be/stops/204174", "https://data.delijn.be/stops/205388"], ["https://data.delijn.be/stops/402871", "https://data.delijn.be/stops/402872"], ["https://data.delijn.be/stops/202487", "https://data.delijn.be/stops/203488"], ["https://data.delijn.be/stops/304598", "https://data.delijn.be/stops/304651"], ["https://data.delijn.be/stops/304084", "https://data.delijn.be/stops/304085"], ["https://data.delijn.be/stops/403192", "https://data.delijn.be/stops/407463"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/501409"], ["https://data.delijn.be/stops/401804", "https://data.delijn.be/stops/401864"], ["https://data.delijn.be/stops/203151", "https://data.delijn.be/stops/203169"], ["https://data.delijn.be/stops/505310", "https://data.delijn.be/stops/507343"], ["https://data.delijn.be/stops/406211", "https://data.delijn.be/stops/406278"], ["https://data.delijn.be/stops/303632", "https://data.delijn.be/stops/306647"], ["https://data.delijn.be/stops/209054", "https://data.delijn.be/stops/209657"], ["https://data.delijn.be/stops/503504", "https://data.delijn.be/stops/508508"], ["https://data.delijn.be/stops/200411", "https://data.delijn.be/stops/200505"], ["https://data.delijn.be/stops/201609", "https://data.delijn.be/stops/202310"], ["https://data.delijn.be/stops/106014", "https://data.delijn.be/stops/107463"], ["https://data.delijn.be/stops/200274", "https://data.delijn.be/stops/201382"], ["https://data.delijn.be/stops/300029", "https://data.delijn.be/stops/303943"], ["https://data.delijn.be/stops/402071", "https://data.delijn.be/stops/405554"], ["https://data.delijn.be/stops/300495", "https://data.delijn.be/stops/307084"], ["https://data.delijn.be/stops/208528", "https://data.delijn.be/stops/209534"], ["https://data.delijn.be/stops/501080", "https://data.delijn.be/stops/506080"], ["https://data.delijn.be/stops/304467", "https://data.delijn.be/stops/304555"], ["https://data.delijn.be/stops/107513", "https://data.delijn.be/stops/107514"], ["https://data.delijn.be/stops/503558", "https://data.delijn.be/stops/503584"], ["https://data.delijn.be/stops/404008", "https://data.delijn.be/stops/404011"], ["https://data.delijn.be/stops/402713", "https://data.delijn.be/stops/410056"], ["https://data.delijn.be/stops/109890", "https://data.delijn.be/stops/109936"], ["https://data.delijn.be/stops/207374", "https://data.delijn.be/stops/207689"], ["https://data.delijn.be/stops/105926", "https://data.delijn.be/stops/109734"], ["https://data.delijn.be/stops/406158", "https://data.delijn.be/stops/406423"], ["https://data.delijn.be/stops/502228", "https://data.delijn.be/stops/507228"], ["https://data.delijn.be/stops/200912", "https://data.delijn.be/stops/200920"], ["https://data.delijn.be/stops/506075", "https://data.delijn.be/stops/506506"], ["https://data.delijn.be/stops/505333", "https://data.delijn.be/stops/505650"], ["https://data.delijn.be/stops/508049", "https://data.delijn.be/stops/508052"], ["https://data.delijn.be/stops/403920", "https://data.delijn.be/stops/403923"], ["https://data.delijn.be/stops/106746", "https://data.delijn.be/stops/106747"], ["https://data.delijn.be/stops/502089", "https://data.delijn.be/stops/507134"], ["https://data.delijn.be/stops/303249", "https://data.delijn.be/stops/307686"], ["https://data.delijn.be/stops/203968", "https://data.delijn.be/stops/204092"], ["https://data.delijn.be/stops/201780", "https://data.delijn.be/stops/203894"], ["https://data.delijn.be/stops/101642", "https://data.delijn.be/stops/106195"], ["https://data.delijn.be/stops/407944", "https://data.delijn.be/stops/407982"], ["https://data.delijn.be/stops/202731", "https://data.delijn.be/stops/203731"], ["https://data.delijn.be/stops/302704", "https://data.delijn.be/stops/302718"], ["https://data.delijn.be/stops/403329", "https://data.delijn.be/stops/403356"], ["https://data.delijn.be/stops/204025", "https://data.delijn.be/stops/205024"], ["https://data.delijn.be/stops/407916", "https://data.delijn.be/stops/407972"], ["https://data.delijn.be/stops/104338", "https://data.delijn.be/stops/105902"], ["https://data.delijn.be/stops/106736", "https://data.delijn.be/stops/106737"], ["https://data.delijn.be/stops/204071", "https://data.delijn.be/stops/205183"], ["https://data.delijn.be/stops/501126", "https://data.delijn.be/stops/506121"], ["https://data.delijn.be/stops/502198", "https://data.delijn.be/stops/507190"], ["https://data.delijn.be/stops/304655", "https://data.delijn.be/stops/304657"], ["https://data.delijn.be/stops/101267", "https://data.delijn.be/stops/101880"], ["https://data.delijn.be/stops/307575", "https://data.delijn.be/stops/307576"], ["https://data.delijn.be/stops/405612", "https://data.delijn.be/stops/407156"], ["https://data.delijn.be/stops/104338", "https://data.delijn.be/stops/104342"], ["https://data.delijn.be/stops/405769", "https://data.delijn.be/stops/405810"], ["https://data.delijn.be/stops/206189", "https://data.delijn.be/stops/207194"], ["https://data.delijn.be/stops/201274", "https://data.delijn.be/stops/201984"], ["https://data.delijn.be/stops/302005", "https://data.delijn.be/stops/303279"], ["https://data.delijn.be/stops/502564", "https://data.delijn.be/stops/507565"], ["https://data.delijn.be/stops/502078", "https://data.delijn.be/stops/507080"], ["https://data.delijn.be/stops/108693", "https://data.delijn.be/stops/108812"], ["https://data.delijn.be/stops/302469", "https://data.delijn.be/stops/308832"], ["https://data.delijn.be/stops/402805", "https://data.delijn.be/stops/406111"], ["https://data.delijn.be/stops/407833", "https://data.delijn.be/stops/407859"], ["https://data.delijn.be/stops/401060", "https://data.delijn.be/stops/401086"], ["https://data.delijn.be/stops/403923", "https://data.delijn.be/stops/404017"], ["https://data.delijn.be/stops/201693", "https://data.delijn.be/stops/205995"], ["https://data.delijn.be/stops/102060", "https://data.delijn.be/stops/104650"], ["https://data.delijn.be/stops/202361", "https://data.delijn.be/stops/203362"], ["https://data.delijn.be/stops/203940", "https://data.delijn.be/stops/211053"], ["https://data.delijn.be/stops/410298", "https://data.delijn.be/stops/410350"], ["https://data.delijn.be/stops/507500", "https://data.delijn.be/stops/507636"], ["https://data.delijn.be/stops/105422", "https://data.delijn.be/stops/109979"], ["https://data.delijn.be/stops/404631", "https://data.delijn.be/stops/406962"], ["https://data.delijn.be/stops/207319", "https://data.delijn.be/stops/207918"], ["https://data.delijn.be/stops/204387", "https://data.delijn.be/stops/205188"], ["https://data.delijn.be/stops/301269", "https://data.delijn.be/stops/305951"], ["https://data.delijn.be/stops/504048", "https://data.delijn.be/stops/504962"], ["https://data.delijn.be/stops/301379", "https://data.delijn.be/stops/306649"], ["https://data.delijn.be/stops/300729", "https://data.delijn.be/stops/304935"], ["https://data.delijn.be/stops/409051", "https://data.delijn.be/stops/409087"], ["https://data.delijn.be/stops/303448", "https://data.delijn.be/stops/304841"], ["https://data.delijn.be/stops/304817", "https://data.delijn.be/stops/307975"], ["https://data.delijn.be/stops/401826", "https://data.delijn.be/stops/401827"], ["https://data.delijn.be/stops/208282", "https://data.delijn.be/stops/209282"], ["https://data.delijn.be/stops/504988", "https://data.delijn.be/stops/504989"], ["https://data.delijn.be/stops/504541", "https://data.delijn.be/stops/504567"], ["https://data.delijn.be/stops/200902", "https://data.delijn.be/stops/203105"], ["https://data.delijn.be/stops/402706", "https://data.delijn.be/stops/402719"], ["https://data.delijn.be/stops/504124", "https://data.delijn.be/stops/509124"], ["https://data.delijn.be/stops/303245", "https://data.delijn.be/stops/304649"], ["https://data.delijn.be/stops/209713", "https://data.delijn.be/stops/209723"], ["https://data.delijn.be/stops/107040", "https://data.delijn.be/stops/107705"], ["https://data.delijn.be/stops/201187", "https://data.delijn.be/stops/201198"], ["https://data.delijn.be/stops/109422", "https://data.delijn.be/stops/109423"], ["https://data.delijn.be/stops/206124", "https://data.delijn.be/stops/206512"], ["https://data.delijn.be/stops/107403", "https://data.delijn.be/stops/107404"], ["https://data.delijn.be/stops/105556", "https://data.delijn.be/stops/106031"], ["https://data.delijn.be/stops/304770", "https://data.delijn.be/stops/304771"], ["https://data.delijn.be/stops/109967", "https://data.delijn.be/stops/109968"], ["https://data.delijn.be/stops/501407", "https://data.delijn.be/stops/501409"], ["https://data.delijn.be/stops/305174", "https://data.delijn.be/stops/307976"], ["https://data.delijn.be/stops/302507", "https://data.delijn.be/stops/305781"], ["https://data.delijn.be/stops/505276", "https://data.delijn.be/stops/508772"], ["https://data.delijn.be/stops/500927", "https://data.delijn.be/stops/504664"], ["https://data.delijn.be/stops/303420", "https://data.delijn.be/stops/303421"], ["https://data.delijn.be/stops/101538", "https://data.delijn.be/stops/108264"], ["https://data.delijn.be/stops/303134", "https://data.delijn.be/stops/303136"], ["https://data.delijn.be/stops/406649", "https://data.delijn.be/stops/406653"], ["https://data.delijn.be/stops/104038", "https://data.delijn.be/stops/109764"], ["https://data.delijn.be/stops/206241", "https://data.delijn.be/stops/207320"], ["https://data.delijn.be/stops/404244", "https://data.delijn.be/stops/404245"], ["https://data.delijn.be/stops/206155", "https://data.delijn.be/stops/207738"], ["https://data.delijn.be/stops/302388", "https://data.delijn.be/stops/306183"], ["https://data.delijn.be/stops/407205", "https://data.delijn.be/stops/407209"], ["https://data.delijn.be/stops/109131", "https://data.delijn.be/stops/109132"], ["https://data.delijn.be/stops/104960", "https://data.delijn.be/stops/104961"], ["https://data.delijn.be/stops/201222", "https://data.delijn.be/stops/209931"], ["https://data.delijn.be/stops/204606", "https://data.delijn.be/stops/205606"], ["https://data.delijn.be/stops/101296", "https://data.delijn.be/stops/105481"], ["https://data.delijn.be/stops/401819", "https://data.delijn.be/stops/406824"], ["https://data.delijn.be/stops/106706", "https://data.delijn.be/stops/106707"], ["https://data.delijn.be/stops/505115", "https://data.delijn.be/stops/505761"], ["https://data.delijn.be/stops/202746", "https://data.delijn.be/stops/207569"], ["https://data.delijn.be/stops/107262", "https://data.delijn.be/stops/107264"], ["https://data.delijn.be/stops/400621", "https://data.delijn.be/stops/404042"], ["https://data.delijn.be/stops/402528", "https://data.delijn.be/stops/404093"], ["https://data.delijn.be/stops/308484", "https://data.delijn.be/stops/308486"], ["https://data.delijn.be/stops/108179", "https://data.delijn.be/stops/108182"], ["https://data.delijn.be/stops/508211", "https://data.delijn.be/stops/508213"], ["https://data.delijn.be/stops/208387", "https://data.delijn.be/stops/209111"], ["https://data.delijn.be/stops/405147", "https://data.delijn.be/stops/405192"], ["https://data.delijn.be/stops/208338", "https://data.delijn.be/stops/209338"], ["https://data.delijn.be/stops/108945", "https://data.delijn.be/stops/109731"], ["https://data.delijn.be/stops/200767", "https://data.delijn.be/stops/208319"], ["https://data.delijn.be/stops/302743", "https://data.delijn.be/stops/307845"], ["https://data.delijn.be/stops/504643", "https://data.delijn.be/stops/509642"], ["https://data.delijn.be/stops/202630", "https://data.delijn.be/stops/204091"], ["https://data.delijn.be/stops/405438", "https://data.delijn.be/stops/408531"], ["https://data.delijn.be/stops/208342", "https://data.delijn.be/stops/209341"], ["https://data.delijn.be/stops/405776", "https://data.delijn.be/stops/405777"], ["https://data.delijn.be/stops/305393", "https://data.delijn.be/stops/305404"], ["https://data.delijn.be/stops/206524", "https://data.delijn.be/stops/207524"], ["https://data.delijn.be/stops/104139", "https://data.delijn.be/stops/108417"], ["https://data.delijn.be/stops/503297", "https://data.delijn.be/stops/504428"], ["https://data.delijn.be/stops/201052", "https://data.delijn.be/stops/211113"], ["https://data.delijn.be/stops/301441", "https://data.delijn.be/stops/301442"], ["https://data.delijn.be/stops/504616", "https://data.delijn.be/stops/504617"], ["https://data.delijn.be/stops/207864", "https://data.delijn.be/stops/209086"], ["https://data.delijn.be/stops/102656", "https://data.delijn.be/stops/205799"], ["https://data.delijn.be/stops/508034", "https://data.delijn.be/stops/508036"], ["https://data.delijn.be/stops/106384", "https://data.delijn.be/stops/106385"], ["https://data.delijn.be/stops/102427", "https://data.delijn.be/stops/109129"], ["https://data.delijn.be/stops/204121", "https://data.delijn.be/stops/205121"], ["https://data.delijn.be/stops/407984", "https://data.delijn.be/stops/408195"], ["https://data.delijn.be/stops/505052", "https://data.delijn.be/stops/507280"], ["https://data.delijn.be/stops/203159", "https://data.delijn.be/stops/205792"], ["https://data.delijn.be/stops/301604", "https://data.delijn.be/stops/307338"], ["https://data.delijn.be/stops/504117", "https://data.delijn.be/stops/509117"], ["https://data.delijn.be/stops/107497", "https://data.delijn.be/stops/107499"], ["https://data.delijn.be/stops/501261", "https://data.delijn.be/stops/506256"], ["https://data.delijn.be/stops/206243", "https://data.delijn.be/stops/207243"], ["https://data.delijn.be/stops/208814", "https://data.delijn.be/stops/209197"], ["https://data.delijn.be/stops/206219", "https://data.delijn.be/stops/207690"], ["https://data.delijn.be/stops/102686", "https://data.delijn.be/stops/103323"], ["https://data.delijn.be/stops/308869", "https://data.delijn.be/stops/308871"], ["https://data.delijn.be/stops/506363", "https://data.delijn.be/stops/506442"], ["https://data.delijn.be/stops/206624", "https://data.delijn.be/stops/206764"], ["https://data.delijn.be/stops/507207", "https://data.delijn.be/stops/507583"], ["https://data.delijn.be/stops/502483", "https://data.delijn.be/stops/505317"], ["https://data.delijn.be/stops/406993", "https://data.delijn.be/stops/409246"], ["https://data.delijn.be/stops/102087", "https://data.delijn.be/stops/108868"], ["https://data.delijn.be/stops/206629", "https://data.delijn.be/stops/207629"], ["https://data.delijn.be/stops/304971", "https://data.delijn.be/stops/304972"], ["https://data.delijn.be/stops/204760", "https://data.delijn.be/stops/205760"], ["https://data.delijn.be/stops/106893", "https://data.delijn.be/stops/106895"], ["https://data.delijn.be/stops/201811", "https://data.delijn.be/stops/201819"], ["https://data.delijn.be/stops/306198", "https://data.delijn.be/stops/306318"], ["https://data.delijn.be/stops/408352", "https://data.delijn.be/stops/408353"], ["https://data.delijn.be/stops/105421", "https://data.delijn.be/stops/105849"], ["https://data.delijn.be/stops/303254", "https://data.delijn.be/stops/303257"], ["https://data.delijn.be/stops/204773", "https://data.delijn.be/stops/205832"], ["https://data.delijn.be/stops/103470", "https://data.delijn.be/stops/106620"], ["https://data.delijn.be/stops/300919", "https://data.delijn.be/stops/307795"], ["https://data.delijn.be/stops/404888", "https://data.delijn.be/stops/404900"], ["https://data.delijn.be/stops/403254", "https://data.delijn.be/stops/403397"], ["https://data.delijn.be/stops/109888", "https://data.delijn.be/stops/109889"], ["https://data.delijn.be/stops/503922", "https://data.delijn.be/stops/508709"], ["https://data.delijn.be/stops/104742", "https://data.delijn.be/stops/104757"], ["https://data.delijn.be/stops/305244", "https://data.delijn.be/stops/305264"], ["https://data.delijn.be/stops/107446", "https://data.delijn.be/stops/109754"], ["https://data.delijn.be/stops/507023", "https://data.delijn.be/stops/508321"], ["https://data.delijn.be/stops/501158", "https://data.delijn.be/stops/509835"], ["https://data.delijn.be/stops/208554", "https://data.delijn.be/stops/307744"], ["https://data.delijn.be/stops/505274", "https://data.delijn.be/stops/505392"], ["https://data.delijn.be/stops/301885", "https://data.delijn.be/stops/302065"], ["https://data.delijn.be/stops/301405", "https://data.delijn.be/stops/308684"], ["https://data.delijn.be/stops/204587", "https://data.delijn.be/stops/204593"], ["https://data.delijn.be/stops/108229", "https://data.delijn.be/stops/109276"], ["https://data.delijn.be/stops/502380", "https://data.delijn.be/stops/507380"], ["https://data.delijn.be/stops/407481", "https://data.delijn.be/stops/410254"], ["https://data.delijn.be/stops/506140", "https://data.delijn.be/stops/590331"], ["https://data.delijn.be/stops/300274", "https://data.delijn.be/stops/300288"], ["https://data.delijn.be/stops/407653", "https://data.delijn.be/stops/407707"], ["https://data.delijn.be/stops/404252", "https://data.delijn.be/stops/404254"], ["https://data.delijn.be/stops/501736", "https://data.delijn.be/stops/506070"], ["https://data.delijn.be/stops/107888", "https://data.delijn.be/stops/107891"], ["https://data.delijn.be/stops/106908", "https://data.delijn.be/stops/107250"], ["https://data.delijn.be/stops/503914", "https://data.delijn.be/stops/509822"], ["https://data.delijn.be/stops/408229", "https://data.delijn.be/stops/408273"], ["https://data.delijn.be/stops/307381", "https://data.delijn.be/stops/308202"], ["https://data.delijn.be/stops/400344", "https://data.delijn.be/stops/400437"], ["https://data.delijn.be/stops/403372", "https://data.delijn.be/stops/405328"], ["https://data.delijn.be/stops/403946", "https://data.delijn.be/stops/407056"], ["https://data.delijn.be/stops/204465", "https://data.delijn.be/stops/204466"], ["https://data.delijn.be/stops/306558", "https://data.delijn.be/stops/307896"], ["https://data.delijn.be/stops/201735", "https://data.delijn.be/stops/203752"], ["https://data.delijn.be/stops/506242", "https://data.delijn.be/stops/506243"], ["https://data.delijn.be/stops/200200", "https://data.delijn.be/stops/201373"], ["https://data.delijn.be/stops/205160", "https://data.delijn.be/stops/205161"], ["https://data.delijn.be/stops/105163", "https://data.delijn.be/stops/105164"], ["https://data.delijn.be/stops/300048", "https://data.delijn.be/stops/308449"], ["https://data.delijn.be/stops/202045", "https://data.delijn.be/stops/210122"], ["https://data.delijn.be/stops/400917", "https://data.delijn.be/stops/400921"], ["https://data.delijn.be/stops/200010", "https://data.delijn.be/stops/200508"], ["https://data.delijn.be/stops/501379", "https://data.delijn.be/stops/501394"], ["https://data.delijn.be/stops/304320", "https://data.delijn.be/stops/304321"], ["https://data.delijn.be/stops/302486", "https://data.delijn.be/stops/302732"], ["https://data.delijn.be/stops/201901", "https://data.delijn.be/stops/201921"], ["https://data.delijn.be/stops/300298", "https://data.delijn.be/stops/300299"], ["https://data.delijn.be/stops/200885", "https://data.delijn.be/stops/507597"], ["https://data.delijn.be/stops/203185", "https://data.delijn.be/stops/204206"], ["https://data.delijn.be/stops/206796", "https://data.delijn.be/stops/209048"], ["https://data.delijn.be/stops/406339", "https://data.delijn.be/stops/406402"], ["https://data.delijn.be/stops/502200", "https://data.delijn.be/stops/507200"], ["https://data.delijn.be/stops/204389", "https://data.delijn.be/stops/205390"], ["https://data.delijn.be/stops/201524", "https://data.delijn.be/stops/211130"], ["https://data.delijn.be/stops/305747", "https://data.delijn.be/stops/305748"], ["https://data.delijn.be/stops/402042", "https://data.delijn.be/stops/410072"], ["https://data.delijn.be/stops/202549", "https://data.delijn.be/stops/203549"], ["https://data.delijn.be/stops/508385", "https://data.delijn.be/stops/508410"], ["https://data.delijn.be/stops/205208", "https://data.delijn.be/stops/215011"], ["https://data.delijn.be/stops/207668", "https://data.delijn.be/stops/208057"], ["https://data.delijn.be/stops/203217", "https://data.delijn.be/stops/204582"], ["https://data.delijn.be/stops/509844", "https://data.delijn.be/stops/509846"], ["https://data.delijn.be/stops/503398", "https://data.delijn.be/stops/508398"], ["https://data.delijn.be/stops/200548", "https://data.delijn.be/stops/201374"], ["https://data.delijn.be/stops/503958", "https://data.delijn.be/stops/509015"], ["https://data.delijn.be/stops/209582", "https://data.delijn.be/stops/209583"], ["https://data.delijn.be/stops/405366", "https://data.delijn.be/stops/405367"], ["https://data.delijn.be/stops/108967", "https://data.delijn.be/stops/108968"], ["https://data.delijn.be/stops/508526", "https://data.delijn.be/stops/509784"], ["https://data.delijn.be/stops/405948", "https://data.delijn.be/stops/405949"], ["https://data.delijn.be/stops/104347", "https://data.delijn.be/stops/104348"], ["https://data.delijn.be/stops/503074", "https://data.delijn.be/stops/503075"], ["https://data.delijn.be/stops/201648", "https://data.delijn.be/stops/202863"], ["https://data.delijn.be/stops/407891", "https://data.delijn.be/stops/408176"], ["https://data.delijn.be/stops/302792", "https://data.delijn.be/stops/305427"], ["https://data.delijn.be/stops/101080", "https://data.delijn.be/stops/105320"], ["https://data.delijn.be/stops/308052", "https://data.delijn.be/stops/308054"], ["https://data.delijn.be/stops/500001", "https://data.delijn.be/stops/507293"], ["https://data.delijn.be/stops/208025", "https://data.delijn.be/stops/208026"], ["https://data.delijn.be/stops/406931", "https://data.delijn.be/stops/406951"], ["https://data.delijn.be/stops/501186", "https://data.delijn.be/stops/506186"], ["https://data.delijn.be/stops/108205", "https://data.delijn.be/stops/108970"], ["https://data.delijn.be/stops/108642", "https://data.delijn.be/stops/109690"], ["https://data.delijn.be/stops/200422", "https://data.delijn.be/stops/201451"], ["https://data.delijn.be/stops/201752", "https://data.delijn.be/stops/209215"], ["https://data.delijn.be/stops/107270", "https://data.delijn.be/stops/109734"], ["https://data.delijn.be/stops/308248", "https://data.delijn.be/stops/308250"], ["https://data.delijn.be/stops/106957", "https://data.delijn.be/stops/106959"], ["https://data.delijn.be/stops/303996", "https://data.delijn.be/stops/304102"], ["https://data.delijn.be/stops/301609", "https://data.delijn.be/stops/301658"], ["https://data.delijn.be/stops/107554", "https://data.delijn.be/stops/108941"], ["https://data.delijn.be/stops/407446", "https://data.delijn.be/stops/407481"], ["https://data.delijn.be/stops/405697", "https://data.delijn.be/stops/405698"], ["https://data.delijn.be/stops/403690", "https://data.delijn.be/stops/409310"], ["https://data.delijn.be/stops/400734", "https://data.delijn.be/stops/400808"], ["https://data.delijn.be/stops/401836", "https://data.delijn.be/stops/401837"], ["https://data.delijn.be/stops/503293", "https://data.delijn.be/stops/508436"], ["https://data.delijn.be/stops/301495", "https://data.delijn.be/stops/308704"], ["https://data.delijn.be/stops/303740", "https://data.delijn.be/stops/304919"], ["https://data.delijn.be/stops/107251", "https://data.delijn.be/stops/107279"], ["https://data.delijn.be/stops/301881", "https://data.delijn.be/stops/301887"], ["https://data.delijn.be/stops/200923", "https://data.delijn.be/stops/203085"], ["https://data.delijn.be/stops/404667", "https://data.delijn.be/stops/404670"], ["https://data.delijn.be/stops/208195", "https://data.delijn.be/stops/208450"], ["https://data.delijn.be/stops/202110", "https://data.delijn.be/stops/202111"], ["https://data.delijn.be/stops/105901", "https://data.delijn.be/stops/105902"], ["https://data.delijn.be/stops/509737", "https://data.delijn.be/stops/509738"], ["https://data.delijn.be/stops/305138", "https://data.delijn.be/stops/305139"], ["https://data.delijn.be/stops/102680", "https://data.delijn.be/stops/105320"], ["https://data.delijn.be/stops/207301", "https://data.delijn.be/stops/207304"], ["https://data.delijn.be/stops/202731", "https://data.delijn.be/stops/202733"], ["https://data.delijn.be/stops/400423", "https://data.delijn.be/stops/409723"], ["https://data.delijn.be/stops/403446", "https://data.delijn.be/stops/409291"], ["https://data.delijn.be/stops/209234", "https://data.delijn.be/stops/209235"], ["https://data.delijn.be/stops/403464", "https://data.delijn.be/stops/403465"], ["https://data.delijn.be/stops/108694", "https://data.delijn.be/stops/108696"], ["https://data.delijn.be/stops/305162", "https://data.delijn.be/stops/307101"], ["https://data.delijn.be/stops/408836", "https://data.delijn.be/stops/408838"], ["https://data.delijn.be/stops/105567", "https://data.delijn.be/stops/105569"], ["https://data.delijn.be/stops/201690", "https://data.delijn.be/stops/203998"], ["https://data.delijn.be/stops/303993", "https://data.delijn.be/stops/305282"], ["https://data.delijn.be/stops/206928", "https://data.delijn.be/stops/209126"], ["https://data.delijn.be/stops/104713", "https://data.delijn.be/stops/108166"], ["https://data.delijn.be/stops/101941", "https://data.delijn.be/stops/101942"], ["https://data.delijn.be/stops/304406", "https://data.delijn.be/stops/307414"], ["https://data.delijn.be/stops/400015", "https://data.delijn.be/stops/400430"], ["https://data.delijn.be/stops/104037", "https://data.delijn.be/stops/108092"], ["https://data.delijn.be/stops/102249", "https://data.delijn.be/stops/104284"], ["https://data.delijn.be/stops/200157", "https://data.delijn.be/stops/207242"], ["https://data.delijn.be/stops/407609", "https://data.delijn.be/stops/407745"], ["https://data.delijn.be/stops/202685", "https://data.delijn.be/stops/202730"], ["https://data.delijn.be/stops/304399", "https://data.delijn.be/stops/304400"], ["https://data.delijn.be/stops/303734", "https://data.delijn.be/stops/303764"], ["https://data.delijn.be/stops/301753", "https://data.delijn.be/stops/308876"], ["https://data.delijn.be/stops/202859", "https://data.delijn.be/stops/203859"], ["https://data.delijn.be/stops/201112", "https://data.delijn.be/stops/202355"], ["https://data.delijn.be/stops/502484", "https://data.delijn.be/stops/507484"], ["https://data.delijn.be/stops/302268", "https://data.delijn.be/stops/302269"], ["https://data.delijn.be/stops/405204", "https://data.delijn.be/stops/405218"], ["https://data.delijn.be/stops/504659", "https://data.delijn.be/stops/509047"], ["https://data.delijn.be/stops/206831", "https://data.delijn.be/stops/207426"], ["https://data.delijn.be/stops/200962", "https://data.delijn.be/stops/201962"], ["https://data.delijn.be/stops/406215", "https://data.delijn.be/stops/406222"], ["https://data.delijn.be/stops/107051", "https://data.delijn.be/stops/107052"], ["https://data.delijn.be/stops/504079", "https://data.delijn.be/stops/505803"], ["https://data.delijn.be/stops/404945", "https://data.delijn.be/stops/408948"], ["https://data.delijn.be/stops/400533", "https://data.delijn.be/stops/400573"], ["https://data.delijn.be/stops/104738", "https://data.delijn.be/stops/107336"], ["https://data.delijn.be/stops/300670", "https://data.delijn.be/stops/305964"], ["https://data.delijn.be/stops/406555", "https://data.delijn.be/stops/406698"], ["https://data.delijn.be/stops/208570", "https://data.delijn.be/stops/209553"], ["https://data.delijn.be/stops/206282", "https://data.delijn.be/stops/206283"], ["https://data.delijn.be/stops/407731", "https://data.delijn.be/stops/409782"], ["https://data.delijn.be/stops/401347", "https://data.delijn.be/stops/401356"], ["https://data.delijn.be/stops/101017", "https://data.delijn.be/stops/108360"], ["https://data.delijn.be/stops/202758", "https://data.delijn.be/stops/202763"], ["https://data.delijn.be/stops/404644", "https://data.delijn.be/stops/406969"], ["https://data.delijn.be/stops/400296", "https://data.delijn.be/stops/406769"], ["https://data.delijn.be/stops/305303", "https://data.delijn.be/stops/308642"], ["https://data.delijn.be/stops/404039", "https://data.delijn.be/stops/405982"], ["https://data.delijn.be/stops/104894", "https://data.delijn.be/stops/105313"], ["https://data.delijn.be/stops/403298", "https://data.delijn.be/stops/403299"], ["https://data.delijn.be/stops/308475", "https://data.delijn.be/stops/308477"], ["https://data.delijn.be/stops/402174", "https://data.delijn.be/stops/402372"], ["https://data.delijn.be/stops/302102", "https://data.delijn.be/stops/302103"], ["https://data.delijn.be/stops/507205", "https://data.delijn.be/stops/509944"], ["https://data.delijn.be/stops/104101", "https://data.delijn.be/stops/108295"], ["https://data.delijn.be/stops/402205", "https://data.delijn.be/stops/407328"], ["https://data.delijn.be/stops/405545", "https://data.delijn.be/stops/406886"], ["https://data.delijn.be/stops/303567", "https://data.delijn.be/stops/306283"], ["https://data.delijn.be/stops/501283", "https://data.delijn.be/stops/506317"], ["https://data.delijn.be/stops/108879", "https://data.delijn.be/stops/108880"], ["https://data.delijn.be/stops/505767", "https://data.delijn.be/stops/507502"], ["https://data.delijn.be/stops/206300", "https://data.delijn.be/stops/206466"], ["https://data.delijn.be/stops/300208", "https://data.delijn.be/stops/301377"], ["https://data.delijn.be/stops/106882", "https://data.delijn.be/stops/106883"], ["https://data.delijn.be/stops/504284", "https://data.delijn.be/stops/509286"], ["https://data.delijn.be/stops/507318", "https://data.delijn.be/stops/507711"], ["https://data.delijn.be/stops/101146", "https://data.delijn.be/stops/106863"], ["https://data.delijn.be/stops/303681", "https://data.delijn.be/stops/304421"], ["https://data.delijn.be/stops/406218", "https://data.delijn.be/stops/406219"], ["https://data.delijn.be/stops/503469", "https://data.delijn.be/stops/508354"], ["https://data.delijn.be/stops/301857", "https://data.delijn.be/stops/301871"], ["https://data.delijn.be/stops/206843", "https://data.delijn.be/stops/207103"], ["https://data.delijn.be/stops/300133", "https://data.delijn.be/stops/307849"], ["https://data.delijn.be/stops/102717", "https://data.delijn.be/stops/103002"], ["https://data.delijn.be/stops/200468", "https://data.delijn.be/stops/201132"], ["https://data.delijn.be/stops/502643", "https://data.delijn.be/stops/507728"], ["https://data.delijn.be/stops/207414", "https://data.delijn.be/stops/207600"], ["https://data.delijn.be/stops/303708", "https://data.delijn.be/stops/303738"], ["https://data.delijn.be/stops/504360", "https://data.delijn.be/stops/509360"], ["https://data.delijn.be/stops/505578", "https://data.delijn.be/stops/508765"], ["https://data.delijn.be/stops/401550", "https://data.delijn.be/stops/405545"], ["https://data.delijn.be/stops/102410", "https://data.delijn.be/stops/102415"], ["https://data.delijn.be/stops/105268", "https://data.delijn.be/stops/109957"], ["https://data.delijn.be/stops/102121", "https://data.delijn.be/stops/109371"], ["https://data.delijn.be/stops/303611", "https://data.delijn.be/stops/303612"], ["https://data.delijn.be/stops/204429", "https://data.delijn.be/stops/205429"], ["https://data.delijn.be/stops/202870", "https://data.delijn.be/stops/203869"], ["https://data.delijn.be/stops/202742", "https://data.delijn.be/stops/202865"], ["https://data.delijn.be/stops/200918", "https://data.delijn.be/stops/203076"], ["https://data.delijn.be/stops/502100", "https://data.delijn.be/stops/502243"], ["https://data.delijn.be/stops/405671", "https://data.delijn.be/stops/406969"], ["https://data.delijn.be/stops/109163", "https://data.delijn.be/stops/109166"], ["https://data.delijn.be/stops/401214", "https://data.delijn.be/stops/401215"], ["https://data.delijn.be/stops/301291", "https://data.delijn.be/stops/301292"], ["https://data.delijn.be/stops/503763", "https://data.delijn.be/stops/508624"], ["https://data.delijn.be/stops/301405", "https://data.delijn.be/stops/304739"], ["https://data.delijn.be/stops/402485", "https://data.delijn.be/stops/402486"], ["https://data.delijn.be/stops/102330", "https://data.delijn.be/stops/102860"], ["https://data.delijn.be/stops/109063", "https://data.delijn.be/stops/307376"], ["https://data.delijn.be/stops/203091", "https://data.delijn.be/stops/203270"], ["https://data.delijn.be/stops/504689", "https://data.delijn.be/stops/509275"], ["https://data.delijn.be/stops/202886", "https://data.delijn.be/stops/207421"], ["https://data.delijn.be/stops/201863", "https://data.delijn.be/stops/203326"], ["https://data.delijn.be/stops/505934", "https://data.delijn.be/stops/508315"], ["https://data.delijn.be/stops/105232", "https://data.delijn.be/stops/109957"], ["https://data.delijn.be/stops/304092", "https://data.delijn.be/stops/308644"], ["https://data.delijn.be/stops/301425", "https://data.delijn.be/stops/306935"], ["https://data.delijn.be/stops/207678", "https://data.delijn.be/stops/208071"], ["https://data.delijn.be/stops/306077", "https://data.delijn.be/stops/306078"], ["https://data.delijn.be/stops/304496", "https://data.delijn.be/stops/304498"], ["https://data.delijn.be/stops/105475", "https://data.delijn.be/stops/105476"], ["https://data.delijn.be/stops/501029", "https://data.delijn.be/stops/501128"], ["https://data.delijn.be/stops/302658", "https://data.delijn.be/stops/303258"], ["https://data.delijn.be/stops/404213", "https://data.delijn.be/stops/404220"], ["https://data.delijn.be/stops/503966", "https://data.delijn.be/stops/508534"], ["https://data.delijn.be/stops/404429", "https://data.delijn.be/stops/404437"], ["https://data.delijn.be/stops/504985", "https://data.delijn.be/stops/509021"], ["https://data.delijn.be/stops/103105", "https://data.delijn.be/stops/104810"], ["https://data.delijn.be/stops/503308", "https://data.delijn.be/stops/505999"], ["https://data.delijn.be/stops/501244", "https://data.delijn.be/stops/506238"], ["https://data.delijn.be/stops/105020", "https://data.delijn.be/stops/108630"], ["https://data.delijn.be/stops/505543", "https://data.delijn.be/stops/509584"], ["https://data.delijn.be/stops/102750", "https://data.delijn.be/stops/102813"], ["https://data.delijn.be/stops/303060", "https://data.delijn.be/stops/304532"], ["https://data.delijn.be/stops/505721", "https://data.delijn.be/stops/505762"], ["https://data.delijn.be/stops/504772", "https://data.delijn.be/stops/509600"], ["https://data.delijn.be/stops/405939", "https://data.delijn.be/stops/405945"], ["https://data.delijn.be/stops/508167", "https://data.delijn.be/stops/508945"], ["https://data.delijn.be/stops/303071", "https://data.delijn.be/stops/308439"], ["https://data.delijn.be/stops/208375", "https://data.delijn.be/stops/209300"], ["https://data.delijn.be/stops/509519", "https://data.delijn.be/stops/509522"], ["https://data.delijn.be/stops/506423", "https://data.delijn.be/stops/506425"], ["https://data.delijn.be/stops/204971", "https://data.delijn.be/stops/217002"], ["https://data.delijn.be/stops/200638", "https://data.delijn.be/stops/202941"], ["https://data.delijn.be/stops/101706", "https://data.delijn.be/stops/104403"], ["https://data.delijn.be/stops/303774", "https://data.delijn.be/stops/303806"], ["https://data.delijn.be/stops/300784", "https://data.delijn.be/stops/304653"], ["https://data.delijn.be/stops/202574", "https://data.delijn.be/stops/203574"], ["https://data.delijn.be/stops/208492", "https://data.delijn.be/stops/210066"], ["https://data.delijn.be/stops/504628", "https://data.delijn.be/stops/509628"], ["https://data.delijn.be/stops/502217", "https://data.delijn.be/stops/502635"], ["https://data.delijn.be/stops/304510", "https://data.delijn.be/stops/304511"], ["https://data.delijn.be/stops/101753", "https://data.delijn.be/stops/109825"], ["https://data.delijn.be/stops/404130", "https://data.delijn.be/stops/404194"], ["https://data.delijn.be/stops/106433", "https://data.delijn.be/stops/106500"], ["https://data.delijn.be/stops/105568", "https://data.delijn.be/stops/105571"], ["https://data.delijn.be/stops/102073", "https://data.delijn.be/stops/109715"], ["https://data.delijn.be/stops/208548", "https://data.delijn.be/stops/209568"], ["https://data.delijn.be/stops/204019", "https://data.delijn.be/stops/205020"], ["https://data.delijn.be/stops/403126", "https://data.delijn.be/stops/403129"], ["https://data.delijn.be/stops/403440", "https://data.delijn.be/stops/403864"], ["https://data.delijn.be/stops/303438", "https://data.delijn.be/stops/303523"], ["https://data.delijn.be/stops/205971", "https://data.delijn.be/stops/217002"], ["https://data.delijn.be/stops/101642", "https://data.delijn.be/stops/107444"], ["https://data.delijn.be/stops/102875", "https://data.delijn.be/stops/104889"], ["https://data.delijn.be/stops/400826", "https://data.delijn.be/stops/401908"], ["https://data.delijn.be/stops/507523", "https://data.delijn.be/stops/507665"], ["https://data.delijn.be/stops/404439", "https://data.delijn.be/stops/404568"], ["https://data.delijn.be/stops/204071", "https://data.delijn.be/stops/204072"], ["https://data.delijn.be/stops/105724", "https://data.delijn.be/stops/107855"], ["https://data.delijn.be/stops/401537", "https://data.delijn.be/stops/401539"], ["https://data.delijn.be/stops/401882", "https://data.delijn.be/stops/401883"], ["https://data.delijn.be/stops/404344", "https://data.delijn.be/stops/404345"], ["https://data.delijn.be/stops/408755", "https://data.delijn.be/stops/408762"], ["https://data.delijn.be/stops/206900", "https://data.delijn.be/stops/207905"], ["https://data.delijn.be/stops/301389", "https://data.delijn.be/stops/304174"], ["https://data.delijn.be/stops/407720", "https://data.delijn.be/stops/409520"], ["https://data.delijn.be/stops/403485", "https://data.delijn.be/stops/403486"], ["https://data.delijn.be/stops/103203", "https://data.delijn.be/stops/107191"], ["https://data.delijn.be/stops/304958", "https://data.delijn.be/stops/304959"], ["https://data.delijn.be/stops/101855", "https://data.delijn.be/stops/101860"], ["https://data.delijn.be/stops/104822", "https://data.delijn.be/stops/105139"], ["https://data.delijn.be/stops/304534", "https://data.delijn.be/stops/304540"], ["https://data.delijn.be/stops/106363", "https://data.delijn.be/stops/106365"], ["https://data.delijn.be/stops/204070", "https://data.delijn.be/stops/205222"], ["https://data.delijn.be/stops/504136", "https://data.delijn.be/stops/505710"], ["https://data.delijn.be/stops/102815", "https://data.delijn.be/stops/105070"], ["https://data.delijn.be/stops/400857", "https://data.delijn.be/stops/409536"], ["https://data.delijn.be/stops/501601", "https://data.delijn.be/stops/504744"], ["https://data.delijn.be/stops/408610", "https://data.delijn.be/stops/408772"], ["https://data.delijn.be/stops/304757", "https://data.delijn.be/stops/304773"], ["https://data.delijn.be/stops/201559", "https://data.delijn.be/stops/201662"], ["https://data.delijn.be/stops/303086", "https://data.delijn.be/stops/304245"], ["https://data.delijn.be/stops/302212", "https://data.delijn.be/stops/302213"], ["https://data.delijn.be/stops/101015", "https://data.delijn.be/stops/103845"], ["https://data.delijn.be/stops/303058", "https://data.delijn.be/stops/305442"], ["https://data.delijn.be/stops/408911", "https://data.delijn.be/stops/408912"], ["https://data.delijn.be/stops/402004", "https://data.delijn.be/stops/406207"], ["https://data.delijn.be/stops/204463", "https://data.delijn.be/stops/205463"], ["https://data.delijn.be/stops/101197", "https://data.delijn.be/stops/204615"], ["https://data.delijn.be/stops/208402", "https://data.delijn.be/stops/208763"], ["https://data.delijn.be/stops/106181", "https://data.delijn.be/stops/109372"], ["https://data.delijn.be/stops/300426", "https://data.delijn.be/stops/300446"], ["https://data.delijn.be/stops/404484", "https://data.delijn.be/stops/404525"], ["https://data.delijn.be/stops/401582", "https://data.delijn.be/stops/410353"], ["https://data.delijn.be/stops/202465", "https://data.delijn.be/stops/203465"], ["https://data.delijn.be/stops/501633", "https://data.delijn.be/stops/506248"], ["https://data.delijn.be/stops/109073", "https://data.delijn.be/stops/300149"], ["https://data.delijn.be/stops/403487", "https://data.delijn.be/stops/403490"], ["https://data.delijn.be/stops/503016", "https://data.delijn.be/stops/508544"], ["https://data.delijn.be/stops/103644", "https://data.delijn.be/stops/107173"], ["https://data.delijn.be/stops/308195", "https://data.delijn.be/stops/308226"], ["https://data.delijn.be/stops/409080", "https://data.delijn.be/stops/409081"], ["https://data.delijn.be/stops/102213", "https://data.delijn.be/stops/102214"], ["https://data.delijn.be/stops/200746", "https://data.delijn.be/stops/201746"], ["https://data.delijn.be/stops/206341", "https://data.delijn.be/stops/207340"], ["https://data.delijn.be/stops/300234", "https://data.delijn.be/stops/303893"], ["https://data.delijn.be/stops/504147", "https://data.delijn.be/stops/509145"], ["https://data.delijn.be/stops/504674", "https://data.delijn.be/stops/509013"], ["https://data.delijn.be/stops/401215", "https://data.delijn.be/stops/401252"], ["https://data.delijn.be/stops/305615", "https://data.delijn.be/stops/308945"], ["https://data.delijn.be/stops/500958", "https://data.delijn.be/stops/504713"], ["https://data.delijn.be/stops/202376", "https://data.delijn.be/stops/203375"], ["https://data.delijn.be/stops/304754", "https://data.delijn.be/stops/304772"], ["https://data.delijn.be/stops/400200", "https://data.delijn.be/stops/400240"], ["https://data.delijn.be/stops/504076", "https://data.delijn.be/stops/509483"], ["https://data.delijn.be/stops/304285", "https://data.delijn.be/stops/306667"], ["https://data.delijn.be/stops/302157", "https://data.delijn.be/stops/308098"], ["https://data.delijn.be/stops/405780", "https://data.delijn.be/stops/409760"], ["https://data.delijn.be/stops/109124", "https://data.delijn.be/stops/109394"], ["https://data.delijn.be/stops/507425", "https://data.delijn.be/stops/507426"], ["https://data.delijn.be/stops/202366", "https://data.delijn.be/stops/203998"], ["https://data.delijn.be/stops/501135", "https://data.delijn.be/stops/501486"], ["https://data.delijn.be/stops/103133", "https://data.delijn.be/stops/106669"], ["https://data.delijn.be/stops/305624", "https://data.delijn.be/stops/305625"], ["https://data.delijn.be/stops/503187", "https://data.delijn.be/stops/508196"], ["https://data.delijn.be/stops/301832", "https://data.delijn.be/stops/301874"], ["https://data.delijn.be/stops/306145", "https://data.delijn.be/stops/306146"], ["https://data.delijn.be/stops/205333", "https://data.delijn.be/stops/205499"], ["https://data.delijn.be/stops/101355", "https://data.delijn.be/stops/105835"], ["https://data.delijn.be/stops/208081", "https://data.delijn.be/stops/209447"], ["https://data.delijn.be/stops/503778", "https://data.delijn.be/stops/508778"], ["https://data.delijn.be/stops/406101", "https://data.delijn.be/stops/406129"], ["https://data.delijn.be/stops/106382", "https://data.delijn.be/stops/107709"], ["https://data.delijn.be/stops/204535", "https://data.delijn.be/stops/204613"], ["https://data.delijn.be/stops/200502", "https://data.delijn.be/stops/201553"], ["https://data.delijn.be/stops/107328", "https://data.delijn.be/stops/107332"], ["https://data.delijn.be/stops/301040", "https://data.delijn.be/stops/301055"], ["https://data.delijn.be/stops/208513", "https://data.delijn.be/stops/209513"], ["https://data.delijn.be/stops/501159", "https://data.delijn.be/stops/501160"], ["https://data.delijn.be/stops/301641", "https://data.delijn.be/stops/307754"], ["https://data.delijn.be/stops/200227", "https://data.delijn.be/stops/201369"], ["https://data.delijn.be/stops/502655", "https://data.delijn.be/stops/502664"], ["https://data.delijn.be/stops/300255", "https://data.delijn.be/stops/300260"], ["https://data.delijn.be/stops/106208", "https://data.delijn.be/stops/106209"], ["https://data.delijn.be/stops/202389", "https://data.delijn.be/stops/202390"], ["https://data.delijn.be/stops/308098", "https://data.delijn.be/stops/308099"], ["https://data.delijn.be/stops/303410", "https://data.delijn.be/stops/303411"], ["https://data.delijn.be/stops/101617", "https://data.delijn.be/stops/106398"], ["https://data.delijn.be/stops/105136", "https://data.delijn.be/stops/105138"], ["https://data.delijn.be/stops/200554", "https://data.delijn.be/stops/200566"], ["https://data.delijn.be/stops/300783", "https://data.delijn.be/stops/300784"], ["https://data.delijn.be/stops/507030", "https://data.delijn.be/stops/507163"], ["https://data.delijn.be/stops/201013", "https://data.delijn.be/stops/211335"], ["https://data.delijn.be/stops/201265", "https://data.delijn.be/stops/203543"], ["https://data.delijn.be/stops/402369", "https://data.delijn.be/stops/410098"], ["https://data.delijn.be/stops/105114", "https://data.delijn.be/stops/105116"], ["https://data.delijn.be/stops/107641", "https://data.delijn.be/stops/109614"], ["https://data.delijn.be/stops/301360", "https://data.delijn.be/stops/303828"], ["https://data.delijn.be/stops/102780", "https://data.delijn.be/stops/104145"], ["https://data.delijn.be/stops/508904", "https://data.delijn.be/stops/508905"], ["https://data.delijn.be/stops/406598", "https://data.delijn.be/stops/406599"], ["https://data.delijn.be/stops/501220", "https://data.delijn.be/stops/501221"], ["https://data.delijn.be/stops/203663", "https://data.delijn.be/stops/203664"], ["https://data.delijn.be/stops/308517", "https://data.delijn.be/stops/308540"], ["https://data.delijn.be/stops/206887", "https://data.delijn.be/stops/206891"], ["https://data.delijn.be/stops/206232", "https://data.delijn.be/stops/300162"], ["https://data.delijn.be/stops/200405", "https://data.delijn.be/stops/201404"], ["https://data.delijn.be/stops/101365", "https://data.delijn.be/stops/104060"], ["https://data.delijn.be/stops/505348", "https://data.delijn.be/stops/507367"], ["https://data.delijn.be/stops/108156", "https://data.delijn.be/stops/108682"], ["https://data.delijn.be/stops/206911", "https://data.delijn.be/stops/207104"], ["https://data.delijn.be/stops/206927", "https://data.delijn.be/stops/207927"], ["https://data.delijn.be/stops/201327", "https://data.delijn.be/stops/202199"], ["https://data.delijn.be/stops/103677", "https://data.delijn.be/stops/106219"], ["https://data.delijn.be/stops/403519", "https://data.delijn.be/stops/410010"], ["https://data.delijn.be/stops/500136", "https://data.delijn.be/stops/507074"], ["https://data.delijn.be/stops/404889", "https://data.delijn.be/stops/404906"], ["https://data.delijn.be/stops/301956", "https://data.delijn.be/stops/302399"], ["https://data.delijn.be/stops/208160", "https://data.delijn.be/stops/208161"], ["https://data.delijn.be/stops/302386", "https://data.delijn.be/stops/304817"], ["https://data.delijn.be/stops/403926", "https://data.delijn.be/stops/403927"], ["https://data.delijn.be/stops/106887", "https://data.delijn.be/stops/107227"], ["https://data.delijn.be/stops/402506", "https://data.delijn.be/stops/402546"], ["https://data.delijn.be/stops/203348", "https://data.delijn.be/stops/208710"], ["https://data.delijn.be/stops/206793", "https://data.delijn.be/stops/208033"], ["https://data.delijn.be/stops/405412", "https://data.delijn.be/stops/405496"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/504080"], ["https://data.delijn.be/stops/405342", "https://data.delijn.be/stops/306922"], ["https://data.delijn.be/stops/200762", "https://data.delijn.be/stops/505285"], ["https://data.delijn.be/stops/403500", "https://data.delijn.be/stops/403508"], ["https://data.delijn.be/stops/300579", "https://data.delijn.be/stops/302479"], ["https://data.delijn.be/stops/204915", "https://data.delijn.be/stops/204916"], ["https://data.delijn.be/stops/206216", "https://data.delijn.be/stops/207269"], ["https://data.delijn.be/stops/107578", "https://data.delijn.be/stops/109430"], ["https://data.delijn.be/stops/406051", "https://data.delijn.be/stops/407780"], ["https://data.delijn.be/stops/108642", "https://data.delijn.be/stops/108974"], ["https://data.delijn.be/stops/302223", "https://data.delijn.be/stops/304045"], ["https://data.delijn.be/stops/204581", "https://data.delijn.be/stops/205593"], ["https://data.delijn.be/stops/401041", "https://data.delijn.be/stops/401145"], ["https://data.delijn.be/stops/101934", "https://data.delijn.be/stops/107742"], ["https://data.delijn.be/stops/302877", "https://data.delijn.be/stops/302988"], ["https://data.delijn.be/stops/502364", "https://data.delijn.be/stops/502713"], ["https://data.delijn.be/stops/402096", "https://data.delijn.be/stops/402097"], ["https://data.delijn.be/stops/504567", "https://data.delijn.be/stops/509569"], ["https://data.delijn.be/stops/408424", "https://data.delijn.be/stops/408425"], ["https://data.delijn.be/stops/302180", "https://data.delijn.be/stops/308097"], ["https://data.delijn.be/stops/504117", "https://data.delijn.be/stops/504120"], ["https://data.delijn.be/stops/104582", "https://data.delijn.be/stops/308605"], ["https://data.delijn.be/stops/206732", "https://data.delijn.be/stops/301665"], ["https://data.delijn.be/stops/401989", "https://data.delijn.be/stops/403081"], ["https://data.delijn.be/stops/403408", "https://data.delijn.be/stops/405126"], ["https://data.delijn.be/stops/402104", "https://data.delijn.be/stops/407328"], ["https://data.delijn.be/stops/303674", "https://data.delijn.be/stops/306023"], ["https://data.delijn.be/stops/507380", "https://data.delijn.be/stops/507670"], ["https://data.delijn.be/stops/502946", "https://data.delijn.be/stops/505241"], ["https://data.delijn.be/stops/107163", "https://data.delijn.be/stops/107165"], ["https://data.delijn.be/stops/502248", "https://data.delijn.be/stops/507248"], ["https://data.delijn.be/stops/503980", "https://data.delijn.be/stops/508329"], ["https://data.delijn.be/stops/407519", "https://data.delijn.be/stops/308173"], ["https://data.delijn.be/stops/203130", "https://data.delijn.be/stops/203419"], ["https://data.delijn.be/stops/102764", "https://data.delijn.be/stops/107407"], ["https://data.delijn.be/stops/500007", "https://data.delijn.be/stops/503080"], ["https://data.delijn.be/stops/204121", "https://data.delijn.be/stops/204783"], ["https://data.delijn.be/stops/304402", "https://data.delijn.be/stops/304407"], ["https://data.delijn.be/stops/401413", "https://data.delijn.be/stops/308819"], ["https://data.delijn.be/stops/406952", "https://data.delijn.be/stops/409465"], ["https://data.delijn.be/stops/503429", "https://data.delijn.be/stops/503439"], ["https://data.delijn.be/stops/503274", "https://data.delijn.be/stops/508274"], ["https://data.delijn.be/stops/200765", "https://data.delijn.be/stops/209379"], ["https://data.delijn.be/stops/408024", "https://data.delijn.be/stops/408025"], ["https://data.delijn.be/stops/403484", "https://data.delijn.be/stops/409255"], ["https://data.delijn.be/stops/407812", "https://data.delijn.be/stops/407813"], ["https://data.delijn.be/stops/503970", "https://data.delijn.be/stops/504810"], ["https://data.delijn.be/stops/208368", "https://data.delijn.be/stops/208777"], ["https://data.delijn.be/stops/406521", "https://data.delijn.be/stops/407221"], ["https://data.delijn.be/stops/307626", "https://data.delijn.be/stops/307629"], ["https://data.delijn.be/stops/502106", "https://data.delijn.be/stops/502124"], ["https://data.delijn.be/stops/103748", "https://data.delijn.be/stops/106740"], ["https://data.delijn.be/stops/501439", "https://data.delijn.be/stops/506439"], ["https://data.delijn.be/stops/206750", "https://data.delijn.be/stops/209474"], ["https://data.delijn.be/stops/304235", "https://data.delijn.be/stops/304515"], ["https://data.delijn.be/stops/201121", "https://data.delijn.be/stops/203888"], ["https://data.delijn.be/stops/209004", "https://data.delijn.be/stops/209005"], ["https://data.delijn.be/stops/206328", "https://data.delijn.be/stops/206331"], ["https://data.delijn.be/stops/503421", "https://data.delijn.be/stops/504840"], ["https://data.delijn.be/stops/407327", "https://data.delijn.be/stops/407343"], ["https://data.delijn.be/stops/302999", "https://data.delijn.be/stops/304708"], ["https://data.delijn.be/stops/206730", "https://data.delijn.be/stops/206978"], ["https://data.delijn.be/stops/200336", "https://data.delijn.be/stops/200338"], ["https://data.delijn.be/stops/200267", "https://data.delijn.be/stops/201445"], ["https://data.delijn.be/stops/301179", "https://data.delijn.be/stops/307103"], ["https://data.delijn.be/stops/409602", "https://data.delijn.be/stops/409606"], ["https://data.delijn.be/stops/409646", "https://data.delijn.be/stops/410393"], ["https://data.delijn.be/stops/102573", "https://data.delijn.be/stops/109163"], ["https://data.delijn.be/stops/303837", "https://data.delijn.be/stops/303866"], ["https://data.delijn.be/stops/206562", "https://data.delijn.be/stops/207413"], ["https://data.delijn.be/stops/305151", "https://data.delijn.be/stops/305175"], ["https://data.delijn.be/stops/304495", "https://data.delijn.be/stops/304498"], ["https://data.delijn.be/stops/109310", "https://data.delijn.be/stops/109344"], ["https://data.delijn.be/stops/300686", "https://data.delijn.be/stops/300690"], ["https://data.delijn.be/stops/206104", "https://data.delijn.be/stops/207101"], ["https://data.delijn.be/stops/202368", "https://data.delijn.be/stops/203998"], ["https://data.delijn.be/stops/306795", "https://data.delijn.be/stops/306796"], ["https://data.delijn.be/stops/102186", "https://data.delijn.be/stops/104244"], ["https://data.delijn.be/stops/304709", "https://data.delijn.be/stops/306300"], ["https://data.delijn.be/stops/505151", "https://data.delijn.be/stops/505154"], ["https://data.delijn.be/stops/204393", "https://data.delijn.be/stops/204769"], ["https://data.delijn.be/stops/304289", "https://data.delijn.be/stops/304295"], ["https://data.delijn.be/stops/301600", "https://data.delijn.be/stops/301601"], ["https://data.delijn.be/stops/503918", "https://data.delijn.be/stops/505255"], ["https://data.delijn.be/stops/106364", "https://data.delijn.be/stops/106367"], ["https://data.delijn.be/stops/502769", "https://data.delijn.be/stops/507601"], ["https://data.delijn.be/stops/303853", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/106745", "https://data.delijn.be/stops/109775"], ["https://data.delijn.be/stops/503082", "https://data.delijn.be/stops/508082"], ["https://data.delijn.be/stops/300404", "https://data.delijn.be/stops/307001"], ["https://data.delijn.be/stops/502118", "https://data.delijn.be/stops/502584"], ["https://data.delijn.be/stops/204032", "https://data.delijn.be/stops/204558"], ["https://data.delijn.be/stops/204535", "https://data.delijn.be/stops/205695"], ["https://data.delijn.be/stops/507379", "https://data.delijn.be/stops/507404"], ["https://data.delijn.be/stops/200819", "https://data.delijn.be/stops/200845"], ["https://data.delijn.be/stops/500562", "https://data.delijn.be/stops/500566"], ["https://data.delijn.be/stops/203925", "https://data.delijn.be/stops/211022"], ["https://data.delijn.be/stops/109584", "https://data.delijn.be/stops/109586"], ["https://data.delijn.be/stops/300212", "https://data.delijn.be/stops/307464"], ["https://data.delijn.be/stops/303458", "https://data.delijn.be/stops/304225"], ["https://data.delijn.be/stops/202881", "https://data.delijn.be/stops/203878"], ["https://data.delijn.be/stops/106488", "https://data.delijn.be/stops/106489"], ["https://data.delijn.be/stops/503338", "https://data.delijn.be/stops/508338"], ["https://data.delijn.be/stops/204114", "https://data.delijn.be/stops/205111"], ["https://data.delijn.be/stops/107709", "https://data.delijn.be/stops/107710"], ["https://data.delijn.be/stops/506059", "https://data.delijn.be/stops/506084"], ["https://data.delijn.be/stops/503719", "https://data.delijn.be/stops/504967"], ["https://data.delijn.be/stops/205471", "https://data.delijn.be/stops/205472"], ["https://data.delijn.be/stops/204109", "https://data.delijn.be/stops/205109"], ["https://data.delijn.be/stops/405222", "https://data.delijn.be/stops/406312"], ["https://data.delijn.be/stops/305091", "https://data.delijn.be/stops/305093"], ["https://data.delijn.be/stops/201828", "https://data.delijn.be/stops/208283"], ["https://data.delijn.be/stops/400548", "https://data.delijn.be/stops/400551"], ["https://data.delijn.be/stops/401253", "https://data.delijn.be/stops/401255"], ["https://data.delijn.be/stops/503969", "https://data.delijn.be/stops/505641"], ["https://data.delijn.be/stops/403681", "https://data.delijn.be/stops/405124"], ["https://data.delijn.be/stops/502755", "https://data.delijn.be/stops/502756"], ["https://data.delijn.be/stops/408275", "https://data.delijn.be/stops/408396"], ["https://data.delijn.be/stops/108931", "https://data.delijn.be/stops/108933"], ["https://data.delijn.be/stops/200486", "https://data.delijn.be/stops/201486"], ["https://data.delijn.be/stops/501408", "https://data.delijn.be/stops/501418"], ["https://data.delijn.be/stops/302394", "https://data.delijn.be/stops/306194"], ["https://data.delijn.be/stops/406561", "https://data.delijn.be/stops/406562"], ["https://data.delijn.be/stops/504734", "https://data.delijn.be/stops/509507"], ["https://data.delijn.be/stops/504490", "https://data.delijn.be/stops/509060"], ["https://data.delijn.be/stops/104906", "https://data.delijn.be/stops/106595"], ["https://data.delijn.be/stops/402444", "https://data.delijn.be/stops/402445"], ["https://data.delijn.be/stops/300645", "https://data.delijn.be/stops/306746"], ["https://data.delijn.be/stops/206176", "https://data.delijn.be/stops/207176"], ["https://data.delijn.be/stops/303625", "https://data.delijn.be/stops/304923"], ["https://data.delijn.be/stops/301293", "https://data.delijn.be/stops/301294"], ["https://data.delijn.be/stops/200954", "https://data.delijn.be/stops/201629"], ["https://data.delijn.be/stops/101675", "https://data.delijn.be/stops/105495"], ["https://data.delijn.be/stops/504161", "https://data.delijn.be/stops/509193"], ["https://data.delijn.be/stops/203340", "https://data.delijn.be/stops/203483"], ["https://data.delijn.be/stops/503384", "https://data.delijn.be/stops/508384"], ["https://data.delijn.be/stops/404166", "https://data.delijn.be/stops/404196"], ["https://data.delijn.be/stops/504756", "https://data.delijn.be/stops/509756"], ["https://data.delijn.be/stops/105531", "https://data.delijn.be/stops/105534"], ["https://data.delijn.be/stops/407027", "https://data.delijn.be/stops/407030"], ["https://data.delijn.be/stops/403648", "https://data.delijn.be/stops/403654"], ["https://data.delijn.be/stops/200388", "https://data.delijn.be/stops/208263"], ["https://data.delijn.be/stops/307389", "https://data.delijn.be/stops/308273"], ["https://data.delijn.be/stops/304219", "https://data.delijn.be/stops/304233"], ["https://data.delijn.be/stops/101345", "https://data.delijn.be/stops/102910"], ["https://data.delijn.be/stops/105616", "https://data.delijn.be/stops/105619"], ["https://data.delijn.be/stops/205395", "https://data.delijn.be/stops/205763"], ["https://data.delijn.be/stops/408667", "https://data.delijn.be/stops/408705"], ["https://data.delijn.be/stops/307341", "https://data.delijn.be/stops/308535"], ["https://data.delijn.be/stops/501549", "https://data.delijn.be/stops/506245"], ["https://data.delijn.be/stops/407839", "https://data.delijn.be/stops/407903"], ["https://data.delijn.be/stops/403121", "https://data.delijn.be/stops/403445"], ["https://data.delijn.be/stops/301628", "https://data.delijn.be/stops/302119"], ["https://data.delijn.be/stops/402096", "https://data.delijn.be/stops/402320"], ["https://data.delijn.be/stops/206505", "https://data.delijn.be/stops/207505"], ["https://data.delijn.be/stops/207909", "https://data.delijn.be/stops/207931"], ["https://data.delijn.be/stops/303246", "https://data.delijn.be/stops/304714"], ["https://data.delijn.be/stops/407980", "https://data.delijn.be/stops/408089"], ["https://data.delijn.be/stops/404457", "https://data.delijn.be/stops/404458"], ["https://data.delijn.be/stops/509352", "https://data.delijn.be/stops/509460"], ["https://data.delijn.be/stops/405807", "https://data.delijn.be/stops/409705"], ["https://data.delijn.be/stops/202648", "https://data.delijn.be/stops/203355"], ["https://data.delijn.be/stops/201875", "https://data.delijn.be/stops/203655"], ["https://data.delijn.be/stops/105778", "https://data.delijn.be/stops/105936"], ["https://data.delijn.be/stops/401003", "https://data.delijn.be/stops/401007"], ["https://data.delijn.be/stops/308416", "https://data.delijn.be/stops/308422"], ["https://data.delijn.be/stops/101789", "https://data.delijn.be/stops/105614"], ["https://data.delijn.be/stops/201196", "https://data.delijn.be/stops/201199"], ["https://data.delijn.be/stops/306132", "https://data.delijn.be/stops/306683"], ["https://data.delijn.be/stops/102596", "https://data.delijn.be/stops/102643"], ["https://data.delijn.be/stops/504105", "https://data.delijn.be/stops/509105"], ["https://data.delijn.be/stops/104662", "https://data.delijn.be/stops/306607"], ["https://data.delijn.be/stops/107494", "https://data.delijn.be/stops/107524"], ["https://data.delijn.be/stops/104377", "https://data.delijn.be/stops/104732"], ["https://data.delijn.be/stops/200291", "https://data.delijn.be/stops/210200"], ["https://data.delijn.be/stops/304573", "https://data.delijn.be/stops/304574"], ["https://data.delijn.be/stops/109430", "https://data.delijn.be/stops/109431"], ["https://data.delijn.be/stops/501457", "https://data.delijn.be/stops/501540"], ["https://data.delijn.be/stops/202494", "https://data.delijn.be/stops/203171"], ["https://data.delijn.be/stops/504441", "https://data.delijn.be/stops/509441"], ["https://data.delijn.be/stops/407826", "https://data.delijn.be/stops/407992"], ["https://data.delijn.be/stops/300332", "https://data.delijn.be/stops/307478"], ["https://data.delijn.be/stops/401946", "https://data.delijn.be/stops/405846"], ["https://data.delijn.be/stops/207444", "https://data.delijn.be/stops/207445"], ["https://data.delijn.be/stops/105282", "https://data.delijn.be/stops/105353"], ["https://data.delijn.be/stops/208834", "https://data.delijn.be/stops/209316"], ["https://data.delijn.be/stops/204153", "https://data.delijn.be/stops/205152"], ["https://data.delijn.be/stops/503678", "https://data.delijn.be/stops/503680"], ["https://data.delijn.be/stops/101825", "https://data.delijn.be/stops/103338"], ["https://data.delijn.be/stops/501097", "https://data.delijn.be/stops/507218"], ["https://data.delijn.be/stops/200590", "https://data.delijn.be/stops/201583"], ["https://data.delijn.be/stops/408202", "https://data.delijn.be/stops/408355"], ["https://data.delijn.be/stops/508496", "https://data.delijn.be/stops/508502"], ["https://data.delijn.be/stops/500024", "https://data.delijn.be/stops/508893"], ["https://data.delijn.be/stops/404538", "https://data.delijn.be/stops/404566"], ["https://data.delijn.be/stops/201730", "https://data.delijn.be/stops/210607"], ["https://data.delijn.be/stops/405244", "https://data.delijn.be/stops/405245"], ["https://data.delijn.be/stops/400219", "https://data.delijn.be/stops/408551"], ["https://data.delijn.be/stops/101788", "https://data.delijn.be/stops/105612"], ["https://data.delijn.be/stops/302296", "https://data.delijn.be/stops/306791"], ["https://data.delijn.be/stops/303304", "https://data.delijn.be/stops/303308"], ["https://data.delijn.be/stops/403088", "https://data.delijn.be/stops/403089"], ["https://data.delijn.be/stops/201475", "https://data.delijn.be/stops/210063"], ["https://data.delijn.be/stops/501265", "https://data.delijn.be/stops/506474"], ["https://data.delijn.be/stops/204251", "https://data.delijn.be/stops/204252"], ["https://data.delijn.be/stops/101171", "https://data.delijn.be/stops/102705"], ["https://data.delijn.be/stops/505639", "https://data.delijn.be/stops/508801"], ["https://data.delijn.be/stops/503327", "https://data.delijn.be/stops/505752"], ["https://data.delijn.be/stops/105573", "https://data.delijn.be/stops/106352"], ["https://data.delijn.be/stops/200802", "https://data.delijn.be/stops/502596"], ["https://data.delijn.be/stops/401342", "https://data.delijn.be/stops/401394"], ["https://data.delijn.be/stops/106473", "https://data.delijn.be/stops/107048"], ["https://data.delijn.be/stops/503036", "https://data.delijn.be/stops/508185"], ["https://data.delijn.be/stops/503538", "https://data.delijn.be/stops/508538"], ["https://data.delijn.be/stops/300788", "https://data.delijn.be/stops/306116"], ["https://data.delijn.be/stops/302280", "https://data.delijn.be/stops/302281"], ["https://data.delijn.be/stops/206795", "https://data.delijn.be/stops/209049"], ["https://data.delijn.be/stops/407058", "https://data.delijn.be/stops/407059"], ["https://data.delijn.be/stops/506413", "https://data.delijn.be/stops/506414"], ["https://data.delijn.be/stops/206194", "https://data.delijn.be/stops/207193"], ["https://data.delijn.be/stops/400761", "https://data.delijn.be/stops/400863"], ["https://data.delijn.be/stops/405254", "https://data.delijn.be/stops/405255"], ["https://data.delijn.be/stops/101067", "https://data.delijn.be/stops/101068"], ["https://data.delijn.be/stops/207540", "https://data.delijn.be/stops/207560"], ["https://data.delijn.be/stops/300473", "https://data.delijn.be/stops/308062"], ["https://data.delijn.be/stops/206443", "https://data.delijn.be/stops/209685"], ["https://data.delijn.be/stops/203974", "https://data.delijn.be/stops/204078"], ["https://data.delijn.be/stops/502186", "https://data.delijn.be/stops/507183"], ["https://data.delijn.be/stops/501558", "https://data.delijn.be/stops/501559"], ["https://data.delijn.be/stops/201816", "https://data.delijn.be/stops/208250"], ["https://data.delijn.be/stops/204757", "https://data.delijn.be/stops/205755"], ["https://data.delijn.be/stops/108436", "https://data.delijn.be/stops/108437"], ["https://data.delijn.be/stops/305012", "https://data.delijn.be/stops/305014"], ["https://data.delijn.be/stops/402323", "https://data.delijn.be/stops/405557"], ["https://data.delijn.be/stops/301153", "https://data.delijn.be/stops/301155"], ["https://data.delijn.be/stops/405254", "https://data.delijn.be/stops/406310"], ["https://data.delijn.be/stops/409677", "https://data.delijn.be/stops/409707"], ["https://data.delijn.be/stops/407456", "https://data.delijn.be/stops/407457"], ["https://data.delijn.be/stops/505514", "https://data.delijn.be/stops/505614"], ["https://data.delijn.be/stops/208009", "https://data.delijn.be/stops/209010"], ["https://data.delijn.be/stops/405293", "https://data.delijn.be/stops/405295"], ["https://data.delijn.be/stops/403564", "https://data.delijn.be/stops/410286"], ["https://data.delijn.be/stops/200504", "https://data.delijn.be/stops/201157"], ["https://data.delijn.be/stops/204566", "https://data.delijn.be/stops/303672"], ["https://data.delijn.be/stops/101982", "https://data.delijn.be/stops/300071"], ["https://data.delijn.be/stops/402046", "https://data.delijn.be/stops/410149"], ["https://data.delijn.be/stops/402878", "https://data.delijn.be/stops/306307"], ["https://data.delijn.be/stops/206058", "https://data.delijn.be/stops/206875"], ["https://data.delijn.be/stops/502126", "https://data.delijn.be/stops/506051"], ["https://data.delijn.be/stops/102973", "https://data.delijn.be/stops/105565"], ["https://data.delijn.be/stops/502288", "https://data.delijn.be/stops/505438"], ["https://data.delijn.be/stops/401764", "https://data.delijn.be/stops/406346"], ["https://data.delijn.be/stops/504513", "https://data.delijn.be/stops/505311"], ["https://data.delijn.be/stops/205692", "https://data.delijn.be/stops/205700"], ["https://data.delijn.be/stops/203831", "https://data.delijn.be/stops/210065"], ["https://data.delijn.be/stops/502550", "https://data.delijn.be/stops/502674"], ["https://data.delijn.be/stops/404420", "https://data.delijn.be/stops/404421"], ["https://data.delijn.be/stops/302081", "https://data.delijn.be/stops/302082"], ["https://data.delijn.be/stops/207700", "https://data.delijn.be/stops/207715"], ["https://data.delijn.be/stops/102283", "https://data.delijn.be/stops/103214"], ["https://data.delijn.be/stops/508162", "https://data.delijn.be/stops/508168"], ["https://data.delijn.be/stops/202922", "https://data.delijn.be/stops/203922"], ["https://data.delijn.be/stops/500556", "https://data.delijn.be/stops/507953"], ["https://data.delijn.be/stops/505550", "https://data.delijn.be/stops/505551"], ["https://data.delijn.be/stops/400287", "https://data.delijn.be/stops/404827"], ["https://data.delijn.be/stops/103224", "https://data.delijn.be/stops/105385"], ["https://data.delijn.be/stops/109399", "https://data.delijn.be/stops/109427"], ["https://data.delijn.be/stops/202725", "https://data.delijn.be/stops/203326"], ["https://data.delijn.be/stops/406957", "https://data.delijn.be/stops/410125"], ["https://data.delijn.be/stops/503300", "https://data.delijn.be/stops/503568"], ["https://data.delijn.be/stops/407209", "https://data.delijn.be/stops/408811"], ["https://data.delijn.be/stops/208097", "https://data.delijn.be/stops/209006"], ["https://data.delijn.be/stops/208801", "https://data.delijn.be/stops/209808"], ["https://data.delijn.be/stops/301602", "https://data.delijn.be/stops/301620"], ["https://data.delijn.be/stops/106343", "https://data.delijn.be/stops/109633"], ["https://data.delijn.be/stops/307082", "https://data.delijn.be/stops/308085"], ["https://data.delijn.be/stops/405335", "https://data.delijn.be/stops/308823"], ["https://data.delijn.be/stops/204717", "https://data.delijn.be/stops/205718"], ["https://data.delijn.be/stops/201148", "https://data.delijn.be/stops/201172"], ["https://data.delijn.be/stops/301837", "https://data.delijn.be/stops/301852"], ["https://data.delijn.be/stops/405050", "https://data.delijn.be/stops/405804"], ["https://data.delijn.be/stops/206142", "https://data.delijn.be/stops/207090"], ["https://data.delijn.be/stops/504002", "https://data.delijn.be/stops/509004"], ["https://data.delijn.be/stops/209646", "https://data.delijn.be/stops/211041"], ["https://data.delijn.be/stops/507657", "https://data.delijn.be/stops/507658"], ["https://data.delijn.be/stops/300634", "https://data.delijn.be/stops/304358"], ["https://data.delijn.be/stops/501290", "https://data.delijn.be/stops/501373"], ["https://data.delijn.be/stops/105391", "https://data.delijn.be/stops/105392"], ["https://data.delijn.be/stops/502932", "https://data.delijn.be/stops/507932"], ["https://data.delijn.be/stops/105243", "https://data.delijn.be/stops/109976"], ["https://data.delijn.be/stops/504229", "https://data.delijn.be/stops/505816"], ["https://data.delijn.be/stops/300964", "https://data.delijn.be/stops/300973"], ["https://data.delijn.be/stops/201234", "https://data.delijn.be/stops/201249"], ["https://data.delijn.be/stops/101524", "https://data.delijn.be/stops/108798"], ["https://data.delijn.be/stops/502592", "https://data.delijn.be/stops/507313"], ["https://data.delijn.be/stops/105376", "https://data.delijn.be/stops/107501"], ["https://data.delijn.be/stops/206763", "https://data.delijn.be/stops/207623"], ["https://data.delijn.be/stops/105552", "https://data.delijn.be/stops/106031"], ["https://data.delijn.be/stops/409365", "https://data.delijn.be/stops/409371"], ["https://data.delijn.be/stops/406198", "https://data.delijn.be/stops/406432"], ["https://data.delijn.be/stops/107837", "https://data.delijn.be/stops/107841"], ["https://data.delijn.be/stops/502732", "https://data.delijn.be/stops/507731"], ["https://data.delijn.be/stops/500051", "https://data.delijn.be/stops/502821"], ["https://data.delijn.be/stops/202532", "https://data.delijn.be/stops/202533"], ["https://data.delijn.be/stops/101909", "https://data.delijn.be/stops/101912"], ["https://data.delijn.be/stops/302616", "https://data.delijn.be/stops/302635"], ["https://data.delijn.be/stops/304887", "https://data.delijn.be/stops/306166"], ["https://data.delijn.be/stops/503475", "https://data.delijn.be/stops/504807"], ["https://data.delijn.be/stops/503818", "https://data.delijn.be/stops/508816"], ["https://data.delijn.be/stops/107280", "https://data.delijn.be/stops/108590"], ["https://data.delijn.be/stops/507025", "https://data.delijn.be/stops/507308"], ["https://data.delijn.be/stops/104027", "https://data.delijn.be/stops/106899"], ["https://data.delijn.be/stops/109245", "https://data.delijn.be/stops/109246"], ["https://data.delijn.be/stops/102990", "https://data.delijn.be/stops/109639"], ["https://data.delijn.be/stops/208249", "https://data.delijn.be/stops/209250"], ["https://data.delijn.be/stops/304161", "https://data.delijn.be/stops/304164"], ["https://data.delijn.be/stops/400815", "https://data.delijn.be/stops/403571"], ["https://data.delijn.be/stops/403837", "https://data.delijn.be/stops/403848"], ["https://data.delijn.be/stops/402502", "https://data.delijn.be/stops/402503"], ["https://data.delijn.be/stops/204245", "https://data.delijn.be/stops/204259"], ["https://data.delijn.be/stops/101549", "https://data.delijn.be/stops/107804"], ["https://data.delijn.be/stops/306182", "https://data.delijn.be/stops/306187"], ["https://data.delijn.be/stops/503605", "https://data.delijn.be/stops/508605"], ["https://data.delijn.be/stops/400915", "https://data.delijn.be/stops/406876"], ["https://data.delijn.be/stops/201171", "https://data.delijn.be/stops/201229"], ["https://data.delijn.be/stops/503522", "https://data.delijn.be/stops/508069"], ["https://data.delijn.be/stops/200508", "https://data.delijn.be/stops/201552"], ["https://data.delijn.be/stops/404680", "https://data.delijn.be/stops/408908"], ["https://data.delijn.be/stops/408685", "https://data.delijn.be/stops/408687"], ["https://data.delijn.be/stops/402026", "https://data.delijn.be/stops/403885"], ["https://data.delijn.be/stops/304142", "https://data.delijn.be/stops/304143"], ["https://data.delijn.be/stops/509204", "https://data.delijn.be/stops/509205"], ["https://data.delijn.be/stops/108187", "https://data.delijn.be/stops/108357"], ["https://data.delijn.be/stops/402261", "https://data.delijn.be/stops/402473"], ["https://data.delijn.be/stops/305514", "https://data.delijn.be/stops/308549"], ["https://data.delijn.be/stops/202295", "https://data.delijn.be/stops/203295"], ["https://data.delijn.be/stops/501471", "https://data.delijn.be/stops/506471"], ["https://data.delijn.be/stops/301343", "https://data.delijn.be/stops/306119"], ["https://data.delijn.be/stops/204163", "https://data.delijn.be/stops/207243"], ["https://data.delijn.be/stops/104677", "https://data.delijn.be/stops/104683"], ["https://data.delijn.be/stops/205533", "https://data.delijn.be/stops/205537"], ["https://data.delijn.be/stops/302208", "https://data.delijn.be/stops/302209"], ["https://data.delijn.be/stops/207774", "https://data.delijn.be/stops/209186"], ["https://data.delijn.be/stops/208383", "https://data.delijn.be/stops/209237"], ["https://data.delijn.be/stops/503820", "https://data.delijn.be/stops/508817"], ["https://data.delijn.be/stops/407624", "https://data.delijn.be/stops/407625"], ["https://data.delijn.be/stops/403056", "https://data.delijn.be/stops/410361"], ["https://data.delijn.be/stops/402286", "https://data.delijn.be/stops/402287"], ["https://data.delijn.be/stops/300628", "https://data.delijn.be/stops/307861"], ["https://data.delijn.be/stops/105203", "https://data.delijn.be/stops/105206"], ["https://data.delijn.be/stops/107610", "https://data.delijn.be/stops/108170"], ["https://data.delijn.be/stops/404984", "https://data.delijn.be/stops/408553"], ["https://data.delijn.be/stops/200823", "https://data.delijn.be/stops/200894"], ["https://data.delijn.be/stops/108683", "https://data.delijn.be/stops/108684"], ["https://data.delijn.be/stops/403104", "https://data.delijn.be/stops/403116"], ["https://data.delijn.be/stops/500119", "https://data.delijn.be/stops/507672"], ["https://data.delijn.be/stops/505141", "https://data.delijn.be/stops/505232"], ["https://data.delijn.be/stops/508685", "https://data.delijn.be/stops/508687"], ["https://data.delijn.be/stops/406155", "https://data.delijn.be/stops/406157"], ["https://data.delijn.be/stops/503087", "https://data.delijn.be/stops/505969"], ["https://data.delijn.be/stops/304019", "https://data.delijn.be/stops/304038"], ["https://data.delijn.be/stops/202443", "https://data.delijn.be/stops/203442"], ["https://data.delijn.be/stops/103698", "https://data.delijn.be/stops/103700"], ["https://data.delijn.be/stops/501160", "https://data.delijn.be/stops/501668"], ["https://data.delijn.be/stops/503650", "https://data.delijn.be/stops/509757"], ["https://data.delijn.be/stops/501125", "https://data.delijn.be/stops/506125"], ["https://data.delijn.be/stops/301772", "https://data.delijn.be/stops/301778"], ["https://data.delijn.be/stops/504637", "https://data.delijn.be/stops/509637"], ["https://data.delijn.be/stops/204427", "https://data.delijn.be/stops/205426"], ["https://data.delijn.be/stops/402159", "https://data.delijn.be/stops/402322"], ["https://data.delijn.be/stops/402221", "https://data.delijn.be/stops/402373"], ["https://data.delijn.be/stops/202694", "https://data.delijn.be/stops/203693"], ["https://data.delijn.be/stops/107520", "https://data.delijn.be/stops/109683"], ["https://data.delijn.be/stops/302932", "https://data.delijn.be/stops/303071"], ["https://data.delijn.be/stops/307337", "https://data.delijn.be/stops/308598"], ["https://data.delijn.be/stops/403832", "https://data.delijn.be/stops/410116"], ["https://data.delijn.be/stops/503964", "https://data.delijn.be/stops/509285"], ["https://data.delijn.be/stops/109145", "https://data.delijn.be/stops/109150"], ["https://data.delijn.be/stops/300120", "https://data.delijn.be/stops/304940"], ["https://data.delijn.be/stops/208919", "https://data.delijn.be/stops/211075"], ["https://data.delijn.be/stops/304436", "https://data.delijn.be/stops/304463"], ["https://data.delijn.be/stops/403790", "https://data.delijn.be/stops/404264"], ["https://data.delijn.be/stops/503171", "https://data.delijn.be/stops/508158"], ["https://data.delijn.be/stops/305744", "https://data.delijn.be/stops/306332"], ["https://data.delijn.be/stops/104513", "https://data.delijn.be/stops/107801"], ["https://data.delijn.be/stops/202119", "https://data.delijn.be/stops/205073"], ["https://data.delijn.be/stops/304486", "https://data.delijn.be/stops/304491"], ["https://data.delijn.be/stops/204750", "https://data.delijn.be/stops/205751"], ["https://data.delijn.be/stops/102485", "https://data.delijn.be/stops/104950"], ["https://data.delijn.be/stops/404150", "https://data.delijn.be/stops/404151"], ["https://data.delijn.be/stops/502795", "https://data.delijn.be/stops/507017"], ["https://data.delijn.be/stops/101226", "https://data.delijn.be/stops/107803"], ["https://data.delijn.be/stops/209648", "https://data.delijn.be/stops/210041"], ["https://data.delijn.be/stops/400973", "https://data.delijn.be/stops/400974"], ["https://data.delijn.be/stops/200551", "https://data.delijn.be/stops/200780"], ["https://data.delijn.be/stops/501191", "https://data.delijn.be/stops/501196"], ["https://data.delijn.be/stops/405285", "https://data.delijn.be/stops/407333"], ["https://data.delijn.be/stops/503492", "https://data.delijn.be/stops/505137"], ["https://data.delijn.be/stops/102414", "https://data.delijn.be/stops/105316"], ["https://data.delijn.be/stops/406228", "https://data.delijn.be/stops/406229"], ["https://data.delijn.be/stops/202099", "https://data.delijn.be/stops/203258"], ["https://data.delijn.be/stops/303720", "https://data.delijn.be/stops/303721"], ["https://data.delijn.be/stops/106527", "https://data.delijn.be/stops/106529"], ["https://data.delijn.be/stops/304320", "https://data.delijn.be/stops/304331"], ["https://data.delijn.be/stops/301104", "https://data.delijn.be/stops/302926"], ["https://data.delijn.be/stops/508187", "https://data.delijn.be/stops/508267"], ["https://data.delijn.be/stops/504838", "https://data.delijn.be/stops/504985"], ["https://data.delijn.be/stops/407371", "https://data.delijn.be/stops/407372"], ["https://data.delijn.be/stops/404659", "https://data.delijn.be/stops/404667"], ["https://data.delijn.be/stops/103626", "https://data.delijn.be/stops/107731"], ["https://data.delijn.be/stops/509303", "https://data.delijn.be/stops/509949"], ["https://data.delijn.be/stops/300945", "https://data.delijn.be/stops/301007"], ["https://data.delijn.be/stops/103597", "https://data.delijn.be/stops/103598"], ["https://data.delijn.be/stops/503500", "https://data.delijn.be/stops/503501"], ["https://data.delijn.be/stops/406339", "https://data.delijn.be/stops/406410"], ["https://data.delijn.be/stops/402214", "https://data.delijn.be/stops/404856"], ["https://data.delijn.be/stops/105083", "https://data.delijn.be/stops/105084"], ["https://data.delijn.be/stops/109071", "https://data.delijn.be/stops/109072"], ["https://data.delijn.be/stops/105014", "https://data.delijn.be/stops/105082"], ["https://data.delijn.be/stops/508002", "https://data.delijn.be/stops/508004"], ["https://data.delijn.be/stops/407141", "https://data.delijn.be/stops/407297"], ["https://data.delijn.be/stops/402609", "https://data.delijn.be/stops/405472"], ["https://data.delijn.be/stops/400344", "https://data.delijn.be/stops/406768"], ["https://data.delijn.be/stops/409060", "https://data.delijn.be/stops/409069"], ["https://data.delijn.be/stops/105133", "https://data.delijn.be/stops/105138"], ["https://data.delijn.be/stops/208123", "https://data.delijn.be/stops/219004"], ["https://data.delijn.be/stops/203009", "https://data.delijn.be/stops/203651"], ["https://data.delijn.be/stops/402087", "https://data.delijn.be/stops/402088"], ["https://data.delijn.be/stops/402097", "https://data.delijn.be/stops/402316"], ["https://data.delijn.be/stops/101296", "https://data.delijn.be/stops/101297"], ["https://data.delijn.be/stops/503372", "https://data.delijn.be/stops/508372"], ["https://data.delijn.be/stops/208546", "https://data.delijn.be/stops/209545"], ["https://data.delijn.be/stops/408625", "https://data.delijn.be/stops/408728"], ["https://data.delijn.be/stops/401592", "https://data.delijn.be/stops/401598"], ["https://data.delijn.be/stops/206323", "https://data.delijn.be/stops/207458"], ["https://data.delijn.be/stops/405536", "https://data.delijn.be/stops/301483"], ["https://data.delijn.be/stops/503810", "https://data.delijn.be/stops/508811"], ["https://data.delijn.be/stops/407965", "https://data.delijn.be/stops/408429"], ["https://data.delijn.be/stops/303111", "https://data.delijn.be/stops/303112"], ["https://data.delijn.be/stops/505442", "https://data.delijn.be/stops/509146"], ["https://data.delijn.be/stops/407684", "https://data.delijn.be/stops/407690"], ["https://data.delijn.be/stops/503775", "https://data.delijn.be/stops/508772"], ["https://data.delijn.be/stops/508140", "https://data.delijn.be/stops/508314"], ["https://data.delijn.be/stops/304435", "https://data.delijn.be/stops/307716"], ["https://data.delijn.be/stops/105772", "https://data.delijn.be/stops/105779"], ["https://data.delijn.be/stops/208071", "https://data.delijn.be/stops/209194"], ["https://data.delijn.be/stops/107608", "https://data.delijn.be/stops/107609"], ["https://data.delijn.be/stops/406069", "https://data.delijn.be/stops/406379"], ["https://data.delijn.be/stops/503035", "https://data.delijn.be/stops/504368"], ["https://data.delijn.be/stops/305065", "https://data.delijn.be/stops/306917"], ["https://data.delijn.be/stops/206225", "https://data.delijn.be/stops/300196"], ["https://data.delijn.be/stops/302979", "https://data.delijn.be/stops/303441"], ["https://data.delijn.be/stops/507525", "https://data.delijn.be/stops/507527"], ["https://data.delijn.be/stops/303175", "https://data.delijn.be/stops/305526"], ["https://data.delijn.be/stops/104033", "https://data.delijn.be/stops/205280"], ["https://data.delijn.be/stops/201648", "https://data.delijn.be/stops/203863"], ["https://data.delijn.be/stops/206264", "https://data.delijn.be/stops/207052"], ["https://data.delijn.be/stops/202382", "https://data.delijn.be/stops/203382"], ["https://data.delijn.be/stops/204121", "https://data.delijn.be/stops/205788"], ["https://data.delijn.be/stops/502095", "https://data.delijn.be/stops/502107"], ["https://data.delijn.be/stops/406427", "https://data.delijn.be/stops/409397"], ["https://data.delijn.be/stops/203819", "https://data.delijn.be/stops/203911"], ["https://data.delijn.be/stops/200547", "https://data.delijn.be/stops/208431"], ["https://data.delijn.be/stops/505185", "https://data.delijn.be/stops/505188"], ["https://data.delijn.be/stops/208222", "https://data.delijn.be/stops/209283"], ["https://data.delijn.be/stops/105050", "https://data.delijn.be/stops/106709"], ["https://data.delijn.be/stops/405193", "https://data.delijn.be/stops/407333"], ["https://data.delijn.be/stops/401157", "https://data.delijn.be/stops/404286"], ["https://data.delijn.be/stops/503229", "https://data.delijn.be/stops/508786"], ["https://data.delijn.be/stops/201204", "https://data.delijn.be/stops/201210"], ["https://data.delijn.be/stops/102013", "https://data.delijn.be/stops/107908"], ["https://data.delijn.be/stops/206753", "https://data.delijn.be/stops/209500"], ["https://data.delijn.be/stops/408056", "https://data.delijn.be/stops/408121"], ["https://data.delijn.be/stops/300339", "https://data.delijn.be/stops/308991"], ["https://data.delijn.be/stops/305345", "https://data.delijn.be/stops/305346"], ["https://data.delijn.be/stops/105189", "https://data.delijn.be/stops/108890"], ["https://data.delijn.be/stops/102465", "https://data.delijn.be/stops/103393"], ["https://data.delijn.be/stops/401386", "https://data.delijn.be/stops/407323"], ["https://data.delijn.be/stops/206597", "https://data.delijn.be/stops/206662"], ["https://data.delijn.be/stops/509408", "https://data.delijn.be/stops/509425"], ["https://data.delijn.be/stops/300350", "https://data.delijn.be/stops/304054"], ["https://data.delijn.be/stops/506053", "https://data.delijn.be/stops/506057"], ["https://data.delijn.be/stops/208569", "https://data.delijn.be/stops/208655"], ["https://data.delijn.be/stops/304642", "https://data.delijn.be/stops/307791"], ["https://data.delijn.be/stops/202535", "https://data.delijn.be/stops/204064"], ["https://data.delijn.be/stops/404916", "https://data.delijn.be/stops/404922"], ["https://data.delijn.be/stops/307561", "https://data.delijn.be/stops/307583"], ["https://data.delijn.be/stops/404307", "https://data.delijn.be/stops/409690"], ["https://data.delijn.be/stops/300626", "https://data.delijn.be/stops/300628"], ["https://data.delijn.be/stops/300109", "https://data.delijn.be/stops/306853"], ["https://data.delijn.be/stops/300822", "https://data.delijn.be/stops/300839"], ["https://data.delijn.be/stops/401537", "https://data.delijn.be/stops/401883"], ["https://data.delijn.be/stops/302850", "https://data.delijn.be/stops/308822"], ["https://data.delijn.be/stops/107369", "https://data.delijn.be/stops/107371"], ["https://data.delijn.be/stops/505362", "https://data.delijn.be/stops/509244"], ["https://data.delijn.be/stops/502141", "https://data.delijn.be/stops/502145"], ["https://data.delijn.be/stops/304398", "https://data.delijn.be/stops/307402"], ["https://data.delijn.be/stops/504294", "https://data.delijn.be/stops/504296"], ["https://data.delijn.be/stops/301360", "https://data.delijn.be/stops/301362"], ["https://data.delijn.be/stops/208806", "https://data.delijn.be/stops/208812"], ["https://data.delijn.be/stops/505714", "https://data.delijn.be/stops/506002"], ["https://data.delijn.be/stops/507306", "https://data.delijn.be/stops/507597"], ["https://data.delijn.be/stops/103036", "https://data.delijn.be/stops/106404"], ["https://data.delijn.be/stops/202412", "https://data.delijn.be/stops/203421"], ["https://data.delijn.be/stops/501474", "https://data.delijn.be/stops/506283"], ["https://data.delijn.be/stops/303191", "https://data.delijn.be/stops/303197"], ["https://data.delijn.be/stops/308469", "https://data.delijn.be/stops/308471"], ["https://data.delijn.be/stops/509621", "https://data.delijn.be/stops/509628"], ["https://data.delijn.be/stops/509444", "https://data.delijn.be/stops/509445"], ["https://data.delijn.be/stops/207046", "https://data.delijn.be/stops/207216"], ["https://data.delijn.be/stops/200012", "https://data.delijn.be/stops/201014"], ["https://data.delijn.be/stops/102567", "https://data.delijn.be/stops/406497"], ["https://data.delijn.be/stops/200348", "https://data.delijn.be/stops/200349"], ["https://data.delijn.be/stops/301715", "https://data.delijn.be/stops/301717"], ["https://data.delijn.be/stops/206001", "https://data.delijn.be/stops/207063"], ["https://data.delijn.be/stops/405034", "https://data.delijn.be/stops/405756"], ["https://data.delijn.be/stops/303754", "https://data.delijn.be/stops/303771"], ["https://data.delijn.be/stops/505413", "https://data.delijn.be/stops/507916"], ["https://data.delijn.be/stops/405380", "https://data.delijn.be/stops/408444"], ["https://data.delijn.be/stops/301368", "https://data.delijn.be/stops/303642"], ["https://data.delijn.be/stops/208084", "https://data.delijn.be/stops/209701"], ["https://data.delijn.be/stops/307422", "https://data.delijn.be/stops/307501"], ["https://data.delijn.be/stops/200755", "https://data.delijn.be/stops/505974"], ["https://data.delijn.be/stops/300055", "https://data.delijn.be/stops/306791"], ["https://data.delijn.be/stops/105763", "https://data.delijn.be/stops/109527"], ["https://data.delijn.be/stops/504335", "https://data.delijn.be/stops/504341"], ["https://data.delijn.be/stops/207282", "https://data.delijn.be/stops/207397"], ["https://data.delijn.be/stops/303851", "https://data.delijn.be/stops/303977"], ["https://data.delijn.be/stops/507181", "https://data.delijn.be/stops/507686"], ["https://data.delijn.be/stops/102399", "https://data.delijn.be/stops/107865"], ["https://data.delijn.be/stops/403874", "https://data.delijn.be/stops/403875"], ["https://data.delijn.be/stops/302110", "https://data.delijn.be/stops/302111"], ["https://data.delijn.be/stops/301622", "https://data.delijn.be/stops/301623"], ["https://data.delijn.be/stops/403290", "https://data.delijn.be/stops/403291"], ["https://data.delijn.be/stops/401150", "https://data.delijn.be/stops/409140"], ["https://data.delijn.be/stops/303046", "https://data.delijn.be/stops/307897"], ["https://data.delijn.be/stops/103229", "https://data.delijn.be/stops/103596"], ["https://data.delijn.be/stops/102924", "https://data.delijn.be/stops/108972"], ["https://data.delijn.be/stops/402793", "https://data.delijn.be/stops/402795"], ["https://data.delijn.be/stops/501069", "https://data.delijn.be/stops/501095"], ["https://data.delijn.be/stops/206494", "https://data.delijn.be/stops/207494"], ["https://data.delijn.be/stops/102121", "https://data.delijn.be/stops/109360"], ["https://data.delijn.be/stops/103845", "https://data.delijn.be/stops/104450"], ["https://data.delijn.be/stops/201184", "https://data.delijn.be/stops/201920"], ["https://data.delijn.be/stops/101555", "https://data.delijn.be/stops/109673"], ["https://data.delijn.be/stops/108761", "https://data.delijn.be/stops/305783"], ["https://data.delijn.be/stops/106011", "https://data.delijn.be/stops/106013"], ["https://data.delijn.be/stops/104448", "https://data.delijn.be/stops/107811"], ["https://data.delijn.be/stops/502228", "https://data.delijn.be/stops/504051"], ["https://data.delijn.be/stops/208352", "https://data.delijn.be/stops/208353"], ["https://data.delijn.be/stops/504941", "https://data.delijn.be/stops/508897"], ["https://data.delijn.be/stops/502621", "https://data.delijn.be/stops/507909"], ["https://data.delijn.be/stops/304075", "https://data.delijn.be/stops/307050"], ["https://data.delijn.be/stops/200797", "https://data.delijn.be/stops/201887"], ["https://data.delijn.be/stops/401246", "https://data.delijn.be/stops/401247"], ["https://data.delijn.be/stops/403552", "https://data.delijn.be/stops/403553"], ["https://data.delijn.be/stops/105560", "https://data.delijn.be/stops/108980"], ["https://data.delijn.be/stops/200390", "https://data.delijn.be/stops/208721"], ["https://data.delijn.be/stops/208409", "https://data.delijn.be/stops/208764"], ["https://data.delijn.be/stops/502197", "https://data.delijn.be/stops/507197"], ["https://data.delijn.be/stops/501636", "https://data.delijn.be/stops/506375"], ["https://data.delijn.be/stops/103624", "https://data.delijn.be/stops/107732"], ["https://data.delijn.be/stops/200129", "https://data.delijn.be/stops/200241"], ["https://data.delijn.be/stops/202423", "https://data.delijn.be/stops/203666"], ["https://data.delijn.be/stops/409467", "https://data.delijn.be/stops/409468"], ["https://data.delijn.be/stops/102601", "https://data.delijn.be/stops/102602"], ["https://data.delijn.be/stops/409636", "https://data.delijn.be/stops/409774"], ["https://data.delijn.be/stops/300317", "https://data.delijn.be/stops/301285"], ["https://data.delijn.be/stops/404260", "https://data.delijn.be/stops/405182"], ["https://data.delijn.be/stops/307433", "https://data.delijn.be/stops/308591"], ["https://data.delijn.be/stops/401413", "https://data.delijn.be/stops/303650"], ["https://data.delijn.be/stops/502258", "https://data.delijn.be/stops/507619"], ["https://data.delijn.be/stops/302091", "https://data.delijn.be/stops/302105"], ["https://data.delijn.be/stops/406902", "https://data.delijn.be/stops/406904"], ["https://data.delijn.be/stops/202833", "https://data.delijn.be/stops/209735"], ["https://data.delijn.be/stops/302021", "https://data.delijn.be/stops/302054"], ["https://data.delijn.be/stops/208181", "https://data.delijn.be/stops/209191"], ["https://data.delijn.be/stops/106795", "https://data.delijn.be/stops/106798"], ["https://data.delijn.be/stops/300858", "https://data.delijn.be/stops/307897"], ["https://data.delijn.be/stops/108284", "https://data.delijn.be/stops/108286"], ["https://data.delijn.be/stops/105686", "https://data.delijn.be/stops/105711"], ["https://data.delijn.be/stops/408639", "https://data.delijn.be/stops/408747"], ["https://data.delijn.be/stops/407354", "https://data.delijn.be/stops/409859"], ["https://data.delijn.be/stops/106761", "https://data.delijn.be/stops/106762"], ["https://data.delijn.be/stops/502431", "https://data.delijn.be/stops/507431"], ["https://data.delijn.be/stops/200224", "https://data.delijn.be/stops/200445"], ["https://data.delijn.be/stops/106735", "https://data.delijn.be/stops/106780"], ["https://data.delijn.be/stops/205669", "https://data.delijn.be/stops/205699"], ["https://data.delijn.be/stops/509167", "https://data.delijn.be/stops/509175"], ["https://data.delijn.be/stops/405270", "https://data.delijn.be/stops/405272"], ["https://data.delijn.be/stops/300784", "https://data.delijn.be/stops/304590"], ["https://data.delijn.be/stops/506729", "https://data.delijn.be/stops/507572"], ["https://data.delijn.be/stops/306855", "https://data.delijn.be/stops/306856"], ["https://data.delijn.be/stops/108136", "https://data.delijn.be/stops/108866"], ["https://data.delijn.be/stops/400974", "https://data.delijn.be/stops/408473"], ["https://data.delijn.be/stops/303807", "https://data.delijn.be/stops/303809"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/107024"], ["https://data.delijn.be/stops/502171", "https://data.delijn.be/stops/507341"], ["https://data.delijn.be/stops/104741", "https://data.delijn.be/stops/108156"], ["https://data.delijn.be/stops/102412", "https://data.delijn.be/stops/107500"], ["https://data.delijn.be/stops/402079", "https://data.delijn.be/stops/402338"], ["https://data.delijn.be/stops/101779", "https://data.delijn.be/stops/106729"], ["https://data.delijn.be/stops/102686", "https://data.delijn.be/stops/105195"], ["https://data.delijn.be/stops/207190", "https://data.delijn.be/stops/308569"], ["https://data.delijn.be/stops/202154", "https://data.delijn.be/stops/203154"], ["https://data.delijn.be/stops/403980", "https://data.delijn.be/stops/403985"], ["https://data.delijn.be/stops/401127", "https://data.delijn.be/stops/401134"], ["https://data.delijn.be/stops/209720", "https://data.delijn.be/stops/209721"], ["https://data.delijn.be/stops/404949", "https://data.delijn.be/stops/404954"], ["https://data.delijn.be/stops/308616", "https://data.delijn.be/stops/308618"], ["https://data.delijn.be/stops/101851", "https://data.delijn.be/stops/106850"], ["https://data.delijn.be/stops/204711", "https://data.delijn.be/stops/204712"], ["https://data.delijn.be/stops/106308", "https://data.delijn.be/stops/106309"], ["https://data.delijn.be/stops/204067", "https://data.delijn.be/stops/204226"], ["https://data.delijn.be/stops/402472", "https://data.delijn.be/stops/402473"], ["https://data.delijn.be/stops/104387", "https://data.delijn.be/stops/104388"], ["https://data.delijn.be/stops/207344", "https://data.delijn.be/stops/207366"], ["https://data.delijn.be/stops/407361", "https://data.delijn.be/stops/409424"], ["https://data.delijn.be/stops/107042", "https://data.delijn.be/stops/107044"], ["https://data.delijn.be/stops/305724", "https://data.delijn.be/stops/305728"], ["https://data.delijn.be/stops/109707", "https://data.delijn.be/stops/109708"], ["https://data.delijn.be/stops/206925", "https://data.delijn.be/stops/207925"], ["https://data.delijn.be/stops/502645", "https://data.delijn.be/stops/507418"], ["https://data.delijn.be/stops/202976", "https://data.delijn.be/stops/203367"], ["https://data.delijn.be/stops/204228", "https://data.delijn.be/stops/205228"], ["https://data.delijn.be/stops/305308", "https://data.delijn.be/stops/306383"], ["https://data.delijn.be/stops/305983", "https://data.delijn.be/stops/305984"], ["https://data.delijn.be/stops/209275", "https://data.delijn.be/stops/209276"], ["https://data.delijn.be/stops/207753", "https://data.delijn.be/stops/207754"], ["https://data.delijn.be/stops/203735", "https://data.delijn.be/stops/203853"], ["https://data.delijn.be/stops/504042", "https://data.delijn.be/stops/504989"], ["https://data.delijn.be/stops/101173", "https://data.delijn.be/stops/104595"], ["https://data.delijn.be/stops/402462", "https://data.delijn.be/stops/402463"], ["https://data.delijn.be/stops/204155", "https://data.delijn.be/stops/205594"], ["https://data.delijn.be/stops/407746", "https://data.delijn.be/stops/407747"], ["https://data.delijn.be/stops/209436", "https://data.delijn.be/stops/209437"], ["https://data.delijn.be/stops/105123", "https://data.delijn.be/stops/105196"], ["https://data.delijn.be/stops/107599", "https://data.delijn.be/stops/107689"], ["https://data.delijn.be/stops/201723", "https://data.delijn.be/stops/202445"], ["https://data.delijn.be/stops/402871", "https://data.delijn.be/stops/404006"], ["https://data.delijn.be/stops/204659", "https://data.delijn.be/stops/205658"], ["https://data.delijn.be/stops/208520", "https://data.delijn.be/stops/208878"], ["https://data.delijn.be/stops/303436", "https://data.delijn.be/stops/303474"], ["https://data.delijn.be/stops/503958", "https://data.delijn.be/stops/504724"], ["https://data.delijn.be/stops/103262", "https://data.delijn.be/stops/214002"], ["https://data.delijn.be/stops/303584", "https://data.delijn.be/stops/305892"], ["https://data.delijn.be/stops/206611", "https://data.delijn.be/stops/206970"], ["https://data.delijn.be/stops/508586", "https://data.delijn.be/stops/508588"], ["https://data.delijn.be/stops/200780", "https://data.delijn.be/stops/201034"], ["https://data.delijn.be/stops/102647", "https://data.delijn.be/stops/107832"], ["https://data.delijn.be/stops/304775", "https://data.delijn.be/stops/306115"], ["https://data.delijn.be/stops/400434", "https://data.delijn.be/stops/406784"], ["https://data.delijn.be/stops/306127", "https://data.delijn.be/stops/306132"], ["https://data.delijn.be/stops/204047", "https://data.delijn.be/stops/205048"], ["https://data.delijn.be/stops/206229", "https://data.delijn.be/stops/207113"], ["https://data.delijn.be/stops/202785", "https://data.delijn.be/stops/203785"], ["https://data.delijn.be/stops/304386", "https://data.delijn.be/stops/307416"], ["https://data.delijn.be/stops/504023", "https://data.delijn.be/stops/505121"], ["https://data.delijn.be/stops/302773", "https://data.delijn.be/stops/308597"], ["https://data.delijn.be/stops/300656", "https://data.delijn.be/stops/306885"], ["https://data.delijn.be/stops/403059", "https://data.delijn.be/stops/403276"], ["https://data.delijn.be/stops/502397", "https://data.delijn.be/stops/507671"], ["https://data.delijn.be/stops/102529", "https://data.delijn.be/stops/102532"], ["https://data.delijn.be/stops/201055", "https://data.delijn.be/stops/203522"], ["https://data.delijn.be/stops/207756", "https://data.delijn.be/stops/207768"], ["https://data.delijn.be/stops/202029", "https://data.delijn.be/stops/203028"], ["https://data.delijn.be/stops/208085", "https://data.delijn.be/stops/209619"], ["https://data.delijn.be/stops/304833", "https://data.delijn.be/stops/304834"], ["https://data.delijn.be/stops/103880", "https://data.delijn.be/stops/103885"], ["https://data.delijn.be/stops/406467", "https://data.delijn.be/stops/406477"], ["https://data.delijn.be/stops/506123", "https://data.delijn.be/stops/506209"], ["https://data.delijn.be/stops/405046", "https://data.delijn.be/stops/405070"], ["https://data.delijn.be/stops/206666", "https://data.delijn.be/stops/206718"], ["https://data.delijn.be/stops/503637", "https://data.delijn.be/stops/505568"], ["https://data.delijn.be/stops/300242", "https://data.delijn.be/stops/304618"], ["https://data.delijn.be/stops/302460", "https://data.delijn.be/stops/308669"], ["https://data.delijn.be/stops/503621", "https://data.delijn.be/stops/508632"], ["https://data.delijn.be/stops/106175", "https://data.delijn.be/stops/106178"], ["https://data.delijn.be/stops/300776", "https://data.delijn.be/stops/300790"], ["https://data.delijn.be/stops/400054", "https://data.delijn.be/stops/400104"], ["https://data.delijn.be/stops/502271", "https://data.delijn.be/stops/502926"], ["https://data.delijn.be/stops/207513", "https://data.delijn.be/stops/207847"], ["https://data.delijn.be/stops/407173", "https://data.delijn.be/stops/407179"], ["https://data.delijn.be/stops/201964", "https://data.delijn.be/stops/206795"], ["https://data.delijn.be/stops/302541", "https://data.delijn.be/stops/307810"], ["https://data.delijn.be/stops/404033", "https://data.delijn.be/stops/407635"], ["https://data.delijn.be/stops/501039", "https://data.delijn.be/stops/506039"], ["https://data.delijn.be/stops/103032", "https://data.delijn.be/stops/106749"], ["https://data.delijn.be/stops/102290", "https://data.delijn.be/stops/107445"], ["https://data.delijn.be/stops/106918", "https://data.delijn.be/stops/107251"], ["https://data.delijn.be/stops/201886", "https://data.delijn.be/stops/202978"], ["https://data.delijn.be/stops/203272", "https://data.delijn.be/stops/203277"], ["https://data.delijn.be/stops/307377", "https://data.delijn.be/stops/307446"], ["https://data.delijn.be/stops/109626", "https://data.delijn.be/stops/109627"], ["https://data.delijn.be/stops/301554", "https://data.delijn.be/stops/301555"], ["https://data.delijn.be/stops/200079", "https://data.delijn.be/stops/201534"], ["https://data.delijn.be/stops/305591", "https://data.delijn.be/stops/305617"], ["https://data.delijn.be/stops/107835", "https://data.delijn.be/stops/108590"], ["https://data.delijn.be/stops/300772", "https://data.delijn.be/stops/300802"], ["https://data.delijn.be/stops/404195", "https://data.delijn.be/stops/405933"], ["https://data.delijn.be/stops/102945", "https://data.delijn.be/stops/104975"], ["https://data.delijn.be/stops/200072", "https://data.delijn.be/stops/203354"], ["https://data.delijn.be/stops/200342", "https://data.delijn.be/stops/201310"], ["https://data.delijn.be/stops/504037", "https://data.delijn.be/stops/504046"], ["https://data.delijn.be/stops/208332", "https://data.delijn.be/stops/209117"], ["https://data.delijn.be/stops/407907", "https://data.delijn.be/stops/408006"], ["https://data.delijn.be/stops/401118", "https://data.delijn.be/stops/401121"], ["https://data.delijn.be/stops/501120", "https://data.delijn.be/stops/505039"], ["https://data.delijn.be/stops/303394", "https://data.delijn.be/stops/308892"], ["https://data.delijn.be/stops/502179", "https://data.delijn.be/stops/505556"], ["https://data.delijn.be/stops/305715", "https://data.delijn.be/stops/306302"], ["https://data.delijn.be/stops/108235", "https://data.delijn.be/stops/108240"], ["https://data.delijn.be/stops/508636", "https://data.delijn.be/stops/508638"], ["https://data.delijn.be/stops/104699", "https://data.delijn.be/stops/108182"], ["https://data.delijn.be/stops/503781", "https://data.delijn.be/stops/508776"], ["https://data.delijn.be/stops/503108", "https://data.delijn.be/stops/503964"], ["https://data.delijn.be/stops/409423", "https://data.delijn.be/stops/409424"], ["https://data.delijn.be/stops/301381", "https://data.delijn.be/stops/306142"], ["https://data.delijn.be/stops/409050", "https://data.delijn.be/stops/409085"], ["https://data.delijn.be/stops/502654", "https://data.delijn.be/stops/507654"], ["https://data.delijn.be/stops/206678", "https://data.delijn.be/stops/208809"], ["https://data.delijn.be/stops/103916", "https://data.delijn.be/stops/107238"], ["https://data.delijn.be/stops/208224", "https://data.delijn.be/stops/209224"], ["https://data.delijn.be/stops/401374", "https://data.delijn.be/stops/401375"], ["https://data.delijn.be/stops/402028", "https://data.delijn.be/stops/403880"], ["https://data.delijn.be/stops/401326", "https://data.delijn.be/stops/401327"], ["https://data.delijn.be/stops/205324", "https://data.delijn.be/stops/205713"], ["https://data.delijn.be/stops/103260", "https://data.delijn.be/stops/103265"], ["https://data.delijn.be/stops/209705", "https://data.delijn.be/stops/209709"], ["https://data.delijn.be/stops/404658", "https://data.delijn.be/stops/410132"], ["https://data.delijn.be/stops/308539", "https://data.delijn.be/stops/308540"], ["https://data.delijn.be/stops/206217", "https://data.delijn.be/stops/207313"], ["https://data.delijn.be/stops/206214", "https://data.delijn.be/stops/206820"], ["https://data.delijn.be/stops/407029", "https://data.delijn.be/stops/407038"], ["https://data.delijn.be/stops/303289", "https://data.delijn.be/stops/303296"], ["https://data.delijn.be/stops/204905", "https://data.delijn.be/stops/205905"], ["https://data.delijn.be/stops/401490", "https://data.delijn.be/stops/410306"], ["https://data.delijn.be/stops/401841", "https://data.delijn.be/stops/406018"], ["https://data.delijn.be/stops/509367", "https://data.delijn.be/stops/509372"], ["https://data.delijn.be/stops/302088", "https://data.delijn.be/stops/302094"], ["https://data.delijn.be/stops/407078", "https://data.delijn.be/stops/407085"], ["https://data.delijn.be/stops/408099", "https://data.delijn.be/stops/408108"], ["https://data.delijn.be/stops/504607", "https://data.delijn.be/stops/509599"], ["https://data.delijn.be/stops/408888", "https://data.delijn.be/stops/408892"], ["https://data.delijn.be/stops/204377", "https://data.delijn.be/stops/204378"], ["https://data.delijn.be/stops/108056", "https://data.delijn.be/stops/108057"], ["https://data.delijn.be/stops/106177", "https://data.delijn.be/stops/106178"], ["https://data.delijn.be/stops/301549", "https://data.delijn.be/stops/308093"], ["https://data.delijn.be/stops/304724", "https://data.delijn.be/stops/306555"], ["https://data.delijn.be/stops/204546", "https://data.delijn.be/stops/205501"], ["https://data.delijn.be/stops/106589", "https://data.delijn.be/stops/106592"], ["https://data.delijn.be/stops/501629", "https://data.delijn.be/stops/506765"], ["https://data.delijn.be/stops/106394", "https://data.delijn.be/stops/106570"], ["https://data.delijn.be/stops/101586", "https://data.delijn.be/stops/107230"], ["https://data.delijn.be/stops/504525", "https://data.delijn.be/stops/509529"], ["https://data.delijn.be/stops/106654", "https://data.delijn.be/stops/106664"], ["https://data.delijn.be/stops/401524", "https://data.delijn.be/stops/402513"], ["https://data.delijn.be/stops/200841", "https://data.delijn.be/stops/202314"], ["https://data.delijn.be/stops/204354", "https://data.delijn.be/stops/205354"], ["https://data.delijn.be/stops/206334", "https://data.delijn.be/stops/207335"], ["https://data.delijn.be/stops/307061", "https://data.delijn.be/stops/307063"], ["https://data.delijn.be/stops/503947", "https://data.delijn.be/stops/504801"], ["https://data.delijn.be/stops/300238", "https://data.delijn.be/stops/300256"], ["https://data.delijn.be/stops/202985", "https://data.delijn.be/stops/203035"], ["https://data.delijn.be/stops/201751", "https://data.delijn.be/stops/209398"], ["https://data.delijn.be/stops/102688", "https://data.delijn.be/stops/103946"], ["https://data.delijn.be/stops/305060", "https://data.delijn.be/stops/307277"], ["https://data.delijn.be/stops/203894", "https://data.delijn.be/stops/209285"], ["https://data.delijn.be/stops/206275", "https://data.delijn.be/stops/207275"], ["https://data.delijn.be/stops/200139", "https://data.delijn.be/stops/201139"], ["https://data.delijn.be/stops/501534", "https://data.delijn.be/stops/506013"], ["https://data.delijn.be/stops/104947", "https://data.delijn.be/stops/109728"], ["https://data.delijn.be/stops/102054", "https://data.delijn.be/stops/102330"], ["https://data.delijn.be/stops/410171", "https://data.delijn.be/stops/410178"], ["https://data.delijn.be/stops/404406", "https://data.delijn.be/stops/404416"], ["https://data.delijn.be/stops/211113", "https://data.delijn.be/stops/211119"], ["https://data.delijn.be/stops/407445", "https://data.delijn.be/stops/407503"], ["https://data.delijn.be/stops/504093", "https://data.delijn.be/stops/504096"], ["https://data.delijn.be/stops/302129", "https://data.delijn.be/stops/307530"], ["https://data.delijn.be/stops/502492", "https://data.delijn.be/stops/505635"], ["https://data.delijn.be/stops/302223", "https://data.delijn.be/stops/302246"], ["https://data.delijn.be/stops/407041", "https://data.delijn.be/stops/407061"], ["https://data.delijn.be/stops/207697", "https://data.delijn.be/stops/207698"], ["https://data.delijn.be/stops/209514", "https://data.delijn.be/stops/209674"], ["https://data.delijn.be/stops/504458", "https://data.delijn.be/stops/509612"], ["https://data.delijn.be/stops/200756", "https://data.delijn.be/stops/508018"], ["https://data.delijn.be/stops/300747", "https://data.delijn.be/stops/302399"], ["https://data.delijn.be/stops/301721", "https://data.delijn.be/stops/304187"], ["https://data.delijn.be/stops/202691", "https://data.delijn.be/stops/203691"], ["https://data.delijn.be/stops/405723", "https://data.delijn.be/stops/408325"], ["https://data.delijn.be/stops/203218", "https://data.delijn.be/stops/205795"], ["https://data.delijn.be/stops/407619", "https://data.delijn.be/stops/409806"], ["https://data.delijn.be/stops/201891", "https://data.delijn.be/stops/201893"], ["https://data.delijn.be/stops/502396", "https://data.delijn.be/stops/507399"], ["https://data.delijn.be/stops/400918", "https://data.delijn.be/stops/407374"], ["https://data.delijn.be/stops/403080", "https://data.delijn.be/stops/403502"], ["https://data.delijn.be/stops/500016", "https://data.delijn.be/stops/507454"], ["https://data.delijn.be/stops/406180", "https://data.delijn.be/stops/406181"], ["https://data.delijn.be/stops/301691", "https://data.delijn.be/stops/301790"], ["https://data.delijn.be/stops/200069", "https://data.delijn.be/stops/200551"], ["https://data.delijn.be/stops/302794", "https://data.delijn.be/stops/305496"], ["https://data.delijn.be/stops/504124", "https://data.delijn.be/stops/504128"], ["https://data.delijn.be/stops/102528", "https://data.delijn.be/stops/405082"], ["https://data.delijn.be/stops/403742", "https://data.delijn.be/stops/403764"], ["https://data.delijn.be/stops/107658", "https://data.delijn.be/stops/109862"], ["https://data.delijn.be/stops/102536", "https://data.delijn.be/stops/405087"], ["https://data.delijn.be/stops/301031", "https://data.delijn.be/stops/301035"], ["https://data.delijn.be/stops/103971", "https://data.delijn.be/stops/106445"], ["https://data.delijn.be/stops/404864", "https://data.delijn.be/stops/404894"], ["https://data.delijn.be/stops/501007", "https://data.delijn.be/stops/508259"], ["https://data.delijn.be/stops/400794", "https://data.delijn.be/stops/406675"], ["https://data.delijn.be/stops/201181", "https://data.delijn.be/stops/201186"], ["https://data.delijn.be/stops/101206", "https://data.delijn.be/stops/107853"], ["https://data.delijn.be/stops/502187", "https://data.delijn.be/stops/505053"], ["https://data.delijn.be/stops/505704", "https://data.delijn.be/stops/507570"], ["https://data.delijn.be/stops/206170", "https://data.delijn.be/stops/303847"], ["https://data.delijn.be/stops/400606", "https://data.delijn.be/stops/404294"], ["https://data.delijn.be/stops/501519", "https://data.delijn.be/stops/506307"], ["https://data.delijn.be/stops/206707", "https://data.delijn.be/stops/206735"], ["https://data.delijn.be/stops/305108", "https://data.delijn.be/stops/305111"], ["https://data.delijn.be/stops/308607", "https://data.delijn.be/stops/308608"], ["https://data.delijn.be/stops/202608", "https://data.delijn.be/stops/203608"], ["https://data.delijn.be/stops/203593", "https://data.delijn.be/stops/203594"], ["https://data.delijn.be/stops/204148", "https://data.delijn.be/stops/205150"], ["https://data.delijn.be/stops/101820", "https://data.delijn.be/stops/103338"], ["https://data.delijn.be/stops/506249", "https://data.delijn.be/stops/506768"], ["https://data.delijn.be/stops/202408", "https://data.delijn.be/stops/210409"], ["https://data.delijn.be/stops/501293", "https://data.delijn.be/stops/501312"], ["https://data.delijn.be/stops/402843", "https://data.delijn.be/stops/409881"], ["https://data.delijn.be/stops/217014", "https://data.delijn.be/stops/306729"], ["https://data.delijn.be/stops/206140", "https://data.delijn.be/stops/207129"], ["https://data.delijn.be/stops/302093", "https://data.delijn.be/stops/302095"], ["https://data.delijn.be/stops/107662", "https://data.delijn.be/stops/107664"], ["https://data.delijn.be/stops/504237", "https://data.delijn.be/stops/505362"], ["https://data.delijn.be/stops/102385", "https://data.delijn.be/stops/104310"], ["https://data.delijn.be/stops/401418", "https://data.delijn.be/stops/304600"], ["https://data.delijn.be/stops/202371", "https://data.delijn.be/stops/203587"], ["https://data.delijn.be/stops/206168", "https://data.delijn.be/stops/303404"], ["https://data.delijn.be/stops/503333", "https://data.delijn.be/stops/509735"], ["https://data.delijn.be/stops/105487", "https://data.delijn.be/stops/105489"], ["https://data.delijn.be/stops/108074", "https://data.delijn.be/stops/108076"], ["https://data.delijn.be/stops/400266", "https://data.delijn.be/stops/408364"], ["https://data.delijn.be/stops/503265", "https://data.delijn.be/stops/508076"], ["https://data.delijn.be/stops/105797", "https://data.delijn.be/stops/105798"], ["https://data.delijn.be/stops/408090", "https://data.delijn.be/stops/408167"], ["https://data.delijn.be/stops/207133", "https://data.delijn.be/stops/207134"], ["https://data.delijn.be/stops/108828", "https://data.delijn.be/stops/108829"], ["https://data.delijn.be/stops/102668", "https://data.delijn.be/stops/305994"], ["https://data.delijn.be/stops/404534", "https://data.delijn.be/stops/404547"], ["https://data.delijn.be/stops/502266", "https://data.delijn.be/stops/507260"], ["https://data.delijn.be/stops/205020", "https://data.delijn.be/stops/205769"], ["https://data.delijn.be/stops/207102", "https://data.delijn.be/stops/207123"], ["https://data.delijn.be/stops/305502", "https://data.delijn.be/stops/307821"], ["https://data.delijn.be/stops/205444", "https://data.delijn.be/stops/205498"], ["https://data.delijn.be/stops/503012", "https://data.delijn.be/stops/508012"], ["https://data.delijn.be/stops/301348", "https://data.delijn.be/stops/306135"], ["https://data.delijn.be/stops/202590", "https://data.delijn.be/stops/203590"], ["https://data.delijn.be/stops/209778", "https://data.delijn.be/stops/209779"], ["https://data.delijn.be/stops/108505", "https://data.delijn.be/stops/108507"], ["https://data.delijn.be/stops/207734", "https://data.delijn.be/stops/207749"], ["https://data.delijn.be/stops/504236", "https://data.delijn.be/stops/509236"], ["https://data.delijn.be/stops/503529", "https://data.delijn.be/stops/508525"], ["https://data.delijn.be/stops/204484", "https://data.delijn.be/stops/204738"], ["https://data.delijn.be/stops/303346", "https://data.delijn.be/stops/304713"], ["https://data.delijn.be/stops/406523", "https://data.delijn.be/stops/406524"], ["https://data.delijn.be/stops/502237", "https://data.delijn.be/stops/505025"], ["https://data.delijn.be/stops/402724", "https://data.delijn.be/stops/402725"], ["https://data.delijn.be/stops/200030", "https://data.delijn.be/stops/200984"], ["https://data.delijn.be/stops/106798", "https://data.delijn.be/stops/106869"], ["https://data.delijn.be/stops/201089", "https://data.delijn.be/stops/203945"], ["https://data.delijn.be/stops/206216", "https://data.delijn.be/stops/207216"], ["https://data.delijn.be/stops/405698", "https://data.delijn.be/stops/405900"], ["https://data.delijn.be/stops/407316", "https://data.delijn.be/stops/409044"], ["https://data.delijn.be/stops/302978", "https://data.delijn.be/stops/302987"], ["https://data.delijn.be/stops/302596", "https://data.delijn.be/stops/302652"], ["https://data.delijn.be/stops/205000", "https://data.delijn.be/stops/207355"], ["https://data.delijn.be/stops/404848", "https://data.delijn.be/stops/407739"], ["https://data.delijn.be/stops/508578", "https://data.delijn.be/stops/508844"], ["https://data.delijn.be/stops/408519", "https://data.delijn.be/stops/408768"], ["https://data.delijn.be/stops/103287", "https://data.delijn.be/stops/109992"], ["https://data.delijn.be/stops/500874", "https://data.delijn.be/stops/505920"], ["https://data.delijn.be/stops/101860", "https://data.delijn.be/stops/107805"], ["https://data.delijn.be/stops/101077", "https://data.delijn.be/stops/102718"], ["https://data.delijn.be/stops/408510", "https://data.delijn.be/stops/408613"], ["https://data.delijn.be/stops/300613", "https://data.delijn.be/stops/300621"], ["https://data.delijn.be/stops/502029", "https://data.delijn.be/stops/507041"], ["https://data.delijn.be/stops/109798", "https://data.delijn.be/stops/305766"], ["https://data.delijn.be/stops/207080", "https://data.delijn.be/stops/207083"], ["https://data.delijn.be/stops/202923", "https://data.delijn.be/stops/203921"], ["https://data.delijn.be/stops/501680", "https://data.delijn.be/stops/509514"], ["https://data.delijn.be/stops/200261", "https://data.delijn.be/stops/201302"], ["https://data.delijn.be/stops/504222", "https://data.delijn.be/stops/509632"], ["https://data.delijn.be/stops/108269", "https://data.delijn.be/stops/108271"], ["https://data.delijn.be/stops/200374", "https://data.delijn.be/stops/200375"], ["https://data.delijn.be/stops/104780", "https://data.delijn.be/stops/104785"], ["https://data.delijn.be/stops/200659", "https://data.delijn.be/stops/201659"], ["https://data.delijn.be/stops/503499", "https://data.delijn.be/stops/508499"], ["https://data.delijn.be/stops/501193", "https://data.delijn.be/stops/501497"], ["https://data.delijn.be/stops/301115", "https://data.delijn.be/stops/301117"], ["https://data.delijn.be/stops/101531", "https://data.delijn.be/stops/108791"], ["https://data.delijn.be/stops/407491", "https://data.delijn.be/stops/408690"], ["https://data.delijn.be/stops/101069", "https://data.delijn.be/stops/101072"], ["https://data.delijn.be/stops/204224", "https://data.delijn.be/stops/205223"], ["https://data.delijn.be/stops/202884", "https://data.delijn.be/stops/203887"], ["https://data.delijn.be/stops/403022", "https://data.delijn.be/stops/404228"], ["https://data.delijn.be/stops/203840", "https://data.delijn.be/stops/209494"], ["https://data.delijn.be/stops/408044", "https://data.delijn.be/stops/408125"], ["https://data.delijn.be/stops/405214", "https://data.delijn.be/stops/405255"], ["https://data.delijn.be/stops/208515", "https://data.delijn.be/stops/209464"], ["https://data.delijn.be/stops/102935", "https://data.delijn.be/stops/103330"], ["https://data.delijn.be/stops/104119", "https://data.delijn.be/stops/105165"], ["https://data.delijn.be/stops/301064", "https://data.delijn.be/stops/301305"], ["https://data.delijn.be/stops/308866", "https://data.delijn.be/stops/308869"], ["https://data.delijn.be/stops/203810", "https://data.delijn.be/stops/209276"], ["https://data.delijn.be/stops/403613", "https://data.delijn.be/stops/403629"], ["https://data.delijn.be/stops/204822", "https://data.delijn.be/stops/205546"], ["https://data.delijn.be/stops/501358", "https://data.delijn.be/stops/506326"], ["https://data.delijn.be/stops/200165", "https://data.delijn.be/stops/202190"], ["https://data.delijn.be/stops/102756", "https://data.delijn.be/stops/103304"], ["https://data.delijn.be/stops/301992", "https://data.delijn.be/stops/305977"], ["https://data.delijn.be/stops/206234", "https://data.delijn.be/stops/207935"], ["https://data.delijn.be/stops/404546", "https://data.delijn.be/stops/404547"], ["https://data.delijn.be/stops/107986", "https://data.delijn.be/stops/108054"], ["https://data.delijn.be/stops/108198", "https://data.delijn.be/stops/108199"], ["https://data.delijn.be/stops/303810", "https://data.delijn.be/stops/303845"], ["https://data.delijn.be/stops/206287", "https://data.delijn.be/stops/206315"], ["https://data.delijn.be/stops/105003", "https://data.delijn.be/stops/105122"], ["https://data.delijn.be/stops/101278", "https://data.delijn.be/stops/205820"], ["https://data.delijn.be/stops/300835", "https://data.delijn.be/stops/307736"], ["https://data.delijn.be/stops/300498", "https://data.delijn.be/stops/302099"], ["https://data.delijn.be/stops/107703", "https://data.delijn.be/stops/109240"], ["https://data.delijn.be/stops/502929", "https://data.delijn.be/stops/507016"], ["https://data.delijn.be/stops/303837", "https://data.delijn.be/stops/303849"], ["https://data.delijn.be/stops/405478", "https://data.delijn.be/stops/409302"], ["https://data.delijn.be/stops/300571", "https://data.delijn.be/stops/300589"], ["https://data.delijn.be/stops/503230", "https://data.delijn.be/stops/503260"], ["https://data.delijn.be/stops/305004", "https://data.delijn.be/stops/305037"], ["https://data.delijn.be/stops/208440", "https://data.delijn.be/stops/208672"], ["https://data.delijn.be/stops/103678", "https://data.delijn.be/stops/109667"], ["https://data.delijn.be/stops/305148", "https://data.delijn.be/stops/305198"], ["https://data.delijn.be/stops/504631", "https://data.delijn.be/stops/509628"], ["https://data.delijn.be/stops/402314", "https://data.delijn.be/stops/408203"], ["https://data.delijn.be/stops/301969", "https://data.delijn.be/stops/304155"], ["https://data.delijn.be/stops/503408", "https://data.delijn.be/stops/508406"], ["https://data.delijn.be/stops/507813", "https://data.delijn.be/stops/509878"], ["https://data.delijn.be/stops/208514", "https://data.delijn.be/stops/209514"], ["https://data.delijn.be/stops/502246", "https://data.delijn.be/stops/502247"], ["https://data.delijn.be/stops/401650", "https://data.delijn.be/stops/405393"], ["https://data.delijn.be/stops/504752", "https://data.delijn.be/stops/509752"], ["https://data.delijn.be/stops/301359", "https://data.delijn.be/stops/304695"], ["https://data.delijn.be/stops/401085", "https://data.delijn.be/stops/410024"], ["https://data.delijn.be/stops/400729", "https://data.delijn.be/stops/400736"], ["https://data.delijn.be/stops/108336", "https://data.delijn.be/stops/109369"], ["https://data.delijn.be/stops/408963", "https://data.delijn.be/stops/408983"], ["https://data.delijn.be/stops/404662", "https://data.delijn.be/stops/404663"], ["https://data.delijn.be/stops/505200", "https://data.delijn.be/stops/505217"], ["https://data.delijn.be/stops/200832", "https://data.delijn.be/stops/200833"], ["https://data.delijn.be/stops/206008", "https://data.delijn.be/stops/207052"], ["https://data.delijn.be/stops/405190", "https://data.delijn.be/stops/406325"], ["https://data.delijn.be/stops/200492", "https://data.delijn.be/stops/201473"], ["https://data.delijn.be/stops/103291", "https://data.delijn.be/stops/103292"], ["https://data.delijn.be/stops/106382", "https://data.delijn.be/stops/108024"], ["https://data.delijn.be/stops/307150", "https://data.delijn.be/stops/307152"], ["https://data.delijn.be/stops/209472", "https://data.delijn.be/stops/209473"], ["https://data.delijn.be/stops/501366", "https://data.delijn.be/stops/507745"], ["https://data.delijn.be/stops/404090", "https://data.delijn.be/stops/408799"], ["https://data.delijn.be/stops/405228", "https://data.delijn.be/stops/405234"], ["https://data.delijn.be/stops/501688", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/107581", "https://data.delijn.be/stops/107583"], ["https://data.delijn.be/stops/303490", "https://data.delijn.be/stops/303497"], ["https://data.delijn.be/stops/408266", "https://data.delijn.be/stops/408406"], ["https://data.delijn.be/stops/208632", "https://data.delijn.be/stops/208633"], ["https://data.delijn.be/stops/502243", "https://data.delijn.be/stops/507100"], ["https://data.delijn.be/stops/501149", "https://data.delijn.be/stops/505600"], ["https://data.delijn.be/stops/200887", "https://data.delijn.be/stops/202057"], ["https://data.delijn.be/stops/108137", "https://data.delijn.be/stops/108138"], ["https://data.delijn.be/stops/505208", "https://data.delijn.be/stops/508849"], ["https://data.delijn.be/stops/106060", "https://data.delijn.be/stops/205610"], ["https://data.delijn.be/stops/304533", "https://data.delijn.be/stops/304542"], ["https://data.delijn.be/stops/107017", "https://data.delijn.be/stops/107067"], ["https://data.delijn.be/stops/303500", "https://data.delijn.be/stops/303508"], ["https://data.delijn.be/stops/401038", "https://data.delijn.be/stops/401039"], ["https://data.delijn.be/stops/101305", "https://data.delijn.be/stops/104810"], ["https://data.delijn.be/stops/505315", "https://data.delijn.be/stops/508767"], ["https://data.delijn.be/stops/300550", "https://data.delijn.be/stops/300558"], ["https://data.delijn.be/stops/305765", "https://data.delijn.be/stops/305767"], ["https://data.delijn.be/stops/405715", "https://data.delijn.be/stops/405730"], ["https://data.delijn.be/stops/401516", "https://data.delijn.be/stops/401741"], ["https://data.delijn.be/stops/102669", "https://data.delijn.be/stops/103314"], ["https://data.delijn.be/stops/502675", "https://data.delijn.be/stops/505010"], ["https://data.delijn.be/stops/105012", "https://data.delijn.be/stops/105081"], ["https://data.delijn.be/stops/206353", "https://data.delijn.be/stops/206354"], ["https://data.delijn.be/stops/401359", "https://data.delijn.be/stops/401365"], ["https://data.delijn.be/stops/503952", "https://data.delijn.be/stops/508952"], ["https://data.delijn.be/stops/202388", "https://data.delijn.be/stops/203388"], ["https://data.delijn.be/stops/407904", "https://data.delijn.be/stops/408013"], ["https://data.delijn.be/stops/504443", "https://data.delijn.be/stops/509443"], ["https://data.delijn.be/stops/107342", "https://data.delijn.be/stops/108168"], ["https://data.delijn.be/stops/407237", "https://data.delijn.be/stops/407508"], ["https://data.delijn.be/stops/206930", "https://data.delijn.be/stops/207575"], ["https://data.delijn.be/stops/206331", "https://data.delijn.be/stops/207331"], ["https://data.delijn.be/stops/507034", "https://data.delijn.be/stops/507617"], ["https://data.delijn.be/stops/505773", "https://data.delijn.be/stops/507468"], ["https://data.delijn.be/stops/105275", "https://data.delijn.be/stops/108800"], ["https://data.delijn.be/stops/206169", "https://data.delijn.be/stops/207169"], ["https://data.delijn.be/stops/306315", "https://data.delijn.be/stops/307193"], ["https://data.delijn.be/stops/406786", "https://data.delijn.be/stops/406797"], ["https://data.delijn.be/stops/207020", "https://data.delijn.be/stops/207913"], ["https://data.delijn.be/stops/103632", "https://data.delijn.be/stops/107167"], ["https://data.delijn.be/stops/502589", "https://data.delijn.be/stops/507589"], ["https://data.delijn.be/stops/508128", "https://data.delijn.be/stops/509276"], ["https://data.delijn.be/stops/204413", "https://data.delijn.be/stops/204767"], ["https://data.delijn.be/stops/504354", "https://data.delijn.be/stops/509347"], ["https://data.delijn.be/stops/207085", "https://data.delijn.be/stops/207989"], ["https://data.delijn.be/stops/304997", "https://data.delijn.be/stops/305016"], ["https://data.delijn.be/stops/401835", "https://data.delijn.be/stops/406020"], ["https://data.delijn.be/stops/303133", "https://data.delijn.be/stops/303240"], ["https://data.delijn.be/stops/503163", "https://data.delijn.be/stops/503397"], ["https://data.delijn.be/stops/506368", "https://data.delijn.be/stops/590413"], ["https://data.delijn.be/stops/407855", "https://data.delijn.be/stops/407897"], ["https://data.delijn.be/stops/504207", "https://data.delijn.be/stops/509203"], ["https://data.delijn.be/stops/508142", "https://data.delijn.be/stops/509888"], ["https://data.delijn.be/stops/200197", "https://data.delijn.be/stops/203954"], ["https://data.delijn.be/stops/307761", "https://data.delijn.be/stops/307763"], ["https://data.delijn.be/stops/304051", "https://data.delijn.be/stops/304085"], ["https://data.delijn.be/stops/301677", "https://data.delijn.be/stops/301678"], ["https://data.delijn.be/stops/206704", "https://data.delijn.be/stops/206705"], ["https://data.delijn.be/stops/102291", "https://data.delijn.be/stops/106346"], ["https://data.delijn.be/stops/202151", "https://data.delijn.be/stops/203169"], ["https://data.delijn.be/stops/303035", "https://data.delijn.be/stops/303105"], ["https://data.delijn.be/stops/101151", "https://data.delijn.be/stops/102057"], ["https://data.delijn.be/stops/103763", "https://data.delijn.be/stops/106775"], ["https://data.delijn.be/stops/106358", "https://data.delijn.be/stops/109638"], ["https://data.delijn.be/stops/405442", "https://data.delijn.be/stops/408775"], ["https://data.delijn.be/stops/501311", "https://data.delijn.be/stops/506480"], ["https://data.delijn.be/stops/503815", "https://data.delijn.be/stops/508815"], ["https://data.delijn.be/stops/103790", "https://data.delijn.be/stops/105895"], ["https://data.delijn.be/stops/404845", "https://data.delijn.be/stops/407768"], ["https://data.delijn.be/stops/109296", "https://data.delijn.be/stops/109297"], ["https://data.delijn.be/stops/505268", "https://data.delijn.be/stops/505942"], ["https://data.delijn.be/stops/102209", "https://data.delijn.be/stops/106239"], ["https://data.delijn.be/stops/406374", "https://data.delijn.be/stops/410395"], ["https://data.delijn.be/stops/305498", "https://data.delijn.be/stops/305502"], ["https://data.delijn.be/stops/300671", "https://data.delijn.be/stops/300672"], ["https://data.delijn.be/stops/202775", "https://data.delijn.be/stops/203775"], ["https://data.delijn.be/stops/502435", "https://data.delijn.be/stops/502645"], ["https://data.delijn.be/stops/503228", "https://data.delijn.be/stops/508228"], ["https://data.delijn.be/stops/401498", "https://data.delijn.be/stops/401499"], ["https://data.delijn.be/stops/203485", "https://data.delijn.be/stops/203506"], ["https://data.delijn.be/stops/304849", "https://data.delijn.be/stops/308524"], ["https://data.delijn.be/stops/102416", "https://data.delijn.be/stops/108419"], ["https://data.delijn.be/stops/108319", "https://data.delijn.be/stops/108380"], ["https://data.delijn.be/stops/405626", "https://data.delijn.be/stops/407388"], ["https://data.delijn.be/stops/405335", "https://data.delijn.be/stops/405344"], ["https://data.delijn.be/stops/402437", "https://data.delijn.be/stops/402438"], ["https://data.delijn.be/stops/501055", "https://data.delijn.be/stops/506057"], ["https://data.delijn.be/stops/503718", "https://data.delijn.be/stops/507352"], ["https://data.delijn.be/stops/205304", "https://data.delijn.be/stops/205352"], ["https://data.delijn.be/stops/201892", "https://data.delijn.be/stops/201893"], ["https://data.delijn.be/stops/203823", "https://data.delijn.be/stops/203925"], ["https://data.delijn.be/stops/203065", "https://data.delijn.be/stops/203729"], ["https://data.delijn.be/stops/305981", "https://data.delijn.be/stops/305983"], ["https://data.delijn.be/stops/406032", "https://data.delijn.be/stops/406081"], ["https://data.delijn.be/stops/305048", "https://data.delijn.be/stops/306958"], ["https://data.delijn.be/stops/503388", "https://data.delijn.be/stops/508362"], ["https://data.delijn.be/stops/201806", "https://data.delijn.be/stops/201807"], ["https://data.delijn.be/stops/304726", "https://data.delijn.be/stops/308652"], ["https://data.delijn.be/stops/205982", "https://data.delijn.be/stops/208763"], ["https://data.delijn.be/stops/202636", "https://data.delijn.be/stops/205066"], ["https://data.delijn.be/stops/107916", "https://data.delijn.be/stops/107917"], ["https://data.delijn.be/stops/504569", "https://data.delijn.be/stops/505412"], ["https://data.delijn.be/stops/507206", "https://data.delijn.be/stops/507216"], ["https://data.delijn.be/stops/504610", "https://data.delijn.be/stops/509610"], ["https://data.delijn.be/stops/403885", "https://data.delijn.be/stops/403890"], ["https://data.delijn.be/stops/403373", "https://data.delijn.be/stops/403514"], ["https://data.delijn.be/stops/106220", "https://data.delijn.be/stops/106320"], ["https://data.delijn.be/stops/500929", "https://data.delijn.be/stops/509885"], ["https://data.delijn.be/stops/303238", "https://data.delijn.be/stops/303242"], ["https://data.delijn.be/stops/503346", "https://data.delijn.be/stops/503432"], ["https://data.delijn.be/stops/503941", "https://data.delijn.be/stops/507016"], ["https://data.delijn.be/stops/503950", "https://data.delijn.be/stops/508648"], ["https://data.delijn.be/stops/102179", "https://data.delijn.be/stops/102937"], ["https://data.delijn.be/stops/206421", "https://data.delijn.be/stops/207421"], ["https://data.delijn.be/stops/409304", "https://data.delijn.be/stops/409306"], ["https://data.delijn.be/stops/303067", "https://data.delijn.be/stops/303151"], ["https://data.delijn.be/stops/106602", "https://data.delijn.be/stops/106900"], ["https://data.delijn.be/stops/502645", "https://data.delijn.be/stops/507646"], ["https://data.delijn.be/stops/202194", "https://data.delijn.be/stops/203197"], ["https://data.delijn.be/stops/206767", "https://data.delijn.be/stops/206947"], ["https://data.delijn.be/stops/200001", "https://data.delijn.be/stops/210856"], ["https://data.delijn.be/stops/400676", "https://data.delijn.be/stops/402534"], ["https://data.delijn.be/stops/204739", "https://data.delijn.be/stops/204740"], ["https://data.delijn.be/stops/205206", "https://data.delijn.be/stops/205233"], ["https://data.delijn.be/stops/301452", "https://data.delijn.be/stops/302516"], ["https://data.delijn.be/stops/306696", "https://data.delijn.be/stops/308781"], ["https://data.delijn.be/stops/208606", "https://data.delijn.be/stops/208615"], ["https://data.delijn.be/stops/308469", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/201144", "https://data.delijn.be/stops/205358"], ["https://data.delijn.be/stops/208854", "https://data.delijn.be/stops/209244"], ["https://data.delijn.be/stops/504393", "https://data.delijn.be/stops/509395"], ["https://data.delijn.be/stops/501467", "https://data.delijn.be/stops/505035"], ["https://data.delijn.be/stops/302081", "https://data.delijn.be/stops/302093"], ["https://data.delijn.be/stops/101430", "https://data.delijn.be/stops/101815"], ["https://data.delijn.be/stops/301093", "https://data.delijn.be/stops/301227"], ["https://data.delijn.be/stops/503795", "https://data.delijn.be/stops/508798"], ["https://data.delijn.be/stops/405615", "https://data.delijn.be/stops/407190"], ["https://data.delijn.be/stops/308145", "https://data.delijn.be/stops/308177"], ["https://data.delijn.be/stops/102081", "https://data.delijn.be/stops/105413"], ["https://data.delijn.be/stops/400533", "https://data.delijn.be/stops/408458"], ["https://data.delijn.be/stops/503123", "https://data.delijn.be/stops/509888"], ["https://data.delijn.be/stops/505225", "https://data.delijn.be/stops/505689"], ["https://data.delijn.be/stops/107659", "https://data.delijn.be/stops/107662"], ["https://data.delijn.be/stops/103929", "https://data.delijn.be/stops/107246"], ["https://data.delijn.be/stops/108428", "https://data.delijn.be/stops/108431"], ["https://data.delijn.be/stops/400932", "https://data.delijn.be/stops/409011"], ["https://data.delijn.be/stops/403513", "https://data.delijn.be/stops/403560"], ["https://data.delijn.be/stops/403787", "https://data.delijn.be/stops/408965"], ["https://data.delijn.be/stops/505097", "https://data.delijn.be/stops/508590"], ["https://data.delijn.be/stops/501405", "https://data.delijn.be/stops/506405"], ["https://data.delijn.be/stops/504278", "https://data.delijn.be/stops/509280"], ["https://data.delijn.be/stops/103113", "https://data.delijn.be/stops/106844"], ["https://data.delijn.be/stops/204210", "https://data.delijn.be/stops/207312"], ["https://data.delijn.be/stops/504433", "https://data.delijn.be/stops/505166"], ["https://data.delijn.be/stops/103123", "https://data.delijn.be/stops/109172"], ["https://data.delijn.be/stops/408685", "https://data.delijn.be/stops/410082"], ["https://data.delijn.be/stops/301825", "https://data.delijn.be/stops/301834"], ["https://data.delijn.be/stops/108616", "https://data.delijn.be/stops/301916"], ["https://data.delijn.be/stops/501031", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/404647", "https://data.delijn.be/stops/406968"], ["https://data.delijn.be/stops/409136", "https://data.delijn.be/stops/409193"], ["https://data.delijn.be/stops/105480", "https://data.delijn.be/stops/105482"], ["https://data.delijn.be/stops/300839", "https://data.delijn.be/stops/333454"], ["https://data.delijn.be/stops/406057", "https://data.delijn.be/stops/406060"], ["https://data.delijn.be/stops/307394", "https://data.delijn.be/stops/307398"], ["https://data.delijn.be/stops/101487", "https://data.delijn.be/stops/109707"], ["https://data.delijn.be/stops/202945", "https://data.delijn.be/stops/203945"], ["https://data.delijn.be/stops/300289", "https://data.delijn.be/stops/301315"], ["https://data.delijn.be/stops/401413", "https://data.delijn.be/stops/301117"], ["https://data.delijn.be/stops/202099", "https://data.delijn.be/stops/202258"], ["https://data.delijn.be/stops/304452", "https://data.delijn.be/stops/307692"], ["https://data.delijn.be/stops/101546", "https://data.delijn.be/stops/101548"], ["https://data.delijn.be/stops/103624", "https://data.delijn.be/stops/103627"], ["https://data.delijn.be/stops/400306", "https://data.delijn.be/stops/400325"], ["https://data.delijn.be/stops/501433", "https://data.delijn.be/stops/506432"], ["https://data.delijn.be/stops/504136", "https://data.delijn.be/stops/509144"], ["https://data.delijn.be/stops/300579", "https://data.delijn.be/stops/300997"], ["https://data.delijn.be/stops/104132", "https://data.delijn.be/stops/108045"], ["https://data.delijn.be/stops/106422", "https://data.delijn.be/stops/106560"], ["https://data.delijn.be/stops/207702", "https://data.delijn.be/stops/207887"], ["https://data.delijn.be/stops/302599", "https://data.delijn.be/stops/302693"], ["https://data.delijn.be/stops/300754", "https://data.delijn.be/stops/300780"], ["https://data.delijn.be/stops/106666", "https://data.delijn.be/stops/106667"], ["https://data.delijn.be/stops/500126", "https://data.delijn.be/stops/505316"], ["https://data.delijn.be/stops/206323", "https://data.delijn.be/stops/206484"], ["https://data.delijn.be/stops/402808", "https://data.delijn.be/stops/409018"], ["https://data.delijn.be/stops/206385", "https://data.delijn.be/stops/206806"], ["https://data.delijn.be/stops/200182", "https://data.delijn.be/stops/201735"], ["https://data.delijn.be/stops/204298", "https://data.delijn.be/stops/204540"], ["https://data.delijn.be/stops/206579", "https://data.delijn.be/stops/207464"], ["https://data.delijn.be/stops/107136", "https://data.delijn.be/stops/107139"], ["https://data.delijn.be/stops/305769", "https://data.delijn.be/stops/305785"], ["https://data.delijn.be/stops/104053", "https://data.delijn.be/stops/108413"], ["https://data.delijn.be/stops/406983", "https://data.delijn.be/stops/407915"], ["https://data.delijn.be/stops/408498", "https://data.delijn.be/stops/408688"], ["https://data.delijn.be/stops/401081", "https://data.delijn.be/stops/409058"], ["https://data.delijn.be/stops/402084", "https://data.delijn.be/stops/402134"], ["https://data.delijn.be/stops/206064", "https://data.delijn.be/stops/207118"], ["https://data.delijn.be/stops/407206", "https://data.delijn.be/stops/407208"], ["https://data.delijn.be/stops/302699", "https://data.delijn.be/stops/302700"], ["https://data.delijn.be/stops/105777", "https://data.delijn.be/stops/105779"], ["https://data.delijn.be/stops/205016", "https://data.delijn.be/stops/205107"], ["https://data.delijn.be/stops/305438", "https://data.delijn.be/stops/305507"], ["https://data.delijn.be/stops/505422", "https://data.delijn.be/stops/509608"], ["https://data.delijn.be/stops/503399", "https://data.delijn.be/stops/508430"], ["https://data.delijn.be/stops/300979", "https://data.delijn.be/stops/300994"], ["https://data.delijn.be/stops/101676", "https://data.delijn.be/stops/103132"], ["https://data.delijn.be/stops/101591", "https://data.delijn.be/stops/103038"], ["https://data.delijn.be/stops/206526", "https://data.delijn.be/stops/207526"], ["https://data.delijn.be/stops/204520", "https://data.delijn.be/stops/205520"], ["https://data.delijn.be/stops/207377", "https://data.delijn.be/stops/207726"], ["https://data.delijn.be/stops/408968", "https://data.delijn.be/stops/408978"], ["https://data.delijn.be/stops/400616", "https://data.delijn.be/stops/400626"], ["https://data.delijn.be/stops/303892", "https://data.delijn.be/stops/306093"], ["https://data.delijn.be/stops/401849", "https://data.delijn.be/stops/406818"], ["https://data.delijn.be/stops/208667", "https://data.delijn.be/stops/208673"], ["https://data.delijn.be/stops/402389", "https://data.delijn.be/stops/404704"], ["https://data.delijn.be/stops/207028", "https://data.delijn.be/stops/207077"], ["https://data.delijn.be/stops/201978", "https://data.delijn.be/stops/208040"], ["https://data.delijn.be/stops/101921", "https://data.delijn.be/stops/106039"], ["https://data.delijn.be/stops/400470", "https://data.delijn.be/stops/407642"], ["https://data.delijn.be/stops/102962", "https://data.delijn.be/stops/109256"], ["https://data.delijn.be/stops/105704", "https://data.delijn.be/stops/105712"], ["https://data.delijn.be/stops/208753", "https://data.delijn.be/stops/209382"], ["https://data.delijn.be/stops/101135", "https://data.delijn.be/stops/103352"], ["https://data.delijn.be/stops/102400", "https://data.delijn.be/stops/104760"], ["https://data.delijn.be/stops/200360", "https://data.delijn.be/stops/201108"], ["https://data.delijn.be/stops/102389", "https://data.delijn.be/stops/107083"], ["https://data.delijn.be/stops/208105", "https://data.delijn.be/stops/209777"], ["https://data.delijn.be/stops/404850", "https://data.delijn.be/stops/404855"], ["https://data.delijn.be/stops/105220", "https://data.delijn.be/stops/105415"], ["https://data.delijn.be/stops/304594", "https://data.delijn.be/stops/304656"], ["https://data.delijn.be/stops/409300", "https://data.delijn.be/stops/409318"], ["https://data.delijn.be/stops/406914", "https://data.delijn.be/stops/406968"], ["https://data.delijn.be/stops/210849", "https://data.delijn.be/stops/211849"], ["https://data.delijn.be/stops/105614", "https://data.delijn.be/stops/106365"], ["https://data.delijn.be/stops/301915", "https://data.delijn.be/stops/305814"], ["https://data.delijn.be/stops/105064", "https://data.delijn.be/stops/305832"], ["https://data.delijn.be/stops/509501", "https://data.delijn.be/stops/509503"], ["https://data.delijn.be/stops/409275", "https://data.delijn.be/stops/409311"], ["https://data.delijn.be/stops/505704", "https://data.delijn.be/stops/507571"], ["https://data.delijn.be/stops/206553", "https://data.delijn.be/stops/207485"], ["https://data.delijn.be/stops/101651", "https://data.delijn.be/stops/105502"], ["https://data.delijn.be/stops/402935", "https://data.delijn.be/stops/403979"], ["https://data.delijn.be/stops/306770", "https://data.delijn.be/stops/306823"], ["https://data.delijn.be/stops/504992", "https://data.delijn.be/stops/505962"], ["https://data.delijn.be/stops/105883", "https://data.delijn.be/stops/105884"], ["https://data.delijn.be/stops/306746", "https://data.delijn.be/stops/306747"], ["https://data.delijn.be/stops/403064", "https://data.delijn.be/stops/403241"], ["https://data.delijn.be/stops/410212", "https://data.delijn.be/stops/410391"], ["https://data.delijn.be/stops/409745", "https://data.delijn.be/stops/409794"], ["https://data.delijn.be/stops/501399", "https://data.delijn.be/stops/506399"], ["https://data.delijn.be/stops/400707", "https://data.delijn.be/stops/401910"], ["https://data.delijn.be/stops/408653", "https://data.delijn.be/stops/408660"], ["https://data.delijn.be/stops/108271", "https://data.delijn.be/stops/109360"], ["https://data.delijn.be/stops/103950", "https://data.delijn.be/stops/106070"], ["https://data.delijn.be/stops/308610", "https://data.delijn.be/stops/308612"], ["https://data.delijn.be/stops/206165", "https://data.delijn.be/stops/207165"], ["https://data.delijn.be/stops/404012", "https://data.delijn.be/stops/404016"], ["https://data.delijn.be/stops/103096", "https://data.delijn.be/stops/109270"], ["https://data.delijn.be/stops/200885", "https://data.delijn.be/stops/202064"], ["https://data.delijn.be/stops/402095", "https://data.delijn.be/stops/402228"], ["https://data.delijn.be/stops/401530", "https://data.delijn.be/stops/402028"], ["https://data.delijn.be/stops/405687", "https://data.delijn.be/stops/406467"], ["https://data.delijn.be/stops/308770", "https://data.delijn.be/stops/308782"], ["https://data.delijn.be/stops/204107", "https://data.delijn.be/stops/205115"], ["https://data.delijn.be/stops/504427", "https://data.delijn.be/stops/504697"], ["https://data.delijn.be/stops/204742", "https://data.delijn.be/stops/204746"], ["https://data.delijn.be/stops/406852", "https://data.delijn.be/stops/406853"], ["https://data.delijn.be/stops/502533", "https://data.delijn.be/stops/507533"], ["https://data.delijn.be/stops/101875", "https://data.delijn.be/stops/103520"], ["https://data.delijn.be/stops/206659", "https://data.delijn.be/stops/207658"], ["https://data.delijn.be/stops/108310", "https://data.delijn.be/stops/108315"], ["https://data.delijn.be/stops/108971", "https://data.delijn.be/stops/109667"], ["https://data.delijn.be/stops/300725", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/503692", "https://data.delijn.be/stops/508691"], ["https://data.delijn.be/stops/206990", "https://data.delijn.be/stops/207990"], ["https://data.delijn.be/stops/303875", "https://data.delijn.be/stops/303876"], ["https://data.delijn.be/stops/402359", "https://data.delijn.be/stops/402456"], ["https://data.delijn.be/stops/102564", "https://data.delijn.be/stops/406469"], ["https://data.delijn.be/stops/200723", "https://data.delijn.be/stops/200937"], ["https://data.delijn.be/stops/303796", "https://data.delijn.be/stops/303800"], ["https://data.delijn.be/stops/206105", "https://data.delijn.be/stops/206106"], ["https://data.delijn.be/stops/404795", "https://data.delijn.be/stops/404801"], ["https://data.delijn.be/stops/403407", "https://data.delijn.be/stops/403408"], ["https://data.delijn.be/stops/203120", "https://data.delijn.be/stops/203636"], ["https://data.delijn.be/stops/301501", "https://data.delijn.be/stops/308075"], ["https://data.delijn.be/stops/503096", "https://data.delijn.be/stops/508095"], ["https://data.delijn.be/stops/103900", "https://data.delijn.be/stops/106000"], ["https://data.delijn.be/stops/208958", "https://data.delijn.be/stops/209958"], ["https://data.delijn.be/stops/406635", "https://data.delijn.be/stops/407224"], ["https://data.delijn.be/stops/200534", "https://data.delijn.be/stops/201346"], ["https://data.delijn.be/stops/109243", "https://data.delijn.be/stops/109258"], ["https://data.delijn.be/stops/207428", "https://data.delijn.be/stops/209693"], ["https://data.delijn.be/stops/503277", "https://data.delijn.be/stops/508587"], ["https://data.delijn.be/stops/406242", "https://data.delijn.be/stops/406243"], ["https://data.delijn.be/stops/208132", "https://data.delijn.be/stops/208815"], ["https://data.delijn.be/stops/400875", "https://data.delijn.be/stops/409524"], ["https://data.delijn.be/stops/501134", "https://data.delijn.be/stops/506367"], ["https://data.delijn.be/stops/405960", "https://data.delijn.be/stops/308170"], ["https://data.delijn.be/stops/104652", "https://data.delijn.be/stops/306761"], ["https://data.delijn.be/stops/200563", "https://data.delijn.be/stops/201561"], ["https://data.delijn.be/stops/307631", "https://data.delijn.be/stops/307632"], ["https://data.delijn.be/stops/204045", "https://data.delijn.be/stops/204517"], ["https://data.delijn.be/stops/203346", "https://data.delijn.be/stops/204975"], ["https://data.delijn.be/stops/103122", "https://data.delijn.be/stops/104383"], ["https://data.delijn.be/stops/101678", "https://data.delijn.be/stops/101684"], ["https://data.delijn.be/stops/302136", "https://data.delijn.be/stops/302145"], ["https://data.delijn.be/stops/203869", "https://data.delijn.be/stops/209723"], ["https://data.delijn.be/stops/403745", "https://data.delijn.be/stops/403776"], ["https://data.delijn.be/stops/201004", "https://data.delijn.be/stops/201994"], ["https://data.delijn.be/stops/101821", "https://data.delijn.be/stops/107024"], ["https://data.delijn.be/stops/202460", "https://data.delijn.be/stops/203460"], ["https://data.delijn.be/stops/508658", "https://data.delijn.be/stops/508748"], ["https://data.delijn.be/stops/502012", "https://data.delijn.be/stops/502346"], ["https://data.delijn.be/stops/200319", "https://data.delijn.be/stops/201319"], ["https://data.delijn.be/stops/505117", "https://data.delijn.be/stops/508653"], ["https://data.delijn.be/stops/101750", "https://data.delijn.be/stops/102861"], ["https://data.delijn.be/stops/218503", "https://data.delijn.be/stops/219503"], ["https://data.delijn.be/stops/104402", "https://data.delijn.be/stops/104403"], ["https://data.delijn.be/stops/106625", "https://data.delijn.be/stops/106627"], ["https://data.delijn.be/stops/300868", "https://data.delijn.be/stops/302217"], ["https://data.delijn.be/stops/206936", "https://data.delijn.be/stops/207249"], ["https://data.delijn.be/stops/300517", "https://data.delijn.be/stops/300528"], ["https://data.delijn.be/stops/206897", "https://data.delijn.be/stops/207896"], ["https://data.delijn.be/stops/205988", "https://data.delijn.be/stops/219010"], ["https://data.delijn.be/stops/407947", "https://data.delijn.be/stops/408087"], ["https://data.delijn.be/stops/103225", "https://data.delijn.be/stops/103235"], ["https://data.delijn.be/stops/302618", "https://data.delijn.be/stops/302627"], ["https://data.delijn.be/stops/502068", "https://data.delijn.be/stops/507061"], ["https://data.delijn.be/stops/209040", "https://data.delijn.be/stops/209052"], ["https://data.delijn.be/stops/302721", "https://data.delijn.be/stops/302722"], ["https://data.delijn.be/stops/103590", "https://data.delijn.be/stops/108917"], ["https://data.delijn.be/stops/404208", "https://data.delijn.be/stops/404209"], ["https://data.delijn.be/stops/300798", "https://data.delijn.be/stops/306115"], ["https://data.delijn.be/stops/303087", "https://data.delijn.be/stops/303089"], ["https://data.delijn.be/stops/502555", "https://data.delijn.be/stops/507558"], ["https://data.delijn.be/stops/301193", "https://data.delijn.be/stops/308558"], ["https://data.delijn.be/stops/507738", "https://data.delijn.be/stops/509820"], ["https://data.delijn.be/stops/201305", "https://data.delijn.be/stops/203764"], ["https://data.delijn.be/stops/302976", "https://data.delijn.be/stops/303004"], ["https://data.delijn.be/stops/301948", "https://data.delijn.be/stops/307895"], ["https://data.delijn.be/stops/504237", "https://data.delijn.be/stops/509237"], ["https://data.delijn.be/stops/206027", "https://data.delijn.be/stops/206686"], ["https://data.delijn.be/stops/103120", "https://data.delijn.be/stops/104175"], ["https://data.delijn.be/stops/302403", "https://data.delijn.be/stops/302404"], ["https://data.delijn.be/stops/407076", "https://data.delijn.be/stops/407077"], ["https://data.delijn.be/stops/501614", "https://data.delijn.be/stops/501620"], ["https://data.delijn.be/stops/108459", "https://data.delijn.be/stops/108463"], ["https://data.delijn.be/stops/202710", "https://data.delijn.be/stops/202728"], ["https://data.delijn.be/stops/200509", "https://data.delijn.be/stops/201509"], ["https://data.delijn.be/stops/302844", "https://data.delijn.be/stops/302847"], ["https://data.delijn.be/stops/404475", "https://data.delijn.be/stops/405623"], ["https://data.delijn.be/stops/405258", "https://data.delijn.be/stops/405265"], ["https://data.delijn.be/stops/200508", "https://data.delijn.be/stops/201508"], ["https://data.delijn.be/stops/305835", "https://data.delijn.be/stops/305836"], ["https://data.delijn.be/stops/200156", "https://data.delijn.be/stops/201410"], ["https://data.delijn.be/stops/200954", "https://data.delijn.be/stops/202935"], ["https://data.delijn.be/stops/301184", "https://data.delijn.be/stops/304015"], ["https://data.delijn.be/stops/304785", "https://data.delijn.be/stops/308786"], ["https://data.delijn.be/stops/505357", "https://data.delijn.be/stops/505359"], ["https://data.delijn.be/stops/208410", "https://data.delijn.be/stops/209410"], ["https://data.delijn.be/stops/204527", "https://data.delijn.be/stops/205729"], ["https://data.delijn.be/stops/200899", "https://data.delijn.be/stops/203436"], ["https://data.delijn.be/stops/303773", "https://data.delijn.be/stops/308713"], ["https://data.delijn.be/stops/206705", "https://data.delijn.be/stops/207973"], ["https://data.delijn.be/stops/402954", "https://data.delijn.be/stops/404900"], ["https://data.delijn.be/stops/203348", "https://data.delijn.be/stops/208442"], ["https://data.delijn.be/stops/400832", "https://data.delijn.be/stops/403573"], ["https://data.delijn.be/stops/108827", "https://data.delijn.be/stops/108829"], ["https://data.delijn.be/stops/401756", "https://data.delijn.be/stops/401762"], ["https://data.delijn.be/stops/208293", "https://data.delijn.be/stops/209790"], ["https://data.delijn.be/stops/307069", "https://data.delijn.be/stops/307932"], ["https://data.delijn.be/stops/400266", "https://data.delijn.be/stops/400310"], ["https://data.delijn.be/stops/103976", "https://data.delijn.be/stops/109010"], ["https://data.delijn.be/stops/501077", "https://data.delijn.be/stops/506081"], ["https://data.delijn.be/stops/304628", "https://data.delijn.be/stops/304633"], ["https://data.delijn.be/stops/503092", "https://data.delijn.be/stops/505384"], ["https://data.delijn.be/stops/408034", "https://data.delijn.be/stops/408057"], ["https://data.delijn.be/stops/105308", "https://data.delijn.be/stops/105353"], ["https://data.delijn.be/stops/502116", "https://data.delijn.be/stops/507100"], ["https://data.delijn.be/stops/300687", "https://data.delijn.be/stops/308936"], ["https://data.delijn.be/stops/301961", "https://data.delijn.be/stops/301983"], ["https://data.delijn.be/stops/301444", "https://data.delijn.be/stops/306416"], ["https://data.delijn.be/stops/306942", "https://data.delijn.be/stops/306943"], ["https://data.delijn.be/stops/504160", "https://data.delijn.be/stops/504195"], ["https://data.delijn.be/stops/502514", "https://data.delijn.be/stops/507514"], ["https://data.delijn.be/stops/200573", "https://data.delijn.be/stops/201573"], ["https://data.delijn.be/stops/505384", "https://data.delijn.be/stops/508092"], ["https://data.delijn.be/stops/102231", "https://data.delijn.be/stops/105526"], ["https://data.delijn.be/stops/409058", "https://data.delijn.be/stops/409059"], ["https://data.delijn.be/stops/301005", "https://data.delijn.be/stops/301006"], ["https://data.delijn.be/stops/407404", "https://data.delijn.be/stops/407427"], ["https://data.delijn.be/stops/406426", "https://data.delijn.be/stops/409395"], ["https://data.delijn.be/stops/402192", "https://data.delijn.be/stops/402254"], ["https://data.delijn.be/stops/503148", "https://data.delijn.be/stops/505201"], ["https://data.delijn.be/stops/501547", "https://data.delijn.be/stops/505781"], ["https://data.delijn.be/stops/300498", "https://data.delijn.be/stops/302867"], ["https://data.delijn.be/stops/206012", "https://data.delijn.be/stops/207723"], ["https://data.delijn.be/stops/503282", "https://data.delijn.be/stops/508282"], ["https://data.delijn.be/stops/408208", "https://data.delijn.be/stops/408361"], ["https://data.delijn.be/stops/208351", "https://data.delijn.be/stops/209352"], ["https://data.delijn.be/stops/101023", "https://data.delijn.be/stops/105575"], ["https://data.delijn.be/stops/403319", "https://data.delijn.be/stops/410320"], ["https://data.delijn.be/stops/508717", "https://data.delijn.be/stops/508732"], ["https://data.delijn.be/stops/407975", "https://data.delijn.be/stops/407979"], ["https://data.delijn.be/stops/408319", "https://data.delijn.be/stops/408349"], ["https://data.delijn.be/stops/304526", "https://data.delijn.be/stops/304528"], ["https://data.delijn.be/stops/407792", "https://data.delijn.be/stops/307446"], ["https://data.delijn.be/stops/400595", "https://data.delijn.be/stops/400604"], ["https://data.delijn.be/stops/208444", "https://data.delijn.be/stops/209444"], ["https://data.delijn.be/stops/108106", "https://data.delijn.be/stops/108116"], ["https://data.delijn.be/stops/108135", "https://data.delijn.be/stops/108140"], ["https://data.delijn.be/stops/105618", "https://data.delijn.be/stops/105657"], ["https://data.delijn.be/stops/106399", "https://data.delijn.be/stops/107406"], ["https://data.delijn.be/stops/302372", "https://data.delijn.be/stops/302377"], ["https://data.delijn.be/stops/400928", "https://data.delijn.be/stops/400941"], ["https://data.delijn.be/stops/300939", "https://data.delijn.be/stops/304190"], ["https://data.delijn.be/stops/502394", "https://data.delijn.be/stops/507393"], ["https://data.delijn.be/stops/508191", "https://data.delijn.be/stops/508200"], ["https://data.delijn.be/stops/504075", "https://data.delijn.be/stops/509271"], ["https://data.delijn.be/stops/101183", "https://data.delijn.be/stops/107874"], ["https://data.delijn.be/stops/205022", "https://data.delijn.be/stops/205023"], ["https://data.delijn.be/stops/209219", "https://data.delijn.be/stops/209222"], ["https://data.delijn.be/stops/404871", "https://data.delijn.be/stops/404880"], ["https://data.delijn.be/stops/104017", "https://data.delijn.be/stops/104025"], ["https://data.delijn.be/stops/302619", "https://data.delijn.be/stops/303275"], ["https://data.delijn.be/stops/301271", "https://data.delijn.be/stops/307033"], ["https://data.delijn.be/stops/205288", "https://data.delijn.be/stops/205823"], ["https://data.delijn.be/stops/402678", "https://data.delijn.be/stops/402713"], ["https://data.delijn.be/stops/400349", "https://data.delijn.be/stops/400382"], ["https://data.delijn.be/stops/402304", "https://data.delijn.be/stops/402305"], ["https://data.delijn.be/stops/300265", "https://data.delijn.be/stops/302149"], ["https://data.delijn.be/stops/105802", "https://data.delijn.be/stops/107498"], ["https://data.delijn.be/stops/408752", "https://data.delijn.be/stops/408760"], ["https://data.delijn.be/stops/102296", "https://data.delijn.be/stops/106582"], ["https://data.delijn.be/stops/505073", "https://data.delijn.be/stops/508822"], ["https://data.delijn.be/stops/106091", "https://data.delijn.be/stops/108474"], ["https://data.delijn.be/stops/304933", "https://data.delijn.be/stops/304962"], ["https://data.delijn.be/stops/206619", "https://data.delijn.be/stops/207620"], ["https://data.delijn.be/stops/200938", "https://data.delijn.be/stops/202040"], ["https://data.delijn.be/stops/202473", "https://data.delijn.be/stops/203472"], ["https://data.delijn.be/stops/508280", "https://data.delijn.be/stops/508283"], ["https://data.delijn.be/stops/308215", "https://data.delijn.be/stops/308248"], ["https://data.delijn.be/stops/109911", "https://data.delijn.be/stops/109912"], ["https://data.delijn.be/stops/204304", "https://data.delijn.be/stops/205352"], ["https://data.delijn.be/stops/103477", "https://data.delijn.be/stops/109165"], ["https://data.delijn.be/stops/201806", "https://data.delijn.be/stops/208327"], ["https://data.delijn.be/stops/405924", "https://data.delijn.be/stops/405925"], ["https://data.delijn.be/stops/105843", "https://data.delijn.be/stops/105846"], ["https://data.delijn.be/stops/101601", "https://data.delijn.be/stops/101602"], ["https://data.delijn.be/stops/202094", "https://data.delijn.be/stops/203096"], ["https://data.delijn.be/stops/205047", "https://data.delijn.be/stops/205048"], ["https://data.delijn.be/stops/206891", "https://data.delijn.be/stops/207891"], ["https://data.delijn.be/stops/505105", "https://data.delijn.be/stops/508119"], ["https://data.delijn.be/stops/103236", "https://data.delijn.be/stops/107687"], ["https://data.delijn.be/stops/102648", "https://data.delijn.be/stops/105109"], ["https://data.delijn.be/stops/107589", "https://data.delijn.be/stops/107591"], ["https://data.delijn.be/stops/405322", "https://data.delijn.be/stops/303327"], ["https://data.delijn.be/stops/202048", "https://data.delijn.be/stops/211114"], ["https://data.delijn.be/stops/401166", "https://data.delijn.be/stops/401525"], ["https://data.delijn.be/stops/400057", "https://data.delijn.be/stops/400072"], ["https://data.delijn.be/stops/107216", "https://data.delijn.be/stops/107217"], ["https://data.delijn.be/stops/402840", "https://data.delijn.be/stops/402894"], ["https://data.delijn.be/stops/405002", "https://data.delijn.be/stops/405036"], ["https://data.delijn.be/stops/505501", "https://data.delijn.be/stops/505605"], ["https://data.delijn.be/stops/300026", "https://data.delijn.be/stops/300051"], ["https://data.delijn.be/stops/503091", "https://data.delijn.be/stops/508090"], ["https://data.delijn.be/stops/503932", "https://data.delijn.be/stops/508923"], ["https://data.delijn.be/stops/405916", "https://data.delijn.be/stops/405917"], ["https://data.delijn.be/stops/101358", "https://data.delijn.be/stops/102187"], ["https://data.delijn.be/stops/408134", "https://data.delijn.be/stops/408137"], ["https://data.delijn.be/stops/206023", "https://data.delijn.be/stops/207267"], ["https://data.delijn.be/stops/206149", "https://data.delijn.be/stops/207095"], ["https://data.delijn.be/stops/305048", "https://data.delijn.be/stops/305087"], ["https://data.delijn.be/stops/305507", "https://data.delijn.be/stops/305519"], ["https://data.delijn.be/stops/307743", "https://data.delijn.be/stops/307744"], ["https://data.delijn.be/stops/205133", "https://data.delijn.be/stops/205147"], ["https://data.delijn.be/stops/202215", "https://data.delijn.be/stops/203214"], ["https://data.delijn.be/stops/102056", "https://data.delijn.be/stops/102065"], ["https://data.delijn.be/stops/200931", "https://data.delijn.be/stops/202237"], ["https://data.delijn.be/stops/102302", "https://data.delijn.be/stops/109507"], ["https://data.delijn.be/stops/503111", "https://data.delijn.be/stops/505083"], ["https://data.delijn.be/stops/210013", "https://data.delijn.be/stops/211013"], ["https://data.delijn.be/stops/102301", "https://data.delijn.be/stops/106968"], ["https://data.delijn.be/stops/105228", "https://data.delijn.be/stops/109957"], ["https://data.delijn.be/stops/202259", "https://data.delijn.be/stops/203102"], ["https://data.delijn.be/stops/301787", "https://data.delijn.be/stops/301789"], ["https://data.delijn.be/stops/102854", "https://data.delijn.be/stops/205622"], ["https://data.delijn.be/stops/302779", "https://data.delijn.be/stops/302781"], ["https://data.delijn.be/stops/206865", "https://data.delijn.be/stops/207865"], ["https://data.delijn.be/stops/209612", "https://data.delijn.be/stops/209613"], ["https://data.delijn.be/stops/501348", "https://data.delijn.be/stops/506306"], ["https://data.delijn.be/stops/308257", "https://data.delijn.be/stops/308258"], ["https://data.delijn.be/stops/202768", "https://data.delijn.be/stops/203505"], ["https://data.delijn.be/stops/503558", "https://data.delijn.be/stops/508558"], ["https://data.delijn.be/stops/201873", "https://data.delijn.be/stops/202024"], ["https://data.delijn.be/stops/303303", "https://data.delijn.be/stops/308738"], ["https://data.delijn.be/stops/108703", "https://data.delijn.be/stops/108707"], ["https://data.delijn.be/stops/206043", "https://data.delijn.be/stops/206539"], ["https://data.delijn.be/stops/301689", "https://data.delijn.be/stops/301690"], ["https://data.delijn.be/stops/503458", "https://data.delijn.be/stops/503476"], ["https://data.delijn.be/stops/201133", "https://data.delijn.be/stops/201134"], ["https://data.delijn.be/stops/304849", "https://data.delijn.be/stops/304865"], ["https://data.delijn.be/stops/401533", "https://data.delijn.be/stops/406015"], ["https://data.delijn.be/stops/403492", "https://data.delijn.be/stops/405630"], ["https://data.delijn.be/stops/207234", "https://data.delijn.be/stops/207236"], ["https://data.delijn.be/stops/101472", "https://data.delijn.be/stops/109613"], ["https://data.delijn.be/stops/501103", "https://data.delijn.be/stops/506103"], ["https://data.delijn.be/stops/303595", "https://data.delijn.be/stops/303895"], ["https://data.delijn.be/stops/301231", "https://data.delijn.be/stops/305949"], ["https://data.delijn.be/stops/501182", "https://data.delijn.be/stops/501406"], ["https://data.delijn.be/stops/507611", "https://data.delijn.be/stops/507612"], ["https://data.delijn.be/stops/302479", "https://data.delijn.be/stops/308356"], ["https://data.delijn.be/stops/300553", "https://data.delijn.be/stops/307857"], ["https://data.delijn.be/stops/208151", "https://data.delijn.be/stops/209153"], ["https://data.delijn.be/stops/204021", "https://data.delijn.be/stops/204023"], ["https://data.delijn.be/stops/502556", "https://data.delijn.be/stops/507556"], ["https://data.delijn.be/stops/404598", "https://data.delijn.be/stops/404603"], ["https://data.delijn.be/stops/504205", "https://data.delijn.be/stops/505409"], ["https://data.delijn.be/stops/104504", "https://data.delijn.be/stops/104507"], ["https://data.delijn.be/stops/302509", "https://data.delijn.be/stops/302514"], ["https://data.delijn.be/stops/400563", "https://data.delijn.be/stops/403858"], ["https://data.delijn.be/stops/505597", "https://data.delijn.be/stops/509724"], ["https://data.delijn.be/stops/406927", "https://data.delijn.be/stops/406968"], ["https://data.delijn.be/stops/202707", "https://data.delijn.be/stops/203707"], ["https://data.delijn.be/stops/406368", "https://data.delijn.be/stops/406392"], ["https://data.delijn.be/stops/103128", "https://data.delijn.be/stops/103129"], ["https://data.delijn.be/stops/501175", "https://data.delijn.be/stops/506184"], ["https://data.delijn.be/stops/504849", "https://data.delijn.be/stops/504850"], ["https://data.delijn.be/stops/302180", "https://data.delijn.be/stops/302181"], ["https://data.delijn.be/stops/508082", "https://data.delijn.be/stops/508083"], ["https://data.delijn.be/stops/501001", "https://data.delijn.be/stops/501686"], ["https://data.delijn.be/stops/304595", "https://data.delijn.be/stops/304603"], ["https://data.delijn.be/stops/503902", "https://data.delijn.be/stops/508902"], ["https://data.delijn.be/stops/404734", "https://data.delijn.be/stops/404751"], ["https://data.delijn.be/stops/200813", "https://data.delijn.be/stops/203058"], ["https://data.delijn.be/stops/302315", "https://data.delijn.be/stops/302326"], ["https://data.delijn.be/stops/501142", "https://data.delijn.be/stops/501157"], ["https://data.delijn.be/stops/502024", "https://data.delijn.be/stops/507024"], ["https://data.delijn.be/stops/204696", "https://data.delijn.be/stops/205686"], ["https://data.delijn.be/stops/400664", "https://data.delijn.be/stops/400683"], ["https://data.delijn.be/stops/103084", "https://data.delijn.be/stops/107387"], ["https://data.delijn.be/stops/407591", "https://data.delijn.be/stops/407662"], ["https://data.delijn.be/stops/206448", "https://data.delijn.be/stops/206478"], ["https://data.delijn.be/stops/206291", "https://data.delijn.be/stops/206816"], ["https://data.delijn.be/stops/301699", "https://data.delijn.be/stops/305875"], ["https://data.delijn.be/stops/506318", "https://data.delijn.be/stops/506517"], ["https://data.delijn.be/stops/209394", "https://data.delijn.be/stops/509816"], ["https://data.delijn.be/stops/201475", "https://data.delijn.be/stops/208862"], ["https://data.delijn.be/stops/301938", "https://data.delijn.be/stops/302152"], ["https://data.delijn.be/stops/503885", "https://data.delijn.be/stops/505104"], ["https://data.delijn.be/stops/206953", "https://data.delijn.be/stops/207047"], ["https://data.delijn.be/stops/303363", "https://data.delijn.be/stops/308798"], ["https://data.delijn.be/stops/208150", "https://data.delijn.be/stops/208521"], ["https://data.delijn.be/stops/108488", "https://data.delijn.be/stops/306593"], ["https://data.delijn.be/stops/308099", "https://data.delijn.be/stops/308100"], ["https://data.delijn.be/stops/103761", "https://data.delijn.be/stops/105351"], ["https://data.delijn.be/stops/204067", "https://data.delijn.be/stops/205250"], ["https://data.delijn.be/stops/108541", "https://data.delijn.be/stops/108542"], ["https://data.delijn.be/stops/401816", "https://data.delijn.be/stops/406074"], ["https://data.delijn.be/stops/104962", "https://data.delijn.be/stops/109241"], ["https://data.delijn.be/stops/400659", "https://data.delijn.be/stops/400662"], ["https://data.delijn.be/stops/505707", "https://data.delijn.be/stops/509228"], ["https://data.delijn.be/stops/403024", "https://data.delijn.be/stops/403025"], ["https://data.delijn.be/stops/206710", "https://data.delijn.be/stops/206711"], ["https://data.delijn.be/stops/301494", "https://data.delijn.be/stops/307957"], ["https://data.delijn.be/stops/302346", "https://data.delijn.be/stops/302358"], ["https://data.delijn.be/stops/505026", "https://data.delijn.be/stops/505771"], ["https://data.delijn.be/stops/200628", "https://data.delijn.be/stops/205984"], ["https://data.delijn.be/stops/407665", "https://data.delijn.be/stops/407678"], ["https://data.delijn.be/stops/208154", "https://data.delijn.be/stops/209241"], ["https://data.delijn.be/stops/402886", "https://data.delijn.be/stops/402888"], ["https://data.delijn.be/stops/207761", "https://data.delijn.be/stops/209189"], ["https://data.delijn.be/stops/305252", "https://data.delijn.be/stops/305260"], ["https://data.delijn.be/stops/403109", "https://data.delijn.be/stops/403193"], ["https://data.delijn.be/stops/407374", "https://data.delijn.be/stops/407375"], ["https://data.delijn.be/stops/202809", "https://data.delijn.be/stops/203809"], ["https://data.delijn.be/stops/408812", "https://data.delijn.be/stops/408813"], ["https://data.delijn.be/stops/208030", "https://data.delijn.be/stops/209030"], ["https://data.delijn.be/stops/203931", "https://data.delijn.be/stops/211002"], ["https://data.delijn.be/stops/106161", "https://data.delijn.be/stops/106451"], ["https://data.delijn.be/stops/101221", "https://data.delijn.be/stops/107827"], ["https://data.delijn.be/stops/200733", "https://data.delijn.be/stops/202572"], ["https://data.delijn.be/stops/509702", "https://data.delijn.be/stops/509928"], ["https://data.delijn.be/stops/303287", "https://data.delijn.be/stops/305978"], ["https://data.delijn.be/stops/503769", "https://data.delijn.be/stops/508769"], ["https://data.delijn.be/stops/300771", "https://data.delijn.be/stops/302400"], ["https://data.delijn.be/stops/406043", "https://data.delijn.be/stops/406063"], ["https://data.delijn.be/stops/204135", "https://data.delijn.be/stops/204136"], ["https://data.delijn.be/stops/103743", "https://data.delijn.be/stops/105630"], ["https://data.delijn.be/stops/408866", "https://data.delijn.be/stops/408883"], ["https://data.delijn.be/stops/501026", "https://data.delijn.be/stops/506448"], ["https://data.delijn.be/stops/200393", "https://data.delijn.be/stops/201370"], ["https://data.delijn.be/stops/305895", "https://data.delijn.be/stops/305898"], ["https://data.delijn.be/stops/201718", "https://data.delijn.be/stops/203374"], ["https://data.delijn.be/stops/307383", "https://data.delijn.be/stops/307387"], ["https://data.delijn.be/stops/408518", "https://data.delijn.be/stops/408715"], ["https://data.delijn.be/stops/407162", "https://data.delijn.be/stops/407163"], ["https://data.delijn.be/stops/105591", "https://data.delijn.be/stops/105592"], ["https://data.delijn.be/stops/108311", "https://data.delijn.be/stops/109871"], ["https://data.delijn.be/stops/107169", "https://data.delijn.be/stops/107171"], ["https://data.delijn.be/stops/207067", "https://data.delijn.be/stops/207265"], ["https://data.delijn.be/stops/405816", "https://data.delijn.be/stops/409433"], ["https://data.delijn.be/stops/109194", "https://data.delijn.be/stops/109195"], ["https://data.delijn.be/stops/403300", "https://data.delijn.be/stops/407362"], ["https://data.delijn.be/stops/304938", "https://data.delijn.be/stops/308017"], ["https://data.delijn.be/stops/402070", "https://data.delijn.be/stops/402443"], ["https://data.delijn.be/stops/209551", "https://data.delijn.be/stops/209558"], ["https://data.delijn.be/stops/101672", "https://data.delijn.be/stops/408809"], ["https://data.delijn.be/stops/408828", "https://data.delijn.be/stops/408831"], ["https://data.delijn.be/stops/504405", "https://data.delijn.be/stops/509009"], ["https://data.delijn.be/stops/108359", "https://data.delijn.be/stops/108361"], ["https://data.delijn.be/stops/103284", "https://data.delijn.be/stops/106127"], ["https://data.delijn.be/stops/202133", "https://data.delijn.be/stops/203132"], ["https://data.delijn.be/stops/404171", "https://data.delijn.be/stops/404182"], ["https://data.delijn.be/stops/200755", "https://data.delijn.be/stops/503010"], ["https://data.delijn.be/stops/306140", "https://data.delijn.be/stops/306644"], ["https://data.delijn.be/stops/502914", "https://data.delijn.be/stops/507933"], ["https://data.delijn.be/stops/303499", "https://data.delijn.be/stops/308069"], ["https://data.delijn.be/stops/205979", "https://data.delijn.be/stops/206247"], ["https://data.delijn.be/stops/302590", "https://data.delijn.be/stops/302594"], ["https://data.delijn.be/stops/208609", "https://data.delijn.be/stops/209609"], ["https://data.delijn.be/stops/107490", "https://data.delijn.be/stops/109683"], ["https://data.delijn.be/stops/406523", "https://data.delijn.be/stops/406631"], ["https://data.delijn.be/stops/208746", "https://data.delijn.be/stops/209417"], ["https://data.delijn.be/stops/501356", "https://data.delijn.be/stops/506034"], ["https://data.delijn.be/stops/300634", "https://data.delijn.be/stops/308456"], ["https://data.delijn.be/stops/507387", "https://data.delijn.be/stops/507389"], ["https://data.delijn.be/stops/201675", "https://data.delijn.be/stops/203503"], ["https://data.delijn.be/stops/208687", "https://data.delijn.be/stops/208689"], ["https://data.delijn.be/stops/308160", "https://data.delijn.be/stops/308162"], ["https://data.delijn.be/stops/200115", "https://data.delijn.be/stops/202077"], ["https://data.delijn.be/stops/202664", "https://data.delijn.be/stops/203663"], ["https://data.delijn.be/stops/308490", "https://data.delijn.be/stops/308492"], ["https://data.delijn.be/stops/105873", "https://data.delijn.be/stops/105881"], ["https://data.delijn.be/stops/101446", "https://data.delijn.be/stops/107058"], ["https://data.delijn.be/stops/208790", "https://data.delijn.be/stops/209335"], ["https://data.delijn.be/stops/206603", "https://data.delijn.be/stops/206982"], ["https://data.delijn.be/stops/508509", "https://data.delijn.be/stops/508616"], ["https://data.delijn.be/stops/405379", "https://data.delijn.be/stops/408444"], ["https://data.delijn.be/stops/101440", "https://data.delijn.be/stops/103075"], ["https://data.delijn.be/stops/407656", "https://data.delijn.be/stops/407730"], ["https://data.delijn.be/stops/208467", "https://data.delijn.be/stops/209466"], ["https://data.delijn.be/stops/101008", "https://data.delijn.be/stops/108285"], ["https://data.delijn.be/stops/301014", "https://data.delijn.be/stops/304255"], ["https://data.delijn.be/stops/101474", "https://data.delijn.be/stops/109245"], ["https://data.delijn.be/stops/101833", "https://data.delijn.be/stops/108234"], ["https://data.delijn.be/stops/202332", "https://data.delijn.be/stops/203332"], ["https://data.delijn.be/stops/504792", "https://data.delijn.be/stops/505204"], ["https://data.delijn.be/stops/300057", "https://data.delijn.be/stops/307728"], ["https://data.delijn.be/stops/206993", "https://data.delijn.be/stops/207608"], ["https://data.delijn.be/stops/106775", "https://data.delijn.be/stops/106882"], ["https://data.delijn.be/stops/408428", "https://data.delijn.be/stops/408664"], ["https://data.delijn.be/stops/200227", "https://data.delijn.be/stops/201139"], ["https://data.delijn.be/stops/108922", "https://data.delijn.be/stops/108923"], ["https://data.delijn.be/stops/401728", "https://data.delijn.be/stops/406127"], ["https://data.delijn.be/stops/303125", "https://data.delijn.be/stops/304594"], ["https://data.delijn.be/stops/300698", "https://data.delijn.be/stops/306366"], ["https://data.delijn.be/stops/502033", "https://data.delijn.be/stops/507034"], ["https://data.delijn.be/stops/208127", "https://data.delijn.be/stops/208665"], ["https://data.delijn.be/stops/206469", "https://data.delijn.be/stops/206509"], ["https://data.delijn.be/stops/101150", "https://data.delijn.be/stops/101210"], ["https://data.delijn.be/stops/502399", "https://data.delijn.be/stops/507379"], ["https://data.delijn.be/stops/108636", "https://data.delijn.be/stops/109640"], ["https://data.delijn.be/stops/206716", "https://data.delijn.be/stops/207847"], ["https://data.delijn.be/stops/300336", "https://data.delijn.be/stops/307030"], ["https://data.delijn.be/stops/503259", "https://data.delijn.be/stops/508241"], ["https://data.delijn.be/stops/403089", "https://data.delijn.be/stops/403133"], ["https://data.delijn.be/stops/404518", "https://data.delijn.be/stops/410396"], ["https://data.delijn.be/stops/502062", "https://data.delijn.be/stops/507683"], ["https://data.delijn.be/stops/408650", "https://data.delijn.be/stops/408663"], ["https://data.delijn.be/stops/409580", "https://data.delijn.be/stops/409598"], ["https://data.delijn.be/stops/108653", "https://data.delijn.be/stops/304305"], ["https://data.delijn.be/stops/502202", "https://data.delijn.be/stops/507202"], ["https://data.delijn.be/stops/107573", "https://data.delijn.be/stops/107745"], ["https://data.delijn.be/stops/206424", "https://data.delijn.be/stops/207832"], ["https://data.delijn.be/stops/109292", "https://data.delijn.be/stops/109293"], ["https://data.delijn.be/stops/300074", "https://data.delijn.be/stops/304645"], ["https://data.delijn.be/stops/102469", "https://data.delijn.be/stops/406849"], ["https://data.delijn.be/stops/403619", "https://data.delijn.be/stops/403653"], ["https://data.delijn.be/stops/404288", "https://data.delijn.be/stops/409665"], ["https://data.delijn.be/stops/503697", "https://data.delijn.be/stops/503720"], ["https://data.delijn.be/stops/503572", "https://data.delijn.be/stops/504277"], ["https://data.delijn.be/stops/304074", "https://data.delijn.be/stops/308645"], ["https://data.delijn.be/stops/300769", "https://data.delijn.be/stops/303224"], ["https://data.delijn.be/stops/101055", "https://data.delijn.be/stops/104900"], ["https://data.delijn.be/stops/503510", "https://data.delijn.be/stops/505659"], ["https://data.delijn.be/stops/305151", "https://data.delijn.be/stops/305208"], ["https://data.delijn.be/stops/203884", "https://data.delijn.be/stops/203885"], ["https://data.delijn.be/stops/302683", "https://data.delijn.be/stops/302684"], ["https://data.delijn.be/stops/108051", "https://data.delijn.be/stops/308492"], ["https://data.delijn.be/stops/200739", "https://data.delijn.be/stops/202602"], ["https://data.delijn.be/stops/503697", "https://data.delijn.be/stops/504197"], ["https://data.delijn.be/stops/504697", "https://data.delijn.be/stops/505163"], ["https://data.delijn.be/stops/109572", "https://data.delijn.be/stops/109575"], ["https://data.delijn.be/stops/405039", "https://data.delijn.be/stops/406548"], ["https://data.delijn.be/stops/507698", "https://data.delijn.be/stops/508915"], ["https://data.delijn.be/stops/106142", "https://data.delijn.be/stops/106436"], ["https://data.delijn.be/stops/209109", "https://data.delijn.be/stops/209342"], ["https://data.delijn.be/stops/302568", "https://data.delijn.be/stops/302590"], ["https://data.delijn.be/stops/201044", "https://data.delijn.be/stops/201208"], ["https://data.delijn.be/stops/207666", "https://data.delijn.be/stops/209056"], ["https://data.delijn.be/stops/107556", "https://data.delijn.be/stops/109381"], ["https://data.delijn.be/stops/402579", "https://data.delijn.be/stops/403468"], ["https://data.delijn.be/stops/206810", "https://data.delijn.be/stops/217016"], ["https://data.delijn.be/stops/409100", "https://data.delijn.be/stops/409114"], ["https://data.delijn.be/stops/205161", "https://data.delijn.be/stops/207278"], ["https://data.delijn.be/stops/200778", "https://data.delijn.be/stops/203234"], ["https://data.delijn.be/stops/303856", "https://data.delijn.be/stops/303865"], ["https://data.delijn.be/stops/307922", "https://data.delijn.be/stops/308855"], ["https://data.delijn.be/stops/202322", "https://data.delijn.be/stops/210044"], ["https://data.delijn.be/stops/505344", "https://data.delijn.be/stops/505756"], ["https://data.delijn.be/stops/109353", "https://data.delijn.be/stops/109354"], ["https://data.delijn.be/stops/405900", "https://data.delijn.be/stops/405901"], ["https://data.delijn.be/stops/502096", "https://data.delijn.be/stops/507101"], ["https://data.delijn.be/stops/201924", "https://data.delijn.be/stops/207590"], ["https://data.delijn.be/stops/207759", "https://data.delijn.be/stops/208185"], ["https://data.delijn.be/stops/102721", "https://data.delijn.be/stops/104724"], ["https://data.delijn.be/stops/301907", "https://data.delijn.be/stops/306251"], ["https://data.delijn.be/stops/107554", "https://data.delijn.be/stops/107902"], ["https://data.delijn.be/stops/109351", "https://data.delijn.be/stops/109352"], ["https://data.delijn.be/stops/101540", "https://data.delijn.be/stops/101670"], ["https://data.delijn.be/stops/106875", "https://data.delijn.be/stops/106876"], ["https://data.delijn.be/stops/401518", "https://data.delijn.be/stops/401519"], ["https://data.delijn.be/stops/204430", "https://data.delijn.be/stops/204431"], ["https://data.delijn.be/stops/201080", "https://data.delijn.be/stops/202888"], ["https://data.delijn.be/stops/208378", "https://data.delijn.be/stops/209334"], ["https://data.delijn.be/stops/403113", "https://data.delijn.be/stops/403114"], ["https://data.delijn.be/stops/503917", "https://data.delijn.be/stops/503928"], ["https://data.delijn.be/stops/405850", "https://data.delijn.be/stops/406995"], ["https://data.delijn.be/stops/305423", "https://data.delijn.be/stops/305424"], ["https://data.delijn.be/stops/206717", "https://data.delijn.be/stops/206764"], ["https://data.delijn.be/stops/404835", "https://data.delijn.be/stops/406113"], ["https://data.delijn.be/stops/303948", "https://data.delijn.be/stops/303956"], ["https://data.delijn.be/stops/501734", "https://data.delijn.be/stops/506734"], ["https://data.delijn.be/stops/503188", "https://data.delijn.be/stops/503216"], ["https://data.delijn.be/stops/104992", "https://data.delijn.be/stops/400391"], ["https://data.delijn.be/stops/406740", "https://data.delijn.be/stops/406743"], ["https://data.delijn.be/stops/404886", "https://data.delijn.be/stops/408646"], ["https://data.delijn.be/stops/201958", "https://data.delijn.be/stops/203469"], ["https://data.delijn.be/stops/208742", "https://data.delijn.be/stops/208763"], ["https://data.delijn.be/stops/502075", "https://data.delijn.be/stops/507739"], ["https://data.delijn.be/stops/209007", "https://data.delijn.be/stops/209008"], ["https://data.delijn.be/stops/503525", "https://data.delijn.be/stops/508527"], ["https://data.delijn.be/stops/101444", "https://data.delijn.be/stops/101666"], ["https://data.delijn.be/stops/109856", "https://data.delijn.be/stops/109857"], ["https://data.delijn.be/stops/403280", "https://data.delijn.be/stops/403372"], ["https://data.delijn.be/stops/201910", "https://data.delijn.be/stops/201911"], ["https://data.delijn.be/stops/104446", "https://data.delijn.be/stops/104579"], ["https://data.delijn.be/stops/505193", "https://data.delijn.be/stops/505919"], ["https://data.delijn.be/stops/403338", "https://data.delijn.be/stops/403365"], ["https://data.delijn.be/stops/200909", "https://data.delijn.be/stops/200950"], ["https://data.delijn.be/stops/400031", "https://data.delijn.be/stops/400681"], ["https://data.delijn.be/stops/400829", "https://data.delijn.be/stops/403574"], ["https://data.delijn.be/stops/307981", "https://data.delijn.be/stops/307982"], ["https://data.delijn.be/stops/400672", "https://data.delijn.be/stops/410264"], ["https://data.delijn.be/stops/206749", "https://data.delijn.be/stops/207686"], ["https://data.delijn.be/stops/301613", "https://data.delijn.be/stops/307339"], ["https://data.delijn.be/stops/200624", "https://data.delijn.be/stops/203934"], ["https://data.delijn.be/stops/206804", "https://data.delijn.be/stops/208789"], ["https://data.delijn.be/stops/108942", "https://data.delijn.be/stops/108946"], ["https://data.delijn.be/stops/101451", "https://data.delijn.be/stops/108605"], ["https://data.delijn.be/stops/208630", "https://data.delijn.be/stops/209630"], ["https://data.delijn.be/stops/301914", "https://data.delijn.be/stops/308620"], ["https://data.delijn.be/stops/406604", "https://data.delijn.be/stops/406646"], ["https://data.delijn.be/stops/504055", "https://data.delijn.be/stops/509155"], ["https://data.delijn.be/stops/207610", "https://data.delijn.be/stops/207611"], ["https://data.delijn.be/stops/202599", "https://data.delijn.be/stops/202600"], ["https://data.delijn.be/stops/408601", "https://data.delijn.be/stops/408690"], ["https://data.delijn.be/stops/106412", "https://data.delijn.be/stops/106413"], ["https://data.delijn.be/stops/504762", "https://data.delijn.be/stops/504763"], ["https://data.delijn.be/stops/509613", "https://data.delijn.be/stops/509615"], ["https://data.delijn.be/stops/207771", "https://data.delijn.be/stops/209405"], ["https://data.delijn.be/stops/504694", "https://data.delijn.be/stops/509328"], ["https://data.delijn.be/stops/101987", "https://data.delijn.be/stops/105457"], ["https://data.delijn.be/stops/108404", "https://data.delijn.be/stops/305456"], ["https://data.delijn.be/stops/503357", "https://data.delijn.be/stops/503379"], ["https://data.delijn.be/stops/504229", "https://data.delijn.be/stops/508544"], ["https://data.delijn.be/stops/204659", "https://data.delijn.be/stops/204660"], ["https://data.delijn.be/stops/109041", "https://data.delijn.be/stops/109042"], ["https://data.delijn.be/stops/206001", "https://data.delijn.be/stops/206522"], ["https://data.delijn.be/stops/104429", "https://data.delijn.be/stops/107367"], ["https://data.delijn.be/stops/406882", "https://data.delijn.be/stops/409737"], ["https://data.delijn.be/stops/200704", "https://data.delijn.be/stops/200737"], ["https://data.delijn.be/stops/302267", "https://data.delijn.be/stops/303207"], ["https://data.delijn.be/stops/204981", "https://data.delijn.be/stops/209680"], ["https://data.delijn.be/stops/400535", "https://data.delijn.be/stops/410109"], ["https://data.delijn.be/stops/401242", "https://data.delijn.be/stops/401268"], ["https://data.delijn.be/stops/105619", "https://data.delijn.be/stops/106361"], ["https://data.delijn.be/stops/408056", "https://data.delijn.be/stops/408057"], ["https://data.delijn.be/stops/202892", "https://data.delijn.be/stops/203279"], ["https://data.delijn.be/stops/302036", "https://data.delijn.be/stops/304914"], ["https://data.delijn.be/stops/307973", "https://data.delijn.be/stops/307975"], ["https://data.delijn.be/stops/300388", "https://data.delijn.be/stops/306156"], ["https://data.delijn.be/stops/400991", "https://data.delijn.be/stops/401150"], ["https://data.delijn.be/stops/501095", "https://data.delijn.be/stops/506218"], ["https://data.delijn.be/stops/407017", "https://data.delijn.be/stops/407044"], ["https://data.delijn.be/stops/306837", "https://data.delijn.be/stops/308541"], ["https://data.delijn.be/stops/205489", "https://data.delijn.be/stops/205508"], ["https://data.delijn.be/stops/503851", "https://data.delijn.be/stops/505218"], ["https://data.delijn.be/stops/304697", "https://data.delijn.be/stops/307156"], ["https://data.delijn.be/stops/302862", "https://data.delijn.be/stops/303104"], ["https://data.delijn.be/stops/108945", "https://data.delijn.be/stops/205635"], ["https://data.delijn.be/stops/102632", "https://data.delijn.be/stops/107047"], ["https://data.delijn.be/stops/501560", "https://data.delijn.be/stops/505152"], ["https://data.delijn.be/stops/204705", "https://data.delijn.be/stops/205705"], ["https://data.delijn.be/stops/303764", "https://data.delijn.be/stops/303770"], ["https://data.delijn.be/stops/107461", "https://data.delijn.be/stops/109199"], ["https://data.delijn.be/stops/306367", "https://data.delijn.be/stops/307590"], ["https://data.delijn.be/stops/301375", "https://data.delijn.be/stops/301377"], ["https://data.delijn.be/stops/405877", "https://data.delijn.be/stops/409414"], ["https://data.delijn.be/stops/407245", "https://data.delijn.be/stops/407460"], ["https://data.delijn.be/stops/408681", "https://data.delijn.be/stops/408788"], ["https://data.delijn.be/stops/105978", "https://data.delijn.be/stops/105982"], ["https://data.delijn.be/stops/101312", "https://data.delijn.be/stops/101729"], ["https://data.delijn.be/stops/106941", "https://data.delijn.be/stops/106942"], ["https://data.delijn.be/stops/204260", "https://data.delijn.be/stops/205475"], ["https://data.delijn.be/stops/102587", "https://data.delijn.be/stops/409531"], ["https://data.delijn.be/stops/405024", "https://data.delijn.be/stops/405077"], ["https://data.delijn.be/stops/504189", "https://data.delijn.be/stops/504193"], ["https://data.delijn.be/stops/408852", "https://data.delijn.be/stops/408853"], ["https://data.delijn.be/stops/106306", "https://data.delijn.be/stops/106307"], ["https://data.delijn.be/stops/407916", "https://data.delijn.be/stops/306060"], ["https://data.delijn.be/stops/204163", "https://data.delijn.be/stops/207275"], ["https://data.delijn.be/stops/501241", "https://data.delijn.be/stops/501371"], ["https://data.delijn.be/stops/503705", "https://data.delijn.be/stops/507203"], ["https://data.delijn.be/stops/407988", "https://data.delijn.be/stops/408070"], ["https://data.delijn.be/stops/504132", "https://data.delijn.be/stops/509132"], ["https://data.delijn.be/stops/202858", "https://data.delijn.be/stops/203859"], ["https://data.delijn.be/stops/407758", "https://data.delijn.be/stops/407761"], ["https://data.delijn.be/stops/303067", "https://data.delijn.be/stops/303093"], ["https://data.delijn.be/stops/406525", "https://data.delijn.be/stops/406602"], ["https://data.delijn.be/stops/503164", "https://data.delijn.be/stops/503796"], ["https://data.delijn.be/stops/508146", "https://data.delijn.be/stops/509622"], ["https://data.delijn.be/stops/301365", "https://data.delijn.be/stops/304782"], ["https://data.delijn.be/stops/406196", "https://data.delijn.be/stops/406895"], ["https://data.delijn.be/stops/503687", "https://data.delijn.be/stops/508686"], ["https://data.delijn.be/stops/401402", "https://data.delijn.be/stops/410152"], ["https://data.delijn.be/stops/400676", "https://data.delijn.be/stops/402620"], ["https://data.delijn.be/stops/109146", "https://data.delijn.be/stops/109148"], ["https://data.delijn.be/stops/503826", "https://data.delijn.be/stops/508825"], ["https://data.delijn.be/stops/105134", "https://data.delijn.be/stops/305610"], ["https://data.delijn.be/stops/206137", "https://data.delijn.be/stops/207137"], ["https://data.delijn.be/stops/103115", "https://data.delijn.be/stops/103790"], ["https://data.delijn.be/stops/206801", "https://data.delijn.be/stops/208488"], ["https://data.delijn.be/stops/103056", "https://data.delijn.be/stops/103643"], ["https://data.delijn.be/stops/102298", "https://data.delijn.be/stops/106585"], ["https://data.delijn.be/stops/103070", "https://data.delijn.be/stops/103080"], ["https://data.delijn.be/stops/501299", "https://data.delijn.be/stops/506298"], ["https://data.delijn.be/stops/107564", "https://data.delijn.be/stops/109435"], ["https://data.delijn.be/stops/401012", "https://data.delijn.be/stops/401016"], ["https://data.delijn.be/stops/306820", "https://data.delijn.be/stops/306824"], ["https://data.delijn.be/stops/301190", "https://data.delijn.be/stops/301253"], ["https://data.delijn.be/stops/108392", "https://data.delijn.be/stops/108394"], ["https://data.delijn.be/stops/300271", "https://data.delijn.be/stops/300272"], ["https://data.delijn.be/stops/101192", "https://data.delijn.be/stops/204541"], ["https://data.delijn.be/stops/105149", "https://data.delijn.be/stops/105152"], ["https://data.delijn.be/stops/305692", "https://data.delijn.be/stops/305695"], ["https://data.delijn.be/stops/307697", "https://data.delijn.be/stops/307698"], ["https://data.delijn.be/stops/406844", "https://data.delijn.be/stops/408622"], ["https://data.delijn.be/stops/410117", "https://data.delijn.be/stops/410326"], ["https://data.delijn.be/stops/400383", "https://data.delijn.be/stops/400427"], ["https://data.delijn.be/stops/105088", "https://data.delijn.be/stops/105094"], ["https://data.delijn.be/stops/301014", "https://data.delijn.be/stops/301018"], ["https://data.delijn.be/stops/300812", "https://data.delijn.be/stops/300832"], ["https://data.delijn.be/stops/101414", "https://data.delijn.be/stops/101429"], ["https://data.delijn.be/stops/208160", "https://data.delijn.be/stops/209100"], ["https://data.delijn.be/stops/106661", "https://data.delijn.be/stops/106663"], ["https://data.delijn.be/stops/201357", "https://data.delijn.be/stops/201358"], ["https://data.delijn.be/stops/204684", "https://data.delijn.be/stops/205684"], ["https://data.delijn.be/stops/302962", "https://data.delijn.be/stops/302981"], ["https://data.delijn.be/stops/203330", "https://data.delijn.be/stops/203331"], ["https://data.delijn.be/stops/501074", "https://data.delijn.be/stops/506513"], ["https://data.delijn.be/stops/402681", "https://data.delijn.be/stops/405939"], ["https://data.delijn.be/stops/503931", "https://data.delijn.be/stops/508919"], ["https://data.delijn.be/stops/107378", "https://data.delijn.be/stops/109594"], ["https://data.delijn.be/stops/202573", "https://data.delijn.be/stops/203430"], ["https://data.delijn.be/stops/501201", "https://data.delijn.be/stops/506203"], ["https://data.delijn.be/stops/102586", "https://data.delijn.be/stops/109097"], ["https://data.delijn.be/stops/403273", "https://data.delijn.be/stops/403383"], ["https://data.delijn.be/stops/405700", "https://data.delijn.be/stops/405701"], ["https://data.delijn.be/stops/303670", "https://data.delijn.be/stops/304641"], ["https://data.delijn.be/stops/210019", "https://data.delijn.be/stops/503578"], ["https://data.delijn.be/stops/501400", "https://data.delijn.be/stops/506306"], ["https://data.delijn.be/stops/200109", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/500022", "https://data.delijn.be/stops/501195"], ["https://data.delijn.be/stops/502253", "https://data.delijn.be/stops/505583"], ["https://data.delijn.be/stops/302382", "https://data.delijn.be/stops/304818"], ["https://data.delijn.be/stops/503471", "https://data.delijn.be/stops/508470"], ["https://data.delijn.be/stops/506200", "https://data.delijn.be/stops/506424"], ["https://data.delijn.be/stops/400195", "https://data.delijn.be/stops/408187"], ["https://data.delijn.be/stops/407352", "https://data.delijn.be/stops/410253"], ["https://data.delijn.be/stops/400797", "https://data.delijn.be/stops/400798"], ["https://data.delijn.be/stops/306556", "https://data.delijn.be/stops/306557"], ["https://data.delijn.be/stops/204134", "https://data.delijn.be/stops/205134"], ["https://data.delijn.be/stops/205590", "https://data.delijn.be/stops/207968"], ["https://data.delijn.be/stops/402337", "https://data.delijn.be/stops/410076"], ["https://data.delijn.be/stops/208634", "https://data.delijn.be/stops/209634"], ["https://data.delijn.be/stops/200426", "https://data.delijn.be/stops/203008"], ["https://data.delijn.be/stops/409407", "https://data.delijn.be/stops/409529"], ["https://data.delijn.be/stops/403438", "https://data.delijn.be/stops/405139"], ["https://data.delijn.be/stops/404376", "https://data.delijn.be/stops/404381"], ["https://data.delijn.be/stops/219080", "https://data.delijn.be/stops/300388"], ["https://data.delijn.be/stops/305967", "https://data.delijn.be/stops/308141"], ["https://data.delijn.be/stops/502151", "https://data.delijn.be/stops/507166"], ["https://data.delijn.be/stops/504555", "https://data.delijn.be/stops/509555"], ["https://data.delijn.be/stops/107985", "https://data.delijn.be/stops/108240"], ["https://data.delijn.be/stops/206673", "https://data.delijn.be/stops/208173"], ["https://data.delijn.be/stops/200704", "https://data.delijn.be/stops/203575"], ["https://data.delijn.be/stops/201897", "https://data.delijn.be/stops/203149"], ["https://data.delijn.be/stops/504504", "https://data.delijn.be/stops/504505"], ["https://data.delijn.be/stops/305060", "https://data.delijn.be/stops/305061"], ["https://data.delijn.be/stops/306652", "https://data.delijn.be/stops/306655"], ["https://data.delijn.be/stops/408154", "https://data.delijn.be/stops/408923"], ["https://data.delijn.be/stops/206560", "https://data.delijn.be/stops/207560"], ["https://data.delijn.be/stops/202938", "https://data.delijn.be/stops/203940"], ["https://data.delijn.be/stops/107094", "https://data.delijn.be/stops/108233"], ["https://data.delijn.be/stops/203328", "https://data.delijn.be/stops/210088"], ["https://data.delijn.be/stops/204293", "https://data.delijn.be/stops/204294"], ["https://data.delijn.be/stops/400077", "https://data.delijn.be/stops/407030"], ["https://data.delijn.be/stops/404980", "https://data.delijn.be/stops/410217"], ["https://data.delijn.be/stops/407986", "https://data.delijn.be/stops/408018"], ["https://data.delijn.be/stops/503704", "https://data.delijn.be/stops/508728"], ["https://data.delijn.be/stops/200011", "https://data.delijn.be/stops/201508"], ["https://data.delijn.be/stops/504991", "https://data.delijn.be/stops/508578"], ["https://data.delijn.be/stops/201052", "https://data.delijn.be/stops/211118"], ["https://data.delijn.be/stops/209195", "https://data.delijn.be/stops/209409"], ["https://data.delijn.be/stops/204161", "https://data.delijn.be/stops/205167"], ["https://data.delijn.be/stops/200776", "https://data.delijn.be/stops/208304"], ["https://data.delijn.be/stops/400762", "https://data.delijn.be/stops/410035"], ["https://data.delijn.be/stops/105332", "https://data.delijn.be/stops/105333"], ["https://data.delijn.be/stops/406940", "https://data.delijn.be/stops/409478"], ["https://data.delijn.be/stops/300824", "https://data.delijn.be/stops/307232"], ["https://data.delijn.be/stops/206726", "https://data.delijn.be/stops/307029"], ["https://data.delijn.be/stops/210111", "https://data.delijn.be/stops/211111"], ["https://data.delijn.be/stops/201905", "https://data.delijn.be/stops/201906"], ["https://data.delijn.be/stops/306369", "https://data.delijn.be/stops/307066"], ["https://data.delijn.be/stops/502612", "https://data.delijn.be/stops/507612"], ["https://data.delijn.be/stops/209183", "https://data.delijn.be/stops/209184"], ["https://data.delijn.be/stops/104053", "https://data.delijn.be/stops/104137"], ["https://data.delijn.be/stops/407045", "https://data.delijn.be/stops/407046"], ["https://data.delijn.be/stops/406901", "https://data.delijn.be/stops/409454"], ["https://data.delijn.be/stops/105507", "https://data.delijn.be/stops/105508"], ["https://data.delijn.be/stops/407772", "https://data.delijn.be/stops/408927"], ["https://data.delijn.be/stops/402622", "https://data.delijn.be/stops/402628"], ["https://data.delijn.be/stops/301541", "https://data.delijn.be/stops/301542"], ["https://data.delijn.be/stops/200709", "https://data.delijn.be/stops/214003"], ["https://data.delijn.be/stops/400756", "https://data.delijn.be/stops/400839"], ["https://data.delijn.be/stops/300644", "https://data.delijn.be/stops/300645"], ["https://data.delijn.be/stops/107396", "https://data.delijn.be/stops/107397"], ["https://data.delijn.be/stops/202726", "https://data.delijn.be/stops/203674"], ["https://data.delijn.be/stops/208019", "https://data.delijn.be/stops/208037"], ["https://data.delijn.be/stops/504564", "https://data.delijn.be/stops/509568"], ["https://data.delijn.be/stops/205028", "https://data.delijn.be/stops/205036"], ["https://data.delijn.be/stops/105016", "https://data.delijn.be/stops/106830"], ["https://data.delijn.be/stops/505565", "https://data.delijn.be/stops/505566"], ["https://data.delijn.be/stops/109579", "https://data.delijn.be/stops/109581"], ["https://data.delijn.be/stops/101921", "https://data.delijn.be/stops/106058"], ["https://data.delijn.be/stops/200521", "https://data.delijn.be/stops/201521"], ["https://data.delijn.be/stops/301592", "https://data.delijn.be/stops/305047"], ["https://data.delijn.be/stops/505009", "https://data.delijn.be/stops/505508"], ["https://data.delijn.be/stops/300089", "https://data.delijn.be/stops/307734"], ["https://data.delijn.be/stops/207599", "https://data.delijn.be/stops/207847"], ["https://data.delijn.be/stops/201490", "https://data.delijn.be/stops/201890"], ["https://data.delijn.be/stops/208004", "https://data.delijn.be/stops/209004"], ["https://data.delijn.be/stops/104659", "https://data.delijn.be/stops/108436"], ["https://data.delijn.be/stops/208379", "https://data.delijn.be/stops/209299"], ["https://data.delijn.be/stops/101470", "https://data.delijn.be/stops/101959"], ["https://data.delijn.be/stops/108078", "https://data.delijn.be/stops/108841"], ["https://data.delijn.be/stops/208243", "https://data.delijn.be/stops/208794"], ["https://data.delijn.be/stops/101804", "https://data.delijn.be/stops/107979"], ["https://data.delijn.be/stops/301688", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/103223", "https://data.delijn.be/stops/103224"], ["https://data.delijn.be/stops/403965", "https://data.delijn.be/stops/403976"], ["https://data.delijn.be/stops/504214", "https://data.delijn.be/stops/509065"], ["https://data.delijn.be/stops/101975", "https://data.delijn.be/stops/104485"], ["https://data.delijn.be/stops/408560", "https://data.delijn.be/stops/408618"], ["https://data.delijn.be/stops/105789", "https://data.delijn.be/stops/105941"], ["https://data.delijn.be/stops/303126", "https://data.delijn.be/stops/303130"], ["https://data.delijn.be/stops/407784", "https://data.delijn.be/stops/408143"], ["https://data.delijn.be/stops/200025", "https://data.delijn.be/stops/200069"], ["https://data.delijn.be/stops/300163", "https://data.delijn.be/stops/300165"], ["https://data.delijn.be/stops/302781", "https://data.delijn.be/stops/307047"], ["https://data.delijn.be/stops/203695", "https://data.delijn.be/stops/211023"], ["https://data.delijn.be/stops/201928", "https://data.delijn.be/stops/201935"], ["https://data.delijn.be/stops/102200", "https://data.delijn.be/stops/104021"], ["https://data.delijn.be/stops/201603", "https://data.delijn.be/stops/201606"], ["https://data.delijn.be/stops/101674", "https://data.delijn.be/stops/103157"], ["https://data.delijn.be/stops/206350", "https://data.delijn.be/stops/207727"], ["https://data.delijn.be/stops/402807", "https://data.delijn.be/stops/409036"], ["https://data.delijn.be/stops/405786", "https://data.delijn.be/stops/409747"], ["https://data.delijn.be/stops/503409", "https://data.delijn.be/stops/508525"], ["https://data.delijn.be/stops/400822", "https://data.delijn.be/stops/400823"], ["https://data.delijn.be/stops/301574", "https://data.delijn.be/stops/301577"], ["https://data.delijn.be/stops/204352", "https://data.delijn.be/stops/205299"], ["https://data.delijn.be/stops/408568", "https://data.delijn.be/stops/408569"], ["https://data.delijn.be/stops/508398", "https://data.delijn.be/stops/508400"], ["https://data.delijn.be/stops/400090", "https://data.delijn.be/stops/400101"], ["https://data.delijn.be/stops/200582", "https://data.delijn.be/stops/201582"], ["https://data.delijn.be/stops/207762", "https://data.delijn.be/stops/209193"], ["https://data.delijn.be/stops/202749", "https://data.delijn.be/stops/203749"], ["https://data.delijn.be/stops/200069", "https://data.delijn.be/stops/205926"], ["https://data.delijn.be/stops/507423", "https://data.delijn.be/stops/507439"], ["https://data.delijn.be/stops/504593", "https://data.delijn.be/stops/509594"], ["https://data.delijn.be/stops/208439", "https://data.delijn.be/stops/208674"], ["https://data.delijn.be/stops/106644", "https://data.delijn.be/stops/106676"], ["https://data.delijn.be/stops/408605", "https://data.delijn.be/stops/408609"], ["https://data.delijn.be/stops/403739", "https://data.delijn.be/stops/403743"], ["https://data.delijn.be/stops/300599", "https://data.delijn.be/stops/300617"], ["https://data.delijn.be/stops/202380", "https://data.delijn.be/stops/202442"], ["https://data.delijn.be/stops/407632", "https://data.delijn.be/stops/409788"], ["https://data.delijn.be/stops/400059", "https://data.delijn.be/stops/400927"], ["https://data.delijn.be/stops/206902", "https://data.delijn.be/stops/207917"], ["https://data.delijn.be/stops/204430", "https://data.delijn.be/stops/205429"], ["https://data.delijn.be/stops/206207", "https://data.delijn.be/stops/206208"], ["https://data.delijn.be/stops/207864", "https://data.delijn.be/stops/208086"], ["https://data.delijn.be/stops/302517", "https://data.delijn.be/stops/305804"], ["https://data.delijn.be/stops/204465", "https://data.delijn.be/stops/204475"], ["https://data.delijn.be/stops/405543", "https://data.delijn.be/stops/405546"], ["https://data.delijn.be/stops/503524", "https://data.delijn.be/stops/504671"], ["https://data.delijn.be/stops/409373", "https://data.delijn.be/stops/409379"], ["https://data.delijn.be/stops/202031", "https://data.delijn.be/stops/202082"], ["https://data.delijn.be/stops/204572", "https://data.delijn.be/stops/303394"], ["https://data.delijn.be/stops/207669", "https://data.delijn.be/stops/207671"], ["https://data.delijn.be/stops/403009", "https://data.delijn.be/stops/403269"], ["https://data.delijn.be/stops/302282", "https://data.delijn.be/stops/302287"], ["https://data.delijn.be/stops/401474", "https://data.delijn.be/stops/401495"], ["https://data.delijn.be/stops/301168", "https://data.delijn.be/stops/307682"], ["https://data.delijn.be/stops/200973", "https://data.delijn.be/stops/206798"], ["https://data.delijn.be/stops/406037", "https://data.delijn.be/stops/407779"], ["https://data.delijn.be/stops/402586", "https://data.delijn.be/stops/407950"], ["https://data.delijn.be/stops/405873", "https://data.delijn.be/stops/409761"], ["https://data.delijn.be/stops/101188", "https://data.delijn.be/stops/107859"], ["https://data.delijn.be/stops/403996", "https://data.delijn.be/stops/405946"], ["https://data.delijn.be/stops/501078", "https://data.delijn.be/stops/506083"], ["https://data.delijn.be/stops/401459", "https://data.delijn.be/stops/407150"], ["https://data.delijn.be/stops/201929", "https://data.delijn.be/stops/210047"], ["https://data.delijn.be/stops/306726", "https://data.delijn.be/stops/306730"], ["https://data.delijn.be/stops/500958", "https://data.delijn.be/stops/505129"], ["https://data.delijn.be/stops/504201", "https://data.delijn.be/stops/505394"], ["https://data.delijn.be/stops/206514", "https://data.delijn.be/stops/207514"], ["https://data.delijn.be/stops/204302", "https://data.delijn.be/stops/205302"], ["https://data.delijn.be/stops/200868", "https://data.delijn.be/stops/203483"], ["https://data.delijn.be/stops/402972", "https://data.delijn.be/stops/403662"], ["https://data.delijn.be/stops/306915", "https://data.delijn.be/stops/308875"], ["https://data.delijn.be/stops/404894", "https://data.delijn.be/stops/404896"], ["https://data.delijn.be/stops/205377", "https://data.delijn.be/stops/205480"], ["https://data.delijn.be/stops/507425", "https://data.delijn.be/stops/507697"], ["https://data.delijn.be/stops/303350", "https://data.delijn.be/stops/303351"], ["https://data.delijn.be/stops/505729", "https://data.delijn.be/stops/507286"], ["https://data.delijn.be/stops/401752", "https://data.delijn.be/stops/401773"], ["https://data.delijn.be/stops/200862", "https://data.delijn.be/stops/507065"], ["https://data.delijn.be/stops/305337", "https://data.delijn.be/stops/305353"], ["https://data.delijn.be/stops/106212", "https://data.delijn.be/stops/106213"], ["https://data.delijn.be/stops/402115", "https://data.delijn.be/stops/406810"], ["https://data.delijn.be/stops/300555", "https://data.delijn.be/stops/307857"], ["https://data.delijn.be/stops/202117", "https://data.delijn.be/stops/202170"], ["https://data.delijn.be/stops/300612", "https://data.delijn.be/stops/300619"], ["https://data.delijn.be/stops/206267", "https://data.delijn.be/stops/207267"], ["https://data.delijn.be/stops/405364", "https://data.delijn.be/stops/405373"], ["https://data.delijn.be/stops/301272", "https://data.delijn.be/stops/307613"], ["https://data.delijn.be/stops/509295", "https://data.delijn.be/stops/509713"], ["https://data.delijn.be/stops/102417", "https://data.delijn.be/stops/105588"], ["https://data.delijn.be/stops/202235", "https://data.delijn.be/stops/203236"], ["https://data.delijn.be/stops/202697", "https://data.delijn.be/stops/203698"], ["https://data.delijn.be/stops/302511", "https://data.delijn.be/stops/302518"], ["https://data.delijn.be/stops/101927", "https://data.delijn.be/stops/107006"], ["https://data.delijn.be/stops/200686", "https://data.delijn.be/stops/200692"], ["https://data.delijn.be/stops/103510", "https://data.delijn.be/stops/104490"], ["https://data.delijn.be/stops/300795", "https://data.delijn.be/stops/304621"], ["https://data.delijn.be/stops/505059", "https://data.delijn.be/stops/505072"], ["https://data.delijn.be/stops/200683", "https://data.delijn.be/stops/200694"], ["https://data.delijn.be/stops/303268", "https://data.delijn.be/stops/308921"], ["https://data.delijn.be/stops/105169", "https://data.delijn.be/stops/105221"], ["https://data.delijn.be/stops/504460", "https://data.delijn.be/stops/509352"], ["https://data.delijn.be/stops/304991", "https://data.delijn.be/stops/305015"], ["https://data.delijn.be/stops/305061", "https://data.delijn.be/stops/308122"], ["https://data.delijn.be/stops/209447", "https://data.delijn.be/stops/209520"], ["https://data.delijn.be/stops/200136", "https://data.delijn.be/stops/201136"], ["https://data.delijn.be/stops/508006", "https://data.delijn.be/stops/508111"], ["https://data.delijn.be/stops/201423", "https://data.delijn.be/stops/209263"], ["https://data.delijn.be/stops/503148", "https://data.delijn.be/stops/508148"], ["https://data.delijn.be/stops/506181", "https://data.delijn.be/stops/506677"], ["https://data.delijn.be/stops/206820", "https://data.delijn.be/stops/207214"], ["https://data.delijn.be/stops/108941", "https://data.delijn.be/stops/108943"], ["https://data.delijn.be/stops/501207", "https://data.delijn.be/stops/506207"], ["https://data.delijn.be/stops/303790", "https://data.delijn.be/stops/303791"], ["https://data.delijn.be/stops/501385", "https://data.delijn.be/stops/506385"], ["https://data.delijn.be/stops/406275", "https://data.delijn.be/stops/406279"], ["https://data.delijn.be/stops/308122", "https://data.delijn.be/stops/308123"], ["https://data.delijn.be/stops/409092", "https://data.delijn.be/stops/409093"], ["https://data.delijn.be/stops/304266", "https://data.delijn.be/stops/304286"], ["https://data.delijn.be/stops/304603", "https://data.delijn.be/stops/304611"], ["https://data.delijn.be/stops/102849", "https://data.delijn.be/stops/102851"], ["https://data.delijn.be/stops/201951", "https://data.delijn.be/stops/203464"], ["https://data.delijn.be/stops/503595", "https://data.delijn.be/stops/503596"], ["https://data.delijn.be/stops/301185", "https://data.delijn.be/stops/301256"], ["https://data.delijn.be/stops/304606", "https://data.delijn.be/stops/304662"], ["https://data.delijn.be/stops/305993", "https://data.delijn.be/stops/306867"], ["https://data.delijn.be/stops/305249", "https://data.delijn.be/stops/305274"], ["https://data.delijn.be/stops/400893", "https://data.delijn.be/stops/402769"], ["https://data.delijn.be/stops/406788", "https://data.delijn.be/stops/406855"], ["https://data.delijn.be/stops/503022", "https://data.delijn.be/stops/504538"], ["https://data.delijn.be/stops/107710", "https://data.delijn.be/stops/107747"], ["https://data.delijn.be/stops/400592", "https://data.delijn.be/stops/400629"], ["https://data.delijn.be/stops/208433", "https://data.delijn.be/stops/209436"], ["https://data.delijn.be/stops/102927", "https://data.delijn.be/stops/109129"], ["https://data.delijn.be/stops/502575", "https://data.delijn.be/stops/507575"], ["https://data.delijn.be/stops/202677", "https://data.delijn.be/stops/203723"], ["https://data.delijn.be/stops/204378", "https://data.delijn.be/stops/205420"], ["https://data.delijn.be/stops/208048", "https://data.delijn.be/stops/208049"], ["https://data.delijn.be/stops/109833", "https://data.delijn.be/stops/109952"], ["https://data.delijn.be/stops/206177", "https://data.delijn.be/stops/303862"], ["https://data.delijn.be/stops/406707", "https://data.delijn.be/stops/407912"], ["https://data.delijn.be/stops/504400", "https://data.delijn.be/stops/509400"], ["https://data.delijn.be/stops/107718", "https://data.delijn.be/stops/107740"], ["https://data.delijn.be/stops/401000", "https://data.delijn.be/stops/403746"], ["https://data.delijn.be/stops/404006", "https://data.delijn.be/stops/404433"], ["https://data.delijn.be/stops/207419", "https://data.delijn.be/stops/306731"], ["https://data.delijn.be/stops/301888", "https://data.delijn.be/stops/305973"], ["https://data.delijn.be/stops/300540", "https://data.delijn.be/stops/304891"], ["https://data.delijn.be/stops/101195", "https://data.delijn.be/stops/103095"], ["https://data.delijn.be/stops/304228", "https://data.delijn.be/stops/304243"], ["https://data.delijn.be/stops/503805", "https://data.delijn.be/stops/504944"], ["https://data.delijn.be/stops/201759", "https://data.delijn.be/stops/208271"], ["https://data.delijn.be/stops/200466", "https://data.delijn.be/stops/208706"], ["https://data.delijn.be/stops/201764", "https://data.delijn.be/stops/201765"], ["https://data.delijn.be/stops/303518", "https://data.delijn.be/stops/303519"], ["https://data.delijn.be/stops/102881", "https://data.delijn.be/stops/102882"], ["https://data.delijn.be/stops/505436", "https://data.delijn.be/stops/509266"], ["https://data.delijn.be/stops/200674", "https://data.delijn.be/stops/200677"], ["https://data.delijn.be/stops/502374", "https://data.delijn.be/stops/502815"], ["https://data.delijn.be/stops/502017", "https://data.delijn.be/stops/502914"], ["https://data.delijn.be/stops/301028", "https://data.delijn.be/stops/301035"], ["https://data.delijn.be/stops/208417", "https://data.delijn.be/stops/208746"], ["https://data.delijn.be/stops/206670", "https://data.delijn.be/stops/209107"], ["https://data.delijn.be/stops/402881", "https://data.delijn.be/stops/306020"], ["https://data.delijn.be/stops/509491", "https://data.delijn.be/stops/509637"], ["https://data.delijn.be/stops/505314", "https://data.delijn.be/stops/505774"], ["https://data.delijn.be/stops/400254", "https://data.delijn.be/stops/405550"], ["https://data.delijn.be/stops/105417", "https://data.delijn.be/stops/105846"], ["https://data.delijn.be/stops/503722", "https://data.delijn.be/stops/508722"], ["https://data.delijn.be/stops/403797", "https://data.delijn.be/stops/403805"], ["https://data.delijn.be/stops/503356", "https://data.delijn.be/stops/503416"], ["https://data.delijn.be/stops/404874", "https://data.delijn.be/stops/404963"], ["https://data.delijn.be/stops/404298", "https://data.delijn.be/stops/301468"], ["https://data.delijn.be/stops/102567", "https://data.delijn.be/stops/406450"], ["https://data.delijn.be/stops/202317", "https://data.delijn.be/stops/202318"], ["https://data.delijn.be/stops/301216", "https://data.delijn.be/stops/304923"], ["https://data.delijn.be/stops/504622", "https://data.delijn.be/stops/508142"], ["https://data.delijn.be/stops/504492", "https://data.delijn.be/stops/504494"], ["https://data.delijn.be/stops/200727", "https://data.delijn.be/stops/202412"], ["https://data.delijn.be/stops/304230", "https://data.delijn.be/stops/304232"], ["https://data.delijn.be/stops/202333", "https://data.delijn.be/stops/210017"], ["https://data.delijn.be/stops/205643", "https://data.delijn.be/stops/205644"], ["https://data.delijn.be/stops/408652", "https://data.delijn.be/stops/408662"], ["https://data.delijn.be/stops/204343", "https://data.delijn.be/stops/205101"], ["https://data.delijn.be/stops/503005", "https://data.delijn.be/stops/508326"], ["https://data.delijn.be/stops/200034", "https://data.delijn.be/stops/203719"], ["https://data.delijn.be/stops/405818", "https://data.delijn.be/stops/405872"], ["https://data.delijn.be/stops/403912", "https://data.delijn.be/stops/403981"], ["https://data.delijn.be/stops/203167", "https://data.delijn.be/stops/205075"], ["https://data.delijn.be/stops/300848", "https://data.delijn.be/stops/301578"], ["https://data.delijn.be/stops/102951", "https://data.delijn.be/stops/104001"], ["https://data.delijn.be/stops/403508", "https://data.delijn.be/stops/403512"], ["https://data.delijn.be/stops/101131", "https://data.delijn.be/stops/106002"], ["https://data.delijn.be/stops/102370", "https://data.delijn.be/stops/102375"], ["https://data.delijn.be/stops/504202", "https://data.delijn.be/stops/504262"], ["https://data.delijn.be/stops/408662", "https://data.delijn.be/stops/408663"], ["https://data.delijn.be/stops/504094", "https://data.delijn.be/stops/504095"], ["https://data.delijn.be/stops/101746", "https://data.delijn.be/stops/101747"], ["https://data.delijn.be/stops/300500", "https://data.delijn.be/stops/300535"], ["https://data.delijn.be/stops/409665", "https://data.delijn.be/stops/409666"], ["https://data.delijn.be/stops/204378", "https://data.delijn.be/stops/205764"], ["https://data.delijn.be/stops/207118", "https://data.delijn.be/stops/207502"], ["https://data.delijn.be/stops/501383", "https://data.delijn.be/stops/506381"], ["https://data.delijn.be/stops/504865", "https://data.delijn.be/stops/508841"], ["https://data.delijn.be/stops/204607", "https://data.delijn.be/stops/205606"], ["https://data.delijn.be/stops/408492", "https://data.delijn.be/stops/408978"], ["https://data.delijn.be/stops/106283", "https://data.delijn.be/stops/106346"], ["https://data.delijn.be/stops/308567", "https://data.delijn.be/stops/308574"], ["https://data.delijn.be/stops/407591", "https://data.delijn.be/stops/407592"], ["https://data.delijn.be/stops/402358", "https://data.delijn.be/stops/402460"], ["https://data.delijn.be/stops/204990", "https://data.delijn.be/stops/208782"], ["https://data.delijn.be/stops/400410", "https://data.delijn.be/stops/400411"], ["https://data.delijn.be/stops/202211", "https://data.delijn.be/stops/203773"], ["https://data.delijn.be/stops/205238", "https://data.delijn.be/stops/205575"], ["https://data.delijn.be/stops/108716", "https://data.delijn.be/stops/108717"], ["https://data.delijn.be/stops/303708", "https://data.delijn.be/stops/303728"], ["https://data.delijn.be/stops/306002", "https://data.delijn.be/stops/306003"], ["https://data.delijn.be/stops/105432", "https://data.delijn.be/stops/105433"], ["https://data.delijn.be/stops/502077", "https://data.delijn.be/stops/502078"], ["https://data.delijn.be/stops/504133", "https://data.delijn.be/stops/504135"], ["https://data.delijn.be/stops/102245", "https://data.delijn.be/stops/102919"], ["https://data.delijn.be/stops/108363", "https://data.delijn.be/stops/108506"], ["https://data.delijn.be/stops/109045", "https://data.delijn.be/stops/109105"], ["https://data.delijn.be/stops/200965", "https://data.delijn.be/stops/201065"], ["https://data.delijn.be/stops/501508", "https://data.delijn.be/stops/501736"], ["https://data.delijn.be/stops/401315", "https://data.delijn.be/stops/405467"], ["https://data.delijn.be/stops/404669", "https://data.delijn.be/stops/404675"], ["https://data.delijn.be/stops/506028", "https://data.delijn.be/stops/506632"], ["https://data.delijn.be/stops/410274", "https://data.delijn.be/stops/410276"], ["https://data.delijn.be/stops/504556", "https://data.delijn.be/stops/504561"], ["https://data.delijn.be/stops/300130", "https://data.delijn.be/stops/300131"], ["https://data.delijn.be/stops/106346", "https://data.delijn.be/stops/106348"], ["https://data.delijn.be/stops/104132", "https://data.delijn.be/stops/104651"], ["https://data.delijn.be/stops/307855", "https://data.delijn.be/stops/307856"], ["https://data.delijn.be/stops/407375", "https://data.delijn.be/stops/407393"], ["https://data.delijn.be/stops/201088", "https://data.delijn.be/stops/201919"], ["https://data.delijn.be/stops/409228", "https://data.delijn.be/stops/409231"], ["https://data.delijn.be/stops/305061", "https://data.delijn.be/stops/305126"], ["https://data.delijn.be/stops/407702", "https://data.delijn.be/stops/407703"], ["https://data.delijn.be/stops/304699", "https://data.delijn.be/stops/304714"], ["https://data.delijn.be/stops/501099", "https://data.delijn.be/stops/501560"], ["https://data.delijn.be/stops/303404", "https://data.delijn.be/stops/304827"], ["https://data.delijn.be/stops/200859", "https://data.delijn.be/stops/200892"], ["https://data.delijn.be/stops/200694", "https://data.delijn.be/stops/202789"], ["https://data.delijn.be/stops/403178", "https://data.delijn.be/stops/403517"], ["https://data.delijn.be/stops/403114", "https://data.delijn.be/stops/403115"], ["https://data.delijn.be/stops/305186", "https://data.delijn.be/stops/306954"], ["https://data.delijn.be/stops/206572", "https://data.delijn.be/stops/207572"], ["https://data.delijn.be/stops/405834", "https://data.delijn.be/stops/405865"], ["https://data.delijn.be/stops/200837", "https://data.delijn.be/stops/200875"], ["https://data.delijn.be/stops/206061", "https://data.delijn.be/stops/207061"], ["https://data.delijn.be/stops/501384", "https://data.delijn.be/stops/506379"], ["https://data.delijn.be/stops/301403", "https://data.delijn.be/stops/306311"], ["https://data.delijn.be/stops/304608", "https://data.delijn.be/stops/306170"], ["https://data.delijn.be/stops/300011", "https://data.delijn.be/stops/304620"], ["https://data.delijn.be/stops/407163", "https://data.delijn.be/stops/407186"], ["https://data.delijn.be/stops/304571", "https://data.delijn.be/stops/304572"], ["https://data.delijn.be/stops/103141", "https://data.delijn.be/stops/106513"], ["https://data.delijn.be/stops/502247", "https://data.delijn.be/stops/505704"], ["https://data.delijn.be/stops/503287", "https://data.delijn.be/stops/508287"], ["https://data.delijn.be/stops/208049", "https://data.delijn.be/stops/209485"], ["https://data.delijn.be/stops/303856", "https://data.delijn.be/stops/308881"], ["https://data.delijn.be/stops/302562", "https://data.delijn.be/stops/302576"], ["https://data.delijn.be/stops/200883", "https://data.delijn.be/stops/202053"], ["https://data.delijn.be/stops/203362", "https://data.delijn.be/stops/205950"], ["https://data.delijn.be/stops/302585", "https://data.delijn.be/stops/303611"], ["https://data.delijn.be/stops/201773", "https://data.delijn.be/stops/208254"], ["https://data.delijn.be/stops/200603", "https://data.delijn.be/stops/201637"], ["https://data.delijn.be/stops/302862", "https://data.delijn.be/stops/303679"], ["https://data.delijn.be/stops/206841", "https://data.delijn.be/stops/207840"], ["https://data.delijn.be/stops/107069", "https://data.delijn.be/stops/107071"], ["https://data.delijn.be/stops/202637", "https://data.delijn.be/stops/203636"], ["https://data.delijn.be/stops/200005", "https://data.delijn.be/stops/202014"], ["https://data.delijn.be/stops/506108", "https://data.delijn.be/stops/506111"], ["https://data.delijn.be/stops/103298", "https://data.delijn.be/stops/105097"], ["https://data.delijn.be/stops/505603", "https://data.delijn.be/stops/505605"], ["https://data.delijn.be/stops/407717", "https://data.delijn.be/stops/407729"], ["https://data.delijn.be/stops/503417", "https://data.delijn.be/stops/503446"], ["https://data.delijn.be/stops/509024", "https://data.delijn.be/stops/509034"], ["https://data.delijn.be/stops/101086", "https://data.delijn.be/stops/101089"], ["https://data.delijn.be/stops/201072", "https://data.delijn.be/stops/211046"], ["https://data.delijn.be/stops/200016", "https://data.delijn.be/stops/200353"], ["https://data.delijn.be/stops/204467", "https://data.delijn.be/stops/204468"], ["https://data.delijn.be/stops/103388", "https://data.delijn.be/stops/103389"], ["https://data.delijn.be/stops/109829", "https://data.delijn.be/stops/109830"], ["https://data.delijn.be/stops/203549", "https://data.delijn.be/stops/203552"], ["https://data.delijn.be/stops/504663", "https://data.delijn.be/stops/509252"], ["https://data.delijn.be/stops/206120", "https://data.delijn.be/stops/207120"], ["https://data.delijn.be/stops/202180", "https://data.delijn.be/stops/203180"], ["https://data.delijn.be/stops/103582", "https://data.delijn.be/stops/103583"], ["https://data.delijn.be/stops/503686", "https://data.delijn.be/stops/503687"], ["https://data.delijn.be/stops/504415", "https://data.delijn.be/stops/509415"], ["https://data.delijn.be/stops/101948", "https://data.delijn.be/stops/108752"], ["https://data.delijn.be/stops/202199", "https://data.delijn.be/stops/203200"], ["https://data.delijn.be/stops/202659", "https://data.delijn.be/stops/210659"], ["https://data.delijn.be/stops/206447", "https://data.delijn.be/stops/207446"], ["https://data.delijn.be/stops/202488", "https://data.delijn.be/stops/203930"], ["https://data.delijn.be/stops/207170", "https://data.delijn.be/stops/303849"], ["https://data.delijn.be/stops/206682", "https://data.delijn.be/stops/208105"], ["https://data.delijn.be/stops/102978", "https://data.delijn.be/stops/105151"], ["https://data.delijn.be/stops/402150", "https://data.delijn.be/stops/406810"], ["https://data.delijn.be/stops/109522", "https://data.delijn.be/stops/109523"], ["https://data.delijn.be/stops/503036", "https://data.delijn.be/stops/503037"], ["https://data.delijn.be/stops/206573", "https://data.delijn.be/stops/207574"], ["https://data.delijn.be/stops/509843", "https://data.delijn.be/stops/509845"], ["https://data.delijn.be/stops/501607", "https://data.delijn.be/stops/506607"], ["https://data.delijn.be/stops/404227", "https://data.delijn.be/stops/404505"], ["https://data.delijn.be/stops/404343", "https://data.delijn.be/stops/404351"], ["https://data.delijn.be/stops/202227", "https://data.delijn.be/stops/208857"], ["https://data.delijn.be/stops/108652", "https://data.delijn.be/stops/302906"], ["https://data.delijn.be/stops/407844", "https://data.delijn.be/stops/407907"], ["https://data.delijn.be/stops/503958", "https://data.delijn.be/stops/504682"], ["https://data.delijn.be/stops/303129", "https://data.delijn.be/stops/303131"], ["https://data.delijn.be/stops/200126", "https://data.delijn.be/stops/201323"], ["https://data.delijn.be/stops/402117", "https://data.delijn.be/stops/402135"], ["https://data.delijn.be/stops/401283", "https://data.delijn.be/stops/408418"], ["https://data.delijn.be/stops/300588", "https://data.delijn.be/stops/303518"], ["https://data.delijn.be/stops/409435", "https://data.delijn.be/stops/409680"], ["https://data.delijn.be/stops/204140", "https://data.delijn.be/stops/206638"], ["https://data.delijn.be/stops/101577", "https://data.delijn.be/stops/101579"], ["https://data.delijn.be/stops/200135", "https://data.delijn.be/stops/201231"], ["https://data.delijn.be/stops/101030", "https://data.delijn.be/stops/104946"], ["https://data.delijn.be/stops/202225", "https://data.delijn.be/stops/203283"], ["https://data.delijn.be/stops/103681", "https://data.delijn.be/stops/107791"], ["https://data.delijn.be/stops/200887", "https://data.delijn.be/stops/210103"], ["https://data.delijn.be/stops/105571", "https://data.delijn.be/stops/105580"], ["https://data.delijn.be/stops/401478", "https://data.delijn.be/stops/410208"], ["https://data.delijn.be/stops/501475", "https://data.delijn.be/stops/506475"], ["https://data.delijn.be/stops/508755", "https://data.delijn.be/stops/508966"], ["https://data.delijn.be/stops/400417", "https://data.delijn.be/stops/400418"], ["https://data.delijn.be/stops/502423", "https://data.delijn.be/stops/507439"], ["https://data.delijn.be/stops/107982", "https://data.delijn.be/stops/107983"], ["https://data.delijn.be/stops/504759", "https://data.delijn.be/stops/509759"], ["https://data.delijn.be/stops/208629", "https://data.delijn.be/stops/209045"], ["https://data.delijn.be/stops/200742", "https://data.delijn.be/stops/201742"], ["https://data.delijn.be/stops/206290", "https://data.delijn.be/stops/207289"], ["https://data.delijn.be/stops/106910", "https://data.delijn.be/stops/107254"], ["https://data.delijn.be/stops/501306", "https://data.delijn.be/stops/506306"], ["https://data.delijn.be/stops/104205", "https://data.delijn.be/stops/104220"], ["https://data.delijn.be/stops/502613", "https://data.delijn.be/stops/507438"], ["https://data.delijn.be/stops/505085", "https://data.delijn.be/stops/505762"], ["https://data.delijn.be/stops/209188", "https://data.delijn.be/stops/209192"], ["https://data.delijn.be/stops/502180", "https://data.delijn.be/stops/507179"], ["https://data.delijn.be/stops/204407", "https://data.delijn.be/stops/205407"], ["https://data.delijn.be/stops/204751", "https://data.delijn.be/stops/205437"], ["https://data.delijn.be/stops/206595", "https://data.delijn.be/stops/209665"], ["https://data.delijn.be/stops/211085", "https://data.delijn.be/stops/211105"], ["https://data.delijn.be/stops/200537", "https://data.delijn.be/stops/201537"], ["https://data.delijn.be/stops/206622", "https://data.delijn.be/stops/207622"], ["https://data.delijn.be/stops/500025", "https://data.delijn.be/stops/505076"], ["https://data.delijn.be/stops/206639", "https://data.delijn.be/stops/206810"], ["https://data.delijn.be/stops/408898", "https://data.delijn.be/stops/408916"], ["https://data.delijn.be/stops/201915", "https://data.delijn.be/stops/207568"], ["https://data.delijn.be/stops/305828", "https://data.delijn.be/stops/305955"], ["https://data.delijn.be/stops/504050", "https://data.delijn.be/stops/509828"], ["https://data.delijn.be/stops/302340", "https://data.delijn.be/stops/302349"], ["https://data.delijn.be/stops/105352", "https://data.delijn.be/stops/109618"], ["https://data.delijn.be/stops/509762", "https://data.delijn.be/stops/509763"], ["https://data.delijn.be/stops/401423", "https://data.delijn.be/stops/401498"], ["https://data.delijn.be/stops/503636", "https://data.delijn.be/stops/503638"], ["https://data.delijn.be/stops/300942", "https://data.delijn.be/stops/307795"], ["https://data.delijn.be/stops/102586", "https://data.delijn.be/stops/409531"], ["https://data.delijn.be/stops/403648", "https://data.delijn.be/stops/407345"], ["https://data.delijn.be/stops/207425", "https://data.delijn.be/stops/207832"], ["https://data.delijn.be/stops/206228", "https://data.delijn.be/stops/207228"], ["https://data.delijn.be/stops/304980", "https://data.delijn.be/stops/304981"], ["https://data.delijn.be/stops/200850", "https://data.delijn.be/stops/200893"], ["https://data.delijn.be/stops/304044", "https://data.delijn.be/stops/304811"], ["https://data.delijn.be/stops/201423", "https://data.delijn.be/stops/209719"], ["https://data.delijn.be/stops/107828", "https://data.delijn.be/stops/107832"], ["https://data.delijn.be/stops/506149", "https://data.delijn.be/stops/506164"], ["https://data.delijn.be/stops/101451", "https://data.delijn.be/stops/102631"], ["https://data.delijn.be/stops/204141", "https://data.delijn.be/stops/207898"], ["https://data.delijn.be/stops/402896", "https://data.delijn.be/stops/308117"], ["https://data.delijn.be/stops/105204", "https://data.delijn.be/stops/108878"], ["https://data.delijn.be/stops/202589", "https://data.delijn.be/stops/202684"], ["https://data.delijn.be/stops/407600", "https://data.delijn.be/stops/407604"], ["https://data.delijn.be/stops/304401", "https://data.delijn.be/stops/304402"], ["https://data.delijn.be/stops/304430", "https://data.delijn.be/stops/307383"], ["https://data.delijn.be/stops/504819", "https://data.delijn.be/stops/507764"], ["https://data.delijn.be/stops/206203", "https://data.delijn.be/stops/207687"], ["https://data.delijn.be/stops/509346", "https://data.delijn.be/stops/509353"], ["https://data.delijn.be/stops/204140", "https://data.delijn.be/stops/205140"], ["https://data.delijn.be/stops/101342", "https://data.delijn.be/stops/108101"], ["https://data.delijn.be/stops/504142", "https://data.delijn.be/stops/509147"], ["https://data.delijn.be/stops/407872", "https://data.delijn.be/stops/407874"], ["https://data.delijn.be/stops/502443", "https://data.delijn.be/stops/507451"], ["https://data.delijn.be/stops/101550", "https://data.delijn.be/stops/102896"], ["https://data.delijn.be/stops/503325", "https://data.delijn.be/stops/508324"], ["https://data.delijn.be/stops/108388", "https://data.delijn.be/stops/108392"], ["https://data.delijn.be/stops/204404", "https://data.delijn.be/stops/205405"], ["https://data.delijn.be/stops/407945", "https://data.delijn.be/stops/407983"], ["https://data.delijn.be/stops/504855", "https://data.delijn.be/stops/509150"], ["https://data.delijn.be/stops/401093", "https://data.delijn.be/stops/408958"], ["https://data.delijn.be/stops/505954", "https://data.delijn.be/stops/508161"], ["https://data.delijn.be/stops/401924", "https://data.delijn.be/stops/404689"], ["https://data.delijn.be/stops/108709", "https://data.delijn.be/stops/108803"], ["https://data.delijn.be/stops/307258", "https://data.delijn.be/stops/307259"], ["https://data.delijn.be/stops/302173", "https://data.delijn.be/stops/308096"], ["https://data.delijn.be/stops/201913", "https://data.delijn.be/stops/201932"], ["https://data.delijn.be/stops/501443", "https://data.delijn.be/stops/506443"], ["https://data.delijn.be/stops/401541", "https://data.delijn.be/stops/406888"], ["https://data.delijn.be/stops/502107", "https://data.delijn.be/stops/507134"], ["https://data.delijn.be/stops/209557", "https://data.delijn.be/stops/209612"], ["https://data.delijn.be/stops/305110", "https://data.delijn.be/stops/305111"], ["https://data.delijn.be/stops/508186", "https://data.delijn.be/stops/508385"], ["https://data.delijn.be/stops/206113", "https://data.delijn.be/stops/206156"], ["https://data.delijn.be/stops/208179", "https://data.delijn.be/stops/209179"], ["https://data.delijn.be/stops/107045", "https://data.delijn.be/stops/107985"], ["https://data.delijn.be/stops/304202", "https://data.delijn.be/stops/306000"], ["https://data.delijn.be/stops/304344", "https://data.delijn.be/stops/304346"], ["https://data.delijn.be/stops/506394", "https://data.delijn.be/stops/506464"], ["https://data.delijn.be/stops/102399", "https://data.delijn.be/stops/104096"], ["https://data.delijn.be/stops/103541", "https://data.delijn.be/stops/103542"], ["https://data.delijn.be/stops/303194", "https://data.delijn.be/stops/303202"], ["https://data.delijn.be/stops/106085", "https://data.delijn.be/stops/106100"], ["https://data.delijn.be/stops/405736", "https://data.delijn.be/stops/405737"], ["https://data.delijn.be/stops/102697", "https://data.delijn.be/stops/103743"], ["https://data.delijn.be/stops/504115", "https://data.delijn.be/stops/505921"], ["https://data.delijn.be/stops/202572", "https://data.delijn.be/stops/203572"], ["https://data.delijn.be/stops/401468", "https://data.delijn.be/stops/401890"], ["https://data.delijn.be/stops/205668", "https://data.delijn.be/stops/214001"], ["https://data.delijn.be/stops/106298", "https://data.delijn.be/stops/106471"], ["https://data.delijn.be/stops/302321", "https://data.delijn.be/stops/303452"], ["https://data.delijn.be/stops/404010", "https://data.delijn.be/stops/404082"], ["https://data.delijn.be/stops/302723", "https://data.delijn.be/stops/308833"], ["https://data.delijn.be/stops/307606", "https://data.delijn.be/stops/307740"], ["https://data.delijn.be/stops/504304", "https://data.delijn.be/stops/504772"], ["https://data.delijn.be/stops/204344", "https://data.delijn.be/stops/205345"], ["https://data.delijn.be/stops/404867", "https://data.delijn.be/stops/404878"], ["https://data.delijn.be/stops/200982", "https://data.delijn.be/stops/202920"], ["https://data.delijn.be/stops/405817", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/103529", "https://data.delijn.be/stops/109635"], ["https://data.delijn.be/stops/104093", "https://data.delijn.be/stops/109837"], ["https://data.delijn.be/stops/206152", "https://data.delijn.be/stops/207114"], ["https://data.delijn.be/stops/408663", "https://data.delijn.be/stops/408743"], ["https://data.delijn.be/stops/208008", "https://data.delijn.be/stops/209009"], ["https://data.delijn.be/stops/109315", "https://data.delijn.be/stops/109866"], ["https://data.delijn.be/stops/301636", "https://data.delijn.be/stops/301638"], ["https://data.delijn.be/stops/301553", "https://data.delijn.be/stops/301559"], ["https://data.delijn.be/stops/107082", "https://data.delijn.be/stops/107083"], ["https://data.delijn.be/stops/402722", "https://data.delijn.be/stops/402723"], ["https://data.delijn.be/stops/506463", "https://data.delijn.be/stops/506658"], ["https://data.delijn.be/stops/104001", "https://data.delijn.be/stops/107285"], ["https://data.delijn.be/stops/108475", "https://data.delijn.be/stops/108986"], ["https://data.delijn.be/stops/409099", "https://data.delijn.be/stops/409106"], ["https://data.delijn.be/stops/300408", "https://data.delijn.be/stops/302001"], ["https://data.delijn.be/stops/503429", "https://data.delijn.be/stops/503434"], ["https://data.delijn.be/stops/503176", "https://data.delijn.be/stops/508170"], ["https://data.delijn.be/stops/200689", "https://data.delijn.be/stops/200696"], ["https://data.delijn.be/stops/504500", "https://data.delijn.be/stops/504501"], ["https://data.delijn.be/stops/102373", "https://data.delijn.be/stops/105671"], ["https://data.delijn.be/stops/201051", "https://data.delijn.be/stops/203934"], ["https://data.delijn.be/stops/301368", "https://data.delijn.be/stops/304811"], ["https://data.delijn.be/stops/107957", "https://data.delijn.be/stops/109870"], ["https://data.delijn.be/stops/302184", "https://data.delijn.be/stops/305095"], ["https://data.delijn.be/stops/504169", "https://data.delijn.be/stops/509177"], ["https://data.delijn.be/stops/400407", "https://data.delijn.be/stops/400410"], ["https://data.delijn.be/stops/206353", "https://data.delijn.be/stops/207916"], ["https://data.delijn.be/stops/504249", "https://data.delijn.be/stops/509447"], ["https://data.delijn.be/stops/106649", "https://data.delijn.be/stops/109753"], ["https://data.delijn.be/stops/107661", "https://data.delijn.be/stops/109862"], ["https://data.delijn.be/stops/303465", "https://data.delijn.be/stops/303470"], ["https://data.delijn.be/stops/200068", "https://data.delijn.be/stops/205951"], ["https://data.delijn.be/stops/207698", "https://data.delijn.be/stops/207747"], ["https://data.delijn.be/stops/209401", "https://data.delijn.be/stops/209420"], ["https://data.delijn.be/stops/200240", "https://data.delijn.be/stops/201241"], ["https://data.delijn.be/stops/302295", "https://data.delijn.be/stops/303506"], ["https://data.delijn.be/stops/304754", "https://data.delijn.be/stops/304778"], ["https://data.delijn.be/stops/407995", "https://data.delijn.be/stops/408005"], ["https://data.delijn.be/stops/201713", "https://data.delijn.be/stops/201723"], ["https://data.delijn.be/stops/208511", "https://data.delijn.be/stops/208633"], ["https://data.delijn.be/stops/302940", "https://data.delijn.be/stops/302977"], ["https://data.delijn.be/stops/401582", "https://data.delijn.be/stops/401899"], ["https://data.delijn.be/stops/106190", "https://data.delijn.be/stops/107441"], ["https://data.delijn.be/stops/301129", "https://data.delijn.be/stops/307650"], ["https://data.delijn.be/stops/105460", "https://data.delijn.be/stops/105500"], ["https://data.delijn.be/stops/109310", "https://data.delijn.be/stops/109311"], ["https://data.delijn.be/stops/104046", "https://data.delijn.be/stops/302552"], ["https://data.delijn.be/stops/106921", "https://data.delijn.be/stops/107287"], ["https://data.delijn.be/stops/305318", "https://data.delijn.be/stops/305335"], ["https://data.delijn.be/stops/105897", "https://data.delijn.be/stops/105899"], ["https://data.delijn.be/stops/102525", "https://data.delijn.be/stops/102527"], ["https://data.delijn.be/stops/409371", "https://data.delijn.be/stops/409378"], ["https://data.delijn.be/stops/304596", "https://data.delijn.be/stops/304717"], ["https://data.delijn.be/stops/105314", "https://data.delijn.be/stops/105343"], ["https://data.delijn.be/stops/206260", "https://data.delijn.be/stops/206918"], ["https://data.delijn.be/stops/109552", "https://data.delijn.be/stops/307436"], ["https://data.delijn.be/stops/204689", "https://data.delijn.be/stops/205689"], ["https://data.delijn.be/stops/206924", "https://data.delijn.be/stops/207814"], ["https://data.delijn.be/stops/401442", "https://data.delijn.be/stops/401723"], ["https://data.delijn.be/stops/404189", "https://data.delijn.be/stops/404241"], ["https://data.delijn.be/stops/405717", "https://data.delijn.be/stops/405736"], ["https://data.delijn.be/stops/304230", "https://data.delijn.be/stops/308773"], ["https://data.delijn.be/stops/305150", "https://data.delijn.be/stops/305164"], ["https://data.delijn.be/stops/208011", "https://data.delijn.be/stops/209009"], ["https://data.delijn.be/stops/405603", "https://data.delijn.be/stops/410052"], ["https://data.delijn.be/stops/200699", "https://data.delijn.be/stops/203789"], ["https://data.delijn.be/stops/301307", "https://data.delijn.be/stops/306649"], ["https://data.delijn.be/stops/402270", "https://data.delijn.be/stops/410149"], ["https://data.delijn.be/stops/400177", "https://data.delijn.be/stops/400295"], ["https://data.delijn.be/stops/300791", "https://data.delijn.be/stops/300793"], ["https://data.delijn.be/stops/503293", "https://data.delijn.be/stops/505257"], ["https://data.delijn.be/stops/109968", "https://data.delijn.be/stops/109973"], ["https://data.delijn.be/stops/206151", "https://data.delijn.be/stops/207907"], ["https://data.delijn.be/stops/106092", "https://data.delijn.be/stops/106093"], ["https://data.delijn.be/stops/101015", "https://data.delijn.be/stops/104600"], ["https://data.delijn.be/stops/409436", "https://data.delijn.be/stops/409680"], ["https://data.delijn.be/stops/301543", "https://data.delijn.be/stops/305142"], ["https://data.delijn.be/stops/201734", "https://data.delijn.be/stops/202056"], ["https://data.delijn.be/stops/205400", "https://data.delijn.be/stops/205411"], ["https://data.delijn.be/stops/507710", "https://data.delijn.be/stops/507711"], ["https://data.delijn.be/stops/502316", "https://data.delijn.be/stops/505675"], ["https://data.delijn.be/stops/400454", "https://data.delijn.be/stops/400455"], ["https://data.delijn.be/stops/502458", "https://data.delijn.be/stops/507657"], ["https://data.delijn.be/stops/406805", "https://data.delijn.be/stops/406810"], ["https://data.delijn.be/stops/503351", "https://data.delijn.be/stops/508351"], ["https://data.delijn.be/stops/207420", "https://data.delijn.be/stops/217014"], ["https://data.delijn.be/stops/302144", "https://data.delijn.be/stops/302145"], ["https://data.delijn.be/stops/208366", "https://data.delijn.be/stops/209366"], ["https://data.delijn.be/stops/400656", "https://data.delijn.be/stops/401250"], ["https://data.delijn.be/stops/302842", "https://data.delijn.be/stops/302844"], ["https://data.delijn.be/stops/200237", "https://data.delijn.be/stops/205924"], ["https://data.delijn.be/stops/404441", "https://data.delijn.be/stops/405875"], ["https://data.delijn.be/stops/408321", "https://data.delijn.be/stops/408325"], ["https://data.delijn.be/stops/205327", "https://data.delijn.be/stops/205536"], ["https://data.delijn.be/stops/107685", "https://data.delijn.be/stops/107985"], ["https://data.delijn.be/stops/204054", "https://data.delijn.be/stops/205054"], ["https://data.delijn.be/stops/204987", "https://data.delijn.be/stops/209258"], ["https://data.delijn.be/stops/300205", "https://data.delijn.be/stops/302115"], ["https://data.delijn.be/stops/503228", "https://data.delijn.be/stops/503229"], ["https://data.delijn.be/stops/206005", "https://data.delijn.be/stops/206007"], ["https://data.delijn.be/stops/408490", "https://data.delijn.be/stops/408491"], ["https://data.delijn.be/stops/306603", "https://data.delijn.be/stops/306605"], ["https://data.delijn.be/stops/407036", "https://data.delijn.be/stops/407071"], ["https://data.delijn.be/stops/501409", "https://data.delijn.be/stops/506409"], ["https://data.delijn.be/stops/505725", "https://data.delijn.be/stops/505730"], ["https://data.delijn.be/stops/301428", "https://data.delijn.be/stops/301432"], ["https://data.delijn.be/stops/202986", "https://data.delijn.be/stops/203986"], ["https://data.delijn.be/stops/400789", "https://data.delijn.be/stops/409594"], ["https://data.delijn.be/stops/305270", "https://data.delijn.be/stops/305887"], ["https://data.delijn.be/stops/208145", "https://data.delijn.be/stops/208146"], ["https://data.delijn.be/stops/404555", "https://data.delijn.be/stops/407354"], ["https://data.delijn.be/stops/206336", "https://data.delijn.be/stops/206337"], ["https://data.delijn.be/stops/206765", "https://data.delijn.be/stops/208618"], ["https://data.delijn.be/stops/404514", "https://data.delijn.be/stops/404551"], ["https://data.delijn.be/stops/401416", "https://data.delijn.be/stops/306001"], ["https://data.delijn.be/stops/204341", "https://data.delijn.be/stops/205761"], ["https://data.delijn.be/stops/300557", "https://data.delijn.be/stops/300565"], ["https://data.delijn.be/stops/201626", "https://data.delijn.be/stops/203902"], ["https://data.delijn.be/stops/101913", "https://data.delijn.be/stops/101916"], ["https://data.delijn.be/stops/401933", "https://data.delijn.be/stops/401936"], ["https://data.delijn.be/stops/300320", "https://data.delijn.be/stops/302420"], ["https://data.delijn.be/stops/109080", "https://data.delijn.be/stops/109853"], ["https://data.delijn.be/stops/508334", "https://data.delijn.be/stops/508335"], ["https://data.delijn.be/stops/106966", "https://data.delijn.be/stops/106981"], ["https://data.delijn.be/stops/304370", "https://data.delijn.be/stops/307372"], ["https://data.delijn.be/stops/302751", "https://data.delijn.be/stops/303219"], ["https://data.delijn.be/stops/300423", "https://data.delijn.be/stops/300430"], ["https://data.delijn.be/stops/306897", "https://data.delijn.be/stops/308125"], ["https://data.delijn.be/stops/102216", "https://data.delijn.be/stops/105536"], ["https://data.delijn.be/stops/208338", "https://data.delijn.be/stops/209115"], ["https://data.delijn.be/stops/505823", "https://data.delijn.be/stops/508319"], ["https://data.delijn.be/stops/303828", "https://data.delijn.be/stops/305895"], ["https://data.delijn.be/stops/408924", "https://data.delijn.be/stops/408925"], ["https://data.delijn.be/stops/308406", "https://data.delijn.be/stops/308407"], ["https://data.delijn.be/stops/206016", "https://data.delijn.be/stops/206387"], ["https://data.delijn.be/stops/301541", "https://data.delijn.be/stops/308088"], ["https://data.delijn.be/stops/403321", "https://data.delijn.be/stops/403915"], ["https://data.delijn.be/stops/504970", "https://data.delijn.be/stops/508713"], ["https://data.delijn.be/stops/208173", "https://data.delijn.be/stops/208174"], ["https://data.delijn.be/stops/204406", "https://data.delijn.be/stops/205199"], ["https://data.delijn.be/stops/504630", "https://data.delijn.be/stops/509620"], ["https://data.delijn.be/stops/102421", "https://data.delijn.be/stops/103668"], ["https://data.delijn.be/stops/304295", "https://data.delijn.be/stops/304475"], ["https://data.delijn.be/stops/200397", "https://data.delijn.be/stops/209702"], ["https://data.delijn.be/stops/204912", "https://data.delijn.be/stops/204918"], ["https://data.delijn.be/stops/400326", "https://data.delijn.be/stops/400327"], ["https://data.delijn.be/stops/202045", "https://data.delijn.be/stops/202248"], ["https://data.delijn.be/stops/201164", "https://data.delijn.be/stops/201383"], ["https://data.delijn.be/stops/306615", "https://data.delijn.be/stops/306624"], ["https://data.delijn.be/stops/104401", "https://data.delijn.be/stops/109650"], ["https://data.delijn.be/stops/401589", "https://data.delijn.be/stops/402116"], ["https://data.delijn.be/stops/102864", "https://data.delijn.be/stops/105937"], ["https://data.delijn.be/stops/502653", "https://data.delijn.be/stops/505577"], ["https://data.delijn.be/stops/400568", "https://data.delijn.be/stops/403165"], ["https://data.delijn.be/stops/202260", "https://data.delijn.be/stops/203260"], ["https://data.delijn.be/stops/503902", "https://data.delijn.be/stops/505443"], ["https://data.delijn.be/stops/503567", "https://data.delijn.be/stops/505139"], ["https://data.delijn.be/stops/306881", "https://data.delijn.be/stops/307872"], ["https://data.delijn.be/stops/501357", "https://data.delijn.be/stops/506302"], ["https://data.delijn.be/stops/407906", "https://data.delijn.be/stops/407907"], ["https://data.delijn.be/stops/507518", "https://data.delijn.be/stops/509794"], ["https://data.delijn.be/stops/402427", "https://data.delijn.be/stops/405559"], ["https://data.delijn.be/stops/208688", "https://data.delijn.be/stops/208712"], ["https://data.delijn.be/stops/504372", "https://data.delijn.be/stops/505786"], ["https://data.delijn.be/stops/102428", "https://data.delijn.be/stops/106228"], ["https://data.delijn.be/stops/408956", "https://data.delijn.be/stops/408964"], ["https://data.delijn.be/stops/103970", "https://data.delijn.be/stops/104645"], ["https://data.delijn.be/stops/208088", "https://data.delijn.be/stops/209088"], ["https://data.delijn.be/stops/301969", "https://data.delijn.be/stops/301970"], ["https://data.delijn.be/stops/208093", "https://data.delijn.be/stops/209629"], ["https://data.delijn.be/stops/109456", "https://data.delijn.be/stops/109791"], ["https://data.delijn.be/stops/108089", "https://data.delijn.be/stops/108093"], ["https://data.delijn.be/stops/400992", "https://data.delijn.be/stops/406587"], ["https://data.delijn.be/stops/305231", "https://data.delijn.be/stops/305256"], ["https://data.delijn.be/stops/304762", "https://data.delijn.be/stops/304763"], ["https://data.delijn.be/stops/401484", "https://data.delijn.be/stops/401494"], ["https://data.delijn.be/stops/301331", "https://data.delijn.be/stops/307942"], ["https://data.delijn.be/stops/503812", "https://data.delijn.be/stops/508948"], ["https://data.delijn.be/stops/303780", "https://data.delijn.be/stops/303810"], ["https://data.delijn.be/stops/504211", "https://data.delijn.be/stops/509223"], ["https://data.delijn.be/stops/508335", "https://data.delijn.be/stops/508339"], ["https://data.delijn.be/stops/405613", "https://data.delijn.be/stops/407156"], ["https://data.delijn.be/stops/400171", "https://data.delijn.be/stops/407471"], ["https://data.delijn.be/stops/203637", "https://data.delijn.be/stops/205072"], ["https://data.delijn.be/stops/202161", "https://data.delijn.be/stops/205067"], ["https://data.delijn.be/stops/103152", "https://data.delijn.be/stops/107201"], ["https://data.delijn.be/stops/200925", "https://data.delijn.be/stops/203248"], ["https://data.delijn.be/stops/402504", "https://data.delijn.be/stops/408178"], ["https://data.delijn.be/stops/300679", "https://data.delijn.be/stops/305964"], ["https://data.delijn.be/stops/206743", "https://data.delijn.be/stops/207744"], ["https://data.delijn.be/stops/505514", "https://data.delijn.be/stops/505518"], ["https://data.delijn.be/stops/502801", "https://data.delijn.be/stops/504154"], ["https://data.delijn.be/stops/204162", "https://data.delijn.be/stops/206400"], ["https://data.delijn.be/stops/303247", "https://data.delijn.be/stops/304861"], ["https://data.delijn.be/stops/301097", "https://data.delijn.be/stops/301449"], ["https://data.delijn.be/stops/501618", "https://data.delijn.be/stops/506614"], ["https://data.delijn.be/stops/101130", "https://data.delijn.be/stops/103755"], ["https://data.delijn.be/stops/200051", "https://data.delijn.be/stops/201052"], ["https://data.delijn.be/stops/209067", "https://data.delijn.be/stops/209068"], ["https://data.delijn.be/stops/501064", "https://data.delijn.be/stops/506064"], ["https://data.delijn.be/stops/301560", "https://data.delijn.be/stops/308086"], ["https://data.delijn.be/stops/306178", "https://data.delijn.be/stops/306405"], ["https://data.delijn.be/stops/203975", "https://data.delijn.be/stops/204001"], ["https://data.delijn.be/stops/202728", "https://data.delijn.be/stops/203728"], ["https://data.delijn.be/stops/407918", "https://data.delijn.be/stops/407920"], ["https://data.delijn.be/stops/303511", "https://data.delijn.be/stops/303512"], ["https://data.delijn.be/stops/108103", "https://data.delijn.be/stops/108113"], ["https://data.delijn.be/stops/402605", "https://data.delijn.be/stops/402608"], ["https://data.delijn.be/stops/104343", "https://data.delijn.be/stops/104344"], ["https://data.delijn.be/stops/200669", "https://data.delijn.be/stops/200670"], ["https://data.delijn.be/stops/302225", "https://data.delijn.be/stops/302240"], ["https://data.delijn.be/stops/206278", "https://data.delijn.be/stops/207279"], ["https://data.delijn.be/stops/501431", "https://data.delijn.be/stops/506431"], ["https://data.delijn.be/stops/405646", "https://data.delijn.be/stops/408661"], ["https://data.delijn.be/stops/508266", "https://data.delijn.be/stops/508703"], ["https://data.delijn.be/stops/306864", "https://data.delijn.be/stops/307825"], ["https://data.delijn.be/stops/300409", "https://data.delijn.be/stops/300410"], ["https://data.delijn.be/stops/502274", "https://data.delijn.be/stops/507276"], ["https://data.delijn.be/stops/406100", "https://data.delijn.be/stops/407914"], ["https://data.delijn.be/stops/206164", "https://data.delijn.be/stops/303363"], ["https://data.delijn.be/stops/300508", "https://data.delijn.be/stops/302919"], ["https://data.delijn.be/stops/200184", "https://data.delijn.be/stops/201247"], ["https://data.delijn.be/stops/403991", "https://data.delijn.be/stops/404025"], ["https://data.delijn.be/stops/305383", "https://data.delijn.be/stops/305385"], ["https://data.delijn.be/stops/103302", "https://data.delijn.be/stops/105761"], ["https://data.delijn.be/stops/202102", "https://data.delijn.be/stops/203101"], ["https://data.delijn.be/stops/405711", "https://data.delijn.be/stops/405719"], ["https://data.delijn.be/stops/200181", "https://data.delijn.be/stops/201186"], ["https://data.delijn.be/stops/102254", "https://data.delijn.be/stops/108287"], ["https://data.delijn.be/stops/501133", "https://data.delijn.be/stops/506064"], ["https://data.delijn.be/stops/502527", "https://data.delijn.be/stops/507527"], ["https://data.delijn.be/stops/201373", "https://data.delijn.be/stops/203002"], ["https://data.delijn.be/stops/204917", "https://data.delijn.be/stops/204918"], ["https://data.delijn.be/stops/407133", "https://data.delijn.be/stops/407342"], ["https://data.delijn.be/stops/407978", "https://data.delijn.be/stops/407994"], ["https://data.delijn.be/stops/106047", "https://data.delijn.be/stops/106049"], ["https://data.delijn.be/stops/404261", "https://data.delijn.be/stops/404262"], ["https://data.delijn.be/stops/102217", "https://data.delijn.be/stops/102218"], ["https://data.delijn.be/stops/208750", "https://data.delijn.be/stops/209661"], ["https://data.delijn.be/stops/202306", "https://data.delijn.be/stops/202307"], ["https://data.delijn.be/stops/501617", "https://data.delijn.be/stops/501620"], ["https://data.delijn.be/stops/403381", "https://data.delijn.be/stops/403384"], ["https://data.delijn.be/stops/308544", "https://data.delijn.be/stops/308955"], ["https://data.delijn.be/stops/105692", "https://data.delijn.be/stops/105711"], ["https://data.delijn.be/stops/105064", "https://data.delijn.be/stops/107424"], ["https://data.delijn.be/stops/101204", "https://data.delijn.be/stops/204542"], ["https://data.delijn.be/stops/305069", "https://data.delijn.be/stops/306951"], ["https://data.delijn.be/stops/408826", "https://data.delijn.be/stops/408832"], ["https://data.delijn.be/stops/404462", "https://data.delijn.be/stops/404497"], ["https://data.delijn.be/stops/303016", "https://data.delijn.be/stops/306279"], ["https://data.delijn.be/stops/303693", "https://data.delijn.be/stops/303761"], ["https://data.delijn.be/stops/407814", "https://data.delijn.be/stops/407903"], ["https://data.delijn.be/stops/409104", "https://data.delijn.be/stops/409127"], ["https://data.delijn.be/stops/303700", "https://data.delijn.be/stops/303739"], ["https://data.delijn.be/stops/506393", "https://data.delijn.be/stops/509797"], ["https://data.delijn.be/stops/206693", "https://data.delijn.be/stops/207694"], ["https://data.delijn.be/stops/101008", "https://data.delijn.be/stops/101009"], ["https://data.delijn.be/stops/103998", "https://data.delijn.be/stops/106888"], ["https://data.delijn.be/stops/302572", "https://data.delijn.be/stops/302579"], ["https://data.delijn.be/stops/501369", "https://data.delijn.be/stops/590413"], ["https://data.delijn.be/stops/102650", "https://data.delijn.be/stops/102820"], ["https://data.delijn.be/stops/404743", "https://data.delijn.be/stops/404801"], ["https://data.delijn.be/stops/208209", "https://data.delijn.be/stops/208211"], ["https://data.delijn.be/stops/505325", "https://data.delijn.be/stops/505625"], ["https://data.delijn.be/stops/507013", "https://data.delijn.be/stops/507021"], ["https://data.delijn.be/stops/502446", "https://data.delijn.be/stops/507446"], ["https://data.delijn.be/stops/109291", "https://data.delijn.be/stops/109293"], ["https://data.delijn.be/stops/510002", "https://data.delijn.be/stops/510004"], ["https://data.delijn.be/stops/201673", "https://data.delijn.be/stops/201674"], ["https://data.delijn.be/stops/104452", "https://data.delijn.be/stops/104453"], ["https://data.delijn.be/stops/204725", "https://data.delijn.be/stops/204726"], ["https://data.delijn.be/stops/404298", "https://data.delijn.be/stops/404353"], ["https://data.delijn.be/stops/503026", "https://data.delijn.be/stops/503027"], ["https://data.delijn.be/stops/305401", "https://data.delijn.be/stops/305413"], ["https://data.delijn.be/stops/303094", "https://data.delijn.be/stops/304243"], ["https://data.delijn.be/stops/504485", "https://data.delijn.be/stops/509489"], ["https://data.delijn.be/stops/505393", "https://data.delijn.be/stops/505957"], ["https://data.delijn.be/stops/402616", "https://data.delijn.be/stops/408446"], ["https://data.delijn.be/stops/103992", "https://data.delijn.be/stops/105367"], ["https://data.delijn.be/stops/301359", "https://data.delijn.be/stops/306153"], ["https://data.delijn.be/stops/203594", "https://data.delijn.be/stops/203595"], ["https://data.delijn.be/stops/407855", "https://data.delijn.be/stops/407931"], ["https://data.delijn.be/stops/504834", "https://data.delijn.be/stops/508907"], ["https://data.delijn.be/stops/401477", "https://data.delijn.be/stops/401749"], ["https://data.delijn.be/stops/200002", "https://data.delijn.be/stops/202016"], ["https://data.delijn.be/stops/204381", "https://data.delijn.be/stops/205381"], ["https://data.delijn.be/stops/503715", "https://data.delijn.be/stops/508715"], ["https://data.delijn.be/stops/308500", "https://data.delijn.be/stops/308501"], ["https://data.delijn.be/stops/505833", "https://data.delijn.be/stops/507224"], ["https://data.delijn.be/stops/407959", "https://data.delijn.be/stops/408071"], ["https://data.delijn.be/stops/109350", "https://data.delijn.be/stops/109352"], ["https://data.delijn.be/stops/209500", "https://data.delijn.be/stops/209667"], ["https://data.delijn.be/stops/406638", "https://data.delijn.be/stops/406639"], ["https://data.delijn.be/stops/103685", "https://data.delijn.be/stops/108355"], ["https://data.delijn.be/stops/509123", "https://data.delijn.be/stops/509257"], ["https://data.delijn.be/stops/208227", "https://data.delijn.be/stops/208831"], ["https://data.delijn.be/stops/501238", "https://data.delijn.be/stops/506244"], ["https://data.delijn.be/stops/101909", "https://data.delijn.be/stops/101917"], ["https://data.delijn.be/stops/400860", "https://data.delijn.be/stops/400871"], ["https://data.delijn.be/stops/200652", "https://data.delijn.be/stops/201652"], ["https://data.delijn.be/stops/504665", "https://data.delijn.be/stops/509496"], ["https://data.delijn.be/stops/503200", "https://data.delijn.be/stops/508208"], ["https://data.delijn.be/stops/307279", "https://data.delijn.be/stops/308760"], ["https://data.delijn.be/stops/503138", "https://data.delijn.be/stops/508134"], ["https://data.delijn.be/stops/507095", "https://data.delijn.be/stops/507148"], ["https://data.delijn.be/stops/107925", "https://data.delijn.be/stops/108730"], ["https://data.delijn.be/stops/108919", "https://data.delijn.be/stops/108921"], ["https://data.delijn.be/stops/206301", "https://data.delijn.be/stops/207301"], ["https://data.delijn.be/stops/106470", "https://data.delijn.be/stops/106473"], ["https://data.delijn.be/stops/105527", "https://data.delijn.be/stops/105529"], ["https://data.delijn.be/stops/401340", "https://data.delijn.be/stops/406653"], ["https://data.delijn.be/stops/304333", "https://data.delijn.be/stops/304334"], ["https://data.delijn.be/stops/209202", "https://data.delijn.be/stops/209203"], ["https://data.delijn.be/stops/206082", "https://data.delijn.be/stops/207977"], ["https://data.delijn.be/stops/209362", "https://data.delijn.be/stops/209363"], ["https://data.delijn.be/stops/503908", "https://data.delijn.be/stops/507061"], ["https://data.delijn.be/stops/400400", "https://data.delijn.be/stops/400958"], ["https://data.delijn.be/stops/203949", "https://data.delijn.be/stops/206554"], ["https://data.delijn.be/stops/504601", "https://data.delijn.be/stops/504605"], ["https://data.delijn.be/stops/401798", "https://data.delijn.be/stops/401799"], ["https://data.delijn.be/stops/502419", "https://data.delijn.be/stops/502749"], ["https://data.delijn.be/stops/407362", "https://data.delijn.be/stops/407365"], ["https://data.delijn.be/stops/101510", "https://data.delijn.be/stops/101855"], ["https://data.delijn.be/stops/206492", "https://data.delijn.be/stops/206493"], ["https://data.delijn.be/stops/303020", "https://data.delijn.be/stops/303107"], ["https://data.delijn.be/stops/105828", "https://data.delijn.be/stops/105829"], ["https://data.delijn.be/stops/202545", "https://data.delijn.be/stops/203545"], ["https://data.delijn.be/stops/202195", "https://data.delijn.be/stops/203198"], ["https://data.delijn.be/stops/103101", "https://data.delijn.be/stops/105852"], ["https://data.delijn.be/stops/200002", "https://data.delijn.be/stops/210857"], ["https://data.delijn.be/stops/302009", "https://data.delijn.be/stops/302022"], ["https://data.delijn.be/stops/109241", "https://data.delijn.be/stops/109243"], ["https://data.delijn.be/stops/300064", "https://data.delijn.be/stops/300857"], ["https://data.delijn.be/stops/400200", "https://data.delijn.be/stops/400210"], ["https://data.delijn.be/stops/208245", "https://data.delijn.be/stops/208854"], ["https://data.delijn.be/stops/300487", "https://data.delijn.be/stops/306386"], ["https://data.delijn.be/stops/200053", "https://data.delijn.be/stops/203931"], ["https://data.delijn.be/stops/202258", "https://data.delijn.be/stops/203257"], ["https://data.delijn.be/stops/504200", "https://data.delijn.be/stops/504263"], ["https://data.delijn.be/stops/302381", "https://data.delijn.be/stops/302383"], ["https://data.delijn.be/stops/204162", "https://data.delijn.be/stops/206278"], ["https://data.delijn.be/stops/101396", "https://data.delijn.be/stops/107099"], ["https://data.delijn.be/stops/206875", "https://data.delijn.be/stops/207967"], ["https://data.delijn.be/stops/301795", "https://data.delijn.be/stops/301801"], ["https://data.delijn.be/stops/207751", "https://data.delijn.be/stops/207768"], ["https://data.delijn.be/stops/504532", "https://data.delijn.be/stops/509006"], ["https://data.delijn.be/stops/301668", "https://data.delijn.be/stops/301672"], ["https://data.delijn.be/stops/401848", "https://data.delijn.be/stops/406347"], ["https://data.delijn.be/stops/503363", "https://data.delijn.be/stops/508403"], ["https://data.delijn.be/stops/300254", "https://data.delijn.be/stops/300257"], ["https://data.delijn.be/stops/409087", "https://data.delijn.be/stops/409210"], ["https://data.delijn.be/stops/504355", "https://data.delijn.be/stops/504589"], ["https://data.delijn.be/stops/402345", "https://data.delijn.be/stops/402417"], ["https://data.delijn.be/stops/504041", "https://data.delijn.be/stops/504108"], ["https://data.delijn.be/stops/202437", "https://data.delijn.be/stops/205559"], ["https://data.delijn.be/stops/509230", "https://data.delijn.be/stops/509238"], ["https://data.delijn.be/stops/201305", "https://data.delijn.be/stops/202763"], ["https://data.delijn.be/stops/109861", "https://data.delijn.be/stops/109862"], ["https://data.delijn.be/stops/507456", "https://data.delijn.be/stops/507662"], ["https://data.delijn.be/stops/401490", "https://data.delijn.be/stops/401528"], ["https://data.delijn.be/stops/305555", "https://data.delijn.be/stops/308684"], ["https://data.delijn.be/stops/302126", "https://data.delijn.be/stops/304104"], ["https://data.delijn.be/stops/303112", "https://data.delijn.be/stops/305159"], ["https://data.delijn.be/stops/406436", "https://data.delijn.be/stops/409404"], ["https://data.delijn.be/stops/108294", "https://data.delijn.be/stops/108297"], ["https://data.delijn.be/stops/207180", "https://data.delijn.be/stops/308566"], ["https://data.delijn.be/stops/201062", "https://data.delijn.be/stops/203132"], ["https://data.delijn.be/stops/103201", "https://data.delijn.be/stops/108677"], ["https://data.delijn.be/stops/301727", "https://data.delijn.be/stops/301733"], ["https://data.delijn.be/stops/200734", "https://data.delijn.be/stops/201704"], ["https://data.delijn.be/stops/508619", "https://data.delijn.be/stops/590009"], ["https://data.delijn.be/stops/208372", "https://data.delijn.be/stops/209193"], ["https://data.delijn.be/stops/107709", "https://data.delijn.be/stops/108058"], ["https://data.delijn.be/stops/404971", "https://data.delijn.be/stops/404974"], ["https://data.delijn.be/stops/204466", "https://data.delijn.be/stops/204475"], ["https://data.delijn.be/stops/401046", "https://data.delijn.be/stops/401130"], ["https://data.delijn.be/stops/200709", "https://data.delijn.be/stops/211076"], ["https://data.delijn.be/stops/404975", "https://data.delijn.be/stops/404978"], ["https://data.delijn.be/stops/502262", "https://data.delijn.be/stops/507350"], ["https://data.delijn.be/stops/108819", "https://data.delijn.be/stops/108821"], ["https://data.delijn.be/stops/204099", "https://data.delijn.be/stops/206826"], ["https://data.delijn.be/stops/502707", "https://data.delijn.be/stops/507060"], ["https://data.delijn.be/stops/504552", "https://data.delijn.be/stops/505375"], ["https://data.delijn.be/stops/402301", "https://data.delijn.be/stops/402302"], ["https://data.delijn.be/stops/300518", "https://data.delijn.be/stops/306174"], ["https://data.delijn.be/stops/502672", "https://data.delijn.be/stops/505227"], ["https://data.delijn.be/stops/208492", "https://data.delijn.be/stops/219025"], ["https://data.delijn.be/stops/505022", "https://data.delijn.be/stops/507528"], ["https://data.delijn.be/stops/206496", "https://data.delijn.be/stops/207508"], ["https://data.delijn.be/stops/202685", "https://data.delijn.be/stops/204620"], ["https://data.delijn.be/stops/102461", "https://data.delijn.be/stops/102464"], ["https://data.delijn.be/stops/409444", "https://data.delijn.be/stops/409470"], ["https://data.delijn.be/stops/404249", "https://data.delijn.be/stops/404390"], ["https://data.delijn.be/stops/401306", "https://data.delijn.be/stops/401316"], ["https://data.delijn.be/stops/300396", "https://data.delijn.be/stops/301098"], ["https://data.delijn.be/stops/405623", "https://data.delijn.be/stops/409301"], ["https://data.delijn.be/stops/101985", "https://data.delijn.be/stops/103790"], ["https://data.delijn.be/stops/300945", "https://data.delijn.be/stops/301014"], ["https://data.delijn.be/stops/102010", "https://data.delijn.be/stops/105170"], ["https://data.delijn.be/stops/104638", "https://data.delijn.be/stops/104869"], ["https://data.delijn.be/stops/402030", "https://data.delijn.be/stops/402033"], ["https://data.delijn.be/stops/208721", "https://data.delijn.be/stops/209722"], ["https://data.delijn.be/stops/300205", "https://data.delijn.be/stops/300206"], ["https://data.delijn.be/stops/206540", "https://data.delijn.be/stops/207483"], ["https://data.delijn.be/stops/203321", "https://data.delijn.be/stops/210044"], ["https://data.delijn.be/stops/304423", "https://data.delijn.be/stops/304425"], ["https://data.delijn.be/stops/200202", "https://data.delijn.be/stops/201624"], ["https://data.delijn.be/stops/503532", "https://data.delijn.be/stops/504767"], ["https://data.delijn.be/stops/403360", "https://data.delijn.be/stops/405139"], ["https://data.delijn.be/stops/304544", "https://data.delijn.be/stops/304665"], ["https://data.delijn.be/stops/504137", "https://data.delijn.be/stops/509146"], ["https://data.delijn.be/stops/302359", "https://data.delijn.be/stops/302363"], ["https://data.delijn.be/stops/204641", "https://data.delijn.be/stops/204731"], ["https://data.delijn.be/stops/503155", "https://data.delijn.be/stops/503400"], ["https://data.delijn.be/stops/507101", "https://data.delijn.be/stops/507120"], ["https://data.delijn.be/stops/208061", "https://data.delijn.be/stops/208631"], ["https://data.delijn.be/stops/502219", "https://data.delijn.be/stops/505591"], ["https://data.delijn.be/stops/207754", "https://data.delijn.be/stops/207797"], ["https://data.delijn.be/stops/410344", "https://data.delijn.be/stops/410345"], ["https://data.delijn.be/stops/504587", "https://data.delijn.be/stops/505538"], ["https://data.delijn.be/stops/403791", "https://data.delijn.be/stops/403877"], ["https://data.delijn.be/stops/201874", "https://data.delijn.be/stops/201875"], ["https://data.delijn.be/stops/105687", "https://data.delijn.be/stops/105688"], ["https://data.delijn.be/stops/408656", "https://data.delijn.be/stops/408657"], ["https://data.delijn.be/stops/103069", "https://data.delijn.be/stops/109810"], ["https://data.delijn.be/stops/404437", "https://data.delijn.be/stops/404472"], ["https://data.delijn.be/stops/402236", "https://data.delijn.be/stops/402295"], ["https://data.delijn.be/stops/308812", "https://data.delijn.be/stops/308813"], ["https://data.delijn.be/stops/200435", "https://data.delijn.be/stops/201434"], ["https://data.delijn.be/stops/104046", "https://data.delijn.be/stops/306588"], ["https://data.delijn.be/stops/502714", "https://data.delijn.be/stops/504882"], ["https://data.delijn.be/stops/108141", "https://data.delijn.be/stops/108143"], ["https://data.delijn.be/stops/204452", "https://data.delijn.be/stops/205343"], ["https://data.delijn.be/stops/203883", "https://data.delijn.be/stops/203887"], ["https://data.delijn.be/stops/502059", "https://data.delijn.be/stops/507059"], ["https://data.delijn.be/stops/509076", "https://data.delijn.be/stops/509329"], ["https://data.delijn.be/stops/407088", "https://data.delijn.be/stops/407262"], ["https://data.delijn.be/stops/402118", "https://data.delijn.be/stops/402119"], ["https://data.delijn.be/stops/101411", "https://data.delijn.be/stops/106924"], ["https://data.delijn.be/stops/107968", "https://data.delijn.be/stops/108433"], ["https://data.delijn.be/stops/208111", "https://data.delijn.be/stops/209114"], ["https://data.delijn.be/stops/400727", "https://data.delijn.be/stops/400728"], ["https://data.delijn.be/stops/408800", "https://data.delijn.be/stops/408830"], ["https://data.delijn.be/stops/304144", "https://data.delijn.be/stops/304145"], ["https://data.delijn.be/stops/204974", "https://data.delijn.be/stops/208854"], ["https://data.delijn.be/stops/303732", "https://data.delijn.be/stops/303733"], ["https://data.delijn.be/stops/205606", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/408073", "https://data.delijn.be/stops/410128"], ["https://data.delijn.be/stops/300831", "https://data.delijn.be/stops/306969"], ["https://data.delijn.be/stops/300326", "https://data.delijn.be/stops/304459"], ["https://data.delijn.be/stops/200495", "https://data.delijn.be/stops/211124"], ["https://data.delijn.be/stops/502429", "https://data.delijn.be/stops/507425"], ["https://data.delijn.be/stops/409081", "https://data.delijn.be/stops/409122"], ["https://data.delijn.be/stops/209585", "https://data.delijn.be/stops/209676"], ["https://data.delijn.be/stops/409763", "https://data.delijn.be/stops/409770"], ["https://data.delijn.be/stops/204391", "https://data.delijn.be/stops/205391"], ["https://data.delijn.be/stops/503086", "https://data.delijn.be/stops/505387"], ["https://data.delijn.be/stops/501054", "https://data.delijn.be/stops/506054"], ["https://data.delijn.be/stops/408137", "https://data.delijn.be/stops/408140"], ["https://data.delijn.be/stops/509044", "https://data.delijn.be/stops/509047"], ["https://data.delijn.be/stops/408303", "https://data.delijn.be/stops/408354"], ["https://data.delijn.be/stops/407127", "https://data.delijn.be/stops/407130"], ["https://data.delijn.be/stops/304015", "https://data.delijn.be/stops/304050"], ["https://data.delijn.be/stops/502796", "https://data.delijn.be/stops/508343"], ["https://data.delijn.be/stops/404747", "https://data.delijn.be/stops/404749"], ["https://data.delijn.be/stops/201357", "https://data.delijn.be/stops/201842"], ["https://data.delijn.be/stops/107148", "https://data.delijn.be/stops/109381"], ["https://data.delijn.be/stops/400747", "https://data.delijn.be/stops/409598"], ["https://data.delijn.be/stops/506363", "https://data.delijn.be/stops/506367"], ["https://data.delijn.be/stops/508825", "https://data.delijn.be/stops/508828"], ["https://data.delijn.be/stops/104036", "https://data.delijn.be/stops/108087"], ["https://data.delijn.be/stops/503146", "https://data.delijn.be/stops/505408"], ["https://data.delijn.be/stops/304069", "https://data.delijn.be/stops/304113"], ["https://data.delijn.be/stops/504062", "https://data.delijn.be/stops/509061"], ["https://data.delijn.be/stops/405323", "https://data.delijn.be/stops/405326"], ["https://data.delijn.be/stops/102013", "https://data.delijn.be/stops/107878"], ["https://data.delijn.be/stops/504400", "https://data.delijn.be/stops/504423"], ["https://data.delijn.be/stops/403296", "https://data.delijn.be/stops/410322"], ["https://data.delijn.be/stops/501084", "https://data.delijn.be/stops/505712"], ["https://data.delijn.be/stops/505562", "https://data.delijn.be/stops/508958"], ["https://data.delijn.be/stops/101849", "https://data.delijn.be/stops/106848"], ["https://data.delijn.be/stops/208619", "https://data.delijn.be/stops/209700"], ["https://data.delijn.be/stops/408012", "https://data.delijn.be/stops/408013"], ["https://data.delijn.be/stops/306948", "https://data.delijn.be/stops/306956"], ["https://data.delijn.be/stops/300087", "https://data.delijn.be/stops/300099"], ["https://data.delijn.be/stops/301603", "https://data.delijn.be/stops/301654"], ["https://data.delijn.be/stops/305455", "https://data.delijn.be/stops/308034"], ["https://data.delijn.be/stops/105356", "https://data.delijn.be/stops/109122"], ["https://data.delijn.be/stops/206246", "https://data.delijn.be/stops/206404"], ["https://data.delijn.be/stops/302940", "https://data.delijn.be/stops/303002"], ["https://data.delijn.be/stops/209733", "https://data.delijn.be/stops/209847"], ["https://data.delijn.be/stops/502382", "https://data.delijn.be/stops/507387"], ["https://data.delijn.be/stops/300276", "https://data.delijn.be/stops/301318"], ["https://data.delijn.be/stops/400221", "https://data.delijn.be/stops/400230"], ["https://data.delijn.be/stops/204436", "https://data.delijn.be/stops/205437"], ["https://data.delijn.be/stops/303483", "https://data.delijn.be/stops/303484"], ["https://data.delijn.be/stops/210067", "https://data.delijn.be/stops/505753"], ["https://data.delijn.be/stops/108793", "https://data.delijn.be/stops/109556"], ["https://data.delijn.be/stops/404152", "https://data.delijn.be/stops/404153"], ["https://data.delijn.be/stops/207113", "https://data.delijn.be/stops/207114"], ["https://data.delijn.be/stops/109268", "https://data.delijn.be/stops/109269"], ["https://data.delijn.be/stops/400051", "https://data.delijn.be/stops/409143"], ["https://data.delijn.be/stops/305147", "https://data.delijn.be/stops/305187"], ["https://data.delijn.be/stops/206209", "https://data.delijn.be/stops/207819"], ["https://data.delijn.be/stops/504830", "https://data.delijn.be/stops/508180"], ["https://data.delijn.be/stops/200396", "https://data.delijn.be/stops/201570"], ["https://data.delijn.be/stops/304930", "https://data.delijn.be/stops/305225"], ["https://data.delijn.be/stops/504419", "https://data.delijn.be/stops/504696"], ["https://data.delijn.be/stops/102210", "https://data.delijn.be/stops/108085"], ["https://data.delijn.be/stops/502663", "https://data.delijn.be/stops/507663"], ["https://data.delijn.be/stops/206780", "https://data.delijn.be/stops/209242"], ["https://data.delijn.be/stops/206800", "https://data.delijn.be/stops/307590"], ["https://data.delijn.be/stops/400990", "https://data.delijn.be/stops/409059"], ["https://data.delijn.be/stops/504534", "https://data.delijn.be/stops/509377"], ["https://data.delijn.be/stops/207666", "https://data.delijn.be/stops/208055"], ["https://data.delijn.be/stops/504801", "https://data.delijn.be/stops/504802"], ["https://data.delijn.be/stops/502268", "https://data.delijn.be/stops/505013"], ["https://data.delijn.be/stops/404384", "https://data.delijn.be/stops/404899"], ["https://data.delijn.be/stops/400768", "https://data.delijn.be/stops/400770"], ["https://data.delijn.be/stops/105104", "https://data.delijn.be/stops/105106"], ["https://data.delijn.be/stops/301456", "https://data.delijn.be/stops/308077"], ["https://data.delijn.be/stops/509428", "https://data.delijn.be/stops/509719"], ["https://data.delijn.be/stops/505591", "https://data.delijn.be/stops/507492"], ["https://data.delijn.be/stops/202115", "https://data.delijn.be/stops/202185"], ["https://data.delijn.be/stops/200526", "https://data.delijn.be/stops/201679"], ["https://data.delijn.be/stops/504176", "https://data.delijn.be/stops/509176"], ["https://data.delijn.be/stops/502920", "https://data.delijn.be/stops/507351"], ["https://data.delijn.be/stops/109014", "https://data.delijn.be/stops/404046"], ["https://data.delijn.be/stops/206299", "https://data.delijn.be/stops/207473"], ["https://data.delijn.be/stops/303023", "https://data.delijn.be/stops/307726"], ["https://data.delijn.be/stops/507489", "https://data.delijn.be/stops/507714"], ["https://data.delijn.be/stops/407352", "https://data.delijn.be/stops/407481"], ["https://data.delijn.be/stops/408604", "https://data.delijn.be/stops/408605"], ["https://data.delijn.be/stops/505690", "https://data.delijn.be/stops/507062"], ["https://data.delijn.be/stops/207626", "https://data.delijn.be/stops/207628"], ["https://data.delijn.be/stops/102223", "https://data.delijn.be/stops/105543"], ["https://data.delijn.be/stops/302222", "https://data.delijn.be/stops/302246"], ["https://data.delijn.be/stops/409085", "https://data.delijn.be/stops/409139"], ["https://data.delijn.be/stops/304953", "https://data.delijn.be/stops/304954"], ["https://data.delijn.be/stops/108039", "https://data.delijn.be/stops/108041"], ["https://data.delijn.be/stops/107501", "https://data.delijn.be/stops/107502"], ["https://data.delijn.be/stops/308751", "https://data.delijn.be/stops/308752"], ["https://data.delijn.be/stops/403407", "https://data.delijn.be/stops/403443"], ["https://data.delijn.be/stops/403059", "https://data.delijn.be/stops/403396"], ["https://data.delijn.be/stops/400050", "https://data.delijn.be/stops/400093"], ["https://data.delijn.be/stops/405505", "https://data.delijn.be/stops/407725"], ["https://data.delijn.be/stops/106397", "https://data.delijn.be/stops/106581"], ["https://data.delijn.be/stops/403598", "https://data.delijn.be/stops/403616"], ["https://data.delijn.be/stops/106191", "https://data.delijn.be/stops/107440"], ["https://data.delijn.be/stops/103677", "https://data.delijn.be/stops/103732"], ["https://data.delijn.be/stops/105033", "https://data.delijn.be/stops/106716"], ["https://data.delijn.be/stops/208958", "https://data.delijn.be/stops/209957"], ["https://data.delijn.be/stops/401672", "https://data.delijn.be/stops/401673"], ["https://data.delijn.be/stops/201047", "https://data.delijn.be/stops/201958"], ["https://data.delijn.be/stops/303274", "https://data.delijn.be/stops/303275"], ["https://data.delijn.be/stops/509038", "https://data.delijn.be/stops/509039"], ["https://data.delijn.be/stops/402692", "https://data.delijn.be/stops/402694"], ["https://data.delijn.be/stops/405769", "https://data.delijn.be/stops/307375"], ["https://data.delijn.be/stops/201885", "https://data.delijn.be/stops/201955"], ["https://data.delijn.be/stops/102384", "https://data.delijn.be/stops/109131"], ["https://data.delijn.be/stops/101834", "https://data.delijn.be/stops/107034"], ["https://data.delijn.be/stops/307833", "https://data.delijn.be/stops/308277"], ["https://data.delijn.be/stops/202420", "https://data.delijn.be/stops/203419"], ["https://data.delijn.be/stops/400329", "https://data.delijn.be/stops/406769"], ["https://data.delijn.be/stops/300906", "https://data.delijn.be/stops/301107"], ["https://data.delijn.be/stops/105966", "https://data.delijn.be/stops/108940"], ["https://data.delijn.be/stops/405247", "https://data.delijn.be/stops/405254"], ["https://data.delijn.be/stops/502220", "https://data.delijn.be/stops/509796"], ["https://data.delijn.be/stops/506411", "https://data.delijn.be/stops/506417"], ["https://data.delijn.be/stops/502174", "https://data.delijn.be/stops/502177"], ["https://data.delijn.be/stops/304867", "https://data.delijn.be/stops/304869"], ["https://data.delijn.be/stops/406291", "https://data.delijn.be/stops/406417"], ["https://data.delijn.be/stops/102937", "https://data.delijn.be/stops/102987"], ["https://data.delijn.be/stops/301741", "https://data.delijn.be/stops/305875"], ["https://data.delijn.be/stops/308513", "https://data.delijn.be/stops/308691"], ["https://data.delijn.be/stops/302863", "https://data.delijn.be/stops/302864"], ["https://data.delijn.be/stops/404225", "https://data.delijn.be/stops/404236"], ["https://data.delijn.be/stops/300615", "https://data.delijn.be/stops/303242"], ["https://data.delijn.be/stops/400922", "https://data.delijn.be/stops/400923"], ["https://data.delijn.be/stops/306717", "https://data.delijn.be/stops/306718"], ["https://data.delijn.be/stops/301026", "https://data.delijn.be/stops/301027"], ["https://data.delijn.be/stops/400734", "https://data.delijn.be/stops/400735"], ["https://data.delijn.be/stops/508338", "https://data.delijn.be/stops/590010"], ["https://data.delijn.be/stops/501420", "https://data.delijn.be/stops/506420"], ["https://data.delijn.be/stops/502126", "https://data.delijn.be/stops/507126"], ["https://data.delijn.be/stops/200982", "https://data.delijn.be/stops/201982"], ["https://data.delijn.be/stops/304986", "https://data.delijn.be/stops/308020"], ["https://data.delijn.be/stops/301852", "https://data.delijn.be/stops/302550"], ["https://data.delijn.be/stops/206632", "https://data.delijn.be/stops/207302"], ["https://data.delijn.be/stops/200766", "https://data.delijn.be/stops/209319"], ["https://data.delijn.be/stops/102656", "https://data.delijn.be/stops/107923"], ["https://data.delijn.be/stops/302502", "https://data.delijn.be/stops/302718"], ["https://data.delijn.be/stops/106023", "https://data.delijn.be/stops/106026"], ["https://data.delijn.be/stops/205191", "https://data.delijn.be/stops/205204"], ["https://data.delijn.be/stops/101515", "https://data.delijn.be/stops/104494"], ["https://data.delijn.be/stops/504770", "https://data.delijn.be/stops/508152"], ["https://data.delijn.be/stops/400489", "https://data.delijn.be/stops/400949"], ["https://data.delijn.be/stops/307145", "https://data.delijn.be/stops/307147"], ["https://data.delijn.be/stops/405864", "https://data.delijn.be/stops/405865"], ["https://data.delijn.be/stops/402235", "https://data.delijn.be/stops/402481"], ["https://data.delijn.be/stops/201720", "https://data.delijn.be/stops/210104"], ["https://data.delijn.be/stops/400677", "https://data.delijn.be/stops/410022"], ["https://data.delijn.be/stops/404110", "https://data.delijn.be/stops/409257"], ["https://data.delijn.be/stops/401130", "https://data.delijn.be/stops/406549"], ["https://data.delijn.be/stops/304826", "https://data.delijn.be/stops/304879"], ["https://data.delijn.be/stops/301506", "https://data.delijn.be/stops/301509"], ["https://data.delijn.be/stops/109456", "https://data.delijn.be/stops/109458"], ["https://data.delijn.be/stops/504157", "https://data.delijn.be/stops/504474"], ["https://data.delijn.be/stops/206706", "https://data.delijn.be/stops/206711"], ["https://data.delijn.be/stops/306709", "https://data.delijn.be/stops/306713"], ["https://data.delijn.be/stops/304732", "https://data.delijn.be/stops/304754"], ["https://data.delijn.be/stops/303728", "https://data.delijn.be/stops/303739"], ["https://data.delijn.be/stops/200014", "https://data.delijn.be/stops/201012"], ["https://data.delijn.be/stops/108328", "https://data.delijn.be/stops/108331"], ["https://data.delijn.be/stops/201472", "https://data.delijn.be/stops/201473"], ["https://data.delijn.be/stops/206736", "https://data.delijn.be/stops/206985"], ["https://data.delijn.be/stops/103616", "https://data.delijn.be/stops/103618"], ["https://data.delijn.be/stops/206829", "https://data.delijn.be/stops/207252"], ["https://data.delijn.be/stops/214018", "https://data.delijn.be/stops/215018"], ["https://data.delijn.be/stops/406278", "https://data.delijn.be/stops/407582"], ["https://data.delijn.be/stops/305195", "https://data.delijn.be/stops/305201"], ["https://data.delijn.be/stops/404213", "https://data.delijn.be/stops/409789"], ["https://data.delijn.be/stops/206780", "https://data.delijn.be/stops/209564"], ["https://data.delijn.be/stops/502132", "https://data.delijn.be/stops/507145"], ["https://data.delijn.be/stops/401136", "https://data.delijn.be/stops/403751"], ["https://data.delijn.be/stops/109895", "https://data.delijn.be/stops/109946"], ["https://data.delijn.be/stops/502079", "https://data.delijn.be/stops/507079"], ["https://data.delijn.be/stops/503840", "https://data.delijn.be/stops/508840"], ["https://data.delijn.be/stops/408824", "https://data.delijn.be/stops/408828"], ["https://data.delijn.be/stops/206618", "https://data.delijn.be/stops/207619"], ["https://data.delijn.be/stops/304304", "https://data.delijn.be/stops/306882"], ["https://data.delijn.be/stops/203651", "https://data.delijn.be/stops/203652"], ["https://data.delijn.be/stops/207108", "https://data.delijn.be/stops/207931"], ["https://data.delijn.be/stops/303157", "https://data.delijn.be/stops/308661"], ["https://data.delijn.be/stops/302126", "https://data.delijn.be/stops/302127"], ["https://data.delijn.be/stops/102421", "https://data.delijn.be/stops/106261"], ["https://data.delijn.be/stops/301606", "https://data.delijn.be/stops/307674"], ["https://data.delijn.be/stops/104035", "https://data.delijn.be/stops/105750"], ["https://data.delijn.be/stops/407712", "https://data.delijn.be/stops/407713"], ["https://data.delijn.be/stops/406609", "https://data.delijn.be/stops/406611"], ["https://data.delijn.be/stops/501144", "https://data.delijn.be/stops/507512"], ["https://data.delijn.be/stops/201693", "https://data.delijn.be/stops/203979"], ["https://data.delijn.be/stops/300950", "https://data.delijn.be/stops/300954"], ["https://data.delijn.be/stops/502376", "https://data.delijn.be/stops/507372"], ["https://data.delijn.be/stops/504096", "https://data.delijn.be/stops/505198"], ["https://data.delijn.be/stops/208184", "https://data.delijn.be/stops/209185"], ["https://data.delijn.be/stops/305283", "https://data.delijn.be/stops/305287"], ["https://data.delijn.be/stops/407746", "https://data.delijn.be/stops/407754"], ["https://data.delijn.be/stops/103732", "https://data.delijn.be/stops/109896"], ["https://data.delijn.be/stops/400570", "https://data.delijn.be/stops/400571"], ["https://data.delijn.be/stops/401062", "https://data.delijn.be/stops/408653"], ["https://data.delijn.be/stops/501635", "https://data.delijn.be/stops/501738"], ["https://data.delijn.be/stops/206653", "https://data.delijn.be/stops/206654"], ["https://data.delijn.be/stops/407014", "https://data.delijn.be/stops/407019"], ["https://data.delijn.be/stops/205264", "https://data.delijn.be/stops/205489"], ["https://data.delijn.be/stops/507422", "https://data.delijn.be/stops/507750"], ["https://data.delijn.be/stops/303474", "https://data.delijn.be/stops/307069"], ["https://data.delijn.be/stops/204368", "https://data.delijn.be/stops/205181"], ["https://data.delijn.be/stops/306897", "https://data.delijn.be/stops/306898"], ["https://data.delijn.be/stops/200205", "https://data.delijn.be/stops/200242"], ["https://data.delijn.be/stops/101494", "https://data.delijn.be/stops/101497"], ["https://data.delijn.be/stops/303060", "https://data.delijn.be/stops/303061"], ["https://data.delijn.be/stops/503362", "https://data.delijn.be/stops/508404"], ["https://data.delijn.be/stops/300078", "https://data.delijn.be/stops/306784"], ["https://data.delijn.be/stops/201406", "https://data.delijn.be/stops/201509"], ["https://data.delijn.be/stops/103299", "https://data.delijn.be/stops/108615"], ["https://data.delijn.be/stops/107010", "https://data.delijn.be/stops/108955"], ["https://data.delijn.be/stops/303613", "https://data.delijn.be/stops/307195"], ["https://data.delijn.be/stops/505566", "https://data.delijn.be/stops/508751"], ["https://data.delijn.be/stops/401782", "https://data.delijn.be/stops/406268"], ["https://data.delijn.be/stops/401757", "https://data.delijn.be/stops/406349"], ["https://data.delijn.be/stops/308273", "https://data.delijn.be/stops/308274"], ["https://data.delijn.be/stops/101473", "https://data.delijn.be/stops/103094"], ["https://data.delijn.be/stops/103145", "https://data.delijn.be/stops/109443"], ["https://data.delijn.be/stops/408566", "https://data.delijn.be/stops/408614"], ["https://data.delijn.be/stops/305036", "https://data.delijn.be/stops/305038"], ["https://data.delijn.be/stops/202040", "https://data.delijn.be/stops/203041"], ["https://data.delijn.be/stops/302937", "https://data.delijn.be/stops/303085"], ["https://data.delijn.be/stops/503469", "https://data.delijn.be/stops/508412"], ["https://data.delijn.be/stops/101643", "https://data.delijn.be/stops/105836"], ["https://data.delijn.be/stops/306835", "https://data.delijn.be/stops/307734"], ["https://data.delijn.be/stops/405962", "https://data.delijn.be/stops/405972"], ["https://data.delijn.be/stops/505724", "https://data.delijn.be/stops/505725"], ["https://data.delijn.be/stops/209342", "https://data.delijn.be/stops/209343"], ["https://data.delijn.be/stops/408019", "https://data.delijn.be/stops/408043"], ["https://data.delijn.be/stops/206429", "https://data.delijn.be/stops/207430"], ["https://data.delijn.be/stops/504726", "https://data.delijn.be/stops/505342"], ["https://data.delijn.be/stops/208603", "https://data.delijn.be/stops/209603"], ["https://data.delijn.be/stops/407335", "https://data.delijn.be/stops/409490"], ["https://data.delijn.be/stops/202289", "https://data.delijn.be/stops/203334"], ["https://data.delijn.be/stops/206889", "https://data.delijn.be/stops/207806"], ["https://data.delijn.be/stops/503974", "https://data.delijn.be/stops/508095"], ["https://data.delijn.be/stops/305021", "https://data.delijn.be/stops/305034"], ["https://data.delijn.be/stops/205403", "https://data.delijn.be/stops/205404"], ["https://data.delijn.be/stops/207715", "https://data.delijn.be/stops/207873"], ["https://data.delijn.be/stops/504444", "https://data.delijn.be/stops/509445"], ["https://data.delijn.be/stops/502219", "https://data.delijn.be/stops/507215"], ["https://data.delijn.be/stops/407035", "https://data.delijn.be/stops/407038"], ["https://data.delijn.be/stops/505287", "https://data.delijn.be/stops/508328"], ["https://data.delijn.be/stops/503848", "https://data.delijn.be/stops/505972"], ["https://data.delijn.be/stops/204157", "https://data.delijn.be/stops/214007"], ["https://data.delijn.be/stops/108389", "https://data.delijn.be/stops/108392"], ["https://data.delijn.be/stops/208666", "https://data.delijn.be/stops/209127"], ["https://data.delijn.be/stops/502670", "https://data.delijn.be/stops/502766"], ["https://data.delijn.be/stops/203743", "https://data.delijn.be/stops/203812"], ["https://data.delijn.be/stops/202270", "https://data.delijn.be/stops/203090"], ["https://data.delijn.be/stops/406169", "https://data.delijn.be/stops/406281"], ["https://data.delijn.be/stops/407702", "https://data.delijn.be/stops/407719"], ["https://data.delijn.be/stops/409520", "https://data.delijn.be/stops/409521"], ["https://data.delijn.be/stops/509585", "https://data.delijn.be/stops/509587"], ["https://data.delijn.be/stops/405333", "https://data.delijn.be/stops/405349"], ["https://data.delijn.be/stops/507035", "https://data.delijn.be/stops/507105"], ["https://data.delijn.be/stops/505999", "https://data.delijn.be/stops/508308"], ["https://data.delijn.be/stops/406555", "https://data.delijn.be/stops/406561"], ["https://data.delijn.be/stops/101497", "https://data.delijn.be/stops/102722"], ["https://data.delijn.be/stops/402702", "https://data.delijn.be/stops/306035"], ["https://data.delijn.be/stops/300269", "https://data.delijn.be/stops/306825"], ["https://data.delijn.be/stops/205596", "https://data.delijn.be/stops/205761"], ["https://data.delijn.be/stops/404146", "https://data.delijn.be/stops/404156"], ["https://data.delijn.be/stops/208204", "https://data.delijn.be/stops/209203"], ["https://data.delijn.be/stops/204338", "https://data.delijn.be/stops/205301"], ["https://data.delijn.be/stops/503404", "https://data.delijn.be/stops/503535"], ["https://data.delijn.be/stops/206851", "https://data.delijn.be/stops/207851"], ["https://data.delijn.be/stops/502418", "https://data.delijn.be/stops/507417"], ["https://data.delijn.be/stops/507073", "https://data.delijn.be/stops/507560"], ["https://data.delijn.be/stops/301952", "https://data.delijn.be/stops/303283"], ["https://data.delijn.be/stops/107664", "https://data.delijn.be/stops/107697"], ["https://data.delijn.be/stops/102393", "https://data.delijn.be/stops/107111"], ["https://data.delijn.be/stops/402171", "https://data.delijn.be/stops/402225"], ["https://data.delijn.be/stops/101188", "https://data.delijn.be/stops/102597"], ["https://data.delijn.be/stops/300438", "https://data.delijn.be/stops/302701"], ["https://data.delijn.be/stops/502301", "https://data.delijn.be/stops/505681"], ["https://data.delijn.be/stops/401835", "https://data.delijn.be/stops/401839"], ["https://data.delijn.be/stops/201071", "https://data.delijn.be/stops/202352"], ["https://data.delijn.be/stops/109302", "https://data.delijn.be/stops/109303"], ["https://data.delijn.be/stops/105327", "https://data.delijn.be/stops/105329"], ["https://data.delijn.be/stops/504361", "https://data.delijn.be/stops/509361"], ["https://data.delijn.be/stops/406416", "https://data.delijn.be/stops/406518"], ["https://data.delijn.be/stops/302626", "https://data.delijn.be/stops/302631"], ["https://data.delijn.be/stops/501010", "https://data.delijn.be/stops/502410"], ["https://data.delijn.be/stops/208782", "https://data.delijn.be/stops/208788"], ["https://data.delijn.be/stops/207789", "https://data.delijn.be/stops/209820"], ["https://data.delijn.be/stops/200886", "https://data.delijn.be/stops/203301"], ["https://data.delijn.be/stops/203343", "https://data.delijn.be/stops/203951"], ["https://data.delijn.be/stops/207776", "https://data.delijn.be/stops/207777"], ["https://data.delijn.be/stops/300633", "https://data.delijn.be/stops/305452"], ["https://data.delijn.be/stops/206379", "https://data.delijn.be/stops/207379"], ["https://data.delijn.be/stops/202573", "https://data.delijn.be/stops/203574"], ["https://data.delijn.be/stops/301662", "https://data.delijn.be/stops/302128"], ["https://data.delijn.be/stops/201665", "https://data.delijn.be/stops/202213"], ["https://data.delijn.be/stops/301901", "https://data.delijn.be/stops/308657"], ["https://data.delijn.be/stops/401066", "https://data.delijn.be/stops/406574"], ["https://data.delijn.be/stops/405408", "https://data.delijn.be/stops/306781"], ["https://data.delijn.be/stops/505644", "https://data.delijn.be/stops/508898"], ["https://data.delijn.be/stops/208344", "https://data.delijn.be/stops/209344"], ["https://data.delijn.be/stops/105476", "https://data.delijn.be/stops/105683"], ["https://data.delijn.be/stops/108338", "https://data.delijn.be/stops/108339"], ["https://data.delijn.be/stops/503945", "https://data.delijn.be/stops/508174"], ["https://data.delijn.be/stops/501450", "https://data.delijn.be/stops/501451"], ["https://data.delijn.be/stops/105871", "https://data.delijn.be/stops/105886"], ["https://data.delijn.be/stops/400299", "https://data.delijn.be/stops/400331"], ["https://data.delijn.be/stops/505148", "https://data.delijn.be/stops/505327"], ["https://data.delijn.be/stops/405060", "https://data.delijn.be/stops/405067"], ["https://data.delijn.be/stops/402362", "https://data.delijn.be/stops/402363"], ["https://data.delijn.be/stops/107045", "https://data.delijn.be/stops/108240"], ["https://data.delijn.be/stops/206127", "https://data.delijn.be/stops/207085"], ["https://data.delijn.be/stops/104099", "https://data.delijn.be/stops/107230"], ["https://data.delijn.be/stops/408425", "https://data.delijn.be/stops/408427"], ["https://data.delijn.be/stops/402894", "https://data.delijn.be/stops/402895"], ["https://data.delijn.be/stops/206093", "https://data.delijn.be/stops/207091"], ["https://data.delijn.be/stops/502553", "https://data.delijn.be/stops/502559"], ["https://data.delijn.be/stops/404601", "https://data.delijn.be/stops/406920"], ["https://data.delijn.be/stops/206018", "https://data.delijn.be/stops/206107"], ["https://data.delijn.be/stops/300906", "https://data.delijn.be/stops/300907"], ["https://data.delijn.be/stops/400769", "https://data.delijn.be/stops/400770"], ["https://data.delijn.be/stops/308749", "https://data.delijn.be/stops/308752"], ["https://data.delijn.be/stops/301854", "https://data.delijn.be/stops/302102"], ["https://data.delijn.be/stops/401423", "https://data.delijn.be/stops/401598"], ["https://data.delijn.be/stops/201333", "https://data.delijn.be/stops/210084"], ["https://data.delijn.be/stops/503234", "https://data.delijn.be/stops/509762"], ["https://data.delijn.be/stops/405698", "https://data.delijn.be/stops/405699"], ["https://data.delijn.be/stops/504480", "https://data.delijn.be/stops/509482"], ["https://data.delijn.be/stops/105546", "https://data.delijn.be/stops/105547"], ["https://data.delijn.be/stops/201712", "https://data.delijn.be/stops/201713"], ["https://data.delijn.be/stops/502490", "https://data.delijn.be/stops/507919"], ["https://data.delijn.be/stops/504030", "https://data.delijn.be/stops/504032"], ["https://data.delijn.be/stops/304549", "https://data.delijn.be/stops/304698"], ["https://data.delijn.be/stops/404338", "https://data.delijn.be/stops/404345"], ["https://data.delijn.be/stops/504091", "https://data.delijn.be/stops/509091"], ["https://data.delijn.be/stops/404494", "https://data.delijn.be/stops/404551"], ["https://data.delijn.be/stops/406542", "https://data.delijn.be/stops/407478"], ["https://data.delijn.be/stops/102760", "https://data.delijn.be/stops/102812"], ["https://data.delijn.be/stops/107976", "https://data.delijn.be/stops/306761"], ["https://data.delijn.be/stops/503638", "https://data.delijn.be/stops/508313"], ["https://data.delijn.be/stops/503563", "https://data.delijn.be/stops/508552"], ["https://data.delijn.be/stops/403796", "https://data.delijn.be/stops/408745"], ["https://data.delijn.be/stops/106895", "https://data.delijn.be/stops/109884"], ["https://data.delijn.be/stops/504049", "https://data.delijn.be/stops/505368"], ["https://data.delijn.be/stops/302104", "https://data.delijn.be/stops/303516"], ["https://data.delijn.be/stops/200887", "https://data.delijn.be/stops/203057"], ["https://data.delijn.be/stops/504427", "https://data.delijn.be/stops/505166"], ["https://data.delijn.be/stops/506206", "https://data.delijn.be/stops/506374"], ["https://data.delijn.be/stops/407913", "https://data.delijn.be/stops/408032"], ["https://data.delijn.be/stops/206366", "https://data.delijn.be/stops/207339"], ["https://data.delijn.be/stops/200870", "https://data.delijn.be/stops/200895"], ["https://data.delijn.be/stops/400764", "https://data.delijn.be/stops/409638"], ["https://data.delijn.be/stops/101016", "https://data.delijn.be/stops/108360"], ["https://data.delijn.be/stops/303587", "https://data.delijn.be/stops/308709"], ["https://data.delijn.be/stops/508075", "https://data.delijn.be/stops/508945"], ["https://data.delijn.be/stops/201696", "https://data.delijn.be/stops/201697"], ["https://data.delijn.be/stops/206936", "https://data.delijn.be/stops/207750"], ["https://data.delijn.be/stops/400094", "https://data.delijn.be/stops/401971"], ["https://data.delijn.be/stops/502311", "https://data.delijn.be/stops/507310"], ["https://data.delijn.be/stops/101511", "https://data.delijn.be/stops/101512"], ["https://data.delijn.be/stops/208583", "https://data.delijn.be/stops/208584"], ["https://data.delijn.be/stops/405312", "https://data.delijn.be/stops/302825"], ["https://data.delijn.be/stops/403246", "https://data.delijn.be/stops/403529"], ["https://data.delijn.be/stops/201767", "https://data.delijn.be/stops/201805"], ["https://data.delijn.be/stops/502083", "https://data.delijn.be/stops/502767"], ["https://data.delijn.be/stops/300260", "https://data.delijn.be/stops/307112"], ["https://data.delijn.be/stops/200940", "https://data.delijn.be/stops/211709"], ["https://data.delijn.be/stops/301402", "https://data.delijn.be/stops/306311"], ["https://data.delijn.be/stops/202377", "https://data.delijn.be/stops/203377"], ["https://data.delijn.be/stops/108173", "https://data.delijn.be/stops/108176"], ["https://data.delijn.be/stops/106087", "https://data.delijn.be/stops/106089"], ["https://data.delijn.be/stops/503195", "https://data.delijn.be/stops/508092"], ["https://data.delijn.be/stops/206844", "https://data.delijn.be/stops/303240"], ["https://data.delijn.be/stops/204449", "https://data.delijn.be/stops/205303"], ["https://data.delijn.be/stops/506387", "https://data.delijn.be/stops/506389"], ["https://data.delijn.be/stops/108878", "https://data.delijn.be/stops/108880"], ["https://data.delijn.be/stops/503303", "https://data.delijn.be/stops/508315"], ["https://data.delijn.be/stops/505747", "https://data.delijn.be/stops/507293"], ["https://data.delijn.be/stops/403398", "https://data.delijn.be/stops/403399"], ["https://data.delijn.be/stops/209170", "https://data.delijn.be/stops/209171"], ["https://data.delijn.be/stops/501532", "https://data.delijn.be/stops/509896"], ["https://data.delijn.be/stops/407032", "https://data.delijn.be/stops/407041"], ["https://data.delijn.be/stops/200630", "https://data.delijn.be/stops/203935"], ["https://data.delijn.be/stops/406576", "https://data.delijn.be/stops/407183"], ["https://data.delijn.be/stops/502547", "https://data.delijn.be/stops/505087"], ["https://data.delijn.be/stops/400650", "https://data.delijn.be/stops/400651"], ["https://data.delijn.be/stops/206996", "https://data.delijn.be/stops/207254"], ["https://data.delijn.be/stops/304857", "https://data.delijn.be/stops/304884"], ["https://data.delijn.be/stops/101645", "https://data.delijn.be/stops/105725"], ["https://data.delijn.be/stops/300622", "https://data.delijn.be/stops/303523"], ["https://data.delijn.be/stops/105392", "https://data.delijn.be/stops/105393"], ["https://data.delijn.be/stops/410216", "https://data.delijn.be/stops/410217"], ["https://data.delijn.be/stops/200367", "https://data.delijn.be/stops/201900"], ["https://data.delijn.be/stops/504100", "https://data.delijn.be/stops/504102"], ["https://data.delijn.be/stops/303238", "https://data.delijn.be/stops/307983"], ["https://data.delijn.be/stops/405339", "https://data.delijn.be/stops/306922"], ["https://data.delijn.be/stops/403850", "https://data.delijn.be/stops/410109"], ["https://data.delijn.be/stops/504536", "https://data.delijn.be/stops/509080"], ["https://data.delijn.be/stops/404887", "https://data.delijn.be/stops/404903"], ["https://data.delijn.be/stops/106190", "https://data.delijn.be/stops/106191"], ["https://data.delijn.be/stops/305726", "https://data.delijn.be/stops/305729"], ["https://data.delijn.be/stops/200641", "https://data.delijn.be/stops/201436"], ["https://data.delijn.be/stops/502035", "https://data.delijn.be/stops/507680"], ["https://data.delijn.be/stops/200138", "https://data.delijn.be/stops/201222"], ["https://data.delijn.be/stops/501003", "https://data.delijn.be/stops/501505"], ["https://data.delijn.be/stops/200828", "https://data.delijn.be/stops/200829"], ["https://data.delijn.be/stops/500935", "https://data.delijn.be/stops/505406"], ["https://data.delijn.be/stops/301974", "https://data.delijn.be/stops/301978"], ["https://data.delijn.be/stops/402019", "https://data.delijn.be/stops/405030"], ["https://data.delijn.be/stops/403746", "https://data.delijn.be/stops/409822"], ["https://data.delijn.be/stops/303695", "https://data.delijn.be/stops/303764"], ["https://data.delijn.be/stops/305242", "https://data.delijn.be/stops/305608"], ["https://data.delijn.be/stops/305379", "https://data.delijn.be/stops/305380"], ["https://data.delijn.be/stops/307379", "https://data.delijn.be/stops/307380"], ["https://data.delijn.be/stops/102172", "https://data.delijn.be/stops/108398"], ["https://data.delijn.be/stops/200018", "https://data.delijn.be/stops/210119"], ["https://data.delijn.be/stops/201717", "https://data.delijn.be/stops/202127"], ["https://data.delijn.be/stops/404428", "https://data.delijn.be/stops/404437"], ["https://data.delijn.be/stops/201072", "https://data.delijn.be/stops/201113"], ["https://data.delijn.be/stops/202979", "https://data.delijn.be/stops/203978"], ["https://data.delijn.be/stops/302365", "https://data.delijn.be/stops/302367"], ["https://data.delijn.be/stops/504094", "https://data.delijn.be/stops/505192"], ["https://data.delijn.be/stops/505310", "https://data.delijn.be/stops/505581"], ["https://data.delijn.be/stops/101519", "https://data.delijn.be/stops/109052"], ["https://data.delijn.be/stops/502220", "https://data.delijn.be/stops/502221"], ["https://data.delijn.be/stops/303488", "https://data.delijn.be/stops/308739"], ["https://data.delijn.be/stops/502278", "https://data.delijn.be/stops/507278"], ["https://data.delijn.be/stops/105983", "https://data.delijn.be/stops/105984"], ["https://data.delijn.be/stops/405556", "https://data.delijn.be/stops/405557"], ["https://data.delijn.be/stops/206606", "https://data.delijn.be/stops/206607"], ["https://data.delijn.be/stops/208012", "https://data.delijn.be/stops/208079"], ["https://data.delijn.be/stops/304818", "https://data.delijn.be/stops/307965"], ["https://data.delijn.be/stops/405938", "https://data.delijn.be/stops/405939"], ["https://data.delijn.be/stops/206409", "https://data.delijn.be/stops/207408"], ["https://data.delijn.be/stops/504679", "https://data.delijn.be/stops/505819"], ["https://data.delijn.be/stops/401201", "https://data.delijn.be/stops/401304"], ["https://data.delijn.be/stops/206846", "https://data.delijn.be/stops/207998"], ["https://data.delijn.be/stops/107343", "https://data.delijn.be/stops/107344"], ["https://data.delijn.be/stops/401526", "https://data.delijn.be/stops/401557"], ["https://data.delijn.be/stops/308569", "https://data.delijn.be/stops/308570"], ["https://data.delijn.be/stops/106597", "https://data.delijn.be/stops/106598"], ["https://data.delijn.be/stops/308014", "https://data.delijn.be/stops/308020"], ["https://data.delijn.be/stops/206210", "https://data.delijn.be/stops/207210"], ["https://data.delijn.be/stops/208696", "https://data.delijn.be/stops/208697"], ["https://data.delijn.be/stops/402201", "https://data.delijn.be/stops/402398"], ["https://data.delijn.be/stops/405320", "https://data.delijn.be/stops/405327"], ["https://data.delijn.be/stops/406711", "https://data.delijn.be/stops/406803"], ["https://data.delijn.be/stops/503689", "https://data.delijn.be/stops/508689"], ["https://data.delijn.be/stops/502462", "https://data.delijn.be/stops/507588"], ["https://data.delijn.be/stops/108046", "https://data.delijn.be/stops/108048"], ["https://data.delijn.be/stops/304013", "https://data.delijn.be/stops/307814"], ["https://data.delijn.be/stops/109664", "https://data.delijn.be/stops/109717"], ["https://data.delijn.be/stops/407979", "https://data.delijn.be/stops/408243"], ["https://data.delijn.be/stops/202412", "https://data.delijn.be/stops/205943"], ["https://data.delijn.be/stops/209693", "https://data.delijn.be/stops/209712"], ["https://data.delijn.be/stops/205082", "https://data.delijn.be/stops/205202"], ["https://data.delijn.be/stops/101427", "https://data.delijn.be/stops/101553"], ["https://data.delijn.be/stops/208862", "https://data.delijn.be/stops/209862"], ["https://data.delijn.be/stops/203212", "https://data.delijn.be/stops/211116"], ["https://data.delijn.be/stops/208765", "https://data.delijn.be/stops/208766"], ["https://data.delijn.be/stops/403748", "https://data.delijn.be/stops/403751"], ["https://data.delijn.be/stops/502365", "https://data.delijn.be/stops/505054"], ["https://data.delijn.be/stops/502430", "https://data.delijn.be/stops/507430"], ["https://data.delijn.be/stops/504127", "https://data.delijn.be/stops/504683"], ["https://data.delijn.be/stops/403595", "https://data.delijn.be/stops/404390"], ["https://data.delijn.be/stops/407978", "https://data.delijn.be/stops/408153"], ["https://data.delijn.be/stops/501387", "https://data.delijn.be/stops/506391"], ["https://data.delijn.be/stops/207090", "https://data.delijn.be/stops/207092"], ["https://data.delijn.be/stops/203656", "https://data.delijn.be/stops/211857"], ["https://data.delijn.be/stops/208545", "https://data.delijn.be/stops/209545"], ["https://data.delijn.be/stops/301801", "https://data.delijn.be/stops/301808"], ["https://data.delijn.be/stops/303724", "https://data.delijn.be/stops/303733"], ["https://data.delijn.be/stops/206270", "https://data.delijn.be/stops/206271"], ["https://data.delijn.be/stops/202367", "https://data.delijn.be/stops/203367"], ["https://data.delijn.be/stops/502551", "https://data.delijn.be/stops/507551"], ["https://data.delijn.be/stops/200670", "https://data.delijn.be/stops/505914"], ["https://data.delijn.be/stops/105356", "https://data.delijn.be/stops/106681"], ["https://data.delijn.be/stops/501634", "https://data.delijn.be/stops/501658"], ["https://data.delijn.be/stops/101276", "https://data.delijn.be/stops/204257"], ["https://data.delijn.be/stops/201461", "https://data.delijn.be/stops/210082"], ["https://data.delijn.be/stops/104010", "https://data.delijn.be/stops/107219"], ["https://data.delijn.be/stops/108919", "https://data.delijn.be/stops/109427"], ["https://data.delijn.be/stops/301003", "https://data.delijn.be/stops/304722"], ["https://data.delijn.be/stops/402427", "https://data.delijn.be/stops/405569"], ["https://data.delijn.be/stops/303825", "https://data.delijn.be/stops/303827"], ["https://data.delijn.be/stops/503182", "https://data.delijn.be/stops/504830"], ["https://data.delijn.be/stops/306714", "https://data.delijn.be/stops/306716"], ["https://data.delijn.be/stops/108021", "https://data.delijn.be/stops/109635"], ["https://data.delijn.be/stops/505125", "https://data.delijn.be/stops/505241"], ["https://data.delijn.be/stops/404224", "https://data.delijn.be/stops/407365"], ["https://data.delijn.be/stops/204582", "https://data.delijn.be/stops/205092"], ["https://data.delijn.be/stops/304736", "https://data.delijn.be/stops/305282"], ["https://data.delijn.be/stops/302471", "https://data.delijn.be/stops/308831"], ["https://data.delijn.be/stops/208534", "https://data.delijn.be/stops/209535"], ["https://data.delijn.be/stops/202684", "https://data.delijn.be/stops/204942"], ["https://data.delijn.be/stops/504856", "https://data.delijn.be/stops/508145"], ["https://data.delijn.be/stops/206636", "https://data.delijn.be/stops/207912"], ["https://data.delijn.be/stops/204084", "https://data.delijn.be/stops/205085"], ["https://data.delijn.be/stops/408232", "https://data.delijn.be/stops/408233"], ["https://data.delijn.be/stops/101176", "https://data.delijn.be/stops/101177"], ["https://data.delijn.be/stops/308261", "https://data.delijn.be/stops/308263"], ["https://data.delijn.be/stops/202632", "https://data.delijn.be/stops/203632"], ["https://data.delijn.be/stops/306912", "https://data.delijn.be/stops/308127"], ["https://data.delijn.be/stops/300088", "https://data.delijn.be/stops/306835"], ["https://data.delijn.be/stops/308496", "https://data.delijn.be/stops/308505"], ["https://data.delijn.be/stops/200397", "https://data.delijn.be/stops/201729"], ["https://data.delijn.be/stops/105617", "https://data.delijn.be/stops/105623"], ["https://data.delijn.be/stops/503061", "https://data.delijn.be/stops/508061"], ["https://data.delijn.be/stops/202836", "https://data.delijn.be/stops/203837"], ["https://data.delijn.be/stops/505764", "https://data.delijn.be/stops/507011"], ["https://data.delijn.be/stops/207665", "https://data.delijn.be/stops/208504"], ["https://data.delijn.be/stops/406520", "https://data.delijn.be/stops/407445"], ["https://data.delijn.be/stops/102573", "https://data.delijn.be/stops/109235"], ["https://data.delijn.be/stops/102888", "https://data.delijn.be/stops/102889"], ["https://data.delijn.be/stops/503183", "https://data.delijn.be/stops/508183"], ["https://data.delijn.be/stops/209211", "https://data.delijn.be/stops/209785"], ["https://data.delijn.be/stops/206803", "https://data.delijn.be/stops/206851"], ["https://data.delijn.be/stops/407603", "https://data.delijn.be/stops/407747"], ["https://data.delijn.be/stops/105060", "https://data.delijn.be/stops/106709"], ["https://data.delijn.be/stops/405311", "https://data.delijn.be/stops/302832"], ["https://data.delijn.be/stops/509493", "https://data.delijn.be/stops/509506"], ["https://data.delijn.be/stops/403788", "https://data.delijn.be/stops/408965"], ["https://data.delijn.be/stops/204497", "https://data.delijn.be/stops/205510"], ["https://data.delijn.be/stops/401593", "https://data.delijn.be/stops/401596"], ["https://data.delijn.be/stops/303308", "https://data.delijn.be/stops/303310"], ["https://data.delijn.be/stops/500555", "https://data.delijn.be/stops/505149"], ["https://data.delijn.be/stops/308728", "https://data.delijn.be/stops/308731"], ["https://data.delijn.be/stops/403198", "https://data.delijn.be/stops/403278"], ["https://data.delijn.be/stops/201765", "https://data.delijn.be/stops/201766"], ["https://data.delijn.be/stops/105696", "https://data.delijn.be/stops/105711"], ["https://data.delijn.be/stops/206350", "https://data.delijn.be/stops/207375"], ["https://data.delijn.be/stops/206843", "https://data.delijn.be/stops/303133"], ["https://data.delijn.be/stops/202036", "https://data.delijn.be/stops/203035"], ["https://data.delijn.be/stops/105534", "https://data.delijn.be/stops/106731"], ["https://data.delijn.be/stops/302939", "https://data.delijn.be/stops/307441"], ["https://data.delijn.be/stops/207804", "https://data.delijn.be/stops/208347"], ["https://data.delijn.be/stops/400662", "https://data.delijn.be/stops/400663"], ["https://data.delijn.be/stops/105523", "https://data.delijn.be/stops/105524"], ["https://data.delijn.be/stops/408737", "https://data.delijn.be/stops/408773"], ["https://data.delijn.be/stops/509278", "https://data.delijn.be/stops/509282"], ["https://data.delijn.be/stops/107051", "https://data.delijn.be/stops/109646"], ["https://data.delijn.be/stops/106956", "https://data.delijn.be/stops/107269"], ["https://data.delijn.be/stops/301772", "https://data.delijn.be/stops/302527"], ["https://data.delijn.be/stops/206074", "https://data.delijn.be/stops/216003"], ["https://data.delijn.be/stops/406298", "https://data.delijn.be/stops/406398"], ["https://data.delijn.be/stops/400676", "https://data.delijn.be/stops/400677"], ["https://data.delijn.be/stops/205135", "https://data.delijn.be/stops/205147"], ["https://data.delijn.be/stops/404180", "https://data.delijn.be/stops/404181"], ["https://data.delijn.be/stops/302892", "https://data.delijn.be/stops/302902"], ["https://data.delijn.be/stops/206175", "https://data.delijn.be/stops/206480"], ["https://data.delijn.be/stops/509623", "https://data.delijn.be/stops/509624"], ["https://data.delijn.be/stops/401015", "https://data.delijn.be/stops/401018"], ["https://data.delijn.be/stops/206166", "https://data.delijn.be/stops/207297"], ["https://data.delijn.be/stops/302713", "https://data.delijn.be/stops/302714"], ["https://data.delijn.be/stops/200110", "https://data.delijn.be/stops/202646"], ["https://data.delijn.be/stops/505649", "https://data.delijn.be/stops/505651"], ["https://data.delijn.be/stops/201289", "https://data.delijn.be/stops/210079"], ["https://data.delijn.be/stops/202615", "https://data.delijn.be/stops/203615"], ["https://data.delijn.be/stops/404374", "https://data.delijn.be/stops/404395"], ["https://data.delijn.be/stops/504232", "https://data.delijn.be/stops/509232"], ["https://data.delijn.be/stops/206039", "https://data.delijn.be/stops/207050"], ["https://data.delijn.be/stops/505012", "https://data.delijn.be/stops/505222"], ["https://data.delijn.be/stops/503385", "https://data.delijn.be/stops/508206"], ["https://data.delijn.be/stops/206892", "https://data.delijn.be/stops/207883"], ["https://data.delijn.be/stops/502041", "https://data.delijn.be/stops/507037"], ["https://data.delijn.be/stops/107271", "https://data.delijn.be/stops/109734"], ["https://data.delijn.be/stops/101083", "https://data.delijn.be/stops/102718"], ["https://data.delijn.be/stops/201858", "https://data.delijn.be/stops/211035"], ["https://data.delijn.be/stops/503606", "https://data.delijn.be/stops/505184"], ["https://data.delijn.be/stops/107508", "https://data.delijn.be/stops/107511"], ["https://data.delijn.be/stops/403811", "https://data.delijn.be/stops/403818"], ["https://data.delijn.be/stops/206935", "https://data.delijn.be/stops/207813"], ["https://data.delijn.be/stops/104121", "https://data.delijn.be/stops/106395"], ["https://data.delijn.be/stops/304893", "https://data.delijn.be/stops/306407"], ["https://data.delijn.be/stops/200889", "https://data.delijn.be/stops/203296"], ["https://data.delijn.be/stops/106907", "https://data.delijn.be/stops/107258"], ["https://data.delijn.be/stops/401584", "https://data.delijn.be/stops/401743"], ["https://data.delijn.be/stops/109210", "https://data.delijn.be/stops/109212"], ["https://data.delijn.be/stops/504177", "https://data.delijn.be/stops/504739"], ["https://data.delijn.be/stops/105728", "https://data.delijn.be/stops/109842"], ["https://data.delijn.be/stops/200825", "https://data.delijn.be/stops/202296"], ["https://data.delijn.be/stops/105976", "https://data.delijn.be/stops/205640"], ["https://data.delijn.be/stops/207480", "https://data.delijn.be/stops/207481"], ["https://data.delijn.be/stops/307344", "https://data.delijn.be/stops/308456"], ["https://data.delijn.be/stops/102378", "https://data.delijn.be/stops/106669"], ["https://data.delijn.be/stops/505010", "https://data.delijn.be/stops/505053"], ["https://data.delijn.be/stops/200893", "https://data.delijn.be/stops/203792"], ["https://data.delijn.be/stops/502392", "https://data.delijn.be/stops/505023"], ["https://data.delijn.be/stops/109397", "https://data.delijn.be/stops/109398"], ["https://data.delijn.be/stops/505809", "https://data.delijn.be/stops/509842"], ["https://data.delijn.be/stops/201696", "https://data.delijn.be/stops/209947"], ["https://data.delijn.be/stops/503665", "https://data.delijn.be/stops/508667"], ["https://data.delijn.be/stops/502687", "https://data.delijn.be/stops/507191"], ["https://data.delijn.be/stops/101417", "https://data.delijn.be/stops/108696"], ["https://data.delijn.be/stops/106596", "https://data.delijn.be/stops/107244"], ["https://data.delijn.be/stops/406456", "https://data.delijn.be/stops/406494"], ["https://data.delijn.be/stops/306164", "https://data.delijn.be/stops/307045"], ["https://data.delijn.be/stops/502699", "https://data.delijn.be/stops/507699"], ["https://data.delijn.be/stops/101704", "https://data.delijn.be/stops/103165"], ["https://data.delijn.be/stops/301091", "https://data.delijn.be/stops/306164"], ["https://data.delijn.be/stops/105892", "https://data.delijn.be/stops/105893"], ["https://data.delijn.be/stops/301241", "https://data.delijn.be/stops/301242"], ["https://data.delijn.be/stops/200371", "https://data.delijn.be/stops/201372"], ["https://data.delijn.be/stops/503375", "https://data.delijn.be/stops/503419"], ["https://data.delijn.be/stops/304148", "https://data.delijn.be/stops/304149"], ["https://data.delijn.be/stops/204732", "https://data.delijn.be/stops/204758"], ["https://data.delijn.be/stops/305154", "https://data.delijn.be/stops/305180"], ["https://data.delijn.be/stops/407713", "https://data.delijn.be/stops/407742"], ["https://data.delijn.be/stops/105871", "https://data.delijn.be/stops/109744"], ["https://data.delijn.be/stops/102732", "https://data.delijn.be/stops/107057"], ["https://data.delijn.be/stops/102355", "https://data.delijn.be/stops/108975"], ["https://data.delijn.be/stops/503070", "https://data.delijn.be/stops/503076"], ["https://data.delijn.be/stops/505144", "https://data.delijn.be/stops/509828"], ["https://data.delijn.be/stops/300264", "https://data.delijn.be/stops/303813"], ["https://data.delijn.be/stops/502504", "https://data.delijn.be/stops/507706"], ["https://data.delijn.be/stops/107486", "https://data.delijn.be/stops/107487"], ["https://data.delijn.be/stops/201871", "https://data.delijn.be/stops/203663"], ["https://data.delijn.be/stops/109091", "https://data.delijn.be/stops/109535"], ["https://data.delijn.be/stops/105770", "https://data.delijn.be/stops/105775"], ["https://data.delijn.be/stops/203894", "https://data.delijn.be/stops/208285"], ["https://data.delijn.be/stops/208178", "https://data.delijn.be/stops/208180"], ["https://data.delijn.be/stops/408272", "https://data.delijn.be/stops/408374"], ["https://data.delijn.be/stops/503811", "https://data.delijn.be/stops/508804"], ["https://data.delijn.be/stops/209410", "https://data.delijn.be/stops/209411"], ["https://data.delijn.be/stops/504883", "https://data.delijn.be/stops/505099"], ["https://data.delijn.be/stops/502815", "https://data.delijn.be/stops/505673"], ["https://data.delijn.be/stops/201807", "https://data.delijn.be/stops/208327"], ["https://data.delijn.be/stops/506615", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/204997", "https://data.delijn.be/stops/503641"], ["https://data.delijn.be/stops/408510", "https://data.delijn.be/stops/408750"], ["https://data.delijn.be/stops/503611", "https://data.delijn.be/stops/508602"], ["https://data.delijn.be/stops/305064", "https://data.delijn.be/stops/305116"], ["https://data.delijn.be/stops/405173", "https://data.delijn.be/stops/405216"], ["https://data.delijn.be/stops/208475", "https://data.delijn.be/stops/209667"], ["https://data.delijn.be/stops/202139", "https://data.delijn.be/stops/203365"], ["https://data.delijn.be/stops/503526", "https://data.delijn.be/stops/508378"], ["https://data.delijn.be/stops/109494", "https://data.delijn.be/stops/109495"], ["https://data.delijn.be/stops/209604", "https://data.delijn.be/stops/307605"], ["https://data.delijn.be/stops/409552", "https://data.delijn.be/stops/409609"], ["https://data.delijn.be/stops/104386", "https://data.delijn.be/stops/104387"], ["https://data.delijn.be/stops/501490", "https://data.delijn.be/stops/506489"], ["https://data.delijn.be/stops/400684", "https://data.delijn.be/stops/406635"], ["https://data.delijn.be/stops/107183", "https://data.delijn.be/stops/107184"], ["https://data.delijn.be/stops/308377", "https://data.delijn.be/stops/308406"], ["https://data.delijn.be/stops/305107", "https://data.delijn.be/stops/305134"], ["https://data.delijn.be/stops/200087", "https://data.delijn.be/stops/203770"], ["https://data.delijn.be/stops/404505", "https://data.delijn.be/stops/409601"], ["https://data.delijn.be/stops/505517", "https://data.delijn.be/stops/505617"], ["https://data.delijn.be/stops/303167", "https://data.delijn.be/stops/303575"], ["https://data.delijn.be/stops/302446", "https://data.delijn.be/stops/302450"], ["https://data.delijn.be/stops/105104", "https://data.delijn.be/stops/106971"], ["https://data.delijn.be/stops/408020", "https://data.delijn.be/stops/408089"], ["https://data.delijn.be/stops/206701", "https://data.delijn.be/stops/206730"], ["https://data.delijn.be/stops/207644", "https://data.delijn.be/stops/209687"], ["https://data.delijn.be/stops/406286", "https://data.delijn.be/stops/406290"], ["https://data.delijn.be/stops/300366", "https://data.delijn.be/stops/300402"], ["https://data.delijn.be/stops/501401", "https://data.delijn.be/stops/505398"], ["https://data.delijn.be/stops/206132", "https://data.delijn.be/stops/206512"], ["https://data.delijn.be/stops/503918", "https://data.delijn.be/stops/508922"], ["https://data.delijn.be/stops/107573", "https://data.delijn.be/stops/107743"], ["https://data.delijn.be/stops/209463", "https://data.delijn.be/stops/209674"], ["https://data.delijn.be/stops/200702", "https://data.delijn.be/stops/202613"], ["https://data.delijn.be/stops/404435", "https://data.delijn.be/stops/404553"], ["https://data.delijn.be/stops/103498", "https://data.delijn.be/stops/109897"], ["https://data.delijn.be/stops/406621", "https://data.delijn.be/stops/406629"], ["https://data.delijn.be/stops/301504", "https://data.delijn.be/stops/301506"], ["https://data.delijn.be/stops/303249", "https://data.delijn.be/stops/307638"], ["https://data.delijn.be/stops/207357", "https://data.delijn.be/stops/207728"], ["https://data.delijn.be/stops/202288", "https://data.delijn.be/stops/203287"], ["https://data.delijn.be/stops/402254", "https://data.delijn.be/stops/402255"], ["https://data.delijn.be/stops/302881", "https://data.delijn.be/stops/302882"], ["https://data.delijn.be/stops/208082", "https://data.delijn.be/stops/209082"], ["https://data.delijn.be/stops/206521", "https://data.delijn.be/stops/206876"], ["https://data.delijn.be/stops/105573", "https://data.delijn.be/stops/106287"], ["https://data.delijn.be/stops/301991", "https://data.delijn.be/stops/301992"], ["https://data.delijn.be/stops/105690", "https://data.delijn.be/stops/105691"], ["https://data.delijn.be/stops/301035", "https://data.delijn.be/stops/304127"], ["https://data.delijn.be/stops/404763", "https://data.delijn.be/stops/404788"], ["https://data.delijn.be/stops/208286", "https://data.delijn.be/stops/209287"], ["https://data.delijn.be/stops/403279", "https://data.delijn.be/stops/403418"], ["https://data.delijn.be/stops/101848", "https://data.delijn.be/stops/102092"], ["https://data.delijn.be/stops/502170", "https://data.delijn.be/stops/502802"], ["https://data.delijn.be/stops/505336", "https://data.delijn.be/stops/507527"], ["https://data.delijn.be/stops/502198", "https://data.delijn.be/stops/507198"], ["https://data.delijn.be/stops/305696", "https://data.delijn.be/stops/305705"], ["https://data.delijn.be/stops/403489", "https://data.delijn.be/stops/403491"], ["https://data.delijn.be/stops/406048", "https://data.delijn.be/stops/406049"], ["https://data.delijn.be/stops/206511", "https://data.delijn.be/stops/207511"], ["https://data.delijn.be/stops/101799", "https://data.delijn.be/stops/308976"], ["https://data.delijn.be/stops/307156", "https://data.delijn.be/stops/307157"], ["https://data.delijn.be/stops/102174", "https://data.delijn.be/stops/109364"], ["https://data.delijn.be/stops/304781", "https://data.delijn.be/stops/307130"], ["https://data.delijn.be/stops/303001", "https://data.delijn.be/stops/306282"], ["https://data.delijn.be/stops/105716", "https://data.delijn.be/stops/106138"], ["https://data.delijn.be/stops/300749", "https://data.delijn.be/stops/301018"], ["https://data.delijn.be/stops/408501", "https://data.delijn.be/stops/408688"], ["https://data.delijn.be/stops/400095", "https://data.delijn.be/stops/400156"], ["https://data.delijn.be/stops/401451", "https://data.delijn.be/stops/402033"], ["https://data.delijn.be/stops/103273", "https://data.delijn.be/stops/109478"], ["https://data.delijn.be/stops/401418", "https://data.delijn.be/stops/401419"], ["https://data.delijn.be/stops/408000", "https://data.delijn.be/stops/408001"], ["https://data.delijn.be/stops/302879", "https://data.delijn.be/stops/304710"], ["https://data.delijn.be/stops/204227", "https://data.delijn.be/stops/205226"], ["https://data.delijn.be/stops/201817", "https://data.delijn.be/stops/201832"], ["https://data.delijn.be/stops/102965", "https://data.delijn.be/stops/104095"], ["https://data.delijn.be/stops/501338", "https://data.delijn.be/stops/501509"], ["https://data.delijn.be/stops/206289", "https://data.delijn.be/stops/206811"], ["https://data.delijn.be/stops/104910", "https://data.delijn.be/stops/106053"], ["https://data.delijn.be/stops/302968", "https://data.delijn.be/stops/308661"], ["https://data.delijn.be/stops/508214", "https://data.delijn.be/stops/508456"], ["https://data.delijn.be/stops/302655", "https://data.delijn.be/stops/302656"], ["https://data.delijn.be/stops/204027", "https://data.delijn.be/stops/205028"], ["https://data.delijn.be/stops/508760", "https://data.delijn.be/stops/508958"], ["https://data.delijn.be/stops/208097", "https://data.delijn.be/stops/209097"], ["https://data.delijn.be/stops/503610", "https://data.delijn.be/stops/508610"], ["https://data.delijn.be/stops/206674", "https://data.delijn.be/stops/208174"], ["https://data.delijn.be/stops/304382", "https://data.delijn.be/stops/305041"], ["https://data.delijn.be/stops/203453", "https://data.delijn.be/stops/203454"], ["https://data.delijn.be/stops/303032", "https://data.delijn.be/stops/303895"], ["https://data.delijn.be/stops/502256", "https://data.delijn.be/stops/507256"], ["https://data.delijn.be/stops/500557", "https://data.delijn.be/stops/501044"], ["https://data.delijn.be/stops/109278", "https://data.delijn.be/stops/109281"], ["https://data.delijn.be/stops/304056", "https://data.delijn.be/stops/304084"], ["https://data.delijn.be/stops/200812", "https://data.delijn.be/stops/200897"], ["https://data.delijn.be/stops/402220", "https://data.delijn.be/stops/410041"], ["https://data.delijn.be/stops/401673", "https://data.delijn.be/stops/308270"], ["https://data.delijn.be/stops/401107", "https://data.delijn.be/stops/401111"], ["https://data.delijn.be/stops/202759", "https://data.delijn.be/stops/203758"], ["https://data.delijn.be/stops/501134", "https://data.delijn.be/stops/506134"], ["https://data.delijn.be/stops/508535", "https://data.delijn.be/stops/509872"], ["https://data.delijn.be/stops/400288", "https://data.delijn.be/stops/400334"], ["https://data.delijn.be/stops/201710", "https://data.delijn.be/stops/202750"], ["https://data.delijn.be/stops/203316", "https://data.delijn.be/stops/210067"], ["https://data.delijn.be/stops/101765", "https://data.delijn.be/stops/101770"], ["https://data.delijn.be/stops/502744", "https://data.delijn.be/stops/505067"], ["https://data.delijn.be/stops/106323", "https://data.delijn.be/stops/106326"], ["https://data.delijn.be/stops/307221", "https://data.delijn.be/stops/307222"], ["https://data.delijn.be/stops/209089", "https://data.delijn.be/stops/209303"], ["https://data.delijn.be/stops/208130", "https://data.delijn.be/stops/208131"], ["https://data.delijn.be/stops/106325", "https://data.delijn.be/stops/106689"], ["https://data.delijn.be/stops/204402", "https://data.delijn.be/stops/204403"], ["https://data.delijn.be/stops/305386", "https://data.delijn.be/stops/305387"], ["https://data.delijn.be/stops/302858", "https://data.delijn.be/stops/304184"], ["https://data.delijn.be/stops/109830", "https://data.delijn.be/stops/109831"], ["https://data.delijn.be/stops/106641", "https://data.delijn.be/stops/106650"], ["https://data.delijn.be/stops/401279", "https://data.delijn.be/stops/409191"], ["https://data.delijn.be/stops/200012", "https://data.delijn.be/stops/201392"], ["https://data.delijn.be/stops/102908", "https://data.delijn.be/stops/102915"], ["https://data.delijn.be/stops/501057", "https://data.delijn.be/stops/505359"], ["https://data.delijn.be/stops/401089", "https://data.delijn.be/stops/401097"], ["https://data.delijn.be/stops/503006", "https://data.delijn.be/stops/508021"], ["https://data.delijn.be/stops/105787", "https://data.delijn.be/stops/105789"], ["https://data.delijn.be/stops/305951", "https://data.delijn.be/stops/307850"], ["https://data.delijn.be/stops/408251", "https://data.delijn.be/stops/408291"], ["https://data.delijn.be/stops/408260", "https://data.delijn.be/stops/408284"], ["https://data.delijn.be/stops/402138", "https://data.delijn.be/stops/402139"], ["https://data.delijn.be/stops/203978", "https://data.delijn.be/stops/205995"], ["https://data.delijn.be/stops/302959", "https://data.delijn.be/stops/302960"], ["https://data.delijn.be/stops/101393", "https://data.delijn.be/stops/101394"], ["https://data.delijn.be/stops/503631", "https://data.delijn.be/stops/508631"], ["https://data.delijn.be/stops/501537", "https://data.delijn.be/stops/505781"], ["https://data.delijn.be/stops/302054", "https://data.delijn.be/stops/307074"], ["https://data.delijn.be/stops/200452", "https://data.delijn.be/stops/208273"], ["https://data.delijn.be/stops/104783", "https://data.delijn.be/stops/104784"], ["https://data.delijn.be/stops/400584", "https://data.delijn.be/stops/400597"], ["https://data.delijn.be/stops/103752", "https://data.delijn.be/stops/105650"], ["https://data.delijn.be/stops/405676", "https://data.delijn.be/stops/408203"], ["https://data.delijn.be/stops/104886", "https://data.delijn.be/stops/104888"], ["https://data.delijn.be/stops/301306", "https://data.delijn.be/stops/306649"], ["https://data.delijn.be/stops/201937", "https://data.delijn.be/stops/207966"], ["https://data.delijn.be/stops/509736", "https://data.delijn.be/stops/509738"], ["https://data.delijn.be/stops/202298", "https://data.delijn.be/stops/202725"], ["https://data.delijn.be/stops/303371", "https://data.delijn.be/stops/303803"], ["https://data.delijn.be/stops/505502", "https://data.delijn.be/stops/505605"], ["https://data.delijn.be/stops/303051", "https://data.delijn.be/stops/304531"], ["https://data.delijn.be/stops/301138", "https://data.delijn.be/stops/301165"], ["https://data.delijn.be/stops/500117", "https://data.delijn.be/stops/502271"], ["https://data.delijn.be/stops/200760", "https://data.delijn.be/stops/208304"], ["https://data.delijn.be/stops/402853", "https://data.delijn.be/stops/300435"], ["https://data.delijn.be/stops/206318", "https://data.delijn.be/stops/207871"], ["https://data.delijn.be/stops/401642", "https://data.delijn.be/stops/408660"], ["https://data.delijn.be/stops/300557", "https://data.delijn.be/stops/307865"], ["https://data.delijn.be/stops/508756", "https://data.delijn.be/stops/509971"], ["https://data.delijn.be/stops/407604", "https://data.delijn.be/stops/407607"], ["https://data.delijn.be/stops/202079", "https://data.delijn.be/stops/203118"], ["https://data.delijn.be/stops/108247", "https://data.delijn.be/stops/109557"], ["https://data.delijn.be/stops/200076", "https://data.delijn.be/stops/201076"], ["https://data.delijn.be/stops/400968", "https://data.delijn.be/stops/401250"], ["https://data.delijn.be/stops/405255", "https://data.delijn.be/stops/406726"], ["https://data.delijn.be/stops/409088", "https://data.delijn.be/stops/409089"], ["https://data.delijn.be/stops/101809", "https://data.delijn.be/stops/108121"], ["https://data.delijn.be/stops/509698", "https://data.delijn.be/stops/509699"], ["https://data.delijn.be/stops/101267", "https://data.delijn.be/stops/102113"], ["https://data.delijn.be/stops/503928", "https://data.delijn.be/stops/505254"], ["https://data.delijn.be/stops/407958", "https://data.delijn.be/stops/408014"], ["https://data.delijn.be/stops/503082", "https://data.delijn.be/stops/503504"], ["https://data.delijn.be/stops/407369", "https://data.delijn.be/stops/407395"], ["https://data.delijn.be/stops/203243", "https://data.delijn.be/stops/203485"], ["https://data.delijn.be/stops/405702", "https://data.delijn.be/stops/405703"], ["https://data.delijn.be/stops/305269", "https://data.delijn.be/stops/305887"], ["https://data.delijn.be/stops/102244", "https://data.delijn.be/stops/102247"], ["https://data.delijn.be/stops/203876", "https://data.delijn.be/stops/203877"], ["https://data.delijn.be/stops/209520", "https://data.delijn.be/stops/209709"], ["https://data.delijn.be/stops/203150", "https://data.delijn.be/stops/203170"], ["https://data.delijn.be/stops/304019", "https://data.delijn.be/stops/304107"], ["https://data.delijn.be/stops/408799", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/503429", "https://data.delijn.be/stops/508429"], ["https://data.delijn.be/stops/405209", "https://data.delijn.be/stops/405291"], ["https://data.delijn.be/stops/200958", "https://data.delijn.be/stops/201913"], ["https://data.delijn.be/stops/202527", "https://data.delijn.be/stops/203527"], ["https://data.delijn.be/stops/205240", "https://data.delijn.be/stops/205479"], ["https://data.delijn.be/stops/302610", "https://data.delijn.be/stops/302632"], ["https://data.delijn.be/stops/308610", "https://data.delijn.be/stops/308631"], ["https://data.delijn.be/stops/204746", "https://data.delijn.be/stops/205742"], ["https://data.delijn.be/stops/206794", "https://data.delijn.be/stops/208035"], ["https://data.delijn.be/stops/302463", "https://data.delijn.be/stops/308831"], ["https://data.delijn.be/stops/304534", "https://data.delijn.be/stops/307575"], ["https://data.delijn.be/stops/101832", "https://data.delijn.be/stops/108192"], ["https://data.delijn.be/stops/303713", "https://data.delijn.be/stops/303750"], ["https://data.delijn.be/stops/204300", "https://data.delijn.be/stops/204338"], ["https://data.delijn.be/stops/405118", "https://data.delijn.be/stops/408147"], ["https://data.delijn.be/stops/302234", "https://data.delijn.be/stops/302249"], ["https://data.delijn.be/stops/502946", "https://data.delijn.be/stops/503588"], ["https://data.delijn.be/stops/308503", "https://data.delijn.be/stops/308538"], ["https://data.delijn.be/stops/504997", "https://data.delijn.be/stops/508116"], ["https://data.delijn.be/stops/201636", "https://data.delijn.be/stops/211055"], ["https://data.delijn.be/stops/502618", "https://data.delijn.be/stops/507059"], ["https://data.delijn.be/stops/300202", "https://data.delijn.be/stops/308786"], ["https://data.delijn.be/stops/201276", "https://data.delijn.be/stops/210335"], ["https://data.delijn.be/stops/203106", "https://data.delijn.be/stops/203107"], ["https://data.delijn.be/stops/400443", "https://data.delijn.be/stops/405357"], ["https://data.delijn.be/stops/201865", "https://data.delijn.be/stops/210039"], ["https://data.delijn.be/stops/200409", "https://data.delijn.be/stops/201409"], ["https://data.delijn.be/stops/201861", "https://data.delijn.be/stops/203670"], ["https://data.delijn.be/stops/302595", "https://data.delijn.be/stops/302693"], ["https://data.delijn.be/stops/208359", "https://data.delijn.be/stops/208706"], ["https://data.delijn.be/stops/104846", "https://data.delijn.be/stops/104847"], ["https://data.delijn.be/stops/306067", "https://data.delijn.be/stops/307555"], ["https://data.delijn.be/stops/207884", "https://data.delijn.be/stops/207886"], ["https://data.delijn.be/stops/205063", "https://data.delijn.be/stops/205340"], ["https://data.delijn.be/stops/108738", "https://data.delijn.be/stops/108763"], ["https://data.delijn.be/stops/404019", "https://data.delijn.be/stops/410025"], ["https://data.delijn.be/stops/208770", "https://data.delijn.be/stops/208772"], ["https://data.delijn.be/stops/409239", "https://data.delijn.be/stops/409242"], ["https://data.delijn.be/stops/308518", "https://data.delijn.be/stops/308689"], ["https://data.delijn.be/stops/402413", "https://data.delijn.be/stops/402416"], ["https://data.delijn.be/stops/504371", "https://data.delijn.be/stops/504665"], ["https://data.delijn.be/stops/507017", "https://data.delijn.be/stops/507914"], ["https://data.delijn.be/stops/301510", "https://data.delijn.be/stops/301511"], ["https://data.delijn.be/stops/104093", "https://data.delijn.be/stops/405880"], ["https://data.delijn.be/stops/503056", "https://data.delijn.be/stops/509757"], ["https://data.delijn.be/stops/108867", "https://data.delijn.be/stops/108868"], ["https://data.delijn.be/stops/106469", "https://data.delijn.be/stops/106471"], ["https://data.delijn.be/stops/401743", "https://data.delijn.be/stops/401744"], ["https://data.delijn.be/stops/202658", "https://data.delijn.be/stops/202660"], ["https://data.delijn.be/stops/205769", "https://data.delijn.be/stops/205772"], ["https://data.delijn.be/stops/108614", "https://data.delijn.be/stops/108616"], ["https://data.delijn.be/stops/502331", "https://data.delijn.be/stops/507331"], ["https://data.delijn.be/stops/201030", "https://data.delijn.be/stops/201447"], ["https://data.delijn.be/stops/502227", "https://data.delijn.be/stops/507227"], ["https://data.delijn.be/stops/407176", "https://data.delijn.be/stops/407178"], ["https://data.delijn.be/stops/509439", "https://data.delijn.be/stops/509441"], ["https://data.delijn.be/stops/300123", "https://data.delijn.be/stops/306831"], ["https://data.delijn.be/stops/102395", "https://data.delijn.be/stops/103775"], ["https://data.delijn.be/stops/101012", "https://data.delijn.be/stops/103246"], ["https://data.delijn.be/stops/407382", "https://data.delijn.be/stops/407566"], ["https://data.delijn.be/stops/400866", "https://data.delijn.be/stops/400867"], ["https://data.delijn.be/stops/106834", "https://data.delijn.be/stops/106973"], ["https://data.delijn.be/stops/403465", "https://data.delijn.be/stops/403494"], ["https://data.delijn.be/stops/502762", "https://data.delijn.be/stops/505752"], ["https://data.delijn.be/stops/401183", "https://data.delijn.be/stops/401221"], ["https://data.delijn.be/stops/101822", "https://data.delijn.be/stops/107072"], ["https://data.delijn.be/stops/303350", "https://data.delijn.be/stops/303389"], ["https://data.delijn.be/stops/102566", "https://data.delijn.be/stops/105849"], ["https://data.delijn.be/stops/402492", "https://data.delijn.be/stops/402493"], ["https://data.delijn.be/stops/107601", "https://data.delijn.be/stops/109861"], ["https://data.delijn.be/stops/305499", "https://data.delijn.be/stops/307987"], ["https://data.delijn.be/stops/401670", "https://data.delijn.be/stops/401671"], ["https://data.delijn.be/stops/501518", "https://data.delijn.be/stops/506518"], ["https://data.delijn.be/stops/401132", "https://data.delijn.be/stops/401140"], ["https://data.delijn.be/stops/108608", "https://data.delijn.be/stops/300070"], ["https://data.delijn.be/stops/108155", "https://data.delijn.be/stops/109845"], ["https://data.delijn.be/stops/105674", "https://data.delijn.be/stops/105678"], ["https://data.delijn.be/stops/402404", "https://data.delijn.be/stops/402405"], ["https://data.delijn.be/stops/308029", "https://data.delijn.be/stops/308030"], ["https://data.delijn.be/stops/403738", "https://data.delijn.be/stops/403740"], ["https://data.delijn.be/stops/204708", "https://data.delijn.be/stops/205708"], ["https://data.delijn.be/stops/209286", "https://data.delijn.be/stops/219018"], ["https://data.delijn.be/stops/200514", "https://data.delijn.be/stops/201514"], ["https://data.delijn.be/stops/204080", "https://data.delijn.be/stops/204081"], ["https://data.delijn.be/stops/410222", "https://data.delijn.be/stops/410223"], ["https://data.delijn.be/stops/108372", "https://data.delijn.be/stops/108517"], ["https://data.delijn.be/stops/504863", "https://data.delijn.be/stops/508344"], ["https://data.delijn.be/stops/301170", "https://data.delijn.be/stops/303195"], ["https://data.delijn.be/stops/504359", "https://data.delijn.be/stops/509356"], ["https://data.delijn.be/stops/504609", "https://data.delijn.be/stops/509609"], ["https://data.delijn.be/stops/503289", "https://data.delijn.be/stops/508289"], ["https://data.delijn.be/stops/106926", "https://data.delijn.be/stops/106941"], ["https://data.delijn.be/stops/202898", "https://data.delijn.be/stops/210127"], ["https://data.delijn.be/stops/201946", "https://data.delijn.be/stops/202454"], ["https://data.delijn.be/stops/304980", "https://data.delijn.be/stops/308011"], ["https://data.delijn.be/stops/305304", "https://data.delijn.be/stops/305305"], ["https://data.delijn.be/stops/402442", "https://data.delijn.be/stops/409599"], ["https://data.delijn.be/stops/108102", "https://data.delijn.be/stops/108104"], ["https://data.delijn.be/stops/303047", "https://data.delijn.be/stops/304704"], ["https://data.delijn.be/stops/103249", "https://data.delijn.be/stops/107370"], ["https://data.delijn.be/stops/200136", "https://data.delijn.be/stops/201137"], ["https://data.delijn.be/stops/200924", "https://data.delijn.be/stops/200937"], ["https://data.delijn.be/stops/503557", "https://data.delijn.be/stops/503576"], ["https://data.delijn.be/stops/506218", "https://data.delijn.be/stops/506219"], ["https://data.delijn.be/stops/102065", "https://data.delijn.be/stops/104285"], ["https://data.delijn.be/stops/102599", "https://data.delijn.be/stops/107813"], ["https://data.delijn.be/stops/401779", "https://data.delijn.be/stops/401836"], ["https://data.delijn.be/stops/402549", "https://data.delijn.be/stops/404067"], ["https://data.delijn.be/stops/301459", "https://data.delijn.be/stops/301487"], ["https://data.delijn.be/stops/502096", "https://data.delijn.be/stops/502102"], ["https://data.delijn.be/stops/209044", "https://data.delijn.be/stops/209792"], ["https://data.delijn.be/stops/101854", "https://data.delijn.be/stops/107952"], ["https://data.delijn.be/stops/502454", "https://data.delijn.be/stops/507454"], ["https://data.delijn.be/stops/207133", "https://data.delijn.be/stops/207598"], ["https://data.delijn.be/stops/101534", "https://data.delijn.be/stops/108742"], ["https://data.delijn.be/stops/408761", "https://data.delijn.be/stops/408813"], ["https://data.delijn.be/stops/203631", "https://data.delijn.be/stops/204091"], ["https://data.delijn.be/stops/109693", "https://data.delijn.be/stops/109768"], ["https://data.delijn.be/stops/201230", "https://data.delijn.be/stops/201550"], ["https://data.delijn.be/stops/400592", "https://data.delijn.be/stops/400593"], ["https://data.delijn.be/stops/401024", "https://data.delijn.be/stops/407796"], ["https://data.delijn.be/stops/507413", "https://data.delijn.be/stops/507671"], ["https://data.delijn.be/stops/204507", "https://data.delijn.be/stops/205904"], ["https://data.delijn.be/stops/502570", "https://data.delijn.be/stops/507571"], ["https://data.delijn.be/stops/403446", "https://data.delijn.be/stops/409283"], ["https://data.delijn.be/stops/202733", "https://data.delijn.be/stops/203854"], ["https://data.delijn.be/stops/208156", "https://data.delijn.be/stops/208194"], ["https://data.delijn.be/stops/300810", "https://data.delijn.be/stops/300986"], ["https://data.delijn.be/stops/200803", "https://data.delijn.be/stops/201884"], ["https://data.delijn.be/stops/508362", "https://data.delijn.be/stops/508404"], ["https://data.delijn.be/stops/301184", "https://data.delijn.be/stops/304060"], ["https://data.delijn.be/stops/302036", "https://data.delijn.be/stops/308753"], ["https://data.delijn.be/stops/403597", "https://data.delijn.be/stops/407515"], ["https://data.delijn.be/stops/209588", "https://data.delijn.be/stops/307528"], ["https://data.delijn.be/stops/101110", "https://data.delijn.be/stops/102908"], ["https://data.delijn.be/stops/407030", "https://data.delijn.be/stops/409203"], ["https://data.delijn.be/stops/501482", "https://data.delijn.be/stops/501513"], ["https://data.delijn.be/stops/401256", "https://data.delijn.be/stops/401257"], ["https://data.delijn.be/stops/503470", "https://data.delijn.be/stops/508454"], ["https://data.delijn.be/stops/201112", "https://data.delijn.be/stops/203355"], ["https://data.delijn.be/stops/504828", "https://data.delijn.be/stops/509454"], ["https://data.delijn.be/stops/405050", "https://data.delijn.be/stops/405118"], ["https://data.delijn.be/stops/501077", "https://data.delijn.be/stops/506077"], ["https://data.delijn.be/stops/502132", "https://data.delijn.be/stops/502139"], ["https://data.delijn.be/stops/406904", "https://data.delijn.be/stops/406931"], ["https://data.delijn.be/stops/101174", "https://data.delijn.be/stops/104855"], ["https://data.delijn.be/stops/503443", "https://data.delijn.be/stops/508443"], ["https://data.delijn.be/stops/201044", "https://data.delijn.be/stops/201943"], ["https://data.delijn.be/stops/105538", "https://data.delijn.be/stops/106249"], ["https://data.delijn.be/stops/207675", "https://data.delijn.be/stops/209141"], ["https://data.delijn.be/stops/401602", "https://data.delijn.be/stops/408481"], ["https://data.delijn.be/stops/301405", "https://data.delijn.be/stops/308649"], ["https://data.delijn.be/stops/206511", "https://data.delijn.be/stops/207135"], ["https://data.delijn.be/stops/302204", "https://data.delijn.be/stops/302209"], ["https://data.delijn.be/stops/105726", "https://data.delijn.be/stops/107860"], ["https://data.delijn.be/stops/105357", "https://data.delijn.be/stops/105659"], ["https://data.delijn.be/stops/407166", "https://data.delijn.be/stops/407170"], ["https://data.delijn.be/stops/105734", "https://data.delijn.be/stops/109836"], ["https://data.delijn.be/stops/403285", "https://data.delijn.be/stops/409523"], ["https://data.delijn.be/stops/204702", "https://data.delijn.be/stops/205691"], ["https://data.delijn.be/stops/201304", "https://data.delijn.be/stops/202761"], ["https://data.delijn.be/stops/201809", "https://data.delijn.be/stops/201810"], ["https://data.delijn.be/stops/304946", "https://data.delijn.be/stops/304947"], ["https://data.delijn.be/stops/101418", "https://data.delijn.be/stops/106952"], ["https://data.delijn.be/stops/306922", "https://data.delijn.be/stops/306924"], ["https://data.delijn.be/stops/206656", "https://data.delijn.be/stops/207657"], ["https://data.delijn.be/stops/101655", "https://data.delijn.be/stops/104866"], ["https://data.delijn.be/stops/505686", "https://data.delijn.be/stops/507064"], ["https://data.delijn.be/stops/107399", "https://data.delijn.be/stops/107402"], ["https://data.delijn.be/stops/304128", "https://data.delijn.be/stops/307581"], ["https://data.delijn.be/stops/503079", "https://data.delijn.be/stops/508079"], ["https://data.delijn.be/stops/403632", "https://data.delijn.be/stops/403641"], ["https://data.delijn.be/stops/102681", "https://data.delijn.be/stops/102830"], ["https://data.delijn.be/stops/505390", "https://data.delijn.be/stops/505933"], ["https://data.delijn.be/stops/507399", "https://data.delijn.be/stops/507404"], ["https://data.delijn.be/stops/206103", "https://data.delijn.be/stops/207103"], ["https://data.delijn.be/stops/406652", "https://data.delijn.be/stops/406657"], ["https://data.delijn.be/stops/408528", "https://data.delijn.be/stops/408529"], ["https://data.delijn.be/stops/200603", "https://data.delijn.be/stops/200633"], ["https://data.delijn.be/stops/405257", "https://data.delijn.be/stops/405265"], ["https://data.delijn.be/stops/400541", "https://data.delijn.be/stops/400544"], ["https://data.delijn.be/stops/101274", "https://data.delijn.be/stops/104210"], ["https://data.delijn.be/stops/104285", "https://data.delijn.be/stops/104635"], ["https://data.delijn.be/stops/206430", "https://data.delijn.be/stops/207430"], ["https://data.delijn.be/stops/406210", "https://data.delijn.be/stops/406211"], ["https://data.delijn.be/stops/301354", "https://data.delijn.be/stops/301355"], ["https://data.delijn.be/stops/301857", "https://data.delijn.be/stops/301863"], ["https://data.delijn.be/stops/408079", "https://data.delijn.be/stops/305705"], ["https://data.delijn.be/stops/209591", "https://data.delijn.be/stops/307024"], ["https://data.delijn.be/stops/201779", "https://data.delijn.be/stops/208855"], ["https://data.delijn.be/stops/202440", "https://data.delijn.be/stops/203441"], ["https://data.delijn.be/stops/107143", "https://data.delijn.be/stops/107146"], ["https://data.delijn.be/stops/302895", "https://data.delijn.be/stops/302898"], ["https://data.delijn.be/stops/306926", "https://data.delijn.be/stops/308725"], ["https://data.delijn.be/stops/107330", "https://data.delijn.be/stops/107335"], ["https://data.delijn.be/stops/210069", "https://data.delijn.be/stops/210072"], ["https://data.delijn.be/stops/300375", "https://data.delijn.be/stops/300382"], ["https://data.delijn.be/stops/103253", "https://data.delijn.be/stops/105440"], ["https://data.delijn.be/stops/202870", "https://data.delijn.be/stops/203878"], ["https://data.delijn.be/stops/504940", "https://data.delijn.be/stops/507015"], ["https://data.delijn.be/stops/401424", "https://data.delijn.be/stops/401458"], ["https://data.delijn.be/stops/500555", "https://data.delijn.be/stops/502213"], ["https://data.delijn.be/stops/504481", "https://data.delijn.be/stops/509014"], ["https://data.delijn.be/stops/503436", "https://data.delijn.be/stops/508356"], ["https://data.delijn.be/stops/304432", "https://data.delijn.be/stops/304455"], ["https://data.delijn.be/stops/202170", "https://data.delijn.be/stops/202171"], ["https://data.delijn.be/stops/204071", "https://data.delijn.be/stops/205097"], ["https://data.delijn.be/stops/105992", "https://data.delijn.be/stops/105993"], ["https://data.delijn.be/stops/504624", "https://data.delijn.be/stops/509617"], ["https://data.delijn.be/stops/108528", "https://data.delijn.be/stops/108529"], ["https://data.delijn.be/stops/105641", "https://data.delijn.be/stops/105799"], ["https://data.delijn.be/stops/200810", "https://data.delijn.be/stops/202053"], ["https://data.delijn.be/stops/103482", "https://data.delijn.be/stops/103483"], ["https://data.delijn.be/stops/205583", "https://data.delijn.be/stops/214007"], ["https://data.delijn.be/stops/101503", "https://data.delijn.be/stops/109346"], ["https://data.delijn.be/stops/208288", "https://data.delijn.be/stops/208289"], ["https://data.delijn.be/stops/501205", "https://data.delijn.be/stops/501372"], ["https://data.delijn.be/stops/507328", "https://data.delijn.be/stops/507331"], ["https://data.delijn.be/stops/304884", "https://data.delijn.be/stops/305504"], ["https://data.delijn.be/stops/101492", "https://data.delijn.be/stops/101957"], ["https://data.delijn.be/stops/301493", "https://data.delijn.be/stops/301498"], ["https://data.delijn.be/stops/401575", "https://data.delijn.be/stops/401576"], ["https://data.delijn.be/stops/502511", "https://data.delijn.be/stops/507509"], ["https://data.delijn.be/stops/206067", "https://data.delijn.be/stops/207074"], ["https://data.delijn.be/stops/404213", "https://data.delijn.be/stops/404228"], ["https://data.delijn.be/stops/501044", "https://data.delijn.be/stops/506033"], ["https://data.delijn.be/stops/505540", "https://data.delijn.be/stops/509941"], ["https://data.delijn.be/stops/501099", "https://data.delijn.be/stops/505152"], ["https://data.delijn.be/stops/206097", "https://data.delijn.be/stops/206724"], ["https://data.delijn.be/stops/503920", "https://data.delijn.be/stops/508709"], ["https://data.delijn.be/stops/103594", "https://data.delijn.be/stops/109124"], ["https://data.delijn.be/stops/502394", "https://data.delijn.be/stops/502621"], ["https://data.delijn.be/stops/504965", "https://data.delijn.be/stops/508766"], ["https://data.delijn.be/stops/200877", "https://data.delijn.be/stops/202543"], ["https://data.delijn.be/stops/204637", "https://data.delijn.be/stops/205637"], ["https://data.delijn.be/stops/202856", "https://data.delijn.be/stops/208714"], ["https://data.delijn.be/stops/403093", "https://data.delijn.be/stops/403126"], ["https://data.delijn.be/stops/106811", "https://data.delijn.be/stops/106813"], ["https://data.delijn.be/stops/206030", "https://data.delijn.be/stops/207801"], ["https://data.delijn.be/stops/509873", "https://data.delijn.be/stops/509937"], ["https://data.delijn.be/stops/407730", "https://data.delijn.be/stops/407735"], ["https://data.delijn.be/stops/206991", "https://data.delijn.be/stops/207505"], ["https://data.delijn.be/stops/202242", "https://data.delijn.be/stops/202617"], ["https://data.delijn.be/stops/109367", "https://data.delijn.be/stops/109368"], ["https://data.delijn.be/stops/406416", "https://data.delijn.be/stops/406417"], ["https://data.delijn.be/stops/103958", "https://data.delijn.be/stops/105250"], ["https://data.delijn.be/stops/102427", "https://data.delijn.be/stops/102428"], ["https://data.delijn.be/stops/303765", "https://data.delijn.be/stops/303766"], ["https://data.delijn.be/stops/400071", "https://data.delijn.be/stops/403545"], ["https://data.delijn.be/stops/103094", "https://data.delijn.be/stops/109121"], ["https://data.delijn.be/stops/400057", "https://data.delijn.be/stops/400101"], ["https://data.delijn.be/stops/504584", "https://data.delijn.be/stops/505535"], ["https://data.delijn.be/stops/401790", "https://data.delijn.be/stops/401791"], ["https://data.delijn.be/stops/204657", "https://data.delijn.be/stops/205656"], ["https://data.delijn.be/stops/504013", "https://data.delijn.be/stops/504674"], ["https://data.delijn.be/stops/206772", "https://data.delijn.be/stops/208031"], ["https://data.delijn.be/stops/401470", "https://data.delijn.be/stops/401547"], ["https://data.delijn.be/stops/208104", "https://data.delijn.be/stops/209104"], ["https://data.delijn.be/stops/405448", "https://data.delijn.be/stops/405449"], ["https://data.delijn.be/stops/402860", "https://data.delijn.be/stops/406570"], ["https://data.delijn.be/stops/108406", "https://data.delijn.be/stops/108407"], ["https://data.delijn.be/stops/401795", "https://data.delijn.be/stops/401812"], ["https://data.delijn.be/stops/208287", "https://data.delijn.be/stops/209247"], ["https://data.delijn.be/stops/205975", "https://data.delijn.be/stops/209746"], ["https://data.delijn.be/stops/304202", "https://data.delijn.be/stops/304203"], ["https://data.delijn.be/stops/505582", "https://data.delijn.be/stops/505663"], ["https://data.delijn.be/stops/204156", "https://data.delijn.be/stops/204157"], ["https://data.delijn.be/stops/206217", "https://data.delijn.be/stops/206806"], ["https://data.delijn.be/stops/103633", "https://data.delijn.be/stops/107165"], ["https://data.delijn.be/stops/400985", "https://data.delijn.be/stops/400992"], ["https://data.delijn.be/stops/303036", "https://data.delijn.be/stops/303101"], ["https://data.delijn.be/stops/406787", "https://data.delijn.be/stops/406805"], ["https://data.delijn.be/stops/102548", "https://data.delijn.be/stops/102550"], ["https://data.delijn.be/stops/503381", "https://data.delijn.be/stops/503395"], ["https://data.delijn.be/stops/208043", "https://data.delijn.be/stops/209043"], ["https://data.delijn.be/stops/400078", "https://data.delijn.be/stops/405130"], ["https://data.delijn.be/stops/502028", "https://data.delijn.be/stops/502659"], ["https://data.delijn.be/stops/503265", "https://data.delijn.be/stops/503945"], ["https://data.delijn.be/stops/202342", "https://data.delijn.be/stops/202448"], ["https://data.delijn.be/stops/503432", "https://data.delijn.be/stops/509767"], ["https://data.delijn.be/stops/206810", "https://data.delijn.be/stops/207810"], ["https://data.delijn.be/stops/502187", "https://data.delijn.be/stops/507189"], ["https://data.delijn.be/stops/302967", "https://data.delijn.be/stops/303001"], ["https://data.delijn.be/stops/409878", "https://data.delijn.be/stops/409879"], ["https://data.delijn.be/stops/404870", "https://data.delijn.be/stops/404871"], ["https://data.delijn.be/stops/300542", "https://data.delijn.be/stops/303972"], ["https://data.delijn.be/stops/402330", "https://data.delijn.be/stops/402331"], ["https://data.delijn.be/stops/206245", "https://data.delijn.be/stops/207245"], ["https://data.delijn.be/stops/103087", "https://data.delijn.be/stops/104572"], ["https://data.delijn.be/stops/501257", "https://data.delijn.be/stops/506257"], ["https://data.delijn.be/stops/404258", "https://data.delijn.be/stops/409256"], ["https://data.delijn.be/stops/405156", "https://data.delijn.be/stops/405219"], ["https://data.delijn.be/stops/209293", "https://data.delijn.be/stops/209791"], ["https://data.delijn.be/stops/101755", "https://data.delijn.be/stops/105752"], ["https://data.delijn.be/stops/502596", "https://data.delijn.be/stops/502597"], ["https://data.delijn.be/stops/206546", "https://data.delijn.be/stops/207547"], ["https://data.delijn.be/stops/202748", "https://data.delijn.be/stops/203748"], ["https://data.delijn.be/stops/504174", "https://data.delijn.be/stops/509174"], ["https://data.delijn.be/stops/201608", "https://data.delijn.be/stops/202770"], ["https://data.delijn.be/stops/408197", "https://data.delijn.be/stops/408198"], ["https://data.delijn.be/stops/407272", "https://data.delijn.be/stops/407273"], ["https://data.delijn.be/stops/407634", "https://data.delijn.be/stops/407635"], ["https://data.delijn.be/stops/406378", "https://data.delijn.be/stops/406379"], ["https://data.delijn.be/stops/502675", "https://data.delijn.be/stops/507357"], ["https://data.delijn.be/stops/102385", "https://data.delijn.be/stops/103106"], ["https://data.delijn.be/stops/403482", "https://data.delijn.be/stops/410012"], ["https://data.delijn.be/stops/109034", "https://data.delijn.be/stops/109036"], ["https://data.delijn.be/stops/404660", "https://data.delijn.be/stops/404667"], ["https://data.delijn.be/stops/101591", "https://data.delijn.be/stops/101729"], ["https://data.delijn.be/stops/300962", "https://data.delijn.be/stops/300963"], ["https://data.delijn.be/stops/408507", "https://data.delijn.be/stops/408563"], ["https://data.delijn.be/stops/503948", "https://data.delijn.be/stops/508812"], ["https://data.delijn.be/stops/302615", "https://data.delijn.be/stops/302627"], ["https://data.delijn.be/stops/108472", "https://data.delijn.be/stops/109085"], ["https://data.delijn.be/stops/301729", "https://data.delijn.be/stops/308422"], ["https://data.delijn.be/stops/401795", "https://data.delijn.be/stops/406354"], ["https://data.delijn.be/stops/503065", "https://data.delijn.be/stops/508065"], ["https://data.delijn.be/stops/503845", "https://data.delijn.be/stops/505226"], ["https://data.delijn.be/stops/501108", "https://data.delijn.be/stops/501503"], ["https://data.delijn.be/stops/400884", "https://data.delijn.be/stops/400887"], ["https://data.delijn.be/stops/503807", "https://data.delijn.be/stops/508802"], ["https://data.delijn.be/stops/204175", "https://data.delijn.be/stops/205241"], ["https://data.delijn.be/stops/208308", "https://data.delijn.be/stops/209308"], ["https://data.delijn.be/stops/105826", "https://data.delijn.be/stops/105827"], ["https://data.delijn.be/stops/405052", "https://data.delijn.be/stops/405055"], ["https://data.delijn.be/stops/202602", "https://data.delijn.be/stops/203602"], ["https://data.delijn.be/stops/208129", "https://data.delijn.be/stops/209129"], ["https://data.delijn.be/stops/106427", "https://data.delijn.be/stops/106559"], ["https://data.delijn.be/stops/302321", "https://data.delijn.be/stops/302324"], ["https://data.delijn.be/stops/505203", "https://data.delijn.be/stops/507003"], ["https://data.delijn.be/stops/108994", "https://data.delijn.be/stops/108996"], ["https://data.delijn.be/stops/502498", "https://data.delijn.be/stops/507498"], ["https://data.delijn.be/stops/204061", "https://data.delijn.be/stops/205062"], ["https://data.delijn.be/stops/209603", "https://data.delijn.be/stops/209604"], ["https://data.delijn.be/stops/506123", "https://data.delijn.be/stops/506126"], ["https://data.delijn.be/stops/407016", "https://data.delijn.be/stops/407049"], ["https://data.delijn.be/stops/108967", "https://data.delijn.be/stops/401931"], ["https://data.delijn.be/stops/504024", "https://data.delijn.be/stops/504202"], ["https://data.delijn.be/stops/206375", "https://data.delijn.be/stops/207375"], ["https://data.delijn.be/stops/503084", "https://data.delijn.be/stops/508631"], ["https://data.delijn.be/stops/208344", "https://data.delijn.be/stops/219031"], ["https://data.delijn.be/stops/105039", "https://data.delijn.be/stops/105042"], ["https://data.delijn.be/stops/206380", "https://data.delijn.be/stops/207381"], ["https://data.delijn.be/stops/200709", "https://data.delijn.be/stops/200723"], ["https://data.delijn.be/stops/502216", "https://data.delijn.be/stops/502219"], ["https://data.delijn.be/stops/208325", "https://data.delijn.be/stops/209325"], ["https://data.delijn.be/stops/200724", "https://data.delijn.be/stops/205559"], ["https://data.delijn.be/stops/504326", "https://data.delijn.be/stops/504382"], ["https://data.delijn.be/stops/401278", "https://data.delijn.be/stops/410180"], ["https://data.delijn.be/stops/407860", "https://data.delijn.be/stops/306054"], ["https://data.delijn.be/stops/402738", "https://data.delijn.be/stops/402739"], ["https://data.delijn.be/stops/503267", "https://data.delijn.be/stops/503271"], ["https://data.delijn.be/stops/404944", "https://data.delijn.be/stops/404957"], ["https://data.delijn.be/stops/204645", "https://data.delijn.be/stops/205646"], ["https://data.delijn.be/stops/205139", "https://data.delijn.be/stops/205147"], ["https://data.delijn.be/stops/109586", "https://data.delijn.be/stops/109659"], ["https://data.delijn.be/stops/405719", "https://data.delijn.be/stops/410139"], ["https://data.delijn.be/stops/207164", "https://data.delijn.be/stops/303372"], ["https://data.delijn.be/stops/104035", "https://data.delijn.be/stops/104145"], ["https://data.delijn.be/stops/406350", "https://data.delijn.be/stops/408870"], ["https://data.delijn.be/stops/207586", "https://data.delijn.be/stops/208951"], ["https://data.delijn.be/stops/206238", "https://data.delijn.be/stops/207198"], ["https://data.delijn.be/stops/102946", "https://data.delijn.be/stops/109102"], ["https://data.delijn.be/stops/201904", "https://data.delijn.be/stops/202511"], ["https://data.delijn.be/stops/300623", "https://data.delijn.be/stops/300629"], ["https://data.delijn.be/stops/408543", "https://data.delijn.be/stops/408705"], ["https://data.delijn.be/stops/303933", "https://data.delijn.be/stops/304634"], ["https://data.delijn.be/stops/402574", "https://data.delijn.be/stops/408446"], ["https://data.delijn.be/stops/408316", "https://data.delijn.be/stops/408340"], ["https://data.delijn.be/stops/405841", "https://data.delijn.be/stops/405882"], ["https://data.delijn.be/stops/407677", "https://data.delijn.be/stops/408699"], ["https://data.delijn.be/stops/507462", "https://data.delijn.be/stops/507588"], ["https://data.delijn.be/stops/401002", "https://data.delijn.be/stops/401007"], ["https://data.delijn.be/stops/107241", "https://data.delijn.be/stops/107243"], ["https://data.delijn.be/stops/507396", "https://data.delijn.be/stops/507399"], ["https://data.delijn.be/stops/406477", "https://data.delijn.be/stops/407513"], ["https://data.delijn.be/stops/208661", "https://data.delijn.be/stops/208697"], ["https://data.delijn.be/stops/403395", "https://data.delijn.be/stops/403830"], ["https://data.delijn.be/stops/505975", "https://data.delijn.be/stops/509434"], ["https://data.delijn.be/stops/303024", "https://data.delijn.be/stops/303087"], ["https://data.delijn.be/stops/108310", "https://data.delijn.be/stops/108930"], ["https://data.delijn.be/stops/300245", "https://data.delijn.be/stops/305402"], ["https://data.delijn.be/stops/306903", "https://data.delijn.be/stops/308721"], ["https://data.delijn.be/stops/202690", "https://data.delijn.be/stops/203093"], ["https://data.delijn.be/stops/500116", "https://data.delijn.be/stops/505671"], ["https://data.delijn.be/stops/401778", "https://data.delijn.be/stops/401779"], ["https://data.delijn.be/stops/300057", "https://data.delijn.be/stops/300058"], ["https://data.delijn.be/stops/304143", "https://data.delijn.be/stops/304145"], ["https://data.delijn.be/stops/102086", "https://data.delijn.be/stops/108861"], ["https://data.delijn.be/stops/501229", "https://data.delijn.be/stops/501419"], ["https://data.delijn.be/stops/106695", "https://data.delijn.be/stops/106697"], ["https://data.delijn.be/stops/505954", "https://data.delijn.be/stops/508283"], ["https://data.delijn.be/stops/409721", "https://data.delijn.be/stops/409725"], ["https://data.delijn.be/stops/107066", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/201736", "https://data.delijn.be/stops/210108"], ["https://data.delijn.be/stops/502207", "https://data.delijn.be/stops/505844"], ["https://data.delijn.be/stops/109260", "https://data.delijn.be/stops/109261"], ["https://data.delijn.be/stops/203323", "https://data.delijn.be/stops/209640"], ["https://data.delijn.be/stops/200255", "https://data.delijn.be/stops/203562"], ["https://data.delijn.be/stops/102733", "https://data.delijn.be/stops/107065"], ["https://data.delijn.be/stops/302957", "https://data.delijn.be/stops/302959"], ["https://data.delijn.be/stops/101839", "https://data.delijn.be/stops/107620"], ["https://data.delijn.be/stops/502228", "https://data.delijn.be/stops/502229"], ["https://data.delijn.be/stops/407896", "https://data.delijn.be/stops/408023"], ["https://data.delijn.be/stops/504044", "https://data.delijn.be/stops/504047"], ["https://data.delijn.be/stops/202816", "https://data.delijn.be/stops/203461"], ["https://data.delijn.be/stops/203365", "https://data.delijn.be/stops/203997"], ["https://data.delijn.be/stops/207866", "https://data.delijn.be/stops/208748"], ["https://data.delijn.be/stops/408571", "https://data.delijn.be/stops/408817"], ["https://data.delijn.be/stops/403759", "https://data.delijn.be/stops/403781"], ["https://data.delijn.be/stops/304670", "https://data.delijn.be/stops/304677"], ["https://data.delijn.be/stops/103596", "https://data.delijn.be/stops/103604"], ["https://data.delijn.be/stops/303119", "https://data.delijn.be/stops/306316"], ["https://data.delijn.be/stops/103673", "https://data.delijn.be/stops/106255"], ["https://data.delijn.be/stops/504087", "https://data.delijn.be/stops/509087"], ["https://data.delijn.be/stops/207322", "https://data.delijn.be/stops/207914"], ["https://data.delijn.be/stops/506464", "https://data.delijn.be/stops/509797"], ["https://data.delijn.be/stops/400551", "https://data.delijn.be/stops/400630"], ["https://data.delijn.be/stops/101293", "https://data.delijn.be/stops/105387"], ["https://data.delijn.be/stops/504052", "https://data.delijn.be/stops/509052"], ["https://data.delijn.be/stops/204392", "https://data.delijn.be/stops/205415"], ["https://data.delijn.be/stops/106983", "https://data.delijn.be/stops/106985"], ["https://data.delijn.be/stops/508322", "https://data.delijn.be/stops/508324"], ["https://data.delijn.be/stops/102874", "https://data.delijn.be/stops/104990"], ["https://data.delijn.be/stops/305771", "https://data.delijn.be/stops/305773"], ["https://data.delijn.be/stops/106101", "https://data.delijn.be/stops/106103"], ["https://data.delijn.be/stops/504171", "https://data.delijn.be/stops/509354"], ["https://data.delijn.be/stops/502082", "https://data.delijn.be/stops/507079"], ["https://data.delijn.be/stops/108271", "https://data.delijn.be/stops/108273"], ["https://data.delijn.be/stops/305057", "https://data.delijn.be/stops/306931"], ["https://data.delijn.be/stops/303582", "https://data.delijn.be/stops/306396"], ["https://data.delijn.be/stops/206732", "https://data.delijn.be/stops/301673"], ["https://data.delijn.be/stops/403437", "https://data.delijn.be/stops/403498"], ["https://data.delijn.be/stops/505211", "https://data.delijn.be/stops/509402"], ["https://data.delijn.be/stops/104261", "https://data.delijn.be/stops/104262"], ["https://data.delijn.be/stops/408428", "https://data.delijn.be/stops/408665"], ["https://data.delijn.be/stops/502455", "https://data.delijn.be/stops/502820"], ["https://data.delijn.be/stops/207483", "https://data.delijn.be/stops/207823"], ["https://data.delijn.be/stops/300213", "https://data.delijn.be/stops/303735"], ["https://data.delijn.be/stops/206181", "https://data.delijn.be/stops/207181"], ["https://data.delijn.be/stops/401500", "https://data.delijn.be/stops/406808"], ["https://data.delijn.be/stops/407850", "https://data.delijn.be/stops/407908"], ["https://data.delijn.be/stops/407831", "https://data.delijn.be/stops/407835"], ["https://data.delijn.be/stops/202523", "https://data.delijn.be/stops/203523"], ["https://data.delijn.be/stops/404772", "https://data.delijn.be/stops/404776"], ["https://data.delijn.be/stops/409568", "https://data.delijn.be/stops/409573"], ["https://data.delijn.be/stops/503391", "https://data.delijn.be/stops/508068"], ["https://data.delijn.be/stops/302771", "https://data.delijn.be/stops/308119"], ["https://data.delijn.be/stops/403921", "https://data.delijn.be/stops/404014"], ["https://data.delijn.be/stops/106959", "https://data.delijn.be/stops/109512"], ["https://data.delijn.be/stops/405816", "https://data.delijn.be/stops/409712"], ["https://data.delijn.be/stops/300572", "https://data.delijn.be/stops/300613"], ["https://data.delijn.be/stops/407372", "https://data.delijn.be/stops/407471"], ["https://data.delijn.be/stops/502188", "https://data.delijn.be/stops/507321"], ["https://data.delijn.be/stops/507307", "https://data.delijn.be/stops/507309"], ["https://data.delijn.be/stops/107227", "https://data.delijn.be/stops/109900"], ["https://data.delijn.be/stops/401448", "https://data.delijn.be/stops/401547"], ["https://data.delijn.be/stops/508715", "https://data.delijn.be/stops/509871"], ["https://data.delijn.be/stops/200271", "https://data.delijn.be/stops/201372"], ["https://data.delijn.be/stops/104931", "https://data.delijn.be/stops/107838"], ["https://data.delijn.be/stops/402732", "https://data.delijn.be/stops/402733"], ["https://data.delijn.be/stops/307616", "https://data.delijn.be/stops/307618"], ["https://data.delijn.be/stops/206623", "https://data.delijn.be/stops/206759"], ["https://data.delijn.be/stops/406523", "https://data.delijn.be/stops/408477"], ["https://data.delijn.be/stops/503522", "https://data.delijn.be/stops/508522"], ["https://data.delijn.be/stops/303559", "https://data.delijn.be/stops/305559"], ["https://data.delijn.be/stops/201548", "https://data.delijn.be/stops/210528"], ["https://data.delijn.be/stops/108509", "https://data.delijn.be/stops/108510"], ["https://data.delijn.be/stops/505404", "https://data.delijn.be/stops/506077"], ["https://data.delijn.be/stops/202703", "https://data.delijn.be/stops/203705"], ["https://data.delijn.be/stops/401257", "https://data.delijn.be/stops/401339"], ["https://data.delijn.be/stops/505302", "https://data.delijn.be/stops/509597"], ["https://data.delijn.be/stops/503864", "https://data.delijn.be/stops/507957"], ["https://data.delijn.be/stops/406725", "https://data.delijn.be/stops/408367"], ["https://data.delijn.be/stops/405978", "https://data.delijn.be/stops/405979"], ["https://data.delijn.be/stops/105191", "https://data.delijn.be/stops/105193"], ["https://data.delijn.be/stops/501198", "https://data.delijn.be/stops/501528"], ["https://data.delijn.be/stops/405604", "https://data.delijn.be/stops/407797"], ["https://data.delijn.be/stops/302908", "https://data.delijn.be/stops/304318"], ["https://data.delijn.be/stops/302535", "https://data.delijn.be/stops/302546"], ["https://data.delijn.be/stops/106130", "https://data.delijn.be/stops/106131"], ["https://data.delijn.be/stops/401650", "https://data.delijn.be/stops/405392"], ["https://data.delijn.be/stops/200115", "https://data.delijn.be/stops/201115"], ["https://data.delijn.be/stops/103821", "https://data.delijn.be/stops/104215"], ["https://data.delijn.be/stops/403702", "https://data.delijn.be/stops/403728"], ["https://data.delijn.be/stops/405070", "https://data.delijn.be/stops/405112"], ["https://data.delijn.be/stops/103721", "https://data.delijn.be/stops/305816"], ["https://data.delijn.be/stops/503741", "https://data.delijn.be/stops/508703"], ["https://data.delijn.be/stops/408074", "https://data.delijn.be/stops/408075"], ["https://data.delijn.be/stops/106339", "https://data.delijn.be/stops/106341"], ["https://data.delijn.be/stops/410023", "https://data.delijn.be/stops/410024"], ["https://data.delijn.be/stops/503785", "https://data.delijn.be/stops/505272"], ["https://data.delijn.be/stops/306170", "https://data.delijn.be/stops/306171"], ["https://data.delijn.be/stops/503307", "https://data.delijn.be/stops/504859"], ["https://data.delijn.be/stops/404269", "https://data.delijn.be/stops/405551"], ["https://data.delijn.be/stops/400598", "https://data.delijn.be/stops/400599"], ["https://data.delijn.be/stops/300347", "https://data.delijn.be/stops/300399"], ["https://data.delijn.be/stops/306291", "https://data.delijn.be/stops/306292"], ["https://data.delijn.be/stops/302633", "https://data.delijn.be/stops/306044"], ["https://data.delijn.be/stops/303184", "https://data.delijn.be/stops/303197"], ["https://data.delijn.be/stops/200573", "https://data.delijn.be/stops/200962"], ["https://data.delijn.be/stops/300938", "https://data.delijn.be/stops/305914"], ["https://data.delijn.be/stops/304631", "https://data.delijn.be/stops/307819"], ["https://data.delijn.be/stops/103990", "https://data.delijn.be/stops/104635"], ["https://data.delijn.be/stops/104503", "https://data.delijn.be/stops/107930"], ["https://data.delijn.be/stops/308229", "https://data.delijn.be/stops/308233"], ["https://data.delijn.be/stops/506146", "https://data.delijn.be/stops/506644"], ["https://data.delijn.be/stops/105261", "https://data.delijn.be/stops/109975"], ["https://data.delijn.be/stops/302970", "https://data.delijn.be/stops/306713"], ["https://data.delijn.be/stops/202343", "https://data.delijn.be/stops/203343"], ["https://data.delijn.be/stops/102050", "https://data.delijn.be/stops/108030"], ["https://data.delijn.be/stops/505123", "https://data.delijn.be/stops/505124"], ["https://data.delijn.be/stops/106155", "https://data.delijn.be/stops/106156"], ["https://data.delijn.be/stops/409550", "https://data.delijn.be/stops/409556"], ["https://data.delijn.be/stops/406355", "https://data.delijn.be/stops/410044"], ["https://data.delijn.be/stops/503841", "https://data.delijn.be/stops/505848"], ["https://data.delijn.be/stops/308773", "https://data.delijn.be/stops/308774"], ["https://data.delijn.be/stops/407192", "https://data.delijn.be/stops/407193"], ["https://data.delijn.be/stops/209065", "https://data.delijn.be/stops/209066"], ["https://data.delijn.be/stops/502492", "https://data.delijn.be/stops/508339"], ["https://data.delijn.be/stops/302770", "https://data.delijn.be/stops/302781"], ["https://data.delijn.be/stops/406262", "https://data.delijn.be/stops/406266"], ["https://data.delijn.be/stops/300553", "https://data.delijn.be/stops/300555"], ["https://data.delijn.be/stops/300676", "https://data.delijn.be/stops/306745"], ["https://data.delijn.be/stops/205327", "https://data.delijn.be/stops/205495"], ["https://data.delijn.be/stops/405440", "https://data.delijn.be/stops/405458"], ["https://data.delijn.be/stops/405986", "https://data.delijn.be/stops/406134"], ["https://data.delijn.be/stops/302564", "https://data.delijn.be/stops/302596"], ["https://data.delijn.be/stops/106590", "https://data.delijn.be/stops/107279"], ["https://data.delijn.be/stops/106913", "https://data.delijn.be/stops/107263"], ["https://data.delijn.be/stops/306898", "https://data.delijn.be/stops/308124"], ["https://data.delijn.be/stops/402123", "https://data.delijn.be/stops/405490"], ["https://data.delijn.be/stops/104897", "https://data.delijn.be/stops/105314"], ["https://data.delijn.be/stops/303270", "https://data.delijn.be/stops/305725"], ["https://data.delijn.be/stops/103914", "https://data.delijn.be/stops/107241"], ["https://data.delijn.be/stops/504871", "https://data.delijn.be/stops/508719"], ["https://data.delijn.be/stops/303479", "https://data.delijn.be/stops/303508"], ["https://data.delijn.be/stops/105238", "https://data.delijn.be/stops/105839"], ["https://data.delijn.be/stops/305155", "https://data.delijn.be/stops/307101"], ["https://data.delijn.be/stops/302270", "https://data.delijn.be/stops/302979"], ["https://data.delijn.be/stops/504975", "https://data.delijn.be/stops/505556"], ["https://data.delijn.be/stops/301462", "https://data.delijn.be/stops/301493"], ["https://data.delijn.be/stops/406265", "https://data.delijn.be/stops/406426"], ["https://data.delijn.be/stops/201711", "https://data.delijn.be/stops/202809"], ["https://data.delijn.be/stops/206532", "https://data.delijn.be/stops/206533"], ["https://data.delijn.be/stops/300702", "https://data.delijn.be/stops/306943"], ["https://data.delijn.be/stops/301323", "https://data.delijn.be/stops/306190"], ["https://data.delijn.be/stops/409698", "https://data.delijn.be/stops/409700"], ["https://data.delijn.be/stops/204320", "https://data.delijn.be/stops/205362"], ["https://data.delijn.be/stops/504281", "https://data.delijn.be/stops/509616"], ["https://data.delijn.be/stops/405039", "https://data.delijn.be/stops/405056"], ["https://data.delijn.be/stops/504392", "https://data.delijn.be/stops/509712"], ["https://data.delijn.be/stops/101963", "https://data.delijn.be/stops/108766"], ["https://data.delijn.be/stops/401775", "https://data.delijn.be/stops/401785"], ["https://data.delijn.be/stops/405035", "https://data.delijn.be/stops/408373"], ["https://data.delijn.be/stops/308118", "https://data.delijn.be/stops/308121"], ["https://data.delijn.be/stops/201263", "https://data.delijn.be/stops/202546"], ["https://data.delijn.be/stops/301362", "https://data.delijn.be/stops/305530"], ["https://data.delijn.be/stops/300554", "https://data.delijn.be/stops/307859"], ["https://data.delijn.be/stops/202973", "https://data.delijn.be/stops/203166"], ["https://data.delijn.be/stops/406519", "https://data.delijn.be/stops/408712"], ["https://data.delijn.be/stops/206347", "https://data.delijn.be/stops/215809"], ["https://data.delijn.be/stops/500873", "https://data.delijn.be/stops/505208"], ["https://data.delijn.be/stops/102204", "https://data.delijn.be/stops/105643"], ["https://data.delijn.be/stops/406246", "https://data.delijn.be/stops/406291"], ["https://data.delijn.be/stops/401386", "https://data.delijn.be/stops/410175"], ["https://data.delijn.be/stops/403943", "https://data.delijn.be/stops/403951"], ["https://data.delijn.be/stops/202264", "https://data.delijn.be/stops/203264"], ["https://data.delijn.be/stops/106084", "https://data.delijn.be/stops/106135"], ["https://data.delijn.be/stops/508914", "https://data.delijn.be/stops/508917"], ["https://data.delijn.be/stops/105407", "https://data.delijn.be/stops/105833"], ["https://data.delijn.be/stops/401543", "https://data.delijn.be/stops/401897"], ["https://data.delijn.be/stops/304482", "https://data.delijn.be/stops/304509"], ["https://data.delijn.be/stops/402715", "https://data.delijn.be/stops/307789"], ["https://data.delijn.be/stops/409465", "https://data.delijn.be/stops/409467"], ["https://data.delijn.be/stops/503582", "https://data.delijn.be/stops/508556"], ["https://data.delijn.be/stops/404862", "https://data.delijn.be/stops/404966"], ["https://data.delijn.be/stops/400684", "https://data.delijn.be/stops/406646"], ["https://data.delijn.be/stops/304802", "https://data.delijn.be/stops/304809"], ["https://data.delijn.be/stops/402749", "https://data.delijn.be/stops/405239"], ["https://data.delijn.be/stops/503097", "https://data.delijn.be/stops/508096"], ["https://data.delijn.be/stops/307356", "https://data.delijn.be/stops/307358"], ["https://data.delijn.be/stops/502362", "https://data.delijn.be/stops/505016"], ["https://data.delijn.be/stops/206063", "https://data.delijn.be/stops/206501"], ["https://data.delijn.be/stops/103618", "https://data.delijn.be/stops/103679"], ["https://data.delijn.be/stops/207271", "https://data.delijn.be/stops/207272"], ["https://data.delijn.be/stops/504246", "https://data.delijn.be/stops/504247"], ["https://data.delijn.be/stops/406601", "https://data.delijn.be/stops/406698"], ["https://data.delijn.be/stops/300920", "https://data.delijn.be/stops/305889"], ["https://data.delijn.be/stops/503467", "https://data.delijn.be/stops/508978"], ["https://data.delijn.be/stops/303395", "https://data.delijn.be/stops/307135"], ["https://data.delijn.be/stops/201760", "https://data.delijn.be/stops/219006"], ["https://data.delijn.be/stops/503238", "https://data.delijn.be/stops/509792"], ["https://data.delijn.be/stops/402965", "https://data.delijn.be/stops/402967"], ["https://data.delijn.be/stops/305466", "https://data.delijn.be/stops/307142"], ["https://data.delijn.be/stops/307080", "https://data.delijn.be/stops/307145"], ["https://data.delijn.be/stops/107143", "https://data.delijn.be/stops/108926"], ["https://data.delijn.be/stops/104470", "https://data.delijn.be/stops/104655"], ["https://data.delijn.be/stops/404723", "https://data.delijn.be/stops/404753"], ["https://data.delijn.be/stops/403292", "https://data.delijn.be/stops/404979"], ["https://data.delijn.be/stops/504523", "https://data.delijn.be/stops/509523"], ["https://data.delijn.be/stops/503230", "https://data.delijn.be/stops/508263"], ["https://data.delijn.be/stops/507421", "https://data.delijn.be/stops/507424"], ["https://data.delijn.be/stops/500009", "https://data.delijn.be/stops/502769"], ["https://data.delijn.be/stops/407470", "https://data.delijn.be/stops/407493"], ["https://data.delijn.be/stops/200016", "https://data.delijn.be/stops/201512"], ["https://data.delijn.be/stops/304171", "https://data.delijn.be/stops/307546"], ["https://data.delijn.be/stops/403457", "https://data.delijn.be/stops/403565"], ["https://data.delijn.be/stops/105241", "https://data.delijn.be/stops/105247"], ["https://data.delijn.be/stops/206077", "https://data.delijn.be/stops/207294"], ["https://data.delijn.be/stops/502646", "https://data.delijn.be/stops/507646"], ["https://data.delijn.be/stops/300561", "https://data.delijn.be/stops/307857"], ["https://data.delijn.be/stops/502918", "https://data.delijn.be/stops/505579"], ["https://data.delijn.be/stops/307203", "https://data.delijn.be/stops/307205"], ["https://data.delijn.be/stops/403892", "https://data.delijn.be/stops/403894"], ["https://data.delijn.be/stops/206345", "https://data.delijn.be/stops/207717"], ["https://data.delijn.be/stops/405093", "https://data.delijn.be/stops/405664"], ["https://data.delijn.be/stops/102205", "https://data.delijn.be/stops/104535"], ["https://data.delijn.be/stops/407058", "https://data.delijn.be/stops/407069"], ["https://data.delijn.be/stops/502379", "https://data.delijn.be/stops/507379"], ["https://data.delijn.be/stops/409383", "https://data.delijn.be/stops/409442"], ["https://data.delijn.be/stops/301824", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/206092", "https://data.delijn.be/stops/206146"], ["https://data.delijn.be/stops/202047", "https://data.delijn.be/stops/202138"], ["https://data.delijn.be/stops/405922", "https://data.delijn.be/stops/405976"], ["https://data.delijn.be/stops/307638", "https://data.delijn.be/stops/307639"], ["https://data.delijn.be/stops/107306", "https://data.delijn.be/stops/107307"], ["https://data.delijn.be/stops/304385", "https://data.delijn.be/stops/307417"], ["https://data.delijn.be/stops/402805", "https://data.delijn.be/stops/406129"], ["https://data.delijn.be/stops/101987", "https://data.delijn.be/stops/105010"], ["https://data.delijn.be/stops/204647", "https://data.delijn.be/stops/205613"], ["https://data.delijn.be/stops/304896", "https://data.delijn.be/stops/304905"], ["https://data.delijn.be/stops/403638", "https://data.delijn.be/stops/403820"], ["https://data.delijn.be/stops/502008", "https://data.delijn.be/stops/505203"], ["https://data.delijn.be/stops/209308", "https://data.delijn.be/stops/505973"], ["https://data.delijn.be/stops/304579", "https://data.delijn.be/stops/308683"], ["https://data.delijn.be/stops/402133", "https://data.delijn.be/stops/410101"], ["https://data.delijn.be/stops/202340", "https://data.delijn.be/stops/202849"], ["https://data.delijn.be/stops/205985", "https://data.delijn.be/stops/206577"], ["https://data.delijn.be/stops/201244", "https://data.delijn.be/stops/202000"], ["https://data.delijn.be/stops/108429", "https://data.delijn.be/stops/108431"], ["https://data.delijn.be/stops/106860", "https://data.delijn.be/stops/106861"], ["https://data.delijn.be/stops/503042", "https://data.delijn.be/stops/509205"], ["https://data.delijn.be/stops/402896", "https://data.delijn.be/stops/405536"], ["https://data.delijn.be/stops/101954", "https://data.delijn.be/stops/108307"], ["https://data.delijn.be/stops/304548", "https://data.delijn.be/stops/304640"], ["https://data.delijn.be/stops/301924", "https://data.delijn.be/stops/307820"], ["https://data.delijn.be/stops/209192", "https://data.delijn.be/stops/209499"], ["https://data.delijn.be/stops/409494", "https://data.delijn.be/stops/409496"], ["https://data.delijn.be/stops/206649", "https://data.delijn.be/stops/207869"], ["https://data.delijn.be/stops/104825", "https://data.delijn.be/stops/105200"], ["https://data.delijn.be/stops/500556", "https://data.delijn.be/stops/507944"], ["https://data.delijn.be/stops/402842", "https://data.delijn.be/stops/409881"], ["https://data.delijn.be/stops/400238", "https://data.delijn.be/stops/406283"], ["https://data.delijn.be/stops/208366", "https://data.delijn.be/stops/208777"], ["https://data.delijn.be/stops/104883", "https://data.delijn.be/stops/104886"], ["https://data.delijn.be/stops/500012", "https://data.delijn.be/stops/505833"], ["https://data.delijn.be/stops/101831", "https://data.delijn.be/stops/107332"], ["https://data.delijn.be/stops/501536", "https://data.delijn.be/stops/506463"], ["https://data.delijn.be/stops/202176", "https://data.delijn.be/stops/202497"], ["https://data.delijn.be/stops/504796", "https://data.delijn.be/stops/504802"], ["https://data.delijn.be/stops/400773", "https://data.delijn.be/stops/409621"], ["https://data.delijn.be/stops/207192", "https://data.delijn.be/stops/207222"], ["https://data.delijn.be/stops/402393", "https://data.delijn.be/stops/407494"], ["https://data.delijn.be/stops/101632", "https://data.delijn.be/stops/109745"], ["https://data.delijn.be/stops/501778", "https://data.delijn.be/stops/506456"], ["https://data.delijn.be/stops/502171", "https://data.delijn.be/stops/502540"], ["https://data.delijn.be/stops/508686", "https://data.delijn.be/stops/508687"], ["https://data.delijn.be/stops/200933", "https://data.delijn.be/stops/203266"], ["https://data.delijn.be/stops/108698", "https://data.delijn.be/stops/108852"], ["https://data.delijn.be/stops/101378", "https://data.delijn.be/stops/109714"], ["https://data.delijn.be/stops/404355", "https://data.delijn.be/stops/404366"], ["https://data.delijn.be/stops/108924", "https://data.delijn.be/stops/108926"], ["https://data.delijn.be/stops/204131", "https://data.delijn.be/stops/204143"], ["https://data.delijn.be/stops/505223", "https://data.delijn.be/stops/506464"], ["https://data.delijn.be/stops/404680", "https://data.delijn.be/stops/408726"], ["https://data.delijn.be/stops/206963", "https://data.delijn.be/stops/207963"], ["https://data.delijn.be/stops/206371", "https://data.delijn.be/stops/206372"], ["https://data.delijn.be/stops/108427", "https://data.delijn.be/stops/108429"], ["https://data.delijn.be/stops/504012", "https://data.delijn.be/stops/504725"], ["https://data.delijn.be/stops/405836", "https://data.delijn.be/stops/405837"], ["https://data.delijn.be/stops/206760", "https://data.delijn.be/stops/206803"], ["https://data.delijn.be/stops/305168", "https://data.delijn.be/stops/305207"], ["https://data.delijn.be/stops/302512", "https://data.delijn.be/stops/305873"], ["https://data.delijn.be/stops/505250", "https://data.delijn.be/stops/505254"], ["https://data.delijn.be/stops/400010", "https://data.delijn.be/stops/400025"], ["https://data.delijn.be/stops/201719", "https://data.delijn.be/stops/202029"], ["https://data.delijn.be/stops/200694", "https://data.delijn.be/stops/200850"], ["https://data.delijn.be/stops/302993", "https://data.delijn.be/stops/306298"], ["https://data.delijn.be/stops/409710", "https://data.delijn.be/stops/409713"], ["https://data.delijn.be/stops/106911", "https://data.delijn.be/stops/107254"], ["https://data.delijn.be/stops/301503", "https://data.delijn.be/stops/301504"], ["https://data.delijn.be/stops/505680", "https://data.delijn.be/stops/505682"], ["https://data.delijn.be/stops/206747", "https://data.delijn.be/stops/207337"], ["https://data.delijn.be/stops/502319", "https://data.delijn.be/stops/507711"], ["https://data.delijn.be/stops/208214", "https://data.delijn.be/stops/209429"], ["https://data.delijn.be/stops/402158", "https://data.delijn.be/stops/402159"], ["https://data.delijn.be/stops/302479", "https://data.delijn.be/stops/308874"], ["https://data.delijn.be/stops/103989", "https://data.delijn.be/stops/109094"], ["https://data.delijn.be/stops/503832", "https://data.delijn.be/stops/503834"], ["https://data.delijn.be/stops/103326", "https://data.delijn.be/stops/103399"], ["https://data.delijn.be/stops/503039", "https://data.delijn.be/stops/508043"], ["https://data.delijn.be/stops/404750", "https://data.delijn.be/stops/404751"], ["https://data.delijn.be/stops/203652", "https://data.delijn.be/stops/203653"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/402621"], ["https://data.delijn.be/stops/202783", "https://data.delijn.be/stops/203783"], ["https://data.delijn.be/stops/503077", "https://data.delijn.be/stops/503680"], ["https://data.delijn.be/stops/106826", "https://data.delijn.be/stops/106828"], ["https://data.delijn.be/stops/208814", "https://data.delijn.be/stops/209199"], ["https://data.delijn.be/stops/401345", "https://data.delijn.be/stops/401364"], ["https://data.delijn.be/stops/407648", "https://data.delijn.be/stops/407673"], ["https://data.delijn.be/stops/301920", "https://data.delijn.be/stops/301924"], ["https://data.delijn.be/stops/400551", "https://data.delijn.be/stops/403062"], ["https://data.delijn.be/stops/405499", "https://data.delijn.be/stops/407850"], ["https://data.delijn.be/stops/302676", "https://data.delijn.be/stops/302690"], ["https://data.delijn.be/stops/202552", "https://data.delijn.be/stops/202608"], ["https://data.delijn.be/stops/206156", "https://data.delijn.be/stops/207116"], ["https://data.delijn.be/stops/403127", "https://data.delijn.be/stops/403135"], ["https://data.delijn.be/stops/103909", "https://data.delijn.be/stops/105642"], ["https://data.delijn.be/stops/101358", "https://data.delijn.be/stops/104348"], ["https://data.delijn.be/stops/503914", "https://data.delijn.be/stops/503998"], ["https://data.delijn.be/stops/505266", "https://data.delijn.be/stops/507715"], ["https://data.delijn.be/stops/305622", "https://data.delijn.be/stops/305640"], ["https://data.delijn.be/stops/503336", "https://data.delijn.be/stops/508336"], ["https://data.delijn.be/stops/303182", "https://data.delijn.be/stops/303183"], ["https://data.delijn.be/stops/404714", "https://data.delijn.be/stops/404768"], ["https://data.delijn.be/stops/103515", "https://data.delijn.be/stops/104565"], ["https://data.delijn.be/stops/503981", "https://data.delijn.be/stops/508634"], ["https://data.delijn.be/stops/202112", "https://data.delijn.be/stops/205584"], ["https://data.delijn.be/stops/103310", "https://data.delijn.be/stops/107010"], ["https://data.delijn.be/stops/404051", "https://data.delijn.be/stops/404052"], ["https://data.delijn.be/stops/200465", "https://data.delijn.be/stops/200674"], ["https://data.delijn.be/stops/102389", "https://data.delijn.be/stops/107030"], ["https://data.delijn.be/stops/104643", "https://data.delijn.be/stops/107965"], ["https://data.delijn.be/stops/101906", "https://data.delijn.be/stops/107018"], ["https://data.delijn.be/stops/400784", "https://data.delijn.be/stops/400785"], ["https://data.delijn.be/stops/104760", "https://data.delijn.be/stops/108900"], ["https://data.delijn.be/stops/101476", "https://data.delijn.be/stops/108736"], ["https://data.delijn.be/stops/303030", "https://data.delijn.be/stops/307895"], ["https://data.delijn.be/stops/409236", "https://data.delijn.be/stops/409245"], ["https://data.delijn.be/stops/300286", "https://data.delijn.be/stops/301314"], ["https://data.delijn.be/stops/200463", "https://data.delijn.be/stops/200662"], ["https://data.delijn.be/stops/505206", "https://data.delijn.be/stops/509089"], ["https://data.delijn.be/stops/404306", "https://data.delijn.be/stops/404331"], ["https://data.delijn.be/stops/504477", "https://data.delijn.be/stops/504479"], ["https://data.delijn.be/stops/201864", "https://data.delijn.be/stops/202033"], ["https://data.delijn.be/stops/101045", "https://data.delijn.be/stops/101166"], ["https://data.delijn.be/stops/302552", "https://data.delijn.be/stops/306589"], ["https://data.delijn.be/stops/305445", "https://data.delijn.be/stops/307933"], ["https://data.delijn.be/stops/503924", "https://data.delijn.be/stops/507798"], ["https://data.delijn.be/stops/507818", "https://data.delijn.be/stops/508360"], ["https://data.delijn.be/stops/102955", "https://data.delijn.be/stops/104675"], ["https://data.delijn.be/stops/104507", "https://data.delijn.be/stops/107923"], ["https://data.delijn.be/stops/201082", "https://data.delijn.be/stops/208722"], ["https://data.delijn.be/stops/408016", "https://data.delijn.be/stops/408019"], ["https://data.delijn.be/stops/402221", "https://data.delijn.be/stops/402383"], ["https://data.delijn.be/stops/401762", "https://data.delijn.be/stops/406137"], ["https://data.delijn.be/stops/407651", "https://data.delijn.be/stops/409879"], ["https://data.delijn.be/stops/200087", "https://data.delijn.be/stops/202771"], ["https://data.delijn.be/stops/504666", "https://data.delijn.be/stops/509895"], ["https://data.delijn.be/stops/200722", "https://data.delijn.be/stops/203408"], ["https://data.delijn.be/stops/507495", "https://data.delijn.be/stops/507734"], ["https://data.delijn.be/stops/203109", "https://data.delijn.be/stops/203184"], ["https://data.delijn.be/stops/405042", "https://data.delijn.be/stops/405051"], ["https://data.delijn.be/stops/305590", "https://data.delijn.be/stops/307514"], ["https://data.delijn.be/stops/301791", "https://data.delijn.be/stops/301795"], ["https://data.delijn.be/stops/303319", "https://data.delijn.be/stops/303333"], ["https://data.delijn.be/stops/102963", "https://data.delijn.be/stops/109898"], ["https://data.delijn.be/stops/109496", "https://data.delijn.be/stops/305625"], ["https://data.delijn.be/stops/203427", "https://data.delijn.be/stops/203816"], ["https://data.delijn.be/stops/503850", "https://data.delijn.be/stops/508850"], ["https://data.delijn.be/stops/105202", "https://data.delijn.be/stops/108059"], ["https://data.delijn.be/stops/204376", "https://data.delijn.be/stops/204418"], ["https://data.delijn.be/stops/304314", "https://data.delijn.be/stops/304322"], ["https://data.delijn.be/stops/505761", "https://data.delijn.be/stops/507757"], ["https://data.delijn.be/stops/504418", "https://data.delijn.be/stops/504516"], ["https://data.delijn.be/stops/509417", "https://data.delijn.be/stops/509437"], ["https://data.delijn.be/stops/403744", "https://data.delijn.be/stops/403819"], ["https://data.delijn.be/stops/102172", "https://data.delijn.be/stops/108098"], ["https://data.delijn.be/stops/102089", "https://data.delijn.be/stops/106811"], ["https://data.delijn.be/stops/103333", "https://data.delijn.be/stops/106508"], ["https://data.delijn.be/stops/107010", "https://data.delijn.be/stops/108655"], ["https://data.delijn.be/stops/504380", "https://data.delijn.be/stops/504382"], ["https://data.delijn.be/stops/402042", "https://data.delijn.be/stops/402457"], ["https://data.delijn.be/stops/301562", "https://data.delijn.be/stops/301563"], ["https://data.delijn.be/stops/301213", "https://data.delijn.be/stops/301216"], ["https://data.delijn.be/stops/406289", "https://data.delijn.be/stops/406443"], ["https://data.delijn.be/stops/105909", "https://data.delijn.be/stops/109745"], ["https://data.delijn.be/stops/402602", "https://data.delijn.be/stops/402649"], ["https://data.delijn.be/stops/400920", "https://data.delijn.be/stops/400962"], ["https://data.delijn.be/stops/302179", "https://data.delijn.be/stops/305160"], ["https://data.delijn.be/stops/301723", "https://data.delijn.be/stops/301726"], ["https://data.delijn.be/stops/501247", "https://data.delijn.be/stops/501549"], ["https://data.delijn.be/stops/208770", "https://data.delijn.be/stops/209770"], ["https://data.delijn.be/stops/201706", "https://data.delijn.be/stops/202445"], ["https://data.delijn.be/stops/403278", "https://data.delijn.be/stops/403518"], ["https://data.delijn.be/stops/403124", "https://data.delijn.be/stops/403177"], ["https://data.delijn.be/stops/200807", "https://data.delijn.be/stops/203436"], ["https://data.delijn.be/stops/102746", "https://data.delijn.be/stops/107288"], ["https://data.delijn.be/stops/204622", "https://data.delijn.be/stops/205336"], ["https://data.delijn.be/stops/206713", "https://data.delijn.be/stops/206740"], ["https://data.delijn.be/stops/206540", "https://data.delijn.be/stops/207540"], ["https://data.delijn.be/stops/105014", "https://data.delijn.be/stops/105108"], ["https://data.delijn.be/stops/505019", "https://data.delijn.be/stops/507663"], ["https://data.delijn.be/stops/102321", "https://data.delijn.be/stops/107485"], ["https://data.delijn.be/stops/503985", "https://data.delijn.be/stops/509936"], ["https://data.delijn.be/stops/501733", "https://data.delijn.be/stops/506436"], ["https://data.delijn.be/stops/405734", "https://data.delijn.be/stops/405735"], ["https://data.delijn.be/stops/106512", "https://data.delijn.be/stops/106521"], ["https://data.delijn.be/stops/305078", "https://data.delijn.be/stops/306952"], ["https://data.delijn.be/stops/201863", "https://data.delijn.be/stops/202425"], ["https://data.delijn.be/stops/502475", "https://data.delijn.be/stops/502918"], ["https://data.delijn.be/stops/101822", "https://data.delijn.be/stops/107026"], ["https://data.delijn.be/stops/505364", "https://data.delijn.be/stops/505933"], ["https://data.delijn.be/stops/206261", "https://data.delijn.be/stops/207262"], ["https://data.delijn.be/stops/300347", "https://data.delijn.be/stops/300350"], ["https://data.delijn.be/stops/401500", "https://data.delijn.be/stops/401501"], ["https://data.delijn.be/stops/103991", "https://data.delijn.be/stops/104897"], ["https://data.delijn.be/stops/403307", "https://data.delijn.be/stops/403415"], ["https://data.delijn.be/stops/106276", "https://data.delijn.be/stops/109634"], ["https://data.delijn.be/stops/201814", "https://data.delijn.be/stops/209253"], ["https://data.delijn.be/stops/202280", "https://data.delijn.be/stops/203056"], ["https://data.delijn.be/stops/504254", "https://data.delijn.be/stops/509254"], ["https://data.delijn.be/stops/102960", "https://data.delijn.be/stops/104999"], ["https://data.delijn.be/stops/406570", "https://data.delijn.be/stops/406571"], ["https://data.delijn.be/stops/305716", "https://data.delijn.be/stops/305717"], ["https://data.delijn.be/stops/206225", "https://data.delijn.be/stops/300188"], ["https://data.delijn.be/stops/501549", "https://data.delijn.be/stops/501558"], ["https://data.delijn.be/stops/403177", "https://data.delijn.be/stops/403228"], ["https://data.delijn.be/stops/109043", "https://data.delijn.be/stops/109047"], ["https://data.delijn.be/stops/200052", "https://data.delijn.be/stops/211118"], ["https://data.delijn.be/stops/503933", "https://data.delijn.be/stops/508920"], ["https://data.delijn.be/stops/202242", "https://data.delijn.be/stops/203148"], ["https://data.delijn.be/stops/101574", "https://data.delijn.be/stops/103982"], ["https://data.delijn.be/stops/208846", "https://data.delijn.be/stops/209846"], ["https://data.delijn.be/stops/503881", "https://data.delijn.be/stops/508881"], ["https://data.delijn.be/stops/204797", "https://data.delijn.be/stops/204799"], ["https://data.delijn.be/stops/504093", "https://data.delijn.be/stops/505195"], ["https://data.delijn.be/stops/300886", "https://data.delijn.be/stops/333454"], ["https://data.delijn.be/stops/401203", "https://data.delijn.be/stops/401349"], ["https://data.delijn.be/stops/301306", "https://data.delijn.be/stops/306149"], ["https://data.delijn.be/stops/303994", "https://data.delijn.be/stops/304178"], ["https://data.delijn.be/stops/205245", "https://data.delijn.be/stops/205905"], ["https://data.delijn.be/stops/402756", "https://data.delijn.be/stops/408393"], ["https://data.delijn.be/stops/500002", "https://data.delijn.be/stops/508665"], ["https://data.delijn.be/stops/302563", "https://data.delijn.be/stops/302564"], ["https://data.delijn.be/stops/300227", "https://data.delijn.be/stops/302115"], ["https://data.delijn.be/stops/401470", "https://data.delijn.be/stops/401897"], ["https://data.delijn.be/stops/204403", "https://data.delijn.be/stops/205403"], ["https://data.delijn.be/stops/407452", "https://data.delijn.be/stops/407458"], ["https://data.delijn.be/stops/403446", "https://data.delijn.be/stops/409273"], ["https://data.delijn.be/stops/103118", "https://data.delijn.be/stops/108370"], ["https://data.delijn.be/stops/305181", "https://data.delijn.be/stops/305182"], ["https://data.delijn.be/stops/202964", "https://data.delijn.be/stops/203964"], ["https://data.delijn.be/stops/403305", "https://data.delijn.be/stops/409173"], ["https://data.delijn.be/stops/503235", "https://data.delijn.be/stops/508235"], ["https://data.delijn.be/stops/503115", "https://data.delijn.be/stops/504848"], ["https://data.delijn.be/stops/208165", "https://data.delijn.be/stops/209164"], ["https://data.delijn.be/stops/200267", "https://data.delijn.be/stops/201225"], ["https://data.delijn.be/stops/103339", "https://data.delijn.be/stops/103955"], ["https://data.delijn.be/stops/504124", "https://data.delijn.be/stops/504746"], ["https://data.delijn.be/stops/201860", "https://data.delijn.be/stops/203671"], ["https://data.delijn.be/stops/104431", "https://data.delijn.be/stops/106784"], ["https://data.delijn.be/stops/304208", "https://data.delijn.be/stops/306003"], ["https://data.delijn.be/stops/400078", "https://data.delijn.be/stops/400150"], ["https://data.delijn.be/stops/202579", "https://data.delijn.be/stops/203581"], ["https://data.delijn.be/stops/305388", "https://data.delijn.be/stops/307791"], ["https://data.delijn.be/stops/105491", "https://data.delijn.be/stops/105493"], ["https://data.delijn.be/stops/506150", "https://data.delijn.be/stops/509838"], ["https://data.delijn.be/stops/205237", "https://data.delijn.be/stops/207239"], ["https://data.delijn.be/stops/101919", "https://data.delijn.be/stops/106997"], ["https://data.delijn.be/stops/102200", "https://data.delijn.be/stops/104008"], ["https://data.delijn.be/stops/410067", "https://data.delijn.be/stops/410068"], ["https://data.delijn.be/stops/302946", "https://data.delijn.be/stops/302962"], ["https://data.delijn.be/stops/302633", "https://data.delijn.be/stops/302641"], ["https://data.delijn.be/stops/200948", "https://data.delijn.be/stops/208857"], ["https://data.delijn.be/stops/101085", "https://data.delijn.be/stops/103585"], ["https://data.delijn.be/stops/207541", "https://data.delijn.be/stops/207561"], ["https://data.delijn.be/stops/504370", "https://data.delijn.be/stops/509363"], ["https://data.delijn.be/stops/208417", "https://data.delijn.be/stops/208745"], ["https://data.delijn.be/stops/209675", "https://data.delijn.be/stops/209754"], ["https://data.delijn.be/stops/501401", "https://data.delijn.be/stops/509896"], ["https://data.delijn.be/stops/503111", "https://data.delijn.be/stops/508111"], ["https://data.delijn.be/stops/300536", "https://data.delijn.be/stops/302340"], ["https://data.delijn.be/stops/405003", "https://data.delijn.be/stops/408923"], ["https://data.delijn.be/stops/301122", "https://data.delijn.be/stops/301133"], ["https://data.delijn.be/stops/303705", "https://data.delijn.be/stops/303740"], ["https://data.delijn.be/stops/200982", "https://data.delijn.be/stops/203921"], ["https://data.delijn.be/stops/501538", "https://data.delijn.be/stops/505404"], ["https://data.delijn.be/stops/504570", "https://data.delijn.be/stops/509081"], ["https://data.delijn.be/stops/405696", "https://data.delijn.be/stops/405924"], ["https://data.delijn.be/stops/203970", "https://data.delijn.be/stops/205092"], ["https://data.delijn.be/stops/406826", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/505952", "https://data.delijn.be/stops/508289"], ["https://data.delijn.be/stops/300010", "https://data.delijn.be/stops/304257"], ["https://data.delijn.be/stops/502283", "https://data.delijn.be/stops/502322"], ["https://data.delijn.be/stops/401011", "https://data.delijn.be/stops/401059"], ["https://data.delijn.be/stops/505579", "https://data.delijn.be/stops/507481"], ["https://data.delijn.be/stops/208812", "https://data.delijn.be/stops/208813"], ["https://data.delijn.be/stops/204729", "https://data.delijn.be/stops/205759"], ["https://data.delijn.be/stops/407692", "https://data.delijn.be/stops/407698"], ["https://data.delijn.be/stops/304730", "https://data.delijn.be/stops/308699"], ["https://data.delijn.be/stops/204218", "https://data.delijn.be/stops/205178"], ["https://data.delijn.be/stops/302330", "https://data.delijn.be/stops/304099"], ["https://data.delijn.be/stops/503605", "https://data.delijn.be/stops/503614"], ["https://data.delijn.be/stops/204798", "https://data.delijn.be/stops/205484"], ["https://data.delijn.be/stops/502578", "https://data.delijn.be/stops/502581"], ["https://data.delijn.be/stops/407912", "https://data.delijn.be/stops/407913"], ["https://data.delijn.be/stops/202149", "https://data.delijn.be/stops/202242"], ["https://data.delijn.be/stops/200732", "https://data.delijn.be/stops/202628"], ["https://data.delijn.be/stops/503845", "https://data.delijn.be/stops/504995"], ["https://data.delijn.be/stops/306685", "https://data.delijn.be/stops/306686"], ["https://data.delijn.be/stops/102882", "https://data.delijn.be/stops/108681"], ["https://data.delijn.be/stops/106254", "https://data.delijn.be/stops/109902"], ["https://data.delijn.be/stops/208802", "https://data.delijn.be/stops/209210"], ["https://data.delijn.be/stops/300272", "https://data.delijn.be/stops/307497"], ["https://data.delijn.be/stops/403132", "https://data.delijn.be/stops/403410"], ["https://data.delijn.be/stops/106579", "https://data.delijn.be/stops/108440"], ["https://data.delijn.be/stops/101799", "https://data.delijn.be/stops/108510"], ["https://data.delijn.be/stops/107224", "https://data.delijn.be/stops/109885"], ["https://data.delijn.be/stops/202480", "https://data.delijn.be/stops/202954"], ["https://data.delijn.be/stops/303566", "https://data.delijn.be/stops/307987"], ["https://data.delijn.be/stops/301517", "https://data.delijn.be/stops/301526"], ["https://data.delijn.be/stops/102514", "https://data.delijn.be/stops/405607"], ["https://data.delijn.be/stops/106020", "https://data.delijn.be/stops/106021"], ["https://data.delijn.be/stops/302349", "https://data.delijn.be/stops/302750"], ["https://data.delijn.be/stops/403634", "https://data.delijn.be/stops/403648"], ["https://data.delijn.be/stops/108197", "https://data.delijn.be/stops/108198"], ["https://data.delijn.be/stops/407044", "https://data.delijn.be/stops/407047"], ["https://data.delijn.be/stops/102547", "https://data.delijn.be/stops/402283"], ["https://data.delijn.be/stops/305235", "https://data.delijn.be/stops/305304"], ["https://data.delijn.be/stops/406700", "https://data.delijn.be/stops/406987"], ["https://data.delijn.be/stops/304174", "https://data.delijn.be/stops/304685"], ["https://data.delijn.be/stops/505704", "https://data.delijn.be/stops/507264"], ["https://data.delijn.be/stops/505378", "https://data.delijn.be/stops/505579"], ["https://data.delijn.be/stops/102984", "https://data.delijn.be/stops/105169"], ["https://data.delijn.be/stops/400574", "https://data.delijn.be/stops/403005"], ["https://data.delijn.be/stops/507187", "https://data.delijn.be/stops/507683"], ["https://data.delijn.be/stops/105844", "https://data.delijn.be/stops/105846"], ["https://data.delijn.be/stops/103570", "https://data.delijn.be/stops/107139"], ["https://data.delijn.be/stops/104093", "https://data.delijn.be/stops/109391"], ["https://data.delijn.be/stops/102120", "https://data.delijn.be/stops/105885"], ["https://data.delijn.be/stops/504726", "https://data.delijn.be/stops/509637"], ["https://data.delijn.be/stops/300101", "https://data.delijn.be/stops/306851"], ["https://data.delijn.be/stops/401030", "https://data.delijn.be/stops/401115"], ["https://data.delijn.be/stops/400845", "https://data.delijn.be/stops/409568"], ["https://data.delijn.be/stops/203313", "https://data.delijn.be/stops/505753"], ["https://data.delijn.be/stops/102474", "https://data.delijn.be/stops/406855"], ["https://data.delijn.be/stops/206962", "https://data.delijn.be/stops/207040"], ["https://data.delijn.be/stops/405489", "https://data.delijn.be/stops/405492"], ["https://data.delijn.be/stops/504257", "https://data.delijn.be/stops/509257"], ["https://data.delijn.be/stops/408454", "https://data.delijn.be/stops/409162"], ["https://data.delijn.be/stops/103313", "https://data.delijn.be/stops/109419"], ["https://data.delijn.be/stops/105602", "https://data.delijn.be/stops/105603"], ["https://data.delijn.be/stops/300702", "https://data.delijn.be/stops/300708"], ["https://data.delijn.be/stops/210092", "https://data.delijn.be/stops/211050"], ["https://data.delijn.be/stops/206931", "https://data.delijn.be/stops/207911"], ["https://data.delijn.be/stops/400911", "https://data.delijn.be/stops/400963"], ["https://data.delijn.be/stops/300703", "https://data.delijn.be/stops/308068"], ["https://data.delijn.be/stops/105053", "https://data.delijn.be/stops/306810"], ["https://data.delijn.be/stops/504591", "https://data.delijn.be/stops/509596"], ["https://data.delijn.be/stops/509154", "https://data.delijn.be/stops/509166"], ["https://data.delijn.be/stops/502746", "https://data.delijn.be/stops/505344"], ["https://data.delijn.be/stops/300169", "https://data.delijn.be/stops/300170"], ["https://data.delijn.be/stops/305525", "https://data.delijn.be/stops/305526"], ["https://data.delijn.be/stops/501103", "https://data.delijn.be/stops/501438"], ["https://data.delijn.be/stops/503788", "https://data.delijn.be/stops/503790"], ["https://data.delijn.be/stops/506438", "https://data.delijn.be/stops/506440"], ["https://data.delijn.be/stops/107641", "https://data.delijn.be/stops/108837"], ["https://data.delijn.be/stops/208527", "https://data.delijn.be/stops/209517"], ["https://data.delijn.be/stops/503707", "https://data.delijn.be/stops/508065"], ["https://data.delijn.be/stops/300267", "https://data.delijn.be/stops/302150"], ["https://data.delijn.be/stops/106327", "https://data.delijn.be/stops/106330"], ["https://data.delijn.be/stops/409386", "https://data.delijn.be/stops/409439"], ["https://data.delijn.be/stops/202882", "https://data.delijn.be/stops/209746"], ["https://data.delijn.be/stops/105436", "https://data.delijn.be/stops/109980"], ["https://data.delijn.be/stops/207209", "https://data.delijn.be/stops/207722"], ["https://data.delijn.be/stops/207691", "https://data.delijn.be/stops/207954"], ["https://data.delijn.be/stops/201028", "https://data.delijn.be/stops/201447"], ["https://data.delijn.be/stops/509299", "https://data.delijn.be/stops/509860"], ["https://data.delijn.be/stops/101655", "https://data.delijn.be/stops/107856"], ["https://data.delijn.be/stops/109272", "https://data.delijn.be/stops/109273"], ["https://data.delijn.be/stops/101390", "https://data.delijn.be/stops/102391"], ["https://data.delijn.be/stops/505664", "https://data.delijn.be/stops/509701"], ["https://data.delijn.be/stops/502177", "https://data.delijn.be/stops/507179"], ["https://data.delijn.be/stops/104563", "https://data.delijn.be/stops/107482"], ["https://data.delijn.be/stops/204795", "https://data.delijn.be/stops/205092"], ["https://data.delijn.be/stops/204259", "https://data.delijn.be/stops/205466"], ["https://data.delijn.be/stops/405456", "https://data.delijn.be/stops/407568"], ["https://data.delijn.be/stops/207712", "https://data.delijn.be/stops/207745"], ["https://data.delijn.be/stops/102232", "https://data.delijn.be/stops/105569"], ["https://data.delijn.be/stops/502308", "https://data.delijn.be/stops/502425"], ["https://data.delijn.be/stops/402398", "https://data.delijn.be/stops/402501"], ["https://data.delijn.be/stops/504128", "https://data.delijn.be/stops/504746"], ["https://data.delijn.be/stops/304104", "https://data.delijn.be/stops/304799"], ["https://data.delijn.be/stops/102423", "https://data.delijn.be/stops/104711"], ["https://data.delijn.be/stops/301255", "https://data.delijn.be/stops/308264"], ["https://data.delijn.be/stops/501372", "https://data.delijn.be/stops/501374"], ["https://data.delijn.be/stops/104121", "https://data.delijn.be/stops/108535"], ["https://data.delijn.be/stops/406616", "https://data.delijn.be/stops/406639"], ["https://data.delijn.be/stops/400824", "https://data.delijn.be/stops/400828"], ["https://data.delijn.be/stops/202093", "https://data.delijn.be/stops/202644"], ["https://data.delijn.be/stops/102778", "https://data.delijn.be/stops/106045"], ["https://data.delijn.be/stops/303877", "https://data.delijn.be/stops/308632"], ["https://data.delijn.be/stops/102726", "https://data.delijn.be/stops/104109"], ["https://data.delijn.be/stops/407171", "https://data.delijn.be/stops/407489"], ["https://data.delijn.be/stops/501119", "https://data.delijn.be/stops/501122"], ["https://data.delijn.be/stops/504198", "https://data.delijn.be/stops/509198"], ["https://data.delijn.be/stops/200162", "https://data.delijn.be/stops/210132"], ["https://data.delijn.be/stops/505091", "https://data.delijn.be/stops/505581"], ["https://data.delijn.be/stops/103218", "https://data.delijn.be/stops/104699"], ["https://data.delijn.be/stops/501419", "https://data.delijn.be/stops/506407"], ["https://data.delijn.be/stops/501397", "https://data.delijn.be/stops/506120"], ["https://data.delijn.be/stops/304996", "https://data.delijn.be/stops/305030"], ["https://data.delijn.be/stops/204597", "https://data.delijn.be/stops/205587"], ["https://data.delijn.be/stops/405436", "https://data.delijn.be/stops/408873"], ["https://data.delijn.be/stops/101386", "https://data.delijn.be/stops/101393"], ["https://data.delijn.be/stops/507499", "https://data.delijn.be/stops/507505"], ["https://data.delijn.be/stops/306860", "https://data.delijn.be/stops/307361"], ["https://data.delijn.be/stops/300072", "https://data.delijn.be/stops/304676"], ["https://data.delijn.be/stops/504322", "https://data.delijn.be/stops/509713"], ["https://data.delijn.be/stops/208129", "https://data.delijn.be/stops/208131"], ["https://data.delijn.be/stops/501380", "https://data.delijn.be/stops/501383"], ["https://data.delijn.be/stops/104015", "https://data.delijn.be/stops/105655"], ["https://data.delijn.be/stops/200560", "https://data.delijn.be/stops/201560"], ["https://data.delijn.be/stops/200148", "https://data.delijn.be/stops/201171"], ["https://data.delijn.be/stops/206484", "https://data.delijn.be/stops/206553"], ["https://data.delijn.be/stops/501055", "https://data.delijn.be/stops/505712"], ["https://data.delijn.be/stops/202963", "https://data.delijn.be/stops/206271"], ["https://data.delijn.be/stops/208733", "https://data.delijn.be/stops/209733"], ["https://data.delijn.be/stops/400833", "https://data.delijn.be/stops/403574"], ["https://data.delijn.be/stops/202712", "https://data.delijn.be/stops/203711"], ["https://data.delijn.be/stops/303548", "https://data.delijn.be/stops/306284"], ["https://data.delijn.be/stops/101573", "https://data.delijn.be/stops/101611"], ["https://data.delijn.be/stops/308424", "https://data.delijn.be/stops/308426"], ["https://data.delijn.be/stops/204241", "https://data.delijn.be/stops/205478"], ["https://data.delijn.be/stops/407160", "https://data.delijn.be/stops/409514"], ["https://data.delijn.be/stops/206954", "https://data.delijn.be/stops/300169"], ["https://data.delijn.be/stops/105339", "https://data.delijn.be/stops/105342"], ["https://data.delijn.be/stops/400354", "https://data.delijn.be/stops/400397"], ["https://data.delijn.be/stops/208418", "https://data.delijn.be/stops/209419"], ["https://data.delijn.be/stops/202859", "https://data.delijn.be/stops/202860"], ["https://data.delijn.be/stops/400678", "https://data.delijn.be/stops/405407"], ["https://data.delijn.be/stops/206882", "https://data.delijn.be/stops/206883"], ["https://data.delijn.be/stops/402943", "https://data.delijn.be/stops/301271"], ["https://data.delijn.be/stops/204539", "https://data.delijn.be/stops/204540"], ["https://data.delijn.be/stops/301300", "https://data.delijn.be/stops/301331"], ["https://data.delijn.be/stops/501764", "https://data.delijn.be/stops/502340"], ["https://data.delijn.be/stops/202676", "https://data.delijn.be/stops/203675"], ["https://data.delijn.be/stops/303142", "https://data.delijn.be/stops/304710"], ["https://data.delijn.be/stops/205913", "https://data.delijn.be/stops/205916"], ["https://data.delijn.be/stops/101798", "https://data.delijn.be/stops/300668"], ["https://data.delijn.be/stops/408231", "https://data.delijn.be/stops/408491"], ["https://data.delijn.be/stops/301886", "https://data.delijn.be/stops/301890"], ["https://data.delijn.be/stops/500026", "https://data.delijn.be/stops/505437"], ["https://data.delijn.be/stops/202281", "https://data.delijn.be/stops/203056"], ["https://data.delijn.be/stops/206888", "https://data.delijn.be/stops/207884"], ["https://data.delijn.be/stops/402876", "https://data.delijn.be/stops/301468"], ["https://data.delijn.be/stops/200559", "https://data.delijn.be/stops/210067"], ["https://data.delijn.be/stops/303864", "https://data.delijn.be/stops/303962"], ["https://data.delijn.be/stops/202558", "https://data.delijn.be/stops/203557"], ["https://data.delijn.be/stops/504359", "https://data.delijn.be/stops/505995"], ["https://data.delijn.be/stops/402527", "https://data.delijn.be/stops/404092"], ["https://data.delijn.be/stops/501332", "https://data.delijn.be/stops/506265"], ["https://data.delijn.be/stops/105038", "https://data.delijn.be/stops/105041"], ["https://data.delijn.be/stops/401442", "https://data.delijn.be/stops/401443"], ["https://data.delijn.be/stops/505403", "https://data.delijn.be/stops/509061"], ["https://data.delijn.be/stops/501270", "https://data.delijn.be/stops/506317"], ["https://data.delijn.be/stops/300001", "https://data.delijn.be/stops/302519"], ["https://data.delijn.be/stops/403308", "https://data.delijn.be/stops/410323"], ["https://data.delijn.be/stops/301118", "https://data.delijn.be/stops/304030"], ["https://data.delijn.be/stops/403411", "https://data.delijn.be/stops/403844"], ["https://data.delijn.be/stops/505594", "https://data.delijn.be/stops/509725"], ["https://data.delijn.be/stops/302224", "https://data.delijn.be/stops/302240"], ["https://data.delijn.be/stops/302119", "https://data.delijn.be/stops/304142"], ["https://data.delijn.be/stops/402366", "https://data.delijn.be/stops/402367"], ["https://data.delijn.be/stops/403285", "https://data.delijn.be/stops/408959"], ["https://data.delijn.be/stops/503659", "https://data.delijn.be/stops/505529"], ["https://data.delijn.be/stops/202519", "https://data.delijn.be/stops/203520"], ["https://data.delijn.be/stops/204385", "https://data.delijn.be/stops/205386"], ["https://data.delijn.be/stops/502430", "https://data.delijn.be/stops/502751"], ["https://data.delijn.be/stops/405330", "https://data.delijn.be/stops/405486"], ["https://data.delijn.be/stops/301570", "https://data.delijn.be/stops/308080"], ["https://data.delijn.be/stops/200338", "https://data.delijn.be/stops/200995"], ["https://data.delijn.be/stops/300620", "https://data.delijn.be/stops/303517"], ["https://data.delijn.be/stops/202764", "https://data.delijn.be/stops/203763"], ["https://data.delijn.be/stops/508696", "https://data.delijn.be/stops/509950"], ["https://data.delijn.be/stops/200021", "https://data.delijn.be/stops/201021"], ["https://data.delijn.be/stops/405322", "https://data.delijn.be/stops/405325"], ["https://data.delijn.be/stops/106096", "https://data.delijn.be/stops/106097"], ["https://data.delijn.be/stops/502736", "https://data.delijn.be/stops/507055"], ["https://data.delijn.be/stops/403905", "https://data.delijn.be/stops/403909"], ["https://data.delijn.be/stops/503212", "https://data.delijn.be/stops/508390"], ["https://data.delijn.be/stops/503750", "https://data.delijn.be/stops/509788"], ["https://data.delijn.be/stops/501011", "https://data.delijn.be/stops/501507"], ["https://data.delijn.be/stops/409061", "https://data.delijn.be/stops/409122"], ["https://data.delijn.be/stops/204760", "https://data.delijn.be/stops/205372"], ["https://data.delijn.be/stops/204215", "https://data.delijn.be/stops/205215"], ["https://data.delijn.be/stops/101915", "https://data.delijn.be/stops/104081"], ["https://data.delijn.be/stops/205986", "https://data.delijn.be/stops/206254"], ["https://data.delijn.be/stops/304149", "https://data.delijn.be/stops/304164"], ["https://data.delijn.be/stops/208708", "https://data.delijn.be/stops/209952"], ["https://data.delijn.be/stops/401967", "https://data.delijn.be/stops/401970"], ["https://data.delijn.be/stops/503231", "https://data.delijn.be/stops/508240"], ["https://data.delijn.be/stops/205987", "https://data.delijn.be/stops/209283"], ["https://data.delijn.be/stops/303085", "https://data.delijn.be/stops/303086"], ["https://data.delijn.be/stops/504543", "https://data.delijn.be/stops/504552"], ["https://data.delijn.be/stops/403385", "https://data.delijn.be/stops/403389"], ["https://data.delijn.be/stops/503452", "https://data.delijn.be/stops/504811"], ["https://data.delijn.be/stops/304866", "https://data.delijn.be/stops/304867"], ["https://data.delijn.be/stops/103945", "https://data.delijn.be/stops/103946"], ["https://data.delijn.be/stops/501745", "https://data.delijn.be/stops/506366"], ["https://data.delijn.be/stops/304477", "https://data.delijn.be/stops/304509"], ["https://data.delijn.be/stops/108427", "https://data.delijn.be/stops/109583"], ["https://data.delijn.be/stops/104128", "https://data.delijn.be/stops/107460"], ["https://data.delijn.be/stops/101083", "https://data.delijn.be/stops/107154"], ["https://data.delijn.be/stops/301854", "https://data.delijn.be/stops/305465"], ["https://data.delijn.be/stops/102958", "https://data.delijn.be/stops/107116"], ["https://data.delijn.be/stops/200104", "https://data.delijn.be/stops/201104"], ["https://data.delijn.be/stops/403934", "https://data.delijn.be/stops/408356"], ["https://data.delijn.be/stops/303959", "https://data.delijn.be/stops/303970"], ["https://data.delijn.be/stops/400464", "https://data.delijn.be/stops/400470"], ["https://data.delijn.be/stops/503498", "https://data.delijn.be/stops/508868"], ["https://data.delijn.be/stops/403599", "https://data.delijn.be/stops/407538"], ["https://data.delijn.be/stops/407669", "https://data.delijn.be/stops/409802"], ["https://data.delijn.be/stops/302620", "https://data.delijn.be/stops/305729"], ["https://data.delijn.be/stops/202683", "https://data.delijn.be/stops/203683"], ["https://data.delijn.be/stops/300199", "https://data.delijn.be/stops/300222"], ["https://data.delijn.be/stops/202221", "https://data.delijn.be/stops/204832"], ["https://data.delijn.be/stops/102743", "https://data.delijn.be/stops/102744"], ["https://data.delijn.be/stops/504398", "https://data.delijn.be/stops/504415"], ["https://data.delijn.be/stops/102730", "https://data.delijn.be/stops/102734"], ["https://data.delijn.be/stops/300733", "https://data.delijn.be/stops/302530"], ["https://data.delijn.be/stops/501098", "https://data.delijn.be/stops/506096"], ["https://data.delijn.be/stops/400728", "https://data.delijn.be/stops/400903"], ["https://data.delijn.be/stops/405572", "https://data.delijn.be/stops/405573"], ["https://data.delijn.be/stops/503538", "https://data.delijn.be/stops/505378"], ["https://data.delijn.be/stops/108833", "https://data.delijn.be/stops/108849"], ["https://data.delijn.be/stops/204051", "https://data.delijn.be/stops/205054"], ["https://data.delijn.be/stops/104393", "https://data.delijn.be/stops/104399"], ["https://data.delijn.be/stops/200219", "https://data.delijn.be/stops/210090"], ["https://data.delijn.be/stops/200887", "https://data.delijn.be/stops/203056"], ["https://data.delijn.be/stops/502087", "https://data.delijn.be/stops/507110"], ["https://data.delijn.be/stops/404558", "https://data.delijn.be/stops/406700"], ["https://data.delijn.be/stops/208517", "https://data.delijn.be/stops/209084"], ["https://data.delijn.be/stops/400658", "https://data.delijn.be/stops/400663"], ["https://data.delijn.be/stops/207764", "https://data.delijn.be/stops/207791"], ["https://data.delijn.be/stops/509908", "https://data.delijn.be/stops/509926"], ["https://data.delijn.be/stops/503086", "https://data.delijn.be/stops/503923"], ["https://data.delijn.be/stops/104015", "https://data.delijn.be/stops/105680"], ["https://data.delijn.be/stops/300311", "https://data.delijn.be/stops/302449"], ["https://data.delijn.be/stops/400257", "https://data.delijn.be/stops/405864"], ["https://data.delijn.be/stops/403441", "https://data.delijn.be/stops/403442"], ["https://data.delijn.be/stops/203312", "https://data.delijn.be/stops/203313"], ["https://data.delijn.be/stops/400056", "https://data.delijn.be/stops/400162"], ["https://data.delijn.be/stops/508305", "https://data.delijn.be/stops/508456"], ["https://data.delijn.be/stops/204437", "https://data.delijn.be/stops/204746"], ["https://data.delijn.be/stops/200746", "https://data.delijn.be/stops/201812"], ["https://data.delijn.be/stops/504589", "https://data.delijn.be/stops/509589"], ["https://data.delijn.be/stops/405758", "https://data.delijn.be/stops/303335"], ["https://data.delijn.be/stops/405063", "https://data.delijn.be/stops/405112"], ["https://data.delijn.be/stops/201684", "https://data.delijn.be/stops/202318"], ["https://data.delijn.be/stops/102454", "https://data.delijn.be/stops/109018"], ["https://data.delijn.be/stops/204589", "https://data.delijn.be/stops/205158"], ["https://data.delijn.be/stops/300316", "https://data.delijn.be/stops/300319"], ["https://data.delijn.be/stops/404974", "https://data.delijn.be/stops/404976"], ["https://data.delijn.be/stops/105677", "https://data.delijn.be/stops/109875"], ["https://data.delijn.be/stops/401970", "https://data.delijn.be/stops/408157"], ["https://data.delijn.be/stops/502203", "https://data.delijn.be/stops/508748"], ["https://data.delijn.be/stops/402109", "https://data.delijn.be/stops/402241"], ["https://data.delijn.be/stops/401789", "https://data.delijn.be/stops/401791"], ["https://data.delijn.be/stops/303076", "https://data.delijn.be/stops/307048"], ["https://data.delijn.be/stops/304937", "https://data.delijn.be/stops/304942"], ["https://data.delijn.be/stops/407924", "https://data.delijn.be/stops/408199"], ["https://data.delijn.be/stops/107145", "https://data.delijn.be/stops/107150"], ["https://data.delijn.be/stops/200286", "https://data.delijn.be/stops/201377"], ["https://data.delijn.be/stops/301455", "https://data.delijn.be/stops/307958"], ["https://data.delijn.be/stops/201005", "https://data.delijn.be/stops/202523"], ["https://data.delijn.be/stops/101827", "https://data.delijn.be/stops/106431"], ["https://data.delijn.be/stops/206829", "https://data.delijn.be/stops/207750"], ["https://data.delijn.be/stops/409371", "https://data.delijn.be/stops/409391"], ["https://data.delijn.be/stops/204189", "https://data.delijn.be/stops/204402"], ["https://data.delijn.be/stops/202616", "https://data.delijn.be/stops/203593"], ["https://data.delijn.be/stops/201884", "https://data.delijn.be/stops/202061"], ["https://data.delijn.be/stops/410172", "https://data.delijn.be/stops/410178"], ["https://data.delijn.be/stops/501347", "https://data.delijn.be/stops/506347"], ["https://data.delijn.be/stops/200475", "https://data.delijn.be/stops/201081"], ["https://data.delijn.be/stops/206170", "https://data.delijn.be/stops/303839"], ["https://data.delijn.be/stops/204130", "https://data.delijn.be/stops/204575"], ["https://data.delijn.be/stops/404632", "https://data.delijn.be/stops/406959"], ["https://data.delijn.be/stops/300654", "https://data.delijn.be/stops/302463"], ["https://data.delijn.be/stops/102729", "https://data.delijn.be/stops/106587"], ["https://data.delijn.be/stops/304046", "https://data.delijn.be/stops/304791"], ["https://data.delijn.be/stops/303257", "https://data.delijn.be/stops/303259"], ["https://data.delijn.be/stops/501421", "https://data.delijn.be/stops/506421"], ["https://data.delijn.be/stops/301649", "https://data.delijn.be/stops/301650"], ["https://data.delijn.be/stops/403971", "https://data.delijn.be/stops/403981"], ["https://data.delijn.be/stops/101023", "https://data.delijn.be/stops/103530"], ["https://data.delijn.be/stops/504991", "https://data.delijn.be/stops/507947"], ["https://data.delijn.be/stops/404728", "https://data.delijn.be/stops/404729"], ["https://data.delijn.be/stops/305707", "https://data.delijn.be/stops/306302"], ["https://data.delijn.be/stops/200945", "https://data.delijn.be/stops/203698"], ["https://data.delijn.be/stops/204154", "https://data.delijn.be/stops/205154"], ["https://data.delijn.be/stops/404409", "https://data.delijn.be/stops/404570"], ["https://data.delijn.be/stops/503543", "https://data.delijn.be/stops/508542"], ["https://data.delijn.be/stops/200164", "https://data.delijn.be/stops/208727"], ["https://data.delijn.be/stops/102915", "https://data.delijn.be/stops/102916"], ["https://data.delijn.be/stops/307556", "https://data.delijn.be/stops/307677"], ["https://data.delijn.be/stops/503213", "https://data.delijn.be/stops/508213"], ["https://data.delijn.be/stops/107140", "https://data.delijn.be/stops/107151"], ["https://data.delijn.be/stops/404151", "https://data.delijn.be/stops/407365"], ["https://data.delijn.be/stops/200880", "https://data.delijn.be/stops/211016"], ["https://data.delijn.be/stops/501043", "https://data.delijn.be/stops/506043"], ["https://data.delijn.be/stops/407258", "https://data.delijn.be/stops/409498"], ["https://data.delijn.be/stops/206203", "https://data.delijn.be/stops/207808"], ["https://data.delijn.be/stops/401830", "https://data.delijn.be/stops/406015"], ["https://data.delijn.be/stops/305335", "https://data.delijn.be/stops/305336"], ["https://data.delijn.be/stops/102780", "https://data.delijn.be/stops/104785"], ["https://data.delijn.be/stops/300200", "https://data.delijn.be/stops/304656"], ["https://data.delijn.be/stops/503243", "https://data.delijn.be/stops/503965"], ["https://data.delijn.be/stops/308797", "https://data.delijn.be/stops/308847"], ["https://data.delijn.be/stops/300205", "https://data.delijn.be/stops/303127"], ["https://data.delijn.be/stops/202755", "https://data.delijn.be/stops/202794"], ["https://data.delijn.be/stops/300056", "https://data.delijn.be/stops/306794"], ["https://data.delijn.be/stops/404356", "https://data.delijn.be/stops/404393"], ["https://data.delijn.be/stops/104588", "https://data.delijn.be/stops/106066"], ["https://data.delijn.be/stops/502016", "https://data.delijn.be/stops/503941"], ["https://data.delijn.be/stops/303101", "https://data.delijn.be/stops/305442"], ["https://data.delijn.be/stops/505272", "https://data.delijn.be/stops/508775"], ["https://data.delijn.be/stops/106788", "https://data.delijn.be/stops/106790"], ["https://data.delijn.be/stops/105016", "https://data.delijn.be/stops/105111"], ["https://data.delijn.be/stops/400147", "https://data.delijn.be/stops/400153"], ["https://data.delijn.be/stops/403325", "https://data.delijn.be/stops/405985"], ["https://data.delijn.be/stops/402388", "https://data.delijn.be/stops/402389"], ["https://data.delijn.be/stops/404941", "https://data.delijn.be/stops/405649"], ["https://data.delijn.be/stops/109006", "https://data.delijn.be/stops/402018"], ["https://data.delijn.be/stops/403156", "https://data.delijn.be/stops/403157"], ["https://data.delijn.be/stops/303891", "https://data.delijn.be/stops/305313"], ["https://data.delijn.be/stops/200345", "https://data.delijn.be/stops/210200"], ["https://data.delijn.be/stops/104101", "https://data.delijn.be/stops/104104"], ["https://data.delijn.be/stops/505503", "https://data.delijn.be/stops/505514"], ["https://data.delijn.be/stops/208120", "https://data.delijn.be/stops/209243"], ["https://data.delijn.be/stops/407917", "https://data.delijn.be/stops/407919"], ["https://data.delijn.be/stops/402428", "https://data.delijn.be/stops/409857"], ["https://data.delijn.be/stops/206674", "https://data.delijn.be/stops/209174"], ["https://data.delijn.be/stops/105057", "https://data.delijn.be/stops/105224"], ["https://data.delijn.be/stops/206623", "https://data.delijn.be/stops/218020"], ["https://data.delijn.be/stops/304984", "https://data.delijn.be/stops/304985"], ["https://data.delijn.be/stops/400044", "https://data.delijn.be/stops/400045"], ["https://data.delijn.be/stops/408500", "https://data.delijn.be/stops/408501"], ["https://data.delijn.be/stops/408035", "https://data.delijn.be/stops/408121"], ["https://data.delijn.be/stops/208789", "https://data.delijn.be/stops/209350"], ["https://data.delijn.be/stops/302621", "https://data.delijn.be/stops/302624"], ["https://data.delijn.be/stops/200988", "https://data.delijn.be/stops/201337"], ["https://data.delijn.be/stops/108134", "https://data.delijn.be/stops/108137"], ["https://data.delijn.be/stops/304007", "https://data.delijn.be/stops/304009"], ["https://data.delijn.be/stops/503291", "https://data.delijn.be/stops/505929"], ["https://data.delijn.be/stops/300394", "https://data.delijn.be/stops/303125"], ["https://data.delijn.be/stops/506629", "https://data.delijn.be/stops/506945"], ["https://data.delijn.be/stops/503804", "https://data.delijn.be/stops/508804"], ["https://data.delijn.be/stops/308159", "https://data.delijn.be/stops/308162"], ["https://data.delijn.be/stops/306956", "https://data.delijn.be/stops/308294"], ["https://data.delijn.be/stops/206600", "https://data.delijn.be/stops/206601"], ["https://data.delijn.be/stops/201547", "https://data.delijn.be/stops/211109"], ["https://data.delijn.be/stops/108241", "https://data.delijn.be/stops/108243"], ["https://data.delijn.be/stops/301769", "https://data.delijn.be/stops/306796"], ["https://data.delijn.be/stops/300647", "https://data.delijn.be/stops/302463"], ["https://data.delijn.be/stops/505997", "https://data.delijn.be/stops/509417"], ["https://data.delijn.be/stops/404082", "https://data.delijn.be/stops/404298"], ["https://data.delijn.be/stops/202502", "https://data.delijn.be/stops/203502"], ["https://data.delijn.be/stops/203901", "https://data.delijn.be/stops/211109"], ["https://data.delijn.be/stops/202791", "https://data.delijn.be/stops/203792"], ["https://data.delijn.be/stops/106175", "https://data.delijn.be/stops/109103"], ["https://data.delijn.be/stops/401783", "https://data.delijn.be/stops/401821"], ["https://data.delijn.be/stops/404402", "https://data.delijn.be/stops/404447"], ["https://data.delijn.be/stops/204723", "https://data.delijn.be/stops/205723"], ["https://data.delijn.be/stops/202562", "https://data.delijn.be/stops/203397"], ["https://data.delijn.be/stops/407084", "https://data.delijn.be/stops/407913"], ["https://data.delijn.be/stops/102726", "https://data.delijn.be/stops/102727"], ["https://data.delijn.be/stops/405253", "https://data.delijn.be/stops/406853"], ["https://data.delijn.be/stops/204043", "https://data.delijn.be/stops/205408"], ["https://data.delijn.be/stops/504514", "https://data.delijn.be/stops/504635"], ["https://data.delijn.be/stops/504470", "https://data.delijn.be/stops/504471"], ["https://data.delijn.be/stops/305651", "https://data.delijn.be/stops/308112"], ["https://data.delijn.be/stops/106982", "https://data.delijn.be/stops/106983"], ["https://data.delijn.be/stops/109202", "https://data.delijn.be/stops/109203"], ["https://data.delijn.be/stops/106103", "https://data.delijn.be/stops/106157"], ["https://data.delijn.be/stops/304860", "https://data.delijn.be/stops/304861"], ["https://data.delijn.be/stops/404127", "https://data.delijn.be/stops/404197"], ["https://data.delijn.be/stops/204914", "https://data.delijn.be/stops/204915"], ["https://data.delijn.be/stops/203909", "https://data.delijn.be/stops/211098"], ["https://data.delijn.be/stops/301848", "https://data.delijn.be/stops/301882"], ["https://data.delijn.be/stops/206087", "https://data.delijn.be/stops/206088"], ["https://data.delijn.be/stops/402369", "https://data.delijn.be/stops/408486"], ["https://data.delijn.be/stops/102531", "https://data.delijn.be/stops/102534"], ["https://data.delijn.be/stops/402859", "https://data.delijn.be/stops/402860"], ["https://data.delijn.be/stops/502399", "https://data.delijn.be/stops/507389"], ["https://data.delijn.be/stops/307209", "https://data.delijn.be/stops/307217"], ["https://data.delijn.be/stops/102153", "https://data.delijn.be/stops/108335"], ["https://data.delijn.be/stops/400469", "https://data.delijn.be/stops/400496"], ["https://data.delijn.be/stops/206086", "https://data.delijn.be/stops/206988"], ["https://data.delijn.be/stops/201928", "https://data.delijn.be/stops/203958"], ["https://data.delijn.be/stops/304251", "https://data.delijn.be/stops/305492"], ["https://data.delijn.be/stops/106316", "https://data.delijn.be/stops/106317"], ["https://data.delijn.be/stops/102253", "https://data.delijn.be/stops/109081"], ["https://data.delijn.be/stops/305459", "https://data.delijn.be/stops/305580"], ["https://data.delijn.be/stops/406834", "https://data.delijn.be/stops/407287"], ["https://data.delijn.be/stops/509658", "https://data.delijn.be/stops/509659"], ["https://data.delijn.be/stops/208678", "https://data.delijn.be/stops/209427"], ["https://data.delijn.be/stops/305162", "https://data.delijn.be/stops/305189"], ["https://data.delijn.be/stops/508039", "https://data.delijn.be/stops/508042"], ["https://data.delijn.be/stops/204721", "https://data.delijn.be/stops/205719"], ["https://data.delijn.be/stops/201983", "https://data.delijn.be/stops/202905"], ["https://data.delijn.be/stops/403224", "https://data.delijn.be/stops/403385"], ["https://data.delijn.be/stops/203004", "https://data.delijn.be/stops/203779"], ["https://data.delijn.be/stops/406170", "https://data.delijn.be/stops/406281"], ["https://data.delijn.be/stops/506173", "https://data.delijn.be/stops/506183"], ["https://data.delijn.be/stops/105060", "https://data.delijn.be/stops/106712"], ["https://data.delijn.be/stops/300423", "https://data.delijn.be/stops/308062"], ["https://data.delijn.be/stops/204995", "https://data.delijn.be/stops/303838"], ["https://data.delijn.be/stops/200069", "https://data.delijn.be/stops/201033"], ["https://data.delijn.be/stops/505831", "https://data.delijn.be/stops/505832"], ["https://data.delijn.be/stops/405012", "https://data.delijn.be/stops/405013"], ["https://data.delijn.be/stops/308681", "https://data.delijn.be/stops/308682"], ["https://data.delijn.be/stops/407152", "https://data.delijn.be/stops/407162"], ["https://data.delijn.be/stops/102418", "https://data.delijn.be/stops/105580"], ["https://data.delijn.be/stops/505817", "https://data.delijn.be/stops/509482"], ["https://data.delijn.be/stops/405101", "https://data.delijn.be/stops/405102"], ["https://data.delijn.be/stops/401650", "https://data.delijn.be/stops/405405"], ["https://data.delijn.be/stops/503487", "https://data.delijn.be/stops/508903"], ["https://data.delijn.be/stops/504111", "https://data.delijn.be/stops/504269"], ["https://data.delijn.be/stops/409000", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/505659", "https://data.delijn.be/stops/508047"], ["https://data.delijn.be/stops/503871", "https://data.delijn.be/stops/508867"], ["https://data.delijn.be/stops/507140", "https://data.delijn.be/stops/507151"], ["https://data.delijn.be/stops/204151", "https://data.delijn.be/stops/204778"], ["https://data.delijn.be/stops/204566", "https://data.delijn.be/stops/305481"], ["https://data.delijn.be/stops/204110", "https://data.delijn.be/stops/205105"], ["https://data.delijn.be/stops/502197", "https://data.delijn.be/stops/508345"], ["https://data.delijn.be/stops/402750", "https://data.delijn.be/stops/408088"], ["https://data.delijn.be/stops/303674", "https://data.delijn.be/stops/307683"], ["https://data.delijn.be/stops/301192", "https://data.delijn.be/stops/307615"], ["https://data.delijn.be/stops/307326", "https://data.delijn.be/stops/307327"], ["https://data.delijn.be/stops/302879", "https://data.delijn.be/stops/302880"], ["https://data.delijn.be/stops/107128", "https://data.delijn.be/stops/107129"], ["https://data.delijn.be/stops/204387", "https://data.delijn.be/stops/205387"], ["https://data.delijn.be/stops/401561", "https://data.delijn.be/stops/401744"], ["https://data.delijn.be/stops/201019", "https://data.delijn.be/stops/211106"], ["https://data.delijn.be/stops/200756", "https://data.delijn.be/stops/509817"], ["https://data.delijn.be/stops/103525", "https://data.delijn.be/stops/103740"], ["https://data.delijn.be/stops/405061", "https://data.delijn.be/stops/405863"], ["https://data.delijn.be/stops/108062", "https://data.delijn.be/stops/108362"], ["https://data.delijn.be/stops/308451", "https://data.delijn.be/stops/308513"], ["https://data.delijn.be/stops/502368", "https://data.delijn.be/stops/505608"], ["https://data.delijn.be/stops/403621", "https://data.delijn.be/stops/403622"], ["https://data.delijn.be/stops/406405", "https://data.delijn.be/stops/406410"], ["https://data.delijn.be/stops/500010", "https://data.delijn.be/stops/500011"], ["https://data.delijn.be/stops/206496", "https://data.delijn.be/stops/207474"], ["https://data.delijn.be/stops/303513", "https://data.delijn.be/stops/307891"], ["https://data.delijn.be/stops/204204", "https://data.delijn.be/stops/205192"], ["https://data.delijn.be/stops/106117", "https://data.delijn.be/stops/108709"], ["https://data.delijn.be/stops/406498", "https://data.delijn.be/stops/406508"], ["https://data.delijn.be/stops/404455", "https://data.delijn.be/stops/404562"], ["https://data.delijn.be/stops/302011", "https://data.delijn.be/stops/303894"], ["https://data.delijn.be/stops/505747", "https://data.delijn.be/stops/506187"], ["https://data.delijn.be/stops/101600", "https://data.delijn.be/stops/102733"], ["https://data.delijn.be/stops/107158", "https://data.delijn.be/stops/107558"], ["https://data.delijn.be/stops/503585", "https://data.delijn.be/stops/503591"], ["https://data.delijn.be/stops/507149", "https://data.delijn.be/stops/507164"], ["https://data.delijn.be/stops/208355", "https://data.delijn.be/stops/209355"], ["https://data.delijn.be/stops/200429", "https://data.delijn.be/stops/201429"], ["https://data.delijn.be/stops/300725", "https://data.delijn.be/stops/300726"], ["https://data.delijn.be/stops/304010", "https://data.delijn.be/stops/307991"], ["https://data.delijn.be/stops/505030", "https://data.delijn.be/stops/505035"], ["https://data.delijn.be/stops/501319", "https://data.delijn.be/stops/509898"], ["https://data.delijn.be/stops/503241", "https://data.delijn.be/stops/508246"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/202153"], ["https://data.delijn.be/stops/300275", "https://data.delijn.be/stops/300288"], ["https://data.delijn.be/stops/200561", "https://data.delijn.be/stops/211102"], ["https://data.delijn.be/stops/202160", "https://data.delijn.be/stops/203633"], ["https://data.delijn.be/stops/102938", "https://data.delijn.be/stops/102960"], ["https://data.delijn.be/stops/208155", "https://data.delijn.be/stops/209155"], ["https://data.delijn.be/stops/308126", "https://data.delijn.be/stops/308128"], ["https://data.delijn.be/stops/300896", "https://data.delijn.be/stops/304191"], ["https://data.delijn.be/stops/103991", "https://data.delijn.be/stops/105313"], ["https://data.delijn.be/stops/303829", "https://data.delijn.be/stops/305420"], ["https://data.delijn.be/stops/401145", "https://data.delijn.be/stops/401155"], ["https://data.delijn.be/stops/409415", "https://data.delijn.be/stops/409416"], ["https://data.delijn.be/stops/206682", "https://data.delijn.be/stops/207677"], ["https://data.delijn.be/stops/400450", "https://data.delijn.be/stops/400453"], ["https://data.delijn.be/stops/201144", "https://data.delijn.be/stops/205916"], ["https://data.delijn.be/stops/101446", "https://data.delijn.be/stops/102732"], ["https://data.delijn.be/stops/103502", "https://data.delijn.be/stops/103731"], ["https://data.delijn.be/stops/402355", "https://data.delijn.be/stops/402363"], ["https://data.delijn.be/stops/303576", "https://data.delijn.be/stops/303577"], ["https://data.delijn.be/stops/407398", "https://data.delijn.be/stops/408482"], ["https://data.delijn.be/stops/300998", "https://data.delijn.be/stops/306968"], ["https://data.delijn.be/stops/407033", "https://data.delijn.be/stops/408429"], ["https://data.delijn.be/stops/408972", "https://data.delijn.be/stops/408977"], ["https://data.delijn.be/stops/503896", "https://data.delijn.be/stops/508896"], ["https://data.delijn.be/stops/405851", "https://data.delijn.be/stops/409730"], ["https://data.delijn.be/stops/401671", "https://data.delijn.be/stops/308272"], ["https://data.delijn.be/stops/402592", "https://data.delijn.be/stops/402605"], ["https://data.delijn.be/stops/405805", "https://data.delijn.be/stops/405853"], ["https://data.delijn.be/stops/500559", "https://data.delijn.be/stops/500562"], ["https://data.delijn.be/stops/302560", "https://data.delijn.be/stops/305859"], ["https://data.delijn.be/stops/501628", "https://data.delijn.be/stops/508491"], ["https://data.delijn.be/stops/307008", "https://data.delijn.be/stops/307019"], ["https://data.delijn.be/stops/300938", "https://data.delijn.be/stops/300950"], ["https://data.delijn.be/stops/502532", "https://data.delijn.be/stops/507531"], ["https://data.delijn.be/stops/403458", "https://data.delijn.be/stops/407464"], ["https://data.delijn.be/stops/402177", "https://data.delijn.be/stops/410079"], ["https://data.delijn.be/stops/407241", "https://data.delijn.be/stops/407448"], ["https://data.delijn.be/stops/402800", "https://data.delijn.be/stops/409018"], ["https://data.delijn.be/stops/406564", "https://data.delijn.be/stops/407751"], ["https://data.delijn.be/stops/103557", "https://data.delijn.be/stops/103593"], ["https://data.delijn.be/stops/401582", "https://data.delijn.be/stops/406243"], ["https://data.delijn.be/stops/401034", "https://data.delijn.be/stops/404908"], ["https://data.delijn.be/stops/303255", "https://data.delijn.be/stops/303259"], ["https://data.delijn.be/stops/400400", "https://data.delijn.be/stops/400973"], ["https://data.delijn.be/stops/105859", "https://data.delijn.be/stops/105862"], ["https://data.delijn.be/stops/302745", "https://data.delijn.be/stops/302747"], ["https://data.delijn.be/stops/407785", "https://data.delijn.be/stops/408143"], ["https://data.delijn.be/stops/202966", "https://data.delijn.be/stops/202967"], ["https://data.delijn.be/stops/307958", "https://data.delijn.be/stops/307959"], ["https://data.delijn.be/stops/400324", "https://data.delijn.be/stops/400325"], ["https://data.delijn.be/stops/408001", "https://data.delijn.be/stops/408199"], ["https://data.delijn.be/stops/102314", "https://data.delijn.be/stops/104050"], ["https://data.delijn.be/stops/300175", "https://data.delijn.be/stops/300193"], ["https://data.delijn.be/stops/505371", "https://data.delijn.be/stops/508241"], ["https://data.delijn.be/stops/105501", "https://data.delijn.be/stops/105691"], ["https://data.delijn.be/stops/108560", "https://data.delijn.be/stops/205528"], ["https://data.delijn.be/stops/504004", "https://data.delijn.be/stops/509860"], ["https://data.delijn.be/stops/501080", "https://data.delijn.be/stops/502238"], ["https://data.delijn.be/stops/104369", "https://data.delijn.be/stops/205602"], ["https://data.delijn.be/stops/101278", "https://data.delijn.be/stops/105388"], ["https://data.delijn.be/stops/408546", "https://data.delijn.be/stops/408770"], ["https://data.delijn.be/stops/401600", "https://data.delijn.be/stops/405880"], ["https://data.delijn.be/stops/408896", "https://data.delijn.be/stops/408897"], ["https://data.delijn.be/stops/208463", "https://data.delijn.be/stops/209683"], ["https://data.delijn.be/stops/103006", "https://data.delijn.be/stops/106557"], ["https://data.delijn.be/stops/206679", "https://data.delijn.be/stops/208103"], ["https://data.delijn.be/stops/209520", "https://data.delijn.be/stops/209524"], ["https://data.delijn.be/stops/508833", "https://data.delijn.be/stops/509052"], ["https://data.delijn.be/stops/101472", "https://data.delijn.be/stops/108556"], ["https://data.delijn.be/stops/508106", "https://data.delijn.be/stops/508799"], ["https://data.delijn.be/stops/102625", "https://data.delijn.be/stops/102866"], ["https://data.delijn.be/stops/207314", "https://data.delijn.be/stops/207816"], ["https://data.delijn.be/stops/106366", "https://data.delijn.be/stops/106367"], ["https://data.delijn.be/stops/301452", "https://data.delijn.be/stops/302524"], ["https://data.delijn.be/stops/401774", "https://data.delijn.be/stops/401781"], ["https://data.delijn.be/stops/208606", "https://data.delijn.be/stops/208607"], ["https://data.delijn.be/stops/407640", "https://data.delijn.be/stops/407641"], ["https://data.delijn.be/stops/304831", "https://data.delijn.be/stops/304884"], ["https://data.delijn.be/stops/503837", "https://data.delijn.be/stops/505160"], ["https://data.delijn.be/stops/105726", "https://data.delijn.be/stops/105727"], ["https://data.delijn.be/stops/400375", "https://data.delijn.be/stops/407109"], ["https://data.delijn.be/stops/107130", "https://data.delijn.be/stops/108255"], ["https://data.delijn.be/stops/305956", "https://data.delijn.be/stops/305958"], ["https://data.delijn.be/stops/503776", "https://data.delijn.be/stops/508777"], ["https://data.delijn.be/stops/405383", "https://data.delijn.be/stops/302841"], ["https://data.delijn.be/stops/204343", "https://data.delijn.be/stops/205342"], ["https://data.delijn.be/stops/500158", "https://data.delijn.be/stops/505177"], ["https://data.delijn.be/stops/103623", "https://data.delijn.be/stops/107734"], ["https://data.delijn.be/stops/209307", "https://data.delijn.be/stops/505973"], ["https://data.delijn.be/stops/502795", "https://data.delijn.be/stops/507933"], ["https://data.delijn.be/stops/503883", "https://data.delijn.be/stops/508885"], ["https://data.delijn.be/stops/105221", "https://data.delijn.be/stops/108056"], ["https://data.delijn.be/stops/205112", "https://data.delijn.be/stops/205682"], ["https://data.delijn.be/stops/403176", "https://data.delijn.be/stops/403205"], ["https://data.delijn.be/stops/408735", "https://data.delijn.be/stops/408785"], ["https://data.delijn.be/stops/502571", "https://data.delijn.be/stops/507571"], ["https://data.delijn.be/stops/300541", "https://data.delijn.be/stops/304888"], ["https://data.delijn.be/stops/501422", "https://data.delijn.be/stops/506422"], ["https://data.delijn.be/stops/200544", "https://data.delijn.be/stops/211107"], ["https://data.delijn.be/stops/208592", "https://data.delijn.be/stops/209217"], ["https://data.delijn.be/stops/400791", "https://data.delijn.be/stops/409541"], ["https://data.delijn.be/stops/202368", "https://data.delijn.be/stops/202976"], ["https://data.delijn.be/stops/406553", "https://data.delijn.be/stops/406567"], ["https://data.delijn.be/stops/302964", "https://data.delijn.be/stops/306281"], ["https://data.delijn.be/stops/207754", "https://data.delijn.be/stops/207771"], ["https://data.delijn.be/stops/502537", "https://data.delijn.be/stops/507542"], ["https://data.delijn.be/stops/204060", "https://data.delijn.be/stops/205711"], ["https://data.delijn.be/stops/103661", "https://data.delijn.be/stops/106220"], ["https://data.delijn.be/stops/103077", "https://data.delijn.be/stops/103078"], ["https://data.delijn.be/stops/205790", "https://data.delijn.be/stops/205791"], ["https://data.delijn.be/stops/505050", "https://data.delijn.be/stops/507673"], ["https://data.delijn.be/stops/108400", "https://data.delijn.be/stops/108402"], ["https://data.delijn.be/stops/400839", "https://data.delijn.be/stops/409568"], ["https://data.delijn.be/stops/503660", "https://data.delijn.be/stops/505979"], ["https://data.delijn.be/stops/503146", "https://data.delijn.be/stops/509622"], ["https://data.delijn.be/stops/502187", "https://data.delijn.be/stops/502683"], ["https://data.delijn.be/stops/304261", "https://data.delijn.be/stops/306667"], ["https://data.delijn.be/stops/205497", "https://data.delijn.be/stops/205552"], ["https://data.delijn.be/stops/304159", "https://data.delijn.be/stops/307757"], ["https://data.delijn.be/stops/300431", "https://data.delijn.be/stops/302662"], ["https://data.delijn.be/stops/403502", "https://data.delijn.be/stops/409574"], ["https://data.delijn.be/stops/502108", "https://data.delijn.be/stops/502113"], ["https://data.delijn.be/stops/200742", "https://data.delijn.be/stops/203382"], ["https://data.delijn.be/stops/206118", "https://data.delijn.be/stops/207120"], ["https://data.delijn.be/stops/401771", "https://data.delijn.be/stops/401851"], ["https://data.delijn.be/stops/204972", "https://data.delijn.be/stops/204973"], ["https://data.delijn.be/stops/208216", "https://data.delijn.be/stops/209786"], ["https://data.delijn.be/stops/400702", "https://data.delijn.be/stops/406816"], ["https://data.delijn.be/stops/502636", "https://data.delijn.be/stops/507636"], ["https://data.delijn.be/stops/206859", "https://data.delijn.be/stops/207538"], ["https://data.delijn.be/stops/305819", "https://data.delijn.be/stops/308441"], ["https://data.delijn.be/stops/401476", "https://data.delijn.be/stops/401477"], ["https://data.delijn.be/stops/403345", "https://data.delijn.be/stops/403442"], ["https://data.delijn.be/stops/105482", "https://data.delijn.be/stops/105689"], ["https://data.delijn.be/stops/409556", "https://data.delijn.be/stops/409560"], ["https://data.delijn.be/stops/501355", "https://data.delijn.be/stops/501523"], ["https://data.delijn.be/stops/300831", "https://data.delijn.be/stops/306968"], ["https://data.delijn.be/stops/403526", "https://data.delijn.be/stops/408453"], ["https://data.delijn.be/stops/303414", "https://data.delijn.be/stops/303435"], ["https://data.delijn.be/stops/505396", "https://data.delijn.be/stops/508024"], ["https://data.delijn.be/stops/306146", "https://data.delijn.be/stops/306151"], ["https://data.delijn.be/stops/205148", "https://data.delijn.be/stops/205476"], ["https://data.delijn.be/stops/201475", "https://data.delijn.be/stops/201477"], ["https://data.delijn.be/stops/504455", "https://data.delijn.be/stops/509455"], ["https://data.delijn.be/stops/201113", "https://data.delijn.be/stops/211047"], ["https://data.delijn.be/stops/301703", "https://data.delijn.be/stops/301704"], ["https://data.delijn.be/stops/300268", "https://data.delijn.be/stops/301938"], ["https://data.delijn.be/stops/300472", "https://data.delijn.be/stops/300473"], ["https://data.delijn.be/stops/305099", "https://data.delijn.be/stops/305101"], ["https://data.delijn.be/stops/402242", "https://data.delijn.be/stops/402405"], ["https://data.delijn.be/stops/509701", "https://data.delijn.be/stops/509927"], ["https://data.delijn.be/stops/104042", "https://data.delijn.be/stops/108521"], ["https://data.delijn.be/stops/502006", "https://data.delijn.be/stops/505222"], ["https://data.delijn.be/stops/201842", "https://data.delijn.be/stops/208733"], ["https://data.delijn.be/stops/207724", "https://data.delijn.be/stops/207733"], ["https://data.delijn.be/stops/205749", "https://data.delijn.be/stops/205750"], ["https://data.delijn.be/stops/504639", "https://data.delijn.be/stops/505915"], ["https://data.delijn.be/stops/300836", "https://data.delijn.be/stops/301812"], ["https://data.delijn.be/stops/200955", "https://data.delijn.be/stops/203507"], ["https://data.delijn.be/stops/502643", "https://data.delijn.be/stops/507643"], ["https://data.delijn.be/stops/202750", "https://data.delijn.be/stops/210041"], ["https://data.delijn.be/stops/302909", "https://data.delijn.be/stops/304711"], ["https://data.delijn.be/stops/208792", "https://data.delijn.be/stops/209782"], ["https://data.delijn.be/stops/505315", "https://data.delijn.be/stops/505695"], ["https://data.delijn.be/stops/104881", "https://data.delijn.be/stops/104882"], ["https://data.delijn.be/stops/109193", "https://data.delijn.be/stops/109194"], ["https://data.delijn.be/stops/304773", "https://data.delijn.be/stops/308815"], ["https://data.delijn.be/stops/404440", "https://data.delijn.be/stops/404548"], ["https://data.delijn.be/stops/104051", "https://data.delijn.be/stops/108398"], ["https://data.delijn.be/stops/408741", "https://data.delijn.be/stops/408744"], ["https://data.delijn.be/stops/107557", "https://data.delijn.be/stops/107558"], ["https://data.delijn.be/stops/107585", "https://data.delijn.be/stops/107595"], ["https://data.delijn.be/stops/409360", "https://data.delijn.be/stops/409439"], ["https://data.delijn.be/stops/201028", "https://data.delijn.be/stops/201030"], ["https://data.delijn.be/stops/504446", "https://data.delijn.be/stops/509109"], ["https://data.delijn.be/stops/503460", "https://data.delijn.be/stops/503465"], ["https://data.delijn.be/stops/202027", "https://data.delijn.be/stops/203027"], ["https://data.delijn.be/stops/502714", "https://data.delijn.be/stops/505598"], ["https://data.delijn.be/stops/211852", "https://data.delijn.be/stops/507596"], ["https://data.delijn.be/stops/501205", "https://data.delijn.be/stops/501206"], ["https://data.delijn.be/stops/208618", "https://data.delijn.be/stops/209565"], ["https://data.delijn.be/stops/303411", "https://data.delijn.be/stops/303426"], ["https://data.delijn.be/stops/508924", "https://data.delijn.be/stops/509822"], ["https://data.delijn.be/stops/103239", "https://data.delijn.be/stops/107293"], ["https://data.delijn.be/stops/206486", "https://data.delijn.be/stops/206648"], ["https://data.delijn.be/stops/305013", "https://data.delijn.be/stops/305035"], ["https://data.delijn.be/stops/108814", "https://data.delijn.be/stops/108816"], ["https://data.delijn.be/stops/101904", "https://data.delijn.be/stops/105465"], ["https://data.delijn.be/stops/209385", "https://data.delijn.be/stops/209386"], ["https://data.delijn.be/stops/106732", "https://data.delijn.be/stops/108920"], ["https://data.delijn.be/stops/303855", "https://data.delijn.be/stops/305524"], ["https://data.delijn.be/stops/502112", "https://data.delijn.be/stops/507108"], ["https://data.delijn.be/stops/200867", "https://data.delijn.be/stops/200884"], ["https://data.delijn.be/stops/504499", "https://data.delijn.be/stops/509500"], ["https://data.delijn.be/stops/400952", "https://data.delijn.be/stops/406569"], ["https://data.delijn.be/stops/200935", "https://data.delijn.be/stops/203714"], ["https://data.delijn.be/stops/503184", "https://data.delijn.be/stops/508815"], ["https://data.delijn.be/stops/300761", "https://data.delijn.be/stops/301298"], ["https://data.delijn.be/stops/509232", "https://data.delijn.be/stops/509242"], ["https://data.delijn.be/stops/202627", "https://data.delijn.be/stops/203626"], ["https://data.delijn.be/stops/208152", "https://data.delijn.be/stops/209678"], ["https://data.delijn.be/stops/206258", "https://data.delijn.be/stops/207290"], ["https://data.delijn.be/stops/108667", "https://data.delijn.be/stops/306611"], ["https://data.delijn.be/stops/307471", "https://data.delijn.be/stops/308859"], ["https://data.delijn.be/stops/107283", "https://data.delijn.be/stops/107286"], ["https://data.delijn.be/stops/106174", "https://data.delijn.be/stops/109183"], ["https://data.delijn.be/stops/301752", "https://data.delijn.be/stops/305918"], ["https://data.delijn.be/stops/409062", "https://data.delijn.be/stops/409137"], ["https://data.delijn.be/stops/101637", "https://data.delijn.be/stops/102825"], ["https://data.delijn.be/stops/400672", "https://data.delijn.be/stops/400676"], ["https://data.delijn.be/stops/305131", "https://data.delijn.be/stops/305134"], ["https://data.delijn.be/stops/101586", "https://data.delijn.be/stops/105726"], ["https://data.delijn.be/stops/409367", "https://data.delijn.be/stops/409369"], ["https://data.delijn.be/stops/402337", "https://data.delijn.be/stops/402339"], ["https://data.delijn.be/stops/303581", "https://data.delijn.be/stops/306395"], ["https://data.delijn.be/stops/505029", "https://data.delijn.be/stops/506048"], ["https://data.delijn.be/stops/106180", "https://data.delijn.be/stops/106182"], ["https://data.delijn.be/stops/404598", "https://data.delijn.be/stops/406901"], ["https://data.delijn.be/stops/208516", "https://data.delijn.be/stops/209441"], ["https://data.delijn.be/stops/302213", "https://data.delijn.be/stops/302231"], ["https://data.delijn.be/stops/501193", "https://data.delijn.be/stops/501498"], ["https://data.delijn.be/stops/502290", "https://data.delijn.be/stops/505725"], ["https://data.delijn.be/stops/206587", "https://data.delijn.be/stops/208951"], ["https://data.delijn.be/stops/500555", "https://data.delijn.be/stops/507207"], ["https://data.delijn.be/stops/307740", "https://data.delijn.be/stops/307743"], ["https://data.delijn.be/stops/208138", "https://data.delijn.be/stops/209138"], ["https://data.delijn.be/stops/403598", "https://data.delijn.be/stops/403599"], ["https://data.delijn.be/stops/203556", "https://data.delijn.be/stops/203557"], ["https://data.delijn.be/stops/308687", "https://data.delijn.be/stops/308688"], ["https://data.delijn.be/stops/107784", "https://data.delijn.be/stops/107787"], ["https://data.delijn.be/stops/304090", "https://data.delijn.be/stops/304091"], ["https://data.delijn.be/stops/503544", "https://data.delijn.be/stops/503564"], ["https://data.delijn.be/stops/301642", "https://data.delijn.be/stops/306154"], ["https://data.delijn.be/stops/102680", "https://data.delijn.be/stops/102830"], ["https://data.delijn.be/stops/509583", "https://data.delijn.be/stops/509587"], ["https://data.delijn.be/stops/404228", "https://data.delijn.be/stops/409601"], ["https://data.delijn.be/stops/202262", "https://data.delijn.be/stops/202263"], ["https://data.delijn.be/stops/503261", "https://data.delijn.be/stops/509793"], ["https://data.delijn.be/stops/305658", "https://data.delijn.be/stops/305667"], ["https://data.delijn.be/stops/505255", "https://data.delijn.be/stops/505266"], ["https://data.delijn.be/stops/300721", "https://data.delijn.be/stops/300723"], ["https://data.delijn.be/stops/404713", "https://data.delijn.be/stops/404764"], ["https://data.delijn.be/stops/503488", "https://data.delijn.be/stops/505713"], ["https://data.delijn.be/stops/206069", "https://data.delijn.be/stops/206267"], ["https://data.delijn.be/stops/203128", "https://data.delijn.be/stops/211851"], ["https://data.delijn.be/stops/401017", "https://data.delijn.be/stops/401137"], ["https://data.delijn.be/stops/307833", "https://data.delijn.be/stops/308272"], ["https://data.delijn.be/stops/306946", "https://data.delijn.be/stops/306948"], ["https://data.delijn.be/stops/106229", "https://data.delijn.be/stops/109123"], ["https://data.delijn.be/stops/405751", "https://data.delijn.be/stops/408328"], ["https://data.delijn.be/stops/503977", "https://data.delijn.be/stops/508978"], ["https://data.delijn.be/stops/301355", "https://data.delijn.be/stops/306129"], ["https://data.delijn.be/stops/400368", "https://data.delijn.be/stops/400369"], ["https://data.delijn.be/stops/201208", "https://data.delijn.be/stops/202143"], ["https://data.delijn.be/stops/104752", "https://data.delijn.be/stops/107328"], ["https://data.delijn.be/stops/501346", "https://data.delijn.be/stops/501391"], ["https://data.delijn.be/stops/201350", "https://data.delijn.be/stops/209950"], ["https://data.delijn.be/stops/200661", "https://data.delijn.be/stops/201809"], ["https://data.delijn.be/stops/102701", "https://data.delijn.be/stops/105549"], ["https://data.delijn.be/stops/102218", "https://data.delijn.be/stops/105538"], ["https://data.delijn.be/stops/405849", "https://data.delijn.be/stops/405869"], ["https://data.delijn.be/stops/102417", "https://data.delijn.be/stops/105661"], ["https://data.delijn.be/stops/506088", "https://data.delijn.be/stops/506091"], ["https://data.delijn.be/stops/107090", "https://data.delijn.be/stops/107355"], ["https://data.delijn.be/stops/301695", "https://data.delijn.be/stops/301777"], ["https://data.delijn.be/stops/303009", "https://data.delijn.be/stops/304925"], ["https://data.delijn.be/stops/400718", "https://data.delijn.be/stops/409511"], ["https://data.delijn.be/stops/103855", "https://data.delijn.be/stops/104680"], ["https://data.delijn.be/stops/403525", "https://data.delijn.be/stops/403641"], ["https://data.delijn.be/stops/406844", "https://data.delijn.be/stops/406999"], ["https://data.delijn.be/stops/102688", "https://data.delijn.be/stops/105671"], ["https://data.delijn.be/stops/408638", "https://data.delijn.be/stops/301953"], ["https://data.delijn.be/stops/206091", "https://data.delijn.be/stops/207089"], ["https://data.delijn.be/stops/505259", "https://data.delijn.be/stops/508671"], ["https://data.delijn.be/stops/105649", "https://data.delijn.be/stops/105652"], ["https://data.delijn.be/stops/108282", "https://data.delijn.be/stops/109364"], ["https://data.delijn.be/stops/108475", "https://data.delijn.be/stops/108495"], ["https://data.delijn.be/stops/501324", "https://data.delijn.be/stops/506326"], ["https://data.delijn.be/stops/108921", "https://data.delijn.be/stops/108922"], ["https://data.delijn.be/stops/301657", "https://data.delijn.be/stops/301891"], ["https://data.delijn.be/stops/404103", "https://data.delijn.be/stops/404107"], ["https://data.delijn.be/stops/502517", "https://data.delijn.be/stops/502812"], ["https://data.delijn.be/stops/218024", "https://data.delijn.be/stops/219025"], ["https://data.delijn.be/stops/102492", "https://data.delijn.be/stops/400418"], ["https://data.delijn.be/stops/404964", "https://data.delijn.be/stops/404965"], ["https://data.delijn.be/stops/208019", "https://data.delijn.be/stops/208029"], ["https://data.delijn.be/stops/206180", "https://data.delijn.be/stops/207180"], ["https://data.delijn.be/stops/304306", "https://data.delijn.be/stops/304329"], ["https://data.delijn.be/stops/404110", "https://data.delijn.be/stops/409284"], ["https://data.delijn.be/stops/402393", "https://data.delijn.be/stops/402450"], ["https://data.delijn.be/stops/206549", "https://data.delijn.be/stops/206648"], ["https://data.delijn.be/stops/500136", "https://data.delijn.be/stops/502562"], ["https://data.delijn.be/stops/208697", "https://data.delijn.be/stops/208700"], ["https://data.delijn.be/stops/204374", "https://data.delijn.be/stops/205384"], ["https://data.delijn.be/stops/308938", "https://data.delijn.be/stops/308965"], ["https://data.delijn.be/stops/204705", "https://data.delijn.be/stops/204706"], ["https://data.delijn.be/stops/206465", "https://data.delijn.be/stops/206466"], ["https://data.delijn.be/stops/300655", "https://data.delijn.be/stops/300656"], ["https://data.delijn.be/stops/301961", "https://data.delijn.be/stops/304152"], ["https://data.delijn.be/stops/409372", "https://data.delijn.be/stops/409389"], ["https://data.delijn.be/stops/109066", "https://data.delijn.be/stops/307363"], ["https://data.delijn.be/stops/303157", "https://data.delijn.be/stops/304186"], ["https://data.delijn.be/stops/502094", "https://data.delijn.be/stops/502104"], ["https://data.delijn.be/stops/202947", "https://data.delijn.be/stops/216009"], ["https://data.delijn.be/stops/206079", "https://data.delijn.be/stops/206880"], ["https://data.delijn.be/stops/402528", "https://data.delijn.be/stops/402529"], ["https://data.delijn.be/stops/205237", "https://data.delijn.be/stops/207291"], ["https://data.delijn.be/stops/400748", "https://data.delijn.be/stops/400749"], ["https://data.delijn.be/stops/402812", "https://data.delijn.be/stops/409024"], ["https://data.delijn.be/stops/505232", "https://data.delijn.be/stops/507233"], ["https://data.delijn.be/stops/204754", "https://data.delijn.be/stops/205754"], ["https://data.delijn.be/stops/201846", "https://data.delijn.be/stops/203305"], ["https://data.delijn.be/stops/304074", "https://data.delijn.be/stops/304114"], ["https://data.delijn.be/stops/303389", "https://data.delijn.be/stops/307136"], ["https://data.delijn.be/stops/503016", "https://data.delijn.be/stops/503819"], ["https://data.delijn.be/stops/405443", "https://data.delijn.be/stops/408612"], ["https://data.delijn.be/stops/201276", "https://data.delijn.be/stops/203541"], ["https://data.delijn.be/stops/301028", "https://data.delijn.be/stops/301114"], ["https://data.delijn.be/stops/108626", "https://data.delijn.be/stops/301843"], ["https://data.delijn.be/stops/102660", "https://data.delijn.be/stops/108761"], ["https://data.delijn.be/stops/405608", "https://data.delijn.be/stops/405609"], ["https://data.delijn.be/stops/503357", "https://data.delijn.be/stops/509939"], ["https://data.delijn.be/stops/207666", "https://data.delijn.be/stops/207669"], ["https://data.delijn.be/stops/105964", "https://data.delijn.be/stops/105967"], ["https://data.delijn.be/stops/503111", "https://data.delijn.be/stops/508021"], ["https://data.delijn.be/stops/201693", "https://data.delijn.be/stops/203982"], ["https://data.delijn.be/stops/400943", "https://data.delijn.be/stops/404992"], ["https://data.delijn.be/stops/102435", "https://data.delijn.be/stops/104011"], ["https://data.delijn.be/stops/303246", "https://data.delijn.be/stops/304861"], ["https://data.delijn.be/stops/402518", "https://data.delijn.be/stops/402519"], ["https://data.delijn.be/stops/102852", "https://data.delijn.be/stops/205284"], ["https://data.delijn.be/stops/502008", "https://data.delijn.be/stops/505027"], ["https://data.delijn.be/stops/503099", "https://data.delijn.be/stops/503675"], ["https://data.delijn.be/stops/308722", "https://data.delijn.be/stops/308734"], ["https://data.delijn.be/stops/305642", "https://data.delijn.be/stops/305726"], ["https://data.delijn.be/stops/200237", "https://data.delijn.be/stops/201237"], ["https://data.delijn.be/stops/404644", "https://data.delijn.be/stops/406912"], ["https://data.delijn.be/stops/304397", "https://data.delijn.be/stops/304398"], ["https://data.delijn.be/stops/204176", "https://data.delijn.be/stops/204177"], ["https://data.delijn.be/stops/301588", "https://data.delijn.be/stops/301591"], ["https://data.delijn.be/stops/102623", "https://data.delijn.be/stops/108217"], ["https://data.delijn.be/stops/407404", "https://data.delijn.be/stops/407405"], ["https://data.delijn.be/stops/206299", "https://data.delijn.be/stops/206494"], ["https://data.delijn.be/stops/104093", "https://data.delijn.be/stops/109923"], ["https://data.delijn.be/stops/407014", "https://data.delijn.be/stops/407046"], ["https://data.delijn.be/stops/403336", "https://data.delijn.be/stops/403994"], ["https://data.delijn.be/stops/204615", "https://data.delijn.be/stops/204658"], ["https://data.delijn.be/stops/503303", "https://data.delijn.be/stops/503320"], ["https://data.delijn.be/stops/101211", "https://data.delijn.be/stops/107823"], ["https://data.delijn.be/stops/103002", "https://data.delijn.be/stops/107417"], ["https://data.delijn.be/stops/208038", "https://data.delijn.be/stops/209039"], ["https://data.delijn.be/stops/307632", "https://data.delijn.be/stops/308278"], ["https://data.delijn.be/stops/204405", "https://data.delijn.be/stops/205199"], ["https://data.delijn.be/stops/203529", "https://data.delijn.be/stops/204063"], ["https://data.delijn.be/stops/300077", "https://data.delijn.be/stops/308453"], ["https://data.delijn.be/stops/107855", "https://data.delijn.be/stops/108780"], ["https://data.delijn.be/stops/202747", "https://data.delijn.be/stops/207594"], ["https://data.delijn.be/stops/107598", "https://data.delijn.be/stops/109861"], ["https://data.delijn.be/stops/206689", "https://data.delijn.be/stops/207873"], ["https://data.delijn.be/stops/301422", "https://data.delijn.be/stops/302133"], ["https://data.delijn.be/stops/300501", "https://data.delijn.be/stops/300510"], ["https://data.delijn.be/stops/102684", "https://data.delijn.be/stops/107338"], ["https://data.delijn.be/stops/401446", "https://data.delijn.be/stops/401516"], ["https://data.delijn.be/stops/304533", "https://data.delijn.be/stops/307586"], ["https://data.delijn.be/stops/200937", "https://data.delijn.be/stops/203435"], ["https://data.delijn.be/stops/405124", "https://data.delijn.be/stops/405319"], ["https://data.delijn.be/stops/103145", "https://data.delijn.be/stops/109444"], ["https://data.delijn.be/stops/101780", "https://data.delijn.be/stops/105340"], ["https://data.delijn.be/stops/405505", "https://data.delijn.be/stops/407702"], ["https://data.delijn.be/stops/107007", "https://data.delijn.be/stops/107008"], ["https://data.delijn.be/stops/102933", "https://data.delijn.be/stops/106037"], ["https://data.delijn.be/stops/409441", "https://data.delijn.be/stops/409442"], ["https://data.delijn.be/stops/408200", "https://data.delijn.be/stops/307451"], ["https://data.delijn.be/stops/200114", "https://data.delijn.be/stops/203057"], ["https://data.delijn.be/stops/302995", "https://data.delijn.be/stops/302996"], ["https://data.delijn.be/stops/304557", "https://data.delijn.be/stops/307570"], ["https://data.delijn.be/stops/204447", "https://data.delijn.be/stops/205449"], ["https://data.delijn.be/stops/107192", "https://data.delijn.be/stops/109383"], ["https://data.delijn.be/stops/208831", "https://data.delijn.be/stops/209796"], ["https://data.delijn.be/stops/104301", "https://data.delijn.be/stops/104552"], ["https://data.delijn.be/stops/203477", "https://data.delijn.be/stops/211003"], ["https://data.delijn.be/stops/109014", "https://data.delijn.be/stops/109643"], ["https://data.delijn.be/stops/103322", "https://data.delijn.be/stops/105660"], ["https://data.delijn.be/stops/406255", "https://data.delijn.be/stops/406290"], ["https://data.delijn.be/stops/302630", "https://data.delijn.be/stops/302642"], ["https://data.delijn.be/stops/301794", "https://data.delijn.be/stops/305313"], ["https://data.delijn.be/stops/404603", "https://data.delijn.be/stops/404604"], ["https://data.delijn.be/stops/300017", "https://data.delijn.be/stops/303092"], ["https://data.delijn.be/stops/405023", "https://data.delijn.be/stops/405071"], ["https://data.delijn.be/stops/206645", "https://data.delijn.be/stops/209686"], ["https://data.delijn.be/stops/204473", "https://data.delijn.be/stops/205094"], ["https://data.delijn.be/stops/405842", "https://data.delijn.be/stops/405843"], ["https://data.delijn.be/stops/300815", "https://data.delijn.be/stops/300836"], ["https://data.delijn.be/stops/505797", "https://data.delijn.be/stops/507957"], ["https://data.delijn.be/stops/101170", "https://data.delijn.be/stops/101175"], ["https://data.delijn.be/stops/303645", "https://data.delijn.be/stops/305541"], ["https://data.delijn.be/stops/102746", "https://data.delijn.be/stops/104589"], ["https://data.delijn.be/stops/403388", "https://data.delijn.be/stops/403662"], ["https://data.delijn.be/stops/201941", "https://data.delijn.be/stops/211054"], ["https://data.delijn.be/stops/300391", "https://data.delijn.be/stops/300392"], ["https://data.delijn.be/stops/401442", "https://data.delijn.be/stops/401567"], ["https://data.delijn.be/stops/103369", "https://data.delijn.be/stops/103393"], ["https://data.delijn.be/stops/405333", "https://data.delijn.be/stops/405340"], ["https://data.delijn.be/stops/501305", "https://data.delijn.be/stops/501477"], ["https://data.delijn.be/stops/208219", "https://data.delijn.be/stops/209771"], ["https://data.delijn.be/stops/502424", "https://data.delijn.be/stops/507434"], ["https://data.delijn.be/stops/206112", "https://data.delijn.be/stops/207229"], ["https://data.delijn.be/stops/301723", "https://data.delijn.be/stops/303467"], ["https://data.delijn.be/stops/101811", "https://data.delijn.be/stops/103116"], ["https://data.delijn.be/stops/201356", "https://data.delijn.be/stops/208727"], ["https://data.delijn.be/stops/208177", "https://data.delijn.be/stops/209177"], ["https://data.delijn.be/stops/500007", "https://data.delijn.be/stops/509947"], ["https://data.delijn.be/stops/302571", "https://data.delijn.be/stops/308119"], ["https://data.delijn.be/stops/200821", "https://data.delijn.be/stops/209653"], ["https://data.delijn.be/stops/101409", "https://data.delijn.be/stops/101411"], ["https://data.delijn.be/stops/408396", "https://data.delijn.be/stops/408397"], ["https://data.delijn.be/stops/200352", "https://data.delijn.be/stops/202650"], ["https://data.delijn.be/stops/105019", "https://data.delijn.be/stops/105096"], ["https://data.delijn.be/stops/201862", "https://data.delijn.be/stops/203274"], ["https://data.delijn.be/stops/408295", "https://data.delijn.be/stops/308182"], ["https://data.delijn.be/stops/402378", "https://data.delijn.be/stops/402439"], ["https://data.delijn.be/stops/505166", "https://data.delijn.be/stops/509426"], ["https://data.delijn.be/stops/103169", "https://data.delijn.be/stops/104093"], ["https://data.delijn.be/stops/300759", "https://data.delijn.be/stops/300791"], ["https://data.delijn.be/stops/102378", "https://data.delijn.be/stops/102379"], ["https://data.delijn.be/stops/207262", "https://data.delijn.be/stops/207263"], ["https://data.delijn.be/stops/303717", "https://data.delijn.be/stops/303718"], ["https://data.delijn.be/stops/404363", "https://data.delijn.be/stops/404364"], ["https://data.delijn.be/stops/304237", "https://data.delijn.be/stops/306706"], ["https://data.delijn.be/stops/301856", "https://data.delijn.be/stops/307285"], ["https://data.delijn.be/stops/201546", "https://data.delijn.be/stops/203898"], ["https://data.delijn.be/stops/402080", "https://data.delijn.be/stops/402081"], ["https://data.delijn.be/stops/406901", "https://data.delijn.be/stops/406920"], ["https://data.delijn.be/stops/201095", "https://data.delijn.be/stops/201482"], ["https://data.delijn.be/stops/406322", "https://data.delijn.be/stops/406325"], ["https://data.delijn.be/stops/208431", "https://data.delijn.be/stops/208677"], ["https://data.delijn.be/stops/308746", "https://data.delijn.be/stops/308748"], ["https://data.delijn.be/stops/303167", "https://data.delijn.be/stops/304327"], ["https://data.delijn.be/stops/400729", "https://data.delijn.be/stops/409442"], ["https://data.delijn.be/stops/504069", "https://data.delijn.be/stops/509064"], ["https://data.delijn.be/stops/302032", "https://data.delijn.be/stops/308756"], ["https://data.delijn.be/stops/301321", "https://data.delijn.be/stops/301912"], ["https://data.delijn.be/stops/301265", "https://data.delijn.be/stops/301275"], ["https://data.delijn.be/stops/201773", "https://data.delijn.be/stops/218026"], ["https://data.delijn.be/stops/206376", "https://data.delijn.be/stops/207727"], ["https://data.delijn.be/stops/403356", "https://data.delijn.be/stops/403520"], ["https://data.delijn.be/stops/200156", "https://data.delijn.be/stops/201545"], ["https://data.delijn.be/stops/106083", "https://data.delijn.be/stops/106138"], ["https://data.delijn.be/stops/505186", "https://data.delijn.be/stops/505960"], ["https://data.delijn.be/stops/405176", "https://data.delijn.be/stops/405218"], ["https://data.delijn.be/stops/305547", "https://data.delijn.be/stops/305568"], ["https://data.delijn.be/stops/504389", "https://data.delijn.be/stops/505977"], ["https://data.delijn.be/stops/200531", "https://data.delijn.be/stops/210079"], ["https://data.delijn.be/stops/202048", "https://data.delijn.be/stops/203048"], ["https://data.delijn.be/stops/204540", "https://data.delijn.be/stops/204619"], ["https://data.delijn.be/stops/407896", "https://data.delijn.be/stops/407897"], ["https://data.delijn.be/stops/303472", "https://data.delijn.be/stops/303473"], ["https://data.delijn.be/stops/402408", "https://data.delijn.be/stops/402419"], ["https://data.delijn.be/stops/504227", "https://data.delijn.be/stops/505706"], ["https://data.delijn.be/stops/400549", "https://data.delijn.be/stops/403858"], ["https://data.delijn.be/stops/206286", "https://data.delijn.be/stops/206291"], ["https://data.delijn.be/stops/300463", "https://data.delijn.be/stops/302669"], ["https://data.delijn.be/stops/401538", "https://data.delijn.be/stops/401887"], ["https://data.delijn.be/stops/302473", "https://data.delijn.be/stops/302474"], ["https://data.delijn.be/stops/407683", "https://data.delijn.be/stops/407684"], ["https://data.delijn.be/stops/208553", "https://data.delijn.be/stops/208554"], ["https://data.delijn.be/stops/402773", "https://data.delijn.be/stops/402776"], ["https://data.delijn.be/stops/405311", "https://data.delijn.be/stops/306777"], ["https://data.delijn.be/stops/102166", "https://data.delijn.be/stops/104585"], ["https://data.delijn.be/stops/402151", "https://data.delijn.be/stops/406804"], ["https://data.delijn.be/stops/407903", "https://data.delijn.be/stops/408043"], ["https://data.delijn.be/stops/308417", "https://data.delijn.be/stops/308708"], ["https://data.delijn.be/stops/401431", "https://data.delijn.be/stops/408469"], ["https://data.delijn.be/stops/108981", "https://data.delijn.be/stops/108982"], ["https://data.delijn.be/stops/404458", "https://data.delijn.be/stops/404583"], ["https://data.delijn.be/stops/304432", "https://data.delijn.be/stops/306063"], ["https://data.delijn.be/stops/502645", "https://data.delijn.be/stops/502695"], ["https://data.delijn.be/stops/406814", "https://data.delijn.be/stops/410163"], ["https://data.delijn.be/stops/504025", "https://data.delijn.be/stops/509759"], ["https://data.delijn.be/stops/300394", "https://data.delijn.be/stops/304635"], ["https://data.delijn.be/stops/501672", "https://data.delijn.be/stops/506435"], ["https://data.delijn.be/stops/108951", "https://data.delijn.be/stops/108953"], ["https://data.delijn.be/stops/304209", "https://data.delijn.be/stops/305349"], ["https://data.delijn.be/stops/207239", "https://data.delijn.be/stops/207285"], ["https://data.delijn.be/stops/400714", "https://data.delijn.be/stops/401919"], ["https://data.delijn.be/stops/502354", "https://data.delijn.be/stops/502355"], ["https://data.delijn.be/stops/206512", "https://data.delijn.be/stops/207847"], ["https://data.delijn.be/stops/504346", "https://data.delijn.be/stops/504352"], ["https://data.delijn.be/stops/300293", "https://data.delijn.be/stops/301318"], ["https://data.delijn.be/stops/302053", "https://data.delijn.be/stops/308959"], ["https://data.delijn.be/stops/304849", "https://data.delijn.be/stops/304857"], ["https://data.delijn.be/stops/408337", "https://data.delijn.be/stops/410157"], ["https://data.delijn.be/stops/402156", "https://data.delijn.be/stops/402157"], ["https://data.delijn.be/stops/307780", "https://data.delijn.be/stops/307781"], ["https://data.delijn.be/stops/500007", "https://data.delijn.be/stops/508710"], ["https://data.delijn.be/stops/104839", "https://data.delijn.be/stops/108985"], ["https://data.delijn.be/stops/102930", "https://data.delijn.be/stops/104002"], ["https://data.delijn.be/stops/102422", "https://data.delijn.be/stops/107319"], ["https://data.delijn.be/stops/409476", "https://data.delijn.be/stops/409478"], ["https://data.delijn.be/stops/201051", "https://data.delijn.be/stops/211093"], ["https://data.delijn.be/stops/503870", "https://data.delijn.be/stops/503875"], ["https://data.delijn.be/stops/103058", "https://data.delijn.be/stops/103576"], ["https://data.delijn.be/stops/503674", "https://data.delijn.be/stops/508674"], ["https://data.delijn.be/stops/302508", "https://data.delijn.be/stops/302513"], ["https://data.delijn.be/stops/503792", "https://data.delijn.be/stops/508792"], ["https://data.delijn.be/stops/206879", "https://data.delijn.be/stops/207879"], ["https://data.delijn.be/stops/206250", "https://data.delijn.be/stops/217019"], ["https://data.delijn.be/stops/204524", "https://data.delijn.be/stops/204525"], ["https://data.delijn.be/stops/102255", "https://data.delijn.be/stops/102446"], ["https://data.delijn.be/stops/403382", "https://data.delijn.be/stops/403530"], ["https://data.delijn.be/stops/204930", "https://data.delijn.be/stops/208730"], ["https://data.delijn.be/stops/301254", "https://data.delijn.be/stops/301274"], ["https://data.delijn.be/stops/400467", "https://data.delijn.be/stops/400468"], ["https://data.delijn.be/stops/102857", "https://data.delijn.be/stops/204612"], ["https://data.delijn.be/stops/106287", "https://data.delijn.be/stops/106288"], ["https://data.delijn.be/stops/504679", "https://data.delijn.be/stops/509200"], ["https://data.delijn.be/stops/304595", "https://data.delijn.be/stops/304611"], ["https://data.delijn.be/stops/305780", "https://data.delijn.be/stops/305782"], ["https://data.delijn.be/stops/406206", "https://data.delijn.be/stops/406448"], ["https://data.delijn.be/stops/404547", "https://data.delijn.be/stops/404575"], ["https://data.delijn.be/stops/106262", "https://data.delijn.be/stops/106274"], ["https://data.delijn.be/stops/200500", "https://data.delijn.be/stops/202362"], ["https://data.delijn.be/stops/103075", "https://data.delijn.be/stops/104122"], ["https://data.delijn.be/stops/301303", "https://data.delijn.be/stops/301908"], ["https://data.delijn.be/stops/400732", "https://data.delijn.be/stops/400733"], ["https://data.delijn.be/stops/109335", "https://data.delijn.be/stops/109336"], ["https://data.delijn.be/stops/202241", "https://data.delijn.be/stops/202957"], ["https://data.delijn.be/stops/404780", "https://data.delijn.be/stops/404781"], ["https://data.delijn.be/stops/408603", "https://data.delijn.be/stops/408699"], ["https://data.delijn.be/stops/402798", "https://data.delijn.be/stops/402799"], ["https://data.delijn.be/stops/504539", "https://data.delijn.be/stops/504540"], ["https://data.delijn.be/stops/206402", "https://data.delijn.be/stops/207402"], ["https://data.delijn.be/stops/400044", "https://data.delijn.be/stops/400307"], ["https://data.delijn.be/stops/503085", "https://data.delijn.be/stops/505198"], ["https://data.delijn.be/stops/208344", "https://data.delijn.be/stops/218028"], ["https://data.delijn.be/stops/105356", "https://data.delijn.be/stops/107121"], ["https://data.delijn.be/stops/304601", "https://data.delijn.be/stops/304717"], ["https://data.delijn.be/stops/403458", "https://data.delijn.be/stops/409320"], ["https://data.delijn.be/stops/101046", "https://data.delijn.be/stops/205642"], ["https://data.delijn.be/stops/208786", "https://data.delijn.be/stops/209167"], ["https://data.delijn.be/stops/101948", "https://data.delijn.be/stops/102256"], ["https://data.delijn.be/stops/204230", "https://data.delijn.be/stops/205193"], ["https://data.delijn.be/stops/302641", "https://data.delijn.be/stops/302688"], ["https://data.delijn.be/stops/508745", "https://data.delijn.be/stops/509782"], ["https://data.delijn.be/stops/104561", "https://data.delijn.be/stops/104564"], ["https://data.delijn.be/stops/406707", "https://data.delijn.be/stops/407083"], ["https://data.delijn.be/stops/501176", "https://data.delijn.be/stops/501406"], ["https://data.delijn.be/stops/405822", "https://data.delijn.be/stops/409418"], ["https://data.delijn.be/stops/108914", "https://data.delijn.be/stops/109399"], ["https://data.delijn.be/stops/400363", "https://data.delijn.be/stops/400417"], ["https://data.delijn.be/stops/502355", "https://data.delijn.be/stops/505016"], ["https://data.delijn.be/stops/305697", "https://data.delijn.be/stops/305700"], ["https://data.delijn.be/stops/405170", "https://data.delijn.be/stops/405171"], ["https://data.delijn.be/stops/204612", "https://data.delijn.be/stops/204624"], ["https://data.delijn.be/stops/101835", "https://data.delijn.be/stops/104825"], ["https://data.delijn.be/stops/303011", "https://data.delijn.be/stops/306316"], ["https://data.delijn.be/stops/105706", "https://data.delijn.be/stops/105707"], ["https://data.delijn.be/stops/301647", "https://data.delijn.be/stops/302112"], ["https://data.delijn.be/stops/205518", "https://data.delijn.be/stops/205519"], ["https://data.delijn.be/stops/301308", "https://data.delijn.be/stops/304858"], ["https://data.delijn.be/stops/208695", "https://data.delijn.be/stops/208714"], ["https://data.delijn.be/stops/102625", "https://data.delijn.be/stops/104410"], ["https://data.delijn.be/stops/201600", "https://data.delijn.be/stops/201601"], ["https://data.delijn.be/stops/107062", "https://data.delijn.be/stops/107063"], ["https://data.delijn.be/stops/101162", "https://data.delijn.be/stops/205639"], ["https://data.delijn.be/stops/304377", "https://data.delijn.be/stops/304393"], ["https://data.delijn.be/stops/509117", "https://data.delijn.be/stops/509394"], ["https://data.delijn.be/stops/209140", "https://data.delijn.be/stops/209141"], ["https://data.delijn.be/stops/304409", "https://data.delijn.be/stops/306876"], ["https://data.delijn.be/stops/101093", "https://data.delijn.be/stops/101132"], ["https://data.delijn.be/stops/403187", "https://data.delijn.be/stops/403193"], ["https://data.delijn.be/stops/206944", "https://data.delijn.be/stops/209612"], ["https://data.delijn.be/stops/401076", "https://data.delijn.be/stops/401166"], ["https://data.delijn.be/stops/204992", "https://data.delijn.be/stops/208334"], ["https://data.delijn.be/stops/501129", "https://data.delijn.be/stops/506366"], ["https://data.delijn.be/stops/501146", "https://data.delijn.be/stops/509833"], ["https://data.delijn.be/stops/206338", "https://data.delijn.be/stops/207741"], ["https://data.delijn.be/stops/403138", "https://data.delijn.be/stops/403276"], ["https://data.delijn.be/stops/403545", "https://data.delijn.be/stops/410322"], ["https://data.delijn.be/stops/402171", "https://data.delijn.be/stops/402368"], ["https://data.delijn.be/stops/402090", "https://data.delijn.be/stops/402104"], ["https://data.delijn.be/stops/503548", "https://data.delijn.be/stops/508548"], ["https://data.delijn.be/stops/209670", "https://data.delijn.be/stops/209671"], ["https://data.delijn.be/stops/503929", "https://data.delijn.be/stops/508929"], ["https://data.delijn.be/stops/307912", "https://data.delijn.be/stops/307913"], ["https://data.delijn.be/stops/209325", "https://data.delijn.be/stops/503864"], ["https://data.delijn.be/stops/207782", "https://data.delijn.be/stops/208739"], ["https://data.delijn.be/stops/204753", "https://data.delijn.be/stops/205753"], ["https://data.delijn.be/stops/402542", "https://data.delijn.be/stops/404064"], ["https://data.delijn.be/stops/402856", "https://data.delijn.be/stops/409881"], ["https://data.delijn.be/stops/407882", "https://data.delijn.be/stops/408183"], ["https://data.delijn.be/stops/201950", "https://data.delijn.be/stops/203940"], ["https://data.delijn.be/stops/102286", "https://data.delijn.be/stops/105518"], ["https://data.delijn.be/stops/108709", "https://data.delijn.be/stops/108720"], ["https://data.delijn.be/stops/504549", "https://data.delijn.be/stops/504701"], ["https://data.delijn.be/stops/406402", "https://data.delijn.be/stops/406404"], ["https://data.delijn.be/stops/200376", "https://data.delijn.be/stops/211044"], ["https://data.delijn.be/stops/108946", "https://data.delijn.be/stops/108948"], ["https://data.delijn.be/stops/506641", "https://data.delijn.be/stops/506661"], ["https://data.delijn.be/stops/407838", "https://data.delijn.be/stops/407839"], ["https://data.delijn.be/stops/101943", "https://data.delijn.be/stops/109642"], ["https://data.delijn.be/stops/408967", "https://data.delijn.be/stops/408981"], ["https://data.delijn.be/stops/206101", "https://data.delijn.be/stops/207845"], ["https://data.delijn.be/stops/206586", "https://data.delijn.be/stops/207586"], ["https://data.delijn.be/stops/308478", "https://data.delijn.be/stops/308483"], ["https://data.delijn.be/stops/404909", "https://data.delijn.be/stops/404966"], ["https://data.delijn.be/stops/202985", "https://data.delijn.be/stops/203985"], ["https://data.delijn.be/stops/201922", "https://data.delijn.be/stops/207948"], ["https://data.delijn.be/stops/408263", "https://data.delijn.be/stops/408438"], ["https://data.delijn.be/stops/408026", "https://data.delijn.be/stops/305731"], ["https://data.delijn.be/stops/300810", "https://data.delijn.be/stops/307232"], ["https://data.delijn.be/stops/304068", "https://data.delijn.be/stops/304117"], ["https://data.delijn.be/stops/208293", "https://data.delijn.be/stops/209724"], ["https://data.delijn.be/stops/406465", "https://data.delijn.be/stops/406478"], ["https://data.delijn.be/stops/405283", "https://data.delijn.be/stops/405506"], ["https://data.delijn.be/stops/205021", "https://data.delijn.be/stops/205409"], ["https://data.delijn.be/stops/102550", "https://data.delijn.be/stops/102552"], ["https://data.delijn.be/stops/302533", "https://data.delijn.be/stops/308619"], ["https://data.delijn.be/stops/301890", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/102035", "https://data.delijn.be/stops/105590"], ["https://data.delijn.be/stops/105679", "https://data.delijn.be/stops/106755"], ["https://data.delijn.be/stops/504428", "https://data.delijn.be/stops/505946"], ["https://data.delijn.be/stops/305777", "https://data.delijn.be/stops/305796"], ["https://data.delijn.be/stops/407859", "https://data.delijn.be/stops/407983"], ["https://data.delijn.be/stops/105708", "https://data.delijn.be/stops/106068"], ["https://data.delijn.be/stops/407284", "https://data.delijn.be/stops/407871"], ["https://data.delijn.be/stops/204981", "https://data.delijn.be/stops/206490"], ["https://data.delijn.be/stops/501306", "https://data.delijn.be/stops/501400"], ["https://data.delijn.be/stops/204452", "https://data.delijn.be/stops/205452"], ["https://data.delijn.be/stops/210076", "https://data.delijn.be/stops/505518"], ["https://data.delijn.be/stops/208606", "https://data.delijn.be/stops/209606"], ["https://data.delijn.be/stops/108607", "https://data.delijn.be/stops/307434"], ["https://data.delijn.be/stops/201121", "https://data.delijn.be/stops/202888"], ["https://data.delijn.be/stops/104023", "https://data.delijn.be/stops/109885"], ["https://data.delijn.be/stops/406574", "https://data.delijn.be/stops/406587"], ["https://data.delijn.be/stops/301832", "https://data.delijn.be/stops/305985"], ["https://data.delijn.be/stops/503012", "https://data.delijn.be/stops/505277"], ["https://data.delijn.be/stops/300024", "https://data.delijn.be/stops/307000"], ["https://data.delijn.be/stops/500933", "https://data.delijn.be/stops/500935"], ["https://data.delijn.be/stops/200939", "https://data.delijn.be/stops/202041"], ["https://data.delijn.be/stops/504220", "https://data.delijn.be/stops/509222"], ["https://data.delijn.be/stops/205445", "https://data.delijn.be/stops/205498"], ["https://data.delijn.be/stops/308798", "https://data.delijn.be/stops/308849"], ["https://data.delijn.be/stops/209192", "https://data.delijn.be/stops/209358"], ["https://data.delijn.be/stops/203344", "https://data.delijn.be/stops/206869"], ["https://data.delijn.be/stops/200098", "https://data.delijn.be/stops/201368"], ["https://data.delijn.be/stops/409028", "https://data.delijn.be/stops/409030"], ["https://data.delijn.be/stops/502696", "https://data.delijn.be/stops/507696"], ["https://data.delijn.be/stops/502379", "https://data.delijn.be/stops/502381"], ["https://data.delijn.be/stops/108636", "https://data.delijn.be/stops/109669"], ["https://data.delijn.be/stops/300290", "https://data.delijn.be/stops/301315"], ["https://data.delijn.be/stops/200592", "https://data.delijn.be/stops/201593"], ["https://data.delijn.be/stops/504945", "https://data.delijn.be/stops/507201"], ["https://data.delijn.be/stops/208237", "https://data.delijn.be/stops/208243"], ["https://data.delijn.be/stops/208464", "https://data.delijn.be/stops/208514"], ["https://data.delijn.be/stops/501692", "https://data.delijn.be/stops/505437"], ["https://data.delijn.be/stops/501199", "https://data.delijn.be/stops/501529"], ["https://data.delijn.be/stops/502495", "https://data.delijn.be/stops/505588"], ["https://data.delijn.be/stops/401404", "https://data.delijn.be/stops/300918"], ["https://data.delijn.be/stops/502139", "https://data.delijn.be/stops/502579"], ["https://data.delijn.be/stops/300174", "https://data.delijn.be/stops/301219"], ["https://data.delijn.be/stops/502415", "https://data.delijn.be/stops/507749"], ["https://data.delijn.be/stops/200660", "https://data.delijn.be/stops/210124"], ["https://data.delijn.be/stops/409071", "https://data.delijn.be/stops/409087"], ["https://data.delijn.be/stops/503872", "https://data.delijn.be/stops/508872"], ["https://data.delijn.be/stops/206826", "https://data.delijn.be/stops/210009"], ["https://data.delijn.be/stops/503796", "https://data.delijn.be/stops/503798"], ["https://data.delijn.be/stops/102638", "https://data.delijn.be/stops/104926"], ["https://data.delijn.be/stops/107452", "https://data.delijn.be/stops/107454"], ["https://data.delijn.be/stops/304970", "https://data.delijn.be/stops/304972"], ["https://data.delijn.be/stops/202795", "https://data.delijn.be/stops/203311"], ["https://data.delijn.be/stops/403199", "https://data.delijn.be/stops/404759"], ["https://data.delijn.be/stops/303810", "https://data.delijn.be/stops/303826"], ["https://data.delijn.be/stops/302390", "https://data.delijn.be/stops/302391"], ["https://data.delijn.be/stops/504859", "https://data.delijn.be/stops/505990"], ["https://data.delijn.be/stops/200384", "https://data.delijn.be/stops/208726"], ["https://data.delijn.be/stops/501176", "https://data.delijn.be/stops/501250"], ["https://data.delijn.be/stops/504525", "https://data.delijn.be/stops/504530"], ["https://data.delijn.be/stops/504089", "https://data.delijn.be/stops/505210"], ["https://data.delijn.be/stops/200820", "https://data.delijn.be/stops/200847"], ["https://data.delijn.be/stops/106463", "https://data.delijn.be/stops/109557"], ["https://data.delijn.be/stops/403276", "https://data.delijn.be/stops/403666"], ["https://data.delijn.be/stops/207119", "https://data.delijn.be/stops/207120"], ["https://data.delijn.be/stops/507024", "https://data.delijn.be/stops/507168"], ["https://data.delijn.be/stops/506078", "https://data.delijn.be/stops/506081"], ["https://data.delijn.be/stops/302670", "https://data.delijn.be/stops/302674"], ["https://data.delijn.be/stops/106424", "https://data.delijn.be/stops/106425"], ["https://data.delijn.be/stops/101423", "https://data.delijn.be/stops/106981"], ["https://data.delijn.be/stops/402069", "https://data.delijn.be/stops/402078"], ["https://data.delijn.be/stops/204117", "https://data.delijn.be/stops/205117"], ["https://data.delijn.be/stops/202656", "https://data.delijn.be/stops/203656"], ["https://data.delijn.be/stops/403898", "https://data.delijn.be/stops/404051"], ["https://data.delijn.be/stops/503984", "https://data.delijn.be/stops/504946"], ["https://data.delijn.be/stops/400093", "https://data.delijn.be/stops/409143"], ["https://data.delijn.be/stops/401296", "https://data.delijn.be/stops/401363"], ["https://data.delijn.be/stops/503964", "https://data.delijn.be/stops/509617"], ["https://data.delijn.be/stops/400648", "https://data.delijn.be/stops/400649"], ["https://data.delijn.be/stops/402068", "https://data.delijn.be/stops/402222"], ["https://data.delijn.be/stops/202032", "https://data.delijn.be/stops/203033"], ["https://data.delijn.be/stops/200805", "https://data.delijn.be/stops/200888"], ["https://data.delijn.be/stops/207544", "https://data.delijn.be/stops/209748"], ["https://data.delijn.be/stops/504163", "https://data.delijn.be/stops/509163"], ["https://data.delijn.be/stops/102196", "https://data.delijn.be/stops/104271"], ["https://data.delijn.be/stops/407590", "https://data.delijn.be/stops/407674"], ["https://data.delijn.be/stops/508189", "https://data.delijn.be/stops/508208"], ["https://data.delijn.be/stops/305002", "https://data.delijn.be/stops/305020"], ["https://data.delijn.be/stops/404835", "https://data.delijn.be/stops/406101"], ["https://data.delijn.be/stops/408246", "https://data.delijn.be/stops/408295"], ["https://data.delijn.be/stops/401922", "https://data.delijn.be/stops/403746"], ["https://data.delijn.be/stops/204217", "https://data.delijn.be/stops/205217"], ["https://data.delijn.be/stops/200192", "https://data.delijn.be/stops/201191"], ["https://data.delijn.be/stops/104080", "https://data.delijn.be/stops/104082"], ["https://data.delijn.be/stops/408674", "https://data.delijn.be/stops/408752"], ["https://data.delijn.be/stops/106480", "https://data.delijn.be/stops/106482"], ["https://data.delijn.be/stops/409308", "https://data.delijn.be/stops/409309"], ["https://data.delijn.be/stops/201007", "https://data.delijn.be/stops/203297"], ["https://data.delijn.be/stops/408114", "https://data.delijn.be/stops/408116"], ["https://data.delijn.be/stops/501396", "https://data.delijn.be/stops/505836"], ["https://data.delijn.be/stops/103644", "https://data.delijn.be/stops/107731"], ["https://data.delijn.be/stops/201301", "https://data.delijn.be/stops/201945"], ["https://data.delijn.be/stops/200272", "https://data.delijn.be/stops/200273"], ["https://data.delijn.be/stops/503362", "https://data.delijn.be/stops/503396"], ["https://data.delijn.be/stops/405949", "https://data.delijn.be/stops/405951"], ["https://data.delijn.be/stops/300416", "https://data.delijn.be/stops/300445"], ["https://data.delijn.be/stops/202796", "https://data.delijn.be/stops/203797"], ["https://data.delijn.be/stops/300548", "https://data.delijn.be/stops/300549"], ["https://data.delijn.be/stops/400654", "https://data.delijn.be/stops/401270"], ["https://data.delijn.be/stops/206319", "https://data.delijn.be/stops/206918"], ["https://data.delijn.be/stops/204459", "https://data.delijn.be/stops/204479"], ["https://data.delijn.be/stops/502646", "https://data.delijn.be/stops/505356"], ["https://data.delijn.be/stops/207235", "https://data.delijn.be/stops/207236"], ["https://data.delijn.be/stops/107639", "https://data.delijn.be/stops/107641"], ["https://data.delijn.be/stops/503848", "https://data.delijn.be/stops/507942"], ["https://data.delijn.be/stops/208644", "https://data.delijn.be/stops/208645"], ["https://data.delijn.be/stops/204428", "https://data.delijn.be/stops/205428"], ["https://data.delijn.be/stops/208293", "https://data.delijn.be/stops/209293"], ["https://data.delijn.be/stops/302540", "https://data.delijn.be/stops/308714"], ["https://data.delijn.be/stops/304148", "https://data.delijn.be/stops/304154"], ["https://data.delijn.be/stops/200028", "https://data.delijn.be/stops/201446"], ["https://data.delijn.be/stops/202702", "https://data.delijn.be/stops/203703"], ["https://data.delijn.be/stops/201926", "https://data.delijn.be/stops/207401"], ["https://data.delijn.be/stops/202251", "https://data.delijn.be/stops/203251"], ["https://data.delijn.be/stops/400600", "https://data.delijn.be/stops/400604"], ["https://data.delijn.be/stops/406056", "https://data.delijn.be/stops/406388"], ["https://data.delijn.be/stops/102629", "https://data.delijn.be/stops/108213"], ["https://data.delijn.be/stops/502355", "https://data.delijn.be/stops/502362"], ["https://data.delijn.be/stops/202348", "https://data.delijn.be/stops/208443"], ["https://data.delijn.be/stops/501551", "https://data.delijn.be/stops/509795"], ["https://data.delijn.be/stops/305700", "https://data.delijn.be/stops/305705"], ["https://data.delijn.be/stops/301463", "https://data.delijn.be/stops/308071"], ["https://data.delijn.be/stops/402703", "https://data.delijn.be/stops/402870"], ["https://data.delijn.be/stops/500195", "https://data.delijn.be/stops/505032"], ["https://data.delijn.be/stops/404523", "https://data.delijn.be/stops/404538"], ["https://data.delijn.be/stops/406160", "https://data.delijn.be/stops/406264"], ["https://data.delijn.be/stops/200399", "https://data.delijn.be/stops/205950"], ["https://data.delijn.be/stops/501661", "https://data.delijn.be/stops/506642"], ["https://data.delijn.be/stops/403218", "https://data.delijn.be/stops/403553"], ["https://data.delijn.be/stops/201872", "https://data.delijn.be/stops/202572"], ["https://data.delijn.be/stops/402177", "https://data.delijn.be/stops/402471"], ["https://data.delijn.be/stops/501550", "https://data.delijn.be/stops/501741"], ["https://data.delijn.be/stops/402262", "https://data.delijn.be/stops/402263"], ["https://data.delijn.be/stops/305071", "https://data.delijn.be/stops/306952"], ["https://data.delijn.be/stops/404305", "https://data.delijn.be/stops/409576"], ["https://data.delijn.be/stops/400746", "https://data.delijn.be/stops/400748"], ["https://data.delijn.be/stops/401378", "https://data.delijn.be/stops/401379"], ["https://data.delijn.be/stops/502414", "https://data.delijn.be/stops/502696"], ["https://data.delijn.be/stops/503270", "https://data.delijn.be/stops/503273"], ["https://data.delijn.be/stops/106429", "https://data.delijn.be/stops/106562"], ["https://data.delijn.be/stops/403333", "https://data.delijn.be/stops/403339"], ["https://data.delijn.be/stops/301635", "https://data.delijn.be/stops/301649"], ["https://data.delijn.be/stops/401804", "https://data.delijn.be/stops/401805"], ["https://data.delijn.be/stops/307496", "https://data.delijn.be/stops/307497"], ["https://data.delijn.be/stops/208279", "https://data.delijn.be/stops/209279"], ["https://data.delijn.be/stops/101430", "https://data.delijn.be/stops/103075"], ["https://data.delijn.be/stops/306379", "https://data.delijn.be/stops/306381"], ["https://data.delijn.be/stops/105697", "https://data.delijn.be/stops/105699"], ["https://data.delijn.be/stops/107882", "https://data.delijn.be/stops/107886"], ["https://data.delijn.be/stops/107715", "https://data.delijn.be/stops/107716"], ["https://data.delijn.be/stops/106231", "https://data.delijn.be/stops/106232"], ["https://data.delijn.be/stops/402071", "https://data.delijn.be/stops/405549"], ["https://data.delijn.be/stops/305346", "https://data.delijn.be/stops/307970"], ["https://data.delijn.be/stops/300133", "https://data.delijn.be/stops/305009"], ["https://data.delijn.be/stops/404037", "https://data.delijn.be/stops/404039"], ["https://data.delijn.be/stops/106431", "https://data.delijn.be/stops/106500"], ["https://data.delijn.be/stops/501446", "https://data.delijn.be/stops/501601"], ["https://data.delijn.be/stops/105549", "https://data.delijn.be/stops/105551"], ["https://data.delijn.be/stops/300045", "https://data.delijn.be/stops/300046"], ["https://data.delijn.be/stops/206977", "https://data.delijn.be/stops/207684"], ["https://data.delijn.be/stops/300185", "https://data.delijn.be/stops/300186"], ["https://data.delijn.be/stops/308720", "https://data.delijn.be/stops/308721"], ["https://data.delijn.be/stops/206751", "https://data.delijn.be/stops/208469"], ["https://data.delijn.be/stops/109046", "https://data.delijn.be/stops/109318"], ["https://data.delijn.be/stops/305772", "https://data.delijn.be/stops/305773"], ["https://data.delijn.be/stops/103046", "https://data.delijn.be/stops/106566"], ["https://data.delijn.be/stops/201138", "https://data.delijn.be/stops/201223"], ["https://data.delijn.be/stops/206161", "https://data.delijn.be/stops/206493"], ["https://data.delijn.be/stops/502303", "https://data.delijn.be/stops/507601"], ["https://data.delijn.be/stops/505689", "https://data.delijn.be/stops/505690"], ["https://data.delijn.be/stops/304134", "https://data.delijn.be/stops/307581"], ["https://data.delijn.be/stops/405282", "https://data.delijn.be/stops/405506"], ["https://data.delijn.be/stops/504310", "https://data.delijn.be/stops/504322"], ["https://data.delijn.be/stops/404934", "https://data.delijn.be/stops/404935"], ["https://data.delijn.be/stops/301556", "https://data.delijn.be/stops/301557"], ["https://data.delijn.be/stops/204347", "https://data.delijn.be/stops/205707"], ["https://data.delijn.be/stops/502078", "https://data.delijn.be/stops/507079"], ["https://data.delijn.be/stops/200761", "https://data.delijn.be/stops/505280"], ["https://data.delijn.be/stops/406552", "https://data.delijn.be/stops/406562"], ["https://data.delijn.be/stops/300379", "https://data.delijn.be/stops/301945"], ["https://data.delijn.be/stops/202182", "https://data.delijn.be/stops/202183"], ["https://data.delijn.be/stops/305987", "https://data.delijn.be/stops/305988"], ["https://data.delijn.be/stops/209423", "https://data.delijn.be/stops/209458"], ["https://data.delijn.be/stops/200810", "https://data.delijn.be/stops/200883"], ["https://data.delijn.be/stops/208469", "https://data.delijn.be/stops/209468"], ["https://data.delijn.be/stops/200370", "https://data.delijn.be/stops/200393"], ["https://data.delijn.be/stops/405371", "https://data.delijn.be/stops/302844"], ["https://data.delijn.be/stops/105197", "https://data.delijn.be/stops/108880"], ["https://data.delijn.be/stops/408324", "https://data.delijn.be/stops/408332"], ["https://data.delijn.be/stops/208588", "https://data.delijn.be/stops/305238"], ["https://data.delijn.be/stops/202506", "https://data.delijn.be/stops/203506"], ["https://data.delijn.be/stops/304383", "https://data.delijn.be/stops/304396"], ["https://data.delijn.be/stops/305707", "https://data.delijn.be/stops/305753"], ["https://data.delijn.be/stops/305613", "https://data.delijn.be/stops/305615"], ["https://data.delijn.be/stops/405304", "https://data.delijn.be/stops/405305"], ["https://data.delijn.be/stops/104402", "https://data.delijn.be/stops/204611"], ["https://data.delijn.be/stops/104586", "https://data.delijn.be/stops/107931"], ["https://data.delijn.be/stops/202818", "https://data.delijn.be/stops/203844"], ["https://data.delijn.be/stops/302551", "https://data.delijn.be/stops/302560"], ["https://data.delijn.be/stops/400064", "https://data.delijn.be/stops/400140"], ["https://data.delijn.be/stops/101873", "https://data.delijn.be/stops/104239"], ["https://data.delijn.be/stops/101590", "https://data.delijn.be/stops/103279"], ["https://data.delijn.be/stops/402681", "https://data.delijn.be/stops/405947"], ["https://data.delijn.be/stops/403978", "https://data.delijn.be/stops/403981"], ["https://data.delijn.be/stops/300744", "https://data.delijn.be/stops/300768"], ["https://data.delijn.be/stops/103266", "https://data.delijn.be/stops/103267"], ["https://data.delijn.be/stops/404530", "https://data.delijn.be/stops/409252"], ["https://data.delijn.be/stops/209340", "https://data.delijn.be/stops/219010"], ["https://data.delijn.be/stops/206131", "https://data.delijn.be/stops/206136"], ["https://data.delijn.be/stops/204379", "https://data.delijn.be/stops/204763"], ["https://data.delijn.be/stops/201726", "https://data.delijn.be/stops/203979"], ["https://data.delijn.be/stops/500927", "https://data.delijn.be/stops/504682"], ["https://data.delijn.be/stops/208767", "https://data.delijn.be/stops/209838"], ["https://data.delijn.be/stops/408657", "https://data.delijn.be/stops/408663"], ["https://data.delijn.be/stops/501673", "https://data.delijn.be/stops/505712"], ["https://data.delijn.be/stops/101362", "https://data.delijn.be/stops/102187"], ["https://data.delijn.be/stops/202960", "https://data.delijn.be/stops/203960"], ["https://data.delijn.be/stops/505081", "https://data.delijn.be/stops/508327"], ["https://data.delijn.be/stops/107830", "https://data.delijn.be/stops/107833"], ["https://data.delijn.be/stops/204134", "https://data.delijn.be/stops/205142"], ["https://data.delijn.be/stops/200258", "https://data.delijn.be/stops/201258"], ["https://data.delijn.be/stops/402141", "https://data.delijn.be/stops/402143"], ["https://data.delijn.be/stops/108314", "https://data.delijn.be/stops/109018"], ["https://data.delijn.be/stops/302620", "https://data.delijn.be/stops/303273"], ["https://data.delijn.be/stops/505522", "https://data.delijn.be/stops/505746"], ["https://data.delijn.be/stops/109436", "https://data.delijn.be/stops/109438"], ["https://data.delijn.be/stops/208791", "https://data.delijn.be/stops/208793"], ["https://data.delijn.be/stops/504203", "https://data.delijn.be/stops/509204"], ["https://data.delijn.be/stops/103314", "https://data.delijn.be/stops/105812"], ["https://data.delijn.be/stops/503459", "https://data.delijn.be/stops/503947"], ["https://data.delijn.be/stops/204682", "https://data.delijn.be/stops/205674"], ["https://data.delijn.be/stops/302640", "https://data.delijn.be/stops/302672"], ["https://data.delijn.be/stops/202161", "https://data.delijn.be/stops/203160"], ["https://data.delijn.be/stops/506226", "https://data.delijn.be/stops/506475"], ["https://data.delijn.be/stops/503851", "https://data.delijn.be/stops/509936"], ["https://data.delijn.be/stops/101587", "https://data.delijn.be/stops/105728"], ["https://data.delijn.be/stops/101073", "https://data.delijn.be/stops/101074"], ["https://data.delijn.be/stops/202727", "https://data.delijn.be/stops/203683"], ["https://data.delijn.be/stops/502245", "https://data.delijn.be/stops/502917"], ["https://data.delijn.be/stops/102019", "https://data.delijn.be/stops/109949"], ["https://data.delijn.be/stops/201748", "https://data.delijn.be/stops/202972"], ["https://data.delijn.be/stops/508060", "https://data.delijn.be/stops/508062"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/405705"], ["https://data.delijn.be/stops/305190", "https://data.delijn.be/stops/308682"], ["https://data.delijn.be/stops/202844", "https://data.delijn.be/stops/203844"], ["https://data.delijn.be/stops/404447", "https://data.delijn.be/stops/404449"], ["https://data.delijn.be/stops/201915", "https://data.delijn.be/stops/201933"], ["https://data.delijn.be/stops/202970", "https://data.delijn.be/stops/203970"], ["https://data.delijn.be/stops/200669", "https://data.delijn.be/stops/505843"], ["https://data.delijn.be/stops/201753", "https://data.delijn.be/stops/209221"], ["https://data.delijn.be/stops/303047", "https://data.delijn.be/stops/307897"], ["https://data.delijn.be/stops/105508", "https://data.delijn.be/stops/105511"], ["https://data.delijn.be/stops/208403", "https://data.delijn.be/stops/208790"], ["https://data.delijn.be/stops/504646", "https://data.delijn.be/stops/509165"], ["https://data.delijn.be/stops/501603", "https://data.delijn.be/stops/506400"], ["https://data.delijn.be/stops/102412", "https://data.delijn.be/stops/103290"], ["https://data.delijn.be/stops/300135", "https://data.delijn.be/stops/300139"], ["https://data.delijn.be/stops/304164", "https://data.delijn.be/stops/307535"], ["https://data.delijn.be/stops/301813", "https://data.delijn.be/stops/301814"], ["https://data.delijn.be/stops/103057", "https://data.delijn.be/stops/105036"], ["https://data.delijn.be/stops/206074", "https://data.delijn.be/stops/207074"], ["https://data.delijn.be/stops/107529", "https://data.delijn.be/stops/107748"], ["https://data.delijn.be/stops/208780", "https://data.delijn.be/stops/209352"], ["https://data.delijn.be/stops/101125", "https://data.delijn.be/stops/102370"], ["https://data.delijn.be/stops/101643", "https://data.delijn.be/stops/105236"], ["https://data.delijn.be/stops/106893", "https://data.delijn.be/stops/107220"], ["https://data.delijn.be/stops/202410", "https://data.delijn.be/stops/202412"], ["https://data.delijn.be/stops/302210", "https://data.delijn.be/stops/302218"], ["https://data.delijn.be/stops/400696", "https://data.delijn.be/stops/400697"], ["https://data.delijn.be/stops/304547", "https://data.delijn.be/stops/304548"], ["https://data.delijn.be/stops/401124", "https://data.delijn.be/stops/401132"], ["https://data.delijn.be/stops/206121", "https://data.delijn.be/stops/207142"], ["https://data.delijn.be/stops/204504", "https://data.delijn.be/stops/205904"], ["https://data.delijn.be/stops/503228", "https://data.delijn.be/stops/503771"], ["https://data.delijn.be/stops/300311", "https://data.delijn.be/stops/307108"], ["https://data.delijn.be/stops/202157", "https://data.delijn.be/stops/203157"], ["https://data.delijn.be/stops/103216", "https://data.delijn.be/stops/104889"], ["https://data.delijn.be/stops/102932", "https://data.delijn.be/stops/102934"], ["https://data.delijn.be/stops/504088", "https://data.delijn.be/stops/509088"], ["https://data.delijn.be/stops/408521", "https://data.delijn.be/stops/408735"], ["https://data.delijn.be/stops/204642", "https://data.delijn.be/stops/205642"], ["https://data.delijn.be/stops/503324", "https://data.delijn.be/stops/508321"], ["https://data.delijn.be/stops/209823", "https://data.delijn.be/stops/211113"], ["https://data.delijn.be/stops/209598", "https://data.delijn.be/stops/307308"], ["https://data.delijn.be/stops/105367", "https://data.delijn.be/stops/105387"], ["https://data.delijn.be/stops/102862", "https://data.delijn.be/stops/102869"], ["https://data.delijn.be/stops/204740", "https://data.delijn.be/stops/205741"], ["https://data.delijn.be/stops/205200", "https://data.delijn.be/stops/205235"], ["https://data.delijn.be/stops/404193", "https://data.delijn.be/stops/405984"], ["https://data.delijn.be/stops/409672", "https://data.delijn.be/stops/409687"], ["https://data.delijn.be/stops/407971", "https://data.delijn.be/stops/408008"], ["https://data.delijn.be/stops/101045", "https://data.delijn.be/stops/104321"], ["https://data.delijn.be/stops/301764", "https://data.delijn.be/stops/306795"], ["https://data.delijn.be/stops/204067", "https://data.delijn.be/stops/204599"], ["https://data.delijn.be/stops/404888", "https://data.delijn.be/stops/404891"], ["https://data.delijn.be/stops/400529", "https://data.delijn.be/stops/410002"], ["https://data.delijn.be/stops/101848", "https://data.delijn.be/stops/109750"], ["https://data.delijn.be/stops/302202", "https://data.delijn.be/stops/304132"], ["https://data.delijn.be/stops/303227", "https://data.delijn.be/stops/303228"], ["https://data.delijn.be/stops/203243", "https://data.delijn.be/stops/203506"], ["https://data.delijn.be/stops/307582", "https://data.delijn.be/stops/307760"], ["https://data.delijn.be/stops/204066", "https://data.delijn.be/stops/205097"], ["https://data.delijn.be/stops/501240", "https://data.delijn.be/stops/506243"], ["https://data.delijn.be/stops/304909", "https://data.delijn.be/stops/308660"], ["https://data.delijn.be/stops/502495", "https://data.delijn.be/stops/502734"], ["https://data.delijn.be/stops/504471", "https://data.delijn.be/stops/509471"], ["https://data.delijn.be/stops/206423", "https://data.delijn.be/stops/217012"], ["https://data.delijn.be/stops/505694", "https://data.delijn.be/stops/507712"], ["https://data.delijn.be/stops/200435", "https://data.delijn.be/stops/201364"], ["https://data.delijn.be/stops/302256", "https://data.delijn.be/stops/302274"], ["https://data.delijn.be/stops/102865", "https://data.delijn.be/stops/103510"], ["https://data.delijn.be/stops/105558", "https://data.delijn.be/stops/105561"], ["https://data.delijn.be/stops/400965", "https://data.delijn.be/stops/400969"], ["https://data.delijn.be/stops/504280", "https://data.delijn.be/stops/504284"], ["https://data.delijn.be/stops/204108", "https://data.delijn.be/stops/204667"], ["https://data.delijn.be/stops/305343", "https://data.delijn.be/stops/305344"], ["https://data.delijn.be/stops/501370", "https://data.delijn.be/stops/501371"], ["https://data.delijn.be/stops/202042", "https://data.delijn.be/stops/202396"], ["https://data.delijn.be/stops/202327", "https://data.delijn.be/stops/202429"], ["https://data.delijn.be/stops/401586", "https://data.delijn.be/stops/402127"], ["https://data.delijn.be/stops/407068", "https://data.delijn.be/stops/407070"], ["https://data.delijn.be/stops/204381", "https://data.delijn.be/stops/204382"], ["https://data.delijn.be/stops/300377", "https://data.delijn.be/stops/300378"], ["https://data.delijn.be/stops/101093", "https://data.delijn.be/stops/106002"], ["https://data.delijn.be/stops/302809", "https://data.delijn.be/stops/307836"], ["https://data.delijn.be/stops/402231", "https://data.delijn.be/stops/402293"], ["https://data.delijn.be/stops/105488", "https://data.delijn.be/stops/105494"], ["https://data.delijn.be/stops/505770", "https://data.delijn.be/stops/505812"], ["https://data.delijn.be/stops/302538", "https://data.delijn.be/stops/308714"], ["https://data.delijn.be/stops/102730", "https://data.delijn.be/stops/305624"], ["https://data.delijn.be/stops/509043", "https://data.delijn.be/stops/509045"], ["https://data.delijn.be/stops/300047", "https://data.delijn.be/stops/306794"], ["https://data.delijn.be/stops/503412", "https://data.delijn.be/stops/503986"], ["https://data.delijn.be/stops/202013", "https://data.delijn.be/stops/211069"], ["https://data.delijn.be/stops/304569", "https://data.delijn.be/stops/304660"], ["https://data.delijn.be/stops/501463", "https://data.delijn.be/stops/505781"], ["https://data.delijn.be/stops/103766", "https://data.delijn.be/stops/108763"], ["https://data.delijn.be/stops/302539", "https://data.delijn.be/stops/302540"], ["https://data.delijn.be/stops/109729", "https://data.delijn.be/stops/109785"], ["https://data.delijn.be/stops/206958", "https://data.delijn.be/stops/308565"], ["https://data.delijn.be/stops/207570", "https://data.delijn.be/stops/208953"], ["https://data.delijn.be/stops/307966", "https://data.delijn.be/stops/307967"], ["https://data.delijn.be/stops/301937", "https://data.delijn.be/stops/303634"], ["https://data.delijn.be/stops/208573", "https://data.delijn.be/stops/209574"], ["https://data.delijn.be/stops/502089", "https://data.delijn.be/stops/502090"], ["https://data.delijn.be/stops/102757", "https://data.delijn.be/stops/108227"], ["https://data.delijn.be/stops/301701", "https://data.delijn.be/stops/301761"], ["https://data.delijn.be/stops/101001", "https://data.delijn.be/stops/102688"], ["https://data.delijn.be/stops/106616", "https://data.delijn.be/stops/106617"], ["https://data.delijn.be/stops/507033", "https://data.delijn.be/stops/507034"], ["https://data.delijn.be/stops/502671", "https://data.delijn.be/stops/507671"], ["https://data.delijn.be/stops/505047", "https://data.delijn.be/stops/506207"], ["https://data.delijn.be/stops/108378", "https://data.delijn.be/stops/108441"], ["https://data.delijn.be/stops/300232", "https://data.delijn.be/stops/301376"], ["https://data.delijn.be/stops/308846", "https://data.delijn.be/stops/308847"], ["https://data.delijn.be/stops/206913", "https://data.delijn.be/stops/207020"], ["https://data.delijn.be/stops/300950", "https://data.delijn.be/stops/307807"], ["https://data.delijn.be/stops/401495", "https://data.delijn.be/stops/403895"], ["https://data.delijn.be/stops/509783", "https://data.delijn.be/stops/509784"], ["https://data.delijn.be/stops/107592", "https://data.delijn.be/stops/107593"], ["https://data.delijn.be/stops/301318", "https://data.delijn.be/stops/301321"], ["https://data.delijn.be/stops/102848", "https://data.delijn.be/stops/103630"], ["https://data.delijn.be/stops/401397", "https://data.delijn.be/stops/401398"], ["https://data.delijn.be/stops/402161", "https://data.delijn.be/stops/402389"], ["https://data.delijn.be/stops/101620", "https://data.delijn.be/stops/102911"], ["https://data.delijn.be/stops/400635", "https://data.delijn.be/stops/404139"], ["https://data.delijn.be/stops/502340", "https://data.delijn.be/stops/505090"], ["https://data.delijn.be/stops/502264", "https://data.delijn.be/stops/507912"], ["https://data.delijn.be/stops/206489", "https://data.delijn.be/stops/216010"], ["https://data.delijn.be/stops/407159", "https://data.delijn.be/stops/407173"], ["https://data.delijn.be/stops/408546", "https://data.delijn.be/stops/408607"], ["https://data.delijn.be/stops/404214", "https://data.delijn.be/stops/404239"], ["https://data.delijn.be/stops/301038", "https://data.delijn.be/stops/301069"], ["https://data.delijn.be/stops/101555", "https://data.delijn.be/stops/102405"], ["https://data.delijn.be/stops/201281", "https://data.delijn.be/stops/208708"], ["https://data.delijn.be/stops/502621", "https://data.delijn.be/stops/507621"], ["https://data.delijn.be/stops/200717", "https://data.delijn.be/stops/203127"], ["https://data.delijn.be/stops/502743", "https://data.delijn.be/stops/505320"], ["https://data.delijn.be/stops/207059", "https://data.delijn.be/stops/207450"], ["https://data.delijn.be/stops/501629", "https://data.delijn.be/stops/508959"], ["https://data.delijn.be/stops/300605", "https://data.delijn.be/stops/300613"], ["https://data.delijn.be/stops/206932", "https://data.delijn.be/stops/207846"], ["https://data.delijn.be/stops/507669", "https://data.delijn.be/stops/507671"], ["https://data.delijn.be/stops/302336", "https://data.delijn.be/stops/302342"], ["https://data.delijn.be/stops/205685", "https://data.delijn.be/stops/205686"], ["https://data.delijn.be/stops/402843", "https://data.delijn.be/stops/402855"], ["https://data.delijn.be/stops/102868", "https://data.delijn.be/stops/103332"], ["https://data.delijn.be/stops/408371", "https://data.delijn.be/stops/409418"], ["https://data.delijn.be/stops/301194", "https://data.delijn.be/stops/301195"], ["https://data.delijn.be/stops/206174", "https://data.delijn.be/stops/216001"], ["https://data.delijn.be/stops/206970", "https://data.delijn.be/stops/301442"], ["https://data.delijn.be/stops/400716", "https://data.delijn.be/stops/400717"], ["https://data.delijn.be/stops/300209", "https://data.delijn.be/stops/306742"], ["https://data.delijn.be/stops/208767", "https://data.delijn.be/stops/504000"], ["https://data.delijn.be/stops/207230", "https://data.delijn.be/stops/207232"], ["https://data.delijn.be/stops/200421", "https://data.delijn.be/stops/203011"], ["https://data.delijn.be/stops/102614", "https://data.delijn.be/stops/102616"], ["https://data.delijn.be/stops/408036", "https://data.delijn.be/stops/408037"], ["https://data.delijn.be/stops/504394", "https://data.delijn.be/stops/509759"], ["https://data.delijn.be/stops/109142", "https://data.delijn.be/stops/109154"], ["https://data.delijn.be/stops/202332", "https://data.delijn.be/stops/210291"], ["https://data.delijn.be/stops/305227", "https://data.delijn.be/stops/305297"], ["https://data.delijn.be/stops/504156", "https://data.delijn.be/stops/509191"], ["https://data.delijn.be/stops/307299", "https://data.delijn.be/stops/307323"], ["https://data.delijn.be/stops/504775", "https://data.delijn.be/stops/509409"], ["https://data.delijn.be/stops/201195", "https://data.delijn.be/stops/201199"], ["https://data.delijn.be/stops/200668", "https://data.delijn.be/stops/508844"], ["https://data.delijn.be/stops/409339", "https://data.delijn.be/stops/410286"], ["https://data.delijn.be/stops/301864", "https://data.delijn.be/stops/301865"], ["https://data.delijn.be/stops/302242", "https://data.delijn.be/stops/302248"], ["https://data.delijn.be/stops/106728", "https://data.delijn.be/stops/107747"], ["https://data.delijn.be/stops/305585", "https://data.delijn.be/stops/307514"], ["https://data.delijn.be/stops/101534", "https://data.delijn.be/stops/108753"], ["https://data.delijn.be/stops/303492", "https://data.delijn.be/stops/303501"], ["https://data.delijn.be/stops/204124", "https://data.delijn.be/stops/204786"], ["https://data.delijn.be/stops/503730", "https://data.delijn.be/stops/503756"], ["https://data.delijn.be/stops/405308", "https://data.delijn.be/stops/302828"], ["https://data.delijn.be/stops/202680", "https://data.delijn.be/stops/202693"], ["https://data.delijn.be/stops/103701", "https://data.delijn.be/stops/109604"], ["https://data.delijn.be/stops/409203", "https://data.delijn.be/stops/409833"], ["https://data.delijn.be/stops/303566", "https://data.delijn.be/stops/303571"], ["https://data.delijn.be/stops/401120", "https://data.delijn.be/stops/402830"], ["https://data.delijn.be/stops/402938", "https://data.delijn.be/stops/405982"], ["https://data.delijn.be/stops/202381", "https://data.delijn.be/stops/203443"], ["https://data.delijn.be/stops/400803", "https://data.delijn.be/stops/400846"], ["https://data.delijn.be/stops/405876", "https://data.delijn.be/stops/409750"], ["https://data.delijn.be/stops/303846", "https://data.delijn.be/stops/303869"], ["https://data.delijn.be/stops/409024", "https://data.delijn.be/stops/409034"], ["https://data.delijn.be/stops/504442", "https://data.delijn.be/stops/504591"], ["https://data.delijn.be/stops/106198", "https://data.delijn.be/stops/106307"], ["https://data.delijn.be/stops/107285", "https://data.delijn.be/stops/108900"], ["https://data.delijn.be/stops/501046", "https://data.delijn.be/stops/506046"], ["https://data.delijn.be/stops/101345", "https://data.delijn.be/stops/103591"], ["https://data.delijn.be/stops/200856", "https://data.delijn.be/stops/507759"], ["https://data.delijn.be/stops/400171", "https://data.delijn.be/stops/400940"], ["https://data.delijn.be/stops/404192", "https://data.delijn.be/stops/405915"], ["https://data.delijn.be/stops/300660", "https://data.delijn.be/stops/305817"], ["https://data.delijn.be/stops/402428", "https://data.delijn.be/stops/402429"], ["https://data.delijn.be/stops/308064", "https://data.delijn.be/stops/308065"], ["https://data.delijn.be/stops/107189", "https://data.delijn.be/stops/107192"], ["https://data.delijn.be/stops/202738", "https://data.delijn.be/stops/207430"], ["https://data.delijn.be/stops/304497", "https://data.delijn.be/stops/307564"], ["https://data.delijn.be/stops/505740", "https://data.delijn.be/stops/507342"], ["https://data.delijn.be/stops/209515", "https://data.delijn.be/stops/209679"], ["https://data.delijn.be/stops/408052", "https://data.delijn.be/stops/408441"], ["https://data.delijn.be/stops/105533", "https://data.delijn.be/stops/106250"], ["https://data.delijn.be/stops/505700", "https://data.delijn.be/stops/505766"], ["https://data.delijn.be/stops/101432", "https://data.delijn.be/stops/107297"], ["https://data.delijn.be/stops/101464", "https://data.delijn.be/stops/109250"], ["https://data.delijn.be/stops/105024", "https://data.delijn.be/stops/105026"], ["https://data.delijn.be/stops/402662", "https://data.delijn.be/stops/308175"], ["https://data.delijn.be/stops/505917", "https://data.delijn.be/stops/508900"], ["https://data.delijn.be/stops/305576", "https://data.delijn.be/stops/305577"], ["https://data.delijn.be/stops/504834", "https://data.delijn.be/stops/505995"], ["https://data.delijn.be/stops/301809", "https://data.delijn.be/stops/304668"], ["https://data.delijn.be/stops/201355", "https://data.delijn.be/stops/208294"], ["https://data.delijn.be/stops/105988", "https://data.delijn.be/stops/109869"], ["https://data.delijn.be/stops/109814", "https://data.delijn.be/stops/109816"], ["https://data.delijn.be/stops/202886", "https://data.delijn.be/stops/209746"], ["https://data.delijn.be/stops/106687", "https://data.delijn.be/stops/106689"], ["https://data.delijn.be/stops/201141", "https://data.delijn.be/stops/201245"], ["https://data.delijn.be/stops/102598", "https://data.delijn.be/stops/303882"], ["https://data.delijn.be/stops/508006", "https://data.delijn.be/stops/508007"], ["https://data.delijn.be/stops/101595", "https://data.delijn.be/stops/103974"], ["https://data.delijn.be/stops/105026", "https://data.delijn.be/stops/107707"], ["https://data.delijn.be/stops/105129", "https://data.delijn.be/stops/105132"], ["https://data.delijn.be/stops/206257", "https://data.delijn.be/stops/207005"], ["https://data.delijn.be/stops/200866", "https://data.delijn.be/stops/200894"], ["https://data.delijn.be/stops/300179", "https://data.delijn.be/stops/300180"], ["https://data.delijn.be/stops/206431", "https://data.delijn.be/stops/206432"], ["https://data.delijn.be/stops/400961", "https://data.delijn.be/stops/400963"], ["https://data.delijn.be/stops/101404", "https://data.delijn.be/stops/106526"], ["https://data.delijn.be/stops/300311", "https://data.delijn.be/stops/302167"], ["https://data.delijn.be/stops/208556", "https://data.delijn.be/stops/209548"], ["https://data.delijn.be/stops/403631", "https://data.delijn.be/stops/403642"], ["https://data.delijn.be/stops/304834", "https://data.delijn.be/stops/307051"], ["https://data.delijn.be/stops/206980", "https://data.delijn.be/stops/207980"], ["https://data.delijn.be/stops/302213", "https://data.delijn.be/stops/302219"], ["https://data.delijn.be/stops/503376", "https://data.delijn.be/stops/508376"], ["https://data.delijn.be/stops/203297", "https://data.delijn.be/stops/210008"], ["https://data.delijn.be/stops/501420", "https://data.delijn.be/stops/501422"], ["https://data.delijn.be/stops/108309", "https://data.delijn.be/stops/108311"], ["https://data.delijn.be/stops/202903", "https://data.delijn.be/stops/218003"], ["https://data.delijn.be/stops/400609", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/202344", "https://data.delijn.be/stops/202345"], ["https://data.delijn.be/stops/300953", "https://data.delijn.be/stops/307807"], ["https://data.delijn.be/stops/507531", "https://data.delijn.be/stops/507532"], ["https://data.delijn.be/stops/204447", "https://data.delijn.be/stops/205694"], ["https://data.delijn.be/stops/400613", "https://data.delijn.be/stops/400614"], ["https://data.delijn.be/stops/107330", "https://data.delijn.be/stops/107345"], ["https://data.delijn.be/stops/300436", "https://data.delijn.be/stops/300442"], ["https://data.delijn.be/stops/210084", "https://data.delijn.be/stops/211105"], ["https://data.delijn.be/stops/505567", "https://data.delijn.be/stops/508958"], ["https://data.delijn.be/stops/502700", "https://data.delijn.be/stops/505721"], ["https://data.delijn.be/stops/402071", "https://data.delijn.be/stops/402076"], ["https://data.delijn.be/stops/302544", "https://data.delijn.be/stops/303381"], ["https://data.delijn.be/stops/504149", "https://data.delijn.be/stops/505645"], ["https://data.delijn.be/stops/301582", "https://data.delijn.be/stops/303434"], ["https://data.delijn.be/stops/202742", "https://data.delijn.be/stops/202866"], ["https://data.delijn.be/stops/400123", "https://data.delijn.be/stops/400132"], ["https://data.delijn.be/stops/108134", "https://data.delijn.be/stops/108845"], ["https://data.delijn.be/stops/307642", "https://data.delijn.be/stops/307689"], ["https://data.delijn.be/stops/407840", "https://data.delijn.be/stops/407842"], ["https://data.delijn.be/stops/108528", "https://data.delijn.be/stops/108538"], ["https://data.delijn.be/stops/300004", "https://data.delijn.be/stops/304248"], ["https://data.delijn.be/stops/503848", "https://data.delijn.be/stops/508848"], ["https://data.delijn.be/stops/403210", "https://data.delijn.be/stops/403368"], ["https://data.delijn.be/stops/501426", "https://data.delijn.be/stops/505047"], ["https://data.delijn.be/stops/302377", "https://data.delijn.be/stops/302391"], ["https://data.delijn.be/stops/503013", "https://data.delijn.be/stops/508011"], ["https://data.delijn.be/stops/503192", "https://data.delijn.be/stops/503205"], ["https://data.delijn.be/stops/406996", "https://data.delijn.be/stops/407127"], ["https://data.delijn.be/stops/102484", "https://data.delijn.be/stops/407100"], ["https://data.delijn.be/stops/503002", "https://data.delijn.be/stops/508001"], ["https://data.delijn.be/stops/502536", "https://data.delijn.be/stops/507508"], ["https://data.delijn.be/stops/504164", "https://data.delijn.be/stops/509164"], ["https://data.delijn.be/stops/400493", "https://data.delijn.be/stops/407688"], ["https://data.delijn.be/stops/205118", "https://data.delijn.be/stops/205119"], ["https://data.delijn.be/stops/505925", "https://data.delijn.be/stops/509334"], ["https://data.delijn.be/stops/408830", "https://data.delijn.be/stops/408871"], ["https://data.delijn.be/stops/104401", "https://data.delijn.be/stops/107123"], ["https://data.delijn.be/stops/503224", "https://data.delijn.be/stops/508594"], ["https://data.delijn.be/stops/300033", "https://data.delijn.be/stops/300388"], ["https://data.delijn.be/stops/200891", "https://data.delijn.be/stops/211013"], ["https://data.delijn.be/stops/300963", "https://data.delijn.be/stops/300974"], ["https://data.delijn.be/stops/503628", "https://data.delijn.be/stops/508623"], ["https://data.delijn.be/stops/103710", "https://data.delijn.be/stops/105410"], ["https://data.delijn.be/stops/401177", "https://data.delijn.be/stops/406579"], ["https://data.delijn.be/stops/103767", "https://data.delijn.be/stops/107307"], ["https://data.delijn.be/stops/406608", "https://data.delijn.be/stops/406639"], ["https://data.delijn.be/stops/303372", "https://data.delijn.be/stops/303386"], ["https://data.delijn.be/stops/109047", "https://data.delijn.be/stops/109323"], ["https://data.delijn.be/stops/205988", "https://data.delijn.be/stops/208339"], ["https://data.delijn.be/stops/500017", "https://data.delijn.be/stops/501045"], ["https://data.delijn.be/stops/405748", "https://data.delijn.be/stops/405841"], ["https://data.delijn.be/stops/503422", "https://data.delijn.be/stops/503426"], ["https://data.delijn.be/stops/500602", "https://data.delijn.be/stops/501456"], ["https://data.delijn.be/stops/503995", "https://data.delijn.be/stops/508439"], ["https://data.delijn.be/stops/410135", "https://data.delijn.be/stops/410138"], ["https://data.delijn.be/stops/307352", "https://data.delijn.be/stops/307437"], ["https://data.delijn.be/stops/208222", "https://data.delijn.be/stops/209967"], ["https://data.delijn.be/stops/102940", "https://data.delijn.be/stops/104975"], ["https://data.delijn.be/stops/301113", "https://data.delijn.be/stops/307634"], ["https://data.delijn.be/stops/301439", "https://data.delijn.be/stops/302131"], ["https://data.delijn.be/stops/506332", "https://data.delijn.be/stops/509897"], ["https://data.delijn.be/stops/300643", "https://data.delijn.be/stops/300661"], ["https://data.delijn.be/stops/503986", "https://data.delijn.be/stops/508412"], ["https://data.delijn.be/stops/408180", "https://data.delijn.be/stops/408440"], ["https://data.delijn.be/stops/206700", "https://data.delijn.be/stops/207690"], ["https://data.delijn.be/stops/207445", "https://data.delijn.be/stops/209681"], ["https://data.delijn.be/stops/306302", "https://data.delijn.be/stops/306303"], ["https://data.delijn.be/stops/505785", "https://data.delijn.be/stops/509412"], ["https://data.delijn.be/stops/308178", "https://data.delijn.be/stops/308179"], ["https://data.delijn.be/stops/302185", "https://data.delijn.be/stops/302187"], ["https://data.delijn.be/stops/200187", "https://data.delijn.be/stops/201049"], ["https://data.delijn.be/stops/501301", "https://data.delijn.be/stops/501517"], ["https://data.delijn.be/stops/106012", "https://data.delijn.be/stops/107463"], ["https://data.delijn.be/stops/503102", "https://data.delijn.be/stops/505380"], ["https://data.delijn.be/stops/400136", "https://data.delijn.be/stops/400137"], ["https://data.delijn.be/stops/305682", "https://data.delijn.be/stops/305683"], ["https://data.delijn.be/stops/108987", "https://data.delijn.be/stops/108988"], ["https://data.delijn.be/stops/304628", "https://data.delijn.be/stops/304630"], ["https://data.delijn.be/stops/502662", "https://data.delijn.be/stops/507456"], ["https://data.delijn.be/stops/504271", "https://data.delijn.be/stops/504689"], ["https://data.delijn.be/stops/408559", "https://data.delijn.be/stops/408560"], ["https://data.delijn.be/stops/304878", "https://data.delijn.be/stops/304881"], ["https://data.delijn.be/stops/502765", "https://data.delijn.be/stops/507541"], ["https://data.delijn.be/stops/207208", "https://data.delijn.be/stops/207209"], ["https://data.delijn.be/stops/508647", "https://data.delijn.be/stops/508712"], ["https://data.delijn.be/stops/404480", "https://data.delijn.be/stops/410156"], ["https://data.delijn.be/stops/403258", "https://data.delijn.be/stops/403845"], ["https://data.delijn.be/stops/504993", "https://data.delijn.be/stops/507718"], ["https://data.delijn.be/stops/406909", "https://data.delijn.be/stops/409450"], ["https://data.delijn.be/stops/300380", "https://data.delijn.be/stops/300469"], ["https://data.delijn.be/stops/101387", "https://data.delijn.be/stops/106516"], ["https://data.delijn.be/stops/406960", "https://data.delijn.be/stops/406965"], ["https://data.delijn.be/stops/304349", "https://data.delijn.be/stops/304353"], ["https://data.delijn.be/stops/401827", "https://data.delijn.be/stops/401831"], ["https://data.delijn.be/stops/302628", "https://data.delijn.be/stops/302632"], ["https://data.delijn.be/stops/301744", "https://data.delijn.be/stops/308878"], ["https://data.delijn.be/stops/103557", "https://data.delijn.be/stops/109422"], ["https://data.delijn.be/stops/504526", "https://data.delijn.be/stops/509524"], ["https://data.delijn.be/stops/504318", "https://data.delijn.be/stops/509295"], ["https://data.delijn.be/stops/105564", "https://data.delijn.be/stops/105567"], ["https://data.delijn.be/stops/202150", "https://data.delijn.be/stops/203169"], ["https://data.delijn.be/stops/102586", "https://data.delijn.be/stops/102587"], ["https://data.delijn.be/stops/304185", "https://data.delijn.be/stops/307952"], ["https://data.delijn.be/stops/402952", "https://data.delijn.be/stops/302825"], ["https://data.delijn.be/stops/101873", "https://data.delijn.be/stops/106878"], ["https://data.delijn.be/stops/404484", "https://data.delijn.be/stops/404554"], ["https://data.delijn.be/stops/504258", "https://data.delijn.be/stops/509683"], ["https://data.delijn.be/stops/505389", "https://data.delijn.be/stops/508799"], ["https://data.delijn.be/stops/101978", "https://data.delijn.be/stops/108287"], ["https://data.delijn.be/stops/105434", "https://data.delijn.be/stops/105436"], ["https://data.delijn.be/stops/105742", "https://data.delijn.be/stops/305793"], ["https://data.delijn.be/stops/207246", "https://data.delijn.be/stops/207247"], ["https://data.delijn.be/stops/202050", "https://data.delijn.be/stops/203050"], ["https://data.delijn.be/stops/402587", "https://data.delijn.be/stops/407950"], ["https://data.delijn.be/stops/205980", "https://data.delijn.be/stops/206819"], ["https://data.delijn.be/stops/505641", "https://data.delijn.be/stops/505994"], ["https://data.delijn.be/stops/300215", "https://data.delijn.be/stops/301381"], ["https://data.delijn.be/stops/302698", "https://data.delijn.be/stops/302702"], ["https://data.delijn.be/stops/407591", "https://data.delijn.be/stops/408549"], ["https://data.delijn.be/stops/301346", "https://data.delijn.be/stops/306134"], ["https://data.delijn.be/stops/201688", "https://data.delijn.be/stops/201836"], ["https://data.delijn.be/stops/406053", "https://data.delijn.be/stops/409303"], ["https://data.delijn.be/stops/109093", "https://data.delijn.be/stops/109094"], ["https://data.delijn.be/stops/305354", "https://data.delijn.be/stops/306000"], ["https://data.delijn.be/stops/400614", "https://data.delijn.be/stops/400619"], ["https://data.delijn.be/stops/403243", "https://data.delijn.be/stops/403561"], ["https://data.delijn.be/stops/206472", "https://data.delijn.be/stops/206473"], ["https://data.delijn.be/stops/101580", "https://data.delijn.be/stops/105265"], ["https://data.delijn.be/stops/400701", "https://data.delijn.be/stops/400782"], ["https://data.delijn.be/stops/303211", "https://data.delijn.be/stops/303212"], ["https://data.delijn.be/stops/504477", "https://data.delijn.be/stops/509477"], ["https://data.delijn.be/stops/502627", "https://data.delijn.be/stops/507040"], ["https://data.delijn.be/stops/400142", "https://data.delijn.be/stops/409147"], ["https://data.delijn.be/stops/504091", "https://data.delijn.be/stops/505206"], ["https://data.delijn.be/stops/302641", "https://data.delijn.be/stops/302642"], ["https://data.delijn.be/stops/108158", "https://data.delijn.be/stops/108159"], ["https://data.delijn.be/stops/109678", "https://data.delijn.be/stops/109682"], ["https://data.delijn.be/stops/102658", "https://data.delijn.be/stops/105597"], ["https://data.delijn.be/stops/206280", "https://data.delijn.be/stops/207280"], ["https://data.delijn.be/stops/501107", "https://data.delijn.be/stops/506112"], ["https://data.delijn.be/stops/204065", "https://data.delijn.be/stops/205054"], ["https://data.delijn.be/stops/502470", "https://data.delijn.be/stops/502757"], ["https://data.delijn.be/stops/400783", "https://data.delijn.be/stops/400818"], ["https://data.delijn.be/stops/508603", "https://data.delijn.be/stops/508604"], ["https://data.delijn.be/stops/205029", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/503487", "https://data.delijn.be/stops/504474"], ["https://data.delijn.be/stops/102723", "https://data.delijn.be/stops/103340"], ["https://data.delijn.be/stops/206141", "https://data.delijn.be/stops/207142"], ["https://data.delijn.be/stops/406575", "https://data.delijn.be/stops/406587"], ["https://data.delijn.be/stops/101170", "https://data.delijn.be/stops/101765"], ["https://data.delijn.be/stops/200218", "https://data.delijn.be/stops/201219"], ["https://data.delijn.be/stops/107584", "https://data.delijn.be/stops/107588"], ["https://data.delijn.be/stops/404894", "https://data.delijn.be/stops/406722"], ["https://data.delijn.be/stops/105696", "https://data.delijn.be/stops/106068"], ["https://data.delijn.be/stops/200797", "https://data.delijn.be/stops/201797"], ["https://data.delijn.be/stops/104514", "https://data.delijn.be/stops/107794"], ["https://data.delijn.be/stops/207453", "https://data.delijn.be/stops/207454"], ["https://data.delijn.be/stops/304528", "https://data.delijn.be/stops/304673"], ["https://data.delijn.be/stops/200489", "https://data.delijn.be/stops/201486"], ["https://data.delijn.be/stops/501330", "https://data.delijn.be/stops/501480"], ["https://data.delijn.be/stops/208582", "https://data.delijn.be/stops/209583"], ["https://data.delijn.be/stops/202716", "https://data.delijn.be/stops/203717"], ["https://data.delijn.be/stops/504068", "https://data.delijn.be/stops/509518"], ["https://data.delijn.be/stops/201633", "https://data.delijn.be/stops/201941"], ["https://data.delijn.be/stops/202046", "https://data.delijn.be/stops/203076"], ["https://data.delijn.be/stops/206112", "https://data.delijn.be/stops/207125"], ["https://data.delijn.be/stops/305116", "https://data.delijn.be/stops/305128"], ["https://data.delijn.be/stops/505059", "https://data.delijn.be/stops/505333"], ["https://data.delijn.be/stops/207672", "https://data.delijn.be/stops/209001"], ["https://data.delijn.be/stops/102390", "https://data.delijn.be/stops/105525"], ["https://data.delijn.be/stops/502946", "https://data.delijn.be/stops/508587"], ["https://data.delijn.be/stops/403602", "https://data.delijn.be/stops/403654"], ["https://data.delijn.be/stops/402709", "https://data.delijn.be/stops/402867"], ["https://data.delijn.be/stops/106264", "https://data.delijn.be/stops/106272"], ["https://data.delijn.be/stops/506181", "https://data.delijn.be/stops/509933"], ["https://data.delijn.be/stops/204014", "https://data.delijn.be/stops/204015"], ["https://data.delijn.be/stops/201924", "https://data.delijn.be/stops/207406"], ["https://data.delijn.be/stops/303410", "https://data.delijn.be/stops/303426"], ["https://data.delijn.be/stops/305640", "https://data.delijn.be/stops/307269"], ["https://data.delijn.be/stops/406918", "https://data.delijn.be/stops/409483"], ["https://data.delijn.be/stops/407306", "https://data.delijn.be/stops/407398"], ["https://data.delijn.be/stops/501244", "https://data.delijn.be/stops/501771"], ["https://data.delijn.be/stops/204120", "https://data.delijn.be/stops/204122"], ["https://data.delijn.be/stops/408576", "https://data.delijn.be/stops/408753"], ["https://data.delijn.be/stops/401883", "https://data.delijn.be/stops/410306"], ["https://data.delijn.be/stops/501111", "https://data.delijn.be/stops/506109"], ["https://data.delijn.be/stops/202660", "https://data.delijn.be/stops/203660"], ["https://data.delijn.be/stops/101342", "https://data.delijn.be/stops/108111"], ["https://data.delijn.be/stops/407054", "https://data.delijn.be/stops/407056"], ["https://data.delijn.be/stops/202740", "https://data.delijn.be/stops/203740"], ["https://data.delijn.be/stops/505349", "https://data.delijn.be/stops/507297"], ["https://data.delijn.be/stops/202530", "https://data.delijn.be/stops/203530"], ["https://data.delijn.be/stops/504235", "https://data.delijn.be/stops/504240"], ["https://data.delijn.be/stops/107893", "https://data.delijn.be/stops/107898"], ["https://data.delijn.be/stops/402468", "https://data.delijn.be/stops/410078"], ["https://data.delijn.be/stops/204224", "https://data.delijn.be/stops/204599"], ["https://data.delijn.be/stops/200744", "https://data.delijn.be/stops/201744"], ["https://data.delijn.be/stops/101160", "https://data.delijn.be/stops/104126"], ["https://data.delijn.be/stops/507717", "https://data.delijn.be/stops/508451"], ["https://data.delijn.be/stops/102086", "https://data.delijn.be/stops/108868"], ["https://data.delijn.be/stops/402180", "https://data.delijn.be/stops/402497"], ["https://data.delijn.be/stops/304065", "https://data.delijn.be/stops/304066"], ["https://data.delijn.be/stops/106747", "https://data.delijn.be/stops/106748"], ["https://data.delijn.be/stops/409630", "https://data.delijn.be/stops/409789"], ["https://data.delijn.be/stops/307791", "https://data.delijn.be/stops/307792"], ["https://data.delijn.be/stops/302090", "https://data.delijn.be/stops/302091"], ["https://data.delijn.be/stops/203861", "https://data.delijn.be/stops/203862"], ["https://data.delijn.be/stops/408865", "https://data.delijn.be/stops/408882"], ["https://data.delijn.be/stops/403658", "https://data.delijn.be/stops/404580"], ["https://data.delijn.be/stops/301661", "https://data.delijn.be/stops/301662"], ["https://data.delijn.be/stops/304948", "https://data.delijn.be/stops/304949"], ["https://data.delijn.be/stops/502185", "https://data.delijn.be/stops/507183"], ["https://data.delijn.be/stops/407525", "https://data.delijn.be/stops/407538"], ["https://data.delijn.be/stops/202109", "https://data.delijn.be/stops/202184"], ["https://data.delijn.be/stops/206233", "https://data.delijn.be/stops/206864"], ["https://data.delijn.be/stops/307592", "https://data.delijn.be/stops/307601"], ["https://data.delijn.be/stops/503055", "https://data.delijn.be/stops/507818"], ["https://data.delijn.be/stops/105803", "https://data.delijn.be/stops/305791"], ["https://data.delijn.be/stops/504400", "https://data.delijn.be/stops/509719"], ["https://data.delijn.be/stops/300753", "https://data.delijn.be/stops/300833"], ["https://data.delijn.be/stops/404682", "https://data.delijn.be/stops/408908"], ["https://data.delijn.be/stops/305110", "https://data.delijn.be/stops/305119"], ["https://data.delijn.be/stops/108893", "https://data.delijn.be/stops/108897"], ["https://data.delijn.be/stops/506182", "https://data.delijn.be/stops/506676"], ["https://data.delijn.be/stops/208746", "https://data.delijn.be/stops/209419"], ["https://data.delijn.be/stops/206742", "https://data.delijn.be/stops/206985"], ["https://data.delijn.be/stops/200016", "https://data.delijn.be/stops/200149"], ["https://data.delijn.be/stops/408350", "https://data.delijn.be/stops/408382"], ["https://data.delijn.be/stops/202385", "https://data.delijn.be/stops/202386"], ["https://data.delijn.be/stops/106736", "https://data.delijn.be/stops/107198"], ["https://data.delijn.be/stops/106204", "https://data.delijn.be/stops/106205"], ["https://data.delijn.be/stops/104039", "https://data.delijn.be/stops/108518"], ["https://data.delijn.be/stops/500931", "https://data.delijn.be/stops/500933"], ["https://data.delijn.be/stops/300614", "https://data.delijn.be/stops/300621"], ["https://data.delijn.be/stops/201089", "https://data.delijn.be/stops/202946"], ["https://data.delijn.be/stops/300412", "https://data.delijn.be/stops/307261"], ["https://data.delijn.be/stops/505337", "https://data.delijn.be/stops/505599"], ["https://data.delijn.be/stops/103490", "https://data.delijn.be/stops/106214"], ["https://data.delijn.be/stops/204510", "https://data.delijn.be/stops/204613"], ["https://data.delijn.be/stops/300236", "https://data.delijn.be/stops/301379"], ["https://data.delijn.be/stops/301249", "https://data.delijn.be/stops/301261"], ["https://data.delijn.be/stops/501160", "https://data.delijn.be/stops/501751"], ["https://data.delijn.be/stops/504029", "https://data.delijn.be/stops/504706"], ["https://data.delijn.be/stops/102012", "https://data.delijn.be/stops/205642"], ["https://data.delijn.be/stops/503169", "https://data.delijn.be/stops/508170"], ["https://data.delijn.be/stops/405782", "https://data.delijn.be/stops/405809"], ["https://data.delijn.be/stops/403114", "https://data.delijn.be/stops/403234"], ["https://data.delijn.be/stops/200777", "https://data.delijn.be/stops/208308"], ["https://data.delijn.be/stops/504810", "https://data.delijn.be/stops/508214"], ["https://data.delijn.be/stops/303181", "https://data.delijn.be/stops/307799"], ["https://data.delijn.be/stops/301354", "https://data.delijn.be/stops/306129"], ["https://data.delijn.be/stops/407014", "https://data.delijn.be/stops/407085"], ["https://data.delijn.be/stops/105752", "https://data.delijn.be/stops/109817"], ["https://data.delijn.be/stops/204516", "https://data.delijn.be/stops/205046"], ["https://data.delijn.be/stops/208227", "https://data.delijn.be/stops/209226"], ["https://data.delijn.be/stops/503799", "https://data.delijn.be/stops/505388"], ["https://data.delijn.be/stops/101147", "https://data.delijn.be/stops/106862"], ["https://data.delijn.be/stops/201902", "https://data.delijn.be/stops/202475"], ["https://data.delijn.be/stops/403042", "https://data.delijn.be/stops/403044"], ["https://data.delijn.be/stops/208348", "https://data.delijn.be/stops/208349"], ["https://data.delijn.be/stops/302002", "https://data.delijn.be/stops/306381"], ["https://data.delijn.be/stops/305632", "https://data.delijn.be/stops/306809"], ["https://data.delijn.be/stops/403399", "https://data.delijn.be/stops/404976"], ["https://data.delijn.be/stops/409076", "https://data.delijn.be/stops/409139"], ["https://data.delijn.be/stops/108565", "https://data.delijn.be/stops/109731"], ["https://data.delijn.be/stops/300835", "https://data.delijn.be/stops/302280"], ["https://data.delijn.be/stops/206132", "https://data.delijn.be/stops/207136"], ["https://data.delijn.be/stops/505342", "https://data.delijn.be/stops/509480"], ["https://data.delijn.be/stops/408509", "https://data.delijn.be/stops/410249"], ["https://data.delijn.be/stops/408650", "https://data.delijn.be/stops/408673"], ["https://data.delijn.be/stops/307565", "https://data.delijn.be/stops/307652"], ["https://data.delijn.be/stops/403830", "https://data.delijn.be/stops/403844"], ["https://data.delijn.be/stops/202912", "https://data.delijn.be/stops/203819"], ["https://data.delijn.be/stops/306344", "https://data.delijn.be/stops/306345"], ["https://data.delijn.be/stops/504169", "https://data.delijn.be/stops/509169"], ["https://data.delijn.be/stops/405611", "https://data.delijn.be/stops/407172"], ["https://data.delijn.be/stops/502106", "https://data.delijn.be/stops/502145"], ["https://data.delijn.be/stops/204822", "https://data.delijn.be/stops/205507"], ["https://data.delijn.be/stops/509424", "https://data.delijn.be/stops/509438"], ["https://data.delijn.be/stops/300606", "https://data.delijn.be/stops/300614"], ["https://data.delijn.be/stops/106504", "https://data.delijn.be/stops/107114"], ["https://data.delijn.be/stops/200594", "https://data.delijn.be/stops/211129"], ["https://data.delijn.be/stops/206896", "https://data.delijn.be/stops/207896"], ["https://data.delijn.be/stops/102779", "https://data.delijn.be/stops/102951"], ["https://data.delijn.be/stops/306811", "https://data.delijn.be/stops/306812"], ["https://data.delijn.be/stops/302323", "https://data.delijn.be/stops/302332"], ["https://data.delijn.be/stops/504190", "https://data.delijn.be/stops/504645"], ["https://data.delijn.be/stops/406170", "https://data.delijn.be/stops/406181"], ["https://data.delijn.be/stops/302600", "https://data.delijn.be/stops/302611"], ["https://data.delijn.be/stops/510029", "https://data.delijn.be/stops/510030"], ["https://data.delijn.be/stops/306916", "https://data.delijn.be/stops/308875"], ["https://data.delijn.be/stops/302940", "https://data.delijn.be/stops/302969"], ["https://data.delijn.be/stops/301910", "https://data.delijn.be/stops/305920"], ["https://data.delijn.be/stops/302269", "https://data.delijn.be/stops/304314"], ["https://data.delijn.be/stops/408514", "https://data.delijn.be/stops/408576"], ["https://data.delijn.be/stops/200842", "https://data.delijn.be/stops/200890"], ["https://data.delijn.be/stops/108377", "https://data.delijn.be/stops/108378"], ["https://data.delijn.be/stops/503893", "https://data.delijn.be/stops/508898"], ["https://data.delijn.be/stops/400362", "https://data.delijn.be/stops/400363"], ["https://data.delijn.be/stops/214017", "https://data.delijn.be/stops/215017"], ["https://data.delijn.be/stops/208211", "https://data.delijn.be/stops/209210"], ["https://data.delijn.be/stops/300558", "https://data.delijn.be/stops/307864"], ["https://data.delijn.be/stops/104778", "https://data.delijn.be/stops/108154"], ["https://data.delijn.be/stops/101383", "https://data.delijn.be/stops/101396"], ["https://data.delijn.be/stops/207383", "https://data.delijn.be/stops/207807"], ["https://data.delijn.be/stops/401208", "https://data.delijn.be/stops/401264"], ["https://data.delijn.be/stops/207461", "https://data.delijn.be/stops/207490"], ["https://data.delijn.be/stops/202933", "https://data.delijn.be/stops/218001"], ["https://data.delijn.be/stops/308204", "https://data.delijn.be/stops/308208"], ["https://data.delijn.be/stops/206282", "https://data.delijn.be/stops/207282"], ["https://data.delijn.be/stops/502355", "https://data.delijn.be/stops/507353"], ["https://data.delijn.be/stops/109851", "https://data.delijn.be/stops/109853"], ["https://data.delijn.be/stops/501382", "https://data.delijn.be/stops/501393"], ["https://data.delijn.be/stops/101272", "https://data.delijn.be/stops/101277"], ["https://data.delijn.be/stops/301277", "https://data.delijn.be/stops/301278"], ["https://data.delijn.be/stops/304100", "https://data.delijn.be/stops/307996"], ["https://data.delijn.be/stops/104895", "https://data.delijn.be/stops/105030"], ["https://data.delijn.be/stops/409293", "https://data.delijn.be/stops/409303"], ["https://data.delijn.be/stops/103821", "https://data.delijn.be/stops/108085"], ["https://data.delijn.be/stops/405899", "https://data.delijn.be/stops/409458"], ["https://data.delijn.be/stops/507942", "https://data.delijn.be/stops/508848"], ["https://data.delijn.be/stops/509426", "https://data.delijn.be/stops/509437"], ["https://data.delijn.be/stops/308277", "https://data.delijn.be/stops/308278"], ["https://data.delijn.be/stops/507215", "https://data.delijn.be/stops/507217"], ["https://data.delijn.be/stops/307028", "https://data.delijn.be/stops/307029"], ["https://data.delijn.be/stops/107315", "https://data.delijn.be/stops/107565"], ["https://data.delijn.be/stops/104901", "https://data.delijn.be/stops/107611"], ["https://data.delijn.be/stops/207483", "https://data.delijn.be/stops/207533"], ["https://data.delijn.be/stops/503025", "https://data.delijn.be/stops/505264"], ["https://data.delijn.be/stops/200062", "https://data.delijn.be/stops/201096"], ["https://data.delijn.be/stops/503335", "https://data.delijn.be/stops/505630"], ["https://data.delijn.be/stops/305213", "https://data.delijn.be/stops/306880"], ["https://data.delijn.be/stops/304604", "https://data.delijn.be/stops/304611"], ["https://data.delijn.be/stops/104853", "https://data.delijn.be/stops/107893"], ["https://data.delijn.be/stops/300006", "https://data.delijn.be/stops/301339"], ["https://data.delijn.be/stops/402645", "https://data.delijn.be/stops/405485"], ["https://data.delijn.be/stops/200913", "https://data.delijn.be/stops/202093"], ["https://data.delijn.be/stops/306159", "https://data.delijn.be/stops/307835"], ["https://data.delijn.be/stops/402587", "https://data.delijn.be/stops/402863"], ["https://data.delijn.be/stops/404415", "https://data.delijn.be/stops/404570"], ["https://data.delijn.be/stops/400276", "https://data.delijn.be/stops/400398"], ["https://data.delijn.be/stops/502739", "https://data.delijn.be/stops/507739"], ["https://data.delijn.be/stops/105404", "https://data.delijn.be/stops/107150"], ["https://data.delijn.be/stops/408838", "https://data.delijn.be/stops/408842"], ["https://data.delijn.be/stops/507286", "https://data.delijn.be/stops/507290"], ["https://data.delijn.be/stops/406502", "https://data.delijn.be/stops/406503"], ["https://data.delijn.be/stops/305523", "https://data.delijn.be/stops/308357"], ["https://data.delijn.be/stops/204762", "https://data.delijn.be/stops/205370"], ["https://data.delijn.be/stops/105707", "https://data.delijn.be/stops/105708"], ["https://data.delijn.be/stops/504884", "https://data.delijn.be/stops/508586"], ["https://data.delijn.be/stops/105229", "https://data.delijn.be/stops/105231"], ["https://data.delijn.be/stops/302272", "https://data.delijn.be/stops/302278"], ["https://data.delijn.be/stops/109141", "https://data.delijn.be/stops/109142"], ["https://data.delijn.be/stops/200584", "https://data.delijn.be/stops/200649"], ["https://data.delijn.be/stops/101358", "https://data.delijn.be/stops/105921"], ["https://data.delijn.be/stops/404318", "https://data.delijn.be/stops/404390"], ["https://data.delijn.be/stops/201378", "https://data.delijn.be/stops/211049"], ["https://data.delijn.be/stops/504601", "https://data.delijn.be/stops/509601"], ["https://data.delijn.be/stops/206824", "https://data.delijn.be/stops/207458"], ["https://data.delijn.be/stops/400201", "https://data.delijn.be/stops/400210"], ["https://data.delijn.be/stops/303494", "https://data.delijn.be/stops/304989"], ["https://data.delijn.be/stops/407719", "https://data.delijn.be/stops/409521"], ["https://data.delijn.be/stops/401081", "https://data.delijn.be/stops/401525"], ["https://data.delijn.be/stops/501436", "https://data.delijn.be/stops/506117"], ["https://data.delijn.be/stops/402243", "https://data.delijn.be/stops/406857"], ["https://data.delijn.be/stops/308615", "https://data.delijn.be/stops/308617"], ["https://data.delijn.be/stops/302831", "https://data.delijn.be/stops/308824"], ["https://data.delijn.be/stops/405131", "https://data.delijn.be/stops/406411"], ["https://data.delijn.be/stops/101878", "https://data.delijn.be/stops/106078"], ["https://data.delijn.be/stops/503227", "https://data.delijn.be/stops/505274"], ["https://data.delijn.be/stops/300320", "https://data.delijn.be/stops/302411"], ["https://data.delijn.be/stops/408179", "https://data.delijn.be/stops/408182"], ["https://data.delijn.be/stops/206839", "https://data.delijn.be/stops/207839"], ["https://data.delijn.be/stops/306802", "https://data.delijn.be/stops/307728"], ["https://data.delijn.be/stops/105873", "https://data.delijn.be/stops/105884"], ["https://data.delijn.be/stops/508407", "https://data.delijn.be/stops/508444"], ["https://data.delijn.be/stops/402017", "https://data.delijn.be/stops/407797"], ["https://data.delijn.be/stops/203155", "https://data.delijn.be/stops/205792"], ["https://data.delijn.be/stops/106673", "https://data.delijn.be/stops/106674"], ["https://data.delijn.be/stops/201776", "https://data.delijn.be/stops/209247"], ["https://data.delijn.be/stops/200711", "https://data.delijn.be/stops/200712"], ["https://data.delijn.be/stops/502510", "https://data.delijn.be/stops/505553"], ["https://data.delijn.be/stops/204523", "https://data.delijn.be/stops/205482"], ["https://data.delijn.be/stops/405800", "https://data.delijn.be/stops/409429"], ["https://data.delijn.be/stops/204052", "https://data.delijn.be/stops/205051"], ["https://data.delijn.be/stops/208331", "https://data.delijn.be/stops/209716"], ["https://data.delijn.be/stops/204168", "https://data.delijn.be/stops/205169"], ["https://data.delijn.be/stops/400345", "https://data.delijn.be/stops/400438"], ["https://data.delijn.be/stops/402630", "https://data.delijn.be/stops/410022"], ["https://data.delijn.be/stops/200140", "https://data.delijn.be/stops/200985"], ["https://data.delijn.be/stops/108364", "https://data.delijn.be/stops/304920"], ["https://data.delijn.be/stops/504694", "https://data.delijn.be/stops/505573"], ["https://data.delijn.be/stops/303044", "https://data.delijn.be/stops/303141"], ["https://data.delijn.be/stops/504653", "https://data.delijn.be/stops/504976"], ["https://data.delijn.be/stops/501284", "https://data.delijn.be/stops/506349"], ["https://data.delijn.be/stops/303618", "https://data.delijn.be/stops/306708"], ["https://data.delijn.be/stops/305163", "https://data.delijn.be/stops/305190"], ["https://data.delijn.be/stops/300586", "https://data.delijn.be/stops/300621"], ["https://data.delijn.be/stops/300790", "https://data.delijn.be/stops/300793"], ["https://data.delijn.be/stops/200180", "https://data.delijn.be/stops/201180"], ["https://data.delijn.be/stops/301616", "https://data.delijn.be/stops/301665"], ["https://data.delijn.be/stops/501421", "https://data.delijn.be/stops/505528"], ["https://data.delijn.be/stops/105712", "https://data.delijn.be/stops/105714"], ["https://data.delijn.be/stops/300267", "https://data.delijn.be/stops/307492"], ["https://data.delijn.be/stops/409083", "https://data.delijn.be/stops/409098"], ["https://data.delijn.be/stops/200769", "https://data.delijn.be/stops/209251"], ["https://data.delijn.be/stops/404131", "https://data.delijn.be/stops/404190"], ["https://data.delijn.be/stops/400763", "https://data.delijn.be/stops/409638"], ["https://data.delijn.be/stops/501489", "https://data.delijn.be/stops/506284"], ["https://data.delijn.be/stops/303080", "https://data.delijn.be/stops/303112"], ["https://data.delijn.be/stops/300387", "https://data.delijn.be/stops/307491"], ["https://data.delijn.be/stops/208515", "https://data.delijn.be/stops/209515"], ["https://data.delijn.be/stops/501644", "https://data.delijn.be/stops/506150"], ["https://data.delijn.be/stops/303068", "https://data.delijn.be/stops/303149"], ["https://data.delijn.be/stops/107025", "https://data.delijn.be/stops/107027"], ["https://data.delijn.be/stops/503033", "https://data.delijn.be/stops/503100"], ["https://data.delijn.be/stops/504639", "https://data.delijn.be/stops/509242"], ["https://data.delijn.be/stops/304471", "https://data.delijn.be/stops/304557"], ["https://data.delijn.be/stops/404435", "https://data.delijn.be/stops/404467"], ["https://data.delijn.be/stops/302943", "https://data.delijn.be/stops/302956"], ["https://data.delijn.be/stops/304262", "https://data.delijn.be/stops/306662"], ["https://data.delijn.be/stops/401789", "https://data.delijn.be/stops/401840"], ["https://data.delijn.be/stops/409632", "https://data.delijn.be/stops/409634"], ["https://data.delijn.be/stops/204511", "https://data.delijn.be/stops/205509"], ["https://data.delijn.be/stops/202273", "https://data.delijn.be/stops/202668"], ["https://data.delijn.be/stops/404508", "https://data.delijn.be/stops/406758"], ["https://data.delijn.be/stops/502729", "https://data.delijn.be/stops/507728"], ["https://data.delijn.be/stops/200940", "https://data.delijn.be/stops/203682"], ["https://data.delijn.be/stops/507194", "https://data.delijn.be/stops/507205"], ["https://data.delijn.be/stops/409231", "https://data.delijn.be/stops/409236"], ["https://data.delijn.be/stops/301518", "https://data.delijn.be/stops/305737"], ["https://data.delijn.be/stops/401471", "https://data.delijn.be/stops/401930"], ["https://data.delijn.be/stops/301316", "https://data.delijn.be/stops/306661"], ["https://data.delijn.be/stops/204675", "https://data.delijn.be/stops/205311"], ["https://data.delijn.be/stops/200291", "https://data.delijn.be/stops/201380"], ["https://data.delijn.be/stops/405224", "https://data.delijn.be/stops/405225"], ["https://data.delijn.be/stops/204599", "https://data.delijn.be/stops/205096"], ["https://data.delijn.be/stops/104047", "https://data.delijn.be/stops/108396"], ["https://data.delijn.be/stops/509357", "https://data.delijn.be/stops/509589"], ["https://data.delijn.be/stops/401225", "https://data.delijn.be/stops/401380"], ["https://data.delijn.be/stops/307538", "https://data.delijn.be/stops/307540"], ["https://data.delijn.be/stops/504160", "https://data.delijn.be/stops/504170"], ["https://data.delijn.be/stops/202437", "https://data.delijn.be/stops/203431"], ["https://data.delijn.be/stops/508124", "https://data.delijn.be/stops/508318"], ["https://data.delijn.be/stops/409677", "https://data.delijn.be/stops/409680"], ["https://data.delijn.be/stops/201936", "https://data.delijn.be/stops/207948"], ["https://data.delijn.be/stops/209100", "https://data.delijn.be/stops/209160"], ["https://data.delijn.be/stops/103586", "https://data.delijn.be/stops/104250"], ["https://data.delijn.be/stops/405344", "https://data.delijn.be/stops/405345"], ["https://data.delijn.be/stops/103574", "https://data.delijn.be/stops/107131"], ["https://data.delijn.be/stops/402229", "https://data.delijn.be/stops/402332"], ["https://data.delijn.be/stops/506190", "https://data.delijn.be/stops/506479"], ["https://data.delijn.be/stops/506118", "https://data.delijn.be/stops/506124"], ["https://data.delijn.be/stops/101723", "https://data.delijn.be/stops/102197"], ["https://data.delijn.be/stops/202416", "https://data.delijn.be/stops/202570"], ["https://data.delijn.be/stops/208664", "https://data.delijn.be/stops/208754"], ["https://data.delijn.be/stops/307148", "https://data.delijn.be/stops/307150"], ["https://data.delijn.be/stops/400497", "https://data.delijn.be/stops/406565"], ["https://data.delijn.be/stops/200903", "https://data.delijn.be/stops/203261"], ["https://data.delijn.be/stops/202527", "https://data.delijn.be/stops/210009"], ["https://data.delijn.be/stops/203969", "https://data.delijn.be/stops/203970"], ["https://data.delijn.be/stops/202324", "https://data.delijn.be/stops/203066"], ["https://data.delijn.be/stops/503301", "https://data.delijn.be/stops/503309"], ["https://data.delijn.be/stops/504107", "https://data.delijn.be/stops/504471"], ["https://data.delijn.be/stops/302266", "https://data.delijn.be/stops/306373"], ["https://data.delijn.be/stops/301683", "https://data.delijn.be/stops/306294"], ["https://data.delijn.be/stops/504558", "https://data.delijn.be/stops/509557"], ["https://data.delijn.be/stops/203585", "https://data.delijn.be/stops/211076"], ["https://data.delijn.be/stops/503238", "https://data.delijn.be/stops/508238"], ["https://data.delijn.be/stops/301054", "https://data.delijn.be/stops/301062"], ["https://data.delijn.be/stops/502207", "https://data.delijn.be/stops/509890"], ["https://data.delijn.be/stops/219080", "https://data.delijn.be/stops/303322"], ["https://data.delijn.be/stops/105874", "https://data.delijn.be/stops/105883"], ["https://data.delijn.be/stops/302054", "https://data.delijn.be/stops/302055"], ["https://data.delijn.be/stops/307908", "https://data.delijn.be/stops/307909"], ["https://data.delijn.be/stops/304491", "https://data.delijn.be/stops/305602"], ["https://data.delijn.be/stops/400926", "https://data.delijn.be/stops/400934"], ["https://data.delijn.be/stops/504025", "https://data.delijn.be/stops/504721"], ["https://data.delijn.be/stops/206452", "https://data.delijn.be/stops/207451"], ["https://data.delijn.be/stops/200978", "https://data.delijn.be/stops/208560"], ["https://data.delijn.be/stops/409643", "https://data.delijn.be/stops/409817"], ["https://data.delijn.be/stops/202597", "https://data.delijn.be/stops/203580"], ["https://data.delijn.be/stops/408339", "https://data.delijn.be/stops/408383"], ["https://data.delijn.be/stops/308450", "https://data.delijn.be/stops/308691"], ["https://data.delijn.be/stops/300512", "https://data.delijn.be/stops/300530"], ["https://data.delijn.be/stops/105793", "https://data.delijn.be/stops/105794"], ["https://data.delijn.be/stops/408802", "https://data.delijn.be/stops/408811"], ["https://data.delijn.be/stops/206696", "https://data.delijn.be/stops/303857"], ["https://data.delijn.be/stops/506683", "https://data.delijn.be/stops/506684"], ["https://data.delijn.be/stops/302392", "https://data.delijn.be/stops/308556"], ["https://data.delijn.be/stops/108339", "https://data.delijn.be/stops/109300"], ["https://data.delijn.be/stops/400582", "https://data.delijn.be/stops/400583"], ["https://data.delijn.be/stops/500052", "https://data.delijn.be/stops/500053"], ["https://data.delijn.be/stops/206351", "https://data.delijn.be/stops/207362"], ["https://data.delijn.be/stops/303652", "https://data.delijn.be/stops/304873"], ["https://data.delijn.be/stops/407003", "https://data.delijn.be/stops/408195"], ["https://data.delijn.be/stops/303295", "https://data.delijn.be/stops/303299"], ["https://data.delijn.be/stops/502711", "https://data.delijn.be/stops/507319"], ["https://data.delijn.be/stops/302086", "https://data.delijn.be/stops/302087"], ["https://data.delijn.be/stops/404010", "https://data.delijn.be/stops/404298"], ["https://data.delijn.be/stops/105702", "https://data.delijn.be/stops/106074"], ["https://data.delijn.be/stops/305435", "https://data.delijn.be/stops/305510"], ["https://data.delijn.be/stops/304925", "https://data.delijn.be/stops/306102"], ["https://data.delijn.be/stops/302013", "https://data.delijn.be/stops/302045"], ["https://data.delijn.be/stops/206635", "https://data.delijn.be/stops/207637"], ["https://data.delijn.be/stops/102851", "https://data.delijn.be/stops/106878"], ["https://data.delijn.be/stops/505900", "https://data.delijn.be/stops/505934"], ["https://data.delijn.be/stops/303449", "https://data.delijn.be/stops/304226"], ["https://data.delijn.be/stops/207526", "https://data.delijn.be/stops/209080"], ["https://data.delijn.be/stops/504633", "https://data.delijn.be/stops/509073"], ["https://data.delijn.be/stops/505625", "https://data.delijn.be/stops/505749"], ["https://data.delijn.be/stops/206405", "https://data.delijn.be/stops/207405"], ["https://data.delijn.be/stops/405534", "https://data.delijn.be/stops/406896"], ["https://data.delijn.be/stops/104887", "https://data.delijn.be/stops/104888"], ["https://data.delijn.be/stops/106883", "https://data.delijn.be/stops/106884"], ["https://data.delijn.be/stops/502510", "https://data.delijn.be/stops/502811"], ["https://data.delijn.be/stops/304798", "https://data.delijn.be/stops/307130"], ["https://data.delijn.be/stops/302322", "https://data.delijn.be/stops/302323"], ["https://data.delijn.be/stops/505503", "https://data.delijn.be/stops/505603"], ["https://data.delijn.be/stops/105357", "https://data.delijn.be/stops/109737"], ["https://data.delijn.be/stops/204089", "https://data.delijn.be/stops/204091"], ["https://data.delijn.be/stops/206970", "https://data.delijn.be/stops/207611"], ["https://data.delijn.be/stops/108713", "https://data.delijn.be/stops/108714"], ["https://data.delijn.be/stops/101909", "https://data.delijn.be/stops/103209"], ["https://data.delijn.be/stops/206031", "https://data.delijn.be/stops/207029"], ["https://data.delijn.be/stops/406650", "https://data.delijn.be/stops/406651"], ["https://data.delijn.be/stops/502269", "https://data.delijn.be/stops/507272"], ["https://data.delijn.be/stops/301478", "https://data.delijn.be/stops/304569"], ["https://data.delijn.be/stops/102991", "https://data.delijn.be/stops/105604"], ["https://data.delijn.be/stops/202898", "https://data.delijn.be/stops/203898"], ["https://data.delijn.be/stops/107884", "https://data.delijn.be/stops/107888"], ["https://data.delijn.be/stops/504552", "https://data.delijn.be/stops/505991"], ["https://data.delijn.be/stops/400431", "https://data.delijn.be/stops/400440"], ["https://data.delijn.be/stops/200392", "https://data.delijn.be/stops/201392"], ["https://data.delijn.be/stops/303525", "https://data.delijn.be/stops/304242"], ["https://data.delijn.be/stops/101297", "https://data.delijn.be/stops/105483"], ["https://data.delijn.be/stops/208464", "https://data.delijn.be/stops/209682"], ["https://data.delijn.be/stops/101794", "https://data.delijn.be/stops/109102"], ["https://data.delijn.be/stops/200356", "https://data.delijn.be/stops/202651"], ["https://data.delijn.be/stops/106400", "https://data.delijn.be/stops/106403"], ["https://data.delijn.be/stops/400527", "https://data.delijn.be/stops/401997"], ["https://data.delijn.be/stops/106335", "https://data.delijn.be/stops/106336"], ["https://data.delijn.be/stops/307304", "https://data.delijn.be/stops/307305"], ["https://data.delijn.be/stops/104009", "https://data.delijn.be/stops/107219"], ["https://data.delijn.be/stops/109998", "https://data.delijn.be/stops/406469"], ["https://data.delijn.be/stops/304964", "https://data.delijn.be/stops/304965"], ["https://data.delijn.be/stops/504026", "https://data.delijn.be/stops/504704"], ["https://data.delijn.be/stops/301021", "https://data.delijn.be/stops/301022"], ["https://data.delijn.be/stops/200959", "https://data.delijn.be/stops/203518"], ["https://data.delijn.be/stops/502627", "https://data.delijn.be/stops/507627"], ["https://data.delijn.be/stops/503072", "https://data.delijn.be/stops/503365"], ["https://data.delijn.be/stops/308428", "https://data.delijn.be/stops/308431"], ["https://data.delijn.be/stops/504804", "https://data.delijn.be/stops/504807"], ["https://data.delijn.be/stops/301194", "https://data.delijn.be/stops/308258"], ["https://data.delijn.be/stops/307626", "https://data.delijn.be/stops/308263"], ["https://data.delijn.be/stops/404426", "https://data.delijn.be/stops/404444"], ["https://data.delijn.be/stops/200452", "https://data.delijn.be/stops/200618"], ["https://data.delijn.be/stops/502449", "https://data.delijn.be/stops/507595"], ["https://data.delijn.be/stops/108403", "https://data.delijn.be/stops/108407"], ["https://data.delijn.be/stops/404601", "https://data.delijn.be/stops/409465"], ["https://data.delijn.be/stops/204606", "https://data.delijn.be/stops/204608"], ["https://data.delijn.be/stops/406080", "https://data.delijn.be/stops/406139"], ["https://data.delijn.be/stops/108357", "https://data.delijn.be/stops/109335"], ["https://data.delijn.be/stops/304705", "https://data.delijn.be/stops/307853"], ["https://data.delijn.be/stops/502121", "https://data.delijn.be/stops/507164"], ["https://data.delijn.be/stops/103538", "https://data.delijn.be/stops/106722"], ["https://data.delijn.be/stops/209289", "https://data.delijn.be/stops/219004"], ["https://data.delijn.be/stops/102886", "https://data.delijn.be/stops/104685"], ["https://data.delijn.be/stops/200940", "https://data.delijn.be/stops/202682"], ["https://data.delijn.be/stops/202748", "https://data.delijn.be/stops/207424"], ["https://data.delijn.be/stops/402836", "https://data.delijn.be/stops/408944"], ["https://data.delijn.be/stops/308860", "https://data.delijn.be/stops/308861"], ["https://data.delijn.be/stops/107602", "https://data.delijn.be/stops/107603"], ["https://data.delijn.be/stops/305166", "https://data.delijn.be/stops/306964"], ["https://data.delijn.be/stops/405828", "https://data.delijn.be/stops/409698"], ["https://data.delijn.be/stops/503601", "https://data.delijn.be/stops/503603"], ["https://data.delijn.be/stops/208035", "https://data.delijn.be/stops/209034"], ["https://data.delijn.be/stops/208349", "https://data.delijn.be/stops/209348"], ["https://data.delijn.be/stops/206566", "https://data.delijn.be/stops/207566"], ["https://data.delijn.be/stops/106173", "https://data.delijn.be/stops/106179"], ["https://data.delijn.be/stops/104972", "https://data.delijn.be/stops/108556"], ["https://data.delijn.be/stops/301078", "https://data.delijn.be/stops/308819"], ["https://data.delijn.be/stops/105046", "https://data.delijn.be/stops/109766"], ["https://data.delijn.be/stops/107970", "https://data.delijn.be/stops/107971"], ["https://data.delijn.be/stops/304868", "https://data.delijn.be/stops/306172"], ["https://data.delijn.be/stops/202009", "https://data.delijn.be/stops/203008"], ["https://data.delijn.be/stops/106619", "https://data.delijn.be/stops/106620"], ["https://data.delijn.be/stops/207669", "https://data.delijn.be/stops/208502"], ["https://data.delijn.be/stops/202737", "https://data.delijn.be/stops/203737"], ["https://data.delijn.be/stops/404544", "https://data.delijn.be/stops/404583"], ["https://data.delijn.be/stops/104509", "https://data.delijn.be/stops/104511"], ["https://data.delijn.be/stops/403617", "https://data.delijn.be/stops/406332"], ["https://data.delijn.be/stops/208726", "https://data.delijn.be/stops/209726"], ["https://data.delijn.be/stops/108644", "https://data.delijn.be/stops/109680"], ["https://data.delijn.be/stops/206206", "https://data.delijn.be/stops/207207"], ["https://data.delijn.be/stops/503819", "https://data.delijn.be/stops/508819"], ["https://data.delijn.be/stops/102610", "https://data.delijn.be/stops/107765"], ["https://data.delijn.be/stops/407061", "https://data.delijn.be/stops/407070"], ["https://data.delijn.be/stops/302178", "https://data.delijn.be/stops/302179"], ["https://data.delijn.be/stops/304045", "https://data.delijn.be/stops/304047"], ["https://data.delijn.be/stops/204671", "https://data.delijn.be/stops/205671"], ["https://data.delijn.be/stops/106654", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/308507", "https://data.delijn.be/stops/308509"], ["https://data.delijn.be/stops/301558", "https://data.delijn.be/stops/308087"], ["https://data.delijn.be/stops/108819", "https://data.delijn.be/stops/108829"], ["https://data.delijn.be/stops/107331", "https://data.delijn.be/stops/107332"], ["https://data.delijn.be/stops/300657", "https://data.delijn.be/stops/302473"], ["https://data.delijn.be/stops/502731", "https://data.delijn.be/stops/505839"], ["https://data.delijn.be/stops/405302", "https://data.delijn.be/stops/405314"], ["https://data.delijn.be/stops/303333", "https://data.delijn.be/stops/308932"], ["https://data.delijn.be/stops/301740", "https://data.delijn.be/stops/305875"], ["https://data.delijn.be/stops/107030", "https://data.delijn.be/stops/107033"], ["https://data.delijn.be/stops/501191", "https://data.delijn.be/stops/501641"], ["https://data.delijn.be/stops/400881", "https://data.delijn.be/stops/400889"], ["https://data.delijn.be/stops/308151", "https://data.delijn.be/stops/308153"], ["https://data.delijn.be/stops/406129", "https://data.delijn.be/stops/406983"], ["https://data.delijn.be/stops/206953", "https://data.delijn.be/stops/300171"], ["https://data.delijn.be/stops/303051", "https://data.delijn.be/stops/303060"], ["https://data.delijn.be/stops/501256", "https://data.delijn.be/stops/506259"], ["https://data.delijn.be/stops/402493", "https://data.delijn.be/stops/402495"], ["https://data.delijn.be/stops/201678", "https://data.delijn.be/stops/203400"], ["https://data.delijn.be/stops/208397", "https://data.delijn.be/stops/209397"], ["https://data.delijn.be/stops/101510", "https://data.delijn.be/stops/104999"], ["https://data.delijn.be/stops/304411", "https://data.delijn.be/stops/304412"], ["https://data.delijn.be/stops/501330", "https://data.delijn.be/stops/506309"], ["https://data.delijn.be/stops/502152", "https://data.delijn.be/stops/507681"], ["https://data.delijn.be/stops/406152", "https://data.delijn.be/stops/406270"], ["https://data.delijn.be/stops/405631", "https://data.delijn.be/stops/405633"], ["https://data.delijn.be/stops/503489", "https://data.delijn.be/stops/508485"], ["https://data.delijn.be/stops/505232", "https://data.delijn.be/stops/507699"], ["https://data.delijn.be/stops/503508", "https://data.delijn.be/stops/508512"], ["https://data.delijn.be/stops/403328", "https://data.delijn.be/stops/403329"], ["https://data.delijn.be/stops/402608", "https://data.delijn.be/stops/405302"], ["https://data.delijn.be/stops/400712", "https://data.delijn.be/stops/409506"], ["https://data.delijn.be/stops/505596", "https://data.delijn.be/stops/505767"], ["https://data.delijn.be/stops/106595", "https://data.delijn.be/stops/107244"], ["https://data.delijn.be/stops/208485", "https://data.delijn.be/stops/209659"], ["https://data.delijn.be/stops/206885", "https://data.delijn.be/stops/206887"], ["https://data.delijn.be/stops/300431", "https://data.delijn.be/stops/302695"], ["https://data.delijn.be/stops/109182", "https://data.delijn.be/stops/109252"], ["https://data.delijn.be/stops/503048", "https://data.delijn.be/stops/503333"], ["https://data.delijn.be/stops/404661", "https://data.delijn.be/stops/404668"], ["https://data.delijn.be/stops/408748", "https://data.delijn.be/stops/408807"], ["https://data.delijn.be/stops/406164", "https://data.delijn.be/stops/406427"], ["https://data.delijn.be/stops/109790", "https://data.delijn.be/stops/109791"], ["https://data.delijn.be/stops/510020", "https://data.delijn.be/stops/510021"], ["https://data.delijn.be/stops/302648", "https://data.delijn.be/stops/302650"], ["https://data.delijn.be/stops/301251", "https://data.delijn.be/stops/308266"], ["https://data.delijn.be/stops/202652", "https://data.delijn.be/stops/202653"], ["https://data.delijn.be/stops/208149", "https://data.delijn.be/stops/208193"], ["https://data.delijn.be/stops/301512", "https://data.delijn.be/stops/301526"], ["https://data.delijn.be/stops/402322", "https://data.delijn.be/stops/406857"], ["https://data.delijn.be/stops/503451", "https://data.delijn.be/stops/508354"], ["https://data.delijn.be/stops/201685", "https://data.delijn.be/stops/208887"], ["https://data.delijn.be/stops/106727", "https://data.delijn.be/stops/106728"], ["https://data.delijn.be/stops/505648", "https://data.delijn.be/stops/509878"], ["https://data.delijn.be/stops/401842", "https://data.delijn.be/stops/401853"], ["https://data.delijn.be/stops/107105", "https://data.delijn.be/stops/108820"], ["https://data.delijn.be/stops/301467", "https://data.delijn.be/stops/307958"], ["https://data.delijn.be/stops/103031", "https://data.delijn.be/stops/108124"], ["https://data.delijn.be/stops/410361", "https://data.delijn.be/stops/410399"], ["https://data.delijn.be/stops/301589", "https://data.delijn.be/stops/308089"], ["https://data.delijn.be/stops/104021", "https://data.delijn.be/stops/105170"], ["https://data.delijn.be/stops/501046", "https://data.delijn.be/stops/502719"], ["https://data.delijn.be/stops/407323", "https://data.delijn.be/stops/410259"], ["https://data.delijn.be/stops/206941", "https://data.delijn.be/stops/207941"], ["https://data.delijn.be/stops/201887", "https://data.delijn.be/stops/210072"], ["https://data.delijn.be/stops/504430", "https://data.delijn.be/stops/509472"], ["https://data.delijn.be/stops/106203", "https://data.delijn.be/stops/107457"], ["https://data.delijn.be/stops/304015", "https://data.delijn.be/stops/304060"], ["https://data.delijn.be/stops/102042", "https://data.delijn.be/stops/102649"], ["https://data.delijn.be/stops/305330", "https://data.delijn.be/stops/308710"], ["https://data.delijn.be/stops/300936", "https://data.delijn.be/stops/304642"], ["https://data.delijn.be/stops/109891", "https://data.delijn.be/stops/109893"], ["https://data.delijn.be/stops/102013", "https://data.delijn.be/stops/107886"], ["https://data.delijn.be/stops/300198", "https://data.delijn.be/stops/307112"], ["https://data.delijn.be/stops/200009", "https://data.delijn.be/stops/201417"], ["https://data.delijn.be/stops/301410", "https://data.delijn.be/stops/301448"], ["https://data.delijn.be/stops/404850", "https://data.delijn.be/stops/404884"], ["https://data.delijn.be/stops/108784", "https://data.delijn.be/stops/108785"], ["https://data.delijn.be/stops/507303", "https://data.delijn.be/stops/507601"], ["https://data.delijn.be/stops/508474", "https://data.delijn.be/stops/509021"], ["https://data.delijn.be/stops/204097", "https://data.delijn.be/stops/204259"], ["https://data.delijn.be/stops/403630", "https://data.delijn.be/stops/403631"], ["https://data.delijn.be/stops/203101", "https://data.delijn.be/stops/203102"], ["https://data.delijn.be/stops/301456", "https://data.delijn.be/stops/307930"], ["https://data.delijn.be/stops/204527", "https://data.delijn.be/stops/205251"], ["https://data.delijn.be/stops/504357", "https://data.delijn.be/stops/509357"], ["https://data.delijn.be/stops/403775", "https://data.delijn.be/stops/403777"], ["https://data.delijn.be/stops/307203", "https://data.delijn.be/stops/307555"], ["https://data.delijn.be/stops/205350", "https://data.delijn.be/stops/205446"], ["https://data.delijn.be/stops/102660", "https://data.delijn.be/stops/105154"], ["https://data.delijn.be/stops/502597", "https://data.delijn.be/stops/507597"], ["https://data.delijn.be/stops/201381", "https://data.delijn.be/stops/210089"], ["https://data.delijn.be/stops/108683", "https://data.delijn.be/stops/108826"], ["https://data.delijn.be/stops/505783", "https://data.delijn.be/stops/507063"], ["https://data.delijn.be/stops/206864", "https://data.delijn.be/stops/207803"], ["https://data.delijn.be/stops/400226", "https://data.delijn.be/stops/400237"], ["https://data.delijn.be/stops/408796", "https://data.delijn.be/stops/410150"], ["https://data.delijn.be/stops/203192", "https://data.delijn.be/stops/211855"], ["https://data.delijn.be/stops/503851", "https://data.delijn.be/stops/505993"], ["https://data.delijn.be/stops/102237", "https://data.delijn.be/stops/104291"], ["https://data.delijn.be/stops/203166", "https://data.delijn.be/stops/205073"], ["https://data.delijn.be/stops/302074", "https://data.delijn.be/stops/302088"], ["https://data.delijn.be/stops/504129", "https://data.delijn.be/stops/509129"], ["https://data.delijn.be/stops/504879", "https://data.delijn.be/stops/507363"], ["https://data.delijn.be/stops/402538", "https://data.delijn.be/stops/410022"], ["https://data.delijn.be/stops/204566", "https://data.delijn.be/stops/305855"], ["https://data.delijn.be/stops/404450", "https://data.delijn.be/stops/404451"], ["https://data.delijn.be/stops/207762", "https://data.delijn.be/stops/209373"], ["https://data.delijn.be/stops/208159", "https://data.delijn.be/stops/209159"], ["https://data.delijn.be/stops/501262", "https://data.delijn.be/stops/506262"], ["https://data.delijn.be/stops/105716", "https://data.delijn.be/stops/106080"], ["https://data.delijn.be/stops/201639", "https://data.delijn.be/stops/211018"], ["https://data.delijn.be/stops/400251", "https://data.delijn.be/stops/400435"], ["https://data.delijn.be/stops/308770", "https://data.delijn.be/stops/308772"], ["https://data.delijn.be/stops/106436", "https://data.delijn.be/stops/106440"], ["https://data.delijn.be/stops/301535", "https://data.delijn.be/stops/301536"], ["https://data.delijn.be/stops/407686", "https://data.delijn.be/stops/407688"], ["https://data.delijn.be/stops/503369", "https://data.delijn.be/stops/510023"], ["https://data.delijn.be/stops/303754", "https://data.delijn.be/stops/303760"], ["https://data.delijn.be/stops/406094", "https://data.delijn.be/stops/406133"], ["https://data.delijn.be/stops/300564", "https://data.delijn.be/stops/304242"], ["https://data.delijn.be/stops/103611", "https://data.delijn.be/stops/103614"], ["https://data.delijn.be/stops/400779", "https://data.delijn.be/stops/409616"], ["https://data.delijn.be/stops/503321", "https://data.delijn.be/stops/508319"], ["https://data.delijn.be/stops/206910", "https://data.delijn.be/stops/207911"], ["https://data.delijn.be/stops/503536", "https://data.delijn.be/stops/503538"], ["https://data.delijn.be/stops/400129", "https://data.delijn.be/stops/400130"], ["https://data.delijn.be/stops/308730", "https://data.delijn.be/stops/308732"], ["https://data.delijn.be/stops/402870", "https://data.delijn.be/stops/306035"], ["https://data.delijn.be/stops/502128", "https://data.delijn.be/stops/502152"], ["https://data.delijn.be/stops/405505", "https://data.delijn.be/stops/407715"], ["https://data.delijn.be/stops/201473", "https://data.delijn.be/stops/201890"], ["https://data.delijn.be/stops/402529", "https://data.delijn.be/stops/404092"], ["https://data.delijn.be/stops/202188", "https://data.delijn.be/stops/203615"], ["https://data.delijn.be/stops/406006", "https://data.delijn.be/stops/406008"], ["https://data.delijn.be/stops/106184", "https://data.delijn.be/stops/109860"], ["https://data.delijn.be/stops/102950", "https://data.delijn.be/stops/104999"], ["https://data.delijn.be/stops/501615", "https://data.delijn.be/stops/506014"], ["https://data.delijn.be/stops/301067", "https://data.delijn.be/stops/301068"], ["https://data.delijn.be/stops/102447", "https://data.delijn.be/stops/104225"], ["https://data.delijn.be/stops/405206", "https://data.delijn.be/stops/405213"], ["https://data.delijn.be/stops/204411", "https://data.delijn.be/stops/205400"], ["https://data.delijn.be/stops/401397", "https://data.delijn.be/stops/300922"], ["https://data.delijn.be/stops/505926", "https://data.delijn.be/stops/509234"], ["https://data.delijn.be/stops/106195", "https://data.delijn.be/stops/107443"], ["https://data.delijn.be/stops/402268", "https://data.delijn.be/stops/402422"], ["https://data.delijn.be/stops/305105", "https://data.delijn.be/stops/305126"], ["https://data.delijn.be/stops/200548", "https://data.delijn.be/stops/201530"], ["https://data.delijn.be/stops/206642", "https://data.delijn.be/stops/209686"], ["https://data.delijn.be/stops/201808", "https://data.delijn.be/stops/209260"], ["https://data.delijn.be/stops/501612", "https://data.delijn.be/stops/506609"], ["https://data.delijn.be/stops/305546", "https://data.delijn.be/stops/306561"], ["https://data.delijn.be/stops/300130", "https://data.delijn.be/stops/300145"], ["https://data.delijn.be/stops/501690", "https://data.delijn.be/stops/506156"], ["https://data.delijn.be/stops/204189", "https://data.delijn.be/stops/204190"], ["https://data.delijn.be/stops/405492", "https://data.delijn.be/stops/405623"], ["https://data.delijn.be/stops/404122", "https://data.delijn.be/stops/404123"], ["https://data.delijn.be/stops/306801", "https://data.delijn.be/stops/306802"], ["https://data.delijn.be/stops/410213", "https://data.delijn.be/stops/410214"], ["https://data.delijn.be/stops/301844", "https://data.delijn.be/stops/302550"], ["https://data.delijn.be/stops/206201", "https://data.delijn.be/stops/207201"], ["https://data.delijn.be/stops/107690", "https://data.delijn.be/stops/108330"], ["https://data.delijn.be/stops/105721", "https://data.delijn.be/stops/105723"], ["https://data.delijn.be/stops/301628", "https://data.delijn.be/stops/301629"], ["https://data.delijn.be/stops/207696", "https://data.delijn.be/stops/303858"], ["https://data.delijn.be/stops/503612", "https://data.delijn.be/stops/508546"], ["https://data.delijn.be/stops/305497", "https://data.delijn.be/stops/305503"], ["https://data.delijn.be/stops/508467", "https://data.delijn.be/stops/508978"], ["https://data.delijn.be/stops/302993", "https://data.delijn.be/stops/302994"], ["https://data.delijn.be/stops/103586", "https://data.delijn.be/stops/105587"], ["https://data.delijn.be/stops/207865", "https://data.delijn.be/stops/208384"], ["https://data.delijn.be/stops/102006", "https://data.delijn.be/stops/102925"], ["https://data.delijn.be/stops/206385", "https://data.delijn.be/stops/206889"], ["https://data.delijn.be/stops/505837", "https://data.delijn.be/stops/509030"], ["https://data.delijn.be/stops/208122", "https://data.delijn.be/stops/209120"], ["https://data.delijn.be/stops/103672", "https://data.delijn.be/stops/103673"], ["https://data.delijn.be/stops/302470", "https://data.delijn.be/stops/302471"], ["https://data.delijn.be/stops/403484", "https://data.delijn.be/stops/404263"], ["https://data.delijn.be/stops/502405", "https://data.delijn.be/stops/507405"], ["https://data.delijn.be/stops/304092", "https://data.delijn.be/stops/307508"], ["https://data.delijn.be/stops/305242", "https://data.delijn.be/stops/305274"], ["https://data.delijn.be/stops/207342", "https://data.delijn.be/stops/207704"], ["https://data.delijn.be/stops/404416", "https://data.delijn.be/stops/404417"], ["https://data.delijn.be/stops/301408", "https://data.delijn.be/stops/301412"], ["https://data.delijn.be/stops/404168", "https://data.delijn.be/stops/404218"], ["https://data.delijn.be/stops/101235", "https://data.delijn.be/stops/104345"], ["https://data.delijn.be/stops/108685", "https://data.delijn.be/stops/108686"], ["https://data.delijn.be/stops/303122", "https://data.delijn.be/stops/307201"], ["https://data.delijn.be/stops/406071", "https://data.delijn.be/stops/410148"], ["https://data.delijn.be/stops/400489", "https://data.delijn.be/stops/400975"], ["https://data.delijn.be/stops/101221", "https://data.delijn.be/stops/102649"], ["https://data.delijn.be/stops/400102", "https://data.delijn.be/stops/404872"], ["https://data.delijn.be/stops/408181", "https://data.delijn.be/stops/408439"], ["https://data.delijn.be/stops/403312", "https://data.delijn.be/stops/403345"], ["https://data.delijn.be/stops/202680", "https://data.delijn.be/stops/203680"], ["https://data.delijn.be/stops/208700", "https://data.delijn.be/stops/208714"], ["https://data.delijn.be/stops/107355", "https://data.delijn.be/stops/108155"], ["https://data.delijn.be/stops/202920", "https://data.delijn.be/stops/210097"], ["https://data.delijn.be/stops/400911", "https://data.delijn.be/stops/400956"], ["https://data.delijn.be/stops/503975", "https://data.delijn.be/stops/508450"], ["https://data.delijn.be/stops/405245", "https://data.delijn.be/stops/405249"], ["https://data.delijn.be/stops/300027", "https://data.delijn.be/stops/303943"], ["https://data.delijn.be/stops/406158", "https://data.delijn.be/stops/406286"], ["https://data.delijn.be/stops/302643", "https://data.delijn.be/stops/306044"], ["https://data.delijn.be/stops/206878", "https://data.delijn.be/stops/207038"], ["https://data.delijn.be/stops/302100", "https://data.delijn.be/stops/302105"], ["https://data.delijn.be/stops/401755", "https://data.delijn.be/stops/401763"], ["https://data.delijn.be/stops/102388", "https://data.delijn.be/stops/102657"], ["https://data.delijn.be/stops/306688", "https://data.delijn.be/stops/307884"], ["https://data.delijn.be/stops/504716", "https://data.delijn.be/stops/505118"], ["https://data.delijn.be/stops/301584", "https://data.delijn.be/stops/301585"], ["https://data.delijn.be/stops/201671", "https://data.delijn.be/stops/203213"], ["https://data.delijn.be/stops/103209", "https://data.delijn.be/stops/107880"], ["https://data.delijn.be/stops/400540", "https://data.delijn.be/stops/400569"], ["https://data.delijn.be/stops/304806", "https://data.delijn.be/stops/304813"], ["https://data.delijn.be/stops/401084", "https://data.delijn.be/stops/401525"], ["https://data.delijn.be/stops/200385", "https://data.delijn.be/stops/209957"], ["https://data.delijn.be/stops/300977", "https://data.delijn.be/stops/301002"], ["https://data.delijn.be/stops/501382", "https://data.delijn.be/stops/506394"], ["https://data.delijn.be/stops/400212", "https://data.delijn.be/stops/400213"], ["https://data.delijn.be/stops/103352", "https://data.delijn.be/stops/103353"], ["https://data.delijn.be/stops/206748", "https://data.delijn.be/stops/207699"], ["https://data.delijn.be/stops/204023", "https://data.delijn.be/stops/205022"], ["https://data.delijn.be/stops/400266", "https://data.delijn.be/stops/400384"], ["https://data.delijn.be/stops/502132", "https://data.delijn.be/stops/507130"], ["https://data.delijn.be/stops/202902", "https://data.delijn.be/stops/210092"], ["https://data.delijn.be/stops/208031", "https://data.delijn.be/stops/209032"], ["https://data.delijn.be/stops/407892", "https://data.delijn.be/stops/407895"], ["https://data.delijn.be/stops/200949", "https://data.delijn.be/stops/202093"], ["https://data.delijn.be/stops/301822", "https://data.delijn.be/stops/301823"], ["https://data.delijn.be/stops/203786", "https://data.delijn.be/stops/209643"], ["https://data.delijn.be/stops/208197", "https://data.delijn.be/stops/209130"], ["https://data.delijn.be/stops/108227", "https://data.delijn.be/stops/108229"], ["https://data.delijn.be/stops/402382", "https://data.delijn.be/stops/402395"], ["https://data.delijn.be/stops/404365", "https://data.delijn.be/stops/404782"], ["https://data.delijn.be/stops/403443", "https://data.delijn.be/stops/403476"], ["https://data.delijn.be/stops/207047", "https://data.delijn.be/stops/306069"], ["https://data.delijn.be/stops/504265", "https://data.delijn.be/stops/509265"], ["https://data.delijn.be/stops/503685", "https://data.delijn.be/stops/508685"], ["https://data.delijn.be/stops/108638", "https://data.delijn.be/stops/109681"], ["https://data.delijn.be/stops/101945", "https://data.delijn.be/stops/108739"], ["https://data.delijn.be/stops/202524", "https://data.delijn.be/stops/203525"], ["https://data.delijn.be/stops/305540", "https://data.delijn.be/stops/305541"], ["https://data.delijn.be/stops/306696", "https://data.delijn.be/stops/306697"], ["https://data.delijn.be/stops/508232", "https://data.delijn.be/stops/508256"], ["https://data.delijn.be/stops/301614", "https://data.delijn.be/stops/301633"], ["https://data.delijn.be/stops/404526", "https://data.delijn.be/stops/408171"], ["https://data.delijn.be/stops/504470", "https://data.delijn.be/stops/509471"], ["https://data.delijn.be/stops/507010", "https://data.delijn.be/stops/507039"], ["https://data.delijn.be/stops/106452", "https://data.delijn.be/stops/106454"], ["https://data.delijn.be/stops/102457", "https://data.delijn.be/stops/102466"], ["https://data.delijn.be/stops/200944", "https://data.delijn.be/stops/202697"], ["https://data.delijn.be/stops/203510", "https://data.delijn.be/stops/203511"], ["https://data.delijn.be/stops/104384", "https://data.delijn.be/stops/104386"], ["https://data.delijn.be/stops/101036", "https://data.delijn.be/stops/308795"], ["https://data.delijn.be/stops/403985", "https://data.delijn.be/stops/404004"], ["https://data.delijn.be/stops/302252", "https://data.delijn.be/stops/302268"], ["https://data.delijn.be/stops/503493", "https://data.delijn.be/stops/505139"], ["https://data.delijn.be/stops/300691", "https://data.delijn.be/stops/303459"], ["https://data.delijn.be/stops/504145", "https://data.delijn.be/stops/504389"], ["https://data.delijn.be/stops/405962", "https://data.delijn.be/stops/405963"], ["https://data.delijn.be/stops/503024", "https://data.delijn.be/stops/507959"], ["https://data.delijn.be/stops/501373", "https://data.delijn.be/stops/506375"], ["https://data.delijn.be/stops/407680", "https://data.delijn.be/stops/410091"], ["https://data.delijn.be/stops/500053", "https://data.delijn.be/stops/507076"], ["https://data.delijn.be/stops/504461", "https://data.delijn.be/stops/505786"], ["https://data.delijn.be/stops/502656", "https://data.delijn.be/stops/507656"], ["https://data.delijn.be/stops/104738", "https://data.delijn.be/stops/104747"], ["https://data.delijn.be/stops/205039", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/503041", "https://data.delijn.be/stops/508077"], ["https://data.delijn.be/stops/103027", "https://data.delijn.be/stops/104564"], ["https://data.delijn.be/stops/108464", "https://data.delijn.be/stops/305989"], ["https://data.delijn.be/stops/405203", "https://data.delijn.be/stops/405204"], ["https://data.delijn.be/stops/409114", "https://data.delijn.be/stops/409811"], ["https://data.delijn.be/stops/304006", "https://data.delijn.be/stops/304025"], ["https://data.delijn.be/stops/202761", "https://data.delijn.be/stops/203751"], ["https://data.delijn.be/stops/503538", "https://data.delijn.be/stops/505945"], ["https://data.delijn.be/stops/408740", "https://data.delijn.be/stops/408741"], ["https://data.delijn.be/stops/407935", "https://data.delijn.be/stops/407936"], ["https://data.delijn.be/stops/107398", "https://data.delijn.be/stops/107406"], ["https://data.delijn.be/stops/200128", "https://data.delijn.be/stops/200129"], ["https://data.delijn.be/stops/400651", "https://data.delijn.be/stops/400665"], ["https://data.delijn.be/stops/102746", "https://data.delijn.be/stops/106417"], ["https://data.delijn.be/stops/206656", "https://data.delijn.be/stops/206718"], ["https://data.delijn.be/stops/206596", "https://data.delijn.be/stops/207596"], ["https://data.delijn.be/stops/209347", "https://data.delijn.be/stops/218028"], ["https://data.delijn.be/stops/503900", "https://data.delijn.be/stops/505917"], ["https://data.delijn.be/stops/502553", "https://data.delijn.be/stops/507559"], ["https://data.delijn.be/stops/200167", "https://data.delijn.be/stops/200749"], ["https://data.delijn.be/stops/305356", "https://data.delijn.be/stops/307111"], ["https://data.delijn.be/stops/402563", "https://data.delijn.be/stops/407801"], ["https://data.delijn.be/stops/402000", "https://data.delijn.be/stops/403501"], ["https://data.delijn.be/stops/205420", "https://data.delijn.be/stops/205765"], ["https://data.delijn.be/stops/204297", "https://data.delijn.be/stops/204497"], ["https://data.delijn.be/stops/202434", "https://data.delijn.be/stops/203717"], ["https://data.delijn.be/stops/201249", "https://data.delijn.be/stops/211051"], ["https://data.delijn.be/stops/106105", "https://data.delijn.be/stops/106108"], ["https://data.delijn.be/stops/403306", "https://data.delijn.be/stops/405637"], ["https://data.delijn.be/stops/305100", "https://data.delijn.be/stops/305107"], ["https://data.delijn.be/stops/405867", "https://data.delijn.be/stops/407511"], ["https://data.delijn.be/stops/400081", "https://data.delijn.be/stops/400161"], ["https://data.delijn.be/stops/407352", "https://data.delijn.be/stops/407397"], ["https://data.delijn.be/stops/200591", "https://data.delijn.be/stops/201591"], ["https://data.delijn.be/stops/301145", "https://data.delijn.be/stops/307697"], ["https://data.delijn.be/stops/104484", "https://data.delijn.be/stops/303561"], ["https://data.delijn.be/stops/304386", "https://data.delijn.be/stops/307070"], ["https://data.delijn.be/stops/208222", "https://data.delijn.be/stops/208967"], ["https://data.delijn.be/stops/103478", "https://data.delijn.be/stops/108929"], ["https://data.delijn.be/stops/305875", "https://data.delijn.be/stops/305907"], ["https://data.delijn.be/stops/307026", "https://data.delijn.be/stops/307573"], ["https://data.delijn.be/stops/504155", "https://data.delijn.be/stops/505109"], ["https://data.delijn.be/stops/201174", "https://data.delijn.be/stops/201650"], ["https://data.delijn.be/stops/400990", "https://data.delijn.be/stops/400991"], ["https://data.delijn.be/stops/503753", "https://data.delijn.be/stops/508756"], ["https://data.delijn.be/stops/407931", "https://data.delijn.be/stops/407933"], ["https://data.delijn.be/stops/405959", "https://data.delijn.be/stops/405960"], ["https://data.delijn.be/stops/304729", "https://data.delijn.be/stops/307333"], ["https://data.delijn.be/stops/201896", "https://data.delijn.be/stops/203941"], ["https://data.delijn.be/stops/103244", "https://data.delijn.be/stops/104681"], ["https://data.delijn.be/stops/305290", "https://data.delijn.be/stops/305291"], ["https://data.delijn.be/stops/300265", "https://data.delijn.be/stops/307494"], ["https://data.delijn.be/stops/401730", "https://data.delijn.be/stops/401765"], ["https://data.delijn.be/stops/404658", "https://data.delijn.be/stops/404659"], ["https://data.delijn.be/stops/401771", "https://data.delijn.be/stops/406347"], ["https://data.delijn.be/stops/300941", "https://data.delijn.be/stops/300942"], ["https://data.delijn.be/stops/104024", "https://data.delijn.be/stops/106898"], ["https://data.delijn.be/stops/302078", "https://data.delijn.be/stops/302277"], ["https://data.delijn.be/stops/302922", "https://data.delijn.be/stops/303072"], ["https://data.delijn.be/stops/201782", "https://data.delijn.be/stops/218010"], ["https://data.delijn.be/stops/304954", "https://data.delijn.be/stops/304977"], ["https://data.delijn.be/stops/200583", "https://data.delijn.be/stops/201583"], ["https://data.delijn.be/stops/207618", "https://data.delijn.be/stops/207619"], ["https://data.delijn.be/stops/300420", "https://data.delijn.be/stops/300429"], ["https://data.delijn.be/stops/201607", "https://data.delijn.be/stops/211001"], ["https://data.delijn.be/stops/208174", "https://data.delijn.be/stops/208177"], ["https://data.delijn.be/stops/208319", "https://data.delijn.be/stops/209375"], ["https://data.delijn.be/stops/202417", "https://data.delijn.be/stops/203409"], ["https://data.delijn.be/stops/304133", "https://data.delijn.be/stops/304146"], ["https://data.delijn.be/stops/504852", "https://data.delijn.be/stops/508833"], ["https://data.delijn.be/stops/202361", "https://data.delijn.be/stops/203990"], ["https://data.delijn.be/stops/300961", "https://data.delijn.be/stops/302226"], ["https://data.delijn.be/stops/204294", "https://data.delijn.be/stops/204532"], ["https://data.delijn.be/stops/308494", "https://data.delijn.be/stops/308497"], ["https://data.delijn.be/stops/108682", "https://data.delijn.be/stops/108904"], ["https://data.delijn.be/stops/503172", "https://data.delijn.be/stops/508169"], ["https://data.delijn.be/stops/105228", "https://data.delijn.be/stops/105283"], ["https://data.delijn.be/stops/101173", "https://data.delijn.be/stops/104855"], ["https://data.delijn.be/stops/303560", "https://data.delijn.be/stops/308619"], ["https://data.delijn.be/stops/205007", "https://data.delijn.be/stops/205699"], ["https://data.delijn.be/stops/304261", "https://data.delijn.be/stops/304263"], ["https://data.delijn.be/stops/202430", "https://data.delijn.be/stops/203429"], ["https://data.delijn.be/stops/105533", "https://data.delijn.be/stops/105534"], ["https://data.delijn.be/stops/501202", "https://data.delijn.be/stops/506202"], ["https://data.delijn.be/stops/401788", "https://data.delijn.be/stops/406031"], ["https://data.delijn.be/stops/402340", "https://data.delijn.be/stops/410075"], ["https://data.delijn.be/stops/302020", "https://data.delijn.be/stops/303657"], ["https://data.delijn.be/stops/509150", "https://data.delijn.be/stops/509741"], ["https://data.delijn.be/stops/400964", "https://data.delijn.be/stops/401255"], ["https://data.delijn.be/stops/509211", "https://data.delijn.be/stops/509217"], ["https://data.delijn.be/stops/503461", "https://data.delijn.be/stops/509951"], ["https://data.delijn.be/stops/401413", "https://data.delijn.be/stops/308957"], ["https://data.delijn.be/stops/207739", "https://data.delijn.be/stops/207899"], ["https://data.delijn.be/stops/408581", "https://data.delijn.be/stops/302893"], ["https://data.delijn.be/stops/104471", "https://data.delijn.be/stops/104472"], ["https://data.delijn.be/stops/502286", "https://data.delijn.be/stops/507286"], ["https://data.delijn.be/stops/400820", "https://data.delijn.be/stops/400822"], ["https://data.delijn.be/stops/102598", "https://data.delijn.be/stops/107818"], ["https://data.delijn.be/stops/407372", "https://data.delijn.be/stops/407378"], ["https://data.delijn.be/stops/102405", "https://data.delijn.be/stops/109673"], ["https://data.delijn.be/stops/108949", "https://data.delijn.be/stops/109222"], ["https://data.delijn.be/stops/106948", "https://data.delijn.be/stops/106949"], ["https://data.delijn.be/stops/504682", "https://data.delijn.be/stops/509017"], ["https://data.delijn.be/stops/200901", "https://data.delijn.be/stops/202269"], ["https://data.delijn.be/stops/304106", "https://data.delijn.be/stops/304114"], ["https://data.delijn.be/stops/302613", "https://data.delijn.be/stops/302635"], ["https://data.delijn.be/stops/107694", "https://data.delijn.be/stops/406770"], ["https://data.delijn.be/stops/107409", "https://data.delijn.be/stops/107691"], ["https://data.delijn.be/stops/200668", "https://data.delijn.be/stops/508578"], ["https://data.delijn.be/stops/400701", "https://data.delijn.be/stops/400724"], ["https://data.delijn.be/stops/402109", "https://data.delijn.be/stops/402284"], ["https://data.delijn.be/stops/302634", "https://data.delijn.be/stops/302642"], ["https://data.delijn.be/stops/304414", "https://data.delijn.be/stops/307386"], ["https://data.delijn.be/stops/501114", "https://data.delijn.be/stops/506640"], ["https://data.delijn.be/stops/502757", "https://data.delijn.be/stops/505238"], ["https://data.delijn.be/stops/307233", "https://data.delijn.be/stops/308853"], ["https://data.delijn.be/stops/403080", "https://data.delijn.be/stops/403501"], ["https://data.delijn.be/stops/109103", "https://data.delijn.be/stops/109183"], ["https://data.delijn.be/stops/504304", "https://data.delijn.be/stops/509380"], ["https://data.delijn.be/stops/301945", "https://data.delijn.be/stops/301948"], ["https://data.delijn.be/stops/302600", "https://data.delijn.be/stops/302629"], ["https://data.delijn.be/stops/102564", "https://data.delijn.be/stops/102567"], ["https://data.delijn.be/stops/400650", "https://data.delijn.be/stops/400660"], ["https://data.delijn.be/stops/202174", "https://data.delijn.be/stops/202190"], ["https://data.delijn.be/stops/208146", "https://data.delijn.be/stops/209698"], ["https://data.delijn.be/stops/403040", "https://data.delijn.be/stops/403276"], ["https://data.delijn.be/stops/107351", "https://data.delijn.be/stops/107353"], ["https://data.delijn.be/stops/403930", "https://data.delijn.be/stops/404086"], ["https://data.delijn.be/stops/406558", "https://data.delijn.be/stops/406566"], ["https://data.delijn.be/stops/303156", "https://data.delijn.be/stops/303210"], ["https://data.delijn.be/stops/206344", "https://data.delijn.be/stops/207344"], ["https://data.delijn.be/stops/301303", "https://data.delijn.be/stops/306257"], ["https://data.delijn.be/stops/104200", "https://data.delijn.be/stops/105235"], ["https://data.delijn.be/stops/306725", "https://data.delijn.be/stops/306728"], ["https://data.delijn.be/stops/200462", "https://data.delijn.be/stops/200465"], ["https://data.delijn.be/stops/105869", "https://data.delijn.be/stops/105872"], ["https://data.delijn.be/stops/204287", "https://data.delijn.be/stops/205287"], ["https://data.delijn.be/stops/307433", "https://data.delijn.be/stops/307434"], ["https://data.delijn.be/stops/304731", "https://data.delijn.be/stops/304733"], ["https://data.delijn.be/stops/102449", "https://data.delijn.be/stops/107983"], ["https://data.delijn.be/stops/403623", "https://data.delijn.be/stops/403652"], ["https://data.delijn.be/stops/200128", "https://data.delijn.be/stops/200301"], ["https://data.delijn.be/stops/108974", "https://data.delijn.be/stops/109462"], ["https://data.delijn.be/stops/202348", "https://data.delijn.be/stops/209710"], ["https://data.delijn.be/stops/300162", "https://data.delijn.be/stops/301188"], ["https://data.delijn.be/stops/405683", "https://data.delijn.be/stops/409727"], ["https://data.delijn.be/stops/503194", "https://data.delijn.be/stops/503984"], ["https://data.delijn.be/stops/503224", "https://data.delijn.be/stops/508224"], ["https://data.delijn.be/stops/406733", "https://data.delijn.be/stops/408755"], ["https://data.delijn.be/stops/103745", "https://data.delijn.be/stops/103770"], ["https://data.delijn.be/stops/201971", "https://data.delijn.be/stops/207616"], ["https://data.delijn.be/stops/105713", "https://data.delijn.be/stops/105716"], ["https://data.delijn.be/stops/301958", "https://data.delijn.be/stops/307832"], ["https://data.delijn.be/stops/303017", "https://data.delijn.be/stops/303088"], ["https://data.delijn.be/stops/106664", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/403484", "https://data.delijn.be/stops/403664"], ["https://data.delijn.be/stops/405956", "https://data.delijn.be/stops/308152"], ["https://data.delijn.be/stops/207432", "https://data.delijn.be/stops/209690"], ["https://data.delijn.be/stops/102582", "https://data.delijn.be/stops/104450"], ["https://data.delijn.be/stops/308146", "https://data.delijn.be/stops/308162"], ["https://data.delijn.be/stops/503385", "https://data.delijn.be/stops/508385"], ["https://data.delijn.be/stops/406244", "https://data.delijn.be/stops/406259"], ["https://data.delijn.be/stops/408257", "https://data.delijn.be/stops/408336"], ["https://data.delijn.be/stops/200227", "https://data.delijn.be/stops/200228"], ["https://data.delijn.be/stops/509831", "https://data.delijn.be/stops/509833"], ["https://data.delijn.be/stops/402445", "https://data.delijn.be/stops/402447"], ["https://data.delijn.be/stops/301959", "https://data.delijn.be/stops/301963"], ["https://data.delijn.be/stops/408246", "https://data.delijn.be/stops/408249"], ["https://data.delijn.be/stops/200045", "https://data.delijn.be/stops/210095"], ["https://data.delijn.be/stops/208693", "https://data.delijn.be/stops/209664"], ["https://data.delijn.be/stops/302165", "https://data.delijn.be/stops/302167"], ["https://data.delijn.be/stops/302770", "https://data.delijn.be/stops/302778"], ["https://data.delijn.be/stops/303379", "https://data.delijn.be/stops/303391"], ["https://data.delijn.be/stops/303702", "https://data.delijn.be/stops/304919"], ["https://data.delijn.be/stops/204530", "https://data.delijn.be/stops/205296"], ["https://data.delijn.be/stops/503553", "https://data.delijn.be/stops/508553"], ["https://data.delijn.be/stops/504404", "https://data.delijn.be/stops/504416"], ["https://data.delijn.be/stops/307885", "https://data.delijn.be/stops/309671"], ["https://data.delijn.be/stops/406240", "https://data.delijn.be/stops/406252"], ["https://data.delijn.be/stops/207102", "https://data.delijn.be/stops/207103"], ["https://data.delijn.be/stops/303016", "https://data.delijn.be/stops/303033"], ["https://data.delijn.be/stops/501207", "https://data.delijn.be/stops/505047"], ["https://data.delijn.be/stops/102633", "https://data.delijn.be/stops/102638"], ["https://data.delijn.be/stops/306054", "https://data.delijn.be/stops/306056"], ["https://data.delijn.be/stops/407452", "https://data.delijn.be/stops/407468"], ["https://data.delijn.be/stops/201695", "https://data.delijn.be/stops/203689"], ["https://data.delijn.be/stops/204748", "https://data.delijn.be/stops/204749"], ["https://data.delijn.be/stops/101186", "https://data.delijn.be/stops/106776"], ["https://data.delijn.be/stops/200544", "https://data.delijn.be/stops/210046"], ["https://data.delijn.be/stops/402681", "https://data.delijn.be/stops/402730"], ["https://data.delijn.be/stops/407585", "https://data.delijn.be/stops/407586"], ["https://data.delijn.be/stops/305177", "https://data.delijn.be/stops/305201"], ["https://data.delijn.be/stops/208202", "https://data.delijn.be/stops/209202"], ["https://data.delijn.be/stops/106350", "https://data.delijn.be/stops/106352"], ["https://data.delijn.be/stops/207250", "https://data.delijn.be/stops/216021"], ["https://data.delijn.be/stops/303220", "https://data.delijn.be/stops/305551"], ["https://data.delijn.be/stops/209102", "https://data.delijn.be/stops/219005"], ["https://data.delijn.be/stops/502226", "https://data.delijn.be/stops/507226"], ["https://data.delijn.be/stops/303179", "https://data.delijn.be/stops/303575"], ["https://data.delijn.be/stops/502491", "https://data.delijn.be/stops/507508"], ["https://data.delijn.be/stops/500008", "https://data.delijn.be/stops/507112"], ["https://data.delijn.be/stops/208256", "https://data.delijn.be/stops/218027"], ["https://data.delijn.be/stops/101552", "https://data.delijn.be/stops/107918"], ["https://data.delijn.be/stops/106305", "https://data.delijn.be/stops/106308"], ["https://data.delijn.be/stops/305055", "https://data.delijn.be/stops/306934"], ["https://data.delijn.be/stops/302611", "https://data.delijn.be/stops/302655"], ["https://data.delijn.be/stops/106273", "https://data.delijn.be/stops/109629"], ["https://data.delijn.be/stops/303772", "https://data.delijn.be/stops/303784"], ["https://data.delijn.be/stops/204116", "https://data.delijn.be/stops/205116"], ["https://data.delijn.be/stops/504784", "https://data.delijn.be/stops/508515"], ["https://data.delijn.be/stops/102297", "https://data.delijn.be/stops/102298"], ["https://data.delijn.be/stops/106493", "https://data.delijn.be/stops/106495"], ["https://data.delijn.be/stops/407377", "https://data.delijn.be/stops/407379"], ["https://data.delijn.be/stops/505238", "https://data.delijn.be/stops/505650"], ["https://data.delijn.be/stops/300099", "https://data.delijn.be/stops/307360"], ["https://data.delijn.be/stops/302021", "https://data.delijn.be/stops/303657"], ["https://data.delijn.be/stops/502749", "https://data.delijn.be/stops/507415"], ["https://data.delijn.be/stops/206333", "https://data.delijn.be/stops/207363"], ["https://data.delijn.be/stops/504802", "https://data.delijn.be/stops/504804"], ["https://data.delijn.be/stops/207701", "https://data.delijn.be/stops/207887"], ["https://data.delijn.be/stops/202280", "https://data.delijn.be/stops/202281"], ["https://data.delijn.be/stops/109602", "https://data.delijn.be/stops/109603"], ["https://data.delijn.be/stops/504408", "https://data.delijn.be/stops/505997"], ["https://data.delijn.be/stops/102795", "https://data.delijn.be/stops/102890"], ["https://data.delijn.be/stops/201362", "https://data.delijn.be/stops/203005"], ["https://data.delijn.be/stops/101419", "https://data.delijn.be/stops/108716"], ["https://data.delijn.be/stops/401536", "https://data.delijn.be/stops/401539"], ["https://data.delijn.be/stops/505675", "https://data.delijn.be/stops/505676"], ["https://data.delijn.be/stops/400533", "https://data.delijn.be/stops/403548"], ["https://data.delijn.be/stops/301801", "https://data.delijn.be/stops/301818"], ["https://data.delijn.be/stops/302647", "https://data.delijn.be/stops/302649"], ["https://data.delijn.be/stops/208182", "https://data.delijn.be/stops/218019"], ["https://data.delijn.be/stops/207382", "https://data.delijn.be/stops/207921"], ["https://data.delijn.be/stops/504270", "https://data.delijn.be/stops/504689"], ["https://data.delijn.be/stops/201804", "https://data.delijn.be/stops/208250"], ["https://data.delijn.be/stops/105474", "https://data.delijn.be/stops/109935"], ["https://data.delijn.be/stops/200859", "https://data.delijn.be/stops/203333"], ["https://data.delijn.be/stops/402004", "https://data.delijn.be/stops/406449"], ["https://data.delijn.be/stops/105884", "https://data.delijn.be/stops/105934"], ["https://data.delijn.be/stops/204604", "https://data.delijn.be/stops/205605"], ["https://data.delijn.be/stops/202246", "https://data.delijn.be/stops/203043"], ["https://data.delijn.be/stops/210078", "https://data.delijn.be/stops/211078"], ["https://data.delijn.be/stops/304120", "https://data.delijn.be/stops/307579"], ["https://data.delijn.be/stops/201943", "https://data.delijn.be/stops/203145"], ["https://data.delijn.be/stops/204556", "https://data.delijn.be/stops/211063"], ["https://data.delijn.be/stops/206938", "https://data.delijn.be/stops/207937"], ["https://data.delijn.be/stops/406238", "https://data.delijn.be/stops/410044"], ["https://data.delijn.be/stops/501041", "https://data.delijn.be/stops/506031"], ["https://data.delijn.be/stops/109912", "https://data.delijn.be/stops/109917"], ["https://data.delijn.be/stops/302413", "https://data.delijn.be/stops/302424"], ["https://data.delijn.be/stops/305523", "https://data.delijn.be/stops/307012"], ["https://data.delijn.be/stops/200414", "https://data.delijn.be/stops/203359"], ["https://data.delijn.be/stops/303249", "https://data.delijn.be/stops/303659"], ["https://data.delijn.be/stops/504746", "https://data.delijn.be/stops/505305"], ["https://data.delijn.be/stops/406405", "https://data.delijn.be/stops/407725"], ["https://data.delijn.be/stops/104036", "https://data.delijn.be/stops/108832"], ["https://data.delijn.be/stops/203058", "https://data.delijn.be/stops/210073"], ["https://data.delijn.be/stops/200247", "https://data.delijn.be/stops/202757"], ["https://data.delijn.be/stops/502476", "https://data.delijn.be/stops/502945"], ["https://data.delijn.be/stops/406032", "https://data.delijn.be/stops/406652"], ["https://data.delijn.be/stops/303813", "https://data.delijn.be/stops/303867"], ["https://data.delijn.be/stops/106760", "https://data.delijn.be/stops/106857"], ["https://data.delijn.be/stops/109355", "https://data.delijn.be/stops/109356"], ["https://data.delijn.be/stops/304491", "https://data.delijn.be/stops/304516"], ["https://data.delijn.be/stops/304462", "https://data.delijn.be/stops/307694"], ["https://data.delijn.be/stops/400275", "https://data.delijn.be/stops/400413"], ["https://data.delijn.be/stops/504379", "https://data.delijn.be/stops/504993"], ["https://data.delijn.be/stops/303446", "https://data.delijn.be/stops/303448"], ["https://data.delijn.be/stops/405776", "https://data.delijn.be/stops/409761"], ["https://data.delijn.be/stops/208459", "https://data.delijn.be/stops/209460"], ["https://data.delijn.be/stops/202410", "https://data.delijn.be/stops/203417"], ["https://data.delijn.be/stops/101268", "https://data.delijn.be/stops/104102"], ["https://data.delijn.be/stops/203430", "https://data.delijn.be/stops/205939"], ["https://data.delijn.be/stops/501655", "https://data.delijn.be/stops/506165"], ["https://data.delijn.be/stops/302113", "https://data.delijn.be/stops/304140"], ["https://data.delijn.be/stops/502343", "https://data.delijn.be/stops/507348"], ["https://data.delijn.be/stops/405327", "https://data.delijn.be/stops/405348"], ["https://data.delijn.be/stops/303849", "https://data.delijn.be/stops/303961"], ["https://data.delijn.be/stops/407837", "https://data.delijn.be/stops/407850"], ["https://data.delijn.be/stops/105465", "https://data.delijn.be/stops/105470"], ["https://data.delijn.be/stops/307198", "https://data.delijn.be/stops/307200"], ["https://data.delijn.be/stops/206216", "https://data.delijn.be/stops/206904"], ["https://data.delijn.be/stops/304868", "https://data.delijn.be/stops/304869"], ["https://data.delijn.be/stops/208628", "https://data.delijn.be/stops/208629"], ["https://data.delijn.be/stops/103950", "https://data.delijn.be/stops/103955"], ["https://data.delijn.be/stops/201897", "https://data.delijn.be/stops/202001"], ["https://data.delijn.be/stops/101719", "https://data.delijn.be/stops/109667"], ["https://data.delijn.be/stops/200783", "https://data.delijn.be/stops/201019"], ["https://data.delijn.be/stops/304848", "https://data.delijn.be/stops/304849"], ["https://data.delijn.be/stops/106821", "https://data.delijn.be/stops/106822"], ["https://data.delijn.be/stops/307946", "https://data.delijn.be/stops/308065"], ["https://data.delijn.be/stops/102472", "https://data.delijn.be/stops/406849"], ["https://data.delijn.be/stops/302293", "https://data.delijn.be/stops/303506"], ["https://data.delijn.be/stops/404711", "https://data.delijn.be/stops/404754"], ["https://data.delijn.be/stops/407002", "https://data.delijn.be/stops/407003"], ["https://data.delijn.be/stops/208167", "https://data.delijn.be/stops/208176"], ["https://data.delijn.be/stops/407893", "https://data.delijn.be/stops/306055"], ["https://data.delijn.be/stops/103330", "https://data.delijn.be/stops/104362"], ["https://data.delijn.be/stops/400974", "https://data.delijn.be/stops/400975"], ["https://data.delijn.be/stops/400130", "https://data.delijn.be/stops/400132"], ["https://data.delijn.be/stops/205106", "https://data.delijn.be/stops/205620"], ["https://data.delijn.be/stops/205053", "https://data.delijn.be/stops/205054"], ["https://data.delijn.be/stops/109859", "https://data.delijn.be/stops/109894"], ["https://data.delijn.be/stops/201903", "https://data.delijn.be/stops/202513"], ["https://data.delijn.be/stops/202177", "https://data.delijn.be/stops/203497"], ["https://data.delijn.be/stops/400034", "https://data.delijn.be/stops/400035"], ["https://data.delijn.be/stops/206404", "https://data.delijn.be/stops/207404"], ["https://data.delijn.be/stops/408609", "https://data.delijn.be/stops/408772"], ["https://data.delijn.be/stops/206060", "https://data.delijn.be/stops/207061"], ["https://data.delijn.be/stops/406568", "https://data.delijn.be/stops/406693"], ["https://data.delijn.be/stops/403232", "https://data.delijn.be/stops/404180"], ["https://data.delijn.be/stops/402301", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/202922", "https://data.delijn.be/stops/203855"], ["https://data.delijn.be/stops/307421", "https://data.delijn.be/stops/307423"], ["https://data.delijn.be/stops/300688", "https://data.delijn.be/stops/300700"], ["https://data.delijn.be/stops/401165", "https://data.delijn.be/stops/407537"], ["https://data.delijn.be/stops/306067", "https://data.delijn.be/stops/307204"], ["https://data.delijn.be/stops/305482", "https://data.delijn.be/stops/305509"], ["https://data.delijn.be/stops/107019", "https://data.delijn.be/stops/107021"], ["https://data.delijn.be/stops/403973", "https://data.delijn.be/stops/406007"], ["https://data.delijn.be/stops/503108", "https://data.delijn.be/stops/504628"], ["https://data.delijn.be/stops/109189", "https://data.delijn.be/stops/109190"], ["https://data.delijn.be/stops/105554", "https://data.delijn.be/stops/105566"], ["https://data.delijn.be/stops/305765", "https://data.delijn.be/stops/305784"], ["https://data.delijn.be/stops/501745", "https://data.delijn.be/stops/590412"], ["https://data.delijn.be/stops/207301", "https://data.delijn.be/stops/207860"], ["https://data.delijn.be/stops/109593", "https://data.delijn.be/stops/109595"], ["https://data.delijn.be/stops/108112", "https://data.delijn.be/stops/108114"], ["https://data.delijn.be/stops/202252", "https://data.delijn.be/stops/203252"], ["https://data.delijn.be/stops/302464", "https://data.delijn.be/stops/302465"], ["https://data.delijn.be/stops/503322", "https://data.delijn.be/stops/503324"], ["https://data.delijn.be/stops/505143", "https://data.delijn.be/stops/505410"], ["https://data.delijn.be/stops/404160", "https://data.delijn.be/stops/404171"], ["https://data.delijn.be/stops/208629", "https://data.delijn.be/stops/209629"], ["https://data.delijn.be/stops/201763", "https://data.delijn.be/stops/201764"], ["https://data.delijn.be/stops/404886", "https://data.delijn.be/stops/404887"], ["https://data.delijn.be/stops/208746", "https://data.delijn.be/stops/208747"], ["https://data.delijn.be/stops/104521", "https://data.delijn.be/stops/104720"], ["https://data.delijn.be/stops/103322", "https://data.delijn.be/stops/105457"], ["https://data.delijn.be/stops/301052", "https://data.delijn.be/stops/301054"], ["https://data.delijn.be/stops/106912", "https://data.delijn.be/stops/107257"], ["https://data.delijn.be/stops/502485", "https://data.delijn.be/stops/502615"], ["https://data.delijn.be/stops/503375", "https://data.delijn.be/stops/503393"], ["https://data.delijn.be/stops/403765", "https://data.delijn.be/stops/403774"], ["https://data.delijn.be/stops/408126", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/403511", "https://data.delijn.be/stops/403528"], ["https://data.delijn.be/stops/102747", "https://data.delijn.be/stops/107403"], ["https://data.delijn.be/stops/402046", "https://data.delijn.be/stops/402340"], ["https://data.delijn.be/stops/102680", "https://data.delijn.be/stops/107765"], ["https://data.delijn.be/stops/405705", "https://data.delijn.be/stops/504255"], ["https://data.delijn.be/stops/104142", "https://data.delijn.be/stops/105742"], ["https://data.delijn.be/stops/200388", "https://data.delijn.be/stops/208716"], ["https://data.delijn.be/stops/206013", "https://data.delijn.be/stops/207013"], ["https://data.delijn.be/stops/503753", "https://data.delijn.be/stops/503762"], ["https://data.delijn.be/stops/203328", "https://data.delijn.be/stops/203329"], ["https://data.delijn.be/stops/105385", "https://data.delijn.be/stops/107035"], ["https://data.delijn.be/stops/304272", "https://data.delijn.be/stops/304279"], ["https://data.delijn.be/stops/503176", "https://data.delijn.be/stops/503239"], ["https://data.delijn.be/stops/305191", "https://data.delijn.be/stops/305200"], ["https://data.delijn.be/stops/504068", "https://data.delijn.be/stops/505109"], ["https://data.delijn.be/stops/301047", "https://data.delijn.be/stops/301072"], ["https://data.delijn.be/stops/502306", "https://data.delijn.be/stops/507306"], ["https://data.delijn.be/stops/304051", "https://data.delijn.be/stops/304070"], ["https://data.delijn.be/stops/301334", "https://data.delijn.be/stops/306146"], ["https://data.delijn.be/stops/202151", "https://data.delijn.be/stops/203151"], ["https://data.delijn.be/stops/208152", "https://data.delijn.be/stops/209152"], ["https://data.delijn.be/stops/101987", "https://data.delijn.be/stops/105400"], ["https://data.delijn.be/stops/504109", "https://data.delijn.be/stops/504446"], ["https://data.delijn.be/stops/502334", "https://data.delijn.be/stops/507281"], ["https://data.delijn.be/stops/503611", "https://data.delijn.be/stops/508611"], ["https://data.delijn.be/stops/409651", "https://data.delijn.be/stops/410047"], ["https://data.delijn.be/stops/200749", "https://data.delijn.be/stops/203620"], ["https://data.delijn.be/stops/503815", "https://data.delijn.be/stops/508814"], ["https://data.delijn.be/stops/109041", "https://data.delijn.be/stops/109083"], ["https://data.delijn.be/stops/109657", "https://data.delijn.be/stops/406505"], ["https://data.delijn.be/stops/301840", "https://data.delijn.be/stops/301852"], ["https://data.delijn.be/stops/508840", "https://data.delijn.be/stops/508856"], ["https://data.delijn.be/stops/408208", "https://data.delijn.be/stops/408914"], ["https://data.delijn.be/stops/407519", "https://data.delijn.be/stops/308240"], ["https://data.delijn.be/stops/204583", "https://data.delijn.be/stops/207391"], ["https://data.delijn.be/stops/209648", "https://data.delijn.be/stops/211111"], ["https://data.delijn.be/stops/202570", "https://data.delijn.be/stops/211033"], ["https://data.delijn.be/stops/200352", "https://data.delijn.be/stops/200353"], ["https://data.delijn.be/stops/105582", "https://data.delijn.be/stops/105584"], ["https://data.delijn.be/stops/202973", "https://data.delijn.be/stops/205075"], ["https://data.delijn.be/stops/106113", "https://data.delijn.be/stops/106115"], ["https://data.delijn.be/stops/404126", "https://data.delijn.be/stops/404149"], ["https://data.delijn.be/stops/305014", "https://data.delijn.be/stops/305035"], ["https://data.delijn.be/stops/305256", "https://data.delijn.be/stops/305274"], ["https://data.delijn.be/stops/109631", "https://data.delijn.be/stops/109634"], ["https://data.delijn.be/stops/102305", "https://data.delijn.be/stops/104595"], ["https://data.delijn.be/stops/401636", "https://data.delijn.be/stops/401639"], ["https://data.delijn.be/stops/206028", "https://data.delijn.be/stops/207028"], ["https://data.delijn.be/stops/109173", "https://data.delijn.be/stops/109232"], ["https://data.delijn.be/stops/305209", "https://data.delijn.be/stops/306931"], ["https://data.delijn.be/stops/305617", "https://data.delijn.be/stops/305619"], ["https://data.delijn.be/stops/108869", "https://data.delijn.be/stops/108873"], ["https://data.delijn.be/stops/107560", "https://data.delijn.be/stops/108155"], ["https://data.delijn.be/stops/301077", "https://data.delijn.be/stops/301078"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/504557"], ["https://data.delijn.be/stops/303400", "https://data.delijn.be/stops/303401"], ["https://data.delijn.be/stops/305680", "https://data.delijn.be/stops/305699"], ["https://data.delijn.be/stops/102072", "https://data.delijn.be/stops/106928"], ["https://data.delijn.be/stops/502735", "https://data.delijn.be/stops/507654"], ["https://data.delijn.be/stops/305461", "https://data.delijn.be/stops/305462"], ["https://data.delijn.be/stops/500230", "https://data.delijn.be/stops/590332"], ["https://data.delijn.be/stops/408391", "https://data.delijn.be/stops/308249"], ["https://data.delijn.be/stops/101915", "https://data.delijn.be/stops/108830"], ["https://data.delijn.be/stops/104638", "https://data.delijn.be/stops/108427"], ["https://data.delijn.be/stops/204410", "https://data.delijn.be/stops/205084"], ["https://data.delijn.be/stops/300316", "https://data.delijn.be/stops/307859"], ["https://data.delijn.be/stops/503886", "https://data.delijn.be/stops/505117"], ["https://data.delijn.be/stops/508155", "https://data.delijn.be/stops/508750"], ["https://data.delijn.be/stops/503080", "https://data.delijn.be/stops/503707"], ["https://data.delijn.be/stops/202766", "https://data.delijn.be/stops/203505"], ["https://data.delijn.be/stops/106032", "https://data.delijn.be/stops/106036"], ["https://data.delijn.be/stops/300061", "https://data.delijn.be/stops/306066"], ["https://data.delijn.be/stops/402407", "https://data.delijn.be/stops/402419"], ["https://data.delijn.be/stops/305696", "https://data.delijn.be/stops/305697"], ["https://data.delijn.be/stops/101593", "https://data.delijn.be/stops/105766"], ["https://data.delijn.be/stops/300087", "https://data.delijn.be/stops/306856"], ["https://data.delijn.be/stops/502314", "https://data.delijn.be/stops/507314"], ["https://data.delijn.be/stops/210314", "https://data.delijn.be/stops/211026"], ["https://data.delijn.be/stops/201860", "https://data.delijn.be/stops/211036"], ["https://data.delijn.be/stops/302575", "https://data.delijn.be/stops/305124"], ["https://data.delijn.be/stops/307623", "https://data.delijn.be/stops/308559"], ["https://data.delijn.be/stops/206789", "https://data.delijn.be/stops/209242"], ["https://data.delijn.be/stops/102506", "https://data.delijn.be/stops/400016"], ["https://data.delijn.be/stops/503143", "https://data.delijn.be/stops/503988"], ["https://data.delijn.be/stops/304304", "https://data.delijn.be/stops/304325"], ["https://data.delijn.be/stops/106366", "https://data.delijn.be/stops/106374"], ["https://data.delijn.be/stops/200451", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/206117", "https://data.delijn.be/stops/207117"], ["https://data.delijn.be/stops/400514", "https://data.delijn.be/stops/403826"], ["https://data.delijn.be/stops/207679", "https://data.delijn.be/stops/209403"], ["https://data.delijn.be/stops/204206", "https://data.delijn.be/stops/205094"], ["https://data.delijn.be/stops/503024", "https://data.delijn.be/stops/503028"], ["https://data.delijn.be/stops/508231", "https://data.delijn.be/stops/508239"], ["https://data.delijn.be/stops/305606", "https://data.delijn.be/stops/306204"], ["https://data.delijn.be/stops/303553", "https://data.delijn.be/stops/303559"], ["https://data.delijn.be/stops/101473", "https://data.delijn.be/stops/109268"], ["https://data.delijn.be/stops/105743", "https://data.delijn.be/stops/109855"], ["https://data.delijn.be/stops/502338", "https://data.delijn.be/stops/507338"], ["https://data.delijn.be/stops/105149", "https://data.delijn.be/stops/105177"], ["https://data.delijn.be/stops/402718", "https://data.delijn.be/stops/405995"], ["https://data.delijn.be/stops/207870", "https://data.delijn.be/stops/208347"], ["https://data.delijn.be/stops/503400", "https://data.delijn.be/stops/503442"], ["https://data.delijn.be/stops/408540", "https://data.delijn.be/stops/408567"], ["https://data.delijn.be/stops/206683", "https://data.delijn.be/stops/207975"], ["https://data.delijn.be/stops/106257", "https://data.delijn.be/stops/106260"], ["https://data.delijn.be/stops/300887", "https://data.delijn.be/stops/333234"], ["https://data.delijn.be/stops/502263", "https://data.delijn.be/stops/502920"], ["https://data.delijn.be/stops/409792", "https://data.delijn.be/stops/409793"], ["https://data.delijn.be/stops/202216", "https://data.delijn.be/stops/210121"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/204090"], ["https://data.delijn.be/stops/207423", "https://data.delijn.be/stops/207685"], ["https://data.delijn.be/stops/400907", "https://data.delijn.be/stops/408473"], ["https://data.delijn.be/stops/200929", "https://data.delijn.be/stops/505612"], ["https://data.delijn.be/stops/101929", "https://data.delijn.be/stops/103994"], ["https://data.delijn.be/stops/204929", "https://data.delijn.be/stops/209725"], ["https://data.delijn.be/stops/107321", "https://data.delijn.be/stops/108818"], ["https://data.delijn.be/stops/506332", "https://data.delijn.be/stops/506734"], ["https://data.delijn.be/stops/206046", "https://data.delijn.be/stops/206058"], ["https://data.delijn.be/stops/505214", "https://data.delijn.be/stops/508857"], ["https://data.delijn.be/stops/403776", "https://data.delijn.be/stops/403777"], ["https://data.delijn.be/stops/402290", "https://data.delijn.be/stops/402292"], ["https://data.delijn.be/stops/505570", "https://data.delijn.be/stops/508793"], ["https://data.delijn.be/stops/304107", "https://data.delijn.be/stops/304114"], ["https://data.delijn.be/stops/300029", "https://data.delijn.be/stops/300857"], ["https://data.delijn.be/stops/401756", "https://data.delijn.be/stops/406137"], ["https://data.delijn.be/stops/301237", "https://data.delijn.be/stops/307907"], ["https://data.delijn.be/stops/505187", "https://data.delijn.be/stops/505189"], ["https://data.delijn.be/stops/208766", "https://data.delijn.be/stops/209838"], ["https://data.delijn.be/stops/107236", "https://data.delijn.be/stops/107242"], ["https://data.delijn.be/stops/104094", "https://data.delijn.be/stops/104097"], ["https://data.delijn.be/stops/408318", "https://data.delijn.be/stops/408337"], ["https://data.delijn.be/stops/204690", "https://data.delijn.be/stops/205690"], ["https://data.delijn.be/stops/308158", "https://data.delijn.be/stops/308179"], ["https://data.delijn.be/stops/505253", "https://data.delijn.be/stops/508931"], ["https://data.delijn.be/stops/206336", "https://data.delijn.be/stops/207697"], ["https://data.delijn.be/stops/200357", "https://data.delijn.be/stops/202651"], ["https://data.delijn.be/stops/201275", "https://data.delijn.be/stops/201374"], ["https://data.delijn.be/stops/202948", "https://data.delijn.be/stops/203339"], ["https://data.delijn.be/stops/106733", "https://data.delijn.be/stops/106735"], ["https://data.delijn.be/stops/502023", "https://data.delijn.be/stops/507023"], ["https://data.delijn.be/stops/400360", "https://data.delijn.be/stops/400416"], ["https://data.delijn.be/stops/408378", "https://data.delijn.be/stops/408380"], ["https://data.delijn.be/stops/200530", "https://data.delijn.be/stops/211079"], ["https://data.delijn.be/stops/301000", "https://data.delijn.be/stops/306049"], ["https://data.delijn.be/stops/201055", "https://data.delijn.be/stops/211003"], ["https://data.delijn.be/stops/200477", "https://data.delijn.be/stops/202931"], ["https://data.delijn.be/stops/200953", "https://data.delijn.be/stops/202395"], ["https://data.delijn.be/stops/105121", "https://data.delijn.be/stops/105122"], ["https://data.delijn.be/stops/202687", "https://data.delijn.be/stops/203040"], ["https://data.delijn.be/stops/408870", "https://data.delijn.be/stops/408871"], ["https://data.delijn.be/stops/301330", "https://data.delijn.be/stops/301397"], ["https://data.delijn.be/stops/303984", "https://data.delijn.be/stops/304295"], ["https://data.delijn.be/stops/402024", "https://data.delijn.be/stops/403880"], ["https://data.delijn.be/stops/304329", "https://data.delijn.be/stops/304331"], ["https://data.delijn.be/stops/304140", "https://data.delijn.be/stops/304170"], ["https://data.delijn.be/stops/404236", "https://data.delijn.be/stops/404237"], ["https://data.delijn.be/stops/300336", "https://data.delijn.be/stops/300337"], ["https://data.delijn.be/stops/206679", "https://data.delijn.be/stops/209103"], ["https://data.delijn.be/stops/406042", "https://data.delijn.be/stops/406062"], ["https://data.delijn.be/stops/303291", "https://data.delijn.be/stops/306971"], ["https://data.delijn.be/stops/502631", "https://data.delijn.be/stops/507451"], ["https://data.delijn.be/stops/502425", "https://data.delijn.be/stops/507425"], ["https://data.delijn.be/stops/204420", "https://data.delijn.be/stops/205420"], ["https://data.delijn.be/stops/108294", "https://data.delijn.be/stops/109735"], ["https://data.delijn.be/stops/206323", "https://data.delijn.be/stops/206483"], ["https://data.delijn.be/stops/106641", "https://data.delijn.be/stops/106642"], ["https://data.delijn.be/stops/206487", "https://data.delijn.be/stops/206488"], ["https://data.delijn.be/stops/408087", "https://data.delijn.be/stops/408139"], ["https://data.delijn.be/stops/303058", "https://data.delijn.be/stops/303146"], ["https://data.delijn.be/stops/503704", "https://data.delijn.be/stops/508701"], ["https://data.delijn.be/stops/209468", "https://data.delijn.be/stops/209675"], ["https://data.delijn.be/stops/302979", "https://data.delijn.be/stops/306370"], ["https://data.delijn.be/stops/300400", "https://data.delijn.be/stops/300401"], ["https://data.delijn.be/stops/306341", "https://data.delijn.be/stops/307819"], ["https://data.delijn.be/stops/105477", "https://data.delijn.be/stops/105478"], ["https://data.delijn.be/stops/208673", "https://data.delijn.be/stops/209453"], ["https://data.delijn.be/stops/211022", "https://data.delijn.be/stops/218002"], ["https://data.delijn.be/stops/402138", "https://data.delijn.be/stops/402155"], ["https://data.delijn.be/stops/105579", "https://data.delijn.be/stops/106358"], ["https://data.delijn.be/stops/102870", "https://data.delijn.be/stops/108490"], ["https://data.delijn.be/stops/502414", "https://data.delijn.be/stops/502428"], ["https://data.delijn.be/stops/200628", "https://data.delijn.be/stops/201628"], ["https://data.delijn.be/stops/107458", "https://data.delijn.be/stops/107462"], ["https://data.delijn.be/stops/505396", "https://data.delijn.be/stops/508032"], ["https://data.delijn.be/stops/502003", "https://data.delijn.be/stops/505024"], ["https://data.delijn.be/stops/405894", "https://data.delijn.be/stops/307834"], ["https://data.delijn.be/stops/204991", "https://data.delijn.be/stops/208782"], ["https://data.delijn.be/stops/108788", "https://data.delijn.be/stops/108791"], ["https://data.delijn.be/stops/207447", "https://data.delijn.be/stops/207448"], ["https://data.delijn.be/stops/218024", "https://data.delijn.be/stops/218025"], ["https://data.delijn.be/stops/503844", "https://data.delijn.be/stops/504660"], ["https://data.delijn.be/stops/502093", "https://data.delijn.be/stops/502152"], ["https://data.delijn.be/stops/102655", "https://data.delijn.be/stops/108435"], ["https://data.delijn.be/stops/505057", "https://data.delijn.be/stops/505647"], ["https://data.delijn.be/stops/500026", "https://data.delijn.be/stops/507369"], ["https://data.delijn.be/stops/303840", "https://data.delijn.be/stops/303862"], ["https://data.delijn.be/stops/202931", "https://data.delijn.be/stops/210086"], ["https://data.delijn.be/stops/404167", "https://data.delijn.be/stops/404198"], ["https://data.delijn.be/stops/201530", "https://data.delijn.be/stops/211089"], ["https://data.delijn.be/stops/305175", "https://data.delijn.be/stops/308904"], ["https://data.delijn.be/stops/105856", "https://data.delijn.be/stops/105858"], ["https://data.delijn.be/stops/405504", "https://data.delijn.be/stops/408446"], ["https://data.delijn.be/stops/401777", "https://data.delijn.be/stops/401778"], ["https://data.delijn.be/stops/305502", "https://data.delijn.be/stops/305503"], ["https://data.delijn.be/stops/503854", "https://data.delijn.be/stops/503858"], ["https://data.delijn.be/stops/508094", "https://data.delijn.be/stops/508841"], ["https://data.delijn.be/stops/207370", "https://data.delijn.be/stops/207371"], ["https://data.delijn.be/stops/306847", "https://data.delijn.be/stops/307356"], ["https://data.delijn.be/stops/505056", "https://data.delijn.be/stops/505655"], ["https://data.delijn.be/stops/504255", "https://data.delijn.be/stops/504305"], ["https://data.delijn.be/stops/106866", "https://data.delijn.be/stops/106867"], ["https://data.delijn.be/stops/202638", "https://data.delijn.be/stops/204598"], ["https://data.delijn.be/stops/202013", "https://data.delijn.be/stops/202014"], ["https://data.delijn.be/stops/507027", "https://data.delijn.be/stops/507041"], ["https://data.delijn.be/stops/506334", "https://data.delijn.be/stops/506588"], ["https://data.delijn.be/stops/106114", "https://data.delijn.be/stops/106116"], ["https://data.delijn.be/stops/202603", "https://data.delijn.be/stops/203602"], ["https://data.delijn.be/stops/106088", "https://data.delijn.be/stops/106091"], ["https://data.delijn.be/stops/409599", "https://data.delijn.be/stops/409600"], ["https://data.delijn.be/stops/505245", "https://data.delijn.be/stops/505696"], ["https://data.delijn.be/stops/201147", "https://data.delijn.be/stops/201567"], ["https://data.delijn.be/stops/203794", "https://data.delijn.be/stops/203797"], ["https://data.delijn.be/stops/405702", "https://data.delijn.be/stops/405715"], ["https://data.delijn.be/stops/206279", "https://data.delijn.be/stops/207279"], ["https://data.delijn.be/stops/101946", "https://data.delijn.be/stops/108739"], ["https://data.delijn.be/stops/304883", "https://data.delijn.be/stops/308543"], ["https://data.delijn.be/stops/206414", "https://data.delijn.be/stops/207600"], ["https://data.delijn.be/stops/209675", "https://data.delijn.be/stops/209676"], ["https://data.delijn.be/stops/303471", "https://data.delijn.be/stops/304175"], ["https://data.delijn.be/stops/109690", "https://data.delijn.be/stops/109692"], ["https://data.delijn.be/stops/502407", "https://data.delijn.be/stops/507408"], ["https://data.delijn.be/stops/300049", "https://data.delijn.be/stops/307436"], ["https://data.delijn.be/stops/204195", "https://data.delijn.be/stops/205194"], ["https://data.delijn.be/stops/400077", "https://data.delijn.be/stops/406361"], ["https://data.delijn.be/stops/202380", "https://data.delijn.be/stops/202381"], ["https://data.delijn.be/stops/208337", "https://data.delijn.be/stops/209115"], ["https://data.delijn.be/stops/503688", "https://data.delijn.be/stops/508876"], ["https://data.delijn.be/stops/409062", "https://data.delijn.be/stops/409121"], ["https://data.delijn.be/stops/204524", "https://data.delijn.be/stops/205524"], ["https://data.delijn.be/stops/501147", "https://data.delijn.be/stops/509833"], ["https://data.delijn.be/stops/106878", "https://data.delijn.be/stops/106882"], ["https://data.delijn.be/stops/407399", "https://data.delijn.be/stops/407405"], ["https://data.delijn.be/stops/508271", "https://data.delijn.be/stops/508814"], ["https://data.delijn.be/stops/406656", "https://data.delijn.be/stops/406657"], ["https://data.delijn.be/stops/501053", "https://data.delijn.be/stops/501059"], ["https://data.delijn.be/stops/408224", "https://data.delijn.be/stops/408361"], ["https://data.delijn.be/stops/108962", "https://data.delijn.be/stops/108964"], ["https://data.delijn.be/stops/108733", "https://data.delijn.be/stops/109282"], ["https://data.delijn.be/stops/105761", "https://data.delijn.be/stops/105767"], ["https://data.delijn.be/stops/403349", "https://data.delijn.be/stops/410274"], ["https://data.delijn.be/stops/101083", "https://data.delijn.be/stops/104461"], ["https://data.delijn.be/stops/407678", "https://data.delijn.be/stops/407680"], ["https://data.delijn.be/stops/404590", "https://data.delijn.be/stops/404594"], ["https://data.delijn.be/stops/304646", "https://data.delijn.be/stops/304657"], ["https://data.delijn.be/stops/304311", "https://data.delijn.be/stops/304321"], ["https://data.delijn.be/stops/505669", "https://data.delijn.be/stops/508691"], ["https://data.delijn.be/stops/409590", "https://data.delijn.be/stops/409592"], ["https://data.delijn.be/stops/207428", "https://data.delijn.be/stops/209712"], ["https://data.delijn.be/stops/304156", "https://data.delijn.be/stops/304159"], ["https://data.delijn.be/stops/508553", "https://data.delijn.be/stops/508556"], ["https://data.delijn.be/stops/101799", "https://data.delijn.be/stops/300668"], ["https://data.delijn.be/stops/503154", "https://data.delijn.be/stops/505201"], ["https://data.delijn.be/stops/206122", "https://data.delijn.be/stops/207139"], ["https://data.delijn.be/stops/407653", "https://data.delijn.be/stops/409626"], ["https://data.delijn.be/stops/503276", "https://data.delijn.be/stops/503277"], ["https://data.delijn.be/stops/410173", "https://data.delijn.be/stops/410177"], ["https://data.delijn.be/stops/401758", "https://data.delijn.be/stops/409406"], ["https://data.delijn.be/stops/304385", "https://data.delijn.be/stops/304386"], ["https://data.delijn.be/stops/206113", "https://data.delijn.be/stops/207116"], ["https://data.delijn.be/stops/107145", "https://data.delijn.be/stops/109853"], ["https://data.delijn.be/stops/505522", "https://data.delijn.be/stops/505622"], ["https://data.delijn.be/stops/502012", "https://data.delijn.be/stops/507916"], ["https://data.delijn.be/stops/504352", "https://data.delijn.be/stops/509352"], ["https://data.delijn.be/stops/103097", "https://data.delijn.be/stops/107180"], ["https://data.delijn.be/stops/206260", "https://data.delijn.be/stops/206261"], ["https://data.delijn.be/stops/304261", "https://data.delijn.be/stops/306662"], ["https://data.delijn.be/stops/501606", "https://data.delijn.be/stops/501609"], ["https://data.delijn.be/stops/206707", "https://data.delijn.be/stops/207612"], ["https://data.delijn.be/stops/302953", "https://data.delijn.be/stops/302954"], ["https://data.delijn.be/stops/107209", "https://data.delijn.be/stops/107210"], ["https://data.delijn.be/stops/209574", "https://data.delijn.be/stops/307313"], ["https://data.delijn.be/stops/202951", "https://data.delijn.be/stops/203950"], ["https://data.delijn.be/stops/206800", "https://data.delijn.be/stops/306367"], ["https://data.delijn.be/stops/203377", "https://data.delijn.be/stops/203378"], ["https://data.delijn.be/stops/305906", "https://data.delijn.be/stops/308876"], ["https://data.delijn.be/stops/102394", "https://data.delijn.be/stops/107092"], ["https://data.delijn.be/stops/504001", "https://data.delijn.be/stops/509002"], ["https://data.delijn.be/stops/204093", "https://data.delijn.be/stops/204795"], ["https://data.delijn.be/stops/505234", "https://data.delijn.be/stops/505775"], ["https://data.delijn.be/stops/102436", "https://data.delijn.be/stops/107818"], ["https://data.delijn.be/stops/400854", "https://data.delijn.be/stops/409651"], ["https://data.delijn.be/stops/207184", "https://data.delijn.be/stops/308565"], ["https://data.delijn.be/stops/401784", "https://data.delijn.be/stops/406093"], ["https://data.delijn.be/stops/400248", "https://data.delijn.be/stops/400934"], ["https://data.delijn.be/stops/303440", "https://data.delijn.be/stops/304225"], ["https://data.delijn.be/stops/206709", "https://data.delijn.be/stops/206970"], ["https://data.delijn.be/stops/104593", "https://data.delijn.be/stops/108033"], ["https://data.delijn.be/stops/104899", "https://data.delijn.be/stops/107546"], ["https://data.delijn.be/stops/502803", "https://data.delijn.be/stops/507483"], ["https://data.delijn.be/stops/204055", "https://data.delijn.be/stops/205055"], ["https://data.delijn.be/stops/300259", "https://data.delijn.be/stops/300283"], ["https://data.delijn.be/stops/204351", "https://data.delijn.be/stops/205708"], ["https://data.delijn.be/stops/101022", "https://data.delijn.be/stops/101027"], ["https://data.delijn.be/stops/201947", "https://data.delijn.be/stops/202454"], ["https://data.delijn.be/stops/408922", "https://data.delijn.be/stops/408924"], ["https://data.delijn.be/stops/208889", "https://data.delijn.be/stops/211854"], ["https://data.delijn.be/stops/204073", "https://data.delijn.be/stops/204237"], ["https://data.delijn.be/stops/504872", "https://data.delijn.be/stops/509873"], ["https://data.delijn.be/stops/103478", "https://data.delijn.be/stops/109137"], ["https://data.delijn.be/stops/503216", "https://data.delijn.be/stops/508186"], ["https://data.delijn.be/stops/303401", "https://data.delijn.be/stops/303792"], ["https://data.delijn.be/stops/503620", "https://data.delijn.be/stops/505526"], ["https://data.delijn.be/stops/302888", "https://data.delijn.be/stops/302903"], ["https://data.delijn.be/stops/101534", "https://data.delijn.be/stops/108752"], ["https://data.delijn.be/stops/300392", "https://data.delijn.be/stops/308761"], ["https://data.delijn.be/stops/203810", "https://data.delijn.be/stops/208737"], ["https://data.delijn.be/stops/508057", "https://data.delijn.be/stops/509844"], ["https://data.delijn.be/stops/404681", "https://data.delijn.be/stops/404682"], ["https://data.delijn.be/stops/503445", "https://data.delijn.be/stops/508406"], ["https://data.delijn.be/stops/500042", "https://data.delijn.be/stops/500053"], ["https://data.delijn.be/stops/204378", "https://data.delijn.be/stops/205377"], ["https://data.delijn.be/stops/103715", "https://data.delijn.be/stops/104145"], ["https://data.delijn.be/stops/504422", "https://data.delijn.be/stops/504696"], ["https://data.delijn.be/stops/405610", "https://data.delijn.be/stops/407157"], ["https://data.delijn.be/stops/404764", "https://data.delijn.be/stops/404829"], ["https://data.delijn.be/stops/501031", "https://data.delijn.be/stops/501041"], ["https://data.delijn.be/stops/103168", "https://data.delijn.be/stops/108673"], ["https://data.delijn.be/stops/203335", "https://data.delijn.be/stops/203336"], ["https://data.delijn.be/stops/107392", "https://data.delijn.be/stops/107393"], ["https://data.delijn.be/stops/406774", "https://data.delijn.be/stops/406788"], ["https://data.delijn.be/stops/205237", "https://data.delijn.be/stops/207312"], ["https://data.delijn.be/stops/109666", "https://data.delijn.be/stops/403860"], ["https://data.delijn.be/stops/502554", "https://data.delijn.be/stops/507556"], ["https://data.delijn.be/stops/408684", "https://data.delijn.be/stops/408689"], ["https://data.delijn.be/stops/206816", "https://data.delijn.be/stops/207816"], ["https://data.delijn.be/stops/208715", "https://data.delijn.be/stops/210004"], ["https://data.delijn.be/stops/107446", "https://data.delijn.be/stops/107447"], ["https://data.delijn.be/stops/107111", "https://data.delijn.be/stops/107112"], ["https://data.delijn.be/stops/308495", "https://data.delijn.be/stops/308500"], ["https://data.delijn.be/stops/101811", "https://data.delijn.be/stops/108131"], ["https://data.delijn.be/stops/105496", "https://data.delijn.be/stops/105498"], ["https://data.delijn.be/stops/206884", "https://data.delijn.be/stops/207916"], ["https://data.delijn.be/stops/402872", "https://data.delijn.be/stops/404006"], ["https://data.delijn.be/stops/505092", "https://data.delijn.be/stops/505581"], ["https://data.delijn.be/stops/507721", "https://data.delijn.be/stops/507722"], ["https://data.delijn.be/stops/303191", "https://data.delijn.be/stops/304915"], ["https://data.delijn.be/stops/401435", "https://data.delijn.be/stops/410147"], ["https://data.delijn.be/stops/206971", "https://data.delijn.be/stops/207970"], ["https://data.delijn.be/stops/206204", "https://data.delijn.be/stops/207687"], ["https://data.delijn.be/stops/101019", "https://data.delijn.be/stops/108355"], ["https://data.delijn.be/stops/204919", "https://data.delijn.be/stops/205910"], ["https://data.delijn.be/stops/505423", "https://data.delijn.be/stops/508808"], ["https://data.delijn.be/stops/405106", "https://data.delijn.be/stops/405107"], ["https://data.delijn.be/stops/109508", "https://data.delijn.be/stops/109510"], ["https://data.delijn.be/stops/102209", "https://data.delijn.be/stops/107233"], ["https://data.delijn.be/stops/400455", "https://data.delijn.be/stops/400467"], ["https://data.delijn.be/stops/300705", "https://data.delijn.be/stops/308065"], ["https://data.delijn.be/stops/105888", "https://data.delijn.be/stops/105889"], ["https://data.delijn.be/stops/208436", "https://data.delijn.be/stops/209437"], ["https://data.delijn.be/stops/202350", "https://data.delijn.be/stops/204912"], ["https://data.delijn.be/stops/505940", "https://data.delijn.be/stops/509077"], ["https://data.delijn.be/stops/303812", "https://data.delijn.be/stops/303870"], ["https://data.delijn.be/stops/508017", "https://data.delijn.be/stops/509817"], ["https://data.delijn.be/stops/201645", "https://data.delijn.be/stops/201646"], ["https://data.delijn.be/stops/300681", "https://data.delijn.be/stops/305960"], ["https://data.delijn.be/stops/300179", "https://data.delijn.be/stops/300213"], ["https://data.delijn.be/stops/505068", "https://data.delijn.be/stops/505069"], ["https://data.delijn.be/stops/301583", "https://data.delijn.be/stops/301585"], ["https://data.delijn.be/stops/406332", "https://data.delijn.be/stops/407099"], ["https://data.delijn.be/stops/508193", "https://data.delijn.be/stops/508216"], ["https://data.delijn.be/stops/206364", "https://data.delijn.be/stops/206365"], ["https://data.delijn.be/stops/106310", "https://data.delijn.be/stops/106312"], ["https://data.delijn.be/stops/202117", "https://data.delijn.be/stops/211043"], ["https://data.delijn.be/stops/106097", "https://data.delijn.be/stops/106145"], ["https://data.delijn.be/stops/502188", "https://data.delijn.be/stops/507188"], ["https://data.delijn.be/stops/207791", "https://data.delijn.be/stops/208408"], ["https://data.delijn.be/stops/401389", "https://data.delijn.be/stops/401526"], ["https://data.delijn.be/stops/304352", "https://data.delijn.be/stops/304356"], ["https://data.delijn.be/stops/504519", "https://data.delijn.be/stops/505803"], ["https://data.delijn.be/stops/402421", "https://data.delijn.be/stops/402431"], ["https://data.delijn.be/stops/101154", "https://data.delijn.be/stops/103307"], ["https://data.delijn.be/stops/200967", "https://data.delijn.be/stops/209663"], ["https://data.delijn.be/stops/408361", "https://data.delijn.be/stops/408914"], ["https://data.delijn.be/stops/206521", "https://data.delijn.be/stops/207876"], ["https://data.delijn.be/stops/400894", "https://data.delijn.be/stops/400981"], ["https://data.delijn.be/stops/301044", "https://data.delijn.be/stops/306690"], ["https://data.delijn.be/stops/203438", "https://data.delijn.be/stops/203717"], ["https://data.delijn.be/stops/206585", "https://data.delijn.be/stops/207841"], ["https://data.delijn.be/stops/101462", "https://data.delijn.be/stops/109279"], ["https://data.delijn.be/stops/109054", "https://data.delijn.be/stops/109068"], ["https://data.delijn.be/stops/401479", "https://data.delijn.be/stops/401580"], ["https://data.delijn.be/stops/501248", "https://data.delijn.be/stops/506774"], ["https://data.delijn.be/stops/202224", "https://data.delijn.be/stops/203215"], ["https://data.delijn.be/stops/502289", "https://data.delijn.be/stops/509893"], ["https://data.delijn.be/stops/200822", "https://data.delijn.be/stops/200865"], ["https://data.delijn.be/stops/105894", "https://data.delijn.be/stops/105896"], ["https://data.delijn.be/stops/405792", "https://data.delijn.be/stops/405889"], ["https://data.delijn.be/stops/505629", "https://data.delijn.be/stops/505633"], ["https://data.delijn.be/stops/402252", "https://data.delijn.be/stops/402376"], ["https://data.delijn.be/stops/200729", "https://data.delijn.be/stops/203592"], ["https://data.delijn.be/stops/303556", "https://data.delijn.be/stops/304131"], ["https://data.delijn.be/stops/201157", "https://data.delijn.be/stops/203359"], ["https://data.delijn.be/stops/104732", "https://data.delijn.be/stops/204271"], ["https://data.delijn.be/stops/501537", "https://data.delijn.be/stops/501540"], ["https://data.delijn.be/stops/109689", "https://data.delijn.be/stops/109692"], ["https://data.delijn.be/stops/400885", "https://data.delijn.be/stops/409614"], ["https://data.delijn.be/stops/205498", "https://data.delijn.be/stops/205596"], ["https://data.delijn.be/stops/101492", "https://data.delijn.be/stops/101948"], ["https://data.delijn.be/stops/307330", "https://data.delijn.be/stops/308157"], ["https://data.delijn.be/stops/106325", "https://data.delijn.be/stops/106328"], ["https://data.delijn.be/stops/503402", "https://data.delijn.be/stops/509789"], ["https://data.delijn.be/stops/305511", "https://data.delijn.be/stops/305522"], ["https://data.delijn.be/stops/405779", "https://data.delijn.be/stops/409422"], ["https://data.delijn.be/stops/101932", "https://data.delijn.be/stops/109902"], ["https://data.delijn.be/stops/302303", "https://data.delijn.be/stops/302322"], ["https://data.delijn.be/stops/404486", "https://data.delijn.be/stops/404508"], ["https://data.delijn.be/stops/104043", "https://data.delijn.be/stops/108413"], ["https://data.delijn.be/stops/103537", "https://data.delijn.be/stops/106723"], ["https://data.delijn.be/stops/405790", "https://data.delijn.be/stops/409889"], ["https://data.delijn.be/stops/301984", "https://data.delijn.be/stops/301985"], ["https://data.delijn.be/stops/403722", "https://data.delijn.be/stops/404062"], ["https://data.delijn.be/stops/405750", "https://data.delijn.be/stops/408349"], ["https://data.delijn.be/stops/400709", "https://data.delijn.be/stops/409511"], ["https://data.delijn.be/stops/400029", "https://data.delijn.be/stops/400306"], ["https://data.delijn.be/stops/302284", "https://data.delijn.be/stops/302285"], ["https://data.delijn.be/stops/201343", "https://data.delijn.be/stops/211009"], ["https://data.delijn.be/stops/300719", "https://data.delijn.be/stops/300721"], ["https://data.delijn.be/stops/209167", "https://data.delijn.be/stops/209176"], ["https://data.delijn.be/stops/104510", "https://data.delijn.be/stops/105120"], ["https://data.delijn.be/stops/200530", "https://data.delijn.be/stops/201530"], ["https://data.delijn.be/stops/504156", "https://data.delijn.be/stops/509156"], ["https://data.delijn.be/stops/304110", "https://data.delijn.be/stops/304111"], ["https://data.delijn.be/stops/204979", "https://data.delijn.be/stops/209161"], ["https://data.delijn.be/stops/502506", "https://data.delijn.be/stops/507492"], ["https://data.delijn.be/stops/400918", "https://data.delijn.be/stops/400970"], ["https://data.delijn.be/stops/403319", "https://data.delijn.be/stops/403324"], ["https://data.delijn.be/stops/305294", "https://data.delijn.be/stops/305905"], ["https://data.delijn.be/stops/108071", "https://data.delijn.be/stops/108459"], ["https://data.delijn.be/stops/400605", "https://data.delijn.be/stops/401997"], ["https://data.delijn.be/stops/503995", "https://data.delijn.be/stops/508396"], ["https://data.delijn.be/stops/503772", "https://data.delijn.be/stops/508332"], ["https://data.delijn.be/stops/109989", "https://data.delijn.be/stops/109997"], ["https://data.delijn.be/stops/106867", "https://data.delijn.be/stops/106869"], ["https://data.delijn.be/stops/302988", "https://data.delijn.be/stops/308674"], ["https://data.delijn.be/stops/405530", "https://data.delijn.be/stops/407285"], ["https://data.delijn.be/stops/204046", "https://data.delijn.be/stops/205518"], ["https://data.delijn.be/stops/101905", "https://data.delijn.be/stops/102807"], ["https://data.delijn.be/stops/208212", "https://data.delijn.be/stops/209206"], ["https://data.delijn.be/stops/107277", "https://data.delijn.be/stops/107278"], ["https://data.delijn.be/stops/204341", "https://data.delijn.be/stops/204510"], ["https://data.delijn.be/stops/505416", "https://data.delijn.be/stops/507367"], ["https://data.delijn.be/stops/102462", "https://data.delijn.be/stops/400411"], ["https://data.delijn.be/stops/102461", "https://data.delijn.be/stops/400412"], ["https://data.delijn.be/stops/102880", "https://data.delijn.be/stops/204611"], ["https://data.delijn.be/stops/102825", "https://data.delijn.be/stops/104280"], ["https://data.delijn.be/stops/200104", "https://data.delijn.be/stops/200363"], ["https://data.delijn.be/stops/402855", "https://data.delijn.be/stops/409239"], ["https://data.delijn.be/stops/504783", "https://data.delijn.be/stops/508516"], ["https://data.delijn.be/stops/200682", "https://data.delijn.be/stops/200694"], ["https://data.delijn.be/stops/501070", "https://data.delijn.be/stops/506380"], ["https://data.delijn.be/stops/406614", "https://data.delijn.be/stops/406638"], ["https://data.delijn.be/stops/405280", "https://data.delijn.be/stops/405293"], ["https://data.delijn.be/stops/201260", "https://data.delijn.be/stops/202452"], ["https://data.delijn.be/stops/301827", "https://data.delijn.be/stops/308603"], ["https://data.delijn.be/stops/106773", "https://data.delijn.be/stops/106774"], ["https://data.delijn.be/stops/507047", "https://data.delijn.be/stops/507048"], ["https://data.delijn.be/stops/105188", "https://data.delijn.be/stops/108890"], ["https://data.delijn.be/stops/308535", "https://data.delijn.be/stops/308693"], ["https://data.delijn.be/stops/102689", "https://data.delijn.be/stops/105083"], ["https://data.delijn.be/stops/402392", "https://data.delijn.be/stops/402395"], ["https://data.delijn.be/stops/201897", "https://data.delijn.be/stops/202492"], ["https://data.delijn.be/stops/305428", "https://data.delijn.be/stops/305433"], ["https://data.delijn.be/stops/506265", "https://data.delijn.be/stops/506474"], ["https://data.delijn.be/stops/402011", "https://data.delijn.be/stops/407532"], ["https://data.delijn.be/stops/300052", "https://data.delijn.be/stops/300065"], ["https://data.delijn.be/stops/102260", "https://data.delijn.be/stops/107500"], ["https://data.delijn.be/stops/300366", "https://data.delijn.be/stops/307726"], ["https://data.delijn.be/stops/303417", "https://data.delijn.be/stops/303425"], ["https://data.delijn.be/stops/403906", "https://data.delijn.be/stops/403915"], ["https://data.delijn.be/stops/203223", "https://data.delijn.be/stops/204079"], ["https://data.delijn.be/stops/103528", "https://data.delijn.be/stops/103531"], ["https://data.delijn.be/stops/206977", "https://data.delijn.be/stops/216016"], ["https://data.delijn.be/stops/201930", "https://data.delijn.be/stops/210047"], ["https://data.delijn.be/stops/503078", "https://data.delijn.be/stops/503994"], ["https://data.delijn.be/stops/304096", "https://data.delijn.be/stops/306000"], ["https://data.delijn.be/stops/102518", "https://data.delijn.be/stops/406499"], ["https://data.delijn.be/stops/102872", "https://data.delijn.be/stops/105457"], ["https://data.delijn.be/stops/108711", "https://data.delijn.be/stops/108856"], ["https://data.delijn.be/stops/106991", "https://data.delijn.be/stops/106994"], ["https://data.delijn.be/stops/502924", "https://data.delijn.be/stops/505317"], ["https://data.delijn.be/stops/302037", "https://data.delijn.be/stops/303894"], ["https://data.delijn.be/stops/501066", "https://data.delijn.be/stops/501074"], ["https://data.delijn.be/stops/303422", "https://data.delijn.be/stops/306948"], ["https://data.delijn.be/stops/102642", "https://data.delijn.be/stops/102643"], ["https://data.delijn.be/stops/301872", "https://data.delijn.be/stops/303166"], ["https://data.delijn.be/stops/300392", "https://data.delijn.be/stops/306315"], ["https://data.delijn.be/stops/502250", "https://data.delijn.be/stops/502252"], ["https://data.delijn.be/stops/300329", "https://data.delijn.be/stops/304440"], ["https://data.delijn.be/stops/401013", "https://data.delijn.be/stops/401017"], ["https://data.delijn.be/stops/104639", "https://data.delijn.be/stops/108428"], ["https://data.delijn.be/stops/407404", "https://data.delijn.be/stops/409873"], ["https://data.delijn.be/stops/503616", "https://data.delijn.be/stops/508616"], ["https://data.delijn.be/stops/207677", "https://data.delijn.be/stops/208201"], ["https://data.delijn.be/stops/401215", "https://data.delijn.be/stops/401275"], ["https://data.delijn.be/stops/305875", "https://data.delijn.be/stops/308422"], ["https://data.delijn.be/stops/108635", "https://data.delijn.be/stops/109772"], ["https://data.delijn.be/stops/401459", "https://data.delijn.be/stops/406888"], ["https://data.delijn.be/stops/205649", "https://data.delijn.be/stops/205695"], ["https://data.delijn.be/stops/107923", "https://data.delijn.be/stops/107927"], ["https://data.delijn.be/stops/405536", "https://data.delijn.be/stops/308117"], ["https://data.delijn.be/stops/503242", "https://data.delijn.be/stops/508244"], ["https://data.delijn.be/stops/107737", "https://data.delijn.be/stops/107739"], ["https://data.delijn.be/stops/200960", "https://data.delijn.be/stops/201960"], ["https://data.delijn.be/stops/103168", "https://data.delijn.be/stops/109932"], ["https://data.delijn.be/stops/300425", "https://data.delijn.be/stops/300426"], ["https://data.delijn.be/stops/307219", "https://data.delijn.be/stops/307220"], ["https://data.delijn.be/stops/202441", "https://data.delijn.be/stops/202449"], ["https://data.delijn.be/stops/501392", "https://data.delijn.be/stops/506392"], ["https://data.delijn.be/stops/301716", "https://data.delijn.be/stops/308425"], ["https://data.delijn.be/stops/204796", "https://data.delijn.be/stops/205585"], ["https://data.delijn.be/stops/203332", "https://data.delijn.be/stops/203333"], ["https://data.delijn.be/stops/409740", "https://data.delijn.be/stops/409742"], ["https://data.delijn.be/stops/302165", "https://data.delijn.be/stops/308098"], ["https://data.delijn.be/stops/503640", "https://data.delijn.be/stops/508640"], ["https://data.delijn.be/stops/407284", "https://data.delijn.be/stops/409490"], ["https://data.delijn.be/stops/408069", "https://data.delijn.be/stops/305705"], ["https://data.delijn.be/stops/403688", "https://data.delijn.be/stops/409274"], ["https://data.delijn.be/stops/201121", "https://data.delijn.be/stops/201915"], ["https://data.delijn.be/stops/303031", "https://data.delijn.be/stops/307143"], ["https://data.delijn.be/stops/104456", "https://data.delijn.be/stops/104479"], ["https://data.delijn.be/stops/204212", "https://data.delijn.be/stops/207393"], ["https://data.delijn.be/stops/505254", "https://data.delijn.be/stops/509757"], ["https://data.delijn.be/stops/305781", "https://data.delijn.be/stops/305799"], ["https://data.delijn.be/stops/102419", "https://data.delijn.be/stops/106217"], ["https://data.delijn.be/stops/200680", "https://data.delijn.be/stops/201840"], ["https://data.delijn.be/stops/108864", "https://data.delijn.be/stops/108866"], ["https://data.delijn.be/stops/305164", "https://data.delijn.be/stops/305168"], ["https://data.delijn.be/stops/302550", "https://data.delijn.be/stops/302551"], ["https://data.delijn.be/stops/108062", "https://data.delijn.be/stops/108063"], ["https://data.delijn.be/stops/202091", "https://data.delijn.be/stops/203090"], ["https://data.delijn.be/stops/501630", "https://data.delijn.be/stops/501645"], ["https://data.delijn.be/stops/208681", "https://data.delijn.be/stops/208724"], ["https://data.delijn.be/stops/503953", "https://data.delijn.be/stops/508953"], ["https://data.delijn.be/stops/405770", "https://data.delijn.be/stops/405823"], ["https://data.delijn.be/stops/400586", "https://data.delijn.be/stops/400608"], ["https://data.delijn.be/stops/301733", "https://data.delijn.be/stops/301734"], ["https://data.delijn.be/stops/410176", "https://data.delijn.be/stops/410177"], ["https://data.delijn.be/stops/307753", "https://data.delijn.be/stops/307756"], ["https://data.delijn.be/stops/503923", "https://data.delijn.be/stops/505253"], ["https://data.delijn.be/stops/106663", "https://data.delijn.be/stops/106664"], ["https://data.delijn.be/stops/107133", "https://data.delijn.be/stops/107134"], ["https://data.delijn.be/stops/208051", "https://data.delijn.be/stops/208052"], ["https://data.delijn.be/stops/109037", "https://data.delijn.be/stops/300103"], ["https://data.delijn.be/stops/408495", "https://data.delijn.be/stops/408697"], ["https://data.delijn.be/stops/300177", "https://data.delijn.be/stops/300191"], ["https://data.delijn.be/stops/403584", "https://data.delijn.be/stops/403625"], ["https://data.delijn.be/stops/503055", "https://data.delijn.be/stops/508057"], ["https://data.delijn.be/stops/204766", "https://data.delijn.be/stops/205484"], ["https://data.delijn.be/stops/206100", "https://data.delijn.be/stops/207100"], ["https://data.delijn.be/stops/106010", "https://data.delijn.be/stops/108035"], ["https://data.delijn.be/stops/108467", "https://data.delijn.be/stops/108469"], ["https://data.delijn.be/stops/206022", "https://data.delijn.be/stops/207028"], ["https://data.delijn.be/stops/508524", "https://data.delijn.be/stops/509774"], ["https://data.delijn.be/stops/505223", "https://data.delijn.be/stops/509797"], ["https://data.delijn.be/stops/105813", "https://data.delijn.be/stops/105816"], ["https://data.delijn.be/stops/300342", "https://data.delijn.be/stops/300346"], ["https://data.delijn.be/stops/401147", "https://data.delijn.be/stops/403735"], ["https://data.delijn.be/stops/200172", "https://data.delijn.be/stops/201550"], ["https://data.delijn.be/stops/208415", "https://data.delijn.be/stops/208763"], ["https://data.delijn.be/stops/406465", "https://data.delijn.be/stops/406479"], ["https://data.delijn.be/stops/400854", "https://data.delijn.be/stops/400885"], ["https://data.delijn.be/stops/107603", "https://data.delijn.be/stops/107657"], ["https://data.delijn.be/stops/107570", "https://data.delijn.be/stops/107743"], ["https://data.delijn.be/stops/105214", "https://data.delijn.be/stops/105542"], ["https://data.delijn.be/stops/103272", "https://data.delijn.be/stops/410162"], ["https://data.delijn.be/stops/308601", "https://data.delijn.be/stops/308602"], ["https://data.delijn.be/stops/303956", "https://data.delijn.be/stops/304178"], ["https://data.delijn.be/stops/304209", "https://data.delijn.be/stops/305337"], ["https://data.delijn.be/stops/302490", "https://data.delijn.be/stops/302492"], ["https://data.delijn.be/stops/106689", "https://data.delijn.be/stops/106690"], ["https://data.delijn.be/stops/206043", "https://data.delijn.be/stops/207532"], ["https://data.delijn.be/stops/202087", "https://data.delijn.be/stops/203087"], ["https://data.delijn.be/stops/308458", "https://data.delijn.be/stops/308461"], ["https://data.delijn.be/stops/302156", "https://data.delijn.be/stops/302174"], ["https://data.delijn.be/stops/106034", "https://data.delijn.be/stops/106313"], ["https://data.delijn.be/stops/301507", "https://data.delijn.be/stops/307931"], ["https://data.delijn.be/stops/204188", "https://data.delijn.be/stops/205188"], ["https://data.delijn.be/stops/404227", "https://data.delijn.be/stops/404246"], ["https://data.delijn.be/stops/407488", "https://data.delijn.be/stops/407508"], ["https://data.delijn.be/stops/101533", "https://data.delijn.be/stops/108789"], ["https://data.delijn.be/stops/201924", "https://data.delijn.be/stops/206590"], ["https://data.delijn.be/stops/105579", "https://data.delijn.be/stops/105584"], ["https://data.delijn.be/stops/501119", "https://data.delijn.be/stops/505039"], ["https://data.delijn.be/stops/405220", "https://data.delijn.be/stops/405221"], ["https://data.delijn.be/stops/304541", "https://data.delijn.be/stops/304542"], ["https://data.delijn.be/stops/402551", "https://data.delijn.be/stops/404067"], ["https://data.delijn.be/stops/300336", "https://data.delijn.be/stops/307089"], ["https://data.delijn.be/stops/406916", "https://data.delijn.be/stops/406952"], ["https://data.delijn.be/stops/402944", "https://data.delijn.be/stops/306391"], ["https://data.delijn.be/stops/107178", "https://data.delijn.be/stops/107181"], ["https://data.delijn.be/stops/201704", "https://data.delijn.be/stops/215018"], ["https://data.delijn.be/stops/101915", "https://data.delijn.be/stops/105120"], ["https://data.delijn.be/stops/107661", "https://data.delijn.be/stops/107663"], ["https://data.delijn.be/stops/101964", "https://data.delijn.be/stops/109287"], ["https://data.delijn.be/stops/304136", "https://data.delijn.be/stops/304496"], ["https://data.delijn.be/stops/301064", "https://data.delijn.be/stops/301304"], ["https://data.delijn.be/stops/409080", "https://data.delijn.be/stops/409811"], ["https://data.delijn.be/stops/403848", "https://data.delijn.be/stops/410113"], ["https://data.delijn.be/stops/406063", "https://data.delijn.be/stops/407114"], ["https://data.delijn.be/stops/305212", "https://data.delijn.be/stops/307872"], ["https://data.delijn.be/stops/405754", "https://data.delijn.be/stops/409295"], ["https://data.delijn.be/stops/503604", "https://data.delijn.be/stops/508605"], ["https://data.delijn.be/stops/300103", "https://data.delijn.be/stops/300113"], ["https://data.delijn.be/stops/403747", "https://data.delijn.be/stops/403750"], ["https://data.delijn.be/stops/101434", "https://data.delijn.be/stops/107293"], ["https://data.delijn.be/stops/400695", "https://data.delijn.be/stops/400858"], ["https://data.delijn.be/stops/105289", "https://data.delijn.be/stops/106497"], ["https://data.delijn.be/stops/302670", "https://data.delijn.be/stops/307905"], ["https://data.delijn.be/stops/402283", "https://data.delijn.be/stops/405015"], ["https://data.delijn.be/stops/101110", "https://data.delijn.be/stops/101704"], ["https://data.delijn.be/stops/507389", "https://data.delijn.be/stops/507399"], ["https://data.delijn.be/stops/300316", "https://data.delijn.be/stops/305174"], ["https://data.delijn.be/stops/105642", "https://data.delijn.be/stops/105644"], ["https://data.delijn.be/stops/400040", "https://data.delijn.be/stops/405585"], ["https://data.delijn.be/stops/501588", "https://data.delijn.be/stops/506032"], ["https://data.delijn.be/stops/206839", "https://data.delijn.be/stops/207587"], ["https://data.delijn.be/stops/503623", "https://data.delijn.be/stops/508623"], ["https://data.delijn.be/stops/408839", "https://data.delijn.be/stops/408841"], ["https://data.delijn.be/stops/404101", "https://data.delijn.be/stops/404108"], ["https://data.delijn.be/stops/202160", "https://data.delijn.be/stops/205068"], ["https://data.delijn.be/stops/200687", "https://data.delijn.be/stops/200688"], ["https://data.delijn.be/stops/502765", "https://data.delijn.be/stops/505703"], ["https://data.delijn.be/stops/103668", "https://data.delijn.be/stops/106257"], ["https://data.delijn.be/stops/301448", "https://data.delijn.be/stops/305605"], ["https://data.delijn.be/stops/202671", "https://data.delijn.be/stops/203671"], ["https://data.delijn.be/stops/109511", "https://data.delijn.be/stops/109513"], ["https://data.delijn.be/stops/407921", "https://data.delijn.be/stops/408081"], ["https://data.delijn.be/stops/503211", "https://data.delijn.be/stops/503218"], ["https://data.delijn.be/stops/504598", "https://data.delijn.be/stops/509604"], ["https://data.delijn.be/stops/208676", "https://data.delijn.be/stops/208688"], ["https://data.delijn.be/stops/205369", "https://data.delijn.be/stops/205370"], ["https://data.delijn.be/stops/201147", "https://data.delijn.be/stops/202355"], ["https://data.delijn.be/stops/300273", "https://data.delijn.be/stops/300945"], ["https://data.delijn.be/stops/109143", "https://data.delijn.be/stops/109144"], ["https://data.delijn.be/stops/406295", "https://data.delijn.be/stops/406444"], ["https://data.delijn.be/stops/502279", "https://data.delijn.be/stops/502281"], ["https://data.delijn.be/stops/404443", "https://data.delijn.be/stops/405850"], ["https://data.delijn.be/stops/401296", "https://data.delijn.be/stops/401297"], ["https://data.delijn.be/stops/300213", "https://data.delijn.be/stops/304797"], ["https://data.delijn.be/stops/107130", "https://data.delijn.be/stops/108730"], ["https://data.delijn.be/stops/403009", "https://data.delijn.be/stops/409522"], ["https://data.delijn.be/stops/305513", "https://data.delijn.be/stops/308549"], ["https://data.delijn.be/stops/403908", "https://data.delijn.be/stops/403958"], ["https://data.delijn.be/stops/509702", "https://data.delijn.be/stops/509703"], ["https://data.delijn.be/stops/303245", "https://data.delijn.be/stops/306671"], ["https://data.delijn.be/stops/508723", "https://data.delijn.be/stops/508728"], ["https://data.delijn.be/stops/202558", "https://data.delijn.be/stops/202608"], ["https://data.delijn.be/stops/105206", "https://data.delijn.be/stops/108876"], ["https://data.delijn.be/stops/504020", "https://data.delijn.be/stops/505830"], ["https://data.delijn.be/stops/508519", "https://data.delijn.be/stops/508982"], ["https://data.delijn.be/stops/200347", "https://data.delijn.be/stops/200348"], ["https://data.delijn.be/stops/305688", "https://data.delijn.be/stops/305703"], ["https://data.delijn.be/stops/200587", "https://data.delijn.be/stops/201582"], ["https://data.delijn.be/stops/200417", "https://data.delijn.be/stops/201848"], ["https://data.delijn.be/stops/401584", "https://data.delijn.be/stops/401590"], ["https://data.delijn.be/stops/208615", "https://data.delijn.be/stops/307745"], ["https://data.delijn.be/stops/202347", "https://data.delijn.be/stops/203880"], ["https://data.delijn.be/stops/106151", "https://data.delijn.be/stops/106152"], ["https://data.delijn.be/stops/305645", "https://data.delijn.be/stops/308130"], ["https://data.delijn.be/stops/206047", "https://data.delijn.be/stops/207880"], ["https://data.delijn.be/stops/406068", "https://data.delijn.be/stops/406138"], ["https://data.delijn.be/stops/203169", "https://data.delijn.be/stops/203170"], ["https://data.delijn.be/stops/300796", "https://data.delijn.be/stops/301478"], ["https://data.delijn.be/stops/302564", "https://data.delijn.be/stops/302586"], ["https://data.delijn.be/stops/408292", "https://data.delijn.be/stops/308208"], ["https://data.delijn.be/stops/504964", "https://data.delijn.be/stops/509964"], ["https://data.delijn.be/stops/102400", "https://data.delijn.be/stops/105500"], ["https://data.delijn.be/stops/303479", "https://data.delijn.be/stops/303500"], ["https://data.delijn.be/stops/403427", "https://data.delijn.be/stops/410351"], ["https://data.delijn.be/stops/300029", "https://data.delijn.be/stops/300064"], ["https://data.delijn.be/stops/504299", "https://data.delijn.be/stops/509292"], ["https://data.delijn.be/stops/104077", "https://data.delijn.be/stops/105701"], ["https://data.delijn.be/stops/300243", "https://data.delijn.be/stops/304645"], ["https://data.delijn.be/stops/502322", "https://data.delijn.be/stops/507327"], ["https://data.delijn.be/stops/103725", "https://data.delijn.be/stops/104700"], ["https://data.delijn.be/stops/106244", "https://data.delijn.be/stops/106248"], ["https://data.delijn.be/stops/105666", "https://data.delijn.be/stops/105673"], ["https://data.delijn.be/stops/107931", "https://data.delijn.be/stops/301152"], ["https://data.delijn.be/stops/503681", "https://data.delijn.be/stops/508683"], ["https://data.delijn.be/stops/408133", "https://data.delijn.be/stops/408375"], ["https://data.delijn.be/stops/206115", "https://data.delijn.be/stops/206117"], ["https://data.delijn.be/stops/202543", "https://data.delijn.be/stops/211015"], ["https://data.delijn.be/stops/101602", "https://data.delijn.be/stops/106026"], ["https://data.delijn.be/stops/503181", "https://data.delijn.be/stops/505778"], ["https://data.delijn.be/stops/300443", "https://data.delijn.be/stops/301276"], ["https://data.delijn.be/stops/201663", "https://data.delijn.be/stops/201688"], ["https://data.delijn.be/stops/304969", "https://data.delijn.be/stops/304973"], ["https://data.delijn.be/stops/304612", "https://data.delijn.be/stops/306171"], ["https://data.delijn.be/stops/504416", "https://data.delijn.be/stops/509416"], ["https://data.delijn.be/stops/202621", "https://data.delijn.be/stops/203621"], ["https://data.delijn.be/stops/306872", "https://data.delijn.be/stops/307954"], ["https://data.delijn.be/stops/303285", "https://data.delijn.be/stops/303318"], ["https://data.delijn.be/stops/206333", "https://data.delijn.be/stops/207335"], ["https://data.delijn.be/stops/407230", "https://data.delijn.be/stops/408799"], ["https://data.delijn.be/stops/504712", "https://data.delijn.be/stops/509712"], ["https://data.delijn.be/stops/501636", "https://data.delijn.be/stops/506206"], ["https://data.delijn.be/stops/104256", "https://data.delijn.be/stops/104946"], ["https://data.delijn.be/stops/109198", "https://data.delijn.be/stops/109204"], ["https://data.delijn.be/stops/502924", "https://data.delijn.be/stops/505802"], ["https://data.delijn.be/stops/505183", "https://data.delijn.be/stops/505817"], ["https://data.delijn.be/stops/105985", "https://data.delijn.be/stops/105988"], ["https://data.delijn.be/stops/304876", "https://data.delijn.be/stops/307053"], ["https://data.delijn.be/stops/502756", "https://data.delijn.be/stops/505752"], ["https://data.delijn.be/stops/405336", "https://data.delijn.be/stops/405348"], ["https://data.delijn.be/stops/307207", "https://data.delijn.be/stops/307208"], ["https://data.delijn.be/stops/405697", "https://data.delijn.be/stops/405901"], ["https://data.delijn.be/stops/104429", "https://data.delijn.be/stops/107366"], ["https://data.delijn.be/stops/402170", "https://data.delijn.be/stops/402480"], ["https://data.delijn.be/stops/304500", "https://data.delijn.be/stops/307560"], ["https://data.delijn.be/stops/405713", "https://data.delijn.be/stops/408277"], ["https://data.delijn.be/stops/200461", "https://data.delijn.be/stops/201461"], ["https://data.delijn.be/stops/208413", "https://data.delijn.be/stops/208748"], ["https://data.delijn.be/stops/409302", "https://data.delijn.be/stops/409312"], ["https://data.delijn.be/stops/206617", "https://data.delijn.be/stops/206720"], ["https://data.delijn.be/stops/403097", "https://data.delijn.be/stops/403422"], ["https://data.delijn.be/stops/106484", "https://data.delijn.be/stops/109212"], ["https://data.delijn.be/stops/501325", "https://data.delijn.be/stops/501603"], ["https://data.delijn.be/stops/108873", "https://data.delijn.be/stops/109511"], ["https://data.delijn.be/stops/109336", "https://data.delijn.be/stops/109370"], ["https://data.delijn.be/stops/404105", "https://data.delijn.be/stops/404149"], ["https://data.delijn.be/stops/203993", "https://data.delijn.be/stops/203994"], ["https://data.delijn.be/stops/101869", "https://data.delijn.be/stops/105272"], ["https://data.delijn.be/stops/200674", "https://data.delijn.be/stops/210082"], ["https://data.delijn.be/stops/408096", "https://data.delijn.be/stops/408118"], ["https://data.delijn.be/stops/405739", "https://data.delijn.be/stops/410137"], ["https://data.delijn.be/stops/201485", "https://data.delijn.be/stops/208733"], ["https://data.delijn.be/stops/502254", "https://data.delijn.be/stops/507254"], ["https://data.delijn.be/stops/205051", "https://data.delijn.be/stops/205065"], ["https://data.delijn.be/stops/200456", "https://data.delijn.be/stops/201455"], ["https://data.delijn.be/stops/208278", "https://data.delijn.be/stops/209494"], ["https://data.delijn.be/stops/300185", "https://data.delijn.be/stops/300209"], ["https://data.delijn.be/stops/404332", "https://data.delijn.be/stops/404337"], ["https://data.delijn.be/stops/200891", "https://data.delijn.be/stops/202543"], ["https://data.delijn.be/stops/101518", "https://data.delijn.be/stops/109052"], ["https://data.delijn.be/stops/401100", "https://data.delijn.be/stops/404984"], ["https://data.delijn.be/stops/300152", "https://data.delijn.be/stops/300160"], ["https://data.delijn.be/stops/102920", "https://data.delijn.be/stops/102925"], ["https://data.delijn.be/stops/300299", "https://data.delijn.be/stops/307475"], ["https://data.delijn.be/stops/305155", "https://data.delijn.be/stops/305163"], ["https://data.delijn.be/stops/200744", "https://data.delijn.be/stops/203783"], ["https://data.delijn.be/stops/219080", "https://data.delijn.be/stops/300033"], ["https://data.delijn.be/stops/307228", "https://data.delijn.be/stops/307229"], ["https://data.delijn.be/stops/106279", "https://data.delijn.be/stops/106280"], ["https://data.delijn.be/stops/306378", "https://data.delijn.be/stops/306379"], ["https://data.delijn.be/stops/103305", "https://data.delijn.be/stops/103310"], ["https://data.delijn.be/stops/104794", "https://data.delijn.be/stops/106826"], ["https://data.delijn.be/stops/200082", "https://data.delijn.be/stops/204804"], ["https://data.delijn.be/stops/405175", "https://data.delijn.be/stops/405263"], ["https://data.delijn.be/stops/406736", "https://data.delijn.be/stops/407275"], ["https://data.delijn.be/stops/407652", "https://data.delijn.be/stops/409810"], ["https://data.delijn.be/stops/302065", "https://data.delijn.be/stops/302461"], ["https://data.delijn.be/stops/405242", "https://data.delijn.be/stops/406324"], ["https://data.delijn.be/stops/304302", "https://data.delijn.be/stops/304305"], ["https://data.delijn.be/stops/302290", "https://data.delijn.be/stops/306802"], ["https://data.delijn.be/stops/103061", "https://data.delijn.be/stops/104581"], ["https://data.delijn.be/stops/501014", "https://data.delijn.be/stops/501606"], ["https://data.delijn.be/stops/404346", "https://data.delijn.be/stops/404365"], ["https://data.delijn.be/stops/302717", "https://data.delijn.be/stops/302721"], ["https://data.delijn.be/stops/203932", "https://data.delijn.be/stops/208681"], ["https://data.delijn.be/stops/304031", "https://data.delijn.be/stops/304065"], ["https://data.delijn.be/stops/103152", "https://data.delijn.be/stops/406814"], ["https://data.delijn.be/stops/301347", "https://data.delijn.be/stops/306684"], ["https://data.delijn.be/stops/103217", "https://data.delijn.be/stops/109898"], ["https://data.delijn.be/stops/208372", "https://data.delijn.be/stops/209372"], ["https://data.delijn.be/stops/200870", "https://data.delijn.be/stops/202288"], ["https://data.delijn.be/stops/101582", "https://data.delijn.be/stops/109891"], ["https://data.delijn.be/stops/204211", "https://data.delijn.be/stops/207311"], ["https://data.delijn.be/stops/400230", "https://data.delijn.be/stops/401867"], ["https://data.delijn.be/stops/300396", "https://data.delijn.be/stops/306066"], ["https://data.delijn.be/stops/403580", "https://data.delijn.be/stops/407533"], ["https://data.delijn.be/stops/107292", "https://data.delijn.be/stops/107293"], ["https://data.delijn.be/stops/102842", "https://data.delijn.be/stops/102843"], ["https://data.delijn.be/stops/106922", "https://data.delijn.be/stops/106924"], ["https://data.delijn.be/stops/504656", "https://data.delijn.be/stops/509642"], ["https://data.delijn.be/stops/104683", "https://data.delijn.be/stops/104776"], ["https://data.delijn.be/stops/208302", "https://data.delijn.be/stops/209302"], ["https://data.delijn.be/stops/305736", "https://data.delijn.be/stops/305737"], ["https://data.delijn.be/stops/300844", "https://data.delijn.be/stops/306717"], ["https://data.delijn.be/stops/304271", "https://data.delijn.be/stops/304279"], ["https://data.delijn.be/stops/209282", "https://data.delijn.be/stops/209283"], ["https://data.delijn.be/stops/301576", "https://data.delijn.be/stops/301577"], ["https://data.delijn.be/stops/300543", "https://data.delijn.be/stops/307858"], ["https://data.delijn.be/stops/305255", "https://data.delijn.be/stops/305256"], ["https://data.delijn.be/stops/404366", "https://data.delijn.be/stops/404386"], ["https://data.delijn.be/stops/505047", "https://data.delijn.be/stops/509794"], ["https://data.delijn.be/stops/306765", "https://data.delijn.be/stops/308407"], ["https://data.delijn.be/stops/404482", "https://data.delijn.be/stops/409261"], ["https://data.delijn.be/stops/508194", "https://data.delijn.be/stops/508882"], ["https://data.delijn.be/stops/206963", "https://data.delijn.be/stops/207950"], ["https://data.delijn.be/stops/202129", "https://data.delijn.be/stops/210087"], ["https://data.delijn.be/stops/404886", "https://data.delijn.be/stops/404903"], ["https://data.delijn.be/stops/503808", "https://data.delijn.be/stops/509587"], ["https://data.delijn.be/stops/400164", "https://data.delijn.be/stops/410339"], ["https://data.delijn.be/stops/504379", "https://data.delijn.be/stops/504695"], ["https://data.delijn.be/stops/105112", "https://data.delijn.be/stops/106831"], ["https://data.delijn.be/stops/106680", "https://data.delijn.be/stops/107124"], ["https://data.delijn.be/stops/201585", "https://data.delijn.be/stops/201649"], ["https://data.delijn.be/stops/107045", "https://data.delijn.be/stops/107050"], ["https://data.delijn.be/stops/406333", "https://data.delijn.be/stops/409406"], ["https://data.delijn.be/stops/304993", "https://data.delijn.be/stops/305007"], ["https://data.delijn.be/stops/106670", "https://data.delijn.be/stops/106671"], ["https://data.delijn.be/stops/202858", "https://data.delijn.be/stops/202859"], ["https://data.delijn.be/stops/302722", "https://data.delijn.be/stops/307336"], ["https://data.delijn.be/stops/200391", "https://data.delijn.be/stops/208703"], ["https://data.delijn.be/stops/302886", "https://data.delijn.be/stops/303079"], ["https://data.delijn.be/stops/304497", "https://data.delijn.be/stops/304498"], ["https://data.delijn.be/stops/504567", "https://data.delijn.be/stops/505362"], ["https://data.delijn.be/stops/200898", "https://data.delijn.be/stops/203060"], ["https://data.delijn.be/stops/202823", "https://data.delijn.be/stops/218503"], ["https://data.delijn.be/stops/503590", "https://data.delijn.be/stops/508590"], ["https://data.delijn.be/stops/106271", "https://data.delijn.be/stops/106274"], ["https://data.delijn.be/stops/102408", "https://data.delijn.be/stops/109039"], ["https://data.delijn.be/stops/208392", "https://data.delijn.be/stops/208421"], ["https://data.delijn.be/stops/302993", "https://data.delijn.be/stops/303003"], ["https://data.delijn.be/stops/301267", "https://data.delijn.be/stops/301268"], ["https://data.delijn.be/stops/101974", "https://data.delijn.be/stops/101976"], ["https://data.delijn.be/stops/300862", "https://data.delijn.be/stops/308854"], ["https://data.delijn.be/stops/102396", "https://data.delijn.be/stops/108198"], ["https://data.delijn.be/stops/300762", "https://data.delijn.be/stops/304653"], ["https://data.delijn.be/stops/402386", "https://data.delijn.be/stops/402450"], ["https://data.delijn.be/stops/401672", "https://data.delijn.be/stops/308268"], ["https://data.delijn.be/stops/407986", "https://data.delijn.be/stops/407988"], ["https://data.delijn.be/stops/409651", "https://data.delijn.be/stops/409657"], ["https://data.delijn.be/stops/106206", "https://data.delijn.be/stops/109907"], ["https://data.delijn.be/stops/107697", "https://data.delijn.be/stops/107699"], ["https://data.delijn.be/stops/402817", "https://data.delijn.be/stops/409446"], ["https://data.delijn.be/stops/203409", "https://data.delijn.be/stops/210409"], ["https://data.delijn.be/stops/304415", "https://data.delijn.be/stops/307501"], ["https://data.delijn.be/stops/105719", "https://data.delijn.be/stops/105721"], ["https://data.delijn.be/stops/200567", "https://data.delijn.be/stops/201169"], ["https://data.delijn.be/stops/404845", "https://data.delijn.be/stops/407709"], ["https://data.delijn.be/stops/408589", "https://data.delijn.be/stops/408755"], ["https://data.delijn.be/stops/307641", "https://data.delijn.be/stops/307688"], ["https://data.delijn.be/stops/501174", "https://data.delijn.be/stops/506076"], ["https://data.delijn.be/stops/505176", "https://data.delijn.be/stops/505363"], ["https://data.delijn.be/stops/502393", "https://data.delijn.be/stops/502408"], ["https://data.delijn.be/stops/109605", "https://data.delijn.be/stops/109973"], ["https://data.delijn.be/stops/503806", "https://data.delijn.be/stops/508806"], ["https://data.delijn.be/stops/206916", "https://data.delijn.be/stops/207358"], ["https://data.delijn.be/stops/305783", "https://data.delijn.be/stops/305784"], ["https://data.delijn.be/stops/108872", "https://data.delijn.be/stops/108873"], ["https://data.delijn.be/stops/302152", "https://data.delijn.be/stops/307492"], ["https://data.delijn.be/stops/105251", "https://data.delijn.be/stops/105252"], ["https://data.delijn.be/stops/200090", "https://data.delijn.be/stops/210069"], ["https://data.delijn.be/stops/205404", "https://data.delijn.be/stops/205416"], ["https://data.delijn.be/stops/402728", "https://data.delijn.be/stops/402729"], ["https://data.delijn.be/stops/105886", "https://data.delijn.be/stops/105888"], ["https://data.delijn.be/stops/200522", "https://data.delijn.be/stops/201523"], ["https://data.delijn.be/stops/202395", "https://data.delijn.be/stops/203389"], ["https://data.delijn.be/stops/101089", "https://data.delijn.be/stops/105972"], ["https://data.delijn.be/stops/501630", "https://data.delijn.be/stops/506636"], ["https://data.delijn.be/stops/200710", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/301421", "https://data.delijn.be/stops/307529"], ["https://data.delijn.be/stops/209676", "https://data.delijn.be/stops/209793"], ["https://data.delijn.be/stops/102152", "https://data.delijn.be/stops/108335"], ["https://data.delijn.be/stops/301759", "https://data.delijn.be/stops/308422"], ["https://data.delijn.be/stops/209163", "https://data.delijn.be/stops/209170"], ["https://data.delijn.be/stops/207366", "https://data.delijn.be/stops/207701"], ["https://data.delijn.be/stops/500041", "https://data.delijn.be/stops/500045"], ["https://data.delijn.be/stops/502194", "https://data.delijn.be/stops/507196"], ["https://data.delijn.be/stops/505039", "https://data.delijn.be/stops/509796"], ["https://data.delijn.be/stops/300727", "https://data.delijn.be/stops/303623"], ["https://data.delijn.be/stops/303880", "https://data.delijn.be/stops/303881"], ["https://data.delijn.be/stops/102650", "https://data.delijn.be/stops/104480"], ["https://data.delijn.be/stops/401785", "https://data.delijn.be/stops/401870"], ["https://data.delijn.be/stops/504270", "https://data.delijn.be/stops/509270"], ["https://data.delijn.be/stops/503112", "https://data.delijn.be/stops/505083"], ["https://data.delijn.be/stops/108815", "https://data.delijn.be/stops/108820"], ["https://data.delijn.be/stops/204306", "https://data.delijn.be/stops/204338"], ["https://data.delijn.be/stops/306053", "https://data.delijn.be/stops/306060"], ["https://data.delijn.be/stops/200045", "https://data.delijn.be/stops/200437"], ["https://data.delijn.be/stops/202878", "https://data.delijn.be/stops/202881"], ["https://data.delijn.be/stops/408123", "https://data.delijn.be/stops/303263"], ["https://data.delijn.be/stops/103620", "https://data.delijn.be/stops/105420"], ["https://data.delijn.be/stops/107162", "https://data.delijn.be/stops/107163"], ["https://data.delijn.be/stops/108568", "https://data.delijn.be/stops/108994"], ["https://data.delijn.be/stops/200946", "https://data.delijn.be/stops/505602"], ["https://data.delijn.be/stops/502673", "https://data.delijn.be/stops/507673"], ["https://data.delijn.be/stops/301668", "https://data.delijn.be/stops/301671"], ["https://data.delijn.be/stops/206003", "https://data.delijn.be/stops/207004"], ["https://data.delijn.be/stops/208363", "https://data.delijn.be/stops/208778"], ["https://data.delijn.be/stops/504199", "https://data.delijn.be/stops/505176"], ["https://data.delijn.be/stops/206306", "https://data.delijn.be/stops/207048"], ["https://data.delijn.be/stops/307722", "https://data.delijn.be/stops/307723"], ["https://data.delijn.be/stops/408214", "https://data.delijn.be/stops/408360"], ["https://data.delijn.be/stops/206185", "https://data.delijn.be/stops/206690"], ["https://data.delijn.be/stops/303841", "https://data.delijn.be/stops/303842"], ["https://data.delijn.be/stops/300554", "https://data.delijn.be/stops/300555"], ["https://data.delijn.be/stops/207752", "https://data.delijn.be/stops/207782"], ["https://data.delijn.be/stops/300773", "https://data.delijn.be/stops/300774"], ["https://data.delijn.be/stops/106732", "https://data.delijn.be/stops/107198"], ["https://data.delijn.be/stops/402825", "https://data.delijn.be/stops/405357"], ["https://data.delijn.be/stops/303696", "https://data.delijn.be/stops/303699"], ["https://data.delijn.be/stops/302285", "https://data.delijn.be/stops/302288"], ["https://data.delijn.be/stops/405042", "https://data.delijn.be/stops/405043"], ["https://data.delijn.be/stops/200511", "https://data.delijn.be/stops/201151"], ["https://data.delijn.be/stops/107130", "https://data.delijn.be/stops/108330"], ["https://data.delijn.be/stops/202189", "https://data.delijn.be/stops/203617"], ["https://data.delijn.be/stops/106530", "https://data.delijn.be/stops/107309"], ["https://data.delijn.be/stops/104509", "https://data.delijn.be/stops/104512"], ["https://data.delijn.be/stops/206902", "https://data.delijn.be/stops/207902"], ["https://data.delijn.be/stops/308425", "https://data.delijn.be/stops/308876"], ["https://data.delijn.be/stops/303589", "https://data.delijn.be/stops/305893"], ["https://data.delijn.be/stops/504084", "https://data.delijn.be/stops/509084"], ["https://data.delijn.be/stops/504126", "https://data.delijn.be/stops/504127"], ["https://data.delijn.be/stops/505697", "https://data.delijn.be/stops/505734"], ["https://data.delijn.be/stops/200472", "https://data.delijn.be/stops/201486"], ["https://data.delijn.be/stops/305302", "https://data.delijn.be/stops/305314"], ["https://data.delijn.be/stops/301771", "https://data.delijn.be/stops/301788"], ["https://data.delijn.be/stops/307155", "https://data.delijn.be/stops/307156"], ["https://data.delijn.be/stops/106234", "https://data.delijn.be/stops/106235"], ["https://data.delijn.be/stops/406289", "https://data.delijn.be/stops/406425"], ["https://data.delijn.be/stops/107969", "https://data.delijn.be/stops/108432"], ["https://data.delijn.be/stops/507017", "https://data.delijn.be/stops/507797"], ["https://data.delijn.be/stops/207299", "https://data.delijn.be/stops/207861"], ["https://data.delijn.be/stops/408523", "https://data.delijn.be/stops/408788"], ["https://data.delijn.be/stops/402694", "https://data.delijn.be/stops/402698"], ["https://data.delijn.be/stops/302715", "https://data.delijn.be/stops/302716"], ["https://data.delijn.be/stops/507028", "https://data.delijn.be/stops/507059"], ["https://data.delijn.be/stops/502282", "https://data.delijn.be/stops/507334"], ["https://data.delijn.be/stops/208777", "https://data.delijn.be/stops/208779"], ["https://data.delijn.be/stops/202049", "https://data.delijn.be/stops/203049"], ["https://data.delijn.be/stops/107016", "https://data.delijn.be/stops/107067"], ["https://data.delijn.be/stops/102057", "https://data.delijn.be/stops/102058"], ["https://data.delijn.be/stops/304311", "https://data.delijn.be/stops/304331"], ["https://data.delijn.be/stops/102184", "https://data.delijn.be/stops/108028"], ["https://data.delijn.be/stops/201265", "https://data.delijn.be/stops/201434"], ["https://data.delijn.be/stops/404246", "https://data.delijn.be/stops/409630"], ["https://data.delijn.be/stops/109991", "https://data.delijn.be/stops/109992"], ["https://data.delijn.be/stops/401459", "https://data.delijn.be/stops/407120"], ["https://data.delijn.be/stops/203432", "https://data.delijn.be/stops/203433"], ["https://data.delijn.be/stops/206262", "https://data.delijn.be/stops/207263"], ["https://data.delijn.be/stops/503485", "https://data.delijn.be/stops/508485"], ["https://data.delijn.be/stops/300123", "https://data.delijn.be/stops/306770"], ["https://data.delijn.be/stops/401185", "https://data.delijn.be/stops/401287"], ["https://data.delijn.be/stops/502633", "https://data.delijn.be/stops/507149"], ["https://data.delijn.be/stops/300314", "https://data.delijn.be/stops/303948"], ["https://data.delijn.be/stops/202286", "https://data.delijn.be/stops/203285"], ["https://data.delijn.be/stops/505629", "https://data.delijn.be/stops/508336"], ["https://data.delijn.be/stops/209415", "https://data.delijn.be/stops/209416"], ["https://data.delijn.be/stops/505746", "https://data.delijn.be/stops/506187"], ["https://data.delijn.be/stops/300527", "https://data.delijn.be/stops/302338"], ["https://data.delijn.be/stops/405787", "https://data.delijn.be/stops/409763"], ["https://data.delijn.be/stops/408861", "https://data.delijn.be/stops/408865"], ["https://data.delijn.be/stops/206449", "https://data.delijn.be/stops/207450"], ["https://data.delijn.be/stops/101390", "https://data.delijn.be/stops/101827"], ["https://data.delijn.be/stops/504489", "https://data.delijn.be/stops/505928"], ["https://data.delijn.be/stops/405751", "https://data.delijn.be/stops/408349"], ["https://data.delijn.be/stops/406056", "https://data.delijn.be/stops/406069"], ["https://data.delijn.be/stops/503372", "https://data.delijn.be/stops/508443"], ["https://data.delijn.be/stops/502535", "https://data.delijn.be/stops/502635"], ["https://data.delijn.be/stops/106478", "https://data.delijn.be/stops/109645"], ["https://data.delijn.be/stops/405872", "https://data.delijn.be/stops/405873"], ["https://data.delijn.be/stops/303558", "https://data.delijn.be/stops/307990"], ["https://data.delijn.be/stops/302599", "https://data.delijn.be/stops/302630"], ["https://data.delijn.be/stops/305925", "https://data.delijn.be/stops/305926"], ["https://data.delijn.be/stops/200916", "https://data.delijn.be/stops/203246"], ["https://data.delijn.be/stops/502658", "https://data.delijn.be/stops/502659"], ["https://data.delijn.be/stops/501029", "https://data.delijn.be/stops/501041"], ["https://data.delijn.be/stops/301538", "https://data.delijn.be/stops/308090"], ["https://data.delijn.be/stops/302072", "https://data.delijn.be/stops/305637"], ["https://data.delijn.be/stops/502059", "https://data.delijn.be/stops/507028"], ["https://data.delijn.be/stops/300795", "https://data.delijn.be/stops/304620"], ["https://data.delijn.be/stops/101367", "https://data.delijn.be/stops/103242"], ["https://data.delijn.be/stops/403571", "https://data.delijn.be/stops/406836"], ["https://data.delijn.be/stops/300484", "https://data.delijn.be/stops/302918"], ["https://data.delijn.be/stops/504259", "https://data.delijn.be/stops/504261"], ["https://data.delijn.be/stops/506149", "https://data.delijn.be/stops/506671"], ["https://data.delijn.be/stops/105694", "https://data.delijn.be/stops/106078"], ["https://data.delijn.be/stops/401876", "https://data.delijn.be/stops/401878"], ["https://data.delijn.be/stops/307574", "https://data.delijn.be/stops/307575"], ["https://data.delijn.be/stops/402688", "https://data.delijn.be/stops/402690"], ["https://data.delijn.be/stops/500044", "https://data.delijn.be/stops/500045"], ["https://data.delijn.be/stops/408800", "https://data.delijn.be/stops/408801"], ["https://data.delijn.be/stops/200167", "https://data.delijn.be/stops/201167"], ["https://data.delijn.be/stops/204500", "https://data.delijn.be/stops/205500"], ["https://data.delijn.be/stops/406529", "https://data.delijn.be/stops/409279"], ["https://data.delijn.be/stops/104056", "https://data.delijn.be/stops/107618"], ["https://data.delijn.be/stops/503501", "https://data.delijn.be/stops/508501"], ["https://data.delijn.be/stops/200214", "https://data.delijn.be/stops/201218"], ["https://data.delijn.be/stops/105969", "https://data.delijn.be/stops/105971"], ["https://data.delijn.be/stops/102019", "https://data.delijn.be/stops/105478"], ["https://data.delijn.be/stops/302049", "https://data.delijn.be/stops/308861"], ["https://data.delijn.be/stops/302146", "https://data.delijn.be/stops/303634"], ["https://data.delijn.be/stops/400274", "https://data.delijn.be/stops/400334"], ["https://data.delijn.be/stops/109153", "https://data.delijn.be/stops/109157"], ["https://data.delijn.be/stops/106449", "https://data.delijn.be/stops/106505"], ["https://data.delijn.be/stops/102419", "https://data.delijn.be/stops/103668"], ["https://data.delijn.be/stops/305923", "https://data.delijn.be/stops/308881"], ["https://data.delijn.be/stops/109222", "https://data.delijn.be/stops/109223"], ["https://data.delijn.be/stops/504627", "https://data.delijn.be/stops/509619"], ["https://data.delijn.be/stops/402976", "https://data.delijn.be/stops/403326"], ["https://data.delijn.be/stops/504730", "https://data.delijn.be/stops/509493"], ["https://data.delijn.be/stops/102201", "https://data.delijn.be/stops/105801"], ["https://data.delijn.be/stops/408513", "https://data.delijn.be/stops/408564"], ["https://data.delijn.be/stops/305705", "https://data.delijn.be/stops/307839"], ["https://data.delijn.be/stops/107148", "https://data.delijn.be/stops/107549"], ["https://data.delijn.be/stops/209203", "https://data.delijn.be/stops/209204"], ["https://data.delijn.be/stops/104496", "https://data.delijn.be/stops/107489"], ["https://data.delijn.be/stops/202107", "https://data.delijn.be/stops/208852"], ["https://data.delijn.be/stops/208564", "https://data.delijn.be/stops/208622"], ["https://data.delijn.be/stops/109833", "https://data.delijn.be/stops/109930"], ["https://data.delijn.be/stops/402387", "https://data.delijn.be/stops/402392"], ["https://data.delijn.be/stops/201008", "https://data.delijn.be/stops/201848"], ["https://data.delijn.be/stops/401260", "https://data.delijn.be/stops/401267"], ["https://data.delijn.be/stops/503506", "https://data.delijn.be/stops/508506"], ["https://data.delijn.be/stops/301683", "https://data.delijn.be/stops/301684"], ["https://data.delijn.be/stops/104677", "https://data.delijn.be/stops/108131"], ["https://data.delijn.be/stops/306705", "https://data.delijn.be/stops/306706"], ["https://data.delijn.be/stops/202471", "https://data.delijn.be/stops/203471"], ["https://data.delijn.be/stops/200442", "https://data.delijn.be/stops/200443"], ["https://data.delijn.be/stops/504773", "https://data.delijn.be/stops/508807"], ["https://data.delijn.be/stops/303438", "https://data.delijn.be/stops/303439"], ["https://data.delijn.be/stops/403159", "https://data.delijn.be/stops/403380"], ["https://data.delijn.be/stops/101452", "https://data.delijn.be/stops/108605"], ["https://data.delijn.be/stops/101597", "https://data.delijn.be/stops/106591"], ["https://data.delijn.be/stops/501154", "https://data.delijn.be/stops/506166"], ["https://data.delijn.be/stops/101528", "https://data.delijn.be/stops/101529"], ["https://data.delijn.be/stops/408520", "https://data.delijn.be/stops/408521"], ["https://data.delijn.be/stops/204544", "https://data.delijn.be/stops/205619"], ["https://data.delijn.be/stops/504370", "https://data.delijn.be/stops/509371"], ["https://data.delijn.be/stops/101520", "https://data.delijn.be/stops/102056"], ["https://data.delijn.be/stops/103722", "https://data.delijn.be/stops/108542"], ["https://data.delijn.be/stops/200555", "https://data.delijn.be/stops/201679"], ["https://data.delijn.be/stops/204144", "https://data.delijn.be/stops/204150"], ["https://data.delijn.be/stops/300229", "https://data.delijn.be/stops/307131"], ["https://data.delijn.be/stops/501353", "https://data.delijn.be/stops/506327"], ["https://data.delijn.be/stops/304873", "https://data.delijn.be/stops/308534"], ["https://data.delijn.be/stops/406127", "https://data.delijn.be/stops/406212"], ["https://data.delijn.be/stops/202033", "https://data.delijn.be/stops/203029"], ["https://data.delijn.be/stops/103591", "https://data.delijn.be/stops/103600"], ["https://data.delijn.be/stops/306939", "https://data.delijn.be/stops/307945"], ["https://data.delijn.be/stops/502346", "https://data.delijn.be/stops/507346"], ["https://data.delijn.be/stops/400755", "https://data.delijn.be/stops/409585"], ["https://data.delijn.be/stops/202881", "https://data.delijn.be/stops/203741"], ["https://data.delijn.be/stops/106772", "https://data.delijn.be/stops/107522"], ["https://data.delijn.be/stops/504058", "https://data.delijn.be/stops/509058"], ["https://data.delijn.be/stops/403291", "https://data.delijn.be/stops/403394"], ["https://data.delijn.be/stops/202092", "https://data.delijn.be/stops/203092"], ["https://data.delijn.be/stops/404118", "https://data.delijn.be/stops/404240"], ["https://data.delijn.be/stops/201089", "https://data.delijn.be/stops/216009"], ["https://data.delijn.be/stops/206203", "https://data.delijn.be/stops/207203"], ["https://data.delijn.be/stops/400800", "https://data.delijn.be/stops/400829"], ["https://data.delijn.be/stops/300573", "https://data.delijn.be/stops/300583"], ["https://data.delijn.be/stops/305536", "https://data.delijn.be/stops/305562"], ["https://data.delijn.be/stops/108434", "https://data.delijn.be/stops/108436"], ["https://data.delijn.be/stops/202597", "https://data.delijn.be/stops/203127"], ["https://data.delijn.be/stops/505908", "https://data.delijn.be/stops/508896"], ["https://data.delijn.be/stops/204364", "https://data.delijn.be/stops/204718"], ["https://data.delijn.be/stops/408143", "https://data.delijn.be/stops/307451"], ["https://data.delijn.be/stops/303965", "https://data.delijn.be/stops/304927"], ["https://data.delijn.be/stops/405525", "https://data.delijn.be/stops/407290"], ["https://data.delijn.be/stops/403659", "https://data.delijn.be/stops/405587"], ["https://data.delijn.be/stops/200102", "https://data.delijn.be/stops/210001"], ["https://data.delijn.be/stops/104301", "https://data.delijn.be/stops/109100"], ["https://data.delijn.be/stops/406204", "https://data.delijn.be/stops/410354"], ["https://data.delijn.be/stops/501668", "https://data.delijn.be/stops/501777"], ["https://data.delijn.be/stops/101172", "https://data.delijn.be/stops/101305"], ["https://data.delijn.be/stops/208690", "https://data.delijn.be/stops/208691"], ["https://data.delijn.be/stops/202490", "https://data.delijn.be/stops/203491"], ["https://data.delijn.be/stops/108947", "https://data.delijn.be/stops/108951"], ["https://data.delijn.be/stops/107830", "https://data.delijn.be/stops/204142"], ["https://data.delijn.be/stops/102933", "https://data.delijn.be/stops/106057"], ["https://data.delijn.be/stops/104519", "https://data.delijn.be/stops/303880"], ["https://data.delijn.be/stops/304310", "https://data.delijn.be/stops/304321"], ["https://data.delijn.be/stops/503691", "https://data.delijn.be/stops/508694"], ["https://data.delijn.be/stops/505013", "https://data.delijn.be/stops/505577"], ["https://data.delijn.be/stops/206842", "https://data.delijn.be/stops/207586"], ["https://data.delijn.be/stops/202026", "https://data.delijn.be/stops/203030"], ["https://data.delijn.be/stops/405148", "https://data.delijn.be/stops/405221"], ["https://data.delijn.be/stops/301116", "https://data.delijn.be/stops/302214"], ["https://data.delijn.be/stops/307642", "https://data.delijn.be/stops/307646"], ["https://data.delijn.be/stops/200028", "https://data.delijn.be/stops/201027"], ["https://data.delijn.be/stops/506074", "https://data.delijn.be/stops/506775"], ["https://data.delijn.be/stops/503034", "https://data.delijn.be/stops/508035"], ["https://data.delijn.be/stops/408524", "https://data.delijn.be/stops/408548"], ["https://data.delijn.be/stops/508054", "https://data.delijn.be/stops/509845"], ["https://data.delijn.be/stops/303636", "https://data.delijn.be/stops/304804"], ["https://data.delijn.be/stops/204913", "https://data.delijn.be/stops/205912"], ["https://data.delijn.be/stops/403110", "https://data.delijn.be/stops/403187"], ["https://data.delijn.be/stops/303141", "https://data.delijn.be/stops/306279"], ["https://data.delijn.be/stops/102560", "https://data.delijn.be/stops/102635"], ["https://data.delijn.be/stops/303718", "https://data.delijn.be/stops/303747"], ["https://data.delijn.be/stops/503580", "https://data.delijn.be/stops/503582"], ["https://data.delijn.be/stops/502295", "https://data.delijn.be/stops/507295"], ["https://data.delijn.be/stops/200195", "https://data.delijn.be/stops/201195"], ["https://data.delijn.be/stops/503639", "https://data.delijn.be/stops/508637"], ["https://data.delijn.be/stops/504558", "https://data.delijn.be/stops/505185"], ["https://data.delijn.be/stops/402688", "https://data.delijn.be/stops/306020"], ["https://data.delijn.be/stops/301427", "https://data.delijn.be/stops/301431"], ["https://data.delijn.be/stops/101587", "https://data.delijn.be/stops/105446"], ["https://data.delijn.be/stops/104948", "https://data.delijn.be/stops/401956"], ["https://data.delijn.be/stops/406077", "https://data.delijn.be/stops/406085"], ["https://data.delijn.be/stops/301313", "https://data.delijn.be/stops/301320"], ["https://data.delijn.be/stops/204417", "https://data.delijn.be/stops/205115"], ["https://data.delijn.be/stops/103550", "https://data.delijn.be/stops/103725"], ["https://data.delijn.be/stops/101677", "https://data.delijn.be/stops/101683"], ["https://data.delijn.be/stops/305989", "https://data.delijn.be/stops/307234"], ["https://data.delijn.be/stops/504215", "https://data.delijn.be/stops/504690"], ["https://data.delijn.be/stops/304165", "https://data.delijn.be/stops/304786"], ["https://data.delijn.be/stops/307034", "https://data.delijn.be/stops/307908"], ["https://data.delijn.be/stops/105026", "https://data.delijn.be/stops/109523"], ["https://data.delijn.be/stops/401177", "https://data.delijn.be/stops/406568"], ["https://data.delijn.be/stops/401092", "https://data.delijn.be/stops/401113"], ["https://data.delijn.be/stops/307580", "https://data.delijn.be/stops/307676"], ["https://data.delijn.be/stops/503476", "https://data.delijn.be/stops/503477"], ["https://data.delijn.be/stops/101944", "https://data.delijn.be/stops/108786"], ["https://data.delijn.be/stops/505722", "https://data.delijn.be/stops/506117"], ["https://data.delijn.be/stops/408115", "https://data.delijn.be/stops/408454"], ["https://data.delijn.be/stops/409271", "https://data.delijn.be/stops/409332"], ["https://data.delijn.be/stops/505274", "https://data.delijn.be/stops/505831"], ["https://data.delijn.be/stops/301881", "https://data.delijn.be/stops/302065"], ["https://data.delijn.be/stops/206522", "https://data.delijn.be/stops/206523"], ["https://data.delijn.be/stops/107484", "https://data.delijn.be/stops/107486"], ["https://data.delijn.be/stops/501417", "https://data.delijn.be/stops/506417"], ["https://data.delijn.be/stops/101854", "https://data.delijn.be/stops/107906"], ["https://data.delijn.be/stops/202233", "https://data.delijn.be/stops/203234"], ["https://data.delijn.be/stops/503979", "https://data.delijn.be/stops/505054"], ["https://data.delijn.be/stops/401849", "https://data.delijn.be/stops/406196"], ["https://data.delijn.be/stops/101614", "https://data.delijn.be/stops/106575"], ["https://data.delijn.be/stops/104602", "https://data.delijn.be/stops/108044"], ["https://data.delijn.be/stops/508164", "https://data.delijn.be/stops/508175"], ["https://data.delijn.be/stops/403735", "https://data.delijn.be/stops/403814"], ["https://data.delijn.be/stops/204383", "https://data.delijn.be/stops/204384"], ["https://data.delijn.be/stops/505437", "https://data.delijn.be/stops/507769"], ["https://data.delijn.be/stops/300457", "https://data.delijn.be/stops/300460"], ["https://data.delijn.be/stops/104041", "https://data.delijn.be/stops/108523"], ["https://data.delijn.be/stops/103671", "https://data.delijn.be/stops/106257"], ["https://data.delijn.be/stops/200803", "https://data.delijn.be/stops/202061"], ["https://data.delijn.be/stops/207367", "https://data.delijn.be/stops/207809"], ["https://data.delijn.be/stops/408274", "https://data.delijn.be/stops/408404"], ["https://data.delijn.be/stops/408505", "https://data.delijn.be/stops/408538"], ["https://data.delijn.be/stops/403383", "https://data.delijn.be/stops/410294"], ["https://data.delijn.be/stops/202477", "https://data.delijn.be/stops/202478"], ["https://data.delijn.be/stops/407017", "https://data.delijn.be/stops/410017"], ["https://data.delijn.be/stops/503635", "https://data.delijn.be/stops/508756"], ["https://data.delijn.be/stops/206351", "https://data.delijn.be/stops/206376"], ["https://data.delijn.be/stops/102198", "https://data.delijn.be/stops/102237"], ["https://data.delijn.be/stops/404989", "https://data.delijn.be/stops/404992"], ["https://data.delijn.be/stops/400847", "https://data.delijn.be/stops/400859"], ["https://data.delijn.be/stops/502246", "https://data.delijn.be/stops/502911"], ["https://data.delijn.be/stops/501017", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/201939", "https://data.delijn.be/stops/202945"], ["https://data.delijn.be/stops/208405", "https://data.delijn.be/stops/209414"], ["https://data.delijn.be/stops/504578", "https://data.delijn.be/stops/504579"], ["https://data.delijn.be/stops/302499", "https://data.delijn.be/stops/302501"], ["https://data.delijn.be/stops/500137", "https://data.delijn.be/stops/590332"], ["https://data.delijn.be/stops/303876", "https://data.delijn.be/stops/307870"], ["https://data.delijn.be/stops/106966", "https://data.delijn.be/stops/109508"], ["https://data.delijn.be/stops/407344", "https://data.delijn.be/stops/407345"], ["https://data.delijn.be/stops/205049", "https://data.delijn.be/stops/205052"], ["https://data.delijn.be/stops/206309", "https://data.delijn.be/stops/207310"], ["https://data.delijn.be/stops/103332", "https://data.delijn.be/stops/106440"], ["https://data.delijn.be/stops/200659", "https://data.delijn.be/stops/205928"], ["https://data.delijn.be/stops/409644", "https://data.delijn.be/stops/409825"], ["https://data.delijn.be/stops/503264", "https://data.delijn.be/stops/503265"], ["https://data.delijn.be/stops/503252", "https://data.delijn.be/stops/508252"], ["https://data.delijn.be/stops/504095", "https://data.delijn.be/stops/505192"], ["https://data.delijn.be/stops/218016", "https://data.delijn.be/stops/219028"], ["https://data.delijn.be/stops/308033", "https://data.delijn.be/stops/308034"], ["https://data.delijn.be/stops/102742", "https://data.delijn.be/stops/103037"], ["https://data.delijn.be/stops/300393", "https://data.delijn.be/stops/308963"], ["https://data.delijn.be/stops/300536", "https://data.delijn.be/stops/300537"], ["https://data.delijn.be/stops/501655", "https://data.delijn.be/stops/501778"], ["https://data.delijn.be/stops/505169", "https://data.delijn.be/stops/509338"], ["https://data.delijn.be/stops/302889", "https://data.delijn.be/stops/307048"], ["https://data.delijn.be/stops/304077", "https://data.delijn.be/stops/307817"], ["https://data.delijn.be/stops/109181", "https://data.delijn.be/stops/109225"], ["https://data.delijn.be/stops/107701", "https://data.delijn.be/stops/107702"], ["https://data.delijn.be/stops/407229", "https://data.delijn.be/stops/407234"], ["https://data.delijn.be/stops/304581", "https://data.delijn.be/stops/307027"], ["https://data.delijn.be/stops/106897", "https://data.delijn.be/stops/109884"], ["https://data.delijn.be/stops/301227", "https://data.delijn.be/stops/304270"], ["https://data.delijn.be/stops/201155", "https://data.delijn.be/stops/201453"], ["https://data.delijn.be/stops/106253", "https://data.delijn.be/stops/106254"], ["https://data.delijn.be/stops/304287", "https://data.delijn.be/stops/304288"], ["https://data.delijn.be/stops/200763", "https://data.delijn.be/stops/209301"], ["https://data.delijn.be/stops/306665", "https://data.delijn.be/stops/306667"], ["https://data.delijn.be/stops/402863", "https://data.delijn.be/stops/403647"], ["https://data.delijn.be/stops/404484", "https://data.delijn.be/stops/404485"], ["https://data.delijn.be/stops/501010", "https://data.delijn.be/stops/502080"], ["https://data.delijn.be/stops/304908", "https://data.delijn.be/stops/306178"], ["https://data.delijn.be/stops/508167", "https://data.delijn.be/stops/508168"], ["https://data.delijn.be/stops/104943", "https://data.delijn.be/stops/108228"], ["https://data.delijn.be/stops/106657", "https://data.delijn.be/stops/106659"], ["https://data.delijn.be/stops/201175", "https://data.delijn.be/stops/201176"], ["https://data.delijn.be/stops/402002", "https://data.delijn.be/stops/406049"], ["https://data.delijn.be/stops/201869", "https://data.delijn.be/stops/202658"], ["https://data.delijn.be/stops/301324", "https://data.delijn.be/stops/306654"], ["https://data.delijn.be/stops/402436", "https://data.delijn.be/stops/402437"], ["https://data.delijn.be/stops/508677", "https://data.delijn.be/stops/508678"], ["https://data.delijn.be/stops/301564", "https://data.delijn.be/stops/308080"], ["https://data.delijn.be/stops/200198", "https://data.delijn.be/stops/201187"], ["https://data.delijn.be/stops/409594", "https://data.delijn.be/stops/409596"], ["https://data.delijn.be/stops/308900", "https://data.delijn.be/stops/308901"], ["https://data.delijn.be/stops/501338", "https://data.delijn.be/stops/509897"], ["https://data.delijn.be/stops/503242", "https://data.delijn.be/stops/508251"], ["https://data.delijn.be/stops/101224", "https://data.delijn.be/stops/108517"], ["https://data.delijn.be/stops/501444", "https://data.delijn.be/stops/506440"], ["https://data.delijn.be/stops/302003", "https://data.delijn.be/stops/302012"], ["https://data.delijn.be/stops/405032", "https://data.delijn.be/stops/405033"], ["https://data.delijn.be/stops/406179", "https://data.delijn.be/stops/406181"], ["https://data.delijn.be/stops/501296", "https://data.delijn.be/stops/501336"], ["https://data.delijn.be/stops/109844", "https://data.delijn.be/stops/109847"], ["https://data.delijn.be/stops/101502", "https://data.delijn.be/stops/308497"], ["https://data.delijn.be/stops/203852", "https://data.delijn.be/stops/211098"], ["https://data.delijn.be/stops/300384", "https://data.delijn.be/stops/307895"], ["https://data.delijn.be/stops/206919", "https://data.delijn.be/stops/207841"], ["https://data.delijn.be/stops/101357", "https://data.delijn.be/stops/102188"], ["https://data.delijn.be/stops/502296", "https://data.delijn.be/stops/507296"], ["https://data.delijn.be/stops/504100", "https://data.delijn.be/stops/504202"], ["https://data.delijn.be/stops/407051", "https://data.delijn.be/stops/407076"], ["https://data.delijn.be/stops/200425", "https://data.delijn.be/stops/201425"], ["https://data.delijn.be/stops/504362", "https://data.delijn.be/stops/508664"], ["https://data.delijn.be/stops/303984", "https://data.delijn.be/stops/304289"], ["https://data.delijn.be/stops/508300", "https://data.delijn.be/stops/508968"], ["https://data.delijn.be/stops/109123", "https://data.delijn.be/stops/109126"], ["https://data.delijn.be/stops/304419", "https://data.delijn.be/stops/304420"], ["https://data.delijn.be/stops/405443", "https://data.delijn.be/stops/408783"], ["https://data.delijn.be/stops/202046", "https://data.delijn.be/stops/203046"], ["https://data.delijn.be/stops/401259", "https://data.delijn.be/stops/406681"], ["https://data.delijn.be/stops/501732", "https://data.delijn.be/stops/506732"], ["https://data.delijn.be/stops/504247", "https://data.delijn.be/stops/509248"], ["https://data.delijn.be/stops/204015", "https://data.delijn.be/stops/205015"], ["https://data.delijn.be/stops/401813", "https://data.delijn.be/stops/410044"], ["https://data.delijn.be/stops/505344", "https://data.delijn.be/stops/505655"], ["https://data.delijn.be/stops/504126", "https://data.delijn.be/stops/509122"], ["https://data.delijn.be/stops/400810", "https://data.delijn.be/stops/400811"], ["https://data.delijn.be/stops/208204", "https://data.delijn.be/stops/209109"], ["https://data.delijn.be/stops/207441", "https://data.delijn.be/stops/209696"], ["https://data.delijn.be/stops/407753", "https://data.delijn.be/stops/409792"], ["https://data.delijn.be/stops/300109", "https://data.delijn.be/stops/300110"], ["https://data.delijn.be/stops/208357", "https://data.delijn.be/stops/209185"], ["https://data.delijn.be/stops/307596", "https://data.delijn.be/stops/307742"], ["https://data.delijn.be/stops/502745", "https://data.delijn.be/stops/505697"], ["https://data.delijn.be/stops/403826", "https://data.delijn.be/stops/403886"], ["https://data.delijn.be/stops/300441", "https://data.delijn.be/stops/300442"], ["https://data.delijn.be/stops/200318", "https://data.delijn.be/stops/201319"], ["https://data.delijn.be/stops/204292", "https://data.delijn.be/stops/205537"], ["https://data.delijn.be/stops/303310", "https://data.delijn.be/stops/303313"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/510013"], ["https://data.delijn.be/stops/200390", "https://data.delijn.be/stops/201394"], ["https://data.delijn.be/stops/405867", "https://data.delijn.be/stops/409727"], ["https://data.delijn.be/stops/405869", "https://data.delijn.be/stops/409769"], ["https://data.delijn.be/stops/303183", "https://data.delijn.be/stops/304915"], ["https://data.delijn.be/stops/200778", "https://data.delijn.be/stops/202234"], ["https://data.delijn.be/stops/108916", "https://data.delijn.be/stops/109411"], ["https://data.delijn.be/stops/104971", "https://data.delijn.be/stops/105298"], ["https://data.delijn.be/stops/102841", "https://data.delijn.be/stops/103048"], ["https://data.delijn.be/stops/405928", "https://data.delijn.be/stops/405977"], ["https://data.delijn.be/stops/208269", "https://data.delijn.be/stops/209269"], ["https://data.delijn.be/stops/300308", "https://data.delijn.be/stops/300511"], ["https://data.delijn.be/stops/104412", "https://data.delijn.be/stops/204337"], ["https://data.delijn.be/stops/404882", "https://data.delijn.be/stops/404944"], ["https://data.delijn.be/stops/108059", "https://data.delijn.be/stops/108878"], ["https://data.delijn.be/stops/300038", "https://data.delijn.be/stops/306865"], ["https://data.delijn.be/stops/401642", "https://data.delijn.be/stops/408807"], ["https://data.delijn.be/stops/504840", "https://data.delijn.be/stops/505919"], ["https://data.delijn.be/stops/106770", "https://data.delijn.be/stops/107522"], ["https://data.delijn.be/stops/501450", "https://data.delijn.be/stops/506449"], ["https://data.delijn.be/stops/509753", "https://data.delijn.be/stops/509754"], ["https://data.delijn.be/stops/503878", "https://data.delijn.be/stops/509752"], ["https://data.delijn.be/stops/505730", "https://data.delijn.be/stops/507290"], ["https://data.delijn.be/stops/505218", "https://data.delijn.be/stops/505993"], ["https://data.delijn.be/stops/504263", "https://data.delijn.be/stops/509683"], ["https://data.delijn.be/stops/105158", "https://data.delijn.be/stops/105159"], ["https://data.delijn.be/stops/300181", "https://data.delijn.be/stops/300182"], ["https://data.delijn.be/stops/301130", "https://data.delijn.be/stops/302876"], ["https://data.delijn.be/stops/203316", "https://data.delijn.be/stops/208887"], ["https://data.delijn.be/stops/200811", "https://data.delijn.be/stops/203052"], ["https://data.delijn.be/stops/406338", "https://data.delijn.be/stops/406339"], ["https://data.delijn.be/stops/504244", "https://data.delijn.be/stops/504250"], ["https://data.delijn.be/stops/208558", "https://data.delijn.be/stops/209558"], ["https://data.delijn.be/stops/400924", "https://data.delijn.be/stops/400929"], ["https://data.delijn.be/stops/208778", "https://data.delijn.be/stops/209361"], ["https://data.delijn.be/stops/503726", "https://data.delijn.be/stops/509968"], ["https://data.delijn.be/stops/206978", "https://data.delijn.be/stops/304262"], ["https://data.delijn.be/stops/302870", "https://data.delijn.be/stops/307019"], ["https://data.delijn.be/stops/102604", "https://data.delijn.be/stops/102606"], ["https://data.delijn.be/stops/303966", "https://data.delijn.be/stops/303968"], ["https://data.delijn.be/stops/201908", "https://data.delijn.be/stops/202520"], ["https://data.delijn.be/stops/400210", "https://data.delijn.be/stops/400240"], ["https://data.delijn.be/stops/205388", "https://data.delijn.be/stops/205389"], ["https://data.delijn.be/stops/302105", "https://data.delijn.be/stops/302277"], ["https://data.delijn.be/stops/207979", "https://data.delijn.be/stops/301093"], ["https://data.delijn.be/stops/401814", "https://data.delijn.be/stops/406891"], ["https://data.delijn.be/stops/107448", "https://data.delijn.be/stops/107451"], ["https://data.delijn.be/stops/302321", "https://data.delijn.be/stops/303439"], ["https://data.delijn.be/stops/101485", "https://data.delijn.be/stops/102235"], ["https://data.delijn.be/stops/301490", "https://data.delijn.be/stops/301504"], ["https://data.delijn.be/stops/101938", "https://data.delijn.be/stops/109344"], ["https://data.delijn.be/stops/402156", "https://data.delijn.be/stops/402244"], ["https://data.delijn.be/stops/307208", "https://data.delijn.be/stops/307219"], ["https://data.delijn.be/stops/204344", "https://data.delijn.be/stops/205344"], ["https://data.delijn.be/stops/203428", "https://data.delijn.be/stops/203466"], ["https://data.delijn.be/stops/304765", "https://data.delijn.be/stops/304771"], ["https://data.delijn.be/stops/106494", "https://data.delijn.be/stops/106497"], ["https://data.delijn.be/stops/505236", "https://data.delijn.be/stops/505312"], ["https://data.delijn.be/stops/101451", "https://data.delijn.be/stops/101456"], ["https://data.delijn.be/stops/206393", "https://data.delijn.be/stops/207393"], ["https://data.delijn.be/stops/204085", "https://data.delijn.be/stops/205085"], ["https://data.delijn.be/stops/204058", "https://data.delijn.be/stops/205725"], ["https://data.delijn.be/stops/107365", "https://data.delijn.be/stops/107905"], ["https://data.delijn.be/stops/502001", "https://data.delijn.be/stops/507008"], ["https://data.delijn.be/stops/406374", "https://data.delijn.be/stops/409884"], ["https://data.delijn.be/stops/400789", "https://data.delijn.be/stops/400799"], ["https://data.delijn.be/stops/204706", "https://data.delijn.be/stops/205314"], ["https://data.delijn.be/stops/107864", "https://data.delijn.be/stops/107866"], ["https://data.delijn.be/stops/300311", "https://data.delijn.be/stops/302440"], ["https://data.delijn.be/stops/200037", "https://data.delijn.be/stops/200239"], ["https://data.delijn.be/stops/403374", "https://data.delijn.be/stops/404123"], ["https://data.delijn.be/stops/502062", "https://data.delijn.be/stops/507187"], ["https://data.delijn.be/stops/303469", "https://data.delijn.be/stops/303482"], ["https://data.delijn.be/stops/407011", "https://data.delijn.be/stops/407053"], ["https://data.delijn.be/stops/502603", "https://data.delijn.be/stops/507598"], ["https://data.delijn.be/stops/502225", "https://data.delijn.be/stops/505987"], ["https://data.delijn.be/stops/407608", "https://data.delijn.be/stops/407611"], ["https://data.delijn.be/stops/302800", "https://data.delijn.be/stops/307837"], ["https://data.delijn.be/stops/504614", "https://data.delijn.be/stops/505422"], ["https://data.delijn.be/stops/401258", "https://data.delijn.be/stops/401281"], ["https://data.delijn.be/stops/401379", "https://data.delijn.be/stops/410171"], ["https://data.delijn.be/stops/301706", "https://data.delijn.be/stops/308696"], ["https://data.delijn.be/stops/501053", "https://data.delijn.be/stops/505359"], ["https://data.delijn.be/stops/303588", "https://data.delijn.be/stops/305221"], ["https://data.delijn.be/stops/101970", "https://data.delijn.be/stops/105145"], ["https://data.delijn.be/stops/300639", "https://data.delijn.be/stops/306747"], ["https://data.delijn.be/stops/200912", "https://data.delijn.be/stops/203098"], ["https://data.delijn.be/stops/506369", "https://data.delijn.be/stops/590413"], ["https://data.delijn.be/stops/204039", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/504472", "https://data.delijn.be/stops/509424"], ["https://data.delijn.be/stops/109184", "https://data.delijn.be/stops/109878"], ["https://data.delijn.be/stops/105486", "https://data.delijn.be/stops/105498"], ["https://data.delijn.be/stops/307013", "https://data.delijn.be/stops/307014"], ["https://data.delijn.be/stops/101369", "https://data.delijn.be/stops/101406"], ["https://data.delijn.be/stops/304839", "https://data.delijn.be/stops/304840"], ["https://data.delijn.be/stops/406597", "https://data.delijn.be/stops/406642"], ["https://data.delijn.be/stops/101223", "https://data.delijn.be/stops/107789"], ["https://data.delijn.be/stops/200345", "https://data.delijn.be/stops/201359"], ["https://data.delijn.be/stops/101834", "https://data.delijn.be/stops/108238"], ["https://data.delijn.be/stops/504687", "https://data.delijn.be/stops/508378"], ["https://data.delijn.be/stops/400100", "https://data.delijn.be/stops/400158"], ["https://data.delijn.be/stops/407625", "https://data.delijn.be/stops/409805"], ["https://data.delijn.be/stops/206975", "https://data.delijn.be/stops/207974"], ["https://data.delijn.be/stops/302380", "https://data.delijn.be/stops/302383"], ["https://data.delijn.be/stops/204725", "https://data.delijn.be/stops/205724"], ["https://data.delijn.be/stops/109280", "https://data.delijn.be/stops/109283"], ["https://data.delijn.be/stops/101700", "https://data.delijn.be/stops/104719"], ["https://data.delijn.be/stops/202820", "https://data.delijn.be/stops/203912"], ["https://data.delijn.be/stops/502326", "https://data.delijn.be/stops/502336"], ["https://data.delijn.be/stops/403201", "https://data.delijn.be/stops/403418"], ["https://data.delijn.be/stops/502763", "https://data.delijn.be/stops/507758"], ["https://data.delijn.be/stops/503636", "https://data.delijn.be/stops/508638"], ["https://data.delijn.be/stops/305054", "https://data.delijn.be/stops/305055"], ["https://data.delijn.be/stops/204158", "https://data.delijn.be/stops/206275"], ["https://data.delijn.be/stops/400084", "https://data.delijn.be/stops/400133"], ["https://data.delijn.be/stops/201805", "https://data.delijn.be/stops/209261"], ["https://data.delijn.be/stops/101018", "https://data.delijn.be/stops/102945"], ["https://data.delijn.be/stops/204434", "https://data.delijn.be/stops/204436"], ["https://data.delijn.be/stops/102827", "https://data.delijn.be/stops/106681"], ["https://data.delijn.be/stops/302792", "https://data.delijn.be/stops/304872"], ["https://data.delijn.be/stops/307508", "https://data.delijn.be/stops/307510"], ["https://data.delijn.be/stops/208493", "https://data.delijn.be/stops/209493"], ["https://data.delijn.be/stops/502710", "https://data.delijn.be/stops/505010"], ["https://data.delijn.be/stops/301243", "https://data.delijn.be/stops/307622"], ["https://data.delijn.be/stops/102874", "https://data.delijn.be/stops/103751"], ["https://data.delijn.be/stops/401780", "https://data.delijn.be/stops/401790"], ["https://data.delijn.be/stops/505786", "https://data.delijn.be/stops/505787"], ["https://data.delijn.be/stops/108324", "https://data.delijn.be/stops/108342"], ["https://data.delijn.be/stops/402893", "https://data.delijn.be/stops/306044"], ["https://data.delijn.be/stops/502496", "https://data.delijn.be/stops/507496"], ["https://data.delijn.be/stops/203781", "https://data.delijn.be/stops/203782"], ["https://data.delijn.be/stops/502502", "https://data.delijn.be/stops/505767"], ["https://data.delijn.be/stops/503411", "https://data.delijn.be/stops/503438"], ["https://data.delijn.be/stops/102651", "https://data.delijn.be/stops/104579"], ["https://data.delijn.be/stops/402157", "https://data.delijn.be/stops/409372"], ["https://data.delijn.be/stops/405436", "https://data.delijn.be/stops/406733"], ["https://data.delijn.be/stops/503556", "https://data.delijn.be/stops/503571"], ["https://data.delijn.be/stops/304613", "https://data.delijn.be/stops/304614"], ["https://data.delijn.be/stops/206671", "https://data.delijn.be/stops/208054"], ["https://data.delijn.be/stops/105741", "https://data.delijn.be/stops/109958"], ["https://data.delijn.be/stops/502457", "https://data.delijn.be/stops/502463"], ["https://data.delijn.be/stops/107346", "https://data.delijn.be/stops/108161"], ["https://data.delijn.be/stops/405838", "https://data.delijn.be/stops/405842"], ["https://data.delijn.be/stops/208056", "https://data.delijn.be/stops/209092"], ["https://data.delijn.be/stops/304911", "https://data.delijn.be/stops/306408"], ["https://data.delijn.be/stops/503188", "https://data.delijn.be/stops/504820"], ["https://data.delijn.be/stops/401278", "https://data.delijn.be/stops/401478"], ["https://data.delijn.be/stops/300999", "https://data.delijn.be/stops/308355"], ["https://data.delijn.be/stops/407074", "https://data.delijn.be/stops/407778"], ["https://data.delijn.be/stops/201202", "https://data.delijn.be/stops/203776"], ["https://data.delijn.be/stops/208200", "https://data.delijn.be/stops/209199"], ["https://data.delijn.be/stops/101606", "https://data.delijn.be/stops/105758"], ["https://data.delijn.be/stops/300200", "https://data.delijn.be/stops/306170"], ["https://data.delijn.be/stops/107822", "https://data.delijn.be/stops/107882"], ["https://data.delijn.be/stops/208031", "https://data.delijn.be/stops/208032"], ["https://data.delijn.be/stops/209337", "https://data.delijn.be/stops/209360"], ["https://data.delijn.be/stops/502182", "https://data.delijn.be/stops/507182"], ["https://data.delijn.be/stops/405330", "https://data.delijn.be/stops/409300"], ["https://data.delijn.be/stops/401110", "https://data.delijn.be/stops/401156"], ["https://data.delijn.be/stops/400252", "https://data.delijn.be/stops/408364"], ["https://data.delijn.be/stops/108333", "https://data.delijn.be/stops/108334"], ["https://data.delijn.be/stops/402578", "https://data.delijn.be/stops/402655"], ["https://data.delijn.be/stops/507599", "https://data.delijn.be/stops/507601"], ["https://data.delijn.be/stops/403589", "https://data.delijn.be/stops/403590"], ["https://data.delijn.be/stops/101790", "https://data.delijn.be/stops/102390"], ["https://data.delijn.be/stops/400789", "https://data.delijn.be/stops/409604"], ["https://data.delijn.be/stops/402780", "https://data.delijn.be/stops/402781"], ["https://data.delijn.be/stops/405758", "https://data.delijn.be/stops/308932"], ["https://data.delijn.be/stops/406523", "https://data.delijn.be/stops/406555"], ["https://data.delijn.be/stops/503178", "https://data.delijn.be/stops/508177"], ["https://data.delijn.be/stops/400958", "https://data.delijn.be/stops/400959"], ["https://data.delijn.be/stops/408133", "https://data.delijn.be/stops/408389"], ["https://data.delijn.be/stops/206378", "https://data.delijn.be/stops/207725"], ["https://data.delijn.be/stops/202827", "https://data.delijn.be/stops/203827"], ["https://data.delijn.be/stops/405066", "https://data.delijn.be/stops/405112"], ["https://data.delijn.be/stops/200383", "https://data.delijn.be/stops/201140"], ["https://data.delijn.be/stops/305408", "https://data.delijn.be/stops/305417"], ["https://data.delijn.be/stops/200889", "https://data.delijn.be/stops/202330"], ["https://data.delijn.be/stops/109047", "https://data.delijn.be/stops/306862"], ["https://data.delijn.be/stops/101382", "https://data.delijn.be/stops/107098"], ["https://data.delijn.be/stops/105616", "https://data.delijn.be/stops/105657"], ["https://data.delijn.be/stops/302907", "https://data.delijn.be/stops/304710"], ["https://data.delijn.be/stops/302877", "https://data.delijn.be/stops/302889"], ["https://data.delijn.be/stops/503762", "https://data.delijn.be/stops/508756"], ["https://data.delijn.be/stops/103645", "https://data.delijn.be/stops/103646"], ["https://data.delijn.be/stops/504369", "https://data.delijn.be/stops/508134"], ["https://data.delijn.be/stops/300115", "https://data.delijn.be/stops/300116"], ["https://data.delijn.be/stops/405676", "https://data.delijn.be/stops/405678"], ["https://data.delijn.be/stops/404958", "https://data.delijn.be/stops/404962"], ["https://data.delijn.be/stops/300392", "https://data.delijn.be/stops/301247"], ["https://data.delijn.be/stops/107041", "https://data.delijn.be/stops/108244"], ["https://data.delijn.be/stops/400675", "https://data.delijn.be/stops/405401"], ["https://data.delijn.be/stops/302731", "https://data.delijn.be/stops/302732"], ["https://data.delijn.be/stops/101961", "https://data.delijn.be/stops/108774"], ["https://data.delijn.be/stops/103631", "https://data.delijn.be/stops/107562"], ["https://data.delijn.be/stops/503494", "https://data.delijn.be/stops/503498"], ["https://data.delijn.be/stops/504140", "https://data.delijn.be/stops/505442"], ["https://data.delijn.be/stops/400326", "https://data.delijn.be/stops/400355"], ["https://data.delijn.be/stops/503494", "https://data.delijn.be/stops/508496"], ["https://data.delijn.be/stops/302647", "https://data.delijn.be/stops/302650"], ["https://data.delijn.be/stops/204036", "https://data.delijn.be/stops/205036"], ["https://data.delijn.be/stops/200640", "https://data.delijn.be/stops/201629"], ["https://data.delijn.be/stops/207039", "https://data.delijn.be/stops/207050"], ["https://data.delijn.be/stops/504643", "https://data.delijn.be/stops/504657"], ["https://data.delijn.be/stops/507054", "https://data.delijn.be/stops/507441"], ["https://data.delijn.be/stops/505619", "https://data.delijn.be/stops/505621"], ["https://data.delijn.be/stops/202315", "https://data.delijn.be/stops/203316"], ["https://data.delijn.be/stops/300123", "https://data.delijn.be/stops/300124"], ["https://data.delijn.be/stops/405662", "https://data.delijn.be/stops/405663"], ["https://data.delijn.be/stops/409351", "https://data.delijn.be/stops/409441"], ["https://data.delijn.be/stops/106995", "https://data.delijn.be/stops/107316"], ["https://data.delijn.be/stops/101507", "https://data.delijn.be/stops/109027"], ["https://data.delijn.be/stops/502171", "https://data.delijn.be/stops/507171"], ["https://data.delijn.be/stops/502415", "https://data.delijn.be/stops/502431"], ["https://data.delijn.be/stops/103604", "https://data.delijn.be/stops/109401"], ["https://data.delijn.be/stops/205258", "https://data.delijn.be/stops/205262"], ["https://data.delijn.be/stops/103363", "https://data.delijn.be/stops/104995"], ["https://data.delijn.be/stops/400992", "https://data.delijn.be/stops/406586"], ["https://data.delijn.be/stops/501197", "https://data.delijn.be/stops/506190"], ["https://data.delijn.be/stops/404596", "https://data.delijn.be/stops/404603"], ["https://data.delijn.be/stops/404200", "https://data.delijn.be/stops/404201"], ["https://data.delijn.be/stops/503841", "https://data.delijn.be/stops/505373"], ["https://data.delijn.be/stops/200154", "https://data.delijn.be/stops/201154"], ["https://data.delijn.be/stops/303046", "https://data.delijn.be/stops/305516"], ["https://data.delijn.be/stops/500943", "https://data.delijn.be/stops/508987"], ["https://data.delijn.be/stops/200235", "https://data.delijn.be/stops/201235"], ["https://data.delijn.be/stops/404963", "https://data.delijn.be/stops/404964"], ["https://data.delijn.be/stops/300347", "https://data.delijn.be/stops/304543"], ["https://data.delijn.be/stops/401425", "https://data.delijn.be/stops/401575"], ["https://data.delijn.be/stops/502435", "https://data.delijn.be/stops/507416"], ["https://data.delijn.be/stops/408950", "https://data.delijn.be/stops/408980"], ["https://data.delijn.be/stops/402404", "https://data.delijn.be/stops/409599"], ["https://data.delijn.be/stops/402524", "https://data.delijn.be/stops/402649"], ["https://data.delijn.be/stops/400122", "https://data.delijn.be/stops/400129"], ["https://data.delijn.be/stops/201858", "https://data.delijn.be/stops/202673"], ["https://data.delijn.be/stops/503090", "https://data.delijn.be/stops/508090"], ["https://data.delijn.be/stops/405343", "https://data.delijn.be/stops/308732"], ["https://data.delijn.be/stops/206746", "https://data.delijn.be/stops/207711"], ["https://data.delijn.be/stops/206583", "https://data.delijn.be/stops/207556"], ["https://data.delijn.be/stops/103723", "https://data.delijn.be/stops/108381"], ["https://data.delijn.be/stops/403427", "https://data.delijn.be/stops/403686"], ["https://data.delijn.be/stops/101509", "https://data.delijn.be/stops/101512"], ["https://data.delijn.be/stops/503487", "https://data.delijn.be/stops/504190"], ["https://data.delijn.be/stops/206768", "https://data.delijn.be/stops/206790"], ["https://data.delijn.be/stops/407152", "https://data.delijn.be/stops/407153"], ["https://data.delijn.be/stops/201455", "https://data.delijn.be/stops/203318"], ["https://data.delijn.be/stops/206764", "https://data.delijn.be/stops/307316"], ["https://data.delijn.be/stops/404721", "https://data.delijn.be/stops/404755"], ["https://data.delijn.be/stops/502449", "https://data.delijn.be/stops/502589"], ["https://data.delijn.be/stops/501498", "https://data.delijn.be/stops/506290"], ["https://data.delijn.be/stops/106013", "https://data.delijn.be/stops/106016"], ["https://data.delijn.be/stops/504000", "https://data.delijn.be/stops/504255"], ["https://data.delijn.be/stops/505894", "https://data.delijn.be/stops/507167"], ["https://data.delijn.be/stops/104805", "https://data.delijn.be/stops/105655"], ["https://data.delijn.be/stops/201044", "https://data.delijn.be/stops/201126"], ["https://data.delijn.be/stops/102430", "https://data.delijn.be/stops/103005"], ["https://data.delijn.be/stops/300461", "https://data.delijn.be/stops/300462"], ["https://data.delijn.be/stops/501470", "https://data.delijn.be/stops/506468"], ["https://data.delijn.be/stops/306296", "https://data.delijn.be/stops/306299"], ["https://data.delijn.be/stops/201859", "https://data.delijn.be/stops/210036"], ["https://data.delijn.be/stops/402085", "https://data.delijn.be/stops/402086"], ["https://data.delijn.be/stops/103022", "https://data.delijn.be/stops/104947"], ["https://data.delijn.be/stops/408664", "https://data.delijn.be/stops/408737"], ["https://data.delijn.be/stops/300431", "https://data.delijn.be/stops/300432"], ["https://data.delijn.be/stops/503870", "https://data.delijn.be/stops/509756"], ["https://data.delijn.be/stops/204202", "https://data.delijn.be/stops/205202"], ["https://data.delijn.be/stops/304760", "https://data.delijn.be/stops/304769"], ["https://data.delijn.be/stops/505635", "https://data.delijn.be/stops/509806"], ["https://data.delijn.be/stops/505087", "https://data.delijn.be/stops/505583"], ["https://data.delijn.be/stops/403049", "https://data.delijn.be/stops/403090"], ["https://data.delijn.be/stops/107032", "https://data.delijn.be/stops/107033"], ["https://data.delijn.be/stops/304494", "https://data.delijn.be/stops/304509"], ["https://data.delijn.be/stops/403831", "https://data.delijn.be/stops/405636"], ["https://data.delijn.be/stops/211017", "https://data.delijn.be/stops/502065"], ["https://data.delijn.be/stops/300749", "https://data.delijn.be/stops/300791"], ["https://data.delijn.be/stops/104981", "https://data.delijn.be/stops/104982"], ["https://data.delijn.be/stops/107121", "https://data.delijn.be/stops/109122"], ["https://data.delijn.be/stops/305145", "https://data.delijn.be/stops/307283"], ["https://data.delijn.be/stops/301532", "https://data.delijn.be/stops/301541"], ["https://data.delijn.be/stops/406574", "https://data.delijn.be/stops/410202"], ["https://data.delijn.be/stops/502055", "https://data.delijn.be/stops/507055"], ["https://data.delijn.be/stops/304556", "https://data.delijn.be/stops/307575"], ["https://data.delijn.be/stops/405696", "https://data.delijn.be/stops/405697"], ["https://data.delijn.be/stops/503072", "https://data.delijn.be/stops/508072"], ["https://data.delijn.be/stops/206902", "https://data.delijn.be/stops/207265"], ["https://data.delijn.be/stops/402352", "https://data.delijn.be/stops/405556"], ["https://data.delijn.be/stops/505575", "https://data.delijn.be/stops/505689"], ["https://data.delijn.be/stops/202119", "https://data.delijn.be/stops/204598"], ["https://data.delijn.be/stops/109507", "https://data.delijn.be/stops/109510"], ["https://data.delijn.be/stops/103525", "https://data.delijn.be/stops/103750"], ["https://data.delijn.be/stops/106789", "https://data.delijn.be/stops/106791"], ["https://data.delijn.be/stops/402802", "https://data.delijn.be/stops/402803"], ["https://data.delijn.be/stops/402411", "https://data.delijn.be/stops/402413"], ["https://data.delijn.be/stops/101971", "https://data.delijn.be/stops/105670"], ["https://data.delijn.be/stops/502068", "https://data.delijn.be/stops/502680"], ["https://data.delijn.be/stops/403186", "https://data.delijn.be/stops/403190"], ["https://data.delijn.be/stops/503446", "https://data.delijn.be/stops/508357"], ["https://data.delijn.be/stops/200388", "https://data.delijn.be/stops/200395"], ["https://data.delijn.be/stops/403324", "https://data.delijn.be/stops/410320"], ["https://data.delijn.be/stops/202206", "https://data.delijn.be/stops/202769"], ["https://data.delijn.be/stops/407990", "https://data.delijn.be/stops/408071"], ["https://data.delijn.be/stops/209621", "https://data.delijn.be/stops/219012"], ["https://data.delijn.be/stops/105541", "https://data.delijn.be/stops/105543"], ["https://data.delijn.be/stops/503576", "https://data.delijn.be/stops/505191"], ["https://data.delijn.be/stops/203036", "https://data.delijn.be/stops/203037"], ["https://data.delijn.be/stops/201657", "https://data.delijn.be/stops/205928"], ["https://data.delijn.be/stops/507300", "https://data.delijn.be/stops/507314"], ["https://data.delijn.be/stops/403183", "https://data.delijn.be/stops/403444"], ["https://data.delijn.be/stops/104954", "https://data.delijn.be/stops/109724"], ["https://data.delijn.be/stops/206893", "https://data.delijn.be/stops/207883"], ["https://data.delijn.be/stops/200903", "https://data.delijn.be/stops/202260"], ["https://data.delijn.be/stops/504285", "https://data.delijn.be/stops/504617"], ["https://data.delijn.be/stops/408001", "https://data.delijn.be/stops/410016"], ["https://data.delijn.be/stops/200100", "https://data.delijn.be/stops/211094"], ["https://data.delijn.be/stops/301243", "https://data.delijn.be/stops/308140"], ["https://data.delijn.be/stops/502671", "https://data.delijn.be/stops/507396"], ["https://data.delijn.be/stops/300488", "https://data.delijn.be/stops/300489"], ["https://data.delijn.be/stops/502165", "https://data.delijn.be/stops/502643"], ["https://data.delijn.be/stops/208248", "https://data.delijn.be/stops/209246"], ["https://data.delijn.be/stops/403984", "https://data.delijn.be/stops/403985"], ["https://data.delijn.be/stops/302382", "https://data.delijn.be/stops/307964"], ["https://data.delijn.be/stops/400582", "https://data.delijn.be/stops/400623"], ["https://data.delijn.be/stops/104553", "https://data.delijn.be/stops/305803"], ["https://data.delijn.be/stops/201578", "https://data.delijn.be/stops/201730"], ["https://data.delijn.be/stops/200028", "https://data.delijn.be/stops/201372"], ["https://data.delijn.be/stops/504109", "https://data.delijn.be/stops/509103"], ["https://data.delijn.be/stops/200873", "https://data.delijn.be/stops/200890"], ["https://data.delijn.be/stops/402698", "https://data.delijn.be/stops/402869"], ["https://data.delijn.be/stops/101640", "https://data.delijn.be/stops/102836"], ["https://data.delijn.be/stops/401099", "https://data.delijn.be/stops/408553"], ["https://data.delijn.be/stops/101470", "https://data.delijn.be/stops/108766"], ["https://data.delijn.be/stops/405947", "https://data.delijn.be/stops/405998"], ["https://data.delijn.be/stops/305237", "https://data.delijn.be/stops/305238"], ["https://data.delijn.be/stops/406159", "https://data.delijn.be/stops/409408"], ["https://data.delijn.be/stops/300242", "https://data.delijn.be/stops/300243"], ["https://data.delijn.be/stops/104953", "https://data.delijn.be/stops/406498"], ["https://data.delijn.be/stops/107552", "https://data.delijn.be/stops/109376"], ["https://data.delijn.be/stops/300342", "https://data.delijn.be/stops/304715"], ["https://data.delijn.be/stops/300002", "https://data.delijn.be/stops/301772"], ["https://data.delijn.be/stops/202347", "https://data.delijn.be/stops/202880"], ["https://data.delijn.be/stops/408163", "https://data.delijn.be/stops/410396"], ["https://data.delijn.be/stops/200722", "https://data.delijn.be/stops/204943"], ["https://data.delijn.be/stops/204102", "https://data.delijn.be/stops/206395"], ["https://data.delijn.be/stops/101416", "https://data.delijn.be/stops/102067"], ["https://data.delijn.be/stops/101699", "https://data.delijn.be/stops/103743"], ["https://data.delijn.be/stops/306190", "https://data.delijn.be/stops/306656"], ["https://data.delijn.be/stops/301752", "https://data.delijn.be/stops/304255"], ["https://data.delijn.be/stops/503500", "https://data.delijn.be/stops/508500"], ["https://data.delijn.be/stops/502313", "https://data.delijn.be/stops/505682"], ["https://data.delijn.be/stops/300952", "https://data.delijn.be/stops/301041"], ["https://data.delijn.be/stops/405805", "https://data.delijn.be/stops/405843"], ["https://data.delijn.be/stops/506105", "https://data.delijn.be/stops/506389"], ["https://data.delijn.be/stops/206669", "https://data.delijn.be/stops/209780"], ["https://data.delijn.be/stops/106499", "https://data.delijn.be/stops/106500"], ["https://data.delijn.be/stops/300716", "https://data.delijn.be/stops/302608"], ["https://data.delijn.be/stops/304610", "https://data.delijn.be/stops/306203"], ["https://data.delijn.be/stops/504704", "https://data.delijn.be/stops/509036"], ["https://data.delijn.be/stops/108099", "https://data.delijn.be/stops/108141"], ["https://data.delijn.be/stops/101957", "https://data.delijn.be/stops/101972"], ["https://data.delijn.be/stops/204217", "https://data.delijn.be/stops/204218"], ["https://data.delijn.be/stops/300748", "https://data.delijn.be/stops/302400"], ["https://data.delijn.be/stops/206738", "https://data.delijn.be/stops/207601"], ["https://data.delijn.be/stops/401048", "https://data.delijn.be/stops/401049"], ["https://data.delijn.be/stops/302945", "https://data.delijn.be/stops/308655"], ["https://data.delijn.be/stops/501005", "https://data.delijn.be/stops/506220"], ["https://data.delijn.be/stops/301259", "https://data.delijn.be/stops/308262"], ["https://data.delijn.be/stops/400702", "https://data.delijn.be/stops/400878"], ["https://data.delijn.be/stops/303255", "https://data.delijn.be/stops/303302"], ["https://data.delijn.be/stops/509964", "https://data.delijn.be/stops/509965"], ["https://data.delijn.be/stops/206153", "https://data.delijn.be/stops/207114"], ["https://data.delijn.be/stops/410132", "https://data.delijn.be/stops/410133"], ["https://data.delijn.be/stops/208253", "https://data.delijn.be/stops/209253"], ["https://data.delijn.be/stops/102935", "https://data.delijn.be/stops/103095"], ["https://data.delijn.be/stops/308776", "https://data.delijn.be/stops/308777"], ["https://data.delijn.be/stops/206128", "https://data.delijn.be/stops/207128"], ["https://data.delijn.be/stops/202209", "https://data.delijn.be/stops/202772"], ["https://data.delijn.be/stops/405184", "https://data.delijn.be/stops/405185"], ["https://data.delijn.be/stops/102150", "https://data.delijn.be/stops/102444"], ["https://data.delijn.be/stops/202857", "https://data.delijn.be/stops/203857"], ["https://data.delijn.be/stops/300696", "https://data.delijn.be/stops/306937"], ["https://data.delijn.be/stops/407403", "https://data.delijn.be/stops/409492"], ["https://data.delijn.be/stops/502258", "https://data.delijn.be/stops/502921"], ["https://data.delijn.be/stops/403910", "https://data.delijn.be/stops/403998"], ["https://data.delijn.be/stops/507915", "https://data.delijn.be/stops/508325"], ["https://data.delijn.be/stops/405296", "https://data.delijn.be/stops/406726"], ["https://data.delijn.be/stops/108573", "https://data.delijn.be/stops/108987"], ["https://data.delijn.be/stops/206823", "https://data.delijn.be/stops/207823"], ["https://data.delijn.be/stops/207065", "https://data.delijn.be/stops/207520"], ["https://data.delijn.be/stops/503380", "https://data.delijn.be/stops/505856"], ["https://data.delijn.be/stops/409169", "https://data.delijn.be/stops/409173"], ["https://data.delijn.be/stops/106581", "https://data.delijn.be/stops/106582"], ["https://data.delijn.be/stops/201864", "https://data.delijn.be/stops/202086"], ["https://data.delijn.be/stops/502763", "https://data.delijn.be/stops/507470"], ["https://data.delijn.be/stops/408580", "https://data.delijn.be/stops/408741"], ["https://data.delijn.be/stops/305321", "https://data.delijn.be/stops/305893"], ["https://data.delijn.be/stops/303130", "https://data.delijn.be/stops/303132"], ["https://data.delijn.be/stops/105581", "https://data.delijn.be/stops/107501"], ["https://data.delijn.be/stops/208668", "https://data.delijn.be/stops/209440"], ["https://data.delijn.be/stops/106822", "https://data.delijn.be/stops/106838"], ["https://data.delijn.be/stops/101162", "https://data.delijn.be/stops/105973"], ["https://data.delijn.be/stops/502289", "https://data.delijn.be/stops/507289"], ["https://data.delijn.be/stops/301659", "https://data.delijn.be/stops/301893"], ["https://data.delijn.be/stops/101094", "https://data.delijn.be/stops/106002"], ["https://data.delijn.be/stops/304141", "https://data.delijn.be/stops/304170"], ["https://data.delijn.be/stops/300813", "https://data.delijn.be/stops/306641"], ["https://data.delijn.be/stops/406612", "https://data.delijn.be/stops/406614"], ["https://data.delijn.be/stops/302555", "https://data.delijn.be/stops/305979"], ["https://data.delijn.be/stops/402245", "https://data.delijn.be/stops/409394"], ["https://data.delijn.be/stops/304751", "https://data.delijn.be/stops/304851"], ["https://data.delijn.be/stops/403090", "https://data.delijn.be/stops/410337"], ["https://data.delijn.be/stops/304581", "https://data.delijn.be/stops/304716"], ["https://data.delijn.be/stops/202913", "https://data.delijn.be/stops/203913"], ["https://data.delijn.be/stops/504605", "https://data.delijn.be/stops/505971"], ["https://data.delijn.be/stops/305007", "https://data.delijn.be/stops/305016"], ["https://data.delijn.be/stops/202854", "https://data.delijn.be/stops/202857"], ["https://data.delijn.be/stops/301914", "https://data.delijn.be/stops/305841"], ["https://data.delijn.be/stops/202140", "https://data.delijn.be/stops/202175"], ["https://data.delijn.be/stops/200457", "https://data.delijn.be/stops/201457"], ["https://data.delijn.be/stops/105234", "https://data.delijn.be/stops/105251"], ["https://data.delijn.be/stops/105677", "https://data.delijn.be/stops/106755"], ["https://data.delijn.be/stops/301973", "https://data.delijn.be/stops/301979"], ["https://data.delijn.be/stops/301630", "https://data.delijn.be/stops/303662"], ["https://data.delijn.be/stops/503579", "https://data.delijn.be/stops/508579"], ["https://data.delijn.be/stops/502689", "https://data.delijn.be/stops/502921"], ["https://data.delijn.be/stops/401768", "https://data.delijn.be/stops/401771"], ["https://data.delijn.be/stops/301693", "https://data.delijn.be/stops/301694"], ["https://data.delijn.be/stops/503746", "https://data.delijn.be/stops/508746"], ["https://data.delijn.be/stops/405056", "https://data.delijn.be/stops/405888"], ["https://data.delijn.be/stops/301771", "https://data.delijn.be/stops/301778"], ["https://data.delijn.be/stops/401639", "https://data.delijn.be/stops/308207"], ["https://data.delijn.be/stops/101090", "https://data.delijn.be/stops/102987"], ["https://data.delijn.be/stops/304232", "https://data.delijn.be/stops/304686"], ["https://data.delijn.be/stops/201677", "https://data.delijn.be/stops/202773"], ["https://data.delijn.be/stops/202611", "https://data.delijn.be/stops/203610"], ["https://data.delijn.be/stops/405795", "https://data.delijn.be/stops/407351"], ["https://data.delijn.be/stops/304887", "https://data.delijn.be/stops/308587"], ["https://data.delijn.be/stops/404246", "https://data.delijn.be/stops/409601"], ["https://data.delijn.be/stops/103342", "https://data.delijn.be/stops/103343"], ["https://data.delijn.be/stops/502192", "https://data.delijn.be/stops/505547"], ["https://data.delijn.be/stops/508867", "https://data.delijn.be/stops/508873"], ["https://data.delijn.be/stops/200455", "https://data.delijn.be/stops/201455"], ["https://data.delijn.be/stops/409285", "https://data.delijn.be/stops/409308"], ["https://data.delijn.be/stops/302790", "https://data.delijn.be/stops/308593"], ["https://data.delijn.be/stops/404311", "https://data.delijn.be/stops/404322"], ["https://data.delijn.be/stops/106799", "https://data.delijn.be/stops/106871"], ["https://data.delijn.be/stops/407262", "https://data.delijn.be/stops/407497"], ["https://data.delijn.be/stops/202897", "https://data.delijn.be/stops/203897"], ["https://data.delijn.be/stops/503428", "https://data.delijn.be/stops/505188"], ["https://data.delijn.be/stops/208132", "https://data.delijn.be/stops/209131"], ["https://data.delijn.be/stops/302933", "https://data.delijn.be/stops/303999"], ["https://data.delijn.be/stops/501066", "https://data.delijn.be/stops/506066"], ["https://data.delijn.be/stops/205237", "https://data.delijn.be/stops/206313"], ["https://data.delijn.be/stops/204097", "https://data.delijn.be/stops/205465"], ["https://data.delijn.be/stops/300816", "https://data.delijn.be/stops/300881"], ["https://data.delijn.be/stops/408861", "https://data.delijn.be/stops/408871"], ["https://data.delijn.be/stops/402097", "https://data.delijn.be/stops/402326"], ["https://data.delijn.be/stops/202321", "https://data.delijn.be/stops/203321"], ["https://data.delijn.be/stops/503625", "https://data.delijn.be/stops/503632"], ["https://data.delijn.be/stops/400039", "https://data.delijn.be/stops/400175"], ["https://data.delijn.be/stops/503930", "https://data.delijn.be/stops/505250"], ["https://data.delijn.be/stops/501090", "https://data.delijn.be/stops/501100"], ["https://data.delijn.be/stops/409636", "https://data.delijn.be/stops/409638"], ["https://data.delijn.be/stops/502747", "https://data.delijn.be/stops/505655"], ["https://data.delijn.be/stops/202401", "https://data.delijn.be/stops/203400"], ["https://data.delijn.be/stops/504632", "https://data.delijn.be/stops/504634"], ["https://data.delijn.be/stops/507092", "https://data.delijn.be/stops/507112"], ["https://data.delijn.be/stops/301672", "https://data.delijn.be/stops/303661"], ["https://data.delijn.be/stops/507436", "https://data.delijn.be/stops/507622"], ["https://data.delijn.be/stops/501370", "https://data.delijn.be/stops/506241"], ["https://data.delijn.be/stops/504680", "https://data.delijn.be/stops/509661"], ["https://data.delijn.be/stops/302384", "https://data.delijn.be/stops/302385"], ["https://data.delijn.be/stops/107867", "https://data.delijn.be/stops/107868"], ["https://data.delijn.be/stops/303977", "https://data.delijn.be/stops/303985"], ["https://data.delijn.be/stops/102947", "https://data.delijn.be/stops/106237"], ["https://data.delijn.be/stops/502223", "https://data.delijn.be/stops/507223"], ["https://data.delijn.be/stops/304390", "https://data.delijn.be/stops/307413"], ["https://data.delijn.be/stops/501190", "https://data.delijn.be/stops/506193"], ["https://data.delijn.be/stops/103757", "https://data.delijn.be/stops/104258"], ["https://data.delijn.be/stops/505199", "https://data.delijn.be/stops/505248"], ["https://data.delijn.be/stops/301873", "https://data.delijn.be/stops/306984"], ["https://data.delijn.be/stops/200914", "https://data.delijn.be/stops/202089"], ["https://data.delijn.be/stops/103926", "https://data.delijn.be/stops/103928"], ["https://data.delijn.be/stops/501505", "https://data.delijn.be/stops/506505"], ["https://data.delijn.be/stops/300817", "https://data.delijn.be/stops/303631"], ["https://data.delijn.be/stops/202486", "https://data.delijn.be/stops/203486"], ["https://data.delijn.be/stops/208165", "https://data.delijn.be/stops/208166"], ["https://data.delijn.be/stops/504578", "https://data.delijn.be/stops/509270"], ["https://data.delijn.be/stops/209395", "https://data.delijn.be/stops/503024"], ["https://data.delijn.be/stops/208377", "https://data.delijn.be/stops/209377"], ["https://data.delijn.be/stops/202110", "https://data.delijn.be/stops/203111"], ["https://data.delijn.be/stops/302104", "https://data.delijn.be/stops/308600"], ["https://data.delijn.be/stops/201675", "https://data.delijn.be/stops/202504"], ["https://data.delijn.be/stops/207724", "https://data.delijn.be/stops/207725"], ["https://data.delijn.be/stops/400855", "https://data.delijn.be/stops/410048"], ["https://data.delijn.be/stops/404996", "https://data.delijn.be/stops/406910"], ["https://data.delijn.be/stops/401121", "https://data.delijn.be/stops/402830"], ["https://data.delijn.be/stops/103216", "https://data.delijn.be/stops/103491"], ["https://data.delijn.be/stops/504963", "https://data.delijn.be/stops/504964"], ["https://data.delijn.be/stops/500137", "https://data.delijn.be/stops/501102"], ["https://data.delijn.be/stops/405857", "https://data.delijn.be/stops/409713"], ["https://data.delijn.be/stops/202730", "https://data.delijn.be/stops/204621"], ["https://data.delijn.be/stops/302622", "https://data.delijn.be/stops/308074"], ["https://data.delijn.be/stops/208464", "https://data.delijn.be/stops/209464"], ["https://data.delijn.be/stops/200179", "https://data.delijn.be/stops/201195"], ["https://data.delijn.be/stops/300494", "https://data.delijn.be/stops/307084"], ["https://data.delijn.be/stops/200955", "https://data.delijn.be/stops/202509"], ["https://data.delijn.be/stops/508001", "https://data.delijn.be/stops/508006"], ["https://data.delijn.be/stops/101030", "https://data.delijn.be/stops/103135"], ["https://data.delijn.be/stops/205126", "https://data.delijn.be/stops/205666"], ["https://data.delijn.be/stops/303033", "https://data.delijn.be/stops/303098"], ["https://data.delijn.be/stops/402255", "https://data.delijn.be/stops/402291"], ["https://data.delijn.be/stops/104108", "https://data.delijn.be/stops/205604"], ["https://data.delijn.be/stops/208076", "https://data.delijn.be/stops/209143"], ["https://data.delijn.be/stops/204766", "https://data.delijn.be/stops/205765"], ["https://data.delijn.be/stops/404860", "https://data.delijn.be/stops/404866"], ["https://data.delijn.be/stops/501007", "https://data.delijn.be/stops/508744"], ["https://data.delijn.be/stops/502411", "https://data.delijn.be/stops/502588"], ["https://data.delijn.be/stops/104934", "https://data.delijn.be/stops/107841"], ["https://data.delijn.be/stops/307624", "https://data.delijn.be/stops/308292"], ["https://data.delijn.be/stops/202412", "https://data.delijn.be/stops/202421"], ["https://data.delijn.be/stops/206956", "https://data.delijn.be/stops/207189"], ["https://data.delijn.be/stops/202381", "https://data.delijn.be/stops/203380"], ["https://data.delijn.be/stops/206608", "https://data.delijn.be/stops/207208"], ["https://data.delijn.be/stops/405689", "https://data.delijn.be/stops/408203"], ["https://data.delijn.be/stops/301364", "https://data.delijn.be/stops/306152"], ["https://data.delijn.be/stops/206283", "https://data.delijn.be/stops/206285"], ["https://data.delijn.be/stops/403229", "https://data.delijn.be/stops/405359"], ["https://data.delijn.be/stops/503121", "https://data.delijn.be/stops/508121"], ["https://data.delijn.be/stops/104535", "https://data.delijn.be/stops/105365"], ["https://data.delijn.be/stops/303719", "https://data.delijn.be/stops/303744"], ["https://data.delijn.be/stops/101175", "https://data.delijn.be/stops/102230"], ["https://data.delijn.be/stops/204189", "https://data.delijn.be/stops/205190"], ["https://data.delijn.be/stops/106693", "https://data.delijn.be/stops/106694"], ["https://data.delijn.be/stops/503262", "https://data.delijn.be/stops/508241"], ["https://data.delijn.be/stops/300831", "https://data.delijn.be/stops/300832"], ["https://data.delijn.be/stops/105338", "https://data.delijn.be/stops/105342"], ["https://data.delijn.be/stops/104817", "https://data.delijn.be/stops/109800"], ["https://data.delijn.be/stops/300204", "https://data.delijn.be/stops/300209"], ["https://data.delijn.be/stops/501373", "https://data.delijn.be/stops/501375"], ["https://data.delijn.be/stops/207392", "https://data.delijn.be/stops/207393"], ["https://data.delijn.be/stops/206767", "https://data.delijn.be/stops/206790"], ["https://data.delijn.be/stops/106050", "https://data.delijn.be/stops/106090"], ["https://data.delijn.be/stops/500563", "https://data.delijn.be/stops/501027"], ["https://data.delijn.be/stops/504366", "https://data.delijn.be/stops/509365"], ["https://data.delijn.be/stops/101665", "https://data.delijn.be/stops/101670"], ["https://data.delijn.be/stops/503869", "https://data.delijn.be/stops/508531"], ["https://data.delijn.be/stops/401989", "https://data.delijn.be/stops/404979"], ["https://data.delijn.be/stops/208184", "https://data.delijn.be/stops/208357"], ["https://data.delijn.be/stops/200330", "https://data.delijn.be/stops/202201"], ["https://data.delijn.be/stops/408242", "https://data.delijn.be/stops/308222"], ["https://data.delijn.be/stops/106188", "https://data.delijn.be/stops/107437"], ["https://data.delijn.be/stops/206198", "https://data.delijn.be/stops/207198"], ["https://data.delijn.be/stops/304186", "https://data.delijn.be/stops/306282"], ["https://data.delijn.be/stops/201680", "https://data.delijn.be/stops/203402"], ["https://data.delijn.be/stops/102210", "https://data.delijn.be/stops/102695"], ["https://data.delijn.be/stops/208050", "https://data.delijn.be/stops/208485"], ["https://data.delijn.be/stops/504176", "https://data.delijn.be/stops/509163"], ["https://data.delijn.be/stops/106457", "https://data.delijn.be/stops/107031"], ["https://data.delijn.be/stops/101468", "https://data.delijn.be/stops/109268"], ["https://data.delijn.be/stops/200081", "https://data.delijn.be/stops/203192"], ["https://data.delijn.be/stops/103376", "https://data.delijn.be/stops/108673"], ["https://data.delijn.be/stops/502347", "https://data.delijn.be/stops/505308"], ["https://data.delijn.be/stops/408874", "https://data.delijn.be/stops/408911"], ["https://data.delijn.be/stops/405802", "https://data.delijn.be/stops/405860"], ["https://data.delijn.be/stops/301593", "https://data.delijn.be/stops/306960"], ["https://data.delijn.be/stops/200068", "https://data.delijn.be/stops/200188"], ["https://data.delijn.be/stops/400779", "https://data.delijn.be/stops/409664"], ["https://data.delijn.be/stops/204364", "https://data.delijn.be/stops/205364"], ["https://data.delijn.be/stops/303405", "https://data.delijn.be/stops/304553"], ["https://data.delijn.be/stops/407549", "https://data.delijn.be/stops/407556"], ["https://data.delijn.be/stops/405264", "https://data.delijn.be/stops/406411"], ["https://data.delijn.be/stops/208053", "https://data.delijn.be/stops/208658"], ["https://data.delijn.be/stops/207604", "https://data.delijn.be/stops/207605"], ["https://data.delijn.be/stops/200166", "https://data.delijn.be/stops/202150"], ["https://data.delijn.be/stops/106888", "https://data.delijn.be/stops/106890"], ["https://data.delijn.be/stops/101546", "https://data.delijn.be/stops/107806"], ["https://data.delijn.be/stops/306315", "https://data.delijn.be/stops/308761"], ["https://data.delijn.be/stops/201486", "https://data.delijn.be/stops/201488"], ["https://data.delijn.be/stops/102208", "https://data.delijn.be/stops/102211"], ["https://data.delijn.be/stops/400055", "https://data.delijn.be/stops/400139"], ["https://data.delijn.be/stops/101530", "https://data.delijn.be/stops/104494"], ["https://data.delijn.be/stops/102884", "https://data.delijn.be/stops/102886"], ["https://data.delijn.be/stops/501451", "https://data.delijn.be/stops/501452"], ["https://data.delijn.be/stops/501562", "https://data.delijn.be/stops/590412"], ["https://data.delijn.be/stops/501018", "https://data.delijn.be/stops/501609"], ["https://data.delijn.be/stops/101673", "https://data.delijn.be/stops/400433"], ["https://data.delijn.be/stops/401401", "https://data.delijn.be/stops/300923"], ["https://data.delijn.be/stops/503154", "https://data.delijn.be/stops/509559"], ["https://data.delijn.be/stops/102484", "https://data.delijn.be/stops/400417"], ["https://data.delijn.be/stops/305658", "https://data.delijn.be/stops/305659"], ["https://data.delijn.be/stops/107349", "https://data.delijn.be/stops/107352"], ["https://data.delijn.be/stops/502109", "https://data.delijn.be/stops/502129"], ["https://data.delijn.be/stops/402547", "https://data.delijn.be/stops/402581"], ["https://data.delijn.be/stops/203850", "https://data.delijn.be/stops/203909"], ["https://data.delijn.be/stops/200638", "https://data.delijn.be/stops/203941"], ["https://data.delijn.be/stops/204076", "https://data.delijn.be/stops/204089"], ["https://data.delijn.be/stops/304283", "https://data.delijn.be/stops/306140"], ["https://data.delijn.be/stops/506777", "https://data.delijn.be/stops/509933"], ["https://data.delijn.be/stops/302577", "https://data.delijn.be/stops/302603"], ["https://data.delijn.be/stops/204340", "https://data.delijn.be/stops/205269"], ["https://data.delijn.be/stops/208276", "https://data.delijn.be/stops/208282"], ["https://data.delijn.be/stops/109082", "https://data.delijn.be/stops/109655"], ["https://data.delijn.be/stops/506150", "https://data.delijn.be/stops/506163"], ["https://data.delijn.be/stops/305690", "https://data.delijn.be/stops/305691"], ["https://data.delijn.be/stops/408233", "https://data.delijn.be/stops/408238"], ["https://data.delijn.be/stops/503636", "https://data.delijn.be/stops/505935"], ["https://data.delijn.be/stops/206018", "https://data.delijn.be/stops/207107"], ["https://data.delijn.be/stops/504943", "https://data.delijn.be/stops/509943"], ["https://data.delijn.be/stops/101440", "https://data.delijn.be/stops/104082"], ["https://data.delijn.be/stops/105140", "https://data.delijn.be/stops/105145"], ["https://data.delijn.be/stops/304593", "https://data.delijn.be/stops/304630"], ["https://data.delijn.be/stops/108977", "https://data.delijn.be/stops/108978"], ["https://data.delijn.be/stops/106084", "https://data.delijn.be/stops/108720"], ["https://data.delijn.be/stops/400841", "https://data.delijn.be/stops/409568"], ["https://data.delijn.be/stops/200128", "https://data.delijn.be/stops/201128"], ["https://data.delijn.be/stops/409692", "https://data.delijn.be/stops/409701"], ["https://data.delijn.be/stops/503275", "https://data.delijn.be/stops/505129"], ["https://data.delijn.be/stops/410114", "https://data.delijn.be/stops/410115"], ["https://data.delijn.be/stops/205789", "https://data.delijn.be/stops/205790"], ["https://data.delijn.be/stops/504644", "https://data.delijn.be/stops/509646"], ["https://data.delijn.be/stops/304940", "https://data.delijn.be/stops/304991"], ["https://data.delijn.be/stops/302394", "https://data.delijn.be/stops/302395"], ["https://data.delijn.be/stops/301470", "https://data.delijn.be/stops/301481"], ["https://data.delijn.be/stops/404997", "https://data.delijn.be/stops/406909"], ["https://data.delijn.be/stops/403165", "https://data.delijn.be/stops/403172"], ["https://data.delijn.be/stops/207203", "https://data.delijn.be/stops/207204"], ["https://data.delijn.be/stops/504079", "https://data.delijn.be/stops/509054"], ["https://data.delijn.be/stops/103105", "https://data.delijn.be/stops/104690"], ["https://data.delijn.be/stops/409283", "https://data.delijn.be/stops/409284"], ["https://data.delijn.be/stops/503393", "https://data.delijn.be/stops/508100"], ["https://data.delijn.be/stops/401062", "https://data.delijn.be/stops/409980"], ["https://data.delijn.be/stops/207191", "https://data.delijn.be/stops/207224"], ["https://data.delijn.be/stops/105116", "https://data.delijn.be/stops/105117"], ["https://data.delijn.be/stops/302911", "https://data.delijn.be/stops/303080"], ["https://data.delijn.be/stops/301929", "https://data.delijn.be/stops/306204"], ["https://data.delijn.be/stops/505127", "https://data.delijn.be/stops/505136"], ["https://data.delijn.be/stops/201899", "https://data.delijn.be/stops/204950"], ["https://data.delijn.be/stops/307628", "https://data.delijn.be/stops/307630"], ["https://data.delijn.be/stops/218005", "https://data.delijn.be/stops/219005"], ["https://data.delijn.be/stops/305188", "https://data.delijn.be/stops/306966"], ["https://data.delijn.be/stops/501324", "https://data.delijn.be/stops/506291"], ["https://data.delijn.be/stops/501117", "https://data.delijn.be/stops/506116"], ["https://data.delijn.be/stops/101971", "https://data.delijn.be/stops/103865"], ["https://data.delijn.be/stops/405245", "https://data.delijn.be/stops/406325"], ["https://data.delijn.be/stops/206250", "https://data.delijn.be/stops/206585"], ["https://data.delijn.be/stops/408890", "https://data.delijn.be/stops/408893"], ["https://data.delijn.be/stops/105686", "https://data.delijn.be/stops/105688"], ["https://data.delijn.be/stops/105907", "https://data.delijn.be/stops/105909"], ["https://data.delijn.be/stops/209045", "https://data.delijn.be/stops/209058"], ["https://data.delijn.be/stops/506399", "https://data.delijn.be/stops/506401"], ["https://data.delijn.be/stops/504391", "https://data.delijn.be/stops/509391"], ["https://data.delijn.be/stops/204167", "https://data.delijn.be/stops/204587"], ["https://data.delijn.be/stops/406398", "https://data.delijn.be/stops/302831"], ["https://data.delijn.be/stops/503222", "https://data.delijn.be/stops/503593"], ["https://data.delijn.be/stops/303321", "https://data.delijn.be/stops/305684"], ["https://data.delijn.be/stops/204078", "https://data.delijn.be/stops/204199"], ["https://data.delijn.be/stops/301777", "https://data.delijn.be/stops/301786"], ["https://data.delijn.be/stops/105962", "https://data.delijn.be/stops/108940"], ["https://data.delijn.be/stops/401724", "https://data.delijn.be/stops/405448"], ["https://data.delijn.be/stops/106465", "https://data.delijn.be/stops/108247"], ["https://data.delijn.be/stops/208782", "https://data.delijn.be/stops/209339"], ["https://data.delijn.be/stops/107039", "https://data.delijn.be/stops/108243"], ["https://data.delijn.be/stops/505670", "https://data.delijn.be/stops/507517"], ["https://data.delijn.be/stops/201714", "https://data.delijn.be/stops/201724"], ["https://data.delijn.be/stops/208697", "https://data.delijn.be/stops/208709"], ["https://data.delijn.be/stops/305553", "https://data.delijn.be/stops/308687"], ["https://data.delijn.be/stops/202795", "https://data.delijn.be/stops/203795"], ["https://data.delijn.be/stops/200405", "https://data.delijn.be/stops/201725"], ["https://data.delijn.be/stops/202827", "https://data.delijn.be/stops/202837"], ["https://data.delijn.be/stops/108915", "https://data.delijn.be/stops/108920"], ["https://data.delijn.be/stops/201044", "https://data.delijn.be/stops/203487"], ["https://data.delijn.be/stops/402700", "https://data.delijn.be/stops/402709"], ["https://data.delijn.be/stops/304441", "https://data.delijn.be/stops/307713"], ["https://data.delijn.be/stops/103393", "https://data.delijn.be/stops/108010"], ["https://data.delijn.be/stops/204459", "https://data.delijn.be/stops/205118"], ["https://data.delijn.be/stops/502267", "https://data.delijn.be/stops/502921"], ["https://data.delijn.be/stops/103482", "https://data.delijn.be/stops/109139"], ["https://data.delijn.be/stops/208460", "https://data.delijn.be/stops/209462"], ["https://data.delijn.be/stops/106223", "https://data.delijn.be/stops/106334"], ["https://data.delijn.be/stops/301888", "https://data.delijn.be/stops/305912"], ["https://data.delijn.be/stops/402812", "https://data.delijn.be/stops/409041"], ["https://data.delijn.be/stops/403420", "https://data.delijn.be/stops/403422"], ["https://data.delijn.be/stops/302350", "https://data.delijn.be/stops/302366"], ["https://data.delijn.be/stops/103303", "https://data.delijn.be/stops/109604"], ["https://data.delijn.be/stops/305060", "https://data.delijn.be/stops/306918"], ["https://data.delijn.be/stops/407892", "https://data.delijn.be/stops/303889"], ["https://data.delijn.be/stops/304074", "https://data.delijn.be/stops/304106"], ["https://data.delijn.be/stops/107928", "https://data.delijn.be/stops/109910"], ["https://data.delijn.be/stops/305742", "https://data.delijn.be/stops/305747"], ["https://data.delijn.be/stops/409355", "https://data.delijn.be/stops/409387"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/504412"], ["https://data.delijn.be/stops/208419", "https://data.delijn.be/stops/209419"], ["https://data.delijn.be/stops/103256", "https://data.delijn.be/stops/103260"], ["https://data.delijn.be/stops/201935", "https://data.delijn.be/stops/202958"], ["https://data.delijn.be/stops/103629", "https://data.delijn.be/stops/107739"], ["https://data.delijn.be/stops/406609", "https://data.delijn.be/stops/406637"], ["https://data.delijn.be/stops/403064", "https://data.delijn.be/stops/403445"], ["https://data.delijn.be/stops/502592", "https://data.delijn.be/stops/505681"], ["https://data.delijn.be/stops/508513", "https://data.delijn.be/stops/508514"], ["https://data.delijn.be/stops/207794", "https://data.delijn.be/stops/208192"], ["https://data.delijn.be/stops/400695", "https://data.delijn.be/stops/409526"], ["https://data.delijn.be/stops/401526", "https://data.delijn.be/stops/410198"], ["https://data.delijn.be/stops/401472", "https://data.delijn.be/stops/409347"], ["https://data.delijn.be/stops/505255", "https://data.delijn.be/stops/505942"], ["https://data.delijn.be/stops/501202", "https://data.delijn.be/stops/506425"], ["https://data.delijn.be/stops/300731", "https://data.delijn.be/stops/300732"], ["https://data.delijn.be/stops/204640", "https://data.delijn.be/stops/204641"], ["https://data.delijn.be/stops/107701", "https://data.delijn.be/stops/107713"], ["https://data.delijn.be/stops/107539", "https://data.delijn.be/stops/109602"], ["https://data.delijn.be/stops/101211", "https://data.delijn.be/stops/107797"], ["https://data.delijn.be/stops/107449", "https://data.delijn.be/stops/107452"], ["https://data.delijn.be/stops/201667", "https://data.delijn.be/stops/201678"], ["https://data.delijn.be/stops/205566", "https://data.delijn.be/stops/308795"], ["https://data.delijn.be/stops/509361", "https://data.delijn.be/stops/509367"], ["https://data.delijn.be/stops/204460", "https://data.delijn.be/stops/204464"], ["https://data.delijn.be/stops/503168", "https://data.delijn.be/stops/503177"], ["https://data.delijn.be/stops/207275", "https://data.delijn.be/stops/207276"], ["https://data.delijn.be/stops/206570", "https://data.delijn.be/stops/207570"], ["https://data.delijn.be/stops/108840", "https://data.delijn.be/stops/108843"], ["https://data.delijn.be/stops/206762", "https://data.delijn.be/stops/208622"], ["https://data.delijn.be/stops/108101", "https://data.delijn.be/stops/108113"], ["https://data.delijn.be/stops/202776", "https://data.delijn.be/stops/202936"], ["https://data.delijn.be/stops/103095", "https://data.delijn.be/stops/105185"], ["https://data.delijn.be/stops/300778", "https://data.delijn.be/stops/302409"], ["https://data.delijn.be/stops/103221", "https://data.delijn.be/stops/104856"], ["https://data.delijn.be/stops/208212", "https://data.delijn.be/stops/208213"], ["https://data.delijn.be/stops/304805", "https://data.delijn.be/stops/304813"], ["https://data.delijn.be/stops/410004", "https://data.delijn.be/stops/410005"], ["https://data.delijn.be/stops/506089", "https://data.delijn.be/stops/506095"], ["https://data.delijn.be/stops/305090", "https://data.delijn.be/stops/305091"], ["https://data.delijn.be/stops/505855", "https://data.delijn.be/stops/509517"], ["https://data.delijn.be/stops/504264", "https://data.delijn.be/stops/509265"], ["https://data.delijn.be/stops/401618", "https://data.delijn.be/stops/308213"], ["https://data.delijn.be/stops/508445", "https://data.delijn.be/stops/508731"], ["https://data.delijn.be/stops/204090", "https://data.delijn.be/stops/205089"], ["https://data.delijn.be/stops/500053", "https://data.delijn.be/stops/507117"], ["https://data.delijn.be/stops/101573", "https://data.delijn.be/stops/106404"], ["https://data.delijn.be/stops/206927", "https://data.delijn.be/stops/207529"], ["https://data.delijn.be/stops/407902", "https://data.delijn.be/stops/407905"], ["https://data.delijn.be/stops/504201", "https://data.delijn.be/stops/505969"], ["https://data.delijn.be/stops/305254", "https://data.delijn.be/stops/305306"], ["https://data.delijn.be/stops/206318", "https://data.delijn.be/stops/207290"], ["https://data.delijn.be/stops/501439", "https://data.delijn.be/stops/501444"], ["https://data.delijn.be/stops/106374", "https://data.delijn.be/stops/106375"], ["https://data.delijn.be/stops/508016", "https://data.delijn.be/stops/508818"], ["https://data.delijn.be/stops/200231", "https://data.delijn.be/stops/203133"], ["https://data.delijn.be/stops/201403", "https://data.delijn.be/stops/202040"], ["https://data.delijn.be/stops/206621", "https://data.delijn.be/stops/206649"], ["https://data.delijn.be/stops/504444", "https://data.delijn.be/stops/509439"], ["https://data.delijn.be/stops/407594", "https://data.delijn.be/stops/409801"], ["https://data.delijn.be/stops/402692", "https://data.delijn.be/stops/306307"], ["https://data.delijn.be/stops/200173", "https://data.delijn.be/stops/201173"], ["https://data.delijn.be/stops/102927", "https://data.delijn.be/stops/103557"], ["https://data.delijn.be/stops/105296", "https://data.delijn.be/stops/109605"], ["https://data.delijn.be/stops/404794", "https://data.delijn.be/stops/404801"], ["https://data.delijn.be/stops/206811", "https://data.delijn.be/stops/207287"], ["https://data.delijn.be/stops/209290", "https://data.delijn.be/stops/209380"], ["https://data.delijn.be/stops/504145", "https://data.delijn.be/stops/505985"], ["https://data.delijn.be/stops/201964", "https://data.delijn.be/stops/206770"], ["https://data.delijn.be/stops/302070", "https://data.delijn.be/stops/305634"], ["https://data.delijn.be/stops/206731", "https://data.delijn.be/stops/206979"], ["https://data.delijn.be/stops/301308", "https://data.delijn.be/stops/301903"], ["https://data.delijn.be/stops/407944", "https://data.delijn.be/stops/408120"], ["https://data.delijn.be/stops/201125", "https://data.delijn.be/stops/210010"], ["https://data.delijn.be/stops/501344", "https://data.delijn.be/stops/501358"], ["https://data.delijn.be/stops/105745", "https://data.delijn.be/stops/105750"], ["https://data.delijn.be/stops/400730", "https://data.delijn.be/stops/406644"], ["https://data.delijn.be/stops/105059", "https://data.delijn.be/stops/105063"], ["https://data.delijn.be/stops/300349", "https://data.delijn.be/stops/300350"], ["https://data.delijn.be/stops/103637", "https://data.delijn.be/stops/107167"], ["https://data.delijn.be/stops/502917", "https://data.delijn.be/stops/507245"], ["https://data.delijn.be/stops/104817", "https://data.delijn.be/stops/109492"], ["https://data.delijn.be/stops/201023", "https://data.delijn.be/stops/201101"], ["https://data.delijn.be/stops/300695", "https://data.delijn.be/stops/300696"], ["https://data.delijn.be/stops/205748", "https://data.delijn.be/stops/205749"], ["https://data.delijn.be/stops/404004", "https://data.delijn.be/stops/410257"], ["https://data.delijn.be/stops/400862", "https://data.delijn.be/stops/400863"], ["https://data.delijn.be/stops/303057", "https://data.delijn.be/stops/306108"], ["https://data.delijn.be/stops/201609", "https://data.delijn.be/stops/203311"], ["https://data.delijn.be/stops/300082", "https://data.delijn.be/stops/300083"], ["https://data.delijn.be/stops/404146", "https://data.delijn.be/stops/404175"], ["https://data.delijn.be/stops/109265", "https://data.delijn.be/stops/407110"], ["https://data.delijn.be/stops/302345", "https://data.delijn.be/stops/306184"], ["https://data.delijn.be/stops/208474", "https://data.delijn.be/stops/209673"], ["https://data.delijn.be/stops/508139", "https://data.delijn.be/stops/508163"], ["https://data.delijn.be/stops/504772", "https://data.delijn.be/stops/509654"], ["https://data.delijn.be/stops/402799", "https://data.delijn.be/stops/405581"], ["https://data.delijn.be/stops/401311", "https://data.delijn.be/stops/406657"], ["https://data.delijn.be/stops/402736", "https://data.delijn.be/stops/402737"], ["https://data.delijn.be/stops/306670", "https://data.delijn.be/stops/306671"], ["https://data.delijn.be/stops/501441", "https://data.delijn.be/stops/506482"], ["https://data.delijn.be/stops/508116", "https://data.delijn.be/stops/508651"], ["https://data.delijn.be/stops/207561", "https://data.delijn.be/stops/216004"], ["https://data.delijn.be/stops/509147", "https://data.delijn.be/stops/509148"], ["https://data.delijn.be/stops/502425", "https://data.delijn.be/stops/502426"], ["https://data.delijn.be/stops/109068", "https://data.delijn.be/stops/109069"], ["https://data.delijn.be/stops/303717", "https://data.delijn.be/stops/303747"], ["https://data.delijn.be/stops/504447", "https://data.delijn.be/stops/505299"], ["https://data.delijn.be/stops/206294", "https://data.delijn.be/stops/207294"], ["https://data.delijn.be/stops/405592", "https://data.delijn.be/stops/408556"], ["https://data.delijn.be/stops/105114", "https://data.delijn.be/stops/105153"], ["https://data.delijn.be/stops/207663", "https://data.delijn.be/stops/208152"], ["https://data.delijn.be/stops/400656", "https://data.delijn.be/stops/400968"], ["https://data.delijn.be/stops/403946", "https://data.delijn.be/stops/403955"], ["https://data.delijn.be/stops/403458", "https://data.delijn.be/stops/403678"], ["https://data.delijn.be/stops/202080", "https://data.delijn.be/stops/203080"], ["https://data.delijn.be/stops/107028", "https://data.delijn.be/stops/107031"], ["https://data.delijn.be/stops/403373", "https://data.delijn.be/stops/410215"], ["https://data.delijn.be/stops/504036", "https://data.delijn.be/stops/509036"], ["https://data.delijn.be/stops/405486", "https://data.delijn.be/stops/409311"], ["https://data.delijn.be/stops/300022", "https://data.delijn.be/stops/307262"], ["https://data.delijn.be/stops/307352", "https://data.delijn.be/stops/307439"], ["https://data.delijn.be/stops/208166", "https://data.delijn.be/stops/209166"], ["https://data.delijn.be/stops/303042", "https://data.delijn.be/stops/304710"], ["https://data.delijn.be/stops/304994", "https://data.delijn.be/stops/305001"], ["https://data.delijn.be/stops/403142", "https://data.delijn.be/stops/403157"], ["https://data.delijn.be/stops/104118", "https://data.delijn.be/stops/104127"], ["https://data.delijn.be/stops/302929", "https://data.delijn.be/stops/304045"], ["https://data.delijn.be/stops/307568", "https://data.delijn.be/stops/307584"], ["https://data.delijn.be/stops/201555", "https://data.delijn.be/stops/201840"], ["https://data.delijn.be/stops/504031", "https://data.delijn.be/stops/505121"], ["https://data.delijn.be/stops/204833", "https://data.delijn.be/stops/205073"], ["https://data.delijn.be/stops/208287", "https://data.delijn.be/stops/209287"], ["https://data.delijn.be/stops/204060", "https://data.delijn.be/stops/205722"], ["https://data.delijn.be/stops/200759", "https://data.delijn.be/stops/209302"], ["https://data.delijn.be/stops/300753", "https://data.delijn.be/stops/300786"], ["https://data.delijn.be/stops/506058", "https://data.delijn.be/stops/506491"], ["https://data.delijn.be/stops/400299", "https://data.delijn.be/stops/400364"], ["https://data.delijn.be/stops/401272", "https://data.delijn.be/stops/401275"], ["https://data.delijn.be/stops/405225", "https://data.delijn.be/stops/405226"], ["https://data.delijn.be/stops/106223", "https://data.delijn.be/stops/106224"], ["https://data.delijn.be/stops/307144", "https://data.delijn.be/stops/307145"], ["https://data.delijn.be/stops/201105", "https://data.delijn.be/stops/203944"], ["https://data.delijn.be/stops/202489", "https://data.delijn.be/stops/203930"], ["https://data.delijn.be/stops/409856", "https://data.delijn.be/stops/409857"], ["https://data.delijn.be/stops/401359", "https://data.delijn.be/stops/406067"], ["https://data.delijn.be/stops/505027", "https://data.delijn.be/stops/507011"], ["https://data.delijn.be/stops/305098", "https://data.delijn.be/stops/305101"], ["https://data.delijn.be/stops/406018", "https://data.delijn.be/stops/406019"], ["https://data.delijn.be/stops/200276", "https://data.delijn.be/stops/203541"], ["https://data.delijn.be/stops/204287", "https://data.delijn.be/stops/204823"], ["https://data.delijn.be/stops/405788", "https://data.delijn.be/stops/405789"], ["https://data.delijn.be/stops/505297", "https://data.delijn.be/stops/508629"], ["https://data.delijn.be/stops/402160", "https://data.delijn.be/stops/402267"], ["https://data.delijn.be/stops/206645", "https://data.delijn.be/stops/207488"], ["https://data.delijn.be/stops/208806", "https://data.delijn.be/stops/209213"], ["https://data.delijn.be/stops/101355", "https://data.delijn.be/stops/101540"], ["https://data.delijn.be/stops/204293", "https://data.delijn.be/stops/205293"], ["https://data.delijn.be/stops/504305", "https://data.delijn.be/stops/504310"], ["https://data.delijn.be/stops/204672", "https://data.delijn.be/stops/205672"], ["https://data.delijn.be/stops/503899", "https://data.delijn.be/stops/508899"], ["https://data.delijn.be/stops/103999", "https://data.delijn.be/stops/106888"], ["https://data.delijn.be/stops/300117", "https://data.delijn.be/stops/306856"], ["https://data.delijn.be/stops/408373", "https://data.delijn.be/stops/410157"], ["https://data.delijn.be/stops/302263", "https://data.delijn.be/stops/302963"], ["https://data.delijn.be/stops/209683", "https://data.delijn.be/stops/209684"], ["https://data.delijn.be/stops/204043", "https://data.delijn.be/stops/205200"], ["https://data.delijn.be/stops/403145", "https://data.delijn.be/stops/410272"], ["https://data.delijn.be/stops/402526", "https://data.delijn.be/stops/402537"], ["https://data.delijn.be/stops/103683", "https://data.delijn.be/stops/106315"], ["https://data.delijn.be/stops/303496", "https://data.delijn.be/stops/303497"], ["https://data.delijn.be/stops/207936", "https://data.delijn.be/stops/209157"], ["https://data.delijn.be/stops/102081", "https://data.delijn.be/stops/102082"], ["https://data.delijn.be/stops/502058", "https://data.delijn.be/stops/507027"], ["https://data.delijn.be/stops/503794", "https://data.delijn.be/stops/508794"], ["https://data.delijn.be/stops/206257", "https://data.delijn.be/stops/207256"], ["https://data.delijn.be/stops/102634", "https://data.delijn.be/stops/104939"], ["https://data.delijn.be/stops/106615", "https://data.delijn.be/stops/106616"], ["https://data.delijn.be/stops/503232", "https://data.delijn.be/stops/503417"], ["https://data.delijn.be/stops/105823", "https://data.delijn.be/stops/107414"], ["https://data.delijn.be/stops/202778", "https://data.delijn.be/stops/202779"], ["https://data.delijn.be/stops/108439", "https://data.delijn.be/stops/108441"], ["https://data.delijn.be/stops/105109", "https://data.delijn.be/stops/107814"], ["https://data.delijn.be/stops/203121", "https://data.delijn.be/stops/204598"], ["https://data.delijn.be/stops/303865", "https://data.delijn.be/stops/305923"], ["https://data.delijn.be/stops/102412", "https://data.delijn.be/stops/103354"], ["https://data.delijn.be/stops/106981", "https://data.delijn.be/stops/107266"], ["https://data.delijn.be/stops/302158", "https://data.delijn.be/stops/308103"], ["https://data.delijn.be/stops/301343", "https://data.delijn.be/stops/301344"], ["https://data.delijn.be/stops/106990", "https://data.delijn.be/stops/106992"], ["https://data.delijn.be/stops/105278", "https://data.delijn.be/stops/105298"], ["https://data.delijn.be/stops/307565", "https://data.delijn.be/stops/307567"], ["https://data.delijn.be/stops/302613", "https://data.delijn.be/stops/302628"], ["https://data.delijn.be/stops/102381", "https://data.delijn.be/stops/106374"], ["https://data.delijn.be/stops/301864", "https://data.delijn.be/stops/306989"], ["https://data.delijn.be/stops/105926", "https://data.delijn.be/stops/107268"], ["https://data.delijn.be/stops/501513", "https://data.delijn.be/stops/506136"], ["https://data.delijn.be/stops/503447", "https://data.delijn.be/stops/509951"], ["https://data.delijn.be/stops/300405", "https://data.delijn.be/stops/307001"], ["https://data.delijn.be/stops/208420", "https://data.delijn.be/stops/208745"], ["https://data.delijn.be/stops/410207", "https://data.delijn.be/stops/410208"], ["https://data.delijn.be/stops/300378", "https://data.delijn.be/stops/307725"], ["https://data.delijn.be/stops/503136", "https://data.delijn.be/stops/508122"], ["https://data.delijn.be/stops/207755", "https://data.delijn.be/stops/207765"], ["https://data.delijn.be/stops/504075", "https://data.delijn.be/stops/509071"], ["https://data.delijn.be/stops/305946", "https://data.delijn.be/stops/308421"], ["https://data.delijn.be/stops/204115", "https://data.delijn.be/stops/205115"], ["https://data.delijn.be/stops/300578", "https://data.delijn.be/stops/300593"], ["https://data.delijn.be/stops/301303", "https://data.delijn.be/stops/306149"], ["https://data.delijn.be/stops/301905", "https://data.delijn.be/stops/306118"], ["https://data.delijn.be/stops/406232", "https://data.delijn.be/stops/406236"], ["https://data.delijn.be/stops/208164", "https://data.delijn.be/stops/209164"], ["https://data.delijn.be/stops/204518", "https://data.delijn.be/stops/205045"], ["https://data.delijn.be/stops/106909", "https://data.delijn.be/stops/107258"], ["https://data.delijn.be/stops/203702", "https://data.delijn.be/stops/203703"], ["https://data.delijn.be/stops/401198", "https://data.delijn.be/stops/401199"], ["https://data.delijn.be/stops/101045", "https://data.delijn.be/stops/105125"], ["https://data.delijn.be/stops/302353", "https://data.delijn.be/stops/306195"], ["https://data.delijn.be/stops/303201", "https://data.delijn.be/stops/305552"], ["https://data.delijn.be/stops/108154", "https://data.delijn.be/stops/108157"], ["https://data.delijn.be/stops/207969", "https://data.delijn.be/stops/301442"], ["https://data.delijn.be/stops/108385", "https://data.delijn.be/stops/108447"], ["https://data.delijn.be/stops/403197", "https://data.delijn.be/stops/403465"], ["https://data.delijn.be/stops/105163", "https://data.delijn.be/stops/107503"], ["https://data.delijn.be/stops/503837", "https://data.delijn.be/stops/508837"], ["https://data.delijn.be/stops/504267", "https://data.delijn.be/stops/509015"], ["https://data.delijn.be/stops/102248", "https://data.delijn.be/stops/102864"], ["https://data.delijn.be/stops/406660", "https://data.delijn.be/stops/406688"], ["https://data.delijn.be/stops/104685", "https://data.delijn.be/stops/104690"], ["https://data.delijn.be/stops/410086", "https://data.delijn.be/stops/410087"], ["https://data.delijn.be/stops/500023", "https://data.delijn.be/stops/506402"], ["https://data.delijn.be/stops/208130", "https://data.delijn.be/stops/209130"], ["https://data.delijn.be/stops/502732", "https://data.delijn.be/stops/507110"], ["https://data.delijn.be/stops/206177", "https://data.delijn.be/stops/207178"], ["https://data.delijn.be/stops/202831", "https://data.delijn.be/stops/203831"], ["https://data.delijn.be/stops/207680", "https://data.delijn.be/stops/209087"], ["https://data.delijn.be/stops/101679", "https://data.delijn.be/stops/101683"], ["https://data.delijn.be/stops/301701", "https://data.delijn.be/stops/303704"], ["https://data.delijn.be/stops/101616", "https://data.delijn.be/stops/101730"], ["https://data.delijn.be/stops/503996", "https://data.delijn.be/stops/508542"], ["https://data.delijn.be/stops/409264", "https://data.delijn.be/stops/409308"], ["https://data.delijn.be/stops/102254", "https://data.delijn.be/stops/109307"], ["https://data.delijn.be/stops/308463", "https://data.delijn.be/stops/308693"], ["https://data.delijn.be/stops/201830", "https://data.delijn.be/stops/201834"], ["https://data.delijn.be/stops/408452", "https://data.delijn.be/stops/410218"], ["https://data.delijn.be/stops/300155", "https://data.delijn.be/stops/300157"], ["https://data.delijn.be/stops/409330", "https://data.delijn.be/stops/409339"], ["https://data.delijn.be/stops/407843", "https://data.delijn.be/stops/407845"], ["https://data.delijn.be/stops/504136", "https://data.delijn.be/stops/504148"], ["https://data.delijn.be/stops/202711", "https://data.delijn.be/stops/202728"], ["https://data.delijn.be/stops/301279", "https://data.delijn.be/stops/304859"], ["https://data.delijn.be/stops/302291", "https://data.delijn.be/stops/307812"], ["https://data.delijn.be/stops/501386", "https://data.delijn.be/stops/506493"], ["https://data.delijn.be/stops/204175", "https://data.delijn.be/stops/204241"], ["https://data.delijn.be/stops/503692", "https://data.delijn.be/stops/503735"], ["https://data.delijn.be/stops/207336", "https://data.delijn.be/stops/207697"], ["https://data.delijn.be/stops/400256", "https://data.delijn.be/stops/402989"], ["https://data.delijn.be/stops/301889", "https://data.delijn.be/stops/301890"], ["https://data.delijn.be/stops/109070", "https://data.delijn.be/stops/306859"], ["https://data.delijn.be/stops/102717", "https://data.delijn.be/stops/105028"], ["https://data.delijn.be/stops/208078", "https://data.delijn.be/stops/209077"], ["https://data.delijn.be/stops/503950", "https://data.delijn.be/stops/508950"], ["https://data.delijn.be/stops/407212", "https://data.delijn.be/stops/407216"], ["https://data.delijn.be/stops/208128", "https://data.delijn.be/stops/208817"], ["https://data.delijn.be/stops/400700", "https://data.delijn.be/stops/400704"], ["https://data.delijn.be/stops/200267", "https://data.delijn.be/stops/200445"], ["https://data.delijn.be/stops/103747", "https://data.delijn.be/stops/105792"], ["https://data.delijn.be/stops/503735", "https://data.delijn.be/stops/508691"], ["https://data.delijn.be/stops/206435", "https://data.delijn.be/stops/209689"], ["https://data.delijn.be/stops/504285", "https://data.delijn.be/stops/504616"], ["https://data.delijn.be/stops/209736", "https://data.delijn.be/stops/210066"], ["https://data.delijn.be/stops/405915", "https://data.delijn.be/stops/405970"], ["https://data.delijn.be/stops/107568", "https://data.delijn.be/stops/107741"], ["https://data.delijn.be/stops/307561", "https://data.delijn.be/stops/307762"], ["https://data.delijn.be/stops/403814", "https://data.delijn.be/stops/403815"], ["https://data.delijn.be/stops/307950", "https://data.delijn.be/stops/307951"], ["https://data.delijn.be/stops/208257", "https://data.delijn.be/stops/208258"], ["https://data.delijn.be/stops/107603", "https://data.delijn.be/stops/107604"], ["https://data.delijn.be/stops/508071", "https://data.delijn.be/stops/508075"], ["https://data.delijn.be/stops/205388", "https://data.delijn.be/stops/205764"], ["https://data.delijn.be/stops/206585", "https://data.delijn.be/stops/217019"], ["https://data.delijn.be/stops/406320", "https://data.delijn.be/stops/406331"], ["https://data.delijn.be/stops/304458", "https://data.delijn.be/stops/307030"], ["https://data.delijn.be/stops/200661", "https://data.delijn.be/stops/200666"], ["https://data.delijn.be/stops/300944", "https://data.delijn.be/stops/300946"], ["https://data.delijn.be/stops/300084", "https://data.delijn.be/stops/306850"], ["https://data.delijn.be/stops/403129", "https://data.delijn.be/stops/403352"], ["https://data.delijn.be/stops/509163", "https://data.delijn.be/stops/509529"], ["https://data.delijn.be/stops/501522", "https://data.delijn.be/stops/506323"], ["https://data.delijn.be/stops/208184", "https://data.delijn.be/stops/208759"], ["https://data.delijn.be/stops/303443", "https://data.delijn.be/stops/303449"], ["https://data.delijn.be/stops/301960", "https://data.delijn.be/stops/301962"], ["https://data.delijn.be/stops/101686", "https://data.delijn.be/stops/101687"], ["https://data.delijn.be/stops/303207", "https://data.delijn.be/stops/303208"], ["https://data.delijn.be/stops/101050", "https://data.delijn.be/stops/108550"], ["https://data.delijn.be/stops/201386", "https://data.delijn.be/stops/202008"], ["https://data.delijn.be/stops/505963", "https://data.delijn.be/stops/507952"], ["https://data.delijn.be/stops/200126", "https://data.delijn.be/stops/201000"], ["https://data.delijn.be/stops/102494", "https://data.delijn.be/stops/400427"], ["https://data.delijn.be/stops/206258", "https://data.delijn.be/stops/206918"], ["https://data.delijn.be/stops/104007", "https://data.delijn.be/stops/104008"], ["https://data.delijn.be/stops/502721", "https://data.delijn.be/stops/502735"], ["https://data.delijn.be/stops/405025", "https://data.delijn.be/stops/405079"], ["https://data.delijn.be/stops/505983", "https://data.delijn.be/stops/509610"], ["https://data.delijn.be/stops/503454", "https://data.delijn.be/stops/508412"], ["https://data.delijn.be/stops/209444", "https://data.delijn.be/stops/209516"], ["https://data.delijn.be/stops/106337", "https://data.delijn.be/stops/106340"], ["https://data.delijn.be/stops/103254", "https://data.delijn.be/stops/104388"], ["https://data.delijn.be/stops/307429", "https://data.delijn.be/stops/308591"], ["https://data.delijn.be/stops/405890", "https://data.delijn.be/stops/409769"], ["https://data.delijn.be/stops/303305", "https://data.delijn.be/stops/303310"], ["https://data.delijn.be/stops/201477", "https://data.delijn.be/stops/208963"], ["https://data.delijn.be/stops/503200", "https://data.delijn.be/stops/508189"], ["https://data.delijn.be/stops/408822", "https://data.delijn.be/stops/408825"], ["https://data.delijn.be/stops/108636", "https://data.delijn.be/stops/109661"], ["https://data.delijn.be/stops/201916", "https://data.delijn.be/stops/207426"], ["https://data.delijn.be/stops/206560", "https://data.delijn.be/stops/208953"], ["https://data.delijn.be/stops/106007", "https://data.delijn.be/stops/106011"], ["https://data.delijn.be/stops/108438", "https://data.delijn.be/stops/108466"], ["https://data.delijn.be/stops/405525", "https://data.delijn.be/stops/405527"], ["https://data.delijn.be/stops/209622", "https://data.delijn.be/stops/209623"], ["https://data.delijn.be/stops/501206", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/501034", "https://data.delijn.be/stops/506034"], ["https://data.delijn.be/stops/208758", "https://data.delijn.be/stops/208759"], ["https://data.delijn.be/stops/407448", "https://data.delijn.be/stops/407449"], ["https://data.delijn.be/stops/207352", "https://data.delijn.be/stops/207353"], ["https://data.delijn.be/stops/502616", "https://data.delijn.be/stops/502620"], ["https://data.delijn.be/stops/202311", "https://data.delijn.be/stops/202312"], ["https://data.delijn.be/stops/301896", "https://data.delijn.be/stops/304281"], ["https://data.delijn.be/stops/405935", "https://data.delijn.be/stops/405967"], ["https://data.delijn.be/stops/501369", "https://data.delijn.be/stops/506493"], ["https://data.delijn.be/stops/503593", "https://data.delijn.be/stops/503596"], ["https://data.delijn.be/stops/300373", "https://data.delijn.be/stops/300403"], ["https://data.delijn.be/stops/401766", "https://data.delijn.be/stops/401769"], ["https://data.delijn.be/stops/307441", "https://data.delijn.be/stops/307444"], ["https://data.delijn.be/stops/303810", "https://data.delijn.be/stops/303818"], ["https://data.delijn.be/stops/403619", "https://data.delijn.be/stops/403630"], ["https://data.delijn.be/stops/208408", "https://data.delijn.be/stops/209408"], ["https://data.delijn.be/stops/402078", "https://data.delijn.be/stops/402356"], ["https://data.delijn.be/stops/403224", "https://data.delijn.be/stops/403225"], ["https://data.delijn.be/stops/208473", "https://data.delijn.be/stops/209474"], ["https://data.delijn.be/stops/208223", "https://data.delijn.be/stops/209219"], ["https://data.delijn.be/stops/305004", "https://data.delijn.be/stops/305005"], ["https://data.delijn.be/stops/302631", "https://data.delijn.be/stops/302643"], ["https://data.delijn.be/stops/503408", "https://data.delijn.be/stops/508441"], ["https://data.delijn.be/stops/208514", "https://data.delijn.be/stops/209464"], ["https://data.delijn.be/stops/405799", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/102417", "https://data.delijn.be/stops/102418"], ["https://data.delijn.be/stops/406204", "https://data.delijn.be/stops/406449"], ["https://data.delijn.be/stops/403822", "https://data.delijn.be/stops/406889"], ["https://data.delijn.be/stops/104693", "https://data.delijn.be/stops/107353"], ["https://data.delijn.be/stops/204675", "https://data.delijn.be/stops/205262"], ["https://data.delijn.be/stops/202780", "https://data.delijn.be/stops/203770"], ["https://data.delijn.be/stops/301339", "https://data.delijn.be/stops/301343"], ["https://data.delijn.be/stops/405345", "https://data.delijn.be/stops/405347"], ["https://data.delijn.be/stops/504463", "https://data.delijn.be/stops/504574"], ["https://data.delijn.be/stops/200010", "https://data.delijn.be/stops/211020"], ["https://data.delijn.be/stops/402219", "https://data.delijn.be/stops/402297"], ["https://data.delijn.be/stops/101808", "https://data.delijn.be/stops/108378"], ["https://data.delijn.be/stops/509136", "https://data.delijn.be/stops/509143"], ["https://data.delijn.be/stops/403140", "https://data.delijn.be/stops/403141"], ["https://data.delijn.be/stops/502549", "https://data.delijn.be/stops/507655"], ["https://data.delijn.be/stops/106626", "https://data.delijn.be/stops/106630"], ["https://data.delijn.be/stops/201304", "https://data.delijn.be/stops/201305"], ["https://data.delijn.be/stops/504369", "https://data.delijn.be/stops/507173"], ["https://data.delijn.be/stops/207546", "https://data.delijn.be/stops/207547"], ["https://data.delijn.be/stops/408810", "https://data.delijn.be/stops/408811"], ["https://data.delijn.be/stops/107220", "https://data.delijn.be/stops/107221"], ["https://data.delijn.be/stops/308446", "https://data.delijn.be/stops/308447"], ["https://data.delijn.be/stops/300840", "https://data.delijn.be/stops/304566"], ["https://data.delijn.be/stops/503302", "https://data.delijn.be/stops/504859"], ["https://data.delijn.be/stops/304494", "https://data.delijn.be/stops/307467"], ["https://data.delijn.be/stops/102842", "https://data.delijn.be/stops/106566"], ["https://data.delijn.be/stops/300473", "https://data.delijn.be/stops/302669"], ["https://data.delijn.be/stops/301533", "https://data.delijn.be/stops/301542"], ["https://data.delijn.be/stops/204597", "https://data.delijn.be/stops/204832"], ["https://data.delijn.be/stops/207149", "https://data.delijn.be/stops/207150"], ["https://data.delijn.be/stops/106676", "https://data.delijn.be/stops/106677"], ["https://data.delijn.be/stops/201847", "https://data.delijn.be/stops/210020"], ["https://data.delijn.be/stops/105554", "https://data.delijn.be/stops/105557"], ["https://data.delijn.be/stops/200825", "https://data.delijn.be/stops/202299"], ["https://data.delijn.be/stops/107076", "https://data.delijn.be/stops/107078"], ["https://data.delijn.be/stops/206391", "https://data.delijn.be/stops/206392"], ["https://data.delijn.be/stops/303744", "https://data.delijn.be/stops/303757"], ["https://data.delijn.be/stops/203102", "https://data.delijn.be/stops/203103"], ["https://data.delijn.be/stops/400642", "https://data.delijn.be/stops/400907"], ["https://data.delijn.be/stops/402637", "https://data.delijn.be/stops/402641"], ["https://data.delijn.be/stops/107018", "https://data.delijn.be/stops/107021"], ["https://data.delijn.be/stops/204677", "https://data.delijn.be/stops/205338"], ["https://data.delijn.be/stops/501224", "https://data.delijn.be/stops/506105"], ["https://data.delijn.be/stops/206774", "https://data.delijn.be/stops/217001"], ["https://data.delijn.be/stops/504601", "https://data.delijn.be/stops/509605"], ["https://data.delijn.be/stops/105999", "https://data.delijn.be/stops/106001"], ["https://data.delijn.be/stops/203155", "https://data.delijn.be/stops/203158"], ["https://data.delijn.be/stops/308450", "https://data.delijn.be/stops/308513"], ["https://data.delijn.be/stops/501149", "https://data.delijn.be/stops/501156"], ["https://data.delijn.be/stops/403261", "https://data.delijn.be/stops/403845"], ["https://data.delijn.be/stops/201864", "https://data.delijn.be/stops/203031"], ["https://data.delijn.be/stops/301323", "https://data.delijn.be/stops/306656"], ["https://data.delijn.be/stops/104844", "https://data.delijn.be/stops/105746"], ["https://data.delijn.be/stops/508172", "https://data.delijn.be/stops/508177"], ["https://data.delijn.be/stops/503431", "https://data.delijn.be/stops/508441"], ["https://data.delijn.be/stops/200075", "https://data.delijn.be/stops/201076"], ["https://data.delijn.be/stops/300415", "https://data.delijn.be/stops/300419"], ["https://data.delijn.be/stops/402387", "https://data.delijn.be/stops/402489"], ["https://data.delijn.be/stops/501497", "https://data.delijn.be/stops/506375"], ["https://data.delijn.be/stops/206885", "https://data.delijn.be/stops/207352"], ["https://data.delijn.be/stops/200670", "https://data.delijn.be/stops/201561"], ["https://data.delijn.be/stops/107486", "https://data.delijn.be/stops/107509"], ["https://data.delijn.be/stops/402942", "https://data.delijn.be/stops/301271"], ["https://data.delijn.be/stops/208628", "https://data.delijn.be/stops/209628"], ["https://data.delijn.be/stops/504380", "https://data.delijn.be/stops/509383"], ["https://data.delijn.be/stops/403954", "https://data.delijn.be/stops/403955"], ["https://data.delijn.be/stops/502565", "https://data.delijn.be/stops/507582"], ["https://data.delijn.be/stops/409762", "https://data.delijn.be/stops/409766"], ["https://data.delijn.be/stops/403299", "https://data.delijn.be/stops/403545"], ["https://data.delijn.be/stops/503594", "https://data.delijn.be/stops/508593"], ["https://data.delijn.be/stops/101666", "https://data.delijn.be/stops/107064"], ["https://data.delijn.be/stops/305151", "https://data.delijn.be/stops/308904"], ["https://data.delijn.be/stops/504109", "https://data.delijn.be/stops/504470"], ["https://data.delijn.be/stops/102218", "https://data.delijn.be/stops/102221"], ["https://data.delijn.be/stops/102422", "https://data.delijn.be/stops/106996"], ["https://data.delijn.be/stops/102836", "https://data.delijn.be/stops/102839"], ["https://data.delijn.be/stops/502618", "https://data.delijn.be/stops/507618"], ["https://data.delijn.be/stops/104364", "https://data.delijn.be/stops/204258"], ["https://data.delijn.be/stops/305979", "https://data.delijn.be/stops/305981"], ["https://data.delijn.be/stops/101067", "https://data.delijn.be/stops/109095"], ["https://data.delijn.be/stops/208369", "https://data.delijn.be/stops/209387"], ["https://data.delijn.be/stops/406202", "https://data.delijn.be/stops/410270"], ["https://data.delijn.be/stops/402574", "https://data.delijn.be/stops/402583"], ["https://data.delijn.be/stops/501398", "https://data.delijn.be/stops/506401"], ["https://data.delijn.be/stops/406369", "https://data.delijn.be/stops/410395"], ["https://data.delijn.be/stops/410143", "https://data.delijn.be/stops/410144"], ["https://data.delijn.be/stops/103047", "https://data.delijn.be/stops/103048"], ["https://data.delijn.be/stops/403196", "https://data.delijn.be/stops/403197"], ["https://data.delijn.be/stops/300392", "https://data.delijn.be/stops/307279"], ["https://data.delijn.be/stops/109361", "https://data.delijn.be/stops/109364"], ["https://data.delijn.be/stops/403153", "https://data.delijn.be/stops/410275"], ["https://data.delijn.be/stops/405200", "https://data.delijn.be/stops/405289"], ["https://data.delijn.be/stops/503278", "https://data.delijn.be/stops/505953"], ["https://data.delijn.be/stops/504588", "https://data.delijn.be/stops/509153"], ["https://data.delijn.be/stops/202706", "https://data.delijn.be/stops/203705"], ["https://data.delijn.be/stops/302219", "https://data.delijn.be/stops/302230"], ["https://data.delijn.be/stops/103094", "https://data.delijn.be/stops/109273"], ["https://data.delijn.be/stops/206786", "https://data.delijn.be/stops/206788"], ["https://data.delijn.be/stops/504156", "https://data.delijn.be/stops/504191"], ["https://data.delijn.be/stops/502811", "https://data.delijn.be/stops/505594"], ["https://data.delijn.be/stops/105926", "https://data.delijn.be/stops/109722"], ["https://data.delijn.be/stops/503098", "https://data.delijn.be/stops/503800"], ["https://data.delijn.be/stops/201885", "https://data.delijn.be/stops/203285"], ["https://data.delijn.be/stops/206451", "https://data.delijn.be/stops/207494"], ["https://data.delijn.be/stops/304481", "https://data.delijn.be/stops/307674"], ["https://data.delijn.be/stops/410342", "https://data.delijn.be/stops/410343"], ["https://data.delijn.be/stops/304393", "https://data.delijn.be/stops/307404"], ["https://data.delijn.be/stops/202181", "https://data.delijn.be/stops/202183"], ["https://data.delijn.be/stops/405024", "https://data.delijn.be/stops/405106"], ["https://data.delijn.be/stops/405171", "https://data.delijn.be/stops/405175"], ["https://data.delijn.be/stops/502617", "https://data.delijn.be/stops/507052"], ["https://data.delijn.be/stops/503830", "https://data.delijn.be/stops/503832"], ["https://data.delijn.be/stops/200713", "https://data.delijn.be/stops/203599"], ["https://data.delijn.be/stops/503230", "https://data.delijn.be/stops/503263"], ["https://data.delijn.be/stops/102743", "https://data.delijn.be/stops/107402"], ["https://data.delijn.be/stops/204436", "https://data.delijn.be/stops/204437"], ["https://data.delijn.be/stops/501047", "https://data.delijn.be/stops/507730"], ["https://data.delijn.be/stops/101345", "https://data.delijn.be/stops/104889"], ["https://data.delijn.be/stops/301384", "https://data.delijn.be/stops/304797"], ["https://data.delijn.be/stops/208029", "https://data.delijn.be/stops/208037"], ["https://data.delijn.be/stops/305829", "https://data.delijn.be/stops/305830"], ["https://data.delijn.be/stops/105288", "https://data.delijn.be/stops/105289"], ["https://data.delijn.be/stops/403588", "https://data.delijn.be/stops/404263"], ["https://data.delijn.be/stops/206183", "https://data.delijn.be/stops/207183"], ["https://data.delijn.be/stops/301365", "https://data.delijn.be/stops/304800"], ["https://data.delijn.be/stops/200633", "https://data.delijn.be/stops/201633"], ["https://data.delijn.be/stops/306612", "https://data.delijn.be/stops/306628"], ["https://data.delijn.be/stops/209423", "https://data.delijn.be/stops/209466"], ["https://data.delijn.be/stops/306943", "https://data.delijn.be/stops/306947"], ["https://data.delijn.be/stops/300442", "https://data.delijn.be/stops/307093"], ["https://data.delijn.be/stops/507230", "https://data.delijn.be/stops/507822"], ["https://data.delijn.be/stops/308508", "https://data.delijn.be/stops/308691"], ["https://data.delijn.be/stops/200548", "https://data.delijn.be/stops/211089"], ["https://data.delijn.be/stops/300180", "https://data.delijn.be/stops/300184"], ["https://data.delijn.be/stops/505362", "https://data.delijn.be/stops/505842"], ["https://data.delijn.be/stops/302998", "https://data.delijn.be/stops/303004"], ["https://data.delijn.be/stops/401509", "https://data.delijn.be/stops/402034"], ["https://data.delijn.be/stops/104681", "https://data.delijn.be/stops/109600"], ["https://data.delijn.be/stops/304796", "https://data.delijn.be/stops/306688"], ["https://data.delijn.be/stops/407519", "https://data.delijn.be/stops/408267"], ["https://data.delijn.be/stops/305483", "https://data.delijn.be/stops/308550"], ["https://data.delijn.be/stops/206571", "https://data.delijn.be/stops/208953"], ["https://data.delijn.be/stops/208498", "https://data.delijn.be/stops/209470"], ["https://data.delijn.be/stops/104502", "https://data.delijn.be/stops/204563"], ["https://data.delijn.be/stops/504047", "https://data.delijn.be/stops/509047"], ["https://data.delijn.be/stops/307544", "https://data.delijn.be/stops/307755"], ["https://data.delijn.be/stops/206222", "https://data.delijn.be/stops/207809"], ["https://data.delijn.be/stops/304548", "https://data.delijn.be/stops/304665"], ["https://data.delijn.be/stops/406122", "https://data.delijn.be/stops/406125"], ["https://data.delijn.be/stops/504517", "https://data.delijn.be/stops/509516"], ["https://data.delijn.be/stops/203499", "https://data.delijn.be/stops/204092"], ["https://data.delijn.be/stops/104598", "https://data.delijn.be/stops/107426"], ["https://data.delijn.be/stops/304036", "https://data.delijn.be/stops/304076"], ["https://data.delijn.be/stops/202057", "https://data.delijn.be/stops/210073"], ["https://data.delijn.be/stops/206014", "https://data.delijn.be/stops/206889"], ["https://data.delijn.be/stops/105834", "https://data.delijn.be/stops/105836"], ["https://data.delijn.be/stops/304823", "https://data.delijn.be/stops/304824"], ["https://data.delijn.be/stops/209374", "https://data.delijn.be/stops/209454"], ["https://data.delijn.be/stops/407241", "https://data.delijn.be/stops/407490"], ["https://data.delijn.be/stops/109967", "https://data.delijn.be/stops/109973"], ["https://data.delijn.be/stops/406228", "https://data.delijn.be/stops/406264"], ["https://data.delijn.be/stops/206089", "https://data.delijn.be/stops/207094"], ["https://data.delijn.be/stops/503238", "https://data.delijn.be/stops/508261"], ["https://data.delijn.be/stops/300744", "https://data.delijn.be/stops/300758"], ["https://data.delijn.be/stops/101429", "https://data.delijn.be/stops/101431"], ["https://data.delijn.be/stops/103292", "https://data.delijn.be/stops/105502"], ["https://data.delijn.be/stops/303259", "https://data.delijn.be/stops/306338"], ["https://data.delijn.be/stops/208547", "https://data.delijn.be/stops/209547"], ["https://data.delijn.be/stops/505276", "https://data.delijn.be/stops/508331"], ["https://data.delijn.be/stops/404320", "https://data.delijn.be/stops/404352"], ["https://data.delijn.be/stops/206315", "https://data.delijn.be/stops/207315"], ["https://data.delijn.be/stops/204527", "https://data.delijn.be/stops/204730"], ["https://data.delijn.be/stops/401437", "https://data.delijn.be/stops/410109"], ["https://data.delijn.be/stops/206287", "https://data.delijn.be/stops/207286"], ["https://data.delijn.be/stops/200836", "https://data.delijn.be/stops/203303"], ["https://data.delijn.be/stops/303059", "https://data.delijn.be/stops/303071"], ["https://data.delijn.be/stops/404092", "https://data.delijn.be/stops/404093"], ["https://data.delijn.be/stops/204216", "https://data.delijn.be/stops/204217"], ["https://data.delijn.be/stops/201089", "https://data.delijn.be/stops/202746"], ["https://data.delijn.be/stops/200711", "https://data.delijn.be/stops/202602"], ["https://data.delijn.be/stops/502659", "https://data.delijn.be/stops/507659"], ["https://data.delijn.be/stops/400288", "https://data.delijn.be/stops/400359"], ["https://data.delijn.be/stops/303227", "https://data.delijn.be/stops/304184"], ["https://data.delijn.be/stops/406224", "https://data.delijn.be/stops/406225"], ["https://data.delijn.be/stops/403603", "https://data.delijn.be/stops/403609"], ["https://data.delijn.be/stops/101487", "https://data.delijn.be/stops/108744"], ["https://data.delijn.be/stops/107223", "https://data.delijn.be/stops/107225"], ["https://data.delijn.be/stops/501247", "https://data.delijn.be/stops/506254"], ["https://data.delijn.be/stops/210020", "https://data.delijn.be/stops/210021"], ["https://data.delijn.be/stops/102190", "https://data.delijn.be/stops/102195"], ["https://data.delijn.be/stops/207138", "https://data.delijn.be/stops/207139"], ["https://data.delijn.be/stops/407855", "https://data.delijn.be/stops/407856"], ["https://data.delijn.be/stops/505772", "https://data.delijn.be/stops/507675"], ["https://data.delijn.be/stops/300171", "https://data.delijn.be/stops/300174"], ["https://data.delijn.be/stops/502631", "https://data.delijn.be/stops/507443"], ["https://data.delijn.be/stops/504521", "https://data.delijn.be/stops/509519"], ["https://data.delijn.be/stops/208841", "https://data.delijn.be/stops/209583"], ["https://data.delijn.be/stops/107590", "https://data.delijn.be/stops/108820"], ["https://data.delijn.be/stops/502748", "https://data.delijn.be/stops/507612"], ["https://data.delijn.be/stops/503487", "https://data.delijn.be/stops/508487"], ["https://data.delijn.be/stops/403737", "https://data.delijn.be/stops/403740"], ["https://data.delijn.be/stops/107837", "https://data.delijn.be/stops/109652"], ["https://data.delijn.be/stops/101393", "https://data.delijn.be/stops/106516"], ["https://data.delijn.be/stops/400133", "https://data.delijn.be/stops/409173"], ["https://data.delijn.be/stops/202959", "https://data.delijn.be/stops/202960"], ["https://data.delijn.be/stops/204211", "https://data.delijn.be/stops/206807"], ["https://data.delijn.be/stops/101220", "https://data.delijn.be/stops/102594"], ["https://data.delijn.be/stops/306195", "https://data.delijn.be/stops/307854"], ["https://data.delijn.be/stops/203094", "https://data.delijn.be/stops/203097"], ["https://data.delijn.be/stops/401514", "https://data.delijn.be/stops/409193"], ["https://data.delijn.be/stops/503006", "https://data.delijn.be/stops/508006"], ["https://data.delijn.be/stops/307185", "https://data.delijn.be/stops/307187"], ["https://data.delijn.be/stops/208017", "https://data.delijn.be/stops/208022"], ["https://data.delijn.be/stops/102473", "https://data.delijn.be/stops/400299"], ["https://data.delijn.be/stops/306610", "https://data.delijn.be/stops/306613"], ["https://data.delijn.be/stops/408616", "https://data.delijn.be/stops/408617"], ["https://data.delijn.be/stops/505082", "https://data.delijn.be/stops/507813"], ["https://data.delijn.be/stops/208488", "https://data.delijn.be/stops/209488"], ["https://data.delijn.be/stops/200690", "https://data.delijn.be/stops/201683"], ["https://data.delijn.be/stops/204200", "https://data.delijn.be/stops/204201"], ["https://data.delijn.be/stops/104907", "https://data.delijn.be/stops/107849"], ["https://data.delijn.be/stops/103977", "https://data.delijn.be/stops/109010"], ["https://data.delijn.be/stops/105667", "https://data.delijn.be/stops/105668"], ["https://data.delijn.be/stops/101841", "https://data.delijn.be/stops/109398"], ["https://data.delijn.be/stops/405614", "https://data.delijn.be/stops/405615"], ["https://data.delijn.be/stops/210065", "https://data.delijn.be/stops/211065"], ["https://data.delijn.be/stops/101837", "https://data.delijn.be/stops/108198"], ["https://data.delijn.be/stops/109253", "https://data.delijn.be/stops/109254"], ["https://data.delijn.be/stops/305460", "https://data.delijn.be/stops/306555"], ["https://data.delijn.be/stops/208103", "https://data.delijn.be/stops/209104"], ["https://data.delijn.be/stops/406086", "https://data.delijn.be/stops/406090"], ["https://data.delijn.be/stops/205531", "https://data.delijn.be/stops/205537"], ["https://data.delijn.be/stops/208787", "https://data.delijn.be/stops/209167"], ["https://data.delijn.be/stops/101186", "https://data.delijn.be/stops/102849"], ["https://data.delijn.be/stops/406914", "https://data.delijn.be/stops/406927"], ["https://data.delijn.be/stops/401582", "https://data.delijn.be/stops/401583"], ["https://data.delijn.be/stops/502281", "https://data.delijn.be/stops/507281"], ["https://data.delijn.be/stops/401867", "https://data.delijn.be/stops/406282"], ["https://data.delijn.be/stops/403938", "https://data.delijn.be/stops/403984"], ["https://data.delijn.be/stops/402405", "https://data.delijn.be/stops/409600"], ["https://data.delijn.be/stops/301555", "https://data.delijn.be/stops/301558"], ["https://data.delijn.be/stops/200030", "https://data.delijn.be/stops/201075"], ["https://data.delijn.be/stops/402134", "https://data.delijn.be/stops/402143"], ["https://data.delijn.be/stops/406939", "https://data.delijn.be/stops/407325"], ["https://data.delijn.be/stops/303723", "https://data.delijn.be/stops/303734"], ["https://data.delijn.be/stops/208765", "https://data.delijn.be/stops/219015"], ["https://data.delijn.be/stops/500119", "https://data.delijn.be/stops/507466"], ["https://data.delijn.be/stops/305132", "https://data.delijn.be/stops/305214"], ["https://data.delijn.be/stops/206238", "https://data.delijn.be/stops/207813"], ["https://data.delijn.be/stops/303762", "https://data.delijn.be/stops/303763"], ["https://data.delijn.be/stops/503457", "https://data.delijn.be/stops/508459"], ["https://data.delijn.be/stops/501158", "https://data.delijn.be/stops/509836"], ["https://data.delijn.be/stops/501039", "https://data.delijn.be/stops/501488"], ["https://data.delijn.be/stops/504041", "https://data.delijn.be/stops/508916"], ["https://data.delijn.be/stops/303970", "https://data.delijn.be/stops/303972"], ["https://data.delijn.be/stops/206397", "https://data.delijn.be/stops/207281"], ["https://data.delijn.be/stops/302688", "https://data.delijn.be/stops/302696"], ["https://data.delijn.be/stops/302749", "https://data.delijn.be/stops/308911"], ["https://data.delijn.be/stops/306648", "https://data.delijn.be/stops/306649"], ["https://data.delijn.be/stops/301704", "https://data.delijn.be/stops/301727"], ["https://data.delijn.be/stops/300797", "https://data.delijn.be/stops/300805"], ["https://data.delijn.be/stops/204666", "https://data.delijn.be/stops/205666"], ["https://data.delijn.be/stops/101832", "https://data.delijn.be/stops/108181"], ["https://data.delijn.be/stops/207772", "https://data.delijn.be/stops/208740"], ["https://data.delijn.be/stops/301702", "https://data.delijn.be/stops/303711"], ["https://data.delijn.be/stops/307544", "https://data.delijn.be/stops/307545"], ["https://data.delijn.be/stops/503143", "https://data.delijn.be/stops/508143"], ["https://data.delijn.be/stops/106562", "https://data.delijn.be/stops/106563"], ["https://data.delijn.be/stops/209285", "https://data.delijn.be/stops/219018"], ["https://data.delijn.be/stops/101371", "https://data.delijn.be/stops/101372"], ["https://data.delijn.be/stops/206525", "https://data.delijn.be/stops/207525"], ["https://data.delijn.be/stops/505924", "https://data.delijn.be/stops/509827"], ["https://data.delijn.be/stops/206650", "https://data.delijn.be/stops/207650"], ["https://data.delijn.be/stops/105258", "https://data.delijn.be/stops/109975"], ["https://data.delijn.be/stops/503567", "https://data.delijn.be/stops/504362"], ["https://data.delijn.be/stops/504375", "https://data.delijn.be/stops/508561"], ["https://data.delijn.be/stops/209782", "https://data.delijn.be/stops/209784"], ["https://data.delijn.be/stops/401588", "https://data.delijn.be/stops/402116"], ["https://data.delijn.be/stops/303995", "https://data.delijn.be/stops/306291"], ["https://data.delijn.be/stops/302646", "https://data.delijn.be/stops/302656"], ["https://data.delijn.be/stops/102125", "https://data.delijn.be/stops/105760"], ["https://data.delijn.be/stops/101990", "https://data.delijn.be/stops/102425"], ["https://data.delijn.be/stops/208368", "https://data.delijn.be/stops/209368"], ["https://data.delijn.be/stops/504664", "https://data.delijn.be/stops/509018"], ["https://data.delijn.be/stops/302461", "https://data.delijn.be/stops/308600"], ["https://data.delijn.be/stops/304536", "https://data.delijn.be/stops/306207"], ["https://data.delijn.be/stops/102546", "https://data.delijn.be/stops/405004"], ["https://data.delijn.be/stops/102198", "https://data.delijn.be/stops/105264"], ["https://data.delijn.be/stops/102591", "https://data.delijn.be/stops/102592"], ["https://data.delijn.be/stops/108799", "https://data.delijn.be/stops/108801"], ["https://data.delijn.be/stops/103789", "https://data.delijn.be/stops/109143"], ["https://data.delijn.be/stops/501349", "https://data.delijn.be/stops/506349"], ["https://data.delijn.be/stops/501528", "https://data.delijn.be/stops/506199"], ["https://data.delijn.be/stops/106872", "https://data.delijn.be/stops/106877"], ["https://data.delijn.be/stops/300319", "https://data.delijn.be/stops/300321"], ["https://data.delijn.be/stops/301030", "https://data.delijn.be/stops/301035"], ["https://data.delijn.be/stops/505558", "https://data.delijn.be/stops/507921"], ["https://data.delijn.be/stops/109642", "https://data.delijn.be/stops/109643"], ["https://data.delijn.be/stops/303745", "https://data.delijn.be/stops/303756"], ["https://data.delijn.be/stops/308474", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/506412", "https://data.delijn.be/stops/509840"], ["https://data.delijn.be/stops/406947", "https://data.delijn.be/stops/406979"], ["https://data.delijn.be/stops/408338", "https://data.delijn.be/stops/408383"], ["https://data.delijn.be/stops/206631", "https://data.delijn.be/stops/209569"], ["https://data.delijn.be/stops/206439", "https://data.delijn.be/stops/207439"], ["https://data.delijn.be/stops/407140", "https://data.delijn.be/stops/407330"], ["https://data.delijn.be/stops/408004", "https://data.delijn.be/stops/408283"], ["https://data.delijn.be/stops/208799", "https://data.delijn.be/stops/209353"], ["https://data.delijn.be/stops/502410", "https://data.delijn.be/stops/507410"], ["https://data.delijn.be/stops/200926", "https://data.delijn.be/stops/201697"], ["https://data.delijn.be/stops/200515", "https://data.delijn.be/stops/201173"], ["https://data.delijn.be/stops/101375", "https://data.delijn.be/stops/102894"], ["https://data.delijn.be/stops/404559", "https://data.delijn.be/stops/405330"], ["https://data.delijn.be/stops/204458", "https://data.delijn.be/stops/205459"], ["https://data.delijn.be/stops/206580", "https://data.delijn.be/stops/207209"], ["https://data.delijn.be/stops/201153", "https://data.delijn.be/stops/202359"], ["https://data.delijn.be/stops/205659", "https://data.delijn.be/stops/205680"], ["https://data.delijn.be/stops/304301", "https://data.delijn.be/stops/306826"], ["https://data.delijn.be/stops/200935", "https://data.delijn.be/stops/200940"], ["https://data.delijn.be/stops/106906", "https://data.delijn.be/stops/107250"], ["https://data.delijn.be/stops/502508", "https://data.delijn.be/stops/507535"], ["https://data.delijn.be/stops/201765", "https://data.delijn.be/stops/209847"], ["https://data.delijn.be/stops/305380", "https://data.delijn.be/stops/305422"], ["https://data.delijn.be/stops/101379", "https://data.delijn.be/stops/103716"], ["https://data.delijn.be/stops/107554", "https://data.delijn.be/stops/108948"], ["https://data.delijn.be/stops/507443", "https://data.delijn.be/stops/507449"], ["https://data.delijn.be/stops/101222", "https://data.delijn.be/stops/102649"], ["https://data.delijn.be/stops/108283", "https://data.delijn.be/stops/109361"], ["https://data.delijn.be/stops/201120", "https://data.delijn.be/stops/201125"], ["https://data.delijn.be/stops/108282", "https://data.delijn.be/stops/109310"], ["https://data.delijn.be/stops/101726", "https://data.delijn.be/stops/106805"], ["https://data.delijn.be/stops/102442", "https://data.delijn.be/stops/102596"], ["https://data.delijn.be/stops/105698", "https://data.delijn.be/stops/105701"], ["https://data.delijn.be/stops/200204", "https://data.delijn.be/stops/201253"], ["https://data.delijn.be/stops/101921", "https://data.delijn.be/stops/109895"], ["https://data.delijn.be/stops/405231", "https://data.delijn.be/stops/408369"], ["https://data.delijn.be/stops/204412", "https://data.delijn.be/stops/204427"], ["https://data.delijn.be/stops/206720", "https://data.delijn.be/stops/207657"], ["https://data.delijn.be/stops/405428", "https://data.delijn.be/stops/302852"], ["https://data.delijn.be/stops/304266", "https://data.delijn.be/stops/304268"], ["https://data.delijn.be/stops/204167", "https://data.delijn.be/stops/204593"], ["https://data.delijn.be/stops/206391", "https://data.delijn.be/stops/207391"], ["https://data.delijn.be/stops/408080", "https://data.delijn.be/stops/305696"], ["https://data.delijn.be/stops/204101", "https://data.delijn.be/stops/206395"], ["https://data.delijn.be/stops/204386", "https://data.delijn.be/stops/205387"], ["https://data.delijn.be/stops/500120", "https://data.delijn.be/stops/507462"], ["https://data.delijn.be/stops/104483", "https://data.delijn.be/stops/104484"], ["https://data.delijn.be/stops/304512", "https://data.delijn.be/stops/306205"], ["https://data.delijn.be/stops/207301", "https://data.delijn.be/stops/207303"], ["https://data.delijn.be/stops/300148", "https://data.delijn.be/stops/306830"], ["https://data.delijn.be/stops/202206", "https://data.delijn.be/stops/202207"], ["https://data.delijn.be/stops/403155", "https://data.delijn.be/stops/407585"], ["https://data.delijn.be/stops/505792", "https://data.delijn.be/stops/508088"], ["https://data.delijn.be/stops/403464", "https://data.delijn.be/stops/403494"], ["https://data.delijn.be/stops/103715", "https://data.delijn.be/stops/104135"], ["https://data.delijn.be/stops/202218", "https://data.delijn.be/stops/204795"], ["https://data.delijn.be/stops/105340", "https://data.delijn.be/stops/108980"], ["https://data.delijn.be/stops/303536", "https://data.delijn.be/stops/305481"], ["https://data.delijn.be/stops/401781", "https://data.delijn.be/stops/406124"], ["https://data.delijn.be/stops/104776", "https://data.delijn.be/stops/104781"], ["https://data.delijn.be/stops/503432", "https://data.delijn.be/stops/508393"], ["https://data.delijn.be/stops/400078", "https://data.delijn.be/stops/400104"], ["https://data.delijn.be/stops/103718", "https://data.delijn.be/stops/103767"], ["https://data.delijn.be/stops/300977", "https://data.delijn.be/stops/301074"], ["https://data.delijn.be/stops/504055", "https://data.delijn.be/stops/504057"], ["https://data.delijn.be/stops/508071", "https://data.delijn.be/stops/508945"], ["https://data.delijn.be/stops/102398", "https://data.delijn.be/stops/106218"], ["https://data.delijn.be/stops/403134", "https://data.delijn.be/stops/410146"], ["https://data.delijn.be/stops/201014", "https://data.delijn.be/stops/201016"], ["https://data.delijn.be/stops/400171", "https://data.delijn.be/stops/400931"], ["https://data.delijn.be/stops/101687", "https://data.delijn.be/stops/101692"], ["https://data.delijn.be/stops/209231", "https://data.delijn.be/stops/209796"], ["https://data.delijn.be/stops/200555", "https://data.delijn.be/stops/201555"], ["https://data.delijn.be/stops/201482", "https://data.delijn.be/stops/202895"], ["https://data.delijn.be/stops/102540", "https://data.delijn.be/stops/104346"], ["https://data.delijn.be/stops/201871", "https://data.delijn.be/stops/203278"], ["https://data.delijn.be/stops/109171", "https://data.delijn.be/stops/109236"], ["https://data.delijn.be/stops/304579", "https://data.delijn.be/stops/305578"], ["https://data.delijn.be/stops/101474", "https://data.delijn.be/stops/109173"], ["https://data.delijn.be/stops/503355", "https://data.delijn.be/stops/505135"], ["https://data.delijn.be/stops/508055", "https://data.delijn.be/stops/508155"], ["https://data.delijn.be/stops/403474", "https://data.delijn.be/stops/410219"], ["https://data.delijn.be/stops/304361", "https://data.delijn.be/stops/304362"], ["https://data.delijn.be/stops/405300", "https://data.delijn.be/stops/405301"], ["https://data.delijn.be/stops/304490", "https://data.delijn.be/stops/304491"], ["https://data.delijn.be/stops/101492", "https://data.delijn.be/stops/108326"], ["https://data.delijn.be/stops/204017", "https://data.delijn.be/stops/204315"], ["https://data.delijn.be/stops/302673", "https://data.delijn.be/stops/308298"], ["https://data.delijn.be/stops/101161", "https://data.delijn.be/stops/105974"], ["https://data.delijn.be/stops/404558", "https://data.delijn.be/stops/406681"], ["https://data.delijn.be/stops/401845", "https://data.delijn.be/stops/401853"], ["https://data.delijn.be/stops/106989", "https://data.delijn.be/stops/108807"], ["https://data.delijn.be/stops/405826", "https://data.delijn.be/stops/405827"], ["https://data.delijn.be/stops/301648", "https://data.delijn.be/stops/301655"], ["https://data.delijn.be/stops/201736", "https://data.delijn.be/stops/203786"], ["https://data.delijn.be/stops/504943", "https://data.delijn.be/stops/505526"], ["https://data.delijn.be/stops/108708", "https://data.delijn.be/stops/108855"], ["https://data.delijn.be/stops/306692", "https://data.delijn.be/stops/308925"], ["https://data.delijn.be/stops/404903", "https://data.delijn.be/stops/406722"], ["https://data.delijn.be/stops/206909", "https://data.delijn.be/stops/207908"], ["https://data.delijn.be/stops/105135", "https://data.delijn.be/stops/105586"], ["https://data.delijn.be/stops/306290", "https://data.delijn.be/stops/306291"], ["https://data.delijn.be/stops/205302", "https://data.delijn.be/stops/205303"], ["https://data.delijn.be/stops/303507", "https://data.delijn.be/stops/307133"], ["https://data.delijn.be/stops/300739", "https://data.delijn.be/stops/300740"], ["https://data.delijn.be/stops/204152", "https://data.delijn.be/stops/205151"], ["https://data.delijn.be/stops/204404", "https://data.delijn.be/stops/204405"], ["https://data.delijn.be/stops/501179", "https://data.delijn.be/stops/509932"], ["https://data.delijn.be/stops/305735", "https://data.delijn.be/stops/305746"], ["https://data.delijn.be/stops/407675", "https://data.delijn.be/stops/407680"], ["https://data.delijn.be/stops/503542", "https://data.delijn.be/stops/508580"], ["https://data.delijn.be/stops/200229", "https://data.delijn.be/stops/203354"], ["https://data.delijn.be/stops/307540", "https://data.delijn.be/stops/307577"], ["https://data.delijn.be/stops/200081", "https://data.delijn.be/stops/201282"], ["https://data.delijn.be/stops/208796", "https://data.delijn.be/stops/209796"], ["https://data.delijn.be/stops/107739", "https://data.delijn.be/stops/107740"], ["https://data.delijn.be/stops/302290", "https://data.delijn.be/stops/302291"], ["https://data.delijn.be/stops/101580", "https://data.delijn.be/stops/102585"], ["https://data.delijn.be/stops/305846", "https://data.delijn.be/stops/305895"], ["https://data.delijn.be/stops/101517", "https://data.delijn.be/stops/109024"], ["https://data.delijn.be/stops/204236", "https://data.delijn.be/stops/204238"], ["https://data.delijn.be/stops/404674", "https://data.delijn.be/stops/404675"], ["https://data.delijn.be/stops/106371", "https://data.delijn.be/stops/106372"], ["https://data.delijn.be/stops/308845", "https://data.delijn.be/stops/308846"], ["https://data.delijn.be/stops/410012", "https://data.delijn.be/stops/410013"], ["https://data.delijn.be/stops/407861", "https://data.delijn.be/stops/301846"], ["https://data.delijn.be/stops/403397", "https://data.delijn.be/stops/403428"], ["https://data.delijn.be/stops/200418", "https://data.delijn.be/stops/208843"], ["https://data.delijn.be/stops/402348", "https://data.delijn.be/stops/402349"], ["https://data.delijn.be/stops/206281", "https://data.delijn.be/stops/206282"], ["https://data.delijn.be/stops/204184", "https://data.delijn.be/stops/205184"], ["https://data.delijn.be/stops/408688", "https://data.delijn.be/stops/408689"], ["https://data.delijn.be/stops/101786", "https://data.delijn.be/stops/101787"], ["https://data.delijn.be/stops/105397", "https://data.delijn.be/stops/106823"], ["https://data.delijn.be/stops/302061", "https://data.delijn.be/stops/302075"], ["https://data.delijn.be/stops/104732", "https://data.delijn.be/stops/204258"], ["https://data.delijn.be/stops/208021", "https://data.delijn.be/stops/209021"], ["https://data.delijn.be/stops/302939", "https://data.delijn.be/stops/307349"], ["https://data.delijn.be/stops/400602", "https://data.delijn.be/stops/400603"], ["https://data.delijn.be/stops/504755", "https://data.delijn.be/stops/508871"], ["https://data.delijn.be/stops/302658", "https://data.delijn.be/stops/303251"], ["https://data.delijn.be/stops/104043", "https://data.delijn.be/stops/108404"], ["https://data.delijn.be/stops/302052", "https://data.delijn.be/stops/304914"], ["https://data.delijn.be/stops/302762", "https://data.delijn.be/stops/306194"], ["https://data.delijn.be/stops/207722", "https://data.delijn.be/stops/207920"], ["https://data.delijn.be/stops/502108", "https://data.delijn.be/stops/502145"], ["https://data.delijn.be/stops/303972", "https://data.delijn.be/stops/307859"], ["https://data.delijn.be/stops/503719", "https://data.delijn.be/stops/509968"], ["https://data.delijn.be/stops/502319", "https://data.delijn.be/stops/507319"], ["https://data.delijn.be/stops/304895", "https://data.delijn.be/stops/304896"], ["https://data.delijn.be/stops/403077", "https://data.delijn.be/stops/409317"], ["https://data.delijn.be/stops/107564", "https://data.delijn.be/stops/107566"], ["https://data.delijn.be/stops/507945", "https://data.delijn.be/stops/508847"], ["https://data.delijn.be/stops/407497", "https://data.delijn.be/stops/407871"], ["https://data.delijn.be/stops/404899", "https://data.delijn.be/stops/404949"], ["https://data.delijn.be/stops/202126", "https://data.delijn.be/stops/203127"], ["https://data.delijn.be/stops/105019", "https://data.delijn.be/stops/105080"], ["https://data.delijn.be/stops/401165", "https://data.delijn.be/stops/409058"], ["https://data.delijn.be/stops/402220", "https://data.delijn.be/stops/402249"], ["https://data.delijn.be/stops/401600", "https://data.delijn.be/stops/409723"], ["https://data.delijn.be/stops/307596", "https://data.delijn.be/stops/307606"], ["https://data.delijn.be/stops/301353", "https://data.delijn.be/stops/304528"], ["https://data.delijn.be/stops/505682", "https://data.delijn.be/stops/507301"], ["https://data.delijn.be/stops/204579", "https://data.delijn.be/stops/204591"], ["https://data.delijn.be/stops/106749", "https://data.delijn.be/stops/109622"], ["https://data.delijn.be/stops/300390", "https://data.delijn.be/stops/300412"], ["https://data.delijn.be/stops/102014", "https://data.delijn.be/stops/105984"], ["https://data.delijn.be/stops/300660", "https://data.delijn.be/stops/301839"], ["https://data.delijn.be/stops/401654", "https://data.delijn.be/stops/307092"], ["https://data.delijn.be/stops/200189", "https://data.delijn.be/stops/200190"], ["https://data.delijn.be/stops/206300", "https://data.delijn.be/stops/207470"], ["https://data.delijn.be/stops/302765", "https://data.delijn.be/stops/304703"], ["https://data.delijn.be/stops/406416", "https://data.delijn.be/stops/406443"], ["https://data.delijn.be/stops/300479", "https://data.delijn.be/stops/300491"], ["https://data.delijn.be/stops/505669", "https://data.delijn.be/stops/507204"], ["https://data.delijn.be/stops/207663", "https://data.delijn.be/stops/207666"], ["https://data.delijn.be/stops/201914", "https://data.delijn.be/stops/202945"], ["https://data.delijn.be/stops/200402", "https://data.delijn.be/stops/203997"], ["https://data.delijn.be/stops/504584", "https://data.delijn.be/stops/505543"], ["https://data.delijn.be/stops/400511", "https://data.delijn.be/stops/400512"], ["https://data.delijn.be/stops/203945", "https://data.delijn.be/stops/216009"], ["https://data.delijn.be/stops/302465", "https://data.delijn.be/stops/302487"], ["https://data.delijn.be/stops/102382", "https://data.delijn.be/stops/105607"], ["https://data.delijn.be/stops/103982", "https://data.delijn.be/stops/109949"], ["https://data.delijn.be/stops/407882", "https://data.delijn.be/stops/408443"], ["https://data.delijn.be/stops/400502", "https://data.delijn.be/stops/400509"], ["https://data.delijn.be/stops/305180", "https://data.delijn.be/stops/307872"], ["https://data.delijn.be/stops/201124", "https://data.delijn.be/stops/201125"], ["https://data.delijn.be/stops/204631", "https://data.delijn.be/stops/205528"], ["https://data.delijn.be/stops/207620", "https://data.delijn.be/stops/207849"], ["https://data.delijn.be/stops/501746", "https://data.delijn.be/stops/506070"], ["https://data.delijn.be/stops/206023", "https://data.delijn.be/stops/207075"], ["https://data.delijn.be/stops/505158", "https://data.delijn.be/stops/508838"], ["https://data.delijn.be/stops/200219", "https://data.delijn.be/stops/201307"], ["https://data.delijn.be/stops/300019", "https://data.delijn.be/stops/301318"], ["https://data.delijn.be/stops/308267", "https://data.delijn.be/stops/308287"], ["https://data.delijn.be/stops/305060", "https://data.delijn.be/stops/306923"], ["https://data.delijn.be/stops/106241", "https://data.delijn.be/stops/106242"], ["https://data.delijn.be/stops/202704", "https://data.delijn.be/stops/203704"], ["https://data.delijn.be/stops/504578", "https://data.delijn.be/stops/504689"], ["https://data.delijn.be/stops/108964", "https://data.delijn.be/stops/108966"], ["https://data.delijn.be/stops/104519", "https://data.delijn.be/stops/107932"], ["https://data.delijn.be/stops/504134", "https://data.delijn.be/stops/509134"], ["https://data.delijn.be/stops/407513", "https://data.delijn.be/stops/407517"], ["https://data.delijn.be/stops/504510", "https://data.delijn.be/stops/509510"], ["https://data.delijn.be/stops/402694", "https://data.delijn.be/stops/301482"], ["https://data.delijn.be/stops/503164", "https://data.delijn.be/stops/503175"], ["https://data.delijn.be/stops/201584", "https://data.delijn.be/stops/201590"], ["https://data.delijn.be/stops/200102", "https://data.delijn.be/stops/203005"], ["https://data.delijn.be/stops/504763", "https://data.delijn.be/stops/504765"], ["https://data.delijn.be/stops/104637", "https://data.delijn.be/stops/108038"], ["https://data.delijn.be/stops/201871", "https://data.delijn.be/stops/203421"], ["https://data.delijn.be/stops/502490", "https://data.delijn.be/stops/507740"], ["https://data.delijn.be/stops/201964", "https://data.delijn.be/stops/209037"], ["https://data.delijn.be/stops/105151", "https://data.delijn.be/stops/105152"], ["https://data.delijn.be/stops/305694", "https://data.delijn.be/stops/305695"], ["https://data.delijn.be/stops/208815", "https://data.delijn.be/stops/209851"], ["https://data.delijn.be/stops/403595", "https://data.delijn.be/stops/405669"], ["https://data.delijn.be/stops/202214", "https://data.delijn.be/stops/203214"], ["https://data.delijn.be/stops/503900", "https://data.delijn.be/stops/508900"], ["https://data.delijn.be/stops/303642", "https://data.delijn.be/stops/304529"], ["https://data.delijn.be/stops/505016", "https://data.delijn.be/stops/505021"], ["https://data.delijn.be/stops/502412", "https://data.delijn.be/stops/507668"], ["https://data.delijn.be/stops/502192", "https://data.delijn.be/stops/502196"], ["https://data.delijn.be/stops/205460", "https://data.delijn.be/stops/215017"], ["https://data.delijn.be/stops/102519", "https://data.delijn.be/stops/109657"], ["https://data.delijn.be/stops/106556", "https://data.delijn.be/stops/106559"], ["https://data.delijn.be/stops/204371", "https://data.delijn.be/stops/204372"], ["https://data.delijn.be/stops/205228", "https://data.delijn.be/stops/205231"], ["https://data.delijn.be/stops/505078", "https://data.delijn.be/stops/507469"], ["https://data.delijn.be/stops/502038", "https://data.delijn.be/stops/502648"], ["https://data.delijn.be/stops/504218", "https://data.delijn.be/stops/509065"], ["https://data.delijn.be/stops/509003", "https://data.delijn.be/stops/509451"], ["https://data.delijn.be/stops/509825", "https://data.delijn.be/stops/509827"], ["https://data.delijn.be/stops/305050", "https://data.delijn.be/stops/305051"], ["https://data.delijn.be/stops/506356", "https://data.delijn.be/stops/506588"], ["https://data.delijn.be/stops/407117", "https://data.delijn.be/stops/407277"], ["https://data.delijn.be/stops/505224", "https://data.delijn.be/stops/505983"], ["https://data.delijn.be/stops/106287", "https://data.delijn.be/stops/106304"], ["https://data.delijn.be/stops/102153", "https://data.delijn.be/stops/108730"], ["https://data.delijn.be/stops/105278", "https://data.delijn.be/stops/105279"], ["https://data.delijn.be/stops/305817", "https://data.delijn.be/stops/305818"], ["https://data.delijn.be/stops/505954", "https://data.delijn.be/stops/506000"], ["https://data.delijn.be/stops/107409", "https://data.delijn.be/stops/107597"], ["https://data.delijn.be/stops/400778", "https://data.delijn.be/stops/409616"], ["https://data.delijn.be/stops/400713", "https://data.delijn.be/stops/409516"], ["https://data.delijn.be/stops/502435", "https://data.delijn.be/stops/507427"], ["https://data.delijn.be/stops/103027", "https://data.delijn.be/stops/104468"], ["https://data.delijn.be/stops/101656", "https://data.delijn.be/stops/107853"], ["https://data.delijn.be/stops/304135", "https://data.delijn.be/stops/304159"], ["https://data.delijn.be/stops/502340", "https://data.delijn.be/stops/502348"], ["https://data.delijn.be/stops/103499", "https://data.delijn.be/stops/106212"], ["https://data.delijn.be/stops/402533", "https://data.delijn.be/stops/402539"], ["https://data.delijn.be/stops/106478", "https://data.delijn.be/stops/106481"], ["https://data.delijn.be/stops/304758", "https://data.delijn.be/stops/305285"], ["https://data.delijn.be/stops/404254", "https://data.delijn.be/stops/404315"], ["https://data.delijn.be/stops/106889", "https://data.delijn.be/stops/107221"], ["https://data.delijn.be/stops/407233", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/408611", "https://data.delijn.be/stops/408699"], ["https://data.delijn.be/stops/403310", "https://data.delijn.be/stops/403344"], ["https://data.delijn.be/stops/403210", "https://data.delijn.be/stops/403214"], ["https://data.delijn.be/stops/409221", "https://data.delijn.be/stops/409224"], ["https://data.delijn.be/stops/508170", "https://data.delijn.be/stops/508239"], ["https://data.delijn.be/stops/407026", "https://data.delijn.be/stops/407040"], ["https://data.delijn.be/stops/202120", "https://data.delijn.be/stops/202637"], ["https://data.delijn.be/stops/301742", "https://data.delijn.be/stops/301798"], ["https://data.delijn.be/stops/205143", "https://data.delijn.be/stops/205789"], ["https://data.delijn.be/stops/109311", "https://data.delijn.be/stops/109356"], ["https://data.delijn.be/stops/104773", "https://data.delijn.be/stops/108156"], ["https://data.delijn.be/stops/208217", "https://data.delijn.be/stops/209217"], ["https://data.delijn.be/stops/502456", "https://data.delijn.be/stops/505508"], ["https://data.delijn.be/stops/505154", "https://data.delijn.be/stops/507073"], ["https://data.delijn.be/stops/505977", "https://data.delijn.be/stops/509389"], ["https://data.delijn.be/stops/104114", "https://data.delijn.be/stops/107878"], ["https://data.delijn.be/stops/200437", "https://data.delijn.be/stops/201436"], ["https://data.delijn.be/stops/406925", "https://data.delijn.be/stops/406948"], ["https://data.delijn.be/stops/503927", "https://data.delijn.be/stops/508931"], ["https://data.delijn.be/stops/208509", "https://data.delijn.be/stops/209509"], ["https://data.delijn.be/stops/109354", "https://data.delijn.be/stops/307438"], ["https://data.delijn.be/stops/108996", "https://data.delijn.be/stops/108999"], ["https://data.delijn.be/stops/403602", "https://data.delijn.be/stops/403643"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/106506"], ["https://data.delijn.be/stops/306900", "https://data.delijn.be/stops/308124"], ["https://data.delijn.be/stops/102058", "https://data.delijn.be/stops/104847"], ["https://data.delijn.be/stops/202868", "https://data.delijn.be/stops/203867"], ["https://data.delijn.be/stops/202971", "https://data.delijn.be/stops/203970"], ["https://data.delijn.be/stops/200902", "https://data.delijn.be/stops/200946"], ["https://data.delijn.be/stops/501244", "https://data.delijn.be/stops/504371"], ["https://data.delijn.be/stops/507216", "https://data.delijn.be/stops/507583"], ["https://data.delijn.be/stops/301131", "https://data.delijn.be/stops/301132"], ["https://data.delijn.be/stops/302567", "https://data.delijn.be/stops/304916"], ["https://data.delijn.be/stops/504991", "https://data.delijn.be/stops/508844"], ["https://data.delijn.be/stops/303024", "https://data.delijn.be/stops/303072"], ["https://data.delijn.be/stops/404224", "https://data.delijn.be/stops/404230"], ["https://data.delijn.be/stops/407773", "https://data.delijn.be/stops/304359"], ["https://data.delijn.be/stops/502579", "https://data.delijn.be/stops/507114"], ["https://data.delijn.be/stops/403793", "https://data.delijn.be/stops/403811"], ["https://data.delijn.be/stops/102581", "https://data.delijn.be/stops/102582"], ["https://data.delijn.be/stops/303994", "https://data.delijn.be/stops/307015"], ["https://data.delijn.be/stops/101595", "https://data.delijn.be/stops/107065"], ["https://data.delijn.be/stops/200420", "https://data.delijn.be/stops/201452"], ["https://data.delijn.be/stops/204035", "https://data.delijn.be/stops/205034"], ["https://data.delijn.be/stops/201836", "https://data.delijn.be/stops/203318"], ["https://data.delijn.be/stops/405263", "https://data.delijn.be/stops/405268"], ["https://data.delijn.be/stops/301333", "https://data.delijn.be/stops/301907"], ["https://data.delijn.be/stops/303116", "https://data.delijn.be/stops/304221"], ["https://data.delijn.be/stops/207779", "https://data.delijn.be/stops/207781"], ["https://data.delijn.be/stops/503420", "https://data.delijn.be/stops/503431"], ["https://data.delijn.be/stops/303750", "https://data.delijn.be/stops/303751"], ["https://data.delijn.be/stops/300007", "https://data.delijn.be/stops/300009"], ["https://data.delijn.be/stops/103151", "https://data.delijn.be/stops/103152"], ["https://data.delijn.be/stops/408294", "https://data.delijn.be/stops/308194"], ["https://data.delijn.be/stops/404808", "https://data.delijn.be/stops/404813"], ["https://data.delijn.be/stops/103681", "https://data.delijn.be/stops/104515"], ["https://data.delijn.be/stops/206647", "https://data.delijn.be/stops/207647"], ["https://data.delijn.be/stops/402121", "https://data.delijn.be/stops/402257"], ["https://data.delijn.be/stops/302733", "https://data.delijn.be/stops/302734"], ["https://data.delijn.be/stops/409443", "https://data.delijn.be/stops/409444"], ["https://data.delijn.be/stops/408878", "https://data.delijn.be/stops/408900"], ["https://data.delijn.be/stops/401084", "https://data.delijn.be/stops/401085"], ["https://data.delijn.be/stops/406265", "https://data.delijn.be/stops/406296"], ["https://data.delijn.be/stops/402506", "https://data.delijn.be/stops/402547"], ["https://data.delijn.be/stops/503395", "https://data.delijn.be/stops/509774"], ["https://data.delijn.be/stops/502170", "https://data.delijn.be/stops/502171"], ["https://data.delijn.be/stops/405306", "https://data.delijn.be/stops/407307"], ["https://data.delijn.be/stops/109603", "https://data.delijn.be/stops/109612"], ["https://data.delijn.be/stops/406035", "https://data.delijn.be/stops/407915"], ["https://data.delijn.be/stops/301299", "https://data.delijn.be/stops/307941"], ["https://data.delijn.be/stops/206394", "https://data.delijn.be/stops/207394"], ["https://data.delijn.be/stops/302182", "https://data.delijn.be/stops/307108"], ["https://data.delijn.be/stops/504132", "https://data.delijn.be/stops/504746"], ["https://data.delijn.be/stops/302065", "https://data.delijn.be/stops/302097"], ["https://data.delijn.be/stops/208116", "https://data.delijn.be/stops/209336"], ["https://data.delijn.be/stops/204613", "https://data.delijn.be/stops/204637"], ["https://data.delijn.be/stops/204610", "https://data.delijn.be/stops/205610"], ["https://data.delijn.be/stops/302926", "https://data.delijn.be/stops/302927"], ["https://data.delijn.be/stops/509497", "https://data.delijn.be/stops/509504"], ["https://data.delijn.be/stops/109179", "https://data.delijn.be/stops/109227"], ["https://data.delijn.be/stops/403929", "https://data.delijn.be/stops/405937"], ["https://data.delijn.be/stops/106101", "https://data.delijn.be/stops/106120"], ["https://data.delijn.be/stops/105325", "https://data.delijn.be/stops/205608"], ["https://data.delijn.be/stops/303815", "https://data.delijn.be/stops/303816"], ["https://data.delijn.be/stops/107083", "https://data.delijn.be/stops/107084"], ["https://data.delijn.be/stops/307490", "https://data.delijn.be/stops/307491"], ["https://data.delijn.be/stops/503153", "https://data.delijn.be/stops/505425"], ["https://data.delijn.be/stops/207753", "https://data.delijn.be/stops/207795"], ["https://data.delijn.be/stops/106034", "https://data.delijn.be/stops/106292"], ["https://data.delijn.be/stops/305171", "https://data.delijn.be/stops/305214"], ["https://data.delijn.be/stops/109714", "https://data.delijn.be/stops/109715"], ["https://data.delijn.be/stops/202427", "https://data.delijn.be/stops/203427"], ["https://data.delijn.be/stops/200160", "https://data.delijn.be/stops/200161"], ["https://data.delijn.be/stops/204368", "https://data.delijn.be/stops/205369"], ["https://data.delijn.be/stops/107897", "https://data.delijn.be/stops/107906"], ["https://data.delijn.be/stops/104974", "https://data.delijn.be/stops/104988"], ["https://data.delijn.be/stops/503256", "https://data.delijn.be/stops/508256"], ["https://data.delijn.be/stops/204798", "https://data.delijn.be/stops/205376"], ["https://data.delijn.be/stops/408420", "https://data.delijn.be/stops/408421"], ["https://data.delijn.be/stops/103299", "https://data.delijn.be/stops/107845"], ["https://data.delijn.be/stops/400141", "https://data.delijn.be/stops/409163"], ["https://data.delijn.be/stops/201659", "https://data.delijn.be/stops/205928"], ["https://data.delijn.be/stops/302355", "https://data.delijn.be/stops/302357"], ["https://data.delijn.be/stops/404436", "https://data.delijn.be/stops/404539"], ["https://data.delijn.be/stops/202875", "https://data.delijn.be/stops/203875"], ["https://data.delijn.be/stops/301025", "https://data.delijn.be/stops/302986"], ["https://data.delijn.be/stops/305250", "https://data.delijn.be/stops/308695"], ["https://data.delijn.be/stops/401123", "https://data.delijn.be/stops/407796"], ["https://data.delijn.be/stops/300835", "https://data.delijn.be/stops/302288"], ["https://data.delijn.be/stops/303358", "https://data.delijn.be/stops/307183"], ["https://data.delijn.be/stops/206570", "https://data.delijn.be/stops/206574"], ["https://data.delijn.be/stops/402792", "https://data.delijn.be/stops/402796"], ["https://data.delijn.be/stops/303150", "https://data.delijn.be/stops/307928"], ["https://data.delijn.be/stops/406083", "https://data.delijn.be/stops/406090"], ["https://data.delijn.be/stops/200650", "https://data.delijn.be/stops/202865"], ["https://data.delijn.be/stops/104025", "https://data.delijn.be/stops/104027"], ["https://data.delijn.be/stops/201289", "https://data.delijn.be/stops/201359"], ["https://data.delijn.be/stops/402714", "https://data.delijn.be/stops/402715"], ["https://data.delijn.be/stops/407766", "https://data.delijn.be/stops/409628"], ["https://data.delijn.be/stops/201728", "https://data.delijn.be/stops/201774"], ["https://data.delijn.be/stops/204447", "https://data.delijn.be/stops/204693"], ["https://data.delijn.be/stops/407628", "https://data.delijn.be/stops/409788"], ["https://data.delijn.be/stops/402890", "https://data.delijn.be/stops/402898"], ["https://data.delijn.be/stops/200533", "https://data.delijn.be/stops/201515"], ["https://data.delijn.be/stops/503496", "https://data.delijn.be/stops/508494"], ["https://data.delijn.be/stops/206883", "https://data.delijn.be/stops/206884"], ["https://data.delijn.be/stops/400880", "https://data.delijn.be/stops/400892"], ["https://data.delijn.be/stops/106261", "https://data.delijn.be/stops/106262"], ["https://data.delijn.be/stops/107953", "https://data.delijn.be/stops/108968"], ["https://data.delijn.be/stops/509772", "https://data.delijn.be/stops/509790"], ["https://data.delijn.be/stops/101369", "https://data.delijn.be/stops/101373"], ["https://data.delijn.be/stops/200857", "https://data.delijn.be/stops/203302"], ["https://data.delijn.be/stops/302853", "https://data.delijn.be/stops/308822"], ["https://data.delijn.be/stops/204765", "https://data.delijn.be/stops/205374"], ["https://data.delijn.be/stops/203120", "https://data.delijn.be/stops/203121"], ["https://data.delijn.be/stops/103378", "https://data.delijn.be/stops/108145"], ["https://data.delijn.be/stops/503924", "https://data.delijn.be/stops/508813"], ["https://data.delijn.be/stops/502335", "https://data.delijn.be/stops/502456"], ["https://data.delijn.be/stops/206104", "https://data.delijn.be/stops/207104"], ["https://data.delijn.be/stops/405815", "https://data.delijn.be/stops/405873"], ["https://data.delijn.be/stops/302091", "https://data.delijn.be/stops/306989"], ["https://data.delijn.be/stops/301565", "https://data.delijn.be/stops/301568"], ["https://data.delijn.be/stops/205912", "https://data.delijn.be/stops/205923"], ["https://data.delijn.be/stops/400919", "https://data.delijn.be/stops/407375"], ["https://data.delijn.be/stops/207358", "https://data.delijn.be/stops/207688"], ["https://data.delijn.be/stops/303556", "https://data.delijn.be/stops/303573"], ["https://data.delijn.be/stops/308464", "https://data.delijn.be/stops/308692"], ["https://data.delijn.be/stops/304397", "https://data.delijn.be/stops/307409"], ["https://data.delijn.be/stops/402893", "https://data.delijn.be/stops/302632"], ["https://data.delijn.be/stops/300397", "https://data.delijn.be/stops/304585"], ["https://data.delijn.be/stops/303011", "https://data.delijn.be/stops/303095"], ["https://data.delijn.be/stops/206212", "https://data.delijn.be/stops/207818"], ["https://data.delijn.be/stops/502495", "https://data.delijn.be/stops/502503"], ["https://data.delijn.be/stops/400860", "https://data.delijn.be/stops/406699"], ["https://data.delijn.be/stops/200737", "https://data.delijn.be/stops/202596"], ["https://data.delijn.be/stops/107934", "https://data.delijn.be/stops/204564"], ["https://data.delijn.be/stops/305282", "https://data.delijn.be/stops/305331"], ["https://data.delijn.be/stops/102345", "https://data.delijn.be/stops/104254"], ["https://data.delijn.be/stops/307379", "https://data.delijn.be/stops/307447"], ["https://data.delijn.be/stops/503842", "https://data.delijn.be/stops/505214"], ["https://data.delijn.be/stops/400830", "https://data.delijn.be/stops/400831"], ["https://data.delijn.be/stops/509766", "https://data.delijn.be/stops/509792"], ["https://data.delijn.be/stops/207098", "https://data.delijn.be/stops/207998"], ["https://data.delijn.be/stops/308290", "https://data.delijn.be/stops/308293"], ["https://data.delijn.be/stops/408593", "https://data.delijn.be/stops/408776"], ["https://data.delijn.be/stops/402952", "https://data.delijn.be/stops/402953"], ["https://data.delijn.be/stops/503893", "https://data.delijn.be/stops/503898"], ["https://data.delijn.be/stops/208127", "https://data.delijn.be/stops/209073"], ["https://data.delijn.be/stops/300688", "https://data.delijn.be/stops/300735"], ["https://data.delijn.be/stops/306616", "https://data.delijn.be/stops/306617"], ["https://data.delijn.be/stops/504703", "https://data.delijn.be/stops/505303"], ["https://data.delijn.be/stops/102057", "https://data.delijn.be/stops/106747"], ["https://data.delijn.be/stops/503333", "https://data.delijn.be/stops/509843"], ["https://data.delijn.be/stops/402158", "https://data.delijn.be/stops/408054"], ["https://data.delijn.be/stops/401554", "https://data.delijn.be/stops/401559"], ["https://data.delijn.be/stops/503651", "https://data.delijn.be/stops/508651"], ["https://data.delijn.be/stops/503095", "https://data.delijn.be/stops/508105"], ["https://data.delijn.be/stops/305114", "https://data.delijn.be/stops/305129"], ["https://data.delijn.be/stops/409314", "https://data.delijn.be/stops/409316"], ["https://data.delijn.be/stops/102456", "https://data.delijn.be/stops/102458"], ["https://data.delijn.be/stops/403163", "https://data.delijn.be/stops/403183"], ["https://data.delijn.be/stops/403433", "https://data.delijn.be/stops/403498"], ["https://data.delijn.be/stops/403280", "https://data.delijn.be/stops/404174"], ["https://data.delijn.be/stops/208394", "https://data.delijn.be/stops/209394"], ["https://data.delijn.be/stops/101203", "https://data.delijn.be/stops/204662"], ["https://data.delijn.be/stops/103770", "https://data.delijn.be/stops/104545"], ["https://data.delijn.be/stops/303424", "https://data.delijn.be/stops/303425"], ["https://data.delijn.be/stops/407968", "https://data.delijn.be/stops/408001"], ["https://data.delijn.be/stops/201726", "https://data.delijn.be/stops/202980"], ["https://data.delijn.be/stops/300133", "https://data.delijn.be/stops/300134"], ["https://data.delijn.be/stops/101518", "https://data.delijn.be/stops/109559"], ["https://data.delijn.be/stops/107075", "https://data.delijn.be/stops/107077"], ["https://data.delijn.be/stops/504212", "https://data.delijn.be/stops/504691"], ["https://data.delijn.be/stops/504083", "https://data.delijn.be/stops/504084"], ["https://data.delijn.be/stops/204158", "https://data.delijn.be/stops/204164"], ["https://data.delijn.be/stops/400764", "https://data.delijn.be/stops/400765"], ["https://data.delijn.be/stops/300014", "https://data.delijn.be/stops/300021"], ["https://data.delijn.be/stops/106670", "https://data.delijn.be/stops/106702"], ["https://data.delijn.be/stops/210021", "https://data.delijn.be/stops/211021"], ["https://data.delijn.be/stops/306344", "https://data.delijn.be/stops/308696"], ["https://data.delijn.be/stops/202221", "https://data.delijn.be/stops/205076"], ["https://data.delijn.be/stops/102909", "https://data.delijn.be/stops/102916"], ["https://data.delijn.be/stops/105616", "https://data.delijn.be/stops/105618"], ["https://data.delijn.be/stops/401524", "https://data.delijn.be/stops/402631"], ["https://data.delijn.be/stops/103944", "https://data.delijn.be/stops/108823"], ["https://data.delijn.be/stops/505092", "https://data.delijn.be/stops/508592"], ["https://data.delijn.be/stops/407257", "https://data.delijn.be/stops/409492"], ["https://data.delijn.be/stops/505096", "https://data.delijn.be/stops/505241"], ["https://data.delijn.be/stops/301195", "https://data.delijn.be/stops/307907"], ["https://data.delijn.be/stops/101527", "https://data.delijn.be/stops/101942"], ["https://data.delijn.be/stops/205046", "https://data.delijn.be/stops/205516"], ["https://data.delijn.be/stops/502400", "https://data.delijn.be/stops/507400"], ["https://data.delijn.be/stops/305163", "https://data.delijn.be/stops/308681"], ["https://data.delijn.be/stops/301897", "https://data.delijn.be/stops/308130"], ["https://data.delijn.be/stops/208292", "https://data.delijn.be/stops/209725"], ["https://data.delijn.be/stops/206808", "https://data.delijn.be/stops/207203"], ["https://data.delijn.be/stops/300345", "https://data.delijn.be/stops/304715"], ["https://data.delijn.be/stops/303533", "https://data.delijn.be/stops/303573"], ["https://data.delijn.be/stops/401543", "https://data.delijn.be/stops/401930"], ["https://data.delijn.be/stops/200262", "https://data.delijn.be/stops/202548"], ["https://data.delijn.be/stops/407681", "https://data.delijn.be/stops/410091"], ["https://data.delijn.be/stops/503915", "https://data.delijn.be/stops/508929"], ["https://data.delijn.be/stops/305049", "https://data.delijn.be/stops/306958"], ["https://data.delijn.be/stops/201493", "https://data.delijn.be/stops/202334"], ["https://data.delijn.be/stops/108282", "https://data.delijn.be/stops/108286"], ["https://data.delijn.be/stops/503815", "https://data.delijn.be/stops/508271"], ["https://data.delijn.be/stops/410349", "https://data.delijn.be/stops/410350"], ["https://data.delijn.be/stops/308480", "https://data.delijn.be/stops/308481"], ["https://data.delijn.be/stops/408053", "https://data.delijn.be/stops/408442"], ["https://data.delijn.be/stops/200264", "https://data.delijn.be/stops/201264"], ["https://data.delijn.be/stops/308797", "https://data.delijn.be/stops/308798"], ["https://data.delijn.be/stops/202597", "https://data.delijn.be/stops/202598"], ["https://data.delijn.be/stops/106404", "https://data.delijn.be/stops/106405"], ["https://data.delijn.be/stops/407910", "https://data.delijn.be/stops/408032"], ["https://data.delijn.be/stops/405440", "https://data.delijn.be/stops/308824"], ["https://data.delijn.be/stops/504104", "https://data.delijn.be/stops/504544"], ["https://data.delijn.be/stops/103066", "https://data.delijn.be/stops/308817"], ["https://data.delijn.be/stops/208088", "https://data.delijn.be/stops/209071"], ["https://data.delijn.be/stops/306145", "https://data.delijn.be/stops/306148"], ["https://data.delijn.be/stops/401440", "https://data.delijn.be/stops/408403"], ["https://data.delijn.be/stops/503656", "https://data.delijn.be/stops/508656"], ["https://data.delijn.be/stops/508332", "https://data.delijn.be/stops/508772"], ["https://data.delijn.be/stops/407946", "https://data.delijn.be/stops/408056"], ["https://data.delijn.be/stops/109014", "https://data.delijn.be/stops/109049"], ["https://data.delijn.be/stops/306627", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/403681", "https://data.delijn.be/stops/405319"], ["https://data.delijn.be/stops/101554", "https://data.delijn.be/stops/102068"], ["https://data.delijn.be/stops/403269", "https://data.delijn.be/stops/410325"], ["https://data.delijn.be/stops/108968", "https://data.delijn.be/stops/108985"], ["https://data.delijn.be/stops/406784", "https://data.delijn.be/stops/406785"], ["https://data.delijn.be/stops/206002", "https://data.delijn.be/stops/206522"], ["https://data.delijn.be/stops/305008", "https://data.delijn.be/stops/305026"], ["https://data.delijn.be/stops/202079", "https://data.delijn.be/stops/202185"], ["https://data.delijn.be/stops/303780", "https://data.delijn.be/stops/303826"], ["https://data.delijn.be/stops/306056", "https://data.delijn.be/stops/306062"], ["https://data.delijn.be/stops/102314", "https://data.delijn.be/stops/103925"], ["https://data.delijn.be/stops/206687", "https://data.delijn.be/stops/207920"], ["https://data.delijn.be/stops/101788", "https://data.delijn.be/stops/105608"], ["https://data.delijn.be/stops/201725", "https://data.delijn.be/stops/203376"], ["https://data.delijn.be/stops/407771", "https://data.delijn.be/stops/407773"], ["https://data.delijn.be/stops/107920", "https://data.delijn.be/stops/108730"], ["https://data.delijn.be/stops/103045", "https://data.delijn.be/stops/103085"], ["https://data.delijn.be/stops/107909", "https://data.delijn.be/stops/109751"], ["https://data.delijn.be/stops/506173", "https://data.delijn.be/stops/506174"], ["https://data.delijn.be/stops/501614", "https://data.delijn.be/stops/506021"], ["https://data.delijn.be/stops/200940", "https://data.delijn.be/stops/203711"], ["https://data.delijn.be/stops/209101", "https://data.delijn.be/stops/219005"], ["https://data.delijn.be/stops/304934", "https://data.delijn.be/stops/304945"], ["https://data.delijn.be/stops/102592", "https://data.delijn.be/stops/109003"], ["https://data.delijn.be/stops/104667", "https://data.delijn.be/stops/204611"], ["https://data.delijn.be/stops/400255", "https://data.delijn.be/stops/405565"], ["https://data.delijn.be/stops/404345", "https://data.delijn.be/stops/404349"], ["https://data.delijn.be/stops/405175", "https://data.delijn.be/stops/405217"], ["https://data.delijn.be/stops/306902", "https://data.delijn.be/stops/306906"], ["https://data.delijn.be/stops/506616", "https://data.delijn.be/stops/506623"], ["https://data.delijn.be/stops/504281", "https://data.delijn.be/stops/509279"], ["https://data.delijn.be/stops/200734", "https://data.delijn.be/stops/203601"], ["https://data.delijn.be/stops/408667", "https://data.delijn.be/stops/408767"], ["https://data.delijn.be/stops/502172", "https://data.delijn.be/stops/507171"], ["https://data.delijn.be/stops/200174", "https://data.delijn.be/stops/201173"], ["https://data.delijn.be/stops/503409", "https://data.delijn.be/stops/508109"], ["https://data.delijn.be/stops/200027", "https://data.delijn.be/stops/200446"], ["https://data.delijn.be/stops/201286", "https://data.delijn.be/stops/201618"], ["https://data.delijn.be/stops/107366", "https://data.delijn.be/stops/107369"], ["https://data.delijn.be/stops/105203", "https://data.delijn.be/stops/108361"], ["https://data.delijn.be/stops/103233", "https://data.delijn.be/stops/107133"], ["https://data.delijn.be/stops/206986", "https://data.delijn.be/stops/207994"], ["https://data.delijn.be/stops/200868", "https://data.delijn.be/stops/202339"], ["https://data.delijn.be/stops/303674", "https://data.delijn.be/stops/307634"], ["https://data.delijn.be/stops/105865", "https://data.delijn.be/stops/105872"], ["https://data.delijn.be/stops/203733", "https://data.delijn.be/stops/203854"], ["https://data.delijn.be/stops/400983", "https://data.delijn.be/stops/406579"], ["https://data.delijn.be/stops/108313", "https://data.delijn.be/stops/108314"], ["https://data.delijn.be/stops/504739", "https://data.delijn.be/stops/505101"], ["https://data.delijn.be/stops/101503", "https://data.delijn.be/stops/101938"], ["https://data.delijn.be/stops/590334", "https://data.delijn.be/stops/590335"], ["https://data.delijn.be/stops/201609", "https://data.delijn.be/stops/203754"], ["https://data.delijn.be/stops/509203", "https://data.delijn.be/stops/509204"], ["https://data.delijn.be/stops/105283", "https://data.delijn.be/stops/105287"], ["https://data.delijn.be/stops/101272", "https://data.delijn.be/stops/106025"], ["https://data.delijn.be/stops/200308", "https://data.delijn.be/stops/209987"], ["https://data.delijn.be/stops/302727", "https://data.delijn.be/stops/308836"], ["https://data.delijn.be/stops/503149", "https://data.delijn.be/stops/503555"], ["https://data.delijn.be/stops/406541", "https://data.delijn.be/stops/407478"], ["https://data.delijn.be/stops/501356", "https://data.delijn.be/stops/501588"], ["https://data.delijn.be/stops/504190", "https://data.delijn.be/stops/509157"], ["https://data.delijn.be/stops/202058", "https://data.delijn.be/stops/210073"], ["https://data.delijn.be/stops/506235", "https://data.delijn.be/stops/506249"], ["https://data.delijn.be/stops/503104", "https://data.delijn.be/stops/507698"], ["https://data.delijn.be/stops/200314", "https://data.delijn.be/stops/218936"], ["https://data.delijn.be/stops/202942", "https://data.delijn.be/stops/208656"], ["https://data.delijn.be/stops/208533", "https://data.delijn.be/stops/209517"], ["https://data.delijn.be/stops/101725", "https://data.delijn.be/stops/102313"], ["https://data.delijn.be/stops/105575", "https://data.delijn.be/stops/105576"], ["https://data.delijn.be/stops/107017", "https://data.delijn.be/stops/107018"], ["https://data.delijn.be/stops/106076", "https://data.delijn.be/stops/106077"], ["https://data.delijn.be/stops/400028", "https://data.delijn.be/stops/400030"], ["https://data.delijn.be/stops/109066", "https://data.delijn.be/stops/109068"], ["https://data.delijn.be/stops/408081", "https://data.delijn.be/stops/408173"], ["https://data.delijn.be/stops/306930", "https://data.delijn.be/stops/306932"], ["https://data.delijn.be/stops/200577", "https://data.delijn.be/stops/201578"], ["https://data.delijn.be/stops/403195", "https://data.delijn.be/stops/405328"], ["https://data.delijn.be/stops/206825", "https://data.delijn.be/stops/207862"], ["https://data.delijn.be/stops/405222", "https://data.delijn.be/stops/405233"], ["https://data.delijn.be/stops/108617", "https://data.delijn.be/stops/300648"], ["https://data.delijn.be/stops/202742", "https://data.delijn.be/stops/203742"], ["https://data.delijn.be/stops/403089", "https://data.delijn.be/stops/403277"], ["https://data.delijn.be/stops/303542", "https://data.delijn.be/stops/303565"], ["https://data.delijn.be/stops/201204", "https://data.delijn.be/stops/202136"], ["https://data.delijn.be/stops/105042", "https://data.delijn.be/stops/105044"], ["https://data.delijn.be/stops/202632", "https://data.delijn.be/stops/205066"], ["https://data.delijn.be/stops/410174", "https://data.delijn.be/stops/410176"], ["https://data.delijn.be/stops/501541", "https://data.delijn.be/stops/505834"], ["https://data.delijn.be/stops/207463", "https://data.delijn.be/stops/207464"], ["https://data.delijn.be/stops/409104", "https://data.delijn.be/stops/409107"], ["https://data.delijn.be/stops/106504", "https://data.delijn.be/stops/106507"], ["https://data.delijn.be/stops/505019", "https://data.delijn.be/stops/507808"], ["https://data.delijn.be/stops/303304", "https://data.delijn.be/stops/303320"], ["https://data.delijn.be/stops/301926", "https://data.delijn.be/stops/301928"], ["https://data.delijn.be/stops/404626", "https://data.delijn.be/stops/404634"], ["https://data.delijn.be/stops/107210", "https://data.delijn.be/stops/107215"], ["https://data.delijn.be/stops/202147", "https://data.delijn.be/stops/203242"], ["https://data.delijn.be/stops/106102", "https://data.delijn.be/stops/106147"], ["https://data.delijn.be/stops/401350", "https://data.delijn.be/stops/401361"], ["https://data.delijn.be/stops/201677", "https://data.delijn.be/stops/203774"], ["https://data.delijn.be/stops/502148", "https://data.delijn.be/stops/505894"], ["https://data.delijn.be/stops/400582", "https://data.delijn.be/stops/400591"], ["https://data.delijn.be/stops/502544", "https://data.delijn.be/stops/505694"], ["https://data.delijn.be/stops/201364", "https://data.delijn.be/stops/201549"], ["https://data.delijn.be/stops/301481", "https://data.delijn.be/stops/301497"], ["https://data.delijn.be/stops/206148", "https://data.delijn.be/stops/207095"], ["https://data.delijn.be/stops/306347", "https://data.delijn.be/stops/308697"], ["https://data.delijn.be/stops/206351", "https://data.delijn.be/stops/207351"], ["https://data.delijn.be/stops/202634", "https://data.delijn.be/stops/203161"], ["https://data.delijn.be/stops/300389", "https://data.delijn.be/stops/300390"], ["https://data.delijn.be/stops/302342", "https://data.delijn.be/stops/303468"], ["https://data.delijn.be/stops/505931", "https://data.delijn.be/stops/505932"], ["https://data.delijn.be/stops/402894", "https://data.delijn.be/stops/302614"], ["https://data.delijn.be/stops/202065", "https://data.delijn.be/stops/202713"], ["https://data.delijn.be/stops/102093", "https://data.delijn.be/stops/109815"], ["https://data.delijn.be/stops/407622", "https://data.delijn.be/stops/408448"], ["https://data.delijn.be/stops/405631", "https://data.delijn.be/stops/410248"], ["https://data.delijn.be/stops/208469", "https://data.delijn.be/stops/208498"], ["https://data.delijn.be/stops/201752", "https://data.delijn.be/stops/209428"], ["https://data.delijn.be/stops/301217", "https://data.delijn.be/stops/301220"], ["https://data.delijn.be/stops/501092", "https://data.delijn.be/stops/506093"], ["https://data.delijn.be/stops/109893", "https://data.delijn.be/stops/109947"], ["https://data.delijn.be/stops/304030", "https://data.delijn.be/stops/307996"], ["https://data.delijn.be/stops/306909", "https://data.delijn.be/stops/308724"], ["https://data.delijn.be/stops/208808", "https://data.delijn.be/stops/208809"], ["https://data.delijn.be/stops/403144", "https://data.delijn.be/stops/403145"], ["https://data.delijn.be/stops/200830", "https://data.delijn.be/stops/200876"], ["https://data.delijn.be/stops/207524", "https://data.delijn.be/stops/216007"], ["https://data.delijn.be/stops/301676", "https://data.delijn.be/stops/301689"], ["https://data.delijn.be/stops/402688", "https://data.delijn.be/stops/402867"], ["https://data.delijn.be/stops/206466", "https://data.delijn.be/stops/207466"], ["https://data.delijn.be/stops/206187", "https://data.delijn.be/stops/207188"], ["https://data.delijn.be/stops/407926", "https://data.delijn.be/stops/407958"], ["https://data.delijn.be/stops/104056", "https://data.delijn.be/stops/108099"], ["https://data.delijn.be/stops/301286", "https://data.delijn.be/stops/306249"], ["https://data.delijn.be/stops/101606", "https://data.delijn.be/stops/109809"], ["https://data.delijn.be/stops/108237", "https://data.delijn.be/stops/108239"], ["https://data.delijn.be/stops/406176", "https://data.delijn.be/stops/406201"], ["https://data.delijn.be/stops/105780", "https://data.delijn.be/stops/108645"], ["https://data.delijn.be/stops/208591", "https://data.delijn.be/stops/301420"], ["https://data.delijn.be/stops/501270", "https://data.delijn.be/stops/501313"], ["https://data.delijn.be/stops/103319", "https://data.delijn.be/stops/105715"], ["https://data.delijn.be/stops/502230", "https://data.delijn.be/stops/502700"], ["https://data.delijn.be/stops/202837", "https://data.delijn.be/stops/208679"], ["https://data.delijn.be/stops/204069", "https://data.delijn.be/stops/204385"], ["https://data.delijn.be/stops/408020", "https://data.delijn.be/stops/408021"], ["https://data.delijn.be/stops/503403", "https://data.delijn.be/stops/508403"], ["https://data.delijn.be/stops/503918", "https://data.delijn.be/stops/505942"], ["https://data.delijn.be/stops/301476", "https://data.delijn.be/stops/301480"], ["https://data.delijn.be/stops/503164", "https://data.delijn.be/stops/508164"], ["https://data.delijn.be/stops/201167", "https://data.delijn.be/stops/203620"], ["https://data.delijn.be/stops/204317", "https://data.delijn.be/stops/205318"], ["https://data.delijn.be/stops/404866", "https://data.delijn.be/stops/404867"], ["https://data.delijn.be/stops/204658", "https://data.delijn.be/stops/204659"], ["https://data.delijn.be/stops/206688", "https://data.delijn.be/stops/206689"], ["https://data.delijn.be/stops/408202", "https://data.delijn.be/stops/408203"], ["https://data.delijn.be/stops/403959", "https://data.delijn.be/stops/403972"], ["https://data.delijn.be/stops/304243", "https://data.delijn.be/stops/305449"], ["https://data.delijn.be/stops/501630", "https://data.delijn.be/stops/506645"], ["https://data.delijn.be/stops/103078", "https://data.delijn.be/stops/105026"], ["https://data.delijn.be/stops/408606", "https://data.delijn.be/stops/302835"], ["https://data.delijn.be/stops/303774", "https://data.delijn.be/stops/308714"], ["https://data.delijn.be/stops/106332", "https://data.delijn.be/stops/106359"], ["https://data.delijn.be/stops/108317", "https://data.delijn.be/stops/109018"], ["https://data.delijn.be/stops/501161", "https://data.delijn.be/stops/501777"], ["https://data.delijn.be/stops/407382", "https://data.delijn.be/stops/407383"], ["https://data.delijn.be/stops/402669", "https://data.delijn.be/stops/402729"], ["https://data.delijn.be/stops/303577", "https://data.delijn.be/stops/303580"], ["https://data.delijn.be/stops/400697", "https://data.delijn.be/stops/400857"], ["https://data.delijn.be/stops/300627", "https://data.delijn.be/stops/300710"], ["https://data.delijn.be/stops/206488", "https://data.delijn.be/stops/206647"], ["https://data.delijn.be/stops/402286", "https://data.delijn.be/stops/402299"], ["https://data.delijn.be/stops/200872", "https://data.delijn.be/stops/200896"], ["https://data.delijn.be/stops/108037", "https://data.delijn.be/stops/108041"], ["https://data.delijn.be/stops/505337", "https://data.delijn.be/stops/507514"], ["https://data.delijn.be/stops/307068", "https://data.delijn.be/stops/307932"], ["https://data.delijn.be/stops/109159", "https://data.delijn.be/stops/109234"], ["https://data.delijn.be/stops/301196", "https://data.delijn.be/stops/305356"], ["https://data.delijn.be/stops/505265", "https://data.delijn.be/stops/507715"], ["https://data.delijn.be/stops/101062", "https://data.delijn.be/stops/107956"], ["https://data.delijn.be/stops/305160", "https://data.delijn.be/stops/305200"], ["https://data.delijn.be/stops/508018", "https://data.delijn.be/stops/509817"], ["https://data.delijn.be/stops/204352", "https://data.delijn.be/stops/205352"], ["https://data.delijn.be/stops/305643", "https://data.delijn.be/stops/305649"], ["https://data.delijn.be/stops/200781", "https://data.delijn.be/stops/200782"], ["https://data.delijn.be/stops/501335", "https://data.delijn.be/stops/506320"], ["https://data.delijn.be/stops/407104", "https://data.delijn.be/stops/407112"], ["https://data.delijn.be/stops/503796", "https://data.delijn.be/stops/508796"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/302916"], ["https://data.delijn.be/stops/405412", "https://data.delijn.be/stops/410151"], ["https://data.delijn.be/stops/204169", "https://data.delijn.be/stops/205170"], ["https://data.delijn.be/stops/301554", "https://data.delijn.be/stops/301576"], ["https://data.delijn.be/stops/301727", "https://data.delijn.be/stops/301757"], ["https://data.delijn.be/stops/207758", "https://data.delijn.be/stops/207777"], ["https://data.delijn.be/stops/207309", "https://data.delijn.be/stops/207310"], ["https://data.delijn.be/stops/405906", "https://data.delijn.be/stops/405928"], ["https://data.delijn.be/stops/204789", "https://data.delijn.be/stops/205790"], ["https://data.delijn.be/stops/403617", "https://data.delijn.be/stops/406363"], ["https://data.delijn.be/stops/409053", "https://data.delijn.be/stops/409072"], ["https://data.delijn.be/stops/303759", "https://data.delijn.be/stops/303782"], ["https://data.delijn.be/stops/305146", "https://data.delijn.be/stops/305156"], ["https://data.delijn.be/stops/404943", "https://data.delijn.be/stops/404947"], ["https://data.delijn.be/stops/200401", "https://data.delijn.be/stops/201401"], ["https://data.delijn.be/stops/400214", "https://data.delijn.be/stops/400217"], ["https://data.delijn.be/stops/400035", "https://data.delijn.be/stops/400317"], ["https://data.delijn.be/stops/201943", "https://data.delijn.be/stops/203187"], ["https://data.delijn.be/stops/209739", "https://data.delijn.be/stops/209740"], ["https://data.delijn.be/stops/401049", "https://data.delijn.be/stops/402830"], ["https://data.delijn.be/stops/306882", "https://data.delijn.be/stops/307007"], ["https://data.delijn.be/stops/200894", "https://data.delijn.be/stops/203448"], ["https://data.delijn.be/stops/201121", "https://data.delijn.be/stops/207426"], ["https://data.delijn.be/stops/408853", "https://data.delijn.be/stops/408857"], ["https://data.delijn.be/stops/200410", "https://data.delijn.be/stops/202360"], ["https://data.delijn.be/stops/303720", "https://data.delijn.be/stops/303751"], ["https://data.delijn.be/stops/105169", "https://data.delijn.be/stops/108056"], ["https://data.delijn.be/stops/109112", "https://data.delijn.be/stops/109114"], ["https://data.delijn.be/stops/504040", "https://data.delijn.be/stops/509039"], ["https://data.delijn.be/stops/502436", "https://data.delijn.be/stops/507308"], ["https://data.delijn.be/stops/300188", "https://data.delijn.be/stops/300193"], ["https://data.delijn.be/stops/202889", "https://data.delijn.be/stops/203480"], ["https://data.delijn.be/stops/301359", "https://data.delijn.be/stops/308769"], ["https://data.delijn.be/stops/206840", "https://data.delijn.be/stops/207559"], ["https://data.delijn.be/stops/303068", "https://data.delijn.be/stops/307929"], ["https://data.delijn.be/stops/502089", "https://data.delijn.be/stops/502107"], ["https://data.delijn.be/stops/206291", "https://data.delijn.be/stops/207291"], ["https://data.delijn.be/stops/106372", "https://data.delijn.be/stops/106387"], ["https://data.delijn.be/stops/103626", "https://data.delijn.be/stops/107732"], ["https://data.delijn.be/stops/208120", "https://data.delijn.be/stops/218009"], ["https://data.delijn.be/stops/303341", "https://data.delijn.be/stops/306335"], ["https://data.delijn.be/stops/101406", "https://data.delijn.be/stops/106525"], ["https://data.delijn.be/stops/206100", "https://data.delijn.be/stops/206932"], ["https://data.delijn.be/stops/102321", "https://data.delijn.be/stops/107460"], ["https://data.delijn.be/stops/502671", "https://data.delijn.be/stops/507669"], ["https://data.delijn.be/stops/501776", "https://data.delijn.be/stops/506456"], ["https://data.delijn.be/stops/305299", "https://data.delijn.be/stops/305334"], ["https://data.delijn.be/stops/203303", "https://data.delijn.be/stops/203304"], ["https://data.delijn.be/stops/202387", "https://data.delijn.be/stops/203388"], ["https://data.delijn.be/stops/505629", "https://data.delijn.be/stops/508343"], ["https://data.delijn.be/stops/403833", "https://data.delijn.be/stops/403848"], ["https://data.delijn.be/stops/502284", "https://data.delijn.be/stops/507280"], ["https://data.delijn.be/stops/303643", "https://data.delijn.be/stops/305602"], ["https://data.delijn.be/stops/101836", "https://data.delijn.be/stops/108201"], ["https://data.delijn.be/stops/301344", "https://data.delijn.be/stops/304666"], ["https://data.delijn.be/stops/504970", "https://data.delijn.be/stops/508535"], ["https://data.delijn.be/stops/300347", "https://data.delijn.be/stops/300361"], ["https://data.delijn.be/stops/202855", "https://data.delijn.be/stops/202856"], ["https://data.delijn.be/stops/404437", "https://data.delijn.be/stops/404491"], ["https://data.delijn.be/stops/206664", "https://data.delijn.be/stops/206735"], ["https://data.delijn.be/stops/502697", "https://data.delijn.be/stops/507697"], ["https://data.delijn.be/stops/200053", "https://data.delijn.be/stops/208963"], ["https://data.delijn.be/stops/401793", "https://data.delijn.be/stops/401817"], ["https://data.delijn.be/stops/208314", "https://data.delijn.be/stops/219009"], ["https://data.delijn.be/stops/502118", "https://data.delijn.be/stops/502127"], ["https://data.delijn.be/stops/105678", "https://data.delijn.be/stops/106047"], ["https://data.delijn.be/stops/407871", "https://data.delijn.be/stops/409490"], ["https://data.delijn.be/stops/503100", "https://data.delijn.be/stops/503373"], ["https://data.delijn.be/stops/303554", "https://data.delijn.be/stops/308791"], ["https://data.delijn.be/stops/307870", "https://data.delijn.be/stops/308887"], ["https://data.delijn.be/stops/109032", "https://data.delijn.be/stops/109033"], ["https://data.delijn.be/stops/405465", "https://data.delijn.be/stops/405466"], ["https://data.delijn.be/stops/302977", "https://data.delijn.be/stops/303000"], ["https://data.delijn.be/stops/305634", "https://data.delijn.be/stops/305635"], ["https://data.delijn.be/stops/505748", "https://data.delijn.be/stops/507185"], ["https://data.delijn.be/stops/400082", "https://data.delijn.be/stops/400083"], ["https://data.delijn.be/stops/204206", "https://data.delijn.be/stops/205206"], ["https://data.delijn.be/stops/203920", "https://data.delijn.be/stops/211097"], ["https://data.delijn.be/stops/403284", "https://data.delijn.be/stops/403866"], ["https://data.delijn.be/stops/102255", "https://data.delijn.be/stops/103131"], ["https://data.delijn.be/stops/401511", "https://data.delijn.be/stops/409017"], ["https://data.delijn.be/stops/303435", "https://data.delijn.be/stops/304961"], ["https://data.delijn.be/stops/401842", "https://data.delijn.be/stops/401845"], ["https://data.delijn.be/stops/200892", "https://data.delijn.be/stops/201955"], ["https://data.delijn.be/stops/108452", "https://data.delijn.be/stops/108509"], ["https://data.delijn.be/stops/505216", "https://data.delijn.be/stops/505989"], ["https://data.delijn.be/stops/200190", "https://data.delijn.be/stops/200191"], ["https://data.delijn.be/stops/206356", "https://data.delijn.be/stops/206357"], ["https://data.delijn.be/stops/504956", "https://data.delijn.be/stops/508693"], ["https://data.delijn.be/stops/202240", "https://data.delijn.be/stops/206593"], ["https://data.delijn.be/stops/108553", "https://data.delijn.be/stops/109601"], ["https://data.delijn.be/stops/403634", "https://data.delijn.be/stops/409965"], ["https://data.delijn.be/stops/504063", "https://data.delijn.be/stops/504066"], ["https://data.delijn.be/stops/303551", "https://data.delijn.be/stops/305577"], ["https://data.delijn.be/stops/303413", "https://data.delijn.be/stops/303419"], ["https://data.delijn.be/stops/404636", "https://data.delijn.be/stops/404992"], ["https://data.delijn.be/stops/402401", "https://data.delijn.be/stops/402492"], ["https://data.delijn.be/stops/504352", "https://data.delijn.be/stops/504590"], ["https://data.delijn.be/stops/307624", "https://data.delijn.be/stops/308252"], ["https://data.delijn.be/stops/206513", "https://data.delijn.be/stops/207513"], ["https://data.delijn.be/stops/405103", "https://data.delijn.be/stops/408336"], ["https://data.delijn.be/stops/200218", "https://data.delijn.be/stops/200266"], ["https://data.delijn.be/stops/408038", "https://data.delijn.be/stops/408279"], ["https://data.delijn.be/stops/203139", "https://data.delijn.be/stops/210849"], ["https://data.delijn.be/stops/503237", "https://data.delijn.be/stops/504949"], ["https://data.delijn.be/stops/108903", "https://data.delijn.be/stops/108904"], ["https://data.delijn.be/stops/404652", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/301317", "https://data.delijn.be/stops/306660"], ["https://data.delijn.be/stops/206762", "https://data.delijn.be/stops/207940"], ["https://data.delijn.be/stops/202815", "https://data.delijn.be/stops/203887"], ["https://data.delijn.be/stops/302633", "https://data.delijn.be/stops/302642"], ["https://data.delijn.be/stops/503817", "https://data.delijn.be/stops/503818"], ["https://data.delijn.be/stops/400226", "https://data.delijn.be/stops/400227"], ["https://data.delijn.be/stops/210857", "https://data.delijn.be/stops/211857"], ["https://data.delijn.be/stops/103307", "https://data.delijn.be/stops/103308"], ["https://data.delijn.be/stops/408284", "https://data.delijn.be/stops/408370"], ["https://data.delijn.be/stops/203191", "https://data.delijn.be/stops/211850"], ["https://data.delijn.be/stops/101551", "https://data.delijn.be/stops/107921"], ["https://data.delijn.be/stops/206486", "https://data.delijn.be/stops/206553"], ["https://data.delijn.be/stops/408228", "https://data.delijn.be/stops/408273"], ["https://data.delijn.be/stops/504294", "https://data.delijn.be/stops/504316"], ["https://data.delijn.be/stops/208546", "https://data.delijn.be/stops/208556"], ["https://data.delijn.be/stops/209665", "https://data.delijn.be/stops/209679"], ["https://data.delijn.be/stops/304787", "https://data.delijn.be/stops/304788"], ["https://data.delijn.be/stops/202193", "https://data.delijn.be/stops/203193"], ["https://data.delijn.be/stops/300829", "https://data.delijn.be/stops/306641"], ["https://data.delijn.be/stops/201420", "https://data.delijn.be/stops/201452"], ["https://data.delijn.be/stops/107115", "https://data.delijn.be/stops/107820"], ["https://data.delijn.be/stops/101011", "https://data.delijn.be/stops/104255"], ["https://data.delijn.be/stops/203904", "https://data.delijn.be/stops/203905"], ["https://data.delijn.be/stops/206974", "https://data.delijn.be/stops/207610"], ["https://data.delijn.be/stops/101015", "https://data.delijn.be/stops/101090"], ["https://data.delijn.be/stops/402717", "https://data.delijn.be/stops/308177"], ["https://data.delijn.be/stops/206800", "https://data.delijn.be/stops/208553"], ["https://data.delijn.be/stops/203672", "https://data.delijn.be/stops/203727"], ["https://data.delijn.be/stops/405839", "https://data.delijn.be/stops/409759"], ["https://data.delijn.be/stops/201644", "https://data.delijn.be/stops/203744"], ["https://data.delijn.be/stops/201850", "https://data.delijn.be/stops/202659"], ["https://data.delijn.be/stops/208854", "https://data.delijn.be/stops/209854"], ["https://data.delijn.be/stops/501064", "https://data.delijn.be/stops/501512"], ["https://data.delijn.be/stops/401412", "https://data.delijn.be/stops/307498"], ["https://data.delijn.be/stops/106610", "https://data.delijn.be/stops/109649"], ["https://data.delijn.be/stops/207371", "https://data.delijn.be/stops/207691"], ["https://data.delijn.be/stops/106723", "https://data.delijn.be/stops/106726"], ["https://data.delijn.be/stops/206110", "https://data.delijn.be/stops/207108"], ["https://data.delijn.be/stops/202892", "https://data.delijn.be/stops/203891"], ["https://data.delijn.be/stops/302638", "https://data.delijn.be/stops/308116"], ["https://data.delijn.be/stops/402507", "https://data.delijn.be/stops/405662"], ["https://data.delijn.be/stops/108551", "https://data.delijn.be/stops/109591"], ["https://data.delijn.be/stops/505349", "https://data.delijn.be/stops/505608"], ["https://data.delijn.be/stops/201777", "https://data.delijn.be/stops/201829"], ["https://data.delijn.be/stops/402708", "https://data.delijn.be/stops/405997"], ["https://data.delijn.be/stops/103094", "https://data.delijn.be/stops/108768"], ["https://data.delijn.be/stops/302110", "https://data.delijn.be/stops/302116"], ["https://data.delijn.be/stops/200273", "https://data.delijn.be/stops/201372"], ["https://data.delijn.be/stops/400503", "https://data.delijn.be/stops/402780"], ["https://data.delijn.be/stops/501268", "https://data.delijn.be/stops/501500"], ["https://data.delijn.be/stops/300783", "https://data.delijn.be/stops/308673"], ["https://data.delijn.be/stops/400390", "https://data.delijn.be/stops/406468"], ["https://data.delijn.be/stops/301355", "https://data.delijn.be/stops/304531"], ["https://data.delijn.be/stops/504356", "https://data.delijn.be/stops/509356"], ["https://data.delijn.be/stops/306552", "https://data.delijn.be/stops/306556"], ["https://data.delijn.be/stops/302218", "https://data.delijn.be/stops/302232"], ["https://data.delijn.be/stops/406753", "https://data.delijn.be/stops/408164"], ["https://data.delijn.be/stops/401074", "https://data.delijn.be/stops/408110"], ["https://data.delijn.be/stops/402850", "https://data.delijn.be/stops/402851"], ["https://data.delijn.be/stops/205384", "https://data.delijn.be/stops/205385"], ["https://data.delijn.be/stops/504615", "https://data.delijn.be/stops/509615"], ["https://data.delijn.be/stops/107285", "https://data.delijn.be/stops/107290"], ["https://data.delijn.be/stops/202088", "https://data.delijn.be/stops/203088"], ["https://data.delijn.be/stops/105180", "https://data.delijn.be/stops/105235"], ["https://data.delijn.be/stops/505109", "https://data.delijn.be/stops/509522"], ["https://data.delijn.be/stops/108386", "https://data.delijn.be/stops/108389"], ["https://data.delijn.be/stops/305230", "https://data.delijn.be/stops/305891"], ["https://data.delijn.be/stops/104488", "https://data.delijn.be/stops/104560"], ["https://data.delijn.be/stops/300547", "https://data.delijn.be/stops/302530"], ["https://data.delijn.be/stops/400574", "https://data.delijn.be/stops/403027"], ["https://data.delijn.be/stops/304704", "https://data.delijn.be/stops/304829"], ["https://data.delijn.be/stops/101988", "https://data.delijn.be/stops/105457"], ["https://data.delijn.be/stops/404664", "https://data.delijn.be/stops/404665"], ["https://data.delijn.be/stops/307031", "https://data.delijn.be/stops/307032"], ["https://data.delijn.be/stops/407975", "https://data.delijn.be/stops/408242"], ["https://data.delijn.be/stops/407832", "https://data.delijn.be/stops/407859"], ["https://data.delijn.be/stops/501236", "https://data.delijn.be/stops/506235"], ["https://data.delijn.be/stops/208158", "https://data.delijn.be/stops/208510"], ["https://data.delijn.be/stops/107660", "https://data.delijn.be/stops/107665"], ["https://data.delijn.be/stops/103537", "https://data.delijn.be/stops/103541"], ["https://data.delijn.be/stops/207016", "https://data.delijn.be/stops/207926"], ["https://data.delijn.be/stops/203765", "https://data.delijn.be/stops/203779"], ["https://data.delijn.be/stops/401342", "https://data.delijn.be/stops/410208"], ["https://data.delijn.be/stops/204016", "https://data.delijn.be/stops/205107"], ["https://data.delijn.be/stops/204387", "https://data.delijn.be/stops/204389"], ["https://data.delijn.be/stops/301443", "https://data.delijn.be/stops/306417"], ["https://data.delijn.be/stops/104941", "https://data.delijn.be/stops/104949"], ["https://data.delijn.be/stops/200971", "https://data.delijn.be/stops/207624"], ["https://data.delijn.be/stops/400754", "https://data.delijn.be/stops/408448"], ["https://data.delijn.be/stops/301408", "https://data.delijn.be/stops/301420"], ["https://data.delijn.be/stops/202901", "https://data.delijn.be/stops/203901"], ["https://data.delijn.be/stops/403157", "https://data.delijn.be/stops/403159"], ["https://data.delijn.be/stops/408153", "https://data.delijn.be/stops/410161"], ["https://data.delijn.be/stops/204143", "https://data.delijn.be/stops/206637"], ["https://data.delijn.be/stops/304326", "https://data.delijn.be/stops/304330"], ["https://data.delijn.be/stops/206096", "https://data.delijn.be/stops/207095"], ["https://data.delijn.be/stops/208667", "https://data.delijn.be/stops/218029"], ["https://data.delijn.be/stops/407271", "https://data.delijn.be/stops/407525"], ["https://data.delijn.be/stops/505022", "https://data.delijn.be/stops/505749"], ["https://data.delijn.be/stops/101014", "https://data.delijn.be/stops/102986"], ["https://data.delijn.be/stops/505835", "https://data.delijn.be/stops/506022"], ["https://data.delijn.be/stops/202037", "https://data.delijn.be/stops/203983"], ["https://data.delijn.be/stops/205669", "https://data.delijn.be/stops/205691"], ["https://data.delijn.be/stops/303321", "https://data.delijn.be/stops/305723"], ["https://data.delijn.be/stops/303663", "https://data.delijn.be/stops/306806"], ["https://data.delijn.be/stops/203877", "https://data.delijn.be/stops/203880"], ["https://data.delijn.be/stops/407733", "https://data.delijn.be/stops/409787"], ["https://data.delijn.be/stops/504331", "https://data.delijn.be/stops/504335"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/107025"], ["https://data.delijn.be/stops/404172", "https://data.delijn.be/stops/404196"], ["https://data.delijn.be/stops/200557", "https://data.delijn.be/stops/508021"], ["https://data.delijn.be/stops/106748", "https://data.delijn.be/stops/109776"], ["https://data.delijn.be/stops/305315", "https://data.delijn.be/stops/308642"], ["https://data.delijn.be/stops/201934", "https://data.delijn.be/stops/203343"], ["https://data.delijn.be/stops/401794", "https://data.delijn.be/stops/406352"], ["https://data.delijn.be/stops/501410", "https://data.delijn.be/stops/506410"], ["https://data.delijn.be/stops/502471", "https://data.delijn.be/stops/502476"], ["https://data.delijn.be/stops/406641", "https://data.delijn.be/stops/406683"], ["https://data.delijn.be/stops/504153", "https://data.delijn.be/stops/504855"], ["https://data.delijn.be/stops/301960", "https://data.delijn.be/stops/304534"], ["https://data.delijn.be/stops/107351", "https://data.delijn.be/stops/108176"], ["https://data.delijn.be/stops/103004", "https://data.delijn.be/stops/108186"], ["https://data.delijn.be/stops/103975", "https://data.delijn.be/stops/103985"], ["https://data.delijn.be/stops/206748", "https://data.delijn.be/stops/207741"], ["https://data.delijn.be/stops/204067", "https://data.delijn.be/stops/204225"], ["https://data.delijn.be/stops/105286", "https://data.delijn.be/stops/109881"], ["https://data.delijn.be/stops/405775", "https://data.delijn.be/stops/409757"], ["https://data.delijn.be/stops/104387", "https://data.delijn.be/stops/104393"], ["https://data.delijn.be/stops/201954", "https://data.delijn.be/stops/211123"], ["https://data.delijn.be/stops/206680", "https://data.delijn.be/stops/208101"], ["https://data.delijn.be/stops/409719", "https://data.delijn.be/stops/409725"], ["https://data.delijn.be/stops/301539", "https://data.delijn.be/stops/306960"], ["https://data.delijn.be/stops/302328", "https://data.delijn.be/stops/304823"], ["https://data.delijn.be/stops/305618", "https://data.delijn.be/stops/305825"], ["https://data.delijn.be/stops/206860", "https://data.delijn.be/stops/207484"], ["https://data.delijn.be/stops/401676", "https://data.delijn.be/stops/405960"], ["https://data.delijn.be/stops/501325", "https://data.delijn.be/stops/506565"], ["https://data.delijn.be/stops/107552", "https://data.delijn.be/stops/107553"], ["https://data.delijn.be/stops/108739", "https://data.delijn.be/stops/108774"], ["https://data.delijn.be/stops/301400", "https://data.delijn.be/stops/304698"], ["https://data.delijn.be/stops/503765", "https://data.delijn.be/stops/508756"], ["https://data.delijn.be/stops/505706", "https://data.delijn.be/stops/509884"], ["https://data.delijn.be/stops/101492", "https://data.delijn.be/stops/108303"], ["https://data.delijn.be/stops/504407", "https://data.delijn.be/stops/509407"], ["https://data.delijn.be/stops/302679", "https://data.delijn.be/stops/302680"], ["https://data.delijn.be/stops/304625", "https://data.delijn.be/stops/304626"], ["https://data.delijn.be/stops/102006", "https://data.delijn.be/stops/204488"], ["https://data.delijn.be/stops/102897", "https://data.delijn.be/stops/109102"], ["https://data.delijn.be/stops/107445", "https://data.delijn.be/stops/107470"], ["https://data.delijn.be/stops/408687", "https://data.delijn.be/stops/408706"], ["https://data.delijn.be/stops/103959", "https://data.delijn.be/stops/109581"], ["https://data.delijn.be/stops/202150", "https://data.delijn.be/stops/203150"], ["https://data.delijn.be/stops/300933", "https://data.delijn.be/stops/305270"], ["https://data.delijn.be/stops/501734", "https://data.delijn.be/stops/509897"], ["https://data.delijn.be/stops/401585", "https://data.delijn.be/stops/401594"], ["https://data.delijn.be/stops/406313", "https://data.delijn.be/stops/406331"], ["https://data.delijn.be/stops/504670", "https://data.delijn.be/stops/504671"], ["https://data.delijn.be/stops/400823", "https://data.delijn.be/stops/401908"], ["https://data.delijn.be/stops/207306", "https://data.delijn.be/stops/207307"], ["https://data.delijn.be/stops/109492", "https://data.delijn.be/stops/109494"], ["https://data.delijn.be/stops/500020", "https://data.delijn.be/stops/507114"], ["https://data.delijn.be/stops/201676", "https://data.delijn.be/stops/202401"], ["https://data.delijn.be/stops/303325", "https://data.delijn.be/stops/303326"], ["https://data.delijn.be/stops/409766", "https://data.delijn.be/stops/409767"], ["https://data.delijn.be/stops/504458", "https://data.delijn.be/stops/509458"], ["https://data.delijn.be/stops/209214", "https://data.delijn.be/stops/209429"], ["https://data.delijn.be/stops/401102", "https://data.delijn.be/stops/401140"], ["https://data.delijn.be/stops/204078", "https://data.delijn.be/stops/205199"], ["https://data.delijn.be/stops/405767", "https://data.delijn.be/stops/405883"], ["https://data.delijn.be/stops/300325", "https://data.delijn.be/stops/300329"], ["https://data.delijn.be/stops/505161", "https://data.delijn.be/stops/509876"], ["https://data.delijn.be/stops/202853", "https://data.delijn.be/stops/203852"], ["https://data.delijn.be/stops/104630", "https://data.delijn.be/stops/105650"], ["https://data.delijn.be/stops/400778", "https://data.delijn.be/stops/409613"], ["https://data.delijn.be/stops/303960", "https://data.delijn.be/stops/303965"], ["https://data.delijn.be/stops/210019", "https://data.delijn.be/stops/504991"], ["https://data.delijn.be/stops/301594", "https://data.delijn.be/stops/301595"], ["https://data.delijn.be/stops/107048", "https://data.delijn.be/stops/107051"], ["https://data.delijn.be/stops/202672", "https://data.delijn.be/stops/203673"], ["https://data.delijn.be/stops/208126", "https://data.delijn.be/stops/208449"], ["https://data.delijn.be/stops/400640", "https://data.delijn.be/stops/400921"], ["https://data.delijn.be/stops/102078", "https://data.delijn.be/stops/102079"], ["https://data.delijn.be/stops/404674", "https://data.delijn.be/stops/407214"], ["https://data.delijn.be/stops/303494", "https://data.delijn.be/stops/303495"], ["https://data.delijn.be/stops/104596", "https://data.delijn.be/stops/104597"], ["https://data.delijn.be/stops/209367", "https://data.delijn.be/stops/209639"], ["https://data.delijn.be/stops/203127", "https://data.delijn.be/stops/203598"], ["https://data.delijn.be/stops/305251", "https://data.delijn.be/stops/305252"], ["https://data.delijn.be/stops/203873", "https://data.delijn.be/stops/203874"], ["https://data.delijn.be/stops/403154", "https://data.delijn.be/stops/407585"], ["https://data.delijn.be/stops/108514", "https://data.delijn.be/stops/108518"], ["https://data.delijn.be/stops/101207", "https://data.delijn.be/stops/104928"], ["https://data.delijn.be/stops/501593", "https://data.delijn.be/stops/504511"], ["https://data.delijn.be/stops/305857", "https://data.delijn.be/stops/308615"], ["https://data.delijn.be/stops/103689", "https://data.delijn.be/stops/107578"], ["https://data.delijn.be/stops/408839", "https://data.delijn.be/stops/408927"], ["https://data.delijn.be/stops/305552", "https://data.delijn.be/stops/307845"], ["https://data.delijn.be/stops/308222", "https://data.delijn.be/stops/308287"], ["https://data.delijn.be/stops/108362", "https://data.delijn.be/stops/108503"], ["https://data.delijn.be/stops/409044", "https://data.delijn.be/stops/409444"], ["https://data.delijn.be/stops/201074", "https://data.delijn.be/stops/201075"], ["https://data.delijn.be/stops/503585", "https://data.delijn.be/stops/505581"], ["https://data.delijn.be/stops/101931", "https://data.delijn.be/stops/103672"], ["https://data.delijn.be/stops/109680", "https://data.delijn.be/stops/408449"], ["https://data.delijn.be/stops/108159", "https://data.delijn.be/stops/108161"], ["https://data.delijn.be/stops/107611", "https://data.delijn.be/stops/109719"], ["https://data.delijn.be/stops/403192", "https://data.delijn.be/stops/409314"], ["https://data.delijn.be/stops/200404", "https://data.delijn.be/stops/203983"], ["https://data.delijn.be/stops/301218", "https://data.delijn.be/stops/301224"], ["https://data.delijn.be/stops/504092", "https://data.delijn.be/stops/509641"], ["https://data.delijn.be/stops/502566", "https://data.delijn.be/stops/502567"], ["https://data.delijn.be/stops/508622", "https://data.delijn.be/stops/508628"], ["https://data.delijn.be/stops/300961", "https://data.delijn.be/stops/301154"], ["https://data.delijn.be/stops/300483", "https://data.delijn.be/stops/300484"], ["https://data.delijn.be/stops/406070", "https://data.delijn.be/stops/406071"], ["https://data.delijn.be/stops/402850", "https://data.delijn.be/stops/408981"], ["https://data.delijn.be/stops/407588", "https://data.delijn.be/stops/407619"], ["https://data.delijn.be/stops/208471", "https://data.delijn.be/stops/208472"], ["https://data.delijn.be/stops/404855", "https://data.delijn.be/stops/404881"], ["https://data.delijn.be/stops/305677", "https://data.delijn.be/stops/305686"], ["https://data.delijn.be/stops/107656", "https://data.delijn.be/stops/107658"], ["https://data.delijn.be/stops/106897", "https://data.delijn.be/stops/107213"], ["https://data.delijn.be/stops/301169", "https://data.delijn.be/stops/303202"], ["https://data.delijn.be/stops/307550", "https://data.delijn.be/stops/307556"], ["https://data.delijn.be/stops/407907", "https://data.delijn.be/stops/408007"], ["https://data.delijn.be/stops/502179", "https://data.delijn.be/stops/505555"], ["https://data.delijn.be/stops/405557", "https://data.delijn.be/stops/405573"], ["https://data.delijn.be/stops/401309", "https://data.delijn.be/stops/401314"], ["https://data.delijn.be/stops/107487", "https://data.delijn.be/stops/107489"], ["https://data.delijn.be/stops/407727", "https://data.delijn.be/stops/409779"], ["https://data.delijn.be/stops/502215", "https://data.delijn.be/stops/507215"], ["https://data.delijn.be/stops/402229", "https://data.delijn.be/stops/407328"], ["https://data.delijn.be/stops/401679", "https://data.delijn.be/stops/308167"], ["https://data.delijn.be/stops/103916", "https://data.delijn.be/stops/107239"], ["https://data.delijn.be/stops/104659", "https://data.delijn.be/stops/306759"], ["https://data.delijn.be/stops/405864", "https://data.delijn.be/stops/409425"], ["https://data.delijn.be/stops/407337", "https://data.delijn.be/stops/407630"], ["https://data.delijn.be/stops/104471", "https://data.delijn.be/stops/107903"], ["https://data.delijn.be/stops/202819", "https://data.delijn.be/stops/202911"], ["https://data.delijn.be/stops/109025", "https://data.delijn.be/stops/109030"], ["https://data.delijn.be/stops/301835", "https://data.delijn.be/stops/301882"], ["https://data.delijn.be/stops/501326", "https://data.delijn.be/stops/506326"], ["https://data.delijn.be/stops/102543", "https://data.delijn.be/stops/102547"], ["https://data.delijn.be/stops/204481", "https://data.delijn.be/stops/205252"], ["https://data.delijn.be/stops/208443", "https://data.delijn.be/stops/209442"], ["https://data.delijn.be/stops/407029", "https://data.delijn.be/stops/407033"], ["https://data.delijn.be/stops/202058", "https://data.delijn.be/stops/203058"], ["https://data.delijn.be/stops/509291", "https://data.delijn.be/stops/509532"], ["https://data.delijn.be/stops/306906", "https://data.delijn.be/stops/306908"], ["https://data.delijn.be/stops/108628", "https://data.delijn.be/stops/109678"], ["https://data.delijn.be/stops/304906", "https://data.delijn.be/stops/306388"], ["https://data.delijn.be/stops/106765", "https://data.delijn.be/stops/106866"], ["https://data.delijn.be/stops/408514", "https://data.delijn.be/stops/408813"], ["https://data.delijn.be/stops/501382", "https://data.delijn.be/stops/507249"], ["https://data.delijn.be/stops/409523", "https://data.delijn.be/stops/410164"], ["https://data.delijn.be/stops/103975", "https://data.delijn.be/stops/104285"], ["https://data.delijn.be/stops/406230", "https://data.delijn.be/stops/406231"], ["https://data.delijn.be/stops/204428", "https://data.delijn.be/stops/204429"], ["https://data.delijn.be/stops/204067", "https://data.delijn.be/stops/204095"], ["https://data.delijn.be/stops/108464", "https://data.delijn.be/stops/108467"], ["https://data.delijn.be/stops/504998", "https://data.delijn.be/stops/508879"], ["https://data.delijn.be/stops/502257", "https://data.delijn.be/stops/507919"], ["https://data.delijn.be/stops/307464", "https://data.delijn.be/stops/307465"], ["https://data.delijn.be/stops/502387", "https://data.delijn.be/stops/507518"], ["https://data.delijn.be/stops/509225", "https://data.delijn.be/stops/509884"], ["https://data.delijn.be/stops/205997", "https://data.delijn.be/stops/503642"], ["https://data.delijn.be/stops/300932", "https://data.delijn.be/stops/300987"], ["https://data.delijn.be/stops/107196", "https://data.delijn.be/stops/107197"], ["https://data.delijn.be/stops/105752", "https://data.delijn.be/stops/105753"], ["https://data.delijn.be/stops/502684", "https://data.delijn.be/stops/502699"], ["https://data.delijn.be/stops/302307", "https://data.delijn.be/stops/302322"], ["https://data.delijn.be/stops/503559", "https://data.delijn.be/stops/508559"], ["https://data.delijn.be/stops/101036", "https://data.delijn.be/stops/104502"], ["https://data.delijn.be/stops/301919", "https://data.delijn.be/stops/303163"], ["https://data.delijn.be/stops/207537", "https://data.delijn.be/stops/209741"], ["https://data.delijn.be/stops/408239", "https://data.delijn.be/stops/308289"], ["https://data.delijn.be/stops/507306", "https://data.delijn.be/stops/507316"], ["https://data.delijn.be/stops/102701", "https://data.delijn.be/stops/102944"], ["https://data.delijn.be/stops/504100", "https://data.delijn.be/stops/509102"], ["https://data.delijn.be/stops/502913", "https://data.delijn.be/stops/507022"], ["https://data.delijn.be/stops/103244", "https://data.delijn.be/stops/107959"], ["https://data.delijn.be/stops/209501", "https://data.delijn.be/stops/209502"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/406767"], ["https://data.delijn.be/stops/202023", "https://data.delijn.be/stops/202349"], ["https://data.delijn.be/stops/211109", "https://data.delijn.be/stops/211132"], ["https://data.delijn.be/stops/300129", "https://data.delijn.be/stops/300130"], ["https://data.delijn.be/stops/405265", "https://data.delijn.be/stops/405274"], ["https://data.delijn.be/stops/101880", "https://data.delijn.be/stops/101992"], ["https://data.delijn.be/stops/404343", "https://data.delijn.be/stops/404384"], ["https://data.delijn.be/stops/200047", "https://data.delijn.be/stops/200383"], ["https://data.delijn.be/stops/503390", "https://data.delijn.be/stops/508451"], ["https://data.delijn.be/stops/503896", "https://data.delijn.be/stops/509941"], ["https://data.delijn.be/stops/302986", "https://data.delijn.be/stops/303833"], ["https://data.delijn.be/stops/408065", "https://data.delijn.be/stops/408087"], ["https://data.delijn.be/stops/400127", "https://data.delijn.be/stops/409194"], ["https://data.delijn.be/stops/404406", "https://data.delijn.be/stops/404407"], ["https://data.delijn.be/stops/208272", "https://data.delijn.be/stops/209272"], ["https://data.delijn.be/stops/300132", "https://data.delijn.be/stops/300144"], ["https://data.delijn.be/stops/510011", "https://data.delijn.be/stops/510014"], ["https://data.delijn.be/stops/204585", "https://data.delijn.be/stops/204586"], ["https://data.delijn.be/stops/502006", "https://data.delijn.be/stops/507006"], ["https://data.delijn.be/stops/107487", "https://data.delijn.be/stops/305803"], ["https://data.delijn.be/stops/208738", "https://data.delijn.be/stops/209738"], ["https://data.delijn.be/stops/101435", "https://data.delijn.be/stops/107289"], ["https://data.delijn.be/stops/300747", "https://data.delijn.be/stops/302398"], ["https://data.delijn.be/stops/400112", "https://data.delijn.be/stops/400113"], ["https://data.delijn.be/stops/200701", "https://data.delijn.be/stops/201545"], ["https://data.delijn.be/stops/108881", "https://data.delijn.be/stops/108883"], ["https://data.delijn.be/stops/102617", "https://data.delijn.be/stops/108208"], ["https://data.delijn.be/stops/104036", "https://data.delijn.be/stops/108685"], ["https://data.delijn.be/stops/300267", "https://data.delijn.be/stops/300268"], ["https://data.delijn.be/stops/400158", "https://data.delijn.be/stops/409157"], ["https://data.delijn.be/stops/106917", "https://data.delijn.be/stops/106951"], ["https://data.delijn.be/stops/200912", "https://data.delijn.be/stops/203097"], ["https://data.delijn.be/stops/300843", "https://data.delijn.be/stops/304890"], ["https://data.delijn.be/stops/503630", "https://data.delijn.be/stops/509360"], ["https://data.delijn.be/stops/208386", "https://data.delijn.be/stops/209385"], ["https://data.delijn.be/stops/200783", "https://data.delijn.be/stops/211045"], ["https://data.delijn.be/stops/307066", "https://data.delijn.be/stops/307067"], ["https://data.delijn.be/stops/408092", "https://data.delijn.be/stops/408093"], ["https://data.delijn.be/stops/404427", "https://data.delijn.be/stops/410102"], ["https://data.delijn.be/stops/209050", "https://data.delijn.be/stops/209051"], ["https://data.delijn.be/stops/503240", "https://data.delijn.be/stops/503262"], ["https://data.delijn.be/stops/402219", "https://data.delijn.be/stops/405609"], ["https://data.delijn.be/stops/202849", "https://data.delijn.be/stops/202948"], ["https://data.delijn.be/stops/501107", "https://data.delijn.be/stops/506224"], ["https://data.delijn.be/stops/401399", "https://data.delijn.be/stops/300919"], ["https://data.delijn.be/stops/505019", "https://data.delijn.be/stops/505335"], ["https://data.delijn.be/stops/504518", "https://data.delijn.be/stops/505803"], ["https://data.delijn.be/stops/404726", "https://data.delijn.be/stops/408926"], ["https://data.delijn.be/stops/201925", "https://data.delijn.be/stops/207588"], ["https://data.delijn.be/stops/204189", "https://data.delijn.be/stops/204387"], ["https://data.delijn.be/stops/408106", "https://data.delijn.be/stops/408107"], ["https://data.delijn.be/stops/101389", "https://data.delijn.be/stops/107107"], ["https://data.delijn.be/stops/400953", "https://data.delijn.be/stops/407487"], ["https://data.delijn.be/stops/204502", "https://data.delijn.be/stops/204547"], ["https://data.delijn.be/stops/103274", "https://data.delijn.be/stops/107607"], ["https://data.delijn.be/stops/200751", "https://data.delijn.be/stops/200767"], ["https://data.delijn.be/stops/401442", "https://data.delijn.be/stops/401633"], ["https://data.delijn.be/stops/502380", "https://data.delijn.be/stops/502671"], ["https://data.delijn.be/stops/207610", "https://data.delijn.be/stops/207974"], ["https://data.delijn.be/stops/207181", "https://data.delijn.be/stops/308566"], ["https://data.delijn.be/stops/300812", "https://data.delijn.be/stops/306641"], ["https://data.delijn.be/stops/406551", "https://data.delijn.be/stops/406553"], ["https://data.delijn.be/stops/206988", "https://data.delijn.be/stops/206995"], ["https://data.delijn.be/stops/208653", "https://data.delijn.be/stops/209653"], ["https://data.delijn.be/stops/408020", "https://data.delijn.be/stops/408135"], ["https://data.delijn.be/stops/104022", "https://data.delijn.be/stops/106851"], ["https://data.delijn.be/stops/302788", "https://data.delijn.be/stops/307455"], ["https://data.delijn.be/stops/205678", "https://data.delijn.be/stops/205683"], ["https://data.delijn.be/stops/103684", "https://data.delijn.be/stops/106221"], ["https://data.delijn.be/stops/207794", "https://data.delijn.be/stops/208872"], ["https://data.delijn.be/stops/300572", "https://data.delijn.be/stops/307855"], ["https://data.delijn.be/stops/109246", "https://data.delijn.be/stops/109259"], ["https://data.delijn.be/stops/202538", "https://data.delijn.be/stops/219022"], ["https://data.delijn.be/stops/501043", "https://data.delijn.be/stops/506026"], ["https://data.delijn.be/stops/202849", "https://data.delijn.be/stops/203849"], ["https://data.delijn.be/stops/201797", "https://data.delijn.be/stops/211063"], ["https://data.delijn.be/stops/208250", "https://data.delijn.be/stops/209250"], ["https://data.delijn.be/stops/204334", "https://data.delijn.be/stops/205817"], ["https://data.delijn.be/stops/402832", "https://data.delijn.be/stops/409009"], ["https://data.delijn.be/stops/302849", "https://data.delijn.be/stops/302851"], ["https://data.delijn.be/stops/300200", "https://data.delijn.be/stops/304657"], ["https://data.delijn.be/stops/101285", "https://data.delijn.be/stops/101880"], ["https://data.delijn.be/stops/107576", "https://data.delijn.be/stops/107746"], ["https://data.delijn.be/stops/207282", "https://data.delijn.be/stops/207283"], ["https://data.delijn.be/stops/206841", "https://data.delijn.be/stops/207584"], ["https://data.delijn.be/stops/304729", "https://data.delijn.be/stops/304730"], ["https://data.delijn.be/stops/504551", "https://data.delijn.be/stops/509551"], ["https://data.delijn.be/stops/101204", "https://data.delijn.be/stops/101206"], ["https://data.delijn.be/stops/103671", "https://data.delijn.be/stops/103672"], ["https://data.delijn.be/stops/101370", "https://data.delijn.be/stops/102075"], ["https://data.delijn.be/stops/402813", "https://data.delijn.be/stops/409034"], ["https://data.delijn.be/stops/502945", "https://data.delijn.be/stops/507479"], ["https://data.delijn.be/stops/402597", "https://data.delijn.be/stops/402639"], ["https://data.delijn.be/stops/207789", "https://data.delijn.be/stops/209407"], ["https://data.delijn.be/stops/401435", "https://data.delijn.be/stops/401501"], ["https://data.delijn.be/stops/101850", "https://data.delijn.be/stops/108035"], ["https://data.delijn.be/stops/108051", "https://data.delijn.be/stops/307903"], ["https://data.delijn.be/stops/205418", "https://data.delijn.be/stops/205766"], ["https://data.delijn.be/stops/403662", "https://data.delijn.be/stops/404849"], ["https://data.delijn.be/stops/305649", "https://data.delijn.be/stops/305656"], ["https://data.delijn.be/stops/108934", "https://data.delijn.be/stops/108937"], ["https://data.delijn.be/stops/400837", "https://data.delijn.be/stops/404380"], ["https://data.delijn.be/stops/102109", "https://data.delijn.be/stops/109804"], ["https://data.delijn.be/stops/403038", "https://data.delijn.be/stops/403169"], ["https://data.delijn.be/stops/503874", "https://data.delijn.be/stops/508579"], ["https://data.delijn.be/stops/208427", "https://data.delijn.be/stops/208679"], ["https://data.delijn.be/stops/204649", "https://data.delijn.be/stops/205447"], ["https://data.delijn.be/stops/301987", "https://data.delijn.be/stops/302000"], ["https://data.delijn.be/stops/201928", "https://data.delijn.be/stops/202522"], ["https://data.delijn.be/stops/500002", "https://data.delijn.be/stops/503662"], ["https://data.delijn.be/stops/200256", "https://data.delijn.be/stops/200257"], ["https://data.delijn.be/stops/301576", "https://data.delijn.be/stops/308087"], ["https://data.delijn.be/stops/403213", "https://data.delijn.be/stops/403453"], ["https://data.delijn.be/stops/102023", "https://data.delijn.be/stops/102024"], ["https://data.delijn.be/stops/206125", "https://data.delijn.be/stops/207125"], ["https://data.delijn.be/stops/202687", "https://data.delijn.be/stops/202688"], ["https://data.delijn.be/stops/208668", "https://data.delijn.be/stops/208673"], ["https://data.delijn.be/stops/503227", "https://data.delijn.be/stops/503229"], ["https://data.delijn.be/stops/405799", "https://data.delijn.be/stops/409705"], ["https://data.delijn.be/stops/308159", "https://data.delijn.be/stops/308179"], ["https://data.delijn.be/stops/304476", "https://data.delijn.be/stops/304477"], ["https://data.delijn.be/stops/400865", "https://data.delijn.be/stops/400866"], ["https://data.delijn.be/stops/404849", "https://data.delijn.be/stops/405587"], ["https://data.delijn.be/stops/301435", "https://data.delijn.be/stops/306417"], ["https://data.delijn.be/stops/302014", "https://data.delijn.be/stops/302018"], ["https://data.delijn.be/stops/508622", "https://data.delijn.be/stops/590008"], ["https://data.delijn.be/stops/509040", "https://data.delijn.be/stops/509650"], ["https://data.delijn.be/stops/304592", "https://data.delijn.be/stops/304611"], ["https://data.delijn.be/stops/505772", "https://data.delijn.be/stops/507364"], ["https://data.delijn.be/stops/202397", "https://data.delijn.be/stops/203610"], ["https://data.delijn.be/stops/503654", "https://data.delijn.be/stops/504668"], ["https://data.delijn.be/stops/301039", "https://data.delijn.be/stops/307807"], ["https://data.delijn.be/stops/105489", "https://data.delijn.be/stops/105493"], ["https://data.delijn.be/stops/404915", "https://data.delijn.be/stops/404920"], ["https://data.delijn.be/stops/106793", "https://data.delijn.be/stops/106796"], ["https://data.delijn.be/stops/401946", "https://data.delijn.be/stops/404443"], ["https://data.delijn.be/stops/105260", "https://data.delijn.be/stops/105370"], ["https://data.delijn.be/stops/103710", "https://data.delijn.be/stops/106000"], ["https://data.delijn.be/stops/105072", "https://data.delijn.be/stops/108229"], ["https://data.delijn.be/stops/105474", "https://data.delijn.be/stops/109948"], ["https://data.delijn.be/stops/505933", "https://data.delijn.be/stops/507797"], ["https://data.delijn.be/stops/108162", "https://data.delijn.be/stops/108164"], ["https://data.delijn.be/stops/504625", "https://data.delijn.be/stops/505799"], ["https://data.delijn.be/stops/102580", "https://data.delijn.be/stops/108791"], ["https://data.delijn.be/stops/503693", "https://data.delijn.be/stops/503711"], ["https://data.delijn.be/stops/205297", "https://data.delijn.be/stops/205304"], ["https://data.delijn.be/stops/405002", "https://data.delijn.be/stops/408923"], ["https://data.delijn.be/stops/502399", "https://data.delijn.be/stops/507399"], ["https://data.delijn.be/stops/302617", "https://data.delijn.be/stops/302628"], ["https://data.delijn.be/stops/302240", "https://data.delijn.be/stops/304031"], ["https://data.delijn.be/stops/302413", "https://data.delijn.be/stops/302415"], ["https://data.delijn.be/stops/200118", "https://data.delijn.be/stops/201117"], ["https://data.delijn.be/stops/200679", "https://data.delijn.be/stops/201461"], ["https://data.delijn.be/stops/104762", "https://data.delijn.be/stops/108899"], ["https://data.delijn.be/stops/306925", "https://data.delijn.be/stops/306930"], ["https://data.delijn.be/stops/205735", "https://data.delijn.be/stops/205736"], ["https://data.delijn.be/stops/202776", "https://data.delijn.be/stops/203816"], ["https://data.delijn.be/stops/405187", "https://data.delijn.be/stops/405190"], ["https://data.delijn.be/stops/401149", "https://data.delijn.be/stops/402830"], ["https://data.delijn.be/stops/300872", "https://data.delijn.be/stops/302190"], ["https://data.delijn.be/stops/304150", "https://data.delijn.be/stops/307759"], ["https://data.delijn.be/stops/505340", "https://data.delijn.be/stops/507483"], ["https://data.delijn.be/stops/105574", "https://data.delijn.be/stops/105577"], ["https://data.delijn.be/stops/407059", "https://data.delijn.be/stops/407071"], ["https://data.delijn.be/stops/105053", "https://data.delijn.be/stops/304041"], ["https://data.delijn.be/stops/301080", "https://data.delijn.be/stops/308874"], ["https://data.delijn.be/stops/205528", "https://data.delijn.be/stops/205633"], ["https://data.delijn.be/stops/201399", "https://data.delijn.be/stops/205950"], ["https://data.delijn.be/stops/503183", "https://data.delijn.be/stops/508199"], ["https://data.delijn.be/stops/303446", "https://data.delijn.be/stops/303458"], ["https://data.delijn.be/stops/503271", "https://data.delijn.be/stops/503273"], ["https://data.delijn.be/stops/204995", "https://data.delijn.be/stops/303861"], ["https://data.delijn.be/stops/500874", "https://data.delijn.be/stops/503932"], ["https://data.delijn.be/stops/408010", "https://data.delijn.be/stops/408151"], ["https://data.delijn.be/stops/505160", "https://data.delijn.be/stops/505914"], ["https://data.delijn.be/stops/402120", "https://data.delijn.be/stops/402261"], ["https://data.delijn.be/stops/303793", "https://data.delijn.be/stops/303869"], ["https://data.delijn.be/stops/504281", "https://data.delijn.be/stops/504289"], ["https://data.delijn.be/stops/104165", "https://data.delijn.be/stops/107695"], ["https://data.delijn.be/stops/104699", "https://data.delijn.be/stops/104703"], ["https://data.delijn.be/stops/206861", "https://data.delijn.be/stops/207458"], ["https://data.delijn.be/stops/200832", "https://data.delijn.be/stops/200838"], ["https://data.delijn.be/stops/200075", "https://data.delijn.be/stops/201449"], ["https://data.delijn.be/stops/501488", "https://data.delijn.be/stops/506039"], ["https://data.delijn.be/stops/506487", "https://data.delijn.be/stops/506673"], ["https://data.delijn.be/stops/405456", "https://data.delijn.be/stops/405484"], ["https://data.delijn.be/stops/206614", "https://data.delijn.be/stops/207613"], ["https://data.delijn.be/stops/104895", "https://data.delijn.be/stops/104900"], ["https://data.delijn.be/stops/504977", "https://data.delijn.be/stops/505572"], ["https://data.delijn.be/stops/208674", "https://data.delijn.be/stops/208751"], ["https://data.delijn.be/stops/304371", "https://data.delijn.be/stops/307501"], ["https://data.delijn.be/stops/203723", "https://data.delijn.be/stops/203724"], ["https://data.delijn.be/stops/208057", "https://data.delijn.be/stops/208058"], ["https://data.delijn.be/stops/300207", "https://data.delijn.be/stops/300270"], ["https://data.delijn.be/stops/206252", "https://data.delijn.be/stops/206828"], ["https://data.delijn.be/stops/504799", "https://data.delijn.be/stops/507814"], ["https://data.delijn.be/stops/502007", "https://data.delijn.be/stops/505024"], ["https://data.delijn.be/stops/301569", "https://data.delijn.be/stops/303678"], ["https://data.delijn.be/stops/402046", "https://data.delijn.be/stops/410075"], ["https://data.delijn.be/stops/200039", "https://data.delijn.be/stops/201911"], ["https://data.delijn.be/stops/102298", "https://data.delijn.be/stops/103084"], ["https://data.delijn.be/stops/204736", "https://data.delijn.be/stops/205735"], ["https://data.delijn.be/stops/304088", "https://data.delijn.be/stops/304113"], ["https://data.delijn.be/stops/402740", "https://data.delijn.be/stops/406912"], ["https://data.delijn.be/stops/400128", "https://data.delijn.be/stops/403311"], ["https://data.delijn.be/stops/105023", "https://data.delijn.be/stops/105826"], ["https://data.delijn.be/stops/303163", "https://data.delijn.be/stops/303172"], ["https://data.delijn.be/stops/304533", "https://data.delijn.be/stops/304534"], ["https://data.delijn.be/stops/500129", "https://data.delijn.be/stops/507706"], ["https://data.delijn.be/stops/104598", "https://data.delijn.be/stops/107529"], ["https://data.delijn.be/stops/208691", "https://data.delijn.be/stops/208709"], ["https://data.delijn.be/stops/402845", "https://data.delijn.be/stops/405357"], ["https://data.delijn.be/stops/505835", "https://data.delijn.be/stops/506510"], ["https://data.delijn.be/stops/200667", "https://data.delijn.be/stops/201841"], ["https://data.delijn.be/stops/300127", "https://data.delijn.be/stops/300140"], ["https://data.delijn.be/stops/503780", "https://data.delijn.be/stops/505843"], ["https://data.delijn.be/stops/102965", "https://data.delijn.be/stops/105160"], ["https://data.delijn.be/stops/102382", "https://data.delijn.be/stops/106355"], ["https://data.delijn.be/stops/409155", "https://data.delijn.be/stops/409156"], ["https://data.delijn.be/stops/302229", "https://data.delijn.be/stops/302241"], ["https://data.delijn.be/stops/405715", "https://data.delijn.be/stops/405731"], ["https://data.delijn.be/stops/201810", "https://data.delijn.be/stops/505797"], ["https://data.delijn.be/stops/507949", "https://data.delijn.be/stops/507957"], ["https://data.delijn.be/stops/207760", "https://data.delijn.be/stops/207776"], ["https://data.delijn.be/stops/101908", "https://data.delijn.be/stops/101916"], ["https://data.delijn.be/stops/103473", "https://data.delijn.be/stops/109360"], ["https://data.delijn.be/stops/202254", "https://data.delijn.be/stops/202255"], ["https://data.delijn.be/stops/105319", "https://data.delijn.be/stops/105322"], ["https://data.delijn.be/stops/504333", "https://data.delijn.be/stops/509337"], ["https://data.delijn.be/stops/303314", "https://data.delijn.be/stops/307294"], ["https://data.delijn.be/stops/401838", "https://data.delijn.be/stops/406046"], ["https://data.delijn.be/stops/501764", "https://data.delijn.be/stops/503823"], ["https://data.delijn.be/stops/402321", "https://data.delijn.be/stops/402398"], ["https://data.delijn.be/stops/101590", "https://data.delijn.be/stops/109040"], ["https://data.delijn.be/stops/108047", "https://data.delijn.be/stops/108049"], ["https://data.delijn.be/stops/106426", "https://data.delijn.be/stops/106559"], ["https://data.delijn.be/stops/505030", "https://data.delijn.be/stops/505034"], ["https://data.delijn.be/stops/201876", "https://data.delijn.be/stops/203396"], ["https://data.delijn.be/stops/109925", "https://data.delijn.be/stops/109957"], ["https://data.delijn.be/stops/201521", "https://data.delijn.be/stops/201523"], ["https://data.delijn.be/stops/202771", "https://data.delijn.be/stops/202772"], ["https://data.delijn.be/stops/405351", "https://data.delijn.be/stops/302832"], ["https://data.delijn.be/stops/407804", "https://data.delijn.be/stops/407806"], ["https://data.delijn.be/stops/401581", "https://data.delijn.be/stops/401744"], ["https://data.delijn.be/stops/104446", "https://data.delijn.be/stops/303879"], ["https://data.delijn.be/stops/305429", "https://data.delijn.be/stops/305436"], ["https://data.delijn.be/stops/208774", "https://data.delijn.be/stops/209774"], ["https://data.delijn.be/stops/301350", "https://data.delijn.be/stops/303642"], ["https://data.delijn.be/stops/101820", "https://data.delijn.be/stops/105710"], ["https://data.delijn.be/stops/402715", "https://data.delijn.be/stops/308143"], ["https://data.delijn.be/stops/501221", "https://data.delijn.be/stops/506215"], ["https://data.delijn.be/stops/206272", "https://data.delijn.be/stops/206273"], ["https://data.delijn.be/stops/102291", "https://data.delijn.be/stops/106351"], ["https://data.delijn.be/stops/304371", "https://data.delijn.be/stops/306869"], ["https://data.delijn.be/stops/208803", "https://data.delijn.be/stops/209213"], ["https://data.delijn.be/stops/510018", "https://data.delijn.be/stops/510023"], ["https://data.delijn.be/stops/102991", "https://data.delijn.be/stops/109639"], ["https://data.delijn.be/stops/302141", "https://data.delijn.be/stops/308106"], ["https://data.delijn.be/stops/305215", "https://data.delijn.be/stops/308905"], ["https://data.delijn.be/stops/200978", "https://data.delijn.be/stops/201978"], ["https://data.delijn.be/stops/402659", "https://data.delijn.be/stops/410057"], ["https://data.delijn.be/stops/500951", "https://data.delijn.be/stops/509173"], ["https://data.delijn.be/stops/300029", "https://data.delijn.be/stops/303836"], ["https://data.delijn.be/stops/504278", "https://data.delijn.be/stops/504284"], ["https://data.delijn.be/stops/101312", "https://data.delijn.be/stops/106048"], ["https://data.delijn.be/stops/408523", "https://data.delijn.be/stops/408593"], ["https://data.delijn.be/stops/204363", "https://data.delijn.be/stops/205105"], ["https://data.delijn.be/stops/408575", "https://data.delijn.be/stops/408813"], ["https://data.delijn.be/stops/109054", "https://data.delijn.be/stops/405032"], ["https://data.delijn.be/stops/403948", "https://data.delijn.be/stops/403949"], ["https://data.delijn.be/stops/301902", "https://data.delijn.be/stops/306248"], ["https://data.delijn.be/stops/201902", "https://data.delijn.be/stops/203474"], ["https://data.delijn.be/stops/302165", "https://data.delijn.be/stops/307805"], ["https://data.delijn.be/stops/503648", "https://data.delijn.be/stops/503652"], ["https://data.delijn.be/stops/404670", "https://data.delijn.be/stops/404687"], ["https://data.delijn.be/stops/205984", "https://data.delijn.be/stops/219003"], ["https://data.delijn.be/stops/405730", "https://data.delijn.be/stops/405731"], ["https://data.delijn.be/stops/504417", "https://data.delijn.be/stops/509422"], ["https://data.delijn.be/stops/209102", "https://data.delijn.be/stops/209163"], ["https://data.delijn.be/stops/206107", "https://data.delijn.be/stops/207107"], ["https://data.delijn.be/stops/305112", "https://data.delijn.be/stops/305134"], ["https://data.delijn.be/stops/103529", "https://data.delijn.be/stops/103531"], ["https://data.delijn.be/stops/407685", "https://data.delijn.be/stops/407695"], ["https://data.delijn.be/stops/102708", "https://data.delijn.be/stops/102843"], ["https://data.delijn.be/stops/406674", "https://data.delijn.be/stops/406691"], ["https://data.delijn.be/stops/206345", "https://data.delijn.be/stops/206355"], ["https://data.delijn.be/stops/504783", "https://data.delijn.be/stops/508240"], ["https://data.delijn.be/stops/105905", "https://data.delijn.be/stops/108930"], ["https://data.delijn.be/stops/201559", "https://data.delijn.be/stops/210067"], ["https://data.delijn.be/stops/502755", "https://data.delijn.be/stops/505651"], ["https://data.delijn.be/stops/404759", "https://data.delijn.be/stops/405359"], ["https://data.delijn.be/stops/102180", "https://data.delijn.be/stops/107133"], ["https://data.delijn.be/stops/201825", "https://data.delijn.be/stops/202794"], ["https://data.delijn.be/stops/200239", "https://data.delijn.be/stops/201275"], ["https://data.delijn.be/stops/401728", "https://data.delijn.be/stops/401834"], ["https://data.delijn.be/stops/406552", "https://data.delijn.be/stops/406553"], ["https://data.delijn.be/stops/201154", "https://data.delijn.be/stops/202359"], ["https://data.delijn.be/stops/102531", "https://data.delijn.be/stops/408253"], ["https://data.delijn.be/stops/200728", "https://data.delijn.be/stops/202593"], ["https://data.delijn.be/stops/209107", "https://data.delijn.be/stops/219030"], ["https://data.delijn.be/stops/307392", "https://data.delijn.be/stops/307630"], ["https://data.delijn.be/stops/300180", "https://data.delijn.be/stops/300223"], ["https://data.delijn.be/stops/402626", "https://data.delijn.be/stops/405561"], ["https://data.delijn.be/stops/108399", "https://data.delijn.be/stops/108402"], ["https://data.delijn.be/stops/206947", "https://data.delijn.be/stops/209542"], ["https://data.delijn.be/stops/401490", "https://data.delijn.be/stops/401491"], ["https://data.delijn.be/stops/507943", "https://data.delijn.be/stops/507944"], ["https://data.delijn.be/stops/501555", "https://data.delijn.be/stops/501556"], ["https://data.delijn.be/stops/203403", "https://data.delijn.be/stops/210116"], ["https://data.delijn.be/stops/501183", "https://data.delijn.be/stops/506183"], ["https://data.delijn.be/stops/501320", "https://data.delijn.be/stops/506284"], ["https://data.delijn.be/stops/503790", "https://data.delijn.be/stops/508788"], ["https://data.delijn.be/stops/109645", "https://data.delijn.be/stops/109646"], ["https://data.delijn.be/stops/302678", "https://data.delijn.be/stops/302685"], ["https://data.delijn.be/stops/504346", "https://data.delijn.be/stops/509346"], ["https://data.delijn.be/stops/200249", "https://data.delijn.be/stops/201235"], ["https://data.delijn.be/stops/106722", "https://data.delijn.be/stops/109672"], ["https://data.delijn.be/stops/304264", "https://data.delijn.be/stops/304271"], ["https://data.delijn.be/stops/406660", "https://data.delijn.be/stops/406669"], ["https://data.delijn.be/stops/305743", "https://data.delijn.be/stops/306308"], ["https://data.delijn.be/stops/200452", "https://data.delijn.be/stops/209273"], ["https://data.delijn.be/stops/102965", "https://data.delijn.be/stops/104111"], ["https://data.delijn.be/stops/503481", "https://data.delijn.be/stops/503488"], ["https://data.delijn.be/stops/406444", "https://data.delijn.be/stops/406449"], ["https://data.delijn.be/stops/202790", "https://data.delijn.be/stops/203790"], ["https://data.delijn.be/stops/104662", "https://data.delijn.be/stops/108468"], ["https://data.delijn.be/stops/503579", "https://data.delijn.be/stops/508543"], ["https://data.delijn.be/stops/209486", "https://data.delijn.be/stops/209487"], ["https://data.delijn.be/stops/501391", "https://data.delijn.be/stops/506392"], ["https://data.delijn.be/stops/109057", "https://data.delijn.be/stops/109065"], ["https://data.delijn.be/stops/505536", "https://data.delijn.be/stops/505543"], ["https://data.delijn.be/stops/101235", "https://data.delijn.be/stops/105800"], ["https://data.delijn.be/stops/300279", "https://data.delijn.be/stops/300280"], ["https://data.delijn.be/stops/407645", "https://data.delijn.be/stops/407651"], ["https://data.delijn.be/stops/509243", "https://data.delijn.be/stops/509562"], ["https://data.delijn.be/stops/405069", "https://data.delijn.be/stops/406548"], ["https://data.delijn.be/stops/210055", "https://data.delijn.be/stops/210123"], ["https://data.delijn.be/stops/503934", "https://data.delijn.be/stops/505306"], ["https://data.delijn.be/stops/301267", "https://data.delijn.be/stops/308029"], ["https://data.delijn.be/stops/404466", "https://data.delijn.be/stops/406753"], ["https://data.delijn.be/stops/400796", "https://data.delijn.be/stops/400797"], ["https://data.delijn.be/stops/200222", "https://data.delijn.be/stops/202450"], ["https://data.delijn.be/stops/109214", "https://data.delijn.be/stops/109215"], ["https://data.delijn.be/stops/203993", "https://data.delijn.be/stops/210849"], ["https://data.delijn.be/stops/405911", "https://data.delijn.be/stops/409696"], ["https://data.delijn.be/stops/101378", "https://data.delijn.be/stops/107302"], ["https://data.delijn.be/stops/405847", "https://data.delijn.be/stops/409663"], ["https://data.delijn.be/stops/402290", "https://data.delijn.be/stops/402320"], ["https://data.delijn.be/stops/407924", "https://data.delijn.be/stops/407925"], ["https://data.delijn.be/stops/503270", "https://data.delijn.be/stops/508274"], ["https://data.delijn.be/stops/404596", "https://data.delijn.be/stops/406950"], ["https://data.delijn.be/stops/305258", "https://data.delijn.be/stops/305893"], ["https://data.delijn.be/stops/200165", "https://data.delijn.be/stops/201165"], ["https://data.delijn.be/stops/405214", "https://data.delijn.be/stops/406726"], ["https://data.delijn.be/stops/307735", "https://data.delijn.be/stops/307736"], ["https://data.delijn.be/stops/206642", "https://data.delijn.be/stops/207643"], ["https://data.delijn.be/stops/308209", "https://data.delijn.be/stops/308211"], ["https://data.delijn.be/stops/104021", "https://data.delijn.be/stops/107214"], ["https://data.delijn.be/stops/204916", "https://data.delijn.be/stops/204917"], ["https://data.delijn.be/stops/404215", "https://data.delijn.be/stops/404239"], ["https://data.delijn.be/stops/502613", "https://data.delijn.be/stops/507613"], ["https://data.delijn.be/stops/404743", "https://data.delijn.be/stops/404945"], ["https://data.delijn.be/stops/106277", "https://data.delijn.be/stops/109634"], ["https://data.delijn.be/stops/104669", "https://data.delijn.be/stops/104671"], ["https://data.delijn.be/stops/206574", "https://data.delijn.be/stops/207575"], ["https://data.delijn.be/stops/303148", "https://data.delijn.be/stops/306086"], ["https://data.delijn.be/stops/503656", "https://data.delijn.be/stops/503658"], ["https://data.delijn.be/stops/401979", "https://data.delijn.be/stops/401980"], ["https://data.delijn.be/stops/401855", "https://data.delijn.be/stops/406347"], ["https://data.delijn.be/stops/301814", "https://data.delijn.be/stops/305545"], ["https://data.delijn.be/stops/405406", "https://data.delijn.be/stops/405420"], ["https://data.delijn.be/stops/106497", "https://data.delijn.be/stops/107062"], ["https://data.delijn.be/stops/302497", "https://data.delijn.be/stops/302716"], ["https://data.delijn.be/stops/108824", "https://data.delijn.be/stops/108826"], ["https://data.delijn.be/stops/503645", "https://data.delijn.be/stops/504535"], ["https://data.delijn.be/stops/101958", "https://data.delijn.be/stops/109304"], ["https://data.delijn.be/stops/104757", "https://data.delijn.be/stops/108893"], ["https://data.delijn.be/stops/208489", "https://data.delijn.be/stops/209485"], ["https://data.delijn.be/stops/406404", "https://data.delijn.be/stops/409779"], ["https://data.delijn.be/stops/300926", "https://data.delijn.be/stops/300927"], ["https://data.delijn.be/stops/300981", "https://data.delijn.be/stops/301082"], ["https://data.delijn.be/stops/502531", "https://data.delijn.be/stops/502586"], ["https://data.delijn.be/stops/201185", "https://data.delijn.be/stops/203756"], ["https://data.delijn.be/stops/210036", "https://data.delijn.be/stops/211036"], ["https://data.delijn.be/stops/400790", "https://data.delijn.be/stops/400886"], ["https://data.delijn.be/stops/107636", "https://data.delijn.be/stops/107641"], ["https://data.delijn.be/stops/505708", "https://data.delijn.be/stops/509685"], ["https://data.delijn.be/stops/202200", "https://data.delijn.be/stops/203201"], ["https://data.delijn.be/stops/102420", "https://data.delijn.be/stops/105405"], ["https://data.delijn.be/stops/305183", "https://data.delijn.be/stops/305205"], ["https://data.delijn.be/stops/206188", "https://data.delijn.be/stops/207954"], ["https://data.delijn.be/stops/204501", "https://data.delijn.be/stops/205533"], ["https://data.delijn.be/stops/304240", "https://data.delijn.be/stops/304489"], ["https://data.delijn.be/stops/501355", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/500127", "https://data.delijn.be/stops/507476"], ["https://data.delijn.be/stops/503399", "https://data.delijn.be/stops/508400"], ["https://data.delijn.be/stops/301188", "https://data.delijn.be/stops/303625"], ["https://data.delijn.be/stops/505189", "https://data.delijn.be/stops/505369"], ["https://data.delijn.be/stops/504665", "https://data.delijn.be/stops/509371"], ["https://data.delijn.be/stops/503745", "https://data.delijn.be/stops/508747"], ["https://data.delijn.be/stops/404910", "https://data.delijn.be/stops/404911"], ["https://data.delijn.be/stops/402512", "https://data.delijn.be/stops/402515"], ["https://data.delijn.be/stops/503601", "https://data.delijn.be/stops/508604"], ["https://data.delijn.be/stops/206526", "https://data.delijn.be/stops/207525"], ["https://data.delijn.be/stops/203389", "https://data.delijn.be/stops/203436"], ["https://data.delijn.be/stops/407262", "https://data.delijn.be/stops/410255"], ["https://data.delijn.be/stops/400057", "https://data.delijn.be/stops/401976"], ["https://data.delijn.be/stops/501219", "https://data.delijn.be/stops/505355"], ["https://data.delijn.be/stops/101090", "https://data.delijn.be/stops/102125"], ["https://data.delijn.be/stops/307372", "https://data.delijn.be/stops/307395"], ["https://data.delijn.be/stops/400499", "https://data.delijn.be/stops/400908"], ["https://data.delijn.be/stops/300022", "https://data.delijn.be/stops/307000"], ["https://data.delijn.be/stops/504037", "https://data.delijn.be/stops/509042"], ["https://data.delijn.be/stops/101837", "https://data.delijn.be/stops/108234"], ["https://data.delijn.be/stops/505289", "https://data.delijn.be/stops/505960"], ["https://data.delijn.be/stops/507044", "https://data.delijn.be/stops/507081"], ["https://data.delijn.be/stops/102962", "https://data.delijn.be/stops/109253"], ["https://data.delijn.be/stops/404435", "https://data.delijn.be/stops/404440"], ["https://data.delijn.be/stops/408490", "https://data.delijn.be/stops/409162"], ["https://data.delijn.be/stops/201701", "https://data.delijn.be/stops/202560"], ["https://data.delijn.be/stops/109017", "https://data.delijn.be/stops/109049"], ["https://data.delijn.be/stops/403374", "https://data.delijn.be/stops/409296"], ["https://data.delijn.be/stops/206750", "https://data.delijn.be/stops/208473"], ["https://data.delijn.be/stops/403837", "https://data.delijn.be/stops/410114"], ["https://data.delijn.be/stops/301631", "https://data.delijn.be/stops/302117"], ["https://data.delijn.be/stops/102265", "https://data.delijn.be/stops/103095"], ["https://data.delijn.be/stops/209598", "https://data.delijn.be/stops/307335"], ["https://data.delijn.be/stops/207805", "https://data.delijn.be/stops/306731"], ["https://data.delijn.be/stops/407670", "https://data.delijn.be/stops/407671"], ["https://data.delijn.be/stops/501334", "https://data.delijn.be/stops/506266"], ["https://data.delijn.be/stops/204216", "https://data.delijn.be/stops/205217"], ["https://data.delijn.be/stops/105082", "https://data.delijn.be/stops/106830"], ["https://data.delijn.be/stops/203097", "https://data.delijn.be/stops/203098"], ["https://data.delijn.be/stops/207089", "https://data.delijn.be/stops/207090"], ["https://data.delijn.be/stops/103968", "https://data.delijn.be/stops/105763"], ["https://data.delijn.be/stops/206553", "https://data.delijn.be/stops/207486"], ["https://data.delijn.be/stops/405426", "https://data.delijn.be/stops/409302"], ["https://data.delijn.be/stops/200229", "https://data.delijn.be/stops/201172"], ["https://data.delijn.be/stops/404856", "https://data.delijn.be/stops/404857"], ["https://data.delijn.be/stops/105893", "https://data.delijn.be/stops/105896"], ["https://data.delijn.be/stops/300393", "https://data.delijn.be/stops/304635"], ["https://data.delijn.be/stops/206745", "https://data.delijn.be/stops/207711"], ["https://data.delijn.be/stops/508625", "https://data.delijn.be/stops/508632"], ["https://data.delijn.be/stops/303934", "https://data.delijn.be/stops/304575"], ["https://data.delijn.be/stops/304409", "https://data.delijn.be/stops/304415"], ["https://data.delijn.be/stops/204679", "https://data.delijn.be/stops/205615"], ["https://data.delijn.be/stops/304365", "https://data.delijn.be/stops/307373"], ["https://data.delijn.be/stops/300092", "https://data.delijn.be/stops/300093"], ["https://data.delijn.be/stops/402207", "https://data.delijn.be/stops/402499"], ["https://data.delijn.be/stops/403274", "https://data.delijn.be/stops/410336"], ["https://data.delijn.be/stops/402369", "https://data.delijn.be/stops/402612"], ["https://data.delijn.be/stops/101519", "https://data.delijn.be/stops/102407"], ["https://data.delijn.be/stops/504289", "https://data.delijn.be/stops/509283"], ["https://data.delijn.be/stops/200191", "https://data.delijn.be/stops/201190"], ["https://data.delijn.be/stops/410010", "https://data.delijn.be/stops/410277"], ["https://data.delijn.be/stops/203963", "https://data.delijn.be/stops/206270"], ["https://data.delijn.be/stops/407225", "https://data.delijn.be/stops/407488"], ["https://data.delijn.be/stops/108373", "https://data.delijn.be/stops/108462"], ["https://data.delijn.be/stops/502070", "https://data.delijn.be/stops/507070"], ["https://data.delijn.be/stops/203275", "https://data.delijn.be/stops/203423"], ["https://data.delijn.be/stops/503480", "https://data.delijn.be/stops/508480"], ["https://data.delijn.be/stops/306669", "https://data.delijn.be/stops/306671"], ["https://data.delijn.be/stops/304957", "https://data.delijn.be/stops/304973"], ["https://data.delijn.be/stops/304442", "https://data.delijn.be/stops/304443"], ["https://data.delijn.be/stops/504463", "https://data.delijn.be/stops/509462"], ["https://data.delijn.be/stops/102011", "https://data.delijn.be/stops/102012"], ["https://data.delijn.be/stops/505113", "https://data.delijn.be/stops/505301"], ["https://data.delijn.be/stops/504007", "https://data.delijn.be/stops/504424"], ["https://data.delijn.be/stops/208693", "https://data.delijn.be/stops/208724"], ["https://data.delijn.be/stops/302213", "https://data.delijn.be/stops/302248"], ["https://data.delijn.be/stops/405711", "https://data.delijn.be/stops/410143"], ["https://data.delijn.be/stops/106200", "https://data.delijn.be/stops/106201"], ["https://data.delijn.be/stops/404137", "https://data.delijn.be/stops/404179"], ["https://data.delijn.be/stops/301510", "https://data.delijn.be/stops/301527"], ["https://data.delijn.be/stops/301857", "https://data.delijn.be/stops/302051"], ["https://data.delijn.be/stops/103221", "https://data.delijn.be/stops/104571"], ["https://data.delijn.be/stops/401093", "https://data.delijn.be/stops/409815"], ["https://data.delijn.be/stops/508656", "https://data.delijn.be/stops/508748"], ["https://data.delijn.be/stops/103515", "https://data.delijn.be/stops/106015"], ["https://data.delijn.be/stops/502032", "https://data.delijn.be/stops/507661"], ["https://data.delijn.be/stops/301810", "https://data.delijn.be/stops/304684"], ["https://data.delijn.be/stops/204307", "https://data.delijn.be/stops/205309"], ["https://data.delijn.be/stops/211850", "https://data.delijn.be/stops/211855"], ["https://data.delijn.be/stops/306765", "https://data.delijn.be/stops/308816"], ["https://data.delijn.be/stops/405312", "https://data.delijn.be/stops/406395"], ["https://data.delijn.be/stops/501420", "https://data.delijn.be/stops/505528"], ["https://data.delijn.be/stops/202403", "https://data.delijn.be/stops/203402"], ["https://data.delijn.be/stops/504299", "https://data.delijn.be/stops/509861"], ["https://data.delijn.be/stops/503597", "https://data.delijn.be/stops/508593"], ["https://data.delijn.be/stops/304660", "https://data.delijn.be/stops/304661"], ["https://data.delijn.be/stops/501018", "https://data.delijn.be/stops/501534"], ["https://data.delijn.be/stops/308794", "https://data.delijn.be/stops/308796"], ["https://data.delijn.be/stops/103643", "https://data.delijn.be/stops/107182"], ["https://data.delijn.be/stops/501510", "https://data.delijn.be/stops/501532"], ["https://data.delijn.be/stops/402936", "https://data.delijn.be/stops/402938"], ["https://data.delijn.be/stops/504849", "https://data.delijn.be/stops/508742"], ["https://data.delijn.be/stops/503958", "https://data.delijn.be/stops/508959"], ["https://data.delijn.be/stops/300721", "https://data.delijn.be/stops/300738"], ["https://data.delijn.be/stops/202387", "https://data.delijn.be/stops/203447"], ["https://data.delijn.be/stops/506101", "https://data.delijn.be/stops/590331"], ["https://data.delijn.be/stops/204976", "https://data.delijn.be/stops/209248"], ["https://data.delijn.be/stops/201699", "https://data.delijn.be/stops/202781"], ["https://data.delijn.be/stops/202373", "https://data.delijn.be/stops/202374"], ["https://data.delijn.be/stops/108767", "https://data.delijn.be/stops/108777"], ["https://data.delijn.be/stops/304762", "https://data.delijn.be/stops/308699"], ["https://data.delijn.be/stops/101397", "https://data.delijn.be/stops/101553"], ["https://data.delijn.be/stops/505092", "https://data.delijn.be/stops/505310"], ["https://data.delijn.be/stops/301953", "https://data.delijn.be/stops/303227"], ["https://data.delijn.be/stops/208501", "https://data.delijn.be/stops/209480"], ["https://data.delijn.be/stops/304309", "https://data.delijn.be/stops/304310"], ["https://data.delijn.be/stops/408233", "https://data.delijn.be/stops/408248"], ["https://data.delijn.be/stops/209178", "https://data.delijn.be/stops/209179"], ["https://data.delijn.be/stops/201061", "https://data.delijn.be/stops/202133"], ["https://data.delijn.be/stops/406496", "https://data.delijn.be/stops/406497"], ["https://data.delijn.be/stops/202599", "https://data.delijn.be/stops/203126"], ["https://data.delijn.be/stops/406362", "https://data.delijn.be/stops/409203"], ["https://data.delijn.be/stops/302327", "https://data.delijn.be/stops/302343"], ["https://data.delijn.be/stops/501012", "https://data.delijn.be/stops/501714"], ["https://data.delijn.be/stops/303132", "https://data.delijn.be/stops/303135"], ["https://data.delijn.be/stops/202184", "https://data.delijn.be/stops/203184"], ["https://data.delijn.be/stops/505061", "https://data.delijn.be/stops/505652"], ["https://data.delijn.be/stops/104513", "https://data.delijn.be/stops/104515"], ["https://data.delijn.be/stops/103279", "https://data.delijn.be/stops/107400"], ["https://data.delijn.be/stops/304925", "https://data.delijn.be/stops/304927"], ["https://data.delijn.be/stops/406249", "https://data.delijn.be/stops/406256"], ["https://data.delijn.be/stops/508159", "https://data.delijn.be/stops/508265"], ["https://data.delijn.be/stops/208024", "https://data.delijn.be/stops/209011"], ["https://data.delijn.be/stops/101865", "https://data.delijn.be/stops/105895"], ["https://data.delijn.be/stops/503025", "https://data.delijn.be/stops/503678"], ["https://data.delijn.be/stops/408027", "https://data.delijn.be/stops/301841"], ["https://data.delijn.be/stops/404463", "https://data.delijn.be/stops/404464"], ["https://data.delijn.be/stops/403138", "https://data.delijn.be/stops/403666"], ["https://data.delijn.be/stops/301929", "https://data.delijn.be/stops/304492"], ["https://data.delijn.be/stops/305227", "https://data.delijn.be/stops/305230"], ["https://data.delijn.be/stops/404480", "https://data.delijn.be/stops/404481"], ["https://data.delijn.be/stops/408736", "https://data.delijn.be/stops/408737"], ["https://data.delijn.be/stops/506598", "https://data.delijn.be/stops/506609"], ["https://data.delijn.be/stops/300891", "https://data.delijn.be/stops/305928"], ["https://data.delijn.be/stops/104821", "https://data.delijn.be/stops/108452"], ["https://data.delijn.be/stops/200475", "https://data.delijn.be/stops/211855"], ["https://data.delijn.be/stops/201747", "https://data.delijn.be/stops/202157"], ["https://data.delijn.be/stops/107967", "https://data.delijn.be/stops/108428"], ["https://data.delijn.be/stops/104042", "https://data.delijn.be/stops/108372"], ["https://data.delijn.be/stops/503351", "https://data.delijn.be/stops/508375"], ["https://data.delijn.be/stops/307819", "https://data.delijn.be/stops/308755"], ["https://data.delijn.be/stops/504999", "https://data.delijn.be/stops/508061"], ["https://data.delijn.be/stops/206083", "https://data.delijn.be/stops/206084"], ["https://data.delijn.be/stops/304042", "https://data.delijn.be/stops/305835"], ["https://data.delijn.be/stops/203503", "https://data.delijn.be/stops/203504"], ["https://data.delijn.be/stops/406157", "https://data.delijn.be/stops/406225"], ["https://data.delijn.be/stops/303960", "https://data.delijn.be/stops/304177"], ["https://data.delijn.be/stops/307939", "https://data.delijn.be/stops/308774"], ["https://data.delijn.be/stops/209074", "https://data.delijn.be/stops/209075"], ["https://data.delijn.be/stops/306188", "https://data.delijn.be/stops/306294"], ["https://data.delijn.be/stops/406248", "https://data.delijn.be/stops/406256"], ["https://data.delijn.be/stops/406294", "https://data.delijn.be/stops/410359"], ["https://data.delijn.be/stops/404667", "https://data.delijn.be/stops/410133"], ["https://data.delijn.be/stops/407154", "https://data.delijn.be/stops/409514"], ["https://data.delijn.be/stops/400710", "https://data.delijn.be/stops/400711"], ["https://data.delijn.be/stops/205370", "https://data.delijn.be/stops/205760"], ["https://data.delijn.be/stops/207980", "https://data.delijn.be/stops/307768"], ["https://data.delijn.be/stops/201872", "https://data.delijn.be/stops/203425"], ["https://data.delijn.be/stops/301282", "https://data.delijn.be/stops/301906"], ["https://data.delijn.be/stops/105419", "https://data.delijn.be/stops/105426"], ["https://data.delijn.be/stops/403295", "https://data.delijn.be/stops/409173"], ["https://data.delijn.be/stops/502653", "https://data.delijn.be/stops/502665"], ["https://data.delijn.be/stops/204196", "https://data.delijn.be/stops/204197"], ["https://data.delijn.be/stops/504153", "https://data.delijn.be/stops/504988"], ["https://data.delijn.be/stops/507087", "https://data.delijn.be/stops/507732"], ["https://data.delijn.be/stops/206785", "https://data.delijn.be/stops/301428"], ["https://data.delijn.be/stops/502126", "https://data.delijn.be/stops/502167"], ["https://data.delijn.be/stops/208768", "https://data.delijn.be/stops/209780"], ["https://data.delijn.be/stops/500136", "https://data.delijn.be/stops/590333"], ["https://data.delijn.be/stops/105266", "https://data.delijn.be/stops/105349"], ["https://data.delijn.be/stops/408343", "https://data.delijn.be/stops/408345"], ["https://data.delijn.be/stops/407234", "https://data.delijn.be/stops/407506"], ["https://data.delijn.be/stops/102979", "https://data.delijn.be/stops/109523"], ["https://data.delijn.be/stops/106674", "https://data.delijn.be/stops/109672"], ["https://data.delijn.be/stops/104892", "https://data.delijn.be/stops/109311"], ["https://data.delijn.be/stops/307389", "https://data.delijn.be/stops/307390"], ["https://data.delijn.be/stops/405453", "https://data.delijn.be/stops/405655"], ["https://data.delijn.be/stops/304330", "https://data.delijn.be/stops/304339"], ["https://data.delijn.be/stops/205064", "https://data.delijn.be/stops/205340"], ["https://data.delijn.be/stops/405808", "https://data.delijn.be/stops/409696"], ["https://data.delijn.be/stops/504635", "https://data.delijn.be/stops/505363"], ["https://data.delijn.be/stops/404116", "https://data.delijn.be/stops/408554"], ["https://data.delijn.be/stops/407201", "https://data.delijn.be/stops/407212"], ["https://data.delijn.be/stops/303096", "https://data.delijn.be/stops/303999"], ["https://data.delijn.be/stops/201696", "https://data.delijn.be/stops/202390"], ["https://data.delijn.be/stops/303567", "https://data.delijn.be/stops/303568"], ["https://data.delijn.be/stops/409701", "https://data.delijn.be/stops/409704"], ["https://data.delijn.be/stops/308649", "https://data.delijn.be/stops/308684"], ["https://data.delijn.be/stops/302318", "https://data.delijn.be/stops/308784"], ["https://data.delijn.be/stops/107456", "https://data.delijn.be/stops/107461"], ["https://data.delijn.be/stops/300365", "https://data.delijn.be/stops/307726"], ["https://data.delijn.be/stops/106188", "https://data.delijn.be/stops/106190"], ["https://data.delijn.be/stops/204397", "https://data.delijn.be/stops/205397"], ["https://data.delijn.be/stops/202104", "https://data.delijn.be/stops/202105"], ["https://data.delijn.be/stops/206430", "https://data.delijn.be/stops/209690"], ["https://data.delijn.be/stops/300106", "https://data.delijn.be/stops/307730"], ["https://data.delijn.be/stops/500998", "https://data.delijn.be/stops/504408"], ["https://data.delijn.be/stops/200947", "https://data.delijn.be/stops/208857"], ["https://data.delijn.be/stops/401111", "https://data.delijn.be/stops/401115"], ["https://data.delijn.be/stops/102998", "https://data.delijn.be/stops/107413"], ["https://data.delijn.be/stops/501742", "https://data.delijn.be/stops/504498"], ["https://data.delijn.be/stops/103013", "https://data.delijn.be/stops/109374"], ["https://data.delijn.be/stops/105618", "https://data.delijn.be/stops/105652"], ["https://data.delijn.be/stops/105596", "https://data.delijn.be/stops/106360"], ["https://data.delijn.be/stops/204718", "https://data.delijn.be/stops/205719"], ["https://data.delijn.be/stops/101002", "https://data.delijn.be/stops/107670"], ["https://data.delijn.be/stops/503755", "https://data.delijn.be/stops/503766"], ["https://data.delijn.be/stops/206311", "https://data.delijn.be/stops/207311"], ["https://data.delijn.be/stops/207460", "https://data.delijn.be/stops/207646"], ["https://data.delijn.be/stops/301862", "https://data.delijn.be/stops/302079"], ["https://data.delijn.be/stops/208268", "https://data.delijn.be/stops/209268"], ["https://data.delijn.be/stops/307363", "https://data.delijn.be/stops/307364"], ["https://data.delijn.be/stops/407994", "https://data.delijn.be/stops/408153"], ["https://data.delijn.be/stops/403220", "https://data.delijn.be/stops/403221"], ["https://data.delijn.be/stops/503347", "https://data.delijn.be/stops/510025"], ["https://data.delijn.be/stops/203787", "https://data.delijn.be/stops/208642"], ["https://data.delijn.be/stops/300194", "https://data.delijn.be/stops/300196"], ["https://data.delijn.be/stops/506299", "https://data.delijn.be/stops/506480"], ["https://data.delijn.be/stops/105933", "https://data.delijn.be/stops/105934"], ["https://data.delijn.be/stops/105926", "https://data.delijn.be/stops/106962"], ["https://data.delijn.be/stops/105669", "https://data.delijn.be/stops/105676"], ["https://data.delijn.be/stops/402712", "https://data.delijn.be/stops/402737"], ["https://data.delijn.be/stops/506133", "https://data.delijn.be/stops/506140"], ["https://data.delijn.be/stops/304687", "https://data.delijn.be/stops/307162"], ["https://data.delijn.be/stops/300424", "https://data.delijn.be/stops/308053"], ["https://data.delijn.be/stops/202895", "https://data.delijn.be/stops/203895"], ["https://data.delijn.be/stops/204564", "https://data.delijn.be/stops/205564"], ["https://data.delijn.be/stops/405575", "https://data.delijn.be/stops/405576"], ["https://data.delijn.be/stops/109297", "https://data.delijn.be/stops/109299"], ["https://data.delijn.be/stops/207597", "https://data.delijn.be/stops/209666"], ["https://data.delijn.be/stops/401432", "https://data.delijn.be/stops/401496"], ["https://data.delijn.be/stops/407109", "https://data.delijn.be/stops/408809"], ["https://data.delijn.be/stops/107879", "https://data.delijn.be/stops/107881"], ["https://data.delijn.be/stops/101468", "https://data.delijn.be/stops/101470"], ["https://data.delijn.be/stops/504325", "https://data.delijn.be/stops/509335"], ["https://data.delijn.be/stops/507817", "https://data.delijn.be/stops/508360"], ["https://data.delijn.be/stops/400922", "https://data.delijn.be/stops/400947"], ["https://data.delijn.be/stops/303435", "https://data.delijn.be/stops/307951"], ["https://data.delijn.be/stops/407063", "https://data.delijn.be/stops/407065"], ["https://data.delijn.be/stops/201673", "https://data.delijn.be/stops/203504"], ["https://data.delijn.be/stops/206199", "https://data.delijn.be/stops/207238"], ["https://data.delijn.be/stops/103694", "https://data.delijn.be/stops/103700"], ["https://data.delijn.be/stops/307213", "https://data.delijn.be/stops/307473"], ["https://data.delijn.be/stops/404642", "https://data.delijn.be/stops/404993"], ["https://data.delijn.be/stops/503379", "https://data.delijn.be/stops/503426"], ["https://data.delijn.be/stops/207469", "https://data.delijn.be/stops/207470"], ["https://data.delijn.be/stops/101725", "https://data.delijn.be/stops/103378"], ["https://data.delijn.be/stops/109352", "https://data.delijn.be/stops/109353"], ["https://data.delijn.be/stops/209329", "https://data.delijn.be/stops/211004"], ["https://data.delijn.be/stops/300006", "https://data.delijn.be/stops/300009"], ["https://data.delijn.be/stops/204521", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/104857", "https://data.delijn.be/stops/106756"], ["https://data.delijn.be/stops/505611", "https://data.delijn.be/stops/505615"], ["https://data.delijn.be/stops/508561", "https://data.delijn.be/stops/509752"], ["https://data.delijn.be/stops/106962", "https://data.delijn.be/stops/109508"], ["https://data.delijn.be/stops/105191", "https://data.delijn.be/stops/108883"], ["https://data.delijn.be/stops/502653", "https://data.delijn.be/stops/507354"], ["https://data.delijn.be/stops/408497", "https://data.delijn.be/stops/408611"], ["https://data.delijn.be/stops/407188", "https://data.delijn.be/stops/407471"], ["https://data.delijn.be/stops/101299", "https://data.delijn.be/stops/107457"], ["https://data.delijn.be/stops/101343", "https://data.delijn.be/stops/102172"], ["https://data.delijn.be/stops/504122", "https://data.delijn.be/stops/509127"], ["https://data.delijn.be/stops/106564", "https://data.delijn.be/stops/106565"], ["https://data.delijn.be/stops/209339", "https://data.delijn.be/stops/219007"], ["https://data.delijn.be/stops/503950", "https://data.delijn.be/stops/504997"], ["https://data.delijn.be/stops/509079", "https://data.delijn.be/stops/509082"], ["https://data.delijn.be/stops/407668", "https://data.delijn.be/stops/409802"], ["https://data.delijn.be/stops/501095", "https://data.delijn.be/stops/501244"], ["https://data.delijn.be/stops/306911", "https://data.delijn.be/stops/308724"], ["https://data.delijn.be/stops/504342", "https://data.delijn.be/stops/504345"], ["https://data.delijn.be/stops/403441", "https://data.delijn.be/stops/410280"], ["https://data.delijn.be/stops/506073", "https://data.delijn.be/stops/506075"], ["https://data.delijn.be/stops/301967", "https://data.delijn.be/stops/301986"], ["https://data.delijn.be/stops/206148", "https://data.delijn.be/stops/206149"], ["https://data.delijn.be/stops/106301", "https://data.delijn.be/stops/109909"], ["https://data.delijn.be/stops/104495", "https://data.delijn.be/stops/107489"], ["https://data.delijn.be/stops/200607", "https://data.delijn.be/stops/509876"], ["https://data.delijn.be/stops/207900", "https://data.delijn.be/stops/306077"], ["https://data.delijn.be/stops/205336", "https://data.delijn.be/stops/205622"], ["https://data.delijn.be/stops/305594", "https://data.delijn.be/stops/305600"], ["https://data.delijn.be/stops/408824", "https://data.delijn.be/stops/408825"], ["https://data.delijn.be/stops/301821", "https://data.delijn.be/stops/307889"], ["https://data.delijn.be/stops/302133", "https://data.delijn.be/stops/308106"], ["https://data.delijn.be/stops/202981", "https://data.delijn.be/stops/202982"], ["https://data.delijn.be/stops/503883", "https://data.delijn.be/stops/504998"], ["https://data.delijn.be/stops/207923", "https://data.delijn.be/stops/207924"], ["https://data.delijn.be/stops/202588", "https://data.delijn.be/stops/203432"], ["https://data.delijn.be/stops/403906", "https://data.delijn.be/stops/403907"], ["https://data.delijn.be/stops/304519", "https://data.delijn.be/stops/307467"], ["https://data.delijn.be/stops/202353", "https://data.delijn.be/stops/211046"], ["https://data.delijn.be/stops/504254", "https://data.delijn.be/stops/505985"], ["https://data.delijn.be/stops/405442", "https://data.delijn.be/stops/408671"], ["https://data.delijn.be/stops/404114", "https://data.delijn.be/stops/404115"], ["https://data.delijn.be/stops/200984", "https://data.delijn.be/stops/201335"], ["https://data.delijn.be/stops/410137", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/404081", "https://data.delijn.be/stops/404087"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/305343"], ["https://data.delijn.be/stops/501042", "https://data.delijn.be/stops/506042"], ["https://data.delijn.be/stops/206348", "https://data.delijn.be/stops/207374"], ["https://data.delijn.be/stops/301952", "https://data.delijn.be/stops/306970"], ["https://data.delijn.be/stops/301648", "https://data.delijn.be/stops/301891"], ["https://data.delijn.be/stops/101459", "https://data.delijn.be/stops/108223"], ["https://data.delijn.be/stops/200098", "https://data.delijn.be/stops/201142"], ["https://data.delijn.be/stops/304070", "https://data.delijn.be/stops/304115"], ["https://data.delijn.be/stops/101586", "https://data.delijn.be/stops/105446"], ["https://data.delijn.be/stops/300015", "https://data.delijn.be/stops/304563"], ["https://data.delijn.be/stops/503300", "https://data.delijn.be/stops/508306"], ["https://data.delijn.be/stops/306066", "https://data.delijn.be/stops/307201"], ["https://data.delijn.be/stops/505696", "https://data.delijn.be/stops/509880"], ["https://data.delijn.be/stops/202262", "https://data.delijn.be/stops/210006"], ["https://data.delijn.be/stops/204585", "https://data.delijn.be/stops/204592"], ["https://data.delijn.be/stops/407337", "https://data.delijn.be/stops/409788"], ["https://data.delijn.be/stops/408720", "https://data.delijn.be/stops/408721"], ["https://data.delijn.be/stops/505316", "https://data.delijn.be/stops/508111"], ["https://data.delijn.be/stops/301271", "https://data.delijn.be/stops/301272"], ["https://data.delijn.be/stops/404318", "https://data.delijn.be/stops/406816"], ["https://data.delijn.be/stops/206005", "https://data.delijn.be/stops/207005"], ["https://data.delijn.be/stops/204547", "https://data.delijn.be/stops/205292"], ["https://data.delijn.be/stops/202910", "https://data.delijn.be/stops/202911"], ["https://data.delijn.be/stops/302172", "https://data.delijn.be/stops/305092"], ["https://data.delijn.be/stops/300659", "https://data.delijn.be/stops/302471"], ["https://data.delijn.be/stops/402326", "https://data.delijn.be/stops/402376"], ["https://data.delijn.be/stops/107789", "https://data.delijn.be/stops/107791"], ["https://data.delijn.be/stops/208572", "https://data.delijn.be/stops/209573"], ["https://data.delijn.be/stops/209678", "https://data.delijn.be/stops/209793"], ["https://data.delijn.be/stops/503638", "https://data.delijn.be/stops/503639"], ["https://data.delijn.be/stops/302145", "https://data.delijn.be/stops/307082"], ["https://data.delijn.be/stops/300344", "https://data.delijn.be/stops/300358"], ["https://data.delijn.be/stops/104561", "https://data.delijn.be/stops/104563"], ["https://data.delijn.be/stops/401469", "https://data.delijn.be/stops/401890"], ["https://data.delijn.be/stops/207755", "https://data.delijn.be/stops/207772"], ["https://data.delijn.be/stops/204382", "https://data.delijn.be/stops/205382"], ["https://data.delijn.be/stops/403732", "https://data.delijn.be/stops/403814"], ["https://data.delijn.be/stops/207023", "https://data.delijn.be/stops/207075"], ["https://data.delijn.be/stops/209224", "https://data.delijn.be/stops/219018"], ["https://data.delijn.be/stops/403529", "https://data.delijn.be/stops/403530"], ["https://data.delijn.be/stops/507557", "https://data.delijn.be/stops/507558"], ["https://data.delijn.be/stops/401124", "https://data.delijn.be/stops/406549"], ["https://data.delijn.be/stops/403972", "https://data.delijn.be/stops/403973"], ["https://data.delijn.be/stops/408077", "https://data.delijn.be/stops/408081"], ["https://data.delijn.be/stops/101907", "https://data.delijn.be/stops/107925"], ["https://data.delijn.be/stops/209473", "https://data.delijn.be/stops/209498"], ["https://data.delijn.be/stops/206900", "https://data.delijn.be/stops/206904"], ["https://data.delijn.be/stops/303475", "https://data.delijn.be/stops/303498"], ["https://data.delijn.be/stops/302008", "https://data.delijn.be/stops/302033"], ["https://data.delijn.be/stops/203987", "https://data.delijn.be/stops/203988"], ["https://data.delijn.be/stops/500930", "https://data.delijn.be/stops/500931"], ["https://data.delijn.be/stops/202056", "https://data.delijn.be/stops/203055"], ["https://data.delijn.be/stops/403291", "https://data.delijn.be/stops/409334"], ["https://data.delijn.be/stops/400730", "https://data.delijn.be/stops/405476"], ["https://data.delijn.be/stops/303737", "https://data.delijn.be/stops/303748"], ["https://data.delijn.be/stops/403909", "https://data.delijn.be/stops/404073"], ["https://data.delijn.be/stops/108566", "https://data.delijn.be/stops/108991"], ["https://data.delijn.be/stops/303725", "https://data.delijn.be/stops/303732"], ["https://data.delijn.be/stops/301347", "https://data.delijn.be/stops/306132"], ["https://data.delijn.be/stops/302846", "https://data.delijn.be/stops/303324"], ["https://data.delijn.be/stops/408577", "https://data.delijn.be/stops/408636"], ["https://data.delijn.be/stops/505591", "https://data.delijn.be/stops/505635"], ["https://data.delijn.be/stops/202760", "https://data.delijn.be/stops/203752"], ["https://data.delijn.be/stops/501394", "https://data.delijn.be/stops/506394"], ["https://data.delijn.be/stops/401118", "https://data.delijn.be/stops/401138"], ["https://data.delijn.be/stops/304718", "https://data.delijn.be/stops/305554"], ["https://data.delijn.be/stops/303590", "https://data.delijn.be/stops/308709"], ["https://data.delijn.be/stops/104813", "https://data.delijn.be/stops/105164"], ["https://data.delijn.be/stops/208385", "https://data.delijn.be/stops/208386"], ["https://data.delijn.be/stops/502212", "https://data.delijn.be/stops/505244"], ["https://data.delijn.be/stops/302167", "https://data.delijn.be/stops/307805"], ["https://data.delijn.be/stops/201830", "https://data.delijn.be/stops/201844"], ["https://data.delijn.be/stops/304390", "https://data.delijn.be/stops/304405"], ["https://data.delijn.be/stops/303626", "https://data.delijn.be/stops/307219"], ["https://data.delijn.be/stops/301675", "https://data.delijn.be/stops/301690"], ["https://data.delijn.be/stops/104898", "https://data.delijn.be/stops/108959"], ["https://data.delijn.be/stops/109849", "https://data.delijn.be/stops/109851"], ["https://data.delijn.be/stops/400829", "https://data.delijn.be/stops/400882"], ["https://data.delijn.be/stops/208574", "https://data.delijn.be/stops/307310"], ["https://data.delijn.be/stops/104596", "https://data.delijn.be/stops/109749"], ["https://data.delijn.be/stops/301275", "https://data.delijn.be/stops/301276"], ["https://data.delijn.be/stops/300417", "https://data.delijn.be/stops/300419"], ["https://data.delijn.be/stops/406598", "https://data.delijn.be/stops/406609"], ["https://data.delijn.be/stops/304763", "https://data.delijn.be/stops/304765"], ["https://data.delijn.be/stops/103545", "https://data.delijn.be/stops/104655"], ["https://data.delijn.be/stops/302898", "https://data.delijn.be/stops/306095"], ["https://data.delijn.be/stops/407842", "https://data.delijn.be/stops/407844"], ["https://data.delijn.be/stops/206630", "https://data.delijn.be/stops/207629"], ["https://data.delijn.be/stops/206819", "https://data.delijn.be/stops/206821"], ["https://data.delijn.be/stops/300986", "https://data.delijn.be/stops/306049"], ["https://data.delijn.be/stops/504855", "https://data.delijn.be/stops/509048"], ["https://data.delijn.be/stops/308355", "https://data.delijn.be/stops/308356"], ["https://data.delijn.be/stops/106629", "https://data.delijn.be/stops/106632"], ["https://data.delijn.be/stops/102884", "https://data.delijn.be/stops/105305"], ["https://data.delijn.be/stops/200104", "https://data.delijn.be/stops/201363"], ["https://data.delijn.be/stops/200355", "https://data.delijn.be/stops/201387"], ["https://data.delijn.be/stops/405169", "https://data.delijn.be/stops/405171"], ["https://data.delijn.be/stops/405445", "https://data.delijn.be/stops/408785"], ["https://data.delijn.be/stops/505744", "https://data.delijn.be/stops/507516"], ["https://data.delijn.be/stops/104271", "https://data.delijn.be/stops/109747"], ["https://data.delijn.be/stops/202676", "https://data.delijn.be/stops/202677"], ["https://data.delijn.be/stops/303653", "https://data.delijn.be/stops/308526"], ["https://data.delijn.be/stops/508627", "https://data.delijn.be/stops/590008"], ["https://data.delijn.be/stops/200172", "https://data.delijn.be/stops/201515"], ["https://data.delijn.be/stops/300365", "https://data.delijn.be/stops/300366"], ["https://data.delijn.be/stops/503981", "https://data.delijn.be/stops/508981"], ["https://data.delijn.be/stops/504417", "https://data.delijn.be/stops/505182"], ["https://data.delijn.be/stops/300173", "https://data.delijn.be/stops/301221"], ["https://data.delijn.be/stops/107066", "https://data.delijn.be/stops/403860"], ["https://data.delijn.be/stops/406465", "https://data.delijn.be/stops/406495"], ["https://data.delijn.be/stops/103583", "https://data.delijn.be/stops/108916"], ["https://data.delijn.be/stops/401125", "https://data.delijn.be/stops/401149"], ["https://data.delijn.be/stops/200217", "https://data.delijn.be/stops/201212"], ["https://data.delijn.be/stops/301557", "https://data.delijn.be/stops/308089"], ["https://data.delijn.be/stops/406814", "https://data.delijn.be/stops/410346"], ["https://data.delijn.be/stops/410128", "https://data.delijn.be/stops/410289"], ["https://data.delijn.be/stops/301129", "https://data.delijn.be/stops/302871"], ["https://data.delijn.be/stops/101170", "https://data.delijn.be/stops/102225"], ["https://data.delijn.be/stops/300328", "https://data.delijn.be/stops/300335"], ["https://data.delijn.be/stops/404920", "https://data.delijn.be/stops/404927"], ["https://data.delijn.be/stops/503816", "https://data.delijn.be/stops/508816"], ["https://data.delijn.be/stops/206043", "https://data.delijn.be/stops/207540"], ["https://data.delijn.be/stops/404100", "https://data.delijn.be/stops/404244"], ["https://data.delijn.be/stops/302801", "https://data.delijn.be/stops/306561"], ["https://data.delijn.be/stops/400985", "https://data.delijn.be/stops/407191"], ["https://data.delijn.be/stops/300972", "https://data.delijn.be/stops/307853"], ["https://data.delijn.be/stops/508735", "https://data.delijn.be/stops/509955"], ["https://data.delijn.be/stops/402006", "https://data.delijn.be/stops/405231"], ["https://data.delijn.be/stops/506440", "https://data.delijn.be/stops/506443"], ["https://data.delijn.be/stops/503135", "https://data.delijn.be/stops/508120"], ["https://data.delijn.be/stops/202427", "https://data.delijn.be/stops/203463"], ["https://data.delijn.be/stops/101783", "https://data.delijn.be/stops/107873"], ["https://data.delijn.be/stops/507380", "https://data.delijn.be/stops/507581"], ["https://data.delijn.be/stops/102397", "https://data.delijn.be/stops/102421"], ["https://data.delijn.be/stops/304990", "https://data.delijn.be/stops/305008"], ["https://data.delijn.be/stops/400908", "https://data.delijn.be/stops/407401"], ["https://data.delijn.be/stops/404683", "https://data.delijn.be/stops/404686"], ["https://data.delijn.be/stops/106134", "https://data.delijn.be/stops/106181"], ["https://data.delijn.be/stops/403787", "https://data.delijn.be/stops/403789"], ["https://data.delijn.be/stops/108651", "https://data.delijn.be/stops/302906"], ["https://data.delijn.be/stops/206453", "https://data.delijn.be/stops/206455"], ["https://data.delijn.be/stops/304252", "https://data.delijn.be/stops/304287"], ["https://data.delijn.be/stops/409364", "https://data.delijn.be/stops/409365"], ["https://data.delijn.be/stops/101379", "https://data.delijn.be/stops/108693"], ["https://data.delijn.be/stops/200643", "https://data.delijn.be/stops/201603"], ["https://data.delijn.be/stops/408334", "https://data.delijn.be/stops/410158"], ["https://data.delijn.be/stops/407747", "https://data.delijn.be/stops/409793"], ["https://data.delijn.be/stops/205147", "https://data.delijn.be/stops/209912"], ["https://data.delijn.be/stops/504303", "https://data.delijn.be/stops/507941"], ["https://data.delijn.be/stops/206804", "https://data.delijn.be/stops/207804"], ["https://data.delijn.be/stops/101507", "https://data.delijn.be/stops/109076"], ["https://data.delijn.be/stops/103651", "https://data.delijn.be/stops/104406"], ["https://data.delijn.be/stops/302311", "https://data.delijn.be/stops/304049"], ["https://data.delijn.be/stops/504349", "https://data.delijn.be/stops/504721"], ["https://data.delijn.be/stops/301219", "https://data.delijn.be/stops/306716"], ["https://data.delijn.be/stops/201930", "https://data.delijn.be/stops/203472"], ["https://data.delijn.be/stops/407491", "https://data.delijn.be/stops/408614"], ["https://data.delijn.be/stops/505383", "https://data.delijn.be/stops/508088"], ["https://data.delijn.be/stops/301725", "https://data.delijn.be/stops/301726"], ["https://data.delijn.be/stops/406628", "https://data.delijn.be/stops/406643"], ["https://data.delijn.be/stops/404918", "https://data.delijn.be/stops/404922"], ["https://data.delijn.be/stops/409580", "https://data.delijn.be/stops/409588"], ["https://data.delijn.be/stops/404341", "https://data.delijn.be/stops/404345"], ["https://data.delijn.be/stops/302080", "https://data.delijn.be/stops/302083"], ["https://data.delijn.be/stops/301412", "https://data.delijn.be/stops/301419"], ["https://data.delijn.be/stops/104405", "https://data.delijn.be/stops/104408"], ["https://data.delijn.be/stops/200753", "https://data.delijn.be/stops/201728"], ["https://data.delijn.be/stops/204367", "https://data.delijn.be/stops/204368"], ["https://data.delijn.be/stops/102286", "https://data.delijn.be/stops/103317"], ["https://data.delijn.be/stops/401399", "https://data.delijn.be/stops/307795"], ["https://data.delijn.be/stops/102856", "https://data.delijn.be/stops/204623"], ["https://data.delijn.be/stops/102532", "https://data.delijn.be/stops/405077"], ["https://data.delijn.be/stops/308414", "https://data.delijn.be/stops/308425"], ["https://data.delijn.be/stops/200676", "https://data.delijn.be/stops/210082"], ["https://data.delijn.be/stops/101255", "https://data.delijn.be/stops/103946"], ["https://data.delijn.be/stops/409285", "https://data.delijn.be/stops/410067"], ["https://data.delijn.be/stops/205977", "https://data.delijn.be/stops/205978"], ["https://data.delijn.be/stops/108242", "https://data.delijn.be/stops/108246"], ["https://data.delijn.be/stops/504114", "https://data.delijn.be/stops/509272"], ["https://data.delijn.be/stops/303837", "https://data.delijn.be/stops/303962"], ["https://data.delijn.be/stops/505912", "https://data.delijn.be/stops/509272"], ["https://data.delijn.be/stops/206100", "https://data.delijn.be/stops/207932"], ["https://data.delijn.be/stops/507420", "https://data.delijn.be/stops/507434"], ["https://data.delijn.be/stops/208607", "https://data.delijn.be/stops/208615"], ["https://data.delijn.be/stops/504404", "https://data.delijn.be/stops/509407"], ["https://data.delijn.be/stops/304396", "https://data.delijn.be/stops/308056"], ["https://data.delijn.be/stops/301129", "https://data.delijn.be/stops/307691"], ["https://data.delijn.be/stops/205182", "https://data.delijn.be/stops/205355"], ["https://data.delijn.be/stops/207774", "https://data.delijn.be/stops/208187"], ["https://data.delijn.be/stops/302683", "https://data.delijn.be/stops/302691"], ["https://data.delijn.be/stops/400934", "https://data.delijn.be/stops/400937"], ["https://data.delijn.be/stops/306729", "https://data.delijn.be/stops/306732"], ["https://data.delijn.be/stops/400041", "https://data.delijn.be/stops/400382"], ["https://data.delijn.be/stops/301039", "https://data.delijn.be/stops/301042"], ["https://data.delijn.be/stops/305402", "https://data.delijn.be/stops/305926"], ["https://data.delijn.be/stops/403198", "https://data.delijn.be/stops/403386"], ["https://data.delijn.be/stops/204082", "https://data.delijn.be/stops/204088"], ["https://data.delijn.be/stops/404163", "https://data.delijn.be/stops/404183"], ["https://data.delijn.be/stops/201474", "https://data.delijn.be/stops/210060"], ["https://data.delijn.be/stops/201698", "https://data.delijn.be/stops/201705"], ["https://data.delijn.be/stops/103474", "https://data.delijn.be/stops/103476"], ["https://data.delijn.be/stops/305384", "https://data.delijn.be/stops/305389"], ["https://data.delijn.be/stops/103721", "https://data.delijn.be/stops/306590"], ["https://data.delijn.be/stops/202631", "https://data.delijn.be/stops/203632"], ["https://data.delijn.be/stops/211026", "https://data.delijn.be/stops/218936"], ["https://data.delijn.be/stops/108988", "https://data.delijn.be/stops/109689"], ["https://data.delijn.be/stops/503777", "https://data.delijn.be/stops/508788"], ["https://data.delijn.be/stops/501241", "https://data.delijn.be/stops/506241"], ["https://data.delijn.be/stops/406273", "https://data.delijn.be/stops/406279"], ["https://data.delijn.be/stops/102179", "https://data.delijn.be/stops/109050"], ["https://data.delijn.be/stops/109143", "https://data.delijn.be/stops/109152"], ["https://data.delijn.be/stops/103097", "https://data.delijn.be/stops/103098"], ["https://data.delijn.be/stops/410147", "https://data.delijn.be/stops/410352"], ["https://data.delijn.be/stops/301110", "https://data.delijn.be/stops/306313"], ["https://data.delijn.be/stops/204290", "https://data.delijn.be/stops/205546"], ["https://data.delijn.be/stops/305282", "https://data.delijn.be/stops/305292"], ["https://data.delijn.be/stops/406452", "https://data.delijn.be/stops/406453"], ["https://data.delijn.be/stops/105824", "https://data.delijn.be/stops/109516"], ["https://data.delijn.be/stops/204344", "https://data.delijn.be/stops/204345"], ["https://data.delijn.be/stops/404464", "https://data.delijn.be/stops/406527"], ["https://data.delijn.be/stops/208614", "https://data.delijn.be/stops/209608"], ["https://data.delijn.be/stops/206812", "https://data.delijn.be/stops/207287"], ["https://data.delijn.be/stops/503644", "https://data.delijn.be/stops/504873"], ["https://data.delijn.be/stops/307243", "https://data.delijn.be/stops/307251"], ["https://data.delijn.be/stops/207375", "https://data.delijn.be/stops/207727"], ["https://data.delijn.be/stops/405035", "https://data.delijn.be/stops/405046"], ["https://data.delijn.be/stops/401518", "https://data.delijn.be/stops/401530"], ["https://data.delijn.be/stops/405833", "https://data.delijn.be/stops/405889"], ["https://data.delijn.be/stops/504246", "https://data.delijn.be/stops/509248"], ["https://data.delijn.be/stops/302297", "https://data.delijn.be/stops/303295"], ["https://data.delijn.be/stops/406729", "https://data.delijn.be/stops/407301"], ["https://data.delijn.be/stops/107560", "https://data.delijn.be/stops/109848"], ["https://data.delijn.be/stops/406694", "https://data.delijn.be/stops/409760"], ["https://data.delijn.be/stops/102493", "https://data.delijn.be/stops/400029"], ["https://data.delijn.be/stops/206197", "https://data.delijn.be/stops/206856"], ["https://data.delijn.be/stops/202183", "https://data.delijn.be/stops/204598"], ["https://data.delijn.be/stops/401511", "https://data.delijn.be/stops/402832"], ["https://data.delijn.be/stops/206610", "https://data.delijn.be/stops/206973"], ["https://data.delijn.be/stops/505015", "https://data.delijn.be/stops/507362"], ["https://data.delijn.be/stops/209203", "https://data.delijn.be/stops/209781"], ["https://data.delijn.be/stops/109675", "https://data.delijn.be/stops/408450"], ["https://data.delijn.be/stops/403598", "https://data.delijn.be/stops/407338"], ["https://data.delijn.be/stops/301489", "https://data.delijn.be/stops/308117"], ["https://data.delijn.be/stops/202100", "https://data.delijn.be/stops/202257"], ["https://data.delijn.be/stops/407031", "https://data.delijn.be/stops/409203"], ["https://data.delijn.be/stops/302464", "https://data.delijn.be/stops/302486"], ["https://data.delijn.be/stops/303084", "https://data.delijn.be/stops/303101"], ["https://data.delijn.be/stops/108359", "https://data.delijn.be/stops/108501"], ["https://data.delijn.be/stops/208287", "https://data.delijn.be/stops/208289"], ["https://data.delijn.be/stops/202219", "https://data.delijn.be/stops/202220"], ["https://data.delijn.be/stops/204214", "https://data.delijn.be/stops/204215"], ["https://data.delijn.be/stops/106628", "https://data.delijn.be/stops/106671"], ["https://data.delijn.be/stops/205972", "https://data.delijn.be/stops/216003"], ["https://data.delijn.be/stops/200076", "https://data.delijn.be/stops/202350"], ["https://data.delijn.be/stops/203027", "https://data.delijn.be/stops/203349"], ["https://data.delijn.be/stops/505382", "https://data.delijn.be/stops/508097"], ["https://data.delijn.be/stops/401092", "https://data.delijn.be/stops/409815"], ["https://data.delijn.be/stops/304385", "https://data.delijn.be/stops/307070"], ["https://data.delijn.be/stops/505191", "https://data.delijn.be/stops/508550"], ["https://data.delijn.be/stops/201754", "https://data.delijn.be/stops/208282"], ["https://data.delijn.be/stops/400581", "https://data.delijn.be/stops/404531"], ["https://data.delijn.be/stops/302886", "https://data.delijn.be/stops/302924"], ["https://data.delijn.be/stops/207893", "https://data.delijn.be/stops/207894"], ["https://data.delijn.be/stops/502490", "https://data.delijn.be/stops/507494"], ["https://data.delijn.be/stops/206971", "https://data.delijn.be/stops/207611"], ["https://data.delijn.be/stops/305264", "https://data.delijn.be/stops/305311"], ["https://data.delijn.be/stops/300741", "https://data.delijn.be/stops/300790"], ["https://data.delijn.be/stops/502807", "https://data.delijn.be/stops/507619"], ["https://data.delijn.be/stops/102112", "https://data.delijn.be/stops/103119"], ["https://data.delijn.be/stops/206274", "https://data.delijn.be/stops/207275"], ["https://data.delijn.be/stops/408543", "https://data.delijn.be/stops/408768"], ["https://data.delijn.be/stops/106927", "https://data.delijn.be/stops/108694"], ["https://data.delijn.be/stops/300566", "https://data.delijn.be/stops/307863"], ["https://data.delijn.be/stops/306405", "https://data.delijn.be/stops/306406"], ["https://data.delijn.be/stops/202771", "https://data.delijn.be/stops/203771"], ["https://data.delijn.be/stops/101565", "https://data.delijn.be/stops/105840"], ["https://data.delijn.be/stops/204062", "https://data.delijn.be/stops/205099"], ["https://data.delijn.be/stops/305951", "https://data.delijn.be/stops/307909"], ["https://data.delijn.be/stops/301425", "https://data.delijn.be/stops/308936"], ["https://data.delijn.be/stops/107494", "https://data.delijn.be/stops/107496"], ["https://data.delijn.be/stops/308174", "https://data.delijn.be/stops/308176"], ["https://data.delijn.be/stops/305605", "https://data.delijn.be/stops/305609"], ["https://data.delijn.be/stops/400684", "https://data.delijn.be/stops/406665"], ["https://data.delijn.be/stops/403850", "https://data.delijn.be/stops/403853"], ["https://data.delijn.be/stops/106183", "https://data.delijn.be/stops/107438"], ["https://data.delijn.be/stops/109848", "https://data.delijn.be/stops/109849"], ["https://data.delijn.be/stops/103057", "https://data.delijn.be/stops/105064"], ["https://data.delijn.be/stops/403925", "https://data.delijn.be/stops/403928"], ["https://data.delijn.be/stops/204303", "https://data.delijn.be/stops/205351"], ["https://data.delijn.be/stops/203062", "https://data.delijn.be/stops/211016"], ["https://data.delijn.be/stops/200825", "https://data.delijn.be/stops/200838"], ["https://data.delijn.be/stops/301513", "https://data.delijn.be/stops/308750"], ["https://data.delijn.be/stops/305992", "https://data.delijn.be/stops/307733"], ["https://data.delijn.be/stops/107653", "https://data.delijn.be/stops/410261"], ["https://data.delijn.be/stops/401777", "https://data.delijn.be/stops/401840"], ["https://data.delijn.be/stops/102449", "https://data.delijn.be/stops/308481"], ["https://data.delijn.be/stops/302562", "https://data.delijn.be/stops/308093"], ["https://data.delijn.be/stops/504696", "https://data.delijn.be/stops/509696"], ["https://data.delijn.be/stops/101312", "https://data.delijn.be/stops/101730"], ["https://data.delijn.be/stops/502627", "https://data.delijn.be/stops/507752"], ["https://data.delijn.be/stops/208657", "https://data.delijn.be/stops/209054"], ["https://data.delijn.be/stops/203825", "https://data.delijn.be/stops/209717"], ["https://data.delijn.be/stops/101611", "https://data.delijn.be/stops/106404"], ["https://data.delijn.be/stops/509582", "https://data.delijn.be/stops/509589"], ["https://data.delijn.be/stops/508745", "https://data.delijn.be/stops/508750"], ["https://data.delijn.be/stops/206079", "https://data.delijn.be/stops/206305"], ["https://data.delijn.be/stops/200075", "https://data.delijn.be/stops/200449"], ["https://data.delijn.be/stops/302557", "https://data.delijn.be/stops/305456"], ["https://data.delijn.be/stops/200648", "https://data.delijn.be/stops/201647"], ["https://data.delijn.be/stops/300500", "https://data.delijn.be/stops/302786"], ["https://data.delijn.be/stops/301723", "https://data.delijn.be/stops/308431"], ["https://data.delijn.be/stops/108455", "https://data.delijn.be/stops/108458"], ["https://data.delijn.be/stops/202534", "https://data.delijn.be/stops/203534"], ["https://data.delijn.be/stops/306139", "https://data.delijn.be/stops/308768"], ["https://data.delijn.be/stops/101368", "https://data.delijn.be/stops/101406"], ["https://data.delijn.be/stops/407172", "https://data.delijn.be/stops/407179"], ["https://data.delijn.be/stops/505418", "https://data.delijn.be/stops/505419"], ["https://data.delijn.be/stops/200344", "https://data.delijn.be/stops/201359"], ["https://data.delijn.be/stops/505191", "https://data.delijn.be/stops/505196"], ["https://data.delijn.be/stops/400985", "https://data.delijn.be/stops/406623"], ["https://data.delijn.be/stops/304926", "https://data.delijn.be/stops/304928"], ["https://data.delijn.be/stops/507688", "https://data.delijn.be/stops/508754"], ["https://data.delijn.be/stops/407400", "https://data.delijn.be/stops/407423"], ["https://data.delijn.be/stops/302209", "https://data.delijn.be/stops/308105"], ["https://data.delijn.be/stops/304721", "https://data.delijn.be/stops/305270"], ["https://data.delijn.be/stops/402379", "https://data.delijn.be/stops/402439"], ["https://data.delijn.be/stops/200012", "https://data.delijn.be/stops/201350"], ["https://data.delijn.be/stops/101986", "https://data.delijn.be/stops/109255"], ["https://data.delijn.be/stops/206937", "https://data.delijn.be/stops/208723"], ["https://data.delijn.be/stops/504226", "https://data.delijn.be/stops/504227"], ["https://data.delijn.be/stops/102687", "https://data.delijn.be/stops/103946"], ["https://data.delijn.be/stops/301544", "https://data.delijn.be/stops/301545"], ["https://data.delijn.be/stops/104004", "https://data.delijn.be/stops/108535"], ["https://data.delijn.be/stops/406565", "https://data.delijn.be/stops/407203"], ["https://data.delijn.be/stops/300135", "https://data.delijn.be/stops/306808"], ["https://data.delijn.be/stops/405492", "https://data.delijn.be/stops/409301"], ["https://data.delijn.be/stops/108065", "https://data.delijn.be/stops/108740"], ["https://data.delijn.be/stops/405790", "https://data.delijn.be/stops/405877"], ["https://data.delijn.be/stops/101987", "https://data.delijn.be/stops/102645"], ["https://data.delijn.be/stops/106931", "https://data.delijn.be/stops/106933"], ["https://data.delijn.be/stops/200341", "https://data.delijn.be/stops/200342"], ["https://data.delijn.be/stops/503547", "https://data.delijn.be/stops/503560"], ["https://data.delijn.be/stops/304073", "https://data.delijn.be/stops/304075"], ["https://data.delijn.be/stops/406359", "https://data.delijn.be/stops/406400"], ["https://data.delijn.be/stops/301282", "https://data.delijn.be/stops/306251"], ["https://data.delijn.be/stops/507384", "https://data.delijn.be/stops/509794"], ["https://data.delijn.be/stops/204419", "https://data.delijn.be/stops/205467"], ["https://data.delijn.be/stops/105059", "https://data.delijn.be/stops/107424"], ["https://data.delijn.be/stops/406288", "https://data.delijn.be/stops/410131"], ["https://data.delijn.be/stops/305319", "https://data.delijn.be/stops/306968"], ["https://data.delijn.be/stops/400142", "https://data.delijn.be/stops/403422"], ["https://data.delijn.be/stops/203457", "https://data.delijn.be/stops/211018"], ["https://data.delijn.be/stops/200718", "https://data.delijn.be/stops/203583"], ["https://data.delijn.be/stops/402681", "https://data.delijn.be/stops/405944"], ["https://data.delijn.be/stops/102907", "https://data.delijn.be/stops/104287"], ["https://data.delijn.be/stops/504015", "https://data.delijn.be/stops/509015"], ["https://data.delijn.be/stops/400028", "https://data.delijn.be/stops/407517"], ["https://data.delijn.be/stops/304597", "https://data.delijn.be/stops/304651"], ["https://data.delijn.be/stops/409075", "https://data.delijn.be/stops/409215"], ["https://data.delijn.be/stops/105216", "https://data.delijn.be/stops/105217"], ["https://data.delijn.be/stops/405700", "https://data.delijn.be/stops/405711"], ["https://data.delijn.be/stops/204821", "https://data.delijn.be/stops/205332"], ["https://data.delijn.be/stops/503214", "https://data.delijn.be/stops/508038"], ["https://data.delijn.be/stops/502104", "https://data.delijn.be/stops/502817"], ["https://data.delijn.be/stops/404222", "https://data.delijn.be/stops/404238"], ["https://data.delijn.be/stops/206706", "https://data.delijn.be/stops/207975"], ["https://data.delijn.be/stops/202265", "https://data.delijn.be/stops/203265"], ["https://data.delijn.be/stops/206929", "https://data.delijn.be/stops/207996"], ["https://data.delijn.be/stops/209582", "https://data.delijn.be/stops/209698"], ["https://data.delijn.be/stops/505643", "https://data.delijn.be/stops/508181"], ["https://data.delijn.be/stops/305286", "https://data.delijn.be/stops/305290"], ["https://data.delijn.be/stops/206673", "https://data.delijn.be/stops/208170"], ["https://data.delijn.be/stops/302710", "https://data.delijn.be/stops/302723"], ["https://data.delijn.be/stops/504553", "https://data.delijn.be/stops/505991"], ["https://data.delijn.be/stops/304012", "https://data.delijn.be/stops/306375"], ["https://data.delijn.be/stops/401150", "https://data.delijn.be/stops/401155"], ["https://data.delijn.be/stops/200686", "https://data.delijn.be/stops/202374"], ["https://data.delijn.be/stops/106276", "https://data.delijn.be/stops/109631"], ["https://data.delijn.be/stops/503011", "https://data.delijn.be/stops/508848"], ["https://data.delijn.be/stops/302253", "https://data.delijn.be/stops/302936"], ["https://data.delijn.be/stops/103631", "https://data.delijn.be/stops/107171"], ["https://data.delijn.be/stops/101205", "https://data.delijn.be/stops/108905"], ["https://data.delijn.be/stops/508159", "https://data.delijn.be/stops/508178"], ["https://data.delijn.be/stops/300295", "https://data.delijn.be/stops/300296"], ["https://data.delijn.be/stops/206871", "https://data.delijn.be/stops/209362"], ["https://data.delijn.be/stops/400313", "https://data.delijn.be/stops/407109"], ["https://data.delijn.be/stops/102520", "https://data.delijn.be/stops/104946"], ["https://data.delijn.be/stops/301859", "https://data.delijn.be/stops/301863"], ["https://data.delijn.be/stops/408260", "https://data.delijn.be/stops/408341"], ["https://data.delijn.be/stops/401283", "https://data.delijn.be/stops/409190"], ["https://data.delijn.be/stops/302616", "https://data.delijn.be/stops/302627"], ["https://data.delijn.be/stops/505722", "https://data.delijn.be/stops/505747"], ["https://data.delijn.be/stops/303101", "https://data.delijn.be/stops/304245"], ["https://data.delijn.be/stops/105572", "https://data.delijn.be/stops/105577"], ["https://data.delijn.be/stops/202372", "https://data.delijn.be/stops/210104"], ["https://data.delijn.be/stops/101235", "https://data.delijn.be/stops/103505"], ["https://data.delijn.be/stops/304059", "https://data.delijn.be/stops/304060"], ["https://data.delijn.be/stops/504435", "https://data.delijn.be/stops/509440"], ["https://data.delijn.be/stops/306594", "https://data.delijn.be/stops/306595"], ["https://data.delijn.be/stops/108319", "https://data.delijn.be/stops/108322"], ["https://data.delijn.be/stops/203941", "https://data.delijn.be/stops/211054"], ["https://data.delijn.be/stops/407772", "https://data.delijn.be/stops/408920"], ["https://data.delijn.be/stops/405626", "https://data.delijn.be/stops/407493"], ["https://data.delijn.be/stops/502393", "https://data.delijn.be/stops/502400"], ["https://data.delijn.be/stops/102928", "https://data.delijn.be/stops/106129"], ["https://data.delijn.be/stops/407188", "https://data.delijn.be/stops/407197"], ["https://data.delijn.be/stops/402502", "https://data.delijn.be/stops/402558"], ["https://data.delijn.be/stops/405189", "https://data.delijn.be/stops/405562"], ["https://data.delijn.be/stops/102670", "https://data.delijn.be/stops/102675"], ["https://data.delijn.be/stops/300571", "https://data.delijn.be/stops/307855"], ["https://data.delijn.be/stops/302965", "https://data.delijn.be/stops/308660"], ["https://data.delijn.be/stops/505924", "https://data.delijn.be/stops/505987"], ["https://data.delijn.be/stops/206544", "https://data.delijn.be/stops/206546"], ["https://data.delijn.be/stops/502021", "https://data.delijn.be/stops/507021"], ["https://data.delijn.be/stops/103496", "https://data.delijn.be/stops/109896"], ["https://data.delijn.be/stops/300592", "https://data.delijn.be/stops/300594"], ["https://data.delijn.be/stops/206654", "https://data.delijn.be/stops/207654"], ["https://data.delijn.be/stops/502166", "https://data.delijn.be/stops/507165"], ["https://data.delijn.be/stops/404714", "https://data.delijn.be/stops/404788"], ["https://data.delijn.be/stops/102927", "https://data.delijn.be/stops/109422"], ["https://data.delijn.be/stops/501250", "https://data.delijn.be/stops/501256"], ["https://data.delijn.be/stops/109882", "https://data.delijn.be/stops/204820"], ["https://data.delijn.be/stops/207421", "https://data.delijn.be/stops/207938"], ["https://data.delijn.be/stops/503900", "https://data.delijn.be/stops/504834"], ["https://data.delijn.be/stops/505604", "https://data.delijn.be/stops/505605"], ["https://data.delijn.be/stops/301910", "https://data.delijn.be/stops/306253"], ["https://data.delijn.be/stops/302390", "https://data.delijn.be/stops/302671"], ["https://data.delijn.be/stops/404474", "https://data.delijn.be/stops/404475"], ["https://data.delijn.be/stops/400378", "https://data.delijn.be/stops/400379"], ["https://data.delijn.be/stops/101887", "https://data.delijn.be/stops/109997"], ["https://data.delijn.be/stops/400032", "https://data.delijn.be/stops/400318"], ["https://data.delijn.be/stops/402860", "https://data.delijn.be/stops/406701"], ["https://data.delijn.be/stops/204229", "https://data.delijn.be/stops/204232"], ["https://data.delijn.be/stops/201928", "https://data.delijn.be/stops/201956"], ["https://data.delijn.be/stops/505093", "https://data.delijn.be/stops/505140"], ["https://data.delijn.be/stops/301954", "https://data.delijn.be/stops/304184"], ["https://data.delijn.be/stops/206377", "https://data.delijn.be/stops/207730"], ["https://data.delijn.be/stops/308230", "https://data.delijn.be/stops/308233"], ["https://data.delijn.be/stops/400433", "https://data.delijn.be/stops/406776"], ["https://data.delijn.be/stops/402354", "https://data.delijn.be/stops/402465"], ["https://data.delijn.be/stops/509495", "https://data.delijn.be/stops/509511"], ["https://data.delijn.be/stops/304563", "https://data.delijn.be/stops/304615"], ["https://data.delijn.be/stops/407770", "https://data.delijn.be/stops/307368"], ["https://data.delijn.be/stops/405142", "https://data.delijn.be/stops/405221"], ["https://data.delijn.be/stops/204414", "https://data.delijn.be/stops/205416"], ["https://data.delijn.be/stops/106797", "https://data.delijn.be/stops/106869"], ["https://data.delijn.be/stops/300401", "https://data.delijn.be/stops/300402"], ["https://data.delijn.be/stops/504506", "https://data.delijn.be/stops/509493"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/302881"], ["https://data.delijn.be/stops/305754", "https://data.delijn.be/stops/305755"], ["https://data.delijn.be/stops/208520", "https://data.delijn.be/stops/209878"], ["https://data.delijn.be/stops/500941", "https://data.delijn.be/stops/505642"], ["https://data.delijn.be/stops/203165", "https://data.delijn.be/stops/205074"], ["https://data.delijn.be/stops/508629", "https://data.delijn.be/stops/508631"], ["https://data.delijn.be/stops/209265", "https://data.delijn.be/stops/209847"], ["https://data.delijn.be/stops/403488", "https://data.delijn.be/stops/405634"], ["https://data.delijn.be/stops/502475", "https://data.delijn.be/stops/505579"], ["https://data.delijn.be/stops/107652", "https://data.delijn.be/stops/107654"], ["https://data.delijn.be/stops/302824", "https://data.delijn.be/stops/302828"], ["https://data.delijn.be/stops/407658", "https://data.delijn.be/stops/407659"], ["https://data.delijn.be/stops/505066", "https://data.delijn.be/stops/505734"], ["https://data.delijn.be/stops/107379", "https://data.delijn.be/stops/107382"], ["https://data.delijn.be/stops/204640", "https://data.delijn.be/stops/205640"], ["https://data.delijn.be/stops/204430", "https://data.delijn.be/stops/205430"], ["https://data.delijn.be/stops/204764", "https://data.delijn.be/stops/205379"], ["https://data.delijn.be/stops/302054", "https://data.delijn.be/stops/303165"], ["https://data.delijn.be/stops/408792", "https://data.delijn.be/stops/408807"], ["https://data.delijn.be/stops/104458", "https://data.delijn.be/stops/104459"], ["https://data.delijn.be/stops/108484", "https://data.delijn.be/stops/306597"], ["https://data.delijn.be/stops/300389", "https://data.delijn.be/stops/304552"], ["https://data.delijn.be/stops/208663", "https://data.delijn.be/stops/209663"], ["https://data.delijn.be/stops/302546", "https://data.delijn.be/stops/303381"], ["https://data.delijn.be/stops/104346", "https://data.delijn.be/stops/104965"], ["https://data.delijn.be/stops/108235", "https://data.delijn.be/stops/108325"], ["https://data.delijn.be/stops/304882", "https://data.delijn.be/stops/308526"], ["https://data.delijn.be/stops/305378", "https://data.delijn.be/stops/305406"], ["https://data.delijn.be/stops/405615", "https://data.delijn.be/stops/407163"], ["https://data.delijn.be/stops/305257", "https://data.delijn.be/stops/305892"], ["https://data.delijn.be/stops/307146", "https://data.delijn.be/stops/307148"], ["https://data.delijn.be/stops/501187", "https://data.delijn.be/stops/506187"], ["https://data.delijn.be/stops/201665", "https://data.delijn.be/stops/203323"], ["https://data.delijn.be/stops/402122", "https://data.delijn.be/stops/402123"], ["https://data.delijn.be/stops/205301", "https://data.delijn.be/stops/205302"], ["https://data.delijn.be/stops/406712", "https://data.delijn.be/stops/408745"], ["https://data.delijn.be/stops/104672", "https://data.delijn.be/stops/107378"], ["https://data.delijn.be/stops/404137", "https://data.delijn.be/stops/404153"], ["https://data.delijn.be/stops/504371", "https://data.delijn.be/stops/509372"], ["https://data.delijn.be/stops/501680", "https://data.delijn.be/stops/504262"], ["https://data.delijn.be/stops/406037", "https://data.delijn.be/stops/407780"], ["https://data.delijn.be/stops/200861", "https://data.delijn.be/stops/200875"], ["https://data.delijn.be/stops/301736", "https://data.delijn.be/stops/301740"], ["https://data.delijn.be/stops/202408", "https://data.delijn.be/stops/202417"], ["https://data.delijn.be/stops/504985", "https://data.delijn.be/stops/505428"], ["https://data.delijn.be/stops/503142", "https://data.delijn.be/stops/508041"], ["https://data.delijn.be/stops/209687", "https://data.delijn.be/stops/209688"], ["https://data.delijn.be/stops/304623", "https://data.delijn.be/stops/304624"], ["https://data.delijn.be/stops/403318", "https://data.delijn.be/stops/403324"], ["https://data.delijn.be/stops/504357", "https://data.delijn.be/stops/504360"], ["https://data.delijn.be/stops/403944", "https://data.delijn.be/stops/404004"], ["https://data.delijn.be/stops/401397", "https://data.delijn.be/stops/401417"], ["https://data.delijn.be/stops/501017", "https://data.delijn.be/stops/506017"], ["https://data.delijn.be/stops/508124", "https://data.delijn.be/stops/509886"], ["https://data.delijn.be/stops/302766", "https://data.delijn.be/stops/304703"], ["https://data.delijn.be/stops/207491", "https://data.delijn.be/stops/209686"], ["https://data.delijn.be/stops/408317", "https://data.delijn.be/stops/408323"], ["https://data.delijn.be/stops/107338", "https://data.delijn.be/stops/107341"], ["https://data.delijn.be/stops/104347", "https://data.delijn.be/stops/105921"], ["https://data.delijn.be/stops/109139", "https://data.delijn.be/stops/109142"], ["https://data.delijn.be/stops/200137", "https://data.delijn.be/stops/201223"], ["https://data.delijn.be/stops/106107", "https://data.delijn.be/stops/106177"], ["https://data.delijn.be/stops/209107", "https://data.delijn.be/stops/209109"], ["https://data.delijn.be/stops/101451", "https://data.delijn.be/stops/107056"], ["https://data.delijn.be/stops/504536", "https://data.delijn.be/stops/504537"], ["https://data.delijn.be/stops/504262", "https://data.delijn.be/stops/509262"], ["https://data.delijn.be/stops/306693", "https://data.delijn.be/stops/308785"], ["https://data.delijn.be/stops/302020", "https://data.delijn.be/stops/308958"], ["https://data.delijn.be/stops/501197", "https://data.delijn.be/stops/501568"], ["https://data.delijn.be/stops/402546", "https://data.delijn.be/stops/402547"], ["https://data.delijn.be/stops/306784", "https://data.delijn.be/stops/306786"], ["https://data.delijn.be/stops/202737", "https://data.delijn.be/stops/202738"], ["https://data.delijn.be/stops/209257", "https://data.delijn.be/stops/209258"], ["https://data.delijn.be/stops/204985", "https://data.delijn.be/stops/209191"], ["https://data.delijn.be/stops/303069", "https://data.delijn.be/stops/303209"], ["https://data.delijn.be/stops/201615", "https://data.delijn.be/stops/201656"], ["https://data.delijn.be/stops/303535", "https://data.delijn.be/stops/303586"], ["https://data.delijn.be/stops/500998", "https://data.delijn.be/stops/509425"], ["https://data.delijn.be/stops/504396", "https://data.delijn.be/stops/504680"], ["https://data.delijn.be/stops/109496", "https://data.delijn.be/stops/109499"], ["https://data.delijn.be/stops/409423", "https://data.delijn.be/stops/409715"], ["https://data.delijn.be/stops/404919", "https://data.delijn.be/stops/404932"], ["https://data.delijn.be/stops/104676", "https://data.delijn.be/stops/107377"], ["https://data.delijn.be/stops/107314", "https://data.delijn.be/stops/108813"], ["https://data.delijn.be/stops/302753", "https://data.delijn.be/stops/306167"], ["https://data.delijn.be/stops/507015", "https://data.delijn.be/stops/507016"], ["https://data.delijn.be/stops/303495", "https://data.delijn.be/stops/303503"], ["https://data.delijn.be/stops/503630", "https://data.delijn.be/stops/504360"], ["https://data.delijn.be/stops/307945", "https://data.delijn.be/stops/308065"], ["https://data.delijn.be/stops/500950", "https://data.delijn.be/stops/504988"], ["https://data.delijn.be/stops/401548", "https://data.delijn.be/stops/408635"], ["https://data.delijn.be/stops/201184", "https://data.delijn.be/stops/203749"], ["https://data.delijn.be/stops/501482", "https://data.delijn.be/stops/506482"], ["https://data.delijn.be/stops/503141", "https://data.delijn.be/stops/508141"], ["https://data.delijn.be/stops/101160", "https://data.delijn.be/stops/103790"], ["https://data.delijn.be/stops/308462", "https://data.delijn.be/stops/308463"], ["https://data.delijn.be/stops/200432", "https://data.delijn.be/stops/201430"], ["https://data.delijn.be/stops/104639", "https://data.delijn.be/stops/108038"], ["https://data.delijn.be/stops/400650", "https://data.delijn.be/stops/406767"], ["https://data.delijn.be/stops/202126", "https://data.delijn.be/stops/203598"], ["https://data.delijn.be/stops/204001", "https://data.delijn.be/stops/206929"], ["https://data.delijn.be/stops/200337", "https://data.delijn.be/stops/203203"], ["https://data.delijn.be/stops/402040", "https://data.delijn.be/stops/403882"], ["https://data.delijn.be/stops/206438", "https://data.delijn.be/stops/209560"], ["https://data.delijn.be/stops/206353", "https://data.delijn.be/stops/206884"], ["https://data.delijn.be/stops/108369", "https://data.delijn.be/stops/108372"], ["https://data.delijn.be/stops/106694", "https://data.delijn.be/stops/106702"], ["https://data.delijn.be/stops/408318", "https://data.delijn.be/stops/410159"], ["https://data.delijn.be/stops/201901", "https://data.delijn.be/stops/203514"], ["https://data.delijn.be/stops/501218", "https://data.delijn.be/stops/506218"], ["https://data.delijn.be/stops/106146", "https://data.delijn.be/stops/106440"], ["https://data.delijn.be/stops/304452", "https://data.delijn.be/stops/307089"], ["https://data.delijn.be/stops/208481", "https://data.delijn.be/stops/208532"], ["https://data.delijn.be/stops/106223", "https://data.delijn.be/stops/106314"], ["https://data.delijn.be/stops/505380", "https://data.delijn.be/stops/508102"], ["https://data.delijn.be/stops/406976", "https://data.delijn.be/stops/406978"], ["https://data.delijn.be/stops/302350", "https://data.delijn.be/stops/302351"], ["https://data.delijn.be/stops/404278", "https://data.delijn.be/stops/404279"], ["https://data.delijn.be/stops/501415", "https://data.delijn.be/stops/501416"], ["https://data.delijn.be/stops/204248", "https://data.delijn.be/stops/205095"], ["https://data.delijn.be/stops/503876", "https://data.delijn.be/stops/508866"], ["https://data.delijn.be/stops/201778", "https://data.delijn.be/stops/208855"], ["https://data.delijn.be/stops/500563", "https://data.delijn.be/stops/500566"], ["https://data.delijn.be/stops/400078", "https://data.delijn.be/stops/410031"], ["https://data.delijn.be/stops/501694", "https://data.delijn.be/stops/502366"], ["https://data.delijn.be/stops/505512", "https://data.delijn.be/stops/505612"], ["https://data.delijn.be/stops/207449", "https://data.delijn.be/stops/207492"], ["https://data.delijn.be/stops/402767", "https://data.delijn.be/stops/408124"], ["https://data.delijn.be/stops/301851", "https://data.delijn.be/stops/302465"], ["https://data.delijn.be/stops/301475", "https://data.delijn.be/stops/307960"], ["https://data.delijn.be/stops/101198", "https://data.delijn.be/stops/101207"], ["https://data.delijn.be/stops/106831", "https://data.delijn.be/stops/106832"], ["https://data.delijn.be/stops/302879", "https://data.delijn.be/stops/303084"], ["https://data.delijn.be/stops/301950", "https://data.delijn.be/stops/307894"], ["https://data.delijn.be/stops/303394", "https://data.delijn.be/stops/308715"], ["https://data.delijn.be/stops/102256", "https://data.delijn.be/stops/108306"], ["https://data.delijn.be/stops/403961", "https://data.delijn.be/stops/403970"], ["https://data.delijn.be/stops/108051", "https://data.delijn.be/stops/108277"], ["https://data.delijn.be/stops/502798", "https://data.delijn.be/stops/507532"], ["https://data.delijn.be/stops/109039", "https://data.delijn.be/stops/300103"], ["https://data.delijn.be/stops/503774", "https://data.delijn.be/stops/509938"], ["https://data.delijn.be/stops/305780", "https://data.delijn.be/stops/306878"], ["https://data.delijn.be/stops/107902", "https://data.delijn.be/stops/109447"], ["https://data.delijn.be/stops/307683", "https://data.delijn.be/stops/307684"], ["https://data.delijn.be/stops/403513", "https://data.delijn.be/stops/403514"], ["https://data.delijn.be/stops/508794", "https://data.delijn.be/stops/508795"], ["https://data.delijn.be/stops/300343", "https://data.delijn.be/stops/304860"], ["https://data.delijn.be/stops/505141", "https://data.delijn.be/stops/507226"], ["https://data.delijn.be/stops/301329", "https://data.delijn.be/stops/306651"], ["https://data.delijn.be/stops/504364", "https://data.delijn.be/stops/508932"], ["https://data.delijn.be/stops/401638", "https://data.delijn.be/stops/308226"], ["https://data.delijn.be/stops/501562", "https://data.delijn.be/stops/506365"], ["https://data.delijn.be/stops/200806", "https://data.delijn.be/stops/203055"], ["https://data.delijn.be/stops/301533", "https://data.delijn.be/stops/304702"], ["https://data.delijn.be/stops/504081", "https://data.delijn.be/stops/504082"], ["https://data.delijn.be/stops/502482", "https://data.delijn.be/stops/507482"], ["https://data.delijn.be/stops/200698", "https://data.delijn.be/stops/201736"], ["https://data.delijn.be/stops/109120", "https://data.delijn.be/stops/109145"], ["https://data.delijn.be/stops/301134", "https://data.delijn.be/stops/301138"], ["https://data.delijn.be/stops/200868", "https://data.delijn.be/stops/203338"], ["https://data.delijn.be/stops/303964", "https://data.delijn.be/stops/303968"], ["https://data.delijn.be/stops/302706", "https://data.delijn.be/stops/305634"], ["https://data.delijn.be/stops/208064", "https://data.delijn.be/stops/209067"], ["https://data.delijn.be/stops/105269", "https://data.delijn.be/stops/105291"], ["https://data.delijn.be/stops/200908", "https://data.delijn.be/stops/203046"], ["https://data.delijn.be/stops/305341", "https://data.delijn.be/stops/307969"], ["https://data.delijn.be/stops/509518", "https://data.delijn.be/stops/509521"], ["https://data.delijn.be/stops/203076", "https://data.delijn.be/stops/203393"], ["https://data.delijn.be/stops/200466", "https://data.delijn.be/stops/209706"], ["https://data.delijn.be/stops/409780", "https://data.delijn.be/stops/409782"], ["https://data.delijn.be/stops/305967", "https://data.delijn.be/stops/307911"], ["https://data.delijn.be/stops/302061", "https://data.delijn.be/stops/302076"], ["https://data.delijn.be/stops/302339", "https://data.delijn.be/stops/302340"], ["https://data.delijn.be/stops/501159", "https://data.delijn.be/stops/501751"], ["https://data.delijn.be/stops/102701", "https://data.delijn.be/stops/105652"], ["https://data.delijn.be/stops/401120", "https://data.delijn.be/stops/401149"], ["https://data.delijn.be/stops/404977", "https://data.delijn.be/stops/404980"], ["https://data.delijn.be/stops/204103", "https://data.delijn.be/stops/207048"], ["https://data.delijn.be/stops/102790", "https://data.delijn.be/stops/102987"], ["https://data.delijn.be/stops/305608", "https://data.delijn.be/stops/305609"], ["https://data.delijn.be/stops/400472", "https://data.delijn.be/stops/400473"], ["https://data.delijn.be/stops/303790", "https://data.delijn.be/stops/308713"], ["https://data.delijn.be/stops/502069", "https://data.delijn.be/stops/505686"], ["https://data.delijn.be/stops/206001", "https://data.delijn.be/stops/206062"], ["https://data.delijn.be/stops/402084", "https://data.delijn.be/stops/402085"], ["https://data.delijn.be/stops/101747", "https://data.delijn.be/stops/106386"], ["https://data.delijn.be/stops/301124", "https://data.delijn.be/stops/303624"], ["https://data.delijn.be/stops/304599", "https://data.delijn.be/stops/304600"], ["https://data.delijn.be/stops/204257", "https://data.delijn.be/stops/204489"], ["https://data.delijn.be/stops/208357", "https://data.delijn.be/stops/209356"], ["https://data.delijn.be/stops/307402", "https://data.delijn.be/stops/307406"], ["https://data.delijn.be/stops/200095", "https://data.delijn.be/stops/201345"], ["https://data.delijn.be/stops/201419", "https://data.delijn.be/stops/210070"], ["https://data.delijn.be/stops/505254", "https://data.delijn.be/stops/508930"], ["https://data.delijn.be/stops/500941", "https://data.delijn.be/stops/508865"], ["https://data.delijn.be/stops/400717", "https://data.delijn.be/stops/409512"], ["https://data.delijn.be/stops/403251", "https://data.delijn.be/stops/403280"], ["https://data.delijn.be/stops/201881", "https://data.delijn.be/stops/202421"], ["https://data.delijn.be/stops/305447", "https://data.delijn.be/stops/307327"], ["https://data.delijn.be/stops/403686", "https://data.delijn.be/stops/403688"], ["https://data.delijn.be/stops/401077", "https://data.delijn.be/stops/402899"], ["https://data.delijn.be/stops/202837", "https://data.delijn.be/stops/219002"], ["https://data.delijn.be/stops/106051", "https://data.delijn.be/stops/106412"], ["https://data.delijn.be/stops/205344", "https://data.delijn.be/stops/205452"], ["https://data.delijn.be/stops/204164", "https://data.delijn.be/stops/207273"], ["https://data.delijn.be/stops/208224", "https://data.delijn.be/stops/209043"], ["https://data.delijn.be/stops/302677", "https://data.delijn.be/stops/302685"], ["https://data.delijn.be/stops/102622", "https://data.delijn.be/stops/108211"], ["https://data.delijn.be/stops/101009", "https://data.delijn.be/stops/101701"], ["https://data.delijn.be/stops/204698", "https://data.delijn.be/stops/205320"], ["https://data.delijn.be/stops/204224", "https://data.delijn.be/stops/204246"], ["https://data.delijn.be/stops/405767", "https://data.delijn.be/stops/406880"], ["https://data.delijn.be/stops/202769", "https://data.delijn.be/stops/203768"], ["https://data.delijn.be/stops/303180", "https://data.delijn.be/stops/304867"], ["https://data.delijn.be/stops/504770", "https://data.delijn.be/stops/505200"], ["https://data.delijn.be/stops/505039", "https://data.delijn.be/stops/505757"], ["https://data.delijn.be/stops/200967", "https://data.delijn.be/stops/208731"], ["https://data.delijn.be/stops/401378", "https://data.delijn.be/stops/410173"], ["https://data.delijn.be/stops/202418", "https://data.delijn.be/stops/203418"], ["https://data.delijn.be/stops/402395", "https://data.delijn.be/stops/407495"], ["https://data.delijn.be/stops/407123", "https://data.delijn.be/stops/407277"], ["https://data.delijn.be/stops/406306", "https://data.delijn.be/stops/406308"], ["https://data.delijn.be/stops/103472", "https://data.delijn.be/stops/109214"], ["https://data.delijn.be/stops/407938", "https://data.delijn.be/stops/303263"], ["https://data.delijn.be/stops/300108", "https://data.delijn.be/stops/306812"], ["https://data.delijn.be/stops/501362", "https://data.delijn.be/stops/506386"], ["https://data.delijn.be/stops/306869", "https://data.delijn.be/stops/307501"], ["https://data.delijn.be/stops/102517", "https://data.delijn.be/stops/406511"], ["https://data.delijn.be/stops/104966", "https://data.delijn.be/stops/107429"], ["https://data.delijn.be/stops/301739", "https://data.delijn.be/stops/305908"], ["https://data.delijn.be/stops/208233", "https://data.delijn.be/stops/209234"], ["https://data.delijn.be/stops/202886", "https://data.delijn.be/stops/207868"], ["https://data.delijn.be/stops/505898", "https://data.delijn.be/stops/509402"], ["https://data.delijn.be/stops/404699", "https://data.delijn.be/stops/405594"], ["https://data.delijn.be/stops/407523", "https://data.delijn.be/stops/407542"], ["https://data.delijn.be/stops/305051", "https://data.delijn.be/stops/306958"], ["https://data.delijn.be/stops/105546", "https://data.delijn.be/stops/106131"], ["https://data.delijn.be/stops/504398", "https://data.delijn.be/stops/504550"], ["https://data.delijn.be/stops/502299", "https://data.delijn.be/stops/507299"], ["https://data.delijn.be/stops/101297", "https://data.delijn.be/stops/108802"], ["https://data.delijn.be/stops/304104", "https://data.delijn.be/stops/304781"], ["https://data.delijn.be/stops/202481", "https://data.delijn.be/stops/203481"], ["https://data.delijn.be/stops/501173", "https://data.delijn.be/stops/506173"], ["https://data.delijn.be/stops/503728", "https://data.delijn.be/stops/508060"], ["https://data.delijn.be/stops/101024", "https://data.delijn.be/stops/105150"], ["https://data.delijn.be/stops/400859", "https://data.delijn.be/stops/410393"], ["https://data.delijn.be/stops/401762", "https://data.delijn.be/stops/406343"], ["https://data.delijn.be/stops/208241", "https://data.delijn.be/stops/209068"], ["https://data.delijn.be/stops/408396", "https://data.delijn.be/stops/308241"], ["https://data.delijn.be/stops/504848", "https://data.delijn.be/stops/508115"], ["https://data.delijn.be/stops/409424", "https://data.delijn.be/stops/409724"], ["https://data.delijn.be/stops/106632", "https://data.delijn.be/stops/107159"], ["https://data.delijn.be/stops/404343", "https://data.delijn.be/stops/404358"], ["https://data.delijn.be/stops/207794", "https://data.delijn.be/stops/218013"], ["https://data.delijn.be/stops/304151", "https://data.delijn.be/stops/304157"], ["https://data.delijn.be/stops/400379", "https://data.delijn.be/stops/406788"], ["https://data.delijn.be/stops/206791", "https://data.delijn.be/stops/209090"], ["https://data.delijn.be/stops/406090", "https://data.delijn.be/stops/406091"], ["https://data.delijn.be/stops/209052", "https://data.delijn.be/stops/209053"], ["https://data.delijn.be/stops/200214", "https://data.delijn.be/stops/202545"], ["https://data.delijn.be/stops/101637", "https://data.delijn.be/stops/104370"], ["https://data.delijn.be/stops/404136", "https://data.delijn.be/stops/404138"], ["https://data.delijn.be/stops/502416", "https://data.delijn.be/stops/507416"], ["https://data.delijn.be/stops/503401", "https://data.delijn.be/stops/504949"], ["https://data.delijn.be/stops/102240", "https://data.delijn.be/stops/102245"], ["https://data.delijn.be/stops/200158", "https://data.delijn.be/stops/203942"], ["https://data.delijn.be/stops/509064", "https://data.delijn.be/stops/509067"], ["https://data.delijn.be/stops/502623", "https://data.delijn.be/stops/507623"], ["https://data.delijn.be/stops/200942", "https://data.delijn.be/stops/203539"], ["https://data.delijn.be/stops/304218", "https://data.delijn.be/stops/304230"], ["https://data.delijn.be/stops/303355", "https://data.delijn.be/stops/303370"], ["https://data.delijn.be/stops/105771", "https://data.delijn.be/stops/109807"], ["https://data.delijn.be/stops/209292", "https://data.delijn.be/stops/209791"], ["https://data.delijn.be/stops/103028", "https://data.delijn.be/stops/104564"], ["https://data.delijn.be/stops/501624", "https://data.delijn.be/stops/506616"], ["https://data.delijn.be/stops/305878", "https://data.delijn.be/stops/308687"], ["https://data.delijn.be/stops/301540", "https://data.delijn.be/stops/305142"], ["https://data.delijn.be/stops/402002", "https://data.delijn.be/stops/406041"], ["https://data.delijn.be/stops/105277", "https://data.delijn.be/stops/105681"], ["https://data.delijn.be/stops/406589", "https://data.delijn.be/stops/406701"], ["https://data.delijn.be/stops/403673", "https://data.delijn.be/stops/405633"], ["https://data.delijn.be/stops/403966", "https://data.delijn.be/stops/403976"], ["https://data.delijn.be/stops/507416", "https://data.delijn.be/stops/507751"], ["https://data.delijn.be/stops/205174", "https://data.delijn.be/stops/206827"], ["https://data.delijn.be/stops/201570", "https://data.delijn.be/stops/209291"], ["https://data.delijn.be/stops/208781", "https://data.delijn.be/stops/208782"], ["https://data.delijn.be/stops/504212", "https://data.delijn.be/stops/509219"], ["https://data.delijn.be/stops/109678", "https://data.delijn.be/stops/109681"], ["https://data.delijn.be/stops/407783", "https://data.delijn.be/stops/307381"], ["https://data.delijn.be/stops/200507", "https://data.delijn.be/stops/201506"], ["https://data.delijn.be/stops/403704", "https://data.delijn.be/stops/406973"], ["https://data.delijn.be/stops/304502", "https://data.delijn.be/stops/306205"], ["https://data.delijn.be/stops/505059", "https://data.delijn.be/stops/507918"], ["https://data.delijn.be/stops/405044", "https://data.delijn.be/stops/405045"], ["https://data.delijn.be/stops/207588", "https://data.delijn.be/stops/216019"], ["https://data.delijn.be/stops/102016", "https://data.delijn.be/stops/102025"], ["https://data.delijn.be/stops/400206", "https://data.delijn.be/stops/408489"], ["https://data.delijn.be/stops/205332", "https://data.delijn.be/stops/205506"], ["https://data.delijn.be/stops/107200", "https://data.delijn.be/stops/107689"], ["https://data.delijn.be/stops/400195", "https://data.delijn.be/stops/401166"], ["https://data.delijn.be/stops/303203", "https://data.delijn.be/stops/303204"], ["https://data.delijn.be/stops/108445", "https://data.delijn.be/stops/108448"], ["https://data.delijn.be/stops/407084", "https://data.delijn.be/stops/407086"], ["https://data.delijn.be/stops/202675", "https://data.delijn.be/stops/203724"], ["https://data.delijn.be/stops/105639", "https://data.delijn.be/stops/105815"], ["https://data.delijn.be/stops/502163", "https://data.delijn.be/stops/507676"], ["https://data.delijn.be/stops/301461", "https://data.delijn.be/stops/301492"], ["https://data.delijn.be/stops/200624", "https://data.delijn.be/stops/211073"], ["https://data.delijn.be/stops/101870", "https://data.delijn.be/stops/101875"], ["https://data.delijn.be/stops/505574", "https://data.delijn.be/stops/507327"], ["https://data.delijn.be/stops/104749", "https://data.delijn.be/stops/107332"], ["https://data.delijn.be/stops/300022", "https://data.delijn.be/stops/300404"], ["https://data.delijn.be/stops/109362", "https://data.delijn.be/stops/109365"], ["https://data.delijn.be/stops/102872", "https://data.delijn.be/stops/103281"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/510005"], ["https://data.delijn.be/stops/509346", "https://data.delijn.be/stops/509350"], ["https://data.delijn.be/stops/206321", "https://data.delijn.be/stops/207149"], ["https://data.delijn.be/stops/202972", "https://data.delijn.be/stops/203972"], ["https://data.delijn.be/stops/401252", "https://data.delijn.be/stops/401452"], ["https://data.delijn.be/stops/305416", "https://data.delijn.be/stops/305421"], ["https://data.delijn.be/stops/409257", "https://data.delijn.be/stops/409302"], ["https://data.delijn.be/stops/200560", "https://data.delijn.be/stops/200652"], ["https://data.delijn.be/stops/300935", "https://data.delijn.be/stops/305270"], ["https://data.delijn.be/stops/302654", "https://data.delijn.be/stops/306339"], ["https://data.delijn.be/stops/101417", "https://data.delijn.be/stops/103716"], ["https://data.delijn.be/stops/207222", "https://data.delijn.be/stops/207223"], ["https://data.delijn.be/stops/102272", "https://data.delijn.be/stops/105995"], ["https://data.delijn.be/stops/103084", "https://data.delijn.be/stops/106585"], ["https://data.delijn.be/stops/502443", "https://data.delijn.be/stops/507443"], ["https://data.delijn.be/stops/504613", "https://data.delijn.be/stops/509609"], ["https://data.delijn.be/stops/103749", "https://data.delijn.be/stops/105085"], ["https://data.delijn.be/stops/104812", "https://data.delijn.be/stops/104814"], ["https://data.delijn.be/stops/308237", "https://data.delijn.be/stops/308238"], ["https://data.delijn.be/stops/506136", "https://data.delijn.be/stops/506441"], ["https://data.delijn.be/stops/504490", "https://data.delijn.be/stops/509490"], ["https://data.delijn.be/stops/101002", "https://data.delijn.be/stops/102691"], ["https://data.delijn.be/stops/107313", "https://data.delijn.be/stops/108816"], ["https://data.delijn.be/stops/509757", "https://data.delijn.be/stops/509767"], ["https://data.delijn.be/stops/407537", "https://data.delijn.be/stops/408092"], ["https://data.delijn.be/stops/404580", "https://data.delijn.be/stops/404581"], ["https://data.delijn.be/stops/300278", "https://data.delijn.be/stops/300286"], ["https://data.delijn.be/stops/407112", "https://data.delijn.be/stops/407343"], ["https://data.delijn.be/stops/101660", "https://data.delijn.be/stops/102636"], ["https://data.delijn.be/stops/202507", "https://data.delijn.be/stops/202930"], ["https://data.delijn.be/stops/304313", "https://data.delijn.be/stops/304328"], ["https://data.delijn.be/stops/208675", "https://data.delijn.be/stops/208751"], ["https://data.delijn.be/stops/503516", "https://data.delijn.be/stops/505966"], ["https://data.delijn.be/stops/104475", "https://data.delijn.be/stops/105395"], ["https://data.delijn.be/stops/405915", "https://data.delijn.be/stops/405918"], ["https://data.delijn.be/stops/501249", "https://data.delijn.be/stops/506235"], ["https://data.delijn.be/stops/201572", "https://data.delijn.be/stops/203197"], ["https://data.delijn.be/stops/105421", "https://data.delijn.be/stops/105426"], ["https://data.delijn.be/stops/302887", "https://data.delijn.be/stops/302925"], ["https://data.delijn.be/stops/308830", "https://data.delijn.be/stops/308831"], ["https://data.delijn.be/stops/200334", "https://data.delijn.be/stops/200336"], ["https://data.delijn.be/stops/302230", "https://data.delijn.be/stops/302231"], ["https://data.delijn.be/stops/403117", "https://data.delijn.be/stops/403118"], ["https://data.delijn.be/stops/407389", "https://data.delijn.be/stops/407493"], ["https://data.delijn.be/stops/300421", "https://data.delijn.be/stops/302641"], ["https://data.delijn.be/stops/407257", "https://data.delijn.be/stops/407335"], ["https://data.delijn.be/stops/300870", "https://data.delijn.be/stops/302249"], ["https://data.delijn.be/stops/203951", "https://data.delijn.be/stops/203952"], ["https://data.delijn.be/stops/208776", "https://data.delijn.be/stops/209363"], ["https://data.delijn.be/stops/307324", "https://data.delijn.be/stops/308673"], ["https://data.delijn.be/stops/505351", "https://data.delijn.be/stops/505724"], ["https://data.delijn.be/stops/104382", "https://data.delijn.be/stops/105420"], ["https://data.delijn.be/stops/106298", "https://data.delijn.be/stops/106468"], ["https://data.delijn.be/stops/502332", "https://data.delijn.be/stops/507278"], ["https://data.delijn.be/stops/504496", "https://data.delijn.be/stops/504665"], ["https://data.delijn.be/stops/209672", "https://data.delijn.be/stops/209674"], ["https://data.delijn.be/stops/201751", "https://data.delijn.be/stops/209428"], ["https://data.delijn.be/stops/102960", "https://data.delijn.be/stops/104675"], ["https://data.delijn.be/stops/504324", "https://data.delijn.be/stops/504407"], ["https://data.delijn.be/stops/300885", "https://data.delijn.be/stops/308856"], ["https://data.delijn.be/stops/108761", "https://data.delijn.be/stops/109797"], ["https://data.delijn.be/stops/502120", "https://data.delijn.be/stops/502633"], ["https://data.delijn.be/stops/503882", "https://data.delijn.be/stops/508101"], ["https://data.delijn.be/stops/406658", "https://data.delijn.be/stops/406659"], ["https://data.delijn.be/stops/102477", "https://data.delijn.be/stops/406835"], ["https://data.delijn.be/stops/502541", "https://data.delijn.be/stops/505703"], ["https://data.delijn.be/stops/305492", "https://data.delijn.be/stops/305493"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/208509"], ["https://data.delijn.be/stops/406928", "https://data.delijn.be/stops/407422"], ["https://data.delijn.be/stops/304813", "https://data.delijn.be/stops/304814"], ["https://data.delijn.be/stops/204727", "https://data.delijn.be/stops/205727"], ["https://data.delijn.be/stops/504105", "https://data.delijn.be/stops/504441"], ["https://data.delijn.be/stops/104506", "https://data.delijn.be/stops/308795"], ["https://data.delijn.be/stops/107866", "https://data.delijn.be/stops/107867"], ["https://data.delijn.be/stops/303560", "https://data.delijn.be/stops/303561"], ["https://data.delijn.be/stops/301440", "https://data.delijn.be/stops/301674"], ["https://data.delijn.be/stops/204186", "https://data.delijn.be/stops/205186"], ["https://data.delijn.be/stops/106661", "https://data.delijn.be/stops/107194"], ["https://data.delijn.be/stops/408310", "https://data.delijn.be/stops/408355"], ["https://data.delijn.be/stops/105131", "https://data.delijn.be/stops/105199"], ["https://data.delijn.be/stops/104246", "https://data.delijn.be/stops/104247"], ["https://data.delijn.be/stops/400976", "https://data.delijn.be/stops/409660"], ["https://data.delijn.be/stops/200188", "https://data.delijn.be/stops/200501"], ["https://data.delijn.be/stops/106617", "https://data.delijn.be/stops/106702"], ["https://data.delijn.be/stops/106973", "https://data.delijn.be/stops/106974"], ["https://data.delijn.be/stops/104014", "https://data.delijn.be/stops/104027"], ["https://data.delijn.be/stops/104503", "https://data.delijn.be/stops/104506"], ["https://data.delijn.be/stops/205095", "https://data.delijn.be/stops/205419"], ["https://data.delijn.be/stops/201694", "https://data.delijn.be/stops/203087"], ["https://data.delijn.be/stops/505982", "https://data.delijn.be/stops/507190"], ["https://data.delijn.be/stops/208468", "https://data.delijn.be/stops/208469"], ["https://data.delijn.be/stops/502483", "https://data.delijn.be/stops/502924"], ["https://data.delijn.be/stops/405754", "https://data.delijn.be/stops/409281"], ["https://data.delijn.be/stops/108616", "https://data.delijn.be/stops/108617"], ["https://data.delijn.be/stops/106096", "https://data.delijn.be/stops/109185"], ["https://data.delijn.be/stops/200811", "https://data.delijn.be/stops/203436"], ["https://data.delijn.be/stops/102528", "https://data.delijn.be/stops/405093"], ["https://data.delijn.be/stops/406597", "https://data.delijn.be/stops/406632"], ["https://data.delijn.be/stops/305394", "https://data.delijn.be/stops/305404"], ["https://data.delijn.be/stops/406166", "https://data.delijn.be/stops/410225"], ["https://data.delijn.be/stops/303351", "https://data.delijn.be/stops/303373"], ["https://data.delijn.be/stops/301718", "https://data.delijn.be/stops/308427"], ["https://data.delijn.be/stops/303793", "https://data.delijn.be/stops/303841"], ["https://data.delijn.be/stops/108969", "https://data.delijn.be/stops/108971"], ["https://data.delijn.be/stops/505407", "https://data.delijn.be/stops/509052"], ["https://data.delijn.be/stops/508922", "https://data.delijn.be/stops/508929"], ["https://data.delijn.be/stops/201578", "https://data.delijn.be/stops/203192"], ["https://data.delijn.be/stops/302381", "https://data.delijn.be/stops/304082"], ["https://data.delijn.be/stops/503026", "https://data.delijn.be/stops/508026"], ["https://data.delijn.be/stops/405276", "https://data.delijn.be/stops/410088"], ["https://data.delijn.be/stops/201856", "https://data.delijn.be/stops/201867"], ["https://data.delijn.be/stops/303704", "https://data.delijn.be/stops/303705"], ["https://data.delijn.be/stops/505143", "https://data.delijn.be/stops/509052"], ["https://data.delijn.be/stops/208140", "https://data.delijn.be/stops/209139"], ["https://data.delijn.be/stops/300637", "https://data.delijn.be/stops/300647"], ["https://data.delijn.be/stops/201138", "https://data.delijn.be/stops/209931"], ["https://data.delijn.be/stops/404708", "https://data.delijn.be/stops/404728"], ["https://data.delijn.be/stops/501293", "https://data.delijn.be/stops/501303"], ["https://data.delijn.be/stops/301705", "https://data.delijn.be/stops/301713"], ["https://data.delijn.be/stops/301566", "https://data.delijn.be/stops/301578"], ["https://data.delijn.be/stops/107926", "https://data.delijn.be/stops/107929"], ["https://data.delijn.be/stops/405208", "https://data.delijn.be/stops/405255"], ["https://data.delijn.be/stops/103117", "https://data.delijn.be/stops/104676"], ["https://data.delijn.be/stops/204300", "https://data.delijn.be/stops/204539"], ["https://data.delijn.be/stops/105235", "https://data.delijn.be/stops/106015"], ["https://data.delijn.be/stops/502468", "https://data.delijn.be/stops/507487"], ["https://data.delijn.be/stops/301569", "https://data.delijn.be/stops/306102"], ["https://data.delijn.be/stops/303064", "https://data.delijn.be/stops/304485"], ["https://data.delijn.be/stops/400663", "https://data.delijn.be/stops/408964"], ["https://data.delijn.be/stops/209329", "https://data.delijn.be/stops/210048"], ["https://data.delijn.be/stops/200500", "https://data.delijn.be/stops/200502"], ["https://data.delijn.be/stops/105332", "https://data.delijn.be/stops/204027"], ["https://data.delijn.be/stops/402300", "https://data.delijn.be/stops/409372"], ["https://data.delijn.be/stops/508032", "https://data.delijn.be/stops/508677"], ["https://data.delijn.be/stops/206332", "https://data.delijn.be/stops/207710"], ["https://data.delijn.be/stops/400355", "https://data.delijn.be/stops/400397"], ["https://data.delijn.be/stops/401220", "https://data.delijn.be/stops/401277"], ["https://data.delijn.be/stops/405177", "https://data.delijn.be/stops/405202"], ["https://data.delijn.be/stops/101191", "https://data.delijn.be/stops/205668"], ["https://data.delijn.be/stops/304425", "https://data.delijn.be/stops/307420"], ["https://data.delijn.be/stops/204789", "https://data.delijn.be/stops/205129"], ["https://data.delijn.be/stops/502233", "https://data.delijn.be/stops/507233"], ["https://data.delijn.be/stops/405259", "https://data.delijn.be/stops/405275"], ["https://data.delijn.be/stops/404620", "https://data.delijn.be/stops/410125"], ["https://data.delijn.be/stops/400156", "https://data.delijn.be/stops/409067"], ["https://data.delijn.be/stops/210015", "https://data.delijn.be/stops/507292"], ["https://data.delijn.be/stops/103473", "https://data.delijn.be/stops/108271"], ["https://data.delijn.be/stops/404216", "https://data.delijn.be/stops/404217"], ["https://data.delijn.be/stops/502047", "https://data.delijn.be/stops/502619"], ["https://data.delijn.be/stops/201937", "https://data.delijn.be/stops/203440"], ["https://data.delijn.be/stops/105369", "https://data.delijn.be/stops/105373"], ["https://data.delijn.be/stops/407321", "https://data.delijn.be/stops/408456"], ["https://data.delijn.be/stops/405705", "https://data.delijn.be/stops/407204"], ["https://data.delijn.be/stops/403292", "https://data.delijn.be/stops/403384"], ["https://data.delijn.be/stops/101977", "https://data.delijn.be/stops/108051"], ["https://data.delijn.be/stops/207226", "https://data.delijn.be/stops/308570"], ["https://data.delijn.be/stops/105113", "https://data.delijn.be/stops/105153"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/106622"], ["https://data.delijn.be/stops/400789", "https://data.delijn.be/stops/409592"], ["https://data.delijn.be/stops/508638", "https://data.delijn.be/stops/508639"], ["https://data.delijn.be/stops/503084", "https://data.delijn.be/stops/503085"], ["https://data.delijn.be/stops/208810", "https://data.delijn.be/stops/208813"], ["https://data.delijn.be/stops/103598", "https://data.delijn.be/stops/108914"], ["https://data.delijn.be/stops/407080", "https://data.delijn.be/stops/409028"], ["https://data.delijn.be/stops/206535", "https://data.delijn.be/stops/207645"], ["https://data.delijn.be/stops/503874", "https://data.delijn.be/stops/508563"], ["https://data.delijn.be/stops/502634", "https://data.delijn.be/stops/507444"], ["https://data.delijn.be/stops/305985", "https://data.delijn.be/stops/305986"], ["https://data.delijn.be/stops/409070", "https://data.delijn.be/stops/409086"], ["https://data.delijn.be/stops/504812", "https://data.delijn.be/stops/508473"], ["https://data.delijn.be/stops/500195", "https://data.delijn.be/stops/506207"], ["https://data.delijn.be/stops/408502", "https://data.delijn.be/stops/408503"], ["https://data.delijn.be/stops/102379", "https://data.delijn.be/stops/107716"], ["https://data.delijn.be/stops/407682", "https://data.delijn.be/stops/407693"], ["https://data.delijn.be/stops/202020", "https://data.delijn.be/stops/208889"], ["https://data.delijn.be/stops/503185", "https://data.delijn.be/stops/503201"], ["https://data.delijn.be/stops/507381", "https://data.delijn.be/stops/507388"], ["https://data.delijn.be/stops/206105", "https://data.delijn.be/stops/306726"], ["https://data.delijn.be/stops/402872", "https://data.delijn.be/stops/402873"], ["https://data.delijn.be/stops/406287", "https://data.delijn.be/stops/410131"], ["https://data.delijn.be/stops/103241", "https://data.delijn.be/stops/107301"], ["https://data.delijn.be/stops/107916", "https://data.delijn.be/stops/308845"], ["https://data.delijn.be/stops/305308", "https://data.delijn.be/stops/305309"], ["https://data.delijn.be/stops/407707", "https://data.delijn.be/stops/407768"], ["https://data.delijn.be/stops/302697", "https://data.delijn.be/stops/302702"], ["https://data.delijn.be/stops/201188", "https://data.delijn.be/stops/201189"], ["https://data.delijn.be/stops/502004", "https://data.delijn.be/stops/505744"], ["https://data.delijn.be/stops/504993", "https://data.delijn.be/stops/508845"], ["https://data.delijn.be/stops/501311", "https://data.delijn.be/stops/506311"], ["https://data.delijn.be/stops/508313", "https://data.delijn.be/stops/508433"], ["https://data.delijn.be/stops/206683", "https://data.delijn.be/stops/207605"], ["https://data.delijn.be/stops/201140", "https://data.delijn.be/stops/201607"], ["https://data.delijn.be/stops/500562", "https://data.delijn.be/stops/506031"], ["https://data.delijn.be/stops/407831", "https://data.delijn.be/stops/407977"], ["https://data.delijn.be/stops/302180", "https://data.delijn.be/stops/305090"], ["https://data.delijn.be/stops/200550", "https://data.delijn.be/stops/201518"], ["https://data.delijn.be/stops/504164", "https://data.delijn.be/stops/504176"], ["https://data.delijn.be/stops/103676", "https://data.delijn.be/stops/106216"], ["https://data.delijn.be/stops/503457", "https://data.delijn.be/stops/503477"], ["https://data.delijn.be/stops/207254", "https://data.delijn.be/stops/207993"], ["https://data.delijn.be/stops/103088", "https://data.delijn.be/stops/107469"], ["https://data.delijn.be/stops/300515", "https://data.delijn.be/stops/300516"], ["https://data.delijn.be/stops/304982", "https://data.delijn.be/stops/304983"], ["https://data.delijn.be/stops/405214", "https://data.delijn.be/stops/405296"], ["https://data.delijn.be/stops/304762", "https://data.delijn.be/stops/304768"], ["https://data.delijn.be/stops/206867", "https://data.delijn.be/stops/208813"], ["https://data.delijn.be/stops/505633", "https://data.delijn.be/stops/509807"], ["https://data.delijn.be/stops/201955", "https://data.delijn.be/stops/202286"], ["https://data.delijn.be/stops/505809", "https://data.delijn.be/stops/508828"], ["https://data.delijn.be/stops/503323", "https://data.delijn.be/stops/508319"], ["https://data.delijn.be/stops/304279", "https://data.delijn.be/stops/304282"], ["https://data.delijn.be/stops/404827", "https://data.delijn.be/stops/405586"], ["https://data.delijn.be/stops/401491", "https://data.delijn.be/stops/406888"], ["https://data.delijn.be/stops/305267", "https://data.delijn.be/stops/305268"], ["https://data.delijn.be/stops/400695", "https://data.delijn.be/stops/400784"], ["https://data.delijn.be/stops/502729", "https://data.delijn.be/stops/507729"], ["https://data.delijn.be/stops/109716", "https://data.delijn.be/stops/109717"], ["https://data.delijn.be/stops/504978", "https://data.delijn.be/stops/509091"], ["https://data.delijn.be/stops/200004", "https://data.delijn.be/stops/200006"], ["https://data.delijn.be/stops/402098", "https://data.delijn.be/stops/402260"], ["https://data.delijn.be/stops/104391", "https://data.delijn.be/stops/104492"], ["https://data.delijn.be/stops/204978", "https://data.delijn.be/stops/205978"], ["https://data.delijn.be/stops/305527", "https://data.delijn.be/stops/305530"], ["https://data.delijn.be/stops/500195", "https://data.delijn.be/stops/507386"], ["https://data.delijn.be/stops/503756", "https://data.delijn.be/stops/508324"], ["https://data.delijn.be/stops/206164", "https://data.delijn.be/stops/207164"], ["https://data.delijn.be/stops/207595", "https://data.delijn.be/stops/207596"], ["https://data.delijn.be/stops/107984", "https://data.delijn.be/stops/307903"], ["https://data.delijn.be/stops/302009", "https://data.delijn.be/stops/306381"], ["https://data.delijn.be/stops/402690", "https://data.delijn.be/stops/306036"], ["https://data.delijn.be/stops/504620", "https://data.delijn.be/stops/509616"], ["https://data.delijn.be/stops/401315", "https://data.delijn.be/stops/401324"], ["https://data.delijn.be/stops/201770", "https://data.delijn.be/stops/201771"], ["https://data.delijn.be/stops/403000", "https://data.delijn.be/stops/403089"], ["https://data.delijn.be/stops/204003", "https://data.delijn.be/stops/205103"], ["https://data.delijn.be/stops/206843", "https://data.delijn.be/stops/304890"], ["https://data.delijn.be/stops/404107", "https://data.delijn.be/stops/404126"], ["https://data.delijn.be/stops/300825", "https://data.delijn.be/stops/303832"], ["https://data.delijn.be/stops/405058", "https://data.delijn.be/stops/405066"], ["https://data.delijn.be/stops/304760", "https://data.delijn.be/stops/304761"], ["https://data.delijn.be/stops/104749", "https://data.delijn.be/stops/104752"], ["https://data.delijn.be/stops/204552", "https://data.delijn.be/stops/205298"], ["https://data.delijn.be/stops/200593", "https://data.delijn.be/stops/201594"], ["https://data.delijn.be/stops/408598", "https://data.delijn.be/stops/408636"], ["https://data.delijn.be/stops/102203", "https://data.delijn.be/stops/102206"], ["https://data.delijn.be/stops/302965", "https://data.delijn.be/stops/303006"], ["https://data.delijn.be/stops/403963", "https://data.delijn.be/stops/403969"], ["https://data.delijn.be/stops/300277", "https://data.delijn.be/stops/300285"], ["https://data.delijn.be/stops/101205", "https://data.delijn.be/stops/102595"], ["https://data.delijn.be/stops/300018", "https://data.delijn.be/stops/301137"], ["https://data.delijn.be/stops/302741", "https://data.delijn.be/stops/307045"], ["https://data.delijn.be/stops/208556", "https://data.delijn.be/stops/208557"], ["https://data.delijn.be/stops/200996", "https://data.delijn.be/stops/201319"], ["https://data.delijn.be/stops/208838", "https://data.delijn.be/stops/209210"], ["https://data.delijn.be/stops/303844", "https://data.delijn.be/stops/307492"], ["https://data.delijn.be/stops/206550", "https://data.delijn.be/stops/207550"], ["https://data.delijn.be/stops/102612", "https://data.delijn.be/stops/107049"], ["https://data.delijn.be/stops/305439", "https://data.delijn.be/stops/305512"], ["https://data.delijn.be/stops/103542", "https://data.delijn.be/stops/108220"], ["https://data.delijn.be/stops/206764", "https://data.delijn.be/stops/206785"], ["https://data.delijn.be/stops/408090", "https://data.delijn.be/stops/408285"], ["https://data.delijn.be/stops/206337", "https://data.delijn.be/stops/207338"], ["https://data.delijn.be/stops/102195", "https://data.delijn.be/stops/105315"], ["https://data.delijn.be/stops/302769", "https://data.delijn.be/stops/302770"], ["https://data.delijn.be/stops/500016", "https://data.delijn.be/stops/502465"], ["https://data.delijn.be/stops/204423", "https://data.delijn.be/stops/205430"], ["https://data.delijn.be/stops/400315", "https://data.delijn.be/stops/402758"], ["https://data.delijn.be/stops/403370", "https://data.delijn.be/stops/410282"], ["https://data.delijn.be/stops/405455", "https://data.delijn.be/stops/308823"], ["https://data.delijn.be/stops/403703", "https://data.delijn.be/stops/403791"], ["https://data.delijn.be/stops/204112", "https://data.delijn.be/stops/204113"], ["https://data.delijn.be/stops/206465", "https://data.delijn.be/stops/207466"], ["https://data.delijn.be/stops/301360", "https://data.delijn.be/stops/308710"], ["https://data.delijn.be/stops/307014", "https://data.delijn.be/stops/307015"], ["https://data.delijn.be/stops/305561", "https://data.delijn.be/stops/308550"], ["https://data.delijn.be/stops/300994", "https://data.delijn.be/stops/306048"], ["https://data.delijn.be/stops/105898", "https://data.delijn.be/stops/105901"], ["https://data.delijn.be/stops/106125", "https://data.delijn.be/stops/106126"], ["https://data.delijn.be/stops/306911", "https://data.delijn.be/stops/306913"], ["https://data.delijn.be/stops/206743", "https://data.delijn.be/stops/206744"], ["https://data.delijn.be/stops/300335", "https://data.delijn.be/stops/304440"], ["https://data.delijn.be/stops/200491", "https://data.delijn.be/stops/202452"], ["https://data.delijn.be/stops/503384", "https://data.delijn.be/stops/508356"], ["https://data.delijn.be/stops/408244", "https://data.delijn.be/stops/408245"], ["https://data.delijn.be/stops/405618", "https://data.delijn.be/stops/407185"], ["https://data.delijn.be/stops/107358", "https://data.delijn.be/stops/107361"], ["https://data.delijn.be/stops/503069", "https://data.delijn.be/stops/508869"], ["https://data.delijn.be/stops/503866", "https://data.delijn.be/stops/503876"], ["https://data.delijn.be/stops/104378", "https://data.delijn.be/stops/204258"], ["https://data.delijn.be/stops/302262", "https://data.delijn.be/stops/302969"], ["https://data.delijn.be/stops/206622", "https://data.delijn.be/stops/206756"], ["https://data.delijn.be/stops/303652", "https://data.delijn.be/stops/304872"], ["https://data.delijn.be/stops/304219", "https://data.delijn.be/stops/304221"], ["https://data.delijn.be/stops/208198", "https://data.delijn.be/stops/209198"], ["https://data.delijn.be/stops/305776", "https://data.delijn.be/stops/306879"], ["https://data.delijn.be/stops/200661", "https://data.delijn.be/stops/201466"], ["https://data.delijn.be/stops/505393", "https://data.delijn.be/stops/508606"], ["https://data.delijn.be/stops/108556", "https://data.delijn.be/stops/109601"], ["https://data.delijn.be/stops/104953", "https://data.delijn.be/stops/406508"], ["https://data.delijn.be/stops/400060", "https://data.delijn.be/stops/400061"], ["https://data.delijn.be/stops/406316", "https://data.delijn.be/stops/406317"], ["https://data.delijn.be/stops/101511", "https://data.delijn.be/stops/305995"], ["https://data.delijn.be/stops/303035", "https://data.delijn.be/stops/303114"], ["https://data.delijn.be/stops/400900", "https://data.delijn.be/stops/400901"], ["https://data.delijn.be/stops/306694", "https://data.delijn.be/stops/306695"], ["https://data.delijn.be/stops/208785", "https://data.delijn.be/stops/209177"], ["https://data.delijn.be/stops/502276", "https://data.delijn.be/stops/507276"], ["https://data.delijn.be/stops/207630", "https://data.delijn.be/stops/209570"], ["https://data.delijn.be/stops/105536", "https://data.delijn.be/stops/105537"], ["https://data.delijn.be/stops/106980", "https://data.delijn.be/stops/106981"], ["https://data.delijn.be/stops/503550", "https://data.delijn.be/stops/503561"], ["https://data.delijn.be/stops/503526", "https://data.delijn.be/stops/508523"], ["https://data.delijn.be/stops/401365", "https://data.delijn.be/stops/401374"], ["https://data.delijn.be/stops/101653", "https://data.delijn.be/stops/107921"], ["https://data.delijn.be/stops/504286", "https://data.delijn.be/stops/509286"], ["https://data.delijn.be/stops/403376", "https://data.delijn.be/stops/410282"], ["https://data.delijn.be/stops/507176", "https://data.delijn.be/stops/508691"], ["https://data.delijn.be/stops/206332", "https://data.delijn.be/stops/207332"], ["https://data.delijn.be/stops/404483", "https://data.delijn.be/stops/409258"], ["https://data.delijn.be/stops/408493", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/504704", "https://data.delijn.be/stops/509028"], ["https://data.delijn.be/stops/106633", "https://data.delijn.be/stops/106636"], ["https://data.delijn.be/stops/208749", "https://data.delijn.be/stops/209295"], ["https://data.delijn.be/stops/203638", "https://data.delijn.be/stops/205073"], ["https://data.delijn.be/stops/502049", "https://data.delijn.be/stops/505768"], ["https://data.delijn.be/stops/305389", "https://data.delijn.be/stops/305417"], ["https://data.delijn.be/stops/101534", "https://data.delijn.be/stops/108777"], ["https://data.delijn.be/stops/109438", "https://data.delijn.be/stops/109441"], ["https://data.delijn.be/stops/206496", "https://data.delijn.be/stops/206507"], ["https://data.delijn.be/stops/101079", "https://data.delijn.be/stops/107140"], ["https://data.delijn.be/stops/109854", "https://data.delijn.be/stops/109979"], ["https://data.delijn.be/stops/404104", "https://data.delijn.be/stops/404126"], ["https://data.delijn.be/stops/402119", "https://data.delijn.be/stops/403688"], ["https://data.delijn.be/stops/401239", "https://data.delijn.be/stops/401264"], ["https://data.delijn.be/stops/104105", "https://data.delijn.be/stops/104840"], ["https://data.delijn.be/stops/304938", "https://data.delijn.be/stops/304939"], ["https://data.delijn.be/stops/406742", "https://data.delijn.be/stops/406743"], ["https://data.delijn.be/stops/109374", "https://data.delijn.be/stops/109375"], ["https://data.delijn.be/stops/502754", "https://data.delijn.be/stops/502755"], ["https://data.delijn.be/stops/106609", "https://data.delijn.be/stops/106690"], ["https://data.delijn.be/stops/305725", "https://data.delijn.be/stops/305728"], ["https://data.delijn.be/stops/207143", "https://data.delijn.be/stops/207298"], ["https://data.delijn.be/stops/102645", "https://data.delijn.be/stops/105400"], ["https://data.delijn.be/stops/407854", "https://data.delijn.be/stops/407858"], ["https://data.delijn.be/stops/402539", "https://data.delijn.be/stops/410022"], ["https://data.delijn.be/stops/206334", "https://data.delijn.be/stops/206363"], ["https://data.delijn.be/stops/503340", "https://data.delijn.be/stops/505629"], ["https://data.delijn.be/stops/400471", "https://data.delijn.be/stops/408824"], ["https://data.delijn.be/stops/405458", "https://data.delijn.be/stops/302848"], ["https://data.delijn.be/stops/503363", "https://data.delijn.be/stops/508360"], ["https://data.delijn.be/stops/300982", "https://data.delijn.be/stops/304721"], ["https://data.delijn.be/stops/403865", "https://data.delijn.be/stops/403872"], ["https://data.delijn.be/stops/401769", "https://data.delijn.be/stops/406346"], ["https://data.delijn.be/stops/300260", "https://data.delijn.be/stops/300271"], ["https://data.delijn.be/stops/201305", "https://data.delijn.be/stops/202764"], ["https://data.delijn.be/stops/406127", "https://data.delijn.be/stops/406148"], ["https://data.delijn.be/stops/101796", "https://data.delijn.be/stops/103216"], ["https://data.delijn.be/stops/104974", "https://data.delijn.be/stops/109553"], ["https://data.delijn.be/stops/300997", "https://data.delijn.be/stops/300998"], ["https://data.delijn.be/stops/300012", "https://data.delijn.be/stops/300756"], ["https://data.delijn.be/stops/400892", "https://data.delijn.be/stops/400893"], ["https://data.delijn.be/stops/407860", "https://data.delijn.be/stops/301846"], ["https://data.delijn.be/stops/306716", "https://data.delijn.be/stops/306718"], ["https://data.delijn.be/stops/406900", "https://data.delijn.be/stops/409454"], ["https://data.delijn.be/stops/201225", "https://data.delijn.be/stops/201226"], ["https://data.delijn.be/stops/206967", "https://data.delijn.be/stops/206996"], ["https://data.delijn.be/stops/102287", "https://data.delijn.be/stops/109007"], ["https://data.delijn.be/stops/304125", "https://data.delijn.be/stops/305897"], ["https://data.delijn.be/stops/201423", "https://data.delijn.be/stops/208719"], ["https://data.delijn.be/stops/504269", "https://data.delijn.be/stops/509271"], ["https://data.delijn.be/stops/510005", "https://data.delijn.be/stops/510006"], ["https://data.delijn.be/stops/502323", "https://data.delijn.be/stops/507323"], ["https://data.delijn.be/stops/201166", "https://data.delijn.be/stops/201749"], ["https://data.delijn.be/stops/400051", "https://data.delijn.be/stops/400167"], ["https://data.delijn.be/stops/207758", "https://data.delijn.be/stops/208184"], ["https://data.delijn.be/stops/102012", "https://data.delijn.be/stops/107876"], ["https://data.delijn.be/stops/300854", "https://data.delijn.be/stops/306052"], ["https://data.delijn.be/stops/107434", "https://data.delijn.be/stops/107526"], ["https://data.delijn.be/stops/402245", "https://data.delijn.be/stops/402252"], ["https://data.delijn.be/stops/508508", "https://data.delijn.be/stops/508511"], ["https://data.delijn.be/stops/202491", "https://data.delijn.be/stops/203490"], ["https://data.delijn.be/stops/201780", "https://data.delijn.be/stops/201820"], ["https://data.delijn.be/stops/301682", "https://data.delijn.be/stops/306294"], ["https://data.delijn.be/stops/305752", "https://data.delijn.be/stops/305753"], ["https://data.delijn.be/stops/209600", "https://data.delijn.be/stops/307303"], ["https://data.delijn.be/stops/507066", "https://data.delijn.be/stops/507070"], ["https://data.delijn.be/stops/105808", "https://data.delijn.be/stops/105809"], ["https://data.delijn.be/stops/202693", "https://data.delijn.be/stops/203693"], ["https://data.delijn.be/stops/409592", "https://data.delijn.be/stops/409594"], ["https://data.delijn.be/stops/508832", "https://data.delijn.be/stops/508833"], ["https://data.delijn.be/stops/101909", "https://data.delijn.be/stops/107920"], ["https://data.delijn.be/stops/410116", "https://data.delijn.be/stops/410327"], ["https://data.delijn.be/stops/302507", "https://data.delijn.be/stops/305802"], ["https://data.delijn.be/stops/502149", "https://data.delijn.be/stops/507135"], ["https://data.delijn.be/stops/200807", "https://data.delijn.be/stops/203389"], ["https://data.delijn.be/stops/206319", "https://data.delijn.be/stops/207319"], ["https://data.delijn.be/stops/402573", "https://data.delijn.be/stops/402617"], ["https://data.delijn.be/stops/301236", "https://data.delijn.be/stops/307622"], ["https://data.delijn.be/stops/404449", "https://data.delijn.be/stops/404537"], ["https://data.delijn.be/stops/400238", "https://data.delijn.be/stops/400239"], ["https://data.delijn.be/stops/405825", "https://data.delijn.be/stops/409746"], ["https://data.delijn.be/stops/202822", "https://data.delijn.be/stops/219503"], ["https://data.delijn.be/stops/503863", "https://data.delijn.be/stops/504695"], ["https://data.delijn.be/stops/300073", "https://data.delijn.be/stops/304670"], ["https://data.delijn.be/stops/104671", "https://data.delijn.be/stops/107379"], ["https://data.delijn.be/stops/107215", "https://data.delijn.be/stops/108255"], ["https://data.delijn.be/stops/103253", "https://data.delijn.be/stops/105715"], ["https://data.delijn.be/stops/208631", "https://data.delijn.be/stops/209631"], ["https://data.delijn.be/stops/405980", "https://data.delijn.be/stops/405985"], ["https://data.delijn.be/stops/405262", "https://data.delijn.be/stops/405279"], ["https://data.delijn.be/stops/107344", "https://data.delijn.be/stops/108161"], ["https://data.delijn.be/stops/206676", "https://data.delijn.be/stops/209165"], ["https://data.delijn.be/stops/203850", "https://data.delijn.be/stops/203948"], ["https://data.delijn.be/stops/104005", "https://data.delijn.be/stops/108900"], ["https://data.delijn.be/stops/403798", "https://data.delijn.be/stops/403806"], ["https://data.delijn.be/stops/103532", "https://data.delijn.be/stops/106339"], ["https://data.delijn.be/stops/503502", "https://data.delijn.be/stops/508868"], ["https://data.delijn.be/stops/303343", "https://data.delijn.be/stops/303345"], ["https://data.delijn.be/stops/107122", "https://data.delijn.be/stops/107124"], ["https://data.delijn.be/stops/408183", "https://data.delijn.be/stops/408443"], ["https://data.delijn.be/stops/207595", "https://data.delijn.be/stops/209515"], ["https://data.delijn.be/stops/206062", "https://data.delijn.be/stops/207063"], ["https://data.delijn.be/stops/501235", "https://data.delijn.be/stops/501245"], ["https://data.delijn.be/stops/204169", "https://data.delijn.be/stops/204771"], ["https://data.delijn.be/stops/206493", "https://data.delijn.be/stops/206495"], ["https://data.delijn.be/stops/503626", "https://data.delijn.be/stops/503628"], ["https://data.delijn.be/stops/204463", "https://data.delijn.be/stops/214017"], ["https://data.delijn.be/stops/300624", "https://data.delijn.be/stops/300627"], ["https://data.delijn.be/stops/208177", "https://data.delijn.be/stops/208178"], ["https://data.delijn.be/stops/508131", "https://data.delijn.be/stops/508132"], ["https://data.delijn.be/stops/306815", "https://data.delijn.be/stops/308507"], ["https://data.delijn.be/stops/407088", "https://data.delijn.be/stops/409494"], ["https://data.delijn.be/stops/306064", "https://data.delijn.be/stops/307715"], ["https://data.delijn.be/stops/405079", "https://data.delijn.be/stops/405090"], ["https://data.delijn.be/stops/201673", "https://data.delijn.be/stops/203208"], ["https://data.delijn.be/stops/407341", "https://data.delijn.be/stops/409355"], ["https://data.delijn.be/stops/206427", "https://data.delijn.be/stops/206428"], ["https://data.delijn.be/stops/202051", "https://data.delijn.be/stops/203051"], ["https://data.delijn.be/stops/205977", "https://data.delijn.be/stops/209245"], ["https://data.delijn.be/stops/404522", "https://data.delijn.be/stops/404523"], ["https://data.delijn.be/stops/308012", "https://data.delijn.be/stops/308013"], ["https://data.delijn.be/stops/207371", "https://data.delijn.be/stops/207372"], ["https://data.delijn.be/stops/201746", "https://data.delijn.be/stops/201773"], ["https://data.delijn.be/stops/502011", "https://data.delijn.be/stops/507011"], ["https://data.delijn.be/stops/300387", "https://data.delijn.be/stops/300388"], ["https://data.delijn.be/stops/406471", "https://data.delijn.be/stops/406496"], ["https://data.delijn.be/stops/108952", "https://data.delijn.be/stops/109220"], ["https://data.delijn.be/stops/104043", "https://data.delijn.be/stops/305456"], ["https://data.delijn.be/stops/302842", "https://data.delijn.be/stops/303334"], ["https://data.delijn.be/stops/102519", "https://data.delijn.be/stops/102552"], ["https://data.delijn.be/stops/105302", "https://data.delijn.be/stops/105363"], ["https://data.delijn.be/stops/502611", "https://data.delijn.be/stops/507611"], ["https://data.delijn.be/stops/504816", "https://data.delijn.be/stops/508028"], ["https://data.delijn.be/stops/504497", "https://data.delijn.be/stops/509504"], ["https://data.delijn.be/stops/504214", "https://data.delijn.be/stops/504523"], ["https://data.delijn.be/stops/590332", "https://data.delijn.be/stops/590333"], ["https://data.delijn.be/stops/305595", "https://data.delijn.be/stops/305604"], ["https://data.delijn.be/stops/400423", "https://data.delijn.be/stops/409424"], ["https://data.delijn.be/stops/107735", "https://data.delijn.be/stops/108555"], ["https://data.delijn.be/stops/206672", "https://data.delijn.be/stops/208095"], ["https://data.delijn.be/stops/206539", "https://data.delijn.be/stops/207539"], ["https://data.delijn.be/stops/206688", "https://data.delijn.be/stops/207341"], ["https://data.delijn.be/stops/105057", "https://data.delijn.be/stops/105169"], ["https://data.delijn.be/stops/202412", "https://data.delijn.be/stops/202413"], ["https://data.delijn.be/stops/403118", "https://data.delijn.be/stops/403119"], ["https://data.delijn.be/stops/502658", "https://data.delijn.be/stops/507323"], ["https://data.delijn.be/stops/300226", "https://data.delijn.be/stops/300227"], ["https://data.delijn.be/stops/200271", "https://data.delijn.be/stops/200273"], ["https://data.delijn.be/stops/404686", "https://data.delijn.be/stops/408908"], ["https://data.delijn.be/stops/102064", "https://data.delijn.be/stops/106926"], ["https://data.delijn.be/stops/504200", "https://data.delijn.be/stops/504707"], ["https://data.delijn.be/stops/101425", "https://data.delijn.be/stops/106958"], ["https://data.delijn.be/stops/400934", "https://data.delijn.be/stops/401923"], ["https://data.delijn.be/stops/104945", "https://data.delijn.be/stops/105840"], ["https://data.delijn.be/stops/404152", "https://data.delijn.be/stops/404162"], ["https://data.delijn.be/stops/407357", "https://data.delijn.be/stops/407468"], ["https://data.delijn.be/stops/302946", "https://data.delijn.be/stops/302980"], ["https://data.delijn.be/stops/205244", "https://data.delijn.be/stops/205905"], ["https://data.delijn.be/stops/302873", "https://data.delijn.be/stops/302927"], ["https://data.delijn.be/stops/103944", "https://data.delijn.be/stops/107323"], ["https://data.delijn.be/stops/104905", "https://data.delijn.be/stops/107310"], ["https://data.delijn.be/stops/401192", "https://data.delijn.be/stops/407323"], ["https://data.delijn.be/stops/404619", "https://data.delijn.be/stops/404620"], ["https://data.delijn.be/stops/405992", "https://data.delijn.be/stops/405993"], ["https://data.delijn.be/stops/300028", "https://data.delijn.be/stops/300052"], ["https://data.delijn.be/stops/208537", "https://data.delijn.be/stops/209537"], ["https://data.delijn.be/stops/200594", "https://data.delijn.be/stops/201594"], ["https://data.delijn.be/stops/103764", "https://data.delijn.be/stops/105576"], ["https://data.delijn.be/stops/202106", "https://data.delijn.be/stops/203107"], ["https://data.delijn.be/stops/204679", "https://data.delijn.be/stops/205657"], ["https://data.delijn.be/stops/508312", "https://data.delijn.be/stops/508748"], ["https://data.delijn.be/stops/404357", "https://data.delijn.be/stops/404359"], ["https://data.delijn.be/stops/200074", "https://data.delijn.be/stops/202352"], ["https://data.delijn.be/stops/206763", "https://data.delijn.be/stops/207622"], ["https://data.delijn.be/stops/400479", "https://data.delijn.be/stops/407648"], ["https://data.delijn.be/stops/505389", "https://data.delijn.be/stops/505394"], ["https://data.delijn.be/stops/106463", "https://data.delijn.be/stops/106465"], ["https://data.delijn.be/stops/200168", "https://data.delijn.be/stops/202625"], ["https://data.delijn.be/stops/508800", "https://data.delijn.be/stops/509726"], ["https://data.delijn.be/stops/101536", "https://data.delijn.be/stops/109049"], ["https://data.delijn.be/stops/200216", "https://data.delijn.be/stops/200259"], ["https://data.delijn.be/stops/101134", "https://data.delijn.be/stops/108355"], ["https://data.delijn.be/stops/202253", "https://data.delijn.be/stops/202254"], ["https://data.delijn.be/stops/206720", "https://data.delijn.be/stops/206729"], ["https://data.delijn.be/stops/403222", "https://data.delijn.be/stops/403402"], ["https://data.delijn.be/stops/108065", "https://data.delijn.be/stops/108210"], ["https://data.delijn.be/stops/504650", "https://data.delijn.be/stops/505787"], ["https://data.delijn.be/stops/501174", "https://data.delijn.be/stops/506781"], ["https://data.delijn.be/stops/200512", "https://data.delijn.be/stops/201016"], ["https://data.delijn.be/stops/200703", "https://data.delijn.be/stops/202572"], ["https://data.delijn.be/stops/402656", "https://data.delijn.be/stops/402738"], ["https://data.delijn.be/stops/102727", "https://data.delijn.be/stops/104108"], ["https://data.delijn.be/stops/507268", "https://data.delijn.be/stops/507672"], ["https://data.delijn.be/stops/408319", "https://data.delijn.be/stops/408328"], ["https://data.delijn.be/stops/101825", "https://data.delijn.be/stops/102065"], ["https://data.delijn.be/stops/300365", "https://data.delijn.be/stops/304054"], ["https://data.delijn.be/stops/403059", "https://data.delijn.be/stops/403404"], ["https://data.delijn.be/stops/409026", "https://data.delijn.be/stops/409028"], ["https://data.delijn.be/stops/303332", "https://data.delijn.be/stops/303333"], ["https://data.delijn.be/stops/304473", "https://data.delijn.be/stops/304485"], ["https://data.delijn.be/stops/300824", "https://data.delijn.be/stops/300827"], ["https://data.delijn.be/stops/503801", "https://data.delijn.be/stops/508896"], ["https://data.delijn.be/stops/506104", "https://data.delijn.be/stops/506106"], ["https://data.delijn.be/stops/201851", "https://data.delijn.be/stops/201876"], ["https://data.delijn.be/stops/501562", "https://data.delijn.be/stops/506363"], ["https://data.delijn.be/stops/108939", "https://data.delijn.be/stops/109222"], ["https://data.delijn.be/stops/403255", "https://data.delijn.be/stops/403397"], ["https://data.delijn.be/stops/203146", "https://data.delijn.be/stops/203147"], ["https://data.delijn.be/stops/101020", "https://data.delijn.be/stops/102816"], ["https://data.delijn.be/stops/200812", "https://data.delijn.be/stops/203054"], ["https://data.delijn.be/stops/109391", "https://data.delijn.be/stops/405767"], ["https://data.delijn.be/stops/103398", "https://data.delijn.be/stops/106827"], ["https://data.delijn.be/stops/103074", "https://data.delijn.be/stops/105168"], ["https://data.delijn.be/stops/505578", "https://data.delijn.be/stops/508981"], ["https://data.delijn.be/stops/301854", "https://data.delijn.be/stops/306989"], ["https://data.delijn.be/stops/302460", "https://data.delijn.be/stops/308600"], ["https://data.delijn.be/stops/206286", "https://data.delijn.be/stops/207286"], ["https://data.delijn.be/stops/204229", "https://data.delijn.be/stops/205230"], ["https://data.delijn.be/stops/202731", "https://data.delijn.be/stops/203844"], ["https://data.delijn.be/stops/502610", "https://data.delijn.be/stops/502611"], ["https://data.delijn.be/stops/102722", "https://data.delijn.be/stops/108311"], ["https://data.delijn.be/stops/508926", "https://data.delijn.be/stops/508927"], ["https://data.delijn.be/stops/208052", "https://data.delijn.be/stops/209053"], ["https://data.delijn.be/stops/300471", "https://data.delijn.be/stops/306288"], ["https://data.delijn.be/stops/302011", "https://data.delijn.be/stops/308755"], ["https://data.delijn.be/stops/405835", "https://data.delijn.be/stops/405865"], ["https://data.delijn.be/stops/308150", "https://data.delijn.be/stops/308152"], ["https://data.delijn.be/stops/101932", "https://data.delijn.be/stops/106254"], ["https://data.delijn.be/stops/204076", "https://data.delijn.be/stops/204081"], ["https://data.delijn.be/stops/108697", "https://data.delijn.be/stops/109532"], ["https://data.delijn.be/stops/408126", "https://data.delijn.be/stops/408172"], ["https://data.delijn.be/stops/109289", "https://data.delijn.be/stops/109290"], ["https://data.delijn.be/stops/401752", "https://data.delijn.be/stops/401872"], ["https://data.delijn.be/stops/205655", "https://data.delijn.be/stops/205670"], ["https://data.delijn.be/stops/303258", "https://data.delijn.be/stops/303259"], ["https://data.delijn.be/stops/406305", "https://data.delijn.be/stops/406317"], ["https://data.delijn.be/stops/101839", "https://data.delijn.be/stops/102440"], ["https://data.delijn.be/stops/102071", "https://data.delijn.be/stops/107304"], ["https://data.delijn.be/stops/306731", "https://data.delijn.be/stops/306732"], ["https://data.delijn.be/stops/105876", "https://data.delijn.be/stops/105877"], ["https://data.delijn.be/stops/206534", "https://data.delijn.be/stops/206535"], ["https://data.delijn.be/stops/208795", "https://data.delijn.be/stops/209795"], ["https://data.delijn.be/stops/500127", "https://data.delijn.be/stops/505074"], ["https://data.delijn.be/stops/103993", "https://data.delijn.be/stops/105319"], ["https://data.delijn.be/stops/409636", "https://data.delijn.be/stops/410035"], ["https://data.delijn.be/stops/502019", "https://data.delijn.be/stops/507019"], ["https://data.delijn.be/stops/304867", "https://data.delijn.be/stops/307608"], ["https://data.delijn.be/stops/206068", "https://data.delijn.be/stops/206074"], ["https://data.delijn.be/stops/402809", "https://data.delijn.be/stops/402835"], ["https://data.delijn.be/stops/503190", "https://data.delijn.be/stops/508196"], ["https://data.delijn.be/stops/505127", "https://data.delijn.be/stops/505128"], ["https://data.delijn.be/stops/502378", "https://data.delijn.be/stops/507408"], ["https://data.delijn.be/stops/101481", "https://data.delijn.be/stops/108218"], ["https://data.delijn.be/stops/206504", "https://data.delijn.be/stops/207497"], ["https://data.delijn.be/stops/204183", "https://data.delijn.be/stops/204355"], ["https://data.delijn.be/stops/300160", "https://data.delijn.be/stops/301208"], ["https://data.delijn.be/stops/403335", "https://data.delijn.be/stops/407075"], ["https://data.delijn.be/stops/503641", "https://data.delijn.be/stops/508641"], ["https://data.delijn.be/stops/404103", "https://data.delijn.be/stops/404128"], ["https://data.delijn.be/stops/307369", "https://data.delijn.be/stops/307376"], ["https://data.delijn.be/stops/408890", "https://data.delijn.be/stops/408903"], ["https://data.delijn.be/stops/503632", "https://data.delijn.be/stops/508625"], ["https://data.delijn.be/stops/400532", "https://data.delijn.be/stops/403195"], ["https://data.delijn.be/stops/102681", "https://data.delijn.be/stops/204608"], ["https://data.delijn.be/stops/203906", "https://data.delijn.be/stops/219953"], ["https://data.delijn.be/stops/503272", "https://data.delijn.be/stops/505129"], ["https://data.delijn.be/stops/500115", "https://data.delijn.be/stops/507462"], ["https://data.delijn.be/stops/507407", "https://data.delijn.be/stops/507681"], ["https://data.delijn.be/stops/503046", "https://data.delijn.be/stops/508624"], ["https://data.delijn.be/stops/202972", "https://data.delijn.be/stops/205074"], ["https://data.delijn.be/stops/406040", "https://data.delijn.be/stops/406062"], ["https://data.delijn.be/stops/305698", "https://data.delijn.be/stops/305750"], ["https://data.delijn.be/stops/301973", "https://data.delijn.be/stops/302921"], ["https://data.delijn.be/stops/300262", "https://data.delijn.be/stops/304935"], ["https://data.delijn.be/stops/202778", "https://data.delijn.be/stops/203778"], ["https://data.delijn.be/stops/206576", "https://data.delijn.be/stops/209126"], ["https://data.delijn.be/stops/104856", "https://data.delijn.be/stops/106854"], ["https://data.delijn.be/stops/303318", "https://data.delijn.be/stops/303330"], ["https://data.delijn.be/stops/209062", "https://data.delijn.be/stops/209063"], ["https://data.delijn.be/stops/401572", "https://data.delijn.be/stops/402373"], ["https://data.delijn.be/stops/303753", "https://data.delijn.be/stops/303771"], ["https://data.delijn.be/stops/502238", "https://data.delijn.be/stops/507645"], ["https://data.delijn.be/stops/505810", "https://data.delijn.be/stops/509057"], ["https://data.delijn.be/stops/403356", "https://data.delijn.be/stops/403365"], ["https://data.delijn.be/stops/202860", "https://data.delijn.be/stops/203859"], ["https://data.delijn.be/stops/406880", "https://data.delijn.be/stops/406881"], ["https://data.delijn.be/stops/401800", "https://data.delijn.be/stops/401864"], ["https://data.delijn.be/stops/206177", "https://data.delijn.be/stops/303848"], ["https://data.delijn.be/stops/303680", "https://data.delijn.be/stops/307929"], ["https://data.delijn.be/stops/509233", "https://data.delijn.be/stops/509238"], ["https://data.delijn.be/stops/104490", "https://data.delijn.be/stops/104595"], ["https://data.delijn.be/stops/508270", "https://data.delijn.be/stops/508503"], ["https://data.delijn.be/stops/301145", "https://data.delijn.be/stops/301153"], ["https://data.delijn.be/stops/402700", "https://data.delijn.be/stops/402701"], ["https://data.delijn.be/stops/206824", "https://data.delijn.be/stops/207824"], ["https://data.delijn.be/stops/201323", "https://data.delijn.be/stops/201945"], ["https://data.delijn.be/stops/302895", "https://data.delijn.be/stops/306096"], ["https://data.delijn.be/stops/405217", "https://data.delijn.be/stops/405263"], ["https://data.delijn.be/stops/401000", "https://data.delijn.be/stops/403803"], ["https://data.delijn.be/stops/300977", "https://data.delijn.be/stops/300983"], ["https://data.delijn.be/stops/206106", "https://data.delijn.be/stops/207111"], ["https://data.delijn.be/stops/210118", "https://data.delijn.be/stops/211115"], ["https://data.delijn.be/stops/504409", "https://data.delijn.be/stops/504775"], ["https://data.delijn.be/stops/409730", "https://data.delijn.be/stops/409732"], ["https://data.delijn.be/stops/404240", "https://data.delijn.be/stops/408555"], ["https://data.delijn.be/stops/200004", "https://data.delijn.be/stops/200994"], ["https://data.delijn.be/stops/108754", "https://data.delijn.be/stops/108756"], ["https://data.delijn.be/stops/200462", "https://data.delijn.be/stops/201737"], ["https://data.delijn.be/stops/406177", "https://data.delijn.be/stops/410226"], ["https://data.delijn.be/stops/304592", "https://data.delijn.be/stops/306171"], ["https://data.delijn.be/stops/403275", "https://data.delijn.be/stops/410130"], ["https://data.delijn.be/stops/306345", "https://data.delijn.be/stops/306346"], ["https://data.delijn.be/stops/408340", "https://data.delijn.be/stops/307452"], ["https://data.delijn.be/stops/504462", "https://data.delijn.be/stops/504468"], ["https://data.delijn.be/stops/508918", "https://data.delijn.be/stops/508929"], ["https://data.delijn.be/stops/304130", "https://data.delijn.be/stops/306397"], ["https://data.delijn.be/stops/302341", "https://data.delijn.be/stops/302750"], ["https://data.delijn.be/stops/405860", "https://data.delijn.be/stops/405861"], ["https://data.delijn.be/stops/504436", "https://data.delijn.be/stops/509472"], ["https://data.delijn.be/stops/408579", "https://data.delijn.be/stops/408591"], ["https://data.delijn.be/stops/304758", "https://data.delijn.be/stops/308698"], ["https://data.delijn.be/stops/302439", "https://data.delijn.be/stops/302446"], ["https://data.delijn.be/stops/103963", "https://data.delijn.be/stops/108997"], ["https://data.delijn.be/stops/302500", "https://data.delijn.be/stops/302501"], ["https://data.delijn.be/stops/208121", "https://data.delijn.be/stops/209201"], ["https://data.delijn.be/stops/502742", "https://data.delijn.be/stops/505356"], ["https://data.delijn.be/stops/300694", "https://data.delijn.be/stops/300723"], ["https://data.delijn.be/stops/102183", "https://data.delijn.be/stops/107128"], ["https://data.delijn.be/stops/304353", "https://data.delijn.be/stops/304355"], ["https://data.delijn.be/stops/201903", "https://data.delijn.be/stops/203512"], ["https://data.delijn.be/stops/105343", "https://data.delijn.be/stops/109617"], ["https://data.delijn.be/stops/204450", "https://data.delijn.be/stops/205287"], ["https://data.delijn.be/stops/201923", "https://data.delijn.be/stops/201925"], ["https://data.delijn.be/stops/403042", "https://data.delijn.be/stops/403289"], ["https://data.delijn.be/stops/504553", "https://data.delijn.be/stops/505212"], ["https://data.delijn.be/stops/400740", "https://data.delijn.be/stops/400938"], ["https://data.delijn.be/stops/405124", "https://data.delijn.be/stops/405389"], ["https://data.delijn.be/stops/505284", "https://data.delijn.be/stops/505996"], ["https://data.delijn.be/stops/104342", "https://data.delijn.be/stops/104343"], ["https://data.delijn.be/stops/200668", "https://data.delijn.be/stops/200669"], ["https://data.delijn.be/stops/300314", "https://data.delijn.be/stops/300316"], ["https://data.delijn.be/stops/200339", "https://data.delijn.be/stops/210085"], ["https://data.delijn.be/stops/104007", "https://data.delijn.be/stops/107285"], ["https://data.delijn.be/stops/404470", "https://data.delijn.be/stops/404567"], ["https://data.delijn.be/stops/204046", "https://data.delijn.be/stops/204518"], ["https://data.delijn.be/stops/101135", "https://data.delijn.be/stops/103331"], ["https://data.delijn.be/stops/501368", "https://data.delijn.be/stops/501442"], ["https://data.delijn.be/stops/503919", "https://data.delijn.be/stops/508919"], ["https://data.delijn.be/stops/501388", "https://data.delijn.be/stops/501501"], ["https://data.delijn.be/stops/300453", "https://data.delijn.be/stops/308063"], ["https://data.delijn.be/stops/503284", "https://data.delijn.be/stops/505953"], ["https://data.delijn.be/stops/102072", "https://data.delijn.be/stops/104591"], ["https://data.delijn.be/stops/406404", "https://data.delijn.be/stops/407638"], ["https://data.delijn.be/stops/400678", "https://data.delijn.be/stops/405363"], ["https://data.delijn.be/stops/403211", "https://data.delijn.be/stops/403380"], ["https://data.delijn.be/stops/302360", "https://data.delijn.be/stops/302361"], ["https://data.delijn.be/stops/305846", "https://data.delijn.be/stops/306392"], ["https://data.delijn.be/stops/101012", "https://data.delijn.be/stops/103743"], ["https://data.delijn.be/stops/304723", "https://data.delijn.be/stops/304731"], ["https://data.delijn.be/stops/300128", "https://data.delijn.be/stops/306823"], ["https://data.delijn.be/stops/205403", "https://data.delijn.be/stops/205416"], ["https://data.delijn.be/stops/109480", "https://data.delijn.be/stops/109992"], ["https://data.delijn.be/stops/504581", "https://data.delijn.be/stops/509586"], ["https://data.delijn.be/stops/200842", "https://data.delijn.be/stops/200873"], ["https://data.delijn.be/stops/104939", "https://data.delijn.be/stops/107854"], ["https://data.delijn.be/stops/106514", "https://data.delijn.be/stops/106521"], ["https://data.delijn.be/stops/509060", "https://data.delijn.be/stops/509061"], ["https://data.delijn.be/stops/105061", "https://data.delijn.be/stops/107414"], ["https://data.delijn.be/stops/103203", "https://data.delijn.be/stops/109383"], ["https://data.delijn.be/stops/101924", "https://data.delijn.be/stops/102423"], ["https://data.delijn.be/stops/407853", "https://data.delijn.be/stops/408086"], ["https://data.delijn.be/stops/105286", "https://data.delijn.be/stops/108120"], ["https://data.delijn.be/stops/109915", "https://data.delijn.be/stops/109916"], ["https://data.delijn.be/stops/302914", "https://data.delijn.be/stops/307072"], ["https://data.delijn.be/stops/402829", "https://data.delijn.be/stops/402890"], ["https://data.delijn.be/stops/410273", "https://data.delijn.be/stops/410275"], ["https://data.delijn.be/stops/207707", "https://data.delijn.be/stops/207742"], ["https://data.delijn.be/stops/405223", "https://data.delijn.be/stops/405287"], ["https://data.delijn.be/stops/305797", "https://data.delijn.be/stops/305800"], ["https://data.delijn.be/stops/303556", "https://data.delijn.be/stops/306397"], ["https://data.delijn.be/stops/209642", "https://data.delijn.be/stops/210027"], ["https://data.delijn.be/stops/506431", "https://data.delijn.be/stops/506456"], ["https://data.delijn.be/stops/202178", "https://data.delijn.be/stops/203178"], ["https://data.delijn.be/stops/107509", "https://data.delijn.be/stops/107516"], ["https://data.delijn.be/stops/408624", "https://data.delijn.be/stops/408700"], ["https://data.delijn.be/stops/208182", "https://data.delijn.be/stops/208183"], ["https://data.delijn.be/stops/204338", "https://data.delijn.be/stops/205310"], ["https://data.delijn.be/stops/300080", "https://data.delijn.be/stops/300081"], ["https://data.delijn.be/stops/505678", "https://data.delijn.be/stops/505679"], ["https://data.delijn.be/stops/300564", "https://data.delijn.be/stops/300592"], ["https://data.delijn.be/stops/202355", "https://data.delijn.be/stops/203355"], ["https://data.delijn.be/stops/102785", "https://data.delijn.be/stops/103120"], ["https://data.delijn.be/stops/401654", "https://data.delijn.be/stops/305950"], ["https://data.delijn.be/stops/101794", "https://data.delijn.be/stops/102897"], ["https://data.delijn.be/stops/308124", "https://data.delijn.be/stops/308722"], ["https://data.delijn.be/stops/305294", "https://data.delijn.be/stops/305888"], ["https://data.delijn.be/stops/109247", "https://data.delijn.be/stops/109249"], ["https://data.delijn.be/stops/200556", "https://data.delijn.be/stops/210067"], ["https://data.delijn.be/stops/202308", "https://data.delijn.be/stops/203308"], ["https://data.delijn.be/stops/403946", "https://data.delijn.be/stops/403947"], ["https://data.delijn.be/stops/503021", "https://data.delijn.be/stops/505974"], ["https://data.delijn.be/stops/302273", "https://data.delijn.be/stops/302274"], ["https://data.delijn.be/stops/206313", "https://data.delijn.be/stops/207313"], ["https://data.delijn.be/stops/200977", "https://data.delijn.be/stops/202901"], ["https://data.delijn.be/stops/306907", "https://data.delijn.be/stops/308724"], ["https://data.delijn.be/stops/103795", "https://data.delijn.be/stops/103800"], ["https://data.delijn.be/stops/303753", "https://data.delijn.be/stops/303808"], ["https://data.delijn.be/stops/204039", "https://data.delijn.be/stops/205040"], ["https://data.delijn.be/stops/307297", "https://data.delijn.be/stops/307322"], ["https://data.delijn.be/stops/502635", "https://data.delijn.be/stops/507746"], ["https://data.delijn.be/stops/101652", "https://data.delijn.be/stops/105499"], ["https://data.delijn.be/stops/300956", "https://data.delijn.be/stops/300964"], ["https://data.delijn.be/stops/303738", "https://data.delijn.be/stops/303749"], ["https://data.delijn.be/stops/403046", "https://data.delijn.be/stops/410293"], ["https://data.delijn.be/stops/202174", "https://data.delijn.be/stops/203173"], ["https://data.delijn.be/stops/103981", "https://data.delijn.be/stops/109933"], ["https://data.delijn.be/stops/401179", "https://data.delijn.be/stops/401320"], ["https://data.delijn.be/stops/503428", "https://data.delijn.be/stops/504564"], ["https://data.delijn.be/stops/102212", "https://data.delijn.be/stops/102226"], ["https://data.delijn.be/stops/505946", "https://data.delijn.be/stops/505999"], ["https://data.delijn.be/stops/400806", "https://data.delijn.be/stops/400848"], ["https://data.delijn.be/stops/102197", "https://data.delijn.be/stops/105264"], ["https://data.delijn.be/stops/400805", "https://data.delijn.be/stops/400847"], ["https://data.delijn.be/stops/205225", "https://data.delijn.be/stops/205227"], ["https://data.delijn.be/stops/106108", "https://data.delijn.be/stops/106166"], ["https://data.delijn.be/stops/302524", "https://data.delijn.be/stops/307871"], ["https://data.delijn.be/stops/104816", "https://data.delijn.be/stops/105161"], ["https://data.delijn.be/stops/303627", "https://data.delijn.be/stops/307206"], ["https://data.delijn.be/stops/308161", "https://data.delijn.be/stops/308182"], ["https://data.delijn.be/stops/208319", "https://data.delijn.be/stops/209319"], ["https://data.delijn.be/stops/204003", "https://data.delijn.be/stops/205691"], ["https://data.delijn.be/stops/208467", "https://data.delijn.be/stops/209683"], ["https://data.delijn.be/stops/201938", "https://data.delijn.be/stops/202449"], ["https://data.delijn.be/stops/306846", "https://data.delijn.be/stops/306863"], ["https://data.delijn.be/stops/204110", "https://data.delijn.be/stops/205685"], ["https://data.delijn.be/stops/302792", "https://data.delijn.be/stops/302793"], ["https://data.delijn.be/stops/207701", "https://data.delijn.be/stops/207702"], ["https://data.delijn.be/stops/202751", "https://data.delijn.be/stops/203762"], ["https://data.delijn.be/stops/107131", "https://data.delijn.be/stops/107132"], ["https://data.delijn.be/stops/207980", "https://data.delijn.be/stops/216020"], ["https://data.delijn.be/stops/400444", "https://data.delijn.be/stops/401267"], ["https://data.delijn.be/stops/200885", "https://data.delijn.be/stops/502597"], ["https://data.delijn.be/stops/403258", "https://data.delijn.be/stops/403259"], ["https://data.delijn.be/stops/302904", "https://data.delijn.be/stops/303228"], ["https://data.delijn.be/stops/102831", "https://data.delijn.be/stops/102847"], ["https://data.delijn.be/stops/300079", "https://data.delijn.be/stops/307341"], ["https://data.delijn.be/stops/308426", "https://data.delijn.be/stops/308427"], ["https://data.delijn.be/stops/308952", "https://data.delijn.be/stops/308965"], ["https://data.delijn.be/stops/503226", "https://data.delijn.be/stops/508786"], ["https://data.delijn.be/stops/206620", "https://data.delijn.be/stops/207620"], ["https://data.delijn.be/stops/201917", "https://data.delijn.be/stops/207834"], ["https://data.delijn.be/stops/200037", "https://data.delijn.be/stops/201342"], ["https://data.delijn.be/stops/302540", "https://data.delijn.be/stops/307810"], ["https://data.delijn.be/stops/102596", "https://data.delijn.be/stops/205650"], ["https://data.delijn.be/stops/204625", "https://data.delijn.be/stops/204626"], ["https://data.delijn.be/stops/301622", "https://data.delijn.be/stops/307338"], ["https://data.delijn.be/stops/306126", "https://data.delijn.be/stops/306128"], ["https://data.delijn.be/stops/505640", "https://data.delijn.be/stops/509827"], ["https://data.delijn.be/stops/400764", "https://data.delijn.be/stops/409636"], ["https://data.delijn.be/stops/202682", "https://data.delijn.be/stops/202709"], ["https://data.delijn.be/stops/201258", "https://data.delijn.be/stops/203613"], ["https://data.delijn.be/stops/303364", "https://data.delijn.be/stops/303390"], ["https://data.delijn.be/stops/300301", "https://data.delijn.be/stops/301768"], ["https://data.delijn.be/stops/404179", "https://data.delijn.be/stops/405933"], ["https://data.delijn.be/stops/302807", "https://data.delijn.be/stops/307836"], ["https://data.delijn.be/stops/201875", "https://data.delijn.be/stops/211856"], ["https://data.delijn.be/stops/103644", "https://data.delijn.be/stops/105627"], ["https://data.delijn.be/stops/502062", "https://data.delijn.be/stops/507062"], ["https://data.delijn.be/stops/303256", "https://data.delijn.be/stops/303259"], ["https://data.delijn.be/stops/303520", "https://data.delijn.be/stops/304175"], ["https://data.delijn.be/stops/206124", "https://data.delijn.be/stops/206135"], ["https://data.delijn.be/stops/408581", "https://data.delijn.be/stops/302878"], ["https://data.delijn.be/stops/104666", "https://data.delijn.be/stops/305988"], ["https://data.delijn.be/stops/109353", "https://data.delijn.be/stops/307352"], ["https://data.delijn.be/stops/402976", "https://data.delijn.be/stops/405980"], ["https://data.delijn.be/stops/204049", "https://data.delijn.be/stops/205049"], ["https://data.delijn.be/stops/501716", "https://data.delijn.be/stops/506012"], ["https://data.delijn.be/stops/400831", "https://data.delijn.be/stops/401900"], ["https://data.delijn.be/stops/205037", "https://data.delijn.be/stops/205818"], ["https://data.delijn.be/stops/207177", "https://data.delijn.be/stops/305924"], ["https://data.delijn.be/stops/106097", "https://data.delijn.be/stops/106099"], ["https://data.delijn.be/stops/501063", "https://data.delijn.be/stops/501065"], ["https://data.delijn.be/stops/404398", "https://data.delijn.be/stops/404410"], ["https://data.delijn.be/stops/300037", "https://data.delijn.be/stops/306864"], ["https://data.delijn.be/stops/404628", "https://data.delijn.be/stops/404632"], ["https://data.delijn.be/stops/207583", "https://data.delijn.be/stops/207927"], ["https://data.delijn.be/stops/501628", "https://data.delijn.be/stops/504373"], ["https://data.delijn.be/stops/502192", "https://data.delijn.be/stops/507198"], ["https://data.delijn.be/stops/504361", "https://data.delijn.be/stops/504367"], ["https://data.delijn.be/stops/204390", "https://data.delijn.be/stops/205415"], ["https://data.delijn.be/stops/201905", "https://data.delijn.be/stops/209867"], ["https://data.delijn.be/stops/408962", "https://data.delijn.be/stops/408963"], ["https://data.delijn.be/stops/204065", "https://data.delijn.be/stops/204520"], ["https://data.delijn.be/stops/302922", "https://data.delijn.be/stops/307228"], ["https://data.delijn.be/stops/208461", "https://data.delijn.be/stops/209461"], ["https://data.delijn.be/stops/209237", "https://data.delijn.be/stops/209383"], ["https://data.delijn.be/stops/300447", "https://data.delijn.be/stops/308297"], ["https://data.delijn.be/stops/304941", "https://data.delijn.be/stops/304947"], ["https://data.delijn.be/stops/301044", "https://data.delijn.be/stops/308782"], ["https://data.delijn.be/stops/402154", "https://data.delijn.be/stops/410100"], ["https://data.delijn.be/stops/405912", "https://data.delijn.be/stops/405933"], ["https://data.delijn.be/stops/203456", "https://data.delijn.be/stops/203750"], ["https://data.delijn.be/stops/504111", "https://data.delijn.be/stops/509111"], ["https://data.delijn.be/stops/502099", "https://data.delijn.be/stops/502104"], ["https://data.delijn.be/stops/107526", "https://data.delijn.be/stops/107542"], ["https://data.delijn.be/stops/403037", "https://data.delijn.be/stops/403872"], ["https://data.delijn.be/stops/300432", "https://data.delijn.be/stops/300437"], ["https://data.delijn.be/stops/206667", "https://data.delijn.be/stops/206701"], ["https://data.delijn.be/stops/200949", "https://data.delijn.be/stops/203096"], ["https://data.delijn.be/stops/105391", "https://data.delijn.be/stops/205820"], ["https://data.delijn.be/stops/104835", "https://data.delijn.be/stops/106086"], ["https://data.delijn.be/stops/505156", "https://data.delijn.be/stops/505328"], ["https://data.delijn.be/stops/300953", "https://data.delijn.be/stops/301072"], ["https://data.delijn.be/stops/301042", "https://data.delijn.be/stops/303631"], ["https://data.delijn.be/stops/504574", "https://data.delijn.be/stops/509465"], ["https://data.delijn.be/stops/109949", "https://data.delijn.be/stops/109960"], ["https://data.delijn.be/stops/200867", "https://data.delijn.be/stops/203338"], ["https://data.delijn.be/stops/300303", "https://data.delijn.be/stops/306045"], ["https://data.delijn.be/stops/103228", "https://data.delijn.be/stops/109400"], ["https://data.delijn.be/stops/102458", "https://data.delijn.be/stops/400410"], ["https://data.delijn.be/stops/403532", "https://data.delijn.be/stops/403548"], ["https://data.delijn.be/stops/300837", "https://data.delijn.be/stops/301796"], ["https://data.delijn.be/stops/200915", "https://data.delijn.be/stops/200925"], ["https://data.delijn.be/stops/302650", "https://data.delijn.be/stops/302657"], ["https://data.delijn.be/stops/401015", "https://data.delijn.be/stops/401145"], ["https://data.delijn.be/stops/206166", "https://data.delijn.be/stops/207162"], ["https://data.delijn.be/stops/206184", "https://data.delijn.be/stops/206219"], ["https://data.delijn.be/stops/206365", "https://data.delijn.be/stops/207711"], ["https://data.delijn.be/stops/302979", "https://data.delijn.be/stops/306972"], ["https://data.delijn.be/stops/303464", "https://data.delijn.be/stops/308934"], ["https://data.delijn.be/stops/503085", "https://data.delijn.be/stops/508081"], ["https://data.delijn.be/stops/201019", "https://data.delijn.be/stops/210045"], ["https://data.delijn.be/stops/107058", "https://data.delijn.be/stops/109665"], ["https://data.delijn.be/stops/404428", "https://data.delijn.be/stops/404429"], ["https://data.delijn.be/stops/205291", "https://data.delijn.be/stops/205292"], ["https://data.delijn.be/stops/400432", "https://data.delijn.be/stops/400433"], ["https://data.delijn.be/stops/206060", "https://data.delijn.be/stops/207446"], ["https://data.delijn.be/stops/300362", "https://data.delijn.be/stops/308991"], ["https://data.delijn.be/stops/505146", "https://data.delijn.be/stops/505720"], ["https://data.delijn.be/stops/400645", "https://data.delijn.be/stops/400654"], ["https://data.delijn.be/stops/302777", "https://data.delijn.be/stops/302784"], ["https://data.delijn.be/stops/204113", "https://data.delijn.be/stops/205112"], ["https://data.delijn.be/stops/400586", "https://data.delijn.be/stops/400609"], ["https://data.delijn.be/stops/301539", "https://data.delijn.be/stops/301540"], ["https://data.delijn.be/stops/101581", "https://data.delijn.be/stops/101582"], ["https://data.delijn.be/stops/401494", "https://data.delijn.be/stops/401496"], ["https://data.delijn.be/stops/404255", "https://data.delijn.be/stops/405145"], ["https://data.delijn.be/stops/300178", "https://data.delijn.be/stops/300191"], ["https://data.delijn.be/stops/403703", "https://data.delijn.be/stops/403704"], ["https://data.delijn.be/stops/307965", "https://data.delijn.be/stops/307973"], ["https://data.delijn.be/stops/107730", "https://data.delijn.be/stops/107735"], ["https://data.delijn.be/stops/506213", "https://data.delijn.be/stops/506220"], ["https://data.delijn.be/stops/300661", "https://data.delijn.be/stops/304875"], ["https://data.delijn.be/stops/200431", "https://data.delijn.be/stops/200432"], ["https://data.delijn.be/stops/402179", "https://data.delijn.be/stops/402484"], ["https://data.delijn.be/stops/505510", "https://data.delijn.be/stops/507471"], ["https://data.delijn.be/stops/106379", "https://data.delijn.be/stops/108019"], ["https://data.delijn.be/stops/101786", "https://data.delijn.be/stops/109153"], ["https://data.delijn.be/stops/206559", "https://data.delijn.be/stops/207559"], ["https://data.delijn.be/stops/102042", "https://data.delijn.be/stops/107831"], ["https://data.delijn.be/stops/107084", "https://data.delijn.be/stops/107087"], ["https://data.delijn.be/stops/202852", "https://data.delijn.be/stops/203852"], ["https://data.delijn.be/stops/108356", "https://data.delijn.be/stops/109334"], ["https://data.delijn.be/stops/103066", "https://data.delijn.be/stops/109696"], ["https://data.delijn.be/stops/207855", "https://data.delijn.be/stops/207863"], ["https://data.delijn.be/stops/200584", "https://data.delijn.be/stops/201584"], ["https://data.delijn.be/stops/202724", "https://data.delijn.be/stops/203724"], ["https://data.delijn.be/stops/201556", "https://data.delijn.be/stops/210067"], ["https://data.delijn.be/stops/108835", "https://data.delijn.be/stops/109725"], ["https://data.delijn.be/stops/504392", "https://data.delijn.be/stops/509388"], ["https://data.delijn.be/stops/401034", "https://data.delijn.be/stops/401035"], ["https://data.delijn.be/stops/204445", "https://data.delijn.be/stops/204674"], ["https://data.delijn.be/stops/206236", "https://data.delijn.be/stops/206813"], ["https://data.delijn.be/stops/201561", "https://data.delijn.be/stops/211102"], ["https://data.delijn.be/stops/106284", "https://data.delijn.be/stops/106286"], ["https://data.delijn.be/stops/206906", "https://data.delijn.be/stops/206908"], ["https://data.delijn.be/stops/105268", "https://data.delijn.be/stops/105269"], ["https://data.delijn.be/stops/408252", "https://data.delijn.be/stops/408350"], ["https://data.delijn.be/stops/305777", "https://data.delijn.be/stops/305778"], ["https://data.delijn.be/stops/400252", "https://data.delijn.be/stops/400253"], ["https://data.delijn.be/stops/400957", "https://data.delijn.be/stops/400960"], ["https://data.delijn.be/stops/407316", "https://data.delijn.be/stops/409046"], ["https://data.delijn.be/stops/402096", "https://data.delijn.be/stops/402376"], ["https://data.delijn.be/stops/409066", "https://data.delijn.be/stops/409067"], ["https://data.delijn.be/stops/301299", "https://data.delijn.be/stops/301334"], ["https://data.delijn.be/stops/403502", "https://data.delijn.be/stops/410222"], ["https://data.delijn.be/stops/401783", "https://data.delijn.be/stops/401871"], ["https://data.delijn.be/stops/405950", "https://data.delijn.be/stops/405951"], ["https://data.delijn.be/stops/208080", "https://data.delijn.be/stops/209447"], ["https://data.delijn.be/stops/102241", "https://data.delijn.be/stops/105882"], ["https://data.delijn.be/stops/304888", "https://data.delijn.be/stops/304902"], ["https://data.delijn.be/stops/304746", "https://data.delijn.be/stops/305880"], ["https://data.delijn.be/stops/207382", "https://data.delijn.be/stops/207920"], ["https://data.delijn.be/stops/505963", "https://data.delijn.be/stops/507943"], ["https://data.delijn.be/stops/107147", "https://data.delijn.be/stops/107149"], ["https://data.delijn.be/stops/304405", "https://data.delijn.be/stops/307417"], ["https://data.delijn.be/stops/504571", "https://data.delijn.be/stops/504577"], ["https://data.delijn.be/stops/508819", "https://data.delijn.be/stops/508821"], ["https://data.delijn.be/stops/106429", "https://data.delijn.be/stops/106430"], ["https://data.delijn.be/stops/506760", "https://data.delijn.be/stops/506776"], ["https://data.delijn.be/stops/400657", "https://data.delijn.be/stops/400970"], ["https://data.delijn.be/stops/201410", "https://data.delijn.be/stops/208941"], ["https://data.delijn.be/stops/201966", "https://data.delijn.be/stops/209039"], ["https://data.delijn.be/stops/504499", "https://data.delijn.be/stops/504500"], ["https://data.delijn.be/stops/407337", "https://data.delijn.be/stops/409520"], ["https://data.delijn.be/stops/501062", "https://data.delijn.be/stops/501485"], ["https://data.delijn.be/stops/102411", "https://data.delijn.be/stops/104870"], ["https://data.delijn.be/stops/201943", "https://data.delijn.be/stops/202930"], ["https://data.delijn.be/stops/206649", "https://data.delijn.be/stops/206792"], ["https://data.delijn.be/stops/204370", "https://data.delijn.be/stops/205370"], ["https://data.delijn.be/stops/107364", "https://data.delijn.be/stops/107367"], ["https://data.delijn.be/stops/503496", "https://data.delijn.be/stops/509456"], ["https://data.delijn.be/stops/108021", "https://data.delijn.be/stops/109636"], ["https://data.delijn.be/stops/504884", "https://data.delijn.be/stops/509883"], ["https://data.delijn.be/stops/402365", "https://data.delijn.be/stops/402464"], ["https://data.delijn.be/stops/408292", "https://data.delijn.be/stops/408376"], ["https://data.delijn.be/stops/106534", "https://data.delijn.be/stops/107304"], ["https://data.delijn.be/stops/305138", "https://data.delijn.be/stops/308093"], ["https://data.delijn.be/stops/306912", "https://data.delijn.be/stops/308126"], ["https://data.delijn.be/stops/306874", "https://data.delijn.be/stops/307954"], ["https://data.delijn.be/stops/504123", "https://data.delijn.be/stops/504125"], ["https://data.delijn.be/stops/201699", "https://data.delijn.be/stops/203781"], ["https://data.delijn.be/stops/301847", "https://data.delijn.be/stops/301882"], ["https://data.delijn.be/stops/505764", "https://data.delijn.be/stops/507003"], ["https://data.delijn.be/stops/104970", "https://data.delijn.be/stops/104975"], ["https://data.delijn.be/stops/502040", "https://data.delijn.be/stops/507040"], ["https://data.delijn.be/stops/503689", "https://data.delijn.be/stops/508558"], ["https://data.delijn.be/stops/204525", "https://data.delijn.be/stops/205525"], ["https://data.delijn.be/stops/304375", "https://data.delijn.be/stops/306870"], ["https://data.delijn.be/stops/108377", "https://data.delijn.be/stops/108444"], ["https://data.delijn.be/stops/502929", "https://data.delijn.be/stops/507932"], ["https://data.delijn.be/stops/102016", "https://data.delijn.be/stops/105140"], ["https://data.delijn.be/stops/101721", "https://data.delijn.be/stops/109566"], ["https://data.delijn.be/stops/404474", "https://data.delijn.be/stops/407249"], ["https://data.delijn.be/stops/206710", "https://data.delijn.be/stops/207600"], ["https://data.delijn.be/stops/302183", "https://data.delijn.be/stops/307186"], ["https://data.delijn.be/stops/503728", "https://data.delijn.be/stops/508728"], ["https://data.delijn.be/stops/300350", "https://data.delijn.be/stops/300367"], ["https://data.delijn.be/stops/301358", "https://data.delijn.be/stops/305451"], ["https://data.delijn.be/stops/302398", "https://data.delijn.be/stops/302399"], ["https://data.delijn.be/stops/503294", "https://data.delijn.be/stops/509842"], ["https://data.delijn.be/stops/300092", "https://data.delijn.be/stops/300106"], ["https://data.delijn.be/stops/300091", "https://data.delijn.be/stops/300093"], ["https://data.delijn.be/stops/102918", "https://data.delijn.be/stops/102922"], ["https://data.delijn.be/stops/501002", "https://data.delijn.be/stops/501008"], ["https://data.delijn.be/stops/303009", "https://data.delijn.be/stops/303960"], ["https://data.delijn.be/stops/504325", "https://data.delijn.be/stops/504336"], ["https://data.delijn.be/stops/204761", "https://data.delijn.be/stops/205727"], ["https://data.delijn.be/stops/407893", "https://data.delijn.be/stops/306056"], ["https://data.delijn.be/stops/202177", "https://data.delijn.be/stops/202178"], ["https://data.delijn.be/stops/108315", "https://data.delijn.be/stops/108930"], ["https://data.delijn.be/stops/400465", "https://data.delijn.be/stops/408826"], ["https://data.delijn.be/stops/304708", "https://data.delijn.be/stops/306374"], ["https://data.delijn.be/stops/504884", "https://data.delijn.be/stops/505092"], ["https://data.delijn.be/stops/504461", "https://data.delijn.be/stops/505116"], ["https://data.delijn.be/stops/103479", "https://data.delijn.be/stops/109217"], ["https://data.delijn.be/stops/103525", "https://data.delijn.be/stops/103770"], ["https://data.delijn.be/stops/206892", "https://data.delijn.be/stops/207892"], ["https://data.delijn.be/stops/300161", "https://data.delijn.be/stops/300162"], ["https://data.delijn.be/stops/102600", "https://data.delijn.be/stops/104915"], ["https://data.delijn.be/stops/404027", "https://data.delijn.be/stops/404028"], ["https://data.delijn.be/stops/303986", "https://data.delijn.be/stops/307019"], ["https://data.delijn.be/stops/300353", "https://data.delijn.be/stops/300399"], ["https://data.delijn.be/stops/201927", "https://data.delijn.be/stops/207399"], ["https://data.delijn.be/stops/504737", "https://data.delijn.be/stops/509497"], ["https://data.delijn.be/stops/505275", "https://data.delijn.be/stops/508227"], ["https://data.delijn.be/stops/202394", "https://data.delijn.be/stops/210122"], ["https://data.delijn.be/stops/407656", "https://data.delijn.be/stops/409774"], ["https://data.delijn.be/stops/405648", "https://data.delijn.be/stops/405649"], ["https://data.delijn.be/stops/204688", "https://data.delijn.be/stops/205688"], ["https://data.delijn.be/stops/504537", "https://data.delijn.be/stops/509608"], ["https://data.delijn.be/stops/300757", "https://data.delijn.be/stops/300758"], ["https://data.delijn.be/stops/300131", "https://data.delijn.be/stops/300132"], ["https://data.delijn.be/stops/305550", "https://data.delijn.be/stops/305561"], ["https://data.delijn.be/stops/301699", "https://data.delijn.be/stops/305295"], ["https://data.delijn.be/stops/409084", "https://data.delijn.be/stops/409085"], ["https://data.delijn.be/stops/409625", "https://data.delijn.be/stops/409632"], ["https://data.delijn.be/stops/208247", "https://data.delijn.be/stops/209247"], ["https://data.delijn.be/stops/302775", "https://data.delijn.be/stops/302785"], ["https://data.delijn.be/stops/410223", "https://data.delijn.be/stops/410293"], ["https://data.delijn.be/stops/305515", "https://data.delijn.be/stops/308549"], ["https://data.delijn.be/stops/502052", "https://data.delijn.be/stops/507052"], ["https://data.delijn.be/stops/305750", "https://data.delijn.be/stops/306333"], ["https://data.delijn.be/stops/505981", "https://data.delijn.be/stops/507197"], ["https://data.delijn.be/stops/406610", "https://data.delijn.be/stops/406619"], ["https://data.delijn.be/stops/400491", "https://data.delijn.be/stops/407751"], ["https://data.delijn.be/stops/503913", "https://data.delijn.be/stops/508933"], ["https://data.delijn.be/stops/408718", "https://data.delijn.be/stops/408720"], ["https://data.delijn.be/stops/404691", "https://data.delijn.be/stops/407314"], ["https://data.delijn.be/stops/406771", "https://data.delijn.be/stops/406842"], ["https://data.delijn.be/stops/301328", "https://data.delijn.be/stops/305920"], ["https://data.delijn.be/stops/401006", "https://data.delijn.be/stops/401010"], ["https://data.delijn.be/stops/504525", "https://data.delijn.be/stops/509196"], ["https://data.delijn.be/stops/204177", "https://data.delijn.be/stops/205176"], ["https://data.delijn.be/stops/502164", "https://data.delijn.be/stops/507113"], ["https://data.delijn.be/stops/402281", "https://data.delijn.be/stops/406888"], ["https://data.delijn.be/stops/300804", "https://data.delijn.be/stops/302399"], ["https://data.delijn.be/stops/408237", "https://data.delijn.be/stops/308199"], ["https://data.delijn.be/stops/404976", "https://data.delijn.be/stops/410295"], ["https://data.delijn.be/stops/304615", "https://data.delijn.be/stops/304651"], ["https://data.delijn.be/stops/101838", "https://data.delijn.be/stops/105430"], ["https://data.delijn.be/stops/304567", "https://data.delijn.be/stops/304657"], ["https://data.delijn.be/stops/506092", "https://data.delijn.be/stops/506225"], ["https://data.delijn.be/stops/509760", "https://data.delijn.be/stops/509773"], ["https://data.delijn.be/stops/106528", "https://data.delijn.be/stops/107309"], ["https://data.delijn.be/stops/400184", "https://data.delijn.be/stops/407670"], ["https://data.delijn.be/stops/503515", "https://data.delijn.be/stops/504791"], ["https://data.delijn.be/stops/306125", "https://data.delijn.be/stops/306153"], ["https://data.delijn.be/stops/402854", "https://data.delijn.be/stops/402858"], ["https://data.delijn.be/stops/503485", "https://data.delijn.be/stops/503489"], ["https://data.delijn.be/stops/106697", "https://data.delijn.be/stops/106699"], ["https://data.delijn.be/stops/202487", "https://data.delijn.be/stops/203487"], ["https://data.delijn.be/stops/402802", "https://data.delijn.be/stops/407316"], ["https://data.delijn.be/stops/410218", "https://data.delijn.be/stops/410219"], ["https://data.delijn.be/stops/103146", "https://data.delijn.be/stops/109439"], ["https://data.delijn.be/stops/303584", "https://data.delijn.be/stops/304929"], ["https://data.delijn.be/stops/107183", "https://data.delijn.be/stops/107189"], ["https://data.delijn.be/stops/304573", "https://data.delijn.be/stops/304634"], ["https://data.delijn.be/stops/202125", "https://data.delijn.be/stops/203124"], ["https://data.delijn.be/stops/503504", "https://data.delijn.be/stops/508509"], ["https://data.delijn.be/stops/106658", "https://data.delijn.be/stops/106664"], ["https://data.delijn.be/stops/206276", "https://data.delijn.be/stops/207276"], ["https://data.delijn.be/stops/102199", "https://data.delijn.be/stops/105796"], ["https://data.delijn.be/stops/208780", "https://data.delijn.be/stops/208781"], ["https://data.delijn.be/stops/404037", "https://data.delijn.be/stops/404073"], ["https://data.delijn.be/stops/503619", "https://data.delijn.be/stops/505526"], ["https://data.delijn.be/stops/302344", "https://data.delijn.be/stops/302750"], ["https://data.delijn.be/stops/204401", "https://data.delijn.be/stops/205402"], ["https://data.delijn.be/stops/202157", "https://data.delijn.be/stops/205068"], ["https://data.delijn.be/stops/505333", "https://data.delijn.be/stops/505651"], ["https://data.delijn.be/stops/106480", "https://data.delijn.be/stops/109211"], ["https://data.delijn.be/stops/306912", "https://data.delijn.be/stops/308724"], ["https://data.delijn.be/stops/200290", "https://data.delijn.be/stops/200296"], ["https://data.delijn.be/stops/101788", "https://data.delijn.be/stops/105659"], ["https://data.delijn.be/stops/305772", "https://data.delijn.be/stops/306879"], ["https://data.delijn.be/stops/301411", "https://data.delijn.be/stops/307534"], ["https://data.delijn.be/stops/302881", "https://data.delijn.be/stops/302889"], ["https://data.delijn.be/stops/105704", "https://data.delijn.be/stops/106075"], ["https://data.delijn.be/stops/304948", "https://data.delijn.be/stops/308017"], ["https://data.delijn.be/stops/201288", "https://data.delijn.be/stops/201359"], ["https://data.delijn.be/stops/408918", "https://data.delijn.be/stops/408919"], ["https://data.delijn.be/stops/502341", "https://data.delijn.be/stops/505172"], ["https://data.delijn.be/stops/303625", "https://data.delijn.be/stops/306699"], ["https://data.delijn.be/stops/408978", "https://data.delijn.be/stops/408979"], ["https://data.delijn.be/stops/305148", "https://data.delijn.be/stops/305169"], ["https://data.delijn.be/stops/202243", "https://data.delijn.be/stops/203243"], ["https://data.delijn.be/stops/409680", "https://data.delijn.be/stops/409700"], ["https://data.delijn.be/stops/107579", "https://data.delijn.be/stops/107582"], ["https://data.delijn.be/stops/200045", "https://data.delijn.be/stops/200218"], ["https://data.delijn.be/stops/101193", "https://data.delijn.be/stops/204614"], ["https://data.delijn.be/stops/206618", "https://data.delijn.be/stops/206721"], ["https://data.delijn.be/stops/405612", "https://data.delijn.be/stops/407157"], ["https://data.delijn.be/stops/504111", "https://data.delijn.be/stops/504469"], ["https://data.delijn.be/stops/206189", "https://data.delijn.be/stops/207193"], ["https://data.delijn.be/stops/209109", "https://data.delijn.be/stops/209204"], ["https://data.delijn.be/stops/502564", "https://data.delijn.be/stops/507564"], ["https://data.delijn.be/stops/305696", "https://data.delijn.be/stops/305716"], ["https://data.delijn.be/stops/402805", "https://data.delijn.be/stops/406110"], ["https://data.delijn.be/stops/402726", "https://data.delijn.be/stops/402727"], ["https://data.delijn.be/stops/403923", "https://data.delijn.be/stops/404016"], ["https://data.delijn.be/stops/200810", "https://data.delijn.be/stops/200899"], ["https://data.delijn.be/stops/304166", "https://data.delijn.be/stops/304172"], ["https://data.delijn.be/stops/503175", "https://data.delijn.be/stops/507684"], ["https://data.delijn.be/stops/203619", "https://data.delijn.be/stops/203620"], ["https://data.delijn.be/stops/108777", "https://data.delijn.be/stops/108784"], ["https://data.delijn.be/stops/109016", "https://data.delijn.be/stops/404047"], ["https://data.delijn.be/stops/300466", "https://data.delijn.be/stops/304975"], ["https://data.delijn.be/stops/205192", "https://data.delijn.be/stops/205204"], ["https://data.delijn.be/stops/108264", "https://data.delijn.be/stops/109371"], ["https://data.delijn.be/stops/101054", "https://data.delijn.be/stops/103790"], ["https://data.delijn.be/stops/105422", "https://data.delijn.be/stops/109980"], ["https://data.delijn.be/stops/503528", "https://data.delijn.be/stops/508498"], ["https://data.delijn.be/stops/404631", "https://data.delijn.be/stops/406959"], ["https://data.delijn.be/stops/200126", "https://data.delijn.be/stops/200241"], ["https://data.delijn.be/stops/400329", "https://data.delijn.be/stops/400354"], ["https://data.delijn.be/stops/102604", "https://data.delijn.be/stops/106972"], ["https://data.delijn.be/stops/504500", "https://data.delijn.be/stops/509500"], ["https://data.delijn.be/stops/300976", "https://data.delijn.be/stops/300982"], ["https://data.delijn.be/stops/305007", "https://data.delijn.be/stops/305026"], ["https://data.delijn.be/stops/501320", "https://data.delijn.be/stops/506349"], ["https://data.delijn.be/stops/505056", "https://data.delijn.be/stops/505073"], ["https://data.delijn.be/stops/304817", "https://data.delijn.be/stops/307974"], ["https://data.delijn.be/stops/403113", "https://data.delijn.be/stops/403234"], ["https://data.delijn.be/stops/202082", "https://data.delijn.be/stops/202083"], ["https://data.delijn.be/stops/501447", "https://data.delijn.be/stops/506502"], ["https://data.delijn.be/stops/202735", "https://data.delijn.be/stops/203907"], ["https://data.delijn.be/stops/501391", "https://data.delijn.be/stops/506385"], ["https://data.delijn.be/stops/401220", "https://data.delijn.be/stops/401221"], ["https://data.delijn.be/stops/303245", "https://data.delijn.be/stops/304650"], ["https://data.delijn.be/stops/206593", "https://data.delijn.be/stops/206928"], ["https://data.delijn.be/stops/106760", "https://data.delijn.be/stops/109700"], ["https://data.delijn.be/stops/502557", "https://data.delijn.be/stops/509892"], ["https://data.delijn.be/stops/104910", "https://data.delijn.be/stops/105447"], ["https://data.delijn.be/stops/204415", "https://data.delijn.be/stops/204416"], ["https://data.delijn.be/stops/404979", "https://data.delijn.be/stops/404980"], ["https://data.delijn.be/stops/102812", "https://data.delijn.be/stops/104780"], ["https://data.delijn.be/stops/302507", "https://data.delijn.be/stops/305782"], ["https://data.delijn.be/stops/101852", "https://data.delijn.be/stops/106803"], ["https://data.delijn.be/stops/502477", "https://data.delijn.be/stops/507753"], ["https://data.delijn.be/stops/301644", "https://data.delijn.be/stops/302108"], ["https://data.delijn.be/stops/300552", "https://data.delijn.be/stops/300553"], ["https://data.delijn.be/stops/108797", "https://data.delijn.be/stops/108798"], ["https://data.delijn.be/stops/404873", "https://data.delijn.be/stops/409149"], ["https://data.delijn.be/stops/207789", "https://data.delijn.be/stops/208406"], ["https://data.delijn.be/stops/302711", "https://data.delijn.be/stops/302728"], ["https://data.delijn.be/stops/400527", "https://data.delijn.be/stops/400593"], ["https://data.delijn.be/stops/209770", "https://data.delijn.be/stops/209789"], ["https://data.delijn.be/stops/300347", "https://data.delijn.be/stops/304698"], ["https://data.delijn.be/stops/101538", "https://data.delijn.be/stops/108266"], ["https://data.delijn.be/stops/406649", "https://data.delijn.be/stops/406652"], ["https://data.delijn.be/stops/407768", "https://data.delijn.be/stops/407769"], ["https://data.delijn.be/stops/208451", "https://data.delijn.be/stops/208452"], ["https://data.delijn.be/stops/406648", "https://data.delijn.be/stops/406653"], ["https://data.delijn.be/stops/501072", "https://data.delijn.be/stops/506072"], ["https://data.delijn.be/stops/200900", "https://data.delijn.be/stops/505514"], ["https://data.delijn.be/stops/201142", "https://data.delijn.be/stops/211094"], ["https://data.delijn.be/stops/402830", "https://data.delijn.be/stops/406549"], ["https://data.delijn.be/stops/400528", "https://data.delijn.be/stops/403027"], ["https://data.delijn.be/stops/505085", "https://data.delijn.be/stops/506224"], ["https://data.delijn.be/stops/300648", "https://data.delijn.be/stops/300654"], ["https://data.delijn.be/stops/501345", "https://data.delijn.be/stops/506345"], ["https://data.delijn.be/stops/308484", "https://data.delijn.be/stops/308485"], ["https://data.delijn.be/stops/304726", "https://data.delijn.be/stops/304751"], ["https://data.delijn.be/stops/508720", "https://data.delijn.be/stops/508732"], ["https://data.delijn.be/stops/302096", "https://data.delijn.be/stops/302100"], ["https://data.delijn.be/stops/405778", "https://data.delijn.be/stops/409705"], ["https://data.delijn.be/stops/101645", "https://data.delijn.be/stops/102620"], ["https://data.delijn.be/stops/103223", "https://data.delijn.be/stops/107705"], ["https://data.delijn.be/stops/302442", "https://data.delijn.be/stops/302443"], ["https://data.delijn.be/stops/504643", "https://data.delijn.be/stops/509643"], ["https://data.delijn.be/stops/403795", "https://data.delijn.be/stops/403825"], ["https://data.delijn.be/stops/108077", "https://data.delijn.be/stops/108446"], ["https://data.delijn.be/stops/305237", "https://data.delijn.be/stops/305272"], ["https://data.delijn.be/stops/200461", "https://data.delijn.be/stops/200679"], ["https://data.delijn.be/stops/208103", "https://data.delijn.be/stops/208104"], ["https://data.delijn.be/stops/206940", "https://data.delijn.be/stops/209565"], ["https://data.delijn.be/stops/304111", "https://data.delijn.be/stops/304824"], ["https://data.delijn.be/stops/302326", "https://data.delijn.be/stops/302332"], ["https://data.delijn.be/stops/305393", "https://data.delijn.be/stops/305403"], ["https://data.delijn.be/stops/208015", "https://data.delijn.be/stops/208026"], ["https://data.delijn.be/stops/502592", "https://data.delijn.be/stops/507316"], ["https://data.delijn.be/stops/505018", "https://data.delijn.be/stops/507674"], ["https://data.delijn.be/stops/502258", "https://data.delijn.be/stops/507351"], ["https://data.delijn.be/stops/301227", "https://data.delijn.be/stops/306681"], ["https://data.delijn.be/stops/503767", "https://data.delijn.be/stops/508769"], ["https://data.delijn.be/stops/504616", "https://data.delijn.be/stops/504620"], ["https://data.delijn.be/stops/303095", "https://data.delijn.be/stops/303106"], ["https://data.delijn.be/stops/202265", "https://data.delijn.be/stops/202266"], ["https://data.delijn.be/stops/508034", "https://data.delijn.be/stops/508035"], ["https://data.delijn.be/stops/208077", "https://data.delijn.be/stops/218029"], ["https://data.delijn.be/stops/200736", "https://data.delijn.be/stops/202594"], ["https://data.delijn.be/stops/400257", "https://data.delijn.be/stops/403003"], ["https://data.delijn.be/stops/301604", "https://data.delijn.be/stops/307339"], ["https://data.delijn.be/stops/204991", "https://data.delijn.be/stops/208798"], ["https://data.delijn.be/stops/203282", "https://data.delijn.be/stops/203632"], ["https://data.delijn.be/stops/302659", "https://data.delijn.be/stops/302660"], ["https://data.delijn.be/stops/304161", "https://data.delijn.be/stops/304227"], ["https://data.delijn.be/stops/503754", "https://data.delijn.be/stops/508647"], ["https://data.delijn.be/stops/504194", "https://data.delijn.be/stops/509151"], ["https://data.delijn.be/stops/308747", "https://data.delijn.be/stops/308748"], ["https://data.delijn.be/stops/302154", "https://data.delijn.be/stops/302441"], ["https://data.delijn.be/stops/401504", "https://data.delijn.be/stops/401507"], ["https://data.delijn.be/stops/401344", "https://data.delijn.be/stops/404777"], ["https://data.delijn.be/stops/208377", "https://data.delijn.be/stops/209334"], ["https://data.delijn.be/stops/106720", "https://data.delijn.be/stops/106721"], ["https://data.delijn.be/stops/204416", "https://data.delijn.be/stops/205397"], ["https://data.delijn.be/stops/409346", "https://data.delijn.be/stops/409348"], ["https://data.delijn.be/stops/409080", "https://data.delijn.be/stops/409139"], ["https://data.delijn.be/stops/105737", "https://data.delijn.be/stops/109952"], ["https://data.delijn.be/stops/307566", "https://data.delijn.be/stops/307569"], ["https://data.delijn.be/stops/302753", "https://data.delijn.be/stops/302754"], ["https://data.delijn.be/stops/200179", "https://data.delijn.be/stops/201180"], ["https://data.delijn.be/stops/200333", "https://data.delijn.be/stops/210046"], ["https://data.delijn.be/stops/206756", "https://data.delijn.be/stops/207622"], ["https://data.delijn.be/stops/200253", "https://data.delijn.be/stops/203557"], ["https://data.delijn.be/stops/101557", "https://data.delijn.be/stops/109673"], ["https://data.delijn.be/stops/106060", "https://data.delijn.be/stops/108055"], ["https://data.delijn.be/stops/304952", "https://data.delijn.be/stops/307950"], ["https://data.delijn.be/stops/503063", "https://data.delijn.be/stops/504999"], ["https://data.delijn.be/stops/105274", "https://data.delijn.be/stops/105292"], ["https://data.delijn.be/stops/406523", "https://data.delijn.be/stops/407566"], ["https://data.delijn.be/stops/206330", "https://data.delijn.be/stops/308845"], ["https://data.delijn.be/stops/501094", "https://data.delijn.be/stops/501100"], ["https://data.delijn.be/stops/204766", "https://data.delijn.be/stops/205423"], ["https://data.delijn.be/stops/307764", "https://data.delijn.be/stops/307765"], ["https://data.delijn.be/stops/402869", "https://data.delijn.be/stops/402870"], ["https://data.delijn.be/stops/203004", "https://data.delijn.be/stops/203763"], ["https://data.delijn.be/stops/206214", "https://data.delijn.be/stops/207214"], ["https://data.delijn.be/stops/408644", "https://data.delijn.be/stops/408645"], ["https://data.delijn.be/stops/203834", "https://data.delijn.be/stops/209638"], ["https://data.delijn.be/stops/400311", "https://data.delijn.be/stops/400384"], ["https://data.delijn.be/stops/105421", "https://data.delijn.be/stops/105848"], ["https://data.delijn.be/stops/108741", "https://data.delijn.be/stops/109708"], ["https://data.delijn.be/stops/407783", "https://data.delijn.be/stops/407784"], ["https://data.delijn.be/stops/401018", "https://data.delijn.be/stops/403736"], ["https://data.delijn.be/stops/500230", "https://data.delijn.be/stops/501102"], ["https://data.delijn.be/stops/402134", "https://data.delijn.be/stops/402135"], ["https://data.delijn.be/stops/505195", "https://data.delijn.be/stops/505196"], ["https://data.delijn.be/stops/109820", "https://data.delijn.be/stops/109821"], ["https://data.delijn.be/stops/202603", "https://data.delijn.be/stops/203603"], ["https://data.delijn.be/stops/308774", "https://data.delijn.be/stops/308776"], ["https://data.delijn.be/stops/302744", "https://data.delijn.be/stops/303220"], ["https://data.delijn.be/stops/102499", "https://data.delijn.be/stops/102504"], ["https://data.delijn.be/stops/504266", "https://data.delijn.be/stops/509266"], ["https://data.delijn.be/stops/206831", "https://data.delijn.be/stops/207832"], ["https://data.delijn.be/stops/403683", "https://data.delijn.be/stops/403685"], ["https://data.delijn.be/stops/405702", "https://data.delijn.be/stops/405744"], ["https://data.delijn.be/stops/102244", "https://data.delijn.be/stops/102246"], ["https://data.delijn.be/stops/201775", "https://data.delijn.be/stops/209227"], ["https://data.delijn.be/stops/208817", "https://data.delijn.be/stops/209851"], ["https://data.delijn.be/stops/505274", "https://data.delijn.be/stops/505391"], ["https://data.delijn.be/stops/206423", "https://data.delijn.be/stops/216012"], ["https://data.delijn.be/stops/106605", "https://data.delijn.be/stops/106686"], ["https://data.delijn.be/stops/305770", "https://data.delijn.be/stops/305772"], ["https://data.delijn.be/stops/408214", "https://data.delijn.be/stops/408313"], ["https://data.delijn.be/stops/304166", "https://data.delijn.be/stops/307577"], ["https://data.delijn.be/stops/200719", "https://data.delijn.be/stops/202619"], ["https://data.delijn.be/stops/208176", "https://data.delijn.be/stops/209167"], ["https://data.delijn.be/stops/300774", "https://data.delijn.be/stops/302402"], ["https://data.delijn.be/stops/408501", "https://data.delijn.be/stops/408526"], ["https://data.delijn.be/stops/501736", "https://data.delijn.be/stops/506067"], ["https://data.delijn.be/stops/202944", "https://data.delijn.be/stops/203946"], ["https://data.delijn.be/stops/106908", "https://data.delijn.be/stops/107249"], ["https://data.delijn.be/stops/101500", "https://data.delijn.be/stops/109347"], ["https://data.delijn.be/stops/504481", "https://data.delijn.be/stops/504720"], ["https://data.delijn.be/stops/501517", "https://data.delijn.be/stops/506300"], ["https://data.delijn.be/stops/101832", "https://data.delijn.be/stops/108191"], ["https://data.delijn.be/stops/402120", "https://data.delijn.be/stops/409631"], ["https://data.delijn.be/stops/300595", "https://data.delijn.be/stops/307170"], ["https://data.delijn.be/stops/206684", "https://data.delijn.be/stops/207684"], ["https://data.delijn.be/stops/300861", "https://data.delijn.be/stops/307233"], ["https://data.delijn.be/stops/200745", "https://data.delijn.be/stops/201683"], ["https://data.delijn.be/stops/104988", "https://data.delijn.be/stops/109769"], ["https://data.delijn.be/stops/507178", "https://data.delijn.be/stops/507179"], ["https://data.delijn.be/stops/305503", "https://data.delijn.be/stops/307989"], ["https://data.delijn.be/stops/208350", "https://data.delijn.be/stops/209350"], ["https://data.delijn.be/stops/303615", "https://data.delijn.be/stops/303616"], ["https://data.delijn.be/stops/306558", "https://data.delijn.be/stops/307897"], ["https://data.delijn.be/stops/502199", "https://data.delijn.be/stops/502647"], ["https://data.delijn.be/stops/506242", "https://data.delijn.be/stops/506246"], ["https://data.delijn.be/stops/300564", "https://data.delijn.be/stops/307858"], ["https://data.delijn.be/stops/402814", "https://data.delijn.be/stops/409034"], ["https://data.delijn.be/stops/205059", "https://data.delijn.be/stops/205060"], ["https://data.delijn.be/stops/509133", "https://data.delijn.be/stops/509639"], ["https://data.delijn.be/stops/201353", "https://data.delijn.be/stops/208267"], ["https://data.delijn.be/stops/504276", "https://data.delijn.be/stops/508128"], ["https://data.delijn.be/stops/101226", "https://data.delijn.be/stops/101660"], ["https://data.delijn.be/stops/402284", "https://data.delijn.be/stops/402766"], ["https://data.delijn.be/stops/107004", "https://data.delijn.be/stops/107329"], ["https://data.delijn.be/stops/504319", "https://data.delijn.be/stops/505827"], ["https://data.delijn.be/stops/107575", "https://data.delijn.be/stops/109433"], ["https://data.delijn.be/stops/207624", "https://data.delijn.be/stops/207625"], ["https://data.delijn.be/stops/406339", "https://data.delijn.be/stops/406401"], ["https://data.delijn.be/stops/301692", "https://data.delijn.be/stops/301693"], ["https://data.delijn.be/stops/503398", "https://data.delijn.be/stops/508400"], ["https://data.delijn.be/stops/407892", "https://data.delijn.be/stops/306055"], ["https://data.delijn.be/stops/102193", "https://data.delijn.be/stops/104262"], ["https://data.delijn.be/stops/106889", "https://data.delijn.be/stops/106890"], ["https://data.delijn.be/stops/307960", "https://data.delijn.be/stops/307961"], ["https://data.delijn.be/stops/105353", "https://data.delijn.be/stops/109968"], ["https://data.delijn.be/stops/502683", "https://data.delijn.be/stops/507188"], ["https://data.delijn.be/stops/406208", "https://data.delijn.be/stops/406213"], ["https://data.delijn.be/stops/503731", "https://data.delijn.be/stops/508991"], ["https://data.delijn.be/stops/104858", "https://data.delijn.be/stops/308810"], ["https://data.delijn.be/stops/407891", "https://data.delijn.be/stops/408177"], ["https://data.delijn.be/stops/403654", "https://data.delijn.be/stops/403655"], ["https://data.delijn.be/stops/403353", "https://data.delijn.be/stops/403385"], ["https://data.delijn.be/stops/308052", "https://data.delijn.be/stops/308055"], ["https://data.delijn.be/stops/500001", "https://data.delijn.be/stops/507294"], ["https://data.delijn.be/stops/206256", "https://data.delijn.be/stops/206996"], ["https://data.delijn.be/stops/206932", "https://data.delijn.be/stops/207932"], ["https://data.delijn.be/stops/504148", "https://data.delijn.be/stops/505709"], ["https://data.delijn.be/stops/104869", "https://data.delijn.be/stops/108028"], ["https://data.delijn.be/stops/101228", "https://data.delijn.be/stops/109915"], ["https://data.delijn.be/stops/306791", "https://data.delijn.be/stops/307732"], ["https://data.delijn.be/stops/403950", "https://data.delijn.be/stops/403951"], ["https://data.delijn.be/stops/308248", "https://data.delijn.be/stops/308249"], ["https://data.delijn.be/stops/400755", "https://data.delijn.be/stops/408448"], ["https://data.delijn.be/stops/407726", "https://data.delijn.be/stops/409777"], ["https://data.delijn.be/stops/505154", "https://data.delijn.be/stops/507560"], ["https://data.delijn.be/stops/405210", "https://data.delijn.be/stops/410167"], ["https://data.delijn.be/stops/407094", "https://data.delijn.be/stops/407272"], ["https://data.delijn.be/stops/400734", "https://data.delijn.be/stops/400809"], ["https://data.delijn.be/stops/402554", "https://data.delijn.be/stops/402649"], ["https://data.delijn.be/stops/207096", "https://data.delijn.be/stops/207931"], ["https://data.delijn.be/stops/503293", "https://data.delijn.be/stops/508435"], ["https://data.delijn.be/stops/305188", "https://data.delijn.be/stops/307091"], ["https://data.delijn.be/stops/305182", "https://data.delijn.be/stops/305183"], ["https://data.delijn.be/stops/407612", "https://data.delijn.be/stops/407613"], ["https://data.delijn.be/stops/503902", "https://data.delijn.be/stops/504358"], ["https://data.delijn.be/stops/106105", "https://data.delijn.be/stops/106124"], ["https://data.delijn.be/stops/301459", "https://data.delijn.be/stops/301486"], ["https://data.delijn.be/stops/303555", "https://data.delijn.be/stops/303568"], ["https://data.delijn.be/stops/105104", "https://data.delijn.be/stops/109506"], ["https://data.delijn.be/stops/304257", "https://data.delijn.be/stops/304258"], ["https://data.delijn.be/stops/207336", "https://data.delijn.be/stops/207337"], ["https://data.delijn.be/stops/206174", "https://data.delijn.be/stops/207265"], ["https://data.delijn.be/stops/202731", "https://data.delijn.be/stops/202735"], ["https://data.delijn.be/stops/505792", "https://data.delijn.be/stops/508096"], ["https://data.delijn.be/stops/408136", "https://data.delijn.be/stops/408137"], ["https://data.delijn.be/stops/201690", "https://data.delijn.be/stops/203999"], ["https://data.delijn.be/stops/103770", "https://data.delijn.be/stops/105260"], ["https://data.delijn.be/stops/500128", "https://data.delijn.be/stops/502439"], ["https://data.delijn.be/stops/206641", "https://data.delijn.be/stops/207443"], ["https://data.delijn.be/stops/501177", "https://data.delijn.be/stops/506175"], ["https://data.delijn.be/stops/400378", "https://data.delijn.be/stops/400435"], ["https://data.delijn.be/stops/400015", "https://data.delijn.be/stops/400431"], ["https://data.delijn.be/stops/400495", "https://data.delijn.be/stops/407211"], ["https://data.delijn.be/stops/200450", "https://data.delijn.be/stops/208291"], ["https://data.delijn.be/stops/500948", "https://data.delijn.be/stops/504207"], ["https://data.delijn.be/stops/301155", "https://data.delijn.be/stops/301156"], ["https://data.delijn.be/stops/107945", "https://data.delijn.be/stops/107946"], ["https://data.delijn.be/stops/407813", "https://data.delijn.be/stops/408043"], ["https://data.delijn.be/stops/404426", "https://data.delijn.be/stops/404427"], ["https://data.delijn.be/stops/407609", "https://data.delijn.be/stops/407744"], ["https://data.delijn.be/stops/103737", "https://data.delijn.be/stops/108644"], ["https://data.delijn.be/stops/402400", "https://data.delijn.be/stops/402487"], ["https://data.delijn.be/stops/107860", "https://data.delijn.be/stops/107865"], ["https://data.delijn.be/stops/103218", "https://data.delijn.be/stops/107362"], ["https://data.delijn.be/stops/305459", "https://data.delijn.be/stops/308548"], ["https://data.delijn.be/stops/405204", "https://data.delijn.be/stops/405219"], ["https://data.delijn.be/stops/208668", "https://data.delijn.be/stops/209127"], ["https://data.delijn.be/stops/304877", "https://data.delijn.be/stops/308956"], ["https://data.delijn.be/stops/200228", "https://data.delijn.be/stops/201368"], ["https://data.delijn.be/stops/105714", "https://data.delijn.be/stops/105717"], ["https://data.delijn.be/stops/308094", "https://data.delijn.be/stops/308095"], ["https://data.delijn.be/stops/409398", "https://data.delijn.be/stops/409441"], ["https://data.delijn.be/stops/303336", "https://data.delijn.be/stops/305059"], ["https://data.delijn.be/stops/303311", "https://data.delijn.be/stops/303313"], ["https://data.delijn.be/stops/401347", "https://data.delijn.be/stops/401355"], ["https://data.delijn.be/stops/407731", "https://data.delijn.be/stops/409780"], ["https://data.delijn.be/stops/106672", "https://data.delijn.be/stops/106673"], ["https://data.delijn.be/stops/304017", "https://data.delijn.be/stops/304078"], ["https://data.delijn.be/stops/305642", "https://data.delijn.be/stops/305660"], ["https://data.delijn.be/stops/300308", "https://data.delijn.be/stops/303264"], ["https://data.delijn.be/stops/204702", "https://data.delijn.be/stops/205701"], ["https://data.delijn.be/stops/105888", "https://data.delijn.be/stops/105908"], ["https://data.delijn.be/stops/401710", "https://data.delijn.be/stops/406808"], ["https://data.delijn.be/stops/101655", "https://data.delijn.be/stops/104867"], ["https://data.delijn.be/stops/102847", "https://data.delijn.be/stops/104981"], ["https://data.delijn.be/stops/304738", "https://data.delijn.be/stops/308711"], ["https://data.delijn.be/stops/202740", "https://data.delijn.be/stops/206537"], ["https://data.delijn.be/stops/406100", "https://data.delijn.be/stops/406120"], ["https://data.delijn.be/stops/104593", "https://data.delijn.be/stops/108352"], ["https://data.delijn.be/stops/105693", "https://data.delijn.be/stops/105711"], ["https://data.delijn.be/stops/405545", "https://data.delijn.be/stops/406885"], ["https://data.delijn.be/stops/304584", "https://data.delijn.be/stops/307767"], ["https://data.delijn.be/stops/300269", "https://data.delijn.be/stops/302150"], ["https://data.delijn.be/stops/505908", "https://data.delijn.be/stops/508811"], ["https://data.delijn.be/stops/209202", "https://data.delijn.be/stops/209784"], ["https://data.delijn.be/stops/406218", "https://data.delijn.be/stops/406220"], ["https://data.delijn.be/stops/210010", "https://data.delijn.be/stops/502274"], ["https://data.delijn.be/stops/305271", "https://data.delijn.be/stops/305315"], ["https://data.delijn.be/stops/303694", "https://data.delijn.be/stops/303695"], ["https://data.delijn.be/stops/404348", "https://data.delijn.be/stops/404349"], ["https://data.delijn.be/stops/200468", "https://data.delijn.be/stops/201133"], ["https://data.delijn.be/stops/202533", "https://data.delijn.be/stops/203533"], ["https://data.delijn.be/stops/105618", "https://data.delijn.be/stops/105619"], ["https://data.delijn.be/stops/306285", "https://data.delijn.be/stops/306286"], ["https://data.delijn.be/stops/300375", "https://data.delijn.be/stops/300377"], ["https://data.delijn.be/stops/206149", "https://data.delijn.be/stops/206150"], ["https://data.delijn.be/stops/105426", "https://data.delijn.be/stops/105427"], ["https://data.delijn.be/stops/504296", "https://data.delijn.be/stops/504455"], ["https://data.delijn.be/stops/101145", "https://data.delijn.be/stops/101150"], ["https://data.delijn.be/stops/106399", "https://data.delijn.be/stops/106401"], ["https://data.delijn.be/stops/301660", "https://data.delijn.be/stops/307075"], ["https://data.delijn.be/stops/102121", "https://data.delijn.be/stops/109370"], ["https://data.delijn.be/stops/202870", "https://data.delijn.be/stops/203870"], ["https://data.delijn.be/stops/204429", "https://data.delijn.be/stops/205428"], ["https://data.delijn.be/stops/306938", "https://data.delijn.be/stops/308133"], ["https://data.delijn.be/stops/301405", "https://data.delijn.be/stops/304738"], ["https://data.delijn.be/stops/302108", "https://data.delijn.be/stops/302112"], ["https://data.delijn.be/stops/501182", "https://data.delijn.be/stops/506182"], ["https://data.delijn.be/stops/302389", "https://data.delijn.be/stops/302761"], ["https://data.delijn.be/stops/109063", "https://data.delijn.be/stops/307375"], ["https://data.delijn.be/stops/302114", "https://data.delijn.be/stops/302115"], ["https://data.delijn.be/stops/407634", "https://data.delijn.be/stops/410274"], ["https://data.delijn.be/stops/101536", "https://data.delijn.be/stops/101537"], ["https://data.delijn.be/stops/301366", "https://data.delijn.be/stops/308768"], ["https://data.delijn.be/stops/508525", "https://data.delijn.be/stops/508529"], ["https://data.delijn.be/stops/103110", "https://data.delijn.be/stops/103800"], ["https://data.delijn.be/stops/202909", "https://data.delijn.be/stops/203850"], ["https://data.delijn.be/stops/207678", "https://data.delijn.be/stops/208076"], ["https://data.delijn.be/stops/404365", "https://data.delijn.be/stops/404369"], ["https://data.delijn.be/stops/206905", "https://data.delijn.be/stops/207905"], ["https://data.delijn.be/stops/302658", "https://data.delijn.be/stops/303259"], ["https://data.delijn.be/stops/504992", "https://data.delijn.be/stops/508790"], ["https://data.delijn.be/stops/300575", "https://data.delijn.be/stops/300581"], ["https://data.delijn.be/stops/101547", "https://data.delijn.be/stops/101898"], ["https://data.delijn.be/stops/103525", "https://data.delijn.be/stops/105370"], ["https://data.delijn.be/stops/203315", "https://data.delijn.be/stops/203316"], ["https://data.delijn.be/stops/308215", "https://data.delijn.be/stops/308216"], ["https://data.delijn.be/stops/400446", "https://data.delijn.be/stops/400654"], ["https://data.delijn.be/stops/504549", "https://data.delijn.be/stops/509549"], ["https://data.delijn.be/stops/300161", "https://data.delijn.be/stops/301226"], ["https://data.delijn.be/stops/302938", "https://data.delijn.be/stops/303443"], ["https://data.delijn.be/stops/102750", "https://data.delijn.be/stops/102814"], ["https://data.delijn.be/stops/405894", "https://data.delijn.be/stops/408244"], ["https://data.delijn.be/stops/106851", "https://data.delijn.be/stops/106982"], ["https://data.delijn.be/stops/106751", "https://data.delijn.be/stops/307235"], ["https://data.delijn.be/stops/403175", "https://data.delijn.be/stops/403428"], ["https://data.delijn.be/stops/402858", "https://data.delijn.be/stops/409881"], ["https://data.delijn.be/stops/101785", "https://data.delijn.be/stops/103025"], ["https://data.delijn.be/stops/405939", "https://data.delijn.be/stops/405944"], ["https://data.delijn.be/stops/402378", "https://data.delijn.be/stops/402389"], ["https://data.delijn.be/stops/302958", "https://data.delijn.be/stops/302975"], ["https://data.delijn.be/stops/305416", "https://data.delijn.be/stops/305463"], ["https://data.delijn.be/stops/208366", "https://data.delijn.be/stops/208367"], ["https://data.delijn.be/stops/206931", "https://data.delijn.be/stops/207931"], ["https://data.delijn.be/stops/300451", "https://data.delijn.be/stops/308057"], ["https://data.delijn.be/stops/400057", "https://data.delijn.be/stops/400100"], ["https://data.delijn.be/stops/506120", "https://data.delijn.be/stops/506230"], ["https://data.delijn.be/stops/202574", "https://data.delijn.be/stops/203575"], ["https://data.delijn.be/stops/101525", "https://data.delijn.be/stops/102839"], ["https://data.delijn.be/stops/204984", "https://data.delijn.be/stops/211073"], ["https://data.delijn.be/stops/101753", "https://data.delijn.be/stops/109824"], ["https://data.delijn.be/stops/104552", "https://data.delijn.be/stops/105928"], ["https://data.delijn.be/stops/507715", "https://data.delijn.be/stops/508331"], ["https://data.delijn.be/stops/106433", "https://data.delijn.be/stops/106499"], ["https://data.delijn.be/stops/507373", "https://data.delijn.be/stops/507520"], ["https://data.delijn.be/stops/506095", "https://data.delijn.be/stops/509811"], ["https://data.delijn.be/stops/101856", "https://data.delijn.be/stops/104999"], ["https://data.delijn.be/stops/206513", "https://data.delijn.be/stops/206716"], ["https://data.delijn.be/stops/503699", "https://data.delijn.be/stops/503916"], ["https://data.delijn.be/stops/504167", "https://data.delijn.be/stops/509167"], ["https://data.delijn.be/stops/304202", "https://data.delijn.be/stops/304209"], ["https://data.delijn.be/stops/105284", "https://data.delijn.be/stops/109925"], ["https://data.delijn.be/stops/503552", "https://data.delijn.be/stops/503557"], ["https://data.delijn.be/stops/408253", "https://data.delijn.be/stops/408352"], ["https://data.delijn.be/stops/302589", "https://data.delijn.be/stops/302590"], ["https://data.delijn.be/stops/101642", "https://data.delijn.be/stops/107443"], ["https://data.delijn.be/stops/101000", "https://data.delijn.be/stops/104540"], ["https://data.delijn.be/stops/503682", "https://data.delijn.be/stops/508689"], ["https://data.delijn.be/stops/108026", "https://data.delijn.be/stops/108058"], ["https://data.delijn.be/stops/405551", "https://data.delijn.be/stops/405578"], ["https://data.delijn.be/stops/105478", "https://data.delijn.be/stops/105683"], ["https://data.delijn.be/stops/402936", "https://data.delijn.be/stops/405905"], ["https://data.delijn.be/stops/505898", "https://data.delijn.be/stops/509438"], ["https://data.delijn.be/stops/106419", "https://data.delijn.be/stops/106523"], ["https://data.delijn.be/stops/402662", "https://data.delijn.be/stops/402720"], ["https://data.delijn.be/stops/200306", "https://data.delijn.be/stops/201600"], ["https://data.delijn.be/stops/401764", "https://data.delijn.be/stops/401768"], ["https://data.delijn.be/stops/103203", "https://data.delijn.be/stops/107189"], ["https://data.delijn.be/stops/400628", "https://data.delijn.be/stops/404290"], ["https://data.delijn.be/stops/503163", "https://data.delijn.be/stops/503237"], ["https://data.delijn.be/stops/208267", "https://data.delijn.be/stops/208268"], ["https://data.delijn.be/stops/402723", "https://data.delijn.be/stops/402733"], ["https://data.delijn.be/stops/409066", "https://data.delijn.be/stops/409156"], ["https://data.delijn.be/stops/303638", "https://data.delijn.be/stops/304808"], ["https://data.delijn.be/stops/304534", "https://data.delijn.be/stops/304539"], ["https://data.delijn.be/stops/306964", "https://data.delijn.be/stops/306966"], ["https://data.delijn.be/stops/303365", "https://data.delijn.be/stops/303387"], ["https://data.delijn.be/stops/103586", "https://data.delijn.be/stops/103587"], ["https://data.delijn.be/stops/306915", "https://data.delijn.be/stops/306916"], ["https://data.delijn.be/stops/403956", "https://data.delijn.be/stops/407067"], ["https://data.delijn.be/stops/102081", "https://data.delijn.be/stops/109850"], ["https://data.delijn.be/stops/508542", "https://data.delijn.be/stops/508543"], ["https://data.delijn.be/stops/204136", "https://data.delijn.be/stops/204147"], ["https://data.delijn.be/stops/306700", "https://data.delijn.be/stops/307933"], ["https://data.delijn.be/stops/304996", "https://data.delijn.be/stops/305003"], ["https://data.delijn.be/stops/404660", "https://data.delijn.be/stops/404668"], ["https://data.delijn.be/stops/300478", "https://data.delijn.be/stops/300479"], ["https://data.delijn.be/stops/408911", "https://data.delijn.be/stops/408913"], ["https://data.delijn.be/stops/105076", "https://data.delijn.be/stops/108883"], ["https://data.delijn.be/stops/404528", "https://data.delijn.be/stops/404530"], ["https://data.delijn.be/stops/102081", "https://data.delijn.be/stops/105833"], ["https://data.delijn.be/stops/208062", "https://data.delijn.be/stops/208063"], ["https://data.delijn.be/stops/303225", "https://data.delijn.be/stops/304621"], ["https://data.delijn.be/stops/409435", "https://data.delijn.be/stops/409723"], ["https://data.delijn.be/stops/505608", "https://data.delijn.be/stops/507297"], ["https://data.delijn.be/stops/101794", "https://data.delijn.be/stops/102589"], ["https://data.delijn.be/stops/502204", "https://data.delijn.be/stops/508731"], ["https://data.delijn.be/stops/204712", "https://data.delijn.be/stops/205712"], ["https://data.delijn.be/stops/509264", "https://data.delijn.be/stops/509395"], ["https://data.delijn.be/stops/301774", "https://data.delijn.be/stops/306795"], ["https://data.delijn.be/stops/302540", "https://data.delijn.be/stops/302541"], ["https://data.delijn.be/stops/105119", "https://data.delijn.be/stops/109696"], ["https://data.delijn.be/stops/303340", "https://data.delijn.be/stops/303342"], ["https://data.delijn.be/stops/202030", "https://data.delijn.be/stops/203030"], ["https://data.delijn.be/stops/504147", "https://data.delijn.be/stops/509148"], ["https://data.delijn.be/stops/409876", "https://data.delijn.be/stops/409877"], ["https://data.delijn.be/stops/105571", "https://data.delijn.be/stops/105572"], ["https://data.delijn.be/stops/404868", "https://data.delijn.be/stops/404869"], ["https://data.delijn.be/stops/101754", "https://data.delijn.be/stops/105751"], ["https://data.delijn.be/stops/401215", "https://data.delijn.be/stops/401253"], ["https://data.delijn.be/stops/505600", "https://data.delijn.be/stops/505614"], ["https://data.delijn.be/stops/402307", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/103650", "https://data.delijn.be/stops/103651"], ["https://data.delijn.be/stops/208129", "https://data.delijn.be/stops/209128"], ["https://data.delijn.be/stops/405154", "https://data.delijn.be/stops/405213"], ["https://data.delijn.be/stops/502010", "https://data.delijn.be/stops/507039"], ["https://data.delijn.be/stops/505565", "https://data.delijn.be/stops/508752"], ["https://data.delijn.be/stops/305615", "https://data.delijn.be/stops/308944"], ["https://data.delijn.be/stops/402326", "https://data.delijn.be/stops/402327"], ["https://data.delijn.be/stops/202154", "https://data.delijn.be/stops/203627"], ["https://data.delijn.be/stops/302716", "https://data.delijn.be/stops/308596"], ["https://data.delijn.be/stops/501323", "https://data.delijn.be/stops/506323"], ["https://data.delijn.be/stops/202772", "https://data.delijn.be/stops/202773"], ["https://data.delijn.be/stops/504376", "https://data.delijn.be/stops/505652"], ["https://data.delijn.be/stops/302226", "https://data.delijn.be/stops/302245"], ["https://data.delijn.be/stops/202162", "https://data.delijn.be/stops/203163"], ["https://data.delijn.be/stops/506781", "https://data.delijn.be/stops/506782"], ["https://data.delijn.be/stops/303247", "https://data.delijn.be/stops/307687"], ["https://data.delijn.be/stops/302340", "https://data.delijn.be/stops/302341"], ["https://data.delijn.be/stops/302521", "https://data.delijn.be/stops/302529"], ["https://data.delijn.be/stops/300014", "https://data.delijn.be/stops/300399"], ["https://data.delijn.be/stops/504209", "https://data.delijn.be/stops/504210"], ["https://data.delijn.be/stops/400888", "https://data.delijn.be/stops/400889"], ["https://data.delijn.be/stops/300995", "https://data.delijn.be/stops/300996"], ["https://data.delijn.be/stops/409357", "https://data.delijn.be/stops/409386"], ["https://data.delijn.be/stops/101078", "https://data.delijn.be/stops/101087"], ["https://data.delijn.be/stops/103964", "https://data.delijn.be/stops/107548"], ["https://data.delijn.be/stops/402021", "https://data.delijn.be/stops/402973"], ["https://data.delijn.be/stops/408230", "https://data.delijn.be/stops/408426"], ["https://data.delijn.be/stops/505438", "https://data.delijn.be/stops/507299"], ["https://data.delijn.be/stops/200723", "https://data.delijn.be/stops/203585"], ["https://data.delijn.be/stops/303725", "https://data.delijn.be/stops/303748"], ["https://data.delijn.be/stops/201416", "https://data.delijn.be/stops/208889"], ["https://data.delijn.be/stops/406925", "https://data.delijn.be/stops/406933"], ["https://data.delijn.be/stops/408316", "https://data.delijn.be/stops/408333"], ["https://data.delijn.be/stops/504593", "https://data.delijn.be/stops/508996"], ["https://data.delijn.be/stops/400501", "https://data.delijn.be/stops/401961"], ["https://data.delijn.be/stops/101221", "https://data.delijn.be/stops/107829"], ["https://data.delijn.be/stops/300138", "https://data.delijn.be/stops/306805"], ["https://data.delijn.be/stops/400038", "https://data.delijn.be/stops/400040"], ["https://data.delijn.be/stops/101459", "https://data.delijn.be/stops/109276"], ["https://data.delijn.be/stops/400564", "https://data.delijn.be/stops/405122"], ["https://data.delijn.be/stops/305781", "https://data.delijn.be/stops/305782"], ["https://data.delijn.be/stops/400256", "https://data.delijn.be/stops/400257"], ["https://data.delijn.be/stops/209329", "https://data.delijn.be/stops/210004"], ["https://data.delijn.be/stops/200852", "https://data.delijn.be/stops/203302"], ["https://data.delijn.be/stops/104861", "https://data.delijn.be/stops/107817"], ["https://data.delijn.be/stops/400863", "https://data.delijn.be/stops/400879"], ["https://data.delijn.be/stops/406770", "https://data.delijn.be/stops/410261"], ["https://data.delijn.be/stops/105114", "https://data.delijn.be/stops/105117"], ["https://data.delijn.be/stops/401778", "https://data.delijn.be/stops/401786"], ["https://data.delijn.be/stops/207782", "https://data.delijn.be/stops/208191"], ["https://data.delijn.be/stops/400421", "https://data.delijn.be/stops/407100"], ["https://data.delijn.be/stops/202741", "https://data.delijn.be/stops/202878"], ["https://data.delijn.be/stops/208065", "https://data.delijn.be/stops/209521"], ["https://data.delijn.be/stops/402089", "https://data.delijn.be/stops/402104"], ["https://data.delijn.be/stops/405770", "https://data.delijn.be/stops/405841"], ["https://data.delijn.be/stops/503805", "https://data.delijn.be/stops/507202"], ["https://data.delijn.be/stops/503978", "https://data.delijn.be/stops/504276"], ["https://data.delijn.be/stops/106265", "https://data.delijn.be/stops/106268"], ["https://data.delijn.be/stops/200405", "https://data.delijn.be/stops/201405"], ["https://data.delijn.be/stops/401066", "https://data.delijn.be/stops/406658"], ["https://data.delijn.be/stops/404391", "https://data.delijn.be/stops/408689"], ["https://data.delijn.be/stops/204595", "https://data.delijn.be/stops/205796"], ["https://data.delijn.be/stops/108156", "https://data.delijn.be/stops/108681"], ["https://data.delijn.be/stops/507221", "https://data.delijn.be/stops/507223"], ["https://data.delijn.be/stops/505723", "https://data.delijn.be/stops/507292"], ["https://data.delijn.be/stops/405205", "https://data.delijn.be/stops/405213"], ["https://data.delijn.be/stops/105329", "https://data.delijn.be/stops/204021"], ["https://data.delijn.be/stops/102544", "https://data.delijn.be/stops/405102"], ["https://data.delijn.be/stops/305179", "https://data.delijn.be/stops/306933"], ["https://data.delijn.be/stops/404011", "https://data.delijn.be/stops/404014"], ["https://data.delijn.be/stops/200712", "https://data.delijn.be/stops/203603"], ["https://data.delijn.be/stops/205795", "https://data.delijn.be/stops/205796"], ["https://data.delijn.be/stops/304097", "https://data.delijn.be/stops/307509"], ["https://data.delijn.be/stops/106915", "https://data.delijn.be/stops/106953"], ["https://data.delijn.be/stops/105321", "https://data.delijn.be/stops/105322"], ["https://data.delijn.be/stops/108316", "https://data.delijn.be/stops/108754"], ["https://data.delijn.be/stops/502184", "https://data.delijn.be/stops/502185"], ["https://data.delijn.be/stops/504228", "https://data.delijn.be/stops/509625"], ["https://data.delijn.be/stops/101475", "https://data.delijn.be/stops/108762"], ["https://data.delijn.be/stops/108822", "https://data.delijn.be/stops/108823"], ["https://data.delijn.be/stops/108402", "https://data.delijn.be/stops/108404"], ["https://data.delijn.be/stops/106654", "https://data.delijn.be/stops/106655"], ["https://data.delijn.be/stops/201907", "https://data.delijn.be/stops/203498"], ["https://data.delijn.be/stops/307644", "https://data.delijn.be/stops/307645"], ["https://data.delijn.be/stops/204006", "https://data.delijn.be/stops/205322"], ["https://data.delijn.be/stops/408098", "https://data.delijn.be/stops/408118"], ["https://data.delijn.be/stops/204581", "https://data.delijn.be/stops/205592"], ["https://data.delijn.be/stops/108642", "https://data.delijn.be/stops/108978"], ["https://data.delijn.be/stops/404793", "https://data.delijn.be/stops/404814"], ["https://data.delijn.be/stops/504171", "https://data.delijn.be/stops/509347"], ["https://data.delijn.be/stops/302180", "https://data.delijn.be/stops/308096"], ["https://data.delijn.be/stops/202116", "https://data.delijn.be/stops/204773"], ["https://data.delijn.be/stops/403784", "https://data.delijn.be/stops/408991"], ["https://data.delijn.be/stops/502740", "https://data.delijn.be/stops/502920"], ["https://data.delijn.be/stops/507279", "https://data.delijn.be/stops/507280"], ["https://data.delijn.be/stops/402968", "https://data.delijn.be/stops/402979"], ["https://data.delijn.be/stops/206732", "https://data.delijn.be/stops/301664"], ["https://data.delijn.be/stops/105784", "https://data.delijn.be/stops/105936"], ["https://data.delijn.be/stops/201896", "https://data.delijn.be/stops/202940"], ["https://data.delijn.be/stops/206085", "https://data.delijn.be/stops/207989"], ["https://data.delijn.be/stops/505202", "https://data.delijn.be/stops/508153"], ["https://data.delijn.be/stops/403306", "https://data.delijn.be/stops/403535"], ["https://data.delijn.be/stops/203835", "https://data.delijn.be/stops/203836"], ["https://data.delijn.be/stops/405194", "https://data.delijn.be/stops/405195"], ["https://data.delijn.be/stops/304515", "https://data.delijn.be/stops/304516"], ["https://data.delijn.be/stops/403710", "https://data.delijn.be/stops/403786"], ["https://data.delijn.be/stops/109319", "https://data.delijn.be/stops/109354"], ["https://data.delijn.be/stops/107551", "https://data.delijn.be/stops/107553"], ["https://data.delijn.be/stops/204180", "https://data.delijn.be/stops/204182"], ["https://data.delijn.be/stops/305803", "https://data.delijn.be/stops/305806"], ["https://data.delijn.be/stops/406952", "https://data.delijn.be/stops/409467"], ["https://data.delijn.be/stops/501396", "https://data.delijn.be/stops/590331"], ["https://data.delijn.be/stops/204160", "https://data.delijn.be/stops/205162"], ["https://data.delijn.be/stops/209214", "https://data.delijn.be/stops/209215"], ["https://data.delijn.be/stops/200106", "https://data.delijn.be/stops/200107"], ["https://data.delijn.be/stops/302664", "https://data.delijn.be/stops/302678"], ["https://data.delijn.be/stops/505126", "https://data.delijn.be/stops/505128"], ["https://data.delijn.be/stops/206590", "https://data.delijn.be/stops/207590"], ["https://data.delijn.be/stops/401203", "https://data.delijn.be/stops/401207"], ["https://data.delijn.be/stops/408292", "https://data.delijn.be/stops/408390"], ["https://data.delijn.be/stops/500927", "https://data.delijn.be/stops/505307"], ["https://data.delijn.be/stops/206750", "https://data.delijn.be/stops/209477"], ["https://data.delijn.be/stops/504948", "https://data.delijn.be/stops/508729"], ["https://data.delijn.be/stops/302999", "https://data.delijn.be/stops/304709"], ["https://data.delijn.be/stops/302549", "https://data.delijn.be/stops/302554"], ["https://data.delijn.be/stops/408302", "https://data.delijn.be/stops/408938"], ["https://data.delijn.be/stops/409602", "https://data.delijn.be/stops/409609"], ["https://data.delijn.be/stops/105158", "https://data.delijn.be/stops/108761"], ["https://data.delijn.be/stops/304223", "https://data.delijn.be/stops/304237"], ["https://data.delijn.be/stops/206869", "https://data.delijn.be/stops/207550"], ["https://data.delijn.be/stops/407739", "https://data.delijn.be/stops/407766"], ["https://data.delijn.be/stops/203887", "https://data.delijn.be/stops/207421"], ["https://data.delijn.be/stops/400602", "https://data.delijn.be/stops/404294"], ["https://data.delijn.be/stops/403618", "https://data.delijn.be/stops/403653"], ["https://data.delijn.be/stops/105531", "https://data.delijn.be/stops/106834"], ["https://data.delijn.be/stops/403154", "https://data.delijn.be/stops/403318"], ["https://data.delijn.be/stops/308429", "https://data.delijn.be/stops/308431"], ["https://data.delijn.be/stops/505507", "https://data.delijn.be/stops/505614"], ["https://data.delijn.be/stops/300513", "https://data.delijn.be/stops/300514"], ["https://data.delijn.be/stops/503082", "https://data.delijn.be/stops/508083"], ["https://data.delijn.be/stops/101193", "https://data.delijn.be/stops/101197"], ["https://data.delijn.be/stops/402719", "https://data.delijn.be/stops/405994"], ["https://data.delijn.be/stops/204048", "https://data.delijn.be/stops/205520"], ["https://data.delijn.be/stops/201279", "https://data.delijn.be/stops/201516"], ["https://data.delijn.be/stops/404441", "https://data.delijn.be/stops/409428"], ["https://data.delijn.be/stops/402863", "https://data.delijn.be/stops/408173"], ["https://data.delijn.be/stops/101513", "https://data.delijn.be/stops/109029"], ["https://data.delijn.be/stops/404700", "https://data.delijn.be/stops/404702"], ["https://data.delijn.be/stops/200139", "https://data.delijn.be/stops/201985"], ["https://data.delijn.be/stops/404708", "https://data.delijn.be/stops/404774"], ["https://data.delijn.be/stops/404617", "https://data.delijn.be/stops/406831"], ["https://data.delijn.be/stops/204114", "https://data.delijn.be/stops/205110"], ["https://data.delijn.be/stops/301090", "https://data.delijn.be/stops/304299"], ["https://data.delijn.be/stops/104287", "https://data.delijn.be/stops/104289"], ["https://data.delijn.be/stops/407120", "https://data.delijn.be/stops/409512"], ["https://data.delijn.be/stops/204989", "https://data.delijn.be/stops/209548"], ["https://data.delijn.be/stops/301315", "https://data.delijn.be/stops/301316"], ["https://data.delijn.be/stops/409392", "https://data.delijn.be/stops/409393"], ["https://data.delijn.be/stops/402382", "https://data.delijn.be/stops/402453"], ["https://data.delijn.be/stops/105758", "https://data.delijn.be/stops/105759"], ["https://data.delijn.be/stops/400276", "https://data.delijn.be/stops/400416"], ["https://data.delijn.be/stops/106098", "https://data.delijn.be/stops/106147"], ["https://data.delijn.be/stops/102503", "https://data.delijn.be/stops/400022"], ["https://data.delijn.be/stops/400771", "https://data.delijn.be/stops/410088"], ["https://data.delijn.be/stops/400134", "https://data.delijn.be/stops/409155"], ["https://data.delijn.be/stops/301332", "https://data.delijn.be/stops/301333"], ["https://data.delijn.be/stops/402241", "https://data.delijn.be/stops/402334"], ["https://data.delijn.be/stops/204905", "https://data.delijn.be/stops/205218"], ["https://data.delijn.be/stops/308246", "https://data.delijn.be/stops/308250"], ["https://data.delijn.be/stops/306350", "https://data.delijn.be/stops/308813"], ["https://data.delijn.be/stops/102456", "https://data.delijn.be/stops/102466"], ["https://data.delijn.be/stops/303401", "https://data.delijn.be/stops/304827"], ["https://data.delijn.be/stops/204404", "https://data.delijn.be/stops/205197"], ["https://data.delijn.be/stops/403280", "https://data.delijn.be/stops/404146"], ["https://data.delijn.be/stops/106303", "https://data.delijn.be/stops/106307"], ["https://data.delijn.be/stops/506107", "https://data.delijn.be/stops/506112"], ["https://data.delijn.be/stops/302640", "https://data.delijn.be/stops/304098"], ["https://data.delijn.be/stops/203318", "https://data.delijn.be/stops/203319"], ["https://data.delijn.be/stops/200954", "https://data.delijn.be/stops/201628"], ["https://data.delijn.be/stops/504797", "https://data.delijn.be/stops/508451"], ["https://data.delijn.be/stops/502264", "https://data.delijn.be/stops/505704"], ["https://data.delijn.be/stops/303393", "https://data.delijn.be/stops/303394"], ["https://data.delijn.be/stops/504778", "https://data.delijn.be/stops/508498"], ["https://data.delijn.be/stops/400991", "https://data.delijn.be/stops/409140"], ["https://data.delijn.be/stops/505332", "https://data.delijn.be/stops/507734"], ["https://data.delijn.be/stops/401288", "https://data.delijn.be/stops/401290"], ["https://data.delijn.be/stops/303570", "https://data.delijn.be/stops/303571"], ["https://data.delijn.be/stops/508141", "https://data.delijn.be/stops/509884"], ["https://data.delijn.be/stops/204095", "https://data.delijn.be/stops/205208"], ["https://data.delijn.be/stops/105637", "https://data.delijn.be/stops/105638"], ["https://data.delijn.be/stops/410128", "https://data.delijn.be/stops/410129"], ["https://data.delijn.be/stops/102007", "https://data.delijn.be/stops/205493"], ["https://data.delijn.be/stops/105721", "https://data.delijn.be/stops/106563"], ["https://data.delijn.be/stops/300005", "https://data.delijn.be/stops/304505"], ["https://data.delijn.be/stops/501608", "https://data.delijn.be/stops/506608"], ["https://data.delijn.be/stops/101923", "https://data.delijn.be/stops/107021"], ["https://data.delijn.be/stops/200720", "https://data.delijn.be/stops/202641"], ["https://data.delijn.be/stops/101719", "https://data.delijn.be/stops/101721"], ["https://data.delijn.be/stops/405088", "https://data.delijn.be/stops/405751"], ["https://data.delijn.be/stops/204308", "https://data.delijn.be/stops/205448"], ["https://data.delijn.be/stops/106605", "https://data.delijn.be/stops/107123"], ["https://data.delijn.be/stops/206505", "https://data.delijn.be/stops/207504"], ["https://data.delijn.be/stops/200347", "https://data.delijn.be/stops/208404"], ["https://data.delijn.be/stops/501115", "https://data.delijn.be/stops/506732"], ["https://data.delijn.be/stops/201305", "https://data.delijn.be/stops/201600"], ["https://data.delijn.be/stops/203922", "https://data.delijn.be/stops/208695"], ["https://data.delijn.be/stops/208510", "https://data.delijn.be/stops/209510"], ["https://data.delijn.be/stops/304612", "https://data.delijn.be/stops/304630"], ["https://data.delijn.be/stops/302576", "https://data.delijn.be/stops/302580"], ["https://data.delijn.be/stops/101789", "https://data.delijn.be/stops/105613"], ["https://data.delijn.be/stops/408498", "https://data.delijn.be/stops/408504"], ["https://data.delijn.be/stops/506298", "https://data.delijn.be/stops/506299"], ["https://data.delijn.be/stops/500940", "https://data.delijn.be/stops/508894"], ["https://data.delijn.be/stops/406653", "https://data.delijn.be/stops/406657"], ["https://data.delijn.be/stops/503959", "https://data.delijn.be/stops/508959"], ["https://data.delijn.be/stops/508386", "https://data.delijn.be/stops/509771"], ["https://data.delijn.be/stops/300949", "https://data.delijn.be/stops/305397"], ["https://data.delijn.be/stops/305539", "https://data.delijn.be/stops/305583"], ["https://data.delijn.be/stops/107444", "https://data.delijn.be/stops/107447"], ["https://data.delijn.be/stops/302694", "https://data.delijn.be/stops/303612"], ["https://data.delijn.be/stops/304802", "https://data.delijn.be/stops/304810"], ["https://data.delijn.be/stops/404872", "https://data.delijn.be/stops/409149"], ["https://data.delijn.be/stops/303056", "https://data.delijn.be/stops/306108"], ["https://data.delijn.be/stops/303260", "https://data.delijn.be/stops/303261"], ["https://data.delijn.be/stops/502083", "https://data.delijn.be/stops/502640"], ["https://data.delijn.be/stops/200547", "https://data.delijn.be/stops/208680"], ["https://data.delijn.be/stops/400706", "https://data.delijn.be/stops/404374"], ["https://data.delijn.be/stops/201358", "https://data.delijn.be/stops/201485"], ["https://data.delijn.be/stops/202880", "https://data.delijn.be/stops/203877"], ["https://data.delijn.be/stops/106180", "https://data.delijn.be/stops/107438"], ["https://data.delijn.be/stops/301234", "https://data.delijn.be/stops/307908"], ["https://data.delijn.be/stops/200536", "https://data.delijn.be/stops/210132"], ["https://data.delijn.be/stops/300235", "https://data.delijn.be/stops/303893"], ["https://data.delijn.be/stops/408090", "https://data.delijn.be/stops/410161"], ["https://data.delijn.be/stops/407715", "https://data.delijn.be/stops/407725"], ["https://data.delijn.be/stops/403332", "https://data.delijn.be/stops/403348"], ["https://data.delijn.be/stops/200590", "https://data.delijn.be/stops/201584"], ["https://data.delijn.be/stops/304728", "https://data.delijn.be/stops/304730"], ["https://data.delijn.be/stops/504847", "https://data.delijn.be/stops/590010"], ["https://data.delijn.be/stops/406675", "https://data.delijn.be/stops/406691"], ["https://data.delijn.be/stops/501369", "https://data.delijn.be/stops/506369"], ["https://data.delijn.be/stops/402109", "https://data.delijn.be/stops/402334"], ["https://data.delijn.be/stops/206842", "https://data.delijn.be/stops/207919"], ["https://data.delijn.be/stops/101906", "https://data.delijn.be/stops/107113"], ["https://data.delijn.be/stops/303304", "https://data.delijn.be/stops/303309"], ["https://data.delijn.be/stops/404771", "https://data.delijn.be/stops/404786"], ["https://data.delijn.be/stops/300015", "https://data.delijn.be/stops/301974"], ["https://data.delijn.be/stops/403126", "https://data.delijn.be/stops/403352"], ["https://data.delijn.be/stops/203058", "https://data.delijn.be/stops/203280"], ["https://data.delijn.be/stops/105336", "https://data.delijn.be/stops/105337"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/201749"], ["https://data.delijn.be/stops/304303", "https://data.delijn.be/stops/306628"], ["https://data.delijn.be/stops/300788", "https://data.delijn.be/stops/306117"], ["https://data.delijn.be/stops/202297", "https://data.delijn.be/stops/211298"], ["https://data.delijn.be/stops/101273", "https://data.delijn.be/stops/103415"], ["https://data.delijn.be/stops/400537", "https://data.delijn.be/stops/400572"], ["https://data.delijn.be/stops/109091", "https://data.delijn.be/stops/109093"], ["https://data.delijn.be/stops/104262", "https://data.delijn.be/stops/105929"], ["https://data.delijn.be/stops/101067", "https://data.delijn.be/stops/101069"], ["https://data.delijn.be/stops/107202", "https://data.delijn.be/stops/406796"], ["https://data.delijn.be/stops/503225", "https://data.delijn.be/stops/503229"], ["https://data.delijn.be/stops/305101", "https://data.delijn.be/stops/305138"], ["https://data.delijn.be/stops/203979", "https://data.delijn.be/stops/205995"], ["https://data.delijn.be/stops/208571", "https://data.delijn.be/stops/209571"], ["https://data.delijn.be/stops/301602", "https://data.delijn.be/stops/306260"], ["https://data.delijn.be/stops/200962", "https://data.delijn.be/stops/201572"], ["https://data.delijn.be/stops/306724", "https://data.delijn.be/stops/306725"], ["https://data.delijn.be/stops/304364", "https://data.delijn.be/stops/304365"], ["https://data.delijn.be/stops/202236", "https://data.delijn.be/stops/202239"], ["https://data.delijn.be/stops/400492", "https://data.delijn.be/stops/400495"], ["https://data.delijn.be/stops/502031", "https://data.delijn.be/stops/507118"], ["https://data.delijn.be/stops/302314", "https://data.delijn.be/stops/307521"], ["https://data.delijn.be/stops/101387", "https://data.delijn.be/stops/101828"], ["https://data.delijn.be/stops/301153", "https://data.delijn.be/stops/301156"], ["https://data.delijn.be/stops/404368", "https://data.delijn.be/stops/409690"], ["https://data.delijn.be/stops/206986", "https://data.delijn.be/stops/207986"], ["https://data.delijn.be/stops/300012", "https://data.delijn.be/stops/300805"], ["https://data.delijn.be/stops/302717", "https://data.delijn.be/stops/302736"], ["https://data.delijn.be/stops/300283", "https://data.delijn.be/stops/300294"], ["https://data.delijn.be/stops/103973", "https://data.delijn.be/stops/104627"], ["https://data.delijn.be/stops/405293", "https://data.delijn.be/stops/405296"], ["https://data.delijn.be/stops/502541", "https://data.delijn.be/stops/507541"], ["https://data.delijn.be/stops/301520", "https://data.delijn.be/stops/301527"], ["https://data.delijn.be/stops/402878", "https://data.delijn.be/stops/306306"], ["https://data.delijn.be/stops/503233", "https://data.delijn.be/stops/503260"], ["https://data.delijn.be/stops/106919", "https://data.delijn.be/stops/107284"], ["https://data.delijn.be/stops/501521", "https://data.delijn.be/stops/506318"], ["https://data.delijn.be/stops/304965", "https://data.delijn.be/stops/304977"], ["https://data.delijn.be/stops/301536", "https://data.delijn.be/stops/304702"], ["https://data.delijn.be/stops/301924", "https://data.delijn.be/stops/307813"], ["https://data.delijn.be/stops/404628", "https://data.delijn.be/stops/410125"], ["https://data.delijn.be/stops/106764", "https://data.delijn.be/stops/106863"], ["https://data.delijn.be/stops/201151", "https://data.delijn.be/stops/202358"], ["https://data.delijn.be/stops/102287", "https://data.delijn.be/stops/102288"], ["https://data.delijn.be/stops/403046", "https://data.delijn.be/stops/403501"], ["https://data.delijn.be/stops/200804", "https://data.delijn.be/stops/201885"], ["https://data.delijn.be/stops/108379", "https://data.delijn.be/stops/108381"], ["https://data.delijn.be/stops/205103", "https://data.delijn.be/stops/205209"], ["https://data.delijn.be/stops/500953", "https://data.delijn.be/stops/508627"], ["https://data.delijn.be/stops/303663", "https://data.delijn.be/stops/304941"], ["https://data.delijn.be/stops/405700", "https://data.delijn.be/stops/405745"], ["https://data.delijn.be/stops/201216", "https://data.delijn.be/stops/201259"], ["https://data.delijn.be/stops/205703", "https://data.delijn.be/stops/205726"], ["https://data.delijn.be/stops/403116", "https://data.delijn.be/stops/403117"], ["https://data.delijn.be/stops/307987", "https://data.delijn.be/stops/307989"], ["https://data.delijn.be/stops/505791", "https://data.delijn.be/stops/509436"], ["https://data.delijn.be/stops/500053", "https://data.delijn.be/stops/502816"], ["https://data.delijn.be/stops/402321", "https://data.delijn.be/stops/402322"], ["https://data.delijn.be/stops/300794", "https://data.delijn.be/stops/300795"], ["https://data.delijn.be/stops/200384", "https://data.delijn.be/stops/211048"], ["https://data.delijn.be/stops/204717", "https://data.delijn.be/stops/205717"], ["https://data.delijn.be/stops/303288", "https://data.delijn.be/stops/303289"], ["https://data.delijn.be/stops/405282", "https://data.delijn.be/stops/409775"], ["https://data.delijn.be/stops/109728", "https://data.delijn.be/stops/401956"], ["https://data.delijn.be/stops/404724", "https://data.delijn.be/stops/404740"], ["https://data.delijn.be/stops/102671", "https://data.delijn.be/stops/105643"], ["https://data.delijn.be/stops/301730", "https://data.delijn.be/stops/301775"], ["https://data.delijn.be/stops/304013", "https://data.delijn.be/stops/307510"], ["https://data.delijn.be/stops/200822", "https://data.delijn.be/stops/201723"], ["https://data.delijn.be/stops/109886", "https://data.delijn.be/stops/109888"], ["https://data.delijn.be/stops/201933", "https://data.delijn.be/stops/203949"], ["https://data.delijn.be/stops/400686", "https://data.delijn.be/stops/404608"], ["https://data.delijn.be/stops/201714", "https://data.delijn.be/stops/203378"], ["https://data.delijn.be/stops/307796", "https://data.delijn.be/stops/307797"], ["https://data.delijn.be/stops/406619", "https://data.delijn.be/stops/406637"], ["https://data.delijn.be/stops/206279", "https://data.delijn.be/stops/206398"], ["https://data.delijn.be/stops/303300", "https://data.delijn.be/stops/303343"], ["https://data.delijn.be/stops/402123", "https://data.delijn.be/stops/409286"], ["https://data.delijn.be/stops/102093", "https://data.delijn.be/stops/109807"], ["https://data.delijn.be/stops/501290", "https://data.delijn.be/stops/501372"], ["https://data.delijn.be/stops/307011", "https://data.delijn.be/stops/307017"], ["https://data.delijn.be/stops/400514", "https://data.delijn.be/stops/410109"], ["https://data.delijn.be/stops/300379", "https://data.delijn.be/stops/300468"], ["https://data.delijn.be/stops/102620", "https://data.delijn.be/stops/103757"], ["https://data.delijn.be/stops/204634", "https://data.delijn.be/stops/204635"], ["https://data.delijn.be/stops/200434", "https://data.delijn.be/stops/201434"], ["https://data.delijn.be/stops/502165", "https://data.delijn.be/stops/507150"], ["https://data.delijn.be/stops/401846", "https://data.delijn.be/stops/401847"], ["https://data.delijn.be/stops/408272", "https://data.delijn.be/stops/408273"], ["https://data.delijn.be/stops/407934", "https://data.delijn.be/stops/407935"], ["https://data.delijn.be/stops/101315", "https://data.delijn.be/stops/105445"], ["https://data.delijn.be/stops/101524", "https://data.delijn.be/stops/108797"], ["https://data.delijn.be/stops/409382", "https://data.delijn.be/stops/409389"], ["https://data.delijn.be/stops/104768", "https://data.delijn.be/stops/108904"], ["https://data.delijn.be/stops/206175", "https://data.delijn.be/stops/207450"], ["https://data.delijn.be/stops/402737", "https://data.delijn.be/stops/405952"], ["https://data.delijn.be/stops/406198", "https://data.delijn.be/stops/406431"], ["https://data.delijn.be/stops/503643", "https://data.delijn.be/stops/505161"], ["https://data.delijn.be/stops/400102", "https://data.delijn.be/stops/409075"], ["https://data.delijn.be/stops/200113", "https://data.delijn.be/stops/211047"], ["https://data.delijn.be/stops/304887", "https://data.delijn.be/stops/306165"], ["https://data.delijn.be/stops/503475", "https://data.delijn.be/stops/504806"], ["https://data.delijn.be/stops/106615", "https://data.delijn.be/stops/106702"], ["https://data.delijn.be/stops/200766", "https://data.delijn.be/stops/208318"], ["https://data.delijn.be/stops/502483", "https://data.delijn.be/stops/507483"], ["https://data.delijn.be/stops/405394", "https://data.delijn.be/stops/408948"], ["https://data.delijn.be/stops/104027", "https://data.delijn.be/stops/106900"], ["https://data.delijn.be/stops/404670", "https://data.delijn.be/stops/408908"], ["https://data.delijn.be/stops/503782", "https://data.delijn.be/stops/508785"], ["https://data.delijn.be/stops/501401", "https://data.delijn.be/stops/501527"], ["https://data.delijn.be/stops/403837", "https://data.delijn.be/stops/403849"], ["https://data.delijn.be/stops/200199", "https://data.delijn.be/stops/202479"], ["https://data.delijn.be/stops/400691", "https://data.delijn.be/stops/409573"], ["https://data.delijn.be/stops/508036", "https://data.delijn.be/stops/508037"], ["https://data.delijn.be/stops/401026", "https://data.delijn.be/stops/402214"], ["https://data.delijn.be/stops/304583", "https://data.delijn.be/stops/304611"], ["https://data.delijn.be/stops/208613", "https://data.delijn.be/stops/208614"], ["https://data.delijn.be/stops/104706", "https://data.delijn.be/stops/107084"], ["https://data.delijn.be/stops/405684", "https://data.delijn.be/stops/406472"], ["https://data.delijn.be/stops/500558", "https://data.delijn.be/stops/506044"], ["https://data.delijn.be/stops/304773", "https://data.delijn.be/stops/308694"], ["https://data.delijn.be/stops/407016", "https://data.delijn.be/stops/407079"], ["https://data.delijn.be/stops/306679", "https://data.delijn.be/stops/306681"], ["https://data.delijn.be/stops/502694", "https://data.delijn.be/stops/507415"], ["https://data.delijn.be/stops/402897", "https://data.delijn.be/stops/402898"], ["https://data.delijn.be/stops/503240", "https://data.delijn.be/stops/503518"], ["https://data.delijn.be/stops/402261", "https://data.delijn.be/stops/402472"], ["https://data.delijn.be/stops/101376", "https://data.delijn.be/stops/106531"], ["https://data.delijn.be/stops/206358", "https://data.delijn.be/stops/207690"], ["https://data.delijn.be/stops/208631", "https://data.delijn.be/stops/208632"], ["https://data.delijn.be/stops/400639", "https://data.delijn.be/stops/400912"], ["https://data.delijn.be/stops/202661", "https://data.delijn.be/stops/210007"], ["https://data.delijn.be/stops/305193", "https://data.delijn.be/stops/307091"], ["https://data.delijn.be/stops/403104", "https://data.delijn.be/stops/403115"], ["https://data.delijn.be/stops/301783", "https://data.delijn.be/stops/301784"], ["https://data.delijn.be/stops/505729", "https://data.delijn.be/stops/505746"], ["https://data.delijn.be/stops/307964", "https://data.delijn.be/stops/307973"], ["https://data.delijn.be/stops/505141", "https://data.delijn.be/stops/505233"], ["https://data.delijn.be/stops/501373", "https://data.delijn.be/stops/501498"], ["https://data.delijn.be/stops/508685", "https://data.delijn.be/stops/508688"], ["https://data.delijn.be/stops/300926", "https://data.delijn.be/stops/300988"], ["https://data.delijn.be/stops/406155", "https://data.delijn.be/stops/406156"], ["https://data.delijn.be/stops/304019", "https://data.delijn.be/stops/304039"], ["https://data.delijn.be/stops/204148", "https://data.delijn.be/stops/204784"], ["https://data.delijn.be/stops/103698", "https://data.delijn.be/stops/103699"], ["https://data.delijn.be/stops/402221", "https://data.delijn.be/stops/402372"], ["https://data.delijn.be/stops/301772", "https://data.delijn.be/stops/301779"], ["https://data.delijn.be/stops/202694", "https://data.delijn.be/stops/203694"], ["https://data.delijn.be/stops/207752", "https://data.delijn.be/stops/207766"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/302874"], ["https://data.delijn.be/stops/405849", "https://data.delijn.be/stops/409412"], ["https://data.delijn.be/stops/206835", "https://data.delijn.be/stops/207835"], ["https://data.delijn.be/stops/508386", "https://data.delijn.be/stops/508403"], ["https://data.delijn.be/stops/410281", "https://data.delijn.be/stops/410282"], ["https://data.delijn.be/stops/101583", "https://data.delijn.be/stops/105449"], ["https://data.delijn.be/stops/301037", "https://data.delijn.be/stops/301076"], ["https://data.delijn.be/stops/105672", "https://data.delijn.be/stops/105803"], ["https://data.delijn.be/stops/307277", "https://data.delijn.be/stops/307873"], ["https://data.delijn.be/stops/505761", "https://data.delijn.be/stops/507763"], ["https://data.delijn.be/stops/104988", "https://data.delijn.be/stops/109695"], ["https://data.delijn.be/stops/108838", "https://data.delijn.be/stops/108840"], ["https://data.delijn.be/stops/206222", "https://data.delijn.be/stops/207854"], ["https://data.delijn.be/stops/102867", "https://data.delijn.be/stops/106443"], ["https://data.delijn.be/stops/501635", "https://data.delijn.be/stops/506255"], ["https://data.delijn.be/stops/101226", "https://data.delijn.be/stops/107804"], ["https://data.delijn.be/stops/508108", "https://data.delijn.be/stops/508525"], ["https://data.delijn.be/stops/207222", "https://data.delijn.be/stops/207863"], ["https://data.delijn.be/stops/202423", "https://data.delijn.be/stops/202424"], ["https://data.delijn.be/stops/506389", "https://data.delijn.be/stops/506390"], ["https://data.delijn.be/stops/406289", "https://data.delijn.be/stops/406442"], ["https://data.delijn.be/stops/405798", "https://data.delijn.be/stops/405817"], ["https://data.delijn.be/stops/302686", "https://data.delijn.be/stops/302691"], ["https://data.delijn.be/stops/205500", "https://data.delijn.be/stops/205544"], ["https://data.delijn.be/stops/307527", "https://data.delijn.be/stops/307528"], ["https://data.delijn.be/stops/106527", "https://data.delijn.be/stops/106528"], ["https://data.delijn.be/stops/101553", "https://data.delijn.be/stops/107301"], ["https://data.delijn.be/stops/108757", "https://data.delijn.be/stops/109549"], ["https://data.delijn.be/stops/405623", "https://data.delijn.be/stops/409258"], ["https://data.delijn.be/stops/103132", "https://data.delijn.be/stops/106666"], ["https://data.delijn.be/stops/400110", "https://data.delijn.be/stops/400146"], ["https://data.delijn.be/stops/408130", "https://data.delijn.be/stops/408131"], ["https://data.delijn.be/stops/406062", "https://data.delijn.be/stops/406089"], ["https://data.delijn.be/stops/102957", "https://data.delijn.be/stops/103763"], ["https://data.delijn.be/stops/102912", "https://data.delijn.be/stops/105060"], ["https://data.delijn.be/stops/205613", "https://data.delijn.be/stops/205648"], ["https://data.delijn.be/stops/106947", "https://data.delijn.be/stops/106948"], ["https://data.delijn.be/stops/504092", "https://data.delijn.be/stops/504846"], ["https://data.delijn.be/stops/107043", "https://data.delijn.be/stops/108247"], ["https://data.delijn.be/stops/301930", "https://data.delijn.be/stops/305606"], ["https://data.delijn.be/stops/401786", "https://data.delijn.be/stops/406048"], ["https://data.delijn.be/stops/302912", "https://data.delijn.be/stops/302914"], ["https://data.delijn.be/stops/302440", "https://data.delijn.be/stops/302449"], ["https://data.delijn.be/stops/208220", "https://data.delijn.be/stops/209773"], ["https://data.delijn.be/stops/304726", "https://data.delijn.be/stops/304851"], ["https://data.delijn.be/stops/101296", "https://data.delijn.be/stops/101298"], ["https://data.delijn.be/stops/102689", "https://data.delijn.be/stops/104398"], ["https://data.delijn.be/stops/300347", "https://data.delijn.be/stops/300353"], ["https://data.delijn.be/stops/304792", "https://data.delijn.be/stops/304800"], ["https://data.delijn.be/stops/200132", "https://data.delijn.be/stops/200491"], ["https://data.delijn.be/stops/504766", "https://data.delijn.be/stops/508524"], ["https://data.delijn.be/stops/302497", "https://data.delijn.be/stops/302785"], ["https://data.delijn.be/stops/208546", "https://data.delijn.be/stops/209546"], ["https://data.delijn.be/stops/200448", "https://data.delijn.be/stops/201071"], ["https://data.delijn.be/stops/401592", "https://data.delijn.be/stops/401596"], ["https://data.delijn.be/stops/201810", "https://data.delijn.be/stops/201834"], ["https://data.delijn.be/stops/504254", "https://data.delijn.be/stops/509253"], ["https://data.delijn.be/stops/305253", "https://data.delijn.be/stops/305287"], ["https://data.delijn.be/stops/300653", "https://data.delijn.be/stops/302462"], ["https://data.delijn.be/stops/202454", "https://data.delijn.be/stops/203454"], ["https://data.delijn.be/stops/101821", "https://data.delijn.be/stops/107068"], ["https://data.delijn.be/stops/103525", "https://data.delijn.be/stops/105595"], ["https://data.delijn.be/stops/201861", "https://data.delijn.be/stops/202892"], ["https://data.delijn.be/stops/405509", "https://data.delijn.be/stops/407786"], ["https://data.delijn.be/stops/504243", "https://data.delijn.be/stops/509444"], ["https://data.delijn.be/stops/300574", "https://data.delijn.be/stops/300584"], ["https://data.delijn.be/stops/501549", "https://data.delijn.be/stops/501559"], ["https://data.delijn.be/stops/401361", "https://data.delijn.be/stops/401363"], ["https://data.delijn.be/stops/106700", "https://data.delijn.be/stops/106702"], ["https://data.delijn.be/stops/400274", "https://data.delijn.be/stops/400359"], ["https://data.delijn.be/stops/300655", "https://data.delijn.be/stops/306885"], ["https://data.delijn.be/stops/101285", "https://data.delijn.be/stops/101291"], ["https://data.delijn.be/stops/105050", "https://data.delijn.be/stops/106710"], ["https://data.delijn.be/stops/200095", "https://data.delijn.be/stops/200482"], ["https://data.delijn.be/stops/106847", "https://data.delijn.be/stops/106851"], ["https://data.delijn.be/stops/402222", "https://data.delijn.be/stops/409642"], ["https://data.delijn.be/stops/502697", "https://data.delijn.be/stops/505356"], ["https://data.delijn.be/stops/401157", "https://data.delijn.be/stops/404285"], ["https://data.delijn.be/stops/107598", "https://data.delijn.be/stops/107659"], ["https://data.delijn.be/stops/204984", "https://data.delijn.be/stops/205984"], ["https://data.delijn.be/stops/304041", "https://data.delijn.be/stops/306810"], ["https://data.delijn.be/stops/401767", "https://data.delijn.be/stops/401824"], ["https://data.delijn.be/stops/502134", "https://data.delijn.be/stops/502242"], ["https://data.delijn.be/stops/403435", "https://data.delijn.be/stops/403498"], ["https://data.delijn.be/stops/300850", "https://data.delijn.be/stops/300890"], ["https://data.delijn.be/stops/305968", "https://data.delijn.be/stops/307621"], ["https://data.delijn.be/stops/204001", "https://data.delijn.be/stops/207399"], ["https://data.delijn.be/stops/408531", "https://data.delijn.be/stops/408775"], ["https://data.delijn.be/stops/408538", "https://data.delijn.be/stops/408684"], ["https://data.delijn.be/stops/300287", "https://data.delijn.be/stops/307476"], ["https://data.delijn.be/stops/303438", "https://data.delijn.be/stops/303458"], ["https://data.delijn.be/stops/502512", "https://data.delijn.be/stops/505627"], ["https://data.delijn.be/stops/402579", "https://data.delijn.be/stops/410212"], ["https://data.delijn.be/stops/404916", "https://data.delijn.be/stops/404918"], ["https://data.delijn.be/stops/307561", "https://data.delijn.be/stops/307582"], ["https://data.delijn.be/stops/300626", "https://data.delijn.be/stops/300629"], ["https://data.delijn.be/stops/107369", "https://data.delijn.be/stops/107372"], ["https://data.delijn.be/stops/302984", "https://data.delijn.be/stops/306708"], ["https://data.delijn.be/stops/105074", "https://data.delijn.be/stops/105076"], ["https://data.delijn.be/stops/200848", "https://data.delijn.be/stops/208654"], ["https://data.delijn.be/stops/104793", "https://data.delijn.be/stops/105101"], ["https://data.delijn.be/stops/102790", "https://data.delijn.be/stops/105760"], ["https://data.delijn.be/stops/405698", "https://data.delijn.be/stops/405999"], ["https://data.delijn.be/stops/404729", "https://data.delijn.be/stops/404835"], ["https://data.delijn.be/stops/504068", "https://data.delijn.be/stops/509112"], ["https://data.delijn.be/stops/204758", "https://data.delijn.be/stops/205732"], ["https://data.delijn.be/stops/204581", "https://data.delijn.be/stops/205168"], ["https://data.delijn.be/stops/202532", "https://data.delijn.be/stops/203965"], ["https://data.delijn.be/stops/200129", "https://data.delijn.be/stops/201204"], ["https://data.delijn.be/stops/104107", "https://data.delijn.be/stops/108760"], ["https://data.delijn.be/stops/103036", "https://data.delijn.be/stops/106405"], ["https://data.delijn.be/stops/301122", "https://data.delijn.be/stops/301134"], ["https://data.delijn.be/stops/302449", "https://data.delijn.be/stops/302451"], ["https://data.delijn.be/stops/302275", "https://data.delijn.be/stops/304343"], ["https://data.delijn.be/stops/400952", "https://data.delijn.be/stops/406680"], ["https://data.delijn.be/stops/302624", "https://data.delijn.be/stops/308117"], ["https://data.delijn.be/stops/303191", "https://data.delijn.be/stops/303196"], ["https://data.delijn.be/stops/405937", "https://data.delijn.be/stops/405943"], ["https://data.delijn.be/stops/107121", "https://data.delijn.be/stops/108908"], ["https://data.delijn.be/stops/107647", "https://data.delijn.be/stops/108957"], ["https://data.delijn.be/stops/108394", "https://data.delijn.be/stops/108396"], ["https://data.delijn.be/stops/308510", "https://data.delijn.be/stops/308514"], ["https://data.delijn.be/stops/200753", "https://data.delijn.be/stops/209251"], ["https://data.delijn.be/stops/300524", "https://data.delijn.be/stops/307828"], ["https://data.delijn.be/stops/300010", "https://data.delijn.be/stops/304249"], ["https://data.delijn.be/stops/209603", "https://data.delijn.be/stops/307742"], ["https://data.delijn.be/stops/308288", "https://data.delijn.be/stops/308293"], ["https://data.delijn.be/stops/400724", "https://data.delijn.be/stops/400782"], ["https://data.delijn.be/stops/200755", "https://data.delijn.be/stops/505973"], ["https://data.delijn.be/stops/101133", "https://data.delijn.be/stops/107805"], ["https://data.delijn.be/stops/205463", "https://data.delijn.be/stops/205465"], ["https://data.delijn.be/stops/502666", "https://data.delijn.be/stops/505018"], ["https://data.delijn.be/stops/300055", "https://data.delijn.be/stops/306790"], ["https://data.delijn.be/stops/103679", "https://data.delijn.be/stops/106196"], ["https://data.delijn.be/stops/502680", "https://data.delijn.be/stops/505675"], ["https://data.delijn.be/stops/503858", "https://data.delijn.be/stops/508858"], ["https://data.delijn.be/stops/301333", "https://data.delijn.be/stops/301335"], ["https://data.delijn.be/stops/200850", "https://data.delijn.be/stops/209653"], ["https://data.delijn.be/stops/506397", "https://data.delijn.be/stops/506401"], ["https://data.delijn.be/stops/503416", "https://data.delijn.be/stops/509920"], ["https://data.delijn.be/stops/302454", "https://data.delijn.be/stops/304732"], ["https://data.delijn.be/stops/301610", "https://data.delijn.be/stops/304257"], ["https://data.delijn.be/stops/108949", "https://data.delijn.be/stops/108951"], ["https://data.delijn.be/stops/209705", "https://data.delijn.be/stops/218017"], ["https://data.delijn.be/stops/205385", "https://data.delijn.be/stops/205386"], ["https://data.delijn.be/stops/200105", "https://data.delijn.be/stops/200429"], ["https://data.delijn.be/stops/502326", "https://data.delijn.be/stops/507336"], ["https://data.delijn.be/stops/402181", "https://data.delijn.be/stops/402194"], ["https://data.delijn.be/stops/504035", "https://data.delijn.be/stops/504106"], ["https://data.delijn.be/stops/300148", "https://data.delijn.be/stops/307849"], ["https://data.delijn.be/stops/502411", "https://data.delijn.be/stops/507581"], ["https://data.delijn.be/stops/506097", "https://data.delijn.be/stops/507209"], ["https://data.delijn.be/stops/504501", "https://data.delijn.be/stops/504503"], ["https://data.delijn.be/stops/403424", "https://data.delijn.be/stops/410223"], ["https://data.delijn.be/stops/503491", "https://data.delijn.be/stops/505716"], ["https://data.delijn.be/stops/302605", "https://data.delijn.be/stops/306404"], ["https://data.delijn.be/stops/506086", "https://data.delijn.be/stops/506088"], ["https://data.delijn.be/stops/106799", "https://data.delijn.be/stops/106800"], ["https://data.delijn.be/stops/402793", "https://data.delijn.be/stops/402796"], ["https://data.delijn.be/stops/204717", "https://data.delijn.be/stops/205364"], ["https://data.delijn.be/stops/206494", "https://data.delijn.be/stops/207495"], ["https://data.delijn.be/stops/104448", "https://data.delijn.be/stops/104449"], ["https://data.delijn.be/stops/401776", "https://data.delijn.be/stops/401791"], ["https://data.delijn.be/stops/205058", "https://data.delijn.be/stops/205059"], ["https://data.delijn.be/stops/106011", "https://data.delijn.be/stops/106012"], ["https://data.delijn.be/stops/306867", "https://data.delijn.be/stops/306868"], ["https://data.delijn.be/stops/200466", "https://data.delijn.be/stops/208957"], ["https://data.delijn.be/stops/101752", "https://data.delijn.be/stops/103068"], ["https://data.delijn.be/stops/206811", "https://data.delijn.be/stops/207256"], ["https://data.delijn.be/stops/406278", "https://data.delijn.be/stops/406279"], ["https://data.delijn.be/stops/200838", "https://data.delijn.be/stops/203299"], ["https://data.delijn.be/stops/508690", "https://data.delijn.be/stops/509512"], ["https://data.delijn.be/stops/101469", "https://data.delijn.be/stops/101470"], ["https://data.delijn.be/stops/200369", "https://data.delijn.be/stops/201369"], ["https://data.delijn.be/stops/101820", "https://data.delijn.be/stops/105310"], ["https://data.delijn.be/stops/206256", "https://data.delijn.be/stops/206811"], ["https://data.delijn.be/stops/208485", "https://data.delijn.be/stops/209484"], ["https://data.delijn.be/stops/406350", "https://data.delijn.be/stops/410319"], ["https://data.delijn.be/stops/308079", "https://data.delijn.be/stops/308740"], ["https://data.delijn.be/stops/502031", "https://data.delijn.be/stops/502736"], ["https://data.delijn.be/stops/505070", "https://data.delijn.be/stops/505072"], ["https://data.delijn.be/stops/102424", "https://data.delijn.be/stops/104258"], ["https://data.delijn.be/stops/103624", "https://data.delijn.be/stops/107733"], ["https://data.delijn.be/stops/200850", "https://data.delijn.be/stops/200851"], ["https://data.delijn.be/stops/301470", "https://data.delijn.be/stops/301471"], ["https://data.delijn.be/stops/501236", "https://data.delijn.be/stops/506245"], ["https://data.delijn.be/stops/504374", "https://data.delijn.be/stops/504580"], ["https://data.delijn.be/stops/201110", "https://data.delijn.be/stops/202646"], ["https://data.delijn.be/stops/105250", "https://data.delijn.be/stops/105420"], ["https://data.delijn.be/stops/202167", "https://data.delijn.be/stops/203166"], ["https://data.delijn.be/stops/406902", "https://data.delijn.be/stops/406905"], ["https://data.delijn.be/stops/407660", "https://data.delijn.be/stops/407661"], ["https://data.delijn.be/stops/401092", "https://data.delijn.be/stops/401093"], ["https://data.delijn.be/stops/207348", "https://data.delijn.be/stops/207349"], ["https://data.delijn.be/stops/400793", "https://data.delijn.be/stops/409545"], ["https://data.delijn.be/stops/302374", "https://data.delijn.be/stops/302385"], ["https://data.delijn.be/stops/208773", "https://data.delijn.be/stops/208774"], ["https://data.delijn.be/stops/200923", "https://data.delijn.be/stops/202673"], ["https://data.delijn.be/stops/206523", "https://data.delijn.be/stops/207062"], ["https://data.delijn.be/stops/408639", "https://data.delijn.be/stops/408746"], ["https://data.delijn.be/stops/305144", "https://data.delijn.be/stops/305236"], ["https://data.delijn.be/stops/405270", "https://data.delijn.be/stops/405273"], ["https://data.delijn.be/stops/506729", "https://data.delijn.be/stops/507573"], ["https://data.delijn.be/stops/305354", "https://data.delijn.be/stops/308046"], ["https://data.delijn.be/stops/400908", "https://data.delijn.be/stops/400909"], ["https://data.delijn.be/stops/105738", "https://data.delijn.be/stops/109941"], ["https://data.delijn.be/stops/102468", "https://data.delijn.be/stops/102471"], ["https://data.delijn.be/stops/508952", "https://data.delijn.be/stops/509277"], ["https://data.delijn.be/stops/403177", "https://data.delijn.be/stops/410211"], ["https://data.delijn.be/stops/406395", "https://data.delijn.be/stops/302826"], ["https://data.delijn.be/stops/406157", "https://data.delijn.be/stops/406277"], ["https://data.delijn.be/stops/204631", "https://data.delijn.be/stops/205446"], ["https://data.delijn.be/stops/101905", "https://data.delijn.be/stops/102695"], ["https://data.delijn.be/stops/206002", "https://data.delijn.be/stops/207004"], ["https://data.delijn.be/stops/207190", "https://data.delijn.be/stops/308570"], ["https://data.delijn.be/stops/204313", "https://data.delijn.be/stops/205354"], ["https://data.delijn.be/stops/200803", "https://data.delijn.be/stops/201955"], ["https://data.delijn.be/stops/304037", "https://data.delijn.be/stops/307814"], ["https://data.delijn.be/stops/105139", "https://data.delijn.be/stops/305828"], ["https://data.delijn.be/stops/208091", "https://data.delijn.be/stops/208092"], ["https://data.delijn.be/stops/308616", "https://data.delijn.be/stops/308617"], ["https://data.delijn.be/stops/506112", "https://data.delijn.be/stops/506503"], ["https://data.delijn.be/stops/202848", "https://data.delijn.be/stops/203927"], ["https://data.delijn.be/stops/203018", "https://data.delijn.be/stops/211856"], ["https://data.delijn.be/stops/106308", "https://data.delijn.be/stops/106310"], ["https://data.delijn.be/stops/502132", "https://data.delijn.be/stops/507164"], ["https://data.delijn.be/stops/407098", "https://data.delijn.be/stops/407099"], ["https://data.delijn.be/stops/209143", "https://data.delijn.be/stops/209144"], ["https://data.delijn.be/stops/501348", "https://data.delijn.be/stops/506324"], ["https://data.delijn.be/stops/107042", "https://data.delijn.be/stops/107043"], ["https://data.delijn.be/stops/504134", "https://data.delijn.be/stops/509115"], ["https://data.delijn.be/stops/202932", "https://data.delijn.be/stops/203932"], ["https://data.delijn.be/stops/408037", "https://data.delijn.be/stops/408230"], ["https://data.delijn.be/stops/306384", "https://data.delijn.be/stops/307208"], ["https://data.delijn.be/stops/202976", "https://data.delijn.be/stops/203368"], ["https://data.delijn.be/stops/502645", "https://data.delijn.be/stops/507419"], ["https://data.delijn.be/stops/206925", "https://data.delijn.be/stops/207924"], ["https://data.delijn.be/stops/500560", "https://data.delijn.be/stops/506031"], ["https://data.delijn.be/stops/501545", "https://data.delijn.be/stops/506510"], ["https://data.delijn.be/stops/501361", "https://data.delijn.be/stops/501673"], ["https://data.delijn.be/stops/200686", "https://data.delijn.be/stops/201709"], ["https://data.delijn.be/stops/508541", "https://data.delijn.be/stops/508548"], ["https://data.delijn.be/stops/203140", "https://data.delijn.be/stops/203175"], ["https://data.delijn.be/stops/305983", "https://data.delijn.be/stops/305985"], ["https://data.delijn.be/stops/102679", "https://data.delijn.be/stops/108057"], ["https://data.delijn.be/stops/200894", "https://data.delijn.be/stops/202338"], ["https://data.delijn.be/stops/101461", "https://data.delijn.be/stops/101464"], ["https://data.delijn.be/stops/103069", "https://data.delijn.be/stops/105759"], ["https://data.delijn.be/stops/408283", "https://data.delijn.be/stops/408293"], ["https://data.delijn.be/stops/204685", "https://data.delijn.be/stops/205684"], ["https://data.delijn.be/stops/201723", "https://data.delijn.be/stops/202446"], ["https://data.delijn.be/stops/106853", "https://data.delijn.be/stops/109529"], ["https://data.delijn.be/stops/303436", "https://data.delijn.be/stops/303473"], ["https://data.delijn.be/stops/206328", "https://data.delijn.be/stops/308846"], ["https://data.delijn.be/stops/502179", "https://data.delijn.be/stops/507180"], ["https://data.delijn.be/stops/507499", "https://data.delijn.be/stops/507514"], ["https://data.delijn.be/stops/201258", "https://data.delijn.be/stops/203397"], ["https://data.delijn.be/stops/400434", "https://data.delijn.be/stops/406785"], ["https://data.delijn.be/stops/404992", "https://data.delijn.be/stops/406959"], ["https://data.delijn.be/stops/505713", "https://data.delijn.be/stops/508481"], ["https://data.delijn.be/stops/101850", "https://data.delijn.be/stops/106010"], ["https://data.delijn.be/stops/103323", "https://data.delijn.be/stops/104363"], ["https://data.delijn.be/stops/402525", "https://data.delijn.be/stops/402603"], ["https://data.delijn.be/stops/101298", "https://data.delijn.be/stops/105493"], ["https://data.delijn.be/stops/104078", "https://data.delijn.be/stops/105702"], ["https://data.delijn.be/stops/208731", "https://data.delijn.be/stops/209730"], ["https://data.delijn.be/stops/409094", "https://data.delijn.be/stops/409095"], ["https://data.delijn.be/stops/206636", "https://data.delijn.be/stops/207636"], ["https://data.delijn.be/stops/202029", "https://data.delijn.be/stops/203029"], ["https://data.delijn.be/stops/301518", "https://data.delijn.be/stops/301522"], ["https://data.delijn.be/stops/200698", "https://data.delijn.be/stops/203809"], ["https://data.delijn.be/stops/405154", "https://data.delijn.be/stops/405168"], ["https://data.delijn.be/stops/204192", "https://data.delijn.be/stops/205193"], ["https://data.delijn.be/stops/200397", "https://data.delijn.be/stops/201397"], ["https://data.delijn.be/stops/300436", "https://data.delijn.be/stops/300439"], ["https://data.delijn.be/stops/305254", "https://data.delijn.be/stops/305278"], ["https://data.delijn.be/stops/409114", "https://data.delijn.be/stops/409120"], ["https://data.delijn.be/stops/107179", "https://data.delijn.be/stops/107181"], ["https://data.delijn.be/stops/508371", "https://data.delijn.be/stops/509939"], ["https://data.delijn.be/stops/208526", "https://data.delijn.be/stops/219016"], ["https://data.delijn.be/stops/401072", "https://data.delijn.be/stops/401076"], ["https://data.delijn.be/stops/400733", "https://data.delijn.be/stops/404262"], ["https://data.delijn.be/stops/307826", "https://data.delijn.be/stops/308912"], ["https://data.delijn.be/stops/404164", "https://data.delijn.be/stops/404165"], ["https://data.delijn.be/stops/208146", "https://data.delijn.be/stops/209677"], ["https://data.delijn.be/stops/201384", "https://data.delijn.be/stops/211026"], ["https://data.delijn.be/stops/206168", "https://data.delijn.be/stops/207168"], ["https://data.delijn.be/stops/308148", "https://data.delijn.be/stops/308151"], ["https://data.delijn.be/stops/505118", "https://data.delijn.be/stops/509747"], ["https://data.delijn.be/stops/102431", "https://data.delijn.be/stops/102583"], ["https://data.delijn.be/stops/403917", "https://data.delijn.be/stops/403944"], ["https://data.delijn.be/stops/406280", "https://data.delijn.be/stops/406818"], ["https://data.delijn.be/stops/504516", "https://data.delijn.be/stops/505112"], ["https://data.delijn.be/stops/509066", "https://data.delijn.be/stops/509112"], ["https://data.delijn.be/stops/403295", "https://data.delijn.be/stops/403442"], ["https://data.delijn.be/stops/106243", "https://data.delijn.be/stops/106731"], ["https://data.delijn.be/stops/404071", "https://data.delijn.be/stops/404095"], ["https://data.delijn.be/stops/304929", "https://data.delijn.be/stops/304962"], ["https://data.delijn.be/stops/204222", "https://data.delijn.be/stops/205248"], ["https://data.delijn.be/stops/105417", "https://data.delijn.be/stops/105418"], ["https://data.delijn.be/stops/106769", "https://data.delijn.be/stops/106869"], ["https://data.delijn.be/stops/200072", "https://data.delijn.be/stops/203353"], ["https://data.delijn.be/stops/301225", "https://data.delijn.be/stops/301226"], ["https://data.delijn.be/stops/504396", "https://data.delijn.be/stops/504397"], ["https://data.delijn.be/stops/403284", "https://data.delijn.be/stops/403285"], ["https://data.delijn.be/stops/308444", "https://data.delijn.be/stops/308535"], ["https://data.delijn.be/stops/508344", "https://data.delijn.be/stops/508345"], ["https://data.delijn.be/stops/302554", "https://data.delijn.be/stops/302558"], ["https://data.delijn.be/stops/106962", "https://data.delijn.be/stops/107271"], ["https://data.delijn.be/stops/301294", "https://data.delijn.be/stops/301297"], ["https://data.delijn.be/stops/102255", "https://data.delijn.be/stops/102835"], ["https://data.delijn.be/stops/400159", "https://data.delijn.be/stops/409067"], ["https://data.delijn.be/stops/101801", "https://data.delijn.be/stops/101940"], ["https://data.delijn.be/stops/204489", "https://data.delijn.be/stops/205485"], ["https://data.delijn.be/stops/404559", "https://data.delijn.be/stops/409251"], ["https://data.delijn.be/stops/405285", "https://data.delijn.be/stops/405299"], ["https://data.delijn.be/stops/206678", "https://data.delijn.be/stops/208808"], ["https://data.delijn.be/stops/104606", "https://data.delijn.be/stops/104869"], ["https://data.delijn.be/stops/400037", "https://data.delijn.be/stops/400039"], ["https://data.delijn.be/stops/406142", "https://data.delijn.be/stops/406143"], ["https://data.delijn.be/stops/305628", "https://data.delijn.be/stops/305772"], ["https://data.delijn.be/stops/500950", "https://data.delijn.be/stops/504153"], ["https://data.delijn.be/stops/305249", "https://data.delijn.be/stops/305601"], ["https://data.delijn.be/stops/507491", "https://data.delijn.be/stops/507536"], ["https://data.delijn.be/stops/206876", "https://data.delijn.be/stops/207876"], ["https://data.delijn.be/stops/504698", "https://data.delijn.be/stops/505304"], ["https://data.delijn.be/stops/209705", "https://data.delijn.be/stops/209710"], ["https://data.delijn.be/stops/402081", "https://data.delijn.be/stops/402447"], ["https://data.delijn.be/stops/301872", "https://data.delijn.be/stops/301876"], ["https://data.delijn.be/stops/407448", "https://data.delijn.be/stops/407522"], ["https://data.delijn.be/stops/303519", "https://data.delijn.be/stops/307077"], ["https://data.delijn.be/stops/206654", "https://data.delijn.be/stops/206868"], ["https://data.delijn.be/stops/301352", "https://data.delijn.be/stops/304525"], ["https://data.delijn.be/stops/305584", "https://data.delijn.be/stops/307514"], ["https://data.delijn.be/stops/204314", "https://data.delijn.be/stops/205316"], ["https://data.delijn.be/stops/302999", "https://data.delijn.be/stops/306297"], ["https://data.delijn.be/stops/203252", "https://data.delijn.be/stops/203253"], ["https://data.delijn.be/stops/505834", "https://data.delijn.be/stops/506458"], ["https://data.delijn.be/stops/208335", "https://data.delijn.be/stops/208336"], ["https://data.delijn.be/stops/400907", "https://data.delijn.be/stops/400974"], ["https://data.delijn.be/stops/408753", "https://data.delijn.be/stops/408760"], ["https://data.delijn.be/stops/502524", "https://data.delijn.be/stops/507524"], ["https://data.delijn.be/stops/202676", "https://data.delijn.be/stops/202726"], ["https://data.delijn.be/stops/508850", "https://data.delijn.be/stops/510029"], ["https://data.delijn.be/stops/301395", "https://data.delijn.be/stops/306150"], ["https://data.delijn.be/stops/502627", "https://data.delijn.be/stops/502751"], ["https://data.delijn.be/stops/503207", "https://data.delijn.be/stops/508271"], ["https://data.delijn.be/stops/302269", "https://data.delijn.be/stops/302979"], ["https://data.delijn.be/stops/400851", "https://data.delijn.be/stops/409623"], ["https://data.delijn.be/stops/404439", "https://data.delijn.be/stops/404499"], ["https://data.delijn.be/stops/204185", "https://data.delijn.be/stops/204383"], ["https://data.delijn.be/stops/405920", "https://data.delijn.be/stops/405986"], ["https://data.delijn.be/stops/204546", "https://data.delijn.be/stops/205500"], ["https://data.delijn.be/stops/404601", "https://data.delijn.be/stops/406975"], ["https://data.delijn.be/stops/402520", "https://data.delijn.be/stops/407804"], ["https://data.delijn.be/stops/304772", "https://data.delijn.be/stops/304773"], ["https://data.delijn.be/stops/502662", "https://data.delijn.be/stops/507662"], ["https://data.delijn.be/stops/103337", "https://data.delijn.be/stops/107048"], ["https://data.delijn.be/stops/106394", "https://data.delijn.be/stops/106571"], ["https://data.delijn.be/stops/401524", "https://data.delijn.be/stops/402512"], ["https://data.delijn.be/stops/101450", "https://data.delijn.be/stops/102818"], ["https://data.delijn.be/stops/200879", "https://data.delijn.be/stops/200884"], ["https://data.delijn.be/stops/101174", "https://data.delijn.be/stops/103510"], ["https://data.delijn.be/stops/106093", "https://data.delijn.be/stops/109085"], ["https://data.delijn.be/stops/301992", "https://data.delijn.be/stops/308938"], ["https://data.delijn.be/stops/102470", "https://data.delijn.be/stops/105860"], ["https://data.delijn.be/stops/307307", "https://data.delijn.be/stops/307313"], ["https://data.delijn.be/stops/402096", "https://data.delijn.be/stops/402224"], ["https://data.delijn.be/stops/305442", "https://data.delijn.be/stops/305444"], ["https://data.delijn.be/stops/101167", "https://data.delijn.be/stops/102705"], ["https://data.delijn.be/stops/303842", "https://data.delijn.be/stops/303863"], ["https://data.delijn.be/stops/200716", "https://data.delijn.be/stops/202123"], ["https://data.delijn.be/stops/204564", "https://data.delijn.be/stops/204565"], ["https://data.delijn.be/stops/204371", "https://data.delijn.be/stops/204762"], ["https://data.delijn.be/stops/504128", "https://data.delijn.be/stops/504130"], ["https://data.delijn.be/stops/200139", "https://data.delijn.be/stops/201140"], ["https://data.delijn.be/stops/200620", "https://data.delijn.be/stops/210086"], ["https://data.delijn.be/stops/206303", "https://data.delijn.be/stops/206632"], ["https://data.delijn.be/stops/407704", "https://data.delijn.be/stops/407705"], ["https://data.delijn.be/stops/206568", "https://data.delijn.be/stops/207424"], ["https://data.delijn.be/stops/301638", "https://data.delijn.be/stops/306155"], ["https://data.delijn.be/stops/201010", "https://data.delijn.be/stops/210020"], ["https://data.delijn.be/stops/200814", "https://data.delijn.be/stops/208964"], ["https://data.delijn.be/stops/501191", "https://data.delijn.be/stops/506196"], ["https://data.delijn.be/stops/302022", "https://data.delijn.be/stops/302025"], ["https://data.delijn.be/stops/301398", "https://data.delijn.be/stops/301399"], ["https://data.delijn.be/stops/500196", "https://data.delijn.be/stops/501050"], ["https://data.delijn.be/stops/300515", "https://data.delijn.be/stops/307829"], ["https://data.delijn.be/stops/300849", "https://data.delijn.be/stops/300890"], ["https://data.delijn.be/stops/408310", "https://data.delijn.be/stops/408311"], ["https://data.delijn.be/stops/504019", "https://data.delijn.be/stops/508474"], ["https://data.delijn.be/stops/108351", "https://data.delijn.be/stops/108354"], ["https://data.delijn.be/stops/108230", "https://data.delijn.be/stops/108240"], ["https://data.delijn.be/stops/102109", "https://data.delijn.be/stops/103467"], ["https://data.delijn.be/stops/503376", "https://data.delijn.be/stops/503445"], ["https://data.delijn.be/stops/108926", "https://data.delijn.be/stops/108927"], ["https://data.delijn.be/stops/406524", "https://data.delijn.be/stops/406603"], ["https://data.delijn.be/stops/503486", "https://data.delijn.be/stops/508491"], ["https://data.delijn.be/stops/503894", "https://data.delijn.be/stops/503895"], ["https://data.delijn.be/stops/502010", "https://data.delijn.be/stops/507010"], ["https://data.delijn.be/stops/206876", "https://data.delijn.be/stops/207008"], ["https://data.delijn.be/stops/509765", "https://data.delijn.be/stops/509793"], ["https://data.delijn.be/stops/504166", "https://data.delijn.be/stops/504990"], ["https://data.delijn.be/stops/202577", "https://data.delijn.be/stops/211851"], ["https://data.delijn.be/stops/205649", "https://data.delijn.be/stops/205650"], ["https://data.delijn.be/stops/502396", "https://data.delijn.be/stops/507396"], ["https://data.delijn.be/stops/505994", "https://data.delijn.be/stops/508829"], ["https://data.delijn.be/stops/507673", "https://data.delijn.be/stops/509892"], ["https://data.delijn.be/stops/200157", "https://data.delijn.be/stops/205243"], ["https://data.delijn.be/stops/402313", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/501301", "https://data.delijn.be/stops/506318"], ["https://data.delijn.be/stops/105729", "https://data.delijn.be/stops/105731"], ["https://data.delijn.be/stops/401356", "https://data.delijn.be/stops/401370"], ["https://data.delijn.be/stops/505928", "https://data.delijn.be/stops/509245"], ["https://data.delijn.be/stops/107658", "https://data.delijn.be/stops/109861"], ["https://data.delijn.be/stops/501693", "https://data.delijn.be/stops/506436"], ["https://data.delijn.be/stops/403767", "https://data.delijn.be/stops/403874"], ["https://data.delijn.be/stops/401214", "https://data.delijn.be/stops/401273"], ["https://data.delijn.be/stops/403732", "https://data.delijn.be/stops/403735"], ["https://data.delijn.be/stops/301537", "https://data.delijn.be/stops/301545"], ["https://data.delijn.be/stops/503566", "https://data.delijn.be/stops/508542"], ["https://data.delijn.be/stops/400362", "https://data.delijn.be/stops/400399"], ["https://data.delijn.be/stops/104778", "https://data.delijn.be/stops/108118"], ["https://data.delijn.be/stops/403295", "https://data.delijn.be/stops/403304"], ["https://data.delijn.be/stops/101827", "https://data.delijn.be/stops/102391"], ["https://data.delijn.be/stops/103208", "https://data.delijn.be/stops/104081"], ["https://data.delijn.be/stops/400990", "https://data.delijn.be/stops/409141"], ["https://data.delijn.be/stops/306595", "https://data.delijn.be/stops/306599"], ["https://data.delijn.be/stops/205049", "https://data.delijn.be/stops/205704"], ["https://data.delijn.be/stops/503481", "https://data.delijn.be/stops/505718"], ["https://data.delijn.be/stops/404652", "https://data.delijn.be/stops/404653"], ["https://data.delijn.be/stops/405658", "https://data.delijn.be/stops/408600"], ["https://data.delijn.be/stops/208331", "https://data.delijn.be/stops/209331"], ["https://data.delijn.be/stops/505025", "https://data.delijn.be/stops/505754"], ["https://data.delijn.be/stops/106113", "https://data.delijn.be/stops/109085"], ["https://data.delijn.be/stops/302268", "https://data.delijn.be/stops/304314"], ["https://data.delijn.be/stops/301868", "https://data.delijn.be/stops/301869"], ["https://data.delijn.be/stops/107263", "https://data.delijn.be/stops/107264"], ["https://data.delijn.be/stops/301816", "https://data.delijn.be/stops/305313"], ["https://data.delijn.be/stops/206657", "https://data.delijn.be/stops/207658"], ["https://data.delijn.be/stops/503543", "https://data.delijn.be/stops/508548"], ["https://data.delijn.be/stops/304578", "https://data.delijn.be/stops/304586"], ["https://data.delijn.be/stops/302093", "https://data.delijn.be/stops/302094"], ["https://data.delijn.be/stops/107662", "https://data.delijn.be/stops/107663"], ["https://data.delijn.be/stops/208957", "https://data.delijn.be/stops/209957"], ["https://data.delijn.be/stops/407067", "https://data.delijn.be/stops/407778"], ["https://data.delijn.be/stops/102385", "https://data.delijn.be/stops/104315"], ["https://data.delijn.be/stops/504027", "https://data.delijn.be/stops/504748"], ["https://data.delijn.be/stops/301959", "https://data.delijn.be/stops/301982"], ["https://data.delijn.be/stops/501094", "https://data.delijn.be/stops/506090"], ["https://data.delijn.be/stops/103076", "https://data.delijn.be/stops/107707"], ["https://data.delijn.be/stops/206168", "https://data.delijn.be/stops/303401"], ["https://data.delijn.be/stops/104454", "https://data.delijn.be/stops/104478"], ["https://data.delijn.be/stops/205066", "https://data.delijn.be/stops/205091"], ["https://data.delijn.be/stops/400504", "https://data.delijn.be/stops/403898"], ["https://data.delijn.be/stops/509266", "https://data.delijn.be/stops/509268"], ["https://data.delijn.be/stops/403364", "https://data.delijn.be/stops/403521"], ["https://data.delijn.be/stops/101845", "https://data.delijn.be/stops/102835"], ["https://data.delijn.be/stops/204072", "https://data.delijn.be/stops/205186"], ["https://data.delijn.be/stops/302564", "https://data.delijn.be/stops/302652"], ["https://data.delijn.be/stops/306703", "https://data.delijn.be/stops/306706"], ["https://data.delijn.be/stops/303563", "https://data.delijn.be/stops/303564"], ["https://data.delijn.be/stops/108507", "https://data.delijn.be/stops/108508"], ["https://data.delijn.be/stops/200005", "https://data.delijn.be/stops/200994"], ["https://data.delijn.be/stops/308741", "https://data.delijn.be/stops/308743"], ["https://data.delijn.be/stops/303729", "https://data.delijn.be/stops/303738"], ["https://data.delijn.be/stops/107518", "https://data.delijn.be/stops/107519"], ["https://data.delijn.be/stops/300697", "https://data.delijn.be/stops/300735"], ["https://data.delijn.be/stops/302118", "https://data.delijn.be/stops/302119"], ["https://data.delijn.be/stops/307410", "https://data.delijn.be/stops/307411"], ["https://data.delijn.be/stops/108505", "https://data.delijn.be/stops/108506"], ["https://data.delijn.be/stops/300486", "https://data.delijn.be/stops/302867"], ["https://data.delijn.be/stops/102825", "https://data.delijn.be/stops/104075"], ["https://data.delijn.be/stops/101649", "https://data.delijn.be/stops/104255"], ["https://data.delijn.be/stops/503041", "https://data.delijn.be/stops/504815"], ["https://data.delijn.be/stops/207709", "https://data.delijn.be/stops/207748"], ["https://data.delijn.be/stops/209125", "https://data.delijn.be/stops/209126"], ["https://data.delijn.be/stops/201281", "https://data.delijn.be/stops/209707"], ["https://data.delijn.be/stops/502491", "https://data.delijn.be/stops/507492"], ["https://data.delijn.be/stops/209539", "https://data.delijn.be/stops/209541"], ["https://data.delijn.be/stops/300394", "https://data.delijn.be/stops/303118"], ["https://data.delijn.be/stops/106171", "https://data.delijn.be/stops/106450"], ["https://data.delijn.be/stops/202535", "https://data.delijn.be/stops/205173"], ["https://data.delijn.be/stops/107694", "https://data.delijn.be/stops/109996"], ["https://data.delijn.be/stops/408245", "https://data.delijn.be/stops/307452"], ["https://data.delijn.be/stops/200675", "https://data.delijn.be/stops/201466"], ["https://data.delijn.be/stops/306338", "https://data.delijn.be/stops/306771"], ["https://data.delijn.be/stops/101485", "https://data.delijn.be/stops/102816"], ["https://data.delijn.be/stops/210607", "https://data.delijn.be/stops/211850"], ["https://data.delijn.be/stops/204240", "https://data.delijn.be/stops/204479"], ["https://data.delijn.be/stops/403456", "https://data.delijn.be/stops/410287"], ["https://data.delijn.be/stops/404848", "https://data.delijn.be/stops/407738"], ["https://data.delijn.be/stops/102164", "https://data.delijn.be/stops/104394"], ["https://data.delijn.be/stops/206836", "https://data.delijn.be/stops/207577"], ["https://data.delijn.be/stops/103481", "https://data.delijn.be/stops/103483"], ["https://data.delijn.be/stops/305591", "https://data.delijn.be/stops/307514"], ["https://data.delijn.be/stops/203570", "https://data.delijn.be/stops/211033"], ["https://data.delijn.be/stops/509599", "https://data.delijn.be/stops/509607"], ["https://data.delijn.be/stops/107020", "https://data.delijn.be/stops/108620"], ["https://data.delijn.be/stops/207080", "https://data.delijn.be/stops/207082"], ["https://data.delijn.be/stops/505814", "https://data.delijn.be/stops/508311"], ["https://data.delijn.be/stops/106140", "https://data.delijn.be/stops/106142"], ["https://data.delijn.be/stops/305139", "https://data.delijn.be/stops/308090"], ["https://data.delijn.be/stops/210098", "https://data.delijn.be/stops/211098"], ["https://data.delijn.be/stops/502445", "https://data.delijn.be/stops/502634"], ["https://data.delijn.be/stops/106894", "https://data.delijn.be/stops/107216"], ["https://data.delijn.be/stops/102272", "https://data.delijn.be/stops/205608"], ["https://data.delijn.be/stops/405034", "https://data.delijn.be/stops/307454"], ["https://data.delijn.be/stops/201956", "https://data.delijn.be/stops/202478"], ["https://data.delijn.be/stops/404642", "https://data.delijn.be/stops/406929"], ["https://data.delijn.be/stops/408422", "https://data.delijn.be/stops/408423"], ["https://data.delijn.be/stops/103114", "https://data.delijn.be/stops/106818"], ["https://data.delijn.be/stops/109402", "https://data.delijn.be/stops/109422"], ["https://data.delijn.be/stops/102153", "https://data.delijn.be/stops/108835"], ["https://data.delijn.be/stops/109058", "https://data.delijn.be/stops/109059"], ["https://data.delijn.be/stops/105037", "https://data.delijn.be/stops/105038"], ["https://data.delijn.be/stops/407630", "https://data.delijn.be/stops/407633"], ["https://data.delijn.be/stops/204224", "https://data.delijn.be/stops/205224"], ["https://data.delijn.be/stops/407608", "https://data.delijn.be/stops/407767"], ["https://data.delijn.be/stops/507758", "https://data.delijn.be/stops/507763"], ["https://data.delijn.be/stops/405214", "https://data.delijn.be/stops/405254"], ["https://data.delijn.be/stops/200753", "https://data.delijn.be/stops/201774"], ["https://data.delijn.be/stops/503478", "https://data.delijn.be/stops/508478"], ["https://data.delijn.be/stops/209361", "https://data.delijn.be/stops/209399"], ["https://data.delijn.be/stops/208541", "https://data.delijn.be/stops/209543"], ["https://data.delijn.be/stops/203498", "https://data.delijn.be/stops/205792"], ["https://data.delijn.be/stops/108341", "https://data.delijn.be/stops/108342"], ["https://data.delijn.be/stops/503456", "https://data.delijn.be/stops/508214"], ["https://data.delijn.be/stops/101204", "https://data.delijn.be/stops/104926"], ["https://data.delijn.be/stops/509235", "https://data.delijn.be/stops/509240"], ["https://data.delijn.be/stops/505404", "https://data.delijn.be/stops/506198"], ["https://data.delijn.be/stops/300498", "https://data.delijn.be/stops/302098"], ["https://data.delijn.be/stops/101019", "https://data.delijn.be/stops/105910"], ["https://data.delijn.be/stops/305004", "https://data.delijn.be/stops/305030"], ["https://data.delijn.be/stops/409588", "https://data.delijn.be/stops/409598"], ["https://data.delijn.be/stops/301154", "https://data.delijn.be/stops/307717"], ["https://data.delijn.be/stops/505956", "https://data.delijn.be/stops/508281"], ["https://data.delijn.be/stops/502925", "https://data.delijn.be/stops/507516"], ["https://data.delijn.be/stops/104469", "https://data.delijn.be/stops/104471"], ["https://data.delijn.be/stops/201582", "https://data.delijn.be/stops/211200"], ["https://data.delijn.be/stops/301692", "https://data.delijn.be/stops/303746"], ["https://data.delijn.be/stops/208752", "https://data.delijn.be/stops/209696"], ["https://data.delijn.be/stops/200923", "https://data.delijn.be/stops/210033"], ["https://data.delijn.be/stops/300953", "https://data.delijn.be/stops/301943"], ["https://data.delijn.be/stops/102322", "https://data.delijn.be/stops/106461"], ["https://data.delijn.be/stops/400072", "https://data.delijn.be/stops/401976"], ["https://data.delijn.be/stops/401085", "https://data.delijn.be/stops/410023"], ["https://data.delijn.be/stops/409601", "https://data.delijn.be/stops/409630"], ["https://data.delijn.be/stops/408374", "https://data.delijn.be/stops/408375"], ["https://data.delijn.be/stops/304234", "https://data.delijn.be/stops/304515"], ["https://data.delijn.be/stops/502505", "https://data.delijn.be/stops/502511"], ["https://data.delijn.be/stops/307150", "https://data.delijn.be/stops/307151"], ["https://data.delijn.be/stops/403000", "https://data.delijn.be/stops/403001"], ["https://data.delijn.be/stops/301935", "https://data.delijn.be/stops/302911"], ["https://data.delijn.be/stops/202538", "https://data.delijn.be/stops/203538"], ["https://data.delijn.be/stops/408032", "https://data.delijn.be/stops/408053"], ["https://data.delijn.be/stops/202514", "https://data.delijn.be/stops/202515"], ["https://data.delijn.be/stops/502364", "https://data.delijn.be/stops/505010"], ["https://data.delijn.be/stops/304816", "https://data.delijn.be/stops/304839"], ["https://data.delijn.be/stops/206392", "https://data.delijn.be/stops/206393"], ["https://data.delijn.be/stops/108231", "https://data.delijn.be/stops/108726"], ["https://data.delijn.be/stops/305738", "https://data.delijn.be/stops/307118"], ["https://data.delijn.be/stops/202890", "https://data.delijn.be/stops/203890"], ["https://data.delijn.be/stops/408941", "https://data.delijn.be/stops/408943"], ["https://data.delijn.be/stops/400944", "https://data.delijn.be/stops/400945"], ["https://data.delijn.be/stops/200302", "https://data.delijn.be/stops/201302"], ["https://data.delijn.be/stops/503306", "https://data.delijn.be/stops/505999"], ["https://data.delijn.be/stops/304453", "https://data.delijn.be/stops/307089"], ["https://data.delijn.be/stops/208339", "https://data.delijn.be/stops/208340"], ["https://data.delijn.be/stops/105034", "https://data.delijn.be/stops/105219"], ["https://data.delijn.be/stops/405177", "https://data.delijn.be/stops/405252"], ["https://data.delijn.be/stops/105671", "https://data.delijn.be/stops/105705"], ["https://data.delijn.be/stops/410360", "https://data.delijn.be/stops/410399"], ["https://data.delijn.be/stops/104909", "https://data.delijn.be/stops/109652"], ["https://data.delijn.be/stops/305765", "https://data.delijn.be/stops/305768"], ["https://data.delijn.be/stops/202899", "https://data.delijn.be/stops/202902"], ["https://data.delijn.be/stops/300046", "https://data.delijn.be/stops/300063"], ["https://data.delijn.be/stops/408321", "https://data.delijn.be/stops/408348"], ["https://data.delijn.be/stops/203591", "https://data.delijn.be/stops/203592"], ["https://data.delijn.be/stops/308605", "https://data.delijn.be/stops/308606"], ["https://data.delijn.be/stops/503160", "https://data.delijn.be/stops/503172"], ["https://data.delijn.be/stops/206153", "https://data.delijn.be/stops/206154"], ["https://data.delijn.be/stops/106766", "https://data.delijn.be/stops/106866"], ["https://data.delijn.be/stops/504726", "https://data.delijn.be/stops/504730"], ["https://data.delijn.be/stops/209368", "https://data.delijn.be/stops/209374"], ["https://data.delijn.be/stops/503368", "https://data.delijn.be/stops/505856"], ["https://data.delijn.be/stops/209339", "https://data.delijn.be/stops/209376"], ["https://data.delijn.be/stops/303362", "https://data.delijn.be/stops/303363"], ["https://data.delijn.be/stops/200864", "https://data.delijn.be/stops/202332"], ["https://data.delijn.be/stops/406456", "https://data.delijn.be/stops/406478"], ["https://data.delijn.be/stops/407237", "https://data.delijn.be/stops/407512"], ["https://data.delijn.be/stops/202111", "https://data.delijn.be/stops/203111"], ["https://data.delijn.be/stops/206930", "https://data.delijn.be/stops/207574"], ["https://data.delijn.be/stops/102957", "https://data.delijn.be/stops/106882"], ["https://data.delijn.be/stops/206169", "https://data.delijn.be/stops/207170"], ["https://data.delijn.be/stops/402764", "https://data.delijn.be/stops/406545"], ["https://data.delijn.be/stops/200103", "https://data.delijn.be/stops/201363"], ["https://data.delijn.be/stops/104747", "https://data.delijn.be/stops/107333"], ["https://data.delijn.be/stops/201448", "https://data.delijn.be/stops/203352"], ["https://data.delijn.be/stops/506056", "https://data.delijn.be/stops/506284"], ["https://data.delijn.be/stops/202669", "https://data.delijn.be/stops/203273"], ["https://data.delijn.be/stops/105432", "https://data.delijn.be/stops/109839"], ["https://data.delijn.be/stops/502589", "https://data.delijn.be/stops/507588"], ["https://data.delijn.be/stops/306897", "https://data.delijn.be/stops/308723"], ["https://data.delijn.be/stops/201147", "https://data.delijn.be/stops/201169"], ["https://data.delijn.be/stops/101151", "https://data.delijn.be/stops/109621"], ["https://data.delijn.be/stops/201494", "https://data.delijn.be/stops/201495"], ["https://data.delijn.be/stops/509124", "https://data.delijn.be/stops/509132"], ["https://data.delijn.be/stops/202635", "https://data.delijn.be/stops/203635"], ["https://data.delijn.be/stops/502619", "https://data.delijn.be/stops/507032"], ["https://data.delijn.be/stops/407845", "https://data.delijn.be/stops/407890"], ["https://data.delijn.be/stops/306043", "https://data.delijn.be/stops/306044"], ["https://data.delijn.be/stops/304431", "https://data.delijn.be/stops/304451"], ["https://data.delijn.be/stops/206961", "https://data.delijn.be/stops/306070"], ["https://data.delijn.be/stops/101210", "https://data.delijn.be/stops/105495"], ["https://data.delijn.be/stops/302313", "https://data.delijn.be/stops/304796"], ["https://data.delijn.be/stops/503474", "https://data.delijn.be/stops/503644"], ["https://data.delijn.be/stops/301487", "https://data.delijn.be/stops/308072"], ["https://data.delijn.be/stops/108543", "https://data.delijn.be/stops/306590"], ["https://data.delijn.be/stops/105048", "https://data.delijn.be/stops/106704"], ["https://data.delijn.be/stops/206922", "https://data.delijn.be/stops/207031"], ["https://data.delijn.be/stops/406451", "https://data.delijn.be/stops/406494"], ["https://data.delijn.be/stops/403942", "https://data.delijn.be/stops/403950"], ["https://data.delijn.be/stops/401472", "https://data.delijn.be/stops/404838"], ["https://data.delijn.be/stops/303531", "https://data.delijn.be/stops/303569"], ["https://data.delijn.be/stops/408321", "https://data.delijn.be/stops/410160"], ["https://data.delijn.be/stops/306908", "https://data.delijn.be/stops/308724"], ["https://data.delijn.be/stops/590330", "https://data.delijn.be/stops/590331"], ["https://data.delijn.be/stops/109622", "https://data.delijn.be/stops/307235"], ["https://data.delijn.be/stops/304533", "https://data.delijn.be/stops/306207"], ["https://data.delijn.be/stops/403900", "https://data.delijn.be/stops/403986"], ["https://data.delijn.be/stops/109808", "https://data.delijn.be/stops/109809"], ["https://data.delijn.be/stops/305981", "https://data.delijn.be/stops/305984"], ["https://data.delijn.be/stops/206458", "https://data.delijn.be/stops/206464"], ["https://data.delijn.be/stops/103107", "https://data.delijn.be/stops/107730"], ["https://data.delijn.be/stops/103095", "https://data.delijn.be/stops/103353"], ["https://data.delijn.be/stops/503416", "https://data.delijn.be/stops/508437"], ["https://data.delijn.be/stops/105859", "https://data.delijn.be/stops/105861"], ["https://data.delijn.be/stops/507042", "https://data.delijn.be/stops/507391"], ["https://data.delijn.be/stops/201250", "https://data.delijn.be/stops/201474"], ["https://data.delijn.be/stops/208505", "https://data.delijn.be/stops/209503"], ["https://data.delijn.be/stops/203602", "https://data.delijn.be/stops/203603"], ["https://data.delijn.be/stops/204592", "https://data.delijn.be/stops/204594"], ["https://data.delijn.be/stops/109074", "https://data.delijn.be/stops/109076"], ["https://data.delijn.be/stops/106230", "https://data.delijn.be/stops/106324"], ["https://data.delijn.be/stops/504033", "https://data.delijn.be/stops/509035"], ["https://data.delijn.be/stops/504610", "https://data.delijn.be/stops/509609"], ["https://data.delijn.be/stops/501149", "https://data.delijn.be/stops/505521"], ["https://data.delijn.be/stops/106220", "https://data.delijn.be/stops/106321"], ["https://data.delijn.be/stops/202651", "https://data.delijn.be/stops/203651"], ["https://data.delijn.be/stops/506388", "https://data.delijn.be/stops/506500"], ["https://data.delijn.be/stops/505841", "https://data.delijn.be/stops/509396"], ["https://data.delijn.be/stops/206823", "https://data.delijn.be/stops/207824"], ["https://data.delijn.be/stops/409412", "https://data.delijn.be/stops/409770"], ["https://data.delijn.be/stops/203150", "https://data.delijn.be/stops/211043"], ["https://data.delijn.be/stops/403230", "https://data.delijn.be/stops/410280"], ["https://data.delijn.be/stops/208262", "https://data.delijn.be/stops/209262"], ["https://data.delijn.be/stops/206421", "https://data.delijn.be/stops/207422"], ["https://data.delijn.be/stops/506305", "https://data.delijn.be/stops/506337"], ["https://data.delijn.be/stops/409304", "https://data.delijn.be/stops/409307"], ["https://data.delijn.be/stops/208514", "https://data.delijn.be/stops/209684"], ["https://data.delijn.be/stops/306809", "https://data.delijn.be/stops/308945"], ["https://data.delijn.be/stops/301085", "https://data.delijn.be/stops/301106"], ["https://data.delijn.be/stops/400545", "https://data.delijn.be/stops/403194"], ["https://data.delijn.be/stops/405922", "https://data.delijn.be/stops/405925"], ["https://data.delijn.be/stops/300237", "https://data.delijn.be/stops/300239"], ["https://data.delijn.be/stops/402719", "https://data.delijn.be/stops/402728"], ["https://data.delijn.be/stops/102186", "https://data.delijn.be/stops/105266"], ["https://data.delijn.be/stops/406185", "https://data.delijn.be/stops/410401"], ["https://data.delijn.be/stops/402816", "https://data.delijn.be/stops/409446"], ["https://data.delijn.be/stops/202194", "https://data.delijn.be/stops/203194"], ["https://data.delijn.be/stops/404346", "https://data.delijn.be/stops/404355"], ["https://data.delijn.be/stops/207406", "https://data.delijn.be/stops/207407"], ["https://data.delijn.be/stops/300012", "https://data.delijn.be/stops/300780"], ["https://data.delijn.be/stops/507046", "https://data.delijn.be/stops/507047"], ["https://data.delijn.be/stops/208119", "https://data.delijn.be/stops/209120"], ["https://data.delijn.be/stops/108874", "https://data.delijn.be/stops/108876"], ["https://data.delijn.be/stops/403638", "https://data.delijn.be/stops/403720"], ["https://data.delijn.be/stops/505706", "https://data.delijn.be/stops/509228"], ["https://data.delijn.be/stops/203585", "https://data.delijn.be/stops/203586"], ["https://data.delijn.be/stops/301698", "https://data.delijn.be/stops/301720"], ["https://data.delijn.be/stops/101918", "https://data.delijn.be/stops/101919"], ["https://data.delijn.be/stops/405222", "https://data.delijn.be/stops/406276"], ["https://data.delijn.be/stops/302081", "https://data.delijn.be/stops/302092"], ["https://data.delijn.be/stops/108455", "https://data.delijn.be/stops/304920"], ["https://data.delijn.be/stops/301093", "https://data.delijn.be/stops/301228"], ["https://data.delijn.be/stops/403484", "https://data.delijn.be/stops/407463"], ["https://data.delijn.be/stops/102867", "https://data.delijn.be/stops/106508"], ["https://data.delijn.be/stops/109542", "https://data.delijn.be/stops/109700"], ["https://data.delijn.be/stops/303451", "https://data.delijn.be/stops/303452"], ["https://data.delijn.be/stops/102081", "https://data.delijn.be/stops/105407"], ["https://data.delijn.be/stops/208424", "https://data.delijn.be/stops/209162"], ["https://data.delijn.be/stops/205044", "https://data.delijn.be/stops/205483"], ["https://data.delijn.be/stops/504294", "https://data.delijn.be/stops/505827"], ["https://data.delijn.be/stops/206845", "https://data.delijn.be/stops/306677"], ["https://data.delijn.be/stops/103929", "https://data.delijn.be/stops/107244"], ["https://data.delijn.be/stops/502528", "https://data.delijn.be/stops/502556"], ["https://data.delijn.be/stops/403513", "https://data.delijn.be/stops/403559"], ["https://data.delijn.be/stops/405911", "https://data.delijn.be/stops/409681"], ["https://data.delijn.be/stops/200585", "https://data.delijn.be/stops/200588"], ["https://data.delijn.be/stops/204762", "https://data.delijn.be/stops/205183"], ["https://data.delijn.be/stops/301236", "https://data.delijn.be/stops/308290"], ["https://data.delijn.be/stops/401558", "https://data.delijn.be/stops/401559"], ["https://data.delijn.be/stops/200450", "https://data.delijn.be/stops/203538"], ["https://data.delijn.be/stops/103123", "https://data.delijn.be/stops/109171"], ["https://data.delijn.be/stops/104597", "https://data.delijn.be/stops/107428"], ["https://data.delijn.be/stops/106740", "https://data.delijn.be/stops/106741"], ["https://data.delijn.be/stops/202932", "https://data.delijn.be/stops/202933"], ["https://data.delijn.be/stops/202417", "https://data.delijn.be/stops/210409"], ["https://data.delijn.be/stops/106843", "https://data.delijn.be/stops/106845"], ["https://data.delijn.be/stops/307394", "https://data.delijn.be/stops/307399"], ["https://data.delijn.be/stops/101487", "https://data.delijn.be/stops/109708"], ["https://data.delijn.be/stops/400091", "https://data.delijn.be/stops/400153"], ["https://data.delijn.be/stops/206823", "https://data.delijn.be/stops/207533"], ["https://data.delijn.be/stops/101546", "https://data.delijn.be/stops/101547"], ["https://data.delijn.be/stops/406050", "https://data.delijn.be/stops/406388"], ["https://data.delijn.be/stops/208283", "https://data.delijn.be/stops/209282"], ["https://data.delijn.be/stops/301632", "https://data.delijn.be/stops/301636"], ["https://data.delijn.be/stops/403229", "https://data.delijn.be/stops/403230"], ["https://data.delijn.be/stops/203839", "https://data.delijn.be/stops/209427"], ["https://data.delijn.be/stops/507813", "https://data.delijn.be/stops/508003"], ["https://data.delijn.be/stops/101469", "https://data.delijn.be/stops/101959"], ["https://data.delijn.be/stops/307505", "https://data.delijn.be/stops/307506"], ["https://data.delijn.be/stops/302016", "https://data.delijn.be/stops/302017"], ["https://data.delijn.be/stops/503696", "https://data.delijn.be/stops/509975"], ["https://data.delijn.be/stops/400422", "https://data.delijn.be/stops/400432"], ["https://data.delijn.be/stops/504136", "https://data.delijn.be/stops/509143"], ["https://data.delijn.be/stops/107412", "https://data.delijn.be/stops/107413"], ["https://data.delijn.be/stops/407152", "https://data.delijn.be/stops/409877"], ["https://data.delijn.be/stops/105154", "https://data.delijn.be/stops/108761"], ["https://data.delijn.be/stops/202250", "https://data.delijn.be/stops/203249"], ["https://data.delijn.be/stops/406042", "https://data.delijn.be/stops/406043"], ["https://data.delijn.be/stops/408076", "https://data.delijn.be/stops/408082"], ["https://data.delijn.be/stops/401523", "https://data.delijn.be/stops/401561"], ["https://data.delijn.be/stops/501075", "https://data.delijn.be/stops/506075"], ["https://data.delijn.be/stops/300431", "https://data.delijn.be/stops/302661"], ["https://data.delijn.be/stops/106666", "https://data.delijn.be/stops/106668"], ["https://data.delijn.be/stops/404356", "https://data.delijn.be/stops/408796"], ["https://data.delijn.be/stops/104053", "https://data.delijn.be/stops/108414"], ["https://data.delijn.be/stops/305769", "https://data.delijn.be/stops/305786"], ["https://data.delijn.be/stops/404486", "https://data.delijn.be/stops/406758"], ["https://data.delijn.be/stops/403983", "https://data.delijn.be/stops/408356"], ["https://data.delijn.be/stops/402084", "https://data.delijn.be/stops/402135"], ["https://data.delijn.be/stops/503223", "https://data.delijn.be/stops/505264"], ["https://data.delijn.be/stops/208575", "https://data.delijn.be/stops/307526"], ["https://data.delijn.be/stops/304390", "https://data.delijn.be/stops/307410"], ["https://data.delijn.be/stops/407206", "https://data.delijn.be/stops/407207"], ["https://data.delijn.be/stops/303095", "https://data.delijn.be/stops/303105"], ["https://data.delijn.be/stops/204501", "https://data.delijn.be/stops/205545"], ["https://data.delijn.be/stops/305691", "https://data.delijn.be/stops/307840"], ["https://data.delijn.be/stops/301188", "https://data.delijn.be/stops/303617"], ["https://data.delijn.be/stops/504665", "https://data.delijn.be/stops/509363"], ["https://data.delijn.be/stops/101591", "https://data.delijn.be/stops/103037"], ["https://data.delijn.be/stops/408086", "https://data.delijn.be/stops/408138"], ["https://data.delijn.be/stops/204520", "https://data.delijn.be/stops/205521"], ["https://data.delijn.be/stops/405061", "https://data.delijn.be/stops/405062"], ["https://data.delijn.be/stops/108710", "https://data.delijn.be/stops/108711"], ["https://data.delijn.be/stops/402720", "https://data.delijn.be/stops/308175"], ["https://data.delijn.be/stops/403174", "https://data.delijn.be/stops/403397"], ["https://data.delijn.be/stops/105904", "https://data.delijn.be/stops/105907"], ["https://data.delijn.be/stops/101582", "https://data.delijn.be/stops/105452"], ["https://data.delijn.be/stops/206074", "https://data.delijn.be/stops/206964"], ["https://data.delijn.be/stops/507375", "https://data.delijn.be/stops/507376"], ["https://data.delijn.be/stops/502083", "https://data.delijn.be/stops/502390"], ["https://data.delijn.be/stops/305912", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/307372", "https://data.delijn.be/stops/307386"], ["https://data.delijn.be/stops/201379", "https://data.delijn.be/stops/211049"], ["https://data.delijn.be/stops/303551", "https://data.delijn.be/stops/305554"], ["https://data.delijn.be/stops/104639", "https://data.delijn.be/stops/107967"], ["https://data.delijn.be/stops/207550", "https://data.delijn.be/stops/209748"], ["https://data.delijn.be/stops/503319", "https://data.delijn.be/stops/503323"], ["https://data.delijn.be/stops/302635", "https://data.delijn.be/stops/302637"], ["https://data.delijn.be/stops/102748", "https://data.delijn.be/stops/107803"], ["https://data.delijn.be/stops/501682", "https://data.delijn.be/stops/506683"], ["https://data.delijn.be/stops/101992", "https://data.delijn.be/stops/102635"], ["https://data.delijn.be/stops/203968", "https://data.delijn.be/stops/203969"], ["https://data.delijn.be/stops/201002", "https://data.delijn.be/stops/203297"], ["https://data.delijn.be/stops/101250", "https://data.delijn.be/stops/102816"], ["https://data.delijn.be/stops/503276", "https://data.delijn.be/stops/504713"], ["https://data.delijn.be/stops/206706", "https://data.delijn.be/stops/207612"], ["https://data.delijn.be/stops/409759", "https://data.delijn.be/stops/409760"], ["https://data.delijn.be/stops/304663", "https://data.delijn.be/stops/304664"], ["https://data.delijn.be/stops/102833", "https://data.delijn.be/stops/102834"], ["https://data.delijn.be/stops/506028", "https://data.delijn.be/stops/506058"], ["https://data.delijn.be/stops/407743", "https://data.delijn.be/stops/409774"], ["https://data.delijn.be/stops/301915", "https://data.delijn.be/stops/305813"], ["https://data.delijn.be/stops/101757", "https://data.delijn.be/stops/104406"], ["https://data.delijn.be/stops/105064", "https://data.delijn.be/stops/305831"], ["https://data.delijn.be/stops/208768", "https://data.delijn.be/stops/209768"], ["https://data.delijn.be/stops/207243", "https://data.delijn.be/stops/207244"], ["https://data.delijn.be/stops/408360", "https://data.delijn.be/stops/408396"], ["https://data.delijn.be/stops/305122", "https://data.delijn.be/stops/305123"], ["https://data.delijn.be/stops/202675", "https://data.delijn.be/stops/202676"], ["https://data.delijn.be/stops/508359", "https://data.delijn.be/stops/508813"], ["https://data.delijn.be/stops/407369", "https://data.delijn.be/stops/407448"], ["https://data.delijn.be/stops/206538", "https://data.delijn.be/stops/207538"], ["https://data.delijn.be/stops/105883", "https://data.delijn.be/stops/105887"], ["https://data.delijn.be/stops/209493", "https://data.delijn.be/stops/209494"], ["https://data.delijn.be/stops/103389", "https://data.delijn.be/stops/104390"], ["https://data.delijn.be/stops/409745", "https://data.delijn.be/stops/409795"], ["https://data.delijn.be/stops/107316", "https://data.delijn.be/stops/108814"], ["https://data.delijn.be/stops/507820", "https://data.delijn.be/stops/508081"], ["https://data.delijn.be/stops/109884", "https://data.delijn.be/stops/109885"], ["https://data.delijn.be/stops/406270", "https://data.delijn.be/stops/406274"], ["https://data.delijn.be/stops/308610", "https://data.delijn.be/stops/308611"], ["https://data.delijn.be/stops/501019", "https://data.delijn.be/stops/506019"], ["https://data.delijn.be/stops/107368", "https://data.delijn.be/stops/107369"], ["https://data.delijn.be/stops/404012", "https://data.delijn.be/stops/404017"], ["https://data.delijn.be/stops/404833", "https://data.delijn.be/stops/406133"], ["https://data.delijn.be/stops/507100", "https://data.delijn.be/stops/507153"], ["https://data.delijn.be/stops/302945", "https://data.delijn.be/stops/303089"], ["https://data.delijn.be/stops/507550", "https://data.delijn.be/stops/507674"], ["https://data.delijn.be/stops/109197", "https://data.delijn.be/stops/109198"], ["https://data.delijn.be/stops/502040", "https://data.delijn.be/stops/502627"], ["https://data.delijn.be/stops/505625", "https://data.delijn.be/stops/507004"], ["https://data.delijn.be/stops/208635", "https://data.delijn.be/stops/209635"], ["https://data.delijn.be/stops/501510", "https://data.delijn.be/stops/506510"], ["https://data.delijn.be/stops/208663", "https://data.delijn.be/stops/209732"], ["https://data.delijn.be/stops/206659", "https://data.delijn.be/stops/207659"], ["https://data.delijn.be/stops/104547", "https://data.delijn.be/stops/107903"], ["https://data.delijn.be/stops/101826", "https://data.delijn.be/stops/102958"], ["https://data.delijn.be/stops/202935", "https://data.delijn.be/stops/203935"], ["https://data.delijn.be/stops/409367", "https://data.delijn.be/stops/409383"], ["https://data.delijn.be/stops/503692", "https://data.delijn.be/stops/508692"], ["https://data.delijn.be/stops/402359", "https://data.delijn.be/stops/402457"], ["https://data.delijn.be/stops/408587", "https://data.delijn.be/stops/408597"], ["https://data.delijn.be/stops/103144", "https://data.delijn.be/stops/103145"], ["https://data.delijn.be/stops/303796", "https://data.delijn.be/stops/303797"], ["https://data.delijn.be/stops/303405", "https://data.delijn.be/stops/304554"], ["https://data.delijn.be/stops/403413", "https://data.delijn.be/stops/410398"], ["https://data.delijn.be/stops/301353", "https://data.delijn.be/stops/301363"], ["https://data.delijn.be/stops/401826", "https://data.delijn.be/stops/406019"], ["https://data.delijn.be/stops/205582", "https://data.delijn.be/stops/211067"], ["https://data.delijn.be/stops/206841", "https://data.delijn.be/stops/206919"], ["https://data.delijn.be/stops/400033", "https://data.delijn.be/stops/400317"], ["https://data.delijn.be/stops/504696", "https://data.delijn.be/stops/505998"], ["https://data.delijn.be/stops/207012", "https://data.delijn.be/stops/217010"], ["https://data.delijn.be/stops/302715", "https://data.delijn.be/stops/302785"], ["https://data.delijn.be/stops/406461", "https://data.delijn.be/stops/408908"], ["https://data.delijn.be/stops/203630", "https://data.delijn.be/stops/205068"], ["https://data.delijn.be/stops/406635", "https://data.delijn.be/stops/407225"], ["https://data.delijn.be/stops/503807", "https://data.delijn.be/stops/503809"], ["https://data.delijn.be/stops/208432", "https://data.delijn.be/stops/208682"], ["https://data.delijn.be/stops/505588", "https://data.delijn.be/stops/507507"], ["https://data.delijn.be/stops/201090", "https://data.delijn.be/stops/202889"], ["https://data.delijn.be/stops/204780", "https://data.delijn.be/stops/205779"], ["https://data.delijn.be/stops/407771", "https://data.delijn.be/stops/304367"], ["https://data.delijn.be/stops/503930", "https://data.delijn.be/stops/508998"], ["https://data.delijn.be/stops/305947", "https://data.delijn.be/stops/308417"], ["https://data.delijn.be/stops/405496", "https://data.delijn.be/stops/303284"], ["https://data.delijn.be/stops/300559", "https://data.delijn.be/stops/300607"], ["https://data.delijn.be/stops/105802", "https://data.delijn.be/stops/305793"], ["https://data.delijn.be/stops/304434", "https://data.delijn.be/stops/306409"], ["https://data.delijn.be/stops/201253", "https://data.delijn.be/stops/202558"], ["https://data.delijn.be/stops/502807", "https://data.delijn.be/stops/509723"], ["https://data.delijn.be/stops/308150", "https://data.delijn.be/stops/308175"], ["https://data.delijn.be/stops/300671", "https://data.delijn.be/stops/308977"], ["https://data.delijn.be/stops/204045", "https://data.delijn.be/stops/204518"], ["https://data.delijn.be/stops/201066", "https://data.delijn.be/stops/204810"], ["https://data.delijn.be/stops/404654", "https://data.delijn.be/stops/410132"], ["https://data.delijn.be/stops/300666", "https://data.delijn.be/stops/300673"], ["https://data.delijn.be/stops/101678", "https://data.delijn.be/stops/101683"], ["https://data.delijn.be/stops/106852", "https://data.delijn.be/stops/107232"], ["https://data.delijn.be/stops/208537", "https://data.delijn.be/stops/208538"], ["https://data.delijn.be/stops/505323", "https://data.delijn.be/stops/505670"], ["https://data.delijn.be/stops/403745", "https://data.delijn.be/stops/403775"], ["https://data.delijn.be/stops/302709", "https://data.delijn.be/stops/302740"], ["https://data.delijn.be/stops/403500", "https://data.delijn.be/stops/410390"], ["https://data.delijn.be/stops/502722", "https://data.delijn.be/stops/507722"], ["https://data.delijn.be/stops/205989", "https://data.delijn.be/stops/208568"], ["https://data.delijn.be/stops/405351", "https://data.delijn.be/stops/405352"], ["https://data.delijn.be/stops/304940", "https://data.delijn.be/stops/304941"], ["https://data.delijn.be/stops/202460", "https://data.delijn.be/stops/203461"], ["https://data.delijn.be/stops/106080", "https://data.delijn.be/stops/106081"], ["https://data.delijn.be/stops/107961", "https://data.delijn.be/stops/107962"], ["https://data.delijn.be/stops/400675", "https://data.delijn.be/stops/302853"], ["https://data.delijn.be/stops/106625", "https://data.delijn.be/stops/106626"], ["https://data.delijn.be/stops/200828", "https://data.delijn.be/stops/502064"], ["https://data.delijn.be/stops/405304", "https://data.delijn.be/stops/305710"], ["https://data.delijn.be/stops/107001", "https://data.delijn.be/stops/107002"], ["https://data.delijn.be/stops/205078", "https://data.delijn.be/stops/205586"], ["https://data.delijn.be/stops/206936", "https://data.delijn.be/stops/207248"], ["https://data.delijn.be/stops/102393", "https://data.delijn.be/stops/107013"], ["https://data.delijn.be/stops/400430", "https://data.delijn.be/stops/406832"], ["https://data.delijn.be/stops/204551", "https://data.delijn.be/stops/205596"], ["https://data.delijn.be/stops/108284", "https://data.delijn.be/stops/108291"], ["https://data.delijn.be/stops/207377", "https://data.delijn.be/stops/207881"], ["https://data.delijn.be/stops/209040", "https://data.delijn.be/stops/209051"], ["https://data.delijn.be/stops/404208", "https://data.delijn.be/stops/404214"], ["https://data.delijn.be/stops/505311", "https://data.delijn.be/stops/509636"], ["https://data.delijn.be/stops/301193", "https://data.delijn.be/stops/308557"], ["https://data.delijn.be/stops/305144", "https://data.delijn.be/stops/305145"], ["https://data.delijn.be/stops/303046", "https://data.delijn.be/stops/303047"], ["https://data.delijn.be/stops/208834", "https://data.delijn.be/stops/209795"], ["https://data.delijn.be/stops/406040", "https://data.delijn.be/stops/406050"], ["https://data.delijn.be/stops/403632", "https://data.delijn.be/stops/407245"], ["https://data.delijn.be/stops/108370", "https://data.delijn.be/stops/108375"], ["https://data.delijn.be/stops/302976", "https://data.delijn.be/stops/303003"], ["https://data.delijn.be/stops/503188", "https://data.delijn.be/stops/508188"], ["https://data.delijn.be/stops/404412", "https://data.delijn.be/stops/404414"], ["https://data.delijn.be/stops/103545", "https://data.delijn.be/stops/105680"], ["https://data.delijn.be/stops/107886", "https://data.delijn.be/stops/107888"], ["https://data.delijn.be/stops/302403", "https://data.delijn.be/stops/302405"], ["https://data.delijn.be/stops/304229", "https://data.delijn.be/stops/305449"], ["https://data.delijn.be/stops/305683", "https://data.delijn.be/stops/305713"], ["https://data.delijn.be/stops/206088", "https://data.delijn.be/stops/206094"], ["https://data.delijn.be/stops/501614", "https://data.delijn.be/stops/501622"], ["https://data.delijn.be/stops/501193", "https://data.delijn.be/stops/506197"], ["https://data.delijn.be/stops/208389", "https://data.delijn.be/stops/208420"], ["https://data.delijn.be/stops/200509", "https://data.delijn.be/stops/201508"], ["https://data.delijn.be/stops/404475", "https://data.delijn.be/stops/405620"], ["https://data.delijn.be/stops/504570", "https://data.delijn.be/stops/505395"], ["https://data.delijn.be/stops/404865", "https://data.delijn.be/stops/404869"], ["https://data.delijn.be/stops/409372", "https://data.delijn.be/stops/409373"], ["https://data.delijn.be/stops/505357", "https://data.delijn.be/stops/505358"], ["https://data.delijn.be/stops/400709", "https://data.delijn.be/stops/400712"], ["https://data.delijn.be/stops/208410", "https://data.delijn.be/stops/209409"], ["https://data.delijn.be/stops/502297", "https://data.delijn.be/stops/505730"], ["https://data.delijn.be/stops/101268", "https://data.delijn.be/stops/103012"], ["https://data.delijn.be/stops/200107", "https://data.delijn.be/stops/200196"], ["https://data.delijn.be/stops/104422", "https://data.delijn.be/stops/104424"], ["https://data.delijn.be/stops/206786", "https://data.delijn.be/stops/209846"], ["https://data.delijn.be/stops/200152", "https://data.delijn.be/stops/201152"], ["https://data.delijn.be/stops/400832", "https://data.delijn.be/stops/403572"], ["https://data.delijn.be/stops/101506", "https://data.delijn.be/stops/109028"], ["https://data.delijn.be/stops/203001", "https://data.delijn.be/stops/203492"], ["https://data.delijn.be/stops/406350", "https://data.delijn.be/stops/406406"], ["https://data.delijn.be/stops/300421", "https://data.delijn.be/stops/300432"], ["https://data.delijn.be/stops/105663", "https://data.delijn.be/stops/105664"], ["https://data.delijn.be/stops/300103", "https://data.delijn.be/stops/306850"], ["https://data.delijn.be/stops/406857", "https://data.delijn.be/stops/406870"], ["https://data.delijn.be/stops/304628", "https://data.delijn.be/stops/304634"], ["https://data.delijn.be/stops/503443", "https://data.delijn.be/stops/508434"], ["https://data.delijn.be/stops/401497", "https://data.delijn.be/stops/403887"], ["https://data.delijn.be/stops/304187", "https://data.delijn.be/stops/305336"], ["https://data.delijn.be/stops/301444", "https://data.delijn.be/stops/306417"], ["https://data.delijn.be/stops/103348", "https://data.delijn.be/stops/103349"], ["https://data.delijn.be/stops/109837", "https://data.delijn.be/stops/109858"], ["https://data.delijn.be/stops/503226", "https://data.delijn.be/stops/508226"], ["https://data.delijn.be/stops/107194", "https://data.delijn.be/stops/109383"], ["https://data.delijn.be/stops/200573", "https://data.delijn.be/stops/201572"], ["https://data.delijn.be/stops/202843", "https://data.delijn.be/stops/218001"], ["https://data.delijn.be/stops/108196", "https://data.delijn.be/stops/108204"], ["https://data.delijn.be/stops/204775", "https://data.delijn.be/stops/205594"], ["https://data.delijn.be/stops/301005", "https://data.delijn.be/stops/301007"], ["https://data.delijn.be/stops/503191", "https://data.delijn.be/stops/503192"], ["https://data.delijn.be/stops/107085", "https://data.delijn.be/stops/108735"], ["https://data.delijn.be/stops/305241", "https://data.delijn.be/stops/308695"], ["https://data.delijn.be/stops/404928", "https://data.delijn.be/stops/409636"], ["https://data.delijn.be/stops/201615", "https://data.delijn.be/stops/202142"], ["https://data.delijn.be/stops/408941", "https://data.delijn.be/stops/409236"], ["https://data.delijn.be/stops/405160", "https://data.delijn.be/stops/405257"], ["https://data.delijn.be/stops/102894", "https://data.delijn.be/stops/106055"], ["https://data.delijn.be/stops/207708", "https://data.delijn.be/stops/308799"], ["https://data.delijn.be/stops/205016", "https://data.delijn.be/stops/205209"], ["https://data.delijn.be/stops/208689", "https://data.delijn.be/stops/208692"], ["https://data.delijn.be/stops/404004", "https://data.delijn.be/stops/404005"], ["https://data.delijn.be/stops/303567", "https://data.delijn.be/stops/304191"], ["https://data.delijn.be/stops/103270", "https://data.delijn.be/stops/107040"], ["https://data.delijn.be/stops/209148", "https://data.delijn.be/stops/209403"], ["https://data.delijn.be/stops/400743", "https://data.delijn.be/stops/400903"], ["https://data.delijn.be/stops/102373", "https://data.delijn.be/stops/105705"], ["https://data.delijn.be/stops/408528", "https://data.delijn.be/stops/408561"], ["https://data.delijn.be/stops/105718", "https://data.delijn.be/stops/106140"], ["https://data.delijn.be/stops/501219", "https://data.delijn.be/stops/506219"], ["https://data.delijn.be/stops/300691", "https://data.delijn.be/stops/303485"], ["https://data.delijn.be/stops/509236", "https://data.delijn.be/stops/509241"], ["https://data.delijn.be/stops/103284", "https://data.delijn.be/stops/103286"], ["https://data.delijn.be/stops/202090", "https://data.delijn.be/stops/202091"], ["https://data.delijn.be/stops/400595", "https://data.delijn.be/stops/400601"], ["https://data.delijn.be/stops/402286", "https://data.delijn.be/stops/402471"], ["https://data.delijn.be/stops/502240", "https://data.delijn.be/stops/502735"], ["https://data.delijn.be/stops/503228", "https://data.delijn.be/stops/505272"], ["https://data.delijn.be/stops/408515", "https://data.delijn.be/stops/408574"], ["https://data.delijn.be/stops/209638", "https://data.delijn.be/stops/209735"], ["https://data.delijn.be/stops/208085", "https://data.delijn.be/stops/209697"], ["https://data.delijn.be/stops/101176", "https://data.delijn.be/stops/106790"], ["https://data.delijn.be/stops/405525", "https://data.delijn.be/stops/408130"], ["https://data.delijn.be/stops/103914", "https://data.delijn.be/stops/107880"], ["https://data.delijn.be/stops/304235", "https://data.delijn.be/stops/304236"], ["https://data.delijn.be/stops/401618", "https://data.delijn.be/stops/308216"], ["https://data.delijn.be/stops/102201", "https://data.delijn.be/stops/102202"], ["https://data.delijn.be/stops/302372", "https://data.delijn.be/stops/302376"], ["https://data.delijn.be/stops/200081", "https://data.delijn.be/stops/201081"], ["https://data.delijn.be/stops/400928", "https://data.delijn.be/stops/400940"], ["https://data.delijn.be/stops/206080", "https://data.delijn.be/stops/206410"], ["https://data.delijn.be/stops/102699", "https://data.delijn.be/stops/105152"], ["https://data.delijn.be/stops/102335", "https://data.delijn.be/stops/108835"], ["https://data.delijn.be/stops/402692", "https://data.delijn.be/stops/402873"], ["https://data.delijn.be/stops/403658", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/406132", "https://data.delijn.be/stops/408926"], ["https://data.delijn.be/stops/206489", "https://data.delijn.be/stops/207462"], ["https://data.delijn.be/stops/101183", "https://data.delijn.be/stops/107875"], ["https://data.delijn.be/stops/508351", "https://data.delijn.be/stops/508650"], ["https://data.delijn.be/stops/200842", "https://data.delijn.be/stops/200858"], ["https://data.delijn.be/stops/206535", "https://data.delijn.be/stops/206547"], ["https://data.delijn.be/stops/502713", "https://data.delijn.be/stops/507713"], ["https://data.delijn.be/stops/301278", "https://data.delijn.be/stops/307789"], ["https://data.delijn.be/stops/202201", "https://data.delijn.be/stops/203505"], ["https://data.delijn.be/stops/207100", "https://data.delijn.be/stops/207104"], ["https://data.delijn.be/stops/106909", "https://data.delijn.be/stops/106910"], ["https://data.delijn.be/stops/400076", "https://data.delijn.be/stops/407022"], ["https://data.delijn.be/stops/407943", "https://data.delijn.be/stops/407944"], ["https://data.delijn.be/stops/502400", "https://data.delijn.be/stops/502590"], ["https://data.delijn.be/stops/404530", "https://data.delijn.be/stops/406529"], ["https://data.delijn.be/stops/102969", "https://data.delijn.be/stops/106570"], ["https://data.delijn.be/stops/201941", "https://data.delijn.be/stops/211055"], ["https://data.delijn.be/stops/300337", "https://data.delijn.be/stops/300338"], ["https://data.delijn.be/stops/101215", "https://data.delijn.be/stops/105495"], ["https://data.delijn.be/stops/300995", "https://data.delijn.be/stops/301088"], ["https://data.delijn.be/stops/501361", "https://data.delijn.be/stops/506057"], ["https://data.delijn.be/stops/303947", "https://data.delijn.be/stops/303948"], ["https://data.delijn.be/stops/102587", "https://data.delijn.be/stops/102588"], ["https://data.delijn.be/stops/208442", "https://data.delijn.be/stops/209442"], ["https://data.delijn.be/stops/502424", "https://data.delijn.be/stops/507424"], ["https://data.delijn.be/stops/201783", "https://data.delijn.be/stops/202450"], ["https://data.delijn.be/stops/302303", "https://data.delijn.be/stops/302304"], ["https://data.delijn.be/stops/109203", "https://data.delijn.be/stops/109204"], ["https://data.delijn.be/stops/208367", "https://data.delijn.be/stops/208368"], ["https://data.delijn.be/stops/307822", "https://data.delijn.be/stops/307823"], ["https://data.delijn.be/stops/208177", "https://data.delijn.be/stops/209176"], ["https://data.delijn.be/stops/106167", "https://data.delijn.be/stops/106451"], ["https://data.delijn.be/stops/305403", "https://data.delijn.be/stops/305416"], ["https://data.delijn.be/stops/300719", "https://data.delijn.be/stops/300737"], ["https://data.delijn.be/stops/304968", "https://data.delijn.be/stops/304976"], ["https://data.delijn.be/stops/400545", "https://data.delijn.be/stops/400557"], ["https://data.delijn.be/stops/108076", "https://data.delijn.be/stops/108376"], ["https://data.delijn.be/stops/402702", "https://data.delijn.be/stops/402703"], ["https://data.delijn.be/stops/508197", "https://data.delijn.be/stops/508450"], ["https://data.delijn.be/stops/408124", "https://data.delijn.be/stops/408133"], ["https://data.delijn.be/stops/504800", "https://data.delijn.be/stops/504805"], ["https://data.delijn.be/stops/206257", "https://data.delijn.be/stops/206260"], ["https://data.delijn.be/stops/505634", "https://data.delijn.be/stops/509806"], ["https://data.delijn.be/stops/301420", "https://data.delijn.be/stops/307529"], ["https://data.delijn.be/stops/405322", "https://data.delijn.be/stops/303326"], ["https://data.delijn.be/stops/407338", "https://data.delijn.be/stops/407339"], ["https://data.delijn.be/stops/304221", "https://data.delijn.be/stops/306826"], ["https://data.delijn.be/stops/204507", "https://data.delijn.be/stops/205489"], ["https://data.delijn.be/stops/503300", "https://data.delijn.be/stops/508968"], ["https://data.delijn.be/stops/101179", "https://data.delijn.be/stops/106741"], ["https://data.delijn.be/stops/505501", "https://data.delijn.be/stops/505604"], ["https://data.delijn.be/stops/208444", "https://data.delijn.be/stops/208453"], ["https://data.delijn.be/stops/502638", "https://data.delijn.be/stops/507638"], ["https://data.delijn.be/stops/200067", "https://data.delijn.be/stops/200142"], ["https://data.delijn.be/stops/408259", "https://data.delijn.be/stops/307379"], ["https://data.delijn.be/stops/306098", "https://data.delijn.be/stops/308718"], ["https://data.delijn.be/stops/206870", "https://data.delijn.be/stops/206928"], ["https://data.delijn.be/stops/503023", "https://data.delijn.be/stops/503677"], ["https://data.delijn.be/stops/207029", "https://data.delijn.be/stops/207901"], ["https://data.delijn.be/stops/103771", "https://data.delijn.be/stops/106504"], ["https://data.delijn.be/stops/305048", "https://data.delijn.be/stops/305088"], ["https://data.delijn.be/stops/204132", "https://data.delijn.be/stops/205146"], ["https://data.delijn.be/stops/307568", "https://data.delijn.be/stops/307569"], ["https://data.delijn.be/stops/405013", "https://data.delijn.be/stops/405014"], ["https://data.delijn.be/stops/407838", "https://data.delijn.be/stops/408012"], ["https://data.delijn.be/stops/504276", "https://data.delijn.be/stops/509276"], ["https://data.delijn.be/stops/306819", "https://data.delijn.be/stops/306824"], ["https://data.delijn.be/stops/403947", "https://data.delijn.be/stops/404028"], ["https://data.delijn.be/stops/408512", "https://data.delijn.be/stops/408564"], ["https://data.delijn.be/stops/202048", "https://data.delijn.be/stops/203049"], ["https://data.delijn.be/stops/405352", "https://data.delijn.be/stops/302838"], ["https://data.delijn.be/stops/105175", "https://data.delijn.be/stops/105200"], ["https://data.delijn.be/stops/300709", "https://data.delijn.be/stops/300716"], ["https://data.delijn.be/stops/202259", "https://data.delijn.be/stops/203101"], ["https://data.delijn.be/stops/301787", "https://data.delijn.be/stops/301788"], ["https://data.delijn.be/stops/304841", "https://data.delijn.be/stops/307064"], ["https://data.delijn.be/stops/502418", "https://data.delijn.be/stops/502750"], ["https://data.delijn.be/stops/107639", "https://data.delijn.be/stops/108834"], ["https://data.delijn.be/stops/301042", "https://data.delijn.be/stops/301043"], ["https://data.delijn.be/stops/103122", "https://data.delijn.be/stops/205605"], ["https://data.delijn.be/stops/501194", "https://data.delijn.be/stops/506479"], ["https://data.delijn.be/stops/201873", "https://data.delijn.be/stops/202025"], ["https://data.delijn.be/stops/206024", "https://data.delijn.be/stops/207015"], ["https://data.delijn.be/stops/102913", "https://data.delijn.be/stops/109635"], ["https://data.delijn.be/stops/108703", "https://data.delijn.be/stops/108706"], ["https://data.delijn.be/stops/507023", "https://data.delijn.be/stops/507927"], ["https://data.delijn.be/stops/101760", "https://data.delijn.be/stops/103216"], ["https://data.delijn.be/stops/503458", "https://data.delijn.be/stops/503477"], ["https://data.delijn.be/stops/102260", "https://data.delijn.be/stops/107520"], ["https://data.delijn.be/stops/503304", "https://data.delijn.be/stops/508299"], ["https://data.delijn.be/stops/501119", "https://data.delijn.be/stops/506119"], ["https://data.delijn.be/stops/409258", "https://data.delijn.be/stops/409259"], ["https://data.delijn.be/stops/503836", "https://data.delijn.be/stops/503837"], ["https://data.delijn.be/stops/103756", "https://data.delijn.be/stops/105435"], ["https://data.delijn.be/stops/301055", "https://data.delijn.be/stops/301057"], ["https://data.delijn.be/stops/301821", "https://data.delijn.be/stops/301822"], ["https://data.delijn.be/stops/403622", "https://data.delijn.be/stops/403623"], ["https://data.delijn.be/stops/200835", "https://data.delijn.be/stops/200836"], ["https://data.delijn.be/stops/502503", "https://data.delijn.be/stops/507503"], ["https://data.delijn.be/stops/403382", "https://data.delijn.be/stops/403529"], ["https://data.delijn.be/stops/304511", "https://data.delijn.be/stops/305266"], ["https://data.delijn.be/stops/206612", "https://data.delijn.be/stops/206717"], ["https://data.delijn.be/stops/104504", "https://data.delijn.be/stops/104506"], ["https://data.delijn.be/stops/305185", "https://data.delijn.be/stops/305186"], ["https://data.delijn.be/stops/202044", "https://data.delijn.be/stops/203044"], ["https://data.delijn.be/stops/505597", "https://data.delijn.be/stops/509727"], ["https://data.delijn.be/stops/406927", "https://data.delijn.be/stops/406969"], ["https://data.delijn.be/stops/406368", "https://data.delijn.be/stops/406393"], ["https://data.delijn.be/stops/407337", "https://data.delijn.be/stops/409777"], ["https://data.delijn.be/stops/305169", "https://data.delijn.be/stops/308050"], ["https://data.delijn.be/stops/104698", "https://data.delijn.be/stops/107357"], ["https://data.delijn.be/stops/400300", "https://data.delijn.be/stops/400301"], ["https://data.delijn.be/stops/105466", "https://data.delijn.be/stops/105669"], ["https://data.delijn.be/stops/106699", "https://data.delijn.be/stops/106703"], ["https://data.delijn.be/stops/307322", "https://data.delijn.be/stops/307323"], ["https://data.delijn.be/stops/400972", "https://data.delijn.be/stops/400974"], ["https://data.delijn.be/stops/406053", "https://data.delijn.be/stops/409279"], ["https://data.delijn.be/stops/302315", "https://data.delijn.be/stops/302327"], ["https://data.delijn.be/stops/504996", "https://data.delijn.be/stops/505380"], ["https://data.delijn.be/stops/304605", "https://data.delijn.be/stops/304662"], ["https://data.delijn.be/stops/404398", "https://data.delijn.be/stops/404401"], ["https://data.delijn.be/stops/304076", "https://data.delijn.be/stops/304097"], ["https://data.delijn.be/stops/407591", "https://data.delijn.be/stops/407663"], ["https://data.delijn.be/stops/504037", "https://data.delijn.be/stops/506002"], ["https://data.delijn.be/stops/304801", "https://data.delijn.be/stops/308771"], ["https://data.delijn.be/stops/201435", "https://data.delijn.be/stops/201783"], ["https://data.delijn.be/stops/405500", "https://data.delijn.be/stops/405501"], ["https://data.delijn.be/stops/209607", "https://data.delijn.be/stops/209608"], ["https://data.delijn.be/stops/505532", "https://data.delijn.be/stops/505548"], ["https://data.delijn.be/stops/503679", "https://data.delijn.be/stops/508023"], ["https://data.delijn.be/stops/503924", "https://data.delijn.be/stops/508930"], ["https://data.delijn.be/stops/103995", "https://data.delijn.be/stops/105380"], ["https://data.delijn.be/stops/402936", "https://data.delijn.be/stops/403969"], ["https://data.delijn.be/stops/101645", "https://data.delijn.be/stops/105755"], ["https://data.delijn.be/stops/105246", "https://data.delijn.be/stops/105248"], ["https://data.delijn.be/stops/308099", "https://data.delijn.be/stops/308101"], ["https://data.delijn.be/stops/108541", "https://data.delijn.be/stops/108543"], ["https://data.delijn.be/stops/103761", "https://data.delijn.be/stops/105350"], ["https://data.delijn.be/stops/200462", "https://data.delijn.be/stops/200675"], ["https://data.delijn.be/stops/401468", "https://data.delijn.be/stops/401469"], ["https://data.delijn.be/stops/109135", "https://data.delijn.be/stops/109140"], ["https://data.delijn.be/stops/403037", "https://data.delijn.be/stops/403866"], ["https://data.delijn.be/stops/504159", "https://data.delijn.be/stops/509159"], ["https://data.delijn.be/stops/104962", "https://data.delijn.be/stops/109242"], ["https://data.delijn.be/stops/306845", "https://data.delijn.be/stops/306846"], ["https://data.delijn.be/stops/207679", "https://data.delijn.be/stops/208071"], ["https://data.delijn.be/stops/304731", "https://data.delijn.be/stops/304735"], ["https://data.delijn.be/stops/301494", "https://data.delijn.be/stops/307956"], ["https://data.delijn.be/stops/209520", "https://data.delijn.be/stops/219017"], ["https://data.delijn.be/stops/103068", "https://data.delijn.be/stops/103259"], ["https://data.delijn.be/stops/109333", "https://data.delijn.be/stops/109334"], ["https://data.delijn.be/stops/204535", "https://data.delijn.be/stops/205535"], ["https://data.delijn.be/stops/207234", "https://data.delijn.be/stops/207935"], ["https://data.delijn.be/stops/407204", "https://data.delijn.be/stops/408804"], ["https://data.delijn.be/stops/504306", "https://data.delijn.be/stops/509020"], ["https://data.delijn.be/stops/504344", "https://data.delijn.be/stops/508018"], ["https://data.delijn.be/stops/407665", "https://data.delijn.be/stops/407677"], ["https://data.delijn.be/stops/402886", "https://data.delijn.be/stops/402887"], ["https://data.delijn.be/stops/201660", "https://data.delijn.be/stops/211124"], ["https://data.delijn.be/stops/208015", "https://data.delijn.be/stops/209404"], ["https://data.delijn.be/stops/307556", "https://data.delijn.be/stops/307579"], ["https://data.delijn.be/stops/200971", "https://data.delijn.be/stops/207616"], ["https://data.delijn.be/stops/300771", "https://data.delijn.be/stops/302405"], ["https://data.delijn.be/stops/503769", "https://data.delijn.be/stops/508768"], ["https://data.delijn.be/stops/308213", "https://data.delijn.be/stops/308214"], ["https://data.delijn.be/stops/202393", "https://data.delijn.be/stops/210122"], ["https://data.delijn.be/stops/202607", "https://data.delijn.be/stops/205933"], ["https://data.delijn.be/stops/106172", "https://data.delijn.be/stops/109183"], ["https://data.delijn.be/stops/404456", "https://data.delijn.be/stops/404561"], ["https://data.delijn.be/stops/503831", "https://data.delijn.be/stops/508834"], ["https://data.delijn.be/stops/300405", "https://data.delijn.be/stops/300406"], ["https://data.delijn.be/stops/306093", "https://data.delijn.be/stops/308686"], ["https://data.delijn.be/stops/300745", "https://data.delijn.be/stops/300775"], ["https://data.delijn.be/stops/301661", "https://data.delijn.be/stops/307823"], ["https://data.delijn.be/stops/108092", "https://data.delijn.be/stops/108093"], ["https://data.delijn.be/stops/503915", "https://data.delijn.be/stops/503921"], ["https://data.delijn.be/stops/502090", "https://data.delijn.be/stops/507090"], ["https://data.delijn.be/stops/205159", "https://data.delijn.be/stops/205161"], ["https://data.delijn.be/stops/402179", "https://data.delijn.be/stops/402265"], ["https://data.delijn.be/stops/400659", "https://data.delijn.be/stops/408964"], ["https://data.delijn.be/stops/301733", "https://data.delijn.be/stops/301758"], ["https://data.delijn.be/stops/505051", "https://data.delijn.be/stops/507552"], ["https://data.delijn.be/stops/301365", "https://data.delijn.be/stops/301366"], ["https://data.delijn.be/stops/405321", "https://data.delijn.be/stops/405339"], ["https://data.delijn.be/stops/407021", "https://data.delijn.be/stops/308743"], ["https://data.delijn.be/stops/404391", "https://data.delijn.be/stops/405442"], ["https://data.delijn.be/stops/409505", "https://data.delijn.be/stops/410401"], ["https://data.delijn.be/stops/502746", "https://data.delijn.be/stops/505068"], ["https://data.delijn.be/stops/401503", "https://data.delijn.be/stops/402023"], ["https://data.delijn.be/stops/103724", "https://data.delijn.be/stops/108095"], ["https://data.delijn.be/stops/103284", "https://data.delijn.be/stops/106126"], ["https://data.delijn.be/stops/504589", "https://data.delijn.be/stops/505536"], ["https://data.delijn.be/stops/209838", "https://data.delijn.be/stops/218014"], ["https://data.delijn.be/stops/105749", "https://data.delijn.be/stops/109965"], ["https://data.delijn.be/stops/503243", "https://data.delijn.be/stops/509763"], ["https://data.delijn.be/stops/409001", "https://data.delijn.be/stops/409004"], ["https://data.delijn.be/stops/209010", "https://data.delijn.be/stops/209012"], ["https://data.delijn.be/stops/201390", "https://data.delijn.be/stops/203651"], ["https://data.delijn.be/stops/301116", "https://data.delijn.be/stops/301118"], ["https://data.delijn.be/stops/410006", "https://data.delijn.be/stops/410034"], ["https://data.delijn.be/stops/108806", "https://data.delijn.be/stops/109664"], ["https://data.delijn.be/stops/302590", "https://data.delijn.be/stops/302593"], ["https://data.delijn.be/stops/208609", "https://data.delijn.be/stops/209608"], ["https://data.delijn.be/stops/207667", "https://data.delijn.be/stops/208065"], ["https://data.delijn.be/stops/409356", "https://data.delijn.be/stops/409357"], ["https://data.delijn.be/stops/103896", "https://data.delijn.be/stops/105316"], ["https://data.delijn.be/stops/303636", "https://data.delijn.be/stops/303638"], ["https://data.delijn.be/stops/107054", "https://data.delijn.be/stops/107055"], ["https://data.delijn.be/stops/404303", "https://data.delijn.be/stops/404305"], ["https://data.delijn.be/stops/308160", "https://data.delijn.be/stops/308161"], ["https://data.delijn.be/stops/503571", "https://data.delijn.be/stops/508553"], ["https://data.delijn.be/stops/401807", "https://data.delijn.be/stops/401808"], ["https://data.delijn.be/stops/403457", "https://data.delijn.be/stops/410328"], ["https://data.delijn.be/stops/409059", "https://data.delijn.be/stops/409104"], ["https://data.delijn.be/stops/405812", "https://data.delijn.be/stops/405890"], ["https://data.delijn.be/stops/308490", "https://data.delijn.be/stops/308491"], ["https://data.delijn.be/stops/302611", "https://data.delijn.be/stops/302612"], ["https://data.delijn.be/stops/406353", "https://data.delijn.be/stops/410189"], ["https://data.delijn.be/stops/208790", "https://data.delijn.be/stops/209336"], ["https://data.delijn.be/stops/400842", "https://data.delijn.be/stops/409568"], ["https://data.delijn.be/stops/508155", "https://data.delijn.be/stops/508253"], ["https://data.delijn.be/stops/203487", "https://data.delijn.be/stops/203488"], ["https://data.delijn.be/stops/407602", "https://data.delijn.be/stops/407747"], ["https://data.delijn.be/stops/108117", "https://data.delijn.be/stops/108118"], ["https://data.delijn.be/stops/300237", "https://data.delijn.be/stops/301373"], ["https://data.delijn.be/stops/202882", "https://data.delijn.be/stops/203815"], ["https://data.delijn.be/stops/107427", "https://data.delijn.be/stops/107529"], ["https://data.delijn.be/stops/106971", "https://data.delijn.be/stops/109506"], ["https://data.delijn.be/stops/207265", "https://data.delijn.be/stops/216001"], ["https://data.delijn.be/stops/101421", "https://data.delijn.be/stops/109723"], ["https://data.delijn.be/stops/400675", "https://data.delijn.be/stops/405300"], ["https://data.delijn.be/stops/302515", "https://data.delijn.be/stops/305874"], ["https://data.delijn.be/stops/503135", "https://data.delijn.be/stops/508131"], ["https://data.delijn.be/stops/202383", "https://data.delijn.be/stops/202384"], ["https://data.delijn.be/stops/302977", "https://data.delijn.be/stops/303002"], ["https://data.delijn.be/stops/101957", "https://data.delijn.be/stops/108324"], ["https://data.delijn.be/stops/404558", "https://data.delijn.be/stops/406986"], ["https://data.delijn.be/stops/504965", "https://data.delijn.be/stops/509965"], ["https://data.delijn.be/stops/304016", "https://data.delijn.be/stops/304055"], ["https://data.delijn.be/stops/107447", "https://data.delijn.be/stops/107448"], ["https://data.delijn.be/stops/405129", "https://data.delijn.be/stops/405386"], ["https://data.delijn.be/stops/403327", "https://data.delijn.be/stops/407587"], ["https://data.delijn.be/stops/302944", "https://data.delijn.be/stops/302956"], ["https://data.delijn.be/stops/107447", "https://data.delijn.be/stops/109645"], ["https://data.delijn.be/stops/407925", "https://data.delijn.be/stops/408001"], ["https://data.delijn.be/stops/503365", "https://data.delijn.be/stops/508238"], ["https://data.delijn.be/stops/207488", "https://data.delijn.be/stops/207645"], ["https://data.delijn.be/stops/502521", "https://data.delijn.be/stops/507520"], ["https://data.delijn.be/stops/202937", "https://data.delijn.be/stops/203936"], ["https://data.delijn.be/stops/501095", "https://data.delijn.be/stops/506421"], ["https://data.delijn.be/stops/101471", "https://data.delijn.be/stops/101473"], ["https://data.delijn.be/stops/405473", "https://data.delijn.be/stops/406698"], ["https://data.delijn.be/stops/102753", "https://data.delijn.be/stops/103699"], ["https://data.delijn.be/stops/404292", "https://data.delijn.be/stops/405974"], ["https://data.delijn.be/stops/200689", "https://data.delijn.be/stops/201720"], ["https://data.delijn.be/stops/401572", "https://data.delijn.be/stops/401573"], ["https://data.delijn.be/stops/307352", "https://data.delijn.be/stops/307353"], ["https://data.delijn.be/stops/301560", "https://data.delijn.be/stops/301561"], ["https://data.delijn.be/stops/106421", "https://data.delijn.be/stops/106512"], ["https://data.delijn.be/stops/402524", "https://data.delijn.be/stops/402592"], ["https://data.delijn.be/stops/105974", "https://data.delijn.be/stops/105976"], ["https://data.delijn.be/stops/105688", "https://data.delijn.be/stops/105711"], ["https://data.delijn.be/stops/306826", "https://data.delijn.be/stops/306827"], ["https://data.delijn.be/stops/201076", "https://data.delijn.be/stops/201242"], ["https://data.delijn.be/stops/104270", "https://data.delijn.be/stops/109746"], ["https://data.delijn.be/stops/401160", "https://data.delijn.be/stops/407906"], ["https://data.delijn.be/stops/207598", "https://data.delijn.be/stops/209666"], ["https://data.delijn.be/stops/402961", "https://data.delijn.be/stops/410059"], ["https://data.delijn.be/stops/105253", "https://data.delijn.be/stops/105272"], ["https://data.delijn.be/stops/502264", "https://data.delijn.be/stops/507264"], ["https://data.delijn.be/stops/103100", "https://data.delijn.be/stops/105020"], ["https://data.delijn.be/stops/205182", "https://data.delijn.be/stops/205368"], ["https://data.delijn.be/stops/200692", "https://data.delijn.be/stops/209648"], ["https://data.delijn.be/stops/106367", "https://data.delijn.be/stops/106368"], ["https://data.delijn.be/stops/403198", "https://data.delijn.be/stops/403229"], ["https://data.delijn.be/stops/303437", "https://data.delijn.be/stops/307280"], ["https://data.delijn.be/stops/405920", "https://data.delijn.be/stops/406134"], ["https://data.delijn.be/stops/302568", "https://data.delijn.be/stops/302589"], ["https://data.delijn.be/stops/401971", "https://data.delijn.be/stops/409143"], ["https://data.delijn.be/stops/303238", "https://data.delijn.be/stops/306708"], ["https://data.delijn.be/stops/503777", "https://data.delijn.be/stops/508780"], ["https://data.delijn.be/stops/102531", "https://data.delijn.be/stops/408339"], ["https://data.delijn.be/stops/204535", "https://data.delijn.be/stops/205730"], ["https://data.delijn.be/stops/104403", "https://data.delijn.be/stops/104409"], ["https://data.delijn.be/stops/108361", "https://data.delijn.be/stops/108502"], ["https://data.delijn.be/stops/300463", "https://data.delijn.be/stops/307088"], ["https://data.delijn.be/stops/206250", "https://data.delijn.be/stops/208951"], ["https://data.delijn.be/stops/301327", "https://data.delijn.be/stops/306650"], ["https://data.delijn.be/stops/405455", "https://data.delijn.be/stops/405458"], ["https://data.delijn.be/stops/109351", "https://data.delijn.be/stops/109353"], ["https://data.delijn.be/stops/301627", "https://data.delijn.be/stops/301629"], ["https://data.delijn.be/stops/202899", "https://data.delijn.be/stops/203899"], ["https://data.delijn.be/stops/406956", "https://data.delijn.be/stops/406961"], ["https://data.delijn.be/stops/300021", "https://data.delijn.be/stops/300411"], ["https://data.delijn.be/stops/300018", "https://data.delijn.be/stops/301114"], ["https://data.delijn.be/stops/406918", "https://data.delijn.be/stops/406972"], ["https://data.delijn.be/stops/102952", "https://data.delijn.be/stops/102954"], ["https://data.delijn.be/stops/201871", "https://data.delijn.be/stops/201881"], ["https://data.delijn.be/stops/106099", "https://data.delijn.be/stops/106146"], ["https://data.delijn.be/stops/305506", "https://data.delijn.be/stops/305519"], ["https://data.delijn.be/stops/306940", "https://data.delijn.be/stops/307946"], ["https://data.delijn.be/stops/201126", "https://data.delijn.be/stops/201244"], ["https://data.delijn.be/stops/401730", "https://data.delijn.be/stops/409406"], ["https://data.delijn.be/stops/206935", "https://data.delijn.be/stops/207802"], ["https://data.delijn.be/stops/104639", "https://data.delijn.be/stops/104643"], ["https://data.delijn.be/stops/501522", "https://data.delijn.be/stops/501525"], ["https://data.delijn.be/stops/106098", "https://data.delijn.be/stops/106116"], ["https://data.delijn.be/stops/203478", "https://data.delijn.be/stops/203480"], ["https://data.delijn.be/stops/204905", "https://data.delijn.be/stops/205244"], ["https://data.delijn.be/stops/202830", "https://data.delijn.be/stops/202831"], ["https://data.delijn.be/stops/202359", "https://data.delijn.be/stops/203358"], ["https://data.delijn.be/stops/106126", "https://data.delijn.be/stops/106128"], ["https://data.delijn.be/stops/200689", "https://data.delijn.be/stops/202759"], ["https://data.delijn.be/stops/302645", "https://data.delijn.be/stops/302656"], ["https://data.delijn.be/stops/207663", "https://data.delijn.be/stops/209793"], ["https://data.delijn.be/stops/202810", "https://data.delijn.be/stops/208712"], ["https://data.delijn.be/stops/502149", "https://data.delijn.be/stops/507092"], ["https://data.delijn.be/stops/303296", "https://data.delijn.be/stops/303303"], ["https://data.delijn.be/stops/201448", "https://data.delijn.be/stops/210113"], ["https://data.delijn.be/stops/408180", "https://data.delijn.be/stops/408182"], ["https://data.delijn.be/stops/403045", "https://data.delijn.be/stops/403048"], ["https://data.delijn.be/stops/307200", "https://data.delijn.be/stops/307202"], ["https://data.delijn.be/stops/208012", "https://data.delijn.be/stops/209012"], ["https://data.delijn.be/stops/205427", "https://data.delijn.be/stops/205763"], ["https://data.delijn.be/stops/503925", "https://data.delijn.be/stops/508925"], ["https://data.delijn.be/stops/400829", "https://data.delijn.be/stops/403576"], ["https://data.delijn.be/stops/101166", "https://data.delijn.be/stops/101167"], ["https://data.delijn.be/stops/206802", "https://data.delijn.be/stops/209033"], ["https://data.delijn.be/stops/508503", "https://data.delijn.be/stops/508867"], ["https://data.delijn.be/stops/304312", "https://data.delijn.be/stops/304313"], ["https://data.delijn.be/stops/502418", "https://data.delijn.be/stops/502441"], ["https://data.delijn.be/stops/307311", "https://data.delijn.be/stops/307335"], ["https://data.delijn.be/stops/506032", "https://data.delijn.be/stops/506349"], ["https://data.delijn.be/stops/400079", "https://data.delijn.be/stops/409157"], ["https://data.delijn.be/stops/504467", "https://data.delijn.be/stops/509464"], ["https://data.delijn.be/stops/204191", "https://data.delijn.be/stops/205191"], ["https://data.delijn.be/stops/404432", "https://data.delijn.be/stops/404433"], ["https://data.delijn.be/stops/405660", "https://data.delijn.be/stops/303200"], ["https://data.delijn.be/stops/103992", "https://data.delijn.be/stops/105396"], ["https://data.delijn.be/stops/302135", "https://data.delijn.be/stops/305261"], ["https://data.delijn.be/stops/108259", "https://data.delijn.be/stops/108353"], ["https://data.delijn.be/stops/407839", "https://data.delijn.be/stops/408013"], ["https://data.delijn.be/stops/105578", "https://data.delijn.be/stops/105579"], ["https://data.delijn.be/stops/404875", "https://data.delijn.be/stops/404878"], ["https://data.delijn.be/stops/506226", "https://data.delijn.be/stops/506228"], ["https://data.delijn.be/stops/304747", "https://data.delijn.be/stops/305880"], ["https://data.delijn.be/stops/408601", "https://data.delijn.be/stops/408691"], ["https://data.delijn.be/stops/102836", "https://data.delijn.be/stops/102838"], ["https://data.delijn.be/stops/407687", "https://data.delijn.be/stops/407698"], ["https://data.delijn.be/stops/504694", "https://data.delijn.be/stops/509329"], ["https://data.delijn.be/stops/403302", "https://data.delijn.be/stops/403545"], ["https://data.delijn.be/stops/402584", "https://data.delijn.be/stops/402655"], ["https://data.delijn.be/stops/300099", "https://data.delijn.be/stops/300100"], ["https://data.delijn.be/stops/201748", "https://data.delijn.be/stops/203165"], ["https://data.delijn.be/stops/404947", "https://data.delijn.be/stops/405545"], ["https://data.delijn.be/stops/501393", "https://data.delijn.be/stops/506393"], ["https://data.delijn.be/stops/204227", "https://data.delijn.be/stops/204228"], ["https://data.delijn.be/stops/504200", "https://data.delijn.be/stops/509123"], ["https://data.delijn.be/stops/106002", "https://data.delijn.be/stops/106004"], ["https://data.delijn.be/stops/208742", "https://data.delijn.be/stops/508013"], ["https://data.delijn.be/stops/406364", "https://data.delijn.be/stops/406365"], ["https://data.delijn.be/stops/209955", "https://data.delijn.be/stops/209956"], ["https://data.delijn.be/stops/300100", "https://data.delijn.be/stops/307098"], ["https://data.delijn.be/stops/101785", "https://data.delijn.be/stops/103870"], ["https://data.delijn.be/stops/105881", "https://data.delijn.be/stops/105884"], ["https://data.delijn.be/stops/502239", "https://data.delijn.be/stops/502735"], ["https://data.delijn.be/stops/101869", "https://data.delijn.be/stops/105254"], ["https://data.delijn.be/stops/106357", "https://data.delijn.be/stops/109638"], ["https://data.delijn.be/stops/302147", "https://data.delijn.be/stops/307464"], ["https://data.delijn.be/stops/103643", "https://data.delijn.be/stops/105627"], ["https://data.delijn.be/stops/402542", "https://data.delijn.be/stops/402543"], ["https://data.delijn.be/stops/504225", "https://data.delijn.be/stops/504622"], ["https://data.delijn.be/stops/504648", "https://data.delijn.be/stops/509648"], ["https://data.delijn.be/stops/104548", "https://data.delijn.be/stops/104554"], ["https://data.delijn.be/stops/408020", "https://data.delijn.be/stops/408062"], ["https://data.delijn.be/stops/302862", "https://data.delijn.be/stops/303103"], ["https://data.delijn.be/stops/109719", "https://data.delijn.be/stops/400431"], ["https://data.delijn.be/stops/208542", "https://data.delijn.be/stops/209539"], ["https://data.delijn.be/stops/408270", "https://data.delijn.be/stops/408271"], ["https://data.delijn.be/stops/204128", "https://data.delijn.be/stops/205128"], ["https://data.delijn.be/stops/503238", "https://data.delijn.be/stops/509763"], ["https://data.delijn.be/stops/209216", "https://data.delijn.be/stops/209221"], ["https://data.delijn.be/stops/307351", "https://data.delijn.be/stops/307432"], ["https://data.delijn.be/stops/303764", "https://data.delijn.be/stops/303769"], ["https://data.delijn.be/stops/204053", "https://data.delijn.be/stops/205704"], ["https://data.delijn.be/stops/401670", "https://data.delijn.be/stops/308275"], ["https://data.delijn.be/stops/109262", "https://data.delijn.be/stops/109263"], ["https://data.delijn.be/stops/404435", "https://data.delijn.be/stops/404510"], ["https://data.delijn.be/stops/407321", "https://data.delijn.be/stops/409418"], ["https://data.delijn.be/stops/104105", "https://data.delijn.be/stops/105630"], ["https://data.delijn.be/stops/405877", "https://data.delijn.be/stops/409413"], ["https://data.delijn.be/stops/405718", "https://data.delijn.be/stops/410139"], ["https://data.delijn.be/stops/105978", "https://data.delijn.be/stops/105983"], ["https://data.delijn.be/stops/106941", "https://data.delijn.be/stops/106943"], ["https://data.delijn.be/stops/505379", "https://data.delijn.be/stops/508094"], ["https://data.delijn.be/stops/204060", "https://data.delijn.be/stops/205060"], ["https://data.delijn.be/stops/305155", "https://data.delijn.be/stops/305179"], ["https://data.delijn.be/stops/405131", "https://data.delijn.be/stops/405190"], ["https://data.delijn.be/stops/206381", "https://data.delijn.be/stops/206383"], ["https://data.delijn.be/stops/209610", "https://data.delijn.be/stops/305237"], ["https://data.delijn.be/stops/209083", "https://data.delijn.be/stops/209701"], ["https://data.delijn.be/stops/400677", "https://data.delijn.be/stops/402534"], ["https://data.delijn.be/stops/300982", "https://data.delijn.be/stops/301003"], ["https://data.delijn.be/stops/200950", "https://data.delijn.be/stops/202228"], ["https://data.delijn.be/stops/306810", "https://data.delijn.be/stops/308945"], ["https://data.delijn.be/stops/502148", "https://data.delijn.be/stops/507141"], ["https://data.delijn.be/stops/301106", "https://data.delijn.be/stops/304535"], ["https://data.delijn.be/stops/300907", "https://data.delijn.be/stops/301108"], ["https://data.delijn.be/stops/402017", "https://data.delijn.be/stops/405583"], ["https://data.delijn.be/stops/406736", "https://data.delijn.be/stops/407297"], ["https://data.delijn.be/stops/407716", "https://data.delijn.be/stops/407717"], ["https://data.delijn.be/stops/107666", "https://data.delijn.be/stops/109105"], ["https://data.delijn.be/stops/300327", "https://data.delijn.be/stops/307035"], ["https://data.delijn.be/stops/502348", "https://data.delijn.be/stops/507348"], ["https://data.delijn.be/stops/109696", "https://data.delijn.be/stops/305823"], ["https://data.delijn.be/stops/503561", "https://data.delijn.be/stops/503577"], ["https://data.delijn.be/stops/300945", "https://data.delijn.be/stops/303670"], ["https://data.delijn.be/stops/400676", "https://data.delijn.be/stops/402621"], ["https://data.delijn.be/stops/501005", "https://data.delijn.be/stops/501497"], ["https://data.delijn.be/stops/407894", "https://data.delijn.be/stops/407895"], ["https://data.delijn.be/stops/304631", "https://data.delijn.be/stops/304632"], ["https://data.delijn.be/stops/503826", "https://data.delijn.be/stops/508826"], ["https://data.delijn.be/stops/306697", "https://data.delijn.be/stops/306700"], ["https://data.delijn.be/stops/109146", "https://data.delijn.be/stops/109147"], ["https://data.delijn.be/stops/408801", "https://data.delijn.be/stops/408829"], ["https://data.delijn.be/stops/206697", "https://data.delijn.be/stops/207334"], ["https://data.delijn.be/stops/201671", "https://data.delijn.be/stops/202323"], ["https://data.delijn.be/stops/506773", "https://data.delijn.be/stops/506774"], ["https://data.delijn.be/stops/501214", "https://data.delijn.be/stops/506214"], ["https://data.delijn.be/stops/102298", "https://data.delijn.be/stops/106586"], ["https://data.delijn.be/stops/307533", "https://data.delijn.be/stops/307534"], ["https://data.delijn.be/stops/106012", "https://data.delijn.be/stops/106013"], ["https://data.delijn.be/stops/107094", "https://data.delijn.be/stops/107096"], ["https://data.delijn.be/stops/106927", "https://data.delijn.be/stops/109532"], ["https://data.delijn.be/stops/401012", "https://data.delijn.be/stops/401015"], ["https://data.delijn.be/stops/306820", "https://data.delijn.be/stops/306823"], ["https://data.delijn.be/stops/400482", "https://data.delijn.be/stops/407210"], ["https://data.delijn.be/stops/402297", "https://data.delijn.be/stops/403003"], ["https://data.delijn.be/stops/101192", "https://data.delijn.be/stops/204542"], ["https://data.delijn.be/stops/105310", "https://data.delijn.be/stops/105980"], ["https://data.delijn.be/stops/108392", "https://data.delijn.be/stops/108393"], ["https://data.delijn.be/stops/507203", "https://data.delijn.be/stops/508705"], ["https://data.delijn.be/stops/408856", "https://data.delijn.be/stops/408857"], ["https://data.delijn.be/stops/405186", "https://data.delijn.be/stops/405195"], ["https://data.delijn.be/stops/200086", "https://data.delijn.be/stops/202955"], ["https://data.delijn.be/stops/302587", "https://data.delijn.be/stops/308298"], ["https://data.delijn.be/stops/502312", "https://data.delijn.be/stops/507305"], ["https://data.delijn.be/stops/109712", "https://data.delijn.be/stops/109713"], ["https://data.delijn.be/stops/200943", "https://data.delijn.be/stops/203697"], ["https://data.delijn.be/stops/104334", "https://data.delijn.be/stops/105857"], ["https://data.delijn.be/stops/302511", "https://data.delijn.be/stops/305804"], ["https://data.delijn.be/stops/505274", "https://data.delijn.be/stops/508225"], ["https://data.delijn.be/stops/301014", "https://data.delijn.be/stops/301017"], ["https://data.delijn.be/stops/300690", "https://data.delijn.be/stops/302530"], ["https://data.delijn.be/stops/106661", "https://data.delijn.be/stops/106662"], ["https://data.delijn.be/stops/101557", "https://data.delijn.be/stops/102405"], ["https://data.delijn.be/stops/101191", "https://data.delijn.be/stops/101192"], ["https://data.delijn.be/stops/400456", "https://data.delijn.be/stops/400457"], ["https://data.delijn.be/stops/301287", "https://data.delijn.be/stops/306122"], ["https://data.delijn.be/stops/108947", "https://data.delijn.be/stops/109222"], ["https://data.delijn.be/stops/201463", "https://data.delijn.be/stops/205997"], ["https://data.delijn.be/stops/503885", "https://data.delijn.be/stops/508787"], ["https://data.delijn.be/stops/206629", "https://data.delijn.be/stops/206792"], ["https://data.delijn.be/stops/304525", "https://data.delijn.be/stops/304532"], ["https://data.delijn.be/stops/206383", "https://data.delijn.be/stops/206807"], ["https://data.delijn.be/stops/303359", "https://data.delijn.be/stops/303395"], ["https://data.delijn.be/stops/300827", "https://data.delijn.be/stops/304127"], ["https://data.delijn.be/stops/501697", "https://data.delijn.be/stops/507170"], ["https://data.delijn.be/stops/501201", "https://data.delijn.be/stops/506202"], ["https://data.delijn.be/stops/301032", "https://data.delijn.be/stops/307142"], ["https://data.delijn.be/stops/206375", "https://data.delijn.be/stops/206376"], ["https://data.delijn.be/stops/104244", "https://data.delijn.be/stops/104247"], ["https://data.delijn.be/stops/406920", "https://data.delijn.be/stops/409454"], ["https://data.delijn.be/stops/208202", "https://data.delijn.be/stops/208768"], ["https://data.delijn.be/stops/203185", "https://data.delijn.be/stops/204234"], ["https://data.delijn.be/stops/407668", "https://data.delijn.be/stops/410193"], ["https://data.delijn.be/stops/505839", "https://data.delijn.be/stops/507730"], ["https://data.delijn.be/stops/202597", "https://data.delijn.be/stops/203597"], ["https://data.delijn.be/stops/200116", "https://data.delijn.be/stops/201116"], ["https://data.delijn.be/stops/501113", "https://data.delijn.be/stops/506463"], ["https://data.delijn.be/stops/503471", "https://data.delijn.be/stops/508471"], ["https://data.delijn.be/stops/306556", "https://data.delijn.be/stops/306558"], ["https://data.delijn.be/stops/106631", "https://data.delijn.be/stops/106634"], ["https://data.delijn.be/stops/103617", "https://data.delijn.be/stops/106194"], ["https://data.delijn.be/stops/407352", "https://data.delijn.be/stops/410254"], ["https://data.delijn.be/stops/202362", "https://data.delijn.be/stops/203990"], ["https://data.delijn.be/stops/408234", "https://data.delijn.be/stops/408235"], ["https://data.delijn.be/stops/304056", "https://data.delijn.be/stops/304058"], ["https://data.delijn.be/stops/102551", "https://data.delijn.be/stops/109662"], ["https://data.delijn.be/stops/505010", "https://data.delijn.be/stops/507337"], ["https://data.delijn.be/stops/101878", "https://data.delijn.be/stops/105699"], ["https://data.delijn.be/stops/300897", "https://data.delijn.be/stops/306283"], ["https://data.delijn.be/stops/202670", "https://data.delijn.be/stops/211034"], ["https://data.delijn.be/stops/400320", "https://data.delijn.be/stops/400324"], ["https://data.delijn.be/stops/300667", "https://data.delijn.be/stops/300668"], ["https://data.delijn.be/stops/200711", "https://data.delijn.be/stops/202603"], ["https://data.delijn.be/stops/502811", "https://data.delijn.be/stops/507510"], ["https://data.delijn.be/stops/308407", "https://data.delijn.be/stops/308409"], ["https://data.delijn.be/stops/102238", "https://data.delijn.be/stops/109744"], ["https://data.delijn.be/stops/504578", "https://data.delijn.be/stops/505300"], ["https://data.delijn.be/stops/104711", "https://data.delijn.be/stops/107347"], ["https://data.delijn.be/stops/303307", "https://data.delijn.be/stops/303333"], ["https://data.delijn.be/stops/204236", "https://data.delijn.be/stops/205793"], ["https://data.delijn.be/stops/405035", "https://data.delijn.be/stops/408259"], ["https://data.delijn.be/stops/204682", "https://data.delijn.be/stops/205682"], ["https://data.delijn.be/stops/201897", "https://data.delijn.be/stops/203148"], ["https://data.delijn.be/stops/404236", "https://data.delijn.be/stops/404243"], ["https://data.delijn.be/stops/300875", "https://data.delijn.be/stops/308853"], ["https://data.delijn.be/stops/202938", "https://data.delijn.be/stops/203938"], ["https://data.delijn.be/stops/204775", "https://data.delijn.be/stops/204776"], ["https://data.delijn.be/stops/303242", "https://data.delijn.be/stops/307983"], ["https://data.delijn.be/stops/503190", "https://data.delijn.be/stops/508983"], ["https://data.delijn.be/stops/303543", "https://data.delijn.be/stops/303562"], ["https://data.delijn.be/stops/400077", "https://data.delijn.be/stops/407031"], ["https://data.delijn.be/stops/504695", "https://data.delijn.be/stops/505214"], ["https://data.delijn.be/stops/503920", "https://data.delijn.be/stops/509041"], ["https://data.delijn.be/stops/201052", "https://data.delijn.be/stops/211119"], ["https://data.delijn.be/stops/401212", "https://data.delijn.be/stops/406680"], ["https://data.delijn.be/stops/206866", "https://data.delijn.be/stops/208749"], ["https://data.delijn.be/stops/102728", "https://data.delijn.be/stops/106587"], ["https://data.delijn.be/stops/209195", "https://data.delijn.be/stops/209410"], ["https://data.delijn.be/stops/300114", "https://data.delijn.be/stops/307354"], ["https://data.delijn.be/stops/406072", "https://data.delijn.be/stops/406075"], ["https://data.delijn.be/stops/402098", "https://data.delijn.be/stops/402472"], ["https://data.delijn.be/stops/405716", "https://data.delijn.be/stops/410139"], ["https://data.delijn.be/stops/103019", "https://data.delijn.be/stops/109889"], ["https://data.delijn.be/stops/403023", "https://data.delijn.be/stops/403484"], ["https://data.delijn.be/stops/200645", "https://data.delijn.be/stops/201605"], ["https://data.delijn.be/stops/105332", "https://data.delijn.be/stops/105334"], ["https://data.delijn.be/stops/405903", "https://data.delijn.be/stops/405967"], ["https://data.delijn.be/stops/203462", "https://data.delijn.be/stops/203463"], ["https://data.delijn.be/stops/102580", "https://data.delijn.be/stops/109112"], ["https://data.delijn.be/stops/303983", "https://data.delijn.be/stops/304295"], ["https://data.delijn.be/stops/306369", "https://data.delijn.be/stops/307065"], ["https://data.delijn.be/stops/202144", "https://data.delijn.be/stops/203615"], ["https://data.delijn.be/stops/104611", "https://data.delijn.be/stops/104817"], ["https://data.delijn.be/stops/501603", "https://data.delijn.be/stops/506401"], ["https://data.delijn.be/stops/109000", "https://data.delijn.be/stops/405030"], ["https://data.delijn.be/stops/504158", "https://data.delijn.be/stops/504195"], ["https://data.delijn.be/stops/401188", "https://data.delijn.be/stops/401189"], ["https://data.delijn.be/stops/106918", "https://data.delijn.be/stops/106948"], ["https://data.delijn.be/stops/406055", "https://data.delijn.be/stops/406057"], ["https://data.delijn.be/stops/502415", "https://data.delijn.be/stops/502749"], ["https://data.delijn.be/stops/108452", "https://data.delijn.be/stops/108454"], ["https://data.delijn.be/stops/206089", "https://data.delijn.be/stops/206091"], ["https://data.delijn.be/stops/501163", "https://data.delijn.be/stops/509837"], ["https://data.delijn.be/stops/202726", "https://data.delijn.be/stops/203673"], ["https://data.delijn.be/stops/400474", "https://data.delijn.be/stops/404663"], ["https://data.delijn.be/stops/203481", "https://data.delijn.be/stops/211003"], ["https://data.delijn.be/stops/205028", "https://data.delijn.be/stops/205035"], ["https://data.delijn.be/stops/404895", "https://data.delijn.be/stops/404944"], ["https://data.delijn.be/stops/105388", "https://data.delijn.be/stops/105391"], ["https://data.delijn.be/stops/408513", "https://data.delijn.be/stops/408706"], ["https://data.delijn.be/stops/504975", "https://data.delijn.be/stops/509957"], ["https://data.delijn.be/stops/405184", "https://data.delijn.be/stops/405250"], ["https://data.delijn.be/stops/101705", "https://data.delijn.be/stops/104033"], ["https://data.delijn.be/stops/209053", "https://data.delijn.be/stops/209657"], ["https://data.delijn.be/stops/206459", "https://data.delijn.be/stops/207462"], ["https://data.delijn.be/stops/408921", "https://data.delijn.be/stops/408924"], ["https://data.delijn.be/stops/302278", "https://data.delijn.be/stops/307133"], ["https://data.delijn.be/stops/301581", "https://data.delijn.be/stops/301586"], ["https://data.delijn.be/stops/304609", "https://data.delijn.be/stops/304682"], ["https://data.delijn.be/stops/208117", "https://data.delijn.be/stops/208118"], ["https://data.delijn.be/stops/105367", "https://data.delijn.be/stops/105388"], ["https://data.delijn.be/stops/406738", "https://data.delijn.be/stops/407481"], ["https://data.delijn.be/stops/504214", "https://data.delijn.be/stops/509064"], ["https://data.delijn.be/stops/302624", "https://data.delijn.be/stops/308074"], ["https://data.delijn.be/stops/401416", "https://data.delijn.be/stops/307498"], ["https://data.delijn.be/stops/106820", "https://data.delijn.be/stops/106839"], ["https://data.delijn.be/stops/504619", "https://data.delijn.be/stops/509618"], ["https://data.delijn.be/stops/408533", "https://data.delijn.be/stops/408766"], ["https://data.delijn.be/stops/303126", "https://data.delijn.be/stops/303129"], ["https://data.delijn.be/stops/103712", "https://data.delijn.be/stops/103945"], ["https://data.delijn.be/stops/506227", "https://data.delijn.be/stops/506403"], ["https://data.delijn.be/stops/214011", "https://data.delijn.be/stops/215011"], ["https://data.delijn.be/stops/300163", "https://data.delijn.be/stops/300164"], ["https://data.delijn.be/stops/402807", "https://data.delijn.be/stops/406880"], ["https://data.delijn.be/stops/402256", "https://data.delijn.be/stops/402382"], ["https://data.delijn.be/stops/303165", "https://data.delijn.be/stops/303167"], ["https://data.delijn.be/stops/301855", "https://data.delijn.be/stops/301886"], ["https://data.delijn.be/stops/406361", "https://data.delijn.be/stops/406362"], ["https://data.delijn.be/stops/409147", "https://data.delijn.be/stops/409149"], ["https://data.delijn.be/stops/405301", "https://data.delijn.be/stops/405496"], ["https://data.delijn.be/stops/206190", "https://data.delijn.be/stops/207692"], ["https://data.delijn.be/stops/503962", "https://data.delijn.be/stops/508040"], ["https://data.delijn.be/stops/103229", "https://data.delijn.be/stops/109402"], ["https://data.delijn.be/stops/402807", "https://data.delijn.be/stops/409038"], ["https://data.delijn.be/stops/101130", "https://data.delijn.be/stops/104161"], ["https://data.delijn.be/stops/405786", "https://data.delijn.be/stops/409748"], ["https://data.delijn.be/stops/502796", "https://data.delijn.be/stops/503338"], ["https://data.delijn.be/stops/301574", "https://data.delijn.be/stops/301576"], ["https://data.delijn.be/stops/209640", "https://data.delijn.be/stops/210044"], ["https://data.delijn.be/stops/502557", "https://data.delijn.be/stops/505050"], ["https://data.delijn.be/stops/206520", "https://data.delijn.be/stops/206876"], ["https://data.delijn.be/stops/304450", "https://data.delijn.be/stops/307714"], ["https://data.delijn.be/stops/402718", "https://data.delijn.be/stops/402722"], ["https://data.delijn.be/stops/408960", "https://data.delijn.be/stops/408978"], ["https://data.delijn.be/stops/202184", "https://data.delijn.be/stops/204598"], ["https://data.delijn.be/stops/101299", "https://data.delijn.be/stops/101302"], ["https://data.delijn.be/stops/208493", "https://data.delijn.be/stops/208494"], ["https://data.delijn.be/stops/405004", "https://data.delijn.be/stops/405087"], ["https://data.delijn.be/stops/207501", "https://data.delijn.be/stops/207503"], ["https://data.delijn.be/stops/500029", "https://data.delijn.be/stops/508881"], ["https://data.delijn.be/stops/101331", "https://data.delijn.be/stops/106635"], ["https://data.delijn.be/stops/200922", "https://data.delijn.be/stops/203716"], ["https://data.delijn.be/stops/101746", "https://data.delijn.be/stops/106392"], ["https://data.delijn.be/stops/502001", "https://data.delijn.be/stops/505771"], ["https://data.delijn.be/stops/101830", "https://data.delijn.be/stops/103975"], ["https://data.delijn.be/stops/202082", "https://data.delijn.be/stops/203082"], ["https://data.delijn.be/stops/206565", "https://data.delijn.be/stops/206997"], ["https://data.delijn.be/stops/304363", "https://data.delijn.be/stops/307384"], ["https://data.delijn.be/stops/202415", "https://data.delijn.be/stops/204942"], ["https://data.delijn.be/stops/502275", "https://data.delijn.be/stops/507276"], ["https://data.delijn.be/stops/204514", "https://data.delijn.be/stops/205513"], ["https://data.delijn.be/stops/405322", "https://data.delijn.be/stops/302846"], ["https://data.delijn.be/stops/102578", "https://data.delijn.be/stops/104093"], ["https://data.delijn.be/stops/105829", "https://data.delijn.be/stops/106830"], ["https://data.delijn.be/stops/400877", "https://data.delijn.be/stops/407532"], ["https://data.delijn.be/stops/204572", "https://data.delijn.be/stops/303395"], ["https://data.delijn.be/stops/104578", "https://data.delijn.be/stops/107898"], ["https://data.delijn.be/stops/502573", "https://data.delijn.be/stops/502582"], ["https://data.delijn.be/stops/301168", "https://data.delijn.be/stops/307683"], ["https://data.delijn.be/stops/407223", "https://data.delijn.be/stops/407406"], ["https://data.delijn.be/stops/400312", "https://data.delijn.be/stops/400419"], ["https://data.delijn.be/stops/405873", "https://data.delijn.be/stops/409762"], ["https://data.delijn.be/stops/408515", "https://data.delijn.be/stops/408813"], ["https://data.delijn.be/stops/302207", "https://data.delijn.be/stops/308102"], ["https://data.delijn.be/stops/101188", "https://data.delijn.be/stops/107858"], ["https://data.delijn.be/stops/209048", "https://data.delijn.be/stops/209049"], ["https://data.delijn.be/stops/503219", "https://data.delijn.be/stops/508926"], ["https://data.delijn.be/stops/406005", "https://data.delijn.be/stops/406815"], ["https://data.delijn.be/stops/200718", "https://data.delijn.be/stops/200738"], ["https://data.delijn.be/stops/101176", "https://data.delijn.be/stops/104431"], ["https://data.delijn.be/stops/505958", "https://data.delijn.be/stops/508283"], ["https://data.delijn.be/stops/503615", "https://data.delijn.be/stops/508614"], ["https://data.delijn.be/stops/400916", "https://data.delijn.be/stops/400971"], ["https://data.delijn.be/stops/208970", "https://data.delijn.be/stops/209970"], ["https://data.delijn.be/stops/103322", "https://data.delijn.be/stops/105720"], ["https://data.delijn.be/stops/404157", "https://data.delijn.be/stops/404181"], ["https://data.delijn.be/stops/301318", "https://data.delijn.be/stops/301322"], ["https://data.delijn.be/stops/405386", "https://data.delijn.be/stops/405392"], ["https://data.delijn.be/stops/402161", "https://data.delijn.be/stops/402378"], ["https://data.delijn.be/stops/502366", "https://data.delijn.be/stops/505054"], ["https://data.delijn.be/stops/207545", "https://data.delijn.be/stops/207546"], ["https://data.delijn.be/stops/505260", "https://data.delijn.be/stops/505968"], ["https://data.delijn.be/stops/504408", "https://data.delijn.be/stops/504825"], ["https://data.delijn.be/stops/106094", "https://data.delijn.be/stops/109184"], ["https://data.delijn.be/stops/101952", "https://data.delijn.be/stops/108794"], ["https://data.delijn.be/stops/206371", "https://data.delijn.be/stops/207728"], ["https://data.delijn.be/stops/504052", "https://data.delijn.be/stops/505994"], ["https://data.delijn.be/stops/501291", "https://data.delijn.be/stops/506291"], ["https://data.delijn.be/stops/407227", "https://data.delijn.be/stops/407229"], ["https://data.delijn.be/stops/302319", "https://data.delijn.be/stops/302320"], ["https://data.delijn.be/stops/108157", "https://data.delijn.be/stops/108162"], ["https://data.delijn.be/stops/503316", "https://data.delijn.be/stops/503962"], ["https://data.delijn.be/stops/105075", "https://data.delijn.be/stops/105089"], ["https://data.delijn.be/stops/303863", "https://data.delijn.be/stops/303867"], ["https://data.delijn.be/stops/204737", "https://data.delijn.be/stops/205738"], ["https://data.delijn.be/stops/300612", "https://data.delijn.be/stops/300618"], ["https://data.delijn.be/stops/501064", "https://data.delijn.be/stops/506405"], ["https://data.delijn.be/stops/301272", "https://data.delijn.be/stops/307614"], ["https://data.delijn.be/stops/300211", "https://data.delijn.be/stops/300213"], ["https://data.delijn.be/stops/101482", "https://data.delijn.be/stops/109296"], ["https://data.delijn.be/stops/402128", "https://data.delijn.be/stops/403426"], ["https://data.delijn.be/stops/302511", "https://data.delijn.be/stops/302515"], ["https://data.delijn.be/stops/202697", "https://data.delijn.be/stops/203697"], ["https://data.delijn.be/stops/108027", "https://data.delijn.be/stops/108031"], ["https://data.delijn.be/stops/308780", "https://data.delijn.be/stops/308781"], ["https://data.delijn.be/stops/400720", "https://data.delijn.be/stops/409504"], ["https://data.delijn.be/stops/405868", "https://data.delijn.be/stops/405869"], ["https://data.delijn.be/stops/200683", "https://data.delijn.be/stops/200695"], ["https://data.delijn.be/stops/306921", "https://data.delijn.be/stops/306922"], ["https://data.delijn.be/stops/401931", "https://data.delijn.be/stops/401932"], ["https://data.delijn.be/stops/104994", "https://data.delijn.be/stops/109697"], ["https://data.delijn.be/stops/504460", "https://data.delijn.be/stops/509353"], ["https://data.delijn.be/stops/503174", "https://data.delijn.be/stops/508262"], ["https://data.delijn.be/stops/505296", "https://data.delijn.be/stops/505579"], ["https://data.delijn.be/stops/208685", "https://data.delijn.be/stops/208689"], ["https://data.delijn.be/stops/307153", "https://data.delijn.be/stops/307154"], ["https://data.delijn.be/stops/303797", "https://data.delijn.be/stops/303801"], ["https://data.delijn.be/stops/102462", "https://data.delijn.be/stops/102464"], ["https://data.delijn.be/stops/204300", "https://data.delijn.be/stops/205300"], ["https://data.delijn.be/stops/203875", "https://data.delijn.be/stops/207427"], ["https://data.delijn.be/stops/509161", "https://data.delijn.be/stops/509193"], ["https://data.delijn.be/stops/102383", "https://data.delijn.be/stops/106569"], ["https://data.delijn.be/stops/106100", "https://data.delijn.be/stops/108060"], ["https://data.delijn.be/stops/506179", "https://data.delijn.be/stops/509932"], ["https://data.delijn.be/stops/503335", "https://data.delijn.be/stops/508339"], ["https://data.delijn.be/stops/304630", "https://data.delijn.be/stops/304656"], ["https://data.delijn.be/stops/406275", "https://data.delijn.be/stops/406278"], ["https://data.delijn.be/stops/203114", "https://data.delijn.be/stops/204832"], ["https://data.delijn.be/stops/402235", "https://data.delijn.be/stops/407532"], ["https://data.delijn.be/stops/202491", "https://data.delijn.be/stops/202930"], ["https://data.delijn.be/stops/102492", "https://data.delijn.be/stops/400348"], ["https://data.delijn.be/stops/406595", "https://data.delijn.be/stops/406637"], ["https://data.delijn.be/stops/402458", "https://data.delijn.be/stops/402461"], ["https://data.delijn.be/stops/101703", "https://data.delijn.be/stops/103304"], ["https://data.delijn.be/stops/405531", "https://data.delijn.be/stops/407871"], ["https://data.delijn.be/stops/300300", "https://data.delijn.be/stops/300301"], ["https://data.delijn.be/stops/402793", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/206196", "https://data.delijn.be/stops/207196"], ["https://data.delijn.be/stops/106224", "https://data.delijn.be/stops/106225"], ["https://data.delijn.be/stops/208433", "https://data.delijn.be/stops/209433"], ["https://data.delijn.be/stops/106204", "https://data.delijn.be/stops/109908"], ["https://data.delijn.be/stops/509475", "https://data.delijn.be/stops/509477"], ["https://data.delijn.be/stops/507513", "https://data.delijn.be/stops/509725"], ["https://data.delijn.be/stops/502207", "https://data.delijn.be/stops/507216"], ["https://data.delijn.be/stops/401043", "https://data.delijn.be/stops/401150"], ["https://data.delijn.be/stops/102646", "https://data.delijn.be/stops/102656"], ["https://data.delijn.be/stops/101790", "https://data.delijn.be/stops/102230"], ["https://data.delijn.be/stops/406707", "https://data.delijn.be/stops/407913"], ["https://data.delijn.be/stops/210084", "https://data.delijn.be/stops/210105"], ["https://data.delijn.be/stops/208101", "https://data.delijn.be/stops/218005"], ["https://data.delijn.be/stops/109071", "https://data.delijn.be/stops/300150"], ["https://data.delijn.be/stops/500128", "https://data.delijn.be/stops/505180"], ["https://data.delijn.be/stops/202781", "https://data.delijn.be/stops/203780"], ["https://data.delijn.be/stops/206107", "https://data.delijn.be/stops/207018"], ["https://data.delijn.be/stops/405343", "https://data.delijn.be/stops/405347"], ["https://data.delijn.be/stops/306186", "https://data.delijn.be/stops/306187"], ["https://data.delijn.be/stops/207419", "https://data.delijn.be/stops/306732"], ["https://data.delijn.be/stops/403270", "https://data.delijn.be/stops/408959"], ["https://data.delijn.be/stops/301888", "https://data.delijn.be/stops/305974"], ["https://data.delijn.be/stops/106652", "https://data.delijn.be/stops/106654"], ["https://data.delijn.be/stops/300485", "https://data.delijn.be/stops/300496"], ["https://data.delijn.be/stops/207541", "https://data.delijn.be/stops/207570"], ["https://data.delijn.be/stops/102398", "https://data.delijn.be/stops/106217"], ["https://data.delijn.be/stops/101250", "https://data.delijn.be/stops/109709"], ["https://data.delijn.be/stops/201764", "https://data.delijn.be/stops/201766"], ["https://data.delijn.be/stops/407624", "https://data.delijn.be/stops/409810"], ["https://data.delijn.be/stops/107649", "https://data.delijn.be/stops/107700"], ["https://data.delijn.be/stops/200735", "https://data.delijn.be/stops/210023"], ["https://data.delijn.be/stops/502657", "https://data.delijn.be/stops/505009"], ["https://data.delijn.be/stops/504852", "https://data.delijn.be/stops/508067"], ["https://data.delijn.be/stops/102183", "https://data.delijn.be/stops/103233"], ["https://data.delijn.be/stops/501395", "https://data.delijn.be/stops/506512"], ["https://data.delijn.be/stops/204681", "https://data.delijn.be/stops/204682"], ["https://data.delijn.be/stops/301860", "https://data.delijn.be/stops/301861"], ["https://data.delijn.be/stops/507116", "https://data.delijn.be/stops/507143"], ["https://data.delijn.be/stops/304187", "https://data.delijn.be/stops/305276"], ["https://data.delijn.be/stops/402881", "https://data.delijn.be/stops/306021"], ["https://data.delijn.be/stops/403260", "https://data.delijn.be/stops/403411"], ["https://data.delijn.be/stops/410152", "https://data.delijn.be/stops/300920"], ["https://data.delijn.be/stops/200582", "https://data.delijn.be/stops/201733"], ["https://data.delijn.be/stops/408892", "https://data.delijn.be/stops/408893"], ["https://data.delijn.be/stops/104016", "https://data.delijn.be/stops/106905"], ["https://data.delijn.be/stops/503994", "https://data.delijn.be/stops/508077"], ["https://data.delijn.be/stops/206185", "https://data.delijn.be/stops/207185"], ["https://data.delijn.be/stops/301216", "https://data.delijn.be/stops/304924"], ["https://data.delijn.be/stops/107844", "https://data.delijn.be/stops/107846"], ["https://data.delijn.be/stops/208030", "https://data.delijn.be/stops/217001"], ["https://data.delijn.be/stops/200727", "https://data.delijn.be/stops/202413"], ["https://data.delijn.be/stops/304230", "https://data.delijn.be/stops/304233"], ["https://data.delijn.be/stops/508494", "https://data.delijn.be/stops/509003"], ["https://data.delijn.be/stops/506196", "https://data.delijn.be/stops/506394"], ["https://data.delijn.be/stops/102687", "https://data.delijn.be/stops/105655"], ["https://data.delijn.be/stops/300392", "https://data.delijn.be/stops/306387"], ["https://data.delijn.be/stops/102951", "https://data.delijn.be/stops/104002"], ["https://data.delijn.be/stops/507931", "https://data.delijn.be/stops/508739"], ["https://data.delijn.be/stops/504202", "https://data.delijn.be/stops/504261"], ["https://data.delijn.be/stops/102741", "https://data.delijn.be/stops/102743"], ["https://data.delijn.be/stops/502603", "https://data.delijn.be/stops/507310"], ["https://data.delijn.be/stops/105217", "https://data.delijn.be/stops/106233"], ["https://data.delijn.be/stops/407792", "https://data.delijn.be/stops/307378"], ["https://data.delijn.be/stops/102089", "https://data.delijn.be/stops/102091"], ["https://data.delijn.be/stops/102169", "https://data.delijn.be/stops/108911"], ["https://data.delijn.be/stops/300739", "https://data.delijn.be/stops/300756"], ["https://data.delijn.be/stops/501383", "https://data.delijn.be/stops/506383"], ["https://data.delijn.be/stops/406006", "https://data.delijn.be/stops/406116"], ["https://data.delijn.be/stops/202730", "https://data.delijn.be/stops/203730"], ["https://data.delijn.be/stops/308567", "https://data.delijn.be/stops/308573"], ["https://data.delijn.be/stops/105171", "https://data.delijn.be/stops/107707"], ["https://data.delijn.be/stops/402358", "https://data.delijn.be/stops/402469"], ["https://data.delijn.be/stops/303708", "https://data.delijn.be/stops/303729"], ["https://data.delijn.be/stops/401502", "https://data.delijn.be/stops/401723"], ["https://data.delijn.be/stops/503415", "https://data.delijn.be/stops/508415"], ["https://data.delijn.be/stops/300445", "https://data.delijn.be/stops/301264"], ["https://data.delijn.be/stops/105063", "https://data.delijn.be/stops/107424"], ["https://data.delijn.be/stops/306932", "https://data.delijn.be/stops/308724"], ["https://data.delijn.be/stops/105563", "https://data.delijn.be/stops/105573"], ["https://data.delijn.be/stops/501508", "https://data.delijn.be/stops/501737"], ["https://data.delijn.be/stops/104651", "https://data.delijn.be/stops/108044"], ["https://data.delijn.be/stops/101926", "https://data.delijn.be/stops/107072"], ["https://data.delijn.be/stops/205641", "https://data.delijn.be/stops/205642"], ["https://data.delijn.be/stops/404669", "https://data.delijn.be/stops/404674"], ["https://data.delijn.be/stops/410274", "https://data.delijn.be/stops/410277"], ["https://data.delijn.be/stops/301536", "https://data.delijn.be/stops/301537"], ["https://data.delijn.be/stops/106346", "https://data.delijn.be/stops/106347"], ["https://data.delijn.be/stops/200674", "https://data.delijn.be/stops/201466"], ["https://data.delijn.be/stops/302349", "https://data.delijn.be/stops/302367"], ["https://data.delijn.be/stops/407375", "https://data.delijn.be/stops/407392"], ["https://data.delijn.be/stops/201088", "https://data.delijn.be/stops/201920"], ["https://data.delijn.be/stops/102136", "https://data.delijn.be/stops/103478"], ["https://data.delijn.be/stops/403190", "https://data.delijn.be/stops/403194"], ["https://data.delijn.be/stops/200256", "https://data.delijn.be/stops/202564"], ["https://data.delijn.be/stops/402751", "https://data.delijn.be/stops/402772"], ["https://data.delijn.be/stops/101267", "https://data.delijn.be/stops/105305"], ["https://data.delijn.be/stops/304699", "https://data.delijn.be/stops/304715"], ["https://data.delijn.be/stops/509601", "https://data.delijn.be/stops/509605"], ["https://data.delijn.be/stops/501332", "https://data.delijn.be/stops/501477"], ["https://data.delijn.be/stops/105811", "https://data.delijn.be/stops/105815"], ["https://data.delijn.be/stops/306949", "https://data.delijn.be/stops/306950"], ["https://data.delijn.be/stops/206572", "https://data.delijn.be/stops/207571"], ["https://data.delijn.be/stops/502468", "https://data.delijn.be/stops/509927"], ["https://data.delijn.be/stops/204647", "https://data.delijn.be/stops/204772"], ["https://data.delijn.be/stops/200479", "https://data.delijn.be/stops/211086"], ["https://data.delijn.be/stops/104401", "https://data.delijn.be/stops/107128"], ["https://data.delijn.be/stops/107488", "https://data.delijn.be/stops/305801"], ["https://data.delijn.be/stops/401548", "https://data.delijn.be/stops/401549"], ["https://data.delijn.be/stops/106430", "https://data.delijn.be/stops/106431"], ["https://data.delijn.be/stops/307398", "https://data.delijn.be/stops/307399"], ["https://data.delijn.be/stops/101141", "https://data.delijn.be/stops/101142"], ["https://data.delijn.be/stops/403334", "https://data.delijn.be/stops/403337"], ["https://data.delijn.be/stops/201343", "https://data.delijn.be/stops/211044"], ["https://data.delijn.be/stops/211013", "https://data.delijn.be/stops/507277"], ["https://data.delijn.be/stops/405156", "https://data.delijn.be/stops/407333"], ["https://data.delijn.be/stops/204176", "https://data.delijn.be/stops/205176"], ["https://data.delijn.be/stops/204024", "https://data.delijn.be/stops/204025"], ["https://data.delijn.be/stops/405848", "https://data.delijn.be/stops/405862"], ["https://data.delijn.be/stops/505166", "https://data.delijn.be/stops/505785"], ["https://data.delijn.be/stops/208767", "https://data.delijn.be/stops/508228"], ["https://data.delijn.be/stops/501399", "https://data.delijn.be/stops/501402"], ["https://data.delijn.be/stops/107716", "https://data.delijn.be/stops/107718"], ["https://data.delijn.be/stops/103398", "https://data.delijn.be/stops/107704"], ["https://data.delijn.be/stops/300564", "https://data.delijn.be/stops/300571"], ["https://data.delijn.be/stops/408858", "https://data.delijn.be/stops/408862"], ["https://data.delijn.be/stops/405732", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/208148", "https://data.delijn.be/stops/208193"], ["https://data.delijn.be/stops/105256", "https://data.delijn.be/stops/105293"], ["https://data.delijn.be/stops/501417", "https://data.delijn.be/stops/501681"], ["https://data.delijn.be/stops/200883", "https://data.delijn.be/stops/202054"], ["https://data.delijn.be/stops/504023", "https://data.delijn.be/stops/504123"], ["https://data.delijn.be/stops/304725", "https://data.delijn.be/stops/304728"], ["https://data.delijn.be/stops/207079", "https://data.delijn.be/stops/207521"], ["https://data.delijn.be/stops/105323", "https://data.delijn.be/stops/105326"], ["https://data.delijn.be/stops/504775", "https://data.delijn.be/stops/505791"], ["https://data.delijn.be/stops/500994", "https://data.delijn.be/stops/504050"], ["https://data.delijn.be/stops/307938", "https://data.delijn.be/stops/308779"], ["https://data.delijn.be/stops/302862", "https://data.delijn.be/stops/303678"], ["https://data.delijn.be/stops/407486", "https://data.delijn.be/stops/407488"], ["https://data.delijn.be/stops/206340", "https://data.delijn.be/stops/207340"], ["https://data.delijn.be/stops/408621", "https://data.delijn.be/stops/410150"], ["https://data.delijn.be/stops/304689", "https://data.delijn.be/stops/304791"], ["https://data.delijn.be/stops/504508", "https://data.delijn.be/stops/509507"], ["https://data.delijn.be/stops/107069", "https://data.delijn.be/stops/107072"], ["https://data.delijn.be/stops/500042", "https://data.delijn.be/stops/500044"], ["https://data.delijn.be/stops/300810", "https://data.delijn.be/stops/300811"], ["https://data.delijn.be/stops/108397", "https://data.delijn.be/stops/108398"], ["https://data.delijn.be/stops/302569", "https://data.delijn.be/stops/302572"], ["https://data.delijn.be/stops/506108", "https://data.delijn.be/stops/506112"], ["https://data.delijn.be/stops/103298", "https://data.delijn.be/stops/105096"], ["https://data.delijn.be/stops/405610", "https://data.delijn.be/stops/407179"], ["https://data.delijn.be/stops/306727", "https://data.delijn.be/stops/306728"], ["https://data.delijn.be/stops/105871", "https://data.delijn.be/stops/105872"], ["https://data.delijn.be/stops/201397", "https://data.delijn.be/stops/208333"], ["https://data.delijn.be/stops/502221", "https://data.delijn.be/stops/509796"], ["https://data.delijn.be/stops/208538", "https://data.delijn.be/stops/208752"], ["https://data.delijn.be/stops/504497", "https://data.delijn.be/stops/504504"], ["https://data.delijn.be/stops/502464", "https://data.delijn.be/stops/502660"], ["https://data.delijn.be/stops/407717", "https://data.delijn.be/stops/407728"], ["https://data.delijn.be/stops/206146", "https://data.delijn.be/stops/207146"], ["https://data.delijn.be/stops/204149", "https://data.delijn.be/stops/205149"], ["https://data.delijn.be/stops/203549", "https://data.delijn.be/stops/203550"], ["https://data.delijn.be/stops/202180", "https://data.delijn.be/stops/203181"], ["https://data.delijn.be/stops/200350", "https://data.delijn.be/stops/209950"], ["https://data.delijn.be/stops/209785", "https://data.delijn.be/stops/209786"], ["https://data.delijn.be/stops/306134", "https://data.delijn.be/stops/306135"], ["https://data.delijn.be/stops/101948", "https://data.delijn.be/stops/108751"], ["https://data.delijn.be/stops/402984", "https://data.delijn.be/stops/408936"], ["https://data.delijn.be/stops/101293", "https://data.delijn.be/stops/105367"], ["https://data.delijn.be/stops/508523", "https://data.delijn.be/stops/508743"], ["https://data.delijn.be/stops/200968", "https://data.delijn.be/stops/209242"], ["https://data.delijn.be/stops/103292", "https://data.delijn.be/stops/108799"], ["https://data.delijn.be/stops/206534", "https://data.delijn.be/stops/207487"], ["https://data.delijn.be/stops/509513", "https://data.delijn.be/stops/509750"], ["https://data.delijn.be/stops/108566", "https://data.delijn.be/stops/108568"], ["https://data.delijn.be/stops/304104", "https://data.delijn.be/stops/304791"], ["https://data.delijn.be/stops/404586", "https://data.delijn.be/stops/407294"], ["https://data.delijn.be/stops/400475", "https://data.delijn.be/stops/408694"], ["https://data.delijn.be/stops/404464", "https://data.delijn.be/stops/404528"], ["https://data.delijn.be/stops/509843", "https://data.delijn.be/stops/509844"], ["https://data.delijn.be/stops/202442", "https://data.delijn.be/stops/203442"], ["https://data.delijn.be/stops/205218", "https://data.delijn.be/stops/205905"], ["https://data.delijn.be/stops/200376", "https://data.delijn.be/stops/201375"], ["https://data.delijn.be/stops/102345", "https://data.delijn.be/stops/102980"], ["https://data.delijn.be/stops/501607", "https://data.delijn.be/stops/506608"], ["https://data.delijn.be/stops/102741", "https://data.delijn.be/stops/107402"], ["https://data.delijn.be/stops/104768", "https://data.delijn.be/stops/108143"], ["https://data.delijn.be/stops/101983", "https://data.delijn.be/stops/109644"], ["https://data.delijn.be/stops/103557", "https://data.delijn.be/stops/109402"], ["https://data.delijn.be/stops/504067", "https://data.delijn.be/stops/509065"], ["https://data.delijn.be/stops/303129", "https://data.delijn.be/stops/303132"], ["https://data.delijn.be/stops/105564", "https://data.delijn.be/stops/105566"], ["https://data.delijn.be/stops/104583", "https://data.delijn.be/stops/104584"], ["https://data.delijn.be/stops/107855", "https://data.delijn.be/stops/108775"], ["https://data.delijn.be/stops/204474", "https://data.delijn.be/stops/205474"], ["https://data.delijn.be/stops/303644", "https://data.delijn.be/stops/308829"], ["https://data.delijn.be/stops/207350", "https://data.delijn.be/stops/207375"], ["https://data.delijn.be/stops/304036", "https://data.delijn.be/stops/304852"], ["https://data.delijn.be/stops/200236", "https://data.delijn.be/stops/201236"], ["https://data.delijn.be/stops/102943", "https://data.delijn.be/stops/105658"], ["https://data.delijn.be/stops/404484", "https://data.delijn.be/stops/404546"], ["https://data.delijn.be/stops/200166", "https://data.delijn.be/stops/201749"], ["https://data.delijn.be/stops/502567", "https://data.delijn.be/stops/502637"], ["https://data.delijn.be/stops/106287", "https://data.delijn.be/stops/106352"], ["https://data.delijn.be/stops/305816", "https://data.delijn.be/stops/305817"], ["https://data.delijn.be/stops/105866", "https://data.delijn.be/stops/105867"], ["https://data.delijn.be/stops/104379", "https://data.delijn.be/stops/105415"], ["https://data.delijn.be/stops/101577", "https://data.delijn.be/stops/101578"], ["https://data.delijn.be/stops/208672", "https://data.delijn.be/stops/209439"], ["https://data.delijn.be/stops/203197", "https://data.delijn.be/stops/203198"], ["https://data.delijn.be/stops/401294", "https://data.delijn.be/stops/401368"], ["https://data.delijn.be/stops/308090", "https://data.delijn.be/stops/308093"], ["https://data.delijn.be/stops/400115", "https://data.delijn.be/stops/400922"], ["https://data.delijn.be/stops/406521", "https://data.delijn.be/stops/407363"], ["https://data.delijn.be/stops/405931", "https://data.delijn.be/stops/405978"], ["https://data.delijn.be/stops/301644", "https://data.delijn.be/stops/301666"], ["https://data.delijn.be/stops/507257", "https://data.delijn.be/stops/507570"], ["https://data.delijn.be/stops/104815", "https://data.delijn.be/stops/105560"], ["https://data.delijn.be/stops/504149", "https://data.delijn.be/stops/509156"], ["https://data.delijn.be/stops/504663", "https://data.delijn.be/stops/508655"], ["https://data.delijn.be/stops/403792", "https://data.delijn.be/stops/403793"], ["https://data.delijn.be/stops/203273", "https://data.delijn.be/stops/203668"], ["https://data.delijn.be/stops/206290", "https://data.delijn.be/stops/207290"], ["https://data.delijn.be/stops/406744", "https://data.delijn.be/stops/406746"], ["https://data.delijn.be/stops/209389", "https://data.delijn.be/stops/209390"], ["https://data.delijn.be/stops/505405", "https://data.delijn.be/stops/505905"], ["https://data.delijn.be/stops/106910", "https://data.delijn.be/stops/107253"], ["https://data.delijn.be/stops/406738", "https://data.delijn.be/stops/406739"], ["https://data.delijn.be/stops/208472", "https://data.delijn.be/stops/208473"], ["https://data.delijn.be/stops/108208", "https://data.delijn.be/stops/108209"], ["https://data.delijn.be/stops/109451", "https://data.delijn.be/stops/109454"], ["https://data.delijn.be/stops/204407", "https://data.delijn.be/stops/205406"], ["https://data.delijn.be/stops/400424", "https://data.delijn.be/stops/400958"], ["https://data.delijn.be/stops/405908", "https://data.delijn.be/stops/405930"], ["https://data.delijn.be/stops/502180", "https://data.delijn.be/stops/507180"], ["https://data.delijn.be/stops/404482", "https://data.delijn.be/stops/406743"], ["https://data.delijn.be/stops/306139", "https://data.delijn.be/stops/306140"], ["https://data.delijn.be/stops/200490", "https://data.delijn.be/stops/202453"], ["https://data.delijn.be/stops/206622", "https://data.delijn.be/stops/207621"], ["https://data.delijn.be/stops/300856", "https://data.delijn.be/stops/306050"], ["https://data.delijn.be/stops/302078", "https://data.delijn.be/stops/302085"], ["https://data.delijn.be/stops/106440", "https://data.delijn.be/stops/106442"], ["https://data.delijn.be/stops/500025", "https://data.delijn.be/stops/505074"], ["https://data.delijn.be/stops/205214", "https://data.delijn.be/stops/205365"], ["https://data.delijn.be/stops/200916", "https://data.delijn.be/stops/200925"], ["https://data.delijn.be/stops/400910", "https://data.delijn.be/stops/406876"], ["https://data.delijn.be/stops/503358", "https://data.delijn.be/stops/505133"], ["https://data.delijn.be/stops/501528", "https://data.delijn.be/stops/501530"], ["https://data.delijn.be/stops/503527", "https://data.delijn.be/stops/504767"], ["https://data.delijn.be/stops/202831", "https://data.delijn.be/stops/208656"], ["https://data.delijn.be/stops/200734", "https://data.delijn.be/stops/203123"], ["https://data.delijn.be/stops/201423", "https://data.delijn.be/stops/209720"], ["https://data.delijn.be/stops/107636", "https://data.delijn.be/stops/108841"], ["https://data.delijn.be/stops/204015", "https://data.delijn.be/stops/204363"], ["https://data.delijn.be/stops/401805", "https://data.delijn.be/stops/401864"], ["https://data.delijn.be/stops/203899", "https://data.delijn.be/stops/210125"], ["https://data.delijn.be/stops/307636", "https://data.delijn.be/stops/307639"], ["https://data.delijn.be/stops/302466", "https://data.delijn.be/stops/307037"], ["https://data.delijn.be/stops/307053", "https://data.delijn.be/stops/307054"], ["https://data.delijn.be/stops/407600", "https://data.delijn.be/stops/407605"], ["https://data.delijn.be/stops/205691", "https://data.delijn.be/stops/205701"], ["https://data.delijn.be/stops/207700", "https://data.delijn.be/stops/207955"], ["https://data.delijn.be/stops/200827", "https://data.delijn.be/stops/200832"], ["https://data.delijn.be/stops/509616", "https://data.delijn.be/stops/509620"], ["https://data.delijn.be/stops/304049", "https://data.delijn.be/stops/304103"], ["https://data.delijn.be/stops/408181", "https://data.delijn.be/stops/408182"], ["https://data.delijn.be/stops/304872", "https://data.delijn.be/stops/304873"], ["https://data.delijn.be/stops/208215", "https://data.delijn.be/stops/209785"], ["https://data.delijn.be/stops/402441", "https://data.delijn.be/stops/402443"], ["https://data.delijn.be/stops/301352", "https://data.delijn.be/stops/306132"], ["https://data.delijn.be/stops/109212", "https://data.delijn.be/stops/109213"], ["https://data.delijn.be/stops/107893", "https://data.delijn.be/stops/107907"], ["https://data.delijn.be/stops/204582", "https://data.delijn.be/stops/205770"], ["https://data.delijn.be/stops/502539", "https://data.delijn.be/stops/507539"], ["https://data.delijn.be/stops/409626", "https://data.delijn.be/stops/409628"], ["https://data.delijn.be/stops/407872", "https://data.delijn.be/stops/407873"], ["https://data.delijn.be/stops/208669", "https://data.delijn.be/stops/219021"], ["https://data.delijn.be/stops/300291", "https://data.delijn.be/stops/300303"], ["https://data.delijn.be/stops/507491", "https://data.delijn.be/stops/507503"], ["https://data.delijn.be/stops/505538", "https://data.delijn.be/stops/508803"], ["https://data.delijn.be/stops/405172", "https://data.delijn.be/stops/405217"], ["https://data.delijn.be/stops/405056", "https://data.delijn.be/stops/405059"], ["https://data.delijn.be/stops/102228", "https://data.delijn.be/stops/102736"], ["https://data.delijn.be/stops/102053", "https://data.delijn.be/stops/107460"], ["https://data.delijn.be/stops/306608", "https://data.delijn.be/stops/306621"], ["https://data.delijn.be/stops/408668", "https://data.delijn.be/stops/408671"], ["https://data.delijn.be/stops/401490", "https://data.delijn.be/stops/406888"], ["https://data.delijn.be/stops/202037", "https://data.delijn.be/stops/203038"], ["https://data.delijn.be/stops/503531", "https://data.delijn.be/stops/508869"], ["https://data.delijn.be/stops/302652", "https://data.delijn.be/stops/302656"], ["https://data.delijn.be/stops/304645", "https://data.delijn.be/stops/304647"], ["https://data.delijn.be/stops/409411", "https://data.delijn.be/stops/409759"], ["https://data.delijn.be/stops/208427", "https://data.delijn.be/stops/219002"], ["https://data.delijn.be/stops/301802", "https://data.delijn.be/stops/301818"], ["https://data.delijn.be/stops/504398", "https://data.delijn.be/stops/504442"], ["https://data.delijn.be/stops/307296", "https://data.delijn.be/stops/307327"], ["https://data.delijn.be/stops/401468", "https://data.delijn.be/stops/401887"], ["https://data.delijn.be/stops/402160", "https://data.delijn.be/stops/402161"], ["https://data.delijn.be/stops/208816", "https://data.delijn.be/stops/208817"], ["https://data.delijn.be/stops/208363", "https://data.delijn.be/stops/209362"], ["https://data.delijn.be/stops/509254", "https://data.delijn.be/stops/509715"], ["https://data.delijn.be/stops/507372", "https://data.delijn.be/stops/507376"], ["https://data.delijn.be/stops/103860", "https://data.delijn.be/stops/205610"], ["https://data.delijn.be/stops/503551", "https://data.delijn.be/stops/503577"], ["https://data.delijn.be/stops/105228", "https://data.delijn.be/stops/105231"], ["https://data.delijn.be/stops/403302", "https://data.delijn.be/stops/403303"], ["https://data.delijn.be/stops/204312", "https://data.delijn.be/stops/205354"], ["https://data.delijn.be/stops/300128", "https://data.delijn.be/stops/300144"], ["https://data.delijn.be/stops/200777", "https://data.delijn.be/stops/208326"], ["https://data.delijn.be/stops/502756", "https://data.delijn.be/stops/505650"], ["https://data.delijn.be/stops/404191", "https://data.delijn.be/stops/405984"], ["https://data.delijn.be/stops/301553", "https://data.delijn.be/stops/301558"], ["https://data.delijn.be/stops/301636", "https://data.delijn.be/stops/301639"], ["https://data.delijn.be/stops/404676", "https://data.delijn.be/stops/404677"], ["https://data.delijn.be/stops/303269", "https://data.delijn.be/stops/303277"], ["https://data.delijn.be/stops/107686", "https://data.delijn.be/stops/107687"], ["https://data.delijn.be/stops/307277", "https://data.delijn.be/stops/307278"], ["https://data.delijn.be/stops/109167", "https://data.delijn.be/stops/109168"], ["https://data.delijn.be/stops/105677", "https://data.delijn.be/stops/105711"], ["https://data.delijn.be/stops/308016", "https://data.delijn.be/stops/308020"], ["https://data.delijn.be/stops/505959", "https://data.delijn.be/stops/508664"], ["https://data.delijn.be/stops/504944", "https://data.delijn.be/stops/507202"], ["https://data.delijn.be/stops/409099", "https://data.delijn.be/stops/409107"], ["https://data.delijn.be/stops/103772", "https://data.delijn.be/stops/103773"], ["https://data.delijn.be/stops/206226", "https://data.delijn.be/stops/206228"], ["https://data.delijn.be/stops/200361", "https://data.delijn.be/stops/200362"], ["https://data.delijn.be/stops/503176", "https://data.delijn.be/stops/508176"], ["https://data.delijn.be/stops/304402", "https://data.delijn.be/stops/308056"], ["https://data.delijn.be/stops/301288", "https://data.delijn.be/stops/306122"], ["https://data.delijn.be/stops/104010", "https://data.delijn.be/stops/106892"], ["https://data.delijn.be/stops/405244", "https://data.delijn.be/stops/406325"], ["https://data.delijn.be/stops/504155", "https://data.delijn.be/stops/509155"], ["https://data.delijn.be/stops/502499", "https://data.delijn.be/stops/507499"], ["https://data.delijn.be/stops/503328", "https://data.delijn.be/stops/505286"], ["https://data.delijn.be/stops/200806", "https://data.delijn.be/stops/202214"], ["https://data.delijn.be/stops/108349", "https://data.delijn.be/stops/108352"], ["https://data.delijn.be/stops/103716", "https://data.delijn.be/stops/108693"], ["https://data.delijn.be/stops/102719", "https://data.delijn.be/stops/102722"], ["https://data.delijn.be/stops/203490", "https://data.delijn.be/stops/203507"], ["https://data.delijn.be/stops/200404", "https://data.delijn.be/stops/201725"], ["https://data.delijn.be/stops/501079", "https://data.delijn.be/stops/509368"], ["https://data.delijn.be/stops/206577", "https://data.delijn.be/stops/206836"], ["https://data.delijn.be/stops/105897", "https://data.delijn.be/stops/105901"], ["https://data.delijn.be/stops/102525", "https://data.delijn.be/stops/102528"], ["https://data.delijn.be/stops/409371", "https://data.delijn.be/stops/409379"], ["https://data.delijn.be/stops/301590", "https://data.delijn.be/stops/301592"], ["https://data.delijn.be/stops/206183", "https://data.delijn.be/stops/206957"], ["https://data.delijn.be/stops/300474", "https://data.delijn.be/stops/301572"], ["https://data.delijn.be/stops/202924", "https://data.delijn.be/stops/203923"], ["https://data.delijn.be/stops/103746", "https://data.delijn.be/stops/105795"], ["https://data.delijn.be/stops/400030", "https://data.delijn.be/stops/400034"], ["https://data.delijn.be/stops/204689", "https://data.delijn.be/stops/205690"], ["https://data.delijn.be/stops/405339", "https://data.delijn.be/stops/405342"], ["https://data.delijn.be/stops/208187", "https://data.delijn.be/stops/209188"], ["https://data.delijn.be/stops/408358", "https://data.delijn.be/stops/409825"], ["https://data.delijn.be/stops/405568", "https://data.delijn.be/stops/408486"], ["https://data.delijn.be/stops/300397", "https://data.delijn.be/stops/304568"], ["https://data.delijn.be/stops/502116", "https://data.delijn.be/stops/507725"], ["https://data.delijn.be/stops/304722", "https://data.delijn.be/stops/305269"], ["https://data.delijn.be/stops/206806", "https://data.delijn.be/stops/207806"], ["https://data.delijn.be/stops/103932", "https://data.delijn.be/stops/104904"], ["https://data.delijn.be/stops/406577", "https://data.delijn.be/stops/407184"], ["https://data.delijn.be/stops/501049", "https://data.delijn.be/stops/506049"], ["https://data.delijn.be/stops/506059", "https://data.delijn.be/stops/506061"], ["https://data.delijn.be/stops/300791", "https://data.delijn.be/stops/300792"], ["https://data.delijn.be/stops/302882", "https://data.delijn.be/stops/306275"], ["https://data.delijn.be/stops/410155", "https://data.delijn.be/stops/410156"], ["https://data.delijn.be/stops/106092", "https://data.delijn.be/stops/106094"], ["https://data.delijn.be/stops/501023", "https://data.delijn.be/stops/501632"], ["https://data.delijn.be/stops/303306", "https://data.delijn.be/stops/303312"], ["https://data.delijn.be/stops/409064", "https://data.delijn.be/stops/409100"], ["https://data.delijn.be/stops/507489", "https://data.delijn.be/stops/507509"], ["https://data.delijn.be/stops/504494", "https://data.delijn.be/stops/504502"], ["https://data.delijn.be/stops/207420", "https://data.delijn.be/stops/216014"], ["https://data.delijn.be/stops/107079", "https://data.delijn.be/stops/108173"], ["https://data.delijn.be/stops/408392", "https://data.delijn.be/stops/408393"], ["https://data.delijn.be/stops/301549", "https://data.delijn.be/stops/301563"], ["https://data.delijn.be/stops/303954", "https://data.delijn.be/stops/303958"], ["https://data.delijn.be/stops/408321", "https://data.delijn.be/stops/408324"], ["https://data.delijn.be/stops/204987", "https://data.delijn.be/stops/209259"], ["https://data.delijn.be/stops/204054", "https://data.delijn.be/stops/205055"], ["https://data.delijn.be/stops/404360", "https://data.delijn.be/stops/404361"], ["https://data.delijn.be/stops/401396", "https://data.delijn.be/stops/408418"], ["https://data.delijn.be/stops/303370", "https://data.delijn.be/stops/308892"], ["https://data.delijn.be/stops/403600", "https://data.delijn.be/stops/403617"], ["https://data.delijn.be/stops/300205", "https://data.delijn.be/stops/302114"], ["https://data.delijn.be/stops/400746", "https://data.delijn.be/stops/409598"], ["https://data.delijn.be/stops/209427", "https://data.delijn.be/stops/219002"], ["https://data.delijn.be/stops/300280", "https://data.delijn.be/stops/303819"], ["https://data.delijn.be/stops/504467", "https://data.delijn.be/stops/504571"], ["https://data.delijn.be/stops/105304", "https://data.delijn.be/stops/105308"], ["https://data.delijn.be/stops/206265", "https://data.delijn.be/stops/207602"], ["https://data.delijn.be/stops/202639", "https://data.delijn.be/stops/203185"], ["https://data.delijn.be/stops/104847", "https://data.delijn.be/stops/106864"], ["https://data.delijn.be/stops/206765", "https://data.delijn.be/stops/208617"], ["https://data.delijn.be/stops/107871", "https://data.delijn.be/stops/107879"], ["https://data.delijn.be/stops/503263", "https://data.delijn.be/stops/508263"], ["https://data.delijn.be/stops/304254", "https://data.delijn.be/stops/304299"], ["https://data.delijn.be/stops/101048", "https://data.delijn.be/stops/204606"], ["https://data.delijn.be/stops/102957", "https://data.delijn.be/stops/106775"], ["https://data.delijn.be/stops/300557", "https://data.delijn.be/stops/300566"], ["https://data.delijn.be/stops/404724", "https://data.delijn.be/stops/404834"], ["https://data.delijn.be/stops/503553", "https://data.delijn.be/stops/504277"], ["https://data.delijn.be/stops/406075", "https://data.delijn.be/stops/407168"], ["https://data.delijn.be/stops/502307", "https://data.delijn.be/stops/507309"], ["https://data.delijn.be/stops/300675", "https://data.delijn.be/stops/306745"], ["https://data.delijn.be/stops/503237", "https://data.delijn.be/stops/503397"], ["https://data.delijn.be/stops/502132", "https://data.delijn.be/stops/502579"], ["https://data.delijn.be/stops/200388", "https://data.delijn.be/stops/208240"], ["https://data.delijn.be/stops/506056", "https://data.delijn.be/stops/506491"], ["https://data.delijn.be/stops/302751", "https://data.delijn.be/stops/303220"], ["https://data.delijn.be/stops/101078", "https://data.delijn.be/stops/105973"], ["https://data.delijn.be/stops/201092", "https://data.delijn.be/stops/201093"], ["https://data.delijn.be/stops/505823", "https://data.delijn.be/stops/508320"], ["https://data.delijn.be/stops/204976", "https://data.delijn.be/stops/204977"], ["https://data.delijn.be/stops/205989", "https://data.delijn.be/stops/209548"], ["https://data.delijn.be/stops/108286", "https://data.delijn.be/stops/109364"], ["https://data.delijn.be/stops/208267", "https://data.delijn.be/stops/209268"], ["https://data.delijn.be/stops/202108", "https://data.delijn.be/stops/203185"], ["https://data.delijn.be/stops/208510", "https://data.delijn.be/stops/209158"], ["https://data.delijn.be/stops/302257", "https://data.delijn.be/stops/302264"], ["https://data.delijn.be/stops/400234", "https://data.delijn.be/stops/400235"], ["https://data.delijn.be/stops/105173", "https://data.delijn.be/stops/105176"], ["https://data.delijn.be/stops/304567", "https://data.delijn.be/stops/304610"], ["https://data.delijn.be/stops/406246", "https://data.delijn.be/stops/406247"], ["https://data.delijn.be/stops/407603", "https://data.delijn.be/stops/409796"], ["https://data.delijn.be/stops/500126", "https://data.delijn.be/stops/505081"], ["https://data.delijn.be/stops/102844", "https://data.delijn.be/stops/108035"], ["https://data.delijn.be/stops/105784", "https://data.delijn.be/stops/105787"], ["https://data.delijn.be/stops/204014", "https://data.delijn.be/stops/205363"], ["https://data.delijn.be/stops/101080", "https://data.delijn.be/stops/102680"], ["https://data.delijn.be/stops/301951", "https://data.delijn.be/stops/307894"], ["https://data.delijn.be/stops/300119", "https://data.delijn.be/stops/300121"], ["https://data.delijn.be/stops/306615", "https://data.delijn.be/stops/306617"], ["https://data.delijn.be/stops/101182", "https://data.delijn.be/stops/101220"], ["https://data.delijn.be/stops/503626", "https://data.delijn.be/stops/508623"], ["https://data.delijn.be/stops/101664", "https://data.delijn.be/stops/106485"], ["https://data.delijn.be/stops/102864", "https://data.delijn.be/stops/105936"], ["https://data.delijn.be/stops/206482", "https://data.delijn.be/stops/207453"], ["https://data.delijn.be/stops/206652", "https://data.delijn.be/stops/207652"], ["https://data.delijn.be/stops/301215", "https://data.delijn.be/stops/301216"], ["https://data.delijn.be/stops/503053", "https://data.delijn.be/stops/503054"], ["https://data.delijn.be/stops/305114", "https://data.delijn.be/stops/305115"], ["https://data.delijn.be/stops/405562", "https://data.delijn.be/stops/410059"], ["https://data.delijn.be/stops/109052", "https://data.delijn.be/stops/109068"], ["https://data.delijn.be/stops/208814", "https://data.delijn.be/stops/208837"], ["https://data.delijn.be/stops/402067", "https://data.delijn.be/stops/402068"], ["https://data.delijn.be/stops/101969", "https://data.delijn.be/stops/109298"], ["https://data.delijn.be/stops/102724", "https://data.delijn.be/stops/107005"], ["https://data.delijn.be/stops/501411", "https://data.delijn.be/stops/506414"], ["https://data.delijn.be/stops/504372", "https://data.delijn.be/stops/505787"], ["https://data.delijn.be/stops/104428", "https://data.delijn.be/stops/107369"], ["https://data.delijn.be/stops/206474", "https://data.delijn.be/stops/207473"], ["https://data.delijn.be/stops/408956", "https://data.delijn.be/stops/408963"], ["https://data.delijn.be/stops/400758", "https://data.delijn.be/stops/410047"], ["https://data.delijn.be/stops/102428", "https://data.delijn.be/stops/106227"], ["https://data.delijn.be/stops/208384", "https://data.delijn.be/stops/209620"], ["https://data.delijn.be/stops/302283", "https://data.delijn.be/stops/302287"], ["https://data.delijn.be/stops/502638", "https://data.delijn.be/stops/505694"], ["https://data.delijn.be/stops/407491", "https://data.delijn.be/stops/408507"], ["https://data.delijn.be/stops/407946", "https://data.delijn.be/stops/408057"], ["https://data.delijn.be/stops/304150", "https://data.delijn.be/stops/304157"], ["https://data.delijn.be/stops/407150", "https://data.delijn.be/stops/409500"], ["https://data.delijn.be/stops/104464", "https://data.delijn.be/stops/107955"], ["https://data.delijn.be/stops/208244", "https://data.delijn.be/stops/208794"], ["https://data.delijn.be/stops/300643", "https://data.delijn.be/stops/302476"], ["https://data.delijn.be/stops/208135", "https://data.delijn.be/stops/209134"], ["https://data.delijn.be/stops/406165", "https://data.delijn.be/stops/406264"], ["https://data.delijn.be/stops/206217", "https://data.delijn.be/stops/207806"], ["https://data.delijn.be/stops/208629", "https://data.delijn.be/stops/208630"], ["https://data.delijn.be/stops/504817", "https://data.delijn.be/stops/508557"], ["https://data.delijn.be/stops/203637", "https://data.delijn.be/stops/205071"], ["https://data.delijn.be/stops/204134", "https://data.delijn.be/stops/204147"], ["https://data.delijn.be/stops/404525", "https://data.delijn.be/stops/404554"], ["https://data.delijn.be/stops/109250", "https://data.delijn.be/stops/109266"], ["https://data.delijn.be/stops/303984", "https://data.delijn.be/stops/306827"], ["https://data.delijn.be/stops/102023", "https://data.delijn.be/stops/103982"], ["https://data.delijn.be/stops/206792", "https://data.delijn.be/stops/207631"], ["https://data.delijn.be/stops/502054", "https://data.delijn.be/stops/502057"], ["https://data.delijn.be/stops/504011", "https://data.delijn.be/stops/505298"], ["https://data.delijn.be/stops/107451", "https://data.delijn.be/stops/107453"], ["https://data.delijn.be/stops/305734", "https://data.delijn.be/stops/305754"], ["https://data.delijn.be/stops/501216", "https://data.delijn.be/stops/506212"], ["https://data.delijn.be/stops/404424", "https://data.delijn.be/stops/410102"], ["https://data.delijn.be/stops/508013", "https://data.delijn.be/stops/509815"], ["https://data.delijn.be/stops/307830", "https://data.delijn.be/stops/308543"], ["https://data.delijn.be/stops/108067", "https://data.delijn.be/stops/108069"], ["https://data.delijn.be/stops/206861", "https://data.delijn.be/stops/207488"], ["https://data.delijn.be/stops/301560", "https://data.delijn.be/stops/308083"], ["https://data.delijn.be/stops/403711", "https://data.delijn.be/stops/404062"], ["https://data.delijn.be/stops/400465", "https://data.delijn.be/stops/407643"], ["https://data.delijn.be/stops/206729", "https://data.delijn.be/stops/207657"], ["https://data.delijn.be/stops/203731", "https://data.delijn.be/stops/203916"], ["https://data.delijn.be/stops/407918", "https://data.delijn.be/stops/407919"], ["https://data.delijn.be/stops/202437", "https://data.delijn.be/stops/203430"], ["https://data.delijn.be/stops/505136", "https://data.delijn.be/stops/508664"], ["https://data.delijn.be/stops/209277", "https://data.delijn.be/stops/209494"], ["https://data.delijn.be/stops/107537", "https://data.delijn.be/stops/107887"], ["https://data.delijn.be/stops/206994", "https://data.delijn.be/stops/207980"], ["https://data.delijn.be/stops/206278", "https://data.delijn.be/stops/207278"], ["https://data.delijn.be/stops/502243", "https://data.delijn.be/stops/507153"], ["https://data.delijn.be/stops/502416", "https://data.delijn.be/stops/502435"], ["https://data.delijn.be/stops/405646", "https://data.delijn.be/stops/408649"], ["https://data.delijn.be/stops/308238", "https://data.delijn.be/stops/308244"], ["https://data.delijn.be/stops/104131", "https://data.delijn.be/stops/108429"], ["https://data.delijn.be/stops/506190", "https://data.delijn.be/stops/506464"], ["https://data.delijn.be/stops/501057", "https://data.delijn.be/stops/501361"], ["https://data.delijn.be/stops/302980", "https://data.delijn.be/stops/303022"], ["https://data.delijn.be/stops/300791", "https://data.delijn.be/stops/301012"], ["https://data.delijn.be/stops/503884", "https://data.delijn.be/stops/508881"], ["https://data.delijn.be/stops/503455", "https://data.delijn.be/stops/503970"], ["https://data.delijn.be/stops/403991", "https://data.delijn.be/stops/404022"], ["https://data.delijn.be/stops/207280", "https://data.delijn.be/stops/207398"], ["https://data.delijn.be/stops/200002", "https://data.delijn.be/stops/200003"], ["https://data.delijn.be/stops/206338", "https://data.delijn.be/stops/206366"], ["https://data.delijn.be/stops/305383", "https://data.delijn.be/stops/305384"], ["https://data.delijn.be/stops/406844", "https://data.delijn.be/stops/408626"], ["https://data.delijn.be/stops/206015", "https://data.delijn.be/stops/207026"], ["https://data.delijn.be/stops/307543", "https://data.delijn.be/stops/307579"], ["https://data.delijn.be/stops/504883", "https://data.delijn.be/stops/508590"], ["https://data.delijn.be/stops/404446", "https://data.delijn.be/stops/404536"], ["https://data.delijn.be/stops/306097", "https://data.delijn.be/stops/306098"], ["https://data.delijn.be/stops/101877", "https://data.delijn.be/stops/109492"], ["https://data.delijn.be/stops/407133", "https://data.delijn.be/stops/407343"], ["https://data.delijn.be/stops/208301", "https://data.delijn.be/stops/209301"], ["https://data.delijn.be/stops/102217", "https://data.delijn.be/stops/102219"], ["https://data.delijn.be/stops/308527", "https://data.delijn.be/stops/308529"], ["https://data.delijn.be/stops/202232", "https://data.delijn.be/stops/202233"], ["https://data.delijn.be/stops/106047", "https://data.delijn.be/stops/106048"], ["https://data.delijn.be/stops/101022", "https://data.delijn.be/stops/106045"], ["https://data.delijn.be/stops/505542", "https://data.delijn.be/stops/508802"], ["https://data.delijn.be/stops/106022", "https://data.delijn.be/stops/106026"], ["https://data.delijn.be/stops/109858", "https://data.delijn.be/stops/109892"], ["https://data.delijn.be/stops/303935", "https://data.delijn.be/stops/306143"], ["https://data.delijn.be/stops/304561", "https://data.delijn.be/stops/304562"], ["https://data.delijn.be/stops/308544", "https://data.delijn.be/stops/308956"], ["https://data.delijn.be/stops/502672", "https://data.delijn.be/stops/507672"], ["https://data.delijn.be/stops/208246", "https://data.delijn.be/stops/209245"], ["https://data.delijn.be/stops/506054", "https://data.delijn.be/stops/506061"], ["https://data.delijn.be/stops/302769", "https://data.delijn.be/stops/302778"], ["https://data.delijn.be/stops/408826", "https://data.delijn.be/stops/408833"], ["https://data.delijn.be/stops/207944", "https://data.delijn.be/stops/209552"], ["https://data.delijn.be/stops/102980", "https://data.delijn.be/stops/102985"], ["https://data.delijn.be/stops/404462", "https://data.delijn.be/stops/404496"], ["https://data.delijn.be/stops/403073", "https://data.delijn.be/stops/409317"], ["https://data.delijn.be/stops/206408", "https://data.delijn.be/stops/207408"], ["https://data.delijn.be/stops/102388", "https://data.delijn.be/stops/102599"], ["https://data.delijn.be/stops/400848", "https://data.delijn.be/stops/400854"], ["https://data.delijn.be/stops/505791", "https://data.delijn.be/stops/509409"], ["https://data.delijn.be/stops/202810", "https://data.delijn.be/stops/203886"], ["https://data.delijn.be/stops/101721", "https://data.delijn.be/stops/102904"], ["https://data.delijn.be/stops/300512", "https://data.delijn.be/stops/300538"], ["https://data.delijn.be/stops/208209", "https://data.delijn.be/stops/208210"], ["https://data.delijn.be/stops/303059", "https://data.delijn.be/stops/303150"], ["https://data.delijn.be/stops/306704", "https://data.delijn.be/stops/307935"], ["https://data.delijn.be/stops/103976", "https://data.delijn.be/stops/108360"], ["https://data.delijn.be/stops/204725", "https://data.delijn.be/stops/204727"], ["https://data.delijn.be/stops/103004", "https://data.delijn.be/stops/109303"], ["https://data.delijn.be/stops/400836", "https://data.delijn.be/stops/404378"], ["https://data.delijn.be/stops/505291", "https://data.delijn.be/stops/508620"], ["https://data.delijn.be/stops/202882", "https://data.delijn.be/stops/204975"], ["https://data.delijn.be/stops/103537", "https://data.delijn.be/stops/108220"], ["https://data.delijn.be/stops/503871", "https://data.delijn.be/stops/504755"], ["https://data.delijn.be/stops/503387", "https://data.delijn.be/stops/508252"], ["https://data.delijn.be/stops/305435", "https://data.delijn.be/stops/305520"], ["https://data.delijn.be/stops/303392", "https://data.delijn.be/stops/308796"], ["https://data.delijn.be/stops/106513", "https://data.delijn.be/stops/106518"], ["https://data.delijn.be/stops/308522", "https://data.delijn.be/stops/308523"], ["https://data.delijn.be/stops/401846", "https://data.delijn.be/stops/401852"], ["https://data.delijn.be/stops/102291", "https://data.delijn.be/stops/106379"], ["https://data.delijn.be/stops/505942", "https://data.delijn.be/stops/508052"], ["https://data.delijn.be/stops/404027", "https://data.delijn.be/stops/308752"], ["https://data.delijn.be/stops/109350", "https://data.delijn.be/stops/109351"], ["https://data.delijn.be/stops/300507", "https://data.delijn.be/stops/300509"], ["https://data.delijn.be/stops/104377", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/402702", "https://data.delijn.be/stops/402865"], ["https://data.delijn.be/stops/408260", "https://data.delijn.be/stops/408343"], ["https://data.delijn.be/stops/406651", "https://data.delijn.be/stops/407169"], ["https://data.delijn.be/stops/304005", "https://data.delijn.be/stops/304006"], ["https://data.delijn.be/stops/102867", "https://data.delijn.be/stops/106152"], ["https://data.delijn.be/stops/102054", "https://data.delijn.be/stops/103306"], ["https://data.delijn.be/stops/201753", "https://data.delijn.be/stops/209280"], ["https://data.delijn.be/stops/400861", "https://data.delijn.be/stops/400862"], ["https://data.delijn.be/stops/504179", "https://data.delijn.be/stops/504180"], ["https://data.delijn.be/stops/400682", "https://data.delijn.be/stops/406767"], ["https://data.delijn.be/stops/505503", "https://data.delijn.be/stops/505614"], ["https://data.delijn.be/stops/101869", "https://data.delijn.be/stops/105293"], ["https://data.delijn.be/stops/503200", "https://data.delijn.be/stops/508204"], ["https://data.delijn.be/stops/307279", "https://data.delijn.be/stops/308761"], ["https://data.delijn.be/stops/101632", "https://data.delijn.be/stops/102188"], ["https://data.delijn.be/stops/503239", "https://data.delijn.be/stops/508239"], ["https://data.delijn.be/stops/108919", "https://data.delijn.be/stops/108922"], ["https://data.delijn.be/stops/403379", "https://data.delijn.be/stops/403466"], ["https://data.delijn.be/stops/505194", "https://data.delijn.be/stops/505195"], ["https://data.delijn.be/stops/301929", "https://data.delijn.be/stops/301930"], ["https://data.delijn.be/stops/102991", "https://data.delijn.be/stops/105594"], ["https://data.delijn.be/stops/400257", "https://data.delijn.be/stops/405588"], ["https://data.delijn.be/stops/407676", "https://data.delijn.be/stops/407677"], ["https://data.delijn.be/stops/102700", "https://data.delijn.be/stops/103930"], ["https://data.delijn.be/stops/206547", "https://data.delijn.be/stops/206548"], ["https://data.delijn.be/stops/304333", "https://data.delijn.be/stops/304335"], ["https://data.delijn.be/stops/108649", "https://data.delijn.be/stops/108651"], ["https://data.delijn.be/stops/200166", "https://data.delijn.be/stops/203151"], ["https://data.delijn.be/stops/101385", "https://data.delijn.be/stops/103115"], ["https://data.delijn.be/stops/305189", "https://data.delijn.be/stops/308681"], ["https://data.delijn.be/stops/501124", "https://data.delijn.be/stops/506126"], ["https://data.delijn.be/stops/503600", "https://data.delijn.be/stops/505910"], ["https://data.delijn.be/stops/308727", "https://data.delijn.be/stops/308729"], ["https://data.delijn.be/stops/401525", "https://data.delijn.be/stops/403812"], ["https://data.delijn.be/stops/209102", "https://data.delijn.be/stops/209103"], ["https://data.delijn.be/stops/409395", "https://data.delijn.be/stops/409397"], ["https://data.delijn.be/stops/203430", "https://data.delijn.be/stops/203438"], ["https://data.delijn.be/stops/300277", "https://data.delijn.be/stops/306190"], ["https://data.delijn.be/stops/505636", "https://data.delijn.be/stops/505637"], ["https://data.delijn.be/stops/501614", "https://data.delijn.be/stops/506620"], ["https://data.delijn.be/stops/202258", "https://data.delijn.be/stops/203258"], ["https://data.delijn.be/stops/206976", "https://data.delijn.be/stops/207975"], ["https://data.delijn.be/stops/204162", "https://data.delijn.be/stops/206279"], ["https://data.delijn.be/stops/201380", "https://data.delijn.be/stops/201540"], ["https://data.delijn.be/stops/402240", "https://data.delijn.be/stops/404566"], ["https://data.delijn.be/stops/108933", "https://data.delijn.be/stops/108934"], ["https://data.delijn.be/stops/101928", "https://data.delijn.be/stops/108191"], ["https://data.delijn.be/stops/105724", "https://data.delijn.be/stops/107090"], ["https://data.delijn.be/stops/405344", "https://data.delijn.be/stops/308823"], ["https://data.delijn.be/stops/401848", "https://data.delijn.be/stops/406348"], ["https://data.delijn.be/stops/202185", "https://data.delijn.be/stops/204773"], ["https://data.delijn.be/stops/305229", "https://data.delijn.be/stops/305233"], ["https://data.delijn.be/stops/302328", "https://data.delijn.be/stops/304009"], ["https://data.delijn.be/stops/409087", "https://data.delijn.be/stops/409211"], ["https://data.delijn.be/stops/300086", "https://data.delijn.be/stops/307357"], ["https://data.delijn.be/stops/201775", "https://data.delijn.be/stops/209288"], ["https://data.delijn.be/stops/104448", "https://data.delijn.be/stops/109918"], ["https://data.delijn.be/stops/103501", "https://data.delijn.be/stops/109141"], ["https://data.delijn.be/stops/106534", "https://data.delijn.be/stops/106535"], ["https://data.delijn.be/stops/206722", "https://data.delijn.be/stops/207129"], ["https://data.delijn.be/stops/501005", "https://data.delijn.be/stops/501641"], ["https://data.delijn.be/stops/206531", "https://data.delijn.be/stops/206532"], ["https://data.delijn.be/stops/506036", "https://data.delijn.be/stops/506284"], ["https://data.delijn.be/stops/304304", "https://data.delijn.be/stops/304342"], ["https://data.delijn.be/stops/405375", "https://data.delijn.be/stops/410067"], ["https://data.delijn.be/stops/103162", "https://data.delijn.be/stops/109740"], ["https://data.delijn.be/stops/300729", "https://data.delijn.be/stops/300835"], ["https://data.delijn.be/stops/402042", "https://data.delijn.be/stops/402177"], ["https://data.delijn.be/stops/102479", "https://data.delijn.be/stops/400176"], ["https://data.delijn.be/stops/401012", "https://data.delijn.be/stops/401149"], ["https://data.delijn.be/stops/203532", "https://data.delijn.be/stops/205174"], ["https://data.delijn.be/stops/307110", "https://data.delijn.be/stops/307111"], ["https://data.delijn.be/stops/107832", "https://data.delijn.be/stops/107833"], ["https://data.delijn.be/stops/502190", "https://data.delijn.be/stops/507190"], ["https://data.delijn.be/stops/201828", "https://data.delijn.be/stops/209282"], ["https://data.delijn.be/stops/303659", "https://data.delijn.be/stops/303660"], ["https://data.delijn.be/stops/202159", "https://data.delijn.be/stops/203158"], ["https://data.delijn.be/stops/304691", "https://data.delijn.be/stops/307254"], ["https://data.delijn.be/stops/501242", "https://data.delijn.be/stops/501243"], ["https://data.delijn.be/stops/300657", "https://data.delijn.be/stops/302476"], ["https://data.delijn.be/stops/405090", "https://data.delijn.be/stops/405092"], ["https://data.delijn.be/stops/202370", "https://data.delijn.be/stops/203587"], ["https://data.delijn.be/stops/402301", "https://data.delijn.be/stops/402303"], ["https://data.delijn.be/stops/400398", "https://data.delijn.be/stops/400404"], ["https://data.delijn.be/stops/101146", "https://data.delijn.be/stops/101148"], ["https://data.delijn.be/stops/503198", "https://data.delijn.be/stops/503213"], ["https://data.delijn.be/stops/104987", "https://data.delijn.be/stops/109695"], ["https://data.delijn.be/stops/301949", "https://data.delijn.be/stops/305452"], ["https://data.delijn.be/stops/207463", "https://data.delijn.be/stops/216010"], ["https://data.delijn.be/stops/107030", "https://data.delijn.be/stops/107032"], ["https://data.delijn.be/stops/204193", "https://data.delijn.be/stops/204194"], ["https://data.delijn.be/stops/200558", "https://data.delijn.be/stops/201662"], ["https://data.delijn.be/stops/501132", "https://data.delijn.be/stops/506137"], ["https://data.delijn.be/stops/109539", "https://data.delijn.be/stops/109594"], ["https://data.delijn.be/stops/502149", "https://data.delijn.be/stops/507149"], ["https://data.delijn.be/stops/402573", "https://data.delijn.be/stops/402578"], ["https://data.delijn.be/stops/504602", "https://data.delijn.be/stops/504604"], ["https://data.delijn.be/stops/301429", "https://data.delijn.be/stops/301430"], ["https://data.delijn.be/stops/300407", "https://data.delijn.be/stops/300408"], ["https://data.delijn.be/stops/401513", "https://data.delijn.be/stops/401549"], ["https://data.delijn.be/stops/300945", "https://data.delijn.be/stops/301013"], ["https://data.delijn.be/stops/208721", "https://data.delijn.be/stops/209721"], ["https://data.delijn.be/stops/204584", "https://data.delijn.be/stops/206391"], ["https://data.delijn.be/stops/206241", "https://data.delijn.be/stops/207242"], ["https://data.delijn.be/stops/207737", "https://data.delijn.be/stops/207738"], ["https://data.delijn.be/stops/401934", "https://data.delijn.be/stops/401935"], ["https://data.delijn.be/stops/400219", "https://data.delijn.be/stops/410001"], ["https://data.delijn.be/stops/405825", "https://data.delijn.be/stops/409732"], ["https://data.delijn.be/stops/407962", "https://data.delijn.be/stops/408427"], ["https://data.delijn.be/stops/508191", "https://data.delijn.be/stops/508463"], ["https://data.delijn.be/stops/302897", "https://data.delijn.be/stops/303106"], ["https://data.delijn.be/stops/300128", "https://data.delijn.be/stops/307849"], ["https://data.delijn.be/stops/101704", "https://data.delijn.be/stops/102915"], ["https://data.delijn.be/stops/302121", "https://data.delijn.be/stops/304141"], ["https://data.delijn.be/stops/503906", "https://data.delijn.be/stops/508906"], ["https://data.delijn.be/stops/303554", "https://data.delijn.be/stops/303555"], ["https://data.delijn.be/stops/502389", "https://data.delijn.be/stops/507389"], ["https://data.delijn.be/stops/502481", "https://data.delijn.be/stops/505318"], ["https://data.delijn.be/stops/200717", "https://data.delijn.be/stops/203578"], ["https://data.delijn.be/stops/303676", "https://data.delijn.be/stops/306313"], ["https://data.delijn.be/stops/200979", "https://data.delijn.be/stops/210132"], ["https://data.delijn.be/stops/503170", "https://data.delijn.be/stops/508170"], ["https://data.delijn.be/stops/400145", "https://data.delijn.be/stops/400413"], ["https://data.delijn.be/stops/504326", "https://data.delijn.be/stops/509335"], ["https://data.delijn.be/stops/302948", "https://data.delijn.be/stops/302993"], ["https://data.delijn.be/stops/404437", "https://data.delijn.be/stops/404473"], ["https://data.delijn.be/stops/402236", "https://data.delijn.be/stops/402294"], ["https://data.delijn.be/stops/303459", "https://data.delijn.be/stops/303480"], ["https://data.delijn.be/stops/105668", "https://data.delijn.be/stops/106046"], ["https://data.delijn.be/stops/108753", "https://data.delijn.be/stops/108756"], ["https://data.delijn.be/stops/504780", "https://data.delijn.be/stops/507684"], ["https://data.delijn.be/stops/303501", "https://data.delijn.be/stops/303503"], ["https://data.delijn.be/stops/106106", "https://data.delijn.be/stops/106122"], ["https://data.delijn.be/stops/300170", "https://data.delijn.be/stops/301218"], ["https://data.delijn.be/stops/107968", "https://data.delijn.be/stops/108436"], ["https://data.delijn.be/stops/208050", "https://data.delijn.be/stops/209485"], ["https://data.delijn.be/stops/500929", "https://data.delijn.be/stops/500938"], ["https://data.delijn.be/stops/301355", "https://data.delijn.be/stops/301368"], ["https://data.delijn.be/stops/402845", "https://data.delijn.be/stops/409006"], ["https://data.delijn.be/stops/408073", "https://data.delijn.be/stops/410127"], ["https://data.delijn.be/stops/305152", "https://data.delijn.be/stops/305156"], ["https://data.delijn.be/stops/102272", "https://data.delijn.be/stops/204607"], ["https://data.delijn.be/stops/300326", "https://data.delijn.be/stops/304458"], ["https://data.delijn.be/stops/101811", "https://data.delijn.be/stops/104677"], ["https://data.delijn.be/stops/403144", "https://data.delijn.be/stops/410275"], ["https://data.delijn.be/stops/305164", "https://data.delijn.be/stops/307086"], ["https://data.delijn.be/stops/502011", "https://data.delijn.be/stops/507002"], ["https://data.delijn.be/stops/104821", "https://data.delijn.be/stops/108507"], ["https://data.delijn.be/stops/204391", "https://data.delijn.be/stops/205390"], ["https://data.delijn.be/stops/203049", "https://data.delijn.be/stops/203227"], ["https://data.delijn.be/stops/109038", "https://data.delijn.be/stops/109081"], ["https://data.delijn.be/stops/503086", "https://data.delijn.be/stops/505388"], ["https://data.delijn.be/stops/101199", "https://data.delijn.be/stops/101207"], ["https://data.delijn.be/stops/304015", "https://data.delijn.be/stops/304051"], ["https://data.delijn.be/stops/107148", "https://data.delijn.be/stops/109380"], ["https://data.delijn.be/stops/400747", "https://data.delijn.be/stops/409578"], ["https://data.delijn.be/stops/504063", "https://data.delijn.be/stops/504065"], ["https://data.delijn.be/stops/406037", "https://data.delijn.be/stops/406069"], ["https://data.delijn.be/stops/401506", "https://data.delijn.be/stops/401893"], ["https://data.delijn.be/stops/104127", "https://data.delijn.be/stops/105165"], ["https://data.delijn.be/stops/302707", "https://data.delijn.be/stops/302708"], ["https://data.delijn.be/stops/503969", "https://data.delijn.be/stops/508963"], ["https://data.delijn.be/stops/502102", "https://data.delijn.be/stops/502120"], ["https://data.delijn.be/stops/504062", "https://data.delijn.be/stops/509062"], ["https://data.delijn.be/stops/405323", "https://data.delijn.be/stops/405327"], ["https://data.delijn.be/stops/104606", "https://data.delijn.be/stops/107376"], ["https://data.delijn.be/stops/403296", "https://data.delijn.be/stops/410323"], ["https://data.delijn.be/stops/108019", "https://data.delijn.be/stops/108021"], ["https://data.delijn.be/stops/410144", "https://data.delijn.be/stops/410145"], ["https://data.delijn.be/stops/204982", "https://data.delijn.be/stops/206679"], ["https://data.delijn.be/stops/201313", "https://data.delijn.be/stops/201527"], ["https://data.delijn.be/stops/200246", "https://data.delijn.be/stops/201426"], ["https://data.delijn.be/stops/403705", "https://data.delijn.be/stops/403779"], ["https://data.delijn.be/stops/200802", "https://data.delijn.be/stops/200877"], ["https://data.delijn.be/stops/304064", "https://data.delijn.be/stops/304080"], ["https://data.delijn.be/stops/204097", "https://data.delijn.be/stops/204245"], ["https://data.delijn.be/stops/402132", "https://data.delijn.be/stops/402133"], ["https://data.delijn.be/stops/408560", "https://data.delijn.be/stops/408561"], ["https://data.delijn.be/stops/504021", "https://data.delijn.be/stops/505210"], ["https://data.delijn.be/stops/505260", "https://data.delijn.be/stops/508221"], ["https://data.delijn.be/stops/205119", "https://data.delijn.be/stops/205120"], ["https://data.delijn.be/stops/204436", "https://data.delijn.be/stops/205436"], ["https://data.delijn.be/stops/102468", "https://data.delijn.be/stops/406849"], ["https://data.delijn.be/stops/200116", "https://data.delijn.be/stops/200117"], ["https://data.delijn.be/stops/405067", "https://data.delijn.be/stops/405893"], ["https://data.delijn.be/stops/202121", "https://data.delijn.be/stops/202638"], ["https://data.delijn.be/stops/304395", "https://data.delijn.be/stops/307413"], ["https://data.delijn.be/stops/508921", "https://data.delijn.be/stops/508933"], ["https://data.delijn.be/stops/305147", "https://data.delijn.be/stops/305186"], ["https://data.delijn.be/stops/106667", "https://data.delijn.be/stops/106669"], ["https://data.delijn.be/stops/402790", "https://data.delijn.be/stops/402792"], ["https://data.delijn.be/stops/505783", "https://data.delijn.be/stops/507068"], ["https://data.delijn.be/stops/504830", "https://data.delijn.be/stops/508179"], ["https://data.delijn.be/stops/403254", "https://data.delijn.be/stops/403472"], ["https://data.delijn.be/stops/504027", "https://data.delijn.be/stops/509484"], ["https://data.delijn.be/stops/102407", "https://data.delijn.be/stops/405031"], ["https://data.delijn.be/stops/101988", "https://data.delijn.be/stops/103322"], ["https://data.delijn.be/stops/107857", "https://data.delijn.be/stops/208900"], ["https://data.delijn.be/stops/501518", "https://data.delijn.be/stops/506080"], ["https://data.delijn.be/stops/201197", "https://data.delijn.be/stops/201735"], ["https://data.delijn.be/stops/502753", "https://data.delijn.be/stops/509699"], ["https://data.delijn.be/stops/208314", "https://data.delijn.be/stops/208770"], ["https://data.delijn.be/stops/303115", "https://data.delijn.be/stops/306704"], ["https://data.delijn.be/stops/102121", "https://data.delijn.be/stops/103489"], ["https://data.delijn.be/stops/400880", "https://data.delijn.be/stops/409539"], ["https://data.delijn.be/stops/106933", "https://data.delijn.be/stops/108806"], ["https://data.delijn.be/stops/504801", "https://data.delijn.be/stops/504803"], ["https://data.delijn.be/stops/504059", "https://data.delijn.be/stops/504062"], ["https://data.delijn.be/stops/105716", "https://data.delijn.be/stops/106079"], ["https://data.delijn.be/stops/401300", "https://data.delijn.be/stops/401301"], ["https://data.delijn.be/stops/501577", "https://data.delijn.be/stops/508820"], ["https://data.delijn.be/stops/507684", "https://data.delijn.be/stops/508170"], ["https://data.delijn.be/stops/200331", "https://data.delijn.be/stops/200961"], ["https://data.delijn.be/stops/202634", "https://data.delijn.be/stops/203634"], ["https://data.delijn.be/stops/408006", "https://data.delijn.be/stops/408007"], ["https://data.delijn.be/stops/307357", "https://data.delijn.be/stops/307358"], ["https://data.delijn.be/stops/200544", "https://data.delijn.be/stops/205941"], ["https://data.delijn.be/stops/200343", "https://data.delijn.be/stops/201343"], ["https://data.delijn.be/stops/104894", "https://data.delijn.be/stops/105266"], ["https://data.delijn.be/stops/307381", "https://data.delijn.be/stops/308274"], ["https://data.delijn.be/stops/403956", "https://data.delijn.be/stops/404019"], ["https://data.delijn.be/stops/206720", "https://data.delijn.be/stops/206721"], ["https://data.delijn.be/stops/208549", "https://data.delijn.be/stops/208556"], ["https://data.delijn.be/stops/304043", "https://data.delijn.be/stops/306810"], ["https://data.delijn.be/stops/502541", "https://data.delijn.be/stops/502765"], ["https://data.delijn.be/stops/502549", "https://data.delijn.be/stops/502663"], ["https://data.delijn.be/stops/108451", "https://data.delijn.be/stops/108510"], ["https://data.delijn.be/stops/303023", "https://data.delijn.be/stops/307727"], ["https://data.delijn.be/stops/207626", "https://data.delijn.be/stops/207627"], ["https://data.delijn.be/stops/203260", "https://data.delijn.be/stops/203261"], ["https://data.delijn.be/stops/408422", "https://data.delijn.be/stops/408490"], ["https://data.delijn.be/stops/102223", "https://data.delijn.be/stops/105542"], ["https://data.delijn.be/stops/204310", "https://data.delijn.be/stops/205310"], ["https://data.delijn.be/stops/206931", "https://data.delijn.be/stops/207108"], ["https://data.delijn.be/stops/107127", "https://data.delijn.be/stops/107128"], ["https://data.delijn.be/stops/508292", "https://data.delijn.be/stops/508293"], ["https://data.delijn.be/stops/503768", "https://data.delijn.be/stops/503769"], ["https://data.delijn.be/stops/202176", "https://data.delijn.be/stops/202177"], ["https://data.delijn.be/stops/305169", "https://data.delijn.be/stops/306967"], ["https://data.delijn.be/stops/302681", "https://data.delijn.be/stops/308081"], ["https://data.delijn.be/stops/203888", "https://data.delijn.be/stops/207426"], ["https://data.delijn.be/stops/407995", "https://data.delijn.be/stops/408166"], ["https://data.delijn.be/stops/405910", "https://data.delijn.be/stops/405929"], ["https://data.delijn.be/stops/105033", "https://data.delijn.be/stops/106715"], ["https://data.delijn.be/stops/400562", "https://data.delijn.be/stops/403062"], ["https://data.delijn.be/stops/205020", "https://data.delijn.be/stops/205021"], ["https://data.delijn.be/stops/400732", "https://data.delijn.be/stops/400903"], ["https://data.delijn.be/stops/504227", "https://data.delijn.be/stops/509225"], ["https://data.delijn.be/stops/210069", "https://data.delijn.be/stops/210126"], ["https://data.delijn.be/stops/405414", "https://data.delijn.be/stops/302826"], ["https://data.delijn.be/stops/303274", "https://data.delijn.be/stops/303276"], ["https://data.delijn.be/stops/104133", "https://data.delijn.be/stops/104637"], ["https://data.delijn.be/stops/102009", "https://data.delijn.be/stops/105974"], ["https://data.delijn.be/stops/201135", "https://data.delijn.be/stops/201408"], ["https://data.delijn.be/stops/405776", "https://data.delijn.be/stops/409426"], ["https://data.delijn.be/stops/303188", "https://data.delijn.be/stops/303189"], ["https://data.delijn.be/stops/406999", "https://data.delijn.be/stops/408624"], ["https://data.delijn.be/stops/209093", "https://data.delijn.be/stops/209629"], ["https://data.delijn.be/stops/206161", "https://data.delijn.be/stops/207159"], ["https://data.delijn.be/stops/502257", "https://data.delijn.be/stops/507263"], ["https://data.delijn.be/stops/108752", "https://data.delijn.be/stops/109871"], ["https://data.delijn.be/stops/202420", "https://data.delijn.be/stops/203420"], ["https://data.delijn.be/stops/509139", "https://data.delijn.be/stops/509142"], ["https://data.delijn.be/stops/305670", "https://data.delijn.be/stops/305671"], ["https://data.delijn.be/stops/405191", "https://data.delijn.be/stops/405249"], ["https://data.delijn.be/stops/101047", "https://data.delijn.be/stops/109869"], ["https://data.delijn.be/stops/405751", "https://data.delijn.be/stops/408319"], ["https://data.delijn.be/stops/509141", "https://data.delijn.be/stops/509146"], ["https://data.delijn.be/stops/503158", "https://data.delijn.be/stops/508158"], ["https://data.delijn.be/stops/204308", "https://data.delijn.be/stops/205307"], ["https://data.delijn.be/stops/408262", "https://data.delijn.be/stops/408386"], ["https://data.delijn.be/stops/404559", "https://data.delijn.be/stops/405447"], ["https://data.delijn.be/stops/504832", "https://data.delijn.be/stops/509099"], ["https://data.delijn.be/stops/502754", "https://data.delijn.be/stops/507754"], ["https://data.delijn.be/stops/206981", "https://data.delijn.be/stops/206982"], ["https://data.delijn.be/stops/501197", "https://data.delijn.be/stops/501498"], ["https://data.delijn.be/stops/204181", "https://data.delijn.be/stops/204182"], ["https://data.delijn.be/stops/406291", "https://data.delijn.be/stops/406416"], ["https://data.delijn.be/stops/206499", "https://data.delijn.be/stops/206519"], ["https://data.delijn.be/stops/505025", "https://data.delijn.be/stops/507237"], ["https://data.delijn.be/stops/502511", "https://data.delijn.be/stops/507489"], ["https://data.delijn.be/stops/300615", "https://data.delijn.be/stops/303243"], ["https://data.delijn.be/stops/408268", "https://data.delijn.be/stops/408279"], ["https://data.delijn.be/stops/206314", "https://data.delijn.be/stops/207314"], ["https://data.delijn.be/stops/102657", "https://data.delijn.be/stops/109916"], ["https://data.delijn.be/stops/400752", "https://data.delijn.be/stops/409578"], ["https://data.delijn.be/stops/300428", "https://data.delijn.be/stops/300446"], ["https://data.delijn.be/stops/305596", "https://data.delijn.be/stops/305597"], ["https://data.delijn.be/stops/208445", "https://data.delijn.be/stops/208446"], ["https://data.delijn.be/stops/204174", "https://data.delijn.be/stops/204389"], ["https://data.delijn.be/stops/400099", "https://data.delijn.be/stops/403328"], ["https://data.delijn.be/stops/505090", "https://data.delijn.be/stops/507539"], ["https://data.delijn.be/stops/301747", "https://data.delijn.be/stops/308413"], ["https://data.delijn.be/stops/304986", "https://data.delijn.be/stops/308021"], ["https://data.delijn.be/stops/303859", "https://data.delijn.be/stops/303860"], ["https://data.delijn.be/stops/104429", "https://data.delijn.be/stops/108348"], ["https://data.delijn.be/stops/507620", "https://data.delijn.be/stops/508087"], ["https://data.delijn.be/stops/407649", "https://data.delijn.be/stops/407703"], ["https://data.delijn.be/stops/300097", "https://data.delijn.be/stops/306852"], ["https://data.delijn.be/stops/302481", "https://data.delijn.be/stops/302672"], ["https://data.delijn.be/stops/102656", "https://data.delijn.be/stops/107922"], ["https://data.delijn.be/stops/103299", "https://data.delijn.be/stops/107035"], ["https://data.delijn.be/stops/208056", "https://data.delijn.be/stops/208057"], ["https://data.delijn.be/stops/306692", "https://data.delijn.be/stops/308784"], ["https://data.delijn.be/stops/503505", "https://data.delijn.be/stops/505659"], ["https://data.delijn.be/stops/504578", "https://data.delijn.be/stops/509575"], ["https://data.delijn.be/stops/406355", "https://data.delijn.be/stops/410189"], ["https://data.delijn.be/stops/208086", "https://data.delijn.be/stops/209085"], ["https://data.delijn.be/stops/101209", "https://data.delijn.be/stops/104909"], ["https://data.delijn.be/stops/401049", "https://data.delijn.be/stops/401131"], ["https://data.delijn.be/stops/504753", "https://data.delijn.be/stops/508171"], ["https://data.delijn.be/stops/305262", "https://data.delijn.be/stops/305298"], ["https://data.delijn.be/stops/501155", "https://data.delijn.be/stops/501690"], ["https://data.delijn.be/stops/106735", "https://data.delijn.be/stops/106737"], ["https://data.delijn.be/stops/503833", "https://data.delijn.be/stops/508833"], ["https://data.delijn.be/stops/507374", "https://data.delijn.be/stops/507564"], ["https://data.delijn.be/stops/405917", "https://data.delijn.be/stops/405967"], ["https://data.delijn.be/stops/407337", "https://data.delijn.be/stops/407758"], ["https://data.delijn.be/stops/504122", "https://data.delijn.be/stops/504126"], ["https://data.delijn.be/stops/306002", "https://data.delijn.be/stops/307505"], ["https://data.delijn.be/stops/302995", "https://data.delijn.be/stops/307229"], ["https://data.delijn.be/stops/103298", "https://data.delijn.be/stops/105088"], ["https://data.delijn.be/stops/206177", "https://data.delijn.be/stops/303840"], ["https://data.delijn.be/stops/306709", "https://data.delijn.be/stops/306710"], ["https://data.delijn.be/stops/402365", "https://data.delijn.be/stops/410071"], ["https://data.delijn.be/stops/103157", "https://data.delijn.be/stops/109045"], ["https://data.delijn.be/stops/506265", "https://data.delijn.be/stops/506332"], ["https://data.delijn.be/stops/300350", "https://data.delijn.be/stops/304063"], ["https://data.delijn.be/stops/102592", "https://data.delijn.be/stops/108564"], ["https://data.delijn.be/stops/206736", "https://data.delijn.be/stops/206984"], ["https://data.delijn.be/stops/103616", "https://data.delijn.be/stops/103617"], ["https://data.delijn.be/stops/305195", "https://data.delijn.be/stops/305202"], ["https://data.delijn.be/stops/202744", "https://data.delijn.be/stops/208723"], ["https://data.delijn.be/stops/401136", "https://data.delijn.be/stops/403750"], ["https://data.delijn.be/stops/301042", "https://data.delijn.be/stops/301073"], ["https://data.delijn.be/stops/502929", "https://data.delijn.be/stops/508730"], ["https://data.delijn.be/stops/305599", "https://data.delijn.be/stops/305604"], ["https://data.delijn.be/stops/303843", "https://data.delijn.be/stops/303844"], ["https://data.delijn.be/stops/507765", "https://data.delijn.be/stops/508189"], ["https://data.delijn.be/stops/502301", "https://data.delijn.be/stops/502313"], ["https://data.delijn.be/stops/103263", "https://data.delijn.be/stops/205629"], ["https://data.delijn.be/stops/408824", "https://data.delijn.be/stops/408829"], ["https://data.delijn.be/stops/108831", "https://data.delijn.be/stops/108834"], ["https://data.delijn.be/stops/206416", "https://data.delijn.be/stops/207416"], ["https://data.delijn.be/stops/204413", "https://data.delijn.be/stops/205396"], ["https://data.delijn.be/stops/206969", "https://data.delijn.be/stops/301428"], ["https://data.delijn.be/stops/407712", "https://data.delijn.be/stops/407714"], ["https://data.delijn.be/stops/406609", "https://data.delijn.be/stops/406612"], ["https://data.delijn.be/stops/304891", "https://data.delijn.be/stops/304905"], ["https://data.delijn.be/stops/202915", "https://data.delijn.be/stops/203915"], ["https://data.delijn.be/stops/105357", "https://data.delijn.be/stops/105593"], ["https://data.delijn.be/stops/405300", "https://data.delijn.be/stops/405401"], ["https://data.delijn.be/stops/505414", "https://data.delijn.be/stops/509017"], ["https://data.delijn.be/stops/504434", "https://data.delijn.be/stops/505785"], ["https://data.delijn.be/stops/507684", "https://data.delijn.be/stops/508239"], ["https://data.delijn.be/stops/504265", "https://data.delijn.be/stops/509266"], ["https://data.delijn.be/stops/407746", "https://data.delijn.be/stops/407755"], ["https://data.delijn.be/stops/216014", "https://data.delijn.be/stops/306732"], ["https://data.delijn.be/stops/204297", "https://data.delijn.be/stops/205552"], ["https://data.delijn.be/stops/400264", "https://data.delijn.be/stops/400923"], ["https://data.delijn.be/stops/104741", "https://data.delijn.be/stops/104762"], ["https://data.delijn.be/stops/305876", "https://data.delijn.be/stops/308422"], ["https://data.delijn.be/stops/108932", "https://data.delijn.be/stops/108933"], ["https://data.delijn.be/stops/305738", "https://data.delijn.be/stops/305739"], ["https://data.delijn.be/stops/302268", "https://data.delijn.be/stops/306371"], ["https://data.delijn.be/stops/504491", "https://data.delijn.be/stops/509637"], ["https://data.delijn.be/stops/203367", "https://data.delijn.be/stops/203395"], ["https://data.delijn.be/stops/304479", "https://data.delijn.be/stops/304506"], ["https://data.delijn.be/stops/300261", "https://data.delijn.be/stops/304950"], ["https://data.delijn.be/stops/502503", "https://data.delijn.be/stops/507491"], ["https://data.delijn.be/stops/505786", "https://data.delijn.be/stops/509461"], ["https://data.delijn.be/stops/304203", "https://data.delijn.be/stops/305354"], ["https://data.delijn.be/stops/503493", "https://data.delijn.be/stops/505134"], ["https://data.delijn.be/stops/106782", "https://data.delijn.be/stops/106784"], ["https://data.delijn.be/stops/208237", "https://data.delijn.be/stops/209243"], ["https://data.delijn.be/stops/209789", "https://data.delijn.be/stops/209795"], ["https://data.delijn.be/stops/200832", "https://data.delijn.be/stops/505646"], ["https://data.delijn.be/stops/305036", "https://data.delijn.be/stops/305039"], ["https://data.delijn.be/stops/406210", "https://data.delijn.be/stops/406278"], ["https://data.delijn.be/stops/503057", "https://data.delijn.be/stops/509844"], ["https://data.delijn.be/stops/201301", "https://data.delijn.be/stops/201323"], ["https://data.delijn.be/stops/405962", "https://data.delijn.be/stops/405973"], ["https://data.delijn.be/stops/401019", "https://data.delijn.be/stops/403754"], ["https://data.delijn.be/stops/504370", "https://data.delijn.be/stops/504663"], ["https://data.delijn.be/stops/206429", "https://data.delijn.be/stops/207429"], ["https://data.delijn.be/stops/103929", "https://data.delijn.be/stops/103931"], ["https://data.delijn.be/stops/401157", "https://data.delijn.be/stops/409427"], ["https://data.delijn.be/stops/101969", "https://data.delijn.be/stops/103004"], ["https://data.delijn.be/stops/301856", "https://data.delijn.be/stops/302012"], ["https://data.delijn.be/stops/305722", "https://data.delijn.be/stops/306308"], ["https://data.delijn.be/stops/504324", "https://data.delijn.be/stops/509407"], ["https://data.delijn.be/stops/502914", "https://data.delijn.be/stops/507020"], ["https://data.delijn.be/stops/503647", "https://data.delijn.be/stops/508647"], ["https://data.delijn.be/stops/302521", "https://data.delijn.be/stops/308887"], ["https://data.delijn.be/stops/103042", "https://data.delijn.be/stops/106810"], ["https://data.delijn.be/stops/105768", "https://data.delijn.be/stops/105771"], ["https://data.delijn.be/stops/402304", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/504255", "https://data.delijn.be/stops/505362"], ["https://data.delijn.be/stops/304723", "https://data.delijn.be/stops/304744"], ["https://data.delijn.be/stops/200908", "https://data.delijn.be/stops/200948"], ["https://data.delijn.be/stops/501200", "https://data.delijn.be/stops/506425"], ["https://data.delijn.be/stops/206401", "https://data.delijn.be/stops/206402"], ["https://data.delijn.be/stops/206784", "https://data.delijn.be/stops/208610"], ["https://data.delijn.be/stops/201892", "https://data.delijn.be/stops/209823"], ["https://data.delijn.be/stops/407004", "https://data.delijn.be/stops/407046"], ["https://data.delijn.be/stops/308148", "https://data.delijn.be/stops/308174"], ["https://data.delijn.be/stops/502002", "https://data.delijn.be/stops/507005"], ["https://data.delijn.be/stops/305173", "https://data.delijn.be/stops/305197"], ["https://data.delijn.be/stops/408537", "https://data.delijn.be/stops/408815"], ["https://data.delijn.be/stops/200694", "https://data.delijn.be/stops/200695"], ["https://data.delijn.be/stops/304651", "https://data.delijn.be/stops/304652"], ["https://data.delijn.be/stops/202270", "https://data.delijn.be/stops/203091"], ["https://data.delijn.be/stops/104382", "https://data.delijn.be/stops/104383"], ["https://data.delijn.be/stops/406555", "https://data.delijn.be/stops/406560"], ["https://data.delijn.be/stops/102918", "https://data.delijn.be/stops/103265"], ["https://data.delijn.be/stops/102407", "https://data.delijn.be/stops/109056"], ["https://data.delijn.be/stops/402328", "https://data.delijn.be/stops/406857"], ["https://data.delijn.be/stops/507357", "https://data.delijn.be/stops/507679"], ["https://data.delijn.be/stops/504690", "https://data.delijn.be/stops/509111"], ["https://data.delijn.be/stops/503435", "https://data.delijn.be/stops/503534"], ["https://data.delijn.be/stops/408276", "https://data.delijn.be/stops/408353"], ["https://data.delijn.be/stops/300719", "https://data.delijn.be/stops/300738"], ["https://data.delijn.be/stops/304968", "https://data.delijn.be/stops/304975"], ["https://data.delijn.be/stops/503817", "https://data.delijn.be/stops/508817"], ["https://data.delijn.be/stops/203844", "https://data.delijn.be/stops/211070"], ["https://data.delijn.be/stops/200957", "https://data.delijn.be/stops/201861"], ["https://data.delijn.be/stops/503086", "https://data.delijn.be/stops/503106"], ["https://data.delijn.be/stops/502911", "https://data.delijn.be/stops/507910"], ["https://data.delijn.be/stops/405299", "https://data.delijn.be/stops/407333"], ["https://data.delijn.be/stops/503024", "https://data.delijn.be/stops/505396"], ["https://data.delijn.be/stops/204016", "https://data.delijn.be/stops/204350"], ["https://data.delijn.be/stops/200375", "https://data.delijn.be/stops/201037"], ["https://data.delijn.be/stops/503887", "https://data.delijn.be/stops/508781"], ["https://data.delijn.be/stops/303310", "https://data.delijn.be/stops/303311"], ["https://data.delijn.be/stops/208166", "https://data.delijn.be/stops/208167"], ["https://data.delijn.be/stops/101518", "https://data.delijn.be/stops/101536"], ["https://data.delijn.be/stops/302255", "https://data.delijn.be/stops/302265"], ["https://data.delijn.be/stops/300363", "https://data.delijn.be/stops/300401"], ["https://data.delijn.be/stops/105327", "https://data.delijn.be/stops/105331"], ["https://data.delijn.be/stops/407011", "https://data.delijn.be/stops/408001"], ["https://data.delijn.be/stops/302626", "https://data.delijn.be/stops/302630"], ["https://data.delijn.be/stops/404696", "https://data.delijn.be/stops/404697"], ["https://data.delijn.be/stops/206419", "https://data.delijn.be/stops/216016"], ["https://data.delijn.be/stops/101274", "https://data.delijn.be/stops/103012"], ["https://data.delijn.be/stops/108441", "https://data.delijn.be/stops/109702"], ["https://data.delijn.be/stops/501463", "https://data.delijn.be/stops/506637"], ["https://data.delijn.be/stops/300633", "https://data.delijn.be/stops/305451"], ["https://data.delijn.be/stops/202573", "https://data.delijn.be/stops/203573"], ["https://data.delijn.be/stops/402428", "https://data.delijn.be/stops/410094"], ["https://data.delijn.be/stops/206352", "https://data.delijn.be/stops/207362"], ["https://data.delijn.be/stops/507921", "https://data.delijn.be/stops/509723"], ["https://data.delijn.be/stops/308487", "https://data.delijn.be/stops/308488"], ["https://data.delijn.be/stops/208344", "https://data.delijn.be/stops/209343"], ["https://data.delijn.be/stops/504004", "https://data.delijn.be/stops/509299"], ["https://data.delijn.be/stops/504699", "https://data.delijn.be/stops/509463"], ["https://data.delijn.be/stops/203115", "https://data.delijn.be/stops/205593"], ["https://data.delijn.be/stops/406005", "https://data.delijn.be/stops/406116"], ["https://data.delijn.be/stops/106285", "https://data.delijn.be/stops/106302"], ["https://data.delijn.be/stops/201135", "https://data.delijn.be/stops/202451"], ["https://data.delijn.be/stops/404418", "https://data.delijn.be/stops/404421"], ["https://data.delijn.be/stops/206113", "https://data.delijn.be/stops/206116"], ["https://data.delijn.be/stops/503793", "https://data.delijn.be/stops/508795"], ["https://data.delijn.be/stops/401192", "https://data.delijn.be/stops/410124"], ["https://data.delijn.be/stops/408425", "https://data.delijn.be/stops/408426"], ["https://data.delijn.be/stops/201349", "https://data.delijn.be/stops/209952"], ["https://data.delijn.be/stops/106108", "https://data.delijn.be/stops/106176"], ["https://data.delijn.be/stops/405920", "https://data.delijn.be/stops/405975"], ["https://data.delijn.be/stops/305098", "https://data.delijn.be/stops/305117"], ["https://data.delijn.be/stops/202107", "https://data.delijn.be/stops/203107"], ["https://data.delijn.be/stops/504820", "https://data.delijn.be/stops/508188"], ["https://data.delijn.be/stops/504608", "https://data.delijn.be/stops/505422"], ["https://data.delijn.be/stops/300099", "https://data.delijn.be/stops/307098"], ["https://data.delijn.be/stops/505768", "https://data.delijn.be/stops/507676"], ["https://data.delijn.be/stops/308725", "https://data.delijn.be/stops/308730"], ["https://data.delijn.be/stops/504091", "https://data.delijn.be/stops/509089"], ["https://data.delijn.be/stops/202793", "https://data.delijn.be/stops/203792"], ["https://data.delijn.be/stops/502352", "https://data.delijn.be/stops/502366"], ["https://data.delijn.be/stops/208437", "https://data.delijn.be/stops/208683"], ["https://data.delijn.be/stops/405782", "https://data.delijn.be/stops/405883"], ["https://data.delijn.be/stops/200306", "https://data.delijn.be/stops/202199"], ["https://data.delijn.be/stops/107976", "https://data.delijn.be/stops/306760"], ["https://data.delijn.be/stops/303560", "https://data.delijn.be/stops/308610"], ["https://data.delijn.be/stops/304145", "https://data.delijn.be/stops/304170"], ["https://data.delijn.be/stops/401549", "https://data.delijn.be/stops/406808"], ["https://data.delijn.be/stops/402407", "https://data.delijn.be/stops/402459"], ["https://data.delijn.be/stops/109745", "https://data.delijn.be/stops/109746"], ["https://data.delijn.be/stops/200460", "https://data.delijn.be/stops/200676"], ["https://data.delijn.be/stops/203697", "https://data.delijn.be/stops/203698"], ["https://data.delijn.be/stops/201967", "https://data.delijn.be/stops/206769"], ["https://data.delijn.be/stops/106640", "https://data.delijn.be/stops/106646"], ["https://data.delijn.be/stops/203186", "https://data.delijn.be/stops/203669"], ["https://data.delijn.be/stops/505739", "https://data.delijn.be/stops/507478"], ["https://data.delijn.be/stops/405041", "https://data.delijn.be/stops/405888"], ["https://data.delijn.be/stops/303587", "https://data.delijn.be/stops/308710"], ["https://data.delijn.be/stops/503141", "https://data.delijn.be/stops/508834"], ["https://data.delijn.be/stops/502204", "https://data.delijn.be/stops/505982"], ["https://data.delijn.be/stops/301500", "https://data.delijn.be/stops/301501"], ["https://data.delijn.be/stops/302154", "https://data.delijn.be/stops/302155"], ["https://data.delijn.be/stops/103185", "https://data.delijn.be/stops/103260"], ["https://data.delijn.be/stops/200995", "https://data.delijn.be/stops/201995"], ["https://data.delijn.be/stops/301694", "https://data.delijn.be/stops/303746"], ["https://data.delijn.be/stops/108940", "https://data.delijn.be/stops/108945"], ["https://data.delijn.be/stops/102235", "https://data.delijn.be/stops/102829"], ["https://data.delijn.be/stops/208092", "https://data.delijn.be/stops/209092"], ["https://data.delijn.be/stops/102841", "https://data.delijn.be/stops/103535"], ["https://data.delijn.be/stops/202103", "https://data.delijn.be/stops/203102"], ["https://data.delijn.be/stops/203229", "https://data.delijn.be/stops/203230"], ["https://data.delijn.be/stops/206807", "https://data.delijn.be/stops/207383"], ["https://data.delijn.be/stops/201606", "https://data.delijn.be/stops/201941"], ["https://data.delijn.be/stops/404666", "https://data.delijn.be/stops/404667"], ["https://data.delijn.be/stops/101001", "https://data.delijn.be/stops/106065"], ["https://data.delijn.be/stops/503568", "https://data.delijn.be/stops/508300"], ["https://data.delijn.be/stops/107964", "https://data.delijn.be/stops/108029"], ["https://data.delijn.be/stops/202377", "https://data.delijn.be/stops/203378"], ["https://data.delijn.be/stops/502326", "https://data.delijn.be/stops/507658"], ["https://data.delijn.be/stops/304736", "https://data.delijn.be/stops/308698"], ["https://data.delijn.be/stops/204449", "https://data.delijn.be/stops/205310"], ["https://data.delijn.be/stops/501745", "https://data.delijn.be/stops/507745"], ["https://data.delijn.be/stops/106523", "https://data.delijn.be/stops/106524"], ["https://data.delijn.be/stops/302332", "https://data.delijn.be/stops/302343"], ["https://data.delijn.be/stops/209709", "https://data.delijn.be/stops/209710"], ["https://data.delijn.be/stops/207542", "https://data.delijn.be/stops/207561"], ["https://data.delijn.be/stops/407103", "https://data.delijn.be/stops/407302"], ["https://data.delijn.be/stops/404628", "https://data.delijn.be/stops/406957"], ["https://data.delijn.be/stops/302309", "https://data.delijn.be/stops/302333"], ["https://data.delijn.be/stops/302188", "https://data.delijn.be/stops/302189"], ["https://data.delijn.be/stops/404594", "https://data.delijn.be/stops/406902"], ["https://data.delijn.be/stops/507027", "https://data.delijn.be/stops/507283"], ["https://data.delijn.be/stops/209078", "https://data.delijn.be/stops/219028"], ["https://data.delijn.be/stops/405733", "https://data.delijn.be/stops/405739"], ["https://data.delijn.be/stops/202174", "https://data.delijn.be/stops/203190"], ["https://data.delijn.be/stops/504108", "https://data.delijn.be/stops/508916"], ["https://data.delijn.be/stops/104345", "https://data.delijn.be/stops/105800"], ["https://data.delijn.be/stops/104964", "https://data.delijn.be/stops/108647"], ["https://data.delijn.be/stops/503145", "https://data.delijn.be/stops/504856"], ["https://data.delijn.be/stops/101048", "https://data.delijn.be/stops/205604"], ["https://data.delijn.be/stops/503486", "https://data.delijn.be/stops/503989"], ["https://data.delijn.be/stops/504250", "https://data.delijn.be/stops/504596"], ["https://data.delijn.be/stops/304951", "https://data.delijn.be/stops/308022"], ["https://data.delijn.be/stops/400849", "https://data.delijn.be/stops/405666"], ["https://data.delijn.be/stops/200824", "https://data.delijn.be/stops/203331"], ["https://data.delijn.be/stops/401482", "https://data.delijn.be/stops/401483"], ["https://data.delijn.be/stops/303475", "https://data.delijn.be/stops/303476"], ["https://data.delijn.be/stops/201710", "https://data.delijn.be/stops/201711"], ["https://data.delijn.be/stops/409676", "https://data.delijn.be/stops/409685"], ["https://data.delijn.be/stops/504228", "https://data.delijn.be/stops/509224"], ["https://data.delijn.be/stops/202206", "https://data.delijn.be/stops/203207"], ["https://data.delijn.be/stops/502249", "https://data.delijn.be/stops/507255"], ["https://data.delijn.be/stops/402416", "https://data.delijn.be/stops/402417"], ["https://data.delijn.be/stops/103108", "https://data.delijn.be/stops/104493"], ["https://data.delijn.be/stops/301477", "https://data.delijn.be/stops/308705"], ["https://data.delijn.be/stops/507947", "https://data.delijn.be/stops/507948"], ["https://data.delijn.be/stops/302357", "https://data.delijn.be/stops/302360"], ["https://data.delijn.be/stops/401490", "https://data.delijn.be/stops/401883"], ["https://data.delijn.be/stops/109351", "https://data.delijn.be/stops/307428"], ["https://data.delijn.be/stops/101972", "https://data.delijn.be/stops/109293"], ["https://data.delijn.be/stops/305640", "https://data.delijn.be/stops/305766"], ["https://data.delijn.be/stops/302938", "https://data.delijn.be/stops/303519"], ["https://data.delijn.be/stops/505056", "https://data.delijn.be/stops/505315"], ["https://data.delijn.be/stops/201140", "https://data.delijn.be/stops/201368"], ["https://data.delijn.be/stops/201337", "https://data.delijn.be/stops/205951"], ["https://data.delijn.be/stops/207787", "https://data.delijn.be/stops/207790"], ["https://data.delijn.be/stops/208337", "https://data.delijn.be/stops/208338"], ["https://data.delijn.be/stops/102593", "https://data.delijn.be/stops/102599"], ["https://data.delijn.be/stops/101749", "https://data.delijn.be/stops/106382"], ["https://data.delijn.be/stops/304624", "https://data.delijn.be/stops/307027"], ["https://data.delijn.be/stops/408733", "https://data.delijn.be/stops/410249"], ["https://data.delijn.be/stops/206776", "https://data.delijn.be/stops/209482"], ["https://data.delijn.be/stops/303023", "https://data.delijn.be/stops/307143"], ["https://data.delijn.be/stops/400930", "https://data.delijn.be/stops/400933"], ["https://data.delijn.be/stops/306199", "https://data.delijn.be/stops/307279"], ["https://data.delijn.be/stops/102247", "https://data.delijn.be/stops/103301"], ["https://data.delijn.be/stops/306316", "https://data.delijn.be/stops/306319"], ["https://data.delijn.be/stops/505848", "https://data.delijn.be/stops/505993"], ["https://data.delijn.be/stops/504094", "https://data.delijn.be/stops/505193"], ["https://data.delijn.be/stops/300354", "https://data.delijn.be/stops/300402"], ["https://data.delijn.be/stops/102222", "https://data.delijn.be/stops/102223"], ["https://data.delijn.be/stops/404308", "https://data.delijn.be/stops/404309"], ["https://data.delijn.be/stops/502034", "https://data.delijn.be/stops/502048"], ["https://data.delijn.be/stops/502745", "https://data.delijn.be/stops/502747"], ["https://data.delijn.be/stops/108666", "https://data.delijn.be/stops/306631"], ["https://data.delijn.be/stops/503123", "https://data.delijn.be/stops/505901"], ["https://data.delijn.be/stops/202090", "https://data.delijn.be/stops/202689"], ["https://data.delijn.be/stops/303116", "https://data.delijn.be/stops/304223"], ["https://data.delijn.be/stops/201953", "https://data.delijn.be/stops/202464"], ["https://data.delijn.be/stops/106117", "https://data.delijn.be/stops/108803"], ["https://data.delijn.be/stops/501207", "https://data.delijn.be/stops/505032"], ["https://data.delijn.be/stops/502182", "https://data.delijn.be/stops/507176"], ["https://data.delijn.be/stops/201031", "https://data.delijn.be/stops/201335"], ["https://data.delijn.be/stops/308569", "https://data.delijn.be/stops/308573"], ["https://data.delijn.be/stops/300063", "https://data.delijn.be/stops/308541"], ["https://data.delijn.be/stops/107483", "https://data.delijn.be/stops/107516"], ["https://data.delijn.be/stops/106629", "https://data.delijn.be/stops/106673"], ["https://data.delijn.be/stops/106960", "https://data.delijn.be/stops/106962"], ["https://data.delijn.be/stops/405330", "https://data.delijn.be/stops/409281"], ["https://data.delijn.be/stops/302984", "https://data.delijn.be/stops/303618"], ["https://data.delijn.be/stops/206214", "https://data.delijn.be/stops/207821"], ["https://data.delijn.be/stops/108562", "https://data.delijn.be/stops/109102"], ["https://data.delijn.be/stops/106468", "https://data.delijn.be/stops/106469"], ["https://data.delijn.be/stops/300504", "https://data.delijn.be/stops/302419"], ["https://data.delijn.be/stops/503899", "https://data.delijn.be/stops/504358"], ["https://data.delijn.be/stops/105709", "https://data.delijn.be/stops/105712"], ["https://data.delijn.be/stops/206711", "https://data.delijn.be/stops/206976"], ["https://data.delijn.be/stops/405816", "https://data.delijn.be/stops/405817"], ["https://data.delijn.be/stops/108046", "https://data.delijn.be/stops/108047"], ["https://data.delijn.be/stops/304013", "https://data.delijn.be/stops/307815"], ["https://data.delijn.be/stops/504725", "https://data.delijn.be/stops/505307"], ["https://data.delijn.be/stops/203212", "https://data.delijn.be/stops/211117"], ["https://data.delijn.be/stops/106623", "https://data.delijn.be/stops/106627"], ["https://data.delijn.be/stops/106620", "https://data.delijn.be/stops/106621"], ["https://data.delijn.be/stops/203250", "https://data.delijn.be/stops/203251"], ["https://data.delijn.be/stops/202065", "https://data.delijn.be/stops/203725"], ["https://data.delijn.be/stops/401499", "https://data.delijn.be/stops/401548"], ["https://data.delijn.be/stops/201234", "https://data.delijn.be/stops/201450"], ["https://data.delijn.be/stops/205391", "https://data.delijn.be/stops/205415"], ["https://data.delijn.be/stops/401536", "https://data.delijn.be/stops/401538"], ["https://data.delijn.be/stops/108714", "https://data.delijn.be/stops/108715"], ["https://data.delijn.be/stops/105577", "https://data.delijn.be/stops/106357"], ["https://data.delijn.be/stops/211109", "https://data.delijn.be/stops/219953"], ["https://data.delijn.be/stops/507521", "https://data.delijn.be/stops/507522"], ["https://data.delijn.be/stops/101481", "https://data.delijn.be/stops/109288"], ["https://data.delijn.be/stops/305498", "https://data.delijn.be/stops/307826"], ["https://data.delijn.be/stops/304863", "https://data.delijn.be/stops/308991"], ["https://data.delijn.be/stops/204327", "https://data.delijn.be/stops/205536"], ["https://data.delijn.be/stops/407463", "https://data.delijn.be/stops/409255"], ["https://data.delijn.be/stops/301141", "https://data.delijn.be/stops/302882"], ["https://data.delijn.be/stops/301325", "https://data.delijn.be/stops/301913"], ["https://data.delijn.be/stops/104458", "https://data.delijn.be/stops/105979"], ["https://data.delijn.be/stops/101550", "https://data.delijn.be/stops/105515"], ["https://data.delijn.be/stops/103275", "https://data.delijn.be/stops/107845"], ["https://data.delijn.be/stops/107976", "https://data.delijn.be/stops/107977"], ["https://data.delijn.be/stops/306940", "https://data.delijn.be/stops/306942"], ["https://data.delijn.be/stops/305232", "https://data.delijn.be/stops/305249"], ["https://data.delijn.be/stops/302856", "https://data.delijn.be/stops/302857"], ["https://data.delijn.be/stops/307388", "https://data.delijn.be/stops/307390"], ["https://data.delijn.be/stops/101298", "https://data.delijn.be/stops/105771"], ["https://data.delijn.be/stops/206600", "https://data.delijn.be/stops/306973"], ["https://data.delijn.be/stops/407040", "https://data.delijn.be/stops/407041"], ["https://data.delijn.be/stops/105075", "https://data.delijn.be/stops/108881"], ["https://data.delijn.be/stops/305169", "https://data.delijn.be/stops/305170"], ["https://data.delijn.be/stops/402863", "https://data.delijn.be/stops/408077"], ["https://data.delijn.be/stops/407010", "https://data.delijn.be/stops/407052"], ["https://data.delijn.be/stops/501358", "https://data.delijn.be/stops/506294"], ["https://data.delijn.be/stops/102913", "https://data.delijn.be/stops/106713"], ["https://data.delijn.be/stops/101142", "https://data.delijn.be/stops/108415"], ["https://data.delijn.be/stops/502232", "https://data.delijn.be/stops/507699"], ["https://data.delijn.be/stops/102410", "https://data.delijn.be/stops/105570"], ["https://data.delijn.be/stops/106802", "https://data.delijn.be/stops/106806"], ["https://data.delijn.be/stops/504241", "https://data.delijn.be/stops/504242"], ["https://data.delijn.be/stops/408158", "https://data.delijn.be/stops/408159"], ["https://data.delijn.be/stops/101068", "https://data.delijn.be/stops/101069"], ["https://data.delijn.be/stops/402098", "https://data.delijn.be/stops/402286"], ["https://data.delijn.be/stops/502566", "https://data.delijn.be/stops/507567"], ["https://data.delijn.be/stops/107906", "https://data.delijn.be/stops/107952"], ["https://data.delijn.be/stops/407603", "https://data.delijn.be/stops/407746"], ["https://data.delijn.be/stops/205294", "https://data.delijn.be/stops/205536"], ["https://data.delijn.be/stops/404459", "https://data.delijn.be/stops/404490"], ["https://data.delijn.be/stops/403001", "https://data.delijn.be/stops/403133"], ["https://data.delijn.be/stops/107743", "https://data.delijn.be/stops/107745"], ["https://data.delijn.be/stops/300149", "https://data.delijn.be/stops/306855"], ["https://data.delijn.be/stops/303308", "https://data.delijn.be/stops/303311"], ["https://data.delijn.be/stops/302578", "https://data.delijn.be/stops/302603"], ["https://data.delijn.be/stops/501292", "https://data.delijn.be/stops/506742"], ["https://data.delijn.be/stops/406736", "https://data.delijn.be/stops/407144"], ["https://data.delijn.be/stops/502545", "https://data.delijn.be/stops/507545"], ["https://data.delijn.be/stops/501371", "https://data.delijn.be/stops/504371"], ["https://data.delijn.be/stops/302010", "https://data.delijn.be/stops/303894"], ["https://data.delijn.be/stops/107962", "https://data.delijn.be/stops/108028"], ["https://data.delijn.be/stops/407984", "https://data.delijn.be/stops/407985"], ["https://data.delijn.be/stops/503396", "https://data.delijn.be/stops/508396"], ["https://data.delijn.be/stops/200563", "https://data.delijn.be/stops/200564"], ["https://data.delijn.be/stops/403039", "https://data.delijn.be/stops/404758"], ["https://data.delijn.be/stops/102645", "https://data.delijn.be/stops/102650"], ["https://data.delijn.be/stops/509278", "https://data.delijn.be/stops/509283"], ["https://data.delijn.be/stops/301228", "https://data.delijn.be/stops/304270"], ["https://data.delijn.be/stops/302713", "https://data.delijn.be/stops/302717"], ["https://data.delijn.be/stops/301190", "https://data.delijn.be/stops/301198"], ["https://data.delijn.be/stops/401829", "https://data.delijn.be/stops/401835"], ["https://data.delijn.be/stops/105412", "https://data.delijn.be/stops/105416"], ["https://data.delijn.be/stops/500940", "https://data.delijn.be/stops/509942"], ["https://data.delijn.be/stops/405832", "https://data.delijn.be/stops/409727"], ["https://data.delijn.be/stops/202328", "https://data.delijn.be/stops/203329"], ["https://data.delijn.be/stops/102467", "https://data.delijn.be/stops/400414"], ["https://data.delijn.be/stops/107508", "https://data.delijn.be/stops/107512"], ["https://data.delijn.be/stops/208465", "https://data.delijn.be/stops/208466"], ["https://data.delijn.be/stops/208486", "https://data.delijn.be/stops/209486"], ["https://data.delijn.be/stops/503519", "https://data.delijn.be/stops/508519"], ["https://data.delijn.be/stops/204042", "https://data.delijn.be/stops/204483"], ["https://data.delijn.be/stops/109210", "https://data.delijn.be/stops/109211"], ["https://data.delijn.be/stops/504350", "https://data.delijn.be/stops/504703"], ["https://data.delijn.be/stops/303986", "https://data.delijn.be/stops/307008"], ["https://data.delijn.be/stops/403708", "https://data.delijn.be/stops/403720"], ["https://data.delijn.be/stops/105976", "https://data.delijn.be/stops/205641"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/203626"], ["https://data.delijn.be/stops/302114", "https://data.delijn.be/stops/303127"], ["https://data.delijn.be/stops/200590", "https://data.delijn.be/stops/200591"], ["https://data.delijn.be/stops/208079", "https://data.delijn.be/stops/209096"], ["https://data.delijn.be/stops/107378", "https://data.delijn.be/stops/109660"], ["https://data.delijn.be/stops/200893", "https://data.delijn.be/stops/203793"], ["https://data.delijn.be/stops/109085", "https://data.delijn.be/stops/109877"], ["https://data.delijn.be/stops/200154", "https://data.delijn.be/stops/201453"], ["https://data.delijn.be/stops/204677", "https://data.delijn.be/stops/205316"], ["https://data.delijn.be/stops/206934", "https://data.delijn.be/stops/207040"], ["https://data.delijn.be/stops/106182", "https://data.delijn.be/stops/106183"], ["https://data.delijn.be/stops/202205", "https://data.delijn.be/stops/202206"], ["https://data.delijn.be/stops/211006", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/104100", "https://data.delijn.be/stops/108375"], ["https://data.delijn.be/stops/200482", "https://data.delijn.be/stops/201346"], ["https://data.delijn.be/stops/208393", "https://data.delijn.be/stops/208421"], ["https://data.delijn.be/stops/400468", "https://data.delijn.be/stops/400469"], ["https://data.delijn.be/stops/204540", "https://data.delijn.be/stops/205554"], ["https://data.delijn.be/stops/405198", "https://data.delijn.be/stops/405199"], ["https://data.delijn.be/stops/300059", "https://data.delijn.be/stops/306801"], ["https://data.delijn.be/stops/105630", "https://data.delijn.be/stops/105635"], ["https://data.delijn.be/stops/209056", "https://data.delijn.be/stops/209657"], ["https://data.delijn.be/stops/208254", "https://data.delijn.be/stops/208256"], ["https://data.delijn.be/stops/302015", "https://data.delijn.be/stops/302034"], ["https://data.delijn.be/stops/107738", "https://data.delijn.be/stops/107739"], ["https://data.delijn.be/stops/303455", "https://data.delijn.be/stops/303456"], ["https://data.delijn.be/stops/503591", "https://data.delijn.be/stops/505581"], ["https://data.delijn.be/stops/303170", "https://data.delijn.be/stops/303171"], ["https://data.delijn.be/stops/405351", "https://data.delijn.be/stops/302837"], ["https://data.delijn.be/stops/304841", "https://data.delijn.be/stops/304842"], ["https://data.delijn.be/stops/304249", "https://data.delijn.be/stops/304299"], ["https://data.delijn.be/stops/103760", "https://data.delijn.be/stops/104265"], ["https://data.delijn.be/stops/304041", "https://data.delijn.be/stops/308945"], ["https://data.delijn.be/stops/105553", "https://data.delijn.be/stops/106026"], ["https://data.delijn.be/stops/107649", "https://data.delijn.be/stops/108958"], ["https://data.delijn.be/stops/104962", "https://data.delijn.be/stops/107539"], ["https://data.delijn.be/stops/410120", "https://data.delijn.be/stops/410285"], ["https://data.delijn.be/stops/201871", "https://data.delijn.be/stops/203664"], ["https://data.delijn.be/stops/303418", "https://data.delijn.be/stops/306956"], ["https://data.delijn.be/stops/200987", "https://data.delijn.be/stops/201198"], ["https://data.delijn.be/stops/506172", "https://data.delijn.be/stops/506175"], ["https://data.delijn.be/stops/106078", "https://data.delijn.be/stops/106080"], ["https://data.delijn.be/stops/203894", "https://data.delijn.be/stops/208286"], ["https://data.delijn.be/stops/200264", "https://data.delijn.be/stops/200265"], ["https://data.delijn.be/stops/103688", "https://data.delijn.be/stops/103689"], ["https://data.delijn.be/stops/200074", "https://data.delijn.be/stops/201075"], ["https://data.delijn.be/stops/509371", "https://data.delijn.be/stops/509372"], ["https://data.delijn.be/stops/302869", "https://data.delijn.be/stops/302891"], ["https://data.delijn.be/stops/205501", "https://data.delijn.be/stops/205502"], ["https://data.delijn.be/stops/302141", "https://data.delijn.be/stops/308085"], ["https://data.delijn.be/stops/206752", "https://data.delijn.be/stops/208477"], ["https://data.delijn.be/stops/207538", "https://data.delijn.be/stops/207559"], ["https://data.delijn.be/stops/200274", "https://data.delijn.be/stops/201373"], ["https://data.delijn.be/stops/200825", "https://data.delijn.be/stops/200863"], ["https://data.delijn.be/stops/408880", "https://data.delijn.be/stops/408881"], ["https://data.delijn.be/stops/202529", "https://data.delijn.be/stops/206826"], ["https://data.delijn.be/stops/504816", "https://data.delijn.be/stops/508817"], ["https://data.delijn.be/stops/103095", "https://data.delijn.be/stops/104575"], ["https://data.delijn.be/stops/301647", "https://data.delijn.be/stops/303661"], ["https://data.delijn.be/stops/105769", "https://data.delijn.be/stops/105776"], ["https://data.delijn.be/stops/101725", "https://data.delijn.be/stops/108005"], ["https://data.delijn.be/stops/200702", "https://data.delijn.be/stops/202614"], ["https://data.delijn.be/stops/305524", "https://data.delijn.be/stops/307011"], ["https://data.delijn.be/stops/503648", "https://data.delijn.be/stops/503667"], ["https://data.delijn.be/stops/303743", "https://data.delijn.be/stops/303748"], ["https://data.delijn.be/stops/202288", "https://data.delijn.be/stops/203288"], ["https://data.delijn.be/stops/208473", "https://data.delijn.be/stops/209669"], ["https://data.delijn.be/stops/300259", "https://data.delijn.be/stops/307497"], ["https://data.delijn.be/stops/208082", "https://data.delijn.be/stops/209083"], ["https://data.delijn.be/stops/504352", "https://data.delijn.be/stops/505975"], ["https://data.delijn.be/stops/305148", "https://data.delijn.be/stops/305177"], ["https://data.delijn.be/stops/105690", "https://data.delijn.be/stops/105692"], ["https://data.delijn.be/stops/106609", "https://data.delijn.be/stops/106611"], ["https://data.delijn.be/stops/507020", "https://data.delijn.be/stops/507022"], ["https://data.delijn.be/stops/403279", "https://data.delijn.be/stops/403419"], ["https://data.delijn.be/stops/101848", "https://data.delijn.be/stops/102091"], ["https://data.delijn.be/stops/206467", "https://data.delijn.be/stops/206825"], ["https://data.delijn.be/stops/407833", "https://data.delijn.be/stops/407837"], ["https://data.delijn.be/stops/202831", "https://data.delijn.be/stops/218023"], ["https://data.delijn.be/stops/406229", "https://data.delijn.be/stops/406287"], ["https://data.delijn.be/stops/503316", "https://data.delijn.be/stops/508316"], ["https://data.delijn.be/stops/202024", "https://data.delijn.be/stops/202349"], ["https://data.delijn.be/stops/304154", "https://data.delijn.be/stops/304541"], ["https://data.delijn.be/stops/407314", "https://data.delijn.be/stops/407315"], ["https://data.delijn.be/stops/102174", "https://data.delijn.be/stops/109363"], ["https://data.delijn.be/stops/207064", "https://data.delijn.be/stops/207520"], ["https://data.delijn.be/stops/202834", "https://data.delijn.be/stops/203835"], ["https://data.delijn.be/stops/302173", "https://data.delijn.be/stops/302183"], ["https://data.delijn.be/stops/208131", "https://data.delijn.be/stops/209131"], ["https://data.delijn.be/stops/400095", "https://data.delijn.be/stops/400157"], ["https://data.delijn.be/stops/401451", "https://data.delijn.be/stops/402034"], ["https://data.delijn.be/stops/205210", "https://data.delijn.be/stops/205696"], ["https://data.delijn.be/stops/301359", "https://data.delijn.be/stops/301361"], ["https://data.delijn.be/stops/302879", "https://data.delijn.be/stops/304711"], ["https://data.delijn.be/stops/208750", "https://data.delijn.be/stops/209449"], ["https://data.delijn.be/stops/206523", "https://data.delijn.be/stops/206524"], ["https://data.delijn.be/stops/106343", "https://data.delijn.be/stops/106344"], ["https://data.delijn.be/stops/402119", "https://data.delijn.be/stops/409286"], ["https://data.delijn.be/stops/105864", "https://data.delijn.be/stops/105865"], ["https://data.delijn.be/stops/107492", "https://data.delijn.be/stops/305795"], ["https://data.delijn.be/stops/200895", "https://data.delijn.be/stops/202285"], ["https://data.delijn.be/stops/104397", "https://data.delijn.be/stops/104399"], ["https://data.delijn.be/stops/502495", "https://data.delijn.be/stops/507503"], ["https://data.delijn.be/stops/102181", "https://data.delijn.be/stops/102272"], ["https://data.delijn.be/stops/101574", "https://data.delijn.be/stops/105669"], ["https://data.delijn.be/stops/204027", "https://data.delijn.be/stops/205027"], ["https://data.delijn.be/stops/502181", "https://data.delijn.be/stops/507686"], ["https://data.delijn.be/stops/105288", "https://data.delijn.be/stops/108727"], ["https://data.delijn.be/stops/301897", "https://data.delijn.be/stops/305755"], ["https://data.delijn.be/stops/300668", "https://data.delijn.be/stops/300677"], ["https://data.delijn.be/stops/301268", "https://data.delijn.be/stops/304980"], ["https://data.delijn.be/stops/102654", "https://data.delijn.be/stops/103681"], ["https://data.delijn.be/stops/301740", "https://data.delijn.be/stops/305909"], ["https://data.delijn.be/stops/108737", "https://data.delijn.be/stops/108763"], ["https://data.delijn.be/stops/408773", "https://data.delijn.be/stops/410192"], ["https://data.delijn.be/stops/101297", "https://data.delijn.be/stops/101298"], ["https://data.delijn.be/stops/408167", "https://data.delijn.be/stops/410161"], ["https://data.delijn.be/stops/108934", "https://data.delijn.be/stops/109221"], ["https://data.delijn.be/stops/304037", "https://data.delijn.be/stops/306375"], ["https://data.delijn.be/stops/206737", "https://data.delijn.be/stops/206738"], ["https://data.delijn.be/stops/300193", "https://data.delijn.be/stops/300196"], ["https://data.delijn.be/stops/402567", "https://data.delijn.be/stops/404064"], ["https://data.delijn.be/stops/504101", "https://data.delijn.be/stops/509101"], ["https://data.delijn.be/stops/506205", "https://data.delijn.be/stops/506290"], ["https://data.delijn.be/stops/400288", "https://data.delijn.be/stops/400333"], ["https://data.delijn.be/stops/503553", "https://data.delijn.be/stops/503571"], ["https://data.delijn.be/stops/301330", "https://data.delijn.be/stops/301389"], ["https://data.delijn.be/stops/302294", "https://data.delijn.be/stops/304951"], ["https://data.delijn.be/stops/305598", "https://data.delijn.be/stops/305772"], ["https://data.delijn.be/stops/504100", "https://data.delijn.be/stops/504759"], ["https://data.delijn.be/stops/302016", "https://data.delijn.be/stops/302032"], ["https://data.delijn.be/stops/501247", "https://data.delijn.be/stops/506231"], ["https://data.delijn.be/stops/409256", "https://data.delijn.be/stops/409257"], ["https://data.delijn.be/stops/202560", "https://data.delijn.be/stops/202610"], ["https://data.delijn.be/stops/501015", "https://data.delijn.be/stops/501412"], ["https://data.delijn.be/stops/206097", "https://data.delijn.be/stops/207931"], ["https://data.delijn.be/stops/303404", "https://data.delijn.be/stops/304553"], ["https://data.delijn.be/stops/102457", "https://data.delijn.be/stops/406859"], ["https://data.delijn.be/stops/305386", "https://data.delijn.be/stops/305388"], ["https://data.delijn.be/stops/408204", "https://data.delijn.be/stops/408310"], ["https://data.delijn.be/stops/204311", "https://data.delijn.be/stops/205312"], ["https://data.delijn.be/stops/503444", "https://data.delijn.be/stops/503534"], ["https://data.delijn.be/stops/105787", "https://data.delijn.be/stops/105790"], ["https://data.delijn.be/stops/501552", "https://data.delijn.be/stops/501555"], ["https://data.delijn.be/stops/408666", "https://data.delijn.be/stops/408704"], ["https://data.delijn.be/stops/408251", "https://data.delijn.be/stops/408290"], ["https://data.delijn.be/stops/403430", "https://data.delijn.be/stops/403432"], ["https://data.delijn.be/stops/200086", "https://data.delijn.be/stops/201956"], ["https://data.delijn.be/stops/400252", "https://data.delijn.be/stops/405585"], ["https://data.delijn.be/stops/206503", "https://data.delijn.be/stops/207503"], ["https://data.delijn.be/stops/302054", "https://data.delijn.be/stops/307073"], ["https://data.delijn.be/stops/408392", "https://data.delijn.be/stops/409644"], ["https://data.delijn.be/stops/203874", "https://data.delijn.be/stops/206968"], ["https://data.delijn.be/stops/303428", "https://data.delijn.be/stops/303429"], ["https://data.delijn.be/stops/107226", "https://data.delijn.be/stops/109889"], ["https://data.delijn.be/stops/302369", "https://data.delijn.be/stops/307854"], ["https://data.delijn.be/stops/302782", "https://data.delijn.be/stops/307045"], ["https://data.delijn.be/stops/202767", "https://data.delijn.be/stops/203767"], ["https://data.delijn.be/stops/403211", "https://data.delijn.be/stops/410213"], ["https://data.delijn.be/stops/503147", "https://data.delijn.be/stops/509884"], ["https://data.delijn.be/stops/509736", "https://data.delijn.be/stops/509737"], ["https://data.delijn.be/stops/102581", "https://data.delijn.be/stops/105260"], ["https://data.delijn.be/stops/505935", "https://data.delijn.be/stops/508300"], ["https://data.delijn.be/stops/306797", "https://data.delijn.be/stops/307732"], ["https://data.delijn.be/stops/503821", "https://data.delijn.be/stops/508821"], ["https://data.delijn.be/stops/505240", "https://data.delijn.be/stops/505413"], ["https://data.delijn.be/stops/301138", "https://data.delijn.be/stops/301166"], ["https://data.delijn.be/stops/209731", "https://data.delijn.be/stops/209732"], ["https://data.delijn.be/stops/206231", "https://data.delijn.be/stops/300152"], ["https://data.delijn.be/stops/401160", "https://data.delijn.be/stops/408119"], ["https://data.delijn.be/stops/406520", "https://data.delijn.be/stops/407503"], ["https://data.delijn.be/stops/201811", "https://data.delijn.be/stops/201830"], ["https://data.delijn.be/stops/106818", "https://data.delijn.be/stops/106985"], ["https://data.delijn.be/stops/502147", "https://data.delijn.be/stops/502168"], ["https://data.delijn.be/stops/202132", "https://data.delijn.be/stops/203131"], ["https://data.delijn.be/stops/305261", "https://data.delijn.be/stops/305262"], ["https://data.delijn.be/stops/202665", "https://data.delijn.be/stops/203664"], ["https://data.delijn.be/stops/306186", "https://data.delijn.be/stops/306291"], ["https://data.delijn.be/stops/504113", "https://data.delijn.be/stops/505855"], ["https://data.delijn.be/stops/508400", "https://data.delijn.be/stops/508426"], ["https://data.delijn.be/stops/201873", "https://data.delijn.be/stops/203025"], ["https://data.delijn.be/stops/203876", "https://data.delijn.be/stops/203880"], ["https://data.delijn.be/stops/401420", "https://data.delijn.be/stops/401497"], ["https://data.delijn.be/stops/502605", "https://data.delijn.be/stops/507606"], ["https://data.delijn.be/stops/503897", "https://data.delijn.be/stops/504941"], ["https://data.delijn.be/stops/108630", "https://data.delijn.be/stops/108635"], ["https://data.delijn.be/stops/505540", "https://data.delijn.be/stops/508810"], ["https://data.delijn.be/stops/409251", "https://data.delijn.be/stops/409274"], ["https://data.delijn.be/stops/207276", "https://data.delijn.be/stops/207962"], ["https://data.delijn.be/stops/206794", "https://data.delijn.be/stops/208034"], ["https://data.delijn.be/stops/302938", "https://data.delijn.be/stops/302955"], ["https://data.delijn.be/stops/304534", "https://data.delijn.be/stops/307574"], ["https://data.delijn.be/stops/401224", "https://data.delijn.be/stops/401378"], ["https://data.delijn.be/stops/307213", "https://data.delijn.be/stops/307215"], ["https://data.delijn.be/stops/503859", "https://data.delijn.be/stops/508854"], ["https://data.delijn.be/stops/207348", "https://data.delijn.be/stops/207729"], ["https://data.delijn.be/stops/200264", "https://data.delijn.be/stops/202545"], ["https://data.delijn.be/stops/308503", "https://data.delijn.be/stops/308539"], ["https://data.delijn.be/stops/200505", "https://data.delijn.be/stops/208941"], ["https://data.delijn.be/stops/103749", "https://data.delijn.be/stops/103751"], ["https://data.delijn.be/stops/101079", "https://data.delijn.be/stops/101081"], ["https://data.delijn.be/stops/201865", "https://data.delijn.be/stops/210038"], ["https://data.delijn.be/stops/200409", "https://data.delijn.be/stops/201408"], ["https://data.delijn.be/stops/102914", "https://data.delijn.be/stops/103300"], ["https://data.delijn.be/stops/407399", "https://data.delijn.be/stops/407422"], ["https://data.delijn.be/stops/406241", "https://data.delijn.be/stops/406258"], ["https://data.delijn.be/stops/506154", "https://data.delijn.be/stops/509836"], ["https://data.delijn.be/stops/207884", "https://data.delijn.be/stops/207885"], ["https://data.delijn.be/stops/302423", "https://data.delijn.be/stops/308814"], ["https://data.delijn.be/stops/108738", "https://data.delijn.be/stops/108762"], ["https://data.delijn.be/stops/206490", "https://data.delijn.be/stops/207489"], ["https://data.delijn.be/stops/505988", "https://data.delijn.be/stops/509478"], ["https://data.delijn.be/stops/502666", "https://data.delijn.be/stops/507553"], ["https://data.delijn.be/stops/104723", "https://data.delijn.be/stops/104724"], ["https://data.delijn.be/stops/304485", "https://data.delijn.be/stops/307569"], ["https://data.delijn.be/stops/101780", "https://data.delijn.be/stops/102965"], ["https://data.delijn.be/stops/104093", "https://data.delijn.be/stops/405881"], ["https://data.delijn.be/stops/206082", "https://data.delijn.be/stops/206737"], ["https://data.delijn.be/stops/202658", "https://data.delijn.be/stops/202659"], ["https://data.delijn.be/stops/401539", "https://data.delijn.be/stops/401883"], ["https://data.delijn.be/stops/508092", "https://data.delijn.be/stops/508194"], ["https://data.delijn.be/stops/407176", "https://data.delijn.be/stops/407177"], ["https://data.delijn.be/stops/503705", "https://data.delijn.be/stops/508748"], ["https://data.delijn.be/stops/109282", "https://data.delijn.be/stops/109736"], ["https://data.delijn.be/stops/208280", "https://data.delijn.be/stops/209280"], ["https://data.delijn.be/stops/405366", "https://data.delijn.be/stops/405372"], ["https://data.delijn.be/stops/308514", "https://data.delijn.be/stops/308540"], ["https://data.delijn.be/stops/106834", "https://data.delijn.be/stops/106974"], ["https://data.delijn.be/stops/101834", "https://data.delijn.be/stops/107091"], ["https://data.delijn.be/stops/208633", "https://data.delijn.be/stops/209633"], ["https://data.delijn.be/stops/201055", "https://data.delijn.be/stops/210003"], ["https://data.delijn.be/stops/305954", "https://data.delijn.be/stops/305959"], ["https://data.delijn.be/stops/101822", "https://data.delijn.be/stops/107071"], ["https://data.delijn.be/stops/202519", "https://data.delijn.be/stops/202525"], ["https://data.delijn.be/stops/106624", "https://data.delijn.be/stops/106630"], ["https://data.delijn.be/stops/106107", "https://data.delijn.be/stops/109373"], ["https://data.delijn.be/stops/206421", "https://data.delijn.be/stops/206965"], ["https://data.delijn.be/stops/102566", "https://data.delijn.be/stops/105851"], ["https://data.delijn.be/stops/402492", "https://data.delijn.be/stops/402494"], ["https://data.delijn.be/stops/102225", "https://data.delijn.be/stops/103025"], ["https://data.delijn.be/stops/108608", "https://data.delijn.be/stops/300069"], ["https://data.delijn.be/stops/208025", "https://data.delijn.be/stops/208037"], ["https://data.delijn.be/stops/203322", "https://data.delijn.be/stops/210044"], ["https://data.delijn.be/stops/206738", "https://data.delijn.be/stops/306973"], ["https://data.delijn.be/stops/103610", "https://data.delijn.be/stops/108300"], ["https://data.delijn.be/stops/501344", "https://data.delijn.be/stops/501568"], ["https://data.delijn.be/stops/502722", "https://data.delijn.be/stops/507242"], ["https://data.delijn.be/stops/403738", "https://data.delijn.be/stops/403739"], ["https://data.delijn.be/stops/302567", "https://data.delijn.be/stops/302586"], ["https://data.delijn.be/stops/101955", "https://data.delijn.be/stops/104801"], ["https://data.delijn.be/stops/405195", "https://data.delijn.be/stops/405238"], ["https://data.delijn.be/stops/202657", "https://data.delijn.be/stops/203657"], ["https://data.delijn.be/stops/504863", "https://data.delijn.be/stops/508343"], ["https://data.delijn.be/stops/201316", "https://data.delijn.be/stops/201729"], ["https://data.delijn.be/stops/504359", "https://data.delijn.be/stops/509359"], ["https://data.delijn.be/stops/303722", "https://data.delijn.be/stops/303754"], ["https://data.delijn.be/stops/301741", "https://data.delijn.be/stops/305907"], ["https://data.delijn.be/stops/400797", "https://data.delijn.be/stops/409602"], ["https://data.delijn.be/stops/408258", "https://data.delijn.be/stops/408340"], ["https://data.delijn.be/stops/305380", "https://data.delijn.be/stops/305403"], ["https://data.delijn.be/stops/200906", "https://data.delijn.be/stops/202255"], ["https://data.delijn.be/stops/406298", "https://data.delijn.be/stops/302855"], ["https://data.delijn.be/stops/301522", "https://data.delijn.be/stops/301523"], ["https://data.delijn.be/stops/403994", "https://data.delijn.be/stops/403995"], ["https://data.delijn.be/stops/304980", "https://data.delijn.be/stops/308012"], ["https://data.delijn.be/stops/502070", "https://data.delijn.be/stops/505705"], ["https://data.delijn.be/stops/206091", "https://data.delijn.be/stops/207091"], ["https://data.delijn.be/stops/108102", "https://data.delijn.be/stops/108103"], ["https://data.delijn.be/stops/300595", "https://data.delijn.be/stops/302980"], ["https://data.delijn.be/stops/101228", "https://data.delijn.be/stops/102656"], ["https://data.delijn.be/stops/503468", "https://data.delijn.be/stops/504813"], ["https://data.delijn.be/stops/405090", "https://data.delijn.be/stops/405708"], ["https://data.delijn.be/stops/101378", "https://data.delijn.be/stops/101401"], ["https://data.delijn.be/stops/204763", "https://data.delijn.be/stops/204764"], ["https://data.delijn.be/stops/501525", "https://data.delijn.be/stops/510014"], ["https://data.delijn.be/stops/200680", "https://data.delijn.be/stops/201455"], ["https://data.delijn.be/stops/504194", "https://data.delijn.be/stops/509194"], ["https://data.delijn.be/stops/300715", "https://data.delijn.be/stops/300716"], ["https://data.delijn.be/stops/200389", "https://data.delijn.be/stops/201501"], ["https://data.delijn.be/stops/300143", "https://data.delijn.be/stops/300144"], ["https://data.delijn.be/stops/206129", "https://data.delijn.be/stops/206651"], ["https://data.delijn.be/stops/403981", "https://data.delijn.be/stops/403982"], ["https://data.delijn.be/stops/108522", "https://data.delijn.be/stops/108523"], ["https://data.delijn.be/stops/508036", "https://data.delijn.be/stops/508267"], ["https://data.delijn.be/stops/503452", "https://data.delijn.be/stops/503473"], ["https://data.delijn.be/stops/303492", "https://data.delijn.be/stops/303493"], ["https://data.delijn.be/stops/107809", "https://data.delijn.be/stops/107810"], ["https://data.delijn.be/stops/204973", "https://data.delijn.be/stops/217002"], ["https://data.delijn.be/stops/206460", "https://data.delijn.be/stops/206461"], ["https://data.delijn.be/stops/202733", "https://data.delijn.be/stops/203853"], ["https://data.delijn.be/stops/103972", "https://data.delijn.be/stops/106445"], ["https://data.delijn.be/stops/301260", "https://data.delijn.be/stops/307392"], ["https://data.delijn.be/stops/200688", "https://data.delijn.be/stops/202372"], ["https://data.delijn.be/stops/501403", "https://data.delijn.be/stops/506408"], ["https://data.delijn.be/stops/300027", "https://data.delijn.be/stops/300051"], ["https://data.delijn.be/stops/502398", "https://data.delijn.be/stops/507386"], ["https://data.delijn.be/stops/102018", "https://data.delijn.be/stops/102022"], ["https://data.delijn.be/stops/506629", "https://data.delijn.be/stops/508126"], ["https://data.delijn.be/stops/502017", "https://data.delijn.be/stops/507017"], ["https://data.delijn.be/stops/200157", "https://data.delijn.be/stops/207241"], ["https://data.delijn.be/stops/209392", "https://data.delijn.be/stops/209394"], ["https://data.delijn.be/stops/409657", "https://data.delijn.be/stops/409660"], ["https://data.delijn.be/stops/503885", "https://data.delijn.be/stops/503887"], ["https://data.delijn.be/stops/301753", "https://data.delijn.be/stops/308878"], ["https://data.delijn.be/stops/404495", "https://data.delijn.be/stops/404537"], ["https://data.delijn.be/stops/406944", "https://data.delijn.be/stops/406945"], ["https://data.delijn.be/stops/403551", "https://data.delijn.be/stops/410215"], ["https://data.delijn.be/stops/301490", "https://data.delijn.be/stops/307931"], ["https://data.delijn.be/stops/507590", "https://data.delijn.be/stops/507595"], ["https://data.delijn.be/stops/102277", "https://data.delijn.be/stops/108029"], ["https://data.delijn.be/stops/403134", "https://data.delijn.be/stops/410129"], ["https://data.delijn.be/stops/306023", "https://data.delijn.be/stops/307682"], ["https://data.delijn.be/stops/306613", "https://data.delijn.be/stops/306631"], ["https://data.delijn.be/stops/302068", "https://data.delijn.be/stops/306350"], ["https://data.delijn.be/stops/101182", "https://data.delijn.be/stops/107864"], ["https://data.delijn.be/stops/507721", "https://data.delijn.be/stops/507735"], ["https://data.delijn.be/stops/401441", "https://data.delijn.be/stops/404173"], ["https://data.delijn.be/stops/408926", "https://data.delijn.be/stops/408927"], ["https://data.delijn.be/stops/102062", "https://data.delijn.be/stops/102063"], ["https://data.delijn.be/stops/505945", "https://data.delijn.be/stops/508643"], ["https://data.delijn.be/stops/301405", "https://data.delijn.be/stops/308648"], ["https://data.delijn.be/stops/302858", "https://data.delijn.be/stops/302912"], ["https://data.delijn.be/stops/502676", "https://data.delijn.be/stops/507438"], ["https://data.delijn.be/stops/505768", "https://data.delijn.be/stops/507436"], ["https://data.delijn.be/stops/208060", "https://data.delijn.be/stops/209045"], ["https://data.delijn.be/stops/200781", "https://data.delijn.be/stops/201033"], ["https://data.delijn.be/stops/104776", "https://data.delijn.be/stops/107346"], ["https://data.delijn.be/stops/400120", "https://data.delijn.be/stops/400167"], ["https://data.delijn.be/stops/505264", "https://data.delijn.be/stops/508078"], ["https://data.delijn.be/stops/403336", "https://data.delijn.be/stops/407635"], ["https://data.delijn.be/stops/408063", "https://data.delijn.be/stops/408136"], ["https://data.delijn.be/stops/201304", "https://data.delijn.be/stops/202760"], ["https://data.delijn.be/stops/206855", "https://data.delijn.be/stops/207854"], ["https://data.delijn.be/stops/300941", "https://data.delijn.be/stops/304719"], ["https://data.delijn.be/stops/101418", "https://data.delijn.be/stops/106951"], ["https://data.delijn.be/stops/206656", "https://data.delijn.be/stops/207656"], ["https://data.delijn.be/stops/109190", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/106613", "https://data.delijn.be/stops/106690"], ["https://data.delijn.be/stops/505013", "https://data.delijn.be/stops/505227"], ["https://data.delijn.be/stops/400144", "https://data.delijn.be/stops/409164"], ["https://data.delijn.be/stops/308475", "https://data.delijn.be/stops/308486"], ["https://data.delijn.be/stops/104838", "https://data.delijn.be/stops/108475"], ["https://data.delijn.be/stops/206299", "https://data.delijn.be/stops/207495"], ["https://data.delijn.be/stops/203047", "https://data.delijn.be/stops/203730"], ["https://data.delijn.be/stops/403632", "https://data.delijn.be/stops/403640"], ["https://data.delijn.be/stops/400800", "https://data.delijn.be/stops/400881"], ["https://data.delijn.be/stops/304572", "https://data.delijn.be/stops/308878"], ["https://data.delijn.be/stops/301583", "https://data.delijn.be/stops/301592"], ["https://data.delijn.be/stops/300681", "https://data.delijn.be/stops/305963"], ["https://data.delijn.be/stops/504538", "https://data.delijn.be/stops/508818"], ["https://data.delijn.be/stops/208070", "https://data.delijn.be/stops/209070"], ["https://data.delijn.be/stops/402469", "https://data.delijn.be/stops/410074"], ["https://data.delijn.be/stops/101497", "https://data.delijn.be/stops/108309"], ["https://data.delijn.be/stops/403994", "https://data.delijn.be/stops/410025"], ["https://data.delijn.be/stops/403005", "https://data.delijn.be/stops/403019"], ["https://data.delijn.be/stops/405695", "https://data.delijn.be/stops/405910"], ["https://data.delijn.be/stops/507399", "https://data.delijn.be/stops/507402"], ["https://data.delijn.be/stops/108429", "https://data.delijn.be/stops/109583"], ["https://data.delijn.be/stops/208554", "https://data.delijn.be/stops/208603"], ["https://data.delijn.be/stops/207437", "https://data.delijn.be/stops/207641"], ["https://data.delijn.be/stops/303023", "https://data.delijn.be/stops/303031"], ["https://data.delijn.be/stops/102546", "https://data.delijn.be/stops/408342"], ["https://data.delijn.be/stops/400541", "https://data.delijn.be/stops/400545"], ["https://data.delijn.be/stops/101274", "https://data.delijn.be/stops/104215"], ["https://data.delijn.be/stops/402637", "https://data.delijn.be/stops/405560"], ["https://data.delijn.be/stops/308506", "https://data.delijn.be/stops/308508"], ["https://data.delijn.be/stops/305117", "https://data.delijn.be/stops/305127"], ["https://data.delijn.be/stops/301857", "https://data.delijn.be/stops/301862"], ["https://data.delijn.be/stops/500998", "https://data.delijn.be/stops/504425"], ["https://data.delijn.be/stops/302205", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/504549", "https://data.delijn.be/stops/505216"], ["https://data.delijn.be/stops/400845", "https://data.delijn.be/stops/407592"], ["https://data.delijn.be/stops/405114", "https://data.delijn.be/stops/405859"], ["https://data.delijn.be/stops/400055", "https://data.delijn.be/stops/400097"], ["https://data.delijn.be/stops/304766", "https://data.delijn.be/stops/304778"], ["https://data.delijn.be/stops/205095", "https://data.delijn.be/stops/205096"], ["https://data.delijn.be/stops/302895", "https://data.delijn.be/stops/302903"], ["https://data.delijn.be/stops/503974", "https://data.delijn.be/stops/508104"], ["https://data.delijn.be/stops/400948", "https://data.delijn.be/stops/400949"], ["https://data.delijn.be/stops/504265", "https://data.delijn.be/stops/504266"], ["https://data.delijn.be/stops/401072", "https://data.delijn.be/stops/401166"], ["https://data.delijn.be/stops/504940", "https://data.delijn.be/stops/507016"], ["https://data.delijn.be/stops/404722", "https://data.delijn.be/stops/404753"], ["https://data.delijn.be/stops/501106", "https://data.delijn.be/stops/501107"], ["https://data.delijn.be/stops/503763", "https://data.delijn.be/stops/508763"], ["https://data.delijn.be/stops/304432", "https://data.delijn.be/stops/304454"], ["https://data.delijn.be/stops/105992", "https://data.delijn.be/stops/105994"], ["https://data.delijn.be/stops/308594", "https://data.delijn.be/stops/308860"], ["https://data.delijn.be/stops/104476", "https://data.delijn.be/stops/107903"], ["https://data.delijn.be/stops/407922", "https://data.delijn.be/stops/307797"], ["https://data.delijn.be/stops/408559", "https://data.delijn.be/stops/408873"], ["https://data.delijn.be/stops/104482", "https://data.delijn.be/stops/104564"], ["https://data.delijn.be/stops/501344", "https://data.delijn.be/stops/501399"], ["https://data.delijn.be/stops/101503", "https://data.delijn.be/stops/109345"], ["https://data.delijn.be/stops/400730", "https://data.delijn.be/stops/406609"], ["https://data.delijn.be/stops/304884", "https://data.delijn.be/stops/305505"], ["https://data.delijn.be/stops/106325", "https://data.delijn.be/stops/106327"], ["https://data.delijn.be/stops/403065", "https://data.delijn.be/stops/408516"], ["https://data.delijn.be/stops/406640", "https://data.delijn.be/stops/406682"], ["https://data.delijn.be/stops/401432", "https://data.delijn.be/stops/401497"], ["https://data.delijn.be/stops/405223", "https://data.delijn.be/stops/405233"], ["https://data.delijn.be/stops/502197", "https://data.delijn.be/stops/507687"], ["https://data.delijn.be/stops/404863", "https://data.delijn.be/stops/404869"], ["https://data.delijn.be/stops/408554", "https://data.delijn.be/stops/408555"], ["https://data.delijn.be/stops/108371", "https://data.delijn.be/stops/108457"], ["https://data.delijn.be/stops/501158", "https://data.delijn.be/stops/506637"], ["https://data.delijn.be/stops/106811", "https://data.delijn.be/stops/106812"], ["https://data.delijn.be/stops/201874", "https://data.delijn.be/stops/203396"], ["https://data.delijn.be/stops/302938", "https://data.delijn.be/stops/303455"], ["https://data.delijn.be/stops/107727", "https://data.delijn.be/stops/410162"], ["https://data.delijn.be/stops/503379", "https://data.delijn.be/stops/503446"], ["https://data.delijn.be/stops/104931", "https://data.delijn.be/stops/104934"], ["https://data.delijn.be/stops/104607", "https://data.delijn.be/stops/104608"], ["https://data.delijn.be/stops/206637", "https://data.delijn.be/stops/207888"], ["https://data.delijn.be/stops/302072", "https://data.delijn.be/stops/302073"], ["https://data.delijn.be/stops/401949", "https://data.delijn.be/stops/407339"], ["https://data.delijn.be/stops/205176", "https://data.delijn.be/stops/205177"], ["https://data.delijn.be/stops/403150", "https://data.delijn.be/stops/403151"], ["https://data.delijn.be/stops/405266", "https://data.delijn.be/stops/405272"], ["https://data.delijn.be/stops/101816", "https://data.delijn.be/stops/205142"], ["https://data.delijn.be/stops/403422", "https://data.delijn.be/stops/403423"], ["https://data.delijn.be/stops/206938", "https://data.delijn.be/stops/207421"], ["https://data.delijn.be/stops/102972", "https://data.delijn.be/stops/102973"], ["https://data.delijn.be/stops/507524", "https://data.delijn.be/stops/507526"], ["https://data.delijn.be/stops/205987", "https://data.delijn.be/stops/209223"], ["https://data.delijn.be/stops/105517", "https://data.delijn.be/stops/106972"], ["https://data.delijn.be/stops/408100", "https://data.delijn.be/stops/408103"], ["https://data.delijn.be/stops/201773", "https://data.delijn.be/stops/219027"], ["https://data.delijn.be/stops/206772", "https://data.delijn.be/stops/208032"], ["https://data.delijn.be/stops/303573", "https://data.delijn.be/stops/303586"], ["https://data.delijn.be/stops/401470", "https://data.delijn.be/stops/401546"], ["https://data.delijn.be/stops/501513", "https://data.delijn.be/stops/506441"], ["https://data.delijn.be/stops/208104", "https://data.delijn.be/stops/209105"], ["https://data.delijn.be/stops/304116", "https://data.delijn.be/stops/305352"], ["https://data.delijn.be/stops/102462", "https://data.delijn.be/stops/400412"], ["https://data.delijn.be/stops/407919", "https://data.delijn.be/stops/306060"], ["https://data.delijn.be/stops/504981", "https://data.delijn.be/stops/505917"], ["https://data.delijn.be/stops/104721", "https://data.delijn.be/stops/105180"], ["https://data.delijn.be/stops/205975", "https://data.delijn.be/stops/209745"], ["https://data.delijn.be/stops/204635", "https://data.delijn.be/stops/205635"], ["https://data.delijn.be/stops/504200", "https://data.delijn.be/stops/505113"], ["https://data.delijn.be/stops/103127", "https://data.delijn.be/stops/104126"], ["https://data.delijn.be/stops/404658", "https://data.delijn.be/stops/404670"], ["https://data.delijn.be/stops/105157", "https://data.delijn.be/stops/108761"], ["https://data.delijn.be/stops/205094", "https://data.delijn.be/stops/205594"], ["https://data.delijn.be/stops/203839", "https://data.delijn.be/stops/218001"], ["https://data.delijn.be/stops/108743", "https://data.delijn.be/stops/109501"], ["https://data.delijn.be/stops/507047", "https://data.delijn.be/stops/507642"], ["https://data.delijn.be/stops/405780", "https://data.delijn.be/stops/408481"], ["https://data.delijn.be/stops/201758", "https://data.delijn.be/stops/218011"], ["https://data.delijn.be/stops/408372", "https://data.delijn.be/stops/410157"], ["https://data.delijn.be/stops/208114", "https://data.delijn.be/stops/209795"], ["https://data.delijn.be/stops/502028", "https://data.delijn.be/stops/502658"], ["https://data.delijn.be/stops/208361", "https://data.delijn.be/stops/208399"], ["https://data.delijn.be/stops/304188", "https://data.delijn.be/stops/305906"], ["https://data.delijn.be/stops/404702", "https://data.delijn.be/stops/404819"], ["https://data.delijn.be/stops/102260", "https://data.delijn.be/stops/107490"], ["https://data.delijn.be/stops/301288", "https://data.delijn.be/stops/301397"], ["https://data.delijn.be/stops/406011", "https://data.delijn.be/stops/406129"], ["https://data.delijn.be/stops/206546", "https://data.delijn.be/stops/207546"], ["https://data.delijn.be/stops/201229", "https://data.delijn.be/stops/203354"], ["https://data.delijn.be/stops/401870", "https://data.delijn.be/stops/406118"], ["https://data.delijn.be/stops/206801", "https://data.delijn.be/stops/209621"], ["https://data.delijn.be/stops/106863", "https://data.delijn.be/stops/106865"], ["https://data.delijn.be/stops/503961", "https://data.delijn.be/stops/505434"], ["https://data.delijn.be/stops/503826", "https://data.delijn.be/stops/507709"], ["https://data.delijn.be/stops/103254", "https://data.delijn.be/stops/105115"], ["https://data.delijn.be/stops/204024", "https://data.delijn.be/stops/205024"], ["https://data.delijn.be/stops/109034", "https://data.delijn.be/stops/109037"], ["https://data.delijn.be/stops/101637", "https://data.delijn.be/stops/104280"], ["https://data.delijn.be/stops/207836", "https://data.delijn.be/stops/207939"], ["https://data.delijn.be/stops/502389", "https://data.delijn.be/stops/502392"], ["https://data.delijn.be/stops/302615", "https://data.delijn.be/stops/302628"], ["https://data.delijn.be/stops/404201", "https://data.delijn.be/stops/404239"], ["https://data.delijn.be/stops/401517", "https://data.delijn.be/stops/401741"], ["https://data.delijn.be/stops/402732", "https://data.delijn.be/stops/410056"], ["https://data.delijn.be/stops/208186", "https://data.delijn.be/stops/208358"], ["https://data.delijn.be/stops/401582", "https://data.delijn.be/stops/410359"], ["https://data.delijn.be/stops/305043", "https://data.delijn.be/stops/307951"], ["https://data.delijn.be/stops/407970", "https://data.delijn.be/stops/407971"], ["https://data.delijn.be/stops/401588", "https://data.delijn.be/stops/402082"], ["https://data.delijn.be/stops/106767", "https://data.delijn.be/stops/106867"], ["https://data.delijn.be/stops/302800", "https://data.delijn.be/stops/305546"], ["https://data.delijn.be/stops/508484", "https://data.delijn.be/stops/509712"], ["https://data.delijn.be/stops/105063", "https://data.delijn.be/stops/106299"], ["https://data.delijn.be/stops/102385", "https://data.delijn.be/stops/105120"], ["https://data.delijn.be/stops/505376", "https://data.delijn.be/stops/508061"], ["https://data.delijn.be/stops/201656", "https://data.delijn.be/stops/202614"], ["https://data.delijn.be/stops/102618", "https://data.delijn.be/stops/102621"], ["https://data.delijn.be/stops/200098", "https://data.delijn.be/stops/200228"], ["https://data.delijn.be/stops/302315", "https://data.delijn.be/stops/302352"], ["https://data.delijn.be/stops/202602", "https://data.delijn.be/stops/203601"], ["https://data.delijn.be/stops/106227", "https://data.delijn.be/stops/106324"], ["https://data.delijn.be/stops/210086", "https://data.delijn.be/stops/211002"], ["https://data.delijn.be/stops/505600", "https://data.delijn.be/stops/505602"], ["https://data.delijn.be/stops/207345", "https://data.delijn.be/stops/207717"], ["https://data.delijn.be/stops/405559", "https://data.delijn.be/stops/405561"], ["https://data.delijn.be/stops/108994", "https://data.delijn.be/stops/108997"], ["https://data.delijn.be/stops/503373", "https://data.delijn.be/stops/503436"], ["https://data.delijn.be/stops/503637", "https://data.delijn.be/stops/503638"], ["https://data.delijn.be/stops/108967", "https://data.delijn.be/stops/401932"], ["https://data.delijn.be/stops/206049", "https://data.delijn.be/stops/207162"], ["https://data.delijn.be/stops/503907", "https://data.delijn.be/stops/504834"], ["https://data.delijn.be/stops/216016", "https://data.delijn.be/stops/306077"], ["https://data.delijn.be/stops/302188", "https://data.delijn.be/stops/302197"], ["https://data.delijn.be/stops/409646", "https://data.delijn.be/stops/409647"], ["https://data.delijn.be/stops/206347", "https://data.delijn.be/stops/206356"], ["https://data.delijn.be/stops/105145", "https://data.delijn.be/stops/107825"], ["https://data.delijn.be/stops/409055", "https://data.delijn.be/stops/409071"], ["https://data.delijn.be/stops/404852", "https://data.delijn.be/stops/404871"], ["https://data.delijn.be/stops/407860", "https://data.delijn.be/stops/306053"], ["https://data.delijn.be/stops/503322", "https://data.delijn.be/stops/505935"], ["https://data.delijn.be/stops/202408", "https://data.delijn.be/stops/203408"], ["https://data.delijn.be/stops/301988", "https://data.delijn.be/stops/303615"], ["https://data.delijn.be/stops/204067", "https://data.delijn.be/stops/205231"], ["https://data.delijn.be/stops/108808", "https://data.delijn.be/stops/108811"], ["https://data.delijn.be/stops/408021", "https://data.delijn.be/stops/408135"], ["https://data.delijn.be/stops/503187", "https://data.delijn.be/stops/508187"], ["https://data.delijn.be/stops/201846", "https://data.delijn.be/stops/203066"], ["https://data.delijn.be/stops/404908", "https://data.delijn.be/stops/404966"], ["https://data.delijn.be/stops/208800", "https://data.delijn.be/stops/209206"], ["https://data.delijn.be/stops/107264", "https://data.delijn.be/stops/107266"], ["https://data.delijn.be/stops/501328", "https://data.delijn.be/stops/506328"], ["https://data.delijn.be/stops/406350", "https://data.delijn.be/stops/408871"], ["https://data.delijn.be/stops/302290", "https://data.delijn.be/stops/307812"], ["https://data.delijn.be/stops/203848", "https://data.delijn.be/stops/208724"], ["https://data.delijn.be/stops/301742", "https://data.delijn.be/stops/301823"], ["https://data.delijn.be/stops/402961", "https://data.delijn.be/stops/402965"], ["https://data.delijn.be/stops/108376", "https://data.delijn.be/stops/108444"], ["https://data.delijn.be/stops/204003", "https://data.delijn.be/stops/204694"], ["https://data.delijn.be/stops/300623", "https://data.delijn.be/stops/300628"], ["https://data.delijn.be/stops/202164", "https://data.delijn.be/stops/205070"], ["https://data.delijn.be/stops/202576", "https://data.delijn.be/stops/202607"], ["https://data.delijn.be/stops/105307", "https://data.delijn.be/stops/105396"], ["https://data.delijn.be/stops/206370", "https://data.delijn.be/stops/207370"], ["https://data.delijn.be/stops/400029", "https://data.delijn.be/stops/400439"], ["https://data.delijn.be/stops/302676", "https://data.delijn.be/stops/303612"], ["https://data.delijn.be/stops/201934", "https://data.delijn.be/stops/202951"], ["https://data.delijn.be/stops/503749", "https://data.delijn.be/stops/509736"], ["https://data.delijn.be/stops/206858", "https://data.delijn.be/stops/209623"], ["https://data.delijn.be/stops/207040", "https://data.delijn.be/stops/207963"], ["https://data.delijn.be/stops/502201", "https://data.delijn.be/stops/507299"], ["https://data.delijn.be/stops/401002", "https://data.delijn.be/stops/401009"], ["https://data.delijn.be/stops/504636", "https://data.delijn.be/stops/509635"], ["https://data.delijn.be/stops/107241", "https://data.delijn.be/stops/107242"], ["https://data.delijn.be/stops/200052", "https://data.delijn.be/stops/210063"], ["https://data.delijn.be/stops/208661", "https://data.delijn.be/stops/208696"], ["https://data.delijn.be/stops/303024", "https://data.delijn.be/stops/303090"], ["https://data.delijn.be/stops/300155", "https://data.delijn.be/stops/300176"], ["https://data.delijn.be/stops/503005", "https://data.delijn.be/stops/507475"], ["https://data.delijn.be/stops/403835", "https://data.delijn.be/stops/403849"], ["https://data.delijn.be/stops/400419", "https://data.delijn.be/stops/400422"], ["https://data.delijn.be/stops/509421", "https://data.delijn.be/stops/509436"], ["https://data.delijn.be/stops/405748", "https://data.delijn.be/stops/405882"], ["https://data.delijn.be/stops/102818", "https://data.delijn.be/stops/102819"], ["https://data.delijn.be/stops/405770", "https://data.delijn.be/stops/405833"], ["https://data.delijn.be/stops/206156", "https://data.delijn.be/stops/207639"], ["https://data.delijn.be/stops/503243", "https://data.delijn.be/stops/508243"], ["https://data.delijn.be/stops/302888", "https://data.delijn.be/stops/303231"], ["https://data.delijn.be/stops/200179", "https://data.delijn.be/stops/201732"], ["https://data.delijn.be/stops/106722", "https://data.delijn.be/stops/106724"], ["https://data.delijn.be/stops/307753", "https://data.delijn.be/stops/307755"], ["https://data.delijn.be/stops/200213", "https://data.delijn.be/stops/201213"], ["https://data.delijn.be/stops/101413", "https://data.delijn.be/stops/101432"], ["https://data.delijn.be/stops/106695", "https://data.delijn.be/stops/106698"], ["https://data.delijn.be/stops/502322", "https://data.delijn.be/stops/505338"], ["https://data.delijn.be/stops/106526", "https://data.delijn.be/stops/106527"], ["https://data.delijn.be/stops/502323", "https://data.delijn.be/stops/502658"], ["https://data.delijn.be/stops/301596", "https://data.delijn.be/stops/304507"], ["https://data.delijn.be/stops/405102", "https://data.delijn.be/stops/405103"], ["https://data.delijn.be/stops/301999", "https://data.delijn.be/stops/303615"], ["https://data.delijn.be/stops/400737", "https://data.delijn.be/stops/400740"], ["https://data.delijn.be/stops/202816", "https://data.delijn.be/stops/203460"], ["https://data.delijn.be/stops/504293", "https://data.delijn.be/stops/504298"], ["https://data.delijn.be/stops/207664", "https://data.delijn.be/stops/208504"], ["https://data.delijn.be/stops/209741", "https://data.delijn.be/stops/209742"], ["https://data.delijn.be/stops/502141", "https://data.delijn.be/stops/507421"], ["https://data.delijn.be/stops/304670", "https://data.delijn.be/stops/304676"], ["https://data.delijn.be/stops/207032", "https://data.delijn.be/stops/207901"], ["https://data.delijn.be/stops/103673", "https://data.delijn.be/stops/106256"], ["https://data.delijn.be/stops/102498", "https://data.delijn.be/stops/400306"], ["https://data.delijn.be/stops/106948", "https://data.delijn.be/stops/108701"], ["https://data.delijn.be/stops/109159", "https://data.delijn.be/stops/109161"], ["https://data.delijn.be/stops/306906", "https://data.delijn.be/stops/308128"], ["https://data.delijn.be/stops/108087", "https://data.delijn.be/stops/108387"], ["https://data.delijn.be/stops/200383", "https://data.delijn.be/stops/201368"], ["https://data.delijn.be/stops/307296", "https://data.delijn.be/stops/307297"], ["https://data.delijn.be/stops/106983", "https://data.delijn.be/stops/106984"], ["https://data.delijn.be/stops/408098", "https://data.delijn.be/stops/408108"], ["https://data.delijn.be/stops/401041", "https://data.delijn.be/stops/401154"], ["https://data.delijn.be/stops/307635", "https://data.delijn.be/stops/307637"], ["https://data.delijn.be/stops/201122", "https://data.delijn.be/stops/201124"], ["https://data.delijn.be/stops/200453", "https://data.delijn.be/stops/208847"], ["https://data.delijn.be/stops/302545", "https://data.delijn.be/stops/302546"], ["https://data.delijn.be/stops/109906", "https://data.delijn.be/stops/109907"], ["https://data.delijn.be/stops/401986", "https://data.delijn.be/stops/401990"], ["https://data.delijn.be/stops/108271", "https://data.delijn.be/stops/108272"], ["https://data.delijn.be/stops/202785", "https://data.delijn.be/stops/211103"], ["https://data.delijn.be/stops/503331", "https://data.delijn.be/stops/509735"], ["https://data.delijn.be/stops/205048", "https://data.delijn.be/stops/205049"], ["https://data.delijn.be/stops/400675", "https://data.delijn.be/stops/405335"], ["https://data.delijn.be/stops/102745", "https://data.delijn.be/stops/102770"], ["https://data.delijn.be/stops/300121", "https://data.delijn.be/stops/304998"], ["https://data.delijn.be/stops/505211", "https://data.delijn.be/stops/509401"], ["https://data.delijn.be/stops/401792", "https://data.delijn.be/stops/401801"], ["https://data.delijn.be/stops/200310", "https://data.delijn.be/stops/201160"], ["https://data.delijn.be/stops/304734", "https://data.delijn.be/stops/304778"], ["https://data.delijn.be/stops/201087", "https://data.delijn.be/stops/201699"], ["https://data.delijn.be/stops/201644", "https://data.delijn.be/stops/203943"], ["https://data.delijn.be/stops/305219", "https://data.delijn.be/stops/305220"], ["https://data.delijn.be/stops/103036", "https://data.delijn.be/stops/107407"], ["https://data.delijn.be/stops/105579", "https://data.delijn.be/stops/105594"], ["https://data.delijn.be/stops/407053", "https://data.delijn.be/stops/410016"], ["https://data.delijn.be/stops/407850", "https://data.delijn.be/stops/407909"], ["https://data.delijn.be/stops/202523", "https://data.delijn.be/stops/203522"], ["https://data.delijn.be/stops/407831", "https://data.delijn.be/stops/407834"], ["https://data.delijn.be/stops/304750", "https://data.delijn.be/stops/304851"], ["https://data.delijn.be/stops/105998", "https://data.delijn.be/stops/107958"], ["https://data.delijn.be/stops/109215", "https://data.delijn.be/stops/109216"], ["https://data.delijn.be/stops/502570", "https://data.delijn.be/stops/502571"], ["https://data.delijn.be/stops/210025", "https://data.delijn.be/stops/210033"], ["https://data.delijn.be/stops/108460", "https://data.delijn.be/stops/108950"], ["https://data.delijn.be/stops/503482", "https://data.delijn.be/stops/508482"], ["https://data.delijn.be/stops/400753", "https://data.delijn.be/stops/400757"], ["https://data.delijn.be/stops/109220", "https://data.delijn.be/stops/109223"], ["https://data.delijn.be/stops/305227", "https://data.delijn.be/stops/305891"], ["https://data.delijn.be/stops/206526", "https://data.delijn.be/stops/206555"], ["https://data.delijn.be/stops/408573", "https://data.delijn.be/stops/408575"], ["https://data.delijn.be/stops/209252", "https://data.delijn.be/stops/209253"], ["https://data.delijn.be/stops/402630", "https://data.delijn.be/stops/402631"], ["https://data.delijn.be/stops/302573", "https://data.delijn.be/stops/302574"], ["https://data.delijn.be/stops/306849", "https://data.delijn.be/stops/306850"], ["https://data.delijn.be/stops/302311", "https://data.delijn.be/stops/303996"], ["https://data.delijn.be/stops/106741", "https://data.delijn.be/stops/106742"], ["https://data.delijn.be/stops/206088", "https://data.delijn.be/stops/207087"], ["https://data.delijn.be/stops/200114", "https://data.delijn.be/stops/200887"], ["https://data.delijn.be/stops/207349", "https://data.delijn.be/stops/207689"], ["https://data.delijn.be/stops/507340", "https://data.delijn.be/stops/508592"], ["https://data.delijn.be/stops/200549", "https://data.delijn.be/stops/201549"], ["https://data.delijn.be/stops/200070", "https://data.delijn.be/stops/201071"], ["https://data.delijn.be/stops/408059", "https://data.delijn.be/stops/408283"], ["https://data.delijn.be/stops/106427", "https://data.delijn.be/stops/106428"], ["https://data.delijn.be/stops/403755", "https://data.delijn.be/stops/403764"], ["https://data.delijn.be/stops/200994", "https://data.delijn.be/stops/203014"], ["https://data.delijn.be/stops/407153", "https://data.delijn.be/stops/407163"], ["https://data.delijn.be/stops/106491", "https://data.delijn.be/stops/106493"], ["https://data.delijn.be/stops/505404", "https://data.delijn.be/stops/506078"], ["https://data.delijn.be/stops/303864", "https://data.delijn.be/stops/307492"], ["https://data.delijn.be/stops/105796", "https://data.delijn.be/stops/105798"], ["https://data.delijn.be/stops/209116", "https://data.delijn.be/stops/209797"], ["https://data.delijn.be/stops/207801", "https://data.delijn.be/stops/216018"], ["https://data.delijn.be/stops/505302", "https://data.delijn.be/stops/509596"], ["https://data.delijn.be/stops/503864", "https://data.delijn.be/stops/507952"], ["https://data.delijn.be/stops/302002", "https://data.delijn.be/stops/302018"], ["https://data.delijn.be/stops/504404", "https://data.delijn.be/stops/509404"], ["https://data.delijn.be/stops/501080", "https://data.delijn.be/stops/501518"], ["https://data.delijn.be/stops/105191", "https://data.delijn.be/stops/105192"], ["https://data.delijn.be/stops/300634", "https://data.delijn.be/stops/307344"], ["https://data.delijn.be/stops/304807", "https://data.delijn.be/stops/307884"], ["https://data.delijn.be/stops/202625", "https://data.delijn.be/stops/202642"], ["https://data.delijn.be/stops/504181", "https://data.delijn.be/stops/509164"], ["https://data.delijn.be/stops/404218", "https://data.delijn.be/stops/404219"], ["https://data.delijn.be/stops/405732", "https://data.delijn.be/stops/405735"], ["https://data.delijn.be/stops/300333", "https://data.delijn.be/stops/306660"], ["https://data.delijn.be/stops/208141", "https://data.delijn.be/stops/208817"], ["https://data.delijn.be/stops/307308", "https://data.delijn.be/stops/307311"], ["https://data.delijn.be/stops/305977", "https://data.delijn.be/stops/305978"], ["https://data.delijn.be/stops/306868", "https://data.delijn.be/stops/307425"], ["https://data.delijn.be/stops/200819", "https://data.delijn.be/stops/200820"], ["https://data.delijn.be/stops/105065", "https://data.delijn.be/stops/106086"], ["https://data.delijn.be/stops/101014", "https://data.delijn.be/stops/107805"], ["https://data.delijn.be/stops/202959", "https://data.delijn.be/stops/203957"], ["https://data.delijn.be/stops/503078", "https://data.delijn.be/stops/505264"], ["https://data.delijn.be/stops/108489", "https://data.delijn.be/stops/306599"], ["https://data.delijn.be/stops/204014", "https://data.delijn.be/stops/205013"], ["https://data.delijn.be/stops/503338", "https://data.delijn.be/stops/508345"], ["https://data.delijn.be/stops/405433", "https://data.delijn.be/stops/408762"], ["https://data.delijn.be/stops/409260", "https://data.delijn.be/stops/409289"], ["https://data.delijn.be/stops/201806", "https://data.delijn.be/stops/209326"], ["https://data.delijn.be/stops/300577", "https://data.delijn.be/stops/300578"], ["https://data.delijn.be/stops/400864", "https://data.delijn.be/stops/400867"], ["https://data.delijn.be/stops/503404", "https://data.delijn.be/stops/503435"], ["https://data.delijn.be/stops/104503", "https://data.delijn.be/stops/107931"], ["https://data.delijn.be/stops/504517", "https://data.delijn.be/stops/505803"], ["https://data.delijn.be/stops/303541", "https://data.delijn.be/stops/303564"], ["https://data.delijn.be/stops/205459", "https://data.delijn.be/stops/205479"], ["https://data.delijn.be/stops/304404", "https://data.delijn.be/stops/306874"], ["https://data.delijn.be/stops/406355", "https://data.delijn.be/stops/410043"], ["https://data.delijn.be/stops/105417", "https://data.delijn.be/stops/109844"], ["https://data.delijn.be/stops/206433", "https://data.delijn.be/stops/207433"], ["https://data.delijn.be/stops/105204", "https://data.delijn.be/stops/105206"], ["https://data.delijn.be/stops/300144", "https://data.delijn.be/stops/300146"], ["https://data.delijn.be/stops/305257", "https://data.delijn.be/stops/306342"], ["https://data.delijn.be/stops/208079", "https://data.delijn.be/stops/209633"], ["https://data.delijn.be/stops/502273", "https://data.delijn.be/stops/502518"], ["https://data.delijn.be/stops/504053", "https://data.delijn.be/stops/509053"], ["https://data.delijn.be/stops/507083", "https://data.delijn.be/stops/507455"], ["https://data.delijn.be/stops/403526", "https://data.delijn.be/stops/403531"], ["https://data.delijn.be/stops/107311", "https://data.delijn.be/stops/107312"], ["https://data.delijn.be/stops/302564", "https://data.delijn.be/stops/302595"], ["https://data.delijn.be/stops/201000", "https://data.delijn.be/stops/202000"], ["https://data.delijn.be/stops/400746", "https://data.delijn.be/stops/409578"], ["https://data.delijn.be/stops/402123", "https://data.delijn.be/stops/405489"], ["https://data.delijn.be/stops/403022", "https://data.delijn.be/stops/409307"], ["https://data.delijn.be/stops/306099", "https://data.delijn.be/stops/306100"], ["https://data.delijn.be/stops/504715", "https://data.delijn.be/stops/509253"], ["https://data.delijn.be/stops/303205", "https://data.delijn.be/stops/304319"], ["https://data.delijn.be/stops/105749", "https://data.delijn.be/stops/109820"], ["https://data.delijn.be/stops/406265", "https://data.delijn.be/stops/406423"], ["https://data.delijn.be/stops/104422", "https://data.delijn.be/stops/205445"], ["https://data.delijn.be/stops/208551", "https://data.delijn.be/stops/209549"], ["https://data.delijn.be/stops/401288", "https://data.delijn.be/stops/401328"], ["https://data.delijn.be/stops/405311", "https://data.delijn.be/stops/406298"], ["https://data.delijn.be/stops/402826", "https://data.delijn.be/stops/408483"], ["https://data.delijn.be/stops/505036", "https://data.delijn.be/stops/506210"], ["https://data.delijn.be/stops/300702", "https://data.delijn.be/stops/306944"], ["https://data.delijn.be/stops/503669", "https://data.delijn.be/stops/508669"], ["https://data.delijn.be/stops/306923", "https://data.delijn.be/stops/306926"], ["https://data.delijn.be/stops/303062", "https://data.delijn.be/stops/303063"], ["https://data.delijn.be/stops/301323", "https://data.delijn.be/stops/306189"], ["https://data.delijn.be/stops/101500", "https://data.delijn.be/stops/101501"], ["https://data.delijn.be/stops/305710", "https://data.delijn.be/stops/305711"], ["https://data.delijn.be/stops/306802", "https://data.delijn.be/stops/307736"], ["https://data.delijn.be/stops/301522", "https://data.delijn.be/stops/305736"], ["https://data.delijn.be/stops/405789", "https://data.delijn.be/stops/409704"], ["https://data.delijn.be/stops/301398", "https://data.delijn.be/stops/303224"], ["https://data.delijn.be/stops/302141", "https://data.delijn.be/stops/303627"], ["https://data.delijn.be/stops/206844", "https://data.delijn.be/stops/206845"], ["https://data.delijn.be/stops/401282", "https://data.delijn.be/stops/401283"], ["https://data.delijn.be/stops/400627", "https://data.delijn.be/stops/408251"], ["https://data.delijn.be/stops/201263", "https://data.delijn.be/stops/202545"], ["https://data.delijn.be/stops/206446", "https://data.delijn.be/stops/207446"], ["https://data.delijn.be/stops/508668", "https://data.delijn.be/stops/508669"], ["https://data.delijn.be/stops/202701", "https://data.delijn.be/stops/211066"], ["https://data.delijn.be/stops/505537", "https://data.delijn.be/stops/509587"], ["https://data.delijn.be/stops/502595", "https://data.delijn.be/stops/507590"], ["https://data.delijn.be/stops/301046", "https://data.delijn.be/stops/303831"], ["https://data.delijn.be/stops/405161", "https://data.delijn.be/stops/405261"], ["https://data.delijn.be/stops/401386", "https://data.delijn.be/stops/410176"], ["https://data.delijn.be/stops/405919", "https://data.delijn.be/stops/405993"], ["https://data.delijn.be/stops/105054", "https://data.delijn.be/stops/105129"], ["https://data.delijn.be/stops/403943", "https://data.delijn.be/stops/403952"], ["https://data.delijn.be/stops/306272", "https://data.delijn.be/stops/307525"], ["https://data.delijn.be/stops/102066", "https://data.delijn.be/stops/103073"], ["https://data.delijn.be/stops/300083", "https://data.delijn.be/stops/304344"], ["https://data.delijn.be/stops/408510", "https://data.delijn.be/stops/408689"], ["https://data.delijn.be/stops/405336", "https://data.delijn.be/stops/405347"], ["https://data.delijn.be/stops/505678", "https://data.delijn.be/stops/507303"], ["https://data.delijn.be/stops/307397", "https://data.delijn.be/stops/307423"], ["https://data.delijn.be/stops/403334", "https://data.delijn.be/stops/403957"], ["https://data.delijn.be/stops/200845", "https://data.delijn.be/stops/203301"], ["https://data.delijn.be/stops/105407", "https://data.delijn.be/stops/105834"], ["https://data.delijn.be/stops/508386", "https://data.delijn.be/stops/509760"], ["https://data.delijn.be/stops/300949", "https://data.delijn.be/stops/305387"], ["https://data.delijn.be/stops/400471", "https://data.delijn.be/stops/400496"], ["https://data.delijn.be/stops/401486", "https://data.delijn.be/stops/401538"], ["https://data.delijn.be/stops/103236", "https://data.delijn.be/stops/109431"], ["https://data.delijn.be/stops/400684", "https://data.delijn.be/stops/406647"], ["https://data.delijn.be/stops/109331", "https://data.delijn.be/stops/109332"], ["https://data.delijn.be/stops/400175", "https://data.delijn.be/stops/402797"], ["https://data.delijn.be/stops/402749", "https://data.delijn.be/stops/405238"], ["https://data.delijn.be/stops/504259", "https://data.delijn.be/stops/509259"], ["https://data.delijn.be/stops/308886", "https://data.delijn.be/stops/308887"], ["https://data.delijn.be/stops/504282", "https://data.delijn.be/stops/509278"], ["https://data.delijn.be/stops/200565", "https://data.delijn.be/stops/200667"], ["https://data.delijn.be/stops/508260", "https://data.delijn.be/stops/509867"], ["https://data.delijn.be/stops/203741", "https://data.delijn.be/stops/209713"], ["https://data.delijn.be/stops/504994", "https://data.delijn.be/stops/505897"], ["https://data.delijn.be/stops/501060", "https://data.delijn.be/stops/506054"], ["https://data.delijn.be/stops/401036", "https://data.delijn.be/stops/401039"], ["https://data.delijn.be/stops/202079", "https://data.delijn.be/stops/202169"], ["https://data.delijn.be/stops/106232", "https://data.delijn.be/stops/109123"], ["https://data.delijn.be/stops/508652", "https://data.delijn.be/stops/508950"], ["https://data.delijn.be/stops/407370", "https://data.delijn.be/stops/407375"], ["https://data.delijn.be/stops/300277", "https://data.delijn.be/stops/306285"], ["https://data.delijn.be/stops/406974", "https://data.delijn.be/stops/409468"], ["https://data.delijn.be/stops/304171", "https://data.delijn.be/stops/307547"], ["https://data.delijn.be/stops/508295", "https://data.delijn.be/stops/509842"], ["https://data.delijn.be/stops/300562", "https://data.delijn.be/stops/307859"], ["https://data.delijn.be/stops/302921", "https://data.delijn.be/stops/306199"], ["https://data.delijn.be/stops/206743", "https://data.delijn.be/stops/207710"], ["https://data.delijn.be/stops/303861", "https://data.delijn.be/stops/303862"], ["https://data.delijn.be/stops/305250", "https://data.delijn.be/stops/305285"], ["https://data.delijn.be/stops/402972", "https://data.delijn.be/stops/405586"], ["https://data.delijn.be/stops/307203", "https://data.delijn.be/stops/307204"], ["https://data.delijn.be/stops/300724", "https://data.delijn.be/stops/301426"], ["https://data.delijn.be/stops/502332", "https://data.delijn.be/stops/505052"], ["https://data.delijn.be/stops/209092", "https://data.delijn.be/stops/209093"], ["https://data.delijn.be/stops/101537", "https://data.delijn.be/stops/109075"], ["https://data.delijn.be/stops/206491", "https://data.delijn.be/stops/209679"], ["https://data.delijn.be/stops/403784", "https://data.delijn.be/stops/403785"], ["https://data.delijn.be/stops/102839", "https://data.delijn.be/stops/103049"], ["https://data.delijn.be/stops/102799", "https://data.delijn.be/stops/103896"], ["https://data.delijn.be/stops/103716", "https://data.delijn.be/stops/103718"], ["https://data.delijn.be/stops/206817", "https://data.delijn.be/stops/207816"], ["https://data.delijn.be/stops/304385", "https://data.delijn.be/stops/307416"], ["https://data.delijn.be/stops/402805", "https://data.delijn.be/stops/406128"], ["https://data.delijn.be/stops/207355", "https://data.delijn.be/stops/207721"], ["https://data.delijn.be/stops/503876", "https://data.delijn.be/stops/508607"], ["https://data.delijn.be/stops/201812", "https://data.delijn.be/stops/218026"], ["https://data.delijn.be/stops/200619", "https://data.delijn.be/stops/201618"], ["https://data.delijn.be/stops/206725", "https://data.delijn.be/stops/206742"], ["https://data.delijn.be/stops/208554", "https://data.delijn.be/stops/307594"], ["https://data.delijn.be/stops/405814", "https://data.delijn.be/stops/405818"], ["https://data.delijn.be/stops/106626", "https://data.delijn.be/stops/106627"], ["https://data.delijn.be/stops/206306", "https://data.delijn.be/stops/207306"], ["https://data.delijn.be/stops/202215", "https://data.delijn.be/stops/210005"], ["https://data.delijn.be/stops/304096", "https://data.delijn.be/stops/304097"], ["https://data.delijn.be/stops/505964", "https://data.delijn.be/stops/507274"], ["https://data.delijn.be/stops/506018", "https://data.delijn.be/stops/506608"], ["https://data.delijn.be/stops/301563", "https://data.delijn.be/stops/301579"], ["https://data.delijn.be/stops/207670", "https://data.delijn.be/stops/208481"], ["https://data.delijn.be/stops/102894", "https://data.delijn.be/stops/104090"], ["https://data.delijn.be/stops/204638", "https://data.delijn.be/stops/205638"], ["https://data.delijn.be/stops/400478", "https://data.delijn.be/stops/404674"], ["https://data.delijn.be/stops/406171", "https://data.delijn.be/stops/406180"], ["https://data.delijn.be/stops/403451", "https://data.delijn.be/stops/404530"], ["https://data.delijn.be/stops/208372", "https://data.delijn.be/stops/209371"], ["https://data.delijn.be/stops/206247", "https://data.delijn.be/stops/206248"], ["https://data.delijn.be/stops/304321", "https://data.delijn.be/stops/307005"], ["https://data.delijn.be/stops/508539", "https://data.delijn.be/stops/508554"], ["https://data.delijn.be/stops/108607", "https://data.delijn.be/stops/300066"], ["https://data.delijn.be/stops/200310", "https://data.delijn.be/stops/200311"], ["https://data.delijn.be/stops/302668", "https://data.delijn.be/stops/302697"], ["https://data.delijn.be/stops/200805", "https://data.delijn.be/stops/200810"], ["https://data.delijn.be/stops/505306", "https://data.delijn.be/stops/507698"], ["https://data.delijn.be/stops/503334", "https://data.delijn.be/stops/505630"], ["https://data.delijn.be/stops/504372", "https://data.delijn.be/stops/509614"], ["https://data.delijn.be/stops/407750", "https://data.delijn.be/stops/409794"], ["https://data.delijn.be/stops/101954", "https://data.delijn.be/stops/108308"], ["https://data.delijn.be/stops/307910", "https://data.delijn.be/stops/308157"], ["https://data.delijn.be/stops/300078", "https://data.delijn.be/stops/307344"], ["https://data.delijn.be/stops/306124", "https://data.delijn.be/stops/307144"], ["https://data.delijn.be/stops/404506", "https://data.delijn.be/stops/404545"], ["https://data.delijn.be/stops/104883", "https://data.delijn.be/stops/104887"], ["https://data.delijn.be/stops/304442", "https://data.delijn.be/stops/307718"], ["https://data.delijn.be/stops/505225", "https://data.delijn.be/stops/505575"], ["https://data.delijn.be/stops/204334", "https://data.delijn.be/stops/205040"], ["https://data.delijn.be/stops/108443", "https://data.delijn.be/stops/108444"], ["https://data.delijn.be/stops/303354", "https://data.delijn.be/stops/303369"], ["https://data.delijn.be/stops/504796", "https://data.delijn.be/stops/504801"], ["https://data.delijn.be/stops/300126", "https://data.delijn.be/stops/304382"], ["https://data.delijn.be/stops/300844", "https://data.delijn.be/stops/306718"], ["https://data.delijn.be/stops/101954", "https://data.delijn.be/stops/109871"], ["https://data.delijn.be/stops/403487", "https://data.delijn.be/stops/403560"], ["https://data.delijn.be/stops/107852", "https://data.delijn.be/stops/107853"], ["https://data.delijn.be/stops/303542", "https://data.delijn.be/stops/303543"], ["https://data.delijn.be/stops/200055", "https://data.delijn.be/stops/211120"], ["https://data.delijn.be/stops/209051", "https://data.delijn.be/stops/209052"], ["https://data.delijn.be/stops/405055", "https://data.delijn.be/stops/408372"], ["https://data.delijn.be/stops/406008", "https://data.delijn.be/stops/406144"], ["https://data.delijn.be/stops/200933", "https://data.delijn.be/stops/203265"], ["https://data.delijn.be/stops/207128", "https://data.delijn.be/stops/207129"], ["https://data.delijn.be/stops/306297", "https://data.delijn.be/stops/306300"], ["https://data.delijn.be/stops/202593", "https://data.delijn.be/stops/202594"], ["https://data.delijn.be/stops/206268", "https://data.delijn.be/stops/207052"], ["https://data.delijn.be/stops/402954", "https://data.delijn.be/stops/408583"], ["https://data.delijn.be/stops/303080", "https://data.delijn.be/stops/305159"], ["https://data.delijn.be/stops/504538", "https://data.delijn.be/stops/505277"], ["https://data.delijn.be/stops/206889", "https://data.delijn.be/stops/207386"], ["https://data.delijn.be/stops/404680", "https://data.delijn.be/stops/408727"], ["https://data.delijn.be/stops/402409", "https://data.delijn.be/stops/404641"], ["https://data.delijn.be/stops/405191", "https://data.delijn.be/stops/406325"], ["https://data.delijn.be/stops/304631", "https://data.delijn.be/stops/308755"], ["https://data.delijn.be/stops/207527", "https://data.delijn.be/stops/207555"], ["https://data.delijn.be/stops/206907", "https://data.delijn.be/stops/206908"], ["https://data.delijn.be/stops/108427", "https://data.delijn.be/stops/108428"], ["https://data.delijn.be/stops/305820", "https://data.delijn.be/stops/305859"], ["https://data.delijn.be/stops/305168", "https://data.delijn.be/stops/305208"], ["https://data.delijn.be/stops/409126", "https://data.delijn.be/stops/409523"], ["https://data.delijn.be/stops/301998", "https://data.delijn.be/stops/306317"], ["https://data.delijn.be/stops/508690", "https://data.delijn.be/stops/509951"], ["https://data.delijn.be/stops/306618", "https://data.delijn.be/stops/308479"], ["https://data.delijn.be/stops/201663", "https://data.delijn.be/stops/201849"], ["https://data.delijn.be/stops/501139", "https://data.delijn.be/stops/506132"], ["https://data.delijn.be/stops/409710", "https://data.delijn.be/stops/409712"], ["https://data.delijn.be/stops/403519", "https://data.delijn.be/stops/403520"], ["https://data.delijn.be/stops/102778", "https://data.delijn.be/stops/102779"], ["https://data.delijn.be/stops/207686", "https://data.delijn.be/stops/207748"], ["https://data.delijn.be/stops/402442", "https://data.delijn.be/stops/402443"], ["https://data.delijn.be/stops/507451", "https://data.delijn.be/stops/507455"], ["https://data.delijn.be/stops/405880", "https://data.delijn.be/stops/406386"], ["https://data.delijn.be/stops/102688", "https://data.delijn.be/stops/103905"], ["https://data.delijn.be/stops/109703", "https://data.delijn.be/stops/109704"], ["https://data.delijn.be/stops/505680", "https://data.delijn.be/stops/505681"], ["https://data.delijn.be/stops/401529", "https://data.delijn.be/stops/406888"], ["https://data.delijn.be/stops/502347", "https://data.delijn.be/stops/505770"], ["https://data.delijn.be/stops/503068", "https://data.delijn.be/stops/509762"], ["https://data.delijn.be/stops/206095", "https://data.delijn.be/stops/206724"], ["https://data.delijn.be/stops/206617", "https://data.delijn.be/stops/207617"], ["https://data.delijn.be/stops/405540", "https://data.delijn.be/stops/406786"], ["https://data.delijn.be/stops/206114", "https://data.delijn.be/stops/206154"], ["https://data.delijn.be/stops/206415", "https://data.delijn.be/stops/207415"], ["https://data.delijn.be/stops/502263", "https://data.delijn.be/stops/507263"], ["https://data.delijn.be/stops/208445", "https://data.delijn.be/stops/209445"], ["https://data.delijn.be/stops/503832", "https://data.delijn.be/stops/503833"], ["https://data.delijn.be/stops/409565", "https://data.delijn.be/stops/409573"], ["https://data.delijn.be/stops/404750", "https://data.delijn.be/stops/404753"], ["https://data.delijn.be/stops/501403", "https://data.delijn.be/stops/501512"], ["https://data.delijn.be/stops/501153", "https://data.delijn.be/stops/501163"], ["https://data.delijn.be/stops/206702", "https://data.delijn.be/stops/207979"], ["https://data.delijn.be/stops/204991", "https://data.delijn.be/stops/208779"], ["https://data.delijn.be/stops/101373", "https://data.delijn.be/stops/101402"], ["https://data.delijn.be/stops/208814", "https://data.delijn.be/stops/209200"], ["https://data.delijn.be/stops/409270", "https://data.delijn.be/stops/409333"], ["https://data.delijn.be/stops/106492", "https://data.delijn.be/stops/109255"], ["https://data.delijn.be/stops/103288", "https://data.delijn.be/stops/107686"], ["https://data.delijn.be/stops/201880", "https://data.delijn.be/stops/202028"], ["https://data.delijn.be/stops/206192", "https://data.delijn.be/stops/206956"], ["https://data.delijn.be/stops/209223", "https://data.delijn.be/stops/219018"], ["https://data.delijn.be/stops/305622", "https://data.delijn.be/stops/305641"], ["https://data.delijn.be/stops/503637", "https://data.delijn.be/stops/508792"], ["https://data.delijn.be/stops/505651", "https://data.delijn.be/stops/507755"], ["https://data.delijn.be/stops/105748", "https://data.delijn.be/stops/109826"], ["https://data.delijn.be/stops/301366", "https://data.delijn.be/stops/301372"], ["https://data.delijn.be/stops/102989", "https://data.delijn.be/stops/106516"], ["https://data.delijn.be/stops/303070", "https://data.delijn.be/stops/303124"], ["https://data.delijn.be/stops/502094", "https://data.delijn.be/stops/502142"], ["https://data.delijn.be/stops/501292", "https://data.delijn.be/stops/510014"], ["https://data.delijn.be/stops/109739", "https://data.delijn.be/stops/109740"], ["https://data.delijn.be/stops/205200", "https://data.delijn.be/stops/205201"], ["https://data.delijn.be/stops/104964", "https://data.delijn.be/stops/109459"], ["https://data.delijn.be/stops/400639", "https://data.delijn.be/stops/400920"], ["https://data.delijn.be/stops/208427", "https://data.delijn.be/stops/209427"], ["https://data.delijn.be/stops/509400", "https://data.delijn.be/stops/509423"], ["https://data.delijn.be/stops/104901", "https://data.delijn.be/stops/107653"], ["https://data.delijn.be/stops/208788", "https://data.delijn.be/stops/208789"], ["https://data.delijn.be/stops/108339", "https://data.delijn.be/stops/108342"], ["https://data.delijn.be/stops/200869", "https://data.delijn.be/stops/202078"], ["https://data.delijn.be/stops/202259", "https://data.delijn.be/stops/202260"], ["https://data.delijn.be/stops/402538", "https://data.delijn.be/stops/402539"], ["https://data.delijn.be/stops/106174", "https://data.delijn.be/stops/106178"], ["https://data.delijn.be/stops/109885", "https://data.delijn.be/stops/109887"], ["https://data.delijn.be/stops/308230", "https://data.delijn.be/stops/308232"], ["https://data.delijn.be/stops/400712", "https://data.delijn.be/stops/409500"], ["https://data.delijn.be/stops/501361", "https://data.delijn.be/stops/505359"], ["https://data.delijn.be/stops/302552", "https://data.delijn.be/stops/306588"], ["https://data.delijn.be/stops/501021", "https://data.delijn.be/stops/506598"], ["https://data.delijn.be/stops/300025", "https://data.delijn.be/stops/307000"], ["https://data.delijn.be/stops/404344", "https://data.delijn.be/stops/404949"], ["https://data.delijn.be/stops/104598", "https://data.delijn.be/stops/106839"], ["https://data.delijn.be/stops/205064", "https://data.delijn.be/stops/205692"], ["https://data.delijn.be/stops/102443", "https://data.delijn.be/stops/102446"], ["https://data.delijn.be/stops/401074", "https://data.delijn.be/stops/402899"], ["https://data.delijn.be/stops/404327", "https://data.delijn.be/stops/408669"], ["https://data.delijn.be/stops/302661", "https://data.delijn.be/stops/302690"], ["https://data.delijn.be/stops/209356", "https://data.delijn.be/stops/209499"], ["https://data.delijn.be/stops/403525", "https://data.delijn.be/stops/404224"], ["https://data.delijn.be/stops/210010", "https://data.delijn.be/stops/210011"], ["https://data.delijn.be/stops/103115", "https://data.delijn.be/stops/103127"], ["https://data.delijn.be/stops/208694", "https://data.delijn.be/stops/208695"], ["https://data.delijn.be/stops/300209", "https://data.delijn.be/stops/303127"], ["https://data.delijn.be/stops/304641", "https://data.delijn.be/stops/305388"], ["https://data.delijn.be/stops/200722", "https://data.delijn.be/stops/203407"], ["https://data.delijn.be/stops/502313", "https://data.delijn.be/stops/507313"], ["https://data.delijn.be/stops/405042", "https://data.delijn.be/stops/405050"], ["https://data.delijn.be/stops/506102", "https://data.delijn.be/stops/506134"], ["https://data.delijn.be/stops/201904", "https://data.delijn.be/stops/203495"], ["https://data.delijn.be/stops/307152", "https://data.delijn.be/stops/307157"], ["https://data.delijn.be/stops/109496", "https://data.delijn.be/stops/305624"], ["https://data.delijn.be/stops/301730", "https://data.delijn.be/stops/308416"], ["https://data.delijn.be/stops/402418", "https://data.delijn.be/stops/402459"], ["https://data.delijn.be/stops/202282", "https://data.delijn.be/stops/203633"], ["https://data.delijn.be/stops/305855", "https://data.delijn.be/stops/305857"], ["https://data.delijn.be/stops/108398", "https://data.delijn.be/stops/108411"], ["https://data.delijn.be/stops/406600", "https://data.delijn.be/stops/406623"], ["https://data.delijn.be/stops/304363", "https://data.delijn.be/stops/307374"], ["https://data.delijn.be/stops/305768", "https://data.delijn.be/stops/305770"], ["https://data.delijn.be/stops/207872", "https://data.delijn.be/stops/208365"], ["https://data.delijn.be/stops/401308", "https://data.delijn.be/stops/401319"], ["https://data.delijn.be/stops/502033", "https://data.delijn.be/stops/507642"], ["https://data.delijn.be/stops/304036", "https://data.delijn.be/stops/304037"], ["https://data.delijn.be/stops/106664", "https://data.delijn.be/stops/106666"], ["https://data.delijn.be/stops/108298", "https://data.delijn.be/stops/108299"], ["https://data.delijn.be/stops/504585", "https://data.delijn.be/stops/509585"], ["https://data.delijn.be/stops/504380", "https://data.delijn.be/stops/504383"], ["https://data.delijn.be/stops/402042", "https://data.delijn.be/stops/402456"], ["https://data.delijn.be/stops/200212", "https://data.delijn.be/stops/201128"], ["https://data.delijn.be/stops/206964", "https://data.delijn.be/stops/207964"], ["https://data.delijn.be/stops/202031", "https://data.delijn.be/stops/202033"], ["https://data.delijn.be/stops/302206", "https://data.delijn.be/stops/308100"], ["https://data.delijn.be/stops/301213", "https://data.delijn.be/stops/301217"], ["https://data.delijn.be/stops/406289", "https://data.delijn.be/stops/406424"], ["https://data.delijn.be/stops/301696", "https://data.delijn.be/stops/301724"], ["https://data.delijn.be/stops/503758", "https://data.delijn.be/stops/508697"], ["https://data.delijn.be/stops/302179", "https://data.delijn.be/stops/305161"], ["https://data.delijn.be/stops/300811", "https://data.delijn.be/stops/307232"], ["https://data.delijn.be/stops/103755", "https://data.delijn.be/stops/104162"], ["https://data.delijn.be/stops/503256", "https://data.delijn.be/stops/503446"], ["https://data.delijn.be/stops/401638", "https://data.delijn.be/stops/308205"], ["https://data.delijn.be/stops/207768", "https://data.delijn.be/stops/207779"], ["https://data.delijn.be/stops/207825", "https://data.delijn.be/stops/207862"], ["https://data.delijn.be/stops/108485", "https://data.delijn.be/stops/108490"], ["https://data.delijn.be/stops/304236", "https://data.delijn.be/stops/304239"], ["https://data.delijn.be/stops/403717", "https://data.delijn.be/stops/406889"], ["https://data.delijn.be/stops/505019", "https://data.delijn.be/stops/507664"], ["https://data.delijn.be/stops/405843", "https://data.delijn.be/stops/405853"], ["https://data.delijn.be/stops/109629", "https://data.delijn.be/stops/109632"], ["https://data.delijn.be/stops/203113", "https://data.delijn.be/stops/205797"], ["https://data.delijn.be/stops/101620", "https://data.delijn.be/stops/102909"], ["https://data.delijn.be/stops/505746", "https://data.delijn.be/stops/506186"], ["https://data.delijn.be/stops/101834", "https://data.delijn.be/stops/107037"], ["https://data.delijn.be/stops/202920", "https://data.delijn.be/stops/203924"], ["https://data.delijn.be/stops/502469", "https://data.delijn.be/stops/509699"], ["https://data.delijn.be/stops/201863", "https://data.delijn.be/stops/202424"], ["https://data.delijn.be/stops/501335", "https://data.delijn.be/stops/501357"], ["https://data.delijn.be/stops/201101", "https://data.delijn.be/stops/201111"], ["https://data.delijn.be/stops/401566", "https://data.delijn.be/stops/401723"], ["https://data.delijn.be/stops/101822", "https://data.delijn.be/stops/107025"], ["https://data.delijn.be/stops/302901", "https://data.delijn.be/stops/302911"], ["https://data.delijn.be/stops/508114", "https://data.delijn.be/stops/508121"], ["https://data.delijn.be/stops/507716", "https://data.delijn.be/stops/507717"], ["https://data.delijn.be/stops/502438", "https://data.delijn.be/stops/507749"], ["https://data.delijn.be/stops/502222", "https://data.delijn.be/stops/509796"], ["https://data.delijn.be/stops/202884", "https://data.delijn.be/stops/202885"], ["https://data.delijn.be/stops/200344", "https://data.delijn.be/stops/201378"], ["https://data.delijn.be/stops/203690", "https://data.delijn.be/stops/203691"], ["https://data.delijn.be/stops/302236", "https://data.delijn.be/stops/302237"], ["https://data.delijn.be/stops/101520", "https://data.delijn.be/stops/103338"], ["https://data.delijn.be/stops/406079", "https://data.delijn.be/stops/407154"], ["https://data.delijn.be/stops/206613", "https://data.delijn.be/stops/206707"], ["https://data.delijn.be/stops/101797", "https://data.delijn.be/stops/108529"], ["https://data.delijn.be/stops/308108", "https://data.delijn.be/stops/308110"], ["https://data.delijn.be/stops/401268", "https://data.delijn.be/stops/401390"], ["https://data.delijn.be/stops/208841", "https://data.delijn.be/stops/209700"], ["https://data.delijn.be/stops/200331", "https://data.delijn.be/stops/201959"], ["https://data.delijn.be/stops/107002", "https://data.delijn.be/stops/107004"], ["https://data.delijn.be/stops/303069", "https://data.delijn.be/stops/303210"], ["https://data.delijn.be/stops/504219", "https://data.delijn.be/stops/509215"], ["https://data.delijn.be/stops/304403", "https://data.delijn.be/stops/307955"], ["https://data.delijn.be/stops/503100", "https://data.delijn.be/stops/503393"], ["https://data.delijn.be/stops/105431", "https://data.delijn.be/stops/109843"], ["https://data.delijn.be/stops/107090", "https://data.delijn.be/stops/109845"], ["https://data.delijn.be/stops/306125", "https://data.delijn.be/stops/306126"], ["https://data.delijn.be/stops/102947", "https://data.delijn.be/stops/106125"], ["https://data.delijn.be/stops/405130", "https://data.delijn.be/stops/409157"], ["https://data.delijn.be/stops/202042", "https://data.delijn.be/stops/202685"], ["https://data.delijn.be/stops/400759", "https://data.delijn.be/stops/410047"], ["https://data.delijn.be/stops/303349", "https://data.delijn.be/stops/303365"], ["https://data.delijn.be/stops/206225", "https://data.delijn.be/stops/300187"], ["https://data.delijn.be/stops/406238", "https://data.delijn.be/stops/406239"], ["https://data.delijn.be/stops/400022", "https://data.delijn.be/stops/400023"], ["https://data.delijn.be/stops/303797", "https://data.delijn.be/stops/303845"], ["https://data.delijn.be/stops/406529", "https://data.delijn.be/stops/409288"], ["https://data.delijn.be/stops/105737", "https://data.delijn.be/stops/105741"], ["https://data.delijn.be/stops/303203", "https://data.delijn.be/stops/307953"], ["https://data.delijn.be/stops/204109", "https://data.delijn.be/stops/204417"], ["https://data.delijn.be/stops/104937", "https://data.delijn.be/stops/108357"], ["https://data.delijn.be/stops/101811", "https://data.delijn.be/stops/104676"], ["https://data.delijn.be/stops/109043", "https://data.delijn.be/stops/109046"], ["https://data.delijn.be/stops/200052", "https://data.delijn.be/stops/211119"], ["https://data.delijn.be/stops/205544", "https://data.delijn.be/stops/205545"], ["https://data.delijn.be/stops/503378", "https://data.delijn.be/stops/504687"], ["https://data.delijn.be/stops/304982", "https://data.delijn.be/stops/308015"], ["https://data.delijn.be/stops/306607", "https://data.delijn.be/stops/306609"], ["https://data.delijn.be/stops/404015", "https://data.delijn.be/stops/404017"], ["https://data.delijn.be/stops/201342", "https://data.delijn.be/stops/210335"], ["https://data.delijn.be/stops/406595", "https://data.delijn.be/stops/406619"], ["https://data.delijn.be/stops/102229", "https://data.delijn.be/stops/102608"], ["https://data.delijn.be/stops/501095", "https://data.delijn.be/stops/505355"], ["https://data.delijn.be/stops/506417", "https://data.delijn.be/stops/506475"], ["https://data.delijn.be/stops/504037", "https://data.delijn.be/stops/509284"], ["https://data.delijn.be/stops/109693", "https://data.delijn.be/stops/109697"], ["https://data.delijn.be/stops/202457", "https://data.delijn.be/stops/203457"], ["https://data.delijn.be/stops/405761", "https://data.delijn.be/stops/308932"], ["https://data.delijn.be/stops/208678", "https://data.delijn.be/stops/208806"], ["https://data.delijn.be/stops/503519", "https://data.delijn.be/stops/504791"], ["https://data.delijn.be/stops/102399", "https://data.delijn.be/stops/108735"], ["https://data.delijn.be/stops/106590", "https://data.delijn.be/stops/107249"], ["https://data.delijn.be/stops/503717", "https://data.delijn.be/stops/503726"], ["https://data.delijn.be/stops/200508", "https://data.delijn.be/stops/201416"], ["https://data.delijn.be/stops/101691", "https://data.delijn.be/stops/101692"], ["https://data.delijn.be/stops/202677", "https://data.delijn.be/stops/202678"], ["https://data.delijn.be/stops/502207", "https://data.delijn.be/stops/507207"], ["https://data.delijn.be/stops/204924", "https://data.delijn.be/stops/205924"], ["https://data.delijn.be/stops/503235", "https://data.delijn.be/stops/508238"], ["https://data.delijn.be/stops/200267", "https://data.delijn.be/stops/201226"], ["https://data.delijn.be/stops/103339", "https://data.delijn.be/stops/103950"], ["https://data.delijn.be/stops/403304", "https://data.delijn.be/stops/403441"], ["https://data.delijn.be/stops/408673", "https://data.delijn.be/stops/408674"], ["https://data.delijn.be/stops/207664", "https://data.delijn.be/stops/207665"], ["https://data.delijn.be/stops/201860", "https://data.delijn.be/stops/203672"], ["https://data.delijn.be/stops/104431", "https://data.delijn.be/stops/106785"], ["https://data.delijn.be/stops/305732", "https://data.delijn.be/stops/305733"], ["https://data.delijn.be/stops/208398", "https://data.delijn.be/stops/209398"], ["https://data.delijn.be/stops/101450", "https://data.delijn.be/stops/104545"], ["https://data.delijn.be/stops/507406", "https://data.delijn.be/stops/507407"], ["https://data.delijn.be/stops/406736", "https://data.delijn.be/stops/406939"], ["https://data.delijn.be/stops/105273", "https://data.delijn.be/stops/105274"], ["https://data.delijn.be/stops/403629", "https://data.delijn.be/stops/404581"], ["https://data.delijn.be/stops/207572", "https://data.delijn.be/stops/207573"], ["https://data.delijn.be/stops/506228", "https://data.delijn.be/stops/506475"], ["https://data.delijn.be/stops/501348", "https://data.delijn.be/stops/506546"], ["https://data.delijn.be/stops/404465", "https://data.delijn.be/stops/404571"], ["https://data.delijn.be/stops/202209", "https://data.delijn.be/stops/203502"], ["https://data.delijn.be/stops/504208", "https://data.delijn.be/stops/504215"], ["https://data.delijn.be/stops/200810", "https://data.delijn.be/stops/203053"], ["https://data.delijn.be/stops/202635", "https://data.delijn.be/stops/205066"], ["https://data.delijn.be/stops/206767", "https://data.delijn.be/stops/206768"], ["https://data.delijn.be/stops/200555", "https://data.delijn.be/stops/201670"], ["https://data.delijn.be/stops/106148", "https://data.delijn.be/stops/106149"], ["https://data.delijn.be/stops/405882", "https://data.delijn.be/stops/409667"], ["https://data.delijn.be/stops/207978", "https://data.delijn.be/stops/301093"], ["https://data.delijn.be/stops/106570", "https://data.delijn.be/stops/106573"], ["https://data.delijn.be/stops/403934", "https://data.delijn.be/stops/404003"], ["https://data.delijn.be/stops/206531", "https://data.delijn.be/stops/206859"], ["https://data.delijn.be/stops/201724", "https://data.delijn.be/stops/201742"], ["https://data.delijn.be/stops/504174", "https://data.delijn.be/stops/508099"], ["https://data.delijn.be/stops/209517", "https://data.delijn.be/stops/209535"], ["https://data.delijn.be/stops/206251", "https://data.delijn.be/stops/207584"], ["https://data.delijn.be/stops/404144", "https://data.delijn.be/stops/404145"], ["https://data.delijn.be/stops/106084", "https://data.delijn.be/stops/106088"], ["https://data.delijn.be/stops/504570", "https://data.delijn.be/stops/509082"], ["https://data.delijn.be/stops/102567", "https://data.delijn.be/stops/406484"], ["https://data.delijn.be/stops/206418", "https://data.delijn.be/stops/206659"], ["https://data.delijn.be/stops/206800", "https://data.delijn.be/stops/208572"], ["https://data.delijn.be/stops/106417", "https://data.delijn.be/stops/106418"], ["https://data.delijn.be/stops/503190", "https://data.delijn.be/stops/503218"], ["https://data.delijn.be/stops/304040", "https://data.delijn.be/stops/308945"], ["https://data.delijn.be/stops/401011", "https://data.delijn.be/stops/401060"], ["https://data.delijn.be/stops/207958", "https://data.delijn.be/stops/303844"], ["https://data.delijn.be/stops/400800", "https://data.delijn.be/stops/400824"], ["https://data.delijn.be/stops/407692", "https://data.delijn.be/stops/407695"], ["https://data.delijn.be/stops/404357", "https://data.delijn.be/stops/408796"], ["https://data.delijn.be/stops/204218", "https://data.delijn.be/stops/205180"], ["https://data.delijn.be/stops/106955", "https://data.delijn.be/stops/106957"], ["https://data.delijn.be/stops/206543", "https://data.delijn.be/stops/207542"], ["https://data.delijn.be/stops/200732", "https://data.delijn.be/stops/202627"], ["https://data.delijn.be/stops/407538", "https://data.delijn.be/stops/407549"], ["https://data.delijn.be/stops/504053", "https://data.delijn.be/stops/509828"], ["https://data.delijn.be/stops/108687", "https://data.delijn.be/stops/108897"], ["https://data.delijn.be/stops/404042", "https://data.delijn.be/stops/404052"], ["https://data.delijn.be/stops/103113", "https://data.delijn.be/stops/106815"], ["https://data.delijn.be/stops/403715", "https://data.delijn.be/stops/403724"], ["https://data.delijn.be/stops/302019", "https://data.delijn.be/stops/302044"], ["https://data.delijn.be/stops/502359", "https://data.delijn.be/stops/507358"], ["https://data.delijn.be/stops/503616", "https://data.delijn.be/stops/505565"], ["https://data.delijn.be/stops/101799", "https://data.delijn.be/stops/108511"], ["https://data.delijn.be/stops/107224", "https://data.delijn.be/stops/109884"], ["https://data.delijn.be/stops/302779", "https://data.delijn.be/stops/307781"], ["https://data.delijn.be/stops/200540", "https://data.delijn.be/stops/205931"], ["https://data.delijn.be/stops/206077", "https://data.delijn.be/stops/206315"], ["https://data.delijn.be/stops/501113", "https://data.delijn.be/stops/506113"], ["https://data.delijn.be/stops/204741", "https://data.delijn.be/stops/204746"], ["https://data.delijn.be/stops/102654", "https://data.delijn.be/stops/107788"], ["https://data.delijn.be/stops/204468", "https://data.delijn.be/stops/205468"], ["https://data.delijn.be/stops/501130", "https://data.delijn.be/stops/501134"], ["https://data.delijn.be/stops/106020", "https://data.delijn.be/stops/106022"], ["https://data.delijn.be/stops/406183", "https://data.delijn.be/stops/406203"], ["https://data.delijn.be/stops/200309", "https://data.delijn.be/stops/201283"], ["https://data.delijn.be/stops/403634", "https://data.delijn.be/stops/403653"], ["https://data.delijn.be/stops/307427", "https://data.delijn.be/stops/308591"], ["https://data.delijn.be/stops/400289", "https://data.delijn.be/stops/400299"], ["https://data.delijn.be/stops/303090", "https://data.delijn.be/stops/303103"], ["https://data.delijn.be/stops/402303", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/407044", "https://data.delijn.be/stops/407046"], ["https://data.delijn.be/stops/101442", "https://data.delijn.be/stops/106481"], ["https://data.delijn.be/stops/303636", "https://data.delijn.be/stops/304807"], ["https://data.delijn.be/stops/200074", "https://data.delijn.be/stops/200449"], ["https://data.delijn.be/stops/303718", "https://data.delijn.be/stops/303719"], ["https://data.delijn.be/stops/102621", "https://data.delijn.be/stops/102629"], ["https://data.delijn.be/stops/506441", "https://data.delijn.be/stops/506444"], ["https://data.delijn.be/stops/503002", "https://data.delijn.be/stops/505339"], ["https://data.delijn.be/stops/505378", "https://data.delijn.be/stops/505580"], ["https://data.delijn.be/stops/301818", "https://data.delijn.be/stops/303891"], ["https://data.delijn.be/stops/504356", "https://data.delijn.be/stops/504359"], ["https://data.delijn.be/stops/501115", "https://data.delijn.be/stops/506115"], ["https://data.delijn.be/stops/301581", "https://data.delijn.be/stops/308084"], ["https://data.delijn.be/stops/404303", "https://data.delijn.be/stops/409575"], ["https://data.delijn.be/stops/404664", "https://data.delijn.be/stops/404687"], ["https://data.delijn.be/stops/105069", "https://data.delijn.be/stops/106739"], ["https://data.delijn.be/stops/104948", "https://data.delijn.be/stops/401957"], ["https://data.delijn.be/stops/208651", "https://data.delijn.be/stops/209652"], ["https://data.delijn.be/stops/301313", "https://data.delijn.be/stops/301323"], ["https://data.delijn.be/stops/403484", "https://data.delijn.be/stops/404229"], ["https://data.delijn.be/stops/300101", "https://data.delijn.be/stops/306852"], ["https://data.delijn.be/stops/502513", "https://data.delijn.be/stops/502812"], ["https://data.delijn.be/stops/505306", "https://data.delijn.be/stops/508934"], ["https://data.delijn.be/stops/108091", "https://data.delijn.be/stops/108691"], ["https://data.delijn.be/stops/300518", "https://data.delijn.be/stops/300531"], ["https://data.delijn.be/stops/206663", "https://data.delijn.be/stops/207994"], ["https://data.delijn.be/stops/202856", "https://data.delijn.be/stops/208695"], ["https://data.delijn.be/stops/106827", "https://data.delijn.be/stops/106829"], ["https://data.delijn.be/stops/106042", "https://data.delijn.be/stops/106043"], ["https://data.delijn.be/stops/103369", "https://data.delijn.be/stops/108010"], ["https://data.delijn.be/stops/505722", "https://data.delijn.be/stops/506116"], ["https://data.delijn.be/stops/504413", "https://data.delijn.be/stops/509467"], ["https://data.delijn.be/stops/501600", "https://data.delijn.be/stops/504503"], ["https://data.delijn.be/stops/206203", "https://data.delijn.be/stops/206368"], ["https://data.delijn.be/stops/300465", "https://data.delijn.be/stops/304975"], ["https://data.delijn.be/stops/206962", "https://data.delijn.be/stops/207039"], ["https://data.delijn.be/stops/305561", "https://data.delijn.be/stops/305562"], ["https://data.delijn.be/stops/407896", "https://data.delijn.be/stops/408125"], ["https://data.delijn.be/stops/105013", "https://data.delijn.be/stops/105014"], ["https://data.delijn.be/stops/302402", "https://data.delijn.be/stops/302404"], ["https://data.delijn.be/stops/408454", "https://data.delijn.be/stops/409160"], ["https://data.delijn.be/stops/103313", "https://data.delijn.be/stops/109422"], ["https://data.delijn.be/stops/406046", "https://data.delijn.be/stops/406121"], ["https://data.delijn.be/stops/208837", "https://data.delijn.be/stops/209200"], ["https://data.delijn.be/stops/303953", "https://data.delijn.be/stops/303958"], ["https://data.delijn.be/stops/109990", "https://data.delijn.be/stops/410163"], ["https://data.delijn.be/stops/404625", "https://data.delijn.be/stops/406954"], ["https://data.delijn.be/stops/102195", "https://data.delijn.be/stops/105175"], ["https://data.delijn.be/stops/105113", "https://data.delijn.be/stops/105828"], ["https://data.delijn.be/stops/106132", "https://data.delijn.be/stops/106134"], ["https://data.delijn.be/stops/305130", "https://data.delijn.be/stops/305214"], ["https://data.delijn.be/stops/301184", "https://data.delijn.be/stops/304086"], ["https://data.delijn.be/stops/503219", "https://data.delijn.be/stops/503926"], ["https://data.delijn.be/stops/208805", "https://data.delijn.be/stops/208811"], ["https://data.delijn.be/stops/400450", "https://data.delijn.be/stops/407214"], ["https://data.delijn.be/stops/304061", "https://data.delijn.be/stops/307969"], ["https://data.delijn.be/stops/308793", "https://data.delijn.be/stops/308938"], ["https://data.delijn.be/stops/105436", "https://data.delijn.be/stops/109981"], ["https://data.delijn.be/stops/400825", "https://data.delijn.be/stops/403572"], ["https://data.delijn.be/stops/104345", "https://data.delijn.be/stops/104965"], ["https://data.delijn.be/stops/200965", "https://data.delijn.be/stops/201393"], ["https://data.delijn.be/stops/301587", "https://data.delijn.be/stops/308084"], ["https://data.delijn.be/stops/206122", "https://data.delijn.be/stops/206471"], ["https://data.delijn.be/stops/505664", "https://data.delijn.be/stops/509702"], ["https://data.delijn.be/stops/407859", "https://data.delijn.be/stops/409543"], ["https://data.delijn.be/stops/104563", "https://data.delijn.be/stops/107481"], ["https://data.delijn.be/stops/300496", "https://data.delijn.be/stops/302072"], ["https://data.delijn.be/stops/503248", "https://data.delijn.be/stops/508475"], ["https://data.delijn.be/stops/302181", "https://data.delijn.be/stops/308097"], ["https://data.delijn.be/stops/405456", "https://data.delijn.be/stops/407567"], ["https://data.delijn.be/stops/503332", "https://data.delijn.be/stops/508332"], ["https://data.delijn.be/stops/403080", "https://data.delijn.be/stops/410337"], ["https://data.delijn.be/stops/504199", "https://data.delijn.be/stops/504202"], ["https://data.delijn.be/stops/301102", "https://data.delijn.be/stops/303376"], ["https://data.delijn.be/stops/301255", "https://data.delijn.be/stops/308263"], ["https://data.delijn.be/stops/403228", "https://data.delijn.be/stops/403253"], ["https://data.delijn.be/stops/503252", "https://data.delijn.be/stops/508235"], ["https://data.delijn.be/stops/102697", "https://data.delijn.be/stops/105625"], ["https://data.delijn.be/stops/206917", "https://data.delijn.be/stops/207917"], ["https://data.delijn.be/stops/505528", "https://data.delijn.be/stops/506244"], ["https://data.delijn.be/stops/200620", "https://data.delijn.be/stops/211092"], ["https://data.delijn.be/stops/206405", "https://data.delijn.be/stops/206406"], ["https://data.delijn.be/stops/407304", "https://data.delijn.be/stops/407305"], ["https://data.delijn.be/stops/103218", "https://data.delijn.be/stops/104698"], ["https://data.delijn.be/stops/503044", "https://data.delijn.be/stops/505793"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/209064"], ["https://data.delijn.be/stops/408370", "https://data.delijn.be/stops/408376"], ["https://data.delijn.be/stops/204597", "https://data.delijn.be/stops/205586"], ["https://data.delijn.be/stops/200711", "https://data.delijn.be/stops/205400"], ["https://data.delijn.be/stops/501106", "https://data.delijn.be/stops/506104"], ["https://data.delijn.be/stops/208129", "https://data.delijn.be/stops/208130"], ["https://data.delijn.be/stops/409579", "https://data.delijn.be/stops/409807"], ["https://data.delijn.be/stops/405695", "https://data.delijn.be/stops/405989"], ["https://data.delijn.be/stops/205063", "https://data.delijn.be/stops/205713"], ["https://data.delijn.be/stops/503580", "https://data.delijn.be/stops/508580"], ["https://data.delijn.be/stops/209292", "https://data.delijn.be/stops/209790"], ["https://data.delijn.be/stops/402410", "https://data.delijn.be/stops/402411"], ["https://data.delijn.be/stops/400478", "https://data.delijn.be/stops/400479"], ["https://data.delijn.be/stops/300413", "https://data.delijn.be/stops/303523"], ["https://data.delijn.be/stops/308424", "https://data.delijn.be/stops/308425"], ["https://data.delijn.be/stops/201694", "https://data.delijn.be/stops/202987"], ["https://data.delijn.be/stops/403448", "https://data.delijn.be/stops/407365"], ["https://data.delijn.be/stops/302101", "https://data.delijn.be/stops/302105"], ["https://data.delijn.be/stops/503195", "https://data.delijn.be/stops/508547"], ["https://data.delijn.be/stops/408279", "https://data.delijn.be/stops/408406"], ["https://data.delijn.be/stops/502733", "https://data.delijn.be/stops/507733"], ["https://data.delijn.be/stops/400933", "https://data.delijn.be/stops/406954"], ["https://data.delijn.be/stops/404872", "https://data.delijn.be/stops/405546"], ["https://data.delijn.be/stops/202475", "https://data.delijn.be/stops/203475"], ["https://data.delijn.be/stops/204997", "https://data.delijn.be/stops/508641"], ["https://data.delijn.be/stops/209389", "https://data.delijn.be/stops/209401"], ["https://data.delijn.be/stops/305387", "https://data.delijn.be/stops/305397"], ["https://data.delijn.be/stops/502493", "https://data.delijn.be/stops/505325"], ["https://data.delijn.be/stops/305179", "https://data.delijn.be/stops/308681"], ["https://data.delijn.be/stops/106039", "https://data.delijn.be/stops/106043"], ["https://data.delijn.be/stops/501593", "https://data.delijn.be/stops/504495"], ["https://data.delijn.be/stops/202676", "https://data.delijn.be/stops/203674"], ["https://data.delijn.be/stops/401424", "https://data.delijn.be/stops/401425"], ["https://data.delijn.be/stops/300946", "https://data.delijn.be/stops/305398"], ["https://data.delijn.be/stops/202761", "https://data.delijn.be/stops/203761"], ["https://data.delijn.be/stops/200673", "https://data.delijn.be/stops/201462"], ["https://data.delijn.be/stops/401649", "https://data.delijn.be/stops/401661"], ["https://data.delijn.be/stops/410182", "https://data.delijn.be/stops/410183"], ["https://data.delijn.be/stops/407627", "https://data.delijn.be/stops/409801"], ["https://data.delijn.be/stops/101357", "https://data.delijn.be/stops/102187"], ["https://data.delijn.be/stops/109309", "https://data.delijn.be/stops/109310"], ["https://data.delijn.be/stops/404482", "https://data.delijn.be/stops/404483"], ["https://data.delijn.be/stops/401410", "https://data.delijn.be/stops/300995"], ["https://data.delijn.be/stops/406350", "https://data.delijn.be/stops/408826"], ["https://data.delijn.be/stops/300506", "https://data.delijn.be/stops/308357"], ["https://data.delijn.be/stops/104514", "https://data.delijn.be/stops/107792"], ["https://data.delijn.be/stops/105244", "https://data.delijn.be/stops/105846"], ["https://data.delijn.be/stops/501065", "https://data.delijn.be/stops/506062"], ["https://data.delijn.be/stops/505803", "https://data.delijn.be/stops/509084"], ["https://data.delijn.be/stops/102538", "https://data.delijn.be/stops/406547"], ["https://data.delijn.be/stops/302601", "https://data.delijn.be/stops/302602"], ["https://data.delijn.be/stops/105038", "https://data.delijn.be/stops/105039"], ["https://data.delijn.be/stops/303835", "https://data.delijn.be/stops/305528"], ["https://data.delijn.be/stops/201413", "https://data.delijn.be/stops/203360"], ["https://data.delijn.be/stops/200192", "https://data.delijn.be/stops/210128"], ["https://data.delijn.be/stops/300001", "https://data.delijn.be/stops/302520"], ["https://data.delijn.be/stops/505594", "https://data.delijn.be/stops/509724"], ["https://data.delijn.be/stops/102059", "https://data.delijn.be/stops/102063"], ["https://data.delijn.be/stops/208513", "https://data.delijn.be/stops/209460"], ["https://data.delijn.be/stops/302224", "https://data.delijn.be/stops/302243"], ["https://data.delijn.be/stops/101930", "https://data.delijn.be/stops/101935"], ["https://data.delijn.be/stops/302536", "https://data.delijn.be/stops/302546"], ["https://data.delijn.be/stops/406611", "https://data.delijn.be/stops/406637"], ["https://data.delijn.be/stops/202519", "https://data.delijn.be/stops/203519"], ["https://data.delijn.be/stops/301950", "https://data.delijn.be/stops/305452"], ["https://data.delijn.be/stops/105048", "https://data.delijn.be/stops/106670"], ["https://data.delijn.be/stops/105482", "https://data.delijn.be/stops/105484"], ["https://data.delijn.be/stops/402563", "https://data.delijn.be/stops/407809"], ["https://data.delijn.be/stops/305567", "https://data.delijn.be/stops/307181"], ["https://data.delijn.be/stops/104056", "https://data.delijn.be/stops/108687"], ["https://data.delijn.be/stops/400559", "https://data.delijn.be/stops/403850"], ["https://data.delijn.be/stops/508319", "https://data.delijn.be/stops/508323"], ["https://data.delijn.be/stops/102157", "https://data.delijn.be/stops/109589"], ["https://data.delijn.be/stops/204180", "https://data.delijn.be/stops/205181"], ["https://data.delijn.be/stops/303421", "https://data.delijn.be/stops/304981"], ["https://data.delijn.be/stops/209001", "https://data.delijn.be/stops/209159"], ["https://data.delijn.be/stops/505060", "https://data.delijn.be/stops/505652"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/510014"], ["https://data.delijn.be/stops/405982", "https://data.delijn.be/stops/405983"], ["https://data.delijn.be/stops/206497", "https://data.delijn.be/stops/207503"], ["https://data.delijn.be/stops/203228", "https://data.delijn.be/stops/208857"], ["https://data.delijn.be/stops/403092", "https://data.delijn.be/stops/403123"], ["https://data.delijn.be/stops/105502", "https://data.delijn.be/stops/105509"], ["https://data.delijn.be/stops/204215", "https://data.delijn.be/stops/205214"], ["https://data.delijn.be/stops/201121", "https://data.delijn.be/stops/206933"], ["https://data.delijn.be/stops/205986", "https://data.delijn.be/stops/206255"], ["https://data.delijn.be/stops/304584", "https://data.delijn.be/stops/304607"], ["https://data.delijn.be/stops/204271", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/101614", "https://data.delijn.be/stops/106405"], ["https://data.delijn.be/stops/206002", "https://data.delijn.be/stops/206004"], ["https://data.delijn.be/stops/504432", "https://data.delijn.be/stops/505182"], ["https://data.delijn.be/stops/203113", "https://data.delijn.be/stops/205586"], ["https://data.delijn.be/stops/304477", "https://data.delijn.be/stops/304508"], ["https://data.delijn.be/stops/208128", "https://data.delijn.be/stops/209072"], ["https://data.delijn.be/stops/204091", "https://data.delijn.be/stops/205066"], ["https://data.delijn.be/stops/302915", "https://data.delijn.be/stops/303232"], ["https://data.delijn.be/stops/108613", "https://data.delijn.be/stops/301916"], ["https://data.delijn.be/stops/208226", "https://data.delijn.be/stops/208831"], ["https://data.delijn.be/stops/501161", "https://data.delijn.be/stops/501668"], ["https://data.delijn.be/stops/503759", "https://data.delijn.be/stops/509513"], ["https://data.delijn.be/stops/102935", "https://data.delijn.be/stops/104575"], ["https://data.delijn.be/stops/301550", "https://data.delijn.be/stops/301551"], ["https://data.delijn.be/stops/502170", "https://data.delijn.be/stops/505418"], ["https://data.delijn.be/stops/501060", "https://data.delijn.be/stops/502742"], ["https://data.delijn.be/stops/202215", "https://data.delijn.be/stops/203283"], ["https://data.delijn.be/stops/503668", "https://data.delijn.be/stops/508668"], ["https://data.delijn.be/stops/401179", "https://data.delijn.be/stops/401277"], ["https://data.delijn.be/stops/400932", "https://data.delijn.be/stops/404625"], ["https://data.delijn.be/stops/407668", "https://data.delijn.be/stops/407690"], ["https://data.delijn.be/stops/400806", "https://data.delijn.be/stops/400807"], ["https://data.delijn.be/stops/205689", "https://data.delijn.be/stops/205690"], ["https://data.delijn.be/stops/407669", "https://data.delijn.be/stops/409803"], ["https://data.delijn.be/stops/501267", "https://data.delijn.be/stops/501336"], ["https://data.delijn.be/stops/101166", "https://data.delijn.be/stops/102385"], ["https://data.delijn.be/stops/102197", "https://data.delijn.be/stops/105257"], ["https://data.delijn.be/stops/101005", "https://data.delijn.be/stops/101138"], ["https://data.delijn.be/stops/200478", "https://data.delijn.be/stops/201478"], ["https://data.delijn.be/stops/400924", "https://data.delijn.be/stops/400936"], ["https://data.delijn.be/stops/302257", "https://data.delijn.be/stops/304345"], ["https://data.delijn.be/stops/103259", "https://data.delijn.be/stops/105852"], ["https://data.delijn.be/stops/400732", "https://data.delijn.be/stops/405172"], ["https://data.delijn.be/stops/102552", "https://data.delijn.be/stops/405004"], ["https://data.delijn.be/stops/403688", "https://data.delijn.be/stops/403691"], ["https://data.delijn.be/stops/206216", "https://data.delijn.be/stops/207046"], ["https://data.delijn.be/stops/504525", "https://data.delijn.be/stops/509523"], ["https://data.delijn.be/stops/403383", "https://data.delijn.be/stops/403529"], ["https://data.delijn.be/stops/106031", "https://data.delijn.be/stops/106033"], ["https://data.delijn.be/stops/101750", "https://data.delijn.be/stops/104880"], ["https://data.delijn.be/stops/300662", "https://data.delijn.be/stops/301918"], ["https://data.delijn.be/stops/405572", "https://data.delijn.be/stops/405574"], ["https://data.delijn.be/stops/300094", "https://data.delijn.be/stops/300100"], ["https://data.delijn.be/stops/108833", "https://data.delijn.be/stops/108848"], ["https://data.delijn.be/stops/207753", "https://data.delijn.be/stops/207766"], ["https://data.delijn.be/stops/300023", "https://data.delijn.be/stops/300412"], ["https://data.delijn.be/stops/204155", "https://data.delijn.be/stops/204590"], ["https://data.delijn.be/stops/206346", "https://data.delijn.be/stops/206355"], ["https://data.delijn.be/stops/109972", "https://data.delijn.be/stops/109973"], ["https://data.delijn.be/stops/406164", "https://data.delijn.be/stops/406166"], ["https://data.delijn.be/stops/404169", "https://data.delijn.be/stops/404218"], ["https://data.delijn.be/stops/406562", "https://data.delijn.be/stops/406563"], ["https://data.delijn.be/stops/108791", "https://data.delijn.be/stops/109758"], ["https://data.delijn.be/stops/405537", "https://data.delijn.be/stops/409425"], ["https://data.delijn.be/stops/205714", "https://data.delijn.be/stops/205716"], ["https://data.delijn.be/stops/304340", "https://data.delijn.be/stops/305220"], ["https://data.delijn.be/stops/502644", "https://data.delijn.be/stops/507420"], ["https://data.delijn.be/stops/402470", "https://data.delijn.be/stops/402471"], ["https://data.delijn.be/stops/303124", "https://data.delijn.be/stops/303128"], ["https://data.delijn.be/stops/509231", "https://data.delijn.be/stops/509240"], ["https://data.delijn.be/stops/105598", "https://data.delijn.be/stops/105601"], ["https://data.delijn.be/stops/207252", "https://data.delijn.be/stops/216021"], ["https://data.delijn.be/stops/206770", "https://data.delijn.be/stops/206802"], ["https://data.delijn.be/stops/207873", "https://data.delijn.be/stops/207954"], ["https://data.delijn.be/stops/208713", "https://data.delijn.be/stops/208723"], ["https://data.delijn.be/stops/509478", "https://data.delijn.be/stops/509716"], ["https://data.delijn.be/stops/304894", "https://data.delijn.be/stops/304895"], ["https://data.delijn.be/stops/400056", "https://data.delijn.be/stops/400163"], ["https://data.delijn.be/stops/109233", "https://data.delijn.be/stops/109234"], ["https://data.delijn.be/stops/501302", "https://data.delijn.be/stops/506283"], ["https://data.delijn.be/stops/502382", "https://data.delijn.be/stops/502402"], ["https://data.delijn.be/stops/204437", "https://data.delijn.be/stops/204747"], ["https://data.delijn.be/stops/308149", "https://data.delijn.be/stops/308164"], ["https://data.delijn.be/stops/200746", "https://data.delijn.be/stops/201813"], ["https://data.delijn.be/stops/109834", "https://data.delijn.be/stops/109835"], ["https://data.delijn.be/stops/301068", "https://data.delijn.be/stops/301069"], ["https://data.delijn.be/stops/502010", "https://data.delijn.be/stops/507001"], ["https://data.delijn.be/stops/404974", "https://data.delijn.be/stops/404975"], ["https://data.delijn.be/stops/402460", "https://data.delijn.be/stops/402461"], ["https://data.delijn.be/stops/301792", "https://data.delijn.be/stops/305396"], ["https://data.delijn.be/stops/304937", "https://data.delijn.be/stops/304939"], ["https://data.delijn.be/stops/202089", "https://data.delijn.be/stops/203088"], ["https://data.delijn.be/stops/304840", "https://data.delijn.be/stops/304856"], ["https://data.delijn.be/stops/507027", "https://data.delijn.be/stops/507317"], ["https://data.delijn.be/stops/105103", "https://data.delijn.be/stops/105104"], ["https://data.delijn.be/stops/200899", "https://data.delijn.be/stops/203075"], ["https://data.delijn.be/stops/104118", "https://data.delijn.be/stops/104493"], ["https://data.delijn.be/stops/504263", "https://data.delijn.be/stops/509258"], ["https://data.delijn.be/stops/103098", "https://data.delijn.be/stops/103267"], ["https://data.delijn.be/stops/402310", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/202616", "https://data.delijn.be/stops/203616"], ["https://data.delijn.be/stops/403596", "https://data.delijn.be/stops/407515"], ["https://data.delijn.be/stops/410172", "https://data.delijn.be/stops/410177"], ["https://data.delijn.be/stops/102398", "https://data.delijn.be/stops/102419"], ["https://data.delijn.be/stops/206170", "https://data.delijn.be/stops/303838"], ["https://data.delijn.be/stops/200151", "https://data.delijn.be/stops/202358"], ["https://data.delijn.be/stops/204689", "https://data.delijn.be/stops/205666"], ["https://data.delijn.be/stops/301538", "https://data.delijn.be/stops/305140"], ["https://data.delijn.be/stops/300843", "https://data.delijn.be/stops/300844"], ["https://data.delijn.be/stops/204523", "https://data.delijn.be/stops/204524"], ["https://data.delijn.be/stops/207183", "https://data.delijn.be/stops/207690"], ["https://data.delijn.be/stops/404632", "https://data.delijn.be/stops/406962"], ["https://data.delijn.be/stops/508118", "https://data.delijn.be/stops/508121"], ["https://data.delijn.be/stops/407581", "https://data.delijn.be/stops/408874"], ["https://data.delijn.be/stops/303933", "https://data.delijn.be/stops/304593"], ["https://data.delijn.be/stops/201600", "https://data.delijn.be/stops/201843"], ["https://data.delijn.be/stops/204148", "https://data.delijn.be/stops/205131"], ["https://data.delijn.be/stops/207969", "https://data.delijn.be/stops/301427"], ["https://data.delijn.be/stops/200760", "https://data.delijn.be/stops/201774"], ["https://data.delijn.be/stops/206701", "https://data.delijn.be/stops/301612"], ["https://data.delijn.be/stops/405458", "https://data.delijn.be/stops/308823"], ["https://data.delijn.be/stops/401780", "https://data.delijn.be/stops/401781"], ["https://data.delijn.be/stops/409547", "https://data.delijn.be/stops/410112"], ["https://data.delijn.be/stops/206162", "https://data.delijn.be/stops/207021"], ["https://data.delijn.be/stops/300565", "https://data.delijn.be/stops/306112"], ["https://data.delijn.be/stops/400485", "https://data.delijn.be/stops/407688"], ["https://data.delijn.be/stops/200164", "https://data.delijn.be/stops/208730"], ["https://data.delijn.be/stops/103128", "https://data.delijn.be/stops/106778"], ["https://data.delijn.be/stops/401217", "https://data.delijn.be/stops/401224"], ["https://data.delijn.be/stops/406978", "https://data.delijn.be/stops/409464"], ["https://data.delijn.be/stops/505975", "https://data.delijn.be/stops/509412"], ["https://data.delijn.be/stops/406425", "https://data.delijn.be/stops/409404"], ["https://data.delijn.be/stops/104015", "https://data.delijn.be/stops/104660"], ["https://data.delijn.be/stops/505951", "https://data.delijn.be/stops/508283"], ["https://data.delijn.be/stops/308797", "https://data.delijn.be/stops/308848"], ["https://data.delijn.be/stops/206766", "https://data.delijn.be/stops/208544"], ["https://data.delijn.be/stops/503189", "https://data.delijn.be/stops/507765"], ["https://data.delijn.be/stops/502444", "https://data.delijn.be/stops/507464"], ["https://data.delijn.be/stops/104588", "https://data.delijn.be/stops/106067"], ["https://data.delijn.be/stops/300758", "https://data.delijn.be/stops/300805"], ["https://data.delijn.be/stops/500954", "https://data.delijn.be/stops/509176"], ["https://data.delijn.be/stops/102914", "https://data.delijn.be/stops/105808"], ["https://data.delijn.be/stops/104288", "https://data.delijn.be/stops/104289"], ["https://data.delijn.be/stops/109006", "https://data.delijn.be/stops/402019"], ["https://data.delijn.be/stops/201009", "https://data.delijn.be/stops/201848"], ["https://data.delijn.be/stops/305052", "https://data.delijn.be/stops/305053"], ["https://data.delijn.be/stops/401189", "https://data.delijn.be/stops/410175"], ["https://data.delijn.be/stops/307080", "https://data.delijn.be/stops/307894"], ["https://data.delijn.be/stops/503507", "https://data.delijn.be/stops/508508"], ["https://data.delijn.be/stops/303891", "https://data.delijn.be/stops/305312"], ["https://data.delijn.be/stops/308460", "https://data.delijn.be/stops/308461"], ["https://data.delijn.be/stops/306325", "https://data.delijn.be/stops/308559"], ["https://data.delijn.be/stops/206674", "https://data.delijn.be/stops/209173"], ["https://data.delijn.be/stops/301863", "https://data.delijn.be/stops/301873"], ["https://data.delijn.be/stops/507344", "https://data.delijn.be/stops/507345"], ["https://data.delijn.be/stops/304923", "https://data.delijn.be/stops/304924"], ["https://data.delijn.be/stops/300581", "https://data.delijn.be/stops/300582"], ["https://data.delijn.be/stops/308289", "https://data.delijn.be/stops/308291"], ["https://data.delijn.be/stops/208757", "https://data.delijn.be/stops/208758"], ["https://data.delijn.be/stops/502134", "https://data.delijn.be/stops/507089"], ["https://data.delijn.be/stops/402838", "https://data.delijn.be/stops/406993"], ["https://data.delijn.be/stops/202916", "https://data.delijn.be/stops/203731"], ["https://data.delijn.be/stops/302088", "https://data.delijn.be/stops/302277"], ["https://data.delijn.be/stops/203251", "https://data.delijn.be/stops/203252"], ["https://data.delijn.be/stops/304688", "https://data.delijn.be/stops/307160"], ["https://data.delijn.be/stops/101752", "https://data.delijn.be/stops/109821"], ["https://data.delijn.be/stops/108993", "https://data.delijn.be/stops/108995"], ["https://data.delijn.be/stops/502497", "https://data.delijn.be/stops/505598"], ["https://data.delijn.be/stops/504971", "https://data.delijn.be/stops/508981"], ["https://data.delijn.be/stops/200657", "https://data.delijn.be/stops/200658"], ["https://data.delijn.be/stops/206378", "https://data.delijn.be/stops/207730"], ["https://data.delijn.be/stops/300954", "https://data.delijn.be/stops/301041"], ["https://data.delijn.be/stops/107603", "https://data.delijn.be/stops/107726"], ["https://data.delijn.be/stops/508184", "https://data.delijn.be/stops/508188"], ["https://data.delijn.be/stops/401475", "https://data.delijn.be/stops/403134"], ["https://data.delijn.be/stops/402585", "https://data.delijn.be/stops/402653"], ["https://data.delijn.be/stops/303471", "https://data.delijn.be/stops/303517"], ["https://data.delijn.be/stops/502119", "https://data.delijn.be/stops/502124"], ["https://data.delijn.be/stops/108241", "https://data.delijn.be/stops/108242"], ["https://data.delijn.be/stops/300090", "https://data.delijn.be/stops/300093"], ["https://data.delijn.be/stops/202819", "https://data.delijn.be/stops/203819"], ["https://data.delijn.be/stops/203862", "https://data.delijn.be/stops/208701"], ["https://data.delijn.be/stops/402242", "https://data.delijn.be/stops/410078"], ["https://data.delijn.be/stops/106992", "https://data.delijn.be/stops/107317"], ["https://data.delijn.be/stops/405676", "https://data.delijn.be/stops/405689"], ["https://data.delijn.be/stops/202980", "https://data.delijn.be/stops/203981"], ["https://data.delijn.be/stops/507191", "https://data.delijn.be/stops/509945"], ["https://data.delijn.be/stops/506114", "https://data.delijn.be/stops/506165"], ["https://data.delijn.be/stops/303589", "https://data.delijn.be/stops/303590"], ["https://data.delijn.be/stops/405133", "https://data.delijn.be/stops/407109"], ["https://data.delijn.be/stops/503343", "https://data.delijn.be/stops/508342"], ["https://data.delijn.be/stops/504577", "https://data.delijn.be/stops/505205"], ["https://data.delijn.be/stops/204043", "https://data.delijn.be/stops/205409"], ["https://data.delijn.be/stops/504514", "https://data.delijn.be/stops/504636"], ["https://data.delijn.be/stops/302647", "https://data.delijn.be/stops/302657"], ["https://data.delijn.be/stops/304708", "https://data.delijn.be/stops/304709"], ["https://data.delijn.be/stops/401344", "https://data.delijn.be/stops/406064"], ["https://data.delijn.be/stops/204327", "https://data.delijn.be/stops/205495"], ["https://data.delijn.be/stops/502058", "https://data.delijn.be/stops/507281"], ["https://data.delijn.be/stops/108465", "https://data.delijn.be/stops/108620"], ["https://data.delijn.be/stops/206365", "https://data.delijn.be/stops/207364"], ["https://data.delijn.be/stops/301227", "https://data.delijn.be/stops/306664"], ["https://data.delijn.be/stops/204914", "https://data.delijn.be/stops/204916"], ["https://data.delijn.be/stops/105884", "https://data.delijn.be/stops/105896"], ["https://data.delijn.be/stops/503774", "https://data.delijn.be/stops/508520"], ["https://data.delijn.be/stops/408573", "https://data.delijn.be/stops/408677"], ["https://data.delijn.be/stops/102818", "https://data.delijn.be/stops/104545"], ["https://data.delijn.be/stops/404641", "https://data.delijn.be/stops/404990"], ["https://data.delijn.be/stops/404391", "https://data.delijn.be/stops/404782"], ["https://data.delijn.be/stops/219080", "https://data.delijn.be/stops/303118"], ["https://data.delijn.be/stops/304394", "https://data.delijn.be/stops/304398"], ["https://data.delijn.be/stops/108733", "https://data.delijn.be/stops/108737"], ["https://data.delijn.be/stops/200336", "https://data.delijn.be/stops/201336"], ["https://data.delijn.be/stops/304555", "https://data.delijn.be/stops/307585"], ["https://data.delijn.be/stops/400652", "https://data.delijn.be/stops/410264"], ["https://data.delijn.be/stops/106316", "https://data.delijn.be/stops/106318"], ["https://data.delijn.be/stops/304251", "https://data.delijn.be/stops/305493"], ["https://data.delijn.be/stops/405214", "https://data.delijn.be/stops/405246"], ["https://data.delijn.be/stops/406834", "https://data.delijn.be/stops/407286"], ["https://data.delijn.be/stops/400540", "https://data.delijn.be/stops/403190"], ["https://data.delijn.be/stops/102646", "https://data.delijn.be/stops/109911"], ["https://data.delijn.be/stops/109058", "https://data.delijn.be/stops/405804"], ["https://data.delijn.be/stops/508039", "https://data.delijn.be/stops/508043"], ["https://data.delijn.be/stops/202827", "https://data.delijn.be/stops/202942"], ["https://data.delijn.be/stops/104696", "https://data.delijn.be/stops/107349"], ["https://data.delijn.be/stops/404546", "https://data.delijn.be/stops/404555"], ["https://data.delijn.be/stops/204721", "https://data.delijn.be/stops/205721"], ["https://data.delijn.be/stops/502530", "https://data.delijn.be/stops/507288"], ["https://data.delijn.be/stops/205243", "https://data.delijn.be/stops/206271"], ["https://data.delijn.be/stops/305586", "https://data.delijn.be/stops/307514"], ["https://data.delijn.be/stops/403520", "https://data.delijn.be/stops/403867"], ["https://data.delijn.be/stops/300767", "https://data.delijn.be/stops/300768"], ["https://data.delijn.be/stops/206589", "https://data.delijn.be/stops/207589"], ["https://data.delijn.be/stops/403303", "https://data.delijn.be/stops/403535"], ["https://data.delijn.be/stops/204365", "https://data.delijn.be/stops/205365"], ["https://data.delijn.be/stops/406545", "https://data.delijn.be/stops/408124"], ["https://data.delijn.be/stops/408963", "https://data.delijn.be/stops/408969"], ["https://data.delijn.be/stops/101750", "https://data.delijn.be/stops/108565"], ["https://data.delijn.be/stops/107614", "https://data.delijn.be/stops/109216"], ["https://data.delijn.be/stops/204122", "https://data.delijn.be/stops/205120"], ["https://data.delijn.be/stops/505635", "https://data.delijn.be/stops/505825"], ["https://data.delijn.be/stops/207928", "https://data.delijn.be/stops/207996"], ["https://data.delijn.be/stops/301680", "https://data.delijn.be/stops/301686"], ["https://data.delijn.be/stops/503548", "https://data.delijn.be/stops/503549"], ["https://data.delijn.be/stops/208466", "https://data.delijn.be/stops/208467"], ["https://data.delijn.be/stops/208596", "https://data.delijn.be/stops/218012"], ["https://data.delijn.be/stops/105028", "https://data.delijn.be/stops/109521"], ["https://data.delijn.be/stops/201855", "https://data.delijn.be/stops/201874"], ["https://data.delijn.be/stops/403049", "https://data.delijn.be/stops/403053"], ["https://data.delijn.be/stops/303674", "https://data.delijn.be/stops/307684"], ["https://data.delijn.be/stops/109543", "https://data.delijn.be/stops/109622"], ["https://data.delijn.be/stops/202257", "https://data.delijn.be/stops/203256"], ["https://data.delijn.be/stops/101475", "https://data.delijn.be/stops/103766"], ["https://data.delijn.be/stops/502243", "https://data.delijn.be/stops/507138"], ["https://data.delijn.be/stops/105194", "https://data.delijn.be/stops/108883"], ["https://data.delijn.be/stops/304469", "https://data.delijn.be/stops/304525"], ["https://data.delijn.be/stops/401267", "https://data.delijn.be/stops/401303"], ["https://data.delijn.be/stops/306662", "https://data.delijn.be/stops/306667"], ["https://data.delijn.be/stops/204297", "https://data.delijn.be/stops/205297"], ["https://data.delijn.be/stops/109904", "https://data.delijn.be/stops/109908"], ["https://data.delijn.be/stops/406812", "https://data.delijn.be/stops/409463"], ["https://data.delijn.be/stops/409034", "https://data.delijn.be/stops/409036"], ["https://data.delijn.be/stops/400628", "https://data.delijn.be/stops/400629"], ["https://data.delijn.be/stops/303740", "https://data.delijn.be/stops/303741"], ["https://data.delijn.be/stops/401651", "https://data.delijn.be/stops/301232"], ["https://data.delijn.be/stops/303500", "https://data.delijn.be/stops/303501"], ["https://data.delijn.be/stops/504043", "https://data.delijn.be/stops/509049"], ["https://data.delijn.be/stops/302225", "https://data.delijn.be/stops/304011"], ["https://data.delijn.be/stops/410360", "https://data.delijn.be/stops/410361"], ["https://data.delijn.be/stops/204718", "https://data.delijn.be/stops/214012"], ["https://data.delijn.be/stops/205159", "https://data.delijn.be/stops/205590"], ["https://data.delijn.be/stops/105903", "https://data.delijn.be/stops/105907"], ["https://data.delijn.be/stops/206496", "https://data.delijn.be/stops/207475"], ["https://data.delijn.be/stops/201001", "https://data.delijn.be/stops/201908"], ["https://data.delijn.be/stops/204204", "https://data.delijn.be/stops/205191"], ["https://data.delijn.be/stops/101891", "https://data.delijn.be/stops/104951"], ["https://data.delijn.be/stops/108112", "https://data.delijn.be/stops/108147"], ["https://data.delijn.be/stops/404455", "https://data.delijn.be/stops/404563"], ["https://data.delijn.be/stops/503117", "https://data.delijn.be/stops/508117"], ["https://data.delijn.be/stops/303286", "https://data.delijn.be/stops/308938"], ["https://data.delijn.be/stops/305113", "https://data.delijn.be/stops/305214"], ["https://data.delijn.be/stops/405673", "https://data.delijn.be/stops/407403"], ["https://data.delijn.be/stops/202195", "https://data.delijn.be/stops/202399"], ["https://data.delijn.be/stops/305664", "https://data.delijn.be/stops/305665"], ["https://data.delijn.be/stops/501018", "https://data.delijn.be/stops/506016"], ["https://data.delijn.be/stops/502260", "https://data.delijn.be/stops/507570"], ["https://data.delijn.be/stops/302769", "https://data.delijn.be/stops/307047"], ["https://data.delijn.be/stops/502329", "https://data.delijn.be/stops/505574"], ["https://data.delijn.be/stops/501268", "https://data.delijn.be/stops/501313"], ["https://data.delijn.be/stops/503835", "https://data.delijn.be/stops/508835"], ["https://data.delijn.be/stops/502576", "https://data.delijn.be/stops/507153"], ["https://data.delijn.be/stops/505541", "https://data.delijn.be/stops/508802"], ["https://data.delijn.be/stops/204071", "https://data.delijn.be/stops/204185"], ["https://data.delijn.be/stops/400642", "https://data.delijn.be/stops/408473"], ["https://data.delijn.be/stops/402844", "https://data.delijn.be/stops/405357"], ["https://data.delijn.be/stops/200175", "https://data.delijn.be/stops/201152"], ["https://data.delijn.be/stops/202682", "https://data.delijn.be/stops/203728"], ["https://data.delijn.be/stops/308126", "https://data.delijn.be/stops/308127"], ["https://data.delijn.be/stops/207225", "https://data.delijn.be/stops/308570"], ["https://data.delijn.be/stops/103991", "https://data.delijn.be/stops/105314"], ["https://data.delijn.be/stops/206682", "https://data.delijn.be/stops/207676"], ["https://data.delijn.be/stops/401145", "https://data.delijn.be/stops/401154"], ["https://data.delijn.be/stops/103021", "https://data.delijn.be/stops/109887"], ["https://data.delijn.be/stops/304892", "https://data.delijn.be/stops/304911"], ["https://data.delijn.be/stops/504702", "https://data.delijn.be/stops/509398"], ["https://data.delijn.be/stops/407942", "https://data.delijn.be/stops/407943"], ["https://data.delijn.be/stops/409724", "https://data.delijn.be/stops/409725"], ["https://data.delijn.be/stops/102602", "https://data.delijn.be/stops/107864"], ["https://data.delijn.be/stops/301673", "https://data.delijn.be/stops/307798"], ["https://data.delijn.be/stops/502565", "https://data.delijn.be/stops/507565"], ["https://data.delijn.be/stops/101601", "https://data.delijn.be/stops/106027"], ["https://data.delijn.be/stops/304191", "https://data.delijn.be/stops/307988"], ["https://data.delijn.be/stops/102174", "https://data.delijn.be/stops/108296"], ["https://data.delijn.be/stops/209468", "https://data.delijn.be/stops/209501"], ["https://data.delijn.be/stops/102929", "https://data.delijn.be/stops/106125"], ["https://data.delijn.be/stops/207191", "https://data.delijn.be/stops/207692"], ["https://data.delijn.be/stops/408972", "https://data.delijn.be/stops/408982"], ["https://data.delijn.be/stops/208369", "https://data.delijn.be/stops/209370"], ["https://data.delijn.be/stops/504421", "https://data.delijn.be/stops/505791"], ["https://data.delijn.be/stops/104304", "https://data.delijn.be/stops/104307"], ["https://data.delijn.be/stops/302353", "https://data.delijn.be/stops/302389"], ["https://data.delijn.be/stops/501642", "https://data.delijn.be/stops/501661"], ["https://data.delijn.be/stops/304158", "https://data.delijn.be/stops/307756"], ["https://data.delijn.be/stops/304387", "https://data.delijn.be/stops/307417"], ["https://data.delijn.be/stops/502455", "https://data.delijn.be/stops/507456"], ["https://data.delijn.be/stops/407061", "https://data.delijn.be/stops/407778"], ["https://data.delijn.be/stops/502532", "https://data.delijn.be/stops/507532"], ["https://data.delijn.be/stops/304561", "https://data.delijn.be/stops/304662"], ["https://data.delijn.be/stops/103557", "https://data.delijn.be/stops/103594"], ["https://data.delijn.be/stops/305945", "https://data.delijn.be/stops/308414"], ["https://data.delijn.be/stops/400532", "https://data.delijn.be/stops/405328"], ["https://data.delijn.be/stops/402952", "https://data.delijn.be/stops/405503"], ["https://data.delijn.be/stops/404583", "https://data.delijn.be/stops/408171"], ["https://data.delijn.be/stops/200650", "https://data.delijn.be/stops/203864"], ["https://data.delijn.be/stops/401905", "https://data.delijn.be/stops/408337"], ["https://data.delijn.be/stops/400400", "https://data.delijn.be/stops/400972"], ["https://data.delijn.be/stops/502670", "https://data.delijn.be/stops/507670"], ["https://data.delijn.be/stops/102926", "https://data.delijn.be/stops/103106"], ["https://data.delijn.be/stops/302745", "https://data.delijn.be/stops/302746"], ["https://data.delijn.be/stops/302117", "https://data.delijn.be/stops/303662"], ["https://data.delijn.be/stops/407785", "https://data.delijn.be/stops/408142"], ["https://data.delijn.be/stops/402839", "https://data.delijn.be/stops/406993"], ["https://data.delijn.be/stops/203439", "https://data.delijn.be/stops/203951"], ["https://data.delijn.be/stops/305248", "https://data.delijn.be/stops/305594"], ["https://data.delijn.be/stops/300175", "https://data.delijn.be/stops/300192"], ["https://data.delijn.be/stops/505371", "https://data.delijn.be/stops/508246"], ["https://data.delijn.be/stops/507685", "https://data.delijn.be/stops/508021"], ["https://data.delijn.be/stops/204134", "https://data.delijn.be/stops/204135"], ["https://data.delijn.be/stops/504451", "https://data.delijn.be/stops/509455"], ["https://data.delijn.be/stops/406013", "https://data.delijn.be/stops/407146"], ["https://data.delijn.be/stops/201770", "https://data.delijn.be/stops/208397"], ["https://data.delijn.be/stops/405400", "https://data.delijn.be/stops/405403"], ["https://data.delijn.be/stops/101824", "https://data.delijn.be/stops/101924"], ["https://data.delijn.be/stops/404306", "https://data.delijn.be/stops/404318"], ["https://data.delijn.be/stops/406905", "https://data.delijn.be/stops/406951"], ["https://data.delijn.be/stops/405624", "https://data.delijn.be/stops/409295"], ["https://data.delijn.be/stops/204726", "https://data.delijn.be/stops/205703"], ["https://data.delijn.be/stops/108532", "https://data.delijn.be/stops/108534"], ["https://data.delijn.be/stops/106423", "https://data.delijn.be/stops/106510"], ["https://data.delijn.be/stops/509299", "https://data.delijn.be/stops/509317"], ["https://data.delijn.be/stops/206280", "https://data.delijn.be/stops/206397"], ["https://data.delijn.be/stops/401794", "https://data.delijn.be/stops/401795"], ["https://data.delijn.be/stops/204796", "https://data.delijn.be/stops/205079"], ["https://data.delijn.be/stops/109312", "https://data.delijn.be/stops/109315"], ["https://data.delijn.be/stops/503201", "https://data.delijn.be/stops/503984"], ["https://data.delijn.be/stops/401172", "https://data.delijn.be/stops/406651"], ["https://data.delijn.be/stops/402206", "https://data.delijn.be/stops/402207"], ["https://data.delijn.be/stops/400999", "https://data.delijn.be/stops/406586"], ["https://data.delijn.be/stops/208804", "https://data.delijn.be/stops/209426"], ["https://data.delijn.be/stops/404346", "https://data.delijn.be/stops/404347"], ["https://data.delijn.be/stops/306903", "https://data.delijn.be/stops/306904"], ["https://data.delijn.be/stops/303280", "https://data.delijn.be/stops/303281"], ["https://data.delijn.be/stops/502289", "https://data.delijn.be/stops/507298"], ["https://data.delijn.be/stops/303741", "https://data.delijn.be/stops/304918"], ["https://data.delijn.be/stops/105383", "https://data.delijn.be/stops/105386"], ["https://data.delijn.be/stops/202215", "https://data.delijn.be/stops/210056"], ["https://data.delijn.be/stops/105328", "https://data.delijn.be/stops/204021"], ["https://data.delijn.be/stops/304304", "https://data.delijn.be/stops/304351"], ["https://data.delijn.be/stops/201089", "https://data.delijn.be/stops/206554"], ["https://data.delijn.be/stops/200958", "https://data.delijn.be/stops/201958"], ["https://data.delijn.be/stops/501431", "https://data.delijn.be/stops/506678"], ["https://data.delijn.be/stops/306915", "https://data.delijn.be/stops/307086"], ["https://data.delijn.be/stops/102807", "https://data.delijn.be/stops/103695"], ["https://data.delijn.be/stops/404472", "https://data.delijn.be/stops/406665"], ["https://data.delijn.be/stops/101009", "https://data.delijn.be/stops/108285"], ["https://data.delijn.be/stops/305956", "https://data.delijn.be/stops/305959"], ["https://data.delijn.be/stops/508742", "https://data.delijn.be/stops/509979"], ["https://data.delijn.be/stops/503803", "https://data.delijn.be/stops/504587"], ["https://data.delijn.be/stops/109372", "https://data.delijn.be/stops/109373"], ["https://data.delijn.be/stops/201818", "https://data.delijn.be/stops/201819"], ["https://data.delijn.be/stops/405383", "https://data.delijn.be/stops/302840"], ["https://data.delijn.be/stops/401854", "https://data.delijn.be/stops/401855"], ["https://data.delijn.be/stops/207225", "https://data.delijn.be/stops/207226"], ["https://data.delijn.be/stops/505026", "https://data.delijn.be/stops/505027"], ["https://data.delijn.be/stops/301759", "https://data.delijn.be/stops/305947"], ["https://data.delijn.be/stops/204343", "https://data.delijn.be/stops/205343"], ["https://data.delijn.be/stops/503610", "https://data.delijn.be/stops/503614"], ["https://data.delijn.be/stops/210114", "https://data.delijn.be/stops/211114"], ["https://data.delijn.be/stops/305661", "https://data.delijn.be/stops/306338"], ["https://data.delijn.be/stops/107698", "https://data.delijn.be/stops/107717"], ["https://data.delijn.be/stops/307593", "https://data.delijn.be/stops/307603"], ["https://data.delijn.be/stops/101471", "https://data.delijn.be/stops/103094"], ["https://data.delijn.be/stops/109006", "https://data.delijn.be/stops/109007"], ["https://data.delijn.be/stops/203221", "https://data.delijn.be/stops/203814"], ["https://data.delijn.be/stops/502795", "https://data.delijn.be/stops/507914"], ["https://data.delijn.be/stops/410253", "https://data.delijn.be/stops/410254"], ["https://data.delijn.be/stops/404682", "https://data.delijn.be/stops/404686"], ["https://data.delijn.be/stops/200204", "https://data.delijn.be/stops/200205"], ["https://data.delijn.be/stops/303506", "https://data.delijn.be/stops/303507"], ["https://data.delijn.be/stops/308065", "https://data.delijn.be/stops/308133"], ["https://data.delijn.be/stops/507694", "https://data.delijn.be/stops/507695"], ["https://data.delijn.be/stops/205112", "https://data.delijn.be/stops/205683"], ["https://data.delijn.be/stops/203418", "https://data.delijn.be/stops/203419"], ["https://data.delijn.be/stops/502092", "https://data.delijn.be/stops/507092"], ["https://data.delijn.be/stops/408735", "https://data.delijn.be/stops/408783"], ["https://data.delijn.be/stops/303461", "https://data.delijn.be/stops/303499"], ["https://data.delijn.be/stops/402419", "https://data.delijn.be/stops/402429"], ["https://data.delijn.be/stops/200724", "https://data.delijn.be/stops/210112"], ["https://data.delijn.be/stops/101208", "https://data.delijn.be/stops/104909"], ["https://data.delijn.be/stops/201070", "https://data.delijn.be/stops/208844"], ["https://data.delijn.be/stops/204788", "https://data.delijn.be/stops/205788"], ["https://data.delijn.be/stops/201779", "https://data.delijn.be/stops/209250"], ["https://data.delijn.be/stops/103976", "https://data.delijn.be/stops/103977"], ["https://data.delijn.be/stops/407809", "https://data.delijn.be/stops/407837"], ["https://data.delijn.be/stops/406553", "https://data.delijn.be/stops/406566"], ["https://data.delijn.be/stops/206796", "https://data.delijn.be/stops/208952"], ["https://data.delijn.be/stops/101171", "https://data.delijn.be/stops/101310"], ["https://data.delijn.be/stops/502646", "https://data.delijn.be/stops/506054"], ["https://data.delijn.be/stops/202897", "https://data.delijn.be/stops/203898"], ["https://data.delijn.be/stops/204260", "https://data.delijn.be/stops/204476"], ["https://data.delijn.be/stops/107839", "https://data.delijn.be/stops/107841"], ["https://data.delijn.be/stops/305289", "https://data.delijn.be/stops/305292"], ["https://data.delijn.be/stops/502686", "https://data.delijn.be/stops/507686"], ["https://data.delijn.be/stops/108836", "https://data.delijn.be/stops/108851"], ["https://data.delijn.be/stops/103661", "https://data.delijn.be/stops/106221"], ["https://data.delijn.be/stops/405819", "https://data.delijn.be/stops/405849"], ["https://data.delijn.be/stops/101597", "https://data.delijn.be/stops/107387"], ["https://data.delijn.be/stops/301053", "https://data.delijn.be/stops/303832"], ["https://data.delijn.be/stops/305386", "https://data.delijn.be/stops/333233"], ["https://data.delijn.be/stops/406042", "https://data.delijn.be/stops/406051"], ["https://data.delijn.be/stops/503111", "https://data.delijn.be/stops/509875"], ["https://data.delijn.be/stops/103757", "https://data.delijn.be/stops/105515"], ["https://data.delijn.be/stops/107539", "https://data.delijn.be/stops/107542"], ["https://data.delijn.be/stops/204479", "https://data.delijn.be/stops/205667"], ["https://data.delijn.be/stops/408666", "https://data.delijn.be/stops/408667"], ["https://data.delijn.be/stops/302784", "https://data.delijn.be/stops/307781"], ["https://data.delijn.be/stops/201109", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/300076", "https://data.delijn.be/stops/306788"], ["https://data.delijn.be/stops/501365", "https://data.delijn.be/stops/501368"], ["https://data.delijn.be/stops/302314", "https://data.delijn.be/stops/302671"], ["https://data.delijn.be/stops/404522", "https://data.delijn.be/stops/404584"], ["https://data.delijn.be/stops/300079", "https://data.delijn.be/stops/300081"], ["https://data.delijn.be/stops/303414", "https://data.delijn.be/stops/303434"], ["https://data.delijn.be/stops/204761", "https://data.delijn.be/stops/205760"], ["https://data.delijn.be/stops/503606", "https://data.delijn.be/stops/503978"], ["https://data.delijn.be/stops/102974", "https://data.delijn.be/stops/107138"], ["https://data.delijn.be/stops/404551", "https://data.delijn.be/stops/405623"], ["https://data.delijn.be/stops/206264", "https://data.delijn.be/stops/207264"], ["https://data.delijn.be/stops/406471", "https://data.delijn.be/stops/406493"], ["https://data.delijn.be/stops/406468", "https://data.delijn.be/stops/406469"], ["https://data.delijn.be/stops/305099", "https://data.delijn.be/stops/305100"], ["https://data.delijn.be/stops/206485", "https://data.delijn.be/stops/206553"], ["https://data.delijn.be/stops/105320", "https://data.delijn.be/stops/205608"], ["https://data.delijn.be/stops/304932", "https://data.delijn.be/stops/304962"], ["https://data.delijn.be/stops/509701", "https://data.delijn.be/stops/509928"], ["https://data.delijn.be/stops/201126", "https://data.delijn.be/stops/201945"], ["https://data.delijn.be/stops/104588", "https://data.delijn.be/stops/106416"], ["https://data.delijn.be/stops/200437", "https://data.delijn.be/stops/211108"], ["https://data.delijn.be/stops/201383", "https://data.delijn.be/stops/209265"], ["https://data.delijn.be/stops/509381", "https://data.delijn.be/stops/509385"], ["https://data.delijn.be/stops/407895", "https://data.delijn.be/stops/408414"], ["https://data.delijn.be/stops/206712", "https://data.delijn.be/stops/207655"], ["https://data.delijn.be/stops/206297", "https://data.delijn.be/stops/207297"], ["https://data.delijn.be/stops/104881", "https://data.delijn.be/stops/104883"], ["https://data.delijn.be/stops/204316", "https://data.delijn.be/stops/204362"], ["https://data.delijn.be/stops/502357", "https://data.delijn.be/stops/502359"], ["https://data.delijn.be/stops/502112", "https://data.delijn.be/stops/502628"], ["https://data.delijn.be/stops/501555", "https://data.delijn.be/stops/506738"], ["https://data.delijn.be/stops/408692", "https://data.delijn.be/stops/408694"], ["https://data.delijn.be/stops/204446", "https://data.delijn.be/stops/204626"], ["https://data.delijn.be/stops/304347", "https://data.delijn.be/stops/304353"], ["https://data.delijn.be/stops/303332", "https://data.delijn.be/stops/308932"], ["https://data.delijn.be/stops/403701", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/302711", "https://data.delijn.be/stops/302712"], ["https://data.delijn.be/stops/502199", "https://data.delijn.be/stops/505981"], ["https://data.delijn.be/stops/407242", "https://data.delijn.be/stops/407454"], ["https://data.delijn.be/stops/400073", "https://data.delijn.be/stops/400162"], ["https://data.delijn.be/stops/407582", "https://data.delijn.be/stops/408859"], ["https://data.delijn.be/stops/202027", "https://data.delijn.be/stops/203028"], ["https://data.delijn.be/stops/201949", "https://data.delijn.be/stops/203457"], ["https://data.delijn.be/stops/300828", "https://data.delijn.be/stops/300829"], ["https://data.delijn.be/stops/106642", "https://data.delijn.be/stops/106646"], ["https://data.delijn.be/stops/408783", "https://data.delijn.be/stops/408785"], ["https://data.delijn.be/stops/105883", "https://data.delijn.be/stops/105896"], ["https://data.delijn.be/stops/108814", "https://data.delijn.be/stops/108817"], ["https://data.delijn.be/stops/305013", "https://data.delijn.be/stops/305034"], ["https://data.delijn.be/stops/407023", "https://data.delijn.be/stops/407030"], ["https://data.delijn.be/stops/200935", "https://data.delijn.be/stops/203713"], ["https://data.delijn.be/stops/201358", "https://data.delijn.be/stops/208733"], ["https://data.delijn.be/stops/300274", "https://data.delijn.be/stops/300332"], ["https://data.delijn.be/stops/308519", "https://data.delijn.be/stops/308689"], ["https://data.delijn.be/stops/206740", "https://data.delijn.be/stops/207652"], ["https://data.delijn.be/stops/502074", "https://data.delijn.be/stops/502562"], ["https://data.delijn.be/stops/503873", "https://data.delijn.be/stops/504756"], ["https://data.delijn.be/stops/200132", "https://data.delijn.be/stops/205556"], ["https://data.delijn.be/stops/104352", "https://data.delijn.be/stops/104551"], ["https://data.delijn.be/stops/300980", "https://data.delijn.be/stops/301088"], ["https://data.delijn.be/stops/401298", "https://data.delijn.be/stops/401303"], ["https://data.delijn.be/stops/402000", "https://data.delijn.be/stops/404971"], ["https://data.delijn.be/stops/202446", "https://data.delijn.be/stops/203446"], ["https://data.delijn.be/stops/307431", "https://data.delijn.be/stops/307442"], ["https://data.delijn.be/stops/503330", "https://data.delijn.be/stops/503331"], ["https://data.delijn.be/stops/204315", "https://data.delijn.be/stops/204710"], ["https://data.delijn.be/stops/400137", "https://data.delijn.be/stops/409207"], ["https://data.delijn.be/stops/400979", "https://data.delijn.be/stops/409624"], ["https://data.delijn.be/stops/503256", "https://data.delijn.be/stops/508446"], ["https://data.delijn.be/stops/400709", "https://data.delijn.be/stops/404374"], ["https://data.delijn.be/stops/303581", "https://data.delijn.be/stops/306396"], ["https://data.delijn.be/stops/102564", "https://data.delijn.be/stops/406484"], ["https://data.delijn.be/stops/102283", "https://data.delijn.be/stops/106743"], ["https://data.delijn.be/stops/401444", "https://data.delijn.be/stops/406808"], ["https://data.delijn.be/stops/404612", "https://data.delijn.be/stops/406910"], ["https://data.delijn.be/stops/504176", "https://data.delijn.be/stops/504739"], ["https://data.delijn.be/stops/503410", "https://data.delijn.be/stops/508385"], ["https://data.delijn.be/stops/304160", "https://data.delijn.be/stops/307539"], ["https://data.delijn.be/stops/107784", "https://data.delijn.be/stops/107786"], ["https://data.delijn.be/stops/400878", "https://data.delijn.be/stops/410112"], ["https://data.delijn.be/stops/409276", "https://data.delijn.be/stops/409339"], ["https://data.delijn.be/stops/406635", "https://data.delijn.be/stops/407234"], ["https://data.delijn.be/stops/400501", "https://data.delijn.be/stops/402948"], ["https://data.delijn.be/stops/209114", "https://data.delijn.be/stops/209795"], ["https://data.delijn.be/stops/104404", "https://data.delijn.be/stops/104411"], ["https://data.delijn.be/stops/502751", "https://data.delijn.be/stops/507751"], ["https://data.delijn.be/stops/204611", "https://data.delijn.be/stops/205611"], ["https://data.delijn.be/stops/202658", "https://data.delijn.be/stops/203658"], ["https://data.delijn.be/stops/401401", "https://data.delijn.be/stops/300922"], ["https://data.delijn.be/stops/505600", "https://data.delijn.be/stops/509832"], ["https://data.delijn.be/stops/408005", "https://data.delijn.be/stops/408138"], ["https://data.delijn.be/stops/101816", "https://data.delijn.be/stops/107838"], ["https://data.delijn.be/stops/505255", "https://data.delijn.be/stops/505265"], ["https://data.delijn.be/stops/300390", "https://data.delijn.be/stops/304588"], ["https://data.delijn.be/stops/406194", "https://data.delijn.be/stops/406195"], ["https://data.delijn.be/stops/300721", "https://data.delijn.be/stops/300722"], ["https://data.delijn.be/stops/502546", "https://data.delijn.be/stops/505090"], ["https://data.delijn.be/stops/105241", "https://data.delijn.be/stops/105839"], ["https://data.delijn.be/stops/104747", "https://data.delijn.be/stops/104749"], ["https://data.delijn.be/stops/104018", "https://data.delijn.be/stops/106906"], ["https://data.delijn.be/stops/102925", "https://data.delijn.be/stops/104665"], ["https://data.delijn.be/stops/200862", "https://data.delijn.be/stops/502065"], ["https://data.delijn.be/stops/505504", "https://data.delijn.be/stops/505600"], ["https://data.delijn.be/stops/306946", "https://data.delijn.be/stops/306947"], ["https://data.delijn.be/stops/503977", "https://data.delijn.be/stops/508977"], ["https://data.delijn.be/stops/306872", "https://data.delijn.be/stops/307421"], ["https://data.delijn.be/stops/302492", "https://data.delijn.be/stops/302496"], ["https://data.delijn.be/stops/300115", "https://data.delijn.be/stops/307734"], ["https://data.delijn.be/stops/202493", "https://data.delijn.be/stops/203493"], ["https://data.delijn.be/stops/107042", "https://data.delijn.be/stops/108242"], ["https://data.delijn.be/stops/201208", "https://data.delijn.be/stops/202142"], ["https://data.delijn.be/stops/205990", "https://data.delijn.be/stops/208361"], ["https://data.delijn.be/stops/200929", "https://data.delijn.be/stops/505512"], ["https://data.delijn.be/stops/403193", "https://data.delijn.be/stops/403285"], ["https://data.delijn.be/stops/400040", "https://data.delijn.be/stops/400396"], ["https://data.delijn.be/stops/504787", "https://data.delijn.be/stops/508268"], ["https://data.delijn.be/stops/203224", "https://data.delijn.be/stops/203283"], ["https://data.delijn.be/stops/200569", "https://data.delijn.be/stops/201569"], ["https://data.delijn.be/stops/102218", "https://data.delijn.be/stops/105537"], ["https://data.delijn.be/stops/301729", "https://data.delijn.be/stops/305948"], ["https://data.delijn.be/stops/102236", "https://data.delijn.be/stops/105862"], ["https://data.delijn.be/stops/406123", "https://data.delijn.be/stops/406124"], ["https://data.delijn.be/stops/108231", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/508473", "https://data.delijn.be/stops/508478"], ["https://data.delijn.be/stops/402245", "https://data.delijn.be/stops/407532"], ["https://data.delijn.be/stops/202520", "https://data.delijn.be/stops/203520"], ["https://data.delijn.be/stops/202496", "https://data.delijn.be/stops/202497"], ["https://data.delijn.be/stops/105672", "https://data.delijn.be/stops/107498"], ["https://data.delijn.be/stops/301511", "https://data.delijn.be/stops/301527"], ["https://data.delijn.be/stops/107085", "https://data.delijn.be/stops/107090"], ["https://data.delijn.be/stops/201697", "https://data.delijn.be/stops/202392"], ["https://data.delijn.be/stops/409428", "https://data.delijn.be/stops/409429"], ["https://data.delijn.be/stops/102571", "https://data.delijn.be/stops/102573"], ["https://data.delijn.be/stops/409707", "https://data.delijn.be/stops/409718"], ["https://data.delijn.be/stops/208680", "https://data.delijn.be/stops/209664"], ["https://data.delijn.be/stops/505142", "https://data.delijn.be/stops/507228"], ["https://data.delijn.be/stops/203547", "https://data.delijn.be/stops/203554"], ["https://data.delijn.be/stops/101978", "https://data.delijn.be/stops/102254"], ["https://data.delijn.be/stops/300651", "https://data.delijn.be/stops/300658"], ["https://data.delijn.be/stops/303260", "https://data.delijn.be/stops/305726"], ["https://data.delijn.be/stops/206897", "https://data.delijn.be/stops/207887"], ["https://data.delijn.be/stops/103225", "https://data.delijn.be/stops/103230"], ["https://data.delijn.be/stops/200002", "https://data.delijn.be/stops/203297"], ["https://data.delijn.be/stops/207447", "https://data.delijn.be/stops/207478"], ["https://data.delijn.be/stops/218024", "https://data.delijn.be/stops/219024"], ["https://data.delijn.be/stops/301138", "https://data.delijn.be/stops/302872"], ["https://data.delijn.be/stops/402652", "https://data.delijn.be/stops/405655"], ["https://data.delijn.be/stops/206788", "https://data.delijn.be/stops/208562"], ["https://data.delijn.be/stops/303491", "https://data.delijn.be/stops/308636"], ["https://data.delijn.be/stops/404427", "https://data.delijn.be/stops/404564"], ["https://data.delijn.be/stops/206180", "https://data.delijn.be/stops/207181"], ["https://data.delijn.be/stops/503514", "https://data.delijn.be/stops/503515"], ["https://data.delijn.be/stops/508230", "https://data.delijn.be/stops/508260"], ["https://data.delijn.be/stops/304540", "https://data.delijn.be/stops/304556"], ["https://data.delijn.be/stops/401849", "https://data.delijn.be/stops/406193"], ["https://data.delijn.be/stops/206150", "https://data.delijn.be/stops/207150"], ["https://data.delijn.be/stops/301855", "https://data.delijn.be/stops/305465"], ["https://data.delijn.be/stops/108073", "https://data.delijn.be/stops/108137"], ["https://data.delijn.be/stops/410165", "https://data.delijn.be/stops/410167"], ["https://data.delijn.be/stops/305767", "https://data.delijn.be/stops/305783"], ["https://data.delijn.be/stops/504941", "https://data.delijn.be/stops/505423"], ["https://data.delijn.be/stops/106172", "https://data.delijn.be/stops/106173"], ["https://data.delijn.be/stops/106650", "https://data.delijn.be/stops/106651"], ["https://data.delijn.be/stops/406896", "https://data.delijn.be/stops/409463"], ["https://data.delijn.be/stops/206753", "https://data.delijn.be/stops/207662"], ["https://data.delijn.be/stops/505928", "https://data.delijn.be/stops/509487"], ["https://data.delijn.be/stops/303157", "https://data.delijn.be/stops/304185"], ["https://data.delijn.be/stops/204459", "https://data.delijn.be/stops/205109"], ["https://data.delijn.be/stops/206079", "https://data.delijn.be/stops/206881"], ["https://data.delijn.be/stops/503863", "https://data.delijn.be/stops/505214"], ["https://data.delijn.be/stops/208481", "https://data.delijn.be/stops/208482"], ["https://data.delijn.be/stops/502496", "https://data.delijn.be/stops/502508"], ["https://data.delijn.be/stops/200491", "https://data.delijn.be/stops/201491"], ["https://data.delijn.be/stops/304379", "https://data.delijn.be/stops/304386"], ["https://data.delijn.be/stops/205237", "https://data.delijn.be/stops/207283"], ["https://data.delijn.be/stops/200490", "https://data.delijn.be/stops/201490"], ["https://data.delijn.be/stops/505232", "https://data.delijn.be/stops/507234"], ["https://data.delijn.be/stops/402519", "https://data.delijn.be/stops/402587"], ["https://data.delijn.be/stops/500001", "https://data.delijn.be/stops/505747"], ["https://data.delijn.be/stops/103376", "https://data.delijn.be/stops/406852"], ["https://data.delijn.be/stops/108817", "https://data.delijn.be/stops/108831"], ["https://data.delijn.be/stops/103494", "https://data.delijn.be/stops/106212"], ["https://data.delijn.be/stops/302107", "https://data.delijn.be/stops/308085"], ["https://data.delijn.be/stops/303389", "https://data.delijn.be/stops/307137"], ["https://data.delijn.be/stops/101462", "https://data.delijn.be/stops/101463"], ["https://data.delijn.be/stops/402781", "https://data.delijn.be/stops/402784"], ["https://data.delijn.be/stops/400536", "https://data.delijn.be/stops/403425"], ["https://data.delijn.be/stops/106470", "https://data.delijn.be/stops/107048"], ["https://data.delijn.be/stops/108626", "https://data.delijn.be/stops/301842"], ["https://data.delijn.be/stops/502116", "https://data.delijn.be/stops/507111"], ["https://data.delijn.be/stops/504505", "https://data.delijn.be/stops/504705"], ["https://data.delijn.be/stops/301369", "https://data.delijn.be/stops/306127"], ["https://data.delijn.be/stops/102831", "https://data.delijn.be/stops/104981"], ["https://data.delijn.be/stops/105964", "https://data.delijn.be/stops/105966"], ["https://data.delijn.be/stops/201422", "https://data.delijn.be/stops/201960"], ["https://data.delijn.be/stops/508523", "https://data.delijn.be/stops/508526"], ["https://data.delijn.be/stops/408508", "https://data.delijn.be/stops/408622"], ["https://data.delijn.be/stops/401908", "https://data.delijn.be/stops/403573"], ["https://data.delijn.be/stops/505384", "https://data.delijn.be/stops/508101"], ["https://data.delijn.be/stops/505540", "https://data.delijn.be/stops/508896"], ["https://data.delijn.be/stops/401854", "https://data.delijn.be/stops/406347"], ["https://data.delijn.be/stops/101183", "https://data.delijn.be/stops/104619"], ["https://data.delijn.be/stops/206387", "https://data.delijn.be/stops/207967"], ["https://data.delijn.be/stops/404644", "https://data.delijn.be/stops/406913"], ["https://data.delijn.be/stops/505318", "https://data.delijn.be/stops/505959"], ["https://data.delijn.be/stops/404227", "https://data.delijn.be/stops/404570"], ["https://data.delijn.be/stops/402412", "https://data.delijn.be/stops/402419"], ["https://data.delijn.be/stops/306723", "https://data.delijn.be/stops/306725"], ["https://data.delijn.be/stops/301382", "https://data.delijn.be/stops/306140"], ["https://data.delijn.be/stops/105867", "https://data.delijn.be/stops/105869"], ["https://data.delijn.be/stops/504946", "https://data.delijn.be/stops/508190"], ["https://data.delijn.be/stops/102247", "https://data.delijn.be/stops/105877"], ["https://data.delijn.be/stops/505511", "https://data.delijn.be/stops/505607"], ["https://data.delijn.be/stops/300376", "https://data.delijn.be/stops/300384"], ["https://data.delijn.be/stops/205566", "https://data.delijn.be/stops/308794"], ["https://data.delijn.be/stops/105718", "https://data.delijn.be/stops/105721"], ["https://data.delijn.be/stops/502345", "https://data.delijn.be/stops/507345"], ["https://data.delijn.be/stops/308272", "https://data.delijn.be/stops/308275"], ["https://data.delijn.be/stops/301356", "https://data.delijn.be/stops/307162"], ["https://data.delijn.be/stops/501268", "https://data.delijn.be/stops/506511"], ["https://data.delijn.be/stops/407130", "https://data.delijn.be/stops/407342"], ["https://data.delijn.be/stops/401446", "https://data.delijn.be/stops/401517"], ["https://data.delijn.be/stops/403073", "https://data.delijn.be/stops/403289"], ["https://data.delijn.be/stops/505298", "https://data.delijn.be/stops/509013"], ["https://data.delijn.be/stops/503951", "https://data.delijn.be/stops/508371"], ["https://data.delijn.be/stops/502093", "https://data.delijn.be/stops/502817"], ["https://data.delijn.be/stops/103169", "https://data.delijn.be/stops/109894"], ["https://data.delijn.be/stops/103095", "https://data.delijn.be/stops/105180"], ["https://data.delijn.be/stops/503268", "https://data.delijn.be/stops/503289"], ["https://data.delijn.be/stops/204355", "https://data.delijn.be/stops/205355"], ["https://data.delijn.be/stops/308595", "https://data.delijn.be/stops/308861"], ["https://data.delijn.be/stops/103143", "https://data.delijn.be/stops/109443"], ["https://data.delijn.be/stops/206179", "https://data.delijn.be/stops/207957"], ["https://data.delijn.be/stops/502049", "https://data.delijn.be/stops/507049"], ["https://data.delijn.be/stops/503024", "https://data.delijn.be/stops/508028"], ["https://data.delijn.be/stops/408875", "https://data.delijn.be/stops/408877"], ["https://data.delijn.be/stops/401756", "https://data.delijn.be/stops/406349"], ["https://data.delijn.be/stops/501047", "https://data.delijn.be/stops/502731"], ["https://data.delijn.be/stops/405837", "https://data.delijn.be/stops/406386"], ["https://data.delijn.be/stops/102073", "https://data.delijn.be/stops/108807"], ["https://data.delijn.be/stops/504986", "https://data.delijn.be/stops/505248"], ["https://data.delijn.be/stops/105238", "https://data.delijn.be/stops/105246"], ["https://data.delijn.be/stops/204611", "https://data.delijn.be/stops/205612"], ["https://data.delijn.be/stops/405046", "https://data.delijn.be/stops/405049"], ["https://data.delijn.be/stops/208831", "https://data.delijn.be/stops/209795"], ["https://data.delijn.be/stops/305056", "https://data.delijn.be/stops/305211"], ["https://data.delijn.be/stops/402384", "https://data.delijn.be/stops/402385"], ["https://data.delijn.be/stops/107201", "https://data.delijn.be/stops/109995"], ["https://data.delijn.be/stops/302411", "https://data.delijn.be/stops/302420"], ["https://data.delijn.be/stops/405521", "https://data.delijn.be/stops/407781"], ["https://data.delijn.be/stops/300888", "https://data.delijn.be/stops/303831"], ["https://data.delijn.be/stops/102598", "https://data.delijn.be/stops/104583"], ["https://data.delijn.be/stops/408920", "https://data.delijn.be/stops/408926"], ["https://data.delijn.be/stops/400054", "https://data.delijn.be/stops/400091"], ["https://data.delijn.be/stops/109441", "https://data.delijn.be/stops/109442"], ["https://data.delijn.be/stops/504579", "https://data.delijn.be/stops/505205"], ["https://data.delijn.be/stops/300743", "https://data.delijn.be/stops/300744"], ["https://data.delijn.be/stops/103538", "https://data.delijn.be/stops/108220"], ["https://data.delijn.be/stops/406280", "https://data.delijn.be/stops/406899"], ["https://data.delijn.be/stops/509224", "https://data.delijn.be/stops/509228"], ["https://data.delijn.be/stops/502012", "https://data.delijn.be/stops/507246"], ["https://data.delijn.be/stops/505113", "https://data.delijn.be/stops/509036"], ["https://data.delijn.be/stops/402176", "https://data.delijn.be/stops/402177"], ["https://data.delijn.be/stops/205161", "https://data.delijn.be/stops/206397"], ["https://data.delijn.be/stops/206245", "https://data.delijn.be/stops/206402"], ["https://data.delijn.be/stops/303947", "https://data.delijn.be/stops/303958"], ["https://data.delijn.be/stops/304247", "https://data.delijn.be/stops/304248"], ["https://data.delijn.be/stops/405333", "https://data.delijn.be/stops/405343"], ["https://data.delijn.be/stops/406640", "https://data.delijn.be/stops/406641"], ["https://data.delijn.be/stops/202524", "https://data.delijn.be/stops/202959"], ["https://data.delijn.be/stops/302387", "https://data.delijn.be/stops/307974"], ["https://data.delijn.be/stops/101811", "https://data.delijn.be/stops/103117"], ["https://data.delijn.be/stops/501606", "https://data.delijn.be/stops/506019"], ["https://data.delijn.be/stops/206747", "https://data.delijn.be/stops/207697"], ["https://data.delijn.be/stops/407781", "https://data.delijn.be/stops/407787"], ["https://data.delijn.be/stops/200840", "https://data.delijn.be/stops/509878"], ["https://data.delijn.be/stops/201356", "https://data.delijn.be/stops/208726"], ["https://data.delijn.be/stops/400559", "https://data.delijn.be/stops/401960"], ["https://data.delijn.be/stops/301971", "https://data.delijn.be/stops/301972"], ["https://data.delijn.be/stops/503047", "https://data.delijn.be/stops/508047"], ["https://data.delijn.be/stops/109048", "https://data.delijn.be/stops/300066"], ["https://data.delijn.be/stops/200821", "https://data.delijn.be/stops/209656"], ["https://data.delijn.be/stops/204472", "https://data.delijn.be/stops/204775"], ["https://data.delijn.be/stops/302856", "https://data.delijn.be/stops/308674"], ["https://data.delijn.be/stops/103998", "https://data.delijn.be/stops/107285"], ["https://data.delijn.be/stops/503044", "https://data.delijn.be/stops/508044"], ["https://data.delijn.be/stops/405809", "https://data.delijn.be/stops/405831"], ["https://data.delijn.be/stops/403699", "https://data.delijn.be/stops/407869"], ["https://data.delijn.be/stops/303122", "https://data.delijn.be/stops/307204"], ["https://data.delijn.be/stops/209001", "https://data.delijn.be/stops/209098"], ["https://data.delijn.be/stops/300690", "https://data.delijn.be/stops/300691"], ["https://data.delijn.be/stops/205038", "https://data.delijn.be/stops/205039"], ["https://data.delijn.be/stops/202796", "https://data.delijn.be/stops/505753"], ["https://data.delijn.be/stops/109439", "https://data.delijn.be/stops/109441"], ["https://data.delijn.be/stops/201546", "https://data.delijn.be/stops/203899"], ["https://data.delijn.be/stops/109857", "https://data.delijn.be/stops/109941"], ["https://data.delijn.be/stops/103989", "https://data.delijn.be/stops/104972"], ["https://data.delijn.be/stops/102681", "https://data.delijn.be/stops/105320"], ["https://data.delijn.be/stops/201669", "https://data.delijn.be/stops/201837"], ["https://data.delijn.be/stops/405486", "https://data.delijn.be/stops/409251"], ["https://data.delijn.be/stops/406037", "https://data.delijn.be/stops/406379"], ["https://data.delijn.be/stops/101150", "https://data.delijn.be/stops/105495"], ["https://data.delijn.be/stops/406158", "https://data.delijn.be/stops/406159"], ["https://data.delijn.be/stops/300363", "https://data.delijn.be/stops/300364"], ["https://data.delijn.be/stops/305773", "https://data.delijn.be/stops/305788"], ["https://data.delijn.be/stops/509035", "https://data.delijn.be/stops/509471"], ["https://data.delijn.be/stops/206734", "https://data.delijn.be/stops/206736"], ["https://data.delijn.be/stops/305112", "https://data.delijn.be/stops/308123"], ["https://data.delijn.be/stops/210095", "https://data.delijn.be/stops/211108"], ["https://data.delijn.be/stops/405414", "https://data.delijn.be/stops/306773"], ["https://data.delijn.be/stops/201136", "https://data.delijn.be/stops/203134"], ["https://data.delijn.be/stops/202172", "https://data.delijn.be/stops/202174"], ["https://data.delijn.be/stops/105994", "https://data.delijn.be/stops/105996"], ["https://data.delijn.be/stops/505158", "https://data.delijn.be/stops/508994"], ["https://data.delijn.be/stops/206687", "https://data.delijn.be/stops/207355"], ["https://data.delijn.be/stops/304914", "https://data.delijn.be/stops/304915"], ["https://data.delijn.be/stops/501682", "https://data.delijn.be/stops/506261"], ["https://data.delijn.be/stops/102212", "https://data.delijn.be/stops/102669"], ["https://data.delijn.be/stops/304025", "https://data.delijn.be/stops/304110"], ["https://data.delijn.be/stops/204752", "https://data.delijn.be/stops/205247"], ["https://data.delijn.be/stops/400405", "https://data.delijn.be/stops/405537"], ["https://data.delijn.be/stops/408885", "https://data.delijn.be/stops/408893"], ["https://data.delijn.be/stops/304712", "https://data.delijn.be/stops/304713"], ["https://data.delijn.be/stops/302537", "https://data.delijn.be/stops/302543"], ["https://data.delijn.be/stops/401600", "https://data.delijn.be/stops/406386"], ["https://data.delijn.be/stops/107037", "https://data.delijn.be/stops/109557"], ["https://data.delijn.be/stops/502645", "https://data.delijn.be/stops/502696"], ["https://data.delijn.be/stops/303963", "https://data.delijn.be/stops/303967"], ["https://data.delijn.be/stops/504165", "https://data.delijn.be/stops/504646"], ["https://data.delijn.be/stops/204591", "https://data.delijn.be/stops/214007"], ["https://data.delijn.be/stops/202792", "https://data.delijn.be/stops/203792"], ["https://data.delijn.be/stops/502308", "https://data.delijn.be/stops/502309"], ["https://data.delijn.be/stops/108951", "https://data.delijn.be/stops/108952"], ["https://data.delijn.be/stops/304012", "https://data.delijn.be/stops/304033"], ["https://data.delijn.be/stops/300803", "https://data.delijn.be/stops/302399"], ["https://data.delijn.be/stops/400664", "https://data.delijn.be/stops/408972"], ["https://data.delijn.be/stops/101222", "https://data.delijn.be/stops/107793"], ["https://data.delijn.be/stops/408570", "https://data.delijn.be/stops/408571"], ["https://data.delijn.be/stops/402723", "https://data.delijn.be/stops/402728"], ["https://data.delijn.be/stops/504305", "https://data.delijn.be/stops/504318"], ["https://data.delijn.be/stops/201921", "https://data.delijn.be/stops/203522"], ["https://data.delijn.be/stops/503899", "https://data.delijn.be/stops/508906"], ["https://data.delijn.be/stops/408337", "https://data.delijn.be/stops/410158"], ["https://data.delijn.be/stops/203315", "https://data.delijn.be/stops/505753"], ["https://data.delijn.be/stops/208124", "https://data.delijn.be/stops/209075"], ["https://data.delijn.be/stops/301365", "https://data.delijn.be/stops/308766"], ["https://data.delijn.be/stops/503563", "https://data.delijn.be/stops/508540"], ["https://data.delijn.be/stops/206363", "https://data.delijn.be/stops/207334"], ["https://data.delijn.be/stops/200276", "https://data.delijn.be/stops/200984"], ["https://data.delijn.be/stops/504383", "https://data.delijn.be/stops/509383"], ["https://data.delijn.be/stops/208027", "https://data.delijn.be/stops/209013"], ["https://data.delijn.be/stops/408428", "https://data.delijn.be/stops/408514"], ["https://data.delijn.be/stops/402526", "https://data.delijn.be/stops/402527"], ["https://data.delijn.be/stops/305723", "https://data.delijn.be/stops/305724"], ["https://data.delijn.be/stops/506191", "https://data.delijn.be/stops/506383"], ["https://data.delijn.be/stops/503040", "https://data.delijn.be/stops/509888"], ["https://data.delijn.be/stops/204020", "https://data.delijn.be/stops/205819"], ["https://data.delijn.be/stops/401421", "https://data.delijn.be/stops/401497"], ["https://data.delijn.be/stops/204930", "https://data.delijn.be/stops/208731"], ["https://data.delijn.be/stops/206612", "https://data.delijn.be/stops/206709"], ["https://data.delijn.be/stops/301254", "https://data.delijn.be/stops/301275"], ["https://data.delijn.be/stops/502234", "https://data.delijn.be/stops/505146"], ["https://data.delijn.be/stops/303439", "https://data.delijn.be/stops/303523"], ["https://data.delijn.be/stops/407970", "https://data.delijn.be/stops/408008"], ["https://data.delijn.be/stops/406368", "https://data.delijn.be/stops/406369"], ["https://data.delijn.be/stops/200460", "https://data.delijn.be/stops/201679"], ["https://data.delijn.be/stops/102951", "https://data.delijn.be/stops/102954"], ["https://data.delijn.be/stops/211129", "https://data.delijn.be/stops/218935"], ["https://data.delijn.be/stops/303294", "https://data.delijn.be/stops/303303"], ["https://data.delijn.be/stops/201218", "https://data.delijn.be/stops/201260"], ["https://data.delijn.be/stops/305780", "https://data.delijn.be/stops/305781"], ["https://data.delijn.be/stops/501041", "https://data.delijn.be/stops/506127"], ["https://data.delijn.be/stops/300588", "https://data.delijn.be/stops/307077"], ["https://data.delijn.be/stops/104453", "https://data.delijn.be/stops/107494"], ["https://data.delijn.be/stops/403425", "https://data.delijn.be/stops/410271"], ["https://data.delijn.be/stops/406916", "https://data.delijn.be/stops/409464"], ["https://data.delijn.be/stops/200479", "https://data.delijn.be/stops/201060"], ["https://data.delijn.be/stops/304601", "https://data.delijn.be/stops/304716"], ["https://data.delijn.be/stops/206073", "https://data.delijn.be/stops/207520"], ["https://data.delijn.be/stops/301317", "https://data.delijn.be/stops/307457"], ["https://data.delijn.be/stops/405822", "https://data.delijn.be/stops/409417"], ["https://data.delijn.be/stops/202025", "https://data.delijn.be/stops/202026"], ["https://data.delijn.be/stops/400363", "https://data.delijn.be/stops/400418"], ["https://data.delijn.be/stops/502449", "https://data.delijn.be/stops/507449"], ["https://data.delijn.be/stops/502355", "https://data.delijn.be/stops/505015"], ["https://data.delijn.be/stops/106843", "https://data.delijn.be/stops/106986"], ["https://data.delijn.be/stops/200167", "https://data.delijn.be/stops/203596"], ["https://data.delijn.be/stops/503570", "https://data.delijn.be/stops/508553"], ["https://data.delijn.be/stops/208816", "https://data.delijn.be/stops/209851"], ["https://data.delijn.be/stops/204070", "https://data.delijn.be/stops/204071"], ["https://data.delijn.be/stops/303246", "https://data.delijn.be/stops/303660"], ["https://data.delijn.be/stops/106944", "https://data.delijn.be/stops/108702"], ["https://data.delijn.be/stops/203126", "https://data.delijn.be/stops/203599"], ["https://data.delijn.be/stops/406151", "https://data.delijn.be/stops/406209"], ["https://data.delijn.be/stops/305252", "https://data.delijn.be/stops/305253"], ["https://data.delijn.be/stops/109349", "https://data.delijn.be/stops/109350"], ["https://data.delijn.be/stops/502656", "https://data.delijn.be/stops/502663"], ["https://data.delijn.be/stops/208764", "https://data.delijn.be/stops/209409"], ["https://data.delijn.be/stops/408182", "https://data.delijn.be/stops/408189"], ["https://data.delijn.be/stops/504961", "https://data.delijn.be/stops/508060"], ["https://data.delijn.be/stops/504464", "https://data.delijn.be/stops/504465"], ["https://data.delijn.be/stops/401076", "https://data.delijn.be/stops/401167"], ["https://data.delijn.be/stops/501146", "https://data.delijn.be/stops/509832"], ["https://data.delijn.be/stops/200262", "https://data.delijn.be/stops/201262"], ["https://data.delijn.be/stops/502263", "https://data.delijn.be/stops/507350"], ["https://data.delijn.be/stops/308452", "https://data.delijn.be/stops/308513"], ["https://data.delijn.be/stops/302490", "https://data.delijn.be/stops/308834"], ["https://data.delijn.be/stops/208495", "https://data.delijn.be/stops/209495"], ["https://data.delijn.be/stops/101125", "https://data.delijn.be/stops/105800"], ["https://data.delijn.be/stops/410069", "https://data.delijn.be/stops/410070"], ["https://data.delijn.be/stops/107930", "https://data.delijn.be/stops/107931"], ["https://data.delijn.be/stops/209670", "https://data.delijn.be/stops/209672"], ["https://data.delijn.be/stops/504685", "https://data.delijn.be/stops/509685"], ["https://data.delijn.be/stops/503929", "https://data.delijn.be/stops/508928"], ["https://data.delijn.be/stops/305752", "https://data.delijn.be/stops/306333"], ["https://data.delijn.be/stops/407605", "https://data.delijn.be/stops/407699"], ["https://data.delijn.be/stops/101488", "https://data.delijn.be/stops/101947"], ["https://data.delijn.be/stops/103005", "https://data.delijn.be/stops/104011"], ["https://data.delijn.be/stops/102489", "https://data.delijn.be/stops/102492"], ["https://data.delijn.be/stops/206519", "https://data.delijn.be/stops/207176"], ["https://data.delijn.be/stops/103970", "https://data.delijn.be/stops/106070"], ["https://data.delijn.be/stops/503170", "https://data.delijn.be/stops/503176"], ["https://data.delijn.be/stops/508206", "https://data.delijn.be/stops/508814"], ["https://data.delijn.be/stops/201691", "https://data.delijn.be/stops/203365"], ["https://data.delijn.be/stops/502060", "https://data.delijn.be/stops/507071"], ["https://data.delijn.be/stops/201000", "https://data.delijn.be/stops/202136"], ["https://data.delijn.be/stops/203020", "https://data.delijn.be/stops/211853"], ["https://data.delijn.be/stops/204054", "https://data.delijn.be/stops/204055"], ["https://data.delijn.be/stops/308218", "https://data.delijn.be/stops/308249"], ["https://data.delijn.be/stops/301449", "https://data.delijn.be/stops/306678"], ["https://data.delijn.be/stops/407838", "https://data.delijn.be/stops/407840"], ["https://data.delijn.be/stops/105480", "https://data.delijn.be/stops/105684"], ["https://data.delijn.be/stops/206101", "https://data.delijn.be/stops/207846"], ["https://data.delijn.be/stops/308478", "https://data.delijn.be/stops/308482"], ["https://data.delijn.be/stops/200348", "https://data.delijn.be/stops/208404"], ["https://data.delijn.be/stops/401676", "https://data.delijn.be/stops/308166"], ["https://data.delijn.be/stops/403456", "https://data.delijn.be/stops/407464"], ["https://data.delijn.be/stops/302125", "https://data.delijn.be/stops/308085"], ["https://data.delijn.be/stops/206358", "https://data.delijn.be/stops/206700"], ["https://data.delijn.be/stops/400406", "https://data.delijn.be/stops/400408"], ["https://data.delijn.be/stops/502446", "https://data.delijn.be/stops/507682"], ["https://data.delijn.be/stops/501336", "https://data.delijn.be/stops/501565"], ["https://data.delijn.be/stops/206997", "https://data.delijn.be/stops/207997"], ["https://data.delijn.be/stops/205021", "https://data.delijn.be/stops/205410"], ["https://data.delijn.be/stops/408273", "https://data.delijn.be/stops/408388"], ["https://data.delijn.be/stops/205996", "https://data.delijn.be/stops/207021"], ["https://data.delijn.be/stops/409418", "https://data.delijn.be/stops/409419"], ["https://data.delijn.be/stops/504940", "https://data.delijn.be/stops/509940"], ["https://data.delijn.be/stops/204445", "https://data.delijn.be/stops/204656"], ["https://data.delijn.be/stops/407899", "https://data.delijn.be/stops/407992"], ["https://data.delijn.be/stops/105268", "https://data.delijn.be/stops/105287"], ["https://data.delijn.be/stops/503048", "https://data.delijn.be/stops/509843"], ["https://data.delijn.be/stops/109828", "https://data.delijn.be/stops/109831"], ["https://data.delijn.be/stops/303933", "https://data.delijn.be/stops/303934"], ["https://data.delijn.be/stops/406067", "https://data.delijn.be/stops/406141"], ["https://data.delijn.be/stops/200147", "https://data.delijn.be/stops/201113"], ["https://data.delijn.be/stops/204981", "https://data.delijn.be/stops/206491"], ["https://data.delijn.be/stops/504287", "https://data.delijn.be/stops/509287"], ["https://data.delijn.be/stops/105552", "https://data.delijn.be/stops/105567"], ["https://data.delijn.be/stops/404090", "https://data.delijn.be/stops/408593"], ["https://data.delijn.be/stops/404402", "https://data.delijn.be/stops/404405"], ["https://data.delijn.be/stops/406574", "https://data.delijn.be/stops/406589"], ["https://data.delijn.be/stops/301832", "https://data.delijn.be/stops/305986"], ["https://data.delijn.be/stops/106193", "https://data.delijn.be/stops/106195"], ["https://data.delijn.be/stops/306257", "https://data.delijn.be/stops/306259"], ["https://data.delijn.be/stops/106634", "https://data.delijn.be/stops/107188"], ["https://data.delijn.be/stops/404976", "https://data.delijn.be/stops/404978"], ["https://data.delijn.be/stops/304990", "https://data.delijn.be/stops/304992"], ["https://data.delijn.be/stops/401409", "https://data.delijn.be/stops/300980"], ["https://data.delijn.be/stops/404231", "https://data.delijn.be/stops/404236"], ["https://data.delijn.be/stops/303568", "https://data.delijn.be/stops/303569"], ["https://data.delijn.be/stops/405449", "https://data.delijn.be/stops/302836"], ["https://data.delijn.be/stops/102849", "https://data.delijn.be/stops/106778"], ["https://data.delijn.be/stops/303848", "https://data.delijn.be/stops/303871"], ["https://data.delijn.be/stops/202740", "https://data.delijn.be/stops/207431"], ["https://data.delijn.be/stops/205224", "https://data.delijn.be/stops/205225"], ["https://data.delijn.be/stops/108636", "https://data.delijn.be/stops/109662"], ["https://data.delijn.be/stops/300290", "https://data.delijn.be/stops/301314"], ["https://data.delijn.be/stops/102588", "https://data.delijn.be/stops/102589"], ["https://data.delijn.be/stops/301956", "https://data.delijn.be/stops/308530"], ["https://data.delijn.be/stops/307088", "https://data.delijn.be/stops/308298"], ["https://data.delijn.be/stops/202275", "https://data.delijn.be/stops/203681"], ["https://data.delijn.be/stops/305232", "https://data.delijn.be/stops/305256"], ["https://data.delijn.be/stops/208237", "https://data.delijn.be/stops/208242"], ["https://data.delijn.be/stops/408880", "https://data.delijn.be/stops/408922"], ["https://data.delijn.be/stops/107364", "https://data.delijn.be/stops/107366"], ["https://data.delijn.be/stops/406682", "https://data.delijn.be/stops/407179"], ["https://data.delijn.be/stops/507540", "https://data.delijn.be/stops/507564"], ["https://data.delijn.be/stops/104052", "https://data.delijn.be/stops/108398"], ["https://data.delijn.be/stops/300594", "https://data.delijn.be/stops/303018"], ["https://data.delijn.be/stops/302529", "https://data.delijn.be/stops/302531"], ["https://data.delijn.be/stops/306955", "https://data.delijn.be/stops/306957"], ["https://data.delijn.be/stops/302962", "https://data.delijn.be/stops/306296"], ["https://data.delijn.be/stops/102532", "https://data.delijn.be/stops/405106"], ["https://data.delijn.be/stops/106065", "https://data.delijn.be/stops/106070"], ["https://data.delijn.be/stops/201386", "https://data.delijn.be/stops/203645"], ["https://data.delijn.be/stops/109997", "https://data.delijn.be/stops/410163"], ["https://data.delijn.be/stops/107452", "https://data.delijn.be/stops/107453"], ["https://data.delijn.be/stops/404141", "https://data.delijn.be/stops/404179"], ["https://data.delijn.be/stops/202795", "https://data.delijn.be/stops/203312"], ["https://data.delijn.be/stops/403990", "https://data.delijn.be/stops/410014"], ["https://data.delijn.be/stops/305528", "https://data.delijn.be/stops/305553"], ["https://data.delijn.be/stops/207093", "https://data.delijn.be/stops/207094"], ["https://data.delijn.be/stops/501592", "https://data.delijn.be/stops/504061"], ["https://data.delijn.be/stops/300216", "https://data.delijn.be/stops/300217"], ["https://data.delijn.be/stops/402237", "https://data.delijn.be/stops/402295"], ["https://data.delijn.be/stops/203944", "https://data.delijn.be/stops/203946"], ["https://data.delijn.be/stops/403672", "https://data.delijn.be/stops/405633"], ["https://data.delijn.be/stops/208741", "https://data.delijn.be/stops/209186"], ["https://data.delijn.be/stops/208472", "https://data.delijn.be/stops/209669"], ["https://data.delijn.be/stops/209666", "https://data.delijn.be/stops/209680"], ["https://data.delijn.be/stops/302250", "https://data.delijn.be/stops/306378"], ["https://data.delijn.be/stops/403303", "https://data.delijn.be/stops/403306"], ["https://data.delijn.be/stops/102571", "https://data.delijn.be/stops/109233"], ["https://data.delijn.be/stops/205974", "https://data.delijn.be/stops/208290"], ["https://data.delijn.be/stops/501326", "https://data.delijn.be/stops/501358"], ["https://data.delijn.be/stops/303300", "https://data.delijn.be/stops/305102"], ["https://data.delijn.be/stops/508440", "https://data.delijn.be/stops/509440"], ["https://data.delijn.be/stops/200926", "https://data.delijn.be/stops/202394"], ["https://data.delijn.be/stops/202494", "https://data.delijn.be/stops/211043"], ["https://data.delijn.be/stops/403140", "https://data.delijn.be/stops/403146"], ["https://data.delijn.be/stops/202305", "https://data.delijn.be/stops/203306"], ["https://data.delijn.be/stops/402384", "https://data.delijn.be/stops/404730"], ["https://data.delijn.be/stops/106424", "https://data.delijn.be/stops/106426"], ["https://data.delijn.be/stops/202660", "https://data.delijn.be/stops/210659"], ["https://data.delijn.be/stops/304126", "https://data.delijn.be/stops/307550"], ["https://data.delijn.be/stops/408266", "https://data.delijn.be/stops/408305"], ["https://data.delijn.be/stops/204108", "https://data.delijn.be/stops/205108"], ["https://data.delijn.be/stops/300326", "https://data.delijn.be/stops/307035"], ["https://data.delijn.be/stops/401431", "https://data.delijn.be/stops/402280"], ["https://data.delijn.be/stops/208484", "https://data.delijn.be/stops/209484"], ["https://data.delijn.be/stops/204572", "https://data.delijn.be/stops/308715"], ["https://data.delijn.be/stops/301646", "https://data.delijn.be/stops/301647"], ["https://data.delijn.be/stops/403831", "https://data.delijn.be/stops/403832"], ["https://data.delijn.be/stops/402068", "https://data.delijn.be/stops/402223"], ["https://data.delijn.be/stops/202032", "https://data.delijn.be/stops/203032"], ["https://data.delijn.be/stops/202437", "https://data.delijn.be/stops/202607"], ["https://data.delijn.be/stops/501694", "https://data.delijn.be/stops/505741"], ["https://data.delijn.be/stops/308211", "https://data.delijn.be/stops/308212"], ["https://data.delijn.be/stops/207544", "https://data.delijn.be/stops/209749"], ["https://data.delijn.be/stops/200018", "https://data.delijn.be/stops/209948"], ["https://data.delijn.be/stops/505706", "https://data.delijn.be/stops/505708"], ["https://data.delijn.be/stops/400697", "https://data.delijn.be/stops/409526"], ["https://data.delijn.be/stops/200375", "https://data.delijn.be/stops/201375"], ["https://data.delijn.be/stops/204405", "https://data.delijn.be/stops/204414"], ["https://data.delijn.be/stops/303206", "https://data.delijn.be/stops/304318"], ["https://data.delijn.be/stops/208495", "https://data.delijn.be/stops/209638"], ["https://data.delijn.be/stops/504365", "https://data.delijn.be/stops/509369"], ["https://data.delijn.be/stops/401922", "https://data.delijn.be/stops/403747"], ["https://data.delijn.be/stops/202080", "https://data.delijn.be/stops/204975"], ["https://data.delijn.be/stops/202592", "https://data.delijn.be/stops/210023"], ["https://data.delijn.be/stops/104936", "https://data.delijn.be/stops/108188"], ["https://data.delijn.be/stops/106401", "https://data.delijn.be/stops/106574"], ["https://data.delijn.be/stops/105064", "https://data.delijn.be/stops/109491"], ["https://data.delijn.be/stops/209333", "https://data.delijn.be/stops/209397"], ["https://data.delijn.be/stops/303364", "https://data.delijn.be/stops/307183"], ["https://data.delijn.be/stops/304696", "https://data.delijn.be/stops/306684"], ["https://data.delijn.be/stops/305169", "https://data.delijn.be/stops/307104"], ["https://data.delijn.be/stops/408114", "https://data.delijn.be/stops/408115"], ["https://data.delijn.be/stops/408235", "https://data.delijn.be/stops/408284"], ["https://data.delijn.be/stops/201844", "https://data.delijn.be/stops/208327"], ["https://data.delijn.be/stops/302902", "https://data.delijn.be/stops/303231"], ["https://data.delijn.be/stops/405949", "https://data.delijn.be/stops/405950"], ["https://data.delijn.be/stops/102838", "https://data.delijn.be/stops/102839"], ["https://data.delijn.be/stops/103483", "https://data.delijn.be/stops/109137"], ["https://data.delijn.be/stops/202796", "https://data.delijn.be/stops/203796"], ["https://data.delijn.be/stops/302092", "https://data.delijn.be/stops/302093"], ["https://data.delijn.be/stops/202334", "https://data.delijn.be/stops/202335"], ["https://data.delijn.be/stops/305141", "https://data.delijn.be/stops/305142"], ["https://data.delijn.be/stops/300004", "https://data.delijn.be/stops/300010"], ["https://data.delijn.be/stops/105757", "https://data.delijn.be/stops/109816"], ["https://data.delijn.be/stops/208647", "https://data.delijn.be/stops/210111"], ["https://data.delijn.be/stops/206889", "https://data.delijn.be/stops/207294"], ["https://data.delijn.be/stops/107839", "https://data.delijn.be/stops/109652"], ["https://data.delijn.be/stops/206586", "https://data.delijn.be/stops/206919"], ["https://data.delijn.be/stops/201772", "https://data.delijn.be/stops/209266"], ["https://data.delijn.be/stops/301947", "https://data.delijn.be/stops/306970"], ["https://data.delijn.be/stops/405087", "https://data.delijn.be/stops/408342"], ["https://data.delijn.be/stops/102186", "https://data.delijn.be/stops/102237"], ["https://data.delijn.be/stops/401010", "https://data.delijn.be/stops/408745"], ["https://data.delijn.be/stops/206335", "https://data.delijn.be/stops/206336"], ["https://data.delijn.be/stops/201926", "https://data.delijn.be/stops/207400"], ["https://data.delijn.be/stops/504132", "https://data.delijn.be/stops/504257"], ["https://data.delijn.be/stops/406610", "https://data.delijn.be/stops/406637"], ["https://data.delijn.be/stops/408186", "https://data.delijn.be/stops/408187"], ["https://data.delijn.be/stops/504441", "https://data.delijn.be/stops/504701"], ["https://data.delijn.be/stops/106871", "https://data.delijn.be/stops/106872"], ["https://data.delijn.be/stops/503431", "https://data.delijn.be/stops/508431"], ["https://data.delijn.be/stops/205086", "https://data.delijn.be/stops/205087"], ["https://data.delijn.be/stops/301610", "https://data.delijn.be/stops/301611"], ["https://data.delijn.be/stops/202251", "https://data.delijn.be/stops/203250"], ["https://data.delijn.be/stops/208417", "https://data.delijn.be/stops/209418"], ["https://data.delijn.be/stops/210105", "https://data.delijn.be/stops/211084"], ["https://data.delijn.be/stops/107037", "https://data.delijn.be/stops/108243"], ["https://data.delijn.be/stops/404422", "https://data.delijn.be/stops/404425"], ["https://data.delijn.be/stops/209049", "https://data.delijn.be/stops/209050"], ["https://data.delijn.be/stops/308028", "https://data.delijn.be/stops/308033"], ["https://data.delijn.be/stops/102397", "https://data.delijn.be/stops/106337"], ["https://data.delijn.be/stops/204708", "https://data.delijn.be/stops/204709"], ["https://data.delijn.be/stops/101838", "https://data.delijn.be/stops/105425"], ["https://data.delijn.be/stops/404147", "https://data.delijn.be/stops/404167"], ["https://data.delijn.be/stops/102564", "https://data.delijn.be/stops/400023"], ["https://data.delijn.be/stops/400904", "https://data.delijn.be/stops/400905"], ["https://data.delijn.be/stops/103222", "https://data.delijn.be/stops/104574"], ["https://data.delijn.be/stops/306666", "https://data.delijn.be/stops/307880"], ["https://data.delijn.be/stops/403871", "https://data.delijn.be/stops/410164"], ["https://data.delijn.be/stops/201668", "https://data.delijn.be/stops/201678"], ["https://data.delijn.be/stops/200829", "https://data.delijn.be/stops/502060"], ["https://data.delijn.be/stops/304072", "https://data.delijn.be/stops/308981"], ["https://data.delijn.be/stops/306166", "https://data.delijn.be/stops/308545"], ["https://data.delijn.be/stops/502708", "https://data.delijn.be/stops/505017"], ["https://data.delijn.be/stops/303533", "https://data.delijn.be/stops/303555"], ["https://data.delijn.be/stops/305071", "https://data.delijn.be/stops/306951"], ["https://data.delijn.be/stops/303044", "https://data.delijn.be/stops/303096"], ["https://data.delijn.be/stops/208203", "https://data.delijn.be/stops/209455"], ["https://data.delijn.be/stops/102284", "https://data.delijn.be/stops/106747"], ["https://data.delijn.be/stops/301169", "https://data.delijn.be/stops/305526"], ["https://data.delijn.be/stops/502414", "https://data.delijn.be/stops/502695"], ["https://data.delijn.be/stops/205985", "https://data.delijn.be/stops/207837"], ["https://data.delijn.be/stops/300358", "https://data.delijn.be/stops/304862"], ["https://data.delijn.be/stops/205503", "https://data.delijn.be/stops/205505"], ["https://data.delijn.be/stops/400733", "https://data.delijn.be/stops/400872"], ["https://data.delijn.be/stops/406973", "https://data.delijn.be/stops/408439"], ["https://data.delijn.be/stops/404914", "https://data.delijn.be/stops/404917"], ["https://data.delijn.be/stops/206912", "https://data.delijn.be/stops/207926"], ["https://data.delijn.be/stops/402714", "https://data.delijn.be/stops/308143"], ["https://data.delijn.be/stops/304718", "https://data.delijn.be/stops/308687"], ["https://data.delijn.be/stops/208745", "https://data.delijn.be/stops/209419"], ["https://data.delijn.be/stops/203366", "https://data.delijn.be/stops/203998"], ["https://data.delijn.be/stops/102240", "https://data.delijn.be/stops/105809"], ["https://data.delijn.be/stops/505677", "https://data.delijn.be/stops/507305"], ["https://data.delijn.be/stops/302254", "https://data.delijn.be/stops/302259"], ["https://data.delijn.be/stops/401782", "https://data.delijn.be/stops/406421"], ["https://data.delijn.be/stops/206154", "https://data.delijn.be/stops/207115"], ["https://data.delijn.be/stops/502362", "https://data.delijn.be/stops/507354"], ["https://data.delijn.be/stops/206313", "https://data.delijn.be/stops/206314"], ["https://data.delijn.be/stops/205677", "https://data.delijn.be/stops/205678"], ["https://data.delijn.be/stops/402071", "https://data.delijn.be/stops/405548"], ["https://data.delijn.be/stops/300316", "https://data.delijn.be/stops/300565"], ["https://data.delijn.be/stops/403911", "https://data.delijn.be/stops/403998"], ["https://data.delijn.be/stops/403632", "https://data.delijn.be/stops/407558"], ["https://data.delijn.be/stops/208115", "https://data.delijn.be/stops/208337"], ["https://data.delijn.be/stops/208431", "https://data.delijn.be/stops/209431"], ["https://data.delijn.be/stops/108089", "https://data.delijn.be/stops/108389"], ["https://data.delijn.be/stops/103156", "https://data.delijn.be/stops/109045"], ["https://data.delijn.be/stops/308720", "https://data.delijn.be/stops/308722"], ["https://data.delijn.be/stops/409253", "https://data.delijn.be/stops/409278"], ["https://data.delijn.be/stops/204260", "https://data.delijn.be/stops/205465"], ["https://data.delijn.be/stops/106068", "https://data.delijn.be/stops/106418"], ["https://data.delijn.be/stops/305161", "https://data.delijn.be/stops/305200"], ["https://data.delijn.be/stops/403270", "https://data.delijn.be/stops/409522"], ["https://data.delijn.be/stops/405131", "https://data.delijn.be/stops/405180"], ["https://data.delijn.be/stops/403822", "https://data.delijn.be/stops/405136"], ["https://data.delijn.be/stops/301792", "https://data.delijn.be/stops/301796"], ["https://data.delijn.be/stops/506305", "https://data.delijn.be/stops/506480"], ["https://data.delijn.be/stops/504310", "https://data.delijn.be/stops/504317"], ["https://data.delijn.be/stops/401871", "https://data.delijn.be/stops/406341"], ["https://data.delijn.be/stops/406545", "https://data.delijn.be/stops/408389"], ["https://data.delijn.be/stops/109024", "https://data.delijn.be/stops/109075"], ["https://data.delijn.be/stops/305987", "https://data.delijn.be/stops/305989"], ["https://data.delijn.be/stops/304889", "https://data.delijn.be/stops/306716"], ["https://data.delijn.be/stops/305047", "https://data.delijn.be/stops/305049"], ["https://data.delijn.be/stops/404774", "https://data.delijn.be/stops/404786"], ["https://data.delijn.be/stops/301308", "https://data.delijn.be/stops/304693"], ["https://data.delijn.be/stops/208141", "https://data.delijn.be/stops/209142"], ["https://data.delijn.be/stops/405371", "https://data.delijn.be/stops/302847"], ["https://data.delijn.be/stops/403525", "https://data.delijn.be/stops/404408"], ["https://data.delijn.be/stops/104498", "https://data.delijn.be/stops/107508"], ["https://data.delijn.be/stops/304494", "https://data.delijn.be/stops/304495"], ["https://data.delijn.be/stops/301007", "https://data.delijn.be/stops/301011"], ["https://data.delijn.be/stops/202097", "https://data.delijn.be/stops/202098"], ["https://data.delijn.be/stops/206134", "https://data.delijn.be/stops/207134"], ["https://data.delijn.be/stops/206520", "https://data.delijn.be/stops/207008"], ["https://data.delijn.be/stops/103248", "https://data.delijn.be/stops/103249"], ["https://data.delijn.be/stops/305707", "https://data.delijn.be/stops/305752"], ["https://data.delijn.be/stops/102898", "https://data.delijn.be/stops/106017"], ["https://data.delijn.be/stops/104131", "https://data.delijn.be/stops/108436"], ["https://data.delijn.be/stops/202869", "https://data.delijn.be/stops/203882"], ["https://data.delijn.be/stops/505543", "https://data.delijn.be/stops/508805"], ["https://data.delijn.be/stops/206094", "https://data.delijn.be/stops/206095"], ["https://data.delijn.be/stops/202835", "https://data.delijn.be/stops/202836"], ["https://data.delijn.be/stops/401487", "https://data.delijn.be/stops/401504"], ["https://data.delijn.be/stops/408225", "https://data.delijn.be/stops/408395"], ["https://data.delijn.be/stops/200302", "https://data.delijn.be/stops/201261"], ["https://data.delijn.be/stops/104402", "https://data.delijn.be/stops/204610"], ["https://data.delijn.be/stops/401498", "https://data.delijn.be/stops/401598"], ["https://data.delijn.be/stops/301231", "https://data.delijn.be/stops/308559"], ["https://data.delijn.be/stops/207363", "https://data.delijn.be/stops/207706"], ["https://data.delijn.be/stops/402706", "https://data.delijn.be/stops/402729"], ["https://data.delijn.be/stops/200393", "https://data.delijn.be/stops/201083"], ["https://data.delijn.be/stops/507471", "https://data.delijn.be/stops/507690"], ["https://data.delijn.be/stops/109359", "https://data.delijn.be/stops/109365"], ["https://data.delijn.be/stops/206289", "https://data.delijn.be/stops/207258"], ["https://data.delijn.be/stops/105743", "https://data.delijn.be/stops/105746"], ["https://data.delijn.be/stops/406089", "https://data.delijn.be/stops/406090"], ["https://data.delijn.be/stops/404506", "https://data.delijn.be/stops/404507"], ["https://data.delijn.be/stops/203722", "https://data.delijn.be/stops/203723"], ["https://data.delijn.be/stops/308760", "https://data.delijn.be/stops/308761"], ["https://data.delijn.be/stops/206515", "https://data.delijn.be/stops/206661"], ["https://data.delijn.be/stops/400596", "https://data.delijn.be/stops/400614"], ["https://data.delijn.be/stops/502652", "https://data.delijn.be/stops/507405"], ["https://data.delijn.be/stops/406637", "https://data.delijn.be/stops/406639"], ["https://data.delijn.be/stops/300540", "https://data.delijn.be/stops/300541"], ["https://data.delijn.be/stops/407752", "https://data.delijn.be/stops/407753"], ["https://data.delijn.be/stops/408476", "https://data.delijn.be/stops/408477"], ["https://data.delijn.be/stops/405934", "https://data.delijn.be/stops/405987"], ["https://data.delijn.be/stops/305968", "https://data.delijn.be/stops/308759"], ["https://data.delijn.be/stops/206131", "https://data.delijn.be/stops/206137"], ["https://data.delijn.be/stops/504588", "https://data.delijn.be/stops/505535"], ["https://data.delijn.be/stops/208005", "https://data.delijn.be/stops/208079"], ["https://data.delijn.be/stops/108029", "https://data.delijn.be/stops/108034"], ["https://data.delijn.be/stops/409136", "https://data.delijn.be/stops/409315"], ["https://data.delijn.be/stops/406649", "https://data.delijn.be/stops/406651"], ["https://data.delijn.be/stops/206708", "https://data.delijn.be/stops/207974"], ["https://data.delijn.be/stops/202960", "https://data.delijn.be/stops/203959"], ["https://data.delijn.be/stops/200924", "https://data.delijn.be/stops/505602"], ["https://data.delijn.be/stops/104419", "https://data.delijn.be/stops/204823"], ["https://data.delijn.be/stops/300458", "https://data.delijn.be/stops/300460"], ["https://data.delijn.be/stops/302166", "https://data.delijn.be/stops/304079"], ["https://data.delijn.be/stops/205320", "https://data.delijn.be/stops/205321"], ["https://data.delijn.be/stops/301123", "https://data.delijn.be/stops/301138"], ["https://data.delijn.be/stops/302159", "https://data.delijn.be/stops/308101"], ["https://data.delijn.be/stops/506173", "https://data.delijn.be/stops/506780"], ["https://data.delijn.be/stops/305417", "https://data.delijn.be/stops/305421"], ["https://data.delijn.be/stops/208233", "https://data.delijn.be/stops/209796"], ["https://data.delijn.be/stops/102498", "https://data.delijn.be/stops/400004"], ["https://data.delijn.be/stops/300368", "https://data.delijn.be/stops/307213"], ["https://data.delijn.be/stops/503113", "https://data.delijn.be/stops/508113"], ["https://data.delijn.be/stops/302822", "https://data.delijn.be/stops/308981"], ["https://data.delijn.be/stops/301781", "https://data.delijn.be/stops/308894"], ["https://data.delijn.be/stops/109436", "https://data.delijn.be/stops/109439"], ["https://data.delijn.be/stops/507304", "https://data.delijn.be/stops/507306"], ["https://data.delijn.be/stops/502659", "https://data.delijn.be/stops/507658"], ["https://data.delijn.be/stops/208791", "https://data.delijn.be/stops/208792"], ["https://data.delijn.be/stops/502750", "https://data.delijn.be/stops/507440"], ["https://data.delijn.be/stops/402309", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/106593", "https://data.delijn.be/stops/107248"], ["https://data.delijn.be/stops/200182", "https://data.delijn.be/stops/203757"], ["https://data.delijn.be/stops/101240", "https://data.delijn.be/stops/101600"], ["https://data.delijn.be/stops/503672", "https://data.delijn.be/stops/505257"], ["https://data.delijn.be/stops/103286", "https://data.delijn.be/stops/106130"], ["https://data.delijn.be/stops/405592", "https://data.delijn.be/stops/405595"], ["https://data.delijn.be/stops/503330", "https://data.delijn.be/stops/508331"], ["https://data.delijn.be/stops/502061", "https://data.delijn.be/stops/502070"], ["https://data.delijn.be/stops/200216", "https://data.delijn.be/stops/201260"], ["https://data.delijn.be/stops/502684", "https://data.delijn.be/stops/507700"], ["https://data.delijn.be/stops/301110", "https://data.delijn.be/stops/307639"], ["https://data.delijn.be/stops/201872", "https://data.delijn.be/stops/202426"], ["https://data.delijn.be/stops/304757", "https://data.delijn.be/stops/305589"], ["https://data.delijn.be/stops/107624", "https://data.delijn.be/stops/108541"], ["https://data.delijn.be/stops/108098", "https://data.delijn.be/stops/108099"], ["https://data.delijn.be/stops/501144", "https://data.delijn.be/stops/502363"], ["https://data.delijn.be/stops/302533", "https://data.delijn.be/stops/302536"], ["https://data.delijn.be/stops/302736", "https://data.delijn.be/stops/302791"], ["https://data.delijn.be/stops/208614", "https://data.delijn.be/stops/208615"], ["https://data.delijn.be/stops/504393", "https://data.delijn.be/stops/509264"], ["https://data.delijn.be/stops/303349", "https://data.delijn.be/stops/303388"], ["https://data.delijn.be/stops/503177", "https://data.delijn.be/stops/508264"], ["https://data.delijn.be/stops/404447", "https://data.delijn.be/stops/404448"], ["https://data.delijn.be/stops/204975", "https://data.delijn.be/stops/209746"], ["https://data.delijn.be/stops/201854", "https://data.delijn.be/stops/202022"], ["https://data.delijn.be/stops/206902", "https://data.delijn.be/stops/206917"], ["https://data.delijn.be/stops/103638", "https://data.delijn.be/stops/107166"], ["https://data.delijn.be/stops/200055", "https://data.delijn.be/stops/201472"], ["https://data.delijn.be/stops/400301", "https://data.delijn.be/stops/400440"], ["https://data.delijn.be/stops/505095", "https://data.delijn.be/stops/505944"], ["https://data.delijn.be/stops/302496", "https://data.delijn.be/stops/302720"], ["https://data.delijn.be/stops/102991", "https://data.delijn.be/stops/106360"], ["https://data.delijn.be/stops/107878", "https://data.delijn.be/stops/107886"], ["https://data.delijn.be/stops/403364", "https://data.delijn.be/stops/410276"], ["https://data.delijn.be/stops/300439", "https://data.delijn.be/stops/300440"], ["https://data.delijn.be/stops/502805", "https://data.delijn.be/stops/502806"], ["https://data.delijn.be/stops/502208", "https://data.delijn.be/stops/502211"], ["https://data.delijn.be/stops/206271", "https://data.delijn.be/stops/206272"], ["https://data.delijn.be/stops/300529", "https://data.delijn.be/stops/300530"], ["https://data.delijn.be/stops/504674", "https://data.delijn.be/stops/505813"], ["https://data.delijn.be/stops/208780", "https://data.delijn.be/stops/209351"], ["https://data.delijn.be/stops/302240", "https://data.delijn.be/stops/304912"], ["https://data.delijn.be/stops/101841", "https://data.delijn.be/stops/109397"], ["https://data.delijn.be/stops/105754", "https://data.delijn.be/stops/105757"], ["https://data.delijn.be/stops/204496", "https://data.delijn.be/stops/205510"], ["https://data.delijn.be/stops/206121", "https://data.delijn.be/stops/207141"], ["https://data.delijn.be/stops/204170", "https://data.delijn.be/stops/205593"], ["https://data.delijn.be/stops/103235", "https://data.delijn.be/stops/107395"], ["https://data.delijn.be/stops/403230", "https://data.delijn.be/stops/403386"], ["https://data.delijn.be/stops/107177", "https://data.delijn.be/stops/107178"], ["https://data.delijn.be/stops/202157", "https://data.delijn.be/stops/203156"], ["https://data.delijn.be/stops/208379", "https://data.delijn.be/stops/209290"], ["https://data.delijn.be/stops/504088", "https://data.delijn.be/stops/509085"], ["https://data.delijn.be/stops/500002", "https://data.delijn.be/stops/505978"], ["https://data.delijn.be/stops/101445", "https://data.delijn.be/stops/109010"], ["https://data.delijn.be/stops/208410", "https://data.delijn.be/stops/208765"], ["https://data.delijn.be/stops/406236", "https://data.delijn.be/stops/406237"], ["https://data.delijn.be/stops/102597", "https://data.delijn.be/stops/107861"], ["https://data.delijn.be/stops/503324", "https://data.delijn.be/stops/508322"], ["https://data.delijn.be/stops/210011", "https://data.delijn.be/stops/210012"], ["https://data.delijn.be/stops/200817", "https://data.delijn.be/stops/210103"], ["https://data.delijn.be/stops/401867", "https://data.delijn.be/stops/406285"], ["https://data.delijn.be/stops/402108", "https://data.delijn.be/stops/402109"], ["https://data.delijn.be/stops/204740", "https://data.delijn.be/stops/205742"], ["https://data.delijn.be/stops/404193", "https://data.delijn.be/stops/405981"], ["https://data.delijn.be/stops/408044", "https://data.delijn.be/stops/408045"], ["https://data.delijn.be/stops/302587", "https://data.delijn.be/stops/302604"], ["https://data.delijn.be/stops/409672", "https://data.delijn.be/stops/409685"], ["https://data.delijn.be/stops/407971", "https://data.delijn.be/stops/408010"], ["https://data.delijn.be/stops/301721", "https://data.delijn.be/stops/301722"], ["https://data.delijn.be/stops/400808", "https://data.delijn.be/stops/409621"], ["https://data.delijn.be/stops/404888", "https://data.delijn.be/stops/404889"], ["https://data.delijn.be/stops/406292", "https://data.delijn.be/stops/409259"], ["https://data.delijn.be/stops/405301", "https://data.delijn.be/stops/405412"], ["https://data.delijn.be/stops/400728", "https://data.delijn.be/stops/400729"], ["https://data.delijn.be/stops/504161", "https://data.delijn.be/stops/504195"], ["https://data.delijn.be/stops/202021", "https://data.delijn.be/stops/210853"], ["https://data.delijn.be/stops/503457", "https://data.delijn.be/stops/508471"], ["https://data.delijn.be/stops/103746", "https://data.delijn.be/stops/103747"], ["https://data.delijn.be/stops/206183", "https://data.delijn.be/stops/217006"], ["https://data.delijn.be/stops/405353", "https://data.delijn.be/stops/302838"], ["https://data.delijn.be/stops/205520", "https://data.delijn.be/stops/205521"], ["https://data.delijn.be/stops/206580", "https://data.delijn.be/stops/207920"], ["https://data.delijn.be/stops/400965", "https://data.delijn.be/stops/400968"], ["https://data.delijn.be/stops/408859", "https://data.delijn.be/stops/408885"], ["https://data.delijn.be/stops/305343", "https://data.delijn.be/stops/305347"], ["https://data.delijn.be/stops/407068", "https://data.delijn.be/stops/407071"], ["https://data.delijn.be/stops/108404", "https://data.delijn.be/stops/306637"], ["https://data.delijn.be/stops/303031", "https://data.delijn.be/stops/307727"], ["https://data.delijn.be/stops/202086", "https://data.delijn.be/stops/202722"], ["https://data.delijn.be/stops/104139", "https://data.delijn.be/stops/108107"], ["https://data.delijn.be/stops/103059", "https://data.delijn.be/stops/104446"], ["https://data.delijn.be/stops/303088", "https://data.delijn.be/stops/306110"], ["https://data.delijn.be/stops/307201", "https://data.delijn.be/stops/307202"], ["https://data.delijn.be/stops/501770", "https://data.delijn.be/stops/502373"], ["https://data.delijn.be/stops/502288", "https://data.delijn.be/stops/507288"], ["https://data.delijn.be/stops/402231", "https://data.delijn.be/stops/402292"], ["https://data.delijn.be/stops/502252", "https://data.delijn.be/stops/505223"], ["https://data.delijn.be/stops/300576", "https://data.delijn.be/stops/300589"], ["https://data.delijn.be/stops/400886", "https://data.delijn.be/stops/400976"], ["https://data.delijn.be/stops/400157", "https://data.delijn.be/stops/409067"], ["https://data.delijn.be/stops/508863", "https://data.delijn.be/stops/590007"], ["https://data.delijn.be/stops/507108", "https://data.delijn.be/stops/507141"], ["https://data.delijn.be/stops/303348", "https://data.delijn.be/stops/303350"], ["https://data.delijn.be/stops/206294", "https://data.delijn.be/stops/207817"], ["https://data.delijn.be/stops/103248", "https://data.delijn.be/stops/107600"], ["https://data.delijn.be/stops/200080", "https://data.delijn.be/stops/203479"], ["https://data.delijn.be/stops/305302", "https://data.delijn.be/stops/305328"], ["https://data.delijn.be/stops/305684", "https://data.delijn.be/stops/305710"], ["https://data.delijn.be/stops/407830", "https://data.delijn.be/stops/407977"], ["https://data.delijn.be/stops/107589", "https://data.delijn.be/stops/109430"], ["https://data.delijn.be/stops/302972", "https://data.delijn.be/stops/306295"], ["https://data.delijn.be/stops/101706", "https://data.delijn.be/stops/204493"], ["https://data.delijn.be/stops/501331", "https://data.delijn.be/stops/506309"], ["https://data.delijn.be/stops/103303", "https://data.delijn.be/stops/409036"], ["https://data.delijn.be/stops/104822", "https://data.delijn.be/stops/305830"], ["https://data.delijn.be/stops/302539", "https://data.delijn.be/stops/302543"], ["https://data.delijn.be/stops/205697", "https://data.delijn.be/stops/214009"], ["https://data.delijn.be/stops/304263", "https://data.delijn.be/stops/304266"], ["https://data.delijn.be/stops/200428", "https://data.delijn.be/stops/203008"], ["https://data.delijn.be/stops/301560", "https://data.delijn.be/stops/301576"], ["https://data.delijn.be/stops/502526", "https://data.delijn.be/stops/507528"], ["https://data.delijn.be/stops/302015", "https://data.delijn.be/stops/304914"], ["https://data.delijn.be/stops/503703", "https://data.delijn.be/stops/508741"], ["https://data.delijn.be/stops/307966", "https://data.delijn.be/stops/307968"], ["https://data.delijn.be/stops/206751", "https://data.delijn.be/stops/209668"], ["https://data.delijn.be/stops/208573", "https://data.delijn.be/stops/209573"], ["https://data.delijn.be/stops/402363", "https://data.delijn.be/stops/402365"], ["https://data.delijn.be/stops/200021", "https://data.delijn.be/stops/203355"], ["https://data.delijn.be/stops/403131", "https://data.delijn.be/stops/403844"], ["https://data.delijn.be/stops/204664", "https://data.delijn.be/stops/205664"], ["https://data.delijn.be/stops/107592", "https://data.delijn.be/stops/107596"], ["https://data.delijn.be/stops/201983", "https://data.delijn.be/stops/202340"], ["https://data.delijn.be/stops/304954", "https://data.delijn.be/stops/308034"], ["https://data.delijn.be/stops/405153", "https://data.delijn.be/stops/405205"], ["https://data.delijn.be/stops/509783", "https://data.delijn.be/stops/509785"], ["https://data.delijn.be/stops/402161", "https://data.delijn.be/stops/402388"], ["https://data.delijn.be/stops/505558", "https://data.delijn.be/stops/507941"], ["https://data.delijn.be/stops/202698", "https://data.delijn.be/stops/202699"], ["https://data.delijn.be/stops/206113", "https://data.delijn.be/stops/207156"], ["https://data.delijn.be/stops/403472", "https://data.delijn.be/stops/403473"], ["https://data.delijn.be/stops/404894", "https://data.delijn.be/stops/404906"], ["https://data.delijn.be/stops/303828", "https://data.delijn.be/stops/303835"], ["https://data.delijn.be/stops/407159", "https://data.delijn.be/stops/407176"], ["https://data.delijn.be/stops/207497", "https://data.delijn.be/stops/207504"], ["https://data.delijn.be/stops/301038", "https://data.delijn.be/stops/301066"], ["https://data.delijn.be/stops/200723", "https://data.delijn.be/stops/211076"], ["https://data.delijn.be/stops/102689", "https://data.delijn.be/stops/104366"], ["https://data.delijn.be/stops/204066", "https://data.delijn.be/stops/205227"], ["https://data.delijn.be/stops/504454", "https://data.delijn.be/stops/504828"], ["https://data.delijn.be/stops/405824", "https://data.delijn.be/stops/409747"], ["https://data.delijn.be/stops/203162", "https://data.delijn.be/stops/204092"], ["https://data.delijn.be/stops/300605", "https://data.delijn.be/stops/300614"], ["https://data.delijn.be/stops/304831", "https://data.delijn.be/stops/305505"], ["https://data.delijn.be/stops/106081", "https://data.delijn.be/stops/106138"], ["https://data.delijn.be/stops/202595", "https://data.delijn.be/stops/203594"], ["https://data.delijn.be/stops/204133", "https://data.delijn.be/stops/205133"], ["https://data.delijn.be/stops/209295", "https://data.delijn.be/stops/209380"], ["https://data.delijn.be/stops/108213", "https://data.delijn.be/stops/108214"], ["https://data.delijn.be/stops/405876", "https://data.delijn.be/stops/405878"], ["https://data.delijn.be/stops/207230", "https://data.delijn.be/stops/207233"], ["https://data.delijn.be/stops/106008", "https://data.delijn.be/stops/107909"], ["https://data.delijn.be/stops/200149", "https://data.delijn.be/stops/201514"], ["https://data.delijn.be/stops/406529", "https://data.delijn.be/stops/409253"], ["https://data.delijn.be/stops/409287", "https://data.delijn.be/stops/409311"], ["https://data.delijn.be/stops/206981", "https://data.delijn.be/stops/217020"], ["https://data.delijn.be/stops/300470", "https://data.delijn.be/stops/308081"], ["https://data.delijn.be/stops/101875", "https://data.delijn.be/stops/102305"], ["https://data.delijn.be/stops/402758", "https://data.delijn.be/stops/408124"], ["https://data.delijn.be/stops/200189", "https://data.delijn.be/stops/200401"], ["https://data.delijn.be/stops/505311", "https://data.delijn.be/stops/509638"], ["https://data.delijn.be/stops/400164", "https://data.delijn.be/stops/400165"], ["https://data.delijn.be/stops/304603", "https://data.delijn.be/stops/304604"], ["https://data.delijn.be/stops/200687", "https://data.delijn.be/stops/210111"], ["https://data.delijn.be/stops/101985", "https://data.delijn.be/stops/106055"], ["https://data.delijn.be/stops/408277", "https://data.delijn.be/stops/408343"], ["https://data.delijn.be/stops/200161", "https://data.delijn.be/stops/210132"], ["https://data.delijn.be/stops/206382", "https://data.delijn.be/stops/207921"], ["https://data.delijn.be/stops/503845", "https://data.delijn.be/stops/503849"], ["https://data.delijn.be/stops/200932", "https://data.delijn.be/stops/202255"], ["https://data.delijn.be/stops/205683", "https://data.delijn.be/stops/205684"], ["https://data.delijn.be/stops/202540", "https://data.delijn.be/stops/203521"], ["https://data.delijn.be/stops/400629", "https://data.delijn.be/stops/405992"], ["https://data.delijn.be/stops/406964", "https://data.delijn.be/stops/409449"], ["https://data.delijn.be/stops/504241", "https://data.delijn.be/stops/504654"], ["https://data.delijn.be/stops/203100", "https://data.delijn.be/stops/203258"], ["https://data.delijn.be/stops/102194", "https://data.delijn.be/stops/102196"], ["https://data.delijn.be/stops/303566", "https://data.delijn.be/stops/303568"], ["https://data.delijn.be/stops/200357", "https://data.delijn.be/stops/201386"], ["https://data.delijn.be/stops/501169", "https://data.delijn.be/stops/506169"], ["https://data.delijn.be/stops/305217", "https://data.delijn.be/stops/307091"], ["https://data.delijn.be/stops/109264", "https://data.delijn.be/stops/109269"], ["https://data.delijn.be/stops/405876", "https://data.delijn.be/stops/409752"], ["https://data.delijn.be/stops/404290", "https://data.delijn.be/stops/404292"], ["https://data.delijn.be/stops/202746", "https://data.delijn.be/stops/206421"], ["https://data.delijn.be/stops/409024", "https://data.delijn.be/stops/409030"], ["https://data.delijn.be/stops/305109", "https://data.delijn.be/stops/305117"], ["https://data.delijn.be/stops/209181", "https://data.delijn.be/stops/209182"], ["https://data.delijn.be/stops/207300", "https://data.delijn.be/stops/207301"], ["https://data.delijn.be/stops/105451", "https://data.delijn.be/stops/109937"], ["https://data.delijn.be/stops/102355", "https://data.delijn.be/stops/105457"], ["https://data.delijn.be/stops/201582", "https://data.delijn.be/stops/210607"], ["https://data.delijn.be/stops/507543", "https://data.delijn.be/stops/507611"], ["https://data.delijn.be/stops/304027", "https://data.delijn.be/stops/304912"], ["https://data.delijn.be/stops/201725", "https://data.delijn.be/stops/202980"], ["https://data.delijn.be/stops/200481", "https://data.delijn.be/stops/201469"], ["https://data.delijn.be/stops/505897", "https://data.delijn.be/stops/508846"], ["https://data.delijn.be/stops/307877", "https://data.delijn.be/stops/307878"], ["https://data.delijn.be/stops/404554", "https://data.delijn.be/stops/407354"], ["https://data.delijn.be/stops/308257", "https://data.delijn.be/stops/308759"], ["https://data.delijn.be/stops/403370", "https://data.delijn.be/stops/403513"], ["https://data.delijn.be/stops/206685", "https://data.delijn.be/stops/206900"], ["https://data.delijn.be/stops/207356", "https://data.delijn.be/stops/207731"], ["https://data.delijn.be/stops/400171", "https://data.delijn.be/stops/400941"], ["https://data.delijn.be/stops/106258", "https://data.delijn.be/stops/109909"], ["https://data.delijn.be/stops/405763", "https://data.delijn.be/stops/406053"], ["https://data.delijn.be/stops/409069", "https://data.delijn.be/stops/409071"], ["https://data.delijn.be/stops/101482", "https://data.delijn.be/stops/108211"], ["https://data.delijn.be/stops/209957", "https://data.delijn.be/stops/209958"], ["https://data.delijn.be/stops/206481", "https://data.delijn.be/stops/207482"], ["https://data.delijn.be/stops/404192", "https://data.delijn.be/stops/405914"], ["https://data.delijn.be/stops/302159", "https://data.delijn.be/stops/307804"], ["https://data.delijn.be/stops/402527", "https://data.delijn.be/stops/402536"], ["https://data.delijn.be/stops/405038", "https://data.delijn.be/stops/405065"], ["https://data.delijn.be/stops/303311", "https://data.delijn.be/stops/303328"], ["https://data.delijn.be/stops/207865", "https://data.delijn.be/stops/209419"], ["https://data.delijn.be/stops/300120", "https://data.delijn.be/stops/306808"], ["https://data.delijn.be/stops/201936", "https://data.delijn.be/stops/207592"], ["https://data.delijn.be/stops/410152", "https://data.delijn.be/stops/300933"], ["https://data.delijn.be/stops/101227", "https://data.delijn.be/stops/107807"], ["https://data.delijn.be/stops/300372", "https://data.delijn.be/stops/307721"], ["https://data.delijn.be/stops/301637", "https://data.delijn.be/stops/303935"], ["https://data.delijn.be/stops/109814", "https://data.delijn.be/stops/109817"], ["https://data.delijn.be/stops/206653", "https://data.delijn.be/stops/206714"], ["https://data.delijn.be/stops/206454", "https://data.delijn.be/stops/206455"], ["https://data.delijn.be/stops/106687", "https://data.delijn.be/stops/106690"], ["https://data.delijn.be/stops/107496", "https://data.delijn.be/stops/305793"], ["https://data.delijn.be/stops/408068", "https://data.delijn.be/stops/408082"], ["https://data.delijn.be/stops/502040", "https://data.delijn.be/stops/502591"], ["https://data.delijn.be/stops/405385", "https://data.delijn.be/stops/405390"], ["https://data.delijn.be/stops/504670", "https://data.delijn.be/stops/504719"], ["https://data.delijn.be/stops/208581", "https://data.delijn.be/stops/301424"], ["https://data.delijn.be/stops/300179", "https://data.delijn.be/stops/300183"], ["https://data.delijn.be/stops/201531", "https://data.delijn.be/stops/211091"], ["https://data.delijn.be/stops/402350", "https://data.delijn.be/stops/402464"], ["https://data.delijn.be/stops/300311", "https://data.delijn.be/stops/302163"], ["https://data.delijn.be/stops/405685", "https://data.delijn.be/stops/405687"], ["https://data.delijn.be/stops/202897", "https://data.delijn.be/stops/211126"], ["https://data.delijn.be/stops/502603", "https://data.delijn.be/stops/507302"], ["https://data.delijn.be/stops/400050", "https://data.delijn.be/stops/400169"], ["https://data.delijn.be/stops/408566", "https://data.delijn.be/stops/408567"], ["https://data.delijn.be/stops/305174", "https://data.delijn.be/stops/305356"], ["https://data.delijn.be/stops/108309", "https://data.delijn.be/stops/108312"], ["https://data.delijn.be/stops/302330", "https://data.delijn.be/stops/302331"], ["https://data.delijn.be/stops/408492", "https://data.delijn.be/stops/408992"], ["https://data.delijn.be/stops/109228", "https://data.delijn.be/stops/109229"], ["https://data.delijn.be/stops/108564", "https://data.delijn.be/stops/109091"], ["https://data.delijn.be/stops/204379", "https://data.delijn.be/stops/204380"], ["https://data.delijn.be/stops/505437", "https://data.delijn.be/stops/505726"], ["https://data.delijn.be/stops/304984", "https://data.delijn.be/stops/308015"], ["https://data.delijn.be/stops/501368", "https://data.delijn.be/stops/501369"], ["https://data.delijn.be/stops/107670", "https://data.delijn.be/stops/107675"], ["https://data.delijn.be/stops/303391", "https://data.delijn.be/stops/303392"], ["https://data.delijn.be/stops/502764", "https://data.delijn.be/stops/507025"], ["https://data.delijn.be/stops/504453", "https://data.delijn.be/stops/508681"], ["https://data.delijn.be/stops/401477", "https://data.delijn.be/stops/408469"], ["https://data.delijn.be/stops/407386", "https://data.delijn.be/stops/407598"], ["https://data.delijn.be/stops/402071", "https://data.delijn.be/stops/402074"], ["https://data.delijn.be/stops/402310", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/409252", "https://data.delijn.be/stops/409316"], ["https://data.delijn.be/stops/102016", "https://data.delijn.be/stops/104106"], ["https://data.delijn.be/stops/201580", "https://data.delijn.be/stops/210607"], ["https://data.delijn.be/stops/502491", "https://data.delijn.be/stops/505591"], ["https://data.delijn.be/stops/102060", "https://data.delijn.be/stops/104285"], ["https://data.delijn.be/stops/106624", "https://data.delijn.be/stops/106626"], ["https://data.delijn.be/stops/503217", "https://data.delijn.be/stops/504873"], ["https://data.delijn.be/stops/203971", "https://data.delijn.be/stops/204093"], ["https://data.delijn.be/stops/101273", "https://data.delijn.be/stops/204488"], ["https://data.delijn.be/stops/402348", "https://data.delijn.be/stops/402358"], ["https://data.delijn.be/stops/102624", "https://data.delijn.be/stops/108217"], ["https://data.delijn.be/stops/200449", "https://data.delijn.be/stops/202352"], ["https://data.delijn.be/stops/206932", "https://data.delijn.be/stops/207998"], ["https://data.delijn.be/stops/503013", "https://data.delijn.be/stops/508012"], ["https://data.delijn.be/stops/304241", "https://data.delijn.be/stops/304242"], ["https://data.delijn.be/stops/209820", "https://data.delijn.be/stops/218013"], ["https://data.delijn.be/stops/401793", "https://data.delijn.be/stops/402004"], ["https://data.delijn.be/stops/206986", "https://data.delijn.be/stops/206987"], ["https://data.delijn.be/stops/501395", "https://data.delijn.be/stops/501396"], ["https://data.delijn.be/stops/503002", "https://data.delijn.be/stops/508004"], ["https://data.delijn.be/stops/301155", "https://data.delijn.be/stops/307695"], ["https://data.delijn.be/stops/202600", "https://data.delijn.be/stops/202601"], ["https://data.delijn.be/stops/407705", "https://data.delijn.be/stops/409623"], ["https://data.delijn.be/stops/504748", "https://data.delijn.be/stops/509027"], ["https://data.delijn.be/stops/304384", "https://data.delijn.be/stops/304401"], ["https://data.delijn.be/stops/504716", "https://data.delijn.be/stops/509716"], ["https://data.delijn.be/stops/300963", "https://data.delijn.be/stops/300973"], ["https://data.delijn.be/stops/101747", "https://data.delijn.be/stops/106369"], ["https://data.delijn.be/stops/408816", "https://data.delijn.be/stops/408817"], ["https://data.delijn.be/stops/202459", "https://data.delijn.be/stops/203750"], ["https://data.delijn.be/stops/503628", "https://data.delijn.be/stops/508622"], ["https://data.delijn.be/stops/301566", "https://data.delijn.be/stops/301570"], ["https://data.delijn.be/stops/109204", "https://data.delijn.be/stops/109209"], ["https://data.delijn.be/stops/401177", "https://data.delijn.be/stops/406578"], ["https://data.delijn.be/stops/103767", "https://data.delijn.be/stops/107306"], ["https://data.delijn.be/stops/208496", "https://data.delijn.be/stops/209496"], ["https://data.delijn.be/stops/406608", "https://data.delijn.be/stops/406638"], ["https://data.delijn.be/stops/303540", "https://data.delijn.be/stops/303564"], ["https://data.delijn.be/stops/400354", "https://data.delijn.be/stops/406769"], ["https://data.delijn.be/stops/103721", "https://data.delijn.be/stops/108537"], ["https://data.delijn.be/stops/108502", "https://data.delijn.be/stops/108804"], ["https://data.delijn.be/stops/401401", "https://data.delijn.be/stops/410154"], ["https://data.delijn.be/stops/507099", "https://data.delijn.be/stops/507297"], ["https://data.delijn.be/stops/200189", "https://data.delijn.be/stops/200198"], ["https://data.delijn.be/stops/206942", "https://data.delijn.be/stops/207672"], ["https://data.delijn.be/stops/505173", "https://data.delijn.be/stops/505812"], ["https://data.delijn.be/stops/504023", "https://data.delijn.be/stops/504131"], ["https://data.delijn.be/stops/505053", "https://data.delijn.be/stops/507189"], ["https://data.delijn.be/stops/506132", "https://data.delijn.be/stops/506139"], ["https://data.delijn.be/stops/201593", "https://data.delijn.be/stops/201594"], ["https://data.delijn.be/stops/401830", "https://data.delijn.be/stops/409406"], ["https://data.delijn.be/stops/107933", "https://data.delijn.be/stops/204563"], ["https://data.delijn.be/stops/206605", "https://data.delijn.be/stops/206683"], ["https://data.delijn.be/stops/102525", "https://data.delijn.be/stops/405710"], ["https://data.delijn.be/stops/204145", "https://data.delijn.be/stops/207891"], ["https://data.delijn.be/stops/105111", "https://data.delijn.be/stops/105151"], ["https://data.delijn.be/stops/407310", "https://data.delijn.be/stops/407311"], ["https://data.delijn.be/stops/306394", "https://data.delijn.be/stops/306395"], ["https://data.delijn.be/stops/102940", "https://data.delijn.be/stops/104980"], ["https://data.delijn.be/stops/400774", "https://data.delijn.be/stops/400775"], ["https://data.delijn.be/stops/300851", "https://data.delijn.be/stops/306399"], ["https://data.delijn.be/stops/107560", "https://data.delijn.be/stops/109080"], ["https://data.delijn.be/stops/408958", "https://data.delijn.be/stops/409814"], ["https://data.delijn.be/stops/501403", "https://data.delijn.be/stops/506227"], ["https://data.delijn.be/stops/308267", "https://data.delijn.be/stops/308292"], ["https://data.delijn.be/stops/301009", "https://data.delijn.be/stops/301013"], ["https://data.delijn.be/stops/509024", "https://data.delijn.be/stops/509027"], ["https://data.delijn.be/stops/204499", "https://data.delijn.be/stops/205509"], ["https://data.delijn.be/stops/408142", "https://data.delijn.be/stops/408143"], ["https://data.delijn.be/stops/502320", "https://data.delijn.be/stops/502456"], ["https://data.delijn.be/stops/101607", "https://data.delijn.be/stops/105758"], ["https://data.delijn.be/stops/101048", "https://data.delijn.be/stops/101049"], ["https://data.delijn.be/stops/406230", "https://data.delijn.be/stops/406237"], ["https://data.delijn.be/stops/202294", "https://data.delijn.be/stops/203292"], ["https://data.delijn.be/stops/401798", "https://data.delijn.be/stops/406824"], ["https://data.delijn.be/stops/102007", "https://data.delijn.be/stops/104670"], ["https://data.delijn.be/stops/504600", "https://data.delijn.be/stops/509600"], ["https://data.delijn.be/stops/201109", "https://data.delijn.be/stops/202645"], ["https://data.delijn.be/stops/501223", "https://data.delijn.be/stops/506217"], ["https://data.delijn.be/stops/504656", "https://data.delijn.be/stops/505175"], ["https://data.delijn.be/stops/204518", "https://data.delijn.be/stops/205518"], ["https://data.delijn.be/stops/302005", "https://data.delijn.be/stops/303642"], ["https://data.delijn.be/stops/300481", "https://data.delijn.be/stops/302867"], ["https://data.delijn.be/stops/205992", "https://data.delijn.be/stops/208353"], ["https://data.delijn.be/stops/501282", "https://data.delijn.be/stops/501302"], ["https://data.delijn.be/stops/406182", "https://data.delijn.be/stops/410246"], ["https://data.delijn.be/stops/404870", "https://data.delijn.be/stops/404880"], ["https://data.delijn.be/stops/105987", "https://data.delijn.be/stops/107957"], ["https://data.delijn.be/stops/502511", "https://data.delijn.be/stops/505662"], ["https://data.delijn.be/stops/401090", "https://data.delijn.be/stops/401098"], ["https://data.delijn.be/stops/204293", "https://data.delijn.be/stops/205537"], ["https://data.delijn.be/stops/504233", "https://data.delijn.be/stops/509239"], ["https://data.delijn.be/stops/301443", "https://data.delijn.be/stops/303181"], ["https://data.delijn.be/stops/407740", "https://data.delijn.be/stops/407766"], ["https://data.delijn.be/stops/204169", "https://data.delijn.be/stops/205579"], ["https://data.delijn.be/stops/503653", "https://data.delijn.be/stops/508886"], ["https://data.delijn.be/stops/504526", "https://data.delijn.be/stops/509526"], ["https://data.delijn.be/stops/407272", "https://data.delijn.be/stops/407302"], ["https://data.delijn.be/stops/107943", "https://data.delijn.be/stops/107944"], ["https://data.delijn.be/stops/302896", "https://data.delijn.be/stops/303106"], ["https://data.delijn.be/stops/302335", "https://data.delijn.be/stops/302419"], ["https://data.delijn.be/stops/304185", "https://data.delijn.be/stops/307953"], ["https://data.delijn.be/stops/104553", "https://data.delijn.be/stops/104558"], ["https://data.delijn.be/stops/504877", "https://data.delijn.be/stops/509701"], ["https://data.delijn.be/stops/500558", "https://data.delijn.be/stops/501038"], ["https://data.delijn.be/stops/507728", "https://data.delijn.be/stops/507729"], ["https://data.delijn.be/stops/206012", "https://data.delijn.be/stops/206013"], ["https://data.delijn.be/stops/204663", "https://data.delijn.be/stops/205688"], ["https://data.delijn.be/stops/401517", "https://data.delijn.be/stops/401596"], ["https://data.delijn.be/stops/204021", "https://data.delijn.be/stops/205022"], ["https://data.delijn.be/stops/107049", "https://data.delijn.be/stops/107051"], ["https://data.delijn.be/stops/503010", "https://data.delijn.be/stops/508015"], ["https://data.delijn.be/stops/306097", "https://data.delijn.be/stops/308718"], ["https://data.delijn.be/stops/400150", "https://data.delijn.be/stops/400151"], ["https://data.delijn.be/stops/407591", "https://data.delijn.be/stops/408550"], ["https://data.delijn.be/stops/503600", "https://data.delijn.be/stops/508149"], ["https://data.delijn.be/stops/407751", "https://data.delijn.be/stops/409744"], ["https://data.delijn.be/stops/400360", "https://data.delijn.be/stops/406769"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/504455"], ["https://data.delijn.be/stops/503603", "https://data.delijn.be/stops/503605"], ["https://data.delijn.be/stops/107313", "https://data.delijn.be/stops/107317"], ["https://data.delijn.be/stops/502231", "https://data.delijn.be/stops/507231"], ["https://data.delijn.be/stops/105061", "https://data.delijn.be/stops/105804"], ["https://data.delijn.be/stops/400701", "https://data.delijn.be/stops/400783"], ["https://data.delijn.be/stops/300734", "https://data.delijn.be/stops/302530"], ["https://data.delijn.be/stops/205669", "https://data.delijn.be/stops/214009"], ["https://data.delijn.be/stops/301937", "https://data.delijn.be/stops/307465"], ["https://data.delijn.be/stops/108158", "https://data.delijn.be/stops/108162"], ["https://data.delijn.be/stops/402984", "https://data.delijn.be/stops/405586"], ["https://data.delijn.be/stops/204584", "https://data.delijn.be/stops/204592"], ["https://data.delijn.be/stops/102658", "https://data.delijn.be/stops/105596"], ["https://data.delijn.be/stops/303030", "https://data.delijn.be/stops/307143"], ["https://data.delijn.be/stops/506412", "https://data.delijn.be/stops/506618"], ["https://data.delijn.be/stops/404005", "https://data.delijn.be/stops/410257"], ["https://data.delijn.be/stops/408677", "https://data.delijn.be/stops/408788"], ["https://data.delijn.be/stops/202002", "https://data.delijn.be/stops/203002"], ["https://data.delijn.be/stops/204740", "https://data.delijn.be/stops/204744"], ["https://data.delijn.be/stops/509544", "https://data.delijn.be/stops/509551"], ["https://data.delijn.be/stops/103118", "https://data.delijn.be/stops/104100"], ["https://data.delijn.be/stops/107834", "https://data.delijn.be/stops/107838"], ["https://data.delijn.be/stops/200102", "https://data.delijn.be/stops/202005"], ["https://data.delijn.be/stops/105792", "https://data.delijn.be/stops/105942"], ["https://data.delijn.be/stops/407247", "https://data.delijn.be/stops/407450"], ["https://data.delijn.be/stops/107221", "https://data.delijn.be/stops/107222"], ["https://data.delijn.be/stops/503120", "https://data.delijn.be/stops/508119"], ["https://data.delijn.be/stops/105696", "https://data.delijn.be/stops/106067"], ["https://data.delijn.be/stops/102249", "https://data.delijn.be/stops/105934"], ["https://data.delijn.be/stops/107584", "https://data.delijn.be/stops/107587"], ["https://data.delijn.be/stops/406350", "https://data.delijn.be/stops/408864"], ["https://data.delijn.be/stops/207622", "https://data.delijn.be/stops/207623"], ["https://data.delijn.be/stops/300692", "https://data.delijn.be/stops/306366"], ["https://data.delijn.be/stops/400834", "https://data.delijn.be/stops/400867"], ["https://data.delijn.be/stops/400310", "https://data.delijn.be/stops/400311"], ["https://data.delijn.be/stops/304528", "https://data.delijn.be/stops/304678"], ["https://data.delijn.be/stops/409623", "https://data.delijn.be/stops/409632"], ["https://data.delijn.be/stops/406101", "https://data.delijn.be/stops/406115"], ["https://data.delijn.be/stops/208582", "https://data.delijn.be/stops/209582"], ["https://data.delijn.be/stops/503584", "https://data.delijn.be/stops/509453"], ["https://data.delijn.be/stops/504977", "https://data.delijn.be/stops/505915"], ["https://data.delijn.be/stops/304662", "https://data.delijn.be/stops/304664"], ["https://data.delijn.be/stops/101871", "https://data.delijn.be/stops/105842"], ["https://data.delijn.be/stops/305116", "https://data.delijn.be/stops/305129"], ["https://data.delijn.be/stops/400875", "https://data.delijn.be/stops/404960"], ["https://data.delijn.be/stops/308455", "https://data.delijn.be/stops/308463"], ["https://data.delijn.be/stops/501442", "https://data.delijn.be/stops/590411"], ["https://data.delijn.be/stops/201867", "https://data.delijn.be/stops/210039"], ["https://data.delijn.be/stops/508375", "https://data.delijn.be/stops/508649"], ["https://data.delijn.be/stops/206967", "https://data.delijn.be/stops/207829"], ["https://data.delijn.be/stops/101916", "https://data.delijn.be/stops/101917"], ["https://data.delijn.be/stops/501600", "https://data.delijn.be/stops/509499"], ["https://data.delijn.be/stops/505424", "https://data.delijn.be/stops/509083"], ["https://data.delijn.be/stops/300739", "https://data.delijn.be/stops/303223"], ["https://data.delijn.be/stops/505692", "https://data.delijn.be/stops/505772"], ["https://data.delijn.be/stops/300138", "https://data.delijn.be/stops/306822"], ["https://data.delijn.be/stops/208358", "https://data.delijn.be/stops/209356"], ["https://data.delijn.be/stops/503068", "https://data.delijn.be/stops/508073"], ["https://data.delijn.be/stops/106943", "https://data.delijn.be/stops/108699"], ["https://data.delijn.be/stops/502499", "https://data.delijn.be/stops/505332"], ["https://data.delijn.be/stops/202877", "https://data.delijn.be/stops/209535"], ["https://data.delijn.be/stops/504105", "https://data.delijn.be/stops/505299"], ["https://data.delijn.be/stops/302636", "https://data.delijn.be/stops/302637"], ["https://data.delijn.be/stops/501111", "https://data.delijn.be/stops/506111"], ["https://data.delijn.be/stops/404970", "https://data.delijn.be/stops/404972"], ["https://data.delijn.be/stops/103487", "https://data.delijn.be/stops/109157"], ["https://data.delijn.be/stops/107267", "https://data.delijn.be/stops/109734"], ["https://data.delijn.be/stops/407054", "https://data.delijn.be/stops/407057"], ["https://data.delijn.be/stops/106884", "https://data.delijn.be/stops/107285"], ["https://data.delijn.be/stops/202530", "https://data.delijn.be/stops/203531"], ["https://data.delijn.be/stops/404089", "https://data.delijn.be/stops/410256"], ["https://data.delijn.be/stops/403212", "https://data.delijn.be/stops/403477"], ["https://data.delijn.be/stops/101777", "https://data.delijn.be/stops/107586"], ["https://data.delijn.be/stops/207560", "https://data.delijn.be/stops/208953"], ["https://data.delijn.be/stops/107653", "https://data.delijn.be/stops/406770"], ["https://data.delijn.be/stops/202158", "https://data.delijn.be/stops/203159"], ["https://data.delijn.be/stops/202472", "https://data.delijn.be/stops/203472"], ["https://data.delijn.be/stops/109976", "https://data.delijn.be/stops/109977"], ["https://data.delijn.be/stops/202145", "https://data.delijn.be/stops/202188"], ["https://data.delijn.be/stops/408865", "https://data.delijn.be/stops/408883"], ["https://data.delijn.be/stops/302999", "https://data.delijn.be/stops/306300"], ["https://data.delijn.be/stops/407448", "https://data.delijn.be/stops/407466"], ["https://data.delijn.be/stops/210014", "https://data.delijn.be/stops/211014"], ["https://data.delijn.be/stops/208379", "https://data.delijn.be/stops/208403"], ["https://data.delijn.be/stops/404808", "https://data.delijn.be/stops/404833"], ["https://data.delijn.be/stops/404391", "https://data.delijn.be/stops/408669"], ["https://data.delijn.be/stops/501443", "https://data.delijn.be/stops/506440"], ["https://data.delijn.be/stops/502590", "https://data.delijn.be/stops/507400"], ["https://data.delijn.be/stops/504162", "https://data.delijn.be/stops/509154"], ["https://data.delijn.be/stops/504634", "https://data.delijn.be/stops/509632"], ["https://data.delijn.be/stops/401763", "https://data.delijn.be/stops/401764"], ["https://data.delijn.be/stops/300541", "https://data.delijn.be/stops/308587"], ["https://data.delijn.be/stops/206742", "https://data.delijn.be/stops/206984"], ["https://data.delijn.be/stops/403269", "https://data.delijn.be/stops/403270"], ["https://data.delijn.be/stops/104039", "https://data.delijn.be/stops/108514"], ["https://data.delijn.be/stops/504971", "https://data.delijn.be/stops/508765"], ["https://data.delijn.be/stops/307509", "https://data.delijn.be/stops/307510"], ["https://data.delijn.be/stops/504056", "https://data.delijn.be/stops/509191"], ["https://data.delijn.be/stops/104345", "https://data.delijn.be/stops/105995"], ["https://data.delijn.be/stops/302000", "https://data.delijn.be/stops/304153"], ["https://data.delijn.be/stops/503613", "https://data.delijn.be/stops/508613"], ["https://data.delijn.be/stops/504068", "https://data.delijn.be/stops/505855"], ["https://data.delijn.be/stops/502645", "https://data.delijn.be/stops/502721"], ["https://data.delijn.be/stops/205165", "https://data.delijn.be/stops/205590"], ["https://data.delijn.be/stops/106085", "https://data.delijn.be/stops/106090"], ["https://data.delijn.be/stops/300412", "https://data.delijn.be/stops/307262"], ["https://data.delijn.be/stops/202231", "https://data.delijn.be/stops/203231"], ["https://data.delijn.be/stops/201929", "https://data.delijn.be/stops/202343"], ["https://data.delijn.be/stops/101721", "https://data.delijn.be/stops/108972"], ["https://data.delijn.be/stops/403268", "https://data.delijn.be/stops/404970"], ["https://data.delijn.be/stops/302141", "https://data.delijn.be/stops/304134"], ["https://data.delijn.be/stops/303815", "https://data.delijn.be/stops/303821"], ["https://data.delijn.be/stops/502545", "https://data.delijn.be/stops/505090"], ["https://data.delijn.be/stops/504021", "https://data.delijn.be/stops/508474"], ["https://data.delijn.be/stops/206620", "https://data.delijn.be/stops/206621"], ["https://data.delijn.be/stops/303002", "https://data.delijn.be/stops/306281"], ["https://data.delijn.be/stops/403502", "https://data.delijn.be/stops/410293"], ["https://data.delijn.be/stops/200840", "https://data.delijn.be/stops/202797"], ["https://data.delijn.be/stops/504269", "https://data.delijn.be/stops/505940"], ["https://data.delijn.be/stops/406370", "https://data.delijn.be/stops/410394"], ["https://data.delijn.be/stops/401897", "https://data.delijn.be/stops/401930"], ["https://data.delijn.be/stops/302025", "https://data.delijn.be/stops/302047"], ["https://data.delijn.be/stops/302182", "https://data.delijn.be/stops/302183"], ["https://data.delijn.be/stops/304928", "https://data.delijn.be/stops/306108"], ["https://data.delijn.be/stops/308176", "https://data.delijn.be/stops/308177"], ["https://data.delijn.be/stops/206418", "https://data.delijn.be/stops/207418"], ["https://data.delijn.be/stops/103255", "https://data.delijn.be/stops/103260"], ["https://data.delijn.be/stops/305686", "https://data.delijn.be/stops/305688"], ["https://data.delijn.be/stops/505259", "https://data.delijn.be/stops/508030"], ["https://data.delijn.be/stops/304016", "https://data.delijn.be/stops/304017"], ["https://data.delijn.be/stops/505648", "https://data.delijn.be/stops/507468"], ["https://data.delijn.be/stops/107897", "https://data.delijn.be/stops/107902"], ["https://data.delijn.be/stops/201231", "https://data.delijn.be/stops/201468"], ["https://data.delijn.be/stops/206222", "https://data.delijn.be/stops/207222"], ["https://data.delijn.be/stops/304456", "https://data.delijn.be/stops/304457"], ["https://data.delijn.be/stops/301107", "https://data.delijn.be/stops/301115"], ["https://data.delijn.be/stops/101147", "https://data.delijn.be/stops/106859"], ["https://data.delijn.be/stops/201902", "https://data.delijn.be/stops/202474"], ["https://data.delijn.be/stops/403042", "https://data.delijn.be/stops/403043"], ["https://data.delijn.be/stops/301688", "https://data.delijn.be/stops/301690"], ["https://data.delijn.be/stops/206104", "https://data.delijn.be/stops/306721"], ["https://data.delijn.be/stops/403757", "https://data.delijn.be/stops/403759"], ["https://data.delijn.be/stops/402583", "https://data.delijn.be/stops/402655"], ["https://data.delijn.be/stops/300645", "https://data.delijn.be/stops/300646"], ["https://data.delijn.be/stops/502214", "https://data.delijn.be/stops/507206"], ["https://data.delijn.be/stops/105131", "https://data.delijn.be/stops/105133"], ["https://data.delijn.be/stops/103117", "https://data.delijn.be/stops/107371"], ["https://data.delijn.be/stops/503525", "https://data.delijn.be/stops/503527"], ["https://data.delijn.be/stops/107178", "https://data.delijn.be/stops/107179"], ["https://data.delijn.be/stops/206132", "https://data.delijn.be/stops/207135"], ["https://data.delijn.be/stops/502554", "https://data.delijn.be/stops/505018"], ["https://data.delijn.be/stops/401074", "https://data.delijn.be/stops/401075"], ["https://data.delijn.be/stops/105684", "https://data.delijn.be/stops/105688"], ["https://data.delijn.be/stops/103492", "https://data.delijn.be/stops/104352"], ["https://data.delijn.be/stops/206712", "https://data.delijn.be/stops/206735"], ["https://data.delijn.be/stops/209614", "https://data.delijn.be/stops/209615"], ["https://data.delijn.be/stops/106504", "https://data.delijn.be/stops/107117"], ["https://data.delijn.be/stops/404746", "https://data.delijn.be/stops/404747"], ["https://data.delijn.be/stops/102779", "https://data.delijn.be/stops/102952"], ["https://data.delijn.be/stops/404704", "https://data.delijn.be/stops/404730"], ["https://data.delijn.be/stops/406252", "https://data.delijn.be/stops/406258"], ["https://data.delijn.be/stops/503875", "https://data.delijn.be/stops/509754"], ["https://data.delijn.be/stops/406088", "https://data.delijn.be/stops/406090"], ["https://data.delijn.be/stops/302323", "https://data.delijn.be/stops/302333"], ["https://data.delijn.be/stops/204088", "https://data.delijn.be/stops/205088"], ["https://data.delijn.be/stops/504498", "https://data.delijn.be/stops/504505"], ["https://data.delijn.be/stops/407739", "https://data.delijn.be/stops/407741"], ["https://data.delijn.be/stops/302269", "https://data.delijn.be/stops/304315"], ["https://data.delijn.be/stops/206254", "https://data.delijn.be/stops/207993"], ["https://data.delijn.be/stops/301729", "https://data.delijn.be/stops/301781"], ["https://data.delijn.be/stops/301984", "https://data.delijn.be/stops/303092"], ["https://data.delijn.be/stops/509001", "https://data.delijn.be/stops/509002"], ["https://data.delijn.be/stops/403976", "https://data.delijn.be/stops/403977"], ["https://data.delijn.be/stops/201951", "https://data.delijn.be/stops/202466"], ["https://data.delijn.be/stops/206749", "https://data.delijn.be/stops/206899"], ["https://data.delijn.be/stops/202165", "https://data.delijn.be/stops/205073"], ["https://data.delijn.be/stops/406552", "https://data.delijn.be/stops/406687"], ["https://data.delijn.be/stops/501592", "https://data.delijn.be/stops/504509"], ["https://data.delijn.be/stops/504940", "https://data.delijn.be/stops/508909"], ["https://data.delijn.be/stops/300275", "https://data.delijn.be/stops/306286"], ["https://data.delijn.be/stops/303107", "https://data.delijn.be/stops/303113"], ["https://data.delijn.be/stops/301316", "https://data.delijn.be/stops/305918"], ["https://data.delijn.be/stops/403295", "https://data.delijn.be/stops/403345"], ["https://data.delijn.be/stops/200905", "https://data.delijn.be/stops/203269"], ["https://data.delijn.be/stops/104137", "https://data.delijn.be/stops/108416"], ["https://data.delijn.be/stops/207461", "https://data.delijn.be/stops/207491"], ["https://data.delijn.be/stops/302900", "https://data.delijn.be/stops/302911"], ["https://data.delijn.be/stops/501484", "https://data.delijn.be/stops/501555"], ["https://data.delijn.be/stops/300429", "https://data.delijn.be/stops/301262"], ["https://data.delijn.be/stops/402835", "https://data.delijn.be/stops/404625"], ["https://data.delijn.be/stops/207013", "https://data.delijn.be/stops/207385"], ["https://data.delijn.be/stops/409143", "https://data.delijn.be/stops/409156"], ["https://data.delijn.be/stops/105163", "https://data.delijn.be/stops/107427"], ["https://data.delijn.be/stops/103639", "https://data.delijn.be/stops/107164"], ["https://data.delijn.be/stops/403564", "https://data.delijn.be/stops/410120"], ["https://data.delijn.be/stops/504460", "https://data.delijn.be/stops/509460"], ["https://data.delijn.be/stops/405861", "https://data.delijn.be/stops/409739"], ["https://data.delijn.be/stops/505123", "https://data.delijn.be/stops/508664"], ["https://data.delijn.be/stops/105511", "https://data.delijn.be/stops/105513"], ["https://data.delijn.be/stops/206638", "https://data.delijn.be/stops/207638"], ["https://data.delijn.be/stops/202457", "https://data.delijn.be/stops/211018"], ["https://data.delijn.be/stops/508161", "https://data.delijn.be/stops/508606"], ["https://data.delijn.be/stops/504772", "https://data.delijn.be/stops/509237"], ["https://data.delijn.be/stops/303758", "https://data.delijn.be/stops/303782"], ["https://data.delijn.be/stops/106703", "https://data.delijn.be/stops/106704"], ["https://data.delijn.be/stops/305743", "https://data.delijn.be/stops/305750"], ["https://data.delijn.be/stops/305241", "https://data.delijn.be/stops/305255"], ["https://data.delijn.be/stops/208635", "https://data.delijn.be/stops/209004"], ["https://data.delijn.be/stops/105798", "https://data.delijn.be/stops/105812"], ["https://data.delijn.be/stops/206696", "https://data.delijn.be/stops/207696"], ["https://data.delijn.be/stops/401830", "https://data.delijn.be/stops/406062"], ["https://data.delijn.be/stops/103260", "https://data.delijn.be/stops/107040"], ["https://data.delijn.be/stops/108959", "https://data.delijn.be/stops/108962"], ["https://data.delijn.be/stops/502926", "https://data.delijn.be/stops/505671"], ["https://data.delijn.be/stops/300993", "https://data.delijn.be/stops/300994"], ["https://data.delijn.be/stops/204136", "https://data.delijn.be/stops/209912"], ["https://data.delijn.be/stops/109667", "https://data.delijn.be/stops/401936"], ["https://data.delijn.be/stops/408838", "https://data.delijn.be/stops/408841"], ["https://data.delijn.be/stops/406089", "https://data.delijn.be/stops/407114"], ["https://data.delijn.be/stops/406502", "https://data.delijn.be/stops/406508"], ["https://data.delijn.be/stops/403163", "https://data.delijn.be/stops/403179"], ["https://data.delijn.be/stops/207627", "https://data.delijn.be/stops/209573"], ["https://data.delijn.be/stops/301387", "https://data.delijn.be/stops/304667"], ["https://data.delijn.be/stops/104687", "https://data.delijn.be/stops/107363"], ["https://data.delijn.be/stops/505842", "https://data.delijn.be/stops/509234"], ["https://data.delijn.be/stops/109141", "https://data.delijn.be/stops/109143"], ["https://data.delijn.be/stops/403356", "https://data.delijn.be/stops/403867"], ["https://data.delijn.be/stops/301098", "https://data.delijn.be/stops/307200"], ["https://data.delijn.be/stops/206269", "https://data.delijn.be/stops/207880"], ["https://data.delijn.be/stops/400776", "https://data.delijn.be/stops/406676"], ["https://data.delijn.be/stops/202815", "https://data.delijn.be/stops/209746"], ["https://data.delijn.be/stops/209114", "https://data.delijn.be/stops/219007"], ["https://data.delijn.be/stops/504601", "https://data.delijn.be/stops/509598"], ["https://data.delijn.be/stops/407185", "https://data.delijn.be/stops/407186"], ["https://data.delijn.be/stops/503444", "https://data.delijn.be/stops/508534"], ["https://data.delijn.be/stops/505646", "https://data.delijn.be/stops/507759"], ["https://data.delijn.be/stops/302831", "https://data.delijn.be/stops/308825"], ["https://data.delijn.be/stops/508276", "https://data.delijn.be/stops/508281"], ["https://data.delijn.be/stops/502402", "https://data.delijn.be/stops/507387"], ["https://data.delijn.be/stops/307714", "https://data.delijn.be/stops/307717"], ["https://data.delijn.be/stops/502378", "https://data.delijn.be/stops/502631"], ["https://data.delijn.be/stops/108560", "https://data.delijn.be/stops/108565"], ["https://data.delijn.be/stops/503846", "https://data.delijn.be/stops/508849"], ["https://data.delijn.be/stops/101355", "https://data.delijn.be/stops/104450"], ["https://data.delijn.be/stops/404689", "https://data.delijn.be/stops/405820"], ["https://data.delijn.be/stops/200711", "https://data.delijn.be/stops/200713"], ["https://data.delijn.be/stops/303369", "https://data.delijn.be/stops/303371"], ["https://data.delijn.be/stops/102824", "https://data.delijn.be/stops/106233"], ["https://data.delijn.be/stops/300939", "https://data.delijn.be/stops/300940"], ["https://data.delijn.be/stops/503308", "https://data.delijn.be/stops/508308"], ["https://data.delijn.be/stops/502072", "https://data.delijn.be/stops/507066"], ["https://data.delijn.be/stops/505594", "https://data.delijn.be/stops/507510"], ["https://data.delijn.be/stops/106927", "https://data.delijn.be/stops/108697"], ["https://data.delijn.be/stops/208568", "https://data.delijn.be/stops/209090"], ["https://data.delijn.be/stops/201735", "https://data.delijn.be/stops/202751"], ["https://data.delijn.be/stops/109549", "https://data.delijn.be/stops/109556"], ["https://data.delijn.be/stops/501534", "https://data.delijn.be/stops/506459"], ["https://data.delijn.be/stops/206440", "https://data.delijn.be/stops/206441"], ["https://data.delijn.be/stops/204976", "https://data.delijn.be/stops/205976"], ["https://data.delijn.be/stops/208000", "https://data.delijn.be/stops/208020"], ["https://data.delijn.be/stops/503435", "https://data.delijn.be/stops/509872"], ["https://data.delijn.be/stops/306382", "https://data.delijn.be/stops/306383"], ["https://data.delijn.be/stops/408023", "https://data.delijn.be/stops/408431"], ["https://data.delijn.be/stops/505914", "https://data.delijn.be/stops/508643"], ["https://data.delijn.be/stops/210025", "https://data.delijn.be/stops/211035"], ["https://data.delijn.be/stops/501327", "https://data.delijn.be/stops/506327"], ["https://data.delijn.be/stops/502018", "https://data.delijn.be/stops/505933"], ["https://data.delijn.be/stops/208186", "https://data.delijn.be/stops/209357"], ["https://data.delijn.be/stops/304342", "https://data.delijn.be/stops/304351"], ["https://data.delijn.be/stops/306611", "https://data.delijn.be/stops/306613"], ["https://data.delijn.be/stops/403414", "https://data.delijn.be/stops/403871"], ["https://data.delijn.be/stops/507054", "https://data.delijn.be/stops/507057"], ["https://data.delijn.be/stops/101380", "https://data.delijn.be/stops/104080"], ["https://data.delijn.be/stops/303192", "https://data.delijn.be/stops/303209"], ["https://data.delijn.be/stops/503555", "https://data.delijn.be/stops/503577"], ["https://data.delijn.be/stops/200769", "https://data.delijn.be/stops/209250"], ["https://data.delijn.be/stops/202127", "https://data.delijn.be/stops/203604"], ["https://data.delijn.be/stops/101002", "https://data.delijn.be/stops/101003"], ["https://data.delijn.be/stops/300387", "https://data.delijn.be/stops/307490"], ["https://data.delijn.be/stops/401484", "https://data.delijn.be/stops/401485"], ["https://data.delijn.be/stops/304814", "https://data.delijn.be/stops/307881"], ["https://data.delijn.be/stops/407383", "https://data.delijn.be/stops/407566"], ["https://data.delijn.be/stops/504211", "https://data.delijn.be/stops/509211"], ["https://data.delijn.be/stops/304251", "https://data.delijn.be/stops/304288"], ["https://data.delijn.be/stops/400571", "https://data.delijn.be/stops/404051"], ["https://data.delijn.be/stops/503563", "https://data.delijn.be/stops/503612"], ["https://data.delijn.be/stops/408847", "https://data.delijn.be/stops/408848"], ["https://data.delijn.be/stops/303004", "https://data.delijn.be/stops/303005"], ["https://data.delijn.be/stops/405077", "https://data.delijn.be/stops/405087"], ["https://data.delijn.be/stops/104756", "https://data.delijn.be/stops/108893"], ["https://data.delijn.be/stops/200820", "https://data.delijn.be/stops/200890"], ["https://data.delijn.be/stops/300829", "https://data.delijn.be/stops/300880"], ["https://data.delijn.be/stops/201932", "https://data.delijn.be/stops/209852"], ["https://data.delijn.be/stops/203125", "https://data.delijn.be/stops/210050"], ["https://data.delijn.be/stops/204675", "https://data.delijn.be/stops/205312"], ["https://data.delijn.be/stops/307638", "https://data.delijn.be/stops/307685"], ["https://data.delijn.be/stops/207933", "https://data.delijn.be/stops/211003"], ["https://data.delijn.be/stops/505200", "https://data.delijn.be/stops/505425"], ["https://data.delijn.be/stops/203475", "https://data.delijn.be/stops/203476"], ["https://data.delijn.be/stops/502110", "https://data.delijn.be/stops/507110"], ["https://data.delijn.be/stops/408561", "https://data.delijn.be/stops/408792"], ["https://data.delijn.be/stops/504574", "https://data.delijn.be/stops/509577"], ["https://data.delijn.be/stops/407100", "https://data.delijn.be/stops/407928"], ["https://data.delijn.be/stops/108103", "https://data.delijn.be/stops/108104"], ["https://data.delijn.be/stops/105203", "https://data.delijn.be/stops/108358"], ["https://data.delijn.be/stops/103210", "https://data.delijn.be/stops/106305"], ["https://data.delijn.be/stops/109358", "https://data.delijn.be/stops/109867"], ["https://data.delijn.be/stops/208020", "https://data.delijn.be/stops/208022"], ["https://data.delijn.be/stops/107080", "https://data.delijn.be/stops/107082"], ["https://data.delijn.be/stops/506118", "https://data.delijn.be/stops/506123"], ["https://data.delijn.be/stops/105780", "https://data.delijn.be/stops/105785"], ["https://data.delijn.be/stops/204234", "https://data.delijn.be/stops/204238"], ["https://data.delijn.be/stops/400443", "https://data.delijn.be/stops/404513"], ["https://data.delijn.be/stops/301369", "https://data.delijn.be/stops/301370"], ["https://data.delijn.be/stops/406317", "https://data.delijn.be/stops/406320"], ["https://data.delijn.be/stops/109458", "https://data.delijn.be/stops/109791"], ["https://data.delijn.be/stops/505959", "https://data.delijn.be/stops/507274"], ["https://data.delijn.be/stops/400070", "https://data.delijn.be/stops/400161"], ["https://data.delijn.be/stops/503126", "https://data.delijn.be/stops/508135"], ["https://data.delijn.be/stops/406603", "https://data.delijn.be/stops/406604"], ["https://data.delijn.be/stops/209535", "https://data.delijn.be/stops/209536"], ["https://data.delijn.be/stops/103721", "https://data.delijn.be/stops/108616"], ["https://data.delijn.be/stops/208533", "https://data.delijn.be/stops/209533"], ["https://data.delijn.be/stops/201444", "https://data.delijn.be/stops/202133"], ["https://data.delijn.be/stops/301411", "https://data.delijn.be/stops/301412"], ["https://data.delijn.be/stops/307148", "https://data.delijn.be/stops/307149"], ["https://data.delijn.be/stops/504195", "https://data.delijn.be/stops/509161"], ["https://data.delijn.be/stops/407927", "https://data.delijn.be/stops/407960"], ["https://data.delijn.be/stops/401268", "https://data.delijn.be/stops/402821"], ["https://data.delijn.be/stops/101064", "https://data.delijn.be/stops/106745"], ["https://data.delijn.be/stops/304950", "https://data.delijn.be/stops/308022"], ["https://data.delijn.be/stops/504552", "https://data.delijn.be/stops/505216"], ["https://data.delijn.be/stops/104078", "https://data.delijn.be/stops/106072"], ["https://data.delijn.be/stops/405222", "https://data.delijn.be/stops/405223"], ["https://data.delijn.be/stops/302208", "https://data.delijn.be/stops/308105"], ["https://data.delijn.be/stops/504558", "https://data.delijn.be/stops/509558"], ["https://data.delijn.be/stops/201656", "https://data.delijn.be/stops/202143"], ["https://data.delijn.be/stops/403089", "https://data.delijn.be/stops/403289"], ["https://data.delijn.be/stops/404738", "https://data.delijn.be/stops/404746"], ["https://data.delijn.be/stops/104332", "https://data.delijn.be/stops/108127"], ["https://data.delijn.be/stops/505086", "https://data.delijn.be/stops/506224"], ["https://data.delijn.be/stops/104341", "https://data.delijn.be/stops/104342"], ["https://data.delijn.be/stops/407502", "https://data.delijn.be/stops/407565"], ["https://data.delijn.be/stops/107562", "https://data.delijn.be/stops/107566"], ["https://data.delijn.be/stops/103144", "https://data.delijn.be/stops/109441"], ["https://data.delijn.be/stops/209302", "https://data.delijn.be/stops/209303"], ["https://data.delijn.be/stops/404160", "https://data.delijn.be/stops/404162"], ["https://data.delijn.be/stops/401602", "https://data.delijn.be/stops/406874"], ["https://data.delijn.be/stops/308772", "https://data.delijn.be/stops/308773"], ["https://data.delijn.be/stops/305559", "https://data.delijn.be/stops/307989"], ["https://data.delijn.be/stops/208443", "https://data.delijn.be/stops/209709"], ["https://data.delijn.be/stops/503471", "https://data.delijn.be/stops/508454"], ["https://data.delijn.be/stops/404666", "https://data.delijn.be/stops/410133"], ["https://data.delijn.be/stops/300512", "https://data.delijn.be/stops/300529"], ["https://data.delijn.be/stops/400515", "https://data.delijn.be/stops/410109"], ["https://data.delijn.be/stops/302392", "https://data.delijn.be/stops/308555"], ["https://data.delijn.be/stops/503963", "https://data.delijn.be/stops/503964"], ["https://data.delijn.be/stops/400622", "https://data.delijn.be/stops/400623"], ["https://data.delijn.be/stops/502140", "https://data.delijn.be/stops/507140"], ["https://data.delijn.be/stops/204333", "https://data.delijn.be/stops/204513"], ["https://data.delijn.be/stops/200090", "https://data.delijn.be/stops/200091"], ["https://data.delijn.be/stops/304464", "https://data.delijn.be/stops/307584"], ["https://data.delijn.be/stops/408088", "https://data.delijn.be/stops/408124"], ["https://data.delijn.be/stops/207410", "https://data.delijn.be/stops/207414"], ["https://data.delijn.be/stops/103305", "https://data.delijn.be/stops/105808"], ["https://data.delijn.be/stops/104938", "https://data.delijn.be/stops/107851"], ["https://data.delijn.be/stops/502619", "https://data.delijn.be/stops/507055"], ["https://data.delijn.be/stops/504834", "https://data.delijn.be/stops/508900"], ["https://data.delijn.be/stops/400069", "https://data.delijn.be/stops/410278"], ["https://data.delijn.be/stops/505985", "https://data.delijn.be/stops/509145"], ["https://data.delijn.be/stops/104368", "https://data.delijn.be/stops/204604"], ["https://data.delijn.be/stops/503481", "https://data.delijn.be/stops/508481"], ["https://data.delijn.be/stops/210850", "https://data.delijn.be/stops/211025"], ["https://data.delijn.be/stops/400518", "https://data.delijn.be/stops/410109"], ["https://data.delijn.be/stops/203687", "https://data.delijn.be/stops/203688"], ["https://data.delijn.be/stops/410209", "https://data.delijn.be/stops/410210"], ["https://data.delijn.be/stops/400102", "https://data.delijn.be/stops/409074"], ["https://data.delijn.be/stops/401135", "https://data.delijn.be/stops/406719"], ["https://data.delijn.be/stops/304005", "https://data.delijn.be/stops/304048"], ["https://data.delijn.be/stops/502456", "https://data.delijn.be/stops/507335"], ["https://data.delijn.be/stops/503527", "https://data.delijn.be/stops/508074"], ["https://data.delijn.be/stops/204089", "https://data.delijn.be/stops/204090"], ["https://data.delijn.be/stops/501485", "https://data.delijn.be/stops/506062"], ["https://data.delijn.be/stops/201887", "https://data.delijn.be/stops/211063"], ["https://data.delijn.be/stops/305419", "https://data.delijn.be/stops/305925"], ["https://data.delijn.be/stops/109744", "https://data.delijn.be/stops/109745"], ["https://data.delijn.be/stops/303761", "https://data.delijn.be/stops/303781"], ["https://data.delijn.be/stops/304510", "https://data.delijn.be/stops/305265"], ["https://data.delijn.be/stops/503403", "https://data.delijn.be/stops/508386"], ["https://data.delijn.be/stops/501428", "https://data.delijn.be/stops/501679"], ["https://data.delijn.be/stops/210010", "https://data.delijn.be/stops/502277"], ["https://data.delijn.be/stops/304132", "https://data.delijn.be/stops/304165"], ["https://data.delijn.be/stops/408645", "https://data.delijn.be/stops/408647"], ["https://data.delijn.be/stops/501124", "https://data.delijn.be/stops/506118"], ["https://data.delijn.be/stops/302098", "https://data.delijn.be/stops/302099"], ["https://data.delijn.be/stops/304964", "https://data.delijn.be/stops/304966"], ["https://data.delijn.be/stops/107975", "https://data.delijn.be/stops/109100"], ["https://data.delijn.be/stops/301780", "https://data.delijn.be/stops/306795"], ["https://data.delijn.be/stops/200585", "https://data.delijn.be/stops/201317"], ["https://data.delijn.be/stops/302064", "https://data.delijn.be/stops/302460"], ["https://data.delijn.be/stops/101798", "https://data.delijn.be/stops/108519"], ["https://data.delijn.be/stops/501161", "https://data.delijn.be/stops/501751"], ["https://data.delijn.be/stops/502318", "https://data.delijn.be/stops/507534"], ["https://data.delijn.be/stops/506119", "https://data.delijn.be/stops/506125"], ["https://data.delijn.be/stops/102187", "https://data.delijn.be/stops/104341"], ["https://data.delijn.be/stops/204979", "https://data.delijn.be/stops/208162"], ["https://data.delijn.be/stops/301047", "https://data.delijn.be/stops/306400"], ["https://data.delijn.be/stops/501060", "https://data.delijn.be/stops/505359"], ["https://data.delijn.be/stops/407202", "https://data.delijn.be/stops/407208"], ["https://data.delijn.be/stops/505337", "https://data.delijn.be/stops/507505"], ["https://data.delijn.be/stops/108357", "https://data.delijn.be/stops/109334"], ["https://data.delijn.be/stops/304705", "https://data.delijn.be/stops/307852"], ["https://data.delijn.be/stops/202567", "https://data.delijn.be/stops/202609"], ["https://data.delijn.be/stops/103538", "https://data.delijn.be/stops/106721"], ["https://data.delijn.be/stops/304704", "https://data.delijn.be/stops/305505"], ["https://data.delijn.be/stops/101000", "https://data.delijn.be/stops/101008"], ["https://data.delijn.be/stops/103595", "https://data.delijn.be/stops/109124"], ["https://data.delijn.be/stops/405637", "https://data.delijn.be/stops/405639"], ["https://data.delijn.be/stops/300139", "https://data.delijn.be/stops/300140"], ["https://data.delijn.be/stops/308203", "https://data.delijn.be/stops/308277"], ["https://data.delijn.be/stops/206505", "https://data.delijn.be/stops/206991"], ["https://data.delijn.be/stops/408214", "https://data.delijn.be/stops/408393"], ["https://data.delijn.be/stops/403005", "https://data.delijn.be/stops/410005"], ["https://data.delijn.be/stops/105678", "https://data.delijn.be/stops/106755"], ["https://data.delijn.be/stops/508321", "https://data.delijn.be/stops/508325"], ["https://data.delijn.be/stops/406436", "https://data.delijn.be/stops/409395"], ["https://data.delijn.be/stops/103612", "https://data.delijn.be/stops/106308"], ["https://data.delijn.be/stops/506635", "https://data.delijn.be/stops/506771"], ["https://data.delijn.be/stops/108620", "https://data.delijn.be/stops/108950"], ["https://data.delijn.be/stops/107842", "https://data.delijn.be/stops/107844"], ["https://data.delijn.be/stops/305211", "https://data.delijn.be/stops/307873"], ["https://data.delijn.be/stops/208726", "https://data.delijn.be/stops/209727"], ["https://data.delijn.be/stops/509642", "https://data.delijn.be/stops/509643"], ["https://data.delijn.be/stops/305189", "https://data.delijn.be/stops/305190"], ["https://data.delijn.be/stops/409053", "https://data.delijn.be/stops/409062"], ["https://data.delijn.be/stops/102210", "https://data.delijn.be/stops/104265"], ["https://data.delijn.be/stops/409255", "https://data.delijn.be/stops/409272"], ["https://data.delijn.be/stops/504528", "https://data.delijn.be/stops/509527"], ["https://data.delijn.be/stops/407757", "https://data.delijn.be/stops/409792"], ["https://data.delijn.be/stops/204671", "https://data.delijn.be/stops/205672"], ["https://data.delijn.be/stops/102013", "https://data.delijn.be/stops/102078"], ["https://data.delijn.be/stops/102500", "https://data.delijn.be/stops/104375"], ["https://data.delijn.be/stops/200316", "https://data.delijn.be/stops/200584"], ["https://data.delijn.be/stops/308507", "https://data.delijn.be/stops/308510"], ["https://data.delijn.be/stops/407511", "https://data.delijn.be/stops/409665"], ["https://data.delijn.be/stops/108819", "https://data.delijn.be/stops/108828"], ["https://data.delijn.be/stops/304318", "https://data.delijn.be/stops/304323"], ["https://data.delijn.be/stops/502731", "https://data.delijn.be/stops/505840"], ["https://data.delijn.be/stops/305730", "https://data.delijn.be/stops/306329"], ["https://data.delijn.be/stops/402602", "https://data.delijn.be/stops/402603"], ["https://data.delijn.be/stops/200361", "https://data.delijn.be/stops/202645"], ["https://data.delijn.be/stops/400269", "https://data.delijn.be/stops/400953"], ["https://data.delijn.be/stops/409444", "https://data.delijn.be/stops/409449"], ["https://data.delijn.be/stops/501668", "https://data.delijn.be/stops/506427"], ["https://data.delijn.be/stops/103944", "https://data.delijn.be/stops/104756"], ["https://data.delijn.be/stops/500567", "https://data.delijn.be/stops/500568"], ["https://data.delijn.be/stops/501045", "https://data.delijn.be/stops/501051"], ["https://data.delijn.be/stops/301429", "https://data.delijn.be/stops/301438"], ["https://data.delijn.be/stops/304156", "https://data.delijn.be/stops/307543"], ["https://data.delijn.be/stops/400269", "https://data.delijn.be/stops/400279"], ["https://data.delijn.be/stops/503798", "https://data.delijn.be/stops/508798"], ["https://data.delijn.be/stops/402493", "https://data.delijn.be/stops/402494"], ["https://data.delijn.be/stops/301471", "https://data.delijn.be/stops/307960"], ["https://data.delijn.be/stops/305068", "https://data.delijn.be/stops/305079"], ["https://data.delijn.be/stops/208701", "https://data.delijn.be/stops/208705"], ["https://data.delijn.be/stops/408591", "https://data.delijn.be/stops/408592"], ["https://data.delijn.be/stops/106522", "https://data.delijn.be/stops/106523"], ["https://data.delijn.be/stops/406152", "https://data.delijn.be/stops/406271"], ["https://data.delijn.be/stops/405631", "https://data.delijn.be/stops/405634"], ["https://data.delijn.be/stops/403833", "https://data.delijn.be/stops/403849"], ["https://data.delijn.be/stops/206779", "https://data.delijn.be/stops/209562"], ["https://data.delijn.be/stops/204777", "https://data.delijn.be/stops/205472"], ["https://data.delijn.be/stops/304351", "https://data.delijn.be/stops/304352"], ["https://data.delijn.be/stops/504407", "https://data.delijn.be/stops/504409"], ["https://data.delijn.be/stops/400204", "https://data.delijn.be/stops/408489"], ["https://data.delijn.be/stops/400798", "https://data.delijn.be/stops/409602"], ["https://data.delijn.be/stops/501498", "https://data.delijn.be/stops/506197"], ["https://data.delijn.be/stops/303863", "https://data.delijn.be/stops/303961"], ["https://data.delijn.be/stops/303459", "https://data.delijn.be/stops/303488"], ["https://data.delijn.be/stops/206885", "https://data.delijn.be/stops/206886"], ["https://data.delijn.be/stops/204221", "https://data.delijn.be/stops/205248"], ["https://data.delijn.be/stops/109182", "https://data.delijn.be/stops/109251"], ["https://data.delijn.be/stops/307896", "https://data.delijn.be/stops/307897"], ["https://data.delijn.be/stops/405940", "https://data.delijn.be/stops/405945"], ["https://data.delijn.be/stops/204147", "https://data.delijn.be/stops/205142"], ["https://data.delijn.be/stops/108811", "https://data.delijn.be/stops/108813"], ["https://data.delijn.be/stops/302648", "https://data.delijn.be/stops/302651"], ["https://data.delijn.be/stops/202208", "https://data.delijn.be/stops/202504"], ["https://data.delijn.be/stops/301512", "https://data.delijn.be/stops/301527"], ["https://data.delijn.be/stops/409761", "https://data.delijn.be/stops/409762"], ["https://data.delijn.be/stops/102835", "https://data.delijn.be/stops/102836"], ["https://data.delijn.be/stops/201242", "https://data.delijn.be/stops/205916"], ["https://data.delijn.be/stops/303797", "https://data.delijn.be/stops/303846"], ["https://data.delijn.be/stops/302181", "https://data.delijn.be/stops/305091"], ["https://data.delijn.be/stops/305284", "https://data.delijn.be/stops/305291"], ["https://data.delijn.be/stops/407984", "https://data.delijn.be/stops/408415"], ["https://data.delijn.be/stops/304566", "https://data.delijn.be/stops/304679"], ["https://data.delijn.be/stops/200021", "https://data.delijn.be/stops/201101"], ["https://data.delijn.be/stops/108140", "https://data.delijn.be/stops/109135"], ["https://data.delijn.be/stops/300955", "https://data.delijn.be/stops/304535"], ["https://data.delijn.be/stops/303283", "https://data.delijn.be/stops/303287"], ["https://data.delijn.be/stops/502555", "https://data.delijn.be/stops/505012"], ["https://data.delijn.be/stops/105456", "https://data.delijn.be/stops/105457"], ["https://data.delijn.be/stops/302436", "https://data.delijn.be/stops/302444"], ["https://data.delijn.be/stops/105091", "https://data.delijn.be/stops/108882"], ["https://data.delijn.be/stops/409263", "https://data.delijn.be/stops/409264"], ["https://data.delijn.be/stops/206028", "https://data.delijn.be/stops/206812"], ["https://data.delijn.be/stops/300936", "https://data.delijn.be/stops/304641"], ["https://data.delijn.be/stops/202529", "https://data.delijn.be/stops/203529"], ["https://data.delijn.be/stops/208200", "https://data.delijn.be/stops/209133"], ["https://data.delijn.be/stops/206083", "https://data.delijn.be/stops/217007"], ["https://data.delijn.be/stops/205226", "https://data.delijn.be/stops/205227"], ["https://data.delijn.be/stops/101063", "https://data.delijn.be/stops/106002"], ["https://data.delijn.be/stops/400229", "https://data.delijn.be/stops/407172"], ["https://data.delijn.be/stops/305501", "https://data.delijn.be/stops/307987"], ["https://data.delijn.be/stops/401603", "https://data.delijn.be/stops/406874"], ["https://data.delijn.be/stops/206231", "https://data.delijn.be/stops/300221"], ["https://data.delijn.be/stops/502205", "https://data.delijn.be/stops/509312"], ["https://data.delijn.be/stops/108706", "https://data.delijn.be/stops/108710"], ["https://data.delijn.be/stops/503735", "https://data.delijn.be/stops/509955"], ["https://data.delijn.be/stops/202617", "https://data.delijn.be/stops/203594"], ["https://data.delijn.be/stops/503917", "https://data.delijn.be/stops/508925"], ["https://data.delijn.be/stops/102638", "https://data.delijn.be/stops/107846"], ["https://data.delijn.be/stops/505061", "https://data.delijn.be/stops/505062"], ["https://data.delijn.be/stops/207272", "https://data.delijn.be/stops/207273"], ["https://data.delijn.be/stops/101553", "https://data.delijn.be/stops/101554"], ["https://data.delijn.be/stops/202057", "https://data.delijn.be/stops/203057"], ["https://data.delijn.be/stops/308171", "https://data.delijn.be/stops/308172"], ["https://data.delijn.be/stops/504850", "https://data.delijn.be/stops/504948"], ["https://data.delijn.be/stops/204044", "https://data.delijn.be/stops/205044"], ["https://data.delijn.be/stops/505783", "https://data.delijn.be/stops/507060"], ["https://data.delijn.be/stops/504546", "https://data.delijn.be/stops/505216"], ["https://data.delijn.be/stops/406610", "https://data.delijn.be/stops/407410"], ["https://data.delijn.be/stops/108866", "https://data.delijn.be/stops/109743"], ["https://data.delijn.be/stops/101963", "https://data.delijn.be/stops/109271"], ["https://data.delijn.be/stops/405397", "https://data.delijn.be/stops/405503"], ["https://data.delijn.be/stops/504402", "https://data.delijn.be/stops/509418"], ["https://data.delijn.be/stops/300456", "https://data.delijn.be/stops/300457"], ["https://data.delijn.be/stops/504129", "https://data.delijn.be/stops/509123"], ["https://data.delijn.be/stops/208546", "https://data.delijn.be/stops/208547"], ["https://data.delijn.be/stops/502375", "https://data.delijn.be/stops/505345"], ["https://data.delijn.be/stops/509621", "https://data.delijn.be/stops/509630"], ["https://data.delijn.be/stops/400251", "https://data.delijn.be/stops/400434"], ["https://data.delijn.be/stops/307302", "https://data.delijn.be/stops/307319"], ["https://data.delijn.be/stops/101484", "https://data.delijn.be/stops/109706"], ["https://data.delijn.be/stops/402820", "https://data.delijn.be/stops/406568"], ["https://data.delijn.be/stops/202437", "https://data.delijn.be/stops/202586"], ["https://data.delijn.be/stops/501013", "https://data.delijn.be/stops/506018"], ["https://data.delijn.be/stops/205259", "https://data.delijn.be/stops/205671"], ["https://data.delijn.be/stops/107283", "https://data.delijn.be/stops/107399"], ["https://data.delijn.be/stops/407686", "https://data.delijn.be/stops/407687"], ["https://data.delijn.be/stops/106774", "https://data.delijn.be/stops/106780"], ["https://data.delijn.be/stops/503369", "https://data.delijn.be/stops/510020"], ["https://data.delijn.be/stops/206962", "https://data.delijn.be/stops/207934"], ["https://data.delijn.be/stops/306665", "https://data.delijn.be/stops/307880"], ["https://data.delijn.be/stops/504650", "https://data.delijn.be/stops/505810"], ["https://data.delijn.be/stops/503218", "https://data.delijn.be/stops/508213"], ["https://data.delijn.be/stops/405921", "https://data.delijn.be/stops/405974"], ["https://data.delijn.be/stops/308730", "https://data.delijn.be/stops/308733"], ["https://data.delijn.be/stops/201695", "https://data.delijn.be/stops/202037"], ["https://data.delijn.be/stops/502454", "https://data.delijn.be/stops/502682"], ["https://data.delijn.be/stops/302318", "https://data.delijn.be/stops/304783"], ["https://data.delijn.be/stops/207245", "https://data.delijn.be/stops/207402"], ["https://data.delijn.be/stops/301141", "https://data.delijn.be/stops/302016"], ["https://data.delijn.be/stops/305625", "https://data.delijn.be/stops/305632"], ["https://data.delijn.be/stops/103636", "https://data.delijn.be/stops/104915"], ["https://data.delijn.be/stops/400476", "https://data.delijn.be/stops/407647"], ["https://data.delijn.be/stops/103301", "https://data.delijn.be/stops/103302"], ["https://data.delijn.be/stops/200019", "https://data.delijn.be/stops/200021"], ["https://data.delijn.be/stops/504695", "https://data.delijn.be/stops/508859"], ["https://data.delijn.be/stops/304373", "https://data.delijn.be/stops/304412"], ["https://data.delijn.be/stops/200017", "https://data.delijn.be/stops/200018"], ["https://data.delijn.be/stops/303188", "https://data.delijn.be/stops/303197"], ["https://data.delijn.be/stops/207695", "https://data.delijn.be/stops/207954"], ["https://data.delijn.be/stops/206145", "https://data.delijn.be/stops/207144"], ["https://data.delijn.be/stops/405609", "https://data.delijn.be/stops/410052"], ["https://data.delijn.be/stops/202479", "https://data.delijn.be/stops/202954"], ["https://data.delijn.be/stops/201808", "https://data.delijn.be/stops/209261"], ["https://data.delijn.be/stops/406753", "https://data.delijn.be/stops/408165"], ["https://data.delijn.be/stops/402954", "https://data.delijn.be/stops/404350"], ["https://data.delijn.be/stops/104660", "https://data.delijn.be/stops/105680"], ["https://data.delijn.be/stops/207212", "https://data.delijn.be/stops/207924"], ["https://data.delijn.be/stops/503185", "https://data.delijn.be/stops/508190"], ["https://data.delijn.be/stops/404122", "https://data.delijn.be/stops/404128"], ["https://data.delijn.be/stops/408070", "https://data.delijn.be/stops/408071"], ["https://data.delijn.be/stops/406305", "https://data.delijn.be/stops/406392"], ["https://data.delijn.be/stops/403051", "https://data.delijn.be/stops/410210"], ["https://data.delijn.be/stops/208450", "https://data.delijn.be/stops/208519"], ["https://data.delijn.be/stops/104262", "https://data.delijn.be/stops/104270"], ["https://data.delijn.be/stops/505659", "https://data.delijn.be/stops/509824"], ["https://data.delijn.be/stops/204434", "https://data.delijn.be/stops/205431"], ["https://data.delijn.be/stops/401761", "https://data.delijn.be/stops/401765"], ["https://data.delijn.be/stops/401851", "https://data.delijn.be/stops/406347"], ["https://data.delijn.be/stops/401411", "https://data.delijn.be/stops/307498"], ["https://data.delijn.be/stops/408268", "https://data.delijn.be/stops/408271"], ["https://data.delijn.be/stops/201055", "https://data.delijn.be/stops/201921"], ["https://data.delijn.be/stops/207342", "https://data.delijn.be/stops/207705"], ["https://data.delijn.be/stops/405436", "https://data.delijn.be/stops/408530"], ["https://data.delijn.be/stops/300547", "https://data.delijn.be/stops/307861"], ["https://data.delijn.be/stops/302316", "https://data.delijn.be/stops/302329"], ["https://data.delijn.be/stops/102672", "https://data.delijn.be/stops/109193"], ["https://data.delijn.be/stops/403143", "https://data.delijn.be/stops/403380"], ["https://data.delijn.be/stops/307814", "https://data.delijn.be/stops/307817"], ["https://data.delijn.be/stops/502623", "https://data.delijn.be/stops/505703"], ["https://data.delijn.be/stops/103931", "https://data.delijn.be/stops/106603"], ["https://data.delijn.be/stops/401828", "https://data.delijn.be/stops/401832"], ["https://data.delijn.be/stops/202680", "https://data.delijn.be/stops/203679"], ["https://data.delijn.be/stops/504956", "https://data.delijn.be/stops/509947"], ["https://data.delijn.be/stops/403642", "https://data.delijn.be/stops/403652"], ["https://data.delijn.be/stops/201255", "https://data.delijn.be/stops/201656"], ["https://data.delijn.be/stops/508701", "https://data.delijn.be/stops/508723"], ["https://data.delijn.be/stops/104860", "https://data.delijn.be/stops/105195"], ["https://data.delijn.be/stops/400911", "https://data.delijn.be/stops/400957"], ["https://data.delijn.be/stops/101529", "https://data.delijn.be/stops/109002"], ["https://data.delijn.be/stops/303640", "https://data.delijn.be/stops/303643"], ["https://data.delijn.be/stops/406158", "https://data.delijn.be/stops/406287"], ["https://data.delijn.be/stops/200061", "https://data.delijn.be/stops/200481"], ["https://data.delijn.be/stops/204496", "https://data.delijn.be/stops/204497"], ["https://data.delijn.be/stops/107710", "https://data.delijn.be/stops/108058"], ["https://data.delijn.be/stops/504116", "https://data.delijn.be/stops/509116"], ["https://data.delijn.be/stops/401755", "https://data.delijn.be/stops/401762"], ["https://data.delijn.be/stops/303358", "https://data.delijn.be/stops/303364"], ["https://data.delijn.be/stops/401503", "https://data.delijn.be/stops/401520"], ["https://data.delijn.be/stops/300944", "https://data.delijn.be/stops/308902"], ["https://data.delijn.be/stops/407239", "https://data.delijn.be/stops/407505"], ["https://data.delijn.be/stops/301547", "https://data.delijn.be/stops/305172"], ["https://data.delijn.be/stops/101290", "https://data.delijn.be/stops/103119"], ["https://data.delijn.be/stops/104950", "https://data.delijn.be/stops/108575"], ["https://data.delijn.be/stops/102702", "https://data.delijn.be/stops/105548"], ["https://data.delijn.be/stops/105247", "https://data.delijn.be/stops/105842"], ["https://data.delijn.be/stops/305894", "https://data.delijn.be/stops/305967"], ["https://data.delijn.be/stops/508499", "https://data.delijn.be/stops/508501"], ["https://data.delijn.be/stops/304829", "https://data.delijn.be/stops/306173"], ["https://data.delijn.be/stops/401053", "https://data.delijn.be/stops/409822"], ["https://data.delijn.be/stops/206748", "https://data.delijn.be/stops/207698"], ["https://data.delijn.be/stops/301589", "https://data.delijn.be/stops/301591"], ["https://data.delijn.be/stops/504583", "https://data.delijn.be/stops/509587"], ["https://data.delijn.be/stops/208031", "https://data.delijn.be/stops/209031"], ["https://data.delijn.be/stops/106479", "https://data.delijn.be/stops/107053"], ["https://data.delijn.be/stops/409102", "https://data.delijn.be/stops/409104"], ["https://data.delijn.be/stops/207344", "https://data.delijn.be/stops/207345"], ["https://data.delijn.be/stops/501442", "https://data.delijn.be/stops/506442"], ["https://data.delijn.be/stops/507004", "https://data.delijn.be/stops/507493"], ["https://data.delijn.be/stops/400076", "https://data.delijn.be/stops/407965"], ["https://data.delijn.be/stops/406215", "https://data.delijn.be/stops/406233"], ["https://data.delijn.be/stops/206528", "https://data.delijn.be/stops/206529"], ["https://data.delijn.be/stops/107690", "https://data.delijn.be/stops/108170"], ["https://data.delijn.be/stops/505265", "https://data.delijn.be/stops/505269"], ["https://data.delijn.be/stops/405294", "https://data.delijn.be/stops/405296"], ["https://data.delijn.be/stops/208618", "https://data.delijn.be/stops/209617"], ["https://data.delijn.be/stops/201333", "https://data.delijn.be/stops/211084"], ["https://data.delijn.be/stops/403798", "https://data.delijn.be/stops/406302"], ["https://data.delijn.be/stops/208197", "https://data.delijn.be/stops/209131"], ["https://data.delijn.be/stops/404574", "https://data.delijn.be/stops/404575"], ["https://data.delijn.be/stops/508647", "https://data.delijn.be/stops/508739"], ["https://data.delijn.be/stops/302760", "https://data.delijn.be/stops/308911"], ["https://data.delijn.be/stops/507503", "https://data.delijn.be/stops/507516"], ["https://data.delijn.be/stops/403062", "https://data.delijn.be/stops/410006"], ["https://data.delijn.be/stops/105052", "https://data.delijn.be/stops/109766"], ["https://data.delijn.be/stops/201420", "https://data.delijn.be/stops/202012"], ["https://data.delijn.be/stops/406223", "https://data.delijn.be/stops/406233"], ["https://data.delijn.be/stops/301288", "https://data.delijn.be/stops/301330"], ["https://data.delijn.be/stops/204225", "https://data.delijn.be/stops/204226"], ["https://data.delijn.be/stops/107445", "https://data.delijn.be/stops/107465"], ["https://data.delijn.be/stops/205006", "https://data.delijn.be/stops/205322"], ["https://data.delijn.be/stops/206438", "https://data.delijn.be/stops/206440"], ["https://data.delijn.be/stops/202261", "https://data.delijn.be/stops/203261"], ["https://data.delijn.be/stops/306696", "https://data.delijn.be/stops/306698"], ["https://data.delijn.be/stops/402231", "https://data.delijn.be/stops/402237"], ["https://data.delijn.be/stops/107995", "https://data.delijn.be/stops/108120"], ["https://data.delijn.be/stops/502519", "https://data.delijn.be/stops/502522"], ["https://data.delijn.be/stops/405534", "https://data.delijn.be/stops/407295"], ["https://data.delijn.be/stops/503374", "https://data.delijn.be/stops/503414"], ["https://data.delijn.be/stops/207872", "https://data.delijn.be/stops/209365"], ["https://data.delijn.be/stops/202564", "https://data.delijn.be/stops/210256"], ["https://data.delijn.be/stops/402180", "https://data.delijn.be/stops/402181"], ["https://data.delijn.be/stops/403612", "https://data.delijn.be/stops/403613"], ["https://data.delijn.be/stops/507617", "https://data.delijn.be/stops/507618"], ["https://data.delijn.be/stops/102457", "https://data.delijn.be/stops/102469"], ["https://data.delijn.be/stops/508830", "https://data.delijn.be/stops/508833"], ["https://data.delijn.be/stops/200944", "https://data.delijn.be/stops/202696"], ["https://data.delijn.be/stops/504563", "https://data.delijn.be/stops/509563"], ["https://data.delijn.be/stops/304128", "https://data.delijn.be/stops/304133"], ["https://data.delijn.be/stops/408108", "https://data.delijn.be/stops/408117"], ["https://data.delijn.be/stops/504225", "https://data.delijn.be/stops/504227"], ["https://data.delijn.be/stops/403985", "https://data.delijn.be/stops/404005"], ["https://data.delijn.be/stops/108101", "https://data.delijn.be/stops/108103"], ["https://data.delijn.be/stops/300691", "https://data.delijn.be/stops/303460"], ["https://data.delijn.be/stops/305555", "https://data.delijn.be/stops/305582"], ["https://data.delijn.be/stops/303987", "https://data.delijn.be/stops/306289"], ["https://data.delijn.be/stops/108728", "https://data.delijn.be/stops/108729"], ["https://data.delijn.be/stops/405347", "https://data.delijn.be/stops/405430"], ["https://data.delijn.be/stops/101643", "https://data.delijn.be/stops/105839"], ["https://data.delijn.be/stops/300325", "https://data.delijn.be/stops/300338"], ["https://data.delijn.be/stops/404897", "https://data.delijn.be/stops/404907"], ["https://data.delijn.be/stops/200753", "https://data.delijn.be/stops/200771"], ["https://data.delijn.be/stops/405962", "https://data.delijn.be/stops/405964"], ["https://data.delijn.be/stops/404230", "https://data.delijn.be/stops/404239"], ["https://data.delijn.be/stops/200419", "https://data.delijn.be/stops/201163"], ["https://data.delijn.be/stops/301936", "https://data.delijn.be/stops/304710"], ["https://data.delijn.be/stops/300897", "https://data.delijn.be/stops/304316"], ["https://data.delijn.be/stops/204661", "https://data.delijn.be/stops/204662"], ["https://data.delijn.be/stops/201478", "https://data.delijn.be/stops/211002"], ["https://data.delijn.be/stops/202672", "https://data.delijn.be/stops/203672"], ["https://data.delijn.be/stops/206927", "https://data.delijn.be/stops/207556"], ["https://data.delijn.be/stops/503292", "https://data.delijn.be/stops/508292"], ["https://data.delijn.be/stops/204081", "https://data.delijn.be/stops/205081"], ["https://data.delijn.be/stops/508024", "https://data.delijn.be/stops/508028"], ["https://data.delijn.be/stops/304601", "https://data.delijn.be/stops/304623"], ["https://data.delijn.be/stops/400350", "https://data.delijn.be/stops/400351"], ["https://data.delijn.be/stops/305859", "https://data.delijn.be/stops/305860"], ["https://data.delijn.be/stops/104877", "https://data.delijn.be/stops/105305"], ["https://data.delijn.be/stops/202341", "https://data.delijn.be/stops/203484"], ["https://data.delijn.be/stops/401072", "https://data.delijn.be/stops/401085"], ["https://data.delijn.be/stops/501764", "https://data.delijn.be/stops/502342"], ["https://data.delijn.be/stops/204159", "https://data.delijn.be/stops/204160"], ["https://data.delijn.be/stops/201725", "https://data.delijn.be/stops/201726"], ["https://data.delijn.be/stops/305102", "https://data.delijn.be/stops/305103"], ["https://data.delijn.be/stops/102489", "https://data.delijn.be/stops/400427"], ["https://data.delijn.be/stops/410262", "https://data.delijn.be/stops/410263"], ["https://data.delijn.be/stops/102832", "https://data.delijn.be/stops/106773"], ["https://data.delijn.be/stops/308148", "https://data.delijn.be/stops/308150"], ["https://data.delijn.be/stops/302278", "https://data.delijn.be/stops/302296"], ["https://data.delijn.be/stops/200080", "https://data.delijn.be/stops/201121"], ["https://data.delijn.be/stops/202908", "https://data.delijn.be/stops/203844"], ["https://data.delijn.be/stops/504568", "https://data.delijn.be/stops/505412"], ["https://data.delijn.be/stops/206768", "https://data.delijn.be/stops/209242"], ["https://data.delijn.be/stops/101833", "https://data.delijn.be/stops/107096"], ["https://data.delijn.be/stops/405174", "https://data.delijn.be/stops/405279"], ["https://data.delijn.be/stops/307537", "https://data.delijn.be/stops/307538"], ["https://data.delijn.be/stops/105244", "https://data.delijn.be/stops/105414"], ["https://data.delijn.be/stops/106300", "https://data.delijn.be/stops/106301"], ["https://data.delijn.be/stops/303018", "https://data.delijn.be/stops/303022"], ["https://data.delijn.be/stops/300340", "https://data.delijn.be/stops/304442"], ["https://data.delijn.be/stops/208479", "https://data.delijn.be/stops/209479"], ["https://data.delijn.be/stops/504196", "https://data.delijn.be/stops/509162"], ["https://data.delijn.be/stops/404146", "https://data.delijn.be/stops/404147"], ["https://data.delijn.be/stops/306902", "https://data.delijn.be/stops/308128"], ["https://data.delijn.be/stops/301251", "https://data.delijn.be/stops/308557"], ["https://data.delijn.be/stops/407334", "https://data.delijn.be/stops/407335"], ["https://data.delijn.be/stops/202592", "https://data.delijn.be/stops/203593"], ["https://data.delijn.be/stops/401309", "https://data.delijn.be/stops/401319"], ["https://data.delijn.be/stops/407619", "https://data.delijn.be/stops/407680"], ["https://data.delijn.be/stops/403372", "https://data.delijn.be/stops/406854"], ["https://data.delijn.be/stops/400213", "https://data.delijn.be/stops/405613"], ["https://data.delijn.be/stops/504761", "https://data.delijn.be/stops/504767"], ["https://data.delijn.be/stops/305019", "https://data.delijn.be/stops/305040"], ["https://data.delijn.be/stops/206897", "https://data.delijn.be/stops/207702"], ["https://data.delijn.be/stops/407889", "https://data.delijn.be/stops/408188"], ["https://data.delijn.be/stops/104907", "https://data.delijn.be/stops/104908"], ["https://data.delijn.be/stops/406309", "https://data.delijn.be/stops/406313"], ["https://data.delijn.be/stops/200591", "https://data.delijn.be/stops/201590"], ["https://data.delijn.be/stops/200190", "https://data.delijn.be/stops/201190"], ["https://data.delijn.be/stops/504942", "https://data.delijn.be/stops/508897"], ["https://data.delijn.be/stops/202516", "https://data.delijn.be/stops/203516"], ["https://data.delijn.be/stops/200053", "https://data.delijn.be/stops/201477"], ["https://data.delijn.be/stops/206124", "https://data.delijn.be/stops/207133"], ["https://data.delijn.be/stops/206522", "https://data.delijn.be/stops/207079"], ["https://data.delijn.be/stops/205364", "https://data.delijn.be/stops/205716"], ["https://data.delijn.be/stops/109990", "https://data.delijn.be/stops/410346"], ["https://data.delijn.be/stops/109184", "https://data.delijn.be/stops/109185"], ["https://data.delijn.be/stops/407931", "https://data.delijn.be/stops/407932"], ["https://data.delijn.be/stops/301213", "https://data.delijn.be/stops/303618"], ["https://data.delijn.be/stops/203113", "https://data.delijn.be/stops/205597"], ["https://data.delijn.be/stops/404255", "https://data.delijn.be/stops/405280"], ["https://data.delijn.be/stops/504604", "https://data.delijn.be/stops/509223"], ["https://data.delijn.be/stops/405176", "https://data.delijn.be/stops/405184"], ["https://data.delijn.be/stops/104736", "https://data.delijn.be/stops/107334"], ["https://data.delijn.be/stops/501150", "https://data.delijn.be/stops/501433"], ["https://data.delijn.be/stops/208482", "https://data.delijn.be/stops/209481"], ["https://data.delijn.be/stops/300665", "https://data.delijn.be/stops/300666"], ["https://data.delijn.be/stops/304258", "https://data.delijn.be/stops/305492"], ["https://data.delijn.be/stops/104335", "https://data.delijn.be/stops/105445"], ["https://data.delijn.be/stops/103610", "https://data.delijn.be/stops/105380"], ["https://data.delijn.be/stops/204064", "https://data.delijn.be/stops/205173"], ["https://data.delijn.be/stops/502199", "https://data.delijn.be/stops/507205"], ["https://data.delijn.be/stops/400408", "https://data.delijn.be/stops/400423"], ["https://data.delijn.be/stops/101203", "https://data.delijn.be/stops/104931"], ["https://data.delijn.be/stops/103221", "https://data.delijn.be/stops/107910"], ["https://data.delijn.be/stops/300527", "https://data.delijn.be/stops/300536"], ["https://data.delijn.be/stops/402936", "https://data.delijn.be/stops/405976"], ["https://data.delijn.be/stops/210115", "https://data.delijn.be/stops/211117"], ["https://data.delijn.be/stops/101081", "https://data.delijn.be/stops/102718"], ["https://data.delijn.be/stops/406245", "https://data.delijn.be/stops/408417"], ["https://data.delijn.be/stops/106092", "https://data.delijn.be/stops/109185"], ["https://data.delijn.be/stops/401423", "https://data.delijn.be/stops/401627"], ["https://data.delijn.be/stops/504846", "https://data.delijn.be/stops/505119"], ["https://data.delijn.be/stops/405503", "https://data.delijn.be/stops/302827"], ["https://data.delijn.be/stops/406095", "https://data.delijn.be/stops/406129"], ["https://data.delijn.be/stops/305198", "https://data.delijn.be/stops/308048"], ["https://data.delijn.be/stops/208111", "https://data.delijn.be/stops/208114"], ["https://data.delijn.be/stops/103640", "https://data.delijn.be/stops/104340"], ["https://data.delijn.be/stops/503172", "https://data.delijn.be/stops/508172"], ["https://data.delijn.be/stops/403808", "https://data.delijn.be/stops/408597"], ["https://data.delijn.be/stops/305393", "https://data.delijn.be/stops/305461"], ["https://data.delijn.be/stops/401409", "https://data.delijn.be/stops/401417"], ["https://data.delijn.be/stops/501686", "https://data.delijn.be/stops/504128"], ["https://data.delijn.be/stops/304261", "https://data.delijn.be/stops/304262"], ["https://data.delijn.be/stops/205007", "https://data.delijn.be/stops/205698"], ["https://data.delijn.be/stops/207044", "https://data.delijn.be/stops/207880"], ["https://data.delijn.be/stops/202430", "https://data.delijn.be/stops/203430"], ["https://data.delijn.be/stops/402659", "https://data.delijn.be/stops/402721"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/202625"], ["https://data.delijn.be/stops/303147", "https://data.delijn.be/stops/304245"], ["https://data.delijn.be/stops/407307", "https://data.delijn.be/stops/408482"], ["https://data.delijn.be/stops/504273", "https://data.delijn.be/stops/505912"], ["https://data.delijn.be/stops/202054", "https://data.delijn.be/stops/203054"], ["https://data.delijn.be/stops/302159", "https://data.delijn.be/stops/302165"], ["https://data.delijn.be/stops/401312", "https://data.delijn.be/stops/401326"], ["https://data.delijn.be/stops/401421", "https://data.delijn.be/stops/401531"], ["https://data.delijn.be/stops/404293", "https://data.delijn.be/stops/405699"], ["https://data.delijn.be/stops/101379", "https://data.delijn.be/stops/108810"], ["https://data.delijn.be/stops/208503", "https://data.delijn.be/stops/209503"], ["https://data.delijn.be/stops/502236", "https://data.delijn.be/stops/507236"], ["https://data.delijn.be/stops/501111", "https://data.delijn.be/stops/506493"], ["https://data.delijn.be/stops/109189", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/208086", "https://data.delijn.be/stops/209697"], ["https://data.delijn.be/stops/400820", "https://data.delijn.be/stops/400821"], ["https://data.delijn.be/stops/102598", "https://data.delijn.be/stops/107819"], ["https://data.delijn.be/stops/403005", "https://data.delijn.be/stops/406988"], ["https://data.delijn.be/stops/407372", "https://data.delijn.be/stops/407379"], ["https://data.delijn.be/stops/306604", "https://data.delijn.be/stops/306611"], ["https://data.delijn.be/stops/307084", "https://data.delijn.be/stops/307085"], ["https://data.delijn.be/stops/306312", "https://data.delijn.be/stops/307638"], ["https://data.delijn.be/stops/101706", "https://data.delijn.be/stops/205493"], ["https://data.delijn.be/stops/108858", "https://data.delijn.be/stops/108862"], ["https://data.delijn.be/stops/102448", "https://data.delijn.be/stops/104210"], ["https://data.delijn.be/stops/501035", "https://data.delijn.be/stops/501038"], ["https://data.delijn.be/stops/200901", "https://data.delijn.be/stops/202266"], ["https://data.delijn.be/stops/109042", "https://data.delijn.be/stops/307947"], ["https://data.delijn.be/stops/308142", "https://data.delijn.be/stops/308144"], ["https://data.delijn.be/stops/102381", "https://data.delijn.be/stops/106366"], ["https://data.delijn.be/stops/204449", "https://data.delijn.be/stops/205302"], ["https://data.delijn.be/stops/106816", "https://data.delijn.be/stops/106988"], ["https://data.delijn.be/stops/407032", "https://data.delijn.be/stops/407033"], ["https://data.delijn.be/stops/405521", "https://data.delijn.be/stops/407869"], ["https://data.delijn.be/stops/304028", "https://data.delijn.be/stops/304101"], ["https://data.delijn.be/stops/105393", "https://data.delijn.be/stops/109882"], ["https://data.delijn.be/stops/406558", "https://data.delijn.be/stops/406567"], ["https://data.delijn.be/stops/304596", "https://data.delijn.be/stops/304651"], ["https://data.delijn.be/stops/301064", "https://data.delijn.be/stops/306116"], ["https://data.delijn.be/stops/206344", "https://data.delijn.be/stops/207345"], ["https://data.delijn.be/stops/209645", "https://data.delijn.be/stops/209646"], ["https://data.delijn.be/stops/503217", "https://data.delijn.be/stops/503447"], ["https://data.delijn.be/stops/502542", "https://data.delijn.be/stops/507542"], ["https://data.delijn.be/stops/208090", "https://data.delijn.be/stops/208490"], ["https://data.delijn.be/stops/200962", "https://data.delijn.be/stops/201352"], ["https://data.delijn.be/stops/200676", "https://data.delijn.be/stops/200678"], ["https://data.delijn.be/stops/200128", "https://data.delijn.be/stops/200300"], ["https://data.delijn.be/stops/208795", "https://data.delijn.be/stops/218007"], ["https://data.delijn.be/stops/101520", "https://data.delijn.be/stops/102846"], ["https://data.delijn.be/stops/304454", "https://data.delijn.be/stops/307698"], ["https://data.delijn.be/stops/301742", "https://data.delijn.be/stops/301743"], ["https://data.delijn.be/stops/301967", "https://data.delijn.be/stops/307223"], ["https://data.delijn.be/stops/509026", "https://data.delijn.be/stops/509704"], ["https://data.delijn.be/stops/505771", "https://data.delijn.be/stops/507001"], ["https://data.delijn.be/stops/407701", "https://data.delijn.be/stops/407708"], ["https://data.delijn.be/stops/302238", "https://data.delijn.be/stops/302247"], ["https://data.delijn.be/stops/504295", "https://data.delijn.be/stops/509713"], ["https://data.delijn.be/stops/403484", "https://data.delijn.be/stops/404553"], ["https://data.delijn.be/stops/403056", "https://data.delijn.be/stops/403314"], ["https://data.delijn.be/stops/200971", "https://data.delijn.be/stops/201971"], ["https://data.delijn.be/stops/201971", "https://data.delijn.be/stops/207614"], ["https://data.delijn.be/stops/505964", "https://data.delijn.be/stops/507339"], ["https://data.delijn.be/stops/303017", "https://data.delijn.be/stops/303089"], ["https://data.delijn.be/stops/204782", "https://data.delijn.be/stops/204785"], ["https://data.delijn.be/stops/404302", "https://data.delijn.be/stops/404304"], ["https://data.delijn.be/stops/505056", "https://data.delijn.be/stops/505326"], ["https://data.delijn.be/stops/401411", "https://data.delijn.be/stops/303650"], ["https://data.delijn.be/stops/301240", "https://data.delijn.be/stops/308759"], ["https://data.delijn.be/stops/200302", "https://data.delijn.be/stops/201128"], ["https://data.delijn.be/stops/200836", "https://data.delijn.be/stops/200886"], ["https://data.delijn.be/stops/509831", "https://data.delijn.be/stops/509832"], ["https://data.delijn.be/stops/402445", "https://data.delijn.be/stops/402446"], ["https://data.delijn.be/stops/400930", "https://data.delijn.be/stops/400942"], ["https://data.delijn.be/stops/406824", "https://data.delijn.be/stops/409406"], ["https://data.delijn.be/stops/202715", "https://data.delijn.be/stops/203717"], ["https://data.delijn.be/stops/502286", "https://data.delijn.be/stops/505723"], ["https://data.delijn.be/stops/301959", "https://data.delijn.be/stops/301962"], ["https://data.delijn.be/stops/404302", "https://data.delijn.be/stops/408686"], ["https://data.delijn.be/stops/409264", "https://data.delijn.be/stops/409265"], ["https://data.delijn.be/stops/305307", "https://data.delijn.be/stops/306342"], ["https://data.delijn.be/stops/102240", "https://data.delijn.be/stops/104585"], ["https://data.delijn.be/stops/303702", "https://data.delijn.be/stops/304918"], ["https://data.delijn.be/stops/202739", "https://data.delijn.be/stops/209742"], ["https://data.delijn.be/stops/204530", "https://data.delijn.be/stops/205295"], ["https://data.delijn.be/stops/104022", "https://data.delijn.be/stops/107264"], ["https://data.delijn.be/stops/403164", "https://data.delijn.be/stops/410126"], ["https://data.delijn.be/stops/301408", "https://data.delijn.be/stops/307025"], ["https://data.delijn.be/stops/507461", "https://data.delijn.be/stops/507464"], ["https://data.delijn.be/stops/403124", "https://data.delijn.be/stops/403672"], ["https://data.delijn.be/stops/400510", "https://data.delijn.be/stops/403898"], ["https://data.delijn.be/stops/101186", "https://data.delijn.be/stops/106775"], ["https://data.delijn.be/stops/402681", "https://data.delijn.be/stops/402727"], ["https://data.delijn.be/stops/205346", "https://data.delijn.be/stops/205707"], ["https://data.delijn.be/stops/402578", "https://data.delijn.be/stops/402585"], ["https://data.delijn.be/stops/106350", "https://data.delijn.be/stops/106351"], ["https://data.delijn.be/stops/109161", "https://data.delijn.be/stops/109233"], ["https://data.delijn.be/stops/300195", "https://data.delijn.be/stops/300196"], ["https://data.delijn.be/stops/306070", "https://data.delijn.be/stops/306728"], ["https://data.delijn.be/stops/400253", "https://data.delijn.be/stops/400335"], ["https://data.delijn.be/stops/106298", "https://data.delijn.be/stops/107444"], ["https://data.delijn.be/stops/409356", "https://data.delijn.be/stops/409391"], ["https://data.delijn.be/stops/504323", "https://data.delijn.be/stops/509317"], ["https://data.delijn.be/stops/101552", "https://data.delijn.be/stops/107917"], ["https://data.delijn.be/stops/202549", "https://data.delijn.be/stops/202550"], ["https://data.delijn.be/stops/106305", "https://data.delijn.be/stops/106307"], ["https://data.delijn.be/stops/400377", "https://data.delijn.be/stops/401589"], ["https://data.delijn.be/stops/503186", "https://data.delijn.be/stops/503205"], ["https://data.delijn.be/stops/103287", "https://data.delijn.be/stops/106296"], ["https://data.delijn.be/stops/208233", "https://data.delijn.be/stops/208797"], ["https://data.delijn.be/stops/106273", "https://data.delijn.be/stops/109628"], ["https://data.delijn.be/stops/104711", "https://data.delijn.be/stops/107076"], ["https://data.delijn.be/stops/409715", "https://data.delijn.be/stops/409725"], ["https://data.delijn.be/stops/106493", "https://data.delijn.be/stops/106494"], ["https://data.delijn.be/stops/301259", "https://data.delijn.be/stops/301260"], ["https://data.delijn.be/stops/109061", "https://data.delijn.be/stops/109063"], ["https://data.delijn.be/stops/101700", "https://data.delijn.be/stops/101895"], ["https://data.delijn.be/stops/208018", "https://data.delijn.be/stops/209018"], ["https://data.delijn.be/stops/504802", "https://data.delijn.be/stops/504803"], ["https://data.delijn.be/stops/403723", "https://data.delijn.be/stops/406709"], ["https://data.delijn.be/stops/201222", "https://data.delijn.be/stops/202450"], ["https://data.delijn.be/stops/103031", "https://data.delijn.be/stops/103244"], ["https://data.delijn.be/stops/207714", "https://data.delijn.be/stops/207715"], ["https://data.delijn.be/stops/502430", "https://data.delijn.be/stops/507434"], ["https://data.delijn.be/stops/107794", "https://data.delijn.be/stops/107798"], ["https://data.delijn.be/stops/109797", "https://data.delijn.be/stops/305784"], ["https://data.delijn.be/stops/403218", "https://data.delijn.be/stops/403225"], ["https://data.delijn.be/stops/502410", "https://data.delijn.be/stops/502820"], ["https://data.delijn.be/stops/505675", "https://data.delijn.be/stops/505677"], ["https://data.delijn.be/stops/301269", "https://data.delijn.be/stops/307789"], ["https://data.delijn.be/stops/102050", "https://data.delijn.be/stops/103040"], ["https://data.delijn.be/stops/302647", "https://data.delijn.be/stops/302648"], ["https://data.delijn.be/stops/503063", "https://data.delijn.be/stops/508059"], ["https://data.delijn.be/stops/103865", "https://data.delijn.be/stops/105670"], ["https://data.delijn.be/stops/307033", "https://data.delijn.be/stops/307612"], ["https://data.delijn.be/stops/201804", "https://data.delijn.be/stops/208251"], ["https://data.delijn.be/stops/404862", "https://data.delijn.be/stops/404863"], ["https://data.delijn.be/stops/207448", "https://data.delijn.be/stops/207478"], ["https://data.delijn.be/stops/108475", "https://data.delijn.be/stops/109089"], ["https://data.delijn.be/stops/505173", "https://data.delijn.be/stops/507347"], ["https://data.delijn.be/stops/101489", "https://data.delijn.be/stops/109502"], ["https://data.delijn.be/stops/208747", "https://data.delijn.be/stops/209417"], ["https://data.delijn.be/stops/106505", "https://data.delijn.be/stops/106506"], ["https://data.delijn.be/stops/200275", "https://data.delijn.be/stops/201028"], ["https://data.delijn.be/stops/504159", "https://data.delijn.be/stops/504191"], ["https://data.delijn.be/stops/404391", "https://data.delijn.be/stops/404756"], ["https://data.delijn.be/stops/203107", "https://data.delijn.be/stops/208852"], ["https://data.delijn.be/stops/208688", "https://data.delijn.be/stops/208689"], ["https://data.delijn.be/stops/402098", "https://data.delijn.be/stops/408054"], ["https://data.delijn.be/stops/201943", "https://data.delijn.be/stops/203144"], ["https://data.delijn.be/stops/202530", "https://data.delijn.be/stops/203965"], ["https://data.delijn.be/stops/402859", "https://data.delijn.be/stops/406571"], ["https://data.delijn.be/stops/307427", "https://data.delijn.be/stops/307428"], ["https://data.delijn.be/stops/510010", "https://data.delijn.be/stops/510011"], ["https://data.delijn.be/stops/303249", "https://data.delijn.be/stops/303660"], ["https://data.delijn.be/stops/307388", "https://data.delijn.be/stops/307399"], ["https://data.delijn.be/stops/404131", "https://data.delijn.be/stops/404241"], ["https://data.delijn.be/stops/404200", "https://data.delijn.be/stops/404239"], ["https://data.delijn.be/stops/300807", "https://data.delijn.be/stops/304534"], ["https://data.delijn.be/stops/208239", "https://data.delijn.be/stops/209236"], ["https://data.delijn.be/stops/501663", "https://data.delijn.be/stops/501665"], ["https://data.delijn.be/stops/303813", "https://data.delijn.be/stops/303868"], ["https://data.delijn.be/stops/208720", "https://data.delijn.be/stops/209721"], ["https://data.delijn.be/stops/300847", "https://data.delijn.be/stops/301579"], ["https://data.delijn.be/stops/504530", "https://data.delijn.be/stops/509526"], ["https://data.delijn.be/stops/504853", "https://data.delijn.be/stops/507240"], ["https://data.delijn.be/stops/502330", "https://data.delijn.be/stops/507320"], ["https://data.delijn.be/stops/303837", "https://data.delijn.be/stops/303859"], ["https://data.delijn.be/stops/101350", "https://data.delijn.be/stops/101355"], ["https://data.delijn.be/stops/303446", "https://data.delijn.be/stops/303447"], ["https://data.delijn.be/stops/405776", "https://data.delijn.be/stops/409762"], ["https://data.delijn.be/stops/106020", "https://data.delijn.be/stops/106190"], ["https://data.delijn.be/stops/208459", "https://data.delijn.be/stops/209459"], ["https://data.delijn.be/stops/202410", "https://data.delijn.be/stops/203409"], ["https://data.delijn.be/stops/501438", "https://data.delijn.be/stops/501444"], ["https://data.delijn.be/stops/101268", "https://data.delijn.be/stops/104101"], ["https://data.delijn.be/stops/305055", "https://data.delijn.be/stops/305180"], ["https://data.delijn.be/stops/206310", "https://data.delijn.be/stops/207310"], ["https://data.delijn.be/stops/208743", "https://data.delijn.be/stops/208745"], ["https://data.delijn.be/stops/303049", "https://data.delijn.be/stops/306109"], ["https://data.delijn.be/stops/408599", "https://data.delijn.be/stops/408606"], ["https://data.delijn.be/stops/503726", "https://data.delijn.be/stops/508717"], ["https://data.delijn.be/stops/203751", "https://data.delijn.be/stops/203762"], ["https://data.delijn.be/stops/405190", "https://data.delijn.be/stops/406323"], ["https://data.delijn.be/stops/501686", "https://data.delijn.be/stops/505401"], ["https://data.delijn.be/stops/303996", "https://data.delijn.be/stops/308047"], ["https://data.delijn.be/stops/203091", "https://data.delijn.be/stops/211291"], ["https://data.delijn.be/stops/302293", "https://data.delijn.be/stops/303507"], ["https://data.delijn.be/stops/404711", "https://data.delijn.be/stops/404755"], ["https://data.delijn.be/stops/210019", "https://data.delijn.be/stops/211019"], ["https://data.delijn.be/stops/102472", "https://data.delijn.be/stops/406852"], ["https://data.delijn.be/stops/401586", "https://data.delijn.be/stops/401589"], ["https://data.delijn.be/stops/302466", "https://data.delijn.be/stops/306744"], ["https://data.delijn.be/stops/206207", "https://data.delijn.be/stops/207207"], ["https://data.delijn.be/stops/301907", "https://data.delijn.be/stops/306146"], ["https://data.delijn.be/stops/109176", "https://data.delijn.be/stops/109177"], ["https://data.delijn.be/stops/505208", "https://data.delijn.be/stops/505972"], ["https://data.delijn.be/stops/504008", "https://data.delijn.be/stops/505967"], ["https://data.delijn.be/stops/503534", "https://data.delijn.be/stops/508534"], ["https://data.delijn.be/stops/400710", "https://data.delijn.be/stops/409506"], ["https://data.delijn.be/stops/102466", "https://data.delijn.be/stops/400414"], ["https://data.delijn.be/stops/306879", "https://data.delijn.be/stops/308696"], ["https://data.delijn.be/stops/201047", "https://data.delijn.be/stops/203457"], ["https://data.delijn.be/stops/301987", "https://data.delijn.be/stops/303615"], ["https://data.delijn.be/stops/206060", "https://data.delijn.be/stops/207060"], ["https://data.delijn.be/stops/301980", "https://data.delijn.be/stops/301981"], ["https://data.delijn.be/stops/403811", "https://data.delijn.be/stops/403813"], ["https://data.delijn.be/stops/406159", "https://data.delijn.be/stops/406297"], ["https://data.delijn.be/stops/407938", "https://data.delijn.be/stops/408123"], ["https://data.delijn.be/stops/208424", "https://data.delijn.be/stops/209168"], ["https://data.delijn.be/stops/405264", "https://data.delijn.be/stops/406725"], ["https://data.delijn.be/stops/200523", "https://data.delijn.be/stops/201524"], ["https://data.delijn.be/stops/304408", "https://data.delijn.be/stops/308058"], ["https://data.delijn.be/stops/408172", "https://data.delijn.be/stops/408174"], ["https://data.delijn.be/stops/401216", "https://data.delijn.be/stops/401388"], ["https://data.delijn.be/stops/302891", "https://data.delijn.be/stops/302895"], ["https://data.delijn.be/stops/206801", "https://data.delijn.be/stops/207941"], ["https://data.delijn.be/stops/302229", "https://data.delijn.be/stops/302232"], ["https://data.delijn.be/stops/207301", "https://data.delijn.be/stops/207859"], ["https://data.delijn.be/stops/108112", "https://data.delijn.be/stops/108113"], ["https://data.delijn.be/stops/101905", "https://data.delijn.be/stops/103695"], ["https://data.delijn.be/stops/307298", "https://data.delijn.be/stops/307323"], ["https://data.delijn.be/stops/502653", "https://data.delijn.be/stops/505180"], ["https://data.delijn.be/stops/206819", "https://data.delijn.be/stops/207819"], ["https://data.delijn.be/stops/410398", "https://data.delijn.be/stops/410399"], ["https://data.delijn.be/stops/104388", "https://data.delijn.be/stops/104391"], ["https://data.delijn.be/stops/302414", "https://data.delijn.be/stops/307111"], ["https://data.delijn.be/stops/200933", "https://data.delijn.be/stops/210076"], ["https://data.delijn.be/stops/104521", "https://data.delijn.be/stops/104721"], ["https://data.delijn.be/stops/301052", "https://data.delijn.be/stops/301055"], ["https://data.delijn.be/stops/402443", "https://data.delijn.be/stops/402445"], ["https://data.delijn.be/stops/306668", "https://data.delijn.be/stops/306670"], ["https://data.delijn.be/stops/106912", "https://data.delijn.be/stops/107256"], ["https://data.delijn.be/stops/206577", "https://data.delijn.be/stops/207563"], ["https://data.delijn.be/stops/205933", "https://data.delijn.be/stops/209979"], ["https://data.delijn.be/stops/400884", "https://data.delijn.be/stops/409660"], ["https://data.delijn.be/stops/304531", "https://data.delijn.be/stops/304532"], ["https://data.delijn.be/stops/103466", "https://data.delijn.be/stops/103467"], ["https://data.delijn.be/stops/109654", "https://data.delijn.be/stops/109655"], ["https://data.delijn.be/stops/206013", "https://data.delijn.be/stops/207014"], ["https://data.delijn.be/stops/206572", "https://data.delijn.be/stops/208953"], ["https://data.delijn.be/stops/109179", "https://data.delijn.be/stops/109182"], ["https://data.delijn.be/stops/304829", "https://data.delijn.be/stops/304831"], ["https://data.delijn.be/stops/101579", "https://data.delijn.be/stops/101581"], ["https://data.delijn.be/stops/304850", "https://data.delijn.be/stops/308649"], ["https://data.delijn.be/stops/304272", "https://data.delijn.be/stops/304276"], ["https://data.delijn.be/stops/501229", "https://data.delijn.be/stops/506475"], ["https://data.delijn.be/stops/503109", "https://data.delijn.be/stops/503414"], ["https://data.delijn.be/stops/504326", "https://data.delijn.be/stops/505925"], ["https://data.delijn.be/stops/304892", "https://data.delijn.be/stops/304903"], ["https://data.delijn.be/stops/105150", "https://data.delijn.be/stops/105615"], ["https://data.delijn.be/stops/203653", "https://data.delijn.be/stops/203654"], ["https://data.delijn.be/stops/101094", "https://data.delijn.be/stops/104462"], ["https://data.delijn.be/stops/503811", "https://data.delijn.be/stops/508811"], ["https://data.delijn.be/stops/302263", "https://data.delijn.be/stops/303200"], ["https://data.delijn.be/stops/405336", "https://data.delijn.be/stops/405341"], ["https://data.delijn.be/stops/101192", "https://data.delijn.be/stops/205668"], ["https://data.delijn.be/stops/501681", "https://data.delijn.be/stops/506413"], ["https://data.delijn.be/stops/109657", "https://data.delijn.be/stops/406508"], ["https://data.delijn.be/stops/208332", "https://data.delijn.be/stops/208377"], ["https://data.delijn.be/stops/208378", "https://data.delijn.be/stops/208403"], ["https://data.delijn.be/stops/302054", "https://data.delijn.be/stops/307284"], ["https://data.delijn.be/stops/101512", "https://data.delijn.be/stops/109076"], ["https://data.delijn.be/stops/209332", "https://data.delijn.be/stops/218008"], ["https://data.delijn.be/stops/200263", "https://data.delijn.be/stops/202549"], ["https://data.delijn.be/stops/106810", "https://data.delijn.be/stops/106811"], ["https://data.delijn.be/stops/401242", "https://data.delijn.be/stops/401330"], ["https://data.delijn.be/stops/202973", "https://data.delijn.be/stops/205074"], ["https://data.delijn.be/stops/403647", "https://data.delijn.be/stops/408085"], ["https://data.delijn.be/stops/304050", "https://data.delijn.be/stops/304051"], ["https://data.delijn.be/stops/402177", "https://data.delijn.be/stops/410072"], ["https://data.delijn.be/stops/405768", "https://data.delijn.be/stops/409330"], ["https://data.delijn.be/stops/202923", "https://data.delijn.be/stops/202926"], ["https://data.delijn.be/stops/405473", "https://data.delijn.be/stops/406600"], ["https://data.delijn.be/stops/509401", "https://data.delijn.be/stops/509428"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/504556"], ["https://data.delijn.be/stops/404939", "https://data.delijn.be/stops/408583"], ["https://data.delijn.be/stops/210093", "https://data.delijn.be/stops/211093"], ["https://data.delijn.be/stops/108573", "https://data.delijn.be/stops/109681"], ["https://data.delijn.be/stops/305461", "https://data.delijn.be/stops/305463"], ["https://data.delijn.be/stops/500230", "https://data.delijn.be/stops/590333"], ["https://data.delijn.be/stops/400237", "https://data.delijn.be/stops/406283"], ["https://data.delijn.be/stops/204131", "https://data.delijn.be/stops/205131"], ["https://data.delijn.be/stops/508126", "https://data.delijn.be/stops/509885"], ["https://data.delijn.be/stops/107370", "https://data.delijn.be/stops/107375"], ["https://data.delijn.be/stops/501760", "https://data.delijn.be/stops/506760"], ["https://data.delijn.be/stops/101166", "https://data.delijn.be/stops/104315"], ["https://data.delijn.be/stops/506045", "https://data.delijn.be/stops/506051"], ["https://data.delijn.be/stops/102159", "https://data.delijn.be/stops/108959"], ["https://data.delijn.be/stops/108127", "https://data.delijn.be/stops/108319"], ["https://data.delijn.be/stops/206665", "https://data.delijn.be/stops/206719"], ["https://data.delijn.be/stops/502932", "https://data.delijn.be/stops/504961"], ["https://data.delijn.be/stops/302472", "https://data.delijn.be/stops/302474"], ["https://data.delijn.be/stops/107974", "https://data.delijn.be/stops/107976"], ["https://data.delijn.be/stops/102179", "https://data.delijn.be/stops/102960"], ["https://data.delijn.be/stops/102708", "https://data.delijn.be/stops/102842"], ["https://data.delijn.be/stops/302075", "https://data.delijn.be/stops/302088"], ["https://data.delijn.be/stops/404926", "https://data.delijn.be/stops/404927"], ["https://data.delijn.be/stops/405519", "https://data.delijn.be/stops/407295"], ["https://data.delijn.be/stops/301316", "https://data.delijn.be/stops/306286"], ["https://data.delijn.be/stops/102969", "https://data.delijn.be/stops/106039"], ["https://data.delijn.be/stops/206614", "https://data.delijn.be/stops/206764"], ["https://data.delijn.be/stops/508069", "https://data.delijn.be/stops/508522"], ["https://data.delijn.be/stops/401208", "https://data.delijn.be/stops/401209"], ["https://data.delijn.be/stops/307406", "https://data.delijn.be/stops/308054"], ["https://data.delijn.be/stops/200626", "https://data.delijn.be/stops/210092"], ["https://data.delijn.be/stops/300435", "https://data.delijn.be/stops/301273"], ["https://data.delijn.be/stops/502765", "https://data.delijn.be/stops/507712"], ["https://data.delijn.be/stops/408230", "https://data.delijn.be/stops/408231"], ["https://data.delijn.be/stops/503671", "https://data.delijn.be/stops/508671"], ["https://data.delijn.be/stops/502072", "https://data.delijn.be/stops/505705"], ["https://data.delijn.be/stops/302575", "https://data.delijn.be/stops/305125"], ["https://data.delijn.be/stops/500941", "https://data.delijn.be/stops/508181"], ["https://data.delijn.be/stops/409687", "https://data.delijn.be/stops/409704"], ["https://data.delijn.be/stops/206117", "https://data.delijn.be/stops/207116"], ["https://data.delijn.be/stops/304960", "https://data.delijn.be/stops/304961"], ["https://data.delijn.be/stops/404217", "https://data.delijn.be/stops/404219"], ["https://data.delijn.be/stops/504048", "https://data.delijn.be/stops/504988"], ["https://data.delijn.be/stops/108995", "https://data.delijn.be/stops/108997"], ["https://data.delijn.be/stops/402718", "https://data.delijn.be/stops/405994"], ["https://data.delijn.be/stops/402603", "https://data.delijn.be/stops/402643"], ["https://data.delijn.be/stops/507378", "https://data.delijn.be/stops/507400"], ["https://data.delijn.be/stops/102541", "https://data.delijn.be/stops/406547"], ["https://data.delijn.be/stops/207539", "https://data.delijn.be/stops/207540"], ["https://data.delijn.be/stops/501227", "https://data.delijn.be/stops/506227"], ["https://data.delijn.be/stops/206683", "https://data.delijn.be/stops/207976"], ["https://data.delijn.be/stops/300887", "https://data.delijn.be/stops/333233"], ["https://data.delijn.be/stops/406010", "https://data.delijn.be/stops/406133"], ["https://data.delijn.be/stops/209075", "https://data.delijn.be/stops/209127"], ["https://data.delijn.be/stops/401629", "https://data.delijn.be/stops/308246"], ["https://data.delijn.be/stops/301844", "https://data.delijn.be/stops/305979"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/204091"], ["https://data.delijn.be/stops/505521", "https://data.delijn.be/stops/505522"], ["https://data.delijn.be/stops/302627", "https://data.delijn.be/stops/302628"], ["https://data.delijn.be/stops/109730", "https://data.delijn.be/stops/205634"], ["https://data.delijn.be/stops/204929", "https://data.delijn.be/stops/209724"], ["https://data.delijn.be/stops/505996", "https://data.delijn.be/stops/508291"], ["https://data.delijn.be/stops/106171", "https://data.delijn.be/stops/107444"], ["https://data.delijn.be/stops/505988", "https://data.delijn.be/stops/509716"], ["https://data.delijn.be/stops/502519", "https://data.delijn.be/stops/507521"], ["https://data.delijn.be/stops/205941", "https://data.delijn.be/stops/211082"], ["https://data.delijn.be/stops/201803", "https://data.delijn.be/stops/201845"], ["https://data.delijn.be/stops/202782", "https://data.delijn.be/stops/203782"], ["https://data.delijn.be/stops/202479", "https://data.delijn.be/stops/203481"], ["https://data.delijn.be/stops/402290", "https://data.delijn.be/stops/402293"], ["https://data.delijn.be/stops/106011", "https://data.delijn.be/stops/107910"], ["https://data.delijn.be/stops/200942", "https://data.delijn.be/stops/200952"], ["https://data.delijn.be/stops/303620", "https://data.delijn.be/stops/303621"], ["https://data.delijn.be/stops/200105", "https://data.delijn.be/stops/200107"], ["https://data.delijn.be/stops/305348", "https://data.delijn.be/stops/307971"], ["https://data.delijn.be/stops/505899", "https://data.delijn.be/stops/508051"], ["https://data.delijn.be/stops/205481", "https://data.delijn.be/stops/205525"], ["https://data.delijn.be/stops/300658", "https://data.delijn.be/stops/302476"], ["https://data.delijn.be/stops/401924", "https://data.delijn.be/stops/405748"], ["https://data.delijn.be/stops/503978", "https://data.delijn.be/stops/508952"], ["https://data.delijn.be/stops/304032", "https://data.delijn.be/stops/306277"], ["https://data.delijn.be/stops/405500", "https://data.delijn.be/stops/406243"], ["https://data.delijn.be/stops/201222", "https://data.delijn.be/stops/209987"], ["https://data.delijn.be/stops/400091", "https://data.delijn.be/stops/400150"], ["https://data.delijn.be/stops/200754", "https://data.delijn.be/stops/200771"], ["https://data.delijn.be/stops/402240", "https://data.delijn.be/stops/402495"], ["https://data.delijn.be/stops/407994", "https://data.delijn.be/stops/407995"], ["https://data.delijn.be/stops/200944", "https://data.delijn.be/stops/203727"], ["https://data.delijn.be/stops/407856", "https://data.delijn.be/stops/407858"], ["https://data.delijn.be/stops/304438", "https://data.delijn.be/stops/304455"], ["https://data.delijn.be/stops/405157", "https://data.delijn.be/stops/405176"], ["https://data.delijn.be/stops/303376", "https://data.delijn.be/stops/308867"], ["https://data.delijn.be/stops/200509", "https://data.delijn.be/stops/211510"], ["https://data.delijn.be/stops/107074", "https://data.delijn.be/stops/107077"], ["https://data.delijn.be/stops/304329", "https://data.delijn.be/stops/304330"], ["https://data.delijn.be/stops/204993", "https://data.delijn.be/stops/205993"], ["https://data.delijn.be/stops/206679", "https://data.delijn.be/stops/209104"], ["https://data.delijn.be/stops/505407", "https://data.delijn.be/stops/505994"], ["https://data.delijn.be/stops/505768", "https://data.delijn.be/stops/507030"], ["https://data.delijn.be/stops/106692", "https://data.delijn.be/stops/106694"], ["https://data.delijn.be/stops/206278", "https://data.delijn.be/stops/207962"], ["https://data.delijn.be/stops/202221", "https://data.delijn.be/stops/205832"], ["https://data.delijn.be/stops/203693", "https://data.delijn.be/stops/211023"], ["https://data.delijn.be/stops/109635", "https://data.delijn.be/stops/109636"], ["https://data.delijn.be/stops/102126", "https://data.delijn.be/stops/107424"], ["https://data.delijn.be/stops/200385", "https://data.delijn.be/stops/200387"], ["https://data.delijn.be/stops/409077", "https://data.delijn.be/stops/409078"], ["https://data.delijn.be/stops/505625", "https://data.delijn.be/stops/505626"], ["https://data.delijn.be/stops/200477", "https://data.delijn.be/stops/208963"], ["https://data.delijn.be/stops/503444", "https://data.delijn.be/stops/504872"], ["https://data.delijn.be/stops/508691", "https://data.delijn.be/stops/509955"], ["https://data.delijn.be/stops/107458", "https://data.delijn.be/stops/107461"], ["https://data.delijn.be/stops/204991", "https://data.delijn.be/stops/208781"], ["https://data.delijn.be/stops/405064", "https://data.delijn.be/stops/405065"], ["https://data.delijn.be/stops/202747", "https://data.delijn.be/stops/206422"], ["https://data.delijn.be/stops/200979", "https://data.delijn.be/stops/201384"], ["https://data.delijn.be/stops/207561", "https://data.delijn.be/stops/207570"], ["https://data.delijn.be/stops/105737", "https://data.delijn.be/stops/109931"], ["https://data.delijn.be/stops/300334", "https://data.delijn.be/stops/300335"], ["https://data.delijn.be/stops/404167", "https://data.delijn.be/stops/404197"], ["https://data.delijn.be/stops/102725", "https://data.delijn.be/stops/109522"], ["https://data.delijn.be/stops/405504", "https://data.delijn.be/stops/408447"], ["https://data.delijn.be/stops/401777", "https://data.delijn.be/stops/401779"], ["https://data.delijn.be/stops/503854", "https://data.delijn.be/stops/503859"], ["https://data.delijn.be/stops/201701", "https://data.delijn.be/stops/202556"], ["https://data.delijn.be/stops/105274", "https://data.delijn.be/stops/105276"], ["https://data.delijn.be/stops/502411", "https://data.delijn.be/stops/502581"], ["https://data.delijn.be/stops/202347", "https://data.delijn.be/stops/208528"], ["https://data.delijn.be/stops/405772", "https://data.delijn.be/stops/405773"], ["https://data.delijn.be/stops/503056", "https://data.delijn.be/stops/508054"], ["https://data.delijn.be/stops/102292", "https://data.delijn.be/stops/109735"], ["https://data.delijn.be/stops/108573", "https://data.delijn.be/stops/108991"], ["https://data.delijn.be/stops/503084", "https://data.delijn.be/stops/503631"], ["https://data.delijn.be/stops/405779", "https://data.delijn.be/stops/405826"], ["https://data.delijn.be/stops/503978", "https://data.delijn.be/stops/509978"], ["https://data.delijn.be/stops/504853", "https://data.delijn.be/stops/508833"], ["https://data.delijn.be/stops/403493", "https://data.delijn.be/stops/403494"], ["https://data.delijn.be/stops/105799", "https://data.delijn.be/stops/105801"], ["https://data.delijn.be/stops/303293", "https://data.delijn.be/stops/306971"], ["https://data.delijn.be/stops/401066", "https://data.delijn.be/stops/401177"], ["https://data.delijn.be/stops/106114", "https://data.delijn.be/stops/106115"], ["https://data.delijn.be/stops/501071", "https://data.delijn.be/stops/501075"], ["https://data.delijn.be/stops/407558", "https://data.delijn.be/stops/407559"], ["https://data.delijn.be/stops/507352", "https://data.delijn.be/stops/508718"], ["https://data.delijn.be/stops/401848", "https://data.delijn.be/stops/406237"], ["https://data.delijn.be/stops/103502", "https://data.delijn.be/stops/109896"], ["https://data.delijn.be/stops/206279", "https://data.delijn.be/stops/207280"], ["https://data.delijn.be/stops/303471", "https://data.delijn.be/stops/304176"], ["https://data.delijn.be/stops/402855", "https://data.delijn.be/stops/402856"], ["https://data.delijn.be/stops/407138", "https://data.delijn.be/stops/407286"], ["https://data.delijn.be/stops/410052", "https://data.delijn.be/stops/410053"], ["https://data.delijn.be/stops/502407", "https://data.delijn.be/stops/507407"], ["https://data.delijn.be/stops/207839", "https://data.delijn.be/stops/208953"], ["https://data.delijn.be/stops/104590", "https://data.delijn.be/stops/105065"], ["https://data.delijn.be/stops/505368", "https://data.delijn.be/stops/509057"], ["https://data.delijn.be/stops/506246", "https://data.delijn.be/stops/506768"], ["https://data.delijn.be/stops/204195", "https://data.delijn.be/stops/205195"], ["https://data.delijn.be/stops/405552", "https://data.delijn.be/stops/405604"], ["https://data.delijn.be/stops/400077", "https://data.delijn.be/stops/406362"], ["https://data.delijn.be/stops/202088", "https://data.delijn.be/stops/203721"], ["https://data.delijn.be/stops/404361", "https://data.delijn.be/stops/404366"], ["https://data.delijn.be/stops/303713", "https://data.delijn.be/stops/303720"], ["https://data.delijn.be/stops/506370", "https://data.delijn.be/stops/506768"], ["https://data.delijn.be/stops/101206", "https://data.delijn.be/stops/205542"], ["https://data.delijn.be/stops/401790", "https://data.delijn.be/stops/406125"], ["https://data.delijn.be/stops/304957", "https://data.delijn.be/stops/304970"], ["https://data.delijn.be/stops/103486", "https://data.delijn.be/stops/103493"], ["https://data.delijn.be/stops/104450", "https://data.delijn.be/stops/104600"], ["https://data.delijn.be/stops/405830", "https://data.delijn.be/stops/409698"], ["https://data.delijn.be/stops/501147", "https://data.delijn.be/stops/509834"], ["https://data.delijn.be/stops/102323", "https://data.delijn.be/stops/105266"], ["https://data.delijn.be/stops/405249", "https://data.delijn.be/stops/407313"], ["https://data.delijn.be/stops/106878", "https://data.delijn.be/stops/106881"], ["https://data.delijn.be/stops/105798", "https://data.delijn.be/stops/105801"], ["https://data.delijn.be/stops/207884", "https://data.delijn.be/stops/207893"], ["https://data.delijn.be/stops/108279", "https://data.delijn.be/stops/108281"], ["https://data.delijn.be/stops/107225", "https://data.delijn.be/stops/109888"], ["https://data.delijn.be/stops/407511", "https://data.delijn.be/stops/409746"], ["https://data.delijn.be/stops/206244", "https://data.delijn.be/stops/207403"], ["https://data.delijn.be/stops/502495", "https://data.delijn.be/stops/507734"], ["https://data.delijn.be/stops/200007", "https://data.delijn.be/stops/201008"], ["https://data.delijn.be/stops/108962", "https://data.delijn.be/stops/108963"], ["https://data.delijn.be/stops/200019", "https://data.delijn.be/stops/202648"], ["https://data.delijn.be/stops/503431", "https://data.delijn.be/stops/503441"], ["https://data.delijn.be/stops/201387", "https://data.delijn.be/stops/203647"], ["https://data.delijn.be/stops/501422", "https://data.delijn.be/stops/506218"], ["https://data.delijn.be/stops/508568", "https://data.delijn.be/stops/508807"], ["https://data.delijn.be/stops/400327", "https://data.delijn.be/stops/400360"], ["https://data.delijn.be/stops/407678", "https://data.delijn.be/stops/407679"], ["https://data.delijn.be/stops/506317", "https://data.delijn.be/stops/506328"], ["https://data.delijn.be/stops/403572", "https://data.delijn.be/stops/409526"], ["https://data.delijn.be/stops/204053", "https://data.delijn.be/stops/204704"], ["https://data.delijn.be/stops/401628", "https://data.delijn.be/stops/308217"], ["https://data.delijn.be/stops/201972", "https://data.delijn.be/stops/208692"], ["https://data.delijn.be/stops/102198", "https://data.delijn.be/stops/105256"], ["https://data.delijn.be/stops/204759", "https://data.delijn.be/stops/205376"], ["https://data.delijn.be/stops/306699", "https://data.delijn.be/stops/306702"], ["https://data.delijn.be/stops/402975", "https://data.delijn.be/stops/403318"], ["https://data.delijn.be/stops/405737", "https://data.delijn.be/stops/410142"], ["https://data.delijn.be/stops/304712", "https://data.delijn.be/stops/306335"], ["https://data.delijn.be/stops/202713", "https://data.delijn.be/stops/203729"], ["https://data.delijn.be/stops/500026", "https://data.delijn.be/stops/500027"], ["https://data.delijn.be/stops/208609", "https://data.delijn.be/stops/208610"], ["https://data.delijn.be/stops/105288", "https://data.delijn.be/stops/106495"], ["https://data.delijn.be/stops/504211", "https://data.delijn.be/stops/504217"], ["https://data.delijn.be/stops/504352", "https://data.delijn.be/stops/509353"], ["https://data.delijn.be/stops/101687", "https://data.delijn.be/stops/103693"], ["https://data.delijn.be/stops/101440", "https://data.delijn.be/stops/104122"], ["https://data.delijn.be/stops/206707", "https://data.delijn.be/stops/207613"], ["https://data.delijn.be/stops/501405", "https://data.delijn.be/stops/501407"], ["https://data.delijn.be/stops/206181", "https://data.delijn.be/stops/308566"], ["https://data.delijn.be/stops/103142", "https://data.delijn.be/stops/103143"], ["https://data.delijn.be/stops/209574", "https://data.delijn.be/stops/307312"], ["https://data.delijn.be/stops/104286", "https://data.delijn.be/stops/109748"], ["https://data.delijn.be/stops/102648", "https://data.delijn.be/stops/107813"], ["https://data.delijn.be/stops/501776", "https://data.delijn.be/stops/501778"], ["https://data.delijn.be/stops/302134", "https://data.delijn.be/stops/305597"], ["https://data.delijn.be/stops/404060", "https://data.delijn.be/stops/404061"], ["https://data.delijn.be/stops/303418", "https://data.delijn.be/stops/303419"], ["https://data.delijn.be/stops/403525", "https://data.delijn.be/stops/403619"], ["https://data.delijn.be/stops/200101", "https://data.delijn.be/stops/201101"], ["https://data.delijn.be/stops/206545", "https://data.delijn.be/stops/207545"], ["https://data.delijn.be/stops/204133", "https://data.delijn.be/stops/205238"], ["https://data.delijn.be/stops/109021", "https://data.delijn.be/stops/109022"], ["https://data.delijn.be/stops/505018", "https://data.delijn.be/stops/507550"], ["https://data.delijn.be/stops/303299", "https://data.delijn.be/stops/303301"], ["https://data.delijn.be/stops/400823", "https://data.delijn.be/stops/403570"], ["https://data.delijn.be/stops/304431", "https://data.delijn.be/stops/307697"], ["https://data.delijn.be/stops/504026", "https://data.delijn.be/stops/509036"], ["https://data.delijn.be/stops/203029", "https://data.delijn.be/stops/203034"], ["https://data.delijn.be/stops/206551", "https://data.delijn.be/stops/207550"], ["https://data.delijn.be/stops/400366", "https://data.delijn.be/stops/400367"], ["https://data.delijn.be/stops/300114", "https://data.delijn.be/stops/306845"], ["https://data.delijn.be/stops/206385", "https://data.delijn.be/stops/207385"], ["https://data.delijn.be/stops/404243", "https://data.delijn.be/stops/409813"], ["https://data.delijn.be/stops/300157", "https://data.delijn.be/stops/300176"], ["https://data.delijn.be/stops/104899", "https://data.delijn.be/stops/107545"], ["https://data.delijn.be/stops/200338", "https://data.delijn.be/stops/201295"], ["https://data.delijn.be/stops/305280", "https://data.delijn.be/stops/305325"], ["https://data.delijn.be/stops/408868", "https://data.delijn.be/stops/408869"], ["https://data.delijn.be/stops/409072", "https://data.delijn.be/stops/409154"], ["https://data.delijn.be/stops/108810", "https://data.delijn.be/stops/108811"], ["https://data.delijn.be/stops/501536", "https://data.delijn.be/stops/505398"], ["https://data.delijn.be/stops/303401", "https://data.delijn.be/stops/303793"], ["https://data.delijn.be/stops/502403", "https://data.delijn.be/stops/507398"], ["https://data.delijn.be/stops/302888", "https://data.delijn.be/stops/302898"], ["https://data.delijn.be/stops/407700", "https://data.delijn.be/stops/408448"], ["https://data.delijn.be/stops/203810", "https://data.delijn.be/stops/208736"], ["https://data.delijn.be/stops/206544", "https://data.delijn.be/stops/209750"], ["https://data.delijn.be/stops/409616", "https://data.delijn.be/stops/409664"], ["https://data.delijn.be/stops/203840", "https://data.delijn.be/stops/208736"], ["https://data.delijn.be/stops/201812", "https://data.delijn.be/stops/201813"], ["https://data.delijn.be/stops/201934", "https://data.delijn.be/stops/203440"], ["https://data.delijn.be/stops/300499", "https://data.delijn.be/stops/300529"], ["https://data.delijn.be/stops/403272", "https://data.delijn.be/stops/408453"], ["https://data.delijn.be/stops/300335", "https://data.delijn.be/stops/307649"], ["https://data.delijn.be/stops/101372", "https://data.delijn.be/stops/101400"], ["https://data.delijn.be/stops/408095", "https://data.delijn.be/stops/409108"], ["https://data.delijn.be/stops/204378", "https://data.delijn.be/stops/205378"], ["https://data.delijn.be/stops/207370", "https://data.delijn.be/stops/207728"], ["https://data.delijn.be/stops/503778", "https://data.delijn.be/stops/503779"], ["https://data.delijn.be/stops/206424", "https://data.delijn.be/stops/206568"], ["https://data.delijn.be/stops/204584", "https://data.delijn.be/stops/205154"], ["https://data.delijn.be/stops/200640", "https://data.delijn.be/stops/203905"], ["https://data.delijn.be/stops/409857", "https://data.delijn.be/stops/410094"], ["https://data.delijn.be/stops/508185", "https://data.delijn.be/stops/508187"], ["https://data.delijn.be/stops/107548", "https://data.delijn.be/stops/108125"], ["https://data.delijn.be/stops/205237", "https://data.delijn.be/stops/207313"], ["https://data.delijn.be/stops/300449", "https://data.delijn.be/stops/306288"], ["https://data.delijn.be/stops/406350", "https://data.delijn.be/stops/406374"], ["https://data.delijn.be/stops/207475", "https://data.delijn.be/stops/207508"], ["https://data.delijn.be/stops/504192", "https://data.delijn.be/stops/509192"], ["https://data.delijn.be/stops/103130", "https://data.delijn.be/stops/104910"], ["https://data.delijn.be/stops/504766", "https://data.delijn.be/stops/504767"], ["https://data.delijn.be/stops/404729", "https://data.delijn.be/stops/406751"], ["https://data.delijn.be/stops/300998", "https://data.delijn.be/stops/301004"], ["https://data.delijn.be/stops/300346", "https://data.delijn.be/stops/304714"], ["https://data.delijn.be/stops/408034", "https://data.delijn.be/stops/408055"], ["https://data.delijn.be/stops/209289", "https://data.delijn.be/stops/218004"], ["https://data.delijn.be/stops/308495", "https://data.delijn.be/stops/308497"], ["https://data.delijn.be/stops/302737", "https://data.delijn.be/stops/307705"], ["https://data.delijn.be/stops/501186", "https://data.delijn.be/stops/507286"], ["https://data.delijn.be/stops/401441", "https://data.delijn.be/stops/404181"], ["https://data.delijn.be/stops/109276", "https://data.delijn.be/stops/109278"], ["https://data.delijn.be/stops/306644", "https://data.delijn.be/stops/308766"], ["https://data.delijn.be/stops/402537", "https://data.delijn.be/stops/402545"], ["https://data.delijn.be/stops/408206", "https://data.delijn.be/stops/408395"], ["https://data.delijn.be/stops/304368", "https://data.delijn.be/stops/307097"], ["https://data.delijn.be/stops/308060", "https://data.delijn.be/stops/308061"], ["https://data.delijn.be/stops/106953", "https://data.delijn.be/stops/106954"], ["https://data.delijn.be/stops/400455", "https://data.delijn.be/stops/400466"], ["https://data.delijn.be/stops/300705", "https://data.delijn.be/stops/308064"], ["https://data.delijn.be/stops/105888", "https://data.delijn.be/stops/105891"], ["https://data.delijn.be/stops/202946", "https://data.delijn.be/stops/203945"], ["https://data.delijn.be/stops/400879", "https://data.delijn.be/stops/409530"], ["https://data.delijn.be/stops/307330", "https://data.delijn.be/stops/307911"], ["https://data.delijn.be/stops/506000", "https://data.delijn.be/stops/508161"], ["https://data.delijn.be/stops/405760", "https://data.delijn.be/stops/303324"], ["https://data.delijn.be/stops/400458", "https://data.delijn.be/stops/407751"], ["https://data.delijn.be/stops/106129", "https://data.delijn.be/stops/106130"], ["https://data.delijn.be/stops/202314", "https://data.delijn.be/stops/202315"], ["https://data.delijn.be/stops/508167", "https://data.delijn.be/stops/508265"], ["https://data.delijn.be/stops/409295", "https://data.delijn.be/stops/409300"], ["https://data.delijn.be/stops/106310", "https://data.delijn.be/stops/106313"], ["https://data.delijn.be/stops/104601", "https://data.delijn.be/stops/106838"], ["https://data.delijn.be/stops/403001", "https://data.delijn.be/stops/409317"], ["https://data.delijn.be/stops/401295", "https://data.delijn.be/stops/405467"], ["https://data.delijn.be/stops/202511", "https://data.delijn.be/stops/202512"], ["https://data.delijn.be/stops/106097", "https://data.delijn.be/stops/106146"], ["https://data.delijn.be/stops/504548", "https://data.delijn.be/stops/504551"], ["https://data.delijn.be/stops/200346", "https://data.delijn.be/stops/201346"], ["https://data.delijn.be/stops/202302", "https://data.delijn.be/stops/203302"], ["https://data.delijn.be/stops/302530", "https://data.delijn.be/stops/308936"], ["https://data.delijn.be/stops/301740", "https://data.delijn.be/stops/308423"], ["https://data.delijn.be/stops/200210", "https://data.delijn.be/stops/201128"], ["https://data.delijn.be/stops/406908", "https://data.delijn.be/stops/406974"], ["https://data.delijn.be/stops/201639", "https://data.delijn.be/stops/202943"], ["https://data.delijn.be/stops/300487", "https://data.delijn.be/stops/307219"], ["https://data.delijn.be/stops/502439", "https://data.delijn.be/stops/505577"], ["https://data.delijn.be/stops/202676", "https://data.delijn.be/stops/203726"], ["https://data.delijn.be/stops/503731", "https://data.delijn.be/stops/508703"], ["https://data.delijn.be/stops/206762", "https://data.delijn.be/stops/206858"], ["https://data.delijn.be/stops/501248", "https://data.delijn.be/stops/506773"], ["https://data.delijn.be/stops/101849", "https://data.delijn.be/stops/107229"], ["https://data.delijn.be/stops/302619", "https://data.delijn.be/stops/303256"], ["https://data.delijn.be/stops/305385", "https://data.delijn.be/stops/305398"], ["https://data.delijn.be/stops/507494", "https://data.delijn.be/stops/507512"], ["https://data.delijn.be/stops/108628", "https://data.delijn.be/stops/108993"], ["https://data.delijn.be/stops/503221", "https://data.delijn.be/stops/508221"], ["https://data.delijn.be/stops/301390", "https://data.delijn.be/stops/304685"], ["https://data.delijn.be/stops/407069", "https://data.delijn.be/stops/407071"], ["https://data.delijn.be/stops/307160", "https://data.delijn.be/stops/307777"], ["https://data.delijn.be/stops/307330", "https://data.delijn.be/stops/308156"], ["https://data.delijn.be/stops/404933", "https://data.delijn.be/stops/404939"], ["https://data.delijn.be/stops/303564", "https://data.delijn.be/stops/303565"], ["https://data.delijn.be/stops/102192", "https://data.delijn.be/stops/102193"], ["https://data.delijn.be/stops/207902", "https://data.delijn.be/stops/207917"], ["https://data.delijn.be/stops/107854", "https://data.delijn.be/stops/107858"], ["https://data.delijn.be/stops/207597", "https://data.delijn.be/stops/209665"], ["https://data.delijn.be/stops/108607", "https://data.delijn.be/stops/307349"], ["https://data.delijn.be/stops/202386", "https://data.delijn.be/stops/203387"], ["https://data.delijn.be/stops/107689", "https://data.delijn.be/stops/108705"], ["https://data.delijn.be/stops/201949", "https://data.delijn.be/stops/202943"], ["https://data.delijn.be/stops/304322", "https://data.delijn.be/stops/306882"], ["https://data.delijn.be/stops/104884", "https://data.delijn.be/stops/205630"], ["https://data.delijn.be/stops/500128", "https://data.delijn.be/stops/505741"], ["https://data.delijn.be/stops/401418", "https://data.delijn.be/stops/301076"], ["https://data.delijn.be/stops/403008", "https://data.delijn.be/stops/403309"], ["https://data.delijn.be/stops/406154", "https://data.delijn.be/stops/406156"], ["https://data.delijn.be/stops/208015", "https://data.delijn.be/stops/209096"], ["https://data.delijn.be/stops/300719", "https://data.delijn.be/stops/300720"], ["https://data.delijn.be/stops/508793", "https://data.delijn.be/stops/508864"], ["https://data.delijn.be/stops/403093", "https://data.delijn.be/stops/403125"], ["https://data.delijn.be/stops/200950", "https://data.delijn.be/stops/203228"], ["https://data.delijn.be/stops/507668", "https://data.delijn.be/stops/507669"], ["https://data.delijn.be/stops/200351", "https://data.delijn.be/stops/200353"], ["https://data.delijn.be/stops/206503", "https://data.delijn.be/stops/207152"], ["https://data.delijn.be/stops/503809", "https://data.delijn.be/stops/508802"], ["https://data.delijn.be/stops/407725", "https://data.delijn.be/stops/410087"], ["https://data.delijn.be/stops/402510", "https://data.delijn.be/stops/402519"], ["https://data.delijn.be/stops/303965", "https://data.delijn.be/stops/303967"], ["https://data.delijn.be/stops/204979", "https://data.delijn.be/stops/209162"], ["https://data.delijn.be/stops/401063", "https://data.delijn.be/stops/407099"], ["https://data.delijn.be/stops/104607", "https://data.delijn.be/stops/108462"], ["https://data.delijn.be/stops/108877", "https://data.delijn.be/stops/108879"], ["https://data.delijn.be/stops/304890", "https://data.delijn.be/stops/306710"], ["https://data.delijn.be/stops/405620", "https://data.delijn.be/stops/406786"], ["https://data.delijn.be/stops/204507", "https://data.delijn.be/stops/205508"], ["https://data.delijn.be/stops/204210", "https://data.delijn.be/stops/206312"], ["https://data.delijn.be/stops/502667", "https://data.delijn.be/stops/507667"], ["https://data.delijn.be/stops/408686", "https://data.delijn.be/stops/410083"], ["https://data.delijn.be/stops/201922", "https://data.delijn.be/stops/202240"], ["https://data.delijn.be/stops/103225", "https://data.delijn.be/stops/107395"], ["https://data.delijn.be/stops/408563", "https://data.delijn.be/stops/408691"], ["https://data.delijn.be/stops/109989", "https://data.delijn.be/stops/109991"], ["https://data.delijn.be/stops/300028", "https://data.delijn.be/stops/307435"], ["https://data.delijn.be/stops/200594", "https://data.delijn.be/stops/210129"], ["https://data.delijn.be/stops/405530", "https://data.delijn.be/stops/407284"], ["https://data.delijn.be/stops/105166", "https://data.delijn.be/stops/105369"], ["https://data.delijn.be/stops/204046", "https://data.delijn.be/stops/205517"], ["https://data.delijn.be/stops/108679", "https://data.delijn.be/stops/306628"], ["https://data.delijn.be/stops/402300", "https://data.delijn.be/stops/402366"], ["https://data.delijn.be/stops/402408", "https://data.delijn.be/stops/402433"], ["https://data.delijn.be/stops/502179", "https://data.delijn.be/stops/502180"], ["https://data.delijn.be/stops/105727", "https://data.delijn.be/stops/107090"], ["https://data.delijn.be/stops/205286", "https://data.delijn.be/stops/205695"], ["https://data.delijn.be/stops/106823", "https://data.delijn.be/stops/106825"], ["https://data.delijn.be/stops/208254", "https://data.delijn.be/stops/219027"], ["https://data.delijn.be/stops/200568", "https://data.delijn.be/stops/211094"], ["https://data.delijn.be/stops/501070", "https://data.delijn.be/stops/506379"], ["https://data.delijn.be/stops/501182", "https://data.delijn.be/stops/506677"], ["https://data.delijn.be/stops/506379", "https://data.delijn.be/stops/506384"], ["https://data.delijn.be/stops/204694", "https://data.delijn.be/stops/205209"], ["https://data.delijn.be/stops/208715", "https://data.delijn.be/stops/211004"], ["https://data.delijn.be/stops/208429", "https://data.delijn.be/stops/209429"], ["https://data.delijn.be/stops/305445", "https://data.delijn.be/stops/306701"], ["https://data.delijn.be/stops/308535", "https://data.delijn.be/stops/308692"], ["https://data.delijn.be/stops/203672", "https://data.delijn.be/stops/211036"], ["https://data.delijn.be/stops/106431", "https://data.delijn.be/stops/107116"], ["https://data.delijn.be/stops/206481", "https://data.delijn.be/stops/207453"], ["https://data.delijn.be/stops/200926", "https://data.delijn.be/stops/200938"], ["https://data.delijn.be/stops/203670", "https://data.delijn.be/stops/210034"], ["https://data.delijn.be/stops/204681", "https://data.delijn.be/stops/205615"], ["https://data.delijn.be/stops/505548", "https://data.delijn.be/stops/507688"], ["https://data.delijn.be/stops/504338", "https://data.delijn.be/stops/505169"], ["https://data.delijn.be/stops/201936", "https://data.delijn.be/stops/207409"], ["https://data.delijn.be/stops/300463", "https://data.delijn.be/stops/307905"], ["https://data.delijn.be/stops/403094", "https://data.delijn.be/stops/410336"], ["https://data.delijn.be/stops/208346", "https://data.delijn.be/stops/208347"], ["https://data.delijn.be/stops/103334", "https://data.delijn.be/stops/107044"], ["https://data.delijn.be/stops/105123", "https://data.delijn.be/stops/105124"], ["https://data.delijn.be/stops/102525", "https://data.delijn.be/stops/408203"], ["https://data.delijn.be/stops/400264", "https://data.delijn.be/stops/400945"], ["https://data.delijn.be/stops/204630", "https://data.delijn.be/stops/205631"], ["https://data.delijn.be/stops/301996", "https://data.delijn.be/stops/301997"], ["https://data.delijn.be/stops/304096", "https://data.delijn.be/stops/305999"], ["https://data.delijn.be/stops/204107", "https://data.delijn.be/stops/204667"], ["https://data.delijn.be/stops/304226", "https://data.delijn.be/stops/307067"], ["https://data.delijn.be/stops/106637", "https://data.delijn.be/stops/106640"], ["https://data.delijn.be/stops/502924", "https://data.delijn.be/stops/505318"], ["https://data.delijn.be/stops/102131", "https://data.delijn.be/stops/105719"], ["https://data.delijn.be/stops/301872", "https://data.delijn.be/stops/303167"], ["https://data.delijn.be/stops/200275", "https://data.delijn.be/stops/201275"], ["https://data.delijn.be/stops/308441", "https://data.delijn.be/stops/308442"], ["https://data.delijn.be/stops/504771", "https://data.delijn.be/stops/509876"], ["https://data.delijn.be/stops/200341", "https://data.delijn.be/stops/201310"], ["https://data.delijn.be/stops/503807", "https://data.delijn.be/stops/508809"], ["https://data.delijn.be/stops/103075", "https://data.delijn.be/stops/104225"], ["https://data.delijn.be/stops/404734", "https://data.delijn.be/stops/404735"], ["https://data.delijn.be/stops/504000", "https://data.delijn.be/stops/508228"], ["https://data.delijn.be/stops/106785", "https://data.delijn.be/stops/106786"], ["https://data.delijn.be/stops/307833", "https://data.delijn.be/stops/307834"], ["https://data.delijn.be/stops/206634", "https://data.delijn.be/stops/206635"], ["https://data.delijn.be/stops/102440", "https://data.delijn.be/stops/105430"], ["https://data.delijn.be/stops/404431", "https://data.delijn.be/stops/404551"], ["https://data.delijn.be/stops/500005", "https://data.delijn.be/stops/501472"], ["https://data.delijn.be/stops/301116", "https://data.delijn.be/stops/302804"], ["https://data.delijn.be/stops/303555", "https://data.delijn.be/stops/308791"], ["https://data.delijn.be/stops/200803", "https://data.delijn.be/stops/203074"], ["https://data.delijn.be/stops/408599", "https://data.delijn.be/stops/306776"], ["https://data.delijn.be/stops/109811", "https://data.delijn.be/stops/109815"], ["https://data.delijn.be/stops/405559", "https://data.delijn.be/stops/405569"], ["https://data.delijn.be/stops/300805", "https://data.delijn.be/stops/300806"], ["https://data.delijn.be/stops/106396", "https://data.delijn.be/stops/106570"], ["https://data.delijn.be/stops/102292", "https://data.delijn.be/stops/108289"], ["https://data.delijn.be/stops/107737", "https://data.delijn.be/stops/107738"], ["https://data.delijn.be/stops/101812", "https://data.delijn.be/stops/108041"], ["https://data.delijn.be/stops/206375", "https://data.delijn.be/stops/207351"], ["https://data.delijn.be/stops/405908", "https://data.delijn.be/stops/405909"], ["https://data.delijn.be/stops/208258", "https://data.delijn.be/stops/209257"], ["https://data.delijn.be/stops/107610", "https://data.delijn.be/stops/107695"], ["https://data.delijn.be/stops/408548", "https://data.delijn.be/stops/408763"], ["https://data.delijn.be/stops/305697", "https://data.delijn.be/stops/305716"], ["https://data.delijn.be/stops/301568", "https://data.delijn.be/stops/302681"], ["https://data.delijn.be/stops/405642", "https://data.delijn.be/stops/405643"], ["https://data.delijn.be/stops/204796", "https://data.delijn.be/stops/205584"], ["https://data.delijn.be/stops/107960", "https://data.delijn.be/stops/108125"], ["https://data.delijn.be/stops/403198", "https://data.delijn.be/stops/403199"], ["https://data.delijn.be/stops/204396", "https://data.delijn.be/stops/204769"], ["https://data.delijn.be/stops/508243", "https://data.delijn.be/stops/509766"], ["https://data.delijn.be/stops/401172", "https://data.delijn.be/stops/407171"], ["https://data.delijn.be/stops/200699", "https://data.delijn.be/stops/210027"], ["https://data.delijn.be/stops/405238", "https://data.delijn.be/stops/405281"], ["https://data.delijn.be/stops/300742", "https://data.delijn.be/stops/300806"], ["https://data.delijn.be/stops/300202", "https://data.delijn.be/stops/302202"], ["https://data.delijn.be/stops/503164", "https://data.delijn.be/stops/503999"], ["https://data.delijn.be/stops/205990", "https://data.delijn.be/stops/209361"], ["https://data.delijn.be/stops/306619", "https://data.delijn.be/stops/306621"], ["https://data.delijn.be/stops/303327", "https://data.delijn.be/stops/306337"], ["https://data.delijn.be/stops/301216", "https://data.delijn.be/stops/301218"], ["https://data.delijn.be/stops/202190", "https://data.delijn.be/stops/203190"], ["https://data.delijn.be/stops/403602", "https://data.delijn.be/stops/403603"], ["https://data.delijn.be/stops/504744", "https://data.delijn.be/stops/509744"], ["https://data.delijn.be/stops/104456", "https://data.delijn.be/stops/104478"], ["https://data.delijn.be/stops/202925", "https://data.delijn.be/stops/202926"], ["https://data.delijn.be/stops/204212", "https://data.delijn.be/stops/207394"], ["https://data.delijn.be/stops/506511", "https://data.delijn.be/stops/506783"], ["https://data.delijn.be/stops/200055", "https://data.delijn.be/stops/201891"], ["https://data.delijn.be/stops/109625", "https://data.delijn.be/stops/109627"], ["https://data.delijn.be/stops/305781", "https://data.delijn.be/stops/305800"], ["https://data.delijn.be/stops/507384", "https://data.delijn.be/stops/507387"], ["https://data.delijn.be/stops/102419", "https://data.delijn.be/stops/106216"], ["https://data.delijn.be/stops/305483", "https://data.delijn.be/stops/305520"], ["https://data.delijn.be/stops/208225", "https://data.delijn.be/stops/208226"], ["https://data.delijn.be/stops/304415", "https://data.delijn.be/stops/304416"], ["https://data.delijn.be/stops/301368", "https://data.delijn.be/stops/304529"], ["https://data.delijn.be/stops/102577", "https://data.delijn.be/stops/109740"], ["https://data.delijn.be/stops/408267", "https://data.delijn.be/stops/408405"], ["https://data.delijn.be/stops/208067", "https://data.delijn.be/stops/209194"], ["https://data.delijn.be/stops/103970", "https://data.delijn.be/stops/103975"], ["https://data.delijn.be/stops/205614", "https://data.delijn.be/stops/205633"], ["https://data.delijn.be/stops/501210", "https://data.delijn.be/stops/505047"], ["https://data.delijn.be/stops/504625", "https://data.delijn.be/stops/509625"], ["https://data.delijn.be/stops/300417", "https://data.delijn.be/stops/300426"], ["https://data.delijn.be/stops/400586", "https://data.delijn.be/stops/400607"], ["https://data.delijn.be/stops/206519", "https://data.delijn.be/stops/207479"], ["https://data.delijn.be/stops/501033", "https://data.delijn.be/stops/506043"], ["https://data.delijn.be/stops/302588", "https://data.delijn.be/stops/302678"], ["https://data.delijn.be/stops/508549", "https://data.delijn.be/stops/508601"], ["https://data.delijn.be/stops/502366", "https://data.delijn.be/stops/507366"], ["https://data.delijn.be/stops/304938", "https://data.delijn.be/stops/308019"], ["https://data.delijn.be/stops/104844", "https://data.delijn.be/stops/109962"], ["https://data.delijn.be/stops/407945", "https://data.delijn.be/stops/407991"], ["https://data.delijn.be/stops/408495", "https://data.delijn.be/stops/408700"], ["https://data.delijn.be/stops/503655", "https://data.delijn.be/stops/508655"], ["https://data.delijn.be/stops/505012", "https://data.delijn.be/stops/507558"], ["https://data.delijn.be/stops/206100", "https://data.delijn.be/stops/207098"], ["https://data.delijn.be/stops/108467", "https://data.delijn.be/stops/108471"], ["https://data.delijn.be/stops/200145", "https://data.delijn.be/stops/208849"], ["https://data.delijn.be/stops/205351", "https://data.delijn.be/stops/205706"], ["https://data.delijn.be/stops/300182", "https://data.delijn.be/stops/300228"], ["https://data.delijn.be/stops/301514", "https://data.delijn.be/stops/301515"], ["https://data.delijn.be/stops/404006", "https://data.delijn.be/stops/404007"], ["https://data.delijn.be/stops/202037", "https://data.delijn.be/stops/202983"], ["https://data.delijn.be/stops/401192", "https://data.delijn.be/stops/410259"], ["https://data.delijn.be/stops/509739", "https://data.delijn.be/stops/509740"], ["https://data.delijn.be/stops/501715", "https://data.delijn.be/stops/501716"], ["https://data.delijn.be/stops/503146", "https://data.delijn.be/stops/508143"], ["https://data.delijn.be/stops/105214", "https://data.delijn.be/stops/105543"], ["https://data.delijn.be/stops/401125", "https://data.delijn.be/stops/401137"], ["https://data.delijn.be/stops/409078", "https://data.delijn.be/stops/410049"], ["https://data.delijn.be/stops/305594", "https://data.delijn.be/stops/305604"], ["https://data.delijn.be/stops/301679", "https://data.delijn.be/stops/301680"], ["https://data.delijn.be/stops/101293", "https://data.delijn.be/stops/105394"], ["https://data.delijn.be/stops/109114", "https://data.delijn.be/stops/109116"], ["https://data.delijn.be/stops/501406", "https://data.delijn.be/stops/501563"], ["https://data.delijn.be/stops/207763", "https://data.delijn.be/stops/207790"], ["https://data.delijn.be/stops/102874", "https://data.delijn.be/stops/105000"], ["https://data.delijn.be/stops/209597", "https://data.delijn.be/stops/301418"], ["https://data.delijn.be/stops/207674", "https://data.delijn.be/stops/207675"], ["https://data.delijn.be/stops/104854", "https://data.delijn.be/stops/107893"], ["https://data.delijn.be/stops/204188", "https://data.delijn.be/stops/205187"], ["https://data.delijn.be/stops/108285", "https://data.delijn.be/stops/109005"], ["https://data.delijn.be/stops/304933", "https://data.delijn.be/stops/306091"], ["https://data.delijn.be/stops/404227", "https://data.delijn.be/stops/404247"], ["https://data.delijn.be/stops/408864", "https://data.delijn.be/stops/408867"], ["https://data.delijn.be/stops/202364", "https://data.delijn.be/stops/203364"], ["https://data.delijn.be/stops/304126", "https://data.delijn.be/stops/304157"], ["https://data.delijn.be/stops/102849", "https://data.delijn.be/stops/106777"], ["https://data.delijn.be/stops/302896", "https://data.delijn.be/stops/303236"], ["https://data.delijn.be/stops/107105", "https://data.delijn.be/stops/107110"], ["https://data.delijn.be/stops/402592", "https://data.delijn.be/stops/402655"], ["https://data.delijn.be/stops/303125", "https://data.delijn.be/stops/304576"], ["https://data.delijn.be/stops/202370", "https://data.delijn.be/stops/202371"], ["https://data.delijn.be/stops/408736", "https://data.delijn.be/stops/408773"], ["https://data.delijn.be/stops/300826", "https://data.delijn.be/stops/300854"], ["https://data.delijn.be/stops/407910", "https://data.delijn.be/stops/408018"], ["https://data.delijn.be/stops/503482", "https://data.delijn.be/stops/508490"], ["https://data.delijn.be/stops/404522", "https://data.delijn.be/stops/406786"], ["https://data.delijn.be/stops/502804", "https://data.delijn.be/stops/502806"], ["https://data.delijn.be/stops/202937", "https://data.delijn.be/stops/203937"], ["https://data.delijn.be/stops/210066", "https://data.delijn.be/stops/211048"], ["https://data.delijn.be/stops/503933", "https://data.delijn.be/stops/505798"], ["https://data.delijn.be/stops/206757", "https://data.delijn.be/stops/207620"], ["https://data.delijn.be/stops/504014", "https://data.delijn.be/stops/504515"], ["https://data.delijn.be/stops/406628", "https://data.delijn.be/stops/406632"], ["https://data.delijn.be/stops/304136", "https://data.delijn.be/stops/304497"], ["https://data.delijn.be/stops/405694", "https://data.delijn.be/stops/405991"], ["https://data.delijn.be/stops/102856", "https://data.delijn.be/stops/204612"], ["https://data.delijn.be/stops/103785", "https://data.delijn.be/stops/103790"], ["https://data.delijn.be/stops/200716", "https://data.delijn.be/stops/214018"], ["https://data.delijn.be/stops/102016", "https://data.delijn.be/stops/108760"], ["https://data.delijn.be/stops/503604", "https://data.delijn.be/stops/508604"], ["https://data.delijn.be/stops/103219", "https://data.delijn.be/stops/107362"], ["https://data.delijn.be/stops/300103", "https://data.delijn.be/stops/300114"], ["https://data.delijn.be/stops/501301", "https://data.delijn.be/stops/506301"], ["https://data.delijn.be/stops/105107", "https://data.delijn.be/stops/109504"], ["https://data.delijn.be/stops/204951", "https://data.delijn.be/stops/205951"], ["https://data.delijn.be/stops/105247", "https://data.delijn.be/stops/105249"], ["https://data.delijn.be/stops/301484", "https://data.delijn.be/stops/301495"], ["https://data.delijn.be/stops/201109", "https://data.delijn.be/stops/201386"], ["https://data.delijn.be/stops/501286", "https://data.delijn.be/stops/501568"], ["https://data.delijn.be/stops/503623", "https://data.delijn.be/stops/508620"], ["https://data.delijn.be/stops/403618", "https://data.delijn.be/stops/403630"], ["https://data.delijn.be/stops/303793", "https://data.delijn.be/stops/303797"], ["https://data.delijn.be/stops/104904", "https://data.delijn.be/stops/106600"], ["https://data.delijn.be/stops/504963", "https://data.delijn.be/stops/509448"], ["https://data.delijn.be/stops/403050", "https://data.delijn.be/stops/403051"], ["https://data.delijn.be/stops/200183", "https://data.delijn.be/stops/201928"], ["https://data.delijn.be/stops/208585", "https://data.delijn.be/stops/209697"], ["https://data.delijn.be/stops/200412", "https://data.delijn.be/stops/203360"], ["https://data.delijn.be/stops/303849", "https://data.delijn.be/stops/303850"], ["https://data.delijn.be/stops/202631", "https://data.delijn.be/stops/203631"], ["https://data.delijn.be/stops/209443", "https://data.delijn.be/stops/209444"], ["https://data.delijn.be/stops/206256", "https://data.delijn.be/stops/207255"], ["https://data.delijn.be/stops/304895", "https://data.delijn.be/stops/307829"], ["https://data.delijn.be/stops/301911", "https://data.delijn.be/stops/306253"], ["https://data.delijn.be/stops/501100", "https://data.delijn.be/stops/505152"], ["https://data.delijn.be/stops/102090", "https://data.delijn.be/stops/105280"], ["https://data.delijn.be/stops/407191", "https://data.delijn.be/stops/407192"], ["https://data.delijn.be/stops/305282", "https://data.delijn.be/stops/305283"], ["https://data.delijn.be/stops/404071", "https://data.delijn.be/stops/405478"], ["https://data.delijn.be/stops/502279", "https://data.delijn.be/stops/502280"], ["https://data.delijn.be/stops/205123", "https://data.delijn.be/stops/205124"], ["https://data.delijn.be/stops/401528", "https://data.delijn.be/stops/406888"], ["https://data.delijn.be/stops/404997", "https://data.delijn.be/stops/409450"], ["https://data.delijn.be/stops/107365", "https://data.delijn.be/stops/108585"], ["https://data.delijn.be/stops/200975", "https://data.delijn.be/stops/207623"], ["https://data.delijn.be/stops/304618", "https://data.delijn.be/stops/304625"], ["https://data.delijn.be/stops/301646", "https://data.delijn.be/stops/301668"], ["https://data.delijn.be/stops/403908", "https://data.delijn.be/stops/403959"], ["https://data.delijn.be/stops/404350", "https://data.delijn.be/stops/404893"], ["https://data.delijn.be/stops/105261", "https://data.delijn.be/stops/109966"], ["https://data.delijn.be/stops/400111", "https://data.delijn.be/stops/409833"], ["https://data.delijn.be/stops/301872", "https://data.delijn.be/stops/307285"], ["https://data.delijn.be/stops/200406", "https://data.delijn.be/stops/200509"], ["https://data.delijn.be/stops/303948", "https://data.delijn.be/stops/303958"], ["https://data.delijn.be/stops/401904", "https://data.delijn.be/stops/406417"], ["https://data.delijn.be/stops/303364", "https://data.delijn.be/stops/307136"], ["https://data.delijn.be/stops/200166", "https://data.delijn.be/stops/201166"], ["https://data.delijn.be/stops/106954", "https://data.delijn.be/stops/108716"], ["https://data.delijn.be/stops/400587", "https://data.delijn.be/stops/400589"], ["https://data.delijn.be/stops/502046", "https://data.delijn.be/stops/507058"], ["https://data.delijn.be/stops/201239", "https://data.delijn.be/stops/203956"], ["https://data.delijn.be/stops/308520", "https://data.delijn.be/stops/308539"], ["https://data.delijn.be/stops/403927", "https://data.delijn.be/stops/404084"], ["https://data.delijn.be/stops/404361", "https://data.delijn.be/stops/408668"], ["https://data.delijn.be/stops/101854", "https://data.delijn.be/stops/109457"], ["https://data.delijn.be/stops/401256", "https://data.delijn.be/stops/406943"], ["https://data.delijn.be/stops/207480", "https://data.delijn.be/stops/207528"], ["https://data.delijn.be/stops/103250", "https://data.delijn.be/stops/107400"], ["https://data.delijn.be/stops/505929", "https://data.delijn.be/stops/509842"], ["https://data.delijn.be/stops/302564", "https://data.delijn.be/stops/302585"], ["https://data.delijn.be/stops/400092", "https://data.delijn.be/stops/400164"], ["https://data.delijn.be/stops/103305", "https://data.delijn.be/stops/108655"], ["https://data.delijn.be/stops/504544", "https://data.delijn.be/stops/509544"], ["https://data.delijn.be/stops/408292", "https://data.delijn.be/stops/308209"], ["https://data.delijn.be/stops/207675", "https://data.delijn.be/stops/207936"], ["https://data.delijn.be/stops/107483", "https://data.delijn.be/stops/107484"], ["https://data.delijn.be/stops/502663", "https://data.delijn.be/stops/502664"], ["https://data.delijn.be/stops/407771", "https://data.delijn.be/stops/307454"], ["https://data.delijn.be/stops/509059", "https://data.delijn.be/stops/509064"], ["https://data.delijn.be/stops/503196", "https://data.delijn.be/stops/503983"], ["https://data.delijn.be/stops/502442", "https://data.delijn.be/stops/507659"], ["https://data.delijn.be/stops/202583", "https://data.delijn.be/stops/215003"], ["https://data.delijn.be/stops/403153", "https://data.delijn.be/stops/403323"], ["https://data.delijn.be/stops/305779", "https://data.delijn.be/stops/305797"], ["https://data.delijn.be/stops/502322", "https://data.delijn.be/stops/507326"], ["https://data.delijn.be/stops/307181", "https://data.delijn.be/stops/307187"], ["https://data.delijn.be/stops/401288", "https://data.delijn.be/stops/401315"], ["https://data.delijn.be/stops/406948", "https://data.delijn.be/stops/407422"], ["https://data.delijn.be/stops/503689", "https://data.delijn.be/stops/508874"], ["https://data.delijn.be/stops/101195", "https://data.delijn.be/stops/104075"], ["https://data.delijn.be/stops/504244", "https://data.delijn.be/stops/504591"], ["https://data.delijn.be/stops/400061", "https://data.delijn.be/stops/400078"], ["https://data.delijn.be/stops/405756", "https://data.delijn.be/stops/307453"], ["https://data.delijn.be/stops/507013", "https://data.delijn.be/stops/507168"], ["https://data.delijn.be/stops/206115", "https://data.delijn.be/stops/206116"], ["https://data.delijn.be/stops/405973", "https://data.delijn.be/stops/405983"], ["https://data.delijn.be/stops/303165", "https://data.delijn.be/stops/307284"], ["https://data.delijn.be/stops/307921", "https://data.delijn.be/stops/308856"], ["https://data.delijn.be/stops/107760", "https://data.delijn.be/stops/108961"], ["https://data.delijn.be/stops/208417", "https://data.delijn.be/stops/209417"], ["https://data.delijn.be/stops/202621", "https://data.delijn.be/stops/203620"], ["https://data.delijn.be/stops/101008", "https://data.delijn.be/stops/108420"], ["https://data.delijn.be/stops/205025", "https://data.delijn.be/stops/205026"], ["https://data.delijn.be/stops/207536", "https://data.delijn.be/stops/209741"], ["https://data.delijn.be/stops/403200", "https://data.delijn.be/stops/403212"], ["https://data.delijn.be/stops/504260", "https://data.delijn.be/stops/505567"], ["https://data.delijn.be/stops/204242", "https://data.delijn.be/stops/205241"], ["https://data.delijn.be/stops/109198", "https://data.delijn.be/stops/109203"], ["https://data.delijn.be/stops/205640", "https://data.delijn.be/stops/205641"], ["https://data.delijn.be/stops/508813", "https://data.delijn.be/stops/508814"], ["https://data.delijn.be/stops/503039", "https://data.delijn.be/stops/504205"], ["https://data.delijn.be/stops/105098", "https://data.delijn.be/stops/105099"], ["https://data.delijn.be/stops/102745", "https://data.delijn.be/stops/102816"], ["https://data.delijn.be/stops/208595", "https://data.delijn.be/stops/209595"], ["https://data.delijn.be/stops/505183", "https://data.delijn.be/stops/505829"], ["https://data.delijn.be/stops/105985", "https://data.delijn.be/stops/105987"], ["https://data.delijn.be/stops/502719", "https://data.delijn.be/stops/507731"], ["https://data.delijn.be/stops/104578", "https://data.delijn.be/stops/104579"], ["https://data.delijn.be/stops/209295", "https://data.delijn.be/stops/209639"], ["https://data.delijn.be/stops/209609", "https://data.delijn.be/stops/209610"], ["https://data.delijn.be/stops/103991", "https://data.delijn.be/stops/103993"], ["https://data.delijn.be/stops/505678", "https://data.delijn.be/stops/507311"], ["https://data.delijn.be/stops/402338", "https://data.delijn.be/stops/402339"], ["https://data.delijn.be/stops/408642", "https://data.delijn.be/stops/408643"], ["https://data.delijn.be/stops/204017", "https://data.delijn.be/stops/205316"], ["https://data.delijn.be/stops/300555", "https://data.delijn.be/stops/300567"], ["https://data.delijn.be/stops/403097", "https://data.delijn.be/stops/403421"], ["https://data.delijn.be/stops/301555", "https://data.delijn.be/stops/308087"], ["https://data.delijn.be/stops/301845", "https://data.delijn.be/stops/302767"], ["https://data.delijn.be/stops/204101", "https://data.delijn.be/stops/204179"], ["https://data.delijn.be/stops/302424", "https://data.delijn.be/stops/302425"], ["https://data.delijn.be/stops/501061", "https://data.delijn.be/stops/502238"], ["https://data.delijn.be/stops/104276", "https://data.delijn.be/stops/104304"], ["https://data.delijn.be/stops/201464", "https://data.delijn.be/stops/201562"], ["https://data.delijn.be/stops/303005", "https://data.delijn.be/stops/303006"], ["https://data.delijn.be/stops/105282", "https://data.delijn.be/stops/105297"], ["https://data.delijn.be/stops/406958", "https://data.delijn.be/stops/406959"], ["https://data.delijn.be/stops/405739", "https://data.delijn.be/stops/410138"], ["https://data.delijn.be/stops/208528", "https://data.delijn.be/stops/209705"], ["https://data.delijn.be/stops/505058", "https://data.delijn.be/stops/505756"], ["https://data.delijn.be/stops/305430", "https://data.delijn.be/stops/308870"], ["https://data.delijn.be/stops/300955", "https://data.delijn.be/stops/300956"], ["https://data.delijn.be/stops/501346", "https://data.delijn.be/stops/506194"], ["https://data.delijn.be/stops/400769", "https://data.delijn.be/stops/405267"], ["https://data.delijn.be/stops/103301", "https://data.delijn.be/stops/105776"], ["https://data.delijn.be/stops/101518", "https://data.delijn.be/stops/109053"], ["https://data.delijn.be/stops/102072", "https://data.delijn.be/stops/106931"], ["https://data.delijn.be/stops/406424", "https://data.delijn.be/stops/409404"], ["https://data.delijn.be/stops/200843", "https://data.delijn.be/stops/202330"], ["https://data.delijn.be/stops/400962", "https://data.delijn.be/stops/400973"], ["https://data.delijn.be/stops/204485", "https://data.delijn.be/stops/205508"], ["https://data.delijn.be/stops/201856", "https://data.delijn.be/stops/211037"], ["https://data.delijn.be/stops/300817", "https://data.delijn.be/stops/300825"], ["https://data.delijn.be/stops/305155", "https://data.delijn.be/stops/305162"], ["https://data.delijn.be/stops/200744", "https://data.delijn.be/stops/203780"], ["https://data.delijn.be/stops/219080", "https://data.delijn.be/stops/300032"], ["https://data.delijn.be/stops/300461", "https://data.delijn.be/stops/306288"], ["https://data.delijn.be/stops/407860", "https://data.delijn.be/stops/305713"], ["https://data.delijn.be/stops/104794", "https://data.delijn.be/stops/106827"], ["https://data.delijn.be/stops/405175", "https://data.delijn.be/stops/405262"], ["https://data.delijn.be/stops/101170", "https://data.delijn.be/stops/103880"], ["https://data.delijn.be/stops/206395", "https://data.delijn.be/stops/207395"], ["https://data.delijn.be/stops/102633", "https://data.delijn.be/stops/107851"], ["https://data.delijn.be/stops/206092", "https://data.delijn.be/stops/206147"], ["https://data.delijn.be/stops/207281", "https://data.delijn.be/stops/207397"], ["https://data.delijn.be/stops/406525", "https://data.delijn.be/stops/406628"], ["https://data.delijn.be/stops/402243", "https://data.delijn.be/stops/410079"], ["https://data.delijn.be/stops/101752", "https://data.delijn.be/stops/101755"], ["https://data.delijn.be/stops/103696", "https://data.delijn.be/stops/103698"], ["https://data.delijn.be/stops/404013", "https://data.delijn.be/stops/404014"], ["https://data.delijn.be/stops/206773", "https://data.delijn.be/stops/217001"], ["https://data.delijn.be/stops/400210", "https://data.delijn.be/stops/400217"], ["https://data.delijn.be/stops/404346", "https://data.delijn.be/stops/404366"], ["https://data.delijn.be/stops/107558", "https://data.delijn.be/stops/107559"], ["https://data.delijn.be/stops/303300", "https://data.delijn.be/stops/303301"], ["https://data.delijn.be/stops/408728", "https://data.delijn.be/stops/408780"], ["https://data.delijn.be/stops/403015", "https://data.delijn.be/stops/403259"], ["https://data.delijn.be/stops/508346", "https://data.delijn.be/stops/508384"], ["https://data.delijn.be/stops/404162", "https://data.delijn.be/stops/404281"], ["https://data.delijn.be/stops/102665", "https://data.delijn.be/stops/103756"], ["https://data.delijn.be/stops/205449", "https://data.delijn.be/stops/205596"], ["https://data.delijn.be/stops/202494", "https://data.delijn.be/stops/203607"], ["https://data.delijn.be/stops/403285", "https://data.delijn.be/stops/410164"], ["https://data.delijn.be/stops/505247", "https://data.delijn.be/stops/505326"], ["https://data.delijn.be/stops/301307", "https://data.delijn.be/stops/306254"], ["https://data.delijn.be/stops/200870", "https://data.delijn.be/stops/202289"], ["https://data.delijn.be/stops/400391", "https://data.delijn.be/stops/406468"], ["https://data.delijn.be/stops/204211", "https://data.delijn.be/stops/207310"], ["https://data.delijn.be/stops/503961", "https://data.delijn.be/stops/504676"], ["https://data.delijn.be/stops/207870", "https://data.delijn.be/stops/208346"], ["https://data.delijn.be/stops/401290", "https://data.delijn.be/stops/406087"], ["https://data.delijn.be/stops/302668", "https://data.delijn.be/stops/302689"], ["https://data.delijn.be/stops/403794", "https://data.delijn.be/stops/403811"], ["https://data.delijn.be/stops/204625", "https://data.delijn.be/stops/205336"], ["https://data.delijn.be/stops/406010", "https://data.delijn.be/stops/406110"], ["https://data.delijn.be/stops/300812", "https://data.delijn.be/stops/300813"], ["https://data.delijn.be/stops/106922", "https://data.delijn.be/stops/106923"], ["https://data.delijn.be/stops/104683", "https://data.delijn.be/stops/104781"], ["https://data.delijn.be/stops/104554", "https://data.delijn.be/stops/308619"], ["https://data.delijn.be/stops/208302", "https://data.delijn.be/stops/209303"], ["https://data.delijn.be/stops/505628", "https://data.delijn.be/stops/507494"], ["https://data.delijn.be/stops/102289", "https://data.delijn.be/stops/106345"], ["https://data.delijn.be/stops/201682", "https://data.delijn.be/stops/208262"], ["https://data.delijn.be/stops/505536", "https://data.delijn.be/stops/509582"], ["https://data.delijn.be/stops/405548", "https://data.delijn.be/stops/410052"], ["https://data.delijn.be/stops/302125", "https://data.delijn.be/stops/304034"], ["https://data.delijn.be/stops/301244", "https://data.delijn.be/stops/305951"], ["https://data.delijn.be/stops/308018", "https://data.delijn.be/stops/308019"], ["https://data.delijn.be/stops/200687", "https://data.delijn.be/stops/208647"], ["https://data.delijn.be/stops/507083", "https://data.delijn.be/stops/507410"], ["https://data.delijn.be/stops/106397", "https://data.delijn.be/stops/107406"], ["https://data.delijn.be/stops/200706", "https://data.delijn.be/stops/203429"], ["https://data.delijn.be/stops/402734", "https://data.delijn.be/stops/410057"], ["https://data.delijn.be/stops/201288", "https://data.delijn.be/stops/210079"], ["https://data.delijn.be/stops/400558", "https://data.delijn.be/stops/403186"], ["https://data.delijn.be/stops/102057", "https://data.delijn.be/stops/102284"], ["https://data.delijn.be/stops/400512", "https://data.delijn.be/stops/401436"], ["https://data.delijn.be/stops/407502", "https://data.delijn.be/stops/407503"], ["https://data.delijn.be/stops/206751", "https://data.delijn.be/stops/209468"], ["https://data.delijn.be/stops/407610", "https://data.delijn.be/stops/407628"], ["https://data.delijn.be/stops/408867", "https://data.delijn.be/stops/408882"], ["https://data.delijn.be/stops/500118", "https://data.delijn.be/stops/505023"], ["https://data.delijn.be/stops/305572", "https://data.delijn.be/stops/307044"], ["https://data.delijn.be/stops/207436", "https://data.delijn.be/stops/207438"], ["https://data.delijn.be/stops/207713", "https://data.delijn.be/stops/207716"], ["https://data.delijn.be/stops/304162", "https://data.delijn.be/stops/307761"], ["https://data.delijn.be/stops/208420", "https://data.delijn.be/stops/209420"], ["https://data.delijn.be/stops/508065", "https://data.delijn.be/stops/508707"], ["https://data.delijn.be/stops/200464", "https://data.delijn.be/stops/201464"], ["https://data.delijn.be/stops/508651", "https://data.delijn.be/stops/508652"], ["https://data.delijn.be/stops/505365", "https://data.delijn.be/stops/508880"], ["https://data.delijn.be/stops/102525", "https://data.delijn.be/stops/402314"], ["https://data.delijn.be/stops/206378", "https://data.delijn.be/stops/207378"], ["https://data.delijn.be/stops/210076", "https://data.delijn.be/stops/505623"], ["https://data.delijn.be/stops/106670", "https://data.delijn.be/stops/106672"], ["https://data.delijn.be/stops/304993", "https://data.delijn.be/stops/305006"], ["https://data.delijn.be/stops/204018", "https://data.delijn.be/stops/204088"], ["https://data.delijn.be/stops/503620", "https://data.delijn.be/stops/508620"], ["https://data.delijn.be/stops/300801", "https://data.delijn.be/stops/303121"], ["https://data.delijn.be/stops/300120", "https://data.delijn.be/stops/300122"], ["https://data.delijn.be/stops/504145", "https://data.delijn.be/stops/509145"], ["https://data.delijn.be/stops/108179", "https://data.delijn.be/stops/108349"], ["https://data.delijn.be/stops/108273", "https://data.delijn.be/stops/108281"], ["https://data.delijn.be/stops/504349", "https://data.delijn.be/stops/509025"], ["https://data.delijn.be/stops/106271", "https://data.delijn.be/stops/106273"], ["https://data.delijn.be/stops/208392", "https://data.delijn.be/stops/208422"], ["https://data.delijn.be/stops/503824", "https://data.delijn.be/stops/505074"], ["https://data.delijn.be/stops/504564", "https://data.delijn.be/stops/505189"], ["https://data.delijn.be/stops/205755", "https://data.delijn.be/stops/205756"], ["https://data.delijn.be/stops/101961", "https://data.delijn.be/stops/108777"], ["https://data.delijn.be/stops/102396", "https://data.delijn.be/stops/108197"], ["https://data.delijn.be/stops/407022", "https://data.delijn.be/stops/407025"], ["https://data.delijn.be/stops/407986", "https://data.delijn.be/stops/407987"], ["https://data.delijn.be/stops/105719", "https://data.delijn.be/stops/105722"], ["https://data.delijn.be/stops/204258", "https://data.delijn.be/stops/204273"], ["https://data.delijn.be/stops/403267", "https://data.delijn.be/stops/403424"], ["https://data.delijn.be/stops/204369", "https://data.delijn.be/stops/205370"], ["https://data.delijn.be/stops/204742", "https://data.delijn.be/stops/205742"], ["https://data.delijn.be/stops/406009", "https://data.delijn.be/stops/406044"], ["https://data.delijn.be/stops/505021", "https://data.delijn.be/stops/507523"], ["https://data.delijn.be/stops/105467", "https://data.delijn.be/stops/105669"], ["https://data.delijn.be/stops/303268", "https://data.delijn.be/stops/303276"], ["https://data.delijn.be/stops/407772", "https://data.delijn.be/stops/408921"], ["https://data.delijn.be/stops/109605", "https://data.delijn.be/stops/109974"], ["https://data.delijn.be/stops/206916", "https://data.delijn.be/stops/207362"], ["https://data.delijn.be/stops/305783", "https://data.delijn.be/stops/305785"], ["https://data.delijn.be/stops/500556", "https://data.delijn.be/stops/508858"], ["https://data.delijn.be/stops/108872", "https://data.delijn.be/stops/108874"], ["https://data.delijn.be/stops/502489", "https://data.delijn.be/stops/502714"], ["https://data.delijn.be/stops/102936", "https://data.delijn.be/stops/104895"], ["https://data.delijn.be/stops/105886", "https://data.delijn.be/stops/105889"], ["https://data.delijn.be/stops/305103", "https://data.delijn.be/stops/305118"], ["https://data.delijn.be/stops/202395", "https://data.delijn.be/stops/203390"], ["https://data.delijn.be/stops/206103", "https://data.delijn.be/stops/300843"], ["https://data.delijn.be/stops/202262", "https://data.delijn.be/stops/203262"], ["https://data.delijn.be/stops/101518", "https://data.delijn.be/stops/109072"], ["https://data.delijn.be/stops/200534", "https://data.delijn.be/stops/201532"], ["https://data.delijn.be/stops/504448", "https://data.delijn.be/stops/509964"], ["https://data.delijn.be/stops/508252", "https://data.delijn.be/stops/508387"], ["https://data.delijn.be/stops/204309", "https://data.delijn.be/stops/205309"], ["https://data.delijn.be/stops/500942", "https://data.delijn.be/stops/505638"], ["https://data.delijn.be/stops/403910", "https://data.delijn.be/stops/403938"], ["https://data.delijn.be/stops/305528", "https://data.delijn.be/stops/305878"], ["https://data.delijn.be/stops/404007", "https://data.delijn.be/stops/404016"], ["https://data.delijn.be/stops/501474", "https://data.delijn.be/stops/501772"], ["https://data.delijn.be/stops/300727", "https://data.delijn.be/stops/303622"], ["https://data.delijn.be/stops/407643", "https://data.delijn.be/stops/407762"], ["https://data.delijn.be/stops/200463", "https://data.delijn.be/stops/200673"], ["https://data.delijn.be/stops/403970", "https://data.delijn.be/stops/403981"], ["https://data.delijn.be/stops/106089", "https://data.delijn.be/stops/106143"], ["https://data.delijn.be/stops/302933", "https://data.delijn.be/stops/302934"], ["https://data.delijn.be/stops/306053", "https://data.delijn.be/stops/306059"], ["https://data.delijn.be/stops/502802", "https://data.delijn.be/stops/507573"], ["https://data.delijn.be/stops/207751", "https://data.delijn.be/stops/207795"], ["https://data.delijn.be/stops/401816", "https://data.delijn.be/stops/406824"], ["https://data.delijn.be/stops/204694", "https://data.delijn.be/stops/204702"], ["https://data.delijn.be/stops/308276", "https://data.delijn.be/stops/308287"], ["https://data.delijn.be/stops/108568", "https://data.delijn.be/stops/108995"], ["https://data.delijn.be/stops/501663", "https://data.delijn.be/stops/506663"], ["https://data.delijn.be/stops/409284", "https://data.delijn.be/stops/409285"], ["https://data.delijn.be/stops/300874", "https://data.delijn.be/stops/300875"], ["https://data.delijn.be/stops/503657", "https://data.delijn.be/stops/504588"], ["https://data.delijn.be/stops/101971", "https://data.delijn.be/stops/107120"], ["https://data.delijn.be/stops/300503", "https://data.delijn.be/stops/302419"], ["https://data.delijn.be/stops/302444", "https://data.delijn.be/stops/308104"], ["https://data.delijn.be/stops/504150", "https://data.delijn.be/stops/504159"], ["https://data.delijn.be/stops/502820", "https://data.delijn.be/stops/507083"], ["https://data.delijn.be/stops/408214", "https://data.delijn.be/stops/408361"], ["https://data.delijn.be/stops/200573", "https://data.delijn.be/stops/201352"], ["https://data.delijn.be/stops/101519", "https://data.delijn.be/stops/102288"], ["https://data.delijn.be/stops/105116", "https://data.delijn.be/stops/105826"], ["https://data.delijn.be/stops/505098", "https://data.delijn.be/stops/505944"], ["https://data.delijn.be/stops/203346", "https://data.delijn.be/stops/209746"], ["https://data.delijn.be/stops/301092", "https://data.delijn.be/stops/301227"], ["https://data.delijn.be/stops/501534", "https://data.delijn.be/stops/505834"], ["https://data.delijn.be/stops/206483", "https://data.delijn.be/stops/207458"], ["https://data.delijn.be/stops/502464", "https://data.delijn.be/stops/507461"], ["https://data.delijn.be/stops/104974", "https://data.delijn.be/stops/106295"], ["https://data.delijn.be/stops/300270", "https://data.delijn.be/stops/303634"], ["https://data.delijn.be/stops/206684", "https://data.delijn.be/stops/207639"], ["https://data.delijn.be/stops/505547", "https://data.delijn.be/stops/507181"], ["https://data.delijn.be/stops/202286", "https://data.delijn.be/stops/202287"], ["https://data.delijn.be/stops/304314", "https://data.delijn.be/stops/304315"], ["https://data.delijn.be/stops/502920", "https://data.delijn.be/stops/507919"], ["https://data.delijn.be/stops/405264", "https://data.delijn.be/stops/405265"], ["https://data.delijn.be/stops/203440", "https://data.delijn.be/stops/203441"], ["https://data.delijn.be/stops/206317", "https://data.delijn.be/stops/207268"], ["https://data.delijn.be/stops/306624", "https://data.delijn.be/stops/306627"], ["https://data.delijn.be/stops/308644", "https://data.delijn.be/stops/308645"], ["https://data.delijn.be/stops/106565", "https://data.delijn.be/stops/106566"], ["https://data.delijn.be/stops/305067", "https://data.delijn.be/stops/306954"], ["https://data.delijn.be/stops/105463", "https://data.delijn.be/stops/105663"], ["https://data.delijn.be/stops/503851", "https://data.delijn.be/stops/503985"], ["https://data.delijn.be/stops/405302", "https://data.delijn.be/stops/405474"], ["https://data.delijn.be/stops/301771", "https://data.delijn.be/stops/301787"], ["https://data.delijn.be/stops/505996", "https://data.delijn.be/stops/507736"], ["https://data.delijn.be/stops/307155", "https://data.delijn.be/stops/307157"], ["https://data.delijn.be/stops/204998", "https://data.delijn.be/stops/209377"], ["https://data.delijn.be/stops/109194", "https://data.delijn.be/stops/109208"], ["https://data.delijn.be/stops/206766", "https://data.delijn.be/stops/209542"], ["https://data.delijn.be/stops/407221", "https://data.delijn.be/stops/408477"], ["https://data.delijn.be/stops/403553", "https://data.delijn.be/stops/410282"], ["https://data.delijn.be/stops/301511", "https://data.delijn.be/stops/308740"], ["https://data.delijn.be/stops/501615", "https://data.delijn.be/stops/506615"], ["https://data.delijn.be/stops/205998", "https://data.delijn.be/stops/208120"], ["https://data.delijn.be/stops/206352", "https://data.delijn.be/stops/207916"], ["https://data.delijn.be/stops/400708", "https://data.delijn.be/stops/404395"], ["https://data.delijn.be/stops/104006", "https://data.delijn.be/stops/105510"], ["https://data.delijn.be/stops/303839", "https://data.delijn.be/stops/303840"], ["https://data.delijn.be/stops/206262", "https://data.delijn.be/stops/207262"], ["https://data.delijn.be/stops/503485", "https://data.delijn.be/stops/508488"], ["https://data.delijn.be/stops/103900", "https://data.delijn.be/stops/105316"], ["https://data.delijn.be/stops/302299", "https://data.delijn.be/stops/307133"], ["https://data.delijn.be/stops/201082", "https://data.delijn.be/stops/205804"], ["https://data.delijn.be/stops/401483", "https://data.delijn.be/stops/402030"], ["https://data.delijn.be/stops/505552", "https://data.delijn.be/stops/505553"], ["https://data.delijn.be/stops/300078", "https://data.delijn.be/stops/300082"], ["https://data.delijn.be/stops/403672", "https://data.delijn.be/stops/410211"], ["https://data.delijn.be/stops/503727", "https://data.delijn.be/stops/503734"], ["https://data.delijn.be/stops/304839", "https://data.delijn.be/stops/304881"], ["https://data.delijn.be/stops/200662", "https://data.delijn.be/stops/200675"], ["https://data.delijn.be/stops/402161", "https://data.delijn.be/stops/402439"], ["https://data.delijn.be/stops/504086", "https://data.delijn.be/stops/509086"], ["https://data.delijn.be/stops/504577", "https://data.delijn.be/stops/509576"], ["https://data.delijn.be/stops/507174", "https://data.delijn.be/stops/507177"], ["https://data.delijn.be/stops/408861", "https://data.delijn.be/stops/408866"], ["https://data.delijn.be/stops/300352", "https://data.delijn.be/stops/301310"], ["https://data.delijn.be/stops/407108", "https://data.delijn.be/stops/407689"], ["https://data.delijn.be/stops/203421", "https://data.delijn.be/stops/203422"], ["https://data.delijn.be/stops/400923", "https://data.delijn.be/stops/400946"], ["https://data.delijn.be/stops/207365", "https://data.delijn.be/stops/207734"], ["https://data.delijn.be/stops/106478", "https://data.delijn.be/stops/109646"], ["https://data.delijn.be/stops/301629", "https://data.delijn.be/stops/302119"], ["https://data.delijn.be/stops/200206", "https://data.delijn.be/stops/202142"], ["https://data.delijn.be/stops/104386", "https://data.delijn.be/stops/105115"], ["https://data.delijn.be/stops/101797", "https://data.delijn.be/stops/108519"], ["https://data.delijn.be/stops/408326", "https://data.delijn.be/stops/408333"], ["https://data.delijn.be/stops/504140", "https://data.delijn.be/stops/509140"], ["https://data.delijn.be/stops/308224", "https://data.delijn.be/stops/308228"], ["https://data.delijn.be/stops/405759", "https://data.delijn.be/stops/405761"], ["https://data.delijn.be/stops/508301", "https://data.delijn.be/stops/508309"], ["https://data.delijn.be/stops/403929", "https://data.delijn.be/stops/403996"], ["https://data.delijn.be/stops/403875", "https://data.delijn.be/stops/404264"], ["https://data.delijn.be/stops/200158", "https://data.delijn.be/stops/201941"], ["https://data.delijn.be/stops/202045", "https://data.delijn.be/stops/203045"], ["https://data.delijn.be/stops/103249", "https://data.delijn.be/stops/107330"], ["https://data.delijn.be/stops/502025", "https://data.delijn.be/stops/502648"], ["https://data.delijn.be/stops/305111", "https://data.delijn.be/stops/305117"], ["https://data.delijn.be/stops/102750", "https://data.delijn.be/stops/102770"], ["https://data.delijn.be/stops/101531", "https://data.delijn.be/stops/102588"], ["https://data.delijn.be/stops/401814", "https://data.delijn.be/stops/402004"], ["https://data.delijn.be/stops/400912", "https://data.delijn.be/stops/400919"], ["https://data.delijn.be/stops/503527", "https://data.delijn.be/stops/508527"], ["https://data.delijn.be/stops/105356", "https://data.delijn.be/stops/106233"], ["https://data.delijn.be/stops/202115", "https://data.delijn.be/stops/203118"], ["https://data.delijn.be/stops/109496", "https://data.delijn.be/stops/109498"], ["https://data.delijn.be/stops/203827", "https://data.delijn.be/stops/219023"], ["https://data.delijn.be/stops/208089", "https://data.delijn.be/stops/209305"], ["https://data.delijn.be/stops/303435", "https://data.delijn.be/stops/304953"], ["https://data.delijn.be/stops/505269", "https://data.delijn.be/stops/507715"], ["https://data.delijn.be/stops/503501", "https://data.delijn.be/stops/508500"], ["https://data.delijn.be/stops/408203", "https://data.delijn.be/stops/408355"], ["https://data.delijn.be/stops/303305", "https://data.delijn.be/stops/303315"], ["https://data.delijn.be/stops/104406", "https://data.delijn.be/stops/104408"], ["https://data.delijn.be/stops/206659", "https://data.delijn.be/stops/206756"], ["https://data.delijn.be/stops/306137", "https://data.delijn.be/stops/308769"], ["https://data.delijn.be/stops/104773", "https://data.delijn.be/stops/104778"], ["https://data.delijn.be/stops/404526", "https://data.delijn.be/stops/404583"], ["https://data.delijn.be/stops/305278", "https://data.delijn.be/stops/305307"], ["https://data.delijn.be/stops/404185", "https://data.delijn.be/stops/407362"], ["https://data.delijn.be/stops/304488", "https://data.delijn.be/stops/304522"], ["https://data.delijn.be/stops/104041", "https://data.delijn.be/stops/109761"], ["https://data.delijn.be/stops/304633", "https://data.delijn.be/stops/304634"], ["https://data.delijn.be/stops/503554", "https://data.delijn.be/stops/503584"], ["https://data.delijn.be/stops/305249", "https://data.delijn.be/stops/305260"], ["https://data.delijn.be/stops/304460", "https://data.delijn.be/stops/307650"], ["https://data.delijn.be/stops/203864", "https://data.delijn.be/stops/208692"], ["https://data.delijn.be/stops/103118", "https://data.delijn.be/stops/108375"], ["https://data.delijn.be/stops/200968", "https://data.delijn.be/stops/206941"], ["https://data.delijn.be/stops/300450", "https://data.delijn.be/stops/305032"], ["https://data.delijn.be/stops/208443", "https://data.delijn.be/stops/208444"], ["https://data.delijn.be/stops/504205", "https://data.delijn.be/stops/509204"], ["https://data.delijn.be/stops/408531", "https://data.delijn.be/stops/408755"], ["https://data.delijn.be/stops/301908", "https://data.delijn.be/stops/301909"], ["https://data.delijn.be/stops/101074", "https://data.delijn.be/stops/102718"], ["https://data.delijn.be/stops/201769", "https://data.delijn.be/stops/208271"], ["https://data.delijn.be/stops/304305", "https://data.delijn.be/stops/304325"], ["https://data.delijn.be/stops/504568", "https://data.delijn.be/stops/504569"], ["https://data.delijn.be/stops/209082", "https://data.delijn.be/stops/209526"], ["https://data.delijn.be/stops/200898", "https://data.delijn.be/stops/201884"], ["https://data.delijn.be/stops/200503", "https://data.delijn.be/stops/201176"], ["https://data.delijn.be/stops/302933", "https://data.delijn.be/stops/307055"], ["https://data.delijn.be/stops/206208", "https://data.delijn.be/stops/206322"], ["https://data.delijn.be/stops/103964", "https://data.delijn.be/stops/107613"], ["https://data.delijn.be/stops/103722", "https://data.delijn.be/stops/108541"], ["https://data.delijn.be/stops/405363", "https://data.delijn.be/stops/405414"], ["https://data.delijn.be/stops/204144", "https://data.delijn.be/stops/204151"], ["https://data.delijn.be/stops/300229", "https://data.delijn.be/stops/307130"], ["https://data.delijn.be/stops/406172", "https://data.delijn.be/stops/406193"], ["https://data.delijn.be/stops/200453", "https://data.delijn.be/stops/209847"], ["https://data.delijn.be/stops/504997", "https://data.delijn.be/stops/508949"], ["https://data.delijn.be/stops/107450", "https://data.delijn.be/stops/107465"], ["https://data.delijn.be/stops/304472", "https://data.delijn.be/stops/307584"], ["https://data.delijn.be/stops/102470", "https://data.delijn.be/stops/103090"], ["https://data.delijn.be/stops/208480", "https://data.delijn.be/stops/208501"], ["https://data.delijn.be/stops/209363", "https://data.delijn.be/stops/209364"], ["https://data.delijn.be/stops/103569", "https://data.delijn.be/stops/103571"], ["https://data.delijn.be/stops/405438", "https://data.delijn.be/stops/405442"], ["https://data.delijn.be/stops/102692", "https://data.delijn.be/stops/108625"], ["https://data.delijn.be/stops/501176", "https://data.delijn.be/stops/506182"], ["https://data.delijn.be/stops/209098", "https://data.delijn.be/stops/209510"], ["https://data.delijn.be/stops/201615", "https://data.delijn.be/stops/203142"], ["https://data.delijn.be/stops/408721", "https://data.delijn.be/stops/408728"], ["https://data.delijn.be/stops/302575", "https://data.delijn.be/stops/302576"], ["https://data.delijn.be/stops/501517", "https://data.delijn.be/stops/506517"], ["https://data.delijn.be/stops/304585", "https://data.delijn.be/stops/304587"], ["https://data.delijn.be/stops/206130", "https://data.delijn.be/stops/207130"], ["https://data.delijn.be/stops/507378", "https://data.delijn.be/stops/507590"], ["https://data.delijn.be/stops/208425", "https://data.delijn.be/stops/208426"], ["https://data.delijn.be/stops/200813", "https://data.delijn.be/stops/203281"], ["https://data.delijn.be/stops/208635", "https://data.delijn.be/stops/209510"], ["https://data.delijn.be/stops/402885", "https://data.delijn.be/stops/402942"], ["https://data.delijn.be/stops/301648", "https://data.delijn.be/stops/301657"], ["https://data.delijn.be/stops/208742", "https://data.delijn.be/stops/508677"], ["https://data.delijn.be/stops/107908", "https://data.delijn.be/stops/107909"], ["https://data.delijn.be/stops/206536", "https://data.delijn.be/stops/209689"], ["https://data.delijn.be/stops/109930", "https://data.delijn.be/stops/109953"], ["https://data.delijn.be/stops/301196", "https://data.delijn.be/stops/308814"], ["https://data.delijn.be/stops/400848", "https://data.delijn.be/stops/405666"], ["https://data.delijn.be/stops/501556", "https://data.delijn.be/stops/501557"], ["https://data.delijn.be/stops/400094", "https://data.delijn.be/stops/400156"], ["https://data.delijn.be/stops/300122", "https://data.delijn.be/stops/300133"], ["https://data.delijn.be/stops/403768", "https://data.delijn.be/stops/408185"], ["https://data.delijn.be/stops/202285", "https://data.delijn.be/stops/202286"], ["https://data.delijn.be/stops/304401", "https://data.delijn.be/stops/308056"], ["https://data.delijn.be/stops/501360", "https://data.delijn.be/stops/506296"], ["https://data.delijn.be/stops/502734", "https://data.delijn.be/stops/507501"], ["https://data.delijn.be/stops/403251", "https://data.delijn.be/stops/405328"], ["https://data.delijn.be/stops/502472", "https://data.delijn.be/stops/509929"], ["https://data.delijn.be/stops/300316", "https://data.delijn.be/stops/301196"], ["https://data.delijn.be/stops/200761", "https://data.delijn.be/stops/507962"], ["https://data.delijn.be/stops/300315", "https://data.delijn.be/stops/301689"], ["https://data.delijn.be/stops/504989", "https://data.delijn.be/stops/509046"], ["https://data.delijn.be/stops/301376", "https://data.delijn.be/stops/302412"], ["https://data.delijn.be/stops/300201", "https://data.delijn.be/stops/308788"], ["https://data.delijn.be/stops/509014", "https://data.delijn.be/stops/509480"], ["https://data.delijn.be/stops/204038", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/502054", "https://data.delijn.be/stops/507057"], ["https://data.delijn.be/stops/102245", "https://data.delijn.be/stops/102917"], ["https://data.delijn.be/stops/103214", "https://data.delijn.be/stops/106743"], ["https://data.delijn.be/stops/200763", "https://data.delijn.be/stops/200764"], ["https://data.delijn.be/stops/504092", "https://data.delijn.be/stops/505119"], ["https://data.delijn.be/stops/209346", "https://data.delijn.be/stops/209347"], ["https://data.delijn.be/stops/400612", "https://data.delijn.be/stops/400614"], ["https://data.delijn.be/stops/301116", "https://data.delijn.be/stops/302215"], ["https://data.delijn.be/stops/306250", "https://data.delijn.be/stops/306251"], ["https://data.delijn.be/stops/105588", "https://data.delijn.be/stops/105589"], ["https://data.delijn.be/stops/502497", "https://data.delijn.be/stops/507497"], ["https://data.delijn.be/stops/303389", "https://data.delijn.be/stops/308716"], ["https://data.delijn.be/stops/300382", "https://data.delijn.be/stops/300401"], ["https://data.delijn.be/stops/108457", "https://data.delijn.be/stops/108458"], ["https://data.delijn.be/stops/303141", "https://data.delijn.be/stops/306280"], ["https://data.delijn.be/stops/502714", "https://data.delijn.be/stops/507714"], ["https://data.delijn.be/stops/109791", "https://data.delijn.be/stops/109793"], ["https://data.delijn.be/stops/202532", "https://data.delijn.be/stops/203531"], ["https://data.delijn.be/stops/503087", "https://data.delijn.be/stops/507620"], ["https://data.delijn.be/stops/406410", "https://data.delijn.be/stops/406411"], ["https://data.delijn.be/stops/401420", "https://data.delijn.be/stops/401710"], ["https://data.delijn.be/stops/407960", "https://data.delijn.be/stops/407961"], ["https://data.delijn.be/stops/403178", "https://data.delijn.be/stops/403490"], ["https://data.delijn.be/stops/405082", "https://data.delijn.be/stops/405083"], ["https://data.delijn.be/stops/404303", "https://data.delijn.be/stops/409565"], ["https://data.delijn.be/stops/105069", "https://data.delijn.be/stops/106780"], ["https://data.delijn.be/stops/503714", "https://data.delijn.be/stops/508723"], ["https://data.delijn.be/stops/406214", "https://data.delijn.be/stops/406230"], ["https://data.delijn.be/stops/306380", "https://data.delijn.be/stops/306381"], ["https://data.delijn.be/stops/301843", "https://data.delijn.be/stops/305860"], ["https://data.delijn.be/stops/102867", "https://data.delijn.be/stops/102868"], ["https://data.delijn.be/stops/103147", "https://data.delijn.be/stops/109480"], ["https://data.delijn.be/stops/204371", "https://data.delijn.be/stops/205371"], ["https://data.delijn.be/stops/209692", "https://data.delijn.be/stops/209696"], ["https://data.delijn.be/stops/204036", "https://data.delijn.be/stops/205247"], ["https://data.delijn.be/stops/402834", "https://data.delijn.be/stops/402835"], ["https://data.delijn.be/stops/404463", "https://data.delijn.be/stops/404528"], ["https://data.delijn.be/stops/505358", "https://data.delijn.be/stops/505747"], ["https://data.delijn.be/stops/301124", "https://data.delijn.be/stops/303617"], ["https://data.delijn.be/stops/301293", "https://data.delijn.be/stops/308657"], ["https://data.delijn.be/stops/502064", "https://data.delijn.be/stops/507069"], ["https://data.delijn.be/stops/101393", "https://data.delijn.be/stops/101829"], ["https://data.delijn.be/stops/401092", "https://data.delijn.be/stops/401114"], ["https://data.delijn.be/stops/407639", "https://data.delijn.be/stops/407763"], ["https://data.delijn.be/stops/409271", "https://data.delijn.be/stops/409333"], ["https://data.delijn.be/stops/401217", "https://data.delijn.be/stops/401557"], ["https://data.delijn.be/stops/102229", "https://data.delijn.be/stops/105522"], ["https://data.delijn.be/stops/305582", "https://data.delijn.be/stops/307824"], ["https://data.delijn.be/stops/200765", "https://data.delijn.be/stops/208300"], ["https://data.delijn.be/stops/103241", "https://data.delijn.be/stops/105022"], ["https://data.delijn.be/stops/201851", "https://data.delijn.be/stops/203655"], ["https://data.delijn.be/stops/302189", "https://data.delijn.be/stops/302191"], ["https://data.delijn.be/stops/505835", "https://data.delijn.be/stops/506013"], ["https://data.delijn.be/stops/107574", "https://data.delijn.be/stops/107745"], ["https://data.delijn.be/stops/404891", "https://data.delijn.be/stops/405648"], ["https://data.delijn.be/stops/405803", "https://data.delijn.be/stops/409735"], ["https://data.delijn.be/stops/305600", "https://data.delijn.be/stops/305601"], ["https://data.delijn.be/stops/204226", "https://data.delijn.be/stops/205231"], ["https://data.delijn.be/stops/205308", "https://data.delijn.be/stops/205448"], ["https://data.delijn.be/stops/502262", "https://data.delijn.be/stops/502921"], ["https://data.delijn.be/stops/305353", "https://data.delijn.be/stops/305354"], ["https://data.delijn.be/stops/109251", "https://data.delijn.be/stops/109252"], ["https://data.delijn.be/stops/401378", "https://data.delijn.be/stops/410172"], ["https://data.delijn.be/stops/304116", "https://data.delijn.be/stops/305337"], ["https://data.delijn.be/stops/300810", "https://data.delijn.be/stops/300831"], ["https://data.delijn.be/stops/204146", "https://data.delijn.be/stops/205138"], ["https://data.delijn.be/stops/104041", "https://data.delijn.be/stops/108522"], ["https://data.delijn.be/stops/504779", "https://data.delijn.be/stops/509085"], ["https://data.delijn.be/stops/408505", "https://data.delijn.be/stops/408539"], ["https://data.delijn.be/stops/503742", "https://data.delijn.be/stops/504850"], ["https://data.delijn.be/stops/503119", "https://data.delijn.be/stops/508121"], ["https://data.delijn.be/stops/308427", "https://data.delijn.be/stops/308429"], ["https://data.delijn.be/stops/307315", "https://data.delijn.be/stops/307317"], ["https://data.delijn.be/stops/102521", "https://data.delijn.be/stops/108995"], ["https://data.delijn.be/stops/502051", "https://data.delijn.be/stops/507051"], ["https://data.delijn.be/stops/408711", "https://data.delijn.be/stops/408715"], ["https://data.delijn.be/stops/402520", "https://data.delijn.be/stops/407950"], ["https://data.delijn.be/stops/106621", "https://data.delijn.be/stops/106622"], ["https://data.delijn.be/stops/500137", "https://data.delijn.be/stops/590335"], ["https://data.delijn.be/stops/302499", "https://data.delijn.be/stops/302500"], ["https://data.delijn.be/stops/303876", "https://data.delijn.be/stops/307871"], ["https://data.delijn.be/stops/408511", "https://data.delijn.be/stops/408548"], ["https://data.delijn.be/stops/105196", "https://data.delijn.be/stops/105197"], ["https://data.delijn.be/stops/106394", "https://data.delijn.be/stops/106395"], ["https://data.delijn.be/stops/202600", "https://data.delijn.be/stops/203600"], ["https://data.delijn.be/stops/201208", "https://data.delijn.be/stops/203144"], ["https://data.delijn.be/stops/206309", "https://data.delijn.be/stops/207309"], ["https://data.delijn.be/stops/502427", "https://data.delijn.be/stops/502435"], ["https://data.delijn.be/stops/103332", "https://data.delijn.be/stops/106441"], ["https://data.delijn.be/stops/406616", "https://data.delijn.be/stops/406624"], ["https://data.delijn.be/stops/301881", "https://data.delijn.be/stops/305911"], ["https://data.delijn.be/stops/200915", "https://data.delijn.be/stops/202686"], ["https://data.delijn.be/stops/406903", "https://data.delijn.be/stops/406904"], ["https://data.delijn.be/stops/107445", "https://data.delijn.be/stops/107460"], ["https://data.delijn.be/stops/304172", "https://data.delijn.be/stops/307577"], ["https://data.delijn.be/stops/302889", "https://data.delijn.be/stops/307049"], ["https://data.delijn.be/stops/206568", "https://data.delijn.be/stops/207568"], ["https://data.delijn.be/stops/101072", "https://data.delijn.be/stops/109095"], ["https://data.delijn.be/stops/304077", "https://data.delijn.be/stops/307814"], ["https://data.delijn.be/stops/109181", "https://data.delijn.be/stops/109226"], ["https://data.delijn.be/stops/401409", "https://data.delijn.be/stops/300926"], ["https://data.delijn.be/stops/403023", "https://data.delijn.be/stops/404260"], ["https://data.delijn.be/stops/202723", "https://data.delijn.be/stops/203085"], ["https://data.delijn.be/stops/102929", "https://data.delijn.be/stops/102967"], ["https://data.delijn.be/stops/200090", "https://data.delijn.be/stops/203896"], ["https://data.delijn.be/stops/506291", "https://data.delijn.be/stops/506546"], ["https://data.delijn.be/stops/305050", "https://data.delijn.be/stops/305083"], ["https://data.delijn.be/stops/301899", "https://data.delijn.be/stops/306955"], ["https://data.delijn.be/stops/301076", "https://data.delijn.be/stops/304190"], ["https://data.delijn.be/stops/501010", "https://data.delijn.be/stops/502077"], ["https://data.delijn.be/stops/102323", "https://data.delijn.be/stops/104261"], ["https://data.delijn.be/stops/305675", "https://data.delijn.be/stops/306308"], ["https://data.delijn.be/stops/207215", "https://data.delijn.be/stops/207269"], ["https://data.delijn.be/stops/201400", "https://data.delijn.be/stops/203363"], ["https://data.delijn.be/stops/300266", "https://data.delijn.be/stops/307494"], ["https://data.delijn.be/stops/104943", "https://data.delijn.be/stops/108229"], ["https://data.delijn.be/stops/507513", "https://data.delijn.be/stops/507740"], ["https://data.delijn.be/stops/504892", "https://data.delijn.be/stops/508588"], ["https://data.delijn.be/stops/206121", "https://data.delijn.be/stops/206144"], ["https://data.delijn.be/stops/106657", "https://data.delijn.be/stops/106658"], ["https://data.delijn.be/stops/308175", "https://data.delijn.be/stops/308177"], ["https://data.delijn.be/stops/301417", "https://data.delijn.be/stops/301418"], ["https://data.delijn.be/stops/201869", "https://data.delijn.be/stops/202659"], ["https://data.delijn.be/stops/201605", "https://data.delijn.be/stops/203777"], ["https://data.delijn.be/stops/208670", "https://data.delijn.be/stops/209432"], ["https://data.delijn.be/stops/204123", "https://data.delijn.be/stops/205126"], ["https://data.delijn.be/stops/404622", "https://data.delijn.be/stops/404632"], ["https://data.delijn.be/stops/303056", "https://data.delijn.be/stops/304241"], ["https://data.delijn.be/stops/404726", "https://data.delijn.be/stops/404727"], ["https://data.delijn.be/stops/207674", "https://data.delijn.be/stops/209139"], ["https://data.delijn.be/stops/204683", "https://data.delijn.be/stops/205677"], ["https://data.delijn.be/stops/104638", "https://data.delijn.be/stops/107963"], ["https://data.delijn.be/stops/406179", "https://data.delijn.be/stops/406180"], ["https://data.delijn.be/stops/206146", "https://data.delijn.be/stops/206147"], ["https://data.delijn.be/stops/200911", "https://data.delijn.be/stops/202097"], ["https://data.delijn.be/stops/507449", "https://data.delijn.be/stops/507595"], ["https://data.delijn.be/stops/308157", "https://data.delijn.be/stops/308159"], ["https://data.delijn.be/stops/206595", "https://data.delijn.be/stops/209679"], ["https://data.delijn.be/stops/303478", "https://data.delijn.be/stops/303492"], ["https://data.delijn.be/stops/301301", "https://data.delijn.be/stops/301305"], ["https://data.delijn.be/stops/504024", "https://data.delijn.be/stops/509024"], ["https://data.delijn.be/stops/504003", "https://data.delijn.be/stops/509860"], ["https://data.delijn.be/stops/503123", "https://data.delijn.be/stops/505406"], ["https://data.delijn.be/stops/507193", "https://data.delijn.be/stops/509945"], ["https://data.delijn.be/stops/202558", "https://data.delijn.be/stops/203549"], ["https://data.delijn.be/stops/509081", "https://data.delijn.be/stops/509084"], ["https://data.delijn.be/stops/405443", "https://data.delijn.be/stops/408785"], ["https://data.delijn.be/stops/303450", "https://data.delijn.be/stops/306371"], ["https://data.delijn.be/stops/403192", "https://data.delijn.be/stops/409273"], ["https://data.delijn.be/stops/102290", "https://data.delijn.be/stops/107460"], ["https://data.delijn.be/stops/305511", "https://data.delijn.be/stops/305532"], ["https://data.delijn.be/stops/401259", "https://data.delijn.be/stops/406680"], ["https://data.delijn.be/stops/207755", "https://data.delijn.be/stops/208760"], ["https://data.delijn.be/stops/202822", "https://data.delijn.be/stops/202915"], ["https://data.delijn.be/stops/108445", "https://data.delijn.be/stops/108449"], ["https://data.delijn.be/stops/200034", "https://data.delijn.be/stops/208333"], ["https://data.delijn.be/stops/200140", "https://data.delijn.be/stops/201607"], ["https://data.delijn.be/stops/304436", "https://data.delijn.be/stops/307718"], ["https://data.delijn.be/stops/301413", "https://data.delijn.be/stops/301415"], ["https://data.delijn.be/stops/302892", "https://data.delijn.be/stops/303231"], ["https://data.delijn.be/stops/408607", "https://data.delijn.be/stops/408707"], ["https://data.delijn.be/stops/109039", "https://data.delijn.be/stops/109042"], ["https://data.delijn.be/stops/401949", "https://data.delijn.be/stops/407104"], ["https://data.delijn.be/stops/504772", "https://data.delijn.be/stops/509383"], ["https://data.delijn.be/stops/202764", "https://data.delijn.be/stops/203764"], ["https://data.delijn.be/stops/305064", "https://data.delijn.be/stops/306920"], ["https://data.delijn.be/stops/200318", "https://data.delijn.be/stops/201317"], ["https://data.delijn.be/stops/101467", "https://data.delijn.be/stops/101469"], ["https://data.delijn.be/stops/303024", "https://data.delijn.be/stops/303026"], ["https://data.delijn.be/stops/407224", "https://data.delijn.be/stops/407486"], ["https://data.delijn.be/stops/502236", "https://data.delijn.be/stops/505754"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/510006"], ["https://data.delijn.be/stops/304745", "https://data.delijn.be/stops/304746"], ["https://data.delijn.be/stops/501228", "https://data.delijn.be/stops/509840"], ["https://data.delijn.be/stops/109910", "https://data.delijn.be/stops/109914"], ["https://data.delijn.be/stops/107462", "https://data.delijn.be/stops/109197"], ["https://data.delijn.be/stops/206544", "https://data.delijn.be/stops/207545"], ["https://data.delijn.be/stops/405923", "https://data.delijn.be/stops/405925"], ["https://data.delijn.be/stops/107256", "https://data.delijn.be/stops/107257"], ["https://data.delijn.be/stops/503188", "https://data.delijn.be/stops/508208"], ["https://data.delijn.be/stops/201762", "https://data.delijn.be/stops/209847"], ["https://data.delijn.be/stops/108050", "https://data.delijn.be/stops/108053"], ["https://data.delijn.be/stops/104971", "https://data.delijn.be/stops/105297"], ["https://data.delijn.be/stops/403778", "https://data.delijn.be/stops/403779"], ["https://data.delijn.be/stops/206624", "https://data.delijn.be/stops/207624"], ["https://data.delijn.be/stops/202042", "https://data.delijn.be/stops/203245"], ["https://data.delijn.be/stops/408245", "https://data.delijn.be/stops/408340"], ["https://data.delijn.be/stops/204314", "https://data.delijn.be/stops/205338"], ["https://data.delijn.be/stops/302475", "https://data.delijn.be/stops/307037"], ["https://data.delijn.be/stops/402257", "https://data.delijn.be/stops/402392"], ["https://data.delijn.be/stops/503488", "https://data.delijn.be/stops/508488"], ["https://data.delijn.be/stops/503863", "https://data.delijn.be/stops/504993"], ["https://data.delijn.be/stops/102159", "https://data.delijn.be/stops/108322"], ["https://data.delijn.be/stops/201923", "https://data.delijn.be/stops/207405"], ["https://data.delijn.be/stops/103721", "https://data.delijn.be/stops/308441"], ["https://data.delijn.be/stops/303166", "https://data.delijn.be/stops/307285"], ["https://data.delijn.be/stops/200811", "https://data.delijn.be/stops/203051"], ["https://data.delijn.be/stops/406910", "https://data.delijn.be/stops/406911"], ["https://data.delijn.be/stops/103259", "https://data.delijn.be/stops/105861"], ["https://data.delijn.be/stops/104038", "https://data.delijn.be/stops/104048"], ["https://data.delijn.be/stops/102637", "https://data.delijn.be/stops/208900"], ["https://data.delijn.be/stops/505659", "https://data.delijn.be/stops/508505"], ["https://data.delijn.be/stops/107805", "https://data.delijn.be/stops/109050"], ["https://data.delijn.be/stops/302105", "https://data.delijn.be/stops/302276"], ["https://data.delijn.be/stops/300323", "https://data.delijn.be/stops/307649"], ["https://data.delijn.be/stops/104619", "https://data.delijn.be/stops/107868"], ["https://data.delijn.be/stops/101938", "https://data.delijn.be/stops/109343"], ["https://data.delijn.be/stops/206600", "https://data.delijn.be/stops/207414"], ["https://data.delijn.be/stops/102589", "https://data.delijn.be/stops/102897"], ["https://data.delijn.be/stops/300524", "https://data.delijn.be/stops/304897"], ["https://data.delijn.be/stops/204344", "https://data.delijn.be/stops/205343"], ["https://data.delijn.be/stops/503661", "https://data.delijn.be/stops/508666"], ["https://data.delijn.be/stops/302584", "https://data.delijn.be/stops/302612"], ["https://data.delijn.be/stops/304765", "https://data.delijn.be/stops/304770"], ["https://data.delijn.be/stops/104464", "https://data.delijn.be/stops/104466"], ["https://data.delijn.be/stops/507110", "https://data.delijn.be/stops/507135"], ["https://data.delijn.be/stops/109133", "https://data.delijn.be/stops/109134"], ["https://data.delijn.be/stops/104402", "https://data.delijn.be/stops/205280"], ["https://data.delijn.be/stops/101414", "https://data.delijn.be/stops/102066"], ["https://data.delijn.be/stops/107864", "https://data.delijn.be/stops/107867"], ["https://data.delijn.be/stops/104579", "https://data.delijn.be/stops/107889"], ["https://data.delijn.be/stops/200421", "https://data.delijn.be/stops/200422"], ["https://data.delijn.be/stops/104162", "https://data.delijn.be/stops/104355"], ["https://data.delijn.be/stops/106661", "https://data.delijn.be/stops/107188"], ["https://data.delijn.be/stops/106767", "https://data.delijn.be/stops/106769"], ["https://data.delijn.be/stops/108083", "https://data.delijn.be/stops/108449"], ["https://data.delijn.be/stops/407351", "https://data.delijn.be/stops/409436"], ["https://data.delijn.be/stops/502489", "https://data.delijn.be/stops/502515"], ["https://data.delijn.be/stops/400176", "https://data.delijn.be/stops/400399"], ["https://data.delijn.be/stops/302070", "https://data.delijn.be/stops/302071"], ["https://data.delijn.be/stops/408603", "https://data.delijn.be/stops/408610"], ["https://data.delijn.be/stops/502471", "https://data.delijn.be/stops/507471"], ["https://data.delijn.be/stops/401752", "https://data.delijn.be/stops/406336"], ["https://data.delijn.be/stops/202851", "https://data.delijn.be/stops/202948"], ["https://data.delijn.be/stops/107311", "https://data.delijn.be/stops/108809"], ["https://data.delijn.be/stops/200978", "https://data.delijn.be/stops/208090"], ["https://data.delijn.be/stops/207698", "https://data.delijn.be/stops/207699"], ["https://data.delijn.be/stops/507332", "https://data.delijn.be/stops/507374"], ["https://data.delijn.be/stops/406180", "https://data.delijn.be/stops/406202"], ["https://data.delijn.be/stops/206669", "https://data.delijn.be/stops/208121"], ["https://data.delijn.be/stops/506408", "https://data.delijn.be/stops/506418"], ["https://data.delijn.be/stops/200531", "https://data.delijn.be/stops/211132"], ["https://data.delijn.be/stops/109002", "https://data.delijn.be/stops/109003"], ["https://data.delijn.be/stops/401104", "https://data.delijn.be/stops/409221"], ["https://data.delijn.be/stops/200673", "https://data.delijn.be/stops/201737"], ["https://data.delijn.be/stops/204725", "https://data.delijn.be/stops/205725"], ["https://data.delijn.be/stops/502013", "https://data.delijn.be/stops/502014"], ["https://data.delijn.be/stops/104388", "https://data.delijn.be/stops/105115"], ["https://data.delijn.be/stops/109795", "https://data.delijn.be/stops/109798"], ["https://data.delijn.be/stops/209586", "https://data.delijn.be/stops/209676"], ["https://data.delijn.be/stops/203240", "https://data.delijn.be/stops/206870"], ["https://data.delijn.be/stops/503101", "https://data.delijn.be/stops/508101"], ["https://data.delijn.be/stops/401990", "https://data.delijn.be/stops/403880"], ["https://data.delijn.be/stops/408349", "https://data.delijn.be/stops/410159"], ["https://data.delijn.be/stops/202851", "https://data.delijn.be/stops/203851"], ["https://data.delijn.be/stops/400564", "https://data.delijn.be/stops/410034"], ["https://data.delijn.be/stops/101018", "https://data.delijn.be/stops/102940"], ["https://data.delijn.be/stops/101931", "https://data.delijn.be/stops/106215"], ["https://data.delijn.be/stops/400749", "https://data.delijn.be/stops/407659"], ["https://data.delijn.be/stops/107126", "https://data.delijn.be/stops/107127"], ["https://data.delijn.be/stops/308239", "https://data.delijn.be/stops/308240"], ["https://data.delijn.be/stops/300637", "https://data.delijn.be/stops/300638"], ["https://data.delijn.be/stops/102289", "https://data.delijn.be/stops/109634"], ["https://data.delijn.be/stops/300839", "https://data.delijn.be/stops/300886"], ["https://data.delijn.be/stops/208493", "https://data.delijn.be/stops/209492"], ["https://data.delijn.be/stops/405664", "https://data.delijn.be/stops/405710"], ["https://data.delijn.be/stops/506343", "https://data.delijn.be/stops/506734"], ["https://data.delijn.be/stops/502636", "https://data.delijn.be/stops/507511"], ["https://data.delijn.be/stops/106118", "https://data.delijn.be/stops/106120"], ["https://data.delijn.be/stops/206970", "https://data.delijn.be/stops/207969"], ["https://data.delijn.be/stops/105332", "https://data.delijn.be/stops/204028"], ["https://data.delijn.be/stops/301189", "https://data.delijn.be/stops/301266"], ["https://data.delijn.be/stops/104366", "https://data.delijn.be/stops/205602"], ["https://data.delijn.be/stops/509410", "https://data.delijn.be/stops/509436"], ["https://data.delijn.be/stops/206671", "https://data.delijn.be/stops/208055"], ["https://data.delijn.be/stops/304000", "https://data.delijn.be/stops/308644"], ["https://data.delijn.be/stops/102319", "https://data.delijn.be/stops/106223"], ["https://data.delijn.be/stops/202721", "https://data.delijn.be/stops/203721"], ["https://data.delijn.be/stops/202422", "https://data.delijn.be/stops/203422"], ["https://data.delijn.be/stops/401671", "https://data.delijn.be/stops/307629"], ["https://data.delijn.be/stops/402100", "https://data.delijn.be/stops/402330"], ["https://data.delijn.be/stops/304880", "https://data.delijn.be/stops/304884"], ["https://data.delijn.be/stops/200512", "https://data.delijn.be/stops/201551"], ["https://data.delijn.be/stops/402991", "https://data.delijn.be/stops/405602"], ["https://data.delijn.be/stops/402819", "https://data.delijn.be/stops/406960"], ["https://data.delijn.be/stops/203957", "https://data.delijn.be/stops/203959"], ["https://data.delijn.be/stops/504007", "https://data.delijn.be/stops/504571"], ["https://data.delijn.be/stops/405259", "https://data.delijn.be/stops/405266"], ["https://data.delijn.be/stops/206441", "https://data.delijn.be/stops/209466"], ["https://data.delijn.be/stops/300999", "https://data.delijn.be/stops/308356"], ["https://data.delijn.be/stops/407911", "https://data.delijn.be/stops/408018"], ["https://data.delijn.be/stops/504165", "https://data.delijn.be/stops/509192"], ["https://data.delijn.be/stops/208013", "https://data.delijn.be/stops/209013"], ["https://data.delijn.be/stops/202590", "https://data.delijn.be/stops/203570"], ["https://data.delijn.be/stops/508330", "https://data.delijn.be/stops/508332"], ["https://data.delijn.be/stops/409084", "https://data.delijn.be/stops/409139"], ["https://data.delijn.be/stops/104942", "https://data.delijn.be/stops/107216"], ["https://data.delijn.be/stops/400594", "https://data.delijn.be/stops/400601"], ["https://data.delijn.be/stops/202659", "https://data.delijn.be/stops/205994"], ["https://data.delijn.be/stops/304303", "https://data.delijn.be/stops/304352"], ["https://data.delijn.be/stops/501114", "https://data.delijn.be/stops/506165"], ["https://data.delijn.be/stops/304975", "https://data.delijn.be/stops/304976"], ["https://data.delijn.be/stops/402801", "https://data.delijn.be/stops/409048"], ["https://data.delijn.be/stops/503178", "https://data.delijn.be/stops/508178"], ["https://data.delijn.be/stops/102597", "https://data.delijn.be/stops/104918"], ["https://data.delijn.be/stops/303562", "https://data.delijn.be/stops/305878"], ["https://data.delijn.be/stops/200259", "https://data.delijn.be/stops/203452"], ["https://data.delijn.be/stops/306774", "https://data.delijn.be/stops/306776"], ["https://data.delijn.be/stops/200712", "https://data.delijn.be/stops/204019"], ["https://data.delijn.be/stops/200811", "https://data.delijn.be/stops/202051"], ["https://data.delijn.be/stops/504381", "https://data.delijn.be/stops/509381"], ["https://data.delijn.be/stops/502387", "https://data.delijn.be/stops/507387"], ["https://data.delijn.be/stops/200768", "https://data.delijn.be/stops/209298"], ["https://data.delijn.be/stops/501458", "https://data.delijn.be/stops/505834"], ["https://data.delijn.be/stops/504812", "https://data.delijn.be/stops/508478"], ["https://data.delijn.be/stops/200593", "https://data.delijn.be/stops/210129"], ["https://data.delijn.be/stops/101345", "https://data.delijn.be/stops/102963"], ["https://data.delijn.be/stops/504515", "https://data.delijn.be/stops/505176"], ["https://data.delijn.be/stops/502184", "https://data.delijn.be/stops/507713"], ["https://data.delijn.be/stops/302907", "https://data.delijn.be/stops/304711"], ["https://data.delijn.be/stops/208628", "https://data.delijn.be/stops/209058"], ["https://data.delijn.be/stops/506103", "https://data.delijn.be/stops/506493"], ["https://data.delijn.be/stops/504388", "https://data.delijn.be/stops/505986"], ["https://data.delijn.be/stops/507135", "https://data.delijn.be/stops/507138"], ["https://data.delijn.be/stops/503370", "https://data.delijn.be/stops/508444"], ["https://data.delijn.be/stops/205207", "https://data.delijn.be/stops/205473"], ["https://data.delijn.be/stops/505997", "https://data.delijn.be/stops/509408"], ["https://data.delijn.be/stops/302877", "https://data.delijn.be/stops/302890"], ["https://data.delijn.be/stops/501229", "https://data.delijn.be/stops/506226"], ["https://data.delijn.be/stops/401163", "https://data.delijn.be/stops/408119"], ["https://data.delijn.be/stops/107318", "https://data.delijn.be/stops/107319"], ["https://data.delijn.be/stops/203878", "https://data.delijn.be/stops/203882"], ["https://data.delijn.be/stops/504369", "https://data.delijn.be/stops/508133"], ["https://data.delijn.be/stops/404958", "https://data.delijn.be/stops/404961"], ["https://data.delijn.be/stops/304631", "https://data.delijn.be/stops/306341"], ["https://data.delijn.be/stops/503463", "https://data.delijn.be/stops/508197"], ["https://data.delijn.be/stops/402235", "https://data.delijn.be/stops/402293"], ["https://data.delijn.be/stops/107041", "https://data.delijn.be/stops/108246"], ["https://data.delijn.be/stops/400326", "https://data.delijn.be/stops/400354"], ["https://data.delijn.be/stops/407824", "https://data.delijn.be/stops/407825"], ["https://data.delijn.be/stops/502041", "https://data.delijn.be/stops/502618"], ["https://data.delijn.be/stops/406569", "https://data.delijn.be/stops/406680"], ["https://data.delijn.be/stops/206849", "https://data.delijn.be/stops/207658"], ["https://data.delijn.be/stops/206080", "https://data.delijn.be/stops/306973"], ["https://data.delijn.be/stops/105887", "https://data.delijn.be/stops/105892"], ["https://data.delijn.be/stops/202315", "https://data.delijn.be/stops/203315"], ["https://data.delijn.be/stops/108921", "https://data.delijn.be/stops/109412"], ["https://data.delijn.be/stops/105802", "https://data.delijn.be/stops/105803"], ["https://data.delijn.be/stops/202016", "https://data.delijn.be/stops/202017"], ["https://data.delijn.be/stops/301440", "https://data.delijn.be/stops/302131"], ["https://data.delijn.be/stops/500023", "https://data.delijn.be/stops/501568"], ["https://data.delijn.be/stops/502214", "https://data.delijn.be/stops/507218"], ["https://data.delijn.be/stops/301640", "https://data.delijn.be/stops/307754"], ["https://data.delijn.be/stops/400403", "https://data.delijn.be/stops/405865"], ["https://data.delijn.be/stops/507282", "https://data.delijn.be/stops/507334"], ["https://data.delijn.be/stops/401546", "https://data.delijn.be/stops/401930"], ["https://data.delijn.be/stops/501070", "https://data.delijn.be/stops/501380"], ["https://data.delijn.be/stops/103061", "https://data.delijn.be/stops/308632"], ["https://data.delijn.be/stops/303183", "https://data.delijn.be/stops/303191"], ["https://data.delijn.be/stops/400992", "https://data.delijn.be/stops/406585"], ["https://data.delijn.be/stops/201543", "https://data.delijn.be/stops/210048"], ["https://data.delijn.be/stops/106307", "https://data.delijn.be/stops/106308"], ["https://data.delijn.be/stops/304956", "https://data.delijn.be/stops/304966"], ["https://data.delijn.be/stops/302513", "https://data.delijn.be/stops/305802"], ["https://data.delijn.be/stops/504112", "https://data.delijn.be/stops/504469"], ["https://data.delijn.be/stops/401840", "https://data.delijn.be/stops/401841"], ["https://data.delijn.be/stops/301614", "https://data.delijn.be/stops/304257"], ["https://data.delijn.be/stops/401425", "https://data.delijn.be/stops/401576"], ["https://data.delijn.be/stops/101060", "https://data.delijn.be/stops/106750"], ["https://data.delijn.be/stops/308053", "https://data.delijn.be/stops/308054"], ["https://data.delijn.be/stops/102040", "https://data.delijn.be/stops/105590"], ["https://data.delijn.be/stops/400122", "https://data.delijn.be/stops/400130"], ["https://data.delijn.be/stops/503090", "https://data.delijn.be/stops/508091"], ["https://data.delijn.be/stops/504676", "https://data.delijn.be/stops/504677"], ["https://data.delijn.be/stops/404340", "https://data.delijn.be/stops/404341"], ["https://data.delijn.be/stops/204995", "https://data.delijn.be/stops/303837"], ["https://data.delijn.be/stops/407524", "https://data.delijn.be/stops/407525"], ["https://data.delijn.be/stops/208157", "https://data.delijn.be/stops/208158"], ["https://data.delijn.be/stops/202272", "https://data.delijn.be/stops/203130"], ["https://data.delijn.be/stops/401454", "https://data.delijn.be/stops/401574"], ["https://data.delijn.be/stops/403290", "https://data.delijn.be/stops/410326"], ["https://data.delijn.be/stops/507256", "https://data.delijn.be/stops/507510"], ["https://data.delijn.be/stops/102277", "https://data.delijn.be/stops/104593"], ["https://data.delijn.be/stops/206768", "https://data.delijn.be/stops/206780"], ["https://data.delijn.be/stops/300808", "https://data.delijn.be/stops/307573"], ["https://data.delijn.be/stops/307705", "https://data.delijn.be/stops/308592"], ["https://data.delijn.be/stops/400635", "https://data.delijn.be/stops/403036"], ["https://data.delijn.be/stops/108353", "https://data.delijn.be/stops/109338"], ["https://data.delijn.be/stops/206377", "https://data.delijn.be/stops/207377"], ["https://data.delijn.be/stops/303273", "https://data.delijn.be/stops/305729"], ["https://data.delijn.be/stops/204250", "https://data.delijn.be/stops/214010"], ["https://data.delijn.be/stops/108568", "https://data.delijn.be/stops/108571"], ["https://data.delijn.be/stops/200929", "https://data.delijn.be/stops/201120"], ["https://data.delijn.be/stops/300946", "https://data.delijn.be/stops/303664"], ["https://data.delijn.be/stops/206327", "https://data.delijn.be/stops/206328"], ["https://data.delijn.be/stops/408082", "https://data.delijn.be/stops/305696"], ["https://data.delijn.be/stops/501470", "https://data.delijn.be/stops/506470"], ["https://data.delijn.be/stops/403228", "https://data.delijn.be/stops/407650"], ["https://data.delijn.be/stops/101808", "https://data.delijn.be/stops/108439"], ["https://data.delijn.be/stops/400053", "https://data.delijn.be/stops/400096"], ["https://data.delijn.be/stops/201088", "https://data.delijn.be/stops/202241"], ["https://data.delijn.be/stops/204029", "https://data.delijn.be/stops/205029"], ["https://data.delijn.be/stops/503870", "https://data.delijn.be/stops/509755"], ["https://data.delijn.be/stops/505165", "https://data.delijn.be/stops/509744"], ["https://data.delijn.be/stops/304760", "https://data.delijn.be/stops/304770"], ["https://data.delijn.be/stops/400838", "https://data.delijn.be/stops/409570"], ["https://data.delijn.be/stops/201855", "https://data.delijn.be/stops/201865"], ["https://data.delijn.be/stops/107032", "https://data.delijn.be/stops/107036"], ["https://data.delijn.be/stops/401411", "https://data.delijn.be/stops/305165"], ["https://data.delijn.be/stops/407742", "https://data.delijn.be/stops/409662"], ["https://data.delijn.be/stops/407519", "https://data.delijn.be/stops/408396"], ["https://data.delijn.be/stops/503072", "https://data.delijn.be/stops/508073"], ["https://data.delijn.be/stops/507689", "https://data.delijn.be/stops/509735"], ["https://data.delijn.be/stops/504118", "https://data.delijn.be/stops/505841"], ["https://data.delijn.be/stops/402352", "https://data.delijn.be/stops/405557"], ["https://data.delijn.be/stops/102058", "https://data.delijn.be/stops/106860"], ["https://data.delijn.be/stops/206249", "https://data.delijn.be/stops/216019"], ["https://data.delijn.be/stops/302132", "https://data.delijn.be/stops/302133"], ["https://data.delijn.be/stops/101898", "https://data.delijn.be/stops/107917"], ["https://data.delijn.be/stops/106789", "https://data.delijn.be/stops/106790"], ["https://data.delijn.be/stops/402411", "https://data.delijn.be/stops/402414"], ["https://data.delijn.be/stops/204364", "https://data.delijn.be/stops/205718"], ["https://data.delijn.be/stops/505580", "https://data.delijn.be/stops/508111"], ["https://data.delijn.be/stops/208354", "https://data.delijn.be/stops/209184"], ["https://data.delijn.be/stops/203080", "https://data.delijn.be/stops/204975"], ["https://data.delijn.be/stops/301456", "https://data.delijn.be/stops/301517"], ["https://data.delijn.be/stops/306691", "https://data.delijn.be/stops/306692"], ["https://data.delijn.be/stops/102472", "https://data.delijn.be/stops/400359"], ["https://data.delijn.be/stops/102378", "https://data.delijn.be/stops/106661"], ["https://data.delijn.be/stops/406212", "https://data.delijn.be/stops/406213"], ["https://data.delijn.be/stops/204631", "https://data.delijn.be/stops/204632"], ["https://data.delijn.be/stops/109801", "https://data.delijn.be/stops/109802"], ["https://data.delijn.be/stops/502101", "https://data.delijn.be/stops/502102"], ["https://data.delijn.be/stops/505568", "https://data.delijn.be/stops/508639"], ["https://data.delijn.be/stops/403183", "https://data.delijn.be/stops/403445"], ["https://data.delijn.be/stops/102239", "https://data.delijn.be/stops/109748"], ["https://data.delijn.be/stops/202181", "https://data.delijn.be/stops/203181"], ["https://data.delijn.be/stops/200903", "https://data.delijn.be/stops/202261"], ["https://data.delijn.be/stops/303077", "https://data.delijn.be/stops/307048"], ["https://data.delijn.be/stops/207111", "https://data.delijn.be/stops/306732"], ["https://data.delijn.be/stops/103998", "https://data.delijn.be/stops/106890"], ["https://data.delijn.be/stops/302329", "https://data.delijn.be/stops/303468"], ["https://data.delijn.be/stops/503194", "https://data.delijn.be/stops/508194"], ["https://data.delijn.be/stops/400582", "https://data.delijn.be/stops/400622"], ["https://data.delijn.be/stops/201578", "https://data.delijn.be/stops/201732"], ["https://data.delijn.be/stops/404829", "https://data.delijn.be/stops/410045"], ["https://data.delijn.be/stops/402698", "https://data.delijn.be/stops/402870"], ["https://data.delijn.be/stops/206041", "https://data.delijn.be/stops/206055"], ["https://data.delijn.be/stops/106801", "https://data.delijn.be/stops/106803"], ["https://data.delijn.be/stops/101202", "https://data.delijn.be/stops/101203"], ["https://data.delijn.be/stops/408252", "https://data.delijn.be/stops/408253"], ["https://data.delijn.be/stops/106832", "https://data.delijn.be/stops/106833"], ["https://data.delijn.be/stops/109440", "https://data.delijn.be/stops/109441"], ["https://data.delijn.be/stops/301605", "https://data.delijn.be/stops/307339"], ["https://data.delijn.be/stops/207182", "https://data.delijn.be/stops/207957"], ["https://data.delijn.be/stops/308748", "https://data.delijn.be/stops/308750"], ["https://data.delijn.be/stops/406735", "https://data.delijn.be/stops/407625"], ["https://data.delijn.be/stops/107552", "https://data.delijn.be/stops/109381"], ["https://data.delijn.be/stops/504943", "https://data.delijn.be/stops/505529"], ["https://data.delijn.be/stops/403954", "https://data.delijn.be/stops/404025"], ["https://data.delijn.be/stops/206369", "https://data.delijn.be/stops/207371"], ["https://data.delijn.be/stops/104586", "https://data.delijn.be/stops/104861"], ["https://data.delijn.be/stops/203910", "https://data.delijn.be/stops/211070"], ["https://data.delijn.be/stops/300058", "https://data.delijn.be/stops/300060"], ["https://data.delijn.be/stops/204239", "https://data.delijn.be/stops/205096"], ["https://data.delijn.be/stops/302016", "https://data.delijn.be/stops/308654"], ["https://data.delijn.be/stops/405890", "https://data.delijn.be/stops/406880"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/506001"], ["https://data.delijn.be/stops/407587", "https://data.delijn.be/stops/407593"], ["https://data.delijn.be/stops/303463", "https://data.delijn.be/stops/308934"], ["https://data.delijn.be/stops/401024", "https://data.delijn.be/stops/401141"], ["https://data.delijn.be/stops/406139", "https://data.delijn.be/stops/406140"], ["https://data.delijn.be/stops/108298", "https://data.delijn.be/stops/109304"], ["https://data.delijn.be/stops/106121", "https://data.delijn.be/stops/106122"], ["https://data.delijn.be/stops/303790", "https://data.delijn.be/stops/303809"], ["https://data.delijn.be/stops/503317", "https://data.delijn.be/stops/508676"], ["https://data.delijn.be/stops/504739", "https://data.delijn.be/stops/509163"], ["https://data.delijn.be/stops/106722", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/200363", "https://data.delijn.be/stops/200549"], ["https://data.delijn.be/stops/302293", "https://data.delijn.be/stops/302298"], ["https://data.delijn.be/stops/304610", "https://data.delijn.be/stops/306202"], ["https://data.delijn.be/stops/208611", "https://data.delijn.be/stops/209566"], ["https://data.delijn.be/stops/407241", "https://data.delijn.be/stops/407457"], ["https://data.delijn.be/stops/304561", "https://data.delijn.be/stops/304654"], ["https://data.delijn.be/stops/306072", "https://data.delijn.be/stops/306730"], ["https://data.delijn.be/stops/402853", "https://data.delijn.be/stops/402893"], ["https://data.delijn.be/stops/302945", "https://data.delijn.be/stops/308656"], ["https://data.delijn.be/stops/406060", "https://data.delijn.be/stops/406064"], ["https://data.delijn.be/stops/301259", "https://data.delijn.be/stops/308261"], ["https://data.delijn.be/stops/108334", "https://data.delijn.be/stops/108337"], ["https://data.delijn.be/stops/200625", "https://data.delijn.be/stops/204984"], ["https://data.delijn.be/stops/107345", "https://data.delijn.be/stops/108410"], ["https://data.delijn.be/stops/405473", "https://data.delijn.be/stops/406554"], ["https://data.delijn.be/stops/402581", "https://data.delijn.be/stops/402583"], ["https://data.delijn.be/stops/202209", "https://data.delijn.be/stops/202773"], ["https://data.delijn.be/stops/401798", "https://data.delijn.be/stops/401820"], ["https://data.delijn.be/stops/502586", "https://data.delijn.be/stops/507366"], ["https://data.delijn.be/stops/204983", "https://data.delijn.be/stops/207208"], ["https://data.delijn.be/stops/202787", "https://data.delijn.be/stops/208642"], ["https://data.delijn.be/stops/501265", "https://data.delijn.be/stops/506265"], ["https://data.delijn.be/stops/504560", "https://data.delijn.be/stops/505186"], ["https://data.delijn.be/stops/502754", "https://data.delijn.be/stops/502761"], ["https://data.delijn.be/stops/300669", "https://data.delijn.be/stops/305961"], ["https://data.delijn.be/stops/101700", "https://data.delijn.be/stops/108005"], ["https://data.delijn.be/stops/408244", "https://data.delijn.be/stops/308198"], ["https://data.delijn.be/stops/206601", "https://data.delijn.be/stops/306973"], ["https://data.delijn.be/stops/503291", "https://data.delijn.be/stops/507709"], ["https://data.delijn.be/stops/302760", "https://data.delijn.be/stops/302769"], ["https://data.delijn.be/stops/109557", "https://data.delijn.be/stops/109558"], ["https://data.delijn.be/stops/105504", "https://data.delijn.be/stops/105506"], ["https://data.delijn.be/stops/407685", "https://data.delijn.be/stops/407687"], ["https://data.delijn.be/stops/301795", "https://data.delijn.be/stops/301823"], ["https://data.delijn.be/stops/106064", "https://data.delijn.be/stops/106066"], ["https://data.delijn.be/stops/107334", "https://data.delijn.be/stops/107336"], ["https://data.delijn.be/stops/405881", "https://data.delijn.be/stops/406859"], ["https://data.delijn.be/stops/405043", "https://data.delijn.be/stops/405804"], ["https://data.delijn.be/stops/103235", "https://data.delijn.be/stops/103255"], ["https://data.delijn.be/stops/208150", "https://data.delijn.be/stops/209521"], ["https://data.delijn.be/stops/302709", "https://data.delijn.be/stops/307846"], ["https://data.delijn.be/stops/105581", "https://data.delijn.be/stops/107498"], ["https://data.delijn.be/stops/202056", "https://data.delijn.be/stops/202281"], ["https://data.delijn.be/stops/208668", "https://data.delijn.be/stops/209441"], ["https://data.delijn.be/stops/503363", "https://data.delijn.be/stops/508372"], ["https://data.delijn.be/stops/503741", "https://data.delijn.be/stops/508445"], ["https://data.delijn.be/stops/504546", "https://data.delijn.be/stops/505991"], ["https://data.delijn.be/stops/106822", "https://data.delijn.be/stops/106839"], ["https://data.delijn.be/stops/301760", "https://data.delijn.be/stops/304571"], ["https://data.delijn.be/stops/405142", "https://data.delijn.be/stops/405296"], ["https://data.delijn.be/stops/303172", "https://data.delijn.be/stops/303175"], ["https://data.delijn.be/stops/105406", "https://data.delijn.be/stops/107320"], ["https://data.delijn.be/stops/302555", "https://data.delijn.be/stops/305980"], ["https://data.delijn.be/stops/406612", "https://data.delijn.be/stops/406613"], ["https://data.delijn.be/stops/108000", "https://data.delijn.be/stops/109055"], ["https://data.delijn.be/stops/302661", "https://data.delijn.be/stops/302676"], ["https://data.delijn.be/stops/405849", "https://data.delijn.be/stops/407259"], ["https://data.delijn.be/stops/305149", "https://data.delijn.be/stops/308050"], ["https://data.delijn.be/stops/206112", "https://data.delijn.be/stops/206229"], ["https://data.delijn.be/stops/300749", "https://data.delijn.be/stops/301010"], ["https://data.delijn.be/stops/105765", "https://data.delijn.be/stops/105766"], ["https://data.delijn.be/stops/503686", "https://data.delijn.be/stops/508686"], ["https://data.delijn.be/stops/402329", "https://data.delijn.be/stops/402367"], ["https://data.delijn.be/stops/301769", "https://data.delijn.be/stops/301784"], ["https://data.delijn.be/stops/502212", "https://data.delijn.be/stops/502583"], ["https://data.delijn.be/stops/205572", "https://data.delijn.be/stops/308715"], ["https://data.delijn.be/stops/403403", "https://data.delijn.be/stops/403497"], ["https://data.delijn.be/stops/301973", "https://data.delijn.be/stops/301978"], ["https://data.delijn.be/stops/505547", "https://data.delijn.be/stops/507175"], ["https://data.delijn.be/stops/209146", "https://data.delijn.be/stops/209403"], ["https://data.delijn.be/stops/102308", "https://data.delijn.be/stops/105659"], ["https://data.delijn.be/stops/504332", "https://data.delijn.be/stops/509332"], ["https://data.delijn.be/stops/405041", "https://data.delijn.be/stops/405072"], ["https://data.delijn.be/stops/301626", "https://data.delijn.be/stops/301628"], ["https://data.delijn.be/stops/400484", "https://data.delijn.be/stops/407210"], ["https://data.delijn.be/stops/102152", "https://data.delijn.be/stops/102153"], ["https://data.delijn.be/stops/107355", "https://data.delijn.be/stops/109845"], ["https://data.delijn.be/stops/302476", "https://data.delijn.be/stops/308832"], ["https://data.delijn.be/stops/200316", "https://data.delijn.be/stops/200649"], ["https://data.delijn.be/stops/202550", "https://data.delijn.be/stops/203550"], ["https://data.delijn.be/stops/204644", "https://data.delijn.be/stops/205646"], ["https://data.delijn.be/stops/104947", "https://data.delijn.be/stops/104954"], ["https://data.delijn.be/stops/502517", "https://data.delijn.be/stops/505670"], ["https://data.delijn.be/stops/107921", "https://data.delijn.be/stops/107922"], ["https://data.delijn.be/stops/403494", "https://data.delijn.be/stops/403550"], ["https://data.delijn.be/stops/202611", "https://data.delijn.be/stops/203611"], ["https://data.delijn.be/stops/405055", "https://data.delijn.be/stops/408329"], ["https://data.delijn.be/stops/504654", "https://data.delijn.be/stops/509133"], ["https://data.delijn.be/stops/500958", "https://data.delijn.be/stops/503268"], ["https://data.delijn.be/stops/207791", "https://data.delijn.be/stops/209408"], ["https://data.delijn.be/stops/200455", "https://data.delijn.be/stops/201456"], ["https://data.delijn.be/stops/200900", "https://data.delijn.be/stops/200927"], ["https://data.delijn.be/stops/208132", "https://data.delijn.be/stops/209132"], ["https://data.delijn.be/stops/202493", "https://data.delijn.be/stops/211043"], ["https://data.delijn.be/stops/504649", "https://data.delijn.be/stops/504846"], ["https://data.delijn.be/stops/202956", "https://data.delijn.be/stops/203958"], ["https://data.delijn.be/stops/403384", "https://data.delijn.be/stops/403406"], ["https://data.delijn.be/stops/102313", "https://data.delijn.be/stops/103290"], ["https://data.delijn.be/stops/304797", "https://data.delijn.be/stops/306141"], ["https://data.delijn.be/stops/503646", "https://data.delijn.be/stops/503732"], ["https://data.delijn.be/stops/302719", "https://data.delijn.be/stops/308594"], ["https://data.delijn.be/stops/505176", "https://data.delijn.be/stops/509199"], ["https://data.delijn.be/stops/208586", "https://data.delijn.be/stops/209457"], ["https://data.delijn.be/stops/211097", "https://data.delijn.be/stops/218503"], ["https://data.delijn.be/stops/504567", "https://data.delijn.be/stops/505412"], ["https://data.delijn.be/stops/402115", "https://data.delijn.be/stops/406787"], ["https://data.delijn.be/stops/407595", "https://data.delijn.be/stops/407599"], ["https://data.delijn.be/stops/108400", "https://data.delijn.be/stops/108409"], ["https://data.delijn.be/stops/206625", "https://data.delijn.be/stops/206627"], ["https://data.delijn.be/stops/400040", "https://data.delijn.be/stops/400175"], ["https://data.delijn.be/stops/405633", "https://data.delijn.be/stops/410211"], ["https://data.delijn.be/stops/103027", "https://data.delijn.be/stops/307524"], ["https://data.delijn.be/stops/206533", "https://data.delijn.be/stops/207455"], ["https://data.delijn.be/stops/505222", "https://data.delijn.be/stops/505735"], ["https://data.delijn.be/stops/107687", "https://data.delijn.be/stops/107691"], ["https://data.delijn.be/stops/101982", "https://data.delijn.be/stops/109048"], ["https://data.delijn.be/stops/402943", "https://data.delijn.be/stops/402944"], ["https://data.delijn.be/stops/106315", "https://data.delijn.be/stops/109136"], ["https://data.delijn.be/stops/301672", "https://data.delijn.be/stops/303662"], ["https://data.delijn.be/stops/300263", "https://data.delijn.be/stops/303813"], ["https://data.delijn.be/stops/305769", "https://data.delijn.be/stops/305770"], ["https://data.delijn.be/stops/502223", "https://data.delijn.be/stops/507222"], ["https://data.delijn.be/stops/501447", "https://data.delijn.be/stops/501454"], ["https://data.delijn.be/stops/303955", "https://data.delijn.be/stops/304177"], ["https://data.delijn.be/stops/206859", "https://data.delijn.be/stops/207529"], ["https://data.delijn.be/stops/402204", "https://data.delijn.be/stops/402332"], ["https://data.delijn.be/stops/404220", "https://data.delijn.be/stops/404223"], ["https://data.delijn.be/stops/505612", "https://data.delijn.be/stops/509780"], ["https://data.delijn.be/stops/204665", "https://data.delijn.be/stops/205126"], ["https://data.delijn.be/stops/106941", "https://data.delijn.be/stops/108699"], ["https://data.delijn.be/stops/208050", "https://data.delijn.be/stops/209049"], ["https://data.delijn.be/stops/204678", "https://data.delijn.be/stops/204696"], ["https://data.delijn.be/stops/103926", "https://data.delijn.be/stops/103929"], ["https://data.delijn.be/stops/101471", "https://data.delijn.be/stops/104804"], ["https://data.delijn.be/stops/501505", "https://data.delijn.be/stops/506504"], ["https://data.delijn.be/stops/406973", "https://data.delijn.be/stops/408181"], ["https://data.delijn.be/stops/208747", "https://data.delijn.be/stops/208748"], ["https://data.delijn.be/stops/103613", "https://data.delijn.be/stops/106309"], ["https://data.delijn.be/stops/202486", "https://data.delijn.be/stops/203487"], ["https://data.delijn.be/stops/504017", "https://data.delijn.be/stops/504018"], ["https://data.delijn.be/stops/202730", "https://data.delijn.be/stops/204620"], ["https://data.delijn.be/stops/503554", "https://data.delijn.be/stops/503570"], ["https://data.delijn.be/stops/302142", "https://data.delijn.be/stops/306269"], ["https://data.delijn.be/stops/503655", "https://data.delijn.be/stops/505794"], ["https://data.delijn.be/stops/508001", "https://data.delijn.be/stops/508007"], ["https://data.delijn.be/stops/205126", "https://data.delijn.be/stops/205665"], ["https://data.delijn.be/stops/501744", "https://data.delijn.be/stops/504123"], ["https://data.delijn.be/stops/402255", "https://data.delijn.be/stops/402290"], ["https://data.delijn.be/stops/101063", "https://data.delijn.be/stops/106009"], ["https://data.delijn.be/stops/404860", "https://data.delijn.be/stops/404867"], ["https://data.delijn.be/stops/202334", "https://data.delijn.be/stops/203334"], ["https://data.delijn.be/stops/504668", "https://data.delijn.be/stops/508317"], ["https://data.delijn.be/stops/104934", "https://data.delijn.be/stops/107842"], ["https://data.delijn.be/stops/206956", "https://data.delijn.be/stops/207188"], ["https://data.delijn.be/stops/401882", "https://data.delijn.be/stops/407348"], ["https://data.delijn.be/stops/206608", "https://data.delijn.be/stops/207207"], ["https://data.delijn.be/stops/501555", "https://data.delijn.be/stops/506682"], ["https://data.delijn.be/stops/502329", "https://data.delijn.be/stops/507329"], ["https://data.delijn.be/stops/106217", "https://data.delijn.be/stops/106218"], ["https://data.delijn.be/stops/307135", "https://data.delijn.be/stops/307136"], ["https://data.delijn.be/stops/402132", "https://data.delijn.be/stops/402154"], ["https://data.delijn.be/stops/102940", "https://data.delijn.be/stops/102945"], ["https://data.delijn.be/stops/206165", "https://data.delijn.be/stops/303401"], ["https://data.delijn.be/stops/202318", "https://data.delijn.be/stops/203318"], ["https://data.delijn.be/stops/102804", "https://data.delijn.be/stops/109444"], ["https://data.delijn.be/stops/209641", "https://data.delijn.be/stops/209642"], ["https://data.delijn.be/stops/308881", "https://data.delijn.be/stops/308978"], ["https://data.delijn.be/stops/307412", "https://data.delijn.be/stops/308054"], ["https://data.delijn.be/stops/103905", "https://data.delijn.be/stops/103946"], ["https://data.delijn.be/stops/502251", "https://data.delijn.be/stops/507253"], ["https://data.delijn.be/stops/503592", "https://data.delijn.be/stops/505964"], ["https://data.delijn.be/stops/503425", "https://data.delijn.be/stops/508376"], ["https://data.delijn.be/stops/402935", "https://data.delijn.be/stops/403966"], ["https://data.delijn.be/stops/407227", "https://data.delijn.be/stops/407509"], ["https://data.delijn.be/stops/300639", "https://data.delijn.be/stops/300642"], ["https://data.delijn.be/stops/300204", "https://data.delijn.be/stops/300210"], ["https://data.delijn.be/stops/201950", "https://data.delijn.be/stops/202940"], ["https://data.delijn.be/stops/108262", "https://data.delijn.be/stops/108266"], ["https://data.delijn.be/stops/408559", "https://data.delijn.be/stops/408618"], ["https://data.delijn.be/stops/206538", "https://data.delijn.be/stops/207559"], ["https://data.delijn.be/stops/508802", "https://data.delijn.be/stops/508812"], ["https://data.delijn.be/stops/504040", "https://data.delijn.be/stops/504286"], ["https://data.delijn.be/stops/103494", "https://data.delijn.be/stops/103499"], ["https://data.delijn.be/stops/409417", "https://data.delijn.be/stops/409418"], ["https://data.delijn.be/stops/102549", "https://data.delijn.be/stops/102550"], ["https://data.delijn.be/stops/504366", "https://data.delijn.be/stops/509366"], ["https://data.delijn.be/stops/302548", "https://data.delijn.be/stops/306638"], ["https://data.delijn.be/stops/301475", "https://data.delijn.be/stops/308073"], ["https://data.delijn.be/stops/301000", "https://data.delijn.be/stops/308355"], ["https://data.delijn.be/stops/103337", "https://data.delijn.be/stops/106471"], ["https://data.delijn.be/stops/503776", "https://data.delijn.be/stops/503777"], ["https://data.delijn.be/stops/400436", "https://data.delijn.be/stops/400437"], ["https://data.delijn.be/stops/405783", "https://data.delijn.be/stops/409770"], ["https://data.delijn.be/stops/104046", "https://data.delijn.be/stops/308442"], ["https://data.delijn.be/stops/109191", "https://data.delijn.be/stops/109192"], ["https://data.delijn.be/stops/200330", "https://data.delijn.be/stops/202203"], ["https://data.delijn.be/stops/302418", "https://data.delijn.be/stops/307111"], ["https://data.delijn.be/stops/404874", "https://data.delijn.be/stops/404878"], ["https://data.delijn.be/stops/304904", "https://data.delijn.be/stops/304905"], ["https://data.delijn.be/stops/300958", "https://data.delijn.be/stops/300969"], ["https://data.delijn.be/stops/503284", "https://data.delijn.be/stops/503285"], ["https://data.delijn.be/stops/502428", "https://data.delijn.be/stops/507697"], ["https://data.delijn.be/stops/504791", "https://data.delijn.be/stops/508517"], ["https://data.delijn.be/stops/504741", "https://data.delijn.be/stops/509173"], ["https://data.delijn.be/stops/109826", "https://data.delijn.be/stops/109827"], ["https://data.delijn.be/stops/207048", "https://data.delijn.be/stops/207632"], ["https://data.delijn.be/stops/504503", "https://data.delijn.be/stops/505167"], ["https://data.delijn.be/stops/206264", "https://data.delijn.be/stops/206268"], ["https://data.delijn.be/stops/302885", "https://data.delijn.be/stops/303105"], ["https://data.delijn.be/stops/104497", "https://data.delijn.be/stops/107508"], ["https://data.delijn.be/stops/107696", "https://data.delijn.be/stops/107698"], ["https://data.delijn.be/stops/103572", "https://data.delijn.be/stops/103574"], ["https://data.delijn.be/stops/505217", "https://data.delijn.be/stops/505425"], ["https://data.delijn.be/stops/502328", "https://data.delijn.be/stops/505508"], ["https://data.delijn.be/stops/108551", "https://data.delijn.be/stops/109535"], ["https://data.delijn.be/stops/408319", "https://data.delijn.be/stops/408337"], ["https://data.delijn.be/stops/400175", "https://data.delijn.be/stops/405497"], ["https://data.delijn.be/stops/206046", "https://data.delijn.be/stops/206875"], ["https://data.delijn.be/stops/300183", "https://data.delijn.be/stops/300209"], ["https://data.delijn.be/stops/407089", "https://data.delijn.be/stops/407293"], ["https://data.delijn.be/stops/502381", "https://data.delijn.be/stops/502392"], ["https://data.delijn.be/stops/106200", "https://data.delijn.be/stops/106307"], ["https://data.delijn.be/stops/508763", "https://data.delijn.be/stops/508958"], ["https://data.delijn.be/stops/400108", "https://data.delijn.be/stops/409164"], ["https://data.delijn.be/stops/202911", "https://data.delijn.be/stops/203916"], ["https://data.delijn.be/stops/305255", "https://data.delijn.be/stops/305288"], ["https://data.delijn.be/stops/303434", "https://data.delijn.be/stops/304961"], ["https://data.delijn.be/stops/102447", "https://data.delijn.be/stops/104122"], ["https://data.delijn.be/stops/101530", "https://data.delijn.be/stops/104493"], ["https://data.delijn.be/stops/407623", "https://data.delijn.be/stops/407707"], ["https://data.delijn.be/stops/200699", "https://data.delijn.be/stops/201664"], ["https://data.delijn.be/stops/501018", "https://data.delijn.be/stops/501612"], ["https://data.delijn.be/stops/101816", "https://data.delijn.be/stops/107830"], ["https://data.delijn.be/stops/209471", "https://data.delijn.be/stops/209472"], ["https://data.delijn.be/stops/405386", "https://data.delijn.be/stops/405496"], ["https://data.delijn.be/stops/109115", "https://data.delijn.be/stops/109150"], ["https://data.delijn.be/stops/400364", "https://data.delijn.be/stops/406769"], ["https://data.delijn.be/stops/507693", "https://data.delijn.be/stops/503018"], ["https://data.delijn.be/stops/108049", "https://data.delijn.be/stops/108051"], ["https://data.delijn.be/stops/206092", "https://data.delijn.be/stops/207090"], ["https://data.delijn.be/stops/102424", "https://data.delijn.be/stops/105660"], ["https://data.delijn.be/stops/304283", "https://data.delijn.be/stops/306139"], ["https://data.delijn.be/stops/502341", "https://data.delijn.be/stops/502733"], ["https://data.delijn.be/stops/402703", "https://data.delijn.be/stops/405995"], ["https://data.delijn.be/stops/210079", "https://data.delijn.be/stops/210089"], ["https://data.delijn.be/stops/502320", "https://data.delijn.be/stops/507335"], ["https://data.delijn.be/stops/506308", "https://data.delijn.be/stops/506783"], ["https://data.delijn.be/stops/203118", "https://data.delijn.be/stops/204079"], ["https://data.delijn.be/stops/107037", "https://data.delijn.be/stops/108248"], ["https://data.delijn.be/stops/503711", "https://data.delijn.be/stops/503727"], ["https://data.delijn.be/stops/406500", "https://data.delijn.be/stops/406514"], ["https://data.delijn.be/stops/201941", "https://data.delijn.be/stops/210054"], ["https://data.delijn.be/stops/202609", "https://data.delijn.be/stops/203613"], ["https://data.delijn.be/stops/304593", "https://data.delijn.be/stops/304628"], ["https://data.delijn.be/stops/409692", "https://data.delijn.be/stops/409696"], ["https://data.delijn.be/stops/301294", "https://data.delijn.be/stops/307254"], ["https://data.delijn.be/stops/202058", "https://data.delijn.be/stops/203280"], ["https://data.delijn.be/stops/308021", "https://data.delijn.be/stops/308022"], ["https://data.delijn.be/stops/503627", "https://data.delijn.be/stops/508627"], ["https://data.delijn.be/stops/106884", "https://data.delijn.be/stops/106886"], ["https://data.delijn.be/stops/307972", "https://data.delijn.be/stops/307976"], ["https://data.delijn.be/stops/409428", "https://data.delijn.be/stops/409438"], ["https://data.delijn.be/stops/207191", "https://data.delijn.be/stops/207223"], ["https://data.delijn.be/stops/408268", "https://data.delijn.be/stops/408305"], ["https://data.delijn.be/stops/502445", "https://data.delijn.be/stops/507444"], ["https://data.delijn.be/stops/103227", "https://data.delijn.be/stops/109405"], ["https://data.delijn.be/stops/102977", "https://data.delijn.be/stops/103995"], ["https://data.delijn.be/stops/507264", "https://data.delijn.be/stops/507912"], ["https://data.delijn.be/stops/106042", "https://data.delijn.be/stops/106058"], ["https://data.delijn.be/stops/307628", "https://data.delijn.be/stops/307629"], ["https://data.delijn.be/stops/502540", "https://data.delijn.be/stops/507540"], ["https://data.delijn.be/stops/504739", "https://data.delijn.be/stops/505916"], ["https://data.delijn.be/stops/208540", "https://data.delijn.be/stops/208846"], ["https://data.delijn.be/stops/305188", "https://data.delijn.be/stops/306967"], ["https://data.delijn.be/stops/105737", "https://data.delijn.be/stops/105738"], ["https://data.delijn.be/stops/205988", "https://data.delijn.be/stops/218028"], ["https://data.delijn.be/stops/302788", "https://data.delijn.be/stops/302790"], ["https://data.delijn.be/stops/102090", "https://data.delijn.be/stops/102820"], ["https://data.delijn.be/stops/405758", "https://data.delijn.be/stops/405759"], ["https://data.delijn.be/stops/303717", "https://data.delijn.be/stops/303876"], ["https://data.delijn.be/stops/105907", "https://data.delijn.be/stops/105908"], ["https://data.delijn.be/stops/209045", "https://data.delijn.be/stops/209059"], ["https://data.delijn.be/stops/200509", "https://data.delijn.be/stops/200510"], ["https://data.delijn.be/stops/104043", "https://data.delijn.be/stops/305986"], ["https://data.delijn.be/stops/304890", "https://data.delijn.be/stops/307984"], ["https://data.delijn.be/stops/300039", "https://data.delijn.be/stops/300051"], ["https://data.delijn.be/stops/208192", "https://data.delijn.be/stops/208760"], ["https://data.delijn.be/stops/101675", "https://data.delijn.be/stops/102972"], ["https://data.delijn.be/stops/305702", "https://data.delijn.be/stops/305703"], ["https://data.delijn.be/stops/307367", "https://data.delijn.be/stops/307453"], ["https://data.delijn.be/stops/204983", "https://data.delijn.be/stops/206608"], ["https://data.delijn.be/stops/306608", "https://data.delijn.be/stops/306758"], ["https://data.delijn.be/stops/104637", "https://data.delijn.be/stops/104649"], ["https://data.delijn.be/stops/504032", "https://data.delijn.be/stops/509028"], ["https://data.delijn.be/stops/204513", "https://data.delijn.be/stops/205554"], ["https://data.delijn.be/stops/408302", "https://data.delijn.be/stops/408303"], ["https://data.delijn.be/stops/103259", "https://data.delijn.be/stops/109824"], ["https://data.delijn.be/stops/305695", "https://data.delijn.be/stops/305699"], ["https://data.delijn.be/stops/304160", "https://data.delijn.be/stops/304172"], ["https://data.delijn.be/stops/108573", "https://data.delijn.be/stops/108628"], ["https://data.delijn.be/stops/305083", "https://data.delijn.be/stops/306960"], ["https://data.delijn.be/stops/208353", "https://data.delijn.be/stops/209352"], ["https://data.delijn.be/stops/106944", "https://data.delijn.be/stops/106946"], ["https://data.delijn.be/stops/108328", "https://data.delijn.be/stops/108356"], ["https://data.delijn.be/stops/200314", "https://data.delijn.be/stops/201314"], ["https://data.delijn.be/stops/405909", "https://data.delijn.be/stops/405999"], ["https://data.delijn.be/stops/504663", "https://data.delijn.be/stops/509363"], ["https://data.delijn.be/stops/403420", "https://data.delijn.be/stops/403421"], ["https://data.delijn.be/stops/501053", "https://data.delijn.be/stops/506053"], ["https://data.delijn.be/stops/303734", "https://data.delijn.be/stops/303748"], ["https://data.delijn.be/stops/307789", "https://data.delijn.be/stops/308138"], ["https://data.delijn.be/stops/502073", "https://data.delijn.be/stops/507560"], ["https://data.delijn.be/stops/200004", "https://data.delijn.be/stops/201006"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/107142"], ["https://data.delijn.be/stops/505058", "https://data.delijn.be/stops/505059"], ["https://data.delijn.be/stops/501298", "https://data.delijn.be/stops/501331"], ["https://data.delijn.be/stops/105074", "https://data.delijn.be/stops/105189"], ["https://data.delijn.be/stops/402463", "https://data.delijn.be/stops/402465"], ["https://data.delijn.be/stops/303062", "https://data.delijn.be/stops/305443"], ["https://data.delijn.be/stops/207712", "https://data.delijn.be/stops/207714"], ["https://data.delijn.be/stops/505540", "https://data.delijn.be/stops/505908"], ["https://data.delijn.be/stops/201935", "https://data.delijn.be/stops/202955"], ["https://data.delijn.be/stops/102248", "https://data.delijn.be/stops/105937"], ["https://data.delijn.be/stops/301281", "https://data.delijn.be/stops/301282"], ["https://data.delijn.be/stops/303778", "https://data.delijn.be/stops/303801"], ["https://data.delijn.be/stops/201352", "https://data.delijn.be/stops/201962"], ["https://data.delijn.be/stops/206520", "https://data.delijn.be/stops/206521"], ["https://data.delijn.be/stops/202599", "https://data.delijn.be/stops/203599"], ["https://data.delijn.be/stops/107539", "https://data.delijn.be/stops/109603"], ["https://data.delijn.be/stops/107701", "https://data.delijn.be/stops/107714"], ["https://data.delijn.be/stops/201493", "https://data.delijn.be/stops/202294"], ["https://data.delijn.be/stops/503135", "https://data.delijn.be/stops/504829"], ["https://data.delijn.be/stops/201868", "https://data.delijn.be/stops/201869"], ["https://data.delijn.be/stops/201747", "https://data.delijn.be/stops/203160"], ["https://data.delijn.be/stops/101218", "https://data.delijn.be/stops/102441"], ["https://data.delijn.be/stops/404788", "https://data.delijn.be/stops/404789"], ["https://data.delijn.be/stops/401158", "https://data.delijn.be/stops/406719"], ["https://data.delijn.be/stops/207718", "https://data.delijn.be/stops/207873"], ["https://data.delijn.be/stops/504018", "https://data.delijn.be/stops/509016"], ["https://data.delijn.be/stops/504158", "https://data.delijn.be/stops/504161"], ["https://data.delijn.be/stops/400742", "https://data.delijn.be/stops/400743"], ["https://data.delijn.be/stops/206762", "https://data.delijn.be/stops/208623"], ["https://data.delijn.be/stops/305955", "https://data.delijn.be/stops/307514"], ["https://data.delijn.be/stops/102933", "https://data.delijn.be/stops/102969"], ["https://data.delijn.be/stops/204471", "https://data.delijn.be/stops/204778"], ["https://data.delijn.be/stops/300778", "https://data.delijn.be/stops/302408"], ["https://data.delijn.be/stops/105393", "https://data.delijn.be/stops/205820"], ["https://data.delijn.be/stops/504771", "https://data.delijn.be/stops/505084"], ["https://data.delijn.be/stops/205972", "https://data.delijn.be/stops/206055"], ["https://data.delijn.be/stops/305090", "https://data.delijn.be/stops/305092"], ["https://data.delijn.be/stops/504264", "https://data.delijn.be/stops/509264"], ["https://data.delijn.be/stops/106087", "https://data.delijn.be/stops/106135"], ["https://data.delijn.be/stops/201074", "https://data.delijn.be/stops/203352"], ["https://data.delijn.be/stops/204090", "https://data.delijn.be/stops/205090"], ["https://data.delijn.be/stops/303079", "https://data.delijn.be/stops/303080"], ["https://data.delijn.be/stops/300807", "https://data.delijn.be/stops/307026"], ["https://data.delijn.be/stops/503421", "https://data.delijn.be/stops/505190"], ["https://data.delijn.be/stops/206318", "https://data.delijn.be/stops/207289"], ["https://data.delijn.be/stops/305254", "https://data.delijn.be/stops/305307"], ["https://data.delijn.be/stops/504850", "https://data.delijn.be/stops/508742"], ["https://data.delijn.be/stops/208441", "https://data.delijn.be/stops/208516"], ["https://data.delijn.be/stops/105322", "https://data.delijn.be/stops/105323"], ["https://data.delijn.be/stops/502118", "https://data.delijn.be/stops/507118"], ["https://data.delijn.be/stops/400031", "https://data.delijn.be/stops/400033"], ["https://data.delijn.be/stops/103625", "https://data.delijn.be/stops/103630"], ["https://data.delijn.be/stops/209112", "https://data.delijn.be/stops/209798"], ["https://data.delijn.be/stops/105498", "https://data.delijn.be/stops/105501"], ["https://data.delijn.be/stops/407783", "https://data.delijn.be/stops/307447"], ["https://data.delijn.be/stops/106052", "https://data.delijn.be/stops/109946"], ["https://data.delijn.be/stops/301546", "https://data.delijn.be/stops/301550"], ["https://data.delijn.be/stops/302513", "https://data.delijn.be/stops/302514"], ["https://data.delijn.be/stops/203975", "https://data.delijn.be/stops/206281"], ["https://data.delijn.be/stops/105497", "https://data.delijn.be/stops/105498"], ["https://data.delijn.be/stops/402700", "https://data.delijn.be/stops/306021"], ["https://data.delijn.be/stops/404245", "https://data.delijn.be/stops/409305"], ["https://data.delijn.be/stops/302070", "https://data.delijn.be/stops/305635"], ["https://data.delijn.be/stops/505797", "https://data.delijn.be/stops/507949"], ["https://data.delijn.be/stops/208007", "https://data.delijn.be/stops/209006"], ["https://data.delijn.be/stops/301308", "https://data.delijn.be/stops/301902"], ["https://data.delijn.be/stops/407774", "https://data.delijn.be/stops/410248"], ["https://data.delijn.be/stops/501186", "https://data.delijn.be/stops/505747"], ["https://data.delijn.be/stops/203522", "https://data.delijn.be/stops/203523"], ["https://data.delijn.be/stops/504388", "https://data.delijn.be/stops/504712"], ["https://data.delijn.be/stops/201961", "https://data.delijn.be/stops/209491"], ["https://data.delijn.be/stops/209336", "https://data.delijn.be/stops/209337"], ["https://data.delijn.be/stops/302468", "https://data.delijn.be/stops/308832"], ["https://data.delijn.be/stops/201709", "https://data.delijn.be/stops/201710"], ["https://data.delijn.be/stops/407987", "https://data.delijn.be/stops/408089"], ["https://data.delijn.be/stops/406535", "https://data.delijn.be/stops/409642"], ["https://data.delijn.be/stops/103637", "https://data.delijn.be/stops/107168"], ["https://data.delijn.be/stops/102746", "https://data.delijn.be/stops/106415"], ["https://data.delijn.be/stops/302253", "https://data.delijn.be/stops/303205"], ["https://data.delijn.be/stops/105451", "https://data.delijn.be/stops/105452"], ["https://data.delijn.be/stops/207675", "https://data.delijn.be/stops/208491"], ["https://data.delijn.be/stops/201023", "https://data.delijn.be/stops/201100"], ["https://data.delijn.be/stops/400862", "https://data.delijn.be/stops/400866"], ["https://data.delijn.be/stops/105417", "https://data.delijn.be/stops/105424"], ["https://data.delijn.be/stops/502385", "https://data.delijn.be/stops/502588"], ["https://data.delijn.be/stops/102543", "https://data.delijn.be/stops/405102"], ["https://data.delijn.be/stops/507696", "https://data.delijn.be/stops/507697"], ["https://data.delijn.be/stops/109265", "https://data.delijn.be/stops/407111"], ["https://data.delijn.be/stops/104948", "https://data.delijn.be/stops/109786"], ["https://data.delijn.be/stops/304322", "https://data.delijn.be/stops/304324"], ["https://data.delijn.be/stops/101945", "https://data.delijn.be/stops/109707"], ["https://data.delijn.be/stops/307818", "https://data.delijn.be/stops/307819"], ["https://data.delijn.be/stops/502242", "https://data.delijn.be/stops/507242"], ["https://data.delijn.be/stops/101974", "https://data.delijn.be/stops/109062"], ["https://data.delijn.be/stops/508167", "https://data.delijn.be/stops/508877"], ["https://data.delijn.be/stops/201672", "https://data.delijn.be/stops/203403"], ["https://data.delijn.be/stops/102382", "https://data.delijn.be/stops/109641"], ["https://data.delijn.be/stops/402215", "https://data.delijn.be/stops/402216"], ["https://data.delijn.be/stops/507659", "https://data.delijn.be/stops/507660"], ["https://data.delijn.be/stops/105427", "https://data.delijn.be/stops/105433"], ["https://data.delijn.be/stops/109857", "https://data.delijn.be/stops/109931"], ["https://data.delijn.be/stops/504413", "https://data.delijn.be/stops/504467"], ["https://data.delijn.be/stops/201638", "https://data.delijn.be/stops/202941"], ["https://data.delijn.be/stops/202240", "https://data.delijn.be/stops/207593"], ["https://data.delijn.be/stops/203578", "https://data.delijn.be/stops/203641"], ["https://data.delijn.be/stops/303006", "https://data.delijn.be/stops/308660"], ["https://data.delijn.be/stops/408333", "https://data.delijn.be/stops/408335"], ["https://data.delijn.be/stops/308154", "https://data.delijn.be/stops/308173"], ["https://data.delijn.be/stops/300698", "https://data.delijn.be/stops/300720"], ["https://data.delijn.be/stops/102295", "https://data.delijn.be/stops/107460"], ["https://data.delijn.be/stops/206934", "https://data.delijn.be/stops/207934"], ["https://data.delijn.be/stops/307568", "https://data.delijn.be/stops/307585"], ["https://data.delijn.be/stops/204060", "https://data.delijn.be/stops/205723"], ["https://data.delijn.be/stops/305547", "https://data.delijn.be/stops/305579"], ["https://data.delijn.be/stops/106805", "https://data.delijn.be/stops/106806"], ["https://data.delijn.be/stops/405776", "https://data.delijn.be/stops/408481"], ["https://data.delijn.be/stops/400858", "https://data.delijn.be/stops/400859"], ["https://data.delijn.be/stops/101046", "https://data.delijn.be/stops/105983"], ["https://data.delijn.be/stops/407628", "https://data.delijn.be/stops/407632"], ["https://data.delijn.be/stops/404439", "https://data.delijn.be/stops/404469"], ["https://data.delijn.be/stops/207165", "https://data.delijn.be/stops/303796"], ["https://data.delijn.be/stops/301871", "https://data.delijn.be/stops/301876"], ["https://data.delijn.be/stops/503549", "https://data.delijn.be/stops/508548"], ["https://data.delijn.be/stops/402160", "https://data.delijn.be/stops/402264"], ["https://data.delijn.be/stops/303627", "https://data.delijn.be/stops/307205"], ["https://data.delijn.be/stops/503201", "https://data.delijn.be/stops/508194"], ["https://data.delijn.be/stops/407614", "https://data.delijn.be/stops/407619"], ["https://data.delijn.be/stops/504535", "https://data.delijn.be/stops/508724"], ["https://data.delijn.be/stops/109171", "https://data.delijn.be/stops/109172"], ["https://data.delijn.be/stops/202751", "https://data.delijn.be/stops/203751"], ["https://data.delijn.be/stops/207762", "https://data.delijn.be/stops/208372"], ["https://data.delijn.be/stops/407594", "https://data.delijn.be/stops/407664"], ["https://data.delijn.be/stops/501045", "https://data.delijn.be/stops/506045"], ["https://data.delijn.be/stops/503838", "https://data.delijn.be/stops/508839"], ["https://data.delijn.be/stops/507689", "https://data.delijn.be/stops/509295"], ["https://data.delijn.be/stops/203232", "https://data.delijn.be/stops/211121"], ["https://data.delijn.be/stops/406043", "https://data.delijn.be/stops/407862"], ["https://data.delijn.be/stops/207631", "https://data.delijn.be/stops/208569"], ["https://data.delijn.be/stops/303364", "https://data.delijn.be/stops/303387"], ["https://data.delijn.be/stops/504170", "https://data.delijn.be/stops/509170"], ["https://data.delijn.be/stops/105109", "https://data.delijn.be/stops/107813"], ["https://data.delijn.be/stops/104941", "https://data.delijn.be/stops/107692"], ["https://data.delijn.be/stops/304402", "https://data.delijn.be/stops/307416"], ["https://data.delijn.be/stops/200570", "https://data.delijn.be/stops/200575"], ["https://data.delijn.be/stops/402976", "https://data.delijn.be/stops/405985"], ["https://data.delijn.be/stops/402891", "https://data.delijn.be/stops/402893"], ["https://data.delijn.be/stops/202511", "https://data.delijn.be/stops/203511"], ["https://data.delijn.be/stops/105009", "https://data.delijn.be/stops/105079"], ["https://data.delijn.be/stops/204370", "https://data.delijn.be/stops/204762"], ["https://data.delijn.be/stops/307565", "https://data.delijn.be/stops/307566"], ["https://data.delijn.be/stops/207177", "https://data.delijn.be/stops/305923"], ["https://data.delijn.be/stops/106837", "https://data.delijn.be/stops/107422"], ["https://data.delijn.be/stops/301019", "https://data.delijn.be/stops/301020"], ["https://data.delijn.be/stops/200198", "https://data.delijn.be/stops/201068"], ["https://data.delijn.be/stops/306776", "https://data.delijn.be/stops/306778"], ["https://data.delijn.be/stops/200083", "https://data.delijn.be/stops/200393"], ["https://data.delijn.be/stops/406916", "https://data.delijn.be/stops/409483"], ["https://data.delijn.be/stops/304076", "https://data.delijn.be/stops/304077"], ["https://data.delijn.be/stops/503230", "https://data.delijn.be/stops/509765"], ["https://data.delijn.be/stops/205663", "https://data.delijn.be/stops/205688"], ["https://data.delijn.be/stops/105926", "https://data.delijn.be/stops/107267"], ["https://data.delijn.be/stops/307318", "https://data.delijn.be/stops/307319"], ["https://data.delijn.be/stops/300543", "https://data.delijn.be/stops/303968"], ["https://data.delijn.be/stops/200533", "https://data.delijn.be/stops/201533"], ["https://data.delijn.be/stops/503604", "https://data.delijn.be/stops/508617"], ["https://data.delijn.be/stops/107597", "https://data.delijn.be/stops/107598"], ["https://data.delijn.be/stops/108120", "https://data.delijn.be/stops/108405"], ["https://data.delijn.be/stops/407861", "https://data.delijn.be/stops/408027"], ["https://data.delijn.be/stops/503543", "https://data.delijn.be/stops/503579"], ["https://data.delijn.be/stops/202362", "https://data.delijn.be/stops/203362"], ["https://data.delijn.be/stops/402883", "https://data.delijn.be/stops/402885"], ["https://data.delijn.be/stops/208786", "https://data.delijn.be/stops/209176"], ["https://data.delijn.be/stops/401089", "https://data.delijn.be/stops/409815"], ["https://data.delijn.be/stops/301285", "https://data.delijn.be/stops/304691"], ["https://data.delijn.be/stops/208247", "https://data.delijn.be/stops/209855"], ["https://data.delijn.be/stops/408514", "https://data.delijn.be/stops/408515"], ["https://data.delijn.be/stops/301927", "https://data.delijn.be/stops/301928"], ["https://data.delijn.be/stops/200823", "https://data.delijn.be/stops/202448"], ["https://data.delijn.be/stops/102075", "https://data.delijn.be/stops/102889"], ["https://data.delijn.be/stops/206371", "https://data.delijn.be/stops/207371"], ["https://data.delijn.be/stops/501240", "https://data.delijn.be/stops/501243"], ["https://data.delijn.be/stops/108649", "https://data.delijn.be/stops/305220"], ["https://data.delijn.be/stops/404199", "https://data.delijn.be/stops/404219"], ["https://data.delijn.be/stops/202578", "https://data.delijn.be/stops/211851"], ["https://data.delijn.be/stops/502931", "https://data.delijn.be/stops/504961"], ["https://data.delijn.be/stops/302018", "https://data.delijn.be/stops/302046"], ["https://data.delijn.be/stops/205272", "https://data.delijn.be/stops/205447"], ["https://data.delijn.be/stops/403785", "https://data.delijn.be/stops/408991"], ["https://data.delijn.be/stops/400593", "https://data.delijn.be/stops/400594"], ["https://data.delijn.be/stops/106909", "https://data.delijn.be/stops/107259"], ["https://data.delijn.be/stops/202372", "https://data.delijn.be/stops/203373"], ["https://data.delijn.be/stops/302316", "https://data.delijn.be/stops/304062"], ["https://data.delijn.be/stops/505026", "https://data.delijn.be/stops/505742"], ["https://data.delijn.be/stops/402943", "https://data.delijn.be/stops/303646"], ["https://data.delijn.be/stops/206346", "https://data.delijn.be/stops/207717"], ["https://data.delijn.be/stops/202309", "https://data.delijn.be/stops/203308"], ["https://data.delijn.be/stops/406965", "https://data.delijn.be/stops/406966"], ["https://data.delijn.be/stops/504533", "https://data.delijn.be/stops/504534"], ["https://data.delijn.be/stops/106344", "https://data.delijn.be/stops/106346"], ["https://data.delijn.be/stops/300418", "https://data.delijn.be/stops/300427"], ["https://data.delijn.be/stops/204234", "https://data.delijn.be/stops/205234"], ["https://data.delijn.be/stops/102248", "https://data.delijn.be/stops/102863"], ["https://data.delijn.be/stops/102485", "https://data.delijn.be/stops/103186"], ["https://data.delijn.be/stops/103745", "https://data.delijn.be/stops/103750"], ["https://data.delijn.be/stops/404649", "https://data.delijn.be/stops/409550"], ["https://data.delijn.be/stops/503240", "https://data.delijn.be/stops/508240"], ["https://data.delijn.be/stops/105528", "https://data.delijn.be/stops/105529"], ["https://data.delijn.be/stops/306147", "https://data.delijn.be/stops/306148"], ["https://data.delijn.be/stops/206177", "https://data.delijn.be/stops/207177"], ["https://data.delijn.be/stops/407704", "https://data.delijn.be/stops/409623"], ["https://data.delijn.be/stops/202477", "https://data.delijn.be/stops/203477"], ["https://data.delijn.be/stops/504363", "https://data.delijn.be/stops/504663"], ["https://data.delijn.be/stops/302060", "https://data.delijn.be/stops/302077"], ["https://data.delijn.be/stops/308528", "https://data.delijn.be/stops/308529"], ["https://data.delijn.be/stops/503556", "https://data.delijn.be/stops/503582"], ["https://data.delijn.be/stops/300090", "https://data.delijn.be/stops/307947"], ["https://data.delijn.be/stops/407306", "https://data.delijn.be/stops/407307"], ["https://data.delijn.be/stops/300155", "https://data.delijn.be/stops/300158"], ["https://data.delijn.be/stops/408452", "https://data.delijn.be/stops/410217"], ["https://data.delijn.be/stops/106263", "https://data.delijn.be/stops/106274"], ["https://data.delijn.be/stops/103290", "https://data.delijn.be/stops/108145"], ["https://data.delijn.be/stops/407843", "https://data.delijn.be/stops/407844"], ["https://data.delijn.be/stops/408518", "https://data.delijn.be/stops/408736"], ["https://data.delijn.be/stops/400143", "https://data.delijn.be/stops/409147"], ["https://data.delijn.be/stops/501270", "https://data.delijn.be/stops/501511"], ["https://data.delijn.be/stops/302102", "https://data.delijn.be/stops/306989"], ["https://data.delijn.be/stops/504350", "https://data.delijn.be/stops/504595"], ["https://data.delijn.be/stops/408340", "https://data.delijn.be/stops/408401"], ["https://data.delijn.be/stops/305415", "https://data.delijn.be/stops/305461"], ["https://data.delijn.be/stops/103082", "https://data.delijn.be/stops/104676"], ["https://data.delijn.be/stops/303865", "https://data.delijn.be/stops/303866"], ["https://data.delijn.be/stops/306907", "https://data.delijn.be/stops/308127"], ["https://data.delijn.be/stops/206327", "https://data.delijn.be/stops/308847"], ["https://data.delijn.be/stops/401399", "https://data.delijn.be/stops/410152"], ["https://data.delijn.be/stops/502103", "https://data.delijn.be/stops/507148"], ["https://data.delijn.be/stops/208078", "https://data.delijn.be/stops/209078"], ["https://data.delijn.be/stops/504243", "https://data.delijn.be/stops/504443"], ["https://data.delijn.be/stops/405683", "https://data.delijn.be/stops/405846"], ["https://data.delijn.be/stops/103963", "https://data.delijn.be/stops/408154"], ["https://data.delijn.be/stops/206459", "https://data.delijn.be/stops/206462"], ["https://data.delijn.be/stops/202374", "https://data.delijn.be/stops/202375"], ["https://data.delijn.be/stops/101924", "https://data.delijn.be/stops/107012"], ["https://data.delijn.be/stops/302653", "https://data.delijn.be/stops/303259"], ["https://data.delijn.be/stops/204680", "https://data.delijn.be/stops/205679"], ["https://data.delijn.be/stops/101048", "https://data.delijn.be/stops/104108"], ["https://data.delijn.be/stops/104905", "https://data.delijn.be/stops/104946"], ["https://data.delijn.be/stops/101688", "https://data.delijn.be/stops/103133"], ["https://data.delijn.be/stops/504561", "https://data.delijn.be/stops/509561"], ["https://data.delijn.be/stops/206804", "https://data.delijn.be/stops/209348"], ["https://data.delijn.be/stops/406320", "https://data.delijn.be/stops/406330"], ["https://data.delijn.be/stops/305313", "https://data.delijn.be/stops/305336"], ["https://data.delijn.be/stops/204796", "https://data.delijn.be/stops/205796"], ["https://data.delijn.be/stops/402222", "https://data.delijn.be/stops/402260"], ["https://data.delijn.be/stops/303369", "https://data.delijn.be/stops/303388"], ["https://data.delijn.be/stops/202198", "https://data.delijn.be/stops/203198"], ["https://data.delijn.be/stops/403471", "https://data.delijn.be/stops/403472"], ["https://data.delijn.be/stops/300944", "https://data.delijn.be/stops/300947"], ["https://data.delijn.be/stops/201060", "https://data.delijn.be/stops/201091"], ["https://data.delijn.be/stops/502272", "https://data.delijn.be/stops/507271"], ["https://data.delijn.be/stops/204731", "https://data.delijn.be/stops/204772"], ["https://data.delijn.be/stops/503267", "https://data.delijn.be/stops/508267"], ["https://data.delijn.be/stops/509414", "https://data.delijn.be/stops/509591"], ["https://data.delijn.be/stops/202576", "https://data.delijn.be/stops/202583"], ["https://data.delijn.be/stops/305333", "https://data.delijn.be/stops/307296"], ["https://data.delijn.be/stops/306069", "https://data.delijn.be/stops/306721"], ["https://data.delijn.be/stops/300287", "https://data.delijn.be/stops/300288"], ["https://data.delijn.be/stops/300706", "https://data.delijn.be/stops/308064"], ["https://data.delijn.be/stops/406574", "https://data.delijn.be/stops/406575"], ["https://data.delijn.be/stops/505030", "https://data.delijn.be/stops/505839"], ["https://data.delijn.be/stops/304888", "https://data.delijn.be/stops/304893"], ["https://data.delijn.be/stops/300773", "https://data.delijn.be/stops/302398"], ["https://data.delijn.be/stops/303589", "https://data.delijn.be/stops/305221"], ["https://data.delijn.be/stops/204972", "https://data.delijn.be/stops/207265"], ["https://data.delijn.be/stops/204143", "https://data.delijn.be/stops/205131"], ["https://data.delijn.be/stops/407831", "https://data.delijn.be/stops/408064"], ["https://data.delijn.be/stops/505983", "https://data.delijn.be/stops/509609"], ["https://data.delijn.be/stops/503511", "https://data.delijn.be/stops/505659"], ["https://data.delijn.be/stops/105508", "https://data.delijn.be/stops/105786"], ["https://data.delijn.be/stops/303305", "https://data.delijn.be/stops/303309"], ["https://data.delijn.be/stops/304506", "https://data.delijn.be/stops/304507"], ["https://data.delijn.be/stops/407041", "https://data.delijn.be/stops/407075"], ["https://data.delijn.be/stops/104672", "https://data.delijn.be/stops/104673"], ["https://data.delijn.be/stops/404436", "https://data.delijn.be/stops/404471"], ["https://data.delijn.be/stops/202275", "https://data.delijn.be/stops/203691"], ["https://data.delijn.be/stops/301115", "https://data.delijn.be/stops/301132"], ["https://data.delijn.be/stops/201281", "https://data.delijn.be/stops/201282"], ["https://data.delijn.be/stops/305999", "https://data.delijn.be/stops/307507"], ["https://data.delijn.be/stops/306863", "https://data.delijn.be/stops/306866"], ["https://data.delijn.be/stops/301956", "https://data.delijn.be/stops/307832"], ["https://data.delijn.be/stops/206429", "https://data.delijn.be/stops/209692"], ["https://data.delijn.be/stops/405214", "https://data.delijn.be/stops/405215"], ["https://data.delijn.be/stops/400876", "https://data.delijn.be/stops/407533"], ["https://data.delijn.be/stops/405935", "https://data.delijn.be/stops/405966"], ["https://data.delijn.be/stops/206088", "https://data.delijn.be/stops/206722"], ["https://data.delijn.be/stops/300454", "https://data.delijn.be/stops/308063"], ["https://data.delijn.be/stops/305258", "https://data.delijn.be/stops/305306"], ["https://data.delijn.be/stops/202483", "https://data.delijn.be/stops/203338"], ["https://data.delijn.be/stops/406402", "https://data.delijn.be/stops/407638"], ["https://data.delijn.be/stops/500041", "https://data.delijn.be/stops/500051"], ["https://data.delijn.be/stops/404102", "https://data.delijn.be/stops/404109"], ["https://data.delijn.be/stops/408391", "https://data.delijn.be/stops/308218"], ["https://data.delijn.be/stops/502112", "https://data.delijn.be/stops/502148"], ["https://data.delijn.be/stops/403800", "https://data.delijn.be/stops/403803"], ["https://data.delijn.be/stops/502119", "https://data.delijn.be/stops/507680"], ["https://data.delijn.be/stops/107370", "https://data.delijn.be/stops/107585"], ["https://data.delijn.be/stops/200833", "https://data.delijn.be/stops/200835"], ["https://data.delijn.be/stops/302155", "https://data.delijn.be/stops/308096"], ["https://data.delijn.be/stops/403270", "https://data.delijn.be/stops/409126"], ["https://data.delijn.be/stops/305549", "https://data.delijn.be/stops/308550"], ["https://data.delijn.be/stops/300514", "https://data.delijn.be/stops/300525"], ["https://data.delijn.be/stops/504001", "https://data.delijn.be/stops/508498"], ["https://data.delijn.be/stops/104693", "https://data.delijn.be/stops/107354"], ["https://data.delijn.be/stops/502545", "https://data.delijn.be/stops/507542"], ["https://data.delijn.be/stops/406488", "https://data.delijn.be/stops/406489"], ["https://data.delijn.be/stops/207565", "https://data.delijn.be/stops/207837"], ["https://data.delijn.be/stops/202981", "https://data.delijn.be/stops/203983"], ["https://data.delijn.be/stops/108615", "https://data.delijn.be/stops/108620"], ["https://data.delijn.be/stops/203789", "https://data.delijn.be/stops/203790"], ["https://data.delijn.be/stops/103352", "https://data.delijn.be/stops/107450"], ["https://data.delijn.be/stops/503726", "https://data.delijn.be/stops/508726"], ["https://data.delijn.be/stops/101765", "https://data.delijn.be/stops/103282"], ["https://data.delijn.be/stops/106189", "https://data.delijn.be/stops/107439"], ["https://data.delijn.be/stops/101808", "https://data.delijn.be/stops/108377"], ["https://data.delijn.be/stops/302778", "https://data.delijn.be/stops/302780"], ["https://data.delijn.be/stops/503904", "https://data.delijn.be/stops/505443"], ["https://data.delijn.be/stops/502549", "https://data.delijn.be/stops/507656"], ["https://data.delijn.be/stops/409100", "https://data.delijn.be/stops/409140"], ["https://data.delijn.be/stops/407522", "https://data.delijn.be/stops/407542"], ["https://data.delijn.be/stops/101939", "https://data.delijn.be/stops/105085"], ["https://data.delijn.be/stops/507423", "https://data.delijn.be/stops/507751"], ["https://data.delijn.be/stops/202671", "https://data.delijn.be/stops/210035"], ["https://data.delijn.be/stops/401296", "https://data.delijn.be/stops/401350"], ["https://data.delijn.be/stops/300680", "https://data.delijn.be/stops/300683"], ["https://data.delijn.be/stops/203223", "https://data.delijn.be/stops/204773"], ["https://data.delijn.be/stops/102178", "https://data.delijn.be/stops/102625"], ["https://data.delijn.be/stops/403766", "https://data.delijn.be/stops/406973"], ["https://data.delijn.be/stops/302791", "https://data.delijn.be/stops/307455"], ["https://data.delijn.be/stops/308211", "https://data.delijn.be/stops/308221"], ["https://data.delijn.be/stops/209343", "https://data.delijn.be/stops/218028"], ["https://data.delijn.be/stops/406445", "https://data.delijn.be/stops/409404"], ["https://data.delijn.be/stops/206015", "https://data.delijn.be/stops/207297"], ["https://data.delijn.be/stops/405897", "https://data.delijn.be/stops/409666"], ["https://data.delijn.be/stops/503926", "https://data.delijn.be/stops/508926"], ["https://data.delijn.be/stops/403632", "https://data.delijn.be/stops/404408"], ["https://data.delijn.be/stops/501769", "https://data.delijn.be/stops/505356"], ["https://data.delijn.be/stops/302298", "https://data.delijn.be/stops/307133"], ["https://data.delijn.be/stops/502615", "https://data.delijn.be/stops/502641"], ["https://data.delijn.be/stops/101676", "https://data.delijn.be/stops/101678"], ["https://data.delijn.be/stops/101536", "https://data.delijn.be/stops/404047"], ["https://data.delijn.be/stops/105108", "https://data.delijn.be/stops/106831"], ["https://data.delijn.be/stops/201847", "https://data.delijn.be/stops/210021"], ["https://data.delijn.be/stops/103643", "https://data.delijn.be/stops/106634"], ["https://data.delijn.be/stops/200094", "https://data.delijn.be/stops/201469"], ["https://data.delijn.be/stops/102581", "https://data.delijn.be/stops/104600"], ["https://data.delijn.be/stops/205941", "https://data.delijn.be/stops/210046"], ["https://data.delijn.be/stops/101385", "https://data.delijn.be/stops/101865"], ["https://data.delijn.be/stops/302834", "https://data.delijn.be/stops/302835"], ["https://data.delijn.be/stops/107076", "https://data.delijn.be/stops/107077"], ["https://data.delijn.be/stops/503070", "https://data.delijn.be/stops/508070"], ["https://data.delijn.be/stops/410291", "https://data.delijn.be/stops/410351"], ["https://data.delijn.be/stops/104109", "https://data.delijn.be/stops/205604"], ["https://data.delijn.be/stops/306877", "https://data.delijn.be/stops/306879"], ["https://data.delijn.be/stops/203102", "https://data.delijn.be/stops/203104"], ["https://data.delijn.be/stops/206760", "https://data.delijn.be/stops/209456"], ["https://data.delijn.be/stops/502283", "https://data.delijn.be/stops/507283"], ["https://data.delijn.be/stops/401633", "https://data.delijn.be/stops/401649"], ["https://data.delijn.be/stops/400642", "https://data.delijn.be/stops/400908"], ["https://data.delijn.be/stops/306851", "https://data.delijn.be/stops/306854"], ["https://data.delijn.be/stops/300548", "https://data.delijn.be/stops/300556"], ["https://data.delijn.be/stops/505202", "https://data.delijn.be/stops/505426"], ["https://data.delijn.be/stops/200117", "https://data.delijn.be/stops/200118"], ["https://data.delijn.be/stops/402810", "https://data.delijn.be/stops/409443"], ["https://data.delijn.be/stops/507175", "https://data.delijn.be/stops/507686"], ["https://data.delijn.be/stops/109916", "https://data.delijn.be/stops/301151"], ["https://data.delijn.be/stops/500046", "https://data.delijn.be/stops/500053"], ["https://data.delijn.be/stops/107566", "https://data.delijn.be/stops/107568"], ["https://data.delijn.be/stops/403344", "https://data.delijn.be/stops/403481"], ["https://data.delijn.be/stops/408094", "https://data.delijn.be/stops/408095"], ["https://data.delijn.be/stops/304632", "https://data.delijn.be/stops/308756"], ["https://data.delijn.be/stops/208295", "https://data.delijn.be/stops/209120"], ["https://data.delijn.be/stops/508172", "https://data.delijn.be/stops/508176"], ["https://data.delijn.be/stops/406193", "https://data.delijn.be/stops/406447"], ["https://data.delijn.be/stops/401199", "https://data.delijn.be/stops/401203"], ["https://data.delijn.be/stops/503052", "https://data.delijn.be/stops/508052"], ["https://data.delijn.be/stops/402387", "https://data.delijn.be/stops/402488"], ["https://data.delijn.be/stops/102875", "https://data.delijn.be/stops/102880"], ["https://data.delijn.be/stops/504001", "https://data.delijn.be/stops/504002"], ["https://data.delijn.be/stops/206685", "https://data.delijn.be/stops/207874"], ["https://data.delijn.be/stops/400572", "https://data.delijn.be/stops/400573"], ["https://data.delijn.be/stops/503330", "https://data.delijn.be/stops/509735"], ["https://data.delijn.be/stops/303133", "https://data.delijn.be/stops/304649"], ["https://data.delijn.be/stops/102392", "https://data.delijn.be/stops/107113"], ["https://data.delijn.be/stops/107614", "https://data.delijn.be/stops/107647"], ["https://data.delijn.be/stops/204830", "https://data.delijn.be/stops/205670"], ["https://data.delijn.be/stops/405550", "https://data.delijn.be/stops/405578"], ["https://data.delijn.be/stops/502571", "https://data.delijn.be/stops/502574"], ["https://data.delijn.be/stops/404697", "https://data.delijn.be/stops/405514"], ["https://data.delijn.be/stops/403299", "https://data.delijn.be/stops/403544"], ["https://data.delijn.be/stops/502815", "https://data.delijn.be/stops/505689"], ["https://data.delijn.be/stops/502294", "https://data.delijn.be/stops/507099"], ["https://data.delijn.be/stops/501661", "https://data.delijn.be/stops/506662"], ["https://data.delijn.be/stops/503594", "https://data.delijn.be/stops/508594"], ["https://data.delijn.be/stops/102422", "https://data.delijn.be/stops/106997"], ["https://data.delijn.be/stops/305979", "https://data.delijn.be/stops/305982"], ["https://data.delijn.be/stops/302772", "https://data.delijn.be/stops/308597"], ["https://data.delijn.be/stops/104646", "https://data.delijn.be/stops/108054"], ["https://data.delijn.be/stops/404082", "https://data.delijn.be/stops/301514"], ["https://data.delijn.be/stops/503645", "https://data.delijn.be/stops/509976"], ["https://data.delijn.be/stops/200550", "https://data.delijn.be/stops/201550"], ["https://data.delijn.be/stops/308488", "https://data.delijn.be/stops/308490"], ["https://data.delijn.be/stops/406369", "https://data.delijn.be/stops/410394"], ["https://data.delijn.be/stops/401804", "https://data.delijn.be/stops/401817"], ["https://data.delijn.be/stops/304573", "https://data.delijn.be/stops/304659"], ["https://data.delijn.be/stops/403196", "https://data.delijn.be/stops/403198"], ["https://data.delijn.be/stops/301962", "https://data.delijn.be/stops/301980"], ["https://data.delijn.be/stops/403153", "https://data.delijn.be/stops/410274"], ["https://data.delijn.be/stops/504762", "https://data.delijn.be/stops/508530"], ["https://data.delijn.be/stops/407017", "https://data.delijn.be/stops/407063"], ["https://data.delijn.be/stops/507253", "https://data.delijn.be/stops/507254"], ["https://data.delijn.be/stops/102547", "https://data.delijn.be/stops/405100"], ["https://data.delijn.be/stops/202706", "https://data.delijn.be/stops/203706"], ["https://data.delijn.be/stops/400922", "https://data.delijn.be/stops/407375"], ["https://data.delijn.be/stops/304697", "https://data.delijn.be/stops/307195"], ["https://data.delijn.be/stops/302219", "https://data.delijn.be/stops/302231"], ["https://data.delijn.be/stops/502768", "https://data.delijn.be/stops/502769"], ["https://data.delijn.be/stops/109890", "https://data.delijn.be/stops/109947"], ["https://data.delijn.be/stops/502628", "https://data.delijn.be/stops/507121"], ["https://data.delijn.be/stops/502336", "https://data.delijn.be/stops/502658"], ["https://data.delijn.be/stops/201885", "https://data.delijn.be/stops/203284"], ["https://data.delijn.be/stops/404808", "https://data.delijn.be/stops/406094"], ["https://data.delijn.be/stops/102723", "https://data.delijn.be/stops/107010"], ["https://data.delijn.be/stops/304393", "https://data.delijn.be/stops/307402"], ["https://data.delijn.be/stops/102743", "https://data.delijn.be/stops/107403"], ["https://data.delijn.be/stops/404430", "https://data.delijn.be/stops/404431"], ["https://data.delijn.be/stops/300982", "https://data.delijn.be/stops/300983"], ["https://data.delijn.be/stops/408978", "https://data.delijn.be/stops/408991"], ["https://data.delijn.be/stops/500955", "https://data.delijn.be/stops/508288"], ["https://data.delijn.be/stops/408234", "https://data.delijn.be/stops/308194"], ["https://data.delijn.be/stops/404763", "https://data.delijn.be/stops/404766"], ["https://data.delijn.be/stops/206585", "https://data.delijn.be/stops/206586"], ["https://data.delijn.be/stops/102976", "https://data.delijn.be/stops/106767"], ["https://data.delijn.be/stops/308737", "https://data.delijn.be/stops/308738"], ["https://data.delijn.be/stops/405769", "https://data.delijn.be/stops/405804"], ["https://data.delijn.be/stops/507419", "https://data.delijn.be/stops/507695"], ["https://data.delijn.be/stops/404774", "https://data.delijn.be/stops/404775"], ["https://data.delijn.be/stops/407800", "https://data.delijn.be/stops/407802"], ["https://data.delijn.be/stops/303958", "https://data.delijn.be/stops/303972"], ["https://data.delijn.be/stops/300180", "https://data.delijn.be/stops/300185"], ["https://data.delijn.be/stops/206033", "https://data.delijn.be/stops/207901"], ["https://data.delijn.be/stops/509270", "https://data.delijn.be/stops/509274"], ["https://data.delijn.be/stops/302998", "https://data.delijn.be/stops/303003"], ["https://data.delijn.be/stops/200774", "https://data.delijn.be/stops/503980"], ["https://data.delijn.be/stops/101748", "https://data.delijn.be/stops/104341"], ["https://data.delijn.be/stops/302192", "https://data.delijn.be/stops/302423"], ["https://data.delijn.be/stops/109494", "https://data.delijn.be/stops/305836"], ["https://data.delijn.be/stops/200877", "https://data.delijn.be/stops/202063"], ["https://data.delijn.be/stops/408068", "https://data.delijn.be/stops/305705"], ["https://data.delijn.be/stops/501310", "https://data.delijn.be/stops/506211"], ["https://data.delijn.be/stops/103950", "https://data.delijn.be/stops/105710"], ["https://data.delijn.be/stops/403403", "https://data.delijn.be/stops/403404"], ["https://data.delijn.be/stops/302507", "https://data.delijn.be/stops/302508"], ["https://data.delijn.be/stops/101299", "https://data.delijn.be/stops/106478"], ["https://data.delijn.be/stops/200539", "https://data.delijn.be/stops/201539"], ["https://data.delijn.be/stops/200902", "https://data.delijn.be/stops/203107"], ["https://data.delijn.be/stops/105312", "https://data.delijn.be/stops/105313"], ["https://data.delijn.be/stops/308228", "https://data.delijn.be/stops/308230"], ["https://data.delijn.be/stops/504046", "https://data.delijn.be/stops/506002"], ["https://data.delijn.be/stops/205098", "https://data.delijn.be/stops/205138"], ["https://data.delijn.be/stops/302011", "https://data.delijn.be/stops/302036"], ["https://data.delijn.be/stops/202041", "https://data.delijn.be/stops/202042"], ["https://data.delijn.be/stops/201242", "https://data.delijn.be/stops/205358"], ["https://data.delijn.be/stops/501028", "https://data.delijn.be/stops/506632"], ["https://data.delijn.be/stops/402494", "https://data.delijn.be/stops/402498"], ["https://data.delijn.be/stops/106434", "https://data.delijn.be/stops/106562"], ["https://data.delijn.be/stops/109967", "https://data.delijn.be/stops/109974"], ["https://data.delijn.be/stops/104022", "https://data.delijn.be/stops/106982"], ["https://data.delijn.be/stops/303131", "https://data.delijn.be/stops/306086"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/203190"], ["https://data.delijn.be/stops/501073", "https://data.delijn.be/stops/501380"], ["https://data.delijn.be/stops/500567", "https://data.delijn.be/stops/501042"], ["https://data.delijn.be/stops/108720", "https://data.delijn.be/stops/108729"], ["https://data.delijn.be/stops/503009", "https://data.delijn.be/stops/508014"], ["https://data.delijn.be/stops/404418", "https://data.delijn.be/stops/407245"], ["https://data.delijn.be/stops/404596", "https://data.delijn.be/stops/406900"], ["https://data.delijn.be/stops/404399", "https://data.delijn.be/stops/408485"], ["https://data.delijn.be/stops/203682", "https://data.delijn.be/stops/203706"], ["https://data.delijn.be/stops/505276", "https://data.delijn.be/stops/508330"], ["https://data.delijn.be/stops/208547", "https://data.delijn.be/stops/209546"], ["https://data.delijn.be/stops/401277", "https://data.delijn.be/stops/401320"], ["https://data.delijn.be/stops/400754", "https://data.delijn.be/stops/400755"], ["https://data.delijn.be/stops/103100", "https://data.delijn.be/stops/103125"], ["https://data.delijn.be/stops/201915", "https://data.delijn.be/stops/203952"], ["https://data.delijn.be/stops/302873", "https://data.delijn.be/stops/306402"], ["https://data.delijn.be/stops/211019", "https://data.delijn.be/stops/508578"], ["https://data.delijn.be/stops/409421", "https://data.delijn.be/stops/409422"], ["https://data.delijn.be/stops/101195", "https://data.delijn.be/stops/104355"], ["https://data.delijn.be/stops/201089", "https://data.delijn.be/stops/202745"], ["https://data.delijn.be/stops/504049", "https://data.delijn.be/stops/509049"], ["https://data.delijn.be/stops/300084", "https://data.delijn.be/stops/300097"], ["https://data.delijn.be/stops/303227", "https://data.delijn.be/stops/304183"], ["https://data.delijn.be/stops/106732", "https://data.delijn.be/stops/106733"], ["https://data.delijn.be/stops/202759", "https://data.delijn.be/stops/203004"], ["https://data.delijn.be/stops/101024", "https://data.delijn.be/stops/101026"], ["https://data.delijn.be/stops/107223", "https://data.delijn.be/stops/107226"], ["https://data.delijn.be/stops/205983", "https://data.delijn.be/stops/208805"], ["https://data.delijn.be/stops/502800", "https://data.delijn.be/stops/504178"], ["https://data.delijn.be/stops/300449", "https://data.delijn.be/stops/308758"], ["https://data.delijn.be/stops/409041", "https://data.delijn.be/stops/409471"], ["https://data.delijn.be/stops/504521", "https://data.delijn.be/stops/509518"], ["https://data.delijn.be/stops/208216", "https://data.delijn.be/stops/209238"], ["https://data.delijn.be/stops/301921", "https://data.delijn.be/stops/301922"], ["https://data.delijn.be/stops/503380", "https://data.delijn.be/stops/503412"], ["https://data.delijn.be/stops/400133", "https://data.delijn.be/stops/409169"], ["https://data.delijn.be/stops/403790", "https://data.delijn.be/stops/403877"], ["https://data.delijn.be/stops/208121", "https://data.delijn.be/stops/209780"], ["https://data.delijn.be/stops/302186", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/203376", "https://data.delijn.be/stops/203377"], ["https://data.delijn.be/stops/200818", "https://data.delijn.be/stops/202301"], ["https://data.delijn.be/stops/407926", "https://data.delijn.be/stops/408018"], ["https://data.delijn.be/stops/502063", "https://data.delijn.be/stops/507068"], ["https://data.delijn.be/stops/400931", "https://data.delijn.be/stops/400940"], ["https://data.delijn.be/stops/404854", "https://data.delijn.be/stops/404944"], ["https://data.delijn.be/stops/102473", "https://data.delijn.be/stops/400296"], ["https://data.delijn.be/stops/400748", "https://data.delijn.be/stops/409580"], ["https://data.delijn.be/stops/102922", "https://data.delijn.be/stops/104865"], ["https://data.delijn.be/stops/509259", "https://data.delijn.be/stops/509261"], ["https://data.delijn.be/stops/305346", "https://data.delijn.be/stops/305349"], ["https://data.delijn.be/stops/207178", "https://data.delijn.be/stops/303844"], ["https://data.delijn.be/stops/103575", "https://data.delijn.be/stops/104975"], ["https://data.delijn.be/stops/501485", "https://data.delijn.be/stops/506135"], ["https://data.delijn.be/stops/204020", "https://data.delijn.be/stops/204820"], ["https://data.delijn.be/stops/207792", "https://data.delijn.be/stops/208872"], ["https://data.delijn.be/stops/300644", "https://data.delijn.be/stops/300658"], ["https://data.delijn.be/stops/102170", "https://data.delijn.be/stops/102447"], ["https://data.delijn.be/stops/403986", "https://data.delijn.be/stops/410025"], ["https://data.delijn.be/stops/302753", "https://data.delijn.be/stops/302760"], ["https://data.delijn.be/stops/301020", "https://data.delijn.be/stops/301022"], ["https://data.delijn.be/stops/406993", "https://data.delijn.be/stops/409232"], ["https://data.delijn.be/stops/501113", "https://data.delijn.be/stops/501463"], ["https://data.delijn.be/stops/302455", "https://data.delijn.be/stops/302456"], ["https://data.delijn.be/stops/107957", "https://data.delijn.be/stops/107958"], ["https://data.delijn.be/stops/305460", "https://data.delijn.be/stops/306554"], ["https://data.delijn.be/stops/305001", "https://data.delijn.be/stops/305034"], ["https://data.delijn.be/stops/104608", "https://data.delijn.be/stops/108841"], ["https://data.delijn.be/stops/208103", "https://data.delijn.be/stops/209103"], ["https://data.delijn.be/stops/300556", "https://data.delijn.be/stops/307864"], ["https://data.delijn.be/stops/503775", "https://data.delijn.be/stops/504000"], ["https://data.delijn.be/stops/504108", "https://data.delijn.be/stops/505798"], ["https://data.delijn.be/stops/401160", "https://data.delijn.be/stops/408102"], ["https://data.delijn.be/stops/106083", "https://data.delijn.be/stops/106084"], ["https://data.delijn.be/stops/503142", "https://data.delijn.be/stops/508144"], ["https://data.delijn.be/stops/101186", "https://data.delijn.be/stops/102848"], ["https://data.delijn.be/stops/302587", "https://data.delijn.be/stops/302594"], ["https://data.delijn.be/stops/501123", "https://data.delijn.be/stops/506121"], ["https://data.delijn.be/stops/305944", "https://data.delijn.be/stops/308413"], ["https://data.delijn.be/stops/303254", "https://data.delijn.be/stops/303255"], ["https://data.delijn.be/stops/209462", "https://data.delijn.be/stops/209674"], ["https://data.delijn.be/stops/406117", "https://data.delijn.be/stops/410262"], ["https://data.delijn.be/stops/501311", "https://data.delijn.be/stops/501523"], ["https://data.delijn.be/stops/108032", "https://data.delijn.be/stops/108034"], ["https://data.delijn.be/stops/507429", "https://data.delijn.be/stops/507436"], ["https://data.delijn.be/stops/404524", "https://data.delijn.be/stops/404554"], ["https://data.delijn.be/stops/102675", "https://data.delijn.be/stops/103930"], ["https://data.delijn.be/stops/302671", "https://data.delijn.be/stops/302672"], ["https://data.delijn.be/stops/104598", "https://data.delijn.be/stops/106810"], ["https://data.delijn.be/stops/201458", "https://data.delijn.be/stops/201737"], ["https://data.delijn.be/stops/303692", "https://data.delijn.be/stops/303761"], ["https://data.delijn.be/stops/505387", "https://data.delijn.be/stops/508086"], ["https://data.delijn.be/stops/107316", "https://data.delijn.be/stops/108816"], ["https://data.delijn.be/stops/101640", "https://data.delijn.be/stops/105780"], ["https://data.delijn.be/stops/304166", "https://data.delijn.be/stops/307540"], ["https://data.delijn.be/stops/501215", "https://data.delijn.be/stops/506212"], ["https://data.delijn.be/stops/105418", "https://data.delijn.be/stops/109846"], ["https://data.delijn.be/stops/503110", "https://data.delijn.be/stops/503113"], ["https://data.delijn.be/stops/206159", "https://data.delijn.be/stops/206495"], ["https://data.delijn.be/stops/305876", "https://data.delijn.be/stops/305944"], ["https://data.delijn.be/stops/402256", "https://data.delijn.be/stops/409631"], ["https://data.delijn.be/stops/304360", "https://data.delijn.be/stops/307368"], ["https://data.delijn.be/stops/505016", "https://data.delijn.be/stops/507925"], ["https://data.delijn.be/stops/502540", "https://data.delijn.be/stops/505090"], ["https://data.delijn.be/stops/300980", "https://data.delijn.be/stops/301002"], ["https://data.delijn.be/stops/301702", "https://data.delijn.be/stops/303713"], ["https://data.delijn.be/stops/105672", "https://data.delijn.be/stops/105802"], ["https://data.delijn.be/stops/105324", "https://data.delijn.be/stops/105331"], ["https://data.delijn.be/stops/200114", "https://data.delijn.be/stops/211075"], ["https://data.delijn.be/stops/305529", "https://data.delijn.be/stops/308980"], ["https://data.delijn.be/stops/204521", "https://data.delijn.be/stops/204756"], ["https://data.delijn.be/stops/403744", "https://data.delijn.be/stops/403791"], ["https://data.delijn.be/stops/200570", "https://data.delijn.be/stops/201574"], ["https://data.delijn.be/stops/307760", "https://data.delijn.be/stops/307761"], ["https://data.delijn.be/stops/109357", "https://data.delijn.be/stops/109867"], ["https://data.delijn.be/stops/403374", "https://data.delijn.be/stops/403560"], ["https://data.delijn.be/stops/106807", "https://data.delijn.be/stops/106810"], ["https://data.delijn.be/stops/503259", "https://data.delijn.be/stops/503264"], ["https://data.delijn.be/stops/505022", "https://data.delijn.be/stops/507708"], ["https://data.delijn.be/stops/301696", "https://data.delijn.be/stops/301777"], ["https://data.delijn.be/stops/303995", "https://data.delijn.be/stops/306292"], ["https://data.delijn.be/stops/400069", "https://data.delijn.be/stops/400167"], ["https://data.delijn.be/stops/304037", "https://data.delijn.be/stops/304090"], ["https://data.delijn.be/stops/208368", "https://data.delijn.be/stops/209367"], ["https://data.delijn.be/stops/307741", "https://data.delijn.be/stops/307743"], ["https://data.delijn.be/stops/302862", "https://data.delijn.be/stops/304926"], ["https://data.delijn.be/stops/404249", "https://data.delijn.be/stops/404323"], ["https://data.delijn.be/stops/402984", "https://data.delijn.be/stops/404267"], ["https://data.delijn.be/stops/206437", "https://data.delijn.be/stops/209685"], ["https://data.delijn.be/stops/501523", "https://data.delijn.be/stops/506309"], ["https://data.delijn.be/stops/507416", "https://data.delijn.be/stops/507427"], ["https://data.delijn.be/stops/402810", "https://data.delijn.be/stops/409045"], ["https://data.delijn.be/stops/402597", "https://data.delijn.be/stops/404098"], ["https://data.delijn.be/stops/508876", "https://data.delijn.be/stops/509752"], ["https://data.delijn.be/stops/104077", "https://data.delijn.be/stops/106072"], ["https://data.delijn.be/stops/504264", "https://data.delijn.be/stops/505829"], ["https://data.delijn.be/stops/501528", "https://data.delijn.be/stops/506198"], ["https://data.delijn.be/stops/102193", "https://data.delijn.be/stops/104261"], ["https://data.delijn.be/stops/405769", "https://data.delijn.be/stops/307453"], ["https://data.delijn.be/stops/109535", "https://data.delijn.be/stops/109590"], ["https://data.delijn.be/stops/302218", "https://data.delijn.be/stops/302219"], ["https://data.delijn.be/stops/200952", "https://data.delijn.be/stops/203248"], ["https://data.delijn.be/stops/502522", "https://data.delijn.be/stops/507519"], ["https://data.delijn.be/stops/501595", "https://data.delijn.be/stops/506221"], ["https://data.delijn.be/stops/404247", "https://data.delijn.be/stops/409630"], ["https://data.delijn.be/stops/503420", "https://data.delijn.be/stops/508420"], ["https://data.delijn.be/stops/105036", "https://data.delijn.be/stops/105064"], ["https://data.delijn.be/stops/206439", "https://data.delijn.be/stops/207442"], ["https://data.delijn.be/stops/206631", "https://data.delijn.be/stops/209570"], ["https://data.delijn.be/stops/301027", "https://data.delijn.be/stops/302986"], ["https://data.delijn.be/stops/201147", "https://data.delijn.be/stops/201229"], ["https://data.delijn.be/stops/305296", "https://data.delijn.be/stops/305908"], ["https://data.delijn.be/stops/201435", "https://data.delijn.be/stops/210090"], ["https://data.delijn.be/stops/408371", "https://data.delijn.be/stops/409415"], ["https://data.delijn.be/stops/503765", "https://data.delijn.be/stops/509971"], ["https://data.delijn.be/stops/200705", "https://data.delijn.be/stops/202573"], ["https://data.delijn.be/stops/200906", "https://data.delijn.be/stops/202237"], ["https://data.delijn.be/stops/503012", "https://data.delijn.be/stops/504538"], ["https://data.delijn.be/stops/104220", "https://data.delijn.be/stops/106015"], ["https://data.delijn.be/stops/504777", "https://data.delijn.be/stops/504778"], ["https://data.delijn.be/stops/502608", "https://data.delijn.be/stops/505705"], ["https://data.delijn.be/stops/102320", "https://data.delijn.be/stops/106359"], ["https://data.delijn.be/stops/108283", "https://data.delijn.be/stops/109362"], ["https://data.delijn.be/stops/508479", "https://data.delijn.be/stops/508483"], ["https://data.delijn.be/stops/302090", "https://data.delijn.be/stops/306989"], ["https://data.delijn.be/stops/406150", "https://data.delijn.be/stops/406155"], ["https://data.delijn.be/stops/404182", "https://data.delijn.be/stops/404186"], ["https://data.delijn.be/stops/302939", "https://data.delijn.be/stops/308590"], ["https://data.delijn.be/stops/204756", "https://data.delijn.be/stops/205482"], ["https://data.delijn.be/stops/503311", "https://data.delijn.be/stops/503312"], ["https://data.delijn.be/stops/206720", "https://data.delijn.be/stops/207656"], ["https://data.delijn.be/stops/206469", "https://data.delijn.be/stops/207136"], ["https://data.delijn.be/stops/301881", "https://data.delijn.be/stops/301885"], ["https://data.delijn.be/stops/104021", "https://data.delijn.be/stops/104942"], ["https://data.delijn.be/stops/307974", "https://data.delijn.be/stops/307975"], ["https://data.delijn.be/stops/301367", "https://data.delijn.be/stops/303279"], ["https://data.delijn.be/stops/106901", "https://data.delijn.be/stops/106902"], ["https://data.delijn.be/stops/108469", "https://data.delijn.be/stops/108471"], ["https://data.delijn.be/stops/401602", "https://data.delijn.be/stops/401603"], ["https://data.delijn.be/stops/504192", "https://data.delijn.be/stops/505101"], ["https://data.delijn.be/stops/300438", "https://data.delijn.be/stops/300439"], ["https://data.delijn.be/stops/302015", "https://data.delijn.be/stops/308754"], ["https://data.delijn.be/stops/204101", "https://data.delijn.be/stops/206394"], ["https://data.delijn.be/stops/209273", "https://data.delijn.be/stops/209276"], ["https://data.delijn.be/stops/304512", "https://data.delijn.be/stops/306206"], ["https://data.delijn.be/stops/203115", "https://data.delijn.be/stops/203116"], ["https://data.delijn.be/stops/104878", "https://data.delijn.be/stops/105296"], ["https://data.delijn.be/stops/307423", "https://data.delijn.be/stops/307424"], ["https://data.delijn.be/stops/101071", "https://data.delijn.be/stops/101072"], ["https://data.delijn.be/stops/504807", "https://data.delijn.be/stops/504808"], ["https://data.delijn.be/stops/204054", "https://data.delijn.be/stops/205703"], ["https://data.delijn.be/stops/102378", "https://data.delijn.be/stops/107194"], ["https://data.delijn.be/stops/102109", "https://data.delijn.be/stops/106229"], ["https://data.delijn.be/stops/502281", "https://data.delijn.be/stops/502815"], ["https://data.delijn.be/stops/208244", "https://data.delijn.be/stops/209244"], ["https://data.delijn.be/stops/505630", "https://data.delijn.be/stops/508334"], ["https://data.delijn.be/stops/106199", "https://data.delijn.be/stops/106201"], ["https://data.delijn.be/stops/104029", "https://data.delijn.be/stops/108808"], ["https://data.delijn.be/stops/101579", "https://data.delijn.be/stops/109891"], ["https://data.delijn.be/stops/403464", "https://data.delijn.be/stops/403493"], ["https://data.delijn.be/stops/505187", "https://data.delijn.be/stops/509568"], ["https://data.delijn.be/stops/104975", "https://data.delijn.be/stops/105105"], ["https://data.delijn.be/stops/106494", "https://data.delijn.be/stops/107062"], ["https://data.delijn.be/stops/105732", "https://data.delijn.be/stops/105733"], ["https://data.delijn.be/stops/408836", "https://data.delijn.be/stops/408844"], ["https://data.delijn.be/stops/201278", "https://data.delijn.be/stops/209952"], ["https://data.delijn.be/stops/508895", "https://data.delijn.be/stops/508987"], ["https://data.delijn.be/stops/202581", "https://data.delijn.be/stops/202582"], ["https://data.delijn.be/stops/401781", "https://data.delijn.be/stops/406125"], ["https://data.delijn.be/stops/204138", "https://data.delijn.be/stops/204147"], ["https://data.delijn.be/stops/303505", "https://data.delijn.be/stops/303510"], ["https://data.delijn.be/stops/206690", "https://data.delijn.be/stops/308565"], ["https://data.delijn.be/stops/205158", "https://data.delijn.be/stops/205582"], ["https://data.delijn.be/stops/504055", "https://data.delijn.be/stops/504056"], ["https://data.delijn.be/stops/501249", "https://data.delijn.be/stops/506767"], ["https://data.delijn.be/stops/200341", "https://data.delijn.be/stops/210335"], ["https://data.delijn.be/stops/201769", "https://data.delijn.be/stops/208272"], ["https://data.delijn.be/stops/400557", "https://data.delijn.be/stops/404278"], ["https://data.delijn.be/stops/204769", "https://data.delijn.be/stops/205416"], ["https://data.delijn.be/stops/304619", "https://data.delijn.be/stops/304661"], ["https://data.delijn.be/stops/404945", "https://data.delijn.be/stops/410051"], ["https://data.delijn.be/stops/206373", "https://data.delijn.be/stops/207221"], ["https://data.delijn.be/stops/301854", "https://data.delijn.be/stops/301855"], ["https://data.delijn.be/stops/108764", "https://data.delijn.be/stops/108766"], ["https://data.delijn.be/stops/507564", "https://data.delijn.be/stops/507565"], ["https://data.delijn.be/stops/209231", "https://data.delijn.be/stops/209795"], ["https://data.delijn.be/stops/200555", "https://data.delijn.be/stops/201554"], ["https://data.delijn.be/stops/207412", "https://data.delijn.be/stops/207684"], ["https://data.delijn.be/stops/300754", "https://data.delijn.be/stops/301958"], ["https://data.delijn.be/stops/108814", "https://data.delijn.be/stops/108850"], ["https://data.delijn.be/stops/407964", "https://data.delijn.be/stops/408000"], ["https://data.delijn.be/stops/302914", "https://data.delijn.be/stops/302930"], ["https://data.delijn.be/stops/407498", "https://data.delijn.be/stops/407499"], ["https://data.delijn.be/stops/304579", "https://data.delijn.be/stops/305577"], ["https://data.delijn.be/stops/301317", "https://data.delijn.be/stops/301768"], ["https://data.delijn.be/stops/208142", "https://data.delijn.be/stops/208194"], ["https://data.delijn.be/stops/202575", "https://data.delijn.be/stops/202607"], ["https://data.delijn.be/stops/208178", "https://data.delijn.be/stops/208785"], ["https://data.delijn.be/stops/105103", "https://data.delijn.be/stops/106971"], ["https://data.delijn.be/stops/302201", "https://data.delijn.be/stops/307109"], ["https://data.delijn.be/stops/208423", "https://data.delijn.be/stops/209423"], ["https://data.delijn.be/stops/106084", "https://data.delijn.be/stops/106087"], ["https://data.delijn.be/stops/105470", "https://data.delijn.be/stops/105670"], ["https://data.delijn.be/stops/208111", "https://data.delijn.be/stops/219007"], ["https://data.delijn.be/stops/204017", "https://data.delijn.be/stops/204314"], ["https://data.delijn.be/stops/304611", "https://data.delijn.be/stops/304628"], ["https://data.delijn.be/stops/102741", "https://data.delijn.be/stops/107286"], ["https://data.delijn.be/stops/204996", "https://data.delijn.be/stops/205996"], ["https://data.delijn.be/stops/302458", "https://data.delijn.be/stops/302497"], ["https://data.delijn.be/stops/206230", "https://data.delijn.be/stops/207230"], ["https://data.delijn.be/stops/404718", "https://data.delijn.be/stops/404786"], ["https://data.delijn.be/stops/300037", "https://data.delijn.be/stops/308541"], ["https://data.delijn.be/stops/504218", "https://data.delijn.be/stops/509215"], ["https://data.delijn.be/stops/202512", "https://data.delijn.be/stops/203512"], ["https://data.delijn.be/stops/409296", "https://data.delijn.be/stops/410115"], ["https://data.delijn.be/stops/406476", "https://data.delijn.be/stops/406477"], ["https://data.delijn.be/stops/202287", "https://data.delijn.be/stops/203287"], ["https://data.delijn.be/stops/208770", "https://data.delijn.be/stops/209313"], ["https://data.delijn.be/stops/406395", "https://data.delijn.be/stops/410151"], ["https://data.delijn.be/stops/303180", "https://data.delijn.be/stops/307608"], ["https://data.delijn.be/stops/104007", "https://data.delijn.be/stops/107290"], ["https://data.delijn.be/stops/503608", "https://data.delijn.be/stops/503790"], ["https://data.delijn.be/stops/503666", "https://data.delijn.be/stops/508660"], ["https://data.delijn.be/stops/404300", "https://data.delijn.be/stops/404328"], ["https://data.delijn.be/stops/204152", "https://data.delijn.be/stops/205152"], ["https://data.delijn.be/stops/308046", "https://data.delijn.be/stops/308447"], ["https://data.delijn.be/stops/505231", "https://data.delijn.be/stops/505775"], ["https://data.delijn.be/stops/304984", "https://data.delijn.be/stops/308027"], ["https://data.delijn.be/stops/303030", "https://data.delijn.be/stops/303031"], ["https://data.delijn.be/stops/403212", "https://data.delijn.be/stops/405359"], ["https://data.delijn.be/stops/108564", "https://data.delijn.be/stops/109101"], ["https://data.delijn.be/stops/407897", "https://data.delijn.be/stops/407936"], ["https://data.delijn.be/stops/400631", "https://data.delijn.be/stops/410009"], ["https://data.delijn.be/stops/101782", "https://data.delijn.be/stops/102659"], ["https://data.delijn.be/stops/501491", "https://data.delijn.be/stops/506035"], ["https://data.delijn.be/stops/200564", "https://data.delijn.be/stops/200667"], ["https://data.delijn.be/stops/406221", "https://data.delijn.be/stops/410189"], ["https://data.delijn.be/stops/204575", "https://data.delijn.be/stops/207638"], ["https://data.delijn.be/stops/101517", "https://data.delijn.be/stops/109023"], ["https://data.delijn.be/stops/105561", "https://data.delijn.be/stops/106291"], ["https://data.delijn.be/stops/508762", "https://data.delijn.be/stops/508765"], ["https://data.delijn.be/stops/302841", "https://data.delijn.be/stops/303314"], ["https://data.delijn.be/stops/304239", "https://data.delijn.be/stops/304805"], ["https://data.delijn.be/stops/503322", "https://data.delijn.be/stops/508322"], ["https://data.delijn.be/stops/300037", "https://data.delijn.be/stops/300046"], ["https://data.delijn.be/stops/101224", "https://data.delijn.be/stops/101798"], ["https://data.delijn.be/stops/103728", "https://data.delijn.be/stops/109445"], ["https://data.delijn.be/stops/304432", "https://data.delijn.be/stops/304437"], ["https://data.delijn.be/stops/509171", "https://data.delijn.be/stops/509350"], ["https://data.delijn.be/stops/200851", "https://data.delijn.be/stops/200873"], ["https://data.delijn.be/stops/206367", "https://data.delijn.be/stops/206955"], ["https://data.delijn.be/stops/302453", "https://data.delijn.be/stops/302466"], ["https://data.delijn.be/stops/204184", "https://data.delijn.be/stops/205183"], ["https://data.delijn.be/stops/302529", "https://data.delijn.be/stops/308887"], ["https://data.delijn.be/stops/406996", "https://data.delijn.be/stops/407141"], ["https://data.delijn.be/stops/205445", "https://data.delijn.be/stops/214002"], ["https://data.delijn.be/stops/208021", "https://data.delijn.be/stops/209029"], ["https://data.delijn.be/stops/404156", "https://data.delijn.be/stops/404282"], ["https://data.delijn.be/stops/507544", "https://data.delijn.be/stops/507638"], ["https://data.delijn.be/stops/305409", "https://data.delijn.be/stops/305417"], ["https://data.delijn.be/stops/208104", "https://data.delijn.be/stops/208136"], ["https://data.delijn.be/stops/208632", "https://data.delijn.be/stops/209632"], ["https://data.delijn.be/stops/208674", "https://data.delijn.be/stops/208675"], ["https://data.delijn.be/stops/202744", "https://data.delijn.be/stops/203744"], ["https://data.delijn.be/stops/104043", "https://data.delijn.be/stops/108403"], ["https://data.delijn.be/stops/303361", "https://data.delijn.be/stops/303774"], ["https://data.delijn.be/stops/109794", "https://data.delijn.be/stops/109858"], ["https://data.delijn.be/stops/206656", "https://data.delijn.be/stops/206666"], ["https://data.delijn.be/stops/405703", "https://data.delijn.be/stops/410355"], ["https://data.delijn.be/stops/506163", "https://data.delijn.be/stops/509838"], ["https://data.delijn.be/stops/202523", "https://data.delijn.be/stops/202524"], ["https://data.delijn.be/stops/107564", "https://data.delijn.be/stops/107567"], ["https://data.delijn.be/stops/300161", "https://data.delijn.be/stops/301225"], ["https://data.delijn.be/stops/202126", "https://data.delijn.be/stops/203126"], ["https://data.delijn.be/stops/204719", "https://data.delijn.be/stops/214013"], ["https://data.delijn.be/stops/302541", "https://data.delijn.be/stops/302544"], ["https://data.delijn.be/stops/503587", "https://data.delijn.be/stops/508587"], ["https://data.delijn.be/stops/205358", "https://data.delijn.be/stops/205923"], ["https://data.delijn.be/stops/406272", "https://data.delijn.be/stops/406276"], ["https://data.delijn.be/stops/406541", "https://data.delijn.be/stops/407406"], ["https://data.delijn.be/stops/301353", "https://data.delijn.be/stops/304527"], ["https://data.delijn.be/stops/102611", "https://data.delijn.be/stops/102669"], ["https://data.delijn.be/stops/500953", "https://data.delijn.be/stops/503633"], ["https://data.delijn.be/stops/504730", "https://data.delijn.be/stops/505342"], ["https://data.delijn.be/stops/209527", "https://data.delijn.be/stops/209533"], ["https://data.delijn.be/stops/204579", "https://data.delijn.be/stops/204590"], ["https://data.delijn.be/stops/103575", "https://data.delijn.be/stops/105325"], ["https://data.delijn.be/stops/102014", "https://data.delijn.be/stops/105983"], ["https://data.delijn.be/stops/302154", "https://data.delijn.be/stops/302183"], ["https://data.delijn.be/stops/107336", "https://data.delijn.be/stops/107337"], ["https://data.delijn.be/stops/105779", "https://data.delijn.be/stops/105784"], ["https://data.delijn.be/stops/206300", "https://data.delijn.be/stops/207471"], ["https://data.delijn.be/stops/503150", "https://data.delijn.be/stops/505369"], ["https://data.delijn.be/stops/406732", "https://data.delijn.be/stops/410125"], ["https://data.delijn.be/stops/500115", "https://data.delijn.be/stops/500120"], ["https://data.delijn.be/stops/301734", "https://data.delijn.be/stops/308420"], ["https://data.delijn.be/stops/303711", "https://data.delijn.be/stops/307258"], ["https://data.delijn.be/stops/502465", "https://data.delijn.be/stops/502466"], ["https://data.delijn.be/stops/303298", "https://data.delijn.be/stops/303301"], ["https://data.delijn.be/stops/401462", "https://data.delijn.be/stops/401495"], ["https://data.delijn.be/stops/102382", "https://data.delijn.be/stops/105606"], ["https://data.delijn.be/stops/102381", "https://data.delijn.be/stops/105607"], ["https://data.delijn.be/stops/408143", "https://data.delijn.be/stops/408245"], ["https://data.delijn.be/stops/205378", "https://data.delijn.be/stops/205418"], ["https://data.delijn.be/stops/206799", "https://data.delijn.be/stops/208532"], ["https://data.delijn.be/stops/206928", "https://data.delijn.be/stops/206948"], ["https://data.delijn.be/stops/501430", "https://data.delijn.be/stops/506430"], ["https://data.delijn.be/stops/301219", "https://data.delijn.be/stops/301222"], ["https://data.delijn.be/stops/103771", "https://data.delijn.be/stops/106437"], ["https://data.delijn.be/stops/303644", "https://data.delijn.be/stops/306561"], ["https://data.delijn.be/stops/403116", "https://data.delijn.be/stops/403234"], ["https://data.delijn.be/stops/503993", "https://data.delijn.be/stops/504277"], ["https://data.delijn.be/stops/502040", "https://data.delijn.be/stops/507616"], ["https://data.delijn.be/stops/306407", "https://data.delijn.be/stops/306408"], ["https://data.delijn.be/stops/105722", "https://data.delijn.be/stops/105723"], ["https://data.delijn.be/stops/105479", "https://data.delijn.be/stops/105481"], ["https://data.delijn.be/stops/101841", "https://data.delijn.be/stops/103227"], ["https://data.delijn.be/stops/306122", "https://data.delijn.be/stops/306145"], ["https://data.delijn.be/stops/401042", "https://data.delijn.be/stops/401043"], ["https://data.delijn.be/stops/303788", "https://data.delijn.be/stops/303789"], ["https://data.delijn.be/stops/109376", "https://data.delijn.be/stops/109381"], ["https://data.delijn.be/stops/304440", "https://data.delijn.be/stops/304453"], ["https://data.delijn.be/stops/107765", "https://data.delijn.be/stops/108060"], ["https://data.delijn.be/stops/308120", "https://data.delijn.be/stops/308121"], ["https://data.delijn.be/stops/208275", "https://data.delijn.be/stops/209333"], ["https://data.delijn.be/stops/202883", "https://data.delijn.be/stops/203815"], ["https://data.delijn.be/stops/502662", "https://data.delijn.be/stops/507447"], ["https://data.delijn.be/stops/102754", "https://data.delijn.be/stops/104636"], ["https://data.delijn.be/stops/406196", "https://data.delijn.be/stops/406197"], ["https://data.delijn.be/stops/501059", "https://data.delijn.be/stops/501084"], ["https://data.delijn.be/stops/403134", "https://data.delijn.be/stops/410289"], ["https://data.delijn.be/stops/303554", "https://data.delijn.be/stops/306283"], ["https://data.delijn.be/stops/406758", "https://data.delijn.be/stops/406763"], ["https://data.delijn.be/stops/102211", "https://data.delijn.be/stops/106123"], ["https://data.delijn.be/stops/503354", "https://data.delijn.be/stops/508354"], ["https://data.delijn.be/stops/200706", "https://data.delijn.be/stops/202573"], ["https://data.delijn.be/stops/207230", "https://data.delijn.be/stops/300161"], ["https://data.delijn.be/stops/503603", "https://data.delijn.be/stops/508864"], ["https://data.delijn.be/stops/303365", "https://data.delijn.be/stops/303390"], ["https://data.delijn.be/stops/102260", "https://data.delijn.be/stops/107465"], ["https://data.delijn.be/stops/307863", "https://data.delijn.be/stops/307865"], ["https://data.delijn.be/stops/109731", "https://data.delijn.be/stops/205635"], ["https://data.delijn.be/stops/402095", "https://data.delijn.be/stops/402335"], ["https://data.delijn.be/stops/108830", "https://data.delijn.be/stops/108835"], ["https://data.delijn.be/stops/202485", "https://data.delijn.be/stops/203750"], ["https://data.delijn.be/stops/500159", "https://data.delijn.be/stops/503557"], ["https://data.delijn.be/stops/404327", "https://data.delijn.be/stops/404386"], ["https://data.delijn.be/stops/104131", "https://data.delijn.be/stops/107968"], ["https://data.delijn.be/stops/304996", "https://data.delijn.be/stops/305004"], ["https://data.delijn.be/stops/300478", "https://data.delijn.be/stops/300484"], ["https://data.delijn.be/stops/103062", "https://data.delijn.be/stops/109459"], ["https://data.delijn.be/stops/202874", "https://data.delijn.be/stops/203874"], ["https://data.delijn.be/stops/102435", "https://data.delijn.be/stops/107670"], ["https://data.delijn.be/stops/201778", "https://data.delijn.be/stops/201779"], ["https://data.delijn.be/stops/204624", "https://data.delijn.be/stops/204625"], ["https://data.delijn.be/stops/503564", "https://data.delijn.be/stops/503569"], ["https://data.delijn.be/stops/503661", "https://data.delijn.be/stops/505127"], ["https://data.delijn.be/stops/302605", "https://data.delijn.be/stops/302606"], ["https://data.delijn.be/stops/505107", "https://data.delijn.be/stops/505572"], ["https://data.delijn.be/stops/104471", "https://data.delijn.be/stops/104547"], ["https://data.delijn.be/stops/202176", "https://data.delijn.be/stops/203176"], ["https://data.delijn.be/stops/304570", "https://data.delijn.be/stops/304660"], ["https://data.delijn.be/stops/109313", "https://data.delijn.be/stops/109356"], ["https://data.delijn.be/stops/203317", "https://data.delijn.be/stops/208887"], ["https://data.delijn.be/stops/408889", "https://data.delijn.be/stops/408892"], ["https://data.delijn.be/stops/508842", "https://data.delijn.be/stops/590007"], ["https://data.delijn.be/stops/200843", "https://data.delijn.be/stops/200844"], ["https://data.delijn.be/stops/208421", "https://data.delijn.be/stops/208422"], ["https://data.delijn.be/stops/206034", "https://data.delijn.be/stops/207034"], ["https://data.delijn.be/stops/504986", "https://data.delijn.be/stops/505429"], ["https://data.delijn.be/stops/304478", "https://data.delijn.be/stops/304490"], ["https://data.delijn.be/stops/408223", "https://data.delijn.be/stops/408403"], ["https://data.delijn.be/stops/402543", "https://data.delijn.be/stops/402558"], ["https://data.delijn.be/stops/101656", "https://data.delijn.be/stops/107852"], ["https://data.delijn.be/stops/203115", "https://data.delijn.be/stops/204596"], ["https://data.delijn.be/stops/304135", "https://data.delijn.be/stops/304158"], ["https://data.delijn.be/stops/301976", "https://data.delijn.be/stops/306199"], ["https://data.delijn.be/stops/400200", "https://data.delijn.be/stops/400228"], ["https://data.delijn.be/stops/504438", "https://data.delijn.be/stops/505998"], ["https://data.delijn.be/stops/210072", "https://data.delijn.be/stops/211072"], ["https://data.delijn.be/stops/405340", "https://data.delijn.be/stops/405348"], ["https://data.delijn.be/stops/101927", "https://data.delijn.be/stops/102958"], ["https://data.delijn.be/stops/207910", "https://data.delijn.be/stops/207911"], ["https://data.delijn.be/stops/202739", "https://data.delijn.be/stops/202740"], ["https://data.delijn.be/stops/200709", "https://data.delijn.be/stops/200713"], ["https://data.delijn.be/stops/404254", "https://data.delijn.be/stops/404308"], ["https://data.delijn.be/stops/403141", "https://data.delijn.be/stops/403146"], ["https://data.delijn.be/stops/104667", "https://data.delijn.be/stops/205612"], ["https://data.delijn.be/stops/200208", "https://data.delijn.be/stops/201208"], ["https://data.delijn.be/stops/402195", "https://data.delijn.be/stops/402363"], ["https://data.delijn.be/stops/102541", "https://data.delijn.be/stops/102544"], ["https://data.delijn.be/stops/108483", "https://data.delijn.be/stops/108484"], ["https://data.delijn.be/stops/304234", "https://data.delijn.be/stops/304235"], ["https://data.delijn.be/stops/407026", "https://data.delijn.be/stops/407038"], ["https://data.delijn.be/stops/504419", "https://data.delijn.be/stops/505211"], ["https://data.delijn.be/stops/505356", "https://data.delijn.be/stops/505357"], ["https://data.delijn.be/stops/505650", "https://data.delijn.be/stops/505651"], ["https://data.delijn.be/stops/202120", "https://data.delijn.be/stops/202638"], ["https://data.delijn.be/stops/509390", "https://data.delijn.be/stops/509392"], ["https://data.delijn.be/stops/301742", "https://data.delijn.be/stops/301797"], ["https://data.delijn.be/stops/104773", "https://data.delijn.be/stops/108153"], ["https://data.delijn.be/stops/505977", "https://data.delijn.be/stops/509388"], ["https://data.delijn.be/stops/104990", "https://data.delijn.be/stops/104995"], ["https://data.delijn.be/stops/203040", "https://data.delijn.be/stops/203041"], ["https://data.delijn.be/stops/208509", "https://data.delijn.be/stops/209508"], ["https://data.delijn.be/stops/102428", "https://data.delijn.be/stops/109128"], ["https://data.delijn.be/stops/109354", "https://data.delijn.be/stops/307437"], ["https://data.delijn.be/stops/501079", "https://data.delijn.be/stops/501376"], ["https://data.delijn.be/stops/503664", "https://data.delijn.be/stops/507274"], ["https://data.delijn.be/stops/106264", "https://data.delijn.be/stops/106265"], ["https://data.delijn.be/stops/202715", "https://data.delijn.be/stops/202716"], ["https://data.delijn.be/stops/502084", "https://data.delijn.be/stops/502580"], ["https://data.delijn.be/stops/201759", "https://data.delijn.be/stops/201760"], ["https://data.delijn.be/stops/105583", "https://data.delijn.be/stops/105584"], ["https://data.delijn.be/stops/205093", "https://data.delijn.be/stops/205796"], ["https://data.delijn.be/stops/204212", "https://data.delijn.be/stops/207395"], ["https://data.delijn.be/stops/204472", "https://data.delijn.be/stops/205094"], ["https://data.delijn.be/stops/104579", "https://data.delijn.be/stops/107538"], ["https://data.delijn.be/stops/403228", "https://data.delijn.be/stops/408959"], ["https://data.delijn.be/stops/102171", "https://data.delijn.be/stops/102444"], ["https://data.delijn.be/stops/105263", "https://data.delijn.be/stops/105264"], ["https://data.delijn.be/stops/106848", "https://data.delijn.be/stops/106850"], ["https://data.delijn.be/stops/300389", "https://data.delijn.be/stops/304614"], ["https://data.delijn.be/stops/402297", "https://data.delijn.be/stops/405608"], ["https://data.delijn.be/stops/404185", "https://data.delijn.be/stops/410185"], ["https://data.delijn.be/stops/300245", "https://data.delijn.be/stops/305404"], ["https://data.delijn.be/stops/409052", "https://data.delijn.be/stops/409066"], ["https://data.delijn.be/stops/200770", "https://data.delijn.be/stops/208309"], ["https://data.delijn.be/stops/504475", "https://data.delijn.be/stops/509167"], ["https://data.delijn.be/stops/501147", "https://data.delijn.be/stops/506690"], ["https://data.delijn.be/stops/300684", "https://data.delijn.be/stops/305068"], ["https://data.delijn.be/stops/403177", "https://data.delijn.be/stops/407650"], ["https://data.delijn.be/stops/101831", "https://data.delijn.be/stops/107007"], ["https://data.delijn.be/stops/200060", "https://data.delijn.be/stops/200479"], ["https://data.delijn.be/stops/102570", "https://data.delijn.be/stops/103127"], ["https://data.delijn.be/stops/304065", "https://data.delijn.be/stops/304088"], ["https://data.delijn.be/stops/106763", "https://data.delijn.be/stops/106864"], ["https://data.delijn.be/stops/303116", "https://data.delijn.be/stops/304220"], ["https://data.delijn.be/stops/508137", "https://data.delijn.be/stops/508311"], ["https://data.delijn.be/stops/201804", "https://data.delijn.be/stops/201815"], ["https://data.delijn.be/stops/206563", "https://data.delijn.be/stops/206576"], ["https://data.delijn.be/stops/407917", "https://data.delijn.be/stops/407972"], ["https://data.delijn.be/stops/206688", "https://data.delijn.be/stops/207717"], ["https://data.delijn.be/stops/101776", "https://data.delijn.be/stops/107697"], ["https://data.delijn.be/stops/407838", "https://data.delijn.be/stops/407907"], ["https://data.delijn.be/stops/401603", "https://data.delijn.be/stops/405852"], ["https://data.delijn.be/stops/404917", "https://data.delijn.be/stops/404922"], ["https://data.delijn.be/stops/400809", "https://data.delijn.be/stops/405217"], ["https://data.delijn.be/stops/503313", "https://data.delijn.be/stops/508794"], ["https://data.delijn.be/stops/503614", "https://data.delijn.be/stops/503615"], ["https://data.delijn.be/stops/204346", "https://data.delijn.be/stops/205102"], ["https://data.delijn.be/stops/106260", "https://data.delijn.be/stops/106276"], ["https://data.delijn.be/stops/408350", "https://data.delijn.be/stops/408351"], ["https://data.delijn.be/stops/207436", "https://data.delijn.be/stops/209691"], ["https://data.delijn.be/stops/508504", "https://data.delijn.be/stops/508616"], ["https://data.delijn.be/stops/301775", "https://data.delijn.be/stops/301782"], ["https://data.delijn.be/stops/208137", "https://data.delijn.be/stops/209137"], ["https://data.delijn.be/stops/301373", "https://data.delijn.be/stops/302412"], ["https://data.delijn.be/stops/502706", "https://data.delijn.be/stops/507708"], ["https://data.delijn.be/stops/200186", "https://data.delijn.be/stops/200198"], ["https://data.delijn.be/stops/109603", "https://data.delijn.be/stops/109613"], ["https://data.delijn.be/stops/200452", "https://data.delijn.be/stops/201766"], ["https://data.delijn.be/stops/502607", "https://data.delijn.be/stops/505705"], ["https://data.delijn.be/stops/216003", "https://data.delijn.be/stops/217003"], ["https://data.delijn.be/stops/504617", "https://data.delijn.be/stops/504620"], ["https://data.delijn.be/stops/102085", "https://data.delijn.be/stops/103985"], ["https://data.delijn.be/stops/201267", "https://data.delijn.be/stops/204810"], ["https://data.delijn.be/stops/506014", "https://data.delijn.be/stops/506598"], ["https://data.delijn.be/stops/403050", "https://data.delijn.be/stops/403292"], ["https://data.delijn.be/stops/504041", "https://data.delijn.be/stops/505798"], ["https://data.delijn.be/stops/302739", "https://data.delijn.be/stops/302744"], ["https://data.delijn.be/stops/505823", "https://data.delijn.be/stops/508133"], ["https://data.delijn.be/stops/509497", "https://data.delijn.be/stops/509505"], ["https://data.delijn.be/stops/103148", "https://data.delijn.be/stops/109992"], ["https://data.delijn.be/stops/204610", "https://data.delijn.be/stops/205611"], ["https://data.delijn.be/stops/501306", "https://data.delijn.be/stops/501315"], ["https://data.delijn.be/stops/105029", "https://data.delijn.be/stops/105031"], ["https://data.delijn.be/stops/207666", "https://data.delijn.be/stops/208506"], ["https://data.delijn.be/stops/204652", "https://data.delijn.be/stops/205830"], ["https://data.delijn.be/stops/407599", "https://data.delijn.be/stops/407634"], ["https://data.delijn.be/stops/101332", "https://data.delijn.be/stops/106676"], ["https://data.delijn.be/stops/403728", "https://data.delijn.be/stops/403729"], ["https://data.delijn.be/stops/508814", "https://data.delijn.be/stops/508815"], ["https://data.delijn.be/stops/206732", "https://data.delijn.be/stops/301663"], ["https://data.delijn.be/stops/200191", "https://data.delijn.be/stops/201689"], ["https://data.delijn.be/stops/109317", "https://data.delijn.be/stops/109319"], ["https://data.delijn.be/stops/106980", "https://data.delijn.be/stops/107266"], ["https://data.delijn.be/stops/501768", "https://data.delijn.be/stops/507692"], ["https://data.delijn.be/stops/301556", "https://data.delijn.be/stops/308089"], ["https://data.delijn.be/stops/301333", "https://data.delijn.be/stops/306120"], ["https://data.delijn.be/stops/208098", "https://data.delijn.be/stops/209098"], ["https://data.delijn.be/stops/102764", "https://data.delijn.be/stops/107405"], ["https://data.delijn.be/stops/202832", "https://data.delijn.be/stops/202833"], ["https://data.delijn.be/stops/302204", "https://data.delijn.be/stops/308102"], ["https://data.delijn.be/stops/203160", "https://data.delijn.be/stops/203500"], ["https://data.delijn.be/stops/501441", "https://data.delijn.be/stops/506136"], ["https://data.delijn.be/stops/503049", "https://data.delijn.be/stops/508048"], ["https://data.delijn.be/stops/404105", "https://data.delijn.be/stops/404117"], ["https://data.delijn.be/stops/501424", "https://data.delijn.be/stops/506424"], ["https://data.delijn.be/stops/505250", "https://data.delijn.be/stops/508917"], ["https://data.delijn.be/stops/202875", "https://data.delijn.be/stops/203876"], ["https://data.delijn.be/stops/401463", "https://data.delijn.be/stops/401474"], ["https://data.delijn.be/stops/206535", "https://data.delijn.be/stops/209688"], ["https://data.delijn.be/stops/206337", "https://data.delijn.be/stops/207746"], ["https://data.delijn.be/stops/207843", "https://data.delijn.be/stops/303240"], ["https://data.delijn.be/stops/201423", "https://data.delijn.be/stops/203826"], ["https://data.delijn.be/stops/205258", "https://data.delijn.be/stops/205269"], ["https://data.delijn.be/stops/204608", "https://data.delijn.be/stops/205608"], ["https://data.delijn.be/stops/302976", "https://data.delijn.be/stops/303000"], ["https://data.delijn.be/stops/501206", "https://data.delijn.be/stops/501636"], ["https://data.delijn.be/stops/200713", "https://data.delijn.be/stops/200739"], ["https://data.delijn.be/stops/103748", "https://data.delijn.be/stops/106742"], ["https://data.delijn.be/stops/505982", "https://data.delijn.be/stops/507198"], ["https://data.delijn.be/stops/306710", "https://data.delijn.be/stops/307984"], ["https://data.delijn.be/stops/204241", "https://data.delijn.be/stops/205241"], ["https://data.delijn.be/stops/502315", "https://data.delijn.be/stops/507315"], ["https://data.delijn.be/stops/407995", "https://data.delijn.be/stops/410161"], ["https://data.delijn.be/stops/405524", "https://data.delijn.be/stops/407310"], ["https://data.delijn.be/stops/208796", "https://data.delijn.be/stops/208797"], ["https://data.delijn.be/stops/502694", "https://data.delijn.be/stops/507694"], ["https://data.delijn.be/stops/503496", "https://data.delijn.be/stops/508495"], ["https://data.delijn.be/stops/504012", "https://data.delijn.be/stops/509012"], ["https://data.delijn.be/stops/107953", "https://data.delijn.be/stops/108967"], ["https://data.delijn.be/stops/304512", "https://data.delijn.be/stops/304513"], ["https://data.delijn.be/stops/200278", "https://data.delijn.be/stops/201349"], ["https://data.delijn.be/stops/204626", "https://data.delijn.be/stops/205336"], ["https://data.delijn.be/stops/200017", "https://data.delijn.be/stops/201017"], ["https://data.delijn.be/stops/402772", "https://data.delijn.be/stops/408405"], ["https://data.delijn.be/stops/200507", "https://data.delijn.be/stops/201552"], ["https://data.delijn.be/stops/101652", "https://data.delijn.be/stops/103292"], ["https://data.delijn.be/stops/405815", "https://data.delijn.be/stops/405872"], ["https://data.delijn.be/stops/501155", "https://data.delijn.be/stops/506147"], ["https://data.delijn.be/stops/401650", "https://data.delijn.be/stops/405364"], ["https://data.delijn.be/stops/205912", "https://data.delijn.be/stops/205922"], ["https://data.delijn.be/stops/301660", "https://data.delijn.be/stops/303142"], ["https://data.delijn.be/stops/500924", "https://data.delijn.be/stops/500925"], ["https://data.delijn.be/stops/502408", "https://data.delijn.be/stops/507408"], ["https://data.delijn.be/stops/504001", "https://data.delijn.be/stops/504778"], ["https://data.delijn.be/stops/401208", "https://data.delijn.be/stops/401275"], ["https://data.delijn.be/stops/505364", "https://data.delijn.be/stops/507916"], ["https://data.delijn.be/stops/402284", "https://data.delijn.be/stops/402330"], ["https://data.delijn.be/stops/405732", "https://data.delijn.be/stops/405734"], ["https://data.delijn.be/stops/502342", "https://data.delijn.be/stops/507340"], ["https://data.delijn.be/stops/303011", "https://data.delijn.be/stops/303096"], ["https://data.delijn.be/stops/404421", "https://data.delijn.be/stops/404537"], ["https://data.delijn.be/stops/303450", "https://data.delijn.be/stops/307067"], ["https://data.delijn.be/stops/401285", "https://data.delijn.be/stops/401557"], ["https://data.delijn.be/stops/300781", "https://data.delijn.be/stops/300782"], ["https://data.delijn.be/stops/208145", "https://data.delijn.be/stops/209146"], ["https://data.delijn.be/stops/308128", "https://data.delijn.be/stops/308875"], ["https://data.delijn.be/stops/404708", "https://data.delijn.be/stops/404743"], ["https://data.delijn.be/stops/304541", "https://data.delijn.be/stops/307765"], ["https://data.delijn.be/stops/107624", "https://data.delijn.be/stops/109761"], ["https://data.delijn.be/stops/202140", "https://data.delijn.be/stops/202155"], ["https://data.delijn.be/stops/208158", "https://data.delijn.be/stops/209509"], ["https://data.delijn.be/stops/501490", "https://data.delijn.be/stops/506035"], ["https://data.delijn.be/stops/204257", "https://data.delijn.be/stops/205485"], ["https://data.delijn.be/stops/207228", "https://data.delijn.be/stops/302114"], ["https://data.delijn.be/stops/206684", "https://data.delijn.be/stops/207416"], ["https://data.delijn.be/stops/303306", "https://data.delijn.be/stops/303328"], ["https://data.delijn.be/stops/503901", "https://data.delijn.be/stops/504980"], ["https://data.delijn.be/stops/508743", "https://data.delijn.be/stops/508747"], ["https://data.delijn.be/stops/200109", "https://data.delijn.be/stops/203646"], ["https://data.delijn.be/stops/406312", "https://data.delijn.be/stops/406350"], ["https://data.delijn.be/stops/509780", "https://data.delijn.be/stops/509894"], ["https://data.delijn.be/stops/503651", "https://data.delijn.be/stops/508652"], ["https://data.delijn.be/stops/107088", "https://data.delijn.be/stops/107091"], ["https://data.delijn.be/stops/101974", "https://data.delijn.be/stops/307370"], ["https://data.delijn.be/stops/403426", "https://data.delijn.be/stops/403427"], ["https://data.delijn.be/stops/206170", "https://data.delijn.be/stops/207170"], ["https://data.delijn.be/stops/200770", "https://data.delijn.be/stops/507693"], ["https://data.delijn.be/stops/401651", "https://data.delijn.be/stops/401653"], ["https://data.delijn.be/stops/408255", "https://data.delijn.be/stops/408313"], ["https://data.delijn.be/stops/202515", "https://data.delijn.be/stops/203515"], ["https://data.delijn.be/stops/102456", "https://data.delijn.be/stops/102459"], ["https://data.delijn.be/stops/103206", "https://data.delijn.be/stops/106441"], ["https://data.delijn.be/stops/105832", "https://data.delijn.be/stops/108890"], ["https://data.delijn.be/stops/102826", "https://data.delijn.be/stops/102827"], ["https://data.delijn.be/stops/106923", "https://data.delijn.be/stops/106943"], ["https://data.delijn.be/stops/301237", "https://data.delijn.be/stops/307612"], ["https://data.delijn.be/stops/304427", "https://data.delijn.be/stops/307387"], ["https://data.delijn.be/stops/109377", "https://data.delijn.be/stops/109381"], ["https://data.delijn.be/stops/407968", "https://data.delijn.be/stops/408000"], ["https://data.delijn.be/stops/401401", "https://data.delijn.be/stops/301076"], ["https://data.delijn.be/stops/105076", "https://data.delijn.be/stops/105192"], ["https://data.delijn.be/stops/107075", "https://data.delijn.be/stops/107078"], ["https://data.delijn.be/stops/403052", "https://data.delijn.be/stops/409574"], ["https://data.delijn.be/stops/406201", "https://data.delijn.be/stops/406431"], ["https://data.delijn.be/stops/301017", "https://data.delijn.be/stops/301021"], ["https://data.delijn.be/stops/402100", "https://data.delijn.be/stops/402499"], ["https://data.delijn.be/stops/300077", "https://data.delijn.be/stops/300080"], ["https://data.delijn.be/stops/503384", "https://data.delijn.be/stops/508360"], ["https://data.delijn.be/stops/204196", "https://data.delijn.be/stops/205197"], ["https://data.delijn.be/stops/200811", "https://data.delijn.be/stops/202052"], ["https://data.delijn.be/stops/307024", "https://data.delijn.be/stops/307025"], ["https://data.delijn.be/stops/502402", "https://data.delijn.be/stops/507398"], ["https://data.delijn.be/stops/505440", "https://data.delijn.be/stops/508337"], ["https://data.delijn.be/stops/400826", "https://data.delijn.be/stops/400827"], ["https://data.delijn.be/stops/504143", "https://data.delijn.be/stops/504144"], ["https://data.delijn.be/stops/407682", "https://data.delijn.be/stops/407685"], ["https://data.delijn.be/stops/105616", "https://data.delijn.be/stops/105617"], ["https://data.delijn.be/stops/404498", "https://data.delijn.be/stops/404499"], ["https://data.delijn.be/stops/306283", "https://data.delijn.be/stops/306284"], ["https://data.delijn.be/stops/501609", "https://data.delijn.be/stops/506609"], ["https://data.delijn.be/stops/401524", "https://data.delijn.be/stops/402630"], ["https://data.delijn.be/stops/307621", "https://data.delijn.be/stops/308559"], ["https://data.delijn.be/stops/101660", "https://data.delijn.be/stops/107810"], ["https://data.delijn.be/stops/203859", "https://data.delijn.be/stops/203860"], ["https://data.delijn.be/stops/501549", "https://data.delijn.be/stops/506247"], ["https://data.delijn.be/stops/305200", "https://data.delijn.be/stops/305202"], ["https://data.delijn.be/stops/108286", "https://data.delijn.be/stops/109308"], ["https://data.delijn.be/stops/106218", "https://data.delijn.be/stops/106219"], ["https://data.delijn.be/stops/402096", "https://data.delijn.be/stops/402294"], ["https://data.delijn.be/stops/502042", "https://data.delijn.be/stops/507042"], ["https://data.delijn.be/stops/404469", "https://data.delijn.be/stops/406678"], ["https://data.delijn.be/stops/206480", "https://data.delijn.be/stops/207499"], ["https://data.delijn.be/stops/300462", "https://data.delijn.be/stops/300472"], ["https://data.delijn.be/stops/206813", "https://data.delijn.be/stops/207935"], ["https://data.delijn.be/stops/502400", "https://data.delijn.be/stops/507401"], ["https://data.delijn.be/stops/307429", "https://data.delijn.be/stops/307430"], ["https://data.delijn.be/stops/107498", "https://data.delijn.be/stops/107499"], ["https://data.delijn.be/stops/203154", "https://data.delijn.be/stops/203627"], ["https://data.delijn.be/stops/504793", "https://data.delijn.be/stops/508562"], ["https://data.delijn.be/stops/208006", "https://data.delijn.be/stops/209006"], ["https://data.delijn.be/stops/408498", "https://data.delijn.be/stops/408511"], ["https://data.delijn.be/stops/501501", "https://data.delijn.be/stops/506500"], ["https://data.delijn.be/stops/303980", "https://data.delijn.be/stops/306633"], ["https://data.delijn.be/stops/503079", "https://data.delijn.be/stops/508611"], ["https://data.delijn.be/stops/204639", "https://data.delijn.be/stops/204731"], ["https://data.delijn.be/stops/200264", "https://data.delijn.be/stops/201263"], ["https://data.delijn.be/stops/202229", "https://data.delijn.be/stops/203228"], ["https://data.delijn.be/stops/304802", "https://data.delijn.be/stops/304803"], ["https://data.delijn.be/stops/405889", "https://data.delijn.be/stops/405897"], ["https://data.delijn.be/stops/408280", "https://data.delijn.be/stops/408402"], ["https://data.delijn.be/stops/502668", "https://data.delijn.be/stops/507669"], ["https://data.delijn.be/stops/201905", "https://data.delijn.be/stops/203516"], ["https://data.delijn.be/stops/101658", "https://data.delijn.be/stops/102441"], ["https://data.delijn.be/stops/402986", "https://data.delijn.be/stops/405602"], ["https://data.delijn.be/stops/502415", "https://data.delijn.be/stops/507613"], ["https://data.delijn.be/stops/300169", "https://data.delijn.be/stops/301226"], ["https://data.delijn.be/stops/502286", "https://data.delijn.be/stops/505352"], ["https://data.delijn.be/stops/201901", "https://data.delijn.be/stops/202516"], ["https://data.delijn.be/stops/102208", "https://data.delijn.be/stops/102929"], ["https://data.delijn.be/stops/408232", "https://data.delijn.be/stops/408308"], ["https://data.delijn.be/stops/500024", "https://data.delijn.be/stops/508895"], ["https://data.delijn.be/stops/503831", "https://data.delijn.be/stops/505408"], ["https://data.delijn.be/stops/206890", "https://data.delijn.be/stops/207890"], ["https://data.delijn.be/stops/503573", "https://data.delijn.be/stops/504540"], ["https://data.delijn.be/stops/400295", "https://data.delijn.be/stops/400416"], ["https://data.delijn.be/stops/406977", "https://data.delijn.be/stops/407423"], ["https://data.delijn.be/stops/407370", "https://data.delijn.be/stops/407392"], ["https://data.delijn.be/stops/407004", "https://data.delijn.be/stops/308079"], ["https://data.delijn.be/stops/302217", "https://data.delijn.be/stops/302233"], ["https://data.delijn.be/stops/301836", "https://data.delijn.be/stops/301840"], ["https://data.delijn.be/stops/302270", "https://data.delijn.be/stops/306370"], ["https://data.delijn.be/stops/203786", "https://data.delijn.be/stops/208643"], ["https://data.delijn.be/stops/103773", "https://data.delijn.be/stops/107117"], ["https://data.delijn.be/stops/505355", "https://data.delijn.be/stops/506219"], ["https://data.delijn.be/stops/208571", "https://data.delijn.be/stops/209570"], ["https://data.delijn.be/stops/503409", "https://data.delijn.be/stops/508108"], ["https://data.delijn.be/stops/305841", "https://data.delijn.be/stops/305842"], ["https://data.delijn.be/stops/307538", "https://data.delijn.be/stops/307552"], ["https://data.delijn.be/stops/200917", "https://data.delijn.be/stops/202248"], ["https://data.delijn.be/stops/400405", "https://data.delijn.be/stops/400412"], ["https://data.delijn.be/stops/400053", "https://data.delijn.be/stops/400097"], ["https://data.delijn.be/stops/401806", "https://data.delijn.be/stops/401871"], ["https://data.delijn.be/stops/408116", "https://data.delijn.be/stops/408454"], ["https://data.delijn.be/stops/202556", "https://data.delijn.be/stops/203559"], ["https://data.delijn.be/stops/102538", "https://data.delijn.be/stops/408342"], ["https://data.delijn.be/stops/400983", "https://data.delijn.be/stops/406578"], ["https://data.delijn.be/stops/304820", "https://data.delijn.be/stops/306406"], ["https://data.delijn.be/stops/502541", "https://data.delijn.be/stops/507537"], ["https://data.delijn.be/stops/503598", "https://data.delijn.be/stops/508598"], ["https://data.delijn.be/stops/502384", "https://data.delijn.be/stops/502387"], ["https://data.delijn.be/stops/201234", "https://data.delijn.be/stops/202353"], ["https://data.delijn.be/stops/108226", "https://data.delijn.be/stops/108227"], ["https://data.delijn.be/stops/504862", "https://data.delijn.be/stops/508268"], ["https://data.delijn.be/stops/302727", "https://data.delijn.be/stops/308835"], ["https://data.delijn.be/stops/307404", "https://data.delijn.be/stops/307412"], ["https://data.delijn.be/stops/500603", "https://data.delijn.be/stops/501541"], ["https://data.delijn.be/stops/200457", "https://data.delijn.be/stops/201662"], ["https://data.delijn.be/stops/300662", "https://data.delijn.be/stops/306746"], ["https://data.delijn.be/stops/406541", "https://data.delijn.be/stops/407479"], ["https://data.delijn.be/stops/107984", "https://data.delijn.be/stops/308485"], ["https://data.delijn.be/stops/104135", "https://data.delijn.be/stops/104140"], ["https://data.delijn.be/stops/403320", "https://data.delijn.be/stops/403327"], ["https://data.delijn.be/stops/307910", "https://data.delijn.be/stops/308144"], ["https://data.delijn.be/stops/200315", "https://data.delijn.be/stops/205920"], ["https://data.delijn.be/stops/502016", "https://data.delijn.be/stops/504303"], ["https://data.delijn.be/stops/509162", "https://data.delijn.be/stops/509529"], ["https://data.delijn.be/stops/502364", "https://data.delijn.be/stops/507364"], ["https://data.delijn.be/stops/208339", "https://data.delijn.be/stops/208387"], ["https://data.delijn.be/stops/201618", "https://data.delijn.be/stops/209738"], ["https://data.delijn.be/stops/202763", "https://data.delijn.be/stops/203763"], ["https://data.delijn.be/stops/500556", "https://data.delijn.be/stops/507955"], ["https://data.delijn.be/stops/505244", "https://data.delijn.be/stops/507212"], ["https://data.delijn.be/stops/200064", "https://data.delijn.be/stops/203928"], ["https://data.delijn.be/stops/505536", "https://data.delijn.be/stops/509589"], ["https://data.delijn.be/stops/200577", "https://data.delijn.be/stops/201577"], ["https://data.delijn.be/stops/102880", "https://data.delijn.be/stops/108025"], ["https://data.delijn.be/stops/302466", "https://data.delijn.be/stops/302469"], ["https://data.delijn.be/stops/208237", "https://data.delijn.be/stops/209120"], ["https://data.delijn.be/stops/200301", "https://data.delijn.be/stops/201128"], ["https://data.delijn.be/stops/301430", "https://data.delijn.be/stops/303181"], ["https://data.delijn.be/stops/505710", "https://data.delijn.be/stops/509148"], ["https://data.delijn.be/stops/504816", "https://data.delijn.be/stops/509816"], ["https://data.delijn.be/stops/201904", "https://data.delijn.be/stops/209867"], ["https://data.delijn.be/stops/206878", "https://data.delijn.be/stops/207878"], ["https://data.delijn.be/stops/101370", "https://data.delijn.be/stops/101955"], ["https://data.delijn.be/stops/208406", "https://data.delijn.be/stops/208739"], ["https://data.delijn.be/stops/101724", "https://data.delijn.be/stops/106801"], ["https://data.delijn.be/stops/410174", "https://data.delijn.be/stops/410175"], ["https://data.delijn.be/stops/401503", "https://data.delijn.be/stops/401723"], ["https://data.delijn.be/stops/408517", "https://data.delijn.be/stops/408678"], ["https://data.delijn.be/stops/504242", "https://data.delijn.be/stops/509242"], ["https://data.delijn.be/stops/206221", "https://data.delijn.be/stops/206373"], ["https://data.delijn.be/stops/404896", "https://data.delijn.be/stops/404906"], ["https://data.delijn.be/stops/206982", "https://data.delijn.be/stops/207982"], ["https://data.delijn.be/stops/303304", "https://data.delijn.be/stops/303321"], ["https://data.delijn.be/stops/304902", "https://data.delijn.be/stops/304903"], ["https://data.delijn.be/stops/401350", "https://data.delijn.be/stops/401360"], ["https://data.delijn.be/stops/400557", "https://data.delijn.be/stops/403226"], ["https://data.delijn.be/stops/202118", "https://data.delijn.be/stops/202218"], ["https://data.delijn.be/stops/305172", "https://data.delijn.be/stops/307101"], ["https://data.delijn.be/stops/504756", "https://data.delijn.be/stops/508871"], ["https://data.delijn.be/stops/206148", "https://data.delijn.be/stops/207094"], ["https://data.delijn.be/stops/202634", "https://data.delijn.be/stops/203162"], ["https://data.delijn.be/stops/505408", "https://data.delijn.be/stops/508143"], ["https://data.delijn.be/stops/201933", "https://data.delijn.be/stops/203950"], ["https://data.delijn.be/stops/403169", "https://data.delijn.be/stops/403187"], ["https://data.delijn.be/stops/303382", "https://data.delijn.be/stops/303672"], ["https://data.delijn.be/stops/301591", "https://data.delijn.be/stops/308089"], ["https://data.delijn.be/stops/202065", "https://data.delijn.be/stops/202712"], ["https://data.delijn.be/stops/407020", "https://data.delijn.be/stops/407077"], ["https://data.delijn.be/stops/403027", "https://data.delijn.be/stops/403036"], ["https://data.delijn.be/stops/300141", "https://data.delijn.be/stops/306811"], ["https://data.delijn.be/stops/501092", "https://data.delijn.be/stops/506092"], ["https://data.delijn.be/stops/502165", "https://data.delijn.be/stops/507138"], ["https://data.delijn.be/stops/504343", "https://data.delijn.be/stops/509343"], ["https://data.delijn.be/stops/407739", "https://data.delijn.be/stops/409628"], ["https://data.delijn.be/stops/206219", "https://data.delijn.be/stops/308565"], ["https://data.delijn.be/stops/204515", "https://data.delijn.be/stops/205334"], ["https://data.delijn.be/stops/109893", "https://data.delijn.be/stops/109946"], ["https://data.delijn.be/stops/307930", "https://data.delijn.be/stops/307931"], ["https://data.delijn.be/stops/503357", "https://data.delijn.be/stops/503422"], ["https://data.delijn.be/stops/300715", "https://data.delijn.be/stops/307058"], ["https://data.delijn.be/stops/107837", "https://data.delijn.be/stops/107839"], ["https://data.delijn.be/stops/302790", "https://data.delijn.be/stops/307705"], ["https://data.delijn.be/stops/101606", "https://data.delijn.be/stops/109808"], ["https://data.delijn.be/stops/108237", "https://data.delijn.be/stops/108238"], ["https://data.delijn.be/stops/302705", "https://data.delijn.be/stops/302706"], ["https://data.delijn.be/stops/106029", "https://data.delijn.be/stops/106033"], ["https://data.delijn.be/stops/102819", "https://data.delijn.be/stops/102821"], ["https://data.delijn.be/stops/304161", "https://data.delijn.be/stops/304166"], ["https://data.delijn.be/stops/400490", "https://data.delijn.be/stops/400492"], ["https://data.delijn.be/stops/504617", "https://data.delijn.be/stops/509629"], ["https://data.delijn.be/stops/403207", "https://data.delijn.be/stops/403218"], ["https://data.delijn.be/stops/204069", "https://data.delijn.be/stops/204384"], ["https://data.delijn.be/stops/304467", "https://data.delijn.be/stops/304470"], ["https://data.delijn.be/stops/303313", "https://data.delijn.be/stops/303319"], ["https://data.delijn.be/stops/101002", "https://data.delijn.be/stops/102430"], ["https://data.delijn.be/stops/103531", "https://data.delijn.be/stops/103532"], ["https://data.delijn.be/stops/406363", "https://data.delijn.be/stops/407098"], ["https://data.delijn.be/stops/208171", "https://data.delijn.be/stops/208172"], ["https://data.delijn.be/stops/204317", "https://data.delijn.be/stops/205317"], ["https://data.delijn.be/stops/103740", "https://data.delijn.be/stops/105590"], ["https://data.delijn.be/stops/200232", "https://data.delijn.be/stops/200233"], ["https://data.delijn.be/stops/302935", "https://data.delijn.be/stops/306373"], ["https://data.delijn.be/stops/504468", "https://data.delijn.be/stops/505304"], ["https://data.delijn.be/stops/306765", "https://data.delijn.be/stops/306809"], ["https://data.delijn.be/stops/506306", "https://data.delijn.be/stops/506348"], ["https://data.delijn.be/stops/400850", "https://data.delijn.be/stops/407705"], ["https://data.delijn.be/stops/408606", "https://data.delijn.be/stops/302834"], ["https://data.delijn.be/stops/405515", "https://data.delijn.be/stops/407280"], ["https://data.delijn.be/stops/106245", "https://data.delijn.be/stops/106248"], ["https://data.delijn.be/stops/204468", "https://data.delijn.be/stops/204779"], ["https://data.delijn.be/stops/501161", "https://data.delijn.be/stops/501776"], ["https://data.delijn.be/stops/202968", "https://data.delijn.be/stops/203967"], ["https://data.delijn.be/stops/208553", "https://data.delijn.be/stops/209553"], ["https://data.delijn.be/stops/204249", "https://data.delijn.be/stops/205476"], ["https://data.delijn.be/stops/101250", "https://data.delijn.be/stops/102745"], ["https://data.delijn.be/stops/101895", "https://data.delijn.be/stops/103397"], ["https://data.delijn.be/stops/200018", "https://data.delijn.be/stops/200148"], ["https://data.delijn.be/stops/203968", "https://data.delijn.be/stops/205092"], ["https://data.delijn.be/stops/305261", "https://data.delijn.be/stops/305333"], ["https://data.delijn.be/stops/101175", "https://data.delijn.be/stops/102415"], ["https://data.delijn.be/stops/105139", "https://data.delijn.be/stops/108501"], ["https://data.delijn.be/stops/108307", "https://data.delijn.be/stops/108311"], ["https://data.delijn.be/stops/503650", "https://data.delijn.be/stops/508650"], ["https://data.delijn.be/stops/503452", "https://data.delijn.be/stops/508305"], ["https://data.delijn.be/stops/109159", "https://data.delijn.be/stops/109233"], ["https://data.delijn.be/stops/101060", "https://data.delijn.be/stops/107463"], ["https://data.delijn.be/stops/200039", "https://data.delijn.be/stops/204063"], ["https://data.delijn.be/stops/108205", "https://data.delijn.be/stops/108210"], ["https://data.delijn.be/stops/304410", "https://data.delijn.be/stops/304413"], ["https://data.delijn.be/stops/208557", "https://data.delijn.be/stops/208558"], ["https://data.delijn.be/stops/503205", "https://data.delijn.be/stops/503408"], ["https://data.delijn.be/stops/204070", "https://data.delijn.be/stops/204183"], ["https://data.delijn.be/stops/202744", "https://data.delijn.be/stops/203856"], ["https://data.delijn.be/stops/206703", "https://data.delijn.be/stops/207604"], ["https://data.delijn.be/stops/304188", "https://data.delijn.be/stops/308878"], ["https://data.delijn.be/stops/304761", "https://data.delijn.be/stops/304769"], ["https://data.delijn.be/stops/502212", "https://data.delijn.be/stops/507212"], ["https://data.delijn.be/stops/200630", "https://data.delijn.be/stops/201629"], ["https://data.delijn.be/stops/201751", "https://data.delijn.be/stops/208495"], ["https://data.delijn.be/stops/501003", "https://data.delijn.be/stops/501004"], ["https://data.delijn.be/stops/200629", "https://data.delijn.be/stops/201628"], ["https://data.delijn.be/stops/202237", "https://data.delijn.be/stops/202238"], ["https://data.delijn.be/stops/107699", "https://data.delijn.be/stops/107702"], ["https://data.delijn.be/stops/402822", "https://data.delijn.be/stops/409232"], ["https://data.delijn.be/stops/300761", "https://data.delijn.be/stops/300762"], ["https://data.delijn.be/stops/301554", "https://data.delijn.be/stops/301577"], ["https://data.delijn.be/stops/301727", "https://data.delijn.be/stops/301756"], ["https://data.delijn.be/stops/201768", "https://data.delijn.be/stops/208269"], ["https://data.delijn.be/stops/204154", "https://data.delijn.be/stops/205581"], ["https://data.delijn.be/stops/203455", "https://data.delijn.be/stops/203460"], ["https://data.delijn.be/stops/408640", "https://data.delijn.be/stops/408681"], ["https://data.delijn.be/stops/504199", "https://data.delijn.be/stops/509199"], ["https://data.delijn.be/stops/401152", "https://data.delijn.be/stops/409822"], ["https://data.delijn.be/stops/408249", "https://data.delijn.be/stops/308289"], ["https://data.delijn.be/stops/208318", "https://data.delijn.be/stops/209317"], ["https://data.delijn.be/stops/107982", "https://data.delijn.be/stops/308483"], ["https://data.delijn.be/stops/200401", "https://data.delijn.be/stops/201402"], ["https://data.delijn.be/stops/404943", "https://data.delijn.be/stops/404946"], ["https://data.delijn.be/stops/409255", "https://data.delijn.be/stops/409262"], ["https://data.delijn.be/stops/501153", "https://data.delijn.be/stops/501669"], ["https://data.delijn.be/stops/404706", "https://data.delijn.be/stops/404816"], ["https://data.delijn.be/stops/505108", "https://data.delijn.be/stops/509156"], ["https://data.delijn.be/stops/105468", "https://data.delijn.be/stops/109934"], ["https://data.delijn.be/stops/400514", "https://data.delijn.be/stops/400518"], ["https://data.delijn.be/stops/302553", "https://data.delijn.be/stops/302558"], ["https://data.delijn.be/stops/400684", "https://data.delijn.be/stops/407234"], ["https://data.delijn.be/stops/505937", "https://data.delijn.be/stops/508433"], ["https://data.delijn.be/stops/108065", "https://data.delijn.be/stops/108070"], ["https://data.delijn.be/stops/405818", "https://data.delijn.be/stops/405819"], ["https://data.delijn.be/stops/504685", "https://data.delijn.be/stops/509139"], ["https://data.delijn.be/stops/200108", "https://data.delijn.be/stops/201108"], ["https://data.delijn.be/stops/101132", "https://data.delijn.be/stops/102014"], ["https://data.delijn.be/stops/300459", "https://data.delijn.be/stops/300477"], ["https://data.delijn.be/stops/300761", "https://data.delijn.be/stops/304653"], ["https://data.delijn.be/stops/303341", "https://data.delijn.be/stops/304713"], ["https://data.delijn.be/stops/501429", "https://data.delijn.be/stops/501671"], ["https://data.delijn.be/stops/407161", "https://data.delijn.be/stops/407186"], ["https://data.delijn.be/stops/333453", "https://data.delijn.be/stops/333454"], ["https://data.delijn.be/stops/109112", "https://data.delijn.be/stops/109113"], ["https://data.delijn.be/stops/300947", "https://data.delijn.be/stops/303664"], ["https://data.delijn.be/stops/208777", "https://data.delijn.be/stops/208798"], ["https://data.delijn.be/stops/404694", "https://data.delijn.be/stops/404696"], ["https://data.delijn.be/stops/202490", "https://data.delijn.be/stops/202491"], ["https://data.delijn.be/stops/205014", "https://data.delijn.be/stops/205103"], ["https://data.delijn.be/stops/211082", "https://data.delijn.be/stops/211107"], ["https://data.delijn.be/stops/306597", "https://data.delijn.be/stops/306611"], ["https://data.delijn.be/stops/501180", "https://data.delijn.be/stops/509509"], ["https://data.delijn.be/stops/303839", "https://data.delijn.be/stops/303847"], ["https://data.delijn.be/stops/301902", "https://data.delijn.be/stops/304693"], ["https://data.delijn.be/stops/102068", "https://data.delijn.be/stops/106933"], ["https://data.delijn.be/stops/206100", "https://data.delijn.be/stops/206931"], ["https://data.delijn.be/stops/301529", "https://data.delijn.be/stops/308084"], ["https://data.delijn.be/stops/502558", "https://data.delijn.be/stops/507558"], ["https://data.delijn.be/stops/208362", "https://data.delijn.be/stops/209361"], ["https://data.delijn.be/stops/206242", "https://data.delijn.be/stops/206404"], ["https://data.delijn.be/stops/502797", "https://data.delijn.be/stops/507356"], ["https://data.delijn.be/stops/105294", "https://data.delijn.be/stops/105298"], ["https://data.delijn.be/stops/402344", "https://data.delijn.be/stops/402415"], ["https://data.delijn.be/stops/102123", "https://data.delijn.be/stops/103959"], ["https://data.delijn.be/stops/307350", "https://data.delijn.be/stops/307433"], ["https://data.delijn.be/stops/102961", "https://data.delijn.be/stops/106589"], ["https://data.delijn.be/stops/202146", "https://data.delijn.be/stops/203187"], ["https://data.delijn.be/stops/505364", "https://data.delijn.be/stops/505931"], ["https://data.delijn.be/stops/106237", "https://data.delijn.be/stops/106238"], ["https://data.delijn.be/stops/102529", "https://data.delijn.be/stops/405713"], ["https://data.delijn.be/stops/208706", "https://data.delijn.be/stops/208955"], ["https://data.delijn.be/stops/501071", "https://data.delijn.be/stops/506075"], ["https://data.delijn.be/stops/303779", "https://data.delijn.be/stops/303783"], ["https://data.delijn.be/stops/300493", "https://data.delijn.be/stops/300498"], ["https://data.delijn.be/stops/301660", "https://data.delijn.be/stops/302325"], ["https://data.delijn.be/stops/400279", "https://data.delijn.be/stops/405357"], ["https://data.delijn.be/stops/106018", "https://data.delijn.be/stops/107436"], ["https://data.delijn.be/stops/205384", "https://data.delijn.be/stops/205762"], ["https://data.delijn.be/stops/104804", "https://data.delijn.be/stops/109110"], ["https://data.delijn.be/stops/503289", "https://data.delijn.be/stops/505952"], ["https://data.delijn.be/stops/400874", "https://data.delijn.be/stops/410393"], ["https://data.delijn.be/stops/204177", "https://data.delijn.be/stops/204242"], ["https://data.delijn.be/stops/505323", "https://data.delijn.be/stops/505598"], ["https://data.delijn.be/stops/504445", "https://data.delijn.be/stops/509439"], ["https://data.delijn.be/stops/406542", "https://data.delijn.be/stops/407434"], ["https://data.delijn.be/stops/103532", "https://data.delijn.be/stops/109628"], ["https://data.delijn.be/stops/300981", "https://data.delijn.be/stops/301002"], ["https://data.delijn.be/stops/202505", "https://data.delijn.be/stops/202765"], ["https://data.delijn.be/stops/205465", "https://data.delijn.be/stops/215017"], ["https://data.delijn.be/stops/102640", "https://data.delijn.be/stops/104127"], ["https://data.delijn.be/stops/107687", "https://data.delijn.be/stops/107722"], ["https://data.delijn.be/stops/508068", "https://data.delijn.be/stops/508244"], ["https://data.delijn.be/stops/403491", "https://data.delijn.be/stops/405632"], ["https://data.delijn.be/stops/107252", "https://data.delijn.be/stops/107254"], ["https://data.delijn.be/stops/402415", "https://data.delijn.be/stops/402416"], ["https://data.delijn.be/stops/101023", "https://data.delijn.be/stops/101024"], ["https://data.delijn.be/stops/402815", "https://data.delijn.be/stops/409038"], ["https://data.delijn.be/stops/502316", "https://data.delijn.be/stops/502680"], ["https://data.delijn.be/stops/102436", "https://data.delijn.be/stops/107888"], ["https://data.delijn.be/stops/108473", "https://data.delijn.be/stops/109085"], ["https://data.delijn.be/stops/304173", "https://data.delijn.be/stops/304527"], ["https://data.delijn.be/stops/105327", "https://data.delijn.be/stops/204021"], ["https://data.delijn.be/stops/503142", "https://data.delijn.be/stops/503144"], ["https://data.delijn.be/stops/206791", "https://data.delijn.be/stops/209611"], ["https://data.delijn.be/stops/108070", "https://data.delijn.be/stops/108205"], ["https://data.delijn.be/stops/501022", "https://data.delijn.be/stops/501467"], ["https://data.delijn.be/stops/401511", "https://data.delijn.be/stops/409015"], ["https://data.delijn.be/stops/102386", "https://data.delijn.be/stops/106316"], ["https://data.delijn.be/stops/206898", "https://data.delijn.be/stops/207898"], ["https://data.delijn.be/stops/102214", "https://data.delijn.be/stops/102285"], ["https://data.delijn.be/stops/202163", "https://data.delijn.be/stops/203635"], ["https://data.delijn.be/stops/300949", "https://data.delijn.be/stops/308903"], ["https://data.delijn.be/stops/101723", "https://data.delijn.be/stops/105259"], ["https://data.delijn.be/stops/400274", "https://data.delijn.be/stops/400385"], ["https://data.delijn.be/stops/201645", "https://data.delijn.be/stops/202742"], ["https://data.delijn.be/stops/202486", "https://data.delijn.be/stops/203750"], ["https://data.delijn.be/stops/102018", "https://data.delijn.be/stops/109817"], ["https://data.delijn.be/stops/304746", "https://data.delijn.be/stops/304778"], ["https://data.delijn.be/stops/204068", "https://data.delijn.be/stops/205191"], ["https://data.delijn.be/stops/108452", "https://data.delijn.be/stops/108508"], ["https://data.delijn.be/stops/303694", "https://data.delijn.be/stops/305390"], ["https://data.delijn.be/stops/202021", "https://data.delijn.be/stops/203020"], ["https://data.delijn.be/stops/201966", "https://data.delijn.be/stops/208047"], ["https://data.delijn.be/stops/501482", "https://data.delijn.be/stops/506441"], ["https://data.delijn.be/stops/503288", "https://data.delijn.be/stops/508279"], ["https://data.delijn.be/stops/202298", "https://data.delijn.be/stops/203892"], ["https://data.delijn.be/stops/210038", "https://data.delijn.be/stops/211038"], ["https://data.delijn.be/stops/401397", "https://data.delijn.be/stops/304600"], ["https://data.delijn.be/stops/500017", "https://data.delijn.be/stops/502241"], ["https://data.delijn.be/stops/302861", "https://data.delijn.be/stops/302916"], ["https://data.delijn.be/stops/301636", "https://data.delijn.be/stops/303935"], ["https://data.delijn.be/stops/208565", "https://data.delijn.be/stops/209565"], ["https://data.delijn.be/stops/503654", "https://data.delijn.be/stops/508654"], ["https://data.delijn.be/stops/504319", "https://data.delijn.be/stops/509455"], ["https://data.delijn.be/stops/503917", "https://data.delijn.be/stops/508917"], ["https://data.delijn.be/stops/400794", "https://data.delijn.be/stops/406688"], ["https://data.delijn.be/stops/203975", "https://data.delijn.be/stops/207399"], ["https://data.delijn.be/stops/105273", "https://data.delijn.be/stops/105291"], ["https://data.delijn.be/stops/302493", "https://data.delijn.be/stops/302499"], ["https://data.delijn.be/stops/302633", "https://data.delijn.be/stops/302643"], ["https://data.delijn.be/stops/102440", "https://data.delijn.be/stops/107620"], ["https://data.delijn.be/stops/406707", "https://data.delijn.be/stops/408199"], ["https://data.delijn.be/stops/504686", "https://data.delijn.be/stops/504687"], ["https://data.delijn.be/stops/503141", "https://data.delijn.be/stops/503831"], ["https://data.delijn.be/stops/101421", "https://data.delijn.be/stops/105926"], ["https://data.delijn.be/stops/200023", "https://data.delijn.be/stops/200552"], ["https://data.delijn.be/stops/107065", "https://data.delijn.be/stops/107185"], ["https://data.delijn.be/stops/107230", "https://data.delijn.be/stops/107235"], ["https://data.delijn.be/stops/202548", "https://data.delijn.be/stops/202549"], ["https://data.delijn.be/stops/300622", "https://data.delijn.be/stops/306800"], ["https://data.delijn.be/stops/502548", "https://data.delijn.be/stops/507548"], ["https://data.delijn.be/stops/503339", "https://data.delijn.be/stops/508339"], ["https://data.delijn.be/stops/403752", "https://data.delijn.be/stops/403759"], ["https://data.delijn.be/stops/200641", "https://data.delijn.be/stops/201307"], ["https://data.delijn.be/stops/206506", "https://data.delijn.be/stops/206507"], ["https://data.delijn.be/stops/401960", "https://data.delijn.be/stops/403850"], ["https://data.delijn.be/stops/202123", "https://data.delijn.be/stops/215018"], ["https://data.delijn.be/stops/204738", "https://data.delijn.be/stops/204739"], ["https://data.delijn.be/stops/400257", "https://data.delijn.be/stops/400287"], ["https://data.delijn.be/stops/206974", "https://data.delijn.be/stops/207611"], ["https://data.delijn.be/stops/202465", "https://data.delijn.be/stops/202816"], ["https://data.delijn.be/stops/504127", "https://data.delijn.be/stops/504132"], ["https://data.delijn.be/stops/504482", "https://data.delijn.be/stops/504725"], ["https://data.delijn.be/stops/107647", "https://data.delijn.be/stops/108954"], ["https://data.delijn.be/stops/503623", "https://data.delijn.be/stops/505526"], ["https://data.delijn.be/stops/503879", "https://data.delijn.be/stops/503881"], ["https://data.delijn.be/stops/302757", "https://data.delijn.be/stops/302760"], ["https://data.delijn.be/stops/400218", "https://data.delijn.be/stops/400230"], ["https://data.delijn.be/stops/503600", "https://data.delijn.be/stops/505184"], ["https://data.delijn.be/stops/501245", "https://data.delijn.be/stops/501257"], ["https://data.delijn.be/stops/102323", "https://data.delijn.be/stops/105332"], ["https://data.delijn.be/stops/408581", "https://data.delijn.be/stops/307056"], ["https://data.delijn.be/stops/407352", "https://data.delijn.be/stops/407500"], ["https://data.delijn.be/stops/106610", "https://data.delijn.be/stops/109650"], ["https://data.delijn.be/stops/208107", "https://data.delijn.be/stops/219030"], ["https://data.delijn.be/stops/302330", "https://data.delijn.be/stops/304118"], ["https://data.delijn.be/stops/203824", "https://data.delijn.be/stops/209717"], ["https://data.delijn.be/stops/206110", "https://data.delijn.be/stops/207110"], ["https://data.delijn.be/stops/208186", "https://data.delijn.be/stops/208741"], ["https://data.delijn.be/stops/301488", "https://data.delijn.be/stops/302623"], ["https://data.delijn.be/stops/405525", "https://data.delijn.be/stops/407311"], ["https://data.delijn.be/stops/506397", "https://data.delijn.be/stops/506400"], ["https://data.delijn.be/stops/108551", "https://data.delijn.be/stops/109593"], ["https://data.delijn.be/stops/201139", "https://data.delijn.be/stops/201783"], ["https://data.delijn.be/stops/201630", "https://data.delijn.be/stops/203937"], ["https://data.delijn.be/stops/101849", "https://data.delijn.be/stops/101851"], ["https://data.delijn.be/stops/405614", "https://data.delijn.be/stops/407192"], ["https://data.delijn.be/stops/202218", "https://data.delijn.be/stops/205795"], ["https://data.delijn.be/stops/401996", "https://data.delijn.be/stops/404543"], ["https://data.delijn.be/stops/407635", "https://data.delijn.be/stops/410298"], ["https://data.delijn.be/stops/507440", "https://data.delijn.be/stops/507750"], ["https://data.delijn.be/stops/504847", "https://data.delijn.be/stops/507201"], ["https://data.delijn.be/stops/505227", "https://data.delijn.be/stops/507268"], ["https://data.delijn.be/stops/505838", "https://data.delijn.be/stops/508067"], ["https://data.delijn.be/stops/301787", "https://data.delijn.be/stops/302528"], ["https://data.delijn.be/stops/200384", "https://data.delijn.be/stops/209294"], ["https://data.delijn.be/stops/208589", "https://data.delijn.be/stops/209590"], ["https://data.delijn.be/stops/502523", "https://data.delijn.be/stops/507523"], ["https://data.delijn.be/stops/300130", "https://data.delijn.be/stops/300136"], ["https://data.delijn.be/stops/200954", "https://data.delijn.be/stops/203935"], ["https://data.delijn.be/stops/504657", "https://data.delijn.be/stops/509657"], ["https://data.delijn.be/stops/303258", "https://data.delijn.be/stops/303302"], ["https://data.delijn.be/stops/501545", "https://data.delijn.be/stops/506198"], ["https://data.delijn.be/stops/203636", "https://data.delijn.be/stops/203637"], ["https://data.delijn.be/stops/300164", "https://data.delijn.be/stops/306828"], ["https://data.delijn.be/stops/208210", "https://data.delijn.be/stops/209209"], ["https://data.delijn.be/stops/105723", "https://data.delijn.be/stops/106561"], ["https://data.delijn.be/stops/301743", "https://data.delijn.be/stops/301797"], ["https://data.delijn.be/stops/300355", "https://data.delijn.be/stops/300356"], ["https://data.delijn.be/stops/101054", "https://data.delijn.be/stops/101375"], ["https://data.delijn.be/stops/307430", "https://data.delijn.be/stops/307432"], ["https://data.delijn.be/stops/106457", "https://data.delijn.be/stops/106459"], ["https://data.delijn.be/stops/301609", "https://data.delijn.be/stops/301611"], ["https://data.delijn.be/stops/504666", "https://data.delijn.be/stops/505354"], ["https://data.delijn.be/stops/200521", "https://data.delijn.be/stops/210051"], ["https://data.delijn.be/stops/103537", "https://data.delijn.be/stops/103542"], ["https://data.delijn.be/stops/203765", "https://data.delijn.be/stops/203778"], ["https://data.delijn.be/stops/204387", "https://data.delijn.be/stops/204388"], ["https://data.delijn.be/stops/405436", "https://data.delijn.be/stops/408521"], ["https://data.delijn.be/stops/109553", "https://data.delijn.be/stops/109555"], ["https://data.delijn.be/stops/502212", "https://data.delijn.be/stops/502213"], ["https://data.delijn.be/stops/405589", "https://data.delijn.be/stops/405602"], ["https://data.delijn.be/stops/102456", "https://data.delijn.be/stops/406859"], ["https://data.delijn.be/stops/202061", "https://data.delijn.be/stops/211016"], ["https://data.delijn.be/stops/503952", "https://data.delijn.be/stops/504277"], ["https://data.delijn.be/stops/106795", "https://data.delijn.be/stops/106796"], ["https://data.delijn.be/stops/300070", "https://data.delijn.be/stops/300071"], ["https://data.delijn.be/stops/108907", "https://data.delijn.be/stops/109398"], ["https://data.delijn.be/stops/302374", "https://data.delijn.be/stops/302380"], ["https://data.delijn.be/stops/404322", "https://data.delijn.be/stops/404323"], ["https://data.delijn.be/stops/509369", "https://data.delijn.be/stops/509372"], ["https://data.delijn.be/stops/304326", "https://data.delijn.be/stops/304331"], ["https://data.delijn.be/stops/203054", "https://data.delijn.be/stops/203055"], ["https://data.delijn.be/stops/206096", "https://data.delijn.be/stops/207096"], ["https://data.delijn.be/stops/407271", "https://data.delijn.be/stops/407524"], ["https://data.delijn.be/stops/105323", "https://data.delijn.be/stops/105328"], ["https://data.delijn.be/stops/303663", "https://data.delijn.be/stops/306805"], ["https://data.delijn.be/stops/502239", "https://data.delijn.be/stops/507654"], ["https://data.delijn.be/stops/301788", "https://data.delijn.be/stops/301790"], ["https://data.delijn.be/stops/200624", "https://data.delijn.be/stops/200625"], ["https://data.delijn.be/stops/303818", "https://data.delijn.be/stops/303825"], ["https://data.delijn.be/stops/406108", "https://data.delijn.be/stops/406112"], ["https://data.delijn.be/stops/101654", "https://data.delijn.be/stops/308797"], ["https://data.delijn.be/stops/401794", "https://data.delijn.be/stops/406351"], ["https://data.delijn.be/stops/405164", "https://data.delijn.be/stops/405167"], ["https://data.delijn.be/stops/501410", "https://data.delijn.be/stops/506411"], ["https://data.delijn.be/stops/200368", "https://data.delijn.be/stops/201383"], ["https://data.delijn.be/stops/403311", "https://data.delijn.be/stops/403462"], ["https://data.delijn.be/stops/106820", "https://data.delijn.be/stops/106821"], ["https://data.delijn.be/stops/407743", "https://data.delijn.be/stops/409662"], ["https://data.delijn.be/stops/206769", "https://data.delijn.be/stops/206796"], ["https://data.delijn.be/stops/304020", "https://data.delijn.be/stops/304021"], ["https://data.delijn.be/stops/206541", "https://data.delijn.be/stops/206552"], ["https://data.delijn.be/stops/404458", "https://data.delijn.be/stops/404465"], ["https://data.delijn.be/stops/204737", "https://data.delijn.be/stops/205757"], ["https://data.delijn.be/stops/201274", "https://data.delijn.be/stops/201373"], ["https://data.delijn.be/stops/205054", "https://data.delijn.be/stops/205316"], ["https://data.delijn.be/stops/404089", "https://data.delijn.be/stops/405968"], ["https://data.delijn.be/stops/204003", "https://data.delijn.be/stops/205209"], ["https://data.delijn.be/stops/307061", "https://data.delijn.be/stops/307280"], ["https://data.delijn.be/stops/404870", "https://data.delijn.be/stops/404958"], ["https://data.delijn.be/stops/306798", "https://data.delijn.be/stops/306802"], ["https://data.delijn.be/stops/300502", "https://data.delijn.be/stops/300506"], ["https://data.delijn.be/stops/400766", "https://data.delijn.be/stops/405276"], ["https://data.delijn.be/stops/507226", "https://data.delijn.be/stops/507236"], ["https://data.delijn.be/stops/202852", "https://data.delijn.be/stops/211098"], ["https://data.delijn.be/stops/503199", "https://data.delijn.be/stops/503211"], ["https://data.delijn.be/stops/208182", "https://data.delijn.be/stops/209181"], ["https://data.delijn.be/stops/303073", "https://data.delijn.be/stops/303090"], ["https://data.delijn.be/stops/505379", "https://data.delijn.be/stops/505380"], ["https://data.delijn.be/stops/107470", "https://data.delijn.be/stops/107475"], ["https://data.delijn.be/stops/403306", "https://data.delijn.be/stops/403308"], ["https://data.delijn.be/stops/101617", "https://data.delijn.be/stops/106041"], ["https://data.delijn.be/stops/405160", "https://data.delijn.be/stops/405168"], ["https://data.delijn.be/stops/202063", "https://data.delijn.be/stops/203074"], ["https://data.delijn.be/stops/401585", "https://data.delijn.be/stops/401593"], ["https://data.delijn.be/stops/206714", "https://data.delijn.be/stops/207653"], ["https://data.delijn.be/stops/305077", "https://data.delijn.be/stops/305078"], ["https://data.delijn.be/stops/102647", "https://data.delijn.be/stops/107826"], ["https://data.delijn.be/stops/502798", "https://data.delijn.be/stops/507357"], ["https://data.delijn.be/stops/406180", "https://data.delijn.be/stops/410270"], ["https://data.delijn.be/stops/201018", "https://data.delijn.be/stops/209948"], ["https://data.delijn.be/stops/400434", "https://data.delijn.be/stops/406776"], ["https://data.delijn.be/stops/301073", "https://data.delijn.be/stops/307808"], ["https://data.delijn.be/stops/206475", "https://data.delijn.be/stops/207475"], ["https://data.delijn.be/stops/502347", "https://data.delijn.be/stops/505089"], ["https://data.delijn.be/stops/201676", "https://data.delijn.be/stops/202400"], ["https://data.delijn.be/stops/500558", "https://data.delijn.be/stops/500560"], ["https://data.delijn.be/stops/503536", "https://data.delijn.be/stops/503836"], ["https://data.delijn.be/stops/409766", "https://data.delijn.be/stops/409768"], ["https://data.delijn.be/stops/209214", "https://data.delijn.be/stops/209428"], ["https://data.delijn.be/stops/104941", "https://data.delijn.be/stops/109719"], ["https://data.delijn.be/stops/408939", "https://data.delijn.be/stops/409818"], ["https://data.delijn.be/stops/503717", "https://data.delijn.be/stops/504968"], ["https://data.delijn.be/stops/108564", "https://data.delijn.be/stops/108571"], ["https://data.delijn.be/stops/301309", "https://data.delijn.be/stops/301903"], ["https://data.delijn.be/stops/208344", "https://data.delijn.be/stops/208346"], ["https://data.delijn.be/stops/400778", "https://data.delijn.be/stops/409614"], ["https://data.delijn.be/stops/204192", "https://data.delijn.be/stops/205192"], ["https://data.delijn.be/stops/304048", "https://data.delijn.be/stops/304076"], ["https://data.delijn.be/stops/106298", "https://data.delijn.be/stops/109645"], ["https://data.delijn.be/stops/400640", "https://data.delijn.be/stops/400920"], ["https://data.delijn.be/stops/401483", "https://data.delijn.be/stops/401539"], ["https://data.delijn.be/stops/407478", "https://data.delijn.be/stops/407498"], ["https://data.delijn.be/stops/501306", "https://data.delijn.be/stops/506348"], ["https://data.delijn.be/stops/203127", "https://data.delijn.be/stops/203597"], ["https://data.delijn.be/stops/502493", "https://data.delijn.be/stops/505337"], ["https://data.delijn.be/stops/401738", "https://data.delijn.be/stops/407348"], ["https://data.delijn.be/stops/101207", "https://data.delijn.be/stops/104926"], ["https://data.delijn.be/stops/305857", "https://data.delijn.be/stops/308616"], ["https://data.delijn.be/stops/102609", "https://data.delijn.be/stops/102611"], ["https://data.delijn.be/stops/501121", "https://data.delijn.be/stops/501125"], ["https://data.delijn.be/stops/102931", "https://data.delijn.be/stops/104895"], ["https://data.delijn.be/stops/102854", "https://data.delijn.be/stops/204625"], ["https://data.delijn.be/stops/406665", "https://data.delijn.be/stops/406678"], ["https://data.delijn.be/stops/204382", "https://data.delijn.be/stops/205183"], ["https://data.delijn.be/stops/304465", "https://data.delijn.be/stops/307584"], ["https://data.delijn.be/stops/406045", "https://data.delijn.be/stops/406144"], ["https://data.delijn.be/stops/501216", "https://data.delijn.be/stops/506216"], ["https://data.delijn.be/stops/205261", "https://data.delijn.be/stops/205286"], ["https://data.delijn.be/stops/101931", "https://data.delijn.be/stops/103668"], ["https://data.delijn.be/stops/204744", "https://data.delijn.be/stops/204745"], ["https://data.delijn.be/stops/300047", "https://data.delijn.be/stops/300048"], ["https://data.delijn.be/stops/206661", "https://data.delijn.be/stops/207661"], ["https://data.delijn.be/stops/103032", "https://data.delijn.be/stops/106747"], ["https://data.delijn.be/stops/103233", "https://data.delijn.be/stops/109412"], ["https://data.delijn.be/stops/502492", "https://data.delijn.be/stops/503339"], ["https://data.delijn.be/stops/408615", "https://data.delijn.be/stops/408633"], ["https://data.delijn.be/stops/208568", "https://data.delijn.be/stops/209549"], ["https://data.delijn.be/stops/302224", "https://data.delijn.be/stops/302225"], ["https://data.delijn.be/stops/107656", "https://data.delijn.be/stops/107657"], ["https://data.delijn.be/stops/300257", "https://data.delijn.be/stops/303827"], ["https://data.delijn.be/stops/106289", "https://data.delijn.be/stops/106291"], ["https://data.delijn.be/stops/504560", "https://data.delijn.be/stops/509560"], ["https://data.delijn.be/stops/204479", "https://data.delijn.be/stops/205240"], ["https://data.delijn.be/stops/503836", "https://data.delijn.be/stops/505160"], ["https://data.delijn.be/stops/508793", "https://data.delijn.be/stops/508795"], ["https://data.delijn.be/stops/104948", "https://data.delijn.be/stops/109729"], ["https://data.delijn.be/stops/101665", "https://data.delijn.be/stops/104845"], ["https://data.delijn.be/stops/200974", "https://data.delijn.be/stops/207858"], ["https://data.delijn.be/stops/402208", "https://data.delijn.be/stops/408054"], ["https://data.delijn.be/stops/208496", "https://data.delijn.be/stops/209718"], ["https://data.delijn.be/stops/203021", "https://data.delijn.be/stops/210853"], ["https://data.delijn.be/stops/400574", "https://data.delijn.be/stops/410002"], ["https://data.delijn.be/stops/506202", "https://data.delijn.be/stops/506425"], ["https://data.delijn.be/stops/204180", "https://data.delijn.be/stops/205180"], ["https://data.delijn.be/stops/207040", "https://data.delijn.be/stops/216011"], ["https://data.delijn.be/stops/106500", "https://data.delijn.be/stops/107116"], ["https://data.delijn.be/stops/300357", "https://data.delijn.be/stops/300358"], ["https://data.delijn.be/stops/308617", "https://data.delijn.be/stops/308619"], ["https://data.delijn.be/stops/300631", "https://data.delijn.be/stops/304163"], ["https://data.delijn.be/stops/101801", "https://data.delijn.be/stops/101950"], ["https://data.delijn.be/stops/501086", "https://data.delijn.be/stops/501438"], ["https://data.delijn.be/stops/403699", "https://data.delijn.be/stops/405521"], ["https://data.delijn.be/stops/206776", "https://data.delijn.be/stops/206801"], ["https://data.delijn.be/stops/206368", "https://data.delijn.be/stops/207954"], ["https://data.delijn.be/stops/409061", "https://data.delijn.be/stops/409210"], ["https://data.delijn.be/stops/202370", "https://data.delijn.be/stops/203369"], ["https://data.delijn.be/stops/207945", "https://data.delijn.be/stops/209552"], ["https://data.delijn.be/stops/205986", "https://data.delijn.be/stops/206256"], ["https://data.delijn.be/stops/501390", "https://data.delijn.be/stops/506388"], ["https://data.delijn.be/stops/200337", "https://data.delijn.be/stops/201356"], ["https://data.delijn.be/stops/503416", "https://data.delijn.be/stops/508033"], ["https://data.delijn.be/stops/106096", "https://data.delijn.be/stops/109878"], ["https://data.delijn.be/stops/109502", "https://data.delijn.be/stops/109561"], ["https://data.delijn.be/stops/304953", "https://data.delijn.be/stops/308033"], ["https://data.delijn.be/stops/202504", "https://data.delijn.be/stops/203503"], ["https://data.delijn.be/stops/405479", "https://data.delijn.be/stops/409267"], ["https://data.delijn.be/stops/200068", "https://data.delijn.be/stops/204951"], ["https://data.delijn.be/stops/505391", "https://data.delijn.be/stops/505806"], ["https://data.delijn.be/stops/509164", "https://data.delijn.be/stops/509176"], ["https://data.delijn.be/stops/402064", "https://data.delijn.be/stops/402065"], ["https://data.delijn.be/stops/401551", "https://data.delijn.be/stops/404926"], ["https://data.delijn.be/stops/307685", "https://data.delijn.be/stops/307686"], ["https://data.delijn.be/stops/206687", "https://data.delijn.be/stops/207381"], ["https://data.delijn.be/stops/407029", "https://data.delijn.be/stops/407032"], ["https://data.delijn.be/stops/208468", "https://data.delijn.be/stops/209675"], ["https://data.delijn.be/stops/200802", "https://data.delijn.be/stops/201739"], ["https://data.delijn.be/stops/306906", "https://data.delijn.be/stops/306907"], ["https://data.delijn.be/stops/502075", "https://data.delijn.be/stops/590333"], ["https://data.delijn.be/stops/202126", "https://data.delijn.be/stops/210050"], ["https://data.delijn.be/stops/405243", "https://data.delijn.be/stops/406324"], ["https://data.delijn.be/stops/502933", "https://data.delijn.be/stops/507933"], ["https://data.delijn.be/stops/501363", "https://data.delijn.be/stops/506443"], ["https://data.delijn.be/stops/504256", "https://data.delijn.be/stops/509101"], ["https://data.delijn.be/stops/504466", "https://data.delijn.be/stops/505112"], ["https://data.delijn.be/stops/301434", "https://data.delijn.be/stops/306224"], ["https://data.delijn.be/stops/300556", "https://data.delijn.be/stops/300565"], ["https://data.delijn.be/stops/502206", "https://data.delijn.be/stops/502635"], ["https://data.delijn.be/stops/304148", "https://data.delijn.be/stops/307765"], ["https://data.delijn.be/stops/509053", "https://data.delijn.be/stops/509828"], ["https://data.delijn.be/stops/408511", "https://data.delijn.be/stops/408688"], ["https://data.delijn.be/stops/304377", "https://data.delijn.be/stops/307404"], ["https://data.delijn.be/stops/502684", "https://data.delijn.be/stops/502700"], ["https://data.delijn.be/stops/505694", "https://data.delijn.be/stops/507544"], ["https://data.delijn.be/stops/200186", "https://data.delijn.be/stops/201181"], ["https://data.delijn.be/stops/106460", "https://data.delijn.be/stops/106464"], ["https://data.delijn.be/stops/102701", "https://data.delijn.be/stops/102943"], ["https://data.delijn.be/stops/204981", "https://data.delijn.be/stops/206579"], ["https://data.delijn.be/stops/402712", "https://data.delijn.be/stops/405957"], ["https://data.delijn.be/stops/408617", "https://data.delijn.be/stops/408770"], ["https://data.delijn.be/stops/402390", "https://data.delijn.be/stops/404704"], ["https://data.delijn.be/stops/203548", "https://data.delijn.be/stops/203549"], ["https://data.delijn.be/stops/206159", "https://data.delijn.be/stops/206161"], ["https://data.delijn.be/stops/107613", "https://data.delijn.be/stops/107960"], ["https://data.delijn.be/stops/300129", "https://data.delijn.be/stops/300131"], ["https://data.delijn.be/stops/501737", "https://data.delijn.be/stops/501746"], ["https://data.delijn.be/stops/402659", "https://data.delijn.be/stops/402729"], ["https://data.delijn.be/stops/405778", "https://data.delijn.be/stops/405779"], ["https://data.delijn.be/stops/108442", "https://data.delijn.be/stops/108444"], ["https://data.delijn.be/stops/102373", "https://data.delijn.be/stops/102889"], ["https://data.delijn.be/stops/300132", "https://data.delijn.be/stops/300143"], ["https://data.delijn.be/stops/104553", "https://data.delijn.be/stops/104852"], ["https://data.delijn.be/stops/407602", "https://data.delijn.be/stops/409796"], ["https://data.delijn.be/stops/206689", "https://data.delijn.be/stops/207718"], ["https://data.delijn.be/stops/300978", "https://data.delijn.be/stops/300994"], ["https://data.delijn.be/stops/510011", "https://data.delijn.be/stops/510013"], ["https://data.delijn.be/stops/103319", "https://data.delijn.be/stops/105250"], ["https://data.delijn.be/stops/208235", "https://data.delijn.be/stops/209236"], ["https://data.delijn.be/stops/107323", "https://data.delijn.be/stops/107324"], ["https://data.delijn.be/stops/307620", "https://data.delijn.be/stops/307621"], ["https://data.delijn.be/stops/302899", "https://data.delijn.be/stops/306098"], ["https://data.delijn.be/stops/400798", "https://data.delijn.be/stops/400889"], ["https://data.delijn.be/stops/408901", "https://data.delijn.be/stops/408906"], ["https://data.delijn.be/stops/109028", "https://data.delijn.be/stops/109031"], ["https://data.delijn.be/stops/504425", "https://data.delijn.be/stops/509413"], ["https://data.delijn.be/stops/104453", "https://data.delijn.be/stops/107524"], ["https://data.delijn.be/stops/108881", "https://data.delijn.be/stops/108882"], ["https://data.delijn.be/stops/405063", "https://data.delijn.be/stops/405064"], ["https://data.delijn.be/stops/104036", "https://data.delijn.be/stops/108684"], ["https://data.delijn.be/stops/304106", "https://data.delijn.be/stops/304107"], ["https://data.delijn.be/stops/202472", "https://data.delijn.be/stops/202473"], ["https://data.delijn.be/stops/200271", "https://data.delijn.be/stops/201271"], ["https://data.delijn.be/stops/203900", "https://data.delijn.be/stops/203901"], ["https://data.delijn.be/stops/303015", "https://data.delijn.be/stops/303066"], ["https://data.delijn.be/stops/505395", "https://data.delijn.be/stops/509054"], ["https://data.delijn.be/stops/207177", "https://data.delijn.be/stops/303843"], ["https://data.delijn.be/stops/305538", "https://data.delijn.be/stops/305548"], ["https://data.delijn.be/stops/202079", "https://data.delijn.be/stops/202115"], ["https://data.delijn.be/stops/405250", "https://data.delijn.be/stops/408369"], ["https://data.delijn.be/stops/206049", "https://data.delijn.be/stops/207050"], ["https://data.delijn.be/stops/105265", "https://data.delijn.be/stops/109709"], ["https://data.delijn.be/stops/202259", "https://data.delijn.be/stops/203260"], ["https://data.delijn.be/stops/402219", "https://data.delijn.be/stops/405608"], ["https://data.delijn.be/stops/204252", "https://data.delijn.be/stops/204732"], ["https://data.delijn.be/stops/401988", "https://data.delijn.be/stops/401989"], ["https://data.delijn.be/stops/401294", "https://data.delijn.be/stops/405467"], ["https://data.delijn.be/stops/203997", "https://data.delijn.be/stops/203998"], ["https://data.delijn.be/stops/401399", "https://data.delijn.be/stops/300920"], ["https://data.delijn.be/stops/107181", "https://data.delijn.be/stops/107736"], ["https://data.delijn.be/stops/105278", "https://data.delijn.be/stops/109972"], ["https://data.delijn.be/stops/406558", "https://data.delijn.be/stops/406559"], ["https://data.delijn.be/stops/108362", "https://data.delijn.be/stops/108363"], ["https://data.delijn.be/stops/201925", "https://data.delijn.be/stops/207589"], ["https://data.delijn.be/stops/400362", "https://data.delijn.be/stops/400398"], ["https://data.delijn.be/stops/210115", "https://data.delijn.be/stops/210116"], ["https://data.delijn.be/stops/203494", "https://data.delijn.be/stops/203607"], ["https://data.delijn.be/stops/101272", "https://data.delijn.be/stops/204257"], ["https://data.delijn.be/stops/209656", "https://data.delijn.be/stops/211068"], ["https://data.delijn.be/stops/203301", "https://data.delijn.be/stops/211005"], ["https://data.delijn.be/stops/304942", "https://data.delijn.be/stops/308020"], ["https://data.delijn.be/stops/101824", "https://data.delijn.be/stops/107011"], ["https://data.delijn.be/stops/101220", "https://data.delijn.be/stops/107812"], ["https://data.delijn.be/stops/501592", "https://data.delijn.be/stops/501593"], ["https://data.delijn.be/stops/407979", "https://data.delijn.be/stops/308219"], ["https://data.delijn.be/stops/201197", "https://data.delijn.be/stops/201689"], ["https://data.delijn.be/stops/306137", "https://data.delijn.be/stops/306138"], ["https://data.delijn.be/stops/108911", "https://data.delijn.be/stops/108912"], ["https://data.delijn.be/stops/300339", "https://data.delijn.be/stops/300349"], ["https://data.delijn.be/stops/300687", "https://data.delijn.be/stops/308132"], ["https://data.delijn.be/stops/105337", "https://data.delijn.be/stops/105349"], ["https://data.delijn.be/stops/406551", "https://data.delijn.be/stops/406552"], ["https://data.delijn.be/stops/300265", "https://data.delijn.be/stops/300266"], ["https://data.delijn.be/stops/408020", "https://data.delijn.be/stops/408136"], ["https://data.delijn.be/stops/204479", "https://data.delijn.be/stops/205108"], ["https://data.delijn.be/stops/401254", "https://data.delijn.be/stops/401339"], ["https://data.delijn.be/stops/407400", "https://data.delijn.be/stops/407483"], ["https://data.delijn.be/stops/401098", "https://data.delijn.be/stops/409980"], ["https://data.delijn.be/stops/301705", "https://data.delijn.be/stops/301781"], ["https://data.delijn.be/stops/405208", "https://data.delijn.be/stops/405289"], ["https://data.delijn.be/stops/103354", "https://data.delijn.be/stops/103357"], ["https://data.delijn.be/stops/107140", "https://data.delijn.be/stops/107153"], ["https://data.delijn.be/stops/202538", "https://data.delijn.be/stops/219023"], ["https://data.delijn.be/stops/206592", "https://data.delijn.be/stops/206949"], ["https://data.delijn.be/stops/401427", "https://data.delijn.be/stops/401444"], ["https://data.delijn.be/stops/208250", "https://data.delijn.be/stops/209251"], ["https://data.delijn.be/stops/202267", "https://data.delijn.be/stops/203238"], ["https://data.delijn.be/stops/501448", "https://data.delijn.be/stops/506027"], ["https://data.delijn.be/stops/204334", "https://data.delijn.be/stops/205818"], ["https://data.delijn.be/stops/503092", "https://data.delijn.be/stops/508882"], ["https://data.delijn.be/stops/302849", "https://data.delijn.be/stops/302850"], ["https://data.delijn.be/stops/503964", "https://data.delijn.be/stops/508676"], ["https://data.delijn.be/stops/203639", "https://data.delijn.be/stops/214016"], ["https://data.delijn.be/stops/403589", "https://data.delijn.be/stops/410013"], ["https://data.delijn.be/stops/104124", "https://data.delijn.be/stops/105165"], ["https://data.delijn.be/stops/305347", "https://data.delijn.be/stops/305348"], ["https://data.delijn.be/stops/108666", "https://data.delijn.be/stops/306613"], ["https://data.delijn.be/stops/101204", "https://data.delijn.be/stops/101207"], ["https://data.delijn.be/stops/304471", "https://data.delijn.be/stops/304624"], ["https://data.delijn.be/stops/102322", "https://data.delijn.be/stops/109557"], ["https://data.delijn.be/stops/202354", "https://data.delijn.be/stops/203354"], ["https://data.delijn.be/stops/102647", "https://data.delijn.be/stops/104909"], ["https://data.delijn.be/stops/103328", "https://data.delijn.be/stops/105097"], ["https://data.delijn.be/stops/107490", "https://data.delijn.be/stops/107520"], ["https://data.delijn.be/stops/105735", "https://data.delijn.be/stops/105745"], ["https://data.delijn.be/stops/206019", "https://data.delijn.be/stops/207021"], ["https://data.delijn.be/stops/401550", "https://data.delijn.be/stops/404946"], ["https://data.delijn.be/stops/402141", "https://data.delijn.be/stops/402397"], ["https://data.delijn.be/stops/301987", "https://data.delijn.be/stops/302001"], ["https://data.delijn.be/stops/104508", "https://data.delijn.be/stops/107923"], ["https://data.delijn.be/stops/400494", "https://data.delijn.be/stops/407211"], ["https://data.delijn.be/stops/503517", "https://data.delijn.be/stops/503519"], ["https://data.delijn.be/stops/506345", "https://data.delijn.be/stops/506348"], ["https://data.delijn.be/stops/103944", "https://data.delijn.be/stops/108894"], ["https://data.delijn.be/stops/202624", "https://data.delijn.be/stops/203623"], ["https://data.delijn.be/stops/301359", "https://data.delijn.be/stops/306137"], ["https://data.delijn.be/stops/200254", "https://data.delijn.be/stops/203558"], ["https://data.delijn.be/stops/308152", "https://data.delijn.be/stops/308153"], ["https://data.delijn.be/stops/304592", "https://data.delijn.be/stops/304612"], ["https://data.delijn.be/stops/502401", "https://data.delijn.be/stops/507401"], ["https://data.delijn.be/stops/503040", "https://data.delijn.be/stops/508041"], ["https://data.delijn.be/stops/501432", "https://data.delijn.be/stops/506432"], ["https://data.delijn.be/stops/204993", "https://data.delijn.be/stops/208130"], ["https://data.delijn.be/stops/408519", "https://data.delijn.be/stops/408774"], ["https://data.delijn.be/stops/400675", "https://data.delijn.be/stops/405428"], ["https://data.delijn.be/stops/202129", "https://data.delijn.be/stops/202719"], ["https://data.delijn.be/stops/501017", "https://data.delijn.be/stops/501607"], ["https://data.delijn.be/stops/101374", "https://data.delijn.be/stops/101401"], ["https://data.delijn.be/stops/101009", "https://data.delijn.be/stops/109005"], ["https://data.delijn.be/stops/209956", "https://data.delijn.be/stops/209970"], ["https://data.delijn.be/stops/501191", "https://data.delijn.be/stops/506379"], ["https://data.delijn.be/stops/108162", "https://data.delijn.be/stops/108163"], ["https://data.delijn.be/stops/407463", "https://data.delijn.be/stops/409273"], ["https://data.delijn.be/stops/206271", "https://data.delijn.be/stops/207271"], ["https://data.delijn.be/stops/305164", "https://data.delijn.be/stops/308050"], ["https://data.delijn.be/stops/210051", "https://data.delijn.be/stops/211051"], ["https://data.delijn.be/stops/404333", "https://data.delijn.be/stops/404340"], ["https://data.delijn.be/stops/206754", "https://data.delijn.be/stops/209476"], ["https://data.delijn.be/stops/208955", "https://data.delijn.be/stops/209955"], ["https://data.delijn.be/stops/307836", "https://data.delijn.be/stops/307838"], ["https://data.delijn.be/stops/200922", "https://data.delijn.be/stops/200935"], ["https://data.delijn.be/stops/408686", "https://data.delijn.be/stops/408687"], ["https://data.delijn.be/stops/208122", "https://data.delijn.be/stops/208123"], ["https://data.delijn.be/stops/402612", "https://data.delijn.be/stops/404399"], ["https://data.delijn.be/stops/408159", "https://data.delijn.be/stops/408160"], ["https://data.delijn.be/stops/104581", "https://data.delijn.be/stops/308632"], ["https://data.delijn.be/stops/204145", "https://data.delijn.be/stops/206637"], ["https://data.delijn.be/stops/201894", "https://data.delijn.be/stops/211126"], ["https://data.delijn.be/stops/205739", "https://data.delijn.be/stops/205741"], ["https://data.delijn.be/stops/106800", "https://data.delijn.be/stops/106802"], ["https://data.delijn.be/stops/503019", "https://data.delijn.be/stops/503022"], ["https://data.delijn.be/stops/200797", "https://data.delijn.be/stops/210072"], ["https://data.delijn.be/stops/507076", "https://data.delijn.be/stops/507080"], ["https://data.delijn.be/stops/405187", "https://data.delijn.be/stops/405191"], ["https://data.delijn.be/stops/505110", "https://data.delijn.be/stops/509155"], ["https://data.delijn.be/stops/501661", "https://data.delijn.be/stops/501674"], ["https://data.delijn.be/stops/408950", "https://data.delijn.be/stops/408972"], ["https://data.delijn.be/stops/208082", "https://data.delijn.be/stops/209699"], ["https://data.delijn.be/stops/304833", "https://data.delijn.be/stops/307053"], ["https://data.delijn.be/stops/302203", "https://data.delijn.be/stops/304115"], ["https://data.delijn.be/stops/509132", "https://data.delijn.be/stops/509257"], ["https://data.delijn.be/stops/401567", "https://data.delijn.be/stops/401738"], ["https://data.delijn.be/stops/300558", "https://data.delijn.be/stops/300559"], ["https://data.delijn.be/stops/205528", "https://data.delijn.be/stops/205630"], ["https://data.delijn.be/stops/200066", "https://data.delijn.be/stops/200369"], ["https://data.delijn.be/stops/208459", "https://data.delijn.be/stops/209467"], ["https://data.delijn.be/stops/405397", "https://data.delijn.be/stops/302826"], ["https://data.delijn.be/stops/206765", "https://data.delijn.be/stops/209090"], ["https://data.delijn.be/stops/503271", "https://data.delijn.be/stops/503274"], ["https://data.delijn.be/stops/105170", "https://data.delijn.be/stops/107125"], ["https://data.delijn.be/stops/207213", "https://data.delijn.be/stops/207922"], ["https://data.delijn.be/stops/501655", "https://data.delijn.be/stops/506149"], ["https://data.delijn.be/stops/502226", "https://data.delijn.be/stops/505775"], ["https://data.delijn.be/stops/305527", "https://data.delijn.be/stops/305577"], ["https://data.delijn.be/stops/200403", "https://data.delijn.be/stops/201403"], ["https://data.delijn.be/stops/501551", "https://data.delijn.be/stops/505757"], ["https://data.delijn.be/stops/208716", "https://data.delijn.be/stops/209716"], ["https://data.delijn.be/stops/202885", "https://data.delijn.be/stops/202886"], ["https://data.delijn.be/stops/304807", "https://data.delijn.be/stops/307886"], ["https://data.delijn.be/stops/101432", "https://data.delijn.be/stops/101433"], ["https://data.delijn.be/stops/207340", "https://data.delijn.be/stops/207341"], ["https://data.delijn.be/stops/107401", "https://data.delijn.be/stops/107404"], ["https://data.delijn.be/stops/504330", "https://data.delijn.be/stops/505925"], ["https://data.delijn.be/stops/401650", "https://data.delijn.be/stops/405403"], ["https://data.delijn.be/stops/101355", "https://data.delijn.be/stops/105760"], ["https://data.delijn.be/stops/505092", "https://data.delijn.be/stops/509883"], ["https://data.delijn.be/stops/300742", "https://data.delijn.be/stops/300745"], ["https://data.delijn.be/stops/208329", "https://data.delijn.be/stops/208331"], ["https://data.delijn.be/stops/200075", "https://data.delijn.be/stops/201450"], ["https://data.delijn.be/stops/102164", "https://data.delijn.be/stops/105809"], ["https://data.delijn.be/stops/203751", "https://data.delijn.be/stops/203752"], ["https://data.delijn.be/stops/106896", "https://data.delijn.be/stops/109884"], ["https://data.delijn.be/stops/300203", "https://data.delijn.be/stops/300210"], ["https://data.delijn.be/stops/302778", "https://data.delijn.be/stops/302781"], ["https://data.delijn.be/stops/507112", "https://data.delijn.be/stops/507121"], ["https://data.delijn.be/stops/101973", "https://data.delijn.be/stops/109290"], ["https://data.delijn.be/stops/405885", "https://data.delijn.be/stops/409889"], ["https://data.delijn.be/stops/408519", "https://data.delijn.be/stops/410249"], ["https://data.delijn.be/stops/404816", "https://data.delijn.be/stops/404817"], ["https://data.delijn.be/stops/105176", "https://data.delijn.be/stops/109522"], ["https://data.delijn.be/stops/209168", "https://data.delijn.be/stops/209169"], ["https://data.delijn.be/stops/200749", "https://data.delijn.be/stops/202150"], ["https://data.delijn.be/stops/207230", "https://data.delijn.be/stops/207802"], ["https://data.delijn.be/stops/402046", "https://data.delijn.be/stops/410074"], ["https://data.delijn.be/stops/200039", "https://data.delijn.be/stops/201912"], ["https://data.delijn.be/stops/206084", "https://data.delijn.be/stops/207083"], ["https://data.delijn.be/stops/501286", "https://data.delijn.be/stops/506286"], ["https://data.delijn.be/stops/203937", "https://data.delijn.be/stops/203938"], ["https://data.delijn.be/stops/204736", "https://data.delijn.be/stops/205736"], ["https://data.delijn.be/stops/303162", "https://data.delijn.be/stops/307290"], ["https://data.delijn.be/stops/208341", "https://data.delijn.be/stops/219010"], ["https://data.delijn.be/stops/201047", "https://data.delijn.be/stops/203449"], ["https://data.delijn.be/stops/105023", "https://data.delijn.be/stops/105827"], ["https://data.delijn.be/stops/503603", "https://data.delijn.be/stops/508601"], ["https://data.delijn.be/stops/109583", "https://data.delijn.be/stops/109586"], ["https://data.delijn.be/stops/408102", "https://data.delijn.be/stops/408103"], ["https://data.delijn.be/stops/400588", "https://data.delijn.be/stops/400616"], ["https://data.delijn.be/stops/502041", "https://data.delijn.be/stops/507059"], ["https://data.delijn.be/stops/500941", "https://data.delijn.be/stops/503181"], ["https://data.delijn.be/stops/406254", "https://data.delijn.be/stops/410131"], ["https://data.delijn.be/stops/202219", "https://data.delijn.be/stops/203219"], ["https://data.delijn.be/stops/206014", "https://data.delijn.be/stops/207014"], ["https://data.delijn.be/stops/204578", "https://data.delijn.be/stops/207243"], ["https://data.delijn.be/stops/407605", "https://data.delijn.be/stops/407610"], ["https://data.delijn.be/stops/301882", "https://data.delijn.be/stops/305871"], ["https://data.delijn.be/stops/300046", "https://data.delijn.be/stops/300064"], ["https://data.delijn.be/stops/102289", "https://data.delijn.be/stops/102291"], ["https://data.delijn.be/stops/206403", "https://data.delijn.be/stops/207245"], ["https://data.delijn.be/stops/403894", "https://data.delijn.be/stops/403895"], ["https://data.delijn.be/stops/307298", "https://data.delijn.be/stops/307299"], ["https://data.delijn.be/stops/300416", "https://data.delijn.be/stops/300419"], ["https://data.delijn.be/stops/106766", "https://data.delijn.be/stops/106867"], ["https://data.delijn.be/stops/103245", "https://data.delijn.be/stops/103250"], ["https://data.delijn.be/stops/308153", "https://data.delijn.be/stops/308166"], ["https://data.delijn.be/stops/505510", "https://data.delijn.be/stops/509928"], ["https://data.delijn.be/stops/403418", "https://data.delijn.be/stops/403419"], ["https://data.delijn.be/stops/501764", "https://data.delijn.be/stops/503824"], ["https://data.delijn.be/stops/306905", "https://data.delijn.be/stops/306932"], ["https://data.delijn.be/stops/308570", "https://data.delijn.be/stops/308573"], ["https://data.delijn.be/stops/505030", "https://data.delijn.be/stops/505032"], ["https://data.delijn.be/stops/206265", "https://data.delijn.be/stops/206995"], ["https://data.delijn.be/stops/303212", "https://data.delijn.be/stops/307952"], ["https://data.delijn.be/stops/206331", "https://data.delijn.be/stops/207329"], ["https://data.delijn.be/stops/407965", "https://data.delijn.be/stops/408000"], ["https://data.delijn.be/stops/201521", "https://data.delijn.be/stops/201522"], ["https://data.delijn.be/stops/404473", "https://data.delijn.be/stops/404533"], ["https://data.delijn.be/stops/304955", "https://data.delijn.be/stops/304960"], ["https://data.delijn.be/stops/303760", "https://data.delijn.be/stops/303763"], ["https://data.delijn.be/stops/504454", "https://data.delijn.be/stops/509453"], ["https://data.delijn.be/stops/407804", "https://data.delijn.be/stops/407807"], ["https://data.delijn.be/stops/108466", "https://data.delijn.be/stops/108468"], ["https://data.delijn.be/stops/401581", "https://data.delijn.be/stops/401743"], ["https://data.delijn.be/stops/104446", "https://data.delijn.be/stops/303878"], ["https://data.delijn.be/stops/500013", "https://data.delijn.be/stops/507224"], ["https://data.delijn.be/stops/303066", "https://data.delijn.be/stops/303895"], ["https://data.delijn.be/stops/507364", "https://data.delijn.be/stops/507675"], ["https://data.delijn.be/stops/405914", "https://data.delijn.be/stops/405933"], ["https://data.delijn.be/stops/405717", "https://data.delijn.be/stops/410144"], ["https://data.delijn.be/stops/304892", "https://data.delijn.be/stops/304893"], ["https://data.delijn.be/stops/208588", "https://data.delijn.be/stops/306270"], ["https://data.delijn.be/stops/200617", "https://data.delijn.be/stops/203921"], ["https://data.delijn.be/stops/502300", "https://data.delijn.be/stops/505673"], ["https://data.delijn.be/stops/307385", "https://data.delijn.be/stops/307386"], ["https://data.delijn.be/stops/305058", "https://data.delijn.be/stops/306336"], ["https://data.delijn.be/stops/106418", "https://data.delijn.be/stops/106419"], ["https://data.delijn.be/stops/505998", "https://data.delijn.be/stops/509696"], ["https://data.delijn.be/stops/304371", "https://data.delijn.be/stops/306870"], ["https://data.delijn.be/stops/403890", "https://data.delijn.be/stops/403894"], ["https://data.delijn.be/stops/304117", "https://data.delijn.be/stops/304118"], ["https://data.delijn.be/stops/402175", "https://data.delijn.be/stops/402313"], ["https://data.delijn.be/stops/401338", "https://data.delijn.be/stops/406943"], ["https://data.delijn.be/stops/307602", "https://data.delijn.be/stops/307603"], ["https://data.delijn.be/stops/302255", "https://data.delijn.be/stops/304842"], ["https://data.delijn.be/stops/201062", "https://data.delijn.be/stops/202132"], ["https://data.delijn.be/stops/302460", "https://data.delijn.be/stops/302461"], ["https://data.delijn.be/stops/305215", "https://data.delijn.be/stops/308904"], ["https://data.delijn.be/stops/200911", "https://data.delijn.be/stops/203539"], ["https://data.delijn.be/stops/204121", "https://data.delijn.be/stops/205249"], ["https://data.delijn.be/stops/109348", "https://data.delijn.be/stops/109355"], ["https://data.delijn.be/stops/209192", "https://data.delijn.be/stops/209193"], ["https://data.delijn.be/stops/101417", "https://data.delijn.be/stops/104591"], ["https://data.delijn.be/stops/406451", "https://data.delijn.be/stops/406495"], ["https://data.delijn.be/stops/108044", "https://data.delijn.be/stops/108046"], ["https://data.delijn.be/stops/303715", "https://data.delijn.be/stops/303876"], ["https://data.delijn.be/stops/503103", "https://data.delijn.be/stops/508088"], ["https://data.delijn.be/stops/202219", "https://data.delijn.be/stops/204796"], ["https://data.delijn.be/stops/502507", "https://data.delijn.be/stops/507507"], ["https://data.delijn.be/stops/509893", "https://data.delijn.be/stops/509894"], ["https://data.delijn.be/stops/504278", "https://data.delijn.be/stops/504283"], ["https://data.delijn.be/stops/400166", "https://data.delijn.be/stops/410339"], ["https://data.delijn.be/stops/501508", "https://data.delijn.be/stops/506508"], ["https://data.delijn.be/stops/505125", "https://data.delijn.be/stops/505128"], ["https://data.delijn.be/stops/301013", "https://data.delijn.be/stops/301016"], ["https://data.delijn.be/stops/204684", "https://data.delijn.be/stops/204685"], ["https://data.delijn.be/stops/211115", "https://data.delijn.be/stops/211116"], ["https://data.delijn.be/stops/300748", "https://data.delijn.be/stops/300771"], ["https://data.delijn.be/stops/406158", "https://data.delijn.be/stops/406442"], ["https://data.delijn.be/stops/406266", "https://data.delijn.be/stops/407339"], ["https://data.delijn.be/stops/206590", "https://data.delijn.be/stops/206591"], ["https://data.delijn.be/stops/301902", "https://data.delijn.be/stops/306249"], ["https://data.delijn.be/stops/302165", "https://data.delijn.be/stops/307804"], ["https://data.delijn.be/stops/207369", "https://data.delijn.be/stops/207691"], ["https://data.delijn.be/stops/405730", "https://data.delijn.be/stops/405734"], ["https://data.delijn.be/stops/209102", "https://data.delijn.be/stops/209164"], ["https://data.delijn.be/stops/302378", "https://data.delijn.be/stops/302379"], ["https://data.delijn.be/stops/501069", "https://data.delijn.be/stops/501771"], ["https://data.delijn.be/stops/109080", "https://data.delijn.be/stops/109090"], ["https://data.delijn.be/stops/504733", "https://data.delijn.be/stops/509507"], ["https://data.delijn.be/stops/107642", "https://data.delijn.be/stops/305633"], ["https://data.delijn.be/stops/104369", "https://data.delijn.be/stops/205605"], ["https://data.delijn.be/stops/206665", "https://data.delijn.be/stops/206711"], ["https://data.delijn.be/stops/407685", "https://data.delijn.be/stops/407698"], ["https://data.delijn.be/stops/504649", "https://data.delijn.be/stops/504656"], ["https://data.delijn.be/stops/503542", "https://data.delijn.be/stops/503996"], ["https://data.delijn.be/stops/402375", "https://data.delijn.be/stops/409391"], ["https://data.delijn.be/stops/502755", "https://data.delijn.be/stops/505650"], ["https://data.delijn.be/stops/102180", "https://data.delijn.be/stops/107134"], ["https://data.delijn.be/stops/302135", "https://data.delijn.be/stops/307296"], ["https://data.delijn.be/stops/102547", "https://data.delijn.be/stops/102548"], ["https://data.delijn.be/stops/406552", "https://data.delijn.be/stops/406554"], ["https://data.delijn.be/stops/108764", "https://data.delijn.be/stops/108777"], ["https://data.delijn.be/stops/204079", "https://data.delijn.be/stops/205587"], ["https://data.delijn.be/stops/206722", "https://data.delijn.be/stops/207085"], ["https://data.delijn.be/stops/503197", "https://data.delijn.be/stops/508205"], ["https://data.delijn.be/stops/403680", "https://data.delijn.be/stops/403683"], ["https://data.delijn.be/stops/307392", "https://data.delijn.be/stops/307631"], ["https://data.delijn.be/stops/505808", "https://data.delijn.be/stops/509699"], ["https://data.delijn.be/stops/409687", "https://data.delijn.be/stops/409688"], ["https://data.delijn.be/stops/407918", "https://data.delijn.be/stops/306060"], ["https://data.delijn.be/stops/103273", "https://data.delijn.be/stops/109986"], ["https://data.delijn.be/stops/205210", "https://data.delijn.be/stops/205713"], ["https://data.delijn.be/stops/406660", "https://data.delijn.be/stops/406670"], ["https://data.delijn.be/stops/204431", "https://data.delijn.be/stops/205431"], ["https://data.delijn.be/stops/505234", "https://data.delijn.be/stops/505236"], ["https://data.delijn.be/stops/408007", "https://data.delijn.be/stops/408149"], ["https://data.delijn.be/stops/505012", "https://data.delijn.be/stops/505345"], ["https://data.delijn.be/stops/209106", "https://data.delijn.be/stops/209779"], ["https://data.delijn.be/stops/202790", "https://data.delijn.be/stops/203789"], ["https://data.delijn.be/stops/109057", "https://data.delijn.be/stops/109064"], ["https://data.delijn.be/stops/201858", "https://data.delijn.be/stops/210033"], ["https://data.delijn.be/stops/107698", "https://data.delijn.be/stops/107699"], ["https://data.delijn.be/stops/105764", "https://data.delijn.be/stops/106754"], ["https://data.delijn.be/stops/101857", "https://data.delijn.be/stops/105558"], ["https://data.delijn.be/stops/205572", "https://data.delijn.be/stops/303395"], ["https://data.delijn.be/stops/102042", "https://data.delijn.be/stops/204142"], ["https://data.delijn.be/stops/407830", "https://data.delijn.be/stops/407834"], ["https://data.delijn.be/stops/503706", "https://data.delijn.be/stops/508764"], ["https://data.delijn.be/stops/109457", "https://data.delijn.be/stops/109793"], ["https://data.delijn.be/stops/505214", "https://data.delijn.be/stops/508842"], ["https://data.delijn.be/stops/101378", "https://data.delijn.be/stops/107303"], ["https://data.delijn.be/stops/402202", "https://data.delijn.be/stops/402203"], ["https://data.delijn.be/stops/208120", "https://data.delijn.be/stops/208237"], ["https://data.delijn.be/stops/506175", "https://data.delijn.be/stops/506183"], ["https://data.delijn.be/stops/207346", "https://data.delijn.be/stops/207372"], ["https://data.delijn.be/stops/302957", "https://data.delijn.be/stops/303442"], ["https://data.delijn.be/stops/503084", "https://data.delijn.be/stops/505198"], ["https://data.delijn.be/stops/202698", "https://data.delijn.be/stops/203699"], ["https://data.delijn.be/stops/406729", "https://data.delijn.be/stops/410037"], ["https://data.delijn.be/stops/400754", "https://data.delijn.be/stops/400855"], ["https://data.delijn.be/stops/502462", "https://data.delijn.be/stops/507388"], ["https://data.delijn.be/stops/104814", "https://data.delijn.be/stops/105369"], ["https://data.delijn.be/stops/206574", "https://data.delijn.be/stops/207574"], ["https://data.delijn.be/stops/204575", "https://data.delijn.be/stops/205575"], ["https://data.delijn.be/stops/200768", "https://data.delijn.be/stops/208298"], ["https://data.delijn.be/stops/306156", "https://data.delijn.be/stops/308637"], ["https://data.delijn.be/stops/400306", "https://data.delijn.be/stops/400307"], ["https://data.delijn.be/stops/101796", "https://data.delijn.be/stops/105928"], ["https://data.delijn.be/stops/403704", "https://data.delijn.be/stops/403728"], ["https://data.delijn.be/stops/405926", "https://data.delijn.be/stops/405965"], ["https://data.delijn.be/stops/208489", "https://data.delijn.be/stops/209488"], ["https://data.delijn.be/stops/300754", "https://data.delijn.be/stops/300773"], ["https://data.delijn.be/stops/501075", "https://data.delijn.be/stops/506066"], ["https://data.delijn.be/stops/300961", "https://data.delijn.be/stops/300962"], ["https://data.delijn.be/stops/400791", "https://data.delijn.be/stops/400792"], ["https://data.delijn.be/stops/200216", "https://data.delijn.be/stops/201214"], ["https://data.delijn.be/stops/400516", "https://data.delijn.be/stops/400519"], ["https://data.delijn.be/stops/301564", "https://data.delijn.be/stops/301567"], ["https://data.delijn.be/stops/102241", "https://data.delijn.be/stops/102243"], ["https://data.delijn.be/stops/303755", "https://data.delijn.be/stops/303762"], ["https://data.delijn.be/stops/503411", "https://data.delijn.be/stops/508411"], ["https://data.delijn.be/stops/504178", "https://data.delijn.be/stops/504179"], ["https://data.delijn.be/stops/304031", "https://data.delijn.be/stops/304913"], ["https://data.delijn.be/stops/206188", "https://data.delijn.be/stops/207955"], ["https://data.delijn.be/stops/302503", "https://data.delijn.be/stops/302718"], ["https://data.delijn.be/stops/400847", "https://data.delijn.be/stops/410393"], ["https://data.delijn.be/stops/501355", "https://data.delijn.be/stops/501521"], ["https://data.delijn.be/stops/204466", "https://data.delijn.be/stops/205474"], ["https://data.delijn.be/stops/202681", "https://data.delijn.be/stops/203680"], ["https://data.delijn.be/stops/302344", "https://data.delijn.be/stops/302353"], ["https://data.delijn.be/stops/202044", "https://data.delijn.be/stops/202394"], ["https://data.delijn.be/stops/106795", "https://data.delijn.be/stops/106866"], ["https://data.delijn.be/stops/300479", "https://data.delijn.be/stops/302092"], ["https://data.delijn.be/stops/301595", "https://data.delijn.be/stops/302604"], ["https://data.delijn.be/stops/502034", "https://data.delijn.be/stops/507048"], ["https://data.delijn.be/stops/106914", "https://data.delijn.be/stops/107251"], ["https://data.delijn.be/stops/106959", "https://data.delijn.be/stops/107271"], ["https://data.delijn.be/stops/104557", "https://data.delijn.be/stops/104560"], ["https://data.delijn.be/stops/302414", "https://data.delijn.be/stops/302418"], ["https://data.delijn.be/stops/400499", "https://data.delijn.be/stops/400907"], ["https://data.delijn.be/stops/503565", "https://data.delijn.be/stops/503572"], ["https://data.delijn.be/stops/104639", "https://data.delijn.be/stops/107970"], ["https://data.delijn.be/stops/302034", "https://data.delijn.be/stops/302035"], ["https://data.delijn.be/stops/102962", "https://data.delijn.be/stops/109254"], ["https://data.delijn.be/stops/204193", "https://data.delijn.be/stops/205193"], ["https://data.delijn.be/stops/302725", "https://data.delijn.be/stops/308597"], ["https://data.delijn.be/stops/304345", "https://data.delijn.be/stops/304358"], ["https://data.delijn.be/stops/300332", "https://data.delijn.be/stops/300333"], ["https://data.delijn.be/stops/102748", "https://data.delijn.be/stops/107797"], ["https://data.delijn.be/stops/304705", "https://data.delijn.be/stops/308957"], ["https://data.delijn.be/stops/206020", "https://data.delijn.be/stops/207016"], ["https://data.delijn.be/stops/101815", "https://data.delijn.be/stops/103075"], ["https://data.delijn.be/stops/105152", "https://data.delijn.be/stops/105177"], ["https://data.delijn.be/stops/301855", "https://data.delijn.be/stops/302097"], ["https://data.delijn.be/stops/305951", "https://data.delijn.be/stops/308140"], ["https://data.delijn.be/stops/300378", "https://data.delijn.be/stops/300384"], ["https://data.delijn.be/stops/204022", "https://data.delijn.be/stops/206285"], ["https://data.delijn.be/stops/201134", "https://data.delijn.be/stops/201231"], ["https://data.delijn.be/stops/208967", "https://data.delijn.be/stops/209218"], ["https://data.delijn.be/stops/205145", "https://data.delijn.be/stops/205595"], ["https://data.delijn.be/stops/407770", "https://data.delijn.be/stops/307453"], ["https://data.delijn.be/stops/509194", "https://data.delijn.be/stops/509716"], ["https://data.delijn.be/stops/208469", "https://data.delijn.be/stops/209754"], ["https://data.delijn.be/stops/403969", "https://data.delijn.be/stops/403974"], ["https://data.delijn.be/stops/200232", "https://data.delijn.be/stops/210051"], ["https://data.delijn.be/stops/406464", "https://data.delijn.be/stops/406489"], ["https://data.delijn.be/stops/305013", "https://data.delijn.be/stops/305021"], ["https://data.delijn.be/stops/303934", "https://data.delijn.be/stops/304574"], ["https://data.delijn.be/stops/101756", "https://data.delijn.be/stops/102181"], ["https://data.delijn.be/stops/209538", "https://data.delijn.be/stops/209693"], ["https://data.delijn.be/stops/408214", "https://data.delijn.be/stops/408275"], ["https://data.delijn.be/stops/505368", "https://data.delijn.be/stops/509049"], ["https://data.delijn.be/stops/403103", "https://data.delijn.be/stops/403116"], ["https://data.delijn.be/stops/204426", "https://data.delijn.be/stops/205441"], ["https://data.delijn.be/stops/504289", "https://data.delijn.be/stops/509282"], ["https://data.delijn.be/stops/104075", "https://data.delijn.be/stops/104370"], ["https://data.delijn.be/stops/202902", "https://data.delijn.be/stops/203903"], ["https://data.delijn.be/stops/204340", "https://data.delijn.be/stops/214008"], ["https://data.delijn.be/stops/505167", "https://data.delijn.be/stops/509500"], ["https://data.delijn.be/stops/206198", "https://data.delijn.be/stops/207206"], ["https://data.delijn.be/stops/203275", "https://data.delijn.be/stops/203422"], ["https://data.delijn.be/stops/504238", "https://data.delijn.be/stops/505384"], ["https://data.delijn.be/stops/403251", "https://data.delijn.be/stops/404146"], ["https://data.delijn.be/stops/105646", "https://data.delijn.be/stops/105648"], ["https://data.delijn.be/stops/504463", "https://data.delijn.be/stops/509465"], ["https://data.delijn.be/stops/201152", "https://data.delijn.be/stops/201175"], ["https://data.delijn.be/stops/401029", "https://data.delijn.be/stops/401030"], ["https://data.delijn.be/stops/400740", "https://data.delijn.be/stops/400741"], ["https://data.delijn.be/stops/507418", "https://data.delijn.be/stops/507419"], ["https://data.delijn.be/stops/505806", "https://data.delijn.be/stops/508595"], ["https://data.delijn.be/stops/206565", "https://data.delijn.be/stops/207566"], ["https://data.delijn.be/stops/305120", "https://data.delijn.be/stops/305121"], ["https://data.delijn.be/stops/101261", "https://data.delijn.be/stops/102887"], ["https://data.delijn.be/stops/202008", "https://data.delijn.be/stops/202009"], ["https://data.delijn.be/stops/503503", "https://data.delijn.be/stops/508872"], ["https://data.delijn.be/stops/108311", "https://data.delijn.be/stops/108752"], ["https://data.delijn.be/stops/302715", "https://data.delijn.be/stops/302784"], ["https://data.delijn.be/stops/202673", "https://data.delijn.be/stops/203673"], ["https://data.delijn.be/stops/101787", "https://data.delijn.be/stops/109192"], ["https://data.delijn.be/stops/401093", "https://data.delijn.be/stops/409814"], ["https://data.delijn.be/stops/304646", "https://data.delijn.be/stops/304648"], ["https://data.delijn.be/stops/503336", "https://data.delijn.be/stops/505629"], ["https://data.delijn.be/stops/304744", "https://data.delijn.be/stops/305880"], ["https://data.delijn.be/stops/102957", "https://data.delijn.be/stops/104001"], ["https://data.delijn.be/stops/308794", "https://data.delijn.be/stops/308795"], ["https://data.delijn.be/stops/504061", "https://data.delijn.be/stops/504490"], ["https://data.delijn.be/stops/401483", "https://data.delijn.be/stops/401883"], ["https://data.delijn.be/stops/305433", "https://data.delijn.be/stops/305434"], ["https://data.delijn.be/stops/102159", "https://data.delijn.be/stops/107613"], ["https://data.delijn.be/stops/506101", "https://data.delijn.be/stops/590330"], ["https://data.delijn.be/stops/504475", "https://data.delijn.be/stops/504716"], ["https://data.delijn.be/stops/502067", "https://data.delijn.be/stops/507067"], ["https://data.delijn.be/stops/404123", "https://data.delijn.be/stops/404131"], ["https://data.delijn.be/stops/206604", "https://data.delijn.be/stops/206741"], ["https://data.delijn.be/stops/108785", "https://data.delijn.be/stops/108786"], ["https://data.delijn.be/stops/102219", "https://data.delijn.be/stops/102222"], ["https://data.delijn.be/stops/101397", "https://data.delijn.be/stops/101554"], ["https://data.delijn.be/stops/502607", "https://data.delijn.be/stops/507608"], ["https://data.delijn.be/stops/304432", "https://data.delijn.be/stops/307698"], ["https://data.delijn.be/stops/408233", "https://data.delijn.be/stops/408249"], ["https://data.delijn.be/stops/502616", "https://data.delijn.be/stops/507040"], ["https://data.delijn.be/stops/106208", "https://data.delijn.be/stops/109904"], ["https://data.delijn.be/stops/103935", "https://data.delijn.be/stops/103940"], ["https://data.delijn.be/stops/503612", "https://data.delijn.be/stops/508607"], ["https://data.delijn.be/stops/502174", "https://data.delijn.be/stops/502180"], ["https://data.delijn.be/stops/302216", "https://data.delijn.be/stops/302233"], ["https://data.delijn.be/stops/301369", "https://data.delijn.be/stops/304695"], ["https://data.delijn.be/stops/402419", "https://data.delijn.be/stops/404469"], ["https://data.delijn.be/stops/307142", "https://data.delijn.be/stops/307248"], ["https://data.delijn.be/stops/305380", "https://data.delijn.be/stops/305385"], ["https://data.delijn.be/stops/201561", "https://data.delijn.be/stops/204997"], ["https://data.delijn.be/stops/503025", "https://data.delijn.be/stops/503677"], ["https://data.delijn.be/stops/208057", "https://data.delijn.be/stops/217004"], ["https://data.delijn.be/stops/307547", "https://data.delijn.be/stops/307578"], ["https://data.delijn.be/stops/403024", "https://data.delijn.be/stops/409334"], ["https://data.delijn.be/stops/208474", "https://data.delijn.be/stops/209474"], ["https://data.delijn.be/stops/206415", "https://data.delijn.be/stops/206963"], ["https://data.delijn.be/stops/401217", "https://data.delijn.be/stops/401388"], ["https://data.delijn.be/stops/503732", "https://data.delijn.be/stops/503733"], ["https://data.delijn.be/stops/410136", "https://data.delijn.be/stops/410138"], ["https://data.delijn.be/stops/407631", "https://data.delijn.be/stops/407633"], ["https://data.delijn.be/stops/104559", "https://data.delijn.be/stops/107486"], ["https://data.delijn.be/stops/400477", "https://data.delijn.be/stops/404674"], ["https://data.delijn.be/stops/202205", "https://data.delijn.be/stops/203768"], ["https://data.delijn.be/stops/305070", "https://data.delijn.be/stops/306952"], ["https://data.delijn.be/stops/206029", "https://data.delijn.be/stops/206031"], ["https://data.delijn.be/stops/500126", "https://data.delijn.be/stops/507813"], ["https://data.delijn.be/stops/101854", "https://data.delijn.be/stops/104839"], ["https://data.delijn.be/stops/300715", "https://data.delijn.be/stops/300734"], ["https://data.delijn.be/stops/300461", "https://data.delijn.be/stops/308298"], ["https://data.delijn.be/stops/202181", "https://data.delijn.be/stops/204598"], ["https://data.delijn.be/stops/206701", "https://data.delijn.be/stops/206978"], ["https://data.delijn.be/stops/101581", "https://data.delijn.be/stops/105728"], ["https://data.delijn.be/stops/208222", "https://data.delijn.be/stops/209218"], ["https://data.delijn.be/stops/502548", "https://data.delijn.be/stops/505022"], ["https://data.delijn.be/stops/406157", "https://data.delijn.be/stops/406224"], ["https://data.delijn.be/stops/208697", "https://data.delijn.be/stops/208698"], ["https://data.delijn.be/stops/204077", "https://data.delijn.be/stops/205066"], ["https://data.delijn.be/stops/405258", "https://data.delijn.be/stops/405259"], ["https://data.delijn.be/stops/306188", "https://data.delijn.be/stops/306293"], ["https://data.delijn.be/stops/202686", "https://data.delijn.be/stops/203041"], ["https://data.delijn.be/stops/301282", "https://data.delijn.be/stops/301907"], ["https://data.delijn.be/stops/105419", "https://data.delijn.be/stops/105421"], ["https://data.delijn.be/stops/503041", "https://data.delijn.be/stops/508013"], ["https://data.delijn.be/stops/206541", "https://data.delijn.be/stops/207540"], ["https://data.delijn.be/stops/204031", "https://data.delijn.be/stops/205437"], ["https://data.delijn.be/stops/201799", "https://data.delijn.be/stops/202124"], ["https://data.delijn.be/stops/400832", "https://data.delijn.be/stops/403571"], ["https://data.delijn.be/stops/405311", "https://data.delijn.be/stops/405407"], ["https://data.delijn.be/stops/504621", "https://data.delijn.be/stops/509621"], ["https://data.delijn.be/stops/404071", "https://data.delijn.be/stops/409282"], ["https://data.delijn.be/stops/107557", "https://data.delijn.be/stops/109440"], ["https://data.delijn.be/stops/405586", "https://data.delijn.be/stops/408936"], ["https://data.delijn.be/stops/102157", "https://data.delijn.be/stops/102713"], ["https://data.delijn.be/stops/302017", "https://data.delijn.be/stops/302032"], ["https://data.delijn.be/stops/101605", "https://data.delijn.be/stops/103515"], ["https://data.delijn.be/stops/305991", "https://data.delijn.be/stops/307234"], ["https://data.delijn.be/stops/504336", "https://data.delijn.be/stops/509339"], ["https://data.delijn.be/stops/300050", "https://data.delijn.be/stops/300051"], ["https://data.delijn.be/stops/301415", "https://data.delijn.be/stops/301420"], ["https://data.delijn.be/stops/301165", "https://data.delijn.be/stops/302875"], ["https://data.delijn.be/stops/105333", "https://data.delijn.be/stops/105336"], ["https://data.delijn.be/stops/205064", "https://data.delijn.be/stops/205342"], ["https://data.delijn.be/stops/408705", "https://data.delijn.be/stops/408768"], ["https://data.delijn.be/stops/206333", "https://data.delijn.be/stops/207707"], ["https://data.delijn.be/stops/107062", "https://data.delijn.be/stops/108228"], ["https://data.delijn.be/stops/101918", "https://data.delijn.be/stops/106997"], ["https://data.delijn.be/stops/502514", "https://data.delijn.be/stops/507516"], ["https://data.delijn.be/stops/400303", "https://data.delijn.be/stops/400441"], ["https://data.delijn.be/stops/106327", "https://data.delijn.be/stops/109390"], ["https://data.delijn.be/stops/108043", "https://data.delijn.be/stops/108045"], ["https://data.delijn.be/stops/106647", "https://data.delijn.be/stops/106649"], ["https://data.delijn.be/stops/504841", "https://data.delijn.be/stops/508256"], ["https://data.delijn.be/stops/101277", "https://data.delijn.be/stops/205489"], ["https://data.delijn.be/stops/501435", "https://data.delijn.be/stops/505712"], ["https://data.delijn.be/stops/200579", "https://data.delijn.be/stops/201579"], ["https://data.delijn.be/stops/308475", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/400724", "https://data.delijn.be/stops/400725"], ["https://data.delijn.be/stops/201815", "https://data.delijn.be/stops/209253"], ["https://data.delijn.be/stops/108872", "https://data.delijn.be/stops/109511"], ["https://data.delijn.be/stops/102691", "https://data.delijn.be/stops/105020"], ["https://data.delijn.be/stops/503779", "https://data.delijn.be/stops/505158"], ["https://data.delijn.be/stops/101854", "https://data.delijn.be/stops/108985"], ["https://data.delijn.be/stops/504612", "https://data.delijn.be/stops/509460"], ["https://data.delijn.be/stops/502093", "https://data.delijn.be/stops/502818"], ["https://data.delijn.be/stops/108069", "https://data.delijn.be/stops/108461"], ["https://data.delijn.be/stops/404113", "https://data.delijn.be/stops/404197"], ["https://data.delijn.be/stops/303400", "https://data.delijn.be/stops/304553"], ["https://data.delijn.be/stops/106040", "https://data.delijn.be/stops/106045"], ["https://data.delijn.be/stops/106050", "https://data.delijn.be/stops/108060"], ["https://data.delijn.be/stops/405440", "https://data.delijn.be/stops/302855"], ["https://data.delijn.be/stops/107286", "https://data.delijn.be/stops/107402"], ["https://data.delijn.be/stops/404563", "https://data.delijn.be/stops/406743"], ["https://data.delijn.be/stops/508902", "https://data.delijn.be/stops/508906"], ["https://data.delijn.be/stops/101002", "https://data.delijn.be/stops/107675"], ["https://data.delijn.be/stops/504637", "https://data.delijn.be/stops/505342"], ["https://data.delijn.be/stops/206311", "https://data.delijn.be/stops/207310"], ["https://data.delijn.be/stops/300435", "https://data.delijn.be/stops/307093"], ["https://data.delijn.be/stops/408184", "https://data.delijn.be/stops/408185"], ["https://data.delijn.be/stops/206774", "https://data.delijn.be/stops/209094"], ["https://data.delijn.be/stops/303157", "https://data.delijn.be/stops/303210"], ["https://data.delijn.be/stops/208268", "https://data.delijn.be/stops/209269"], ["https://data.delijn.be/stops/105119", "https://data.delijn.be/stops/105832"], ["https://data.delijn.be/stops/105926", "https://data.delijn.be/stops/106961"], ["https://data.delijn.be/stops/105669", "https://data.delijn.be/stops/105674"], ["https://data.delijn.be/stops/207068", "https://data.delijn.be/stops/207074"], ["https://data.delijn.be/stops/209345", "https://data.delijn.be/stops/218028"], ["https://data.delijn.be/stops/504090", "https://data.delijn.be/stops/504563"], ["https://data.delijn.be/stops/300760", "https://data.delijn.be/stops/300776"], ["https://data.delijn.be/stops/408752", "https://data.delijn.be/stops/408753"], ["https://data.delijn.be/stops/408176", "https://data.delijn.be/stops/408177"], ["https://data.delijn.be/stops/301638", "https://data.delijn.be/stops/301639"], ["https://data.delijn.be/stops/201862", "https://data.delijn.be/stops/202667"], ["https://data.delijn.be/stops/403701", "https://data.delijn.be/stops/403764"], ["https://data.delijn.be/stops/109203", "https://data.delijn.be/stops/109209"], ["https://data.delijn.be/stops/301354", "https://data.delijn.be/stops/304531"], ["https://data.delijn.be/stops/505174", "https://data.delijn.be/stops/509162"], ["https://data.delijn.be/stops/301241", "https://data.delijn.be/stops/308559"], ["https://data.delijn.be/stops/504325", "https://data.delijn.be/stops/509331"], ["https://data.delijn.be/stops/400922", "https://data.delijn.be/stops/400946"], ["https://data.delijn.be/stops/305651", "https://data.delijn.be/stops/308820"], ["https://data.delijn.be/stops/504464", "https://data.delijn.be/stops/504574"], ["https://data.delijn.be/stops/104510", "https://data.delijn.be/stops/105125"], ["https://data.delijn.be/stops/504060", "https://data.delijn.be/stops/509062"], ["https://data.delijn.be/stops/502665", "https://data.delijn.be/stops/507272"], ["https://data.delijn.be/stops/101591", "https://data.delijn.be/stops/106049"], ["https://data.delijn.be/stops/101725", "https://data.delijn.be/stops/103377"], ["https://data.delijn.be/stops/108301", "https://data.delijn.be/stops/109304"], ["https://data.delijn.be/stops/405394", "https://data.delijn.be/stops/409246"], ["https://data.delijn.be/stops/402378", "https://data.delijn.be/stops/402379"], ["https://data.delijn.be/stops/402510", "https://data.delijn.be/stops/402511"], ["https://data.delijn.be/stops/500602", "https://data.delijn.be/stops/505398"], ["https://data.delijn.be/stops/503311", "https://data.delijn.be/stops/504859"], ["https://data.delijn.be/stops/303541", "https://data.delijn.be/stops/305845"], ["https://data.delijn.be/stops/205696", "https://data.delijn.be/stops/205716"], ["https://data.delijn.be/stops/408604", "https://data.delijn.be/stops/408771"], ["https://data.delijn.be/stops/200420", "https://data.delijn.be/stops/201420"], ["https://data.delijn.be/stops/106139", "https://data.delijn.be/stops/106140"], ["https://data.delijn.be/stops/308113", "https://data.delijn.be/stops/308114"], ["https://data.delijn.be/stops/502417", "https://data.delijn.be/stops/507417"], ["https://data.delijn.be/stops/301531", "https://data.delijn.be/stops/304960"], ["https://data.delijn.be/stops/206451", "https://data.delijn.be/stops/206824"], ["https://data.delijn.be/stops/501250", "https://data.delijn.be/stops/506258"], ["https://data.delijn.be/stops/405580", "https://data.delijn.be/stops/405581"], ["https://data.delijn.be/stops/202821", "https://data.delijn.be/stops/203821"], ["https://data.delijn.be/stops/203840", "https://data.delijn.be/stops/208277"], ["https://data.delijn.be/stops/104601", "https://data.delijn.be/stops/105397"], ["https://data.delijn.be/stops/301662", "https://data.delijn.be/stops/302106"], ["https://data.delijn.be/stops/408134", "https://data.delijn.be/stops/408135"], ["https://data.delijn.be/stops/201516", "https://data.delijn.be/stops/201618"], ["https://data.delijn.be/stops/209193", "https://data.delijn.be/stops/209368"], ["https://data.delijn.be/stops/104128", "https://data.delijn.be/stops/107525"], ["https://data.delijn.be/stops/200774", "https://data.delijn.be/stops/208385"], ["https://data.delijn.be/stops/200815", "https://data.delijn.be/stops/201120"], ["https://data.delijn.be/stops/202343", "https://data.delijn.be/stops/202440"], ["https://data.delijn.be/stops/302603", "https://data.delijn.be/stops/302605"], ["https://data.delijn.be/stops/302229", "https://data.delijn.be/stops/302823"], ["https://data.delijn.be/stops/108111", "https://data.delijn.be/stops/108113"], ["https://data.delijn.be/stops/301009", "https://data.delijn.be/stops/301012"], ["https://data.delijn.be/stops/505633", "https://data.delijn.be/stops/508340"], ["https://data.delijn.be/stops/206336", "https://data.delijn.be/stops/206361"], ["https://data.delijn.be/stops/403441", "https://data.delijn.be/stops/410279"], ["https://data.delijn.be/stops/402972", "https://data.delijn.be/stops/404849"], ["https://data.delijn.be/stops/206662", "https://data.delijn.be/stops/209671"], ["https://data.delijn.be/stops/103160", "https://data.delijn.be/stops/406774"], ["https://data.delijn.be/stops/106606", "https://data.delijn.be/stops/107122"], ["https://data.delijn.be/stops/106301", "https://data.delijn.be/stops/109908"], ["https://data.delijn.be/stops/504557", "https://data.delijn.be/stops/505412"], ["https://data.delijn.be/stops/508027", "https://data.delijn.be/stops/508671"], ["https://data.delijn.be/stops/503180", "https://data.delijn.be/stops/504830"], ["https://data.delijn.be/stops/202431", "https://data.delijn.be/stops/203432"], ["https://data.delijn.be/stops/300709", "https://data.delijn.be/stops/300715"], ["https://data.delijn.be/stops/207770", "https://data.delijn.be/stops/207771"], ["https://data.delijn.be/stops/504398", "https://data.delijn.be/stops/504403"], ["https://data.delijn.be/stops/404286", "https://data.delijn.be/stops/409426"], ["https://data.delijn.be/stops/305594", "https://data.delijn.be/stops/305599"], ["https://data.delijn.be/stops/403468", "https://data.delijn.be/stops/410061"], ["https://data.delijn.be/stops/104465", "https://data.delijn.be/stops/104470"], ["https://data.delijn.be/stops/202661", "https://data.delijn.be/stops/203661"], ["https://data.delijn.be/stops/401041", "https://data.delijn.be/stops/401121"], ["https://data.delijn.be/stops/406112", "https://data.delijn.be/stops/406117"], ["https://data.delijn.be/stops/300961", "https://data.delijn.be/stops/302244"], ["https://data.delijn.be/stops/504979", "https://data.delijn.be/stops/505290"], ["https://data.delijn.be/stops/409424", "https://data.delijn.be/stops/409425"], ["https://data.delijn.be/stops/305377", "https://data.delijn.be/stops/305378"], ["https://data.delijn.be/stops/209517", "https://data.delijn.be/stops/209701"], ["https://data.delijn.be/stops/104781", "https://data.delijn.be/stops/104783"], ["https://data.delijn.be/stops/101472", "https://data.delijn.be/stops/109602"], ["https://data.delijn.be/stops/103528", "https://data.delijn.be/stops/103532"], ["https://data.delijn.be/stops/405442", "https://data.delijn.be/stops/408670"], ["https://data.delijn.be/stops/208453", "https://data.delijn.be/stops/209709"], ["https://data.delijn.be/stops/400264", "https://data.delijn.be/stops/400955"], ["https://data.delijn.be/stops/502422", "https://data.delijn.be/stops/507422"], ["https://data.delijn.be/stops/404081", "https://data.delijn.be/stops/404089"], ["https://data.delijn.be/stops/203856", "https://data.delijn.be/stops/208723"], ["https://data.delijn.be/stops/501042", "https://data.delijn.be/stops/506041"], ["https://data.delijn.be/stops/206038", "https://data.delijn.be/stops/207038"], ["https://data.delijn.be/stops/403622", "https://data.delijn.be/stops/403631"], ["https://data.delijn.be/stops/208151", "https://data.delijn.be/stops/209147"], ["https://data.delijn.be/stops/504099", "https://data.delijn.be/stops/509099"], ["https://data.delijn.be/stops/403922", "https://data.delijn.be/stops/405945"], ["https://data.delijn.be/stops/301648", "https://data.delijn.be/stops/301892"], ["https://data.delijn.be/stops/208168", "https://data.delijn.be/stops/209168"], ["https://data.delijn.be/stops/210060", "https://data.delijn.be/stops/211061"], ["https://data.delijn.be/stops/102415", "https://data.delijn.be/stops/105565"], ["https://data.delijn.be/stops/301450", "https://data.delijn.be/stops/301456"], ["https://data.delijn.be/stops/304070", "https://data.delijn.be/stops/304114"], ["https://data.delijn.be/stops/405936", "https://data.delijn.be/stops/405937"], ["https://data.delijn.be/stops/401009", "https://data.delijn.be/stops/403796"], ["https://data.delijn.be/stops/408441", "https://data.delijn.be/stops/408442"], ["https://data.delijn.be/stops/406218", "https://data.delijn.be/stops/409407"], ["https://data.delijn.be/stops/303659", "https://data.delijn.be/stops/307688"], ["https://data.delijn.be/stops/505134", "https://data.delijn.be/stops/505296"], ["https://data.delijn.be/stops/108300", "https://data.delijn.be/stops/108315"], ["https://data.delijn.be/stops/105466", "https://data.delijn.be/stops/105666"], ["https://data.delijn.be/stops/505568", "https://data.delijn.be/stops/508792"], ["https://data.delijn.be/stops/106794", "https://data.delijn.be/stops/106796"], ["https://data.delijn.be/stops/306863", "https://data.delijn.be/stops/307354"], ["https://data.delijn.be/stops/406053", "https://data.delijn.be/stops/409278"], ["https://data.delijn.be/stops/300015", "https://data.delijn.be/stops/300017"], ["https://data.delijn.be/stops/400765", "https://data.delijn.be/stops/400772"], ["https://data.delijn.be/stops/401045", "https://data.delijn.be/stops/401053"], ["https://data.delijn.be/stops/105160", "https://data.delijn.be/stops/105340"], ["https://data.delijn.be/stops/503007", "https://data.delijn.be/stops/508007"], ["https://data.delijn.be/stops/300156", "https://data.delijn.be/stops/300158"], ["https://data.delijn.be/stops/208078", "https://data.delijn.be/stops/208520"], ["https://data.delijn.be/stops/300208", "https://data.delijn.be/stops/300230"], ["https://data.delijn.be/stops/202289", "https://data.delijn.be/stops/203294"], ["https://data.delijn.be/stops/205971", "https://data.delijn.be/stops/205972"], ["https://data.delijn.be/stops/201910", "https://data.delijn.be/stops/202528"], ["https://data.delijn.be/stops/102187", "https://data.delijn.be/stops/102323"], ["https://data.delijn.be/stops/104928", "https://data.delijn.be/stops/104934"], ["https://data.delijn.be/stops/206305", "https://data.delijn.be/stops/207305"], ["https://data.delijn.be/stops/500957", "https://data.delijn.be/stops/500958"], ["https://data.delijn.be/stops/104561", "https://data.delijn.be/stops/104562"], ["https://data.delijn.be/stops/501222", "https://data.delijn.be/stops/506211"], ["https://data.delijn.be/stops/401964", "https://data.delijn.be/stops/401979"], ["https://data.delijn.be/stops/402936", "https://data.delijn.be/stops/403962"], ["https://data.delijn.be/stops/103317", "https://data.delijn.be/stops/103747"], ["https://data.delijn.be/stops/305697", "https://data.delijn.be/stops/305706"], ["https://data.delijn.be/stops/108488", "https://data.delijn.be/stops/306599"], ["https://data.delijn.be/stops/207438", "https://data.delijn.be/stops/209685"], ["https://data.delijn.be/stops/502440", "https://data.delijn.be/stops/507440"], ["https://data.delijn.be/stops/505088", "https://data.delijn.be/stops/507240"], ["https://data.delijn.be/stops/408077", "https://data.delijn.be/stops/408080"], ["https://data.delijn.be/stops/102401", "https://data.delijn.be/stops/103101"], ["https://data.delijn.be/stops/404871", "https://data.delijn.be/stops/405545"], ["https://data.delijn.be/stops/503828", "https://data.delijn.be/stops/505969"], ["https://data.delijn.be/stops/405901", "https://data.delijn.be/stops/405989"], ["https://data.delijn.be/stops/303475", "https://data.delijn.be/stops/303499"], ["https://data.delijn.be/stops/101320", "https://data.delijn.be/stops/102030"], ["https://data.delijn.be/stops/203471", "https://data.delijn.be/stops/203472"], ["https://data.delijn.be/stops/206307", "https://data.delijn.be/stops/207391"], ["https://data.delijn.be/stops/202056", "https://data.delijn.be/stops/203056"], ["https://data.delijn.be/stops/200514", "https://data.delijn.be/stops/201151"], ["https://data.delijn.be/stops/203018", "https://data.delijn.be/stops/203655"], ["https://data.delijn.be/stops/206880", "https://data.delijn.be/stops/207731"], ["https://data.delijn.be/stops/108566", "https://data.delijn.be/stops/108989"], ["https://data.delijn.be/stops/202499", "https://data.delijn.be/stops/204100"], ["https://data.delijn.be/stops/408316", "https://data.delijn.be/stops/408323"], ["https://data.delijn.be/stops/302846", "https://data.delijn.be/stops/303325"], ["https://data.delijn.be/stops/408577", "https://data.delijn.be/stops/408639"], ["https://data.delijn.be/stops/301606", "https://data.delijn.be/stops/304518"], ["https://data.delijn.be/stops/302763", "https://data.delijn.be/stops/302784"], ["https://data.delijn.be/stops/205412", "https://data.delijn.be/stops/205427"], ["https://data.delijn.be/stops/409278", "https://data.delijn.be/stops/409303"], ["https://data.delijn.be/stops/202612", "https://data.delijn.be/stops/203610"], ["https://data.delijn.be/stops/503110", "https://data.delijn.be/stops/508110"], ["https://data.delijn.be/stops/403459", "https://data.delijn.be/stops/407464"], ["https://data.delijn.be/stops/304578", "https://data.delijn.be/stops/304654"], ["https://data.delijn.be/stops/101305", "https://data.delijn.be/stops/102926"], ["https://data.delijn.be/stops/502008", "https://data.delijn.be/stops/507008"], ["https://data.delijn.be/stops/503292", "https://data.delijn.be/stops/505283"], ["https://data.delijn.be/stops/106518", "https://data.delijn.be/stops/107099"], ["https://data.delijn.be/stops/402499", "https://data.delijn.be/stops/402501"], ["https://data.delijn.be/stops/104813", "https://data.delijn.be/stops/105163"], ["https://data.delijn.be/stops/503799", "https://data.delijn.be/stops/503800"], ["https://data.delijn.be/stops/507384", "https://data.delijn.be/stops/507398"], ["https://data.delijn.be/stops/105440", "https://data.delijn.be/stops/105715"], ["https://data.delijn.be/stops/409264", "https://data.delijn.be/stops/409285"], ["https://data.delijn.be/stops/108847", "https://data.delijn.be/stops/108862"], ["https://data.delijn.be/stops/109849", "https://data.delijn.be/stops/109850"], ["https://data.delijn.be/stops/400217", "https://data.delijn.be/stops/400241"], ["https://data.delijn.be/stops/400829", "https://data.delijn.be/stops/400883"], ["https://data.delijn.be/stops/206878", "https://data.delijn.be/stops/206879"], ["https://data.delijn.be/stops/208574", "https://data.delijn.be/stops/307311"], ["https://data.delijn.be/stops/201566", "https://data.delijn.be/stops/201680"], ["https://data.delijn.be/stops/503887", "https://data.delijn.be/stops/505158"], ["https://data.delijn.be/stops/400790", "https://data.delijn.be/stops/409613"], ["https://data.delijn.be/stops/103700", "https://data.delijn.be/stops/103701"], ["https://data.delijn.be/stops/300417", "https://data.delijn.be/stops/300418"], ["https://data.delijn.be/stops/103613", "https://data.delijn.be/stops/103614"], ["https://data.delijn.be/stops/105058", "https://data.delijn.be/stops/105059"], ["https://data.delijn.be/stops/105429", "https://data.delijn.be/stops/105433"], ["https://data.delijn.be/stops/502256", "https://data.delijn.be/stops/502703"], ["https://data.delijn.be/stops/207313", "https://data.delijn.be/stops/207314"], ["https://data.delijn.be/stops/203683", "https://data.delijn.be/stops/203728"], ["https://data.delijn.be/stops/306695", "https://data.delijn.be/stops/308783"], ["https://data.delijn.be/stops/501461", "https://data.delijn.be/stops/501533"], ["https://data.delijn.be/stops/201454", "https://data.delijn.be/stops/201553"], ["https://data.delijn.be/stops/404171", "https://data.delijn.be/stops/404189"], ["https://data.delijn.be/stops/206700", "https://data.delijn.be/stops/207955"], ["https://data.delijn.be/stops/304057", "https://data.delijn.be/stops/304079"], ["https://data.delijn.be/stops/200355", "https://data.delijn.be/stops/201388"], ["https://data.delijn.be/stops/405169", "https://data.delijn.be/stops/405170"], ["https://data.delijn.be/stops/106241", "https://data.delijn.be/stops/107234"], ["https://data.delijn.be/stops/404636", "https://data.delijn.be/stops/406959"], ["https://data.delijn.be/stops/400079", "https://data.delijn.be/stops/405130"], ["https://data.delijn.be/stops/200636", "https://data.delijn.be/stops/201940"], ["https://data.delijn.be/stops/202636", "https://data.delijn.be/stops/203635"], ["https://data.delijn.be/stops/204061", "https://data.delijn.be/stops/205323"], ["https://data.delijn.be/stops/503785", "https://data.delijn.be/stops/508785"], ["https://data.delijn.be/stops/504355", "https://data.delijn.be/stops/509355"], ["https://data.delijn.be/stops/109082", "https://data.delijn.be/stops/109311"], ["https://data.delijn.be/stops/108401", "https://data.delijn.be/stops/302548"], ["https://data.delijn.be/stops/407638", "https://data.delijn.be/stops/409249"], ["https://data.delijn.be/stops/400770", "https://data.delijn.be/stops/400771"], ["https://data.delijn.be/stops/200051", "https://data.delijn.be/stops/201892"], ["https://data.delijn.be/stops/302533", "https://data.delijn.be/stops/308617"], ["https://data.delijn.be/stops/208790", "https://data.delijn.be/stops/209362"], ["https://data.delijn.be/stops/300328", "https://data.delijn.be/stops/300334"], ["https://data.delijn.be/stops/104465", "https://data.delijn.be/stops/104655"], ["https://data.delijn.be/stops/509282", "https://data.delijn.be/stops/509285"], ["https://data.delijn.be/stops/302490", "https://data.delijn.be/stops/302501"], ["https://data.delijn.be/stops/400484", "https://data.delijn.be/stops/400485"], ["https://data.delijn.be/stops/302061", "https://data.delijn.be/stops/302276"], ["https://data.delijn.be/stops/300025", "https://data.delijn.be/stops/308638"], ["https://data.delijn.be/stops/206697", "https://data.delijn.be/stops/207697"], ["https://data.delijn.be/stops/103023", "https://data.delijn.be/stops/108636"], ["https://data.delijn.be/stops/204048", "https://data.delijn.be/stops/204049"], ["https://data.delijn.be/stops/403209", "https://data.delijn.be/stops/403408"], ["https://data.delijn.be/stops/304410", "https://data.delijn.be/stops/307397"], ["https://data.delijn.be/stops/300057", "https://data.delijn.be/stops/307734"], ["https://data.delijn.be/stops/407567", "https://data.delijn.be/stops/407901"], ["https://data.delijn.be/stops/202427", "https://data.delijn.be/stops/203462"], ["https://data.delijn.be/stops/301377", "https://data.delijn.be/stops/301378"], ["https://data.delijn.be/stops/501393", "https://data.delijn.be/stops/507249"], ["https://data.delijn.be/stops/305458", "https://data.delijn.be/stops/308109"], ["https://data.delijn.be/stops/302524", "https://data.delijn.be/stops/308886"], ["https://data.delijn.be/stops/508109", "https://data.delijn.be/stops/508562"], ["https://data.delijn.be/stops/209603", "https://data.delijn.be/stops/307596"], ["https://data.delijn.be/stops/106134", "https://data.delijn.be/stops/106180"], ["https://data.delijn.be/stops/302800", "https://data.delijn.be/stops/302801"], ["https://data.delijn.be/stops/405025", "https://data.delijn.be/stops/405106"], ["https://data.delijn.be/stops/404502", "https://data.delijn.be/stops/404547"], ["https://data.delijn.be/stops/300307", "https://data.delijn.be/stops/306270"], ["https://data.delijn.be/stops/501118", "https://data.delijn.be/stops/506209"], ["https://data.delijn.be/stops/101227", "https://data.delijn.be/stops/101228"], ["https://data.delijn.be/stops/505658", "https://data.delijn.be/stops/505761"], ["https://data.delijn.be/stops/501640", "https://data.delijn.be/stops/506671"], ["https://data.delijn.be/stops/501327", "https://data.delijn.be/stops/501565"], ["https://data.delijn.be/stops/504945", "https://data.delijn.be/stops/507191"], ["https://data.delijn.be/stops/101077", "https://data.delijn.be/stops/107153"], ["https://data.delijn.be/stops/103651", "https://data.delijn.be/stops/104405"], ["https://data.delijn.be/stops/301219", "https://data.delijn.be/stops/306715"], ["https://data.delijn.be/stops/201930", "https://data.delijn.be/stops/203471"], ["https://data.delijn.be/stops/405473", "https://data.delijn.be/stops/406687"], ["https://data.delijn.be/stops/103604", "https://data.delijn.be/stops/108922"], ["https://data.delijn.be/stops/406628", "https://data.delijn.be/stops/406642"], ["https://data.delijn.be/stops/409580", "https://data.delijn.be/stops/409587"], ["https://data.delijn.be/stops/206218", "https://data.delijn.be/stops/206489"], ["https://data.delijn.be/stops/102286", "https://data.delijn.be/stops/103314"], ["https://data.delijn.be/stops/503195", "https://data.delijn.be/stops/508198"], ["https://data.delijn.be/stops/106202", "https://data.delijn.be/stops/106203"], ["https://data.delijn.be/stops/303653", "https://data.delijn.be/stops/304877"], ["https://data.delijn.be/stops/308414", "https://data.delijn.be/stops/308426"], ["https://data.delijn.be/stops/408220", "https://data.delijn.be/stops/408222"], ["https://data.delijn.be/stops/208072", "https://data.delijn.be/stops/208073"], ["https://data.delijn.be/stops/508226", "https://data.delijn.be/stops/508595"], ["https://data.delijn.be/stops/200903", "https://data.delijn.be/stops/203105"], ["https://data.delijn.be/stops/403051", "https://data.delijn.be/stops/403292"], ["https://data.delijn.be/stops/105014", "https://data.delijn.be/stops/106830"], ["https://data.delijn.be/stops/106520", "https://data.delijn.be/stops/106521"], ["https://data.delijn.be/stops/502679", "https://data.delijn.be/stops/507679"], ["https://data.delijn.be/stops/509059", "https://data.delijn.be/stops/509520"], ["https://data.delijn.be/stops/104659", "https://data.delijn.be/stops/107971"], ["https://data.delijn.be/stops/402754", "https://data.delijn.be/stops/402755"], ["https://data.delijn.be/stops/208459", "https://data.delijn.be/stops/209513"], ["https://data.delijn.be/stops/302002", "https://data.delijn.be/stops/302046"], ["https://data.delijn.be/stops/304396", "https://data.delijn.be/stops/308057"], ["https://data.delijn.be/stops/402386", "https://data.delijn.be/stops/402392"], ["https://data.delijn.be/stops/404726", "https://data.delijn.be/stops/408842"], ["https://data.delijn.be/stops/104469", "https://data.delijn.be/stops/104574"], ["https://data.delijn.be/stops/108954", "https://data.delijn.be/stops/108956"], ["https://data.delijn.be/stops/302183", "https://data.delijn.be/stops/307114"], ["https://data.delijn.be/stops/400824", "https://data.delijn.be/stops/403572"], ["https://data.delijn.be/stops/103474", "https://data.delijn.be/stops/103477"], ["https://data.delijn.be/stops/305384", "https://data.delijn.be/stops/305386"], ["https://data.delijn.be/stops/408713", "https://data.delijn.be/stops/408728"], ["https://data.delijn.be/stops/208453", "https://data.delijn.be/stops/209453"], ["https://data.delijn.be/stops/105538", "https://data.delijn.be/stops/105542"], ["https://data.delijn.be/stops/201176", "https://data.delijn.be/stops/211112"], ["https://data.delijn.be/stops/204476", "https://data.delijn.be/stops/205476"], ["https://data.delijn.be/stops/102531", "https://data.delijn.be/stops/408338"], ["https://data.delijn.be/stops/205161", "https://data.delijn.be/stops/207280"], ["https://data.delijn.be/stops/501157", "https://data.delijn.be/stops/501161"], ["https://data.delijn.be/stops/504065", "https://data.delijn.be/stops/505110"], ["https://data.delijn.be/stops/301648", "https://data.delijn.be/stops/306301"], ["https://data.delijn.be/stops/305054", "https://data.delijn.be/stops/305180"], ["https://data.delijn.be/stops/207794", "https://data.delijn.be/stops/208761"], ["https://data.delijn.be/stops/405900", "https://data.delijn.be/stops/405907"], ["https://data.delijn.be/stops/201374", "https://data.delijn.be/stops/201984"], ["https://data.delijn.be/stops/201913", "https://data.delijn.be/stops/203509"], ["https://data.delijn.be/stops/206968", "https://data.delijn.be/stops/208710"], ["https://data.delijn.be/stops/504044", "https://data.delijn.be/stops/509047"], ["https://data.delijn.be/stops/307243", "https://data.delijn.be/stops/307250"], ["https://data.delijn.be/stops/401547", "https://data.delijn.be/stops/401964"], ["https://data.delijn.be/stops/304230", "https://data.delijn.be/stops/304686"], ["https://data.delijn.be/stops/207630", "https://data.delijn.be/stops/207631"], ["https://data.delijn.be/stops/407590", "https://data.delijn.be/stops/407659"], ["https://data.delijn.be/stops/504036", "https://data.delijn.be/stops/505113"], ["https://data.delijn.be/stops/302297", "https://data.delijn.be/stops/303296"], ["https://data.delijn.be/stops/202130", "https://data.delijn.be/stops/203276"], ["https://data.delijn.be/stops/200971", "https://data.delijn.be/stops/206764"], ["https://data.delijn.be/stops/402004", "https://data.delijn.be/stops/406895"], ["https://data.delijn.be/stops/200592", "https://data.delijn.be/stops/201314"], ["https://data.delijn.be/stops/504787", "https://data.delijn.be/stops/504790"], ["https://data.delijn.be/stops/403736", "https://data.delijn.be/stops/403740"], ["https://data.delijn.be/stops/503559", "https://data.delijn.be/stops/503993"], ["https://data.delijn.be/stops/406694", "https://data.delijn.be/stops/409759"], ["https://data.delijn.be/stops/102493", "https://data.delijn.be/stops/400028"], ["https://data.delijn.be/stops/303016", "https://data.delijn.be/stops/303094"], ["https://data.delijn.be/stops/502293", "https://data.delijn.be/stops/507293"], ["https://data.delijn.be/stops/102653", "https://data.delijn.be/stops/206697"], ["https://data.delijn.be/stops/307147", "https://data.delijn.be/stops/307893"], ["https://data.delijn.be/stops/208287", "https://data.delijn.be/stops/208288"], ["https://data.delijn.be/stops/208561", "https://data.delijn.be/stops/209561"], ["https://data.delijn.be/stops/106747", "https://data.delijn.be/stops/109775"], ["https://data.delijn.be/stops/200239", "https://data.delijn.be/stops/200374"], ["https://data.delijn.be/stops/503689", "https://data.delijn.be/stops/508866"], ["https://data.delijn.be/stops/108632", "https://data.delijn.be/stops/109671"], ["https://data.delijn.be/stops/400061", "https://data.delijn.be/stops/400090"], ["https://data.delijn.be/stops/101579", "https://data.delijn.be/stops/105733"], ["https://data.delijn.be/stops/506032", "https://data.delijn.be/stops/506334"], ["https://data.delijn.be/stops/301061", "https://data.delijn.be/stops/301062"], ["https://data.delijn.be/stops/306773", "https://data.delijn.be/stops/306774"], ["https://data.delijn.be/stops/301405", "https://data.delijn.be/stops/305530"], ["https://data.delijn.be/stops/204993", "https://data.delijn.be/stops/208809"], ["https://data.delijn.be/stops/207112", "https://data.delijn.be/stops/207906"], ["https://data.delijn.be/stops/407602", "https://data.delijn.be/stops/407603"], ["https://data.delijn.be/stops/209316", "https://data.delijn.be/stops/209773"], ["https://data.delijn.be/stops/308481", "https://data.delijn.be/stops/308483"], ["https://data.delijn.be/stops/303351", "https://data.delijn.be/stops/307032"], ["https://data.delijn.be/stops/104950", "https://data.delijn.be/stops/105765"], ["https://data.delijn.be/stops/407839", "https://data.delijn.be/stops/408012"], ["https://data.delijn.be/stops/406813", "https://data.delijn.be/stops/409463"], ["https://data.delijn.be/stops/206302", "https://data.delijn.be/stops/207302"], ["https://data.delijn.be/stops/505385", "https://data.delijn.be/stops/508974"], ["https://data.delijn.be/stops/206296", "https://data.delijn.be/stops/207158"], ["https://data.delijn.be/stops/206274", "https://data.delijn.be/stops/207274"], ["https://data.delijn.be/stops/106122", "https://data.delijn.be/stops/106124"], ["https://data.delijn.be/stops/108917", "https://data.delijn.be/stops/109411"], ["https://data.delijn.be/stops/101669", "https://data.delijn.be/stops/406842"], ["https://data.delijn.be/stops/503399", "https://data.delijn.be/stops/509764"], ["https://data.delijn.be/stops/203181", "https://data.delijn.be/stops/203182"], ["https://data.delijn.be/stops/502384", "https://data.delijn.be/stops/507518"], ["https://data.delijn.be/stops/107636", "https://data.delijn.be/stops/108078"], ["https://data.delijn.be/stops/501480", "https://data.delijn.be/stops/506330"], ["https://data.delijn.be/stops/301425", "https://data.delijn.be/stops/308935"], ["https://data.delijn.be/stops/305744", "https://data.delijn.be/stops/305748"], ["https://data.delijn.be/stops/301900", "https://data.delijn.be/stops/304691"], ["https://data.delijn.be/stops/408278", "https://data.delijn.be/stops/408375"], ["https://data.delijn.be/stops/105093", "https://data.delijn.be/stops/105094"], ["https://data.delijn.be/stops/305640", "https://data.delijn.be/stops/305641"], ["https://data.delijn.be/stops/108673", "https://data.delijn.be/stops/109859"], ["https://data.delijn.be/stops/308174", "https://data.delijn.be/stops/308175"], ["https://data.delijn.be/stops/202546", "https://data.delijn.be/stops/203546"], ["https://data.delijn.be/stops/407506", "https://data.delijn.be/stops/407507"], ["https://data.delijn.be/stops/403905", "https://data.delijn.be/stops/404073"], ["https://data.delijn.be/stops/300136", "https://data.delijn.be/stops/300145"], ["https://data.delijn.be/stops/301430", "https://data.delijn.be/stops/307799"], ["https://data.delijn.be/stops/201165", "https://data.delijn.be/stops/203152"], ["https://data.delijn.be/stops/300027", "https://data.delijn.be/stops/307729"], ["https://data.delijn.be/stops/106183", "https://data.delijn.be/stops/107437"], ["https://data.delijn.be/stops/302147", "https://data.delijn.be/stops/307465"], ["https://data.delijn.be/stops/407826", "https://data.delijn.be/stops/407981"], ["https://data.delijn.be/stops/301585", "https://data.delijn.be/stops/301587"], ["https://data.delijn.be/stops/408096", "https://data.delijn.be/stops/408107"], ["https://data.delijn.be/stops/405502", "https://data.delijn.be/stops/410165"], ["https://data.delijn.be/stops/400559", "https://data.delijn.be/stops/407042"], ["https://data.delijn.be/stops/303773", "https://data.delijn.be/stops/303807"], ["https://data.delijn.be/stops/206121", "https://data.delijn.be/stops/206477"], ["https://data.delijn.be/stops/105156", "https://data.delijn.be/stops/105158"], ["https://data.delijn.be/stops/102747", "https://data.delijn.be/stops/103934"], ["https://data.delijn.be/stops/404292", "https://data.delijn.be/stops/406134"], ["https://data.delijn.be/stops/102632", "https://data.delijn.be/stops/107049"], ["https://data.delijn.be/stops/206751", "https://data.delijn.be/stops/208479"], ["https://data.delijn.be/stops/405149", "https://data.delijn.be/stops/405286"], ["https://data.delijn.be/stops/101209", "https://data.delijn.be/stops/107842"], ["https://data.delijn.be/stops/401033", "https://data.delijn.be/stops/406587"], ["https://data.delijn.be/stops/408906", "https://data.delijn.be/stops/408907"], ["https://data.delijn.be/stops/300501", "https://data.delijn.be/stops/302867"], ["https://data.delijn.be/stops/107618", "https://data.delijn.be/stops/108095"], ["https://data.delijn.be/stops/409095", "https://data.delijn.be/stops/409224"], ["https://data.delijn.be/stops/201389", "https://data.delijn.be/stops/201570"], ["https://data.delijn.be/stops/200648", "https://data.delijn.be/stops/201648"], ["https://data.delijn.be/stops/108054", "https://data.delijn.be/stops/307903"], ["https://data.delijn.be/stops/508604", "https://data.delijn.be/stops/508613"], ["https://data.delijn.be/stops/507698", "https://data.delijn.be/stops/509822"], ["https://data.delijn.be/stops/204832", "https://data.delijn.be/stops/205077"], ["https://data.delijn.be/stops/501361", "https://data.delijn.be/stops/505722"], ["https://data.delijn.be/stops/304889", "https://data.delijn.be/stops/306709"], ["https://data.delijn.be/stops/208314", "https://data.delijn.be/stops/209788"], ["https://data.delijn.be/stops/302808", "https://data.delijn.be/stops/305511"], ["https://data.delijn.be/stops/200749", "https://data.delijn.be/stops/201749"], ["https://data.delijn.be/stops/504051", "https://data.delijn.be/stops/507229"], ["https://data.delijn.be/stops/206813", "https://data.delijn.be/stops/207197"], ["https://data.delijn.be/stops/204552", "https://data.delijn.be/stops/205552"], ["https://data.delijn.be/stops/201118", "https://data.delijn.be/stops/201119"], ["https://data.delijn.be/stops/304926", "https://data.delijn.be/stops/304927"], ["https://data.delijn.be/stops/204102", "https://data.delijn.be/stops/204585"], ["https://data.delijn.be/stops/505087", "https://data.delijn.be/stops/505561"], ["https://data.delijn.be/stops/301563", "https://data.delijn.be/stops/301595"], ["https://data.delijn.be/stops/500994", "https://data.delijn.be/stops/509053"], ["https://data.delijn.be/stops/405326", "https://data.delijn.be/stops/405371"], ["https://data.delijn.be/stops/103684", "https://data.delijn.be/stops/106318"], ["https://data.delijn.be/stops/503749", "https://data.delijn.be/stops/508749"], ["https://data.delijn.be/stops/505247", "https://data.delijn.be/stops/505315"], ["https://data.delijn.be/stops/502365", "https://data.delijn.be/stops/502797"], ["https://data.delijn.be/stops/304415", "https://data.delijn.be/stops/307359"], ["https://data.delijn.be/stops/509474", "https://data.delijn.be/stops/509479"], ["https://data.delijn.be/stops/103550", "https://data.delijn.be/stops/105280"], ["https://data.delijn.be/stops/406041", "https://data.delijn.be/stops/406049"], ["https://data.delijn.be/stops/505339", "https://data.delijn.be/stops/508001"], ["https://data.delijn.be/stops/304965", "https://data.delijn.be/stops/304969"], ["https://data.delijn.be/stops/306387", "https://data.delijn.be/stops/307197"], ["https://data.delijn.be/stops/407198", "https://data.delijn.be/stops/407598"], ["https://data.delijn.be/stops/300001", "https://data.delijn.be/stops/306878"], ["https://data.delijn.be/stops/202256", "https://data.delijn.be/stops/203255"], ["https://data.delijn.be/stops/401787", "https://data.delijn.be/stops/406048"], ["https://data.delijn.be/stops/204419", "https://data.delijn.be/stops/205466"], ["https://data.delijn.be/stops/204684", "https://data.delijn.be/stops/205678"], ["https://data.delijn.be/stops/503453", "https://data.delijn.be/stops/508453"], ["https://data.delijn.be/stops/505562", "https://data.delijn.be/stops/508638"], ["https://data.delijn.be/stops/405288", "https://data.delijn.be/stops/406157"], ["https://data.delijn.be/stops/408052", "https://data.delijn.be/stops/408053"], ["https://data.delijn.be/stops/400596", "https://data.delijn.be/stops/400597"], ["https://data.delijn.be/stops/102907", "https://data.delijn.be/stops/104286"], ["https://data.delijn.be/stops/101530", "https://data.delijn.be/stops/102085"], ["https://data.delijn.be/stops/504285", "https://data.delijn.be/stops/509285"], ["https://data.delijn.be/stops/204054", "https://data.delijn.be/stops/204703"], ["https://data.delijn.be/stops/202459", "https://data.delijn.be/stops/202460"], ["https://data.delijn.be/stops/102980", "https://data.delijn.be/stops/103105"], ["https://data.delijn.be/stops/400222", "https://data.delijn.be/stops/401865"], ["https://data.delijn.be/stops/409075", "https://data.delijn.be/stops/409220"], ["https://data.delijn.be/stops/200067", "https://data.delijn.be/stops/201067"], ["https://data.delijn.be/stops/303663", "https://data.delijn.be/stops/304949"], ["https://data.delijn.be/stops/305622", "https://data.delijn.be/stops/305766"], ["https://data.delijn.be/stops/206291", "https://data.delijn.be/stops/207239"], ["https://data.delijn.be/stops/105316", "https://data.delijn.be/stops/106000"], ["https://data.delijn.be/stops/206706", "https://data.delijn.be/stops/207974"], ["https://data.delijn.be/stops/106631", "https://data.delijn.be/stops/106633"], ["https://data.delijn.be/stops/407052", "https://data.delijn.be/stops/407057"], ["https://data.delijn.be/stops/101790", "https://data.delijn.be/stops/103875"], ["https://data.delijn.be/stops/401188", "https://data.delijn.be/stops/410175"], ["https://data.delijn.be/stops/403338", "https://data.delijn.be/stops/403522"], ["https://data.delijn.be/stops/101704", "https://data.delijn.be/stops/102756"], ["https://data.delijn.be/stops/307619", "https://data.delijn.be/stops/307621"], ["https://data.delijn.be/stops/107452", "https://data.delijn.be/stops/109645"], ["https://data.delijn.be/stops/104669", "https://data.delijn.be/stops/104677"], ["https://data.delijn.be/stops/504741", "https://data.delijn.be/stops/504855"], ["https://data.delijn.be/stops/410115", "https://data.delijn.be/stops/410327"], ["https://data.delijn.be/stops/305286", "https://data.delijn.be/stops/305289"], ["https://data.delijn.be/stops/404444", "https://data.delijn.be/stops/404447"], ["https://data.delijn.be/stops/200944", "https://data.delijn.be/stops/203683"], ["https://data.delijn.be/stops/101516", "https://data.delijn.be/stops/102901"], ["https://data.delijn.be/stops/404476", "https://data.delijn.be/stops/410155"], ["https://data.delijn.be/stops/107086", "https://data.delijn.be/stops/107087"], ["https://data.delijn.be/stops/502151", "https://data.delijn.be/stops/507151"], ["https://data.delijn.be/stops/402779", "https://data.delijn.be/stops/402782"], ["https://data.delijn.be/stops/208862", "https://data.delijn.be/stops/211120"], ["https://data.delijn.be/stops/404504", "https://data.delijn.be/stops/404505"], ["https://data.delijn.be/stops/206673", "https://data.delijn.be/stops/208171"], ["https://data.delijn.be/stops/400850", "https://data.delijn.be/stops/409623"], ["https://data.delijn.be/stops/106608", "https://data.delijn.be/stops/106610"], ["https://data.delijn.be/stops/409256", "https://data.delijn.be/stops/409302"], ["https://data.delijn.be/stops/507609", "https://data.delijn.be/stops/507610"], ["https://data.delijn.be/stops/103574", "https://data.delijn.be/stops/106612"], ["https://data.delijn.be/stops/206527", "https://data.delijn.be/stops/207555"], ["https://data.delijn.be/stops/208103", "https://data.delijn.be/stops/208136"], ["https://data.delijn.be/stops/303035", "https://data.delijn.be/stops/303036"], ["https://data.delijn.be/stops/109499", "https://data.delijn.be/stops/306810"], ["https://data.delijn.be/stops/401867", "https://data.delijn.be/stops/410354"], ["https://data.delijn.be/stops/206871", "https://data.delijn.be/stops/209363"], ["https://data.delijn.be/stops/104822", "https://data.delijn.be/stops/108509"], ["https://data.delijn.be/stops/406072", "https://data.delijn.be/stops/406074"], ["https://data.delijn.be/stops/405538", "https://data.delijn.be/stops/405540"], ["https://data.delijn.be/stops/300218", "https://data.delijn.be/stops/300219"], ["https://data.delijn.be/stops/301859", "https://data.delijn.be/stops/301862"], ["https://data.delijn.be/stops/405795", "https://data.delijn.be/stops/409436"], ["https://data.delijn.be/stops/301045", "https://data.delijn.be/stops/304810"], ["https://data.delijn.be/stops/404735", "https://data.delijn.be/stops/404750"], ["https://data.delijn.be/stops/306594", "https://data.delijn.be/stops/306596"], ["https://data.delijn.be/stops/109245", "https://data.delijn.be/stops/109267"], ["https://data.delijn.be/stops/206695", "https://data.delijn.be/stops/207954"], ["https://data.delijn.be/stops/101829", "https://data.delijn.be/stops/106998"], ["https://data.delijn.be/stops/405061", "https://data.delijn.be/stops/405115"], ["https://data.delijn.be/stops/400490", "https://data.delijn.be/stops/400493"], ["https://data.delijn.be/stops/400756", "https://data.delijn.be/stops/400845"], ["https://data.delijn.be/stops/407188", "https://data.delijn.be/stops/407195"], ["https://data.delijn.be/stops/308164", "https://data.delijn.be/stops/308230"], ["https://data.delijn.be/stops/401883", "https://data.delijn.be/stops/407348"], ["https://data.delijn.be/stops/303968", "https://data.delijn.be/stops/303972"], ["https://data.delijn.be/stops/405068", "https://data.delijn.be/stops/405072"], ["https://data.delijn.be/stops/206131", "https://data.delijn.be/stops/207136"], ["https://data.delijn.be/stops/505935", "https://data.delijn.be/stops/508322"], ["https://data.delijn.be/stops/501127", "https://data.delijn.be/stops/501132"], ["https://data.delijn.be/stops/300251", "https://data.delijn.be/stops/304568"], ["https://data.delijn.be/stops/502356", "https://data.delijn.be/stops/505014"], ["https://data.delijn.be/stops/208573", "https://data.delijn.be/stops/208598"], ["https://data.delijn.be/stops/206890", "https://data.delijn.be/stops/207912"], ["https://data.delijn.be/stops/407604", "https://data.delijn.be/stops/407610"], ["https://data.delijn.be/stops/408921", "https://data.delijn.be/stops/408925"], ["https://data.delijn.be/stops/102152", "https://data.delijn.be/stops/108330"], ["https://data.delijn.be/stops/307591", "https://data.delijn.be/stops/307601"], ["https://data.delijn.be/stops/104391", "https://data.delijn.be/stops/104870"], ["https://data.delijn.be/stops/504214", "https://data.delijn.be/stops/509059"], ["https://data.delijn.be/stops/206358", "https://data.delijn.be/stops/207714"], ["https://data.delijn.be/stops/402860", "https://data.delijn.be/stops/406702"], ["https://data.delijn.be/stops/205407", "https://data.delijn.be/stops/205413"], ["https://data.delijn.be/stops/306299", "https://data.delijn.be/stops/306373"], ["https://data.delijn.be/stops/403040", "https://data.delijn.be/stops/403085"], ["https://data.delijn.be/stops/400967", "https://data.delijn.be/stops/401251"], ["https://data.delijn.be/stops/306052", "https://data.delijn.be/stops/308676"], ["https://data.delijn.be/stops/304001", "https://data.delijn.be/stops/308644"], ["https://data.delijn.be/stops/504079", "https://data.delijn.be/stops/504531"], ["https://data.delijn.be/stops/402354", "https://data.delijn.be/stops/402464"], ["https://data.delijn.be/stops/402807", "https://data.delijn.be/stops/409039"], ["https://data.delijn.be/stops/303642", "https://data.delijn.be/stops/305603"], ["https://data.delijn.be/stops/201917", "https://data.delijn.be/stops/201919"], ["https://data.delijn.be/stops/202344", "https://data.delijn.be/stops/203344"], ["https://data.delijn.be/stops/107235", "https://data.delijn.be/stops/108290"], ["https://data.delijn.be/stops/204779", "https://data.delijn.be/stops/204780"], ["https://data.delijn.be/stops/202947", "https://data.delijn.be/stops/206554"], ["https://data.delijn.be/stops/101486", "https://data.delijn.be/stops/108744"], ["https://data.delijn.be/stops/201932", "https://data.delijn.be/stops/203512"], ["https://data.delijn.be/stops/305277", "https://data.delijn.be/stops/305278"], ["https://data.delijn.be/stops/104646", "https://data.delijn.be/stops/104647"], ["https://data.delijn.be/stops/301698", "https://data.delijn.be/stops/303891"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/302882"], ["https://data.delijn.be/stops/300599", "https://data.delijn.be/stops/300608"], ["https://data.delijn.be/stops/206420", "https://data.delijn.be/stops/216012"], ["https://data.delijn.be/stops/204640", "https://data.delijn.be/stops/205639"], ["https://data.delijn.be/stops/408229", "https://data.delijn.be/stops/408290"], ["https://data.delijn.be/stops/500951", "https://data.delijn.be/stops/504173"], ["https://data.delijn.be/stops/302063", "https://data.delijn.be/stops/308812"], ["https://data.delijn.be/stops/104306", "https://data.delijn.be/stops/109747"], ["https://data.delijn.be/stops/502124", "https://data.delijn.be/stops/507752"], ["https://data.delijn.be/stops/108484", "https://data.delijn.be/stops/306596"], ["https://data.delijn.be/stops/107174", "https://data.delijn.be/stops/107178"], ["https://data.delijn.be/stops/200539", "https://data.delijn.be/stops/201379"], ["https://data.delijn.be/stops/104364", "https://data.delijn.be/stops/104960"], ["https://data.delijn.be/stops/109720", "https://data.delijn.be/stops/109768"], ["https://data.delijn.be/stops/305378", "https://data.delijn.be/stops/305407"], ["https://data.delijn.be/stops/305084", "https://data.delijn.be/stops/305085"], ["https://data.delijn.be/stops/504640", "https://data.delijn.be/stops/504976"], ["https://data.delijn.be/stops/509464", "https://data.delijn.be/stops/509467"], ["https://data.delijn.be/stops/408122", "https://data.delijn.be/stops/410345"], ["https://data.delijn.be/stops/303620", "https://data.delijn.be/stops/306706"], ["https://data.delijn.be/stops/208992", "https://data.delijn.be/stops/210048"], ["https://data.delijn.be/stops/501022", "https://data.delijn.be/stops/505036"], ["https://data.delijn.be/stops/408025", "https://data.delijn.be/stops/301841"], ["https://data.delijn.be/stops/502324", "https://data.delijn.be/stops/502711"], ["https://data.delijn.be/stops/303484", "https://data.delijn.be/stops/303487"], ["https://data.delijn.be/stops/106225", "https://data.delijn.be/stops/106226"], ["https://data.delijn.be/stops/307146", "https://data.delijn.be/stops/307147"], ["https://data.delijn.be/stops/502611", "https://data.delijn.be/stops/505691"], ["https://data.delijn.be/stops/402706", "https://data.delijn.be/stops/306391"], ["https://data.delijn.be/stops/504371", "https://data.delijn.be/stops/509371"], ["https://data.delijn.be/stops/206005", "https://data.delijn.be/stops/206263"], ["https://data.delijn.be/stops/103724", "https://data.delijn.be/stops/107618"], ["https://data.delijn.be/stops/304263", "https://data.delijn.be/stops/304265"], ["https://data.delijn.be/stops/501692", "https://data.delijn.be/stops/502768"], ["https://data.delijn.be/stops/404505", "https://data.delijn.be/stops/404571"], ["https://data.delijn.be/stops/501412", "https://data.delijn.be/stops/509840"], ["https://data.delijn.be/stops/408612", "https://data.delijn.be/stops/408666"], ["https://data.delijn.be/stops/107152", "https://data.delijn.be/stops/107153"], ["https://data.delijn.be/stops/106916", "https://data.delijn.be/stops/106918"], ["https://data.delijn.be/stops/302934", "https://data.delijn.be/stops/303141"], ["https://data.delijn.be/stops/106199", "https://data.delijn.be/stops/109274"], ["https://data.delijn.be/stops/400265", "https://data.delijn.be/stops/406932"], ["https://data.delijn.be/stops/404812", "https://data.delijn.be/stops/404813"], ["https://data.delijn.be/stops/300786", "https://data.delijn.be/stops/300787"], ["https://data.delijn.be/stops/304162", "https://data.delijn.be/stops/305450"], ["https://data.delijn.be/stops/401397", "https://data.delijn.be/stops/401418"], ["https://data.delijn.be/stops/101836", "https://data.delijn.be/stops/108237"], ["https://data.delijn.be/stops/206208", "https://data.delijn.be/stops/206608"], ["https://data.delijn.be/stops/200164", "https://data.delijn.be/stops/201356"], ["https://data.delijn.be/stops/104938", "https://data.delijn.be/stops/104939"], ["https://data.delijn.be/stops/301406", "https://data.delijn.be/stops/307154"], ["https://data.delijn.be/stops/501104", "https://data.delijn.be/stops/506503"], ["https://data.delijn.be/stops/201005", "https://data.delijn.be/stops/203518"], ["https://data.delijn.be/stops/103760", "https://data.delijn.be/stops/103765"], ["https://data.delijn.be/stops/105075", "https://data.delijn.be/stops/105078"], ["https://data.delijn.be/stops/507697", "https://data.delijn.be/stops/507704"], ["https://data.delijn.be/stops/106275", "https://data.delijn.be/stops/109629"], ["https://data.delijn.be/stops/304391", "https://data.delijn.be/stops/308059"], ["https://data.delijn.be/stops/304687", "https://data.delijn.be/stops/307264"], ["https://data.delijn.be/stops/306845", "https://data.delijn.be/stops/307354"], ["https://data.delijn.be/stops/101451", "https://data.delijn.be/stops/107057"], ["https://data.delijn.be/stops/505768", "https://data.delijn.be/stops/507038"], ["https://data.delijn.be/stops/101946", "https://data.delijn.be/stops/109708"], ["https://data.delijn.be/stops/306693", "https://data.delijn.be/stops/308784"], ["https://data.delijn.be/stops/302020", "https://data.delijn.be/stops/308959"], ["https://data.delijn.be/stops/402546", "https://data.delijn.be/stops/402550"], ["https://data.delijn.be/stops/504392", "https://data.delijn.be/stops/508484"], ["https://data.delijn.be/stops/103081", "https://data.delijn.be/stops/107377"], ["https://data.delijn.be/stops/503314", "https://data.delijn.be/stops/508310"], ["https://data.delijn.be/stops/301564", "https://data.delijn.be/stops/301578"], ["https://data.delijn.be/stops/107279", "https://data.delijn.be/stops/107397"], ["https://data.delijn.be/stops/505594", "https://data.delijn.be/stops/507261"], ["https://data.delijn.be/stops/204058", "https://data.delijn.be/stops/205057"], ["https://data.delijn.be/stops/400501", "https://data.delijn.be/stops/402427"], ["https://data.delijn.be/stops/101531", "https://data.delijn.be/stops/102580"], ["https://data.delijn.be/stops/407548", "https://data.delijn.be/stops/407557"], ["https://data.delijn.be/stops/200096", "https://data.delijn.be/stops/202132"], ["https://data.delijn.be/stops/204211", "https://data.delijn.be/stops/207807"], ["https://data.delijn.be/stops/401251", "https://data.delijn.be/stops/401281"], ["https://data.delijn.be/stops/207655", "https://data.delijn.be/stops/207656"], ["https://data.delijn.be/stops/405809", "https://data.delijn.be/stops/405883"], ["https://data.delijn.be/stops/503335", "https://data.delijn.be/stops/508342"], ["https://data.delijn.be/stops/403414", "https://data.delijn.be/stops/403415"], ["https://data.delijn.be/stops/201033", "https://data.delijn.be/stops/201067"], ["https://data.delijn.be/stops/206157", "https://data.delijn.be/stops/207498"], ["https://data.delijn.be/stops/302424", "https://data.delijn.be/stops/302437"], ["https://data.delijn.be/stops/303495", "https://data.delijn.be/stops/303502"], ["https://data.delijn.be/stops/503150", "https://data.delijn.be/stops/508150"], ["https://data.delijn.be/stops/300669", "https://data.delijn.be/stops/300675"], ["https://data.delijn.be/stops/300986", "https://data.delijn.be/stops/307232"], ["https://data.delijn.be/stops/505057", "https://data.delijn.be/stops/505773"], ["https://data.delijn.be/stops/103988", "https://data.delijn.be/stops/107953"], ["https://data.delijn.be/stops/408613", "https://data.delijn.be/stops/408775"], ["https://data.delijn.be/stops/301185", "https://data.delijn.be/stops/301266"], ["https://data.delijn.be/stops/401019", "https://data.delijn.be/stops/401137"], ["https://data.delijn.be/stops/405490", "https://data.delijn.be/stops/409333"], ["https://data.delijn.be/stops/304393", "https://data.delijn.be/stops/304394"], ["https://data.delijn.be/stops/501113", "https://data.delijn.be/stops/501638"], ["https://data.delijn.be/stops/301700", "https://data.delijn.be/stops/305876"], ["https://data.delijn.be/stops/104639", "https://data.delijn.be/stops/108037"], ["https://data.delijn.be/stops/403990", "https://data.delijn.be/stops/407055"], ["https://data.delijn.be/stops/302457", "https://data.delijn.be/stops/305954"], ["https://data.delijn.be/stops/300398", "https://data.delijn.be/stops/300409"], ["https://data.delijn.be/stops/301116", "https://data.delijn.be/stops/304030"], ["https://data.delijn.be/stops/202601", "https://data.delijn.be/stops/203601"], ["https://data.delijn.be/stops/301222", "https://data.delijn.be/stops/301223"], ["https://data.delijn.be/stops/404362", "https://data.delijn.be/stops/404363"], ["https://data.delijn.be/stops/301445", "https://data.delijn.be/stops/304867"], ["https://data.delijn.be/stops/501218", "https://data.delijn.be/stops/506219"], ["https://data.delijn.be/stops/201901", "https://data.delijn.be/stops/203515"], ["https://data.delijn.be/stops/508308", "https://data.delijn.be/stops/509926"], ["https://data.delijn.be/stops/504045", "https://data.delijn.be/stops/504659"], ["https://data.delijn.be/stops/409024", "https://data.delijn.be/stops/409028"], ["https://data.delijn.be/stops/505380", "https://data.delijn.be/stops/508103"], ["https://data.delijn.be/stops/102517", "https://data.delijn.be/stops/406499"], ["https://data.delijn.be/stops/202639", "https://data.delijn.be/stops/205793"], ["https://data.delijn.be/stops/302350", "https://data.delijn.be/stops/302354"], ["https://data.delijn.be/stops/504554", "https://data.delijn.be/stops/509235"], ["https://data.delijn.be/stops/403493", "https://data.delijn.be/stops/405630"], ["https://data.delijn.be/stops/410224", "https://data.delijn.be/stops/410402"], ["https://data.delijn.be/stops/304369", "https://data.delijn.be/stops/307370"], ["https://data.delijn.be/stops/108405", "https://data.delijn.be/stops/108410"], ["https://data.delijn.be/stops/307582", "https://data.delijn.be/stops/307583"], ["https://data.delijn.be/stops/106602", "https://data.delijn.be/stops/106603"], ["https://data.delijn.be/stops/404196", "https://data.delijn.be/stops/404197"], ["https://data.delijn.be/stops/208855", "https://data.delijn.be/stops/209854"], ["https://data.delijn.be/stops/305950", "https://data.delijn.be/stops/308671"], ["https://data.delijn.be/stops/200251", "https://data.delijn.be/stops/200570"], ["https://data.delijn.be/stops/404170", "https://data.delijn.be/stops/404182"], ["https://data.delijn.be/stops/108529", "https://data.delijn.be/stops/108536"], ["https://data.delijn.be/stops/401419", "https://data.delijn.be/stops/304600"], ["https://data.delijn.be/stops/104824", "https://data.delijn.be/stops/109092"], ["https://data.delijn.be/stops/206645", "https://data.delijn.be/stops/206646"], ["https://data.delijn.be/stops/503794", "https://data.delijn.be/stops/503795"], ["https://data.delijn.be/stops/400078", "https://data.delijn.be/stops/410030"], ["https://data.delijn.be/stops/308094", "https://data.delijn.be/stops/308129"], ["https://data.delijn.be/stops/502413", "https://data.delijn.be/stops/507398"], ["https://data.delijn.be/stops/501353", "https://data.delijn.be/stops/506360"], ["https://data.delijn.be/stops/401347", "https://data.delijn.be/stops/401376"], ["https://data.delijn.be/stops/218026", "https://data.delijn.be/stops/218027"], ["https://data.delijn.be/stops/306317", "https://data.delijn.be/stops/306318"], ["https://data.delijn.be/stops/502020", "https://data.delijn.be/stops/502056"], ["https://data.delijn.be/stops/301515", "https://data.delijn.be/stops/308076"], ["https://data.delijn.be/stops/400544", "https://data.delijn.be/stops/403194"], ["https://data.delijn.be/stops/407131", "https://data.delijn.be/stops/407342"], ["https://data.delijn.be/stops/206308", "https://data.delijn.be/stops/207391"], ["https://data.delijn.be/stops/302879", "https://data.delijn.be/stops/303085"], ["https://data.delijn.be/stops/502705", "https://data.delijn.be/stops/507530"], ["https://data.delijn.be/stops/307027", "https://data.delijn.be/stops/307570"], ["https://data.delijn.be/stops/504492", "https://data.delijn.be/stops/504504"], ["https://data.delijn.be/stops/507684", "https://data.delijn.be/stops/508794"], ["https://data.delijn.be/stops/201703", "https://data.delijn.be/stops/203564"], ["https://data.delijn.be/stops/503699", "https://data.delijn.be/stops/509041"], ["https://data.delijn.be/stops/405465", "https://data.delijn.be/stops/408537"], ["https://data.delijn.be/stops/305480", "https://data.delijn.be/stops/307800"], ["https://data.delijn.be/stops/108051", "https://data.delijn.be/stops/108278"], ["https://data.delijn.be/stops/306690", "https://data.delijn.be/stops/306692"], ["https://data.delijn.be/stops/502798", "https://data.delijn.be/stops/507531"], ["https://data.delijn.be/stops/304764", "https://data.delijn.be/stops/305250"], ["https://data.delijn.be/stops/107008", "https://data.delijn.be/stops/107009"], ["https://data.delijn.be/stops/301263", "https://data.delijn.be/stops/301265"], ["https://data.delijn.be/stops/201334", "https://data.delijn.be/stops/201729"], ["https://data.delijn.be/stops/303101", "https://data.delijn.be/stops/303147"], ["https://data.delijn.be/stops/302944", "https://data.delijn.be/stops/303135"], ["https://data.delijn.be/stops/403700", "https://data.delijn.be/stops/403761"], ["https://data.delijn.be/stops/101718", "https://data.delijn.be/stops/107808"], ["https://data.delijn.be/stops/409099", "https://data.delijn.be/stops/409100"], ["https://data.delijn.be/stops/208341", "https://data.delijn.be/stops/209341"], ["https://data.delijn.be/stops/504126", "https://data.delijn.be/stops/504638"], ["https://data.delijn.be/stops/206909", "https://data.delijn.be/stops/207931"], ["https://data.delijn.be/stops/204334", "https://data.delijn.be/stops/204515"], ["https://data.delijn.be/stops/303135", "https://data.delijn.be/stops/306086"], ["https://data.delijn.be/stops/508794", "https://data.delijn.be/stops/508798"], ["https://data.delijn.be/stops/502603", "https://data.delijn.be/stops/507311"], ["https://data.delijn.be/stops/407444", "https://data.delijn.be/stops/407445"], ["https://data.delijn.be/stops/300707", "https://data.delijn.be/stops/300708"], ["https://data.delijn.be/stops/503227", "https://data.delijn.be/stops/508225"], ["https://data.delijn.be/stops/206518", "https://data.delijn.be/stops/207518"], ["https://data.delijn.be/stops/403559", "https://data.delijn.be/stops/403560"], ["https://data.delijn.be/stops/301329", "https://data.delijn.be/stops/306650"], ["https://data.delijn.be/stops/403378", "https://data.delijn.be/stops/403379"], ["https://data.delijn.be/stops/106283", "https://data.delijn.be/stops/106344"], ["https://data.delijn.be/stops/301325", "https://data.delijn.be/stops/306654"], ["https://data.delijn.be/stops/200747", "https://data.delijn.be/stops/203500"], ["https://data.delijn.be/stops/505102", "https://data.delijn.be/stops/509086"], ["https://data.delijn.be/stops/404237", "https://data.delijn.be/stops/409813"], ["https://data.delijn.be/stops/303708", "https://data.delijn.be/stops/303732"], ["https://data.delijn.be/stops/105529", "https://data.delijn.be/stops/106973"], ["https://data.delijn.be/stops/201685", "https://data.delijn.be/stops/201836"], ["https://data.delijn.be/stops/304427", "https://data.delijn.be/stops/304430"], ["https://data.delijn.be/stops/108358", "https://data.delijn.be/stops/108804"], ["https://data.delijn.be/stops/403910", "https://data.delijn.be/stops/403911"], ["https://data.delijn.be/stops/405902", "https://data.delijn.be/stops/405970"], ["https://data.delijn.be/stops/201101", "https://data.delijn.be/stops/202647"], ["https://data.delijn.be/stops/408670", "https://data.delijn.be/stops/408671"], ["https://data.delijn.be/stops/303964", "https://data.delijn.be/stops/303970"], ["https://data.delijn.be/stops/405310", "https://data.delijn.be/stops/405311"], ["https://data.delijn.be/stops/105269", "https://data.delijn.be/stops/105290"], ["https://data.delijn.be/stops/503297", "https://data.delijn.be/stops/508297"], ["https://data.delijn.be/stops/501283", "https://data.delijn.be/stops/501313"], ["https://data.delijn.be/stops/403141", "https://data.delijn.be/stops/403353"], ["https://data.delijn.be/stops/200908", "https://data.delijn.be/stops/203045"], ["https://data.delijn.be/stops/400300", "https://data.delijn.be/stops/407109"], ["https://data.delijn.be/stops/305341", "https://data.delijn.be/stops/307968"], ["https://data.delijn.be/stops/108023", "https://data.delijn.be/stops/108026"], ["https://data.delijn.be/stops/409780", "https://data.delijn.be/stops/409785"], ["https://data.delijn.be/stops/304936", "https://data.delijn.be/stops/304942"], ["https://data.delijn.be/stops/302339", "https://data.delijn.be/stops/302341"], ["https://data.delijn.be/stops/501159", "https://data.delijn.be/stops/501749"], ["https://data.delijn.be/stops/102701", "https://data.delijn.be/stops/105651"], ["https://data.delijn.be/stops/303855", "https://data.delijn.be/stops/307011"], ["https://data.delijn.be/stops/101555", "https://data.delijn.be/stops/106000"], ["https://data.delijn.be/stops/302260", "https://data.delijn.be/stops/304348"], ["https://data.delijn.be/stops/501637", "https://data.delijn.be/stops/506496"], ["https://data.delijn.be/stops/108189", "https://data.delijn.be/stops/108351"], ["https://data.delijn.be/stops/108066", "https://data.delijn.be/stops/108869"], ["https://data.delijn.be/stops/208144", "https://data.delijn.be/stops/209144"], ["https://data.delijn.be/stops/402084", "https://data.delijn.be/stops/402086"], ["https://data.delijn.be/stops/101747", "https://data.delijn.be/stops/106387"], ["https://data.delijn.be/stops/202268", "https://data.delijn.be/stops/203269"], ["https://data.delijn.be/stops/504747", "https://data.delijn.be/stops/509168"], ["https://data.delijn.be/stops/408881", "https://data.delijn.be/stops/408913"], ["https://data.delijn.be/stops/201881", "https://data.delijn.be/stops/202420"], ["https://data.delijn.be/stops/504344", "https://data.delijn.be/stops/504538"], ["https://data.delijn.be/stops/403686", "https://data.delijn.be/stops/403687"], ["https://data.delijn.be/stops/301529", "https://data.delijn.be/stops/301531"], ["https://data.delijn.be/stops/305895", "https://data.delijn.be/stops/306392"], ["https://data.delijn.be/stops/300075", "https://data.delijn.be/stops/304668"], ["https://data.delijn.be/stops/206087", "https://data.delijn.be/stops/207087"], ["https://data.delijn.be/stops/204164", "https://data.delijn.be/stops/207270"], ["https://data.delijn.be/stops/101703", "https://data.delijn.be/stops/102756"], ["https://data.delijn.be/stops/400499", "https://data.delijn.be/stops/400645"], ["https://data.delijn.be/stops/307109", "https://data.delijn.be/stops/308097"], ["https://data.delijn.be/stops/400068", "https://data.delijn.be/stops/400103"], ["https://data.delijn.be/stops/101413", "https://data.delijn.be/stops/103073"], ["https://data.delijn.be/stops/208157", "https://data.delijn.be/stops/209157"], ["https://data.delijn.be/stops/504372", "https://data.delijn.be/stops/504609"], ["https://data.delijn.be/stops/204698", "https://data.delijn.be/stops/205319"], ["https://data.delijn.be/stops/102728", "https://data.delijn.be/stops/107276"], ["https://data.delijn.be/stops/102195", "https://data.delijn.be/stops/105200"], ["https://data.delijn.be/stops/306187", "https://data.delijn.be/stops/306188"], ["https://data.delijn.be/stops/106157", "https://data.delijn.be/stops/106158"], ["https://data.delijn.be/stops/504770", "https://data.delijn.be/stops/505197"], ["https://data.delijn.be/stops/101935", "https://data.delijn.be/stops/101989"], ["https://data.delijn.be/stops/204146", "https://data.delijn.be/stops/205146"], ["https://data.delijn.be/stops/502227", "https://data.delijn.be/stops/507699"], ["https://data.delijn.be/stops/406306", "https://data.delijn.be/stops/406307"], ["https://data.delijn.be/stops/300108", "https://data.delijn.be/stops/306811"], ["https://data.delijn.be/stops/302097", "https://data.delijn.be/stops/302100"], ["https://data.delijn.be/stops/508626", "https://data.delijn.be/stops/590008"], ["https://data.delijn.be/stops/306183", "https://data.delijn.be/stops/306184"], ["https://data.delijn.be/stops/400016", "https://data.delijn.be/stops/400022"], ["https://data.delijn.be/stops/200026", "https://data.delijn.be/stops/203070"], ["https://data.delijn.be/stops/106739", "https://data.delijn.be/stops/106741"], ["https://data.delijn.be/stops/203860", "https://data.delijn.be/stops/208714"], ["https://data.delijn.be/stops/505646", "https://data.delijn.be/stops/507472"], ["https://data.delijn.be/stops/103587", "https://data.delijn.be/stops/105586"], ["https://data.delijn.be/stops/303561", "https://data.delijn.be/stops/308610"], ["https://data.delijn.be/stops/308171", "https://data.delijn.be/stops/308240"], ["https://data.delijn.be/stops/403599", "https://data.delijn.be/stops/407339"], ["https://data.delijn.be/stops/407894", "https://data.delijn.be/stops/408414"], ["https://data.delijn.be/stops/301739", "https://data.delijn.be/stops/305909"], ["https://data.delijn.be/stops/102887", "https://data.delijn.be/stops/102893"], ["https://data.delijn.be/stops/208233", "https://data.delijn.be/stops/209233"], ["https://data.delijn.be/stops/301779", "https://data.delijn.be/stops/306878"], ["https://data.delijn.be/stops/202525", "https://data.delijn.be/stops/203525"], ["https://data.delijn.be/stops/504994", "https://data.delijn.be/stops/505208"], ["https://data.delijn.be/stops/104037", "https://data.delijn.be/stops/108391"], ["https://data.delijn.be/stops/404699", "https://data.delijn.be/stops/405586"], ["https://data.delijn.be/stops/407523", "https://data.delijn.be/stops/407544"], ["https://data.delijn.be/stops/208016", "https://data.delijn.be/stops/209016"], ["https://data.delijn.be/stops/204018", "https://data.delijn.be/stops/204828"], ["https://data.delijn.be/stops/502177", "https://data.delijn.be/stops/507174"], ["https://data.delijn.be/stops/509225", "https://data.delijn.be/stops/509622"], ["https://data.delijn.be/stops/101810", "https://data.delijn.be/stops/103640"], ["https://data.delijn.be/stops/506449", "https://data.delijn.be/stops/506453"], ["https://data.delijn.be/stops/206377", "https://data.delijn.be/stops/206378"], ["https://data.delijn.be/stops/305244", "https://data.delijn.be/stops/305271"], ["https://data.delijn.be/stops/405565", "https://data.delijn.be/stops/405579"], ["https://data.delijn.be/stops/304316", "https://data.delijn.be/stops/305889"], ["https://data.delijn.be/stops/302533", "https://data.delijn.be/stops/305840"], ["https://data.delijn.be/stops/509358", "https://data.delijn.be/stops/509359"], ["https://data.delijn.be/stops/501290", "https://data.delijn.be/stops/506372"], ["https://data.delijn.be/stops/206508", "https://data.delijn.be/stops/207476"], ["https://data.delijn.be/stops/504233", "https://data.delijn.be/stops/509238"], ["https://data.delijn.be/stops/304017", "https://data.delijn.be/stops/304055"], ["https://data.delijn.be/stops/202184", "https://data.delijn.be/stops/204235"], ["https://data.delijn.be/stops/408396", "https://data.delijn.be/stops/308242"], ["https://data.delijn.be/stops/400932", "https://data.delijn.be/stops/400933"], ["https://data.delijn.be/stops/403306", "https://data.delijn.be/stops/403309"], ["https://data.delijn.be/stops/408428", "https://data.delijn.be/stops/408574"], ["https://data.delijn.be/stops/301823", "https://data.delijn.be/stops/307889"], ["https://data.delijn.be/stops/503958", "https://data.delijn.be/stops/504674"], ["https://data.delijn.be/stops/105564", "https://data.delijn.be/stops/105573"], ["https://data.delijn.be/stops/102921", "https://data.delijn.be/stops/104580"], ["https://data.delijn.be/stops/101637", "https://data.delijn.be/stops/104375"], ["https://data.delijn.be/stops/404136", "https://data.delijn.be/stops/404137"], ["https://data.delijn.be/stops/304917", "https://data.delijn.be/stops/308121"], ["https://data.delijn.be/stops/218004", "https://data.delijn.be/stops/219004"], ["https://data.delijn.be/stops/206301", "https://data.delijn.be/stops/206915"], ["https://data.delijn.be/stops/403236", "https://data.delijn.be/stops/403237"], ["https://data.delijn.be/stops/205110", "https://data.delijn.be/stops/205111"], ["https://data.delijn.be/stops/509064", "https://data.delijn.be/stops/509069"], ["https://data.delijn.be/stops/205063", "https://data.delijn.be/stops/205696"], ["https://data.delijn.be/stops/500951", "https://data.delijn.be/stops/509747"], ["https://data.delijn.be/stops/102323", "https://data.delijn.be/stops/104246"], ["https://data.delijn.be/stops/106817", "https://data.delijn.be/stops/106987"], ["https://data.delijn.be/stops/208213", "https://data.delijn.be/stops/209213"], ["https://data.delijn.be/stops/504409", "https://data.delijn.be/stops/508440"], ["https://data.delijn.be/stops/307075", "https://data.delijn.be/stops/308438"], ["https://data.delijn.be/stops/305878", "https://data.delijn.be/stops/308688"], ["https://data.delijn.be/stops/208115", "https://data.delijn.be/stops/208795"], ["https://data.delijn.be/stops/302007", "https://data.delijn.be/stops/303175"], ["https://data.delijn.be/stops/303656", "https://data.delijn.be/stops/305480"], ["https://data.delijn.be/stops/103138", "https://data.delijn.be/stops/107117"], ["https://data.delijn.be/stops/206082", "https://data.delijn.be/stops/207602"], ["https://data.delijn.be/stops/300474", "https://data.delijn.be/stops/308083"], ["https://data.delijn.be/stops/300032", "https://data.delijn.be/stops/301945"], ["https://data.delijn.be/stops/501389", "https://data.delijn.be/stops/506392"], ["https://data.delijn.be/stops/200576", "https://data.delijn.be/stops/200577"], ["https://data.delijn.be/stops/101573", "https://data.delijn.be/stops/101592"], ["https://data.delijn.be/stops/404868", "https://data.delijn.be/stops/404908"], ["https://data.delijn.be/stops/503616", "https://data.delijn.be/stops/508604"], ["https://data.delijn.be/stops/103727", "https://data.delijn.be/stops/109443"], ["https://data.delijn.be/stops/409276", "https://data.delijn.be/stops/409277"], ["https://data.delijn.be/stops/501464", "https://data.delijn.be/stops/505087"], ["https://data.delijn.be/stops/505276", "https://data.delijn.be/stops/507715"], ["https://data.delijn.be/stops/502435", "https://data.delijn.be/stops/507722"], ["https://data.delijn.be/stops/402888", "https://data.delijn.be/stops/402898"], ["https://data.delijn.be/stops/107500", "https://data.delijn.be/stops/107520"], ["https://data.delijn.be/stops/301870", "https://data.delijn.be/stops/304337"], ["https://data.delijn.be/stops/207645", "https://data.delijn.be/stops/207647"], ["https://data.delijn.be/stops/206328", "https://data.delijn.be/stops/207732"], ["https://data.delijn.be/stops/109678", "https://data.delijn.be/stops/109680"], ["https://data.delijn.be/stops/208725", "https://data.delijn.be/stops/209664"], ["https://data.delijn.be/stops/300946", "https://data.delijn.be/stops/305380"], ["https://data.delijn.be/stops/408117", "https://data.delijn.be/stops/408162"], ["https://data.delijn.be/stops/400500", "https://data.delijn.be/stops/402948"], ["https://data.delijn.be/stops/302078", "https://data.delijn.be/stops/302090"], ["https://data.delijn.be/stops/408449", "https://data.delijn.be/stops/408450"], ["https://data.delijn.be/stops/301331", "https://data.delijn.be/stops/301334"], ["https://data.delijn.be/stops/200720", "https://data.delijn.be/stops/202577"], ["https://data.delijn.be/stops/300617", "https://data.delijn.be/stops/300618"], ["https://data.delijn.be/stops/302934", "https://data.delijn.be/stops/307056"], ["https://data.delijn.be/stops/403774", "https://data.delijn.be/stops/403775"], ["https://data.delijn.be/stops/504365", "https://data.delijn.be/stops/504366"], ["https://data.delijn.be/stops/205332", "https://data.delijn.be/stops/205505"], ["https://data.delijn.be/stops/504806", "https://data.delijn.be/stops/508038"], ["https://data.delijn.be/stops/201263", "https://data.delijn.be/stops/201264"], ["https://data.delijn.be/stops/404819", "https://data.delijn.be/stops/406815"], ["https://data.delijn.be/stops/504486", "https://data.delijn.be/stops/509486"], ["https://data.delijn.be/stops/507446", "https://data.delijn.be/stops/507682"], ["https://data.delijn.be/stops/203539", "https://data.delijn.be/stops/203689"], ["https://data.delijn.be/stops/202189", "https://data.delijn.be/stops/203147"], ["https://data.delijn.be/stops/400195", "https://data.delijn.be/stops/401167"], ["https://data.delijn.be/stops/501294", "https://data.delijn.be/stops/501398"], ["https://data.delijn.be/stops/302187", "https://data.delijn.be/stops/305081"], ["https://data.delijn.be/stops/502385", "https://data.delijn.be/stops/502670"], ["https://data.delijn.be/stops/201907", "https://data.delijn.be/stops/201908"], ["https://data.delijn.be/stops/105517", "https://data.delijn.be/stops/105522"], ["https://data.delijn.be/stops/301461", "https://data.delijn.be/stops/301491"], ["https://data.delijn.be/stops/405950", "https://data.delijn.be/stops/405998"], ["https://data.delijn.be/stops/403009", "https://data.delijn.be/stops/410325"], ["https://data.delijn.be/stops/206616", "https://data.delijn.be/stops/207624"], ["https://data.delijn.be/stops/300631", "https://data.delijn.be/stops/302202"], ["https://data.delijn.be/stops/201278", "https://data.delijn.be/stops/201349"], ["https://data.delijn.be/stops/402967", "https://data.delijn.be/stops/403708"], ["https://data.delijn.be/stops/300801", "https://data.delijn.be/stops/302409"], ["https://data.delijn.be/stops/305423", "https://data.delijn.be/stops/305508"], ["https://data.delijn.be/stops/306907", "https://data.delijn.be/stops/306908"], ["https://data.delijn.be/stops/504245", "https://data.delijn.be/stops/505928"], ["https://data.delijn.be/stops/303002", "https://data.delijn.be/stops/308661"], ["https://data.delijn.be/stops/305786", "https://data.delijn.be/stops/305787"], ["https://data.delijn.be/stops/101179", "https://data.delijn.be/stops/106792"], ["https://data.delijn.be/stops/503102", "https://data.delijn.be/stops/508102"], ["https://data.delijn.be/stops/405661", "https://data.delijn.be/stops/308759"], ["https://data.delijn.be/stops/408865", "https://data.delijn.be/stops/408869"], ["https://data.delijn.be/stops/300847", "https://data.delijn.be/stops/301568"], ["https://data.delijn.be/stops/101724", "https://data.delijn.be/stops/101726"], ["https://data.delijn.be/stops/105166", "https://data.delijn.be/stops/105373"], ["https://data.delijn.be/stops/504733", "https://data.delijn.be/stops/506241"], ["https://data.delijn.be/stops/303232", "https://data.delijn.be/stops/303236"], ["https://data.delijn.be/stops/206502", "https://data.delijn.be/stops/207153"], ["https://data.delijn.be/stops/302985", "https://data.delijn.be/stops/307075"], ["https://data.delijn.be/stops/405056", "https://data.delijn.be/stops/405058"], ["https://data.delijn.be/stops/204013", "https://data.delijn.be/stops/205013"], ["https://data.delijn.be/stops/404853", "https://data.delijn.be/stops/404947"], ["https://data.delijn.be/stops/401979", "https://data.delijn.be/stops/405545"], ["https://data.delijn.be/stops/200523", "https://data.delijn.be/stops/211130"], ["https://data.delijn.be/stops/101660", "https://data.delijn.be/stops/102637"], ["https://data.delijn.be/stops/303211", "https://data.delijn.be/stops/304186"], ["https://data.delijn.be/stops/400719", "https://data.delijn.be/stops/401910"], ["https://data.delijn.be/stops/303083", "https://data.delijn.be/stops/303085"], ["https://data.delijn.be/stops/501249", "https://data.delijn.be/stops/506236"], ["https://data.delijn.be/stops/201572", "https://data.delijn.be/stops/203194"], ["https://data.delijn.be/stops/201771", "https://data.delijn.be/stops/201828"], ["https://data.delijn.be/stops/504554", "https://data.delijn.be/stops/509563"], ["https://data.delijn.be/stops/101138", "https://data.delijn.be/stops/108415"], ["https://data.delijn.be/stops/504846", "https://data.delijn.be/stops/505000"], ["https://data.delijn.be/stops/505351", "https://data.delijn.be/stops/505723"], ["https://data.delijn.be/stops/202432", "https://data.delijn.be/stops/210087"], ["https://data.delijn.be/stops/202668", "https://data.delijn.be/stops/203668"], ["https://data.delijn.be/stops/301433", "https://data.delijn.be/stops/301436"], ["https://data.delijn.be/stops/504428", "https://data.delijn.be/stops/508297"], ["https://data.delijn.be/stops/301777", "https://data.delijn.be/stops/308430"], ["https://data.delijn.be/stops/401438", "https://data.delijn.be/stops/401446"], ["https://data.delijn.be/stops/202969", "https://data.delijn.be/stops/203164"], ["https://data.delijn.be/stops/504793", "https://data.delijn.be/stops/508524"], ["https://data.delijn.be/stops/407221", "https://data.delijn.be/stops/407364"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/208508"], ["https://data.delijn.be/stops/105969", "https://data.delijn.be/stops/107140"], ["https://data.delijn.be/stops/204194", "https://data.delijn.be/stops/204230"], ["https://data.delijn.be/stops/401312", "https://data.delijn.be/stops/401368"], ["https://data.delijn.be/stops/304287", "https://data.delijn.be/stops/304295"], ["https://data.delijn.be/stops/108475", "https://data.delijn.be/stops/108984"], ["https://data.delijn.be/stops/108417", "https://data.delijn.be/stops/109575"], ["https://data.delijn.be/stops/106111", "https://data.delijn.be/stops/106113"], ["https://data.delijn.be/stops/507038", "https://data.delijn.be/stops/507049"], ["https://data.delijn.be/stops/206683", "https://data.delijn.be/stops/206708"], ["https://data.delijn.be/stops/501118", "https://data.delijn.be/stops/506118"], ["https://data.delijn.be/stops/502928", "https://data.delijn.be/stops/509825"], ["https://data.delijn.be/stops/302002", "https://data.delijn.be/stops/306379"], ["https://data.delijn.be/stops/205099", "https://data.delijn.be/stops/205324"], ["https://data.delijn.be/stops/307693", "https://data.delijn.be/stops/307696"], ["https://data.delijn.be/stops/105131", "https://data.delijn.be/stops/105198"], ["https://data.delijn.be/stops/405620", "https://data.delijn.be/stops/405623"], ["https://data.delijn.be/stops/206108", "https://data.delijn.be/stops/207108"], ["https://data.delijn.be/stops/101984", "https://data.delijn.be/stops/109255"], ["https://data.delijn.be/stops/405566", "https://data.delijn.be/stops/405567"], ["https://data.delijn.be/stops/205386", "https://data.delijn.be/stops/205387"], ["https://data.delijn.be/stops/200188", "https://data.delijn.be/stops/200502"], ["https://data.delijn.be/stops/106454", "https://data.delijn.be/stops/106458"], ["https://data.delijn.be/stops/400407", "https://data.delijn.be/stops/400412"], ["https://data.delijn.be/stops/503499", "https://data.delijn.be/stops/508875"], ["https://data.delijn.be/stops/104014", "https://data.delijn.be/stops/104026"], ["https://data.delijn.be/stops/102757", "https://data.delijn.be/stops/107061"], ["https://data.delijn.be/stops/305156", "https://data.delijn.be/stops/305161"], ["https://data.delijn.be/stops/200605", "https://data.delijn.be/stops/201605"], ["https://data.delijn.be/stops/300330", "https://data.delijn.be/stops/300340"], ["https://data.delijn.be/stops/202522", "https://data.delijn.be/stops/203522"], ["https://data.delijn.be/stops/507332", "https://data.delijn.be/stops/507365"], ["https://data.delijn.be/stops/103994", "https://data.delijn.be/stops/108389"], ["https://data.delijn.be/stops/301351", "https://data.delijn.be/stops/303641"], ["https://data.delijn.be/stops/504649", "https://data.delijn.be/stops/509640"], ["https://data.delijn.be/stops/504687", "https://data.delijn.be/stops/504767"], ["https://data.delijn.be/stops/105110", "https://data.delijn.be/stops/105510"], ["https://data.delijn.be/stops/401356", "https://data.delijn.be/stops/401359"], ["https://data.delijn.be/stops/405497", "https://data.delijn.be/stops/405585"], ["https://data.delijn.be/stops/202464", "https://data.delijn.be/stops/203467"], ["https://data.delijn.be/stops/402936", "https://data.delijn.be/stops/403909"], ["https://data.delijn.be/stops/202303", "https://data.delijn.be/stops/202304"], ["https://data.delijn.be/stops/301001", "https://data.delijn.be/stops/303650"], ["https://data.delijn.be/stops/301129", "https://data.delijn.be/stops/307636"], ["https://data.delijn.be/stops/405558", "https://data.delijn.be/stops/405559"], ["https://data.delijn.be/stops/503048", "https://data.delijn.be/stops/508048"], ["https://data.delijn.be/stops/504525", "https://data.delijn.be/stops/504599"], ["https://data.delijn.be/stops/503828", "https://data.delijn.be/stops/508828"], ["https://data.delijn.be/stops/505586", "https://data.delijn.be/stops/507003"], ["https://data.delijn.be/stops/300720", "https://data.delijn.be/stops/306366"], ["https://data.delijn.be/stops/502320", "https://data.delijn.be/stops/505508"], ["https://data.delijn.be/stops/200687", "https://data.delijn.be/stops/200693"], ["https://data.delijn.be/stops/104403", "https://data.delijn.be/stops/204622"], ["https://data.delijn.be/stops/205992", "https://data.delijn.be/stops/208799"], ["https://data.delijn.be/stops/209268", "https://data.delijn.be/stops/209270"], ["https://data.delijn.be/stops/503741", "https://data.delijn.be/stops/508741"], ["https://data.delijn.be/stops/505026", "https://data.delijn.be/stops/505833"], ["https://data.delijn.be/stops/503803", "https://data.delijn.be/stops/509587"], ["https://data.delijn.be/stops/408821", "https://data.delijn.be/stops/408831"], ["https://data.delijn.be/stops/200262", "https://data.delijn.be/stops/200263"], ["https://data.delijn.be/stops/505143", "https://data.delijn.be/stops/509053"], ["https://data.delijn.be/stops/208140", "https://data.delijn.be/stops/209140"], ["https://data.delijn.be/stops/403053", "https://data.delijn.be/stops/403315"], ["https://data.delijn.be/stops/407674", "https://data.delijn.be/stops/407675"], ["https://data.delijn.be/stops/204225", "https://data.delijn.be/stops/205224"], ["https://data.delijn.be/stops/303695", "https://data.delijn.be/stops/303748"], ["https://data.delijn.be/stops/102171", "https://data.delijn.be/stops/102840"], ["https://data.delijn.be/stops/509647", "https://data.delijn.be/stops/509648"], ["https://data.delijn.be/stops/405208", "https://data.delijn.be/stops/405254"], ["https://data.delijn.be/stops/105984", "https://data.delijn.be/stops/105985"], ["https://data.delijn.be/stops/409318", "https://data.delijn.be/stops/409319"], ["https://data.delijn.be/stops/505067", "https://data.delijn.be/stops/505697"], ["https://data.delijn.be/stops/408585", "https://data.delijn.be/stops/408587"], ["https://data.delijn.be/stops/304387", "https://data.delijn.be/stops/306874"], ["https://data.delijn.be/stops/204194", "https://data.delijn.be/stops/205234"], ["https://data.delijn.be/stops/206215", "https://data.delijn.be/stops/206821"], ["https://data.delijn.be/stops/402133", "https://data.delijn.be/stops/406188"], ["https://data.delijn.be/stops/101969", "https://data.delijn.be/stops/108212"], ["https://data.delijn.be/stops/405259", "https://data.delijn.be/stops/405274"], ["https://data.delijn.be/stops/101653", "https://data.delijn.be/stops/101654"], ["https://data.delijn.be/stops/303174", "https://data.delijn.be/stops/303175"], ["https://data.delijn.be/stops/103473", "https://data.delijn.be/stops/108269"], ["https://data.delijn.be/stops/502047", "https://data.delijn.be/stops/502620"], ["https://data.delijn.be/stops/204397", "https://data.delijn.be/stops/205772"], ["https://data.delijn.be/stops/106193", "https://data.delijn.be/stops/107442"], ["https://data.delijn.be/stops/200093", "https://data.delijn.be/stops/204357"], ["https://data.delijn.be/stops/302077", "https://data.delijn.be/stops/303516"], ["https://data.delijn.be/stops/201833", "https://data.delijn.be/stops/204987"], ["https://data.delijn.be/stops/503755", "https://data.delijn.be/stops/504964"], ["https://data.delijn.be/stops/409350", "https://data.delijn.be/stops/409368"], ["https://data.delijn.be/stops/400776", "https://data.delijn.be/stops/406675"], ["https://data.delijn.be/stops/407835", "https://data.delijn.be/stops/407949"], ["https://data.delijn.be/stops/501388", "https://data.delijn.be/stops/506104"], ["https://data.delijn.be/stops/304112", "https://data.delijn.be/stops/304113"], ["https://data.delijn.be/stops/404238", "https://data.delijn.be/stops/405653"], ["https://data.delijn.be/stops/301462", "https://data.delijn.be/stops/301463"], ["https://data.delijn.be/stops/405548", "https://data.delijn.be/stops/405549"], ["https://data.delijn.be/stops/409573", "https://data.delijn.be/stops/409575"], ["https://data.delijn.be/stops/502634", "https://data.delijn.be/stops/507445"], ["https://data.delijn.be/stops/202823", "https://data.delijn.be/stops/203920"], ["https://data.delijn.be/stops/203387", "https://data.delijn.be/stops/203388"], ["https://data.delijn.be/stops/301152", "https://data.delijn.be/stops/308811"], ["https://data.delijn.be/stops/506064", "https://data.delijn.be/stops/506133"], ["https://data.delijn.be/stops/300084", "https://data.delijn.be/stops/300137"], ["https://data.delijn.be/stops/204320", "https://data.delijn.be/stops/205318"], ["https://data.delijn.be/stops/304797", "https://data.delijn.be/stops/306646"], ["https://data.delijn.be/stops/506386", "https://data.delijn.be/stops/506502"], ["https://data.delijn.be/stops/503182", "https://data.delijn.be/stops/505778"], ["https://data.delijn.be/stops/407979", "https://data.delijn.be/stops/408308"], ["https://data.delijn.be/stops/504101", "https://data.delijn.be/stops/504202"], ["https://data.delijn.be/stops/400694", "https://data.delijn.be/stops/400859"], ["https://data.delijn.be/stops/200111", "https://data.delijn.be/stops/201111"], ["https://data.delijn.be/stops/106243", "https://data.delijn.be/stops/106246"], ["https://data.delijn.be/stops/203482", "https://data.delijn.be/stops/206933"], ["https://data.delijn.be/stops/301468", "https://data.delijn.be/stops/306307"], ["https://data.delijn.be/stops/103262", "https://data.delijn.be/stops/204446"], ["https://data.delijn.be/stops/101355", "https://data.delijn.be/stops/101670"], ["https://data.delijn.be/stops/503427", "https://data.delijn.be/stops/509939"], ["https://data.delijn.be/stops/403482", "https://data.delijn.be/stops/403590"], ["https://data.delijn.be/stops/206672", "https://data.delijn.be/stops/208633"], ["https://data.delijn.be/stops/206212", "https://data.delijn.be/stops/206814"], ["https://data.delijn.be/stops/302913", "https://data.delijn.be/stops/302914"], ["https://data.delijn.be/stops/401783", "https://data.delijn.be/stops/401799"], ["https://data.delijn.be/stops/303641", "https://data.delijn.be/stops/304521"], ["https://data.delijn.be/stops/406290", "https://data.delijn.be/stops/406416"], ["https://data.delijn.be/stops/204330", "https://data.delijn.be/stops/205539"], ["https://data.delijn.be/stops/507236", "https://data.delijn.be/stops/507240"], ["https://data.delijn.be/stops/206683", "https://data.delijn.be/stops/207606"], ["https://data.delijn.be/stops/407952", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/201115", "https://data.delijn.be/stops/210103"], ["https://data.delijn.be/stops/201885", "https://data.delijn.be/stops/210005"], ["https://data.delijn.be/stops/302387", "https://data.delijn.be/stops/302393"], ["https://data.delijn.be/stops/206652", "https://data.delijn.be/stops/207651"], ["https://data.delijn.be/stops/400739", "https://data.delijn.be/stops/404261"], ["https://data.delijn.be/stops/200406", "https://data.delijn.be/stops/201508"], ["https://data.delijn.be/stops/503260", "https://data.delijn.be/stops/503476"], ["https://data.delijn.be/stops/103961", "https://data.delijn.be/stops/108168"], ["https://data.delijn.be/stops/203369", "https://data.delijn.be/stops/203372"], ["https://data.delijn.be/stops/405760", "https://data.delijn.be/stops/405761"], ["https://data.delijn.be/stops/103472", "https://data.delijn.be/stops/103619"], ["https://data.delijn.be/stops/406002", "https://data.delijn.be/stops/407914"], ["https://data.delijn.be/stops/200731", "https://data.delijn.be/stops/203590"], ["https://data.delijn.be/stops/101366", "https://data.delijn.be/stops/103241"], ["https://data.delijn.be/stops/105759", "https://data.delijn.be/stops/109810"], ["https://data.delijn.be/stops/102547", "https://data.delijn.be/stops/405019"], ["https://data.delijn.be/stops/303124", "https://data.delijn.be/stops/307075"], ["https://data.delijn.be/stops/103045", "https://data.delijn.be/stops/107120"], ["https://data.delijn.be/stops/301897", "https://data.delijn.be/stops/305727"], ["https://data.delijn.be/stops/402701", "https://data.delijn.be/stops/405994"], ["https://data.delijn.be/stops/106873", "https://data.delijn.be/stops/106875"], ["https://data.delijn.be/stops/507257", "https://data.delijn.be/stops/507263"], ["https://data.delijn.be/stops/200107", "https://data.delijn.be/stops/201106"], ["https://data.delijn.be/stops/102251", "https://data.delijn.be/stops/102409"], ["https://data.delijn.be/stops/505275", "https://data.delijn.be/stops/508013"], ["https://data.delijn.be/stops/305000", "https://data.delijn.be/stops/305023"], ["https://data.delijn.be/stops/404546", "https://data.delijn.be/stops/404574"], ["https://data.delijn.be/stops/101178", "https://data.delijn.be/stops/106741"], ["https://data.delijn.be/stops/400695", "https://data.delijn.be/stops/400785"], ["https://data.delijn.be/stops/505248", "https://data.delijn.be/stops/505906"], ["https://data.delijn.be/stops/501768", "https://data.delijn.be/stops/502467"], ["https://data.delijn.be/stops/307687", "https://data.delijn.be/stops/307688"], ["https://data.delijn.be/stops/305112", "https://data.delijn.be/stops/305113"], ["https://data.delijn.be/stops/104398", "https://data.delijn.be/stops/104399"], ["https://data.delijn.be/stops/206633", "https://data.delijn.be/stops/206636"], ["https://data.delijn.be/stops/308147", "https://data.delijn.be/stops/308149"], ["https://data.delijn.be/stops/202330", "https://data.delijn.be/stops/203330"], ["https://data.delijn.be/stops/407867", "https://data.delijn.be/stops/408178"], ["https://data.delijn.be/stops/504160", "https://data.delijn.be/stops/504194"], ["https://data.delijn.be/stops/502363", "https://data.delijn.be/stops/502512"], ["https://data.delijn.be/stops/304096", "https://data.delijn.be/stops/304103"], ["https://data.delijn.be/stops/300722", "https://data.delijn.be/stops/300724"], ["https://data.delijn.be/stops/107611", "https://data.delijn.be/stops/107728"], ["https://data.delijn.be/stops/207630", "https://data.delijn.be/stops/208571"], ["https://data.delijn.be/stops/210850", "https://data.delijn.be/stops/211849"], ["https://data.delijn.be/stops/501079", "https://data.delijn.be/stops/501771"], ["https://data.delijn.be/stops/200593", "https://data.delijn.be/stops/201593"], ["https://data.delijn.be/stops/105338", "https://data.delijn.be/stops/109618"], ["https://data.delijn.be/stops/202023", "https://data.delijn.be/stops/203023"], ["https://data.delijn.be/stops/507176", "https://data.delijn.be/stops/507182"], ["https://data.delijn.be/stops/105427", "https://data.delijn.be/stops/109980"], ["https://data.delijn.be/stops/201196", "https://data.delijn.be/stops/202756"], ["https://data.delijn.be/stops/101979", "https://data.delijn.be/stops/108288"], ["https://data.delijn.be/stops/103217", "https://data.delijn.be/stops/103591"], ["https://data.delijn.be/stops/403300", "https://data.delijn.be/stops/403360"], ["https://data.delijn.be/stops/300018", "https://data.delijn.be/stops/301134"], ["https://data.delijn.be/stops/208037", "https://data.delijn.be/stops/209019"], ["https://data.delijn.be/stops/103294", "https://data.delijn.be/stops/105029"], ["https://data.delijn.be/stops/400146", "https://data.delijn.be/stops/409199"], ["https://data.delijn.be/stops/208556", "https://data.delijn.be/stops/208558"], ["https://data.delijn.be/stops/406768", "https://data.delijn.be/stops/407109"], ["https://data.delijn.be/stops/306396", "https://data.delijn.be/stops/306398"], ["https://data.delijn.be/stops/208838", "https://data.delijn.be/stops/209209"], ["https://data.delijn.be/stops/209150", "https://data.delijn.be/stops/209521"], ["https://data.delijn.be/stops/206355", "https://data.delijn.be/stops/207347"], ["https://data.delijn.be/stops/406955", "https://data.delijn.be/stops/406958"], ["https://data.delijn.be/stops/307792", "https://data.delijn.be/stops/333234"], ["https://data.delijn.be/stops/503408", "https://data.delijn.be/stops/503445"], ["https://data.delijn.be/stops/508634", "https://data.delijn.be/stops/508640"], ["https://data.delijn.be/stops/203185", "https://data.delijn.be/stops/205104"], ["https://data.delijn.be/stops/206027", "https://data.delijn.be/stops/207720"], ["https://data.delijn.be/stops/505560", "https://data.delijn.be/stops/507330"], ["https://data.delijn.be/stops/405856", "https://data.delijn.be/stops/409715"], ["https://data.delijn.be/stops/403370", "https://data.delijn.be/stops/410281"], ["https://data.delijn.be/stops/107004", "https://data.delijn.be/stops/107007"], ["https://data.delijn.be/stops/507305", "https://data.delijn.be/stops/507312"], ["https://data.delijn.be/stops/501400", "https://data.delijn.be/stops/506397"], ["https://data.delijn.be/stops/203795", "https://data.delijn.be/stops/203796"], ["https://data.delijn.be/stops/304018", "https://data.delijn.be/stops/304019"], ["https://data.delijn.be/stops/506015", "https://data.delijn.be/stops/506618"], ["https://data.delijn.be/stops/403054", "https://data.delijn.be/stops/410324"], ["https://data.delijn.be/stops/505633", "https://data.delijn.be/stops/505634"], ["https://data.delijn.be/stops/204925", "https://data.delijn.be/stops/218935"], ["https://data.delijn.be/stops/300414", "https://data.delijn.be/stops/300603"], ["https://data.delijn.be/stops/105898", "https://data.delijn.be/stops/105899"], ["https://data.delijn.be/stops/401179", "https://data.delijn.be/stops/401188"], ["https://data.delijn.be/stops/105372", "https://data.delijn.be/stops/107503"], ["https://data.delijn.be/stops/306876", "https://data.delijn.be/stops/307501"], ["https://data.delijn.be/stops/303253", "https://data.delijn.be/stops/305661"], ["https://data.delijn.be/stops/101442", "https://data.delijn.be/stops/101664"], ["https://data.delijn.be/stops/404324", "https://data.delijn.be/stops/404329"], ["https://data.delijn.be/stops/202673", "https://data.delijn.be/stops/211035"], ["https://data.delijn.be/stops/206351", "https://data.delijn.be/stops/207376"], ["https://data.delijn.be/stops/307936", "https://data.delijn.be/stops/308779"], ["https://data.delijn.be/stops/108026", "https://data.delijn.be/stops/109635"], ["https://data.delijn.be/stops/301330", "https://data.delijn.be/stops/301359"], ["https://data.delijn.be/stops/505920", "https://data.delijn.be/stops/508919"], ["https://data.delijn.be/stops/301496", "https://data.delijn.be/stops/308704"], ["https://data.delijn.be/stops/508402", "https://data.delijn.be/stops/509770"], ["https://data.delijn.be/stops/507364", "https://data.delijn.be/stops/507713"], ["https://data.delijn.be/stops/201334", "https://data.delijn.be/stops/204920"], ["https://data.delijn.be/stops/200448", "https://data.delijn.be/stops/201448"], ["https://data.delijn.be/stops/201132", "https://data.delijn.be/stops/205556"], ["https://data.delijn.be/stops/303636", "https://data.delijn.be/stops/307883"], ["https://data.delijn.be/stops/404793", "https://data.delijn.be/stops/404801"], ["https://data.delijn.be/stops/108367", "https://data.delijn.be/stops/108368"], ["https://data.delijn.be/stops/200435", "https://data.delijn.be/stops/201783"], ["https://data.delijn.be/stops/507060", "https://data.delijn.be/stops/507707"], ["https://data.delijn.be/stops/300002", "https://data.delijn.be/stops/301779"], ["https://data.delijn.be/stops/206068", "https://data.delijn.be/stops/207415"], ["https://data.delijn.be/stops/303035", "https://data.delijn.be/stops/303113"], ["https://data.delijn.be/stops/408204", "https://data.delijn.be/stops/408380"], ["https://data.delijn.be/stops/107917", "https://data.delijn.be/stops/207742"], ["https://data.delijn.be/stops/503526", "https://data.delijn.be/stops/508526"], ["https://data.delijn.be/stops/301980", "https://data.delijn.be/stops/304582"], ["https://data.delijn.be/stops/106980", "https://data.delijn.be/stops/106982"], ["https://data.delijn.be/stops/401365", "https://data.delijn.be/stops/401375"], ["https://data.delijn.be/stops/202844", "https://data.delijn.be/stops/203910"], ["https://data.delijn.be/stops/301601", "https://data.delijn.be/stops/306260"], ["https://data.delijn.be/stops/204972", "https://data.delijn.be/stops/207067"], ["https://data.delijn.be/stops/400861", "https://data.delijn.be/stops/400867"], ["https://data.delijn.be/stops/101653", "https://data.delijn.be/stops/107918"], ["https://data.delijn.be/stops/202620", "https://data.delijn.be/stops/203619"], ["https://data.delijn.be/stops/105415", "https://data.delijn.be/stops/105420"], ["https://data.delijn.be/stops/406451", "https://data.delijn.be/stops/406456"], ["https://data.delijn.be/stops/201719", "https://data.delijn.be/stops/211025"], ["https://data.delijn.be/stops/304849", "https://data.delijn.be/stops/308525"], ["https://data.delijn.be/stops/200747", "https://data.delijn.be/stops/202244"], ["https://data.delijn.be/stops/102416", "https://data.delijn.be/stops/108464"], ["https://data.delijn.be/stops/209658", "https://data.delijn.be/stops/209659"], ["https://data.delijn.be/stops/402176", "https://data.delijn.be/stops/402471"], ["https://data.delijn.be/stops/505082", "https://data.delijn.be/stops/507685"], ["https://data.delijn.be/stops/206603", "https://data.delijn.be/stops/307771"], ["https://data.delijn.be/stops/300697", "https://data.delijn.be/stops/306939"], ["https://data.delijn.be/stops/303892", "https://data.delijn.be/stops/305576"], ["https://data.delijn.be/stops/102457", "https://data.delijn.be/stops/103376"], ["https://data.delijn.be/stops/502596", "https://data.delijn.be/stops/507596"], ["https://data.delijn.be/stops/402170", "https://data.delijn.be/stops/402206"], ["https://data.delijn.be/stops/504650", "https://data.delijn.be/stops/504651"], ["https://data.delijn.be/stops/208190", "https://data.delijn.be/stops/209190"], ["https://data.delijn.be/stops/209270", "https://data.delijn.be/stops/219006"], ["https://data.delijn.be/stops/205972", "https://data.delijn.be/stops/207067"], ["https://data.delijn.be/stops/300175", "https://data.delijn.be/stops/300176"], ["https://data.delijn.be/stops/502143", "https://data.delijn.be/stops/507143"], ["https://data.delijn.be/stops/304142", "https://data.delijn.be/stops/304171"], ["https://data.delijn.be/stops/403087", "https://data.delijn.be/stops/410328"], ["https://data.delijn.be/stops/306654", "https://data.delijn.be/stops/306655"], ["https://data.delijn.be/stops/108267", "https://data.delijn.be/stops/108268"], ["https://data.delijn.be/stops/106089", "https://data.delijn.be/stops/106092"], ["https://data.delijn.be/stops/206976", "https://data.delijn.be/stops/207976"], ["https://data.delijn.be/stops/307137", "https://data.delijn.be/stops/308717"], ["https://data.delijn.be/stops/206768", "https://data.delijn.be/stops/206940"], ["https://data.delijn.be/stops/401134", "https://data.delijn.be/stops/401135"], ["https://data.delijn.be/stops/301237", "https://data.delijn.be/stops/301238"], ["https://data.delijn.be/stops/205427", "https://data.delijn.be/stops/205428"], ["https://data.delijn.be/stops/206374", "https://data.delijn.be/stops/207374"], ["https://data.delijn.be/stops/207933", "https://data.delijn.be/stops/210003"], ["https://data.delijn.be/stops/501599", "https://data.delijn.be/stops/506690"], ["https://data.delijn.be/stops/405458", "https://data.delijn.be/stops/302849"], ["https://data.delijn.be/stops/202710", "https://data.delijn.be/stops/203728"], ["https://data.delijn.be/stops/504368", "https://data.delijn.be/stops/508035"], ["https://data.delijn.be/stops/208102", "https://data.delijn.be/stops/218005"], ["https://data.delijn.be/stops/304413", "https://data.delijn.be/stops/307355"], ["https://data.delijn.be/stops/406155", "https://data.delijn.be/stops/406274"], ["https://data.delijn.be/stops/405092", "https://data.delijn.be/stops/405708"], ["https://data.delijn.be/stops/404410", "https://data.delijn.be/stops/404411"], ["https://data.delijn.be/stops/406807", "https://data.delijn.be/stops/407914"], ["https://data.delijn.be/stops/303360", "https://data.delijn.be/stops/307809"], ["https://data.delijn.be/stops/501051", "https://data.delijn.be/stops/507134"], ["https://data.delijn.be/stops/103162", "https://data.delijn.be/stops/109739"], ["https://data.delijn.be/stops/200100", "https://data.delijn.be/stops/200102"], ["https://data.delijn.be/stops/305007", "https://data.delijn.be/stops/305019"], ["https://data.delijn.be/stops/206152", "https://data.delijn.be/stops/206153"], ["https://data.delijn.be/stops/407858", "https://data.delijn.be/stops/407978"], ["https://data.delijn.be/stops/504368", "https://data.delijn.be/stops/508949"], ["https://data.delijn.be/stops/400943", "https://data.delijn.be/stops/406977"], ["https://data.delijn.be/stops/304125", "https://data.delijn.be/stops/305896"], ["https://data.delijn.be/stops/503626", "https://data.delijn.be/stops/590008"], ["https://data.delijn.be/stops/307954", "https://data.delijn.be/stops/307955"], ["https://data.delijn.be/stops/108644", "https://data.delijn.be/stops/109682"], ["https://data.delijn.be/stops/503688", "https://data.delijn.be/stops/508688"], ["https://data.delijn.be/stops/207758", "https://data.delijn.be/stops/208185"], ["https://data.delijn.be/stops/405806", "https://data.delijn.be/stops/405807"], ["https://data.delijn.be/stops/508009", "https://data.delijn.be/stops/508086"], ["https://data.delijn.be/stops/305623", "https://data.delijn.be/stops/308410"], ["https://data.delijn.be/stops/401821", "https://data.delijn.be/stops/410251"], ["https://data.delijn.be/stops/201780", "https://data.delijn.be/stops/201821"], ["https://data.delijn.be/stops/209452", "https://data.delijn.be/stops/209582"], ["https://data.delijn.be/stops/206972", "https://data.delijn.be/stops/207971"], ["https://data.delijn.be/stops/209355", "https://data.delijn.be/stops/209499"], ["https://data.delijn.be/stops/408843", "https://data.delijn.be/stops/408926"], ["https://data.delijn.be/stops/106740", "https://data.delijn.be/stops/107197"], ["https://data.delijn.be/stops/503722", "https://data.delijn.be/stops/504872"], ["https://data.delijn.be/stops/404883", "https://data.delijn.be/stops/404961"], ["https://data.delijn.be/stops/505022", "https://data.delijn.be/stops/507526"], ["https://data.delijn.be/stops/508832", "https://data.delijn.be/stops/508834"], ["https://data.delijn.be/stops/502707", "https://data.delijn.be/stops/505066"], ["https://data.delijn.be/stops/401516", "https://data.delijn.be/stops/401517"], ["https://data.delijn.be/stops/200144", "https://data.delijn.be/stops/201335"], ["https://data.delijn.be/stops/301079", "https://data.delijn.be/stops/304580"], ["https://data.delijn.be/stops/303400", "https://data.delijn.be/stops/304828"], ["https://data.delijn.be/stops/101849", "https://data.delijn.be/stops/102091"], ["https://data.delijn.be/stops/200807", "https://data.delijn.be/stops/203388"], ["https://data.delijn.be/stops/102198", "https://data.delijn.be/stops/105844"], ["https://data.delijn.be/stops/402573", "https://data.delijn.be/stops/402616"], ["https://data.delijn.be/stops/301300", "https://data.delijn.be/stops/307941"], ["https://data.delijn.be/stops/508900", "https://data.delijn.be/stops/508907"], ["https://data.delijn.be/stops/301236", "https://data.delijn.be/stops/307623"], ["https://data.delijn.be/stops/304826", "https://data.delijn.be/stops/306178"], ["https://data.delijn.be/stops/200582", "https://data.delijn.be/stops/210607"], ["https://data.delijn.be/stops/405825", "https://data.delijn.be/stops/409742"], ["https://data.delijn.be/stops/300073", "https://data.delijn.be/stops/304671"], ["https://data.delijn.be/stops/308740", "https://data.delijn.be/stops/308747"], ["https://data.delijn.be/stops/503428", "https://data.delijn.be/stops/505185"], ["https://data.delijn.be/stops/304544", "https://data.delijn.be/stops/304663"], ["https://data.delijn.be/stops/401786", "https://data.delijn.be/stops/406001"], ["https://data.delijn.be/stops/509755", "https://data.delijn.be/stops/509756"], ["https://data.delijn.be/stops/208631", "https://data.delijn.be/stops/209632"], ["https://data.delijn.be/stops/103349", "https://data.delijn.be/stops/104865"], ["https://data.delijn.be/stops/405980", "https://data.delijn.be/stops/405984"], ["https://data.delijn.be/stops/108808", "https://data.delijn.be/stops/109733"], ["https://data.delijn.be/stops/108612", "https://data.delijn.be/stops/300026"], ["https://data.delijn.be/stops/503083", "https://data.delijn.be/stops/508083"], ["https://data.delijn.be/stops/408861", "https://data.delijn.be/stops/408883"], ["https://data.delijn.be/stops/510001", "https://data.delijn.be/stops/510002"], ["https://data.delijn.be/stops/300621", "https://data.delijn.be/stops/303523"], ["https://data.delijn.be/stops/308235", "https://data.delijn.be/stops/308238"], ["https://data.delijn.be/stops/406178", "https://data.delijn.be/stops/406893"], ["https://data.delijn.be/stops/202084", "https://data.delijn.be/stops/203085"], ["https://data.delijn.be/stops/206062", "https://data.delijn.be/stops/207062"], ["https://data.delijn.be/stops/402067", "https://data.delijn.be/stops/410335"], ["https://data.delijn.be/stops/307400", "https://data.delijn.be/stops/307404"], ["https://data.delijn.be/stops/502543", "https://data.delijn.be/stops/505748"], ["https://data.delijn.be/stops/300429", "https://data.delijn.be/stops/300430"], ["https://data.delijn.be/stops/206493", "https://data.delijn.be/stops/206494"], ["https://data.delijn.be/stops/504226", "https://data.delijn.be/stops/509226"], ["https://data.delijn.be/stops/204110", "https://data.delijn.be/stops/204111"], ["https://data.delijn.be/stops/101592", "https://data.delijn.be/stops/103036"], ["https://data.delijn.be/stops/406882", "https://data.delijn.be/stops/409411"], ["https://data.delijn.be/stops/300624", "https://data.delijn.be/stops/300628"], ["https://data.delijn.be/stops/302276", "https://data.delijn.be/stops/302277"], ["https://data.delijn.be/stops/504037", "https://data.delijn.be/stops/504659"], ["https://data.delijn.be/stops/301935", "https://data.delijn.be/stops/301936"], ["https://data.delijn.be/stops/408637", "https://data.delijn.be/stops/408654"], ["https://data.delijn.be/stops/203180", "https://data.delijn.be/stops/205080"], ["https://data.delijn.be/stops/204756", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/400660", "https://data.delijn.be/stops/400665"], ["https://data.delijn.be/stops/109038", "https://data.delijn.be/stops/109082"], ["https://data.delijn.be/stops/103074", "https://data.delijn.be/stops/109522"], ["https://data.delijn.be/stops/503021", "https://data.delijn.be/stops/508544"], ["https://data.delijn.be/stops/405449", "https://data.delijn.be/stops/405462"], ["https://data.delijn.be/stops/209221", "https://data.delijn.be/stops/209592"], ["https://data.delijn.be/stops/202885", "https://data.delijn.be/stops/203885"], ["https://data.delijn.be/stops/202726", "https://data.delijn.be/stops/203726"], ["https://data.delijn.be/stops/207940", "https://data.delijn.be/stops/209564"], ["https://data.delijn.be/stops/209599", "https://data.delijn.be/stops/306368"], ["https://data.delijn.be/stops/108381", "https://data.delijn.be/stops/108447"], ["https://data.delijn.be/stops/204714", "https://data.delijn.be/stops/205896"], ["https://data.delijn.be/stops/102217", "https://data.delijn.be/stops/105531"], ["https://data.delijn.be/stops/102519", "https://data.delijn.be/stops/102551"], ["https://data.delijn.be/stops/108299", "https://data.delijn.be/stops/108301"], ["https://data.delijn.be/stops/402621", "https://data.delijn.be/stops/402628"], ["https://data.delijn.be/stops/206672", "https://data.delijn.be/stops/208094"], ["https://data.delijn.be/stops/102125", "https://data.delijn.be/stops/102790"], ["https://data.delijn.be/stops/200853", "https://data.delijn.be/stops/200854"], ["https://data.delijn.be/stops/403705", "https://data.delijn.be/stops/403767"], ["https://data.delijn.be/stops/106226", "https://data.delijn.be/stops/106228"], ["https://data.delijn.be/stops/208201", "https://data.delijn.be/stops/209200"], ["https://data.delijn.be/stops/404771", "https://data.delijn.be/stops/404832"], ["https://data.delijn.be/stops/404141", "https://data.delijn.be/stops/405918"], ["https://data.delijn.be/stops/509121", "https://data.delijn.be/stops/509132"], ["https://data.delijn.be/stops/503298", "https://data.delijn.be/stops/503304"], ["https://data.delijn.be/stops/409360", "https://data.delijn.be/stops/409386"], ["https://data.delijn.be/stops/303719", "https://data.delijn.be/stops/303751"], ["https://data.delijn.be/stops/305910", "https://data.delijn.be/stops/306396"], ["https://data.delijn.be/stops/208091", "https://data.delijn.be/stops/209657"], ["https://data.delijn.be/stops/204243", "https://data.delijn.be/stops/205244"], ["https://data.delijn.be/stops/200908", "https://data.delijn.be/stops/202251"], ["https://data.delijn.be/stops/403209", "https://data.delijn.be/stops/410215"], ["https://data.delijn.be/stops/404481", "https://data.delijn.be/stops/410156"], ["https://data.delijn.be/stops/101073", "https://data.delijn.be/stops/107153"], ["https://data.delijn.be/stops/205633", "https://data.delijn.be/stops/205634"], ["https://data.delijn.be/stops/407958", "https://data.delijn.be/stops/407960"], ["https://data.delijn.be/stops/501282", "https://data.delijn.be/stops/506783"], ["https://data.delijn.be/stops/204018", "https://data.delijn.be/stops/205017"], ["https://data.delijn.be/stops/503262", "https://data.delijn.be/stops/508231"], ["https://data.delijn.be/stops/106050", "https://data.delijn.be/stops/106100"], ["https://data.delijn.be/stops/503462", "https://data.delijn.be/stops/507716"], ["https://data.delijn.be/stops/509040", "https://data.delijn.be/stops/509044"], ["https://data.delijn.be/stops/202106", "https://data.delijn.be/stops/203106"], ["https://data.delijn.be/stops/204679", "https://data.delijn.be/stops/205658"], ["https://data.delijn.be/stops/208349", "https://data.delijn.be/stops/208784"], ["https://data.delijn.be/stops/404357", "https://data.delijn.be/stops/404358"], ["https://data.delijn.be/stops/501002", "https://data.delijn.be/stops/501215"], ["https://data.delijn.be/stops/206881", "https://data.delijn.be/stops/206883"], ["https://data.delijn.be/stops/106751", "https://data.delijn.be/stops/109622"], ["https://data.delijn.be/stops/101673", "https://data.delijn.be/stops/103159"], ["https://data.delijn.be/stops/204985", "https://data.delijn.be/stops/218019"], ["https://data.delijn.be/stops/302610", "https://data.delijn.be/stops/302616"], ["https://data.delijn.be/stops/109176", "https://data.delijn.be/stops/109249"], ["https://data.delijn.be/stops/502490", "https://data.delijn.be/stops/502740"], ["https://data.delijn.be/stops/406964", "https://data.delijn.be/stops/406965"], ["https://data.delijn.be/stops/301715", "https://data.delijn.be/stops/301760"], ["https://data.delijn.be/stops/502591", "https://data.delijn.be/stops/502627"], ["https://data.delijn.be/stops/301912", "https://data.delijn.be/stops/301913"], ["https://data.delijn.be/stops/101578", "https://data.delijn.be/stops/101579"], ["https://data.delijn.be/stops/408540", "https://data.delijn.be/stops/408795"], ["https://data.delijn.be/stops/405112", "https://data.delijn.be/stops/405113"], ["https://data.delijn.be/stops/300732", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/202082", "https://data.delijn.be/stops/203031"], ["https://data.delijn.be/stops/300293", "https://data.delijn.be/stops/306654"], ["https://data.delijn.be/stops/500928", "https://data.delijn.be/stops/501001"], ["https://data.delijn.be/stops/501174", "https://data.delijn.be/stops/506782"], ["https://data.delijn.be/stops/402656", "https://data.delijn.be/stops/402739"], ["https://data.delijn.be/stops/207696", "https://data.delijn.be/stops/207712"], ["https://data.delijn.be/stops/407532", "https://data.delijn.be/stops/407533"], ["https://data.delijn.be/stops/505553", "https://data.delijn.be/stops/507256"], ["https://data.delijn.be/stops/306386", "https://data.delijn.be/stops/306387"], ["https://data.delijn.be/stops/203660", "https://data.delijn.be/stops/210659"], ["https://data.delijn.be/stops/402322", "https://data.delijn.be/stops/402328"], ["https://data.delijn.be/stops/501562", "https://data.delijn.be/stops/506364"], ["https://data.delijn.be/stops/204157", "https://data.delijn.be/stops/204591"], ["https://data.delijn.be/stops/404510", "https://data.delijn.be/stops/406753"], ["https://data.delijn.be/stops/506104", "https://data.delijn.be/stops/506107"], ["https://data.delijn.be/stops/200092", "https://data.delijn.be/stops/201091"], ["https://data.delijn.be/stops/201104", "https://data.delijn.be/stops/201363"], ["https://data.delijn.be/stops/508320", "https://data.delijn.be/stops/508323"], ["https://data.delijn.be/stops/304306", "https://data.delijn.be/stops/307005"], ["https://data.delijn.be/stops/400390", "https://data.delijn.be/stops/406484"], ["https://data.delijn.be/stops/409345", "https://data.delijn.be/stops/409347"], ["https://data.delijn.be/stops/503930", "https://data.delijn.be/stops/508930"], ["https://data.delijn.be/stops/406999", "https://data.delijn.be/stops/408628"], ["https://data.delijn.be/stops/206286", "https://data.delijn.be/stops/207285"], ["https://data.delijn.be/stops/109935", "https://data.delijn.be/stops/109948"], ["https://data.delijn.be/stops/204229", "https://data.delijn.be/stops/205229"], ["https://data.delijn.be/stops/202361", "https://data.delijn.be/stops/208888"], ["https://data.delijn.be/stops/102384", "https://data.delijn.be/stops/109133"], ["https://data.delijn.be/stops/208440", "https://data.delijn.be/stops/209440"], ["https://data.delijn.be/stops/200673", "https://data.delijn.be/stops/201661"], ["https://data.delijn.be/stops/200022", "https://data.delijn.be/stops/208842"], ["https://data.delijn.be/stops/201954", "https://data.delijn.be/stops/210054"], ["https://data.delijn.be/stops/502385", "https://data.delijn.be/stops/507385"], ["https://data.delijn.be/stops/301536", "https://data.delijn.be/stops/301548"], ["https://data.delijn.be/stops/308150", "https://data.delijn.be/stops/308151"], ["https://data.delijn.be/stops/300906", "https://data.delijn.be/stops/301115"], ["https://data.delijn.be/stops/203534", "https://data.delijn.be/stops/205243"], ["https://data.delijn.be/stops/408097", "https://data.delijn.be/stops/408100"], ["https://data.delijn.be/stops/206261", "https://data.delijn.be/stops/207260"], ["https://data.delijn.be/stops/305960", "https://data.delijn.be/stops/305961"], ["https://data.delijn.be/stops/400717", "https://data.delijn.be/stops/402235"], ["https://data.delijn.be/stops/205525", "https://data.delijn.be/stops/205729"], ["https://data.delijn.be/stops/404156", "https://data.delijn.be/stops/404180"], ["https://data.delijn.be/stops/105465", "https://data.delijn.be/stops/105665"], ["https://data.delijn.be/stops/206906", "https://data.delijn.be/stops/207908"], ["https://data.delijn.be/stops/407770", "https://data.delijn.be/stops/304360"], ["https://data.delijn.be/stops/102062", "https://data.delijn.be/stops/106926"], ["https://data.delijn.be/stops/201763", "https://data.delijn.be/stops/209333"], ["https://data.delijn.be/stops/502661", "https://data.delijn.be/stops/507028"], ["https://data.delijn.be/stops/102587", "https://data.delijn.be/stops/109108"], ["https://data.delijn.be/stops/301571", "https://data.delijn.be/stops/301578"], ["https://data.delijn.be/stops/407298", "https://data.delijn.be/stops/303646"], ["https://data.delijn.be/stops/406714", "https://data.delijn.be/stops/408798"], ["https://data.delijn.be/stops/101481", "https://data.delijn.be/stops/108214"], ["https://data.delijn.be/stops/502064", "https://data.delijn.be/stops/502071"], ["https://data.delijn.be/stops/404972", "https://data.delijn.be/stops/410295"], ["https://data.delijn.be/stops/503641", "https://data.delijn.be/stops/508642"], ["https://data.delijn.be/stops/505271", "https://data.delijn.be/stops/505272"], ["https://data.delijn.be/stops/409280", "https://data.delijn.be/stops/409281"], ["https://data.delijn.be/stops/501671", "https://data.delijn.be/stops/506430"], ["https://data.delijn.be/stops/503457", "https://data.delijn.be/stops/503947"], ["https://data.delijn.be/stops/101749", "https://data.delijn.be/stops/102752"], ["https://data.delijn.be/stops/108332", "https://data.delijn.be/stops/109331"], ["https://data.delijn.be/stops/200400", "https://data.delijn.be/stops/201651"], ["https://data.delijn.be/stops/503307", "https://data.delijn.be/stops/508307"], ["https://data.delijn.be/stops/401547", "https://data.delijn.be/stops/406885"], ["https://data.delijn.be/stops/305698", "https://data.delijn.be/stops/305751"], ["https://data.delijn.be/stops/301543", "https://data.delijn.be/stops/301544"], ["https://data.delijn.be/stops/408351", "https://data.delijn.be/stops/408382"], ["https://data.delijn.be/stops/400964", "https://data.delijn.be/stops/407401"], ["https://data.delijn.be/stops/107496", "https://data.delijn.be/stops/107523"], ["https://data.delijn.be/stops/504570", "https://data.delijn.be/stops/505424"], ["https://data.delijn.be/stops/502238", "https://data.delijn.be/stops/507646"], ["https://data.delijn.be/stops/407614", "https://data.delijn.be/stops/410090"], ["https://data.delijn.be/stops/202860", "https://data.delijn.be/stops/203860"], ["https://data.delijn.be/stops/206177", "https://data.delijn.be/stops/303847"], ["https://data.delijn.be/stops/206265", "https://data.delijn.be/stops/207995"], ["https://data.delijn.be/stops/404590", "https://data.delijn.be/stops/406902"], ["https://data.delijn.be/stops/301145", "https://data.delijn.be/stops/301154"], ["https://data.delijn.be/stops/102901", "https://data.delijn.be/stops/109375"], ["https://data.delijn.be/stops/401000", "https://data.delijn.be/stops/403806"], ["https://data.delijn.be/stops/403272", "https://data.delijn.be/stops/403527"], ["https://data.delijn.be/stops/308611", "https://data.delijn.be/stops/308618"], ["https://data.delijn.be/stops/101683", "https://data.delijn.be/stops/101684"], ["https://data.delijn.be/stops/204778", "https://data.delijn.be/stops/214011"], ["https://data.delijn.be/stops/406230", "https://data.delijn.be/stops/406348"], ["https://data.delijn.be/stops/503901", "https://data.delijn.be/stops/508905"], ["https://data.delijn.be/stops/502184", "https://data.delijn.be/stops/505772"], ["https://data.delijn.be/stops/409730", "https://data.delijn.be/stops/409731"], ["https://data.delijn.be/stops/103700", "https://data.delijn.be/stops/109604"], ["https://data.delijn.be/stops/408055", "https://data.delijn.be/stops/408166"], ["https://data.delijn.be/stops/300456", "https://data.delijn.be/stops/304978"], ["https://data.delijn.be/stops/208364", "https://data.delijn.be/stops/208365"], ["https://data.delijn.be/stops/204745", "https://data.delijn.be/stops/205745"], ["https://data.delijn.be/stops/405059", "https://data.delijn.be/stops/405112"], ["https://data.delijn.be/stops/201857", "https://data.delijn.be/stops/201879"], ["https://data.delijn.be/stops/301814", "https://data.delijn.be/stops/307181"], ["https://data.delijn.be/stops/107612", "https://data.delijn.be/stops/107727"], ["https://data.delijn.be/stops/304413", "https://data.delijn.be/stops/304414"], ["https://data.delijn.be/stops/305038", "https://data.delijn.be/stops/305039"], ["https://data.delijn.be/stops/400914", "https://data.delijn.be/stops/400969"], ["https://data.delijn.be/stops/406177", "https://data.delijn.be/stops/410225"], ["https://data.delijn.be/stops/409355", "https://data.delijn.be/stops/409402"], ["https://data.delijn.be/stops/306345", "https://data.delijn.be/stops/306347"], ["https://data.delijn.be/stops/408537", "https://data.delijn.be/stops/408650"], ["https://data.delijn.be/stops/105681", "https://data.delijn.be/stops/105683"], ["https://data.delijn.be/stops/208442", "https://data.delijn.be/stops/208443"], ["https://data.delijn.be/stops/101904", "https://data.delijn.be/stops/105665"], ["https://data.delijn.be/stops/104035", "https://data.delijn.be/stops/105740"], ["https://data.delijn.be/stops/303388", "https://data.delijn.be/stops/307183"], ["https://data.delijn.be/stops/106756", "https://data.delijn.be/stops/106760"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/509516"], ["https://data.delijn.be/stops/202055", "https://data.delijn.be/stops/202056"], ["https://data.delijn.be/stops/400528", "https://data.delijn.be/stops/410005"], ["https://data.delijn.be/stops/102665", "https://data.delijn.be/stops/102670"], ["https://data.delijn.be/stops/405300", "https://data.delijn.be/stops/405400"], ["https://data.delijn.be/stops/304758", "https://data.delijn.be/stops/308699"], ["https://data.delijn.be/stops/502191", "https://data.delijn.be/stops/507201"], ["https://data.delijn.be/stops/201729", "https://data.delijn.be/stops/203719"], ["https://data.delijn.be/stops/305427", "https://data.delijn.be/stops/305428"], ["https://data.delijn.be/stops/506258", "https://data.delijn.be/stops/506259"], ["https://data.delijn.be/stops/505268", "https://data.delijn.be/stops/508049"], ["https://data.delijn.be/stops/300105", "https://data.delijn.be/stops/300106"], ["https://data.delijn.be/stops/302500", "https://data.delijn.be/stops/302502"], ["https://data.delijn.be/stops/502742", "https://data.delijn.be/stops/505357"], ["https://data.delijn.be/stops/403451", "https://data.delijn.be/stops/403484"], ["https://data.delijn.be/stops/208662", "https://data.delijn.be/stops/209662"], ["https://data.delijn.be/stops/102183", "https://data.delijn.be/stops/107131"], ["https://data.delijn.be/stops/304353", "https://data.delijn.be/stops/304354"], ["https://data.delijn.be/stops/302798", "https://data.delijn.be/stops/306159"], ["https://data.delijn.be/stops/201903", "https://data.delijn.be/stops/203513"], ["https://data.delijn.be/stops/408578", "https://data.delijn.be/stops/408582"], ["https://data.delijn.be/stops/105733", "https://data.delijn.be/stops/105736"], ["https://data.delijn.be/stops/204164", "https://data.delijn.be/stops/205771"], ["https://data.delijn.be/stops/406460", "https://data.delijn.be/stops/410224"], ["https://data.delijn.be/stops/300314", "https://data.delijn.be/stops/300315"], ["https://data.delijn.be/stops/406210", "https://data.delijn.be/stops/406271"], ["https://data.delijn.be/stops/206408", "https://data.delijn.be/stops/210009"], ["https://data.delijn.be/stops/304021", "https://data.delijn.be/stops/304913"], ["https://data.delijn.be/stops/101787", "https://data.delijn.be/stops/109230"], ["https://data.delijn.be/stops/304229", "https://data.delijn.be/stops/304243"], ["https://data.delijn.be/stops/504203", "https://data.delijn.be/stops/504204"], ["https://data.delijn.be/stops/303960", "https://data.delijn.be/stops/303973"], ["https://data.delijn.be/stops/405144", "https://data.delijn.be/stops/405216"], ["https://data.delijn.be/stops/503069", "https://data.delijn.be/stops/508075"], ["https://data.delijn.be/stops/200412", "https://data.delijn.be/stops/208941"], ["https://data.delijn.be/stops/403322", "https://data.delijn.be/stops/407596"], ["https://data.delijn.be/stops/107984", "https://data.delijn.be/stops/107986"], ["https://data.delijn.be/stops/302491", "https://data.delijn.be/stops/302493"], ["https://data.delijn.be/stops/206352", "https://data.delijn.be/stops/206362"], ["https://data.delijn.be/stops/301870", "https://data.delijn.be/stops/304326"], ["https://data.delijn.be/stops/300378", "https://data.delijn.be/stops/307895"], ["https://data.delijn.be/stops/202244", "https://data.delijn.be/stops/203500"], ["https://data.delijn.be/stops/504426", "https://data.delijn.be/stops/509437"], ["https://data.delijn.be/stops/507536", "https://data.delijn.be/stops/507741"], ["https://data.delijn.be/stops/407667", "https://data.delijn.be/stops/410211"], ["https://data.delijn.be/stops/501588", "https://data.delijn.be/stops/506356"], ["https://data.delijn.be/stops/504108", "https://data.delijn.be/stops/509108"], ["https://data.delijn.be/stops/404245", "https://data.delijn.be/stops/409296"], ["https://data.delijn.be/stops/504507", "https://data.delijn.be/stops/509017"], ["https://data.delijn.be/stops/302278", "https://data.delijn.be/stops/302279"], ["https://data.delijn.be/stops/402887", "https://data.delijn.be/stops/402897"], ["https://data.delijn.be/stops/201830", "https://data.delijn.be/stops/209325"], ["https://data.delijn.be/stops/308438", "https://data.delijn.be/stops/308439"], ["https://data.delijn.be/stops/502002", "https://data.delijn.be/stops/507002"], ["https://data.delijn.be/stops/509060", "https://data.delijn.be/stops/509062"], ["https://data.delijn.be/stops/401816", "https://data.delijn.be/stops/406084"], ["https://data.delijn.be/stops/204744", "https://data.delijn.be/stops/204766"], ["https://data.delijn.be/stops/402385", "https://data.delijn.be/stops/410042"], ["https://data.delijn.be/stops/103304", "https://data.delijn.be/stops/103306"], ["https://data.delijn.be/stops/101045", "https://data.delijn.be/stops/104510"], ["https://data.delijn.be/stops/305511", "https://data.delijn.be/stops/305573"], ["https://data.delijn.be/stops/406989", "https://data.delijn.be/stops/408392"], ["https://data.delijn.be/stops/402829", "https://data.delijn.be/stops/402889"], ["https://data.delijn.be/stops/502456", "https://data.delijn.be/stops/505227"], ["https://data.delijn.be/stops/305340", "https://data.delijn.be/stops/308447"], ["https://data.delijn.be/stops/503865", "https://data.delijn.be/stops/508865"], ["https://data.delijn.be/stops/206747", "https://data.delijn.be/stops/207747"], ["https://data.delijn.be/stops/200631", "https://data.delijn.be/stops/201629"], ["https://data.delijn.be/stops/201087", "https://data.delijn.be/stops/202781"], ["https://data.delijn.be/stops/501351", "https://data.delijn.be/stops/506351"], ["https://data.delijn.be/stops/109067", "https://data.delijn.be/stops/307363"], ["https://data.delijn.be/stops/400102", "https://data.delijn.be/stops/409137"], ["https://data.delijn.be/stops/406651", "https://data.delijn.be/stops/406654"], ["https://data.delijn.be/stops/503769", "https://data.delijn.be/stops/505073"], ["https://data.delijn.be/stops/405330", "https://data.delijn.be/stops/405447"], ["https://data.delijn.be/stops/201811", "https://data.delijn.be/stops/208327"], ["https://data.delijn.be/stops/302376", "https://data.delijn.be/stops/307841"], ["https://data.delijn.be/stops/303117", "https://data.delijn.be/stops/306316"], ["https://data.delijn.be/stops/300564", "https://data.delijn.be/stops/300591"], ["https://data.delijn.be/stops/101524", "https://data.delijn.be/stops/101526"], ["https://data.delijn.be/stops/206991", "https://data.delijn.be/stops/207157"], ["https://data.delijn.be/stops/305100", "https://data.delijn.be/stops/305101"], ["https://data.delijn.be/stops/102972", "https://data.delijn.be/stops/105350"], ["https://data.delijn.be/stops/204049", "https://data.delijn.be/stops/205520"], ["https://data.delijn.be/stops/104943", "https://data.delijn.be/stops/107062"], ["https://data.delijn.be/stops/109247", "https://data.delijn.be/stops/109250"], ["https://data.delijn.be/stops/404902", "https://data.delijn.be/stops/404911"], ["https://data.delijn.be/stops/505724", "https://data.delijn.be/stops/507297"], ["https://data.delijn.be/stops/200886", "https://data.delijn.be/stops/203303"], ["https://data.delijn.be/stops/304994", "https://data.delijn.be/stops/305024"], ["https://data.delijn.be/stops/207297", "https://data.delijn.be/stops/216011"], ["https://data.delijn.be/stops/400858", "https://data.delijn.be/stops/400867"], ["https://data.delijn.be/stops/403155", "https://data.delijn.be/stops/403319"], ["https://data.delijn.be/stops/202174", "https://data.delijn.be/stops/203174"], ["https://data.delijn.be/stops/403046", "https://data.delijn.be/stops/410292"], ["https://data.delijn.be/stops/304908", "https://data.delijn.be/stops/308587"], ["https://data.delijn.be/stops/103158", "https://data.delijn.be/stops/103160"], ["https://data.delijn.be/stops/408668", "https://data.delijn.be/stops/408755"], ["https://data.delijn.be/stops/200391", "https://data.delijn.be/stops/209703"], ["https://data.delijn.be/stops/303988", "https://data.delijn.be/stops/306292"], ["https://data.delijn.be/stops/102425", "https://data.delijn.be/stops/105155"], ["https://data.delijn.be/stops/301092", "https://data.delijn.be/stops/306664"], ["https://data.delijn.be/stops/304152", "https://data.delijn.be/stops/304168"], ["https://data.delijn.be/stops/101388", "https://data.delijn.be/stops/103134"], ["https://data.delijn.be/stops/204243", "https://data.delijn.be/stops/204244"], ["https://data.delijn.be/stops/104816", "https://data.delijn.be/stops/105162"], ["https://data.delijn.be/stops/404852", "https://data.delijn.be/stops/406890"], ["https://data.delijn.be/stops/208319", "https://data.delijn.be/stops/209318"], ["https://data.delijn.be/stops/504751", "https://data.delijn.be/stops/508610"], ["https://data.delijn.be/stops/504946", "https://data.delijn.be/stops/509746"], ["https://data.delijn.be/stops/207701", "https://data.delijn.be/stops/207705"], ["https://data.delijn.be/stops/300653", "https://data.delijn.be/stops/300654"], ["https://data.delijn.be/stops/109449", "https://data.delijn.be/stops/109452"], ["https://data.delijn.be/stops/400444", "https://data.delijn.be/stops/401266"], ["https://data.delijn.be/stops/206602", "https://data.delijn.be/stops/206976"], ["https://data.delijn.be/stops/101800", "https://data.delijn.be/stops/101802"], ["https://data.delijn.be/stops/509724", "https://data.delijn.be/stops/509727"], ["https://data.delijn.be/stops/300079", "https://data.delijn.be/stops/307343"], ["https://data.delijn.be/stops/407594", "https://data.delijn.be/stops/407673"], ["https://data.delijn.be/stops/405476", "https://data.delijn.be/stops/406601"], ["https://data.delijn.be/stops/503765", "https://data.delijn.be/stops/508765"], ["https://data.delijn.be/stops/400932", "https://data.delijn.be/stops/400945"], ["https://data.delijn.be/stops/302864", "https://data.delijn.be/stops/306401"], ["https://data.delijn.be/stops/207204", "https://data.delijn.be/stops/207220"], ["https://data.delijn.be/stops/101957", "https://data.delijn.be/stops/108327"], ["https://data.delijn.be/stops/407537", "https://data.delijn.be/stops/409058"], ["https://data.delijn.be/stops/301622", "https://data.delijn.be/stops/307339"], ["https://data.delijn.be/stops/400560", "https://data.delijn.be/stops/407042"], ["https://data.delijn.be/stops/504099", "https://data.delijn.be/stops/509097"], ["https://data.delijn.be/stops/505739", "https://data.delijn.be/stops/507473"], ["https://data.delijn.be/stops/402820", "https://data.delijn.be/stops/402821"], ["https://data.delijn.be/stops/208402", "https://data.delijn.be/stops/209387"], ["https://data.delijn.be/stops/504225", "https://data.delijn.be/stops/509625"], ["https://data.delijn.be/stops/404110", "https://data.delijn.be/stops/404258"], ["https://data.delijn.be/stops/501175", "https://data.delijn.be/stops/506173"], ["https://data.delijn.be/stops/200559", "https://data.delijn.be/stops/201662"], ["https://data.delijn.be/stops/109353", "https://data.delijn.be/stops/307353"], ["https://data.delijn.be/stops/201768", "https://data.delijn.be/stops/201804"], ["https://data.delijn.be/stops/401311", "https://data.delijn.be/stops/401316"], ["https://data.delijn.be/stops/204049", "https://data.delijn.be/stops/205051"], ["https://data.delijn.be/stops/101365", "https://data.delijn.be/stops/104875"], ["https://data.delijn.be/stops/401034", "https://data.delijn.be/stops/404984"], ["https://data.delijn.be/stops/400630", "https://data.delijn.be/stops/403062"], ["https://data.delijn.be/stops/507177", "https://data.delijn.be/stops/507686"], ["https://data.delijn.be/stops/209387", "https://data.delijn.be/stops/209454"], ["https://data.delijn.be/stops/201395", "https://data.delijn.be/stops/208703"], ["https://data.delijn.be/stops/201628", "https://data.delijn.be/stops/202904"], ["https://data.delijn.be/stops/500020", "https://data.delijn.be/stops/502579"], ["https://data.delijn.be/stops/302332", "https://data.delijn.be/stops/302342"], ["https://data.delijn.be/stops/204389", "https://data.delijn.be/stops/204390"], ["https://data.delijn.be/stops/505345", "https://data.delijn.be/stops/505771"], ["https://data.delijn.be/stops/307309", "https://data.delijn.be/stops/307311"], ["https://data.delijn.be/stops/201827", "https://data.delijn.be/stops/201828"], ["https://data.delijn.be/stops/105638", "https://data.delijn.be/stops/105639"], ["https://data.delijn.be/stops/200524", "https://data.delijn.be/stops/201524"], ["https://data.delijn.be/stops/209236", "https://data.delijn.be/stops/219008"], ["https://data.delijn.be/stops/208461", "https://data.delijn.be/stops/209460"], ["https://data.delijn.be/stops/501588", "https://data.delijn.be/stops/506588"], ["https://data.delijn.be/stops/501198", "https://data.delijn.be/stops/501401"], ["https://data.delijn.be/stops/202091", "https://data.delijn.be/stops/211291"], ["https://data.delijn.be/stops/305823", "https://data.delijn.be/stops/308817"], ["https://data.delijn.be/stops/108975", "https://data.delijn.be/stops/108980"], ["https://data.delijn.be/stops/301953", "https://data.delijn.be/stops/302868"], ["https://data.delijn.be/stops/206667", "https://data.delijn.be/stops/206702"], ["https://data.delijn.be/stops/200976", "https://data.delijn.be/stops/206758"], ["https://data.delijn.be/stops/208210", "https://data.delijn.be/stops/208211"], ["https://data.delijn.be/stops/102509", "https://data.delijn.be/stops/102511"], ["https://data.delijn.be/stops/301042", "https://data.delijn.be/stops/303632"], ["https://data.delijn.be/stops/402770", "https://data.delijn.be/stops/408133"], ["https://data.delijn.be/stops/400952", "https://data.delijn.be/stops/406700"], ["https://data.delijn.be/stops/200867", "https://data.delijn.be/stops/203337"], ["https://data.delijn.be/stops/209286", "https://data.delijn.be/stops/209288"], ["https://data.delijn.be/stops/401819", "https://data.delijn.be/stops/401820"], ["https://data.delijn.be/stops/300746", "https://data.delijn.be/stops/304774"], ["https://data.delijn.be/stops/102458", "https://data.delijn.be/stops/400411"], ["https://data.delijn.be/stops/103023", "https://data.delijn.be/stops/109675"], ["https://data.delijn.be/stops/203935", "https://data.delijn.be/stops/203936"], ["https://data.delijn.be/stops/207064", "https://data.delijn.be/stops/207119"], ["https://data.delijn.be/stops/300418", "https://data.delijn.be/stops/300419"], ["https://data.delijn.be/stops/505308", "https://data.delijn.be/stops/507733"], ["https://data.delijn.be/stops/501146", "https://data.delijn.be/stops/501599"], ["https://data.delijn.be/stops/407922", "https://data.delijn.be/stops/408438"], ["https://data.delijn.be/stops/301974", "https://data.delijn.be/stops/301984"], ["https://data.delijn.be/stops/500138", "https://data.delijn.be/stops/590335"], ["https://data.delijn.be/stops/501351", "https://data.delijn.be/stops/506449"], ["https://data.delijn.be/stops/305242", "https://data.delijn.be/stops/305601"], ["https://data.delijn.be/stops/300016", "https://data.delijn.be/stops/302872"], ["https://data.delijn.be/stops/404649", "https://data.delijn.be/stops/409565"], ["https://data.delijn.be/stops/206365", "https://data.delijn.be/stops/207710"], ["https://data.delijn.be/stops/405956", "https://data.delijn.be/stops/308150"], ["https://data.delijn.be/stops/503085", "https://data.delijn.be/stops/508084"], ["https://data.delijn.be/stops/400432", "https://data.delijn.be/stops/400434"], ["https://data.delijn.be/stops/106420", "https://data.delijn.be/stops/106523"], ["https://data.delijn.be/stops/301959", "https://data.delijn.be/stops/301961"], ["https://data.delijn.be/stops/505929", "https://data.delijn.be/stops/508291"], ["https://data.delijn.be/stops/505520", "https://data.delijn.be/stops/505522"], ["https://data.delijn.be/stops/402708", "https://data.delijn.be/stops/402867"], ["https://data.delijn.be/stops/206649", "https://data.delijn.be/stops/207626"], ["https://data.delijn.be/stops/301923", "https://data.delijn.be/stops/301925"], ["https://data.delijn.be/stops/204113", "https://data.delijn.be/stops/205113"], ["https://data.delijn.be/stops/207803", "https://data.delijn.be/stops/300216"], ["https://data.delijn.be/stops/300964", "https://data.delijn.be/stops/304535"], ["https://data.delijn.be/stops/400586", "https://data.delijn.be/stops/400617"], ["https://data.delijn.be/stops/504142", "https://data.delijn.be/stops/505708"], ["https://data.delijn.be/stops/401494", "https://data.delijn.be/stops/401495"], ["https://data.delijn.be/stops/402589", "https://data.delijn.be/stops/404098"], ["https://data.delijn.be/stops/403029", "https://data.delijn.be/stops/403066"], ["https://data.delijn.be/stops/200882", "https://data.delijn.be/stops/203060"], ["https://data.delijn.be/stops/300178", "https://data.delijn.be/stops/300188"], ["https://data.delijn.be/stops/207519", "https://data.delijn.be/stops/207524"], ["https://data.delijn.be/stops/101915", "https://data.delijn.be/stops/107925"], ["https://data.delijn.be/stops/206737", "https://data.delijn.be/stops/207080"], ["https://data.delijn.be/stops/107680", "https://data.delijn.be/stops/108615"], ["https://data.delijn.be/stops/400809", "https://data.delijn.be/stops/405172"], ["https://data.delijn.be/stops/509265", "https://data.delijn.be/stops/509661"], ["https://data.delijn.be/stops/101786", "https://data.delijn.be/stops/109154"], ["https://data.delijn.be/stops/209039", "https://data.delijn.be/stops/209539"], ["https://data.delijn.be/stops/502448", "https://data.delijn.be/stops/502457"], ["https://data.delijn.be/stops/109882", "https://data.delijn.be/stops/204021"], ["https://data.delijn.be/stops/205979", "https://data.delijn.be/stops/206246"], ["https://data.delijn.be/stops/305306", "https://data.delijn.be/stops/305320"], ["https://data.delijn.be/stops/400622", "https://data.delijn.be/stops/404292"], ["https://data.delijn.be/stops/206753", "https://data.delijn.be/stops/206851"], ["https://data.delijn.be/stops/504061", "https://data.delijn.be/stops/509497"], ["https://data.delijn.be/stops/406208", "https://data.delijn.be/stops/406432"], ["https://data.delijn.be/stops/406718", "https://data.delijn.be/stops/408402"], ["https://data.delijn.be/stops/103068", "https://data.delijn.be/stops/105759"], ["https://data.delijn.be/stops/304458", "https://data.delijn.be/stops/307035"], ["https://data.delijn.be/stops/102035", "https://data.delijn.be/stops/105576"], ["https://data.delijn.be/stops/206906", "https://data.delijn.be/stops/206909"], ["https://data.delijn.be/stops/300444", "https://data.delijn.be/stops/301263"], ["https://data.delijn.be/stops/405254", "https://data.delijn.be/stops/407313"], ["https://data.delijn.be/stops/207701", "https://data.delijn.be/stops/207889"], ["https://data.delijn.be/stops/302925", "https://data.delijn.be/stops/303080"], ["https://data.delijn.be/stops/303477", "https://data.delijn.be/stops/303499"], ["https://data.delijn.be/stops/201855", "https://data.delijn.be/stops/203023"], ["https://data.delijn.be/stops/101374", "https://data.delijn.be/stops/101377"], ["https://data.delijn.be/stops/508672", "https://data.delijn.be/stops/508674"], ["https://data.delijn.be/stops/107554", "https://data.delijn.be/stops/107558"], ["https://data.delijn.be/stops/208121", "https://data.delijn.be/stops/208768"], ["https://data.delijn.be/stops/304888", "https://data.delijn.be/stops/304903"], ["https://data.delijn.be/stops/201808", "https://data.delijn.be/stops/201833"], ["https://data.delijn.be/stops/504140", "https://data.delijn.be/stops/505980"], ["https://data.delijn.be/stops/301801", "https://data.delijn.be/stops/301802"], ["https://data.delijn.be/stops/300320", "https://data.delijn.be/stops/308109"], ["https://data.delijn.be/stops/505963", "https://data.delijn.be/stops/507942"], ["https://data.delijn.be/stops/502728", "https://data.delijn.be/stops/507728"], ["https://data.delijn.be/stops/209401", "https://data.delijn.be/stops/503329"], ["https://data.delijn.be/stops/302735", "https://data.delijn.be/stops/307705"], ["https://data.delijn.be/stops/404765", "https://data.delijn.be/stops/410045"], ["https://data.delijn.be/stops/503547", "https://data.delijn.be/stops/504277"], ["https://data.delijn.be/stops/102673", "https://data.delijn.be/stops/103488"], ["https://data.delijn.be/stops/506760", "https://data.delijn.be/stops/506777"], ["https://data.delijn.be/stops/405853", "https://data.delijn.be/stops/409428"], ["https://data.delijn.be/stops/300478", "https://data.delijn.be/stops/302092"], ["https://data.delijn.be/stops/501431", "https://data.delijn.be/stops/501678"], ["https://data.delijn.be/stops/402427", "https://data.delijn.be/stops/405563"], ["https://data.delijn.be/stops/108940", "https://data.delijn.be/stops/109095"], ["https://data.delijn.be/stops/204370", "https://data.delijn.be/stops/205371"], ["https://data.delijn.be/stops/401935", "https://data.delijn.be/stops/401936"], ["https://data.delijn.be/stops/405777", "https://data.delijn.be/stops/409426"], ["https://data.delijn.be/stops/207373", "https://data.delijn.be/stops/207374"], ["https://data.delijn.be/stops/308140", "https://data.delijn.be/stops/308141"], ["https://data.delijn.be/stops/405935", "https://data.delijn.be/stops/405975"], ["https://data.delijn.be/stops/400339", "https://data.delijn.be/stops/400489"], ["https://data.delijn.be/stops/300847", "https://data.delijn.be/stops/301594"], ["https://data.delijn.be/stops/308496", "https://data.delijn.be/stops/308499"], ["https://data.delijn.be/stops/304491", "https://data.delijn.be/stops/304501"], ["https://data.delijn.be/stops/306874", "https://data.delijn.be/stops/307955"], ["https://data.delijn.be/stops/206982", "https://data.delijn.be/stops/207602"], ["https://data.delijn.be/stops/300074", "https://data.delijn.be/stops/304668"], ["https://data.delijn.be/stops/104970", "https://data.delijn.be/stops/104980"], ["https://data.delijn.be/stops/205243", "https://data.delijn.be/stops/206243"], ["https://data.delijn.be/stops/408599", "https://data.delijn.be/stops/302833"], ["https://data.delijn.be/stops/101572", "https://data.delijn.be/stops/101574"], ["https://data.delijn.be/stops/204525", "https://data.delijn.be/stops/205524"], ["https://data.delijn.be/stops/102016", "https://data.delijn.be/stops/105145"], ["https://data.delijn.be/stops/200130", "https://data.delijn.be/stops/201250"], ["https://data.delijn.be/stops/403314", "https://data.delijn.be/stops/410399"], ["https://data.delijn.be/stops/502331", "https://data.delijn.be/stops/505508"], ["https://data.delijn.be/stops/504957", "https://data.delijn.be/stops/505556"], ["https://data.delijn.be/stops/306628", "https://data.delijn.be/stops/306630"], ["https://data.delijn.be/stops/300236", "https://data.delijn.be/stops/300237"], ["https://data.delijn.be/stops/500127", "https://data.delijn.be/stops/502476"], ["https://data.delijn.be/stops/403711", "https://data.delijn.be/stops/403786"], ["https://data.delijn.be/stops/107634", "https://data.delijn.be/stops/107704"], ["https://data.delijn.be/stops/206412", "https://data.delijn.be/stops/206454"], ["https://data.delijn.be/stops/208219", "https://data.delijn.be/stops/208771"], ["https://data.delijn.be/stops/502489", "https://data.delijn.be/stops/505598"], ["https://data.delijn.be/stops/405791", "https://data.delijn.be/stops/405877"], ["https://data.delijn.be/stops/407522", "https://data.delijn.be/stops/407523"], ["https://data.delijn.be/stops/101729", "https://data.delijn.be/stops/106049"], ["https://data.delijn.be/stops/300092", "https://data.delijn.be/stops/300105"], ["https://data.delijn.be/stops/204647", "https://data.delijn.be/stops/205730"], ["https://data.delijn.be/stops/305646", "https://data.delijn.be/stops/308130"], ["https://data.delijn.be/stops/204206", "https://data.delijn.be/stops/204473"], ["https://data.delijn.be/stops/304158", "https://data.delijn.be/stops/304496"], ["https://data.delijn.be/stops/406445", "https://data.delijn.be/stops/406746"], ["https://data.delijn.be/stops/403300", "https://data.delijn.be/stops/403448"], ["https://data.delijn.be/stops/400588", "https://data.delijn.be/stops/400627"], ["https://data.delijn.be/stops/503110", "https://data.delijn.be/stops/505667"], ["https://data.delijn.be/stops/305002", "https://data.delijn.be/stops/305003"], ["https://data.delijn.be/stops/206437", "https://data.delijn.be/stops/206641"], ["https://data.delijn.be/stops/105162", "https://data.delijn.be/stops/107428"], ["https://data.delijn.be/stops/200045", "https://data.delijn.be/stops/211108"], ["https://data.delijn.be/stops/401573", "https://data.delijn.be/stops/402373"], ["https://data.delijn.be/stops/108199", "https://data.delijn.be/stops/108232"], ["https://data.delijn.be/stops/200728", "https://data.delijn.be/stops/210023"], ["https://data.delijn.be/stops/402116", "https://data.delijn.be/stops/402124"], ["https://data.delijn.be/stops/504836", "https://data.delijn.be/stops/505645"], ["https://data.delijn.be/stops/208667", "https://data.delijn.be/stops/209446"], ["https://data.delijn.be/stops/203124", "https://data.delijn.be/stops/203600"], ["https://data.delijn.be/stops/201927", "https://data.delijn.be/stops/207400"], ["https://data.delijn.be/stops/205642", "https://data.delijn.be/stops/205643"], ["https://data.delijn.be/stops/307276", "https://data.delijn.be/stops/308701"], ["https://data.delijn.be/stops/504737", "https://data.delijn.be/stops/509498"], ["https://data.delijn.be/stops/301509", "https://data.delijn.be/stops/301524"], ["https://data.delijn.be/stops/406473", "https://data.delijn.be/stops/406476"], ["https://data.delijn.be/stops/505275", "https://data.delijn.be/stops/508228"], ["https://data.delijn.be/stops/401892", "https://data.delijn.be/stops/402033"], ["https://data.delijn.be/stops/408552", "https://data.delijn.be/stops/408653"], ["https://data.delijn.be/stops/301332", "https://data.delijn.be/stops/301907"], ["https://data.delijn.be/stops/502055", "https://data.delijn.be/stops/502619"], ["https://data.delijn.be/stops/305550", "https://data.delijn.be/stops/305558"], ["https://data.delijn.be/stops/200978", "https://data.delijn.be/stops/208490"], ["https://data.delijn.be/stops/300076", "https://data.delijn.be/stops/300077"], ["https://data.delijn.be/stops/501369", "https://data.delijn.be/stops/506103"], ["https://data.delijn.be/stops/101376", "https://data.delijn.be/stops/101399"], ["https://data.delijn.be/stops/505958", "https://data.delijn.be/stops/508606"], ["https://data.delijn.be/stops/204467", "https://data.delijn.be/stops/205474"], ["https://data.delijn.be/stops/204649", "https://data.delijn.be/stops/205648"], ["https://data.delijn.be/stops/306876", "https://data.delijn.be/stops/307423"], ["https://data.delijn.be/stops/410223", "https://data.delijn.be/stops/410292"], ["https://data.delijn.be/stops/405306", "https://data.delijn.be/stops/406262"], ["https://data.delijn.be/stops/302015", "https://data.delijn.be/stops/302052"], ["https://data.delijn.be/stops/204213", "https://data.delijn.be/stops/205452"], ["https://data.delijn.be/stops/407004", "https://data.delijn.be/stops/407077"], ["https://data.delijn.be/stops/403754", "https://data.delijn.be/stops/403763"], ["https://data.delijn.be/stops/306802", "https://data.delijn.be/stops/307811"], ["https://data.delijn.be/stops/104794", "https://data.delijn.be/stops/107634"], ["https://data.delijn.be/stops/405202", "https://data.delijn.be/stops/405285"], ["https://data.delijn.be/stops/108087", "https://data.delijn.be/stops/108686"], ["https://data.delijn.be/stops/201168", "https://data.delijn.be/stops/202641"], ["https://data.delijn.be/stops/501194", "https://data.delijn.be/stops/506190"], ["https://data.delijn.be/stops/201226", "https://data.delijn.be/stops/201227"], ["https://data.delijn.be/stops/104200", "https://data.delijn.be/stops/104205"], ["https://data.delijn.be/stops/400600", "https://data.delijn.be/stops/400620"], ["https://data.delijn.be/stops/204177", "https://data.delijn.be/stops/205177"], ["https://data.delijn.be/stops/109852", "https://data.delijn.be/stops/109892"], ["https://data.delijn.be/stops/300199", "https://data.delijn.be/stops/302153"], ["https://data.delijn.be/stops/408034", "https://data.delijn.be/stops/408166"], ["https://data.delijn.be/stops/304615", "https://data.delijn.be/stops/304652"], ["https://data.delijn.be/stops/208450", "https://data.delijn.be/stops/208878"], ["https://data.delijn.be/stops/301492", "https://data.delijn.be/stops/301498"], ["https://data.delijn.be/stops/501008", "https://data.delijn.be/stops/506215"], ["https://data.delijn.be/stops/200376", "https://data.delijn.be/stops/201342"], ["https://data.delijn.be/stops/304898", "https://data.delijn.be/stops/306405"], ["https://data.delijn.be/stops/407687", "https://data.delijn.be/stops/407688"], ["https://data.delijn.be/stops/400504", "https://data.delijn.be/stops/400505"], ["https://data.delijn.be/stops/301457", "https://data.delijn.be/stops/301498"], ["https://data.delijn.be/stops/202248", "https://data.delijn.be/stops/202249"], ["https://data.delijn.be/stops/306880", "https://data.delijn.be/stops/306881"], ["https://data.delijn.be/stops/300001", "https://data.delijn.be/stops/300002"], ["https://data.delijn.be/stops/102178", "https://data.delijn.be/stops/104955"], ["https://data.delijn.be/stops/202352", "https://data.delijn.be/stops/211046"], ["https://data.delijn.be/stops/202634", "https://data.delijn.be/stops/205066"], ["https://data.delijn.be/stops/106697", "https://data.delijn.be/stops/106700"], ["https://data.delijn.be/stops/204174", "https://data.delijn.be/stops/205390"], ["https://data.delijn.be/stops/208033", "https://data.delijn.be/stops/208034"], ["https://data.delijn.be/stops/408453", "https://data.delijn.be/stops/410217"], ["https://data.delijn.be/stops/408854", "https://data.delijn.be/stops/408861"], ["https://data.delijn.be/stops/400684", "https://data.delijn.be/stops/406624"], ["https://data.delijn.be/stops/402967", "https://data.delijn.be/stops/402968"], ["https://data.delijn.be/stops/501640", "https://data.delijn.be/stops/501665"], ["https://data.delijn.be/stops/202125", "https://data.delijn.be/stops/203125"], ["https://data.delijn.be/stops/300358", "https://data.delijn.be/stops/307646"], ["https://data.delijn.be/stops/508201", "https://data.delijn.be/stops/508882"], ["https://data.delijn.be/stops/403647", "https://data.delijn.be/stops/408067"], ["https://data.delijn.be/stops/102199", "https://data.delijn.be/stops/105795"], ["https://data.delijn.be/stops/405200", "https://data.delijn.be/stops/405290"], ["https://data.delijn.be/stops/206273", "https://data.delijn.be/stops/207243"], ["https://data.delijn.be/stops/302558", "https://data.delijn.be/stops/305456"], ["https://data.delijn.be/stops/407491", "https://data.delijn.be/stops/408566"], ["https://data.delijn.be/stops/304467", "https://data.delijn.be/stops/304557"], ["https://data.delijn.be/stops/107173", "https://data.delijn.be/stops/107731"], ["https://data.delijn.be/stops/301103", "https://data.delijn.be/stops/306335"], ["https://data.delijn.be/stops/206396", "https://data.delijn.be/stops/207396"], ["https://data.delijn.be/stops/108869", "https://data.delijn.be/stops/108871"], ["https://data.delijn.be/stops/301240", "https://data.delijn.be/stops/306326"], ["https://data.delijn.be/stops/305425", "https://data.delijn.be/stops/305427"], ["https://data.delijn.be/stops/403214", "https://data.delijn.be/stops/403368"], ["https://data.delijn.be/stops/209463", "https://data.delijn.be/stops/209684"], ["https://data.delijn.be/stops/105130", "https://data.delijn.be/stops/105135"], ["https://data.delijn.be/stops/403920", "https://data.delijn.be/stops/403921"], ["https://data.delijn.be/stops/206192", "https://data.delijn.be/stops/207192"], ["https://data.delijn.be/stops/505375", "https://data.delijn.be/stops/505991"], ["https://data.delijn.be/stops/401248", "https://data.delijn.be/stops/401339"], ["https://data.delijn.be/stops/101365", "https://data.delijn.be/stops/102825"], ["https://data.delijn.be/stops/500230", "https://data.delijn.be/stops/590330"], ["https://data.delijn.be/stops/305161", "https://data.delijn.be/stops/305217"], ["https://data.delijn.be/stops/201475", "https://data.delijn.be/stops/209862"], ["https://data.delijn.be/stops/105704", "https://data.delijn.be/stops/106074"], ["https://data.delijn.be/stops/401872", "https://data.delijn.be/stops/406336"], ["https://data.delijn.be/stops/500955", "https://data.delijn.be/stops/508280"], ["https://data.delijn.be/stops/402249", "https://data.delijn.be/stops/402483"], ["https://data.delijn.be/stops/305148", "https://data.delijn.be/stops/305170"], ["https://data.delijn.be/stops/104338", "https://data.delijn.be/stops/105904"], ["https://data.delijn.be/stops/101919", "https://data.delijn.be/stops/107324"], ["https://data.delijn.be/stops/503060", "https://data.delijn.be/stops/509948"], ["https://data.delijn.be/stops/107579", "https://data.delijn.be/stops/107581"], ["https://data.delijn.be/stops/306053", "https://data.delijn.be/stops/306304"], ["https://data.delijn.be/stops/407801", "https://data.delijn.be/stops/407806"], ["https://data.delijn.be/stops/108656", "https://data.delijn.be/stops/304303"], ["https://data.delijn.be/stops/103583", "https://data.delijn.be/stops/109412"], ["https://data.delijn.be/stops/204059", "https://data.delijn.be/stops/205725"], ["https://data.delijn.be/stops/403923", "https://data.delijn.be/stops/404015"], ["https://data.delijn.be/stops/501014", "https://data.delijn.be/stops/506019"], ["https://data.delijn.be/stops/507230", "https://data.delijn.be/stops/507917"], ["https://data.delijn.be/stops/108823", "https://data.delijn.be/stops/108825"], ["https://data.delijn.be/stops/206486", "https://data.delijn.be/stops/207486"], ["https://data.delijn.be/stops/102174", "https://data.delijn.be/stops/109362"], ["https://data.delijn.be/stops/503463", "https://data.delijn.be/stops/508978"], ["https://data.delijn.be/stops/108435", "https://data.delijn.be/stops/108590"], ["https://data.delijn.be/stops/300729", "https://data.delijn.be/stops/304937"], ["https://data.delijn.be/stops/208584", "https://data.delijn.be/stops/209677"], ["https://data.delijn.be/stops/106432", "https://data.delijn.be/stops/106500"], ["https://data.delijn.be/stops/103763", "https://data.delijn.be/stops/103764"], ["https://data.delijn.be/stops/503577", "https://data.delijn.be/stops/503600"], ["https://data.delijn.be/stops/501393", "https://data.delijn.be/stops/509797"], ["https://data.delijn.be/stops/202082", "https://data.delijn.be/stops/202084"], ["https://data.delijn.be/stops/200539", "https://data.delijn.be/stops/201527"], ["https://data.delijn.be/stops/108312", "https://data.delijn.be/stops/108314"], ["https://data.delijn.be/stops/403228", "https://data.delijn.be/stops/410325"], ["https://data.delijn.be/stops/404511", "https://data.delijn.be/stops/406979"], ["https://data.delijn.be/stops/400351", "https://data.delijn.be/stops/406866"], ["https://data.delijn.be/stops/407927", "https://data.delijn.be/stops/408042"], ["https://data.delijn.be/stops/404592", "https://data.delijn.be/stops/404993"], ["https://data.delijn.be/stops/502675", "https://data.delijn.be/stops/502798"], ["https://data.delijn.be/stops/502195", "https://data.delijn.be/stops/505922"], ["https://data.delijn.be/stops/102499", "https://data.delijn.be/stops/407513"], ["https://data.delijn.be/stops/406068", "https://data.delijn.be/stops/406367"], ["https://data.delijn.be/stops/507393", "https://data.delijn.be/stops/507405"], ["https://data.delijn.be/stops/203163", "https://data.delijn.be/stops/205070"], ["https://data.delijn.be/stops/400140", "https://data.delijn.be/stops/406362"], ["https://data.delijn.be/stops/102253", "https://data.delijn.be/stops/108289"], ["https://data.delijn.be/stops/303844", "https://data.delijn.be/stops/303962"], ["https://data.delijn.be/stops/101538", "https://data.delijn.be/stops/108267"], ["https://data.delijn.be/stops/506677", "https://data.delijn.be/stops/506782"], ["https://data.delijn.be/stops/104094", "https://data.delijn.be/stops/104099"], ["https://data.delijn.be/stops/108649", "https://data.delijn.be/stops/304339"], ["https://data.delijn.be/stops/200900", "https://data.delijn.be/stops/505512"], ["https://data.delijn.be/stops/504765", "https://data.delijn.be/stops/508530"], ["https://data.delijn.be/stops/200548", "https://data.delijn.be/stops/201548"], ["https://data.delijn.be/stops/106759", "https://data.delijn.be/stops/106760"], ["https://data.delijn.be/stops/505085", "https://data.delijn.be/stops/506225"], ["https://data.delijn.be/stops/306764", "https://data.delijn.be/stops/307273"], ["https://data.delijn.be/stops/108756", "https://data.delijn.be/stops/109757"], ["https://data.delijn.be/stops/101195", "https://data.delijn.be/stops/104370"], ["https://data.delijn.be/stops/507330", "https://data.delijn.be/stops/507331"], ["https://data.delijn.be/stops/401673", "https://data.delijn.be/stops/308276"], ["https://data.delijn.be/stops/404461", "https://data.delijn.be/stops/404497"], ["https://data.delijn.be/stops/401107", "https://data.delijn.be/stops/401113"], ["https://data.delijn.be/stops/300842", "https://data.delijn.be/stops/304623"], ["https://data.delijn.be/stops/402572", "https://data.delijn.be/stops/402573"], ["https://data.delijn.be/stops/101296", "https://data.delijn.be/stops/105483"], ["https://data.delijn.be/stops/504999", "https://data.delijn.be/stops/505382"], ["https://data.delijn.be/stops/107074", "https://data.delijn.be/stops/107076"], ["https://data.delijn.be/stops/206661", "https://data.delijn.be/stops/207417"], ["https://data.delijn.be/stops/304798", "https://data.delijn.be/stops/308767"], ["https://data.delijn.be/stops/200461", "https://data.delijn.be/stops/200680"], ["https://data.delijn.be/stops/402725", "https://data.delijn.be/stops/405941"], ["https://data.delijn.be/stops/206940", "https://data.delijn.be/stops/209564"], ["https://data.delijn.be/stops/504344", "https://data.delijn.be/stops/508557"], ["https://data.delijn.be/stops/201782", "https://data.delijn.be/stops/201804"], ["https://data.delijn.be/stops/303543", "https://data.delijn.be/stops/303553"], ["https://data.delijn.be/stops/206568", "https://data.delijn.be/stops/206965"], ["https://data.delijn.be/stops/204480", "https://data.delijn.be/stops/205377"], ["https://data.delijn.be/stops/303996", "https://data.delijn.be/stops/307132"], ["https://data.delijn.be/stops/203996", "https://data.delijn.be/stops/209562"], ["https://data.delijn.be/stops/409077", "https://data.delijn.be/stops/409093"], ["https://data.delijn.be/stops/204430", "https://data.delijn.be/stops/205766"], ["https://data.delijn.be/stops/107059", "https://data.delijn.be/stops/108218"], ["https://data.delijn.be/stops/200645", "https://data.delijn.be/stops/201646"], ["https://data.delijn.be/stops/303421", "https://data.delijn.be/stops/303425"], ["https://data.delijn.be/stops/303095", "https://data.delijn.be/stops/303107"], ["https://data.delijn.be/stops/504853", "https://data.delijn.be/stops/505242"], ["https://data.delijn.be/stops/200736", "https://data.delijn.be/stops/202593"], ["https://data.delijn.be/stops/202484", "https://data.delijn.be/stops/203340"], ["https://data.delijn.be/stops/101494", "https://data.delijn.be/stops/102251"], ["https://data.delijn.be/stops/501213", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/200956", "https://data.delijn.be/stops/202392"], ["https://data.delijn.be/stops/102230", "https://data.delijn.be/stops/102972"], ["https://data.delijn.be/stops/406357", "https://data.delijn.be/stops/406367"], ["https://data.delijn.be/stops/505052", "https://data.delijn.be/stops/507278"], ["https://data.delijn.be/stops/102246", "https://data.delijn.be/stops/105933"], ["https://data.delijn.be/stops/503306", "https://data.delijn.be/stops/508308"], ["https://data.delijn.be/stops/202249", "https://data.delijn.be/stops/203249"], ["https://data.delijn.be/stops/101557", "https://data.delijn.be/stops/104258"], ["https://data.delijn.be/stops/301872", "https://data.delijn.be/stops/304326"], ["https://data.delijn.be/stops/504399", "https://data.delijn.be/stops/509440"], ["https://data.delijn.be/stops/501138", "https://data.delijn.be/stops/506127"], ["https://data.delijn.be/stops/504561", "https://data.delijn.be/stops/504565"], ["https://data.delijn.be/stops/302361", "https://data.delijn.be/stops/302367"], ["https://data.delijn.be/stops/306279", "https://data.delijn.be/stops/306319"], ["https://data.delijn.be/stops/409346", "https://data.delijn.be/stops/409347"], ["https://data.delijn.be/stops/300614", "https://data.delijn.be/stops/306800"], ["https://data.delijn.be/stops/102634", "https://data.delijn.be/stops/102637"], ["https://data.delijn.be/stops/101725", "https://data.delijn.be/stops/104470"], ["https://data.delijn.be/stops/505015", "https://data.delijn.be/stops/505672"], ["https://data.delijn.be/stops/202722", "https://data.delijn.be/stops/203087"], ["https://data.delijn.be/stops/200603", "https://data.delijn.be/stops/201940"], ["https://data.delijn.be/stops/407721", "https://data.delijn.be/stops/407764"], ["https://data.delijn.be/stops/204316", "https://data.delijn.be/stops/205055"], ["https://data.delijn.be/stops/206756", "https://data.delijn.be/stops/207621"], ["https://data.delijn.be/stops/307752", "https://data.delijn.be/stops/307754"], ["https://data.delijn.be/stops/206231", "https://data.delijn.be/stops/300160"], ["https://data.delijn.be/stops/204760", "https://data.delijn.be/stops/205758"], ["https://data.delijn.be/stops/204766", "https://data.delijn.be/stops/205424"], ["https://data.delijn.be/stops/406914", "https://data.delijn.be/stops/406915"], ["https://data.delijn.be/stops/108078", "https://data.delijn.be/stops/108079"], ["https://data.delijn.be/stops/301493", "https://data.delijn.be/stops/308071"], ["https://data.delijn.be/stops/106838", "https://data.delijn.be/stops/106840"], ["https://data.delijn.be/stops/305666", "https://data.delijn.be/stops/305667"], ["https://data.delijn.be/stops/210067", "https://data.delijn.be/stops/505668"], ["https://data.delijn.be/stops/401018", "https://data.delijn.be/stops/403735"], ["https://data.delijn.be/stops/101809", "https://data.delijn.be/stops/108119"], ["https://data.delijn.be/stops/107713", "https://data.delijn.be/stops/107714"], ["https://data.delijn.be/stops/402134", "https://data.delijn.be/stops/402136"], ["https://data.delijn.be/stops/109820", "https://data.delijn.be/stops/109824"], ["https://data.delijn.be/stops/406939", "https://data.delijn.be/stops/407331"], ["https://data.delijn.be/stops/208463", "https://data.delijn.be/stops/209463"], ["https://data.delijn.be/stops/102882", "https://data.delijn.be/stops/104773"], ["https://data.delijn.be/stops/203021", "https://data.delijn.be/stops/203023"], ["https://data.delijn.be/stops/102909", "https://data.delijn.be/stops/103895"], ["https://data.delijn.be/stops/405702", "https://data.delijn.be/stops/405741"], ["https://data.delijn.be/stops/303638", "https://data.delijn.be/stops/303639"], ["https://data.delijn.be/stops/201333", "https://data.delijn.be/stops/211105"], ["https://data.delijn.be/stops/201860", "https://data.delijn.be/stops/210035"], ["https://data.delijn.be/stops/205041", "https://data.delijn.be/stops/205042"], ["https://data.delijn.be/stops/206231", "https://data.delijn.be/stops/207803"], ["https://data.delijn.be/stops/502676", "https://data.delijn.be/stops/507613"], ["https://data.delijn.be/stops/402703", "https://data.delijn.be/stops/403922"], ["https://data.delijn.be/stops/305770", "https://data.delijn.be/stops/305771"], ["https://data.delijn.be/stops/406042", "https://data.delijn.be/stops/407862"], ["https://data.delijn.be/stops/202244", "https://data.delijn.be/stops/203159"], ["https://data.delijn.be/stops/200719", "https://data.delijn.be/stops/202620"], ["https://data.delijn.be/stops/501563", "https://data.delijn.be/stops/506176"], ["https://data.delijn.be/stops/302869", "https://data.delijn.be/stops/304177"], ["https://data.delijn.be/stops/404792", "https://data.delijn.be/stops/404793"], ["https://data.delijn.be/stops/101832", "https://data.delijn.be/stops/108189"], ["https://data.delijn.be/stops/302377", "https://data.delijn.be/stops/307842"], ["https://data.delijn.be/stops/202832", "https://data.delijn.be/stops/203832"], ["https://data.delijn.be/stops/202241", "https://data.delijn.be/stops/203241"], ["https://data.delijn.be/stops/505804", "https://data.delijn.be/stops/508847"], ["https://data.delijn.be/stops/300861", "https://data.delijn.be/stops/307232"], ["https://data.delijn.be/stops/404706", "https://data.delijn.be/stops/404721"], ["https://data.delijn.be/stops/208350", "https://data.delijn.be/stops/209349"], ["https://data.delijn.be/stops/504867", "https://data.delijn.be/stops/508586"], ["https://data.delijn.be/stops/208812", "https://data.delijn.be/stops/208814"], ["https://data.delijn.be/stops/109720", "https://data.delijn.be/stops/109724"], ["https://data.delijn.be/stops/109195", "https://data.delijn.be/stops/109197"], ["https://data.delijn.be/stops/505929", "https://data.delijn.be/stops/507709"], ["https://data.delijn.be/stops/301848", "https://data.delijn.be/stops/302465"], ["https://data.delijn.be/stops/502569", "https://data.delijn.be/stops/502572"], ["https://data.delijn.be/stops/103064", "https://data.delijn.be/stops/104034"], ["https://data.delijn.be/stops/306067", "https://data.delijn.be/stops/307553"], ["https://data.delijn.be/stops/204106", "https://data.delijn.be/stops/206396"], ["https://data.delijn.be/stops/204164", "https://data.delijn.be/stops/206274"], ["https://data.delijn.be/stops/205988", "https://data.delijn.be/stops/208789"], ["https://data.delijn.be/stops/409468", "https://data.delijn.be/stops/409470"], ["https://data.delijn.be/stops/303521", "https://data.delijn.be/stops/304175"], ["https://data.delijn.be/stops/208488", "https://data.delijn.be/stops/208489"], ["https://data.delijn.be/stops/202370", "https://data.delijn.be/stops/203999"], ["https://data.delijn.be/stops/300934", "https://data.delijn.be/stops/300935"], ["https://data.delijn.be/stops/207238", "https://data.delijn.be/stops/207813"], ["https://data.delijn.be/stops/108152", "https://data.delijn.be/stops/108153"], ["https://data.delijn.be/stops/400327", "https://data.delijn.be/stops/400361"], ["https://data.delijn.be/stops/105121", "https://data.delijn.be/stops/108889"], ["https://data.delijn.be/stops/107156", "https://data.delijn.be/stops/107158"], ["https://data.delijn.be/stops/105041", "https://data.delijn.be/stops/105124"], ["https://data.delijn.be/stops/504243", "https://data.delijn.be/stops/504483"], ["https://data.delijn.be/stops/301293", "https://data.delijn.be/stops/301901"], ["https://data.delijn.be/stops/304597", "https://data.delijn.be/stops/304717"], ["https://data.delijn.be/stops/204481", "https://data.delijn.be/stops/205757"], ["https://data.delijn.be/stops/502331", "https://data.delijn.be/stops/507320"], ["https://data.delijn.be/stops/107004", "https://data.delijn.be/stops/107328"], ["https://data.delijn.be/stops/401772", "https://data.delijn.be/stops/406329"], ["https://data.delijn.be/stops/504319", "https://data.delijn.be/stops/505828"], ["https://data.delijn.be/stops/201879", "https://data.delijn.be/stops/202667"], ["https://data.delijn.be/stops/107575", "https://data.delijn.be/stops/109432"], ["https://data.delijn.be/stops/402810", "https://data.delijn.be/stops/409028"], ["https://data.delijn.be/stops/408167", "https://data.delijn.be/stops/410344"], ["https://data.delijn.be/stops/503606", "https://data.delijn.be/stops/509978"], ["https://data.delijn.be/stops/102410", "https://data.delijn.be/stops/102973"], ["https://data.delijn.be/stops/203115", "https://data.delijn.be/stops/204797"], ["https://data.delijn.be/stops/200802", "https://data.delijn.be/stops/203063"], ["https://data.delijn.be/stops/306663", "https://data.delijn.be/stops/306664"], ["https://data.delijn.be/stops/504292", "https://data.delijn.be/stops/504296"], ["https://data.delijn.be/stops/106889", "https://data.delijn.be/stops/106891"], ["https://data.delijn.be/stops/308135", "https://data.delijn.be/stops/308137"], ["https://data.delijn.be/stops/401767", "https://data.delijn.be/stops/406333"], ["https://data.delijn.be/stops/200677", "https://data.delijn.be/stops/201833"], ["https://data.delijn.be/stops/202713", "https://data.delijn.be/stops/203713"], ["https://data.delijn.be/stops/502683", "https://data.delijn.be/stops/507187"], ["https://data.delijn.be/stops/101834", "https://data.delijn.be/stops/107086"], ["https://data.delijn.be/stops/202977", "https://data.delijn.be/stops/203977"], ["https://data.delijn.be/stops/107029", "https://data.delijn.be/stops/107031"], ["https://data.delijn.be/stops/401183", "https://data.delijn.be/stops/401188"], ["https://data.delijn.be/stops/500947", "https://data.delijn.be/stops/504150"], ["https://data.delijn.be/stops/301608", "https://data.delijn.be/stops/306260"], ["https://data.delijn.be/stops/106461", "https://data.delijn.be/stops/106463"], ["https://data.delijn.be/stops/402838", "https://data.delijn.be/stops/402839"], ["https://data.delijn.be/stops/101426", "https://data.delijn.be/stops/108715"], ["https://data.delijn.be/stops/408851", "https://data.delijn.be/stops/408913"], ["https://data.delijn.be/stops/109628", "https://data.delijn.be/stops/109630"], ["https://data.delijn.be/stops/302792", "https://data.delijn.be/stops/305429"], ["https://data.delijn.be/stops/407933", "https://data.delijn.be/stops/410344"], ["https://data.delijn.be/stops/208025", "https://data.delijn.be/stops/208029"], ["https://data.delijn.be/stops/206707", "https://data.delijn.be/stops/207614"], ["https://data.delijn.be/stops/202406", "https://data.delijn.be/stops/203013"], ["https://data.delijn.be/stops/402558", "https://data.delijn.be/stops/402567"], ["https://data.delijn.be/stops/504148", "https://data.delijn.be/stops/505710"], ["https://data.delijn.be/stops/106857", "https://data.delijn.be/stops/109542"], ["https://data.delijn.be/stops/101228", "https://data.delijn.be/stops/109912"], ["https://data.delijn.be/stops/104879", "https://data.delijn.be/stops/105296"], ["https://data.delijn.be/stops/101482", "https://data.delijn.be/stops/109288"], ["https://data.delijn.be/stops/200049", "https://data.delijn.be/stops/200191"], ["https://data.delijn.be/stops/405718", "https://data.delijn.be/stops/405719"], ["https://data.delijn.be/stops/303722", "https://data.delijn.be/stops/303769"], ["https://data.delijn.be/stops/103158", "https://data.delijn.be/stops/406777"], ["https://data.delijn.be/stops/104239", "https://data.delijn.be/stops/106787"], ["https://data.delijn.be/stops/101523", "https://data.delijn.be/stops/109642"], ["https://data.delijn.be/stops/208214", "https://data.delijn.be/stops/209211"], ["https://data.delijn.be/stops/205134", "https://data.delijn.be/stops/205147"], ["https://data.delijn.be/stops/300269", "https://data.delijn.be/stops/307113"], ["https://data.delijn.be/stops/107279", "https://data.delijn.be/stops/107283"], ["https://data.delijn.be/stops/204479", "https://data.delijn.be/stops/205459"], ["https://data.delijn.be/stops/303535", "https://data.delijn.be/stops/303548"], ["https://data.delijn.be/stops/405842", "https://data.delijn.be/stops/409755"], ["https://data.delijn.be/stops/400734", "https://data.delijn.be/stops/400810"], ["https://data.delijn.be/stops/406748", "https://data.delijn.be/stops/408475"], ["https://data.delijn.be/stops/504837", "https://data.delijn.be/stops/508480"], ["https://data.delijn.be/stops/304566", "https://data.delijn.be/stops/304603"], ["https://data.delijn.be/stops/302560", "https://data.delijn.be/stops/306589"], ["https://data.delijn.be/stops/108472", "https://data.delijn.be/stops/108473"], ["https://data.delijn.be/stops/204398", "https://data.delijn.be/stops/204399"], ["https://data.delijn.be/stops/208773", "https://data.delijn.be/stops/208834"], ["https://data.delijn.be/stops/108469", "https://data.delijn.be/stops/108488"], ["https://data.delijn.be/stops/204978", "https://data.delijn.be/stops/209244"], ["https://data.delijn.be/stops/404208", "https://data.delijn.be/stops/404244"], ["https://data.delijn.be/stops/101344", "https://data.delijn.be/stops/108067"], ["https://data.delijn.be/stops/105901", "https://data.delijn.be/stops/105904"], ["https://data.delijn.be/stops/200222", "https://data.delijn.be/stops/201222"], ["https://data.delijn.be/stops/304815", "https://data.delijn.be/stops/304853"], ["https://data.delijn.be/stops/104472", "https://data.delijn.be/stops/307524"], ["https://data.delijn.be/stops/507327", "https://data.delijn.be/stops/507329"], ["https://data.delijn.be/stops/206364", "https://data.delijn.be/stops/207364"], ["https://data.delijn.be/stops/508507", "https://data.delijn.be/stops/508512"], ["https://data.delijn.be/stops/102217", "https://data.delijn.be/stops/105648"], ["https://data.delijn.be/stops/506351", "https://data.delijn.be/stops/506501"], ["https://data.delijn.be/stops/507555", "https://data.delijn.be/stops/507558"], ["https://data.delijn.be/stops/202346", "https://data.delijn.be/stops/204975"], ["https://data.delijn.be/stops/208389", "https://data.delijn.be/stops/208390"], ["https://data.delijn.be/stops/206248", "https://data.delijn.be/stops/216019"], ["https://data.delijn.be/stops/401344", "https://data.delijn.be/stops/401345"], ["https://data.delijn.be/stops/108694", "https://data.delijn.be/stops/108698"], ["https://data.delijn.be/stops/404095", "https://data.delijn.be/stops/409282"], ["https://data.delijn.be/stops/502570", "https://data.delijn.be/stops/507257"], ["https://data.delijn.be/stops/501632", "https://data.delijn.be/stops/506632"], ["https://data.delijn.be/stops/407469", "https://data.delijn.be/stops/409859"], ["https://data.delijn.be/stops/404325", "https://data.delijn.be/stops/404370"], ["https://data.delijn.be/stops/206730", "https://data.delijn.be/stops/207978"], ["https://data.delijn.be/stops/504940", "https://data.delijn.be/stops/505558"], ["https://data.delijn.be/stops/502398", "https://data.delijn.be/stops/507398"], ["https://data.delijn.be/stops/104037", "https://data.delijn.be/stops/108094"], ["https://data.delijn.be/stops/505672", "https://data.delijn.be/stops/505766"], ["https://data.delijn.be/stops/300540", "https://data.delijn.be/stops/304888"], ["https://data.delijn.be/stops/401443", "https://data.delijn.be/stops/401633"], ["https://data.delijn.be/stops/103218", "https://data.delijn.be/stops/107361"], ["https://data.delijn.be/stops/200183", "https://data.delijn.be/stops/201183"], ["https://data.delijn.be/stops/106171", "https://data.delijn.be/stops/106298"], ["https://data.delijn.be/stops/501618", "https://data.delijn.be/stops/506015"], ["https://data.delijn.be/stops/503786", "https://data.delijn.be/stops/508595"], ["https://data.delijn.be/stops/504828", "https://data.delijn.be/stops/509456"], ["https://data.delijn.be/stops/507914", "https://data.delijn.be/stops/509758"], ["https://data.delijn.be/stops/501261", "https://data.delijn.be/stops/501683"], ["https://data.delijn.be/stops/108210", "https://data.delijn.be/stops/109115"], ["https://data.delijn.be/stops/302751", "https://data.delijn.be/stops/302752"], ["https://data.delijn.be/stops/209414", "https://data.delijn.be/stops/209415"], ["https://data.delijn.be/stops/200112", "https://data.delijn.be/stops/201112"], ["https://data.delijn.be/stops/206075", "https://data.delijn.be/stops/207075"], ["https://data.delijn.be/stops/200961", "https://data.delijn.be/stops/201959"], ["https://data.delijn.be/stops/104738", "https://data.delijn.be/stops/107334"], ["https://data.delijn.be/stops/102737", "https://data.delijn.be/stops/102739"], ["https://data.delijn.be/stops/308275", "https://data.delijn.be/stops/308276"], ["https://data.delijn.be/stops/102421", "https://data.delijn.be/stops/106257"], ["https://data.delijn.be/stops/409398", "https://data.delijn.be/stops/409442"], ["https://data.delijn.be/stops/303311", "https://data.delijn.be/stops/303312"], ["https://data.delijn.be/stops/502066", "https://data.delijn.be/stops/507072"], ["https://data.delijn.be/stops/504137", "https://data.delijn.be/stops/504146"], ["https://data.delijn.be/stops/302315", "https://data.delijn.be/stops/306180"], ["https://data.delijn.be/stops/204702", "https://data.delijn.be/stops/205702"], ["https://data.delijn.be/stops/106790", "https://data.delijn.be/stops/106797"], ["https://data.delijn.be/stops/409767", "https://data.delijn.be/stops/409768"], ["https://data.delijn.be/stops/402833", "https://data.delijn.be/stops/409009"], ["https://data.delijn.be/stops/304585", "https://data.delijn.be/stops/304613"], ["https://data.delijn.be/stops/502534", "https://data.delijn.be/stops/502798"], ["https://data.delijn.be/stops/409786", "https://data.delijn.be/stops/409787"], ["https://data.delijn.be/stops/403151", "https://data.delijn.be/stops/407586"], ["https://data.delijn.be/stops/108093", "https://data.delijn.be/stops/108391"], ["https://data.delijn.be/stops/107711", "https://data.delijn.be/stops/107713"], ["https://data.delijn.be/stops/303168", "https://data.delijn.be/stops/303169"], ["https://data.delijn.be/stops/101643", "https://data.delijn.be/stops/101644"], ["https://data.delijn.be/stops/503991", "https://data.delijn.be/stops/508991"], ["https://data.delijn.be/stops/208260", "https://data.delijn.be/stops/209261"], ["https://data.delijn.be/stops/504335", "https://data.delijn.be/stops/509331"], ["https://data.delijn.be/stops/108416", "https://data.delijn.be/stops/108421"], ["https://data.delijn.be/stops/505224", "https://data.delijn.be/stops/505787"], ["https://data.delijn.be/stops/400726", "https://data.delijn.be/stops/400728"], ["https://data.delijn.be/stops/209032", "https://data.delijn.be/stops/209033"], ["https://data.delijn.be/stops/205231", "https://data.delijn.be/stops/205250"], ["https://data.delijn.be/stops/208535", "https://data.delijn.be/stops/209619"], ["https://data.delijn.be/stops/303162", "https://data.delijn.be/stops/303163"], ["https://data.delijn.be/stops/301268", "https://data.delijn.be/stops/308030"], ["https://data.delijn.be/stops/504051", "https://data.delijn.be/stops/504053"], ["https://data.delijn.be/stops/502230", "https://data.delijn.be/stops/505147"], ["https://data.delijn.be/stops/107659", "https://data.delijn.be/stops/109861"], ["https://data.delijn.be/stops/504683", "https://data.delijn.be/stops/509127"], ["https://data.delijn.be/stops/202533", "https://data.delijn.be/stops/203532"], ["https://data.delijn.be/stops/400227", "https://data.delijn.be/stops/400235"], ["https://data.delijn.be/stops/402421", "https://data.delijn.be/stops/402434"], ["https://data.delijn.be/stops/105618", "https://data.delijn.be/stops/105622"], ["https://data.delijn.be/stops/305460", "https://data.delijn.be/stops/305581"], ["https://data.delijn.be/stops/302372", "https://data.delijn.be/stops/302382"], ["https://data.delijn.be/stops/401138", "https://data.delijn.be/stops/401139"], ["https://data.delijn.be/stops/300375", "https://data.delijn.be/stops/300376"], ["https://data.delijn.be/stops/303708", "https://data.delijn.be/stops/303740"], ["https://data.delijn.be/stops/403931", "https://data.delijn.be/stops/404086"], ["https://data.delijn.be/stops/304131", "https://data.delijn.be/stops/305847"], ["https://data.delijn.be/stops/302805", "https://data.delijn.be/stops/302810"], ["https://data.delijn.be/stops/203613", "https://data.delijn.be/stops/203614"], ["https://data.delijn.be/stops/109917", "https://data.delijn.be/stops/301151"], ["https://data.delijn.be/stops/307371", "https://data.delijn.be/stops/307372"], ["https://data.delijn.be/stops/102577", "https://data.delijn.be/stops/104093"], ["https://data.delijn.be/stops/204345", "https://data.delijn.be/stops/205345"], ["https://data.delijn.be/stops/300150", "https://data.delijn.be/stops/306855"], ["https://data.delijn.be/stops/103201", "https://data.delijn.be/stops/103376"], ["https://data.delijn.be/stops/502343", "https://data.delijn.be/stops/505172"], ["https://data.delijn.be/stops/508092", "https://data.delijn.be/stops/508198"], ["https://data.delijn.be/stops/305966", "https://data.delijn.be/stops/308144"], ["https://data.delijn.be/stops/301436", "https://data.delijn.be/stops/301441"], ["https://data.delijn.be/stops/103110", "https://data.delijn.be/stops/103795"], ["https://data.delijn.be/stops/305061", "https://data.delijn.be/stops/305065"], ["https://data.delijn.be/stops/406283", "https://data.delijn.be/stops/406285"], ["https://data.delijn.be/stops/300575", "https://data.delijn.be/stops/300584"], ["https://data.delijn.be/stops/306760", "https://data.delijn.be/stops/306761"], ["https://data.delijn.be/stops/300751", "https://data.delijn.be/stops/300752"], ["https://data.delijn.be/stops/108163", "https://data.delijn.be/stops/108164"], ["https://data.delijn.be/stops/300102", "https://data.delijn.be/stops/307733"], ["https://data.delijn.be/stops/408247", "https://data.delijn.be/stops/408249"], ["https://data.delijn.be/stops/405894", "https://data.delijn.be/stops/408245"], ["https://data.delijn.be/stops/402709", "https://data.delijn.be/stops/405997"], ["https://data.delijn.be/stops/205916", "https://data.delijn.be/stops/205923"], ["https://data.delijn.be/stops/303125", "https://data.delijn.be/stops/303934"], ["https://data.delijn.be/stops/406541", "https://data.delijn.be/stops/407434"], ["https://data.delijn.be/stops/401949", "https://data.delijn.be/stops/407338"], ["https://data.delijn.be/stops/403805", "https://data.delijn.be/stops/408597"], ["https://data.delijn.be/stops/403444", "https://data.delijn.be/stops/403445"], ["https://data.delijn.be/stops/208524", "https://data.delijn.be/stops/208525"], ["https://data.delijn.be/stops/408564", "https://data.delijn.be/stops/408565"], ["https://data.delijn.be/stops/207783", "https://data.delijn.be/stops/207784"], ["https://data.delijn.be/stops/503806", "https://data.delijn.be/stops/505542"], ["https://data.delijn.be/stops/207471", "https://data.delijn.be/stops/207472"], ["https://data.delijn.be/stops/305632", "https://data.delijn.be/stops/305633"], ["https://data.delijn.be/stops/300075", "https://data.delijn.be/stops/304566"], ["https://data.delijn.be/stops/106492", "https://data.delijn.be/stops/109712"], ["https://data.delijn.be/stops/208093", "https://data.delijn.be/stops/209093"], ["https://data.delijn.be/stops/307271", "https://data.delijn.be/stops/307273"], ["https://data.delijn.be/stops/301531", "https://data.delijn.be/stops/304957"], ["https://data.delijn.be/stops/300680", "https://data.delijn.be/stops/305829"], ["https://data.delijn.be/stops/204215", "https://data.delijn.be/stops/205176"], ["https://data.delijn.be/stops/106894", "https://data.delijn.be/stops/106895"], ["https://data.delijn.be/stops/203112", "https://data.delijn.be/stops/203113"], ["https://data.delijn.be/stops/301025", "https://data.delijn.be/stops/307461"], ["https://data.delijn.be/stops/504584", "https://data.delijn.be/stops/509584"], ["https://data.delijn.be/stops/400410", "https://data.delijn.be/stops/401600"], ["https://data.delijn.be/stops/402984", "https://data.delijn.be/stops/402986"], ["https://data.delijn.be/stops/406358", "https://data.delijn.be/stops/406400"], ["https://data.delijn.be/stops/102073", "https://data.delijn.be/stops/109717"], ["https://data.delijn.be/stops/405738", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/505549", "https://data.delijn.be/stops/508659"], ["https://data.delijn.be/stops/301223", "https://data.delijn.be/stops/301224"], ["https://data.delijn.be/stops/108111", "https://data.delijn.be/stops/108147"], ["https://data.delijn.be/stops/501596", "https://data.delijn.be/stops/505176"], ["https://data.delijn.be/stops/403717", "https://data.delijn.be/stops/403822"], ["https://data.delijn.be/stops/403440", "https://data.delijn.be/stops/403866"], ["https://data.delijn.be/stops/103229", "https://data.delijn.be/stops/103231"], ["https://data.delijn.be/stops/508876", "https://data.delijn.be/stops/508878"], ["https://data.delijn.be/stops/409386", "https://data.delijn.be/stops/409387"], ["https://data.delijn.be/stops/400115", "https://data.delijn.be/stops/406730"], ["https://data.delijn.be/stops/304998", "https://data.delijn.be/stops/304999"], ["https://data.delijn.be/stops/305873", "https://data.delijn.be/stops/305874"], ["https://data.delijn.be/stops/105315", "https://data.delijn.be/stops/105316"], ["https://data.delijn.be/stops/408253", "https://data.delijn.be/stops/408351"], ["https://data.delijn.be/stops/406678", "https://data.delijn.be/stops/409856"], ["https://data.delijn.be/stops/407972", "https://data.delijn.be/stops/306061"], ["https://data.delijn.be/stops/405684", "https://data.delijn.be/stops/408393"], ["https://data.delijn.be/stops/302185", "https://data.delijn.be/stops/302206"], ["https://data.delijn.be/stops/104487", "https://data.delijn.be/stops/303561"], ["https://data.delijn.be/stops/101000", "https://data.delijn.be/stops/104545"], ["https://data.delijn.be/stops/105478", "https://data.delijn.be/stops/105684"], ["https://data.delijn.be/stops/201782", "https://data.delijn.be/stops/219006"], ["https://data.delijn.be/stops/207790", "https://data.delijn.be/stops/209408"], ["https://data.delijn.be/stops/403490", "https://data.delijn.be/stops/403492"], ["https://data.delijn.be/stops/401025", "https://data.delijn.be/stops/407796"], ["https://data.delijn.be/stops/200860", "https://data.delijn.be/stops/203332"], ["https://data.delijn.be/stops/102232", "https://data.delijn.be/stops/105661"], ["https://data.delijn.be/stops/502187", "https://data.delijn.be/stops/507187"], ["https://data.delijn.be/stops/103027", "https://data.delijn.be/stops/107477"], ["https://data.delijn.be/stops/401764", "https://data.delijn.be/stops/401769"], ["https://data.delijn.be/stops/103203", "https://data.delijn.be/stops/107193"], ["https://data.delijn.be/stops/401587", "https://data.delijn.be/stops/401590"], ["https://data.delijn.be/stops/408508", "https://data.delijn.be/stops/408509"], ["https://data.delijn.be/stops/103640", "https://data.delijn.be/stops/104123"], ["https://data.delijn.be/stops/206943", "https://data.delijn.be/stops/207943"], ["https://data.delijn.be/stops/306964", "https://data.delijn.be/stops/306965"], ["https://data.delijn.be/stops/307447", "https://data.delijn.be/stops/308274"], ["https://data.delijn.be/stops/405804", "https://data.delijn.be/stops/405810"], ["https://data.delijn.be/stops/500159", "https://data.delijn.be/stops/503549"], ["https://data.delijn.be/stops/306700", "https://data.delijn.be/stops/307934"], ["https://data.delijn.be/stops/302212", "https://data.delijn.be/stops/302215"], ["https://data.delijn.be/stops/406239", "https://data.delijn.be/stops/410044"], ["https://data.delijn.be/stops/307891", "https://data.delijn.be/stops/307892"], ["https://data.delijn.be/stops/504270", "https://data.delijn.be/stops/504273"], ["https://data.delijn.be/stops/204974", "https://data.delijn.be/stops/208244"], ["https://data.delijn.be/stops/203130", "https://data.delijn.be/stops/203276"], ["https://data.delijn.be/stops/302615", "https://data.delijn.be/stops/302617"], ["https://data.delijn.be/stops/404528", "https://data.delijn.be/stops/404529"], ["https://data.delijn.be/stops/401795", "https://data.delijn.be/stops/406352"], ["https://data.delijn.be/stops/207551", "https://data.delijn.be/stops/209744"], ["https://data.delijn.be/stops/302749", "https://data.delijn.be/stops/302757"], ["https://data.delijn.be/stops/408841", "https://data.delijn.be/stops/408847"], ["https://data.delijn.be/stops/409435", "https://data.delijn.be/stops/409722"], ["https://data.delijn.be/stops/504303", "https://data.delijn.be/stops/508064"], ["https://data.delijn.be/stops/304595", "https://data.delijn.be/stops/304634"], ["https://data.delijn.be/stops/204303", "https://data.delijn.be/stops/205706"], ["https://data.delijn.be/stops/206594", "https://data.delijn.be/stops/207569"], ["https://data.delijn.be/stops/301774", "https://data.delijn.be/stops/306796"], ["https://data.delijn.be/stops/105857", "https://data.delijn.be/stops/105859"], ["https://data.delijn.be/stops/201818", "https://data.delijn.be/stops/218026"], ["https://data.delijn.be/stops/104026", "https://data.delijn.be/stops/106902"], ["https://data.delijn.be/stops/302540", "https://data.delijn.be/stops/302542"], ["https://data.delijn.be/stops/408889", "https://data.delijn.be/stops/408902"], ["https://data.delijn.be/stops/308497", "https://data.delijn.be/stops/308498"], ["https://data.delijn.be/stops/504147", "https://data.delijn.be/stops/509147"], ["https://data.delijn.be/stops/503701", "https://data.delijn.be/stops/508728"], ["https://data.delijn.be/stops/101754", "https://data.delijn.be/stops/105752"], ["https://data.delijn.be/stops/401832", "https://data.delijn.be/stops/406019"], ["https://data.delijn.be/stops/105084", "https://data.delijn.be/stops/205609"], ["https://data.delijn.be/stops/107300", "https://data.delijn.be/stops/109030"], ["https://data.delijn.be/stops/204007", "https://data.delijn.be/stops/205699"], ["https://data.delijn.be/stops/502228", "https://data.delijn.be/stops/509931"], ["https://data.delijn.be/stops/206336", "https://data.delijn.be/stops/207336"], ["https://data.delijn.be/stops/206647", "https://data.delijn.be/stops/207487"], ["https://data.delijn.be/stops/304673", "https://data.delijn.be/stops/304678"], ["https://data.delijn.be/stops/302226", "https://data.delijn.be/stops/302244"], ["https://data.delijn.be/stops/303219", "https://data.delijn.be/stops/306167"], ["https://data.delijn.be/stops/302966", "https://data.delijn.be/stops/308660"], ["https://data.delijn.be/stops/304346", "https://data.delijn.be/stops/307344"], ["https://data.delijn.be/stops/104605", "https://data.delijn.be/stops/109600"], ["https://data.delijn.be/stops/405238", "https://data.delijn.be/stops/405295"], ["https://data.delijn.be/stops/104035", "https://data.delijn.be/stops/104140"], ["https://data.delijn.be/stops/102829", "https://data.delijn.be/stops/104785"], ["https://data.delijn.be/stops/407026", "https://data.delijn.be/stops/407030"], ["https://data.delijn.be/stops/504068", "https://data.delijn.be/stops/504469"], ["https://data.delijn.be/stops/302918", "https://data.delijn.be/stops/306401"], ["https://data.delijn.be/stops/503778", "https://data.delijn.be/stops/508776"], ["https://data.delijn.be/stops/408230", "https://data.delijn.be/stops/408425"], ["https://data.delijn.be/stops/402021", "https://data.delijn.be/stops/402977"], ["https://data.delijn.be/stops/300127", "https://data.delijn.be/stops/306823"], ["https://data.delijn.be/stops/201971", "https://data.delijn.be/stops/206764"], ["https://data.delijn.be/stops/301040", "https://data.delijn.be/stops/301057"], ["https://data.delijn.be/stops/200319", "https://data.delijn.be/stops/200996"], ["https://data.delijn.be/stops/102236", "https://data.delijn.be/stops/104289"], ["https://data.delijn.be/stops/207064", "https://data.delijn.be/stops/207065"], ["https://data.delijn.be/stops/108972", "https://data.delijn.be/stops/108982"], ["https://data.delijn.be/stops/201374", "https://data.delijn.be/stops/201382"], ["https://data.delijn.be/stops/201759", "https://data.delijn.be/stops/201769"], ["https://data.delijn.be/stops/400501", "https://data.delijn.be/stops/401960"], ["https://data.delijn.be/stops/502041", "https://data.delijn.be/stops/507618"], ["https://data.delijn.be/stops/102578", "https://data.delijn.be/stops/107711"], ["https://data.delijn.be/stops/407214", "https://data.delijn.be/stops/407216"], ["https://data.delijn.be/stops/207588", "https://data.delijn.be/stops/207589"], ["https://data.delijn.be/stops/108274", "https://data.delijn.be/stops/108276"], ["https://data.delijn.be/stops/308835", "https://data.delijn.be/stops/308836"], ["https://data.delijn.be/stops/408585", "https://data.delijn.be/stops/408592"], ["https://data.delijn.be/stops/208661", "https://data.delijn.be/stops/208695"], ["https://data.delijn.be/stops/104861", "https://data.delijn.be/stops/107815"], ["https://data.delijn.be/stops/302567", "https://data.delijn.be/stops/304917"], ["https://data.delijn.be/stops/104486", "https://data.delijn.be/stops/104488"], ["https://data.delijn.be/stops/405003", "https://data.delijn.be/stops/405044"], ["https://data.delijn.be/stops/200166", "https://data.delijn.be/stops/200749"], ["https://data.delijn.be/stops/207782", "https://data.delijn.be/stops/208190"], ["https://data.delijn.be/stops/404308", "https://data.delijn.be/stops/404370"], ["https://data.delijn.be/stops/405588", "https://data.delijn.be/stops/405602"], ["https://data.delijn.be/stops/204296", "https://data.delijn.be/stops/205496"], ["https://data.delijn.be/stops/502505", "https://data.delijn.be/stops/507509"], ["https://data.delijn.be/stops/503742", "https://data.delijn.be/stops/508710"], ["https://data.delijn.be/stops/302456", "https://data.delijn.be/stops/302458"], ["https://data.delijn.be/stops/200071", "https://data.delijn.be/stops/201071"], ["https://data.delijn.be/stops/202052", "https://data.delijn.be/stops/203052"], ["https://data.delijn.be/stops/206218", "https://data.delijn.be/stops/206461"], ["https://data.delijn.be/stops/401066", "https://data.delijn.be/stops/406659"], ["https://data.delijn.be/stops/202133", "https://data.delijn.be/stops/203133"], ["https://data.delijn.be/stops/202456", "https://data.delijn.be/stops/203456"], ["https://data.delijn.be/stops/200237", "https://data.delijn.be/stops/204925"], ["https://data.delijn.be/stops/302733", "https://data.delijn.be/stops/302745"], ["https://data.delijn.be/stops/507221", "https://data.delijn.be/stops/507224"], ["https://data.delijn.be/stops/506087", "https://data.delijn.be/stops/506092"], ["https://data.delijn.be/stops/406329", "https://data.delijn.be/stops/406333"], ["https://data.delijn.be/stops/102544", "https://data.delijn.be/stops/405103"], ["https://data.delijn.be/stops/206793", "https://data.delijn.be/stops/208031"], ["https://data.delijn.be/stops/301611", "https://data.delijn.be/stops/301614"], ["https://data.delijn.be/stops/102350", "https://data.delijn.be/stops/103281"], ["https://data.delijn.be/stops/200729", "https://data.delijn.be/stops/202591"], ["https://data.delijn.be/stops/206394", "https://data.delijn.be/stops/207395"], ["https://data.delijn.be/stops/108402", "https://data.delijn.be/stops/108403"], ["https://data.delijn.be/stops/106654", "https://data.delijn.be/stops/106656"], ["https://data.delijn.be/stops/401041", "https://data.delijn.be/stops/401149"], ["https://data.delijn.be/stops/508643", "https://data.delijn.be/stops/508836"], ["https://data.delijn.be/stops/101934", "https://data.delijn.be/stops/107740"], ["https://data.delijn.be/stops/408424", "https://data.delijn.be/stops/408427"], ["https://data.delijn.be/stops/208161", "https://data.delijn.be/stops/209161"], ["https://data.delijn.be/stops/208122", "https://data.delijn.be/stops/219004"], ["https://data.delijn.be/stops/205026", "https://data.delijn.be/stops/205819"], ["https://data.delijn.be/stops/208109", "https://data.delijn.be/stops/209204"], ["https://data.delijn.be/stops/105073", "https://data.delijn.be/stops/105074"], ["https://data.delijn.be/stops/206085", "https://data.delijn.be/stops/207988"], ["https://data.delijn.be/stops/300485", "https://data.delijn.be/stops/306162"], ["https://data.delijn.be/stops/201896", "https://data.delijn.be/stops/202941"], ["https://data.delijn.be/stops/103357", "https://data.delijn.be/stops/104875"], ["https://data.delijn.be/stops/101880", "https://data.delijn.be/stops/102113"], ["https://data.delijn.be/stops/204194", "https://data.delijn.be/stops/204196"], ["https://data.delijn.be/stops/300692", "https://data.delijn.be/stops/300698"], ["https://data.delijn.be/stops/204180", "https://data.delijn.be/stops/204181"], ["https://data.delijn.be/stops/507961", "https://data.delijn.be/stops/507962"], ["https://data.delijn.be/stops/200915", "https://data.delijn.be/stops/203686"], ["https://data.delijn.be/stops/204160", "https://data.delijn.be/stops/205164"], ["https://data.delijn.be/stops/206157", "https://data.delijn.be/stops/207158"], ["https://data.delijn.be/stops/305532", "https://data.delijn.be/stops/305573"], ["https://data.delijn.be/stops/304387", "https://data.delijn.be/stops/304388"], ["https://data.delijn.be/stops/402038", "https://data.delijn.be/stops/402040"], ["https://data.delijn.be/stops/505126", "https://data.delijn.be/stops/505127"], ["https://data.delijn.be/stops/305919", "https://data.delijn.be/stops/306654"], ["https://data.delijn.be/stops/408292", "https://data.delijn.be/stops/408391"], ["https://data.delijn.be/stops/206712", "https://data.delijn.be/stops/206719"], ["https://data.delijn.be/stops/103699", "https://data.delijn.be/stops/103701"], ["https://data.delijn.be/stops/406032", "https://data.delijn.be/stops/407168"], ["https://data.delijn.be/stops/305059", "https://data.delijn.be/stops/306336"], ["https://data.delijn.be/stops/201704", "https://data.delijn.be/stops/203601"], ["https://data.delijn.be/stops/207689", "https://data.delijn.be/stops/207728"], ["https://data.delijn.be/stops/405192", "https://data.delijn.be/stops/405193"], ["https://data.delijn.be/stops/300476", "https://data.delijn.be/stops/300477"], ["https://data.delijn.be/stops/505279", "https://data.delijn.be/stops/505974"], ["https://data.delijn.be/stops/402835", "https://data.delijn.be/stops/409026"], ["https://data.delijn.be/stops/206869", "https://data.delijn.be/stops/207551"], ["https://data.delijn.be/stops/109310", "https://data.delijn.be/stops/109346"], ["https://data.delijn.be/stops/200173", "https://data.delijn.be/stops/201515"], ["https://data.delijn.be/stops/201139", "https://data.delijn.be/stops/209931"], ["https://data.delijn.be/stops/104896", "https://data.delijn.be/stops/104897"], ["https://data.delijn.be/stops/108183", "https://data.delijn.be/stops/108194"], ["https://data.delijn.be/stops/500013", "https://data.delijn.be/stops/502561"], ["https://data.delijn.be/stops/301706", "https://data.delijn.be/stops/301713"], ["https://data.delijn.be/stops/302908", "https://data.delijn.be/stops/304312"], ["https://data.delijn.be/stops/402086", "https://data.delijn.be/stops/402087"], ["https://data.delijn.be/stops/304976", "https://data.delijn.be/stops/305036"], ["https://data.delijn.be/stops/503592", "https://data.delijn.be/stops/508592"], ["https://data.delijn.be/stops/403154", "https://data.delijn.be/stops/403319"], ["https://data.delijn.be/stops/103870", "https://data.delijn.be/stops/105670"], ["https://data.delijn.be/stops/400084", "https://data.delijn.be/stops/400161"], ["https://data.delijn.be/stops/101809", "https://data.delijn.be/stops/109659"], ["https://data.delijn.be/stops/209271", "https://data.delijn.be/stops/219006"], ["https://data.delijn.be/stops/203368", "https://data.delijn.be/stops/203998"], ["https://data.delijn.be/stops/105038", "https://data.delijn.be/stops/105121"], ["https://data.delijn.be/stops/503153", "https://data.delijn.be/stops/504020"], ["https://data.delijn.be/stops/403766", "https://data.delijn.be/stops/403874"], ["https://data.delijn.be/stops/303257", "https://data.delijn.be/stops/303344"], ["https://data.delijn.be/stops/203045", "https://data.delijn.be/stops/210122"], ["https://data.delijn.be/stops/202043", "https://data.delijn.be/stops/203047"], ["https://data.delijn.be/stops/201026", "https://data.delijn.be/stops/203070"], ["https://data.delijn.be/stops/500562", "https://data.delijn.be/stops/500564"], ["https://data.delijn.be/stops/200140", "https://data.delijn.be/stops/201985"], ["https://data.delijn.be/stops/302348", "https://data.delijn.be/stops/302360"], ["https://data.delijn.be/stops/506047", "https://data.delijn.be/stops/507730"], ["https://data.delijn.be/stops/306938", "https://data.delijn.be/stops/307945"], ["https://data.delijn.be/stops/101513", "https://data.delijn.be/stops/109028"], ["https://data.delijn.be/stops/400564", "https://data.delijn.be/stops/403082"], ["https://data.delijn.be/stops/303422", "https://data.delijn.be/stops/303426"], ["https://data.delijn.be/stops/405433", "https://data.delijn.be/stops/408749"], ["https://data.delijn.be/stops/205750", "https://data.delijn.be/stops/205752"], ["https://data.delijn.be/stops/201982", "https://data.delijn.be/stops/210097"], ["https://data.delijn.be/stops/206784", "https://data.delijn.be/stops/207797"], ["https://data.delijn.be/stops/302970", "https://data.delijn.be/stops/306715"], ["https://data.delijn.be/stops/302012", "https://data.delijn.be/stops/302050"], ["https://data.delijn.be/stops/300625", "https://data.delijn.be/stops/300629"], ["https://data.delijn.be/stops/407120", "https://data.delijn.be/stops/409511"], ["https://data.delijn.be/stops/306253", "https://data.delijn.be/stops/306255"], ["https://data.delijn.be/stops/203701", "https://data.delijn.be/stops/203703"], ["https://data.delijn.be/stops/207600", "https://data.delijn.be/stops/207651"], ["https://data.delijn.be/stops/503105", "https://data.delijn.be/stops/503973"], ["https://data.delijn.be/stops/208811", "https://data.delijn.be/stops/208813"], ["https://data.delijn.be/stops/207264", "https://data.delijn.be/stops/216001"], ["https://data.delijn.be/stops/105758", "https://data.delijn.be/stops/105762"], ["https://data.delijn.be/stops/300490", "https://data.delijn.be/stops/300492"], ["https://data.delijn.be/stops/505677", "https://data.delijn.be/stops/505679"], ["https://data.delijn.be/stops/308246", "https://data.delijn.be/stops/308249"], ["https://data.delijn.be/stops/400134", "https://data.delijn.be/stops/409156"], ["https://data.delijn.be/stops/503707", "https://data.delijn.be/stops/508704"], ["https://data.delijn.be/stops/102581", "https://data.delijn.be/stops/104450"], ["https://data.delijn.be/stops/301888", "https://data.delijn.be/stops/301889"], ["https://data.delijn.be/stops/106451", "https://data.delijn.be/stops/106453"], ["https://data.delijn.be/stops/300165", "https://data.delijn.be/stops/300176"], ["https://data.delijn.be/stops/101852", "https://data.delijn.be/stops/106872"], ["https://data.delijn.be/stops/406739", "https://data.delijn.be/stops/407565"], ["https://data.delijn.be/stops/204404", "https://data.delijn.be/stops/205198"], ["https://data.delijn.be/stops/106913", "https://data.delijn.be/stops/107261"], ["https://data.delijn.be/stops/205987", "https://data.delijn.be/stops/219018"], ["https://data.delijn.be/stops/402681", "https://data.delijn.be/stops/402737"], ["https://data.delijn.be/stops/400801", "https://data.delijn.be/stops/409539"], ["https://data.delijn.be/stops/308538", "https://data.delijn.be/stops/308539"], ["https://data.delijn.be/stops/407215", "https://data.delijn.be/stops/407217"], ["https://data.delijn.be/stops/305779", "https://data.delijn.be/stops/305780"], ["https://data.delijn.be/stops/400254", "https://data.delijn.be/stops/400255"], ["https://data.delijn.be/stops/204540", "https://data.delijn.be/stops/205619"], ["https://data.delijn.be/stops/301462", "https://data.delijn.be/stops/301495"], ["https://data.delijn.be/stops/303393", "https://data.delijn.be/stops/303395"], ["https://data.delijn.be/stops/204467", "https://data.delijn.be/stops/205467"], ["https://data.delijn.be/stops/200196", "https://data.delijn.be/stops/200429"], ["https://data.delijn.be/stops/102514", "https://data.delijn.be/stops/406465"], ["https://data.delijn.be/stops/304804", "https://data.delijn.be/stops/304810"], ["https://data.delijn.be/stops/201759", "https://data.delijn.be/stops/219011"], ["https://data.delijn.be/stops/105637", "https://data.delijn.be/stops/105639"], ["https://data.delijn.be/stops/401125", "https://data.delijn.be/stops/401132"], ["https://data.delijn.be/stops/300005", "https://data.delijn.be/stops/304504"], ["https://data.delijn.be/stops/501608", "https://data.delijn.be/stops/506607"], ["https://data.delijn.be/stops/206024", "https://data.delijn.be/stops/207267"], ["https://data.delijn.be/stops/400649", "https://data.delijn.be/stops/400653"], ["https://data.delijn.be/stops/407979", "https://data.delijn.be/stops/408260"], ["https://data.delijn.be/stops/102391", "https://data.delijn.be/stops/103134"], ["https://data.delijn.be/stops/103130", "https://data.delijn.be/stops/106053"], ["https://data.delijn.be/stops/405088", "https://data.delijn.be/stops/405750"], ["https://data.delijn.be/stops/304791", "https://data.delijn.be/stops/304792"], ["https://data.delijn.be/stops/406519", "https://data.delijn.be/stops/408720"], ["https://data.delijn.be/stops/202819", "https://data.delijn.be/stops/203911"], ["https://data.delijn.be/stops/500944", "https://data.delijn.be/stops/505985"], ["https://data.delijn.be/stops/106605", "https://data.delijn.be/stops/107122"], ["https://data.delijn.be/stops/503014", "https://data.delijn.be/stops/508014"], ["https://data.delijn.be/stops/107653", "https://data.delijn.be/stops/107726"], ["https://data.delijn.be/stops/407226", "https://data.delijn.be/stops/407488"], ["https://data.delijn.be/stops/404676", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/404469", "https://data.delijn.be/stops/406665"], ["https://data.delijn.be/stops/202623", "https://data.delijn.be/stops/203623"], ["https://data.delijn.be/stops/304190", "https://data.delijn.be/stops/304720"], ["https://data.delijn.be/stops/301850", "https://data.delijn.be/stops/302465"], ["https://data.delijn.be/stops/404347", "https://data.delijn.be/stops/409690"], ["https://data.delijn.be/stops/304612", "https://data.delijn.be/stops/304628"], ["https://data.delijn.be/stops/202140", "https://data.delijn.be/stops/203175"], ["https://data.delijn.be/stops/501736", "https://data.delijn.be/stops/501737"], ["https://data.delijn.be/stops/209158", "https://data.delijn.be/stops/209159"], ["https://data.delijn.be/stops/402176", "https://data.delijn.be/stops/406868"], ["https://data.delijn.be/stops/408498", "https://data.delijn.be/stops/408503"], ["https://data.delijn.be/stops/306615", "https://data.delijn.be/stops/306627"], ["https://data.delijn.be/stops/405984", "https://data.delijn.be/stops/410320"], ["https://data.delijn.be/stops/109151", "https://data.delijn.be/stops/109152"], ["https://data.delijn.be/stops/107302", "https://data.delijn.be/stops/107303"], ["https://data.delijn.be/stops/505786", "https://data.delijn.be/stops/509342"], ["https://data.delijn.be/stops/306744", "https://data.delijn.be/stops/306745"], ["https://data.delijn.be/stops/105881", "https://data.delijn.be/stops/105882"], ["https://data.delijn.be/stops/102765", "https://data.delijn.be/stops/105870"], ["https://data.delijn.be/stops/206895", "https://data.delijn.be/stops/207886"], ["https://data.delijn.be/stops/306611", "https://data.delijn.be/stops/306631"], ["https://data.delijn.be/stops/204334", "https://data.delijn.be/stops/205334"], ["https://data.delijn.be/stops/402562", "https://data.delijn.be/stops/407804"], ["https://data.delijn.be/stops/503844", "https://data.delijn.be/stops/504991"], ["https://data.delijn.be/stops/209044", "https://data.delijn.be/stops/209081"], ["https://data.delijn.be/stops/509845", "https://data.delijn.be/stops/509847"], ["https://data.delijn.be/stops/402422", "https://data.delijn.be/stops/402423"], ["https://data.delijn.be/stops/200131", "https://data.delijn.be/stops/204556"], ["https://data.delijn.be/stops/300920", "https://data.delijn.be/stops/305887"], ["https://data.delijn.be/stops/102913", "https://data.delijn.be/stops/103531"], ["https://data.delijn.be/stops/202508", "https://data.delijn.be/stops/203508"], ["https://data.delijn.be/stops/403332", "https://data.delijn.be/stops/403347"], ["https://data.delijn.be/stops/304956", "https://data.delijn.be/stops/304958"], ["https://data.delijn.be/stops/109132", "https://data.delijn.be/stops/109419"], ["https://data.delijn.be/stops/101906", "https://data.delijn.be/stops/107112"], ["https://data.delijn.be/stops/204485", "https://data.delijn.be/stops/205489"], ["https://data.delijn.be/stops/201543", "https://data.delijn.be/stops/205929"], ["https://data.delijn.be/stops/104452", "https://data.delijn.be/stops/107524"], ["https://data.delijn.be/stops/103042", "https://data.delijn.be/stops/104598"], ["https://data.delijn.be/stops/200940", "https://data.delijn.be/stops/203704"], ["https://data.delijn.be/stops/501071", "https://data.delijn.be/stops/501736"], ["https://data.delijn.be/stops/204421", "https://data.delijn.be/stops/204422"], ["https://data.delijn.be/stops/109453", "https://data.delijn.be/stops/109456"], ["https://data.delijn.be/stops/107202", "https://data.delijn.be/stops/406795"], ["https://data.delijn.be/stops/109091", "https://data.delijn.be/stops/109092"], ["https://data.delijn.be/stops/406670", "https://data.delijn.be/stops/406677"], ["https://data.delijn.be/stops/502379", "https://data.delijn.be/stops/507381"], ["https://data.delijn.be/stops/105419", "https://data.delijn.be/stops/109824"], ["https://data.delijn.be/stops/103066", "https://data.delijn.be/stops/107390"], ["https://data.delijn.be/stops/204059", "https://data.delijn.be/stops/205723"], ["https://data.delijn.be/stops/505150", "https://data.delijn.be/stops/505825"], ["https://data.delijn.be/stops/302181", "https://data.delijn.be/stops/305161"], ["https://data.delijn.be/stops/109030", "https://data.delijn.be/stops/109040"], ["https://data.delijn.be/stops/101982", "https://data.delijn.be/stops/300069"], ["https://data.delijn.be/stops/207864", "https://data.delijn.be/stops/208586"], ["https://data.delijn.be/stops/508539", "https://data.delijn.be/stops/508559"], ["https://data.delijn.be/stops/501577", "https://data.delijn.be/stops/503820"], ["https://data.delijn.be/stops/201532", "https://data.delijn.be/stops/211091"], ["https://data.delijn.be/stops/205793", "https://data.delijn.be/stops/214016"], ["https://data.delijn.be/stops/502464", "https://data.delijn.be/stops/507660"], ["https://data.delijn.be/stops/403974", "https://data.delijn.be/stops/403976"], ["https://data.delijn.be/stops/200966", "https://data.delijn.be/stops/206796"], ["https://data.delijn.be/stops/304457", "https://data.delijn.be/stops/304462"], ["https://data.delijn.be/stops/505341", "https://data.delijn.be/stops/505761"], ["https://data.delijn.be/stops/502910", "https://data.delijn.be/stops/505704"], ["https://data.delijn.be/stops/402440", "https://data.delijn.be/stops/409599"], ["https://data.delijn.be/stops/406162", "https://data.delijn.be/stops/407305"], ["https://data.delijn.be/stops/106764", "https://data.delijn.be/stops/106864"], ["https://data.delijn.be/stops/301138", "https://data.delijn.be/stops/304705"], ["https://data.delijn.be/stops/300078", "https://data.delijn.be/stops/307343"], ["https://data.delijn.be/stops/401360", "https://data.delijn.be/stops/401366"], ["https://data.delijn.be/stops/500556", "https://data.delijn.be/stops/507946"], ["https://data.delijn.be/stops/505550", "https://data.delijn.be/stops/505553"], ["https://data.delijn.be/stops/101160", "https://data.delijn.be/stops/103115"], ["https://data.delijn.be/stops/207717", "https://data.delijn.be/stops/207718"], ["https://data.delijn.be/stops/508903", "https://data.delijn.be/stops/509190"], ["https://data.delijn.be/stops/303581", "https://data.delijn.be/stops/303584"], ["https://data.delijn.be/stops/306901", "https://data.delijn.be/stops/308721"], ["https://data.delijn.be/stops/108379", "https://data.delijn.be/stops/108382"], ["https://data.delijn.be/stops/208097", "https://data.delijn.be/stops/209008"], ["https://data.delijn.be/stops/204755", "https://data.delijn.be/stops/205756"], ["https://data.delijn.be/stops/303844", "https://data.delijn.be/stops/303856"], ["https://data.delijn.be/stops/502582", "https://data.delijn.be/stops/507573"], ["https://data.delijn.be/stops/206704", "https://data.delijn.be/stops/307028"], ["https://data.delijn.be/stops/200067", "https://data.delijn.be/stops/201098"], ["https://data.delijn.be/stops/307987", "https://data.delijn.be/stops/307988"], ["https://data.delijn.be/stops/207732", "https://data.delijn.be/stops/303871"], ["https://data.delijn.be/stops/404896", "https://data.delijn.be/stops/404897"], ["https://data.delijn.be/stops/102440", "https://data.delijn.be/stops/102445"], ["https://data.delijn.be/stops/105938", "https://data.delijn.be/stops/105939"], ["https://data.delijn.be/stops/400512", "https://data.delijn.be/stops/402641"], ["https://data.delijn.be/stops/300794", "https://data.delijn.be/stops/300796"], ["https://data.delijn.be/stops/501453", "https://data.delijn.be/stops/506448"], ["https://data.delijn.be/stops/401455", "https://data.delijn.be/stops/401458"], ["https://data.delijn.be/stops/204717", "https://data.delijn.be/stops/205716"], ["https://data.delijn.be/stops/102919", "https://data.delijn.be/stops/103275"], ["https://data.delijn.be/stops/304544", "https://data.delijn.be/stops/304548"], ["https://data.delijn.be/stops/306688", "https://data.delijn.be/stops/309671"], ["https://data.delijn.be/stops/405153", "https://data.delijn.be/stops/405154"], ["https://data.delijn.be/stops/104404", "https://data.delijn.be/stops/204336"], ["https://data.delijn.be/stops/102145", "https://data.delijn.be/stops/102150"], ["https://data.delijn.be/stops/507748", "https://data.delijn.be/stops/508023"], ["https://data.delijn.be/stops/201562", "https://data.delijn.be/stops/204997"], ["https://data.delijn.be/stops/208220", "https://data.delijn.be/stops/209043"], ["https://data.delijn.be/stops/206142", "https://data.delijn.be/stops/207092"], ["https://data.delijn.be/stops/107818", "https://data.delijn.be/stops/107887"], ["https://data.delijn.be/stops/203409", "https://data.delijn.be/stops/203417"], ["https://data.delijn.be/stops/303504", "https://data.delijn.be/stops/303505"], ["https://data.delijn.be/stops/508690", "https://data.delijn.be/stops/509962"], ["https://data.delijn.be/stops/102069", "https://data.delijn.be/stops/106927"], ["https://data.delijn.be/stops/503295", "https://data.delijn.be/stops/505257"], ["https://data.delijn.be/stops/206279", "https://data.delijn.be/stops/206399"], ["https://data.delijn.be/stops/300102", "https://data.delijn.be/stops/300118"], ["https://data.delijn.be/stops/406664", "https://data.delijn.be/stops/406683"], ["https://data.delijn.be/stops/504420", "https://data.delijn.be/stops/504432"], ["https://data.delijn.be/stops/307011", "https://data.delijn.be/stops/307016"], ["https://data.delijn.be/stops/504635", "https://data.delijn.be/stops/504636"], ["https://data.delijn.be/stops/304635", "https://data.delijn.be/stops/307491"], ["https://data.delijn.be/stops/200434", "https://data.delijn.be/stops/201433"], ["https://data.delijn.be/stops/503590", "https://data.delijn.be/stops/505582"], ["https://data.delijn.be/stops/206296", "https://data.delijn.be/stops/207060"], ["https://data.delijn.be/stops/203821", "https://data.delijn.be/stops/205941"], ["https://data.delijn.be/stops/305755", "https://data.delijn.be/stops/306308"], ["https://data.delijn.be/stops/204381", "https://data.delijn.be/stops/205372"], ["https://data.delijn.be/stops/503105", "https://data.delijn.be/stops/508105"], ["https://data.delijn.be/stops/104768", "https://data.delijn.be/stops/108903"], ["https://data.delijn.be/stops/403544", "https://data.delijn.be/stops/403545"], ["https://data.delijn.be/stops/401180", "https://data.delijn.be/stops/410175"], ["https://data.delijn.be/stops/402737", "https://data.delijn.be/stops/405953"], ["https://data.delijn.be/stops/403299", "https://data.delijn.be/stops/405644"], ["https://data.delijn.be/stops/502563", "https://data.delijn.be/stops/505836"], ["https://data.delijn.be/stops/505648", "https://data.delijn.be/stops/507761"], ["https://data.delijn.be/stops/301722", "https://data.delijn.be/stops/303891"], ["https://data.delijn.be/stops/308017", "https://data.delijn.be/stops/308019"], ["https://data.delijn.be/stops/304887", "https://data.delijn.be/stops/306164"], ["https://data.delijn.be/stops/108762", "https://data.delijn.be/stops/108774"], ["https://data.delijn.be/stops/503818", "https://data.delijn.be/stops/508818"], ["https://data.delijn.be/stops/302322", "https://data.delijn.be/stops/302342"], ["https://data.delijn.be/stops/401129", "https://data.delijn.be/stops/401158"], ["https://data.delijn.be/stops/505078", "https://data.delijn.be/stops/505664"], ["https://data.delijn.be/stops/105416", "https://data.delijn.be/stops/109849"], ["https://data.delijn.be/stops/200926", "https://data.delijn.be/stops/203394"], ["https://data.delijn.be/stops/400815", "https://data.delijn.be/stops/403573"], ["https://data.delijn.be/stops/201887", "https://data.delijn.be/stops/211086"], ["https://data.delijn.be/stops/506113", "https://data.delijn.be/stops/509836"], ["https://data.delijn.be/stops/201129", "https://data.delijn.be/stops/201323"], ["https://data.delijn.be/stops/504144", "https://data.delijn.be/stops/509143"], ["https://data.delijn.be/stops/208240", "https://data.delijn.be/stops/208263"], ["https://data.delijn.be/stops/204186", "https://data.delijn.be/stops/204187"], ["https://data.delijn.be/stops/502284", "https://data.delijn.be/stops/502815"], ["https://data.delijn.be/stops/206587", "https://data.delijn.be/stops/207587"], ["https://data.delijn.be/stops/200532", "https://data.delijn.be/stops/211091"], ["https://data.delijn.be/stops/201357", "https://data.delijn.be/stops/201687"], ["https://data.delijn.be/stops/405055", "https://data.delijn.be/stops/410157"], ["https://data.delijn.be/stops/302923", "https://data.delijn.be/stops/302996"], ["https://data.delijn.be/stops/209541", "https://data.delijn.be/stops/209543"], ["https://data.delijn.be/stops/503605", "https://data.delijn.be/stops/508603"], ["https://data.delijn.be/stops/206364", "https://data.delijn.be/stops/207708"], ["https://data.delijn.be/stops/406209", "https://data.delijn.be/stops/406210"], ["https://data.delijn.be/stops/202076", "https://data.delijn.be/stops/203393"], ["https://data.delijn.be/stops/402794", "https://data.delijn.be/stops/406717"], ["https://data.delijn.be/stops/408202", "https://data.delijn.be/stops/408215"], ["https://data.delijn.be/stops/500047", "https://data.delijn.be/stops/500053"], ["https://data.delijn.be/stops/300770", "https://data.delijn.be/stops/307252"], ["https://data.delijn.be/stops/208004", "https://data.delijn.be/stops/209005"], ["https://data.delijn.be/stops/306679", "https://data.delijn.be/stops/306680"], ["https://data.delijn.be/stops/102963", "https://data.delijn.be/stops/103591"], ["https://data.delijn.be/stops/206210", "https://data.delijn.be/stops/207818"], ["https://data.delijn.be/stops/504080", "https://data.delijn.be/stops/509080"], ["https://data.delijn.be/stops/304142", "https://data.delijn.be/stops/304145"], ["https://data.delijn.be/stops/400200", "https://data.delijn.be/stops/400201"], ["https://data.delijn.be/stops/505247", "https://data.delijn.be/stops/505697"], ["https://data.delijn.be/stops/200495", "https://data.delijn.be/stops/201632"], ["https://data.delijn.be/stops/301343", "https://data.delijn.be/stops/306121"], ["https://data.delijn.be/stops/300222", "https://data.delijn.be/stops/301937"], ["https://data.delijn.be/stops/202078", "https://data.delijn.be/stops/202341"], ["https://data.delijn.be/stops/101781", "https://data.delijn.be/stops/103500"], ["https://data.delijn.be/stops/400639", "https://data.delijn.be/stops/400913"], ["https://data.delijn.be/stops/509400", "https://data.delijn.be/stops/509417"], ["https://data.delijn.be/stops/502388", "https://data.delijn.be/stops/502581"], ["https://data.delijn.be/stops/501438", "https://data.delijn.be/stops/505152"], ["https://data.delijn.be/stops/206401", "https://data.delijn.be/stops/207401"], ["https://data.delijn.be/stops/403104", "https://data.delijn.be/stops/403110"], ["https://data.delijn.be/stops/406080", "https://data.delijn.be/stops/406081"], ["https://data.delijn.be/stops/405043", "https://data.delijn.be/stops/405848"], ["https://data.delijn.be/stops/204393", "https://data.delijn.be/stops/204401"], ["https://data.delijn.be/stops/505238", "https://data.delijn.be/stops/507756"], ["https://data.delijn.be/stops/307389", "https://data.delijn.be/stops/307631"], ["https://data.delijn.be/stops/301007", "https://data.delijn.be/stops/303670"], ["https://data.delijn.be/stops/301687", "https://data.delijn.be/stops/301688"], ["https://data.delijn.be/stops/302661", "https://data.delijn.be/stops/302701"], ["https://data.delijn.be/stops/204148", "https://data.delijn.be/stops/204785"], ["https://data.delijn.be/stops/404644", "https://data.delijn.be/stops/404993"], ["https://data.delijn.be/stops/301772", "https://data.delijn.be/stops/301776"], ["https://data.delijn.be/stops/200919", "https://data.delijn.be/stops/200948"], ["https://data.delijn.be/stops/300526", "https://data.delijn.be/stops/302789"], ["https://data.delijn.be/stops/208650", "https://data.delijn.be/stops/209650"], ["https://data.delijn.be/stops/207752", "https://data.delijn.be/stops/207767"], ["https://data.delijn.be/stops/301552", "https://data.delijn.be/stops/308087"], ["https://data.delijn.be/stops/204107", "https://data.delijn.be/stops/204348"], ["https://data.delijn.be/stops/304356", "https://data.delijn.be/stops/304358"], ["https://data.delijn.be/stops/503050", "https://data.delijn.be/stops/505899"], ["https://data.delijn.be/stops/101877", "https://data.delijn.be/stops/102730"], ["https://data.delijn.be/stops/301704", "https://data.delijn.be/stops/301756"], ["https://data.delijn.be/stops/502022", "https://data.delijn.be/stops/507247"], ["https://data.delijn.be/stops/406203", "https://data.delijn.be/stops/410246"], ["https://data.delijn.be/stops/503251", "https://data.delijn.be/stops/508234"], ["https://data.delijn.be/stops/400059", "https://data.delijn.be/stops/400926"], ["https://data.delijn.be/stops/305207", "https://data.delijn.be/stops/305208"], ["https://data.delijn.be/stops/102858", "https://data.delijn.be/stops/104667"], ["https://data.delijn.be/stops/305744", "https://data.delijn.be/stops/306330"], ["https://data.delijn.be/stops/304721", "https://data.delijn.be/stops/304722"], ["https://data.delijn.be/stops/503993", "https://data.delijn.be/stops/508559"], ["https://data.delijn.be/stops/504163", "https://data.delijn.be/stops/509529"], ["https://data.delijn.be/stops/108838", "https://data.delijn.be/stops/108841"], ["https://data.delijn.be/stops/304486", "https://data.delijn.be/stops/304489"], ["https://data.delijn.be/stops/505547", "https://data.delijn.be/stops/507198"], ["https://data.delijn.be/stops/106152", "https://data.delijn.be/stops/106443"], ["https://data.delijn.be/stops/407018", "https://data.delijn.be/stops/407019"], ["https://data.delijn.be/stops/502278", "https://data.delijn.be/stops/507334"], ["https://data.delijn.be/stops/200896", "https://data.delijn.be/stops/200909"], ["https://data.delijn.be/stops/200473", "https://data.delijn.be/stops/201473"], ["https://data.delijn.be/stops/304521", "https://data.delijn.be/stops/304522"], ["https://data.delijn.be/stops/400258", "https://data.delijn.be/stops/400259"], ["https://data.delijn.be/stops/401988", "https://data.delijn.be/stops/403381"], ["https://data.delijn.be/stops/200472", "https://data.delijn.be/stops/201472"], ["https://data.delijn.be/stops/101069", "https://data.delijn.be/stops/105963"], ["https://data.delijn.be/stops/503882", "https://data.delijn.be/stops/508882"], ["https://data.delijn.be/stops/403155", "https://data.delijn.be/stops/410321"], ["https://data.delijn.be/stops/201924", "https://data.delijn.be/stops/201925"], ["https://data.delijn.be/stops/306758", "https://data.delijn.be/stops/306760"], ["https://data.delijn.be/stops/200117", "https://data.delijn.be/stops/200815"], ["https://data.delijn.be/stops/504040", "https://data.delijn.be/stops/509044"], ["https://data.delijn.be/stops/404445", "https://data.delijn.be/stops/404561"], ["https://data.delijn.be/stops/109539", "https://data.delijn.be/stops/109583"], ["https://data.delijn.be/stops/204243", "https://data.delijn.be/stops/215017"], ["https://data.delijn.be/stops/103693", "https://data.delijn.be/stops/103697"], ["https://data.delijn.be/stops/304236", "https://data.delijn.be/stops/304240"], ["https://data.delijn.be/stops/403508", "https://data.delijn.be/stops/410220"], ["https://data.delijn.be/stops/101433", "https://data.delijn.be/stops/101434"], ["https://data.delijn.be/stops/103132", "https://data.delijn.be/stops/106669"], ["https://data.delijn.be/stops/106744", "https://data.delijn.be/stops/109777"], ["https://data.delijn.be/stops/205613", "https://data.delijn.be/stops/205647"], ["https://data.delijn.be/stops/303170", "https://data.delijn.be/stops/305525"], ["https://data.delijn.be/stops/504649", "https://data.delijn.be/stops/504976"], ["https://data.delijn.be/stops/304155", "https://data.delijn.be/stops/304161"], ["https://data.delijn.be/stops/402739", "https://data.delijn.be/stops/407299"], ["https://data.delijn.be/stops/202025", "https://data.delijn.be/stops/203025"], ["https://data.delijn.be/stops/302912", "https://data.delijn.be/stops/302913"], ["https://data.delijn.be/stops/503538", "https://data.delijn.be/stops/505580"], ["https://data.delijn.be/stops/301344", "https://data.delijn.be/stops/304677"], ["https://data.delijn.be/stops/106038", "https://data.delijn.be/stops/106571"], ["https://data.delijn.be/stops/403328", "https://data.delijn.be/stops/403356"], ["https://data.delijn.be/stops/505014", "https://data.delijn.be/stops/505180"], ["https://data.delijn.be/stops/206018", "https://data.delijn.be/stops/207078"], ["https://data.delijn.be/stops/502016", "https://data.delijn.be/stops/507941"], ["https://data.delijn.be/stops/505950", "https://data.delijn.be/stops/508283"], ["https://data.delijn.be/stops/306112", "https://data.delijn.be/stops/307863"], ["https://data.delijn.be/stops/406079", "https://data.delijn.be/stops/407166"], ["https://data.delijn.be/stops/501149", "https://data.delijn.be/stops/509834"], ["https://data.delijn.be/stops/102012", "https://data.delijn.be/stops/102013"], ["https://data.delijn.be/stops/302216", "https://data.delijn.be/stops/302217"], ["https://data.delijn.be/stops/204778", "https://data.delijn.be/stops/205591"], ["https://data.delijn.be/stops/101977", "https://data.delijn.be/stops/308492"], ["https://data.delijn.be/stops/405940", "https://data.delijn.be/stops/405995"], ["https://data.delijn.be/stops/400791", "https://data.delijn.be/stops/400857"], ["https://data.delijn.be/stops/504140", "https://data.delijn.be/stops/509141"], ["https://data.delijn.be/stops/407983", "https://data.delijn.be/stops/407993"], ["https://data.delijn.be/stops/304435", "https://data.delijn.be/stops/307718"], ["https://data.delijn.be/stops/201861", "https://data.delijn.be/stops/202891"], ["https://data.delijn.be/stops/207564", "https://data.delijn.be/stops/207830"], ["https://data.delijn.be/stops/504243", "https://data.delijn.be/stops/509443"], ["https://data.delijn.be/stops/107608", "https://data.delijn.be/stops/107611"], ["https://data.delijn.be/stops/300574", "https://data.delijn.be/stops/300581"], ["https://data.delijn.be/stops/400736", "https://data.delijn.be/stops/405667"], ["https://data.delijn.be/stops/502422", "https://data.delijn.be/stops/502423"], ["https://data.delijn.be/stops/101210", "https://data.delijn.be/stops/101215"], ["https://data.delijn.be/stops/504670", "https://data.delijn.be/stops/504793"], ["https://data.delijn.be/stops/104724", "https://data.delijn.be/stops/105700"], ["https://data.delijn.be/stops/101747", "https://data.delijn.be/stops/103909"], ["https://data.delijn.be/stops/106700", "https://data.delijn.be/stops/106701"], ["https://data.delijn.be/stops/300670", "https://data.delijn.be/stops/300679"], ["https://data.delijn.be/stops/305958", "https://data.delijn.be/stops/305959"], ["https://data.delijn.be/stops/106234", "https://data.delijn.be/stops/106681"], ["https://data.delijn.be/stops/505695", "https://data.delijn.be/stops/508767"], ["https://data.delijn.be/stops/104993", "https://data.delijn.be/stops/109991"], ["https://data.delijn.be/stops/502474", "https://data.delijn.be/stops/502477"], ["https://data.delijn.be/stops/201874", "https://data.delijn.be/stops/210038"], ["https://data.delijn.be/stops/206935", "https://data.delijn.be/stops/207230"], ["https://data.delijn.be/stops/104958", "https://data.delijn.be/stops/108967"], ["https://data.delijn.be/stops/408250", "https://data.delijn.be/stops/408291"], ["https://data.delijn.be/stops/101285", "https://data.delijn.be/stops/101290"], ["https://data.delijn.be/stops/204224", "https://data.delijn.be/stops/205096"], ["https://data.delijn.be/stops/304461", "https://data.delijn.be/stops/306409"], ["https://data.delijn.be/stops/206705", "https://data.delijn.be/stops/301673"], ["https://data.delijn.be/stops/307184", "https://data.delijn.be/stops/307185"], ["https://data.delijn.be/stops/204245", "https://data.delijn.be/stops/205245"], ["https://data.delijn.be/stops/206291", "https://data.delijn.be/stops/206294"], ["https://data.delijn.be/stops/101136", "https://data.delijn.be/stops/105195"], ["https://data.delijn.be/stops/302569", "https://data.delijn.be/stops/302579"], ["https://data.delijn.be/stops/105771", "https://data.delijn.be/stops/105773"], ["https://data.delijn.be/stops/300850", "https://data.delijn.be/stops/300891"], ["https://data.delijn.be/stops/502928", "https://data.delijn.be/stops/505410"], ["https://data.delijn.be/stops/502615", "https://data.delijn.be/stops/507485"], ["https://data.delijn.be/stops/504699", "https://data.delijn.be/stops/509114"], ["https://data.delijn.be/stops/102604", "https://data.delijn.be/stops/106834"], ["https://data.delijn.be/stops/103165", "https://data.delijn.be/stops/107665"], ["https://data.delijn.be/stops/202579", "https://data.delijn.be/stops/203579"], ["https://data.delijn.be/stops/300287", "https://data.delijn.be/stops/307477"], ["https://data.delijn.be/stops/109444", "https://data.delijn.be/stops/109520"], ["https://data.delijn.be/stops/402174", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/201554", "https://data.delijn.be/stops/201670"], ["https://data.delijn.be/stops/404916", "https://data.delijn.be/stops/404919"], ["https://data.delijn.be/stops/405540", "https://data.delijn.be/stops/409299"], ["https://data.delijn.be/stops/208798", "https://data.delijn.be/stops/209354"], ["https://data.delijn.be/stops/302946", "https://data.delijn.be/stops/302948"], ["https://data.delijn.be/stops/302633", "https://data.delijn.be/stops/302634"], ["https://data.delijn.be/stops/403816", "https://data.delijn.be/stops/403817"], ["https://data.delijn.be/stops/200481", "https://data.delijn.be/stops/201481"], ["https://data.delijn.be/stops/300109", "https://data.delijn.be/stops/306855"], ["https://data.delijn.be/stops/103660", "https://data.delijn.be/stops/103661"], ["https://data.delijn.be/stops/302984", "https://data.delijn.be/stops/306713"], ["https://data.delijn.be/stops/405397", "https://data.delijn.be/stops/405408"], ["https://data.delijn.be/stops/202277", "https://data.delijn.be/stops/203277"], ["https://data.delijn.be/stops/504294", "https://data.delijn.be/stops/504299"], ["https://data.delijn.be/stops/103510", "https://data.delijn.be/stops/104030"], ["https://data.delijn.be/stops/102593", "https://data.delijn.be/stops/107813"], ["https://data.delijn.be/stops/407380", "https://data.delijn.be/stops/407857"], ["https://data.delijn.be/stops/106492", "https://data.delijn.be/stops/106493"], ["https://data.delijn.be/stops/402518", "https://data.delijn.be/stops/402520"], ["https://data.delijn.be/stops/107457", "https://data.delijn.be/stops/107458"], ["https://data.delijn.be/stops/107459", "https://data.delijn.be/stops/109197"], ["https://data.delijn.be/stops/405937", "https://data.delijn.be/stops/405942"], ["https://data.delijn.be/stops/408298", "https://data.delijn.be/stops/408299"], ["https://data.delijn.be/stops/503792", "https://data.delijn.be/stops/508313"], ["https://data.delijn.be/stops/408348", "https://data.delijn.be/stops/410160"], ["https://data.delijn.be/stops/308510", "https://data.delijn.be/stops/308513"], ["https://data.delijn.be/stops/307302", "https://data.delijn.be/stops/307303"], ["https://data.delijn.be/stops/107613", "https://data.delijn.be/stops/107614"], ["https://data.delijn.be/stops/300010", "https://data.delijn.be/stops/304250"], ["https://data.delijn.be/stops/401014", "https://data.delijn.be/stops/401015"], ["https://data.delijn.be/stops/503619", "https://data.delijn.be/stops/508623"], ["https://data.delijn.be/stops/106233", "https://data.delijn.be/stops/109804"], ["https://data.delijn.be/stops/204727", "https://data.delijn.be/stops/204761"], ["https://data.delijn.be/stops/501245", "https://data.delijn.be/stops/501247"], ["https://data.delijn.be/stops/400302", "https://data.delijn.be/stops/400303"], ["https://data.delijn.be/stops/503273", "https://data.delijn.be/stops/503275"], ["https://data.delijn.be/stops/106228", "https://data.delijn.be/stops/106325"], ["https://data.delijn.be/stops/503406", "https://data.delijn.be/stops/508385"], ["https://data.delijn.be/stops/503845", "https://data.delijn.be/stops/504993"], ["https://data.delijn.be/stops/401076", "https://data.delijn.be/stops/407537"], ["https://data.delijn.be/stops/407197", "https://data.delijn.be/stops/407411"], ["https://data.delijn.be/stops/300396", "https://data.delijn.be/stops/301972"], ["https://data.delijn.be/stops/201943", "https://data.delijn.be/stops/202488"], ["https://data.delijn.be/stops/201587", "https://data.delijn.be/stops/210607"], ["https://data.delijn.be/stops/108687", "https://data.delijn.be/stops/108896"], ["https://data.delijn.be/stops/404765", "https://data.delijn.be/stops/404829"], ["https://data.delijn.be/stops/502139", "https://data.delijn.be/stops/502146"], ["https://data.delijn.be/stops/402529", "https://data.delijn.be/stops/404062"], ["https://data.delijn.be/stops/200248", "https://data.delijn.be/stops/200574"], ["https://data.delijn.be/stops/102535", "https://data.delijn.be/stops/104996"], ["https://data.delijn.be/stops/101600", "https://data.delijn.be/stops/103974"], ["https://data.delijn.be/stops/502421", "https://data.delijn.be/stops/507424"], ["https://data.delijn.be/stops/200881", "https://data.delijn.be/stops/202285"], ["https://data.delijn.be/stops/304310", "https://data.delijn.be/stops/304311"], ["https://data.delijn.be/stops/402181", "https://data.delijn.be/stops/402195"], ["https://data.delijn.be/stops/208180", "https://data.delijn.be/stops/208759"], ["https://data.delijn.be/stops/101049", "https://data.delijn.be/stops/104366"], ["https://data.delijn.be/stops/403424", "https://data.delijn.be/stops/410222"], ["https://data.delijn.be/stops/109230", "https://data.delijn.be/stops/109231"], ["https://data.delijn.be/stops/103317", "https://data.delijn.be/stops/105518"], ["https://data.delijn.be/stops/404206", "https://data.delijn.be/stops/404219"], ["https://data.delijn.be/stops/207846", "https://data.delijn.be/stops/207932"], ["https://data.delijn.be/stops/206428", "https://data.delijn.be/stops/208537"], ["https://data.delijn.be/stops/102121", "https://data.delijn.be/stops/109367"], ["https://data.delijn.be/stops/300559", "https://data.delijn.be/stops/300617"], ["https://data.delijn.be/stops/207491", "https://data.delijn.be/stops/207518"], ["https://data.delijn.be/stops/200941", "https://data.delijn.be/stops/200946"], ["https://data.delijn.be/stops/404489", "https://data.delijn.be/stops/408163"], ["https://data.delijn.be/stops/108761", "https://data.delijn.be/stops/305785"], ["https://data.delijn.be/stops/505809", "https://data.delijn.be/stops/508670"], ["https://data.delijn.be/stops/208299", "https://data.delijn.be/stops/209317"], ["https://data.delijn.be/stops/109079", "https://data.delijn.be/stops/109082"], ["https://data.delijn.be/stops/204493", "https://data.delijn.be/stops/205493"], ["https://data.delijn.be/stops/200838", "https://data.delijn.be/stops/203300"], ["https://data.delijn.be/stops/505798", "https://data.delijn.be/stops/509108"], ["https://data.delijn.be/stops/305061", "https://data.delijn.be/stops/307277"], ["https://data.delijn.be/stops/201154", "https://data.delijn.be/stops/201176"], ["https://data.delijn.be/stops/205017", "https://data.delijn.be/stops/205090"], ["https://data.delijn.be/stops/209459", "https://data.delijn.be/stops/209467"], ["https://data.delijn.be/stops/406305", "https://data.delijn.be/stops/406358"], ["https://data.delijn.be/stops/305700", "https://data.delijn.be/stops/307839"], ["https://data.delijn.be/stops/308079", "https://data.delijn.be/stops/308741"], ["https://data.delijn.be/stops/208119", "https://data.delijn.be/stops/219008"], ["https://data.delijn.be/stops/201082", "https://data.delijn.be/stops/209291"], ["https://data.delijn.be/stops/206333", "https://data.delijn.be/stops/206363"], ["https://data.delijn.be/stops/401215", "https://data.delijn.be/stops/408418"], ["https://data.delijn.be/stops/204168", "https://data.delijn.be/stops/204587"], ["https://data.delijn.be/stops/500135", "https://data.delijn.be/stops/590333"], ["https://data.delijn.be/stops/109257", "https://data.delijn.be/stops/109258"], ["https://data.delijn.be/stops/207339", "https://data.delijn.be/stops/207709"], ["https://data.delijn.be/stops/503714", "https://data.delijn.be/stops/508712"], ["https://data.delijn.be/stops/208148", "https://data.delijn.be/stops/208149"], ["https://data.delijn.be/stops/308156", "https://data.delijn.be/stops/308179"], ["https://data.delijn.be/stops/400580", "https://data.delijn.be/stops/404139"], ["https://data.delijn.be/stops/307507", "https://data.delijn.be/stops/307509"], ["https://data.delijn.be/stops/308454", "https://data.delijn.be/stops/308456"], ["https://data.delijn.be/stops/503991", "https://data.delijn.be/stops/508266"], ["https://data.delijn.be/stops/206663", "https://data.delijn.be/stops/207987"], ["https://data.delijn.be/stops/405465", "https://data.delijn.be/stops/408816"], ["https://data.delijn.be/stops/305554", "https://data.delijn.be/stops/308687"], ["https://data.delijn.be/stops/407660", "https://data.delijn.be/stops/407662"], ["https://data.delijn.be/stops/400059", "https://data.delijn.be/stops/400115"], ["https://data.delijn.be/stops/402512", "https://data.delijn.be/stops/405662"], ["https://data.delijn.be/stops/303660", "https://data.delijn.be/stops/304714"], ["https://data.delijn.be/stops/103287", "https://data.delijn.be/stops/107687"], ["https://data.delijn.be/stops/303311", "https://data.delijn.be/stops/308921"], ["https://data.delijn.be/stops/201385", "https://data.delijn.be/stops/203007"], ["https://data.delijn.be/stops/300957", "https://data.delijn.be/stops/300961"], ["https://data.delijn.be/stops/200923", "https://data.delijn.be/stops/202674"], ["https://data.delijn.be/stops/400511", "https://data.delijn.be/stops/402637"], ["https://data.delijn.be/stops/106761", "https://data.delijn.be/stops/106764"], ["https://data.delijn.be/stops/502614", "https://data.delijn.be/stops/502803"], ["https://data.delijn.be/stops/501417", "https://data.delijn.be/stops/506411"], ["https://data.delijn.be/stops/405748", "https://data.delijn.be/stops/405820"], ["https://data.delijn.be/stops/108136", "https://data.delijn.be/stops/108864"], ["https://data.delijn.be/stops/207782", "https://data.delijn.be/stops/208406"], ["https://data.delijn.be/stops/300934", "https://data.delijn.be/stops/300987"], ["https://data.delijn.be/stops/404172", "https://data.delijn.be/stops/404176"], ["https://data.delijn.be/stops/207663", "https://data.delijn.be/stops/209678"], ["https://data.delijn.be/stops/402079", "https://data.delijn.be/stops/402340"], ["https://data.delijn.be/stops/102936", "https://data.delijn.be/stops/107735"], ["https://data.delijn.be/stops/408910", "https://data.delijn.be/stops/408916"], ["https://data.delijn.be/stops/502234", "https://data.delijn.be/stops/507234"], ["https://data.delijn.be/stops/105254", "https://data.delijn.be/stops/105272"], ["https://data.delijn.be/stops/105139", "https://data.delijn.be/stops/305827"], ["https://data.delijn.be/stops/204661", "https://data.delijn.be/stops/205661"], ["https://data.delijn.be/stops/401127", "https://data.delijn.be/stops/401131"], ["https://data.delijn.be/stops/302565", "https://data.delijn.be/stops/302771"], ["https://data.delijn.be/stops/300658", "https://data.delijn.be/stops/300663"], ["https://data.delijn.be/stops/301364", "https://data.delijn.be/stops/306126"], ["https://data.delijn.be/stops/101851", "https://data.delijn.be/stops/106852"], ["https://data.delijn.be/stops/303728", "https://data.delijn.be/stops/303729"], ["https://data.delijn.be/stops/204118", "https://data.delijn.be/stops/205119"], ["https://data.delijn.be/stops/102379", "https://data.delijn.be/stops/109391"], ["https://data.delijn.be/stops/106308", "https://data.delijn.be/stops/106311"], ["https://data.delijn.be/stops/200816", "https://data.delijn.be/stops/211016"], ["https://data.delijn.be/stops/206748", "https://data.delijn.be/stops/207748"], ["https://data.delijn.be/stops/206925", "https://data.delijn.be/stops/207923"], ["https://data.delijn.be/stops/200311", "https://data.delijn.be/stops/201161"], ["https://data.delijn.be/stops/207712", "https://data.delijn.be/stops/207743"], ["https://data.delijn.be/stops/502561", "https://data.delijn.be/stops/507562"], ["https://data.delijn.be/stops/102501", "https://data.delijn.be/stops/102508"], ["https://data.delijn.be/stops/105753", "https://data.delijn.be/stops/109816"], ["https://data.delijn.be/stops/103332", "https://data.delijn.be/stops/106442"], ["https://data.delijn.be/stops/105024", "https://data.delijn.be/stops/107707"], ["https://data.delijn.be/stops/202786", "https://data.delijn.be/stops/209643"], ["https://data.delijn.be/stops/502321", "https://data.delijn.be/stops/507337"], ["https://data.delijn.be/stops/403722", "https://data.delijn.be/stops/405136"], ["https://data.delijn.be/stops/102822", "https://data.delijn.be/stops/105260"], ["https://data.delijn.be/stops/203735", "https://data.delijn.be/stops/203851"], ["https://data.delijn.be/stops/406244", "https://data.delijn.be/stops/409346"], ["https://data.delijn.be/stops/403628", "https://data.delijn.be/stops/403629"], ["https://data.delijn.be/stops/204685", "https://data.delijn.be/stops/205685"], ["https://data.delijn.be/stops/201723", "https://data.delijn.be/stops/202447"], ["https://data.delijn.be/stops/204659", "https://data.delijn.be/stops/205660"], ["https://data.delijn.be/stops/203763", "https://data.delijn.be/stops/203764"], ["https://data.delijn.be/stops/503991", "https://data.delijn.be/stops/507204"], ["https://data.delijn.be/stops/504015", "https://data.delijn.be/stops/504674"], ["https://data.delijn.be/stops/502179", "https://data.delijn.be/stops/507179"], ["https://data.delijn.be/stops/302823", "https://data.delijn.be/stops/302928"], ["https://data.delijn.be/stops/102647", "https://data.delijn.be/stops/107834"], ["https://data.delijn.be/stops/407985", "https://data.delijn.be/stops/408053"], ["https://data.delijn.be/stops/409490", "https://data.delijn.be/stops/409492"], ["https://data.delijn.be/stops/404179", "https://data.delijn.be/stops/405912"], ["https://data.delijn.be/stops/301472", "https://data.delijn.be/stops/305650"], ["https://data.delijn.be/stops/200669", "https://data.delijn.be/stops/508850"], ["https://data.delijn.be/stops/402312", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/103323", "https://data.delijn.be/stops/104362"], ["https://data.delijn.be/stops/304908", "https://data.delijn.be/stops/306161"], ["https://data.delijn.be/stops/202176", "https://data.delijn.be/stops/203140"], ["https://data.delijn.be/stops/504475", "https://data.delijn.be/stops/509477"], ["https://data.delijn.be/stops/402755", "https://data.delijn.be/stops/402773"], ["https://data.delijn.be/stops/203902", "https://data.delijn.be/stops/203903"], ["https://data.delijn.be/stops/504724", "https://data.delijn.be/stops/508959"], ["https://data.delijn.be/stops/402366", "https://data.delijn.be/stops/409600"], ["https://data.delijn.be/stops/107620", "https://data.delijn.be/stops/108935"], ["https://data.delijn.be/stops/206507", "https://data.delijn.be/stops/206508"], ["https://data.delijn.be/stops/101654", "https://data.delijn.be/stops/308846"], ["https://data.delijn.be/stops/409114", "https://data.delijn.be/stops/409121"], ["https://data.delijn.be/stops/202331", "https://data.delijn.be/stops/202338"], ["https://data.delijn.be/stops/400678", "https://data.delijn.be/stops/405410"], ["https://data.delijn.be/stops/305136", "https://data.delijn.be/stops/305142"], ["https://data.delijn.be/stops/401483", "https://data.delijn.be/stops/401509"], ["https://data.delijn.be/stops/200742", "https://data.delijn.be/stops/201697"], ["https://data.delijn.be/stops/502165", "https://data.delijn.be/stops/502166"], ["https://data.delijn.be/stops/409262", "https://data.delijn.be/stops/409265"], ["https://data.delijn.be/stops/302675", "https://data.delijn.be/stops/302676"], ["https://data.delijn.be/stops/300776", "https://data.delijn.be/stops/300792"], ["https://data.delijn.be/stops/404464", "https://data.delijn.be/stops/409261"], ["https://data.delijn.be/stops/503779", "https://data.delijn.be/stops/508779"], ["https://data.delijn.be/stops/507173", "https://data.delijn.be/stops/508133"], ["https://data.delijn.be/stops/400814", "https://data.delijn.be/stops/401908"], ["https://data.delijn.be/stops/101085", "https://data.delijn.be/stops/105320"], ["https://data.delijn.be/stops/404871", "https://data.delijn.be/stops/404968"], ["https://data.delijn.be/stops/303286", "https://data.delijn.be/stops/303287"], ["https://data.delijn.be/stops/403141", "https://data.delijn.be/stops/403215"], ["https://data.delijn.be/stops/404562", "https://data.delijn.be/stops/406742"], ["https://data.delijn.be/stops/207765", "https://data.delijn.be/stops/208762"], ["https://data.delijn.be/stops/209656", "https://data.delijn.be/stops/210068"], ["https://data.delijn.be/stops/203863", "https://data.delijn.be/stops/203864"], ["https://data.delijn.be/stops/106320", "https://data.delijn.be/stops/106321"], ["https://data.delijn.be/stops/304369", "https://data.delijn.be/stops/307365"], ["https://data.delijn.be/stops/106243", "https://data.delijn.be/stops/106730"], ["https://data.delijn.be/stops/502432", "https://data.delijn.be/stops/507425"], ["https://data.delijn.be/stops/304809", "https://data.delijn.be/stops/308782"], ["https://data.delijn.be/stops/401730", "https://data.delijn.be/stops/406319"], ["https://data.delijn.be/stops/206921", "https://data.delijn.be/stops/207921"], ["https://data.delijn.be/stops/305511", "https://data.delijn.be/stops/305531"], ["https://data.delijn.be/stops/101959", "https://data.delijn.be/stops/101961"], ["https://data.delijn.be/stops/103660", "https://data.delijn.be/stops/106338"], ["https://data.delijn.be/stops/204564", "https://data.delijn.be/stops/205565"], ["https://data.delijn.be/stops/105990", "https://data.delijn.be/stops/105993"], ["https://data.delijn.be/stops/402406", "https://data.delijn.be/stops/402407"], ["https://data.delijn.be/stops/402850", "https://data.delijn.be/stops/409006"], ["https://data.delijn.be/stops/207707", "https://data.delijn.be/stops/207708"], ["https://data.delijn.be/stops/104114", "https://data.delijn.be/stops/107875"], ["https://data.delijn.be/stops/404058", "https://data.delijn.be/stops/404059"], ["https://data.delijn.be/stops/505174", "https://data.delijn.be/stops/509154"], ["https://data.delijn.be/stops/200011", "https://data.delijn.be/stops/201012"], ["https://data.delijn.be/stops/505822", "https://data.delijn.be/stops/508777"], ["https://data.delijn.be/stops/308981", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/405586", "https://data.delijn.be/stops/405587"], ["https://data.delijn.be/stops/504716", "https://data.delijn.be/stops/509478"], ["https://data.delijn.be/stops/202400", "https://data.delijn.be/stops/203400"], ["https://data.delijn.be/stops/304581", "https://data.delijn.be/stops/307572"], ["https://data.delijn.be/stops/102255", "https://data.delijn.be/stops/102838"], ["https://data.delijn.be/stops/307197", "https://data.delijn.be/stops/307198"], ["https://data.delijn.be/stops/305665", "https://data.delijn.be/stops/307102"], ["https://data.delijn.be/stops/101151", "https://data.delijn.be/stops/106860"], ["https://data.delijn.be/stops/108090", "https://data.delijn.be/stops/108140"], ["https://data.delijn.be/stops/410292", "https://data.delijn.be/stops/410293"], ["https://data.delijn.be/stops/300685", "https://data.delijn.be/stops/306951"], ["https://data.delijn.be/stops/501231", "https://data.delijn.be/stops/506634"], ["https://data.delijn.be/stops/407198", "https://data.delijn.be/stops/407411"], ["https://data.delijn.be/stops/104486", "https://data.delijn.be/stops/104558"], ["https://data.delijn.be/stops/301656", "https://data.delijn.be/stops/301892"], ["https://data.delijn.be/stops/300650", "https://data.delijn.be/stops/300660"], ["https://data.delijn.be/stops/205140", "https://data.delijn.be/stops/205575"], ["https://data.delijn.be/stops/202586", "https://data.delijn.be/stops/203585"], ["https://data.delijn.be/stops/403221", "https://data.delijn.be/stops/403353"], ["https://data.delijn.be/stops/502539", "https://data.delijn.be/stops/505090"], ["https://data.delijn.be/stops/503452", "https://data.delijn.be/stops/504813"], ["https://data.delijn.be/stops/102691", "https://data.delijn.be/stops/102692"], ["https://data.delijn.be/stops/303371", "https://data.delijn.be/stops/303372"], ["https://data.delijn.be/stops/401066", "https://data.delijn.be/stops/407167"], ["https://data.delijn.be/stops/302250", "https://data.delijn.be/stops/302251"], ["https://data.delijn.be/stops/308163", "https://data.delijn.be/stops/308164"], ["https://data.delijn.be/stops/504239", "https://data.delijn.be/stops/509237"], ["https://data.delijn.be/stops/405689", "https://data.delijn.be/stops/405692"], ["https://data.delijn.be/stops/202112", "https://data.delijn.be/stops/205079"], ["https://data.delijn.be/stops/400562", "https://data.delijn.be/stops/403853"], ["https://data.delijn.be/stops/406297", "https://data.delijn.be/stops/409409"], ["https://data.delijn.be/stops/208634", "https://data.delijn.be/stops/208635"], ["https://data.delijn.be/stops/503945", "https://data.delijn.be/stops/508168"], ["https://data.delijn.be/stops/407029", "https://data.delijn.be/stops/407041"], ["https://data.delijn.be/stops/508439", "https://data.delijn.be/stops/509907"], ["https://data.delijn.be/stops/400518", "https://data.delijn.be/stops/400520"], ["https://data.delijn.be/stops/102238", "https://data.delijn.be/stops/105872"], ["https://data.delijn.be/stops/408753", "https://data.delijn.be/stops/408761"], ["https://data.delijn.be/stops/509367", "https://data.delijn.be/stops/509370"], ["https://data.delijn.be/stops/201926", "https://data.delijn.be/stops/206936"], ["https://data.delijn.be/stops/408888", "https://data.delijn.be/stops/408889"], ["https://data.delijn.be/stops/207492", "https://data.delijn.be/stops/207493"], ["https://data.delijn.be/stops/200389", "https://data.delijn.be/stops/208708"], ["https://data.delijn.be/stops/502627", "https://data.delijn.be/stops/502752"], ["https://data.delijn.be/stops/403914", "https://data.delijn.be/stops/404037"], ["https://data.delijn.be/stops/404439", "https://data.delijn.be/stops/404498"], ["https://data.delijn.be/stops/402519", "https://data.delijn.be/stops/402863"], ["https://data.delijn.be/stops/104291", "https://data.delijn.be/stops/109748"], ["https://data.delijn.be/stops/405210", "https://data.delijn.be/stops/405211"], ["https://data.delijn.be/stops/300556", "https://data.delijn.be/stops/300557"], ["https://data.delijn.be/stops/103337", "https://data.delijn.be/stops/107047"], ["https://data.delijn.be/stops/304040", "https://data.delijn.be/stops/305611"], ["https://data.delijn.be/stops/307307", "https://data.delijn.be/stops/307312"], ["https://data.delijn.be/stops/300460", "https://data.delijn.be/stops/304979"], ["https://data.delijn.be/stops/504751", "https://data.delijn.be/stops/508561"], ["https://data.delijn.be/stops/505665", "https://data.delijn.be/stops/507487"], ["https://data.delijn.be/stops/104115", "https://data.delijn.be/stops/104915"], ["https://data.delijn.be/stops/402096", "https://data.delijn.be/stops/402225"], ["https://data.delijn.be/stops/408030", "https://data.delijn.be/stops/408031"], ["https://data.delijn.be/stops/305442", "https://data.delijn.be/stops/305443"], ["https://data.delijn.be/stops/502352", "https://data.delijn.be/stops/502356"], ["https://data.delijn.be/stops/200916", "https://data.delijn.be/stops/203730"], ["https://data.delijn.be/stops/207754", "https://data.delijn.be/stops/209405"], ["https://data.delijn.be/stops/200002", "https://data.delijn.be/stops/202017"], ["https://data.delijn.be/stops/200882", "https://data.delijn.be/stops/208919"], ["https://data.delijn.be/stops/400913", "https://data.delijn.be/stops/400921"], ["https://data.delijn.be/stops/304787", "https://data.delijn.be/stops/306690"], ["https://data.delijn.be/stops/101206", "https://data.delijn.be/stops/104926"], ["https://data.delijn.be/stops/304389", "https://data.delijn.be/stops/307413"], ["https://data.delijn.be/stops/504746", "https://data.delijn.be/stops/509124"], ["https://data.delijn.be/stops/202484", "https://data.delijn.be/stops/203483"], ["https://data.delijn.be/stops/106377", "https://data.delijn.be/stops/106379"], ["https://data.delijn.be/stops/506202", "https://data.delijn.be/stops/506203"], ["https://data.delijn.be/stops/203972", "https://data.delijn.be/stops/204093"], ["https://data.delijn.be/stops/206588", "https://data.delijn.be/stops/207589"], ["https://data.delijn.be/stops/209514", "https://data.delijn.be/stops/209672"], ["https://data.delijn.be/stops/102109", "https://data.delijn.be/stops/103466"], ["https://data.delijn.be/stops/407011", "https://data.delijn.be/stops/407059"], ["https://data.delijn.be/stops/102921", "https://data.delijn.be/stops/102922"], ["https://data.delijn.be/stops/206570", "https://data.delijn.be/stops/206575"], ["https://data.delijn.be/stops/504651", "https://data.delijn.be/stops/505424"], ["https://data.delijn.be/stops/408058", "https://data.delijn.be/stops/303263"], ["https://data.delijn.be/stops/206807", "https://data.delijn.be/stops/207356"], ["https://data.delijn.be/stops/201976", "https://data.delijn.be/stops/207822"], ["https://data.delijn.be/stops/206876", "https://data.delijn.be/stops/207007"], ["https://data.delijn.be/stops/500565", "https://data.delijn.be/stops/501042"], ["https://data.delijn.be/stops/506115", "https://data.delijn.be/stops/506732"], ["https://data.delijn.be/stops/305795", "https://data.delijn.be/stops/305798"], ["https://data.delijn.be/stops/501669", "https://data.delijn.be/stops/506678"], ["https://data.delijn.be/stops/300330", "https://data.delijn.be/stops/300331"], ["https://data.delijn.be/stops/201843", "https://data.delijn.be/stops/203197"], ["https://data.delijn.be/stops/305538", "https://data.delijn.be/stops/305539"], ["https://data.delijn.be/stops/502757", "https://data.delijn.be/stops/507757"], ["https://data.delijn.be/stops/206315", "https://data.delijn.be/stops/207877"], ["https://data.delijn.be/stops/304414", "https://data.delijn.be/stops/307366"], ["https://data.delijn.be/stops/105729", "https://data.delijn.be/stops/105732"], ["https://data.delijn.be/stops/105109", "https://data.delijn.be/stops/308810"], ["https://data.delijn.be/stops/504238", "https://data.delijn.be/stops/508547"], ["https://data.delijn.be/stops/507551", "https://data.delijn.be/stops/507556"], ["https://data.delijn.be/stops/403732", "https://data.delijn.be/stops/403738"], ["https://data.delijn.be/stops/400363", "https://data.delijn.be/stops/400399"], ["https://data.delijn.be/stops/200330", "https://data.delijn.be/stops/203200"], ["https://data.delijn.be/stops/402823", "https://data.delijn.be/stops/409015"], ["https://data.delijn.be/stops/503566", "https://data.delijn.be/stops/508543"], ["https://data.delijn.be/stops/400794", "https://data.delijn.be/stops/406670"], ["https://data.delijn.be/stops/301537", "https://data.delijn.be/stops/301544"], ["https://data.delijn.be/stops/102092", "https://data.delijn.be/stops/106881"], ["https://data.delijn.be/stops/102861", "https://data.delijn.be/stops/104882"], ["https://data.delijn.be/stops/203102", "https://data.delijn.be/stops/210006"], ["https://data.delijn.be/stops/104778", "https://data.delijn.be/stops/108117"], ["https://data.delijn.be/stops/104926", "https://data.delijn.be/stops/104928"], ["https://data.delijn.be/stops/503636", "https://data.delijn.be/stops/508640"], ["https://data.delijn.be/stops/502393", "https://data.delijn.be/stops/507400"], ["https://data.delijn.be/stops/302290", "https://data.delijn.be/stops/307736"], ["https://data.delijn.be/stops/207679", "https://data.delijn.be/stops/208150"], ["https://data.delijn.be/stops/208683", "https://data.delijn.be/stops/208751"], ["https://data.delijn.be/stops/403972", "https://data.delijn.be/stops/406007"], ["https://data.delijn.be/stops/105773", "https://data.delijn.be/stops/105774"], ["https://data.delijn.be/stops/306595", "https://data.delijn.be/stops/306598"], ["https://data.delijn.be/stops/102139", "https://data.delijn.be/stops/103040"], ["https://data.delijn.be/stops/300339", "https://data.delijn.be/stops/300340"], ["https://data.delijn.be/stops/210089", "https://data.delijn.be/stops/211089"], ["https://data.delijn.be/stops/504240", "https://data.delijn.be/stops/509235"], ["https://data.delijn.be/stops/404429", "https://data.delijn.be/stops/404472"], ["https://data.delijn.be/stops/400108", "https://data.delijn.be/stops/400138"], ["https://data.delijn.be/stops/508718", "https://data.delijn.be/stops/509979"], ["https://data.delijn.be/stops/204426", "https://data.delijn.be/stops/205395"], ["https://data.delijn.be/stops/101871", "https://data.delijn.be/stops/105254"], ["https://data.delijn.be/stops/406423", "https://data.delijn.be/stops/406425"], ["https://data.delijn.be/stops/107263", "https://data.delijn.be/stops/107265"], ["https://data.delijn.be/stops/106842", "https://data.delijn.be/stops/106988"], ["https://data.delijn.be/stops/402678", "https://data.delijn.be/stops/410056"], ["https://data.delijn.be/stops/200491", "https://data.delijn.be/stops/205556"], ["https://data.delijn.be/stops/407406", "https://data.delijn.be/stops/407434"], ["https://data.delijn.be/stops/303615", "https://data.delijn.be/stops/304582"], ["https://data.delijn.be/stops/400104", "https://data.delijn.be/stops/400105"], ["https://data.delijn.be/stops/304102", "https://data.delijn.be/stops/308047"], ["https://data.delijn.be/stops/208957", "https://data.delijn.be/stops/209956"], ["https://data.delijn.be/stops/502421", "https://data.delijn.be/stops/502434"], ["https://data.delijn.be/stops/400077", "https://data.delijn.be/stops/409162"], ["https://data.delijn.be/stops/201797", "https://data.delijn.be/stops/211057"], ["https://data.delijn.be/stops/401427", "https://data.delijn.be/stops/401493"], ["https://data.delijn.be/stops/408334", "https://data.delijn.be/stops/408340"], ["https://data.delijn.be/stops/302157", "https://data.delijn.be/stops/307186"], ["https://data.delijn.be/stops/105741", "https://data.delijn.be/stops/109933"], ["https://data.delijn.be/stops/300096", "https://data.delijn.be/stops/306822"], ["https://data.delijn.be/stops/506320", "https://data.delijn.be/stops/506347"], ["https://data.delijn.be/stops/302260", "https://data.delijn.be/stops/302270"], ["https://data.delijn.be/stops/109369", "https://data.delijn.be/stops/109370"], ["https://data.delijn.be/stops/108828", "https://data.delijn.be/stops/108831"], ["https://data.delijn.be/stops/103318", "https://data.delijn.be/stops/104408"], ["https://data.delijn.be/stops/201150", "https://data.delijn.be/stops/201514"], ["https://data.delijn.be/stops/406068", "https://data.delijn.be/stops/406069"], ["https://data.delijn.be/stops/302564", "https://data.delijn.be/stops/302651"], ["https://data.delijn.be/stops/300388", "https://data.delijn.be/stops/303118"], ["https://data.delijn.be/stops/201066", "https://data.delijn.be/stops/201393"], ["https://data.delijn.be/stops/308741", "https://data.delijn.be/stops/308742"], ["https://data.delijn.be/stops/500028", "https://data.delijn.be/stops/508119"], ["https://data.delijn.be/stops/504227", "https://data.delijn.be/stops/509884"], ["https://data.delijn.be/stops/101529", "https://data.delijn.be/stops/102588"], ["https://data.delijn.be/stops/201463", "https://data.delijn.be/stops/201838"], ["https://data.delijn.be/stops/202432", "https://data.delijn.be/stops/203431"], ["https://data.delijn.be/stops/402628", "https://data.delijn.be/stops/402630"], ["https://data.delijn.be/stops/304688", "https://data.delijn.be/stops/307151"], ["https://data.delijn.be/stops/201281", "https://data.delijn.be/stops/209708"], ["https://data.delijn.be/stops/502491", "https://data.delijn.be/stops/507491"], ["https://data.delijn.be/stops/501428", "https://data.delijn.be/stops/506733"], ["https://data.delijn.be/stops/102533", "https://data.delijn.be/stops/102537"], ["https://data.delijn.be/stops/209539", "https://data.delijn.be/stops/209542"], ["https://data.delijn.be/stops/210010", "https://data.delijn.be/stops/509893"], ["https://data.delijn.be/stops/109411", "https://data.delijn.be/stops/109412"], ["https://data.delijn.be/stops/104561", "https://data.delijn.be/stops/107481"], ["https://data.delijn.be/stops/402514", "https://data.delijn.be/stops/402520"], ["https://data.delijn.be/stops/501497", "https://data.delijn.be/stops/506496"], ["https://data.delijn.be/stops/508312", "https://data.delijn.be/stops/508659"], ["https://data.delijn.be/stops/402642", "https://data.delijn.be/stops/403647"], ["https://data.delijn.be/stops/204523", "https://data.delijn.be/stops/205524"], ["https://data.delijn.be/stops/202791", "https://data.delijn.be/stops/203790"], ["https://data.delijn.be/stops/403968", "https://data.delijn.be/stops/403977"], ["https://data.delijn.be/stops/210014", "https://data.delijn.be/stops/502298"], ["https://data.delijn.be/stops/308485", "https://data.delijn.be/stops/308536"], ["https://data.delijn.be/stops/406183", "https://data.delijn.be/stops/410270"], ["https://data.delijn.be/stops/408519", "https://data.delijn.be/stops/408766"], ["https://data.delijn.be/stops/200858", "https://data.delijn.be/stops/202306"], ["https://data.delijn.be/stops/206836", "https://data.delijn.be/stops/207576"], ["https://data.delijn.be/stops/208764", "https://data.delijn.be/stops/209838"], ["https://data.delijn.be/stops/408097", "https://data.delijn.be/stops/408101"], ["https://data.delijn.be/stops/403187", "https://data.delijn.be/stops/403440"], ["https://data.delijn.be/stops/202923", "https://data.delijn.be/stops/203923"], ["https://data.delijn.be/stops/202326", "https://data.delijn.be/stops/202327"], ["https://data.delijn.be/stops/109905", "https://data.delijn.be/stops/109908"], ["https://data.delijn.be/stops/300207", "https://data.delijn.be/stops/302147"], ["https://data.delijn.be/stops/307395", "https://data.delijn.be/stops/308640"], ["https://data.delijn.be/stops/108673", "https://data.delijn.be/stops/109932"], ["https://data.delijn.be/stops/202598", "https://data.delijn.be/stops/203598"], ["https://data.delijn.be/stops/407982", "https://data.delijn.be/stops/408031"], ["https://data.delijn.be/stops/405034", "https://data.delijn.be/stops/307453"], ["https://data.delijn.be/stops/102214", "https://data.delijn.be/stops/102736"], ["https://data.delijn.be/stops/208095", "https://data.delijn.be/stops/208096"], ["https://data.delijn.be/stops/404642", "https://data.delijn.be/stops/406928"], ["https://data.delijn.be/stops/408280", "https://data.delijn.be/stops/408299"], ["https://data.delijn.be/stops/104592", "https://data.delijn.be/stops/108352"], ["https://data.delijn.be/stops/305585", "https://data.delijn.be/stops/305587"], ["https://data.delijn.be/stops/403135", "https://data.delijn.be/stops/403666"], ["https://data.delijn.be/stops/501041", "https://data.delijn.be/stops/506041"], ["https://data.delijn.be/stops/105037", "https://data.delijn.be/stops/105039"], ["https://data.delijn.be/stops/504387", "https://data.delijn.be/stops/509580"], ["https://data.delijn.be/stops/203840", "https://data.delijn.be/stops/209492"], ["https://data.delijn.be/stops/509480", "https://data.delijn.be/stops/509481"], ["https://data.delijn.be/stops/207506", "https://data.delijn.be/stops/207507"], ["https://data.delijn.be/stops/205941", "https://data.delijn.be/stops/211107"], ["https://data.delijn.be/stops/301896", "https://data.delijn.be/stops/304254"], ["https://data.delijn.be/stops/403214", "https://data.delijn.be/stops/403389"], ["https://data.delijn.be/stops/300369", "https://data.delijn.be/stops/304054"], ["https://data.delijn.be/stops/407626", "https://data.delijn.be/stops/410194"], ["https://data.delijn.be/stops/104478", "https://data.delijn.be/stops/104479"], ["https://data.delijn.be/stops/305162", "https://data.delijn.be/stops/305163"], ["https://data.delijn.be/stops/407153", "https://data.delijn.be/stops/407184"], ["https://data.delijn.be/stops/201570", "https://data.delijn.be/stops/208292"], ["https://data.delijn.be/stops/106144", "https://data.delijn.be/stops/106436"], ["https://data.delijn.be/stops/507953", "https://data.delijn.be/stops/508847"], ["https://data.delijn.be/stops/207665", "https://data.delijn.be/stops/208503"], ["https://data.delijn.be/stops/104452", "https://data.delijn.be/stops/107518"], ["https://data.delijn.be/stops/201080", "https://data.delijn.be/stops/203479"], ["https://data.delijn.be/stops/305004", "https://data.delijn.be/stops/305031"], ["https://data.delijn.be/stops/303650", "https://data.delijn.be/stops/306813"], ["https://data.delijn.be/stops/206304", "https://data.delijn.be/stops/207048"], ["https://data.delijn.be/stops/503408", "https://data.delijn.be/stops/508408"], ["https://data.delijn.be/stops/308654", "https://data.delijn.be/stops/308674"], ["https://data.delijn.be/stops/101005", "https://data.delijn.be/stops/103745"], ["https://data.delijn.be/stops/407652", "https://data.delijn.be/stops/409879"], ["https://data.delijn.be/stops/405248", "https://data.delijn.be/stops/407313"], ["https://data.delijn.be/stops/400072", "https://data.delijn.be/stops/401971"], ["https://data.delijn.be/stops/300048", "https://data.delijn.be/stops/300076"], ["https://data.delijn.be/stops/304586", "https://data.delijn.be/stops/304613"], ["https://data.delijn.be/stops/300527", "https://data.delijn.be/stops/303264"], ["https://data.delijn.be/stops/304716", "https://data.delijn.be/stops/304717"], ["https://data.delijn.be/stops/104853", "https://data.delijn.be/stops/104854"], ["https://data.delijn.be/stops/206614", "https://data.delijn.be/stops/207614"], ["https://data.delijn.be/stops/218012", "https://data.delijn.be/stops/219012"], ["https://data.delijn.be/stops/204029", "https://data.delijn.be/stops/205028"], ["https://data.delijn.be/stops/403420", "https://data.delijn.be/stops/409147"], ["https://data.delijn.be/stops/405058", "https://data.delijn.be/stops/405060"], ["https://data.delijn.be/stops/208185", "https://data.delijn.be/stops/208186"], ["https://data.delijn.be/stops/408801", "https://data.delijn.be/stops/408806"], ["https://data.delijn.be/stops/303450", "https://data.delijn.be/stops/306972"], ["https://data.delijn.be/stops/502065", "https://data.delijn.be/stops/507065"], ["https://data.delijn.be/stops/501688", "https://data.delijn.be/stops/506623"], ["https://data.delijn.be/stops/304494", "https://data.delijn.be/stops/304499"], ["https://data.delijn.be/stops/301301", "https://data.delijn.be/stops/307324"], ["https://data.delijn.be/stops/300481", "https://data.delijn.be/stops/308930"], ["https://data.delijn.be/stops/105307", "https://data.delijn.be/stops/105364"], ["https://data.delijn.be/stops/404617", "https://data.delijn.be/stops/406910"], ["https://data.delijn.be/stops/405062", "https://data.delijn.be/stops/405115"], ["https://data.delijn.be/stops/408941", "https://data.delijn.be/stops/408948"], ["https://data.delijn.be/stops/204297", "https://data.delijn.be/stops/205304"], ["https://data.delijn.be/stops/200486", "https://data.delijn.be/stops/200488"], ["https://data.delijn.be/stops/205458", "https://data.delijn.be/stops/205459"], ["https://data.delijn.be/stops/503184", "https://data.delijn.be/stops/508184"], ["https://data.delijn.be/stops/501447", "https://data.delijn.be/stops/506386"], ["https://data.delijn.be/stops/302334", "https://data.delijn.be/stops/302580"], ["https://data.delijn.be/stops/401922", "https://data.delijn.be/stops/403805"], ["https://data.delijn.be/stops/502707", "https://data.delijn.be/stops/507605"], ["https://data.delijn.be/stops/300688", "https://data.delijn.be/stops/300699"], ["https://data.delijn.be/stops/501592", "https://data.delijn.be/stops/509509"], ["https://data.delijn.be/stops/303500", "https://data.delijn.be/stops/303506"], ["https://data.delijn.be/stops/504419", "https://data.delijn.be/stops/505998"], ["https://data.delijn.be/stops/404057", "https://data.delijn.be/stops/406856"], ["https://data.delijn.be/stops/304008", "https://data.delijn.be/stops/304111"], ["https://data.delijn.be/stops/505315", "https://data.delijn.be/stops/508769"], ["https://data.delijn.be/stops/102892", "https://data.delijn.be/stops/102893"], ["https://data.delijn.be/stops/107299", "https://data.delijn.be/stops/107301"], ["https://data.delijn.be/stops/307424", "https://data.delijn.be/stops/307501"], ["https://data.delijn.be/stops/502225", "https://data.delijn.be/stops/507232"], ["https://data.delijn.be/stops/503682", "https://data.delijn.be/stops/503688"], ["https://data.delijn.be/stops/105343", "https://data.delijn.be/stops/105444"], ["https://data.delijn.be/stops/206847", "https://data.delijn.be/stops/207847"], ["https://data.delijn.be/stops/405256", "https://data.delijn.be/stops/405275"], ["https://data.delijn.be/stops/208779", "https://data.delijn.be/stops/208798"], ["https://data.delijn.be/stops/503123", "https://data.delijn.be/stops/508123"], ["https://data.delijn.be/stops/507361", "https://data.delijn.be/stops/507564"], ["https://data.delijn.be/stops/201882", "https://data.delijn.be/stops/211032"], ["https://data.delijn.be/stops/300095", "https://data.delijn.be/stops/307733"], ["https://data.delijn.be/stops/504726", "https://data.delijn.be/stops/504729"], ["https://data.delijn.be/stops/304086", "https://data.delijn.be/stops/307504"], ["https://data.delijn.be/stops/207583", "https://data.delijn.be/stops/207584"], ["https://data.delijn.be/stops/402391", "https://data.delijn.be/stops/410041"], ["https://data.delijn.be/stops/501113", "https://data.delijn.be/stops/506637"], ["https://data.delijn.be/stops/200864", "https://data.delijn.be/stops/202333"], ["https://data.delijn.be/stops/106447", "https://data.delijn.be/stops/106449"], ["https://data.delijn.be/stops/202111", "https://data.delijn.be/stops/203112"], ["https://data.delijn.be/stops/200362", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/501268", "https://data.delijn.be/stops/501303"], ["https://data.delijn.be/stops/308477", "https://data.delijn.be/stops/308482"], ["https://data.delijn.be/stops/508114", "https://data.delijn.be/stops/508787"], ["https://data.delijn.be/stops/104506", "https://data.delijn.be/stops/107930"], ["https://data.delijn.be/stops/107818", "https://data.delijn.be/stops/107819"], ["https://data.delijn.be/stops/503431", "https://data.delijn.be/stops/508408"], ["https://data.delijn.be/stops/509250", "https://data.delijn.be/stops/509593"], ["https://data.delijn.be/stops/404536", "https://data.delijn.be/stops/404537"], ["https://data.delijn.be/stops/503897", "https://data.delijn.be/stops/509141"], ["https://data.delijn.be/stops/300060", "https://data.delijn.be/stops/307734"], ["https://data.delijn.be/stops/101427", "https://data.delijn.be/stops/101428"], ["https://data.delijn.be/stops/405043", "https://data.delijn.be/stops/405118"], ["https://data.delijn.be/stops/300224", "https://data.delijn.be/stops/300260"], ["https://data.delijn.be/stops/206216", "https://data.delijn.be/stops/206269"], ["https://data.delijn.be/stops/501077", "https://data.delijn.be/stops/505404"], ["https://data.delijn.be/stops/504495", "https://data.delijn.be/stops/505403"], ["https://data.delijn.be/stops/102596", "https://data.delijn.be/stops/102601"], ["https://data.delijn.be/stops/501393", "https://data.delijn.be/stops/502249"], ["https://data.delijn.be/stops/404528", "https://data.delijn.be/stops/406527"], ["https://data.delijn.be/stops/304191", "https://data.delijn.be/stops/307987"], ["https://data.delijn.be/stops/201918", "https://data.delijn.be/stops/207835"], ["https://data.delijn.be/stops/204211", "https://data.delijn.be/stops/206806"], ["https://data.delijn.be/stops/303276", "https://data.delijn.be/stops/303308"], ["https://data.delijn.be/stops/509281", "https://data.delijn.be/stops/509283"], ["https://data.delijn.be/stops/408972", "https://data.delijn.be/stops/408973"], ["https://data.delijn.be/stops/407616", "https://data.delijn.be/stops/407674"], ["https://data.delijn.be/stops/104775", "https://data.delijn.be/stops/104780"], ["https://data.delijn.be/stops/400759", "https://data.delijn.be/stops/409588"], ["https://data.delijn.be/stops/108543", "https://data.delijn.be/stops/306591"], ["https://data.delijn.be/stops/207048", "https://data.delijn.be/stops/207304"], ["https://data.delijn.be/stops/400102", "https://data.delijn.be/stops/409063"], ["https://data.delijn.be/stops/402977", "https://data.delijn.be/stops/402982"], ["https://data.delijn.be/stops/509784", "https://data.delijn.be/stops/509785"], ["https://data.delijn.be/stops/403177", "https://data.delijn.be/stops/403672"], ["https://data.delijn.be/stops/502644", "https://data.delijn.be/stops/507722"], ["https://data.delijn.be/stops/407063", "https://data.delijn.be/stops/410016"], ["https://data.delijn.be/stops/406450", "https://data.delijn.be/stops/406488"], ["https://data.delijn.be/stops/201933", "https://data.delijn.be/stops/202949"], ["https://data.delijn.be/stops/403512", "https://data.delijn.be/stops/410216"], ["https://data.delijn.be/stops/302004", "https://data.delijn.be/stops/302034"], ["https://data.delijn.be/stops/401174", "https://data.delijn.be/stops/406658"], ["https://data.delijn.be/stops/303531", "https://data.delijn.be/stops/303568"], ["https://data.delijn.be/stops/501055", "https://data.delijn.be/stops/506055"], ["https://data.delijn.be/stops/300197", "https://data.delijn.be/stops/300225"], ["https://data.delijn.be/stops/303845", "https://data.delijn.be/stops/303846"], ["https://data.delijn.be/stops/102517", "https://data.delijn.be/stops/102518"], ["https://data.delijn.be/stops/106293", "https://data.delijn.be/stops/106744"], ["https://data.delijn.be/stops/104447", "https://data.delijn.be/stops/303877"], ["https://data.delijn.be/stops/505988", "https://data.delijn.be/stops/509194"], ["https://data.delijn.be/stops/206458", "https://data.delijn.be/stops/206463"], ["https://data.delijn.be/stops/307643", "https://data.delijn.be/stops/307687"], ["https://data.delijn.be/stops/504479", "https://data.delijn.be/stops/509474"], ["https://data.delijn.be/stops/305389", "https://data.delijn.be/stops/305409"], ["https://data.delijn.be/stops/202061", "https://data.delijn.be/stops/202062"], ["https://data.delijn.be/stops/204623", "https://data.delijn.be/stops/204625"], ["https://data.delijn.be/stops/403755", "https://data.delijn.be/stops/403756"], ["https://data.delijn.be/stops/106828", "https://data.delijn.be/stops/106829"], ["https://data.delijn.be/stops/502115", "https://data.delijn.be/stops/502140"], ["https://data.delijn.be/stops/502003", "https://data.delijn.be/stops/507010"], ["https://data.delijn.be/stops/408156", "https://data.delijn.be/stops/408157"], ["https://data.delijn.be/stops/206730", "https://data.delijn.be/stops/206731"], ["https://data.delijn.be/stops/507206", "https://data.delijn.be/stops/507214"], ["https://data.delijn.be/stops/305747", "https://data.delijn.be/stops/306332"], ["https://data.delijn.be/stops/403428", "https://data.delijn.be/stops/403429"], ["https://data.delijn.be/stops/407841", "https://data.delijn.be/stops/407847"], ["https://data.delijn.be/stops/304551", "https://data.delijn.be/stops/304552"], ["https://data.delijn.be/stops/202731", "https://data.delijn.be/stops/203733"], ["https://data.delijn.be/stops/209610", "https://data.delijn.be/stops/305145"], ["https://data.delijn.be/stops/102285", "https://data.delijn.be/stops/103314"], ["https://data.delijn.be/stops/304309", "https://data.delijn.be/stops/307006"], ["https://data.delijn.be/stops/402256", "https://data.delijn.be/stops/402313"], ["https://data.delijn.be/stops/206345", "https://data.delijn.be/stops/206346"], ["https://data.delijn.be/stops/505185", "https://data.delijn.be/stops/509559"], ["https://data.delijn.be/stops/103629", "https://data.delijn.be/stops/103631"], ["https://data.delijn.be/stops/305133", "https://data.delijn.be/stops/305137"], ["https://data.delijn.be/stops/401172", "https://data.delijn.be/stops/406658"], ["https://data.delijn.be/stops/300237", "https://data.delijn.be/stops/300238"], ["https://data.delijn.be/stops/505830", "https://data.delijn.be/stops/509019"], ["https://data.delijn.be/stops/401773", "https://data.delijn.be/stops/406333"], ["https://data.delijn.be/stops/407687", "https://data.delijn.be/stops/409796"], ["https://data.delijn.be/stops/406613", "https://data.delijn.be/stops/406638"], ["https://data.delijn.be/stops/401480", "https://data.delijn.be/stops/401781"], ["https://data.delijn.be/stops/402825", "https://data.delijn.be/stops/407487"], ["https://data.delijn.be/stops/306696", "https://data.delijn.be/stops/308783"], ["https://data.delijn.be/stops/307816", "https://data.delijn.be/stops/307817"], ["https://data.delijn.be/stops/505824", "https://data.delijn.be/stops/506070"], ["https://data.delijn.be/stops/107175", "https://data.delijn.be/stops/107176"], ["https://data.delijn.be/stops/200014", "https://data.delijn.be/stops/211510"], ["https://data.delijn.be/stops/108874", "https://data.delijn.be/stops/108877"], ["https://data.delijn.be/stops/109178", "https://data.delijn.be/stops/109249"], ["https://data.delijn.be/stops/107652", "https://data.delijn.be/stops/107726"], ["https://data.delijn.be/stops/302721", "https://data.delijn.be/stops/308598"], ["https://data.delijn.be/stops/101808", "https://data.delijn.be/stops/109702"], ["https://data.delijn.be/stops/202674", "https://data.delijn.be/stops/203674"], ["https://data.delijn.be/stops/105743", "https://data.delijn.be/stops/109830"], ["https://data.delijn.be/stops/501353", "https://data.delijn.be/stops/501477"], ["https://data.delijn.be/stops/503319", "https://data.delijn.be/stops/508319"], ["https://data.delijn.be/stops/206199", "https://data.delijn.be/stops/206238"], ["https://data.delijn.be/stops/503964", "https://data.delijn.be/stops/508316"], ["https://data.delijn.be/stops/409017", "https://data.delijn.be/stops/409228"], ["https://data.delijn.be/stops/300651", "https://data.delijn.be/stops/301916"], ["https://data.delijn.be/stops/207193", "https://data.delijn.be/stops/207194"], ["https://data.delijn.be/stops/303747", "https://data.delijn.be/stops/303751"], ["https://data.delijn.be/stops/103333", "https://data.delijn.be/stops/106441"], ["https://data.delijn.be/stops/509290", "https://data.delijn.be/stops/509291"], ["https://data.delijn.be/stops/302681", "https://data.delijn.be/stops/308298"], ["https://data.delijn.be/stops/206579", "https://data.delijn.be/stops/209666"], ["https://data.delijn.be/stops/404207", "https://data.delijn.be/stops/404209"], ["https://data.delijn.be/stops/306814", "https://data.delijn.be/stops/308874"], ["https://data.delijn.be/stops/509422", "https://data.delijn.be/stops/509428"], ["https://data.delijn.be/stops/104161", "https://data.delijn.be/stops/104162"], ["https://data.delijn.be/stops/405911", "https://data.delijn.be/stops/409680"], ["https://data.delijn.be/stops/206178", "https://data.delijn.be/stops/303844"], ["https://data.delijn.be/stops/504278", "https://data.delijn.be/stops/509286"], ["https://data.delijn.be/stops/103123", "https://data.delijn.be/stops/109174"], ["https://data.delijn.be/stops/505673", "https://data.delijn.be/stops/507309"], ["https://data.delijn.be/stops/304788", "https://data.delijn.be/stops/306687"], ["https://data.delijn.be/stops/505013", "https://data.delijn.be/stops/507268"], ["https://data.delijn.be/stops/208046", "https://data.delijn.be/stops/208489"], ["https://data.delijn.be/stops/408318", "https://data.delijn.be/stops/408319"], ["https://data.delijn.be/stops/102252", "https://data.delijn.be/stops/109031"], ["https://data.delijn.be/stops/104320", "https://data.delijn.be/stops/105125"], ["https://data.delijn.be/stops/302106", "https://data.delijn.be/stops/302123"], ["https://data.delijn.be/stops/106321", "https://data.delijn.be/stops/106322"], ["https://data.delijn.be/stops/400098", "https://data.delijn.be/stops/409194"], ["https://data.delijn.be/stops/410214", "https://data.delijn.be/stops/410281"], ["https://data.delijn.be/stops/308555", "https://data.delijn.be/stops/308556"], ["https://data.delijn.be/stops/107977", "https://data.delijn.be/stops/107978"], ["https://data.delijn.be/stops/105793", "https://data.delijn.be/stops/105942"], ["https://data.delijn.be/stops/306929", "https://data.delijn.be/stops/306930"], ["https://data.delijn.be/stops/307564", "https://data.delijn.be/stops/307565"], ["https://data.delijn.be/stops/506945", "https://data.delijn.be/stops/508131"], ["https://data.delijn.be/stops/200070", "https://data.delijn.be/stops/208844"], ["https://data.delijn.be/stops/103147", "https://data.delijn.be/stops/103148"], ["https://data.delijn.be/stops/304695", "https://data.delijn.be/stops/304696"], ["https://data.delijn.be/stops/208795", "https://data.delijn.be/stops/209115"], ["https://data.delijn.be/stops/102401", "https://data.delijn.be/stops/104334"], ["https://data.delijn.be/stops/104394", "https://data.delijn.be/stops/104398"], ["https://data.delijn.be/stops/202250", "https://data.delijn.be/stops/203250"], ["https://data.delijn.be/stops/400979", "https://data.delijn.be/stops/407709"], ["https://data.delijn.be/stops/207659", "https://data.delijn.be/stops/207660"], ["https://data.delijn.be/stops/408076", "https://data.delijn.be/stops/408083"], ["https://data.delijn.be/stops/200397", "https://data.delijn.be/stops/209331"], ["https://data.delijn.be/stops/200583", "https://data.delijn.be/stops/200585"], ["https://data.delijn.be/stops/206252", "https://data.delijn.be/stops/207993"], ["https://data.delijn.be/stops/106666", "https://data.delijn.be/stops/106669"], ["https://data.delijn.be/stops/403387", "https://data.delijn.be/stops/403465"], ["https://data.delijn.be/stops/109226", "https://data.delijn.be/stops/109227"], ["https://data.delijn.be/stops/301085", "https://data.delijn.be/stops/304600"], ["https://data.delijn.be/stops/206579", "https://data.delijn.be/stops/207466"], ["https://data.delijn.be/stops/407920", "https://data.delijn.be/stops/407921"], ["https://data.delijn.be/stops/300101", "https://data.delijn.be/stops/306822"], ["https://data.delijn.be/stops/208436", "https://data.delijn.be/stops/218021"], ["https://data.delijn.be/stops/108272", "https://data.delijn.be/stops/108273"], ["https://data.delijn.be/stops/208726", "https://data.delijn.be/stops/208727"], ["https://data.delijn.be/stops/302344", "https://data.delijn.be/stops/302345"], ["https://data.delijn.be/stops/501230", "https://data.delijn.be/stops/505044"], ["https://data.delijn.be/stops/305263", "https://data.delijn.be/stops/305311"], ["https://data.delijn.be/stops/401330", "https://data.delijn.be/stops/410175"], ["https://data.delijn.be/stops/303196", "https://data.delijn.be/stops/304915"], ["https://data.delijn.be/stops/101591", "https://data.delijn.be/stops/103036"], ["https://data.delijn.be/stops/403250", "https://data.delijn.be/stops/409317"], ["https://data.delijn.be/stops/305099", "https://data.delijn.be/stops/305127"], ["https://data.delijn.be/stops/504599", "https://data.delijn.be/stops/509604"], ["https://data.delijn.be/stops/102181", "https://data.delijn.be/stops/105995"], ["https://data.delijn.be/stops/304746", "https://data.delijn.be/stops/304766"], ["https://data.delijn.be/stops/404625", "https://data.delijn.be/stops/404626"], ["https://data.delijn.be/stops/305015", "https://data.delijn.be/stops/305018"], ["https://data.delijn.be/stops/106329", "https://data.delijn.be/stops/106334"], ["https://data.delijn.be/stops/504564", "https://data.delijn.be/stops/509557"], ["https://data.delijn.be/stops/409562", "https://data.delijn.be/stops/409567"], ["https://data.delijn.be/stops/402798", "https://data.delijn.be/stops/405585"], ["https://data.delijn.be/stops/301452", "https://data.delijn.be/stops/308714"], ["https://data.delijn.be/stops/303840", "https://data.delijn.be/stops/303847"], ["https://data.delijn.be/stops/502304", "https://data.delijn.be/stops/507304"], ["https://data.delijn.be/stops/403348", "https://data.delijn.be/stops/403521"], ["https://data.delijn.be/stops/400611", "https://data.delijn.be/stops/308173"], ["https://data.delijn.be/stops/502056", "https://data.delijn.be/stops/507014"], ["https://data.delijn.be/stops/504035", "https://data.delijn.be/stops/504471"], ["https://data.delijn.be/stops/109210", "https://data.delijn.be/stops/109712"], ["https://data.delijn.be/stops/503319", "https://data.delijn.be/stops/503322"], ["https://data.delijn.be/stops/300752", "https://data.delijn.be/stops/304570"], ["https://data.delijn.be/stops/104643", "https://data.delijn.be/stops/108038"], ["https://data.delijn.be/stops/501682", "https://data.delijn.be/stops/506682"], ["https://data.delijn.be/stops/102024", "https://data.delijn.be/stops/103981"], ["https://data.delijn.be/stops/105425", "https://data.delijn.be/stops/105430"], ["https://data.delijn.be/stops/504255", "https://data.delijn.be/stops/504327"], ["https://data.delijn.be/stops/304381", "https://data.delijn.be/stops/304392"], ["https://data.delijn.be/stops/504358", "https://data.delijn.be/stops/504845"], ["https://data.delijn.be/stops/300152", "https://data.delijn.be/stops/301208"], ["https://data.delijn.be/stops/503637", "https://data.delijn.be/stops/508637"], ["https://data.delijn.be/stops/408360", "https://data.delijn.be/stops/408397"], ["https://data.delijn.be/stops/207566", "https://data.delijn.be/stops/207837"], ["https://data.delijn.be/stops/408580", "https://data.delijn.be/stops/408582"], ["https://data.delijn.be/stops/308504", "https://data.delijn.be/stops/308539"], ["https://data.delijn.be/stops/101651", "https://data.delijn.be/stops/105504"], ["https://data.delijn.be/stops/201489", "https://data.delijn.be/stops/203453"], ["https://data.delijn.be/stops/108405", "https://data.delijn.be/stops/108465"], ["https://data.delijn.be/stops/406464", "https://data.delijn.be/stops/406499"], ["https://data.delijn.be/stops/105883", "https://data.delijn.be/stops/105886"], ["https://data.delijn.be/stops/303396", "https://data.delijn.be/stops/303397"], ["https://data.delijn.be/stops/206487", "https://data.delijn.be/stops/207485"], ["https://data.delijn.be/stops/302256", "https://data.delijn.be/stops/302257"], ["https://data.delijn.be/stops/403103", "https://data.delijn.be/stops/403104"], ["https://data.delijn.be/stops/406270", "https://data.delijn.be/stops/406275"], ["https://data.delijn.be/stops/504499", "https://data.delijn.be/stops/509498"], ["https://data.delijn.be/stops/206740", "https://data.delijn.be/stops/207651"], ["https://data.delijn.be/stops/400081", "https://data.delijn.be/stops/405642"], ["https://data.delijn.be/stops/504405", "https://data.delijn.be/stops/504416"], ["https://data.delijn.be/stops/306864", "https://data.delijn.be/stops/307439"], ["https://data.delijn.be/stops/208890", "https://data.delijn.be/stops/219505"], ["https://data.delijn.be/stops/505167", "https://data.delijn.be/stops/509509"], ["https://data.delijn.be/stops/200007", "https://data.delijn.be/stops/208889"], ["https://data.delijn.be/stops/105967", "https://data.delijn.be/stops/107151"], ["https://data.delijn.be/stops/305260", "https://data.delijn.be/stops/305277"], ["https://data.delijn.be/stops/409267", "https://data.delijn.be/stops/409291"], ["https://data.delijn.be/stops/202313", "https://data.delijn.be/stops/203313"], ["https://data.delijn.be/stops/108125", "https://data.delijn.be/stops/108322"], ["https://data.delijn.be/stops/208663", "https://data.delijn.be/stops/209731"], ["https://data.delijn.be/stops/301349", "https://data.delijn.be/stops/306130"], ["https://data.delijn.be/stops/104497", "https://data.delijn.be/stops/107488"], ["https://data.delijn.be/stops/202389", "https://data.delijn.be/stops/203388"], ["https://data.delijn.be/stops/502364", "https://data.delijn.be/stops/507713"], ["https://data.delijn.be/stops/407599", "https://data.delijn.be/stops/410349"], ["https://data.delijn.be/stops/303581", "https://data.delijn.be/stops/306393"], ["https://data.delijn.be/stops/204350", "https://data.delijn.be/stops/205014"], ["https://data.delijn.be/stops/504126", "https://data.delijn.be/stops/504746"], ["https://data.delijn.be/stops/408587", "https://data.delijn.be/stops/408596"], ["https://data.delijn.be/stops/408222", "https://data.delijn.be/stops/408938"], ["https://data.delijn.be/stops/207487", "https://data.delijn.be/stops/207648"], ["https://data.delijn.be/stops/400720", "https://data.delijn.be/stops/404382"], ["https://data.delijn.be/stops/507597", "https://data.delijn.be/stops/507598"], ["https://data.delijn.be/stops/400033", "https://data.delijn.be/stops/400316"], ["https://data.delijn.be/stops/207012", "https://data.delijn.be/stops/217011"], ["https://data.delijn.be/stops/209069", "https://data.delijn.be/stops/209241"], ["https://data.delijn.be/stops/106990", "https://data.delijn.be/stops/107317"], ["https://data.delijn.be/stops/101466", "https://data.delijn.be/stops/101475"], ["https://data.delijn.be/stops/400286", "https://data.delijn.be/stops/404827"], ["https://data.delijn.be/stops/200234", "https://data.delijn.be/stops/201234"], ["https://data.delijn.be/stops/408340", "https://data.delijn.be/stops/410160"], ["https://data.delijn.be/stops/401019", "https://data.delijn.be/stops/403762"], ["https://data.delijn.be/stops/505281", "https://data.delijn.be/stops/505972"], ["https://data.delijn.be/stops/505437", "https://data.delijn.be/stops/505608"], ["https://data.delijn.be/stops/508887", "https://data.delijn.be/stops/508994"], ["https://data.delijn.be/stops/407183", "https://data.delijn.be/stops/409515"], ["https://data.delijn.be/stops/406635", "https://data.delijn.be/stops/407226"], ["https://data.delijn.be/stops/505443", "https://data.delijn.be/stops/508904"], ["https://data.delijn.be/stops/109824", "https://data.delijn.be/stops/109826"], ["https://data.delijn.be/stops/503050", "https://data.delijn.be/stops/503052"], ["https://data.delijn.be/stops/300756", "https://data.delijn.be/stops/300758"], ["https://data.delijn.be/stops/502113", "https://data.delijn.be/stops/507108"], ["https://data.delijn.be/stops/302257", "https://data.delijn.be/stops/307280"], ["https://data.delijn.be/stops/501009", "https://data.delijn.be/stops/501481"], ["https://data.delijn.be/stops/302622", "https://data.delijn.be/stops/302636"], ["https://data.delijn.be/stops/202788", "https://data.delijn.be/stops/203788"], ["https://data.delijn.be/stops/505338", "https://data.delijn.be/stops/507330"], ["https://data.delijn.be/stops/300559", "https://data.delijn.be/stops/300608"], ["https://data.delijn.be/stops/308729", "https://data.delijn.be/stops/308731"], ["https://data.delijn.be/stops/400788", "https://data.delijn.be/stops/409651"], ["https://data.delijn.be/stops/306680", "https://data.delijn.be/stops/307880"], ["https://data.delijn.be/stops/502251", "https://data.delijn.be/stops/505838"], ["https://data.delijn.be/stops/300671", "https://data.delijn.be/stops/308976"], ["https://data.delijn.be/stops/402988", "https://data.delijn.be/stops/405602"], ["https://data.delijn.be/stops/504072", "https://data.delijn.be/stops/509072"], ["https://data.delijn.be/stops/404654", "https://data.delijn.be/stops/410133"], ["https://data.delijn.be/stops/307068", "https://data.delijn.be/stops/307069"], ["https://data.delijn.be/stops/505278", "https://data.delijn.be/stops/508020"], ["https://data.delijn.be/stops/103122", "https://data.delijn.be/stops/104381"], ["https://data.delijn.be/stops/207162", "https://data.delijn.be/stops/207297"], ["https://data.delijn.be/stops/403193", "https://data.delijn.be/stops/403284"], ["https://data.delijn.be/stops/400363", "https://data.delijn.be/stops/406866"], ["https://data.delijn.be/stops/203268", "https://data.delijn.be/stops/203269"], ["https://data.delijn.be/stops/501149", "https://data.delijn.be/stops/509780"], ["https://data.delijn.be/stops/301170", "https://data.delijn.be/stops/303202"], ["https://data.delijn.be/stops/503722", "https://data.delijn.be/stops/509873"], ["https://data.delijn.be/stops/208480", "https://data.delijn.be/stops/209480"], ["https://data.delijn.be/stops/101821", "https://data.delijn.be/stops/107022"], ["https://data.delijn.be/stops/101475", "https://data.delijn.be/stops/101959"], ["https://data.delijn.be/stops/106221", "https://data.delijn.be/stops/106319"], ["https://data.delijn.be/stops/101474", "https://data.delijn.be/stops/107703"], ["https://data.delijn.be/stops/106080", "https://data.delijn.be/stops/106082"], ["https://data.delijn.be/stops/306945", "https://data.delijn.be/stops/306947"], ["https://data.delijn.be/stops/204479", "https://data.delijn.be/stops/205479"], ["https://data.delijn.be/stops/107961", "https://data.delijn.be/stops/107963"], ["https://data.delijn.be/stops/204108", "https://data.delijn.be/stops/205667"], ["https://data.delijn.be/stops/400675", "https://data.delijn.be/stops/302852"], ["https://data.delijn.be/stops/202769", "https://data.delijn.be/stops/202779"], ["https://data.delijn.be/stops/207376", "https://data.delijn.be/stops/207377"], ["https://data.delijn.be/stops/302021", "https://data.delijn.be/stops/302035"], ["https://data.delijn.be/stops/108282", "https://data.delijn.be/stops/109342"], ["https://data.delijn.be/stops/405304", "https://data.delijn.be/stops/305711"], ["https://data.delijn.be/stops/304468", "https://data.delijn.be/stops/307584"], ["https://data.delijn.be/stops/300157", "https://data.delijn.be/stops/300192"], ["https://data.delijn.be/stops/107001", "https://data.delijn.be/stops/107003"], ["https://data.delijn.be/stops/300517", "https://data.delijn.be/stops/300518"], ["https://data.delijn.be/stops/106029", "https://data.delijn.be/stops/106313"], ["https://data.delijn.be/stops/404103", "https://data.delijn.be/stops/404109"], ["https://data.delijn.be/stops/106158", "https://data.delijn.be/stops/106162"], ["https://data.delijn.be/stops/502468", "https://data.delijn.be/stops/502482"], ["https://data.delijn.be/stops/106458", "https://data.delijn.be/stops/106459"], ["https://data.delijn.be/stops/304221", "https://data.delijn.be/stops/305869"], ["https://data.delijn.be/stops/505311", "https://data.delijn.be/stops/509637"], ["https://data.delijn.be/stops/104042", "https://data.delijn.be/stops/108373"], ["https://data.delijn.be/stops/103313", "https://data.delijn.be/stops/109423"], ["https://data.delijn.be/stops/102492", "https://data.delijn.be/stops/400427"], ["https://data.delijn.be/stops/408626", "https://data.delijn.be/stops/410250"], ["https://data.delijn.be/stops/304756", "https://data.delijn.be/stops/304772"], ["https://data.delijn.be/stops/107289", "https://data.delijn.be/stops/107291"], ["https://data.delijn.be/stops/406040", "https://data.delijn.be/stops/406049"], ["https://data.delijn.be/stops/103718", "https://data.delijn.be/stops/107309"], ["https://data.delijn.be/stops/402544", "https://data.delijn.be/stops/404093"], ["https://data.delijn.be/stops/106961", "https://data.delijn.be/stops/106977"], ["https://data.delijn.be/stops/404412", "https://data.delijn.be/stops/404413"], ["https://data.delijn.be/stops/504393", "https://data.delijn.be/stops/504661"], ["https://data.delijn.be/stops/108459", "https://data.delijn.be/stops/108461"], ["https://data.delijn.be/stops/305683", "https://data.delijn.be/stops/305712"], ["https://data.delijn.be/stops/206088", "https://data.delijn.be/stops/206095"], ["https://data.delijn.be/stops/507021", "https://data.delijn.be/stops/507927"], ["https://data.delijn.be/stops/103209", "https://data.delijn.be/stops/108435"], ["https://data.delijn.be/stops/406453", "https://data.delijn.be/stops/410226"], ["https://data.delijn.be/stops/202917", "https://data.delijn.be/stops/203733"], ["https://data.delijn.be/stops/505578", "https://data.delijn.be/stops/507688"], ["https://data.delijn.be/stops/505636", "https://data.delijn.be/stops/505987"], ["https://data.delijn.be/stops/305056", "https://data.delijn.be/stops/306929"], ["https://data.delijn.be/stops/410177", "https://data.delijn.be/stops/410178"], ["https://data.delijn.be/stops/200152", "https://data.delijn.be/stops/201153"], ["https://data.delijn.be/stops/206127", "https://data.delijn.be/stops/207414"], ["https://data.delijn.be/stops/402528", "https://data.delijn.be/stops/402538"], ["https://data.delijn.be/stops/101506", "https://data.delijn.be/stops/109029"], ["https://data.delijn.be/stops/101465", "https://data.delijn.be/stops/101959"], ["https://data.delijn.be/stops/105663", "https://data.delijn.be/stops/105667"], ["https://data.delijn.be/stops/205333", "https://data.delijn.be/stops/205817"], ["https://data.delijn.be/stops/102605", "https://data.delijn.be/stops/107765"], ["https://data.delijn.be/stops/108987", "https://data.delijn.be/stops/108989"], ["https://data.delijn.be/stops/304619", "https://data.delijn.be/stops/304620"], ["https://data.delijn.be/stops/201925", "https://data.delijn.be/stops/206247"], ["https://data.delijn.be/stops/105524", "https://data.delijn.be/stops/105526"], ["https://data.delijn.be/stops/308476", "https://data.delijn.be/stops/308482"], ["https://data.delijn.be/stops/204652", "https://data.delijn.be/stops/205652"], ["https://data.delijn.be/stops/304024", "https://data.delijn.be/stops/304815"], ["https://data.delijn.be/stops/305650", "https://data.delijn.be/stops/305651"], ["https://data.delijn.be/stops/104121", "https://data.delijn.be/stops/107835"], ["https://data.delijn.be/stops/304330", "https://data.delijn.be/stops/304331"], ["https://data.delijn.be/stops/306107", "https://data.delijn.be/stops/306108"], ["https://data.delijn.be/stops/504513", "https://data.delijn.be/stops/509637"], ["https://data.delijn.be/stops/510015", "https://data.delijn.be/stops/510016"], ["https://data.delijn.be/stops/206788", "https://data.delijn.be/stops/206947"], ["https://data.delijn.be/stops/106034", "https://data.delijn.be/stops/106036"], ["https://data.delijn.be/stops/402369", "https://data.delijn.be/stops/402377"], ["https://data.delijn.be/stops/400120", "https://data.delijn.be/stops/400121"], ["https://data.delijn.be/stops/502412", "https://data.delijn.be/stops/507671"], ["https://data.delijn.be/stops/404112", "https://data.delijn.be/stops/404204"], ["https://data.delijn.be/stops/404928", "https://data.delijn.be/stops/409634"], ["https://data.delijn.be/stops/303833", "https://data.delijn.be/stops/304127"], ["https://data.delijn.be/stops/206777", "https://data.delijn.be/stops/208480"], ["https://data.delijn.be/stops/504810", "https://data.delijn.be/stops/508183"], ["https://data.delijn.be/stops/206462", "https://data.delijn.be/stops/206489"], ["https://data.delijn.be/stops/202735", "https://data.delijn.be/stops/202907"], ["https://data.delijn.be/stops/300811", "https://data.delijn.be/stops/300813"], ["https://data.delijn.be/stops/300376", "https://data.delijn.be/stops/300377"], ["https://data.delijn.be/stops/203180", "https://data.delijn.be/stops/203181"], ["https://data.delijn.be/stops/207676", "https://data.delijn.be/stops/208104"], ["https://data.delijn.be/stops/504218", "https://data.delijn.be/stops/509112"], ["https://data.delijn.be/stops/202451", "https://data.delijn.be/stops/203451"], ["https://data.delijn.be/stops/205297", "https://data.delijn.be/stops/205552"], ["https://data.delijn.be/stops/208281", "https://data.delijn.be/stops/208282"], ["https://data.delijn.be/stops/504942", "https://data.delijn.be/stops/509942"], ["https://data.delijn.be/stops/508108", "https://data.delijn.be/stops/508562"], ["https://data.delijn.be/stops/401582", "https://data.delijn.be/stops/410167"], ["https://data.delijn.be/stops/106280", "https://data.delijn.be/stops/109909"], ["https://data.delijn.be/stops/305588", "https://data.delijn.be/stops/305589"], ["https://data.delijn.be/stops/300699", "https://data.delijn.be/stops/300735"], ["https://data.delijn.be/stops/301972", "https://data.delijn.be/stops/301997"], ["https://data.delijn.be/stops/402286", "https://data.delijn.be/stops/402472"], ["https://data.delijn.be/stops/401010", "https://data.delijn.be/stops/401011"], ["https://data.delijn.be/stops/503288", "https://data.delijn.be/stops/505951"], ["https://data.delijn.be/stops/104856", "https://data.delijn.be/stops/106016"], ["https://data.delijn.be/stops/205972", "https://data.delijn.be/stops/206074"], ["https://data.delijn.be/stops/107156", "https://data.delijn.be/stops/107556"], ["https://data.delijn.be/stops/408515", "https://data.delijn.be/stops/408575"], ["https://data.delijn.be/stops/307640", "https://data.delijn.be/stops/307648"], ["https://data.delijn.be/stops/505093", "https://data.delijn.be/stops/508560"], ["https://data.delijn.be/stops/108106", "https://data.delijn.be/stops/108114"], ["https://data.delijn.be/stops/408045", "https://data.delijn.be/stops/303263"], ["https://data.delijn.be/stops/300477", "https://data.delijn.be/stops/300545"], ["https://data.delijn.be/stops/202773", "https://data.delijn.be/stops/203773"], ["https://data.delijn.be/stops/400928", "https://data.delijn.be/stops/400930"], ["https://data.delijn.be/stops/405046", "https://data.delijn.be/stops/405048"], ["https://data.delijn.be/stops/300019", "https://data.delijn.be/stops/300299"], ["https://data.delijn.be/stops/505980", "https://data.delijn.be/stops/508894"], ["https://data.delijn.be/stops/105674", "https://data.delijn.be/stops/109948"], ["https://data.delijn.be/stops/201831", "https://data.delijn.be/stops/208259"], ["https://data.delijn.be/stops/202933", "https://data.delijn.be/stops/203933"], ["https://data.delijn.be/stops/101183", "https://data.delijn.be/stops/107876"], ["https://data.delijn.be/stops/401724", "https://data.delijn.be/stops/408894"], ["https://data.delijn.be/stops/502560", "https://data.delijn.be/stops/507562"], ["https://data.delijn.be/stops/505405", "https://data.delijn.be/stops/508676"], ["https://data.delijn.be/stops/302619", "https://data.delijn.be/stops/303273"], ["https://data.delijn.be/stops/406013", "https://data.delijn.be/stops/410199"], ["https://data.delijn.be/stops/104017", "https://data.delijn.be/stops/104027"], ["https://data.delijn.be/stops/307585", "https://data.delijn.be/stops/307587"], ["https://data.delijn.be/stops/200665", "https://data.delijn.be/stops/201562"], ["https://data.delijn.be/stops/404770", "https://data.delijn.be/stops/404776"], ["https://data.delijn.be/stops/409234", "https://data.delijn.be/stops/409236"], ["https://data.delijn.be/stops/404654", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/506085", "https://data.delijn.be/stops/506091"], ["https://data.delijn.be/stops/102966", "https://data.delijn.be/stops/108978"], ["https://data.delijn.be/stops/508238", "https://data.delijn.be/stops/508261"], ["https://data.delijn.be/stops/201935", "https://data.delijn.be/stops/201956"], ["https://data.delijn.be/stops/303947", "https://data.delijn.be/stops/303953"], ["https://data.delijn.be/stops/208654", "https://data.delijn.be/stops/209653"], ["https://data.delijn.be/stops/404145", "https://data.delijn.be/stops/404219"], ["https://data.delijn.be/stops/208419", "https://data.delijn.be/stops/208420"], ["https://data.delijn.be/stops/503402", "https://data.delijn.be/stops/509772"], ["https://data.delijn.be/stops/301619", "https://data.delijn.be/stops/301621"], ["https://data.delijn.be/stops/508871", "https://data.delijn.be/stops/508873"], ["https://data.delijn.be/stops/407888", "https://data.delijn.be/stops/408182"], ["https://data.delijn.be/stops/203239", "https://data.delijn.be/stops/505518"], ["https://data.delijn.be/stops/206274", "https://data.delijn.be/stops/206275"], ["https://data.delijn.be/stops/304233", "https://data.delijn.be/stops/304234"], ["https://data.delijn.be/stops/106167", "https://data.delijn.be/stops/106450"], ["https://data.delijn.be/stops/302461", "https://data.delijn.be/stops/302465"], ["https://data.delijn.be/stops/405370", "https://data.delijn.be/stops/405371"], ["https://data.delijn.be/stops/102178", "https://data.delijn.be/stops/104410"], ["https://data.delijn.be/stops/300719", "https://data.delijn.be/stops/300736"], ["https://data.delijn.be/stops/304968", "https://data.delijn.be/stops/304977"], ["https://data.delijn.be/stops/500942", "https://data.delijn.be/stops/503179"], ["https://data.delijn.be/stops/208048", "https://data.delijn.be/stops/208952"], ["https://data.delijn.be/stops/208474", "https://data.delijn.be/stops/209667"], ["https://data.delijn.be/stops/303354", "https://data.delijn.be/stops/307183"], ["https://data.delijn.be/stops/206130", "https://data.delijn.be/stops/206728"], ["https://data.delijn.be/stops/404943", "https://data.delijn.be/stops/405649"], ["https://data.delijn.be/stops/206257", "https://data.delijn.be/stops/206258"], ["https://data.delijn.be/stops/202854", "https://data.delijn.be/stops/203853"], ["https://data.delijn.be/stops/505634", "https://data.delijn.be/stops/509807"], ["https://data.delijn.be/stops/307359", "https://data.delijn.be/stops/307360"], ["https://data.delijn.be/stops/401042", "https://data.delijn.be/stops/409058"], ["https://data.delijn.be/stops/206497", "https://data.delijn.be/stops/207151"], ["https://data.delijn.be/stops/504409", "https://data.delijn.be/stops/509472"], ["https://data.delijn.be/stops/402833", "https://data.delijn.be/stops/402845"], ["https://data.delijn.be/stops/300451", "https://data.delijn.be/stops/307904"], ["https://data.delijn.be/stops/402840", "https://data.delijn.be/stops/402896"], ["https://data.delijn.be/stops/106921", "https://data.delijn.be/stops/106922"], ["https://data.delijn.be/stops/303121", "https://data.delijn.be/stops/303223"], ["https://data.delijn.be/stops/405348", "https://data.delijn.be/stops/405349"], ["https://data.delijn.be/stops/101179", "https://data.delijn.be/stops/106742"], ["https://data.delijn.be/stops/304421", "https://data.delijn.be/stops/307388"], ["https://data.delijn.be/stops/205378", "https://data.delijn.be/stops/205379"], ["https://data.delijn.be/stops/405574", "https://data.delijn.be/stops/405575"], ["https://data.delijn.be/stops/400700", "https://data.delijn.be/stops/400837"], ["https://data.delijn.be/stops/507058", "https://data.delijn.be/stops/507441"], ["https://data.delijn.be/stops/300649", "https://data.delijn.be/stops/301838"], ["https://data.delijn.be/stops/305048", "https://data.delijn.be/stops/305089"], ["https://data.delijn.be/stops/101088", "https://data.delijn.be/stops/105978"], ["https://data.delijn.be/stops/205133", "https://data.delijn.be/stops/205141"], ["https://data.delijn.be/stops/206889", "https://data.delijn.be/stops/206913"], ["https://data.delijn.be/stops/306819", "https://data.delijn.be/stops/306821"], ["https://data.delijn.be/stops/305587", "https://data.delijn.be/stops/307514"], ["https://data.delijn.be/stops/401521", "https://data.delijn.be/stops/401559"], ["https://data.delijn.be/stops/303472", "https://data.delijn.be/stops/303483"], ["https://data.delijn.be/stops/402408", "https://data.delijn.be/stops/402413"], ["https://data.delijn.be/stops/306161", "https://data.delijn.be/stops/308587"], ["https://data.delijn.be/stops/102431", "https://data.delijn.be/stops/103989"], ["https://data.delijn.be/stops/303140", "https://data.delijn.be/stops/307056"], ["https://data.delijn.be/stops/102301", "https://data.delijn.be/stops/106966"], ["https://data.delijn.be/stops/302078", "https://data.delijn.be/stops/302251"], ["https://data.delijn.be/stops/200256", "https://data.delijn.be/stops/200722"], ["https://data.delijn.be/stops/304841", "https://data.delijn.be/stops/307065"], ["https://data.delijn.be/stops/103314", "https://data.delijn.be/stops/105798"], ["https://data.delijn.be/stops/107639", "https://data.delijn.be/stops/108837"], ["https://data.delijn.be/stops/503207", "https://data.delijn.be/stops/508211"], ["https://data.delijn.be/stops/200829", "https://data.delijn.be/stops/507060"], ["https://data.delijn.be/stops/308648", "https://data.delijn.be/stops/308649"], ["https://data.delijn.be/stops/400222", "https://data.delijn.be/stops/407154"], ["https://data.delijn.be/stops/201873", "https://data.delijn.be/stops/202026"], ["https://data.delijn.be/stops/400206", "https://data.delijn.be/stops/410000"], ["https://data.delijn.be/stops/206240", "https://data.delijn.be/stops/206241"], ["https://data.delijn.be/stops/405856", "https://data.delijn.be/stops/405857"], ["https://data.delijn.be/stops/206043", "https://data.delijn.be/stops/206533"], ["https://data.delijn.be/stops/206534", "https://data.delijn.be/stops/207548"], ["https://data.delijn.be/stops/502225", "https://data.delijn.be/stops/502684"], ["https://data.delijn.be/stops/208449", "https://data.delijn.be/stops/208878"], ["https://data.delijn.be/stops/502704", "https://data.delijn.be/stops/507704"], ["https://data.delijn.be/stops/204483", "https://data.delijn.be/stops/205042"], ["https://data.delijn.be/stops/200458", "https://data.delijn.be/stops/201458"], ["https://data.delijn.be/stops/305377", "https://data.delijn.be/stops/305386"], ["https://data.delijn.be/stops/107261", "https://data.delijn.be/stops/107263"], ["https://data.delijn.be/stops/307595", "https://data.delijn.be/stops/307605"], ["https://data.delijn.be/stops/301866", "https://data.delijn.be/stops/301868"], ["https://data.delijn.be/stops/108418", "https://data.delijn.be/stops/109575"], ["https://data.delijn.be/stops/401533", "https://data.delijn.be/stops/406017"], ["https://data.delijn.be/stops/206828", "https://data.delijn.be/stops/207829"], ["https://data.delijn.be/stops/301451", "https://data.delijn.be/stops/301485"], ["https://data.delijn.be/stops/500159", "https://data.delijn.be/stops/503580"], ["https://data.delijn.be/stops/204615", "https://data.delijn.be/stops/205656"], ["https://data.delijn.be/stops/408348", "https://data.delijn.be/stops/408349"], ["https://data.delijn.be/stops/103614", "https://data.delijn.be/stops/106309"], ["https://data.delijn.be/stops/301055", "https://data.delijn.be/stops/301056"], ["https://data.delijn.be/stops/503463", "https://data.delijn.be/stops/503473"], ["https://data.delijn.be/stops/301845", "https://data.delijn.be/stops/305983"], ["https://data.delijn.be/stops/207636", "https://data.delijn.be/stops/207890"], ["https://data.delijn.be/stops/505959", "https://data.delijn.be/stops/508560"], ["https://data.delijn.be/stops/206021", "https://data.delijn.be/stops/206166"], ["https://data.delijn.be/stops/400118", "https://data.delijn.be/stops/400152"], ["https://data.delijn.be/stops/303681", "https://data.delijn.be/stops/307372"], ["https://data.delijn.be/stops/303439", "https://data.delijn.be/stops/303520"], ["https://data.delijn.be/stops/101782", "https://data.delijn.be/stops/109382"], ["https://data.delijn.be/stops/407442", "https://data.delijn.be/stops/408477"], ["https://data.delijn.be/stops/104666", "https://data.delijn.be/stops/305986"], ["https://data.delijn.be/stops/304595", "https://data.delijn.be/stops/304596"], ["https://data.delijn.be/stops/200765", "https://data.delijn.be/stops/209381"], ["https://data.delijn.be/stops/503902", "https://data.delijn.be/stops/508904"], ["https://data.delijn.be/stops/104698", "https://data.delijn.be/stops/107358"], ["https://data.delijn.be/stops/507042", "https://data.delijn.be/stops/507051"], ["https://data.delijn.be/stops/101826", "https://data.delijn.be/stops/107116"], ["https://data.delijn.be/stops/105832", "https://data.delijn.be/stops/109696"], ["https://data.delijn.be/stops/504996", "https://data.delijn.be/stops/505381"], ["https://data.delijn.be/stops/106427", "https://data.delijn.be/stops/106516"], ["https://data.delijn.be/stops/401829", "https://data.delijn.be/stops/406020"], ["https://data.delijn.be/stops/206283", "https://data.delijn.be/stops/207283"], ["https://data.delijn.be/stops/407720", "https://data.delijn.be/stops/407729"], ["https://data.delijn.be/stops/507542", "https://data.delijn.be/stops/507545"], ["https://data.delijn.be/stops/304981", "https://data.delijn.be/stops/308014"], ["https://data.delijn.be/stops/407103", "https://data.delijn.be/stops/407343"], ["https://data.delijn.be/stops/405489", "https://data.delijn.be/stops/409319"], ["https://data.delijn.be/stops/304801", "https://data.delijn.be/stops/308770"], ["https://data.delijn.be/stops/206020", "https://data.delijn.be/stops/207913"], ["https://data.delijn.be/stops/407644", "https://data.delijn.be/stops/409774"], ["https://data.delijn.be/stops/208441", "https://data.delijn.be/stops/208675"], ["https://data.delijn.be/stops/104475", "https://data.delijn.be/stops/104995"], ["https://data.delijn.be/stops/402367", "https://data.delijn.be/stops/409600"], ["https://data.delijn.be/stops/400796", "https://data.delijn.be/stops/409609"], ["https://data.delijn.be/stops/209607", "https://data.delijn.be/stops/209609"], ["https://data.delijn.be/stops/503136", "https://data.delijn.be/stops/508120"], ["https://data.delijn.be/stops/106300", "https://data.delijn.be/stops/109909"], ["https://data.delijn.be/stops/404881", "https://data.delijn.be/stops/404882"], ["https://data.delijn.be/stops/404482", "https://data.delijn.be/stops/406878"], ["https://data.delijn.be/stops/105246", "https://data.delijn.be/stops/105247"], ["https://data.delijn.be/stops/108263", "https://data.delijn.be/stops/108266"], ["https://data.delijn.be/stops/305500", "https://data.delijn.be/stops/307987"], ["https://data.delijn.be/stops/209059", "https://data.delijn.be/stops/209060"], ["https://data.delijn.be/stops/505088", "https://data.delijn.be/stops/507231"], ["https://data.delijn.be/stops/503694", "https://data.delijn.be/stops/508396"], ["https://data.delijn.be/stops/201474", "https://data.delijn.be/stops/211061"], ["https://data.delijn.be/stops/401816", "https://data.delijn.be/stops/406072"], ["https://data.delijn.be/stops/504268", "https://data.delijn.be/stops/509267"], ["https://data.delijn.be/stops/303025", "https://data.delijn.be/stops/303072"], ["https://data.delijn.be/stops/507468", "https://data.delijn.be/stops/507472"], ["https://data.delijn.be/stops/201754", "https://data.delijn.be/stops/209593"], ["https://data.delijn.be/stops/407038", "https://data.delijn.be/stops/408429"], ["https://data.delijn.be/stops/104891", "https://data.delijn.be/stops/109348"], ["https://data.delijn.be/stops/505129", "https://data.delijn.be/stops/509749"], ["https://data.delijn.be/stops/300418", "https://data.delijn.be/stops/300446"], ["https://data.delijn.be/stops/502795", "https://data.delijn.be/stops/502914"], ["https://data.delijn.be/stops/207022", "https://data.delijn.be/stops/207166"], ["https://data.delijn.be/stops/303326", "https://data.delijn.be/stops/306337"], ["https://data.delijn.be/stops/504283", "https://data.delijn.be/stops/509037"], ["https://data.delijn.be/stops/503334", "https://data.delijn.be/stops/508334"], ["https://data.delijn.be/stops/206343", "https://data.delijn.be/stops/207343"], ["https://data.delijn.be/stops/401118", "https://data.delijn.be/stops/401150"], ["https://data.delijn.be/stops/410126", "https://data.delijn.be/stops/410399"], ["https://data.delijn.be/stops/204665", "https://data.delijn.be/stops/205666"], ["https://data.delijn.be/stops/300097", "https://data.delijn.be/stops/306822"], ["https://data.delijn.be/stops/403729", "https://data.delijn.be/stops/406973"], ["https://data.delijn.be/stops/400952", "https://data.delijn.be/stops/400981"], ["https://data.delijn.be/stops/504110", "https://data.delijn.be/stops/509110"], ["https://data.delijn.be/stops/307383", "https://data.delijn.be/stops/307389"], ["https://data.delijn.be/stops/101886", "https://data.delijn.be/stops/103087"], ["https://data.delijn.be/stops/105591", "https://data.delijn.be/stops/105594"], ["https://data.delijn.be/stops/104898", "https://data.delijn.be/stops/108961"], ["https://data.delijn.be/stops/200190", "https://data.delijn.be/stops/200987"], ["https://data.delijn.be/stops/306093", "https://data.delijn.be/stops/308685"], ["https://data.delijn.be/stops/305675", "https://data.delijn.be/stops/305686"], ["https://data.delijn.be/stops/407037", "https://data.delijn.be/stops/408001"], ["https://data.delijn.be/stops/501266", "https://data.delijn.be/stops/506266"], ["https://data.delijn.be/stops/205159", "https://data.delijn.be/stops/205160"], ["https://data.delijn.be/stops/300291", "https://data.delijn.be/stops/300302"], ["https://data.delijn.be/stops/407882", "https://data.delijn.be/stops/408181"], ["https://data.delijn.be/stops/505205", "https://data.delijn.be/stops/505215"], ["https://data.delijn.be/stops/400990", "https://data.delijn.be/stops/401150"], ["https://data.delijn.be/stops/102222", "https://data.delijn.be/stops/105649"], ["https://data.delijn.be/stops/502746", "https://data.delijn.be/stops/505069"], ["https://data.delijn.be/stops/200071", "https://data.delijn.be/stops/201113"], ["https://data.delijn.be/stops/301459", "https://data.delijn.be/stops/305654"], ["https://data.delijn.be/stops/505158", "https://data.delijn.be/stops/508778"], ["https://data.delijn.be/stops/103472", "https://data.delijn.be/stops/109170"], ["https://data.delijn.be/stops/506641", "https://data.delijn.be/stops/506642"], ["https://data.delijn.be/stops/503799", "https://data.delijn.be/stops/508799"], ["https://data.delijn.be/stops/409001", "https://data.delijn.be/stops/409006"], ["https://data.delijn.be/stops/501673", "https://data.delijn.be/stops/506117"], ["https://data.delijn.be/stops/505744", "https://data.delijn.be/stops/507493"], ["https://data.delijn.be/stops/404604", "https://data.delijn.be/stops/404608"], ["https://data.delijn.be/stops/206996", "https://data.delijn.be/stops/207928"], ["https://data.delijn.be/stops/104572", "https://data.delijn.be/stops/104857"], ["https://data.delijn.be/stops/401550", "https://data.delijn.be/stops/404914"], ["https://data.delijn.be/stops/205027", "https://data.delijn.be/stops/205818"], ["https://data.delijn.be/stops/104557", "https://data.delijn.be/stops/107486"], ["https://data.delijn.be/stops/304977", "https://data.delijn.be/stops/308034"], ["https://data.delijn.be/stops/207667", "https://data.delijn.be/stops/208064"], ["https://data.delijn.be/stops/401967", "https://data.delijn.be/stops/409158"], ["https://data.delijn.be/stops/508302", "https://data.delijn.be/stops/508307"], ["https://data.delijn.be/stops/400554", "https://data.delijn.be/stops/403425"], ["https://data.delijn.be/stops/208687", "https://data.delijn.be/stops/208691"], ["https://data.delijn.be/stops/202118", "https://data.delijn.be/stops/203116"], ["https://data.delijn.be/stops/104802", "https://data.delijn.be/stops/109555"], ["https://data.delijn.be/stops/301008", "https://data.delijn.be/stops/301015"], ["https://data.delijn.be/stops/303636", "https://data.delijn.be/stops/303637"], ["https://data.delijn.be/stops/108424", "https://data.delijn.be/stops/109568"], ["https://data.delijn.be/stops/404303", "https://data.delijn.be/stops/404304"], ["https://data.delijn.be/stops/200663", "https://data.delijn.be/stops/200666"], ["https://data.delijn.be/stops/103004", "https://data.delijn.be/stops/108332"], ["https://data.delijn.be/stops/409059", "https://data.delijn.be/stops/409102"], ["https://data.delijn.be/stops/105873", "https://data.delijn.be/stops/105883"], ["https://data.delijn.be/stops/208641", "https://data.delijn.be/stops/208643"], ["https://data.delijn.be/stops/208790", "https://data.delijn.be/stops/209337"], ["https://data.delijn.be/stops/204796", "https://data.delijn.be/stops/205795"], ["https://data.delijn.be/stops/402865", "https://data.delijn.be/stops/306036"], ["https://data.delijn.be/stops/302926", "https://data.delijn.be/stops/302953"], ["https://data.delijn.be/stops/407656", "https://data.delijn.be/stops/407732"], ["https://data.delijn.be/stops/305104", "https://data.delijn.be/stops/305105"], ["https://data.delijn.be/stops/505050", "https://data.delijn.be/stops/507554"], ["https://data.delijn.be/stops/504776", "https://data.delijn.be/stops/505985"], ["https://data.delijn.be/stops/502364", "https://data.delijn.be/stops/502675"], ["https://data.delijn.be/stops/403193", "https://data.delijn.be/stops/403205"], ["https://data.delijn.be/stops/201718", "https://data.delijn.be/stops/201726"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/200716"], ["https://data.delijn.be/stops/501519", "https://data.delijn.be/stops/510014"], ["https://data.delijn.be/stops/101957", "https://data.delijn.be/stops/108323"], ["https://data.delijn.be/stops/504554", "https://data.delijn.be/stops/504563"], ["https://data.delijn.be/stops/503006", "https://data.delijn.be/stops/508111"], ["https://data.delijn.be/stops/404558", "https://data.delijn.be/stops/406987"], ["https://data.delijn.be/stops/405361", "https://data.delijn.be/stops/406398"], ["https://data.delijn.be/stops/504117", "https://data.delijn.be/stops/504759"], ["https://data.delijn.be/stops/103287", "https://data.delijn.be/stops/109478"], ["https://data.delijn.be/stops/107447", "https://data.delijn.be/stops/107449"], ["https://data.delijn.be/stops/506016", "https://data.delijn.be/stops/506612"], ["https://data.delijn.be/stops/400598", "https://data.delijn.be/stops/404052"], ["https://data.delijn.be/stops/301423", "https://data.delijn.be/stops/306267"], ["https://data.delijn.be/stops/204565", "https://data.delijn.be/stops/303536"], ["https://data.delijn.be/stops/200362", "https://data.delijn.be/stops/202645"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/105034", "https://data.delijn.be/stops/105121"], ["https://data.delijn.be/stops/407910", "https://data.delijn.be/stops/407999"], ["https://data.delijn.be/stops/103364", "https://data.delijn.be/stops/108005"], ["https://data.delijn.be/stops/508313", "https://data.delijn.be/stops/508791"], ["https://data.delijn.be/stops/207488", "https://data.delijn.be/stops/207646"], ["https://data.delijn.be/stops/305232", "https://data.delijn.be/stops/305251"], ["https://data.delijn.be/stops/101471", "https://data.delijn.be/stops/101472"], ["https://data.delijn.be/stops/300455", "https://data.delijn.be/stops/304976"], ["https://data.delijn.be/stops/504999", "https://data.delijn.be/stops/508101"], ["https://data.delijn.be/stops/302623", "https://data.delijn.be/stops/302624"], ["https://data.delijn.be/stops/108297", "https://data.delijn.be/stops/108298"], ["https://data.delijn.be/stops/501138", "https://data.delijn.be/stops/501139"], ["https://data.delijn.be/stops/201200", "https://data.delijn.be/stops/201689"], ["https://data.delijn.be/stops/206934", "https://data.delijn.be/stops/206963"], ["https://data.delijn.be/stops/202917", "https://data.delijn.be/stops/202921"], ["https://data.delijn.be/stops/406001", "https://data.delijn.be/stops/406014"], ["https://data.delijn.be/stops/501471", "https://data.delijn.be/stops/505397"], ["https://data.delijn.be/stops/304466", "https://data.delijn.be/stops/304470"], ["https://data.delijn.be/stops/502344", "https://data.delijn.be/stops/507344"], ["https://data.delijn.be/stops/203217", "https://data.delijn.be/stops/204795"], ["https://data.delijn.be/stops/402219", "https://data.delijn.be/stops/405571"], ["https://data.delijn.be/stops/105253", "https://data.delijn.be/stops/105268"], ["https://data.delijn.be/stops/104736", "https://data.delijn.be/stops/108167"], ["https://data.delijn.be/stops/409388", "https://data.delijn.be/stops/409389"], ["https://data.delijn.be/stops/302631", "https://data.delijn.be/stops/302632"], ["https://data.delijn.be/stops/504347", "https://data.delijn.be/stops/504351"], ["https://data.delijn.be/stops/103212", "https://data.delijn.be/stops/106288"], ["https://data.delijn.be/stops/103759", "https://data.delijn.be/stops/105351"], ["https://data.delijn.be/stops/400703", "https://data.delijn.be/stops/410112"], ["https://data.delijn.be/stops/201830", "https://data.delijn.be/stops/208325"], ["https://data.delijn.be/stops/200325", "https://data.delijn.be/stops/200544"], ["https://data.delijn.be/stops/206784", "https://data.delijn.be/stops/209610"], ["https://data.delijn.be/stops/201729", "https://data.delijn.be/stops/208333"], ["https://data.delijn.be/stops/403702", "https://data.delijn.be/stops/403773"], ["https://data.delijn.be/stops/208641", "https://data.delijn.be/stops/209643"], ["https://data.delijn.be/stops/106142", "https://data.delijn.be/stops/106434"], ["https://data.delijn.be/stops/403442", "https://data.delijn.be/stops/410280"], ["https://data.delijn.be/stops/402579", "https://data.delijn.be/stops/403472"], ["https://data.delijn.be/stops/102161", "https://data.delijn.be/stops/108985"], ["https://data.delijn.be/stops/505026", "https://data.delijn.be/stops/507011"], ["https://data.delijn.be/stops/105533", "https://data.delijn.be/stops/106730"], ["https://data.delijn.be/stops/407483", "https://data.delijn.be/stops/407498"], ["https://data.delijn.be/stops/401586", "https://data.delijn.be/stops/401587"], ["https://data.delijn.be/stops/201924", "https://data.delijn.be/stops/207592"], ["https://data.delijn.be/stops/301572", "https://data.delijn.be/stops/301574"], ["https://data.delijn.be/stops/307364", "https://data.delijn.be/stops/307365"], ["https://data.delijn.be/stops/503806", "https://data.delijn.be/stops/508568"], ["https://data.delijn.be/stops/405455", "https://data.delijn.be/stops/405459"], ["https://data.delijn.be/stops/304912", "https://data.delijn.be/stops/304913"], ["https://data.delijn.be/stops/507591", "https://data.delijn.be/stops/507751"], ["https://data.delijn.be/stops/102383", "https://data.delijn.be/stops/106038"], ["https://data.delijn.be/stops/503522", "https://data.delijn.be/stops/503530"], ["https://data.delijn.be/stops/301596", "https://data.delijn.be/stops/301600"], ["https://data.delijn.be/stops/406918", "https://data.delijn.be/stops/406970"], ["https://data.delijn.be/stops/102952", "https://data.delijn.be/stops/102953"], ["https://data.delijn.be/stops/304281", "https://data.delijn.be/stops/304282"], ["https://data.delijn.be/stops/101754", "https://data.delijn.be/stops/109821"], ["https://data.delijn.be/stops/505429", "https://data.delijn.be/stops/509022"], ["https://data.delijn.be/stops/202476", "https://data.delijn.be/stops/210003"], ["https://data.delijn.be/stops/503087", "https://data.delijn.be/stops/503825"], ["https://data.delijn.be/stops/106561", "https://data.delijn.be/stops/106563"], ["https://data.delijn.be/stops/200248", "https://data.delijn.be/stops/201575"], ["https://data.delijn.be/stops/102493", "https://data.delijn.be/stops/400004"], ["https://data.delijn.be/stops/502666", "https://data.delijn.be/stops/507666"], ["https://data.delijn.be/stops/107907", "https://data.delijn.be/stops/107908"], ["https://data.delijn.be/stops/106380", "https://data.delijn.be/stops/106381"], ["https://data.delijn.be/stops/202359", "https://data.delijn.be/stops/203359"], ["https://data.delijn.be/stops/302712", "https://data.delijn.be/stops/302723"], ["https://data.delijn.be/stops/201844", "https://data.delijn.be/stops/208326"], ["https://data.delijn.be/stops/108318", "https://data.delijn.be/stops/109018"], ["https://data.delijn.be/stops/503525", "https://data.delijn.be/stops/508525"], ["https://data.delijn.be/stops/408552", "https://data.delijn.be/stops/408645"], ["https://data.delijn.be/stops/409350", "https://data.delijn.be/stops/409441"], ["https://data.delijn.be/stops/304885", "https://data.delijn.be/stops/306161"], ["https://data.delijn.be/stops/302848", "https://data.delijn.be/stops/302849"], ["https://data.delijn.be/stops/406448", "https://data.delijn.be/stops/406449"], ["https://data.delijn.be/stops/107871", "https://data.delijn.be/stops/107872"], ["https://data.delijn.be/stops/204097", "https://data.delijn.be/stops/204466"], ["https://data.delijn.be/stops/307981", "https://data.delijn.be/stops/307984"], ["https://data.delijn.be/stops/102320", "https://data.delijn.be/stops/108800"], ["https://data.delijn.be/stops/301272", "https://data.delijn.be/stops/301274"], ["https://data.delijn.be/stops/202670", "https://data.delijn.be/stops/210034"], ["https://data.delijn.be/stops/201759", "https://data.delijn.be/stops/218010"], ["https://data.delijn.be/stops/304620", "https://data.delijn.be/stops/304622"], ["https://data.delijn.be/stops/206676", "https://data.delijn.be/stops/209164"], ["https://data.delijn.be/stops/108942", "https://data.delijn.be/stops/108944"], ["https://data.delijn.be/stops/504367", "https://data.delijn.be/stops/509367"], ["https://data.delijn.be/stops/200575", "https://data.delijn.be/stops/201575"], ["https://data.delijn.be/stops/109300", "https://data.delijn.be/stops/109301"], ["https://data.delijn.be/stops/104835", "https://data.delijn.be/stops/104840"], ["https://data.delijn.be/stops/106464", "https://data.delijn.be/stops/106465"], ["https://data.delijn.be/stops/108259", "https://data.delijn.be/stops/108354"], ["https://data.delijn.be/stops/406278", "https://data.delijn.be/stops/408922"], ["https://data.delijn.be/stops/403018", "https://data.delijn.be/stops/405182"], ["https://data.delijn.be/stops/105578", "https://data.delijn.be/stops/105582"], ["https://data.delijn.be/stops/501366", "https://data.delijn.be/stops/506362"], ["https://data.delijn.be/stops/102836", "https://data.delijn.be/stops/102837"], ["https://data.delijn.be/stops/400504", "https://data.delijn.be/stops/400512"], ["https://data.delijn.be/stops/501661", "https://data.delijn.be/stops/506661"], ["https://data.delijn.be/stops/206855", "https://data.delijn.be/stops/207236"], ["https://data.delijn.be/stops/401487", "https://data.delijn.be/stops/401887"], ["https://data.delijn.be/stops/200897", "https://data.delijn.be/stops/203356"], ["https://data.delijn.be/stops/504680", "https://data.delijn.be/stops/509396"], ["https://data.delijn.be/stops/501393", "https://data.delijn.be/stops/506394"], ["https://data.delijn.be/stops/109041", "https://data.delijn.be/stops/109044"], ["https://data.delijn.be/stops/505236", "https://data.delijn.be/stops/505762"], ["https://data.delijn.be/stops/305041", "https://data.delijn.be/stops/306832"], ["https://data.delijn.be/stops/105908", "https://data.delijn.be/stops/105909"], ["https://data.delijn.be/stops/306790", "https://data.delijn.be/stops/306791"], ["https://data.delijn.be/stops/102025", "https://data.delijn.be/stops/108760"], ["https://data.delijn.be/stops/101850", "https://data.delijn.be/stops/102708"], ["https://data.delijn.be/stops/402574", "https://data.delijn.be/stops/402575"], ["https://data.delijn.be/stops/306807", "https://data.delijn.be/stops/306808"], ["https://data.delijn.be/stops/101869", "https://data.delijn.be/stops/105256"], ["https://data.delijn.be/stops/301616", "https://data.delijn.be/stops/301617"], ["https://data.delijn.be/stops/403161", "https://data.delijn.be/stops/403408"], ["https://data.delijn.be/stops/105619", "https://data.delijn.be/stops/106363"], ["https://data.delijn.be/stops/200226", "https://data.delijn.be/stops/201226"], ["https://data.delijn.be/stops/103643", "https://data.delijn.be/stops/105628"], ["https://data.delijn.be/stops/202196", "https://data.delijn.be/stops/203196"], ["https://data.delijn.be/stops/407188", "https://data.delijn.be/stops/407381"], ["https://data.delijn.be/stops/204422", "https://data.delijn.be/stops/204423"], ["https://data.delijn.be/stops/504168", "https://data.delijn.be/stops/509716"], ["https://data.delijn.be/stops/105233", "https://data.delijn.be/stops/105248"], ["https://data.delijn.be/stops/301716", "https://data.delijn.be/stops/301718"], ["https://data.delijn.be/stops/204128", "https://data.delijn.be/stops/205124"], ["https://data.delijn.be/stops/502005", "https://data.delijn.be/stops/502209"], ["https://data.delijn.be/stops/307351", "https://data.delijn.be/stops/307431"], ["https://data.delijn.be/stops/206750", "https://data.delijn.be/stops/209668"], ["https://data.delijn.be/stops/202763", "https://data.delijn.be/stops/202764"], ["https://data.delijn.be/stops/403262", "https://data.delijn.be/stops/403263"], ["https://data.delijn.be/stops/407245", "https://data.delijn.be/stops/407452"], ["https://data.delijn.be/stops/505662", "https://data.delijn.be/stops/507499"], ["https://data.delijn.be/stops/102056", "https://data.delijn.be/stops/103338"], ["https://data.delijn.be/stops/505379", "https://data.delijn.be/stops/508093"], ["https://data.delijn.be/stops/203768", "https://data.delijn.be/stops/203769"], ["https://data.delijn.be/stops/204060", "https://data.delijn.be/stops/205061"], ["https://data.delijn.be/stops/206101", "https://data.delijn.be/stops/207100"], ["https://data.delijn.be/stops/504189", "https://data.delijn.be/stops/504191"], ["https://data.delijn.be/stops/206381", "https://data.delijn.be/stops/206382"], ["https://data.delijn.be/stops/500026", "https://data.delijn.be/stops/502768"], ["https://data.delijn.be/stops/209083", "https://data.delijn.be/stops/209700"], ["https://data.delijn.be/stops/109149", "https://data.delijn.be/stops/109192"], ["https://data.delijn.be/stops/505799", "https://data.delijn.be/stops/509616"], ["https://data.delijn.be/stops/301229", "https://data.delijn.be/stops/303624"], ["https://data.delijn.be/stops/407716", "https://data.delijn.be/stops/407718"], ["https://data.delijn.be/stops/300004", "https://data.delijn.be/stops/304300"], ["https://data.delijn.be/stops/402107", "https://data.delijn.be/stops/402299"], ["https://data.delijn.be/stops/406525", "https://data.delijn.be/stops/406604"], ["https://data.delijn.be/stops/506295", "https://data.delijn.be/stops/506360"], ["https://data.delijn.be/stops/108418", "https://data.delijn.be/stops/108421"], ["https://data.delijn.be/stops/503826", "https://data.delijn.be/stops/508828"], ["https://data.delijn.be/stops/504346", "https://data.delijn.be/stops/504590"], ["https://data.delijn.be/stops/105134", "https://data.delijn.be/stops/305612"], ["https://data.delijn.be/stops/206697", "https://data.delijn.be/stops/207335"], ["https://data.delijn.be/stops/302737", "https://data.delijn.be/stops/308593"], ["https://data.delijn.be/stops/503476", "https://data.delijn.be/stops/508986"], ["https://data.delijn.be/stops/104280", "https://data.delijn.be/stops/104375"], ["https://data.delijn.be/stops/205314", "https://data.delijn.be/stops/205354"], ["https://data.delijn.be/stops/400889", "https://data.delijn.be/stops/409613"], ["https://data.delijn.be/stops/304383", "https://data.delijn.be/stops/304390"], ["https://data.delijn.be/stops/107702", "https://data.delijn.be/stops/109045"], ["https://data.delijn.be/stops/106012", "https://data.delijn.be/stops/106014"], ["https://data.delijn.be/stops/203963", "https://data.delijn.be/stops/205770"], ["https://data.delijn.be/stops/208498", "https://data.delijn.be/stops/209472"], ["https://data.delijn.be/stops/405186", "https://data.delijn.be/stops/405194"], ["https://data.delijn.be/stops/108688", "https://data.delijn.be/stops/108689"], ["https://data.delijn.be/stops/504590", "https://data.delijn.be/stops/509350"], ["https://data.delijn.be/stops/504541", "https://data.delijn.be/stops/504560"], ["https://data.delijn.be/stops/207600", "https://data.delijn.be/stops/207601"], ["https://data.delijn.be/stops/104334", "https://data.delijn.be/stops/105856"], ["https://data.delijn.be/stops/208151", "https://data.delijn.be/stops/208193"], ["https://data.delijn.be/stops/503720", "https://data.delijn.be/stops/503758"], ["https://data.delijn.be/stops/300980", "https://data.delijn.be/stops/303650"], ["https://data.delijn.be/stops/106922", "https://data.delijn.be/stops/106945"], ["https://data.delijn.be/stops/502235", "https://data.delijn.be/stops/505721"], ["https://data.delijn.be/stops/503053", "https://data.delijn.be/stops/509757"], ["https://data.delijn.be/stops/402477", "https://data.delijn.be/stops/407500"], ["https://data.delijn.be/stops/102834", "https://data.delijn.be/stops/103759"], ["https://data.delijn.be/stops/206060", "https://data.delijn.be/stops/206500"], ["https://data.delijn.be/stops/400456", "https://data.delijn.be/stops/400458"], ["https://data.delijn.be/stops/210055", "https://data.delijn.be/stops/211055"], ["https://data.delijn.be/stops/209595", "https://data.delijn.be/stops/209808"], ["https://data.delijn.be/stops/301396", "https://data.delijn.be/stops/306122"], ["https://data.delijn.be/stops/407395", "https://data.delijn.be/stops/407446"], ["https://data.delijn.be/stops/401801", "https://data.delijn.be/stops/401864"], ["https://data.delijn.be/stops/105506", "https://data.delijn.be/stops/105508"], ["https://data.delijn.be/stops/200558", "https://data.delijn.be/stops/201557"], ["https://data.delijn.be/stops/101657", "https://data.delijn.be/stops/104939"], ["https://data.delijn.be/stops/403945", "https://data.delijn.be/stops/404086"], ["https://data.delijn.be/stops/406804", "https://data.delijn.be/stops/406805"], ["https://data.delijn.be/stops/108846", "https://data.delijn.be/stops/108847"], ["https://data.delijn.be/stops/407658", "https://data.delijn.be/stops/409806"], ["https://data.delijn.be/stops/302453", "https://data.delijn.be/stops/307037"], ["https://data.delijn.be/stops/504250", "https://data.delijn.be/stops/509250"], ["https://data.delijn.be/stops/403413", "https://data.delijn.be/stops/403684"], ["https://data.delijn.be/stops/400470", "https://data.delijn.be/stops/408824"], ["https://data.delijn.be/stops/200775", "https://data.delijn.be/stops/209237"], ["https://data.delijn.be/stops/207115", "https://data.delijn.be/stops/207117"], ["https://data.delijn.be/stops/200140", "https://data.delijn.be/stops/211001"], ["https://data.delijn.be/stops/106656", "https://data.delijn.be/stops/106657"], ["https://data.delijn.be/stops/307646", "https://data.delijn.be/stops/307647"], ["https://data.delijn.be/stops/200116", "https://data.delijn.be/stops/201115"], ["https://data.delijn.be/stops/501388", "https://data.delijn.be/stops/506389"], ["https://data.delijn.be/stops/107298", "https://data.delijn.be/stops/107299"], ["https://data.delijn.be/stops/107502", "https://data.delijn.be/stops/107529"], ["https://data.delijn.be/stops/308515", "https://data.delijn.be/stops/308516"], ["https://data.delijn.be/stops/103617", "https://data.delijn.be/stops/106195"], ["https://data.delijn.be/stops/505966", "https://data.delijn.be/stops/508284"], ["https://data.delijn.be/stops/104046", "https://data.delijn.be/stops/108399"], ["https://data.delijn.be/stops/108627", "https://data.delijn.be/stops/305859"], ["https://data.delijn.be/stops/302670", "https://data.delijn.be/stops/307088"], ["https://data.delijn.be/stops/208807", "https://data.delijn.be/stops/208808"], ["https://data.delijn.be/stops/400320", "https://data.delijn.be/stops/400321"], ["https://data.delijn.be/stops/502811", "https://data.delijn.be/stops/507507"], ["https://data.delijn.be/stops/502205", "https://data.delijn.be/stops/507205"], ["https://data.delijn.be/stops/400482", "https://data.delijn.be/stops/400483"], ["https://data.delijn.be/stops/404376", "https://data.delijn.be/stops/404378"], ["https://data.delijn.be/stops/303307", "https://data.delijn.be/stops/303332"], ["https://data.delijn.be/stops/206224", "https://data.delijn.be/stops/206225"], ["https://data.delijn.be/stops/107825", "https://data.delijn.be/stops/108295"], ["https://data.delijn.be/stops/509224", "https://data.delijn.be/stops/509685"], ["https://data.delijn.be/stops/106801", "https://data.delijn.be/stops/106870"], ["https://data.delijn.be/stops/209121", "https://data.delijn.be/stops/209207"], ["https://data.delijn.be/stops/102808", "https://data.delijn.be/stops/102911"], ["https://data.delijn.be/stops/204682", "https://data.delijn.be/stops/205681"], ["https://data.delijn.be/stops/201897", "https://data.delijn.be/stops/203147"], ["https://data.delijn.be/stops/305053", "https://data.delijn.be/stops/305211"], ["https://data.delijn.be/stops/502032", "https://data.delijn.be/stops/502047"], ["https://data.delijn.be/stops/202938", "https://data.delijn.be/stops/203937"], ["https://data.delijn.be/stops/208216", "https://data.delijn.be/stops/209215"], ["https://data.delijn.be/stops/205729", "https://data.delijn.be/stops/205731"], ["https://data.delijn.be/stops/504568", "https://data.delijn.be/stops/509568"], ["https://data.delijn.be/stops/205114", "https://data.delijn.be/stops/205690"], ["https://data.delijn.be/stops/302253", "https://data.delijn.be/stops/302266"], ["https://data.delijn.be/stops/206866", "https://data.delijn.be/stops/208748"], ["https://data.delijn.be/stops/200957", "https://data.delijn.be/stops/202727"], ["https://data.delijn.be/stops/206094", "https://data.delijn.be/stops/207094"], ["https://data.delijn.be/stops/102728", "https://data.delijn.be/stops/106586"], ["https://data.delijn.be/stops/408251", "https://data.delijn.be/stops/408412"], ["https://data.delijn.be/stops/303415", "https://data.delijn.be/stops/303431"], ["https://data.delijn.be/stops/206879", "https://data.delijn.be/stops/207900"], ["https://data.delijn.be/stops/400022", "https://data.delijn.be/stops/400199"], ["https://data.delijn.be/stops/105332", "https://data.delijn.be/stops/105336"], ["https://data.delijn.be/stops/201753", "https://data.delijn.be/stops/209215"], ["https://data.delijn.be/stops/102580", "https://data.delijn.be/stops/109113"], ["https://data.delijn.be/stops/504286", "https://data.delijn.be/stops/509039"], ["https://data.delijn.be/stops/503903", "https://data.delijn.be/stops/504981"], ["https://data.delijn.be/stops/102656", "https://data.delijn.be/stops/107921"], ["https://data.delijn.be/stops/107720", "https://data.delijn.be/stops/107725"], ["https://data.delijn.be/stops/501603", "https://data.delijn.be/stops/506402"], ["https://data.delijn.be/stops/402622", "https://data.delijn.be/stops/402623"], ["https://data.delijn.be/stops/109153", "https://data.delijn.be/stops/109230"], ["https://data.delijn.be/stops/402770", "https://data.delijn.be/stops/406545"], ["https://data.delijn.be/stops/106918", "https://data.delijn.be/stops/106947"], ["https://data.delijn.be/stops/402853", "https://data.delijn.be/stops/402942"], ["https://data.delijn.be/stops/402767", "https://data.delijn.be/stops/406473"], ["https://data.delijn.be/stops/209085", "https://data.delijn.be/stops/209086"], ["https://data.delijn.be/stops/503016", "https://data.delijn.be/stops/508010"], ["https://data.delijn.be/stops/501738", "https://data.delijn.be/stops/506253"], ["https://data.delijn.be/stops/206368", "https://data.delijn.be/stops/207809"], ["https://data.delijn.be/stops/501163", "https://data.delijn.be/stops/509838"], ["https://data.delijn.be/stops/108381", "https://data.delijn.be/stops/108382"], ["https://data.delijn.be/stops/209005", "https://data.delijn.be/stops/209006"], ["https://data.delijn.be/stops/104491", "https://data.delijn.be/stops/104580"], ["https://data.delijn.be/stops/105388", "https://data.delijn.be/stops/105392"], ["https://data.delijn.be/stops/402048", "https://data.delijn.be/stops/402266"], ["https://data.delijn.be/stops/502419", "https://data.delijn.be/stops/502694"], ["https://data.delijn.be/stops/502003", "https://data.delijn.be/stops/507039"], ["https://data.delijn.be/stops/200443", "https://data.delijn.be/stops/201224"], ["https://data.delijn.be/stops/106267", "https://data.delijn.be/stops/106270"], ["https://data.delijn.be/stops/206942", "https://data.delijn.be/stops/209161"], ["https://data.delijn.be/stops/304609", "https://data.delijn.be/stops/304683"], ["https://data.delijn.be/stops/206529", "https://data.delijn.be/stops/207480"], ["https://data.delijn.be/stops/107215", "https://data.delijn.be/stops/107243"], ["https://data.delijn.be/stops/105367", "https://data.delijn.be/stops/105389"], ["https://data.delijn.be/stops/504214", "https://data.delijn.be/stops/509067"], ["https://data.delijn.be/stops/503691", "https://data.delijn.be/stops/503694"], ["https://data.delijn.be/stops/503820", "https://data.delijn.be/stops/503835"], ["https://data.delijn.be/stops/105789", "https://data.delijn.be/stops/105938"], ["https://data.delijn.be/stops/200911", "https://data.delijn.be/stops/200949"], ["https://data.delijn.be/stops/207662", "https://data.delijn.be/stops/208500"], ["https://data.delijn.be/stops/501308", "https://data.delijn.be/stops/506334"], ["https://data.delijn.be/stops/407834", "https://data.delijn.be/stops/407983"], ["https://data.delijn.be/stops/303165", "https://data.delijn.be/stops/303166"], ["https://data.delijn.be/stops/104004", "https://data.delijn.be/stops/106565"], ["https://data.delijn.be/stops/405705", "https://data.delijn.be/stops/408804"], ["https://data.delijn.be/stops/503962", "https://data.delijn.be/stops/508039"], ["https://data.delijn.be/stops/204333", "https://data.delijn.be/stops/205334"], ["https://data.delijn.be/stops/206350", "https://data.delijn.be/stops/207729"], ["https://data.delijn.be/stops/406741", "https://data.delijn.be/stops/406743"], ["https://data.delijn.be/stops/304188", "https://data.delijn.be/stops/305336"], ["https://data.delijn.be/stops/106753", "https://data.delijn.be/stops/106754"], ["https://data.delijn.be/stops/107037", "https://data.delijn.be/stops/107041"], ["https://data.delijn.be/stops/206960", "https://data.delijn.be/stops/216018"], ["https://data.delijn.be/stops/503423", "https://data.delijn.be/stops/508411"], ["https://data.delijn.be/stops/503304", "https://data.delijn.be/stops/505949"], ["https://data.delijn.be/stops/503429", "https://data.delijn.be/stops/508369"], ["https://data.delijn.be/stops/505323", "https://data.delijn.be/stops/507504"], ["https://data.delijn.be/stops/405517", "https://data.delijn.be/stops/407281"], ["https://data.delijn.be/stops/501682", "https://data.delijn.be/stops/501683"], ["https://data.delijn.be/stops/505680", "https://data.delijn.be/stops/507065"], ["https://data.delijn.be/stops/502557", "https://data.delijn.be/stops/505051"], ["https://data.delijn.be/stops/501474", "https://data.delijn.be/stops/506474"], ["https://data.delijn.be/stops/202944", "https://data.delijn.be/stops/203944"], ["https://data.delijn.be/stops/300689", "https://data.delijn.be/stops/306941"], ["https://data.delijn.be/stops/203898", "https://data.delijn.be/stops/211125"], ["https://data.delijn.be/stops/400765", "https://data.delijn.be/stops/409636"], ["https://data.delijn.be/stops/301704", "https://data.delijn.be/stops/301713"], ["https://data.delijn.be/stops/307380", "https://data.delijn.be/stops/307448"], ["https://data.delijn.be/stops/300304", "https://data.delijn.be/stops/301317"], ["https://data.delijn.be/stops/207501", "https://data.delijn.be/stops/207502"], ["https://data.delijn.be/stops/207129", "https://data.delijn.be/stops/207130"], ["https://data.delijn.be/stops/504217", "https://data.delijn.be/stops/504221"], ["https://data.delijn.be/stops/200384", "https://data.delijn.be/stops/201286"], ["https://data.delijn.be/stops/200922", "https://data.delijn.be/stops/203715"], ["https://data.delijn.be/stops/406126", "https://data.delijn.be/stops/410262"], ["https://data.delijn.be/stops/403082", "https://data.delijn.be/stops/405122"], ["https://data.delijn.be/stops/206030", "https://data.delijn.be/stops/206685"], ["https://data.delijn.be/stops/204172", "https://data.delijn.be/stops/205170"], ["https://data.delijn.be/stops/202082", "https://data.delijn.be/stops/203083"], ["https://data.delijn.be/stops/300048", "https://data.delijn.be/stops/306794"], ["https://data.delijn.be/stops/405667", "https://data.delijn.be/stops/409343"], ["https://data.delijn.be/stops/101313", "https://data.delijn.be/stops/102934"], ["https://data.delijn.be/stops/502337", "https://data.delijn.be/stops/505010"], ["https://data.delijn.be/stops/501147", "https://data.delijn.be/stops/506147"], ["https://data.delijn.be/stops/409373", "https://data.delijn.be/stops/409389"], ["https://data.delijn.be/stops/306332", "https://data.delijn.be/stops/306333"], ["https://data.delijn.be/stops/107969", "https://data.delijn.be/stops/108433"], ["https://data.delijn.be/stops/406206", "https://data.delijn.be/stops/406207"], ["https://data.delijn.be/stops/108082", "https://data.delijn.be/stops/108449"], ["https://data.delijn.be/stops/501683", "https://data.delijn.be/stops/506259"], ["https://data.delijn.be/stops/104693", "https://data.delijn.be/stops/104696"], ["https://data.delijn.be/stops/504242", "https://data.delijn.be/stops/509133"], ["https://data.delijn.be/stops/407623", "https://data.delijn.be/stops/407625"], ["https://data.delijn.be/stops/501128", "https://data.delijn.be/stops/506128"], ["https://data.delijn.be/stops/503219", "https://data.delijn.be/stops/508927"], ["https://data.delijn.be/stops/508188", "https://data.delijn.be/stops/508206"], ["https://data.delijn.be/stops/400916", "https://data.delijn.be/stops/400970"], ["https://data.delijn.be/stops/500874", "https://data.delijn.be/stops/505306"], ["https://data.delijn.be/stops/108875", "https://data.delijn.be/stops/109145"], ["https://data.delijn.be/stops/508526", "https://data.delijn.be/stops/509775"], ["https://data.delijn.be/stops/401397", "https://data.delijn.be/stops/401409"], ["https://data.delijn.be/stops/501540", "https://data.delijn.be/stops/505781"], ["https://data.delijn.be/stops/103013", "https://data.delijn.be/stops/103014"], ["https://data.delijn.be/stops/410115", "https://data.delijn.be/stops/410116"], ["https://data.delijn.be/stops/101952", "https://data.delijn.be/stops/108796"], ["https://data.delijn.be/stops/404894", "https://data.delijn.be/stops/404902"], ["https://data.delijn.be/stops/103965", "https://data.delijn.be/stops/104700"], ["https://data.delijn.be/stops/202066", "https://data.delijn.be/stops/202324"], ["https://data.delijn.be/stops/202077", "https://data.delijn.be/stops/203077"], ["https://data.delijn.be/stops/503962", "https://data.delijn.be/stops/508318"], ["https://data.delijn.be/stops/204737", "https://data.delijn.be/stops/205737"], ["https://data.delijn.be/stops/209280", "https://data.delijn.be/stops/209281"], ["https://data.delijn.be/stops/503457", "https://data.delijn.be/stops/508947"], ["https://data.delijn.be/stops/303459", "https://data.delijn.be/stops/303504"], ["https://data.delijn.be/stops/204130", "https://data.delijn.be/stops/205130"], ["https://data.delijn.be/stops/502926", "https://data.delijn.be/stops/505013"], ["https://data.delijn.be/stops/101796", "https://data.delijn.be/stops/103600"], ["https://data.delijn.be/stops/301650", "https://data.delijn.be/stops/301892"], ["https://data.delijn.be/stops/105804", "https://data.delijn.be/stops/106299"], ["https://data.delijn.be/stops/101482", "https://data.delijn.be/stops/109295"], ["https://data.delijn.be/stops/300211", "https://data.delijn.be/stops/300212"], ["https://data.delijn.be/stops/405563", "https://data.delijn.be/stops/410098"], ["https://data.delijn.be/stops/404954", "https://data.delijn.be/stops/404955"], ["https://data.delijn.be/stops/305253", "https://data.delijn.be/stops/305254"], ["https://data.delijn.be/stops/303595", "https://data.delijn.be/stops/306280"], ["https://data.delijn.be/stops/209470", "https://data.delijn.be/stops/209513"], ["https://data.delijn.be/stops/305198", "https://data.delijn.be/stops/305201"], ["https://data.delijn.be/stops/101072", "https://data.delijn.be/stops/107980"], ["https://data.delijn.be/stops/206039", "https://data.delijn.be/stops/206049"], ["https://data.delijn.be/stops/108076", "https://data.delijn.be/stops/108444"], ["https://data.delijn.be/stops/202430", "https://data.delijn.be/stops/204939"], ["https://data.delijn.be/stops/208685", "https://data.delijn.be/stops/208688"], ["https://data.delijn.be/stops/204300", "https://data.delijn.be/stops/205301"], ["https://data.delijn.be/stops/200409", "https://data.delijn.be/stops/201135"], ["https://data.delijn.be/stops/206637", "https://data.delijn.be/stops/207637"], ["https://data.delijn.be/stops/202678", "https://data.delijn.be/stops/203679"], ["https://data.delijn.be/stops/404919", "https://data.delijn.be/stops/404943"], ["https://data.delijn.be/stops/206203", "https://data.delijn.be/stops/206204"], ["https://data.delijn.be/stops/403143", "https://data.delijn.be/stops/403157"], ["https://data.delijn.be/stops/303391", "https://data.delijn.be/stops/308850"], ["https://data.delijn.be/stops/208339", "https://data.delijn.be/stops/219007"], ["https://data.delijn.be/stops/409092", "https://data.delijn.be/stops/409095"], ["https://data.delijn.be/stops/102492", "https://data.delijn.be/stops/400349"], ["https://data.delijn.be/stops/505349", "https://data.delijn.be/stops/507599"], ["https://data.delijn.be/stops/201695", "https://data.delijn.be/stops/203038"], ["https://data.delijn.be/stops/304815", "https://data.delijn.be/stops/304852"], ["https://data.delijn.be/stops/405768", "https://data.delijn.be/stops/409306"], ["https://data.delijn.be/stops/408080", "https://data.delijn.be/stops/305716"], ["https://data.delijn.be/stops/505553", "https://data.delijn.be/stops/507506"], ["https://data.delijn.be/stops/502102", "https://data.delijn.be/stops/502132"], ["https://data.delijn.be/stops/304471", "https://data.delijn.be/stops/307027"], ["https://data.delijn.be/stops/302935", "https://data.delijn.be/stops/306299"], ["https://data.delijn.be/stops/109071", "https://data.delijn.be/stops/306860"], ["https://data.delijn.be/stops/403403", "https://data.delijn.be/stops/410028"], ["https://data.delijn.be/stops/505839", "https://data.delijn.be/stops/506046"], ["https://data.delijn.be/stops/208433", "https://data.delijn.be/stops/209432"], ["https://data.delijn.be/stops/307367", "https://data.delijn.be/stops/307376"], ["https://data.delijn.be/stops/301044", "https://data.delijn.be/stops/304787"], ["https://data.delijn.be/stops/200565", "https://data.delijn.be/stops/201841"], ["https://data.delijn.be/stops/408732", "https://data.delijn.be/stops/410342"], ["https://data.delijn.be/stops/104496", "https://data.delijn.be/stops/104498"], ["https://data.delijn.be/stops/406036", "https://data.delijn.be/stops/406056"], ["https://data.delijn.be/stops/300710", "https://data.delijn.be/stops/300716"], ["https://data.delijn.be/stops/101062", "https://data.delijn.be/stops/106750"], ["https://data.delijn.be/stops/109071", "https://data.delijn.be/stops/300149"], ["https://data.delijn.be/stops/401479", "https://data.delijn.be/stops/401743"], ["https://data.delijn.be/stops/301179", "https://data.delijn.be/stops/305657"], ["https://data.delijn.be/stops/209181", "https://data.delijn.be/stops/209191"], ["https://data.delijn.be/stops/202781", "https://data.delijn.be/stops/203781"], ["https://data.delijn.be/stops/405343", "https://data.delijn.be/stops/405346"], ["https://data.delijn.be/stops/303966", "https://data.delijn.be/stops/304081"], ["https://data.delijn.be/stops/104880", "https://data.delijn.be/stops/104882"], ["https://data.delijn.be/stops/501041", "https://data.delijn.be/stops/501138"], ["https://data.delijn.be/stops/204083", "https://data.delijn.be/stops/204087"], ["https://data.delijn.be/stops/106652", "https://data.delijn.be/stops/106655"], ["https://data.delijn.be/stops/207258", "https://data.delijn.be/stops/207290"], ["https://data.delijn.be/stops/504547", "https://data.delijn.be/stops/505375"], ["https://data.delijn.be/stops/305799", "https://data.delijn.be/stops/305800"], ["https://data.delijn.be/stops/201406", "https://data.delijn.be/stops/210133"], ["https://data.delijn.be/stops/202273", "https://data.delijn.be/stops/203668"], ["https://data.delijn.be/stops/202662", "https://data.delijn.be/stops/203662"], ["https://data.delijn.be/stops/505436", "https://data.delijn.be/stops/509268"], ["https://data.delijn.be/stops/501211", "https://data.delijn.be/stops/506223"], ["https://data.delijn.be/stops/102620", "https://data.delijn.be/stops/105515"], ["https://data.delijn.be/stops/405763", "https://data.delijn.be/stops/406058"], ["https://data.delijn.be/stops/301028", "https://data.delijn.be/stops/301033"], ["https://data.delijn.be/stops/204102", "https://data.delijn.be/stops/204179"], ["https://data.delijn.be/stops/206701", "https://data.delijn.be/stops/304276"], ["https://data.delijn.be/stops/204354", "https://data.delijn.be/stops/205676"], ["https://data.delijn.be/stops/208265", "https://data.delijn.be/stops/209733"], ["https://data.delijn.be/stops/208570", "https://data.delijn.be/stops/209569"], ["https://data.delijn.be/stops/103623", "https://data.delijn.be/stops/103627"], ["https://data.delijn.be/stops/303778", "https://data.delijn.be/stops/303783"], ["https://data.delijn.be/stops/506283", "https://data.delijn.be/stops/506317"], ["https://data.delijn.be/stops/407166", "https://data.delijn.be/stops/407167"], ["https://data.delijn.be/stops/101432", "https://data.delijn.be/stops/107292"], ["https://data.delijn.be/stops/503994", "https://data.delijn.be/stops/508078"], ["https://data.delijn.be/stops/408063", "https://data.delijn.be/stops/408166"], ["https://data.delijn.be/stops/109612", "https://data.delijn.be/stops/109613"], ["https://data.delijn.be/stops/400156", "https://data.delijn.be/stops/400157"], ["https://data.delijn.be/stops/408242", "https://data.delijn.be/stops/308289"], ["https://data.delijn.be/stops/304611", "https://data.delijn.be/stops/304612"], ["https://data.delijn.be/stops/305080", "https://data.delijn.be/stops/305081"], ["https://data.delijn.be/stops/201582", "https://data.delijn.be/stops/201587"], ["https://data.delijn.be/stops/107844", "https://data.delijn.be/stops/107847"], ["https://data.delijn.be/stops/404513", "https://data.delijn.be/stops/408966"], ["https://data.delijn.be/stops/200727", "https://data.delijn.be/stops/202414"], ["https://data.delijn.be/stops/104081", "https://data.delijn.be/stops/104090"], ["https://data.delijn.be/stops/408652", "https://data.delijn.be/stops/408660"], ["https://data.delijn.be/stops/304128", "https://data.delijn.be/stops/307547"], ["https://data.delijn.be/stops/505955", "https://data.delijn.be/stops/505957"], ["https://data.delijn.be/stops/206083", "https://data.delijn.be/stops/207083"], ["https://data.delijn.be/stops/108448", "https://data.delijn.be/stops/108449"], ["https://data.delijn.be/stops/204714", "https://data.delijn.be/stops/205100"], ["https://data.delijn.be/stops/206382", "https://data.delijn.be/stops/206921"], ["https://data.delijn.be/stops/403631", "https://data.delijn.be/stops/403644"], ["https://data.delijn.be/stops/208690", "https://data.delijn.be/stops/208705"], ["https://data.delijn.be/stops/105217", "https://data.delijn.be/stops/106232"], ["https://data.delijn.be/stops/102741", "https://data.delijn.be/stops/102744"], ["https://data.delijn.be/stops/301284", "https://data.delijn.be/stops/301286"], ["https://data.delijn.be/stops/407792", "https://data.delijn.be/stops/307377"], ["https://data.delijn.be/stops/401098", "https://data.delijn.be/stops/401099"], ["https://data.delijn.be/stops/508449", "https://data.delijn.be/stops/508675"], ["https://data.delijn.be/stops/204759", "https://data.delijn.be/stops/205758"], ["https://data.delijn.be/stops/305992", "https://data.delijn.be/stops/305993"], ["https://data.delijn.be/stops/101061", "https://data.delijn.be/stops/106012"], ["https://data.delijn.be/stops/409647", "https://data.delijn.be/stops/410393"], ["https://data.delijn.be/stops/204607", "https://data.delijn.be/stops/205608"], ["https://data.delijn.be/stops/300168", "https://data.delijn.be/stops/301223"], ["https://data.delijn.be/stops/208239", "https://data.delijn.be/stops/209119"], ["https://data.delijn.be/stops/103542", "https://data.delijn.be/stops/106727"], ["https://data.delijn.be/stops/303391", "https://data.delijn.be/stops/303397"], ["https://data.delijn.be/stops/108068", "https://data.delijn.be/stops/108866"], ["https://data.delijn.be/stops/306874", "https://data.delijn.be/stops/307417"], ["https://data.delijn.be/stops/303529", "https://data.delijn.be/stops/303566"], ["https://data.delijn.be/stops/402047", "https://data.delijn.be/stops/402103"], ["https://data.delijn.be/stops/200384", "https://data.delijn.be/stops/209726"], ["https://data.delijn.be/stops/306334", "https://data.delijn.be/stops/306336"], ["https://data.delijn.be/stops/302747", "https://data.delijn.be/stops/303220"], ["https://data.delijn.be/stops/504438", "https://data.delijn.be/stops/505898"], ["https://data.delijn.be/stops/201047", "https://data.delijn.be/stops/202449"], ["https://data.delijn.be/stops/101465", "https://data.delijn.be/stops/101469"], ["https://data.delijn.be/stops/505280", "https://data.delijn.be/stops/505974"], ["https://data.delijn.be/stops/301756", "https://data.delijn.be/stops/308894"], ["https://data.delijn.be/stops/301308", "https://data.delijn.be/stops/301309"], ["https://data.delijn.be/stops/208405", "https://data.delijn.be/stops/208414"], ["https://data.delijn.be/stops/204519", "https://data.delijn.be/stops/205044"], ["https://data.delijn.be/stops/509058", "https://data.delijn.be/stops/509638"], ["https://data.delijn.be/stops/301137", "https://data.delijn.be/stops/301138"], ["https://data.delijn.be/stops/200829", "https://data.delijn.be/stops/200876"], ["https://data.delijn.be/stops/501426", "https://data.delijn.be/stops/505036"], ["https://data.delijn.be/stops/407856", "https://data.delijn.be/stops/410344"], ["https://data.delijn.be/stops/409228", "https://data.delijn.be/stops/409234"], ["https://data.delijn.be/stops/402374", "https://data.delijn.be/stops/409359"], ["https://data.delijn.be/stops/408195", "https://data.delijn.be/stops/408415"], ["https://data.delijn.be/stops/204141", "https://data.delijn.be/stops/204142"], ["https://data.delijn.be/stops/208119", "https://data.delijn.be/stops/218009"], ["https://data.delijn.be/stops/301392", "https://data.delijn.be/stops/306150"], ["https://data.delijn.be/stops/306949", "https://data.delijn.be/stops/306951"], ["https://data.delijn.be/stops/108842", "https://data.delijn.be/stops/108843"], ["https://data.delijn.be/stops/402811", "https://data.delijn.be/stops/409048"], ["https://data.delijn.be/stops/206545", "https://data.delijn.be/stops/207550"], ["https://data.delijn.be/stops/104401", "https://data.delijn.be/stops/107129"], ["https://data.delijn.be/stops/400264", "https://data.delijn.be/stops/402827"], ["https://data.delijn.be/stops/103141", "https://data.delijn.be/stops/106515"], ["https://data.delijn.be/stops/101747", "https://data.delijn.be/stops/106362"], ["https://data.delijn.be/stops/501034", "https://data.delijn.be/stops/501329"], ["https://data.delijn.be/stops/503287", "https://data.delijn.be/stops/508281"], ["https://data.delijn.be/stops/509377", "https://data.delijn.be/stops/509381"], ["https://data.delijn.be/stops/307691", "https://data.delijn.be/stops/307692"], ["https://data.delijn.be/stops/400840", "https://data.delijn.be/stops/409568"], ["https://data.delijn.be/stops/405848", "https://data.delijn.be/stops/405859"], ["https://data.delijn.be/stops/503815", "https://data.delijn.be/stops/507738"], ["https://data.delijn.be/stops/205176", "https://data.delijn.be/stops/205213"], ["https://data.delijn.be/stops/504772", "https://data.delijn.be/stops/509532"], ["https://data.delijn.be/stops/304500", "https://data.delijn.be/stops/304501"], ["https://data.delijn.be/stops/105652", "https://data.delijn.be/stops/105654"], ["https://data.delijn.be/stops/208465", "https://data.delijn.be/stops/209465"], ["https://data.delijn.be/stops/409064", "https://data.delijn.be/stops/409114"], ["https://data.delijn.be/stops/105257", "https://data.delijn.be/stops/105293"], ["https://data.delijn.be/stops/302562", "https://data.delijn.be/stops/302578"], ["https://data.delijn.be/stops/401529", "https://data.delijn.be/stops/401541"], ["https://data.delijn.be/stops/206695", "https://data.delijn.be/stops/207700"], ["https://data.delijn.be/stops/509009", "https://data.delijn.be/stops/509416"], ["https://data.delijn.be/stops/302037", "https://data.delijn.be/stops/304914"], ["https://data.delijn.be/stops/200696", "https://data.delijn.be/stops/209646"], ["https://data.delijn.be/stops/407213", "https://data.delijn.be/stops/407216"], ["https://data.delijn.be/stops/304725", "https://data.delijn.be/stops/304726"], ["https://data.delijn.be/stops/504381", "https://data.delijn.be/stops/504385"], ["https://data.delijn.be/stops/405626", "https://data.delijn.be/stops/405628"], ["https://data.delijn.be/stops/301548", "https://data.delijn.be/stops/301549"], ["https://data.delijn.be/stops/509448", "https://data.delijn.be/stops/509967"], ["https://data.delijn.be/stops/501116", "https://data.delijn.be/stops/506116"], ["https://data.delijn.be/stops/401085", "https://data.delijn.be/stops/401166"], ["https://data.delijn.be/stops/102382", "https://data.delijn.be/stops/105604"], ["https://data.delijn.be/stops/103982", "https://data.delijn.be/stops/109934"], ["https://data.delijn.be/stops/405916", "https://data.delijn.be/stops/405970"], ["https://data.delijn.be/stops/305773", "https://data.delijn.be/stops/305793"], ["https://data.delijn.be/stops/106132", "https://data.delijn.be/stops/106181"], ["https://data.delijn.be/stops/502667", "https://data.delijn.be/stops/507184"], ["https://data.delijn.be/stops/501513", "https://data.delijn.be/stops/506482"], ["https://data.delijn.be/stops/500042", "https://data.delijn.be/stops/500043"], ["https://data.delijn.be/stops/300505", "https://data.delijn.be/stops/302419"], ["https://data.delijn.be/stops/210131", "https://data.delijn.be/stops/211131"], ["https://data.delijn.be/stops/503382", "https://data.delijn.be/stops/503443"], ["https://data.delijn.be/stops/103503", "https://data.delijn.be/stops/109138"], ["https://data.delijn.be/stops/102604", "https://data.delijn.be/stops/106731"], ["https://data.delijn.be/stops/204741", "https://data.delijn.be/stops/205746"], ["https://data.delijn.be/stops/503528", "https://data.delijn.be/stops/503869"], ["https://data.delijn.be/stops/201164", "https://data.delijn.be/stops/209730"], ["https://data.delijn.be/stops/401564", "https://data.delijn.be/stops/401565"], ["https://data.delijn.be/stops/206146", "https://data.delijn.be/stops/207145"], ["https://data.delijn.be/stops/203549", "https://data.delijn.be/stops/203556"], ["https://data.delijn.be/stops/500028", "https://data.delijn.be/stops/504848"], ["https://data.delijn.be/stops/404775", "https://data.delijn.be/stops/404786"], ["https://data.delijn.be/stops/208275", "https://data.delijn.be/stops/209276"], ["https://data.delijn.be/stops/102007", "https://data.delijn.be/stops/104665"], ["https://data.delijn.be/stops/502044", "https://data.delijn.be/stops/507616"], ["https://data.delijn.be/stops/101948", "https://data.delijn.be/stops/108749"], ["https://data.delijn.be/stops/109597", "https://data.delijn.be/stops/109601"], ["https://data.delijn.be/stops/107511", "https://data.delijn.be/stops/107512"], ["https://data.delijn.be/stops/402364", "https://data.delijn.be/stops/410071"], ["https://data.delijn.be/stops/506077", "https://data.delijn.be/stops/506082"], ["https://data.delijn.be/stops/207170", "https://data.delijn.be/stops/303847"], ["https://data.delijn.be/stops/504199", "https://data.delijn.be/stops/504481"], ["https://data.delijn.be/stops/406685", "https://data.delijn.be/stops/406987"], ["https://data.delijn.be/stops/200681", "https://data.delijn.be/stops/201681"], ["https://data.delijn.be/stops/207674", "https://data.delijn.be/stops/208138"], ["https://data.delijn.be/stops/408664", "https://data.delijn.be/stops/410192"], ["https://data.delijn.be/stops/200376", "https://data.delijn.be/stops/201376"], ["https://data.delijn.be/stops/200860", "https://data.delijn.be/stops/210291"], ["https://data.delijn.be/stops/202365", "https://data.delijn.be/stops/203365"], ["https://data.delijn.be/stops/504566", "https://data.delijn.be/stops/505960"], ["https://data.delijn.be/stops/401514", "https://data.delijn.be/stops/410156"], ["https://data.delijn.be/stops/101797", "https://data.delijn.be/stops/305813"], ["https://data.delijn.be/stops/108652", "https://data.delijn.be/stops/302908"], ["https://data.delijn.be/stops/101983", "https://data.delijn.be/stops/109643"], ["https://data.delijn.be/stops/303436", "https://data.delijn.be/stops/303437"], ["https://data.delijn.be/stops/101987", "https://data.delijn.be/stops/101988"], ["https://data.delijn.be/stops/408765", "https://data.delijn.be/stops/408766"], ["https://data.delijn.be/stops/404884", "https://data.delijn.be/stops/404885"], ["https://data.delijn.be/stops/102058", "https://data.delijn.be/stops/102284"], ["https://data.delijn.be/stops/200155", "https://data.delijn.be/stops/201157"], ["https://data.delijn.be/stops/200420", "https://data.delijn.be/stops/201163"], ["https://data.delijn.be/stops/206754", "https://data.delijn.be/stops/206851"], ["https://data.delijn.be/stops/400942", "https://data.delijn.be/stops/406954"], ["https://data.delijn.be/stops/504749", "https://data.delijn.be/stops/505130"], ["https://data.delijn.be/stops/504465", "https://data.delijn.be/stops/509465"], ["https://data.delijn.be/stops/200706", "https://data.delijn.be/stops/205939"], ["https://data.delijn.be/stops/305816", "https://data.delijn.be/stops/305818"], ["https://data.delijn.be/stops/402587", "https://data.delijn.be/stops/407953"], ["https://data.delijn.be/stops/410152", "https://data.delijn.be/stops/410153"], ["https://data.delijn.be/stops/208672", "https://data.delijn.be/stops/209440"], ["https://data.delijn.be/stops/403955", "https://data.delijn.be/stops/404028"], ["https://data.delijn.be/stops/205507", "https://data.delijn.be/stops/205904"], ["https://data.delijn.be/stops/500120", "https://data.delijn.be/stops/502466"], ["https://data.delijn.be/stops/505644", "https://data.delijn.be/stops/508147"], ["https://data.delijn.be/stops/406521", "https://data.delijn.be/stops/407364"], ["https://data.delijn.be/stops/202875", "https://data.delijn.be/stops/207427"], ["https://data.delijn.be/stops/105571", "https://data.delijn.be/stops/105582"], ["https://data.delijn.be/stops/404304", "https://data.delijn.be/stops/409576"], ["https://data.delijn.be/stops/102087", "https://data.delijn.be/stops/109513"], ["https://data.delijn.be/stops/502267", "https://data.delijn.be/stops/507619"], ["https://data.delijn.be/stops/503033", "https://data.delijn.be/stops/503373"], ["https://data.delijn.be/stops/304733", "https://data.delijn.be/stops/306556"], ["https://data.delijn.be/stops/406082", "https://data.delijn.be/stops/406824"], ["https://data.delijn.be/stops/204592", "https://data.delijn.be/stops/205154"], ["https://data.delijn.be/stops/209378", "https://data.delijn.be/stops/218022"], ["https://data.delijn.be/stops/302545", "https://data.delijn.be/stops/308615"], ["https://data.delijn.be/stops/504797", "https://data.delijn.be/stops/507717"], ["https://data.delijn.be/stops/300368", "https://data.delijn.be/stops/304442"], ["https://data.delijn.be/stops/106910", "https://data.delijn.be/stops/107257"], ["https://data.delijn.be/stops/405909", "https://data.delijn.be/stops/405930"], ["https://data.delijn.be/stops/104803", "https://data.delijn.be/stops/108974"], ["https://data.delijn.be/stops/200134", "https://data.delijn.be/stops/203451"], ["https://data.delijn.be/stops/400424", "https://data.delijn.be/stops/400959"], ["https://data.delijn.be/stops/404900", "https://data.delijn.be/stops/404925"], ["https://data.delijn.be/stops/106919", "https://data.delijn.be/stops/106945"], ["https://data.delijn.be/stops/300081", "https://data.delijn.be/stops/307341"], ["https://data.delijn.be/stops/509137", "https://data.delijn.be/stops/509145"], ["https://data.delijn.be/stops/401411", "https://data.delijn.be/stops/401412"], ["https://data.delijn.be/stops/103896", "https://data.delijn.be/stops/103901"], ["https://data.delijn.be/stops/206690", "https://data.delijn.be/stops/206700"], ["https://data.delijn.be/stops/306254", "https://data.delijn.be/stops/306648"], ["https://data.delijn.be/stops/205214", "https://data.delijn.be/stops/205366"], ["https://data.delijn.be/stops/105863", "https://data.delijn.be/stops/105865"], ["https://data.delijn.be/stops/408299", "https://data.delijn.be/stops/408938"], ["https://data.delijn.be/stops/400910", "https://data.delijn.be/stops/406875"], ["https://data.delijn.be/stops/300472", "https://data.delijn.be/stops/308060"], ["https://data.delijn.be/stops/304929", "https://data.delijn.be/stops/304930"], ["https://data.delijn.be/stops/503636", "https://data.delijn.be/stops/503640"], ["https://data.delijn.be/stops/401099", "https://data.delijn.be/stops/409980"], ["https://data.delijn.be/stops/200585", "https://data.delijn.be/stops/210078"], ["https://data.delijn.be/stops/407286", "https://data.delijn.be/stops/407304"], ["https://data.delijn.be/stops/200049", "https://data.delijn.be/stops/201198"], ["https://data.delijn.be/stops/503855", "https://data.delijn.be/stops/508855"], ["https://data.delijn.be/stops/202242", "https://data.delijn.be/stops/203617"], ["https://data.delijn.be/stops/401805", "https://data.delijn.be/stops/401865"], ["https://data.delijn.be/stops/102639", "https://data.delijn.be/stops/104917"], ["https://data.delijn.be/stops/307636", "https://data.delijn.be/stops/307640"], ["https://data.delijn.be/stops/503528", "https://data.delijn.be/stops/508877"], ["https://data.delijn.be/stops/407600", "https://data.delijn.be/stops/407606"], ["https://data.delijn.be/stops/108442", "https://data.delijn.be/stops/109702"], ["https://data.delijn.be/stops/305019", "https://data.delijn.be/stops/305025"], ["https://data.delijn.be/stops/305241", "https://data.delijn.be/stops/305273"], ["https://data.delijn.be/stops/402967", "https://data.delijn.be/stops/403720"], ["https://data.delijn.be/stops/503887", "https://data.delijn.be/stops/508887"], ["https://data.delijn.be/stops/206012", "https://data.delijn.be/stops/207013"], ["https://data.delijn.be/stops/102319", "https://data.delijn.be/stops/102384"], ["https://data.delijn.be/stops/307320", "https://data.delijn.be/stops/307322"], ["https://data.delijn.be/stops/206266", "https://data.delijn.be/stops/206527"], ["https://data.delijn.be/stops/200827", "https://data.delijn.be/stops/200831"], ["https://data.delijn.be/stops/505014", "https://data.delijn.be/stops/507354"], ["https://data.delijn.be/stops/105319", "https://data.delijn.be/stops/204021"], ["https://data.delijn.be/stops/409050", "https://data.delijn.be/stops/409051"], ["https://data.delijn.be/stops/305894", "https://data.delijn.be/stops/308178"], ["https://data.delijn.be/stops/402441", "https://data.delijn.be/stops/402442"], ["https://data.delijn.be/stops/106968", "https://data.delijn.be/stops/106969"], ["https://data.delijn.be/stops/104606", "https://data.delijn.be/stops/104673"], ["https://data.delijn.be/stops/105575", "https://data.delijn.be/stops/106040"], ["https://data.delijn.be/stops/307618", "https://data.delijn.be/stops/308759"], ["https://data.delijn.be/stops/400023", "https://data.delijn.be/stops/406469"], ["https://data.delijn.be/stops/211057", "https://data.delijn.be/stops/211063"], ["https://data.delijn.be/stops/206519", "https://data.delijn.be/stops/207519"], ["https://data.delijn.be/stops/211015", "https://data.delijn.be/stops/502292"], ["https://data.delijn.be/stops/302930", "https://data.delijn.be/stops/307072"], ["https://data.delijn.be/stops/403041", "https://data.delijn.be/stops/403403"], ["https://data.delijn.be/stops/208246", "https://data.delijn.be/stops/208855"], ["https://data.delijn.be/stops/204404", "https://data.delijn.be/stops/205403"], ["https://data.delijn.be/stops/301702", "https://data.delijn.be/stops/301724"], ["https://data.delijn.be/stops/106019", "https://data.delijn.be/stops/106184"], ["https://data.delijn.be/stops/503484", "https://data.delijn.be/stops/508485"], ["https://data.delijn.be/stops/503633", "https://data.delijn.be/stops/505906"], ["https://data.delijn.be/stops/204313", "https://data.delijn.be/stops/205709"], ["https://data.delijn.be/stops/502185", "https://data.delijn.be/stops/507185"], ["https://data.delijn.be/stops/306805", "https://data.delijn.be/stops/306807"], ["https://data.delijn.be/stops/503473", "https://data.delijn.be/stops/504813"], ["https://data.delijn.be/stops/205428", "https://data.delijn.be/stops/205763"], ["https://data.delijn.be/stops/206928", "https://data.delijn.be/stops/207576"], ["https://data.delijn.be/stops/107027", "https://data.delijn.be/stops/107029"], ["https://data.delijn.be/stops/101956", "https://data.delijn.be/stops/102256"], ["https://data.delijn.be/stops/201941", "https://data.delijn.be/stops/203942"], ["https://data.delijn.be/stops/208399", "https://data.delijn.be/stops/209399"], ["https://data.delijn.be/stops/108893", "https://data.delijn.be/stops/108894"], ["https://data.delijn.be/stops/303959", "https://data.delijn.be/stops/303960"], ["https://data.delijn.be/stops/401247", "https://data.delijn.be/stops/401253"], ["https://data.delijn.be/stops/106260", "https://data.delijn.be/stops/106261"], ["https://data.delijn.be/stops/500045", "https://data.delijn.be/stops/500046"], ["https://data.delijn.be/stops/201403", "https://data.delijn.be/stops/203038"], ["https://data.delijn.be/stops/108909", "https://data.delijn.be/stops/108911"], ["https://data.delijn.be/stops/507951", "https://data.delijn.be/stops/508855"], ["https://data.delijn.be/stops/401476", "https://data.delijn.be/stops/410305"], ["https://data.delijn.be/stops/300199", "https://data.delijn.be/stops/300209"], ["https://data.delijn.be/stops/500158", "https://data.delijn.be/stops/590006"], ["https://data.delijn.be/stops/108845", "https://data.delijn.be/stops/108847"], ["https://data.delijn.be/stops/405368", "https://data.delijn.be/stops/405390"], ["https://data.delijn.be/stops/208363", "https://data.delijn.be/stops/209363"], ["https://data.delijn.be/stops/503710", "https://data.delijn.be/stops/504956"], ["https://data.delijn.be/stops/101934", "https://data.delijn.be/stops/107721"], ["https://data.delijn.be/stops/306862", "https://data.delijn.be/stops/307731"], ["https://data.delijn.be/stops/505627", "https://data.delijn.be/stops/505628"], ["https://data.delijn.be/stops/405871", "https://data.delijn.be/stops/409431"], ["https://data.delijn.be/stops/301760", "https://data.delijn.be/stops/303466"], ["https://data.delijn.be/stops/301998", "https://data.delijn.be/stops/301999"], ["https://data.delijn.be/stops/406689", "https://data.delijn.be/stops/406691"], ["https://data.delijn.be/stops/105228", "https://data.delijn.be/stops/105229"], ["https://data.delijn.be/stops/204188", "https://data.delijn.be/stops/205229"], ["https://data.delijn.be/stops/104093", "https://data.delijn.be/stops/107716"], ["https://data.delijn.be/stops/505198", "https://data.delijn.be/stops/505906"], ["https://data.delijn.be/stops/101431", "https://data.delijn.be/stops/103073"], ["https://data.delijn.be/stops/104494", "https://data.delijn.be/stops/104650"], ["https://data.delijn.be/stops/218001", "https://data.delijn.be/stops/218002"], ["https://data.delijn.be/stops/101832", "https://data.delijn.be/stops/108352"], ["https://data.delijn.be/stops/305596", "https://data.delijn.be/stops/306267"], ["https://data.delijn.be/stops/400178", "https://data.delijn.be/stops/400296"], ["https://data.delijn.be/stops/503361", "https://data.delijn.be/stops/508407"], ["https://data.delijn.be/stops/206611", "https://data.delijn.be/stops/206612"], ["https://data.delijn.be/stops/105023", "https://data.delijn.be/stops/106830"], ["https://data.delijn.be/stops/200911", "https://data.delijn.be/stops/203253"], ["https://data.delijn.be/stops/204194", "https://data.delijn.be/stops/204238"], ["https://data.delijn.be/stops/109167", "https://data.delijn.be/stops/109169"], ["https://data.delijn.be/stops/302713", "https://data.delijn.be/stops/307522"], ["https://data.delijn.be/stops/301586", "https://data.delijn.be/stops/301588"], ["https://data.delijn.be/stops/502928", "https://data.delijn.be/stops/509813"], ["https://data.delijn.be/stops/409364", "https://data.delijn.be/stops/409383"], ["https://data.delijn.be/stops/108203", "https://data.delijn.be/stops/108204"], ["https://data.delijn.be/stops/502309", "https://data.delijn.be/stops/502425"], ["https://data.delijn.be/stops/102521", "https://data.delijn.be/stops/408155"], ["https://data.delijn.be/stops/405234", "https://data.delijn.be/stops/405286"], ["https://data.delijn.be/stops/406359", "https://data.delijn.be/stops/407763"], ["https://data.delijn.be/stops/400258", "https://data.delijn.be/stops/402352"], ["https://data.delijn.be/stops/407630", "https://data.delijn.be/stops/407714"], ["https://data.delijn.be/stops/109219", "https://data.delijn.be/stops/109221"], ["https://data.delijn.be/stops/503046", "https://data.delijn.be/stops/508046"], ["https://data.delijn.be/stops/208444", "https://data.delijn.be/stops/209709"], ["https://data.delijn.be/stops/200978", "https://data.delijn.be/stops/208040"], ["https://data.delijn.be/stops/403072", "https://data.delijn.be/stops/403087"], ["https://data.delijn.be/stops/503361", "https://data.delijn.be/stops/503370"], ["https://data.delijn.be/stops/503303", "https://data.delijn.be/stops/508323"], ["https://data.delijn.be/stops/201217", "https://data.delijn.be/stops/201259"], ["https://data.delijn.be/stops/504696", "https://data.delijn.be/stops/509428"], ["https://data.delijn.be/stops/406966", "https://data.delijn.be/stops/409450"], ["https://data.delijn.be/stops/400201", "https://data.delijn.be/stops/400239"], ["https://data.delijn.be/stops/101929", "https://data.delijn.be/stops/108382"], ["https://data.delijn.be/stops/102713", "https://data.delijn.be/stops/109535"], ["https://data.delijn.be/stops/201652", "https://data.delijn.be/stops/201684"], ["https://data.delijn.be/stops/504496", "https://data.delijn.be/stops/509508"], ["https://data.delijn.be/stops/405192", "https://data.delijn.be/stops/405219"], ["https://data.delijn.be/stops/305928", "https://data.delijn.be/stops/306969"], ["https://data.delijn.be/stops/304495", "https://data.delijn.be/stops/304520"], ["https://data.delijn.be/stops/200330", "https://data.delijn.be/stops/203199"], ["https://data.delijn.be/stops/206147", "https://data.delijn.be/stops/207094"], ["https://data.delijn.be/stops/407688", "https://data.delijn.be/stops/409797"], ["https://data.delijn.be/stops/101130", "https://data.delijn.be/stops/101230"], ["https://data.delijn.be/stops/301590", "https://data.delijn.be/stops/301593"], ["https://data.delijn.be/stops/303482", "https://data.delijn.be/stops/303509"], ["https://data.delijn.be/stops/502220", "https://data.delijn.be/stops/507220"], ["https://data.delijn.be/stops/302535", "https://data.delijn.be/stops/302543"], ["https://data.delijn.be/stops/400802", "https://data.delijn.be/stops/400803"], ["https://data.delijn.be/stops/300474", "https://data.delijn.be/stops/301574"], ["https://data.delijn.be/stops/306698", "https://data.delijn.be/stops/306700"], ["https://data.delijn.be/stops/101528", "https://data.delijn.be/stops/102287"], ["https://data.delijn.be/stops/202924", "https://data.delijn.be/stops/203924"], ["https://data.delijn.be/stops/503810", "https://data.delijn.be/stops/505538"], ["https://data.delijn.be/stops/203541", "https://data.delijn.be/stops/210335"], ["https://data.delijn.be/stops/300276", "https://data.delijn.be/stops/306045"], ["https://data.delijn.be/stops/308204", "https://data.delijn.be/stops/308205"], ["https://data.delijn.be/stops/208187", "https://data.delijn.be/stops/209187"], ["https://data.delijn.be/stops/303011", "https://data.delijn.be/stops/303117"], ["https://data.delijn.be/stops/502559", "https://data.delijn.be/stops/507553"], ["https://data.delijn.be/stops/202429", "https://data.delijn.be/stops/202430"], ["https://data.delijn.be/stops/108364", "https://data.delijn.be/stops/108366"], ["https://data.delijn.be/stops/400071", "https://data.delijn.be/stops/400081"], ["https://data.delijn.be/stops/405717", "https://data.delijn.be/stops/405744"], ["https://data.delijn.be/stops/304230", "https://data.delijn.be/stops/308771"], ["https://data.delijn.be/stops/200737", "https://data.delijn.be/stops/202594"], ["https://data.delijn.be/stops/401490", "https://data.delijn.be/stops/401885"], ["https://data.delijn.be/stops/107702", "https://data.delijn.be/stops/109105"], ["https://data.delijn.be/stops/503961", "https://data.delijn.be/stops/506765"], ["https://data.delijn.be/stops/501385", "https://data.delijn.be/stops/501391"], ["https://data.delijn.be/stops/406119", "https://data.delijn.be/stops/406126"], ["https://data.delijn.be/stops/303017", "https://data.delijn.be/stops/303022"], ["https://data.delijn.be/stops/506076", "https://data.delijn.be/stops/506781"], ["https://data.delijn.be/stops/203739", "https://data.delijn.be/stops/206430"], ["https://data.delijn.be/stops/400177", "https://data.delijn.be/stops/400276"], ["https://data.delijn.be/stops/502163", "https://data.delijn.be/stops/507163"], ["https://data.delijn.be/stops/101003", "https://data.delijn.be/stops/102430"], ["https://data.delijn.be/stops/203224", "https://data.delijn.be/stops/208964"], ["https://data.delijn.be/stops/106092", "https://data.delijn.be/stops/106096"], ["https://data.delijn.be/stops/407396", "https://data.delijn.be/stops/407405"], ["https://data.delijn.be/stops/505123", "https://data.delijn.be/stops/505127"], ["https://data.delijn.be/stops/506241", "https://data.delijn.be/stops/506370"], ["https://data.delijn.be/stops/407224", "https://data.delijn.be/stops/407225"], ["https://data.delijn.be/stops/408162", "https://data.delijn.be/stops/408454"], ["https://data.delijn.be/stops/407481", "https://data.delijn.be/stops/407496"], ["https://data.delijn.be/stops/201345", "https://data.delijn.be/stops/202002"], ["https://data.delijn.be/stops/209677", "https://data.delijn.be/stops/209678"], ["https://data.delijn.be/stops/106183", "https://data.delijn.be/stops/106184"], ["https://data.delijn.be/stops/207897", "https://data.delijn.be/stops/207898"], ["https://data.delijn.be/stops/301549", "https://data.delijn.be/stops/301562"], ["https://data.delijn.be/stops/208012", "https://data.delijn.be/stops/208018"], ["https://data.delijn.be/stops/101187", "https://data.delijn.be/stops/104981"], ["https://data.delijn.be/stops/402869", "https://data.delijn.be/stops/306035"], ["https://data.delijn.be/stops/302685", "https://data.delijn.be/stops/302692"], ["https://data.delijn.be/stops/505277", "https://data.delijn.be/stops/507736"], ["https://data.delijn.be/stops/505078", "https://data.delijn.be/stops/505340"], ["https://data.delijn.be/stops/403990", "https://data.delijn.be/stops/407066"], ["https://data.delijn.be/stops/403600", "https://data.delijn.be/stops/403616"], ["https://data.delijn.be/stops/105229", "https://data.delijn.be/stops/105237"], ["https://data.delijn.be/stops/507388", "https://data.delijn.be/stops/507462"], ["https://data.delijn.be/stops/302137", "https://data.delijn.be/stops/307529"], ["https://data.delijn.be/stops/202172", "https://data.delijn.be/stops/202495"], ["https://data.delijn.be/stops/109391", "https://data.delijn.be/stops/406880"], ["https://data.delijn.be/stops/201779", "https://data.delijn.be/stops/208246"], ["https://data.delijn.be/stops/105304", "https://data.delijn.be/stops/105307"], ["https://data.delijn.be/stops/306340", "https://data.delijn.be/stops/306341"], ["https://data.delijn.be/stops/504165", "https://data.delijn.be/stops/509165"], ["https://data.delijn.be/stops/107186", "https://data.delijn.be/stops/107191"], ["https://data.delijn.be/stops/201875", "https://data.delijn.be/stops/203018"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/106621"], ["https://data.delijn.be/stops/104847", "https://data.delijn.be/stops/106865"], ["https://data.delijn.be/stops/300379", "https://data.delijn.be/stops/306089"], ["https://data.delijn.be/stops/206765", "https://data.delijn.be/stops/208616"], ["https://data.delijn.be/stops/303369", "https://data.delijn.be/stops/307183"], ["https://data.delijn.be/stops/204196", "https://data.delijn.be/stops/205196"], ["https://data.delijn.be/stops/403147", "https://data.delijn.be/stops/405636"], ["https://data.delijn.be/stops/108608", "https://data.delijn.be/stops/307347"], ["https://data.delijn.be/stops/408179", "https://data.delijn.be/stops/408180"], ["https://data.delijn.be/stops/301681", "https://data.delijn.be/stops/302761"], ["https://data.delijn.be/stops/300675", "https://data.delijn.be/stops/306744"], ["https://data.delijn.be/stops/101088", "https://data.delijn.be/stops/101089"], ["https://data.delijn.be/stops/103353", "https://data.delijn.be/stops/109687"], ["https://data.delijn.be/stops/200039", "https://data.delijn.be/stops/203498"], ["https://data.delijn.be/stops/102746", "https://data.delijn.be/stops/103241"], ["https://data.delijn.be/stops/501133", "https://data.delijn.be/stops/501140"], ["https://data.delijn.be/stops/207312", "https://data.delijn.be/stops/207313"], ["https://data.delijn.be/stops/307154", "https://data.delijn.be/stops/307220"], ["https://data.delijn.be/stops/208251", "https://data.delijn.be/stops/209252"], ["https://data.delijn.be/stops/404967", "https://data.delijn.be/stops/406890"], ["https://data.delijn.be/stops/208862", "https://data.delijn.be/stops/210063"], ["https://data.delijn.be/stops/304791", "https://data.delijn.be/stops/304799"], ["https://data.delijn.be/stops/508048", "https://data.delijn.be/stops/508333"], ["https://data.delijn.be/stops/108989", "https://data.delijn.be/stops/109089"], ["https://data.delijn.be/stops/308406", "https://data.delijn.be/stops/308409"], ["https://data.delijn.be/stops/108286", "https://data.delijn.be/stops/109363"], ["https://data.delijn.be/stops/208267", "https://data.delijn.be/stops/209267"], ["https://data.delijn.be/stops/401139", "https://data.delijn.be/stops/409078"], ["https://data.delijn.be/stops/308534", "https://data.delijn.be/stops/308544"], ["https://data.delijn.be/stops/206095", "https://data.delijn.be/stops/207095"], ["https://data.delijn.be/stops/304567", "https://data.delijn.be/stops/304609"], ["https://data.delijn.be/stops/203313", "https://data.delijn.be/stops/203315"], ["https://data.delijn.be/stops/104962", "https://data.delijn.be/stops/109613"], ["https://data.delijn.be/stops/407423", "https://data.delijn.be/stops/407427"], ["https://data.delijn.be/stops/105784", "https://data.delijn.be/stops/105786"], ["https://data.delijn.be/stops/302241", "https://data.delijn.be/stops/304031"], ["https://data.delijn.be/stops/304868", "https://data.delijn.be/stops/305596"], ["https://data.delijn.be/stops/307110", "https://data.delijn.be/stops/308823"], ["https://data.delijn.be/stops/403595", "https://data.delijn.be/stops/404306"], ["https://data.delijn.be/stops/404441", "https://data.delijn.be/stops/408371"], ["https://data.delijn.be/stops/102174", "https://data.delijn.be/stops/108342"], ["https://data.delijn.be/stops/105282", "https://data.delijn.be/stops/109971"], ["https://data.delijn.be/stops/402021", "https://data.delijn.be/stops/402071"], ["https://data.delijn.be/stops/202547", "https://data.delijn.be/stops/203548"], ["https://data.delijn.be/stops/307207", "https://data.delijn.be/stops/307282"], ["https://data.delijn.be/stops/301269", "https://data.delijn.be/stops/307844"], ["https://data.delijn.be/stops/105464", "https://data.delijn.be/stops/105666"], ["https://data.delijn.be/stops/300119", "https://data.delijn.be/stops/300122"], ["https://data.delijn.be/stops/200725", "https://data.delijn.be/stops/201703"], ["https://data.delijn.be/stops/504364", "https://data.delijn.be/stops/505385"], ["https://data.delijn.be/stops/401549", "https://data.delijn.be/stops/408635"], ["https://data.delijn.be/stops/400552", "https://data.delijn.be/stops/403190"], ["https://data.delijn.be/stops/408150", "https://data.delijn.be/stops/408151"], ["https://data.delijn.be/stops/106925", "https://data.delijn.be/stops/106926"], ["https://data.delijn.be/stops/102764", "https://data.delijn.be/stops/107401"], ["https://data.delijn.be/stops/206482", "https://data.delijn.be/stops/207454"], ["https://data.delijn.be/stops/300348", "https://data.delijn.be/stops/300362"], ["https://data.delijn.be/stops/503567", "https://data.delijn.be/stops/505137"], ["https://data.delijn.be/stops/502443", "https://data.delijn.be/stops/502451"], ["https://data.delijn.be/stops/109052", "https://data.delijn.be/stops/109069"], ["https://data.delijn.be/stops/103676", "https://data.delijn.be/stops/106219"], ["https://data.delijn.be/stops/105763", "https://data.delijn.be/stops/109529"], ["https://data.delijn.be/stops/101969", "https://data.delijn.be/stops/109297"], ["https://data.delijn.be/stops/206361", "https://data.delijn.be/stops/206746"], ["https://data.delijn.be/stops/408660", "https://data.delijn.be/stops/408661"], ["https://data.delijn.be/stops/409364", "https://data.delijn.be/stops/410252"], ["https://data.delijn.be/stops/402191", "https://data.delijn.be/stops/402498"], ["https://data.delijn.be/stops/102077", "https://data.delijn.be/stops/102079"], ["https://data.delijn.be/stops/305585", "https://data.delijn.be/stops/305619"], ["https://data.delijn.be/stops/400758", "https://data.delijn.be/stops/410048"], ["https://data.delijn.be/stops/102504", "https://data.delijn.be/stops/400025"], ["https://data.delijn.be/stops/508160", "https://data.delijn.be/stops/508169"], ["https://data.delijn.be/stops/501411", "https://data.delijn.be/stops/506413"], ["https://data.delijn.be/stops/101974", "https://data.delijn.be/stops/307363"], ["https://data.delijn.be/stops/401440", "https://data.delijn.be/stops/408345"], ["https://data.delijn.be/stops/108089", "https://data.delijn.be/stops/108091"], ["https://data.delijn.be/stops/300704", "https://data.delijn.be/stops/306942"], ["https://data.delijn.be/stops/407744", "https://data.delijn.be/stops/407745"], ["https://data.delijn.be/stops/503710", "https://data.delijn.be/stops/509947"], ["https://data.delijn.be/stops/504176", "https://data.delijn.be/stops/505174"], ["https://data.delijn.be/stops/104464", "https://data.delijn.be/stops/107956"], ["https://data.delijn.be/stops/305656", "https://data.delijn.be/stops/305657"], ["https://data.delijn.be/stops/504214", "https://data.delijn.be/stops/504218"], ["https://data.delijn.be/stops/406165", "https://data.delijn.be/stops/406265"], ["https://data.delijn.be/stops/202743", "https://data.delijn.be/stops/202867"], ["https://data.delijn.be/stops/504797", "https://data.delijn.be/stops/504798"], ["https://data.delijn.be/stops/502695", "https://data.delijn.be/stops/507419"], ["https://data.delijn.be/stops/405489", "https://data.delijn.be/stops/409286"], ["https://data.delijn.be/stops/203637", "https://data.delijn.be/stops/205070"], ["https://data.delijn.be/stops/504045", "https://data.delijn.be/stops/509045"], ["https://data.delijn.be/stops/405478", "https://data.delijn.be/stops/409266"], ["https://data.delijn.be/stops/405077", "https://data.delijn.be/stops/405106"], ["https://data.delijn.be/stops/201929", "https://data.delijn.be/stops/203472"], ["https://data.delijn.be/stops/507326", "https://data.delijn.be/stops/507338"], ["https://data.delijn.be/stops/108078", "https://data.delijn.be/stops/109614"], ["https://data.delijn.be/stops/102637", "https://data.delijn.be/stops/104919"], ["https://data.delijn.be/stops/204025", "https://data.delijn.be/stops/204027"], ["https://data.delijn.be/stops/203975", "https://data.delijn.be/stops/204022"], ["https://data.delijn.be/stops/302161", "https://data.delijn.be/stops/302162"], ["https://data.delijn.be/stops/102824", "https://data.delijn.be/stops/106682"], ["https://data.delijn.be/stops/104869", "https://data.delijn.be/stops/107372"], ["https://data.delijn.be/stops/107556", "https://data.delijn.be/stops/108938"], ["https://data.delijn.be/stops/200984", "https://data.delijn.be/stops/203541"], ["https://data.delijn.be/stops/302426", "https://data.delijn.be/stops/302437"], ["https://data.delijn.be/stops/206278", "https://data.delijn.be/stops/207276"], ["https://data.delijn.be/stops/502465", "https://data.delijn.be/stops/507454"], ["https://data.delijn.be/stops/503551", "https://data.delijn.be/stops/505191"], ["https://data.delijn.be/stops/405646", "https://data.delijn.be/stops/408648"], ["https://data.delijn.be/stops/505328", "https://data.delijn.be/stops/505742"], ["https://data.delijn.be/stops/303147", "https://data.delijn.be/stops/305442"], ["https://data.delijn.be/stops/308238", "https://data.delijn.be/stops/308243"], ["https://data.delijn.be/stops/211132", "https://data.delijn.be/stops/219953"], ["https://data.delijn.be/stops/503621", "https://data.delijn.be/stops/505526"], ["https://data.delijn.be/stops/404381", "https://data.delijn.be/stops/404648"], ["https://data.delijn.be/stops/302980", "https://data.delijn.be/stops/303021"], ["https://data.delijn.be/stops/503884", "https://data.delijn.be/stops/508880"], ["https://data.delijn.be/stops/109330", "https://data.delijn.be/stops/300049"], ["https://data.delijn.be/stops/101951", "https://data.delijn.be/stops/101952"], ["https://data.delijn.be/stops/208495", "https://data.delijn.be/stops/209278"], ["https://data.delijn.be/stops/302111", "https://data.delijn.be/stops/304023"], ["https://data.delijn.be/stops/109177", "https://data.delijn.be/stops/109231"], ["https://data.delijn.be/stops/406844", "https://data.delijn.be/stops/408628"], ["https://data.delijn.be/stops/103611", "https://data.delijn.be/stops/106192"], ["https://data.delijn.be/stops/103217", "https://data.delijn.be/stops/103600"], ["https://data.delijn.be/stops/504252", "https://data.delijn.be/stops/505794"], ["https://data.delijn.be/stops/202614", "https://data.delijn.be/stops/203615"], ["https://data.delijn.be/stops/306097", "https://data.delijn.be/stops/306099"], ["https://data.delijn.be/stops/105484", "https://data.delijn.be/stops/105486"], ["https://data.delijn.be/stops/400084", "https://data.delijn.be/stops/409173"], ["https://data.delijn.be/stops/105575", "https://data.delijn.be/stops/105595"], ["https://data.delijn.be/stops/502653", "https://data.delijn.be/stops/507664"], ["https://data.delijn.be/stops/305532", "https://data.delijn.be/stops/307181"], ["https://data.delijn.be/stops/504195", "https://data.delijn.be/stops/509170"], ["https://data.delijn.be/stops/203938", "https://data.delijn.be/stops/210052"], ["https://data.delijn.be/stops/102217", "https://data.delijn.be/stops/102221"], ["https://data.delijn.be/stops/303935", "https://data.delijn.be/stops/306144"], ["https://data.delijn.be/stops/509115", "https://data.delijn.be/stops/509134"], ["https://data.delijn.be/stops/200718", "https://data.delijn.be/stops/203598"], ["https://data.delijn.be/stops/103275", "https://data.delijn.be/stops/103295"], ["https://data.delijn.be/stops/208246", "https://data.delijn.be/stops/209246"], ["https://data.delijn.be/stops/507196", "https://data.delijn.be/stops/507939"], ["https://data.delijn.be/stops/205386", "https://data.delijn.be/stops/205762"], ["https://data.delijn.be/stops/202456", "https://data.delijn.be/stops/203750"], ["https://data.delijn.be/stops/403703", "https://data.delijn.be/stops/403779"], ["https://data.delijn.be/stops/303700", "https://data.delijn.be/stops/303741"], ["https://data.delijn.be/stops/508517", "https://data.delijn.be/stops/508519"], ["https://data.delijn.be/stops/503546", "https://data.delijn.be/stops/508540"], ["https://data.delijn.be/stops/102881", "https://data.delijn.be/stops/108152"], ["https://data.delijn.be/stops/104696", "https://data.delijn.be/stops/108131"], ["https://data.delijn.be/stops/502562", "https://data.delijn.be/stops/507073"], ["https://data.delijn.be/stops/503263", "https://data.delijn.be/stops/508417"], ["https://data.delijn.be/stops/108339", "https://data.delijn.be/stops/109298"], ["https://data.delijn.be/stops/400536", "https://data.delijn.be/stops/400537"], ["https://data.delijn.be/stops/503927", "https://data.delijn.be/stops/503931"], ["https://data.delijn.be/stops/503026", "https://data.delijn.be/stops/503029"], ["https://data.delijn.be/stops/103004", "https://data.delijn.be/stops/109302"], ["https://data.delijn.be/stops/303772", "https://data.delijn.be/stops/303802"], ["https://data.delijn.be/stops/303504", "https://data.delijn.be/stops/303510"], ["https://data.delijn.be/stops/505393", "https://data.delijn.be/stops/505955"], ["https://data.delijn.be/stops/502052", "https://data.delijn.be/stops/507661"], ["https://data.delijn.be/stops/102544", "https://data.delijn.be/stops/406547"], ["https://data.delijn.be/stops/404827", "https://data.delijn.be/stops/408936"], ["https://data.delijn.be/stops/207595", "https://data.delijn.be/stops/209671"], ["https://data.delijn.be/stops/208573", "https://data.delijn.be/stops/307600"], ["https://data.delijn.be/stops/301681", "https://data.delijn.be/stops/301684"], ["https://data.delijn.be/stops/306721", "https://data.delijn.be/stops/306728"], ["https://data.delijn.be/stops/302728", "https://data.delijn.be/stops/308836"], ["https://data.delijn.be/stops/205100", "https://data.delijn.be/stops/205450"], ["https://data.delijn.be/stops/401846", "https://data.delijn.be/stops/401853"], ["https://data.delijn.be/stops/400315", "https://data.delijn.be/stops/400319"], ["https://data.delijn.be/stops/109021", "https://data.delijn.be/stops/109375"], ["https://data.delijn.be/stops/502529", "https://data.delijn.be/stops/502705"], ["https://data.delijn.be/stops/205156", "https://data.delijn.be/stops/205157"], ["https://data.delijn.be/stops/303276", "https://data.delijn.be/stops/303277"], ["https://data.delijn.be/stops/204062", "https://data.delijn.be/stops/204711"], ["https://data.delijn.be/stops/305951", "https://data.delijn.be/stops/307789"], ["https://data.delijn.be/stops/207936", "https://data.delijn.be/stops/208491"], ["https://data.delijn.be/stops/400105", "https://data.delijn.be/stops/409109"], ["https://data.delijn.be/stops/303855", "https://data.delijn.be/stops/303977"], ["https://data.delijn.be/stops/208664", "https://data.delijn.be/stops/208670"], ["https://data.delijn.be/stops/402702", "https://data.delijn.be/stops/402870"], ["https://data.delijn.be/stops/201213", "https://data.delijn.be/stops/203547"], ["https://data.delijn.be/stops/201753", "https://data.delijn.be/stops/209281"], ["https://data.delijn.be/stops/206617", "https://data.delijn.be/stops/206618"], ["https://data.delijn.be/stops/306200", "https://data.delijn.be/stops/306201"], ["https://data.delijn.be/stops/200679", "https://data.delijn.be/stops/200680"], ["https://data.delijn.be/stops/401345", "https://data.delijn.be/stops/401365"], ["https://data.delijn.be/stops/204505", "https://data.delijn.be/stops/205506"], ["https://data.delijn.be/stops/206484", "https://data.delijn.be/stops/207484"], ["https://data.delijn.be/stops/102991", "https://data.delijn.be/stops/105597"], ["https://data.delijn.be/stops/204069", "https://data.delijn.be/stops/204387"], ["https://data.delijn.be/stops/303197", "https://data.delijn.be/stops/307952"], ["https://data.delijn.be/stops/402842", "https://data.delijn.be/stops/409234"], ["https://data.delijn.be/stops/402870", "https://data.delijn.be/stops/402871"], ["https://data.delijn.be/stops/104778", "https://data.delijn.be/stops/104781"], ["https://data.delijn.be/stops/200683", "https://data.delijn.be/stops/208649"], ["https://data.delijn.be/stops/206496", "https://data.delijn.be/stops/206508"], ["https://data.delijn.be/stops/205095", "https://data.delijn.be/stops/205468"], ["https://data.delijn.be/stops/410142", "https://data.delijn.be/stops/410144"], ["https://data.delijn.be/stops/301320", "https://data.delijn.be/stops/301321"], ["https://data.delijn.be/stops/403055", "https://data.delijn.be/stops/410325"], ["https://data.delijn.be/stops/308727", "https://data.delijn.be/stops/308728"], ["https://data.delijn.be/stops/207104", "https://data.delijn.be/stops/306724"], ["https://data.delijn.be/stops/502562", "https://data.delijn.be/stops/505836"], ["https://data.delijn.be/stops/201142", "https://data.delijn.be/stops/210001"], ["https://data.delijn.be/stops/107395", "https://data.delijn.be/stops/107400"], ["https://data.delijn.be/stops/409395", "https://data.delijn.be/stops/409396"], ["https://data.delijn.be/stops/504804", "https://data.delijn.be/stops/504809"], ["https://data.delijn.be/stops/207357", "https://data.delijn.be/stops/207720"], ["https://data.delijn.be/stops/507539", "https://data.delijn.be/stops/507546"], ["https://data.delijn.be/stops/300277", "https://data.delijn.be/stops/306189"], ["https://data.delijn.be/stops/201425", "https://data.delijn.be/stops/202536"], ["https://data.delijn.be/stops/407944", "https://data.delijn.be/stops/408064"], ["https://data.delijn.be/stops/301766", "https://data.delijn.be/stops/306795"], ["https://data.delijn.be/stops/502471", "https://data.delijn.be/stops/502945"], ["https://data.delijn.be/stops/104355", "https://data.delijn.be/stops/104370"], ["https://data.delijn.be/stops/400602", "https://data.delijn.be/stops/405999"], ["https://data.delijn.be/stops/202380", "https://data.delijn.be/stops/203442"], ["https://data.delijn.be/stops/104703", "https://data.delijn.be/stops/107089"], ["https://data.delijn.be/stops/406680", "https://data.delijn.be/stops/406700"], ["https://data.delijn.be/stops/101341", "https://data.delijn.be/stops/104053"], ["https://data.delijn.be/stops/206814", "https://data.delijn.be/stops/207814"], ["https://data.delijn.be/stops/201380", "https://data.delijn.be/stops/201539"], ["https://data.delijn.be/stops/201582", "https://data.delijn.be/stops/210078"], ["https://data.delijn.be/stops/504234", "https://data.delijn.be/stops/509233"], ["https://data.delijn.be/stops/307856", "https://data.delijn.be/stops/307857"], ["https://data.delijn.be/stops/404347", "https://data.delijn.be/stops/404349"], ["https://data.delijn.be/stops/101928", "https://data.delijn.be/stops/108189"], ["https://data.delijn.be/stops/504181", "https://data.delijn.be/stops/509154"], ["https://data.delijn.be/stops/305229", "https://data.delijn.be/stops/305234"], ["https://data.delijn.be/stops/105989", "https://data.delijn.be/stops/109869"], ["https://data.delijn.be/stops/300139", "https://data.delijn.be/stops/300145"], ["https://data.delijn.be/stops/300531", "https://data.delijn.be/stops/303201"], ["https://data.delijn.be/stops/106082", "https://data.delijn.be/stops/108728"], ["https://data.delijn.be/stops/206309", "https://data.delijn.be/stops/207392"], ["https://data.delijn.be/stops/201470", "https://data.delijn.be/stops/202776"], ["https://data.delijn.be/stops/400985", "https://data.delijn.be/stops/406577"], ["https://data.delijn.be/stops/505691", "https://data.delijn.be/stops/507543"], ["https://data.delijn.be/stops/200958", "https://data.delijn.be/stops/201932"], ["https://data.delijn.be/stops/206846", "https://data.delijn.be/stops/306677"], ["https://data.delijn.be/stops/408748", "https://data.delijn.be/stops/410150"], ["https://data.delijn.be/stops/405701", "https://data.delijn.be/stops/407200"], ["https://data.delijn.be/stops/303868", "https://data.delijn.be/stops/307492"], ["https://data.delijn.be/stops/503582", "https://data.delijn.be/stops/503944"], ["https://data.delijn.be/stops/404544", "https://data.delijn.be/stops/404572"], ["https://data.delijn.be/stops/104034", "https://data.delijn.be/stops/105084"], ["https://data.delijn.be/stops/206758", "https://data.delijn.be/stops/207622"], ["https://data.delijn.be/stops/401104", "https://data.delijn.be/stops/401111"], ["https://data.delijn.be/stops/107832", "https://data.delijn.be/stops/107834"], ["https://data.delijn.be/stops/206199", "https://data.delijn.be/stops/206206"], ["https://data.delijn.be/stops/503819", "https://data.delijn.be/stops/508817"], ["https://data.delijn.be/stops/202466", "https://data.delijn.be/stops/203427"], ["https://data.delijn.be/stops/104019", "https://data.delijn.be/stops/104023"], ["https://data.delijn.be/stops/208682", "https://data.delijn.be/stops/209664"], ["https://data.delijn.be/stops/401046", "https://data.delijn.be/stops/401132"], ["https://data.delijn.be/stops/203255", "https://data.delijn.be/stops/203256"], ["https://data.delijn.be/stops/400796", "https://data.delijn.be/stops/400889"], ["https://data.delijn.be/stops/106895", "https://data.delijn.be/stops/106896"], ["https://data.delijn.be/stops/108819", "https://data.delijn.be/stops/108823"], ["https://data.delijn.be/stops/501242", "https://data.delijn.be/stops/501246"], ["https://data.delijn.be/stops/106969", "https://data.delijn.be/stops/106980"], ["https://data.delijn.be/stops/300459", "https://data.delijn.be/stops/300460"], ["https://data.delijn.be/stops/405090", "https://data.delijn.be/stops/405091"], ["https://data.delijn.be/stops/504879", "https://data.delijn.be/stops/505016"], ["https://data.delijn.be/stops/405302", "https://data.delijn.be/stops/405305"], ["https://data.delijn.be/stops/202714", "https://data.delijn.be/stops/203729"], ["https://data.delijn.be/stops/501668", "https://data.delijn.be/stops/501669"], ["https://data.delijn.be/stops/504721", "https://data.delijn.be/stops/509025"], ["https://data.delijn.be/stops/101146", "https://data.delijn.be/stops/101147"], ["https://data.delijn.be/stops/101909", "https://data.delijn.be/stops/107885"], ["https://data.delijn.be/stops/306814", "https://data.delijn.be/stops/308819"], ["https://data.delijn.be/stops/205103", "https://data.delijn.be/stops/205691"], ["https://data.delijn.be/stops/107030", "https://data.delijn.be/stops/107031"], ["https://data.delijn.be/stops/202490", "https://data.delijn.be/stops/202508"], ["https://data.delijn.be/stops/501072", "https://data.delijn.be/stops/501507"], ["https://data.delijn.be/stops/409604", "https://data.delijn.be/stops/409606"], ["https://data.delijn.be/stops/406632", "https://data.delijn.be/stops/406644"], ["https://data.delijn.be/stops/106347", "https://data.delijn.be/stops/106348"], ["https://data.delijn.be/stops/300123", "https://data.delijn.be/stops/306867"], ["https://data.delijn.be/stops/200783", "https://data.delijn.be/stops/211106"], ["https://data.delijn.be/stops/208069", "https://data.delijn.be/stops/208088"], ["https://data.delijn.be/stops/304324", "https://data.delijn.be/stops/304325"], ["https://data.delijn.be/stops/109629", "https://data.delijn.be/stops/109630"], ["https://data.delijn.be/stops/407962", "https://data.delijn.be/stops/408426"], ["https://data.delijn.be/stops/205144", "https://data.delijn.be/stops/206633"], ["https://data.delijn.be/stops/502497", "https://data.delijn.be/stops/502714"], ["https://data.delijn.be/stops/501388", "https://data.delijn.be/stops/506501"], ["https://data.delijn.be/stops/301160", "https://data.delijn.be/stops/301168"], ["https://data.delijn.be/stops/201751", "https://data.delijn.be/stops/201752"], ["https://data.delijn.be/stops/503906", "https://data.delijn.be/stops/508899"], ["https://data.delijn.be/stops/402344", "https://data.delijn.be/stops/402410"], ["https://data.delijn.be/stops/102313", "https://data.delijn.be/stops/103364"], ["https://data.delijn.be/stops/201954", "https://data.delijn.be/stops/211055"], ["https://data.delijn.be/stops/507043", "https://data.delijn.be/stops/507050"], ["https://data.delijn.be/stops/400856", "https://data.delijn.be/stops/400857"], ["https://data.delijn.be/stops/304524", "https://data.delijn.be/stops/304530"], ["https://data.delijn.be/stops/200851", "https://data.delijn.be/stops/200890"], ["https://data.delijn.be/stops/209187", "https://data.delijn.be/stops/209192"], ["https://data.delijn.be/stops/305153", "https://data.delijn.be/stops/305185"], ["https://data.delijn.be/stops/400712", "https://data.delijn.be/stops/409516"], ["https://data.delijn.be/stops/303889", "https://data.delijn.be/stops/306061"], ["https://data.delijn.be/stops/105668", "https://data.delijn.be/stops/106047"], ["https://data.delijn.be/stops/303501", "https://data.delijn.be/stops/303502"], ["https://data.delijn.be/stops/403902", "https://data.delijn.be/stops/403904"], ["https://data.delijn.be/stops/206596", "https://data.delijn.be/stops/206662"], ["https://data.delijn.be/stops/302585", "https://data.delijn.be/stops/302586"], ["https://data.delijn.be/stops/206858", "https://data.delijn.be/stops/208623"], ["https://data.delijn.be/stops/201748", "https://data.delijn.be/stops/202165"], ["https://data.delijn.be/stops/501158", "https://data.delijn.be/stops/506146"], ["https://data.delijn.be/stops/502719", "https://data.delijn.be/stops/505840"], ["https://data.delijn.be/stops/501019", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/401818", "https://data.delijn.be/stops/401819"], ["https://data.delijn.be/stops/208034", "https://data.delijn.be/stops/208035"], ["https://data.delijn.be/stops/303164", "https://data.delijn.be/stops/303165"], ["https://data.delijn.be/stops/408073", "https://data.delijn.be/stops/410126"], ["https://data.delijn.be/stops/509620", "https://data.delijn.be/stops/509629"], ["https://data.delijn.be/stops/106414", "https://data.delijn.be/stops/106416"], ["https://data.delijn.be/stops/406751", "https://data.delijn.be/stops/406991"], ["https://data.delijn.be/stops/302462", "https://data.delijn.be/stops/308831"], ["https://data.delijn.be/stops/300734", "https://data.delijn.be/stops/307057"], ["https://data.delijn.be/stops/302062", "https://data.delijn.be/stops/302729"], ["https://data.delijn.be/stops/504813", "https://data.delijn.be/stops/508473"], ["https://data.delijn.be/stops/200325", "https://data.delijn.be/stops/211107"], ["https://data.delijn.be/stops/207410", "https://data.delijn.be/stops/306973"], ["https://data.delijn.be/stops/505695", "https://data.delijn.be/stops/508823"], ["https://data.delijn.be/stops/106761", "https://data.delijn.be/stops/106863"], ["https://data.delijn.be/stops/107058", "https://data.delijn.be/stops/107061"], ["https://data.delijn.be/stops/103056", "https://data.delijn.be/stops/107182"], ["https://data.delijn.be/stops/200445", "https://data.delijn.be/stops/201445"], ["https://data.delijn.be/stops/206771", "https://data.delijn.be/stops/208610"], ["https://data.delijn.be/stops/208772", "https://data.delijn.be/stops/209770"], ["https://data.delijn.be/stops/101590", "https://data.delijn.be/stops/104110"], ["https://data.delijn.be/stops/504590", "https://data.delijn.be/stops/505367"], ["https://data.delijn.be/stops/508036", "https://data.delijn.be/stops/508187"], ["https://data.delijn.be/stops/304552", "https://data.delijn.be/stops/304614"], ["https://data.delijn.be/stops/502498", "https://data.delijn.be/stops/509727"], ["https://data.delijn.be/stops/208708", "https://data.delijn.be/stops/209708"], ["https://data.delijn.be/stops/503670", "https://data.delijn.be/stops/505968"], ["https://data.delijn.be/stops/105251", "https://data.delijn.be/stops/105841"], ["https://data.delijn.be/stops/503969", "https://data.delijn.be/stops/508964"], ["https://data.delijn.be/stops/508560", "https://data.delijn.be/stops/508664"], ["https://data.delijn.be/stops/502546", "https://data.delijn.be/stops/507712"], ["https://data.delijn.be/stops/101086", "https://data.delijn.be/stops/105977"], ["https://data.delijn.be/stops/101849", "https://data.delijn.be/stops/106846"], ["https://data.delijn.be/stops/202482", "https://data.delijn.be/stops/206933"], ["https://data.delijn.be/stops/303100", "https://data.delijn.be/stops/304243"], ["https://data.delijn.be/stops/409814", "https://data.delijn.be/stops/409815"], ["https://data.delijn.be/stops/403705", "https://data.delijn.be/stops/403778"], ["https://data.delijn.be/stops/404850", "https://data.delijn.be/stops/404895"], ["https://data.delijn.be/stops/508259", "https://data.delijn.be/stops/508746"], ["https://data.delijn.be/stops/301681", "https://data.delijn.be/stops/306185"], ["https://data.delijn.be/stops/203836", "https://data.delijn.be/stops/208679"], ["https://data.delijn.be/stops/106849", "https://data.delijn.be/stops/106850"], ["https://data.delijn.be/stops/405952", "https://data.delijn.be/stops/405957"], ["https://data.delijn.be/stops/204097", "https://data.delijn.be/stops/204244"], ["https://data.delijn.be/stops/202617", "https://data.delijn.be/stops/203595"], ["https://data.delijn.be/stops/204976", "https://data.delijn.be/stops/218022"], ["https://data.delijn.be/stops/204436", "https://data.delijn.be/stops/205434"], ["https://data.delijn.be/stops/206127", "https://data.delijn.be/stops/207410"], ["https://data.delijn.be/stops/301279", "https://data.delijn.be/stops/301280"], ["https://data.delijn.be/stops/408524", "https://data.delijn.be/stops/408764"], ["https://data.delijn.be/stops/204648", "https://data.delijn.be/stops/205447"], ["https://data.delijn.be/stops/501560", "https://data.delijn.be/stops/506094"], ["https://data.delijn.be/stops/503207", "https://data.delijn.be/stops/508547"], ["https://data.delijn.be/stops/302946", "https://data.delijn.be/stops/302993"], ["https://data.delijn.be/stops/405705", "https://data.delijn.be/stops/408836"], ["https://data.delijn.be/stops/402790", "https://data.delijn.be/stops/402791"], ["https://data.delijn.be/stops/408520", "https://data.delijn.be/stops/408559"], ["https://data.delijn.be/stops/102407", "https://data.delijn.be/stops/405032"], ["https://data.delijn.be/stops/307964", "https://data.delijn.be/stops/307966"], ["https://data.delijn.be/stops/101963", "https://data.delijn.be/stops/109270"], ["https://data.delijn.be/stops/105682", "https://data.delijn.be/stops/105683"], ["https://data.delijn.be/stops/404184", "https://data.delijn.be/stops/404185"], ["https://data.delijn.be/stops/501518", "https://data.delijn.be/stops/506083"], ["https://data.delijn.be/stops/502753", "https://data.delijn.be/stops/509698"], ["https://data.delijn.be/stops/300261", "https://data.delijn.be/stops/300262"], ["https://data.delijn.be/stops/504534", "https://data.delijn.be/stops/509381"], ["https://data.delijn.be/stops/102693", "https://data.delijn.be/stops/105630"], ["https://data.delijn.be/stops/405658", "https://data.delijn.be/stops/410191"], ["https://data.delijn.be/stops/501103", "https://data.delijn.be/stops/506438"], ["https://data.delijn.be/stops/200168", "https://data.delijn.be/stops/202642"], ["https://data.delijn.be/stops/204388", "https://data.delijn.be/stops/205387"], ["https://data.delijn.be/stops/202634", "https://data.delijn.be/stops/203635"], ["https://data.delijn.be/stops/209186", "https://data.delijn.be/stops/209358"], ["https://data.delijn.be/stops/408006", "https://data.delijn.be/stops/408012"], ["https://data.delijn.be/stops/307357", "https://data.delijn.be/stops/307361"], ["https://data.delijn.be/stops/407979", "https://data.delijn.be/stops/408002"], ["https://data.delijn.be/stops/307381", "https://data.delijn.be/stops/308273"], ["https://data.delijn.be/stops/505940", "https://data.delijn.be/stops/509072"], ["https://data.delijn.be/stops/503802", "https://data.delijn.be/stops/508812"], ["https://data.delijn.be/stops/502364", "https://data.delijn.be/stops/507675"], ["https://data.delijn.be/stops/104666", "https://data.delijn.be/stops/108416"], ["https://data.delijn.be/stops/101344", "https://data.delijn.be/stops/108363"], ["https://data.delijn.be/stops/200844", "https://data.delijn.be/stops/200845"], ["https://data.delijn.be/stops/204350", "https://data.delijn.be/stops/205114"], ["https://data.delijn.be/stops/102223", "https://data.delijn.be/stops/105541"], ["https://data.delijn.be/stops/501179", "https://data.delijn.be/stops/506179"], ["https://data.delijn.be/stops/505726", "https://data.delijn.be/stops/507599"], ["https://data.delijn.be/stops/206937", "https://data.delijn.be/stops/207937"], ["https://data.delijn.be/stops/200339", "https://data.delijn.be/stops/211085"], ["https://data.delijn.be/stops/202040", "https://data.delijn.be/stops/203040"], ["https://data.delijn.be/stops/303332", "https://data.delijn.be/stops/303344"], ["https://data.delijn.be/stops/102441", "https://data.delijn.be/stops/102602"], ["https://data.delijn.be/stops/209184", "https://data.delijn.be/stops/218019"], ["https://data.delijn.be/stops/403750", "https://data.delijn.be/stops/403762"], ["https://data.delijn.be/stops/105033", "https://data.delijn.be/stops/106714"], ["https://data.delijn.be/stops/503375", "https://data.delijn.be/stops/508419"], ["https://data.delijn.be/stops/202478", "https://data.delijn.be/stops/203477"], ["https://data.delijn.be/stops/303274", "https://data.delijn.be/stops/303277"], ["https://data.delijn.be/stops/201047", "https://data.delijn.be/stops/201952"], ["https://data.delijn.be/stops/102009", "https://data.delijn.be/stops/105976"], ["https://data.delijn.be/stops/505926", "https://data.delijn.be/stops/509240"], ["https://data.delijn.be/stops/201135", "https://data.delijn.be/stops/201409"], ["https://data.delijn.be/stops/101935", "https://data.delijn.be/stops/105835"], ["https://data.delijn.be/stops/406093", "https://data.delijn.be/stops/406126"], ["https://data.delijn.be/stops/305750", "https://data.delijn.be/stops/305751"], ["https://data.delijn.be/stops/108901", "https://data.delijn.be/stops/108902"], ["https://data.delijn.be/stops/101884", "https://data.delijn.be/stops/104560"], ["https://data.delijn.be/stops/405631", "https://data.delijn.be/stops/407774"], ["https://data.delijn.be/stops/108386", "https://data.delijn.be/stops/108387"], ["https://data.delijn.be/stops/409387", "https://data.delijn.be/stops/409403"], ["https://data.delijn.be/stops/405211", "https://data.delijn.be/stops/409403"], ["https://data.delijn.be/stops/204308", "https://data.delijn.be/stops/205308"], ["https://data.delijn.be/stops/104096", "https://data.delijn.be/stops/107865"], ["https://data.delijn.be/stops/202832", "https://data.delijn.be/stops/208656"], ["https://data.delijn.be/stops/305269", "https://data.delijn.be/stops/305270"], ["https://data.delijn.be/stops/105681", "https://data.delijn.be/stops/106755"], ["https://data.delijn.be/stops/406092", "https://data.delijn.be/stops/406119"], ["https://data.delijn.be/stops/402106", "https://data.delijn.be/stops/402362"], ["https://data.delijn.be/stops/301483", "https://data.delijn.be/stops/301488"], ["https://data.delijn.be/stops/504058", "https://data.delijn.be/stops/505305"], ["https://data.delijn.be/stops/503726", "https://data.delijn.be/stops/504968"], ["https://data.delijn.be/stops/209948", "https://data.delijn.be/stops/211106"], ["https://data.delijn.be/stops/200885", "https://data.delijn.be/stops/203063"], ["https://data.delijn.be/stops/400236", "https://data.delijn.be/stops/400237"], ["https://data.delijn.be/stops/504565", "https://data.delijn.be/stops/508128"], ["https://data.delijn.be/stops/408268", "https://data.delijn.be/stops/408278"], ["https://data.delijn.be/stops/401189", "https://data.delijn.be/stops/401320"], ["https://data.delijn.be/stops/218008", "https://data.delijn.be/stops/219008"], ["https://data.delijn.be/stops/305145", "https://data.delijn.be/stops/307534"], ["https://data.delijn.be/stops/308454", "https://data.delijn.be/stops/308463"], ["https://data.delijn.be/stops/500208", "https://data.delijn.be/stops/504153"], ["https://data.delijn.be/stops/200315", "https://data.delijn.be/stops/211026"], ["https://data.delijn.be/stops/504585", "https://data.delijn.be/stops/505537"], ["https://data.delijn.be/stops/504513", "https://data.delijn.be/stops/504637"], ["https://data.delijn.be/stops/301108", "https://data.delijn.be/stops/301117"], ["https://data.delijn.be/stops/300300", "https://data.delijn.be/stops/304255"], ["https://data.delijn.be/stops/200766", "https://data.delijn.be/stops/209317"], ["https://data.delijn.be/stops/402126", "https://data.delijn.be/stops/402129"], ["https://data.delijn.be/stops/208359", "https://data.delijn.be/stops/209955"], ["https://data.delijn.be/stops/206103", "https://data.delijn.be/stops/206843"], ["https://data.delijn.be/stops/208086", "https://data.delijn.be/stops/209086"], ["https://data.delijn.be/stops/407271", "https://data.delijn.be/stops/407559"], ["https://data.delijn.be/stops/403642", "https://data.delijn.be/stops/403644"], ["https://data.delijn.be/stops/200350", "https://data.delijn.be/stops/201351"], ["https://data.delijn.be/stops/301973", "https://data.delijn.be/stops/302920"], ["https://data.delijn.be/stops/504168", "https://data.delijn.be/stops/509168"], ["https://data.delijn.be/stops/302928", "https://data.delijn.be/stops/303998"], ["https://data.delijn.be/stops/300427", "https://data.delijn.be/stops/300429"], ["https://data.delijn.be/stops/504011", "https://data.delijn.be/stops/505813"], ["https://data.delijn.be/stops/108946", "https://data.delijn.be/stops/109224"], ["https://data.delijn.be/stops/407001", "https://data.delijn.be/stops/408025"], ["https://data.delijn.be/stops/302302", "https://data.delijn.be/stops/303468"], ["https://data.delijn.be/stops/403095", "https://data.delijn.be/stops/403507"], ["https://data.delijn.be/stops/106645", "https://data.delijn.be/stops/109672"], ["https://data.delijn.be/stops/101472", "https://data.delijn.be/stops/101473"], ["https://data.delijn.be/stops/105228", "https://data.delijn.be/stops/107995"], ["https://data.delijn.be/stops/105247", "https://data.delijn.be/stops/105843"], ["https://data.delijn.be/stops/407905", "https://data.delijn.be/stops/408148"], ["https://data.delijn.be/stops/303195", "https://data.delijn.be/stops/303213"], ["https://data.delijn.be/stops/402134", "https://data.delijn.be/stops/402437"], ["https://data.delijn.be/stops/109832", "https://data.delijn.be/stops/109952"], ["https://data.delijn.be/stops/401136", "https://data.delijn.be/stops/403749"], ["https://data.delijn.be/stops/102265", "https://data.delijn.be/stops/107475"], ["https://data.delijn.be/stops/102984", "https://data.delijn.be/stops/105224"], ["https://data.delijn.be/stops/306947", "https://data.delijn.be/stops/306949"], ["https://data.delijn.be/stops/507716", "https://data.delijn.be/stops/508975"], ["https://data.delijn.be/stops/208068", "https://data.delijn.be/stops/208069"], ["https://data.delijn.be/stops/102820", "https://data.delijn.be/stops/104815"], ["https://data.delijn.be/stops/305618", "https://data.delijn.be/stops/305827"], ["https://data.delijn.be/stops/206969", "https://data.delijn.be/stops/301427"], ["https://data.delijn.be/stops/401441", "https://data.delijn.be/stops/404279"], ["https://data.delijn.be/stops/208069", "https://data.delijn.be/stops/208241"], ["https://data.delijn.be/stops/104599", "https://data.delijn.be/stops/109749"], ["https://data.delijn.be/stops/503260", "https://data.delijn.be/stops/508260"], ["https://data.delijn.be/stops/505314", "https://data.delijn.be/stops/505987"], ["https://data.delijn.be/stops/503866", "https://data.delijn.be/stops/508607"], ["https://data.delijn.be/stops/304891", "https://data.delijn.be/stops/304904"], ["https://data.delijn.be/stops/102534", "https://data.delijn.be/stops/405087"], ["https://data.delijn.be/stops/501222", "https://data.delijn.be/stops/505355"], ["https://data.delijn.be/stops/102949", "https://data.delijn.be/stops/106589"], ["https://data.delijn.be/stops/504096", "https://data.delijn.be/stops/505196"], ["https://data.delijn.be/stops/208217", "https://data.delijn.be/stops/209771"], ["https://data.delijn.be/stops/505414", "https://data.delijn.be/stops/509018"], ["https://data.delijn.be/stops/407460", "https://data.delijn.be/stops/407523"], ["https://data.delijn.be/stops/204298", "https://data.delijn.be/stops/205352"], ["https://data.delijn.be/stops/305023", "https://data.delijn.be/stops/305041"], ["https://data.delijn.be/stops/106613", "https://data.delijn.be/stops/106614"], ["https://data.delijn.be/stops/504373", "https://data.delijn.be/stops/505985"], ["https://data.delijn.be/stops/403321", "https://data.delijn.be/stops/410349"], ["https://data.delijn.be/stops/109835", "https://data.delijn.be/stops/109952"], ["https://data.delijn.be/stops/200106", "https://data.delijn.be/stops/201428"], ["https://data.delijn.be/stops/305738", "https://data.delijn.be/stops/305740"], ["https://data.delijn.be/stops/108932", "https://data.delijn.be/stops/108934"], ["https://data.delijn.be/stops/400496", "https://data.delijn.be/stops/408802"], ["https://data.delijn.be/stops/106452", "https://data.delijn.be/stops/106460"], ["https://data.delijn.be/stops/304203", "https://data.delijn.be/stops/305353"], ["https://data.delijn.be/stops/202729", "https://data.delijn.be/stops/203065"], ["https://data.delijn.be/stops/204397", "https://data.delijn.be/stops/205443"], ["https://data.delijn.be/stops/503805", "https://data.delijn.be/stops/509588"], ["https://data.delijn.be/stops/304875", "https://data.delijn.be/stops/308832"], ["https://data.delijn.be/stops/103701", "https://data.delijn.be/stops/104636"], ["https://data.delijn.be/stops/301034", "https://data.delijn.be/stops/301035"], ["https://data.delijn.be/stops/104680", "https://data.delijn.be/stops/108055"], ["https://data.delijn.be/stops/202957", "https://data.delijn.be/stops/203958"], ["https://data.delijn.be/stops/305736", "https://data.delijn.be/stops/306328"], ["https://data.delijn.be/stops/206515", "https://data.delijn.be/stops/206753"], ["https://data.delijn.be/stops/403960", "https://data.delijn.be/stops/403971"], ["https://data.delijn.be/stops/207101", "https://data.delijn.be/stops/207104"], ["https://data.delijn.be/stops/504217", "https://data.delijn.be/stops/509217"], ["https://data.delijn.be/stops/401019", "https://data.delijn.be/stops/403742"], ["https://data.delijn.be/stops/503049", "https://data.delijn.be/stops/509845"], ["https://data.delijn.be/stops/200974", "https://data.delijn.be/stops/209581"], ["https://data.delijn.be/stops/501475", "https://data.delijn.be/stops/506419"], ["https://data.delijn.be/stops/200404", "https://data.delijn.be/stops/200405"], ["https://data.delijn.be/stops/401157", "https://data.delijn.be/stops/409426"], ["https://data.delijn.be/stops/201304", "https://data.delijn.be/stops/203760"], ["https://data.delijn.be/stops/105373", "https://data.delijn.be/stops/108761"], ["https://data.delijn.be/stops/301856", "https://data.delijn.be/stops/302013"], ["https://data.delijn.be/stops/509014", "https://data.delijn.be/stops/509515"], ["https://data.delijn.be/stops/501063", "https://data.delijn.be/stops/501405"], ["https://data.delijn.be/stops/201902", "https://data.delijn.be/stops/203473"], ["https://data.delijn.be/stops/503572", "https://data.delijn.be/stops/503574"], ["https://data.delijn.be/stops/502914", "https://data.delijn.be/stops/507017"], ["https://data.delijn.be/stops/302491", "https://data.delijn.be/stops/302501"], ["https://data.delijn.be/stops/405797", "https://data.delijn.be/stops/405836"], ["https://data.delijn.be/stops/303228", "https://data.delijn.be/stops/307055"], ["https://data.delijn.be/stops/105122", "https://data.delijn.be/stops/108889"], ["https://data.delijn.be/stops/302017", "https://data.delijn.be/stops/306379"], ["https://data.delijn.be/stops/504426", "https://data.delijn.be/stops/509426"], ["https://data.delijn.be/stops/109063", "https://data.delijn.be/stops/405804"], ["https://data.delijn.be/stops/304423", "https://data.delijn.be/stops/307420"], ["https://data.delijn.be/stops/402385", "https://data.delijn.be/stops/402451"], ["https://data.delijn.be/stops/204197", "https://data.delijn.be/stops/205197"], ["https://data.delijn.be/stops/502022", "https://data.delijn.be/stops/502247"], ["https://data.delijn.be/stops/301607", "https://data.delijn.be/stops/304518"], ["https://data.delijn.be/stops/101895", "https://data.delijn.be/stops/102659"], ["https://data.delijn.be/stops/102927", "https://data.delijn.be/stops/103592"], ["https://data.delijn.be/stops/206013", "https://data.delijn.be/stops/206385"], ["https://data.delijn.be/stops/408537", "https://data.delijn.be/stops/408814"], ["https://data.delijn.be/stops/405947", "https://data.delijn.be/stops/405953"], ["https://data.delijn.be/stops/204248", "https://data.delijn.be/stops/205248"], ["https://data.delijn.be/stops/405438", "https://data.delijn.be/stops/408775"], ["https://data.delijn.be/stops/302238", "https://data.delijn.be/stops/303997"], ["https://data.delijn.be/stops/501386", "https://data.delijn.be/stops/501388"], ["https://data.delijn.be/stops/108281", "https://data.delijn.be/stops/108283"], ["https://data.delijn.be/stops/505425", "https://data.delijn.be/stops/505426"], ["https://data.delijn.be/stops/104733", "https://data.delijn.be/stops/204273"], ["https://data.delijn.be/stops/101080", "https://data.delijn.be/stops/103575"], ["https://data.delijn.be/stops/301991", "https://data.delijn.be/stops/304564"], ["https://data.delijn.be/stops/403415", "https://data.delijn.be/stops/403467"], ["https://data.delijn.be/stops/305058", "https://data.delijn.be/stops/305062"], ["https://data.delijn.be/stops/502385", "https://data.delijn.be/stops/502652"], ["https://data.delijn.be/stops/201457", "https://data.delijn.be/stops/201737"], ["https://data.delijn.be/stops/200087", "https://data.delijn.be/stops/202208"], ["https://data.delijn.be/stops/503435", "https://data.delijn.be/stops/503535"], ["https://data.delijn.be/stops/101808", "https://data.delijn.be/stops/103723"], ["https://data.delijn.be/stops/202519", "https://data.delijn.be/stops/203525"], ["https://data.delijn.be/stops/105207", "https://data.delijn.be/stops/108063"], ["https://data.delijn.be/stops/400102", "https://data.delijn.be/stops/409149"], ["https://data.delijn.be/stops/200802", "https://data.delijn.be/stops/505724"], ["https://data.delijn.be/stops/500955", "https://data.delijn.be/stops/500956"], ["https://data.delijn.be/stops/301004", "https://data.delijn.be/stops/307043"], ["https://data.delijn.be/stops/400264", "https://data.delijn.be/stops/400639"], ["https://data.delijn.be/stops/107315", "https://data.delijn.be/stops/109090"], ["https://data.delijn.be/stops/105557", "https://data.delijn.be/stops/105558"], ["https://data.delijn.be/stops/302809", "https://data.delijn.be/stops/305531"], ["https://data.delijn.be/stops/107664", "https://data.delijn.be/stops/107699"], ["https://data.delijn.be/stops/102393", "https://data.delijn.be/stops/107113"], ["https://data.delijn.be/stops/306269", "https://data.delijn.be/stops/306271"], ["https://data.delijn.be/stops/502768", "https://data.delijn.be/stops/507768"], ["https://data.delijn.be/stops/206032", "https://data.delijn.be/stops/206033"], ["https://data.delijn.be/stops/209057", "https://data.delijn.be/stops/209058"], ["https://data.delijn.be/stops/301460", "https://data.delijn.be/stops/307930"], ["https://data.delijn.be/stops/101518", "https://data.delijn.be/stops/101537"], ["https://data.delijn.be/stops/302255", "https://data.delijn.be/stops/302264"], ["https://data.delijn.be/stops/206598", "https://data.delijn.be/stops/207517"], ["https://data.delijn.be/stops/304983", "https://data.delijn.be/stops/308030"], ["https://data.delijn.be/stops/503831", "https://data.delijn.be/stops/508831"], ["https://data.delijn.be/stops/503218", "https://data.delijn.be/stops/508983"], ["https://data.delijn.be/stops/406836", "https://data.delijn.be/stops/409646"], ["https://data.delijn.be/stops/501363", "https://data.delijn.be/stops/501443"], ["https://data.delijn.be/stops/105317", "https://data.delijn.be/stops/105318"], ["https://data.delijn.be/stops/305875", "https://data.delijn.be/stops/305876"], ["https://data.delijn.be/stops/504085", "https://data.delijn.be/stops/504846"], ["https://data.delijn.be/stops/106726", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/204001", "https://data.delijn.be/stops/204022"], ["https://data.delijn.be/stops/206497", "https://data.delijn.be/stops/206504"], ["https://data.delijn.be/stops/206822", "https://data.delijn.be/stops/207481"], ["https://data.delijn.be/stops/201920", "https://data.delijn.be/stops/202749"], ["https://data.delijn.be/stops/104971", "https://data.delijn.be/stops/105364"], ["https://data.delijn.be/stops/101370", "https://data.delijn.be/stops/102320"], ["https://data.delijn.be/stops/104493", "https://data.delijn.be/stops/105160"], ["https://data.delijn.be/stops/103167", "https://data.delijn.be/stops/108673"], ["https://data.delijn.be/stops/104803", "https://data.delijn.be/stops/109690"], ["https://data.delijn.be/stops/408700", "https://data.delijn.be/stops/408701"], ["https://data.delijn.be/stops/300822", "https://data.delijn.be/stops/305406"], ["https://data.delijn.be/stops/107811", "https://data.delijn.be/stops/107812"], ["https://data.delijn.be/stops/200664", "https://data.delijn.be/stops/201841"], ["https://data.delijn.be/stops/504010", "https://data.delijn.be/stops/509009"], ["https://data.delijn.be/stops/208076", "https://data.delijn.be/stops/208078"], ["https://data.delijn.be/stops/204019", "https://data.delijn.be/stops/204828"], ["https://data.delijn.be/stops/301654", "https://data.delijn.be/stops/307753"], ["https://data.delijn.be/stops/403065", "https://data.delijn.be/stops/403121"], ["https://data.delijn.be/stops/109907", "https://data.delijn.be/stops/109908"], ["https://data.delijn.be/stops/502199", "https://data.delijn.be/stops/507196"], ["https://data.delijn.be/stops/104964", "https://data.delijn.be/stops/109793"], ["https://data.delijn.be/stops/403930", "https://data.delijn.be/stops/403931"], ["https://data.delijn.be/stops/305609", "https://data.delijn.be/stops/308695"], ["https://data.delijn.be/stops/301580", "https://data.delijn.be/stops/301581"], ["https://data.delijn.be/stops/301191", "https://data.delijn.be/stops/301266"], ["https://data.delijn.be/stops/505950", "https://data.delijn.be/stops/505966"], ["https://data.delijn.be/stops/200184", "https://data.delijn.be/stops/203757"], ["https://data.delijn.be/stops/504480", "https://data.delijn.be/stops/509480"], ["https://data.delijn.be/stops/103231", "https://data.delijn.be/stops/109402"], ["https://data.delijn.be/stops/201430", "https://data.delijn.be/stops/201431"], ["https://data.delijn.be/stops/304520", "https://data.delijn.be/stops/306206"], ["https://data.delijn.be/stops/301384", "https://data.delijn.be/stops/306645"], ["https://data.delijn.be/stops/202886", "https://data.delijn.be/stops/203885"], ["https://data.delijn.be/stops/300297", "https://data.delijn.be/stops/306007"], ["https://data.delijn.be/stops/308494", "https://data.delijn.be/stops/308495"], ["https://data.delijn.be/stops/101200", "https://data.delijn.be/stops/105735"], ["https://data.delijn.be/stops/400782", "https://data.delijn.be/stops/400818"], ["https://data.delijn.be/stops/202793", "https://data.delijn.be/stops/203793"], ["https://data.delijn.be/stops/102865", "https://data.delijn.be/stops/104250"], ["https://data.delijn.be/stops/405782", "https://data.delijn.be/stops/405876"], ["https://data.delijn.be/stops/200306", "https://data.delijn.be/stops/202198"], ["https://data.delijn.be/stops/209227", "https://data.delijn.be/stops/209233"], ["https://data.delijn.be/stops/403808", "https://data.delijn.be/stops/408596"], ["https://data.delijn.be/stops/503588", "https://data.delijn.be/stops/508587"], ["https://data.delijn.be/stops/501481", "https://data.delijn.be/stops/505035"], ["https://data.delijn.be/stops/201917", "https://data.delijn.be/stops/207835"], ["https://data.delijn.be/stops/103058", "https://data.delijn.be/stops/103470"], ["https://data.delijn.be/stops/301378", "https://data.delijn.be/stops/301382"], ["https://data.delijn.be/stops/207936", "https://data.delijn.be/stops/209142"], ["https://data.delijn.be/stops/106640", "https://data.delijn.be/stops/106647"], ["https://data.delijn.be/stops/505739", "https://data.delijn.be/stops/507482"], ["https://data.delijn.be/stops/403559", "https://data.delijn.be/stops/410215"], ["https://data.delijn.be/stops/304011", "https://data.delijn.be/stops/304100"], ["https://data.delijn.be/stops/208602", "https://data.delijn.be/stops/307593"], ["https://data.delijn.be/stops/501061", "https://data.delijn.be/stops/506061"], ["https://data.delijn.be/stops/300661", "https://data.delijn.be/stops/301918"], ["https://data.delijn.be/stops/403246", "https://data.delijn.be/stops/403527"], ["https://data.delijn.be/stops/104142", "https://data.delijn.be/stops/305788"], ["https://data.delijn.be/stops/202040", "https://data.delijn.be/stops/202041"], ["https://data.delijn.be/stops/201470", "https://data.delijn.be/stops/203460"], ["https://data.delijn.be/stops/206219", "https://data.delijn.be/stops/217006"], ["https://data.delijn.be/stops/105833", "https://data.delijn.be/stops/105834"], ["https://data.delijn.be/stops/202103", "https://data.delijn.be/stops/203103"], ["https://data.delijn.be/stops/406993", "https://data.delijn.be/stops/409026"], ["https://data.delijn.be/stops/201658", "https://data.delijn.be/stops/208329"], ["https://data.delijn.be/stops/406635", "https://data.delijn.be/stops/407506"], ["https://data.delijn.be/stops/301833", "https://data.delijn.be/stops/308603"], ["https://data.delijn.be/stops/408804", "https://data.delijn.be/stops/408806"], ["https://data.delijn.be/stops/101189", "https://data.delijn.be/stops/101655"], ["https://data.delijn.be/stops/103969", "https://data.delijn.be/stops/104857"], ["https://data.delijn.be/stops/301945", "https://data.delijn.be/stops/301946"], ["https://data.delijn.be/stops/105458", "https://data.delijn.be/stops/105459"], ["https://data.delijn.be/stops/304028", "https://data.delijn.be/stops/304109"], ["https://data.delijn.be/stops/109089", "https://data.delijn.be/stops/109092"], ["https://data.delijn.be/stops/400650", "https://data.delijn.be/stops/400653"], ["https://data.delijn.be/stops/204214", "https://data.delijn.be/stops/205214"], ["https://data.delijn.be/stops/507034", "https://data.delijn.be/stops/507037"], ["https://data.delijn.be/stops/102833", "https://data.delijn.be/stops/103744"], ["https://data.delijn.be/stops/305243", "https://data.delijn.be/stops/305303"], ["https://data.delijn.be/stops/105891", "https://data.delijn.be/stops/105893"], ["https://data.delijn.be/stops/208352", "https://data.delijn.be/stops/209352"], ["https://data.delijn.be/stops/107692", "https://data.delijn.be/stops/109719"], ["https://data.delijn.be/stops/405959", "https://data.delijn.be/stops/308153"], ["https://data.delijn.be/stops/217007", "https://data.delijn.be/stops/217010"], ["https://data.delijn.be/stops/409676", "https://data.delijn.be/stops/409683"], ["https://data.delijn.be/stops/202206", "https://data.delijn.be/stops/203206"], ["https://data.delijn.be/stops/200072", "https://data.delijn.be/stops/211046"], ["https://data.delijn.be/stops/502390", "https://data.delijn.be/stops/502766"], ["https://data.delijn.be/stops/504780", "https://data.delijn.be/stops/508231"], ["https://data.delijn.be/stops/501484", "https://data.delijn.be/stops/501682"], ["https://data.delijn.be/stops/201467", "https://data.delijn.be/stops/201672"], ["https://data.delijn.be/stops/201387", "https://data.delijn.be/stops/201392"], ["https://data.delijn.be/stops/103582", "https://data.delijn.be/stops/109412"], ["https://data.delijn.be/stops/204420", "https://data.delijn.be/stops/204421"], ["https://data.delijn.be/stops/502414", "https://data.delijn.be/stops/507432"], ["https://data.delijn.be/stops/208370", "https://data.delijn.be/stops/209370"], ["https://data.delijn.be/stops/407701", "https://data.delijn.be/stops/407705"], ["https://data.delijn.be/stops/503386", "https://data.delijn.be/stops/509760"], ["https://data.delijn.be/stops/205314", "https://data.delijn.be/stops/205676"], ["https://data.delijn.be/stops/109351", "https://data.delijn.be/stops/307429"], ["https://data.delijn.be/stops/308448", "https://data.delijn.be/stops/308508"], ["https://data.delijn.be/stops/101972", "https://data.delijn.be/stops/109294"], ["https://data.delijn.be/stops/301974", "https://data.delijn.be/stops/301975"], ["https://data.delijn.be/stops/405385", "https://data.delijn.be/stops/302844"], ["https://data.delijn.be/stops/202385", "https://data.delijn.be/stops/203385"], ["https://data.delijn.be/stops/108655", "https://data.delijn.be/stops/108955"], ["https://data.delijn.be/stops/402383", "https://data.delijn.be/stops/402454"], ["https://data.delijn.be/stops/108072", "https://data.delijn.be/stops/108459"], ["https://data.delijn.be/stops/304225", "https://data.delijn.be/stops/304841"], ["https://data.delijn.be/stops/303955", "https://data.delijn.be/stops/303960"], ["https://data.delijn.be/stops/303983", "https://data.delijn.be/stops/304287"], ["https://data.delijn.be/stops/102247", "https://data.delijn.be/stops/103302"], ["https://data.delijn.be/stops/507015", "https://data.delijn.be/stops/507915"], ["https://data.delijn.be/stops/504094", "https://data.delijn.be/stops/505194"], ["https://data.delijn.be/stops/300848", "https://data.delijn.be/stops/301565"], ["https://data.delijn.be/stops/304667", "https://data.delijn.be/stops/304669"], ["https://data.delijn.be/stops/400168", "https://data.delijn.be/stops/410339"], ["https://data.delijn.be/stops/305079", "https://data.delijn.be/stops/305081"], ["https://data.delijn.be/stops/201855", "https://data.delijn.be/stops/210039"], ["https://data.delijn.be/stops/200224", "https://data.delijn.be/stops/201445"], ["https://data.delijn.be/stops/401066", "https://data.delijn.be/stops/407171"], ["https://data.delijn.be/stops/303891", "https://data.delijn.be/stops/305275"], ["https://data.delijn.be/stops/407644", "https://data.delijn.be/stops/407645"], ["https://data.delijn.be/stops/509247", "https://data.delijn.be/stops/509593"], ["https://data.delijn.be/stops/501109", "https://data.delijn.be/stops/506109"], ["https://data.delijn.be/stops/200731", "https://data.delijn.be/stops/202589"], ["https://data.delijn.be/stops/106597", "https://data.delijn.be/stops/106600"], ["https://data.delijn.be/stops/107483", "https://data.delijn.be/stops/107517"], ["https://data.delijn.be/stops/408495", "https://data.delijn.be/stops/408497"], ["https://data.delijn.be/stops/101673", "https://data.delijn.be/stops/405132"], ["https://data.delijn.be/stops/101501", "https://data.delijn.be/stops/101502"], ["https://data.delijn.be/stops/200624", "https://data.delijn.be/stops/201051"], ["https://data.delijn.be/stops/506353", "https://data.delijn.be/stops/506360"], ["https://data.delijn.be/stops/200690", "https://data.delijn.be/stops/208644"], ["https://data.delijn.be/stops/105161", "https://data.delijn.be/stops/105166"], ["https://data.delijn.be/stops/101657", "https://data.delijn.be/stops/101660"], ["https://data.delijn.be/stops/504083", "https://data.delijn.be/stops/504610"], ["https://data.delijn.be/stops/201060", "https://data.delijn.be/stops/211058"], ["https://data.delijn.be/stops/502226", "https://data.delijn.be/stops/507236"], ["https://data.delijn.be/stops/301283", "https://data.delijn.be/stops/301292"], ["https://data.delijn.be/stops/206774", "https://data.delijn.be/stops/208026"], ["https://data.delijn.be/stops/502200", "https://data.delijn.be/stops/509944"], ["https://data.delijn.be/stops/102658", "https://data.delijn.be/stops/106360"], ["https://data.delijn.be/stops/102392", "https://data.delijn.be/stops/102393"], ["https://data.delijn.be/stops/502505", "https://data.delijn.be/stops/505337"], ["https://data.delijn.be/stops/109664", "https://data.delijn.be/stops/109715"], ["https://data.delijn.be/stops/208429", "https://data.delijn.be/stops/209214"], ["https://data.delijn.be/stops/109445", "https://data.delijn.be/stops/109448"], ["https://data.delijn.be/stops/201353", "https://data.delijn.be/stops/201842"], ["https://data.delijn.be/stops/200367", "https://data.delijn.be/stops/201141"], ["https://data.delijn.be/stops/407377", "https://data.delijn.be/stops/407386"], ["https://data.delijn.be/stops/404827", "https://data.delijn.be/stops/409431"], ["https://data.delijn.be/stops/105702", "https://data.delijn.be/stops/105704"], ["https://data.delijn.be/stops/300084", "https://data.delijn.be/stops/306866"], ["https://data.delijn.be/stops/210014", "https://data.delijn.be/stops/502289"], ["https://data.delijn.be/stops/208673", "https://data.delijn.be/stops/209516"], ["https://data.delijn.be/stops/504198", "https://data.delijn.be/stops/504262"], ["https://data.delijn.be/stops/206224", "https://data.delijn.be/stops/300196"], ["https://data.delijn.be/stops/401536", "https://data.delijn.be/stops/401537"], ["https://data.delijn.be/stops/105577", "https://data.delijn.be/stops/106358"], ["https://data.delijn.be/stops/507693", "https://data.delijn.be/stops/508012"], ["https://data.delijn.be/stops/106753", "https://data.delijn.be/stops/109528"], ["https://data.delijn.be/stops/402105", "https://data.delijn.be/stops/402268"], ["https://data.delijn.be/stops/502551", "https://data.delijn.be/stops/507553"], ["https://data.delijn.be/stops/106362", "https://data.delijn.be/stops/106363"], ["https://data.delijn.be/stops/404862", "https://data.delijn.be/stops/404868"], ["https://data.delijn.be/stops/404016", "https://data.delijn.be/stops/404017"], ["https://data.delijn.be/stops/301141", "https://data.delijn.be/stops/302881"], ["https://data.delijn.be/stops/102673", "https://data.delijn.be/stops/103497"], ["https://data.delijn.be/stops/401988", "https://data.delijn.be/stops/403080"], ["https://data.delijn.be/stops/509209", "https://data.delijn.be/stops/509220"], ["https://data.delijn.be/stops/501600", "https://data.delijn.be/stops/505167"], ["https://data.delijn.be/stops/200256", "https://data.delijn.be/stops/210256"], ["https://data.delijn.be/stops/201102", "https://data.delijn.be/stops/211001"], ["https://data.delijn.be/stops/401788", "https://data.delijn.be/stops/401789"], ["https://data.delijn.be/stops/306940", "https://data.delijn.be/stops/306941"], ["https://data.delijn.be/stops/503586", "https://data.delijn.be/stops/508589"], ["https://data.delijn.be/stops/101014", "https://data.delijn.be/stops/102937"], ["https://data.delijn.be/stops/405830", "https://data.delijn.be/stops/405831"], ["https://data.delijn.be/stops/403256", "https://data.delijn.be/stops/403257"], ["https://data.delijn.be/stops/503503", "https://data.delijn.be/stops/508497"], ["https://data.delijn.be/stops/204152", "https://data.delijn.be/stops/205595"], ["https://data.delijn.be/stops/500940", "https://data.delijn.be/stops/504942"], ["https://data.delijn.be/stops/401391", "https://data.delijn.be/stops/402820"], ["https://data.delijn.be/stops/101671", "https://data.delijn.be/stops/101672"], ["https://data.delijn.be/stops/402863", "https://data.delijn.be/stops/408076"], ["https://data.delijn.be/stops/301896", "https://data.delijn.be/stops/304268"], ["https://data.delijn.be/stops/303046", "https://data.delijn.be/stops/305438"], ["https://data.delijn.be/stops/204084", "https://data.delijn.be/stops/205083"], ["https://data.delijn.be/stops/408232", "https://data.delijn.be/stops/408235"], ["https://data.delijn.be/stops/101176", "https://data.delijn.be/stops/101179"], ["https://data.delijn.be/stops/204464", "https://data.delijn.be/stops/204476"], ["https://data.delijn.be/stops/503241", "https://data.delijn.be/stops/503248"], ["https://data.delijn.be/stops/503654", "https://data.delijn.be/stops/509895"], ["https://data.delijn.be/stops/407010", "https://data.delijn.be/stops/407053"], ["https://data.delijn.be/stops/503214", "https://data.delijn.be/stops/508183"], ["https://data.delijn.be/stops/102913", "https://data.delijn.be/stops/106716"], ["https://data.delijn.be/stops/105574", "https://data.delijn.be/stops/105579"], ["https://data.delijn.be/stops/304726", "https://data.delijn.be/stops/308698"], ["https://data.delijn.be/stops/401525", "https://data.delijn.be/stops/403735"], ["https://data.delijn.be/stops/202916", "https://data.delijn.be/stops/203916"], ["https://data.delijn.be/stops/304744", "https://data.delijn.be/stops/304745"], ["https://data.delijn.be/stops/502566", "https://data.delijn.be/stops/507566"], ["https://data.delijn.be/stops/101268", "https://data.delijn.be/stops/104104"], ["https://data.delijn.be/stops/105060", "https://data.delijn.be/stops/106707"], ["https://data.delijn.be/stops/504223", "https://data.delijn.be/stops/504523"], ["https://data.delijn.be/stops/405420", "https://data.delijn.be/stops/410018"], ["https://data.delijn.be/stops/107743", "https://data.delijn.be/stops/107744"], ["https://data.delijn.be/stops/401492", "https://data.delijn.be/stops/401587"], ["https://data.delijn.be/stops/407204", "https://data.delijn.be/stops/407209"], ["https://data.delijn.be/stops/203661", "https://data.delijn.be/stops/210007"], ["https://data.delijn.be/stops/206414", "https://data.delijn.be/stops/206650"], ["https://data.delijn.be/stops/501282", "https://data.delijn.be/stops/506317"], ["https://data.delijn.be/stops/300236", "https://data.delijn.be/stops/300247"], ["https://data.delijn.be/stops/305384", "https://data.delijn.be/stops/305418"], ["https://data.delijn.be/stops/405804", "https://data.delijn.be/stops/307375"], ["https://data.delijn.be/stops/502501", "https://data.delijn.be/stops/507507"], ["https://data.delijn.be/stops/107962", "https://data.delijn.be/stops/108027"], ["https://data.delijn.be/stops/503396", "https://data.delijn.be/stops/508398"], ["https://data.delijn.be/stops/306697", "https://data.delijn.be/stops/306828"], ["https://data.delijn.be/stops/305449", "https://data.delijn.be/stops/307929"], ["https://data.delijn.be/stops/200171", "https://data.delijn.be/stops/201229"], ["https://data.delijn.be/stops/407858", "https://data.delijn.be/stops/408166"], ["https://data.delijn.be/stops/104517", "https://data.delijn.be/stops/107931"], ["https://data.delijn.be/stops/202496", "https://data.delijn.be/stops/203176"], ["https://data.delijn.be/stops/105280", "https://data.delijn.be/stops/105680"], ["https://data.delijn.be/stops/306938", "https://data.delijn.be/stops/308065"], ["https://data.delijn.be/stops/504325", "https://data.delijn.be/stops/504326"], ["https://data.delijn.be/stops/304816", "https://data.delijn.be/stops/304826"], ["https://data.delijn.be/stops/404608", "https://data.delijn.be/stops/404614"], ["https://data.delijn.be/stops/508682", "https://data.delijn.be/stops/508685"], ["https://data.delijn.be/stops/504248", "https://data.delijn.be/stops/504489"], ["https://data.delijn.be/stops/406066", "https://data.delijn.be/stops/406378"], ["https://data.delijn.be/stops/206117", "https://data.delijn.be/stops/206810"], ["https://data.delijn.be/stops/501294", "https://data.delijn.be/stops/506306"], ["https://data.delijn.be/stops/210016", "https://data.delijn.be/stops/211016"], ["https://data.delijn.be/stops/103354", "https://data.delijn.be/stops/104129"], ["https://data.delijn.be/stops/504426", "https://data.delijn.be/stops/504697"], ["https://data.delijn.be/stops/208341", "https://data.delijn.be/stops/218028"], ["https://data.delijn.be/stops/200384", "https://data.delijn.be/stops/201619"], ["https://data.delijn.be/stops/106814", "https://data.delijn.be/stops/106818"], ["https://data.delijn.be/stops/201047", "https://data.delijn.be/stops/203469"], ["https://data.delijn.be/stops/403485", "https://data.delijn.be/stops/410114"], ["https://data.delijn.be/stops/108701", "https://data.delijn.be/stops/108712"], ["https://data.delijn.be/stops/202328", "https://data.delijn.be/stops/203328"], ["https://data.delijn.be/stops/102467", "https://data.delijn.be/stops/400413"], ["https://data.delijn.be/stops/300161", "https://data.delijn.be/stops/300169"], ["https://data.delijn.be/stops/208486", "https://data.delijn.be/stops/209487"], ["https://data.delijn.be/stops/300364", "https://data.delijn.be/stops/307720"], ["https://data.delijn.be/stops/203007", "https://data.delijn.be/stops/209908"], ["https://data.delijn.be/stops/504120", "https://data.delijn.be/stops/509481"], ["https://data.delijn.be/stops/205063", "https://data.delijn.be/stops/205064"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/203627"], ["https://data.delijn.be/stops/400451", "https://data.delijn.be/stops/407648"], ["https://data.delijn.be/stops/408101", "https://data.delijn.be/stops/408231"], ["https://data.delijn.be/stops/400042", "https://data.delijn.be/stops/400427"], ["https://data.delijn.be/stops/502444", "https://data.delijn.be/stops/502634"], ["https://data.delijn.be/stops/102565", "https://data.delijn.be/stops/103127"], ["https://data.delijn.be/stops/203874", "https://data.delijn.be/stops/209723"], ["https://data.delijn.be/stops/308524", "https://data.delijn.be/stops/308526"], ["https://data.delijn.be/stops/204170", "https://data.delijn.be/stops/204172"], ["https://data.delijn.be/stops/502687", "https://data.delijn.be/stops/507193"], ["https://data.delijn.be/stops/200482", "https://data.delijn.be/stops/201345"], ["https://data.delijn.be/stops/101417", "https://data.delijn.be/stops/108698"], ["https://data.delijn.be/stops/207665", "https://data.delijn.be/stops/209502"], ["https://data.delijn.be/stops/505183", "https://data.delijn.be/stops/505298"], ["https://data.delijn.be/stops/301241", "https://data.delijn.be/stops/301244"], ["https://data.delijn.be/stops/503531", "https://data.delijn.be/stops/508531"], ["https://data.delijn.be/stops/503629", "https://data.delijn.be/stops/508632"], ["https://data.delijn.be/stops/510009", "https://data.delijn.be/stops/510011"], ["https://data.delijn.be/stops/102732", "https://data.delijn.be/stops/107059"], ["https://data.delijn.be/stops/400079", "https://data.delijn.be/stops/409107"], ["https://data.delijn.be/stops/405351", "https://data.delijn.be/stops/302838"], ["https://data.delijn.be/stops/304841", "https://data.delijn.be/stops/304846"], ["https://data.delijn.be/stops/402514", "https://data.delijn.be/stops/402516"], ["https://data.delijn.be/stops/503326", "https://data.delijn.be/stops/507762"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/504613"], ["https://data.delijn.be/stops/401375", "https://data.delijn.be/stops/404772"], ["https://data.delijn.be/stops/303816", "https://data.delijn.be/stops/303817"], ["https://data.delijn.be/stops/300224", "https://data.delijn.be/stops/300231"], ["https://data.delijn.be/stops/208285", "https://data.delijn.be/stops/219018"], ["https://data.delijn.be/stops/500955", "https://data.delijn.be/stops/504713"], ["https://data.delijn.be/stops/402194", "https://data.delijn.be/stops/402363"], ["https://data.delijn.be/stops/502306", "https://data.delijn.be/stops/507312"], ["https://data.delijn.be/stops/203894", "https://data.delijn.be/stops/208287"], ["https://data.delijn.be/stops/501550", "https://data.delijn.be/stops/506772"], ["https://data.delijn.be/stops/108844", "https://data.delijn.be/stops/108856"], ["https://data.delijn.be/stops/200074", "https://data.delijn.be/stops/201074"], ["https://data.delijn.be/stops/204997", "https://data.delijn.be/stops/503643"], ["https://data.delijn.be/stops/200238", "https://data.delijn.be/stops/204925"], ["https://data.delijn.be/stops/109494", "https://data.delijn.be/stops/109497"], ["https://data.delijn.be/stops/109657", "https://data.delijn.be/stops/406509"], ["https://data.delijn.be/stops/303876", "https://data.delijn.be/stops/308713"], ["https://data.delijn.be/stops/206752", "https://data.delijn.be/stops/208476"], ["https://data.delijn.be/stops/203506", "https://data.delijn.be/stops/203930"], ["https://data.delijn.be/stops/401205", "https://data.delijn.be/stops/401376"], ["https://data.delijn.be/stops/204343", "https://data.delijn.be/stops/204344"], ["https://data.delijn.be/stops/503141", "https://data.delijn.be/stops/509225"], ["https://data.delijn.be/stops/406451", "https://data.delijn.be/stops/406470"], ["https://data.delijn.be/stops/208403", "https://data.delijn.be/stops/209378"], ["https://data.delijn.be/stops/303621", "https://data.delijn.be/stops/305445"], ["https://data.delijn.be/stops/406450", "https://data.delijn.be/stops/406471"], ["https://data.delijn.be/stops/405964", "https://data.delijn.be/stops/405965"], ["https://data.delijn.be/stops/403161", "https://data.delijn.be/stops/403443"], ["https://data.delijn.be/stops/102295", "https://data.delijn.be/stops/102321"], ["https://data.delijn.be/stops/502424", "https://data.delijn.be/stops/502434"], ["https://data.delijn.be/stops/104619", "https://data.delijn.be/stops/205646"], ["https://data.delijn.be/stops/504693", "https://data.delijn.be/stops/505573"], ["https://data.delijn.be/stops/404328", "https://data.delijn.be/stops/404329"], ["https://data.delijn.be/stops/201687", "https://data.delijn.be/stops/203503"], ["https://data.delijn.be/stops/104060", "https://data.delijn.be/stops/104875"], ["https://data.delijn.be/stops/504583", "https://data.delijn.be/stops/505423"], ["https://data.delijn.be/stops/406286", "https://data.delijn.be/stops/406288"], ["https://data.delijn.be/stops/402713", "https://data.delijn.be/stops/308175"], ["https://data.delijn.be/stops/501530", "https://data.delijn.be/stops/506510"], ["https://data.delijn.be/stops/502273", "https://data.delijn.be/stops/507269"], ["https://data.delijn.be/stops/307013", "https://data.delijn.be/stops/308358"], ["https://data.delijn.be/stops/305456", "https://data.delijn.be/stops/305980"], ["https://data.delijn.be/stops/103221", "https://data.delijn.be/stops/103222"], ["https://data.delijn.be/stops/305524", "https://data.delijn.be/stops/307012"], ["https://data.delijn.be/stops/202211", "https://data.delijn.be/stops/203211"], ["https://data.delijn.be/stops/406621", "https://data.delijn.be/stops/406632"], ["https://data.delijn.be/stops/102314", "https://data.delijn.be/stops/103712"], ["https://data.delijn.be/stops/502114", "https://data.delijn.be/stops/507114"], ["https://data.delijn.be/stops/303743", "https://data.delijn.be/stops/303745"], ["https://data.delijn.be/stops/200606", "https://data.delijn.be/stops/200633"], ["https://data.delijn.be/stops/304879", "https://data.delijn.be/stops/304881"], ["https://data.delijn.be/stops/300259", "https://data.delijn.be/stops/307496"], ["https://data.delijn.be/stops/400575", "https://data.delijn.be/stops/403027"], ["https://data.delijn.be/stops/207994", "https://data.delijn.be/stops/307768"], ["https://data.delijn.be/stops/200780", "https://data.delijn.be/stops/211094"], ["https://data.delijn.be/stops/302704", "https://data.delijn.be/stops/302732"], ["https://data.delijn.be/stops/408560", "https://data.delijn.be/stops/408792"], ["https://data.delijn.be/stops/209708", "https://data.delijn.be/stops/209952"], ["https://data.delijn.be/stops/107024", "https://data.delijn.be/stops/107025"], ["https://data.delijn.be/stops/104338", "https://data.delijn.be/stops/105912"], ["https://data.delijn.be/stops/405815", "https://data.delijn.be/stops/405818"], ["https://data.delijn.be/stops/106609", "https://data.delijn.be/stops/106610"], ["https://data.delijn.be/stops/402256", "https://data.delijn.be/stops/402257"], ["https://data.delijn.be/stops/402620", "https://data.delijn.be/stops/402621"], ["https://data.delijn.be/stops/306843", "https://data.delijn.be/stops/306844"], ["https://data.delijn.be/stops/101000", "https://data.delijn.be/stops/103770"], ["https://data.delijn.be/stops/107722", "https://data.delijn.be/stops/109431"], ["https://data.delijn.be/stops/405175", "https://data.delijn.be/stops/405279"], ["https://data.delijn.be/stops/502925", "https://data.delijn.be/stops/507495"], ["https://data.delijn.be/stops/107201", "https://data.delijn.be/stops/107727"], ["https://data.delijn.be/stops/202900", "https://data.delijn.be/stops/203904"], ["https://data.delijn.be/stops/407833", "https://data.delijn.be/stops/407836"], ["https://data.delijn.be/stops/202153", "https://data.delijn.be/stops/203190"], ["https://data.delijn.be/stops/202310", "https://data.delijn.be/stops/203793"], ["https://data.delijn.be/stops/203018", "https://data.delijn.be/stops/203297"], ["https://data.delijn.be/stops/504660", "https://data.delijn.be/stops/504991"], ["https://data.delijn.be/stops/204669", "https://data.delijn.be/stops/214009"], ["https://data.delijn.be/stops/202834", "https://data.delijn.be/stops/203834"], ["https://data.delijn.be/stops/307114", "https://data.delijn.be/stops/307186"], ["https://data.delijn.be/stops/202738", "https://data.delijn.be/stops/209743"], ["https://data.delijn.be/stops/502428", "https://data.delijn.be/stops/507432"], ["https://data.delijn.be/stops/401314", "https://data.delijn.be/stops/401319"], ["https://data.delijn.be/stops/507203", "https://data.delijn.be/stops/508748"], ["https://data.delijn.be/stops/402603", "https://data.delijn.be/stops/402642"], ["https://data.delijn.be/stops/201706", "https://data.delijn.be/stops/203445"], ["https://data.delijn.be/stops/508095", "https://data.delijn.be/stops/508097"], ["https://data.delijn.be/stops/300460", "https://data.delijn.be/stops/300470"], ["https://data.delijn.be/stops/202869", "https://data.delijn.be/stops/208713"], ["https://data.delijn.be/stops/504007", "https://data.delijn.be/stops/508555"], ["https://data.delijn.be/stops/200895", "https://data.delijn.be/stops/202286"], ["https://data.delijn.be/stops/204974", "https://data.delijn.be/stops/205974"], ["https://data.delijn.be/stops/200710", "https://data.delijn.be/stops/200711"], ["https://data.delijn.be/stops/302319", "https://data.delijn.be/stops/303511"], ["https://data.delijn.be/stops/104397", "https://data.delijn.be/stops/104398"], ["https://data.delijn.be/stops/302160", "https://data.delijn.be/stops/308103"], ["https://data.delijn.be/stops/200547", "https://data.delijn.be/stops/209664"], ["https://data.delijn.be/stops/300668", "https://data.delijn.be/stops/300674"], ["https://data.delijn.be/stops/102896", "https://data.delijn.be/stops/105725"], ["https://data.delijn.be/stops/505381", "https://data.delijn.be/stops/505792"], ["https://data.delijn.be/stops/301268", "https://data.delijn.be/stops/304981"], ["https://data.delijn.be/stops/202459", "https://data.delijn.be/stops/202485"], ["https://data.delijn.be/stops/408826", "https://data.delijn.be/stops/408827"], ["https://data.delijn.be/stops/109539", "https://data.delijn.be/stops/109660"], ["https://data.delijn.be/stops/202312", "https://data.delijn.be/stops/203313"], ["https://data.delijn.be/stops/502024", "https://data.delijn.be/stops/509758"], ["https://data.delijn.be/stops/406701", "https://data.delijn.be/stops/406702"], ["https://data.delijn.be/stops/102531", "https://data.delijn.be/stops/405723"], ["https://data.delijn.be/stops/302954", "https://data.delijn.be/stops/306275"], ["https://data.delijn.be/stops/207576", "https://data.delijn.be/stops/209126"], ["https://data.delijn.be/stops/102460", "https://data.delijn.be/stops/103393"], ["https://data.delijn.be/stops/508754", "https://data.delijn.be/stops/509750"], ["https://data.delijn.be/stops/506205", "https://data.delijn.be/stops/506289"], ["https://data.delijn.be/stops/403044", "https://data.delijn.be/stops/403045"], ["https://data.delijn.be/stops/300871", "https://data.delijn.be/stops/302217"], ["https://data.delijn.be/stops/105703", "https://data.delijn.be/stops/105704"], ["https://data.delijn.be/stops/205138", "https://data.delijn.be/stops/205141"], ["https://data.delijn.be/stops/104901", "https://data.delijn.be/stops/109719"], ["https://data.delijn.be/stops/503477", "https://data.delijn.be/stops/508471"], ["https://data.delijn.be/stops/203070", "https://data.delijn.be/stops/208845"], ["https://data.delijn.be/stops/303251", "https://data.delijn.be/stops/303294"], ["https://data.delijn.be/stops/506238", "https://data.delijn.be/stops/506768"], ["https://data.delijn.be/stops/205295", "https://data.delijn.be/stops/205296"], ["https://data.delijn.be/stops/106325", "https://data.delijn.be/stops/106687"], ["https://data.delijn.be/stops/203139", "https://data.delijn.be/stops/203993"], ["https://data.delijn.be/stops/107826", "https://data.delijn.be/stops/107828"], ["https://data.delijn.be/stops/304111", "https://data.delijn.be/stops/304819"], ["https://data.delijn.be/stops/501175", "https://data.delijn.be/stops/501182"], ["https://data.delijn.be/stops/304204", "https://data.delijn.be/stops/304205"], ["https://data.delijn.be/stops/502201", "https://data.delijn.be/stops/502299"], ["https://data.delijn.be/stops/406753", "https://data.delijn.be/stops/406758"], ["https://data.delijn.be/stops/405379", "https://data.delijn.be/stops/303320"], ["https://data.delijn.be/stops/508018", "https://data.delijn.be/stops/508557"], ["https://data.delijn.be/stops/204103", "https://data.delijn.be/stops/207306"], ["https://data.delijn.be/stops/204311", "https://data.delijn.be/stops/205311"], ["https://data.delijn.be/stops/504374", "https://data.delijn.be/stops/504387"], ["https://data.delijn.be/stops/403430", "https://data.delijn.be/stops/403431"], ["https://data.delijn.be/stops/305989", "https://data.delijn.be/stops/305991"], ["https://data.delijn.be/stops/304782", "https://data.delijn.be/stops/304798"], ["https://data.delijn.be/stops/101906", "https://data.delijn.be/stops/106506"], ["https://data.delijn.be/stops/208047", "https://data.delijn.be/stops/208952"], ["https://data.delijn.be/stops/301467", "https://data.delijn.be/stops/308070"], ["https://data.delijn.be/stops/200254", "https://data.delijn.be/stops/201253"], ["https://data.delijn.be/stops/406887", "https://data.delijn.be/stops/410294"], ["https://data.delijn.be/stops/204504", "https://data.delijn.be/stops/205504"], ["https://data.delijn.be/stops/107226", "https://data.delijn.be/stops/109888"], ["https://data.delijn.be/stops/200361", "https://data.delijn.be/stops/201361"], ["https://data.delijn.be/stops/506470", "https://data.delijn.be/stops/506476"], ["https://data.delijn.be/stops/105134", "https://data.delijn.be/stops/105136"], ["https://data.delijn.be/stops/403834", "https://data.delijn.be/stops/403837"], ["https://data.delijn.be/stops/405956", "https://data.delijn.be/stops/405961"], ["https://data.delijn.be/stops/401572", "https://data.delijn.be/stops/402178"], ["https://data.delijn.be/stops/201530", "https://data.delijn.be/stops/211079"], ["https://data.delijn.be/stops/406266", "https://data.delijn.be/stops/407123"], ["https://data.delijn.be/stops/404508", "https://data.delijn.be/stops/404573"], ["https://data.delijn.be/stops/501744", "https://data.delijn.be/stops/504121"], ["https://data.delijn.be/stops/401989", "https://data.delijn.be/stops/402000"], ["https://data.delijn.be/stops/204748", "https://data.delijn.be/stops/205747"], ["https://data.delijn.be/stops/401642", "https://data.delijn.be/stops/408656"], ["https://data.delijn.be/stops/408005", "https://data.delijn.be/stops/410161"], ["https://data.delijn.be/stops/300445", "https://data.delijn.be/stops/300446"], ["https://data.delijn.be/stops/406520", "https://data.delijn.be/stops/407502"], ["https://data.delijn.be/stops/403903", "https://data.delijn.be/stops/403909"], ["https://data.delijn.be/stops/103161", "https://data.delijn.be/stops/103168"], ["https://data.delijn.be/stops/505956", "https://data.delijn.be/stops/508606"], ["https://data.delijn.be/stops/202132", "https://data.delijn.be/stops/203132"], ["https://data.delijn.be/stops/403958", "https://data.delijn.be/stops/403972"], ["https://data.delijn.be/stops/106754", "https://data.delijn.be/stops/106758"], ["https://data.delijn.be/stops/103924", "https://data.delijn.be/stops/103927"], ["https://data.delijn.be/stops/206582", "https://data.delijn.be/stops/207482"], ["https://data.delijn.be/stops/208100", "https://data.delijn.be/stops/209099"], ["https://data.delijn.be/stops/503725", "https://data.delijn.be/stops/508725"], ["https://data.delijn.be/stops/206864", "https://data.delijn.be/stops/207863"], ["https://data.delijn.be/stops/300036", "https://data.delijn.be/stops/307443"], ["https://data.delijn.be/stops/102481", "https://data.delijn.be/stops/400417"], ["https://data.delijn.be/stops/509460", "https://data.delijn.be/stops/509612"], ["https://data.delijn.be/stops/207813", "https://data.delijn.be/stops/207935"], ["https://data.delijn.be/stops/107318", "https://data.delijn.be/stops/108818"], ["https://data.delijn.be/stops/401420", "https://data.delijn.be/stops/401500"], ["https://data.delijn.be/stops/301197", "https://data.delijn.be/stops/308814"], ["https://data.delijn.be/stops/502605", "https://data.delijn.be/stops/507605"], ["https://data.delijn.be/stops/206955", "https://data.delijn.be/stops/207188"], ["https://data.delijn.be/stops/301911", "https://data.delijn.be/stops/305920"], ["https://data.delijn.be/stops/505540", "https://data.delijn.be/stops/508811"], ["https://data.delijn.be/stops/208176", "https://data.delijn.be/stops/209176"], ["https://data.delijn.be/stops/103870", "https://data.delijn.be/stops/103885"], ["https://data.delijn.be/stops/401810", "https://data.delijn.be/stops/410357"], ["https://data.delijn.be/stops/106644", "https://data.delijn.be/stops/106645"], ["https://data.delijn.be/stops/103087", "https://data.delijn.be/stops/107531"], ["https://data.delijn.be/stops/502247", "https://data.delijn.be/stops/507022"], ["https://data.delijn.be/stops/307213", "https://data.delijn.be/stops/307214"], ["https://data.delijn.be/stops/506663", "https://data.delijn.be/stops/506732"], ["https://data.delijn.be/stops/403247", "https://data.delijn.be/stops/406887"], ["https://data.delijn.be/stops/301756", "https://data.delijn.be/stops/301757"], ["https://data.delijn.be/stops/103326", "https://data.delijn.be/stops/105019"], ["https://data.delijn.be/stops/208812", "https://data.delijn.be/stops/208837"], ["https://data.delijn.be/stops/304442", "https://data.delijn.be/stops/304457"], ["https://data.delijn.be/stops/200670", "https://data.delijn.be/stops/508643"], ["https://data.delijn.be/stops/301297", "https://data.delijn.be/stops/301298"], ["https://data.delijn.be/stops/204218", "https://data.delijn.be/stops/205217"], ["https://data.delijn.be/stops/300727", "https://data.delijn.be/stops/301598"], ["https://data.delijn.be/stops/301246", "https://data.delijn.be/stops/306325"], ["https://data.delijn.be/stops/102936", "https://data.delijn.be/stops/103135"], ["https://data.delijn.be/stops/403719", "https://data.delijn.be/stops/406889"], ["https://data.delijn.be/stops/202831", "https://data.delijn.be/stops/202832"], ["https://data.delijn.be/stops/408110", "https://data.delijn.be/stops/408160"], ["https://data.delijn.be/stops/206313", "https://data.delijn.be/stops/207816"], ["https://data.delijn.be/stops/505290", "https://data.delijn.be/stops/508905"], ["https://data.delijn.be/stops/304485", "https://data.delijn.be/stops/307568"], ["https://data.delijn.be/stops/104781", "https://data.delijn.be/stops/108118"], ["https://data.delijn.be/stops/506109", "https://data.delijn.be/stops/506493"], ["https://data.delijn.be/stops/408172", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/204317", "https://data.delijn.be/stops/205059"], ["https://data.delijn.be/stops/500998", "https://data.delijn.be/stops/504571"], ["https://data.delijn.be/stops/103148", "https://data.delijn.be/stops/103287"], ["https://data.delijn.be/stops/106180", "https://data.delijn.be/stops/109560"], ["https://data.delijn.be/stops/208421", "https://data.delijn.be/stops/208742"], ["https://data.delijn.be/stops/300123", "https://data.delijn.be/stops/306829"], ["https://data.delijn.be/stops/504374", "https://data.delijn.be/stops/505977"], ["https://data.delijn.be/stops/406242", "https://data.delijn.be/stops/406256"], ["https://data.delijn.be/stops/106590", "https://data.delijn.be/stops/106591"], ["https://data.delijn.be/stops/504292", "https://data.delijn.be/stops/504310"], ["https://data.delijn.be/stops/105353", "https://data.delijn.be/stops/109969"], ["https://data.delijn.be/stops/306302", "https://data.delijn.be/stops/307927"], ["https://data.delijn.be/stops/402344", "https://data.delijn.be/stops/402345"], ["https://data.delijn.be/stops/106649", "https://data.delijn.be/stops/106651"], ["https://data.delijn.be/stops/408546", "https://data.delijn.be/stops/408616"], ["https://data.delijn.be/stops/404383", "https://data.delijn.be/stops/404648"], ["https://data.delijn.be/stops/206575", "https://data.delijn.be/stops/209125"], ["https://data.delijn.be/stops/408004", "https://data.delijn.be/stops/408263"], ["https://data.delijn.be/stops/403210", "https://data.delijn.be/stops/403552"], ["https://data.delijn.be/stops/503962", "https://data.delijn.be/stops/508124"], ["https://data.delijn.be/stops/401132", "https://data.delijn.be/stops/401151"], ["https://data.delijn.be/stops/204413", "https://data.delijn.be/stops/204443"], ["https://data.delijn.be/stops/108155", "https://data.delijn.be/stops/109847"], ["https://data.delijn.be/stops/302035", "https://data.delijn.be/stops/308958"], ["https://data.delijn.be/stops/403219", "https://data.delijn.be/stops/403389"], ["https://data.delijn.be/stops/105674", "https://data.delijn.be/stops/105676"], ["https://data.delijn.be/stops/401349", "https://data.delijn.be/stops/401360"], ["https://data.delijn.be/stops/208573", "https://data.delijn.be/stops/307312"], ["https://data.delijn.be/stops/501205", "https://data.delijn.be/stops/501546"], ["https://data.delijn.be/stops/108372", "https://data.delijn.be/stops/108519"], ["https://data.delijn.be/stops/200111", "https://data.delijn.be/stops/203647"], ["https://data.delijn.be/stops/302055", "https://data.delijn.be/stops/307074"], ["https://data.delijn.be/stops/504359", "https://data.delijn.be/stops/509358"], ["https://data.delijn.be/stops/507211", "https://data.delijn.be/stops/507583"], ["https://data.delijn.be/stops/202898", "https://data.delijn.be/stops/210125"], ["https://data.delijn.be/stops/406298", "https://data.delijn.be/stops/302854"], ["https://data.delijn.be/stops/204133", "https://data.delijn.be/stops/205141"], ["https://data.delijn.be/stops/106528", "https://data.delijn.be/stops/106991"], ["https://data.delijn.be/stops/200906", "https://data.delijn.be/stops/202254"], ["https://data.delijn.be/stops/504572", "https://data.delijn.be/stops/509572"], ["https://data.delijn.be/stops/207678", "https://data.delijn.be/stops/209143"], ["https://data.delijn.be/stops/206385", "https://data.delijn.be/stops/207386"], ["https://data.delijn.be/stops/305234", "https://data.delijn.be/stops/305297"], ["https://data.delijn.be/stops/409354", "https://data.delijn.be/stops/409399"], ["https://data.delijn.be/stops/303449", "https://data.delijn.be/stops/303450"], ["https://data.delijn.be/stops/406269", "https://data.delijn.be/stops/406421"], ["https://data.delijn.be/stops/205355", "https://data.delijn.be/stops/205370"], ["https://data.delijn.be/stops/305167", "https://data.delijn.be/stops/305206"], ["https://data.delijn.be/stops/400742", "https://data.delijn.be/stops/404261"], ["https://data.delijn.be/stops/305347", "https://data.delijn.be/stops/307972"], ["https://data.delijn.be/stops/204106", "https://data.delijn.be/stops/204587"], ["https://data.delijn.be/stops/502305", "https://data.delijn.be/stops/507302"], ["https://data.delijn.be/stops/107974", "https://data.delijn.be/stops/306760"], ["https://data.delijn.be/stops/108522", "https://data.delijn.be/stops/108524"], ["https://data.delijn.be/stops/106588", "https://data.delijn.be/stops/107274"], ["https://data.delijn.be/stops/200748", "https://data.delijn.be/stops/205070"], ["https://data.delijn.be/stops/302795", "https://data.delijn.be/stops/302801"], ["https://data.delijn.be/stops/304306", "https://data.delijn.be/stops/304308"], ["https://data.delijn.be/stops/405490", "https://data.delijn.be/stops/409298"], ["https://data.delijn.be/stops/206353", "https://data.delijn.be/stops/207353"], ["https://data.delijn.be/stops/401551", "https://data.delijn.be/stops/406885"], ["https://data.delijn.be/stops/502635", "https://data.delijn.be/stops/507209"], ["https://data.delijn.be/stops/102757", "https://data.delijn.be/stops/106496"], ["https://data.delijn.be/stops/305501", "https://data.delijn.be/stops/307878"], ["https://data.delijn.be/stops/205262", "https://data.delijn.be/stops/205311"], ["https://data.delijn.be/stops/402938", "https://data.delijn.be/stops/405973"], ["https://data.delijn.be/stops/200688", "https://data.delijn.be/stops/202373"], ["https://data.delijn.be/stops/105567", "https://data.delijn.be/stops/105571"], ["https://data.delijn.be/stops/204433", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/101514", "https://data.delijn.be/stops/102252"], ["https://data.delijn.be/stops/404325", "https://data.delijn.be/stops/404362"], ["https://data.delijn.be/stops/503474", "https://data.delijn.be/stops/509951"], ["https://data.delijn.be/stops/202101", "https://data.delijn.be/stops/210006"], ["https://data.delijn.be/stops/300607", "https://data.delijn.be/stops/300613"], ["https://data.delijn.be/stops/106192", "https://data.delijn.be/stops/106193"], ["https://data.delijn.be/stops/304336", "https://data.delijn.be/stops/304340"], ["https://data.delijn.be/stops/503405", "https://data.delijn.be/stops/508407"], ["https://data.delijn.be/stops/209392", "https://data.delijn.be/stops/209393"], ["https://data.delijn.be/stops/303426", "https://data.delijn.be/stops/303427"], ["https://data.delijn.be/stops/404495", "https://data.delijn.be/stops/404536"], ["https://data.delijn.be/stops/503470", "https://data.delijn.be/stops/508451"], ["https://data.delijn.be/stops/204087", "https://data.delijn.be/stops/204088"], ["https://data.delijn.be/stops/501068", "https://data.delijn.be/stops/501069"], ["https://data.delijn.be/stops/502690", "https://data.delijn.be/stops/507690"], ["https://data.delijn.be/stops/405102", "https://data.delijn.be/stops/408336"], ["https://data.delijn.be/stops/406283", "https://data.delijn.be/stops/409356"], ["https://data.delijn.be/stops/306613", "https://data.delijn.be/stops/306630"], ["https://data.delijn.be/stops/305650", "https://data.delijn.be/stops/305660"], ["https://data.delijn.be/stops/101182", "https://data.delijn.be/stops/107867"], ["https://data.delijn.be/stops/206672", "https://data.delijn.be/stops/209633"], ["https://data.delijn.be/stops/401441", "https://data.delijn.be/stops/404172"], ["https://data.delijn.be/stops/206971", "https://data.delijn.be/stops/207972"], ["https://data.delijn.be/stops/209616", "https://data.delijn.be/stops/209655"], ["https://data.delijn.be/stops/200411", "https://data.delijn.be/stops/208941"], ["https://data.delijn.be/stops/104315", "https://data.delijn.be/stops/104321"], ["https://data.delijn.be/stops/105621", "https://data.delijn.be/stops/105622"], ["https://data.delijn.be/stops/304047", "https://data.delijn.be/stops/306278"], ["https://data.delijn.be/stops/108792", "https://data.delijn.be/stops/109556"], ["https://data.delijn.be/stops/103066", "https://data.delijn.be/stops/105224"], ["https://data.delijn.be/stops/102088", "https://data.delijn.be/stops/106806"], ["https://data.delijn.be/stops/401472", "https://data.delijn.be/stops/410165"], ["https://data.delijn.be/stops/105357", "https://data.delijn.be/stops/105661"], ["https://data.delijn.be/stops/204919", "https://data.delijn.be/stops/205916"], ["https://data.delijn.be/stops/301906", "https://data.delijn.be/stops/301907"], ["https://data.delijn.be/stops/410272", "https://data.delijn.be/stops/410273"], ["https://data.delijn.be/stops/304946", "https://data.delijn.be/stops/304949"], ["https://data.delijn.be/stops/101418", "https://data.delijn.be/stops/106950"], ["https://data.delijn.be/stops/400449", "https://data.delijn.be/stops/400654"], ["https://data.delijn.be/stops/205398", "https://data.delijn.be/stops/205772"], ["https://data.delijn.be/stops/410288", "https://data.delijn.be/stops/410289"], ["https://data.delijn.be/stops/101833", "https://data.delijn.be/stops/101834"], ["https://data.delijn.be/stops/303306", "https://data.delijn.be/stops/303307"], ["https://data.delijn.be/stops/409039", "https://data.delijn.be/stops/409041"], ["https://data.delijn.be/stops/207399", "https://data.delijn.be/stops/207400"], ["https://data.delijn.be/stops/202526", "https://data.delijn.be/stops/206409"], ["https://data.delijn.be/stops/402885", "https://data.delijn.be/stops/402886"], ["https://data.delijn.be/stops/206299", "https://data.delijn.be/stops/207494"], ["https://data.delijn.be/stops/502375", "https://data.delijn.be/stops/507375"], ["https://data.delijn.be/stops/400800", "https://data.delijn.be/stops/400880"], ["https://data.delijn.be/stops/203344", "https://data.delijn.be/stops/205975"], ["https://data.delijn.be/stops/302531", "https://data.delijn.be/stops/303715"], ["https://data.delijn.be/stops/300681", "https://data.delijn.be/stops/305962"], ["https://data.delijn.be/stops/300245", "https://data.delijn.be/stops/305926"], ["https://data.delijn.be/stops/307330", "https://data.delijn.be/stops/307910"], ["https://data.delijn.be/stops/208070", "https://data.delijn.be/stops/209071"], ["https://data.delijn.be/stops/101497", "https://data.delijn.be/stops/108308"], ["https://data.delijn.be/stops/403994", "https://data.delijn.be/stops/410026"], ["https://data.delijn.be/stops/403925", "https://data.delijn.be/stops/403971"], ["https://data.delijn.be/stops/503348", "https://data.delijn.be/stops/503416"], ["https://data.delijn.be/stops/200184", "https://data.delijn.be/stops/200192"], ["https://data.delijn.be/stops/305294", "https://data.delijn.be/stops/305295"], ["https://data.delijn.be/stops/103185", "https://data.delijn.be/stops/103348"], ["https://data.delijn.be/stops/501360", "https://data.delijn.be/stops/506353"], ["https://data.delijn.be/stops/206458", "https://data.delijn.be/stops/207458"], ["https://data.delijn.be/stops/504819", "https://data.delijn.be/stops/509819"], ["https://data.delijn.be/stops/208278", "https://data.delijn.be/stops/209277"], ["https://data.delijn.be/stops/308506", "https://data.delijn.be/stops/308507"], ["https://data.delijn.be/stops/301972", "https://data.delijn.be/stops/301987"], ["https://data.delijn.be/stops/301799", "https://data.delijn.be/stops/303705"], ["https://data.delijn.be/stops/305117", "https://data.delijn.be/stops/305126"], ["https://data.delijn.be/stops/406470", "https://data.delijn.be/stops/406471"], ["https://data.delijn.be/stops/303739", "https://data.delijn.be/stops/303749"], ["https://data.delijn.be/stops/404460", "https://data.delijn.be/stops/404490"], ["https://data.delijn.be/stops/503648", "https://data.delijn.be/stops/505365"], ["https://data.delijn.be/stops/202302", "https://data.delijn.be/stops/203303"], ["https://data.delijn.be/stops/502087", "https://data.delijn.be/stops/502732"], ["https://data.delijn.be/stops/101895", "https://data.delijn.be/stops/104722"], ["https://data.delijn.be/stops/508615", "https://data.delijn.be/stops/509751"], ["https://data.delijn.be/stops/305733", "https://data.delijn.be/stops/306328"], ["https://data.delijn.be/stops/102534", "https://data.delijn.be/stops/102536"], ["https://data.delijn.be/stops/508329", "https://data.delijn.be/stops/508980"], ["https://data.delijn.be/stops/205036", "https://data.delijn.be/stops/205037"], ["https://data.delijn.be/stops/401648", "https://data.delijn.be/stops/408710"], ["https://data.delijn.be/stops/507353", "https://data.delijn.be/stops/507355"], ["https://data.delijn.be/stops/401072", "https://data.delijn.be/stops/401165"], ["https://data.delijn.be/stops/301044", "https://data.delijn.be/stops/306692"], ["https://data.delijn.be/stops/101364", "https://data.delijn.be/stops/101366"], ["https://data.delijn.be/stops/300086", "https://data.delijn.be/stops/300150"], ["https://data.delijn.be/stops/301083", "https://data.delijn.be/stops/301085"], ["https://data.delijn.be/stops/106520", "https://data.delijn.be/stops/107099"], ["https://data.delijn.be/stops/401219", "https://data.delijn.be/stops/409190"], ["https://data.delijn.be/stops/202765", "https://data.delijn.be/stops/203766"], ["https://data.delijn.be/stops/501344", "https://data.delijn.be/stops/501398"], ["https://data.delijn.be/stops/400219", "https://data.delijn.be/stops/400231"], ["https://data.delijn.be/stops/200453", "https://data.delijn.be/stops/208733"], ["https://data.delijn.be/stops/501205", "https://data.delijn.be/stops/501374"], ["https://data.delijn.be/stops/102886", "https://data.delijn.be/stops/103670"], ["https://data.delijn.be/stops/508780", "https://data.delijn.be/stops/508788"], ["https://data.delijn.be/stops/106325", "https://data.delijn.be/stops/106326"], ["https://data.delijn.be/stops/301975", "https://data.delijn.be/stops/302921"], ["https://data.delijn.be/stops/406640", "https://data.delijn.be/stops/406683"], ["https://data.delijn.be/stops/405779", "https://data.delijn.be/stops/409420"], ["https://data.delijn.be/stops/307157", "https://data.delijn.be/stops/307159"], ["https://data.delijn.be/stops/108371", "https://data.delijn.be/stops/108458"], ["https://data.delijn.be/stops/207773", "https://data.delijn.be/stops/209188"], ["https://data.delijn.be/stops/102345", "https://data.delijn.be/stops/103680"], ["https://data.delijn.be/stops/302979", "https://data.delijn.be/stops/307066"], ["https://data.delijn.be/stops/403150", "https://data.delijn.be/stops/403152"], ["https://data.delijn.be/stops/503809", "https://data.delijn.be/stops/508809"], ["https://data.delijn.be/stops/304284", "https://data.delijn.be/stops/308769"], ["https://data.delijn.be/stops/305009", "https://data.delijn.be/stops/305026"], ["https://data.delijn.be/stops/505441", "https://data.delijn.be/stops/509146"], ["https://data.delijn.be/stops/502420", "https://data.delijn.be/stops/502644"], ["https://data.delijn.be/stops/405266", "https://data.delijn.be/stops/405273"], ["https://data.delijn.be/stops/507229", "https://data.delijn.be/stops/509051"], ["https://data.delijn.be/stops/405659", "https://data.delijn.be/stops/408428"], ["https://data.delijn.be/stops/109367", "https://data.delijn.be/stops/109370"], ["https://data.delijn.be/stops/202299", "https://data.delijn.be/stops/203299"], ["https://data.delijn.be/stops/304540", "https://data.delijn.be/stops/307586"], ["https://data.delijn.be/stops/106351", "https://data.delijn.be/stops/106352"], ["https://data.delijn.be/stops/202628", "https://data.delijn.be/stops/202629"], ["https://data.delijn.be/stops/302516", "https://data.delijn.be/stops/302538"], ["https://data.delijn.be/stops/400071", "https://data.delijn.be/stops/403549"], ["https://data.delijn.be/stops/203266", "https://data.delijn.be/stops/203267"], ["https://data.delijn.be/stops/504527", "https://data.delijn.be/stops/509527"], ["https://data.delijn.be/stops/102239", "https://data.delijn.be/stops/105868"], ["https://data.delijn.be/stops/504455", "https://data.delijn.be/stops/508128"], ["https://data.delijn.be/stops/103236", "https://data.delijn.be/stops/103689"], ["https://data.delijn.be/stops/200141", "https://data.delijn.be/stops/211001"], ["https://data.delijn.be/stops/407250", "https://data.delijn.be/stops/407373"], ["https://data.delijn.be/stops/407802", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/201076", "https://data.delijn.be/stops/201525"], ["https://data.delijn.be/stops/508699", "https://data.delijn.be/stops/508729"], ["https://data.delijn.be/stops/207799", "https://data.delijn.be/stops/208180"], ["https://data.delijn.be/stops/205133", "https://data.delijn.be/stops/205238"], ["https://data.delijn.be/stops/103633", "https://data.delijn.be/stops/107167"], ["https://data.delijn.be/stops/202872", "https://data.delijn.be/stops/203737"], ["https://data.delijn.be/stops/204635", "https://data.delijn.be/stops/205636"], ["https://data.delijn.be/stops/200142", "https://data.delijn.be/stops/201142"], ["https://data.delijn.be/stops/103530", "https://data.delijn.be/stops/105595"], ["https://data.delijn.be/stops/501623", "https://data.delijn.be/stops/506412"], ["https://data.delijn.be/stops/208094", "https://data.delijn.be/stops/209630"], ["https://data.delijn.be/stops/404658", "https://data.delijn.be/stops/404671"], ["https://data.delijn.be/stops/102548", "https://data.delijn.be/stops/102552"], ["https://data.delijn.be/stops/106680", "https://data.delijn.be/stops/106684"], ["https://data.delijn.be/stops/208602", "https://data.delijn.be/stops/209603"], ["https://data.delijn.be/stops/208447", "https://data.delijn.be/stops/209447"], ["https://data.delijn.be/stops/301448", "https://data.delijn.be/stops/308408"], ["https://data.delijn.be/stops/108743", "https://data.delijn.be/stops/109502"], ["https://data.delijn.be/stops/405089", "https://data.delijn.be/stops/408191"], ["https://data.delijn.be/stops/201758", "https://data.delijn.be/stops/218010"], ["https://data.delijn.be/stops/502028", "https://data.delijn.be/stops/502661"], ["https://data.delijn.be/stops/105706", "https://data.delijn.be/stops/106072"], ["https://data.delijn.be/stops/401053", "https://data.delijn.be/stops/408939"], ["https://data.delijn.be/stops/300125", "https://data.delijn.be/stops/307070"], ["https://data.delijn.be/stops/101426", "https://data.delijn.be/stops/109514"], ["https://data.delijn.be/stops/304380", "https://data.delijn.be/stops/304386"], ["https://data.delijn.be/stops/206443", "https://data.delijn.be/stops/206641"], ["https://data.delijn.be/stops/107582", "https://data.delijn.be/stops/107584"], ["https://data.delijn.be/stops/404425", "https://data.delijn.be/stops/404496"], ["https://data.delijn.be/stops/104711", "https://data.delijn.be/stops/104713"], ["https://data.delijn.be/stops/200089", "https://data.delijn.be/stops/200370"], ["https://data.delijn.be/stops/206245", "https://data.delijn.be/stops/207243"], ["https://data.delijn.be/stops/302978", "https://data.delijn.be/stops/303032"], ["https://data.delijn.be/stops/303972", "https://data.delijn.be/stops/303974"], ["https://data.delijn.be/stops/200770", "https://data.delijn.be/stops/503864"], ["https://data.delijn.be/stops/509027", "https://data.delijn.be/stops/509704"], ["https://data.delijn.be/stops/202344", "https://data.delijn.be/stops/209740"], ["https://data.delijn.be/stops/503850", "https://data.delijn.be/stops/505984"], ["https://data.delijn.be/stops/401870", "https://data.delijn.be/stops/406119"], ["https://data.delijn.be/stops/200343", "https://data.delijn.be/stops/201377"], ["https://data.delijn.be/stops/406143", "https://data.delijn.be/stops/406144"], ["https://data.delijn.be/stops/500159", "https://data.delijn.be/stops/503573"], ["https://data.delijn.be/stops/503751", "https://data.delijn.be/stops/508752"], ["https://data.delijn.be/stops/405899", "https://data.delijn.be/stops/407497"], ["https://data.delijn.be/stops/305610", "https://data.delijn.be/stops/305614"], ["https://data.delijn.be/stops/108284", "https://data.delijn.be/stops/109655"], ["https://data.delijn.be/stops/402004", "https://data.delijn.be/stops/406196"], ["https://data.delijn.be/stops/304860", "https://data.delijn.be/stops/307645"], ["https://data.delijn.be/stops/209182", "https://data.delijn.be/stops/209191"], ["https://data.delijn.be/stops/502316", "https://data.delijn.be/stops/507305"], ["https://data.delijn.be/stops/407303", "https://data.delijn.be/stops/407331"], ["https://data.delijn.be/stops/305043", "https://data.delijn.be/stops/307950"], ["https://data.delijn.be/stops/403716", "https://data.delijn.be/stops/403822"], ["https://data.delijn.be/stops/590008", "https://data.delijn.be/stops/590009"], ["https://data.delijn.be/stops/500994", "https://data.delijn.be/stops/505410"], ["https://data.delijn.be/stops/208237", "https://data.delijn.be/stops/208376"], ["https://data.delijn.be/stops/400884", "https://data.delijn.be/stops/400885"], ["https://data.delijn.be/stops/108236", "https://data.delijn.be/stops/108237"], ["https://data.delijn.be/stops/507307", "https://data.delijn.be/stops/507768"], ["https://data.delijn.be/stops/307546", "https://data.delijn.be/stops/307547"], ["https://data.delijn.be/stops/205065", "https://data.delijn.be/stops/205520"], ["https://data.delijn.be/stops/406053", "https://data.delijn.be/stops/409293"], ["https://data.delijn.be/stops/301625", "https://data.delijn.be/stops/301630"], ["https://data.delijn.be/stops/505600", "https://data.delijn.be/stops/505603"], ["https://data.delijn.be/stops/304478", "https://data.delijn.be/stops/304506"], ["https://data.delijn.be/stops/304637", "https://data.delijn.be/stops/304638"], ["https://data.delijn.be/stops/400127", "https://data.delijn.be/stops/400128"], ["https://data.delijn.be/stops/302129", "https://data.delijn.be/stops/302131"], ["https://data.delijn.be/stops/503309", "https://data.delijn.be/stops/508302"], ["https://data.delijn.be/stops/503637", "https://data.delijn.be/stops/503639"], ["https://data.delijn.be/stops/300891", "https://data.delijn.be/stops/301811"], ["https://data.delijn.be/stops/407103", "https://data.delijn.be/stops/407305"], ["https://data.delijn.be/stops/302309", "https://data.delijn.be/stops/302330"], ["https://data.delijn.be/stops/104928", "https://data.delijn.be/stops/104932"], ["https://data.delijn.be/stops/506123", "https://data.delijn.be/stops/506124"], ["https://data.delijn.be/stops/305387", "https://data.delijn.be/stops/305388"], ["https://data.delijn.be/stops/402975", "https://data.delijn.be/stops/402976"], ["https://data.delijn.be/stops/505532", "https://data.delijn.be/stops/505578"], ["https://data.delijn.be/stops/208438", "https://data.delijn.be/stops/208751"], ["https://data.delijn.be/stops/502341", "https://data.delijn.be/stops/505090"], ["https://data.delijn.be/stops/202510", "https://data.delijn.be/stops/203509"], ["https://data.delijn.be/stops/504326", "https://data.delijn.be/stops/504385"], ["https://data.delijn.be/stops/508709", "https://data.delijn.be/stops/509041"], ["https://data.delijn.be/stops/400881", "https://data.delijn.be/stops/409613"], ["https://data.delijn.be/stops/202221", "https://data.delijn.be/stops/203221"], ["https://data.delijn.be/stops/402961", "https://data.delijn.be/stops/402963"], ["https://data.delijn.be/stops/201904", "https://data.delijn.be/stops/202513"], ["https://data.delijn.be/stops/209300", "https://data.delijn.be/stops/209381"], ["https://data.delijn.be/stops/504344", "https://data.delijn.be/stops/508012"], ["https://data.delijn.be/stops/503640", "https://data.delijn.be/stops/508634"], ["https://data.delijn.be/stops/504071", "https://data.delijn.be/stops/509271"], ["https://data.delijn.be/stops/206095", "https://data.delijn.be/stops/206148"], ["https://data.delijn.be/stops/206599", "https://data.delijn.be/stops/206847"], ["https://data.delijn.be/stops/109678", "https://data.delijn.be/stops/408449"], ["https://data.delijn.be/stops/302536", "https://data.delijn.be/stops/302537"], ["https://data.delijn.be/stops/202462", "https://data.delijn.be/stops/203461"], ["https://data.delijn.be/stops/503749", "https://data.delijn.be/stops/509735"], ["https://data.delijn.be/stops/201934", "https://data.delijn.be/stops/202950"], ["https://data.delijn.be/stops/104456", "https://data.delijn.be/stops/104481"], ["https://data.delijn.be/stops/304363", "https://data.delijn.be/stops/304365"], ["https://data.delijn.be/stops/503916", "https://data.delijn.be/stops/508916"], ["https://data.delijn.be/stops/501161", "https://data.delijn.be/stops/506154"], ["https://data.delijn.be/stops/505847", "https://data.delijn.be/stops/508009"], ["https://data.delijn.be/stops/406268", "https://data.delijn.be/stops/406445"], ["https://data.delijn.be/stops/208684", "https://data.delijn.be/stops/208685"], ["https://data.delijn.be/stops/504594", "https://data.delijn.be/stops/505302"], ["https://data.delijn.be/stops/105115", "https://data.delijn.be/stops/105250"], ["https://data.delijn.be/stops/501630", "https://data.delijn.be/stops/501663"], ["https://data.delijn.be/stops/103273", "https://data.delijn.be/stops/103287"], ["https://data.delijn.be/stops/503901", "https://data.delijn.be/stops/505443"], ["https://data.delijn.be/stops/402230", "https://data.delijn.be/stops/402231"], ["https://data.delijn.be/stops/504350", "https://data.delijn.be/stops/504354"], ["https://data.delijn.be/stops/300676", "https://data.delijn.be/stops/306886"], ["https://data.delijn.be/stops/106722", "https://data.delijn.be/stops/106723"], ["https://data.delijn.be/stops/307753", "https://data.delijn.be/stops/307754"], ["https://data.delijn.be/stops/304038", "https://data.delijn.be/stops/304073"], ["https://data.delijn.be/stops/200213", "https://data.delijn.be/stops/201214"], ["https://data.delijn.be/stops/101413", "https://data.delijn.be/stops/101431"], ["https://data.delijn.be/stops/405714", "https://data.delijn.be/stops/408972"], ["https://data.delijn.be/stops/400562", "https://data.delijn.be/stops/403829"], ["https://data.delijn.be/stops/302107", "https://data.delijn.be/stops/302144"], ["https://data.delijn.be/stops/106781", "https://data.delijn.be/stops/106783"], ["https://data.delijn.be/stops/503030", "https://data.delijn.be/stops/508029"], ["https://data.delijn.be/stops/202476", "https://data.delijn.be/stops/203475"], ["https://data.delijn.be/stops/302018", "https://data.delijn.be/stops/307285"], ["https://data.delijn.be/stops/106526", "https://data.delijn.be/stops/106528"], ["https://data.delijn.be/stops/200774", "https://data.delijn.be/stops/209237"], ["https://data.delijn.be/stops/503196", "https://data.delijn.be/stops/503199"], ["https://data.delijn.be/stops/501088", "https://data.delijn.be/stops/506088"], ["https://data.delijn.be/stops/108697", "https://data.delijn.be/stops/108700"], ["https://data.delijn.be/stops/102604", "https://data.delijn.be/stops/106117"], ["https://data.delijn.be/stops/204565", "https://data.delijn.be/stops/204566"], ["https://data.delijn.be/stops/400727", "https://data.delijn.be/stops/405172"], ["https://data.delijn.be/stops/207664", "https://data.delijn.be/stops/208505"], ["https://data.delijn.be/stops/501484", "https://data.delijn.be/stops/506683"], ["https://data.delijn.be/stops/207866", "https://data.delijn.be/stops/208750"], ["https://data.delijn.be/stops/202921", "https://data.delijn.be/stops/202922"], ["https://data.delijn.be/stops/505558", "https://data.delijn.be/stops/507260"], ["https://data.delijn.be/stops/504723", "https://data.delijn.be/stops/509484"], ["https://data.delijn.be/stops/107603", "https://data.delijn.be/stops/107654"], ["https://data.delijn.be/stops/300456", "https://data.delijn.be/stops/305002"], ["https://data.delijn.be/stops/103963", "https://data.delijn.be/stops/405018"], ["https://data.delijn.be/stops/301231", "https://data.delijn.be/stops/301236"], ["https://data.delijn.be/stops/406132", "https://data.delijn.be/stops/406133"], ["https://data.delijn.be/stops/200383", "https://data.delijn.be/stops/201367"], ["https://data.delijn.be/stops/505714", "https://data.delijn.be/stops/509037"], ["https://data.delijn.be/stops/106284", "https://data.delijn.be/stops/106303"], ["https://data.delijn.be/stops/206561", "https://data.delijn.be/stops/207542"], ["https://data.delijn.be/stops/201122", "https://data.delijn.be/stops/201123"], ["https://data.delijn.be/stops/308458", "https://data.delijn.be/stops/308467"], ["https://data.delijn.be/stops/209597", "https://data.delijn.be/stops/301413"], ["https://data.delijn.be/stops/206724", "https://data.delijn.be/stops/207998"], ["https://data.delijn.be/stops/102745", "https://data.delijn.be/stops/102775"], ["https://data.delijn.be/stops/303582", "https://data.delijn.be/stops/306398"], ["https://data.delijn.be/stops/300121", "https://data.delijn.be/stops/304999"], ["https://data.delijn.be/stops/407281", "https://data.delijn.be/stops/407781"], ["https://data.delijn.be/stops/200755", "https://data.delijn.be/stops/208307"], ["https://data.delijn.be/stops/304361", "https://data.delijn.be/stops/307368"], ["https://data.delijn.be/stops/205113", "https://data.delijn.be/stops/205690"], ["https://data.delijn.be/stops/105483", "https://data.delijn.be/stops/108802"], ["https://data.delijn.be/stops/300051", "https://data.delijn.be/stops/307729"], ["https://data.delijn.be/stops/406748", "https://data.delijn.be/stops/409463"], ["https://data.delijn.be/stops/102014", "https://data.delijn.be/stops/104459"], ["https://data.delijn.be/stops/304280", "https://data.delijn.be/stops/304281"], ["https://data.delijn.be/stops/304102", "https://data.delijn.be/stops/306000"], ["https://data.delijn.be/stops/200805", "https://data.delijn.be/stops/202054"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/501181"], ["https://data.delijn.be/stops/409099", "https://data.delijn.be/stops/409157"], ["https://data.delijn.be/stops/202022", "https://data.delijn.be/stops/202349"], ["https://data.delijn.be/stops/300826", "https://data.delijn.be/stops/300855"], ["https://data.delijn.be/stops/305028", "https://data.delijn.be/stops/308034"], ["https://data.delijn.be/stops/408573", "https://data.delijn.be/stops/408574"], ["https://data.delijn.be/stops/304208", "https://data.delijn.be/stops/308981"], ["https://data.delijn.be/stops/305532", "https://data.delijn.be/stops/305583"], ["https://data.delijn.be/stops/202049", "https://data.delijn.be/stops/203436"], ["https://data.delijn.be/stops/206088", "https://data.delijn.be/stops/207088"], ["https://data.delijn.be/stops/400419", "https://data.delijn.be/stops/405133"], ["https://data.delijn.be/stops/307616", "https://data.delijn.be/stops/307620"], ["https://data.delijn.be/stops/106427", "https://data.delijn.be/stops/106431"], ["https://data.delijn.be/stops/206770", "https://data.delijn.be/stops/209541"], ["https://data.delijn.be/stops/208660", "https://data.delijn.be/stops/209152"], ["https://data.delijn.be/stops/506447", "https://data.delijn.be/stops/506451"], ["https://data.delijn.be/stops/501266", "https://data.delijn.be/stops/501334"], ["https://data.delijn.be/stops/201538", "https://data.delijn.be/stops/211049"], ["https://data.delijn.be/stops/201217", "https://data.delijn.be/stops/201302"], ["https://data.delijn.be/stops/101341", "https://data.delijn.be/stops/108104"], ["https://data.delijn.be/stops/103219", "https://data.delijn.be/stops/107367"], ["https://data.delijn.be/stops/208243", "https://data.delijn.be/stops/209243"], ["https://data.delijn.be/stops/402283", "https://data.delijn.be/stops/405013"], ["https://data.delijn.be/stops/105796", "https://data.delijn.be/stops/105797"], ["https://data.delijn.be/stops/403148", "https://data.delijn.be/stops/403152"], ["https://data.delijn.be/stops/302002", "https://data.delijn.be/stops/302019"], ["https://data.delijn.be/stops/208631", "https://data.delijn.be/stops/209045"], ["https://data.delijn.be/stops/301484", "https://data.delijn.be/stops/301494"], ["https://data.delijn.be/stops/304902", "https://data.delijn.be/stops/306178"], ["https://data.delijn.be/stops/107047", "https://data.delijn.be/stops/107048"], ["https://data.delijn.be/stops/203385", "https://data.delijn.be/stops/203386"], ["https://data.delijn.be/stops/205423", "https://data.delijn.be/stops/205424"], ["https://data.delijn.be/stops/401650", "https://data.delijn.be/stops/405390"], ["https://data.delijn.be/stops/305829", "https://data.delijn.be/stops/305962"], ["https://data.delijn.be/stops/401482", "https://data.delijn.be/stops/401539"], ["https://data.delijn.be/stops/103597", "https://data.delijn.be/stops/109399"], ["https://data.delijn.be/stops/401784", "https://data.delijn.be/stops/401870"], ["https://data.delijn.be/stops/204208", "https://data.delijn.be/stops/215011"], ["https://data.delijn.be/stops/206062", "https://data.delijn.be/stops/206500"], ["https://data.delijn.be/stops/202826", "https://data.delijn.be/stops/203827"], ["https://data.delijn.be/stops/208173", "https://data.delijn.be/stops/209173"], ["https://data.delijn.be/stops/501087", "https://data.delijn.be/stops/501100"], ["https://data.delijn.be/stops/306868", "https://data.delijn.be/stops/307426"], ["https://data.delijn.be/stops/206643", "https://data.delijn.be/stops/209686"], ["https://data.delijn.be/stops/408821", "https://data.delijn.be/stops/408871"], ["https://data.delijn.be/stops/407203", "https://data.delijn.be/stops/407206"], ["https://data.delijn.be/stops/502523", "https://data.delijn.be/stops/502525"], ["https://data.delijn.be/stops/109168", "https://data.delijn.be/stops/109170"], ["https://data.delijn.be/stops/208122", "https://data.delijn.be/stops/208289"], ["https://data.delijn.be/stops/202959", "https://data.delijn.be/stops/203958"], ["https://data.delijn.be/stops/302869", "https://data.delijn.be/stops/303950"], ["https://data.delijn.be/stops/501090", "https://data.delijn.be/stops/505244"], ["https://data.delijn.be/stops/204014", "https://data.delijn.be/stops/205014"], ["https://data.delijn.be/stops/301046", "https://data.delijn.be/stops/301054"], ["https://data.delijn.be/stops/308229", "https://data.delijn.be/stops/308235"], ["https://data.delijn.be/stops/303190", "https://data.delijn.be/stops/303204"], ["https://data.delijn.be/stops/200064", "https://data.delijn.be/stops/200267"], ["https://data.delijn.be/stops/203831", "https://data.delijn.be/stops/211065"], ["https://data.delijn.be/stops/203079", "https://data.delijn.be/stops/203607"], ["https://data.delijn.be/stops/303826", "https://data.delijn.be/stops/303827"], ["https://data.delijn.be/stops/302012", "https://data.delijn.be/stops/302013"], ["https://data.delijn.be/stops/108122", "https://data.delijn.be/stops/108123"], ["https://data.delijn.be/stops/405716", "https://data.delijn.be/stops/405718"], ["https://data.delijn.be/stops/200581", "https://data.delijn.be/stops/201733"], ["https://data.delijn.be/stops/504406", "https://data.delijn.be/stops/509406"], ["https://data.delijn.be/stops/101898", "https://data.delijn.be/stops/107802"], ["https://data.delijn.be/stops/105206", "https://data.delijn.be/stops/108874"], ["https://data.delijn.be/stops/402735", "https://data.delijn.be/stops/308175"], ["https://data.delijn.be/stops/408576", "https://data.delijn.be/stops/408636"], ["https://data.delijn.be/stops/504977", "https://data.delijn.be/stops/505107"], ["https://data.delijn.be/stops/206433", "https://data.delijn.be/stops/207432"], ["https://data.delijn.be/stops/502806", "https://data.delijn.be/stops/507511"], ["https://data.delijn.be/stops/503539", "https://data.delijn.be/stops/508559"], ["https://data.delijn.be/stops/104454", "https://data.delijn.be/stops/104471"], ["https://data.delijn.be/stops/203834", "https://data.delijn.be/stops/203835"], ["https://data.delijn.be/stops/409574", "https://data.delijn.be/stops/410337"], ["https://data.delijn.be/stops/106397", "https://data.delijn.be/stops/107275"], ["https://data.delijn.be/stops/106590", "https://data.delijn.be/stops/107277"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/509932"], ["https://data.delijn.be/stops/209633", "https://data.delijn.be/stops/209634"], ["https://data.delijn.be/stops/201372", "https://data.delijn.be/stops/201373"], ["https://data.delijn.be/stops/108100", "https://data.delijn.be/stops/108103"], ["https://data.delijn.be/stops/103572", "https://data.delijn.be/stops/107131"], ["https://data.delijn.be/stops/403022", "https://data.delijn.be/stops/409306"], ["https://data.delijn.be/stops/107796", "https://data.delijn.be/stops/107824"], ["https://data.delijn.be/stops/105749", "https://data.delijn.be/stops/109821"], ["https://data.delijn.be/stops/504299", "https://data.delijn.be/stops/509299"], ["https://data.delijn.be/stops/104411", "https://data.delijn.be/stops/204489"], ["https://data.delijn.be/stops/503608", "https://data.delijn.be/stops/508850"], ["https://data.delijn.be/stops/202171", "https://data.delijn.be/stops/203172"], ["https://data.delijn.be/stops/208551", "https://data.delijn.be/stops/209551"], ["https://data.delijn.be/stops/408035", "https://data.delijn.be/stops/408057"], ["https://data.delijn.be/stops/505213", "https://data.delijn.be/stops/505916"], ["https://data.delijn.be/stops/205933", "https://data.delijn.be/stops/211076"], ["https://data.delijn.be/stops/105531", "https://data.delijn.be/stops/105537"], ["https://data.delijn.be/stops/208588", "https://data.delijn.be/stops/300306"], ["https://data.delijn.be/stops/202535", "https://data.delijn.be/stops/205243"], ["https://data.delijn.be/stops/509109", "https://data.delijn.be/stops/509446"], ["https://data.delijn.be/stops/206627", "https://data.delijn.be/stops/207626"], ["https://data.delijn.be/stops/301522", "https://data.delijn.be/stops/305737"], ["https://data.delijn.be/stops/106278", "https://data.delijn.be/stops/106279"], ["https://data.delijn.be/stops/200891", "https://data.delijn.be/stops/507275"], ["https://data.delijn.be/stops/202834", "https://data.delijn.be/stops/208656"], ["https://data.delijn.be/stops/307222", "https://data.delijn.be/stops/307223"], ["https://data.delijn.be/stops/205002", "https://data.delijn.be/stops/205213"], ["https://data.delijn.be/stops/209316", "https://data.delijn.be/stops/209795"], ["https://data.delijn.be/stops/402504", "https://data.delijn.be/stops/402571"], ["https://data.delijn.be/stops/303748", "https://data.delijn.be/stops/303749"], ["https://data.delijn.be/stops/501215", "https://data.delijn.be/stops/506216"], ["https://data.delijn.be/stops/104020", "https://data.delijn.be/stops/104640"], ["https://data.delijn.be/stops/405919", "https://data.delijn.be/stops/405992"], ["https://data.delijn.be/stops/408204", "https://data.delijn.be/stops/408225"], ["https://data.delijn.be/stops/401853", "https://data.delijn.be/stops/406349"], ["https://data.delijn.be/stops/306633", "https://data.delijn.be/stops/307234"], ["https://data.delijn.be/stops/303820", "https://data.delijn.be/stops/303845"], ["https://data.delijn.be/stops/205463", "https://data.delijn.be/stops/214017"], ["https://data.delijn.be/stops/208493", "https://data.delijn.be/stops/219025"], ["https://data.delijn.be/stops/405336", "https://data.delijn.be/stops/405346"], ["https://data.delijn.be/stops/201879", "https://data.delijn.be/stops/210035"], ["https://data.delijn.be/stops/504545", "https://data.delijn.be/stops/504553"], ["https://data.delijn.be/stops/504786", "https://data.delijn.be/stops/504790"], ["https://data.delijn.be/stops/107851", "https://data.delijn.be/stops/107853"], ["https://data.delijn.be/stops/502210", "https://data.delijn.be/stops/507210"], ["https://data.delijn.be/stops/109007", "https://data.delijn.be/stops/109008"], ["https://data.delijn.be/stops/507682", "https://data.delijn.be/stops/509829"], ["https://data.delijn.be/stops/200975", "https://data.delijn.be/stops/206759"], ["https://data.delijn.be/stops/307300", "https://data.delijn.be/stops/307302"], ["https://data.delijn.be/stops/208084", "https://data.delijn.be/stops/209084"], ["https://data.delijn.be/stops/401486", "https://data.delijn.be/stops/401537"], ["https://data.delijn.be/stops/409774", "https://data.delijn.be/stops/410035"], ["https://data.delijn.be/stops/500559", "https://data.delijn.be/stops/501037"], ["https://data.delijn.be/stops/206895", "https://data.delijn.be/stops/207894"], ["https://data.delijn.be/stops/201165", "https://data.delijn.be/stops/203170"], ["https://data.delijn.be/stops/305399", "https://data.delijn.be/stops/305402"], ["https://data.delijn.be/stops/208019", "https://data.delijn.be/stops/209029"], ["https://data.delijn.be/stops/502644", "https://data.delijn.be/stops/507242"], ["https://data.delijn.be/stops/404436", "https://data.delijn.be/stops/404437"], ["https://data.delijn.be/stops/405878", "https://data.delijn.be/stops/409748"], ["https://data.delijn.be/stops/201744", "https://data.delijn.be/stops/203781"], ["https://data.delijn.be/stops/409504", "https://data.delijn.be/stops/409506"], ["https://data.delijn.be/stops/403339", "https://data.delijn.be/stops/403340"], ["https://data.delijn.be/stops/501594", "https://data.delijn.be/stops/504682"], ["https://data.delijn.be/stops/200943", "https://data.delijn.be/stops/202696"], ["https://data.delijn.be/stops/109719", "https://data.delijn.be/stops/400441"], ["https://data.delijn.be/stops/207944", "https://data.delijn.be/stops/208554"], ["https://data.delijn.be/stops/503530", "https://data.delijn.be/stops/504762"], ["https://data.delijn.be/stops/205023", "https://data.delijn.be/stops/205024"], ["https://data.delijn.be/stops/300185", "https://data.delijn.be/stops/300223"], ["https://data.delijn.be/stops/107143", "https://data.delijn.be/stops/108923"], ["https://data.delijn.be/stops/400561", "https://data.delijn.be/stops/407790"], ["https://data.delijn.be/stops/401036", "https://data.delijn.be/stops/401038"], ["https://data.delijn.be/stops/208432", "https://data.delijn.be/stops/209432"], ["https://data.delijn.be/stops/505655", "https://data.delijn.be/stops/505658"], ["https://data.delijn.be/stops/305008", "https://data.delijn.be/stops/305009"], ["https://data.delijn.be/stops/108149", "https://data.delijn.be/stops/108151"], ["https://data.delijn.be/stops/300015", "https://data.delijn.be/stops/301984"], ["https://data.delijn.be/stops/405308", "https://data.delijn.be/stops/406711"], ["https://data.delijn.be/stops/303211", "https://data.delijn.be/stops/306282"], ["https://data.delijn.be/stops/403742", "https://data.delijn.be/stops/403754"], ["https://data.delijn.be/stops/407584", "https://data.delijn.be/stops/407586"], ["https://data.delijn.be/stops/506174", "https://data.delijn.be/stops/506782"], ["https://data.delijn.be/stops/504200", "https://data.delijn.be/stops/504257"], ["https://data.delijn.be/stops/108367", "https://data.delijn.be/stops/304920"], ["https://data.delijn.be/stops/506029", "https://data.delijn.be/stops/506041"], ["https://data.delijn.be/stops/405693", "https://data.delijn.be/stops/405910"], ["https://data.delijn.be/stops/204111", "https://data.delijn.be/stops/204113"], ["https://data.delijn.be/stops/503402", "https://data.delijn.be/stops/507818"], ["https://data.delijn.be/stops/101537", "https://data.delijn.be/stops/109074"], ["https://data.delijn.be/stops/504167", "https://data.delijn.be/stops/505988"], ["https://data.delijn.be/stops/103234", "https://data.delijn.be/stops/109437"], ["https://data.delijn.be/stops/403784", "https://data.delijn.be/stops/403786"], ["https://data.delijn.be/stops/400761", "https://data.delijn.be/stops/400861"], ["https://data.delijn.be/stops/206817", "https://data.delijn.be/stops/207817"], ["https://data.delijn.be/stops/504281", "https://data.delijn.be/stops/509289"], ["https://data.delijn.be/stops/405922", "https://data.delijn.be/stops/405978"], ["https://data.delijn.be/stops/200174", "https://data.delijn.be/stops/201174"], ["https://data.delijn.be/stops/502572", "https://data.delijn.be/stops/505700"], ["https://data.delijn.be/stops/101596", "https://data.delijn.be/stops/106591"], ["https://data.delijn.be/stops/504263", "https://data.delijn.be/stops/504707"], ["https://data.delijn.be/stops/206075", "https://data.delijn.be/stops/207871"], ["https://data.delijn.be/stops/206670", "https://data.delijn.be/stops/209343"], ["https://data.delijn.be/stops/200619", "https://data.delijn.be/stops/201619"], ["https://data.delijn.be/stops/207169", "https://data.delijn.be/stops/303842"], ["https://data.delijn.be/stops/106626", "https://data.delijn.be/stops/106628"], ["https://data.delijn.be/stops/107923", "https://data.delijn.be/stops/308798"], ["https://data.delijn.be/stops/206777", "https://data.delijn.be/stops/209480"], ["https://data.delijn.be/stops/401422", "https://data.delijn.be/stops/401627"], ["https://data.delijn.be/stops/503526", "https://data.delijn.be/stops/504767"], ["https://data.delijn.be/stops/202242", "https://data.delijn.be/stops/203242"], ["https://data.delijn.be/stops/406171", "https://data.delijn.be/stops/406181"], ["https://data.delijn.be/stops/503233", "https://data.delijn.be/stops/503248"], ["https://data.delijn.be/stops/308745", "https://data.delijn.be/stops/308746"], ["https://data.delijn.be/stops/407750", "https://data.delijn.be/stops/409795"], ["https://data.delijn.be/stops/302081", "https://data.delijn.be/stops/302088"], ["https://data.delijn.be/stops/404446", "https://data.delijn.be/stops/404495"], ["https://data.delijn.be/stops/300391", "https://data.delijn.be/stops/307279"], ["https://data.delijn.be/stops/209677", "https://data.delijn.be/stops/209793"], ["https://data.delijn.be/stops/209180", "https://data.delijn.be/stops/209191"], ["https://data.delijn.be/stops/303354", "https://data.delijn.be/stops/303370"], ["https://data.delijn.be/stops/204334", "https://data.delijn.be/stops/205041"], ["https://data.delijn.be/stops/501200", "https://data.delijn.be/stops/501254"], ["https://data.delijn.be/stops/300126", "https://data.delijn.be/stops/304381"], ["https://data.delijn.be/stops/300844", "https://data.delijn.be/stops/306719"], ["https://data.delijn.be/stops/108334", "https://data.delijn.be/stops/109303"], ["https://data.delijn.be/stops/201495", "https://data.delijn.be/stops/211124"], ["https://data.delijn.be/stops/107852", "https://data.delijn.be/stops/107854"], ["https://data.delijn.be/stops/207958", "https://data.delijn.be/stops/308567"], ["https://data.delijn.be/stops/404314", "https://data.delijn.be/stops/404369"], ["https://data.delijn.be/stops/102411", "https://data.delijn.be/stops/104391"], ["https://data.delijn.be/stops/204530", "https://data.delijn.be/stops/205761"], ["https://data.delijn.be/stops/200933", "https://data.delijn.be/stops/203264"], ["https://data.delijn.be/stops/108698", "https://data.delijn.be/stops/108850"], ["https://data.delijn.be/stops/502719", "https://data.delijn.be/stops/502731"], ["https://data.delijn.be/stops/208590", "https://data.delijn.be/stops/209591"], ["https://data.delijn.be/stops/206150", "https://data.delijn.be/stops/206151"], ["https://data.delijn.be/stops/401980", "https://data.delijn.be/stops/403884"], ["https://data.delijn.be/stops/207128", "https://data.delijn.be/stops/207130"], ["https://data.delijn.be/stops/202456", "https://data.delijn.be/stops/203487"], ["https://data.delijn.be/stops/202451", "https://data.delijn.be/stops/210095"], ["https://data.delijn.be/stops/204309", "https://data.delijn.be/stops/204338"], ["https://data.delijn.be/stops/300807", "https://data.delijn.be/stops/307571"], ["https://data.delijn.be/stops/504274", "https://data.delijn.be/stops/509270"], ["https://data.delijn.be/stops/402409", "https://data.delijn.be/stops/404642"], ["https://data.delijn.be/stops/404665", "https://data.delijn.be/stops/404687"], ["https://data.delijn.be/stops/503497", "https://data.delijn.be/stops/508872"], ["https://data.delijn.be/stops/304208", "https://data.delijn.be/stops/305349"], ["https://data.delijn.be/stops/302109", "https://data.delijn.be/stops/302124"], ["https://data.delijn.be/stops/304631", "https://data.delijn.be/stops/308756"], ["https://data.delijn.be/stops/407450", "https://data.delijn.be/stops/407454"], ["https://data.delijn.be/stops/218030", "https://data.delijn.be/stops/219028"], ["https://data.delijn.be/stops/202450", "https://data.delijn.be/stops/209987"], ["https://data.delijn.be/stops/202402", "https://data.delijn.be/stops/203401"], ["https://data.delijn.be/stops/302956", "https://data.delijn.be/stops/302985"], ["https://data.delijn.be/stops/305820", "https://data.delijn.be/stops/305860"], ["https://data.delijn.be/stops/205251", "https://data.delijn.be/stops/205732"], ["https://data.delijn.be/stops/402393", "https://data.delijn.be/stops/402394"], ["https://data.delijn.be/stops/508782", "https://data.delijn.be/stops/508784"], ["https://data.delijn.be/stops/200618", "https://data.delijn.be/stops/201618"], ["https://data.delijn.be/stops/204373", "https://data.delijn.be/stops/205383"], ["https://data.delijn.be/stops/409126", "https://data.delijn.be/stops/409522"], ["https://data.delijn.be/stops/502501", "https://data.delijn.be/stops/502811"], ["https://data.delijn.be/stops/401489", "https://data.delijn.be/stops/410291"], ["https://data.delijn.be/stops/104002", "https://data.delijn.be/stops/104006"], ["https://data.delijn.be/stops/200552", "https://data.delijn.be/stops/208849"], ["https://data.delijn.be/stops/405147", "https://data.delijn.be/stops/405204"], ["https://data.delijn.be/stops/301825", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/506776", "https://data.delijn.be/stops/506777"], ["https://data.delijn.be/stops/301330", "https://data.delijn.be/stops/301331"], ["https://data.delijn.be/stops/208586", "https://data.delijn.be/stops/209585"], ["https://data.delijn.be/stops/307558", "https://data.delijn.be/stops/307761"], ["https://data.delijn.be/stops/304249", "https://data.delijn.be/stops/304250"], ["https://data.delijn.be/stops/200966", "https://data.delijn.be/stops/208952"], ["https://data.delijn.be/stops/105117", "https://data.delijn.be/stops/105153"], ["https://data.delijn.be/stops/303049", "https://data.delijn.be/stops/304928"], ["https://data.delijn.be/stops/508963", "https://data.delijn.be/stops/508969"], ["https://data.delijn.be/stops/409710", "https://data.delijn.be/stops/409718"], ["https://data.delijn.be/stops/503869", "https://data.delijn.be/stops/508869"], ["https://data.delijn.be/stops/503870", "https://data.delijn.be/stops/508872"], ["https://data.delijn.be/stops/402442", "https://data.delijn.be/stops/402444"], ["https://data.delijn.be/stops/207686", "https://data.delijn.be/stops/207749"], ["https://data.delijn.be/stops/403275", "https://data.delijn.be/stops/403384"], ["https://data.delijn.be/stops/304247", "https://data.delijn.be/stops/306671"], ["https://data.delijn.be/stops/300624", "https://data.delijn.be/stops/300730"], ["https://data.delijn.be/stops/206095", "https://data.delijn.be/stops/206723"], ["https://data.delijn.be/stops/504667", "https://data.delijn.be/stops/504668"], ["https://data.delijn.be/stops/407022", "https://data.delijn.be/stops/407024"], ["https://data.delijn.be/stops/202526", "https://data.delijn.be/stops/203526"], ["https://data.delijn.be/stops/308500", "https://data.delijn.be/stops/308539"], ["https://data.delijn.be/stops/204782", "https://data.delijn.be/stops/205474"], ["https://data.delijn.be/stops/505428", "https://data.delijn.be/stops/505429"], ["https://data.delijn.be/stops/103752", "https://data.delijn.be/stops/103753"], ["https://data.delijn.be/stops/204136", "https://data.delijn.be/stops/205135"], ["https://data.delijn.be/stops/103989", "https://data.delijn.be/stops/109096"], ["https://data.delijn.be/stops/305529", "https://data.delijn.be/stops/308684"], ["https://data.delijn.be/stops/305302", "https://data.delijn.be/stops/308642"], ["https://data.delijn.be/stops/206277", "https://data.delijn.be/stops/207455"], ["https://data.delijn.be/stops/501153", "https://data.delijn.be/stops/501166"], ["https://data.delijn.be/stops/300817", "https://data.delijn.be/stops/303832"], ["https://data.delijn.be/stops/102074", "https://data.delijn.be/stops/107641"], ["https://data.delijn.be/stops/206587", "https://data.delijn.be/stops/206842"], ["https://data.delijn.be/stops/106492", "https://data.delijn.be/stops/109256"], ["https://data.delijn.be/stops/206249", "https://data.delijn.be/stops/207248"], ["https://data.delijn.be/stops/301920", "https://data.delijn.be/stops/301922"], ["https://data.delijn.be/stops/503818", "https://data.delijn.be/stops/508436"], ["https://data.delijn.be/stops/400768", "https://data.delijn.be/stops/410087"], ["https://data.delijn.be/stops/504146", "https://data.delijn.be/stops/509141"], ["https://data.delijn.be/stops/202395", "https://data.delijn.be/stops/203391"], ["https://data.delijn.be/stops/400222", "https://data.delijn.be/stops/400223"], ["https://data.delijn.be/stops/305748", "https://data.delijn.be/stops/305749"], ["https://data.delijn.be/stops/108084", "https://data.delijn.be/stops/108447"], ["https://data.delijn.be/stops/200428", "https://data.delijn.be/stops/201428"], ["https://data.delijn.be/stops/507931", "https://data.delijn.be/stops/507932"], ["https://data.delijn.be/stops/404714", "https://data.delijn.be/stops/404766"], ["https://data.delijn.be/stops/200968", "https://data.delijn.be/stops/206789"], ["https://data.delijn.be/stops/301366", "https://data.delijn.be/stops/301371"], ["https://data.delijn.be/stops/400906", "https://data.delijn.be/stops/400949"], ["https://data.delijn.be/stops/204740", "https://data.delijn.be/stops/205740"], ["https://data.delijn.be/stops/406162", "https://data.delijn.be/stops/408472"], ["https://data.delijn.be/stops/206964", "https://data.delijn.be/stops/217003"], ["https://data.delijn.be/stops/206913", "https://data.delijn.be/stops/207016"], ["https://data.delijn.be/stops/400639", "https://data.delijn.be/stops/400921"], ["https://data.delijn.be/stops/410061", "https://data.delijn.be/stops/410062"], ["https://data.delijn.be/stops/502374", "https://data.delijn.be/stops/505689"], ["https://data.delijn.be/stops/208845", "https://data.delijn.be/stops/208849"], ["https://data.delijn.be/stops/504143", "https://data.delijn.be/stops/505442"], ["https://data.delijn.be/stops/105203", "https://data.delijn.be/stops/105204"], ["https://data.delijn.be/stops/405118", "https://data.delijn.be/stops/405862"], ["https://data.delijn.be/stops/109885", "https://data.delijn.be/stops/109886"], ["https://data.delijn.be/stops/102191", "https://data.delijn.be/stops/104261"], ["https://data.delijn.be/stops/508837", "https://data.delijn.be/stops/508838"], ["https://data.delijn.be/stops/501361", "https://data.delijn.be/stops/505358"], ["https://data.delijn.be/stops/407299", "https://data.delijn.be/stops/303646"], ["https://data.delijn.be/stops/503524", "https://data.delijn.be/stops/508524"], ["https://data.delijn.be/stops/501427", "https://data.delijn.be/stops/506678"], ["https://data.delijn.be/stops/104507", "https://data.delijn.be/stops/107926"], ["https://data.delijn.be/stops/103125", "https://data.delijn.be/stops/105020"], ["https://data.delijn.be/stops/107284", "https://data.delijn.be/stops/107286"], ["https://data.delijn.be/stops/408903", "https://data.delijn.be/stops/408907"], ["https://data.delijn.be/stops/408016", "https://data.delijn.be/stops/408017"], ["https://data.delijn.be/stops/401766", "https://data.delijn.be/stops/406346"], ["https://data.delijn.be/stops/400090", "https://data.delijn.be/stops/400153"], ["https://data.delijn.be/stops/103619", "https://data.delijn.be/stops/109214"], ["https://data.delijn.be/stops/405042", "https://data.delijn.be/stops/405804"], ["https://data.delijn.be/stops/104288", "https://data.delijn.be/stops/109748"], ["https://data.delijn.be/stops/202096", "https://data.delijn.be/stops/203097"], ["https://data.delijn.be/stops/208536", "https://data.delijn.be/stops/209537"], ["https://data.delijn.be/stops/501517", "https://data.delijn.be/stops/506318"], ["https://data.delijn.be/stops/503251", "https://data.delijn.be/stops/508246"], ["https://data.delijn.be/stops/408640", "https://data.delijn.be/stops/408664"], ["https://data.delijn.be/stops/105234", "https://data.delijn.be/stops/105268"], ["https://data.delijn.be/stops/108063", "https://data.delijn.be/stops/108066"], ["https://data.delijn.be/stops/507598", "https://data.delijn.be/stops/507601"], ["https://data.delijn.be/stops/101315", "https://data.delijn.be/stops/103118"], ["https://data.delijn.be/stops/400619", "https://data.delijn.be/stops/400624"], ["https://data.delijn.be/stops/402418", "https://data.delijn.be/stops/402458"], ["https://data.delijn.be/stops/204092", "https://data.delijn.be/stops/204100"], ["https://data.delijn.be/stops/101925", "https://data.delijn.be/stops/104005"], ["https://data.delijn.be/stops/302511", "https://data.delijn.be/stops/305873"], ["https://data.delijn.be/stops/208556", "https://data.delijn.be/stops/208612"], ["https://data.delijn.be/stops/305768", "https://data.delijn.be/stops/305769"], ["https://data.delijn.be/stops/207872", "https://data.delijn.be/stops/208366"], ["https://data.delijn.be/stops/406795", "https://data.delijn.be/stops/406796"], ["https://data.delijn.be/stops/104993", "https://data.delijn.be/stops/400391"], ["https://data.delijn.be/stops/106207", "https://data.delijn.be/stops/106213"], ["https://data.delijn.be/stops/207015", "https://data.delijn.be/stops/207024"], ["https://data.delijn.be/stops/305839", "https://data.delijn.be/stops/305841"], ["https://data.delijn.be/stops/404408", "https://data.delijn.be/stops/404409"], ["https://data.delijn.be/stops/209599", "https://data.delijn.be/stops/307600"], ["https://data.delijn.be/stops/201162", "https://data.delijn.be/stops/201527"], ["https://data.delijn.be/stops/105597", "https://data.delijn.be/stops/106360"], ["https://data.delijn.be/stops/105699", "https://data.delijn.be/stops/106074"], ["https://data.delijn.be/stops/200117", "https://data.delijn.be/stops/200871"], ["https://data.delijn.be/stops/301696", "https://data.delijn.be/stops/301725"], ["https://data.delijn.be/stops/406289", "https://data.delijn.be/stops/406423"], ["https://data.delijn.be/stops/202776", "https://data.delijn.be/stops/202816"], ["https://data.delijn.be/stops/304109", "https://data.delijn.be/stops/307996"], ["https://data.delijn.be/stops/300811", "https://data.delijn.be/stops/307233"], ["https://data.delijn.be/stops/407223", "https://data.delijn.be/stops/407442"], ["https://data.delijn.be/stops/207768", "https://data.delijn.be/stops/207780"], ["https://data.delijn.be/stops/104691", "https://data.delijn.be/stops/107356"], ["https://data.delijn.be/stops/407969", "https://data.delijn.be/stops/408424"], ["https://data.delijn.be/stops/402739", "https://data.delijn.be/stops/402945"], ["https://data.delijn.be/stops/404538", "https://data.delijn.be/stops/404730"], ["https://data.delijn.be/stops/505019", "https://data.delijn.be/stops/507665"], ["https://data.delijn.be/stops/504971", "https://data.delijn.be/stops/505578"], ["https://data.delijn.be/stops/504817", "https://data.delijn.be/stops/508017"], ["https://data.delijn.be/stops/302968", "https://data.delijn.be/stops/304186"], ["https://data.delijn.be/stops/503906", "https://data.delijn.be/stops/505103"], ["https://data.delijn.be/stops/305068", "https://data.delijn.be/stops/305069"], ["https://data.delijn.be/stops/103230", "https://data.delijn.be/stops/108575"], ["https://data.delijn.be/stops/108875", "https://data.delijn.be/stops/109140"], ["https://data.delijn.be/stops/101620", "https://data.delijn.be/stops/102908"], ["https://data.delijn.be/stops/406998", "https://data.delijn.be/stops/407280"], ["https://data.delijn.be/stops/504529", "https://data.delijn.be/stops/509528"], ["https://data.delijn.be/stops/204977", "https://data.delijn.be/stops/208246"], ["https://data.delijn.be/stops/208415", "https://data.delijn.be/stops/208416"], ["https://data.delijn.be/stops/106149", "https://data.delijn.be/stops/106440"], ["https://data.delijn.be/stops/406188", "https://data.delijn.be/stops/410101"], ["https://data.delijn.be/stops/106512", "https://data.delijn.be/stops/106514"], ["https://data.delijn.be/stops/302440", "https://data.delijn.be/stops/302441"], ["https://data.delijn.be/stops/108942", "https://data.delijn.be/stops/109224"], ["https://data.delijn.be/stops/105727", "https://data.delijn.be/stops/105728"], ["https://data.delijn.be/stops/402390", "https://data.delijn.be/stops/410041"], ["https://data.delijn.be/stops/202952", "https://data.delijn.be/stops/203482"], ["https://data.delijn.be/stops/503372", "https://data.delijn.be/stops/508382"], ["https://data.delijn.be/stops/403947", "https://data.delijn.be/stops/308746"], ["https://data.delijn.be/stops/109139", "https://data.delijn.be/stops/109157"], ["https://data.delijn.be/stops/200019", "https://data.delijn.be/stops/203355"], ["https://data.delijn.be/stops/503109", "https://data.delijn.be/stops/503155"], ["https://data.delijn.be/stops/101492", "https://data.delijn.be/stops/102256"], ["https://data.delijn.be/stops/200344", "https://data.delijn.be/stops/201377"], ["https://data.delijn.be/stops/308108", "https://data.delijn.be/stops/308109"], ["https://data.delijn.be/stops/107002", "https://data.delijn.be/stops/107003"], ["https://data.delijn.be/stops/500007", "https://data.delijn.be/stops/508065"], ["https://data.delijn.be/stops/105431", "https://data.delijn.be/stops/109842"], ["https://data.delijn.be/stops/104239", "https://data.delijn.be/stops/106878"], ["https://data.delijn.be/stops/503775", "https://data.delijn.be/stops/508775"], ["https://data.delijn.be/stops/101367", "https://data.delijn.be/stops/106417"], ["https://data.delijn.be/stops/202042", "https://data.delijn.be/stops/202686"], ["https://data.delijn.be/stops/206721", "https://data.delijn.be/stops/206729"], ["https://data.delijn.be/stops/109566", "https://data.delijn.be/stops/109567"], ["https://data.delijn.be/stops/303269", "https://data.delijn.be/stops/303344"], ["https://data.delijn.be/stops/504396", "https://data.delijn.be/stops/504661"], ["https://data.delijn.be/stops/109167", "https://data.delijn.be/stops/109235"], ["https://data.delijn.be/stops/201377", "https://data.delijn.be/stops/201381"], ["https://data.delijn.be/stops/201648", "https://data.delijn.be/stops/203879"], ["https://data.delijn.be/stops/404638", "https://data.delijn.be/stops/406957"], ["https://data.delijn.be/stops/200696", "https://data.delijn.be/stops/210081"], ["https://data.delijn.be/stops/502111", "https://data.delijn.be/stops/507111"], ["https://data.delijn.be/stops/503535", "https://data.delijn.be/stops/504970"], ["https://data.delijn.be/stops/301771", "https://data.delijn.be/stops/302527"], ["https://data.delijn.be/stops/406910", "https://data.delijn.be/stops/409450"], ["https://data.delijn.be/stops/308420", "https://data.delijn.be/stops/308421"], ["https://data.delijn.be/stops/404956", "https://data.delijn.be/stops/404965"], ["https://data.delijn.be/stops/301777", "https://data.delijn.be/stops/301785"], ["https://data.delijn.be/stops/206266", "https://data.delijn.be/stops/207526"], ["https://data.delijn.be/stops/201326", "https://data.delijn.be/stops/208992"], ["https://data.delijn.be/stops/200432", "https://data.delijn.be/stops/201432"], ["https://data.delijn.be/stops/505257", "https://data.delijn.be/stops/508293"], ["https://data.delijn.be/stops/109746", "https://data.delijn.be/stops/109748"], ["https://data.delijn.be/stops/204735", "https://data.delijn.be/stops/205735"], ["https://data.delijn.be/stops/503278", "https://data.delijn.be/stops/508285"], ["https://data.delijn.be/stops/302210", "https://data.delijn.be/stops/302237"], ["https://data.delijn.be/stops/506300", "https://data.delijn.be/stops/506332"], ["https://data.delijn.be/stops/503519", "https://data.delijn.be/stops/504790"], ["https://data.delijn.be/stops/407452", "https://data.delijn.be/stops/407456"], ["https://data.delijn.be/stops/306059", "https://data.delijn.be/stops/306060"], ["https://data.delijn.be/stops/105461", "https://data.delijn.be/stops/105462"], ["https://data.delijn.be/stops/203964", "https://data.delijn.be/stops/204770"], ["https://data.delijn.be/stops/408840", "https://data.delijn.be/stops/408847"], ["https://data.delijn.be/stops/207667", "https://data.delijn.be/stops/209061"], ["https://data.delijn.be/stops/103530", "https://data.delijn.be/stops/105370"], ["https://data.delijn.be/stops/206428", "https://data.delijn.be/stops/209537"], ["https://data.delijn.be/stops/102310", "https://data.delijn.be/stops/102384"], ["https://data.delijn.be/stops/303438", "https://data.delijn.be/stops/303447"], ["https://data.delijn.be/stops/502704", "https://data.delijn.be/stops/505348"], ["https://data.delijn.be/stops/201692", "https://data.delijn.be/stops/202367"], ["https://data.delijn.be/stops/508499", "https://data.delijn.be/stops/508681"], ["https://data.delijn.be/stops/109512", "https://data.delijn.be/stops/109514"], ["https://data.delijn.be/stops/501154", "https://data.delijn.be/stops/506154"], ["https://data.delijn.be/stops/208415", "https://data.delijn.be/stops/209415"], ["https://data.delijn.be/stops/208277", "https://data.delijn.be/stops/209277"], ["https://data.delijn.be/stops/207343", "https://data.delijn.be/stops/207705"], ["https://data.delijn.be/stops/108992", "https://data.delijn.be/stops/108993"], ["https://data.delijn.be/stops/408198", "https://data.delijn.be/stops/409262"], ["https://data.delijn.be/stops/201886", "https://data.delijn.be/stops/203395"], ["https://data.delijn.be/stops/307554", "https://data.delijn.be/stops/307555"], ["https://data.delijn.be/stops/405882", "https://data.delijn.be/stops/409672"], ["https://data.delijn.be/stops/106570", "https://data.delijn.be/stops/106571"], ["https://data.delijn.be/stops/201283", "https://data.delijn.be/stops/201341"], ["https://data.delijn.be/stops/202926", "https://data.delijn.be/stops/202927"], ["https://data.delijn.be/stops/104410", "https://data.delijn.be/stops/104955"], ["https://data.delijn.be/stops/504174", "https://data.delijn.be/stops/508098"], ["https://data.delijn.be/stops/209517", "https://data.delijn.be/stops/209534"], ["https://data.delijn.be/stops/502069", "https://data.delijn.be/stops/507065"], ["https://data.delijn.be/stops/206251", "https://data.delijn.be/stops/207585"], ["https://data.delijn.be/stops/201232", "https://data.delijn.be/stops/202354"], ["https://data.delijn.be/stops/106084", "https://data.delijn.be/stops/106089"], ["https://data.delijn.be/stops/503183", "https://data.delijn.be/stops/503199"], ["https://data.delijn.be/stops/403192", "https://data.delijn.be/stops/404530"], ["https://data.delijn.be/stops/503356", "https://data.delijn.be/stops/503368"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/509556"], ["https://data.delijn.be/stops/200809", "https://data.delijn.be/stops/200810"], ["https://data.delijn.be/stops/102468", "https://data.delijn.be/stops/400359"], ["https://data.delijn.be/stops/408109", "https://data.delijn.be/stops/408159"], ["https://data.delijn.be/stops/103048", "https://data.delijn.be/stops/108645"], ["https://data.delijn.be/stops/402174", "https://data.delijn.be/stops/402313"], ["https://data.delijn.be/stops/400724", "https://data.delijn.be/stops/400802"], ["https://data.delijn.be/stops/400769", "https://data.delijn.be/stops/410088"], ["https://data.delijn.be/stops/302690", "https://data.delijn.be/stops/302701"], ["https://data.delijn.be/stops/200334", "https://data.delijn.be/stops/209491"], ["https://data.delijn.be/stops/402180", "https://data.delijn.be/stops/402431"], ["https://data.delijn.be/stops/409017", "https://data.delijn.be/stops/409881"], ["https://data.delijn.be/stops/303581", "https://data.delijn.be/stops/305910"], ["https://data.delijn.be/stops/206543", "https://data.delijn.be/stops/207543"], ["https://data.delijn.be/stops/200732", "https://data.delijn.be/stops/202626"], ["https://data.delijn.be/stops/201644", "https://data.delijn.be/stops/201941"], ["https://data.delijn.be/stops/303473", "https://data.delijn.be/stops/303521"], ["https://data.delijn.be/stops/202713", "https://data.delijn.be/stops/202729"], ["https://data.delijn.be/stops/400069", "https://data.delijn.be/stops/400103"], ["https://data.delijn.be/stops/102734", "https://data.delijn.be/stops/109516"], ["https://data.delijn.be/stops/103113", "https://data.delijn.be/stops/106814"], ["https://data.delijn.be/stops/300272", "https://data.delijn.be/stops/307495"], ["https://data.delijn.be/stops/504030", "https://data.delijn.be/stops/509704"], ["https://data.delijn.be/stops/400609", "https://data.delijn.be/stops/408229"], ["https://data.delijn.be/stops/206376", "https://data.delijn.be/stops/207376"], ["https://data.delijn.be/stops/402076", "https://data.delijn.be/stops/405555"], ["https://data.delijn.be/stops/206648", "https://data.delijn.be/stops/207486"], ["https://data.delijn.be/stops/504891", "https://data.delijn.be/stops/505581"], ["https://data.delijn.be/stops/200093", "https://data.delijn.be/stops/202895"], ["https://data.delijn.be/stops/504242", "https://data.delijn.be/stops/504654"], ["https://data.delijn.be/stops/406020", "https://data.delijn.be/stops/406031"], ["https://data.delijn.be/stops/501083", "https://data.delijn.be/stops/501518"], ["https://data.delijn.be/stops/102654", "https://data.delijn.be/stops/107791"], ["https://data.delijn.be/stops/508975", "https://data.delijn.be/stops/508977"], ["https://data.delijn.be/stops/503322", "https://data.delijn.be/stops/508296"], ["https://data.delijn.be/stops/502207", "https://data.delijn.be/stops/505150"], ["https://data.delijn.be/stops/106020", "https://data.delijn.be/stops/106023"], ["https://data.delijn.be/stops/403634", "https://data.delijn.be/stops/403652"], ["https://data.delijn.be/stops/502389", "https://data.delijn.be/stops/507518"], ["https://data.delijn.be/stops/504779", "https://data.delijn.be/stops/504978"], ["https://data.delijn.be/stops/407044", "https://data.delijn.be/stops/407045"], ["https://data.delijn.be/stops/508054", "https://data.delijn.be/stops/509847"], ["https://data.delijn.be/stops/108571", "https://data.delijn.be/stops/108994"], ["https://data.delijn.be/stops/503589", "https://data.delijn.be/stops/505098"], ["https://data.delijn.be/stops/101756", "https://data.delijn.be/stops/103646"], ["https://data.delijn.be/stops/500874", "https://data.delijn.be/stops/509108"], ["https://data.delijn.be/stops/300231", "https://data.delijn.be/stops/300256"], ["https://data.delijn.be/stops/504043", "https://data.delijn.be/stops/504659"], ["https://data.delijn.be/stops/203739", "https://data.delijn.be/stops/209740"], ["https://data.delijn.be/stops/201837", "https://data.delijn.be/stops/203400"], ["https://data.delijn.be/stops/301042", "https://data.delijn.be/stops/306400"], ["https://data.delijn.be/stops/500955", "https://data.delijn.be/stops/503287"], ["https://data.delijn.be/stops/208651", "https://data.delijn.be/stops/209651"], ["https://data.delijn.be/stops/301527", "https://data.delijn.be/stops/308079"], ["https://data.delijn.be/stops/301313", "https://data.delijn.be/stops/301322"], ["https://data.delijn.be/stops/204417", "https://data.delijn.be/stops/205117"], ["https://data.delijn.be/stops/206663", "https://data.delijn.be/stops/207995"], ["https://data.delijn.be/stops/106827", "https://data.delijn.be/stops/106828"], ["https://data.delijn.be/stops/201692", "https://data.delijn.be/stops/203994"], ["https://data.delijn.be/stops/102534", "https://data.delijn.be/stops/405723"], ["https://data.delijn.be/stops/104509", "https://data.delijn.be/stops/207742"], ["https://data.delijn.be/stops/203030", "https://data.delijn.be/stops/203349"], ["https://data.delijn.be/stops/101944", "https://data.delijn.be/stops/108784"], ["https://data.delijn.be/stops/200808", "https://data.delijn.be/stops/202655"], ["https://data.delijn.be/stops/408881", "https://data.delijn.be/stops/408918"], ["https://data.delijn.be/stops/208181", "https://data.delijn.be/stops/209181"], ["https://data.delijn.be/stops/206203", "https://data.delijn.be/stops/206369"], ["https://data.delijn.be/stops/501013", "https://data.delijn.be/stops/501018"], ["https://data.delijn.be/stops/300465", "https://data.delijn.be/stops/304974"], ["https://data.delijn.be/stops/502681", "https://data.delijn.be/stops/507681"], ["https://data.delijn.be/stops/409074", "https://data.delijn.be/stops/409075"], ["https://data.delijn.be/stops/302402", "https://data.delijn.be/stops/302403"], ["https://data.delijn.be/stops/304237", "https://data.delijn.be/stops/306826"], ["https://data.delijn.be/stops/106376", "https://data.delijn.be/stops/106379"], ["https://data.delijn.be/stops/208837", "https://data.delijn.be/stops/209201"], ["https://data.delijn.be/stops/201105", "https://data.delijn.be/stops/201938"], ["https://data.delijn.be/stops/208793", "https://data.delijn.be/stops/209313"], ["https://data.delijn.be/stops/300630", "https://data.delijn.be/stops/306113"], ["https://data.delijn.be/stops/400068", "https://data.delijn.be/stops/400121"], ["https://data.delijn.be/stops/500561", "https://data.delijn.be/stops/506037"], ["https://data.delijn.be/stops/208157", "https://data.delijn.be/stops/209156"], ["https://data.delijn.be/stops/206763", "https://data.delijn.be/stops/208625"], ["https://data.delijn.be/stops/403128", "https://data.delijn.be/stops/409314"], ["https://data.delijn.be/stops/208365", "https://data.delijn.be/stops/208366"], ["https://data.delijn.be/stops/104602", "https://data.delijn.be/stops/108046"], ["https://data.delijn.be/stops/106132", "https://data.delijn.be/stops/106133"], ["https://data.delijn.be/stops/103232", "https://data.delijn.be/stops/103558"], ["https://data.delijn.be/stops/209309", "https://data.delijn.be/stops/209325"], ["https://data.delijn.be/stops/300457", "https://data.delijn.be/stops/300458"], ["https://data.delijn.be/stops/406404", "https://data.delijn.be/stops/406405"], ["https://data.delijn.be/stops/108449", "https://data.delijn.be/stops/108450"], ["https://data.delijn.be/stops/107641", "https://data.delijn.be/stops/108839"], ["https://data.delijn.be/stops/105756", "https://data.delijn.be/stops/105757"], ["https://data.delijn.be/stops/407972", "https://data.delijn.be/stops/407973"], ["https://data.delijn.be/stops/103496", "https://data.delijn.be/stops/106216"], ["https://data.delijn.be/stops/401444", "https://data.delijn.be/stops/401512"], ["https://data.delijn.be/stops/301466", "https://data.delijn.be/stops/301467"], ["https://data.delijn.be/stops/304061", "https://data.delijn.be/stops/307966"], ["https://data.delijn.be/stops/204596", "https://data.delijn.be/stops/204797"], ["https://data.delijn.be/stops/300695", "https://data.delijn.be/stops/306935"], ["https://data.delijn.be/stops/204778", "https://data.delijn.be/stops/215011"], ["https://data.delijn.be/stops/206621", "https://data.delijn.be/stops/207621"], ["https://data.delijn.be/stops/104599", "https://data.delijn.be/stops/106840"], ["https://data.delijn.be/stops/304175", "https://data.delijn.be/stops/304176"], ["https://data.delijn.be/stops/102854", "https://data.delijn.be/stops/102856"], ["https://data.delijn.be/stops/502295", "https://data.delijn.be/stops/505723"], ["https://data.delijn.be/stops/203839", "https://data.delijn.be/stops/208678"], ["https://data.delijn.be/stops/200176", "https://data.delijn.be/stops/205951"], ["https://data.delijn.be/stops/200045", "https://data.delijn.be/stops/201219"], ["https://data.delijn.be/stops/501160", "https://data.delijn.be/stops/501161"], ["https://data.delijn.be/stops/103928", "https://data.delijn.be/stops/103931"], ["https://data.delijn.be/stops/403080", "https://data.delijn.be/stops/410336"], ["https://data.delijn.be/stops/505397", "https://data.delijn.be/stops/506510"], ["https://data.delijn.be/stops/405658", "https://data.delijn.be/stops/407491"], ["https://data.delijn.be/stops/205148", "https://data.delijn.be/stops/214005"], ["https://data.delijn.be/stops/502351", "https://data.delijn.be/stops/502574"], ["https://data.delijn.be/stops/500012", "https://data.delijn.be/stops/502375"], ["https://data.delijn.be/stops/206595", "https://data.delijn.be/stops/207595"], ["https://data.delijn.be/stops/404112", "https://data.delijn.be/stops/404126"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/209063"], ["https://data.delijn.be/stops/210026", "https://data.delijn.be/stops/211026"], ["https://data.delijn.be/stops/106181", "https://data.delijn.be/stops/107442"], ["https://data.delijn.be/stops/505312", "https://data.delijn.be/stops/505720"], ["https://data.delijn.be/stops/501106", "https://data.delijn.be/stops/506105"], ["https://data.delijn.be/stops/404493", "https://data.delijn.be/stops/406929"], ["https://data.delijn.be/stops/101022", "https://data.delijn.be/stops/102930"], ["https://data.delijn.be/stops/502172", "https://data.delijn.be/stops/502341"], ["https://data.delijn.be/stops/204047", "https://data.delijn.be/stops/205046"], ["https://data.delijn.be/stops/503678", "https://data.delijn.be/stops/508678"], ["https://data.delijn.be/stops/502612", "https://data.delijn.be/stops/507544"], ["https://data.delijn.be/stops/402396", "https://data.delijn.be/stops/404730"], ["https://data.delijn.be/stops/400208", "https://data.delijn.be/stops/400209"], ["https://data.delijn.be/stops/401588", "https://data.delijn.be/stops/401589"], ["https://data.delijn.be/stops/300715", "https://data.delijn.be/stops/302608"], ["https://data.delijn.be/stops/404859", "https://data.delijn.be/stops/404866"], ["https://data.delijn.be/stops/508189", "https://data.delijn.be/stops/509819"], ["https://data.delijn.be/stops/103977", "https://data.delijn.be/stops/108355"], ["https://data.delijn.be/stops/303091", "https://data.delijn.be/stops/303107"], ["https://data.delijn.be/stops/400833", "https://data.delijn.be/stops/403572"], ["https://data.delijn.be/stops/202712", "https://data.delijn.be/stops/203713"], ["https://data.delijn.be/stops/106268", "https://data.delijn.be/stops/106272"], ["https://data.delijn.be/stops/307212", "https://data.delijn.be/stops/307216"], ["https://data.delijn.be/stops/105055", "https://data.delijn.be/stops/108035"], ["https://data.delijn.be/stops/202029", "https://data.delijn.be/stops/203034"], ["https://data.delijn.be/stops/300413", "https://data.delijn.be/stops/303522"], ["https://data.delijn.be/stops/202927", "https://data.delijn.be/stops/211022"], ["https://data.delijn.be/stops/204123", "https://data.delijn.be/stops/205122"], ["https://data.delijn.be/stops/401618", "https://data.delijn.be/stops/308231"], ["https://data.delijn.be/stops/304048", "https://data.delijn.be/stops/304096"], ["https://data.delijn.be/stops/205055", "https://data.delijn.be/stops/205317"], ["https://data.delijn.be/stops/504529", "https://data.delijn.be/stops/505916"], ["https://data.delijn.be/stops/401817", "https://data.delijn.be/stops/406078"], ["https://data.delijn.be/stops/505578", "https://data.delijn.be/stops/508762"], ["https://data.delijn.be/stops/204683", "https://data.delijn.be/stops/205682"], ["https://data.delijn.be/stops/407478", "https://data.delijn.be/stops/407479"], ["https://data.delijn.be/stops/202475", "https://data.delijn.be/stops/203474"], ["https://data.delijn.be/stops/403064", "https://data.delijn.be/stops/408516"], ["https://data.delijn.be/stops/404254", "https://data.delijn.be/stops/404352"], ["https://data.delijn.be/stops/202761", "https://data.delijn.be/stops/203760"], ["https://data.delijn.be/stops/102997", "https://data.delijn.be/stops/107906"], ["https://data.delijn.be/stops/503355", "https://data.delijn.be/stops/505978"], ["https://data.delijn.be/stops/200927", "https://data.delijn.be/stops/204994"], ["https://data.delijn.be/stops/105424", "https://data.delijn.be/stops/105426"], ["https://data.delijn.be/stops/300511", "https://data.delijn.be/stops/300539"], ["https://data.delijn.be/stops/108785", "https://data.delijn.be/stops/109118"], ["https://data.delijn.be/stops/209482", "https://data.delijn.be/stops/209486"], ["https://data.delijn.be/stops/307686", "https://data.delijn.be/stops/307688"], ["https://data.delijn.be/stops/207383", "https://data.delijn.be/stops/207921"], ["https://data.delijn.be/stops/406350", "https://data.delijn.be/stops/408827"], ["https://data.delijn.be/stops/403774", "https://data.delijn.be/stops/403793"], ["https://data.delijn.be/stops/402026", "https://data.delijn.be/stops/402028"], ["https://data.delijn.be/stops/508523", "https://data.delijn.be/stops/509775"], ["https://data.delijn.be/stops/400651", "https://data.delijn.be/stops/400682"], ["https://data.delijn.be/stops/404486", "https://data.delijn.be/stops/404572"], ["https://data.delijn.be/stops/102059", "https://data.delijn.be/stops/102064"], ["https://data.delijn.be/stops/102320", "https://data.delijn.be/stops/102889"], ["https://data.delijn.be/stops/404118", "https://data.delijn.be/stops/408555"], ["https://data.delijn.be/stops/302224", "https://data.delijn.be/stops/302242"], ["https://data.delijn.be/stops/208099", "https://data.delijn.be/stops/209099"], ["https://data.delijn.be/stops/503455", "https://data.delijn.be/stops/508463"], ["https://data.delijn.be/stops/505259", "https://data.delijn.be/stops/508436"], ["https://data.delijn.be/stops/503832", "https://data.delijn.be/stops/508833"], ["https://data.delijn.be/stops/207441", "https://data.delijn.be/stops/209692"], ["https://data.delijn.be/stops/208059", "https://data.delijn.be/stops/208507"], ["https://data.delijn.be/stops/401118", "https://data.delijn.be/stops/401134"], ["https://data.delijn.be/stops/401219", "https://data.delijn.be/stops/401283"], ["https://data.delijn.be/stops/207110", "https://data.delijn.be/stops/207906"], ["https://data.delijn.be/stops/508636", "https://data.delijn.be/stops/508640"], ["https://data.delijn.be/stops/102157", "https://data.delijn.be/stops/109588"], ["https://data.delijn.be/stops/104056", "https://data.delijn.be/stops/108688"], ["https://data.delijn.be/stops/107487", "https://data.delijn.be/stops/107509"], ["https://data.delijn.be/stops/505640", "https://data.delijn.be/stops/508865"], ["https://data.delijn.be/stops/209185", "https://data.delijn.be/stops/209357"], ["https://data.delijn.be/stops/200631", "https://data.delijn.be/stops/200640"], ["https://data.delijn.be/stops/501108", "https://data.delijn.be/stops/501111"], ["https://data.delijn.be/stops/301683", "https://data.delijn.be/stops/302761"], ["https://data.delijn.be/stops/204643", "https://data.delijn.be/stops/205643"], ["https://data.delijn.be/stops/403092", "https://data.delijn.be/stops/403124"], ["https://data.delijn.be/stops/101261", "https://data.delijn.be/stops/103670"], ["https://data.delijn.be/stops/204139", "https://data.delijn.be/stops/204140"], ["https://data.delijn.be/stops/402089", "https://data.delijn.be/stops/402215"], ["https://data.delijn.be/stops/508078", "https://data.delijn.be/stops/508598"], ["https://data.delijn.be/stops/304584", "https://data.delijn.be/stops/304608"], ["https://data.delijn.be/stops/300756", "https://data.delijn.be/stops/303223"], ["https://data.delijn.be/stops/503539", "https://data.delijn.be/stops/508993"], ["https://data.delijn.be/stops/101614", "https://data.delijn.be/stops/106402"], ["https://data.delijn.be/stops/205102", "https://data.delijn.be/stops/205347"], ["https://data.delijn.be/stops/103593", "https://data.delijn.be/stops/103594"], ["https://data.delijn.be/stops/304866", "https://data.delijn.be/stops/304869"], ["https://data.delijn.be/stops/206847", "https://data.delijn.be/stops/207512"], ["https://data.delijn.be/stops/208707", "https://data.delijn.be/stops/209707"], ["https://data.delijn.be/stops/106635", "https://data.delijn.be/stops/106638"], ["https://data.delijn.be/stops/505582", "https://data.delijn.be/stops/508589"], ["https://data.delijn.be/stops/300594", "https://data.delijn.be/stops/304241"], ["https://data.delijn.be/stops/208128", "https://data.delijn.be/stops/209073"], ["https://data.delijn.be/stops/101891", "https://data.delijn.be/stops/102157"], ["https://data.delijn.be/stops/302915", "https://data.delijn.be/stops/303235"], ["https://data.delijn.be/stops/405813", "https://data.delijn.be/stops/405891"], ["https://data.delijn.be/stops/208226", "https://data.delijn.be/stops/208834"], ["https://data.delijn.be/stops/509291", "https://data.delijn.be/stops/509600"], ["https://data.delijn.be/stops/501403", "https://data.delijn.be/stops/506403"], ["https://data.delijn.be/stops/502170", "https://data.delijn.be/stops/505419"], ["https://data.delijn.be/stops/207470", "https://data.delijn.be/stops/207471"], ["https://data.delijn.be/stops/300306", "https://data.delijn.be/stops/305238"], ["https://data.delijn.be/stops/206178", "https://data.delijn.be/stops/308574"], ["https://data.delijn.be/stops/504304", "https://data.delijn.be/stops/509237"], ["https://data.delijn.be/stops/404407", "https://data.delijn.be/stops/404416"], ["https://data.delijn.be/stops/101063", "https://data.delijn.be/stops/107955"], ["https://data.delijn.be/stops/504139", "https://data.delijn.be/stops/509139"], ["https://data.delijn.be/stops/507452", "https://data.delijn.be/stops/507455"], ["https://data.delijn.be/stops/501367", "https://data.delijn.be/stops/506443"], ["https://data.delijn.be/stops/102205", "https://data.delijn.be/stops/103601"], ["https://data.delijn.be/stops/503489", "https://data.delijn.be/stops/505719"], ["https://data.delijn.be/stops/202977", "https://data.delijn.be/stops/203372"], ["https://data.delijn.be/stops/103259", "https://data.delijn.be/stops/105851"], ["https://data.delijn.be/stops/109761", "https://data.delijn.be/stops/109764"], ["https://data.delijn.be/stops/105709", "https://data.delijn.be/stops/106077"], ["https://data.delijn.be/stops/405792", "https://data.delijn.be/stops/407511"], ["https://data.delijn.be/stops/206978", "https://data.delijn.be/stops/304260"], ["https://data.delijn.be/stops/200860", "https://data.delijn.be/stops/203287"], ["https://data.delijn.be/stops/505659", "https://data.delijn.be/stops/508510"], ["https://data.delijn.be/stops/204580", "https://data.delijn.be/stops/205592"], ["https://data.delijn.be/stops/401412", "https://data.delijn.be/stops/401413"], ["https://data.delijn.be/stops/400219", "https://data.delijn.be/stops/400221"], ["https://data.delijn.be/stops/101934", "https://data.delijn.be/stops/107746"], ["https://data.delijn.be/stops/300094", "https://data.delijn.be/stops/300099"], ["https://data.delijn.be/stops/101080", "https://data.delijn.be/stops/102605"], ["https://data.delijn.be/stops/206303", "https://data.delijn.be/stops/207303"], ["https://data.delijn.be/stops/106135", "https://data.delijn.be/stops/106137"], ["https://data.delijn.be/stops/209275", "https://data.delijn.be/stops/209333"], ["https://data.delijn.be/stops/503715", "https://data.delijn.be/stops/509871"], ["https://data.delijn.be/stops/401419", "https://data.delijn.be/stops/301085"], ["https://data.delijn.be/stops/406164", "https://data.delijn.be/stops/406165"], ["https://data.delijn.be/stops/500029", "https://data.delijn.be/stops/508114"], ["https://data.delijn.be/stops/504037", "https://data.delijn.be/stops/504284"], ["https://data.delijn.be/stops/207764", "https://data.delijn.be/stops/207794"], ["https://data.delijn.be/stops/207532", "https://data.delijn.be/stops/207538"], ["https://data.delijn.be/stops/405537", "https://data.delijn.be/stops/409424"], ["https://data.delijn.be/stops/503454", "https://data.delijn.be/stops/508469"], ["https://data.delijn.be/stops/205714", "https://data.delijn.be/stops/205717"], ["https://data.delijn.be/stops/304340", "https://data.delijn.be/stops/305219"], ["https://data.delijn.be/stops/400597", "https://data.delijn.be/stops/400606"], ["https://data.delijn.be/stops/304647", "https://data.delijn.be/stops/304683"], ["https://data.delijn.be/stops/306875", "https://data.delijn.be/stops/306876"], ["https://data.delijn.be/stops/304894", "https://data.delijn.be/stops/304896"], ["https://data.delijn.be/stops/302875", "https://data.delijn.be/stops/302876"], ["https://data.delijn.be/stops/400476", "https://data.delijn.be/stops/404674"], ["https://data.delijn.be/stops/405758", "https://data.delijn.be/stops/303333"], ["https://data.delijn.be/stops/400558", "https://data.delijn.be/stops/403829"], ["https://data.delijn.be/stops/405052", "https://data.delijn.be/stops/405064"], ["https://data.delijn.be/stops/200026", "https://data.delijn.be/stops/200027"], ["https://data.delijn.be/stops/103306", "https://data.delijn.be/stops/103307"], ["https://data.delijn.be/stops/406977", "https://data.delijn.be/stops/406979"], ["https://data.delijn.be/stops/408695", "https://data.delijn.be/stops/408699"], ["https://data.delijn.be/stops/304840", "https://data.delijn.be/stops/304853"], ["https://data.delijn.be/stops/102179", "https://data.delijn.be/stops/104999"], ["https://data.delijn.be/stops/105103", "https://data.delijn.be/stops/105107"], ["https://data.delijn.be/stops/503226", "https://data.delijn.be/stops/503229"], ["https://data.delijn.be/stops/302450", "https://data.delijn.be/stops/307140"], ["https://data.delijn.be/stops/109280", "https://data.delijn.be/stops/109281"], ["https://data.delijn.be/stops/302380", "https://data.delijn.be/stops/302381"], ["https://data.delijn.be/stops/406711", "https://data.delijn.be/stops/306782"], ["https://data.delijn.be/stops/408646", "https://data.delijn.be/stops/408647"], ["https://data.delijn.be/stops/201337", "https://data.delijn.be/stops/201733"], ["https://data.delijn.be/stops/302586", "https://data.delijn.be/stops/302680"], ["https://data.delijn.be/stops/103098", "https://data.delijn.be/stops/103268"], ["https://data.delijn.be/stops/406012", "https://data.delijn.be/stops/406013"], ["https://data.delijn.be/stops/202616", "https://data.delijn.be/stops/203615"], ["https://data.delijn.be/stops/208730", "https://data.delijn.be/stops/209730"], ["https://data.delijn.be/stops/403050", "https://data.delijn.be/stops/403174"], ["https://data.delijn.be/stops/203504", "https://data.delijn.be/stops/209662"], ["https://data.delijn.be/stops/202263", "https://data.delijn.be/stops/210006"], ["https://data.delijn.be/stops/202066", "https://data.delijn.be/stops/203066"], ["https://data.delijn.be/stops/308212", "https://data.delijn.be/stops/308221"], ["https://data.delijn.be/stops/507075", "https://data.delijn.be/stops/507739"], ["https://data.delijn.be/stops/201222", "https://data.delijn.be/stops/203450"], ["https://data.delijn.be/stops/404060", "https://data.delijn.be/stops/406856"], ["https://data.delijn.be/stops/503107", "https://data.delijn.be/stops/508107"], ["https://data.delijn.be/stops/105418", "https://data.delijn.be/stops/105846"], ["https://data.delijn.be/stops/304081", "https://data.delijn.be/stops/304242"], ["https://data.delijn.be/stops/301538", "https://data.delijn.be/stops/305141"], ["https://data.delijn.be/stops/502031", "https://data.delijn.be/stops/502118"], ["https://data.delijn.be/stops/301699", "https://data.delijn.be/stops/301700"], ["https://data.delijn.be/stops/101848", "https://data.delijn.be/stops/107229"], ["https://data.delijn.be/stops/407581", "https://data.delijn.be/stops/408875"], ["https://data.delijn.be/stops/102922", "https://data.delijn.be/stops/103348"], ["https://data.delijn.be/stops/200395", "https://data.delijn.be/stops/201395"], ["https://data.delijn.be/stops/302238", "https://data.delijn.be/stops/302239"], ["https://data.delijn.be/stops/204235", "https://data.delijn.be/stops/205587"], ["https://data.delijn.be/stops/207769", "https://data.delijn.be/stops/207773"], ["https://data.delijn.be/stops/504991", "https://data.delijn.be/stops/507954"], ["https://data.delijn.be/stops/403109", "https://data.delijn.be/stops/403110"], ["https://data.delijn.be/stops/201501", "https://data.delijn.be/stops/208404"], ["https://data.delijn.be/stops/501293", "https://data.delijn.be/stops/501325"], ["https://data.delijn.be/stops/300067", "https://data.delijn.be/stops/300069"], ["https://data.delijn.be/stops/503584", "https://data.delijn.be/stops/508128"], ["https://data.delijn.be/stops/504831", "https://data.delijn.be/stops/508969"], ["https://data.delijn.be/stops/103014", "https://data.delijn.be/stops/109374"], ["https://data.delijn.be/stops/208540", "https://data.delijn.be/stops/208620"], ["https://data.delijn.be/stops/503213", "https://data.delijn.be/stops/508211"], ["https://data.delijn.be/stops/401217", "https://data.delijn.be/stops/401225"], ["https://data.delijn.be/stops/202343", "https://data.delijn.be/stops/203439"], ["https://data.delijn.be/stops/107205", "https://data.delijn.be/stops/109891"], ["https://data.delijn.be/stops/404471", "https://data.delijn.be/stops/404539"], ["https://data.delijn.be/stops/306691", "https://data.delijn.be/stops/308784"], ["https://data.delijn.be/stops/502354", "https://data.delijn.be/stops/507353"], ["https://data.delijn.be/stops/504679", "https://data.delijn.be/stops/509460"], ["https://data.delijn.be/stops/105950", "https://data.delijn.be/stops/106060"], ["https://data.delijn.be/stops/204210", "https://data.delijn.be/stops/206395"], ["https://data.delijn.be/stops/409747", "https://data.delijn.be/stops/409750"], ["https://data.delijn.be/stops/500952", "https://data.delijn.be/stops/508627"], ["https://data.delijn.be/stops/104288", "https://data.delijn.be/stops/104291"], ["https://data.delijn.be/stops/307080", "https://data.delijn.be/stops/307895"], ["https://data.delijn.be/stops/503507", "https://data.delijn.be/stops/508507"], ["https://data.delijn.be/stops/402507", "https://data.delijn.be/stops/402628"], ["https://data.delijn.be/stops/503641", "https://data.delijn.be/stops/505161"], ["https://data.delijn.be/stops/106737", "https://data.delijn.be/stops/106780"], ["https://data.delijn.be/stops/503844", "https://data.delijn.be/stops/508847"], ["https://data.delijn.be/stops/301114", "https://data.delijn.be/stops/301131"], ["https://data.delijn.be/stops/103515", "https://data.delijn.be/stops/105235"], ["https://data.delijn.be/stops/401812", "https://data.delijn.be/stops/401813"], ["https://data.delijn.be/stops/403029", "https://data.delijn.be/stops/403030"], ["https://data.delijn.be/stops/308460", "https://data.delijn.be/stops/308464"], ["https://data.delijn.be/stops/508181", "https://data.delijn.be/stops/508182"], ["https://data.delijn.be/stops/204722", "https://data.delijn.be/stops/204723"], ["https://data.delijn.be/stops/407397", "https://data.delijn.be/stops/407500"], ["https://data.delijn.be/stops/107490", "https://data.delijn.be/stops/107500"], ["https://data.delijn.be/stops/308289", "https://data.delijn.be/stops/308290"], ["https://data.delijn.be/stops/208699", "https://data.delijn.be/stops/208705"], ["https://data.delijn.be/stops/204179", "https://data.delijn.be/stops/206391"], ["https://data.delijn.be/stops/304688", "https://data.delijn.be/stops/307159"], ["https://data.delijn.be/stops/206726", "https://data.delijn.be/stops/206993"], ["https://data.delijn.be/stops/208787", "https://data.delijn.be/stops/219031"], ["https://data.delijn.be/stops/102205", "https://data.delijn.be/stops/103005"], ["https://data.delijn.be/stops/303465", "https://data.delijn.be/stops/308934"], ["https://data.delijn.be/stops/101810", "https://data.delijn.be/stops/104123"], ["https://data.delijn.be/stops/200383", "https://data.delijn.be/stops/201142"], ["https://data.delijn.be/stops/108705", "https://data.delijn.be/stops/109987"], ["https://data.delijn.be/stops/402585", "https://data.delijn.be/stops/402652"], ["https://data.delijn.be/stops/400331", "https://data.delijn.be/stops/400364"], ["https://data.delijn.be/stops/200912", "https://data.delijn.be/stops/203644"], ["https://data.delijn.be/stops/104824", "https://data.delijn.be/stops/108495"], ["https://data.delijn.be/stops/200435", "https://data.delijn.be/stops/201985"], ["https://data.delijn.be/stops/402096", "https://data.delijn.be/stops/402326"], ["https://data.delijn.be/stops/201775", "https://data.delijn.be/stops/219018"], ["https://data.delijn.be/stops/408412", "https://data.delijn.be/stops/408413"], ["https://data.delijn.be/stops/106594", "https://data.delijn.be/stops/106596"], ["https://data.delijn.be/stops/403165", "https://data.delijn.be/stops/405122"], ["https://data.delijn.be/stops/405253", "https://data.delijn.be/stops/406855"], ["https://data.delijn.be/stops/400626", "https://data.delijn.be/stops/408251"], ["https://data.delijn.be/stops/406478", "https://data.delijn.be/stops/406479"], ["https://data.delijn.be/stops/405037", "https://data.delijn.be/stops/406548"], ["https://data.delijn.be/stops/400124", "https://data.delijn.be/stops/409169"], ["https://data.delijn.be/stops/301835", "https://data.delijn.be/stops/305860"], ["https://data.delijn.be/stops/503242", "https://data.delijn.be/stops/503244"], ["https://data.delijn.be/stops/201096", "https://data.delijn.be/stops/201272"], ["https://data.delijn.be/stops/408652", "https://data.delijn.be/stops/408743"], ["https://data.delijn.be/stops/206277", "https://data.delijn.be/stops/207533"], ["https://data.delijn.be/stops/202315", "https://data.delijn.be/stops/203314"], ["https://data.delijn.be/stops/300586", "https://data.delijn.be/stops/300588"], ["https://data.delijn.be/stops/501327", "https://data.delijn.be/stops/506265"], ["https://data.delijn.be/stops/501357", "https://data.delijn.be/stops/506271"], ["https://data.delijn.be/stops/405711", "https://data.delijn.be/stops/407216"], ["https://data.delijn.be/stops/406064", "https://data.delijn.be/stops/406815"], ["https://data.delijn.be/stops/404641", "https://data.delijn.be/stops/404992"], ["https://data.delijn.be/stops/403207", "https://data.delijn.be/stops/403402"], ["https://data.delijn.be/stops/200844", "https://data.delijn.be/stops/202300"], ["https://data.delijn.be/stops/105299", "https://data.delijn.be/stops/109971"], ["https://data.delijn.be/stops/206105", "https://data.delijn.be/stops/207104"], ["https://data.delijn.be/stops/304555", "https://data.delijn.be/stops/307584"], ["https://data.delijn.be/stops/201139", "https://data.delijn.be/stops/201227"], ["https://data.delijn.be/stops/406708", "https://data.delijn.be/stops/407065"], ["https://data.delijn.be/stops/404596", "https://data.delijn.be/stops/404598"], ["https://data.delijn.be/stops/102253", "https://data.delijn.be/stops/109079"], ["https://data.delijn.be/stops/406624", "https://data.delijn.be/stops/406641"], ["https://data.delijn.be/stops/104961", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/300858", "https://data.delijn.be/stops/303046"], ["https://data.delijn.be/stops/106821", "https://data.delijn.be/stops/106983"], ["https://data.delijn.be/stops/304956", "https://data.delijn.be/stops/304973"], ["https://data.delijn.be/stops/202508", "https://data.delijn.be/stops/203490"], ["https://data.delijn.be/stops/503229", "https://data.delijn.be/stops/508227"], ["https://data.delijn.be/stops/102025", "https://data.delijn.be/stops/105140"], ["https://data.delijn.be/stops/208678", "https://data.delijn.be/stops/209425"], ["https://data.delijn.be/stops/200419", "https://data.delijn.be/stops/201420"], ["https://data.delijn.be/stops/102646", "https://data.delijn.be/stops/109910"], ["https://data.delijn.be/stops/201241", "https://data.delijn.be/stops/201650"], ["https://data.delijn.be/stops/204119", "https://data.delijn.be/stops/204120"], ["https://data.delijn.be/stops/202260", "https://data.delijn.be/stops/202261"], ["https://data.delijn.be/stops/503029", "https://data.delijn.be/stops/505396"], ["https://data.delijn.be/stops/208046", "https://data.delijn.be/stops/209046"], ["https://data.delijn.be/stops/102125", "https://data.delijn.be/stops/102987"], ["https://data.delijn.be/stops/305412", "https://data.delijn.be/stops/305462"], ["https://data.delijn.be/stops/404546", "https://data.delijn.be/stops/404554"], ["https://data.delijn.be/stops/507953", "https://data.delijn.be/stops/508858"], ["https://data.delijn.be/stops/400122", "https://data.delijn.be/stops/400127"], ["https://data.delijn.be/stops/507765", "https://data.delijn.be/stops/509819"], ["https://data.delijn.be/stops/402078", "https://data.delijn.be/stops/402375"], ["https://data.delijn.be/stops/205243", "https://data.delijn.be/stops/206272"], ["https://data.delijn.be/stops/300450", "https://data.delijn.be/stops/308058"], ["https://data.delijn.be/stops/205296", "https://data.delijn.be/stops/205304"], ["https://data.delijn.be/stops/403038", "https://data.delijn.be/stops/403455"], ["https://data.delijn.be/stops/408117", "https://data.delijn.be/stops/408491"], ["https://data.delijn.be/stops/206589", "https://data.delijn.be/stops/207590"], ["https://data.delijn.be/stops/207061", "https://data.delijn.be/stops/207519"], ["https://data.delijn.be/stops/201817", "https://data.delijn.be/stops/208254"], ["https://data.delijn.be/stops/204502", "https://data.delijn.be/stops/205502"], ["https://data.delijn.be/stops/202036", "https://data.delijn.be/stops/202985"], ["https://data.delijn.be/stops/501105", "https://data.delijn.be/stops/506105"], ["https://data.delijn.be/stops/400547", "https://data.delijn.be/stops/400900"], ["https://data.delijn.be/stops/202330", "https://data.delijn.be/stops/203335"], ["https://data.delijn.be/stops/401488", "https://data.delijn.be/stops/401489"], ["https://data.delijn.be/stops/402481", "https://data.delijn.be/stops/402499"], ["https://data.delijn.be/stops/108364", "https://data.delijn.be/stops/108505"], ["https://data.delijn.be/stops/408028", "https://data.delijn.be/stops/301519"], ["https://data.delijn.be/stops/201971", "https://data.delijn.be/stops/206707"], ["https://data.delijn.be/stops/105053", "https://data.delijn.be/stops/105054"], ["https://data.delijn.be/stops/403049", "https://data.delijn.be/stops/403052"], ["https://data.delijn.be/stops/405900", "https://data.delijn.be/stops/405965"], ["https://data.delijn.be/stops/200866", "https://data.delijn.be/stops/203331"], ["https://data.delijn.be/stops/306865", "https://data.delijn.be/stops/307731"], ["https://data.delijn.be/stops/301465", "https://data.delijn.be/stops/308071"], ["https://data.delijn.be/stops/307272", "https://data.delijn.be/stops/307273"], ["https://data.delijn.be/stops/400704", "https://data.delijn.be/stops/400836"], ["https://data.delijn.be/stops/403120", "https://data.delijn.be/stops/403121"], ["https://data.delijn.be/stops/206226", "https://data.delijn.be/stops/300181"], ["https://data.delijn.be/stops/200513", "https://data.delijn.be/stops/201151"], ["https://data.delijn.be/stops/204297", "https://data.delijn.be/stops/205296"], ["https://data.delijn.be/stops/109904", "https://data.delijn.be/stops/109909"], ["https://data.delijn.be/stops/208026", "https://data.delijn.be/stops/209021"], ["https://data.delijn.be/stops/501356", "https://data.delijn.be/stops/501501"], ["https://data.delijn.be/stops/302273", "https://data.delijn.be/stops/306784"], ["https://data.delijn.be/stops/104237", "https://data.delijn.be/stops/105073"], ["https://data.delijn.be/stops/301808", "https://data.delijn.be/stops/307889"], ["https://data.delijn.be/stops/402735", "https://data.delijn.be/stops/410089"], ["https://data.delijn.be/stops/507030", "https://data.delijn.be/stops/507441"], ["https://data.delijn.be/stops/206671", "https://data.delijn.be/stops/207669"], ["https://data.delijn.be/stops/203867", "https://data.delijn.be/stops/203868"], ["https://data.delijn.be/stops/401075", "https://data.delijn.be/stops/401162"], ["https://data.delijn.be/stops/101022", "https://data.delijn.be/stops/106035"], ["https://data.delijn.be/stops/107429", "https://data.delijn.be/stops/109170"], ["https://data.delijn.be/stops/403426", "https://data.delijn.be/stops/403688"], ["https://data.delijn.be/stops/200061", "https://data.delijn.be/stops/201061"], ["https://data.delijn.be/stops/204204", "https://data.delijn.be/stops/205190"], ["https://data.delijn.be/stops/404696", "https://data.delijn.be/stops/406996"], ["https://data.delijn.be/stops/301948", "https://data.delijn.be/stops/303323"], ["https://data.delijn.be/stops/203752", "https://data.delijn.be/stops/203760"], ["https://data.delijn.be/stops/503999", "https://data.delijn.be/stops/508999"], ["https://data.delijn.be/stops/206540", "https://data.delijn.be/stops/206541"], ["https://data.delijn.be/stops/305113", "https://data.delijn.be/stops/305213"], ["https://data.delijn.be/stops/404462", "https://data.delijn.be/stops/404526"], ["https://data.delijn.be/stops/108084", "https://data.delijn.be/stops/108087"], ["https://data.delijn.be/stops/200583", "https://data.delijn.be/stops/210078"], ["https://data.delijn.be/stops/201375", "https://data.delijn.be/stops/211089"], ["https://data.delijn.be/stops/200854", "https://data.delijn.be/stops/200890"], ["https://data.delijn.be/stops/106150", "https://data.delijn.be/stops/106152"], ["https://data.delijn.be/stops/502308", "https://data.delijn.be/stops/507308"], ["https://data.delijn.be/stops/501268", "https://data.delijn.be/stops/501312"], ["https://data.delijn.be/stops/208743", "https://data.delijn.be/stops/208763"], ["https://data.delijn.be/stops/502473", "https://data.delijn.be/stops/507467"], ["https://data.delijn.be/stops/104553", "https://data.delijn.be/stops/305806"], ["https://data.delijn.be/stops/507748", "https://data.delijn.be/stops/507766"], ["https://data.delijn.be/stops/402883", "https://data.delijn.be/stops/405536"], ["https://data.delijn.be/stops/503458", "https://data.delijn.be/stops/508475"], ["https://data.delijn.be/stops/102232", "https://data.delijn.be/stops/102309"], ["https://data.delijn.be/stops/505071", "https://data.delijn.be/stops/507918"], ["https://data.delijn.be/stops/204071", "https://data.delijn.be/stops/204184"], ["https://data.delijn.be/stops/402698", "https://data.delijn.be/stops/402879"], ["https://data.delijn.be/stops/400649", "https://data.delijn.be/stops/400650"], ["https://data.delijn.be/stops/107060", "https://data.delijn.be/stops/107061"], ["https://data.delijn.be/stops/103991", "https://data.delijn.be/stops/105311"], ["https://data.delijn.be/stops/205524", "https://data.delijn.be/stops/205727"], ["https://data.delijn.be/stops/401145", "https://data.delijn.be/stops/401149"], ["https://data.delijn.be/stops/308166", "https://data.delijn.be/stops/308167"], ["https://data.delijn.be/stops/400450", "https://data.delijn.be/stops/400451"], ["https://data.delijn.be/stops/407942", "https://data.delijn.be/stops/407944"], ["https://data.delijn.be/stops/107115", "https://data.delijn.be/stops/107230"], ["https://data.delijn.be/stops/201783", "https://data.delijn.be/stops/201987"], ["https://data.delijn.be/stops/404489", "https://data.delijn.be/stops/404519"], ["https://data.delijn.be/stops/202330", "https://data.delijn.be/stops/211298"], ["https://data.delijn.be/stops/207864", "https://data.delijn.be/stops/209697"], ["https://data.delijn.be/stops/102929", "https://data.delijn.be/stops/106126"], ["https://data.delijn.be/stops/501550", "https://data.delijn.be/stops/501559"], ["https://data.delijn.be/stops/103263", "https://data.delijn.be/stops/214002"], ["https://data.delijn.be/stops/108834", "https://data.delijn.be/stops/108836"], ["https://data.delijn.be/stops/206758", "https://data.delijn.be/stops/207851"], ["https://data.delijn.be/stops/105164", "https://data.delijn.be/stops/105369"], ["https://data.delijn.be/stops/101565", "https://data.delijn.be/stops/103500"], ["https://data.delijn.be/stops/504461", "https://data.delijn.be/stops/504542"], ["https://data.delijn.be/stops/104304", "https://data.delijn.be/stops/104306"], ["https://data.delijn.be/stops/501642", "https://data.delijn.be/stops/501659"], ["https://data.delijn.be/stops/304158", "https://data.delijn.be/stops/307757"], ["https://data.delijn.be/stops/301932", "https://data.delijn.be/stops/305842"], ["https://data.delijn.be/stops/406978", "https://data.delijn.be/stops/410255"], ["https://data.delijn.be/stops/305335", "https://data.delijn.be/stops/305888"], ["https://data.delijn.be/stops/401174", "https://data.delijn.be/stops/406650"], ["https://data.delijn.be/stops/303283", "https://data.delijn.be/stops/304638"], ["https://data.delijn.be/stops/101529", "https://data.delijn.be/stops/109556"], ["https://data.delijn.be/stops/101494", "https://data.delijn.be/stops/108292"], ["https://data.delijn.be/stops/305945", "https://data.delijn.be/stops/308413"], ["https://data.delijn.be/stops/208792", "https://data.delijn.be/stops/209211"], ["https://data.delijn.be/stops/303255", "https://data.delijn.be/stops/303257"], ["https://data.delijn.be/stops/201716", "https://data.delijn.be/stops/201799"], ["https://data.delijn.be/stops/505757", "https://data.delijn.be/stops/506123"], ["https://data.delijn.be/stops/404104", "https://data.delijn.be/stops/404149"], ["https://data.delijn.be/stops/504847", "https://data.delijn.be/stops/508806"], ["https://data.delijn.be/stops/200009", "https://data.delijn.be/stops/201848"], ["https://data.delijn.be/stops/401248", "https://data.delijn.be/stops/401249"], ["https://data.delijn.be/stops/507566", "https://data.delijn.be/stops/507567"], ["https://data.delijn.be/stops/101556", "https://data.delijn.be/stops/102405"], ["https://data.delijn.be/stops/503338", "https://data.delijn.be/stops/503345"], ["https://data.delijn.be/stops/404306", "https://data.delijn.be/stops/404319"], ["https://data.delijn.be/stops/304269", "https://data.delijn.be/stops/304270"], ["https://data.delijn.be/stops/104951", "https://data.delijn.be/stops/104952"], ["https://data.delijn.be/stops/405693", "https://data.delijn.be/stops/405989"], ["https://data.delijn.be/stops/108532", "https://data.delijn.be/stops/108533"], ["https://data.delijn.be/stops/503922", "https://data.delijn.be/stops/505255"], ["https://data.delijn.be/stops/106423", "https://data.delijn.be/stops/106509"], ["https://data.delijn.be/stops/402982", "https://data.delijn.be/stops/407797"], ["https://data.delijn.be/stops/204796", "https://data.delijn.be/stops/205078"], ["https://data.delijn.be/stops/301113", "https://data.delijn.be/stops/301114"], ["https://data.delijn.be/stops/408896", "https://data.delijn.be/stops/408900"], ["https://data.delijn.be/stops/203119", "https://data.delijn.be/stops/205073"], ["https://data.delijn.be/stops/305954", "https://data.delijn.be/stops/307514"], ["https://data.delijn.be/stops/401172", "https://data.delijn.be/stops/406650"], ["https://data.delijn.be/stops/204744", "https://data.delijn.be/stops/205745"], ["https://data.delijn.be/stops/200174", "https://data.delijn.be/stops/201277"], ["https://data.delijn.be/stops/206679", "https://data.delijn.be/stops/208105"], ["https://data.delijn.be/stops/202710", "https://data.delijn.be/stops/203710"], ["https://data.delijn.be/stops/504175", "https://data.delijn.be/stops/509157"], ["https://data.delijn.be/stops/200831", "https://data.delijn.be/stops/505064"], ["https://data.delijn.be/stops/101162", "https://data.delijn.be/stops/105971"], ["https://data.delijn.be/stops/206733", "https://data.delijn.be/stops/304270"], ["https://data.delijn.be/stops/402872", "https://data.delijn.be/stops/404353"], ["https://data.delijn.be/stops/306903", "https://data.delijn.be/stops/306905"], ["https://data.delijn.be/stops/304747", "https://data.delijn.be/stops/307333"], ["https://data.delijn.be/stops/105383", "https://data.delijn.be/stops/105387"], ["https://data.delijn.be/stops/204985", "https://data.delijn.be/stops/208350"], ["https://data.delijn.be/stops/303641", "https://data.delijn.be/stops/307886"], ["https://data.delijn.be/stops/300373", "https://data.delijn.be/stops/308638"], ["https://data.delijn.be/stops/206979", "https://data.delijn.be/stops/301093"], ["https://data.delijn.be/stops/406287", "https://data.delijn.be/stops/409408"], ["https://data.delijn.be/stops/203996", "https://data.delijn.be/stops/208561"], ["https://data.delijn.be/stops/101492", "https://data.delijn.be/stops/108747"], ["https://data.delijn.be/stops/306592", "https://data.delijn.be/stops/306595"], ["https://data.delijn.be/stops/105741", "https://data.delijn.be/stops/105744"], ["https://data.delijn.be/stops/200276", "https://data.delijn.be/stops/201030"], ["https://data.delijn.be/stops/207978", "https://data.delijn.be/stops/304260"], ["https://data.delijn.be/stops/508795", "https://data.delijn.be/stops/508797"], ["https://data.delijn.be/stops/305414", "https://data.delijn.be/stops/305462"], ["https://data.delijn.be/stops/503456", "https://data.delijn.be/stops/503478"], ["https://data.delijn.be/stops/303674", "https://data.delijn.be/stops/303676"], ["https://data.delijn.be/stops/302384", "https://data.delijn.be/stops/304098"], ["https://data.delijn.be/stops/201815", "https://data.delijn.be/stops/208253"], ["https://data.delijn.be/stops/505520", "https://data.delijn.be/stops/509894"], ["https://data.delijn.be/stops/109006", "https://data.delijn.be/stops/109008"], ["https://data.delijn.be/stops/200457", "https://data.delijn.be/stops/200558"], ["https://data.delijn.be/stops/503883", "https://data.delijn.be/stops/508883"], ["https://data.delijn.be/stops/303506", "https://data.delijn.be/stops/303508"], ["https://data.delijn.be/stops/203418", "https://data.delijn.be/stops/203420"], ["https://data.delijn.be/stops/403584", "https://data.delijn.be/stops/408458"], ["https://data.delijn.be/stops/205112", "https://data.delijn.be/stops/205684"], ["https://data.delijn.be/stops/200261", "https://data.delijn.be/stops/200302"], ["https://data.delijn.be/stops/504278", "https://data.delijn.be/stops/509278"], ["https://data.delijn.be/stops/402870", "https://data.delijn.be/stops/404006"], ["https://data.delijn.be/stops/101515", "https://data.delijn.be/stops/102060"], ["https://data.delijn.be/stops/109274", "https://data.delijn.be/stops/109275"], ["https://data.delijn.be/stops/401433", "https://data.delijn.be/stops/410147"], ["https://data.delijn.be/stops/503333", "https://data.delijn.be/stops/508253"], ["https://data.delijn.be/stops/400791", "https://data.delijn.be/stops/409545"], ["https://data.delijn.be/stops/300466", "https://data.delijn.be/stops/300467"], ["https://data.delijn.be/stops/305032", "https://data.delijn.be/stops/305033"], ["https://data.delijn.be/stops/502107", "https://data.delijn.be/stops/506051"], ["https://data.delijn.be/stops/504264", "https://data.delijn.be/stops/505183"], ["https://data.delijn.be/stops/204260", "https://data.delijn.be/stops/204475"], ["https://data.delijn.be/stops/102482", "https://data.delijn.be/stops/400399"], ["https://data.delijn.be/stops/403934", "https://data.delijn.be/stops/410256"], ["https://data.delijn.be/stops/101620", "https://data.delijn.be/stops/102625"], ["https://data.delijn.be/stops/103661", "https://data.delijn.be/stops/106218"], ["https://data.delijn.be/stops/201355", "https://data.delijn.be/stops/201570"], ["https://data.delijn.be/stops/101230", "https://data.delijn.be/stops/102500"], ["https://data.delijn.be/stops/107820", "https://data.delijn.be/stops/108290"], ["https://data.delijn.be/stops/204613", "https://data.delijn.be/stops/204772"], ["https://data.delijn.be/stops/406056", "https://data.delijn.be/stops/406138"], ["https://data.delijn.be/stops/300305", "https://data.delijn.be/stops/301285"], ["https://data.delijn.be/stops/501295", "https://data.delijn.be/stops/506315"], ["https://data.delijn.be/stops/101748", "https://data.delijn.be/stops/106392"], ["https://data.delijn.be/stops/302356", "https://data.delijn.be/stops/302750"], ["https://data.delijn.be/stops/301053", "https://data.delijn.be/stops/303831"], ["https://data.delijn.be/stops/206885", "https://data.delijn.be/stops/206916"], ["https://data.delijn.be/stops/504571", "https://data.delijn.be/stops/505898"], ["https://data.delijn.be/stops/300359", "https://data.delijn.be/stops/301402"], ["https://data.delijn.be/stops/106510", "https://data.delijn.be/stops/106512"], ["https://data.delijn.be/stops/405810", "https://data.delijn.be/stops/405893"], ["https://data.delijn.be/stops/408508", "https://data.delijn.be/stops/410250"], ["https://data.delijn.be/stops/505427", "https://data.delijn.be/stops/508487"], ["https://data.delijn.be/stops/502560", "https://data.delijn.be/stops/502562"], ["https://data.delijn.be/stops/402612", "https://data.delijn.be/stops/408485"], ["https://data.delijn.be/stops/503634", "https://data.delijn.be/stops/506765"], ["https://data.delijn.be/stops/403787", "https://data.delijn.be/stops/404062"], ["https://data.delijn.be/stops/503174", "https://data.delijn.be/stops/508174"], ["https://data.delijn.be/stops/202459", "https://data.delijn.be/stops/203485"], ["https://data.delijn.be/stops/201776", "https://data.delijn.be/stops/204974"], ["https://data.delijn.be/stops/404220", "https://data.delijn.be/stops/404222"], ["https://data.delijn.be/stops/404522", "https://data.delijn.be/stops/404585"], ["https://data.delijn.be/stops/504005", "https://data.delijn.be/stops/505375"], ["https://data.delijn.be/stops/200022", "https://data.delijn.be/stops/200145"], ["https://data.delijn.be/stops/505422", "https://data.delijn.be/stops/509614"], ["https://data.delijn.be/stops/204761", "https://data.delijn.be/stops/205759"], ["https://data.delijn.be/stops/404607", "https://data.delijn.be/stops/404608"], ["https://data.delijn.be/stops/504455", "https://data.delijn.be/stops/509453"], ["https://data.delijn.be/stops/303987", "https://data.delijn.be/stops/303988"], ["https://data.delijn.be/stops/400876", "https://data.delijn.be/stops/400877"], ["https://data.delijn.be/stops/408968", "https://data.delijn.be/stops/408969"], ["https://data.delijn.be/stops/304982", "https://data.delijn.be/stops/308030"], ["https://data.delijn.be/stops/103057", "https://data.delijn.be/stops/105001"], ["https://data.delijn.be/stops/201905", "https://data.delijn.be/stops/202514"], ["https://data.delijn.be/stops/501227", "https://data.delijn.be/stops/509840"], ["https://data.delijn.be/stops/504430", "https://data.delijn.be/stops/509424"], ["https://data.delijn.be/stops/504093", "https://data.delijn.be/stops/505288"], ["https://data.delijn.be/stops/209005", "https://data.delijn.be/stops/209097"], ["https://data.delijn.be/stops/302842", "https://data.delijn.be/stops/303316"], ["https://data.delijn.be/stops/204153", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/406037", "https://data.delijn.be/stops/406051"], ["https://data.delijn.be/stops/508899", "https://data.delijn.be/stops/509358"], ["https://data.delijn.be/stops/403066", "https://data.delijn.be/stops/403067"], ["https://data.delijn.be/stops/307217", "https://data.delijn.be/stops/307218"], ["https://data.delijn.be/stops/500049", "https://data.delijn.be/stops/500051"], ["https://data.delijn.be/stops/104881", "https://data.delijn.be/stops/104884"], ["https://data.delijn.be/stops/504360", "https://data.delijn.be/stops/509355"], ["https://data.delijn.be/stops/206956", "https://data.delijn.be/stops/207187"], ["https://data.delijn.be/stops/408692", "https://data.delijn.be/stops/408695"], ["https://data.delijn.be/stops/204446", "https://data.delijn.be/stops/204627"], ["https://data.delijn.be/stops/500566", "https://data.delijn.be/stops/501042"], ["https://data.delijn.be/stops/409360", "https://data.delijn.be/stops/409441"], ["https://data.delijn.be/stops/200870", "https://data.delijn.be/stops/203335"], ["https://data.delijn.be/stops/201493", "https://data.delijn.be/stops/203334"], ["https://data.delijn.be/stops/405998", "https://data.delijn.be/stops/405999"], ["https://data.delijn.be/stops/504446", "https://data.delijn.be/stops/509107"], ["https://data.delijn.be/stops/402200", "https://data.delijn.be/stops/402328"], ["https://data.delijn.be/stops/302703", "https://data.delijn.be/stops/302714"], ["https://data.delijn.be/stops/407242", "https://data.delijn.be/stops/407455"], ["https://data.delijn.be/stops/504583", "https://data.delijn.be/stops/509389"], ["https://data.delijn.be/stops/109832", "https://data.delijn.be/stops/109835"], ["https://data.delijn.be/stops/301916", "https://data.delijn.be/stops/305814"], ["https://data.delijn.be/stops/106933", "https://data.delijn.be/stops/109664"], ["https://data.delijn.be/stops/406264", "https://data.delijn.be/stops/406265"], ["https://data.delijn.be/stops/206625", "https://data.delijn.be/stops/207624"], ["https://data.delijn.be/stops/200229", "https://data.delijn.be/stops/201230"], ["https://data.delijn.be/stops/303411", "https://data.delijn.be/stops/303424"], ["https://data.delijn.be/stops/300393", "https://data.delijn.be/stops/304656"], ["https://data.delijn.be/stops/402298", "https://data.delijn.be/stops/402470"], ["https://data.delijn.be/stops/406464", "https://data.delijn.be/stops/406465"], ["https://data.delijn.be/stops/408228", "https://data.delijn.be/stops/408229"], ["https://data.delijn.be/stops/105512", "https://data.delijn.be/stops/105514"], ["https://data.delijn.be/stops/206725", "https://data.delijn.be/stops/206980"], ["https://data.delijn.be/stops/305776", "https://data.delijn.be/stops/305778"], ["https://data.delijn.be/stops/206442", "https://data.delijn.be/stops/209560"], ["https://data.delijn.be/stops/301400", "https://data.delijn.be/stops/303226"], ["https://data.delijn.be/stops/301444", "https://data.delijn.be/stops/306224"], ["https://data.delijn.be/stops/504978", "https://data.delijn.be/stops/504980"], ["https://data.delijn.be/stops/105387", "https://data.delijn.be/stops/105624"], ["https://data.delijn.be/stops/201358", "https://data.delijn.be/stops/208732"], ["https://data.delijn.be/stops/300274", "https://data.delijn.be/stops/300333"], ["https://data.delijn.be/stops/401300", "https://data.delijn.be/stops/401311"], ["https://data.delijn.be/stops/200894", "https://data.delijn.be/stops/202484"], ["https://data.delijn.be/stops/102394", "https://data.delijn.be/stops/108199"], ["https://data.delijn.be/stops/200163", "https://data.delijn.be/stops/203654"], ["https://data.delijn.be/stops/404892", "https://data.delijn.be/stops/404896"], ["https://data.delijn.be/stops/505248", "https://data.delijn.be/stops/505425"], ["https://data.delijn.be/stops/403956", "https://data.delijn.be/stops/407775"], ["https://data.delijn.be/stops/104785", "https://data.delijn.be/stops/104801"], ["https://data.delijn.be/stops/505625", "https://data.delijn.be/stops/507493"], ["https://data.delijn.be/stops/401376", "https://data.delijn.be/stops/401377"], ["https://data.delijn.be/stops/302757", "https://data.delijn.be/stops/302783"], ["https://data.delijn.be/stops/409267", "https://data.delijn.be/stops/409283"], ["https://data.delijn.be/stops/107283", "https://data.delijn.be/stops/107284"], ["https://data.delijn.be/stops/210017", "https://data.delijn.be/stops/211017"], ["https://data.delijn.be/stops/308503", "https://data.delijn.be/stops/308504"], ["https://data.delijn.be/stops/401298", "https://data.delijn.be/stops/401304"], ["https://data.delijn.be/stops/406928", "https://data.delijn.be/stops/406929"], ["https://data.delijn.be/stops/106457", "https://data.delijn.be/stops/107033"], ["https://data.delijn.be/stops/202446", "https://data.delijn.be/stops/203445"], ["https://data.delijn.be/stops/305131", "https://data.delijn.be/stops/305136"], ["https://data.delijn.be/stops/409403", "https://data.delijn.be/stops/410167"], ["https://data.delijn.be/stops/206015", "https://data.delijn.be/stops/207015"], ["https://data.delijn.be/stops/402359", "https://data.delijn.be/stops/402462"], ["https://data.delijn.be/stops/308136", "https://data.delijn.be/stops/308140"], ["https://data.delijn.be/stops/202192", "https://data.delijn.be/stops/203192"], ["https://data.delijn.be/stops/200979", "https://data.delijn.be/stops/201314"], ["https://data.delijn.be/stops/402133", "https://data.delijn.be/stops/405134"], ["https://data.delijn.be/stops/104597", "https://data.delijn.be/stops/109749"], ["https://data.delijn.be/stops/307301", "https://data.delijn.be/stops/307319"], ["https://data.delijn.be/stops/206451", "https://data.delijn.be/stops/206458"], ["https://data.delijn.be/stops/302186", "https://data.delijn.be/stops/302206"], ["https://data.delijn.be/stops/307740", "https://data.delijn.be/stops/307741"], ["https://data.delijn.be/stops/101466", "https://data.delijn.be/stops/101467"], ["https://data.delijn.be/stops/503651", "https://data.delijn.be/stops/508950"], ["https://data.delijn.be/stops/307147", "https://data.delijn.be/stops/307148"], ["https://data.delijn.be/stops/300542", "https://data.delijn.be/stops/300543"], ["https://data.delijn.be/stops/101705", "https://data.delijn.be/stops/101706"], ["https://data.delijn.be/stops/109243", "https://data.delijn.be/stops/109244"], ["https://data.delijn.be/stops/502217", "https://data.delijn.be/stops/507215"], ["https://data.delijn.be/stops/503705", "https://data.delijn.be/stops/508705"], ["https://data.delijn.be/stops/305658", "https://data.delijn.be/stops/305669"], ["https://data.delijn.be/stops/104747", "https://data.delijn.be/stops/104757"], ["https://data.delijn.be/stops/300559", "https://data.delijn.be/stops/300599"], ["https://data.delijn.be/stops/205094", "https://data.delijn.be/stops/205104"], ["https://data.delijn.be/stops/303412", "https://data.delijn.be/stops/303414"], ["https://data.delijn.be/stops/104018", "https://data.delijn.be/stops/106905"], ["https://data.delijn.be/stops/209610", "https://data.delijn.be/stops/307605"], ["https://data.delijn.be/stops/202244", "https://data.delijn.be/stops/205792"], ["https://data.delijn.be/stops/102925", "https://data.delijn.be/stops/104670"], ["https://data.delijn.be/stops/505504", "https://data.delijn.be/stops/505601"], ["https://data.delijn.be/stops/105214", "https://data.delijn.be/stops/105215"], ["https://data.delijn.be/stops/101932", "https://data.delijn.be/stops/106208"], ["https://data.delijn.be/stops/302775", "https://data.delijn.be/stops/304732"], ["https://data.delijn.be/stops/502356", "https://data.delijn.be/stops/507356"], ["https://data.delijn.be/stops/103338", "https://data.delijn.be/stops/103339"], ["https://data.delijn.be/stops/403110", "https://data.delijn.be/stops/403111"], ["https://data.delijn.be/stops/107131", "https://data.delijn.be/stops/109650"], ["https://data.delijn.be/stops/306872", "https://data.delijn.be/stops/307422"], ["https://data.delijn.be/stops/502501", "https://data.delijn.be/stops/505588"], ["https://data.delijn.be/stops/304209", "https://data.delijn.be/stops/306003"], ["https://data.delijn.be/stops/503977", "https://data.delijn.be/stops/508975"], ["https://data.delijn.be/stops/208143", "https://data.delijn.be/stops/209698"], ["https://data.delijn.be/stops/202493", "https://data.delijn.be/stops/203492"], ["https://data.delijn.be/stops/206603", "https://data.delijn.be/stops/217020"], ["https://data.delijn.be/stops/107546", "https://data.delijn.be/stops/107548"], ["https://data.delijn.be/stops/302136", "https://data.delijn.be/stops/302137"], ["https://data.delijn.be/stops/402356", "https://data.delijn.be/stops/402357"], ["https://data.delijn.be/stops/304550", "https://data.delijn.be/stops/304660"], ["https://data.delijn.be/stops/504787", "https://data.delijn.be/stops/508269"], ["https://data.delijn.be/stops/305269", "https://data.delijn.be/stops/305318"], ["https://data.delijn.be/stops/104919", "https://data.delijn.be/stops/208900"], ["https://data.delijn.be/stops/101778", "https://data.delijn.be/stops/102191"], ["https://data.delijn.be/stops/403336", "https://data.delijn.be/stops/410026"], ["https://data.delijn.be/stops/102218", "https://data.delijn.be/stops/105536"], ["https://data.delijn.be/stops/200569", "https://data.delijn.be/stops/201573"], ["https://data.delijn.be/stops/400841", "https://data.delijn.be/stops/409575"], ["https://data.delijn.be/stops/107014", "https://data.delijn.be/stops/107018"], ["https://data.delijn.be/stops/203170", "https://data.delijn.be/stops/211043"], ["https://data.delijn.be/stops/400179", "https://data.delijn.be/stops/400276"], ["https://data.delijn.be/stops/200073", "https://data.delijn.be/stops/203353"], ["https://data.delijn.be/stops/204366", "https://data.delijn.be/stops/214012"], ["https://data.delijn.be/stops/202520", "https://data.delijn.be/stops/203521"], ["https://data.delijn.be/stops/202361", "https://data.delijn.be/stops/205950"], ["https://data.delijn.be/stops/201697", "https://data.delijn.be/stops/202391"], ["https://data.delijn.be/stops/503190", "https://data.delijn.be/stops/508190"], ["https://data.delijn.be/stops/306936", "https://data.delijn.be/stops/306937"], ["https://data.delijn.be/stops/407225", "https://data.delijn.be/stops/407226"], ["https://data.delijn.be/stops/209055", "https://data.delijn.be/stops/209056"], ["https://data.delijn.be/stops/501768", "https://data.delijn.be/stops/505964"], ["https://data.delijn.be/stops/503868", "https://data.delijn.be/stops/508265"], ["https://data.delijn.be/stops/406185", "https://data.delijn.be/stops/406430"], ["https://data.delijn.be/stops/105072", "https://data.delijn.be/stops/106496"], ["https://data.delijn.be/stops/102727", "https://data.delijn.be/stops/205605"], ["https://data.delijn.be/stops/207447", "https://data.delijn.be/stops/207479"], ["https://data.delijn.be/stops/108239", "https://data.delijn.be/stops/108242"], ["https://data.delijn.be/stops/106449", "https://data.delijn.be/stops/106451"], ["https://data.delijn.be/stops/302364", "https://data.delijn.be/stops/302365"], ["https://data.delijn.be/stops/503188", "https://data.delijn.be/stops/503385"], ["https://data.delijn.be/stops/402853", "https://data.delijn.be/stops/306043"], ["https://data.delijn.be/stops/408250", "https://data.delijn.be/stops/408412"], ["https://data.delijn.be/stops/202369", "https://data.delijn.be/stops/202370"], ["https://data.delijn.be/stops/102170", "https://data.delijn.be/stops/102171"], ["https://data.delijn.be/stops/402331", "https://data.delijn.be/stops/402501"], ["https://data.delijn.be/stops/206788", "https://data.delijn.be/stops/208561"], ["https://data.delijn.be/stops/200658", "https://data.delijn.be/stops/201334"], ["https://data.delijn.be/stops/206150", "https://data.delijn.be/stops/207149"], ["https://data.delijn.be/stops/401849", "https://data.delijn.be/stops/406192"], ["https://data.delijn.be/stops/403128", "https://data.delijn.be/stops/409253"], ["https://data.delijn.be/stops/401970", "https://data.delijn.be/stops/408095"], ["https://data.delijn.be/stops/105247", "https://data.delijn.be/stops/109976"], ["https://data.delijn.be/stops/201325", "https://data.delijn.be/stops/211105"], ["https://data.delijn.be/stops/201161", "https://data.delijn.be/stops/201527"], ["https://data.delijn.be/stops/503445", "https://data.delijn.be/stops/508370"], ["https://data.delijn.be/stops/504840", "https://data.delijn.be/stops/508152"], ["https://data.delijn.be/stops/305767", "https://data.delijn.be/stops/305784"], ["https://data.delijn.be/stops/509447", "https://data.delijn.be/stops/509449"], ["https://data.delijn.be/stops/404999", "https://data.delijn.be/stops/405531"], ["https://data.delijn.be/stops/302341", "https://data.delijn.be/stops/302344"], ["https://data.delijn.be/stops/505928", "https://data.delijn.be/stops/509488"], ["https://data.delijn.be/stops/301889", "https://data.delijn.be/stops/305973"], ["https://data.delijn.be/stops/204459", "https://data.delijn.be/stops/205108"], ["https://data.delijn.be/stops/202508", "https://data.delijn.be/stops/202509"], ["https://data.delijn.be/stops/401479", "https://data.delijn.be/stops/402082"], ["https://data.delijn.be/stops/200927", "https://data.delijn.be/stops/203228"], ["https://data.delijn.be/stops/304379", "https://data.delijn.be/stops/304381"], ["https://data.delijn.be/stops/205237", "https://data.delijn.be/stops/207284"], ["https://data.delijn.be/stops/502814", "https://data.delijn.be/stops/505364"], ["https://data.delijn.be/stops/101506", "https://data.delijn.be/stops/109037"], ["https://data.delijn.be/stops/200490", "https://data.delijn.be/stops/201491"], ["https://data.delijn.be/stops/204075", "https://data.delijn.be/stops/205793"], ["https://data.delijn.be/stops/303734", "https://data.delijn.be/stops/303737"], ["https://data.delijn.be/stops/207329", "https://data.delijn.be/stops/308846"], ["https://data.delijn.be/stops/300708", "https://data.delijn.be/stops/303410"], ["https://data.delijn.be/stops/402519", "https://data.delijn.be/stops/402586"], ["https://data.delijn.be/stops/102401", "https://data.delijn.be/stops/102566"], ["https://data.delijn.be/stops/103376", "https://data.delijn.be/stops/406853"], ["https://data.delijn.be/stops/400936", "https://data.delijn.be/stops/400937"], ["https://data.delijn.be/stops/103494", "https://data.delijn.be/stops/106213"], ["https://data.delijn.be/stops/200595", "https://data.delijn.be/stops/201598"], ["https://data.delijn.be/stops/408037", "https://data.delijn.be/stops/408199"], ["https://data.delijn.be/stops/503016", "https://data.delijn.be/stops/503821"], ["https://data.delijn.be/stops/208288", "https://data.delijn.be/stops/209286"], ["https://data.delijn.be/stops/402781", "https://data.delijn.be/stops/402785"], ["https://data.delijn.be/stops/205981", "https://data.delijn.be/stops/208691"], ["https://data.delijn.be/stops/300024", "https://data.delijn.be/stops/300412"], ["https://data.delijn.be/stops/307064", "https://data.delijn.be/stops/307067"], ["https://data.delijn.be/stops/102831", "https://data.delijn.be/stops/104982"], ["https://data.delijn.be/stops/208331", "https://data.delijn.be/stops/208715"], ["https://data.delijn.be/stops/102701", "https://data.delijn.be/stops/102702"], ["https://data.delijn.be/stops/300600", "https://data.delijn.be/stops/300618"], ["https://data.delijn.be/stops/306942", "https://data.delijn.be/stops/306949"], ["https://data.delijn.be/stops/508909", "https://data.delijn.be/stops/509946"], ["https://data.delijn.be/stops/202578", "https://data.delijn.be/stops/203578"], ["https://data.delijn.be/stops/203680", "https://data.delijn.be/stops/203693"], ["https://data.delijn.be/stops/206524", "https://data.delijn.be/stops/207003"], ["https://data.delijn.be/stops/504260", "https://data.delijn.be/stops/508751"], ["https://data.delijn.be/stops/102623", "https://data.delijn.be/stops/108214"], ["https://data.delijn.be/stops/204211", "https://data.delijn.be/stops/207356"], ["https://data.delijn.be/stops/503674", "https://data.delijn.be/stops/505258"], ["https://data.delijn.be/stops/306723", "https://data.delijn.be/stops/306724"], ["https://data.delijn.be/stops/109239", "https://data.delijn.be/stops/109245"], ["https://data.delijn.be/stops/503357", "https://data.delijn.be/stops/508357"], ["https://data.delijn.be/stops/507250", "https://data.delijn.be/stops/507252"], ["https://data.delijn.be/stops/102209", "https://data.delijn.be/stops/106731"], ["https://data.delijn.be/stops/102921", "https://data.delijn.be/stops/104491"], ["https://data.delijn.be/stops/303271", "https://data.delijn.be/stops/305725"], ["https://data.delijn.be/stops/203294", "https://data.delijn.be/stops/203334"], ["https://data.delijn.be/stops/502345", "https://data.delijn.be/stops/507344"], ["https://data.delijn.be/stops/407130", "https://data.delijn.be/stops/407343"], ["https://data.delijn.be/stops/401637", "https://data.delijn.be/stops/401639"], ["https://data.delijn.be/stops/202379", "https://data.delijn.be/stops/202442"], ["https://data.delijn.be/stops/200148", "https://data.delijn.be/stops/201148"], ["https://data.delijn.be/stops/301268", "https://data.delijn.be/stops/308029"], ["https://data.delijn.be/stops/504007", "https://data.delijn.be/stops/505205"], ["https://data.delijn.be/stops/108617", "https://data.delijn.be/stops/300652"], ["https://data.delijn.be/stops/105351", "https://data.delijn.be/stops/105565"], ["https://data.delijn.be/stops/402136", "https://data.delijn.be/stops/402154"], ["https://data.delijn.be/stops/304753", "https://data.delijn.be/stops/308701"], ["https://data.delijn.be/stops/406167", "https://data.delijn.be/stops/410225"], ["https://data.delijn.be/stops/502646", "https://data.delijn.be/stops/502742"], ["https://data.delijn.be/stops/103542", "https://data.delijn.be/stops/106729"], ["https://data.delijn.be/stops/507750", "https://data.delijn.be/stops/507751"], ["https://data.delijn.be/stops/406874", "https://data.delijn.be/stops/409755"], ["https://data.delijn.be/stops/405694", "https://data.delijn.be/stops/405696"], ["https://data.delijn.be/stops/102073", "https://data.delijn.be/stops/108806"], ["https://data.delijn.be/stops/105238", "https://data.delijn.be/stops/105241"], ["https://data.delijn.be/stops/404726", "https://data.delijn.be/stops/404834"], ["https://data.delijn.be/stops/509028", "https://data.delijn.be/stops/509032"], ["https://data.delijn.be/stops/303709", "https://data.delijn.be/stops/303740"], ["https://data.delijn.be/stops/403055", "https://data.delijn.be/stops/403228"], ["https://data.delijn.be/stops/302675", "https://data.delijn.be/stops/302690"], ["https://data.delijn.be/stops/300888", "https://data.delijn.be/stops/303832"], ["https://data.delijn.be/stops/406514", "https://data.delijn.be/stops/406515"], ["https://data.delijn.be/stops/206821", "https://data.delijn.be/stops/207821"], ["https://data.delijn.be/stops/208146", "https://data.delijn.be/stops/209582"], ["https://data.delijn.be/stops/408920", "https://data.delijn.be/stops/408925"], ["https://data.delijn.be/stops/503979", "https://data.delijn.be/stops/507356"], ["https://data.delijn.be/stops/404603", "https://data.delijn.be/stops/404608"], ["https://data.delijn.be/stops/108396", "https://data.delijn.be/stops/108398"], ["https://data.delijn.be/stops/402984", "https://data.delijn.be/stops/408556"], ["https://data.delijn.be/stops/203279", "https://data.delijn.be/stops/203892"], ["https://data.delijn.be/stops/400062", "https://data.delijn.be/stops/400063"], ["https://data.delijn.be/stops/506085", "https://data.delijn.be/stops/506099"], ["https://data.delijn.be/stops/406869", "https://data.delijn.be/stops/406870"], ["https://data.delijn.be/stops/402678", "https://data.delijn.be/stops/402727"], ["https://data.delijn.be/stops/208054", "https://data.delijn.be/stops/209054"], ["https://data.delijn.be/stops/205161", "https://data.delijn.be/stops/206396"], ["https://data.delijn.be/stops/200628", "https://data.delijn.be/stops/218003"], ["https://data.delijn.be/stops/204248", "https://data.delijn.be/stops/205222"], ["https://data.delijn.be/stops/206245", "https://data.delijn.be/stops/206403"], ["https://data.delijn.be/stops/501406", "https://data.delijn.be/stops/506176"], ["https://data.delijn.be/stops/405333", "https://data.delijn.be/stops/405342"], ["https://data.delijn.be/stops/103637", "https://data.delijn.be/stops/107165"], ["https://data.delijn.be/stops/106597", "https://data.delijn.be/stops/107241"], ["https://data.delijn.be/stops/202524", "https://data.delijn.be/stops/202960"], ["https://data.delijn.be/stops/105694", "https://data.delijn.be/stops/105696"], ["https://data.delijn.be/stops/108178", "https://data.delijn.be/stops/108349"], ["https://data.delijn.be/stops/401040", "https://data.delijn.be/stops/401120"], ["https://data.delijn.be/stops/200632", "https://data.delijn.be/stops/201660"], ["https://data.delijn.be/stops/206747", "https://data.delijn.be/stops/207698"], ["https://data.delijn.be/stops/106430", "https://data.delijn.be/stops/106500"], ["https://data.delijn.be/stops/502324", "https://data.delijn.be/stops/507324"], ["https://data.delijn.be/stops/305403", "https://data.delijn.be/stops/305404"], ["https://data.delijn.be/stops/109048", "https://data.delijn.be/stops/300067"], ["https://data.delijn.be/stops/208231", "https://data.delijn.be/stops/208796"], ["https://data.delijn.be/stops/400544", "https://data.delijn.be/stops/400545"], ["https://data.delijn.be/stops/503164", "https://data.delijn.be/stops/508864"], ["https://data.delijn.be/stops/301102", "https://data.delijn.be/stops/308871"], ["https://data.delijn.be/stops/400559", "https://data.delijn.be/stops/403829"], ["https://data.delijn.be/stops/506623", "https://data.delijn.be/stops/506624"], ["https://data.delijn.be/stops/206478", "https://data.delijn.be/stops/207175"], ["https://data.delijn.be/stops/103605", "https://data.delijn.be/stops/109401"], ["https://data.delijn.be/stops/301372", "https://data.delijn.be/stops/306684"], ["https://data.delijn.be/stops/204322", "https://data.delijn.be/stops/205060"], ["https://data.delijn.be/stops/104405", "https://data.delijn.be/stops/104627"], ["https://data.delijn.be/stops/304866", "https://data.delijn.be/stops/306416"], ["https://data.delijn.be/stops/209176", "https://data.delijn.be/stops/209177"], ["https://data.delijn.be/stops/400749", "https://data.delijn.be/stops/409580"], ["https://data.delijn.be/stops/201546", "https://data.delijn.be/stops/203896"], ["https://data.delijn.be/stops/406066", "https://data.delijn.be/stops/410148"], ["https://data.delijn.be/stops/501418", "https://data.delijn.be/stops/506418"], ["https://data.delijn.be/stops/204042", "https://data.delijn.be/stops/205483"], ["https://data.delijn.be/stops/301507", "https://data.delijn.be/stops/301517"], ["https://data.delijn.be/stops/105705", "https://data.delijn.be/stops/105710"], ["https://data.delijn.be/stops/203815", "https://data.delijn.be/stops/209746"], ["https://data.delijn.be/stops/406322", "https://data.delijn.be/stops/406323"], ["https://data.delijn.be/stops/204002", "https://data.delijn.be/stops/204718"], ["https://data.delijn.be/stops/109293", "https://data.delijn.be/stops/109704"], ["https://data.delijn.be/stops/300789", "https://data.delijn.be/stops/302407"], ["https://data.delijn.be/stops/408114", "https://data.delijn.be/stops/408454"], ["https://data.delijn.be/stops/105270", "https://data.delijn.be/stops/105275"], ["https://data.delijn.be/stops/106494", "https://data.delijn.be/stops/109255"], ["https://data.delijn.be/stops/108677", "https://data.delijn.be/stops/109739"], ["https://data.delijn.be/stops/301849", "https://data.delijn.be/stops/305871"], ["https://data.delijn.be/stops/204119", "https://data.delijn.be/stops/205119"], ["https://data.delijn.be/stops/303890", "https://data.delijn.be/stops/307796"], ["https://data.delijn.be/stops/405737", "https://data.delijn.be/stops/405739"], ["https://data.delijn.be/stops/304025", "https://data.delijn.be/stops/304111"], ["https://data.delijn.be/stops/202410", "https://data.delijn.be/stops/204943"], ["https://data.delijn.be/stops/306869", "https://data.delijn.be/stops/307422"], ["https://data.delijn.be/stops/301156", "https://data.delijn.be/stops/301166"], ["https://data.delijn.be/stops/206953", "https://data.delijn.be/stops/207923"], ["https://data.delijn.be/stops/401538", "https://data.delijn.be/stops/401892"], ["https://data.delijn.be/stops/504980", "https://data.delijn.be/stops/504982"], ["https://data.delijn.be/stops/203839", "https://data.delijn.be/stops/219002"], ["https://data.delijn.be/stops/502193", "https://data.delijn.be/stops/502202"], ["https://data.delijn.be/stops/503328", "https://data.delijn.be/stops/505816"], ["https://data.delijn.be/stops/202902", "https://data.delijn.be/stops/211127"], ["https://data.delijn.be/stops/107037", "https://data.delijn.be/stops/109558"], ["https://data.delijn.be/stops/108898", "https://data.delijn.be/stops/108901"], ["https://data.delijn.be/stops/206367", "https://data.delijn.be/stops/207194"], ["https://data.delijn.be/stops/505427", "https://data.delijn.be/stops/509479"], ["https://data.delijn.be/stops/405389", "https://data.delijn.be/stops/409256"], ["https://data.delijn.be/stops/302253", "https://data.delijn.be/stops/304314"], ["https://data.delijn.be/stops/403223", "https://data.delijn.be/stops/403385"], ["https://data.delijn.be/stops/307650", "https://data.delijn.be/stops/307691"], ["https://data.delijn.be/stops/504595", "https://data.delijn.be/stops/504597"], ["https://data.delijn.be/stops/401000", "https://data.delijn.be/stops/401009"], ["https://data.delijn.be/stops/201921", "https://data.delijn.be/stops/203523"], ["https://data.delijn.be/stops/305647", "https://data.delijn.be/stops/307102"], ["https://data.delijn.be/stops/401951", "https://data.delijn.be/stops/407559"], ["https://data.delijn.be/stops/306745", "https://data.delijn.be/stops/306885"], ["https://data.delijn.be/stops/208124", "https://data.delijn.be/stops/209076"], ["https://data.delijn.be/stops/301365", "https://data.delijn.be/stops/308767"], ["https://data.delijn.be/stops/405476", "https://data.delijn.be/stops/406623"], ["https://data.delijn.be/stops/200948", "https://data.delijn.be/stops/202048"], ["https://data.delijn.be/stops/203198", "https://data.delijn.be/stops/203199"], ["https://data.delijn.be/stops/208154", "https://data.delijn.be/stops/208155"], ["https://data.delijn.be/stops/505949", "https://data.delijn.be/stops/508310"], ["https://data.delijn.be/stops/405442", "https://data.delijn.be/stops/408689"], ["https://data.delijn.be/stops/102422", "https://data.delijn.be/stops/107321"], ["https://data.delijn.be/stops/402248", "https://data.delijn.be/stops/402249"], ["https://data.delijn.be/stops/104573", "https://data.delijn.be/stops/107531"], ["https://data.delijn.be/stops/208027", "https://data.delijn.be/stops/209014"], ["https://data.delijn.be/stops/104418", "https://data.delijn.be/stops/104419"], ["https://data.delijn.be/stops/503674", "https://data.delijn.be/stops/508672"], ["https://data.delijn.be/stops/506191", "https://data.delijn.be/stops/506379"], ["https://data.delijn.be/stops/501448", "https://data.delijn.be/stops/506362"], ["https://data.delijn.be/stops/204120", "https://data.delijn.be/stops/205120"], ["https://data.delijn.be/stops/403473", "https://data.delijn.be/stops/410061"], ["https://data.delijn.be/stops/304511", "https://data.delijn.be/stops/305277"], ["https://data.delijn.be/stops/501212", "https://data.delijn.be/stops/501216"], ["https://data.delijn.be/stops/504493", "https://data.delijn.be/stops/504730"], ["https://data.delijn.be/stops/402612", "https://data.delijn.be/stops/402626"], ["https://data.delijn.be/stops/403092", "https://data.delijn.be/stops/403234"], ["https://data.delijn.be/stops/405875", "https://data.delijn.be/stops/408371"], ["https://data.delijn.be/stops/304320", "https://data.delijn.be/stops/307005"], ["https://data.delijn.be/stops/204636", "https://data.delijn.be/stops/204637"], ["https://data.delijn.be/stops/106262", "https://data.delijn.be/stops/106276"], ["https://data.delijn.be/stops/501041", "https://data.delijn.be/stops/506128"], ["https://data.delijn.be/stops/507386", "https://data.delijn.be/stops/509794"], ["https://data.delijn.be/stops/203964", "https://data.delijn.be/stops/205770"], ["https://data.delijn.be/stops/104453", "https://data.delijn.be/stops/107493"], ["https://data.delijn.be/stops/206082", "https://data.delijn.be/stops/207082"], ["https://data.delijn.be/stops/509523", "https://data.delijn.be/stops/509604"], ["https://data.delijn.be/stops/103909", "https://data.delijn.be/stops/106361"], ["https://data.delijn.be/stops/405859", "https://data.delijn.be/stops/405862"], ["https://data.delijn.be/stops/103998", "https://data.delijn.be/stops/104007"], ["https://data.delijn.be/stops/305033", "https://data.delijn.be/stops/305035"], ["https://data.delijn.be/stops/302868", "https://data.delijn.be/stops/304184"], ["https://data.delijn.be/stops/503061", "https://data.delijn.be/stops/504999"], ["https://data.delijn.be/stops/208786", "https://data.delijn.be/stops/209177"], ["https://data.delijn.be/stops/105459", "https://data.delijn.be/stops/109893"], ["https://data.delijn.be/stops/503771", "https://data.delijn.be/stops/508775"], ["https://data.delijn.be/stops/402519", "https://data.delijn.be/stops/404098"], ["https://data.delijn.be/stops/103132", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/201497", "https://data.delijn.be/stops/201941"], ["https://data.delijn.be/stops/501240", "https://data.delijn.be/stops/501242"], ["https://data.delijn.be/stops/105030", "https://data.delijn.be/stops/105775"], ["https://data.delijn.be/stops/102469", "https://data.delijn.be/stops/400413"], ["https://data.delijn.be/stops/501599", "https://data.delijn.be/stops/506599"], ["https://data.delijn.be/stops/301063", "https://data.delijn.be/stops/305918"], ["https://data.delijn.be/stops/503570", "https://data.delijn.be/stops/508554"], ["https://data.delijn.be/stops/508495", "https://data.delijn.be/stops/509456"], ["https://data.delijn.be/stops/406151", "https://data.delijn.be/stops/406208"], ["https://data.delijn.be/stops/304129", "https://data.delijn.be/stops/305879"], ["https://data.delijn.be/stops/507608", "https://data.delijn.be/stops/507609"], ["https://data.delijn.be/stops/101146", "https://data.delijn.be/stops/109542"], ["https://data.delijn.be/stops/501615", "https://data.delijn.be/stops/501617"], ["https://data.delijn.be/stops/204992", "https://data.delijn.be/stops/208332"], ["https://data.delijn.be/stops/502263", "https://data.delijn.be/stops/507351"], ["https://data.delijn.be/stops/106394", "https://data.delijn.be/stops/108540"], ["https://data.delijn.be/stops/208148", "https://data.delijn.be/stops/209403"], ["https://data.delijn.be/stops/400736", "https://data.delijn.be/stops/409442"], ["https://data.delijn.be/stops/503556", "https://data.delijn.be/stops/503575"], ["https://data.delijn.be/stops/509017", "https://data.delijn.be/stops/509507"], ["https://data.delijn.be/stops/300759", "https://data.delijn.be/stops/301038"], ["https://data.delijn.be/stops/208495", "https://data.delijn.be/stops/209494"], ["https://data.delijn.be/stops/206910", "https://data.delijn.be/stops/206911"], ["https://data.delijn.be/stops/501493", "https://data.delijn.be/stops/506104"], ["https://data.delijn.be/stops/501630", "https://data.delijn.be/stops/501634"], ["https://data.delijn.be/stops/101777", "https://data.delijn.be/stops/107697"], ["https://data.delijn.be/stops/105487", "https://data.delijn.be/stops/105493"], ["https://data.delijn.be/stops/405556", "https://data.delijn.be/stops/405576"], ["https://data.delijn.be/stops/204929", "https://data.delijn.be/stops/211048"], ["https://data.delijn.be/stops/504363", "https://data.delijn.be/stops/509496"], ["https://data.delijn.be/stops/208215", "https://data.delijn.be/stops/209215"], ["https://data.delijn.be/stops/103970", "https://data.delijn.be/stops/106065"], ["https://data.delijn.be/stops/407882", "https://data.delijn.be/stops/408189"], ["https://data.delijn.be/stops/405165", "https://data.delijn.be/stops/405216"], ["https://data.delijn.be/stops/201691", "https://data.delijn.be/stops/203364"], ["https://data.delijn.be/stops/300640", "https://data.delijn.be/stops/300646"], ["https://data.delijn.be/stops/307070", "https://data.delijn.be/stops/307071"], ["https://data.delijn.be/stops/405619", "https://data.delijn.be/stops/407185"], ["https://data.delijn.be/stops/206241", "https://data.delijn.be/stops/206405"], ["https://data.delijn.be/stops/300177", "https://data.delijn.be/stops/300182"], ["https://data.delijn.be/stops/102086", "https://data.delijn.be/stops/102087"], ["https://data.delijn.be/stops/504071", "https://data.delijn.be/stops/504851"], ["https://data.delijn.be/stops/403589", "https://data.delijn.be/stops/403867"], ["https://data.delijn.be/stops/503593", "https://data.delijn.be/stops/508222"], ["https://data.delijn.be/stops/208527", "https://data.delijn.be/stops/209082"], ["https://data.delijn.be/stops/103318", "https://data.delijn.be/stops/107065"], ["https://data.delijn.be/stops/101671", "https://data.delijn.be/stops/107661"], ["https://data.delijn.be/stops/107568", "https://data.delijn.be/stops/107739"], ["https://data.delijn.be/stops/104921", "https://data.delijn.be/stops/107859"], ["https://data.delijn.be/stops/502494", "https://data.delijn.be/stops/502812"], ["https://data.delijn.be/stops/206759", "https://data.delijn.be/stops/218020"], ["https://data.delijn.be/stops/102464", "https://data.delijn.be/stops/102466"], ["https://data.delijn.be/stops/108355", "https://data.delijn.be/stops/108360"], ["https://data.delijn.be/stops/304546", "https://data.delijn.be/stops/304698"], ["https://data.delijn.be/stops/203192", "https://data.delijn.be/stops/210855"], ["https://data.delijn.be/stops/304416", "https://data.delijn.be/stops/307501"], ["https://data.delijn.be/stops/404920", "https://data.delijn.be/stops/404954"], ["https://data.delijn.be/stops/208677", "https://data.delijn.be/stops/209431"], ["https://data.delijn.be/stops/104378", "https://data.delijn.be/stops/104381"], ["https://data.delijn.be/stops/202470", "https://data.delijn.be/stops/209852"], ["https://data.delijn.be/stops/502056", "https://data.delijn.be/stops/502933"], ["https://data.delijn.be/stops/200147", "https://data.delijn.be/stops/201112"], ["https://data.delijn.be/stops/408912", "https://data.delijn.be/stops/408913"], ["https://data.delijn.be/stops/509517", "https://data.delijn.be/stops/509518"], ["https://data.delijn.be/stops/503314", "https://data.delijn.be/stops/505949"], ["https://data.delijn.be/stops/306069", "https://data.delijn.be/stops/306728"], ["https://data.delijn.be/stops/105552", "https://data.delijn.be/stops/105566"], ["https://data.delijn.be/stops/208570", "https://data.delijn.be/stops/208571"], ["https://data.delijn.be/stops/301881", "https://data.delijn.be/stops/305973"], ["https://data.delijn.be/stops/200861", "https://data.delijn.be/stops/211017"], ["https://data.delijn.be/stops/208367", "https://data.delijn.be/stops/208777"], ["https://data.delijn.be/stops/404139", "https://data.delijn.be/stops/405918"], ["https://data.delijn.be/stops/203909", "https://data.delijn.be/stops/203948"], ["https://data.delijn.be/stops/401408", "https://data.delijn.be/stops/301106"], ["https://data.delijn.be/stops/207864", "https://data.delijn.be/stops/209466"], ["https://data.delijn.be/stops/505692", "https://data.delijn.be/stops/507545"], ["https://data.delijn.be/stops/106193", "https://data.delijn.be/stops/106194"], ["https://data.delijn.be/stops/304734", "https://data.delijn.be/stops/304735"], ["https://data.delijn.be/stops/306257", "https://data.delijn.be/stops/306258"], ["https://data.delijn.be/stops/304990", "https://data.delijn.be/stops/304993"], ["https://data.delijn.be/stops/407342", "https://data.delijn.be/stops/407343"], ["https://data.delijn.be/stops/404442", "https://data.delijn.be/stops/404552"], ["https://data.delijn.be/stops/401165", "https://data.delijn.be/stops/410023"], ["https://data.delijn.be/stops/304781", "https://data.delijn.be/stops/304798"], ["https://data.delijn.be/stops/505164", "https://data.delijn.be/stops/509009"], ["https://data.delijn.be/stops/308251", "https://data.delijn.be/stops/308671"], ["https://data.delijn.be/stops/404740", "https://data.delijn.be/stops/404749"], ["https://data.delijn.be/stops/304348", "https://data.delijn.be/stops/307007"], ["https://data.delijn.be/stops/503901", "https://data.delijn.be/stops/503905"], ["https://data.delijn.be/stops/105763", "https://data.delijn.be/stops/109528"], ["https://data.delijn.be/stops/200759", "https://data.delijn.be/stops/200774"], ["https://data.delijn.be/stops/108636", "https://data.delijn.be/stops/109663"], ["https://data.delijn.be/stops/200592", "https://data.delijn.be/stops/201591"], ["https://data.delijn.be/stops/501716", "https://data.delijn.be/stops/506606"], ["https://data.delijn.be/stops/303520", "https://data.delijn.be/stops/303522"], ["https://data.delijn.be/stops/507540", "https://data.delijn.be/stops/507565"], ["https://data.delijn.be/stops/404918", "https://data.delijn.be/stops/404939"], ["https://data.delijn.be/stops/305169", "https://data.delijn.be/stops/305176"], ["https://data.delijn.be/stops/505172", "https://data.delijn.be/stops/505309"], ["https://data.delijn.be/stops/404304", "https://data.delijn.be/stops/410082"], ["https://data.delijn.be/stops/409274", "https://data.delijn.be/stops/409275"], ["https://data.delijn.be/stops/102251", "https://data.delijn.be/stops/102253"], ["https://data.delijn.be/stops/300595", "https://data.delijn.be/stops/300596"], ["https://data.delijn.be/stops/504364", "https://data.delijn.be/stops/508009"], ["https://data.delijn.be/stops/302176", "https://data.delijn.be/stops/302177"], ["https://data.delijn.be/stops/503084", "https://data.delijn.be/stops/508084"], ["https://data.delijn.be/stops/303810", "https://data.delijn.be/stops/303824"], ["https://data.delijn.be/stops/403990", "https://data.delijn.be/stops/410015"], ["https://data.delijn.be/stops/305528", "https://data.delijn.be/stops/305554"], ["https://data.delijn.be/stops/208970", "https://data.delijn.be/stops/209707"], ["https://data.delijn.be/stops/302390", "https://data.delijn.be/stops/302393"], ["https://data.delijn.be/stops/408244", "https://data.delijn.be/stops/308279"], ["https://data.delijn.be/stops/105170", "https://data.delijn.be/stops/107210"], ["https://data.delijn.be/stops/407625", "https://data.delijn.be/stops/410193"], ["https://data.delijn.be/stops/200172", "https://data.delijn.be/stops/201149"], ["https://data.delijn.be/stops/102499", "https://data.delijn.be/stops/400025"], ["https://data.delijn.be/stops/202820", "https://data.delijn.be/stops/203820"], ["https://data.delijn.be/stops/501326", "https://data.delijn.be/stops/501359"], ["https://data.delijn.be/stops/406012", "https://data.delijn.be/stops/406148"], ["https://data.delijn.be/stops/102571", "https://data.delijn.be/stops/109236"], ["https://data.delijn.be/stops/303049", "https://data.delijn.be/stops/306107"], ["https://data.delijn.be/stops/304504", "https://data.delijn.be/stops/304505"], ["https://data.delijn.be/stops/206373", "https://data.delijn.be/stops/207728"], ["https://data.delijn.be/stops/302451", "https://data.delijn.be/stops/307140"], ["https://data.delijn.be/stops/200926", "https://data.delijn.be/stops/202393"], ["https://data.delijn.be/stops/107877", "https://data.delijn.be/stops/107878"], ["https://data.delijn.be/stops/403510", "https://data.delijn.be/stops/403551"], ["https://data.delijn.be/stops/503828", "https://data.delijn.be/stops/508675"], ["https://data.delijn.be/stops/501014", "https://data.delijn.be/stops/506615"], ["https://data.delijn.be/stops/503970", "https://data.delijn.be/stops/508970"], ["https://data.delijn.be/stops/207208", "https://data.delijn.be/stops/207722"], ["https://data.delijn.be/stops/202305", "https://data.delijn.be/stops/203305"], ["https://data.delijn.be/stops/505824", "https://data.delijn.be/stops/506507"], ["https://data.delijn.be/stops/409143", "https://data.delijn.be/stops/409144"], ["https://data.delijn.be/stops/505283", "https://data.delijn.be/stops/505996"], ["https://data.delijn.be/stops/401393", "https://data.delijn.be/stops/401478"], ["https://data.delijn.be/stops/102874", "https://data.delijn.be/stops/103363"], ["https://data.delijn.be/stops/106276", "https://data.delijn.be/stops/106278"], ["https://data.delijn.be/stops/301356", "https://data.delijn.be/stops/304687"], ["https://data.delijn.be/stops/104559", "https://data.delijn.be/stops/104561"], ["https://data.delijn.be/stops/106291", "https://data.delijn.be/stops/106313"], ["https://data.delijn.be/stops/101023", "https://data.delijn.be/stops/106040"], ["https://data.delijn.be/stops/109039", "https://data.delijn.be/stops/109081"], ["https://data.delijn.be/stops/502361", "https://data.delijn.be/stops/507374"], ["https://data.delijn.be/stops/107089", "https://data.delijn.be/stops/107091"], ["https://data.delijn.be/stops/401653", "https://data.delijn.be/stops/401654"], ["https://data.delijn.be/stops/504810", "https://data.delijn.be/stops/504811"], ["https://data.delijn.be/stops/505706", "https://data.delijn.be/stops/505709"], ["https://data.delijn.be/stops/201361", "https://data.delijn.be/stops/201363"], ["https://data.delijn.be/stops/104424", "https://data.delijn.be/stops/204286"], ["https://data.delijn.be/stops/303206", "https://data.delijn.be/stops/304319"], ["https://data.delijn.be/stops/503663", "https://data.delijn.be/stops/508660"], ["https://data.delijn.be/stops/201393", "https://data.delijn.be/stops/204810"], ["https://data.delijn.be/stops/300118", "https://data.delijn.be/stops/307733"], ["https://data.delijn.be/stops/308606", "https://data.delijn.be/stops/308609"], ["https://data.delijn.be/stops/205084", "https://data.delijn.be/stops/205410"], ["https://data.delijn.be/stops/108657", "https://data.delijn.be/stops/306628"], ["https://data.delijn.be/stops/102821", "https://data.delijn.be/stops/103850"], ["https://data.delijn.be/stops/105091", "https://data.delijn.be/stops/109505"], ["https://data.delijn.be/stops/105554", "https://data.delijn.be/stops/105559"], ["https://data.delijn.be/stops/208390", "https://data.delijn.be/stops/209391"], ["https://data.delijn.be/stops/501313", "https://data.delijn.be/stops/506328"], ["https://data.delijn.be/stops/508760", "https://data.delijn.be/stops/508763"], ["https://data.delijn.be/stops/200738", "https://data.delijn.be/stops/203580"], ["https://data.delijn.be/stops/208117", "https://data.delijn.be/stops/208236"], ["https://data.delijn.be/stops/405949", "https://data.delijn.be/stops/405953"], ["https://data.delijn.be/stops/101172", "https://data.delijn.be/stops/104810"], ["https://data.delijn.be/stops/403162", "https://data.delijn.be/stops/410398"], ["https://data.delijn.be/stops/409045", "https://data.delijn.be/stops/409046"], ["https://data.delijn.be/stops/300416", "https://data.delijn.be/stops/300443"], ["https://data.delijn.be/stops/508079", "https://data.delijn.be/stops/508081"], ["https://data.delijn.be/stops/302092", "https://data.delijn.be/stops/302094"], ["https://data.delijn.be/stops/405981", "https://data.delijn.be/stops/405983"], ["https://data.delijn.be/stops/101089", "https://data.delijn.be/stops/101161"], ["https://data.delijn.be/stops/102904", "https://data.delijn.be/stops/108972"], ["https://data.delijn.be/stops/505233", "https://data.delijn.be/stops/507226"], ["https://data.delijn.be/stops/504035", "https://data.delijn.be/stops/509471"], ["https://data.delijn.be/stops/200346", "https://data.delijn.be/stops/200534"], ["https://data.delijn.be/stops/206509", "https://data.delijn.be/stops/207825"], ["https://data.delijn.be/stops/208334", "https://data.delijn.be/stops/208377"], ["https://data.delijn.be/stops/201772", "https://data.delijn.be/stops/209267"], ["https://data.delijn.be/stops/201628", "https://data.delijn.be/stops/205984"], ["https://data.delijn.be/stops/106896", "https://data.delijn.be/stops/107216"], ["https://data.delijn.be/stops/504021", "https://data.delijn.be/stops/504087"], ["https://data.delijn.be/stops/202702", "https://data.delijn.be/stops/203701"], ["https://data.delijn.be/stops/408186", "https://data.delijn.be/stops/408188"], ["https://data.delijn.be/stops/304704", "https://data.delijn.be/stops/306552"], ["https://data.delijn.be/stops/300140", "https://data.delijn.be/stops/306824"], ["https://data.delijn.be/stops/401199", "https://data.delijn.be/stops/401201"], ["https://data.delijn.be/stops/402387", "https://data.delijn.be/stops/402487"], ["https://data.delijn.be/stops/209449", "https://data.delijn.be/stops/209661"], ["https://data.delijn.be/stops/400779", "https://data.delijn.be/stops/400885"], ["https://data.delijn.be/stops/102629", "https://data.delijn.be/stops/108211"], ["https://data.delijn.be/stops/300478", "https://data.delijn.be/stops/306175"], ["https://data.delijn.be/stops/404422", "https://data.delijn.be/stops/404424"], ["https://data.delijn.be/stops/109279", "https://data.delijn.be/stops/109281"], ["https://data.delijn.be/stops/501380", "https://data.delijn.be/stops/506381"], ["https://data.delijn.be/stops/103497", "https://data.delijn.be/stops/106214"], ["https://data.delijn.be/stops/106445", "https://data.delijn.be/stops/106447"], ["https://data.delijn.be/stops/107565", "https://data.delijn.be/stops/109080"], ["https://data.delijn.be/stops/304527", "https://data.delijn.be/stops/304684"], ["https://data.delijn.be/stops/408007", "https://data.delijn.be/stops/408010"], ["https://data.delijn.be/stops/401475", "https://data.delijn.be/stops/410127"], ["https://data.delijn.be/stops/101666", "https://data.delijn.be/stops/107066"], ["https://data.delijn.be/stops/301770", "https://data.delijn.be/stops/306796"], ["https://data.delijn.be/stops/506070", "https://data.delijn.be/stops/506072"], ["https://data.delijn.be/stops/505024", "https://data.delijn.be/stops/507006"], ["https://data.delijn.be/stops/503485", "https://data.delijn.be/stops/503491"], ["https://data.delijn.be/stops/207514", "https://data.delijn.be/stops/207659"], ["https://data.delijn.be/stops/108076", "https://data.delijn.be/stops/108841"], ["https://data.delijn.be/stops/207559", "https://data.delijn.be/stops/207840"], ["https://data.delijn.be/stops/301169", "https://data.delijn.be/stops/305525"], ["https://data.delijn.be/stops/205503", "https://data.delijn.be/stops/205504"], ["https://data.delijn.be/stops/502617", "https://data.delijn.be/stops/502618"], ["https://data.delijn.be/stops/400684", "https://data.delijn.be/stops/406604"], ["https://data.delijn.be/stops/304718", "https://data.delijn.be/stops/308688"], ["https://data.delijn.be/stops/406973", "https://data.delijn.be/stops/408440"], ["https://data.delijn.be/stops/306962", "https://data.delijn.be/stops/306965"], ["https://data.delijn.be/stops/503354", "https://data.delijn.be/stops/503425"], ["https://data.delijn.be/stops/302254", "https://data.delijn.be/stops/302260"], ["https://data.delijn.be/stops/206154", "https://data.delijn.be/stops/207114"], ["https://data.delijn.be/stops/401782", "https://data.delijn.be/stops/406420"], ["https://data.delijn.be/stops/409634", "https://data.delijn.be/stops/409636"], ["https://data.delijn.be/stops/402308", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/503780", "https://data.delijn.be/stops/505160"], ["https://data.delijn.be/stops/406606", "https://data.delijn.be/stops/406624"], ["https://data.delijn.be/stops/201876", "https://data.delijn.be/stops/202658"], ["https://data.delijn.be/stops/107513", "https://data.delijn.be/stops/107518"], ["https://data.delijn.be/stops/404475", "https://data.delijn.be/stops/404494"], ["https://data.delijn.be/stops/206028", "https://data.delijn.be/stops/207077"], ["https://data.delijn.be/stops/108447", "https://data.delijn.be/stops/108448"], ["https://data.delijn.be/stops/105549", "https://data.delijn.be/stops/105553"], ["https://data.delijn.be/stops/102286", "https://data.delijn.be/stops/102737"], ["https://data.delijn.be/stops/108089", "https://data.delijn.be/stops/108390"], ["https://data.delijn.be/stops/308720", "https://data.delijn.be/stops/308723"], ["https://data.delijn.be/stops/401320", "https://data.delijn.be/stops/401340"], ["https://data.delijn.be/stops/501262", "https://data.delijn.be/stops/501321"], ["https://data.delijn.be/stops/105499", "https://data.delijn.be/stops/105501"], ["https://data.delijn.be/stops/405149", "https://data.delijn.be/stops/405234"], ["https://data.delijn.be/stops/201693", "https://data.delijn.be/stops/202034"], ["https://data.delijn.be/stops/504582", "https://data.delijn.be/stops/509582"], ["https://data.delijn.be/stops/103674", "https://data.delijn.be/stops/106218"], ["https://data.delijn.be/stops/305649", "https://data.delijn.be/stops/307790"], ["https://data.delijn.be/stops/502103", "https://data.delijn.be/stops/502141"], ["https://data.delijn.be/stops/108715", "https://data.delijn.be/stops/108858"], ["https://data.delijn.be/stops/104449", "https://data.delijn.be/stops/109915"], ["https://data.delijn.be/stops/305450", "https://data.delijn.be/stops/307558"], ["https://data.delijn.be/stops/503136", "https://data.delijn.be/stops/509887"], ["https://data.delijn.be/stops/404404", "https://data.delijn.be/stops/404413"], ["https://data.delijn.be/stops/106464", "https://data.delijn.be/stops/108247"], ["https://data.delijn.be/stops/402240", "https://data.delijn.be/stops/404499"], ["https://data.delijn.be/stops/504310", "https://data.delijn.be/stops/504318"], ["https://data.delijn.be/stops/208585", "https://data.delijn.be/stops/209584"], ["https://data.delijn.be/stops/405705", "https://data.delijn.be/stops/408972"], ["https://data.delijn.be/stops/206125", "https://data.delijn.be/stops/206684"], ["https://data.delijn.be/stops/305946", "https://data.delijn.be/stops/305947"], ["https://data.delijn.be/stops/301365", "https://data.delijn.be/stops/304794"], ["https://data.delijn.be/stops/208469", "https://data.delijn.be/stops/209470"], ["https://data.delijn.be/stops/306612", "https://data.delijn.be/stops/306630"], ["https://data.delijn.be/stops/202810", "https://data.delijn.be/stops/202866"], ["https://data.delijn.be/stops/208141", "https://data.delijn.be/stops/209141"], ["https://data.delijn.be/stops/409757", "https://data.delijn.be/stops/409759"], ["https://data.delijn.be/stops/300009", "https://data.delijn.be/stops/304609"], ["https://data.delijn.be/stops/304288", "https://data.delijn.be/stops/304300"], ["https://data.delijn.be/stops/503851", "https://data.delijn.be/stops/508985"], ["https://data.delijn.be/stops/400985", "https://data.delijn.be/stops/406682"], ["https://data.delijn.be/stops/104498", "https://data.delijn.be/stops/107509"], ["https://data.delijn.be/stops/203588", "https://data.delijn.be/stops/203964"], ["https://data.delijn.be/stops/301658", "https://data.delijn.be/stops/303936"], ["https://data.delijn.be/stops/303082", "https://data.delijn.be/stops/304909"], ["https://data.delijn.be/stops/206134", "https://data.delijn.be/stops/207133"], ["https://data.delijn.be/stops/501320", "https://data.delijn.be/stops/506320"], ["https://data.delijn.be/stops/502226", "https://data.delijn.be/stops/505233"], ["https://data.delijn.be/stops/101926", "https://data.delijn.be/stops/104711"], ["https://data.delijn.be/stops/506599", "https://data.delijn.be/stops/506690"], ["https://data.delijn.be/stops/306065", "https://data.delijn.be/stops/307199"], ["https://data.delijn.be/stops/106003", "https://data.delijn.be/stops/106004"], ["https://data.delijn.be/stops/401524", "https://data.delijn.be/stops/407804"], ["https://data.delijn.be/stops/200666", "https://data.delijn.be/stops/505797"], ["https://data.delijn.be/stops/201807", "https://data.delijn.be/stops/209328"], ["https://data.delijn.be/stops/501392", "https://data.delijn.be/stops/501464"], ["https://data.delijn.be/stops/306859", "https://data.delijn.be/stops/306860"], ["https://data.delijn.be/stops/101591", "https://data.delijn.be/stops/106412"], ["https://data.delijn.be/stops/209628", "https://data.delijn.be/stops/209629"], ["https://data.delijn.be/stops/302211", "https://data.delijn.be/stops/302216"], ["https://data.delijn.be/stops/206012", "https://data.delijn.be/stops/207385"], ["https://data.delijn.be/stops/503114", "https://data.delijn.be/stops/508118"], ["https://data.delijn.be/stops/300207", "https://data.delijn.be/stops/301377"], ["https://data.delijn.be/stops/204460", "https://data.delijn.be/stops/205464"], ["https://data.delijn.be/stops/502584", "https://data.delijn.be/stops/507117"], ["https://data.delijn.be/stops/107745", "https://data.delijn.be/stops/107746"], ["https://data.delijn.be/stops/302522", "https://data.delijn.be/stops/303876"], ["https://data.delijn.be/stops/300782", "https://data.delijn.be/stops/300787"], ["https://data.delijn.be/stops/102169", "https://data.delijn.be/stops/107128"], ["https://data.delijn.be/stops/103139", "https://data.delijn.be/stops/106516"], ["https://data.delijn.be/stops/103266", "https://data.delijn.be/stops/103269"], ["https://data.delijn.be/stops/503162", "https://data.delijn.be/stops/508162"], ["https://data.delijn.be/stops/302786", "https://data.delijn.be/stops/308813"], ["https://data.delijn.be/stops/403761", "https://data.delijn.be/stops/407233"], ["https://data.delijn.be/stops/503171", "https://data.delijn.be/stops/504752"], ["https://data.delijn.be/stops/102586", "https://data.delijn.be/stops/109108"], ["https://data.delijn.be/stops/304767", "https://data.delijn.be/stops/304769"], ["https://data.delijn.be/stops/504588", "https://data.delijn.be/stops/505534"], ["https://data.delijn.be/stops/502037", "https://data.delijn.be/stops/507037"], ["https://data.delijn.be/stops/504275", "https://data.delijn.be/stops/509275"], ["https://data.delijn.be/stops/304492", "https://data.delijn.be/stops/304493"], ["https://data.delijn.be/stops/301497", "https://data.delijn.be/stops/308070"], ["https://data.delijn.be/stops/407712", "https://data.delijn.be/stops/409520"], ["https://data.delijn.be/stops/206708", "https://data.delijn.be/stops/207973"], ["https://data.delijn.be/stops/107830", "https://data.delijn.be/stops/107831"], ["https://data.delijn.be/stops/207688", "https://data.delijn.be/stops/207740"], ["https://data.delijn.be/stops/101302", "https://data.delijn.be/stops/107454"], ["https://data.delijn.be/stops/400360", "https://data.delijn.be/stops/400361"], ["https://data.delijn.be/stops/301123", "https://data.delijn.be/stops/301137"], ["https://data.delijn.be/stops/300055", "https://data.delijn.be/stops/300056"], ["https://data.delijn.be/stops/506173", "https://data.delijn.be/stops/506779"], ["https://data.delijn.be/stops/305381", "https://data.delijn.be/stops/305382"], ["https://data.delijn.be/stops/502659", "https://data.delijn.be/stops/507657"], ["https://data.delijn.be/stops/209740", "https://data.delijn.be/stops/209744"], ["https://data.delijn.be/stops/407369", "https://data.delijn.be/stops/407547"], ["https://data.delijn.be/stops/206125", "https://data.delijn.be/stops/207412"], ["https://data.delijn.be/stops/103314", "https://data.delijn.be/stops/105814"], ["https://data.delijn.be/stops/302997", "https://data.delijn.be/stops/308656"], ["https://data.delijn.be/stops/201008", "https://data.delijn.be/stops/208843"], ["https://data.delijn.be/stops/201419", "https://data.delijn.be/stops/202012"], ["https://data.delijn.be/stops/503407", "https://data.delijn.be/stops/508206"], ["https://data.delijn.be/stops/405592", "https://data.delijn.be/stops/405594"], ["https://data.delijn.be/stops/101587", "https://data.delijn.be/stops/105726"], ["https://data.delijn.be/stops/502430", "https://data.delijn.be/stops/507751"], ["https://data.delijn.be/stops/403015", "https://data.delijn.be/stops/403024"], ["https://data.delijn.be/stops/208015", "https://data.delijn.be/stops/208016"], ["https://data.delijn.be/stops/400077", "https://data.delijn.be/stops/407023"], ["https://data.delijn.be/stops/304757", "https://data.delijn.be/stops/305588"], ["https://data.delijn.be/stops/302260", "https://data.delijn.be/stops/306883"], ["https://data.delijn.be/stops/410118", "https://data.delijn.be/stops/410327"], ["https://data.delijn.be/stops/303349", "https://data.delijn.be/stops/303387"], ["https://data.delijn.be/stops/302359", "https://data.delijn.be/stops/303987"], ["https://data.delijn.be/stops/102050", "https://data.delijn.be/stops/104680"], ["https://data.delijn.be/stops/200055", "https://data.delijn.be/stops/201471"], ["https://data.delijn.be/stops/105252", "https://data.delijn.be/stops/105841"], ["https://data.delijn.be/stops/506248", "https://data.delijn.be/stops/506774"], ["https://data.delijn.be/stops/408622", "https://data.delijn.be/stops/410250"], ["https://data.delijn.be/stops/300439", "https://data.delijn.be/stops/300443"], ["https://data.delijn.be/stops/502730", "https://data.delijn.be/stops/507729"], ["https://data.delijn.be/stops/103128", "https://data.delijn.be/stops/104239"], ["https://data.delijn.be/stops/405064", "https://data.delijn.be/stops/405113"], ["https://data.delijn.be/stops/202619", "https://data.delijn.be/stops/203619"], ["https://data.delijn.be/stops/206916", "https://data.delijn.be/stops/207351"], ["https://data.delijn.be/stops/403324", "https://data.delijn.be/stops/405984"], ["https://data.delijn.be/stops/101643", "https://data.delijn.be/stops/105238"], ["https://data.delijn.be/stops/401445", "https://data.delijn.be/stops/401489"], ["https://data.delijn.be/stops/200410", "https://data.delijn.be/stops/201454"], ["https://data.delijn.be/stops/409115", "https://data.delijn.be/stops/409123"], ["https://data.delijn.be/stops/204295", "https://data.delijn.be/stops/205495"], ["https://data.delijn.be/stops/302210", "https://data.delijn.be/stops/302216"], ["https://data.delijn.be/stops/306588", "https://data.delijn.be/stops/308442"], ["https://data.delijn.be/stops/405473", "https://data.delijn.be/stops/406601"], ["https://data.delijn.be/stops/401124", "https://data.delijn.be/stops/401125"], ["https://data.delijn.be/stops/206121", "https://data.delijn.be/stops/207144"], ["https://data.delijn.be/stops/101510", "https://data.delijn.be/stops/102179"], ["https://data.delijn.be/stops/208573", "https://data.delijn.be/stops/208574"], ["https://data.delijn.be/stops/200026", "https://data.delijn.be/stops/201026"], ["https://data.delijn.be/stops/105220", "https://data.delijn.be/stops/105435"], ["https://data.delijn.be/stops/101450", "https://data.delijn.be/stops/109010"], ["https://data.delijn.be/stops/407609", "https://data.delijn.be/stops/409787"], ["https://data.delijn.be/stops/404474", "https://data.delijn.be/stops/404575"], ["https://data.delijn.be/stops/301464", "https://data.delijn.be/stops/301504"], ["https://data.delijn.be/stops/401867", "https://data.delijn.be/stops/406284"], ["https://data.delijn.be/stops/508796", "https://data.delijn.be/stops/508864"], ["https://data.delijn.be/stops/502544", "https://data.delijn.be/stops/507638"], ["https://data.delijn.be/stops/409501", "https://data.delijn.be/stops/410252"], ["https://data.delijn.be/stops/201926", "https://data.delijn.be/stops/206248"], ["https://data.delijn.be/stops/101045", "https://data.delijn.be/stops/104315"], ["https://data.delijn.be/stops/504417", "https://data.delijn.be/stops/504432"], ["https://data.delijn.be/stops/204306", "https://data.delijn.be/stops/204309"], ["https://data.delijn.be/stops/407624", "https://data.delijn.be/stops/407652"], ["https://data.delijn.be/stops/406035", "https://data.delijn.be/stops/406983"], ["https://data.delijn.be/stops/400529", "https://data.delijn.be/stops/410004"], ["https://data.delijn.be/stops/406292", "https://data.delijn.be/stops/409260"], ["https://data.delijn.be/stops/405301", "https://data.delijn.be/stops/405407"], ["https://data.delijn.be/stops/107971", "https://data.delijn.be/stops/108436"], ["https://data.delijn.be/stops/303723", "https://data.delijn.be/stops/303737"], ["https://data.delijn.be/stops/104047", "https://data.delijn.be/stops/108399"], ["https://data.delijn.be/stops/307582", "https://data.delijn.be/stops/307762"], ["https://data.delijn.be/stops/300459", "https://data.delijn.be/stops/305032"], ["https://data.delijn.be/stops/400090", "https://data.delijn.be/stops/400118"], ["https://data.delijn.be/stops/102242", "https://data.delijn.be/stops/105878"], ["https://data.delijn.be/stops/106292", "https://data.delijn.be/stops/106313"], ["https://data.delijn.be/stops/103314", "https://data.delijn.be/stops/103317"], ["https://data.delijn.be/stops/202493", "https://data.delijn.be/stops/203079"], ["https://data.delijn.be/stops/505226", "https://data.delijn.be/stops/508840"], ["https://data.delijn.be/stops/405776", "https://data.delijn.be/stops/406694"], ["https://data.delijn.be/stops/405260", "https://data.delijn.be/stops/405270"], ["https://data.delijn.be/stops/401586", "https://data.delijn.be/stops/402125"], ["https://data.delijn.be/stops/401172", "https://data.delijn.be/stops/401174"], ["https://data.delijn.be/stops/300740", "https://data.delijn.be/stops/300803"], ["https://data.delijn.be/stops/201687", "https://data.delijn.be/stops/208262"], ["https://data.delijn.be/stops/108444", "https://data.delijn.be/stops/108446"], ["https://data.delijn.be/stops/502708", "https://data.delijn.be/stops/505627"], ["https://data.delijn.be/stops/302945", "https://data.delijn.be/stops/303022"], ["https://data.delijn.be/stops/208525", "https://data.delijn.be/stops/209525"], ["https://data.delijn.be/stops/302809", "https://data.delijn.be/stops/307838"], ["https://data.delijn.be/stops/300113", "https://data.delijn.be/stops/307947"], ["https://data.delijn.be/stops/404335", "https://data.delijn.be/stops/404358"], ["https://data.delijn.be/stops/101830", "https://data.delijn.be/stops/103970"], ["https://data.delijn.be/stops/300576", "https://data.delijn.be/stops/300590"], ["https://data.delijn.be/stops/301952", "https://data.delijn.be/stops/307080"], ["https://data.delijn.be/stops/402706", "https://data.delijn.be/stops/402881"], ["https://data.delijn.be/stops/508863", "https://data.delijn.be/stops/590006"], ["https://data.delijn.be/stops/303670", "https://data.delijn.be/stops/308902"], ["https://data.delijn.be/stops/400481", "https://data.delijn.be/stops/407647"], ["https://data.delijn.be/stops/202275", "https://data.delijn.be/stops/202679"], ["https://data.delijn.be/stops/403884", "https://data.delijn.be/stops/403885"], ["https://data.delijn.be/stops/305684", "https://data.delijn.be/stops/305711"], ["https://data.delijn.be/stops/107589", "https://data.delijn.be/stops/109431"], ["https://data.delijn.be/stops/509406", "https://data.delijn.be/stops/509434"], ["https://data.delijn.be/stops/407815", "https://data.delijn.be/stops/407960"], ["https://data.delijn.be/stops/501318", "https://data.delijn.be/stops/501319"], ["https://data.delijn.be/stops/106269", "https://data.delijn.be/stops/109626"], ["https://data.delijn.be/stops/205661", "https://data.delijn.be/stops/205681"], ["https://data.delijn.be/stops/301168", "https://data.delijn.be/stops/307684"], ["https://data.delijn.be/stops/206958", "https://data.delijn.be/stops/308567"], ["https://data.delijn.be/stops/202509", "https://data.delijn.be/stops/203001"], ["https://data.delijn.be/stops/105086", "https://data.delijn.be/stops/105096"], ["https://data.delijn.be/stops/202774", "https://data.delijn.be/stops/203774"], ["https://data.delijn.be/stops/101188", "https://data.delijn.be/stops/107861"], ["https://data.delijn.be/stops/408952", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/307966", "https://data.delijn.be/stops/307969"], ["https://data.delijn.be/stops/402963", "https://data.delijn.be/stops/407043"], ["https://data.delijn.be/stops/202042", "https://data.delijn.be/stops/204620"], ["https://data.delijn.be/stops/204766", "https://data.delijn.be/stops/204798"], ["https://data.delijn.be/stops/305513", "https://data.delijn.be/stops/307897"], ["https://data.delijn.be/stops/108378", "https://data.delijn.be/stops/108439"], ["https://data.delijn.be/stops/105168", "https://data.delijn.be/stops/109521"], ["https://data.delijn.be/stops/208138", "https://data.delijn.be/stops/208139"], ["https://data.delijn.be/stops/204664", "https://data.delijn.be/stops/205665"], ["https://data.delijn.be/stops/402972", "https://data.delijn.be/stops/403708"], ["https://data.delijn.be/stops/203832", "https://data.delijn.be/stops/218024"], ["https://data.delijn.be/stops/509783", "https://data.delijn.be/stops/509786"], ["https://data.delijn.be/stops/402161", "https://data.delijn.be/stops/402391"], ["https://data.delijn.be/stops/108936", "https://data.delijn.be/stops/108937"], ["https://data.delijn.be/stops/201870", "https://data.delijn.be/stops/210007"], ["https://data.delijn.be/stops/208277", "https://data.delijn.be/stops/208282"], ["https://data.delijn.be/stops/204319", "https://data.delijn.be/stops/205319"], ["https://data.delijn.be/stops/404894", "https://data.delijn.be/stops/404911"], ["https://data.delijn.be/stops/300857", "https://data.delijn.be/stops/307825"], ["https://data.delijn.be/stops/201349", "https://data.delijn.be/stops/208708"], ["https://data.delijn.be/stops/204066", "https://data.delijn.be/stops/205228"], ["https://data.delijn.be/stops/506172", "https://data.delijn.be/stops/509499"], ["https://data.delijn.be/stops/201353", "https://data.delijn.be/stops/201687"], ["https://data.delijn.be/stops/405824", "https://data.delijn.be/stops/409746"], ["https://data.delijn.be/stops/300046", "https://data.delijn.be/stops/308541"], ["https://data.delijn.be/stops/208069", "https://data.delijn.be/stops/209068"], ["https://data.delijn.be/stops/408625", "https://data.delijn.be/stops/408700"], ["https://data.delijn.be/stops/206692", "https://data.delijn.be/stops/206694"], ["https://data.delijn.be/stops/405800", "https://data.delijn.be/stops/409735"], ["https://data.delijn.be/stops/208423", "https://data.delijn.be/stops/209754"], ["https://data.delijn.be/stops/202595", "https://data.delijn.be/stops/203595"], ["https://data.delijn.be/stops/209295", "https://data.delijn.be/stops/209381"], ["https://data.delijn.be/stops/405876", "https://data.delijn.be/stops/405879"], ["https://data.delijn.be/stops/300317", "https://data.delijn.be/stops/301900"], ["https://data.delijn.be/stops/202263", "https://data.delijn.be/stops/203263"], ["https://data.delijn.be/stops/109254", "https://data.delijn.be/stops/109713"], ["https://data.delijn.be/stops/106008", "https://data.delijn.be/stops/107910"], ["https://data.delijn.be/stops/200149", "https://data.delijn.be/stops/201513"], ["https://data.delijn.be/stops/406420", "https://data.delijn.be/stops/410359"], ["https://data.delijn.be/stops/300251", "https://data.delijn.be/stops/308963"], ["https://data.delijn.be/stops/407639", "https://data.delijn.be/stops/407641"], ["https://data.delijn.be/stops/506090", "https://data.delijn.be/stops/506095"], ["https://data.delijn.be/stops/301459", "https://data.delijn.be/stops/301500"], ["https://data.delijn.be/stops/405781", "https://data.delijn.be/stops/406694"], ["https://data.delijn.be/stops/206965", "https://data.delijn.be/stops/207422"], ["https://data.delijn.be/stops/208309", "https://data.delijn.be/stops/209309"], ["https://data.delijn.be/stops/508354", "https://data.delijn.be/stops/508390"], ["https://data.delijn.be/stops/200068", "https://data.delijn.be/stops/201068"], ["https://data.delijn.be/stops/403059", "https://data.delijn.be/stops/403174"], ["https://data.delijn.be/stops/201951", "https://data.delijn.be/stops/203466"], ["https://data.delijn.be/stops/301464", "https://data.delijn.be/stops/308071"], ["https://data.delijn.be/stops/504125", "https://data.delijn.be/stops/504131"], ["https://data.delijn.be/stops/502193", "https://data.delijn.be/stops/507202"], ["https://data.delijn.be/stops/503841", "https://data.delijn.be/stops/508860"], ["https://data.delijn.be/stops/200932", "https://data.delijn.be/stops/202256"], ["https://data.delijn.be/stops/301700", "https://data.delijn.be/stops/305905"], ["https://data.delijn.be/stops/101684", "https://data.delijn.be/stops/101686"], ["https://data.delijn.be/stops/303205", "https://data.delijn.be/stops/303207"], ["https://data.delijn.be/stops/307367", "https://data.delijn.be/stops/307368"], ["https://data.delijn.be/stops/501190", "https://data.delijn.be/stops/501196"], ["https://data.delijn.be/stops/105274", "https://data.delijn.be/stops/105296"], ["https://data.delijn.be/stops/406964", "https://data.delijn.be/stops/409450"], ["https://data.delijn.be/stops/207169", "https://data.delijn.be/stops/207170"], ["https://data.delijn.be/stops/401856", "https://data.delijn.be/stops/406236"], ["https://data.delijn.be/stops/403236", "https://data.delijn.be/stops/410209"], ["https://data.delijn.be/stops/408836", "https://data.delijn.be/stops/408841"], ["https://data.delijn.be/stops/300254", "https://data.delijn.be/stops/303826"], ["https://data.delijn.be/stops/503694", "https://data.delijn.be/stops/508694"], ["https://data.delijn.be/stops/109264", "https://data.delijn.be/stops/109268"], ["https://data.delijn.be/stops/501177", "https://data.delijn.be/stops/506177"], ["https://data.delijn.be/stops/302494", "https://data.delijn.be/stops/302722"], ["https://data.delijn.be/stops/206165", "https://data.delijn.be/stops/304554"], ["https://data.delijn.be/stops/305109", "https://data.delijn.be/stops/305116"], ["https://data.delijn.be/stops/108314", "https://data.delijn.be/stops/108316"], ["https://data.delijn.be/stops/400570", "https://data.delijn.be/stops/403826"], ["https://data.delijn.be/stops/501308", "https://data.delijn.be/stops/506500"], ["https://data.delijn.be/stops/504172", "https://data.delijn.be/stops/509196"], ["https://data.delijn.be/stops/201725", "https://data.delijn.be/stops/202981"], ["https://data.delijn.be/stops/405540", "https://data.delijn.be/stops/409271"], ["https://data.delijn.be/stops/305734", "https://data.delijn.be/stops/306308"], ["https://data.delijn.be/stops/304305", "https://data.delijn.be/stops/304351"], ["https://data.delijn.be/stops/402372", "https://data.delijn.be/stops/402373"], ["https://data.delijn.be/stops/206762", "https://data.delijn.be/stops/207857"], ["https://data.delijn.be/stops/503873", "https://data.delijn.be/stops/508870"], ["https://data.delijn.be/stops/304228", "https://data.delijn.be/stops/304229"], ["https://data.delijn.be/stops/102350", "https://data.delijn.be/stops/102355"], ["https://data.delijn.be/stops/107394", "https://data.delijn.be/stops/107396"], ["https://data.delijn.be/stops/403254", "https://data.delijn.be/stops/403561"], ["https://data.delijn.be/stops/400487", "https://data.delijn.be/stops/407215"], ["https://data.delijn.be/stops/204445", "https://data.delijn.be/stops/205615"], ["https://data.delijn.be/stops/101267", "https://data.delijn.be/stops/102886"], ["https://data.delijn.be/stops/503397", "https://data.delijn.be/stops/504298"], ["https://data.delijn.be/stops/205075", "https://data.delijn.be/stops/205076"], ["https://data.delijn.be/stops/303115", "https://data.delijn.be/stops/306703"], ["https://data.delijn.be/stops/206481", "https://data.delijn.be/stops/207481"], ["https://data.delijn.be/stops/503036", "https://data.delijn.be/stops/503185"], ["https://data.delijn.be/stops/300120", "https://data.delijn.be/stops/306807"], ["https://data.delijn.be/stops/101167", "https://data.delijn.be/stops/102395"], ["https://data.delijn.be/stops/205681", "https://data.delijn.be/stops/205682"], ["https://data.delijn.be/stops/504059", "https://data.delijn.be/stops/504128"], ["https://data.delijn.be/stops/202279", "https://data.delijn.be/stops/203891"], ["https://data.delijn.be/stops/101464", "https://data.delijn.be/stops/109252"], ["https://data.delijn.be/stops/301908", "https://data.delijn.be/stops/306255"], ["https://data.delijn.be/stops/306662", "https://data.delijn.be/stops/306663"], ["https://data.delijn.be/stops/502319", "https://data.delijn.be/stops/505737"], ["https://data.delijn.be/stops/205985", "https://data.delijn.be/stops/206836"], ["https://data.delijn.be/stops/403986", "https://data.delijn.be/stops/403998"], ["https://data.delijn.be/stops/408109", "https://data.delijn.be/stops/408114"], ["https://data.delijn.be/stops/200932", "https://data.delijn.be/stops/210006"], ["https://data.delijn.be/stops/107496", "https://data.delijn.be/stops/305794"], ["https://data.delijn.be/stops/300206", "https://data.delijn.be/stops/306743"], ["https://data.delijn.be/stops/102858", "https://data.delijn.be/stops/204625"], ["https://data.delijn.be/stops/408567", "https://data.delijn.be/stops/408614"], ["https://data.delijn.be/stops/106509", "https://data.delijn.be/stops/106510"], ["https://data.delijn.be/stops/209164", "https://data.delijn.be/stops/209170"], ["https://data.delijn.be/stops/200840", "https://data.delijn.be/stops/507759"], ["https://data.delijn.be/stops/301648", "https://data.delijn.be/stops/301649"], ["https://data.delijn.be/stops/300938", "https://data.delijn.be/stops/301944"], ["https://data.delijn.be/stops/505794", "https://data.delijn.be/stops/509895"], ["https://data.delijn.be/stops/200010", "https://data.delijn.be/stops/201416"], ["https://data.delijn.be/stops/506291", "https://data.delijn.be/stops/506324"], ["https://data.delijn.be/stops/503285", "https://data.delijn.be/stops/505966"], ["https://data.delijn.be/stops/305858", "https://data.delijn.be/stops/308616"], ["https://data.delijn.be/stops/107453", "https://data.delijn.be/stops/107455"], ["https://data.delijn.be/stops/108083", "https://data.delijn.be/stops/108834"], ["https://data.delijn.be/stops/304507", "https://data.delijn.be/stops/307675"], ["https://data.delijn.be/stops/106225", "https://data.delijn.be/stops/106329"], ["https://data.delijn.be/stops/300077", "https://data.delijn.be/stops/307341"], ["https://data.delijn.be/stops/106567", "https://data.delijn.be/stops/106569"], ["https://data.delijn.be/stops/200134", "https://data.delijn.be/stops/202451"], ["https://data.delijn.be/stops/404149", "https://data.delijn.be/stops/404279"], ["https://data.delijn.be/stops/206403", "https://data.delijn.be/stops/207403"], ["https://data.delijn.be/stops/408492", "https://data.delijn.be/stops/408991"], ["https://data.delijn.be/stops/102289", "https://data.delijn.be/stops/103532"], ["https://data.delijn.be/stops/503849", "https://data.delijn.be/stops/505972"], ["https://data.delijn.be/stops/405706", "https://data.delijn.be/stops/410355"], ["https://data.delijn.be/stops/200853", "https://data.delijn.be/stops/202066"], ["https://data.delijn.be/stops/405524", "https://data.delijn.be/stops/406998"], ["https://data.delijn.be/stops/504031", "https://data.delijn.be/stops/504036"], ["https://data.delijn.be/stops/402388", "https://data.delijn.be/stops/404704"], ["https://data.delijn.be/stops/204088", "https://data.delijn.be/stops/204089"], ["https://data.delijn.be/stops/407945", "https://data.delijn.be/stops/408169"], ["https://data.delijn.be/stops/401885", "https://data.delijn.be/stops/409504"], ["https://data.delijn.be/stops/105563", "https://data.delijn.be/stops/105566"], ["https://data.delijn.be/stops/401966", "https://data.delijn.be/stops/403077"], ["https://data.delijn.be/stops/304929", "https://data.delijn.be/stops/306383"], ["https://data.delijn.be/stops/508351", "https://data.delijn.be/stops/508410"], ["https://data.delijn.be/stops/102631", "https://data.delijn.be/stops/108214"], ["https://data.delijn.be/stops/103283", "https://data.delijn.be/stops/104961"], ["https://data.delijn.be/stops/301091", "https://data.delijn.be/stops/302755"], ["https://data.delijn.be/stops/301851", "https://data.delijn.be/stops/305817"], ["https://data.delijn.be/stops/103695", "https://data.delijn.be/stops/105765"], ["https://data.delijn.be/stops/302729", "https://data.delijn.be/stops/302730"], ["https://data.delijn.be/stops/402356", "https://data.delijn.be/stops/402375"], ["https://data.delijn.be/stops/404588", "https://data.delijn.be/stops/404993"], ["https://data.delijn.be/stops/107567", "https://data.delijn.be/stops/109434"], ["https://data.delijn.be/stops/503344", "https://data.delijn.be/stops/508345"], ["https://data.delijn.be/stops/200598", "https://data.delijn.be/stops/210130"], ["https://data.delijn.be/stops/200434", "https://data.delijn.be/stops/201364"], ["https://data.delijn.be/stops/503784", "https://data.delijn.be/stops/505269"], ["https://data.delijn.be/stops/204739", "https://data.delijn.be/stops/205484"], ["https://data.delijn.be/stops/507151", "https://data.delijn.be/stops/507643"], ["https://data.delijn.be/stops/405834", "https://data.delijn.be/stops/405871"], ["https://data.delijn.be/stops/304253", "https://data.delijn.be/stops/304299"], ["https://data.delijn.be/stops/301882", "https://data.delijn.be/stops/302461"], ["https://data.delijn.be/stops/502592", "https://data.delijn.be/stops/507063"], ["https://data.delijn.be/stops/107835", "https://data.delijn.be/stops/108535"], ["https://data.delijn.be/stops/202578", "https://data.delijn.be/stops/203128"], ["https://data.delijn.be/stops/103107", "https://data.delijn.be/stops/106569"], ["https://data.delijn.be/stops/501037", "https://data.delijn.be/stops/506037"], ["https://data.delijn.be/stops/502288", "https://data.delijn.be/stops/505608"], ["https://data.delijn.be/stops/200562", "https://data.delijn.be/stops/200665"], ["https://data.delijn.be/stops/201258", "https://data.delijn.be/stops/202562"], ["https://data.delijn.be/stops/300963", "https://data.delijn.be/stops/300972"], ["https://data.delijn.be/stops/101747", "https://data.delijn.be/stops/106370"], ["https://data.delijn.be/stops/301566", "https://data.delijn.be/stops/301571"], ["https://data.delijn.be/stops/201096", "https://data.delijn.be/stops/203131"], ["https://data.delijn.be/stops/301362", "https://data.delijn.be/stops/308712"], ["https://data.delijn.be/stops/106989", "https://data.delijn.be/stops/109717"], ["https://data.delijn.be/stops/406608", "https://data.delijn.be/stops/406637"], ["https://data.delijn.be/stops/303540", "https://data.delijn.be/stops/303565"], ["https://data.delijn.be/stops/308472", "https://data.delijn.be/stops/308519"], ["https://data.delijn.be/stops/507099", "https://data.delijn.be/stops/507296"], ["https://data.delijn.be/stops/406097", "https://data.delijn.be/stops/407915"], ["https://data.delijn.be/stops/505173", "https://data.delijn.be/stops/505811"], ["https://data.delijn.be/stops/508281", "https://data.delijn.be/stops/508287"], ["https://data.delijn.be/stops/300479", "https://data.delijn.be/stops/300493"], ["https://data.delijn.be/stops/109047", "https://data.delijn.be/stops/109321"], ["https://data.delijn.be/stops/103484", "https://data.delijn.be/stops/103487"], ["https://data.delijn.be/stops/410135", "https://data.delijn.be/stops/410136"], ["https://data.delijn.be/stops/407008", "https://data.delijn.be/stops/407009"], ["https://data.delijn.be/stops/105474", "https://data.delijn.be/stops/105475"], ["https://data.delijn.be/stops/300187", "https://data.delijn.be/stops/300188"], ["https://data.delijn.be/stops/501302", "https://data.delijn.be/stops/501772"], ["https://data.delijn.be/stops/400466", "https://data.delijn.be/stops/400467"], ["https://data.delijn.be/stops/104741", "https://data.delijn.be/stops/108902"], ["https://data.delijn.be/stops/303015", "https://data.delijn.be/stops/303595"], ["https://data.delijn.be/stops/504295", "https://data.delijn.be/stops/504323"], ["https://data.delijn.be/stops/408302", "https://data.delijn.be/stops/408354"], ["https://data.delijn.be/stops/202968", "https://data.delijn.be/stops/204100"], ["https://data.delijn.be/stops/109869", "https://data.delijn.be/stops/109870"], ["https://data.delijn.be/stops/506646", "https://data.delijn.be/stops/506671"], ["https://data.delijn.be/stops/301192", "https://data.delijn.be/stops/308557"], ["https://data.delijn.be/stops/207445", "https://data.delijn.be/stops/209679"], ["https://data.delijn.be/stops/502518", "https://data.delijn.be/stops/502522"], ["https://data.delijn.be/stops/503234", "https://data.delijn.be/stops/508251"], ["https://data.delijn.be/stops/208666", "https://data.delijn.be/stops/208667"], ["https://data.delijn.be/stops/202294", "https://data.delijn.be/stops/203294"], ["https://data.delijn.be/stops/303238", "https://data.delijn.be/stops/304238"], ["https://data.delijn.be/stops/304434", "https://data.delijn.be/stops/307089"], ["https://data.delijn.be/stops/204306", "https://data.delijn.be/stops/205309"], ["https://data.delijn.be/stops/408017", "https://data.delijn.be/stops/408043"], ["https://data.delijn.be/stops/102924", "https://data.delijn.be/stops/103678"], ["https://data.delijn.be/stops/200546", "https://data.delijn.be/stops/201472"], ["https://data.delijn.be/stops/304758", "https://data.delijn.be/stops/304759"], ["https://data.delijn.be/stops/206789", "https://data.delijn.be/stops/206790"], ["https://data.delijn.be/stops/103003", "https://data.delijn.be/stops/105059"], ["https://data.delijn.be/stops/504003", "https://data.delijn.be/stops/509003"], ["https://data.delijn.be/stops/406182", "https://data.delijn.be/stops/410224"], ["https://data.delijn.be/stops/202333", "https://data.delijn.be/stops/203333"], ["https://data.delijn.be/stops/405880", "https://data.delijn.be/stops/406859"], ["https://data.delijn.be/stops/505920", "https://data.delijn.be/stops/509108"], ["https://data.delijn.be/stops/208316", "https://data.delijn.be/stops/209789"], ["https://data.delijn.be/stops/208219", "https://data.delijn.be/stops/208220"], ["https://data.delijn.be/stops/300830", "https://data.delijn.be/stops/300874"], ["https://data.delijn.be/stops/407230", "https://data.delijn.be/stops/407232"], ["https://data.delijn.be/stops/208572", "https://data.delijn.be/stops/307590"], ["https://data.delijn.be/stops/106296", "https://data.delijn.be/stops/109439"], ["https://data.delijn.be/stops/400483", "https://data.delijn.be/stops/407688"], ["https://data.delijn.be/stops/301443", "https://data.delijn.be/stops/303180"], ["https://data.delijn.be/stops/209293", "https://data.delijn.be/stops/209790"], ["https://data.delijn.be/stops/201723", "https://data.delijn.be/stops/203445"], ["https://data.delijn.be/stops/104609", "https://data.delijn.be/stops/305835"], ["https://data.delijn.be/stops/307201", "https://data.delijn.be/stops/307607"], ["https://data.delijn.be/stops/200620", "https://data.delijn.be/stops/211050"], ["https://data.delijn.be/stops/305530", "https://data.delijn.be/stops/308684"], ["https://data.delijn.be/stops/404873", "https://data.delijn.be/stops/406887"], ["https://data.delijn.be/stops/207870", "https://data.delijn.be/stops/208786"], ["https://data.delijn.be/stops/402796", "https://data.delijn.be/stops/406921"], ["https://data.delijn.be/stops/304996", "https://data.delijn.be/stops/304997"], ["https://data.delijn.be/stops/502528", "https://data.delijn.be/stops/507551"], ["https://data.delijn.be/stops/206223", "https://data.delijn.be/stops/207803"], ["https://data.delijn.be/stops/204474", "https://data.delijn.be/stops/205466"], ["https://data.delijn.be/stops/302885", "https://data.delijn.be/stops/302897"], ["https://data.delijn.be/stops/104742", "https://data.delijn.be/stops/107341"], ["https://data.delijn.be/stops/206012", "https://data.delijn.be/stops/206016"], ["https://data.delijn.be/stops/401266", "https://data.delijn.be/stops/401303"], ["https://data.delijn.be/stops/203382", "https://data.delijn.be/stops/203383"], ["https://data.delijn.be/stops/102720", "https://data.delijn.be/stops/105700"], ["https://data.delijn.be/stops/505383", "https://data.delijn.be/stops/505792"], ["https://data.delijn.be/stops/203307", "https://data.delijn.be/stops/203308"], ["https://data.delijn.be/stops/200341", "https://data.delijn.be/stops/201341"], ["https://data.delijn.be/stops/403560", "https://data.delijn.be/stops/409296"], ["https://data.delijn.be/stops/207500", "https://data.delijn.be/stops/207673"], ["https://data.delijn.be/stops/201079", "https://data.delijn.be/stops/201092"], ["https://data.delijn.be/stops/206220", "https://data.delijn.be/stops/206808"], ["https://data.delijn.be/stops/501373", "https://data.delijn.be/stops/506290"], ["https://data.delijn.be/stops/303302", "https://data.delijn.be/stops/303345"], ["https://data.delijn.be/stops/503276", "https://data.delijn.be/stops/508277"], ["https://data.delijn.be/stops/308670", "https://data.delijn.be/stops/308671"], ["https://data.delijn.be/stops/302602", "https://data.delijn.be/stops/303611"], ["https://data.delijn.be/stops/205124", "https://data.delijn.be/stops/205128"], ["https://data.delijn.be/stops/504477", "https://data.delijn.be/stops/509479"], ["https://data.delijn.be/stops/301937", "https://data.delijn.be/stops/307464"], ["https://data.delijn.be/stops/208280", "https://data.delijn.be/stops/208281"], ["https://data.delijn.be/stops/400142", "https://data.delijn.be/stops/409153"], ["https://data.delijn.be/stops/504296", "https://data.delijn.be/stops/504310"], ["https://data.delijn.be/stops/500948", "https://data.delijn.be/stops/503067"], ["https://data.delijn.be/stops/504340", "https://data.delijn.be/stops/509334"], ["https://data.delijn.be/stops/303030", "https://data.delijn.be/stops/307144"], ["https://data.delijn.be/stops/108158", "https://data.delijn.be/stops/108161"], ["https://data.delijn.be/stops/200518", "https://data.delijn.be/stops/201550"], ["https://data.delijn.be/stops/206542", "https://data.delijn.be/stops/207563"], ["https://data.delijn.be/stops/205654", "https://data.delijn.be/stops/205655"], ["https://data.delijn.be/stops/301433", "https://data.delijn.be/stops/306417"], ["https://data.delijn.be/stops/300950", "https://data.delijn.be/stops/305914"], ["https://data.delijn.be/stops/501658", "https://data.delijn.be/stops/506645"], ["https://data.delijn.be/stops/108366", "https://data.delijn.be/stops/108458"], ["https://data.delijn.be/stops/201103", "https://data.delijn.be/stops/201363"], ["https://data.delijn.be/stops/301545", "https://data.delijn.be/stops/305141"], ["https://data.delijn.be/stops/305243", "https://data.delijn.be/stops/305244"], ["https://data.delijn.be/stops/206141", "https://data.delijn.be/stops/207140"], ["https://data.delijn.be/stops/105792", "https://data.delijn.be/stops/105941"], ["https://data.delijn.be/stops/407247", "https://data.delijn.be/stops/407452"], ["https://data.delijn.be/stops/504752", "https://data.delijn.be/stops/508999"], ["https://data.delijn.be/stops/405648", "https://data.delijn.be/stops/408583"], ["https://data.delijn.be/stops/301047", "https://data.delijn.be/stops/303831"], ["https://data.delijn.be/stops/304809", "https://data.delijn.be/stops/308770"], ["https://data.delijn.be/stops/200902", "https://data.delijn.be/stops/208852"], ["https://data.delijn.be/stops/208645", "https://data.delijn.be/stops/209646"], ["https://data.delijn.be/stops/408511", "https://data.delijn.be/stops/408763"], ["https://data.delijn.be/stops/503570", "https://data.delijn.be/stops/508584"], ["https://data.delijn.be/stops/301410", "https://data.delijn.be/stops/305629"], ["https://data.delijn.be/stops/101778", "https://data.delijn.be/stops/102323"], ["https://data.delijn.be/stops/507012", "https://data.delijn.be/stops/507916"], ["https://data.delijn.be/stops/502504", "https://data.delijn.be/stops/505749"], ["https://data.delijn.be/stops/408619", "https://data.delijn.be/stops/408691"], ["https://data.delijn.be/stops/109023", "https://data.delijn.be/stops/109024"], ["https://data.delijn.be/stops/300832", "https://data.delijn.be/stops/306641"], ["https://data.delijn.be/stops/204557", "https://data.delijn.be/stops/204558"], ["https://data.delijn.be/stops/207720", "https://data.delijn.be/stops/207733"], ["https://data.delijn.be/stops/206967", "https://data.delijn.be/stops/207828"], ["https://data.delijn.be/stops/403197", "https://data.delijn.be/stops/403550"], ["https://data.delijn.be/stops/505424", "https://data.delijn.be/stops/509084"], ["https://data.delijn.be/stops/402312", "https://data.delijn.be/stops/402313"], ["https://data.delijn.be/stops/300138", "https://data.delijn.be/stops/306821"], ["https://data.delijn.be/stops/308444", "https://data.delijn.be/stops/308460"], ["https://data.delijn.be/stops/307556", "https://data.delijn.be/stops/307557"], ["https://data.delijn.be/stops/404522", "https://data.delijn.be/stops/405134"], ["https://data.delijn.be/stops/408092", "https://data.delijn.be/stops/408156"], ["https://data.delijn.be/stops/408614", "https://data.delijn.be/stops/408615"], ["https://data.delijn.be/stops/301605", "https://data.delijn.be/stops/301617"], ["https://data.delijn.be/stops/507396", "https://data.delijn.be/stops/507413"], ["https://data.delijn.be/stops/102171", "https://data.delijn.be/stops/102447"], ["https://data.delijn.be/stops/103120", "https://data.delijn.be/stops/105020"], ["https://data.delijn.be/stops/401253", "https://data.delijn.be/stops/401452"], ["https://data.delijn.be/stops/200820", "https://data.delijn.be/stops/211068"], ["https://data.delijn.be/stops/400229", "https://data.delijn.be/stops/402357"], ["https://data.delijn.be/stops/407999", "https://data.delijn.be/stops/408089"], ["https://data.delijn.be/stops/107814", "https://data.delijn.be/stops/308810"], ["https://data.delijn.be/stops/106481", "https://data.delijn.be/stops/109201"], ["https://data.delijn.be/stops/503359", "https://data.delijn.be/stops/508351"], ["https://data.delijn.be/stops/504522", "https://data.delijn.be/stops/505109"], ["https://data.delijn.be/stops/101777", "https://data.delijn.be/stops/107587"], ["https://data.delijn.be/stops/403803", "https://data.delijn.be/stops/403804"], ["https://data.delijn.be/stops/307937", "https://data.delijn.be/stops/307938"], ["https://data.delijn.be/stops/202741", "https://data.delijn.be/stops/202872"], ["https://data.delijn.be/stops/102086", "https://data.delijn.be/stops/108866"], ["https://data.delijn.be/stops/404658", "https://data.delijn.be/stops/408908"], ["https://data.delijn.be/stops/306194", "https://data.delijn.be/stops/306195"], ["https://data.delijn.be/stops/101418", "https://data.delijn.be/stops/108717"], ["https://data.delijn.be/stops/400618", "https://data.delijn.be/stops/400619"], ["https://data.delijn.be/stops/301320", "https://data.delijn.be/stops/301912"], ["https://data.delijn.be/stops/202145", "https://data.delijn.be/stops/202187"], ["https://data.delijn.be/stops/205598", "https://data.delijn.be/stops/205756"], ["https://data.delijn.be/stops/407448", "https://data.delijn.be/stops/407467"], ["https://data.delijn.be/stops/200731", "https://data.delijn.be/stops/202684"], ["https://data.delijn.be/stops/502103", "https://data.delijn.be/stops/507644"], ["https://data.delijn.be/stops/401152", "https://data.delijn.be/stops/401153"], ["https://data.delijn.be/stops/407819", "https://data.delijn.be/stops/408005"], ["https://data.delijn.be/stops/106610", "https://data.delijn.be/stops/106611"], ["https://data.delijn.be/stops/502590", "https://data.delijn.be/stops/507401"], ["https://data.delijn.be/stops/302963", "https://data.delijn.be/stops/302969"], ["https://data.delijn.be/stops/300541", "https://data.delijn.be/stops/308586"], ["https://data.delijn.be/stops/200933", "https://data.delijn.be/stops/208852"], ["https://data.delijn.be/stops/300091", "https://data.delijn.be/stops/306843"], ["https://data.delijn.be/stops/508704", "https://data.delijn.be/stops/508728"], ["https://data.delijn.be/stops/403684", "https://data.delijn.be/stops/403686"], ["https://data.delijn.be/stops/301611", "https://data.delijn.be/stops/301633"], ["https://data.delijn.be/stops/208137", "https://data.delijn.be/stops/209136"], ["https://data.delijn.be/stops/206837", "https://data.delijn.be/stops/207939"], ["https://data.delijn.be/stops/407968", "https://data.delijn.be/stops/408425"], ["https://data.delijn.be/stops/302230", "https://data.delijn.be/stops/302248"], ["https://data.delijn.be/stops/504617", "https://data.delijn.be/stops/504629"], ["https://data.delijn.be/stops/405368", "https://data.delijn.be/stops/405373"], ["https://data.delijn.be/stops/101293", "https://data.delijn.be/stops/105396"], ["https://data.delijn.be/stops/204340", "https://data.delijn.be/stops/204535"], ["https://data.delijn.be/stops/405698", "https://data.delijn.be/stops/405930"], ["https://data.delijn.be/stops/206272", "https://data.delijn.be/stops/207271"], ["https://data.delijn.be/stops/300236", "https://data.delijn.be/stops/301373"], ["https://data.delijn.be/stops/403223", "https://data.delijn.be/stops/403224"], ["https://data.delijn.be/stops/205193", "https://data.delijn.be/stops/205195"], ["https://data.delijn.be/stops/101018", "https://data.delijn.be/stops/101134"], ["https://data.delijn.be/stops/101877", "https://data.delijn.be/stops/105824"], ["https://data.delijn.be/stops/102012", "https://data.delijn.be/stops/205644"], ["https://data.delijn.be/stops/102745", "https://data.delijn.be/stops/102760"], ["https://data.delijn.be/stops/206531", "https://data.delijn.be/stops/207532"], ["https://data.delijn.be/stops/406370", "https://data.delijn.be/stops/410395"], ["https://data.delijn.be/stops/103750", "https://data.delijn.be/stops/103770"], ["https://data.delijn.be/stops/200139", "https://data.delijn.be/stops/200227"], ["https://data.delijn.be/stops/505150", "https://data.delijn.be/stops/509890"], ["https://data.delijn.be/stops/503144", "https://data.delijn.be/stops/508144"], ["https://data.delijn.be/stops/203899", "https://data.delijn.be/stops/211125"], ["https://data.delijn.be/stops/207834", "https://data.delijn.be/stops/207835"], ["https://data.delijn.be/stops/208436", "https://data.delijn.be/stops/208438"], ["https://data.delijn.be/stops/106177", "https://data.delijn.be/stops/109373"], ["https://data.delijn.be/stops/101680", "https://data.delijn.be/stops/105495"], ["https://data.delijn.be/stops/401463", "https://data.delijn.be/stops/404970"], ["https://data.delijn.be/stops/502270", "https://data.delijn.be/stops/507672"], ["https://data.delijn.be/stops/301556", "https://data.delijn.be/stops/308082"], ["https://data.delijn.be/stops/404039", "https://data.delijn.be/stops/404073"], ["https://data.delijn.be/stops/305157", "https://data.delijn.be/stops/305217"], ["https://data.delijn.be/stops/300742", "https://data.delijn.be/stops/304774"], ["https://data.delijn.be/stops/207872", "https://data.delijn.be/stops/209290"], ["https://data.delijn.be/stops/202228", "https://data.delijn.be/stops/208857"], ["https://data.delijn.be/stops/503399", "https://data.delijn.be/stops/508256"], ["https://data.delijn.be/stops/101672", "https://data.delijn.be/stops/101674"], ["https://data.delijn.be/stops/101147", "https://data.delijn.be/stops/106860"], ["https://data.delijn.be/stops/201902", "https://data.delijn.be/stops/202473"], ["https://data.delijn.be/stops/307000", "https://data.delijn.be/stops/307262"], ["https://data.delijn.be/stops/206104", "https://data.delijn.be/stops/306720"], ["https://data.delijn.be/stops/403757", "https://data.delijn.be/stops/403761"], ["https://data.delijn.be/stops/402583", "https://data.delijn.be/stops/402654"], ["https://data.delijn.be/stops/501203", "https://data.delijn.be/stops/501240"], ["https://data.delijn.be/stops/205190", "https://data.delijn.be/stops/205191"], ["https://data.delijn.be/stops/104739", "https://data.delijn.be/stops/104752"], ["https://data.delijn.be/stops/300835", "https://data.delijn.be/stops/302282"], ["https://data.delijn.be/stops/405841", "https://data.delijn.be/stops/409416"], ["https://data.delijn.be/stops/106002", "https://data.delijn.be/stops/107955"], ["https://data.delijn.be/stops/401013", "https://data.delijn.be/stops/401137"], ["https://data.delijn.be/stops/405406", "https://data.delijn.be/stops/410018"], ["https://data.delijn.be/stops/103492", "https://data.delijn.be/stops/104353"], ["https://data.delijn.be/stops/307625", "https://data.delijn.be/stops/308671"], ["https://data.delijn.be/stops/108402", "https://data.delijn.be/stops/306637"], ["https://data.delijn.be/stops/404405", "https://data.delijn.be/stops/404413"], ["https://data.delijn.be/stops/301913", "https://data.delijn.be/stops/306253"], ["https://data.delijn.be/stops/302082", "https://data.delijn.be/stops/302863"], ["https://data.delijn.be/stops/404746", "https://data.delijn.be/stops/404748"], ["https://data.delijn.be/stops/102779", "https://data.delijn.be/stops/102953"], ["https://data.delijn.be/stops/210059", "https://data.delijn.be/stops/211058"], ["https://data.delijn.be/stops/503875", "https://data.delijn.be/stops/509755"], ["https://data.delijn.be/stops/103484", "https://data.delijn.be/stops/109157"], ["https://data.delijn.be/stops/406088", "https://data.delijn.be/stops/406089"], ["https://data.delijn.be/stops/105301", "https://data.delijn.be/stops/105353"], ["https://data.delijn.be/stops/200909", "https://data.delijn.be/stops/203051"], ["https://data.delijn.be/stops/300951", "https://data.delijn.be/stops/307807"], ["https://data.delijn.be/stops/408673", "https://data.delijn.be/stops/408812"], ["https://data.delijn.be/stops/404488", "https://data.delijn.be/stops/404542"], ["https://data.delijn.be/stops/407739", "https://data.delijn.be/stops/407740"], ["https://data.delijn.be/stops/408514", "https://data.delijn.be/stops/408574"], ["https://data.delijn.be/stops/403040", "https://data.delijn.be/stops/403498"], ["https://data.delijn.be/stops/304470", "https://data.delijn.be/stops/304471"], ["https://data.delijn.be/stops/307453", "https://data.delijn.be/stops/307454"], ["https://data.delijn.be/stops/501164", "https://data.delijn.be/stops/501640"], ["https://data.delijn.be/stops/202165", "https://data.delijn.be/stops/205072"], ["https://data.delijn.be/stops/101375", "https://data.delijn.be/stops/106055"], ["https://data.delijn.be/stops/102186", "https://data.delijn.be/stops/104276"], ["https://data.delijn.be/stops/300932", "https://data.delijn.be/stops/300935"], ["https://data.delijn.be/stops/300275", "https://data.delijn.be/stops/306285"], ["https://data.delijn.be/stops/504845", "https://data.delijn.be/stops/505995"], ["https://data.delijn.be/stops/201262", "https://data.delijn.be/stops/202547"], ["https://data.delijn.be/stops/204365", "https://data.delijn.be/stops/205214"], ["https://data.delijn.be/stops/104137", "https://data.delijn.be/stops/108417"], ["https://data.delijn.be/stops/102637", "https://data.delijn.be/stops/107854"], ["https://data.delijn.be/stops/204502", "https://data.delijn.be/stops/205539"], ["https://data.delijn.be/stops/102035", "https://data.delijn.be/stops/103763"], ["https://data.delijn.be/stops/502355", "https://data.delijn.be/stops/507355"], ["https://data.delijn.be/stops/503817", "https://data.delijn.be/stops/508028"], ["https://data.delijn.be/stops/103012", "https://data.delijn.be/stops/104210"], ["https://data.delijn.be/stops/402835", "https://data.delijn.be/stops/404619"], ["https://data.delijn.be/stops/102976", "https://data.delijn.be/stops/107519"], ["https://data.delijn.be/stops/303201", "https://data.delijn.be/stops/307845"], ["https://data.delijn.be/stops/405351", "https://data.delijn.be/stops/407901"], ["https://data.delijn.be/stops/405861", "https://data.delijn.be/stops/409740"], ["https://data.delijn.be/stops/208470", "https://data.delijn.be/stops/208471"], ["https://data.delijn.be/stops/407750", "https://data.delijn.be/stops/407751"], ["https://data.delijn.be/stops/405946", "https://data.delijn.be/stops/405947"], ["https://data.delijn.be/stops/303122", "https://data.delijn.be/stops/306066"], ["https://data.delijn.be/stops/202043", "https://data.delijn.be/stops/203394"], ["https://data.delijn.be/stops/103310", "https://data.delijn.be/stops/105808"], ["https://data.delijn.be/stops/403964", "https://data.delijn.be/stops/408709"], ["https://data.delijn.be/stops/105937", "https://data.delijn.be/stops/105939"], ["https://data.delijn.be/stops/303758", "https://data.delijn.be/stops/303760"], ["https://data.delijn.be/stops/106703", "https://data.delijn.be/stops/106705"], ["https://data.delijn.be/stops/501374", "https://data.delijn.be/stops/506372"], ["https://data.delijn.be/stops/503033", "https://data.delijn.be/stops/508424"], ["https://data.delijn.be/stops/108959", "https://data.delijn.be/stops/108961"], ["https://data.delijn.be/stops/104853", "https://data.delijn.be/stops/107889"], ["https://data.delijn.be/stops/200913", "https://data.delijn.be/stops/202091"], ["https://data.delijn.be/stops/103043", "https://data.delijn.be/stops/104026"], ["https://data.delijn.be/stops/208889", "https://data.delijn.be/stops/210854"], ["https://data.delijn.be/stops/200983", "https://data.delijn.be/stops/201066"], ["https://data.delijn.be/stops/106151", "https://data.delijn.be/stops/106155"], ["https://data.delijn.be/stops/503767", "https://data.delijn.be/stops/503822"], ["https://data.delijn.be/stops/302130", "https://data.delijn.be/stops/304869"], ["https://data.delijn.be/stops/304248", "https://data.delijn.be/stops/304299"], ["https://data.delijn.be/stops/109667", "https://data.delijn.be/stops/401935"], ["https://data.delijn.be/stops/406502", "https://data.delijn.be/stops/406505"], ["https://data.delijn.be/stops/200521", "https://data.delijn.be/stops/201236"], ["https://data.delijn.be/stops/303124", "https://data.delijn.be/stops/308439"], ["https://data.delijn.be/stops/101002", "https://data.delijn.be/stops/104175"], ["https://data.delijn.be/stops/101770", "https://data.delijn.be/stops/105565"], ["https://data.delijn.be/stops/402329", "https://data.delijn.be/stops/409600"], ["https://data.delijn.be/stops/109141", "https://data.delijn.be/stops/109144"], ["https://data.delijn.be/stops/505279", "https://data.delijn.be/stops/505285"], ["https://data.delijn.be/stops/202964", "https://data.delijn.be/stops/203588"], ["https://data.delijn.be/stops/301871", "https://data.delijn.be/stops/307285"], ["https://data.delijn.be/stops/105304", "https://data.delijn.be/stops/105353"], ["https://data.delijn.be/stops/407610", "https://data.delijn.be/stops/407747"], ["https://data.delijn.be/stops/402135", "https://data.delijn.be/stops/402139"], ["https://data.delijn.be/stops/504601", "https://data.delijn.be/stops/509599"], ["https://data.delijn.be/stops/107057", "https://data.delijn.be/stops/108605"], ["https://data.delijn.be/stops/508341", "https://data.delijn.be/stops/590010"], ["https://data.delijn.be/stops/101556", "https://data.delijn.be/stops/103710"], ["https://data.delijn.be/stops/206814", "https://data.delijn.be/stops/206815"], ["https://data.delijn.be/stops/202498", "https://data.delijn.be/stops/203179"], ["https://data.delijn.be/stops/306268", "https://data.delijn.be/stops/307327"], ["https://data.delijn.be/stops/205930", "https://data.delijn.be/stops/208829"], ["https://data.delijn.be/stops/404620", "https://data.delijn.be/stops/406961"], ["https://data.delijn.be/stops/101142", "https://data.delijn.be/stops/102832"], ["https://data.delijn.be/stops/208405", "https://data.delijn.be/stops/208763"], ["https://data.delijn.be/stops/204070", "https://data.delijn.be/stops/205905"], ["https://data.delijn.be/stops/407682", "https://data.delijn.be/stops/407692"], ["https://data.delijn.be/stops/306694", "https://data.delijn.be/stops/308782"], ["https://data.delijn.be/stops/204993", "https://data.delijn.be/stops/209130"], ["https://data.delijn.be/stops/404689", "https://data.delijn.be/stops/405822"], ["https://data.delijn.be/stops/101072", "https://data.delijn.be/stops/109773"], ["https://data.delijn.be/stops/204737", "https://data.delijn.be/stops/204738"], ["https://data.delijn.be/stops/205170", "https://data.delijn.be/stops/205579"], ["https://data.delijn.be/stops/503696", "https://data.delijn.be/stops/504948"], ["https://data.delijn.be/stops/206480", "https://data.delijn.be/stops/207528"], ["https://data.delijn.be/stops/403511", "https://data.delijn.be/stops/410216"], ["https://data.delijn.be/stops/402175", "https://data.delijn.be/stops/402372"], ["https://data.delijn.be/stops/403595", "https://data.delijn.be/stops/404314"], ["https://data.delijn.be/stops/501145", "https://data.delijn.be/stops/501432"], ["https://data.delijn.be/stops/105752", "https://data.delijn.be/stops/109963"], ["https://data.delijn.be/stops/109457", "https://data.delijn.be/stops/109458"], ["https://data.delijn.be/stops/106462", "https://data.delijn.be/stops/106463"], ["https://data.delijn.be/stops/106928", "https://data.delijn.be/stops/108694"], ["https://data.delijn.be/stops/302314", "https://data.delijn.be/stops/302394"], ["https://data.delijn.be/stops/404502", "https://data.delijn.be/stops/404503"], ["https://data.delijn.be/stops/304573", "https://data.delijn.be/stops/304595"], ["https://data.delijn.be/stops/508208", "https://data.delijn.be/stops/509820"], ["https://data.delijn.be/stops/302199", "https://data.delijn.be/stops/307057"], ["https://data.delijn.be/stops/301616", "https://data.delijn.be/stops/301667"], ["https://data.delijn.be/stops/405562", "https://data.delijn.be/stops/410098"], ["https://data.delijn.be/stops/304342", "https://data.delijn.be/stops/304352"], ["https://data.delijn.be/stops/403414", "https://data.delijn.be/stops/403872"], ["https://data.delijn.be/stops/107317", "https://data.delijn.be/stops/108816"], ["https://data.delijn.be/stops/508160", "https://data.delijn.be/stops/508178"], ["https://data.delijn.be/stops/205980", "https://data.delijn.be/stops/206580"], ["https://data.delijn.be/stops/401757", "https://data.delijn.be/stops/406137"], ["https://data.delijn.be/stops/200236", "https://data.delijn.be/stops/200521"], ["https://data.delijn.be/stops/508549", "https://data.delijn.be/stops/508797"], ["https://data.delijn.be/stops/506432", "https://data.delijn.be/stops/506433"], ["https://data.delijn.be/stops/200834", "https://data.delijn.be/stops/200856"], ["https://data.delijn.be/stops/301400", "https://data.delijn.be/stops/301401"], ["https://data.delijn.be/stops/300169", "https://data.delijn.be/stops/301225"], ["https://data.delijn.be/stops/202208", "https://data.delijn.be/stops/203770"], ["https://data.delijn.be/stops/206760", "https://data.delijn.be/stops/208530"], ["https://data.delijn.be/stops/503493", "https://data.delijn.be/stops/503567"], ["https://data.delijn.be/stops/400184", "https://data.delijn.be/stops/409801"], ["https://data.delijn.be/stops/503499", "https://data.delijn.be/stops/508685"], ["https://data.delijn.be/stops/101385", "https://data.delijn.be/stops/103785"], ["https://data.delijn.be/stops/305540", "https://data.delijn.be/stops/308688"], ["https://data.delijn.be/stops/300561", "https://data.delijn.be/stops/300563"], ["https://data.delijn.be/stops/204054", "https://data.delijn.be/stops/205316"], ["https://data.delijn.be/stops/102194", "https://data.delijn.be/stops/104277"], ["https://data.delijn.be/stops/405745", "https://data.delijn.be/stops/410139"], ["https://data.delijn.be/stops/505233", "https://data.delijn.be/stops/505720"], ["https://data.delijn.be/stops/408950", "https://data.delijn.be/stops/408951"], ["https://data.delijn.be/stops/505532", "https://data.delijn.be/stops/508958"], ["https://data.delijn.be/stops/503115", "https://data.delijn.be/stops/508119"], ["https://data.delijn.be/stops/400571", "https://data.delijn.be/stops/404052"], ["https://data.delijn.be/stops/107680", "https://data.delijn.be/stops/107685"], ["https://data.delijn.be/stops/102753", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/200257", "https://data.delijn.be/stops/201451"], ["https://data.delijn.be/stops/106014", "https://data.delijn.be/stops/106854"], ["https://data.delijn.be/stops/306299", "https://data.delijn.be/stops/306300"], ["https://data.delijn.be/stops/204126", "https://data.delijn.be/stops/205127"], ["https://data.delijn.be/stops/301039", "https://data.delijn.be/stops/301066"], ["https://data.delijn.be/stops/206792", "https://data.delijn.be/stops/207630"], ["https://data.delijn.be/stops/407000", "https://data.delijn.be/stops/408024"], ["https://data.delijn.be/stops/405310", "https://data.delijn.be/stops/302838"], ["https://data.delijn.be/stops/504429", "https://data.delijn.be/stops/505163"], ["https://data.delijn.be/stops/200091", "https://data.delijn.be/stops/203896"], ["https://data.delijn.be/stops/300764", "https://data.delijn.be/stops/300774"], ["https://data.delijn.be/stops/405224", "https://data.delijn.be/stops/405227"], ["https://data.delijn.be/stops/401225", "https://data.delijn.be/stops/401382"], ["https://data.delijn.be/stops/407100", "https://data.delijn.be/stops/407929"], ["https://data.delijn.be/stops/108103", "https://data.delijn.be/stops/108106"], ["https://data.delijn.be/stops/409514", "https://data.delijn.be/stops/409515"], ["https://data.delijn.be/stops/505303", "https://data.delijn.be/stops/509350"], ["https://data.delijn.be/stops/302426", "https://data.delijn.be/stops/302445"], ["https://data.delijn.be/stops/201153", "https://data.delijn.be/stops/201175"], ["https://data.delijn.be/stops/301414", "https://data.delijn.be/stops/301422"], ["https://data.delijn.be/stops/300301", "https://data.delijn.be/stops/306660"], ["https://data.delijn.be/stops/107080", "https://data.delijn.be/stops/107081"], ["https://data.delijn.be/stops/509317", "https://data.delijn.be/stops/509739"], ["https://data.delijn.be/stops/406317", "https://data.delijn.be/stops/406321"], ["https://data.delijn.be/stops/404188", "https://data.delijn.be/stops/404189"], ["https://data.delijn.be/stops/201389", "https://data.delijn.be/stops/208707"], ["https://data.delijn.be/stops/408959", "https://data.delijn.be/stops/409523"], ["https://data.delijn.be/stops/503720", "https://data.delijn.be/stops/503738"], ["https://data.delijn.be/stops/105043", "https://data.delijn.be/stops/105129"], ["https://data.delijn.be/stops/104683", "https://data.delijn.be/stops/104784"], ["https://data.delijn.be/stops/404262", "https://data.delijn.be/stops/405667"], ["https://data.delijn.be/stops/205160", "https://data.delijn.be/stops/207276"], ["https://data.delijn.be/stops/505542", "https://data.delijn.be/stops/508807"], ["https://data.delijn.be/stops/200773", "https://data.delijn.be/stops/209308"], ["https://data.delijn.be/stops/407927", "https://data.delijn.be/stops/407961"], ["https://data.delijn.be/stops/204098", "https://data.delijn.be/stops/204223"], ["https://data.delijn.be/stops/101064", "https://data.delijn.be/stops/106746"], ["https://data.delijn.be/stops/202824", "https://data.delijn.be/stops/203925"], ["https://data.delijn.be/stops/300300", "https://data.delijn.be/stops/300945"], ["https://data.delijn.be/stops/403749", "https://data.delijn.be/stops/409822"], ["https://data.delijn.be/stops/200901", "https://data.delijn.be/stops/200905"], ["https://data.delijn.be/stops/104078", "https://data.delijn.be/stops/106073"], ["https://data.delijn.be/stops/504531", "https://data.delijn.be/stops/505803"], ["https://data.delijn.be/stops/502273", "https://data.delijn.be/stops/502392"], ["https://data.delijn.be/stops/404738", "https://data.delijn.be/stops/404747"], ["https://data.delijn.be/stops/301700", "https://data.delijn.be/stops/305294"], ["https://data.delijn.be/stops/300730", "https://data.delijn.be/stops/307058"], ["https://data.delijn.be/stops/503259", "https://data.delijn.be/stops/505371"], ["https://data.delijn.be/stops/106001", "https://data.delijn.be/stops/107909"], ["https://data.delijn.be/stops/504374", "https://data.delijn.be/stops/509583"], ["https://data.delijn.be/stops/409104", "https://data.delijn.be/stops/409109"], ["https://data.delijn.be/stops/404160", "https://data.delijn.be/stops/404163"], ["https://data.delijn.be/stops/304018", "https://data.delijn.be/stops/304037"], ["https://data.delijn.be/stops/500020", "https://data.delijn.be/stops/502128"], ["https://data.delijn.be/stops/101653", "https://data.delijn.be/stops/308845"], ["https://data.delijn.be/stops/204410", "https://data.delijn.be/stops/205409"], ["https://data.delijn.be/stops/103142", "https://data.delijn.be/stops/109446"], ["https://data.delijn.be/stops/503614", "https://data.delijn.be/stops/508614"], ["https://data.delijn.be/stops/301516", "https://data.delijn.be/stops/301524"], ["https://data.delijn.be/stops/305905", "https://data.delijn.be/stops/305906"], ["https://data.delijn.be/stops/207642", "https://data.delijn.be/stops/209687"], ["https://data.delijn.be/stops/302956", "https://data.delijn.be/stops/302966"], ["https://data.delijn.be/stops/301552", "https://data.delijn.be/stops/304701"], ["https://data.delijn.be/stops/206821", "https://data.delijn.be/stops/207967"], ["https://data.delijn.be/stops/401161", "https://data.delijn.be/stops/401163"], ["https://data.delijn.be/stops/302149", "https://data.delijn.be/stops/302151"], ["https://data.delijn.be/stops/204373", "https://data.delijn.be/stops/205374"], ["https://data.delijn.be/stops/301730", "https://data.delijn.be/stops/301781"], ["https://data.delijn.be/stops/301244", "https://data.delijn.be/stops/308140"], ["https://data.delijn.be/stops/109070", "https://data.delijn.be/stops/109559"], ["https://data.delijn.be/stops/200552", "https://data.delijn.be/stops/208845"], ["https://data.delijn.be/stops/407642", "https://data.delijn.be/stops/407762"], ["https://data.delijn.be/stops/105105", "https://data.delijn.be/stops/106086"], ["https://data.delijn.be/stops/300672", "https://data.delijn.be/stops/300679"], ["https://data.delijn.be/stops/501295", "https://data.delijn.be/stops/506296"], ["https://data.delijn.be/stops/304119", "https://data.delijn.be/stops/307578"], ["https://data.delijn.be/stops/503508", "https://data.delijn.be/stops/503511"], ["https://data.delijn.be/stops/503579", "https://data.delijn.be/stops/504774"], ["https://data.delijn.be/stops/208573", "https://data.delijn.be/stops/307590"], ["https://data.delijn.be/stops/407942", "https://data.delijn.be/stops/407982"], ["https://data.delijn.be/stops/404395", "https://data.delijn.be/stops/404396"], ["https://data.delijn.be/stops/504834", "https://data.delijn.be/stops/508901"], ["https://data.delijn.be/stops/200755", "https://data.delijn.be/stops/209307"], ["https://data.delijn.be/stops/405678", "https://data.delijn.be/stops/408393"], ["https://data.delijn.be/stops/200826", "https://data.delijn.be/stops/200861"], ["https://data.delijn.be/stops/203427", "https://data.delijn.be/stops/203465"], ["https://data.delijn.be/stops/207084", "https://data.delijn.be/stops/207085"], ["https://data.delijn.be/stops/400585", "https://data.delijn.be/stops/408676"], ["https://data.delijn.be/stops/302944", "https://data.delijn.be/stops/304909"], ["https://data.delijn.be/stops/504005", "https://data.delijn.be/stops/505164"], ["https://data.delijn.be/stops/302790", "https://data.delijn.be/stops/307703"], ["https://data.delijn.be/stops/207535", "https://data.delijn.be/stops/209744"], ["https://data.delijn.be/stops/206031", "https://data.delijn.be/stops/207031"], ["https://data.delijn.be/stops/301053", "https://data.delijn.be/stops/301056"], ["https://data.delijn.be/stops/502230", "https://data.delijn.be/stops/502684"], ["https://data.delijn.be/stops/202031", "https://data.delijn.be/stops/203029"], ["https://data.delijn.be/stops/305419", "https://data.delijn.be/stops/305926"], ["https://data.delijn.be/stops/206543", "https://data.delijn.be/stops/206997"], ["https://data.delijn.be/stops/400541", "https://data.delijn.be/stops/404162"], ["https://data.delijn.be/stops/303063", "https://data.delijn.be/stops/303091"], ["https://data.delijn.be/stops/107884", "https://data.delijn.be/stops/107886"], ["https://data.delijn.be/stops/504552", "https://data.delijn.be/stops/505989"], ["https://data.delijn.be/stops/207711", "https://data.delijn.be/stops/207745"], ["https://data.delijn.be/stops/103330", "https://data.delijn.be/stops/104570"], ["https://data.delijn.be/stops/200200", "https://data.delijn.be/stops/201275"], ["https://data.delijn.be/stops/200933", "https://data.delijn.be/stops/505623"], ["https://data.delijn.be/stops/503768", "https://data.delijn.be/stops/505073"], ["https://data.delijn.be/stops/202604", "https://data.delijn.be/stops/203579"], ["https://data.delijn.be/stops/405473", "https://data.delijn.be/stops/406674"], ["https://data.delijn.be/stops/408645", "https://data.delijn.be/stops/408646"], ["https://data.delijn.be/stops/502546", "https://data.delijn.be/stops/507539"], ["https://data.delijn.be/stops/401798", "https://data.delijn.be/stops/401811"], ["https://data.delijn.be/stops/504957", "https://data.delijn.be/stops/504975"], ["https://data.delijn.be/stops/304964", "https://data.delijn.be/stops/304967"], ["https://data.delijn.be/stops/301780", "https://data.delijn.be/stops/306796"], ["https://data.delijn.be/stops/304168", "https://data.delijn.be/stops/304169"], ["https://data.delijn.be/stops/202968", "https://data.delijn.be/stops/203968"], ["https://data.delijn.be/stops/207476", "https://data.delijn.be/stops/207477"], ["https://data.delijn.be/stops/201418", "https://data.delijn.be/stops/210070"], ["https://data.delijn.be/stops/102187", "https://data.delijn.be/stops/104344"], ["https://data.delijn.be/stops/103022", "https://data.delijn.be/stops/108636"], ["https://data.delijn.be/stops/200730", "https://data.delijn.be/stops/202615"], ["https://data.delijn.be/stops/209123", "https://data.delijn.be/stops/209233"], ["https://data.delijn.be/stops/305261", "https://data.delijn.be/stops/305299"], ["https://data.delijn.be/stops/305318", "https://data.delijn.be/stops/305887"], ["https://data.delijn.be/stops/400220", "https://data.delijn.be/stops/400230"], ["https://data.delijn.be/stops/305746", "https://data.delijn.be/stops/305754"], ["https://data.delijn.be/stops/301047", "https://data.delijn.be/stops/306399"], ["https://data.delijn.be/stops/102085", "https://data.delijn.be/stops/102090"], ["https://data.delijn.be/stops/101914", "https://data.delijn.be/stops/107925"], ["https://data.delijn.be/stops/305133", "https://data.delijn.be/stops/305214"], ["https://data.delijn.be/stops/109615", "https://data.delijn.be/stops/407111"], ["https://data.delijn.be/stops/505403", "https://data.delijn.be/stops/506174"], ["https://data.delijn.be/stops/504355", "https://data.delijn.be/stops/504360"], ["https://data.delijn.be/stops/202000", "https://data.delijn.be/stops/202136"], ["https://data.delijn.be/stops/305075", "https://data.delijn.be/stops/306954"], ["https://data.delijn.be/stops/305166", "https://data.delijn.be/stops/306962"], ["https://data.delijn.be/stops/209384", "https://data.delijn.be/stops/209620"], ["https://data.delijn.be/stops/503994", "https://data.delijn.be/stops/505806"], ["https://data.delijn.be/stops/300394", "https://data.delijn.be/stops/307491"], ["https://data.delijn.be/stops/301362", "https://data.delijn.be/stops/304738"], ["https://data.delijn.be/stops/505323", "https://data.delijn.be/stops/507494"], ["https://data.delijn.be/stops/403005", "https://data.delijn.be/stops/410002"], ["https://data.delijn.be/stops/104972", "https://data.delijn.be/stops/108553"], ["https://data.delijn.be/stops/104625", "https://data.delijn.be/stops/105587"], ["https://data.delijn.be/stops/106732", "https://data.delijn.be/stops/107199"], ["https://data.delijn.be/stops/103612", "https://data.delijn.be/stops/106311"], ["https://data.delijn.be/stops/406319", "https://data.delijn.be/stops/409406"], ["https://data.delijn.be/stops/407049", "https://data.delijn.be/stops/407084"], ["https://data.delijn.be/stops/400943", "https://data.delijn.be/stops/406959"], ["https://data.delijn.be/stops/308512", "https://data.delijn.be/stops/308514"], ["https://data.delijn.be/stops/105751", "https://data.delijn.be/stops/109963"], ["https://data.delijn.be/stops/103731", "https://data.delijn.be/stops/106321"], ["https://data.delijn.be/stops/305211", "https://data.delijn.be/stops/307872"], ["https://data.delijn.be/stops/301431", "https://data.delijn.be/stops/301442"], ["https://data.delijn.be/stops/502479", "https://data.delijn.be/stops/507479"], ["https://data.delijn.be/stops/102210", "https://data.delijn.be/stops/104260"], ["https://data.delijn.be/stops/404706", "https://data.delijn.be/stops/404817"], ["https://data.delijn.be/stops/504528", "https://data.delijn.be/stops/509528"], ["https://data.delijn.be/stops/204292", "https://data.delijn.be/stops/205292"], ["https://data.delijn.be/stops/302178", "https://data.delijn.be/stops/302181"], ["https://data.delijn.be/stops/206317", "https://data.delijn.be/stops/207287"], ["https://data.delijn.be/stops/400796", "https://data.delijn.be/stops/400881"], ["https://data.delijn.be/stops/504399", "https://data.delijn.be/stops/508440"], ["https://data.delijn.be/stops/304872", "https://data.delijn.be/stops/305425"], ["https://data.delijn.be/stops/300726", "https://data.delijn.be/stops/300732"], ["https://data.delijn.be/stops/101898", "https://data.delijn.be/stops/104509"], ["https://data.delijn.be/stops/102606", "https://data.delijn.be/stops/106731"], ["https://data.delijn.be/stops/108653", "https://data.delijn.be/stops/302908"], ["https://data.delijn.be/stops/208649", "https://data.delijn.be/stops/210108"], ["https://data.delijn.be/stops/503758", "https://data.delijn.be/stops/508758"], ["https://data.delijn.be/stops/508360", "https://data.delijn.be/stops/509771"], ["https://data.delijn.be/stops/102672", "https://data.delijn.be/stops/103488"], ["https://data.delijn.be/stops/307358", "https://data.delijn.be/stops/307365"], ["https://data.delijn.be/stops/303262", "https://data.delijn.be/stops/303263"], ["https://data.delijn.be/stops/501163", "https://data.delijn.be/stops/506163"], ["https://data.delijn.be/stops/108720", "https://data.delijn.be/stops/108803"], ["https://data.delijn.be/stops/407371", "https://data.delijn.be/stops/407377"], ["https://data.delijn.be/stops/101049", "https://data.delijn.be/stops/102689"], ["https://data.delijn.be/stops/105003", "https://data.delijn.be/stops/108889"], ["https://data.delijn.be/stops/104677", "https://data.delijn.be/stops/107382"], ["https://data.delijn.be/stops/308459", "https://data.delijn.be/stops/308463"], ["https://data.delijn.be/stops/208356", "https://data.delijn.be/stops/209356"], ["https://data.delijn.be/stops/503864", "https://data.delijn.be/stops/505963"], ["https://data.delijn.be/stops/502391", "https://data.delijn.be/stops/502658"], ["https://data.delijn.be/stops/504172", "https://data.delijn.be/stops/504524"], ["https://data.delijn.be/stops/304112", "https://data.delijn.be/stops/306277"], ["https://data.delijn.be/stops/407211", "https://data.delijn.be/stops/407215"], ["https://data.delijn.be/stops/503428", "https://data.delijn.be/stops/505201"], ["https://data.delijn.be/stops/101704", "https://data.delijn.be/stops/102908"], ["https://data.delijn.be/stops/400265", "https://data.delijn.be/stops/406950"], ["https://data.delijn.be/stops/106522", "https://data.delijn.be/stops/106524"], ["https://data.delijn.be/stops/305740", "https://data.delijn.be/stops/305748"], ["https://data.delijn.be/stops/206749", "https://data.delijn.be/stops/207899"], ["https://data.delijn.be/stops/303554", "https://data.delijn.be/stops/303567"], ["https://data.delijn.be/stops/206779", "https://data.delijn.be/stops/209561"], ["https://data.delijn.be/stops/101836", "https://data.delijn.be/stops/108207"], ["https://data.delijn.be/stops/404148", "https://data.delijn.be/stops/404280"], ["https://data.delijn.be/stops/207257", "https://data.delijn.be/stops/207258"], ["https://data.delijn.be/stops/504101", "https://data.delijn.be/stops/509024"], ["https://data.delijn.be/stops/107610", "https://data.delijn.be/stops/108485"], ["https://data.delijn.be/stops/208284", "https://data.delijn.be/stops/209283"], ["https://data.delijn.be/stops/302497", "https://data.delijn.be/stops/304732"], ["https://data.delijn.be/stops/200050", "https://data.delijn.be/stops/201202"], ["https://data.delijn.be/stops/504388", "https://data.delijn.be/stops/505717"], ["https://data.delijn.be/stops/101228", "https://data.delijn.be/stops/107922"], ["https://data.delijn.be/stops/505981", "https://data.delijn.be/stops/507631"], ["https://data.delijn.be/stops/204144", "https://data.delijn.be/stops/205145"], ["https://data.delijn.be/stops/202499", "https://data.delijn.be/stops/205792"], ["https://data.delijn.be/stops/404181", "https://data.delijn.be/stops/404278"], ["https://data.delijn.be/stops/107980", "https://data.delijn.be/stops/109095"], ["https://data.delijn.be/stops/106304", "https://data.delijn.be/stops/106305"], ["https://data.delijn.be/stops/300951", "https://data.delijn.be/stops/301039"], ["https://data.delijn.be/stops/308976", "https://data.delijn.be/stops/308977"], ["https://data.delijn.be/stops/300431", "https://data.delijn.be/stops/302701"], ["https://data.delijn.be/stops/303996", "https://data.delijn.be/stops/304061"], ["https://data.delijn.be/stops/201671", "https://data.delijn.be/stops/202774"], ["https://data.delijn.be/stops/406631", "https://data.delijn.be/stops/406698"], ["https://data.delijn.be/stops/504439", "https://data.delijn.be/stops/504449"], ["https://data.delijn.be/stops/402815", "https://data.delijn.be/stops/409039"], ["https://data.delijn.be/stops/300337", "https://data.delijn.be/stops/304439"], ["https://data.delijn.be/stops/106765", "https://data.delijn.be/stops/107519"], ["https://data.delijn.be/stops/108811", "https://data.delijn.be/stops/108812"], ["https://data.delijn.be/stops/507526", "https://data.delijn.be/stops/507528"], ["https://data.delijn.be/stops/505149", "https://data.delijn.be/stops/505244"], ["https://data.delijn.be/stops/208698", "https://data.delijn.be/stops/208700"], ["https://data.delijn.be/stops/102835", "https://data.delijn.be/stops/102837"], ["https://data.delijn.be/stops/107082", "https://data.delijn.be/stops/108173"], ["https://data.delijn.be/stops/208207", "https://data.delijn.be/stops/208208"], ["https://data.delijn.be/stops/400328", "https://data.delijn.be/stops/400331"], ["https://data.delijn.be/stops/205999", "https://data.delijn.be/stops/207723"], ["https://data.delijn.be/stops/507428", "https://data.delijn.be/stops/507696"], ["https://data.delijn.be/stops/109491", "https://data.delijn.be/stops/305834"], ["https://data.delijn.be/stops/104821", "https://data.delijn.be/stops/108508"], ["https://data.delijn.be/stops/200025", "https://data.delijn.be/stops/208845"], ["https://data.delijn.be/stops/102184", "https://data.delijn.be/stops/102277"], ["https://data.delijn.be/stops/208488", "https://data.delijn.be/stops/209596"], ["https://data.delijn.be/stops/200995", "https://data.delijn.be/stops/201295"], ["https://data.delijn.be/stops/504235", "https://data.delijn.be/stops/509235"], ["https://data.delijn.be/stops/201477", "https://data.delijn.be/stops/210063"], ["https://data.delijn.be/stops/401825", "https://data.delijn.be/stops/401826"], ["https://data.delijn.be/stops/302436", "https://data.delijn.be/stops/302445"], ["https://data.delijn.be/stops/108553", "https://data.delijn.be/stops/109597"], ["https://data.delijn.be/stops/504012", "https://data.delijn.be/stops/505911"], ["https://data.delijn.be/stops/106812", "https://data.delijn.be/stops/106814"], ["https://data.delijn.be/stops/502434", "https://data.delijn.be/stops/507424"], ["https://data.delijn.be/stops/308054", "https://data.delijn.be/stops/308055"], ["https://data.delijn.be/stops/505186", "https://data.delijn.be/stops/509560"], ["https://data.delijn.be/stops/206231", "https://data.delijn.be/stops/300218"], ["https://data.delijn.be/stops/301978", "https://data.delijn.be/stops/301984"], ["https://data.delijn.be/stops/501007", "https://data.delijn.be/stops/508747"], ["https://data.delijn.be/stops/508474", "https://data.delijn.be/stops/509005"], ["https://data.delijn.be/stops/401260", "https://data.delijn.be/stops/401320"], ["https://data.delijn.be/stops/108706", "https://data.delijn.be/stops/108711"], ["https://data.delijn.be/stops/209552", "https://data.delijn.be/stops/209569"], ["https://data.delijn.be/stops/403717", "https://data.delijn.be/stops/403724"], ["https://data.delijn.be/stops/302774", "https://data.delijn.be/stops/306553"], ["https://data.delijn.be/stops/306621", "https://data.delijn.be/stops/306760"], ["https://data.delijn.be/stops/301493", "https://data.delijn.be/stops/307957"], ["https://data.delijn.be/stops/407813", "https://data.delijn.be/stops/407971"], ["https://data.delijn.be/stops/102040", "https://data.delijn.be/stops/103740"], ["https://data.delijn.be/stops/407763", "https://data.delijn.be/stops/407764"], ["https://data.delijn.be/stops/207004", "https://data.delijn.be/stops/207005"], ["https://data.delijn.be/stops/105824", "https://data.delijn.be/stops/105825"], ["https://data.delijn.be/stops/208798", "https://data.delijn.be/stops/209355"], ["https://data.delijn.be/stops/408360", "https://data.delijn.be/stops/408366"], ["https://data.delijn.be/stops/102590", "https://data.delijn.be/stops/102760"], ["https://data.delijn.be/stops/206450", "https://data.delijn.be/stops/207494"], ["https://data.delijn.be/stops/106642", "https://data.delijn.be/stops/106678"], ["https://data.delijn.be/stops/102237", "https://data.delijn.be/stops/104288"], ["https://data.delijn.be/stops/203166", "https://data.delijn.be/stops/205075"], ["https://data.delijn.be/stops/304403", "https://data.delijn.be/stops/304404"], ["https://data.delijn.be/stops/300456", "https://data.delijn.be/stops/300458"], ["https://data.delijn.be/stops/200369", "https://data.delijn.be/stops/201226"], ["https://data.delijn.be/stops/504161", "https://data.delijn.be/stops/504193"], ["https://data.delijn.be/stops/208263", "https://data.delijn.be/stops/208717"], ["https://data.delijn.be/stops/104793", "https://data.delijn.be/stops/107634"], ["https://data.delijn.be/stops/200171", "https://data.delijn.be/stops/200229"], ["https://data.delijn.be/stops/109903", "https://data.delijn.be/stops/109904"], ["https://data.delijn.be/stops/401480", "https://data.delijn.be/stops/406144"], ["https://data.delijn.be/stops/202437", "https://data.delijn.be/stops/202585"], ["https://data.delijn.be/stops/406191", "https://data.delijn.be/stops/406200"], ["https://data.delijn.be/stops/300728", "https://data.delijn.be/stops/300730"], ["https://data.delijn.be/stops/206820", "https://data.delijn.be/stops/206821"], ["https://data.delijn.be/stops/303754", "https://data.delijn.be/stops/303758"], ["https://data.delijn.be/stops/503652", "https://data.delijn.be/stops/508652"], ["https://data.delijn.be/stops/101925", "https://data.delijn.be/stops/105460"], ["https://data.delijn.be/stops/501036", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/107144", "https://data.delijn.be/stops/107146"], ["https://data.delijn.be/stops/106696", "https://data.delijn.be/stops/106698"], ["https://data.delijn.be/stops/207268", "https://data.delijn.be/stops/207871"], ["https://data.delijn.be/stops/300475", "https://data.delijn.be/stops/308080"], ["https://data.delijn.be/stops/503107", "https://data.delijn.be/stops/505380"], ["https://data.delijn.be/stops/407449", "https://data.delijn.be/stops/407490"], ["https://data.delijn.be/stops/106361", "https://data.delijn.be/stops/106362"], ["https://data.delijn.be/stops/306630", "https://data.delijn.be/stops/306631"], ["https://data.delijn.be/stops/503376", "https://data.delijn.be/stops/508441"], ["https://data.delijn.be/stops/301514", "https://data.delijn.be/stops/308076"], ["https://data.delijn.be/stops/301011", "https://data.delijn.be/stops/301012"], ["https://data.delijn.be/stops/202670", "https://data.delijn.be/stops/203670"], ["https://data.delijn.be/stops/102882", "https://data.delijn.be/stops/108156"], ["https://data.delijn.be/stops/102703", "https://data.delijn.be/stops/104749"], ["https://data.delijn.be/stops/301074", "https://data.delijn.be/stops/306813"], ["https://data.delijn.be/stops/503716", "https://data.delijn.be/stops/505937"], ["https://data.delijn.be/stops/107202", "https://data.delijn.be/stops/107604"], ["https://data.delijn.be/stops/400063", "https://data.delijn.be/stops/400108"], ["https://data.delijn.be/stops/106915", "https://data.delijn.be/stops/107263"], ["https://data.delijn.be/stops/101649", "https://data.delijn.be/stops/103587"], ["https://data.delijn.be/stops/409116", "https://data.delijn.be/stops/409221"], ["https://data.delijn.be/stops/102595", "https://data.delijn.be/stops/105510"], ["https://data.delijn.be/stops/301654", "https://data.delijn.be/stops/306301"], ["https://data.delijn.be/stops/301981", "https://data.delijn.be/stops/301988"], ["https://data.delijn.be/stops/202449", "https://data.delijn.be/stops/203441"], ["https://data.delijn.be/stops/405699", "https://data.delijn.be/stops/406134"], ["https://data.delijn.be/stops/200308", "https://data.delijn.be/stops/201307"], ["https://data.delijn.be/stops/209121", "https://data.delijn.be/stops/209768"], ["https://data.delijn.be/stops/109079", "https://data.delijn.be/stops/109081"], ["https://data.delijn.be/stops/300130", "https://data.delijn.be/stops/300143"], ["https://data.delijn.be/stops/204116", "https://data.delijn.be/stops/204417"], ["https://data.delijn.be/stops/401320", "https://data.delijn.be/stops/406653"], ["https://data.delijn.be/stops/306830", "https://data.delijn.be/stops/306832"], ["https://data.delijn.be/stops/402577", "https://data.delijn.be/stops/404143"], ["https://data.delijn.be/stops/104030", "https://data.delijn.be/stops/104250"], ["https://data.delijn.be/stops/206232", "https://data.delijn.be/stops/207231"], ["https://data.delijn.be/stops/505687", "https://data.delijn.be/stops/507066"], ["https://data.delijn.be/stops/405344", "https://data.delijn.be/stops/308732"], ["https://data.delijn.be/stops/204191", "https://data.delijn.be/stops/204192"], ["https://data.delijn.be/stops/104262", "https://data.delijn.be/stops/104271"], ["https://data.delijn.be/stops/504054", "https://data.delijn.be/stops/509057"], ["https://data.delijn.be/stops/107578", "https://data.delijn.be/stops/107581"], ["https://data.delijn.be/stops/201222", "https://data.delijn.be/stops/201987"], ["https://data.delijn.be/stops/203480", "https://data.delijn.be/stops/203749"], ["https://data.delijn.be/stops/105287", "https://data.delijn.be/stops/105290"], ["https://data.delijn.be/stops/503163", "https://data.delijn.be/stops/504298"], ["https://data.delijn.be/stops/406557", "https://data.delijn.be/stops/407375"], ["https://data.delijn.be/stops/206989", "https://data.delijn.be/stops/207085"], ["https://data.delijn.be/stops/503405", "https://data.delijn.be/stops/503445"], ["https://data.delijn.be/stops/400905", "https://data.delijn.be/stops/407401"], ["https://data.delijn.be/stops/202035", "https://data.delijn.be/stops/203034"], ["https://data.delijn.be/stops/408268", "https://data.delijn.be/stops/408270"], ["https://data.delijn.be/stops/203238", "https://data.delijn.be/stops/203268"], ["https://data.delijn.be/stops/504997", "https://data.delijn.be/stops/505376"], ["https://data.delijn.be/stops/408858", "https://data.delijn.be/stops/408884"], ["https://data.delijn.be/stops/102847", "https://data.delijn.be/stops/103625"], ["https://data.delijn.be/stops/503220", "https://data.delijn.be/stops/505264"], ["https://data.delijn.be/stops/507185", "https://data.delijn.be/stops/507667"], ["https://data.delijn.be/stops/101035", "https://data.delijn.be/stops/103127"], ["https://data.delijn.be/stops/401828", "https://data.delijn.be/stops/401833"], ["https://data.delijn.be/stops/403642", "https://data.delijn.be/stops/403655"], ["https://data.delijn.be/stops/406040", "https://data.delijn.be/stops/406042"], ["https://data.delijn.be/stops/300944", "https://data.delijn.be/stops/308903"], ["https://data.delijn.be/stops/301584", "https://data.delijn.be/stops/301587"], ["https://data.delijn.be/stops/200258", "https://data.delijn.be/stops/202562"], ["https://data.delijn.be/stops/304498", "https://data.delijn.be/stops/304499"], ["https://data.delijn.be/stops/203857", "https://data.delijn.be/stops/203858"], ["https://data.delijn.be/stops/200017", "https://data.delijn.be/stops/200354"], ["https://data.delijn.be/stops/102702", "https://data.delijn.be/stops/105549"], ["https://data.delijn.be/stops/504357", "https://data.delijn.be/stops/509589"], ["https://data.delijn.be/stops/200025", "https://data.delijn.be/stops/200552"], ["https://data.delijn.be/stops/503594", "https://data.delijn.be/stops/503597"], ["https://data.delijn.be/stops/208061", "https://data.delijn.be/stops/209511"], ["https://data.delijn.be/stops/106842", "https://data.delijn.be/stops/106843"], ["https://data.delijn.be/stops/204023", "https://data.delijn.be/stops/205024"], ["https://data.delijn.be/stops/501242", "https://data.delijn.be/stops/506242"], ["https://data.delijn.be/stops/203817", "https://data.delijn.be/stops/203907"], ["https://data.delijn.be/stops/208031", "https://data.delijn.be/stops/209030"], ["https://data.delijn.be/stops/201926", "https://data.delijn.be/stops/207248"], ["https://data.delijn.be/stops/201274", "https://data.delijn.be/stops/201382"], ["https://data.delijn.be/stops/503693", "https://data.delijn.be/stops/508715"], ["https://data.delijn.be/stops/306384", "https://data.delijn.be/stops/307210"], ["https://data.delijn.be/stops/202539", "https://data.delijn.be/stops/203689"], ["https://data.delijn.be/stops/503161", "https://data.delijn.be/stops/508656"], ["https://data.delijn.be/stops/500560", "https://data.delijn.be/stops/506033"], ["https://data.delijn.be/stops/405294", "https://data.delijn.be/stops/405295"], ["https://data.delijn.be/stops/300086", "https://data.delijn.be/stops/306860"], ["https://data.delijn.be/stops/208197", "https://data.delijn.be/stops/209132"], ["https://data.delijn.be/stops/207379", "https://data.delijn.be/stops/207730"], ["https://data.delijn.be/stops/302427", "https://data.delijn.be/stops/302439"], ["https://data.delijn.be/stops/300142", "https://data.delijn.be/stops/306806"], ["https://data.delijn.be/stops/200458", "https://data.delijn.be/stops/201662"], ["https://data.delijn.be/stops/201420", "https://data.delijn.be/stops/202013"], ["https://data.delijn.be/stops/502489", "https://data.delijn.be/stops/507489"], ["https://data.delijn.be/stops/302123", "https://data.delijn.be/stops/302124"], ["https://data.delijn.be/stops/109178", "https://data.delijn.be/stops/109179"], ["https://data.delijn.be/stops/209492", "https://data.delijn.be/stops/209493"], ["https://data.delijn.be/stops/507684", "https://data.delijn.be/stops/508231"], ["https://data.delijn.be/stops/301288", "https://data.delijn.be/stops/301331"], ["https://data.delijn.be/stops/403628", "https://data.delijn.be/stops/403649"], ["https://data.delijn.be/stops/303136", "https://data.delijn.be/stops/303148"], ["https://data.delijn.be/stops/207525", "https://data.delijn.be/stops/216007"], ["https://data.delijn.be/stops/106579", "https://data.delijn.be/stops/106580"], ["https://data.delijn.be/stops/304764", "https://data.delijn.be/stops/304770"], ["https://data.delijn.be/stops/400264", "https://data.delijn.be/stops/400932"], ["https://data.delijn.be/stops/408431", "https://data.delijn.be/stops/408432"], ["https://data.delijn.be/stops/506664", "https://data.delijn.be/stops/506665"], ["https://data.delijn.be/stops/102120", "https://data.delijn.be/stops/102210"], ["https://data.delijn.be/stops/201451", "https://data.delijn.be/stops/211405"], ["https://data.delijn.be/stops/305738", "https://data.delijn.be/stops/305748"], ["https://data.delijn.be/stops/405534", "https://data.delijn.be/stops/407294"], ["https://data.delijn.be/stops/502747", "https://data.delijn.be/stops/505069"], ["https://data.delijn.be/stops/401489", "https://data.delijn.be/stops/401500"], ["https://data.delijn.be/stops/304128", "https://data.delijn.be/stops/307676"], ["https://data.delijn.be/stops/207872", "https://data.delijn.be/stops/209366"], ["https://data.delijn.be/stops/107183", "https://data.delijn.be/stops/107736"], ["https://data.delijn.be/stops/200076", "https://data.delijn.be/stops/204911"], ["https://data.delijn.be/stops/101179", "https://data.delijn.be/stops/103214"], ["https://data.delijn.be/stops/304128", "https://data.delijn.be/stops/304134"], ["https://data.delijn.be/stops/200703", "https://data.delijn.be/stops/202426"], ["https://data.delijn.be/stops/408108", "https://data.delijn.be/stops/408116"], ["https://data.delijn.be/stops/308566", "https://data.delijn.be/stops/308574"], ["https://data.delijn.be/stops/504225", "https://data.delijn.be/stops/504226"], ["https://data.delijn.be/stops/303987", "https://data.delijn.be/stops/306290"], ["https://data.delijn.be/stops/404897", "https://data.delijn.be/stops/404906"], ["https://data.delijn.be/stops/103690", "https://data.delijn.be/stops/109005"], ["https://data.delijn.be/stops/302749", "https://data.delijn.be/stops/307046"], ["https://data.delijn.be/stops/505119", "https://data.delijn.be/stops/509641"], ["https://data.delijn.be/stops/404572", "https://data.delijn.be/stops/404573"], ["https://data.delijn.be/stops/403920", "https://data.delijn.be/stops/404014"], ["https://data.delijn.be/stops/104738", "https://data.delijn.be/stops/104742"], ["https://data.delijn.be/stops/204081", "https://data.delijn.be/stops/205080"], ["https://data.delijn.be/stops/403892", "https://data.delijn.be/stops/406887"], ["https://data.delijn.be/stops/510027", "https://data.delijn.be/stops/510030"], ["https://data.delijn.be/stops/103042", "https://data.delijn.be/stops/106771"], ["https://data.delijn.be/stops/102233", "https://data.delijn.be/stops/105661"], ["https://data.delijn.be/stops/208146", "https://data.delijn.be/stops/209147"], ["https://data.delijn.be/stops/104006", "https://data.delijn.be/stops/107285"], ["https://data.delijn.be/stops/202341", "https://data.delijn.be/stops/203483"], ["https://data.delijn.be/stops/205153", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/101450", "https://data.delijn.be/stops/108360"], ["https://data.delijn.be/stops/509368", "https://data.delijn.be/stops/509372"], ["https://data.delijn.be/stops/105269", "https://data.delijn.be/stops/105293"], ["https://data.delijn.be/stops/106143", "https://data.delijn.be/stops/106144"], ["https://data.delijn.be/stops/308148", "https://data.delijn.be/stops/308149"], ["https://data.delijn.be/stops/404091", "https://data.delijn.be/stops/408585"], ["https://data.delijn.be/stops/203956", "https://data.delijn.be/stops/203958"], ["https://data.delijn.be/stops/300815", "https://data.delijn.be/stops/300880"], ["https://data.delijn.be/stops/407935", "https://data.delijn.be/stops/407938"], ["https://data.delijn.be/stops/201736", "https://data.delijn.be/stops/202787"], ["https://data.delijn.be/stops/300723", "https://data.delijn.be/stops/300724"], ["https://data.delijn.be/stops/300435", "https://data.delijn.be/stops/300441"], ["https://data.delijn.be/stops/501169", "https://data.delijn.be/stops/501172"], ["https://data.delijn.be/stops/208064", "https://data.delijn.be/stops/208067"], ["https://data.delijn.be/stops/304542", "https://data.delijn.be/stops/306207"], ["https://data.delijn.be/stops/303018", "https://data.delijn.be/stops/303021"], ["https://data.delijn.be/stops/503788", "https://data.delijn.be/stops/508788"], ["https://data.delijn.be/stops/403758", "https://data.delijn.be/stops/403763"], ["https://data.delijn.be/stops/401590", "https://data.delijn.be/stops/402082"], ["https://data.delijn.be/stops/301169", "https://data.delijn.be/stops/303208"], ["https://data.delijn.be/stops/206349", "https://data.delijn.be/stops/207729"], ["https://data.delijn.be/stops/402429", "https://data.delijn.be/stops/406678"], ["https://data.delijn.be/stops/202592", "https://data.delijn.be/stops/203592"], ["https://data.delijn.be/stops/201871", "https://data.delijn.be/stops/202422"], ["https://data.delijn.be/stops/306700", "https://data.delijn.be/stops/306828"], ["https://data.delijn.be/stops/502503", "https://data.delijn.be/stops/505588"], ["https://data.delijn.be/stops/301597", "https://data.delijn.be/stops/306260"], ["https://data.delijn.be/stops/104861", "https://data.delijn.be/stops/107879"], ["https://data.delijn.be/stops/407889", "https://data.delijn.be/stops/408189"], ["https://data.delijn.be/stops/307959", "https://data.delijn.be/stops/308070"], ["https://data.delijn.be/stops/207879", "https://data.delijn.be/stops/207900"], ["https://data.delijn.be/stops/400721", "https://data.delijn.be/stops/401504"], ["https://data.delijn.be/stops/304177", "https://data.delijn.be/stops/304178"], ["https://data.delijn.be/stops/102857", "https://data.delijn.be/stops/102858"], ["https://data.delijn.be/stops/204397", "https://data.delijn.be/stops/204416"], ["https://data.delijn.be/stops/304382", "https://data.delijn.be/stops/306831"], ["https://data.delijn.be/stops/205986", "https://data.delijn.be/stops/206266"], ["https://data.delijn.be/stops/200525", "https://data.delijn.be/stops/204911"], ["https://data.delijn.be/stops/301849", "https://data.delijn.be/stops/305819"], ["https://data.delijn.be/stops/408079", "https://data.delijn.be/stops/408084"], ["https://data.delijn.be/stops/206241", "https://data.delijn.be/stops/206242"], ["https://data.delijn.be/stops/204288", "https://data.delijn.be/stops/205498"], ["https://data.delijn.be/stops/106179", "https://data.delijn.be/stops/109372"], ["https://data.delijn.be/stops/400927", "https://data.delijn.be/stops/407393"], ["https://data.delijn.be/stops/401024", "https://data.delijn.be/stops/409817"], ["https://data.delijn.be/stops/104490", "https://data.delijn.be/stops/104890"], ["https://data.delijn.be/stops/200017", "https://data.delijn.be/stops/200148"], ["https://data.delijn.be/stops/305290", "https://data.delijn.be/stops/305293"], ["https://data.delijn.be/stops/208482", "https://data.delijn.be/stops/209482"], ["https://data.delijn.be/stops/304258", "https://data.delijn.be/stops/305493"], ["https://data.delijn.be/stops/105789", "https://data.delijn.be/stops/105792"], ["https://data.delijn.be/stops/503643", "https://data.delijn.be/stops/508643"], ["https://data.delijn.be/stops/401603", "https://data.delijn.be/stops/409438"], ["https://data.delijn.be/stops/501382", "https://data.delijn.be/stops/507255"], ["https://data.delijn.be/stops/104024", "https://data.delijn.be/stops/106900"], ["https://data.delijn.be/stops/101166", "https://data.delijn.be/stops/102395"], ["https://data.delijn.be/stops/108464", "https://data.delijn.be/stops/108469"], ["https://data.delijn.be/stops/404213", "https://data.delijn.be/stops/409630"], ["https://data.delijn.be/stops/402936", "https://data.delijn.be/stops/405977"], ["https://data.delijn.be/stops/301580", "https://data.delijn.be/stops/301589"], ["https://data.delijn.be/stops/200383", "https://data.delijn.be/stops/201245"], ["https://data.delijn.be/stops/506014", "https://data.delijn.be/stops/506620"], ["https://data.delijn.be/stops/300870", "https://data.delijn.be/stops/302221"], ["https://data.delijn.be/stops/308161", "https://data.delijn.be/stops/308163"], ["https://data.delijn.be/stops/103940", "https://data.delijn.be/stops/109709"], ["https://data.delijn.be/stops/109208", "https://data.delijn.be/stops/109227"], ["https://data.delijn.be/stops/301462", "https://data.delijn.be/stops/307957"], ["https://data.delijn.be/stops/408030", "https://data.delijn.be/stops/408062"], ["https://data.delijn.be/stops/505787", "https://data.delijn.be/stops/509343"], ["https://data.delijn.be/stops/102657", "https://data.delijn.be/stops/301151"], ["https://data.delijn.be/stops/402716", "https://data.delijn.be/stops/303647"], ["https://data.delijn.be/stops/302452", "https://data.delijn.be/stops/302493"], ["https://data.delijn.be/stops/400065", "https://data.delijn.be/stops/409203"], ["https://data.delijn.be/stops/505367", "https://data.delijn.be/stops/505791"], ["https://data.delijn.be/stops/207791", "https://data.delijn.be/stops/207792"], ["https://data.delijn.be/stops/406164", "https://data.delijn.be/stops/406198"], ["https://data.delijn.be/stops/206835", "https://data.delijn.be/stops/206939"], ["https://data.delijn.be/stops/202326", "https://data.delijn.be/stops/202715"], ["https://data.delijn.be/stops/101017", "https://data.delijn.be/stops/101133"], ["https://data.delijn.be/stops/102899", "https://data.delijn.be/stops/107068"], ["https://data.delijn.be/stops/200374", "https://data.delijn.be/stops/201037"], ["https://data.delijn.be/stops/200770", "https://data.delijn.be/stops/507952"], ["https://data.delijn.be/stops/400119", "https://data.delijn.be/stops/400160"], ["https://data.delijn.be/stops/503242", "https://data.delijn.be/stops/505371"], ["https://data.delijn.be/stops/305529", "https://data.delijn.be/stops/305577"], ["https://data.delijn.be/stops/202707", "https://data.delijn.be/stops/203683"], ["https://data.delijn.be/stops/208682", "https://data.delijn.be/stops/209436"], ["https://data.delijn.be/stops/101359", "https://data.delijn.be/stops/102188"], ["https://data.delijn.be/stops/306312", "https://data.delijn.be/stops/307639"], ["https://data.delijn.be/stops/404734", "https://data.delijn.be/stops/404814"], ["https://data.delijn.be/stops/201402", "https://data.delijn.be/stops/202365"], ["https://data.delijn.be/stops/102323", "https://data.delijn.be/stops/204029"], ["https://data.delijn.be/stops/108949", "https://data.delijn.be/stops/109220"], ["https://data.delijn.be/stops/504246", "https://data.delijn.be/stops/504702"], ["https://data.delijn.be/stops/200901", "https://data.delijn.be/stops/202267"], ["https://data.delijn.be/stops/102633", "https://data.delijn.be/stops/104908"], ["https://data.delijn.be/stops/200768", "https://data.delijn.be/stops/204976"], ["https://data.delijn.be/stops/305617", "https://data.delijn.be/stops/305955"], ["https://data.delijn.be/stops/308142", "https://data.delijn.be/stops/308143"], ["https://data.delijn.be/stops/301247", "https://data.delijn.be/stops/307197"], ["https://data.delijn.be/stops/404398", "https://data.delijn.be/stops/404426"], ["https://data.delijn.be/stops/109232", "https://data.delijn.be/stops/109234"], ["https://data.delijn.be/stops/200543", "https://data.delijn.be/stops/210107"], ["https://data.delijn.be/stops/503775", "https://data.delijn.be/stops/504318"], ["https://data.delijn.be/stops/308552", "https://data.delijn.be/stops/308553"], ["https://data.delijn.be/stops/204449", "https://data.delijn.be/stops/205301"], ["https://data.delijn.be/stops/103300", "https://data.delijn.be/stops/107845"], ["https://data.delijn.be/stops/106286", "https://data.delijn.be/stops/106302"], ["https://data.delijn.be/stops/106131", "https://data.delijn.be/stops/106133"], ["https://data.delijn.be/stops/101812", "https://data.delijn.be/stops/107978"], ["https://data.delijn.be/stops/508129", "https://data.delijn.be/stops/508993"], ["https://data.delijn.be/stops/104013", "https://data.delijn.be/stops/104014"], ["https://data.delijn.be/stops/206626", "https://data.delijn.be/stops/206681"], ["https://data.delijn.be/stops/505668", "https://data.delijn.be/stops/505753"], ["https://data.delijn.be/stops/204664", "https://data.delijn.be/stops/205126"], ["https://data.delijn.be/stops/202929", "https://data.delijn.be/stops/203912"], ["https://data.delijn.be/stops/503281", "https://data.delijn.be/stops/503287"], ["https://data.delijn.be/stops/204230", "https://data.delijn.be/stops/205230"], ["https://data.delijn.be/stops/504453", "https://data.delijn.be/stops/504454"], ["https://data.delijn.be/stops/207486", "https://data.delijn.be/stops/209756"], ["https://data.delijn.be/stops/304028", "https://data.delijn.be/stops/304100"], ["https://data.delijn.be/stops/401214", "https://data.delijn.be/stops/401253"], ["https://data.delijn.be/stops/304596", "https://data.delijn.be/stops/304652"], ["https://data.delijn.be/stops/202690", "https://data.delijn.be/stops/203720"], ["https://data.delijn.be/stops/208040", "https://data.delijn.be/stops/209047"], ["https://data.delijn.be/stops/503217", "https://data.delijn.be/stops/503449"], ["https://data.delijn.be/stops/503205", "https://data.delijn.be/stops/508186"], ["https://data.delijn.be/stops/202375", "https://data.delijn.be/stops/203374"], ["https://data.delijn.be/stops/101589", "https://data.delijn.be/stops/105766"], ["https://data.delijn.be/stops/400084", "https://data.delijn.be/stops/400085"], ["https://data.delijn.be/stops/507220", "https://data.delijn.be/stops/507221"], ["https://data.delijn.be/stops/205992", "https://data.delijn.be/stops/208780"], ["https://data.delijn.be/stops/103274", "https://data.delijn.be/stops/107609"], ["https://data.delijn.be/stops/200676", "https://data.delijn.be/stops/200677"], ["https://data.delijn.be/stops/201197", "https://data.delijn.be/stops/201690"], ["https://data.delijn.be/stops/407298", "https://data.delijn.be/stops/407299"], ["https://data.delijn.be/stops/208956", "https://data.delijn.be/stops/208957"], ["https://data.delijn.be/stops/301967", "https://data.delijn.be/stops/307222"], ["https://data.delijn.be/stops/204006", "https://data.delijn.be/stops/204322"], ["https://data.delijn.be/stops/501530", "https://data.delijn.be/stops/501531"], ["https://data.delijn.be/stops/508347", "https://data.delijn.be/stops/510025"], ["https://data.delijn.be/stops/303622", "https://data.delijn.be/stops/307339"], ["https://data.delijn.be/stops/401847", "https://data.delijn.be/stops/406233"], ["https://data.delijn.be/stops/101547", "https://data.delijn.be/stops/101551"], ["https://data.delijn.be/stops/403056", "https://data.delijn.be/stops/403315"], ["https://data.delijn.be/stops/405306", "https://data.delijn.be/stops/409499"], ["https://data.delijn.be/stops/107110", "https://data.delijn.be/stops/107600"], ["https://data.delijn.be/stops/302498", "https://data.delijn.be/stops/302499"], ["https://data.delijn.be/stops/402750", "https://data.delijn.be/stops/402751"], ["https://data.delijn.be/stops/504097", "https://data.delijn.be/stops/509097"], ["https://data.delijn.be/stops/304987", "https://data.delijn.be/stops/308021"], ["https://data.delijn.be/stops/209095", "https://data.delijn.be/stops/209096"], ["https://data.delijn.be/stops/308146", "https://data.delijn.be/stops/308164"], ["https://data.delijn.be/stops/304337", "https://data.delijn.be/stops/304338"], ["https://data.delijn.be/stops/402228", "https://data.delijn.be/stops/402229"], ["https://data.delijn.be/stops/407290", "https://data.delijn.be/stops/407291"], ["https://data.delijn.be/stops/101292", "https://data.delijn.be/stops/101293"], ["https://data.delijn.be/stops/302899", "https://data.delijn.be/stops/302900"], ["https://data.delijn.be/stops/402297", "https://data.delijn.be/stops/405578"], ["https://data.delijn.be/stops/401077", "https://data.delijn.be/stops/407537"], ["https://data.delijn.be/stops/507154", "https://data.delijn.be/stops/507247"], ["https://data.delijn.be/stops/201672", "https://data.delijn.be/stops/203501"], ["https://data.delijn.be/stops/506066", "https://data.delijn.be/stops/506071"], ["https://data.delijn.be/stops/407274", "https://data.delijn.be/stops/407311"], ["https://data.delijn.be/stops/204069", "https://data.delijn.be/stops/205186"], ["https://data.delijn.be/stops/206168", "https://data.delijn.be/stops/303405"], ["https://data.delijn.be/stops/108511", "https://data.delijn.be/stops/108513"], ["https://data.delijn.be/stops/204020", "https://data.delijn.be/stops/204021"], ["https://data.delijn.be/stops/304185", "https://data.delijn.be/stops/304186"], ["https://data.delijn.be/stops/403164", "https://data.delijn.be/stops/410127"], ["https://data.delijn.be/stops/406240", "https://data.delijn.be/stops/406258"], ["https://data.delijn.be/stops/206128", "https://data.delijn.be/stops/207651"], ["https://data.delijn.be/stops/501668", "https://data.delijn.be/stops/506143"], ["https://data.delijn.be/stops/305177", "https://data.delijn.be/stops/305198"], ["https://data.delijn.be/stops/404419", "https://data.delijn.be/stops/404421"], ["https://data.delijn.be/stops/302397", "https://data.delijn.be/stops/308556"], ["https://data.delijn.be/stops/201556", "https://data.delijn.be/stops/201558"], ["https://data.delijn.be/stops/402578", "https://data.delijn.be/stops/402584"], ["https://data.delijn.be/stops/200309", "https://data.delijn.be/stops/205923"], ["https://data.delijn.be/stops/301683", "https://data.delijn.be/stops/302395"], ["https://data.delijn.be/stops/305732", "https://data.delijn.be/stops/306331"], ["https://data.delijn.be/stops/202054", "https://data.delijn.be/stops/210056"], ["https://data.delijn.be/stops/501367", "https://data.delijn.be/stops/590334"], ["https://data.delijn.be/stops/206559", "https://data.delijn.be/stops/207539"], ["https://data.delijn.be/stops/409294", "https://data.delijn.be/stops/409295"], ["https://data.delijn.be/stops/301283", "https://data.delijn.be/stops/301284"], ["https://data.delijn.be/stops/504151", "https://data.delijn.be/stops/504160"], ["https://data.delijn.be/stops/403344", "https://data.delijn.be/stops/403462"], ["https://data.delijn.be/stops/101552", "https://data.delijn.be/stops/107916"], ["https://data.delijn.be/stops/409088", "https://data.delijn.be/stops/409137"], ["https://data.delijn.be/stops/502333", "https://data.delijn.be/stops/507320"], ["https://data.delijn.be/stops/407613", "https://data.delijn.be/stops/409879"], ["https://data.delijn.be/stops/400377", "https://data.delijn.be/stops/401588"], ["https://data.delijn.be/stops/103218", "https://data.delijn.be/stops/108179"], ["https://data.delijn.be/stops/206416", "https://data.delijn.be/stops/206684"], ["https://data.delijn.be/stops/504599", "https://data.delijn.be/stops/504607"], ["https://data.delijn.be/stops/204116", "https://data.delijn.be/stops/205118"], ["https://data.delijn.be/stops/101382", "https://data.delijn.be/stops/106996"], ["https://data.delijn.be/stops/505297", "https://data.delijn.be/stops/508507"], ["https://data.delijn.be/stops/407804", "https://data.delijn.be/stops/407950"], ["https://data.delijn.be/stops/208134", "https://data.delijn.be/stops/209133"], ["https://data.delijn.be/stops/201111", "https://data.delijn.be/stops/202647"], ["https://data.delijn.be/stops/301711", "https://data.delijn.be/stops/305890"], ["https://data.delijn.be/stops/202980", "https://data.delijn.be/stops/203979"], ["https://data.delijn.be/stops/300429", "https://data.delijn.be/stops/302702"], ["https://data.delijn.be/stops/300729", "https://data.delijn.be/stops/302282"], ["https://data.delijn.be/stops/103287", "https://data.delijn.be/stops/109989"], ["https://data.delijn.be/stops/107959", "https://data.delijn.be/stops/108126"], ["https://data.delijn.be/stops/407978", "https://data.delijn.be/stops/408167"], ["https://data.delijn.be/stops/102693", "https://data.delijn.be/stops/102795"], ["https://data.delijn.be/stops/304990", "https://data.delijn.be/stops/305026"], ["https://data.delijn.be/stops/109022", "https://data.delijn.be/stops/109024"], ["https://data.delijn.be/stops/106793", "https://data.delijn.be/stops/106798"], ["https://data.delijn.be/stops/302314", "https://data.delijn.be/stops/302396"], ["https://data.delijn.be/stops/207677", "https://data.delijn.be/stops/208134"], ["https://data.delijn.be/stops/302910", "https://data.delijn.be/stops/303084"], ["https://data.delijn.be/stops/505173", "https://data.delijn.be/stops/507346"], ["https://data.delijn.be/stops/201231", "https://data.delijn.be/stops/202134"], ["https://data.delijn.be/stops/400528", "https://data.delijn.be/stops/400529"], ["https://data.delijn.be/stops/106505", "https://data.delijn.be/stops/106507"], ["https://data.delijn.be/stops/200275", "https://data.delijn.be/stops/201030"], ["https://data.delijn.be/stops/307427", "https://data.delijn.be/stops/307429"], ["https://data.delijn.be/stops/510010", "https://data.delijn.be/stops/510012"], ["https://data.delijn.be/stops/302187", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/402859", "https://data.delijn.be/stops/406570"], ["https://data.delijn.be/stops/201428", "https://data.delijn.be/stops/201430"], ["https://data.delijn.be/stops/301969", "https://data.delijn.be/stops/301983"], ["https://data.delijn.be/stops/102963", "https://data.delijn.be/stops/105365"], ["https://data.delijn.be/stops/302730", "https://data.delijn.be/stops/302737"], ["https://data.delijn.be/stops/302790", "https://data.delijn.be/stops/302791"], ["https://data.delijn.be/stops/402863", "https://data.delijn.be/stops/408067"], ["https://data.delijn.be/stops/208239", "https://data.delijn.be/stops/209235"], ["https://data.delijn.be/stops/204655", "https://data.delijn.be/stops/204656"], ["https://data.delijn.be/stops/501663", "https://data.delijn.be/stops/501664"], ["https://data.delijn.be/stops/404194", "https://data.delijn.be/stops/405933"], ["https://data.delijn.be/stops/200173", "https://data.delijn.be/stops/200533"], ["https://data.delijn.be/stops/300872", "https://data.delijn.be/stops/302192"], ["https://data.delijn.be/stops/308768", "https://data.delijn.be/stops/308769"], ["https://data.delijn.be/stops/200163", "https://data.delijn.be/stops/202654"], ["https://data.delijn.be/stops/300847", "https://data.delijn.be/stops/301578"], ["https://data.delijn.be/stops/107345", "https://data.delijn.be/stops/108120"], ["https://data.delijn.be/stops/206746", "https://data.delijn.be/stops/207746"], ["https://data.delijn.be/stops/206583", "https://data.delijn.be/stops/207582"], ["https://data.delijn.be/stops/400409", "https://data.delijn.be/stops/401600"], ["https://data.delijn.be/stops/300571", "https://data.delijn.be/stops/300572"], ["https://data.delijn.be/stops/501429", "https://data.delijn.be/stops/506430"], ["https://data.delijn.be/stops/207671", "https://data.delijn.be/stops/208659"], ["https://data.delijn.be/stops/107300", "https://data.delijn.be/stops/108230"], ["https://data.delijn.be/stops/204497", "https://data.delijn.be/stops/205552"], ["https://data.delijn.be/stops/208743", "https://data.delijn.be/stops/208744"], ["https://data.delijn.be/stops/401492", "https://data.delijn.be/stops/401513"], ["https://data.delijn.be/stops/200442", "https://data.delijn.be/stops/203133"], ["https://data.delijn.be/stops/303049", "https://data.delijn.be/stops/306110"], ["https://data.delijn.be/stops/401818", "https://data.delijn.be/stops/406891"], ["https://data.delijn.be/stops/409102", "https://data.delijn.be/stops/409110"], ["https://data.delijn.be/stops/503823", "https://data.delijn.be/stops/508767"], ["https://data.delijn.be/stops/103474", "https://data.delijn.be/stops/103619"], ["https://data.delijn.be/stops/401728", "https://data.delijn.be/stops/401851"], ["https://data.delijn.be/stops/300373", "https://data.delijn.be/stops/306156"], ["https://data.delijn.be/stops/203751", "https://data.delijn.be/stops/203761"], ["https://data.delijn.be/stops/300203", "https://data.delijn.be/stops/300205"], ["https://data.delijn.be/stops/106711", "https://data.delijn.be/stops/106712"], ["https://data.delijn.be/stops/403871", "https://data.delijn.be/stops/403872"], ["https://data.delijn.be/stops/405410", "https://data.delijn.be/stops/410151"], ["https://data.delijn.be/stops/307433", "https://data.delijn.be/stops/308448"], ["https://data.delijn.be/stops/407858", "https://data.delijn.be/stops/408194"], ["https://data.delijn.be/stops/501686", "https://data.delijn.be/stops/505403"], ["https://data.delijn.be/stops/206330", "https://data.delijn.be/stops/206331"], ["https://data.delijn.be/stops/305047", "https://data.delijn.be/stops/306958"], ["https://data.delijn.be/stops/204716", "https://data.delijn.be/stops/205364"], ["https://data.delijn.be/stops/201378", "https://data.delijn.be/stops/201380"], ["https://data.delijn.be/stops/205380", "https://data.delijn.be/stops/205763"], ["https://data.delijn.be/stops/106821", "https://data.delijn.be/stops/106824"], ["https://data.delijn.be/stops/500951", "https://data.delijn.be/stops/504988"], ["https://data.delijn.be/stops/202349", "https://data.delijn.be/stops/203027"], ["https://data.delijn.be/stops/102661", "https://data.delijn.be/stops/108741"], ["https://data.delijn.be/stops/302959", "https://data.delijn.be/stops/303442"], ["https://data.delijn.be/stops/109176", "https://data.delijn.be/stops/109178"], ["https://data.delijn.be/stops/406430", "https://data.delijn.be/stops/409407"], ["https://data.delijn.be/stops/107020", "https://data.delijn.be/stops/108950"], ["https://data.delijn.be/stops/401518", "https://data.delijn.be/stops/401553"], ["https://data.delijn.be/stops/407091", "https://data.delijn.be/stops/407261"], ["https://data.delijn.be/stops/407786", "https://data.delijn.be/stops/407787"], ["https://data.delijn.be/stops/304308", "https://data.delijn.be/stops/307006"], ["https://data.delijn.be/stops/107251", "https://data.delijn.be/stops/107252"], ["https://data.delijn.be/stops/301858", "https://data.delijn.be/stops/301859"], ["https://data.delijn.be/stops/405289", "https://data.delijn.be/stops/406726"], ["https://data.delijn.be/stops/109771", "https://data.delijn.be/stops/109772"], ["https://data.delijn.be/stops/404067", "https://data.delijn.be/stops/405655"], ["https://data.delijn.be/stops/400036", "https://data.delijn.be/stops/400037"], ["https://data.delijn.be/stops/400314", "https://data.delijn.be/stops/400318"], ["https://data.delijn.be/stops/200702", "https://data.delijn.be/stops/203590"], ["https://data.delijn.be/stops/304408", "https://data.delijn.be/stops/308059"], ["https://data.delijn.be/stops/503192", "https://data.delijn.be/stops/508216"], ["https://data.delijn.be/stops/503108", "https://data.delijn.be/stops/504626"], ["https://data.delijn.be/stops/400064", "https://data.delijn.be/stops/400109"], ["https://data.delijn.be/stops/302695", "https://data.delijn.be/stops/302696"], ["https://data.delijn.be/stops/308788", "https://data.delijn.be/stops/308789"], ["https://data.delijn.be/stops/108288", "https://data.delijn.be/stops/108291"], ["https://data.delijn.be/stops/409464", "https://data.delijn.be/stops/409485"], ["https://data.delijn.be/stops/103139", "https://data.delijn.be/stops/106431"], ["https://data.delijn.be/stops/302051", "https://data.delijn.be/stops/302078"], ["https://data.delijn.be/stops/204210", "https://data.delijn.be/stops/204212"], ["https://data.delijn.be/stops/505599", "https://data.delijn.be/stops/507509"], ["https://data.delijn.be/stops/102265", "https://data.delijn.be/stops/102295"], ["https://data.delijn.be/stops/204540", "https://data.delijn.be/stops/205514"], ["https://data.delijn.be/stops/201413", "https://data.delijn.be/stops/202361"], ["https://data.delijn.be/stops/203329", "https://data.delijn.be/stops/210088"], ["https://data.delijn.be/stops/402443", "https://data.delijn.be/stops/402444"], ["https://data.delijn.be/stops/106912", "https://data.delijn.be/stops/107254"], ["https://data.delijn.be/stops/504212", "https://data.delijn.be/stops/504306"], ["https://data.delijn.be/stops/105563", "https://data.delijn.be/stops/106291"], ["https://data.delijn.be/stops/306668", "https://data.delijn.be/stops/306669"], ["https://data.delijn.be/stops/107601", "https://data.delijn.be/stops/107603"], ["https://data.delijn.be/stops/401765", "https://data.delijn.be/stops/401874"], ["https://data.delijn.be/stops/505407", "https://data.delijn.be/stops/505410"], ["https://data.delijn.be/stops/306046", "https://data.delijn.be/stops/306149"], ["https://data.delijn.be/stops/200217", "https://data.delijn.be/stops/201128"], ["https://data.delijn.be/stops/106398", "https://data.delijn.be/stops/106573"], ["https://data.delijn.be/stops/101390", "https://data.delijn.be/stops/101391"], ["https://data.delijn.be/stops/503753", "https://data.delijn.be/stops/503759"], ["https://data.delijn.be/stops/109179", "https://data.delijn.be/stops/109181"], ["https://data.delijn.be/stops/304829", "https://data.delijn.be/stops/304830"], ["https://data.delijn.be/stops/405242", "https://data.delijn.be/stops/405249"], ["https://data.delijn.be/stops/402880", "https://data.delijn.be/stops/306020"], ["https://data.delijn.be/stops/304850", "https://data.delijn.be/stops/308648"], ["https://data.delijn.be/stops/300391", "https://data.delijn.be/stops/301247"], ["https://data.delijn.be/stops/305191", "https://data.delijn.be/stops/305202"], ["https://data.delijn.be/stops/304892", "https://data.delijn.be/stops/304898"], ["https://data.delijn.be/stops/202017", "https://data.delijn.be/stops/211857"], ["https://data.delijn.be/stops/105770", "https://data.delijn.be/stops/105785"], ["https://data.delijn.be/stops/506474", "https://data.delijn.be/stops/509897"], ["https://data.delijn.be/stops/300106", "https://data.delijn.be/stops/300116"], ["https://data.delijn.be/stops/105173", "https://data.delijn.be/stops/109521"], ["https://data.delijn.be/stops/101471", "https://data.delijn.be/stops/108556"], ["https://data.delijn.be/stops/201918", "https://data.delijn.be/stops/207834"], ["https://data.delijn.be/stops/509549", "https://data.delijn.be/stops/509550"], ["https://data.delijn.be/stops/305064", "https://data.delijn.be/stops/305126"], ["https://data.delijn.be/stops/304456", "https://data.delijn.be/stops/307651"], ["https://data.delijn.be/stops/106227", "https://data.delijn.be/stops/109127"], ["https://data.delijn.be/stops/306938", "https://data.delijn.be/stops/306939"], ["https://data.delijn.be/stops/501144", "https://data.delijn.be/stops/502490"], ["https://data.delijn.be/stops/405336", "https://data.delijn.be/stops/405340"], ["https://data.delijn.be/stops/204183", "https://data.delijn.be/stops/204762"], ["https://data.delijn.be/stops/503511", "https://data.delijn.be/stops/508508"], ["https://data.delijn.be/stops/201141", "https://data.delijn.be/stops/201900"], ["https://data.delijn.be/stops/300411", "https://data.delijn.be/stops/307261"], ["https://data.delijn.be/stops/509644", "https://data.delijn.be/stops/509648"], ["https://data.delijn.be/stops/209608", "https://data.delijn.be/stops/209609"], ["https://data.delijn.be/stops/308249", "https://data.delijn.be/stops/308250"], ["https://data.delijn.be/stops/305457", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/200352", "https://data.delijn.be/stops/200355"], ["https://data.delijn.be/stops/504385", "https://data.delijn.be/stops/504634"], ["https://data.delijn.be/stops/101227", "https://data.delijn.be/stops/101551"], ["https://data.delijn.be/stops/503751", "https://data.delijn.be/stops/503752"], ["https://data.delijn.be/stops/106810", "https://data.delijn.be/stops/106812"], ["https://data.delijn.be/stops/101664", "https://data.delijn.be/stops/102732"], ["https://data.delijn.be/stops/508010", "https://data.delijn.be/stops/508544"], ["https://data.delijn.be/stops/501029", "https://data.delijn.be/stops/506128"], ["https://data.delijn.be/stops/408056", "https://data.delijn.be/stops/408087"], ["https://data.delijn.be/stops/403647", "https://data.delijn.be/stops/408084"], ["https://data.delijn.be/stops/206382", "https://data.delijn.be/stops/206383"], ["https://data.delijn.be/stops/300197", "https://data.delijn.be/stops/300208"], ["https://data.delijn.be/stops/206368", "https://data.delijn.be/stops/207367"], ["https://data.delijn.be/stops/200030", "https://data.delijn.be/stops/210113"], ["https://data.delijn.be/stops/402170", "https://data.delijn.be/stops/402237"], ["https://data.delijn.be/stops/101139", "https://data.delijn.be/stops/104860"], ["https://data.delijn.be/stops/109231", "https://data.delijn.be/stops/109232"], ["https://data.delijn.be/stops/400501", "https://data.delijn.be/stops/405559"], ["https://data.delijn.be/stops/401636", "https://data.delijn.be/stops/401637"], ["https://data.delijn.be/stops/302666", "https://data.delijn.be/stops/302700"], ["https://data.delijn.be/stops/204496", "https://data.delijn.be/stops/205509"], ["https://data.delijn.be/stops/305680", "https://data.delijn.be/stops/305701"], ["https://data.delijn.be/stops/206221", "https://data.delijn.be/stops/207221"], ["https://data.delijn.be/stops/304446", "https://data.delijn.be/stops/304450"], ["https://data.delijn.be/stops/307420", "https://data.delijn.be/stops/307423"], ["https://data.delijn.be/stops/300318", "https://data.delijn.be/stops/308108"], ["https://data.delijn.be/stops/104028", "https://data.delijn.be/stops/107309"], ["https://data.delijn.be/stops/402948", "https://data.delijn.be/stops/405558"], ["https://data.delijn.be/stops/304323", "https://data.delijn.be/stops/304324"], ["https://data.delijn.be/stops/108127", "https://data.delijn.be/stops/108322"], ["https://data.delijn.be/stops/301279", "https://data.delijn.be/stops/301339"], ["https://data.delijn.be/stops/302472", "https://data.delijn.be/stops/302473"], ["https://data.delijn.be/stops/102969", "https://data.delijn.be/stops/106038"], ["https://data.delijn.be/stops/107246", "https://data.delijn.be/stops/107248"], ["https://data.delijn.be/stops/102924", "https://data.delijn.be/stops/103988"], ["https://data.delijn.be/stops/209745", "https://data.delijn.be/stops/209746"], ["https://data.delijn.be/stops/400390", "https://data.delijn.be/stops/400391"], ["https://data.delijn.be/stops/207355", "https://data.delijn.be/stops/207722"], ["https://data.delijn.be/stops/308138", "https://data.delijn.be/stops/308140"], ["https://data.delijn.be/stops/200626", "https://data.delijn.be/stops/210093"], ["https://data.delijn.be/stops/402836", "https://data.delijn.be/stops/408970"], ["https://data.delijn.be/stops/301227", "https://data.delijn.be/stops/301228"], ["https://data.delijn.be/stops/206159", "https://data.delijn.be/stops/207159"], ["https://data.delijn.be/stops/507943", "https://data.delijn.be/stops/507951"], ["https://data.delijn.be/stops/502352", "https://data.delijn.be/stops/505014"], ["https://data.delijn.be/stops/500924", "https://data.delijn.be/stops/505634"], ["https://data.delijn.be/stops/108086", "https://data.delijn.be/stops/108448"], ["https://data.delijn.be/stops/507378", "https://data.delijn.be/stops/507408"], ["https://data.delijn.be/stops/504647", "https://data.delijn.be/stops/505916"], ["https://data.delijn.be/stops/401501", "https://data.delijn.be/stops/410291"], ["https://data.delijn.be/stops/107290", "https://data.delijn.be/stops/108900"], ["https://data.delijn.be/stops/501227", "https://data.delijn.be/stops/506226"], ["https://data.delijn.be/stops/503577", "https://data.delijn.be/stops/503583"], ["https://data.delijn.be/stops/106314", "https://data.delijn.be/stops/109136"], ["https://data.delijn.be/stops/104662", "https://data.delijn.be/stops/108471"], ["https://data.delijn.be/stops/407921", "https://data.delijn.be/stops/408174"], ["https://data.delijn.be/stops/108150", "https://data.delijn.be/stops/108152"], ["https://data.delijn.be/stops/505239", "https://data.delijn.be/stops/508968"], ["https://data.delijn.be/stops/408080", "https://data.delijn.be/stops/408081"], ["https://data.delijn.be/stops/109730", "https://data.delijn.be/stops/205635"], ["https://data.delijn.be/stops/501087", "https://data.delijn.be/stops/506100"], ["https://data.delijn.be/stops/202782", "https://data.delijn.be/stops/203781"], ["https://data.delijn.be/stops/402794", "https://data.delijn.be/stops/402796"], ["https://data.delijn.be/stops/202479", "https://data.delijn.be/stops/203480"], ["https://data.delijn.be/stops/300744", "https://data.delijn.be/stops/300798"], ["https://data.delijn.be/stops/400673", "https://data.delijn.be/stops/400676"], ["https://data.delijn.be/stops/204367", "https://data.delijn.be/stops/205181"], ["https://data.delijn.be/stops/108059", "https://data.delijn.be/stops/108358"], ["https://data.delijn.be/stops/103476", "https://data.delijn.be/stops/103479"], ["https://data.delijn.be/stops/305348", "https://data.delijn.be/stops/307972"], ["https://data.delijn.be/stops/505899", "https://data.delijn.be/stops/508050"], ["https://data.delijn.be/stops/107236", "https://data.delijn.be/stops/107239"], ["https://data.delijn.be/stops/302106", "https://data.delijn.be/stops/302107"], ["https://data.delijn.be/stops/107502", "https://data.delijn.be/stops/107503"], ["https://data.delijn.be/stops/102460", "https://data.delijn.be/stops/103364"], ["https://data.delijn.be/stops/403836", "https://data.delijn.be/stops/410113"], ["https://data.delijn.be/stops/504550", "https://data.delijn.be/stops/509435"], ["https://data.delijn.be/stops/400091", "https://data.delijn.be/stops/400151"], ["https://data.delijn.be/stops/105121", "https://data.delijn.be/stops/105124"], ["https://data.delijn.be/stops/200944", "https://data.delijn.be/stops/203726"], ["https://data.delijn.be/stops/504956", "https://data.delijn.be/stops/509962"], ["https://data.delijn.be/stops/300294", "https://data.delijn.be/stops/300298"], ["https://data.delijn.be/stops/101452", "https://data.delijn.be/stops/102613"], ["https://data.delijn.be/stops/206679", "https://data.delijn.be/stops/209105"], ["https://data.delijn.be/stops/503387", "https://data.delijn.be/stops/508365"], ["https://data.delijn.be/stops/409396", "https://data.delijn.be/stops/409397"], ["https://data.delijn.be/stops/509415", "https://data.delijn.be/stops/509440"], ["https://data.delijn.be/stops/208683", "https://data.delijn.be/stops/208725"], ["https://data.delijn.be/stops/202794", "https://data.delijn.be/stops/203795"], ["https://data.delijn.be/stops/206538", "https://data.delijn.be/stops/206539"], ["https://data.delijn.be/stops/204672", "https://data.delijn.be/stops/205258"], ["https://data.delijn.be/stops/204980", "https://data.delijn.be/stops/207388"], ["https://data.delijn.be/stops/303350", "https://data.delijn.be/stops/307032"], ["https://data.delijn.be/stops/502631", "https://data.delijn.be/stops/507449"], ["https://data.delijn.be/stops/204420", "https://data.delijn.be/stops/205418"], ["https://data.delijn.be/stops/106641", "https://data.delijn.be/stops/106644"], ["https://data.delijn.be/stops/303755", "https://data.delijn.be/stops/303769"], ["https://data.delijn.be/stops/303122", "https://data.delijn.be/stops/303123"], ["https://data.delijn.be/stops/504252", "https://data.delijn.be/stops/509370"], ["https://data.delijn.be/stops/302214", "https://data.delijn.be/stops/302215"], ["https://data.delijn.be/stops/109622", "https://data.delijn.be/stops/109700"], ["https://data.delijn.be/stops/200385", "https://data.delijn.be/stops/200386"], ["https://data.delijn.be/stops/403929", "https://data.delijn.be/stops/404081"], ["https://data.delijn.be/stops/302595", "https://data.delijn.be/stops/303611"], ["https://data.delijn.be/stops/403699", "https://data.delijn.be/stops/407295"], ["https://data.delijn.be/stops/403609", "https://data.delijn.be/stops/410037"], ["https://data.delijn.be/stops/305815", "https://data.delijn.be/stops/305816"], ["https://data.delijn.be/stops/406243", "https://data.delijn.be/stops/408417"], ["https://data.delijn.be/stops/305691", "https://data.delijn.be/stops/305693"], ["https://data.delijn.be/stops/408094", "https://data.delijn.be/stops/408156"], ["https://data.delijn.be/stops/109323", "https://data.delijn.be/stops/306861"], ["https://data.delijn.be/stops/104557", "https://data.delijn.be/stops/104559"], ["https://data.delijn.be/stops/206943", "https://data.delijn.be/stops/209615"], ["https://data.delijn.be/stops/500116", "https://data.delijn.be/stops/507271"], ["https://data.delijn.be/stops/504743", "https://data.delijn.be/stops/509743"], ["https://data.delijn.be/stops/305388", "https://data.delijn.be/stops/333233"], ["https://data.delijn.be/stops/401834", "https://data.delijn.be/stops/401835"], ["https://data.delijn.be/stops/407140", "https://data.delijn.be/stops/408472"], ["https://data.delijn.be/stops/101888", "https://data.delijn.be/stops/109998"], ["https://data.delijn.be/stops/404167", "https://data.delijn.be/stops/404196"], ["https://data.delijn.be/stops/101837", "https://data.delijn.be/stops/108232"], ["https://data.delijn.be/stops/402151", "https://data.delijn.be/stops/402154"], ["https://data.delijn.be/stops/302833", "https://data.delijn.be/stops/306777"], ["https://data.delijn.be/stops/107929", "https://data.delijn.be/stops/107931"], ["https://data.delijn.be/stops/407315", "https://data.delijn.be/stops/409499"], ["https://data.delijn.be/stops/403194", "https://data.delijn.be/stops/410271"], ["https://data.delijn.be/stops/408285", "https://data.delijn.be/stops/410345"], ["https://data.delijn.be/stops/103530", "https://data.delijn.be/stops/105150"], ["https://data.delijn.be/stops/303105", "https://data.delijn.be/stops/303106"], ["https://data.delijn.be/stops/503028", "https://data.delijn.be/stops/507959"], ["https://data.delijn.be/stops/107342", "https://data.delijn.be/stops/107343"], ["https://data.delijn.be/stops/408644", "https://data.delijn.be/stops/408661"], ["https://data.delijn.be/stops/502195", "https://data.delijn.be/stops/507196"], ["https://data.delijn.be/stops/305944", "https://data.delijn.be/stops/308422"], ["https://data.delijn.be/stops/301969", "https://data.delijn.be/stops/304537"], ["https://data.delijn.be/stops/101848", "https://data.delijn.be/stops/101849"], ["https://data.delijn.be/stops/307561", "https://data.delijn.be/stops/307652"], ["https://data.delijn.be/stops/408877", "https://data.delijn.be/stops/408878"], ["https://data.delijn.be/stops/202815", "https://data.delijn.be/stops/203815"], ["https://data.delijn.be/stops/208450", "https://data.delijn.be/stops/218015"], ["https://data.delijn.be/stops/405702", "https://data.delijn.be/stops/405717"], ["https://data.delijn.be/stops/506044", "https://data.delijn.be/stops/506488"], ["https://data.delijn.be/stops/502407", "https://data.delijn.be/stops/507406"], ["https://data.delijn.be/stops/406131", "https://data.delijn.be/stops/406132"], ["https://data.delijn.be/stops/101387", "https://data.delijn.be/stops/101392"], ["https://data.delijn.be/stops/303118", "https://data.delijn.be/stops/304576"], ["https://data.delijn.be/stops/305465", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/505368", "https://data.delijn.be/stops/509056"], ["https://data.delijn.be/stops/403103", "https://data.delijn.be/stops/403121"], ["https://data.delijn.be/stops/102967", "https://data.delijn.be/stops/106238"], ["https://data.delijn.be/stops/504868", "https://data.delijn.be/stops/509209"], ["https://data.delijn.be/stops/301794", "https://data.delijn.be/stops/301802"], ["https://data.delijn.be/stops/200251", "https://data.delijn.be/stops/201576"], ["https://data.delijn.be/stops/503450", "https://data.delijn.be/stops/507717"], ["https://data.delijn.be/stops/204992", "https://data.delijn.be/stops/209117"], ["https://data.delijn.be/stops/503306", "https://data.delijn.be/stops/508968"], ["https://data.delijn.be/stops/201219", "https://data.delijn.be/stops/201307"], ["https://data.delijn.be/stops/302234", "https://data.delijn.be/stops/302235"], ["https://data.delijn.be/stops/508495", "https://data.delijn.be/stops/508496"], ["https://data.delijn.be/stops/407933", "https://data.delijn.be/stops/407935"], ["https://data.delijn.be/stops/304957", "https://data.delijn.be/stops/304971"], ["https://data.delijn.be/stops/503047", "https://data.delijn.be/stops/505297"], ["https://data.delijn.be/stops/504229", "https://data.delijn.be/stops/505285"], ["https://data.delijn.be/stops/405667", "https://data.delijn.be/stops/409394"], ["https://data.delijn.be/stops/403365", "https://data.delijn.be/stops/403520"], ["https://data.delijn.be/stops/303348", "https://data.delijn.be/stops/303389"], ["https://data.delijn.be/stops/504562", "https://data.delijn.be/stops/505362"], ["https://data.delijn.be/stops/202672", "https://data.delijn.be/stops/202673"], ["https://data.delijn.be/stops/103341", "https://data.delijn.be/stops/103343"], ["https://data.delijn.be/stops/200083", "https://data.delijn.be/stops/201393"], ["https://data.delijn.be/stops/101414", "https://data.delijn.be/stops/103073"], ["https://data.delijn.be/stops/204586", "https://data.delijn.be/stops/204587"], ["https://data.delijn.be/stops/200905", "https://data.delijn.be/stops/200906"], ["https://data.delijn.be/stops/405126", "https://data.delijn.be/stops/405127"], ["https://data.delijn.be/stops/407938", "https://data.delijn.be/stops/410344"], ["https://data.delijn.be/stops/300137", "https://data.delijn.be/stops/306822"], ["https://data.delijn.be/stops/509406", "https://data.delijn.be/stops/509433"], ["https://data.delijn.be/stops/503208", "https://data.delijn.be/stops/508208"], ["https://data.delijn.be/stops/203616", "https://data.delijn.be/stops/203617"], ["https://data.delijn.be/stops/307226", "https://data.delijn.be/stops/307227"], ["https://data.delijn.be/stops/207012", "https://data.delijn.be/stops/217008"], ["https://data.delijn.be/stops/400917", "https://data.delijn.be/stops/400970"], ["https://data.delijn.be/stops/403349", "https://data.delijn.be/stops/410276"], ["https://data.delijn.be/stops/203343", "https://data.delijn.be/stops/203440"], ["https://data.delijn.be/stops/103221", "https://data.delijn.be/stops/104573"], ["https://data.delijn.be/stops/208006", "https://data.delijn.be/stops/208079"], ["https://data.delijn.be/stops/301829", "https://data.delijn.be/stops/301852"], ["https://data.delijn.be/stops/104691", "https://data.delijn.be/stops/107362"], ["https://data.delijn.be/stops/508144", "https://data.delijn.be/stops/509622"], ["https://data.delijn.be/stops/104638", "https://data.delijn.be/stops/104672"], ["https://data.delijn.be/stops/104652", "https://data.delijn.be/stops/308479"], ["https://data.delijn.be/stops/102198", "https://data.delijn.be/stops/105257"], ["https://data.delijn.be/stops/409509", "https://data.delijn.be/stops/409516"], ["https://data.delijn.be/stops/304156", "https://data.delijn.be/stops/304157"], ["https://data.delijn.be/stops/503167", "https://data.delijn.be/stops/503168"], ["https://data.delijn.be/stops/505551", "https://data.delijn.be/stops/505922"], ["https://data.delijn.be/stops/402975", "https://data.delijn.be/stops/403317"], ["https://data.delijn.be/stops/400265", "https://data.delijn.be/stops/406813"], ["https://data.delijn.be/stops/503520", "https://data.delijn.be/stops/508520"], ["https://data.delijn.be/stops/106845", "https://data.delijn.be/stops/106846"], ["https://data.delijn.be/stops/302737", "https://data.delijn.be/stops/302786"], ["https://data.delijn.be/stops/306831", "https://data.delijn.be/stops/306832"], ["https://data.delijn.be/stops/303745", "https://data.delijn.be/stops/303788"], ["https://data.delijn.be/stops/106490", "https://data.delijn.be/stops/106491"], ["https://data.delijn.be/stops/202830", "https://data.delijn.be/stops/218023"], ["https://data.delijn.be/stops/102312", "https://data.delijn.be/stops/106255"], ["https://data.delijn.be/stops/200249", "https://data.delijn.be/stops/211051"], ["https://data.delijn.be/stops/105795", "https://data.delijn.be/stops/105796"], ["https://data.delijn.be/stops/301678", "https://data.delijn.be/stops/301685"], ["https://data.delijn.be/stops/101677", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/404939", "https://data.delijn.be/stops/404952"], ["https://data.delijn.be/stops/507393", "https://data.delijn.be/stops/507401"], ["https://data.delijn.be/stops/305690", "https://data.delijn.be/stops/305702"], ["https://data.delijn.be/stops/306185", "https://data.delijn.be/stops/306187"], ["https://data.delijn.be/stops/107591", "https://data.delijn.be/stops/107593"], ["https://data.delijn.be/stops/108336", "https://data.delijn.be/stops/108338"], ["https://data.delijn.be/stops/208842", "https://data.delijn.be/stops/208844"], ["https://data.delijn.be/stops/301926", "https://data.delijn.be/stops/307827"], ["https://data.delijn.be/stops/202310", "https://data.delijn.be/stops/203310"], ["https://data.delijn.be/stops/300500", "https://data.delijn.be/stops/308593"], ["https://data.delijn.be/stops/209445", "https://data.delijn.be/stops/209453"], ["https://data.delijn.be/stops/107488", "https://data.delijn.be/stops/107491"], ["https://data.delijn.be/stops/501012", "https://data.delijn.be/stops/501716"], ["https://data.delijn.be/stops/103303", "https://data.delijn.be/stops/104636"], ["https://data.delijn.be/stops/202520", "https://data.delijn.be/stops/203526"], ["https://data.delijn.be/stops/502361", "https://data.delijn.be/stops/505700"], ["https://data.delijn.be/stops/205426", "https://data.delijn.be/stops/205427"], ["https://data.delijn.be/stops/300114", "https://data.delijn.be/stops/306844"], ["https://data.delijn.be/stops/400854", "https://data.delijn.be/stops/409657"], ["https://data.delijn.be/stops/206551", "https://data.delijn.be/stops/207551"], ["https://data.delijn.be/stops/504716", "https://data.delijn.be/stops/509747"], ["https://data.delijn.be/stops/201624", "https://data.delijn.be/stops/203934"], ["https://data.delijn.be/stops/105023", "https://data.delijn.be/stops/107408"], ["https://data.delijn.be/stops/200554", "https://data.delijn.be/stops/201666"], ["https://data.delijn.be/stops/408564", "https://data.delijn.be/stops/408617"], ["https://data.delijn.be/stops/305280", "https://data.delijn.be/stops/305324"], ["https://data.delijn.be/stops/303057", "https://data.delijn.be/stops/304928"], ["https://data.delijn.be/stops/407772", "https://data.delijn.be/stops/408846"], ["https://data.delijn.be/stops/204520", "https://data.delijn.be/stops/205703"], ["https://data.delijn.be/stops/108710", "https://data.delijn.be/stops/108856"], ["https://data.delijn.be/stops/208623", "https://data.delijn.be/stops/209623"], ["https://data.delijn.be/stops/108188", "https://data.delijn.be/stops/108354"], ["https://data.delijn.be/stops/106491", "https://data.delijn.be/stops/108727"], ["https://data.delijn.be/stops/200068", "https://data.delijn.be/stops/201186"], ["https://data.delijn.be/stops/503670", "https://data.delijn.be/stops/508670"], ["https://data.delijn.be/stops/402339", "https://data.delijn.be/stops/410076"], ["https://data.delijn.be/stops/506231", "https://data.delijn.be/stops/506248"], ["https://data.delijn.be/stops/500137", "https://data.delijn.be/stops/500230"], ["https://data.delijn.be/stops/208222", "https://data.delijn.be/stops/209219"], ["https://data.delijn.be/stops/104866", "https://data.delijn.be/stops/107856"], ["https://data.delijn.be/stops/207440", "https://data.delijn.be/stops/208465"], ["https://data.delijn.be/stops/109205", "https://data.delijn.be/stops/109206"], ["https://data.delijn.be/stops/303677", "https://data.delijn.be/stops/303853"], ["https://data.delijn.be/stops/102734", "https://data.delijn.be/stops/109796"], ["https://data.delijn.be/stops/404999", "https://data.delijn.be/stops/407871"], ["https://data.delijn.be/stops/502635", "https://data.delijn.be/stops/507217"], ["https://data.delijn.be/stops/109633", "https://data.delijn.be/stops/109634"], ["https://data.delijn.be/stops/590006", "https://data.delijn.be/stops/590007"], ["https://data.delijn.be/stops/300499", "https://data.delijn.be/stops/300530"], ["https://data.delijn.be/stops/506212", "https://data.delijn.be/stops/506215"], ["https://data.delijn.be/stops/101905", "https://data.delijn.be/stops/102895"], ["https://data.delijn.be/stops/208760", "https://data.delijn.be/stops/208761"], ["https://data.delijn.be/stops/407239", "https://data.delijn.be/stops/407508"], ["https://data.delijn.be/stops/305248", "https://data.delijn.be/stops/305259"], ["https://data.delijn.be/stops/204677", "https://data.delijn.be/stops/204678"], ["https://data.delijn.be/stops/302341", "https://data.delijn.be/stops/302349"], ["https://data.delijn.be/stops/201799", "https://data.delijn.be/stops/202125"], ["https://data.delijn.be/stops/101805", "https://data.delijn.be/stops/101806"], ["https://data.delijn.be/stops/303282", "https://data.delijn.be/stops/303283"], ["https://data.delijn.be/stops/301246", "https://data.delijn.be/stops/308671"], ["https://data.delijn.be/stops/401661", "https://data.delijn.be/stops/406808"], ["https://data.delijn.be/stops/103737", "https://data.delijn.be/stops/108642"], ["https://data.delijn.be/stops/201394", "https://data.delijn.be/stops/205804"], ["https://data.delijn.be/stops/206443", "https://data.delijn.be/stops/207443"], ["https://data.delijn.be/stops/104599", "https://data.delijn.be/stops/106825"], ["https://data.delijn.be/stops/207857", "https://data.delijn.be/stops/209617"], ["https://data.delijn.be/stops/402519", "https://data.delijn.be/stops/402589"], ["https://data.delijn.be/stops/203809", "https://data.delijn.be/stops/208649"], ["https://data.delijn.be/stops/304100", "https://data.delijn.be/stops/304912"], ["https://data.delijn.be/stops/505125", "https://data.delijn.be/stops/505944"], ["https://data.delijn.be/stops/308495", "https://data.delijn.be/stops/308498"], ["https://data.delijn.be/stops/400304", "https://data.delijn.be/stops/400954"], ["https://data.delijn.be/stops/206731", "https://data.delijn.be/stops/207978"], ["https://data.delijn.be/stops/301349", "https://data.delijn.be/stops/301368"], ["https://data.delijn.be/stops/104368", "https://data.delijn.be/stops/104369"], ["https://data.delijn.be/stops/406379", "https://data.delijn.be/stops/407779"], ["https://data.delijn.be/stops/109276", "https://data.delijn.be/stops/109277"], ["https://data.delijn.be/stops/503260", "https://data.delijn.be/stops/508230"], ["https://data.delijn.be/stops/302320", "https://data.delijn.be/stops/303517"], ["https://data.delijn.be/stops/306644", "https://data.delijn.be/stops/308767"], ["https://data.delijn.be/stops/200231", "https://data.delijn.be/stops/211058"], ["https://data.delijn.be/stops/402778", "https://data.delijn.be/stops/406717"], ["https://data.delijn.be/stops/202972", "https://data.delijn.be/stops/203165"], ["https://data.delijn.be/stops/504748", "https://data.delijn.be/stops/509704"], ["https://data.delijn.be/stops/302871", "https://data.delijn.be/stops/307636"], ["https://data.delijn.be/stops/401956", "https://data.delijn.be/stops/401957"], ["https://data.delijn.be/stops/305283", "https://data.delijn.be/stops/305331"], ["https://data.delijn.be/stops/507263", "https://data.delijn.be/stops/507266"], ["https://data.delijn.be/stops/307612", "https://data.delijn.be/stops/307613"], ["https://data.delijn.be/stops/404932", "https://data.delijn.be/stops/404933"], ["https://data.delijn.be/stops/502422", "https://data.delijn.be/stops/507439"], ["https://data.delijn.be/stops/202946", "https://data.delijn.be/stops/203946"], ["https://data.delijn.be/stops/401295", "https://data.delijn.be/stops/401324"], ["https://data.delijn.be/stops/204327", "https://data.delijn.be/stops/205294"], ["https://data.delijn.be/stops/200096", "https://data.delijn.be/stops/201096"], ["https://data.delijn.be/stops/102445", "https://data.delijn.be/stops/108830"], ["https://data.delijn.be/stops/104512", "https://data.delijn.be/stops/207706"], ["https://data.delijn.be/stops/201948", "https://data.delijn.be/stops/202468"], ["https://data.delijn.be/stops/410322", "https://data.delijn.be/stops/410323"], ["https://data.delijn.be/stops/204663", "https://data.delijn.be/stops/205687"], ["https://data.delijn.be/stops/202555", "https://data.delijn.be/stops/203557"], ["https://data.delijn.be/stops/304668", "https://data.delijn.be/stops/304670"], ["https://data.delijn.be/stops/500027", "https://data.delijn.be/stops/507369"], ["https://data.delijn.be/stops/407703", "https://data.delijn.be/stops/409772"], ["https://data.delijn.be/stops/503790", "https://data.delijn.be/stops/504992"], ["https://data.delijn.be/stops/401827", "https://data.delijn.be/stops/406015"], ["https://data.delijn.be/stops/405760", "https://data.delijn.be/stops/303325"], ["https://data.delijn.be/stops/106129", "https://data.delijn.be/stops/106131"], ["https://data.delijn.be/stops/500949", "https://data.delijn.be/stops/505174"], ["https://data.delijn.be/stops/303015", "https://data.delijn.be/stops/306280"], ["https://data.delijn.be/stops/300824", "https://data.delijn.be/stops/300986"], ["https://data.delijn.be/stops/206028", "https://data.delijn.be/stops/207877"], ["https://data.delijn.be/stops/200346", "https://data.delijn.be/stops/201345"], ["https://data.delijn.be/stops/402349", "https://data.delijn.be/stops/402469"], ["https://data.delijn.be/stops/200624", "https://data.delijn.be/stops/201624"], ["https://data.delijn.be/stops/206034", "https://data.delijn.be/stops/207215"], ["https://data.delijn.be/stops/302530", "https://data.delijn.be/stops/308935"], ["https://data.delijn.be/stops/200775", "https://data.delijn.be/stops/208753"], ["https://data.delijn.be/stops/502253", "https://data.delijn.be/stops/507253"], ["https://data.delijn.be/stops/207428", "https://data.delijn.be/stops/209538"], ["https://data.delijn.be/stops/205174", "https://data.delijn.be/stops/207320"], ["https://data.delijn.be/stops/409060", "https://data.delijn.be/stops/409210"], ["https://data.delijn.be/stops/300280", "https://data.delijn.be/stops/307496"], ["https://data.delijn.be/stops/508141", "https://data.delijn.be/stops/508834"], ["https://data.delijn.be/stops/205296", "https://data.delijn.be/stops/205761"], ["https://data.delijn.be/stops/404722", "https://data.delijn.be/stops/404743"], ["https://data.delijn.be/stops/102411", "https://data.delijn.be/stops/103257"], ["https://data.delijn.be/stops/408677", "https://data.delijn.be/stops/408681"], ["https://data.delijn.be/stops/200564", "https://data.delijn.be/stops/201564"], ["https://data.delijn.be/stops/200729", "https://data.delijn.be/stops/203590"], ["https://data.delijn.be/stops/307160", "https://data.delijn.be/stops/307776"], ["https://data.delijn.be/stops/503269", "https://data.delijn.be/stops/508275"], ["https://data.delijn.be/stops/107200", "https://data.delijn.be/stops/107605"], ["https://data.delijn.be/stops/301718", "https://data.delijn.be/stops/303467"], ["https://data.delijn.be/stops/303546", "https://data.delijn.be/stops/303554"], ["https://data.delijn.be/stops/307433", "https://data.delijn.be/stops/308508"], ["https://data.delijn.be/stops/503866", "https://data.delijn.be/stops/508866"], ["https://data.delijn.be/stops/408655", "https://data.delijn.be/stops/408691"], ["https://data.delijn.be/stops/302468", "https://data.delijn.be/stops/307037"], ["https://data.delijn.be/stops/204542", "https://data.delijn.be/stops/205542"], ["https://data.delijn.be/stops/508609", "https://data.delijn.be/stops/508610"], ["https://data.delijn.be/stops/409712", "https://data.delijn.be/stops/409713"], ["https://data.delijn.be/stops/307214", "https://data.delijn.be/stops/307215"], ["https://data.delijn.be/stops/404843", "https://data.delijn.be/stops/409744"], ["https://data.delijn.be/stops/107732", "https://data.delijn.be/stops/107733"], ["https://data.delijn.be/stops/206892", "https://data.delijn.be/stops/206893"], ["https://data.delijn.be/stops/501064", "https://data.delijn.be/stops/501133"], ["https://data.delijn.be/stops/206503", "https://data.delijn.be/stops/207151"], ["https://data.delijn.be/stops/303965", "https://data.delijn.be/stops/303966"], ["https://data.delijn.be/stops/304838", "https://data.delijn.be/stops/307830"], ["https://data.delijn.be/stops/409413", "https://data.delijn.be/stops/409414"], ["https://data.delijn.be/stops/108877", "https://data.delijn.be/stops/108878"], ["https://data.delijn.be/stops/508417", "https://data.delijn.be/stops/508986"], ["https://data.delijn.be/stops/304479", "https://data.delijn.be/stops/307466"], ["https://data.delijn.be/stops/503602", "https://data.delijn.be/stops/508546"], ["https://data.delijn.be/stops/503924", "https://data.delijn.be/stops/503930"], ["https://data.delijn.be/stops/106041", "https://data.delijn.be/stops/106043"], ["https://data.delijn.be/stops/503340", "https://data.delijn.be/stops/504864"], ["https://data.delijn.be/stops/204507", "https://data.delijn.be/stops/205507"], ["https://data.delijn.be/stops/405486", "https://data.delijn.be/stops/409275"], ["https://data.delijn.be/stops/502188", "https://data.delijn.be/stops/505575"], ["https://data.delijn.be/stops/205987", "https://data.delijn.be/stops/209222"], ["https://data.delijn.be/stops/408563", "https://data.delijn.be/stops/408690"], ["https://data.delijn.be/stops/301337", "https://data.delijn.be/stops/304858"], ["https://data.delijn.be/stops/305551", "https://data.delijn.be/stops/305552"], ["https://data.delijn.be/stops/109989", "https://data.delijn.be/stops/109990"], ["https://data.delijn.be/stops/401755", "https://data.delijn.be/stops/401768"], ["https://data.delijn.be/stops/404240", "https://data.delijn.be/stops/404241"], ["https://data.delijn.be/stops/206379", "https://data.delijn.be/stops/207356"], ["https://data.delijn.be/stops/204046", "https://data.delijn.be/stops/205516"], ["https://data.delijn.be/stops/108679", "https://data.delijn.be/stops/306629"], ["https://data.delijn.be/stops/501430", "https://data.delijn.be/stops/506487"], ["https://data.delijn.be/stops/409309", "https://data.delijn.be/stops/410067"], ["https://data.delijn.be/stops/504065", "https://data.delijn.be/stops/509065"], ["https://data.delijn.be/stops/503451", "https://data.delijn.be/stops/503470"], ["https://data.delijn.be/stops/504642", "https://data.delijn.be/stops/509657"], ["https://data.delijn.be/stops/201664", "https://data.delijn.be/stops/202790"], ["https://data.delijn.be/stops/504200", "https://data.delijn.be/stops/505121"], ["https://data.delijn.be/stops/108009", "https://data.delijn.be/stops/300026"], ["https://data.delijn.be/stops/504783", "https://data.delijn.be/stops/508514"], ["https://data.delijn.be/stops/206622", "https://data.delijn.be/stops/207869"], ["https://data.delijn.be/stops/106823", "https://data.delijn.be/stops/106824"], ["https://data.delijn.be/stops/501309", "https://data.delijn.be/stops/501331"], ["https://data.delijn.be/stops/501182", "https://data.delijn.be/stops/506676"], ["https://data.delijn.be/stops/403490", "https://data.delijn.be/stops/403517"], ["https://data.delijn.be/stops/301842", "https://data.delijn.be/stops/301843"], ["https://data.delijn.be/stops/505918", "https://data.delijn.be/stops/509235"], ["https://data.delijn.be/stops/208429", "https://data.delijn.be/stops/209428"], ["https://data.delijn.be/stops/205722", "https://data.delijn.be/stops/205723"], ["https://data.delijn.be/stops/104893", "https://data.delijn.be/stops/105312"], ["https://data.delijn.be/stops/409754", "https://data.delijn.be/stops/409999"], ["https://data.delijn.be/stops/206481", "https://data.delijn.be/stops/207452"], ["https://data.delijn.be/stops/404100", "https://data.delijn.be/stops/404108"], ["https://data.delijn.be/stops/205432", "https://data.delijn.be/stops/205433"], ["https://data.delijn.be/stops/204323", "https://data.delijn.be/stops/205323"], ["https://data.delijn.be/stops/106895", "https://data.delijn.be/stops/107216"], ["https://data.delijn.be/stops/203025", "https://data.delijn.be/stops/210039"], ["https://data.delijn.be/stops/401533", "https://data.delijn.be/stops/406001"], ["https://data.delijn.be/stops/206499", "https://data.delijn.be/stops/207499"], ["https://data.delijn.be/stops/200735", "https://data.delijn.be/stops/203570"], ["https://data.delijn.be/stops/301242", "https://data.delijn.be/stops/305951"], ["https://data.delijn.be/stops/207770", "https://data.delijn.be/stops/209405"], ["https://data.delijn.be/stops/208109", "https://data.delijn.be/stops/209342"], ["https://data.delijn.be/stops/208367", "https://data.delijn.be/stops/209366"], ["https://data.delijn.be/stops/409559", "https://data.delijn.be/stops/409560"], ["https://data.delijn.be/stops/400357", "https://data.delijn.be/stops/400396"], ["https://data.delijn.be/stops/405894", "https://data.delijn.be/stops/308203"], ["https://data.delijn.be/stops/401870", "https://data.delijn.be/stops/406127"], ["https://data.delijn.be/stops/407691", "https://data.delijn.be/stops/409879"], ["https://data.delijn.be/stops/204630", "https://data.delijn.be/stops/205630"], ["https://data.delijn.be/stops/200668", "https://data.delijn.be/stops/201564"], ["https://data.delijn.be/stops/401449", "https://data.delijn.be/stops/401470"], ["https://data.delijn.be/stops/508195", "https://data.delijn.be/stops/508547"], ["https://data.delijn.be/stops/109211", "https://data.delijn.be/stops/109212"], ["https://data.delijn.be/stops/405184", "https://data.delijn.be/stops/410165"], ["https://data.delijn.be/stops/303422", "https://data.delijn.be/stops/306946"], ["https://data.delijn.be/stops/405936", "https://data.delijn.be/stops/405942"], ["https://data.delijn.be/stops/300280", "https://data.delijn.be/stops/300299"], ["https://data.delijn.be/stops/103270", "https://data.delijn.be/stops/107035"], ["https://data.delijn.be/stops/201165", "https://data.delijn.be/stops/202170"], ["https://data.delijn.be/stops/402461", "https://data.delijn.be/stops/402462"], ["https://data.delijn.be/stops/501337", "https://data.delijn.be/stops/501517"], ["https://data.delijn.be/stops/101574", "https://data.delijn.be/stops/105467"], ["https://data.delijn.be/stops/207179", "https://data.delijn.be/stops/308574"], ["https://data.delijn.be/stops/200108", "https://data.delijn.be/stops/202645"], ["https://data.delijn.be/stops/105737", "https://data.delijn.be/stops/109857"], ["https://data.delijn.be/stops/400115", "https://data.delijn.be/stops/400947"], ["https://data.delijn.be/stops/404431", "https://data.delijn.be/stops/404550"], ["https://data.delijn.be/stops/200430", "https://data.delijn.be/stops/201430"], ["https://data.delijn.be/stops/303555", "https://data.delijn.be/stops/308792"], ["https://data.delijn.be/stops/200720", "https://data.delijn.be/stops/203621"], ["https://data.delijn.be/stops/105514", "https://data.delijn.be/stops/108728"], ["https://data.delijn.be/stops/202148", "https://data.delijn.be/stops/202242"], ["https://data.delijn.be/stops/405559", "https://data.delijn.be/stops/405568"], ["https://data.delijn.be/stops/108635", "https://data.delijn.be/stops/109774"], ["https://data.delijn.be/stops/200426", "https://data.delijn.be/stops/200428"], ["https://data.delijn.be/stops/404864", "https://data.delijn.be/stops/408796"], ["https://data.delijn.be/stops/105001", "https://data.delijn.be/stops/105169"], ["https://data.delijn.be/stops/303828", "https://data.delijn.be/stops/308709"], ["https://data.delijn.be/stops/204341", "https://data.delijn.be/stops/205596"], ["https://data.delijn.be/stops/206375", "https://data.delijn.be/stops/207350"], ["https://data.delijn.be/stops/206073", "https://data.delijn.be/stops/207010"], ["https://data.delijn.be/stops/201450", "https://data.delijn.be/stops/201525"], ["https://data.delijn.be/stops/216012", "https://data.delijn.be/stops/217012"], ["https://data.delijn.be/stops/400223", "https://data.delijn.be/stops/409514"], ["https://data.delijn.be/stops/301716", "https://data.delijn.be/stops/308427"], ["https://data.delijn.be/stops/300740", "https://data.delijn.be/stops/303223"], ["https://data.delijn.be/stops/400932", "https://data.delijn.be/stops/406954"], ["https://data.delijn.be/stops/103616", "https://data.delijn.be/stops/106194"], ["https://data.delijn.be/stops/300246", "https://data.delijn.be/stops/303893"], ["https://data.delijn.be/stops/400834", "https://data.delijn.be/stops/400835"], ["https://data.delijn.be/stops/504180", "https://data.delijn.be/stops/504182"], ["https://data.delijn.be/stops/102497", "https://data.delijn.be/stops/400028"], ["https://data.delijn.be/stops/201936", "https://data.delijn.be/stops/206407"], ["https://data.delijn.be/stops/200306", "https://data.delijn.be/stops/201305"], ["https://data.delijn.be/stops/300057", "https://data.delijn.be/stops/306811"], ["https://data.delijn.be/stops/502551", "https://data.delijn.be/stops/505019"], ["https://data.delijn.be/stops/509785", "https://data.delijn.be/stops/509786"], ["https://data.delijn.be/stops/305058", "https://data.delijn.be/stops/305059"], ["https://data.delijn.be/stops/403602", "https://data.delijn.be/stops/403612"], ["https://data.delijn.be/stops/305265", "https://data.delijn.be/stops/305328"], ["https://data.delijn.be/stops/207022", "https://data.delijn.be/stops/207024"], ["https://data.delijn.be/stops/505754", "https://data.delijn.be/stops/507236"], ["https://data.delijn.be/stops/503334", "https://data.delijn.be/stops/508339"], ["https://data.delijn.be/stops/102296", "https://data.delijn.be/stops/102297"], ["https://data.delijn.be/stops/202766", "https://data.delijn.be/stops/202767"], ["https://data.delijn.be/stops/400485", "https://data.delijn.be/stops/407210"], ["https://data.delijn.be/stops/303552", "https://data.delijn.be/stops/303553"], ["https://data.delijn.be/stops/104597", "https://data.delijn.be/stops/105161"], ["https://data.delijn.be/stops/503099", "https://data.delijn.be/stops/508675"], ["https://data.delijn.be/stops/401345", "https://data.delijn.be/stops/404773"], ["https://data.delijn.be/stops/203740", "https://data.delijn.be/stops/206432"], ["https://data.delijn.be/stops/503292", "https://data.delijn.be/stops/505284"], ["https://data.delijn.be/stops/109625", "https://data.delijn.be/stops/109626"], ["https://data.delijn.be/stops/400256", "https://data.delijn.be/stops/400287"], ["https://data.delijn.be/stops/508091", "https://data.delijn.be/stops/508973"], ["https://data.delijn.be/stops/502758", "https://data.delijn.be/stops/502763"], ["https://data.delijn.be/stops/200745", "https://data.delijn.be/stops/201745"], ["https://data.delijn.be/stops/102419", "https://data.delijn.be/stops/106215"], ["https://data.delijn.be/stops/302174", "https://data.delijn.be/stops/308099"], ["https://data.delijn.be/stops/300854", "https://data.delijn.be/stops/305448"], ["https://data.delijn.be/stops/105440", "https://data.delijn.be/stops/105730"], ["https://data.delijn.be/stops/300759", "https://data.delijn.be/stops/301012"], ["https://data.delijn.be/stops/504719", "https://data.delijn.be/stops/504793"], ["https://data.delijn.be/stops/102577", "https://data.delijn.be/stops/109739"], ["https://data.delijn.be/stops/408267", "https://data.delijn.be/stops/408406"], ["https://data.delijn.be/stops/204266", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/103970", "https://data.delijn.be/stops/103980"], ["https://data.delijn.be/stops/203164", "https://data.delijn.be/stops/205070"], ["https://data.delijn.be/stops/408504", "https://data.delijn.be/stops/408525"], ["https://data.delijn.be/stops/407650", "https://data.delijn.be/stops/410247"], ["https://data.delijn.be/stops/301118", "https://data.delijn.be/stops/302225"], ["https://data.delijn.be/stops/109075", "https://data.delijn.be/stops/109078"], ["https://data.delijn.be/stops/105404", "https://data.delijn.be/stops/107320"], ["https://data.delijn.be/stops/208544", "https://data.delijn.be/stops/208545"], ["https://data.delijn.be/stops/507944", "https://data.delijn.be/stops/507955"], ["https://data.delijn.be/stops/304729", "https://data.delijn.be/stops/304747"], ["https://data.delijn.be/stops/104493", "https://data.delijn.be/stops/104494"], ["https://data.delijn.be/stops/305177", "https://data.delijn.be/stops/305178"], ["https://data.delijn.be/stops/304445", "https://data.delijn.be/stops/304457"], ["https://data.delijn.be/stops/103988", "https://data.delijn.be/stops/104839"], ["https://data.delijn.be/stops/300177", "https://data.delijn.be/stops/300189"], ["https://data.delijn.be/stops/406556", "https://data.delijn.be/stops/406562"], ["https://data.delijn.be/stops/206715", "https://data.delijn.be/stops/207131"], ["https://data.delijn.be/stops/402179", "https://data.delijn.be/stops/402483"], ["https://data.delijn.be/stops/202078", "https://data.delijn.be/stops/203341"], ["https://data.delijn.be/stops/208526", "https://data.delijn.be/stops/209526"], ["https://data.delijn.be/stops/301253", "https://data.delijn.be/stops/308558"], ["https://data.delijn.be/stops/304988", "https://data.delijn.be/stops/304989"], ["https://data.delijn.be/stops/503146", "https://data.delijn.be/stops/508144"], ["https://data.delijn.be/stops/404988", "https://data.delijn.be/stops/406812"], ["https://data.delijn.be/stops/101645", "https://data.delijn.be/stops/103757"], ["https://data.delijn.be/stops/105214", "https://data.delijn.be/stops/105544"], ["https://data.delijn.be/stops/208304", "https://data.delijn.be/stops/208305"], ["https://data.delijn.be/stops/301679", "https://data.delijn.be/stops/301683"], ["https://data.delijn.be/stops/208774", "https://data.delijn.be/stops/208834"], ["https://data.delijn.be/stops/406296", "https://data.delijn.be/stops/406297"], ["https://data.delijn.be/stops/206436", "https://data.delijn.be/stops/207435"], ["https://data.delijn.be/stops/201601", "https://data.delijn.be/stops/202757"], ["https://data.delijn.be/stops/101223", "https://data.delijn.be/stops/102042"], ["https://data.delijn.be/stops/203431", "https://data.delijn.be/stops/203438"], ["https://data.delijn.be/stops/301418", "https://data.delijn.be/stops/301422"], ["https://data.delijn.be/stops/401531", "https://data.delijn.be/stops/402028"], ["https://data.delijn.be/stops/305025", "https://data.delijn.be/stops/307849"], ["https://data.delijn.be/stops/308458", "https://data.delijn.be/stops/308459"], ["https://data.delijn.be/stops/505087", "https://data.delijn.be/stops/506464"], ["https://data.delijn.be/stops/403209", "https://data.delijn.be/stops/403401"], ["https://data.delijn.be/stops/104854", "https://data.delijn.be/stops/107891"], ["https://data.delijn.be/stops/502688", "https://data.delijn.be/stops/502921"], ["https://data.delijn.be/stops/408710", "https://data.delijn.be/stops/408732"], ["https://data.delijn.be/stops/201936", "https://data.delijn.be/stops/204099"], ["https://data.delijn.be/stops/101783", "https://data.delijn.be/stops/107879"], ["https://data.delijn.be/stops/305276", "https://data.delijn.be/stops/305336"], ["https://data.delijn.be/stops/206419", "https://data.delijn.be/stops/207419"], ["https://data.delijn.be/stops/304361", "https://data.delijn.be/stops/307376"], ["https://data.delijn.be/stops/502108", "https://data.delijn.be/stops/507108"], ["https://data.delijn.be/stops/501231", "https://data.delijn.be/stops/501633"], ["https://data.delijn.be/stops/302850", "https://data.delijn.be/stops/302851"], ["https://data.delijn.be/stops/303081", "https://data.delijn.be/stops/303105"], ["https://data.delijn.be/stops/502805", "https://data.delijn.be/stops/507511"], ["https://data.delijn.be/stops/107365", "https://data.delijn.be/stops/107840"], ["https://data.delijn.be/stops/102849", "https://data.delijn.be/stops/106776"], ["https://data.delijn.be/stops/505530", "https://data.delijn.be/stops/506424"], ["https://data.delijn.be/stops/109343", "https://data.delijn.be/stops/109344"], ["https://data.delijn.be/stops/103151", "https://data.delijn.be/stops/406814"], ["https://data.delijn.be/stops/408357", "https://data.delijn.be/stops/408382"], ["https://data.delijn.be/stops/203283", "https://data.delijn.be/stops/210005"], ["https://data.delijn.be/stops/101535", "https://data.delijn.be/stops/109031"], ["https://data.delijn.be/stops/104479", "https://data.delijn.be/stops/104481"], ["https://data.delijn.be/stops/403207", "https://data.delijn.be/stops/403551"], ["https://data.delijn.be/stops/101507", "https://data.delijn.be/stops/109078"], ["https://data.delijn.be/stops/400061", "https://data.delijn.be/stops/410030"], ["https://data.delijn.be/stops/202212", "https://data.delijn.be/stops/203212"], ["https://data.delijn.be/stops/301064", "https://data.delijn.be/stops/301301"], ["https://data.delijn.be/stops/108747", "https://data.delijn.be/stops/108749"], ["https://data.delijn.be/stops/504102", "https://data.delijn.be/stops/509101"], ["https://data.delijn.be/stops/206934", "https://data.delijn.be/stops/206962"], ["https://data.delijn.be/stops/303653", "https://data.delijn.be/stops/304882"], ["https://data.delijn.be/stops/403848", "https://data.delijn.be/stops/410115"], ["https://data.delijn.be/stops/407670", "https://data.delijn.be/stops/408448"], ["https://data.delijn.be/stops/503604", "https://data.delijn.be/stops/508603"], ["https://data.delijn.be/stops/202156", "https://data.delijn.be/stops/203155"], ["https://data.delijn.be/stops/501764", "https://data.delijn.be/stops/507342"], ["https://data.delijn.be/stops/405613", "https://data.delijn.be/stops/407192"], ["https://data.delijn.be/stops/401160", "https://data.delijn.be/stops/407890"], ["https://data.delijn.be/stops/509265", "https://data.delijn.be/stops/509266"], ["https://data.delijn.be/stops/408704", "https://data.delijn.be/stops/408705"], ["https://data.delijn.be/stops/301373", "https://data.delijn.be/stops/301374"], ["https://data.delijn.be/stops/501588", "https://data.delijn.be/stops/506034"], ["https://data.delijn.be/stops/408839", "https://data.delijn.be/stops/408843"], ["https://data.delijn.be/stops/301232", "https://data.delijn.be/stops/306327"], ["https://data.delijn.be/stops/504088", "https://data.delijn.be/stops/505000"], ["https://data.delijn.be/stops/501226", "https://data.delijn.be/stops/501227"], ["https://data.delijn.be/stops/505314", "https://data.delijn.be/stops/509931"], ["https://data.delijn.be/stops/107905", "https://data.delijn.be/stops/108585"], ["https://data.delijn.be/stops/300093", "https://data.delijn.be/stops/306843"], ["https://data.delijn.be/stops/202631", "https://data.delijn.be/stops/203630"], ["https://data.delijn.be/stops/503829", "https://data.delijn.be/stops/504052"], ["https://data.delijn.be/stops/206098", "https://data.delijn.be/stops/206100"], ["https://data.delijn.be/stops/206256", "https://data.delijn.be/stops/207256"], ["https://data.delijn.be/stops/505397", "https://data.delijn.be/stops/505835"], ["https://data.delijn.be/stops/102161", "https://data.delijn.be/stops/108966"], ["https://data.delijn.be/stops/401816", "https://data.delijn.be/stops/401817"], ["https://data.delijn.be/stops/303184", "https://data.delijn.be/stops/303185"], ["https://data.delijn.be/stops/402566", "https://data.delijn.be/stops/402567"], ["https://data.delijn.be/stops/302619", "https://data.delijn.be/stops/302620"], ["https://data.delijn.be/stops/204820", "https://data.delijn.be/stops/205819"], ["https://data.delijn.be/stops/504104", "https://data.delijn.be/stops/509105"], ["https://data.delijn.be/stops/504259", "https://data.delijn.be/stops/504683"], ["https://data.delijn.be/stops/300840", "https://data.delijn.be/stops/304601"], ["https://data.delijn.be/stops/303295", "https://data.delijn.be/stops/308118"], ["https://data.delijn.be/stops/208614", "https://data.delijn.be/stops/209614"], ["https://data.delijn.be/stops/302246", "https://data.delijn.be/stops/302247"], ["https://data.delijn.be/stops/508744", "https://data.delijn.be/stops/508746"], ["https://data.delijn.be/stops/501090", "https://data.delijn.be/stops/506090"], ["https://data.delijn.be/stops/105576", "https://data.delijn.be/stops/106045"], ["https://data.delijn.be/stops/101540", "https://data.delijn.be/stops/101806"], ["https://data.delijn.be/stops/302770", "https://data.delijn.be/stops/307047"], ["https://data.delijn.be/stops/106266", "https://data.delijn.be/stops/106268"], ["https://data.delijn.be/stops/200406", "https://data.delijn.be/stops/200508"], ["https://data.delijn.be/stops/401427", "https://data.delijn.be/stops/401586"], ["https://data.delijn.be/stops/504279", "https://data.delijn.be/stops/509287"], ["https://data.delijn.be/stops/408162", "https://data.delijn.be/stops/408491"], ["https://data.delijn.be/stops/300452", "https://data.delijn.be/stops/308057"], ["https://data.delijn.be/stops/400103", "https://data.delijn.be/stops/400121"], ["https://data.delijn.be/stops/302111", "https://data.delijn.be/stops/302116"], ["https://data.delijn.be/stops/109304", "https://data.delijn.be/stops/109305"], ["https://data.delijn.be/stops/503908", "https://data.delijn.be/stops/505783"], ["https://data.delijn.be/stops/207002", "https://data.delijn.be/stops/207003"], ["https://data.delijn.be/stops/206356", "https://data.delijn.be/stops/207348"], ["https://data.delijn.be/stops/403927", "https://data.delijn.be/stops/404082"], ["https://data.delijn.be/stops/101854", "https://data.delijn.be/stops/109454"], ["https://data.delijn.be/stops/504544", "https://data.delijn.be/stops/509545"], ["https://data.delijn.be/stops/508607", "https://data.delijn.be/stops/508613"], ["https://data.delijn.be/stops/303239", "https://data.delijn.be/stops/303242"], ["https://data.delijn.be/stops/400834", "https://data.delijn.be/stops/409530"], ["https://data.delijn.be/stops/200356", "https://data.delijn.be/stops/201387"], ["https://data.delijn.be/stops/407690", "https://data.delijn.be/stops/407691"], ["https://data.delijn.be/stops/401018", "https://data.delijn.be/stops/401019"], ["https://data.delijn.be/stops/208657", "https://data.delijn.be/stops/208658"], ["https://data.delijn.be/stops/504871", "https://data.delijn.be/stops/508693"], ["https://data.delijn.be/stops/108116", "https://data.delijn.be/stops/108149"], ["https://data.delijn.be/stops/402769", "https://data.delijn.be/stops/409545"], ["https://data.delijn.be/stops/204007", "https://data.delijn.be/stops/205006"], ["https://data.delijn.be/stops/305779", "https://data.delijn.be/stops/305798"], ["https://data.delijn.be/stops/106244", "https://data.delijn.be/stops/106246"], ["https://data.delijn.be/stops/307181", "https://data.delijn.be/stops/307184"], ["https://data.delijn.be/stops/301017", "https://data.delijn.be/stops/301048"], ["https://data.delijn.be/stops/204162", "https://data.delijn.be/stops/207279"], ["https://data.delijn.be/stops/407607", "https://data.delijn.be/stops/407609"], ["https://data.delijn.be/stops/304480", "https://data.delijn.be/stops/304506"], ["https://data.delijn.be/stops/307896", "https://data.delijn.be/stops/308548"], ["https://data.delijn.be/stops/204299", "https://data.delijn.be/stops/204305"], ["https://data.delijn.be/stops/306149", "https://data.delijn.be/stops/306649"], ["https://data.delijn.be/stops/101456", "https://data.delijn.be/stops/102631"], ["https://data.delijn.be/stops/102075", "https://data.delijn.be/stops/102373"], ["https://data.delijn.be/stops/404431", "https://data.delijn.be/stops/409258"], ["https://data.delijn.be/stops/101602", "https://data.delijn.be/stops/106024"], ["https://data.delijn.be/stops/307921", "https://data.delijn.be/stops/308855"], ["https://data.delijn.be/stops/103688", "https://data.delijn.be/stops/107577"], ["https://data.delijn.be/stops/208417", "https://data.delijn.be/stops/209416"], ["https://data.delijn.be/stops/300115", "https://data.delijn.be/stops/306811"], ["https://data.delijn.be/stops/301380", "https://data.delijn.be/stops/306650"], ["https://data.delijn.be/stops/404147", "https://data.delijn.be/stops/404198"], ["https://data.delijn.be/stops/407195", "https://data.delijn.be/stops/407471"], ["https://data.delijn.be/stops/204242", "https://data.delijn.be/stops/205242"], ["https://data.delijn.be/stops/109198", "https://data.delijn.be/stops/109202"], ["https://data.delijn.be/stops/405210", "https://data.delijn.be/stops/409375"], ["https://data.delijn.be/stops/206274", "https://data.delijn.be/stops/207273"], ["https://data.delijn.be/stops/407980", "https://data.delijn.be/stops/408030"], ["https://data.delijn.be/stops/501319", "https://data.delijn.be/stops/501517"], ["https://data.delijn.be/stops/107498", "https://data.delijn.be/stops/107528"], ["https://data.delijn.be/stops/509572", "https://data.delijn.be/stops/509576"], ["https://data.delijn.be/stops/402338", "https://data.delijn.be/stops/402340"], ["https://data.delijn.be/stops/200876", "https://data.delijn.be/stops/505066"], ["https://data.delijn.be/stops/108226", "https://data.delijn.be/stops/109276"], ["https://data.delijn.be/stops/200818", "https://data.delijn.be/stops/202324"], ["https://data.delijn.be/stops/508109", "https://data.delijn.be/stops/508409"], ["https://data.delijn.be/stops/503915", "https://data.delijn.be/stops/508920"], ["https://data.delijn.be/stops/300555", "https://data.delijn.be/stops/300568"], ["https://data.delijn.be/stops/107654", "https://data.delijn.be/stops/107657"], ["https://data.delijn.be/stops/503582", "https://data.delijn.be/stops/508567"], ["https://data.delijn.be/stops/403097", "https://data.delijn.be/stops/403420"], ["https://data.delijn.be/stops/202092", "https://data.delijn.be/stops/203270"], ["https://data.delijn.be/stops/206482", "https://data.delijn.be/stops/207413"], ["https://data.delijn.be/stops/501697", "https://data.delijn.be/stops/505419"], ["https://data.delijn.be/stops/400175", "https://data.delijn.be/stops/402790"], ["https://data.delijn.be/stops/305399", "https://data.delijn.be/stops/305413"], ["https://data.delijn.be/stops/505770", "https://data.delijn.be/stops/507347"], ["https://data.delijn.be/stops/101942", "https://data.delijn.be/stops/109642"], ["https://data.delijn.be/stops/409351", "https://data.delijn.be/stops/409356"], ["https://data.delijn.be/stops/200858", "https://data.delijn.be/stops/203306"], ["https://data.delijn.be/stops/302424", "https://data.delijn.be/stops/302426"], ["https://data.delijn.be/stops/206154", "https://data.delijn.be/stops/207154"], ["https://data.delijn.be/stops/402018", "https://data.delijn.be/stops/402019"], ["https://data.delijn.be/stops/401249", "https://data.delijn.be/stops/401251"], ["https://data.delijn.be/stops/106206", "https://data.delijn.be/stops/106213"], ["https://data.delijn.be/stops/206164", "https://data.delijn.be/stops/308900"], ["https://data.delijn.be/stops/305704", "https://data.delijn.be/stops/305705"], ["https://data.delijn.be/stops/305464", "https://data.delijn.be/stops/308616"], ["https://data.delijn.be/stops/300169", "https://data.delijn.be/stops/301188"], ["https://data.delijn.be/stops/502734", "https://data.delijn.be/stops/505588"], ["https://data.delijn.be/stops/508360", "https://data.delijn.be/stops/508363"], ["https://data.delijn.be/stops/107039", "https://data.delijn.be/stops/107041"], ["https://data.delijn.be/stops/107573", "https://data.delijn.be/stops/107575"], ["https://data.delijn.be/stops/106966", "https://data.delijn.be/stops/106967"], ["https://data.delijn.be/stops/108495", "https://data.delijn.be/stops/109588"], ["https://data.delijn.be/stops/300152", "https://data.delijn.be/stops/300162"], ["https://data.delijn.be/stops/202414", "https://data.delijn.be/stops/203275"], ["https://data.delijn.be/stops/406621", "https://data.delijn.be/stops/406644"], ["https://data.delijn.be/stops/306255", "https://data.delijn.be/stops/306256"], ["https://data.delijn.be/stops/102152", "https://data.delijn.be/stops/108835"], ["https://data.delijn.be/stops/201856", "https://data.delijn.be/stops/211038"], ["https://data.delijn.be/stops/201815", "https://data.delijn.be/stops/201817"], ["https://data.delijn.be/stops/503211", "https://data.delijn.be/stops/508983"], ["https://data.delijn.be/stops/503903", "https://data.delijn.be/stops/508903"], ["https://data.delijn.be/stops/200744", "https://data.delijn.be/stops/203781"], ["https://data.delijn.be/stops/200698", "https://data.delijn.be/stops/202784"], ["https://data.delijn.be/stops/302826", "https://data.delijn.be/stops/302827"], ["https://data.delijn.be/stops/102219", "https://data.delijn.be/stops/105649"], ["https://data.delijn.be/stops/406736", "https://data.delijn.be/stops/407285"], ["https://data.delijn.be/stops/204396", "https://data.delijn.be/stops/204416"], ["https://data.delijn.be/stops/207106", "https://data.delijn.be/stops/207910"], ["https://data.delijn.be/stops/406525", "https://data.delijn.be/stops/406629"], ["https://data.delijn.be/stops/302522", "https://data.delijn.be/stops/302531"], ["https://data.delijn.be/stops/103696", "https://data.delijn.be/stops/103697"], ["https://data.delijn.be/stops/400157", "https://data.delijn.be/stops/400159"], ["https://data.delijn.be/stops/404346", "https://data.delijn.be/stops/404367"], ["https://data.delijn.be/stops/307378", "https://data.delijn.be/stops/307380"], ["https://data.delijn.be/stops/103934", "https://data.delijn.be/stops/107403"], ["https://data.delijn.be/stops/108986", "https://data.delijn.be/stops/109089"], ["https://data.delijn.be/stops/207169", "https://data.delijn.be/stops/303850"], ["https://data.delijn.be/stops/403015", "https://data.delijn.be/stops/403260"], ["https://data.delijn.be/stops/301561", "https://data.delijn.be/stops/308082"], ["https://data.delijn.be/stops/505691", "https://data.delijn.be/stops/507611"], ["https://data.delijn.be/stops/305555", "https://data.delijn.be/stops/308652"], ["https://data.delijn.be/stops/407400", "https://data.delijn.be/stops/407405"], ["https://data.delijn.be/stops/504862", "https://data.delijn.be/stops/508279"], ["https://data.delijn.be/stops/400199", "https://data.delijn.be/stops/406833"], ["https://data.delijn.be/stops/404364", "https://data.delijn.be/stops/404782"], ["https://data.delijn.be/stops/200150", "https://data.delijn.be/stops/200513"], ["https://data.delijn.be/stops/200840", "https://data.delijn.be/stops/507472"], ["https://data.delijn.be/stops/402208", "https://data.delijn.be/stops/402766"], ["https://data.delijn.be/stops/205749", "https://data.delijn.be/stops/205757"], ["https://data.delijn.be/stops/101477", "https://data.delijn.be/stops/109289"], ["https://data.delijn.be/stops/400568", "https://data.delijn.be/stops/404153"], ["https://data.delijn.be/stops/104554", "https://data.delijn.be/stops/308620"], ["https://data.delijn.be/stops/109644", "https://data.delijn.be/stops/109651"], ["https://data.delijn.be/stops/301682", "https://data.delijn.be/stops/306187"], ["https://data.delijn.be/stops/305699", "https://data.delijn.be/stops/305706"], ["https://data.delijn.be/stops/505536", "https://data.delijn.be/stops/509581"], ["https://data.delijn.be/stops/101221", "https://data.delijn.be/stops/101222"], ["https://data.delijn.be/stops/108534", "https://data.delijn.be/stops/108538"], ["https://data.delijn.be/stops/302875", "https://data.delijn.be/stops/307693"], ["https://data.delijn.be/stops/504082", "https://data.delijn.be/stops/509079"], ["https://data.delijn.be/stops/204437", "https://data.delijn.be/stops/205437"], ["https://data.delijn.be/stops/208115", "https://data.delijn.be/stops/209336"], ["https://data.delijn.be/stops/200706", "https://data.delijn.be/stops/203430"], ["https://data.delijn.be/stops/407990", "https://data.delijn.be/stops/408018"], ["https://data.delijn.be/stops/104363", "https://data.delijn.be/stops/104575"], ["https://data.delijn.be/stops/502328", "https://data.delijn.be/stops/502331"], ["https://data.delijn.be/stops/406708", "https://data.delijn.be/stops/408001"], ["https://data.delijn.be/stops/401892", "https://data.delijn.be/stops/401895"], ["https://data.delijn.be/stops/203797", "https://data.delijn.be/stops/502759"], ["https://data.delijn.be/stops/400512", "https://data.delijn.be/stops/401437"], ["https://data.delijn.be/stops/404366", "https://data.delijn.be/stops/404391"], ["https://data.delijn.be/stops/206751", "https://data.delijn.be/stops/209469"], ["https://data.delijn.be/stops/407610", "https://data.delijn.be/stops/407629"], ["https://data.delijn.be/stops/306765", "https://data.delijn.be/stops/308409"], ["https://data.delijn.be/stops/408867", "https://data.delijn.be/stops/408883"], ["https://data.delijn.be/stops/102302", "https://data.delijn.be/stops/106966"], ["https://data.delijn.be/stops/207436", "https://data.delijn.be/stops/207437"], ["https://data.delijn.be/stops/102187", "https://data.delijn.be/stops/102193"], ["https://data.delijn.be/stops/200464", "https://data.delijn.be/stops/201463"], ["https://data.delijn.be/stops/508651", "https://data.delijn.be/stops/508653"], ["https://data.delijn.be/stops/106368", "https://data.delijn.be/stops/106370"], ["https://data.delijn.be/stops/106680", "https://data.delijn.be/stops/107122"], ["https://data.delijn.be/stops/204943", "https://data.delijn.be/stops/205943"], ["https://data.delijn.be/stops/301837", "https://data.delijn.be/stops/301842"], ["https://data.delijn.be/stops/206261", "https://data.delijn.be/stops/206262"], ["https://data.delijn.be/stops/203899", "https://data.delijn.be/stops/203900"], ["https://data.delijn.be/stops/106670", "https://data.delijn.be/stops/106673"], ["https://data.delijn.be/stops/501497", "https://data.delijn.be/stops/501641"], ["https://data.delijn.be/stops/303307", "https://data.delijn.be/stops/303319"], ["https://data.delijn.be/stops/305145", "https://data.delijn.be/stops/504255"], ["https://data.delijn.be/stops/109842", "https://data.delijn.be/stops/109845"], ["https://data.delijn.be/stops/300120", "https://data.delijn.be/stops/300121"], ["https://data.delijn.be/stops/503838", "https://data.delijn.be/stops/503839"], ["https://data.delijn.be/stops/108273", "https://data.delijn.be/stops/108276"], ["https://data.delijn.be/stops/108989", "https://data.delijn.be/stops/108991"], ["https://data.delijn.be/stops/304799", "https://data.delijn.be/stops/304800"], ["https://data.delijn.be/stops/405914", "https://data.delijn.be/stops/405915"], ["https://data.delijn.be/stops/504410", "https://data.delijn.be/stops/509696"], ["https://data.delijn.be/stops/106271", "https://data.delijn.be/stops/106272"], ["https://data.delijn.be/stops/300485", "https://data.delijn.be/stops/302867"], ["https://data.delijn.be/stops/400060", "https://data.delijn.be/stops/400158"], ["https://data.delijn.be/stops/401082", "https://data.delijn.be/stops/401083"], ["https://data.delijn.be/stops/508554", "https://data.delijn.be/stops/508993"], ["https://data.delijn.be/stops/206387", "https://data.delijn.be/stops/207387"], ["https://data.delijn.be/stops/206184", "https://data.delijn.be/stops/207184"], ["https://data.delijn.be/stops/502340", "https://data.delijn.be/stops/507340"], ["https://data.delijn.be/stops/107073", "https://data.delijn.be/stops/107079"], ["https://data.delijn.be/stops/402067", "https://data.delijn.be/stops/402763"], ["https://data.delijn.be/stops/503717", "https://data.delijn.be/stops/508732"], ["https://data.delijn.be/stops/204742", "https://data.delijn.be/stops/205743"], ["https://data.delijn.be/stops/206366", "https://data.delijn.be/stops/207746"], ["https://data.delijn.be/stops/301859", "https://data.delijn.be/stops/301865"], ["https://data.delijn.be/stops/302959", "https://data.delijn.be/stops/302972"], ["https://data.delijn.be/stops/503232", "https://data.delijn.be/stops/503263"], ["https://data.delijn.be/stops/104459", "https://data.delijn.be/stops/104461"], ["https://data.delijn.be/stops/307641", "https://data.delijn.be/stops/307686"], ["https://data.delijn.be/stops/206015", "https://data.delijn.be/stops/206297"], ["https://data.delijn.be/stops/502234", "https://data.delijn.be/stops/505232"], ["https://data.delijn.be/stops/303268", "https://data.delijn.be/stops/303277"], ["https://data.delijn.be/stops/504460", "https://data.delijn.be/stops/504679"], ["https://data.delijn.be/stops/202876", "https://data.delijn.be/stops/203877"], ["https://data.delijn.be/stops/503846", "https://data.delijn.be/stops/505218"], ["https://data.delijn.be/stops/209014", "https://data.delijn.be/stops/209096"], ["https://data.delijn.be/stops/503412", "https://data.delijn.be/stops/508412"], ["https://data.delijn.be/stops/506001", "https://data.delijn.be/stops/509561"], ["https://data.delijn.be/stops/105456", "https://data.delijn.be/stops/105470"], ["https://data.delijn.be/stops/502021", "https://data.delijn.be/stops/507019"], ["https://data.delijn.be/stops/103909", "https://data.delijn.be/stops/105649"], ["https://data.delijn.be/stops/402888", "https://data.delijn.be/stops/405536"], ["https://data.delijn.be/stops/402048", "https://data.delijn.be/stops/402203"], ["https://data.delijn.be/stops/106999", "https://data.delijn.be/stops/107324"], ["https://data.delijn.be/stops/200522", "https://data.delijn.be/stops/201521"], ["https://data.delijn.be/stops/202262", "https://data.delijn.be/stops/203263"], ["https://data.delijn.be/stops/507042", "https://data.delijn.be/stops/507317"], ["https://data.delijn.be/stops/305622", "https://data.delijn.be/stops/305624"], ["https://data.delijn.be/stops/101518", "https://data.delijn.be/stops/109073"], ["https://data.delijn.be/stops/102896", "https://data.delijn.be/stops/103765"], ["https://data.delijn.be/stops/205753", "https://data.delijn.be/stops/205754"], ["https://data.delijn.be/stops/504011", "https://data.delijn.be/stops/509011"], ["https://data.delijn.be/stops/500041", "https://data.delijn.be/stops/500043"], ["https://data.delijn.be/stops/101178", "https://data.delijn.be/stops/101179"], ["https://data.delijn.be/stops/302836", "https://data.delijn.be/stops/302837"], ["https://data.delijn.be/stops/500942", "https://data.delijn.be/stops/505639"], ["https://data.delijn.be/stops/504338", "https://data.delijn.be/stops/509338"], ["https://data.delijn.be/stops/305528", "https://data.delijn.be/stops/305879"], ["https://data.delijn.be/stops/405029", "https://data.delijn.be/stops/410022"], ["https://data.delijn.be/stops/301910", "https://data.delijn.be/stops/306255"], ["https://data.delijn.be/stops/300316", "https://data.delijn.be/stops/307976"], ["https://data.delijn.be/stops/400906", "https://data.delijn.be/stops/400975"], ["https://data.delijn.be/stops/408679", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/204990", "https://data.delijn.be/stops/205990"], ["https://data.delijn.be/stops/408352", "https://data.delijn.be/stops/408398"], ["https://data.delijn.be/stops/200856", "https://data.delijn.be/stops/203307"], ["https://data.delijn.be/stops/206331", "https://data.delijn.be/stops/207708"], ["https://data.delijn.be/stops/108813", "https://data.delijn.be/stops/108816"], ["https://data.delijn.be/stops/505070", "https://data.delijn.be/stops/505756"], ["https://data.delijn.be/stops/501371", "https://data.delijn.be/stops/504665"], ["https://data.delijn.be/stops/401301", "https://data.delijn.be/stops/401316"], ["https://data.delijn.be/stops/308276", "https://data.delijn.be/stops/308279"], ["https://data.delijn.be/stops/108568", "https://data.delijn.be/stops/108992"], ["https://data.delijn.be/stops/108232", "https://data.delijn.be/stops/108234"], ["https://data.delijn.be/stops/209428", "https://data.delijn.be/stops/209595"], ["https://data.delijn.be/stops/305222", "https://data.delijn.be/stops/305253"], ["https://data.delijn.be/stops/508398", "https://data.delijn.be/stops/508404"], ["https://data.delijn.be/stops/400090", "https://data.delijn.be/stops/400163"], ["https://data.delijn.be/stops/505844", "https://data.delijn.be/stops/509890"], ["https://data.delijn.be/stops/503226", "https://data.delijn.be/stops/508595"], ["https://data.delijn.be/stops/508011", "https://data.delijn.be/stops/508848"], ["https://data.delijn.be/stops/505638", "https://data.delijn.be/stops/505643"], ["https://data.delijn.be/stops/504593", "https://data.delijn.be/stops/509593"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/302889"], ["https://data.delijn.be/stops/105116", "https://data.delijn.be/stops/105827"], ["https://data.delijn.be/stops/203346", "https://data.delijn.be/stops/209745"], ["https://data.delijn.be/stops/107786", "https://data.delijn.be/stops/206697"], ["https://data.delijn.be/stops/102131", "https://data.delijn.be/stops/106561"], ["https://data.delijn.be/stops/504190", "https://data.delijn.be/stops/509190"], ["https://data.delijn.be/stops/504372", "https://data.delijn.be/stops/509458"], ["https://data.delijn.be/stops/200640", "https://data.delijn.be/stops/202904"], ["https://data.delijn.be/stops/208017", "https://data.delijn.be/stops/209016"], ["https://data.delijn.be/stops/404526", "https://data.delijn.be/stops/409193"], ["https://data.delijn.be/stops/505390", "https://data.delijn.be/stops/508137"], ["https://data.delijn.be/stops/501046", "https://data.delijn.be/stops/501538"], ["https://data.delijn.be/stops/502085", "https://data.delijn.be/stops/507117"], ["https://data.delijn.be/stops/402784", "https://data.delijn.be/stops/402785"], ["https://data.delijn.be/stops/306956", "https://data.delijn.be/stops/306957"], ["https://data.delijn.be/stops/300006", "https://data.delijn.be/stops/301280"], ["https://data.delijn.be/stops/303342", "https://data.delijn.be/stops/308932"], ["https://data.delijn.be/stops/202342", "https://data.delijn.be/stops/203447"], ["https://data.delijn.be/stops/201489", "https://data.delijn.be/stops/201890"], ["https://data.delijn.be/stops/209599", "https://data.delijn.be/stops/307590"], ["https://data.delijn.be/stops/303531", "https://data.delijn.be/stops/304131"], ["https://data.delijn.be/stops/504423", "https://data.delijn.be/stops/509402"], ["https://data.delijn.be/stops/503514", "https://data.delijn.be/stops/504791"], ["https://data.delijn.be/stops/405798", "https://data.delijn.be/stops/405799"], ["https://data.delijn.be/stops/201869", "https://data.delijn.be/stops/203658"], ["https://data.delijn.be/stops/204237", "https://data.delijn.be/stops/205235"], ["https://data.delijn.be/stops/407221", "https://data.delijn.be/stops/408476"], ["https://data.delijn.be/stops/301241", "https://data.delijn.be/stops/307616"], ["https://data.delijn.be/stops/204190", "https://data.delijn.be/stops/205230"], ["https://data.delijn.be/stops/301394", "https://data.delijn.be/stops/306150"], ["https://data.delijn.be/stops/505505", "https://data.delijn.be/stops/505603"], ["https://data.delijn.be/stops/304440", "https://data.delijn.be/stops/307089"], ["https://data.delijn.be/stops/403018", "https://data.delijn.be/stops/409277"], ["https://data.delijn.be/stops/502718", "https://data.delijn.be/stops/507619"], ["https://data.delijn.be/stops/206213", "https://data.delijn.be/stops/207214"], ["https://data.delijn.be/stops/504597", "https://data.delijn.be/stops/505302"], ["https://data.delijn.be/stops/205505", "https://data.delijn.be/stops/205506"], ["https://data.delijn.be/stops/502619", "https://data.delijn.be/stops/502620"], ["https://data.delijn.be/stops/205237", "https://data.delijn.be/stops/206395"], ["https://data.delijn.be/stops/304839", "https://data.delijn.be/stops/304878"], ["https://data.delijn.be/stops/207981", "https://data.delijn.be/stops/216020"], ["https://data.delijn.be/stops/200030", "https://data.delijn.be/stops/201448"], ["https://data.delijn.be/stops/102237", "https://data.delijn.be/stops/105859"], ["https://data.delijn.be/stops/404461", "https://data.delijn.be/stops/404526"], ["https://data.delijn.be/stops/405262", "https://data.delijn.be/stops/405263"], ["https://data.delijn.be/stops/102285", "https://data.delijn.be/stops/102286"], ["https://data.delijn.be/stops/308449", "https://data.delijn.be/stops/308450"], ["https://data.delijn.be/stops/300352", "https://data.delijn.be/stops/301311"], ["https://data.delijn.be/stops/303350", "https://data.delijn.be/stops/303367"], ["https://data.delijn.be/stops/302073", "https://data.delijn.be/stops/308813"], ["https://data.delijn.be/stops/410016", "https://data.delijn.be/stops/410017"], ["https://data.delijn.be/stops/408366", "https://data.delijn.be/stops/408938"], ["https://data.delijn.be/stops/305147", "https://data.delijn.be/stops/306963"], ["https://data.delijn.be/stops/509355", "https://data.delijn.be/stops/509356"], ["https://data.delijn.be/stops/303286", "https://data.delijn.be/stops/305978"], ["https://data.delijn.be/stops/102430", "https://data.delijn.be/stops/102435"], ["https://data.delijn.be/stops/200206", "https://data.delijn.be/stops/202143"], ["https://data.delijn.be/stops/502661", "https://data.delijn.be/stops/507660"], ["https://data.delijn.be/stops/406669", "https://data.delijn.be/stops/406685"], ["https://data.delijn.be/stops/206296", "https://data.delijn.be/stops/207446"], ["https://data.delijn.be/stops/201358", "https://data.delijn.be/stops/209663"], ["https://data.delijn.be/stops/502173", "https://data.delijn.be/stops/505390"], ["https://data.delijn.be/stops/307312", "https://data.delijn.be/stops/307314"], ["https://data.delijn.be/stops/206800", "https://data.delijn.be/stops/209571"], ["https://data.delijn.be/stops/107438", "https://data.delijn.be/stops/107440"], ["https://data.delijn.be/stops/107485", "https://data.delijn.be/stops/107525"], ["https://data.delijn.be/stops/103659", "https://data.delijn.be/stops/106219"], ["https://data.delijn.be/stops/101870", "https://data.delijn.be/stops/102300"], ["https://data.delijn.be/stops/109553", "https://data.delijn.be/stops/109787"], ["https://data.delijn.be/stops/408800", "https://data.delijn.be/stops/408804"], ["https://data.delijn.be/stops/306837", "https://data.delijn.be/stops/307730"], ["https://data.delijn.be/stops/206709", "https://data.delijn.be/stops/206785"], ["https://data.delijn.be/stops/403177", "https://data.delijn.be/stops/403253"], ["https://data.delijn.be/stops/109496", "https://data.delijn.be/stops/109497"], ["https://data.delijn.be/stops/401463", "https://data.delijn.be/stops/403268"], ["https://data.delijn.be/stops/404810", "https://data.delijn.be/stops/404811"], ["https://data.delijn.be/stops/509595", "https://data.delijn.be/stops/509597"], ["https://data.delijn.be/stops/304566", "https://data.delijn.be/stops/304645"], ["https://data.delijn.be/stops/109314", "https://data.delijn.be/stops/109358"], ["https://data.delijn.be/stops/404638", "https://data.delijn.be/stops/406966"], ["https://data.delijn.be/stops/204749", "https://data.delijn.be/stops/204750"], ["https://data.delijn.be/stops/502521", "https://data.delijn.be/stops/507673"], ["https://data.delijn.be/stops/106127", "https://data.delijn.be/stops/106129"], ["https://data.delijn.be/stops/404956", "https://data.delijn.be/stops/404957"], ["https://data.delijn.be/stops/304848", "https://data.delijn.be/stops/308527"], ["https://data.delijn.be/stops/202015", "https://data.delijn.be/stops/203014"], ["https://data.delijn.be/stops/308462", "https://data.delijn.be/stops/308469"], ["https://data.delijn.be/stops/404326", "https://data.delijn.be/stops/404361"], ["https://data.delijn.be/stops/206196", "https://data.delijn.be/stops/207220"], ["https://data.delijn.be/stops/501094", "https://data.delijn.be/stops/505152"], ["https://data.delijn.be/stops/109693", "https://data.delijn.be/stops/109721"], ["https://data.delijn.be/stops/305845", "https://data.delijn.be/stops/305846"], ["https://data.delijn.be/stops/105302", "https://data.delijn.be/stops/105303"], ["https://data.delijn.be/stops/108982", "https://data.delijn.be/stops/109567"], ["https://data.delijn.be/stops/304460", "https://data.delijn.be/stops/307651"], ["https://data.delijn.be/stops/202540", "https://data.delijn.be/stops/203527"], ["https://data.delijn.be/stops/300450", "https://data.delijn.be/stops/305033"], ["https://data.delijn.be/stops/207787", "https://data.delijn.be/stops/209371"], ["https://data.delijn.be/stops/506142", "https://data.delijn.be/stops/506165"], ["https://data.delijn.be/stops/302196", "https://data.delijn.be/stops/302197"], ["https://data.delijn.be/stops/403308", "https://data.delijn.be/stops/403309"], ["https://data.delijn.be/stops/102493", "https://data.delijn.be/stops/102497"], ["https://data.delijn.be/stops/205200", "https://data.delijn.be/stops/205408"], ["https://data.delijn.be/stops/405816", "https://data.delijn.be/stops/406826"], ["https://data.delijn.be/stops/105491", "https://data.delijn.be/stops/105503"], ["https://data.delijn.be/stops/408606", "https://data.delijn.be/stops/306776"], ["https://data.delijn.be/stops/101597", "https://data.delijn.be/stops/106589"], ["https://data.delijn.be/stops/200045", "https://data.delijn.be/stops/200641"], ["https://data.delijn.be/stops/403370", "https://data.delijn.be/stops/403551"], ["https://data.delijn.be/stops/206640", "https://data.delijn.be/stops/207214"], ["https://data.delijn.be/stops/503876", "https://data.delijn.be/stops/508876"], ["https://data.delijn.be/stops/204144", "https://data.delijn.be/stops/204148"], ["https://data.delijn.be/stops/406172", "https://data.delijn.be/stops/406186"], ["https://data.delijn.be/stops/106162", "https://data.delijn.be/stops/106446"], ["https://data.delijn.be/stops/107450", "https://data.delijn.be/stops/107470"], ["https://data.delijn.be/stops/505512", "https://data.delijn.be/stops/505615"], ["https://data.delijn.be/stops/409281", "https://data.delijn.be/stops/409294"], ["https://data.delijn.be/stops/105280", "https://data.delijn.be/stops/105285"], ["https://data.delijn.be/stops/406079", "https://data.delijn.be/stops/407489"], ["https://data.delijn.be/stops/407803", "https://data.delijn.be/stops/407837"], ["https://data.delijn.be/stops/400691", "https://data.delijn.be/stops/400839"], ["https://data.delijn.be/stops/103569", "https://data.delijn.be/stops/103572"], ["https://data.delijn.be/stops/207021", "https://data.delijn.be/stops/207077"], ["https://data.delijn.be/stops/207319", "https://data.delijn.be/stops/207871"], ["https://data.delijn.be/stops/102623", "https://data.delijn.be/stops/107056"], ["https://data.delijn.be/stops/200889", "https://data.delijn.be/stops/211298"], ["https://data.delijn.be/stops/508712", "https://data.delijn.be/stops/508739"], ["https://data.delijn.be/stops/304585", "https://data.delijn.be/stops/304586"], ["https://data.delijn.be/stops/300508", "https://data.delijn.be/stops/303977"], ["https://data.delijn.be/stops/200813", "https://data.delijn.be/stops/203280"], ["https://data.delijn.be/stops/402885", "https://data.delijn.be/stops/402943"], ["https://data.delijn.be/stops/200167", "https://data.delijn.be/stops/202149"], ["https://data.delijn.be/stops/402206", "https://data.delijn.be/stops/402499"], ["https://data.delijn.be/stops/208742", "https://data.delijn.be/stops/508678"], ["https://data.delijn.be/stops/200884", "https://data.delijn.be/stops/202655"], ["https://data.delijn.be/stops/200570", "https://data.delijn.be/stops/201422"], ["https://data.delijn.be/stops/206536", "https://data.delijn.be/stops/209688"], ["https://data.delijn.be/stops/202645", "https://data.delijn.be/stops/203645"], ["https://data.delijn.be/stops/101014", "https://data.delijn.be/stops/101017"], ["https://data.delijn.be/stops/205063", "https://data.delijn.be/stops/205210"], ["https://data.delijn.be/stops/204364", "https://data.delijn.be/stops/204716"], ["https://data.delijn.be/stops/401440", "https://data.delijn.be/stops/406718"], ["https://data.delijn.be/stops/401811", "https://data.delijn.be/stops/410356"], ["https://data.delijn.be/stops/103988", "https://data.delijn.be/stops/109460"], ["https://data.delijn.be/stops/401893", "https://data.delijn.be/stops/401895"], ["https://data.delijn.be/stops/301367", "https://data.delijn.be/stops/304811"], ["https://data.delijn.be/stops/101139", "https://data.delijn.be/stops/102659"], ["https://data.delijn.be/stops/305063", "https://data.delijn.be/stops/305116"], ["https://data.delijn.be/stops/501360", "https://data.delijn.be/stops/506298"], ["https://data.delijn.be/stops/505141", "https://data.delijn.be/stops/507236"], ["https://data.delijn.be/stops/200761", "https://data.delijn.be/stops/507961"], ["https://data.delijn.be/stops/201927", "https://data.delijn.be/stops/206929"], ["https://data.delijn.be/stops/404113", "https://data.delijn.be/stops/404126"], ["https://data.delijn.be/stops/102169", "https://data.delijn.be/stops/108908"], ["https://data.delijn.be/stops/502248", "https://data.delijn.be/stops/502566"], ["https://data.delijn.be/stops/502643", "https://data.delijn.be/stops/507165"], ["https://data.delijn.be/stops/104105", "https://data.delijn.be/stops/106086"], ["https://data.delijn.be/stops/304448", "https://data.delijn.be/stops/304449"], ["https://data.delijn.be/stops/104687", "https://data.delijn.be/stops/108131"], ["https://data.delijn.be/stops/201976", "https://data.delijn.be/stops/207482"], ["https://data.delijn.be/stops/300201", "https://data.delijn.be/stops/308787"], ["https://data.delijn.be/stops/507040", "https://data.delijn.be/stops/507627"], ["https://data.delijn.be/stops/400258", "https://data.delijn.be/stops/405864"], ["https://data.delijn.be/stops/508807", "https://data.delijn.be/stops/508809"], ["https://data.delijn.be/stops/502482", "https://data.delijn.be/stops/507479"], ["https://data.delijn.be/stops/107984", "https://data.delijn.be/stops/108054"], ["https://data.delijn.be/stops/101549", "https://data.delijn.be/stops/101718"], ["https://data.delijn.be/stops/102245", "https://data.delijn.be/stops/102914"], ["https://data.delijn.be/stops/301895", "https://data.delijn.be/stops/305722"], ["https://data.delijn.be/stops/400612", "https://data.delijn.be/stops/400613"], ["https://data.delijn.be/stops/405070", "https://data.delijn.be/stops/408372"], ["https://data.delijn.be/stops/306944", "https://data.delijn.be/stops/306946"], ["https://data.delijn.be/stops/103845", "https://data.delijn.be/stops/104600"], ["https://data.delijn.be/stops/109711", "https://data.delijn.be/stops/406485"], ["https://data.delijn.be/stops/400418", "https://data.delijn.be/stops/407100"], ["https://data.delijn.be/stops/301712", "https://data.delijn.be/stops/305907"], ["https://data.delijn.be/stops/307642", "https://data.delijn.be/stops/307644"], ["https://data.delijn.be/stops/103245", "https://data.delijn.be/stops/107720"], ["https://data.delijn.be/stops/503252", "https://data.delijn.be/stops/503430"], ["https://data.delijn.be/stops/107584", "https://data.delijn.be/stops/109430"], ["https://data.delijn.be/stops/503034", "https://data.delijn.be/stops/508037"], ["https://data.delijn.be/stops/503797", "https://data.delijn.be/stops/508601"], ["https://data.delijn.be/stops/303389", "https://data.delijn.be/stops/308717"], ["https://data.delijn.be/stops/103097", "https://data.delijn.be/stops/107185"], ["https://data.delijn.be/stops/304039", "https://data.delijn.be/stops/308644"], ["https://data.delijn.be/stops/109791", "https://data.delijn.be/stops/109792"], ["https://data.delijn.be/stops/502582", "https://data.delijn.be/stops/502802"], ["https://data.delijn.be/stops/302724", "https://data.delijn.be/stops/308598"], ["https://data.delijn.be/stops/406171", "https://data.delijn.be/stops/410270"], ["https://data.delijn.be/stops/103108", "https://data.delijn.be/stops/104815"], ["https://data.delijn.be/stops/405363", "https://data.delijn.be/stops/406395"], ["https://data.delijn.be/stops/303017", "https://data.delijn.be/stops/304241"], ["https://data.delijn.be/stops/105069", "https://data.delijn.be/stops/106779"], ["https://data.delijn.be/stops/406214", "https://data.delijn.be/stops/406231"], ["https://data.delijn.be/stops/204290", "https://data.delijn.be/stops/205290"], ["https://data.delijn.be/stops/301313", "https://data.delijn.be/stops/301314"], ["https://data.delijn.be/stops/403008", "https://data.delijn.be/stops/403297"], ["https://data.delijn.be/stops/409547", "https://data.delijn.be/stops/409550"], ["https://data.delijn.be/stops/101677", "https://data.delijn.be/stops/101679"], ["https://data.delijn.be/stops/408624", "https://data.delijn.be/stops/408626"], ["https://data.delijn.be/stops/201166", "https://data.delijn.be/stops/203152"], ["https://data.delijn.be/stops/503914", "https://data.delijn.be/stops/508914"], ["https://data.delijn.be/stops/501048", "https://data.delijn.be/stops/505029"], ["https://data.delijn.be/stops/103760", "https://data.delijn.be/stops/108755"], ["https://data.delijn.be/stops/103767", "https://data.delijn.be/stops/107309"], ["https://data.delijn.be/stops/401092", "https://data.delijn.be/stops/401115"], ["https://data.delijn.be/stops/109996", "https://data.delijn.be/stops/400441"], ["https://data.delijn.be/stops/101036", "https://data.delijn.be/stops/205566"], ["https://data.delijn.be/stops/200765", "https://data.delijn.be/stops/208299"], ["https://data.delijn.be/stops/306395", "https://data.delijn.be/stops/306397"], ["https://data.delijn.be/stops/201851", "https://data.delijn.be/stops/203656"], ["https://data.delijn.be/stops/302189", "https://data.delijn.be/stops/302192"], ["https://data.delijn.be/stops/206807", "https://data.delijn.be/stops/207807"], ["https://data.delijn.be/stops/402112", "https://data.delijn.be/stops/402210"], ["https://data.delijn.be/stops/504988", "https://data.delijn.be/stops/509048"], ["https://data.delijn.be/stops/109056", "https://data.delijn.be/stops/109068"], ["https://data.delijn.be/stops/407008", "https://data.delijn.be/stops/407052"], ["https://data.delijn.be/stops/405916", "https://data.delijn.be/stops/405983"], ["https://data.delijn.be/stops/104332", "https://data.delijn.be/stops/107546"], ["https://data.delijn.be/stops/206179", "https://data.delijn.be/stops/207180"], ["https://data.delijn.be/stops/109251", "https://data.delijn.be/stops/109253"], ["https://data.delijn.be/stops/401378", "https://data.delijn.be/stops/410171"], ["https://data.delijn.be/stops/304116", "https://data.delijn.be/stops/305338"], ["https://data.delijn.be/stops/103671", "https://data.delijn.be/stops/106255"], ["https://data.delijn.be/stops/104041", "https://data.delijn.be/stops/108526"], ["https://data.delijn.be/stops/202278", "https://data.delijn.be/stops/203278"], ["https://data.delijn.be/stops/504295", "https://data.delijn.be/stops/504322"], ["https://data.delijn.be/stops/307303", "https://data.delijn.be/stops/307304"], ["https://data.delijn.be/stops/204249", "https://data.delijn.be/stops/205249"], ["https://data.delijn.be/stops/200745", "https://data.delijn.be/stops/203779"], ["https://data.delijn.be/stops/503699", "https://data.delijn.be/stops/504041"], ["https://data.delijn.be/stops/408341", "https://data.delijn.be/stops/408352"], ["https://data.delijn.be/stops/501500", "https://data.delijn.be/stops/506388"], ["https://data.delijn.be/stops/203087", "https://data.delijn.be/stops/203088"], ["https://data.delijn.be/stops/203280", "https://data.delijn.be/stops/203281"], ["https://data.delijn.be/stops/302272", "https://data.delijn.be/stops/306786"], ["https://data.delijn.be/stops/300629", "https://data.delijn.be/stops/307860"], ["https://data.delijn.be/stops/509725", "https://data.delijn.be/stops/509727"], ["https://data.delijn.be/stops/505131", "https://data.delijn.be/stops/505979"], ["https://data.delijn.be/stops/206066", "https://data.delijn.be/stops/207119"], ["https://data.delijn.be/stops/104003", "https://data.delijn.be/stops/107365"], ["https://data.delijn.be/stops/408711", "https://data.delijn.be/stops/408714"], ["https://data.delijn.be/stops/501046", "https://data.delijn.be/stops/505840"], ["https://data.delijn.be/stops/302499", "https://data.delijn.be/stops/302503"], ["https://data.delijn.be/stops/500137", "https://data.delijn.be/stops/590334"], ["https://data.delijn.be/stops/105196", "https://data.delijn.be/stops/105198"], ["https://data.delijn.be/stops/106394", "https://data.delijn.be/stops/106396"], ["https://data.delijn.be/stops/202600", "https://data.delijn.be/stops/203599"], ["https://data.delijn.be/stops/303562", "https://data.delijn.be/stops/304129"], ["https://data.delijn.be/stops/204982", "https://data.delijn.be/stops/208787"], ["https://data.delijn.be/stops/201208", "https://data.delijn.be/stops/203143"], ["https://data.delijn.be/stops/305717", "https://data.delijn.be/stops/306059"], ["https://data.delijn.be/stops/401255", "https://data.delijn.be/stops/401338"], ["https://data.delijn.be/stops/503252", "https://data.delijn.be/stops/508261"], ["https://data.delijn.be/stops/501069", "https://data.delijn.be/stops/506381"], ["https://data.delijn.be/stops/301658", "https://data.delijn.be/stops/301659"], ["https://data.delijn.be/stops/208163", "https://data.delijn.be/stops/209424"], ["https://data.delijn.be/stops/104771", "https://data.delijn.be/stops/108682"], ["https://data.delijn.be/stops/109181", "https://data.delijn.be/stops/109227"], ["https://data.delijn.be/stops/202861", "https://data.delijn.be/stops/203861"], ["https://data.delijn.be/stops/202333", "https://data.delijn.be/stops/211017"], ["https://data.delijn.be/stops/401409", "https://data.delijn.be/stops/300925"], ["https://data.delijn.be/stops/403375", "https://data.delijn.be/stops/403513"], ["https://data.delijn.be/stops/501208", "https://data.delijn.be/stops/505036"], ["https://data.delijn.be/stops/202723", "https://data.delijn.be/stops/203086"], ["https://data.delijn.be/stops/303410", "https://data.delijn.be/stops/308066"], ["https://data.delijn.be/stops/106253", "https://data.delijn.be/stops/106256"], ["https://data.delijn.be/stops/202735", "https://data.delijn.be/stops/203735"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/203629"], ["https://data.delijn.be/stops/403085", "https://data.delijn.be/stops/403430"], ["https://data.delijn.be/stops/400080", "https://data.delijn.be/stops/405642"], ["https://data.delijn.be/stops/301399", "https://data.delijn.be/stops/301401"], ["https://data.delijn.be/stops/102885", "https://data.delijn.be/stops/102890"], ["https://data.delijn.be/stops/102170", "https://data.delijn.be/stops/103640"], ["https://data.delijn.be/stops/501010", "https://data.delijn.be/stops/502078"], ["https://data.delijn.be/stops/103756", "https://data.delijn.be/stops/104185"], ["https://data.delijn.be/stops/403716", "https://data.delijn.be/stops/403728"], ["https://data.delijn.be/stops/201485", "https://data.delijn.be/stops/209733"], ["https://data.delijn.be/stops/201195", "https://data.delijn.be/stops/201732"], ["https://data.delijn.be/stops/404859", "https://data.delijn.be/stops/404874"], ["https://data.delijn.be/stops/505349", "https://data.delijn.be/stops/505726"], ["https://data.delijn.be/stops/304348", "https://data.delijn.be/stops/304356"], ["https://data.delijn.be/stops/508779", "https://data.delijn.be/stops/508837"], ["https://data.delijn.be/stops/401102", "https://data.delijn.be/stops/401132"], ["https://data.delijn.be/stops/104838", "https://data.delijn.be/stops/104959"], ["https://data.delijn.be/stops/201001", "https://data.delijn.be/stops/202521"], ["https://data.delijn.be/stops/408744", "https://data.delijn.be/stops/408745"], ["https://data.delijn.be/stops/307075", "https://data.delijn.be/stops/308439"], ["https://data.delijn.be/stops/302540", "https://data.delijn.be/stops/302544"], ["https://data.delijn.be/stops/106657", "https://data.delijn.be/stops/106661"], ["https://data.delijn.be/stops/301417", "https://data.delijn.be/stops/301421"], ["https://data.delijn.be/stops/407060", "https://data.delijn.be/stops/407778"], ["https://data.delijn.be/stops/203976", "https://data.delijn.be/stops/203977"], ["https://data.delijn.be/stops/406708", "https://data.delijn.be/stops/407083"], ["https://data.delijn.be/stops/503024", "https://data.delijn.be/stops/508032"], ["https://data.delijn.be/stops/208670", "https://data.delijn.be/stops/209433"], ["https://data.delijn.be/stops/404460", "https://data.delijn.be/stops/404535"], ["https://data.delijn.be/stops/206355", "https://data.delijn.be/stops/206356"], ["https://data.delijn.be/stops/306806", "https://data.delijn.be/stops/307735"], ["https://data.delijn.be/stops/104630", "https://data.delijn.be/stops/105655"], ["https://data.delijn.be/stops/404622", "https://data.delijn.be/stops/404626"], ["https://data.delijn.be/stops/400830", "https://data.delijn.be/stops/403576"], ["https://data.delijn.be/stops/302795", "https://data.delijn.be/stops/307835"], ["https://data.delijn.be/stops/207114", "https://data.delijn.be/stops/207907"], ["https://data.delijn.be/stops/504210", "https://data.delijn.be/stops/504692"], ["https://data.delijn.be/stops/303056", "https://data.delijn.be/stops/304242"], ["https://data.delijn.be/stops/206563", "https://data.delijn.be/stops/207563"], ["https://data.delijn.be/stops/204822", "https://data.delijn.be/stops/205822"], ["https://data.delijn.be/stops/300242", "https://data.delijn.be/stops/304604"], ["https://data.delijn.be/stops/203834", "https://data.delijn.be/stops/208495"], ["https://data.delijn.be/stops/501695", "https://data.delijn.be/stops/502070"], ["https://data.delijn.be/stops/402883", "https://data.delijn.be/stops/402944"], ["https://data.delijn.be/stops/301519", "https://data.delijn.be/stops/305730"], ["https://data.delijn.be/stops/200911", "https://data.delijn.be/stops/202098"], ["https://data.delijn.be/stops/405800", "https://data.delijn.be/stops/405805"], ["https://data.delijn.be/stops/303478", "https://data.delijn.be/stops/303491"], ["https://data.delijn.be/stops/404852", "https://data.delijn.be/stops/404967"], ["https://data.delijn.be/stops/407840", "https://data.delijn.be/stops/407991"], ["https://data.delijn.be/stops/507665", "https://data.delijn.be/stops/507808"], ["https://data.delijn.be/stops/500129", "https://data.delijn.be/stops/502706"], ["https://data.delijn.be/stops/101668", "https://data.delijn.be/stops/107658"], ["https://data.delijn.be/stops/508290", "https://data.delijn.be/stops/509749"], ["https://data.delijn.be/stops/201353", "https://data.delijn.be/stops/201357"], ["https://data.delijn.be/stops/504547", "https://data.delijn.be/stops/504553"], ["https://data.delijn.be/stops/303984", "https://data.delijn.be/stops/304293"], ["https://data.delijn.be/stops/304608", "https://data.delijn.be/stops/304646"], ["https://data.delijn.be/stops/103470", "https://data.delijn.be/stops/103573"], ["https://data.delijn.be/stops/101847", "https://data.delijn.be/stops/101852"], ["https://data.delijn.be/stops/405174", "https://data.delijn.be/stops/405175"], ["https://data.delijn.be/stops/102930", "https://data.delijn.be/stops/105130"], ["https://data.delijn.be/stops/200088", "https://data.delijn.be/stops/201919"], ["https://data.delijn.be/stops/202822", "https://data.delijn.be/stops/202913"], ["https://data.delijn.be/stops/303203", "https://data.delijn.be/stops/303210"], ["https://data.delijn.be/stops/300461", "https://data.delijn.be/stops/302681"], ["https://data.delijn.be/stops/502475", "https://data.delijn.be/stops/507481"], ["https://data.delijn.be/stops/101545", "https://data.delijn.be/stops/104119"], ["https://data.delijn.be/stops/304436", "https://data.delijn.be/stops/307719"], ["https://data.delijn.be/stops/301413", "https://data.delijn.be/stops/301414"], ["https://data.delijn.be/stops/102470", "https://data.delijn.be/stops/104405"], ["https://data.delijn.be/stops/306109", "https://data.delijn.be/stops/306111"], ["https://data.delijn.be/stops/104416", "https://data.delijn.be/stops/205284"], ["https://data.delijn.be/stops/404700", "https://data.delijn.be/stops/404819"], ["https://data.delijn.be/stops/409695", "https://data.delijn.be/stops/409698"], ["https://data.delijn.be/stops/109315", "https://data.delijn.be/stops/109358"], ["https://data.delijn.be/stops/506190", "https://data.delijn.be/stops/506196"], ["https://data.delijn.be/stops/200887", "https://data.delijn.be/stops/201734"], ["https://data.delijn.be/stops/400491", "https://data.delijn.be/stops/400495"], ["https://data.delijn.be/stops/301619", "https://data.delijn.be/stops/304499"], ["https://data.delijn.be/stops/307092", "https://data.delijn.be/stops/308670"], ["https://data.delijn.be/stops/502242", "https://data.delijn.be/stops/507134"], ["https://data.delijn.be/stops/401039", "https://data.delijn.be/stops/401100"], ["https://data.delijn.be/stops/103329", "https://data.delijn.be/stops/109299"], ["https://data.delijn.be/stops/101467", "https://data.delijn.be/stops/101468"], ["https://data.delijn.be/stops/303024", "https://data.delijn.be/stops/303025"], ["https://data.delijn.be/stops/406205", "https://data.delijn.be/stops/410359"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/510007"], ["https://data.delijn.be/stops/407352", "https://data.delijn.be/stops/407353"], ["https://data.delijn.be/stops/306590", "https://data.delijn.be/stops/306591"], ["https://data.delijn.be/stops/302727", "https://data.delijn.be/stops/302728"], ["https://data.delijn.be/stops/107462", "https://data.delijn.be/stops/109200"], ["https://data.delijn.be/stops/301477", "https://data.delijn.be/stops/301485"], ["https://data.delijn.be/stops/206544", "https://data.delijn.be/stops/207544"], ["https://data.delijn.be/stops/405923", "https://data.delijn.be/stops/405924"], ["https://data.delijn.be/stops/301789", "https://data.delijn.be/stops/302529"], ["https://data.delijn.be/stops/204002", "https://data.delijn.be/stops/205064"], ["https://data.delijn.be/stops/302950", "https://data.delijn.be/stops/302976"], ["https://data.delijn.be/stops/503742", "https://data.delijn.be/stops/508742"], ["https://data.delijn.be/stops/300028", "https://data.delijn.be/stops/307441"], ["https://data.delijn.be/stops/402507", "https://data.delijn.be/stops/402512"], ["https://data.delijn.be/stops/502517", "https://data.delijn.be/stops/508800"], ["https://data.delijn.be/stops/104412", "https://data.delijn.be/stops/204335"], ["https://data.delijn.be/stops/205014", "https://data.delijn.be/stops/205669"], ["https://data.delijn.be/stops/210087", "https://data.delijn.be/stops/210088"], ["https://data.delijn.be/stops/206462", "https://data.delijn.be/stops/216010"], ["https://data.delijn.be/stops/103626", "https://data.delijn.be/stops/107169"], ["https://data.delijn.be/stops/202383", "https://data.delijn.be/stops/203383"], ["https://data.delijn.be/stops/105858", "https://data.delijn.be/stops/105859"], ["https://data.delijn.be/stops/504147", "https://data.delijn.be/stops/505710"], ["https://data.delijn.be/stops/400016", "https://data.delijn.be/stops/400199"], ["https://data.delijn.be/stops/206510", "https://data.delijn.be/stops/206511"], ["https://data.delijn.be/stops/105851", "https://data.delijn.be/stops/105852"], ["https://data.delijn.be/stops/501078", "https://data.delijn.be/stops/501081"], ["https://data.delijn.be/stops/201002", "https://data.delijn.be/stops/203655"], ["https://data.delijn.be/stops/503230", "https://data.delijn.be/stops/504841"], ["https://data.delijn.be/stops/504598", "https://data.delijn.be/stops/504600"], ["https://data.delijn.be/stops/405915", "https://data.delijn.be/stops/405916"], ["https://data.delijn.be/stops/101290", "https://data.delijn.be/stops/101291"], ["https://data.delijn.be/stops/208407", "https://data.delijn.be/stops/218013"], ["https://data.delijn.be/stops/201923", "https://data.delijn.be/stops/207406"], ["https://data.delijn.be/stops/203265", "https://data.delijn.be/stops/203266"], ["https://data.delijn.be/stops/200334", "https://data.delijn.be/stops/200347"], ["https://data.delijn.be/stops/302294", "https://data.delijn.be/stops/303506"], ["https://data.delijn.be/stops/403640", "https://data.delijn.be/stops/403644"], ["https://data.delijn.be/stops/405920", "https://data.delijn.be/stops/405934"], ["https://data.delijn.be/stops/503726", "https://data.delijn.be/stops/509965"], ["https://data.delijn.be/stops/101973", "https://data.delijn.be/stops/109706"], ["https://data.delijn.be/stops/102113", "https://data.delijn.be/stops/103119"], ["https://data.delijn.be/stops/307631", "https://data.delijn.be/stops/308272"], ["https://data.delijn.be/stops/208790", "https://data.delijn.be/stops/209399"], ["https://data.delijn.be/stops/206281", "https://data.delijn.be/stops/207281"], ["https://data.delijn.be/stops/406185", "https://data.delijn.be/stops/409505"], ["https://data.delijn.be/stops/502164", "https://data.delijn.be/stops/507164"], ["https://data.delijn.be/stops/208342", "https://data.delijn.be/stops/218028"], ["https://data.delijn.be/stops/104551", "https://data.delijn.be/stops/109731"], ["https://data.delijn.be/stops/209087", "https://data.delijn.be/stops/209154"], ["https://data.delijn.be/stops/407468", "https://data.delijn.be/stops/407469"], ["https://data.delijn.be/stops/301903", "https://data.delijn.be/stops/301904"], ["https://data.delijn.be/stops/301490", "https://data.delijn.be/stops/301507"], ["https://data.delijn.be/stops/502143", "https://data.delijn.be/stops/502151"], ["https://data.delijn.be/stops/203894", "https://data.delijn.be/stops/209287"], ["https://data.delijn.be/stops/300938", "https://data.delijn.be/stops/307792"], ["https://data.delijn.be/stops/302452", "https://data.delijn.be/stops/302453"], ["https://data.delijn.be/stops/205106", "https://data.delijn.be/stops/205757"], ["https://data.delijn.be/stops/104464", "https://data.delijn.be/stops/104467"], ["https://data.delijn.be/stops/101565", "https://data.delijn.be/stops/102375"], ["https://data.delijn.be/stops/305498", "https://data.delijn.be/stops/307989"], ["https://data.delijn.be/stops/501031", "https://data.delijn.be/stops/506031"], ["https://data.delijn.be/stops/507110", "https://data.delijn.be/stops/507136"], ["https://data.delijn.be/stops/201967", "https://data.delijn.be/stops/206796"], ["https://data.delijn.be/stops/400178", "https://data.delijn.be/stops/400295"], ["https://data.delijn.be/stops/402471", "https://data.delijn.be/stops/406868"], ["https://data.delijn.be/stops/502384", "https://data.delijn.be/stops/509794"], ["https://data.delijn.be/stops/301925", "https://data.delijn.be/stops/307827"], ["https://data.delijn.be/stops/505154", "https://data.delijn.be/stops/505328"], ["https://data.delijn.be/stops/106187", "https://data.delijn.be/stops/109860"], ["https://data.delijn.be/stops/208049", "https://data.delijn.be/stops/209048"], ["https://data.delijn.be/stops/206475", "https://data.delijn.be/stops/207508"], ["https://data.delijn.be/stops/509231", "https://data.delijn.be/stops/509233"], ["https://data.delijn.be/stops/407910", "https://data.delijn.be/stops/407912"], ["https://data.delijn.be/stops/105625", "https://data.delijn.be/stops/105910"], ["https://data.delijn.be/stops/307693", "https://data.delijn.be/stops/307695"], ["https://data.delijn.be/stops/208681", "https://data.delijn.be/stops/209664"], ["https://data.delijn.be/stops/303448", "https://data.delijn.be/stops/307281"], ["https://data.delijn.be/stops/400043", "https://data.delijn.be/stops/400307"], ["https://data.delijn.be/stops/106767", "https://data.delijn.be/stops/106768"], ["https://data.delijn.be/stops/108083", "https://data.delijn.be/stops/108450"], ["https://data.delijn.be/stops/105249", "https://data.delijn.be/stops/105841"], ["https://data.delijn.be/stops/502603", "https://data.delijn.be/stops/507601"], ["https://data.delijn.be/stops/200507", "https://data.delijn.be/stops/210133"], ["https://data.delijn.be/stops/407866", "https://data.delijn.be/stops/407867"], ["https://data.delijn.be/stops/301303", "https://data.delijn.be/stops/301306"], ["https://data.delijn.be/stops/202036", "https://data.delijn.be/stops/203985"], ["https://data.delijn.be/stops/406926", "https://data.delijn.be/stops/406969"], ["https://data.delijn.be/stops/401752", "https://data.delijn.be/stops/406333"], ["https://data.delijn.be/stops/407422", "https://data.delijn.be/stops/407423"], ["https://data.delijn.be/stops/106961", "https://data.delijn.be/stops/109722"], ["https://data.delijn.be/stops/200605", "https://data.delijn.be/stops/201604"], ["https://data.delijn.be/stops/505345", "https://data.delijn.be/stops/505833"], ["https://data.delijn.be/stops/502251", "https://data.delijn.be/stops/502253"], ["https://data.delijn.be/stops/105486", "https://data.delijn.be/stops/105496"], ["https://data.delijn.be/stops/410188", "https://data.delijn.be/stops/410246"], ["https://data.delijn.be/stops/502334", "https://data.delijn.be/stops/505338"], ["https://data.delijn.be/stops/305394", "https://data.delijn.be/stops/305402"], ["https://data.delijn.be/stops/109002", "https://data.delijn.be/stops/109004"], ["https://data.delijn.be/stops/401104", "https://data.delijn.be/stops/409220"], ["https://data.delijn.be/stops/208072", "https://data.delijn.be/stops/209073"], ["https://data.delijn.be/stops/300380", "https://data.delijn.be/stops/306156"], ["https://data.delijn.be/stops/202165", "https://data.delijn.be/stops/205071"], ["https://data.delijn.be/stops/502326", "https://data.delijn.be/stops/502338"], ["https://data.delijn.be/stops/308929", "https://data.delijn.be/stops/308930"], ["https://data.delijn.be/stops/207544", "https://data.delijn.be/stops/207545"], ["https://data.delijn.be/stops/103746", "https://data.delijn.be/stops/105793"], ["https://data.delijn.be/stops/504154", "https://data.delijn.be/stops/509154"], ["https://data.delijn.be/stops/410199", "https://data.delijn.be/stops/410262"], ["https://data.delijn.be/stops/300189", "https://data.delijn.be/stops/300190"], ["https://data.delijn.be/stops/502118", "https://data.delijn.be/stops/502619"], ["https://data.delijn.be/stops/510022", "https://data.delijn.be/stops/510025"], ["https://data.delijn.be/stops/307308", "https://data.delijn.be/stops/307334"], ["https://data.delijn.be/stops/506464", "https://data.delijn.be/stops/506479"], ["https://data.delijn.be/stops/201467", "https://data.delijn.be/stops/202211"], ["https://data.delijn.be/stops/205149", "https://data.delijn.be/stops/205154"], ["https://data.delijn.be/stops/107110", "https://data.delijn.be/stops/108815"], ["https://data.delijn.be/stops/503386", "https://data.delijn.be/stops/509790"], ["https://data.delijn.be/stops/204235", "https://data.delijn.be/stops/205597"], ["https://data.delijn.be/stops/102874", "https://data.delijn.be/stops/103749"], ["https://data.delijn.be/stops/302421", "https://data.delijn.be/stops/308814"], ["https://data.delijn.be/stops/203125", "https://data.delijn.be/stops/203600"], ["https://data.delijn.be/stops/300572", "https://data.delijn.be/stops/307864"], ["https://data.delijn.be/stops/302082", "https://data.delijn.be/stops/302083"], ["https://data.delijn.be/stops/200446", "https://data.delijn.be/stops/201027"], ["https://data.delijn.be/stops/307005", "https://data.delijn.be/stops/307006"], ["https://data.delijn.be/stops/106118", "https://data.delijn.be/stops/106119"], ["https://data.delijn.be/stops/301568", "https://data.delijn.be/stops/308080"], ["https://data.delijn.be/stops/302111", "https://data.delijn.be/stops/304140"], ["https://data.delijn.be/stops/503385", "https://data.delijn.be/stops/508410"], ["https://data.delijn.be/stops/305480", "https://data.delijn.be/stops/305481"], ["https://data.delijn.be/stops/305660", "https://data.delijn.be/stops/305670"], ["https://data.delijn.be/stops/402065", "https://data.delijn.be/stops/405555"], ["https://data.delijn.be/stops/503305", "https://data.delijn.be/stops/504859"], ["https://data.delijn.be/stops/105332", "https://data.delijn.be/stops/204029"], ["https://data.delijn.be/stops/404428", "https://data.delijn.be/stops/404485"], ["https://data.delijn.be/stops/303852", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/300263", "https://data.delijn.be/stops/307495"], ["https://data.delijn.be/stops/302104", "https://data.delijn.be/stops/305637"], ["https://data.delijn.be/stops/108326", "https://data.delijn.be/stops/109305"], ["https://data.delijn.be/stops/406425", "https://data.delijn.be/stops/409395"], ["https://data.delijn.be/stops/401220", "https://data.delijn.be/stops/401267"], ["https://data.delijn.be/stops/402100", "https://data.delijn.be/stops/402331"], ["https://data.delijn.be/stops/304880", "https://data.delijn.be/stops/304885"], ["https://data.delijn.be/stops/206564", "https://data.delijn.be/stops/206577"], ["https://data.delijn.be/stops/200781", "https://data.delijn.be/stops/211094"], ["https://data.delijn.be/stops/203957", "https://data.delijn.be/stops/203958"], ["https://data.delijn.be/stops/202678", "https://data.delijn.be/stops/202690"], ["https://data.delijn.be/stops/101943", "https://data.delijn.be/stops/108756"], ["https://data.delijn.be/stops/505163", "https://data.delijn.be/stops/509413"], ["https://data.delijn.be/stops/109256", "https://data.delijn.be/stops/109277"], ["https://data.delijn.be/stops/206441", "https://data.delijn.be/stops/209465"], ["https://data.delijn.be/stops/503767", "https://data.delijn.be/stops/503769"], ["https://data.delijn.be/stops/501445", "https://data.delijn.be/stops/501741"], ["https://data.delijn.be/stops/206591", "https://data.delijn.be/stops/207591"], ["https://data.delijn.be/stops/401987", "https://data.delijn.be/stops/403885"], ["https://data.delijn.be/stops/504697", "https://data.delijn.be/stops/505970"], ["https://data.delijn.be/stops/407911", "https://data.delijn.be/stops/408019"], ["https://data.delijn.be/stops/503482", "https://data.delijn.be/stops/503489"], ["https://data.delijn.be/stops/502171", "https://data.delijn.be/stops/502802"], ["https://data.delijn.be/stops/108211", "https://data.delijn.be/stops/108213"], ["https://data.delijn.be/stops/200473", "https://data.delijn.be/stops/211061"], ["https://data.delijn.be/stops/403598", "https://data.delijn.be/stops/406332"], ["https://data.delijn.be/stops/508330", "https://data.delijn.be/stops/508331"], ["https://data.delijn.be/stops/403280", "https://data.delijn.be/stops/403283"], ["https://data.delijn.be/stops/401035", "https://data.delijn.be/stops/401036"], ["https://data.delijn.be/stops/202311", "https://data.delijn.be/stops/203793"], ["https://data.delijn.be/stops/504342", "https://data.delijn.be/stops/504343"], ["https://data.delijn.be/stops/105006", "https://data.delijn.be/stops/105078"], ["https://data.delijn.be/stops/502562", "https://data.delijn.be/stops/507563"], ["https://data.delijn.be/stops/505148", "https://data.delijn.be/stops/505149"], ["https://data.delijn.be/stops/102597", "https://data.delijn.be/stops/104917"], ["https://data.delijn.be/stops/303562", "https://data.delijn.be/stops/305879"], ["https://data.delijn.be/stops/204646", "https://data.delijn.be/stops/204772"], ["https://data.delijn.be/stops/200811", "https://data.delijn.be/stops/202050"], ["https://data.delijn.be/stops/502446", "https://data.delijn.be/stops/507588"], ["https://data.delijn.be/stops/304370", "https://data.delijn.be/stops/307386"], ["https://data.delijn.be/stops/507261", "https://data.delijn.be/stops/507510"], ["https://data.delijn.be/stops/105471", "https://data.delijn.be/stops/109934"], ["https://data.delijn.be/stops/406975", "https://data.delijn.be/stops/409465"], ["https://data.delijn.be/stops/204783", "https://data.delijn.be/stops/205791"], ["https://data.delijn.be/stops/409654", "https://data.delijn.be/stops/409660"], ["https://data.delijn.be/stops/208628", "https://data.delijn.be/stops/209057"], ["https://data.delijn.be/stops/503185", "https://data.delijn.be/stops/503187"], ["https://data.delijn.be/stops/106243", "https://data.delijn.be/stops/106245"], ["https://data.delijn.be/stops/407859", "https://data.delijn.be/stops/407909"], ["https://data.delijn.be/stops/501229", "https://data.delijn.be/stops/506229"], ["https://data.delijn.be/stops/204707", "https://data.delijn.be/stops/205667"], ["https://data.delijn.be/stops/200681", "https://data.delijn.be/stops/201711"], ["https://data.delijn.be/stops/303306", "https://data.delijn.be/stops/308920"], ["https://data.delijn.be/stops/203878", "https://data.delijn.be/stops/203881"], ["https://data.delijn.be/stops/404457", "https://data.delijn.be/stops/404583"], ["https://data.delijn.be/stops/401783", "https://data.delijn.be/stops/401810"], ["https://data.delijn.be/stops/203448", "https://data.delijn.be/stops/203484"], ["https://data.delijn.be/stops/400242", "https://data.delijn.be/stops/400934"], ["https://data.delijn.be/stops/407497", "https://data.delijn.be/stops/409490"], ["https://data.delijn.be/stops/103631", "https://data.delijn.be/stops/107568"], ["https://data.delijn.be/stops/405392", "https://data.delijn.be/stops/405393"], ["https://data.delijn.be/stops/406478", "https://data.delijn.be/stops/406495"], ["https://data.delijn.be/stops/303980", "https://data.delijn.be/stops/306595"], ["https://data.delijn.be/stops/208000", "https://data.delijn.be/stops/208014"], ["https://data.delijn.be/stops/408844", "https://data.delijn.be/stops/408848"], ["https://data.delijn.be/stops/105911", "https://data.delijn.be/stops/105912"], ["https://data.delijn.be/stops/208371", "https://data.delijn.be/stops/208372"], ["https://data.delijn.be/stops/105887", "https://data.delijn.be/stops/105891"], ["https://data.delijn.be/stops/304011", "https://data.delijn.be/stops/304912"], ["https://data.delijn.be/stops/101404", "https://data.delijn.be/stops/101406"], ["https://data.delijn.be/stops/101025", "https://data.delijn.be/stops/105490"], ["https://data.delijn.be/stops/101188", "https://data.delijn.be/stops/103238"], ["https://data.delijn.be/stops/404522", "https://data.delijn.be/stops/406797"], ["https://data.delijn.be/stops/400313", "https://data.delijn.be/stops/400432"], ["https://data.delijn.be/stops/108919", "https://data.delijn.be/stops/109411"], ["https://data.delijn.be/stops/200087", "https://data.delijn.be/stops/203209"], ["https://data.delijn.be/stops/104366", "https://data.delijn.be/stops/104399"], ["https://data.delijn.be/stops/304931", "https://data.delijn.be/stops/304932"], ["https://data.delijn.be/stops/101507", "https://data.delijn.be/stops/109029"], ["https://data.delijn.be/stops/406002", "https://data.delijn.be/stops/407915"], ["https://data.delijn.be/stops/204238", "https://data.delijn.be/stops/205234"], ["https://data.delijn.be/stops/501070", "https://data.delijn.be/stops/501379"], ["https://data.delijn.be/stops/300077", "https://data.delijn.be/stops/306786"], ["https://data.delijn.be/stops/101703", "https://data.delijn.be/stops/103349"], ["https://data.delijn.be/stops/303183", "https://data.delijn.be/stops/303190"], ["https://data.delijn.be/stops/501197", "https://data.delijn.be/stops/506193"], ["https://data.delijn.be/stops/502429", "https://data.delijn.be/stops/502436"], ["https://data.delijn.be/stops/106110", "https://data.delijn.be/stops/106173"], ["https://data.delijn.be/stops/401753", "https://data.delijn.be/stops/406333"], ["https://data.delijn.be/stops/403613", "https://data.delijn.be/stops/403654"], ["https://data.delijn.be/stops/304956", "https://data.delijn.be/stops/304965"], ["https://data.delijn.be/stops/300347", "https://data.delijn.be/stops/304545"], ["https://data.delijn.be/stops/104993", "https://data.delijn.be/stops/406468"], ["https://data.delijn.be/stops/301873", "https://data.delijn.be/stops/301874"], ["https://data.delijn.be/stops/107956", "https://data.delijn.be/stops/109777"], ["https://data.delijn.be/stops/204721", "https://data.delijn.be/stops/205712"], ["https://data.delijn.be/stops/302035", "https://data.delijn.be/stops/303657"], ["https://data.delijn.be/stops/103222", "https://data.delijn.be/stops/107910"], ["https://data.delijn.be/stops/403427", "https://data.delijn.be/stops/403688"], ["https://data.delijn.be/stops/109124", "https://data.delijn.be/stops/109126"], ["https://data.delijn.be/stops/508042", "https://data.delijn.be/stops/509206"], ["https://data.delijn.be/stops/200162", "https://data.delijn.be/stops/201384"], ["https://data.delijn.be/stops/307705", "https://data.delijn.be/stops/308593"], ["https://data.delijn.be/stops/108353", "https://data.delijn.be/stops/109337"], ["https://data.delijn.be/stops/405922", "https://data.delijn.be/stops/405931"], ["https://data.delijn.be/stops/405083", "https://data.delijn.be/stops/405090"], ["https://data.delijn.be/stops/308147", "https://data.delijn.be/stops/308174"], ["https://data.delijn.be/stops/206627", "https://data.delijn.be/stops/206764"], ["https://data.delijn.be/stops/403276", "https://data.delijn.be/stops/403561"], ["https://data.delijn.be/stops/401961", "https://data.delijn.be/stops/410109"], ["https://data.delijn.be/stops/300503", "https://data.delijn.be/stops/300534"], ["https://data.delijn.be/stops/209258", "https://data.delijn.be/stops/209259"], ["https://data.delijn.be/stops/206994", "https://data.delijn.be/stops/207994"], ["https://data.delijn.be/stops/400122", "https://data.delijn.be/stops/409199"], ["https://data.delijn.be/stops/504388", "https://data.delijn.be/stops/509387"], ["https://data.delijn.be/stops/304760", "https://data.delijn.be/stops/304771"], ["https://data.delijn.be/stops/202023", "https://data.delijn.be/stops/203003"], ["https://data.delijn.be/stops/302438", "https://data.delijn.be/stops/302444"], ["https://data.delijn.be/stops/403257", "https://data.delijn.be/stops/403379"], ["https://data.delijn.be/stops/507689", "https://data.delijn.be/stops/509736"], ["https://data.delijn.be/stops/106771", "https://data.delijn.be/stops/106809"], ["https://data.delijn.be/stops/202012", "https://data.delijn.be/stops/210070"], ["https://data.delijn.be/stops/401219", "https://data.delijn.be/stops/401228"], ["https://data.delijn.be/stops/405128", "https://data.delijn.be/stops/405496"], ["https://data.delijn.be/stops/403730", "https://data.delijn.be/stops/403731"], ["https://data.delijn.be/stops/109507", "https://data.delijn.be/stops/109508"], ["https://data.delijn.be/stops/305142", "https://data.delijn.be/stops/305143"], ["https://data.delijn.be/stops/505084", "https://data.delijn.be/stops/508021"], ["https://data.delijn.be/stops/106789", "https://data.delijn.be/stops/106793"], ["https://data.delijn.be/stops/404165", "https://data.delijn.be/stops/404172"], ["https://data.delijn.be/stops/207801", "https://data.delijn.be/stops/306069"], ["https://data.delijn.be/stops/402477", "https://data.delijn.be/stops/407395"], ["https://data.delijn.be/stops/301724", "https://data.delijn.be/stops/303466"], ["https://data.delijn.be/stops/505580", "https://data.delijn.be/stops/508110"], ["https://data.delijn.be/stops/403621", "https://data.delijn.be/stops/403631"], ["https://data.delijn.be/stops/302716", "https://data.delijn.be/stops/302725"], ["https://data.delijn.be/stops/201690", "https://data.delijn.be/stops/210104"], ["https://data.delijn.be/stops/102646", "https://data.delijn.be/stops/107928"], ["https://data.delijn.be/stops/200259", "https://data.delijn.be/stops/201260"], ["https://data.delijn.be/stops/504285", "https://data.delijn.be/stops/509289"], ["https://data.delijn.be/stops/506410", "https://data.delijn.be/stops/506411"], ["https://data.delijn.be/stops/406212", "https://data.delijn.be/stops/406214"], ["https://data.delijn.be/stops/103135", "https://data.delijn.be/stops/104905"], ["https://data.delijn.be/stops/109801", "https://data.delijn.be/stops/109803"], ["https://data.delijn.be/stops/206655", "https://data.delijn.be/stops/206868"], ["https://data.delijn.be/stops/300920", "https://data.delijn.be/stops/307795"], ["https://data.delijn.be/stops/402243", "https://data.delijn.be/stops/402328"], ["https://data.delijn.be/stops/204481", "https://data.delijn.be/stops/205482"], ["https://data.delijn.be/stops/502660", "https://data.delijn.be/stops/507661"], ["https://data.delijn.be/stops/306118", "https://data.delijn.be/stops/306119"], ["https://data.delijn.be/stops/202583", "https://data.delijn.be/stops/211851"], ["https://data.delijn.be/stops/403858", "https://data.delijn.be/stops/410109"], ["https://data.delijn.be/stops/401179", "https://data.delijn.be/stops/401220"], ["https://data.delijn.be/stops/300725", "https://data.delijn.be/stops/300736"], ["https://data.delijn.be/stops/305344", "https://data.delijn.be/stops/307970"], ["https://data.delijn.be/stops/207665", "https://data.delijn.be/stops/209468"], ["https://data.delijn.be/stops/501212", "https://data.delijn.be/stops/506222"], ["https://data.delijn.be/stops/504882", "https://data.delijn.be/stops/505599"], ["https://data.delijn.be/stops/302382", "https://data.delijn.be/stops/307966"], ["https://data.delijn.be/stops/303735", "https://data.delijn.be/stops/303795"], ["https://data.delijn.be/stops/300275", "https://data.delijn.be/stops/300277"], ["https://data.delijn.be/stops/103082", "https://data.delijn.be/stops/107378"], ["https://data.delijn.be/stops/201886", "https://data.delijn.be/stops/205995"], ["https://data.delijn.be/stops/402698", "https://data.delijn.be/stops/402871"], ["https://data.delijn.be/stops/301713", "https://data.delijn.be/stops/305328"], ["https://data.delijn.be/stops/400800", "https://data.delijn.be/stops/409613"], ["https://data.delijn.be/stops/202098", "https://data.delijn.be/stops/203099"], ["https://data.delijn.be/stops/106801", "https://data.delijn.be/stops/106802"], ["https://data.delijn.be/stops/502711", "https://data.delijn.be/stops/507335"], ["https://data.delijn.be/stops/202745", "https://data.delijn.be/stops/203744"], ["https://data.delijn.be/stops/503602", "https://data.delijn.be/stops/505196"], ["https://data.delijn.be/stops/109440", "https://data.delijn.be/stops/109442"], ["https://data.delijn.be/stops/306392", "https://data.delijn.be/stops/306394"], ["https://data.delijn.be/stops/502350", "https://data.delijn.be/stops/505233"], ["https://data.delijn.be/stops/206773", "https://data.delijn.be/stops/209092"], ["https://data.delijn.be/stops/303616", "https://data.delijn.be/stops/306317"], ["https://data.delijn.be/stops/209601", "https://data.delijn.be/stops/305334"], ["https://data.delijn.be/stops/509116", "https://data.delijn.be/stops/509134"], ["https://data.delijn.be/stops/406735", "https://data.delijn.be/stops/407626"], ["https://data.delijn.be/stops/206946", "https://data.delijn.be/stops/207946"], ["https://data.delijn.be/stops/200598", "https://data.delijn.be/stops/211129"], ["https://data.delijn.be/stops/504943", "https://data.delijn.be/stops/505534"], ["https://data.delijn.be/stops/105103", "https://data.delijn.be/stops/107634"], ["https://data.delijn.be/stops/300124", "https://data.delijn.be/stops/300148"], ["https://data.delijn.be/stops/101601", "https://data.delijn.be/stops/106028"], ["https://data.delijn.be/stops/304030", "https://data.delijn.be/stops/307991"], ["https://data.delijn.be/stops/206369", "https://data.delijn.be/stops/207370"], ["https://data.delijn.be/stops/108475", "https://data.delijn.be/stops/109567"], ["https://data.delijn.be/stops/207555", "https://data.delijn.be/stops/207582"], ["https://data.delijn.be/stops/208771", "https://data.delijn.be/stops/208772"], ["https://data.delijn.be/stops/108851", "https://data.delijn.be/stops/108853"], ["https://data.delijn.be/stops/507484", "https://data.delijn.be/stops/508592"], ["https://data.delijn.be/stops/405304", "https://data.delijn.be/stops/408078"], ["https://data.delijn.be/stops/200957", "https://data.delijn.be/stops/202670"], ["https://data.delijn.be/stops/204239", "https://data.delijn.be/stops/205095"], ["https://data.delijn.be/stops/103281", "https://data.delijn.be/stops/103282"], ["https://data.delijn.be/stops/202297", "https://data.delijn.be/stops/203296"], ["https://data.delijn.be/stops/501694", "https://data.delijn.be/stops/507531"], ["https://data.delijn.be/stops/403302", "https://data.delijn.be/stops/405643"], ["https://data.delijn.be/stops/502405", "https://data.delijn.be/stops/507909"], ["https://data.delijn.be/stops/109090", "https://data.delijn.be/stops/109853"], ["https://data.delijn.be/stops/301393", "https://data.delijn.be/stops/301397"], ["https://data.delijn.be/stops/102864", "https://data.delijn.be/stops/105778"], ["https://data.delijn.be/stops/504665", "https://data.delijn.be/stops/509508"], ["https://data.delijn.be/stops/504531", "https://data.delijn.be/stops/509522"], ["https://data.delijn.be/stops/502034", "https://data.delijn.be/stops/507034"], ["https://data.delijn.be/stops/101706", "https://data.delijn.be/stops/102162"], ["https://data.delijn.be/stops/503989", "https://data.delijn.be/stops/508989"], ["https://data.delijn.be/stops/306914", "https://data.delijn.be/stops/306915"], ["https://data.delijn.be/stops/405335", "https://data.delijn.be/stops/405370"], ["https://data.delijn.be/stops/301305", "https://data.delijn.be/stops/306007"], ["https://data.delijn.be/stops/302705", "https://data.delijn.be/stops/302731"], ["https://data.delijn.be/stops/102991", "https://data.delijn.be/stops/105579"], ["https://data.delijn.be/stops/503419", "https://data.delijn.be/stops/503437"], ["https://data.delijn.be/stops/304561", "https://data.delijn.be/stops/304653"], ["https://data.delijn.be/stops/102448", "https://data.delijn.be/stops/103758"], ["https://data.delijn.be/stops/306182", "https://data.delijn.be/stops/306291"], ["https://data.delijn.be/stops/406834", "https://data.delijn.be/stops/407141"], ["https://data.delijn.be/stops/405879", "https://data.delijn.be/stops/409748"], ["https://data.delijn.be/stops/202604", "https://data.delijn.be/stops/203604"], ["https://data.delijn.be/stops/505828", "https://data.delijn.be/stops/509451"], ["https://data.delijn.be/stops/407744", "https://data.delijn.be/stops/409780"], ["https://data.delijn.be/stops/503999", "https://data.delijn.be/stops/509752"], ["https://data.delijn.be/stops/202755", "https://data.delijn.be/stops/203754"], ["https://data.delijn.be/stops/401248", "https://data.delijn.be/stops/401257"], ["https://data.delijn.be/stops/509122", "https://data.delijn.be/stops/509259"], ["https://data.delijn.be/stops/300669", "https://data.delijn.be/stops/305960"], ["https://data.delijn.be/stops/207241", "https://data.delijn.be/stops/207242"], ["https://data.delijn.be/stops/408244", "https://data.delijn.be/stops/308199"], ["https://data.delijn.be/stops/402017", "https://data.delijn.be/stops/402977"], ["https://data.delijn.be/stops/304019", "https://data.delijn.be/stops/308529"], ["https://data.delijn.be/stops/201288", "https://data.delijn.be/stops/201377"], ["https://data.delijn.be/stops/401477", "https://data.delijn.be/stops/410305"], ["https://data.delijn.be/stops/106089", "https://data.delijn.be/stops/106091"], ["https://data.delijn.be/stops/105504", "https://data.delijn.be/stops/105507"], ["https://data.delijn.be/stops/203858", "https://data.delijn.be/stops/208714"], ["https://data.delijn.be/stops/106064", "https://data.delijn.be/stops/106067"], ["https://data.delijn.be/stops/107334", "https://data.delijn.be/stops/107337"], ["https://data.delijn.be/stops/208211", "https://data.delijn.be/stops/208792"], ["https://data.delijn.be/stops/408896", "https://data.delijn.be/stops/408910"], ["https://data.delijn.be/stops/105297", "https://data.delijn.be/stops/109970"], ["https://data.delijn.be/stops/410053", "https://data.delijn.be/stops/410054"], ["https://data.delijn.be/stops/406767", "https://data.delijn.be/stops/410264"], ["https://data.delijn.be/stops/303148", "https://data.delijn.be/stops/304909"], ["https://data.delijn.be/stops/502121", "https://data.delijn.be/stops/507121"], ["https://data.delijn.be/stops/200967", "https://data.delijn.be/stops/204930"], ["https://data.delijn.be/stops/102473", "https://data.delijn.be/stops/405253"], ["https://data.delijn.be/stops/102192", "https://data.delijn.be/stops/105354"], ["https://data.delijn.be/stops/201895", "https://data.delijn.be/stops/202849"], ["https://data.delijn.be/stops/402653", "https://data.delijn.be/stops/405655"], ["https://data.delijn.be/stops/303066", "https://data.delijn.be/stops/303067"], ["https://data.delijn.be/stops/101760", "https://data.delijn.be/stops/103491"], ["https://data.delijn.be/stops/106761", "https://data.delijn.be/stops/107514"], ["https://data.delijn.be/stops/203558", "https://data.delijn.be/stops/203608"], ["https://data.delijn.be/stops/503315", "https://data.delijn.be/stops/505826"], ["https://data.delijn.be/stops/406310", "https://data.delijn.be/stops/406311"], ["https://data.delijn.be/stops/103201", "https://data.delijn.be/stops/108673"], ["https://data.delijn.be/stops/205615", "https://data.delijn.be/stops/205680"], ["https://data.delijn.be/stops/508426", "https://data.delijn.be/stops/508446"], ["https://data.delijn.be/stops/303087", "https://data.delijn.be/stops/308655"], ["https://data.delijn.be/stops/200906", "https://data.delijn.be/stops/200932"], ["https://data.delijn.be/stops/405155", "https://data.delijn.be/stops/405252"], ["https://data.delijn.be/stops/301698", "https://data.delijn.be/stops/301742"], ["https://data.delijn.be/stops/305146", "https://data.delijn.be/stops/305187"], ["https://data.delijn.be/stops/501413", "https://data.delijn.be/stops/506410"], ["https://data.delijn.be/stops/204198", "https://data.delijn.be/stops/205198"], ["https://data.delijn.be/stops/300763", "https://data.delijn.be/stops/300764"], ["https://data.delijn.be/stops/505269", "https://data.delijn.be/stops/508595"], ["https://data.delijn.be/stops/102182", "https://data.delijn.be/stops/103041"], ["https://data.delijn.be/stops/102308", "https://data.delijn.be/stops/105658"], ["https://data.delijn.be/stops/301626", "https://data.delijn.be/stops/301629"], ["https://data.delijn.be/stops/400645", "https://data.delijn.be/stops/400904"], ["https://data.delijn.be/stops/505794", "https://data.delijn.be/stops/509369"], ["https://data.delijn.be/stops/306918", "https://data.delijn.be/stops/306919"], ["https://data.delijn.be/stops/502500", "https://data.delijn.be/stops/507636"], ["https://data.delijn.be/stops/400576", "https://data.delijn.be/stops/400577"], ["https://data.delijn.be/stops/503673", "https://data.delijn.be/stops/508673"], ["https://data.delijn.be/stops/202550", "https://data.delijn.be/stops/203552"], ["https://data.delijn.be/stops/403595", "https://data.delijn.be/stops/409659"], ["https://data.delijn.be/stops/204644", "https://data.delijn.be/stops/205645"], ["https://data.delijn.be/stops/503595", "https://data.delijn.be/stops/505269"], ["https://data.delijn.be/stops/304401", "https://data.delijn.be/stops/307417"], ["https://data.delijn.be/stops/206597", "https://data.delijn.be/stops/209665"], ["https://data.delijn.be/stops/305588", "https://data.delijn.be/stops/307514"], ["https://data.delijn.be/stops/506760", "https://data.delijn.be/stops/509932"], ["https://data.delijn.be/stops/503453", "https://data.delijn.be/stops/504809"], ["https://data.delijn.be/stops/503840", "https://data.delijn.be/stops/503860"], ["https://data.delijn.be/stops/401801", "https://data.delijn.be/stops/401817"], ["https://data.delijn.be/stops/407629", "https://data.delijn.be/stops/409786"], ["https://data.delijn.be/stops/101388", "https://data.delijn.be/stops/107106"], ["https://data.delijn.be/stops/102612", "https://data.delijn.be/stops/102632"], ["https://data.delijn.be/stops/501415", "https://data.delijn.be/stops/506475"], ["https://data.delijn.be/stops/403058", "https://data.delijn.be/stops/403582"], ["https://data.delijn.be/stops/308151", "https://data.delijn.be/stops/308164"], ["https://data.delijn.be/stops/503479", "https://data.delijn.be/stops/504391"], ["https://data.delijn.be/stops/508867", "https://data.delijn.be/stops/508871"], ["https://data.delijn.be/stops/503313", "https://data.delijn.be/stops/508313"], ["https://data.delijn.be/stops/204540", "https://data.delijn.be/stops/205299"], ["https://data.delijn.be/stops/204260", "https://data.delijn.be/stops/204465"], ["https://data.delijn.be/stops/205180", "https://data.delijn.be/stops/205217"], ["https://data.delijn.be/stops/501224", "https://data.delijn.be/stops/505234"], ["https://data.delijn.be/stops/306606", "https://data.delijn.be/stops/306608"], ["https://data.delijn.be/stops/102912", "https://data.delijn.be/stops/106707"], ["https://data.delijn.be/stops/101593", "https://data.delijn.be/stops/103279"], ["https://data.delijn.be/stops/504097", "https://data.delijn.be/stops/505190"], ["https://data.delijn.be/stops/202120", "https://data.delijn.be/stops/205072"], ["https://data.delijn.be/stops/505144", "https://data.delijn.be/stops/509931"], ["https://data.delijn.be/stops/505971", "https://data.delijn.be/stops/509604"], ["https://data.delijn.be/stops/209143", "https://data.delijn.be/stops/218030"], ["https://data.delijn.be/stops/206686", "https://data.delijn.be/stops/207355"], ["https://data.delijn.be/stops/206491", "https://data.delijn.be/stops/207491"], ["https://data.delijn.be/stops/200738", "https://data.delijn.be/stops/202598"], ["https://data.delijn.be/stops/402817", "https://data.delijn.be/stops/402819"], ["https://data.delijn.be/stops/504466", "https://data.delijn.be/stops/505855"], ["https://data.delijn.be/stops/202310", "https://data.delijn.be/stops/203754"], ["https://data.delijn.be/stops/305253", "https://data.delijn.be/stops/305320"], ["https://data.delijn.be/stops/505410", "https://data.delijn.be/stops/509813"], ["https://data.delijn.be/stops/108953", "https://data.delijn.be/stops/108956"], ["https://data.delijn.be/stops/300886", "https://data.delijn.be/stops/300887"], ["https://data.delijn.be/stops/508480", "https://data.delijn.be/stops/509046"], ["https://data.delijn.be/stops/408766", "https://data.delijn.be/stops/408767"], ["https://data.delijn.be/stops/501090", "https://data.delijn.be/stops/501098"], ["https://data.delijn.be/stops/503463", "https://data.delijn.be/stops/508455"], ["https://data.delijn.be/stops/507092", "https://data.delijn.be/stops/507126"], ["https://data.delijn.be/stops/104839", "https://data.delijn.be/stops/109457"], ["https://data.delijn.be/stops/409249", "https://data.delijn.be/stops/409778"], ["https://data.delijn.be/stops/205312", "https://data.delijn.be/stops/205354"], ["https://data.delijn.be/stops/104992", "https://data.delijn.be/stops/104993"], ["https://data.delijn.be/stops/205672", "https://data.delijn.be/stops/205673"], ["https://data.delijn.be/stops/500929", "https://data.delijn.be/stops/500930"], ["https://data.delijn.be/stops/402204", "https://data.delijn.be/stops/402333"], ["https://data.delijn.be/stops/500118", "https://data.delijn.be/stops/505671"], ["https://data.delijn.be/stops/208050", "https://data.delijn.be/stops/209050"], ["https://data.delijn.be/stops/103574", "https://data.delijn.be/stops/109650"], ["https://data.delijn.be/stops/103076", "https://data.delijn.be/stops/109523"], ["https://data.delijn.be/stops/106989", "https://data.delijn.be/stops/109664"], ["https://data.delijn.be/stops/206478", "https://data.delijn.be/stops/207448"], ["https://data.delijn.be/stops/205024", "https://data.delijn.be/stops/205025"], ["https://data.delijn.be/stops/300452", "https://data.delijn.be/stops/306288"], ["https://data.delijn.be/stops/207408", "https://data.delijn.be/stops/210009"], ["https://data.delijn.be/stops/302682", "https://data.delijn.be/stops/306183"], ["https://data.delijn.be/stops/208047", "https://data.delijn.be/stops/209489"], ["https://data.delijn.be/stops/405034", "https://data.delijn.be/stops/405035"], ["https://data.delijn.be/stops/504399", "https://data.delijn.be/stops/509415"], ["https://data.delijn.be/stops/107058", "https://data.delijn.be/stops/107060"], ["https://data.delijn.be/stops/504244", "https://data.delijn.be/stops/509398"], ["https://data.delijn.be/stops/304676", "https://data.delijn.be/stops/304677"], ["https://data.delijn.be/stops/303773", "https://data.delijn.be/stops/303774"], ["https://data.delijn.be/stops/214004", "https://data.delijn.be/stops/214005"], ["https://data.delijn.be/stops/502814", "https://data.delijn.be/stops/505955"], ["https://data.delijn.be/stops/501744", "https://data.delijn.be/stops/504124"], ["https://data.delijn.be/stops/301612", "https://data.delijn.be/stops/301617"], ["https://data.delijn.be/stops/101063", "https://data.delijn.be/stops/106008"], ["https://data.delijn.be/stops/104105", "https://data.delijn.be/stops/104590"], ["https://data.delijn.be/stops/503733", "https://data.delijn.be/stops/508732"], ["https://data.delijn.be/stops/402780", "https://data.delijn.be/stops/404042"], ["https://data.delijn.be/stops/104934", "https://data.delijn.be/stops/107843"], ["https://data.delijn.be/stops/205144", "https://data.delijn.be/stops/207632"], ["https://data.delijn.be/stops/504850", "https://data.delijn.be/stops/509948"], ["https://data.delijn.be/stops/501466", "https://data.delijn.be/stops/501471"], ["https://data.delijn.be/stops/306848", "https://data.delijn.be/stops/306858"], ["https://data.delijn.be/stops/101012", "https://data.delijn.be/stops/109771"], ["https://data.delijn.be/stops/102136", "https://data.delijn.be/stops/109162"], ["https://data.delijn.be/stops/502447", "https://data.delijn.be/stops/502464"], ["https://data.delijn.be/stops/505684", "https://data.delijn.be/stops/507306"], ["https://data.delijn.be/stops/210854", "https://data.delijn.be/stops/211854"], ["https://data.delijn.be/stops/206165", "https://data.delijn.be/stops/303400"], ["https://data.delijn.be/stops/503121", "https://data.delijn.be/stops/508115"], ["https://data.delijn.be/stops/300163", "https://data.delijn.be/stops/300221"], ["https://data.delijn.be/stops/502518", "https://data.delijn.be/stops/507522"], ["https://data.delijn.be/stops/108955", "https://data.delijn.be/stops/109880"], ["https://data.delijn.be/stops/300421", "https://data.delijn.be/stops/300440"], ["https://data.delijn.be/stops/404152", "https://data.delijn.be/stops/404160"], ["https://data.delijn.be/stops/502251", "https://data.delijn.be/stops/507252"], ["https://data.delijn.be/stops/406939", "https://data.delijn.be/stops/407403"], ["https://data.delijn.be/stops/505245", "https://data.delijn.be/stops/505734"], ["https://data.delijn.be/stops/208718", "https://data.delijn.be/stops/209718"], ["https://data.delijn.be/stops/402935", "https://data.delijn.be/stops/403965"], ["https://data.delijn.be/stops/107044", "https://data.delijn.be/stops/108237"], ["https://data.delijn.be/stops/304804", "https://data.delijn.be/stops/307883"], ["https://data.delijn.be/stops/303411", "https://data.delijn.be/stops/303416"], ["https://data.delijn.be/stops/101586", "https://data.delijn.be/stops/107305"], ["https://data.delijn.be/stops/500563", "https://data.delijn.be/stops/501029"], ["https://data.delijn.be/stops/301813", "https://data.delijn.be/stops/305544"], ["https://data.delijn.be/stops/409417", "https://data.delijn.be/stops/409419"], ["https://data.delijn.be/stops/102549", "https://data.delijn.be/stops/102551"], ["https://data.delijn.be/stops/401837", "https://data.delijn.be/stops/401841"], ["https://data.delijn.be/stops/304817", "https://data.delijn.be/stops/304818"], ["https://data.delijn.be/stops/501577", "https://data.delijn.be/stops/508835"], ["https://data.delijn.be/stops/508072", "https://data.delijn.be/stops/508525"], ["https://data.delijn.be/stops/400689", "https://data.delijn.be/stops/400802"], ["https://data.delijn.be/stops/502428", "https://data.delijn.be/stops/507696"], ["https://data.delijn.be/stops/200330", "https://data.delijn.be/stops/202204"], ["https://data.delijn.be/stops/202243", "https://data.delijn.be/stops/202485"], ["https://data.delijn.be/stops/300958", "https://data.delijn.be/stops/300962"], ["https://data.delijn.be/stops/206968", "https://data.delijn.be/stops/209723"], ["https://data.delijn.be/stops/101900", "https://data.delijn.be/stops/103209"], ["https://data.delijn.be/stops/206720", "https://data.delijn.be/stops/206735"], ["https://data.delijn.be/stops/206681", "https://data.delijn.be/stops/207625"], ["https://data.delijn.be/stops/307130", "https://data.delijn.be/stops/307131"], ["https://data.delijn.be/stops/106213", "https://data.delijn.be/stops/106214"], ["https://data.delijn.be/stops/107696", "https://data.delijn.be/stops/107697"], ["https://data.delijn.be/stops/504995", "https://data.delijn.be/stops/505962"], ["https://data.delijn.be/stops/503043", "https://data.delijn.be/stops/508041"], ["https://data.delijn.be/stops/301593", "https://data.delijn.be/stops/306958"], ["https://data.delijn.be/stops/400689", "https://data.delijn.be/stops/406816"], ["https://data.delijn.be/stops/300179", "https://data.delijn.be/stops/306743"], ["https://data.delijn.be/stops/102613", "https://data.delijn.be/stops/102614"], ["https://data.delijn.be/stops/400069", "https://data.delijn.be/stops/400081"], ["https://data.delijn.be/stops/407815", "https://data.delijn.be/stops/408042"], ["https://data.delijn.be/stops/101509", "https://data.delijn.be/stops/109076"], ["https://data.delijn.be/stops/509042", "https://data.delijn.be/stops/509046"], ["https://data.delijn.be/stops/303434", "https://data.delijn.be/stops/304960"], ["https://data.delijn.be/stops/408328", "https://data.delijn.be/stops/408337"], ["https://data.delijn.be/stops/101255", "https://data.delijn.be/stops/102816"], ["https://data.delijn.be/stops/204250", "https://data.delijn.be/stops/205095"], ["https://data.delijn.be/stops/203225", "https://data.delijn.be/stops/203245"], ["https://data.delijn.be/stops/200164", "https://data.delijn.be/stops/200337"], ["https://data.delijn.be/stops/505827", "https://data.delijn.be/stops/505828"], ["https://data.delijn.be/stops/107361", "https://data.delijn.be/stops/107362"], ["https://data.delijn.be/stops/101816", "https://data.delijn.be/stops/107833"], ["https://data.delijn.be/stops/503261", "https://data.delijn.be/stops/509766"], ["https://data.delijn.be/stops/300371", "https://data.delijn.be/stops/300372"], ["https://data.delijn.be/stops/406156", "https://data.delijn.be/stops/406274"], ["https://data.delijn.be/stops/201699", "https://data.delijn.be/stops/202771"], ["https://data.delijn.be/stops/402087", "https://data.delijn.be/stops/402216"], ["https://data.delijn.be/stops/303412", "https://data.delijn.be/stops/303422"], ["https://data.delijn.be/stops/208052", "https://data.delijn.be/stops/209051"], ["https://data.delijn.be/stops/206092", "https://data.delijn.be/stops/207091"], ["https://data.delijn.be/stops/405131", "https://data.delijn.be/stops/406725"], ["https://data.delijn.be/stops/301510", "https://data.delijn.be/stops/308740"], ["https://data.delijn.be/stops/206576", "https://data.delijn.be/stops/207563"], ["https://data.delijn.be/stops/201698", "https://data.delijn.be/stops/202446"], ["https://data.delijn.be/stops/105329", "https://data.delijn.be/stops/105332"], ["https://data.delijn.be/stops/408233", "https://data.delijn.be/stops/408241"], ["https://data.delijn.be/stops/408520", "https://data.delijn.be/stops/408873"], ["https://data.delijn.be/stops/400368", "https://data.delijn.be/stops/400387"], ["https://data.delijn.be/stops/407708", "https://data.delijn.be/stops/407769"], ["https://data.delijn.be/stops/303889", "https://data.delijn.be/stops/306055"], ["https://data.delijn.be/stops/101812", "https://data.delijn.be/stops/104132"], ["https://data.delijn.be/stops/101047", "https://data.delijn.be/stops/102011"], ["https://data.delijn.be/stops/503470", "https://data.delijn.be/stops/504797"], ["https://data.delijn.be/stops/103122", "https://data.delijn.be/stops/104399"], ["https://data.delijn.be/stops/305642", "https://data.delijn.be/stops/308131"], ["https://data.delijn.be/stops/106708", "https://data.delijn.be/stops/106710"], ["https://data.delijn.be/stops/208625", "https://data.delijn.be/stops/209616"], ["https://data.delijn.be/stops/402750", "https://data.delijn.be/stops/406473"], ["https://data.delijn.be/stops/202059", "https://data.delijn.be/stops/210075"], ["https://data.delijn.be/stops/504527", "https://data.delijn.be/stops/504528"], ["https://data.delijn.be/stops/302394", "https://data.delijn.be/stops/302397"], ["https://data.delijn.be/stops/200885", "https://data.delijn.be/stops/203074"], ["https://data.delijn.be/stops/509776", "https://data.delijn.be/stops/509777"], ["https://data.delijn.be/stops/106884", "https://data.delijn.be/stops/106885"], ["https://data.delijn.be/stops/207044", "https://data.delijn.be/stops/207215"], ["https://data.delijn.be/stops/507211", "https://data.delijn.be/stops/507216"], ["https://data.delijn.be/stops/502445", "https://data.delijn.be/stops/507445"], ["https://data.delijn.be/stops/404984", "https://data.delijn.be/stops/404987"], ["https://data.delijn.be/stops/504853", "https://data.delijn.be/stops/505143"], ["https://data.delijn.be/stops/409068", "https://data.delijn.be/stops/409081"], ["https://data.delijn.be/stops/502373", "https://data.delijn.be/stops/502520"], ["https://data.delijn.be/stops/102240", "https://data.delijn.be/stops/102919"], ["https://data.delijn.be/stops/207331", "https://data.delijn.be/stops/207732"], ["https://data.delijn.be/stops/502232", "https://data.delijn.be/stops/502699"], ["https://data.delijn.be/stops/300651", "https://data.delijn.be/stops/300657"], ["https://data.delijn.be/stops/501503", "https://data.delijn.be/stops/506108"], ["https://data.delijn.be/stops/305447", "https://data.delijn.be/stops/307322"], ["https://data.delijn.be/stops/302788", "https://data.delijn.be/stops/302789"], ["https://data.delijn.be/stops/307369", "https://data.delijn.be/stops/307370"], ["https://data.delijn.be/stops/501165", "https://data.delijn.be/stops/506157"], ["https://data.delijn.be/stops/504976", "https://data.delijn.be/stops/509640"], ["https://data.delijn.be/stops/300858", "https://data.delijn.be/stops/305512"], ["https://data.delijn.be/stops/108790", "https://data.delijn.be/stops/108791"], ["https://data.delijn.be/stops/104940", "https://data.delijn.be/stops/104945"], ["https://data.delijn.be/stops/208192", "https://data.delijn.be/stops/208761"], ["https://data.delijn.be/stops/400204", "https://data.delijn.be/stops/400238"], ["https://data.delijn.be/stops/400775", "https://data.delijn.be/stops/400873"], ["https://data.delijn.be/stops/403978", "https://data.delijn.be/stops/406007"], ["https://data.delijn.be/stops/403297", "https://data.delijn.be/stops/403441"], ["https://data.delijn.be/stops/501438", "https://data.delijn.be/stops/506100"], ["https://data.delijn.be/stops/402350", "https://data.delijn.be/stops/402364"], ["https://data.delijn.be/stops/408505", "https://data.delijn.be/stops/408564"], ["https://data.delijn.be/stops/200636", "https://data.delijn.be/stops/201636"], ["https://data.delijn.be/stops/305083", "https://data.delijn.be/stops/306959"], ["https://data.delijn.be/stops/302963", "https://data.delijn.be/stops/303200"], ["https://data.delijn.be/stops/103393", "https://data.delijn.be/stops/108005"], ["https://data.delijn.be/stops/106944", "https://data.delijn.be/stops/106945"], ["https://data.delijn.be/stops/206883", "https://data.delijn.be/stops/207738"], ["https://data.delijn.be/stops/208460", "https://data.delijn.be/stops/209460"], ["https://data.delijn.be/stops/203182", "https://data.delijn.be/stops/204201"], ["https://data.delijn.be/stops/206532", "https://data.delijn.be/stops/207530"], ["https://data.delijn.be/stops/200707", "https://data.delijn.be/stops/202436"], ["https://data.delijn.be/stops/403714", "https://data.delijn.be/stops/403715"], ["https://data.delijn.be/stops/307839", "https://data.delijn.be/stops/307840"], ["https://data.delijn.be/stops/201400", "https://data.delijn.be/stops/202363"], ["https://data.delijn.be/stops/307509", "https://data.delijn.be/stops/307816"], ["https://data.delijn.be/stops/404213", "https://data.delijn.be/stops/409813"], ["https://data.delijn.be/stops/206026", "https://data.delijn.be/stops/207902"], ["https://data.delijn.be/stops/101796", "https://data.delijn.be/stops/104551"], ["https://data.delijn.be/stops/101823", "https://data.delijn.be/stops/103137"], ["https://data.delijn.be/stops/505232", "https://data.delijn.be/stops/507227"], ["https://data.delijn.be/stops/405059", "https://data.delijn.be/stops/405063"], ["https://data.delijn.be/stops/502233", "https://data.delijn.be/stops/505233"], ["https://data.delijn.be/stops/102007", "https://data.delijn.be/stops/205265"], ["https://data.delijn.be/stops/402463", "https://data.delijn.be/stops/402464"], ["https://data.delijn.be/stops/106419", "https://data.delijn.be/stops/106420"], ["https://data.delijn.be/stops/101419", "https://data.delijn.be/stops/101425"], ["https://data.delijn.be/stops/503922", "https://data.delijn.be/stops/508929"], ["https://data.delijn.be/stops/205981", "https://data.delijn.be/stops/208683"], ["https://data.delijn.be/stops/206414", "https://data.delijn.be/stops/207411"], ["https://data.delijn.be/stops/208676", "https://data.delijn.be/stops/209442"], ["https://data.delijn.be/stops/503158", "https://data.delijn.be/stops/507684"], ["https://data.delijn.be/stops/301690", "https://data.delijn.be/stops/302387"], ["https://data.delijn.be/stops/201935", "https://data.delijn.be/stops/202956"], ["https://data.delijn.be/stops/401650", "https://data.delijn.be/stops/405129"], ["https://data.delijn.be/stops/208133", "https://data.delijn.be/stops/209133"], ["https://data.delijn.be/stops/108469", "https://data.delijn.be/stops/305989"], ["https://data.delijn.be/stops/405546", "https://data.delijn.be/stops/406886"], ["https://data.delijn.be/stops/508256", "https://data.delijn.be/stops/509764"], ["https://data.delijn.be/stops/106258", "https://data.delijn.be/stops/106260"], ["https://data.delijn.be/stops/304946", "https://data.delijn.be/stops/304991"], ["https://data.delijn.be/stops/201939", "https://data.delijn.be/stops/207966"], ["https://data.delijn.be/stops/109147", "https://data.delijn.be/stops/109151"], ["https://data.delijn.be/stops/502540", "https://data.delijn.be/stops/507171"], ["https://data.delijn.be/stops/202599", "https://data.delijn.be/stops/203600"], ["https://data.delijn.be/stops/505775", "https://data.delijn.be/stops/505777"], ["https://data.delijn.be/stops/102611", "https://data.delijn.be/stops/105528"], ["https://data.delijn.be/stops/201493", "https://data.delijn.be/stops/202295"], ["https://data.delijn.be/stops/407606", "https://data.delijn.be/stops/407607"], ["https://data.delijn.be/stops/404016", "https://data.delijn.be/stops/404432"], ["https://data.delijn.be/stops/305167", "https://data.delijn.be/stops/306964"], ["https://data.delijn.be/stops/202220", "https://data.delijn.be/stops/205076"], ["https://data.delijn.be/stops/501546", "https://data.delijn.be/stops/506546"], ["https://data.delijn.be/stops/509361", "https://data.delijn.be/stops/509365"], ["https://data.delijn.be/stops/504976", "https://data.delijn.be/stops/509134"], ["https://data.delijn.be/stops/300728", "https://data.delijn.be/stops/307058"], ["https://data.delijn.be/stops/302711", "https://data.delijn.be/stops/308861"], ["https://data.delijn.be/stops/209393", "https://data.delijn.be/stops/209394"], ["https://data.delijn.be/stops/101380", "https://data.delijn.be/stops/102894"], ["https://data.delijn.be/stops/502222", "https://data.delijn.be/stops/502223"], ["https://data.delijn.be/stops/204471", "https://data.delijn.be/stops/204777"], ["https://data.delijn.be/stops/507513", "https://data.delijn.be/stops/507619"], ["https://data.delijn.be/stops/305090", "https://data.delijn.be/stops/305093"], ["https://data.delijn.be/stops/406461", "https://data.delijn.be/stops/408798"], ["https://data.delijn.be/stops/304766", "https://data.delijn.be/stops/304768"], ["https://data.delijn.be/stops/501742", "https://data.delijn.be/stops/504505"], ["https://data.delijn.be/stops/102474", "https://data.delijn.be/stops/400296"], ["https://data.delijn.be/stops/208356", "https://data.delijn.be/stops/208357"], ["https://data.delijn.be/stops/108744", "https://data.delijn.be/stops/108746"], ["https://data.delijn.be/stops/105628", "https://data.delijn.be/stops/107169"], ["https://data.delijn.be/stops/409265", "https://data.delijn.be/stops/409284"], ["https://data.delijn.be/stops/402384", "https://data.delijn.be/stops/402390"], ["https://data.delijn.be/stops/308456", "https://data.delijn.be/stops/308457"], ["https://data.delijn.be/stops/204249", "https://data.delijn.be/stops/204786"], ["https://data.delijn.be/stops/306224", "https://data.delijn.be/stops/306416"], ["https://data.delijn.be/stops/400031", "https://data.delijn.be/stops/400032"], ["https://data.delijn.be/stops/508656", "https://data.delijn.be/stops/508659"], ["https://data.delijn.be/stops/304423", "https://data.delijn.be/stops/307398"], ["https://data.delijn.be/stops/407594", "https://data.delijn.be/stops/409803"], ["https://data.delijn.be/stops/405958", "https://data.delijn.be/stops/308154"], ["https://data.delijn.be/stops/203611", "https://data.delijn.be/stops/203613"], ["https://data.delijn.be/stops/108147", "https://data.delijn.be/stops/108149"], ["https://data.delijn.be/stops/104794", "https://data.delijn.be/stops/106969"], ["https://data.delijn.be/stops/207116", "https://data.delijn.be/stops/207810"], ["https://data.delijn.be/stops/103124", "https://data.delijn.be/stops/107703"], ["https://data.delijn.be/stops/502461", "https://data.delijn.be/stops/507452"], ["https://data.delijn.be/stops/105657", "https://data.delijn.be/stops/105659"], ["https://data.delijn.be/stops/203347", "https://data.delijn.be/stops/209710"], ["https://data.delijn.be/stops/107398", "https://data.delijn.be/stops/107401"], ["https://data.delijn.be/stops/106111", "https://data.delijn.be/stops/109085"], ["https://data.delijn.be/stops/107014", "https://data.delijn.be/stops/107112"], ["https://data.delijn.be/stops/204980", "https://data.delijn.be/stops/207723"], ["https://data.delijn.be/stops/102746", "https://data.delijn.be/stops/106414"], ["https://data.delijn.be/stops/204739", "https://data.delijn.be/stops/205740"], ["https://data.delijn.be/stops/104824", "https://data.delijn.be/stops/109535"], ["https://data.delijn.be/stops/402829", "https://data.delijn.be/stops/402888"], ["https://data.delijn.be/stops/201266", "https://data.delijn.be/stops/203543"], ["https://data.delijn.be/stops/505073", "https://data.delijn.be/stops/508769"], ["https://data.delijn.be/stops/101010", "https://data.delijn.be/stops/105870"], ["https://data.delijn.be/stops/400862", "https://data.delijn.be/stops/400865"], ["https://data.delijn.be/stops/502077", "https://data.delijn.be/stops/507076"], ["https://data.delijn.be/stops/502324", "https://data.delijn.be/stops/507333"], ["https://data.delijn.be/stops/102543", "https://data.delijn.be/stops/405101"], ["https://data.delijn.be/stops/200465", "https://data.delijn.be/stops/210082"], ["https://data.delijn.be/stops/104948", "https://data.delijn.be/stops/109787"], ["https://data.delijn.be/stops/507237", "https://data.delijn.be/stops/507254"], ["https://data.delijn.be/stops/302823", "https://data.delijn.be/stops/304072"], ["https://data.delijn.be/stops/405570", "https://data.delijn.be/stops/405578"], ["https://data.delijn.be/stops/509069", "https://data.delijn.be/stops/509520"], ["https://data.delijn.be/stops/305714", "https://data.delijn.be/stops/306305"], ["https://data.delijn.be/stops/107885", "https://data.delijn.be/stops/107920"], ["https://data.delijn.be/stops/204412", "https://data.delijn.be/stops/205441"], ["https://data.delijn.be/stops/200704", "https://data.delijn.be/stops/202576"], ["https://data.delijn.be/stops/400043", "https://data.delijn.be/stops/400045"], ["https://data.delijn.be/stops/105427", "https://data.delijn.be/stops/105432"], ["https://data.delijn.be/stops/403886", "https://data.delijn.be/stops/404060"], ["https://data.delijn.be/stops/205420", "https://data.delijn.be/stops/205480"], ["https://data.delijn.be/stops/203053", "https://data.delijn.be/stops/203356"], ["https://data.delijn.be/stops/300026", "https://data.delijn.be/stops/300039"], ["https://data.delijn.be/stops/204781", "https://data.delijn.be/stops/204782"], ["https://data.delijn.be/stops/405014", "https://data.delijn.be/stops/405015"], ["https://data.delijn.be/stops/109200", "https://data.delijn.be/stops/109202"], ["https://data.delijn.be/stops/303347", "https://data.delijn.be/stops/306336"], ["https://data.delijn.be/stops/504399", "https://data.delijn.be/stops/504403"], ["https://data.delijn.be/stops/300383", "https://data.delijn.be/stops/301946"], ["https://data.delijn.be/stops/408356", "https://data.delijn.be/stops/410257"], ["https://data.delijn.be/stops/109559", "https://data.delijn.be/stops/306860"], ["https://data.delijn.be/stops/300735", "https://data.delijn.be/stops/300736"], ["https://data.delijn.be/stops/408700", "https://data.delijn.be/stops/408727"], ["https://data.delijn.be/stops/206176", "https://data.delijn.be/stops/207446"], ["https://data.delijn.be/stops/403678", "https://data.delijn.be/stops/405319"], ["https://data.delijn.be/stops/104362", "https://data.delijn.be/stops/104363"], ["https://data.delijn.be/stops/302929", "https://data.delijn.be/stops/304047"], ["https://data.delijn.be/stops/103971", "https://data.delijn.be/stops/103972"], ["https://data.delijn.be/stops/305172", "https://data.delijn.be/stops/305205"], ["https://data.delijn.be/stops/402265", "https://data.delijn.be/stops/402423"], ["https://data.delijn.be/stops/407628", "https://data.delijn.be/stops/407633"], ["https://data.delijn.be/stops/508540", "https://data.delijn.be/stops/508546"], ["https://data.delijn.be/stops/403962", "https://data.delijn.be/stops/406007"], ["https://data.delijn.be/stops/504248", "https://data.delijn.be/stops/509248"], ["https://data.delijn.be/stops/402444", "https://data.delijn.be/stops/409599"], ["https://data.delijn.be/stops/409199", "https://data.delijn.be/stops/409833"], ["https://data.delijn.be/stops/209449", "https://data.delijn.be/stops/209454"], ["https://data.delijn.be/stops/305098", "https://data.delijn.be/stops/305099"], ["https://data.delijn.be/stops/305158", "https://data.delijn.be/stops/305159"], ["https://data.delijn.be/stops/301434", "https://data.delijn.be/stops/306172"], ["https://data.delijn.be/stops/305178", "https://data.delijn.be/stops/307104"], ["https://data.delijn.be/stops/200962", "https://data.delijn.be/stops/202195"], ["https://data.delijn.be/stops/200832", "https://data.delijn.be/stops/505062"], ["https://data.delijn.be/stops/402160", "https://data.delijn.be/stops/402265"], ["https://data.delijn.be/stops/503580", "https://data.delijn.be/stops/503996"], ["https://data.delijn.be/stops/208737", "https://data.delijn.be/stops/209737"], ["https://data.delijn.be/stops/109171", "https://data.delijn.be/stops/109173"], ["https://data.delijn.be/stops/501290", "https://data.delijn.be/stops/506290"], ["https://data.delijn.be/stops/504597", "https://data.delijn.be/stops/509597"], ["https://data.delijn.be/stops/101846", "https://data.delijn.be/stops/106872"], ["https://data.delijn.be/stops/303436", "https://data.delijn.be/stops/307280"], ["https://data.delijn.be/stops/501181", "https://data.delijn.be/stops/509933"], ["https://data.delijn.be/stops/503838", "https://data.delijn.be/stops/508838"], ["https://data.delijn.be/stops/503194", "https://data.delijn.be/stops/503201"], ["https://data.delijn.be/stops/503563", "https://data.delijn.be/stops/508548"], ["https://data.delijn.be/stops/201241", "https://data.delijn.be/stops/211112"], ["https://data.delijn.be/stops/405628", "https://data.delijn.be/stops/407188"], ["https://data.delijn.be/stops/103058", "https://data.delijn.be/stops/103574"], ["https://data.delijn.be/stops/503966", "https://data.delijn.be/stops/508966"], ["https://data.delijn.be/stops/304746", "https://data.delijn.be/stops/307276"], ["https://data.delijn.be/stops/206038", "https://data.delijn.be/stops/207050"], ["https://data.delijn.be/stops/203972", "https://data.delijn.be/stops/205074"], ["https://data.delijn.be/stops/502416", "https://data.delijn.be/stops/507434"], ["https://data.delijn.be/stops/307873", "https://data.delijn.be/stops/308123"], ["https://data.delijn.be/stops/202187", "https://data.delijn.be/stops/203145"], ["https://data.delijn.be/stops/202707", "https://data.delijn.be/stops/203728"], ["https://data.delijn.be/stops/406294", "https://data.delijn.be/stops/406295"], ["https://data.delijn.be/stops/402891", "https://data.delijn.be/stops/402894"], ["https://data.delijn.be/stops/302292", "https://data.delijn.be/stops/302294"], ["https://data.delijn.be/stops/208235", "https://data.delijn.be/stops/209234"], ["https://data.delijn.be/stops/202511", "https://data.delijn.be/stops/203510"], ["https://data.delijn.be/stops/305730", "https://data.delijn.be/stops/305737"], ["https://data.delijn.be/stops/403246", "https://data.delijn.be/stops/403512"], ["https://data.delijn.be/stops/105009", "https://data.delijn.be/stops/105078"], ["https://data.delijn.be/stops/400099", "https://data.delijn.be/stops/409194"], ["https://data.delijn.be/stops/204205", "https://data.delijn.be/stops/205199"], ["https://data.delijn.be/stops/503982", "https://data.delijn.be/stops/504790"], ["https://data.delijn.be/stops/102655", "https://data.delijn.be/stops/107905"], ["https://data.delijn.be/stops/406313", "https://data.delijn.be/stops/410394"], ["https://data.delijn.be/stops/408732", "https://data.delijn.be/stops/408733"], ["https://data.delijn.be/stops/503230", "https://data.delijn.be/stops/509764"], ["https://data.delijn.be/stops/102381", "https://data.delijn.be/stops/106376"], ["https://data.delijn.be/stops/206246", "https://data.delijn.be/stops/207404"], ["https://data.delijn.be/stops/206191", "https://data.delijn.be/stops/207192"], ["https://data.delijn.be/stops/207185", "https://data.delijn.be/stops/308565"], ["https://data.delijn.be/stops/505230", "https://data.delijn.be/stops/509824"], ["https://data.delijn.be/stops/303015", "https://data.delijn.be/stops/303016"], ["https://data.delijn.be/stops/502498", "https://data.delijn.be/stops/507515"], ["https://data.delijn.be/stops/402883", "https://data.delijn.be/stops/402886"], ["https://data.delijn.be/stops/501267", "https://data.delijn.be/stops/501603"], ["https://data.delijn.be/stops/407544", "https://data.delijn.be/stops/408482"], ["https://data.delijn.be/stops/102804", "https://data.delijn.be/stops/109555"], ["https://data.delijn.be/stops/209372", "https://data.delijn.be/stops/209373"], ["https://data.delijn.be/stops/305341", "https://data.delijn.be/stops/305345"], ["https://data.delijn.be/stops/302018", "https://data.delijn.be/stops/302047"], ["https://data.delijn.be/stops/402195", "https://data.delijn.be/stops/402263"], ["https://data.delijn.be/stops/106199", "https://data.delijn.be/stops/109755"], ["https://data.delijn.be/stops/403492", "https://data.delijn.be/stops/403550"], ["https://data.delijn.be/stops/104962", "https://data.delijn.be/stops/109259"], ["https://data.delijn.be/stops/305825", "https://data.delijn.be/stops/305827"], ["https://data.delijn.be/stops/406370", "https://data.delijn.be/stops/406407"], ["https://data.delijn.be/stops/409357", "https://data.delijn.be/stops/409361"], ["https://data.delijn.be/stops/400167", "https://data.delijn.be/stops/400168"], ["https://data.delijn.be/stops/406400", "https://data.delijn.be/stops/406401"], ["https://data.delijn.be/stops/202372", "https://data.delijn.be/stops/203372"], ["https://data.delijn.be/stops/302316", "https://data.delijn.be/stops/304061"], ["https://data.delijn.be/stops/302304", "https://data.delijn.be/stops/302317"], ["https://data.delijn.be/stops/304154", "https://data.delijn.be/stops/304161"], ["https://data.delijn.be/stops/207755", "https://data.delijn.be/stops/208740"], ["https://data.delijn.be/stops/202608", "https://data.delijn.be/stops/203560"], ["https://data.delijn.be/stops/303535", "https://data.delijn.be/stops/304317"], ["https://data.delijn.be/stops/206346", "https://data.delijn.be/stops/207718"], ["https://data.delijn.be/stops/109349", "https://data.delijn.be/stops/109355"], ["https://data.delijn.be/stops/403429", "https://data.delijn.be/stops/410210"], ["https://data.delijn.be/stops/106344", "https://data.delijn.be/stops/106345"], ["https://data.delijn.be/stops/300418", "https://data.delijn.be/stops/300428"], ["https://data.delijn.be/stops/402670", "https://data.delijn.be/stops/402733"], ["https://data.delijn.be/stops/204566", "https://data.delijn.be/stops/303379"], ["https://data.delijn.be/stops/302609", "https://data.delijn.be/stops/302625"], ["https://data.delijn.be/stops/401820", "https://data.delijn.be/stops/410251"], ["https://data.delijn.be/stops/504462", "https://data.delijn.be/stops/509462"], ["https://data.delijn.be/stops/304578", "https://data.delijn.be/stops/304610"], ["https://data.delijn.be/stops/303178", "https://data.delijn.be/stops/307073"], ["https://data.delijn.be/stops/104879", "https://data.delijn.be/stops/109605"], ["https://data.delijn.be/stops/204376", "https://data.delijn.be/stops/205376"], ["https://data.delijn.be/stops/302060", "https://data.delijn.be/stops/302076"], ["https://data.delijn.be/stops/402300", "https://data.delijn.be/stops/409358"], ["https://data.delijn.be/stops/105514", "https://data.delijn.be/stops/105517"], ["https://data.delijn.be/stops/200393", "https://data.delijn.be/stops/201393"], ["https://data.delijn.be/stops/106719", "https://data.delijn.be/stops/109635"], ["https://data.delijn.be/stops/305894", "https://data.delijn.be/stops/308140"], ["https://data.delijn.be/stops/408452", "https://data.delijn.be/stops/410216"], ["https://data.delijn.be/stops/205141", "https://data.delijn.be/stops/205146"], ["https://data.delijn.be/stops/307373", "https://data.delijn.be/stops/307378"], ["https://data.delijn.be/stops/404471", "https://data.delijn.be/stops/404567"], ["https://data.delijn.be/stops/104052", "https://data.delijn.be/stops/108102"], ["https://data.delijn.be/stops/209389", "https://data.delijn.be/stops/508329"], ["https://data.delijn.be/stops/209360", "https://data.delijn.be/stops/209399"], ["https://data.delijn.be/stops/200865", "https://data.delijn.be/stops/202448"], ["https://data.delijn.be/stops/408340", "https://data.delijn.be/stops/408399"], ["https://data.delijn.be/stops/103082", "https://data.delijn.be/stops/104672"], ["https://data.delijn.be/stops/305415", "https://data.delijn.be/stops/305462"], ["https://data.delijn.be/stops/401180", "https://data.delijn.be/stops/401183"], ["https://data.delijn.be/stops/301523", "https://data.delijn.be/stops/305733"], ["https://data.delijn.be/stops/206327", "https://data.delijn.be/stops/308848"], ["https://data.delijn.be/stops/401399", "https://data.delijn.be/stops/410153"], ["https://data.delijn.be/stops/306907", "https://data.delijn.be/stops/308128"], ["https://data.delijn.be/stops/101984", "https://data.delijn.be/stops/108228"], ["https://data.delijn.be/stops/209389", "https://data.delijn.be/stops/508835"], ["https://data.delijn.be/stops/400783", "https://data.delijn.be/stops/409641"], ["https://data.delijn.be/stops/209037", "https://data.delijn.be/stops/209038"], ["https://data.delijn.be/stops/405683", "https://data.delijn.be/stops/405847"], ["https://data.delijn.be/stops/501659", "https://data.delijn.be/stops/501661"], ["https://data.delijn.be/stops/202699", "https://data.delijn.be/stops/203699"], ["https://data.delijn.be/stops/308014", "https://data.delijn.be/stops/308015"], ["https://data.delijn.be/stops/403830", "https://data.delijn.be/stops/410118"], ["https://data.delijn.be/stops/504422", "https://data.delijn.be/stops/505182"], ["https://data.delijn.be/stops/503758", "https://data.delijn.be/stops/508624"], ["https://data.delijn.be/stops/407001", "https://data.delijn.be/stops/407003"], ["https://data.delijn.be/stops/204784", "https://data.delijn.be/stops/205591"], ["https://data.delijn.be/stops/206435", "https://data.delijn.be/stops/209691"], ["https://data.delijn.be/stops/206459", "https://data.delijn.be/stops/206463"], ["https://data.delijn.be/stops/407732", "https://data.delijn.be/stops/409787"], ["https://data.delijn.be/stops/101924", "https://data.delijn.be/stops/107011"], ["https://data.delijn.be/stops/304622", "https://data.delijn.be/stops/304661"], ["https://data.delijn.be/stops/502376", "https://data.delijn.be/stops/505345"], ["https://data.delijn.be/stops/103600", "https://data.delijn.be/stops/104011"], ["https://data.delijn.be/stops/101683", "https://data.delijn.be/stops/103699"], ["https://data.delijn.be/stops/205993", "https://data.delijn.be/stops/208810"], ["https://data.delijn.be/stops/306605", "https://data.delijn.be/stops/306607"], ["https://data.delijn.be/stops/206804", "https://data.delijn.be/stops/209347"], ["https://data.delijn.be/stops/403057", "https://data.delijn.be/stops/403067"], ["https://data.delijn.be/stops/105543", "https://data.delijn.be/stops/105544"], ["https://data.delijn.be/stops/407234", "https://data.delijn.be/stops/407237"], ["https://data.delijn.be/stops/301398", "https://data.delijn.be/stops/303120"], ["https://data.delijn.be/stops/103263", "https://data.delijn.be/stops/204630"], ["https://data.delijn.be/stops/407979", "https://data.delijn.be/stops/408237"], ["https://data.delijn.be/stops/204080", "https://data.delijn.be/stops/205203"], ["https://data.delijn.be/stops/302198", "https://data.delijn.be/stops/302199"], ["https://data.delijn.be/stops/404668", "https://data.delijn.be/stops/404675"], ["https://data.delijn.be/stops/501557", "https://data.delijn.be/stops/501741"], ["https://data.delijn.be/stops/202198", "https://data.delijn.be/stops/203199"], ["https://data.delijn.be/stops/102815", "https://data.delijn.be/stops/103850"], ["https://data.delijn.be/stops/301423", "https://data.delijn.be/stops/301424"], ["https://data.delijn.be/stops/403471", "https://data.delijn.be/stops/403473"], ["https://data.delijn.be/stops/307160", "https://data.delijn.be/stops/307162"], ["https://data.delijn.be/stops/504678", "https://data.delijn.be/stops/505819"], ["https://data.delijn.be/stops/502272", "https://data.delijn.be/stops/507272"], ["https://data.delijn.be/stops/301711", "https://data.delijn.be/stops/305907"], ["https://data.delijn.be/stops/105054", "https://data.delijn.be/stops/105132"], ["https://data.delijn.be/stops/102164", "https://data.delijn.be/stops/103340"], ["https://data.delijn.be/stops/301960", "https://data.delijn.be/stops/301970"], ["https://data.delijn.be/stops/207864", "https://data.delijn.be/stops/209458"], ["https://data.delijn.be/stops/107554", "https://data.delijn.be/stops/107557"], ["https://data.delijn.be/stops/404953", "https://data.delijn.be/stops/404954"], ["https://data.delijn.be/stops/301757", "https://data.delijn.be/stops/305948"], ["https://data.delijn.be/stops/109902", "https://data.delijn.be/stops/109903"], ["https://data.delijn.be/stops/500126", "https://data.delijn.be/stops/503007"], ["https://data.delijn.be/stops/400446", "https://data.delijn.be/stops/401264"], ["https://data.delijn.be/stops/102518", "https://data.delijn.be/stops/406515"], ["https://data.delijn.be/stops/104996", "https://data.delijn.be/stops/105220"], ["https://data.delijn.be/stops/208507", "https://data.delijn.be/stops/209060"], ["https://data.delijn.be/stops/304405", "https://data.delijn.be/stops/307414"], ["https://data.delijn.be/stops/405534", "https://data.delijn.be/stops/406931"], ["https://data.delijn.be/stops/400474", "https://data.delijn.be/stops/408701"], ["https://data.delijn.be/stops/401082", "https://data.delijn.be/stops/402899"], ["https://data.delijn.be/stops/408246", "https://data.delijn.be/stops/308194"], ["https://data.delijn.be/stops/204143", "https://data.delijn.be/stops/205130"], ["https://data.delijn.be/stops/104771", "https://data.delijn.be/stops/108152"], ["https://data.delijn.be/stops/400715", "https://data.delijn.be/stops/400718"], ["https://data.delijn.be/stops/204343", "https://data.delijn.be/stops/204452"], ["https://data.delijn.be/stops/405890", "https://data.delijn.be/stops/409771"], ["https://data.delijn.be/stops/107705", "https://data.delijn.be/stops/107990"], ["https://data.delijn.be/stops/305629", "https://data.delijn.be/stops/305640"], ["https://data.delijn.be/stops/502379", "https://data.delijn.be/stops/502392"], ["https://data.delijn.be/stops/408822", "https://data.delijn.be/stops/408823"], ["https://data.delijn.be/stops/502450", "https://data.delijn.be/stops/507450"], ["https://data.delijn.be/stops/404436", "https://data.delijn.be/stops/404470"], ["https://data.delijn.be/stops/307209", "https://data.delijn.be/stops/307282"], ["https://data.delijn.be/stops/408454", "https://data.delijn.be/stops/408491"], ["https://data.delijn.be/stops/207843", "https://data.delijn.be/stops/303133"], ["https://data.delijn.be/stops/102537", "https://data.delijn.be/stops/405088"], ["https://data.delijn.be/stops/403609", "https://data.delijn.be/stops/406729"], ["https://data.delijn.be/stops/104392", "https://data.delijn.be/stops/104491"], ["https://data.delijn.be/stops/501412", "https://data.delijn.be/stops/506681"], ["https://data.delijn.be/stops/408292", "https://data.delijn.be/stops/408370"], ["https://data.delijn.be/stops/402431", "https://data.delijn.be/stops/402434"], ["https://data.delijn.be/stops/402863", "https://data.delijn.be/stops/408066"], ["https://data.delijn.be/stops/404292", "https://data.delijn.be/stops/405992"], ["https://data.delijn.be/stops/408232", "https://data.delijn.be/stops/408247"], ["https://data.delijn.be/stops/405737", "https://data.delijn.be/stops/407214"], ["https://data.delijn.be/stops/402167", "https://data.delijn.be/stops/402322"], ["https://data.delijn.be/stops/204747", "https://data.delijn.be/stops/205747"], ["https://data.delijn.be/stops/102913", "https://data.delijn.be/stops/106699"], ["https://data.delijn.be/stops/300579", "https://data.delijn.be/stops/308356"], ["https://data.delijn.be/stops/401766", "https://data.delijn.be/stops/401767"], ["https://data.delijn.be/stops/503945", "https://data.delijn.be/stops/508945"], ["https://data.delijn.be/stops/402524", "https://data.delijn.be/stops/402525"], ["https://data.delijn.be/stops/307441", "https://data.delijn.be/stops/307442"], ["https://data.delijn.be/stops/203843", "https://data.delijn.be/stops/203932"], ["https://data.delijn.be/stops/505764", "https://data.delijn.be/stops/507005"], ["https://data.delijn.be/stops/400275", "https://data.delijn.be/stops/400384"], ["https://data.delijn.be/stops/301970", "https://data.delijn.be/stops/304536"], ["https://data.delijn.be/stops/200833", "https://data.delijn.be/stops/200834"], ["https://data.delijn.be/stops/103642", "https://data.delijn.be/stops/103643"], ["https://data.delijn.be/stops/106972", "https://data.delijn.be/stops/106974"], ["https://data.delijn.be/stops/301992", "https://data.delijn.be/stops/303280"], ["https://data.delijn.be/stops/402504", "https://data.delijn.be/stops/408177"], ["https://data.delijn.be/stops/400352", "https://data.delijn.be/stops/400368"], ["https://data.delijn.be/stops/201820", "https://data.delijn.be/stops/201829"], ["https://data.delijn.be/stops/304504", "https://data.delijn.be/stops/307467"], ["https://data.delijn.be/stops/302683", "https://data.delijn.be/stops/302698"], ["https://data.delijn.be/stops/502718", "https://data.delijn.be/stops/502740"], ["https://data.delijn.be/stops/104711", "https://data.delijn.be/stops/108168"], ["https://data.delijn.be/stops/202394", "https://data.delijn.be/stops/203044"], ["https://data.delijn.be/stops/409102", "https://data.delijn.be/stops/409127"], ["https://data.delijn.be/stops/303476", "https://data.delijn.be/stops/303499"], ["https://data.delijn.be/stops/206697", "https://data.delijn.be/stops/206698"], ["https://data.delijn.be/stops/305510", "https://data.delijn.be/stops/308870"], ["https://data.delijn.be/stops/201770", "https://data.delijn.be/stops/201829"], ["https://data.delijn.be/stops/304013", "https://data.delijn.be/stops/304033"], ["https://data.delijn.be/stops/505291", "https://data.delijn.be/stops/509356"], ["https://data.delijn.be/stops/505945", "https://data.delijn.be/stops/508110"], ["https://data.delijn.be/stops/104037", "https://data.delijn.be/stops/104051"], ["https://data.delijn.be/stops/502176", "https://data.delijn.be/stops/507176"], ["https://data.delijn.be/stops/503755", "https://data.delijn.be/stops/508966"], ["https://data.delijn.be/stops/405803", "https://data.delijn.be/stops/405861"], ["https://data.delijn.be/stops/507423", "https://data.delijn.be/stops/507750"], ["https://data.delijn.be/stops/209524", "https://data.delijn.be/stops/219017"], ["https://data.delijn.be/stops/201645", "https://data.delijn.be/stops/203743"], ["https://data.delijn.be/stops/202158", "https://data.delijn.be/stops/205792"], ["https://data.delijn.be/stops/204761", "https://data.delijn.be/stops/205729"], ["https://data.delijn.be/stops/401063", "https://data.delijn.be/stops/403598"], ["https://data.delijn.be/stops/207977", "https://data.delijn.be/stops/217011"], ["https://data.delijn.be/stops/107356", "https://data.delijn.be/stops/107358"], ["https://data.delijn.be/stops/305950", "https://data.delijn.be/stops/307092"], ["https://data.delijn.be/stops/301533", "https://data.delijn.be/stops/301544"], ["https://data.delijn.be/stops/103479", "https://data.delijn.be/stops/109215"], ["https://data.delijn.be/stops/503926", "https://data.delijn.be/stops/508927"], ["https://data.delijn.be/stops/501769", "https://data.delijn.be/stops/505357"], ["https://data.delijn.be/stops/109196", "https://data.delijn.be/stops/109204"], ["https://data.delijn.be/stops/103248", "https://data.delijn.be/stops/107375"], ["https://data.delijn.be/stops/101676", "https://data.delijn.be/stops/101677"], ["https://data.delijn.be/stops/304583", "https://data.delijn.be/stops/307767"], ["https://data.delijn.be/stops/300124", "https://data.delijn.be/stops/306770"], ["https://data.delijn.be/stops/106098", "https://data.delijn.be/stops/106099"], ["https://data.delijn.be/stops/502472", "https://data.delijn.be/stops/502482"], ["https://data.delijn.be/stops/109210", "https://data.delijn.be/stops/109225"], ["https://data.delijn.be/stops/503113", "https://data.delijn.be/stops/505083"], ["https://data.delijn.be/stops/305324", "https://data.delijn.be/stops/305325"], ["https://data.delijn.be/stops/403163", "https://data.delijn.be/stops/403169"], ["https://data.delijn.be/stops/501629", "https://data.delijn.be/stops/505405"], ["https://data.delijn.be/stops/306877", "https://data.delijn.be/stops/306878"], ["https://data.delijn.be/stops/501138", "https://data.delijn.be/stops/501486"], ["https://data.delijn.be/stops/206644", "https://data.delijn.be/stops/206645"], ["https://data.delijn.be/stops/104493", "https://data.delijn.be/stops/104770"], ["https://data.delijn.be/stops/104109", "https://data.delijn.be/stops/205605"], ["https://data.delijn.be/stops/302761", "https://data.delijn.be/stops/302762"], ["https://data.delijn.be/stops/505261", "https://data.delijn.be/stops/508221"], ["https://data.delijn.be/stops/107018", "https://data.delijn.be/stops/107019"], ["https://data.delijn.be/stops/105999", "https://data.delijn.be/stops/106003"], ["https://data.delijn.be/stops/206696", "https://data.delijn.be/stops/304080"], ["https://data.delijn.be/stops/106596", "https://data.delijn.be/stops/107241"], ["https://data.delijn.be/stops/206155", "https://data.delijn.be/stops/207861"], ["https://data.delijn.be/stops/501627", "https://data.delijn.be/stops/502202"], ["https://data.delijn.be/stops/105683", "https://data.delijn.be/stops/105684"], ["https://data.delijn.be/stops/400554", "https://data.delijn.be/stops/403226"], ["https://data.delijn.be/stops/300549", "https://data.delijn.be/stops/300554"], ["https://data.delijn.be/stops/502228", "https://data.delijn.be/stops/505314"], ["https://data.delijn.be/stops/102075", "https://data.delijn.be/stops/102235"], ["https://data.delijn.be/stops/505981", "https://data.delijn.be/stops/507195"], ["https://data.delijn.be/stops/503011", "https://data.delijn.be/stops/507736"], ["https://data.delijn.be/stops/402070", "https://data.delijn.be/stops/402080"], ["https://data.delijn.be/stops/503052", "https://data.delijn.be/stops/508051"], ["https://data.delijn.be/stops/402387", "https://data.delijn.be/stops/402473"], ["https://data.delijn.be/stops/106862", "https://data.delijn.be/stops/106863"], ["https://data.delijn.be/stops/304730", "https://data.delijn.be/stops/307333"], ["https://data.delijn.be/stops/200863", "https://data.delijn.be/stops/203295"], ["https://data.delijn.be/stops/101182", "https://data.delijn.be/stops/107944"], ["https://data.delijn.be/stops/300264", "https://data.delijn.be/stops/303812"], ["https://data.delijn.be/stops/400600", "https://data.delijn.be/stops/400623"], ["https://data.delijn.be/stops/301379", "https://data.delijn.be/stops/301380"], ["https://data.delijn.be/stops/203212", "https://data.delijn.be/stops/210117"], ["https://data.delijn.be/stops/404147", "https://data.delijn.be/stops/404156"], ["https://data.delijn.be/stops/402235", "https://data.delijn.be/stops/402255"], ["https://data.delijn.be/stops/102422", "https://data.delijn.be/stops/106998"], ["https://data.delijn.be/stops/302175", "https://data.delijn.be/stops/307186"], ["https://data.delijn.be/stops/300011", "https://data.delijn.be/stops/300796"], ["https://data.delijn.be/stops/201315", "https://data.delijn.be/stops/201384"], ["https://data.delijn.be/stops/104646", "https://data.delijn.be/stops/108053"], ["https://data.delijn.be/stops/208742", "https://data.delijn.be/stops/508032"], ["https://data.delijn.be/stops/403953", "https://data.delijn.be/stops/404025"], ["https://data.delijn.be/stops/308488", "https://data.delijn.be/stops/308489"], ["https://data.delijn.be/stops/304573", "https://data.delijn.be/stops/304658"], ["https://data.delijn.be/stops/206250", "https://data.delijn.be/stops/207586"], ["https://data.delijn.be/stops/501398", "https://data.delijn.be/stops/506399"], ["https://data.delijn.be/stops/208488", "https://data.delijn.be/stops/209621"], ["https://data.delijn.be/stops/109361", "https://data.delijn.be/stops/109362"], ["https://data.delijn.be/stops/403647", "https://data.delijn.be/stops/408079"], ["https://data.delijn.be/stops/303567", "https://data.delijn.be/stops/307988"], ["https://data.delijn.be/stops/401340", "https://data.delijn.be/stops/406568"], ["https://data.delijn.be/stops/503986", "https://data.delijn.be/stops/508986"], ["https://data.delijn.be/stops/408259", "https://data.delijn.be/stops/408373"], ["https://data.delijn.be/stops/501401", "https://data.delijn.be/stops/505404"], ["https://data.delijn.be/stops/505565", "https://data.delijn.be/stops/505660"], ["https://data.delijn.be/stops/300096", "https://data.delijn.be/stops/300097"], ["https://data.delijn.be/stops/300748", "https://data.delijn.be/stops/300804"], ["https://data.delijn.be/stops/401320", "https://data.delijn.be/stops/401321"], ["https://data.delijn.be/stops/301363", "https://data.delijn.be/stops/301364"], ["https://data.delijn.be/stops/106480", "https://data.delijn.be/stops/109201"], ["https://data.delijn.be/stops/207141", "https://data.delijn.be/stops/207142"], ["https://data.delijn.be/stops/504501", "https://data.delijn.be/stops/505167"], ["https://data.delijn.be/stops/305680", "https://data.delijn.be/stops/305694"], ["https://data.delijn.be/stops/503385", "https://data.delijn.be/stops/503407"], ["https://data.delijn.be/stops/300585", "https://data.delijn.be/stops/300586"], ["https://data.delijn.be/stops/405878", "https://data.delijn.be/stops/405879"], ["https://data.delijn.be/stops/400695", "https://data.delijn.be/stops/400696"], ["https://data.delijn.be/stops/202444", "https://data.delijn.be/stops/203444"], ["https://data.delijn.be/stops/504031", "https://data.delijn.be/stops/504470"], ["https://data.delijn.be/stops/503830", "https://data.delijn.be/stops/503834"], ["https://data.delijn.be/stops/208602", "https://data.delijn.be/stops/208603"], ["https://data.delijn.be/stops/501760", "https://data.delijn.be/stops/506776"], ["https://data.delijn.be/stops/304220", "https://data.delijn.be/stops/307939"], ["https://data.delijn.be/stops/200604", "https://data.delijn.be/stops/200605"], ["https://data.delijn.be/stops/401848", "https://data.delijn.be/stops/401856"], ["https://data.delijn.be/stops/303437", "https://data.delijn.be/stops/303520"], ["https://data.delijn.be/stops/410189", "https://data.delijn.be/stops/410251"], ["https://data.delijn.be/stops/401794", "https://data.delijn.be/stops/401812"], ["https://data.delijn.be/stops/208043", "https://data.delijn.be/stops/209223"], ["https://data.delijn.be/stops/302135", "https://data.delijn.be/stops/307327"], ["https://data.delijn.be/stops/202900", "https://data.delijn.be/stops/203899"], ["https://data.delijn.be/stops/507419", "https://data.delijn.be/stops/507694"], ["https://data.delijn.be/stops/306943", "https://data.delijn.be/stops/306945"], ["https://data.delijn.be/stops/104103", "https://data.delijn.be/stops/108760"], ["https://data.delijn.be/stops/301885", "https://data.delijn.be/stops/301890"], ["https://data.delijn.be/stops/109101", "https://data.delijn.be/stops/109102"], ["https://data.delijn.be/stops/401785", "https://data.delijn.be/stops/406006"], ["https://data.delijn.be/stops/208581", "https://data.delijn.be/stops/305447"], ["https://data.delijn.be/stops/202686", "https://data.delijn.be/stops/203686"], ["https://data.delijn.be/stops/303835", "https://data.delijn.be/stops/304125"], ["https://data.delijn.be/stops/401509", "https://data.delijn.be/stops/402023"], ["https://data.delijn.be/stops/401467", "https://data.delijn.be/stops/401885"], ["https://data.delijn.be/stops/305377", "https://data.delijn.be/stops/305970"], ["https://data.delijn.be/stops/408598", "https://data.delijn.be/stops/408691"], ["https://data.delijn.be/stops/204240", "https://data.delijn.be/stops/205707"], ["https://data.delijn.be/stops/401036", "https://data.delijn.be/stops/404908"], ["https://data.delijn.be/stops/404649", "https://data.delijn.be/stops/410112"], ["https://data.delijn.be/stops/506118", "https://data.delijn.be/stops/506209"], ["https://data.delijn.be/stops/103710", "https://data.delijn.be/stops/104724"], ["https://data.delijn.be/stops/201289", "https://data.delijn.be/stops/211084"], ["https://data.delijn.be/stops/104352", "https://data.delijn.be/stops/104882"], ["https://data.delijn.be/stops/504279", "https://data.delijn.be/stops/505799"], ["https://data.delijn.be/stops/200808", "https://data.delijn.be/stops/203436"], ["https://data.delijn.be/stops/206784", "https://data.delijn.be/stops/208030"], ["https://data.delijn.be/stops/101235", "https://data.delijn.be/stops/103041"], ["https://data.delijn.be/stops/307544", "https://data.delijn.be/stops/307757"], ["https://data.delijn.be/stops/301334", "https://data.delijn.be/stops/301388"], ["https://data.delijn.be/stops/101071", "https://data.delijn.be/stops/107197"], ["https://data.delijn.be/stops/200625", "https://data.delijn.be/stops/211073"], ["https://data.delijn.be/stops/104237", "https://data.delijn.be/stops/105188"], ["https://data.delijn.be/stops/200902", "https://data.delijn.be/stops/203106"], ["https://data.delijn.be/stops/208207", "https://data.delijn.be/stops/209768"], ["https://data.delijn.be/stops/210528", "https://data.delijn.be/stops/211528"], ["https://data.delijn.be/stops/504124", "https://data.delijn.be/stops/509121"], ["https://data.delijn.be/stops/200876", "https://data.delijn.be/stops/502743"], ["https://data.delijn.be/stops/104598", "https://data.delijn.be/stops/107428"], ["https://data.delijn.be/stops/403293", "https://data.delijn.be/stops/403357"], ["https://data.delijn.be/stops/200747", "https://data.delijn.be/stops/203160"], ["https://data.delijn.be/stops/208384", "https://data.delijn.be/stops/208385"], ["https://data.delijn.be/stops/301836", "https://data.delijn.be/stops/308601"], ["https://data.delijn.be/stops/504413", "https://data.delijn.be/stops/504571"], ["https://data.delijn.be/stops/400873", "https://data.delijn.be/stops/403580"], ["https://data.delijn.be/stops/405934", "https://data.delijn.be/stops/405963"], ["https://data.delijn.be/stops/106859", "https://data.delijn.be/stops/109542"], ["https://data.delijn.be/stops/500567", "https://data.delijn.be/stops/501041"], ["https://data.delijn.be/stops/102648", "https://data.delijn.be/stops/308811"], ["https://data.delijn.be/stops/403205", "https://data.delijn.be/stops/403285"], ["https://data.delijn.be/stops/407210", "https://data.delijn.be/stops/407215"], ["https://data.delijn.be/stops/203989", "https://data.delijn.be/stops/211849"], ["https://data.delijn.be/stops/503009", "https://data.delijn.be/stops/508015"], ["https://data.delijn.be/stops/204511", "https://data.delijn.be/stops/204554"], ["https://data.delijn.be/stops/101477", "https://data.delijn.be/stops/101945"], ["https://data.delijn.be/stops/301237", "https://data.delijn.be/stops/307850"], ["https://data.delijn.be/stops/105522", "https://data.delijn.be/stops/106972"], ["https://data.delijn.be/stops/404399", "https://data.delijn.be/stops/408486"], ["https://data.delijn.be/stops/203682", "https://data.delijn.be/stops/203707"], ["https://data.delijn.be/stops/106824", "https://data.delijn.be/stops/106838"], ["https://data.delijn.be/stops/404935", "https://data.delijn.be/stops/405649"], ["https://data.delijn.be/stops/208362", "https://data.delijn.be/stops/209399"], ["https://data.delijn.be/stops/504482", "https://data.delijn.be/stops/505817"], ["https://data.delijn.be/stops/202623", "https://data.delijn.be/stops/210043"], ["https://data.delijn.be/stops/505010", "https://data.delijn.be/stops/507321"], ["https://data.delijn.be/stops/102498", "https://data.delijn.be/stops/400029"], ["https://data.delijn.be/stops/300648", "https://data.delijn.be/stops/300652"], ["https://data.delijn.be/stops/507304", "https://data.delijn.be/stops/507313"], ["https://data.delijn.be/stops/200844", "https://data.delijn.be/stops/211005"], ["https://data.delijn.be/stops/409638", "https://data.delijn.be/stops/410035"], ["https://data.delijn.be/stops/204448", "https://data.delijn.be/stops/205262"], ["https://data.delijn.be/stops/107425", "https://data.delijn.be/stops/109240"], ["https://data.delijn.be/stops/103955", "https://data.delijn.be/stops/105710"], ["https://data.delijn.be/stops/503207", "https://data.delijn.be/stops/509822"], ["https://data.delijn.be/stops/302386", "https://data.delijn.be/stops/302387"], ["https://data.delijn.be/stops/403353", "https://data.delijn.be/stops/403482"], ["https://data.delijn.be/stops/208338", "https://data.delijn.be/stops/209339"], ["https://data.delijn.be/stops/200182", "https://data.delijn.be/stops/203752"], ["https://data.delijn.be/stops/203028", "https://data.delijn.be/stops/211025"], ["https://data.delijn.be/stops/501458", "https://data.delijn.be/stops/501534"], ["https://data.delijn.be/stops/205983", "https://data.delijn.be/stops/208804"], ["https://data.delijn.be/stops/102397", "https://data.delijn.be/stops/106218"], ["https://data.delijn.be/stops/409041", "https://data.delijn.be/stops/409470"], ["https://data.delijn.be/stops/403805", "https://data.delijn.be/stops/403809"], ["https://data.delijn.be/stops/509285", "https://data.delijn.be/stops/509289"], ["https://data.delijn.be/stops/502595", "https://data.delijn.be/stops/507378"], ["https://data.delijn.be/stops/501035", "https://data.delijn.be/stops/506035"], ["https://data.delijn.be/stops/504521", "https://data.delijn.be/stops/509521"], ["https://data.delijn.be/stops/503314", "https://data.delijn.be/stops/508140"], ["https://data.delijn.be/stops/204724", "https://data.delijn.be/stops/205724"], ["https://data.delijn.be/stops/302739", "https://data.delijn.be/stops/307846"], ["https://data.delijn.be/stops/501144", "https://data.delijn.be/stops/502351"], ["https://data.delijn.be/stops/200646", "https://data.delijn.be/stops/201646"], ["https://data.delijn.be/stops/502309", "https://data.delijn.be/stops/507309"], ["https://data.delijn.be/stops/200645", "https://data.delijn.be/stops/201645"], ["https://data.delijn.be/stops/503767", "https://data.delijn.be/stops/508767"], ["https://data.delijn.be/stops/208017", "https://data.delijn.be/stops/208024"], ["https://data.delijn.be/stops/502063", "https://data.delijn.be/stops/507063"], ["https://data.delijn.be/stops/202429", "https://data.delijn.be/stops/203327"], ["https://data.delijn.be/stops/201854", "https://data.delijn.be/stops/202027"], ["https://data.delijn.be/stops/109154", "https://data.delijn.be/stops/109157"], ["https://data.delijn.be/stops/300268", "https://data.delijn.be/stops/300269"], ["https://data.delijn.be/stops/106384", "https://data.delijn.be/stops/106392"], ["https://data.delijn.be/stops/306610", "https://data.delijn.be/stops/306611"], ["https://data.delijn.be/stops/300830", "https://data.delijn.be/stops/306641"], ["https://data.delijn.be/stops/108312", "https://data.delijn.be/stops/109374"], ["https://data.delijn.be/stops/504693", "https://data.delijn.be/stops/509072"], ["https://data.delijn.be/stops/301074", "https://data.delijn.be/stops/303650"], ["https://data.delijn.be/stops/300904", "https://data.delijn.be/stops/300905"], ["https://data.delijn.be/stops/406294", "https://data.delijn.be/stops/406444"], ["https://data.delijn.be/stops/502644", "https://data.delijn.be/stops/507089"], ["https://data.delijn.be/stops/403710", "https://data.delijn.be/stops/406709"], ["https://data.delijn.be/stops/304834", "https://data.delijn.be/stops/307830"], ["https://data.delijn.be/stops/107061", "https://data.delijn.be/stops/109665"], ["https://data.delijn.be/stops/502492", "https://data.delijn.be/stops/507492"], ["https://data.delijn.be/stops/502093", "https://data.delijn.be/stops/502147"], ["https://data.delijn.be/stops/304959", "https://data.delijn.be/stops/304966"], ["https://data.delijn.be/stops/102213", "https://data.delijn.be/stops/102285"], ["https://data.delijn.be/stops/208115", "https://data.delijn.be/stops/208231"], ["https://data.delijn.be/stops/401161", "https://data.delijn.be/stops/408187"], ["https://data.delijn.be/stops/503351", "https://data.delijn.be/stops/503375"], ["https://data.delijn.be/stops/300763", "https://data.delijn.be/stops/306116"], ["https://data.delijn.be/stops/505021", "https://data.delijn.be/stops/505336"], ["https://data.delijn.be/stops/102779", "https://data.delijn.be/stops/106035"], ["https://data.delijn.be/stops/501116", "https://data.delijn.be/stops/505746"], ["https://data.delijn.be/stops/408517", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/102087", "https://data.delijn.be/stops/108867"], ["https://data.delijn.be/stops/404940", "https://data.delijn.be/stops/404943"], ["https://data.delijn.be/stops/302455", "https://data.delijn.be/stops/302457"], ["https://data.delijn.be/stops/102491", "https://data.delijn.be/stops/400427"], ["https://data.delijn.be/stops/301937", "https://data.delijn.be/stops/306825"], ["https://data.delijn.be/stops/306143", "https://data.delijn.be/stops/306144"], ["https://data.delijn.be/stops/107680", "https://data.delijn.be/stops/107990"], ["https://data.delijn.be/stops/209776", "https://data.delijn.be/stops/209777"], ["https://data.delijn.be/stops/200143", "https://data.delijn.be/stops/200551"], ["https://data.delijn.be/stops/401156", "https://data.delijn.be/stops/406719"], ["https://data.delijn.be/stops/301917", "https://data.delijn.be/stops/301918"], ["https://data.delijn.be/stops/204199", "https://data.delijn.be/stops/205199"], ["https://data.delijn.be/stops/103022", "https://data.delijn.be/stops/108647"], ["https://data.delijn.be/stops/504754", "https://data.delijn.be/stops/504755"], ["https://data.delijn.be/stops/501123", "https://data.delijn.be/stops/506122"], ["https://data.delijn.be/stops/103470", "https://data.delijn.be/stops/106615"], ["https://data.delijn.be/stops/201884", "https://data.delijn.be/stops/203060"], ["https://data.delijn.be/stops/302145", "https://data.delijn.be/stops/308085"], ["https://data.delijn.be/stops/503262", "https://data.delijn.be/stops/508262"], ["https://data.delijn.be/stops/407856", "https://data.delijn.be/stops/408167"], ["https://data.delijn.be/stops/108032", "https://data.delijn.be/stops/108033"], ["https://data.delijn.be/stops/208428", "https://data.delijn.be/stops/209428"], ["https://data.delijn.be/stops/502453", "https://data.delijn.be/stops/507464"], ["https://data.delijn.be/stops/503498", "https://data.delijn.be/stops/508494"], ["https://data.delijn.be/stops/200859", "https://data.delijn.be/stops/202333"], ["https://data.delijn.be/stops/106605", "https://data.delijn.be/stops/106688"], ["https://data.delijn.be/stops/505387", "https://data.delijn.be/stops/508087"], ["https://data.delijn.be/stops/208806", "https://data.delijn.be/stops/208954"], ["https://data.delijn.be/stops/303970", "https://data.delijn.be/stops/303974"], ["https://data.delijn.be/stops/206580", "https://data.delijn.be/stops/207921"], ["https://data.delijn.be/stops/206620", "https://data.delijn.be/stops/206757"], ["https://data.delijn.be/stops/302688", "https://data.delijn.be/stops/302694"], ["https://data.delijn.be/stops/202116", "https://data.delijn.be/stops/202640"], ["https://data.delijn.be/stops/306648", "https://data.delijn.be/stops/306651"], ["https://data.delijn.be/stops/304170", "https://data.delijn.be/stops/304171"], ["https://data.delijn.be/stops/405260", "https://data.delijn.be/stops/405278"], ["https://data.delijn.be/stops/505155", "https://data.delijn.be/stops/506088"], ["https://data.delijn.be/stops/408960", "https://data.delijn.be/stops/408962"], ["https://data.delijn.be/stops/301794", "https://data.delijn.be/stops/301816"], ["https://data.delijn.be/stops/408065", "https://data.delijn.be/stops/408120"], ["https://data.delijn.be/stops/203962", "https://data.delijn.be/stops/216009"], ["https://data.delijn.be/stops/500942", "https://data.delijn.be/stops/504847"], ["https://data.delijn.be/stops/300980", "https://data.delijn.be/stops/301001"], ["https://data.delijn.be/stops/200570", "https://data.delijn.be/stops/203194"], ["https://data.delijn.be/stops/400721", "https://data.delijn.be/stops/404333"], ["https://data.delijn.be/stops/503313", "https://data.delijn.be/stops/503791"], ["https://data.delijn.be/stops/504747", "https://data.delijn.be/stops/509747"], ["https://data.delijn.be/stops/206989", "https://data.delijn.be/stops/217007"], ["https://data.delijn.be/stops/201959", "https://data.delijn.be/stops/209491"], ["https://data.delijn.be/stops/300849", "https://data.delijn.be/stops/301793"], ["https://data.delijn.be/stops/305349", "https://data.delijn.be/stops/308981"], ["https://data.delijn.be/stops/301361", "https://data.delijn.be/stops/306125"], ["https://data.delijn.be/stops/200570", "https://data.delijn.be/stops/201575"], ["https://data.delijn.be/stops/307760", "https://data.delijn.be/stops/307762"], ["https://data.delijn.be/stops/400556", "https://data.delijn.be/stops/404181"], ["https://data.delijn.be/stops/107434", "https://data.delijn.be/stops/107464"], ["https://data.delijn.be/stops/508624", "https://data.delijn.be/stops/508697"], ["https://data.delijn.be/stops/305221", "https://data.delijn.be/stops/305321"], ["https://data.delijn.be/stops/201540", "https://data.delijn.be/stops/205931"], ["https://data.delijn.be/stops/102170", "https://data.delijn.be/stops/104123"], ["https://data.delijn.be/stops/400138", "https://data.delijn.be/stops/400139"], ["https://data.delijn.be/stops/408064", "https://data.delijn.be/stops/408065"], ["https://data.delijn.be/stops/305684", "https://data.delijn.be/stops/305685"], ["https://data.delijn.be/stops/106807", "https://data.delijn.be/stops/106809"], ["https://data.delijn.be/stops/407449", "https://data.delijn.be/stops/407570"], ["https://data.delijn.be/stops/307270", "https://data.delijn.be/stops/307273"], ["https://data.delijn.be/stops/107932", "https://data.delijn.be/stops/107933"], ["https://data.delijn.be/stops/204002", "https://data.delijn.be/stops/204364"], ["https://data.delijn.be/stops/103489", "https://data.delijn.be/stops/109371"], ["https://data.delijn.be/stops/502356", "https://data.delijn.be/stops/503979"], ["https://data.delijn.be/stops/307741", "https://data.delijn.be/stops/307742"], ["https://data.delijn.be/stops/106714", "https://data.delijn.be/stops/106715"], ["https://data.delijn.be/stops/302862", "https://data.delijn.be/stops/304925"], ["https://data.delijn.be/stops/404249", "https://data.delijn.be/stops/404322"], ["https://data.delijn.be/stops/208290", "https://data.delijn.be/stops/208295"], ["https://data.delijn.be/stops/503085", "https://data.delijn.be/stops/503611"], ["https://data.delijn.be/stops/407036", "https://data.delijn.be/stops/407037"], ["https://data.delijn.be/stops/305513", "https://data.delijn.be/stops/305519"], ["https://data.delijn.be/stops/407650", "https://data.delijn.be/stops/407667"], ["https://data.delijn.be/stops/501523", "https://data.delijn.be/stops/506311"], ["https://data.delijn.be/stops/407005", "https://data.delijn.be/stops/407046"], ["https://data.delijn.be/stops/302368", "https://data.delijn.be/stops/307854"], ["https://data.delijn.be/stops/204641", "https://data.delijn.be/stops/204772"], ["https://data.delijn.be/stops/301660", "https://data.delijn.be/stops/307229"], ["https://data.delijn.be/stops/201255", "https://data.delijn.be/stops/203613"], ["https://data.delijn.be/stops/406208", "https://data.delijn.be/stops/406225"], ["https://data.delijn.be/stops/404191", "https://data.delijn.be/stops/410213"], ["https://data.delijn.be/stops/200717", "https://data.delijn.be/stops/203641"], ["https://data.delijn.be/stops/305682", "https://data.delijn.be/stops/306328"], ["https://data.delijn.be/stops/402823", "https://data.delijn.be/stops/409228"], ["https://data.delijn.be/stops/207294", "https://data.delijn.be/stops/207806"], ["https://data.delijn.be/stops/300777", "https://data.delijn.be/stops/300801"], ["https://data.delijn.be/stops/403914", "https://data.delijn.be/stops/403915"], ["https://data.delijn.be/stops/302178", "https://data.delijn.be/stops/308129"], ["https://data.delijn.be/stops/400145", "https://data.delijn.be/stops/400311"], ["https://data.delijn.be/stops/109123", "https://data.delijn.be/stops/109395"], ["https://data.delijn.be/stops/302342", "https://data.delijn.be/stops/304895"], ["https://data.delijn.be/stops/402119", "https://data.delijn.be/stops/402129"], ["https://data.delijn.be/stops/207702", "https://data.delijn.be/stops/207703"], ["https://data.delijn.be/stops/408371", "https://data.delijn.be/stops/409416"], ["https://data.delijn.be/stops/300464", "https://data.delijn.be/stops/300474"], ["https://data.delijn.be/stops/200795", "https://data.delijn.be/stops/201670"], ["https://data.delijn.be/stops/200055", "https://data.delijn.be/stops/200472"], ["https://data.delijn.be/stops/305145", "https://data.delijn.be/stops/305223"], ["https://data.delijn.be/stops/408632", "https://data.delijn.be/stops/408633"], ["https://data.delijn.be/stops/406219", "https://data.delijn.be/stops/409529"], ["https://data.delijn.be/stops/501425", "https://data.delijn.be/stops/506200"], ["https://data.delijn.be/stops/404801", "https://data.delijn.be/stops/404814"], ["https://data.delijn.be/stops/400464", "https://data.delijn.be/stops/407642"], ["https://data.delijn.be/stops/107554", "https://data.delijn.be/stops/108938"], ["https://data.delijn.be/stops/104768", "https://data.delijn.be/stops/108682"], ["https://data.delijn.be/stops/507443", "https://data.delijn.be/stops/507451"], ["https://data.delijn.be/stops/204206", "https://data.delijn.be/stops/205234"], ["https://data.delijn.be/stops/406688", "https://data.delijn.be/stops/406689"], ["https://data.delijn.be/stops/101228", "https://data.delijn.be/stops/102646"], ["https://data.delijn.be/stops/109142", "https://data.delijn.be/stops/109144"], ["https://data.delijn.be/stops/302177", "https://data.delijn.be/stops/308103"], ["https://data.delijn.be/stops/105834", "https://data.delijn.be/stops/109055"], ["https://data.delijn.be/stops/203949", "https://data.delijn.be/stops/216009"], ["https://data.delijn.be/stops/200374", "https://data.delijn.be/stops/200548"], ["https://data.delijn.be/stops/204142", "https://data.delijn.be/stops/204147"], ["https://data.delijn.be/stops/305958", "https://data.delijn.be/stops/306744"], ["https://data.delijn.be/stops/402384", "https://data.delijn.be/stops/410042"], ["https://data.delijn.be/stops/400205", "https://data.delijn.be/stops/400211"], ["https://data.delijn.be/stops/200334", "https://data.delijn.be/stops/208404"], ["https://data.delijn.be/stops/301346", "https://data.delijn.be/stops/301365"], ["https://data.delijn.be/stops/206720", "https://data.delijn.be/stops/207655"], ["https://data.delijn.be/stops/200475", "https://data.delijn.be/stops/211850"], ["https://data.delijn.be/stops/109314", "https://data.delijn.be/stops/109315"], ["https://data.delijn.be/stops/200540", "https://data.delijn.be/stops/201657"], ["https://data.delijn.be/stops/401759", "https://data.delijn.be/stops/401761"], ["https://data.delijn.be/stops/301881", "https://data.delijn.be/stops/301882"], ["https://data.delijn.be/stops/304004", "https://data.delijn.be/stops/304036"], ["https://data.delijn.be/stops/301424", "https://data.delijn.be/stops/307322"], ["https://data.delijn.be/stops/501244", "https://data.delijn.be/stops/501371"], ["https://data.delijn.be/stops/504272", "https://data.delijn.be/stops/509272"], ["https://data.delijn.be/stops/405428", "https://data.delijn.be/stops/302850"], ["https://data.delijn.be/stops/307974", "https://data.delijn.be/stops/307976"], ["https://data.delijn.be/stops/108628", "https://data.delijn.be/stops/408449"], ["https://data.delijn.be/stops/104619", "https://data.delijn.be/stops/205272"], ["https://data.delijn.be/stops/504316", "https://data.delijn.be/stops/509316"], ["https://data.delijn.be/stops/101838", "https://data.delijn.be/stops/107625"], ["https://data.delijn.be/stops/206047", "https://data.delijn.be/stops/206298"], ["https://data.delijn.be/stops/300057", "https://data.delijn.be/stops/300142"], ["https://data.delijn.be/stops/204098", "https://data.delijn.be/stops/205097"], ["https://data.delijn.be/stops/503067", "https://data.delijn.be/stops/505409"], ["https://data.delijn.be/stops/202665", "https://data.delijn.be/stops/210080"], ["https://data.delijn.be/stops/300920", "https://data.delijn.be/stops/305295"], ["https://data.delijn.be/stops/104878", "https://data.delijn.be/stops/105294"], ["https://data.delijn.be/stops/101071", "https://data.delijn.be/stops/101073"], ["https://data.delijn.be/stops/403155", "https://data.delijn.be/stops/407583"], ["https://data.delijn.be/stops/106199", "https://data.delijn.be/stops/106200"], ["https://data.delijn.be/stops/505187", "https://data.delijn.be/stops/509569"], ["https://data.delijn.be/stops/401871", "https://data.delijn.be/stops/401874"], ["https://data.delijn.be/stops/300203", "https://data.delijn.be/stops/306743"], ["https://data.delijn.be/stops/204249", "https://data.delijn.be/stops/205148"], ["https://data.delijn.be/stops/400495", "https://data.delijn.be/stops/407217"], ["https://data.delijn.be/stops/102938", "https://data.delijn.be/stops/104675"], ["https://data.delijn.be/stops/407001", "https://data.delijn.be/stops/308079"], ["https://data.delijn.be/stops/304576", "https://data.delijn.be/stops/304659"], ["https://data.delijn.be/stops/103674", "https://data.delijn.be/stops/103676"], ["https://data.delijn.be/stops/502136", "https://data.delijn.be/stops/502165"], ["https://data.delijn.be/stops/508879", "https://data.delijn.be/stops/508994"], ["https://data.delijn.be/stops/108683", "https://data.delijn.be/stops/108894"], ["https://data.delijn.be/stops/306148", "https://data.delijn.be/stops/306151"], ["https://data.delijn.be/stops/503164", "https://data.delijn.be/stops/503603"], ["https://data.delijn.be/stops/301471", "https://data.delijn.be/stops/301481"], ["https://data.delijn.be/stops/204022", "https://data.delijn.be/stops/207996"], ["https://data.delijn.be/stops/402266", "https://data.delijn.be/stops/402422"], ["https://data.delijn.be/stops/504555", "https://data.delijn.be/stops/504565"], ["https://data.delijn.be/stops/101592", "https://data.delijn.be/stops/101614"], ["https://data.delijn.be/stops/503355", "https://data.delijn.be/stops/505133"], ["https://data.delijn.be/stops/405351", "https://data.delijn.be/stops/407151"], ["https://data.delijn.be/stops/303808", "https://data.delijn.be/stops/303809"], ["https://data.delijn.be/stops/208545", "https://data.delijn.be/stops/208546"], ["https://data.delijn.be/stops/501601", "https://data.delijn.be/stops/504506"], ["https://data.delijn.be/stops/207021", "https://data.delijn.be/stops/207028"], ["https://data.delijn.be/stops/400689", "https://data.delijn.be/stops/400805"], ["https://data.delijn.be/stops/305642", "https://data.delijn.be/stops/305670"], ["https://data.delijn.be/stops/206349", "https://data.delijn.be/stops/207349"], ["https://data.delijn.be/stops/101161", "https://data.delijn.be/stops/105972"], ["https://data.delijn.be/stops/590412", "https://data.delijn.be/stops/590413"], ["https://data.delijn.be/stops/206258", "https://data.delijn.be/stops/207257"], ["https://data.delijn.be/stops/301698", "https://data.delijn.be/stops/301701"], ["https://data.delijn.be/stops/105036", "https://data.delijn.be/stops/108057"], ["https://data.delijn.be/stops/107741", "https://data.delijn.be/stops/107744"], ["https://data.delijn.be/stops/505352", "https://data.delijn.be/stops/507295"], ["https://data.delijn.be/stops/401147", "https://data.delijn.be/stops/401525"], ["https://data.delijn.be/stops/200552", "https://data.delijn.be/stops/200568"], ["https://data.delijn.be/stops/408248", "https://data.delijn.be/stops/308289"], ["https://data.delijn.be/stops/202512", "https://data.delijn.be/stops/203513"], ["https://data.delijn.be/stops/303474", "https://data.delijn.be/stops/303483"], ["https://data.delijn.be/stops/201257", "https://data.delijn.be/stops/203136"], ["https://data.delijn.be/stops/206970", "https://data.delijn.be/stops/206971"], ["https://data.delijn.be/stops/409296", "https://data.delijn.be/stops/410114"], ["https://data.delijn.be/stops/200433", "https://data.delijn.be/stops/200434"], ["https://data.delijn.be/stops/206931", "https://data.delijn.be/stops/207098"], ["https://data.delijn.be/stops/501360", "https://data.delijn.be/stops/506348"], ["https://data.delijn.be/stops/503608", "https://data.delijn.be/stops/503789"], ["https://data.delijn.be/stops/206770", "https://data.delijn.be/stops/209034"], ["https://data.delijn.be/stops/200392", "https://data.delijn.be/stops/201012"], ["https://data.delijn.be/stops/201742", "https://data.delijn.be/stops/203382"], ["https://data.delijn.be/stops/304984", "https://data.delijn.be/stops/308028"], ["https://data.delijn.be/stops/407675", "https://data.delijn.be/stops/407678"], ["https://data.delijn.be/stops/509258", "https://data.delijn.be/stops/509683"], ["https://data.delijn.be/stops/407897", "https://data.delijn.be/stops/407937"], ["https://data.delijn.be/stops/405913", "https://data.delijn.be/stops/405933"], ["https://data.delijn.be/stops/402224", "https://data.delijn.be/stops/402236"], ["https://data.delijn.be/stops/303708", "https://data.delijn.be/stops/303741"], ["https://data.delijn.be/stops/406221", "https://data.delijn.be/stops/410188"], ["https://data.delijn.be/stops/305136", "https://data.delijn.be/stops/305214"], ["https://data.delijn.be/stops/200453", "https://data.delijn.be/stops/201842"], ["https://data.delijn.be/stops/402819", "https://data.delijn.be/stops/409446"], ["https://data.delijn.be/stops/303282", "https://data.delijn.be/stops/304638"], ["https://data.delijn.be/stops/401515", "https://data.delijn.be/stops/401581"], ["https://data.delijn.be/stops/206948", "https://data.delijn.be/stops/207593"], ["https://data.delijn.be/stops/204252", "https://data.delijn.be/stops/205252"], ["https://data.delijn.be/stops/105450", "https://data.delijn.be/stops/109937"], ["https://data.delijn.be/stops/302108", "https://data.delijn.be/stops/302123"], ["https://data.delijn.be/stops/404674", "https://data.delijn.be/stops/404677"], ["https://data.delijn.be/stops/107406", "https://data.delijn.be/stops/107407"], ["https://data.delijn.be/stops/302564", "https://data.delijn.be/stops/308121"], ["https://data.delijn.be/stops/103728", "https://data.delijn.be/stops/109446"], ["https://data.delijn.be/stops/104133", "https://data.delijn.be/stops/108262"], ["https://data.delijn.be/stops/206450", "https://data.delijn.be/stops/206451"], ["https://data.delijn.be/stops/109240", "https://data.delijn.be/stops/109241"], ["https://data.delijn.be/stops/305592", "https://data.delijn.be/stops/307514"], ["https://data.delijn.be/stops/306330", "https://data.delijn.be/stops/306332"], ["https://data.delijn.be/stops/204687", "https://data.delijn.be/stops/205664"], ["https://data.delijn.be/stops/504624", "https://data.delijn.be/stops/509630"], ["https://data.delijn.be/stops/204710", "https://data.delijn.be/stops/205314"], ["https://data.delijn.be/stops/501332", "https://data.delijn.be/stops/506327"], ["https://data.delijn.be/stops/305074", "https://data.delijn.be/stops/305152"], ["https://data.delijn.be/stops/502424", "https://data.delijn.be/stops/507421"], ["https://data.delijn.be/stops/208416", "https://data.delijn.be/stops/208743"], ["https://data.delijn.be/stops/209253", "https://data.delijn.be/stops/209328"], ["https://data.delijn.be/stops/202662", "https://data.delijn.be/stops/202663"], ["https://data.delijn.be/stops/108408", "https://data.delijn.be/stops/108413"], ["https://data.delijn.be/stops/502095", "https://data.delijn.be/stops/507095"], ["https://data.delijn.be/stops/404756", "https://data.delijn.be/stops/404782"], ["https://data.delijn.be/stops/202126", "https://data.delijn.be/stops/203125"], ["https://data.delijn.be/stops/204719", "https://data.delijn.be/stops/214012"], ["https://data.delijn.be/stops/105019", "https://data.delijn.be/stops/105082"], ["https://data.delijn.be/stops/406272", "https://data.delijn.be/stops/406277"], ["https://data.delijn.be/stops/301353", "https://data.delijn.be/stops/304526"], ["https://data.delijn.be/stops/203237", "https://data.delijn.be/stops/203268"], ["https://data.delijn.be/stops/201055", "https://data.delijn.be/stops/202476"], ["https://data.delijn.be/stops/300390", "https://data.delijn.be/stops/300398"], ["https://data.delijn.be/stops/305064", "https://data.delijn.be/stops/306917"], ["https://data.delijn.be/stops/102014", "https://data.delijn.be/stops/105982"], ["https://data.delijn.be/stops/301529", "https://data.delijn.be/stops/301556"], ["https://data.delijn.be/stops/206300", "https://data.delijn.be/stops/207472"], ["https://data.delijn.be/stops/301734", "https://data.delijn.be/stops/308421"], ["https://data.delijn.be/stops/504409", "https://data.delijn.be/stops/509414"], ["https://data.delijn.be/stops/303711", "https://data.delijn.be/stops/307259"], ["https://data.delijn.be/stops/404427", "https://data.delijn.be/stops/404444"], ["https://data.delijn.be/stops/502282", "https://data.delijn.be/stops/505560"], ["https://data.delijn.be/stops/400623", "https://data.delijn.be/stops/404290"], ["https://data.delijn.be/stops/200269", "https://data.delijn.be/stops/203928"], ["https://data.delijn.be/stops/305993", "https://data.delijn.be/stops/307071"], ["https://data.delijn.be/stops/306311", "https://data.delijn.be/stops/306313"], ["https://data.delijn.be/stops/503566", "https://data.delijn.be/stops/503944"], ["https://data.delijn.be/stops/402756", "https://data.delijn.be/stops/408214"], ["https://data.delijn.be/stops/109265", "https://data.delijn.be/stops/109269"], ["https://data.delijn.be/stops/303281", "https://data.delijn.be/stops/308965"], ["https://data.delijn.be/stops/107277", "https://data.delijn.be/stops/107394"], ["https://data.delijn.be/stops/502247", "https://data.delijn.be/stops/502248"], ["https://data.delijn.be/stops/402597", "https://data.delijn.be/stops/402601"], ["https://data.delijn.be/stops/301219", "https://data.delijn.be/stops/301221"], ["https://data.delijn.be/stops/206023", "https://data.delijn.be/stops/207069"], ["https://data.delijn.be/stops/403316", "https://data.delijn.be/stops/407593"], ["https://data.delijn.be/stops/303644", "https://data.delijn.be/stops/306560"], ["https://data.delijn.be/stops/103475", "https://data.delijn.be/stops/104996"], ["https://data.delijn.be/stops/102958", "https://data.delijn.be/stops/107009"], ["https://data.delijn.be/stops/204178", "https://data.delijn.be/stops/205242"], ["https://data.delijn.be/stops/105479", "https://data.delijn.be/stops/105480"], ["https://data.delijn.be/stops/107181", "https://data.delijn.be/stops/107182"], ["https://data.delijn.be/stops/308357", "https://data.delijn.be/stops/308358"], ["https://data.delijn.be/stops/502692", "https://data.delijn.be/stops/507692"], ["https://data.delijn.be/stops/104605", "https://data.delijn.be/stops/107379"], ["https://data.delijn.be/stops/202121", "https://data.delijn.be/stops/203121"], ["https://data.delijn.be/stops/305148", "https://data.delijn.be/stops/308050"], ["https://data.delijn.be/stops/101006", "https://data.delijn.be/stops/108635"], ["https://data.delijn.be/stops/108964", "https://data.delijn.be/stops/108968"], ["https://data.delijn.be/stops/207900", "https://data.delijn.be/stops/306078"], ["https://data.delijn.be/stops/301235", "https://data.delijn.be/stops/307622"], ["https://data.delijn.be/stops/105724", "https://data.delijn.be/stops/107860"], ["https://data.delijn.be/stops/401960", "https://data.delijn.be/stops/407043"], ["https://data.delijn.be/stops/503570", "https://data.delijn.be/stops/504774"], ["https://data.delijn.be/stops/206900", "https://data.delijn.be/stops/207900"], ["https://data.delijn.be/stops/104637", "https://data.delijn.be/stops/108036"], ["https://data.delijn.be/stops/305216", "https://data.delijn.be/stops/306964"], ["https://data.delijn.be/stops/502218", "https://data.delijn.be/stops/507218"], ["https://data.delijn.be/stops/502278", "https://data.delijn.be/stops/502281"], ["https://data.delijn.be/stops/205122", "https://data.delijn.be/stops/205126"], ["https://data.delijn.be/stops/307863", "https://data.delijn.be/stops/307864"], ["https://data.delijn.be/stops/402095", "https://data.delijn.be/stops/402334"], ["https://data.delijn.be/stops/109341", "https://data.delijn.be/stops/109342"], ["https://data.delijn.be/stops/403812", "https://data.delijn.be/stops/403813"], ["https://data.delijn.be/stops/400356", "https://data.delijn.be/stops/400357"], ["https://data.delijn.be/stops/503260", "https://data.delijn.be/stops/509765"], ["https://data.delijn.be/stops/503958", "https://data.delijn.be/stops/504663"], ["https://data.delijn.be/stops/202874", "https://data.delijn.be/stops/203873"], ["https://data.delijn.be/stops/206015", "https://data.delijn.be/stops/206055"], ["https://data.delijn.be/stops/108069", "https://data.delijn.be/stops/108071"], ["https://data.delijn.be/stops/503661", "https://data.delijn.be/stops/505128"], ["https://data.delijn.be/stops/303631", "https://data.delijn.be/stops/303632"], ["https://data.delijn.be/stops/202511", "https://data.delijn.be/stops/203607"], ["https://data.delijn.be/stops/105101", "https://data.delijn.be/stops/109504"], ["https://data.delijn.be/stops/408889", "https://data.delijn.be/stops/408890"], ["https://data.delijn.be/stops/502420", "https://data.delijn.be/stops/507421"], ["https://data.delijn.be/stops/107409", "https://data.delijn.be/stops/107599"], ["https://data.delijn.be/stops/109882", "https://data.delijn.be/stops/205820"], ["https://data.delijn.be/stops/107670", "https://data.delijn.be/stops/107980"], ["https://data.delijn.be/stops/401493", "https://data.delijn.be/stops/401586"], ["https://data.delijn.be/stops/304478", "https://data.delijn.be/stops/304491"], ["https://data.delijn.be/stops/407273", "https://data.delijn.be/stops/407303"], ["https://data.delijn.be/stops/204378", "https://data.delijn.be/stops/204420"], ["https://data.delijn.be/stops/503647", "https://data.delijn.be/stops/503730"], ["https://data.delijn.be/stops/400200", "https://data.delijn.be/stops/400229"], ["https://data.delijn.be/stops/410353", "https://data.delijn.be/stops/410354"], ["https://data.delijn.be/stops/108181", "https://data.delijn.be/stops/108182"], ["https://data.delijn.be/stops/405340", "https://data.delijn.be/stops/405349"], ["https://data.delijn.be/stops/405276", "https://data.delijn.be/stops/405277"], ["https://data.delijn.be/stops/305560", "https://data.delijn.be/stops/308688"], ["https://data.delijn.be/stops/507665", "https://data.delijn.be/stops/507925"], ["https://data.delijn.be/stops/305179", "https://data.delijn.be/stops/305210"], ["https://data.delijn.be/stops/502105", "https://data.delijn.be/stops/507105"], ["https://data.delijn.be/stops/201044", "https://data.delijn.be/stops/203142"], ["https://data.delijn.be/stops/402195", "https://data.delijn.be/stops/402362"], ["https://data.delijn.be/stops/408021", "https://data.delijn.be/stops/408125"], ["https://data.delijn.be/stops/303864", "https://data.delijn.be/stops/303867"], ["https://data.delijn.be/stops/109775", "https://data.delijn.be/stops/109777"], ["https://data.delijn.be/stops/102829", "https://data.delijn.be/stops/104775"], ["https://data.delijn.be/stops/302521", "https://data.delijn.be/stops/302531"], ["https://data.delijn.be/stops/503536", "https://data.delijn.be/stops/508536"], ["https://data.delijn.be/stops/303025", "https://data.delijn.be/stops/303026"], ["https://data.delijn.be/stops/503355", "https://data.delijn.be/stops/503880"], ["https://data.delijn.be/stops/104773", "https://data.delijn.be/stops/108154"], ["https://data.delijn.be/stops/108376", "https://data.delijn.be/stops/108462"], ["https://data.delijn.be/stops/206112", "https://data.delijn.be/stops/207112"], ["https://data.delijn.be/stops/502223", "https://data.delijn.be/stops/509796"], ["https://data.delijn.be/stops/505977", "https://data.delijn.be/stops/509387"], ["https://data.delijn.be/stops/101690", "https://data.delijn.be/stops/107400"], ["https://data.delijn.be/stops/301040", "https://data.delijn.be/stops/301050"], ["https://data.delijn.be/stops/104467", "https://data.delijn.be/stops/106293"], ["https://data.delijn.be/stops/102428", "https://data.delijn.be/stops/109127"], ["https://data.delijn.be/stops/502237", "https://data.delijn.be/stops/507237"], ["https://data.delijn.be/stops/403602", "https://data.delijn.be/stops/403645"], ["https://data.delijn.be/stops/405232", "https://data.delijn.be/stops/410165"], ["https://data.delijn.be/stops/406611", "https://data.delijn.be/stops/406645"], ["https://data.delijn.be/stops/504233", "https://data.delijn.be/stops/505842"], ["https://data.delijn.be/stops/204232", "https://data.delijn.be/stops/204261"], ["https://data.delijn.be/stops/204651", "https://data.delijn.be/stops/205651"], ["https://data.delijn.be/stops/103128", "https://data.delijn.be/stops/106878"], ["https://data.delijn.be/stops/503315", "https://data.delijn.be/stops/503320"], ["https://data.delijn.be/stops/407802", "https://data.delijn.be/stops/407808"], ["https://data.delijn.be/stops/101459", "https://data.delijn.be/stops/109286"], ["https://data.delijn.be/stops/102459", "https://data.delijn.be/stops/406861"], ["https://data.delijn.be/stops/402517", "https://data.delijn.be/stops/402523"], ["https://data.delijn.be/stops/300389", "https://data.delijn.be/stops/304613"], ["https://data.delijn.be/stops/404185", "https://data.delijn.be/stops/410184"], ["https://data.delijn.be/stops/504685", "https://data.delijn.be/stops/509619"], ["https://data.delijn.be/stops/105554", "https://data.delijn.be/stops/106036"], ["https://data.delijn.be/stops/202433", "https://data.delijn.be/stops/203433"], ["https://data.delijn.be/stops/401514", "https://data.delijn.be/stops/404480"], ["https://data.delijn.be/stops/102720", "https://data.delijn.be/stops/104724"], ["https://data.delijn.be/stops/206915", "https://data.delijn.be/stops/207301"], ["https://data.delijn.be/stops/501363", "https://data.delijn.be/stops/501367"], ["https://data.delijn.be/stops/202207", "https://data.delijn.be/stops/202770"], ["https://data.delijn.be/stops/101831", "https://data.delijn.be/stops/107008"], ["https://data.delijn.be/stops/204785", "https://data.delijn.be/stops/205789"], ["https://data.delijn.be/stops/102126", "https://data.delijn.be/stops/105064"], ["https://data.delijn.be/stops/306050", "https://data.delijn.be/stops/306052"], ["https://data.delijn.be/stops/400439", "https://data.delijn.be/stops/400681"], ["https://data.delijn.be/stops/207034", "https://data.delijn.be/stops/207215"], ["https://data.delijn.be/stops/503568", "https://data.delijn.be/stops/505935"], ["https://data.delijn.be/stops/206887", "https://data.delijn.be/stops/206892"], ["https://data.delijn.be/stops/301604", "https://data.delijn.be/stops/301605"], ["https://data.delijn.be/stops/403904", "https://data.delijn.be/stops/403905"], ["https://data.delijn.be/stops/302107", "https://data.delijn.be/stops/302125"], ["https://data.delijn.be/stops/407525", "https://data.delijn.be/stops/407549"], ["https://data.delijn.be/stops/206688", "https://data.delijn.be/stops/207716"], ["https://data.delijn.be/stops/406874", "https://data.delijn.be/stops/408481"], ["https://data.delijn.be/stops/402314", "https://data.delijn.be/stops/405082"], ["https://data.delijn.be/stops/204759", "https://data.delijn.be/stops/205484"], ["https://data.delijn.be/stops/302386", "https://data.delijn.be/stops/304818"], ["https://data.delijn.be/stops/409631", "https://data.delijn.be/stops/409642"], ["https://data.delijn.be/stops/406329", "https://data.delijn.be/stops/406346"], ["https://data.delijn.be/stops/509462", "https://data.delijn.be/stops/509465"], ["https://data.delijn.be/stops/208791", "https://data.delijn.be/stops/209782"], ["https://data.delijn.be/stops/201566", "https://data.delijn.be/stops/210121"], ["https://data.delijn.be/stops/304097", "https://data.delijn.be/stops/307507"], ["https://data.delijn.be/stops/303247", "https://data.delijn.be/stops/303659"], ["https://data.delijn.be/stops/108822", "https://data.delijn.be/stops/108829"], ["https://data.delijn.be/stops/210010", "https://data.delijn.be/stops/509781"], ["https://data.delijn.be/stops/200762", "https://data.delijn.be/stops/505279"], ["https://data.delijn.be/stops/200217", "https://data.delijn.be/stops/201213"], ["https://data.delijn.be/stops/502750", "https://data.delijn.be/stops/507050"], ["https://data.delijn.be/stops/302739", "https://data.delijn.be/stops/302743"], ["https://data.delijn.be/stops/505823", "https://data.delijn.be/stops/508134"], ["https://data.delijn.be/stops/504567", "https://data.delijn.be/stops/504569"], ["https://data.delijn.be/stops/302062", "https://data.delijn.be/stops/302063"], ["https://data.delijn.be/stops/303009", "https://data.delijn.be/stops/306101"], ["https://data.delijn.be/stops/101934", "https://data.delijn.be/stops/107739"], ["https://data.delijn.be/stops/501445", "https://data.delijn.be/stops/506556"], ["https://data.delijn.be/stops/400569", "https://data.delijn.be/stops/404152"], ["https://data.delijn.be/stops/406685", "https://data.delijn.be/stops/406688"], ["https://data.delijn.be/stops/206098", "https://data.delijn.be/stops/207098"], ["https://data.delijn.be/stops/208161", "https://data.delijn.be/stops/209160"], ["https://data.delijn.be/stops/102795", "https://data.delijn.be/stops/102800"], ["https://data.delijn.be/stops/101332", "https://data.delijn.be/stops/106675"], ["https://data.delijn.be/stops/504269", "https://data.delijn.be/stops/505912"], ["https://data.delijn.be/stops/209218", "https://data.delijn.be/stops/209219"], ["https://data.delijn.be/stops/210034", "https://data.delijn.be/stops/211034"], ["https://data.delijn.be/stops/408610", "https://data.delijn.be/stops/408611"], ["https://data.delijn.be/stops/405965", "https://data.delijn.be/stops/405987"], ["https://data.delijn.be/stops/400449", "https://data.delijn.be/stops/400948"], ["https://data.delijn.be/stops/408663", "https://data.delijn.be/stops/408817"], ["https://data.delijn.be/stops/109913", "https://data.delijn.be/stops/109917"], ["https://data.delijn.be/stops/508034", "https://data.delijn.be/stops/508274"], ["https://data.delijn.be/stops/305295", "https://data.delijn.be/stops/305887"], ["https://data.delijn.be/stops/204121", "https://data.delijn.be/stops/204786"], ["https://data.delijn.be/stops/407804", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/209217", "https://data.delijn.be/stops/209592"], ["https://data.delijn.be/stops/102860", "https://data.delijn.be/stops/105180"], ["https://data.delijn.be/stops/401472", "https://data.delijn.be/stops/405221"], ["https://data.delijn.be/stops/300944", "https://data.delijn.be/stops/303668"], ["https://data.delijn.be/stops/105718", "https://data.delijn.be/stops/106434"], ["https://data.delijn.be/stops/401463", "https://data.delijn.be/stops/401475"], ["https://data.delijn.be/stops/206337", "https://data.delijn.be/stops/207741"], ["https://data.delijn.be/stops/304139", "https://data.delijn.be/stops/307765"], ["https://data.delijn.be/stops/102182", "https://data.delijn.be/stops/107070"], ["https://data.delijn.be/stops/402125", "https://data.delijn.be/stops/402127"], ["https://data.delijn.be/stops/307546", "https://data.delijn.be/stops/307754"], ["https://data.delijn.be/stops/104784", "https://data.delijn.be/stops/107959"], ["https://data.delijn.be/stops/405660", "https://data.delijn.be/stops/303188"], ["https://data.delijn.be/stops/204608", "https://data.delijn.be/stops/205609"], ["https://data.delijn.be/stops/200966", "https://data.delijn.be/stops/201966"], ["https://data.delijn.be/stops/201350", "https://data.delijn.be/stops/201387"], ["https://data.delijn.be/stops/501206", "https://data.delijn.be/stops/501637"], ["https://data.delijn.be/stops/107964", "https://data.delijn.be/stops/107966"], ["https://data.delijn.be/stops/508129", "https://data.delijn.be/stops/508554"], ["https://data.delijn.be/stops/401824", "https://data.delijn.be/stops/401825"], ["https://data.delijn.be/stops/403552", "https://data.delijn.be/stops/410213"], ["https://data.delijn.be/stops/504696", "https://data.delijn.be/stops/509410"], ["https://data.delijn.be/stops/404267", "https://data.delijn.be/stops/410054"], ["https://data.delijn.be/stops/101384", "https://data.delijn.be/stops/101829"], ["https://data.delijn.be/stops/301691", "https://data.delijn.be/stops/301777"], ["https://data.delijn.be/stops/302323", "https://data.delijn.be/stops/302342"], ["https://data.delijn.be/stops/407370", "https://data.delijn.be/stops/407598"], ["https://data.delijn.be/stops/405883", "https://data.delijn.be/stops/409437"], ["https://data.delijn.be/stops/304033", "https://data.delijn.be/stops/304092"], ["https://data.delijn.be/stops/501511", "https://data.delijn.be/stops/506270"], ["https://data.delijn.be/stops/402772", "https://data.delijn.be/stops/408404"], ["https://data.delijn.be/stops/304811", "https://data.delijn.be/stops/304812"], ["https://data.delijn.be/stops/101652", "https://data.delijn.be/stops/103291"], ["https://data.delijn.be/stops/305066", "https://data.delijn.be/stops/305095"], ["https://data.delijn.be/stops/300424", "https://data.delijn.be/stops/300454"], ["https://data.delijn.be/stops/502458", "https://data.delijn.be/stops/502657"], ["https://data.delijn.be/stops/204669", "https://data.delijn.be/stops/205013"], ["https://data.delijn.be/stops/101823", "https://data.delijn.be/stops/102392"], ["https://data.delijn.be/stops/400296", "https://data.delijn.be/stops/400364"], ["https://data.delijn.be/stops/208054", "https://data.delijn.be/stops/208657"], ["https://data.delijn.be/stops/308088", "https://data.delijn.be/stops/308089"], ["https://data.delijn.be/stops/101748", "https://data.delijn.be/stops/105799"], ["https://data.delijn.be/stops/103721", "https://data.delijn.be/stops/305815"], ["https://data.delijn.be/stops/504209", "https://data.delijn.be/stops/504633"], ["https://data.delijn.be/stops/308534", "https://data.delijn.be/stops/308955"], ["https://data.delijn.be/stops/405732", "https://data.delijn.be/stops/405733"], ["https://data.delijn.be/stops/504347", "https://data.delijn.be/stops/509347"], ["https://data.delijn.be/stops/208173", "https://data.delijn.be/stops/209172"], ["https://data.delijn.be/stops/300397", "https://data.delijn.be/stops/304587"], ["https://data.delijn.be/stops/503475", "https://data.delijn.be/stops/508269"], ["https://data.delijn.be/stops/508826", "https://data.delijn.be/stops/508985"], ["https://data.delijn.be/stops/305548", "https://data.delijn.be/stops/305579"], ["https://data.delijn.be/stops/401245", "https://data.delijn.be/stops/401478"], ["https://data.delijn.be/stops/502245", "https://data.delijn.be/stops/502248"], ["https://data.delijn.be/stops/101460", "https://data.delijn.be/stops/107065"], ["https://data.delijn.be/stops/208145", "https://data.delijn.be/stops/209145"], ["https://data.delijn.be/stops/402302", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/304541", "https://data.delijn.be/stops/307764"], ["https://data.delijn.be/stops/202140", "https://data.delijn.be/stops/202154"], ["https://data.delijn.be/stops/208158", "https://data.delijn.be/stops/209510"], ["https://data.delijn.be/stops/207228", "https://data.delijn.be/stops/302115"], ["https://data.delijn.be/stops/401463", "https://data.delijn.be/stops/403895"], ["https://data.delijn.be/stops/208359", "https://data.delijn.be/stops/209706"], ["https://data.delijn.be/stops/304876", "https://data.delijn.be/stops/304877"], ["https://data.delijn.be/stops/202241", "https://data.delijn.be/stops/203957"], ["https://data.delijn.be/stops/303306", "https://data.delijn.be/stops/303329"], ["https://data.delijn.be/stops/204327", "https://data.delijn.be/stops/204499"], ["https://data.delijn.be/stops/200817", "https://data.delijn.be/stops/202056"], ["https://data.delijn.be/stops/503100", "https://data.delijn.be/stops/508437"], ["https://data.delijn.be/stops/205040", "https://data.delijn.be/stops/205041"], ["https://data.delijn.be/stops/506459", "https://data.delijn.be/stops/506461"], ["https://data.delijn.be/stops/208127", "https://data.delijn.be/stops/209075"], ["https://data.delijn.be/stops/204068", "https://data.delijn.be/stops/204404"], ["https://data.delijn.be/stops/402154", "https://data.delijn.be/stops/402155"], ["https://data.delijn.be/stops/200566", "https://data.delijn.be/stops/201669"], ["https://data.delijn.be/stops/307777", "https://data.delijn.be/stops/307778"], ["https://data.delijn.be/stops/306616", "https://data.delijn.be/stops/306619"], ["https://data.delijn.be/stops/302951", "https://data.delijn.be/stops/302952"], ["https://data.delijn.be/stops/405505", "https://data.delijn.be/stops/410087"], ["https://data.delijn.be/stops/403215", "https://data.delijn.be/stops/403389"], ["https://data.delijn.be/stops/305052", "https://data.delijn.be/stops/306925"], ["https://data.delijn.be/stops/201807", "https://data.delijn.be/stops/201814"], ["https://data.delijn.be/stops/509780", "https://data.delijn.be/stops/509893"], ["https://data.delijn.be/stops/501412", "https://data.delijn.be/stops/505781"], ["https://data.delijn.be/stops/101385", "https://data.delijn.be/stops/102570"], ["https://data.delijn.be/stops/503403", "https://data.delijn.be/stops/509760"], ["https://data.delijn.be/stops/504808", "https://data.delijn.be/stops/504809"], ["https://data.delijn.be/stops/401651", "https://data.delijn.be/stops/401652"], ["https://data.delijn.be/stops/503320", "https://data.delijn.be/stops/508320"], ["https://data.delijn.be/stops/102456", "https://data.delijn.be/stops/102464"], ["https://data.delijn.be/stops/103206", "https://data.delijn.be/stops/106440"], ["https://data.delijn.be/stops/407305", "https://data.delijn.be/stops/407343"], ["https://data.delijn.be/stops/505145", "https://data.delijn.be/stops/505720"], ["https://data.delijn.be/stops/400529", "https://data.delijn.be/stops/403027"], ["https://data.delijn.be/stops/106923", "https://data.delijn.be/stops/106944"], ["https://data.delijn.be/stops/402270", "https://data.delijn.be/stops/402357"], ["https://data.delijn.be/stops/107966", "https://data.delijn.be/stops/108034"], ["https://data.delijn.be/stops/302570", "https://data.delijn.be/stops/302576"], ["https://data.delijn.be/stops/505836", "https://data.delijn.be/stops/509796"], ["https://data.delijn.be/stops/501135", "https://data.delijn.be/stops/506139"], ["https://data.delijn.be/stops/200443", "https://data.delijn.be/stops/202133"], ["https://data.delijn.be/stops/407818", "https://data.delijn.be/stops/408263"], ["https://data.delijn.be/stops/303424", "https://data.delijn.be/stops/303427"], ["https://data.delijn.be/stops/200479", "https://data.delijn.be/stops/201887"], ["https://data.delijn.be/stops/308515", "https://data.delijn.be/stops/308690"], ["https://data.delijn.be/stops/206525", "https://data.delijn.be/stops/216007"], ["https://data.delijn.be/stops/200954", "https://data.delijn.be/stops/201625"], ["https://data.delijn.be/stops/303169", "https://data.delijn.be/stops/307290"], ["https://data.delijn.be/stops/301230", "https://data.delijn.be/stops/301247"], ["https://data.delijn.be/stops/301044", "https://data.delijn.be/stops/308925"], ["https://data.delijn.be/stops/200557", "https://data.delijn.be/stops/201557"], ["https://data.delijn.be/stops/208061", "https://data.delijn.be/stops/209061"], ["https://data.delijn.be/stops/103496", "https://data.delijn.be/stops/103732"], ["https://data.delijn.be/stops/405777", "https://data.delijn.be/stops/405873"], ["https://data.delijn.be/stops/301298", "https://data.delijn.be/stops/307324"], ["https://data.delijn.be/stops/202199", "https://data.delijn.be/stops/203764"], ["https://data.delijn.be/stops/408088", "https://data.delijn.be/stops/408279"], ["https://data.delijn.be/stops/204177", "https://data.delijn.be/stops/205241"], ["https://data.delijn.be/stops/403485", "https://data.delijn.be/stops/403837"], ["https://data.delijn.be/stops/208343", "https://data.delijn.be/stops/218031"], ["https://data.delijn.be/stops/401080", "https://data.delijn.be/stops/401081"], ["https://data.delijn.be/stops/504366", "https://data.delijn.be/stops/504367"], ["https://data.delijn.be/stops/109148", "https://data.delijn.be/stops/109192"], ["https://data.delijn.be/stops/101419", "https://data.delijn.be/stops/106954"], ["https://data.delijn.be/stops/102659", "https://data.delijn.be/stops/104825"], ["https://data.delijn.be/stops/301658", "https://data.delijn.be/stops/301894"], ["https://data.delijn.be/stops/502489", "https://data.delijn.be/stops/507714"], ["https://data.delijn.be/stops/105663", "https://data.delijn.be/stops/109895"], ["https://data.delijn.be/stops/205046", "https://data.delijn.be/stops/205518"], ["https://data.delijn.be/stops/404368", "https://data.delijn.be/stops/405669"], ["https://data.delijn.be/stops/402175", "https://data.delijn.be/stops/402382"], ["https://data.delijn.be/stops/208006", "https://data.delijn.be/stops/209005"], ["https://data.delijn.be/stops/211017", "https://data.delijn.be/stops/502315"], ["https://data.delijn.be/stops/301242", "https://data.delijn.be/stops/307850"], ["https://data.delijn.be/stops/404810", "https://data.delijn.be/stops/406815"], ["https://data.delijn.be/stops/303980", "https://data.delijn.be/stops/306632"], ["https://data.delijn.be/stops/401275", "https://data.delijn.be/stops/408418"], ["https://data.delijn.be/stops/407291", "https://data.delijn.be/stops/407311"], ["https://data.delijn.be/stops/107971", "https://data.delijn.be/stops/306759"], ["https://data.delijn.be/stops/301721", "https://data.delijn.be/stops/308878"], ["https://data.delijn.be/stops/308480", "https://data.delijn.be/stops/308483"], ["https://data.delijn.be/stops/405184", "https://data.delijn.be/stops/409645"], ["https://data.delijn.be/stops/407982", "https://data.delijn.be/stops/408014"], ["https://data.delijn.be/stops/206475", "https://data.delijn.be/stops/206508"], ["https://data.delijn.be/stops/400215", "https://data.delijn.be/stops/400217"], ["https://data.delijn.be/stops/201406", "https://data.delijn.be/stops/202358"], ["https://data.delijn.be/stops/202229", "https://data.delijn.be/stops/203229"], ["https://data.delijn.be/stops/302754", "https://data.delijn.be/stops/302760"], ["https://data.delijn.be/stops/206136", "https://data.delijn.be/stops/206469"], ["https://data.delijn.be/stops/409092", "https://data.delijn.be/stops/409224"], ["https://data.delijn.be/stops/102509", "https://data.delijn.be/stops/406457"], ["https://data.delijn.be/stops/208088", "https://data.delijn.be/stops/209069"], ["https://data.delijn.be/stops/409270", "https://data.delijn.be/stops/409298"], ["https://data.delijn.be/stops/209182", "https://data.delijn.be/stops/218019"], ["https://data.delijn.be/stops/503656", "https://data.delijn.be/stops/508658"], ["https://data.delijn.be/stops/407812", "https://data.delijn.be/stops/407970"], ["https://data.delijn.be/stops/400600", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/407715", "https://data.delijn.be/stops/407717"], ["https://data.delijn.be/stops/505701", "https://data.delijn.be/stops/507638"], ["https://data.delijn.be/stops/501084", "https://data.delijn.be/stops/506084"], ["https://data.delijn.be/stops/503220", "https://data.delijn.be/stops/508224"], ["https://data.delijn.be/stops/406321", "https://data.delijn.be/stops/406393"], ["https://data.delijn.be/stops/304285", "https://data.delijn.be/stops/304286"], ["https://data.delijn.be/stops/207756", "https://data.delijn.be/stops/208757"], ["https://data.delijn.be/stops/201475", "https://data.delijn.be/stops/210057"], ["https://data.delijn.be/stops/404771", "https://data.delijn.be/stops/404784"], ["https://data.delijn.be/stops/400503", "https://data.delijn.be/stops/404049"], ["https://data.delijn.be/stops/401390", "https://data.delijn.be/stops/402821"], ["https://data.delijn.be/stops/105642", "https://data.delijn.be/stops/105799"], ["https://data.delijn.be/stops/306835", "https://data.delijn.be/stops/308541"], ["https://data.delijn.be/stops/209367", "https://data.delijn.be/stops/209374"], ["https://data.delijn.be/stops/502148", "https://data.delijn.be/stops/507095"], ["https://data.delijn.be/stops/406112", "https://data.delijn.be/stops/410199"], ["https://data.delijn.be/stops/109453", "https://data.delijn.be/stops/109455"], ["https://data.delijn.be/stops/505355", "https://data.delijn.be/stops/506218"], ["https://data.delijn.be/stops/109638", "https://data.delijn.be/stops/109641"], ["https://data.delijn.be/stops/204682", "https://data.delijn.be/stops/204683"], ["https://data.delijn.be/stops/403190", "https://data.delijn.be/stops/403820"], ["https://data.delijn.be/stops/206924", "https://data.delijn.be/stops/207924"], ["https://data.delijn.be/stops/301179", "https://data.delijn.be/stops/301459"], ["https://data.delijn.be/stops/200842", "https://data.delijn.be/stops/203307"], ["https://data.delijn.be/stops/504230", "https://data.delijn.be/stops/509236"], ["https://data.delijn.be/stops/202556", "https://data.delijn.be/stops/203560"], ["https://data.delijn.be/stops/101571", "https://data.delijn.be/stops/103982"], ["https://data.delijn.be/stops/304073", "https://data.delijn.be/stops/308644"], ["https://data.delijn.be/stops/504376", "https://data.delijn.be/stops/505060"], ["https://data.delijn.be/stops/202343", "https://data.delijn.be/stops/210047"], ["https://data.delijn.be/stops/105865", "https://data.delijn.be/stops/105866"], ["https://data.delijn.be/stops/206869", "https://data.delijn.be/stops/209747"], ["https://data.delijn.be/stops/404728", "https://data.delijn.be/stops/404835"], ["https://data.delijn.be/stops/509203", "https://data.delijn.be/stops/509206"], ["https://data.delijn.be/stops/109495", "https://data.delijn.be/stops/304042"], ["https://data.delijn.be/stops/102973", "https://data.delijn.be/stops/105570"], ["https://data.delijn.be/stops/206990", "https://data.delijn.be/stops/301429"], ["https://data.delijn.be/stops/403442", "https://data.delijn.be/stops/403479"], ["https://data.delijn.be/stops/205610", "https://data.delijn.be/stops/205611"], ["https://data.delijn.be/stops/104879", "https://data.delijn.be/stops/109973"], ["https://data.delijn.be/stops/206223", "https://data.delijn.be/stops/207222"], ["https://data.delijn.be/stops/400106", "https://data.delijn.be/stops/400164"], ["https://data.delijn.be/stops/405942", "https://data.delijn.be/stops/405999"], ["https://data.delijn.be/stops/202763", "https://data.delijn.be/stops/203762"], ["https://data.delijn.be/stops/201401", "https://data.delijn.be/stops/203364"], ["https://data.delijn.be/stops/505244", "https://data.delijn.be/stops/507211"], ["https://data.delijn.be/stops/504107", "https://data.delijn.be/stops/504446"], ["https://data.delijn.be/stops/200577", "https://data.delijn.be/stops/201576"], ["https://data.delijn.be/stops/408722", "https://data.delijn.be/stops/408732"], ["https://data.delijn.be/stops/505710", "https://data.delijn.be/stops/509145"], ["https://data.delijn.be/stops/505644", "https://data.delijn.be/stops/505706"], ["https://data.delijn.be/stops/105221", "https://data.delijn.be/stops/105224"], ["https://data.delijn.be/stops/101724", "https://data.delijn.be/stops/106802"], ["https://data.delijn.be/stops/301114", "https://data.delijn.be/stops/301115"], ["https://data.delijn.be/stops/404455", "https://data.delijn.be/stops/404456"], ["https://data.delijn.be/stops/105012", "https://data.delijn.be/stops/105014"], ["https://data.delijn.be/stops/408517", "https://data.delijn.be/stops/408679"], ["https://data.delijn.be/stops/107811", "https://data.delijn.be/stops/107944"], ["https://data.delijn.be/stops/200153", "https://data.delijn.be/stops/202359"], ["https://data.delijn.be/stops/504474", "https://data.delijn.be/stops/509474"], ["https://data.delijn.be/stops/200751", "https://data.delijn.be/stops/208319"], ["https://data.delijn.be/stops/206221", "https://data.delijn.be/stops/206372"], ["https://data.delijn.be/stops/208096", "https://data.delijn.be/stops/209096"], ["https://data.delijn.be/stops/303252", "https://data.delijn.be/stops/303261"], ["https://data.delijn.be/stops/503614", "https://data.delijn.be/stops/508605"], ["https://data.delijn.be/stops/504638", "https://data.delijn.be/stops/509638"], ["https://data.delijn.be/stops/102583", "https://data.delijn.be/stops/109110"], ["https://data.delijn.be/stops/205131", "https://data.delijn.be/stops/207635"], ["https://data.delijn.be/stops/202128", "https://data.delijn.be/stops/202578"], ["https://data.delijn.be/stops/302743", "https://data.delijn.be/stops/305552"], ["https://data.delijn.be/stops/402450", "https://data.delijn.be/stops/407495"], ["https://data.delijn.be/stops/405147", "https://data.delijn.be/stops/405203"], ["https://data.delijn.be/stops/206194", "https://data.delijn.be/stops/206367"], ["https://data.delijn.be/stops/501488", "https://data.delijn.be/stops/506488"], ["https://data.delijn.be/stops/202065", "https://data.delijn.be/stops/202711"], ["https://data.delijn.be/stops/403507", "https://data.delijn.be/stops/410336"], ["https://data.delijn.be/stops/505709", "https://data.delijn.be/stops/509148"], ["https://data.delijn.be/stops/102093", "https://data.delijn.be/stops/109817"], ["https://data.delijn.be/stops/404851", "https://data.delijn.be/stops/404855"], ["https://data.delijn.be/stops/401835", "https://data.delijn.be/stops/406047"], ["https://data.delijn.be/stops/305548", "https://data.delijn.be/stops/307185"], ["https://data.delijn.be/stops/407020", "https://data.delijn.be/stops/407076"], ["https://data.delijn.be/stops/400589", "https://data.delijn.be/stops/400616"], ["https://data.delijn.be/stops/300141", "https://data.delijn.be/stops/306812"], ["https://data.delijn.be/stops/200531", "https://data.delijn.be/stops/201289"], ["https://data.delijn.be/stops/305003", "https://data.delijn.be/stops/305020"], ["https://data.delijn.be/stops/405876", "https://data.delijn.be/stops/406879"], ["https://data.delijn.be/stops/206551", "https://data.delijn.be/stops/206869"], ["https://data.delijn.be/stops/200255", "https://data.delijn.be/stops/201258"], ["https://data.delijn.be/stops/102030", "https://data.delijn.be/stops/104124"], ["https://data.delijn.be/stops/504273", "https://data.delijn.be/stops/509270"], ["https://data.delijn.be/stops/507222", "https://data.delijn.be/stops/507375"], ["https://data.delijn.be/stops/302046", "https://data.delijn.be/stops/302047"], ["https://data.delijn.be/stops/403790", "https://data.delijn.be/stops/403791"], ["https://data.delijn.be/stops/507817", "https://data.delijn.be/stops/507818"], ["https://data.delijn.be/stops/301904", "https://data.delijn.be/stops/306118"], ["https://data.delijn.be/stops/403582", "https://data.delijn.be/stops/403583"], ["https://data.delijn.be/stops/102546", "https://data.delijn.be/stops/102548"], ["https://data.delijn.be/stops/206466", "https://data.delijn.be/stops/207469"], ["https://data.delijn.be/stops/107837", "https://data.delijn.be/stops/107838"], ["https://data.delijn.be/stops/204728", "https://data.delijn.be/stops/205727"], ["https://data.delijn.be/stops/407263", "https://data.delijn.be/stops/409498"], ["https://data.delijn.be/stops/206298", "https://data.delijn.be/stops/207298"], ["https://data.delijn.be/stops/204632", "https://data.delijn.be/stops/205632"], ["https://data.delijn.be/stops/106029", "https://data.delijn.be/stops/106032"], ["https://data.delijn.be/stops/304036", "https://data.delijn.be/stops/304864"], ["https://data.delijn.be/stops/408959", "https://data.delijn.be/stops/409126"], ["https://data.delijn.be/stops/400490", "https://data.delijn.be/stops/400491"], ["https://data.delijn.be/stops/504617", "https://data.delijn.be/stops/509630"], ["https://data.delijn.be/stops/401459", "https://data.delijn.be/stops/401540"], ["https://data.delijn.be/stops/406420", "https://data.delijn.be/stops/406421"], ["https://data.delijn.be/stops/503089", "https://data.delijn.be/stops/508094"], ["https://data.delijn.be/stops/108441", "https://data.delijn.be/stops/108442"], ["https://data.delijn.be/stops/301476", "https://data.delijn.be/stops/301477"], ["https://data.delijn.be/stops/206629", "https://data.delijn.be/stops/209571"], ["https://data.delijn.be/stops/406363", "https://data.delijn.be/stops/407099"], ["https://data.delijn.be/stops/408090", "https://data.delijn.be/stops/410345"], ["https://data.delijn.be/stops/301066", "https://data.delijn.be/stops/301067"], ["https://data.delijn.be/stops/308112", "https://data.delijn.be/stops/308820"], ["https://data.delijn.be/stops/106400", "https://data.delijn.be/stops/106401"], ["https://data.delijn.be/stops/206284", "https://data.delijn.be/stops/206873"], ["https://data.delijn.be/stops/505840", "https://data.delijn.be/stops/506046"], ["https://data.delijn.be/stops/408606", "https://data.delijn.be/stops/302833"], ["https://data.delijn.be/stops/206942", "https://data.delijn.be/stops/209100"], ["https://data.delijn.be/stops/403399", "https://data.delijn.be/stops/408453"], ["https://data.delijn.be/stops/501481", "https://data.delijn.be/stops/506471"], ["https://data.delijn.be/stops/204468", "https://data.delijn.be/stops/204780"], ["https://data.delijn.be/stops/300397", "https://data.delijn.be/stops/308963"], ["https://data.delijn.be/stops/204752", "https://data.delijn.be/stops/205753"], ["https://data.delijn.be/stops/200712", "https://data.delijn.be/stops/205400"], ["https://data.delijn.be/stops/502341", "https://data.delijn.be/stops/505308"], ["https://data.delijn.be/stops/302877", "https://data.delijn.be/stops/308674"], ["https://data.delijn.be/stops/402856", "https://data.delijn.be/stops/402858"], ["https://data.delijn.be/stops/503562", "https://data.delijn.be/stops/503573"], ["https://data.delijn.be/stops/102875", "https://data.delijn.be/stops/105365"], ["https://data.delijn.be/stops/408966", "https://data.delijn.be/stops/408967"], ["https://data.delijn.be/stops/206603", "https://data.delijn.be/stops/207976"], ["https://data.delijn.be/stops/301351", "https://data.delijn.be/stops/301367"], ["https://data.delijn.be/stops/300570", "https://data.delijn.be/stops/300727"], ["https://data.delijn.be/stops/204588", "https://data.delijn.be/stops/204771"], ["https://data.delijn.be/stops/504409", "https://data.delijn.be/stops/504472"], ["https://data.delijn.be/stops/102695", "https://data.delijn.be/stops/109673"], ["https://data.delijn.be/stops/300475", "https://data.delijn.be/stops/301570"], ["https://data.delijn.be/stops/108037", "https://data.delijn.be/stops/108043"], ["https://data.delijn.be/stops/101476", "https://data.delijn.be/stops/101964"], ["https://data.delijn.be/stops/409078", "https://data.delijn.be/stops/409079"], ["https://data.delijn.be/stops/302701", "https://data.delijn.be/stops/302702"], ["https://data.delijn.be/stops/401728", "https://data.delijn.be/stops/401771"], ["https://data.delijn.be/stops/108384", "https://data.delijn.be/stops/108385"], ["https://data.delijn.be/stops/208306", "https://data.delijn.be/stops/209306"], ["https://data.delijn.be/stops/218007", "https://data.delijn.be/stops/219007"], ["https://data.delijn.be/stops/101361", "https://data.delijn.be/stops/102187"], ["https://data.delijn.be/stops/102443", "https://data.delijn.be/stops/102444"], ["https://data.delijn.be/stops/405414", "https://data.delijn.be/stops/410018"], ["https://data.delijn.be/stops/101887", "https://data.delijn.be/stops/103152"], ["https://data.delijn.be/stops/201334", "https://data.delijn.be/stops/205920"], ["https://data.delijn.be/stops/206528", "https://data.delijn.be/stops/207480"], ["https://data.delijn.be/stops/405552", "https://data.delijn.be/stops/405582"], ["https://data.delijn.be/stops/200629", "https://data.delijn.be/stops/201629"], ["https://data.delijn.be/stops/300554", "https://data.delijn.be/stops/300568"], ["https://data.delijn.be/stops/301133", "https://data.delijn.be/stops/301134"], ["https://data.delijn.be/stops/300117", "https://data.delijn.be/stops/307733"], ["https://data.delijn.be/stops/401673", "https://data.delijn.be/stops/307626"], ["https://data.delijn.be/stops/402822", "https://data.delijn.be/stops/409231"], ["https://data.delijn.be/stops/403451", "https://data.delijn.be/stops/404435"], ["https://data.delijn.be/stops/201768", "https://data.delijn.be/stops/208270"], ["https://data.delijn.be/stops/402329", "https://data.delijn.be/stops/402405"], ["https://data.delijn.be/stops/301791", "https://data.delijn.be/stops/301792"], ["https://data.delijn.be/stops/208121", "https://data.delijn.be/stops/208201"], ["https://data.delijn.be/stops/306050", "https://data.delijn.be/stops/308676"], ["https://data.delijn.be/stops/509642", "https://data.delijn.be/stops/509657"], ["https://data.delijn.be/stops/502479", "https://data.delijn.be/stops/507471"], ["https://data.delijn.be/stops/204789", "https://data.delijn.be/stops/205788"], ["https://data.delijn.be/stops/208318", "https://data.delijn.be/stops/209318"], ["https://data.delijn.be/stops/202709", "https://data.delijn.be/stops/211709"], ["https://data.delijn.be/stops/104513", "https://data.delijn.be/stops/107797"], ["https://data.delijn.be/stops/202963", "https://data.delijn.be/stops/203963"], ["https://data.delijn.be/stops/206206", "https://data.delijn.be/stops/207199"], ["https://data.delijn.be/stops/501153", "https://data.delijn.be/stops/501668"], ["https://data.delijn.be/stops/102485", "https://data.delijn.be/stops/104955"], ["https://data.delijn.be/stops/302511", "https://data.delijn.be/stops/305841"], ["https://data.delijn.be/stops/206843", "https://data.delijn.be/stops/300843"], ["https://data.delijn.be/stops/400035", "https://data.delijn.be/stops/400319"], ["https://data.delijn.be/stops/403326", "https://data.delijn.be/stops/404039"], ["https://data.delijn.be/stops/305049", "https://data.delijn.be/stops/305088"], ["https://data.delijn.be/stops/300459", "https://data.delijn.be/stops/300476"], ["https://data.delijn.be/stops/401285", "https://data.delijn.be/stops/410207"], ["https://data.delijn.be/stops/303341", "https://data.delijn.be/stops/304712"], ["https://data.delijn.be/stops/501452", "https://data.delijn.be/stops/506452"], ["https://data.delijn.be/stops/103489", "https://data.delijn.be/stops/109360"], ["https://data.delijn.be/stops/102672", "https://data.delijn.be/stops/103497"], ["https://data.delijn.be/stops/302539", "https://data.delijn.be/stops/302544"], ["https://data.delijn.be/stops/208411", "https://data.delijn.be/stops/208766"], ["https://data.delijn.be/stops/109539", "https://data.delijn.be/stops/109584"], ["https://data.delijn.be/stops/404694", "https://data.delijn.be/stops/404697"], ["https://data.delijn.be/stops/505703", "https://data.delijn.be/stops/507542"], ["https://data.delijn.be/stops/303891", "https://data.delijn.be/stops/307889"], ["https://data.delijn.be/stops/408483", "https://data.delijn.be/stops/409011"], ["https://data.delijn.be/stops/303739", "https://data.delijn.be/stops/305970"], ["https://data.delijn.be/stops/406339", "https://data.delijn.be/stops/406405"], ["https://data.delijn.be/stops/200882", "https://data.delijn.be/stops/200898"], ["https://data.delijn.be/stops/502398", "https://data.delijn.be/stops/509794"], ["https://data.delijn.be/stops/102068", "https://data.delijn.be/stops/106931"], ["https://data.delijn.be/stops/202822", "https://data.delijn.be/stops/218503"], ["https://data.delijn.be/stops/307960", "https://data.delijn.be/stops/308073"], ["https://data.delijn.be/stops/404490", "https://data.delijn.be/stops/404523"], ["https://data.delijn.be/stops/208299", "https://data.delijn.be/stops/209299"], ["https://data.delijn.be/stops/102137", "https://data.delijn.be/stops/109217"], ["https://data.delijn.be/stops/102312", "https://data.delijn.be/stops/106258"], ["https://data.delijn.be/stops/101320", "https://data.delijn.be/stops/104124"], ["https://data.delijn.be/stops/200102", "https://data.delijn.be/stops/201102"], ["https://data.delijn.be/stops/406596", "https://data.delijn.be/stops/406597"], ["https://data.delijn.be/stops/408338", "https://data.delijn.be/stops/408339"], ["https://data.delijn.be/stops/407673", "https://data.delijn.be/stops/409803"], ["https://data.delijn.be/stops/303779", "https://data.delijn.be/stops/303782"], ["https://data.delijn.be/stops/205212", "https://data.delijn.be/stops/205452"], ["https://data.delijn.be/stops/404437", "https://data.delijn.be/stops/404484"], ["https://data.delijn.be/stops/208261", "https://data.delijn.be/stops/209261"], ["https://data.delijn.be/stops/107742", "https://data.delijn.be/stops/107744"], ["https://data.delijn.be/stops/206829", "https://data.delijn.be/stops/216021"], ["https://data.delijn.be/stops/503483", "https://data.delijn.be/stops/508479"], ["https://data.delijn.be/stops/501346", "https://data.delijn.be/stops/501603"], ["https://data.delijn.be/stops/105390", "https://data.delijn.be/stops/105395"], ["https://data.delijn.be/stops/208437", "https://data.delijn.be/stops/209437"], ["https://data.delijn.be/stops/208878", "https://data.delijn.be/stops/209878"], ["https://data.delijn.be/stops/103208", "https://data.delijn.be/stops/103209"], ["https://data.delijn.be/stops/304410", "https://data.delijn.be/stops/306876"], ["https://data.delijn.be/stops/501235", "https://data.delijn.be/stops/501236"], ["https://data.delijn.be/stops/505442", "https://data.delijn.be/stops/509143"], ["https://data.delijn.be/stops/502059", "https://data.delijn.be/stops/507042"], ["https://data.delijn.be/stops/101440", "https://data.delijn.be/stops/105455"], ["https://data.delijn.be/stops/502552", "https://data.delijn.be/stops/505735"], ["https://data.delijn.be/stops/502481", "https://data.delijn.be/stops/507474"], ["https://data.delijn.be/stops/202818", "https://data.delijn.be/stops/211070"], ["https://data.delijn.be/stops/102436", "https://data.delijn.be/stops/107887"], ["https://data.delijn.be/stops/504622", "https://data.delijn.be/stops/509625"], ["https://data.delijn.be/stops/106960", "https://data.delijn.be/stops/109510"], ["https://data.delijn.be/stops/401511", "https://data.delijn.be/stops/409011"], ["https://data.delijn.be/stops/305329", "https://data.delijn.be/stops/306343"], ["https://data.delijn.be/stops/305182", "https://data.delijn.be/stops/305207"], ["https://data.delijn.be/stops/302530", "https://data.delijn.be/stops/302608"], ["https://data.delijn.be/stops/301141", "https://data.delijn.be/stops/303077"], ["https://data.delijn.be/stops/404727", "https://data.delijn.be/stops/404748"], ["https://data.delijn.be/stops/104095", "https://data.delijn.be/stops/104111"], ["https://data.delijn.be/stops/210053", "https://data.delijn.be/stops/211053"], ["https://data.delijn.be/stops/302003", "https://data.delijn.be/stops/306379"], ["https://data.delijn.be/stops/102214", "https://data.delijn.be/stops/102286"], ["https://data.delijn.be/stops/202382", "https://data.delijn.be/stops/203383"], ["https://data.delijn.be/stops/208270", "https://data.delijn.be/stops/219006"], ["https://data.delijn.be/stops/306286", "https://data.delijn.be/stops/306661"], ["https://data.delijn.be/stops/304548", "https://data.delijn.be/stops/304552"], ["https://data.delijn.be/stops/504280", "https://data.delijn.be/stops/509284"], ["https://data.delijn.be/stops/300670", "https://data.delijn.be/stops/300672"], ["https://data.delijn.be/stops/101723", "https://data.delijn.be/stops/105258"], ["https://data.delijn.be/stops/505216", "https://data.delijn.be/stops/505991"], ["https://data.delijn.be/stops/202021", "https://data.delijn.be/stops/203021"], ["https://data.delijn.be/stops/501482", "https://data.delijn.be/stops/506440"], ["https://data.delijn.be/stops/302436", "https://data.delijn.be/stops/302437"], ["https://data.delijn.be/stops/202110", "https://data.delijn.be/stops/205104"], ["https://data.delijn.be/stops/305753", "https://data.delijn.be/stops/306332"], ["https://data.delijn.be/stops/404636", "https://data.delijn.be/stops/404989"], ["https://data.delijn.be/stops/106249", "https://data.delijn.be/stops/106250"], ["https://data.delijn.be/stops/504942", "https://data.delijn.be/stops/505980"], ["https://data.delijn.be/stops/500017", "https://data.delijn.be/stops/502238"], ["https://data.delijn.be/stops/503787", "https://data.delijn.be/stops/508787"], ["https://data.delijn.be/stops/302861", "https://data.delijn.be/stops/302917"], ["https://data.delijn.be/stops/304460", "https://data.delijn.be/stops/307692"], ["https://data.delijn.be/stops/102962", "https://data.delijn.be/stops/109277"], ["https://data.delijn.be/stops/108135", "https://data.delijn.be/stops/109135"], ["https://data.delijn.be/stops/501137", "https://data.delijn.be/stops/506128"], ["https://data.delijn.be/stops/202963", "https://data.delijn.be/stops/202964"], ["https://data.delijn.be/stops/200017", "https://data.delijn.be/stops/201149"], ["https://data.delijn.be/stops/200231", "https://data.delijn.be/stops/201468"], ["https://data.delijn.be/stops/505744", "https://data.delijn.be/stops/507004"], ["https://data.delijn.be/stops/206514", "https://data.delijn.be/stops/206661"], ["https://data.delijn.be/stops/203174", "https://data.delijn.be/stops/203175"], ["https://data.delijn.be/stops/403574", "https://data.delijn.be/stops/403576"], ["https://data.delijn.be/stops/106959", "https://data.delijn.be/stops/106960"], ["https://data.delijn.be/stops/307730", "https://data.delijn.be/stops/307731"], ["https://data.delijn.be/stops/101645", "https://data.delijn.be/stops/105145"], ["https://data.delijn.be/stops/208440", "https://data.delijn.be/stops/208441"], ["https://data.delijn.be/stops/105031", "https://data.delijn.be/stops/105171"], ["https://data.delijn.be/stops/503309", "https://data.delijn.be/stops/509908"], ["https://data.delijn.be/stops/102040", "https://data.delijn.be/stops/103750"], ["https://data.delijn.be/stops/503608", "https://data.delijn.be/stops/505984"], ["https://data.delijn.be/stops/301051", "https://data.delijn.be/stops/301061"], ["https://data.delijn.be/stops/101827", "https://data.delijn.be/stops/107006"], ["https://data.delijn.be/stops/105273", "https://data.delijn.be/stops/105292"], ["https://data.delijn.be/stops/302493", "https://data.delijn.be/stops/302498"], ["https://data.delijn.be/stops/302633", "https://data.delijn.be/stops/302644"], ["https://data.delijn.be/stops/400483", "https://data.delijn.be/stops/400486"], ["https://data.delijn.be/stops/407098", "https://data.delijn.be/stops/407272"], ["https://data.delijn.be/stops/304546", "https://data.delijn.be/stops/304549"], ["https://data.delijn.be/stops/503409", "https://data.delijn.be/stops/508365"], ["https://data.delijn.be/stops/502005", "https://data.delijn.be/stops/507005"], ["https://data.delijn.be/stops/507429", "https://data.delijn.be/stops/507622"], ["https://data.delijn.be/stops/408726", "https://data.delijn.be/stops/408908"], ["https://data.delijn.be/stops/403752", "https://data.delijn.be/stops/403761"], ["https://data.delijn.be/stops/202011", "https://data.delijn.be/stops/203009"], ["https://data.delijn.be/stops/206302", "https://data.delijn.be/stops/207890"], ["https://data.delijn.be/stops/206918", "https://data.delijn.be/stops/207290"], ["https://data.delijn.be/stops/301287", "https://data.delijn.be/stops/301288"], ["https://data.delijn.be/stops/208100", "https://data.delijn.be/stops/208160"], ["https://data.delijn.be/stops/403913", "https://data.delijn.be/stops/403938"], ["https://data.delijn.be/stops/205788", "https://data.delijn.be/stops/205790"], ["https://data.delijn.be/stops/308510", "https://data.delijn.be/stops/308512"], ["https://data.delijn.be/stops/101484", "https://data.delijn.be/stops/109705"], ["https://data.delijn.be/stops/505023", "https://data.delijn.be/stops/507672"], ["https://data.delijn.be/stops/201094", "https://data.delijn.be/stops/204357"], ["https://data.delijn.be/stops/400218", "https://data.delijn.be/stops/400231"], ["https://data.delijn.be/stops/502057", "https://data.delijn.be/stops/507057"], ["https://data.delijn.be/stops/408208", "https://data.delijn.be/stops/408313"], ["https://data.delijn.be/stops/303754", "https://data.delijn.be/stops/303789"], ["https://data.delijn.be/stops/406089", "https://data.delijn.be/stops/409406"], ["https://data.delijn.be/stops/304950", "https://data.delijn.be/stops/304951"], ["https://data.delijn.be/stops/505240", "https://data.delijn.be/stops/507916"], ["https://data.delijn.be/stops/106723", "https://data.delijn.be/stops/106724"], ["https://data.delijn.be/stops/301253", "https://data.delijn.be/stops/301274"], ["https://data.delijn.be/stops/103248", "https://data.delijn.be/stops/108235"], ["https://data.delijn.be/stops/308451", "https://data.delijn.be/stops/308452"], ["https://data.delijn.be/stops/102741", "https://data.delijn.be/stops/102746"], ["https://data.delijn.be/stops/405025", "https://data.delijn.be/stops/405708"], ["https://data.delijn.be/stops/209084", "https://data.delijn.be/stops/209700"], ["https://data.delijn.be/stops/206648", "https://data.delijn.be/stops/207485"], ["https://data.delijn.be/stops/101675", "https://data.delijn.be/stops/102230"], ["https://data.delijn.be/stops/406404", "https://data.delijn.be/stops/407724"], ["https://data.delijn.be/stops/400534", "https://data.delijn.be/stops/400535"], ["https://data.delijn.be/stops/306552", "https://data.delijn.be/stops/306558"], ["https://data.delijn.be/stops/302218", "https://data.delijn.be/stops/302230"], ["https://data.delijn.be/stops/202449", "https://data.delijn.be/stops/203449"], ["https://data.delijn.be/stops/308270", "https://data.delijn.be/stops/308276"], ["https://data.delijn.be/stops/307314", "https://data.delijn.be/stops/307315"], ["https://data.delijn.be/stops/402850", "https://data.delijn.be/stops/402854"], ["https://data.delijn.be/stops/301787", "https://data.delijn.be/stops/302527"], ["https://data.delijn.be/stops/102521", "https://data.delijn.be/stops/108633"], ["https://data.delijn.be/stops/503528", "https://data.delijn.be/stops/504778"], ["https://data.delijn.be/stops/208589", "https://data.delijn.be/stops/209589"], ["https://data.delijn.be/stops/503817", "https://data.delijn.be/stops/504816"], ["https://data.delijn.be/stops/405036", "https://data.delijn.be/stops/405068"], ["https://data.delijn.be/stops/404794", "https://data.delijn.be/stops/404812"], ["https://data.delijn.be/stops/405093", "https://data.delijn.be/stops/405710"], ["https://data.delijn.be/stops/503268", "https://data.delijn.be/stops/508289"], ["https://data.delijn.be/stops/503185", "https://data.delijn.be/stops/508201"], ["https://data.delijn.be/stops/503666", "https://data.delijn.be/stops/505136"], ["https://data.delijn.be/stops/508040", "https://data.delijn.be/stops/509888"], ["https://data.delijn.be/stops/206016", "https://data.delijn.be/stops/207016"], ["https://data.delijn.be/stops/108123", "https://data.delijn.be/stops/109620"], ["https://data.delijn.be/stops/400040", "https://data.delijn.be/stops/400357"], ["https://data.delijn.be/stops/304593", "https://data.delijn.be/stops/304594"], ["https://data.delijn.be/stops/208210", "https://data.delijn.be/stops/209210"], ["https://data.delijn.be/stops/207413", "https://data.delijn.be/stops/207454"], ["https://data.delijn.be/stops/406485", "https://data.delijn.be/stops/406488"], ["https://data.delijn.be/stops/503896", "https://data.delijn.be/stops/505639"], ["https://data.delijn.be/stops/406304", "https://data.delijn.be/stops/406993"], ["https://data.delijn.be/stops/200948", "https://data.delijn.be/stops/203048"], ["https://data.delijn.be/stops/205236", "https://data.delijn.be/stops/205797"], ["https://data.delijn.be/stops/402511", "https://data.delijn.be/stops/402512"], ["https://data.delijn.be/stops/307430", "https://data.delijn.be/stops/307431"], ["https://data.delijn.be/stops/503714", "https://data.delijn.be/stops/508721"], ["https://data.delijn.be/stops/403212", "https://data.delijn.be/stops/410215"], ["https://data.delijn.be/stops/206175", "https://data.delijn.be/stops/207175"], ["https://data.delijn.be/stops/502608", "https://data.delijn.be/stops/505691"], ["https://data.delijn.be/stops/501013", "https://data.delijn.be/stops/506608"], ["https://data.delijn.be/stops/402816", "https://data.delijn.be/stops/402818"], ["https://data.delijn.be/stops/303328", "https://data.delijn.be/stops/308920"], ["https://data.delijn.be/stops/202495", "https://data.delijn.be/stops/203173"], ["https://data.delijn.be/stops/409331", "https://data.delijn.be/stops/410286"], ["https://data.delijn.be/stops/204121", "https://data.delijn.be/stops/205475"], ["https://data.delijn.be/stops/104987", "https://data.delijn.be/stops/104994"], ["https://data.delijn.be/stops/405589", "https://data.delijn.be/stops/405603"], ["https://data.delijn.be/stops/505189", "https://data.delijn.be/stops/505289"], ["https://data.delijn.be/stops/206187", "https://data.delijn.be/stops/206956"], ["https://data.delijn.be/stops/305447", "https://data.delijn.be/stops/307297"], ["https://data.delijn.be/stops/301403", "https://data.delijn.be/stops/304698"], ["https://data.delijn.be/stops/108907", "https://data.delijn.be/stops/109397"], ["https://data.delijn.be/stops/103299", "https://data.delijn.be/stops/107020"], ["https://data.delijn.be/stops/300804", "https://data.delijn.be/stops/303223"], ["https://data.delijn.be/stops/107855", "https://data.delijn.be/stops/107860"], ["https://data.delijn.be/stops/503632", "https://data.delijn.be/stops/508632"], ["https://data.delijn.be/stops/104080", "https://data.delijn.be/stops/105895"], ["https://data.delijn.be/stops/206096", "https://data.delijn.be/stops/207097"], ["https://data.delijn.be/stops/105469", "https://data.delijn.be/stops/105472"], ["https://data.delijn.be/stops/202660", "https://data.delijn.be/stops/202661"], ["https://data.delijn.be/stops/401828", "https://data.delijn.be/stops/401841"], ["https://data.delijn.be/stops/206587", "https://data.delijn.be/stops/207842"], ["https://data.delijn.be/stops/207802", "https://data.delijn.be/stops/300169"], ["https://data.delijn.be/stops/503310", "https://data.delijn.be/stops/508137"], ["https://data.delijn.be/stops/406827", "https://data.delijn.be/stops/409889"], ["https://data.delijn.be/stops/502024", "https://data.delijn.be/stops/507914"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/107027"], ["https://data.delijn.be/stops/406157", "https://data.delijn.be/stops/406275"], ["https://data.delijn.be/stops/306368", "https://data.delijn.be/stops/307590"], ["https://data.delijn.be/stops/301634", "https://data.delijn.be/stops/301635"], ["https://data.delijn.be/stops/303818", "https://data.delijn.be/stops/303824"], ["https://data.delijn.be/stops/406108", "https://data.delijn.be/stops/406113"], ["https://data.delijn.be/stops/201344", "https://data.delijn.be/stops/201359"], ["https://data.delijn.be/stops/107499", "https://data.delijn.be/stops/305793"], ["https://data.delijn.be/stops/403980", "https://data.delijn.be/stops/403982"], ["https://data.delijn.be/stops/108088", "https://data.delijn.be/stops/108389"], ["https://data.delijn.be/stops/201770", "https://data.delijn.be/stops/209333"], ["https://data.delijn.be/stops/305584", "https://data.delijn.be/stops/305585"], ["https://data.delijn.be/stops/400540", "https://data.delijn.be/stops/400541"], ["https://data.delijn.be/stops/501612", "https://data.delijn.be/stops/506016"], ["https://data.delijn.be/stops/102954", "https://data.delijn.be/stops/102956"], ["https://data.delijn.be/stops/102997", "https://data.delijn.be/stops/109451"], ["https://data.delijn.be/stops/401042", "https://data.delijn.be/stops/401147"], ["https://data.delijn.be/stops/206769", "https://data.delijn.be/stops/206795"], ["https://data.delijn.be/stops/206748", "https://data.delijn.be/stops/207747"], ["https://data.delijn.be/stops/206784", "https://data.delijn.be/stops/209019"], ["https://data.delijn.be/stops/204473", "https://data.delijn.be/stops/205206"], ["https://data.delijn.be/stops/106393", "https://data.delijn.be/stops/109419"], ["https://data.delijn.be/stops/200112", "https://data.delijn.be/stops/201169"], ["https://data.delijn.be/stops/408511", "https://data.delijn.be/stops/408532"], ["https://data.delijn.be/stops/404702", "https://data.delijn.be/stops/404721"], ["https://data.delijn.be/stops/101924", "https://data.delijn.be/stops/102899"], ["https://data.delijn.be/stops/300502", "https://data.delijn.be/stops/300505"], ["https://data.delijn.be/stops/306798", "https://data.delijn.be/stops/306801"], ["https://data.delijn.be/stops/501116", "https://data.delijn.be/stops/501117"], ["https://data.delijn.be/stops/108016", "https://data.delijn.be/stops/108017"], ["https://data.delijn.be/stops/303464", "https://data.delijn.be/stops/303469"], ["https://data.delijn.be/stops/204228", "https://data.delijn.be/stops/205231"], ["https://data.delijn.be/stops/204554", "https://data.delijn.be/stops/205619"], ["https://data.delijn.be/stops/107552", "https://data.delijn.be/stops/107556"], ["https://data.delijn.be/stops/108739", "https://data.delijn.be/stops/108762"], ["https://data.delijn.be/stops/107833", "https://data.delijn.be/stops/107836"], ["https://data.delijn.be/stops/503199", "https://data.delijn.be/stops/503210"], ["https://data.delijn.be/stops/208182", "https://data.delijn.be/stops/209182"], ["https://data.delijn.be/stops/505248", "https://data.delijn.be/stops/505291"], ["https://data.delijn.be/stops/202105", "https://data.delijn.be/stops/202106"], ["https://data.delijn.be/stops/204290", "https://data.delijn.be/stops/204291"], ["https://data.delijn.be/stops/107498", "https://data.delijn.be/stops/107748"], ["https://data.delijn.be/stops/503675", "https://data.delijn.be/stops/505256"], ["https://data.delijn.be/stops/403306", "https://data.delijn.be/stops/403307"], ["https://data.delijn.be/stops/208391", "https://data.delijn.be/stops/209392"], ["https://data.delijn.be/stops/403450", "https://data.delijn.be/stops/409272"], ["https://data.delijn.be/stops/503003", "https://data.delijn.be/stops/507813"], ["https://data.delijn.be/stops/301809", "https://data.delijn.be/stops/304566"], ["https://data.delijn.be/stops/204996", "https://data.delijn.be/stops/206049"], ["https://data.delijn.be/stops/406803", "https://data.delijn.be/stops/306781"], ["https://data.delijn.be/stops/503484", "https://data.delijn.be/stops/504391"], ["https://data.delijn.be/stops/200001", "https://data.delijn.be/stops/201875"], ["https://data.delijn.be/stops/206714", "https://data.delijn.be/stops/207652"], ["https://data.delijn.be/stops/305077", "https://data.delijn.be/stops/305081"], ["https://data.delijn.be/stops/102647", "https://data.delijn.be/stops/107827"], ["https://data.delijn.be/stops/504420", "https://data.delijn.be/stops/509421"], ["https://data.delijn.be/stops/400434", "https://data.delijn.be/stops/406777"], ["https://data.delijn.be/stops/102582", "https://data.delijn.be/stops/105830"], ["https://data.delijn.be/stops/306127", "https://data.delijn.be/stops/306128"], ["https://data.delijn.be/stops/102207", "https://data.delijn.be/stops/102209"], ["https://data.delijn.be/stops/400558", "https://data.delijn.be/stops/400559"], ["https://data.delijn.be/stops/502443", "https://data.delijn.be/stops/502682"], ["https://data.delijn.be/stops/405967", "https://data.delijn.be/stops/405973"], ["https://data.delijn.be/stops/504458", "https://data.delijn.be/stops/509461"], ["https://data.delijn.be/stops/504034", "https://data.delijn.be/stops/509704"], ["https://data.delijn.be/stops/405158", "https://data.delijn.be/stops/405178"], ["https://data.delijn.be/stops/302152", "https://data.delijn.be/stops/306825"], ["https://data.delijn.be/stops/306922", "https://data.delijn.be/stops/308732"], ["https://data.delijn.be/stops/300325", "https://data.delijn.be/stops/300327"], ["https://data.delijn.be/stops/403149", "https://data.delijn.be/stops/403151"], ["https://data.delijn.be/stops/306609", "https://data.delijn.be/stops/306611"], ["https://data.delijn.be/stops/501373", "https://data.delijn.be/stops/506372"], ["https://data.delijn.be/stops/301309", "https://data.delijn.be/stops/301904"], ["https://data.delijn.be/stops/206636", "https://data.delijn.be/stops/207634"], ["https://data.delijn.be/stops/208344", "https://data.delijn.be/stops/208345"], ["https://data.delijn.be/stops/107078", "https://data.delijn.be/stops/107348"], ["https://data.delijn.be/stops/303960", "https://data.delijn.be/stops/303963"], ["https://data.delijn.be/stops/505668", "https://data.delijn.be/stops/507685"], ["https://data.delijn.be/stops/503468", "https://data.delijn.be/stops/508305"], ["https://data.delijn.be/stops/407344", "https://data.delijn.be/stops/409965"], ["https://data.delijn.be/stops/206563", "https://data.delijn.be/stops/207542"], ["https://data.delijn.be/stops/405040", "https://data.delijn.be/stops/405041"], ["https://data.delijn.be/stops/407478", "https://data.delijn.be/stops/407499"], ["https://data.delijn.be/stops/300351", "https://data.delijn.be/stops/301289"], ["https://data.delijn.be/stops/101207", "https://data.delijn.be/stops/104932"], ["https://data.delijn.be/stops/501121", "https://data.delijn.be/stops/501126"], ["https://data.delijn.be/stops/406665", "https://data.delijn.be/stops/406679"], ["https://data.delijn.be/stops/203641", "https://data.delijn.be/stops/210050"], ["https://data.delijn.be/stops/204382", "https://data.delijn.be/stops/205184"], ["https://data.delijn.be/stops/404852", "https://data.delijn.be/stops/404947"], ["https://data.delijn.be/stops/108362", "https://data.delijn.be/stops/108501"], ["https://data.delijn.be/stops/102675", "https://data.delijn.be/stops/105435"], ["https://data.delijn.be/stops/405404", "https://data.delijn.be/stops/405405"], ["https://data.delijn.be/stops/405182", "https://data.delijn.be/stops/405768"], ["https://data.delijn.be/stops/502432", "https://data.delijn.be/stops/507432"], ["https://data.delijn.be/stops/201950", "https://data.delijn.be/stops/202428"], ["https://data.delijn.be/stops/103032", "https://data.delijn.be/stops/106748"], ["https://data.delijn.be/stops/107150", "https://data.delijn.be/stops/109853"], ["https://data.delijn.be/stops/300961", "https://data.delijn.be/stops/301156"], ["https://data.delijn.be/stops/106289", "https://data.delijn.be/stops/106290"], ["https://data.delijn.be/stops/304454", "https://data.delijn.be/stops/304463"], ["https://data.delijn.be/stops/501425", "https://data.delijn.be/stops/506425"], ["https://data.delijn.be/stops/300139", "https://data.delijn.be/stops/306819"], ["https://data.delijn.be/stops/200174", "https://data.delijn.be/stops/200515"], ["https://data.delijn.be/stops/503836", "https://data.delijn.be/stops/505159"], ["https://data.delijn.be/stops/506381", "https://data.delijn.be/stops/506383"], ["https://data.delijn.be/stops/208015", "https://data.delijn.be/stops/209014"], ["https://data.delijn.be/stops/408423", "https://data.delijn.be/stops/409162"], ["https://data.delijn.be/stops/407907", "https://data.delijn.be/stops/408010"], ["https://data.delijn.be/stops/104277", "https://data.delijn.be/stops/104304"], ["https://data.delijn.be/stops/302554", "https://data.delijn.be/stops/302556"], ["https://data.delijn.be/stops/305076", "https://data.delijn.be/stops/308294"], ["https://data.delijn.be/stops/505983", "https://data.delijn.be/stops/509083"], ["https://data.delijn.be/stops/206791", "https://data.delijn.be/stops/208618"], ["https://data.delijn.be/stops/106500", "https://data.delijn.be/stops/107117"], ["https://data.delijn.be/stops/503781", "https://data.delijn.be/stops/508781"], ["https://data.delijn.be/stops/107134", "https://data.delijn.be/stops/107137"], ["https://data.delijn.be/stops/501086", "https://data.delijn.be/stops/501439"], ["https://data.delijn.be/stops/504996", "https://data.delijn.be/stops/508118"], ["https://data.delijn.be/stops/208141", "https://data.delijn.be/stops/208142"], ["https://data.delijn.be/stops/206497", "https://data.delijn.be/stops/207501"], ["https://data.delijn.be/stops/403699", "https://data.delijn.be/stops/405519"], ["https://data.delijn.be/stops/103916", "https://data.delijn.be/stops/107242"], ["https://data.delijn.be/stops/408504", "https://data.delijn.be/stops/408509"], ["https://data.delijn.be/stops/508214", "https://data.delijn.be/stops/508305"], ["https://data.delijn.be/stops/301465", "https://data.delijn.be/stops/301490"], ["https://data.delijn.be/stops/402516", "https://data.delijn.be/stops/402520"], ["https://data.delijn.be/stops/305628", "https://data.delijn.be/stops/305770"], ["https://data.delijn.be/stops/205986", "https://data.delijn.be/stops/206257"], ["https://data.delijn.be/stops/402383", "https://data.delijn.be/stops/410041"], ["https://data.delijn.be/stops/208516", "https://data.delijn.be/stops/208684"], ["https://data.delijn.be/stops/302382", "https://data.delijn.be/stops/302383"], ["https://data.delijn.be/stops/402028", "https://data.delijn.be/stops/403885"], ["https://data.delijn.be/stops/105644", "https://data.delijn.be/stops/105646"], ["https://data.delijn.be/stops/203335", "https://data.delijn.be/stops/211298"], ["https://data.delijn.be/stops/208189", "https://data.delijn.be/stops/208190"], ["https://data.delijn.be/stops/301662", "https://data.delijn.be/stops/302144"], ["https://data.delijn.be/stops/104895", "https://data.delijn.be/stops/108640"], ["https://data.delijn.be/stops/304452", "https://data.delijn.be/stops/304460"], ["https://data.delijn.be/stops/300278", "https://data.delijn.be/stops/300289"], ["https://data.delijn.be/stops/303289", "https://data.delijn.be/stops/303300"], ["https://data.delijn.be/stops/207164", "https://data.delijn.be/stops/308900"], ["https://data.delijn.be/stops/501693", "https://data.delijn.be/stops/506117"], ["https://data.delijn.be/stops/108628", "https://data.delijn.be/stops/109681"], ["https://data.delijn.be/stops/405232", "https://data.delijn.be/stops/405502"], ["https://data.delijn.be/stops/203177", "https://data.delijn.be/stops/203497"], ["https://data.delijn.be/stops/503523", "https://data.delijn.be/stops/504001"], ["https://data.delijn.be/stops/400464", "https://data.delijn.be/stops/400465"], ["https://data.delijn.be/stops/302281", "https://data.delijn.be/stops/302287"], ["https://data.delijn.be/stops/108731", "https://data.delijn.be/stops/108732"], ["https://data.delijn.be/stops/103040", "https://data.delijn.be/stops/108055"], ["https://data.delijn.be/stops/501363", "https://data.delijn.be/stops/506442"], ["https://data.delijn.be/stops/103228", "https://data.delijn.be/stops/103597"], ["https://data.delijn.be/stops/504998", "https://data.delijn.be/stops/508881"], ["https://data.delijn.be/stops/410290", "https://data.delijn.be/stops/410291"], ["https://data.delijn.be/stops/300527", "https://data.delijn.be/stops/300528"], ["https://data.delijn.be/stops/405301", "https://data.delijn.be/stops/406298"], ["https://data.delijn.be/stops/301435", "https://data.delijn.be/stops/303181"], ["https://data.delijn.be/stops/407389", "https://data.delijn.be/stops/407479"], ["https://data.delijn.be/stops/406353", "https://data.delijn.be/stops/410251"], ["https://data.delijn.be/stops/208476", "https://data.delijn.be/stops/209476"], ["https://data.delijn.be/stops/408511", "https://data.delijn.be/stops/408689"], ["https://data.delijn.be/stops/505104", "https://data.delijn.be/stops/508883"], ["https://data.delijn.be/stops/403764", "https://data.delijn.be/stops/403765"], ["https://data.delijn.be/stops/106877", "https://data.delijn.be/stops/106881"], ["https://data.delijn.be/stops/208174", "https://data.delijn.be/stops/208175"], ["https://data.delijn.be/stops/502438", "https://data.delijn.be/stops/507163"], ["https://data.delijn.be/stops/208242", "https://data.delijn.be/stops/208330"], ["https://data.delijn.be/stops/406323", "https://data.delijn.be/stops/406330"], ["https://data.delijn.be/stops/106460", "https://data.delijn.be/stops/106465"], ["https://data.delijn.be/stops/402712", "https://data.delijn.be/stops/405956"], ["https://data.delijn.be/stops/108999", "https://data.delijn.be/stops/109001"], ["https://data.delijn.be/stops/502913", "https://data.delijn.be/stops/507020"], ["https://data.delijn.be/stops/400535", "https://data.delijn.be/stops/400549"], ["https://data.delijn.be/stops/102760", "https://data.delijn.be/stops/102775"], ["https://data.delijn.be/stops/107161", "https://data.delijn.be/stops/107561"], ["https://data.delijn.be/stops/204371", "https://data.delijn.be/stops/204760"], ["https://data.delijn.be/stops/400673", "https://data.delijn.be/stops/410022"], ["https://data.delijn.be/stops/200006", "https://data.delijn.be/stops/211069"], ["https://data.delijn.be/stops/106691", "https://data.delijn.be/stops/106692"], ["https://data.delijn.be/stops/201244", "https://data.delijn.be/stops/201298"], ["https://data.delijn.be/stops/105028", "https://data.delijn.be/stops/105029"], ["https://data.delijn.be/stops/202326", "https://data.delijn.be/stops/202725"], ["https://data.delijn.be/stops/302022", "https://data.delijn.be/stops/302023"], ["https://data.delijn.be/stops/200488", "https://data.delijn.be/stops/201470"], ["https://data.delijn.be/stops/302845", "https://data.delijn.be/stops/303324"], ["https://data.delijn.be/stops/201351", "https://data.delijn.be/stops/202650"], ["https://data.delijn.be/stops/201857", "https://data.delijn.be/stops/210036"], ["https://data.delijn.be/stops/300592", "https://data.delijn.be/stops/307170"], ["https://data.delijn.be/stops/300978", "https://data.delijn.be/stops/300993"], ["https://data.delijn.be/stops/103159", "https://data.delijn.be/stops/109045"], ["https://data.delijn.be/stops/205714", "https://data.delijn.be/stops/205896"], ["https://data.delijn.be/stops/510011", "https://data.delijn.be/stops/510012"], ["https://data.delijn.be/stops/506084", "https://data.delijn.be/stops/506646"], ["https://data.delijn.be/stops/208235", "https://data.delijn.be/stops/209235"], ["https://data.delijn.be/stops/302899", "https://data.delijn.be/stops/306095"], ["https://data.delijn.be/stops/400798", "https://data.delijn.be/stops/400888"], ["https://data.delijn.be/stops/408901", "https://data.delijn.be/stops/408907"], ["https://data.delijn.be/stops/209475", "https://data.delijn.be/stops/209667"], ["https://data.delijn.be/stops/405063", "https://data.delijn.be/stops/405065"], ["https://data.delijn.be/stops/202912", "https://data.delijn.be/stops/203917"], ["https://data.delijn.be/stops/400400", "https://data.delijn.be/stops/400424"], ["https://data.delijn.be/stops/106917", "https://data.delijn.be/stops/106949"], ["https://data.delijn.be/stops/200912", "https://data.delijn.be/stops/203094"], ["https://data.delijn.be/stops/202224", "https://data.delijn.be/stops/208964"], ["https://data.delijn.be/stops/503142", "https://data.delijn.be/stops/509888"], ["https://data.delijn.be/stops/504080", "https://data.delijn.be/stops/504536"], ["https://data.delijn.be/stops/507519", "https://data.delijn.be/stops/509795"], ["https://data.delijn.be/stops/503812", "https://data.delijn.be/stops/508809"], ["https://data.delijn.be/stops/502367", "https://data.delijn.be/stops/507367"], ["https://data.delijn.be/stops/202259", "https://data.delijn.be/stops/203259"], ["https://data.delijn.be/stops/405954", "https://data.delijn.be/stops/405961"], ["https://data.delijn.be/stops/206882", "https://data.delijn.be/stops/207730"], ["https://data.delijn.be/stops/503591", "https://data.delijn.be/stops/508591"], ["https://data.delijn.be/stops/400472", "https://data.delijn.be/stops/407647"], ["https://data.delijn.be/stops/201925", "https://data.delijn.be/stops/207590"], ["https://data.delijn.be/stops/505717", "https://data.delijn.be/stops/505986"], ["https://data.delijn.be/stops/105407", "https://data.delijn.be/stops/109055"], ["https://data.delijn.be/stops/401426", "https://data.delijn.be/stops/410291"], ["https://data.delijn.be/stops/402195", "https://data.delijn.be/stops/402217"], ["https://data.delijn.be/stops/503101", "https://data.delijn.be/stops/508095"], ["https://data.delijn.be/stops/206667", "https://data.delijn.be/stops/206726"], ["https://data.delijn.be/stops/101220", "https://data.delijn.be/stops/107811"], ["https://data.delijn.be/stops/509836", "https://data.delijn.be/stops/509838"], ["https://data.delijn.be/stops/503076", "https://data.delijn.be/stops/508073"], ["https://data.delijn.be/stops/401808", "https://data.delijn.be/stops/406351"], ["https://data.delijn.be/stops/403623", "https://data.delijn.be/stops/403631"], ["https://data.delijn.be/stops/108911", "https://data.delijn.be/stops/108913"], ["https://data.delijn.be/stops/203139", "https://data.delijn.be/stops/203364"], ["https://data.delijn.be/stops/200744", "https://data.delijn.be/stops/211103"], ["https://data.delijn.be/stops/300962", "https://data.delijn.be/stops/304705"], ["https://data.delijn.be/stops/302952", "https://data.delijn.be/stops/303000"], ["https://data.delijn.be/stops/505398", "https://data.delijn.be/stops/506080"], ["https://data.delijn.be/stops/505771", "https://data.delijn.be/stops/507008"], ["https://data.delijn.be/stops/105081", "https://data.delijn.be/stops/105082"], ["https://data.delijn.be/stops/105713", "https://data.delijn.be/stops/105714"], ["https://data.delijn.be/stops/407890", "https://data.delijn.be/stops/407891"], ["https://data.delijn.be/stops/502073", "https://data.delijn.be/stops/502562"], ["https://data.delijn.be/stops/410154", "https://data.delijn.be/stops/304720"], ["https://data.delijn.be/stops/108843", "https://data.delijn.be/stops/108854"], ["https://data.delijn.be/stops/506365", "https://data.delijn.be/stops/590411"], ["https://data.delijn.be/stops/206632", "https://data.delijn.be/stops/207633"], ["https://data.delijn.be/stops/107838", "https://data.delijn.be/stops/205098"], ["https://data.delijn.be/stops/200914", "https://data.delijn.be/stops/202720"], ["https://data.delijn.be/stops/401427", "https://data.delijn.be/stops/401445"], ["https://data.delijn.be/stops/301676", "https://data.delijn.be/stops/304178"], ["https://data.delijn.be/stops/107705", "https://data.delijn.be/stops/109035"], ["https://data.delijn.be/stops/108109", "https://data.delijn.be/stops/108113"], ["https://data.delijn.be/stops/306305", "https://data.delijn.be/stops/307926"], ["https://data.delijn.be/stops/105797", "https://data.delijn.be/stops/105801"], ["https://data.delijn.be/stops/205037", "https://data.delijn.be/stops/205038"], ["https://data.delijn.be/stops/403589", "https://data.delijn.be/stops/410010"], ["https://data.delijn.be/stops/108828", "https://data.delijn.be/stops/108832"], ["https://data.delijn.be/stops/405290", "https://data.delijn.be/stops/406308"], ["https://data.delijn.be/stops/109809", "https://data.delijn.be/stops/109813"], ["https://data.delijn.be/stops/504650", "https://data.delijn.be/stops/509040"], ["https://data.delijn.be/stops/200400", "https://data.delijn.be/stops/200401"], ["https://data.delijn.be/stops/104917", "https://data.delijn.be/stops/104918"], ["https://data.delijn.be/stops/102812", "https://data.delijn.be/stops/105740"], ["https://data.delijn.be/stops/501289", "https://data.delijn.be/stops/506204"], ["https://data.delijn.be/stops/206726", "https://data.delijn.be/stops/301617"], ["https://data.delijn.be/stops/102322", "https://data.delijn.be/stops/109558"], ["https://data.delijn.be/stops/303015", "https://data.delijn.be/stops/303895"], ["https://data.delijn.be/stops/103328", "https://data.delijn.be/stops/105098"], ["https://data.delijn.be/stops/304107", "https://data.delijn.be/stops/307050"], ["https://data.delijn.be/stops/403277", "https://data.delijn.be/stops/403289"], ["https://data.delijn.be/stops/503735", "https://data.delijn.be/stops/508735"], ["https://data.delijn.be/stops/301284", "https://data.delijn.be/stops/306249"], ["https://data.delijn.be/stops/209768", "https://data.delijn.be/stops/209784"], ["https://data.delijn.be/stops/400015", "https://data.delijn.be/stops/400020"], ["https://data.delijn.be/stops/401550", "https://data.delijn.be/stops/404947"], ["https://data.delijn.be/stops/406113", "https://data.delijn.be/stops/407145"], ["https://data.delijn.be/stops/107929", "https://data.delijn.be/stops/301152"], ["https://data.delijn.be/stops/201928", "https://data.delijn.be/stops/202524"], ["https://data.delijn.be/stops/503875", "https://data.delijn.be/stops/503878"], ["https://data.delijn.be/stops/306619", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/104583", "https://data.delijn.be/stops/303882"], ["https://data.delijn.be/stops/205993", "https://data.delijn.be/stops/209130"], ["https://data.delijn.be/stops/302494", "https://data.delijn.be/stops/302502"], ["https://data.delijn.be/stops/106171", "https://data.delijn.be/stops/106460"], ["https://data.delijn.be/stops/504838", "https://data.delijn.be/stops/509091"], ["https://data.delijn.be/stops/304476", "https://data.delijn.be/stops/304479"], ["https://data.delijn.be/stops/300090", "https://data.delijn.be/stops/300091"], ["https://data.delijn.be/stops/505620", "https://data.delijn.be/stops/509780"], ["https://data.delijn.be/stops/200254", "https://data.delijn.be/stops/203559"], ["https://data.delijn.be/stops/208242", "https://data.delijn.be/stops/208290"], ["https://data.delijn.be/stops/303337", "https://data.delijn.be/stops/305121"], ["https://data.delijn.be/stops/504410", "https://data.delijn.be/stops/509410"], ["https://data.delijn.be/stops/307132", "https://data.delijn.be/stops/308047"], ["https://data.delijn.be/stops/300751", "https://data.delijn.be/stops/302408"], ["https://data.delijn.be/stops/402006", "https://data.delijn.be/stops/405171"], ["https://data.delijn.be/stops/503040", "https://data.delijn.be/stops/508040"], ["https://data.delijn.be/stops/404985", "https://data.delijn.be/stops/408552"], ["https://data.delijn.be/stops/304830", "https://data.delijn.be/stops/306173"], ["https://data.delijn.be/stops/400076", "https://data.delijn.be/stops/409162"], ["https://data.delijn.be/stops/205391", "https://data.delijn.be/stops/205393"], ["https://data.delijn.be/stops/208167", "https://data.delijn.be/stops/209166"], ["https://data.delijn.be/stops/101374", "https://data.delijn.be/stops/101402"], ["https://data.delijn.be/stops/103105", "https://data.delijn.be/stops/103795"], ["https://data.delijn.be/stops/305170", "https://data.delijn.be/stops/305177"], ["https://data.delijn.be/stops/501033", "https://data.delijn.be/stops/501037"], ["https://data.delijn.be/stops/108673", "https://data.delijn.be/stops/109923"], ["https://data.delijn.be/stops/501056", "https://data.delijn.be/stops/501505"], ["https://data.delijn.be/stops/101995", "https://data.delijn.be/stops/104465"], ["https://data.delijn.be/stops/106531", "https://data.delijn.be/stops/106535"], ["https://data.delijn.be/stops/407823", "https://data.delijn.be/stops/407825"], ["https://data.delijn.be/stops/304565", "https://data.delijn.be/stops/304566"], ["https://data.delijn.be/stops/504677", "https://data.delijn.be/stops/509267"], ["https://data.delijn.be/stops/200238", "https://data.delijn.be/stops/205925"], ["https://data.delijn.be/stops/102243", "https://data.delijn.be/stops/105933"], ["https://data.delijn.be/stops/104672", "https://data.delijn.be/stops/104869"], ["https://data.delijn.be/stops/306871", "https://data.delijn.be/stops/307420"], ["https://data.delijn.be/stops/302856", "https://data.delijn.be/stops/302877"], ["https://data.delijn.be/stops/201818", "https://data.delijn.be/stops/218027"], ["https://data.delijn.be/stops/506432", "https://data.delijn.be/stops/506456"], ["https://data.delijn.be/stops/300515", "https://data.delijn.be/stops/300531"], ["https://data.delijn.be/stops/409567", "https://data.delijn.be/stops/409570"], ["https://data.delijn.be/stops/303157", "https://data.delijn.be/stops/307953"], ["https://data.delijn.be/stops/106280", "https://data.delijn.be/stops/106282"], ["https://data.delijn.be/stops/305342", "https://data.delijn.be/stops/307968"], ["https://data.delijn.be/stops/405813", "https://data.delijn.be/stops/410255"], ["https://data.delijn.be/stops/209004", "https://data.delijn.be/stops/209098"], ["https://data.delijn.be/stops/501601", "https://data.delijn.be/stops/509493"], ["https://data.delijn.be/stops/304379", "https://data.delijn.be/stops/307416"], ["https://data.delijn.be/stops/201570", "https://data.delijn.be/stops/208291"], ["https://data.delijn.be/stops/401047", "https://data.delijn.be/stops/401131"], ["https://data.delijn.be/stops/105053", "https://data.delijn.be/stops/304043"], ["https://data.delijn.be/stops/304833", "https://data.delijn.be/stops/307051"], ["https://data.delijn.be/stops/401567", "https://data.delijn.be/stops/401736"], ["https://data.delijn.be/stops/205528", "https://data.delijn.be/stops/205631"], ["https://data.delijn.be/stops/507322", "https://data.delijn.be/stops/507327"], ["https://data.delijn.be/stops/400773", "https://data.delijn.be/stops/400809"], ["https://data.delijn.be/stops/502330", "https://data.delijn.be/stops/507330"], ["https://data.delijn.be/stops/405930", "https://data.delijn.be/stops/405931"], ["https://data.delijn.be/stops/503121", "https://data.delijn.be/stops/504848"], ["https://data.delijn.be/stops/305785", "https://data.delijn.be/stops/305786"], ["https://data.delijn.be/stops/302514", "https://data.delijn.be/stops/302519"], ["https://data.delijn.be/stops/105253", "https://data.delijn.be/stops/105254"], ["https://data.delijn.be/stops/109810", "https://data.delijn.be/stops/109814"], ["https://data.delijn.be/stops/200069", "https://data.delijn.be/stops/201069"], ["https://data.delijn.be/stops/305645", "https://data.delijn.be/stops/305652"], ["https://data.delijn.be/stops/200403", "https://data.delijn.be/stops/201404"], ["https://data.delijn.be/stops/302643", "https://data.delijn.be/stops/302644"], ["https://data.delijn.be/stops/504250", "https://data.delijn.be/stops/504702"], ["https://data.delijn.be/stops/304807", "https://data.delijn.be/stops/307885"], ["https://data.delijn.be/stops/505000", "https://data.delijn.be/stops/505102"], ["https://data.delijn.be/stops/207619", "https://data.delijn.be/stops/207849"], ["https://data.delijn.be/stops/402377", "https://data.delijn.be/stops/408486"], ["https://data.delijn.be/stops/401650", "https://data.delijn.be/stops/405404"], ["https://data.delijn.be/stops/409383", "https://data.delijn.be/stops/409389"], ["https://data.delijn.be/stops/103327", "https://data.delijn.be/stops/103328"], ["https://data.delijn.be/stops/203181", "https://data.delijn.be/stops/204201"], ["https://data.delijn.be/stops/405282", "https://data.delijn.be/stops/407649"], ["https://data.delijn.be/stops/206350", "https://data.delijn.be/stops/207350"], ["https://data.delijn.be/stops/201961", "https://data.delijn.be/stops/211087"], ["https://data.delijn.be/stops/400570", "https://data.delijn.be/stops/404057"], ["https://data.delijn.be/stops/503269", "https://data.delijn.be/stops/508038"], ["https://data.delijn.be/stops/501300", "https://data.delijn.be/stops/501301"], ["https://data.delijn.be/stops/203898", "https://data.delijn.be/stops/203899"], ["https://data.delijn.be/stops/504754", "https://data.delijn.be/stops/509755"], ["https://data.delijn.be/stops/208588", "https://data.delijn.be/stops/307526"], ["https://data.delijn.be/stops/101973", "https://data.delijn.be/stops/109289"], ["https://data.delijn.be/stops/204757", "https://data.delijn.be/stops/205620"], ["https://data.delijn.be/stops/304316", "https://data.delijn.be/stops/305229"], ["https://data.delijn.be/stops/502710", "https://data.delijn.be/stops/502798"], ["https://data.delijn.be/stops/204679", "https://data.delijn.be/stops/204680"], ["https://data.delijn.be/stops/208134", "https://data.delijn.be/stops/208135"], ["https://data.delijn.be/stops/300708", "https://data.delijn.be/stops/306944"], ["https://data.delijn.be/stops/502385", "https://data.delijn.be/stops/502411"], ["https://data.delijn.be/stops/301672", "https://data.delijn.be/stops/307338"], ["https://data.delijn.be/stops/408382", "https://data.delijn.be/stops/408383"], ["https://data.delijn.be/stops/105654", "https://data.delijn.be/stops/105656"], ["https://data.delijn.be/stops/201235", "https://data.delijn.be/stops/201522"], ["https://data.delijn.be/stops/207018", "https://data.delijn.be/stops/207926"], ["https://data.delijn.be/stops/106701", "https://data.delijn.be/stops/106702"], ["https://data.delijn.be/stops/307726", "https://data.delijn.be/stops/307727"], ["https://data.delijn.be/stops/504283", "https://data.delijn.be/stops/509283"], ["https://data.delijn.be/stops/302226", "https://data.delijn.be/stops/304441"], ["https://data.delijn.be/stops/200039", "https://data.delijn.be/stops/201909"], ["https://data.delijn.be/stops/206084", "https://data.delijn.be/stops/207084"], ["https://data.delijn.be/stops/103622", "https://data.delijn.be/stops/103682"], ["https://data.delijn.be/stops/304404", "https://data.delijn.be/stops/304406"], ["https://data.delijn.be/stops/201315", "https://data.delijn.be/stops/201334"], ["https://data.delijn.be/stops/106210", "https://data.delijn.be/stops/106252"], ["https://data.delijn.be/stops/209446", "https://data.delijn.be/stops/218029"], ["https://data.delijn.be/stops/204405", "https://data.delijn.be/stops/204406"], ["https://data.delijn.be/stops/109583", "https://data.delijn.be/stops/109584"], ["https://data.delijn.be/stops/302958", "https://data.delijn.be/stops/303004"], ["https://data.delijn.be/stops/404446", "https://data.delijn.be/stops/404560"], ["https://data.delijn.be/stops/304533", "https://data.delijn.be/stops/304536"], ["https://data.delijn.be/stops/404637", "https://data.delijn.be/stops/404989"], ["https://data.delijn.be/stops/406002", "https://data.delijn.be/stops/406003"], ["https://data.delijn.be/stops/300688", "https://data.delijn.be/stops/300689"], ["https://data.delijn.be/stops/202204", "https://data.delijn.be/stops/203205"], ["https://data.delijn.be/stops/403621", "https://data.delijn.be/stops/403642"], ["https://data.delijn.be/stops/502178", "https://data.delijn.be/stops/507256"], ["https://data.delijn.be/stops/202899", "https://data.delijn.be/stops/202900"], ["https://data.delijn.be/stops/205986", "https://data.delijn.be/stops/206524"], ["https://data.delijn.be/stops/502706", "https://data.delijn.be/stops/505022"], ["https://data.delijn.be/stops/409464", "https://data.delijn.be/stops/409465"], ["https://data.delijn.be/stops/200816", "https://data.delijn.be/stops/202077"], ["https://data.delijn.be/stops/404491", "https://data.delijn.be/stops/404534"], ["https://data.delijn.be/stops/106328", "https://data.delijn.be/stops/106330"], ["https://data.delijn.be/stops/307298", "https://data.delijn.be/stops/307300"], ["https://data.delijn.be/stops/107156", "https://data.delijn.be/stops/109380"], ["https://data.delijn.be/stops/300936", "https://data.delijn.be/stops/301007"], ["https://data.delijn.be/stops/505747", "https://data.delijn.be/stops/506186"], ["https://data.delijn.be/stops/400130", "https://data.delijn.be/stops/409169"], ["https://data.delijn.be/stops/108633", "https://data.delijn.be/stops/109671"], ["https://data.delijn.be/stops/206403", "https://data.delijn.be/stops/207244"], ["https://data.delijn.be/stops/502687", "https://data.delijn.be/stops/507631"], ["https://data.delijn.be/stops/102018", "https://data.delijn.be/stops/105752"], ["https://data.delijn.be/stops/103245", "https://data.delijn.be/stops/103251"], ["https://data.delijn.be/stops/307583", "https://data.delijn.be/stops/307760"], ["https://data.delijn.be/stops/405954", "https://data.delijn.be/stops/308155"], ["https://data.delijn.be/stops/505510", "https://data.delijn.be/stops/509929"], ["https://data.delijn.be/stops/408339", "https://data.delijn.be/stops/408357"], ["https://data.delijn.be/stops/104024", "https://data.delijn.be/stops/104025"], ["https://data.delijn.be/stops/105267", "https://data.delijn.be/stops/105284"], ["https://data.delijn.be/stops/304930", "https://data.delijn.be/stops/304931"], ["https://data.delijn.be/stops/308526", "https://data.delijn.be/stops/308528"], ["https://data.delijn.be/stops/403378", "https://data.delijn.be/stops/410338"], ["https://data.delijn.be/stops/206310", "https://data.delijn.be/stops/206311"], ["https://data.delijn.be/stops/108846", "https://data.delijn.be/stops/109743"], ["https://data.delijn.be/stops/501268", "https://data.delijn.be/stops/501293"], ["https://data.delijn.be/stops/404743", "https://data.delijn.be/stops/404753"], ["https://data.delijn.be/stops/400520", "https://data.delijn.be/stops/400570"], ["https://data.delijn.be/stops/304955", "https://data.delijn.be/stops/304961"], ["https://data.delijn.be/stops/505096", "https://data.delijn.be/stops/505666"], ["https://data.delijn.be/stops/300999", "https://data.delijn.be/stops/301079"], ["https://data.delijn.be/stops/101074", "https://data.delijn.be/stops/101077"], ["https://data.delijn.be/stops/504454", "https://data.delijn.be/stops/509454"], ["https://data.delijn.be/stops/102652", "https://data.delijn.be/stops/103061"], ["https://data.delijn.be/stops/109129", "https://data.delijn.be/stops/109421"], ["https://data.delijn.be/stops/400600", "https://data.delijn.be/stops/400628"], ["https://data.delijn.be/stops/108466", "https://data.delijn.be/stops/108467"], ["https://data.delijn.be/stops/501321", "https://data.delijn.be/stops/506205"], ["https://data.delijn.be/stops/301350", "https://data.delijn.be/stops/303640"], ["https://data.delijn.be/stops/404969", "https://data.delijn.be/stops/410223"], ["https://data.delijn.be/stops/201897", "https://data.delijn.be/stops/202148"], ["https://data.delijn.be/stops/503452", "https://data.delijn.be/stops/508970"], ["https://data.delijn.be/stops/201123", "https://data.delijn.be/stops/505612"], ["https://data.delijn.be/stops/402249", "https://data.delijn.be/stops/402373"], ["https://data.delijn.be/stops/208175", "https://data.delijn.be/stops/209175"], ["https://data.delijn.be/stops/503210", "https://data.delijn.be/stops/508199"], ["https://data.delijn.be/stops/303035", "https://data.delijn.be/stops/303095"], ["https://data.delijn.be/stops/102291", "https://data.delijn.be/stops/106349"], ["https://data.delijn.be/stops/302973", "https://data.delijn.be/stops/306299"], ["https://data.delijn.be/stops/403890", "https://data.delijn.be/stops/403892"], ["https://data.delijn.be/stops/410127", "https://data.delijn.be/stops/410129"], ["https://data.delijn.be/stops/501607", "https://data.delijn.be/stops/506013"], ["https://data.delijn.be/stops/107699", "https://data.delijn.be/stops/109105"], ["https://data.delijn.be/stops/302313", "https://data.delijn.be/stops/304784"], ["https://data.delijn.be/stops/208130", "https://data.delijn.be/stops/208197"], ["https://data.delijn.be/stops/406714", "https://data.delijn.be/stops/408714"], ["https://data.delijn.be/stops/200145", "https://data.delijn.be/stops/201145"], ["https://data.delijn.be/stops/508009", "https://data.delijn.be/stops/508923"], ["https://data.delijn.be/stops/502015", "https://data.delijn.be/stops/502019"], ["https://data.delijn.be/stops/406832", "https://data.delijn.be/stops/406833"], ["https://data.delijn.be/stops/108044", "https://data.delijn.be/stops/108045"], ["https://data.delijn.be/stops/505153", "https://data.delijn.be/stops/506089"], ["https://data.delijn.be/stops/308488", "https://data.delijn.be/stops/308522"], ["https://data.delijn.be/stops/200978", "https://data.delijn.be/stops/201975"], ["https://data.delijn.be/stops/102206", "https://data.delijn.be/stops/105816"], ["https://data.delijn.be/stops/406450", "https://data.delijn.be/stops/406497"], ["https://data.delijn.be/stops/400214", "https://data.delijn.be/stops/400241"], ["https://data.delijn.be/stops/209600", "https://data.delijn.be/stops/305333"], ["https://data.delijn.be/stops/503913", "https://data.delijn.be/stops/505306"], ["https://data.delijn.be/stops/304050", "https://data.delijn.be/stops/304060"], ["https://data.delijn.be/stops/300455", "https://data.delijn.be/stops/305036"], ["https://data.delijn.be/stops/502507", "https://data.delijn.be/stops/507506"], ["https://data.delijn.be/stops/406181", "https://data.delijn.be/stops/406281"], ["https://data.delijn.be/stops/303262", "https://data.delijn.be/stops/307797"], ["https://data.delijn.be/stops/103604", "https://data.delijn.be/stops/109427"], ["https://data.delijn.be/stops/507553", "https://data.delijn.be/stops/507556"], ["https://data.delijn.be/stops/504387", "https://data.delijn.be/stops/509387"], ["https://data.delijn.be/stops/105340", "https://data.delijn.be/stops/105345"], ["https://data.delijn.be/stops/202770", "https://data.delijn.be/stops/203208"], ["https://data.delijn.be/stops/501074", "https://data.delijn.be/stops/506071"], ["https://data.delijn.be/stops/300748", "https://data.delijn.be/stops/300772"], ["https://data.delijn.be/stops/503207", "https://data.delijn.be/stops/503213"], ["https://data.delijn.be/stops/302666", "https://data.delijn.be/stops/302692"], ["https://data.delijn.be/stops/108876", "https://data.delijn.be/stops/108877"], ["https://data.delijn.be/stops/509401", "https://data.delijn.be/stops/509402"], ["https://data.delijn.be/stops/302394", "https://data.delijn.be/stops/302762"], ["https://data.delijn.be/stops/102233", "https://data.delijn.be/stops/102418"], ["https://data.delijn.be/stops/208389", "https://data.delijn.be/stops/209389"], ["https://data.delijn.be/stops/502025", "https://data.delijn.be/stops/507025"], ["https://data.delijn.be/stops/304499", "https://data.delijn.be/stops/304518"], ["https://data.delijn.be/stops/502419", "https://data.delijn.be/stops/507418"], ["https://data.delijn.be/stops/401525", "https://data.delijn.be/stops/403875"], ["https://data.delijn.be/stops/203424", "https://data.delijn.be/stops/203425"], ["https://data.delijn.be/stops/503381", "https://data.delijn.be/stops/509773"], ["https://data.delijn.be/stops/501265", "https://data.delijn.be/stops/506322"], ["https://data.delijn.be/stops/107642", "https://data.delijn.be/stops/305632"], ["https://data.delijn.be/stops/408404", "https://data.delijn.be/stops/408405"], ["https://data.delijn.be/stops/406036", "https://data.delijn.be/stops/406388"], ["https://data.delijn.be/stops/503509", "https://data.delijn.be/stops/505565"], ["https://data.delijn.be/stops/409412", "https://data.delijn.be/stops/409763"], ["https://data.delijn.be/stops/404404", "https://data.delijn.be/stops/404406"], ["https://data.delijn.be/stops/101012", "https://data.delijn.be/stops/101699"], ["https://data.delijn.be/stops/305382", "https://data.delijn.be/stops/333233"], ["https://data.delijn.be/stops/206665", "https://data.delijn.be/stops/206712"], ["https://data.delijn.be/stops/404358", "https://data.delijn.be/stops/404393"], ["https://data.delijn.be/stops/509574", "https://data.delijn.be/stops/509575"], ["https://data.delijn.be/stops/102737", "https://data.delijn.be/stops/105522"], ["https://data.delijn.be/stops/400729", "https://data.delijn.be/stops/400903"], ["https://data.delijn.be/stops/300831", "https://data.delijn.be/stops/300979"], ["https://data.delijn.be/stops/503620", "https://data.delijn.be/stops/505534"], ["https://data.delijn.be/stops/106393", "https://data.delijn.be/stops/109137"], ["https://data.delijn.be/stops/108393", "https://data.delijn.be/stops/108394"], ["https://data.delijn.be/stops/505844", "https://data.delijn.be/stops/505987"], ["https://data.delijn.be/stops/402836", "https://data.delijn.be/stops/408981"], ["https://data.delijn.be/stops/303090", "https://data.delijn.be/stops/306110"], ["https://data.delijn.be/stops/401452", "https://data.delijn.be/stops/401460"], ["https://data.delijn.be/stops/301689", "https://data.delijn.be/stops/302387"], ["https://data.delijn.be/stops/108399", "https://data.delijn.be/stops/108400"], ["https://data.delijn.be/stops/509928", "https://data.delijn.be/stops/509929"], ["https://data.delijn.be/stops/301452", "https://data.delijn.be/stops/302538"], ["https://data.delijn.be/stops/302758", "https://data.delijn.be/stops/302760"], ["https://data.delijn.be/stops/101066", "https://data.delijn.be/stops/101067"], ["https://data.delijn.be/stops/202780", "https://data.delijn.be/stops/202781"], ["https://data.delijn.be/stops/500951", "https://data.delijn.be/stops/504741"], ["https://data.delijn.be/stops/501492", "https://data.delijn.be/stops/501741"], ["https://data.delijn.be/stops/302708", "https://data.delijn.be/stops/308594"], ["https://data.delijn.be/stops/409583", "https://data.delijn.be/stops/409585"], ["https://data.delijn.be/stops/405984", "https://data.delijn.be/stops/405985"], ["https://data.delijn.be/stops/501552", "https://data.delijn.be/stops/509658"], ["https://data.delijn.be/stops/503213", "https://data.delijn.be/stops/508547"], ["https://data.delijn.be/stops/204431", "https://data.delijn.be/stops/205430"], ["https://data.delijn.be/stops/408007", "https://data.delijn.be/stops/408150"], ["https://data.delijn.be/stops/201751", "https://data.delijn.be/stops/203835"], ["https://data.delijn.be/stops/107367", "https://data.delijn.be/stops/108348"], ["https://data.delijn.be/stops/107577", "https://data.delijn.be/stops/107746"], ["https://data.delijn.be/stops/205629", "https://data.delijn.be/stops/205630"], ["https://data.delijn.be/stops/502557", "https://data.delijn.be/stops/507557"], ["https://data.delijn.be/stops/406484", "https://data.delijn.be/stops/406488"], ["https://data.delijn.be/stops/503124", "https://data.delijn.be/stops/509886"], ["https://data.delijn.be/stops/101616", "https://data.delijn.be/stops/106574"], ["https://data.delijn.be/stops/302583", "https://data.delijn.be/stops/302693"], ["https://data.delijn.be/stops/200921", "https://data.delijn.be/stops/211023"], ["https://data.delijn.be/stops/407645", "https://data.delijn.be/stops/407653"], ["https://data.delijn.be/stops/206228", "https://data.delijn.be/stops/308570"], ["https://data.delijn.be/stops/101857", "https://data.delijn.be/stops/105557"], ["https://data.delijn.be/stops/102780", "https://data.delijn.be/stops/103055"], ["https://data.delijn.be/stops/201803", "https://data.delijn.be/stops/201835"], ["https://data.delijn.be/stops/409098", "https://data.delijn.be/stops/409157"], ["https://data.delijn.be/stops/208200", "https://data.delijn.be/stops/208201"], ["https://data.delijn.be/stops/504602", "https://data.delijn.be/stops/504634"], ["https://data.delijn.be/stops/507444", "https://data.delijn.be/stops/507464"], ["https://data.delijn.be/stops/202586", "https://data.delijn.be/stops/210112"], ["https://data.delijn.be/stops/303700", "https://data.delijn.be/stops/303702"], ["https://data.delijn.be/stops/108686", "https://data.delijn.be/stops/108687"], ["https://data.delijn.be/stops/404886", "https://data.delijn.be/stops/404985"], ["https://data.delijn.be/stops/501330", "https://data.delijn.be/stops/506480"], ["https://data.delijn.be/stops/204626", "https://data.delijn.be/stops/204627"], ["https://data.delijn.be/stops/108368", "https://data.delijn.be/stops/108456"], ["https://data.delijn.be/stops/203991", "https://data.delijn.be/stops/211025"], ["https://data.delijn.be/stops/204319", "https://data.delijn.be/stops/205362"], ["https://data.delijn.be/stops/209786", "https://data.delijn.be/stops/209787"], ["https://data.delijn.be/stops/206261", "https://data.delijn.be/stops/207903"], ["https://data.delijn.be/stops/105534", "https://data.delijn.be/stops/105537"], ["https://data.delijn.be/stops/200831", "https://data.delijn.be/stops/200832"], ["https://data.delijn.be/stops/103036", "https://data.delijn.be/stops/103037"], ["https://data.delijn.be/stops/200175", "https://data.delijn.be/stops/201650"], ["https://data.delijn.be/stops/301734", "https://data.delijn.be/stops/301758"], ["https://data.delijn.be/stops/503696", "https://data.delijn.be/stops/509957"], ["https://data.delijn.be/stops/305537", "https://data.delijn.be/stops/305571"], ["https://data.delijn.be/stops/300663", "https://data.delijn.be/stops/300664"], ["https://data.delijn.be/stops/502479", "https://data.delijn.be/stops/502945"], ["https://data.delijn.be/stops/206946", "https://data.delijn.be/stops/208074"], ["https://data.delijn.be/stops/302599", "https://data.delijn.be/stops/302688"], ["https://data.delijn.be/stops/502684", "https://data.delijn.be/stops/507232"], ["https://data.delijn.be/stops/505772", "https://data.delijn.be/stops/507713"], ["https://data.delijn.be/stops/302913", "https://data.delijn.be/stops/303235"], ["https://data.delijn.be/stops/300961", "https://data.delijn.be/stops/300969"], ["https://data.delijn.be/stops/508429", "https://data.delijn.be/stops/508434"], ["https://data.delijn.be/stops/508548", "https://data.delijn.be/stops/508552"], ["https://data.delijn.be/stops/102241", "https://data.delijn.be/stops/102244"], ["https://data.delijn.be/stops/208604", "https://data.delijn.be/stops/209604"], ["https://data.delijn.be/stops/504252", "https://data.delijn.be/stops/509361"], ["https://data.delijn.be/stops/208673", "https://data.delijn.be/stops/209441"], ["https://data.delijn.be/stops/105627", "https://data.delijn.be/stops/105628"], ["https://data.delijn.be/stops/305030", "https://data.delijn.be/stops/305031"], ["https://data.delijn.be/stops/300798", "https://data.delijn.be/stops/304775"], ["https://data.delijn.be/stops/200965", "https://data.delijn.be/stops/204810"], ["https://data.delijn.be/stops/303095", "https://data.delijn.be/stops/303096"], ["https://data.delijn.be/stops/503426", "https://data.delijn.be/stops/508426"], ["https://data.delijn.be/stops/403468", "https://data.delijn.be/stops/403474"], ["https://data.delijn.be/stops/505422", "https://data.delijn.be/stops/509611"], ["https://data.delijn.be/stops/202681", "https://data.delijn.be/stops/203681"], ["https://data.delijn.be/stops/302344", "https://data.delijn.be/stops/302352"], ["https://data.delijn.be/stops/504701", "https://data.delijn.be/stops/509439"], ["https://data.delijn.be/stops/201652", "https://data.delijn.be/stops/210067"], ["https://data.delijn.be/stops/208748", "https://data.delijn.be/stops/209387"], ["https://data.delijn.be/stops/302396", "https://data.delijn.be/stops/302671"], ["https://data.delijn.be/stops/105096", "https://data.delijn.be/stops/105097"], ["https://data.delijn.be/stops/301595", "https://data.delijn.be/stops/302603"], ["https://data.delijn.be/stops/109052", "https://data.delijn.be/stops/109053"], ["https://data.delijn.be/stops/108788", "https://data.delijn.be/stops/108789"], ["https://data.delijn.be/stops/109491", "https://data.delijn.be/stops/305832"], ["https://data.delijn.be/stops/208519", "https://data.delijn.be/stops/218016"], ["https://data.delijn.be/stops/208747", "https://data.delijn.be/stops/209620"], ["https://data.delijn.be/stops/302545", "https://data.delijn.be/stops/303381"], ["https://data.delijn.be/stops/400499", "https://data.delijn.be/stops/400906"], ["https://data.delijn.be/stops/503860", "https://data.delijn.be/stops/508860"], ["https://data.delijn.be/stops/205978", "https://data.delijn.be/stops/208244"], ["https://data.delijn.be/stops/502489", "https://data.delijn.be/stops/502636"], ["https://data.delijn.be/stops/504639", "https://data.delijn.be/stops/505918"], ["https://data.delijn.be/stops/103123", "https://data.delijn.be/stops/107703"], ["https://data.delijn.be/stops/402451", "https://data.delijn.be/stops/402493"], ["https://data.delijn.be/stops/505935", "https://data.delijn.be/stops/508313"], ["https://data.delijn.be/stops/305113", "https://data.delijn.be/stops/306881"], ["https://data.delijn.be/stops/101921", "https://data.delijn.be/stops/106042"], ["https://data.delijn.be/stops/103371", "https://data.delijn.be/stops/104995"], ["https://data.delijn.be/stops/204193", "https://data.delijn.be/stops/205194"], ["https://data.delijn.be/stops/302725", "https://data.delijn.be/stops/308596"], ["https://data.delijn.be/stops/408134", "https://data.delijn.be/stops/408432"], ["https://data.delijn.be/stops/502546", "https://data.delijn.be/stops/502712"], ["https://data.delijn.be/stops/202917", "https://data.delijn.be/stops/203917"], ["https://data.delijn.be/stops/102389", "https://data.delijn.be/stops/107086"], ["https://data.delijn.be/stops/306847", "https://data.delijn.be/stops/307358"], ["https://data.delijn.be/stops/301631", "https://data.delijn.be/stops/302119"], ["https://data.delijn.be/stops/504255", "https://data.delijn.be/stops/504318"], ["https://data.delijn.be/stops/304381", "https://data.delijn.be/stops/304391"], ["https://data.delijn.be/stops/106752", "https://data.delijn.be/stops/106753"], ["https://data.delijn.be/stops/108305", "https://data.delijn.be/stops/108930"], ["https://data.delijn.be/stops/206668", "https://data.delijn.be/stops/206776"], ["https://data.delijn.be/stops/102833", "https://data.delijn.be/stops/102840"], ["https://data.delijn.be/stops/202183", "https://data.delijn.be/stops/203183"], ["https://data.delijn.be/stops/101757", "https://data.delijn.be/stops/104408"], ["https://data.delijn.be/stops/406736", "https://data.delijn.be/stops/406998"], ["https://data.delijn.be/stops/402134", "https://data.delijn.be/stops/402202"], ["https://data.delijn.be/stops/503102", "https://data.delijn.be/stops/503107"], ["https://data.delijn.be/stops/303697", "https://data.delijn.be/stops/305409"], ["https://data.delijn.be/stops/407923", "https://data.delijn.be/stops/408438"], ["https://data.delijn.be/stops/300213", "https://data.delijn.be/stops/301383"], ["https://data.delijn.be/stops/101651", "https://data.delijn.be/stops/105497"], ["https://data.delijn.be/stops/402935", "https://data.delijn.be/stops/403976"], ["https://data.delijn.be/stops/203794", "https://data.delijn.be/stops/203795"], ["https://data.delijn.be/stops/404205", "https://data.delijn.be/stops/404209"], ["https://data.delijn.be/stops/302938", "https://data.delijn.be/stops/307077"], ["https://data.delijn.be/stops/502426", "https://data.delijn.be/stops/507426"], ["https://data.delijn.be/stops/201724", "https://data.delijn.be/stops/203382"], ["https://data.delijn.be/stops/208316", "https://data.delijn.be/stops/209772"], ["https://data.delijn.be/stops/503846", "https://data.delijn.be/stops/505897"], ["https://data.delijn.be/stops/304409", "https://data.delijn.be/stops/304413"], ["https://data.delijn.be/stops/504416", "https://data.delijn.be/stops/504835"], ["https://data.delijn.be/stops/503535", "https://data.delijn.be/stops/508535"], ["https://data.delijn.be/stops/204240", "https://data.delijn.be/stops/205345"], ["https://data.delijn.be/stops/102665", "https://data.delijn.be/stops/104220"], ["https://data.delijn.be/stops/202902", "https://data.delijn.be/stops/203902"], ["https://data.delijn.be/stops/505167", "https://data.delijn.be/stops/509499"], ["https://data.delijn.be/stops/200885", "https://data.delijn.be/stops/202063"], ["https://data.delijn.be/stops/407225", "https://data.delijn.be/stops/407486"], ["https://data.delijn.be/stops/502022", "https://data.delijn.be/stops/507022"], ["https://data.delijn.be/stops/105101", "https://data.delijn.be/stops/105103"], ["https://data.delijn.be/stops/504680", "https://data.delijn.be/stops/509347"], ["https://data.delijn.be/stops/503781", "https://data.delijn.be/stops/505822"], ["https://data.delijn.be/stops/206575", "https://data.delijn.be/stops/206930"], ["https://data.delijn.be/stops/102582", "https://data.delijn.be/stops/105370"], ["https://data.delijn.be/stops/503688", "https://data.delijn.be/stops/508878"], ["https://data.delijn.be/stops/208380", "https://data.delijn.be/stops/209290"], ["https://data.delijn.be/stops/502675", "https://data.delijn.be/stops/507675"], ["https://data.delijn.be/stops/208483", "https://data.delijn.be/stops/209618"], ["https://data.delijn.be/stops/102416", "https://data.delijn.be/stops/104668"], ["https://data.delijn.be/stops/403023", "https://data.delijn.be/stops/405182"], ["https://data.delijn.be/stops/206547", "https://data.delijn.be/stops/209756"], ["https://data.delijn.be/stops/105646", "https://data.delijn.be/stops/105647"], ["https://data.delijn.be/stops/201152", "https://data.delijn.be/stops/201174"], ["https://data.delijn.be/stops/503600", "https://data.delijn.be/stops/503606"], ["https://data.delijn.be/stops/408422", "https://data.delijn.be/stops/408426"], ["https://data.delijn.be/stops/101261", "https://data.delijn.be/stops/102888"], ["https://data.delijn.be/stops/503670", "https://data.delijn.be/stops/503674"], ["https://data.delijn.be/stops/201881", "https://data.delijn.be/stops/203421"], ["https://data.delijn.be/stops/507208", "https://data.delijn.be/stops/507211"], ["https://data.delijn.be/stops/302186", "https://data.delijn.be/stops/302187"], ["https://data.delijn.be/stops/107797", "https://data.delijn.be/stops/107798"], ["https://data.delijn.be/stops/300824", "https://data.delijn.be/stops/300859"], ["https://data.delijn.be/stops/206873", "https://data.delijn.be/stops/207284"], ["https://data.delijn.be/stops/504317", "https://data.delijn.be/stops/504322"], ["https://data.delijn.be/stops/304646", "https://data.delijn.be/stops/304647"], ["https://data.delijn.be/stops/102025", "https://data.delijn.be/stops/105755"], ["https://data.delijn.be/stops/300731", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/400787", "https://data.delijn.be/stops/409590"], ["https://data.delijn.be/stops/305433", "https://data.delijn.be/stops/305435"], ["https://data.delijn.be/stops/103643", "https://data.delijn.be/stops/107184"], ["https://data.delijn.be/stops/101799", "https://data.delijn.be/stops/300674"], ["https://data.delijn.be/stops/108784", "https://data.delijn.be/stops/109121"], ["https://data.delijn.be/stops/503398", "https://data.delijn.be/stops/508430"], ["https://data.delijn.be/stops/302359", "https://data.delijn.be/stops/302362"], ["https://data.delijn.be/stops/402975", "https://data.delijn.be/stops/403325"], ["https://data.delijn.be/stops/105650", "https://data.delijn.be/stops/105655"], ["https://data.delijn.be/stops/303988", "https://data.delijn.be/stops/307015"], ["https://data.delijn.be/stops/104549", "https://data.delijn.be/stops/305841"], ["https://data.delijn.be/stops/108767", "https://data.delijn.be/stops/108784"], ["https://data.delijn.be/stops/102219", "https://data.delijn.be/stops/102223"], ["https://data.delijn.be/stops/405678", "https://data.delijn.be/stops/406989"], ["https://data.delijn.be/stops/105641", "https://data.delijn.be/stops/105643"], ["https://data.delijn.be/stops/107072", "https://data.delijn.be/stops/107074"], ["https://data.delijn.be/stops/304432", "https://data.delijn.be/stops/307697"], ["https://data.delijn.be/stops/504377", "https://data.delijn.be/stops/509385"], ["https://data.delijn.be/stops/300666", "https://data.delijn.be/stops/300667"], ["https://data.delijn.be/stops/403154", "https://data.delijn.be/stops/403155"], ["https://data.delijn.be/stops/204459", "https://data.delijn.be/stops/215017"], ["https://data.delijn.be/stops/202780", "https://data.delijn.be/stops/203780"], ["https://data.delijn.be/stops/307310", "https://data.delijn.be/stops/307311"], ["https://data.delijn.be/stops/301628", "https://data.delijn.be/stops/301641"], ["https://data.delijn.be/stops/206240", "https://data.delijn.be/stops/207407"], ["https://data.delijn.be/stops/404559", "https://data.delijn.be/stops/405486"], ["https://data.delijn.be/stops/302692", "https://data.delijn.be/stops/302700"], ["https://data.delijn.be/stops/409191", "https://data.delijn.be/stops/410180"], ["https://data.delijn.be/stops/101821", "https://data.delijn.be/stops/107019"], ["https://data.delijn.be/stops/307142", "https://data.delijn.be/stops/307246"], ["https://data.delijn.be/stops/200022", "https://data.delijn.be/stops/201022"], ["https://data.delijn.be/stops/202055", "https://data.delijn.be/stops/203055"], ["https://data.delijn.be/stops/505700", "https://data.delijn.be/stops/507575"], ["https://data.delijn.be/stops/206763", "https://data.delijn.be/stops/207869"], ["https://data.delijn.be/stops/505234", "https://data.delijn.be/stops/505762"], ["https://data.delijn.be/stops/207501", "https://data.delijn.be/stops/207673"], ["https://data.delijn.be/stops/102226", "https://data.delijn.be/stops/105529"], ["https://data.delijn.be/stops/406269", "https://data.delijn.be/stops/406448"], ["https://data.delijn.be/stops/505095", "https://data.delijn.be/stops/505666"], ["https://data.delijn.be/stops/103476", "https://data.delijn.be/stops/109215"], ["https://data.delijn.be/stops/504414", "https://data.delijn.be/stops/504591"], ["https://data.delijn.be/stops/404208", "https://data.delijn.be/stops/404216"], ["https://data.delijn.be/stops/504023", "https://data.delijn.be/stops/504106"], ["https://data.delijn.be/stops/206845", "https://data.delijn.be/stops/303240"], ["https://data.delijn.be/stops/103718", "https://data.delijn.be/stops/107307"], ["https://data.delijn.be/stops/401724", "https://data.delijn.be/stops/405455"], ["https://data.delijn.be/stops/208253", "https://data.delijn.be/stops/208254"], ["https://data.delijn.be/stops/201680", "https://data.delijn.be/stops/211116"], ["https://data.delijn.be/stops/407906", "https://data.delijn.be/stops/408102"], ["https://data.delijn.be/stops/105484", "https://data.delijn.be/stops/108802"], ["https://data.delijn.be/stops/403225", "https://data.delijn.be/stops/403385"], ["https://data.delijn.be/stops/206605", "https://data.delijn.be/stops/207605"], ["https://data.delijn.be/stops/200141", "https://data.delijn.be/stops/210001"], ["https://data.delijn.be/stops/209390", "https://data.delijn.be/stops/508835"], ["https://data.delijn.be/stops/302794", "https://data.delijn.be/stops/302812"], ["https://data.delijn.be/stops/305339", "https://data.delijn.be/stops/305340"], ["https://data.delijn.be/stops/201625", "https://data.delijn.be/stops/205984"], ["https://data.delijn.be/stops/201567", "https://data.delijn.be/stops/211047"], ["https://data.delijn.be/stops/200657", "https://data.delijn.be/stops/201657"], ["https://data.delijn.be/stops/206541", "https://data.delijn.be/stops/207541"], ["https://data.delijn.be/stops/303282", "https://data.delijn.be/stops/303291"], ["https://data.delijn.be/stops/208125", "https://data.delijn.be/stops/218015"], ["https://data.delijn.be/stops/102744", "https://data.delijn.be/stops/103039"], ["https://data.delijn.be/stops/200927", "https://data.delijn.be/stops/203229"], ["https://data.delijn.be/stops/500601", "https://data.delijn.be/stops/501540"], ["https://data.delijn.be/stops/405311", "https://data.delijn.be/stops/405406"], ["https://data.delijn.be/stops/102040", "https://data.delijn.be/stops/103625"], ["https://data.delijn.be/stops/401756", "https://data.delijn.be/stops/401757"], ["https://data.delijn.be/stops/500136", "https://data.delijn.be/stops/590331"], ["https://data.delijn.be/stops/200333", "https://data.delijn.be/stops/201333"], ["https://data.delijn.be/stops/200544", "https://data.delijn.be/stops/201339"], ["https://data.delijn.be/stops/207902", "https://data.delijn.be/stops/216002"], ["https://data.delijn.be/stops/301415", "https://data.delijn.be/stops/301419"], ["https://data.delijn.be/stops/208288", "https://data.delijn.be/stops/209287"], ["https://data.delijn.be/stops/301165", "https://data.delijn.be/stops/302876"], ["https://data.delijn.be/stops/500873", "https://data.delijn.be/stops/503851"], ["https://data.delijn.be/stops/304024", "https://data.delijn.be/stops/304822"], ["https://data.delijn.be/stops/202832", "https://data.delijn.be/stops/218025"], ["https://data.delijn.be/stops/402893", "https://data.delijn.be/stops/402894"], ["https://data.delijn.be/stops/200241", "https://data.delijn.be/stops/202136"], ["https://data.delijn.be/stops/206016", "https://data.delijn.be/stops/207926"], ["https://data.delijn.be/stops/206333", "https://data.delijn.be/stops/207706"], ["https://data.delijn.be/stops/400486", "https://data.delijn.be/stops/407688"], ["https://data.delijn.be/stops/301961", "https://data.delijn.be/stops/301988"], ["https://data.delijn.be/stops/400303", "https://data.delijn.be/stops/400440"], ["https://data.delijn.be/stops/101988", "https://data.delijn.be/stops/105010"], ["https://data.delijn.be/stops/108196", "https://data.delijn.be/stops/108197"], ["https://data.delijn.be/stops/303889", "https://data.delijn.be/stops/303890"], ["https://data.delijn.be/stops/204372", "https://data.delijn.be/stops/205372"], ["https://data.delijn.be/stops/400257", "https://data.delijn.be/stops/400402"], ["https://data.delijn.be/stops/106647", "https://data.delijn.be/stops/106648"], ["https://data.delijn.be/stops/407567", "https://data.delijn.be/stops/407568"], ["https://data.delijn.be/stops/302363", "https://data.delijn.be/stops/308358"], ["https://data.delijn.be/stops/202824", "https://data.delijn.be/stops/202825"], ["https://data.delijn.be/stops/505917", "https://data.delijn.be/stops/508907"], ["https://data.delijn.be/stops/105202", "https://data.delijn.be/stops/108358"], ["https://data.delijn.be/stops/402095", "https://data.delijn.be/stops/402372"], ["https://data.delijn.be/stops/209186", "https://data.delijn.be/stops/209187"], ["https://data.delijn.be/stops/204298", "https://data.delijn.be/stops/205299"], ["https://data.delijn.be/stops/408941", "https://data.delijn.be/stops/409242"], ["https://data.delijn.be/stops/200433", "https://data.delijn.be/stops/201429"], ["https://data.delijn.be/stops/405819", "https://data.delijn.be/stops/409763"], ["https://data.delijn.be/stops/504226", "https://data.delijn.be/stops/505707"], ["https://data.delijn.be/stops/209533", "https://data.delijn.be/stops/219016"], ["https://data.delijn.be/stops/506080", "https://data.delijn.be/stops/506084"], ["https://data.delijn.be/stops/502264", "https://data.delijn.be/stops/502910"], ["https://data.delijn.be/stops/305482", "https://data.delijn.be/stops/308549"], ["https://data.delijn.be/stops/400403", "https://data.delijn.be/stops/404827"], ["https://data.delijn.be/stops/506674", "https://data.delijn.be/stops/506676"], ["https://data.delijn.be/stops/204663", "https://data.delijn.be/stops/205662"], ["https://data.delijn.be/stops/106491", "https://data.delijn.be/stops/109712"], ["https://data.delijn.be/stops/405257", "https://data.delijn.be/stops/405275"], ["https://data.delijn.be/stops/201881", "https://data.delijn.be/stops/203278"], ["https://data.delijn.be/stops/503718", "https://data.delijn.be/stops/503732"], ["https://data.delijn.be/stops/405750", "https://data.delijn.be/stops/405751"], ["https://data.delijn.be/stops/106196", "https://data.delijn.be/stops/109275"], ["https://data.delijn.be/stops/300642", "https://data.delijn.be/stops/305813"], ["https://data.delijn.be/stops/300066", "https://data.delijn.be/stops/300067"], ["https://data.delijn.be/stops/305107", "https://data.delijn.be/stops/308123"], ["https://data.delijn.be/stops/403001", "https://data.delijn.be/stops/409334"], ["https://data.delijn.be/stops/204127", "https://data.delijn.be/stops/205128"], ["https://data.delijn.be/stops/401304", "https://data.delijn.be/stops/401306"], ["https://data.delijn.be/stops/307640", "https://data.delijn.be/stops/307641"], ["https://data.delijn.be/stops/102998", "https://data.delijn.be/stops/107416"], ["https://data.delijn.be/stops/106087", "https://data.delijn.be/stops/106137"], ["https://data.delijn.be/stops/400967", "https://data.delijn.be/stops/406687"], ["https://data.delijn.be/stops/105618", "https://data.delijn.be/stops/105654"], ["https://data.delijn.be/stops/508050", "https://data.delijn.be/stops/508056"], ["https://data.delijn.be/stops/404563", "https://data.delijn.be/stops/406742"], ["https://data.delijn.be/stops/500053", "https://data.delijn.be/stops/502085"], ["https://data.delijn.be/stops/401648", "https://data.delijn.be/stops/408732"], ["https://data.delijn.be/stops/203823", "https://data.delijn.be/stops/209717"], ["https://data.delijn.be/stops/101075", "https://data.delijn.be/stops/102885"], ["https://data.delijn.be/stops/405148", "https://data.delijn.be/stops/405290"], ["https://data.delijn.be/stops/103905", "https://data.delijn.be/stops/105671"], ["https://data.delijn.be/stops/106965", "https://data.delijn.be/stops/106966"], ["https://data.delijn.be/stops/308072", "https://data.delijn.be/stops/308073"], ["https://data.delijn.be/stops/306853", "https://data.delijn.be/stops/306856"], ["https://data.delijn.be/stops/505973", "https://data.delijn.be/stops/508019"], ["https://data.delijn.be/stops/300461", "https://data.delijn.be/stops/307088"], ["https://data.delijn.be/stops/502560", "https://data.delijn.be/stops/507561"], ["https://data.delijn.be/stops/105669", "https://data.delijn.be/stops/105673"], ["https://data.delijn.be/stops/101217", "https://data.delijn.be/stops/107946"], ["https://data.delijn.be/stops/107269", "https://data.delijn.be/stops/107270"], ["https://data.delijn.be/stops/305220", "https://data.delijn.be/stops/305987"], ["https://data.delijn.be/stops/300523", "https://data.delijn.be/stops/300524"], ["https://data.delijn.be/stops/407287", "https://data.delijn.be/stops/407324"], ["https://data.delijn.be/stops/207798", "https://data.delijn.be/stops/208758"], ["https://data.delijn.be/stops/202207", "https://data.delijn.be/stops/203207"], ["https://data.delijn.be/stops/302075", "https://data.delijn.be/stops/302277"], ["https://data.delijn.be/stops/202088", "https://data.delijn.be/stops/202721"], ["https://data.delijn.be/stops/304678", "https://data.delijn.be/stops/304679"], ["https://data.delijn.be/stops/407770", "https://data.delijn.be/stops/407771"], ["https://data.delijn.be/stops/102444", "https://data.delijn.be/stops/104117"], ["https://data.delijn.be/stops/405169", "https://data.delijn.be/stops/408369"], ["https://data.delijn.be/stops/104759", "https://data.delijn.be/stops/104762"], ["https://data.delijn.be/stops/501065", "https://data.delijn.be/stops/506137"], ["https://data.delijn.be/stops/502390", "https://data.delijn.be/stops/502668"], ["https://data.delijn.be/stops/300760", "https://data.delijn.be/stops/300775"], ["https://data.delijn.be/stops/204103", "https://data.delijn.be/stops/205595"], ["https://data.delijn.be/stops/400253", "https://data.delijn.be/stops/405585"], ["https://data.delijn.be/stops/501527", "https://data.delijn.be/stops/509896"], ["https://data.delijn.be/stops/305662", "https://data.delijn.be/stops/305670"], ["https://data.delijn.be/stops/201862", "https://data.delijn.be/stops/202668"], ["https://data.delijn.be/stops/301354", "https://data.delijn.be/stops/304532"], ["https://data.delijn.be/stops/505174", "https://data.delijn.be/stops/509163"], ["https://data.delijn.be/stops/303250", "https://data.delijn.be/stops/303303"], ["https://data.delijn.be/stops/109452", "https://data.delijn.be/stops/109555"], ["https://data.delijn.be/stops/304066", "https://data.delijn.be/stops/304089"], ["https://data.delijn.be/stops/207304", "https://data.delijn.be/stops/207632"], ["https://data.delijn.be/stops/508280", "https://data.delijn.be/stops/508288"], ["https://data.delijn.be/stops/507817", "https://data.delijn.be/stops/508384"], ["https://data.delijn.be/stops/400903", "https://data.delijn.be/stops/400938"], ["https://data.delijn.be/stops/102900", "https://data.delijn.be/stops/105380"], ["https://data.delijn.be/stops/103694", "https://data.delijn.be/stops/103698"], ["https://data.delijn.be/stops/200776", "https://data.delijn.be/stops/209089"], ["https://data.delijn.be/stops/207543", "https://data.delijn.be/stops/209749"], ["https://data.delijn.be/stops/301089", "https://data.delijn.be/stops/302806"], ["https://data.delijn.be/stops/405394", "https://data.delijn.be/stops/409245"], ["https://data.delijn.be/stops/403652", "https://data.delijn.be/stops/403653"], ["https://data.delijn.be/stops/406694", "https://data.delijn.be/stops/409411"], ["https://data.delijn.be/stops/305419", "https://data.delijn.be/stops/305420"], ["https://data.delijn.be/stops/300113", "https://data.delijn.be/stops/300114"], ["https://data.delijn.be/stops/206980", "https://data.delijn.be/stops/206994"], ["https://data.delijn.be/stops/306123", "https://data.delijn.be/stops/307726"], ["https://data.delijn.be/stops/206716", "https://data.delijn.be/stops/206718"], ["https://data.delijn.be/stops/406088", "https://data.delijn.be/stops/410148"], ["https://data.delijn.be/stops/301531", "https://data.delijn.be/stops/304966"], ["https://data.delijn.be/stops/206364", "https://data.delijn.be/stops/207332"], ["https://data.delijn.be/stops/401086", "https://data.delijn.be/stops/401100"], ["https://data.delijn.be/stops/301188", "https://data.delijn.be/stops/301208"], ["https://data.delijn.be/stops/107717", "https://data.delijn.be/stops/107718"], ["https://data.delijn.be/stops/303432", "https://data.delijn.be/stops/303433"], ["https://data.delijn.be/stops/301455", "https://data.delijn.be/stops/301487"], ["https://data.delijn.be/stops/405030", "https://data.delijn.be/stops/408147"], ["https://data.delijn.be/stops/208212", "https://data.delijn.be/stops/209212"], ["https://data.delijn.be/stops/101537", "https://data.delijn.be/stops/103013"], ["https://data.delijn.be/stops/305349", "https://data.delijn.be/stops/305350"], ["https://data.delijn.be/stops/209193", "https://data.delijn.be/stops/209369"], ["https://data.delijn.be/stops/109126", "https://data.delijn.be/stops/109127"], ["https://data.delijn.be/stops/406108", "https://data.delijn.be/stops/406815"], ["https://data.delijn.be/stops/504070", "https://data.delijn.be/stops/505205"], ["https://data.delijn.be/stops/200815", "https://data.delijn.be/stops/201119"], ["https://data.delijn.be/stops/200774", "https://data.delijn.be/stops/208384"], ["https://data.delijn.be/stops/503106", "https://data.delijn.be/stops/505388"], ["https://data.delijn.be/stops/202343", "https://data.delijn.be/stops/202439"], ["https://data.delijn.be/stops/402797", "https://data.delijn.be/stops/405497"], ["https://data.delijn.be/stops/302603", "https://data.delijn.be/stops/302606"], ["https://data.delijn.be/stops/208256", "https://data.delijn.be/stops/209256"], ["https://data.delijn.be/stops/305547", "https://data.delijn.be/stops/305548"], ["https://data.delijn.be/stops/505684", "https://data.delijn.be/stops/507597"], ["https://data.delijn.be/stops/204540", "https://data.delijn.be/stops/204552"], ["https://data.delijn.be/stops/204499", "https://data.delijn.be/stops/205544"], ["https://data.delijn.be/stops/206662", "https://data.delijn.be/stops/209670"], ["https://data.delijn.be/stops/301240", "https://data.delijn.be/stops/301251"], ["https://data.delijn.be/stops/307386", "https://data.delijn.be/stops/307395"], ["https://data.delijn.be/stops/202431", "https://data.delijn.be/stops/203431"], ["https://data.delijn.be/stops/300709", "https://data.delijn.be/stops/300710"], ["https://data.delijn.be/stops/406091", "https://data.delijn.be/stops/410148"], ["https://data.delijn.be/stops/508126", "https://data.delijn.be/stops/508145"], ["https://data.delijn.be/stops/103122", "https://data.delijn.be/stops/205602"], ["https://data.delijn.be/stops/302974", "https://data.delijn.be/stops/303024"], ["https://data.delijn.be/stops/305594", "https://data.delijn.be/stops/305598"], ["https://data.delijn.be/stops/505034", "https://data.delijn.be/stops/506466"], ["https://data.delijn.be/stops/402392", "https://data.delijn.be/stops/402393"], ["https://data.delijn.be/stops/505104", "https://data.delijn.be/stops/508994"], ["https://data.delijn.be/stops/403200", "https://data.delijn.be/stops/404759"], ["https://data.delijn.be/stops/204414", "https://data.delijn.be/stops/204415"], ["https://data.delijn.be/stops/502245", "https://data.delijn.be/stops/507910"], ["https://data.delijn.be/stops/105767", "https://data.delijn.be/stops/105768"], ["https://data.delijn.be/stops/102540", "https://data.delijn.be/stops/103500"], ["https://data.delijn.be/stops/401041", "https://data.delijn.be/stops/401120"], ["https://data.delijn.be/stops/204151", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/200089", "https://data.delijn.be/stops/200393"], ["https://data.delijn.be/stops/501173", "https://data.delijn.be/stops/506183"], ["https://data.delijn.be/stops/101846", "https://data.delijn.be/stops/106881"], ["https://data.delijn.be/stops/305377", "https://data.delijn.be/stops/305381"], ["https://data.delijn.be/stops/401951", "https://data.delijn.be/stops/407524"], ["https://data.delijn.be/stops/206499", "https://data.delijn.be/stops/207527"], ["https://data.delijn.be/stops/101472", "https://data.delijn.be/stops/109603"], ["https://data.delijn.be/stops/502478", "https://data.delijn.be/stops/505074"], ["https://data.delijn.be/stops/506114", "https://data.delijn.be/stops/506640"], ["https://data.delijn.be/stops/501119", "https://data.delijn.be/stops/506121"], ["https://data.delijn.be/stops/102974", "https://data.delijn.be/stops/103233"], ["https://data.delijn.be/stops/405442", "https://data.delijn.be/stops/408669"], ["https://data.delijn.be/stops/503870", "https://data.delijn.be/stops/503872"], ["https://data.delijn.be/stops/502422", "https://data.delijn.be/stops/507417"], ["https://data.delijn.be/stops/207748", "https://data.delijn.be/stops/207749"], ["https://data.delijn.be/stops/401788", "https://data.delijn.be/stops/406121"], ["https://data.delijn.be/stops/403710", "https://data.delijn.be/stops/403723"], ["https://data.delijn.be/stops/206038", "https://data.delijn.be/stops/207039"], ["https://data.delijn.be/stops/403922", "https://data.delijn.be/stops/405938"], ["https://data.delijn.be/stops/101802", "https://data.delijn.be/stops/104626"], ["https://data.delijn.be/stops/205998", "https://data.delijn.be/stops/208794"], ["https://data.delijn.be/stops/101459", "https://data.delijn.be/stops/108226"], ["https://data.delijn.be/stops/200848", "https://data.delijn.be/stops/200850"], ["https://data.delijn.be/stops/301450", "https://data.delijn.be/stops/301457"], ["https://data.delijn.be/stops/201223", "https://data.delijn.be/stops/209931"], ["https://data.delijn.be/stops/200626", "https://data.delijn.be/stops/203902"], ["https://data.delijn.be/stops/103269", "https://data.delijn.be/stops/103271"], ["https://data.delijn.be/stops/400541", "https://data.delijn.be/stops/403190"], ["https://data.delijn.be/stops/210060", "https://data.delijn.be/stops/211060"], ["https://data.delijn.be/stops/301467", "https://data.delijn.be/stops/305659"], ["https://data.delijn.be/stops/508235", "https://data.delijn.be/stops/508261"], ["https://data.delijn.be/stops/200975", "https://data.delijn.be/stops/209581"], ["https://data.delijn.be/stops/105387", "https://data.delijn.be/stops/109880"], ["https://data.delijn.be/stops/400118", "https://data.delijn.be/stops/400163"], ["https://data.delijn.be/stops/406083", "https://data.delijn.be/stops/406824"], ["https://data.delijn.be/stops/200894", "https://data.delijn.be/stops/203484"], ["https://data.delijn.be/stops/207782", "https://data.delijn.be/stops/209190"], ["https://data.delijn.be/stops/203160", "https://data.delijn.be/stops/203161"], ["https://data.delijn.be/stops/101631", "https://data.delijn.be/stops/105918"], ["https://data.delijn.be/stops/200135", "https://data.delijn.be/stops/201136"], ["https://data.delijn.be/stops/403487", "https://data.delijn.be/stops/403517"], ["https://data.delijn.be/stops/301271", "https://data.delijn.be/stops/301274"], ["https://data.delijn.be/stops/403003", "https://data.delijn.be/stops/405589"], ["https://data.delijn.be/stops/207007", "https://data.delijn.be/stops/207008"], ["https://data.delijn.be/stops/405357", "https://data.delijn.be/stops/407487"], ["https://data.delijn.be/stops/105711", "https://data.delijn.be/stops/106064"], ["https://data.delijn.be/stops/404398", "https://data.delijn.be/stops/404403"], ["https://data.delijn.be/stops/302172", "https://data.delijn.be/stops/305090"], ["https://data.delijn.be/stops/104608", "https://data.delijn.be/stops/108073"], ["https://data.delijn.be/stops/201910", "https://data.delijn.be/stops/202527"], ["https://data.delijn.be/stops/206078", "https://data.delijn.be/stops/207019"], ["https://data.delijn.be/stops/408245", "https://data.delijn.be/stops/308202"], ["https://data.delijn.be/stops/300192", "https://data.delijn.be/stops/308788"], ["https://data.delijn.be/stops/405489", "https://data.delijn.be/stops/409332"], ["https://data.delijn.be/stops/407657", "https://data.delijn.be/stops/409774"], ["https://data.delijn.be/stops/206626", "https://data.delijn.be/stops/206627"], ["https://data.delijn.be/stops/208572", "https://data.delijn.be/stops/209571"], ["https://data.delijn.be/stops/406559", "https://data.delijn.be/stops/407374"], ["https://data.delijn.be/stops/201739", "https://data.delijn.be/stops/505417"], ["https://data.delijn.be/stops/102809", "https://data.delijn.be/stops/106480"], ["https://data.delijn.be/stops/503479", "https://data.delijn.be/stops/503483"], ["https://data.delijn.be/stops/105734", "https://data.delijn.be/stops/109856"], ["https://data.delijn.be/stops/405148", "https://data.delijn.be/stops/405149"], ["https://data.delijn.be/stops/109728", "https://data.delijn.be/stops/109729"], ["https://data.delijn.be/stops/108305", "https://data.delijn.be/stops/108310"], ["https://data.delijn.be/stops/206254", "https://data.delijn.be/stops/207254"], ["https://data.delijn.be/stops/202577", "https://data.delijn.be/stops/203576"], ["https://data.delijn.be/stops/304596", "https://data.delijn.be/stops/304601"], ["https://data.delijn.be/stops/102379", "https://data.delijn.be/stops/107194"], ["https://data.delijn.be/stops/101797", "https://data.delijn.be/stops/103729"], ["https://data.delijn.be/stops/208813", "https://data.delijn.be/stops/208814"], ["https://data.delijn.be/stops/504532", "https://data.delijn.be/stops/509532"], ["https://data.delijn.be/stops/202765", "https://data.delijn.be/stops/203505"], ["https://data.delijn.be/stops/102470", "https://data.delijn.be/stops/104845"], ["https://data.delijn.be/stops/409520", "https://data.delijn.be/stops/409777"], ["https://data.delijn.be/stops/107371", "https://data.delijn.be/stops/107372"], ["https://data.delijn.be/stops/507292", "https://data.delijn.be/stops/507298"], ["https://data.delijn.be/stops/102497", "https://data.delijn.be/stops/400004"], ["https://data.delijn.be/stops/102996", "https://data.delijn.be/stops/106824"], ["https://data.delijn.be/stops/503961", "https://data.delijn.be/stops/509343"], ["https://data.delijn.be/stops/200723", "https://data.delijn.be/stops/203586"], ["https://data.delijn.be/stops/104891", "https://data.delijn.be/stops/109355"], ["https://data.delijn.be/stops/105778", "https://data.delijn.be/stops/105779"], ["https://data.delijn.be/stops/305057", "https://data.delijn.be/stops/305212"], ["https://data.delijn.be/stops/104310", "https://data.delijn.be/stops/105125"], ["https://data.delijn.be/stops/101093", "https://data.delijn.be/stops/101094"], ["https://data.delijn.be/stops/205412", "https://data.delijn.be/stops/205428"], ["https://data.delijn.be/stops/409278", "https://data.delijn.be/stops/409302"], ["https://data.delijn.be/stops/503683", "https://data.delijn.be/stops/504453"], ["https://data.delijn.be/stops/300801", "https://data.delijn.be/stops/300802"], ["https://data.delijn.be/stops/104056", "https://data.delijn.be/stops/108901"], ["https://data.delijn.be/stops/303711", "https://data.delijn.be/stops/303713"], ["https://data.delijn.be/stops/307599", "https://data.delijn.be/stops/307607"], ["https://data.delijn.be/stops/104813", "https://data.delijn.be/stops/105162"], ["https://data.delijn.be/stops/407593", "https://data.delijn.be/stops/407596"], ["https://data.delijn.be/stops/501026", "https://data.delijn.be/stops/506453"], ["https://data.delijn.be/stops/502608", "https://data.delijn.be/stops/502609"], ["https://data.delijn.be/stops/106288", "https://data.delijn.be/stops/106304"], ["https://data.delijn.be/stops/503996", "https://data.delijn.be/stops/508580"], ["https://data.delijn.be/stops/104943", "https://data.delijn.be/stops/105072"], ["https://data.delijn.be/stops/109960", "https://data.delijn.be/stops/109962"], ["https://data.delijn.be/stops/406509", "https://data.delijn.be/stops/406511"], ["https://data.delijn.be/stops/500050", "https://data.delijn.be/stops/500052"], ["https://data.delijn.be/stops/304604", "https://data.delijn.be/stops/304645"], ["https://data.delijn.be/stops/301188", "https://data.delijn.be/stops/304924"], ["https://data.delijn.be/stops/307206", "https://data.delijn.be/stops/307219"], ["https://data.delijn.be/stops/306124", "https://data.delijn.be/stops/307473"], ["https://data.delijn.be/stops/400217", "https://data.delijn.be/stops/400240"], ["https://data.delijn.be/stops/500949", "https://data.delijn.be/stops/504176"], ["https://data.delijn.be/stops/403221", "https://data.delijn.be/stops/403483"], ["https://data.delijn.be/stops/506618", "https://data.delijn.be/stops/506624"], ["https://data.delijn.be/stops/400790", "https://data.delijn.be/stops/409614"], ["https://data.delijn.be/stops/501033", "https://data.delijn.be/stops/506033"], ["https://data.delijn.be/stops/503419", "https://data.delijn.be/stops/508100"], ["https://data.delijn.be/stops/201818", "https://data.delijn.be/stops/209256"], ["https://data.delijn.be/stops/101013", "https://data.delijn.be/stops/102694"], ["https://data.delijn.be/stops/508051", "https://data.delijn.be/stops/508056"], ["https://data.delijn.be/stops/201706", "https://data.delijn.be/stops/201713"], ["https://data.delijn.be/stops/206847", "https://data.delijn.be/stops/207599"], ["https://data.delijn.be/stops/408552", "https://data.delijn.be/stops/408553"], ["https://data.delijn.be/stops/304471", "https://data.delijn.be/stops/304679"], ["https://data.delijn.be/stops/209337", "https://data.delijn.be/stops/209399"], ["https://data.delijn.be/stops/303363", "https://data.delijn.be/stops/303378"], ["https://data.delijn.be/stops/200296", "https://data.delijn.be/stops/201326"], ["https://data.delijn.be/stops/106241", "https://data.delijn.be/stops/107233"], ["https://data.delijn.be/stops/202501", "https://data.delijn.be/stops/203403"], ["https://data.delijn.be/stops/307539", "https://data.delijn.be/stops/307540"], ["https://data.delijn.be/stops/505518", "https://data.delijn.be/stops/505618"], ["https://data.delijn.be/stops/109640", "https://data.delijn.be/stops/109657"], ["https://data.delijn.be/stops/506087", "https://data.delijn.be/stops/506100"], ["https://data.delijn.be/stops/407896", "https://data.delijn.be/stops/408045"], ["https://data.delijn.be/stops/104039", "https://data.delijn.be/stops/108455"], ["https://data.delijn.be/stops/105813", "https://data.delijn.be/stops/105814"], ["https://data.delijn.be/stops/201149", "https://data.delijn.be/stops/201514"], ["https://data.delijn.be/stops/501733", "https://data.delijn.be/stops/506733"], ["https://data.delijn.be/stops/405205", "https://data.delijn.be/stops/405212"], ["https://data.delijn.be/stops/402506", "https://data.delijn.be/stops/402507"], ["https://data.delijn.be/stops/400756", "https://data.delijn.be/stops/409570"], ["https://data.delijn.be/stops/505596", "https://data.delijn.be/stops/509724"], ["https://data.delijn.be/stops/507387", "https://data.delijn.be/stops/507399"], ["https://data.delijn.be/stops/202594", "https://data.delijn.be/stops/203594"], ["https://data.delijn.be/stops/408273", "https://data.delijn.be/stops/408413"], ["https://data.delijn.be/stops/401449", "https://data.delijn.be/stops/404927"], ["https://data.delijn.be/stops/301646", "https://data.delijn.be/stops/303661"], ["https://data.delijn.be/stops/101062", "https://data.delijn.be/stops/109776"], ["https://data.delijn.be/stops/504602", "https://data.delijn.be/stops/509600"], ["https://data.delijn.be/stops/201271", "https://data.delijn.be/stops/201370"], ["https://data.delijn.be/stops/501300", "https://data.delijn.be/stops/501517"], ["https://data.delijn.be/stops/202111", "https://data.delijn.be/stops/205093"], ["https://data.delijn.be/stops/300547", "https://data.delijn.be/stops/300691"], ["https://data.delijn.be/stops/300411", "https://data.delijn.be/stops/300412"], ["https://data.delijn.be/stops/209769", "https://data.delijn.be/stops/209770"], ["https://data.delijn.be/stops/101008", "https://data.delijn.be/stops/108280"], ["https://data.delijn.be/stops/300025", "https://data.delijn.be/stops/308637"], ["https://data.delijn.be/stops/103133", "https://data.delijn.be/stops/109391"], ["https://data.delijn.be/stops/301919", "https://data.delijn.be/stops/303172"], ["https://data.delijn.be/stops/102760", "https://data.delijn.be/stops/105735"], ["https://data.delijn.be/stops/403929", "https://data.delijn.be/stops/405968"], ["https://data.delijn.be/stops/204771", "https://data.delijn.be/stops/205165"], ["https://data.delijn.be/stops/206419", "https://data.delijn.be/stops/206977"], ["https://data.delijn.be/stops/302146", "https://data.delijn.be/stops/302147"], ["https://data.delijn.be/stops/504524", "https://data.delijn.be/stops/504836"], ["https://data.delijn.be/stops/304295", "https://data.delijn.be/stops/304296"], ["https://data.delijn.be/stops/209165", "https://data.delijn.be/stops/209166"], ["https://data.delijn.be/stops/300278", "https://data.delijn.be/stops/306656"], ["https://data.delijn.be/stops/107110", "https://data.delijn.be/stops/109150"], ["https://data.delijn.be/stops/202427", "https://data.delijn.be/stops/203465"], ["https://data.delijn.be/stops/101783", "https://data.delijn.be/stops/107871"], ["https://data.delijn.be/stops/104102", "https://data.delijn.be/stops/107235"], ["https://data.delijn.be/stops/503504", "https://data.delijn.be/stops/509824"], ["https://data.delijn.be/stops/304630", "https://data.delijn.be/stops/306170"], ["https://data.delijn.be/stops/400957", "https://data.delijn.be/stops/406875"], ["https://data.delijn.be/stops/503673", "https://data.delijn.be/stops/508025"], ["https://data.delijn.be/stops/200587", "https://data.delijn.be/stops/200588"], ["https://data.delijn.be/stops/103248", "https://data.delijn.be/stops/108325"], ["https://data.delijn.be/stops/200643", "https://data.delijn.be/stops/201605"], ["https://data.delijn.be/stops/201757", "https://data.delijn.be/stops/201777"], ["https://data.delijn.be/stops/207308", "https://data.delijn.be/stops/207309"], ["https://data.delijn.be/stops/509735", "https://data.delijn.be/stops/509736"], ["https://data.delijn.be/stops/409117", "https://data.delijn.be/stops/410049"], ["https://data.delijn.be/stops/201930", "https://data.delijn.be/stops/203470"], ["https://data.delijn.be/stops/403089", "https://data.delijn.be/stops/403095"], ["https://data.delijn.be/stops/507318", "https://data.delijn.be/stops/507335"], ["https://data.delijn.be/stops/405473", "https://data.delijn.be/stops/406684"], ["https://data.delijn.be/stops/504599", "https://data.delijn.be/stops/505971"], ["https://data.delijn.be/stops/104052", "https://data.delijn.be/stops/108412"], ["https://data.delijn.be/stops/503503", "https://data.delijn.be/stops/508503"], ["https://data.delijn.be/stops/402491", "https://data.delijn.be/stops/402493"], ["https://data.delijn.be/stops/102753", "https://data.delijn.be/stops/103701"], ["https://data.delijn.be/stops/303587", "https://data.delijn.be/stops/303588"], ["https://data.delijn.be/stops/206246", "https://data.delijn.be/stops/207247"], ["https://data.delijn.be/stops/500565", "https://data.delijn.be/stops/500567"], ["https://data.delijn.be/stops/106202", "https://data.delijn.be/stops/106204"], ["https://data.delijn.be/stops/504948", "https://data.delijn.be/stops/508696"], ["https://data.delijn.be/stops/501266", "https://data.delijn.be/stops/501357"], ["https://data.delijn.be/stops/503404", "https://data.delijn.be/stops/508534"], ["https://data.delijn.be/stops/507232", "https://data.delijn.be/stops/507699"], ["https://data.delijn.be/stops/202479", "https://data.delijn.be/stops/202481"], ["https://data.delijn.be/stops/402754", "https://data.delijn.be/stops/402756"], ["https://data.delijn.be/stops/503744", "https://data.delijn.be/stops/503746"], ["https://data.delijn.be/stops/208631", "https://data.delijn.be/stops/209061"], ["https://data.delijn.be/stops/503648", "https://data.delijn.be/stops/508652"], ["https://data.delijn.be/stops/503152", "https://data.delijn.be/stops/505919"], ["https://data.delijn.be/stops/402386", "https://data.delijn.be/stops/402393"], ["https://data.delijn.be/stops/302683", "https://data.delijn.be/stops/302697"], ["https://data.delijn.be/stops/404532", "https://data.delijn.be/stops/404533"], ["https://data.delijn.be/stops/504268", "https://data.delijn.be/stops/505829"], ["https://data.delijn.be/stops/200820", "https://data.delijn.be/stops/200866"], ["https://data.delijn.be/stops/104703", "https://data.delijn.be/stops/107354"], ["https://data.delijn.be/stops/301032", "https://data.delijn.be/stops/301114"], ["https://data.delijn.be/stops/102418", "https://data.delijn.be/stops/105661"], ["https://data.delijn.be/stops/108183", "https://data.delijn.be/stops/108184"], ["https://data.delijn.be/stops/307218", "https://data.delijn.be/stops/307282"], ["https://data.delijn.be/stops/303871", "https://data.delijn.be/stops/303872"], ["https://data.delijn.be/stops/101024", "https://data.delijn.be/stops/101989"], ["https://data.delijn.be/stops/206115", "https://data.delijn.be/stops/207117"], ["https://data.delijn.be/stops/401106", "https://data.delijn.be/stops/401156"], ["https://data.delijn.be/stops/208112", "https://data.delijn.be/stops/209112"], ["https://data.delijn.be/stops/200841", "https://data.delijn.be/stops/202793"], ["https://data.delijn.be/stops/305223", "https://data.delijn.be/stops/305224"], ["https://data.delijn.be/stops/101272", "https://data.delijn.be/stops/204488"], ["https://data.delijn.be/stops/103227", "https://data.delijn.be/stops/103597"], ["https://data.delijn.be/stops/301335", "https://data.delijn.be/stops/306121"], ["https://data.delijn.be/stops/406273", "https://data.delijn.be/stops/406277"], ["https://data.delijn.be/stops/206899", "https://data.delijn.be/stops/207739"], ["https://data.delijn.be/stops/101678", "https://data.delijn.be/stops/103133"], ["https://data.delijn.be/stops/407858", "https://data.delijn.be/stops/408140"], ["https://data.delijn.be/stops/105447", "https://data.delijn.be/stops/107310"], ["https://data.delijn.be/stops/307759", "https://data.delijn.be/stops/307761"], ["https://data.delijn.be/stops/109543", "https://data.delijn.be/stops/109700"], ["https://data.delijn.be/stops/302892", "https://data.delijn.be/stops/302930"], ["https://data.delijn.be/stops/103927", "https://data.delijn.be/stops/103929"], ["https://data.delijn.be/stops/504997", "https://data.delijn.be/stops/505789"], ["https://data.delijn.be/stops/502035", "https://data.delijn.be/stops/507040"], ["https://data.delijn.be/stops/201913", "https://data.delijn.be/stops/203510"], ["https://data.delijn.be/stops/206812", "https://data.delijn.be/stops/207268"], ["https://data.delijn.be/stops/107874", "https://data.delijn.be/stops/107875"], ["https://data.delijn.be/stops/410010", "https://data.delijn.be/stops/410011"], ["https://data.delijn.be/stops/502370", "https://data.delijn.be/stops/507368"], ["https://data.delijn.be/stops/504044", "https://data.delijn.be/stops/509044"], ["https://data.delijn.be/stops/307243", "https://data.delijn.be/stops/307249"], ["https://data.delijn.be/stops/103238", "https://data.delijn.be/stops/107858"], ["https://data.delijn.be/stops/504747", "https://data.delijn.be/stops/509716"], ["https://data.delijn.be/stops/208498", "https://data.delijn.be/stops/209668"], ["https://data.delijn.be/stops/302292", "https://data.delijn.be/stops/304951"], ["https://data.delijn.be/stops/208378", "https://data.delijn.be/stops/209335"], ["https://data.delijn.be/stops/302742", "https://data.delijn.be/stops/307045"], ["https://data.delijn.be/stops/407590", "https://data.delijn.be/stops/407658"], ["https://data.delijn.be/stops/402895", "https://data.delijn.be/stops/308117"], ["https://data.delijn.be/stops/404560", "https://data.delijn.be/stops/404561"], ["https://data.delijn.be/stops/504279", "https://data.delijn.be/stops/509279"], ["https://data.delijn.be/stops/308516", "https://data.delijn.be/stops/308689"], ["https://data.delijn.be/stops/301583", "https://data.delijn.be/stops/303419"], ["https://data.delijn.be/stops/308606", "https://data.delijn.be/stops/308608"], ["https://data.delijn.be/stops/502431", "https://data.delijn.be/stops/507613"], ["https://data.delijn.be/stops/504787", "https://data.delijn.be/stops/504791"], ["https://data.delijn.be/stops/200134", "https://data.delijn.be/stops/201134"], ["https://data.delijn.be/stops/105267", "https://data.delijn.be/stops/109957"], ["https://data.delijn.be/stops/208013", "https://data.delijn.be/stops/208018"], ["https://data.delijn.be/stops/404861", "https://data.delijn.be/stops/404867"], ["https://data.delijn.be/stops/200337", "https://data.delijn.be/stops/200967"], ["https://data.delijn.be/stops/503585", "https://data.delijn.be/stops/505413"], ["https://data.delijn.be/stops/501683", "https://data.delijn.be/stops/506683"], ["https://data.delijn.be/stops/206186", "https://data.delijn.be/stops/207955"], ["https://data.delijn.be/stops/404341", "https://data.delijn.be/stops/404648"], ["https://data.delijn.be/stops/200316", "https://data.delijn.be/stops/201316"], ["https://data.delijn.be/stops/503273", "https://data.delijn.be/stops/508038"], ["https://data.delijn.be/stops/403512", "https://data.delijn.be/stops/403531"], ["https://data.delijn.be/stops/205144", "https://data.delijn.be/stops/207048"], ["https://data.delijn.be/stops/307147", "https://data.delijn.be/stops/307894"], ["https://data.delijn.be/stops/304236", "https://data.delijn.be/stops/304515"], ["https://data.delijn.be/stops/504252", "https://data.delijn.be/stops/504365"], ["https://data.delijn.be/stops/403045", "https://data.delijn.be/stops/403090"], ["https://data.delijn.be/stops/102862", "https://data.delijn.be/stops/105485"], ["https://data.delijn.be/stops/206687", "https://data.delijn.be/stops/206920"], ["https://data.delijn.be/stops/102075", "https://data.delijn.be/stops/104785"], ["https://data.delijn.be/stops/108542", "https://data.delijn.be/stops/108543"], ["https://data.delijn.be/stops/504550", "https://data.delijn.be/stops/509550"], ["https://data.delijn.be/stops/403344", "https://data.delijn.be/stops/403483"], ["https://data.delijn.be/stops/300374", "https://data.delijn.be/stops/306156"], ["https://data.delijn.be/stops/201506", "https://data.delijn.be/stops/203359"], ["https://data.delijn.be/stops/405151", "https://data.delijn.be/stops/407790"], ["https://data.delijn.be/stops/406170", "https://data.delijn.be/stops/410226"], ["https://data.delijn.be/stops/504651", "https://data.delijn.be/stops/505787"], ["https://data.delijn.be/stops/101506", "https://data.delijn.be/stops/300103"], ["https://data.delijn.be/stops/202382", "https://data.delijn.be/stops/202383"], ["https://data.delijn.be/stops/504375", "https://data.delijn.be/stops/504751"], ["https://data.delijn.be/stops/201214", "https://data.delijn.be/stops/203547"], ["https://data.delijn.be/stops/401576", "https://data.delijn.be/stops/401578"], ["https://data.delijn.be/stops/504764", "https://data.delijn.be/stops/504765"], ["https://data.delijn.be/stops/408499", "https://data.delijn.be/stops/408504"], ["https://data.delijn.be/stops/407095", "https://data.delijn.be/stops/407301"], ["https://data.delijn.be/stops/400361", "https://data.delijn.be/stops/400397"], ["https://data.delijn.be/stops/401163", "https://data.delijn.be/stops/408187"], ["https://data.delijn.be/stops/300448", "https://data.delijn.be/stops/308052"], ["https://data.delijn.be/stops/206961", "https://data.delijn.be/stops/306727"], ["https://data.delijn.be/stops/206296", "https://data.delijn.be/stops/207159"], ["https://data.delijn.be/stops/403302", "https://data.delijn.be/stops/403535"], ["https://data.delijn.be/stops/106122", "https://data.delijn.be/stops/106123"], ["https://data.delijn.be/stops/300566", "https://data.delijn.be/stops/307865"], ["https://data.delijn.be/stops/101669", "https://data.delijn.be/stops/406843"], ["https://data.delijn.be/stops/300781", "https://data.delijn.be/stops/301018"], ["https://data.delijn.be/stops/308263", "https://data.delijn.be/stops/308268"], ["https://data.delijn.be/stops/405701", "https://data.delijn.be/stops/405711"], ["https://data.delijn.be/stops/300246", "https://data.delijn.be/stops/300247"], ["https://data.delijn.be/stops/405336", "https://data.delijn.be/stops/405370"], ["https://data.delijn.be/stops/102730", "https://data.delijn.be/stops/109516"], ["https://data.delijn.be/stops/305744", "https://data.delijn.be/stops/305749"], ["https://data.delijn.be/stops/201708", "https://data.delijn.be/stops/202379"], ["https://data.delijn.be/stops/200185", "https://data.delijn.be/stops/200187"], ["https://data.delijn.be/stops/205985", "https://data.delijn.be/stops/207830"], ["https://data.delijn.be/stops/202825", "https://data.delijn.be/stops/203825"], ["https://data.delijn.be/stops/404798", "https://data.delijn.be/stops/404834"], ["https://data.delijn.be/stops/402574", "https://data.delijn.be/stops/402616"], ["https://data.delijn.be/stops/405379", "https://data.delijn.be/stops/405383"], ["https://data.delijn.be/stops/206012", "https://data.delijn.be/stops/206388"], ["https://data.delijn.be/stops/501313", "https://data.delijn.be/stops/501328"], ["https://data.delijn.be/stops/200318", "https://data.delijn.be/stops/201996"], ["https://data.delijn.be/stops/109848", "https://data.delijn.be/stops/109851"], ["https://data.delijn.be/stops/407826", "https://data.delijn.be/stops/407982"], ["https://data.delijn.be/stops/102509", "https://data.delijn.be/stops/406456"], ["https://data.delijn.be/stops/103057", "https://data.delijn.be/stops/105066"], ["https://data.delijn.be/stops/401257", "https://data.delijn.be/stops/406943"], ["https://data.delijn.be/stops/401249", "https://data.delijn.be/stops/401259"], ["https://data.delijn.be/stops/405502", "https://data.delijn.be/stops/410167"], ["https://data.delijn.be/stops/404126", "https://data.delijn.be/stops/404173"], ["https://data.delijn.be/stops/502254", "https://data.delijn.be/stops/507237"], ["https://data.delijn.be/stops/206121", "https://data.delijn.be/stops/206476"], ["https://data.delijn.be/stops/105156", "https://data.delijn.be/stops/105157"], ["https://data.delijn.be/stops/502477", "https://data.delijn.be/stops/505808"], ["https://data.delijn.be/stops/405824", "https://data.delijn.be/stops/405825"], ["https://data.delijn.be/stops/106147", "https://data.delijn.be/stops/106148"], ["https://data.delijn.be/stops/102449", "https://data.delijn.be/stops/308483"], ["https://data.delijn.be/stops/308205", "https://data.delijn.be/stops/308226"], ["https://data.delijn.be/stops/300861", "https://data.delijn.be/stops/300862"], ["https://data.delijn.be/stops/204313", "https://data.delijn.be/stops/204709"], ["https://data.delijn.be/stops/105100", "https://data.delijn.be/stops/105660"], ["https://data.delijn.be/stops/401033", "https://data.delijn.be/stops/406589"], ["https://data.delijn.be/stops/107618", "https://data.delijn.be/stops/108096"], ["https://data.delijn.be/stops/408852", "https://data.delijn.be/stops/408856"], ["https://data.delijn.be/stops/400968", "https://data.delijn.be/stops/400969"], ["https://data.delijn.be/stops/204408", "https://data.delijn.be/stops/205407"], ["https://data.delijn.be/stops/204410", "https://data.delijn.be/stops/205021"], ["https://data.delijn.be/stops/302826", "https://data.delijn.be/stops/302835"], ["https://data.delijn.be/stops/501540", "https://data.delijn.be/stops/506457"], ["https://data.delijn.be/stops/209083", "https://data.delijn.be/stops/209699"], ["https://data.delijn.be/stops/402334", "https://data.delijn.be/stops/402335"], ["https://data.delijn.be/stops/301696", "https://data.delijn.be/stops/308430"], ["https://data.delijn.be/stops/101005", "https://data.delijn.be/stops/103625"], ["https://data.delijn.be/stops/102705", "https://data.delijn.be/stops/104485"], ["https://data.delijn.be/stops/306139", "https://data.delijn.be/stops/308766"], ["https://data.delijn.be/stops/404286", "https://data.delijn.be/stops/407273"], ["https://data.delijn.be/stops/304302", "https://data.delijn.be/stops/304303"], ["https://data.delijn.be/stops/106885", "https://data.delijn.be/stops/106886"], ["https://data.delijn.be/stops/306612", "https://data.delijn.be/stops/306613"], ["https://data.delijn.be/stops/506103", "https://data.delijn.be/stops/506109"], ["https://data.delijn.be/stops/407800", "https://data.delijn.be/stops/407808"], ["https://data.delijn.be/stops/204332", "https://data.delijn.be/stops/205819"], ["https://data.delijn.be/stops/302808", "https://data.delijn.be/stops/305510"], ["https://data.delijn.be/stops/306697", "https://data.delijn.be/stops/306698"], ["https://data.delijn.be/stops/208817", "https://data.delijn.be/stops/209087"], ["https://data.delijn.be/stops/201064", "https://data.delijn.be/stops/201271"], ["https://data.delijn.be/stops/403511", "https://data.delijn.be/stops/408452"], ["https://data.delijn.be/stops/206813", "https://data.delijn.be/stops/207198"], ["https://data.delijn.be/stops/301563", "https://data.delijn.be/stops/301594"], ["https://data.delijn.be/stops/104498", "https://data.delijn.be/stops/107487"], ["https://data.delijn.be/stops/301069", "https://data.delijn.be/stops/301071"], ["https://data.delijn.be/stops/102564", "https://data.delijn.be/stops/400390"], ["https://data.delijn.be/stops/407400", "https://data.delijn.be/stops/407427"], ["https://data.delijn.be/stops/405326", "https://data.delijn.be/stops/405370"], ["https://data.delijn.be/stops/509458", "https://data.delijn.be/stops/509461"], ["https://data.delijn.be/stops/503078", "https://data.delijn.be/stops/508077"], ["https://data.delijn.be/stops/305692", "https://data.delijn.be/stops/305698"], ["https://data.delijn.be/stops/406565", "https://data.delijn.be/stops/407209"], ["https://data.delijn.be/stops/305050", "https://data.delijn.be/stops/306959"], ["https://data.delijn.be/stops/307910", "https://data.delijn.be/stops/308176"], ["https://data.delijn.be/stops/406041", "https://data.delijn.be/stops/406050"], ["https://data.delijn.be/stops/505339", "https://data.delijn.be/stops/508004"], ["https://data.delijn.be/stops/304965", "https://data.delijn.be/stops/304968"], ["https://data.delijn.be/stops/400645", "https://data.delijn.be/stops/400948"], ["https://data.delijn.be/stops/202256", "https://data.delijn.be/stops/203256"], ["https://data.delijn.be/stops/504640", "https://data.delijn.be/stops/505107"], ["https://data.delijn.be/stops/305582", "https://data.delijn.be/stops/305583"], ["https://data.delijn.be/stops/201832", "https://data.delijn.be/stops/209261"], ["https://data.delijn.be/stops/505562", "https://data.delijn.be/stops/508639"], ["https://data.delijn.be/stops/307991", "https://data.delijn.be/stops/307996"], ["https://data.delijn.be/stops/301838", "https://data.delijn.be/stops/301839"], ["https://data.delijn.be/stops/200232", "https://data.delijn.be/stops/201518"], ["https://data.delijn.be/stops/202100", "https://data.delijn.be/stops/202101"], ["https://data.delijn.be/stops/402243", "https://data.delijn.be/stops/402405"], ["https://data.delijn.be/stops/503327", "https://data.delijn.be/stops/505081"], ["https://data.delijn.be/stops/204481", "https://data.delijn.be/stops/205734"], ["https://data.delijn.be/stops/101705", "https://data.delijn.be/stops/102163"], ["https://data.delijn.be/stops/102880", "https://data.delijn.be/stops/103855"], ["https://data.delijn.be/stops/305451", "https://data.delijn.be/stops/308965"], ["https://data.delijn.be/stops/407712", "https://data.delijn.be/stops/409521"], ["https://data.delijn.be/stops/306905", "https://data.delijn.be/stops/306908"], ["https://data.delijn.be/stops/104667", "https://data.delijn.be/stops/104884"], ["https://data.delijn.be/stops/307555", "https://data.delijn.be/stops/307676"], ["https://data.delijn.be/stops/105199", "https://data.delijn.be/stops/108804"], ["https://data.delijn.be/stops/106631", "https://data.delijn.be/stops/106632"], ["https://data.delijn.be/stops/307619", "https://data.delijn.be/stops/307620"], ["https://data.delijn.be/stops/303347", "https://data.delijn.be/stops/305059"], ["https://data.delijn.be/stops/200802", "https://data.delijn.be/stops/202064"], ["https://data.delijn.be/stops/404399", "https://data.delijn.be/stops/405568"], ["https://data.delijn.be/stops/402734", "https://data.delijn.be/stops/402735"], ["https://data.delijn.be/stops/204111", "https://data.delijn.be/stops/205684"], ["https://data.delijn.be/stops/307387", "https://data.delijn.be/stops/307388"], ["https://data.delijn.be/stops/106420", "https://data.delijn.be/stops/106421"], ["https://data.delijn.be/stops/305020", "https://data.delijn.be/stops/305023"], ["https://data.delijn.be/stops/203295", "https://data.delijn.be/stops/211298"], ["https://data.delijn.be/stops/308787", "https://data.delijn.be/stops/308788"], ["https://data.delijn.be/stops/404724", "https://data.delijn.be/stops/404727"], ["https://data.delijn.be/stops/504277", "https://data.delijn.be/stops/508128"], ["https://data.delijn.be/stops/401107", "https://data.delijn.be/stops/401158"], ["https://data.delijn.be/stops/410115", "https://data.delijn.be/stops/410326"], ["https://data.delijn.be/stops/300667", "https://data.delijn.be/stops/300674"], ["https://data.delijn.be/stops/305168", "https://data.delijn.be/stops/305189"], ["https://data.delijn.be/stops/107309", "https://data.delijn.be/stops/109733"], ["https://data.delijn.be/stops/305967", "https://data.delijn.be/stops/308138"], ["https://data.delijn.be/stops/505799", "https://data.delijn.be/stops/509279"], ["https://data.delijn.be/stops/404476", "https://data.delijn.be/stops/410156"], ["https://data.delijn.be/stops/402703", "https://data.delijn.be/stops/405997"], ["https://data.delijn.be/stops/208557", "https://data.delijn.be/stops/209558"], ["https://data.delijn.be/stops/108414", "https://data.delijn.be/stops/108416"], ["https://data.delijn.be/stops/308467", "https://data.delijn.be/stops/308469"], ["https://data.delijn.be/stops/206673", "https://data.delijn.be/stops/208168"], ["https://data.delijn.be/stops/407434", "https://data.delijn.be/stops/407565"], ["https://data.delijn.be/stops/407152", "https://data.delijn.be/stops/409515"], ["https://data.delijn.be/stops/300694", "https://data.delijn.be/stops/306937"], ["https://data.delijn.be/stops/201897", "https://data.delijn.be/stops/203146"], ["https://data.delijn.be/stops/300422", "https://data.delijn.be/stops/300436"], ["https://data.delijn.be/stops/206137", "https://data.delijn.be/stops/206138"], ["https://data.delijn.be/stops/501675", "https://data.delijn.be/stops/505741"], ["https://data.delijn.be/stops/506226", "https://data.delijn.be/stops/506418"], ["https://data.delijn.be/stops/103751", "https://data.delijn.be/stops/105100"], ["https://data.delijn.be/stops/506637", "https://data.delijn.be/stops/509836"], ["https://data.delijn.be/stops/303242", "https://data.delijn.be/stops/307981"], ["https://data.delijn.be/stops/304334", "https://data.delijn.be/stops/304337"], ["https://data.delijn.be/stops/407025", "https://data.delijn.be/stops/408429"], ["https://data.delijn.be/stops/206828", "https://data.delijn.be/stops/207993"], ["https://data.delijn.be/stops/507943", "https://data.delijn.be/stops/508855"], ["https://data.delijn.be/stops/402024", "https://data.delijn.be/stops/402026"], ["https://data.delijn.be/stops/303058", "https://data.delijn.be/stops/303059"], ["https://data.delijn.be/stops/401672", "https://data.delijn.be/stops/308270"], ["https://data.delijn.be/stops/302533", "https://data.delijn.be/stops/302534"], ["https://data.delijn.be/stops/507380", "https://data.delijn.be/stops/507404"], ["https://data.delijn.be/stops/206871", "https://data.delijn.be/stops/209364"], ["https://data.delijn.be/stops/209195", "https://data.delijn.be/stops/209408"], ["https://data.delijn.be/stops/405607", "https://data.delijn.be/stops/406492"], ["https://data.delijn.be/stops/406072", "https://data.delijn.be/stops/406073"], ["https://data.delijn.be/stops/505804", "https://data.delijn.be/stops/510029"], ["https://data.delijn.be/stops/401900", "https://data.delijn.be/stops/402011"], ["https://data.delijn.be/stops/406150", "https://data.delijn.be/stops/406270"], ["https://data.delijn.be/stops/301859", "https://data.delijn.be/stops/301873"], ["https://data.delijn.be/stops/101494", "https://data.delijn.be/stops/102253"], ["https://data.delijn.be/stops/405763", "https://data.delijn.be/stops/409292"], ["https://data.delijn.be/stops/301045", "https://data.delijn.be/stops/304809"], ["https://data.delijn.be/stops/403335", "https://data.delijn.be/stops/407040"], ["https://data.delijn.be/stops/502768", "https://data.delijn.be/stops/507314"], ["https://data.delijn.be/stops/206270", "https://data.delijn.be/stops/207271"], ["https://data.delijn.be/stops/502006", "https://data.delijn.be/stops/502010"], ["https://data.delijn.be/stops/410334", "https://data.delijn.be/stops/410335"], ["https://data.delijn.be/stops/201455", "https://data.delijn.be/stops/201456"], ["https://data.delijn.be/stops/405870", "https://data.delijn.be/stops/407361"], ["https://data.delijn.be/stops/304077", "https://data.delijn.be/stops/304097"], ["https://data.delijn.be/stops/206695", "https://data.delijn.be/stops/207955"], ["https://data.delijn.be/stops/303268", "https://data.delijn.be/stops/303269"], ["https://data.delijn.be/stops/503412", "https://data.delijn.be/stops/508427"], ["https://data.delijn.be/stops/304561", "https://data.delijn.be/stops/304586"], ["https://data.delijn.be/stops/308164", "https://data.delijn.be/stops/308229"], ["https://data.delijn.be/stops/304545", "https://data.delijn.be/stops/304698"], ["https://data.delijn.be/stops/206086", "https://data.delijn.be/stops/206087"], ["https://data.delijn.be/stops/101481", "https://data.delijn.be/stops/101482"], ["https://data.delijn.be/stops/307628", "https://data.delijn.be/stops/308272"], ["https://data.delijn.be/stops/408255", "https://data.delijn.be/stops/409825"], ["https://data.delijn.be/stops/408939", "https://data.delijn.be/stops/408958"], ["https://data.delijn.be/stops/302699", "https://data.delijn.be/stops/308062"], ["https://data.delijn.be/stops/206131", "https://data.delijn.be/stops/207137"], ["https://data.delijn.be/stops/403395", "https://data.delijn.be/stops/410118"], ["https://data.delijn.be/stops/302969", "https://data.delijn.be/stops/302971"], ["https://data.delijn.be/stops/405473", "https://data.delijn.be/stops/406623"], ["https://data.delijn.be/stops/201530", "https://data.delijn.be/stops/211528"], ["https://data.delijn.be/stops/203961", "https://data.delijn.be/stops/207409"], ["https://data.delijn.be/stops/107481", "https://data.delijn.be/stops/107486"], ["https://data.delijn.be/stops/201962", "https://data.delijn.be/stops/202195"], ["https://data.delijn.be/stops/401484", "https://data.delijn.be/stops/403887"], ["https://data.delijn.be/stops/106267", "https://data.delijn.be/stops/106269"], ["https://data.delijn.be/stops/201739", "https://data.delijn.be/stops/202543"], ["https://data.delijn.be/stops/101417", "https://data.delijn.be/stops/107307"], ["https://data.delijn.be/stops/303042", "https://data.delijn.be/stops/303104"], ["https://data.delijn.be/stops/202749", "https://data.delijn.be/stops/202889"], ["https://data.delijn.be/stops/108187", "https://data.delijn.be/stops/108328"], ["https://data.delijn.be/stops/109066", "https://data.delijn.be/stops/306859"], ["https://data.delijn.be/stops/206358", "https://data.delijn.be/stops/207715"], ["https://data.delijn.be/stops/505636", "https://data.delijn.be/stops/505778"], ["https://data.delijn.be/stops/302328", "https://data.delijn.be/stops/302329"], ["https://data.delijn.be/stops/403038", "https://data.delijn.be/stops/403863"], ["https://data.delijn.be/stops/101290", "https://data.delijn.be/stops/101880"], ["https://data.delijn.be/stops/105461", "https://data.delijn.be/stops/109895"], ["https://data.delijn.be/stops/101357", "https://data.delijn.be/stops/101359"], ["https://data.delijn.be/stops/409304", "https://data.delijn.be/stops/409330"], ["https://data.delijn.be/stops/505093", "https://data.delijn.be/stops/505138"], ["https://data.delijn.be/stops/400967", "https://data.delijn.be/stops/401250"], ["https://data.delijn.be/stops/407615", "https://data.delijn.be/stops/407619"], ["https://data.delijn.be/stops/304001", "https://data.delijn.be/stops/308645"], ["https://data.delijn.be/stops/103944", "https://data.delijn.be/stops/107329"], ["https://data.delijn.be/stops/402807", "https://data.delijn.be/stops/409041"], ["https://data.delijn.be/stops/303642", "https://data.delijn.be/stops/305602"], ["https://data.delijn.be/stops/201917", "https://data.delijn.be/stops/201920"], ["https://data.delijn.be/stops/209305", "https://data.delijn.be/stops/209306"], ["https://data.delijn.be/stops/106756", "https://data.delijn.be/stops/107469"], ["https://data.delijn.be/stops/105584", "https://data.delijn.be/stops/105589"], ["https://data.delijn.be/stops/504209", "https://data.delijn.be/stops/504868"], ["https://data.delijn.be/stops/502130", "https://data.delijn.be/stops/502132"], ["https://data.delijn.be/stops/202272", "https://data.delijn.be/stops/203277"], ["https://data.delijn.be/stops/202896", "https://data.delijn.be/stops/203896"], ["https://data.delijn.be/stops/104742", "https://data.delijn.be/stops/104747"], ["https://data.delijn.be/stops/406155", "https://data.delijn.be/stops/406225"], ["https://data.delijn.be/stops/408568", "https://data.delijn.be/stops/408572"], ["https://data.delijn.be/stops/101938", "https://data.delijn.be/stops/108274"], ["https://data.delijn.be/stops/207762", "https://data.delijn.be/stops/209192"], ["https://data.delijn.be/stops/104646", "https://data.delijn.be/stops/104651"], ["https://data.delijn.be/stops/501209", "https://data.delijn.be/stops/501210"], ["https://data.delijn.be/stops/403488", "https://data.delijn.be/stops/405632"], ["https://data.delijn.be/stops/406090", "https://data.delijn.be/stops/410148"], ["https://data.delijn.be/stops/201289", "https://data.delijn.be/stops/208829"], ["https://data.delijn.be/stops/408529", "https://data.delijn.be/stops/408561"], ["https://data.delijn.be/stops/400611", "https://data.delijn.be/stops/407519"], ["https://data.delijn.be/stops/108373", "https://data.delijn.be/stops/108374"], ["https://data.delijn.be/stops/408229", "https://data.delijn.be/stops/408291"], ["https://data.delijn.be/stops/406600", "https://data.delijn.be/stops/406601"], ["https://data.delijn.be/stops/300048", "https://data.delijn.be/stops/306790"], ["https://data.delijn.be/stops/109316", "https://data.delijn.be/stops/109354"], ["https://data.delijn.be/stops/401365", "https://data.delijn.be/stops/404773"], ["https://data.delijn.be/stops/503590", "https://data.delijn.be/stops/504884"], ["https://data.delijn.be/stops/303695", "https://data.delijn.be/stops/305390"], ["https://data.delijn.be/stops/204489", "https://data.delijn.be/stops/204823"], ["https://data.delijn.be/stops/102170", "https://data.delijn.be/stops/104225"], ["https://data.delijn.be/stops/201771", "https://data.delijn.be/stops/209283"], ["https://data.delijn.be/stops/303456", "https://data.delijn.be/stops/304226"], ["https://data.delijn.be/stops/300288", "https://data.delijn.be/stops/307477"], ["https://data.delijn.be/stops/407822", "https://data.delijn.be/stops/407917"], ["https://data.delijn.be/stops/104161", "https://data.delijn.be/stops/104365"], ["https://data.delijn.be/stops/306910", "https://data.delijn.be/stops/306912"], ["https://data.delijn.be/stops/208023", "https://data.delijn.be/stops/209013"], ["https://data.delijn.be/stops/301104", "https://data.delijn.be/stops/302954"], ["https://data.delijn.be/stops/401026", "https://data.delijn.be/stops/401036"], ["https://data.delijn.be/stops/304263", "https://data.delijn.be/stops/304264"], ["https://data.delijn.be/stops/405705", "https://data.delijn.be/stops/305145"], ["https://data.delijn.be/stops/503333", "https://data.delijn.be/stops/508333"], ["https://data.delijn.be/stops/503610", "https://data.delijn.be/stops/508615"], ["https://data.delijn.be/stops/502182", "https://data.delijn.be/stops/505555"], ["https://data.delijn.be/stops/404505", "https://data.delijn.be/stops/404570"], ["https://data.delijn.be/stops/304832", "https://data.delijn.be/stops/304887"], ["https://data.delijn.be/stops/509165", "https://data.delijn.be/stops/509175"], ["https://data.delijn.be/stops/206263", "https://data.delijn.be/stops/206264"], ["https://data.delijn.be/stops/300032", "https://data.delijn.be/stops/300033"], ["https://data.delijn.be/stops/304135", "https://data.delijn.be/stops/304496"], ["https://data.delijn.be/stops/101600", "https://data.delijn.be/stops/107065"], ["https://data.delijn.be/stops/303629", "https://data.delijn.be/stops/304017"], ["https://data.delijn.be/stops/300316", "https://data.delijn.be/stops/306112"], ["https://data.delijn.be/stops/204421", "https://data.delijn.be/stops/205766"], ["https://data.delijn.be/stops/105166", "https://data.delijn.be/stops/108761"], ["https://data.delijn.be/stops/102816", "https://data.delijn.be/stops/103905"], ["https://data.delijn.be/stops/507425", "https://data.delijn.be/stops/507704"], ["https://data.delijn.be/stops/404691", "https://data.delijn.be/stops/406948"], ["https://data.delijn.be/stops/200959", "https://data.delijn.be/stops/202518"], ["https://data.delijn.be/stops/201005", "https://data.delijn.be/stops/203517"], ["https://data.delijn.be/stops/503316", "https://data.delijn.be/stops/503964"], ["https://data.delijn.be/stops/210020", "https://data.delijn.be/stops/211020"], ["https://data.delijn.be/stops/305512", "https://data.delijn.be/stops/305513"], ["https://data.delijn.be/stops/404437", "https://data.delijn.be/stops/404534"], ["https://data.delijn.be/stops/407708", "https://data.delijn.be/stops/407709"], ["https://data.delijn.be/stops/301473", "https://data.delijn.be/stops/305654"], ["https://data.delijn.be/stops/108630", "https://data.delijn.be/stops/109774"], ["https://data.delijn.be/stops/300211", "https://data.delijn.be/stops/300223"], ["https://data.delijn.be/stops/505384", "https://data.delijn.be/stops/509822"], ["https://data.delijn.be/stops/502009", "https://data.delijn.be/stops/505586"], ["https://data.delijn.be/stops/200060", "https://data.delijn.be/stops/211058"], ["https://data.delijn.be/stops/402546", "https://data.delijn.be/stops/402549"], ["https://data.delijn.be/stops/302808", "https://data.delijn.be/stops/307836"], ["https://data.delijn.be/stops/303034", "https://data.delijn.be/stops/306279"], ["https://data.delijn.be/stops/101007", "https://data.delijn.be/stops/108625"], ["https://data.delijn.be/stops/201719", "https://data.delijn.be/stops/205995"], ["https://data.delijn.be/stops/504554", "https://data.delijn.be/stops/505202"], ["https://data.delijn.be/stops/408748", "https://data.delijn.be/stops/408749"], ["https://data.delijn.be/stops/306720", "https://data.delijn.be/stops/306722"], ["https://data.delijn.be/stops/300170", "https://data.delijn.be/stops/301188"], ["https://data.delijn.be/stops/200631", "https://data.delijn.be/stops/201983"], ["https://data.delijn.be/stops/202982", "https://data.delijn.be/stops/203982"], ["https://data.delijn.be/stops/206251", "https://data.delijn.be/stops/206252"], ["https://data.delijn.be/stops/207134", "https://data.delijn.be/stops/207511"], ["https://data.delijn.be/stops/504196", "https://data.delijn.be/stops/509529"], ["https://data.delijn.be/stops/305892", "https://data.delijn.be/stops/306382"], ["https://data.delijn.be/stops/204058", "https://data.delijn.be/stops/205058"], ["https://data.delijn.be/stops/208685", "https://data.delijn.be/stops/208687"], ["https://data.delijn.be/stops/101429", "https://data.delijn.be/stops/107297"], ["https://data.delijn.be/stops/103014", "https://data.delijn.be/stops/108312"], ["https://data.delijn.be/stops/401507", "https://data.delijn.be/stops/404333"], ["https://data.delijn.be/stops/106981", "https://data.delijn.be/stops/109723"], ["https://data.delijn.be/stops/206723", "https://data.delijn.be/stops/206986"], ["https://data.delijn.be/stops/303852", "https://data.delijn.be/stops/303854"], ["https://data.delijn.be/stops/505225", "https://data.delijn.be/stops/507337"], ["https://data.delijn.be/stops/201607", "https://data.delijn.be/stops/201900"], ["https://data.delijn.be/stops/206943", "https://data.delijn.be/stops/209612"], ["https://data.delijn.be/stops/504116", "https://data.delijn.be/stops/504643"], ["https://data.delijn.be/stops/102610", "https://data.delijn.be/stops/105105"], ["https://data.delijn.be/stops/402458", "https://data.delijn.be/stops/402459"], ["https://data.delijn.be/stops/408086", "https://data.delijn.be/stops/408087"], ["https://data.delijn.be/stops/503841", "https://data.delijn.be/stops/508841"], ["https://data.delijn.be/stops/207832", "https://data.delijn.be/stops/207965"], ["https://data.delijn.be/stops/405490", "https://data.delijn.be/stops/409332"], ["https://data.delijn.be/stops/502272", "https://data.delijn.be/stops/502665"], ["https://data.delijn.be/stops/201927", "https://data.delijn.be/stops/207929"], ["https://data.delijn.be/stops/502764", "https://data.delijn.be/stops/507308"], ["https://data.delijn.be/stops/400844", "https://data.delijn.be/stops/404302"], ["https://data.delijn.be/stops/109085", "https://data.delijn.be/stops/109184"], ["https://data.delijn.be/stops/107343", "https://data.delijn.be/stops/108168"], ["https://data.delijn.be/stops/103618", "https://data.delijn.be/stops/106198"], ["https://data.delijn.be/stops/501541", "https://data.delijn.be/stops/506459"], ["https://data.delijn.be/stops/201380", "https://data.delijn.be/stops/205931"], ["https://data.delijn.be/stops/501507", "https://data.delijn.be/stops/505824"], ["https://data.delijn.be/stops/504825", "https://data.delijn.be/stops/505997"], ["https://data.delijn.be/stops/207667", "https://data.delijn.be/stops/209045"], ["https://data.delijn.be/stops/301222", "https://data.delijn.be/stops/301224"], ["https://data.delijn.be/stops/403785", "https://data.delijn.be/stops/403788"], ["https://data.delijn.be/stops/106694", "https://data.delijn.be/stops/106696"], ["https://data.delijn.be/stops/504400", "https://data.delijn.be/stops/509401"], ["https://data.delijn.be/stops/201901", "https://data.delijn.be/stops/203516"], ["https://data.delijn.be/stops/402434", "https://data.delijn.be/stops/404498"], ["https://data.delijn.be/stops/302196", "https://data.delijn.be/stops/302205"], ["https://data.delijn.be/stops/508605", "https://data.delijn.be/stops/508614"], ["https://data.delijn.be/stops/300040", "https://data.delijn.be/stops/306791"], ["https://data.delijn.be/stops/409024", "https://data.delijn.be/stops/409026"], ["https://data.delijn.be/stops/102592", "https://data.delijn.be/stops/108571"], ["https://data.delijn.be/stops/102869", "https://data.delijn.be/stops/102950"], ["https://data.delijn.be/stops/202294", "https://data.delijn.be/stops/203334"], ["https://data.delijn.be/stops/404278", "https://data.delijn.be/stops/404281"], ["https://data.delijn.be/stops/305452", "https://data.delijn.be/stops/307264"], ["https://data.delijn.be/stops/403691", "https://data.delijn.be/stops/409274"], ["https://data.delijn.be/stops/504030", "https://data.delijn.be/stops/504748"], ["https://data.delijn.be/stops/400171", "https://data.delijn.be/stops/400926"], ["https://data.delijn.be/stops/206936", "https://data.delijn.be/stops/209951"], ["https://data.delijn.be/stops/204102", "https://data.delijn.be/stops/204106"], ["https://data.delijn.be/stops/404170", "https://data.delijn.be/stops/404183"], ["https://data.delijn.be/stops/503151", "https://data.delijn.be/stops/508151"], ["https://data.delijn.be/stops/101827", "https://data.delijn.be/stops/103139"], ["https://data.delijn.be/stops/108529", "https://data.delijn.be/stops/108533"], ["https://data.delijn.be/stops/501483", "https://data.delijn.be/stops/506094"], ["https://data.delijn.be/stops/406127", "https://data.delijn.be/stops/406230"], ["https://data.delijn.be/stops/400303", "https://data.delijn.be/stops/400344"], ["https://data.delijn.be/stops/400457", "https://data.delijn.be/stops/407751"], ["https://data.delijn.be/stops/201358", "https://data.delijn.be/stops/208662"], ["https://data.delijn.be/stops/106478", "https://data.delijn.be/stops/109201"], ["https://data.delijn.be/stops/407702", "https://data.delijn.be/stops/409772"], ["https://data.delijn.be/stops/403797", "https://data.delijn.be/stops/403800"], ["https://data.delijn.be/stops/206308", "https://data.delijn.be/stops/207392"], ["https://data.delijn.be/stops/409232", "https://data.delijn.be/stops/409246"], ["https://data.delijn.be/stops/502705", "https://data.delijn.be/stops/507529"], ["https://data.delijn.be/stops/502051", "https://data.delijn.be/stops/502391"], ["https://data.delijn.be/stops/307027", "https://data.delijn.be/stops/307571"], ["https://data.delijn.be/stops/504492", "https://data.delijn.be/stops/504503"], ["https://data.delijn.be/stops/208496", "https://data.delijn.be/stops/209263"], ["https://data.delijn.be/stops/206653", "https://data.delijn.be/stops/206728"], ["https://data.delijn.be/stops/202219", "https://data.delijn.be/stops/205795"], ["https://data.delijn.be/stops/108051", "https://data.delijn.be/stops/108274"], ["https://data.delijn.be/stops/507003", "https://data.delijn.be/stops/507007"], ["https://data.delijn.be/stops/202745", "https://data.delijn.be/stops/202746"], ["https://data.delijn.be/stops/504105", "https://data.delijn.be/stops/504701"], ["https://data.delijn.be/stops/102491", "https://data.delijn.be/stops/102494"], ["https://data.delijn.be/stops/402536", "https://data.delijn.be/stops/402537"], ["https://data.delijn.be/stops/301263", "https://data.delijn.be/stops/301264"], ["https://data.delijn.be/stops/101718", "https://data.delijn.be/stops/107807"], ["https://data.delijn.be/stops/409099", "https://data.delijn.be/stops/409102"], ["https://data.delijn.be/stops/206434", "https://data.delijn.be/stops/206435"], ["https://data.delijn.be/stops/205099", "https://data.delijn.be/stops/205692"], ["https://data.delijn.be/stops/503482", "https://data.delijn.be/stops/505719"], ["https://data.delijn.be/stops/408604", "https://data.delijn.be/stops/408700"], ["https://data.delijn.be/stops/107902", "https://data.delijn.be/stops/109445"], ["https://data.delijn.be/stops/103206", "https://data.delijn.be/stops/103333"], ["https://data.delijn.be/stops/101131", "https://data.delijn.be/stops/105999"], ["https://data.delijn.be/stops/204541", "https://data.delijn.be/stops/205654"], ["https://data.delijn.be/stops/502603", "https://data.delijn.be/stops/507312"], ["https://data.delijn.be/stops/403135", "https://data.delijn.be/stops/403147"], ["https://data.delijn.be/stops/102550", "https://data.delijn.be/stops/405015"], ["https://data.delijn.be/stops/404194", "https://data.delijn.be/stops/404195"], ["https://data.delijn.be/stops/406288", "https://data.delijn.be/stops/406290"], ["https://data.delijn.be/stops/101929", "https://data.delijn.be/stops/109764"], ["https://data.delijn.be/stops/501383", "https://data.delijn.be/stops/506380"], ["https://data.delijn.be/stops/102592", "https://data.delijn.be/stops/102897"], ["https://data.delijn.be/stops/202155", "https://data.delijn.be/stops/203643"], ["https://data.delijn.be/stops/502814", "https://data.delijn.be/stops/508163"], ["https://data.delijn.be/stops/208433", "https://data.delijn.be/stops/219021"], ["https://data.delijn.be/stops/407079", "https://data.delijn.be/stops/407084"], ["https://data.delijn.be/stops/105432", "https://data.delijn.be/stops/105436"], ["https://data.delijn.be/stops/303708", "https://data.delijn.be/stops/303733"], ["https://data.delijn.be/stops/503022", "https://data.delijn.be/stops/508818"], ["https://data.delijn.be/stops/504551", "https://data.delijn.be/stops/505991"], ["https://data.delijn.be/stops/404206", "https://data.delijn.be/stops/404209"], ["https://data.delijn.be/stops/407362", "https://data.delijn.be/stops/410184"], ["https://data.delijn.be/stops/305078", "https://data.delijn.be/stops/305079"], ["https://data.delijn.be/stops/302706", "https://data.delijn.be/stops/305636"], ["https://data.delijn.be/stops/208064", "https://data.delijn.be/stops/209065"], ["https://data.delijn.be/stops/104651", "https://data.delijn.be/stops/108046"], ["https://data.delijn.be/stops/503655", "https://data.delijn.be/stops/503953"], ["https://data.delijn.be/stops/501283", "https://data.delijn.be/stops/501312"], ["https://data.delijn.be/stops/503166", "https://data.delijn.be/stops/503169"], ["https://data.delijn.be/stops/203615", "https://data.delijn.be/stops/203616"], ["https://data.delijn.be/stops/504776", "https://data.delijn.be/stops/509287"], ["https://data.delijn.be/stops/504689", "https://data.delijn.be/stops/509270"], ["https://data.delijn.be/stops/510003", "https://data.delijn.be/stops/510007"], ["https://data.delijn.be/stops/505704", "https://data.delijn.be/stops/507247"], ["https://data.delijn.be/stops/105397", "https://data.delijn.be/stops/106838"], ["https://data.delijn.be/stops/204323", "https://data.delijn.be/stops/205099"], ["https://data.delijn.be/stops/503811", "https://data.delijn.be/stops/505538"], ["https://data.delijn.be/stops/401528", "https://data.delijn.be/stops/409504"], ["https://data.delijn.be/stops/305215", "https://data.delijn.be/stops/306967"], ["https://data.delijn.be/stops/404977", "https://data.delijn.be/stops/404978"], ["https://data.delijn.be/stops/200728", "https://data.delijn.be/stops/200736"], ["https://data.delijn.be/stops/501386", "https://data.delijn.be/stops/501502"], ["https://data.delijn.be/stops/302260", "https://data.delijn.be/stops/304349"], ["https://data.delijn.be/stops/300703", "https://data.delijn.be/stops/300704"], ["https://data.delijn.be/stops/108066", "https://data.delijn.be/stops/108868"], ["https://data.delijn.be/stops/506125", "https://data.delijn.be/stops/506230"], ["https://data.delijn.be/stops/102397", "https://data.delijn.be/stops/103660"], ["https://data.delijn.be/stops/208144", "https://data.delijn.be/stops/209145"], ["https://data.delijn.be/stops/505130", "https://data.delijn.be/stops/509749"], ["https://data.delijn.be/stops/303481", "https://data.delijn.be/stops/303504"], ["https://data.delijn.be/stops/107274", "https://data.delijn.be/stops/107278"], ["https://data.delijn.be/stops/200159", "https://data.delijn.be/stops/201595"], ["https://data.delijn.be/stops/107716", "https://data.delijn.be/stops/107734"], ["https://data.delijn.be/stops/503164", "https://data.delijn.be/stops/508796"], ["https://data.delijn.be/stops/200766", "https://data.delijn.be/stops/209375"], ["https://data.delijn.be/stops/206180", "https://data.delijn.be/stops/308566"], ["https://data.delijn.be/stops/405146", "https://data.delijn.be/stops/405224"], ["https://data.delijn.be/stops/200668", "https://data.delijn.be/stops/503844"], ["https://data.delijn.be/stops/202583", "https://data.delijn.be/stops/202607"], ["https://data.delijn.be/stops/106770", "https://data.delijn.be/stops/106806"], ["https://data.delijn.be/stops/206958", "https://data.delijn.be/stops/207956"], ["https://data.delijn.be/stops/206087", "https://data.delijn.be/stops/207086"], ["https://data.delijn.be/stops/401844", "https://data.delijn.be/stops/401845"], ["https://data.delijn.be/stops/204164", "https://data.delijn.be/stops/207271"], ["https://data.delijn.be/stops/404198", "https://data.delijn.be/stops/404199"], ["https://data.delijn.be/stops/303528", "https://data.delijn.be/stops/303529"], ["https://data.delijn.be/stops/302259", "https://data.delijn.be/stops/306370"], ["https://data.delijn.be/stops/106999", "https://data.delijn.be/stops/107002"], ["https://data.delijn.be/stops/210012", "https://data.delijn.be/stops/210013"], ["https://data.delijn.be/stops/106023", "https://data.delijn.be/stops/109560"], ["https://data.delijn.be/stops/404999", "https://data.delijn.be/stops/408075"], ["https://data.delijn.be/stops/103643", "https://data.delijn.be/stops/103644"], ["https://data.delijn.be/stops/202867", "https://data.delijn.be/stops/203867"], ["https://data.delijn.be/stops/401398", "https://data.delijn.be/stops/301076"], ["https://data.delijn.be/stops/506183", "https://data.delijn.be/stops/509499"], ["https://data.delijn.be/stops/210086", "https://data.delijn.be/stops/211118"], ["https://data.delijn.be/stops/301834", "https://data.delijn.be/stops/305911"], ["https://data.delijn.be/stops/406306", "https://data.delijn.be/stops/406310"], ["https://data.delijn.be/stops/402121", "https://data.delijn.be/stops/402387"], ["https://data.delijn.be/stops/400016", "https://data.delijn.be/stops/400020"], ["https://data.delijn.be/stops/306183", "https://data.delijn.be/stops/306185"], ["https://data.delijn.be/stops/301930", "https://data.delijn.be/stops/304530"], ["https://data.delijn.be/stops/302654", "https://data.delijn.be/stops/302660"], ["https://data.delijn.be/stops/503327", "https://data.delijn.be/stops/508327"], ["https://data.delijn.be/stops/409194", "https://data.delijn.be/stops/409833"], ["https://data.delijn.be/stops/503691", "https://data.delijn.be/stops/503995"], ["https://data.delijn.be/stops/502447", "https://data.delijn.be/stops/502660"], ["https://data.delijn.be/stops/301217", "https://data.delijn.be/stops/306715"], ["https://data.delijn.be/stops/103587", "https://data.delijn.be/stops/105587"], ["https://data.delijn.be/stops/303561", "https://data.delijn.be/stops/308609"], ["https://data.delijn.be/stops/207513", "https://data.delijn.be/stops/207598"], ["https://data.delijn.be/stops/102887", "https://data.delijn.be/stops/102892"], ["https://data.delijn.be/stops/406301", "https://data.delijn.be/stops/406316"], ["https://data.delijn.be/stops/102652", "https://data.delijn.be/stops/104578"], ["https://data.delijn.be/stops/400097", "https://data.delijn.be/stops/409158"], ["https://data.delijn.be/stops/305522", "https://data.delijn.be/stops/308553"], ["https://data.delijn.be/stops/506449", "https://data.delijn.be/stops/506452"], ["https://data.delijn.be/stops/502296", "https://data.delijn.be/stops/505730"], ["https://data.delijn.be/stops/104802", "https://data.delijn.be/stops/109453"], ["https://data.delijn.be/stops/405658", "https://data.delijn.be/stops/405659"], ["https://data.delijn.be/stops/206633", "https://data.delijn.be/stops/207635"], ["https://data.delijn.be/stops/207170", "https://data.delijn.be/stops/303838"], ["https://data.delijn.be/stops/302533", "https://data.delijn.be/stops/305839"], ["https://data.delijn.be/stops/403062", "https://data.delijn.be/stops/410034"], ["https://data.delijn.be/stops/404365", "https://data.delijn.be/stops/404756"], ["https://data.delijn.be/stops/207444", "https://data.delijn.be/stops/209686"], ["https://data.delijn.be/stops/504044", "https://data.delijn.be/stops/505810"], ["https://data.delijn.be/stops/200957", "https://data.delijn.be/stops/203670"], ["https://data.delijn.be/stops/201850", "https://data.delijn.be/stops/205994"], ["https://data.delijn.be/stops/105716", "https://data.delijn.be/stops/105719"], ["https://data.delijn.be/stops/406960", "https://data.delijn.be/stops/406966"], ["https://data.delijn.be/stops/207794", "https://data.delijn.be/stops/208407"], ["https://data.delijn.be/stops/304455", "https://data.delijn.be/stops/304463"], ["https://data.delijn.be/stops/102955", "https://data.delijn.be/stops/102960"], ["https://data.delijn.be/stops/501607", "https://data.delijn.be/stops/506606"], ["https://data.delijn.be/stops/104768", "https://data.delijn.be/stops/108147"], ["https://data.delijn.be/stops/106632", "https://data.delijn.be/stops/107157"], ["https://data.delijn.be/stops/200908", "https://data.delijn.be/stops/208857"], ["https://data.delijn.be/stops/105682", "https://data.delijn.be/stops/109948"], ["https://data.delijn.be/stops/407844", "https://data.delijn.be/stops/407906"], ["https://data.delijn.be/stops/406647", "https://data.delijn.be/stops/408477"], ["https://data.delijn.be/stops/204996", "https://data.delijn.be/stops/206162"], ["https://data.delijn.be/stops/202779", "https://data.delijn.be/stops/203779"], ["https://data.delijn.be/stops/105564", "https://data.delijn.be/stops/105572"], ["https://data.delijn.be/stops/505848", "https://data.delijn.be/stops/508825"], ["https://data.delijn.be/stops/407022", "https://data.delijn.be/stops/410033"], ["https://data.delijn.be/stops/404136", "https://data.delijn.be/stops/404140"], ["https://data.delijn.be/stops/400279", "https://data.delijn.be/stops/400304"], ["https://data.delijn.be/stops/103062", "https://data.delijn.be/stops/109461"], ["https://data.delijn.be/stops/206616", "https://data.delijn.be/stops/206619"], ["https://data.delijn.be/stops/206301", "https://data.delijn.be/stops/206914"], ["https://data.delijn.be/stops/208087", "https://data.delijn.be/stops/208088"], ["https://data.delijn.be/stops/402554", "https://data.delijn.be/stops/408079"], ["https://data.delijn.be/stops/105446", "https://data.delijn.be/stops/105447"], ["https://data.delijn.be/stops/403250", "https://data.delijn.be/stops/410285"], ["https://data.delijn.be/stops/102323", "https://data.delijn.be/stops/104244"], ["https://data.delijn.be/stops/103185", "https://data.delijn.be/stops/103230"], ["https://data.delijn.be/stops/204409", "https://data.delijn.be/stops/205083"], ["https://data.delijn.be/stops/207221", "https://data.delijn.be/stops/207373"], ["https://data.delijn.be/stops/405158", "https://data.delijn.be/stops/405216"], ["https://data.delijn.be/stops/300215", "https://data.delijn.be/stops/301378"], ["https://data.delijn.be/stops/302007", "https://data.delijn.be/stops/303174"], ["https://data.delijn.be/stops/103138", "https://data.delijn.be/stops/107116"], ["https://data.delijn.be/stops/401045", "https://data.delijn.be/stops/401141"], ["https://data.delijn.be/stops/201147", "https://data.delijn.be/stops/211047"], ["https://data.delijn.be/stops/103727", "https://data.delijn.be/stops/109442"], ["https://data.delijn.be/stops/106599", "https://data.delijn.be/stops/107208"], ["https://data.delijn.be/stops/501687", "https://data.delijn.be/stops/506016"], ["https://data.delijn.be/stops/402888", "https://data.delijn.be/stops/402897"], ["https://data.delijn.be/stops/106467", "https://data.delijn.be/stops/107046"], ["https://data.delijn.be/stops/202320", "https://data.delijn.be/stops/202321"], ["https://data.delijn.be/stops/204060", "https://data.delijn.be/stops/204061"], ["https://data.delijn.be/stops/303114", "https://data.delijn.be/stops/305442"], ["https://data.delijn.be/stops/301870", "https://data.delijn.be/stops/304338"], ["https://data.delijn.be/stops/107006", "https://data.delijn.be/stops/107007"], ["https://data.delijn.be/stops/501306", "https://data.delijn.be/stops/506296"], ["https://data.delijn.be/stops/405276", "https://data.delijn.be/stops/405282"], ["https://data.delijn.be/stops/503973", "https://data.delijn.be/stops/508973"], ["https://data.delijn.be/stops/504466", "https://data.delijn.be/stops/504698"], ["https://data.delijn.be/stops/102832", "https://data.delijn.be/stops/106732"], ["https://data.delijn.be/stops/102937", "https://data.delijn.be/stops/107805"], ["https://data.delijn.be/stops/403983", "https://data.delijn.be/stops/404003"], ["https://data.delijn.be/stops/200720", "https://data.delijn.be/stops/202576"], ["https://data.delijn.be/stops/304365", "https://data.delijn.be/stops/304367"], ["https://data.delijn.be/stops/302934", "https://data.delijn.be/stops/307055"], ["https://data.delijn.be/stops/503295", "https://data.delijn.be/stops/508295"], ["https://data.delijn.be/stops/203341", "https://data.delijn.be/stops/203483"], ["https://data.delijn.be/stops/401239", "https://data.delijn.be/stops/410124"], ["https://data.delijn.be/stops/304803", "https://data.delijn.be/stops/307882"], ["https://data.delijn.be/stops/306113", "https://data.delijn.be/stops/307862"], ["https://data.delijn.be/stops/301967", "https://data.delijn.be/stops/307169"], ["https://data.delijn.be/stops/302338", "https://data.delijn.be/stops/307829"], ["https://data.delijn.be/stops/305328", "https://data.delijn.be/stops/308697"], ["https://data.delijn.be/stops/203539", "https://data.delijn.be/stops/203688"], ["https://data.delijn.be/stops/504059", "https://data.delijn.be/stops/505403"], ["https://data.delijn.be/stops/202213", "https://data.delijn.be/stops/202216"], ["https://data.delijn.be/stops/301077", "https://data.delijn.be/stops/308818"], ["https://data.delijn.be/stops/200891", "https://data.delijn.be/stops/210013"], ["https://data.delijn.be/stops/405278", "https://data.delijn.be/stops/405279"], ["https://data.delijn.be/stops/204086", "https://data.delijn.be/stops/204087"], ["https://data.delijn.be/stops/406154", "https://data.delijn.be/stops/406274"], ["https://data.delijn.be/stops/105482", "https://data.delijn.be/stops/105501"], ["https://data.delijn.be/stops/501568", "https://data.delijn.be/stops/506290"], ["https://data.delijn.be/stops/401949", "https://data.delijn.be/stops/407117"], ["https://data.delijn.be/stops/403528", "https://data.delijn.be/stops/408452"], ["https://data.delijn.be/stops/102229", "https://data.delijn.be/stops/105526"], ["https://data.delijn.be/stops/305423", "https://data.delijn.be/stops/305509"], ["https://data.delijn.be/stops/103748", "https://data.delijn.be/stops/107197"], ["https://data.delijn.be/stops/509346", "https://data.delijn.be/stops/509348"], ["https://data.delijn.be/stops/503013", "https://data.delijn.be/stops/505277"], ["https://data.delijn.be/stops/304983", "https://data.delijn.be/stops/308011"], ["https://data.delijn.be/stops/306907", "https://data.delijn.be/stops/306909"], ["https://data.delijn.be/stops/109187", "https://data.delijn.be/stops/109189"], ["https://data.delijn.be/stops/502615", "https://data.delijn.be/stops/502803"], ["https://data.delijn.be/stops/204261", "https://data.delijn.be/stops/205250"], ["https://data.delijn.be/stops/303002", "https://data.delijn.be/stops/308660"], ["https://data.delijn.be/stops/108121", "https://data.delijn.be/stops/109620"], ["https://data.delijn.be/stops/202204", "https://data.delijn.be/stops/203505"], ["https://data.delijn.be/stops/406406", "https://data.delijn.be/stops/406407"], ["https://data.delijn.be/stops/505507", "https://data.delijn.be/stops/505514"], ["https://data.delijn.be/stops/209204", "https://data.delijn.be/stops/209798"], ["https://data.delijn.be/stops/404415", "https://data.delijn.be/stops/404425"], ["https://data.delijn.be/stops/508253", "https://data.delijn.be/stops/508259"], ["https://data.delijn.be/stops/303171", "https://data.delijn.be/stops/303173"], ["https://data.delijn.be/stops/208543", "https://data.delijn.be/stops/209559"], ["https://data.delijn.be/stops/107124", "https://data.delijn.be/stops/107127"], ["https://data.delijn.be/stops/503077", "https://data.delijn.be/stops/508077"], ["https://data.delijn.be/stops/502115", "https://data.delijn.be/stops/502793"], ["https://data.delijn.be/stops/501253", "https://data.delijn.be/stops/501261"], ["https://data.delijn.be/stops/206502", "https://data.delijn.be/stops/207154"], ["https://data.delijn.be/stops/404255", "https://data.delijn.be/stops/405238"], ["https://data.delijn.be/stops/405056", "https://data.delijn.be/stops/405057"], ["https://data.delijn.be/stops/507599", "https://data.delijn.be/stops/507769"], ["https://data.delijn.be/stops/107840", "https://data.delijn.be/stops/108585"], ["https://data.delijn.be/stops/400719", "https://data.delijn.be/stops/401919"], ["https://data.delijn.be/stops/300291", "https://data.delijn.be/stops/307476"], ["https://data.delijn.be/stops/303083", "https://data.delijn.be/stops/303086"], ["https://data.delijn.be/stops/501500", "https://data.delijn.be/stops/506511"], ["https://data.delijn.be/stops/201919", "https://data.delijn.be/stops/201920"], ["https://data.delijn.be/stops/500931", "https://data.delijn.be/stops/500937"], ["https://data.delijn.be/stops/201836", "https://data.delijn.be/stops/202318"], ["https://data.delijn.be/stops/105421", "https://data.delijn.be/stops/105424"], ["https://data.delijn.be/stops/101975", "https://data.delijn.be/stops/102395"], ["https://data.delijn.be/stops/101005", "https://data.delijn.be/stops/101137"], ["https://data.delijn.be/stops/103032", "https://data.delijn.be/stops/103033"], ["https://data.delijn.be/stops/507523", "https://data.delijn.be/stops/507925"], ["https://data.delijn.be/stops/200334", "https://data.delijn.be/stops/200338"], ["https://data.delijn.be/stops/303558", "https://data.delijn.be/stops/303559"], ["https://data.delijn.be/stops/201159", "https://data.delijn.be/stops/201160"], ["https://data.delijn.be/stops/501620", "https://data.delijn.be/stops/506620"], ["https://data.delijn.be/stops/307365", "https://data.delijn.be/stops/307366"], ["https://data.delijn.be/stops/202867", "https://data.delijn.be/stops/202868"], ["https://data.delijn.be/stops/503366", "https://data.delijn.be/stops/508411"], ["https://data.delijn.be/stops/206464", "https://data.delijn.be/stops/207465"], ["https://data.delijn.be/stops/402433", "https://data.delijn.be/stops/404439"], ["https://data.delijn.be/stops/205054", "https://data.delijn.be/stops/205703"], ["https://data.delijn.be/stops/509282", "https://data.delijn.be/stops/509289"], ["https://data.delijn.be/stops/406989", "https://data.delijn.be/stops/409644"], ["https://data.delijn.be/stops/106298", "https://data.delijn.be/stops/106466"], ["https://data.delijn.be/stops/202432", "https://data.delijn.be/stops/210088"], ["https://data.delijn.be/stops/202668", "https://data.delijn.be/stops/203667"], ["https://data.delijn.be/stops/304104", "https://data.delijn.be/stops/304689"], ["https://data.delijn.be/stops/504106", "https://data.delijn.be/stops/505121"], ["https://data.delijn.be/stops/503074", "https://data.delijn.be/stops/508074"], ["https://data.delijn.be/stops/105150", "https://data.delijn.be/stops/105370"], ["https://data.delijn.be/stops/200081", "https://data.delijn.be/stops/208958"], ["https://data.delijn.be/stops/101223", "https://data.delijn.be/stops/102649"], ["https://data.delijn.be/stops/401438", "https://data.delijn.be/stops/401447"], ["https://data.delijn.be/stops/107633", "https://data.delijn.be/stops/107634"], ["https://data.delijn.be/stops/408519", "https://data.delijn.be/stops/408711"], ["https://data.delijn.be/stops/202969", "https://data.delijn.be/stops/203163"], ["https://data.delijn.be/stops/300550", "https://data.delijn.be/stops/307860"], ["https://data.delijn.be/stops/500051", "https://data.delijn.be/stops/500052"], ["https://data.delijn.be/stops/407221", "https://data.delijn.be/stops/407363"], ["https://data.delijn.be/stops/101832", "https://data.delijn.be/stops/108351"], ["https://data.delijn.be/stops/405194", "https://data.delijn.be/stops/405198"], ["https://data.delijn.be/stops/505259", "https://data.delijn.be/stops/508028"], ["https://data.delijn.be/stops/405167", "https://data.delijn.be/stops/405217"], ["https://data.delijn.be/stops/103249", "https://data.delijn.be/stops/108115"], ["https://data.delijn.be/stops/504433", "https://data.delijn.be/stops/509406"], ["https://data.delijn.be/stops/204194", "https://data.delijn.be/stops/204233"], ["https://data.delijn.be/stops/306049", "https://data.delijn.be/stops/308676"], ["https://data.delijn.be/stops/404965", "https://data.delijn.be/stops/409220"], ["https://data.delijn.be/stops/501424", "https://data.delijn.be/stops/506422"], ["https://data.delijn.be/stops/108081", "https://data.delijn.be/stops/109614"], ["https://data.delijn.be/stops/200226", "https://data.delijn.be/stops/201139"], ["https://data.delijn.be/stops/208667", "https://data.delijn.be/stops/209540"], ["https://data.delijn.be/stops/208749", "https://data.delijn.be/stops/208750"], ["https://data.delijn.be/stops/210121", "https://data.delijn.be/stops/211116"], ["https://data.delijn.be/stops/501594", "https://data.delijn.be/stops/504496"], ["https://data.delijn.be/stops/502420", "https://data.delijn.be/stops/507434"], ["https://data.delijn.be/stops/202978", "https://data.delijn.be/stops/203977"], ["https://data.delijn.be/stops/106454", "https://data.delijn.be/stops/106459"], ["https://data.delijn.be/stops/201490", "https://data.delijn.be/stops/201491"], ["https://data.delijn.be/stops/408804", "https://data.delijn.be/stops/408898"], ["https://data.delijn.be/stops/507029", "https://data.delijn.be/stops/507046"], ["https://data.delijn.be/stops/300330", "https://data.delijn.be/stops/300339"], ["https://data.delijn.be/stops/103078", "https://data.delijn.be/stops/106833"], ["https://data.delijn.be/stops/201704", "https://data.delijn.be/stops/203603"], ["https://data.delijn.be/stops/503875", "https://data.delijn.be/stops/509752"], ["https://data.delijn.be/stops/206448", "https://data.delijn.be/stops/207059"], ["https://data.delijn.be/stops/104587", "https://data.delijn.be/stops/104861"], ["https://data.delijn.be/stops/102888", "https://data.delijn.be/stops/102892"], ["https://data.delijn.be/stops/202464", "https://data.delijn.be/stops/203464"], ["https://data.delijn.be/stops/403303", "https://data.delijn.be/stops/405637"], ["https://data.delijn.be/stops/407436", "https://data.delijn.be/stops/407508"], ["https://data.delijn.be/stops/305318", "https://data.delijn.be/stops/305336"], ["https://data.delijn.be/stops/301729", "https://data.delijn.be/stops/301759"], ["https://data.delijn.be/stops/300110", "https://data.delijn.be/stops/306854"], ["https://data.delijn.be/stops/207438", "https://data.delijn.be/stops/209691"], ["https://data.delijn.be/stops/303482", "https://data.delijn.be/stops/303500"], ["https://data.delijn.be/stops/202448", "https://data.delijn.be/stops/203448"], ["https://data.delijn.be/stops/502408", "https://data.delijn.be/stops/507378"], ["https://data.delijn.be/stops/200687", "https://data.delijn.be/stops/200692"], ["https://data.delijn.be/stops/202924", "https://data.delijn.be/stops/203925"], ["https://data.delijn.be/stops/106020", "https://data.delijn.be/stops/109560"], ["https://data.delijn.be/stops/209268", "https://data.delijn.be/stops/209269"], ["https://data.delijn.be/stops/504968", "https://data.delijn.be/stops/507352"], ["https://data.delijn.be/stops/207425", "https://data.delijn.be/stops/207426"], ["https://data.delijn.be/stops/204400", "https://data.delijn.be/stops/205400"], ["https://data.delijn.be/stops/200422", "https://data.delijn.be/stops/203011"], ["https://data.delijn.be/stops/408821", "https://data.delijn.be/stops/408830"], ["https://data.delijn.be/stops/101416", "https://data.delijn.be/stops/101428"], ["https://data.delijn.be/stops/503152", "https://data.delijn.be/stops/504770"], ["https://data.delijn.be/stops/400823", "https://data.delijn.be/stops/403058"], ["https://data.delijn.be/stops/500951", "https://data.delijn.be/stops/505118"], ["https://data.delijn.be/stops/209477", "https://data.delijn.be/stops/209478"], ["https://data.delijn.be/stops/501149", "https://data.delijn.be/stops/505622"], ["https://data.delijn.be/stops/400580", "https://data.delijn.be/stops/405919"], ["https://data.delijn.be/stops/107979", "https://data.delijn.be/stops/107983"], ["https://data.delijn.be/stops/102503", "https://data.delijn.be/stops/407513"], ["https://data.delijn.be/stops/203157", "https://data.delijn.be/stops/205068"], ["https://data.delijn.be/stops/206187", "https://data.delijn.be/stops/206188"], ["https://data.delijn.be/stops/101616", "https://data.delijn.be/stops/101617"], ["https://data.delijn.be/stops/206332", "https://data.delijn.be/stops/207708"], ["https://data.delijn.be/stops/204194", "https://data.delijn.be/stops/205233"], ["https://data.delijn.be/stops/207419", "https://data.delijn.be/stops/207805"], ["https://data.delijn.be/stops/505975", "https://data.delijn.be/stops/509433"], ["https://data.delijn.be/stops/304387", "https://data.delijn.be/stops/306869"], ["https://data.delijn.be/stops/400135", "https://data.delijn.be/stops/410221"], ["https://data.delijn.be/stops/303256", "https://data.delijn.be/stops/303344"], ["https://data.delijn.be/stops/503278", "https://data.delijn.be/stops/503284"], ["https://data.delijn.be/stops/400269", "https://data.delijn.be/stops/405357"], ["https://data.delijn.be/stops/206295", "https://data.delijn.be/stops/207809"], ["https://data.delijn.be/stops/200692", "https://data.delijn.be/stops/202750"], ["https://data.delijn.be/stops/102765", "https://data.delijn.be/stops/104675"], ["https://data.delijn.be/stops/200051", "https://data.delijn.be/stops/209823"], ["https://data.delijn.be/stops/503901", "https://data.delijn.be/stops/504982"], ["https://data.delijn.be/stops/204789", "https://data.delijn.be/stops/205127"], ["https://data.delijn.be/stops/107708", "https://data.delijn.be/stops/107709"], ["https://data.delijn.be/stops/302842", "https://data.delijn.be/stops/302843"], ["https://data.delijn.be/stops/504435", "https://data.delijn.be/stops/505207"], ["https://data.delijn.be/stops/400547", "https://data.delijn.be/stops/408473"], ["https://data.delijn.be/stops/304008", "https://data.delijn.be/stops/304025"], ["https://data.delijn.be/stops/503707", "https://data.delijn.be/stops/508701"], ["https://data.delijn.be/stops/402869", "https://data.delijn.be/stops/306036"], ["https://data.delijn.be/stops/501644", "https://data.delijn.be/stops/506644"], ["https://data.delijn.be/stops/503268", "https://data.delijn.be/stops/505129"], ["https://data.delijn.be/stops/102657", "https://data.delijn.be/stops/308811"], ["https://data.delijn.be/stops/400780", "https://data.delijn.be/stops/409343"], ["https://data.delijn.be/stops/200342", "https://data.delijn.be/stops/210335"], ["https://data.delijn.be/stops/504884", "https://data.delijn.be/stops/508589"], ["https://data.delijn.be/stops/103571", "https://data.delijn.be/stops/103572"], ["https://data.delijn.be/stops/105229", "https://data.delijn.be/stops/105234"], ["https://data.delijn.be/stops/300577", "https://data.delijn.be/stops/308897"], ["https://data.delijn.be/stops/302137", "https://data.delijn.be/stops/307530"], ["https://data.delijn.be/stops/102612", "https://data.delijn.be/stops/102613"], ["https://data.delijn.be/stops/300038", "https://data.delijn.be/stops/306838"], ["https://data.delijn.be/stops/302077", "https://data.delijn.be/stops/303515"], ["https://data.delijn.be/stops/105304", "https://data.delijn.be/stops/105306"], ["https://data.delijn.be/stops/105350", "https://data.delijn.be/stops/105565"], ["https://data.delijn.be/stops/402643", "https://data.delijn.be/stops/404098"], ["https://data.delijn.be/stops/400776", "https://data.delijn.be/stops/406674"], ["https://data.delijn.be/stops/108551", "https://data.delijn.be/stops/109091"], ["https://data.delijn.be/stops/106653", "https://data.delijn.be/stops/106655"], ["https://data.delijn.be/stops/200107", "https://data.delijn.be/stops/200429"], ["https://data.delijn.be/stops/308486", "https://data.delijn.be/stops/308491"], ["https://data.delijn.be/stops/105119", "https://data.delijn.be/stops/105121"], ["https://data.delijn.be/stops/106882", "https://data.delijn.be/stops/109750"], ["https://data.delijn.be/stops/202864", "https://data.delijn.be/stops/203864"], ["https://data.delijn.be/stops/207800", "https://data.delijn.be/stops/209546"], ["https://data.delijn.be/stops/206749", "https://data.delijn.be/stops/207749"], ["https://data.delijn.be/stops/303083", "https://data.delijn.be/stops/304245"], ["https://data.delijn.be/stops/109768", "https://data.delijn.be/stops/109769"], ["https://data.delijn.be/stops/402108", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/204320", "https://data.delijn.be/stops/205319"], ["https://data.delijn.be/stops/201281", "https://data.delijn.be/stops/208956"], ["https://data.delijn.be/stops/305408", "https://data.delijn.be/stops/305409"], ["https://data.delijn.be/stops/507323", "https://data.delijn.be/stops/507391"], ["https://data.delijn.be/stops/107253", "https://data.delijn.be/stops/107254"], ["https://data.delijn.be/stops/102844", "https://data.delijn.be/stops/106565"], ["https://data.delijn.be/stops/206240", "https://data.delijn.be/stops/206407"], ["https://data.delijn.be/stops/400694", "https://data.delijn.be/stops/400858"], ["https://data.delijn.be/stops/303828", "https://data.delijn.be/stops/305896"], ["https://data.delijn.be/stops/200001", "https://data.delijn.be/stops/211856"], ["https://data.delijn.be/stops/504253", "https://data.delijn.be/stops/504391"], ["https://data.delijn.be/stops/401139", "https://data.delijn.be/stops/409079"], ["https://data.delijn.be/stops/401163", "https://data.delijn.be/stops/408110"], ["https://data.delijn.be/stops/407226", "https://data.delijn.be/stops/407507"], ["https://data.delijn.be/stops/201617", "https://data.delijn.be/stops/202923"], ["https://data.delijn.be/stops/102185", "https://data.delijn.be/stops/103665"], ["https://data.delijn.be/stops/206672", "https://data.delijn.be/stops/208632"], ["https://data.delijn.be/stops/504630", "https://data.delijn.be/stops/509625"], ["https://data.delijn.be/stops/106478", "https://data.delijn.be/stops/107452"], ["https://data.delijn.be/stops/404457", "https://data.delijn.be/stops/404570"], ["https://data.delijn.be/stops/302913", "https://data.delijn.be/stops/302915"], ["https://data.delijn.be/stops/209663", "https://data.delijn.be/stops/209732"], ["https://data.delijn.be/stops/203505", "https://data.delijn.be/stops/203768"], ["https://data.delijn.be/stops/105093", "https://data.delijn.be/stops/109504"], ["https://data.delijn.be/stops/303139", "https://data.delijn.be/stops/304026"], ["https://data.delijn.be/stops/502084", "https://data.delijn.be/stops/502096"], ["https://data.delijn.be/stops/503251", "https://data.delijn.be/stops/505371"], ["https://data.delijn.be/stops/406299", "https://data.delijn.be/stops/409114"], ["https://data.delijn.be/stops/101551", "https://data.delijn.be/stops/101653"], ["https://data.delijn.be/stops/303072", "https://data.delijn.be/stops/303090"], ["https://data.delijn.be/stops/400248", "https://data.delijn.be/stops/401923"], ["https://data.delijn.be/stops/108022", "https://data.delijn.be/stops/109635"], ["https://data.delijn.be/stops/305163", "https://data.delijn.be/stops/305179"], ["https://data.delijn.be/stops/204300", "https://data.delijn.be/stops/205515"], ["https://data.delijn.be/stops/106715", "https://data.delijn.be/stops/106716"], ["https://data.delijn.be/stops/403161", "https://data.delijn.be/stops/403478"], ["https://data.delijn.be/stops/408398", "https://data.delijn.be/stops/408399"], ["https://data.delijn.be/stops/504164", "https://data.delijn.be/stops/504170"], ["https://data.delijn.be/stops/300782", "https://data.delijn.be/stops/301018"], ["https://data.delijn.be/stops/503231", "https://data.delijn.be/stops/503240"], ["https://data.delijn.be/stops/105759", "https://data.delijn.be/stops/109811"], ["https://data.delijn.be/stops/208093", "https://data.delijn.be/stops/209630"], ["https://data.delijn.be/stops/300324", "https://data.delijn.be/stops/306816"], ["https://data.delijn.be/stops/106179", "https://data.delijn.be/stops/106181"], ["https://data.delijn.be/stops/206867", "https://data.delijn.be/stops/208807"], ["https://data.delijn.be/stops/106873", "https://data.delijn.be/stops/106876"], ["https://data.delijn.be/stops/305162", "https://data.delijn.be/stops/305207"], ["https://data.delijn.be/stops/200107", "https://data.delijn.be/stops/201107"], ["https://data.delijn.be/stops/304221", "https://data.delijn.be/stops/304289"], ["https://data.delijn.be/stops/203125", "https://data.delijn.be/stops/203126"], ["https://data.delijn.be/stops/201182", "https://data.delijn.be/stops/201665"], ["https://data.delijn.be/stops/404723", "https://data.delijn.be/stops/404801"], ["https://data.delijn.be/stops/102950", "https://data.delijn.be/stops/102955"], ["https://data.delijn.be/stops/305000", "https://data.delijn.be/stops/305024"], ["https://data.delijn.be/stops/205055", "https://data.delijn.be/stops/205058"], ["https://data.delijn.be/stops/202921", "https://data.delijn.be/stops/203733"], ["https://data.delijn.be/stops/501546", "https://data.delijn.be/stops/506321"], ["https://data.delijn.be/stops/202386", "https://data.delijn.be/stops/202387"], ["https://data.delijn.be/stops/106205", "https://data.delijn.be/stops/106206"], ["https://data.delijn.be/stops/504978", "https://data.delijn.be/stops/509088"], ["https://data.delijn.be/stops/404288", "https://data.delijn.be/stops/409749"], ["https://data.delijn.be/stops/402396", "https://data.delijn.be/stops/402397"], ["https://data.delijn.be/stops/402490", "https://data.delijn.be/stops/402491"], ["https://data.delijn.be/stops/202001", "https://data.delijn.be/stops/202492"], ["https://data.delijn.be/stops/407818", "https://data.delijn.be/stops/407819"], ["https://data.delijn.be/stops/101700", "https://data.delijn.be/stops/104470"], ["https://data.delijn.be/stops/503923", "https://data.delijn.be/stops/505920"], ["https://data.delijn.be/stops/101729", "https://data.delijn.be/stops/101730"], ["https://data.delijn.be/stops/300503", "https://data.delijn.be/stops/300505"], ["https://data.delijn.be/stops/109169", "https://data.delijn.be/stops/109235"], ["https://data.delijn.be/stops/505627", "https://data.delijn.be/stops/507363"], ["https://data.delijn.be/stops/304364", "https://data.delijn.be/stops/304429"], ["https://data.delijn.be/stops/204656", "https://data.delijn.be/stops/204670"], ["https://data.delijn.be/stops/504407", "https://data.delijn.be/stops/508440"], ["https://data.delijn.be/stops/501130", "https://data.delijn.be/stops/506137"], ["https://data.delijn.be/stops/306339", "https://data.delijn.be/stops/306772"], ["https://data.delijn.be/stops/404107", "https://data.delijn.be/stops/404128"], ["https://data.delijn.be/stops/200609", "https://data.delijn.be/stops/201609"], ["https://data.delijn.be/stops/104343", "https://data.delijn.be/stops/104347"], ["https://data.delijn.be/stops/304096", "https://data.delijn.be/stops/304102"], ["https://data.delijn.be/stops/301383", "https://data.delijn.be/stops/306142"], ["https://data.delijn.be/stops/107611", "https://data.delijn.be/stops/107729"], ["https://data.delijn.be/stops/101957", "https://data.delijn.be/stops/109706"], ["https://data.delijn.be/stops/103129", "https://data.delijn.be/stops/106778"], ["https://data.delijn.be/stops/502465", "https://data.delijn.be/stops/507445"], ["https://data.delijn.be/stops/103528", "https://data.delijn.be/stops/109636"], ["https://data.delijn.be/stops/407883", "https://data.delijn.be/stops/407889"], ["https://data.delijn.be/stops/301359", "https://data.delijn.be/stops/301393"], ["https://data.delijn.be/stops/404638", "https://data.delijn.be/stops/404990"], ["https://data.delijn.be/stops/103014", "https://data.delijn.be/stops/109018"], ["https://data.delijn.be/stops/402368", "https://data.delijn.be/stops/402398"], ["https://data.delijn.be/stops/101979", "https://data.delijn.be/stops/108287"], ["https://data.delijn.be/stops/101460", "https://data.delijn.be/stops/103318"], ["https://data.delijn.be/stops/208664", "https://data.delijn.be/stops/208809"], ["https://data.delijn.be/stops/202614", "https://data.delijn.be/stops/203614"], ["https://data.delijn.be/stops/202102", "https://data.delijn.be/stops/203102"], ["https://data.delijn.be/stops/401029", "https://data.delijn.be/stops/401039"], ["https://data.delijn.be/stops/502527", "https://data.delijn.be/stops/507524"], ["https://data.delijn.be/stops/208838", "https://data.delijn.be/stops/209208"], ["https://data.delijn.be/stops/102612", "https://data.delijn.be/stops/107051"], ["https://data.delijn.be/stops/106290", "https://data.delijn.be/stops/106308"], ["https://data.delijn.be/stops/105119", "https://data.delijn.be/stops/108890"], ["https://data.delijn.be/stops/200658", "https://data.delijn.be/stops/201729"], ["https://data.delijn.be/stops/406564", "https://data.delijn.be/stops/407206"], ["https://data.delijn.be/stops/108082", "https://data.delijn.be/stops/108083"], ["https://data.delijn.be/stops/403112", "https://data.delijn.be/stops/403113"], ["https://data.delijn.be/stops/206355", "https://data.delijn.be/stops/207346"], ["https://data.delijn.be/stops/208056", "https://data.delijn.be/stops/209628"], ["https://data.delijn.be/stops/302769", "https://data.delijn.be/stops/302772"], ["https://data.delijn.be/stops/506658", "https://data.delijn.be/stops/506659"], ["https://data.delijn.be/stops/503311", "https://data.delijn.be/stops/508137"], ["https://data.delijn.be/stops/206027", "https://data.delijn.be/stops/207721"], ["https://data.delijn.be/stops/503368", "https://data.delijn.be/stops/509920"], ["https://data.delijn.be/stops/208290", "https://data.delijn.be/stops/208330"], ["https://data.delijn.be/stops/407656", "https://data.delijn.be/stops/409786"], ["https://data.delijn.be/stops/502267", "https://data.delijn.be/stops/509723"], ["https://data.delijn.be/stops/400849", "https://data.delijn.be/stops/400853"], ["https://data.delijn.be/stops/509129", "https://data.delijn.be/stops/509257"], ["https://data.delijn.be/stops/504070", "https://data.delijn.be/stops/504689"], ["https://data.delijn.be/stops/300489", "https://data.delijn.be/stops/307085"], ["https://data.delijn.be/stops/103253", "https://data.delijn.be/stops/103254"], ["https://data.delijn.be/stops/204159", "https://data.delijn.be/stops/205158"], ["https://data.delijn.be/stops/202026", "https://data.delijn.be/stops/202082"], ["https://data.delijn.be/stops/207891", "https://data.delijn.be/stops/207912"], ["https://data.delijn.be/stops/305561", "https://data.delijn.be/stops/308552"], ["https://data.delijn.be/stops/106125", "https://data.delijn.be/stops/106128"], ["https://data.delijn.be/stops/403685", "https://data.delijn.be/stops/409250"], ["https://data.delijn.be/stops/306951", "https://data.delijn.be/stops/306953"], ["https://data.delijn.be/stops/401179", "https://data.delijn.be/stops/401183"], ["https://data.delijn.be/stops/404354", "https://data.delijn.be/stops/404358"], ["https://data.delijn.be/stops/102355", "https://data.delijn.be/stops/104815"], ["https://data.delijn.be/stops/300983", "https://data.delijn.be/stops/301082"], ["https://data.delijn.be/stops/501318", "https://data.delijn.be/stops/506318"], ["https://data.delijn.be/stops/400321", "https://data.delijn.be/stops/407101"], ["https://data.delijn.be/stops/200390", "https://data.delijn.be/stops/209721"], ["https://data.delijn.be/stops/401094", "https://data.delijn.be/stops/401100"], ["https://data.delijn.be/stops/303094", "https://data.delijn.be/stops/304244"], ["https://data.delijn.be/stops/205929", "https://data.delijn.be/stops/211105"], ["https://data.delijn.be/stops/103760", "https://data.delijn.be/stops/104215"], ["https://data.delijn.be/stops/304444", "https://data.delijn.be/stops/304445"], ["https://data.delijn.be/stops/208677", "https://data.delijn.be/stops/208808"], ["https://data.delijn.be/stops/104938", "https://data.delijn.be/stops/107853"], ["https://data.delijn.be/stops/104953", "https://data.delijn.be/stops/406504"], ["https://data.delijn.be/stops/200003", "https://data.delijn.be/stops/202016"], ["https://data.delijn.be/stops/407914", "https://data.delijn.be/stops/407915"], ["https://data.delijn.be/stops/206552", "https://data.delijn.be/stops/207484"], ["https://data.delijn.be/stops/503792", "https://data.delijn.be/stops/505568"], ["https://data.delijn.be/stops/208785", "https://data.delijn.be/stops/209179"], ["https://data.delijn.be/stops/303705", "https://data.delijn.be/stops/304919"], ["https://data.delijn.be/stops/101416", "https://data.delijn.be/stops/102069"], ["https://data.delijn.be/stops/405592", "https://data.delijn.be/stops/407797"], ["https://data.delijn.be/stops/305064", "https://data.delijn.be/stops/305065"], ["https://data.delijn.be/stops/203249", "https://data.delijn.be/stops/203250"], ["https://data.delijn.be/stops/401053", "https://data.delijn.be/stops/401137"], ["https://data.delijn.be/stops/106980", "https://data.delijn.be/stops/106983"], ["https://data.delijn.be/stops/105536", "https://data.delijn.be/stops/105539"], ["https://data.delijn.be/stops/108677", "https://data.delijn.be/stops/406788"], ["https://data.delijn.be/stops/105049", "https://data.delijn.be/stops/109766"], ["https://data.delijn.be/stops/503717", "https://data.delijn.be/stops/508717"], ["https://data.delijn.be/stops/504677", "https://data.delijn.be/stops/505819"], ["https://data.delijn.be/stops/502313", "https://data.delijn.be/stops/505684"], ["https://data.delijn.be/stops/409433", "https://data.delijn.be/stops/409713"], ["https://data.delijn.be/stops/200333", "https://data.delijn.be/stops/205941"], ["https://data.delijn.be/stops/202177", "https://data.delijn.be/stops/203177"], ["https://data.delijn.be/stops/101653", "https://data.delijn.be/stops/107919"], ["https://data.delijn.be/stops/201472", "https://data.delijn.be/stops/208862"], ["https://data.delijn.be/stops/406650", "https://data.delijn.be/stops/406654"], ["https://data.delijn.be/stops/301053", "https://data.delijn.be/stops/301055"], ["https://data.delijn.be/stops/501469", "https://data.delijn.be/stops/506470"], ["https://data.delijn.be/stops/401788", "https://data.delijn.be/stops/401838"], ["https://data.delijn.be/stops/200645", "https://data.delijn.be/stops/200646"], ["https://data.delijn.be/stops/300455", "https://data.delijn.be/stops/305003"], ["https://data.delijn.be/stops/505064", "https://data.delijn.be/stops/505070"], ["https://data.delijn.be/stops/502739", "https://data.delijn.be/stops/590334"], ["https://data.delijn.be/stops/106999", "https://data.delijn.be/stops/107327"], ["https://data.delijn.be/stops/109438", "https://data.delijn.be/stops/109439"], ["https://data.delijn.be/stops/400400", "https://data.delijn.be/stops/400955"], ["https://data.delijn.be/stops/208326", "https://data.delijn.be/stops/209325"], ["https://data.delijn.be/stops/107443", "https://data.delijn.be/stops/107444"], ["https://data.delijn.be/stops/402119", "https://data.delijn.be/stops/403690"], ["https://data.delijn.be/stops/101510", "https://data.delijn.be/stops/101860"], ["https://data.delijn.be/stops/501124", "https://data.delijn.be/stops/506124"], ["https://data.delijn.be/stops/503388", "https://data.delijn.be/stops/508405"], ["https://data.delijn.be/stops/405891", "https://data.delijn.be/stops/410255"], ["https://data.delijn.be/stops/300936", "https://data.delijn.be/stops/301944"], ["https://data.delijn.be/stops/508077", "https://data.delijn.be/stops/508680"], ["https://data.delijn.be/stops/202195", "https://data.delijn.be/stops/203195"], ["https://data.delijn.be/stops/101209", "https://data.delijn.be/stops/107844"], ["https://data.delijn.be/stops/404238", "https://data.delijn.be/stops/404239"], ["https://data.delijn.be/stops/101669", "https://data.delijn.be/stops/107661"], ["https://data.delijn.be/stops/407335", "https://data.delijn.be/stops/407497"], ["https://data.delijn.be/stops/208245", "https://data.delijn.be/stops/208855"], ["https://data.delijn.be/stops/106115", "https://data.delijn.be/stops/106116"], ["https://data.delijn.be/stops/305005", "https://data.delijn.be/stops/305039"], ["https://data.delijn.be/stops/402349", "https://data.delijn.be/stops/402358"], ["https://data.delijn.be/stops/409112", "https://data.delijn.be/stops/409113"], ["https://data.delijn.be/stops/302002", "https://data.delijn.be/stops/302003"], ["https://data.delijn.be/stops/302587", "https://data.delijn.be/stops/302681"], ["https://data.delijn.be/stops/504853", "https://data.delijn.be/stops/509052"], ["https://data.delijn.be/stops/307137", "https://data.delijn.be/stops/308716"], ["https://data.delijn.be/stops/304589", "https://data.delijn.be/stops/304590"], ["https://data.delijn.be/stops/201103", "https://data.delijn.be/stops/203005"], ["https://data.delijn.be/stops/504157", "https://data.delijn.be/stops/509157"], ["https://data.delijn.be/stops/401134", "https://data.delijn.be/stops/401138"], ["https://data.delijn.be/stops/305644", "https://data.delijn.be/stops/305646"], ["https://data.delijn.be/stops/405612", "https://data.delijn.be/stops/407191"], ["https://data.delijn.be/stops/102999", "https://data.delijn.be/stops/107414"], ["https://data.delijn.be/stops/307362", "https://data.delijn.be/stops/307363"], ["https://data.delijn.be/stops/302264", "https://data.delijn.be/stops/304846"], ["https://data.delijn.be/stops/106386", "https://data.delijn.be/stops/106387"], ["https://data.delijn.be/stops/109815", "https://data.delijn.be/stops/109817"], ["https://data.delijn.be/stops/200173", "https://data.delijn.be/stops/204925"], ["https://data.delijn.be/stops/108792", "https://data.delijn.be/stops/108796"], ["https://data.delijn.be/stops/301544", "https://data.delijn.be/stops/304702"], ["https://data.delijn.be/stops/304141", "https://data.delijn.be/stops/304147"], ["https://data.delijn.be/stops/407050", "https://data.delijn.be/stops/407051"], ["https://data.delijn.be/stops/400434", "https://data.delijn.be/stops/400435"], ["https://data.delijn.be/stops/308508", "https://data.delijn.be/stops/308591"], ["https://data.delijn.be/stops/303231", "https://data.delijn.be/stops/303232"], ["https://data.delijn.be/stops/200100", "https://data.delijn.be/stops/200101"], ["https://data.delijn.be/stops/503869", "https://data.delijn.be/stops/508071"], ["https://data.delijn.be/stops/400943", "https://data.delijn.be/stops/406954"], ["https://data.delijn.be/stops/209130", "https://data.delijn.be/stops/209197"], ["https://data.delijn.be/stops/507550", "https://data.delijn.be/stops/507656"], ["https://data.delijn.be/stops/405492", "https://data.delijn.be/stops/409332"], ["https://data.delijn.be/stops/400051", "https://data.delijn.be/stops/400169"], ["https://data.delijn.be/stops/507281", "https://data.delijn.be/stops/507283"], ["https://data.delijn.be/stops/403222", "https://data.delijn.be/stops/403224"], ["https://data.delijn.be/stops/503210", "https://data.delijn.be/stops/503211"], ["https://data.delijn.be/stops/400634", "https://data.delijn.be/stops/410009"], ["https://data.delijn.be/stops/405818", "https://data.delijn.be/stops/405849"], ["https://data.delijn.be/stops/501477", "https://data.delijn.be/stops/506332"], ["https://data.delijn.be/stops/101951", "https://data.delijn.be/stops/108792"], ["https://data.delijn.be/stops/206972", "https://data.delijn.be/stops/207972"], ["https://data.delijn.be/stops/408843", "https://data.delijn.be/stops/408927"], ["https://data.delijn.be/stops/504706", "https://data.delijn.be/stops/509101"], ["https://data.delijn.be/stops/507066", "https://data.delijn.be/stops/507072"], ["https://data.delijn.be/stops/505955", "https://data.delijn.be/stops/508163"], ["https://data.delijn.be/stops/409592", "https://data.delijn.be/stops/409598"], ["https://data.delijn.be/stops/208492", "https://data.delijn.be/stops/219024"], ["https://data.delijn.be/stops/202230", "https://data.delijn.be/stops/219505"], ["https://data.delijn.be/stops/505239", "https://data.delijn.be/stops/505947"], ["https://data.delijn.be/stops/201360", "https://data.delijn.be/stops/201363"], ["https://data.delijn.be/stops/105622", "https://data.delijn.be/stops/106361"], ["https://data.delijn.be/stops/101370", "https://data.delijn.be/stops/101806"], ["https://data.delijn.be/stops/504698", "https://data.delijn.be/stops/504699"], ["https://data.delijn.be/stops/303400", "https://data.delijn.be/stops/304827"], ["https://data.delijn.be/stops/203853", "https://data.delijn.be/stops/203854"], ["https://data.delijn.be/stops/300226", "https://data.delijn.be/stops/302115"], ["https://data.delijn.be/stops/500958", "https://data.delijn.be/stops/503282"], ["https://data.delijn.be/stops/301300", "https://data.delijn.be/stops/307942"], ["https://data.delijn.be/stops/204564", "https://data.delijn.be/stops/303537"], ["https://data.delijn.be/stops/402181", "https://data.delijn.be/stops/402417"], ["https://data.delijn.be/stops/306597", "https://data.delijn.be/stops/306631"], ["https://data.delijn.be/stops/400629", "https://data.delijn.be/stops/404292"], ["https://data.delijn.be/stops/303100", "https://data.delijn.be/stops/303108"], ["https://data.delijn.be/stops/200482", "https://data.delijn.be/stops/201095"], ["https://data.delijn.be/stops/400032", "https://data.delijn.be/stops/400041"], ["https://data.delijn.be/stops/102482", "https://data.delijn.be/stops/400417"], ["https://data.delijn.be/stops/302121", "https://data.delijn.be/stops/304147"], ["https://data.delijn.be/stops/408017", "https://data.delijn.be/stops/408199"], ["https://data.delijn.be/stops/503083", "https://data.delijn.be/stops/508082"], ["https://data.delijn.be/stops/202903", "https://data.delijn.be/stops/203903"], ["https://data.delijn.be/stops/202535", "https://data.delijn.be/stops/203588"], ["https://data.delijn.be/stops/211092", "https://data.delijn.be/stops/211118"], ["https://data.delijn.be/stops/403798", "https://data.delijn.be/stops/403804"], ["https://data.delijn.be/stops/301406", "https://data.delijn.be/stops/307220"], ["https://data.delijn.be/stops/509835", "https://data.delijn.be/stops/509836"], ["https://data.delijn.be/stops/403229", "https://data.delijn.be/stops/403386"], ["https://data.delijn.be/stops/200975", "https://data.delijn.be/stops/200976"], ["https://data.delijn.be/stops/508402", "https://data.delijn.be/stops/510015"], ["https://data.delijn.be/stops/105668", "https://data.delijn.be/stops/106048"], ["https://data.delijn.be/stops/101215", "https://data.delijn.be/stops/105785"], ["https://data.delijn.be/stops/106791", "https://data.delijn.be/stops/106794"], ["https://data.delijn.be/stops/200049", "https://data.delijn.be/stops/200247"], ["https://data.delijn.be/stops/101977", "https://data.delijn.be/stops/308494"], ["https://data.delijn.be/stops/504226", "https://data.delijn.be/stops/509227"], ["https://data.delijn.be/stops/108648", "https://data.delijn.be/stops/304330"], ["https://data.delijn.be/stops/503051", "https://data.delijn.be/stops/508051"], ["https://data.delijn.be/stops/401530", "https://data.delijn.be/stops/401531"], ["https://data.delijn.be/stops/303360", "https://data.delijn.be/stops/303361"], ["https://data.delijn.be/stops/209137", "https://data.delijn.be/stops/209138"], ["https://data.delijn.be/stops/302384", "https://data.delijn.be/stops/302391"], ["https://data.delijn.be/stops/505292", "https://data.delijn.be/stops/508290"], ["https://data.delijn.be/stops/306064", "https://data.delijn.be/stops/307713"], ["https://data.delijn.be/stops/107105", "https://data.delijn.be/stops/107585"], ["https://data.delijn.be/stops/300147", "https://data.delijn.be/stops/300148"], ["https://data.delijn.be/stops/201061", "https://data.delijn.be/stops/210059"], ["https://data.delijn.be/stops/102340", "https://data.delijn.be/stops/106332"], ["https://data.delijn.be/stops/407482", "https://data.delijn.be/stops/407492"], ["https://data.delijn.be/stops/508492", "https://data.delijn.be/stops/508495"], ["https://data.delijn.be/stops/302765", "https://data.delijn.be/stops/302766"], ["https://data.delijn.be/stops/101072", "https://data.delijn.be/stops/101073"], ["https://data.delijn.be/stops/505078", "https://data.delijn.be/stops/505808"], ["https://data.delijn.be/stops/403144", "https://data.delijn.be/stops/410273"], ["https://data.delijn.be/stops/505316", "https://data.delijn.be/stops/505580"], ["https://data.delijn.be/stops/109038", "https://data.delijn.be/stops/109083"], ["https://data.delijn.be/stops/103074", "https://data.delijn.be/stops/109521"], ["https://data.delijn.be/stops/102053", "https://data.delijn.be/stops/104128"], ["https://data.delijn.be/stops/408250", "https://data.delijn.be/stops/408251"], ["https://data.delijn.be/stops/407620", "https://data.delijn.be/stops/408448"], ["https://data.delijn.be/stops/407651", "https://data.delijn.be/stops/407653"], ["https://data.delijn.be/stops/507944", "https://data.delijn.be/stops/508855"], ["https://data.delijn.be/stops/201358", "https://data.delijn.be/stops/201842"], ["https://data.delijn.be/stops/306093", "https://data.delijn.be/stops/308829"], ["https://data.delijn.be/stops/207940", "https://data.delijn.be/stops/209565"], ["https://data.delijn.be/stops/104491", "https://data.delijn.be/stops/104492"], ["https://data.delijn.be/stops/400747", "https://data.delijn.be/stops/409592"], ["https://data.delijn.be/stops/303551", "https://data.delijn.be/stops/305527"], ["https://data.delijn.be/stops/401485", "https://data.delijn.be/stops/401494"], ["https://data.delijn.be/stops/201093", "https://data.delijn.be/stops/203895"], ["https://data.delijn.be/stops/202521", "https://data.delijn.be/stops/202540"], ["https://data.delijn.be/stops/200259", "https://data.delijn.be/stops/201947"], ["https://data.delijn.be/stops/104609", "https://data.delijn.be/stops/104611"], ["https://data.delijn.be/stops/108299", "https://data.delijn.be/stops/108302"], ["https://data.delijn.be/stops/201203", "https://data.delijn.be/stops/202555"], ["https://data.delijn.be/stops/307542", "https://data.delijn.be/stops/307545"], ["https://data.delijn.be/stops/200267", "https://data.delijn.be/stops/201267"], ["https://data.delijn.be/stops/105710", "https://data.delijn.be/stops/105980"], ["https://data.delijn.be/stops/208201", "https://data.delijn.be/stops/209201"], ["https://data.delijn.be/stops/402720", "https://data.delijn.be/stops/402721"], ["https://data.delijn.be/stops/406576", "https://data.delijn.be/stops/406586"], ["https://data.delijn.be/stops/402588", "https://data.delijn.be/stops/402589"], ["https://data.delijn.be/stops/107402", "https://data.delijn.be/stops/107403"], ["https://data.delijn.be/stops/403630", "https://data.delijn.be/stops/403640"], ["https://data.delijn.be/stops/201685", "https://data.delijn.be/stops/202790"], ["https://data.delijn.be/stops/302579", "https://data.delijn.be/stops/302580"], ["https://data.delijn.be/stops/504795", "https://data.delijn.be/stops/504797"], ["https://data.delijn.be/stops/200860", "https://data.delijn.be/stops/202290"], ["https://data.delijn.be/stops/200908", "https://data.delijn.be/stops/202250"], ["https://data.delijn.be/stops/501560", "https://data.delijn.be/stops/506085"], ["https://data.delijn.be/stops/407958", "https://data.delijn.be/stops/407959"], ["https://data.delijn.be/stops/102330", "https://data.delijn.be/stops/104575"], ["https://data.delijn.be/stops/501071", "https://data.delijn.be/stops/501179"], ["https://data.delijn.be/stops/105372", "https://data.delijn.be/stops/105374"], ["https://data.delijn.be/stops/400059", "https://data.delijn.be/stops/406730"], ["https://data.delijn.be/stops/404619", "https://data.delijn.be/stops/404625"], ["https://data.delijn.be/stops/205539", "https://data.delijn.be/stops/205546"], ["https://data.delijn.be/stops/200814", "https://data.delijn.be/stops/200879"], ["https://data.delijn.be/stops/208208", "https://data.delijn.be/stops/209782"], ["https://data.delijn.be/stops/503248", "https://data.delijn.be/stops/508241"], ["https://data.delijn.be/stops/503988", "https://data.delijn.be/stops/505408"], ["https://data.delijn.be/stops/306342", "https://data.delijn.be/stops/306343"], ["https://data.delijn.be/stops/406493", "https://data.delijn.be/stops/406497"], ["https://data.delijn.be/stops/404542", "https://data.delijn.be/stops/410396"], ["https://data.delijn.be/stops/105326", "https://data.delijn.be/stops/105341"], ["https://data.delijn.be/stops/503430", "https://data.delijn.be/stops/508430"], ["https://data.delijn.be/stops/410062", "https://data.delijn.be/stops/410217"], ["https://data.delijn.be/stops/402301", "https://data.delijn.be/stops/410335"], ["https://data.delijn.be/stops/504610", "https://data.delijn.be/stops/504613"], ["https://data.delijn.be/stops/305982", "https://data.delijn.be/stops/305984"], ["https://data.delijn.be/stops/206881", "https://data.delijn.be/stops/206882"], ["https://data.delijn.be/stops/501129", "https://data.delijn.be/stops/501130"], ["https://data.delijn.be/stops/304158", "https://data.delijn.be/stops/304159"], ["https://data.delijn.be/stops/108417", "https://data.delijn.be/stops/108418"], ["https://data.delijn.be/stops/200130", "https://data.delijn.be/stops/204556"], ["https://data.delijn.be/stops/503961", "https://data.delijn.be/stops/505116"], ["https://data.delijn.be/stops/201711", "https://data.delijn.be/stops/208651"], ["https://data.delijn.be/stops/408208", "https://data.delijn.be/stops/408214"], ["https://data.delijn.be/stops/301667", "https://data.delijn.be/stops/301668"], ["https://data.delijn.be/stops/302885", "https://data.delijn.be/stops/303106"], ["https://data.delijn.be/stops/104609", "https://data.delijn.be/stops/109800"], ["https://data.delijn.be/stops/405193", "https://data.delijn.be/stops/405284"], ["https://data.delijn.be/stops/104666", "https://data.delijn.be/stops/108421"], ["https://data.delijn.be/stops/502500", "https://data.delijn.be/stops/507502"], ["https://data.delijn.be/stops/304367", "https://data.delijn.be/stops/304368"], ["https://data.delijn.be/stops/200062", "https://data.delijn.be/stops/200096"], ["https://data.delijn.be/stops/502208", "https://data.delijn.be/stops/507211"], ["https://data.delijn.be/stops/204350", "https://data.delijn.be/stops/205107"], ["https://data.delijn.be/stops/303033", "https://data.delijn.be/stops/306319"], ["https://data.delijn.be/stops/201548", "https://data.delijn.be/stops/202002"], ["https://data.delijn.be/stops/304426", "https://data.delijn.be/stops/307420"], ["https://data.delijn.be/stops/204143", "https://data.delijn.be/stops/207638"], ["https://data.delijn.be/stops/205986", "https://data.delijn.be/stops/207004"], ["https://data.delijn.be/stops/407197", "https://data.delijn.be/stops/407373"], ["https://data.delijn.be/stops/104304", "https://data.delijn.be/stops/109748"], ["https://data.delijn.be/stops/305446", "https://data.delijn.be/stops/305447"], ["https://data.delijn.be/stops/301515", "https://data.delijn.be/stops/301517"], ["https://data.delijn.be/stops/208769", "https://data.delijn.be/stops/219009"], ["https://data.delijn.be/stops/300824", "https://data.delijn.be/stops/300825"], ["https://data.delijn.be/stops/206540", "https://data.delijn.be/stops/206860"], ["https://data.delijn.be/stops/300542", "https://data.delijn.be/stops/300560"], ["https://data.delijn.be/stops/200240", "https://data.delijn.be/stops/200277"], ["https://data.delijn.be/stops/403938", "https://data.delijn.be/stops/406007"], ["https://data.delijn.be/stops/504227", "https://data.delijn.be/stops/509227"], ["https://data.delijn.be/stops/209386", "https://data.delijn.be/stops/209420"], ["https://data.delijn.be/stops/204990", "https://data.delijn.be/stops/208779"], ["https://data.delijn.be/stops/208289", "https://data.delijn.be/stops/208295"], ["https://data.delijn.be/stops/103398", "https://data.delijn.be/stops/106829"], ["https://data.delijn.be/stops/401220", "https://data.delijn.be/stops/410124"], ["https://data.delijn.be/stops/406999", "https://data.delijn.be/stops/408626"], ["https://data.delijn.be/stops/303698", "https://data.delijn.be/stops/303699"], ["https://data.delijn.be/stops/202099", "https://data.delijn.be/stops/203099"], ["https://data.delijn.be/stops/102384", "https://data.delijn.be/stops/109136"], ["https://data.delijn.be/stops/302646", "https://data.delijn.be/stops/306771"], ["https://data.delijn.be/stops/105905", "https://data.delijn.be/stops/107625"], ["https://data.delijn.be/stops/201954", "https://data.delijn.be/stops/210053"], ["https://data.delijn.be/stops/206793", "https://data.delijn.be/stops/209051"], ["https://data.delijn.be/stops/204493", "https://data.delijn.be/stops/205485"], ["https://data.delijn.be/stops/305946", "https://data.delijn.be/stops/308708"], ["https://data.delijn.be/stops/400487", "https://data.delijn.be/stops/407686"], ["https://data.delijn.be/stops/501127", "https://data.delijn.be/stops/506127"], ["https://data.delijn.be/stops/408317", "https://data.delijn.be/stops/408352"], ["https://data.delijn.be/stops/504608", "https://data.delijn.be/stops/504615"], ["https://data.delijn.be/stops/405801", "https://data.delijn.be/stops/409429"], ["https://data.delijn.be/stops/504219", "https://data.delijn.be/stops/504691"], ["https://data.delijn.be/stops/203573", "https://data.delijn.be/stops/203574"], ["https://data.delijn.be/stops/504206", "https://data.delijn.be/stops/509206"], ["https://data.delijn.be/stops/405926", "https://data.delijn.be/stops/406030"], ["https://data.delijn.be/stops/404156", "https://data.delijn.be/stops/404181"], ["https://data.delijn.be/stops/201749", "https://data.delijn.be/stops/202621"], ["https://data.delijn.be/stops/102236", "https://data.delijn.be/stops/105869"], ["https://data.delijn.be/stops/208625", "https://data.delijn.be/stops/209625"], ["https://data.delijn.be/stops/503839", "https://data.delijn.be/stops/508536"], ["https://data.delijn.be/stops/406092", "https://data.delijn.be/stops/406126"], ["https://data.delijn.be/stops/103993", "https://data.delijn.be/stops/105321"], ["https://data.delijn.be/stops/202683", "https://data.delijn.be/stops/202727"], ["https://data.delijn.be/stops/504408", "https://data.delijn.be/stops/509425"], ["https://data.delijn.be/stops/503308", "https://data.delijn.be/stops/505946"], ["https://data.delijn.be/stops/202116", "https://data.delijn.be/stops/202169"], ["https://data.delijn.be/stops/206198", "https://data.delijn.be/stops/206206"], ["https://data.delijn.be/stops/504670", "https://data.delijn.be/stops/508529"], ["https://data.delijn.be/stops/301571", "https://data.delijn.be/stops/301577"], ["https://data.delijn.be/stops/505358", "https://data.delijn.be/stops/505722"], ["https://data.delijn.be/stops/104858", "https://data.delijn.be/stops/107814"], ["https://data.delijn.be/stops/204174", "https://data.delijn.be/stops/204391"], ["https://data.delijn.be/stops/401030", "https://data.delijn.be/stops/401089"], ["https://data.delijn.be/stops/101481", "https://data.delijn.be/stops/108216"], ["https://data.delijn.be/stops/408073", "https://data.delijn.be/stops/410399"], ["https://data.delijn.be/stops/504199", "https://data.delijn.be/stops/509720"], ["https://data.delijn.be/stops/200748", "https://data.delijn.be/stops/201748"], ["https://data.delijn.be/stops/507620", "https://data.delijn.be/stops/508093"], ["https://data.delijn.be/stops/404972", "https://data.delijn.be/stops/410294"], ["https://data.delijn.be/stops/300660", "https://data.delijn.be/stops/302471"], ["https://data.delijn.be/stops/105206", "https://data.delijn.be/stops/108061"], ["https://data.delijn.be/stops/405215", "https://data.delijn.be/stops/405280"], ["https://data.delijn.be/stops/403263", "https://data.delijn.be/stops/403861"], ["https://data.delijn.be/stops/401049", "https://data.delijn.be/stops/401118"], ["https://data.delijn.be/stops/405264", "https://data.delijn.be/stops/407725"], ["https://data.delijn.be/stops/405897", "https://data.delijn.be/stops/406827"], ["https://data.delijn.be/stops/109561", "https://data.delijn.be/stops/109708"], ["https://data.delijn.be/stops/302651", "https://data.delijn.be/stops/308120"], ["https://data.delijn.be/stops/202248", "https://data.delijn.be/stops/203247"], ["https://data.delijn.be/stops/101285", "https://data.delijn.be/stops/101515"], ["https://data.delijn.be/stops/300039", "https://data.delijn.be/stops/300040"], ["https://data.delijn.be/stops/202384", "https://data.delijn.be/stops/203384"], ["https://data.delijn.be/stops/303304", "https://data.delijn.be/stops/305724"], ["https://data.delijn.be/stops/209225", "https://data.delijn.be/stops/219018"], ["https://data.delijn.be/stops/300651", "https://data.delijn.be/stops/305814"], ["https://data.delijn.be/stops/502569", "https://data.delijn.be/stops/507569"], ["https://data.delijn.be/stops/305767", "https://data.delijn.be/stops/305768"], ["https://data.delijn.be/stops/407614", "https://data.delijn.be/stops/410091"], ["https://data.delijn.be/stops/503235", "https://data.delijn.be/stops/508365"], ["https://data.delijn.be/stops/503261", "https://data.delijn.be/stops/508255"], ["https://data.delijn.be/stops/105349", "https://data.delijn.be/stops/105352"], ["https://data.delijn.be/stops/305176", "https://data.delijn.be/stops/308050"], ["https://data.delijn.be/stops/502094", "https://data.delijn.be/stops/502129"], ["https://data.delijn.be/stops/202118", "https://data.delijn.be/stops/204582"], ["https://data.delijn.be/stops/503080", "https://data.delijn.be/stops/503217"], ["https://data.delijn.be/stops/503487", "https://data.delijn.be/stops/503490"], ["https://data.delijn.be/stops/505304", "https://data.delijn.be/stops/509465"], ["https://data.delijn.be/stops/101008", "https://data.delijn.be/stops/104540"], ["https://data.delijn.be/stops/503509", "https://data.delijn.be/stops/509824"], ["https://data.delijn.be/stops/306923", "https://data.delijn.be/stops/307277"], ["https://data.delijn.be/stops/300708", "https://data.delijn.be/stops/303426"], ["https://data.delijn.be/stops/300456", "https://data.delijn.be/stops/304979"], ["https://data.delijn.be/stops/304268", "https://data.delijn.be/stops/304282"], ["https://data.delijn.be/stops/104495", "https://data.delijn.be/stops/104497"], ["https://data.delijn.be/stops/300316", "https://data.delijn.be/stops/303948"], ["https://data.delijn.be/stops/406177", "https://data.delijn.be/stops/410224"], ["https://data.delijn.be/stops/409355", "https://data.delijn.be/stops/409403"], ["https://data.delijn.be/stops/101182", "https://data.delijn.be/stops/107813"], ["https://data.delijn.be/stops/504029", "https://data.delijn.be/stops/509102"], ["https://data.delijn.be/stops/403054", "https://data.delijn.be/stops/403464"], ["https://data.delijn.be/stops/200726", "https://data.delijn.be/stops/202616"], ["https://data.delijn.be/stops/304130", "https://data.delijn.be/stops/306395"], ["https://data.delijn.be/stops/108420", "https://data.delijn.be/stops/108920"], ["https://data.delijn.be/stops/208122", "https://data.delijn.be/stops/218004"], ["https://data.delijn.be/stops/200397", "https://data.delijn.be/stops/208702"], ["https://data.delijn.be/stops/204775", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/205306", "https://data.delijn.be/stops/214008"], ["https://data.delijn.be/stops/305427", "https://data.delijn.be/stops/305429"], ["https://data.delijn.be/stops/505268", "https://data.delijn.be/stops/508052"], ["https://data.delijn.be/stops/102383", "https://data.delijn.be/stops/102933"], ["https://data.delijn.be/stops/103963", "https://data.delijn.be/stops/108995"], ["https://data.delijn.be/stops/303429", "https://data.delijn.be/stops/307951"], ["https://data.delijn.be/stops/502946", "https://data.delijn.be/stops/505666"], ["https://data.delijn.be/stops/301568", "https://data.delijn.be/stops/308926"], ["https://data.delijn.be/stops/308501", "https://data.delijn.be/stops/308502"], ["https://data.delijn.be/stops/401574", "https://data.delijn.be/stops/402104"], ["https://data.delijn.be/stops/403321", "https://data.delijn.be/stops/410350"], ["https://data.delijn.be/stops/306897", "https://data.delijn.be/stops/306901"], ["https://data.delijn.be/stops/208662", "https://data.delijn.be/stops/209663"], ["https://data.delijn.be/stops/102247", "https://data.delijn.be/stops/105861"], ["https://data.delijn.be/stops/101880", "https://data.delijn.be/stops/103119"], ["https://data.delijn.be/stops/200272", "https://data.delijn.be/stops/201345"], ["https://data.delijn.be/stops/101938", "https://data.delijn.be/stops/101977"], ["https://data.delijn.be/stops/204375", "https://data.delijn.be/stops/204376"], ["https://data.delijn.be/stops/301970", "https://data.delijn.be/stops/301982"], ["https://data.delijn.be/stops/503856", "https://data.delijn.be/stops/505218"], ["https://data.delijn.be/stops/303117", "https://data.delijn.be/stops/303119"], ["https://data.delijn.be/stops/403374", "https://data.delijn.be/stops/404122"], ["https://data.delijn.be/stops/404062", "https://data.delijn.be/stops/408964"], ["https://data.delijn.be/stops/205028", "https://data.delijn.be/stops/205818"], ["https://data.delijn.be/stops/307835", "https://data.delijn.be/stops/307837"], ["https://data.delijn.be/stops/203292", "https://data.delijn.be/stops/203294"], ["https://data.delijn.be/stops/504385", "https://data.delijn.be/stops/509381"], ["https://data.delijn.be/stops/104680", "https://data.delijn.be/stops/108030"], ["https://data.delijn.be/stops/201204", "https://data.delijn.be/stops/202555"], ["https://data.delijn.be/stops/408446", "https://data.delijn.be/stops/408447"], ["https://data.delijn.be/stops/503467", "https://data.delijn.be/stops/508197"], ["https://data.delijn.be/stops/405205", "https://data.delijn.be/stops/408369"], ["https://data.delijn.be/stops/101787", "https://data.delijn.be/stops/109229"], ["https://data.delijn.be/stops/107227", "https://data.delijn.be/stops/107229"], ["https://data.delijn.be/stops/201246", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/204485", "https://data.delijn.be/stops/205822"], ["https://data.delijn.be/stops/302947", "https://data.delijn.be/stops/308656"], ["https://data.delijn.be/stops/204249", "https://data.delijn.be/stops/204260"], ["https://data.delijn.be/stops/304339", "https://data.delijn.be/stops/305220"], ["https://data.delijn.be/stops/403322", "https://data.delijn.be/stops/407595"], ["https://data.delijn.be/stops/409114", "https://data.delijn.be/stops/409123"], ["https://data.delijn.be/stops/302491", "https://data.delijn.be/stops/302492"], ["https://data.delijn.be/stops/300843", "https://data.delijn.be/stops/306719"], ["https://data.delijn.be/stops/202812", "https://data.delijn.be/stops/203744"], ["https://data.delijn.be/stops/305846", "https://data.delijn.be/stops/306394"], ["https://data.delijn.be/stops/304723", "https://data.delijn.be/stops/304729"], ["https://data.delijn.be/stops/209112", "https://data.delijn.be/stops/209788"], ["https://data.delijn.be/stops/104362", "https://data.delijn.be/stops/105210"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/202622"], ["https://data.delijn.be/stops/403438", "https://data.delijn.be/stops/404849"], ["https://data.delijn.be/stops/402320", "https://data.delijn.be/stops/402376"], ["https://data.delijn.be/stops/503081", "https://data.delijn.be/stops/505297"], ["https://data.delijn.be/stops/102232", "https://data.delijn.be/stops/102233"], ["https://data.delijn.be/stops/308148", "https://data.delijn.be/stops/308164"], ["https://data.delijn.be/stops/402961", "https://data.delijn.be/stops/407043"], ["https://data.delijn.be/stops/210405", "https://data.delijn.be/stops/211405"], ["https://data.delijn.be/stops/301679", "https://data.delijn.be/stops/302397"], ["https://data.delijn.be/stops/508633", "https://data.delijn.be/stops/590009"], ["https://data.delijn.be/stops/106514", "https://data.delijn.be/stops/106519"], ["https://data.delijn.be/stops/504100", "https://data.delijn.be/stops/504256"], ["https://data.delijn.be/stops/103498", "https://data.delijn.be/stops/103503"], ["https://data.delijn.be/stops/501527", "https://data.delijn.be/stops/506199"], ["https://data.delijn.be/stops/504362", "https://data.delijn.be/stops/508560"], ["https://data.delijn.be/stops/400885", "https://data.delijn.be/stops/409657"], ["https://data.delijn.be/stops/202909", "https://data.delijn.be/stops/203909"], ["https://data.delijn.be/stops/503253", "https://data.delijn.be/stops/503264"], ["https://data.delijn.be/stops/501050", "https://data.delijn.be/stops/506047"], ["https://data.delijn.be/stops/406659", "https://data.delijn.be/stops/406693"], ["https://data.delijn.be/stops/109915", "https://data.delijn.be/stops/109918"], ["https://data.delijn.be/stops/402829", "https://data.delijn.be/stops/402896"], ["https://data.delijn.be/stops/208521", "https://data.delijn.be/stops/209153"], ["https://data.delijn.be/stops/410273", "https://data.delijn.be/stops/410277"], ["https://data.delijn.be/stops/103165", "https://data.delijn.be/stops/103170"], ["https://data.delijn.be/stops/202474", "https://data.delijn.be/stops/203474"], ["https://data.delijn.be/stops/208346", "https://data.delijn.be/stops/209346"], ["https://data.delijn.be/stops/304803", "https://data.delijn.be/stops/304806"], ["https://data.delijn.be/stops/502753", "https://data.delijn.be/stops/507753"], ["https://data.delijn.be/stops/103985", "https://data.delijn.be/stops/105680"], ["https://data.delijn.be/stops/101471", "https://data.delijn.be/stops/109114"], ["https://data.delijn.be/stops/402945", "https://data.delijn.be/stops/306391"], ["https://data.delijn.be/stops/305668", "https://data.delijn.be/stops/305732"], ["https://data.delijn.be/stops/107115", "https://data.delijn.be/stops/108290"], ["https://data.delijn.be/stops/200631", "https://data.delijn.be/stops/201630"], ["https://data.delijn.be/stops/200174", "https://data.delijn.be/stops/200277"], ["https://data.delijn.be/stops/503817", "https://data.delijn.be/stops/508819"], ["https://data.delijn.be/stops/304968", "https://data.delijn.be/stops/304969"], ["https://data.delijn.be/stops/407827", "https://data.delijn.be/stops/408014"], ["https://data.delijn.be/stops/404979", "https://data.delijn.be/stops/410217"], ["https://data.delijn.be/stops/407600", "https://data.delijn.be/stops/407609"], ["https://data.delijn.be/stops/401010", "https://data.delijn.be/stops/406712"], ["https://data.delijn.be/stops/307809", "https://data.delijn.be/stops/307810"], ["https://data.delijn.be/stops/206348", "https://data.delijn.be/stops/206374"], ["https://data.delijn.be/stops/303791", "https://data.delijn.be/stops/303808"], ["https://data.delijn.be/stops/207197", "https://data.delijn.be/stops/207198"], ["https://data.delijn.be/stops/407198", "https://data.delijn.be/stops/407381"], ["https://data.delijn.be/stops/203865", "https://data.delijn.be/stops/203886"], ["https://data.delijn.be/stops/500025", "https://data.delijn.be/stops/507478"], ["https://data.delijn.be/stops/104943", "https://data.delijn.be/stops/107063"], ["https://data.delijn.be/stops/400656", "https://data.delijn.be/stops/400970"], ["https://data.delijn.be/stops/406121", "https://data.delijn.be/stops/406122"], ["https://data.delijn.be/stops/400892", "https://data.delijn.be/stops/409539"], ["https://data.delijn.be/stops/300489", "https://data.delijn.be/stops/302867"], ["https://data.delijn.be/stops/404401", "https://data.delijn.be/stops/404426"], ["https://data.delijn.be/stops/503800", "https://data.delijn.be/stops/505394"], ["https://data.delijn.be/stops/300026", "https://data.delijn.be/stops/300049"], ["https://data.delijn.be/stops/202518", "https://data.delijn.be/stops/203518"], ["https://data.delijn.be/stops/403142", "https://data.delijn.be/stops/403143"], ["https://data.delijn.be/stops/504213", "https://data.delijn.be/stops/504220"], ["https://data.delijn.be/stops/300021", "https://data.delijn.be/stops/307001"], ["https://data.delijn.be/stops/201665", "https://data.delijn.be/stops/202216"], ["https://data.delijn.be/stops/208591", "https://data.delijn.be/stops/307024"], ["https://data.delijn.be/stops/201705", "https://data.delijn.be/stops/201706"], ["https://data.delijn.be/stops/200882", "https://data.delijn.be/stops/202060"], ["https://data.delijn.be/stops/300822", "https://data.delijn.be/stops/305396"], ["https://data.delijn.be/stops/301984", "https://data.delijn.be/stops/308760"], ["https://data.delijn.be/stops/505348", "https://data.delijn.be/stops/507426"], ["https://data.delijn.be/stops/400843", "https://data.delijn.be/stops/409562"], ["https://data.delijn.be/stops/303738", "https://data.delijn.be/stops/303739"], ["https://data.delijn.be/stops/503366", "https://data.delijn.be/stops/510019"], ["https://data.delijn.be/stops/103158", "https://data.delijn.be/stops/103159"], ["https://data.delijn.be/stops/102212", "https://data.delijn.be/stops/102228"], ["https://data.delijn.be/stops/503793", "https://data.delijn.be/stops/508793"], ["https://data.delijn.be/stops/400806", "https://data.delijn.be/stops/400854"], ["https://data.delijn.be/stops/205251", "https://data.delijn.be/stops/205252"], ["https://data.delijn.be/stops/504971", "https://data.delijn.be/stops/509971"], ["https://data.delijn.be/stops/503206", "https://data.delijn.be/stops/508814"], ["https://data.delijn.be/stops/102197", "https://data.delijn.be/stops/105262"], ["https://data.delijn.be/stops/301092", "https://data.delijn.be/stops/306663"], ["https://data.delijn.be/stops/106108", "https://data.delijn.be/stops/106170"], ["https://data.delijn.be/stops/208220", "https://data.delijn.be/stops/209219"], ["https://data.delijn.be/stops/404601", "https://data.delijn.be/stops/406944"], ["https://data.delijn.be/stops/408718", "https://data.delijn.be/stops/408908"], ["https://data.delijn.be/stops/109129", "https://data.delijn.be/stops/109132"], ["https://data.delijn.be/stops/402626", "https://data.delijn.be/stops/402637"], ["https://data.delijn.be/stops/207874", "https://data.delijn.be/stops/207904"], ["https://data.delijn.be/stops/306872", "https://data.delijn.be/stops/306873"], ["https://data.delijn.be/stops/306698", "https://data.delijn.be/stops/307936"], ["https://data.delijn.be/stops/302189", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/505076", "https://data.delijn.be/stops/505739"], ["https://data.delijn.be/stops/101756", "https://data.delijn.be/stops/102272"], ["https://data.delijn.be/stops/106660", "https://data.delijn.be/stops/106661"], ["https://data.delijn.be/stops/107131", "https://data.delijn.be/stops/107134"], ["https://data.delijn.be/stops/307650", "https://data.delijn.be/stops/307651"], ["https://data.delijn.be/stops/101018", "https://data.delijn.be/stops/101019"], ["https://data.delijn.be/stops/300653", "https://data.delijn.be/stops/300657"], ["https://data.delijn.be/stops/305860", "https://data.delijn.be/stops/305872"], ["https://data.delijn.be/stops/406318", "https://data.delijn.be/stops/406374"], ["https://data.delijn.be/stops/101800", "https://data.delijn.be/stops/101801"], ["https://data.delijn.be/stops/403258", "https://data.delijn.be/stops/403261"], ["https://data.delijn.be/stops/102831", "https://data.delijn.be/stops/102832"], ["https://data.delijn.be/stops/407594", "https://data.delijn.be/stops/407676"], ["https://data.delijn.be/stops/106312", "https://data.delijn.be/stops/106313"], ["https://data.delijn.be/stops/400910", "https://data.delijn.be/stops/400962"], ["https://data.delijn.be/stops/208479", "https://data.delijn.be/stops/208480"], ["https://data.delijn.be/stops/200150", "https://data.delijn.be/stops/201150"], ["https://data.delijn.be/stops/101664", "https://data.delijn.be/stops/101666"], ["https://data.delijn.be/stops/201334", "https://data.delijn.be/stops/201527"], ["https://data.delijn.be/stops/502710", "https://data.delijn.be/stops/507318"], ["https://data.delijn.be/stops/502152", "https://data.delijn.be/stops/502818"], ["https://data.delijn.be/stops/201875", "https://data.delijn.be/stops/211854"], ["https://data.delijn.be/stops/402044", "https://data.delijn.be/stops/410078"], ["https://data.delijn.be/stops/206124", "https://data.delijn.be/stops/206133"], ["https://data.delijn.be/stops/201768", "https://data.delijn.be/stops/201805"], ["https://data.delijn.be/stops/401311", "https://data.delijn.be/stops/401319"], ["https://data.delijn.be/stops/504013", "https://data.delijn.be/stops/509013"], ["https://data.delijn.be/stops/304570", "https://data.delijn.be/stops/304590"], ["https://data.delijn.be/stops/203027", "https://data.delijn.be/stops/203028"], ["https://data.delijn.be/stops/503198", "https://data.delijn.be/stops/503984"], ["https://data.delijn.be/stops/404666", "https://data.delijn.be/stops/404675"], ["https://data.delijn.be/stops/102668", "https://data.delijn.be/stops/300112"], ["https://data.delijn.be/stops/406431", "https://data.delijn.be/stops/409407"], ["https://data.delijn.be/stops/204105", "https://data.delijn.be/stops/204350"], ["https://data.delijn.be/stops/403072", "https://data.delijn.be/stops/403162"], ["https://data.delijn.be/stops/407689", "https://data.delijn.be/stops/409780"], ["https://data.delijn.be/stops/400583", "https://data.delijn.be/stops/400590"], ["https://data.delijn.be/stops/200524", "https://data.delijn.be/stops/201525"], ["https://data.delijn.be/stops/306650", "https://data.delijn.be/stops/306652"], ["https://data.delijn.be/stops/301898", "https://data.delijn.be/stops/306955"], ["https://data.delijn.be/stops/207703", "https://data.delijn.be/stops/207899"], ["https://data.delijn.be/stops/307341", "https://data.delijn.be/stops/308453"], ["https://data.delijn.be/stops/502598", "https://data.delijn.be/stops/507597"], ["https://data.delijn.be/stops/202118", "https://data.delijn.be/stops/205172"], ["https://data.delijn.be/stops/108815", "https://data.delijn.be/stops/108965"], ["https://data.delijn.be/stops/200924", "https://data.delijn.be/stops/203704"], ["https://data.delijn.be/stops/201415", "https://data.delijn.be/stops/208889"], ["https://data.delijn.be/stops/101835", "https://data.delijn.be/stops/101990"], ["https://data.delijn.be/stops/103203", "https://data.delijn.be/stops/106661"], ["https://data.delijn.be/stops/105891", "https://data.delijn.be/stops/105903"], ["https://data.delijn.be/stops/202448", "https://data.delijn.be/stops/203342"], ["https://data.delijn.be/stops/300578", "https://data.delijn.be/stops/300582"], ["https://data.delijn.be/stops/200413", "https://data.delijn.be/stops/201410"], ["https://data.delijn.be/stops/107056", "https://data.delijn.be/stops/108219"], ["https://data.delijn.be/stops/405238", "https://data.delijn.be/stops/405239"], ["https://data.delijn.be/stops/507140", "https://data.delijn.be/stops/507643"], ["https://data.delijn.be/stops/206018", "https://data.delijn.be/stops/206912"], ["https://data.delijn.be/stops/307982", "https://data.delijn.be/stops/307984"], ["https://data.delijn.be/stops/301272", "https://data.delijn.be/stops/307033"], ["https://data.delijn.be/stops/102509", "https://data.delijn.be/stops/102512"], ["https://data.delijn.be/stops/501695", "https://data.delijn.be/stops/505688"], ["https://data.delijn.be/stops/406770", "https://data.delijn.be/stops/406842"], ["https://data.delijn.be/stops/300750", "https://data.delijn.be/stops/300790"], ["https://data.delijn.be/stops/202628", "https://data.delijn.be/stops/203643"], ["https://data.delijn.be/stops/209286", "https://data.delijn.be/stops/209287"], ["https://data.delijn.be/stops/508312", "https://data.delijn.be/stops/509312"], ["https://data.delijn.be/stops/103023", "https://data.delijn.be/stops/109677"], ["https://data.delijn.be/stops/300418", "https://data.delijn.be/stops/300420"], ["https://data.delijn.be/stops/304409", "https://data.delijn.be/stops/306858"], ["https://data.delijn.be/stops/204225", "https://data.delijn.be/stops/205225"], ["https://data.delijn.be/stops/300016", "https://data.delijn.be/stops/302871"], ["https://data.delijn.be/stops/107110", "https://data.delijn.be/stops/107585"], ["https://data.delijn.be/stops/404649", "https://data.delijn.be/stops/409562"], ["https://data.delijn.be/stops/108189", "https://data.delijn.be/stops/108191"], ["https://data.delijn.be/stops/503099", "https://data.delijn.be/stops/508099"], ["https://data.delijn.be/stops/203929", "https://data.delijn.be/stops/210097"], ["https://data.delijn.be/stops/404364", "https://data.delijn.be/stops/404365"], ["https://data.delijn.be/stops/104260", "https://data.delijn.be/stops/108085"], ["https://data.delijn.be/stops/402816", "https://data.delijn.be/stops/404620"], ["https://data.delijn.be/stops/407704", "https://data.delijn.be/stops/409632"], ["https://data.delijn.be/stops/504027", "https://data.delijn.be/stops/504706"], ["https://data.delijn.be/stops/301959", "https://data.delijn.be/stops/301960"], ["https://data.delijn.be/stops/102730", "https://data.delijn.be/stops/305766"], ["https://data.delijn.be/stops/409722", "https://data.delijn.be/stops/409725"], ["https://data.delijn.be/stops/502527", "https://data.delijn.be/stops/507808"], ["https://data.delijn.be/stops/308810", "https://data.delijn.be/stops/308811"], ["https://data.delijn.be/stops/301923", "https://data.delijn.be/stops/301924"], ["https://data.delijn.be/stops/303379", "https://data.delijn.be/stops/303396"], ["https://data.delijn.be/stops/502543", "https://data.delijn.be/stops/502667"], ["https://data.delijn.be/stops/503212", "https://data.delijn.be/stops/503354"], ["https://data.delijn.be/stops/400586", "https://data.delijn.be/stops/400616"], ["https://data.delijn.be/stops/302404", "https://data.delijn.be/stops/302407"], ["https://data.delijn.be/stops/504142", "https://data.delijn.be/stops/505709"], ["https://data.delijn.be/stops/505811", "https://data.delijn.be/stops/505812"], ["https://data.delijn.be/stops/303512", "https://data.delijn.be/stops/307891"], ["https://data.delijn.be/stops/105084", "https://data.delijn.be/stops/204608"], ["https://data.delijn.be/stops/301402", "https://data.delijn.be/stops/304698"], ["https://data.delijn.be/stops/401882", "https://data.delijn.be/stops/410305"], ["https://data.delijn.be/stops/501019", "https://data.delijn.be/stops/501606"], ["https://data.delijn.be/stops/106629", "https://data.delijn.be/stops/106675"], ["https://data.delijn.be/stops/307828", "https://data.delijn.be/stops/307829"], ["https://data.delijn.be/stops/202273", "https://data.delijn.be/stops/202274"], ["https://data.delijn.be/stops/308468", "https://data.delijn.be/stops/308689"], ["https://data.delijn.be/stops/307965", "https://data.delijn.be/stops/307975"], ["https://data.delijn.be/stops/402700", "https://data.delijn.be/stops/402946"], ["https://data.delijn.be/stops/400887", "https://data.delijn.be/stops/409614"], ["https://data.delijn.be/stops/506213", "https://data.delijn.be/stops/506214"], ["https://data.delijn.be/stops/201699", "https://data.delijn.be/stops/203771"], ["https://data.delijn.be/stops/109882", "https://data.delijn.be/stops/204020"], ["https://data.delijn.be/stops/103541", "https://data.delijn.be/stops/106723"], ["https://data.delijn.be/stops/102042", "https://data.delijn.be/stops/107829"], ["https://data.delijn.be/stops/302662", "https://data.delijn.be/stops/302694"], ["https://data.delijn.be/stops/303850", "https://data.delijn.be/stops/303863"], ["https://data.delijn.be/stops/409356", "https://data.delijn.be/stops/409370"], ["https://data.delijn.be/stops/204595", "https://data.delijn.be/stops/205094"], ["https://data.delijn.be/stops/505523", "https://data.delijn.be/stops/505623"], ["https://data.delijn.be/stops/206739", "https://data.delijn.be/stops/307768"], ["https://data.delijn.be/stops/103068", "https://data.delijn.be/stops/105762"], ["https://data.delijn.be/stops/302168", "https://data.delijn.be/stops/304163"], ["https://data.delijn.be/stops/307414", "https://data.delijn.be/stops/308827"], ["https://data.delijn.be/stops/109445", "https://data.delijn.be/stops/109447"], ["https://data.delijn.be/stops/407602", "https://data.delijn.be/stops/407699"], ["https://data.delijn.be/stops/201929", "https://data.delijn.be/stops/202439"], ["https://data.delijn.be/stops/403412", "https://data.delijn.be/stops/408073"], ["https://data.delijn.be/stops/105268", "https://data.delijn.be/stops/105272"], ["https://data.delijn.be/stops/207686", "https://data.delijn.be/stops/207899"], ["https://data.delijn.be/stops/106623", "https://data.delijn.be/stops/106625"], ["https://data.delijn.be/stops/502314", "https://data.delijn.be/stops/505673"], ["https://data.delijn.be/stops/302864", "https://data.delijn.be/stops/302926"], ["https://data.delijn.be/stops/207287", "https://data.delijn.be/stops/207877"], ["https://data.delijn.be/stops/503346", "https://data.delijn.be/stops/507818"], ["https://data.delijn.be/stops/300854", "https://data.delijn.be/stops/300855"], ["https://data.delijn.be/stops/501366", "https://data.delijn.be/stops/506129"], ["https://data.delijn.be/stops/300825", "https://data.delijn.be/stops/304127"], ["https://data.delijn.be/stops/502815", "https://data.delijn.be/stops/507281"], ["https://data.delijn.be/stops/403218", "https://data.delijn.be/stops/403377"], ["https://data.delijn.be/stops/407852", "https://data.delijn.be/stops/407853"], ["https://data.delijn.be/stops/102241", "https://data.delijn.be/stops/105879"], ["https://data.delijn.be/stops/303207", "https://data.delijn.be/stops/303214"], ["https://data.delijn.be/stops/509599", "https://data.delijn.be/stops/509601"], ["https://data.delijn.be/stops/101481", "https://data.delijn.be/stops/109286"], ["https://data.delijn.be/stops/109914", "https://data.delijn.be/stops/301151"], ["https://data.delijn.be/stops/501056", "https://data.delijn.be/stops/506010"], ["https://data.delijn.be/stops/208381", "https://data.delijn.be/stops/209380"], ["https://data.delijn.be/stops/300320", "https://data.delijn.be/stops/308108"], ["https://data.delijn.be/stops/304367", "https://data.delijn.be/stops/307097"], ["https://data.delijn.be/stops/108673", "https://data.delijn.be/stops/109894"], ["https://data.delijn.be/stops/403434", "https://data.delijn.be/stops/403498"], ["https://data.delijn.be/stops/302314", "https://data.delijn.be/stops/302315"], ["https://data.delijn.be/stops/106925", "https://data.delijn.be/stops/106943"], ["https://data.delijn.be/stops/403921", "https://data.delijn.be/stops/403997"], ["https://data.delijn.be/stops/505172", "https://data.delijn.be/stops/507733"], ["https://data.delijn.be/stops/302603", "https://data.delijn.be/stops/306404"], ["https://data.delijn.be/stops/201182", "https://data.delijn.be/stops/203213"], ["https://data.delijn.be/stops/201966", "https://data.delijn.be/stops/209047"], ["https://data.delijn.be/stops/206277", "https://data.delijn.be/stops/206533"], ["https://data.delijn.be/stops/402427", "https://data.delijn.be/stops/405562"], ["https://data.delijn.be/stops/302730", "https://data.delijn.be/stops/302738"], ["https://data.delijn.be/stops/200336", "https://data.delijn.be/stops/201282"], ["https://data.delijn.be/stops/302553", "https://data.delijn.be/stops/305980"], ["https://data.delijn.be/stops/107910", "https://data.delijn.be/stops/109751"], ["https://data.delijn.be/stops/408636", "https://data.delijn.be/stops/408752"], ["https://data.delijn.be/stops/405723", "https://data.delijn.be/stops/408348"], ["https://data.delijn.be/stops/107695", "https://data.delijn.be/stops/108485"], ["https://data.delijn.be/stops/306554", "https://data.delijn.be/stops/306559"], ["https://data.delijn.be/stops/207802", "https://data.delijn.be/stops/207925"], ["https://data.delijn.be/stops/102756", "https://data.delijn.be/stops/103308"], ["https://data.delijn.be/stops/503921", "https://data.delijn.be/stops/508921"], ["https://data.delijn.be/stops/301538", "https://data.delijn.be/stops/301549"], ["https://data.delijn.be/stops/304793", "https://data.delijn.be/stops/304800"], ["https://data.delijn.be/stops/303587", "https://data.delijn.be/stops/305330"], ["https://data.delijn.be/stops/402395", "https://data.delijn.be/stops/402453"], ["https://data.delijn.be/stops/301691", "https://data.delijn.be/stops/301693"], ["https://data.delijn.be/stops/207459", "https://data.delijn.be/stops/207462"], ["https://data.delijn.be/stops/206507", "https://data.delijn.be/stops/207507"], ["https://data.delijn.be/stops/301766", "https://data.delijn.be/stops/306878"], ["https://data.delijn.be/stops/508996", "https://data.delijn.be/stops/509025"], ["https://data.delijn.be/stops/401416", "https://data.delijn.be/stops/307852"], ["https://data.delijn.be/stops/302710", "https://data.delijn.be/stops/308598"], ["https://data.delijn.be/stops/304399", "https://data.delijn.be/stops/307420"], ["https://data.delijn.be/stops/202239", "https://data.delijn.be/stops/505514"], ["https://data.delijn.be/stops/501429", "https://data.delijn.be/stops/506433"], ["https://data.delijn.be/stops/202078", "https://data.delijn.be/stops/202655"], ["https://data.delijn.be/stops/408602", "https://data.delijn.be/stops/408603"], ["https://data.delijn.be/stops/403788", "https://data.delijn.be/stops/408960"], ["https://data.delijn.be/stops/504515", "https://data.delijn.be/stops/509720"], ["https://data.delijn.be/stops/401799", "https://data.delijn.be/stops/401811"], ["https://data.delijn.be/stops/207800", "https://data.delijn.be/stops/208565"], ["https://data.delijn.be/stops/201247", "https://data.delijn.be/stops/202757"], ["https://data.delijn.be/stops/504581", "https://data.delijn.be/stops/505535"], ["https://data.delijn.be/stops/202527", "https://data.delijn.be/stops/202528"], ["https://data.delijn.be/stops/403702", "https://data.delijn.be/stops/403784"], ["https://data.delijn.be/stops/403565", "https://data.delijn.be/stops/410285"], ["https://data.delijn.be/stops/209082", "https://data.delijn.be/stops/209083"], ["https://data.delijn.be/stops/404129", "https://data.delijn.be/stops/404131"], ["https://data.delijn.be/stops/502510", "https://data.delijn.be/stops/507510"], ["https://data.delijn.be/stops/107494", "https://data.delijn.be/stops/305794"], ["https://data.delijn.be/stops/206141", "https://data.delijn.be/stops/206722"], ["https://data.delijn.be/stops/101273", "https://data.delijn.be/stops/106025"], ["https://data.delijn.be/stops/403711", "https://data.delijn.be/stops/403787"], ["https://data.delijn.be/stops/403638", "https://data.delijn.be/stops/407790"], ["https://data.delijn.be/stops/305568", "https://data.delijn.be/stops/307184"], ["https://data.delijn.be/stops/403209", "https://data.delijn.be/stops/405126"], ["https://data.delijn.be/stops/302398", "https://data.delijn.be/stops/302401"], ["https://data.delijn.be/stops/101729", "https://data.delijn.be/stops/106048"], ["https://data.delijn.be/stops/403525", "https://data.delijn.be/stops/404580"], ["https://data.delijn.be/stops/305819", "https://data.delijn.be/stops/306588"], ["https://data.delijn.be/stops/400634", "https://data.delijn.be/stops/403036"], ["https://data.delijn.be/stops/501038", "https://data.delijn.be/stops/506023"], ["https://data.delijn.be/stops/502375", "https://data.delijn.be/stops/502376"], ["https://data.delijn.be/stops/508682", "https://data.delijn.be/stops/508688"], ["https://data.delijn.be/stops/102721", "https://data.delijn.be/stops/104700"], ["https://data.delijn.be/stops/200707", "https://data.delijn.be/stops/203435"], ["https://data.delijn.be/stops/501294", "https://data.delijn.be/stops/506294"], ["https://data.delijn.be/stops/502007", "https://data.delijn.be/stops/505749"], ["https://data.delijn.be/stops/400465", "https://data.delijn.be/stops/408824"], ["https://data.delijn.be/stops/504232", "https://data.delijn.be/stops/509235"], ["https://data.delijn.be/stops/405716", "https://data.delijn.be/stops/405745"], ["https://data.delijn.be/stops/400588", "https://data.delijn.be/stops/400626"], ["https://data.delijn.be/stops/209288", "https://data.delijn.be/stops/209289"], ["https://data.delijn.be/stops/402208", "https://data.delijn.be/stops/402501"], ["https://data.delijn.be/stops/107925", "https://data.delijn.be/stops/109725"], ["https://data.delijn.be/stops/302037", "https://data.delijn.be/stops/303183"], ["https://data.delijn.be/stops/405942", "https://data.delijn.be/stops/405943"], ["https://data.delijn.be/stops/401459", "https://data.delijn.be/stops/402281"], ["https://data.delijn.be/stops/401573", "https://data.delijn.be/stops/402372"], ["https://data.delijn.be/stops/103925", "https://data.delijn.be/stops/104655"], ["https://data.delijn.be/stops/108199", "https://data.delijn.be/stops/108233"], ["https://data.delijn.be/stops/202942", "https://data.delijn.be/stops/218023"], ["https://data.delijn.be/stops/409379", "https://data.delijn.be/stops/409391"], ["https://data.delijn.be/stops/201847", "https://data.delijn.be/stops/210022"], ["https://data.delijn.be/stops/501033", "https://data.delijn.be/stops/506488"], ["https://data.delijn.be/stops/305585", "https://data.delijn.be/stops/306765"], ["https://data.delijn.be/stops/203124", "https://data.delijn.be/stops/203601"], ["https://data.delijn.be/stops/502657", "https://data.delijn.be/stops/507658"], ["https://data.delijn.be/stops/205129", "https://data.delijn.be/stops/205575"], ["https://data.delijn.be/stops/406473", "https://data.delijn.be/stops/406477"], ["https://data.delijn.be/stops/200893", "https://data.delijn.be/stops/203791"], ["https://data.delijn.be/stops/404491", "https://data.delijn.be/stops/404539"], ["https://data.delijn.be/stops/505275", "https://data.delijn.be/stops/508229"], ["https://data.delijn.be/stops/407060", "https://data.delijn.be/stops/407061"], ["https://data.delijn.be/stops/300416", "https://data.delijn.be/stops/300425"], ["https://data.delijn.be/stops/200199", "https://data.delijn.be/stops/203479"], ["https://data.delijn.be/stops/204164", "https://data.delijn.be/stops/205590"], ["https://data.delijn.be/stops/502687", "https://data.delijn.be/stops/507687"], ["https://data.delijn.be/stops/400752", "https://data.delijn.be/stops/400753"], ["https://data.delijn.be/stops/300297", "https://data.delijn.be/stops/300317"], ["https://data.delijn.be/stops/305125", "https://data.delijn.be/stops/308093"], ["https://data.delijn.be/stops/503665", "https://data.delijn.be/stops/508662"], ["https://data.delijn.be/stops/302920", "https://data.delijn.be/stops/302921"], ["https://data.delijn.be/stops/101376", "https://data.delijn.be/stops/101400"], ["https://data.delijn.be/stops/203329", "https://data.delijn.be/stops/210112"], ["https://data.delijn.be/stops/204649", "https://data.delijn.be/stops/205649"], ["https://data.delijn.be/stops/303423", "https://data.delijn.be/stops/303433"], ["https://data.delijn.be/stops/502931", "https://data.delijn.be/stops/503728"], ["https://data.delijn.be/stops/502473", "https://data.delijn.be/stops/507473"], ["https://data.delijn.be/stops/306876", "https://data.delijn.be/stops/307424"], ["https://data.delijn.be/stops/305027", "https://data.delijn.be/stops/305031"], ["https://data.delijn.be/stops/201864", "https://data.delijn.be/stops/203033"], ["https://data.delijn.be/stops/503629", "https://data.delijn.be/stops/508625"], ["https://data.delijn.be/stops/403754", "https://data.delijn.be/stops/403762"], ["https://data.delijn.be/stops/400884", "https://data.delijn.be/stops/409657"], ["https://data.delijn.be/stops/108087", "https://data.delijn.be/stops/108687"], ["https://data.delijn.be/stops/406610", "https://data.delijn.be/stops/406611"], ["https://data.delijn.be/stops/301998", "https://data.delijn.be/stops/306198"], ["https://data.delijn.be/stops/106120", "https://data.delijn.be/stops/106122"], ["https://data.delijn.be/stops/408769", "https://data.delijn.be/stops/408772"], ["https://data.delijn.be/stops/404961", "https://data.delijn.be/stops/404963"], ["https://data.delijn.be/stops/401006", "https://data.delijn.be/stops/401007"], ["https://data.delijn.be/stops/503015", "https://data.delijn.be/stops/503016"], ["https://data.delijn.be/stops/108327", "https://data.delijn.be/stops/109304"], ["https://data.delijn.be/stops/502028", "https://data.delijn.be/stops/507051"], ["https://data.delijn.be/stops/305663", "https://data.delijn.be/stops/305670"], ["https://data.delijn.be/stops/201897", "https://data.delijn.be/stops/202147"], ["https://data.delijn.be/stops/104020", "https://data.delijn.be/stops/104805"], ["https://data.delijn.be/stops/206560", "https://data.delijn.be/stops/207540"], ["https://data.delijn.be/stops/205100", "https://data.delijn.be/stops/205713"], ["https://data.delijn.be/stops/106965", "https://data.delijn.be/stops/106976"], ["https://data.delijn.be/stops/405814", "https://data.delijn.be/stops/407292"], ["https://data.delijn.be/stops/305053", "https://data.delijn.be/stops/307873"], ["https://data.delijn.be/stops/200376", "https://data.delijn.be/stops/201343"], ["https://data.delijn.be/stops/106024", "https://data.delijn.be/stops/106026"], ["https://data.delijn.be/stops/406669", "https://data.delijn.be/stops/406670"], ["https://data.delijn.be/stops/403497", "https://data.delijn.be/stops/410028"], ["https://data.delijn.be/stops/302568", "https://data.delijn.be/stops/302771"], ["https://data.delijn.be/stops/201819", "https://data.delijn.be/stops/204987"], ["https://data.delijn.be/stops/504019", "https://data.delijn.be/stops/509019"], ["https://data.delijn.be/stops/503587", "https://data.delijn.be/stops/505292"], ["https://data.delijn.be/stops/102929", "https://data.delijn.be/stops/106237"], ["https://data.delijn.be/stops/102209", "https://data.delijn.be/stops/106243"], ["https://data.delijn.be/stops/202634", "https://data.delijn.be/stops/205067"], ["https://data.delijn.be/stops/300189", "https://data.delijn.be/stops/300632"], ["https://data.delijn.be/stops/200887", "https://data.delijn.be/stops/201115"], ["https://data.delijn.be/stops/200817", "https://data.delijn.be/stops/200872"], ["https://data.delijn.be/stops/304935", "https://data.delijn.be/stops/304943"], ["https://data.delijn.be/stops/204678", "https://data.delijn.be/stops/205678"], ["https://data.delijn.be/stops/403333", "https://data.delijn.be/stops/403347"], ["https://data.delijn.be/stops/402967", "https://data.delijn.be/stops/402970"], ["https://data.delijn.be/stops/106528", "https://data.delijn.be/stops/106530"], ["https://data.delijn.be/stops/202216", "https://data.delijn.be/stops/211116"], ["https://data.delijn.be/stops/204729", "https://data.delijn.be/stops/205729"], ["https://data.delijn.be/stops/102199", "https://data.delijn.be/stops/105798"], ["https://data.delijn.be/stops/107173", "https://data.delijn.be/stops/107732"], ["https://data.delijn.be/stops/501097", "https://data.delijn.be/stops/502214"], ["https://data.delijn.be/stops/105233", "https://data.delijn.be/stops/105237"], ["https://data.delijn.be/stops/501284", "https://data.delijn.be/stops/501320"], ["https://data.delijn.be/stops/304155", "https://data.delijn.be/stops/306208"], ["https://data.delijn.be/stops/206196", "https://data.delijn.be/stops/206854"], ["https://data.delijn.be/stops/105424", "https://data.delijn.be/stops/109843"], ["https://data.delijn.be/stops/206192", "https://data.delijn.be/stops/207193"], ["https://data.delijn.be/stops/502114", "https://data.delijn.be/stops/507109"], ["https://data.delijn.be/stops/304724", "https://data.delijn.be/stops/304733"], ["https://data.delijn.be/stops/502928", "https://data.delijn.be/stops/505144"], ["https://data.delijn.be/stops/300498", "https://data.delijn.be/stops/302076"], ["https://data.delijn.be/stops/501212", "https://data.delijn.be/stops/506212"], ["https://data.delijn.be/stops/401872", "https://data.delijn.be/stops/406337"], ["https://data.delijn.be/stops/403329", "https://data.delijn.be/stops/403347"], ["https://data.delijn.be/stops/305331", "https://data.delijn.be/stops/308710"], ["https://data.delijn.be/stops/402344", "https://data.delijn.be/stops/402465"], ["https://data.delijn.be/stops/203386", "https://data.delijn.be/stops/209947"], ["https://data.delijn.be/stops/107212", "https://data.delijn.be/stops/107214"], ["https://data.delijn.be/stops/208286", "https://data.delijn.be/stops/209286"], ["https://data.delijn.be/stops/503877", "https://data.delijn.be/stops/508265"], ["https://data.delijn.be/stops/201930", "https://data.delijn.be/stops/202441"], ["https://data.delijn.be/stops/501126", "https://data.delijn.be/stops/506126"], ["https://data.delijn.be/stops/407801", "https://data.delijn.be/stops/407809"], ["https://data.delijn.be/stops/301975", "https://data.delijn.be/stops/301978"], ["https://data.delijn.be/stops/408580", "https://data.delijn.be/stops/408596"], ["https://data.delijn.be/stops/107362", "https://data.delijn.be/stops/107364"], ["https://data.delijn.be/stops/302744", "https://data.delijn.be/stops/302747"], ["https://data.delijn.be/stops/103583", "https://data.delijn.be/stops/109411"], ["https://data.delijn.be/stops/102321", "https://data.delijn.be/stops/103762"], ["https://data.delijn.be/stops/204059", "https://data.delijn.be/stops/205724"], ["https://data.delijn.be/stops/202120", "https://data.delijn.be/stops/203120"], ["https://data.delijn.be/stops/203940", "https://data.delijn.be/stops/211052"], ["https://data.delijn.be/stops/105804", "https://data.delijn.be/stops/107414"], ["https://data.delijn.be/stops/502374", "https://data.delijn.be/stops/505052"], ["https://data.delijn.be/stops/402626", "https://data.delijn.be/stops/405580"], ["https://data.delijn.be/stops/209354", "https://data.delijn.be/stops/209355"], ["https://data.delijn.be/stops/108823", "https://data.delijn.be/stops/108824"], ["https://data.delijn.be/stops/105422", "https://data.delijn.be/stops/109978"], ["https://data.delijn.be/stops/106037", "https://data.delijn.be/stops/106057"], ["https://data.delijn.be/stops/102174", "https://data.delijn.be/stops/109361"], ["https://data.delijn.be/stops/103108", "https://data.delijn.be/stops/103112"], ["https://data.delijn.be/stops/103218", "https://data.delijn.be/stops/103219"], ["https://data.delijn.be/stops/408068", "https://data.delijn.be/stops/305696"], ["https://data.delijn.be/stops/109850", "https://data.delijn.be/stops/109853"], ["https://data.delijn.be/stops/502552", "https://data.delijn.be/stops/507552"], ["https://data.delijn.be/stops/407519", "https://data.delijn.be/stops/408274"], ["https://data.delijn.be/stops/504707", "https://data.delijn.be/stops/509258"], ["https://data.delijn.be/stops/302185", "https://data.delijn.be/stops/305081"], ["https://data.delijn.be/stops/304553", "https://data.delijn.be/stops/304828"], ["https://data.delijn.be/stops/302211", "https://data.delijn.be/stops/302233"], ["https://data.delijn.be/stops/503056", "https://data.delijn.be/stops/505254"], ["https://data.delijn.be/stops/104095", "https://data.delijn.be/stops/105165"], ["https://data.delijn.be/stops/501464", "https://data.delijn.be/stops/505561"], ["https://data.delijn.be/stops/200629", "https://data.delijn.be/stops/200640"], ["https://data.delijn.be/stops/101071", "https://data.delijn.be/stops/107187"], ["https://data.delijn.be/stops/402114", "https://data.delijn.be/stops/402116"], ["https://data.delijn.be/stops/108312", "https://data.delijn.be/stops/108313"], ["https://data.delijn.be/stops/203499", "https://data.delijn.be/stops/204100"], ["https://data.delijn.be/stops/200452", "https://data.delijn.be/stops/209738"], ["https://data.delijn.be/stops/302200", "https://data.delijn.be/stops/307109"], ["https://data.delijn.be/stops/201405", "https://data.delijn.be/stops/201697"], ["https://data.delijn.be/stops/401554", "https://data.delijn.be/stops/402034"], ["https://data.delijn.be/stops/106636", "https://data.delijn.be/stops/106657"], ["https://data.delijn.be/stops/407713", "https://data.delijn.be/stops/409775"], ["https://data.delijn.be/stops/208543", "https://data.delijn.be/stops/208546"], ["https://data.delijn.be/stops/305077", "https://data.delijn.be/stops/308928"], ["https://data.delijn.be/stops/502260", "https://data.delijn.be/stops/502266"], ["https://data.delijn.be/stops/304788", "https://data.delijn.be/stops/306689"], ["https://data.delijn.be/stops/104094", "https://data.delijn.be/stops/104102"], ["https://data.delijn.be/stops/406648", "https://data.delijn.be/stops/406655"], ["https://data.delijn.be/stops/202157", "https://data.delijn.be/stops/202160"], ["https://data.delijn.be/stops/108934", "https://data.delijn.be/stops/109219"], ["https://data.delijn.be/stops/209562", "https://data.delijn.be/stops/209596"], ["https://data.delijn.be/stops/202746", "https://data.delijn.be/stops/206938"], ["https://data.delijn.be/stops/206954", "https://data.delijn.be/stops/207923"], ["https://data.delijn.be/stops/501356", "https://data.delijn.be/stops/506356"], ["https://data.delijn.be/stops/301474", "https://data.delijn.be/stops/301488"], ["https://data.delijn.be/stops/502228", "https://data.delijn.be/stops/505142"], ["https://data.delijn.be/stops/300193", "https://data.delijn.be/stops/300194"], ["https://data.delijn.be/stops/300842", "https://data.delijn.be/stops/304624"], ["https://data.delijn.be/stops/202759", "https://data.delijn.be/stops/203763"], ["https://data.delijn.be/stops/202878", "https://data.delijn.be/stops/204975"], ["https://data.delijn.be/stops/400983", "https://data.delijn.be/stops/401177"], ["https://data.delijn.be/stops/306968", "https://data.delijn.be/stops/306969"], ["https://data.delijn.be/stops/501714", "https://data.delijn.be/stops/501716"], ["https://data.delijn.be/stops/300768", "https://data.delijn.be/stops/303224"], ["https://data.delijn.be/stops/400083", "https://data.delijn.be/stops/400085"], ["https://data.delijn.be/stops/107223", "https://data.delijn.be/stops/107227"], ["https://data.delijn.be/stops/107074", "https://data.delijn.be/stops/107075"], ["https://data.delijn.be/stops/302832", "https://data.delijn.be/stops/302833"], ["https://data.delijn.be/stops/106170", "https://data.delijn.be/stops/106173"], ["https://data.delijn.be/stops/102085", "https://data.delijn.be/stops/104494"], ["https://data.delijn.be/stops/304472", "https://data.delijn.be/stops/304485"], ["https://data.delijn.be/stops/308241", "https://data.delijn.be/stops/308248"], ["https://data.delijn.be/stops/409522", "https://data.delijn.be/stops/409523"], ["https://data.delijn.be/stops/505411", "https://data.delijn.be/stops/509500"], ["https://data.delijn.be/stops/505045", "https://data.delijn.be/stops/509840"], ["https://data.delijn.be/stops/207107", "https://data.delijn.be/stops/207143"], ["https://data.delijn.be/stops/206134", "https://data.delijn.be/stops/206135"], ["https://data.delijn.be/stops/300201", "https://data.delijn.be/stops/300202"], ["https://data.delijn.be/stops/104483", "https://data.delijn.be/stops/303561"], ["https://data.delijn.be/stops/106830", "https://data.delijn.be/stops/107408"], ["https://data.delijn.be/stops/208391", "https://data.delijn.be/stops/208744"], ["https://data.delijn.be/stops/305288", "https://data.delijn.be/stops/305289"], ["https://data.delijn.be/stops/307280", "https://data.delijn.be/stops/307281"], ["https://data.delijn.be/stops/102209", "https://data.delijn.be/stops/106119"], ["https://data.delijn.be/stops/508034", "https://data.delijn.be/stops/508037"], ["https://data.delijn.be/stops/502241", "https://data.delijn.be/stops/502654"], ["https://data.delijn.be/stops/204500", "https://data.delijn.be/stops/205545"], ["https://data.delijn.be/stops/205016", "https://data.delijn.be/stops/205103"], ["https://data.delijn.be/stops/106054", "https://data.delijn.be/stops/106057"], ["https://data.delijn.be/stops/505847", "https://data.delijn.be/stops/508086"], ["https://data.delijn.be/stops/505052", "https://data.delijn.be/stops/507279"], ["https://data.delijn.be/stops/208080", "https://data.delijn.be/stops/208081"], ["https://data.delijn.be/stops/202292", "https://data.delijn.be/stops/210291"], ["https://data.delijn.be/stops/205650", "https://data.delijn.be/stops/205651"], ["https://data.delijn.be/stops/402536", "https://data.delijn.be/stops/404092"], ["https://data.delijn.be/stops/203282", "https://data.delijn.be/stops/203634"], ["https://data.delijn.be/stops/404087", "https://data.delijn.be/stops/404089"], ["https://data.delijn.be/stops/300158", "https://data.delijn.be/stops/306695"], ["https://data.delijn.be/stops/407323", "https://data.delijn.be/stops/410175"], ["https://data.delijn.be/stops/301872", "https://data.delijn.be/stops/304327"], ["https://data.delijn.be/stops/405818", "https://data.delijn.be/stops/407292"], ["https://data.delijn.be/stops/106355", "https://data.delijn.be/stops/106356"], ["https://data.delijn.be/stops/102661", "https://data.delijn.be/stops/102662"], ["https://data.delijn.be/stops/504753", "https://data.delijn.be/stops/508265"], ["https://data.delijn.be/stops/208377", "https://data.delijn.be/stops/209332"], ["https://data.delijn.be/stops/201982", "https://data.delijn.be/stops/203912"], ["https://data.delijn.be/stops/401849", "https://data.delijn.be/stops/406746"], ["https://data.delijn.be/stops/300614", "https://data.delijn.be/stops/306799"], ["https://data.delijn.be/stops/405676", "https://data.delijn.be/stops/408215"], ["https://data.delijn.be/stops/300071", "https://data.delijn.be/stops/307348"], ["https://data.delijn.be/stops/200587", "https://data.delijn.be/stops/200996"], ["https://data.delijn.be/stops/407721", "https://data.delijn.be/stops/407763"], ["https://data.delijn.be/stops/501338", "https://data.delijn.be/stops/506742"], ["https://data.delijn.be/stops/502090", "https://data.delijn.be/stops/507644"], ["https://data.delijn.be/stops/503914", "https://data.delijn.be/stops/503930"], ["https://data.delijn.be/stops/407074", "https://data.delijn.be/stops/407075"], ["https://data.delijn.be/stops/206756", "https://data.delijn.be/stops/207620"], ["https://data.delijn.be/stops/206629", "https://data.delijn.be/stops/207628"], ["https://data.delijn.be/stops/106224", "https://data.delijn.be/stops/106334"], ["https://data.delijn.be/stops/401777", "https://data.delijn.be/stops/401789"], ["https://data.delijn.be/stops/408773", "https://data.delijn.be/stops/408774"], ["https://data.delijn.be/stops/407383", "https://data.delijn.be/stops/407799"], ["https://data.delijn.be/stops/104960", "https://data.delijn.be/stops/204273"], ["https://data.delijn.be/stops/501764", "https://data.delijn.be/stops/505090"], ["https://data.delijn.be/stops/508681", "https://data.delijn.be/stops/509454"], ["https://data.delijn.be/stops/504873", "https://data.delijn.be/stops/509937"], ["https://data.delijn.be/stops/401874", "https://data.delijn.be/stops/406337"], ["https://data.delijn.be/stops/405779", "https://data.delijn.be/stops/405806"], ["https://data.delijn.be/stops/108078", "https://data.delijn.be/stops/108081"], ["https://data.delijn.be/stops/206779", "https://data.delijn.be/stops/208561"], ["https://data.delijn.be/stops/204407", "https://data.delijn.be/stops/204408"], ["https://data.delijn.be/stops/300320", "https://data.delijn.be/stops/301197"], ["https://data.delijn.be/stops/203090", "https://data.delijn.be/stops/203091"], ["https://data.delijn.be/stops/305697", "https://data.delijn.be/stops/307926"], ["https://data.delijn.be/stops/501334", "https://data.delijn.be/stops/506308"], ["https://data.delijn.be/stops/102609", "https://data.delijn.be/stops/102669"], ["https://data.delijn.be/stops/208458", "https://data.delijn.be/stops/209675"], ["https://data.delijn.be/stops/204044", "https://data.delijn.be/stops/204517"], ["https://data.delijn.be/stops/208463", "https://data.delijn.be/stops/209462"], ["https://data.delijn.be/stops/304210", "https://data.delijn.be/stops/305349"], ["https://data.delijn.be/stops/102830", "https://data.delijn.be/stops/103860"], ["https://data.delijn.be/stops/102882", "https://data.delijn.be/stops/104771"], ["https://data.delijn.be/stops/208716", "https://data.delijn.be/stops/209240"], ["https://data.delijn.be/stops/504218", "https://data.delijn.be/stops/504221"], ["https://data.delijn.be/stops/102465", "https://data.delijn.be/stops/108005"], ["https://data.delijn.be/stops/107614", "https://data.delijn.be/stops/108954"], ["https://data.delijn.be/stops/203021", "https://data.delijn.be/stops/203022"], ["https://data.delijn.be/stops/300686", "https://data.delijn.be/stops/303504"], ["https://data.delijn.be/stops/301099", "https://data.delijn.be/stops/306159"], ["https://data.delijn.be/stops/403054", "https://data.delijn.be/stops/403387"], ["https://data.delijn.be/stops/201860", "https://data.delijn.be/stops/210036"], ["https://data.delijn.be/stops/508378", "https://data.delijn.be/stops/508523"], ["https://data.delijn.be/stops/204587", "https://data.delijn.be/stops/204594"], ["https://data.delijn.be/stops/302450", "https://data.delijn.be/stops/302451"], ["https://data.delijn.be/stops/502194", "https://data.delijn.be/stops/502196"], ["https://data.delijn.be/stops/200719", "https://data.delijn.be/stops/202621"], ["https://data.delijn.be/stops/505226", "https://data.delijn.be/stops/508860"], ["https://data.delijn.be/stops/300774", "https://data.delijn.be/stops/302400"], ["https://data.delijn.be/stops/400821", "https://data.delijn.be/stops/403058"], ["https://data.delijn.be/stops/404252", "https://data.delijn.be/stops/404253"], ["https://data.delijn.be/stops/204107", "https://data.delijn.be/stops/204109"], ["https://data.delijn.be/stops/103870", "https://data.delijn.be/stops/103880"], ["https://data.delijn.be/stops/503974", "https://data.delijn.be/stops/505384"], ["https://data.delijn.be/stops/103683", "https://data.delijn.be/stops/109139"], ["https://data.delijn.be/stops/501534", "https://data.delijn.be/stops/505781"], ["https://data.delijn.be/stops/506307", "https://data.delijn.be/stops/506734"], ["https://data.delijn.be/stops/101331", "https://data.delijn.be/stops/106676"], ["https://data.delijn.be/stops/403251", "https://data.delijn.be/stops/404180"], ["https://data.delijn.be/stops/203231", "https://data.delijn.be/stops/219505"], ["https://data.delijn.be/stops/109195", "https://data.delijn.be/stops/109198"], ["https://data.delijn.be/stops/307624", "https://data.delijn.be/stops/307625"], ["https://data.delijn.be/stops/102944", "https://data.delijn.be/stops/105549"], ["https://data.delijn.be/stops/200914", "https://data.delijn.be/stops/201694"], ["https://data.delijn.be/stops/103064", "https://data.delijn.be/stops/104033"], ["https://data.delijn.be/stops/204106", "https://data.delijn.be/stops/206395"], ["https://data.delijn.be/stops/107079", "https://data.delijn.be/stops/107081"], ["https://data.delijn.be/stops/201735", "https://data.delijn.be/stops/203751"], ["https://data.delijn.be/stops/206409", "https://data.delijn.be/stops/210009"], ["https://data.delijn.be/stops/402814", "https://data.delijn.be/stops/409038"], ["https://data.delijn.be/stops/300564", "https://data.delijn.be/stops/307856"], ["https://data.delijn.be/stops/208736", "https://data.delijn.be/stops/209736"], ["https://data.delijn.be/stops/504865", "https://data.delijn.be/stops/505373"], ["https://data.delijn.be/stops/500555", "https://data.delijn.be/stops/507235"], ["https://data.delijn.be/stops/405910", "https://data.delijn.be/stops/405991"], ["https://data.delijn.be/stops/107156", "https://data.delijn.be/stops/107159"], ["https://data.delijn.be/stops/201239", "https://data.delijn.be/stops/202956"], ["https://data.delijn.be/stops/301293", "https://data.delijn.be/stops/301900"], ["https://data.delijn.be/stops/304597", "https://data.delijn.be/stops/304716"], ["https://data.delijn.be/stops/204316", "https://data.delijn.be/stops/205316"], ["https://data.delijn.be/stops/208593", "https://data.delijn.be/stops/209593"], ["https://data.delijn.be/stops/105041", "https://data.delijn.be/stops/105123"], ["https://data.delijn.be/stops/408167", "https://data.delijn.be/stops/410345"], ["https://data.delijn.be/stops/408612", "https://data.delijn.be/stops/408704"], ["https://data.delijn.be/stops/506284", "https://data.delijn.be/stops/506323"], ["https://data.delijn.be/stops/200742", "https://data.delijn.be/stops/201405"], ["https://data.delijn.be/stops/200802", "https://data.delijn.be/stops/203064"], ["https://data.delijn.be/stops/409060", "https://data.delijn.be/stops/409061"], ["https://data.delijn.be/stops/400704", "https://data.delijn.be/stops/404378"], ["https://data.delijn.be/stops/306663", "https://data.delijn.be/stops/306665"], ["https://data.delijn.be/stops/405366", "https://data.delijn.be/stops/405370"], ["https://data.delijn.be/stops/406208", "https://data.delijn.be/stops/406215"], ["https://data.delijn.be/stops/202713", "https://data.delijn.be/stops/203714"], ["https://data.delijn.be/stops/201169", "https://data.delijn.be/stops/201567"], ["https://data.delijn.be/stops/504407", "https://data.delijn.be/stops/504472"], ["https://data.delijn.be/stops/502028", "https://data.delijn.be/stops/502051"], ["https://data.delijn.be/stops/204745", "https://data.delijn.be/stops/204766"], ["https://data.delijn.be/stops/101822", "https://data.delijn.be/stops/107073"], ["https://data.delijn.be/stops/508365", "https://data.delijn.be/stops/508525"], ["https://data.delijn.be/stops/106461", "https://data.delijn.be/stops/106462"], ["https://data.delijn.be/stops/503016", "https://data.delijn.be/stops/503022"], ["https://data.delijn.be/stops/408851", "https://data.delijn.be/stops/408912"], ["https://data.delijn.be/stops/407738", "https://data.delijn.be/stops/407739"], ["https://data.delijn.be/stops/402391", "https://data.delijn.be/stops/404704"], ["https://data.delijn.be/stops/408582", "https://data.delijn.be/stops/408586"], ["https://data.delijn.be/stops/206707", "https://data.delijn.be/stops/207616"], ["https://data.delijn.be/stops/304289", "https://data.delijn.be/stops/304290"], ["https://data.delijn.be/stops/204305", "https://data.delijn.be/stops/204352"], ["https://data.delijn.be/stops/108642", "https://data.delijn.be/stops/109692"], ["https://data.delijn.be/stops/306618", "https://data.delijn.be/stops/306620"], ["https://data.delijn.be/stops/208263", "https://data.delijn.be/stops/209717"], ["https://data.delijn.be/stops/102579", "https://data.delijn.be/stops/109110"], ["https://data.delijn.be/stops/303996", "https://data.delijn.be/stops/304103"], ["https://data.delijn.be/stops/407726", "https://data.delijn.be/stops/409779"], ["https://data.delijn.be/stops/301252", "https://data.delijn.be/stops/308264"], ["https://data.delijn.be/stops/202289", "https://data.delijn.be/stops/202290"], ["https://data.delijn.be/stops/102922", "https://data.delijn.be/stops/103185"], ["https://data.delijn.be/stops/104239", "https://data.delijn.be/stops/106786"], ["https://data.delijn.be/stops/501382", "https://data.delijn.be/stops/504207"], ["https://data.delijn.be/stops/503415", "https://data.delijn.be/stops/503995"], ["https://data.delijn.be/stops/400082", "https://data.delijn.be/stops/400160"], ["https://data.delijn.be/stops/300269", "https://data.delijn.be/stops/307112"], ["https://data.delijn.be/stops/108922", "https://data.delijn.be/stops/109427"], ["https://data.delijn.be/stops/402151", "https://data.delijn.be/stops/410100"], ["https://data.delijn.be/stops/303535", "https://data.delijn.be/stops/303546"], ["https://data.delijn.be/stops/503296", "https://data.delijn.be/stops/508296"], ["https://data.delijn.be/stops/405842", "https://data.delijn.be/stops/409757"], ["https://data.delijn.be/stops/503506", "https://data.delijn.be/stops/503512"], ["https://data.delijn.be/stops/208204", "https://data.delijn.be/stops/209455"], ["https://data.delijn.be/stops/401836", "https://data.delijn.be/stops/401840"], ["https://data.delijn.be/stops/404878", "https://data.delijn.be/stops/406890"], ["https://data.delijn.be/stops/106487", "https://data.delijn.be/stops/106489"], ["https://data.delijn.be/stops/103038", "https://data.delijn.be/stops/106412"], ["https://data.delijn.be/stops/101022", "https://data.delijn.be/stops/101024"], ["https://data.delijn.be/stops/108289", "https://data.delijn.be/stops/108293"], ["https://data.delijn.be/stops/405889", "https://data.delijn.be/stops/406827"], ["https://data.delijn.be/stops/201592", "https://data.delijn.be/stops/201593"], ["https://data.delijn.be/stops/300641", "https://data.delijn.be/stops/300642"], ["https://data.delijn.be/stops/402244", "https://data.delijn.be/stops/402252"], ["https://data.delijn.be/stops/208707", "https://data.delijn.be/stops/208970"], ["https://data.delijn.be/stops/203810", "https://data.delijn.be/stops/208738"], ["https://data.delijn.be/stops/200945", "https://data.delijn.be/stops/202695"], ["https://data.delijn.be/stops/201128", "https://data.delijn.be/stops/201302"], ["https://data.delijn.be/stops/102492", "https://data.delijn.be/stops/407929"], ["https://data.delijn.be/stops/204041", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/407469", "https://data.delijn.be/stops/409858"], ["https://data.delijn.be/stops/304400", "https://data.delijn.be/stops/307411"], ["https://data.delijn.be/stops/104037", "https://data.delijn.be/stops/108095"], ["https://data.delijn.be/stops/402108", "https://data.delijn.be/stops/402334"], ["https://data.delijn.be/stops/200197", "https://data.delijn.be/stops/202954"], ["https://data.delijn.be/stops/107392", "https://data.delijn.be/stops/107396"], ["https://data.delijn.be/stops/503112", "https://data.delijn.be/stops/505157"], ["https://data.delijn.be/stops/200337", "https://data.delijn.be/stops/211087"], ["https://data.delijn.be/stops/206106", "https://data.delijn.be/stops/207106"], ["https://data.delijn.be/stops/505160", "https://data.delijn.be/stops/505843"], ["https://data.delijn.be/stops/200187", "https://data.delijn.be/stops/201193"], ["https://data.delijn.be/stops/302751", "https://data.delijn.be/stops/302753"], ["https://data.delijn.be/stops/107690", "https://data.delijn.be/stops/108165"], ["https://data.delijn.be/stops/306613", "https://data.delijn.be/stops/306619"], ["https://data.delijn.be/stops/301854", "https://data.delijn.be/stops/301860"], ["https://data.delijn.be/stops/105308", "https://data.delijn.be/stops/105311"], ["https://data.delijn.be/stops/300567", "https://data.delijn.be/stops/300568"], ["https://data.delijn.be/stops/308094", "https://data.delijn.be/stops/308097"], ["https://data.delijn.be/stops/204672", "https://data.delijn.be/stops/204673"], ["https://data.delijn.be/stops/503523", "https://data.delijn.be/stops/508743"], ["https://data.delijn.be/stops/104776", "https://data.delijn.be/stops/107348"], ["https://data.delijn.be/stops/103234", "https://data.delijn.be/stops/103287"], ["https://data.delijn.be/stops/208011", "https://data.delijn.be/stops/208173"], ["https://data.delijn.be/stops/305754", "https://data.delijn.be/stops/306308"], ["https://data.delijn.be/stops/105919", "https://data.delijn.be/stops/105921"], ["https://data.delijn.be/stops/404892", "https://data.delijn.be/stops/404893"], ["https://data.delijn.be/stops/305889", "https://data.delijn.be/stops/305890"], ["https://data.delijn.be/stops/404792", "https://data.delijn.be/stops/404814"], ["https://data.delijn.be/stops/404183", "https://data.delijn.be/stops/404186"], ["https://data.delijn.be/stops/101802", "https://data.delijn.be/stops/101940"], ["https://data.delijn.be/stops/106613", "https://data.delijn.be/stops/106692"], ["https://data.delijn.be/stops/300010", "https://data.delijn.be/stops/304258"], ["https://data.delijn.be/stops/505352", "https://data.delijn.be/stops/507287"], ["https://data.delijn.be/stops/303812", "https://data.delijn.be/stops/303867"], ["https://data.delijn.be/stops/308475", "https://data.delijn.be/stops/308484"], ["https://data.delijn.be/stops/403151", "https://data.delijn.be/stops/407585"], ["https://data.delijn.be/stops/304435", "https://data.delijn.be/stops/304437"], ["https://data.delijn.be/stops/107711", "https://data.delijn.be/stops/107712"], ["https://data.delijn.be/stops/404046", "https://data.delijn.be/stops/404047"], ["https://data.delijn.be/stops/402749", "https://data.delijn.be/stops/405299"], ["https://data.delijn.be/stops/502375", "https://data.delijn.be/stops/507376"], ["https://data.delijn.be/stops/408874", "https://data.delijn.be/stops/408875"], ["https://data.delijn.be/stops/103626", "https://data.delijn.be/stops/103628"], ["https://data.delijn.be/stops/208260", "https://data.delijn.be/stops/209260"], ["https://data.delijn.be/stops/201591", "https://data.delijn.be/stops/204920"], ["https://data.delijn.be/stops/304485", "https://data.delijn.be/stops/304493"], ["https://data.delijn.be/stops/303480", "https://data.delijn.be/stops/303488"], ["https://data.delijn.be/stops/400726", "https://data.delijn.be/stops/400727"], ["https://data.delijn.be/stops/206103", "https://data.delijn.be/stops/207102"], ["https://data.delijn.be/stops/103354", "https://data.delijn.be/stops/104811"], ["https://data.delijn.be/stops/209292", "https://data.delijn.be/stops/210065"], ["https://data.delijn.be/stops/201264", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/106157", "https://data.delijn.be/stops/106444"], ["https://data.delijn.be/stops/400682", "https://data.delijn.be/stops/400683"], ["https://data.delijn.be/stops/200506", "https://data.delijn.be/stops/210133"], ["https://data.delijn.be/stops/301857", "https://data.delijn.be/stops/301868"], ["https://data.delijn.be/stops/502056", "https://data.delijn.be/stops/507933"], ["https://data.delijn.be/stops/407873", "https://data.delijn.be/stops/408139"], ["https://data.delijn.be/stops/202209", "https://data.delijn.be/stops/202211"], ["https://data.delijn.be/stops/200543", "https://data.delijn.be/stops/210048"], ["https://data.delijn.be/stops/105468", "https://data.delijn.be/stops/105469"], ["https://data.delijn.be/stops/407721", "https://data.delijn.be/stops/410319"], ["https://data.delijn.be/stops/400227", "https://data.delijn.be/stops/400234"], ["https://data.delijn.be/stops/303831", "https://data.delijn.be/stops/303832"], ["https://data.delijn.be/stops/206734", "https://data.delijn.be/stops/207998"], ["https://data.delijn.be/stops/105618", "https://data.delijn.be/stops/105621"], ["https://data.delijn.be/stops/403931", "https://data.delijn.be/stops/404084"], ["https://data.delijn.be/stops/404726", "https://data.delijn.be/stops/404945"], ["https://data.delijn.be/stops/300375", "https://data.delijn.be/stops/300379"], ["https://data.delijn.be/stops/505510", "https://data.delijn.be/stops/509698"], ["https://data.delijn.be/stops/407160", "https://data.delijn.be/stops/407185"], ["https://data.delijn.be/stops/105322", "https://data.delijn.be/stops/105328"], ["https://data.delijn.be/stops/206476", "https://data.delijn.be/stops/206508"], ["https://data.delijn.be/stops/403479", "https://data.delijn.be/stops/403480"], ["https://data.delijn.be/stops/502014", "https://data.delijn.be/stops/502020"], ["https://data.delijn.be/stops/202870", "https://data.delijn.be/stops/203881"], ["https://data.delijn.be/stops/108328", "https://data.delijn.be/stops/109331"], ["https://data.delijn.be/stops/101990", "https://data.delijn.be/stops/104722"], ["https://data.delijn.be/stops/508919", "https://data.delijn.be/stops/508931"], ["https://data.delijn.be/stops/102906", "https://data.delijn.be/stops/105868"], ["https://data.delijn.be/stops/405243", "https://data.delijn.be/stops/405245"], ["https://data.delijn.be/stops/506255", "https://data.delijn.be/stops/506774"], ["https://data.delijn.be/stops/406013", "https://data.delijn.be/stops/410263"], ["https://data.delijn.be/stops/409343", "https://data.delijn.be/stops/409613"], ["https://data.delijn.be/stops/306314", "https://data.delijn.be/stops/308760"], ["https://data.delijn.be/stops/301390", "https://data.delijn.be/stops/304667"], ["https://data.delijn.be/stops/301436", "https://data.delijn.be/stops/301438"], ["https://data.delijn.be/stops/105519", "https://data.delijn.be/stops/105522"], ["https://data.delijn.be/stops/207678", "https://data.delijn.be/stops/208074"], ["https://data.delijn.be/stops/401636", "https://data.delijn.be/stops/308207"], ["https://data.delijn.be/stops/408726", "https://data.delijn.be/stops/408727"], ["https://data.delijn.be/stops/206789", "https://data.delijn.be/stops/208562"], ["https://data.delijn.be/stops/202151", "https://data.delijn.be/stops/202152"], ["https://data.delijn.be/stops/401432", "https://data.delijn.be/stops/401474"], ["https://data.delijn.be/stops/302658", "https://data.delijn.be/stops/303295"], ["https://data.delijn.be/stops/301099", "https://data.delijn.be/stops/302806"], ["https://data.delijn.be/stops/204093", "https://data.delijn.be/stops/205074"], ["https://data.delijn.be/stops/206656", "https://data.delijn.be/stops/206657"], ["https://data.delijn.be/stops/406492", "https://data.delijn.be/stops/406493"], ["https://data.delijn.be/stops/502241", "https://data.delijn.be/stops/507654"], ["https://data.delijn.be/stops/205236", "https://data.delijn.be/stops/214016"], ["https://data.delijn.be/stops/407827", "https://data.delijn.be/stops/408070"], ["https://data.delijn.be/stops/304231", "https://data.delijn.be/stops/304232"], ["https://data.delijn.be/stops/300160", "https://data.delijn.be/stops/301124"], ["https://data.delijn.be/stops/200106", "https://data.delijn.be/stops/203007"], ["https://data.delijn.be/stops/305067", "https://data.delijn.be/stops/308294"], ["https://data.delijn.be/stops/103225", "https://data.delijn.be/stops/103255"], ["https://data.delijn.be/stops/202837", "https://data.delijn.be/stops/218002"], ["https://data.delijn.be/stops/401252", "https://data.delijn.be/stops/401253"], ["https://data.delijn.be/stops/303583", "https://data.delijn.be/stops/303584"], ["https://data.delijn.be/stops/101706", "https://data.delijn.be/stops/104402"], ["https://data.delijn.be/stops/401506", "https://data.delijn.be/stops/401507"], ["https://data.delijn.be/stops/505376", "https://data.delijn.be/stops/508201"], ["https://data.delijn.be/stops/504629", "https://data.delijn.be/stops/509620"], ["https://data.delijn.be/stops/406358", "https://data.delijn.be/stops/406401"], ["https://data.delijn.be/stops/206438", "https://data.delijn.be/stops/209685"], ["https://data.delijn.be/stops/200846", "https://data.delijn.be/stops/203330"], ["https://data.delijn.be/stops/504556", "https://data.delijn.be/stops/509556"], ["https://data.delijn.be/stops/407819", "https://data.delijn.be/stops/407852"], ["https://data.delijn.be/stops/509632", "https://data.delijn.be/stops/509633"], ["https://data.delijn.be/stops/409718", "https://data.delijn.be/stops/409721"], ["https://data.delijn.be/stops/108111", "https://data.delijn.be/stops/108141"], ["https://data.delijn.be/stops/103229", "https://data.delijn.be/stops/103232"], ["https://data.delijn.be/stops/201933", "https://data.delijn.be/stops/207594"], ["https://data.delijn.be/stops/400603", "https://data.delijn.be/stops/400610"], ["https://data.delijn.be/stops/408341", "https://data.delijn.be/stops/408401"], ["https://data.delijn.be/stops/404266", "https://data.delijn.be/stops/410054"], ["https://data.delijn.be/stops/302841", "https://data.delijn.be/stops/303285"], ["https://data.delijn.be/stops/102387", "https://data.delijn.be/stops/102648"], ["https://data.delijn.be/stops/204377", "https://data.delijn.be/stops/204480"], ["https://data.delijn.be/stops/104487", "https://data.delijn.be/stops/303560"], ["https://data.delijn.be/stops/503682", "https://data.delijn.be/stops/508687"], ["https://data.delijn.be/stops/503672", "https://data.delijn.be/stops/508672"], ["https://data.delijn.be/stops/306695", "https://data.delijn.be/stops/306696"], ["https://data.delijn.be/stops/505394", "https://data.delijn.be/stops/508449"], ["https://data.delijn.be/stops/403490", "https://data.delijn.be/stops/403491"], ["https://data.delijn.be/stops/405951", "https://data.delijn.be/stops/405955"], ["https://data.delijn.be/stops/507047", "https://data.delijn.be/stops/507054"], ["https://data.delijn.be/stops/205288", "https://data.delijn.be/stops/205498"], ["https://data.delijn.be/stops/505676", "https://data.delijn.be/stops/505688"], ["https://data.delijn.be/stops/501672", "https://data.delijn.be/stops/506487"], ["https://data.delijn.be/stops/406722", "https://data.delijn.be/stops/408796"], ["https://data.delijn.be/stops/208251", "https://data.delijn.be/stops/208252"], ["https://data.delijn.be/stops/406400", "https://data.delijn.be/stops/407638"], ["https://data.delijn.be/stops/404729", "https://data.delijn.be/stops/404743"], ["https://data.delijn.be/stops/107870", "https://data.delijn.be/stops/107871"], ["https://data.delijn.be/stops/103203", "https://data.delijn.be/stops/107192"], ["https://data.delijn.be/stops/208765", "https://data.delijn.be/stops/209409"], ["https://data.delijn.be/stops/404870", "https://data.delijn.be/stops/404874"], ["https://data.delijn.be/stops/206508", "https://data.delijn.be/stops/207508"], ["https://data.delijn.be/stops/303638", "https://data.delijn.be/stops/304806"], ["https://data.delijn.be/stops/301502", "https://data.delijn.be/stops/301503"], ["https://data.delijn.be/stops/503166", "https://data.delijn.be/stops/508169"], ["https://data.delijn.be/stops/209609", "https://data.delijn.be/stops/307606"], ["https://data.delijn.be/stops/301234", "https://data.delijn.be/stops/301237"], ["https://data.delijn.be/stops/400857", "https://data.delijn.be/stops/409526"], ["https://data.delijn.be/stops/501686", "https://data.delijn.be/stops/504059"], ["https://data.delijn.be/stops/200829", "https://data.delijn.be/stops/502707"], ["https://data.delijn.be/stops/503839", "https://data.delijn.be/stops/508839"], ["https://data.delijn.be/stops/505234", "https://data.delijn.be/stops/506224"], ["https://data.delijn.be/stops/102082", "https://data.delijn.be/stops/105244"], ["https://data.delijn.be/stops/302212", "https://data.delijn.be/stops/302226"], ["https://data.delijn.be/stops/201644", "https://data.delijn.be/stops/203812"], ["https://data.delijn.be/stops/501042", "https://data.delijn.be/stops/506029"], ["https://data.delijn.be/stops/302565", "https://data.delijn.be/stops/302568"], ["https://data.delijn.be/stops/404660", "https://data.delijn.be/stops/404670"], ["https://data.delijn.be/stops/204974", "https://data.delijn.be/stops/208243"], ["https://data.delijn.be/stops/301747", "https://data.delijn.be/stops/308876"], ["https://data.delijn.be/stops/300117", "https://data.delijn.be/stops/300118"], ["https://data.delijn.be/stops/402004", "https://data.delijn.be/stops/406204"], ["https://data.delijn.be/stops/201833", "https://data.delijn.be/stops/209259"], ["https://data.delijn.be/stops/504218", "https://data.delijn.be/stops/509063"], ["https://data.delijn.be/stops/302615", "https://data.delijn.be/stops/302618"], ["https://data.delijn.be/stops/201145", "https://data.delijn.be/stops/208849"], ["https://data.delijn.be/stops/204823", "https://data.delijn.be/stops/205823"], ["https://data.delijn.be/stops/504168", "https://data.delijn.be/stops/504194"], ["https://data.delijn.be/stops/301685", "https://data.delijn.be/stops/301688"], ["https://data.delijn.be/stops/203577", "https://data.delijn.be/stops/211851"], ["https://data.delijn.be/stops/304595", "https://data.delijn.be/stops/304633"], ["https://data.delijn.be/stops/204303", "https://data.delijn.be/stops/205705"], ["https://data.delijn.be/stops/502149", "https://data.delijn.be/stops/502633"], ["https://data.delijn.be/stops/404814", "https://data.delijn.be/stops/404834"], ["https://data.delijn.be/stops/105857", "https://data.delijn.be/stops/105858"], ["https://data.delijn.be/stops/300699", "https://data.delijn.be/stops/300700"], ["https://data.delijn.be/stops/208508", "https://data.delijn.be/stops/208633"], ["https://data.delijn.be/stops/104026", "https://data.delijn.be/stops/106901"], ["https://data.delijn.be/stops/501258", "https://data.delijn.be/stops/506684"], ["https://data.delijn.be/stops/406527", "https://data.delijn.be/stops/409289"], ["https://data.delijn.be/stops/101841", "https://data.delijn.be/stops/108912"], ["https://data.delijn.be/stops/308497", "https://data.delijn.be/stops/308499"], ["https://data.delijn.be/stops/108234", "https://data.delijn.be/stops/108236"], ["https://data.delijn.be/stops/503798", "https://data.delijn.be/stops/505570"], ["https://data.delijn.be/stops/109969", "https://data.delijn.be/stops/109972"], ["https://data.delijn.be/stops/203840", "https://data.delijn.be/stops/209277"], ["https://data.delijn.be/stops/106890", "https://data.delijn.be/stops/106892"], ["https://data.delijn.be/stops/401493", "https://data.delijn.be/stops/401512"], ["https://data.delijn.be/stops/503309", "https://data.delijn.be/stops/508309"], ["https://data.delijn.be/stops/301486", "https://data.delijn.be/stops/301487"], ["https://data.delijn.be/stops/218023", "https://data.delijn.be/stops/219022"], ["https://data.delijn.be/stops/103491", "https://data.delijn.be/stops/103492"], ["https://data.delijn.be/stops/206473", "https://data.delijn.be/stops/207473"], ["https://data.delijn.be/stops/204007", "https://data.delijn.be/stops/205700"], ["https://data.delijn.be/stops/301936", "https://data.delijn.be/stops/302907"], ["https://data.delijn.be/stops/505966", "https://data.delijn.be/stops/508516"], ["https://data.delijn.be/stops/106068", "https://data.delijn.be/stops/106071"], ["https://data.delijn.be/stops/200052", "https://data.delijn.be/stops/201477"], ["https://data.delijn.be/stops/304673", "https://data.delijn.be/stops/304679"], ["https://data.delijn.be/stops/304885", "https://data.delijn.be/stops/304908"], ["https://data.delijn.be/stops/300986", "https://data.delijn.be/stops/300994"], ["https://data.delijn.be/stops/200008", "https://data.delijn.be/stops/201417"], ["https://data.delijn.be/stops/408175", "https://data.delijn.be/stops/408178"], ["https://data.delijn.be/stops/206641", "https://data.delijn.be/stops/209685"], ["https://data.delijn.be/stops/108560", "https://data.delijn.be/stops/109731"], ["https://data.delijn.be/stops/202366", "https://data.delijn.be/stops/203994"], ["https://data.delijn.be/stops/207975", "https://data.delijn.be/stops/207976"], ["https://data.delijn.be/stops/204645", "https://data.delijn.be/stops/205645"], ["https://data.delijn.be/stops/101596", "https://data.delijn.be/stops/102729"], ["https://data.delijn.be/stops/203005", "https://data.delijn.be/stops/211006"], ["https://data.delijn.be/stops/408371", "https://data.delijn.be/stops/409663"], ["https://data.delijn.be/stops/208589", "https://data.delijn.be/stops/305238"], ["https://data.delijn.be/stops/401751", "https://data.delijn.be/stops/401876"], ["https://data.delijn.be/stops/507012", "https://data.delijn.be/stops/507797"], ["https://data.delijn.be/stops/200061", "https://data.delijn.be/stops/211059"], ["https://data.delijn.be/stops/300681", "https://data.delijn.be/stops/300683"], ["https://data.delijn.be/stops/300127", "https://data.delijn.be/stops/306824"], ["https://data.delijn.be/stops/108996", "https://data.delijn.be/stops/108997"], ["https://data.delijn.be/stops/305668", "https://data.delijn.be/stops/305669"], ["https://data.delijn.be/stops/203610", "https://data.delijn.be/stops/203611"], ["https://data.delijn.be/stops/106208", "https://data.delijn.be/stops/106212"], ["https://data.delijn.be/stops/306065", "https://data.delijn.be/stops/307607"], ["https://data.delijn.be/stops/400317", "https://data.delijn.be/stops/400318"], ["https://data.delijn.be/stops/202105", "https://data.delijn.be/stops/203106"], ["https://data.delijn.be/stops/206944", "https://data.delijn.be/stops/209558"], ["https://data.delijn.be/stops/202971", "https://data.delijn.be/stops/203972"], ["https://data.delijn.be/stops/209288", "https://data.delijn.be/stops/219018"], ["https://data.delijn.be/stops/303410", "https://data.delijn.be/stops/303416"], ["https://data.delijn.be/stops/101459", "https://data.delijn.be/stops/109278"], ["https://data.delijn.be/stops/401746", "https://data.delijn.be/stops/401882"], ["https://data.delijn.be/stops/407214", "https://data.delijn.be/stops/407215"], ["https://data.delijn.be/stops/201813", "https://data.delijn.be/stops/208328"], ["https://data.delijn.be/stops/108274", "https://data.delijn.be/stops/108277"], ["https://data.delijn.be/stops/408585", "https://data.delijn.be/stops/408591"], ["https://data.delijn.be/stops/102965", "https://data.delijn.be/stops/103282"], ["https://data.delijn.be/stops/203591", "https://data.delijn.be/stops/210023"], ["https://data.delijn.be/stops/400904", "https://data.delijn.be/stops/407401"], ["https://data.delijn.be/stops/401343", "https://data.delijn.be/stops/410208"], ["https://data.delijn.be/stops/109086", "https://data.delijn.be/stops/109866"], ["https://data.delijn.be/stops/108847", "https://data.delijn.be/stops/108864"], ["https://data.delijn.be/stops/409052", "https://data.delijn.be/stops/409067"], ["https://data.delijn.be/stops/302898", "https://data.delijn.be/stops/302903"], ["https://data.delijn.be/stops/200154", "https://data.delijn.be/stops/200155"], ["https://data.delijn.be/stops/201669", "https://data.delijn.be/stops/201678"], ["https://data.delijn.be/stops/200203", "https://data.delijn.be/stops/201203"], ["https://data.delijn.be/stops/504047", "https://data.delijn.be/stops/505368"], ["https://data.delijn.be/stops/400136", "https://data.delijn.be/stops/409207"], ["https://data.delijn.be/stops/302456", "https://data.delijn.be/stops/302457"], ["https://data.delijn.be/stops/200071", "https://data.delijn.be/stops/201072"], ["https://data.delijn.be/stops/202052", "https://data.delijn.be/stops/203053"], ["https://data.delijn.be/stops/108867", "https://data.delijn.be/stops/109513"], ["https://data.delijn.be/stops/409721", "https://data.delijn.be/stops/409722"], ["https://data.delijn.be/stops/302177", "https://data.delijn.be/stops/302446"], ["https://data.delijn.be/stops/506108", "https://data.delijn.be/stops/506225"], ["https://data.delijn.be/stops/203961", "https://data.delijn.be/stops/206409"], ["https://data.delijn.be/stops/204289", "https://data.delijn.be/stops/205290"], ["https://data.delijn.be/stops/200691", "https://data.delijn.be/stops/209645"], ["https://data.delijn.be/stops/206911", "https://data.delijn.be/stops/207105"], ["https://data.delijn.be/stops/104461", "https://data.delijn.be/stops/107154"], ["https://data.delijn.be/stops/108697", "https://data.delijn.be/stops/108699"], ["https://data.delijn.be/stops/103969", "https://data.delijn.be/stops/105763"], ["https://data.delijn.be/stops/408562", "https://data.delijn.be/stops/408563"], ["https://data.delijn.be/stops/201730", "https://data.delijn.be/stops/203192"], ["https://data.delijn.be/stops/508704", "https://data.delijn.be/stops/508707"], ["https://data.delijn.be/stops/300694", "https://data.delijn.be/stops/308132"], ["https://data.delijn.be/stops/501363", "https://data.delijn.be/stops/506367"], ["https://data.delijn.be/stops/101821", "https://data.delijn.be/stops/101822"], ["https://data.delijn.be/stops/102350", "https://data.delijn.be/stops/103282"], ["https://data.delijn.be/stops/307283", "https://data.delijn.be/stops/307534"], ["https://data.delijn.be/stops/106352", "https://data.delijn.be/stops/106354"], ["https://data.delijn.be/stops/200972", "https://data.delijn.be/stops/201972"], ["https://data.delijn.be/stops/200023", "https://data.delijn.be/stops/200100"], ["https://data.delijn.be/stops/504228", "https://data.delijn.be/stops/509627"], ["https://data.delijn.be/stops/304989", "https://data.delijn.be/stops/308022"], ["https://data.delijn.be/stops/109973", "https://data.delijn.be/stops/109974"], ["https://data.delijn.be/stops/304238", "https://data.delijn.be/stops/306708"], ["https://data.delijn.be/stops/501321", "https://data.delijn.be/stops/506286"], ["https://data.delijn.be/stops/108034", "https://data.delijn.be/stops/108036"], ["https://data.delijn.be/stops/304343", "https://data.delijn.be/stops/306784"], ["https://data.delijn.be/stops/407162", "https://data.delijn.be/stops/409877"], ["https://data.delijn.be/stops/104487", "https://data.delijn.be/stops/308619"], ["https://data.delijn.be/stops/104582", "https://data.delijn.be/stops/308608"], ["https://data.delijn.be/stops/508060", "https://data.delijn.be/stops/508704"], ["https://data.delijn.be/stops/101360", "https://data.delijn.be/stops/101805"], ["https://data.delijn.be/stops/406164", "https://data.delijn.be/stops/406264"], ["https://data.delijn.be/stops/406290", "https://data.delijn.be/stops/406291"], ["https://data.delijn.be/stops/204368", "https://data.delijn.be/stops/205367"], ["https://data.delijn.be/stops/204056", "https://data.delijn.be/stops/204726"], ["https://data.delijn.be/stops/302896", "https://data.delijn.be/stops/303228"], ["https://data.delijn.be/stops/409086", "https://data.delijn.be/stops/409087"], ["https://data.delijn.be/stops/308134", "https://data.delijn.be/stops/308135"], ["https://data.delijn.be/stops/502172", "https://data.delijn.be/stops/502540"], ["https://data.delijn.be/stops/104054", "https://data.delijn.be/stops/104768"], ["https://data.delijn.be/stops/406219", "https://data.delijn.be/stops/406220"], ["https://data.delijn.be/stops/105762", "https://data.delijn.be/stops/105767"], ["https://data.delijn.be/stops/509002", "https://data.delijn.be/stops/509004"], ["https://data.delijn.be/stops/300359", "https://data.delijn.be/stops/307003"], ["https://data.delijn.be/stops/201757", "https://data.delijn.be/stops/201816"], ["https://data.delijn.be/stops/105122", "https://data.delijn.be/stops/105193"], ["https://data.delijn.be/stops/200915", "https://data.delijn.be/stops/203687"], ["https://data.delijn.be/stops/503492", "https://data.delijn.be/stops/504362"], ["https://data.delijn.be/stops/201360", "https://data.delijn.be/stops/202006"], ["https://data.delijn.be/stops/203220", "https://data.delijn.be/stops/205076"], ["https://data.delijn.be/stops/400339", "https://data.delijn.be/stops/400958"], ["https://data.delijn.be/stops/301485", "https://data.delijn.be/stops/308704"], ["https://data.delijn.be/stops/203116", "https://data.delijn.be/stops/205796"], ["https://data.delijn.be/stops/301838", "https://data.delijn.be/stops/302465"], ["https://data.delijn.be/stops/405089", "https://data.delijn.be/stops/405751"], ["https://data.delijn.be/stops/104946", "https://data.delijn.be/stops/107305"], ["https://data.delijn.be/stops/101964", "https://data.delijn.be/stops/109286"], ["https://data.delijn.be/stops/507467", "https://data.delijn.be/stops/507473"], ["https://data.delijn.be/stops/105502", "https://data.delijn.be/stops/108801"], ["https://data.delijn.be/stops/501102", "https://data.delijn.be/stops/506101"], ["https://data.delijn.be/stops/406153", "https://data.delijn.be/stops/406209"], ["https://data.delijn.be/stops/206887", "https://data.delijn.be/stops/207882"], ["https://data.delijn.be/stops/406001", "https://data.delijn.be/stops/406016"], ["https://data.delijn.be/stops/201704", "https://data.delijn.be/stops/203602"], ["https://data.delijn.be/stops/302549", "https://data.delijn.be/stops/302556"], ["https://data.delijn.be/stops/104906", "https://data.delijn.be/stops/107244"], ["https://data.delijn.be/stops/206953", "https://data.delijn.be/stops/206954"], ["https://data.delijn.be/stops/409602", "https://data.delijn.be/stops/409604"], ["https://data.delijn.be/stops/102573", "https://data.delijn.be/stops/109166"], ["https://data.delijn.be/stops/105030", "https://data.delijn.be/stops/108640"], ["https://data.delijn.be/stops/102660", "https://data.delijn.be/stops/102699"], ["https://data.delijn.be/stops/404294", "https://data.delijn.be/stops/408676"], ["https://data.delijn.be/stops/505637", "https://data.delijn.be/stops/505778"], ["https://data.delijn.be/stops/109310", "https://data.delijn.be/stops/109345"], ["https://data.delijn.be/stops/305151", "https://data.delijn.be/stops/305168"], ["https://data.delijn.be/stops/407638", "https://data.delijn.be/stops/409778"], ["https://data.delijn.be/stops/501248", "https://data.delijn.be/stops/506248"], ["https://data.delijn.be/stops/401967", "https://data.delijn.be/stops/408157"], ["https://data.delijn.be/stops/103352", "https://data.delijn.be/stops/109687"], ["https://data.delijn.be/stops/204075", "https://data.delijn.be/stops/205236"], ["https://data.delijn.be/stops/105516", "https://data.delijn.be/stops/105518"], ["https://data.delijn.be/stops/304976", "https://data.delijn.be/stops/305037"], ["https://data.delijn.be/stops/400084", "https://data.delijn.be/stops/400160"], ["https://data.delijn.be/stops/200253", "https://data.delijn.be/stops/201253"], ["https://data.delijn.be/stops/101240", "https://data.delijn.be/stops/102370"], ["https://data.delijn.be/stops/203974", "https://data.delijn.be/stops/204238"], ["https://data.delijn.be/stops/103595", "https://data.delijn.be/stops/109394"], ["https://data.delijn.be/stops/106339", "https://data.delijn.be/stops/106340"], ["https://data.delijn.be/stops/307308", "https://data.delijn.be/stops/307309"], ["https://data.delijn.be/stops/506050", "https://data.delijn.be/stops/507386"], ["https://data.delijn.be/stops/201971", "https://data.delijn.be/stops/206614"], ["https://data.delijn.be/stops/304350", "https://data.delijn.be/stops/304354"], ["https://data.delijn.be/stops/101513", "https://data.delijn.be/stops/109027"], ["https://data.delijn.be/stops/202881", "https://data.delijn.be/stops/203881"], ["https://data.delijn.be/stops/504666", "https://data.delijn.be/stops/509372"], ["https://data.delijn.be/stops/308221", "https://data.delijn.be/stops/308224"], ["https://data.delijn.be/stops/205750", "https://data.delijn.be/stops/205751"], ["https://data.delijn.be/stops/304867", "https://data.delijn.be/stops/306416"], ["https://data.delijn.be/stops/400864", "https://data.delijn.be/stops/400865"], ["https://data.delijn.be/stops/206619", "https://data.delijn.be/stops/206757"], ["https://data.delijn.be/stops/504831", "https://data.delijn.be/stops/508895"], ["https://data.delijn.be/stops/508635", "https://data.delijn.be/stops/508981"], ["https://data.delijn.be/stops/208762", "https://data.delijn.be/stops/218014"], ["https://data.delijn.be/stops/106189", "https://data.delijn.be/stops/106190"], ["https://data.delijn.be/stops/302970", "https://data.delijn.be/stops/306714"], ["https://data.delijn.be/stops/302012", "https://data.delijn.be/stops/302051"], ["https://data.delijn.be/stops/308290", "https://data.delijn.be/stops/308291"], ["https://data.delijn.be/stops/108483", "https://data.delijn.be/stops/306603"], ["https://data.delijn.be/stops/200580", "https://data.delijn.be/stops/201580"], ["https://data.delijn.be/stops/405048", "https://data.delijn.be/stops/405070"], ["https://data.delijn.be/stops/504000", "https://data.delijn.be/stops/508775"], ["https://data.delijn.be/stops/503568", "https://data.delijn.be/stops/503716"], ["https://data.delijn.be/stops/303184", "https://data.delijn.be/stops/308959"], ["https://data.delijn.be/stops/200486", "https://data.delijn.be/stops/201488"], ["https://data.delijn.be/stops/400587", "https://data.delijn.be/stops/400603"], ["https://data.delijn.be/stops/404886", "https://data.delijn.be/stops/408642"], ["https://data.delijn.be/stops/102503", "https://data.delijn.be/stops/400025"], ["https://data.delijn.be/stops/300586", "https://data.delijn.be/stops/303518"], ["https://data.delijn.be/stops/300490", "https://data.delijn.be/stops/300493"], ["https://data.delijn.be/stops/105145", "https://data.delijn.be/stops/105665"], ["https://data.delijn.be/stops/106451", "https://data.delijn.be/stops/106452"], ["https://data.delijn.be/stops/101852", "https://data.delijn.be/stops/106871"], ["https://data.delijn.be/stops/304819", "https://data.delijn.be/stops/304821"], ["https://data.delijn.be/stops/201937", "https://data.delijn.be/stops/203441"], ["https://data.delijn.be/stops/106590", "https://data.delijn.be/stops/107276"], ["https://data.delijn.be/stops/204559", "https://data.delijn.be/stops/205559"], ["https://data.delijn.be/stops/303363", "https://data.delijn.be/stops/303391"], ["https://data.delijn.be/stops/108100", "https://data.delijn.be/stops/108102"], ["https://data.delijn.be/stops/407610", "https://data.delijn.be/stops/407767"], ["https://data.delijn.be/stops/303205", "https://data.delijn.be/stops/304313"], ["https://data.delijn.be/stops/407625", "https://data.delijn.be/stops/407691"], ["https://data.delijn.be/stops/200774", "https://data.delijn.be/stops/209386"], ["https://data.delijn.be/stops/400801", "https://data.delijn.be/stops/409541"], ["https://data.delijn.be/stops/206930", "https://data.delijn.be/stops/206949"], ["https://data.delijn.be/stops/200114", "https://data.delijn.be/stops/200115"], ["https://data.delijn.be/stops/103689", "https://data.delijn.be/stops/109433"], ["https://data.delijn.be/stops/305779", "https://data.delijn.be/stops/305781"], ["https://data.delijn.be/stops/503697", "https://data.delijn.be/stops/508697"], ["https://data.delijn.be/stops/204484", "https://data.delijn.be/stops/204737"], ["https://data.delijn.be/stops/300504", "https://data.delijn.be/stops/302335"], ["https://data.delijn.be/stops/301462", "https://data.delijn.be/stops/301496"], ["https://data.delijn.be/stops/501675", "https://data.delijn.be/stops/501694"], ["https://data.delijn.be/stops/204118", "https://data.delijn.be/stops/204119"], ["https://data.delijn.be/stops/504056", "https://data.delijn.be/stops/509056"], ["https://data.delijn.be/stops/101527", "https://data.delijn.be/stops/108794"], ["https://data.delijn.be/stops/105215", "https://data.delijn.be/stops/105543"], ["https://data.delijn.be/stops/105637", "https://data.delijn.be/stops/105641"], ["https://data.delijn.be/stops/308168", "https://data.delijn.be/stops/308171"], ["https://data.delijn.be/stops/505742", "https://data.delijn.be/stops/505833"], ["https://data.delijn.be/stops/302886", "https://data.delijn.be/stops/302897"], ["https://data.delijn.be/stops/102391", "https://data.delijn.be/stops/103139"], ["https://data.delijn.be/stops/408667", "https://data.delijn.be/stops/408704"], ["https://data.delijn.be/stops/109134", "https://data.delijn.be/stops/109419"], ["https://data.delijn.be/stops/200475", "https://data.delijn.be/stops/203191"], ["https://data.delijn.be/stops/202390", "https://data.delijn.be/stops/202391"], ["https://data.delijn.be/stops/202623", "https://data.delijn.be/stops/203622"], ["https://data.delijn.be/stops/304567", "https://data.delijn.be/stops/304568"], ["https://data.delijn.be/stops/300877", "https://data.delijn.be/stops/308856"], ["https://data.delijn.be/stops/505353", "https://data.delijn.be/stops/505730"], ["https://data.delijn.be/stops/408069", "https://data.delijn.be/stops/408084"], ["https://data.delijn.be/stops/508190", "https://data.delijn.be/stops/509746"], ["https://data.delijn.be/stops/500924", "https://data.delijn.be/stops/508341"], ["https://data.delijn.be/stops/407616", "https://data.delijn.be/stops/407617"], ["https://data.delijn.be/stops/400453", "https://data.delijn.be/stops/407668"], ["https://data.delijn.be/stops/508055", "https://data.delijn.be/stops/509789"], ["https://data.delijn.be/stops/201687", "https://data.delijn.be/stops/209662"], ["https://data.delijn.be/stops/106435", "https://data.delijn.be/stops/106437"], ["https://data.delijn.be/stops/108713", "https://data.delijn.be/stops/108859"], ["https://data.delijn.be/stops/501457", "https://data.delijn.be/stops/501547"], ["https://data.delijn.be/stops/503092", "https://data.delijn.be/stops/508092"], ["https://data.delijn.be/stops/104366", "https://data.delijn.be/stops/104368"], ["https://data.delijn.be/stops/402562", "https://data.delijn.be/stops/407805"], ["https://data.delijn.be/stops/208033", "https://data.delijn.be/stops/209033"], ["https://data.delijn.be/stops/509845", "https://data.delijn.be/stops/509846"], ["https://data.delijn.be/stops/501428", "https://data.delijn.be/stops/501487"], ["https://data.delijn.be/stops/509071", "https://data.delijn.be/stops/509271"], ["https://data.delijn.be/stops/505990", "https://data.delijn.be/stops/508298"], ["https://data.delijn.be/stops/404475", "https://data.delijn.be/stops/404584"], ["https://data.delijn.be/stops/504215", "https://data.delijn.be/stops/509111"], ["https://data.delijn.be/stops/304956", "https://data.delijn.be/stops/304957"], ["https://data.delijn.be/stops/403332", "https://data.delijn.be/stops/403346"], ["https://data.delijn.be/stops/208365", "https://data.delijn.be/stops/208776"], ["https://data.delijn.be/stops/406321", "https://data.delijn.be/stops/406369"], ["https://data.delijn.be/stops/504446", "https://data.delijn.be/stops/505299"], ["https://data.delijn.be/stops/302296", "https://data.delijn.be/stops/306786"], ["https://data.delijn.be/stops/407470", "https://data.delijn.be/stops/407492"], ["https://data.delijn.be/stops/304258", "https://data.delijn.be/stops/304288"], ["https://data.delijn.be/stops/502658", "https://data.delijn.be/stops/507658"], ["https://data.delijn.be/stops/505928", "https://data.delijn.be/stops/508996"], ["https://data.delijn.be/stops/503061", "https://data.delijn.be/stops/503063"], ["https://data.delijn.be/stops/505175", "https://data.delijn.be/stops/509648"], ["https://data.delijn.be/stops/302336", "https://data.delijn.be/stops/307829"], ["https://data.delijn.be/stops/403040", "https://data.delijn.be/stops/403041"], ["https://data.delijn.be/stops/508693", "https://data.delijn.be/stops/509979"], ["https://data.delijn.be/stops/302280", "https://data.delijn.be/stops/302286"], ["https://data.delijn.be/stops/505131", "https://data.delijn.be/stops/508666"], ["https://data.delijn.be/stops/503372", "https://data.delijn.be/stops/508033"], ["https://data.delijn.be/stops/406670", "https://data.delijn.be/stops/406676"], ["https://data.delijn.be/stops/109334", "https://data.delijn.be/stops/109370"], ["https://data.delijn.be/stops/106467", "https://data.delijn.be/stops/106469"], ["https://data.delijn.be/stops/504281", "https://data.delijn.be/stops/509281"], ["https://data.delijn.be/stops/202406", "https://data.delijn.be/stops/202407"], ["https://data.delijn.be/stops/403431", "https://data.delijn.be/stops/403432"], ["https://data.delijn.be/stops/503895", "https://data.delijn.be/stops/508987"], ["https://data.delijn.be/stops/200112", "https://data.delijn.be/stops/200567"], ["https://data.delijn.be/stops/502186", "https://data.delijn.be/stops/507186"], ["https://data.delijn.be/stops/403679", "https://data.delijn.be/stops/410328"], ["https://data.delijn.be/stops/401627", "https://data.delijn.be/stops/401661"], ["https://data.delijn.be/stops/305012", "https://data.delijn.be/stops/305013"], ["https://data.delijn.be/stops/204070", "https://data.delijn.be/stops/204355"], ["https://data.delijn.be/stops/200265", "https://data.delijn.be/stops/202545"], ["https://data.delijn.be/stops/408008", "https://data.delijn.be/stops/408150"], ["https://data.delijn.be/stops/405058", "https://data.delijn.be/stops/405115"], ["https://data.delijn.be/stops/504780", "https://data.delijn.be/stops/505946"], ["https://data.delijn.be/stops/409677", "https://data.delijn.be/stops/409705"], ["https://data.delijn.be/stops/405293", "https://data.delijn.be/stops/405294"], ["https://data.delijn.be/stops/105865", "https://data.delijn.be/stops/105874"], ["https://data.delijn.be/stops/301520", "https://data.delijn.be/stops/301521"], ["https://data.delijn.be/stops/101982", "https://data.delijn.be/stops/300070"], ["https://data.delijn.be/stops/200719", "https://data.delijn.be/stops/200720"], ["https://data.delijn.be/stops/207864", "https://data.delijn.be/stops/208585"], ["https://data.delijn.be/stops/400391", "https://data.delijn.be/stops/406484"], ["https://data.delijn.be/stops/402480", "https://data.delijn.be/stops/402499"], ["https://data.delijn.be/stops/501196", "https://data.delijn.be/stops/501497"], ["https://data.delijn.be/stops/403974", "https://data.delijn.be/stops/403975"], ["https://data.delijn.be/stops/207784", "https://data.delijn.be/stops/207785"], ["https://data.delijn.be/stops/403320", "https://data.delijn.be/stops/403322"], ["https://data.delijn.be/stops/503385", "https://data.delijn.be/stops/508188"], ["https://data.delijn.be/stops/405534", "https://data.delijn.be/stops/408075"], ["https://data.delijn.be/stops/304457", "https://data.delijn.be/stops/304461"], ["https://data.delijn.be/stops/501521", "https://data.delijn.be/stops/506301"], ["https://data.delijn.be/stops/200971", "https://data.delijn.be/stops/206624"], ["https://data.delijn.be/stops/501391", "https://data.delijn.be/stops/506479"], ["https://data.delijn.be/stops/208068", "https://data.delijn.be/stops/209067"], ["https://data.delijn.be/stops/500556", "https://data.delijn.be/stops/507947"], ["https://data.delijn.be/stops/102074", "https://data.delijn.be/stops/108837"], ["https://data.delijn.be/stops/402956", "https://data.delijn.be/stops/408178"], ["https://data.delijn.be/stops/108334", "https://data.delijn.be/stops/109302"], ["https://data.delijn.be/stops/407444", "https://data.delijn.be/stops/407478"], ["https://data.delijn.be/stops/305415", "https://data.delijn.be/stops/305416"], ["https://data.delijn.be/stops/205941", "https://data.delijn.be/stops/211004"], ["https://data.delijn.be/stops/501407", "https://data.delijn.be/stops/501485"], ["https://data.delijn.be/stops/301268", "https://data.delijn.be/stops/305042"], ["https://data.delijn.be/stops/305589", "https://data.delijn.be/stops/305593"], ["https://data.delijn.be/stops/208097", "https://data.delijn.be/stops/209007"], ["https://data.delijn.be/stops/108161", "https://data.delijn.be/stops/108164"], ["https://data.delijn.be/stops/204755", "https://data.delijn.be/stops/205755"], ["https://data.delijn.be/stops/209191", "https://data.delijn.be/stops/209349"], ["https://data.delijn.be/stops/506317", "https://data.delijn.be/stops/506783"], ["https://data.delijn.be/stops/303663", "https://data.delijn.be/stops/304939"], ["https://data.delijn.be/stops/200978", "https://data.delijn.be/stops/208540"], ["https://data.delijn.be/stops/504070", "https://data.delijn.be/stops/504579"], ["https://data.delijn.be/stops/303252", "https://data.delijn.be/stops/303253"], ["https://data.delijn.be/stops/104002", "https://data.delijn.be/stops/105510"], ["https://data.delijn.be/stops/503497", "https://data.delijn.be/stops/508875"], ["https://data.delijn.be/stops/400935", "https://data.delijn.be/stops/406730"], ["https://data.delijn.be/stops/403131", "https://data.delijn.be/stops/403411"], ["https://data.delijn.be/stops/501453", "https://data.delijn.be/stops/506449"], ["https://data.delijn.be/stops/202810", "https://data.delijn.be/stops/203865"], ["https://data.delijn.be/stops/204301", "https://data.delijn.be/stops/205302"], ["https://data.delijn.be/stops/106606", "https://data.delijn.be/stops/106684"], ["https://data.delijn.be/stops/206164", "https://data.delijn.be/stops/206165"], ["https://data.delijn.be/stops/206358", "https://data.delijn.be/stops/206957"], ["https://data.delijn.be/stops/102671", "https://data.delijn.be/stops/105646"], ["https://data.delijn.be/stops/304013", "https://data.delijn.be/stops/307508"], ["https://data.delijn.be/stops/202543", "https://data.delijn.be/stops/210015"], ["https://data.delijn.be/stops/409742", "https://data.delijn.be/stops/409752"], ["https://data.delijn.be/stops/208666", "https://data.delijn.be/stops/209540"], ["https://data.delijn.be/stops/201879", "https://data.delijn.be/stops/203666"], ["https://data.delijn.be/stops/503502", "https://data.delijn.be/stops/508502"], ["https://data.delijn.be/stops/406619", "https://data.delijn.be/stops/406643"], ["https://data.delijn.be/stops/102069", "https://data.delijn.be/stops/106928"], ["https://data.delijn.be/stops/502028", "https://data.delijn.be/stops/507028"], ["https://data.delijn.be/stops/505709", "https://data.delijn.be/stops/509140"], ["https://data.delijn.be/stops/406664", "https://data.delijn.be/stops/406682"], ["https://data.delijn.be/stops/208198", "https://data.delijn.be/stops/209197"], ["https://data.delijn.be/stops/307590", "https://data.delijn.be/stops/307600"], ["https://data.delijn.be/stops/201691", "https://data.delijn.be/stops/202365"], ["https://data.delijn.be/stops/307011", "https://data.delijn.be/stops/307015"], ["https://data.delijn.be/stops/208102", "https://data.delijn.be/stops/209102"], ["https://data.delijn.be/stops/502165", "https://data.delijn.be/stops/507153"], ["https://data.delijn.be/stops/202547", "https://data.delijn.be/stops/202548"], ["https://data.delijn.be/stops/104719", "https://data.delijn.be/stops/105155"], ["https://data.delijn.be/stops/304092", "https://data.delijn.be/stops/305437"], ["https://data.delijn.be/stops/109035", "https://data.delijn.be/stops/109040"], ["https://data.delijn.be/stops/402022", "https://data.delijn.be/stops/408875"], ["https://data.delijn.be/stops/508159", "https://data.delijn.be/stops/508166"], ["https://data.delijn.be/stops/105552", "https://data.delijn.be/stops/106028"], ["https://data.delijn.be/stops/206064", "https://data.delijn.be/stops/207064"], ["https://data.delijn.be/stops/407926", "https://data.delijn.be/stops/407960"], ["https://data.delijn.be/stops/402953", "https://data.delijn.be/stops/405397"], ["https://data.delijn.be/stops/402659", "https://data.delijn.be/stops/303647"], ["https://data.delijn.be/stops/108861", "https://data.delijn.be/stops/109743"], ["https://data.delijn.be/stops/304887", "https://data.delijn.be/stops/306163"], ["https://data.delijn.be/stops/308017", "https://data.delijn.be/stops/308018"], ["https://data.delijn.be/stops/204632", "https://data.delijn.be/stops/205614"], ["https://data.delijn.be/stops/308251", "https://data.delijn.be/stops/308292"], ["https://data.delijn.be/stops/208045", "https://data.delijn.be/stops/209561"], ["https://data.delijn.be/stops/403679", "https://data.delijn.be/stops/403681"], ["https://data.delijn.be/stops/101373", "https://data.delijn.be/stops/101400"], ["https://data.delijn.be/stops/207535", "https://data.delijn.be/stops/209688"], ["https://data.delijn.be/stops/503782", "https://data.delijn.be/stops/508783"], ["https://data.delijn.be/stops/405335", "https://data.delijn.be/stops/405336"], ["https://data.delijn.be/stops/205393", "https://data.delijn.be/stops/205763"], ["https://data.delijn.be/stops/408641", "https://data.delijn.be/stops/408737"], ["https://data.delijn.be/stops/504144", "https://data.delijn.be/stops/509144"], ["https://data.delijn.be/stops/407648", "https://data.delijn.be/stops/407672"], ["https://data.delijn.be/stops/407589", "https://data.delijn.be/stops/407617"], ["https://data.delijn.be/stops/504121", "https://data.delijn.be/stops/509129"], ["https://data.delijn.be/stops/505811", "https://data.delijn.be/stops/507347"], ["https://data.delijn.be/stops/505284", "https://data.delijn.be/stops/508292"], ["https://data.delijn.be/stops/503605", "https://data.delijn.be/stops/508609"], ["https://data.delijn.be/stops/506071", "https://data.delijn.be/stops/506775"], ["https://data.delijn.be/stops/300204", "https://data.delijn.be/stops/306742"], ["https://data.delijn.be/stops/104706", "https://data.delijn.be/stops/107082"], ["https://data.delijn.be/stops/300770", "https://data.delijn.be/stops/307251"], ["https://data.delijn.be/stops/101724", "https://data.delijn.be/stops/101846"], ["https://data.delijn.be/stops/201239", "https://data.delijn.be/stops/201920"], ["https://data.delijn.be/stops/400850", "https://data.delijn.be/stops/407700"], ["https://data.delijn.be/stops/208106", "https://data.delijn.be/stops/209776"], ["https://data.delijn.be/stops/200240", "https://data.delijn.be/stops/201650"], ["https://data.delijn.be/stops/503284", "https://data.delijn.be/stops/508284"], ["https://data.delijn.be/stops/501471", "https://data.delijn.be/stops/506466"], ["https://data.delijn.be/stops/503973", "https://data.delijn.be/stops/508105"], ["https://data.delijn.be/stops/502552", "https://data.delijn.be/stops/505012"], ["https://data.delijn.be/stops/104901", "https://data.delijn.be/stops/107608"], ["https://data.delijn.be/stops/301394", "https://data.delijn.be/stops/301396"], ["https://data.delijn.be/stops/105478", "https://data.delijn.be/stops/105480"], ["https://data.delijn.be/stops/301269", "https://data.delijn.be/stops/301278"], ["https://data.delijn.be/stops/504632", "https://data.delijn.be/stops/509632"], ["https://data.delijn.be/stops/400121", "https://data.delijn.be/stops/400163"], ["https://data.delijn.be/stops/307964", "https://data.delijn.be/stops/307971"], ["https://data.delijn.be/stops/503059", "https://data.delijn.be/stops/508059"], ["https://data.delijn.be/stops/502300", "https://data.delijn.be/stops/507303"], ["https://data.delijn.be/stops/305643", "https://data.delijn.be/stops/305671"], ["https://data.delijn.be/stops/504068", "https://data.delijn.be/stops/504113"], ["https://data.delijn.be/stops/305101", "https://data.delijn.be/stops/305119"], ["https://data.delijn.be/stops/301552", "https://data.delijn.be/stops/308088"], ["https://data.delijn.be/stops/104900", "https://data.delijn.be/stops/108550"], ["https://data.delijn.be/stops/500117", "https://data.delijn.be/stops/507271"], ["https://data.delijn.be/stops/300120", "https://data.delijn.be/stops/304941"], ["https://data.delijn.be/stops/305189", "https://data.delijn.be/stops/305209"], ["https://data.delijn.be/stops/505124", "https://data.delijn.be/stops/505126"], ["https://data.delijn.be/stops/203970", "https://data.delijn.be/stops/204093"], ["https://data.delijn.be/stops/502213", "https://data.delijn.be/stops/505149"], ["https://data.delijn.be/stops/104424", "https://data.delijn.be/stops/204450"], ["https://data.delijn.be/stops/400214", "https://data.delijn.be/stops/400215"], ["https://data.delijn.be/stops/106152", "https://data.delijn.be/stops/106442"], ["https://data.delijn.be/stops/101226", "https://data.delijn.be/stops/107806"], ["https://data.delijn.be/stops/502795", "https://data.delijn.be/stops/507024"], ["https://data.delijn.be/stops/301906", "https://data.delijn.be/stops/306259"], ["https://data.delijn.be/stops/200473", "https://data.delijn.be/stops/201474"], ["https://data.delijn.be/stops/101069", "https://data.delijn.be/stops/105964"], ["https://data.delijn.be/stops/200472", "https://data.delijn.be/stops/201471"], ["https://data.delijn.be/stops/200510", "https://data.delijn.be/stops/201511"], ["https://data.delijn.be/stops/501037", "https://data.delijn.be/stops/501043"], ["https://data.delijn.be/stops/403155", "https://data.delijn.be/stops/410320"], ["https://data.delijn.be/stops/307716", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/104878", "https://data.delijn.be/stops/104879"], ["https://data.delijn.be/stops/105219", "https://data.delijn.be/stops/305823"], ["https://data.delijn.be/stops/503193", "https://data.delijn.be/stops/508191"], ["https://data.delijn.be/stops/401516", "https://data.delijn.be/stops/401561"], ["https://data.delijn.be/stops/205976", "https://data.delijn.be/stops/205977"], ["https://data.delijn.be/stops/404445", "https://data.delijn.be/stops/404560"], ["https://data.delijn.be/stops/200626", "https://data.delijn.be/stops/201626"], ["https://data.delijn.be/stops/207768", "https://data.delijn.be/stops/207781"], ["https://data.delijn.be/stops/200235", "https://data.delijn.be/stops/200521"], ["https://data.delijn.be/stops/501078", "https://data.delijn.be/stops/506078"], ["https://data.delijn.be/stops/306597", "https://data.delijn.be/stops/306602"], ["https://data.delijn.be/stops/103132", "https://data.delijn.be/stops/106668"], ["https://data.delijn.be/stops/501180", "https://data.delijn.be/stops/509499"], ["https://data.delijn.be/stops/504135", "https://data.delijn.be/stops/509133"], ["https://data.delijn.be/stops/207645", "https://data.delijn.be/stops/209687"], ["https://data.delijn.be/stops/402214", "https://data.delijn.be/stops/404857"], ["https://data.delijn.be/stops/400110", "https://data.delijn.be/stops/400144"], ["https://data.delijn.be/stops/406057", "https://data.delijn.be/stops/406142"], ["https://data.delijn.be/stops/105532", "https://data.delijn.be/stops/106973"], ["https://data.delijn.be/stops/202638", "https://data.delijn.be/stops/203120"], ["https://data.delijn.be/stops/208675", "https://data.delijn.be/stops/208683"], ["https://data.delijn.be/stops/405153", "https://data.delijn.be/stops/405168"], ["https://data.delijn.be/stops/300351", "https://data.delijn.be/stops/301308"], ["https://data.delijn.be/stops/103078", "https://data.delijn.be/stops/104237"], ["https://data.delijn.be/stops/308208", "https://data.delijn.be/stops/308211"], ["https://data.delijn.be/stops/105694", "https://data.delijn.be/stops/108732"], ["https://data.delijn.be/stops/304155", "https://data.delijn.be/stops/304160"], ["https://data.delijn.be/stops/404214", "https://data.delijn.be/stops/404215"], ["https://data.delijn.be/stops/503541", "https://data.delijn.be/stops/503542"], ["https://data.delijn.be/stops/504025", "https://data.delijn.be/stops/509029"], ["https://data.delijn.be/stops/406700", "https://data.delijn.be/stops/406706"], ["https://data.delijn.be/stops/209589", "https://data.delijn.be/stops/307528"], ["https://data.delijn.be/stops/500945", "https://data.delijn.be/stops/509411"], ["https://data.delijn.be/stops/202823", "https://data.delijn.be/stops/211097"], ["https://data.delijn.be/stops/500012", "https://data.delijn.be/stops/505345"], ["https://data.delijn.be/stops/305075", "https://data.delijn.be/stops/305153"], ["https://data.delijn.be/stops/401793", "https://data.delijn.be/stops/401800"], ["https://data.delijn.be/stops/206240", "https://data.delijn.be/stops/207320"], ["https://data.delijn.be/stops/109767", "https://data.delijn.be/stops/109784"], ["https://data.delijn.be/stops/302063", "https://data.delijn.be/stops/302737"], ["https://data.delijn.be/stops/306112", "https://data.delijn.be/stops/307862"], ["https://data.delijn.be/stops/101797", "https://data.delijn.be/stops/108533"], ["https://data.delijn.be/stops/503810", "https://data.delijn.be/stops/508810"], ["https://data.delijn.be/stops/207886", "https://data.delijn.be/stops/207889"], ["https://data.delijn.be/stops/207183", "https://data.delijn.be/stops/217006"], ["https://data.delijn.be/stops/105286", "https://data.delijn.be/stops/105290"], ["https://data.delijn.be/stops/502059", "https://data.delijn.be/stops/507051"], ["https://data.delijn.be/stops/504219", "https://data.delijn.be/stops/509219"], ["https://data.delijn.be/stops/103576", "https://data.delijn.be/stops/106615"], ["https://data.delijn.be/stops/400780", "https://data.delijn.be/stops/400781"], ["https://data.delijn.be/stops/102420", "https://data.delijn.be/stops/105315"], ["https://data.delijn.be/stops/106103", "https://data.delijn.be/stops/106104"], ["https://data.delijn.be/stops/303576", "https://data.delijn.be/stops/305226"], ["https://data.delijn.be/stops/105068", "https://data.delijn.be/stops/106779"], ["https://data.delijn.be/stops/208037", "https://data.delijn.be/stops/217001"], ["https://data.delijn.be/stops/502446", "https://data.delijn.be/stops/502589"], ["https://data.delijn.be/stops/503148", "https://data.delijn.be/stops/508152"], ["https://data.delijn.be/stops/503513", "https://data.delijn.be/stops/504787"], ["https://data.delijn.be/stops/400328", "https://data.delijn.be/stops/400356"], ["https://data.delijn.be/stops/507401", "https://data.delijn.be/stops/507589"], ["https://data.delijn.be/stops/109043", "https://data.delijn.be/stops/109044"], ["https://data.delijn.be/stops/401842", "https://data.delijn.be/stops/401843"], ["https://data.delijn.be/stops/303153", "https://data.delijn.be/stops/303154"], ["https://data.delijn.be/stops/107167", "https://data.delijn.be/stops/107168"], ["https://data.delijn.be/stops/406595", "https://data.delijn.be/stops/406606"], ["https://data.delijn.be/stops/200913", "https://data.delijn.be/stops/202689"], ["https://data.delijn.be/stops/105305", "https://data.delijn.be/stops/105980"], ["https://data.delijn.be/stops/105050", "https://data.delijn.be/stops/106708"], ["https://data.delijn.be/stops/106847", "https://data.delijn.be/stops/106849"], ["https://data.delijn.be/stops/409555", "https://data.delijn.be/stops/409606"], ["https://data.delijn.be/stops/503288", "https://data.delijn.be/stops/508288"], ["https://data.delijn.be/stops/106246", "https://data.delijn.be/stops/106248"], ["https://data.delijn.be/stops/105132", "https://data.delijn.be/stops/305610"], ["https://data.delijn.be/stops/204204", "https://data.delijn.be/stops/204230"], ["https://data.delijn.be/stops/500002", "https://data.delijn.be/stops/508662"], ["https://data.delijn.be/stops/302534", "https://data.delijn.be/stops/308617"], ["https://data.delijn.be/stops/205030", "https://data.delijn.be/stops/205033"], ["https://data.delijn.be/stops/404795", "https://data.delijn.be/stops/406991"], ["https://data.delijn.be/stops/407604", "https://data.delijn.be/stops/407767"], ["https://data.delijn.be/stops/202927", "https://data.delijn.be/stops/208693"], ["https://data.delijn.be/stops/208565", "https://data.delijn.be/stops/209566"], ["https://data.delijn.be/stops/200824", "https://data.delijn.be/stops/200846"], ["https://data.delijn.be/stops/407397", "https://data.delijn.be/stops/407400"], ["https://data.delijn.be/stops/405484", "https://data.delijn.be/stops/405655"], ["https://data.delijn.be/stops/105771", "https://data.delijn.be/stops/105774"], ["https://data.delijn.be/stops/503985", "https://data.delijn.be/stops/508985"], ["https://data.delijn.be/stops/305968", "https://data.delijn.be/stops/307619"], ["https://data.delijn.be/stops/303646", "https://data.delijn.be/stops/303647"], ["https://data.delijn.be/stops/102253", "https://data.delijn.be/stops/102254"], ["https://data.delijn.be/stops/105189", "https://data.delijn.be/stops/108889"], ["https://data.delijn.be/stops/101217", "https://data.delijn.be/stops/104449"], ["https://data.delijn.be/stops/102465", "https://data.delijn.be/stops/103397"], ["https://data.delijn.be/stops/202057", "https://data.delijn.be/stops/203056"], ["https://data.delijn.be/stops/301922", "https://data.delijn.be/stops/302794"], ["https://data.delijn.be/stops/502023", "https://data.delijn.be/stops/507796"], ["https://data.delijn.be/stops/101883", "https://data.delijn.be/stops/104562"], ["https://data.delijn.be/stops/403816", "https://data.delijn.be/stops/403818"], ["https://data.delijn.be/stops/400953", "https://data.delijn.be/stops/405357"], ["https://data.delijn.be/stops/505394", "https://data.delijn.be/stops/508675"], ["https://data.delijn.be/stops/304369", "https://data.delijn.be/stops/307385"], ["https://data.delijn.be/stops/300109", "https://data.delijn.be/stops/306856"], ["https://data.delijn.be/stops/403438", "https://data.delijn.be/stops/406854"], ["https://data.delijn.be/stops/104793", "https://data.delijn.be/stops/105103"], ["https://data.delijn.be/stops/408314", "https://data.delijn.be/stops/408355"], ["https://data.delijn.be/stops/108831", "https://data.delijn.be/stops/108848"], ["https://data.delijn.be/stops/400916", "https://data.delijn.be/stops/406876"], ["https://data.delijn.be/stops/305291", "https://data.delijn.be/stops/305293"], ["https://data.delijn.be/stops/200555", "https://data.delijn.be/stops/201668"], ["https://data.delijn.be/stops/505151", "https://data.delijn.be/stops/506098"], ["https://data.delijn.be/stops/501551", "https://data.delijn.be/stops/502520"], ["https://data.delijn.be/stops/107450", "https://data.delijn.be/stops/109687"], ["https://data.delijn.be/stops/503197", "https://data.delijn.be/stops/508197"], ["https://data.delijn.be/stops/304296", "https://data.delijn.be/stops/304474"], ["https://data.delijn.be/stops/303368", "https://data.delijn.be/stops/308717"], ["https://data.delijn.be/stops/205483", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/104635", "https://data.delijn.be/stops/104650"], ["https://data.delijn.be/stops/509363", "https://data.delijn.be/stops/509371"], ["https://data.delijn.be/stops/400494", "https://data.delijn.be/stops/400495"], ["https://data.delijn.be/stops/504097", "https://data.delijn.be/stops/505910"], ["https://data.delijn.be/stops/402518", "https://data.delijn.be/stops/402523"], ["https://data.delijn.be/stops/506490", "https://data.delijn.be/stops/506491"], ["https://data.delijn.be/stops/404529", "https://data.delijn.be/stops/404530"], ["https://data.delijn.be/stops/101277", "https://data.delijn.be/stops/101279"], ["https://data.delijn.be/stops/201433", "https://data.delijn.be/stops/201434"], ["https://data.delijn.be/stops/408298", "https://data.delijn.be/stops/408302"], ["https://data.delijn.be/stops/302446", "https://data.delijn.be/stops/307140"], ["https://data.delijn.be/stops/408348", "https://data.delijn.be/stops/410159"], ["https://data.delijn.be/stops/103087", "https://data.delijn.be/stops/107476"], ["https://data.delijn.be/stops/207759", "https://data.delijn.be/stops/207777"], ["https://data.delijn.be/stops/402172", "https://data.delijn.be/stops/402265"], ["https://data.delijn.be/stops/302205", "https://data.delijn.be/stops/302207"], ["https://data.delijn.be/stops/502732", "https://data.delijn.be/stops/506049"], ["https://data.delijn.be/stops/503014", "https://data.delijn.be/stops/503016"], ["https://data.delijn.be/stops/301715", "https://data.delijn.be/stops/301718"], ["https://data.delijn.be/stops/404928", "https://data.delijn.be/stops/407645"], ["https://data.delijn.be/stops/109812", "https://data.delijn.be/stops/109815"], ["https://data.delijn.be/stops/503605", "https://data.delijn.be/stops/503609"], ["https://data.delijn.be/stops/200838", "https://data.delijn.be/stops/202299"], ["https://data.delijn.be/stops/300055", "https://data.delijn.be/stops/306793"], ["https://data.delijn.be/stops/400123", "https://data.delijn.be/stops/409199"], ["https://data.delijn.be/stops/204042", "https://data.delijn.be/stops/205042"], ["https://data.delijn.be/stops/208488", "https://data.delijn.be/stops/209046"], ["https://data.delijn.be/stops/106721", "https://data.delijn.be/stops/109672"], ["https://data.delijn.be/stops/401279", "https://data.delijn.be/stops/401283"], ["https://data.delijn.be/stops/505953", "https://data.delijn.be/stops/508163"], ["https://data.delijn.be/stops/206549", "https://data.delijn.be/stops/207549"], ["https://data.delijn.be/stops/407836", "https://data.delijn.be/stops/407837"], ["https://data.delijn.be/stops/202580", "https://data.delijn.be/stops/210077"], ["https://data.delijn.be/stops/200248", "https://data.delijn.be/stops/200575"], ["https://data.delijn.be/stops/206623", "https://data.delijn.be/stops/207623"], ["https://data.delijn.be/stops/101600", "https://data.delijn.be/stops/103973"], ["https://data.delijn.be/stops/301764", "https://data.delijn.be/stops/301773"], ["https://data.delijn.be/stops/502326", "https://data.delijn.be/stops/507338"], ["https://data.delijn.be/stops/503764", "https://data.delijn.be/stops/508725"], ["https://data.delijn.be/stops/503297", "https://data.delijn.be/stops/509926"], ["https://data.delijn.be/stops/300847", "https://data.delijn.be/stops/302604"], ["https://data.delijn.be/stops/505207", "https://data.delijn.be/stops/505989"], ["https://data.delijn.be/stops/104507", "https://data.delijn.be/stops/104508"], ["https://data.delijn.be/stops/207763", "https://data.delijn.be/stops/209408"], ["https://data.delijn.be/stops/305187", "https://data.delijn.be/stops/305188"], ["https://data.delijn.be/stops/403652", "https://data.delijn.be/stops/409965"], ["https://data.delijn.be/stops/303566", "https://data.delijn.be/stops/307990"], ["https://data.delijn.be/stops/109117", "https://data.delijn.be/stops/109118"], ["https://data.delijn.be/stops/504528", "https://data.delijn.be/stops/504529"], ["https://data.delijn.be/stops/505980", "https://data.delijn.be/stops/509140"], ["https://data.delijn.be/stops/407392", "https://data.delijn.be/stops/407393"], ["https://data.delijn.be/stops/206494", "https://data.delijn.be/stops/207493"], ["https://data.delijn.be/stops/204149", "https://data.delijn.be/stops/204154"], ["https://data.delijn.be/stops/208786", "https://data.delijn.be/stops/208787"], ["https://data.delijn.be/stops/102121", "https://data.delijn.be/stops/109365"], ["https://data.delijn.be/stops/501130", "https://data.delijn.be/stops/501137"], ["https://data.delijn.be/stops/109711", "https://data.delijn.be/stops/406464"], ["https://data.delijn.be/stops/402161", "https://data.delijn.be/stops/402266"], ["https://data.delijn.be/stops/108909", "https://data.delijn.be/stops/109398"], ["https://data.delijn.be/stops/402963", "https://data.delijn.be/stops/402965"], ["https://data.delijn.be/stops/506074", "https://data.delijn.be/stops/506776"], ["https://data.delijn.be/stops/305381", "https://data.delijn.be/stops/333454"], ["https://data.delijn.be/stops/202285", "https://data.delijn.be/stops/203285"], ["https://data.delijn.be/stops/501466", "https://data.delijn.be/stops/506466"], ["https://data.delijn.be/stops/302269", "https://data.delijn.be/stops/306972"], ["https://data.delijn.be/stops/109453", "https://data.delijn.be/stops/109555"], ["https://data.delijn.be/stops/306205", "https://data.delijn.be/stops/306206"], ["https://data.delijn.be/stops/108640", "https://data.delijn.be/stops/108645"], ["https://data.delijn.be/stops/407108", "https://data.delijn.be/stops/407731"], ["https://data.delijn.be/stops/206686", "https://data.delijn.be/stops/207721"], ["https://data.delijn.be/stops/209459", "https://data.delijn.be/stops/209466"], ["https://data.delijn.be/stops/405736", "https://data.delijn.be/stops/410142"], ["https://data.delijn.be/stops/300841", "https://data.delijn.be/stops/305406"], ["https://data.delijn.be/stops/102521", "https://data.delijn.be/stops/109662"], ["https://data.delijn.be/stops/402795", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/103570", "https://data.delijn.be/stops/107136"], ["https://data.delijn.be/stops/208217", "https://data.delijn.be/stops/209313"], ["https://data.delijn.be/stops/508725", "https://data.delijn.be/stops/508774"], ["https://data.delijn.be/stops/402712", "https://data.delijn.be/stops/308150"], ["https://data.delijn.be/stops/202160", "https://data.delijn.be/stops/202161"], ["https://data.delijn.be/stops/307507", "https://data.delijn.be/stops/307510"], ["https://data.delijn.be/stops/503087", "https://data.delijn.be/stops/508825"], ["https://data.delijn.be/stops/408981", "https://data.delijn.be/stops/409006"], ["https://data.delijn.be/stops/308454", "https://data.delijn.be/stops/308455"], ["https://data.delijn.be/stops/406902", "https://data.delijn.be/stops/406903"], ["https://data.delijn.be/stops/303421", "https://data.delijn.be/stops/303462"], ["https://data.delijn.be/stops/405465", "https://data.delijn.be/stops/408817"], ["https://data.delijn.be/stops/402512", "https://data.delijn.be/stops/405663"], ["https://data.delijn.be/stops/103473", "https://data.delijn.be/stops/103489"], ["https://data.delijn.be/stops/103287", "https://data.delijn.be/stops/107686"], ["https://data.delijn.be/stops/203965", "https://data.delijn.be/stops/203966"], ["https://data.delijn.be/stops/408858", "https://data.delijn.be/stops/408903"], ["https://data.delijn.be/stops/303311", "https://data.delijn.be/stops/308920"], ["https://data.delijn.be/stops/106986", "https://data.delijn.be/stops/106988"], ["https://data.delijn.be/stops/300957", "https://data.delijn.be/stops/300958"], ["https://data.delijn.be/stops/102972", "https://data.delijn.be/stops/105785"], ["https://data.delijn.be/stops/501226", "https://data.delijn.be/stops/506226"], ["https://data.delijn.be/stops/408528", "https://data.delijn.be/stops/408792"], ["https://data.delijn.be/stops/501035", "https://data.delijn.be/stops/501490"], ["https://data.delijn.be/stops/300784", "https://data.delijn.be/stops/304589"], ["https://data.delijn.be/stops/400851", "https://data.delijn.be/stops/407700"], ["https://data.delijn.be/stops/502024", "https://data.delijn.be/stops/507927"], ["https://data.delijn.be/stops/300934", "https://data.delijn.be/stops/300992"], ["https://data.delijn.be/stops/404242", "https://data.delijn.be/stops/409813"], ["https://data.delijn.be/stops/102416", "https://data.delijn.be/stops/109568"], ["https://data.delijn.be/stops/102468", "https://data.delijn.be/stops/102469"], ["https://data.delijn.be/stops/406395", "https://data.delijn.be/stops/302824"], ["https://data.delijn.be/stops/306368", "https://data.delijn.be/stops/307600"], ["https://data.delijn.be/stops/504591", "https://data.delijn.be/stops/509591"], ["https://data.delijn.be/stops/303301", "https://data.delijn.be/stops/305102"], ["https://data.delijn.be/stops/105139", "https://data.delijn.be/stops/305826"], ["https://data.delijn.be/stops/406212", "https://data.delijn.be/stops/408922"], ["https://data.delijn.be/stops/307303", "https://data.delijn.be/stops/307319"], ["https://data.delijn.be/stops/109589", "https://data.delijn.be/stops/109590"], ["https://data.delijn.be/stops/504873", "https://data.delijn.be/stops/509873"], ["https://data.delijn.be/stops/503778", "https://data.delijn.be/stops/503837"], ["https://data.delijn.be/stops/501403", "https://data.delijn.be/stops/506512"], ["https://data.delijn.be/stops/303123", "https://data.delijn.be/stops/307202"], ["https://data.delijn.be/stops/102401", "https://data.delijn.be/stops/105853"], ["https://data.delijn.be/stops/304209", "https://data.delijn.be/stops/304210"], ["https://data.delijn.be/stops/203990", "https://data.delijn.be/stops/203991"], ["https://data.delijn.be/stops/202367", "https://data.delijn.be/stops/202368"], ["https://data.delijn.be/stops/204118", "https://data.delijn.be/stops/205118"], ["https://data.delijn.be/stops/301328", "https://data.delijn.be/stops/306654"], ["https://data.delijn.be/stops/105601", "https://data.delijn.be/stops/105602"], ["https://data.delijn.be/stops/502645", "https://data.delijn.be/stops/507417"], ["https://data.delijn.be/stops/203050", "https://data.delijn.be/stops/203051"], ["https://data.delijn.be/stops/301912", "https://data.delijn.be/stops/306252"], ["https://data.delijn.be/stops/405578", "https://data.delijn.be/stops/405579"], ["https://data.delijn.be/stops/200502", "https://data.delijn.be/stops/200503"], ["https://data.delijn.be/stops/105753", "https://data.delijn.be/stops/109817"], ["https://data.delijn.be/stops/200064", "https://data.delijn.be/stops/201267"], ["https://data.delijn.be/stops/102501", "https://data.delijn.be/stops/102506"], ["https://data.delijn.be/stops/206580", "https://data.delijn.be/stops/207722"], ["https://data.delijn.be/stops/400824", "https://data.delijn.be/stops/400825"], ["https://data.delijn.be/stops/304218", "https://data.delijn.be/stops/308774"], ["https://data.delijn.be/stops/204776", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/402316", "https://data.delijn.be/stops/402317"], ["https://data.delijn.be/stops/403086", "https://data.delijn.be/stops/403087"], ["https://data.delijn.be/stops/208595", "https://data.delijn.be/stops/209808"], ["https://data.delijn.be/stops/101461", "https://data.delijn.be/stops/101462"], ["https://data.delijn.be/stops/107445", "https://data.delijn.be/stops/107450"], ["https://data.delijn.be/stops/300969", "https://data.delijn.be/stops/302804"], ["https://data.delijn.be/stops/306793", "https://data.delijn.be/stops/306794"], ["https://data.delijn.be/stops/502478", "https://data.delijn.be/stops/507478"], ["https://data.delijn.be/stops/107281", "https://data.delijn.be/stops/107394"], ["https://data.delijn.be/stops/204659", "https://data.delijn.be/stops/205659"], ["https://data.delijn.be/stops/203214", "https://data.delijn.be/stops/203281"], ["https://data.delijn.be/stops/202063", "https://data.delijn.be/stops/203063"], ["https://data.delijn.be/stops/102520", "https://data.delijn.be/stops/105490"], ["https://data.delijn.be/stops/502179", "https://data.delijn.be/stops/507178"], ["https://data.delijn.be/stops/300072", "https://data.delijn.be/stops/304667"], ["https://data.delijn.be/stops/203694", "https://data.delijn.be/stops/203695"], ["https://data.delijn.be/stops/204489", "https://data.delijn.be/stops/204493"], ["https://data.delijn.be/stops/301472", "https://data.delijn.be/stops/305651"], ["https://data.delijn.be/stops/503160", "https://data.delijn.be/stops/508169"], ["https://data.delijn.be/stops/501468", "https://data.delijn.be/stops/501469"], ["https://data.delijn.be/stops/308733", "https://data.delijn.be/stops/308734"], ["https://data.delijn.be/stops/300045", "https://data.delijn.be/stops/300857"], ["https://data.delijn.be/stops/305050", "https://data.delijn.be/stops/305089"], ["https://data.delijn.be/stops/504475", "https://data.delijn.be/stops/509475"], ["https://data.delijn.be/stops/503221", "https://data.delijn.be/stops/505260"], ["https://data.delijn.be/stops/106486", "https://data.delijn.be/stops/106487"], ["https://data.delijn.be/stops/200778", "https://data.delijn.be/stops/200947"], ["https://data.delijn.be/stops/206655", "https://data.delijn.be/stops/206656"], ["https://data.delijn.be/stops/208731", "https://data.delijn.be/stops/209732"], ["https://data.delijn.be/stops/402065", "https://data.delijn.be/stops/402112"], ["https://data.delijn.be/stops/303171", "https://data.delijn.be/stops/304320"], ["https://data.delijn.be/stops/400399", "https://data.delijn.be/stops/400417"], ["https://data.delijn.be/stops/302101", "https://data.delijn.be/stops/302103"], ["https://data.delijn.be/stops/406467", "https://data.delijn.be/stops/406476"], ["https://data.delijn.be/stops/503055", "https://data.delijn.be/stops/508154"], ["https://data.delijn.be/stops/101654", "https://data.delijn.be/stops/308845"], ["https://data.delijn.be/stops/406141", "https://data.delijn.be/stops/406357"], ["https://data.delijn.be/stops/306698", "https://data.delijn.be/stops/308781"], ["https://data.delijn.be/stops/305136", "https://data.delijn.be/stops/305143"], ["https://data.delijn.be/stops/206818", "https://data.delijn.be/stops/206820"], ["https://data.delijn.be/stops/504002", "https://data.delijn.be/stops/504004"], ["https://data.delijn.be/stops/400678", "https://data.delijn.be/stops/405412"], ["https://data.delijn.be/stops/400630", "https://data.delijn.be/stops/410005"], ["https://data.delijn.be/stops/503819", "https://data.delijn.be/stops/505287"], ["https://data.delijn.be/stops/301300", "https://data.delijn.be/stops/301334"], ["https://data.delijn.be/stops/409262", "https://data.delijn.be/stops/409264"], ["https://data.delijn.be/stops/208010", "https://data.delijn.be/stops/208011"], ["https://data.delijn.be/stops/405908", "https://data.delijn.be/stops/405978"], ["https://data.delijn.be/stops/102997", "https://data.delijn.be/stops/107902"], ["https://data.delijn.be/stops/101085", "https://data.delijn.be/stops/105325"], ["https://data.delijn.be/stops/404871", "https://data.delijn.be/stops/404967"], ["https://data.delijn.be/stops/107005", "https://data.delijn.be/stops/108955"], ["https://data.delijn.be/stops/307605", "https://data.delijn.be/stops/307606"], ["https://data.delijn.be/stops/501114", "https://data.delijn.be/stops/501115"], ["https://data.delijn.be/stops/200920", "https://data.delijn.be/stops/201957"], ["https://data.delijn.be/stops/305734", "https://data.delijn.be/stops/305735"], ["https://data.delijn.be/stops/504678", "https://data.delijn.be/stops/509268"], ["https://data.delijn.be/stops/303219", "https://data.delijn.be/stops/303220"], ["https://data.delijn.be/stops/202558", "https://data.delijn.be/stops/203552"], ["https://data.delijn.be/stops/103660", "https://data.delijn.be/stops/106337"], ["https://data.delijn.be/stops/206112", "https://data.delijn.be/stops/207156"], ["https://data.delijn.be/stops/300001", "https://data.delijn.be/stops/302514"], ["https://data.delijn.be/stops/402850", "https://data.delijn.be/stops/409009"], ["https://data.delijn.be/stops/506675", "https://data.delijn.be/stops/506677"], ["https://data.delijn.be/stops/405003", "https://data.delijn.be/stops/408154"], ["https://data.delijn.be/stops/305677", "https://data.delijn.be/stops/305688"], ["https://data.delijn.be/stops/304454", "https://data.delijn.be/stops/304455"], ["https://data.delijn.be/stops/505822", "https://data.delijn.be/stops/508776"], ["https://data.delijn.be/stops/107721", "https://data.delijn.be/stops/107740"], ["https://data.delijn.be/stops/504070", "https://data.delijn.be/stops/505573"], ["https://data.delijn.be/stops/203090", "https://data.delijn.be/stops/203270"], ["https://data.delijn.be/stops/502430", "https://data.delijn.be/stops/502752"], ["https://data.delijn.be/stops/305046", "https://data.delijn.be/stops/305049"], ["https://data.delijn.be/stops/202700", "https://data.delijn.be/stops/203705"], ["https://data.delijn.be/stops/206410", "https://data.delijn.be/stops/207080"], ["https://data.delijn.be/stops/206571", "https://data.delijn.be/stops/206573"], ["https://data.delijn.be/stops/108454", "https://data.delijn.be/stops/304920"], ["https://data.delijn.be/stops/502761", "https://data.delijn.be/stops/505057"], ["https://data.delijn.be/stops/409050", "https://data.delijn.be/stops/409084"], ["https://data.delijn.be/stops/301656", "https://data.delijn.be/stops/301893"], ["https://data.delijn.be/stops/206678", "https://data.delijn.be/stops/208810"], ["https://data.delijn.be/stops/401514", "https://data.delijn.be/stops/404463"], ["https://data.delijn.be/stops/204760", "https://data.delijn.be/stops/205371"], ["https://data.delijn.be/stops/200727", "https://data.delijn.be/stops/205943"], ["https://data.delijn.be/stops/202633", "https://data.delijn.be/stops/205068"], ["https://data.delijn.be/stops/103005", "https://data.delijn.be/stops/104175"], ["https://data.delijn.be/stops/200681", "https://data.delijn.be/stops/210041"], ["https://data.delijn.be/stops/208516", "https://data.delijn.be/stops/208676"], ["https://data.delijn.be/stops/406228", "https://data.delijn.be/stops/406432"], ["https://data.delijn.be/stops/109025", "https://data.delijn.be/stops/109040"], ["https://data.delijn.be/stops/207440", "https://data.delijn.be/stops/209685"], ["https://data.delijn.be/stops/504490", "https://data.delijn.be/stops/509497"], ["https://data.delijn.be/stops/402081", "https://data.delijn.be/stops/402445"], ["https://data.delijn.be/stops/201376", "https://data.delijn.be/stops/211044"], ["https://data.delijn.be/stops/400562", "https://data.delijn.be/stops/403850"], ["https://data.delijn.be/stops/302049", "https://data.delijn.be/stops/302746"], ["https://data.delijn.be/stops/202418", "https://data.delijn.be/stops/203276"], ["https://data.delijn.be/stops/401245", "https://data.delijn.be/stops/410183"], ["https://data.delijn.be/stops/505287", "https://data.delijn.be/stops/508980"], ["https://data.delijn.be/stops/304587", "https://data.delijn.be/stops/304588"], ["https://data.delijn.be/stops/203667", "https://data.delijn.be/stops/203668"], ["https://data.delijn.be/stops/408099", "https://data.delijn.be/stops/408111"], ["https://data.delijn.be/stops/504402", "https://data.delijn.be/stops/505304"], ["https://data.delijn.be/stops/403201", "https://data.delijn.be/stops/403212"], ["https://data.delijn.be/stops/200505", "https://data.delijn.be/stops/200545"], ["https://data.delijn.be/stops/300369", "https://data.delijn.be/stops/300370"], ["https://data.delijn.be/stops/304040", "https://data.delijn.be/stops/305610"], ["https://data.delijn.be/stops/200369", "https://data.delijn.be/stops/200983"], ["https://data.delijn.be/stops/505046", "https://data.delijn.be/stops/505221"], ["https://data.delijn.be/stops/407009", "https://data.delijn.be/stops/410014"], ["https://data.delijn.be/stops/409659", "https://data.delijn.be/stops/409690"], ["https://data.delijn.be/stops/302223", "https://data.delijn.be/stops/303998"], ["https://data.delijn.be/stops/407464", "https://data.delijn.be/stops/410068"], ["https://data.delijn.be/stops/405572", "https://data.delijn.be/stops/405576"], ["https://data.delijn.be/stops/200204", "https://data.delijn.be/stops/210024"], ["https://data.delijn.be/stops/200186", "https://data.delijn.be/stops/201186"], ["https://data.delijn.be/stops/101311", "https://data.delijn.be/stops/106044"], ["https://data.delijn.be/stops/206556", "https://data.delijn.be/stops/207582"], ["https://data.delijn.be/stops/404312", "https://data.delijn.be/stops/404313"], ["https://data.delijn.be/stops/208124", "https://data.delijn.be/stops/209127"], ["https://data.delijn.be/stops/204051", "https://data.delijn.be/stops/205051"], ["https://data.delijn.be/stops/200450", "https://data.delijn.be/stops/201082"], ["https://data.delijn.be/stops/407612", "https://data.delijn.be/stops/409780"], ["https://data.delijn.be/stops/401514", "https://data.delijn.be/stops/410396"], ["https://data.delijn.be/stops/209366", "https://data.delijn.be/stops/209639"], ["https://data.delijn.be/stops/502946", "https://data.delijn.be/stops/505292"], ["https://data.delijn.be/stops/200458", "https://data.delijn.be/stops/200459"], ["https://data.delijn.be/stops/202230", "https://data.delijn.be/stops/203230"], ["https://data.delijn.be/stops/404406", "https://data.delijn.be/stops/404417"], ["https://data.delijn.be/stops/102555", "https://data.delijn.be/stops/103800"], ["https://data.delijn.be/stops/303124", "https://data.delijn.be/stops/303126"], ["https://data.delijn.be/stops/502796", "https://data.delijn.be/stops/590010"], ["https://data.delijn.be/stops/106377", "https://data.delijn.be/stops/106380"], ["https://data.delijn.be/stops/202538", "https://data.delijn.be/stops/208721"], ["https://data.delijn.be/stops/302857", "https://data.delijn.be/stops/307048"], ["https://data.delijn.be/stops/206588", "https://data.delijn.be/stops/207588"], ["https://data.delijn.be/stops/105122", "https://data.delijn.be/stops/105124"], ["https://data.delijn.be/stops/102477", "https://data.delijn.be/stops/102478"], ["https://data.delijn.be/stops/502295", "https://data.delijn.be/stops/505352"], ["https://data.delijn.be/stops/208508", "https://data.delijn.be/stops/208511"], ["https://data.delijn.be/stops/407812", "https://data.delijn.be/stops/407905"], ["https://data.delijn.be/stops/408058", "https://data.delijn.be/stops/303262"], ["https://data.delijn.be/stops/202756", "https://data.delijn.be/stops/203756"], ["https://data.delijn.be/stops/108666", "https://data.delijn.be/stops/108667"], ["https://data.delijn.be/stops/405024", "https://data.delijn.be/stops/406501"], ["https://data.delijn.be/stops/202541", "https://data.delijn.be/stops/203450"], ["https://data.delijn.be/stops/303239", "https://data.delijn.be/stops/304247"], ["https://data.delijn.be/stops/502396", "https://data.delijn.be/stops/507402"], ["https://data.delijn.be/stops/105061", "https://data.delijn.be/stops/106299"], ["https://data.delijn.be/stops/408026", "https://data.delijn.be/stops/408027"], ["https://data.delijn.be/stops/500016", "https://data.delijn.be/stops/507450"], ["https://data.delijn.be/stops/101369", "https://data.delijn.be/stops/101402"], ["https://data.delijn.be/stops/208569", "https://data.delijn.be/stops/209569"], ["https://data.delijn.be/stops/101110", "https://data.delijn.be/stops/101620"], ["https://data.delijn.be/stops/503509", "https://data.delijn.be/stops/508509"], ["https://data.delijn.be/stops/210853", "https://data.delijn.be/stops/211853"], ["https://data.delijn.be/stops/104986", "https://data.delijn.be/stops/109480"], ["https://data.delijn.be/stops/403732", "https://data.delijn.be/stops/403737"], ["https://data.delijn.be/stops/404763", "https://data.delijn.be/stops/404825"], ["https://data.delijn.be/stops/402823", "https://data.delijn.be/stops/409017"], ["https://data.delijn.be/stops/201951", "https://data.delijn.be/stops/202427"], ["https://data.delijn.be/stops/200330", "https://data.delijn.be/stops/203201"], ["https://data.delijn.be/stops/402573", "https://data.delijn.be/stops/408446"], ["https://data.delijn.be/stops/201663", "https://data.delijn.be/stops/202322"], ["https://data.delijn.be/stops/104778", "https://data.delijn.be/stops/108116"], ["https://data.delijn.be/stops/502514", "https://data.delijn.be/stops/502516"], ["https://data.delijn.be/stops/407566", "https://data.delijn.be/stops/407799"], ["https://data.delijn.be/stops/300220", "https://data.delijn.be/stops/300221"], ["https://data.delijn.be/stops/103633", "https://data.delijn.be/stops/103637"], ["https://data.delijn.be/stops/508093", "https://data.delijn.be/stops/508107"], ["https://data.delijn.be/stops/507719", "https://data.delijn.be/stops/508845"], ["https://data.delijn.be/stops/506427", "https://data.delijn.be/stops/506456"], ["https://data.delijn.be/stops/401010", "https://data.delijn.be/stops/403796"], ["https://data.delijn.be/stops/501433", "https://data.delijn.be/stops/501671"], ["https://data.delijn.be/stops/202899", "https://data.delijn.be/stops/211127"], ["https://data.delijn.be/stops/207769", "https://data.delijn.be/stops/207781"], ["https://data.delijn.be/stops/204426", "https://data.delijn.be/stops/205396"], ["https://data.delijn.be/stops/306626", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/204911", "https://data.delijn.be/stops/204912"], ["https://data.delijn.be/stops/301868", "https://data.delijn.be/stops/301871"], ["https://data.delijn.be/stops/107263", "https://data.delijn.be/stops/107266"], ["https://data.delijn.be/stops/302563", "https://data.delijn.be/stops/304916"], ["https://data.delijn.be/stops/200308", "https://data.delijn.be/stops/211090"], ["https://data.delijn.be/stops/301298", "https://data.delijn.be/stops/301310"], ["https://data.delijn.be/stops/507288", "https://data.delijn.be/stops/507529"], ["https://data.delijn.be/stops/406911", "https://data.delijn.be/stops/409450"], ["https://data.delijn.be/stops/303615", "https://data.delijn.be/stops/304581"], ["https://data.delijn.be/stops/502016", "https://data.delijn.be/stops/502932"], ["https://data.delijn.be/stops/505808", "https://data.delijn.be/stops/507469"], ["https://data.delijn.be/stops/508133", "https://data.delijn.be/stops/508134"], ["https://data.delijn.be/stops/303348", "https://data.delijn.be/stops/307031"], ["https://data.delijn.be/stops/400077", "https://data.delijn.be/stops/409163"], ["https://data.delijn.be/stops/503880", "https://data.delijn.be/stops/508994"], ["https://data.delijn.be/stops/101483", "https://data.delijn.be/stops/108339"], ["https://data.delijn.be/stops/307815", "https://data.delijn.be/stops/307817"], ["https://data.delijn.be/stops/104348", "https://data.delijn.be/stops/105921"], ["https://data.delijn.be/stops/104742", "https://data.delijn.be/stops/108157"], ["https://data.delijn.be/stops/104454", "https://data.delijn.be/stops/104476"], ["https://data.delijn.be/stops/501082", "https://data.delijn.be/stops/501518"], ["https://data.delijn.be/stops/506145", "https://data.delijn.be/stops/506163"], ["https://data.delijn.be/stops/208802", "https://data.delijn.be/stops/209808"], ["https://data.delijn.be/stops/106763", "https://data.delijn.be/stops/106765"], ["https://data.delijn.be/stops/403364", "https://data.delijn.be/stops/403519"], ["https://data.delijn.be/stops/202956", "https://data.delijn.be/stops/202958"], ["https://data.delijn.be/stops/502266", "https://data.delijn.be/stops/507257"], ["https://data.delijn.be/stops/202731", "https://data.delijn.be/stops/202908"], ["https://data.delijn.be/stops/201150", "https://data.delijn.be/stops/201513"], ["https://data.delijn.be/stops/101845", "https://data.delijn.be/stops/102833"], ["https://data.delijn.be/stops/405068", "https://data.delijn.be/stops/406548"], ["https://data.delijn.be/stops/302311", "https://data.delijn.be/stops/302316"], ["https://data.delijn.be/stops/401550", "https://data.delijn.be/stops/406885"], ["https://data.delijn.be/stops/101529", "https://data.delijn.be/stops/102589"], ["https://data.delijn.be/stops/300674", "https://data.delijn.be/stops/308976"], ["https://data.delijn.be/stops/103219", "https://data.delijn.be/stops/108349"], ["https://data.delijn.be/stops/202432", "https://data.delijn.be/stops/203432"], ["https://data.delijn.be/stops/409093", "https://data.delijn.be/stops/409211"], ["https://data.delijn.be/stops/504236", "https://data.delijn.be/stops/509239"], ["https://data.delijn.be/stops/205201", "https://data.delijn.be/stops/205202"], ["https://data.delijn.be/stops/104986", "https://data.delijn.be/stops/400391"], ["https://data.delijn.be/stops/501305", "https://data.delijn.be/stops/506337"], ["https://data.delijn.be/stops/305082", "https://data.delijn.be/stops/306960"], ["https://data.delijn.be/stops/205120", "https://data.delijn.be/stops/205476"], ["https://data.delijn.be/stops/102533", "https://data.delijn.be/stops/102536"], ["https://data.delijn.be/stops/304807", "https://data.delijn.be/stops/306688"], ["https://data.delijn.be/stops/400331", "https://data.delijn.be/stops/400365"], ["https://data.delijn.be/stops/201919", "https://data.delijn.be/stops/206870"], ["https://data.delijn.be/stops/202986", "https://data.delijn.be/stops/203035"], ["https://data.delijn.be/stops/504455", "https://data.delijn.be/stops/504565"], ["https://data.delijn.be/stops/505823", "https://data.delijn.be/stops/508323"], ["https://data.delijn.be/stops/302289", "https://data.delijn.be/stops/302291"], ["https://data.delijn.be/stops/505997", "https://data.delijn.be/stops/509423"], ["https://data.delijn.be/stops/502039", "https://data.delijn.be/stops/507003"], ["https://data.delijn.be/stops/302877", "https://data.delijn.be/stops/302878"], ["https://data.delijn.be/stops/101934", "https://data.delijn.be/stops/107578"], ["https://data.delijn.be/stops/101485", "https://data.delijn.be/stops/102814"], ["https://data.delijn.be/stops/202791", "https://data.delijn.be/stops/203791"], ["https://data.delijn.be/stops/107552", "https://data.delijn.be/stops/108936"], ["https://data.delijn.be/stops/203500", "https://data.delijn.be/stops/204092"], ["https://data.delijn.be/stops/400313", "https://data.delijn.be/stops/405132"], ["https://data.delijn.be/stops/506146", "https://data.delijn.be/stops/509832"], ["https://data.delijn.be/stops/101183", "https://data.delijn.be/stops/204645"], ["https://data.delijn.be/stops/302918", "https://data.delijn.be/stops/302919"], ["https://data.delijn.be/stops/208285", "https://data.delijn.be/stops/208286"], ["https://data.delijn.be/stops/204460", "https://data.delijn.be/stops/214017"], ["https://data.delijn.be/stops/401093", "https://data.delijn.be/stops/401113"], ["https://data.delijn.be/stops/503018", "https://data.delijn.be/stops/508012"], ["https://data.delijn.be/stops/101262", "https://data.delijn.be/stops/106359"], ["https://data.delijn.be/stops/200364", "https://data.delijn.be/stops/201549"], ["https://data.delijn.be/stops/504051", "https://data.delijn.be/stops/509053"], ["https://data.delijn.be/stops/508060", "https://data.delijn.be/stops/508065"], ["https://data.delijn.be/stops/400754", "https://data.delijn.be/stops/410048"], ["https://data.delijn.be/stops/500008", "https://data.delijn.be/stops/502092"], ["https://data.delijn.be/stops/304500", "https://data.delijn.be/stops/307466"], ["https://data.delijn.be/stops/301875", "https://data.delijn.be/stops/301876"], ["https://data.delijn.be/stops/404862", "https://data.delijn.be/stops/404878"], ["https://data.delijn.be/stops/400657", "https://data.delijn.be/stops/400918"], ["https://data.delijn.be/stops/302347", "https://data.delijn.be/stops/306289"], ["https://data.delijn.be/stops/307209", "https://data.delijn.be/stops/307218"], ["https://data.delijn.be/stops/109058", "https://data.delijn.be/stops/109061"], ["https://data.delijn.be/stops/206086", "https://data.delijn.be/stops/206987"], ["https://data.delijn.be/stops/203840", "https://data.delijn.be/stops/209493"], ["https://data.delijn.be/stops/101984", "https://data.delijn.be/stops/109276"], ["https://data.delijn.be/stops/209225", "https://data.delijn.be/stops/209226"], ["https://data.delijn.be/stops/306925", "https://data.delijn.be/stops/306926"], ["https://data.delijn.be/stops/102896", "https://data.delijn.be/stops/104265"], ["https://data.delijn.be/stops/208678", "https://data.delijn.be/stops/209430"], ["https://data.delijn.be/stops/201875", "https://data.delijn.be/stops/202020"], ["https://data.delijn.be/stops/301430", "https://data.delijn.be/stops/301447"], ["https://data.delijn.be/stops/207665", "https://data.delijn.be/stops/208502"], ["https://data.delijn.be/stops/300571", "https://data.delijn.be/stops/300590"], ["https://data.delijn.be/stops/303650", "https://data.delijn.be/stops/306814"], ["https://data.delijn.be/stops/204596", "https://data.delijn.be/stops/205592"], ["https://data.delijn.be/stops/407524", "https://data.delijn.be/stops/407559"], ["https://data.delijn.be/stops/504631", "https://data.delijn.be/stops/509631"], ["https://data.delijn.be/stops/405248", "https://data.delijn.be/stops/405249"], ["https://data.delijn.be/stops/502925", "https://data.delijn.be/stops/507514"], ["https://data.delijn.be/stops/102418", "https://data.delijn.be/stops/105583"], ["https://data.delijn.be/stops/200604", "https://data.delijn.be/stops/202858"], ["https://data.delijn.be/stops/102322", "https://data.delijn.be/stops/106459"], ["https://data.delijn.be/stops/205090", "https://data.delijn.be/stops/215018"], ["https://data.delijn.be/stops/107348", "https://data.delijn.be/stops/107349"], ["https://data.delijn.be/stops/206646", "https://data.delijn.be/stops/207646"], ["https://data.delijn.be/stops/108336", "https://data.delijn.be/stops/109370"], ["https://data.delijn.be/stops/304586", "https://data.delijn.be/stops/304614"], ["https://data.delijn.be/stops/502372", "https://data.delijn.be/stops/507376"], ["https://data.delijn.be/stops/501121", "https://data.delijn.be/stops/505221"], ["https://data.delijn.be/stops/504536", "https://data.delijn.be/stops/505422"], ["https://data.delijn.be/stops/200386", "https://data.delijn.be/stops/201316"], ["https://data.delijn.be/stops/405058", "https://data.delijn.be/stops/405059"], ["https://data.delijn.be/stops/107041", "https://data.delijn.be/stops/108248"], ["https://data.delijn.be/stops/501688", "https://data.delijn.be/stops/506616"], ["https://data.delijn.be/stops/300705", "https://data.delijn.be/stops/303476"], ["https://data.delijn.be/stops/203403", "https://data.delijn.be/stops/211116"], ["https://data.delijn.be/stops/209209", "https://data.delijn.be/stops/209210"], ["https://data.delijn.be/stops/204480", "https://data.delijn.be/stops/204798"], ["https://data.delijn.be/stops/300481", "https://data.delijn.be/stops/308929"], ["https://data.delijn.be/stops/202913", "https://data.delijn.be/stops/202915"], ["https://data.delijn.be/stops/102231", "https://data.delijn.be/stops/105524"], ["https://data.delijn.be/stops/207770", "https://data.delijn.be/stops/208739"], ["https://data.delijn.be/stops/101982", "https://data.delijn.be/stops/300067"], ["https://data.delijn.be/stops/200513", "https://data.delijn.be/stops/201150"], ["https://data.delijn.be/stops/301190", "https://data.delijn.be/stops/301191"], ["https://data.delijn.be/stops/503149", "https://data.delijn.be/stops/503600"], ["https://data.delijn.be/stops/108701", "https://data.delijn.be/stops/108704"], ["https://data.delijn.be/stops/107226", "https://data.delijn.be/stops/107228"], ["https://data.delijn.be/stops/505208", "https://data.delijn.be/stops/508846"], ["https://data.delijn.be/stops/302334", "https://data.delijn.be/stops/302579"], ["https://data.delijn.be/stops/401922", "https://data.delijn.be/stops/403806"], ["https://data.delijn.be/stops/202422", "https://data.delijn.be/stops/203275"], ["https://data.delijn.be/stops/200192", "https://data.delijn.be/stops/201192"], ["https://data.delijn.be/stops/304801", "https://data.delijn.be/stops/304814"], ["https://data.delijn.be/stops/204310", "https://data.delijn.be/stops/204448"], ["https://data.delijn.be/stops/300127", "https://data.delijn.be/stops/300146"], ["https://data.delijn.be/stops/406312", "https://data.delijn.be/stops/406406"], ["https://data.delijn.be/stops/300550", "https://data.delijn.be/stops/300551"], ["https://data.delijn.be/stops/106281", "https://data.delijn.be/stops/106283"], ["https://data.delijn.be/stops/200006", "https://data.delijn.be/stops/203297"], ["https://data.delijn.be/stops/205159", "https://data.delijn.be/stops/205578"], ["https://data.delijn.be/stops/400255", "https://data.delijn.be/stops/402352"], ["https://data.delijn.be/stops/308605", "https://data.delijn.be/stops/308608"], ["https://data.delijn.be/stops/405715", "https://data.delijn.be/stops/405717"], ["https://data.delijn.be/stops/200951", "https://data.delijn.be/stops/200956"], ["https://data.delijn.be/stops/300954", "https://data.delijn.be/stops/305913"], ["https://data.delijn.be/stops/202307", "https://data.delijn.be/stops/203307"], ["https://data.delijn.be/stops/208494", "https://data.delijn.be/stops/209735"], ["https://data.delijn.be/stops/203395", "https://data.delijn.be/stops/203976"], ["https://data.delijn.be/stops/303783", "https://data.delijn.be/stops/303785"], ["https://data.delijn.be/stops/108084", "https://data.delijn.be/stops/108086"], ["https://data.delijn.be/stops/401359", "https://data.delijn.be/stops/401374"], ["https://data.delijn.be/stops/403703", "https://data.delijn.be/stops/403773"], ["https://data.delijn.be/stops/404514", "https://data.delijn.be/stops/406741"], ["https://data.delijn.be/stops/501032", "https://data.delijn.be/stops/506039"], ["https://data.delijn.be/stops/504062", "https://data.delijn.be/stops/505403"], ["https://data.delijn.be/stops/505809", "https://data.delijn.be/stops/505929"], ["https://data.delijn.be/stops/202635", "https://data.delijn.be/stops/202636"], ["https://data.delijn.be/stops/106447", "https://data.delijn.be/stops/106448"], ["https://data.delijn.be/stops/302897", "https://data.delijn.be/stops/303232"], ["https://data.delijn.be/stops/504778", "https://data.delijn.be/stops/508378"], ["https://data.delijn.be/stops/302428", "https://data.delijn.be/stops/302440"], ["https://data.delijn.be/stops/101975", "https://data.delijn.be/stops/105905"], ["https://data.delijn.be/stops/304724", "https://data.delijn.be/stops/305558"], ["https://data.delijn.be/stops/300041", "https://data.delijn.be/stops/300055"], ["https://data.delijn.be/stops/208382", "https://data.delijn.be/stops/208383"], ["https://data.delijn.be/stops/107793", "https://data.delijn.be/stops/107794"], ["https://data.delijn.be/stops/404247", "https://data.delijn.be/stops/409813"], ["https://data.delijn.be/stops/206345", "https://data.delijn.be/stops/207345"], ["https://data.delijn.be/stops/300222", "https://data.delijn.be/stops/300223"], ["https://data.delijn.be/stops/306897", "https://data.delijn.be/stops/308721"], ["https://data.delijn.be/stops/205524", "https://data.delijn.be/stops/205728"], ["https://data.delijn.be/stops/501229", "https://data.delijn.be/stops/506418"], ["https://data.delijn.be/stops/407684", "https://data.delijn.be/stops/409878"], ["https://data.delijn.be/stops/305237", "https://data.delijn.be/stops/305262"], ["https://data.delijn.be/stops/302792", "https://data.delijn.be/stops/303652"], ["https://data.delijn.be/stops/501396", "https://data.delijn.be/stops/502562"], ["https://data.delijn.be/stops/400060", "https://data.delijn.be/stops/400078"], ["https://data.delijn.be/stops/407980", "https://data.delijn.be/stops/407982"], ["https://data.delijn.be/stops/202151", "https://data.delijn.be/stops/203170"], ["https://data.delijn.be/stops/202746", "https://data.delijn.be/stops/202747"], ["https://data.delijn.be/stops/302182", "https://data.delijn.be/stops/302441"], ["https://data.delijn.be/stops/407616", "https://data.delijn.be/stops/407675"], ["https://data.delijn.be/stops/207048", "https://data.delijn.be/stops/207305"], ["https://data.delijn.be/stops/105048", "https://data.delijn.be/stops/106706"], ["https://data.delijn.be/stops/400102", "https://data.delijn.be/stops/409062"], ["https://data.delijn.be/stops/402977", "https://data.delijn.be/stops/402979"], ["https://data.delijn.be/stops/304935", "https://data.delijn.be/stops/304942"], ["https://data.delijn.be/stops/302406", "https://data.delijn.be/stops/302408"], ["https://data.delijn.be/stops/105677", "https://data.delijn.be/stops/106049"], ["https://data.delijn.be/stops/503903", "https://data.delijn.be/stops/504834"], ["https://data.delijn.be/stops/305731", "https://data.delijn.be/stops/306329"], ["https://data.delijn.be/stops/407063", "https://data.delijn.be/stops/410017"], ["https://data.delijn.be/stops/502250", "https://data.delijn.be/stops/507255"], ["https://data.delijn.be/stops/405028", "https://data.delijn.be/stops/410022"], ["https://data.delijn.be/stops/200011", "https://data.delijn.be/stops/200508"], ["https://data.delijn.be/stops/403512", "https://data.delijn.be/stops/410217"], ["https://data.delijn.be/stops/405281", "https://data.delijn.be/stops/405293"], ["https://data.delijn.be/stops/402225", "https://data.delijn.be/stops/402317"], ["https://data.delijn.be/stops/106293", "https://data.delijn.be/stops/106743"], ["https://data.delijn.be/stops/508435", "https://data.delijn.be/stops/508436"], ["https://data.delijn.be/stops/505277", "https://data.delijn.be/stops/505996"], ["https://data.delijn.be/stops/305981", "https://data.delijn.be/stops/305982"], ["https://data.delijn.be/stops/502628", "https://data.delijn.be/stops/507112"], ["https://data.delijn.be/stops/406032", "https://data.delijn.be/stops/406084"], ["https://data.delijn.be/stops/206186", "https://data.delijn.be/stops/207186"], ["https://data.delijn.be/stops/101831", "https://data.delijn.be/stops/104736"], ["https://data.delijn.be/stops/204623", "https://data.delijn.be/stops/204624"], ["https://data.delijn.be/stops/404033", "https://data.delijn.be/stops/410298"], ["https://data.delijn.be/stops/504033", "https://data.delijn.be/stops/509033"], ["https://data.delijn.be/stops/302968", "https://data.delijn.be/stops/303157"], ["https://data.delijn.be/stops/206022", "https://data.delijn.be/stops/206024"], ["https://data.delijn.be/stops/407841", "https://data.delijn.be/stops/407846"], ["https://data.delijn.be/stops/304879", "https://data.delijn.be/stops/304908"], ["https://data.delijn.be/stops/503973", "https://data.delijn.be/stops/505847"], ["https://data.delijn.be/stops/210011", "https://data.delijn.be/stops/210013"], ["https://data.delijn.be/stops/109420", "https://data.delijn.be/stops/109421"], ["https://data.delijn.be/stops/209610", "https://data.delijn.be/stops/305144"], ["https://data.delijn.be/stops/304309", "https://data.delijn.be/stops/307005"], ["https://data.delijn.be/stops/104652", "https://data.delijn.be/stops/306618"], ["https://data.delijn.be/stops/204495", "https://data.delijn.be/stops/205295"], ["https://data.delijn.be/stops/505280", "https://data.delijn.be/stops/507961"], ["https://data.delijn.be/stops/305133", "https://data.delijn.be/stops/305136"], ["https://data.delijn.be/stops/208514", "https://data.delijn.be/stops/209682"], ["https://data.delijn.be/stops/109312", "https://data.delijn.be/stops/109313"], ["https://data.delijn.be/stops/501068", "https://data.delijn.be/stops/501381"], ["https://data.delijn.be/stops/302854", "https://data.delijn.be/stops/302855"], ["https://data.delijn.be/stops/402294", "https://data.delijn.be/stops/402295"], ["https://data.delijn.be/stops/507302", "https://data.delijn.be/stops/507312"], ["https://data.delijn.be/stops/205701", "https://data.delijn.be/stops/205702"], ["https://data.delijn.be/stops/401773", "https://data.delijn.be/stops/406336"], ["https://data.delijn.be/stops/300315", "https://data.delijn.be/stops/303948"], ["https://data.delijn.be/stops/502645", "https://data.delijn.be/stops/507645"], ["https://data.delijn.be/stops/500947", "https://data.delijn.be/stops/509168"], ["https://data.delijn.be/stops/407030", "https://data.delijn.be/stops/407040"], ["https://data.delijn.be/stops/401245", "https://data.delijn.be/stops/401386"], ["https://data.delijn.be/stops/404957", "https://data.delijn.be/stops/409075"], ["https://data.delijn.be/stops/200468", "https://data.delijn.be/stops/211058"], ["https://data.delijn.be/stops/206144", "https://data.delijn.be/stops/206146"], ["https://data.delijn.be/stops/400701", "https://data.delijn.be/stops/409641"], ["https://data.delijn.be/stops/407975", "https://data.delijn.be/stops/308289"], ["https://data.delijn.be/stops/202674", "https://data.delijn.be/stops/203673"], ["https://data.delijn.be/stops/101408", "https://data.delijn.be/stops/107287"], ["https://data.delijn.be/stops/105743", "https://data.delijn.be/stops/109831"], ["https://data.delijn.be/stops/303589", "https://data.delijn.be/stops/306393"], ["https://data.delijn.be/stops/201512", "https://data.delijn.be/stops/201513"], ["https://data.delijn.be/stops/307063", "https://data.delijn.be/stops/307281"], ["https://data.delijn.be/stops/304838", "https://data.delijn.be/stops/304882"], ["https://data.delijn.be/stops/303594", "https://data.delijn.be/stops/303595"], ["https://data.delijn.be/stops/502298", "https://data.delijn.be/stops/507298"], ["https://data.delijn.be/stops/305629", "https://data.delijn.be/stops/307269"], ["https://data.delijn.be/stops/301297", "https://data.delijn.be/stops/301310"], ["https://data.delijn.be/stops/208160", "https://data.delijn.be/stops/209160"], ["https://data.delijn.be/stops/502622", "https://data.delijn.be/stops/505768"], ["https://data.delijn.be/stops/406116", "https://data.delijn.be/stops/406126"], ["https://data.delijn.be/stops/402173", "https://data.delijn.be/stops/402249"], ["https://data.delijn.be/stops/306199", "https://data.delijn.be/stops/306318"], ["https://data.delijn.be/stops/300650", "https://data.delijn.be/stops/301851"], ["https://data.delijn.be/stops/305287", "https://data.delijn.be/stops/305330"], ["https://data.delijn.be/stops/301552", "https://data.delijn.be/stops/301553"], ["https://data.delijn.be/stops/202730", "https://data.delijn.be/stops/203245"], ["https://data.delijn.be/stops/103123", "https://data.delijn.be/stops/109173"], ["https://data.delijn.be/stops/505261", "https://data.delijn.be/stops/505968"], ["https://data.delijn.be/stops/507196", "https://data.delijn.be/stops/507199"], ["https://data.delijn.be/stops/200468", "https://data.delijn.be/stops/201468"], ["https://data.delijn.be/stops/202370", "https://data.delijn.be/stops/210104"], ["https://data.delijn.be/stops/502609", "https://data.delijn.be/stops/507610"], ["https://data.delijn.be/stops/503124", "https://data.delijn.be/stops/503962"], ["https://data.delijn.be/stops/400754", "https://data.delijn.be/stops/400848"], ["https://data.delijn.be/stops/305140", "https://data.delijn.be/stops/305141"], ["https://data.delijn.be/stops/306929", "https://data.delijn.be/stops/306931"], ["https://data.delijn.be/stops/206488", "https://data.delijn.be/stops/207647"], ["https://data.delijn.be/stops/204057", "https://data.delijn.be/stops/205057"], ["https://data.delijn.be/stops/207754", "https://data.delijn.be/stops/207766"], ["https://data.delijn.be/stops/101546", "https://data.delijn.be/stops/101549"], ["https://data.delijn.be/stops/200944", "https://data.delijn.be/stops/203707"], ["https://data.delijn.be/stops/302706", "https://data.delijn.be/stops/308600"], ["https://data.delijn.be/stops/203839", "https://data.delijn.be/stops/209425"], ["https://data.delijn.be/stops/300808", "https://data.delijn.be/stops/307026"], ["https://data.delijn.be/stops/101018", "https://data.delijn.be/stops/104590"], ["https://data.delijn.be/stops/208795", "https://data.delijn.be/stops/209114"], ["https://data.delijn.be/stops/307505", "https://data.delijn.be/stops/307508"], ["https://data.delijn.be/stops/405877", "https://data.delijn.be/stops/405897"], ["https://data.delijn.be/stops/104394", "https://data.delijn.be/stops/104397"], ["https://data.delijn.be/stops/307221", "https://data.delijn.be/stops/307264"], ["https://data.delijn.be/stops/201938", "https://data.delijn.be/stops/201939"], ["https://data.delijn.be/stops/104132", "https://data.delijn.be/stops/108042"], ["https://data.delijn.be/stops/305716", "https://data.delijn.be/stops/307926"], ["https://data.delijn.be/stops/400979", "https://data.delijn.be/stops/407704"], ["https://data.delijn.be/stops/503267", "https://data.delijn.be/stops/508034"], ["https://data.delijn.be/stops/103820", "https://data.delijn.be/stops/104215"], ["https://data.delijn.be/stops/502233", "https://data.delijn.be/stops/502234"], ["https://data.delijn.be/stops/302345", "https://data.delijn.be/stops/302371"], ["https://data.delijn.be/stops/201952", "https://data.delijn.be/stops/203468"], ["https://data.delijn.be/stops/303556", "https://data.delijn.be/stops/305847"], ["https://data.delijn.be/stops/400516", "https://data.delijn.be/stops/400520"], ["https://data.delijn.be/stops/504474", "https://data.delijn.be/stops/504479"], ["https://data.delijn.be/stops/206579", "https://data.delijn.be/stops/207465"], ["https://data.delijn.be/stops/400143", "https://data.delijn.be/stops/403423"], ["https://data.delijn.be/stops/203278", "https://data.delijn.be/stops/203663"], ["https://data.delijn.be/stops/407926", "https://data.delijn.be/stops/408071"], ["https://data.delijn.be/stops/200362", "https://data.delijn.be/stops/203005"], ["https://data.delijn.be/stops/505396", "https://data.delijn.be/stops/508029"], ["https://data.delijn.be/stops/306146", "https://data.delijn.be/stops/306148"], ["https://data.delijn.be/stops/406268", "https://data.delijn.be/stops/406269"], ["https://data.delijn.be/stops/103605", "https://data.delijn.be/stops/109137"], ["https://data.delijn.be/stops/501230", "https://data.delijn.be/stops/505045"], ["https://data.delijn.be/stops/102442", "https://data.delijn.be/stops/104918"], ["https://data.delijn.be/stops/204551", "https://data.delijn.be/stops/205292"], ["https://data.delijn.be/stops/403414", "https://data.delijn.be/stops/403466"], ["https://data.delijn.be/stops/304638", "https://data.delijn.be/stops/304658"], ["https://data.delijn.be/stops/300301", "https://data.delijn.be/stops/301317"], ["https://data.delijn.be/stops/402720", "https://data.delijn.be/stops/308177"], ["https://data.delijn.be/stops/403174", "https://data.delijn.be/stops/403404"], ["https://data.delijn.be/stops/202640", "https://data.delijn.be/stops/203814"], ["https://data.delijn.be/stops/302110", "https://data.delijn.be/stops/303662"], ["https://data.delijn.be/stops/506002", "https://data.delijn.be/stops/509037"], ["https://data.delijn.be/stops/300355", "https://data.delijn.be/stops/304698"], ["https://data.delijn.be/stops/503766", "https://data.delijn.be/stops/508758"], ["https://data.delijn.be/stops/204073", "https://data.delijn.be/stops/204074"], ["https://data.delijn.be/stops/302262", "https://data.delijn.be/stops/302263"], ["https://data.delijn.be/stops/106329", "https://data.delijn.be/stops/106333"], ["https://data.delijn.be/stops/102370", "https://data.delijn.be/stops/103973"], ["https://data.delijn.be/stops/504142", "https://data.delijn.be/stops/505985"], ["https://data.delijn.be/stops/407997", "https://data.delijn.be/stops/408032"], ["https://data.delijn.be/stops/105087", "https://data.delijn.be/stops/105088"], ["https://data.delijn.be/stops/201315", "https://data.delijn.be/stops/205920"], ["https://data.delijn.be/stops/101790", "https://data.delijn.be/stops/103025"], ["https://data.delijn.be/stops/207799", "https://data.delijn.be/stops/209179"], ["https://data.delijn.be/stops/300746", "https://data.delijn.be/stops/301069"], ["https://data.delijn.be/stops/102595", "https://data.delijn.be/stops/105110"], ["https://data.delijn.be/stops/102024", "https://data.delijn.be/stops/103982"], ["https://data.delijn.be/stops/402132", "https://data.delijn.be/stops/402136"], ["https://data.delijn.be/stops/101178", "https://data.delijn.be/stops/105069"], ["https://data.delijn.be/stops/201214", "https://data.delijn.be/stops/201216"], ["https://data.delijn.be/stops/502515", "https://data.delijn.be/stops/502636"], ["https://data.delijn.be/stops/402264", "https://data.delijn.be/stops/402267"], ["https://data.delijn.be/stops/303697", "https://data.delijn.be/stops/305419"], ["https://data.delijn.be/stops/505704", "https://data.delijn.be/stops/507574"], ["https://data.delijn.be/stops/208361", "https://data.delijn.be/stops/209399"], ["https://data.delijn.be/stops/300639", "https://data.delijn.be/stops/300640"], ["https://data.delijn.be/stops/401537", "https://data.delijn.be/stops/401885"], ["https://data.delijn.be/stops/507352", "https://data.delijn.be/stops/508693"], ["https://data.delijn.be/stops/302801", "https://data.delijn.be/stops/305546"], ["https://data.delijn.be/stops/401448", "https://data.delijn.be/stops/404926"], ["https://data.delijn.be/stops/210125", "https://data.delijn.be/stops/211125"], ["https://data.delijn.be/stops/108607", "https://data.delijn.be/stops/108608"], ["https://data.delijn.be/stops/108469", "https://data.delijn.be/stops/306598"], ["https://data.delijn.be/stops/203037", "https://data.delijn.be/stops/203985"], ["https://data.delijn.be/stops/504095", "https://data.delijn.be/stops/504832"], ["https://data.delijn.be/stops/400081", "https://data.delijn.be/stops/405643"], ["https://data.delijn.be/stops/306864", "https://data.delijn.be/stops/307440"], ["https://data.delijn.be/stops/101536", "https://data.delijn.be/stops/109019"], ["https://data.delijn.be/stops/109197", "https://data.delijn.be/stops/109200"], ["https://data.delijn.be/stops/301752", "https://data.delijn.be/stops/305915"], ["https://data.delijn.be/stops/405831", "https://data.delijn.be/stops/405883"], ["https://data.delijn.be/stops/407307", "https://data.delijn.be/stops/409499"], ["https://data.delijn.be/stops/401449", "https://data.delijn.be/stops/401895"], ["https://data.delijn.be/stops/208207", "https://data.delijn.be/stops/209784"], ["https://data.delijn.be/stops/103128", "https://data.delijn.be/stops/104431"], ["https://data.delijn.be/stops/302595", "https://data.delijn.be/stops/302596"], ["https://data.delijn.be/stops/101870", "https://data.delijn.be/stops/105130"], ["https://data.delijn.be/stops/303581", "https://data.delijn.be/stops/306394"], ["https://data.delijn.be/stops/503524", "https://data.delijn.be/stops/504766"], ["https://data.delijn.be/stops/408629", "https://data.delijn.be/stops/408770"], ["https://data.delijn.be/stops/303796", "https://data.delijn.be/stops/303801"], ["https://data.delijn.be/stops/207487", "https://data.delijn.be/stops/207647"], ["https://data.delijn.be/stops/505774", "https://data.delijn.be/stops/505987"], ["https://data.delijn.be/stops/302830", "https://data.delijn.be/stops/302831"], ["https://data.delijn.be/stops/408639", "https://data.delijn.be/stops/408655"], ["https://data.delijn.be/stops/108311", "https://data.delijn.be/stops/108753"], ["https://data.delijn.be/stops/302213", "https://data.delijn.be/stops/302242"], ["https://data.delijn.be/stops/504053", "https://data.delijn.be/stops/509931"], ["https://data.delijn.be/stops/503497", "https://data.delijn.be/stops/508497"], ["https://data.delijn.be/stops/300515", "https://data.delijn.be/stops/302338"], ["https://data.delijn.be/stops/306304", "https://data.delijn.be/stops/306305"], ["https://data.delijn.be/stops/409683", "https://data.delijn.be/stops/409685"], ["https://data.delijn.be/stops/200234", "https://data.delijn.be/stops/201233"], ["https://data.delijn.be/stops/408340", "https://data.delijn.be/stops/410159"], ["https://data.delijn.be/stops/500938", "https://data.delijn.be/stops/505406"], ["https://data.delijn.be/stops/305297", "https://data.delijn.be/stops/305891"], ["https://data.delijn.be/stops/204289", "https://data.delijn.be/stops/204551"], ["https://data.delijn.be/stops/407183", "https://data.delijn.be/stops/409514"], ["https://data.delijn.be/stops/503544", "https://data.delijn.be/stops/503561"], ["https://data.delijn.be/stops/505443", "https://data.delijn.be/stops/508901"], ["https://data.delijn.be/stops/109824", "https://data.delijn.be/stops/109827"], ["https://data.delijn.be/stops/407245", "https://data.delijn.be/stops/407468"], ["https://data.delijn.be/stops/406062", "https://data.delijn.be/stops/406063"], ["https://data.delijn.be/stops/108848", "https://data.delijn.be/stops/108849"], ["https://data.delijn.be/stops/300756", "https://data.delijn.be/stops/300757"], ["https://data.delijn.be/stops/108533", "https://data.delijn.be/stops/108536"], ["https://data.delijn.be/stops/103308", "https://data.delijn.be/stops/103341"], ["https://data.delijn.be/stops/504071", "https://data.delijn.be/stops/504072"], ["https://data.delijn.be/stops/206753", "https://data.delijn.be/stops/207515"], ["https://data.delijn.be/stops/301887", "https://data.delijn.be/stops/301888"], ["https://data.delijn.be/stops/204377", "https://data.delijn.be/stops/205377"], ["https://data.delijn.be/stops/308729", "https://data.delijn.be/stops/308730"], ["https://data.delijn.be/stops/400788", "https://data.delijn.be/stops/409654"], ["https://data.delijn.be/stops/501134", "https://data.delijn.be/stops/506366"], ["https://data.delijn.be/stops/500129", "https://data.delijn.be/stops/502504"], ["https://data.delijn.be/stops/208387", "https://data.delijn.be/stops/209340"], ["https://data.delijn.be/stops/402988", "https://data.delijn.be/stops/405603"], ["https://data.delijn.be/stops/504017", "https://data.delijn.be/stops/509018"], ["https://data.delijn.be/stops/204022", "https://data.delijn.be/stops/206929"], ["https://data.delijn.be/stops/408021", "https://data.delijn.be/stops/408432"], ["https://data.delijn.be/stops/505278", "https://data.delijn.be/stops/508019"], ["https://data.delijn.be/stops/208276", "https://data.delijn.be/stops/208277"], ["https://data.delijn.be/stops/301355", "https://data.delijn.be/stops/306130"], ["https://data.delijn.be/stops/407981", "https://data.delijn.be/stops/407982"], ["https://data.delijn.be/stops/401167", "https://data.delijn.be/stops/402899"], ["https://data.delijn.be/stops/403950", "https://data.delijn.be/stops/403986"], ["https://data.delijn.be/stops/403745", "https://data.delijn.be/stops/403773"], ["https://data.delijn.be/stops/302327", "https://data.delijn.be/stops/302337"], ["https://data.delijn.be/stops/305966", "https://data.delijn.be/stops/305967"], ["https://data.delijn.be/stops/106778", "https://data.delijn.be/stops/106779"], ["https://data.delijn.be/stops/106221", "https://data.delijn.be/stops/106318"], ["https://data.delijn.be/stops/206836", "https://data.delijn.be/stops/206939"], ["https://data.delijn.be/stops/109722", "https://data.delijn.be/stops/109723"], ["https://data.delijn.be/stops/505030", "https://data.delijn.be/stops/506470"], ["https://data.delijn.be/stops/202460", "https://data.delijn.be/stops/203459"], ["https://data.delijn.be/stops/406214", "https://data.delijn.be/stops/406236"], ["https://data.delijn.be/stops/106528", "https://data.delijn.be/stops/107098"], ["https://data.delijn.be/stops/205000", "https://data.delijn.be/stops/206687"], ["https://data.delijn.be/stops/200935", "https://data.delijn.be/stops/202712"], ["https://data.delijn.be/stops/400112", "https://data.delijn.be/stops/409154"], ["https://data.delijn.be/stops/300296", "https://data.delijn.be/stops/300332"], ["https://data.delijn.be/stops/300595", "https://data.delijn.be/stops/302955"], ["https://data.delijn.be/stops/308223", "https://data.delijn.be/stops/308293"], ["https://data.delijn.be/stops/407962", "https://data.delijn.be/stops/407964"], ["https://data.delijn.be/stops/200286", "https://data.delijn.be/stops/211044"], ["https://data.delijn.be/stops/505547", "https://data.delijn.be/stops/505922"], ["https://data.delijn.be/stops/300259", "https://data.delijn.be/stops/300298"], ["https://data.delijn.be/stops/307057", "https://data.delijn.be/stops/307058"], ["https://data.delijn.be/stops/502096", "https://data.delijn.be/stops/502132"], ["https://data.delijn.be/stops/106458", "https://data.delijn.be/stops/106460"], ["https://data.delijn.be/stops/102606", "https://data.delijn.be/stops/105534"], ["https://data.delijn.be/stops/507610", "https://data.delijn.be/stops/509880"], ["https://data.delijn.be/stops/103590", "https://data.delijn.be/stops/108914"], ["https://data.delijn.be/stops/206500", "https://data.delijn.be/stops/207060"], ["https://data.delijn.be/stops/108239", "https://data.delijn.be/stops/108241"], ["https://data.delijn.be/stops/304221", "https://data.delijn.be/stops/305870"], ["https://data.delijn.be/stops/104042", "https://data.delijn.be/stops/108374"], ["https://data.delijn.be/stops/102296", "https://data.delijn.be/stops/107393"], ["https://data.delijn.be/stops/304756", "https://data.delijn.be/stops/304773"], ["https://data.delijn.be/stops/406040", "https://data.delijn.be/stops/406048"], ["https://data.delijn.be/stops/503188", "https://data.delijn.be/stops/508186"], ["https://data.delijn.be/stops/105254", "https://data.delijn.be/stops/105842"], ["https://data.delijn.be/stops/107886", "https://data.delijn.be/stops/107891"], ["https://data.delijn.be/stops/108459", "https://data.delijn.be/stops/108462"], ["https://data.delijn.be/stops/203884", "https://data.delijn.be/stops/209746"], ["https://data.delijn.be/stops/208622", "https://data.delijn.be/stops/209622"], ["https://data.delijn.be/stops/402197", "https://data.delijn.be/stops/402228"], ["https://data.delijn.be/stops/102830", "https://data.delijn.be/stops/107765"], ["https://data.delijn.be/stops/201701", "https://data.delijn.be/stops/202397"], ["https://data.delijn.be/stops/400055", "https://data.delijn.be/stops/401970"], ["https://data.delijn.be/stops/502915", "https://data.delijn.be/stops/507015"], ["https://data.delijn.be/stops/301184", "https://data.delijn.be/stops/304014"], ["https://data.delijn.be/stops/210070", "https://data.delijn.be/stops/211069"], ["https://data.delijn.be/stops/105710", "https://data.delijn.be/stops/106070"], ["https://data.delijn.be/stops/503764", "https://data.delijn.be/stops/507688"], ["https://data.delijn.be/stops/208410", "https://data.delijn.be/stops/209411"], ["https://data.delijn.be/stops/505928", "https://data.delijn.be/stops/509489"], ["https://data.delijn.be/stops/304160", "https://data.delijn.be/stops/304161"], ["https://data.delijn.be/stops/302221", "https://data.delijn.be/stops/302248"], ["https://data.delijn.be/stops/102679", "https://data.delijn.be/stops/105219"], ["https://data.delijn.be/stops/300173", "https://data.delijn.be/stops/300174"], ["https://data.delijn.be/stops/103482", "https://data.delijn.be/stops/109162"], ["https://data.delijn.be/stops/103094", "https://data.delijn.be/stops/103096"], ["https://data.delijn.be/stops/402954", "https://data.delijn.be/stops/404897"], ["https://data.delijn.be/stops/503732", "https://data.delijn.be/stops/508732"], ["https://data.delijn.be/stops/201184", "https://data.delijn.be/stops/202749"], ["https://data.delijn.be/stops/108987", "https://data.delijn.be/stops/108991"], ["https://data.delijn.be/stops/201925", "https://data.delijn.be/stops/206248"], ["https://data.delijn.be/stops/304234", "https://data.delijn.be/stops/304686"], ["https://data.delijn.be/stops/109933", "https://data.delijn.be/stops/109950"], ["https://data.delijn.be/stops/103282", "https://data.delijn.be/stops/105470"], ["https://data.delijn.be/stops/400515", "https://data.delijn.be/stops/403886"], ["https://data.delijn.be/stops/307064", "https://data.delijn.be/stops/307066"], ["https://data.delijn.be/stops/403909", "https://data.delijn.be/stops/403911"], ["https://data.delijn.be/stops/205161", "https://data.delijn.be/stops/207396"], ["https://data.delijn.be/stops/103629", "https://data.delijn.be/stops/107732"], ["https://data.delijn.be/stops/103332", "https://data.delijn.be/stops/106508"], ["https://data.delijn.be/stops/106111", "https://data.delijn.be/stops/109878"], ["https://data.delijn.be/stops/300600", "https://data.delijn.be/stops/300608"], ["https://data.delijn.be/stops/306901", "https://data.delijn.be/stops/306904"], ["https://data.delijn.be/stops/300508", "https://data.delijn.be/stops/305524"], ["https://data.delijn.be/stops/108022", "https://data.delijn.be/stops/108026"], ["https://data.delijn.be/stops/300033", "https://data.delijn.be/stops/301945"], ["https://data.delijn.be/stops/302945", "https://data.delijn.be/stops/302946"], ["https://data.delijn.be/stops/107599", "https://data.delijn.be/stops/107603"], ["https://data.delijn.be/stops/503148", "https://data.delijn.be/stops/505200"], ["https://data.delijn.be/stops/209447", "https://data.delijn.be/stops/218029"], ["https://data.delijn.be/stops/204615", "https://data.delijn.be/stops/204655"], ["https://data.delijn.be/stops/208380", "https://data.delijn.be/stops/209380"], ["https://data.delijn.be/stops/202735", "https://data.delijn.be/stops/202908"], ["https://data.delijn.be/stops/107416", "https://data.delijn.be/stops/107417"], ["https://data.delijn.be/stops/103002", "https://data.delijn.be/stops/107413"], ["https://data.delijn.be/stops/504502", "https://data.delijn.be/stops/504744"], ["https://data.delijn.be/stops/302288", "https://data.delijn.be/stops/307736"], ["https://data.delijn.be/stops/300376", "https://data.delijn.be/stops/300378"], ["https://data.delijn.be/stops/207676", "https://data.delijn.be/stops/208105"], ["https://data.delijn.be/stops/300652", "https://data.delijn.be/stops/301916"], ["https://data.delijn.be/stops/201747", "https://data.delijn.be/stops/203158"], ["https://data.delijn.be/stops/106247", "https://data.delijn.be/stops/106730"], ["https://data.delijn.be/stops/208689", "https://data.delijn.be/stops/208690"], ["https://data.delijn.be/stops/208193", "https://data.delijn.be/stops/209151"], ["https://data.delijn.be/stops/403616", "https://data.delijn.be/stops/407525"], ["https://data.delijn.be/stops/503151", "https://data.delijn.be/stops/504097"], ["https://data.delijn.be/stops/105718", "https://data.delijn.be/stops/106142"], ["https://data.delijn.be/stops/305588", "https://data.delijn.be/stops/305592"], ["https://data.delijn.be/stops/301215", "https://data.delijn.be/stops/303618"], ["https://data.delijn.be/stops/509236", "https://data.delijn.be/stops/509239"], ["https://data.delijn.be/stops/206046", "https://data.delijn.be/stops/207018"], ["https://data.delijn.be/stops/208444", "https://data.delijn.be/stops/209443"], ["https://data.delijn.be/stops/201532", "https://data.delijn.be/stops/201534"], ["https://data.delijn.be/stops/400160", "https://data.delijn.be/stops/400161"], ["https://data.delijn.be/stops/204780", "https://data.delijn.be/stops/204781"], ["https://data.delijn.be/stops/503288", "https://data.delijn.be/stops/505952"], ["https://data.delijn.be/stops/101577", "https://data.delijn.be/stops/105733"], ["https://data.delijn.be/stops/501300", "https://data.delijn.be/stops/506332"], ["https://data.delijn.be/stops/102228", "https://data.delijn.be/stops/105524"], ["https://data.delijn.be/stops/107143", "https://data.delijn.be/stops/107144"], ["https://data.delijn.be/stops/504010", "https://data.delijn.be/stops/509416"], ["https://data.delijn.be/stops/503456", "https://data.delijn.be/stops/508478"], ["https://data.delijn.be/stops/202773", "https://data.delijn.be/stops/203772"], ["https://data.delijn.be/stops/400928", "https://data.delijn.be/stops/400929"], ["https://data.delijn.be/stops/206049", "https://data.delijn.be/stops/207297"], ["https://data.delijn.be/stops/405046", "https://data.delijn.be/stops/405047"], ["https://data.delijn.be/stops/405032", "https://data.delijn.be/stops/405118"], ["https://data.delijn.be/stops/209367", "https://data.delijn.be/stops/209661"], ["https://data.delijn.be/stops/502270", "https://data.delijn.be/stops/505227"], ["https://data.delijn.be/stops/302675", "https://data.delijn.be/stops/302689"], ["https://data.delijn.be/stops/201933", "https://data.delijn.be/stops/206554"], ["https://data.delijn.be/stops/201831", "https://data.delijn.be/stops/208258"], ["https://data.delijn.be/stops/300523", "https://data.delijn.be/stops/300533"], ["https://data.delijn.be/stops/307585", "https://data.delijn.be/stops/307586"], ["https://data.delijn.be/stops/404770", "https://data.delijn.be/stops/404777"], ["https://data.delijn.be/stops/405036", "https://data.delijn.be/stops/405037"], ["https://data.delijn.be/stops/102966", "https://data.delijn.be/stops/108977"], ["https://data.delijn.be/stops/503316", "https://data.delijn.be/stops/503318"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/306276"], ["https://data.delijn.be/stops/400206", "https://data.delijn.be/stops/408551"], ["https://data.delijn.be/stops/505309", "https://data.delijn.be/stops/505310"], ["https://data.delijn.be/stops/202341", "https://data.delijn.be/stops/202484"], ["https://data.delijn.be/stops/208654", "https://data.delijn.be/stops/209654"], ["https://data.delijn.be/stops/208173", "https://data.delijn.be/stops/209011"], ["https://data.delijn.be/stops/401946", "https://data.delijn.be/stops/409732"], ["https://data.delijn.be/stops/208143", "https://data.delijn.be/stops/209144"], ["https://data.delijn.be/stops/505521", "https://data.delijn.be/stops/505746"], ["https://data.delijn.be/stops/401432", "https://data.delijn.be/stops/401433"], ["https://data.delijn.be/stops/504247", "https://data.delijn.be/stops/509247"], ["https://data.delijn.be/stops/501044", "https://data.delijn.be/stops/506044"], ["https://data.delijn.be/stops/400242", "https://data.delijn.be/stops/400248"], ["https://data.delijn.be/stops/502334", "https://data.delijn.be/stops/507334"], ["https://data.delijn.be/stops/405062", "https://data.delijn.be/stops/405863"], ["https://data.delijn.be/stops/201111", "https://data.delijn.be/stops/201387"], ["https://data.delijn.be/stops/505638", "https://data.delijn.be/stops/508179"], ["https://data.delijn.be/stops/504545", "https://data.delijn.be/stops/505212"], ["https://data.delijn.be/stops/506214", "https://data.delijn.be/stops/506220"], ["https://data.delijn.be/stops/402554", "https://data.delijn.be/stops/402608"], ["https://data.delijn.be/stops/210856", "https://data.delijn.be/stops/211856"], ["https://data.delijn.be/stops/300719", "https://data.delijn.be/stops/300735"], ["https://data.delijn.be/stops/201834", "https://data.delijn.be/stops/201845"], ["https://data.delijn.be/stops/202786", "https://data.delijn.be/stops/203786"], ["https://data.delijn.be/stops/101945", "https://data.delijn.be/stops/109705"], ["https://data.delijn.be/stops/402702", "https://data.delijn.be/stops/402705"], ["https://data.delijn.be/stops/402563", "https://data.delijn.be/stops/407845"], ["https://data.delijn.be/stops/101261", "https://data.delijn.be/stops/105275"], ["https://data.delijn.be/stops/405509", "https://data.delijn.be/stops/405514"], ["https://data.delijn.be/stops/208107", "https://data.delijn.be/stops/209107"], ["https://data.delijn.be/stops/202854", "https://data.delijn.be/stops/203854"], ["https://data.delijn.be/stops/401679", "https://data.delijn.be/stops/308229"], ["https://data.delijn.be/stops/203538", "https://data.delijn.be/stops/203947"], ["https://data.delijn.be/stops/401042", "https://data.delijn.be/stops/409059"], ["https://data.delijn.be/stops/206497", "https://data.delijn.be/stops/207150"], ["https://data.delijn.be/stops/400036", "https://data.delijn.be/stops/400314"], ["https://data.delijn.be/stops/402833", "https://data.delijn.be/stops/402837"], ["https://data.delijn.be/stops/409532", "https://data.delijn.be/stops/409545"], ["https://data.delijn.be/stops/500567", "https://data.delijn.be/stops/506041"], ["https://data.delijn.be/stops/508614", "https://data.delijn.be/stops/508615"], ["https://data.delijn.be/stops/301124", "https://data.delijn.be/stops/308790"], ["https://data.delijn.be/stops/504360", "https://data.delijn.be/stops/505534"], ["https://data.delijn.be/stops/104971", "https://data.delijn.be/stops/105387"], ["https://data.delijn.be/stops/307344", "https://data.delijn.be/stops/308693"], ["https://data.delijn.be/stops/104946", "https://data.delijn.be/stops/108865"], ["https://data.delijn.be/stops/304421", "https://data.delijn.be/stops/307387"], ["https://data.delijn.be/stops/401118", "https://data.delijn.be/stops/409079"], ["https://data.delijn.be/stops/400700", "https://data.delijn.be/stops/400836"], ["https://data.delijn.be/stops/400364", "https://data.delijn.be/stops/400365"], ["https://data.delijn.be/stops/201076", "https://data.delijn.be/stops/201450"], ["https://data.delijn.be/stops/501622", "https://data.delijn.be/stops/506021"], ["https://data.delijn.be/stops/404190", "https://data.delijn.be/stops/404192"], ["https://data.delijn.be/stops/205133", "https://data.delijn.be/stops/205142"], ["https://data.delijn.be/stops/206889", "https://data.delijn.be/stops/206912"], ["https://data.delijn.be/stops/401444", "https://data.delijn.be/stops/401493"], ["https://data.delijn.be/stops/201075", "https://data.delijn.be/stops/201449"], ["https://data.delijn.be/stops/405176", "https://data.delijn.be/stops/405213"], ["https://data.delijn.be/stops/104995", "https://data.delijn.be/stops/105010"], ["https://data.delijn.be/stops/308178", "https://data.delijn.be/stops/308291"], ["https://data.delijn.be/stops/208125", "https://data.delijn.be/stops/218029"], ["https://data.delijn.be/stops/402408", "https://data.delijn.be/stops/402416"], ["https://data.delijn.be/stops/208427", "https://data.delijn.be/stops/208595"], ["https://data.delijn.be/stops/304169", "https://data.delijn.be/stops/307553"], ["https://data.delijn.be/stops/405352", "https://data.delijn.be/stops/302832"], ["https://data.delijn.be/stops/102752", "https://data.delijn.be/stops/106382"], ["https://data.delijn.be/stops/301720", "https://data.delijn.be/stops/301742"], ["https://data.delijn.be/stops/202259", "https://data.delijn.be/stops/203099"], ["https://data.delijn.be/stops/406614", "https://data.delijn.be/stops/406615"], ["https://data.delijn.be/stops/107639", "https://data.delijn.be/stops/108836"], ["https://data.delijn.be/stops/308525", "https://data.delijn.be/stops/308526"], ["https://data.delijn.be/stops/501348", "https://data.delijn.be/stops/506291"], ["https://data.delijn.be/stops/504441", "https://data.delijn.be/stops/504449"], ["https://data.delijn.be/stops/306596", "https://data.delijn.be/stops/306598"], ["https://data.delijn.be/stops/400206", "https://data.delijn.be/stops/410001"], ["https://data.delijn.be/stops/204783", "https://data.delijn.be/stops/205475"], ["https://data.delijn.be/stops/401567", "https://data.delijn.be/stops/407348"], ["https://data.delijn.be/stops/106148", "https://data.delijn.be/stops/106440"], ["https://data.delijn.be/stops/306048", "https://data.delijn.be/stops/306049"], ["https://data.delijn.be/stops/407937", "https://data.delijn.be/stops/407938"], ["https://data.delijn.be/stops/301160", "https://data.delijn.be/stops/303224"], ["https://data.delijn.be/stops/404338", "https://data.delijn.be/stops/404349"], ["https://data.delijn.be/stops/301299", "https://data.delijn.be/stops/301300"], ["https://data.delijn.be/stops/502704", "https://data.delijn.be/stops/507705"], ["https://data.delijn.be/stops/201921", "https://data.delijn.be/stops/203516"], ["https://data.delijn.be/stops/301866", "https://data.delijn.be/stops/301869"], ["https://data.delijn.be/stops/505620", "https://data.delijn.be/stops/505622"], ["https://data.delijn.be/stops/207234", "https://data.delijn.be/stops/207235"], ["https://data.delijn.be/stops/401533", "https://data.delijn.be/stops/406018"], ["https://data.delijn.be/stops/108418", "https://data.delijn.be/stops/109572"], ["https://data.delijn.be/stops/101472", "https://data.delijn.be/stops/109616"], ["https://data.delijn.be/stops/107261", "https://data.delijn.be/stops/107264"], ["https://data.delijn.be/stops/403443", "https://data.delijn.be/stops/403453"], ["https://data.delijn.be/stops/206828", "https://data.delijn.be/stops/207828"], ["https://data.delijn.be/stops/301451", "https://data.delijn.be/stops/301484"], ["https://data.delijn.be/stops/406176", "https://data.delijn.be/stops/410401"], ["https://data.delijn.be/stops/400147", "https://data.delijn.be/stops/409207"], ["https://data.delijn.be/stops/203514", "https://data.delijn.be/stops/203515"], ["https://data.delijn.be/stops/101010", "https://data.delijn.be/stops/103090"], ["https://data.delijn.be/stops/202858", "https://data.delijn.be/stops/210098"], ["https://data.delijn.be/stops/103614", "https://data.delijn.be/stops/106308"], ["https://data.delijn.be/stops/404598", "https://data.delijn.be/stops/404601"], ["https://data.delijn.be/stops/203778", "https://data.delijn.be/stops/203779"], ["https://data.delijn.be/stops/403382", "https://data.delijn.be/stops/403527"], ["https://data.delijn.be/stops/307830", "https://data.delijn.be/stops/307831"], ["https://data.delijn.be/stops/403700", "https://data.delijn.be/stops/403701"], ["https://data.delijn.be/stops/403528", "https://data.delijn.be/stops/410390"], ["https://data.delijn.be/stops/103254", "https://data.delijn.be/stops/103958"], ["https://data.delijn.be/stops/300280", "https://data.delijn.be/stops/300282"], ["https://data.delijn.be/stops/301467", "https://data.delijn.be/stops/305667"], ["https://data.delijn.be/stops/402044", "https://data.delijn.be/stops/410079"], ["https://data.delijn.be/stops/209094", "https://data.delijn.be/stops/209404"], ["https://data.delijn.be/stops/301498", "https://data.delijn.be/stops/307957"], ["https://data.delijn.be/stops/200765", "https://data.delijn.be/stops/209380"], ["https://data.delijn.be/stops/102714", "https://data.delijn.be/stops/109588"], ["https://data.delijn.be/stops/202369", "https://data.delijn.be/stops/202976"], ["https://data.delijn.be/stops/400831", "https://data.delijn.be/stops/402011"], ["https://data.delijn.be/stops/305656", "https://data.delijn.be/stops/307790"], ["https://data.delijn.be/stops/308154", "https://data.delijn.be/stops/308155"], ["https://data.delijn.be/stops/101915", "https://data.delijn.be/stops/104510"], ["https://data.delijn.be/stops/207038", "https://data.delijn.be/stops/207879"], ["https://data.delijn.be/stops/204696", "https://data.delijn.be/stops/205685"], ["https://data.delijn.be/stops/300156", "https://data.delijn.be/stops/300166"], ["https://data.delijn.be/stops/201579", "https://data.delijn.be/stops/201580"], ["https://data.delijn.be/stops/206283", "https://data.delijn.be/stops/207284"], ["https://data.delijn.be/stops/200921", "https://data.delijn.be/stops/200941"], ["https://data.delijn.be/stops/304981", "https://data.delijn.be/stops/308013"], ["https://data.delijn.be/stops/405226", "https://data.delijn.be/stops/409348"], ["https://data.delijn.be/stops/208441", "https://data.delijn.be/stops/208674"], ["https://data.delijn.be/stops/200666", "https://data.delijn.be/stops/201841"], ["https://data.delijn.be/stops/201180", "https://data.delijn.be/stops/204951"], ["https://data.delijn.be/stops/109728", "https://data.delijn.be/stops/109785"], ["https://data.delijn.be/stops/506436", "https://data.delijn.be/stops/506690"], ["https://data.delijn.be/stops/101466", "https://data.delijn.be/stops/109250"], ["https://data.delijn.be/stops/402936", "https://data.delijn.be/stops/403963"], ["https://data.delijn.be/stops/304444", "https://data.delijn.be/stops/307042"], ["https://data.delijn.be/stops/502114", "https://data.delijn.be/stops/502128"], ["https://data.delijn.be/stops/501608", "https://data.delijn.be/stops/506018"], ["https://data.delijn.be/stops/105706", "https://data.delijn.be/stops/105712"], ["https://data.delijn.be/stops/104962", "https://data.delijn.be/stops/109244"], ["https://data.delijn.be/stops/106044", "https://data.delijn.be/stops/106058"], ["https://data.delijn.be/stops/103924", "https://data.delijn.be/stops/107250"], ["https://data.delijn.be/stops/303737", "https://data.delijn.be/stops/303742"], ["https://data.delijn.be/stops/308443", "https://data.delijn.be/stops/308692"], ["https://data.delijn.be/stops/507060", "https://data.delijn.be/stops/507071"], ["https://data.delijn.be/stops/302356", "https://data.delijn.be/stops/306289"], ["https://data.delijn.be/stops/102604", "https://data.delijn.be/stops/108709"], ["https://data.delijn.be/stops/400244", "https://data.delijn.be/stops/400264"], ["https://data.delijn.be/stops/206493", "https://data.delijn.be/stops/207493"], ["https://data.delijn.be/stops/200131", "https://data.delijn.be/stops/201131"], ["https://data.delijn.be/stops/104891", "https://data.delijn.be/stops/109347"], ["https://data.delijn.be/stops/300265", "https://data.delijn.be/stops/300271"], ["https://data.delijn.be/stops/207680", "https://data.delijn.be/stops/208154"], ["https://data.delijn.be/stops/101670", "https://data.delijn.be/stops/103090"], ["https://data.delijn.be/stops/206166", "https://data.delijn.be/stops/207166"], ["https://data.delijn.be/stops/105243", "https://data.delijn.be/stops/105839"], ["https://data.delijn.be/stops/204665", "https://data.delijn.be/stops/205665"], ["https://data.delijn.be/stops/403259", "https://data.delijn.be/stops/403394"], ["https://data.delijn.be/stops/300771", "https://data.delijn.be/stops/302403"], ["https://data.delijn.be/stops/503713", "https://data.delijn.be/stops/503715"], ["https://data.delijn.be/stops/202220", "https://data.delijn.be/stops/203219"], ["https://data.delijn.be/stops/105827", "https://data.delijn.be/stops/106829"], ["https://data.delijn.be/stops/400952", "https://data.delijn.be/stops/400983"], ["https://data.delijn.be/stops/105514", "https://data.delijn.be/stops/105516"], ["https://data.delijn.be/stops/504110", "https://data.delijn.be/stops/509114"], ["https://data.delijn.be/stops/307383", "https://data.delijn.be/stops/307390"], ["https://data.delijn.be/stops/501418", "https://data.delijn.be/stops/506229"], ["https://data.delijn.be/stops/200767", "https://data.delijn.be/stops/200771"], ["https://data.delijn.be/stops/305675", "https://data.delijn.be/stops/305687"], ["https://data.delijn.be/stops/408771", "https://data.delijn.be/stops/408772"], ["https://data.delijn.be/stops/301118", "https://data.delijn.be/stops/302242"], ["https://data.delijn.be/stops/106080", "https://data.delijn.be/stops/108732"], ["https://data.delijn.be/stops/407021", "https://data.delijn.be/stops/308745"], ["https://data.delijn.be/stops/501126", "https://data.delijn.be/stops/505221"], ["https://data.delijn.be/stops/301365", "https://data.delijn.be/stops/301368"], ["https://data.delijn.be/stops/301702", "https://data.delijn.be/stops/301761"], ["https://data.delijn.be/stops/509629", "https://data.delijn.be/stops/509630"], ["https://data.delijn.be/stops/503096", "https://data.delijn.be/stops/505792"], ["https://data.delijn.be/stops/201486", "https://data.delijn.be/stops/201890"], ["https://data.delijn.be/stops/103724", "https://data.delijn.be/stops/108093"], ["https://data.delijn.be/stops/108359", "https://data.delijn.be/stops/108362"], ["https://data.delijn.be/stops/109260", "https://data.delijn.be/stops/109267"], ["https://data.delijn.be/stops/301449", "https://data.delijn.be/stops/306680"], ["https://data.delijn.be/stops/105480", "https://data.delijn.be/stops/105687"], ["https://data.delijn.be/stops/305722", "https://data.delijn.be/stops/305728"], ["https://data.delijn.be/stops/308478", "https://data.delijn.be/stops/308480"], ["https://data.delijn.be/stops/104461", "https://data.delijn.be/stops/107187"], ["https://data.delijn.be/stops/404604", "https://data.delijn.be/stops/404607"], ["https://data.delijn.be/stops/207408", "https://data.delijn.be/stops/207409"], ["https://data.delijn.be/stops/101522", "https://data.delijn.be/stops/101523"], ["https://data.delijn.be/stops/404300", "https://data.delijn.be/stops/409572"], ["https://data.delijn.be/stops/200477", "https://data.delijn.be/stops/201477"], ["https://data.delijn.be/stops/400423", "https://data.delijn.be/stops/405537"], ["https://data.delijn.be/stops/208687", "https://data.delijn.be/stops/208690"], ["https://data.delijn.be/stops/507589", "https://data.delijn.be/stops/507595"], ["https://data.delijn.be/stops/109877", "https://data.delijn.be/stops/109878"], ["https://data.delijn.be/stops/501076", "https://data.delijn.be/stops/506076"], ["https://data.delijn.be/stops/106915", "https://data.delijn.be/stops/106916"], ["https://data.delijn.be/stops/410014", "https://data.delijn.be/stops/410015"], ["https://data.delijn.be/stops/203219", "https://data.delijn.be/stops/203220"], ["https://data.delijn.be/stops/103004", "https://data.delijn.be/stops/108331"], ["https://data.delijn.be/stops/504718", "https://data.delijn.be/stops/509349"], ["https://data.delijn.be/stops/301416", "https://data.delijn.be/stops/301418"], ["https://data.delijn.be/stops/106229", "https://data.delijn.be/stops/109801"], ["https://data.delijn.be/stops/401006", "https://data.delijn.be/stops/401060"], ["https://data.delijn.be/stops/402875", "https://data.delijn.be/stops/402877"], ["https://data.delijn.be/stops/104389", "https://data.delijn.be/stops/104391"], ["https://data.delijn.be/stops/505620", "https://data.delijn.be/stops/509894"], ["https://data.delijn.be/stops/505359", "https://data.delijn.be/stops/506054"], ["https://data.delijn.be/stops/506238", "https://data.delijn.be/stops/506370"], ["https://data.delijn.be/stops/101833", "https://data.delijn.be/stops/108233"], ["https://data.delijn.be/stops/109759", "https://data.delijn.be/stops/109766"], ["https://data.delijn.be/stops/201718", "https://data.delijn.be/stops/201725"], ["https://data.delijn.be/stops/503449", "https://data.delijn.be/stops/503460"], ["https://data.delijn.be/stops/200855", "https://data.delijn.be/stops/507759"], ["https://data.delijn.be/stops/305276", "https://data.delijn.be/stops/305313"], ["https://data.delijn.be/stops/402772", "https://data.delijn.be/stops/408038"], ["https://data.delijn.be/stops/209319", "https://data.delijn.be/stops/209375"], ["https://data.delijn.be/stops/401409", "https://data.delijn.be/stops/300988"], ["https://data.delijn.be/stops/303072", "https://data.delijn.be/stops/303073"], ["https://data.delijn.be/stops/108932", "https://data.delijn.be/stops/109219"], ["https://data.delijn.be/stops/108097", "https://data.delijn.be/stops/108099"], ["https://data.delijn.be/stops/509927", "https://data.delijn.be/stops/509929"], ["https://data.delijn.be/stops/204040", "https://data.delijn.be/stops/205040"], ["https://data.delijn.be/stops/205085", "https://data.delijn.be/stops/205798"], ["https://data.delijn.be/stops/207299", "https://data.delijn.be/stops/207301"], ["https://data.delijn.be/stops/507553", "https://data.delijn.be/stops/507666"], ["https://data.delijn.be/stops/104405", "https://data.delijn.be/stops/104406"], ["https://data.delijn.be/stops/305118", "https://data.delijn.be/stops/305119"], ["https://data.delijn.be/stops/303466", "https://data.delijn.be/stops/303467"], ["https://data.delijn.be/stops/509699", "https://data.delijn.be/stops/509703"], ["https://data.delijn.be/stops/502450", "https://data.delijn.be/stops/509830"], ["https://data.delijn.be/stops/106227", "https://data.delijn.be/stops/106230"], ["https://data.delijn.be/stops/501416", "https://data.delijn.be/stops/506419"], ["https://data.delijn.be/stops/406307", "https://data.delijn.be/stops/406325"], ["https://data.delijn.be/stops/102856", "https://data.delijn.be/stops/204611"], ["https://data.delijn.be/stops/201934", "https://data.delijn.be/stops/203951"], ["https://data.delijn.be/stops/106421", "https://data.delijn.be/stops/106510"], ["https://data.delijn.be/stops/502447", "https://data.delijn.be/stops/507447"], ["https://data.delijn.be/stops/401113", "https://data.delijn.be/stops/401158"], ["https://data.delijn.be/stops/404082", "https://data.delijn.be/stops/308077"], ["https://data.delijn.be/stops/300373", "https://data.delijn.be/stops/300374"], ["https://data.delijn.be/stops/201856", "https://data.delijn.be/stops/210037"], ["https://data.delijn.be/stops/203825", "https://data.delijn.be/stops/209263"], ["https://data.delijn.be/stops/202496", "https://data.delijn.be/stops/203496"], ["https://data.delijn.be/stops/103670", "https://data.delijn.be/stops/103675"], ["https://data.delijn.be/stops/305962", "https://data.delijn.be/stops/305963"], ["https://data.delijn.be/stops/108757", "https://data.delijn.be/stops/108758"], ["https://data.delijn.be/stops/404966", "https://data.delijn.be/stops/405648"], ["https://data.delijn.be/stops/508925", "https://data.delijn.be/stops/508928"], ["https://data.delijn.be/stops/404459", "https://data.delijn.be/stops/404535"], ["https://data.delijn.be/stops/408602", "https://data.delijn.be/stops/408610"], ["https://data.delijn.be/stops/504347", "https://data.delijn.be/stops/504350"], ["https://data.delijn.be/stops/504268", "https://data.delijn.be/stops/505819"], ["https://data.delijn.be/stops/302328", "https://data.delijn.be/stops/303468"], ["https://data.delijn.be/stops/302649", "https://data.delijn.be/stops/302657"], ["https://data.delijn.be/stops/504343", "https://data.delijn.be/stops/505787"], ["https://data.delijn.be/stops/502106", "https://data.delijn.be/stops/507124"], ["https://data.delijn.be/stops/109649", "https://data.delijn.be/stops/109650"], ["https://data.delijn.be/stops/402579", "https://data.delijn.be/stops/403473"], ["https://data.delijn.be/stops/505147", "https://data.delijn.be/stops/505312"], ["https://data.delijn.be/stops/409437", "https://data.delijn.be/stops/409680"], ["https://data.delijn.be/stops/303272", "https://data.delijn.be/stops/303304"], ["https://data.delijn.be/stops/202496", "https://data.delijn.be/stops/203140"], ["https://data.delijn.be/stops/103973", "https://data.delijn.be/stops/103974"], ["https://data.delijn.be/stops/304126", "https://data.delijn.be/stops/307556"], ["https://data.delijn.be/stops/503528", "https://data.delijn.be/stops/508531"], ["https://data.delijn.be/stops/502363", "https://data.delijn.be/stops/505171"], ["https://data.delijn.be/stops/503826", "https://data.delijn.be/stops/505993"], ["https://data.delijn.be/stops/306313", "https://data.delijn.be/stops/307003"], ["https://data.delijn.be/stops/505706", "https://data.delijn.be/stops/509140"], ["https://data.delijn.be/stops/207759", "https://data.delijn.be/stops/208186"], ["https://data.delijn.be/stops/102721", "https://data.delijn.be/stops/104723"], ["https://data.delijn.be/stops/104838", "https://data.delijn.be/stops/109567"], ["https://data.delijn.be/stops/506400", "https://data.delijn.be/stops/506401"], ["https://data.delijn.be/stops/501156", "https://data.delijn.be/stops/505519"], ["https://data.delijn.be/stops/507591", "https://data.delijn.be/stops/507750"], ["https://data.delijn.be/stops/505024", "https://data.delijn.be/stops/505743"], ["https://data.delijn.be/stops/503894", "https://data.delijn.be/stops/505642"], ["https://data.delijn.be/stops/202855", "https://data.delijn.be/stops/208714"], ["https://data.delijn.be/stops/400035", "https://data.delijn.be/stops/400681"], ["https://data.delijn.be/stops/305688", "https://data.delijn.be/stops/305689"], ["https://data.delijn.be/stops/404165", "https://data.delijn.be/stops/404282"], ["https://data.delijn.be/stops/402080", "https://data.delijn.be/stops/402374"], ["https://data.delijn.be/stops/402230", "https://data.delijn.be/stops/402292"], ["https://data.delijn.be/stops/508382", "https://data.delijn.be/stops/509760"], ["https://data.delijn.be/stops/304084", "https://data.delijn.be/stops/307504"], ["https://data.delijn.be/stops/201958", "https://data.delijn.be/stops/203470"], ["https://data.delijn.be/stops/106098", "https://data.delijn.be/stops/106114"], ["https://data.delijn.be/stops/302712", "https://data.delijn.be/stops/302728"], ["https://data.delijn.be/stops/502146", "https://data.delijn.be/stops/507681"], ["https://data.delijn.be/stops/404019", "https://data.delijn.be/stops/407067"], ["https://data.delijn.be/stops/202145", "https://data.delijn.be/stops/203145"], ["https://data.delijn.be/stops/301509", "https://data.delijn.be/stops/301522"], ["https://data.delijn.be/stops/403600", "https://data.delijn.be/stops/403601"], ["https://data.delijn.be/stops/403162", "https://data.delijn.be/stops/410361"], ["https://data.delijn.be/stops/502527", "https://data.delijn.be/stops/505017"], ["https://data.delijn.be/stops/300131", "https://data.delijn.be/stops/300143"], ["https://data.delijn.be/stops/302964", "https://data.delijn.be/stops/302971"], ["https://data.delijn.be/stops/303296", "https://data.delijn.be/stops/303301"], ["https://data.delijn.be/stops/102904", "https://data.delijn.be/stops/108982"], ["https://data.delijn.be/stops/409370", "https://data.delijn.be/stops/409371"], ["https://data.delijn.be/stops/107796", "https://data.delijn.be/stops/107798"], ["https://data.delijn.be/stops/201404", "https://data.delijn.be/stops/202040"], ["https://data.delijn.be/stops/301660", "https://data.delijn.be/stops/308438"], ["https://data.delijn.be/stops/400549", "https://data.delijn.be/stops/404060"], ["https://data.delijn.be/stops/401779", "https://data.delijn.be/stops/406016"], ["https://data.delijn.be/stops/505233", "https://data.delijn.be/stops/507233"], ["https://data.delijn.be/stops/302848", "https://data.delijn.be/stops/302850"], ["https://data.delijn.be/stops/301678", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/300059", "https://data.delijn.be/stops/306798"], ["https://data.delijn.be/stops/208616", "https://data.delijn.be/stops/209090"], ["https://data.delijn.be/stops/204097", "https://data.delijn.be/stops/204465"], ["https://data.delijn.be/stops/503808", "https://data.delijn.be/stops/504583"], ["https://data.delijn.be/stops/109936", "https://data.delijn.be/stops/109946"], ["https://data.delijn.be/stops/300549", "https://data.delijn.be/stops/300567"], ["https://data.delijn.be/stops/203890", "https://data.delijn.be/stops/211084"], ["https://data.delijn.be/stops/304148", "https://data.delijn.be/stops/304161"], ["https://data.delijn.be/stops/304620", "https://data.delijn.be/stops/304621"], ["https://data.delijn.be/stops/200765", "https://data.delijn.be/stops/200766"], ["https://data.delijn.be/stops/504367", "https://data.delijn.be/stops/509361"], ["https://data.delijn.be/stops/504467", "https://data.delijn.be/stops/509467"], ["https://data.delijn.be/stops/200575", "https://data.delijn.be/stops/201574"], ["https://data.delijn.be/stops/105281", "https://data.delijn.be/stops/105297"], ["https://data.delijn.be/stops/505826", "https://data.delijn.be/stops/508302"], ["https://data.delijn.be/stops/402942", "https://data.delijn.be/stops/301274"], ["https://data.delijn.be/stops/408237", "https://data.delijn.be/stops/308222"], ["https://data.delijn.be/stops/304607", "https://data.delijn.be/stops/304617"], ["https://data.delijn.be/stops/403482", "https://data.delijn.be/stops/403483"], ["https://data.delijn.be/stops/400505", "https://data.delijn.be/stops/400512"], ["https://data.delijn.be/stops/202526", "https://data.delijn.be/stops/202961"], ["https://data.delijn.be/stops/402584", "https://data.delijn.be/stops/402644"], ["https://data.delijn.be/stops/203867", "https://data.delijn.be/stops/208835"], ["https://data.delijn.be/stops/300085", "https://data.delijn.be/stops/306866"], ["https://data.delijn.be/stops/503830", "https://data.delijn.be/stops/508141"], ["https://data.delijn.be/stops/504985", "https://data.delijn.be/stops/505967"], ["https://data.delijn.be/stops/200704", "https://data.delijn.be/stops/200736"], ["https://data.delijn.be/stops/501096", "https://data.delijn.be/stops/501098"], ["https://data.delijn.be/stops/206130", "https://data.delijn.be/stops/206138"], ["https://data.delijn.be/stops/101785", "https://data.delijn.be/stops/103880"], ["https://data.delijn.be/stops/206898", "https://data.delijn.be/stops/207739"], ["https://data.delijn.be/stops/502443", "https://data.delijn.be/stops/502446"], ["https://data.delijn.be/stops/107444", "https://data.delijn.be/stops/107446"], ["https://data.delijn.be/stops/201840", "https://data.delijn.be/stops/202321"], ["https://data.delijn.be/stops/404898", "https://data.delijn.be/stops/404953"], ["https://data.delijn.be/stops/207268", "https://data.delijn.be/stops/207289"], ["https://data.delijn.be/stops/200226", "https://data.delijn.be/stops/201227"], ["https://data.delijn.be/stops/304177", "https://data.delijn.be/stops/306099"], ["https://data.delijn.be/stops/508324", "https://data.delijn.be/stops/508325"], ["https://data.delijn.be/stops/403685", "https://data.delijn.be/stops/403687"], ["https://data.delijn.be/stops/502291", "https://data.delijn.be/stops/502296"], ["https://data.delijn.be/stops/405705", "https://data.delijn.be/stops/405720"], ["https://data.delijn.be/stops/208009", "https://data.delijn.be/stops/208012"], ["https://data.delijn.be/stops/102632", "https://data.delijn.be/stops/107044"], ["https://data.delijn.be/stops/300185", "https://data.delijn.be/stops/300199"], ["https://data.delijn.be/stops/200943", "https://data.delijn.be/stops/200944"], ["https://data.delijn.be/stops/301375", "https://data.delijn.be/stops/301376"], ["https://data.delijn.be/stops/109262", "https://data.delijn.be/stops/109265"], ["https://data.delijn.be/stops/404435", "https://data.delijn.be/stops/404530"], ["https://data.delijn.be/stops/208085", "https://data.delijn.be/stops/208619"], ["https://data.delijn.be/stops/205979", "https://data.delijn.be/stops/207405"], ["https://data.delijn.be/stops/503347", "https://data.delijn.be/stops/503429"], ["https://data.delijn.be/stops/505662", "https://data.delijn.be/stops/507500"], ["https://data.delijn.be/stops/301236", "https://data.delijn.be/stops/305949"], ["https://data.delijn.be/stops/401033", "https://data.delijn.be/stops/406575"], ["https://data.delijn.be/stops/109639", "https://data.delijn.be/stops/109641"], ["https://data.delijn.be/stops/107934", "https://data.delijn.be/stops/303537"], ["https://data.delijn.be/stops/205039", "https://data.delijn.be/stops/205818"], ["https://data.delijn.be/stops/303628", "https://data.delijn.be/stops/304016"], ["https://data.delijn.be/stops/206101", "https://data.delijn.be/stops/207101"], ["https://data.delijn.be/stops/504941", "https://data.delijn.be/stops/505540"], ["https://data.delijn.be/stops/501241", "https://data.delijn.be/stops/501370"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/109380"], ["https://data.delijn.be/stops/407988", "https://data.delijn.be/stops/408071"], ["https://data.delijn.be/stops/105314", "https://data.delijn.be/stops/105444"], ["https://data.delijn.be/stops/109334", "https://data.delijn.be/stops/109336"], ["https://data.delijn.be/stops/102300", "https://data.delijn.be/stops/105130"], ["https://data.delijn.be/stops/406545", "https://data.delijn.be/stops/408387"], ["https://data.delijn.be/stops/108455", "https://data.delijn.be/stops/108456"], ["https://data.delijn.be/stops/300548", "https://data.delijn.be/stops/307859"], ["https://data.delijn.be/stops/304889", "https://data.delijn.be/stops/306718"], ["https://data.delijn.be/stops/101045", "https://data.delijn.be/stops/105425"], ["https://data.delijn.be/stops/405823", "https://data.delijn.be/stops/409727"], ["https://data.delijn.be/stops/505274", "https://data.delijn.be/stops/505275"], ["https://data.delijn.be/stops/405298", "https://data.delijn.be/stops/405299"], ["https://data.delijn.be/stops/201049", "https://data.delijn.be/stops/201185"], ["https://data.delijn.be/stops/404567", "https://data.delijn.be/stops/404569"], ["https://data.delijn.be/stops/206801", "https://data.delijn.be/stops/208487"], ["https://data.delijn.be/stops/102298", "https://data.delijn.be/stops/106588"], ["https://data.delijn.be/stops/302659", "https://data.delijn.be/stops/306339"], ["https://data.delijn.be/stops/504740", "https://data.delijn.be/stops/505401"], ["https://data.delijn.be/stops/200023", "https://data.delijn.be/stops/201100"], ["https://data.delijn.be/stops/502215", "https://data.delijn.be/stops/502535"], ["https://data.delijn.be/stops/503479", "https://data.delijn.be/stops/508479"], ["https://data.delijn.be/stops/502515", "https://data.delijn.be/stops/507515"], ["https://data.delijn.be/stops/305655", "https://data.delijn.be/stops/305671"], ["https://data.delijn.be/stops/305748", "https://data.delijn.be/stops/308130"], ["https://data.delijn.be/stops/104334", "https://data.delijn.be/stops/105854"], ["https://data.delijn.be/stops/202609", "https://data.delijn.be/stops/202611"], ["https://data.delijn.be/stops/501447", "https://data.delijn.be/stops/506454"], ["https://data.delijn.be/stops/404446", "https://data.delijn.be/stops/404447"], ["https://data.delijn.be/stops/500158", "https://data.delijn.be/stops/505120"], ["https://data.delijn.be/stops/504057", "https://data.delijn.be/stops/509055"], ["https://data.delijn.be/stops/208552", "https://data.delijn.be/stops/209552"], ["https://data.delijn.be/stops/505300", "https://data.delijn.be/stops/509572"], ["https://data.delijn.be/stops/400456", "https://data.delijn.be/stops/400459"], ["https://data.delijn.be/stops/505188", "https://data.delijn.be/stops/509557"], ["https://data.delijn.be/stops/302574", "https://data.delijn.be/stops/302576"], ["https://data.delijn.be/stops/303479", "https://data.delijn.be/stops/308739"], ["https://data.delijn.be/stops/400596", "https://data.delijn.be/stops/400608"], ["https://data.delijn.be/stops/505089", "https://data.delijn.be/stops/505308"], ["https://data.delijn.be/stops/108947", "https://data.delijn.be/stops/109224"], ["https://data.delijn.be/stops/407752", "https://data.delijn.be/stops/407760"], ["https://data.delijn.be/stops/503931", "https://data.delijn.be/stops/508916"], ["https://data.delijn.be/stops/105506", "https://data.delijn.be/stops/105507"], ["https://data.delijn.be/stops/502494", "https://data.delijn.be/stops/507494"], ["https://data.delijn.be/stops/303359", "https://data.delijn.be/stops/303393"], ["https://data.delijn.be/stops/107350", "https://data.delijn.be/stops/107355"], ["https://data.delijn.be/stops/200558", "https://data.delijn.be/stops/201558"], ["https://data.delijn.be/stops/505565", "https://data.delijn.be/stops/508505"], ["https://data.delijn.be/stops/305113", "https://data.delijn.be/stops/305131"], ["https://data.delijn.be/stops/404418", "https://data.delijn.be/stops/407249"], ["https://data.delijn.be/stops/101399", "https://data.delijn.be/stops/106534"], ["https://data.delijn.be/stops/501388", "https://data.delijn.be/stops/506388"], ["https://data.delijn.be/stops/204197", "https://data.delijn.be/stops/204198"], ["https://data.delijn.be/stops/107562", "https://data.delijn.be/stops/109435"], ["https://data.delijn.be/stops/301463", "https://data.delijn.be/stops/301497"], ["https://data.delijn.be/stops/200404", "https://data.delijn.be/stops/202981"], ["https://data.delijn.be/stops/104783", "https://data.delijn.be/stops/108123"], ["https://data.delijn.be/stops/108627", "https://data.delijn.be/stops/305860"], ["https://data.delijn.be/stops/302620", "https://data.delijn.be/stops/303265"], ["https://data.delijn.be/stops/300458", "https://data.delijn.be/stops/300466"], ["https://data.delijn.be/stops/201261", "https://data.delijn.be/stops/201946"], ["https://data.delijn.be/stops/303243", "https://data.delijn.be/stops/303245"], ["https://data.delijn.be/stops/505799", "https://data.delijn.be/stops/509287"], ["https://data.delijn.be/stops/106705", "https://data.delijn.be/stops/106707"], ["https://data.delijn.be/stops/307341", "https://data.delijn.be/stops/308692"], ["https://data.delijn.be/stops/503012", "https://data.delijn.be/stops/503013"], ["https://data.delijn.be/stops/300729", "https://data.delijn.be/stops/302298"], ["https://data.delijn.be/stops/208216", "https://data.delijn.be/stops/209216"], ["https://data.delijn.be/stops/101073", "https://data.delijn.be/stops/101077"], ["https://data.delijn.be/stops/200022", "https://data.delijn.be/stops/201113"], ["https://data.delijn.be/stops/108844", "https://data.delijn.be/stops/108845"], ["https://data.delijn.be/stops/104280", "https://data.delijn.be/stops/104945"], ["https://data.delijn.be/stops/508159", "https://data.delijn.be/stops/508171"], ["https://data.delijn.be/stops/102728", "https://data.delijn.be/stops/106585"], ["https://data.delijn.be/stops/202454", "https://data.delijn.be/stops/202455"], ["https://data.delijn.be/stops/407621", "https://data.delijn.be/stops/408448"], ["https://data.delijn.be/stops/303415", "https://data.delijn.be/stops/303432"], ["https://data.delijn.be/stops/405607", "https://data.delijn.be/stops/406500"], ["https://data.delijn.be/stops/200086", "https://data.delijn.be/stops/201935"], ["https://data.delijn.be/stops/200836", "https://data.delijn.be/stops/202302"], ["https://data.delijn.be/stops/201829", "https://data.delijn.be/stops/218011"], ["https://data.delijn.be/stops/300887", "https://data.delijn.be/stops/307792"], ["https://data.delijn.be/stops/201753", "https://data.delijn.be/stops/209216"], ["https://data.delijn.be/stops/203462", "https://data.delijn.be/stops/203465"], ["https://data.delijn.be/stops/303023", "https://data.delijn.be/stops/306123"], ["https://data.delijn.be/stops/504286", "https://data.delijn.be/stops/509038"], ["https://data.delijn.be/stops/208007", "https://data.delijn.be/stops/208008"], ["https://data.delijn.be/stops/308251", "https://data.delijn.be/stops/308252"], ["https://data.delijn.be/stops/301768", "https://data.delijn.be/stops/304255"], ["https://data.delijn.be/stops/402630", "https://data.delijn.be/stops/405663"], ["https://data.delijn.be/stops/303017", "https://data.delijn.be/stops/306110"], ["https://data.delijn.be/stops/503065", "https://data.delijn.be/stops/508060"], ["https://data.delijn.be/stops/105279", "https://data.delijn.be/stops/105298"], ["https://data.delijn.be/stops/404110", "https://data.delijn.be/stops/405124"], ["https://data.delijn.be/stops/305878", "https://data.delijn.be/stops/305879"], ["https://data.delijn.be/stops/209553", "https://data.delijn.be/stops/209571"], ["https://data.delijn.be/stops/102928", "https://data.delijn.be/stops/106127"], ["https://data.delijn.be/stops/402242", "https://data.delijn.be/stops/402404"], ["https://data.delijn.be/stops/109153", "https://data.delijn.be/stops/109231"], ["https://data.delijn.be/stops/400756", "https://data.delijn.be/stops/400838"], ["https://data.delijn.be/stops/406055", "https://data.delijn.be/stops/406060"], ["https://data.delijn.be/stops/402502", "https://data.delijn.be/stops/402543"], ["https://data.delijn.be/stops/408031", "https://data.delijn.be/stops/408121"], ["https://data.delijn.be/stops/108381", "https://data.delijn.be/stops/108383"], ["https://data.delijn.be/stops/403119", "https://data.delijn.be/stops/403121"], ["https://data.delijn.be/stops/408481", "https://data.delijn.be/stops/409438"], ["https://data.delijn.be/stops/102739", "https://data.delijn.be/stops/105523"], ["https://data.delijn.be/stops/403825", "https://data.delijn.be/stops/403877"], ["https://data.delijn.be/stops/101841", "https://data.delijn.be/stops/109405"], ["https://data.delijn.be/stops/403834", "https://data.delijn.be/stops/403835"], ["https://data.delijn.be/stops/106270", "https://data.delijn.be/stops/109626"], ["https://data.delijn.be/stops/208365", "https://data.delijn.be/stops/209365"], ["https://data.delijn.be/stops/503010", "https://data.delijn.be/stops/503021"], ["https://data.delijn.be/stops/405312", "https://data.delijn.be/stops/405503"], ["https://data.delijn.be/stops/104571", "https://data.delijn.be/stops/107531"], ["https://data.delijn.be/stops/200843", "https://data.delijn.be/stops/202300"], ["https://data.delijn.be/stops/206942", "https://data.delijn.be/stops/209160"], ["https://data.delijn.be/stops/206896", "https://data.delijn.be/stops/206897"], ["https://data.delijn.be/stops/204986", "https://data.delijn.be/stops/209394"], ["https://data.delijn.be/stops/200702", "https://data.delijn.be/stops/200729"], ["https://data.delijn.be/stops/200815", "https://data.delijn.be/stops/200891"], ["https://data.delijn.be/stops/203527", "https://data.delijn.be/stops/203540"], ["https://data.delijn.be/stops/500566", "https://data.delijn.be/stops/500568"], ["https://data.delijn.be/stops/502094", "https://data.delijn.be/stops/502168"], ["https://data.delijn.be/stops/208374", "https://data.delijn.be/stops/208739"], ["https://data.delijn.be/stops/208125", "https://data.delijn.be/stops/208520"], ["https://data.delijn.be/stops/303126", "https://data.delijn.be/stops/303131"], ["https://data.delijn.be/stops/502669", "https://data.delijn.be/stops/507670"], ["https://data.delijn.be/stops/400113", "https://data.delijn.be/stops/400134"], ["https://data.delijn.be/stops/106939", "https://data.delijn.be/stops/108808"], ["https://data.delijn.be/stops/303292", "https://data.delijn.be/stops/303322"], ["https://data.delijn.be/stops/301303", "https://data.delijn.be/stops/306046"], ["https://data.delijn.be/stops/104638", "https://data.delijn.be/stops/109539"], ["https://data.delijn.be/stops/406292", "https://data.delijn.be/stops/409261"], ["https://data.delijn.be/stops/107868", "https://data.delijn.be/stops/107870"], ["https://data.delijn.be/stops/303562", "https://data.delijn.be/stops/303564"], ["https://data.delijn.be/stops/503962", "https://data.delijn.be/stops/508042"], ["https://data.delijn.be/stops/402159", "https://data.delijn.be/stops/406871"], ["https://data.delijn.be/stops/204333", "https://data.delijn.be/stops/205333"], ["https://data.delijn.be/stops/507367", "https://data.delijn.be/stops/507426"], ["https://data.delijn.be/stops/207452", "https://data.delijn.be/stops/207453"], ["https://data.delijn.be/stops/103923", "https://data.delijn.be/stops/103927"], ["https://data.delijn.be/stops/402345", "https://data.delijn.be/stops/402354"], ["https://data.delijn.be/stops/303378", "https://data.delijn.be/stops/308715"], ["https://data.delijn.be/stops/402796", "https://data.delijn.be/stops/402797"], ["https://data.delijn.be/stops/405353", "https://data.delijn.be/stops/302832"], ["https://data.delijn.be/stops/200582", "https://data.delijn.be/stops/201581"], ["https://data.delijn.be/stops/201975", "https://data.delijn.be/stops/201979"], ["https://data.delijn.be/stops/202866", "https://data.delijn.be/stops/202867"], ["https://data.delijn.be/stops/208439", "https://data.delijn.be/stops/208671"], ["https://data.delijn.be/stops/108383", "https://data.delijn.be/stops/108447"], ["https://data.delijn.be/stops/202944", "https://data.delijn.be/stops/203945"], ["https://data.delijn.be/stops/101206", "https://data.delijn.be/stops/102633"], ["https://data.delijn.be/stops/204014", "https://data.delijn.be/stops/204686"], ["https://data.delijn.be/stops/504432", "https://data.delijn.be/stops/509437"], ["https://data.delijn.be/stops/503050", "https://data.delijn.be/stops/505942"], ["https://data.delijn.be/stops/300599", "https://data.delijn.be/stops/300618"], ["https://data.delijn.be/stops/501208", "https://data.delijn.be/stops/501426"], ["https://data.delijn.be/stops/307380", "https://data.delijn.be/stops/307454"], ["https://data.delijn.be/stops/503390", "https://data.delijn.be/stops/508212"], ["https://data.delijn.be/stops/200158", "https://data.delijn.be/stops/202943"], ["https://data.delijn.be/stops/502014", "https://data.delijn.be/stops/507154"], ["https://data.delijn.be/stops/504114", "https://data.delijn.be/stops/504699"], ["https://data.delijn.be/stops/506156", "https://data.delijn.be/stops/506436"], ["https://data.delijn.be/stops/101746", "https://data.delijn.be/stops/106386"], ["https://data.delijn.be/stops/202082", "https://data.delijn.be/stops/203084"], ["https://data.delijn.be/stops/202873", "https://data.delijn.be/stops/203873"], ["https://data.delijn.be/stops/102089", "https://data.delijn.be/stops/106805"], ["https://data.delijn.be/stops/501596", "https://data.delijn.be/stops/509635"], ["https://data.delijn.be/stops/206958", "https://data.delijn.be/stops/207184"], ["https://data.delijn.be/stops/304449", "https://data.delijn.be/stops/307697"], ["https://data.delijn.be/stops/403413", "https://data.delijn.be/stops/410289"], ["https://data.delijn.be/stops/502406", "https://data.delijn.be/stops/507383"], ["https://data.delijn.be/stops/501683", "https://data.delijn.be/stops/506261"], ["https://data.delijn.be/stops/107453", "https://data.delijn.be/stops/109755"], ["https://data.delijn.be/stops/400312", "https://data.delijn.be/stops/400422"], ["https://data.delijn.be/stops/503821", "https://data.delijn.be/stops/508016"], ["https://data.delijn.be/stops/503290", "https://data.delijn.be/stops/505129"], ["https://data.delijn.be/stops/502509", "https://data.delijn.be/stops/507509"], ["https://data.delijn.be/stops/300633", "https://data.delijn.be/stops/307264"], ["https://data.delijn.be/stops/107569", "https://data.delijn.be/stops/107743"], ["https://data.delijn.be/stops/305680", "https://data.delijn.be/stops/307839"], ["https://data.delijn.be/stops/501086", "https://data.delijn.be/stops/506088"], ["https://data.delijn.be/stops/101396", "https://data.delijn.be/stops/106515"], ["https://data.delijn.be/stops/308600", "https://data.delijn.be/stops/308669"], ["https://data.delijn.be/stops/400031", "https://data.delijn.be/stops/400321"], ["https://data.delijn.be/stops/404812", "https://data.delijn.be/stops/404833"], ["https://data.delijn.be/stops/105877", "https://data.delijn.be/stops/105879"], ["https://data.delijn.be/stops/301531", "https://data.delijn.be/stops/308083"], ["https://data.delijn.be/stops/400665", "https://data.delijn.be/stops/408957"], ["https://data.delijn.be/stops/505729", "https://data.delijn.be/stops/507289"], ["https://data.delijn.be/stops/501629", "https://data.delijn.be/stops/505905"], ["https://data.delijn.be/stops/204544", "https://data.delijn.be/stops/204554"], ["https://data.delijn.be/stops/501376", "https://data.delijn.be/stops/501382"], ["https://data.delijn.be/stops/508866", "https://data.delijn.be/stops/508874"], ["https://data.delijn.be/stops/208208", "https://data.delijn.be/stops/208209"], ["https://data.delijn.be/stops/102506", "https://data.delijn.be/stops/102508"], ["https://data.delijn.be/stops/101311", "https://data.delijn.be/stops/102932"], ["https://data.delijn.be/stops/503088", "https://data.delijn.be/stops/508973"], ["https://data.delijn.be/stops/300605", "https://data.delijn.be/stops/300606"], ["https://data.delijn.be/stops/405364", "https://data.delijn.be/stops/405370"], ["https://data.delijn.be/stops/208081", "https://data.delijn.be/stops/209081"], ["https://data.delijn.be/stops/407166", "https://data.delijn.be/stops/407489"], ["https://data.delijn.be/stops/505307", "https://data.delijn.be/stops/505813"], ["https://data.delijn.be/stops/504471", "https://data.delijn.be/stops/509103"], ["https://data.delijn.be/stops/302085", "https://data.delijn.be/stops/302089"], ["https://data.delijn.be/stops/508415", "https://data.delijn.be/stops/509907"], ["https://data.delijn.be/stops/501307", "https://data.delijn.be/stops/506734"], ["https://data.delijn.be/stops/306858", "https://data.delijn.be/stops/307359"], ["https://data.delijn.be/stops/502035", "https://data.delijn.be/stops/502616"], ["https://data.delijn.be/stops/207983", "https://data.delijn.be/stops/304269"], ["https://data.delijn.be/stops/104994", "https://data.delijn.be/stops/109695"], ["https://data.delijn.be/stops/409354", "https://data.delijn.be/stops/409375"], ["https://data.delijn.be/stops/202882", "https://data.delijn.be/stops/202883"], ["https://data.delijn.be/stops/200149", "https://data.delijn.be/stops/201512"], ["https://data.delijn.be/stops/206637", "https://data.delijn.be/stops/207638"], ["https://data.delijn.be/stops/202678", "https://data.delijn.be/stops/203678"], ["https://data.delijn.be/stops/204412", "https://data.delijn.be/stops/204443"], ["https://data.delijn.be/stops/105224", "https://data.delijn.be/stops/106837"], ["https://data.delijn.be/stops/300661", "https://data.delijn.be/stops/302469"], ["https://data.delijn.be/stops/409259", "https://data.delijn.be/stops/409261"], ["https://data.delijn.be/stops/101578", "https://data.delijn.be/stops/105461"], ["https://data.delijn.be/stops/504590", "https://data.delijn.be/stops/505975"], ["https://data.delijn.be/stops/502193", "https://data.delijn.be/stops/507193"], ["https://data.delijn.be/stops/409063", "https://data.delijn.be/stops/409073"], ["https://data.delijn.be/stops/101172", "https://data.delijn.be/stops/102380"], ["https://data.delijn.be/stops/406446", "https://data.delijn.be/stops/406746"], ["https://data.delijn.be/stops/206856", "https://data.delijn.be/stops/207220"], ["https://data.delijn.be/stops/301700", "https://data.delijn.be/stops/305906"], ["https://data.delijn.be/stops/307367", "https://data.delijn.be/stops/307375"], ["https://data.delijn.be/stops/205262", "https://data.delijn.be/stops/205269"], ["https://data.delijn.be/stops/208432", "https://data.delijn.be/stops/208808"], ["https://data.delijn.be/stops/406964", "https://data.delijn.be/stops/409444"], ["https://data.delijn.be/stops/109833", "https://data.delijn.be/stops/109953"], ["https://data.delijn.be/stops/401043", "https://data.delijn.be/stops/401147"], ["https://data.delijn.be/stops/501169", "https://data.delijn.be/stops/506172"], ["https://data.delijn.be/stops/207434", "https://data.delijn.be/stops/209691"], ["https://data.delijn.be/stops/205734", "https://data.delijn.be/stops/205758"], ["https://data.delijn.be/stops/202205", "https://data.delijn.be/stops/202769"], ["https://data.delijn.be/stops/500138", "https://data.delijn.be/stops/502739"], ["https://data.delijn.be/stops/400762", "https://data.delijn.be/stops/400767"], ["https://data.delijn.be/stops/301113", "https://data.delijn.be/stops/303674"], ["https://data.delijn.be/stops/206165", "https://data.delijn.be/stops/304553"], ["https://data.delijn.be/stops/101781", "https://data.delijn.be/stops/104162"], ["https://data.delijn.be/stops/204203", "https://data.delijn.be/stops/205203"], ["https://data.delijn.be/stops/209462", "https://data.delijn.be/stops/209513"], ["https://data.delijn.be/stops/404071", "https://data.delijn.be/stops/409302"], ["https://data.delijn.be/stops/104880", "https://data.delijn.be/stops/104881"], ["https://data.delijn.be/stops/401443", "https://data.delijn.be/stops/401649"], ["https://data.delijn.be/stops/302350", "https://data.delijn.be/stops/302361"], ["https://data.delijn.be/stops/204083", "https://data.delijn.be/stops/204086"], ["https://data.delijn.be/stops/206439", "https://data.delijn.be/stops/206441"], ["https://data.delijn.be/stops/301490", "https://data.delijn.be/stops/308071"], ["https://data.delijn.be/stops/307282", "https://data.delijn.be/stops/307534"], ["https://data.delijn.be/stops/402140", "https://data.delijn.be/stops/402438"], ["https://data.delijn.be/stops/304988", "https://data.delijn.be/stops/308022"], ["https://data.delijn.be/stops/208855", "https://data.delijn.be/stops/209855"], ["https://data.delijn.be/stops/301028", "https://data.delijn.be/stops/301032"], ["https://data.delijn.be/stops/206670", "https://data.delijn.be/stops/209109"], ["https://data.delijn.be/stops/204181", "https://data.delijn.be/stops/205181"], ["https://data.delijn.be/stops/406172", "https://data.delijn.be/stops/406281"], ["https://data.delijn.be/stops/208570", "https://data.delijn.be/stops/209570"], ["https://data.delijn.be/stops/401210", "https://data.delijn.be/stops/401225"], ["https://data.delijn.be/stops/200064", "https://data.delijn.be/stops/201064"], ["https://data.delijn.be/stops/209515", "https://data.delijn.be/stops/209672"], ["https://data.delijn.be/stops/206573", "https://data.delijn.be/stops/206591"], ["https://data.delijn.be/stops/503476", "https://data.delijn.be/stops/508454"], ["https://data.delijn.be/stops/501245", "https://data.delijn.be/stops/506247"], ["https://data.delijn.be/stops/302414", "https://data.delijn.be/stops/308814"], ["https://data.delijn.be/stops/208109", "https://data.delijn.be/stops/209109"], ["https://data.delijn.be/stops/406203", "https://data.delijn.be/stops/410270"], ["https://data.delijn.be/stops/107694", "https://data.delijn.be/stops/410261"], ["https://data.delijn.be/stops/107844", "https://data.delijn.be/stops/107848"], ["https://data.delijn.be/stops/206778", "https://data.delijn.be/stops/206802"], ["https://data.delijn.be/stops/107089", "https://data.delijn.be/stops/108182"], ["https://data.delijn.be/stops/103974", "https://data.delijn.be/stops/107180"], ["https://data.delijn.be/stops/200727", "https://data.delijn.be/stops/202415"], ["https://data.delijn.be/stops/102256", "https://data.delijn.be/stops/108308"], ["https://data.delijn.be/stops/305414", "https://data.delijn.be/stops/305415"], ["https://data.delijn.be/stops/200896", "https://data.delijn.be/stops/203055"], ["https://data.delijn.be/stops/504682", "https://data.delijn.be/stops/505414"], ["https://data.delijn.be/stops/108021", "https://data.delijn.be/stops/108022"], ["https://data.delijn.be/stops/504272", "https://data.delijn.be/stops/509575"], ["https://data.delijn.be/stops/104131", "https://data.delijn.be/stops/109579"], ["https://data.delijn.be/stops/504790", "https://data.delijn.be/stops/504791"], ["https://data.delijn.be/stops/207632", "https://data.delijn.be/stops/207633"], ["https://data.delijn.be/stops/403508", "https://data.delijn.be/stops/403511"], ["https://data.delijn.be/stops/409524", "https://data.delijn.be/stops/409526"], ["https://data.delijn.be/stops/307970", "https://data.delijn.be/stops/307971"], ["https://data.delijn.be/stops/106897", "https://data.delijn.be/stops/106898"], ["https://data.delijn.be/stops/403135", "https://data.delijn.be/stops/403138"], ["https://data.delijn.be/stops/308127", "https://data.delijn.be/stops/308128"], ["https://data.delijn.be/stops/504331", "https://data.delijn.be/stops/509331"], ["https://data.delijn.be/stops/210063", "https://data.delijn.be/stops/211120"], ["https://data.delijn.be/stops/300168", "https://data.delijn.be/stops/301224"], ["https://data.delijn.be/stops/507417", "https://data.delijn.be/stops/507439"], ["https://data.delijn.be/stops/300683", "https://data.delijn.be/stops/305962"], ["https://data.delijn.be/stops/400798", "https://data.delijn.be/stops/400799"], ["https://data.delijn.be/stops/202796", "https://data.delijn.be/stops/203312"], ["https://data.delijn.be/stops/203078", "https://data.delijn.be/stops/203342"], ["https://data.delijn.be/stops/303249", "https://data.delijn.be/stops/306312"], ["https://data.delijn.be/stops/501003", "https://data.delijn.be/stops/506010"], ["https://data.delijn.be/stops/200384", "https://data.delijn.be/stops/209727"], ["https://data.delijn.be/stops/306334", "https://data.delijn.be/stops/306335"], ["https://data.delijn.be/stops/504055", "https://data.delijn.be/stops/505110"], ["https://data.delijn.be/stops/300538", "https://data.delijn.be/stops/302366"], ["https://data.delijn.be/stops/107798", "https://data.delijn.be/stops/107823"], ["https://data.delijn.be/stops/101062", "https://data.delijn.be/stops/101063"], ["https://data.delijn.be/stops/108766", "https://data.delijn.be/stops/109270"], ["https://data.delijn.be/stops/205252", "https://data.delijn.be/stops/205734"], ["https://data.delijn.be/stops/401966", "https://data.delijn.be/stops/403075"], ["https://data.delijn.be/stops/400168", "https://data.delijn.be/stops/400169"], ["https://data.delijn.be/stops/206597", "https://data.delijn.be/stops/207596"], ["https://data.delijn.be/stops/300297", "https://data.delijn.be/stops/301316"], ["https://data.delijn.be/stops/400289", "https://data.delijn.be/stops/400359"], ["https://data.delijn.be/stops/201608", "https://data.delijn.be/stops/203770"], ["https://data.delijn.be/stops/101872", "https://data.delijn.be/stops/104239"], ["https://data.delijn.be/stops/208405", "https://data.delijn.be/stops/208415"], ["https://data.delijn.be/stops/101364", "https://data.delijn.be/stops/101401"], ["https://data.delijn.be/stops/200091", "https://data.delijn.be/stops/201091"], ["https://data.delijn.be/stops/207113", "https://data.delijn.be/stops/207907"], ["https://data.delijn.be/stops/104488", "https://data.delijn.be/stops/104489"], ["https://data.delijn.be/stops/306764", "https://data.delijn.be/stops/308815"], ["https://data.delijn.be/stops/108123", "https://data.delijn.be/stops/109584"], ["https://data.delijn.be/stops/204710", "https://data.delijn.be/stops/205338"], ["https://data.delijn.be/stops/403376", "https://data.delijn.be/stops/403509"], ["https://data.delijn.be/stops/208119", "https://data.delijn.be/stops/218008"], ["https://data.delijn.be/stops/206097", "https://data.delijn.be/stops/207098"], ["https://data.delijn.be/stops/300546", "https://data.delijn.be/stops/300547"], ["https://data.delijn.be/stops/104659", "https://data.delijn.be/stops/104662"], ["https://data.delijn.be/stops/103660", "https://data.delijn.be/stops/106218"], ["https://data.delijn.be/stops/303404", "https://data.delijn.be/stops/304828"], ["https://data.delijn.be/stops/203882", "https://data.delijn.be/stops/206938"], ["https://data.delijn.be/stops/101666", "https://data.delijn.be/stops/109188"], ["https://data.delijn.be/stops/503234", "https://data.delijn.be/stops/503251"], ["https://data.delijn.be/stops/104401", "https://data.delijn.be/stops/107126"], ["https://data.delijn.be/stops/304608", "https://data.delijn.be/stops/306171"], ["https://data.delijn.be/stops/201906", "https://data.delijn.be/stops/201907"], ["https://data.delijn.be/stops/400552", "https://data.delijn.be/stops/403584"], ["https://data.delijn.be/stops/306913", "https://data.delijn.be/stops/308875"], ["https://data.delijn.be/stops/205736", "https://data.delijn.be/stops/205737"], ["https://data.delijn.be/stops/300336", "https://data.delijn.be/stops/304459"], ["https://data.delijn.be/stops/504772", "https://data.delijn.be/stops/509533"], ["https://data.delijn.be/stops/408687", "https://data.delijn.be/stops/410083"], ["https://data.delijn.be/stops/203237", "https://data.delijn.be/stops/203269"], ["https://data.delijn.be/stops/403510", "https://data.delijn.be/stops/410215"], ["https://data.delijn.be/stops/105652", "https://data.delijn.be/stops/105653"], ["https://data.delijn.be/stops/302562", "https://data.delijn.be/stops/302577"], ["https://data.delijn.be/stops/401401", "https://data.delijn.be/stops/410152"], ["https://data.delijn.be/stops/401529", "https://data.delijn.be/stops/401540"], ["https://data.delijn.be/stops/209043", "https://data.delijn.be/stops/209223"], ["https://data.delijn.be/stops/304735", "https://data.delijn.be/stops/304754"], ["https://data.delijn.be/stops/406097", "https://data.delijn.be/stops/407914"], ["https://data.delijn.be/stops/300507", "https://data.delijn.be/stops/302919"], ["https://data.delijn.be/stops/504023", "https://data.delijn.be/stops/504125"], ["https://data.delijn.be/stops/304725", "https://data.delijn.be/stops/304730"], ["https://data.delijn.be/stops/301321", "https://data.delijn.be/stops/301322"], ["https://data.delijn.be/stops/307938", "https://data.delijn.be/stops/308777"], ["https://data.delijn.be/stops/106524", "https://data.delijn.be/stops/106526"], ["https://data.delijn.be/stops/505406", "https://data.delijn.be/stops/508142"], ["https://data.delijn.be/stops/103795", "https://data.delijn.be/stops/106055"], ["https://data.delijn.be/stops/408290", "https://data.delijn.be/stops/408291"], ["https://data.delijn.be/stops/106595", "https://data.delijn.be/stops/106597"], ["https://data.delijn.be/stops/204296", "https://data.delijn.be/stops/205296"], ["https://data.delijn.be/stops/305773", "https://data.delijn.be/stops/305794"], ["https://data.delijn.be/stops/505673", "https://data.delijn.be/stops/505689"], ["https://data.delijn.be/stops/105277", "https://data.delijn.be/stops/106755"], ["https://data.delijn.be/stops/208104", "https://data.delijn.be/stops/209135"], ["https://data.delijn.be/stops/108397", "https://data.delijn.be/stops/108400"], ["https://data.delijn.be/stops/106109", "https://data.delijn.be/stops/106174"], ["https://data.delijn.be/stops/302117", "https://data.delijn.be/stops/304023"], ["https://data.delijn.be/stops/308471", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/103298", "https://data.delijn.be/stops/105098"], ["https://data.delijn.be/stops/305228", "https://data.delijn.be/stops/305233"], ["https://data.delijn.be/stops/202787", "https://data.delijn.be/stops/209643"], ["https://data.delijn.be/stops/200816", "https://data.delijn.be/stops/208919"], ["https://data.delijn.be/stops/300723", "https://data.delijn.be/stops/306935"], ["https://data.delijn.be/stops/204717", "https://data.delijn.be/stops/204721"], ["https://data.delijn.be/stops/302589", "https://data.delijn.be/stops/302605"], ["https://data.delijn.be/stops/201164", "https://data.delijn.be/stops/209727"], ["https://data.delijn.be/stops/401042", "https://data.delijn.be/stops/401081"], ["https://data.delijn.be/stops/503562", "https://data.delijn.be/stops/505191"], ["https://data.delijn.be/stops/102517", "https://data.delijn.be/stops/406515"], ["https://data.delijn.be/stops/303984", "https://data.delijn.be/stops/305870"], ["https://data.delijn.be/stops/404887", "https://data.delijn.be/stops/408642"], ["https://data.delijn.be/stops/208275", "https://data.delijn.be/stops/209275"], ["https://data.delijn.be/stops/405339", "https://data.delijn.be/stops/305063"], ["https://data.delijn.be/stops/502044", "https://data.delijn.be/stops/507617"], ["https://data.delijn.be/stops/106171", "https://data.delijn.be/stops/106173"], ["https://data.delijn.be/stops/204396", "https://data.delijn.be/stops/205416"], ["https://data.delijn.be/stops/301270", "https://data.delijn.be/stops/301278"], ["https://data.delijn.be/stops/107511", "https://data.delijn.be/stops/107513"], ["https://data.delijn.be/stops/509280", "https://data.delijn.be/stops/509284"], ["https://data.delijn.be/stops/108966", "https://data.delijn.be/stops/108968"], ["https://data.delijn.be/stops/302793", "https://data.delijn.be/stops/302810"], ["https://data.delijn.be/stops/202333", "https://data.delijn.be/stops/203332"], ["https://data.delijn.be/stops/102820", "https://data.delijn.be/stops/104480"], ["https://data.delijn.be/stops/109852", "https://data.delijn.be/stops/109858"], ["https://data.delijn.be/stops/101976", "https://data.delijn.be/stops/109058"], ["https://data.delijn.be/stops/103292", "https://data.delijn.be/stops/108801"], ["https://data.delijn.be/stops/404425", "https://data.delijn.be/stops/404457"], ["https://data.delijn.be/stops/402641", "https://data.delijn.be/stops/405560"], ["https://data.delijn.be/stops/503074", "https://data.delijn.be/stops/508522"], ["https://data.delijn.be/stops/407659", "https://data.delijn.be/stops/407661"], ["https://data.delijn.be/stops/503819", "https://data.delijn.be/stops/508544"], ["https://data.delijn.be/stops/216014", "https://data.delijn.be/stops/217014"], ["https://data.delijn.be/stops/207674", "https://data.delijn.be/stops/208139"], ["https://data.delijn.be/stops/403731", "https://data.delijn.be/stops/403778"], ["https://data.delijn.be/stops/206573", "https://data.delijn.be/stops/207573"], ["https://data.delijn.be/stops/505154", "https://data.delijn.be/stops/505833"], ["https://data.delijn.be/stops/202083", "https://data.delijn.be/stops/203084"], ["https://data.delijn.be/stops/409311", "https://data.delijn.be/stops/409318"], ["https://data.delijn.be/stops/207563", "https://data.delijn.be/stops/207577"], ["https://data.delijn.be/stops/509033", "https://data.delijn.be/stops/509471"], ["https://data.delijn.be/stops/406258", "https://data.delijn.be/stops/406259"], ["https://data.delijn.be/stops/106637", "https://data.delijn.be/stops/106677"], ["https://data.delijn.be/stops/308557", "https://data.delijn.be/stops/308558"], ["https://data.delijn.be/stops/202336", "https://data.delijn.be/stops/202337"], ["https://data.delijn.be/stops/300698", "https://data.delijn.be/stops/306939"], ["https://data.delijn.be/stops/102058", "https://data.delijn.be/stops/102283"], ["https://data.delijn.be/stops/200155", "https://data.delijn.be/stops/201155"], ["https://data.delijn.be/stops/102943", "https://data.delijn.be/stops/105656"], ["https://data.delijn.be/stops/504678", "https://data.delijn.be/stops/505436"], ["https://data.delijn.be/stops/109606", "https://data.delijn.be/stops/109737"], ["https://data.delijn.be/stops/504465", "https://data.delijn.be/stops/509464"], ["https://data.delijn.be/stops/402587", "https://data.delijn.be/stops/407952"], ["https://data.delijn.be/stops/207221", "https://data.delijn.be/stops/207346"], ["https://data.delijn.be/stops/105009", "https://data.delijn.be/stops/105011"], ["https://data.delijn.be/stops/508558", "https://data.delijn.be/stops/508874"], ["https://data.delijn.be/stops/206584", "https://data.delijn.be/stops/207840"], ["https://data.delijn.be/stops/503801", "https://data.delijn.be/stops/508801"], ["https://data.delijn.be/stops/403378", "https://data.delijn.be/stops/403467"], ["https://data.delijn.be/stops/301923", "https://data.delijn.be/stops/306159"], ["https://data.delijn.be/stops/400614", "https://data.delijn.be/stops/400624"], ["https://data.delijn.be/stops/102087", "https://data.delijn.be/stops/109514"], ["https://data.delijn.be/stops/403673", "https://data.delijn.be/stops/405635"], ["https://data.delijn.be/stops/408279", "https://data.delijn.be/stops/408375"], ["https://data.delijn.be/stops/504166", "https://data.delijn.be/stops/505108"], ["https://data.delijn.be/stops/304733", "https://data.delijn.be/stops/306557"], ["https://data.delijn.be/stops/101154", "https://data.delijn.be/stops/102756"], ["https://data.delijn.be/stops/204592", "https://data.delijn.be/stops/205156"], ["https://data.delijn.be/stops/400354", "https://data.delijn.be/stops/400356"], ["https://data.delijn.be/stops/106594", "https://data.delijn.be/stops/107795"], ["https://data.delijn.be/stops/402047", "https://data.delijn.be/stops/402349"], ["https://data.delijn.be/stops/200666", "https://data.delijn.be/stops/201810"], ["https://data.delijn.be/stops/207188", "https://data.delijn.be/stops/207189"], ["https://data.delijn.be/stops/206913", "https://data.delijn.be/stops/207913"], ["https://data.delijn.be/stops/106910", "https://data.delijn.be/stops/107256"], ["https://data.delijn.be/stops/106919", "https://data.delijn.be/stops/106946"], ["https://data.delijn.be/stops/400054", "https://data.delijn.be/stops/400139"], ["https://data.delijn.be/stops/300081", "https://data.delijn.be/stops/307343"], ["https://data.delijn.be/stops/401411", "https://data.delijn.be/stops/401416"], ["https://data.delijn.be/stops/302933", "https://data.delijn.be/stops/303044"], ["https://data.delijn.be/stops/208642", "https://data.delijn.be/stops/209641"], ["https://data.delijn.be/stops/201103", "https://data.delijn.be/stops/201362"], ["https://data.delijn.be/stops/400708", "https://data.delijn.be/stops/400712"], ["https://data.delijn.be/stops/403822", "https://data.delijn.be/stops/406973"], ["https://data.delijn.be/stops/300705", "https://data.delijn.be/stops/300706"], ["https://data.delijn.be/stops/403210", "https://data.delijn.be/stops/403211"], ["https://data.delijn.be/stops/307355", "https://data.delijn.be/stops/307356"], ["https://data.delijn.be/stops/300472", "https://data.delijn.be/stops/308061"], ["https://data.delijn.be/stops/109391", "https://data.delijn.be/stops/109604"], ["https://data.delijn.be/stops/407853", "https://data.delijn.be/stops/408005"], ["https://data.delijn.be/stops/303450", "https://data.delijn.be/stops/306299"], ["https://data.delijn.be/stops/505393", "https://data.delijn.be/stops/508161"], ["https://data.delijn.be/stops/200827", "https://data.delijn.be/stops/507069"], ["https://data.delijn.be/stops/200574", "https://data.delijn.be/stops/200575"], ["https://data.delijn.be/stops/207307", "https://data.delijn.be/stops/207391"], ["https://data.delijn.be/stops/102463", "https://data.delijn.be/stops/102464"], ["https://data.delijn.be/stops/402670", "https://data.delijn.be/stops/402728"], ["https://data.delijn.be/stops/500024", "https://data.delijn.be/stops/503987"], ["https://data.delijn.be/stops/208517", "https://data.delijn.be/stops/208535"], ["https://data.delijn.be/stops/201423", "https://data.delijn.be/stops/209718"], ["https://data.delijn.be/stops/206939", "https://data.delijn.be/stops/207939"], ["https://data.delijn.be/stops/102639", "https://data.delijn.be/stops/104918"], ["https://data.delijn.be/stops/405866", "https://data.delijn.be/stops/409727"], ["https://data.delijn.be/stops/105306", "https://data.delijn.be/stops/105353"], ["https://data.delijn.be/stops/503093", "https://data.delijn.be/stops/508089"], ["https://data.delijn.be/stops/300269", "https://data.delijn.be/stops/300270"], ["https://data.delijn.be/stops/200830", "https://data.delijn.be/stops/505064"], ["https://data.delijn.be/stops/302376", "https://data.delijn.be/stops/307842"], ["https://data.delijn.be/stops/504020", "https://data.delijn.be/stops/508153"], ["https://data.delijn.be/stops/407600", "https://data.delijn.be/stops/407607"], ["https://data.delijn.be/stops/105603", "https://data.delijn.be/stops/105604"], ["https://data.delijn.be/stops/104185", "https://data.delijn.be/stops/104220"], ["https://data.delijn.be/stops/407334", "https://data.delijn.be/stops/409496"], ["https://data.delijn.be/stops/204187", "https://data.delijn.be/stops/204188"], ["https://data.delijn.be/stops/202187", "https://data.delijn.be/stops/202188"], ["https://data.delijn.be/stops/307320", "https://data.delijn.be/stops/307323"], ["https://data.delijn.be/stops/404878", "https://data.delijn.be/stops/404943"], ["https://data.delijn.be/stops/200510", "https://data.delijn.be/stops/202358"], ["https://data.delijn.be/stops/106591", "https://data.delijn.be/stops/107249"], ["https://data.delijn.be/stops/206266", "https://data.delijn.be/stops/206526"], ["https://data.delijn.be/stops/103487", "https://data.delijn.be/stops/109159"], ["https://data.delijn.be/stops/209457", "https://data.delijn.be/stops/209586"], ["https://data.delijn.be/stops/201843", "https://data.delijn.be/stops/202194"], ["https://data.delijn.be/stops/403212", "https://data.delijn.be/stops/403479"], ["https://data.delijn.be/stops/107685", "https://data.delijn.be/stops/108620"], ["https://data.delijn.be/stops/301776", "https://data.delijn.be/stops/301786"], ["https://data.delijn.be/stops/104606", "https://data.delijn.be/stops/104672"], ["https://data.delijn.be/stops/504122", "https://data.delijn.be/stops/509259"], ["https://data.delijn.be/stops/208591", "https://data.delijn.be/stops/209591"], ["https://data.delijn.be/stops/104573", "https://data.delijn.be/stops/104574"], ["https://data.delijn.be/stops/203446", "https://data.delijn.be/stops/203447"], ["https://data.delijn.be/stops/403379", "https://data.delijn.be/stops/410391"], ["https://data.delijn.be/stops/404123", "https://data.delijn.be/stops/410213"], ["https://data.delijn.be/stops/204614", "https://data.delijn.be/stops/204615"], ["https://data.delijn.be/stops/503485", "https://data.delijn.be/stops/508989"], ["https://data.delijn.be/stops/404882", "https://data.delijn.be/stops/404965"], ["https://data.delijn.be/stops/408294", "https://data.delijn.be/stops/308182"], ["https://data.delijn.be/stops/109856", "https://data.delijn.be/stops/109941"], ["https://data.delijn.be/stops/402832", "https://data.delijn.be/stops/402833"], ["https://data.delijn.be/stops/401800", "https://data.delijn.be/stops/401801"], ["https://data.delijn.be/stops/307494", "https://data.delijn.be/stops/307495"], ["https://data.delijn.be/stops/301630", "https://data.delijn.be/stops/301633"], ["https://data.delijn.be/stops/201941", "https://data.delijn.be/stops/203943"], ["https://data.delijn.be/stops/403080", "https://data.delijn.be/stops/403081"], ["https://data.delijn.be/stops/204196", "https://data.delijn.be/stops/204238"], ["https://data.delijn.be/stops/505744", "https://data.delijn.be/stops/507536"], ["https://data.delijn.be/stops/300181", "https://data.delijn.be/stops/300228"], ["https://data.delijn.be/stops/404478", "https://data.delijn.be/stops/406758"], ["https://data.delijn.be/stops/208114", "https://data.delijn.be/stops/209114"], ["https://data.delijn.be/stops/201403", "https://data.delijn.be/stops/203040"], ["https://data.delijn.be/stops/304202", "https://data.delijn.be/stops/305999"], ["https://data.delijn.be/stops/102067", "https://data.delijn.be/stops/106927"], ["https://data.delijn.be/stops/207372", "https://data.delijn.be/stops/207718"], ["https://data.delijn.be/stops/401476", "https://data.delijn.be/stops/410306"], ["https://data.delijn.be/stops/405812", "https://data.delijn.be/stops/405813"], ["https://data.delijn.be/stops/500158", "https://data.delijn.be/stops/510030"], ["https://data.delijn.be/stops/204075", "https://data.delijn.be/stops/204236"], ["https://data.delijn.be/stops/405368", "https://data.delijn.be/stops/405391"], ["https://data.delijn.be/stops/407899", "https://data.delijn.be/stops/408070"], ["https://data.delijn.be/stops/405612", "https://data.delijn.be/stops/405613"], ["https://data.delijn.be/stops/400733", "https://data.delijn.be/stops/409664"], ["https://data.delijn.be/stops/300141", "https://data.delijn.be/stops/300142"], ["https://data.delijn.be/stops/108678", "https://data.delijn.be/stops/306629"], ["https://data.delijn.be/stops/401330", "https://data.delijn.be/stops/401390"], ["https://data.delijn.be/stops/300470", "https://data.delijn.be/stops/300471"], ["https://data.delijn.be/stops/204581", "https://data.delijn.be/stops/205579"], ["https://data.delijn.be/stops/506765", "https://data.delijn.be/stops/509285"], ["https://data.delijn.be/stops/404306", "https://data.delijn.be/stops/409659"], ["https://data.delijn.be/stops/102693", "https://data.delijn.be/stops/104840"], ["https://data.delijn.be/stops/106251", "https://data.delijn.be/stops/109122"], ["https://data.delijn.be/stops/406685", "https://data.delijn.be/stops/406699"], ["https://data.delijn.be/stops/509860", "https://data.delijn.be/stops/509861"], ["https://data.delijn.be/stops/107053", "https://data.delijn.be/stops/107054"], ["https://data.delijn.be/stops/307933", "https://data.delijn.be/stops/307934"], ["https://data.delijn.be/stops/300621", "https://data.delijn.be/stops/306800"], ["https://data.delijn.be/stops/401830", "https://data.delijn.be/stops/401831"], ["https://data.delijn.be/stops/401438", "https://data.delijn.be/stops/401439"], ["https://data.delijn.be/stops/200897", "https://data.delijn.be/stops/203053"], ["https://data.delijn.be/stops/204188", "https://data.delijn.be/stops/205228"], ["https://data.delijn.be/stops/206285", "https://data.delijn.be/stops/206286"], ["https://data.delijn.be/stops/103258", "https://data.delijn.be/stops/103304"], ["https://data.delijn.be/stops/400630", "https://data.delijn.be/stops/400631"], ["https://data.delijn.be/stops/102207", "https://data.delijn.be/stops/106239"], ["https://data.delijn.be/stops/103160", "https://data.delijn.be/stops/107711"], ["https://data.delijn.be/stops/406176", "https://data.delijn.be/stops/410224"], ["https://data.delijn.be/stops/502253", "https://data.delijn.be/stops/505223"], ["https://data.delijn.be/stops/400286", "https://data.delijn.be/stops/400287"], ["https://data.delijn.be/stops/200911", "https://data.delijn.be/stops/203254"], ["https://data.delijn.be/stops/109167", "https://data.delijn.be/stops/109170"], ["https://data.delijn.be/stops/401728", "https://data.delijn.be/stops/406047"], ["https://data.delijn.be/stops/308016", "https://data.delijn.be/stops/308018"], ["https://data.delijn.be/stops/305583", "https://data.delijn.be/stops/307044"], ["https://data.delijn.be/stops/301586", "https://data.delijn.be/stops/301589"], ["https://data.delijn.be/stops/504647", "https://data.delijn.be/stops/509647"], ["https://data.delijn.be/stops/300408", "https://data.delijn.be/stops/301996"], ["https://data.delijn.be/stops/306838", "https://data.delijn.be/stops/308541"], ["https://data.delijn.be/stops/406952", "https://data.delijn.be/stops/409471"], ["https://data.delijn.be/stops/404333", "https://data.delijn.be/stops/404382"], ["https://data.delijn.be/stops/203183", "https://data.delijn.be/stops/204237"], ["https://data.delijn.be/stops/303986", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/502309", "https://data.delijn.be/stops/502426"], ["https://data.delijn.be/stops/103488", "https://data.delijn.be/stops/103493"], ["https://data.delijn.be/stops/206490", "https://data.delijn.be/stops/206491"], ["https://data.delijn.be/stops/208749", "https://data.delijn.be/stops/209639"], ["https://data.delijn.be/stops/200689", "https://data.delijn.be/stops/200693"], ["https://data.delijn.be/stops/502431", "https://data.delijn.be/stops/502694"], ["https://data.delijn.be/stops/204520", "https://data.delijn.be/stops/205065"], ["https://data.delijn.be/stops/501179", "https://data.delijn.be/stops/506775"], ["https://data.delijn.be/stops/401183", "https://data.delijn.be/stops/410124"], ["https://data.delijn.be/stops/509593", "https://data.delijn.be/stops/509594"], ["https://data.delijn.be/stops/300890", "https://data.delijn.be/stops/305319"], ["https://data.delijn.be/stops/104010", "https://data.delijn.be/stops/106890"], ["https://data.delijn.be/stops/407608", "https://data.delijn.be/stops/407629"], ["https://data.delijn.be/stops/502489", "https://data.delijn.be/stops/502498"], ["https://data.delijn.be/stops/401074", "https://data.delijn.be/stops/401083"], ["https://data.delijn.be/stops/408603", "https://data.delijn.be/stops/408607"], ["https://data.delijn.be/stops/202425", "https://data.delijn.be/stops/203425"], ["https://data.delijn.be/stops/403072", "https://data.delijn.be/stops/403086"], ["https://data.delijn.be/stops/200418", "https://data.delijn.be/stops/201418"], ["https://data.delijn.be/stops/507029", "https://data.delijn.be/stops/507037"], ["https://data.delijn.be/stops/302370", "https://data.delijn.be/stops/302371"], ["https://data.delijn.be/stops/401651", "https://data.delijn.be/stops/306327"], ["https://data.delijn.be/stops/400201", "https://data.delijn.be/stops/400238"], ["https://data.delijn.be/stops/103246", "https://data.delijn.be/stops/108915"], ["https://data.delijn.be/stops/407294", "https://data.delijn.be/stops/407295"], ["https://data.delijn.be/stops/302203", "https://data.delijn.be/stops/304001"], ["https://data.delijn.be/stops/107953", "https://data.delijn.be/stops/108985"], ["https://data.delijn.be/stops/202554", "https://data.delijn.be/stops/202555"], ["https://data.delijn.be/stops/503730", "https://data.delijn.be/stops/508730"], ["https://data.delijn.be/stops/304495", "https://data.delijn.be/stops/304519"], ["https://data.delijn.be/stops/300701", "https://data.delijn.be/stops/306945"], ["https://data.delijn.be/stops/403234", "https://data.delijn.be/stops/403235"], ["https://data.delijn.be/stops/300388", "https://data.delijn.be/stops/308637"], ["https://data.delijn.be/stops/108377", "https://data.delijn.be/stops/108381"], ["https://data.delijn.be/stops/202243", "https://data.delijn.be/stops/203486"], ["https://data.delijn.be/stops/407859", "https://data.delijn.be/stops/408169"], ["https://data.delijn.be/stops/200682", "https://data.delijn.be/stops/200850"], ["https://data.delijn.be/stops/200478", "https://data.delijn.be/stops/201054"], ["https://data.delijn.be/stops/101823", "https://data.delijn.be/stops/102393"], ["https://data.delijn.be/stops/206903", "https://data.delijn.be/stops/207260"], ["https://data.delijn.be/stops/104778", "https://data.delijn.be/stops/108159"], ["https://data.delijn.be/stops/303742", "https://data.delijn.be/stops/303788"], ["https://data.delijn.be/stops/301428", "https://data.delijn.be/stops/307320"], ["https://data.delijn.be/stops/102931", "https://data.delijn.be/stops/103135"], ["https://data.delijn.be/stops/308443", "https://data.delijn.be/stops/308535"], ["https://data.delijn.be/stops/409290", "https://data.delijn.be/stops/409291"], ["https://data.delijn.be/stops/505948", "https://data.delijn.be/stops/508301"], ["https://data.delijn.be/stops/206537", "https://data.delijn.be/stops/209742"], ["https://data.delijn.be/stops/503386", "https://data.delijn.be/stops/509772"], ["https://data.delijn.be/stops/208140", "https://data.delijn.be/stops/209141"], ["https://data.delijn.be/stops/208011", "https://data.delijn.be/stops/209008"], ["https://data.delijn.be/stops/505353", "https://data.delijn.be/stops/507297"], ["https://data.delijn.be/stops/506047", "https://data.delijn.be/stops/507728"], ["https://data.delijn.be/stops/501385", "https://data.delijn.be/stops/501392"], ["https://data.delijn.be/stops/204037", "https://data.delijn.be/stops/205247"], ["https://data.delijn.be/stops/203739", "https://data.delijn.be/stops/206431"], ["https://data.delijn.be/stops/101586", "https://data.delijn.be/stops/104099"], ["https://data.delijn.be/stops/504498", "https://data.delijn.be/stops/509501"], ["https://data.delijn.be/stops/301517", "https://data.delijn.be/stops/308076"], ["https://data.delijn.be/stops/206830", "https://data.delijn.be/stops/206997"], ["https://data.delijn.be/stops/109004", "https://data.delijn.be/stops/109006"], ["https://data.delijn.be/stops/406978", "https://data.delijn.be/stops/409478"], ["https://data.delijn.be/stops/107174", "https://data.delijn.be/stops/107736"], ["https://data.delijn.be/stops/103319", "https://data.delijn.be/stops/103620"], ["https://data.delijn.be/stops/302425", "https://data.delijn.be/stops/302428"], ["https://data.delijn.be/stops/301345", "https://data.delijn.be/stops/304683"], ["https://data.delijn.be/stops/104958", "https://data.delijn.be/stops/108380"], ["https://data.delijn.be/stops/405177", "https://data.delijn.be/stops/405204"], ["https://data.delijn.be/stops/504703", "https://data.delijn.be/stops/505302"], ["https://data.delijn.be/stops/206383", "https://data.delijn.be/stops/207383"], ["https://data.delijn.be/stops/101187", "https://data.delijn.be/stops/104982"], ["https://data.delijn.be/stops/102691", "https://data.delijn.be/stops/104175"], ["https://data.delijn.be/stops/408838", "https://data.delijn.be/stops/408843"], ["https://data.delijn.be/stops/300165", "https://data.delijn.be/stops/300166"], ["https://data.delijn.be/stops/101857", "https://data.delijn.be/stops/106034"], ["https://data.delijn.be/stops/204987", "https://data.delijn.be/stops/209257"], ["https://data.delijn.be/stops/502477", "https://data.delijn.be/stops/507477"], ["https://data.delijn.be/stops/403990", "https://data.delijn.be/stops/407067"], ["https://data.delijn.be/stops/206005", "https://data.delijn.be/stops/206006"], ["https://data.delijn.be/stops/207789", "https://data.delijn.be/stops/209373"], ["https://data.delijn.be/stops/201779", "https://data.delijn.be/stops/208249"], ["https://data.delijn.be/stops/301671", "https://data.delijn.be/stops/301672"], ["https://data.delijn.be/stops/105113", "https://data.delijn.be/stops/105151"], ["https://data.delijn.be/stops/107186", "https://data.delijn.be/stops/107189"], ["https://data.delijn.be/stops/108088", "https://data.delijn.be/stops/108689"], ["https://data.delijn.be/stops/403427", "https://data.delijn.be/stops/410289"], ["https://data.delijn.be/stops/200133", "https://data.delijn.be/stops/201133"], ["https://data.delijn.be/stops/402201", "https://data.delijn.be/stops/402317"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/106620"], ["https://data.delijn.be/stops/302325", "https://data.delijn.be/stops/302958"], ["https://data.delijn.be/stops/305412", "https://data.delijn.be/stops/305925"], ["https://data.delijn.be/stops/101488", "https://data.delijn.be/stops/108748"], ["https://data.delijn.be/stops/300767", "https://data.delijn.be/stops/301071"], ["https://data.delijn.be/stops/204377", "https://data.delijn.be/stops/204798"], ["https://data.delijn.be/stops/104479", "https://data.delijn.be/stops/308607"], ["https://data.delijn.be/stops/503669", "https://data.delijn.be/stops/508664"], ["https://data.delijn.be/stops/406050", "https://data.delijn.be/stops/406051"], ["https://data.delijn.be/stops/502307", "https://data.delijn.be/stops/507307"], ["https://data.delijn.be/stops/303509", "https://data.delijn.be/stops/303510"], ["https://data.delijn.be/stops/503873", "https://data.delijn.be/stops/509756"], ["https://data.delijn.be/stops/202905", "https://data.delijn.be/stops/202907"], ["https://data.delijn.be/stops/200912", "https://data.delijn.be/stops/203690"], ["https://data.delijn.be/stops/200932", "https://data.delijn.be/stops/203255"], ["https://data.delijn.be/stops/407682", "https://data.delijn.be/stops/407683"], ["https://data.delijn.be/stops/208251", "https://data.delijn.be/stops/209251"], ["https://data.delijn.be/stops/507393", "https://data.delijn.be/stops/507909"], ["https://data.delijn.be/stops/504199", "https://data.delijn.be/stops/504720"], ["https://data.delijn.be/stops/305200", "https://data.delijn.be/stops/305217"], ["https://data.delijn.be/stops/200819", "https://data.delijn.be/stops/202301"], ["https://data.delijn.be/stops/403463", "https://data.delijn.be/stops/410012"], ["https://data.delijn.be/stops/102751", "https://data.delijn.be/stops/103290"], ["https://data.delijn.be/stops/408096", "https://data.delijn.be/stops/408098"], ["https://data.delijn.be/stops/204052", "https://data.delijn.be/stops/205054"], ["https://data.delijn.be/stops/306645", "https://data.delijn.be/stops/306646"], ["https://data.delijn.be/stops/106006", "https://data.delijn.be/stops/107909"], ["https://data.delijn.be/stops/501486", "https://data.delijn.be/stops/506139"], ["https://data.delijn.be/stops/105464", "https://data.delijn.be/stops/105667"], ["https://data.delijn.be/stops/304677", "https://data.delijn.be/stops/304683"], ["https://data.delijn.be/stops/307397", "https://data.delijn.be/stops/307420"], ["https://data.delijn.be/stops/407291", "https://data.delijn.be/stops/407295"], ["https://data.delijn.be/stops/501697", "https://data.delijn.be/stops/502012"], ["https://data.delijn.be/stops/306369", "https://data.delijn.be/stops/306370"], ["https://data.delijn.be/stops/300234", "https://data.delijn.be/stops/300236"], ["https://data.delijn.be/stops/403375", "https://data.delijn.be/stops/403560"], ["https://data.delijn.be/stops/305681", "https://data.delijn.be/stops/305701"], ["https://data.delijn.be/stops/102764", "https://data.delijn.be/stops/107398"], ["https://data.delijn.be/stops/507210", "https://data.delijn.be/stops/507235"], ["https://data.delijn.be/stops/301469", "https://data.delijn.be/stops/301485"], ["https://data.delijn.be/stops/205439", "https://data.delijn.be/stops/505602"], ["https://data.delijn.be/stops/103676", "https://data.delijn.be/stops/106218"], ["https://data.delijn.be/stops/109838", "https://data.delijn.be/stops/109930"], ["https://data.delijn.be/stops/101969", "https://data.delijn.be/stops/109300"], ["https://data.delijn.be/stops/101974", "https://data.delijn.be/stops/307364"], ["https://data.delijn.be/stops/408956", "https://data.delijn.be/stops/408957"], ["https://data.delijn.be/stops/302928", "https://data.delijn.be/stops/302929"], ["https://data.delijn.be/stops/302681", "https://data.delijn.be/stops/308926"], ["https://data.delijn.be/stops/302362", "https://data.delijn.be/stops/302363"], ["https://data.delijn.be/stops/307395", "https://data.delijn.be/stops/307397"], ["https://data.delijn.be/stops/206915", "https://data.delijn.be/stops/207738"], ["https://data.delijn.be/stops/400517", "https://data.delijn.be/stops/404051"], ["https://data.delijn.be/stops/304150", "https://data.delijn.be/stops/304151"], ["https://data.delijn.be/stops/305231", "https://data.delijn.be/stops/305255"], ["https://data.delijn.be/stops/407150", "https://data.delijn.be/stops/409502"], ["https://data.delijn.be/stops/401484", "https://data.delijn.be/stops/401495"], ["https://data.delijn.be/stops/108331", "https://data.delijn.be/stops/109331"], ["https://data.delijn.be/stops/504167", "https://data.delijn.be/stops/504475"], ["https://data.delijn.be/stops/406285", "https://data.delijn.be/stops/410354"], ["https://data.delijn.be/stops/206422", "https://data.delijn.be/stops/206965"], ["https://data.delijn.be/stops/202743", "https://data.delijn.be/stops/202866"], ["https://data.delijn.be/stops/502260", "https://data.delijn.be/stops/507264"], ["https://data.delijn.be/stops/200524", "https://data.delijn.be/stops/201595"], ["https://data.delijn.be/stops/508128", "https://data.delijn.be/stops/508129"], ["https://data.delijn.be/stops/306950", "https://data.delijn.be/stops/306951"], ["https://data.delijn.be/stops/502470", "https://data.delijn.be/stops/502475"], ["https://data.delijn.be/stops/200880", "https://data.delijn.be/stops/203061"], ["https://data.delijn.be/stops/305250", "https://data.delijn.be/stops/305255"], ["https://data.delijn.be/stops/201929", "https://data.delijn.be/stops/203473"], ["https://data.delijn.be/stops/101645", "https://data.delijn.be/stops/105515"], ["https://data.delijn.be/stops/303247", "https://data.delijn.be/stops/304860"], ["https://data.delijn.be/stops/102637", "https://data.delijn.be/stops/104921"], ["https://data.delijn.be/stops/508631", "https://data.delijn.be/stops/508633"], ["https://data.delijn.be/stops/204025", "https://data.delijn.be/stops/204026"], ["https://data.delijn.be/stops/209645", "https://data.delijn.be/stops/211041"], ["https://data.delijn.be/stops/108524", "https://data.delijn.be/stops/108526"], ["https://data.delijn.be/stops/106943", "https://data.delijn.be/stops/106944"], ["https://data.delijn.be/stops/305967", "https://data.delijn.be/stops/307330"], ["https://data.delijn.be/stops/304302", "https://data.delijn.be/stops/304351"], ["https://data.delijn.be/stops/305726", "https://data.delijn.be/stops/308131"], ["https://data.delijn.be/stops/509357", "https://data.delijn.be/stops/509586"], ["https://data.delijn.be/stops/407918", "https://data.delijn.be/stops/407921"], ["https://data.delijn.be/stops/106382", "https://data.delijn.be/stops/108058"], ["https://data.delijn.be/stops/307718", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/508725", "https://data.delijn.be/stops/509364"], ["https://data.delijn.be/stops/507224", "https://data.delijn.be/stops/507561"], ["https://data.delijn.be/stops/104020", "https://data.delijn.be/stops/105680"], ["https://data.delijn.be/stops/401394", "https://data.delijn.be/stops/401396"], ["https://data.delijn.be/stops/303490", "https://data.delijn.be/stops/303491"], ["https://data.delijn.be/stops/404162", "https://data.delijn.be/stops/404163"], ["https://data.delijn.be/stops/506204", "https://data.delijn.be/stops/506286"], ["https://data.delijn.be/stops/104004", "https://data.delijn.be/stops/107835"], ["https://data.delijn.be/stops/103648", "https://data.delijn.be/stops/107733"], ["https://data.delijn.be/stops/104131", "https://data.delijn.be/stops/108432"], ["https://data.delijn.be/stops/206968", "https://data.delijn.be/stops/208835"], ["https://data.delijn.be/stops/300791", "https://data.delijn.be/stops/301010"], ["https://data.delijn.be/stops/107404", "https://data.delijn.be/stops/107407"], ["https://data.delijn.be/stops/102642", "https://data.delijn.be/stops/205447"], ["https://data.delijn.be/stops/109177", "https://data.delijn.be/stops/109230"], ["https://data.delijn.be/stops/504545", "https://data.delijn.be/stops/509545"], ["https://data.delijn.be/stops/306097", "https://data.delijn.be/stops/306100"], ["https://data.delijn.be/stops/102900", "https://data.delijn.be/stops/103995"], ["https://data.delijn.be/stops/204187", "https://data.delijn.be/stops/205187"], ["https://data.delijn.be/stops/504257", "https://data.delijn.be/stops/504707"], ["https://data.delijn.be/stops/400575", "https://data.delijn.be/stops/400581"], ["https://data.delijn.be/stops/304823", "https://data.delijn.be/stops/304895"], ["https://data.delijn.be/stops/106022", "https://data.delijn.be/stops/106024"], ["https://data.delijn.be/stops/204160", "https://data.delijn.be/stops/204593"], ["https://data.delijn.be/stops/102123", "https://data.delijn.be/stops/109576"], ["https://data.delijn.be/stops/508309", "https://data.delijn.be/stops/509908"], ["https://data.delijn.be/stops/408855", "https://data.delijn.be/stops/408861"], ["https://data.delijn.be/stops/401187", "https://data.delijn.be/stops/401355"], ["https://data.delijn.be/stops/400705", "https://data.delijn.be/stops/404376"], ["https://data.delijn.be/stops/502436", "https://data.delijn.be/stops/507425"], ["https://data.delijn.be/stops/105874", "https://data.delijn.be/stops/105877"], ["https://data.delijn.be/stops/505607", "https://data.delijn.be/stops/505611"], ["https://data.delijn.be/stops/105133", "https://data.delijn.be/stops/108804"], ["https://data.delijn.be/stops/307151", "https://data.delijn.be/stops/307159"], ["https://data.delijn.be/stops/104600", "https://data.delijn.be/stops/105070"], ["https://data.delijn.be/stops/107016", "https://data.delijn.be/stops/107111"], ["https://data.delijn.be/stops/303016", "https://data.delijn.be/stops/306280"], ["https://data.delijn.be/stops/400780", "https://data.delijn.be/stops/409664"], ["https://data.delijn.be/stops/106681", "https://data.delijn.be/stops/106682"], ["https://data.delijn.be/stops/305968", "https://data.delijn.be/stops/306325"], ["https://data.delijn.be/stops/204061", "https://data.delijn.be/stops/205711"], ["https://data.delijn.be/stops/307646", "https://data.delijn.be/stops/307690"], ["https://data.delijn.be/stops/206693", "https://data.delijn.be/stops/207693"], ["https://data.delijn.be/stops/508759", "https://data.delijn.be/stops/508762"], ["https://data.delijn.be/stops/102881", "https://data.delijn.be/stops/108153"], ["https://data.delijn.be/stops/209474", "https://data.delijn.be/stops/209669"], ["https://data.delijn.be/stops/104847", "https://data.delijn.be/stops/106792"], ["https://data.delijn.be/stops/301532", "https://data.delijn.be/stops/308088"], ["https://data.delijn.be/stops/303288", "https://data.delijn.be/stops/303303"], ["https://data.delijn.be/stops/106420", "https://data.delijn.be/stops/106512"], ["https://data.delijn.be/stops/402409", "https://data.delijn.be/stops/406929"], ["https://data.delijn.be/stops/306704", "https://data.delijn.be/stops/307937"], ["https://data.delijn.be/stops/505841", "https://data.delijn.be/stops/509349"], ["https://data.delijn.be/stops/203996", "https://data.delijn.be/stops/206788"], ["https://data.delijn.be/stops/507013", "https://data.delijn.be/stops/507024"], ["https://data.delijn.be/stops/200532", "https://data.delijn.be/stops/201532"], ["https://data.delijn.be/stops/505393", "https://data.delijn.be/stops/505956"], ["https://data.delijn.be/stops/400472", "https://data.delijn.be/stops/404669"], ["https://data.delijn.be/stops/303418", "https://data.delijn.be/stops/306948"], ["https://data.delijn.be/stops/200453", "https://data.delijn.be/stops/209266"], ["https://data.delijn.be/stops/205363", "https://data.delijn.be/stops/205685"], ["https://data.delijn.be/stops/203179", "https://data.delijn.be/stops/209867"], ["https://data.delijn.be/stops/306721", "https://data.delijn.be/stops/306723"], ["https://data.delijn.be/stops/304669", "https://data.delijn.be/stops/304671"], ["https://data.delijn.be/stops/505942", "https://data.delijn.be/stops/508050"], ["https://data.delijn.be/stops/208346", "https://data.delijn.be/stops/208786"], ["https://data.delijn.be/stops/400985", "https://data.delijn.be/stops/405612"], ["https://data.delijn.be/stops/406168", "https://data.delijn.be/stops/406281"], ["https://data.delijn.be/stops/400207", "https://data.delijn.be/stops/400238"], ["https://data.delijn.be/stops/409382", "https://data.delijn.be/stops/409392"], ["https://data.delijn.be/stops/401771", "https://data.delijn.be/stops/401834"], ["https://data.delijn.be/stops/200826", "https://data.delijn.be/stops/200862"], ["https://data.delijn.be/stops/404212", "https://data.delijn.be/stops/405547"], ["https://data.delijn.be/stops/407926", "https://data.delijn.be/stops/407927"], ["https://data.delijn.be/stops/206158", "https://data.delijn.be/stops/206159"], ["https://data.delijn.be/stops/301978", "https://data.delijn.be/stops/307279"], ["https://data.delijn.be/stops/503138", "https://data.delijn.be/stops/508138"], ["https://data.delijn.be/stops/204069", "https://data.delijn.be/stops/204386"], ["https://data.delijn.be/stops/208611", "https://data.delijn.be/stops/209548"], ["https://data.delijn.be/stops/200109", "https://data.delijn.be/stops/201109"], ["https://data.delijn.be/stops/207168", "https://data.delijn.be/stops/303793"], ["https://data.delijn.be/stops/505640", "https://data.delijn.be/stops/505778"], ["https://data.delijn.be/stops/202770", "https://data.delijn.be/stops/203770"], ["https://data.delijn.be/stops/507524", "https://data.delijn.be/stops/507708"], ["https://data.delijn.be/stops/102019", "https://data.delijn.be/stops/104092"], ["https://data.delijn.be/stops/304583", "https://data.delijn.be/stops/304591"], ["https://data.delijn.be/stops/410142", "https://data.delijn.be/stops/410143"], ["https://data.delijn.be/stops/201950", "https://data.delijn.be/stops/203466"], ["https://data.delijn.be/stops/502546", "https://data.delijn.be/stops/507546"], ["https://data.delijn.be/stops/300095", "https://data.delijn.be/stops/305992"], ["https://data.delijn.be/stops/403055", "https://data.delijn.be/stops/410324"], ["https://data.delijn.be/stops/103046", "https://data.delijn.be/stops/103047"], ["https://data.delijn.be/stops/303020", "https://data.delijn.be/stops/303108"], ["https://data.delijn.be/stops/104049", "https://data.delijn.be/stops/107485"], ["https://data.delijn.be/stops/308727", "https://data.delijn.be/stops/308731"], ["https://data.delijn.be/stops/102949", "https://data.delijn.be/stops/107387"], ["https://data.delijn.be/stops/200240", "https://data.delijn.be/stops/201592"], ["https://data.delijn.be/stops/402534", "https://data.delijn.be/stops/410022"], ["https://data.delijn.be/stops/109241", "https://data.delijn.be/stops/109242"], ["https://data.delijn.be/stops/203586", "https://data.delijn.be/stops/210112"], ["https://data.delijn.be/stops/105501", "https://data.delijn.be/stops/105689"], ["https://data.delijn.be/stops/300471", "https://data.delijn.be/stops/308081"], ["https://data.delijn.be/stops/408148", "https://data.delijn.be/stops/408149"], ["https://data.delijn.be/stops/208132", "https://data.delijn.be/stops/208133"], ["https://data.delijn.be/stops/108969", "https://data.delijn.be/stops/401936"], ["https://data.delijn.be/stops/502599", "https://data.delijn.be/stops/505726"], ["https://data.delijn.be/stops/502022", "https://data.delijn.be/stops/502913"], ["https://data.delijn.be/stops/403038", "https://data.delijn.be/stops/403256"], ["https://data.delijn.be/stops/302381", "https://data.delijn.be/stops/302382"], ["https://data.delijn.be/stops/400602", "https://data.delijn.be/stops/405998"], ["https://data.delijn.be/stops/208502", "https://data.delijn.be/stops/208503"], ["https://data.delijn.be/stops/104703", "https://data.delijn.be/stops/107088"], ["https://data.delijn.be/stops/107594", "https://data.delijn.be/stops/107722"], ["https://data.delijn.be/stops/407095", "https://data.delijn.be/stops/409427"], ["https://data.delijn.be/stops/404347", "https://data.delijn.be/stops/404348"], ["https://data.delijn.be/stops/504234", "https://data.delijn.be/stops/509234"], ["https://data.delijn.be/stops/202528", "https://data.delijn.be/stops/203528"], ["https://data.delijn.be/stops/302175", "https://data.delijn.be/stops/302183"], ["https://data.delijn.be/stops/204348", "https://data.delijn.be/stops/205348"], ["https://data.delijn.be/stops/205990", "https://data.delijn.be/stops/208782"], ["https://data.delijn.be/stops/302801", "https://data.delijn.be/stops/307837"], ["https://data.delijn.be/stops/305594", "https://data.delijn.be/stops/306344"], ["https://data.delijn.be/stops/102742", "https://data.delijn.be/stops/107403"], ["https://data.delijn.be/stops/103501", "https://data.delijn.be/stops/109143"], ["https://data.delijn.be/stops/300139", "https://data.delijn.be/stops/300146"], ["https://data.delijn.be/stops/401500", "https://data.delijn.be/stops/401710"], ["https://data.delijn.be/stops/404336", "https://data.delijn.be/stops/404337"], ["https://data.delijn.be/stops/509230", "https://data.delijn.be/stops/509231"], ["https://data.delijn.be/stops/300401", "https://data.delijn.be/stops/300406"], ["https://data.delijn.be/stops/300190", "https://data.delijn.be/stops/302127"], ["https://data.delijn.be/stops/206342", "https://data.delijn.be/stops/206343"], ["https://data.delijn.be/stops/207752", "https://data.delijn.be/stops/207753"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/302927"], ["https://data.delijn.be/stops/406658", "https://data.delijn.be/stops/406692"], ["https://data.delijn.be/stops/108294", "https://data.delijn.be/stops/108302"], ["https://data.delijn.be/stops/301727", "https://data.delijn.be/stops/301734"], ["https://data.delijn.be/stops/400773", "https://data.delijn.be/stops/405269"], ["https://data.delijn.be/stops/207758", "https://data.delijn.be/stops/207759"], ["https://data.delijn.be/stops/200809", "https://data.delijn.be/stops/200884"], ["https://data.delijn.be/stops/104034", "https://data.delijn.be/stops/105083"], ["https://data.delijn.be/stops/305706", "https://data.delijn.be/stops/307926"], ["https://data.delijn.be/stops/408323", "https://data.delijn.be/stops/408333"], ["https://data.delijn.be/stops/303584", "https://data.delijn.be/stops/306383"], ["https://data.delijn.be/stops/402101", "https://data.delijn.be/stops/402335"], ["https://data.delijn.be/stops/401104", "https://data.delijn.be/stops/401110"], ["https://data.delijn.be/stops/202880", "https://data.delijn.be/stops/209534"], ["https://data.delijn.be/stops/505222", "https://data.delijn.be/stops/505345"], ["https://data.delijn.be/stops/205578", "https://data.delijn.be/stops/207276"], ["https://data.delijn.be/stops/503554", "https://data.delijn.be/stops/508584"], ["https://data.delijn.be/stops/502262", "https://data.delijn.be/stops/507351"], ["https://data.delijn.be/stops/402167", "https://data.delijn.be/stops/406870"], ["https://data.delijn.be/stops/108819", "https://data.delijn.be/stops/108822"], ["https://data.delijn.be/stops/303162", "https://data.delijn.be/stops/303168"], ["https://data.delijn.be/stops/504879", "https://data.delijn.be/stops/505017"], ["https://data.delijn.be/stops/405302", "https://data.delijn.be/stops/405304"], ["https://data.delijn.be/stops/400776", "https://data.delijn.be/stops/404558"], ["https://data.delijn.be/stops/200301", "https://data.delijn.be/stops/201261"], ["https://data.delijn.be/stops/203583", "https://data.delijn.be/stops/215003"], ["https://data.delijn.be/stops/304569", "https://data.delijn.be/stops/304570"], ["https://data.delijn.be/stops/101590", "https://data.delijn.be/stops/102600"], ["https://data.delijn.be/stops/504362", "https://data.delijn.be/stops/505139"], ["https://data.delijn.be/stops/404445", "https://data.delijn.be/stops/404456"], ["https://data.delijn.be/stops/505953", "https://data.delijn.be/stops/506000"], ["https://data.delijn.be/stops/501397", "https://data.delijn.be/stops/501403"], ["https://data.delijn.be/stops/400604", "https://data.delijn.be/stops/400620"], ["https://data.delijn.be/stops/206840", "https://data.delijn.be/stops/207587"], ["https://data.delijn.be/stops/406632", "https://data.delijn.be/stops/406645"], ["https://data.delijn.be/stops/103013", "https://data.delijn.be/stops/109021"], ["https://data.delijn.be/stops/400110", "https://data.delijn.be/stops/400172"], ["https://data.delijn.be/stops/407141", "https://data.delijn.be/stops/407325"], ["https://data.delijn.be/stops/304112", "https://data.delijn.be/stops/306278"], ["https://data.delijn.be/stops/404157", "https://data.delijn.be/stops/404282"], ["https://data.delijn.be/stops/504713", "https://data.delijn.be/stops/508282"], ["https://data.delijn.be/stops/207754", "https://data.delijn.be/stops/207796"], ["https://data.delijn.be/stops/404568", "https://data.delijn.be/stops/404569"], ["https://data.delijn.be/stops/303957", "https://data.delijn.be/stops/303958"], ["https://data.delijn.be/stops/109280", "https://data.delijn.be/stops/109736"], ["https://data.delijn.be/stops/204519", "https://data.delijn.be/stops/204521"], ["https://data.delijn.be/stops/107889", "https://data.delijn.be/stops/107893"], ["https://data.delijn.be/stops/503088", "https://data.delijn.be/stops/508088"], ["https://data.delijn.be/stops/303676", "https://data.delijn.be/stops/306311"], ["https://data.delijn.be/stops/102067", "https://data.delijn.be/stops/102069"], ["https://data.delijn.be/stops/303779", "https://data.delijn.be/stops/303781"], ["https://data.delijn.be/stops/201583", "https://data.delijn.be/stops/201585"], ["https://data.delijn.be/stops/504719", "https://data.delijn.be/stops/508108"], ["https://data.delijn.be/stops/304550", "https://data.delijn.be/stops/304605"], ["https://data.delijn.be/stops/403902", "https://data.delijn.be/stops/403905"], ["https://data.delijn.be/stops/108503", "https://data.delijn.be/stops/108504"], ["https://data.delijn.be/stops/503760", "https://data.delijn.be/stops/503763"], ["https://data.delijn.be/stops/106052", "https://data.delijn.be/stops/106053"], ["https://data.delijn.be/stops/503079", "https://data.delijn.be/stops/503611"], ["https://data.delijn.be/stops/301983", "https://data.delijn.be/stops/304155"], ["https://data.delijn.be/stops/206144", "https://data.delijn.be/stops/207145"], ["https://data.delijn.be/stops/503184", "https://data.delijn.be/stops/503815"], ["https://data.delijn.be/stops/108648", "https://data.delijn.be/stops/304339"], ["https://data.delijn.be/stops/504260", "https://data.delijn.be/stops/508549"], ["https://data.delijn.be/stops/306626", "https://data.delijn.be/stops/308462"], ["https://data.delijn.be/stops/501447", "https://data.delijn.be/stops/501451"], ["https://data.delijn.be/stops/502383", "https://data.delijn.be/stops/502621"], ["https://data.delijn.be/stops/200690", "https://data.delijn.be/stops/200696"], ["https://data.delijn.be/stops/401818", "https://data.delijn.be/stops/401820"], ["https://data.delijn.be/stops/400762", "https://data.delijn.be/stops/409662"], ["https://data.delijn.be/stops/101995", "https://data.delijn.be/stops/105155"], ["https://data.delijn.be/stops/106414", "https://data.delijn.be/stops/106417"], ["https://data.delijn.be/stops/400328", "https://data.delijn.be/stops/400330"], ["https://data.delijn.be/stops/301310", "https://data.delijn.be/stops/306200"], ["https://data.delijn.be/stops/300734", "https://data.delijn.be/stops/307058"], ["https://data.delijn.be/stops/204139", "https://data.delijn.be/stops/205238"], ["https://data.delijn.be/stops/103056", "https://data.delijn.be/stops/107181"], ["https://data.delijn.be/stops/200795", "https://data.delijn.be/stops/203323"], ["https://data.delijn.be/stops/201661", "https://data.delijn.be/stops/205997"], ["https://data.delijn.be/stops/406521", "https://data.delijn.be/stops/406541"], ["https://data.delijn.be/stops/301722", "https://data.delijn.be/stops/301744"], ["https://data.delijn.be/stops/203843", "https://data.delijn.be/stops/208425"], ["https://data.delijn.be/stops/502796", "https://data.delijn.be/stops/508340"], ["https://data.delijn.be/stops/104036", "https://data.delijn.be/stops/108084"], ["https://data.delijn.be/stops/303413", "https://data.delijn.be/stops/303414"], ["https://data.delijn.be/stops/504497", "https://data.delijn.be/stops/509497"], ["https://data.delijn.be/stops/500002", "https://data.delijn.be/stops/508669"], ["https://data.delijn.be/stops/104606", "https://data.delijn.be/stops/107372"], ["https://data.delijn.be/stops/300087", "https://data.delijn.be/stops/300098"], ["https://data.delijn.be/stops/108019", "https://data.delijn.be/stops/108023"], ["https://data.delijn.be/stops/504640", "https://data.delijn.be/stops/509639"], ["https://data.delijn.be/stops/208619", "https://data.delijn.be/stops/209697"], ["https://data.delijn.be/stops/502434", "https://data.delijn.be/stops/507434"], ["https://data.delijn.be/stops/206319", "https://data.delijn.be/stops/207918"], ["https://data.delijn.be/stops/109209", "https://data.delijn.be/stops/109225"], ["https://data.delijn.be/stops/204061", "https://data.delijn.be/stops/204322"], ["https://data.delijn.be/stops/207369", "https://data.delijn.be/stops/207954"], ["https://data.delijn.be/stops/200802", "https://data.delijn.be/stops/505417"], ["https://data.delijn.be/stops/106849", "https://data.delijn.be/stops/106851"], ["https://data.delijn.be/stops/206662", "https://data.delijn.be/stops/207662"], ["https://data.delijn.be/stops/205334", "https://data.delijn.be/stops/205514"], ["https://data.delijn.be/stops/204097", "https://data.delijn.be/stops/204243"], ["https://data.delijn.be/stops/401162", "https://data.delijn.be/stops/401164"], ["https://data.delijn.be/stops/202617", "https://data.delijn.be/stops/203596"], ["https://data.delijn.be/stops/102064", "https://data.delijn.be/stops/106942"], ["https://data.delijn.be/stops/505260", "https://data.delijn.be/stops/508219"], ["https://data.delijn.be/stops/503686", "https://data.delijn.be/stops/504453"], ["https://data.delijn.be/stops/506781", "https://data.delijn.be/stops/509933"], ["https://data.delijn.be/stops/302206", "https://data.delijn.be/stops/305092"], ["https://data.delijn.be/stops/200286", "https://data.delijn.be/stops/200343"], ["https://data.delijn.be/stops/107176", "https://data.delijn.be/stops/107178"], ["https://data.delijn.be/stops/206261", "https://data.delijn.be/stops/206917"], ["https://data.delijn.be/stops/206844", "https://data.delijn.be/stops/207844"], ["https://data.delijn.be/stops/105734", "https://data.delijn.be/stops/105736"], ["https://data.delijn.be/stops/401212", "https://data.delijn.be/stops/401259"], ["https://data.delijn.be/stops/504027", "https://data.delijn.be/stops/509487"], ["https://data.delijn.be/stops/402359", "https://data.delijn.be/stops/402364"], ["https://data.delijn.be/stops/307964", "https://data.delijn.be/stops/307967"], ["https://data.delijn.be/stops/103263", "https://data.delijn.be/stops/205446"], ["https://data.delijn.be/stops/408284", "https://data.delijn.be/stops/408343"], ["https://data.delijn.be/stops/406207", "https://data.delijn.be/stops/406446"], ["https://data.delijn.be/stops/407649", "https://data.delijn.be/stops/409772"], ["https://data.delijn.be/stops/201088", "https://data.delijn.be/stops/203957"], ["https://data.delijn.be/stops/504262", "https://data.delijn.be/stops/505363"], ["https://data.delijn.be/stops/303115", "https://data.delijn.be/stops/306706"], ["https://data.delijn.be/stops/402595", "https://data.delijn.be/stops/403861"], ["https://data.delijn.be/stops/303841", "https://data.delijn.be/stops/303867"], ["https://data.delijn.be/stops/302254", "https://data.delijn.be/stops/306369"], ["https://data.delijn.be/stops/404833", "https://data.delijn.be/stops/406094"], ["https://data.delijn.be/stops/307357", "https://data.delijn.be/stops/307360"], ["https://data.delijn.be/stops/403720", "https://data.delijn.be/stops/405151"], ["https://data.delijn.be/stops/108472", "https://data.delijn.be/stops/109899"], ["https://data.delijn.be/stops/203042", "https://data.delijn.be/stops/203245"], ["https://data.delijn.be/stops/208549", "https://data.delijn.be/stops/208558"], ["https://data.delijn.be/stops/400886", "https://data.delijn.be/stops/400887"], ["https://data.delijn.be/stops/406148", "https://data.delijn.be/stops/406807"], ["https://data.delijn.be/stops/206523", "https://data.delijn.be/stops/207002"], ["https://data.delijn.be/stops/105272", "https://data.delijn.be/stops/105293"], ["https://data.delijn.be/stops/402778", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/407874", "https://data.delijn.be/stops/408139"], ["https://data.delijn.be/stops/104379", "https://data.delijn.be/stops/204258"], ["https://data.delijn.be/stops/204350", "https://data.delijn.be/stops/205115"], ["https://data.delijn.be/stops/303042", "https://data.delijn.be/stops/308719"], ["https://data.delijn.be/stops/504197", "https://data.delijn.be/stops/509969"], ["https://data.delijn.be/stops/200607", "https://data.delijn.be/stops/201457"], ["https://data.delijn.be/stops/403059", "https://data.delijn.be/stops/403397"], ["https://data.delijn.be/stops/308195", "https://data.delijn.be/stops/308204"], ["https://data.delijn.be/stops/303332", "https://data.delijn.be/stops/303345"], ["https://data.delijn.be/stops/201630", "https://data.delijn.be/stops/203935"], ["https://data.delijn.be/stops/403598", "https://data.delijn.be/stops/403617"], ["https://data.delijn.be/stops/204314", "https://data.delijn.be/stops/204677"], ["https://data.delijn.be/stops/102907", "https://data.delijn.be/stops/105868"], ["https://data.delijn.be/stops/202478", "https://data.delijn.be/stops/203478"], ["https://data.delijn.be/stops/405794", "https://data.delijn.be/stops/405883"], ["https://data.delijn.be/stops/104481", "https://data.delijn.be/stops/307899"], ["https://data.delijn.be/stops/400390", "https://data.delijn.be/stops/406469"], ["https://data.delijn.be/stops/502054", "https://data.delijn.be/stops/507441"], ["https://data.delijn.be/stops/503415", "https://data.delijn.be/stops/508409"], ["https://data.delijn.be/stops/200394", "https://data.delijn.be/stops/205804"], ["https://data.delijn.be/stops/303629", "https://data.delijn.be/stops/304205"], ["https://data.delijn.be/stops/303022", "https://data.delijn.be/stops/303089"], ["https://data.delijn.be/stops/204095", "https://data.delijn.be/stops/205095"], ["https://data.delijn.be/stops/503520", "https://data.delijn.be/stops/508572"], ["https://data.delijn.be/stops/200309", "https://data.delijn.be/stops/201310"], ["https://data.delijn.be/stops/200618", "https://data.delijn.be/stops/201286"], ["https://data.delijn.be/stops/208589", "https://data.delijn.be/stops/209588"], ["https://data.delijn.be/stops/307282", "https://data.delijn.be/stops/307283"], ["https://data.delijn.be/stops/108901", "https://data.delijn.be/stops/108903"], ["https://data.delijn.be/stops/305082", "https://data.delijn.be/stops/305186"], ["https://data.delijn.be/stops/404244", "https://data.delijn.be/stops/405653"], ["https://data.delijn.be/stops/101884", "https://data.delijn.be/stops/104561"], ["https://data.delijn.be/stops/401550", "https://data.delijn.be/stops/401551"], ["https://data.delijn.be/stops/304465", "https://data.delijn.be/stops/304468"], ["https://data.delijn.be/stops/506357", "https://data.delijn.be/stops/506742"], ["https://data.delijn.be/stops/204308", "https://data.delijn.be/stops/205309"], ["https://data.delijn.be/stops/503596", "https://data.delijn.be/stops/505806"], ["https://data.delijn.be/stops/105721", "https://data.delijn.be/stops/105722"], ["https://data.delijn.be/stops/503052", "https://data.delijn.be/stops/505899"], ["https://data.delijn.be/stops/303485", "https://data.delijn.be/stops/303517"], ["https://data.delijn.be/stops/207696", "https://data.delijn.be/stops/303857"], ["https://data.delijn.be/stops/302143", "https://data.delijn.be/stops/307525"], ["https://data.delijn.be/stops/300754", "https://data.delijn.be/stops/300833"], ["https://data.delijn.be/stops/301483", "https://data.delijn.be/stops/301489"], ["https://data.delijn.be/stops/400236", "https://data.delijn.be/stops/400238"], ["https://data.delijn.be/stops/403901", "https://data.delijn.be/stops/403943"], ["https://data.delijn.be/stops/203284", "https://data.delijn.be/stops/208964"], ["https://data.delijn.be/stops/305145", "https://data.delijn.be/stops/307533"], ["https://data.delijn.be/stops/207016", "https://data.delijn.be/stops/207913"], ["https://data.delijn.be/stops/204387", "https://data.delijn.be/stops/204402"], ["https://data.delijn.be/stops/502126", "https://data.delijn.be/stops/507135"], ["https://data.delijn.be/stops/507184", "https://data.delijn.be/stops/507185"], ["https://data.delijn.be/stops/104509", "https://data.delijn.be/stops/207706"], ["https://data.delijn.be/stops/400662", "https://data.delijn.be/stops/402533"], ["https://data.delijn.be/stops/102672", "https://data.delijn.be/stops/109191"], ["https://data.delijn.be/stops/202646", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/406272", "https://data.delijn.be/stops/406350"], ["https://data.delijn.be/stops/206653", "https://data.delijn.be/stops/207654"], ["https://data.delijn.be/stops/202901", "https://data.delijn.be/stops/203904"], ["https://data.delijn.be/stops/200766", "https://data.delijn.be/stops/209318"], ["https://data.delijn.be/stops/404168", "https://data.delijn.be/stops/404184"], ["https://data.delijn.be/stops/502396", "https://data.delijn.be/stops/502413"], ["https://data.delijn.be/stops/407022", "https://data.delijn.be/stops/408429"], ["https://data.delijn.be/stops/401653", "https://data.delijn.be/stops/306327"], ["https://data.delijn.be/stops/301715", "https://data.delijn.be/stops/303466"], ["https://data.delijn.be/stops/202867", "https://data.delijn.be/stops/208713"], ["https://data.delijn.be/stops/203056", "https://data.delijn.be/stops/211104"], ["https://data.delijn.be/stops/202173", "https://data.delijn.be/stops/202495"], ["https://data.delijn.be/stops/508494", "https://data.delijn.be/stops/508498"], ["https://data.delijn.be/stops/300858", "https://data.delijn.be/stops/305439"], ["https://data.delijn.be/stops/403642", "https://data.delijn.be/stops/403643"], ["https://data.delijn.be/stops/507475", "https://data.delijn.be/stops/508005"], ["https://data.delijn.be/stops/200090", "https://data.delijn.be/stops/210126"], ["https://data.delijn.be/stops/501366", "https://data.delijn.be/stops/501448"], ["https://data.delijn.be/stops/200350", "https://data.delijn.be/stops/201350"], ["https://data.delijn.be/stops/404641", "https://data.delijn.be/stops/406966"], ["https://data.delijn.be/stops/300680", "https://data.delijn.be/stops/305965"], ["https://data.delijn.be/stops/300262", "https://data.delijn.be/stops/304945"], ["https://data.delijn.be/stops/302928", "https://data.delijn.be/stops/303997"], ["https://data.delijn.be/stops/300427", "https://data.delijn.be/stops/300428"], ["https://data.delijn.be/stops/306984", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/401216", "https://data.delijn.be/stops/401217"], ["https://data.delijn.be/stops/302667", "https://data.delijn.be/stops/302680"], ["https://data.delijn.be/stops/504011", "https://data.delijn.be/stops/505817"], ["https://data.delijn.be/stops/305067", "https://data.delijn.be/stops/305075"], ["https://data.delijn.be/stops/506300", "https://data.delijn.be/stops/506477"], ["https://data.delijn.be/stops/102686", "https://data.delijn.be/stops/105210"], ["https://data.delijn.be/stops/201376", "https://data.delijn.be/stops/210089"], ["https://data.delijn.be/stops/509222", "https://data.delijn.be/stops/509633"], ["https://data.delijn.be/stops/401503", "https://data.delijn.be/stops/401509"], ["https://data.delijn.be/stops/503683", "https://data.delijn.be/stops/508683"], ["https://data.delijn.be/stops/306002", "https://data.delijn.be/stops/307507"], ["https://data.delijn.be/stops/504157", "https://data.delijn.be/stops/504479"], ["https://data.delijn.be/stops/102936", "https://data.delijn.be/stops/108555"], ["https://data.delijn.be/stops/200737", "https://data.delijn.be/stops/203595"], ["https://data.delijn.be/stops/405164", "https://data.delijn.be/stops/405216"], ["https://data.delijn.be/stops/302310", "https://data.delijn.be/stops/304007"], ["https://data.delijn.be/stops/508605", "https://data.delijn.be/stops/508617"], ["https://data.delijn.be/stops/304169", "https://data.delijn.be/stops/307538"], ["https://data.delijn.be/stops/308461", "https://data.delijn.be/stops/308464"], ["https://data.delijn.be/stops/205286", "https://data.delijn.be/stops/205651"], ["https://data.delijn.be/stops/206582", "https://data.delijn.be/stops/207413"], ["https://data.delijn.be/stops/305195", "https://data.delijn.be/stops/305200"], ["https://data.delijn.be/stops/401136", "https://data.delijn.be/stops/403748"], ["https://data.delijn.be/stops/102852", "https://data.delijn.be/stops/104418"], ["https://data.delijn.be/stops/300316", "https://data.delijn.be/stops/303958"], ["https://data.delijn.be/stops/401749", "https://data.delijn.be/stops/408469"], ["https://data.delijn.be/stops/308594", "https://data.delijn.be/stops/308597"], ["https://data.delijn.be/stops/507716", "https://data.delijn.be/stops/508977"], ["https://data.delijn.be/stops/505265", "https://data.delijn.be/stops/505266"], ["https://data.delijn.be/stops/304891", "https://data.delijn.be/stops/304893"], ["https://data.delijn.be/stops/407574", "https://data.delijn.be/stops/408966"], ["https://data.delijn.be/stops/202915", "https://data.delijn.be/stops/203912"], ["https://data.delijn.be/stops/409572", "https://data.delijn.be/stops/409576"], ["https://data.delijn.be/stops/109000", "https://data.delijn.be/stops/109003"], ["https://data.delijn.be/stops/102898", "https://data.delijn.be/stops/106753"], ["https://data.delijn.be/stops/300105", "https://data.delijn.be/stops/300115"], ["https://data.delijn.be/stops/302857", "https://data.delijn.be/stops/303076"], ["https://data.delijn.be/stops/201166", "https://data.delijn.be/stops/202190"], ["https://data.delijn.be/stops/107085", "https://data.delijn.be/stops/108780"], ["https://data.delijn.be/stops/401753", "https://data.delijn.be/stops/409406"], ["https://data.delijn.be/stops/305023", "https://data.delijn.be/stops/305040"], ["https://data.delijn.be/stops/407014", "https://data.delijn.be/stops/407018"], ["https://data.delijn.be/stops/504566", "https://data.delijn.be/stops/505187"], ["https://data.delijn.be/stops/200235", "https://data.delijn.be/stops/210051"], ["https://data.delijn.be/stops/205393", "https://data.delijn.be/stops/205394"], ["https://data.delijn.be/stops/300589", "https://data.delijn.be/stops/308896"], ["https://data.delijn.be/stops/400503", "https://data.delijn.be/stops/400509"], ["https://data.delijn.be/stops/504168", "https://data.delijn.be/stops/504747"], ["https://data.delijn.be/stops/201667", "https://data.delijn.be/stops/201668"], ["https://data.delijn.be/stops/103001", "https://data.delijn.be/stops/103002"], ["https://data.delijn.be/stops/402302", "https://data.delijn.be/stops/402303"], ["https://data.delijn.be/stops/500563", "https://data.delijn.be/stops/506129"], ["https://data.delijn.be/stops/406166", "https://data.delijn.be/stops/406198"], ["https://data.delijn.be/stops/109492", "https://data.delijn.be/stops/109497"], ["https://data.delijn.be/stops/202022", "https://data.delijn.be/stops/202027"], ["https://data.delijn.be/stops/503364", "https://data.delijn.be/stops/503706"], ["https://data.delijn.be/stops/103090", "https://data.delijn.be/stops/104845"], ["https://data.delijn.be/stops/403186", "https://data.delijn.be/stops/403820"], ["https://data.delijn.be/stops/103299", "https://data.delijn.be/stops/108620"], ["https://data.delijn.be/stops/301663", "https://data.delijn.be/stops/301673"], ["https://data.delijn.be/stops/301346", "https://data.delijn.be/stops/306684"], ["https://data.delijn.be/stops/502673", "https://data.delijn.be/stops/505018"], ["https://data.delijn.be/stops/402891", "https://data.delijn.be/stops/402942"], ["https://data.delijn.be/stops/104668", "https://data.delijn.be/stops/108464"], ["https://data.delijn.be/stops/201537", "https://data.delijn.be/stops/210049"], ["https://data.delijn.be/stops/109380", "https://data.delijn.be/stops/109381"], ["https://data.delijn.be/stops/305036", "https://data.delijn.be/stops/305037"], ["https://data.delijn.be/stops/401019", "https://data.delijn.be/stops/403743"], ["https://data.delijn.be/stops/300453", "https://data.delijn.be/stops/308053"], ["https://data.delijn.be/stops/306765", "https://data.delijn.be/stops/308945"], ["https://data.delijn.be/stops/501449", "https://data.delijn.be/stops/501502"], ["https://data.delijn.be/stops/406187", "https://data.delijn.be/stops/406436"], ["https://data.delijn.be/stops/401852", "https://data.delijn.be/stops/401853"], ["https://data.delijn.be/stops/204081", "https://data.delijn.be/stops/205091"], ["https://data.delijn.be/stops/503572", "https://data.delijn.be/stops/503575"], ["https://data.delijn.be/stops/207223", "https://data.delijn.be/stops/207224"], ["https://data.delijn.be/stops/406908", "https://data.delijn.be/stops/406909"], ["https://data.delijn.be/stops/403322", "https://data.delijn.be/stops/407587"], ["https://data.delijn.be/stops/101576", "https://data.delijn.be/stops/101577"], ["https://data.delijn.be/stops/400640", "https://data.delijn.be/stops/400910"], ["https://data.delijn.be/stops/406425", "https://data.delijn.be/stops/406426"], ["https://data.delijn.be/stops/206268", "https://data.delijn.be/stops/207007"], ["https://data.delijn.be/stops/301620", "https://data.delijn.be/stops/301621"], ["https://data.delijn.be/stops/501323", "https://data.delijn.be/stops/506292"], ["https://data.delijn.be/stops/407001", "https://data.delijn.be/stops/408414"], ["https://data.delijn.be/stops/104640", "https://data.delijn.be/stops/104645"], ["https://data.delijn.be/stops/305056", "https://data.delijn.be/stops/305212"], ["https://data.delijn.be/stops/204786", "https://data.delijn.be/stops/205121"], ["https://data.delijn.be/stops/504357", "https://data.delijn.be/stops/504589"], ["https://data.delijn.be/stops/204197", "https://data.delijn.be/stops/205198"], ["https://data.delijn.be/stops/404164", "https://data.delijn.be/stops/404176"], ["https://data.delijn.be/stops/404848", "https://data.delijn.be/stops/409634"], ["https://data.delijn.be/stops/405958", "https://data.delijn.be/stops/308170"], ["https://data.delijn.be/stops/202330", "https://data.delijn.be/stops/202336"], ["https://data.delijn.be/stops/203967", "https://data.delijn.be/stops/203968"], ["https://data.delijn.be/stops/504579", "https://data.delijn.be/stops/505215"], ["https://data.delijn.be/stops/409343", "https://data.delijn.be/stops/409616"], ["https://data.delijn.be/stops/505798", "https://data.delijn.be/stops/509041"], ["https://data.delijn.be/stops/207618", "https://data.delijn.be/stops/207849"], ["https://data.delijn.be/stops/502284", "https://data.delijn.be/stops/507284"], ["https://data.delijn.be/stops/306701", "https://data.delijn.be/stops/306702"], ["https://data.delijn.be/stops/201672", "https://data.delijn.be/stops/202501"], ["https://data.delijn.be/stops/400651", "https://data.delijn.be/stops/400660"], ["https://data.delijn.be/stops/510021", "https://data.delijn.be/stops/510022"], ["https://data.delijn.be/stops/407273", "https://data.delijn.be/stops/409494"], ["https://data.delijn.be/stops/108276", "https://data.delijn.be/stops/108277"], ["https://data.delijn.be/stops/403415", "https://data.delijn.be/stops/403466"], ["https://data.delijn.be/stops/101497", "https://data.delijn.be/stops/102719"], ["https://data.delijn.be/stops/305668", "https://data.delijn.be/stops/305740"], ["https://data.delijn.be/stops/208099", "https://data.delijn.be/stops/209097"], ["https://data.delijn.be/stops/201868", "https://data.delijn.be/stops/203658"], ["https://data.delijn.be/stops/208204", "https://data.delijn.be/stops/209204"], ["https://data.delijn.be/stops/404956", "https://data.delijn.be/stops/409220"], ["https://data.delijn.be/stops/502418", "https://data.delijn.be/stops/507418"], ["https://data.delijn.be/stops/204300", "https://data.delijn.be/stops/205046"], ["https://data.delijn.be/stops/504837", "https://data.delijn.be/stops/505713"], ["https://data.delijn.be/stops/507612", "https://data.delijn.be/stops/507623"], ["https://data.delijn.be/stops/303060", "https://data.delijn.be/stops/304468"], ["https://data.delijn.be/stops/505775", "https://data.delijn.be/stops/507236"], ["https://data.delijn.be/stops/406182", "https://data.delijn.be/stops/406183"], ["https://data.delijn.be/stops/302306", "https://data.delijn.be/stops/302322"], ["https://data.delijn.be/stops/401479", "https://data.delijn.be/stops/408469"], ["https://data.delijn.be/stops/306269", "https://data.delijn.be/stops/306270"], ["https://data.delijn.be/stops/106905", "https://data.delijn.be/stops/107250"], ["https://data.delijn.be/stops/401559", "https://data.delijn.be/stops/402023"], ["https://data.delijn.be/stops/401635", "https://data.delijn.be/stops/308245"], ["https://data.delijn.be/stops/218025", "https://data.delijn.be/stops/219025"], ["https://data.delijn.be/stops/305185", "https://data.delijn.be/stops/306954"], ["https://data.delijn.be/stops/406561", "https://data.delijn.be/stops/407382"], ["https://data.delijn.be/stops/207858", "https://data.delijn.be/stops/209625"], ["https://data.delijn.be/stops/501777", "https://data.delijn.be/stops/506427"], ["https://data.delijn.be/stops/404902", "https://data.delijn.be/stops/404903"], ["https://data.delijn.be/stops/206822", "https://data.delijn.be/stops/207480"], ["https://data.delijn.be/stops/206497", "https://data.delijn.be/stops/206503"], ["https://data.delijn.be/stops/400204", "https://data.delijn.be/stops/400205"], ["https://data.delijn.be/stops/501097", "https://data.delijn.be/stops/506097"], ["https://data.delijn.be/stops/503681", "https://data.delijn.be/stops/503683"], ["https://data.delijn.be/stops/104971", "https://data.delijn.be/stops/105363"], ["https://data.delijn.be/stops/200067", "https://data.delijn.be/stops/200098"], ["https://data.delijn.be/stops/502103", "https://data.delijn.be/stops/507103"], ["https://data.delijn.be/stops/108501", "https://data.delijn.be/stops/108804"], ["https://data.delijn.be/stops/303498", "https://data.delijn.be/stops/308132"], ["https://data.delijn.be/stops/405408", "https://data.delijn.be/stops/306782"], ["https://data.delijn.be/stops/202109", "https://data.delijn.be/stops/202119"], ["https://data.delijn.be/stops/202941", "https://data.delijn.be/stops/203941"], ["https://data.delijn.be/stops/206934", "https://data.delijn.be/stops/207950"], ["https://data.delijn.be/stops/404769", "https://data.delijn.be/stops/404786"], ["https://data.delijn.be/stops/400654", "https://data.delijn.be/stops/400904"], ["https://data.delijn.be/stops/204635", "https://data.delijn.be/stops/205694"], ["https://data.delijn.be/stops/206077", "https://data.delijn.be/stops/207877"], ["https://data.delijn.be/stops/104736", "https://data.delijn.be/stops/107332"], ["https://data.delijn.be/stops/209238", "https://data.delijn.be/stops/209786"], ["https://data.delijn.be/stops/210091", "https://data.delijn.be/stops/211528"], ["https://data.delijn.be/stops/401196", "https://data.delijn.be/stops/401228"], ["https://data.delijn.be/stops/201771", "https://data.delijn.be/stops/201821"], ["https://data.delijn.be/stops/200821", "https://data.delijn.be/stops/200823"], ["https://data.delijn.be/stops/104964", "https://data.delijn.be/stops/109792"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/108016"], ["https://data.delijn.be/stops/405788", "https://data.delijn.be/stops/405808"], ["https://data.delijn.be/stops/208208", "https://data.delijn.be/stops/208792"], ["https://data.delijn.be/stops/507260", "https://data.delijn.be/stops/509946"], ["https://data.delijn.be/stops/101551", "https://data.delijn.be/stops/107922"], ["https://data.delijn.be/stops/102227", "https://data.delijn.be/stops/102228"], ["https://data.delijn.be/stops/503804", "https://data.delijn.be/stops/503811"], ["https://data.delijn.be/stops/201948", "https://data.delijn.be/stops/203467"], ["https://data.delijn.be/stops/504480", "https://data.delijn.be/stops/509481"], ["https://data.delijn.be/stops/201259", "https://data.delijn.be/stops/201947"], ["https://data.delijn.be/stops/202536", "https://data.delijn.be/stops/203011"], ["https://data.delijn.be/stops/102300", "https://data.delijn.be/stops/102305"], ["https://data.delijn.be/stops/208471", "https://data.delijn.be/stops/209669"], ["https://data.delijn.be/stops/308725", "https://data.delijn.be/stops/308728"], ["https://data.delijn.be/stops/506220", "https://data.delijn.be/stops/506496"], ["https://data.delijn.be/stops/103399", "https://data.delijn.be/stops/106830"], ["https://data.delijn.be/stops/503079", "https://data.delijn.be/stops/503085"], ["https://data.delijn.be/stops/405958", "https://data.delijn.be/stops/405959"], ["https://data.delijn.be/stops/304946", "https://data.delijn.be/stops/305018"], ["https://data.delijn.be/stops/202430", "https://data.delijn.be/stops/203438"], ["https://data.delijn.be/stops/201317", "https://data.delijn.be/stops/201649"], ["https://data.delijn.be/stops/105639", "https://data.delijn.be/stops/105641"], ["https://data.delijn.be/stops/204736", "https://data.delijn.be/stops/204737"], ["https://data.delijn.be/stops/104947", "https://data.delijn.be/stops/109790"], ["https://data.delijn.be/stops/204121", "https://data.delijn.be/stops/204126"], ["https://data.delijn.be/stops/404169", "https://data.delijn.be/stops/404219"], ["https://data.delijn.be/stops/301378", "https://data.delijn.be/stops/301381"], ["https://data.delijn.be/stops/503830", "https://data.delijn.be/stops/505994"], ["https://data.delijn.be/stops/108650", "https://data.delijn.be/stops/108955"], ["https://data.delijn.be/stops/505640", "https://data.delijn.be/stops/509812"], ["https://data.delijn.be/stops/406043", "https://data.delijn.be/stops/407865"], ["https://data.delijn.be/stops/401346", "https://data.delijn.be/stops/401355"], ["https://data.delijn.be/stops/203186", "https://data.delijn.be/stops/203667"], ["https://data.delijn.be/stops/205397", "https://data.delijn.be/stops/205768"], ["https://data.delijn.be/stops/300295", "https://data.delijn.be/stops/307478"], ["https://data.delijn.be/stops/105548", "https://data.delijn.be/stops/109624"], ["https://data.delijn.be/stops/208339", "https://data.delijn.be/stops/208788"], ["https://data.delijn.be/stops/504424", "https://data.delijn.be/stops/504472"], ["https://data.delijn.be/stops/204200", "https://data.delijn.be/stops/205201"], ["https://data.delijn.be/stops/301440", "https://data.delijn.be/stops/301662"], ["https://data.delijn.be/stops/108069", "https://data.delijn.be/stops/108134"], ["https://data.delijn.be/stops/502703", "https://data.delijn.be/stops/509723"], ["https://data.delijn.be/stops/405312", "https://data.delijn.be/stops/302824"], ["https://data.delijn.be/stops/400820", "https://data.delijn.be/stops/400827"], ["https://data.delijn.be/stops/302487", "https://data.delijn.be/stops/308831"], ["https://data.delijn.be/stops/403003", "https://data.delijn.be/stops/405609"], ["https://data.delijn.be/stops/506037", "https://data.delijn.be/stops/506448"], ["https://data.delijn.be/stops/200901", "https://data.delijn.be/stops/202264"], ["https://data.delijn.be/stops/502359", "https://data.delijn.be/stops/507679"], ["https://data.delijn.be/stops/202377", "https://data.delijn.be/stops/203376"], ["https://data.delijn.be/stops/207677", "https://data.delijn.be/stops/208200"], ["https://data.delijn.be/stops/504980", "https://data.delijn.be/stops/505917"], ["https://data.delijn.be/stops/406635", "https://data.delijn.be/stops/407507"], ["https://data.delijn.be/stops/301833", "https://data.delijn.be/stops/308602"], ["https://data.delijn.be/stops/408804", "https://data.delijn.be/stops/408805"], ["https://data.delijn.be/stops/101189", "https://data.delijn.be/stops/101656"], ["https://data.delijn.be/stops/302332", "https://data.delijn.be/stops/302333"], ["https://data.delijn.be/stops/403084", "https://data.delijn.be/stops/403133"], ["https://data.delijn.be/stops/105276", "https://data.delijn.be/stops/109974"], ["https://data.delijn.be/stops/104986", "https://data.delijn.be/stops/109992"], ["https://data.delijn.be/stops/408962", "https://data.delijn.be/stops/408969"], ["https://data.delijn.be/stops/204163", "https://data.delijn.be/stops/206402"], ["https://data.delijn.be/stops/505363", "https://data.delijn.be/stops/509635"], ["https://data.delijn.be/stops/208257", "https://data.delijn.be/stops/209256"], ["https://data.delijn.be/stops/104964", "https://data.delijn.be/stops/108644"], ["https://data.delijn.be/stops/503893", "https://data.delijn.be/stops/508987"], ["https://data.delijn.be/stops/302018", "https://data.delijn.be/stops/302019"], ["https://data.delijn.be/stops/303590", "https://data.delijn.be/stops/305221"], ["https://data.delijn.be/stops/405959", "https://data.delijn.be/stops/308152"], ["https://data.delijn.be/stops/303437", "https://data.delijn.be/stops/307061"], ["https://data.delijn.be/stops/208797", "https://data.delijn.be/stops/209797"], ["https://data.delijn.be/stops/405134", "https://data.delijn.be/stops/406188"], ["https://data.delijn.be/stops/501255", "https://data.delijn.be/stops/506738"], ["https://data.delijn.be/stops/208409", "https://data.delijn.be/stops/209195"], ["https://data.delijn.be/stops/502249", "https://data.delijn.be/stops/507249"], ["https://data.delijn.be/stops/208081", "https://data.delijn.be/stops/209524"], ["https://data.delijn.be/stops/503211", "https://data.delijn.be/stops/503983"], ["https://data.delijn.be/stops/403836", "https://data.delijn.be/stops/403837"], ["https://data.delijn.be/stops/305689", "https://data.delijn.be/stops/305705"], ["https://data.delijn.be/stops/407260", "https://data.delijn.be/stops/407261"], ["https://data.delijn.be/stops/302952", "https://data.delijn.be/stops/302977"], ["https://data.delijn.be/stops/305571", "https://data.delijn.be/stops/308553"], ["https://data.delijn.be/stops/101162", "https://data.delijn.be/stops/205637"], ["https://data.delijn.be/stops/105559", "https://data.delijn.be/stops/105561"], ["https://data.delijn.be/stops/303093", "https://data.delijn.be/stops/303094"], ["https://data.delijn.be/stops/301773", "https://data.delijn.be/stops/301783"], ["https://data.delijn.be/stops/407701", "https://data.delijn.be/stops/407706"], ["https://data.delijn.be/stops/203345", "https://data.delijn.be/stops/203346"], ["https://data.delijn.be/stops/109351", "https://data.delijn.be/stops/307430"], ["https://data.delijn.be/stops/206946", "https://data.delijn.be/stops/209071"], ["https://data.delijn.be/stops/305379", "https://data.delijn.be/stops/305385"], ["https://data.delijn.be/stops/202385", "https://data.delijn.be/stops/203386"], ["https://data.delijn.be/stops/103105", "https://data.delijn.be/stops/103110"], ["https://data.delijn.be/stops/402383", "https://data.delijn.be/stops/402453"], ["https://data.delijn.be/stops/306960", "https://data.delijn.be/stops/306961"], ["https://data.delijn.be/stops/503413", "https://data.delijn.be/stops/508380"], ["https://data.delijn.be/stops/206299", "https://data.delijn.be/stops/206451"], ["https://data.delijn.be/stops/409053", "https://data.delijn.be/stops/409121"], ["https://data.delijn.be/stops/405840", "https://data.delijn.be/stops/409416"], ["https://data.delijn.be/stops/105653", "https://data.delijn.be/stops/105656"], ["https://data.delijn.be/stops/502040", "https://data.delijn.be/stops/502044"], ["https://data.delijn.be/stops/101749", "https://data.delijn.be/stops/106384"], ["https://data.delijn.be/stops/108434", "https://data.delijn.be/stops/109579"], ["https://data.delijn.be/stops/403340", "https://data.delijn.be/stops/403341"], ["https://data.delijn.be/stops/105043", "https://data.delijn.be/stops/105046"], ["https://data.delijn.be/stops/106914", "https://data.delijn.be/stops/107254"], ["https://data.delijn.be/stops/301959", "https://data.delijn.be/stops/301970"], ["https://data.delijn.be/stops/504494", "https://data.delijn.be/stops/504730"], ["https://data.delijn.be/stops/405936", "https://data.delijn.be/stops/405999"], ["https://data.delijn.be/stops/201707", "https://data.delijn.be/stops/201708"], ["https://data.delijn.be/stops/500012", "https://data.delijn.be/stops/507222"], ["https://data.delijn.be/stops/202101", "https://data.delijn.be/stops/202257"], ["https://data.delijn.be/stops/405770", "https://data.delijn.be/stops/405771"], ["https://data.delijn.be/stops/201676", "https://data.delijn.be/stops/203501"], ["https://data.delijn.be/stops/503310", "https://data.delijn.be/stops/505990"], ["https://data.delijn.be/stops/201488", "https://data.delijn.be/stops/202454"], ["https://data.delijn.be/stops/202274", "https://data.delijn.be/stops/202668"], ["https://data.delijn.be/stops/508753", "https://data.delijn.be/stops/508759"], ["https://data.delijn.be/stops/401177", "https://data.delijn.be/stops/410202"], ["https://data.delijn.be/stops/201953", "https://data.delijn.be/stops/202462"], ["https://data.delijn.be/stops/206409", "https://data.delijn.be/stops/207409"], ["https://data.delijn.be/stops/202786", "https://data.delijn.be/stops/202787"], ["https://data.delijn.be/stops/501109", "https://data.delijn.be/stops/506108"], ["https://data.delijn.be/stops/304962", "https://data.delijn.be/stops/306091"], ["https://data.delijn.be/stops/301604", "https://data.delijn.be/stops/301667"], ["https://data.delijn.be/stops/101776", "https://data.delijn.be/stops/107586"], ["https://data.delijn.be/stops/107652", "https://data.delijn.be/stops/406770"], ["https://data.delijn.be/stops/207433", "https://data.delijn.be/stops/207434"], ["https://data.delijn.be/stops/402782", "https://data.delijn.be/stops/402798"], ["https://data.delijn.be/stops/202570", "https://data.delijn.be/stops/202589"], ["https://data.delijn.be/stops/405320", "https://data.delijn.be/stops/405324"], ["https://data.delijn.be/stops/301651", "https://data.delijn.be/stops/301892"], ["https://data.delijn.be/stops/403412", "https://data.delijn.be/stops/403413"], ["https://data.delijn.be/stops/301987", "https://data.delijn.be/stops/301988"], ["https://data.delijn.be/stops/102875", "https://data.delijn.be/stops/104535"], ["https://data.delijn.be/stops/201821", "https://data.delijn.be/stops/203894"], ["https://data.delijn.be/stops/305869", "https://data.delijn.be/stops/305870"], ["https://data.delijn.be/stops/208150", "https://data.delijn.be/stops/209149"], ["https://data.delijn.be/stops/206585", "https://data.delijn.be/stops/216021"], ["https://data.delijn.be/stops/300629", "https://data.delijn.be/stops/306112"], ["https://data.delijn.be/stops/103068", "https://data.delijn.be/stops/105754"], ["https://data.delijn.be/stops/109664", "https://data.delijn.be/stops/109716"], ["https://data.delijn.be/stops/505297", "https://data.delijn.be/stops/508512"], ["https://data.delijn.be/stops/401199", "https://data.delijn.be/stops/401375"], ["https://data.delijn.be/stops/304343", "https://data.delijn.be/stops/304346"], ["https://data.delijn.be/stops/407377", "https://data.delijn.be/stops/407385"], ["https://data.delijn.be/stops/305512", "https://data.delijn.be/stops/307897"], ["https://data.delijn.be/stops/204599", "https://data.delijn.be/stops/205224"], ["https://data.delijn.be/stops/300444", "https://data.delijn.be/stops/301264"], ["https://data.delijn.be/stops/105702", "https://data.delijn.be/stops/105703"], ["https://data.delijn.be/stops/211852", "https://data.delijn.be/stops/502596"], ["https://data.delijn.be/stops/201647", "https://data.delijn.be/stops/202863"], ["https://data.delijn.be/stops/503232", "https://data.delijn.be/stops/508256"], ["https://data.delijn.be/stops/302326", "https://data.delijn.be/stops/302671"], ["https://data.delijn.be/stops/303477", "https://data.delijn.be/stops/303492"], ["https://data.delijn.be/stops/106156", "https://data.delijn.be/stops/106445"], ["https://data.delijn.be/stops/102244", "https://data.delijn.be/stops/105879"], ["https://data.delijn.be/stops/505675", "https://data.delijn.be/stops/505688"], ["https://data.delijn.be/stops/507693", "https://data.delijn.be/stops/508011"], ["https://data.delijn.be/stops/401093", "https://data.delijn.be/stops/401112"], ["https://data.delijn.be/stops/206854", "https://data.delijn.be/stops/206855"], ["https://data.delijn.be/stops/203171", "https://data.delijn.be/stops/203172"], ["https://data.delijn.be/stops/106956", "https://data.delijn.be/stops/106957"], ["https://data.delijn.be/stops/502124", "https://data.delijn.be/stops/507124"], ["https://data.delijn.be/stops/406684", "https://data.delijn.be/stops/406685"], ["https://data.delijn.be/stops/404862", "https://data.delijn.be/stops/404869"], ["https://data.delijn.be/stops/303507", "https://data.delijn.be/stops/303508"], ["https://data.delijn.be/stops/401486", "https://data.delijn.be/stops/401487"], ["https://data.delijn.be/stops/404502", "https://data.delijn.be/stops/404575"], ["https://data.delijn.be/stops/503964", "https://data.delijn.be/stops/506765"], ["https://data.delijn.be/stops/106861", "https://data.delijn.be/stops/109621"], ["https://data.delijn.be/stops/301130", "https://data.delijn.be/stops/301138"], ["https://data.delijn.be/stops/304225", "https://data.delijn.be/stops/307064"], ["https://data.delijn.be/stops/505089", "https://data.delijn.be/stops/505770"], ["https://data.delijn.be/stops/305232", "https://data.delijn.be/stops/305284"], ["https://data.delijn.be/stops/405796", "https://data.delijn.be/stops/405883"], ["https://data.delijn.be/stops/402190", "https://data.delijn.be/stops/402262"], ["https://data.delijn.be/stops/404114", "https://data.delijn.be/stops/408739"], ["https://data.delijn.be/stops/502420", "https://data.delijn.be/stops/507644"], ["https://data.delijn.be/stops/202312", "https://data.delijn.be/stops/203793"], ["https://data.delijn.be/stops/402863", "https://data.delijn.be/stops/408083"], ["https://data.delijn.be/stops/206088", "https://data.delijn.be/stops/206723"], ["https://data.delijn.be/stops/405889", "https://data.delijn.be/stops/409667"], ["https://data.delijn.be/stops/108735", "https://data.delijn.be/stops/108740"], ["https://data.delijn.be/stops/505388", "https://data.delijn.be/stops/509174"], ["https://data.delijn.be/stops/102913", "https://data.delijn.be/stops/106715"], ["https://data.delijn.be/stops/401340", "https://data.delijn.be/stops/401390"], ["https://data.delijn.be/stops/300074", "https://data.delijn.be/stops/304677"], ["https://data.delijn.be/stops/304744", "https://data.delijn.be/stops/304746"], ["https://data.delijn.be/stops/105736", "https://data.delijn.be/stops/109836"], ["https://data.delijn.be/stops/202410", "https://data.delijn.be/stops/203418"], ["https://data.delijn.be/stops/101268", "https://data.delijn.be/stops/104103"], ["https://data.delijn.be/stops/105060", "https://data.delijn.be/stops/106708"], ["https://data.delijn.be/stops/408689", "https://data.delijn.be/stops/410082"], ["https://data.delijn.be/stops/403067", "https://data.delijn.be/stops/403073"], ["https://data.delijn.be/stops/401492", "https://data.delijn.be/stops/401586"], ["https://data.delijn.be/stops/400041", "https://data.delijn.be/stops/400349"], ["https://data.delijn.be/stops/407204", "https://data.delijn.be/stops/407208"], ["https://data.delijn.be/stops/504352", "https://data.delijn.be/stops/509412"], ["https://data.delijn.be/stops/206682", "https://data.delijn.be/stops/209777"], ["https://data.delijn.be/stops/204147", "https://data.delijn.be/stops/209912"], ["https://data.delijn.be/stops/504623", "https://data.delijn.be/stops/504628"], ["https://data.delijn.be/stops/101644", "https://data.delijn.be/stops/105839"], ["https://data.delijn.be/stops/204137", "https://data.delijn.be/stops/205137"], ["https://data.delijn.be/stops/202851", "https://data.delijn.be/stops/203948"], ["https://data.delijn.be/stops/303695", "https://data.delijn.be/stops/308658"], ["https://data.delijn.be/stops/503728", "https://data.delijn.be/stops/508721"], ["https://data.delijn.be/stops/501014", "https://data.delijn.be/stops/506598"], ["https://data.delijn.be/stops/300261", "https://data.delijn.be/stops/300729"], ["https://data.delijn.be/stops/405791", "https://data.delijn.be/stops/405885"], ["https://data.delijn.be/stops/406220", "https://data.delijn.be/stops/406223"], ["https://data.delijn.be/stops/104517", "https://data.delijn.be/stops/107932"], ["https://data.delijn.be/stops/107611", "https://data.delijn.be/stops/107612"], ["https://data.delijn.be/stops/303272", "https://data.delijn.be/stops/303273"], ["https://data.delijn.be/stops/408266", "https://data.delijn.be/stops/408268"], ["https://data.delijn.be/stops/203479", "https://data.delijn.be/stops/203481"], ["https://data.delijn.be/stops/302892", "https://data.delijn.be/stops/302903"], ["https://data.delijn.be/stops/207228", "https://data.delijn.be/stops/300226"], ["https://data.delijn.be/stops/206226", "https://data.delijn.be/stops/300187"], ["https://data.delijn.be/stops/305310", "https://data.delijn.be/stops/305324"], ["https://data.delijn.be/stops/501271", "https://data.delijn.be/stops/501282"], ["https://data.delijn.be/stops/402352", "https://data.delijn.be/stops/405576"], ["https://data.delijn.be/stops/401829", "https://data.delijn.be/stops/401833"], ["https://data.delijn.be/stops/505663", "https://data.delijn.be/stops/508589"], ["https://data.delijn.be/stops/208378", "https://data.delijn.be/stops/209377"], ["https://data.delijn.be/stops/102196", "https://data.delijn.be/stops/104276"], ["https://data.delijn.be/stops/102600", "https://data.delijn.be/stops/103695"], ["https://data.delijn.be/stops/201047", "https://data.delijn.be/stops/203468"], ["https://data.delijn.be/stops/410146", "https://data.delijn.be/stops/410147"], ["https://data.delijn.be/stops/404428", "https://data.delijn.be/stops/404524"], ["https://data.delijn.be/stops/503401", "https://data.delijn.be/stops/504293"], ["https://data.delijn.be/stops/407873", "https://data.delijn.be/stops/407946"], ["https://data.delijn.be/stops/200756", "https://data.delijn.be/stops/200773"], ["https://data.delijn.be/stops/300922", "https://data.delijn.be/stops/301037"], ["https://data.delijn.be/stops/107508", "https://data.delijn.be/stops/107509"], ["https://data.delijn.be/stops/307421", "https://data.delijn.be/stops/307422"], ["https://data.delijn.be/stops/108859", "https://data.delijn.be/stops/108862"], ["https://data.delijn.be/stops/402477", "https://data.delijn.be/stops/407397"], ["https://data.delijn.be/stops/206427", "https://data.delijn.be/stops/209537"], ["https://data.delijn.be/stops/504516", "https://data.delijn.be/stops/509516"], ["https://data.delijn.be/stops/300890", "https://data.delijn.be/stops/306968"], ["https://data.delijn.be/stops/106907", "https://data.delijn.be/stops/107262"], ["https://data.delijn.be/stops/102864", "https://data.delijn.be/stops/103301"], ["https://data.delijn.be/stops/503519", "https://data.delijn.be/stops/508517"], ["https://data.delijn.be/stops/503108", "https://data.delijn.be/stops/504631"], ["https://data.delijn.be/stops/104119", "https://data.delijn.be/stops/104124"], ["https://data.delijn.be/stops/402116", "https://data.delijn.be/stops/402117"], ["https://data.delijn.be/stops/406188", "https://data.delijn.be/stops/406797"], ["https://data.delijn.be/stops/304062", "https://data.delijn.be/stops/307966"], ["https://data.delijn.be/stops/302574", "https://data.delijn.be/stops/302580"], ["https://data.delijn.be/stops/305555", "https://data.delijn.be/stops/307824"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/203624"], ["https://data.delijn.be/stops/106354", "https://data.delijn.be/stops/106356"], ["https://data.delijn.be/stops/503465", "https://data.delijn.be/stops/503466"], ["https://data.delijn.be/stops/109397", "https://data.delijn.be/stops/109405"], ["https://data.delijn.be/stops/108846", "https://data.delijn.be/stops/108864"], ["https://data.delijn.be/stops/305238", "https://data.delijn.be/stops/305272"], ["https://data.delijn.be/stops/308524", "https://data.delijn.be/stops/308525"], ["https://data.delijn.be/stops/203093", "https://data.delijn.be/stops/211291"], ["https://data.delijn.be/stops/501329", "https://data.delijn.be/stops/506351"], ["https://data.delijn.be/stops/204390", "https://data.delijn.be/stops/204392"], ["https://data.delijn.be/stops/401779", "https://data.delijn.be/stops/406135"], ["https://data.delijn.be/stops/400468", "https://data.delijn.be/stops/400471"], ["https://data.delijn.be/stops/503275", "https://data.delijn.be/stops/508275"], ["https://data.delijn.be/stops/207665", "https://data.delijn.be/stops/209501"], ["https://data.delijn.be/stops/501023", "https://data.delijn.be/stops/506023"], ["https://data.delijn.be/stops/408489", "https://data.delijn.be/stops/408551"], ["https://data.delijn.be/stops/510009", "https://data.delijn.be/stops/510010"], ["https://data.delijn.be/stops/305154", "https://data.delijn.be/stops/305179"], ["https://data.delijn.be/stops/400242", "https://data.delijn.be/stops/406730"], ["https://data.delijn.be/stops/206354", "https://data.delijn.be/stops/207354"], ["https://data.delijn.be/stops/108914", "https://data.delijn.be/stops/108916"], ["https://data.delijn.be/stops/500604", "https://data.delijn.be/stops/506460"], ["https://data.delijn.be/stops/303292", "https://data.delijn.be/stops/303293"], ["https://data.delijn.be/stops/101756", "https://data.delijn.be/stops/205608"], ["https://data.delijn.be/stops/402514", "https://data.delijn.be/stops/402517"], ["https://data.delijn.be/stops/206024", "https://data.delijn.be/stops/207023"], ["https://data.delijn.be/stops/105223", "https://data.delijn.be/stops/305821"], ["https://data.delijn.be/stops/102658", "https://data.delijn.be/stops/109606"], ["https://data.delijn.be/stops/108376", "https://data.delijn.be/stops/109702"], ["https://data.delijn.be/stops/209086", "https://data.delijn.be/stops/209696"], ["https://data.delijn.be/stops/401375", "https://data.delijn.be/stops/404773"], ["https://data.delijn.be/stops/508595", "https://data.delijn.be/stops/508786"], ["https://data.delijn.be/stops/206773", "https://data.delijn.be/stops/209030"], ["https://data.delijn.be/stops/109450", "https://data.delijn.be/stops/109555"], ["https://data.delijn.be/stops/406604", "https://data.delijn.be/stops/406606"], ["https://data.delijn.be/stops/304078", "https://data.delijn.be/stops/304079"], ["https://data.delijn.be/stops/304000", "https://data.delijn.be/stops/307506"], ["https://data.delijn.be/stops/107218", "https://data.delijn.be/stops/107220"], ["https://data.delijn.be/stops/401123", "https://data.delijn.be/stops/409818"], ["https://data.delijn.be/stops/106947", "https://data.delijn.be/stops/108701"], ["https://data.delijn.be/stops/102190", "https://data.delijn.be/stops/103323"], ["https://data.delijn.be/stops/408414", "https://data.delijn.be/stops/408415"], ["https://data.delijn.be/stops/208178", "https://data.delijn.be/stops/208179"], ["https://data.delijn.be/stops/101680", "https://data.delijn.be/stops/102515"], ["https://data.delijn.be/stops/108844", "https://data.delijn.be/stops/108857"], ["https://data.delijn.be/stops/404610", "https://data.delijn.be/stops/406831"], ["https://data.delijn.be/stops/206855", "https://data.delijn.be/stops/207197"], ["https://data.delijn.be/stops/405809", "https://data.delijn.be/stops/409695"], ["https://data.delijn.be/stops/204232", "https://data.delijn.be/stops/205232"], ["https://data.delijn.be/stops/206863", "https://data.delijn.be/stops/207922"], ["https://data.delijn.be/stops/503958", "https://data.delijn.be/stops/504267"], ["https://data.delijn.be/stops/509356", "https://data.delijn.be/stops/509359"], ["https://data.delijn.be/stops/207582", "https://data.delijn.be/stops/207993"], ["https://data.delijn.be/stops/401205", "https://data.delijn.be/stops/401375"], ["https://data.delijn.be/stops/206699", "https://data.delijn.be/stops/207699"], ["https://data.delijn.be/stops/308243", "https://data.delijn.be/stops/308248"], ["https://data.delijn.be/stops/406451", "https://data.delijn.be/stops/406471"], ["https://data.delijn.be/stops/101360", "https://data.delijn.be/stops/106359"], ["https://data.delijn.be/stops/300938", "https://data.delijn.be/stops/300954"], ["https://data.delijn.be/stops/406287", "https://data.delijn.be/stops/406288"], ["https://data.delijn.be/stops/401156", "https://data.delijn.be/stops/401158"], ["https://data.delijn.be/stops/201687", "https://data.delijn.be/stops/203502"], ["https://data.delijn.be/stops/107969", "https://data.delijn.be/stops/107971"], ["https://data.delijn.be/stops/102079", "https://data.delijn.be/stops/105989"], ["https://data.delijn.be/stops/300316", "https://data.delijn.be/stops/300556"], ["https://data.delijn.be/stops/407611", "https://data.delijn.be/stops/407767"], ["https://data.delijn.be/stops/206756", "https://data.delijn.be/stops/206758"], ["https://data.delijn.be/stops/508411", "https://data.delijn.be/stops/510024"], ["https://data.delijn.be/stops/400819", "https://data.delijn.be/stops/403580"], ["https://data.delijn.be/stops/305456", "https://data.delijn.be/stops/305979"], ["https://data.delijn.be/stops/301824", "https://data.delijn.be/stops/301852"], ["https://data.delijn.be/stops/502270", "https://data.delijn.be/stops/502672"], ["https://data.delijn.be/stops/102068", "https://data.delijn.be/stops/102069"], ["https://data.delijn.be/stops/403172", "https://data.delijn.be/stops/403186"], ["https://data.delijn.be/stops/103969", "https://data.delijn.be/stops/106854"], ["https://data.delijn.be/stops/106282", "https://data.delijn.be/stops/106300"], ["https://data.delijn.be/stops/304879", "https://data.delijn.be/stops/304880"], ["https://data.delijn.be/stops/507812", "https://data.delijn.be/stops/508008"], ["https://data.delijn.be/stops/103968", "https://data.delijn.be/stops/103969"], ["https://data.delijn.be/stops/206586", "https://data.delijn.be/stops/207919"], ["https://data.delijn.be/stops/403140", "https://data.delijn.be/stops/410277"], ["https://data.delijn.be/stops/104047", "https://data.delijn.be/stops/104048"], ["https://data.delijn.be/stops/106609", "https://data.delijn.be/stops/106613"], ["https://data.delijn.be/stops/102511", "https://data.delijn.be/stops/102514"], ["https://data.delijn.be/stops/104952", "https://data.delijn.be/stops/109569"], ["https://data.delijn.be/stops/106709", "https://data.delijn.be/stops/106712"], ["https://data.delijn.be/stops/303815", "https://data.delijn.be/stops/307496"], ["https://data.delijn.be/stops/301085", "https://data.delijn.be/stops/301102"], ["https://data.delijn.be/stops/304582", "https://data.delijn.be/stops/307572"], ["https://data.delijn.be/stops/202518", "https://data.delijn.be/stops/202519"], ["https://data.delijn.be/stops/408633", "https://data.delijn.be/stops/408774"], ["https://data.delijn.be/stops/106442", "https://data.delijn.be/stops/106443"], ["https://data.delijn.be/stops/103503", "https://data.delijn.be/stops/106317"], ["https://data.delijn.be/stops/302124", "https://data.delijn.be/stops/302125"], ["https://data.delijn.be/stops/205431", "https://data.delijn.be/stops/205434"], ["https://data.delijn.be/stops/408598", "https://data.delijn.be/stops/408672"], ["https://data.delijn.be/stops/305531", "https://data.delijn.be/stops/307181"], ["https://data.delijn.be/stops/303696", "https://data.delijn.be/stops/303826"], ["https://data.delijn.be/stops/501430", "https://data.delijn.be/stops/501679"], ["https://data.delijn.be/stops/201692", "https://data.delijn.be/stops/203366"], ["https://data.delijn.be/stops/406343", "https://data.delijn.be/stops/406346"], ["https://data.delijn.be/stops/304264", "https://data.delijn.be/stops/304276"], ["https://data.delijn.be/stops/401290", "https://data.delijn.be/stops/406032"], ["https://data.delijn.be/stops/406195", "https://data.delijn.be/stops/410188"], ["https://data.delijn.be/stops/204227", "https://data.delijn.be/stops/205231"], ["https://data.delijn.be/stops/406748", "https://data.delijn.be/stops/410069"], ["https://data.delijn.be/stops/200782", "https://data.delijn.be/stops/201033"], ["https://data.delijn.be/stops/108861", "https://data.delijn.be/stops/108863"], ["https://data.delijn.be/stops/402114", "https://data.delijn.be/stops/402124"], ["https://data.delijn.be/stops/306941", "https://data.delijn.be/stops/307945"], ["https://data.delijn.be/stops/200895", "https://data.delijn.be/stops/202287"], ["https://data.delijn.be/stops/300279", "https://data.delijn.be/stops/300302"], ["https://data.delijn.be/stops/503269", "https://data.delijn.be/stops/503275"], ["https://data.delijn.be/stops/302319", "https://data.delijn.be/stops/303512"], ["https://data.delijn.be/stops/407785", "https://data.delijn.be/stops/307451"], ["https://data.delijn.be/stops/302776", "https://data.delijn.be/stops/302778"], ["https://data.delijn.be/stops/106636", "https://data.delijn.be/stops/106649"], ["https://data.delijn.be/stops/302468", "https://data.delijn.be/stops/302469"], ["https://data.delijn.be/stops/105556", "https://data.delijn.be/stops/106036"], ["https://data.delijn.be/stops/107321", "https://data.delijn.be/stops/108821"], ["https://data.delijn.be/stops/504851", "https://data.delijn.be/stops/509072"], ["https://data.delijn.be/stops/105549", "https://data.delijn.be/stops/106026"], ["https://data.delijn.be/stops/102499", "https://data.delijn.be/stops/407517"], ["https://data.delijn.be/stops/406978", "https://data.delijn.be/stops/407497"], ["https://data.delijn.be/stops/305287", "https://data.delijn.be/stops/305291"], ["https://data.delijn.be/stops/503742", "https://data.delijn.be/stops/509979"], ["https://data.delijn.be/stops/505570", "https://data.delijn.be/stops/508798"], ["https://data.delijn.be/stops/206005", "https://data.delijn.be/stops/206268"], ["https://data.delijn.be/stops/301429", "https://data.delijn.be/stops/301442"], ["https://data.delijn.be/stops/101477", "https://data.delijn.be/stops/101964"], ["https://data.delijn.be/stops/407814", "https://data.delijn.be/stops/407830"], ["https://data.delijn.be/stops/109218", "https://data.delijn.be/stops/109221"], ["https://data.delijn.be/stops/404245", "https://data.delijn.be/stops/405653"], ["https://data.delijn.be/stops/505112", "https://data.delijn.be/stops/509418"], ["https://data.delijn.be/stops/107236", "https://data.delijn.be/stops/107238"], ["https://data.delijn.be/stops/303580", "https://data.delijn.be/stops/303586"], ["https://data.delijn.be/stops/204979", "https://data.delijn.be/stops/206673"], ["https://data.delijn.be/stops/206254", "https://data.delijn.be/stops/206996"], ["https://data.delijn.be/stops/502174", "https://data.delijn.be/stops/507179"], ["https://data.delijn.be/stops/500029", "https://data.delijn.be/stops/504998"], ["https://data.delijn.be/stops/200812", "https://data.delijn.be/stops/200896"], ["https://data.delijn.be/stops/400360", "https://data.delijn.be/stops/400369"], ["https://data.delijn.be/stops/204030", "https://data.delijn.be/stops/205033"], ["https://data.delijn.be/stops/200917", "https://data.delijn.be/stops/203247"], ["https://data.delijn.be/stops/404148", "https://data.delijn.be/stops/404186"], ["https://data.delijn.be/stops/402143", "https://data.delijn.be/stops/402437"], ["https://data.delijn.be/stops/406786", "https://data.delijn.be/stops/406787"], ["https://data.delijn.be/stops/302502", "https://data.delijn.be/stops/302503"], ["https://data.delijn.be/stops/301793", "https://data.delijn.be/stops/301802"], ["https://data.delijn.be/stops/504999", "https://data.delijn.be/stops/505381"], ["https://data.delijn.be/stops/200418", "https://data.delijn.be/stops/210022"], ["https://data.delijn.be/stops/204323", "https://data.delijn.be/stops/204692"], ["https://data.delijn.be/stops/108372", "https://data.delijn.be/stops/108373"], ["https://data.delijn.be/stops/206435", "https://data.delijn.be/stops/207434"], ["https://data.delijn.be/stops/107826", "https://data.delijn.be/stops/107829"], ["https://data.delijn.be/stops/208142", "https://data.delijn.be/stops/209142"], ["https://data.delijn.be/stops/402082", "https://data.delijn.be/stops/402084"], ["https://data.delijn.be/stops/304204", "https://data.delijn.be/stops/304207"], ["https://data.delijn.be/stops/108304", "https://data.delijn.be/stops/108306"], ["https://data.delijn.be/stops/208285", "https://data.delijn.be/stops/209286"], ["https://data.delijn.be/stops/105202", "https://data.delijn.be/stops/105204"], ["https://data.delijn.be/stops/400533", "https://data.delijn.be/stops/403195"], ["https://data.delijn.be/stops/403430", "https://data.delijn.be/stops/403434"], ["https://data.delijn.be/stops/503965", "https://data.delijn.be/stops/508234"], ["https://data.delijn.be/stops/303095", "https://data.delijn.be/stops/303117"], ["https://data.delijn.be/stops/303414", "https://data.delijn.be/stops/303415"], ["https://data.delijn.be/stops/200254", "https://data.delijn.be/stops/201254"], ["https://data.delijn.be/stops/501174", "https://data.delijn.be/stops/506174"], ["https://data.delijn.be/stops/502095", "https://data.delijn.be/stops/502167"], ["https://data.delijn.be/stops/204693", "https://data.delijn.be/stops/205633"], ["https://data.delijn.be/stops/208139", "https://data.delijn.be/stops/209139"], ["https://data.delijn.be/stops/101801", "https://data.delijn.be/stops/101806"], ["https://data.delijn.be/stops/204504", "https://data.delijn.be/stops/205505"], ["https://data.delijn.be/stops/301770", "https://data.delijn.be/stops/301779"], ["https://data.delijn.be/stops/502368", "https://data.delijn.be/stops/502529"], ["https://data.delijn.be/stops/503514", "https://data.delijn.be/stops/508514"], ["https://data.delijn.be/stops/200361", "https://data.delijn.be/stops/201362"], ["https://data.delijn.be/stops/301454", "https://data.delijn.be/stops/305664"], ["https://data.delijn.be/stops/208601", "https://data.delijn.be/stops/306367"], ["https://data.delijn.be/stops/203218", "https://data.delijn.be/stops/203220"], ["https://data.delijn.be/stops/206567", "https://data.delijn.be/stops/207965"], ["https://data.delijn.be/stops/505245", "https://data.delijn.be/stops/505247"], ["https://data.delijn.be/stops/402089", "https://data.delijn.be/stops/402090"], ["https://data.delijn.be/stops/400762", "https://data.delijn.be/stops/405268"], ["https://data.delijn.be/stops/204084", "https://data.delijn.be/stops/205410"], ["https://data.delijn.be/stops/505502", "https://data.delijn.be/stops/505600"], ["https://data.delijn.be/stops/401402", "https://data.delijn.be/stops/300918"], ["https://data.delijn.be/stops/503619", "https://data.delijn.be/stops/503623"], ["https://data.delijn.be/stops/105452", "https://data.delijn.be/stops/109890"], ["https://data.delijn.be/stops/204748", "https://data.delijn.be/stops/205748"], ["https://data.delijn.be/stops/503875", "https://data.delijn.be/stops/508875"], ["https://data.delijn.be/stops/402178", "https://data.delijn.be/stops/402197"], ["https://data.delijn.be/stops/400968", "https://data.delijn.be/stops/401249"], ["https://data.delijn.be/stops/203832", "https://data.delijn.be/stops/211048"], ["https://data.delijn.be/stops/401018", "https://data.delijn.be/stops/403743"], ["https://data.delijn.be/stops/502379", "https://data.delijn.be/stops/507578"], ["https://data.delijn.be/stops/101278", "https://data.delijn.be/stops/101279"], ["https://data.delijn.be/stops/103137", "https://data.delijn.be/stops/103138"], ["https://data.delijn.be/stops/408299", "https://data.delijn.be/stops/408302"], ["https://data.delijn.be/stops/300828", "https://data.delijn.be/stops/300832"], ["https://data.delijn.be/stops/102481", "https://data.delijn.be/stops/400418"], ["https://data.delijn.be/stops/402504", "https://data.delijn.be/stops/404062"], ["https://data.delijn.be/stops/206307", "https://data.delijn.be/stops/207307"], ["https://data.delijn.be/stops/205992", "https://data.delijn.be/stops/209352"], ["https://data.delijn.be/stops/300036", "https://data.delijn.be/stops/307444"], ["https://data.delijn.be/stops/206279", "https://data.delijn.be/stops/207278"], ["https://data.delijn.be/stops/503569", "https://data.delijn.be/stops/503573"], ["https://data.delijn.be/stops/507379", "https://data.delijn.be/stops/507578"], ["https://data.delijn.be/stops/208263", "https://data.delijn.be/stops/208496"], ["https://data.delijn.be/stops/204150", "https://data.delijn.be/stops/205591"], ["https://data.delijn.be/stops/400352", "https://data.delijn.be/stops/406866"], ["https://data.delijn.be/stops/402595", "https://data.delijn.be/stops/403254"], ["https://data.delijn.be/stops/505226", "https://data.delijn.be/stops/508849"], ["https://data.delijn.be/stops/503654", "https://data.delijn.be/stops/503655"], ["https://data.delijn.be/stops/505664", "https://data.delijn.be/stops/507469"], ["https://data.delijn.be/stops/108454", "https://data.delijn.be/stops/108512"], ["https://data.delijn.be/stops/209492", "https://data.delijn.be/stops/210066"], ["https://data.delijn.be/stops/202231", "https://data.delijn.be/stops/208890"], ["https://data.delijn.be/stops/401810", "https://data.delijn.be/stops/410356"], ["https://data.delijn.be/stops/505335", "https://data.delijn.be/stops/507663"], ["https://data.delijn.be/stops/202505", "https://data.delijn.be/stops/203505"], ["https://data.delijn.be/stops/409018", "https://data.delijn.be/stops/409021"], ["https://data.delijn.be/stops/300980", "https://data.delijn.be/stops/300981"], ["https://data.delijn.be/stops/502946", "https://data.delijn.be/stops/503587"], ["https://data.delijn.be/stops/200561", "https://data.delijn.be/stops/200563"], ["https://data.delijn.be/stops/302523", "https://data.delijn.be/stops/308886"], ["https://data.delijn.be/stops/109293", "https://data.delijn.be/stops/109295"], ["https://data.delijn.be/stops/304957", "https://data.delijn.be/stops/304959"], ["https://data.delijn.be/stops/107577", "https://data.delijn.be/stops/107578"], ["https://data.delijn.be/stops/405830", "https://data.delijn.be/stops/409695"], ["https://data.delijn.be/stops/206362", "https://data.delijn.be/stops/206377"], ["https://data.delijn.be/stops/405963", "https://data.delijn.be/stops/405966"], ["https://data.delijn.be/stops/209294", "https://data.delijn.be/stops/209726"], ["https://data.delijn.be/stops/105044", "https://data.delijn.be/stops/109759"], ["https://data.delijn.be/stops/303473", "https://data.delijn.be/stops/304175"], ["https://data.delijn.be/stops/507386", "https://data.delijn.be/stops/507397"], ["https://data.delijn.be/stops/501235", "https://data.delijn.be/stops/506235"], ["https://data.delijn.be/stops/205188", "https://data.delijn.be/stops/205189"], ["https://data.delijn.be/stops/103042", "https://data.delijn.be/stops/107524"], ["https://data.delijn.be/stops/408110", "https://data.delijn.be/stops/408159"], ["https://data.delijn.be/stops/505290", "https://data.delijn.be/stops/508906"], ["https://data.delijn.be/stops/500052", "https://data.delijn.be/stops/507076"], ["https://data.delijn.be/stops/502397", "https://data.delijn.be/stops/507412"], ["https://data.delijn.be/stops/206143", "https://data.delijn.be/stops/207298"], ["https://data.delijn.be/stops/408058", "https://data.delijn.be/stops/408059"], ["https://data.delijn.be/stops/302786", "https://data.delijn.be/stops/308593"], ["https://data.delijn.be/stops/204317", "https://data.delijn.be/stops/205058"], ["https://data.delijn.be/stops/409089", "https://data.delijn.be/stops/409211"], ["https://data.delijn.be/stops/503829", "https://data.delijn.be/stops/509052"], ["https://data.delijn.be/stops/200885", "https://data.delijn.be/stops/507596"], ["https://data.delijn.be/stops/104721", "https://data.delijn.be/stops/105235"], ["https://data.delijn.be/stops/206284", "https://data.delijn.be/stops/207284"], ["https://data.delijn.be/stops/409590", "https://data.delijn.be/stops/409598"], ["https://data.delijn.be/stops/503756", "https://data.delijn.be/stops/508756"], ["https://data.delijn.be/stops/504954", "https://data.delijn.be/stops/509955"], ["https://data.delijn.be/stops/508553", "https://data.delijn.be/stops/508559"], ["https://data.delijn.be/stops/305433", "https://data.delijn.be/stops/305509"], ["https://data.delijn.be/stops/501349", "https://data.delijn.be/stops/506320"], ["https://data.delijn.be/stops/207776", "https://data.delijn.be/stops/208741"], ["https://data.delijn.be/stops/103209", "https://data.delijn.be/stops/106580"], ["https://data.delijn.be/stops/402975", "https://data.delijn.be/stops/403316"], ["https://data.delijn.be/stops/401767", "https://data.delijn.be/stops/406346"], ["https://data.delijn.be/stops/201689", "https://data.delijn.be/stops/210128"], ["https://data.delijn.be/stops/503312", "https://data.delijn.be/stops/505814"], ["https://data.delijn.be/stops/105079", "https://data.delijn.be/stops/105089"], ["https://data.delijn.be/stops/106649", "https://data.delijn.be/stops/106650"], ["https://data.delijn.be/stops/202826", "https://data.delijn.be/stops/202827"], ["https://data.delijn.be/stops/405699", "https://data.delijn.be/stops/405900"], ["https://data.delijn.be/stops/206742", "https://data.delijn.be/stops/207985"], ["https://data.delijn.be/stops/504173", "https://data.delijn.be/stops/504747"], ["https://data.delijn.be/stops/405554", "https://data.delijn.be/stops/405555"], ["https://data.delijn.be/stops/209290", "https://data.delijn.be/stops/209639"], ["https://data.delijn.be/stops/300551", "https://data.delijn.be/stops/300617"], ["https://data.delijn.be/stops/108608", "https://data.delijn.be/stops/300071"], ["https://data.delijn.be/stops/106898", "https://data.delijn.be/stops/107214"], ["https://data.delijn.be/stops/502722", "https://data.delijn.be/stops/507239"], ["https://data.delijn.be/stops/403294", "https://data.delijn.be/stops/409173"], ["https://data.delijn.be/stops/304593", "https://data.delijn.be/stops/304634"], ["https://data.delijn.be/stops/503650", "https://data.delijn.be/stops/508930"], ["https://data.delijn.be/stops/502542", "https://data.delijn.be/stops/502546"], ["https://data.delijn.be/stops/501346", "https://data.delijn.be/stops/501699"], ["https://data.delijn.be/stops/300602", "https://data.delijn.be/stops/306799"], ["https://data.delijn.be/stops/101565", "https://data.delijn.be/stops/105800"], ["https://data.delijn.be/stops/503966", "https://data.delijn.be/stops/505532"], ["https://data.delijn.be/stops/103993", "https://data.delijn.be/stops/105392"], ["https://data.delijn.be/stops/509568", "https://data.delijn.be/stops/509569"], ["https://data.delijn.be/stops/304070", "https://data.delijn.be/stops/306278"], ["https://data.delijn.be/stops/305647", "https://data.delijn.be/stops/305666"], ["https://data.delijn.be/stops/201946", "https://data.delijn.be/stops/202455"], ["https://data.delijn.be/stops/206843", "https://data.delijn.be/stops/307982"], ["https://data.delijn.be/stops/305304", "https://data.delijn.be/stops/305310"], ["https://data.delijn.be/stops/504572", "https://data.delijn.be/stops/509574"], ["https://data.delijn.be/stops/301460", "https://data.delijn.be/stops/301461"], ["https://data.delijn.be/stops/206091", "https://data.delijn.be/stops/207093"], ["https://data.delijn.be/stops/207678", "https://data.delijn.be/stops/209144"], ["https://data.delijn.be/stops/400248", "https://data.delijn.be/stops/400929"], ["https://data.delijn.be/stops/305234", "https://data.delijn.be/stops/305296"], ["https://data.delijn.be/stops/402570", "https://data.delijn.be/stops/402571"], ["https://data.delijn.be/stops/402305", "https://data.delijn.be/stops/402306"], ["https://data.delijn.be/stops/406269", "https://data.delijn.be/stops/406420"], ["https://data.delijn.be/stops/401415", "https://data.delijn.be/stops/308957"], ["https://data.delijn.be/stops/101460", "https://data.delijn.be/stops/104408"], ["https://data.delijn.be/stops/201850", "https://data.delijn.be/stops/201882"], ["https://data.delijn.be/stops/400863", "https://data.delijn.be/stops/400864"], ["https://data.delijn.be/stops/400742", "https://data.delijn.be/stops/404262"], ["https://data.delijn.be/stops/304603", "https://data.delijn.be/stops/304645"], ["https://data.delijn.be/stops/204106", "https://data.delijn.be/stops/204586"], ["https://data.delijn.be/stops/107974", "https://data.delijn.be/stops/306759"], ["https://data.delijn.be/stops/502279", "https://data.delijn.be/stops/507284"], ["https://data.delijn.be/stops/203297", "https://data.delijn.be/stops/211856"], ["https://data.delijn.be/stops/400661", "https://data.delijn.be/stops/402539"], ["https://data.delijn.be/stops/307316", "https://data.delijn.be/stops/307318"], ["https://data.delijn.be/stops/108522", "https://data.delijn.be/stops/108526"], ["https://data.delijn.be/stops/206197", "https://data.delijn.be/stops/206198"], ["https://data.delijn.be/stops/200748", "https://data.delijn.be/stops/205071"], ["https://data.delijn.be/stops/200050", "https://data.delijn.be/stops/203934"], ["https://data.delijn.be/stops/201812", "https://data.delijn.be/stops/201819"], ["https://data.delijn.be/stops/305501", "https://data.delijn.be/stops/307877"], ["https://data.delijn.be/stops/303563", "https://data.delijn.be/stops/304129"], ["https://data.delijn.be/stops/405760", "https://data.delijn.be/stops/308932"], ["https://data.delijn.be/stops/402938", "https://data.delijn.be/stops/405972"], ["https://data.delijn.be/stops/200688", "https://data.delijn.be/stops/202374"], ["https://data.delijn.be/stops/503867", "https://data.delijn.be/stops/508867"], ["https://data.delijn.be/stops/101529", "https://data.delijn.be/stops/101531"], ["https://data.delijn.be/stops/104703", "https://data.delijn.be/stops/104706"], ["https://data.delijn.be/stops/101488", "https://data.delijn.be/stops/109502"], ["https://data.delijn.be/stops/508416", "https://data.delijn.be/stops/508443"], ["https://data.delijn.be/stops/300340", "https://data.delijn.be/stops/300368"], ["https://data.delijn.be/stops/503405", "https://data.delijn.be/stops/508406"], ["https://data.delijn.be/stops/304568", "https://data.delijn.be/stops/304585"], ["https://data.delijn.be/stops/403714", "https://data.delijn.be/stops/403723"], ["https://data.delijn.be/stops/202848", "https://data.delijn.be/stops/203848"], ["https://data.delijn.be/stops/404985", "https://data.delijn.be/stops/404987"], ["https://data.delijn.be/stops/208170", "https://data.delijn.be/stops/209169"], ["https://data.delijn.be/stops/204976", "https://data.delijn.be/stops/208248"], ["https://data.delijn.be/stops/106993", "https://data.delijn.be/stops/106996"], ["https://data.delijn.be/stops/501016", "https://data.delijn.be/stops/506614"], ["https://data.delijn.be/stops/101605", "https://data.delijn.be/stops/103620"], ["https://data.delijn.be/stops/209345", "https://data.delijn.be/stops/209347"], ["https://data.delijn.be/stops/504858", "https://data.delijn.be/stops/505435"], ["https://data.delijn.be/stops/106627", "https://data.delijn.be/stops/106671"], ["https://data.delijn.be/stops/404601", "https://data.delijn.be/stops/406831"], ["https://data.delijn.be/stops/105152", "https://data.delijn.be/stops/109523"], ["https://data.delijn.be/stops/102277", "https://data.delijn.be/stops/108031"], ["https://data.delijn.be/stops/402323", "https://data.delijn.be/stops/408364"], ["https://data.delijn.be/stops/301471", "https://data.delijn.be/stops/301497"], ["https://data.delijn.be/stops/305650", "https://data.delijn.be/stops/305661"], ["https://data.delijn.be/stops/302410", "https://data.delijn.be/stops/308814"], ["https://data.delijn.be/stops/206692", "https://data.delijn.be/stops/207693"], ["https://data.delijn.be/stops/206672", "https://data.delijn.be/stops/209632"], ["https://data.delijn.be/stops/301281", "https://data.delijn.be/stops/301313"], ["https://data.delijn.be/stops/305717", "https://data.delijn.be/stops/306304"], ["https://data.delijn.be/stops/503297", "https://data.delijn.be/stops/503308"], ["https://data.delijn.be/stops/400435", "https://data.delijn.be/stops/406785"], ["https://data.delijn.be/stops/301906", "https://data.delijn.be/stops/301908"], ["https://data.delijn.be/stops/200092", "https://data.delijn.be/stops/210059"], ["https://data.delijn.be/stops/301645", "https://data.delijn.be/stops/301662"], ["https://data.delijn.be/stops/205137", "https://data.delijn.be/stops/205239"], ["https://data.delijn.be/stops/505016", "https://data.delijn.be/stops/507354"], ["https://data.delijn.be/stops/308501", "https://data.delijn.be/stops/308520"], ["https://data.delijn.be/stops/108125", "https://data.delijn.be/stops/108127"], ["https://data.delijn.be/stops/104668", "https://data.delijn.be/stops/109568"], ["https://data.delijn.be/stops/402885", "https://data.delijn.be/stops/402887"], ["https://data.delijn.be/stops/101066", "https://data.delijn.be/stops/105962"], ["https://data.delijn.be/stops/406100", "https://data.delijn.be/stops/406110"], ["https://data.delijn.be/stops/301911", "https://data.delijn.be/stops/301913"], ["https://data.delijn.be/stops/300681", "https://data.delijn.be/stops/305965"], ["https://data.delijn.be/stops/208070", "https://data.delijn.be/stops/209072"], ["https://data.delijn.be/stops/402469", "https://data.delijn.be/stops/410076"], ["https://data.delijn.be/stops/202555", "https://data.delijn.be/stops/203556"], ["https://data.delijn.be/stops/101497", "https://data.delijn.be/stops/108307"], ["https://data.delijn.be/stops/105888", "https://data.delijn.be/stops/109744"], ["https://data.delijn.be/stops/505641", "https://data.delijn.be/stops/509813"], ["https://data.delijn.be/stops/502208", "https://data.delijn.be/stops/507208"], ["https://data.delijn.be/stops/505908", "https://data.delijn.be/stops/508801"], ["https://data.delijn.be/stops/108429", "https://data.delijn.be/stops/109579"], ["https://data.delijn.be/stops/502707", "https://data.delijn.be/stops/505687"], ["https://data.delijn.be/stops/504819", "https://data.delijn.be/stops/509820"], ["https://data.delijn.be/stops/209569", "https://data.delijn.be/stops/209570"], ["https://data.delijn.be/stops/208278", "https://data.delijn.be/stops/209278"], ["https://data.delijn.be/stops/210092", "https://data.delijn.be/stops/211127"], ["https://data.delijn.be/stops/406218", "https://data.delijn.be/stops/406222"], ["https://data.delijn.be/stops/203721", "https://data.delijn.be/stops/203722"], ["https://data.delijn.be/stops/201326", "https://data.delijn.be/stops/211004"], ["https://data.delijn.be/stops/301799", "https://data.delijn.be/stops/303704"], ["https://data.delijn.be/stops/405777", "https://data.delijn.be/stops/409761"], ["https://data.delijn.be/stops/204105", "https://data.delijn.be/stops/204110"], ["https://data.delijn.be/stops/202302", "https://data.delijn.be/stops/203304"], ["https://data.delijn.be/stops/106397", "https://data.delijn.be/stops/108440"], ["https://data.delijn.be/stops/504986", "https://data.delijn.be/stops/505291"], ["https://data.delijn.be/stops/306926", "https://data.delijn.be/stops/308726"], ["https://data.delijn.be/stops/206352", "https://data.delijn.be/stops/206377"], ["https://data.delijn.be/stops/300019", "https://data.delijn.be/stops/300276"], ["https://data.delijn.be/stops/103214", "https://data.delijn.be/stops/106792"], ["https://data.delijn.be/stops/503825", "https://data.delijn.be/stops/508825"], ["https://data.delijn.be/stops/404496", "https://data.delijn.be/stops/404497"], ["https://data.delijn.be/stops/301083", "https://data.delijn.be/stops/301084"], ["https://data.delijn.be/stops/503763", "https://data.delijn.be/stops/508760"], ["https://data.delijn.be/stops/106371", "https://data.delijn.be/stops/106387"], ["https://data.delijn.be/stops/108628", "https://data.delijn.be/stops/108995"], ["https://data.delijn.be/stops/108528", "https://data.delijn.be/stops/108536"], ["https://data.delijn.be/stops/302812", "https://data.delijn.be/stops/307813"], ["https://data.delijn.be/stops/202152", "https://data.delijn.be/stops/203151"], ["https://data.delijn.be/stops/105232", "https://data.delijn.be/stops/109926"], ["https://data.delijn.be/stops/202765", "https://data.delijn.be/stops/203765"], ["https://data.delijn.be/stops/504069", "https://data.delijn.be/stops/504836"], ["https://data.delijn.be/stops/101503", "https://data.delijn.be/stops/109343"], ["https://data.delijn.be/stops/403462", "https://data.delijn.be/stops/403482"], ["https://data.delijn.be/stops/308711", "https://data.delijn.be/stops/308712"], ["https://data.delijn.be/stops/408387", "https://data.delijn.be/stops/408389"], ["https://data.delijn.be/stops/300750", "https://data.delijn.be/stops/300753"], ["https://data.delijn.be/stops/302303", "https://data.delijn.be/stops/302317"], ["https://data.delijn.be/stops/206285", "https://data.delijn.be/stops/207285"], ["https://data.delijn.be/stops/301541", "https://data.delijn.be/stops/306960"], ["https://data.delijn.be/stops/410057", "https://data.delijn.be/stops/410089"], ["https://data.delijn.be/stops/103594", "https://data.delijn.be/stops/109126"], ["https://data.delijn.be/stops/501244", "https://data.delijn.be/stops/506244"], ["https://data.delijn.be/stops/203681", "https://data.delijn.be/stops/211023"], ["https://data.delijn.be/stops/205034", "https://data.delijn.be/stops/205035"], ["https://data.delijn.be/stops/302979", "https://data.delijn.be/stops/307067"], ["https://data.delijn.be/stops/403150", "https://data.delijn.be/stops/403153"], ["https://data.delijn.be/stops/407583", "https://data.delijn.be/stops/410321"], ["https://data.delijn.be/stops/308213", "https://data.delijn.be/stops/308248"], ["https://data.delijn.be/stops/103895", "https://data.delijn.be/stops/103896"], ["https://data.delijn.be/stops/300783", "https://data.delijn.be/stops/301298"], ["https://data.delijn.be/stops/405291", "https://data.delijn.be/stops/406726"], ["https://data.delijn.be/stops/404659", "https://data.delijn.be/stops/410133"], ["https://data.delijn.be/stops/206598", "https://data.delijn.be/stops/207598"], ["https://data.delijn.be/stops/206317", "https://data.delijn.be/stops/207811"], ["https://data.delijn.be/stops/201675", "https://data.delijn.be/stops/202209"], ["https://data.delijn.be/stops/304540", "https://data.delijn.be/stops/307587"], ["https://data.delijn.be/stops/200761", "https://data.delijn.be/stops/505974"], ["https://data.delijn.be/stops/508269", "https://data.delijn.be/stops/508475"], ["https://data.delijn.be/stops/218031", "https://data.delijn.be/stops/219031"], ["https://data.delijn.be/stops/200156", "https://data.delijn.be/stops/200701"], ["https://data.delijn.be/stops/104936", "https://data.delijn.be/stops/108353"], ["https://data.delijn.be/stops/501627", "https://data.delijn.be/stops/505542"], ["https://data.delijn.be/stops/304842", "https://data.delijn.be/stops/306369"], ["https://data.delijn.be/stops/102221", "https://data.delijn.be/stops/105538"], ["https://data.delijn.be/stops/504422", "https://data.delijn.be/stops/509428"], ["https://data.delijn.be/stops/501154", "https://data.delijn.be/stops/501161"], ["https://data.delijn.be/stops/107043", "https://data.delijn.be/stops/107044"], ["https://data.delijn.be/stops/401666", "https://data.delijn.be/stops/308273"], ["https://data.delijn.be/stops/202482", "https://data.delijn.be/stops/203482"], ["https://data.delijn.be/stops/401444", "https://data.delijn.be/stops/401445"], ["https://data.delijn.be/stops/303447", "https://data.delijn.be/stops/303448"], ["https://data.delijn.be/stops/207785", "https://data.delijn.be/stops/209188"], ["https://data.delijn.be/stops/404108", "https://data.delijn.be/stops/404109"], ["https://data.delijn.be/stops/301454", "https://data.delijn.be/stops/301455"], ["https://data.delijn.be/stops/102145", "https://data.delijn.be/stops/104122"], ["https://data.delijn.be/stops/502001", "https://data.delijn.be/stops/502039"], ["https://data.delijn.be/stops/303036", "https://data.delijn.be/stops/303105"], ["https://data.delijn.be/stops/405472", "https://data.delijn.be/stops/405474"], ["https://data.delijn.be/stops/208094", "https://data.delijn.be/stops/209631"], ["https://data.delijn.be/stops/501305", "https://data.delijn.be/stops/506477"], ["https://data.delijn.be/stops/208447", "https://data.delijn.be/stops/209446"], ["https://data.delijn.be/stops/208602", "https://data.delijn.be/stops/209602"], ["https://data.delijn.be/stops/407971", "https://data.delijn.be/stops/408230"], ["https://data.delijn.be/stops/303238", "https://data.delijn.be/stops/304247"], ["https://data.delijn.be/stops/405678", "https://data.delijn.be/stops/405684"], ["https://data.delijn.be/stops/508791", "https://data.delijn.be/stops/508795"], ["https://data.delijn.be/stops/503590", "https://data.delijn.be/stops/509883"], ["https://data.delijn.be/stops/109806", "https://data.delijn.be/stops/109807"], ["https://data.delijn.be/stops/504718", "https://data.delijn.be/stops/509118"], ["https://data.delijn.be/stops/300125", "https://data.delijn.be/stops/307071"], ["https://data.delijn.be/stops/303253", "https://data.delijn.be/stops/303266"], ["https://data.delijn.be/stops/505676", "https://data.delijn.be/stops/505679"], ["https://data.delijn.be/stops/502018", "https://data.delijn.be/stops/503138"], ["https://data.delijn.be/stops/107582", "https://data.delijn.be/stops/107583"], ["https://data.delijn.be/stops/206075", "https://data.delijn.be/stops/207260"], ["https://data.delijn.be/stops/300526", "https://data.delijn.be/stops/300531"], ["https://data.delijn.be/stops/302689", "https://data.delijn.be/stops/302697"], ["https://data.delijn.be/stops/503166", "https://data.delijn.be/stops/508160"], ["https://data.delijn.be/stops/408610", "https://data.delijn.be/stops/408769"], ["https://data.delijn.be/stops/200037", "https://data.delijn.be/stops/201375"], ["https://data.delijn.be/stops/101132", "https://data.delijn.be/stops/105987"], ["https://data.delijn.be/stops/502946", "https://data.delijn.be/stops/505095"], ["https://data.delijn.be/stops/201282", "https://data.delijn.be/stops/201336"], ["https://data.delijn.be/stops/200821", "https://data.delijn.be/stops/208653"], ["https://data.delijn.be/stops/300206", "https://data.delijn.be/stops/307130"], ["https://data.delijn.be/stops/400279", "https://data.delijn.be/stops/400339"], ["https://data.delijn.be/stops/300962", "https://data.delijn.be/stops/300972"], ["https://data.delijn.be/stops/505308", "https://data.delijn.be/stops/505309"], ["https://data.delijn.be/stops/108284", "https://data.delijn.be/stops/109654"], ["https://data.delijn.be/stops/403022", "https://data.delijn.be/stops/405653"], ["https://data.delijn.be/stops/200896", "https://data.delijn.be/stops/201120"], ["https://data.delijn.be/stops/304860", "https://data.delijn.be/stops/307644"], ["https://data.delijn.be/stops/504057", "https://data.delijn.be/stops/504531"], ["https://data.delijn.be/stops/401266", "https://data.delijn.be/stops/401267"], ["https://data.delijn.be/stops/306165", "https://data.delijn.be/stops/306166"], ["https://data.delijn.be/stops/105777", "https://data.delijn.be/stops/108013"], ["https://data.delijn.be/stops/400572", "https://data.delijn.be/stops/403226"], ["https://data.delijn.be/stops/102982", "https://data.delijn.be/stops/105029"], ["https://data.delijn.be/stops/305395", "https://data.delijn.be/stops/305396"], ["https://data.delijn.be/stops/402824", "https://data.delijn.be/stops/402827"], ["https://data.delijn.be/stops/503329", "https://data.delijn.be/stops/503980"], ["https://data.delijn.be/stops/501187", "https://data.delijn.be/stops/505746"], ["https://data.delijn.be/stops/203468", "https://data.delijn.be/stops/203469"], ["https://data.delijn.be/stops/400050", "https://data.delijn.be/stops/400051"], ["https://data.delijn.be/stops/200224", "https://data.delijn.be/stops/201224"], ["https://data.delijn.be/stops/209549", "https://data.delijn.be/stops/209551"], ["https://data.delijn.be/stops/208430", "https://data.delijn.be/stops/209427"], ["https://data.delijn.be/stops/204735", "https://data.delijn.be/stops/204759"], ["https://data.delijn.be/stops/403658", "https://data.delijn.be/stops/404849"], ["https://data.delijn.be/stops/205350", "https://data.delijn.be/stops/214002"], ["https://data.delijn.be/stops/304512", "https://data.delijn.be/stops/305602"], ["https://data.delijn.be/stops/505428", "https://data.delijn.be/stops/509019"], ["https://data.delijn.be/stops/502023", "https://data.delijn.be/stops/504758"], ["https://data.delijn.be/stops/201395", "https://data.delijn.be/stops/208718"], ["https://data.delijn.be/stops/102199", "https://data.delijn.be/stops/103317"], ["https://data.delijn.be/stops/501084", "https://data.delijn.be/stops/506435"], ["https://data.delijn.be/stops/403966", "https://data.delijn.be/stops/403967"], ["https://data.delijn.be/stops/104928", "https://data.delijn.be/stops/104931"], ["https://data.delijn.be/stops/206495", "https://data.delijn.be/stops/207495"], ["https://data.delijn.be/stops/503808", "https://data.delijn.be/stops/505423"], ["https://data.delijn.be/stops/200752", "https://data.delijn.be/stops/200771"], ["https://data.delijn.be/stops/105039", "https://data.delijn.be/stops/105041"], ["https://data.delijn.be/stops/502341", "https://data.delijn.be/stops/505089"], ["https://data.delijn.be/stops/202510", "https://data.delijn.be/stops/203510"], ["https://data.delijn.be/stops/401964", "https://data.delijn.be/stops/401986"], ["https://data.delijn.be/stops/406970", "https://data.delijn.be/stops/409476"], ["https://data.delijn.be/stops/200464", "https://data.delijn.be/stops/200664"], ["https://data.delijn.be/stops/503267", "https://data.delijn.be/stops/503274"], ["https://data.delijn.be/stops/505716", "https://data.delijn.be/stops/508483"], ["https://data.delijn.be/stops/108808", "https://data.delijn.be/stops/108813"], ["https://data.delijn.be/stops/200112", "https://data.delijn.be/stops/202355"], ["https://data.delijn.be/stops/505092", "https://data.delijn.be/stops/507340"], ["https://data.delijn.be/stops/208090", "https://data.delijn.be/stops/208560"], ["https://data.delijn.be/stops/502548", "https://data.delijn.be/stops/505735"], ["https://data.delijn.be/stops/500956", "https://data.delijn.be/stops/503287"], ["https://data.delijn.be/stops/402773", "https://data.delijn.be/stops/408274"], ["https://data.delijn.be/stops/209697", "https://data.delijn.be/stops/209700"], ["https://data.delijn.be/stops/201904", "https://data.delijn.be/stops/202512"], ["https://data.delijn.be/stops/400050", "https://data.delijn.be/stops/409143"], ["https://data.delijn.be/stops/202423", "https://data.delijn.be/stops/203423"], ["https://data.delijn.be/stops/308455", "https://data.delijn.be/stops/308456"], ["https://data.delijn.be/stops/405834", "https://data.delijn.be/stops/405835"], ["https://data.delijn.be/stops/407701", "https://data.delijn.be/stops/407769"], ["https://data.delijn.be/stops/407019", "https://data.delijn.be/stops/407085"], ["https://data.delijn.be/stops/302536", "https://data.delijn.be/stops/302538"], ["https://data.delijn.be/stops/404146", "https://data.delijn.be/stops/404199"], ["https://data.delijn.be/stops/408737", "https://data.delijn.be/stops/410192"], ["https://data.delijn.be/stops/200945", "https://data.delijn.be/stops/203696"], ["https://data.delijn.be/stops/202462", "https://data.delijn.be/stops/203462"], ["https://data.delijn.be/stops/201934", "https://data.delijn.be/stops/202949"], ["https://data.delijn.be/stops/306065", "https://data.delijn.be/stops/307599"], ["https://data.delijn.be/stops/404416", "https://data.delijn.be/stops/404449"], ["https://data.delijn.be/stops/104691", "https://data.delijn.be/stops/104696"], ["https://data.delijn.be/stops/304363", "https://data.delijn.be/stops/304364"], ["https://data.delijn.be/stops/202775", "https://data.delijn.be/stops/203213"], ["https://data.delijn.be/stops/107267", "https://data.delijn.be/stops/107268"], ["https://data.delijn.be/stops/405655", "https://data.delijn.be/stops/408447"], ["https://data.delijn.be/stops/303699", "https://data.delijn.be/stops/303781"], ["https://data.delijn.be/stops/208684", "https://data.delijn.be/stops/208686"], ["https://data.delijn.be/stops/206322", "https://data.delijn.be/stops/207722"], ["https://data.delijn.be/stops/304362", "https://data.delijn.be/stops/307372"], ["https://data.delijn.be/stops/508471", "https://data.delijn.be/stops/508947"], ["https://data.delijn.be/stops/503929", "https://data.delijn.be/stops/508925"], ["https://data.delijn.be/stops/501210", "https://data.delijn.be/stops/505036"], ["https://data.delijn.be/stops/102086", "https://data.delijn.be/stops/108858"], ["https://data.delijn.be/stops/201703", "https://data.delijn.be/stops/202564"], ["https://data.delijn.be/stops/400586", "https://data.delijn.be/stops/400597"], ["https://data.delijn.be/stops/207333", "https://data.delijn.be/stops/207707"], ["https://data.delijn.be/stops/201717", "https://data.delijn.be/stops/203578"], ["https://data.delijn.be/stops/200213", "https://data.delijn.be/stops/201216"], ["https://data.delijn.be/stops/203683", "https://data.delijn.be/stops/203707"], ["https://data.delijn.be/stops/405928", "https://data.delijn.be/stops/405929"], ["https://data.delijn.be/stops/200199", "https://data.delijn.be/stops/203889"], ["https://data.delijn.be/stops/404255", "https://data.delijn.be/stops/405195"], ["https://data.delijn.be/stops/106781", "https://data.delijn.be/stops/106782"], ["https://data.delijn.be/stops/503030", "https://data.delijn.be/stops/508030"], ["https://data.delijn.be/stops/204676", "https://data.delijn.be/stops/205338"], ["https://data.delijn.be/stops/302524", "https://data.delijn.be/stops/302528"], ["https://data.delijn.be/stops/103293", "https://data.delijn.be/stops/107686"], ["https://data.delijn.be/stops/307584", "https://data.delijn.be/stops/307585"], ["https://data.delijn.be/stops/101020", "https://data.delijn.be/stops/103905"], ["https://data.delijn.be/stops/404917", "https://data.delijn.be/stops/404946"], ["https://data.delijn.be/stops/400782", "https://data.delijn.be/stops/410393"], ["https://data.delijn.be/stops/509837", "https://data.delijn.be/stops/509838"], ["https://data.delijn.be/stops/101839", "https://data.delijn.be/stops/107625"], ["https://data.delijn.be/stops/108913", "https://data.delijn.be/stops/108916"], ["https://data.delijn.be/stops/505744", "https://data.delijn.be/stops/507503"], ["https://data.delijn.be/stops/506450", "https://data.delijn.be/stops/506451"], ["https://data.delijn.be/stops/405781", "https://data.delijn.be/stops/409760"], ["https://data.delijn.be/stops/208362", "https://data.delijn.be/stops/208778"], ["https://data.delijn.be/stops/400727", "https://data.delijn.be/stops/405173"], ["https://data.delijn.be/stops/501484", "https://data.delijn.be/stops/506682"], ["https://data.delijn.be/stops/505010", "https://data.delijn.be/stops/507710"], ["https://data.delijn.be/stops/104921", "https://data.delijn.be/stops/107861"], ["https://data.delijn.be/stops/102291", "https://data.delijn.be/stops/108019"], ["https://data.delijn.be/stops/303119", "https://data.delijn.be/stops/306319"], ["https://data.delijn.be/stops/504723", "https://data.delijn.be/stops/509486"], ["https://data.delijn.be/stops/402577", "https://data.delijn.be/stops/402592"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/504083"], ["https://data.delijn.be/stops/103963", "https://data.delijn.be/stops/405013"], ["https://data.delijn.be/stops/405920", "https://data.delijn.be/stops/405921"], ["https://data.delijn.be/stops/308474", "https://data.delijn.be/stops/308475"], ["https://data.delijn.be/stops/508026", "https://data.delijn.be/stops/508027"], ["https://data.delijn.be/stops/503645", "https://data.delijn.be/stops/503646"], ["https://data.delijn.be/stops/201919", "https://data.delijn.be/stops/206939"], ["https://data.delijn.be/stops/301679", "https://data.delijn.be/stops/301690"], ["https://data.delijn.be/stops/106284", "https://data.delijn.be/stops/106300"], ["https://data.delijn.be/stops/302490", "https://data.delijn.be/stops/302491"], ["https://data.delijn.be/stops/402764", "https://data.delijn.be/stops/402765"], ["https://data.delijn.be/stops/301809", "https://data.delijn.be/stops/301810"], ["https://data.delijn.be/stops/206272", "https://data.delijn.be/stops/207243"], ["https://data.delijn.be/stops/106104", "https://data.delijn.be/stops/106158"], ["https://data.delijn.be/stops/200485", "https://data.delijn.be/stops/209265"], ["https://data.delijn.be/stops/109615", "https://data.delijn.be/stops/109616"], ["https://data.delijn.be/stops/303194", "https://data.delijn.be/stops/303195"], ["https://data.delijn.be/stops/304410", "https://data.delijn.be/stops/307386"], ["https://data.delijn.be/stops/402822", "https://data.delijn.be/stops/409015"], ["https://data.delijn.be/stops/300940", "https://data.delijn.be/stops/300942"], ["https://data.delijn.be/stops/302584", "https://data.delijn.be/stops/302693"], ["https://data.delijn.be/stops/401897", "https://data.delijn.be/stops/402033"], ["https://data.delijn.be/stops/200258", "https://data.delijn.be/stops/203562"], ["https://data.delijn.be/stops/107110", "https://data.delijn.be/stops/109135"], ["https://data.delijn.be/stops/200755", "https://data.delijn.be/stops/208306"], ["https://data.delijn.be/stops/205113", "https://data.delijn.be/stops/205689"], ["https://data.delijn.be/stops/505140", "https://data.delijn.be/stops/509891"], ["https://data.delijn.be/stops/400534", "https://data.delijn.be/stops/410109"], ["https://data.delijn.be/stops/408160", "https://data.delijn.be/stops/408161"], ["https://data.delijn.be/stops/207555", "https://data.delijn.be/stops/209080"], ["https://data.delijn.be/stops/209603", "https://data.delijn.be/stops/307594"], ["https://data.delijn.be/stops/206611", "https://data.delijn.be/stops/206709"], ["https://data.delijn.be/stops/300852", "https://data.delijn.be/stops/300888"], ["https://data.delijn.be/stops/305994", "https://data.delijn.be/stops/305995"], ["https://data.delijn.be/stops/405129", "https://data.delijn.be/stops/405393"], ["https://data.delijn.be/stops/102014", "https://data.delijn.be/stops/104458"], ["https://data.delijn.be/stops/105677", "https://data.delijn.be/stops/105678"], ["https://data.delijn.be/stops/200659", "https://data.delijn.be/stops/201543"], ["https://data.delijn.be/stops/300826", "https://data.delijn.be/stops/300856"], ["https://data.delijn.be/stops/305406", "https://data.delijn.be/stops/305407"], ["https://data.delijn.be/stops/503482", "https://data.delijn.be/stops/508484"], ["https://data.delijn.be/stops/402203", "https://data.delijn.be/stops/402437"], ["https://data.delijn.be/stops/206565", "https://data.delijn.be/stops/207997"], ["https://data.delijn.be/stops/101701", "https://data.delijn.be/stops/108420"], ["https://data.delijn.be/stops/401946", "https://data.delijn.be/stops/405683"], ["https://data.delijn.be/stops/400056", "https://data.delijn.be/stops/400057"], ["https://data.delijn.be/stops/201497", "https://data.delijn.be/stops/210054"], ["https://data.delijn.be/stops/301319", "https://data.delijn.be/stops/306654"], ["https://data.delijn.be/stops/208554", "https://data.delijn.be/stops/209603"], ["https://data.delijn.be/stops/200331", "https://data.delijn.be/stops/203199"], ["https://data.delijn.be/stops/408506", "https://data.delijn.be/stops/408507"], ["https://data.delijn.be/stops/501074", "https://data.delijn.be/stops/501506"], ["https://data.delijn.be/stops/302976", "https://data.delijn.be/stops/302977"], ["https://data.delijn.be/stops/300007", "https://data.delijn.be/stops/301345"], ["https://data.delijn.be/stops/206977", "https://data.delijn.be/stops/207412"], ["https://data.delijn.be/stops/104931", "https://data.delijn.be/stops/107837"], ["https://data.delijn.be/stops/506447", "https://data.delijn.be/stops/506450"], ["https://data.delijn.be/stops/208660", "https://data.delijn.be/stops/209153"], ["https://data.delijn.be/stops/502143", "https://data.delijn.be/stops/507576"], ["https://data.delijn.be/stops/206623", "https://data.delijn.be/stops/206763"], ["https://data.delijn.be/stops/106396", "https://data.delijn.be/stops/106398"], ["https://data.delijn.be/stops/303559", "https://data.delijn.be/stops/305560"], ["https://data.delijn.be/stops/101685", "https://data.delijn.be/stops/108575"], ["https://data.delijn.be/stops/300859", "https://data.delijn.be/stops/300986"], ["https://data.delijn.be/stops/504417", "https://data.delijn.be/stops/509719"], ["https://data.delijn.be/stops/502530", "https://data.delijn.be/stops/507529"], ["https://data.delijn.be/stops/400275", "https://data.delijn.be/stops/400311"], ["https://data.delijn.be/stops/207801", "https://data.delijn.be/stops/216012"], ["https://data.delijn.be/stops/403148", "https://data.delijn.be/stops/403153"], ["https://data.delijn.be/stops/204765", "https://data.delijn.be/stops/205376"], ["https://data.delijn.be/stops/105191", "https://data.delijn.be/stops/105194"], ["https://data.delijn.be/stops/206517", "https://data.delijn.be/stops/207417"], ["https://data.delijn.be/stops/306163", "https://data.delijn.be/stops/306173"], ["https://data.delijn.be/stops/402483", "https://data.delijn.be/stops/402484"], ["https://data.delijn.be/stops/507663", "https://data.delijn.be/stops/507664"], ["https://data.delijn.be/stops/202728", "https://data.delijn.be/stops/203683"], ["https://data.delijn.be/stops/407984", "https://data.delijn.be/stops/408053"], ["https://data.delijn.be/stops/300493", "https://data.delijn.be/stops/302098"], ["https://data.delijn.be/stops/506050", "https://data.delijn.be/stops/507397"], ["https://data.delijn.be/stops/506072", "https://data.delijn.be/stops/506507"], ["https://data.delijn.be/stops/509063", "https://data.delijn.be/stops/509065"], ["https://data.delijn.be/stops/305613", "https://data.delijn.be/stops/308945"], ["https://data.delijn.be/stops/105971", "https://data.delijn.be/stops/108945"], ["https://data.delijn.be/stops/202959", "https://data.delijn.be/stops/203959"], ["https://data.delijn.be/stops/305333", "https://data.delijn.be/stops/307592"], ["https://data.delijn.be/stops/108063", "https://data.delijn.be/stops/108873"], ["https://data.delijn.be/stops/101200", "https://data.delijn.be/stops/102375"], ["https://data.delijn.be/stops/404997", "https://data.delijn.be/stops/409470"], ["https://data.delijn.be/stops/505962", "https://data.delijn.be/stops/508787"], ["https://data.delijn.be/stops/203710", "https://data.delijn.be/stops/203711"], ["https://data.delijn.be/stops/504395", "https://data.delijn.be/stops/505183"], ["https://data.delijn.be/stops/406966", "https://data.delijn.be/stops/406967"], ["https://data.delijn.be/stops/506489", "https://data.delijn.be/stops/506490"], ["https://data.delijn.be/stops/303421", "https://data.delijn.be/stops/305042"], ["https://data.delijn.be/stops/405716", "https://data.delijn.be/stops/405717"], ["https://data.delijn.be/stops/504771", "https://data.delijn.be/stops/508021"], ["https://data.delijn.be/stops/209332", "https://data.delijn.be/stops/209377"], ["https://data.delijn.be/stops/211017", "https://data.delijn.be/stops/505680"], ["https://data.delijn.be/stops/102736", "https://data.delijn.be/stops/102737"], ["https://data.delijn.be/stops/503021", "https://data.delijn.be/stops/505279"], ["https://data.delijn.be/stops/301971", "https://data.delijn.be/stops/306198"], ["https://data.delijn.be/stops/400103", "https://data.delijn.be/stops/400118"], ["https://data.delijn.be/stops/404515", "https://data.delijn.be/stops/406743"], ["https://data.delijn.be/stops/300553", "https://data.delijn.be/stops/300554"], ["https://data.delijn.be/stops/400034", "https://data.delijn.be/stops/402759"], ["https://data.delijn.be/stops/501258", "https://data.delijn.be/stops/501684"], ["https://data.delijn.be/stops/504115", "https://data.delijn.be/stops/504657"], ["https://data.delijn.be/stops/405440", "https://data.delijn.be/stops/405462"], ["https://data.delijn.be/stops/504035", "https://data.delijn.be/stops/505121"], ["https://data.delijn.be/stops/409301", "https://data.delijn.be/stops/409318"], ["https://data.delijn.be/stops/106737", "https://data.delijn.be/stops/106738"], ["https://data.delijn.be/stops/406950", "https://data.delijn.be/stops/406951"], ["https://data.delijn.be/stops/502283", "https://data.delijn.be/stops/507326"], ["https://data.delijn.be/stops/206460", "https://data.delijn.be/stops/207646"], ["https://data.delijn.be/stops/306898", "https://data.delijn.be/stops/308125"], ["https://data.delijn.be/stops/303248", "https://data.delijn.be/stops/307003"], ["https://data.delijn.be/stops/103914", "https://data.delijn.be/stops/107242"], ["https://data.delijn.be/stops/104284", "https://data.delijn.be/stops/105898"], ["https://data.delijn.be/stops/108686", "https://data.delijn.be/stops/108893"], ["https://data.delijn.be/stops/300190", "https://data.delijn.be/stops/304163"], ["https://data.delijn.be/stops/303479", "https://data.delijn.be/stops/303507"], ["https://data.delijn.be/stops/509506", "https://data.delijn.be/stops/509507"], ["https://data.delijn.be/stops/401373", "https://data.delijn.be/stops/401374"], ["https://data.delijn.be/stops/502442", "https://data.delijn.be/stops/507657"], ["https://data.delijn.be/stops/202960", "https://data.delijn.be/stops/203525"], ["https://data.delijn.be/stops/408734", "https://data.delijn.be/stops/408735"], ["https://data.delijn.be/stops/202171", "https://data.delijn.be/stops/203171"], ["https://data.delijn.be/stops/103259", "https://data.delijn.be/stops/103261"], ["https://data.delijn.be/stops/408035", "https://data.delijn.be/stops/408062"], ["https://data.delijn.be/stops/508522", "https://data.delijn.be/stops/508532"], ["https://data.delijn.be/stops/300702", "https://data.delijn.be/stops/306942"], ["https://data.delijn.be/stops/105334", "https://data.delijn.be/stops/105349"], ["https://data.delijn.be/stops/201682", "https://data.delijn.be/stops/202502"], ["https://data.delijn.be/stops/509279", "https://data.delijn.be/stops/509281"], ["https://data.delijn.be/stops/106278", "https://data.delijn.be/stops/106280"], ["https://data.delijn.be/stops/206189", "https://data.delijn.be/stops/206955"], ["https://data.delijn.be/stops/206627", "https://data.delijn.be/stops/207627"], ["https://data.delijn.be/stops/208116", "https://data.delijn.be/stops/208231"], ["https://data.delijn.be/stops/200891", "https://data.delijn.be/stops/507276"], ["https://data.delijn.be/stops/205002", "https://data.delijn.be/stops/205212"], ["https://data.delijn.be/stops/204340", "https://data.delijn.be/stops/205448"], ["https://data.delijn.be/stops/405660", "https://data.delijn.be/stops/303211"], ["https://data.delijn.be/stops/102023", "https://data.delijn.be/stops/104844"], ["https://data.delijn.be/stops/502743", "https://data.delijn.be/stops/505697"], ["https://data.delijn.be/stops/305966", "https://data.delijn.be/stops/307910"], ["https://data.delijn.be/stops/204294", "https://data.delijn.be/stops/205537"], ["https://data.delijn.be/stops/505537", "https://data.delijn.be/stops/509585"], ["https://data.delijn.be/stops/102204", "https://data.delijn.be/stops/105637"], ["https://data.delijn.be/stops/404610", "https://data.delijn.be/stops/404612"], ["https://data.delijn.be/stops/501215", "https://data.delijn.be/stops/506215"], ["https://data.delijn.be/stops/403200", "https://data.delijn.be/stops/403201"], ["https://data.delijn.be/stops/109751", "https://data.delijn.be/stops/308608"], ["https://data.delijn.be/stops/502595", "https://data.delijn.be/stops/507595"], ["https://data.delijn.be/stops/301380", "https://data.delijn.be/stops/306653"], ["https://data.delijn.be/stops/501307", "https://data.delijn.be/stops/506307"], ["https://data.delijn.be/stops/503283", "https://data.delijn.be/stops/508283"], ["https://data.delijn.be/stops/406168", "https://data.delijn.be/stops/406192"], ["https://data.delijn.be/stops/306793", "https://data.delijn.be/stops/307347"], ["https://data.delijn.be/stops/304919", "https://data.delijn.be/stops/305407"], ["https://data.delijn.be/stops/200094", "https://data.delijn.be/stops/204357"], ["https://data.delijn.be/stops/504786", "https://data.delijn.be/stops/504787"], ["https://data.delijn.be/stops/109166", "https://data.delijn.be/stops/109168"], ["https://data.delijn.be/stops/101025", "https://data.delijn.be/stops/102520"], ["https://data.delijn.be/stops/204674", "https://data.delijn.be/stops/205676"], ["https://data.delijn.be/stops/403475", "https://data.delijn.be/stops/410218"], ["https://data.delijn.be/stops/401486", "https://data.delijn.be/stops/401536"], ["https://data.delijn.be/stops/300851", "https://data.delijn.be/stops/301047"], ["https://data.delijn.be/stops/405034", "https://data.delijn.be/stops/307380"], ["https://data.delijn.be/stops/504679", "https://data.delijn.be/stops/505436"], ["https://data.delijn.be/stops/208044", "https://data.delijn.be/stops/209792"], ["https://data.delijn.be/stops/307356", "https://data.delijn.be/stops/307365"], ["https://data.delijn.be/stops/405200", "https://data.delijn.be/stops/405208"], ["https://data.delijn.be/stops/400212", "https://data.delijn.be/stops/407192"], ["https://data.delijn.be/stops/204643", "https://data.delijn.be/stops/204772"], ["https://data.delijn.be/stops/106180", "https://data.delijn.be/stops/107440"], ["https://data.delijn.be/stops/201709", "https://data.delijn.be/stops/203376"], ["https://data.delijn.be/stops/200943", "https://data.delijn.be/stops/202697"], ["https://data.delijn.be/stops/208649", "https://data.delijn.be/stops/208651"], ["https://data.delijn.be/stops/109719", "https://data.delijn.be/stops/400440"], ["https://data.delijn.be/stops/406308", "https://data.delijn.be/stops/406312"], ["https://data.delijn.be/stops/300185", "https://data.delijn.be/stops/300222"], ["https://data.delijn.be/stops/509510", "https://data.delijn.be/stops/509744"], ["https://data.delijn.be/stops/204223", "https://data.delijn.be/stops/204239"], ["https://data.delijn.be/stops/402986", "https://data.delijn.be/stops/408936"], ["https://data.delijn.be/stops/503214", "https://data.delijn.be/stops/508214"], ["https://data.delijn.be/stops/206424", "https://data.delijn.be/stops/207425"], ["https://data.delijn.be/stops/407321", "https://data.delijn.be/stops/409438"], ["https://data.delijn.be/stops/409048", "https://data.delijn.be/stops/409449"], ["https://data.delijn.be/stops/108149", "https://data.delijn.be/stops/108152"], ["https://data.delijn.be/stops/503617", "https://data.delijn.be/stops/508613"], ["https://data.delijn.be/stops/404647", "https://data.delijn.be/stops/405671"], ["https://data.delijn.be/stops/503090", "https://data.delijn.be/stops/508107"], ["https://data.delijn.be/stops/204446", "https://data.delijn.be/stops/204450"], ["https://data.delijn.be/stops/300244", "https://data.delijn.be/stops/300257"], ["https://data.delijn.be/stops/504276", "https://data.delijn.be/stops/509978"], ["https://data.delijn.be/stops/102265", "https://data.delijn.be/stops/103357"], ["https://data.delijn.be/stops/106202", "https://data.delijn.be/stops/109908"], ["https://data.delijn.be/stops/501069", "https://data.delijn.be/stops/505355"], ["https://data.delijn.be/stops/506029", "https://data.delijn.be/stops/506042"], ["https://data.delijn.be/stops/408372", "https://data.delijn.be/stops/408373"], ["https://data.delijn.be/stops/104794", "https://data.delijn.be/stops/106821"], ["https://data.delijn.be/stops/400255", "https://data.delijn.be/stops/405579"], ["https://data.delijn.be/stops/103234", "https://data.delijn.be/stops/109436"], ["https://data.delijn.be/stops/106496", "https://data.delijn.be/stops/106497"], ["https://data.delijn.be/stops/400761", "https://data.delijn.be/stops/400862"], ["https://data.delijn.be/stops/206377", "https://data.delijn.be/stops/207881"], ["https://data.delijn.be/stops/404934", "https://data.delijn.be/stops/404943"], ["https://data.delijn.be/stops/405922", "https://data.delijn.be/stops/405979"], ["https://data.delijn.be/stops/101596", "https://data.delijn.be/stops/106590"], ["https://data.delijn.be/stops/505823", "https://data.delijn.be/stops/507796"], ["https://data.delijn.be/stops/406519", "https://data.delijn.be/stops/408908"], ["https://data.delijn.be/stops/300762", "https://data.delijn.be/stops/306200"], ["https://data.delijn.be/stops/305712", "https://data.delijn.be/stops/306328"], ["https://data.delijn.be/stops/304220", "https://data.delijn.be/stops/308774"], ["https://data.delijn.be/stops/103039", "https://data.delijn.be/stops/106412"], ["https://data.delijn.be/stops/501533", "https://data.delijn.be/stops/506460"], ["https://data.delijn.be/stops/205713", "https://data.delijn.be/stops/205896"], ["https://data.delijn.be/stops/400199", "https://data.delijn.be/stops/406832"], ["https://data.delijn.be/stops/401287", "https://data.delijn.be/stops/410148"], ["https://data.delijn.be/stops/106432", "https://data.delijn.be/stops/106433"], ["https://data.delijn.be/stops/206863", "https://data.delijn.be/stops/206953"], ["https://data.delijn.be/stops/206437", "https://data.delijn.be/stops/207438"], ["https://data.delijn.be/stops/400841", "https://data.delijn.be/stops/404302"], ["https://data.delijn.be/stops/503530", "https://data.delijn.be/stops/508869"], ["https://data.delijn.be/stops/503067", "https://data.delijn.be/stops/508831"], ["https://data.delijn.be/stops/205169", "https://data.delijn.be/stops/205579"], ["https://data.delijn.be/stops/200971", "https://data.delijn.be/stops/206616"], ["https://data.delijn.be/stops/410220", "https://data.delijn.be/stops/410221"], ["https://data.delijn.be/stops/308086", "https://data.delijn.be/stops/308088"], ["https://data.delijn.be/stops/504611", "https://data.delijn.be/stops/509611"], ["https://data.delijn.be/stops/109110", "https://data.delijn.be/stops/109111"], ["https://data.delijn.be/stops/308529", "https://data.delijn.be/stops/308956"], ["https://data.delijn.be/stops/204334", "https://data.delijn.be/stops/205042"], ["https://data.delijn.be/stops/503655", "https://data.delijn.be/stops/509252"], ["https://data.delijn.be/stops/109979", "https://data.delijn.be/stops/109981"], ["https://data.delijn.be/stops/503453", "https://data.delijn.be/stops/508475"], ["https://data.delijn.be/stops/300126", "https://data.delijn.be/stops/304380"], ["https://data.delijn.be/stops/408101", "https://data.delijn.be/stops/408117"], ["https://data.delijn.be/stops/304307", "https://data.delijn.be/stops/304329"], ["https://data.delijn.be/stops/200933", "https://data.delijn.be/stops/203263"], ["https://data.delijn.be/stops/207786", "https://data.delijn.be/stops/208371"], ["https://data.delijn.be/stops/505718", "https://data.delijn.be/stops/508481"], ["https://data.delijn.be/stops/504243", "https://data.delijn.be/stops/504702"], ["https://data.delijn.be/stops/400222", "https://data.delijn.be/stops/401805"], ["https://data.delijn.be/stops/403205", "https://data.delijn.be/stops/403253"], ["https://data.delijn.be/stops/404366", "https://data.delijn.be/stops/404393"], ["https://data.delijn.be/stops/101606", "https://data.delijn.be/stops/101607"], ["https://data.delijn.be/stops/206751", "https://data.delijn.be/stops/209478"], ["https://data.delijn.be/stops/406527", "https://data.delijn.be/stops/406529"], ["https://data.delijn.be/stops/500952", "https://data.delijn.be/stops/590008"], ["https://data.delijn.be/stops/504147", "https://data.delijn.be/stops/505985"], ["https://data.delijn.be/stops/407450", "https://data.delijn.be/stops/407455"], ["https://data.delijn.be/stops/302109", "https://data.delijn.be/stops/302123"], ["https://data.delijn.be/stops/300488", "https://data.delijn.be/stops/300507"], ["https://data.delijn.be/stops/202402", "https://data.delijn.be/stops/203402"], ["https://data.delijn.be/stops/404768", "https://data.delijn.be/stops/404788"], ["https://data.delijn.be/stops/508782", "https://data.delijn.be/stops/508783"], ["https://data.delijn.be/stops/101431", "https://data.delijn.be/stops/107297"], ["https://data.delijn.be/stops/204373", "https://data.delijn.be/stops/205382"], ["https://data.delijn.be/stops/501638", "https://data.delijn.be/stops/506659"], ["https://data.delijn.be/stops/204725", "https://data.delijn.be/stops/204761"], ["https://data.delijn.be/stops/504725", "https://data.delijn.be/stops/505342"], ["https://data.delijn.be/stops/205293", "https://data.delijn.be/stops/205761"], ["https://data.delijn.be/stops/506776", "https://data.delijn.be/stops/506778"], ["https://data.delijn.be/stops/200574", "https://data.delijn.be/stops/201601"], ["https://data.delijn.be/stops/400010", "https://data.delijn.be/stops/400020"], ["https://data.delijn.be/stops/101907", "https://data.delijn.be/stops/107920"], ["https://data.delijn.be/stops/409710", "https://data.delijn.be/stops/409715"], ["https://data.delijn.be/stops/108824", "https://data.delijn.be/stops/108891"], ["https://data.delijn.be/stops/304641", "https://data.delijn.be/stops/308902"], ["https://data.delijn.be/stops/201732", "https://data.delijn.be/stops/201733"], ["https://data.delijn.be/stops/300084", "https://data.delijn.be/stops/306822"], ["https://data.delijn.be/stops/408615", "https://data.delijn.be/stops/408768"], ["https://data.delijn.be/stops/208194", "https://data.delijn.be/stops/209157"], ["https://data.delijn.be/stops/108281", "https://data.delijn.be/stops/109362"], ["https://data.delijn.be/stops/505708", "https://data.delijn.be/stops/505709"], ["https://data.delijn.be/stops/304334", "https://data.delijn.be/stops/304336"], ["https://data.delijn.be/stops/408655", "https://data.delijn.be/stops/408746"], ["https://data.delijn.be/stops/504576", "https://data.delijn.be/stops/504577"], ["https://data.delijn.be/stops/407852", "https://data.delijn.be/stops/408065"], ["https://data.delijn.be/stops/503393", "https://data.delijn.be/stops/508375"], ["https://data.delijn.be/stops/407022", "https://data.delijn.be/stops/407023"], ["https://data.delijn.be/stops/308500", "https://data.delijn.be/stops/308538"], ["https://data.delijn.be/stops/206175", "https://data.delijn.be/stops/207452"], ["https://data.delijn.be/stops/200385", "https://data.delijn.be/stops/200466"], ["https://data.delijn.be/stops/502263", "https://data.delijn.be/stops/507266"], ["https://data.delijn.be/stops/104822", "https://data.delijn.be/stops/108507"], ["https://data.delijn.be/stops/206169", "https://data.delijn.be/stops/303871"], ["https://data.delijn.be/stops/302266", "https://data.delijn.be/stops/302267"], ["https://data.delijn.be/stops/204136", "https://data.delijn.be/stops/205136"], ["https://data.delijn.be/stops/408260", "https://data.delijn.be/stops/408308"], ["https://data.delijn.be/stops/103989", "https://data.delijn.be/stops/109097"], ["https://data.delijn.be/stops/407700", "https://data.delijn.be/stops/407705"], ["https://data.delijn.be/stops/103326", "https://data.delijn.be/stops/103398"], ["https://data.delijn.be/stops/409565", "https://data.delijn.be/stops/409575"], ["https://data.delijn.be/stops/101093", "https://data.delijn.be/stops/104459"], ["https://data.delijn.be/stops/508812", "https://data.delijn.be/stops/508948"], ["https://data.delijn.be/stops/405763", "https://data.delijn.be/stops/409289"], ["https://data.delijn.be/stops/206976", "https://data.delijn.be/stops/307771"], ["https://data.delijn.be/stops/201758", "https://data.delijn.be/stops/201777"], ["https://data.delijn.be/stops/204693", "https://data.delijn.be/stops/205694"], ["https://data.delijn.be/stops/202876", "https://data.delijn.be/stops/203876"], ["https://data.delijn.be/stops/503806", "https://data.delijn.be/stops/508801"], ["https://data.delijn.be/stops/106918", "https://data.delijn.be/stops/106919"], ["https://data.delijn.be/stops/204375", "https://data.delijn.be/stops/205762"], ["https://data.delijn.be/stops/404441", "https://data.delijn.be/stops/407321"], ["https://data.delijn.be/stops/508875", "https://data.delijn.be/stops/508878"], ["https://data.delijn.be/stops/206249", "https://data.delijn.be/stops/207249"], ["https://data.delijn.be/stops/200361", "https://data.delijn.be/stops/201103"], ["https://data.delijn.be/stops/103363", "https://data.delijn.be/stops/104475"], ["https://data.delijn.be/stops/305209", "https://data.delijn.be/stops/306913"], ["https://data.delijn.be/stops/305103", "https://data.delijn.be/stops/305120"], ["https://data.delijn.be/stops/200428", "https://data.delijn.be/stops/201426"], ["https://data.delijn.be/stops/404714", "https://data.delijn.be/stops/404767"], ["https://data.delijn.be/stops/200960", "https://data.delijn.be/stops/201422"], ["https://data.delijn.be/stops/504759", "https://data.delijn.be/stops/509102"], ["https://data.delijn.be/stops/503797", "https://data.delijn.be/stops/508797"], ["https://data.delijn.be/stops/204341", "https://data.delijn.be/stops/205305"], ["https://data.delijn.be/stops/105434", "https://data.delijn.be/stops/109953"], ["https://data.delijn.be/stops/402026", "https://data.delijn.be/stops/403880"], ["https://data.delijn.be/stops/104404", "https://data.delijn.be/stops/204493"], ["https://data.delijn.be/stops/504710", "https://data.delijn.be/stops/509170"], ["https://data.delijn.be/stops/206358", "https://data.delijn.be/stops/207700"], ["https://data.delijn.be/stops/400863", "https://data.delijn.be/stops/409530"], ["https://data.delijn.be/stops/300233", "https://data.delijn.be/stops/300238"], ["https://data.delijn.be/stops/501222", "https://data.delijn.be/stops/506222"], ["https://data.delijn.be/stops/502110", "https://data.delijn.be/stops/502138"], ["https://data.delijn.be/stops/206428", "https://data.delijn.be/stops/207428"], ["https://data.delijn.be/stops/401007", "https://data.delijn.be/stops/401060"], ["https://data.delijn.be/stops/206643", "https://data.delijn.be/stops/206644"], ["https://data.delijn.be/stops/504143", "https://data.delijn.be/stops/505441"], ["https://data.delijn.be/stops/106174", "https://data.delijn.be/stops/106176"], ["https://data.delijn.be/stops/202878", "https://data.delijn.be/stops/203882"], ["https://data.delijn.be/stops/410328", "https://data.delijn.be/stops/410329"], ["https://data.delijn.be/stops/106053", "https://data.delijn.be/stops/107735"], ["https://data.delijn.be/stops/505508", "https://data.delijn.be/stops/507270"], ["https://data.delijn.be/stops/400763", "https://data.delijn.be/stops/400773"], ["https://data.delijn.be/stops/501470", "https://data.delijn.be/stops/506198"], ["https://data.delijn.be/stops/206673", "https://data.delijn.be/stops/209169"], ["https://data.delijn.be/stops/400090", "https://data.delijn.be/stops/400152"], ["https://data.delijn.be/stops/307722", "https://data.delijn.be/stops/307726"], ["https://data.delijn.be/stops/208154", "https://data.delijn.be/stops/209155"], ["https://data.delijn.be/stops/403525", "https://data.delijn.be/stops/404226"], ["https://data.delijn.be/stops/300526", "https://data.delijn.be/stops/302788"], ["https://data.delijn.be/stops/104428", "https://data.delijn.be/stops/104429"], ["https://data.delijn.be/stops/302126", "https://data.delijn.be/stops/304165"], ["https://data.delijn.be/stops/202096", "https://data.delijn.be/stops/203096"], ["https://data.delijn.be/stops/300773", "https://data.delijn.be/stops/300786"], ["https://data.delijn.be/stops/200722", "https://data.delijn.be/stops/203409"], ["https://data.delijn.be/stops/408423", "https://data.delijn.be/stops/408426"], ["https://data.delijn.be/stops/302200", "https://data.delijn.be/stops/308095"], ["https://data.delijn.be/stops/503251", "https://data.delijn.be/stops/508251"], ["https://data.delijn.be/stops/107238", "https://data.delijn.be/stops/107239"], ["https://data.delijn.be/stops/504006", "https://data.delijn.be/stops/504533"], ["https://data.delijn.be/stops/103502", "https://data.delijn.be/stops/106319"], ["https://data.delijn.be/stops/507598", "https://data.delijn.be/stops/507599"], ["https://data.delijn.be/stops/200608", "https://data.delijn.be/stops/202769"], ["https://data.delijn.be/stops/101925", "https://data.delijn.be/stops/104006"], ["https://data.delijn.be/stops/102766", "https://data.delijn.be/stops/107404"], ["https://data.delijn.be/stops/303695", "https://data.delijn.be/stops/305377"], ["https://data.delijn.be/stops/305839", "https://data.delijn.be/stops/305840"], ["https://data.delijn.be/stops/304638", "https://data.delijn.be/stops/305978"], ["https://data.delijn.be/stops/400230", "https://data.delijn.be/stops/406283"], ["https://data.delijn.be/stops/106639", "https://data.delijn.be/stops/106642"], ["https://data.delijn.be/stops/105699", "https://data.delijn.be/stops/106075"], ["https://data.delijn.be/stops/301696", "https://data.delijn.be/stops/301726"], ["https://data.delijn.be/stops/508047", "https://data.delijn.be/stops/508958"], ["https://data.delijn.be/stops/303720", "https://data.delijn.be/stops/303724"], ["https://data.delijn.be/stops/108700", "https://data.delijn.be/stops/108704"], ["https://data.delijn.be/stops/200973", "https://data.delijn.be/stops/206775"], ["https://data.delijn.be/stops/501697", "https://data.delijn.be/stops/507244"], ["https://data.delijn.be/stops/203239", "https://data.delijn.be/stops/210076"], ["https://data.delijn.be/stops/205986", "https://data.delijn.be/stops/207255"], ["https://data.delijn.be/stops/504838", "https://data.delijn.be/stops/504979"], ["https://data.delijn.be/stops/407969", "https://data.delijn.be/stops/408425"], ["https://data.delijn.be/stops/206492", "https://data.delijn.be/stops/207449"], ["https://data.delijn.be/stops/502700", "https://data.delijn.be/stops/507700"], ["https://data.delijn.be/stops/105014", "https://data.delijn.be/stops/105111"], ["https://data.delijn.be/stops/300364", "https://data.delijn.be/stops/300402"], ["https://data.delijn.be/stops/505408", "https://data.delijn.be/stops/508988"], ["https://data.delijn.be/stops/206559", "https://data.delijn.be/stops/206839"], ["https://data.delijn.be/stops/304098", "https://data.delijn.be/stops/304117"], ["https://data.delijn.be/stops/406998", "https://data.delijn.be/stops/407281"], ["https://data.delijn.be/stops/101446", "https://data.delijn.be/stops/109665"], ["https://data.delijn.be/stops/202638", "https://data.delijn.be/stops/203638"], ["https://data.delijn.be/stops/301425", "https://data.delijn.be/stops/301426"], ["https://data.delijn.be/stops/202695", "https://data.delijn.be/stops/202696"], ["https://data.delijn.be/stops/305644", "https://data.delijn.be/stops/307102"], ["https://data.delijn.be/stops/400665", "https://data.delijn.be/stops/408983"], ["https://data.delijn.be/stops/504515", "https://data.delijn.be/stops/509014"], ["https://data.delijn.be/stops/401419", "https://data.delijn.be/stops/307877"], ["https://data.delijn.be/stops/402390", "https://data.delijn.be/stops/410042"], ["https://data.delijn.be/stops/401399", "https://data.delijn.be/stops/401404"], ["https://data.delijn.be/stops/504454", "https://data.delijn.be/stops/508681"], ["https://data.delijn.be/stops/209769", "https://data.delijn.be/stops/219009"], ["https://data.delijn.be/stops/306142", "https://data.delijn.be/stops/306645"], ["https://data.delijn.be/stops/503924", "https://data.delijn.be/stops/508359"], ["https://data.delijn.be/stops/505768", "https://data.delijn.be/stops/507049"], ["https://data.delijn.be/stops/300760", "https://data.delijn.be/stops/300792"], ["https://data.delijn.be/stops/302063", "https://data.delijn.be/stops/302729"], ["https://data.delijn.be/stops/200344", "https://data.delijn.be/stops/201380"], ["https://data.delijn.be/stops/406221", "https://data.delijn.be/stops/406355"], ["https://data.delijn.be/stops/101797", "https://data.delijn.be/stops/108522"], ["https://data.delijn.be/stops/408326", "https://data.delijn.be/stops/408339"], ["https://data.delijn.be/stops/204515", "https://data.delijn.be/stops/205515"], ["https://data.delijn.be/stops/201972", "https://data.delijn.be/stops/202863"], ["https://data.delijn.be/stops/400184", "https://data.delijn.be/stops/407627"], ["https://data.delijn.be/stops/501449", "https://data.delijn.be/stops/506449"], ["https://data.delijn.be/stops/500159", "https://data.delijn.be/stops/508541"], ["https://data.delijn.be/stops/300686", "https://data.delijn.be/stops/308936"], ["https://data.delijn.be/stops/508721", "https://data.delijn.be/stops/508728"], ["https://data.delijn.be/stops/204014", "https://data.delijn.be/stops/204363"], ["https://data.delijn.be/stops/308473", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/208698", "https://data.delijn.be/stops/208709"], ["https://data.delijn.be/stops/206140", "https://data.delijn.be/stops/206722"], ["https://data.delijn.be/stops/102473", "https://data.delijn.be/stops/400359"], ["https://data.delijn.be/stops/400620", "https://data.delijn.be/stops/400621"], ["https://data.delijn.be/stops/105737", "https://data.delijn.be/stops/105739"], ["https://data.delijn.be/stops/206411", "https://data.delijn.be/stops/207600"], ["https://data.delijn.be/stops/206389", "https://data.delijn.be/stops/206541"], ["https://data.delijn.be/stops/200214", "https://data.delijn.be/stops/201214"], ["https://data.delijn.be/stops/200540", "https://data.delijn.be/stops/201539"], ["https://data.delijn.be/stops/401427", "https://data.delijn.be/stops/402128"], ["https://data.delijn.be/stops/304004", "https://data.delijn.be/stops/304024"], ["https://data.delijn.be/stops/503197", "https://data.delijn.be/stops/503390"], ["https://data.delijn.be/stops/406910", "https://data.delijn.be/stops/409453"], ["https://data.delijn.be/stops/401388", "https://data.delijn.be/stops/401389"], ["https://data.delijn.be/stops/507601", "https://data.delijn.be/stops/507769"], ["https://data.delijn.be/stops/507524", "https://data.delijn.be/stops/507808"], ["https://data.delijn.be/stops/200432", "https://data.delijn.be/stops/201431"], ["https://data.delijn.be/stops/501412", "https://data.delijn.be/stops/506413"], ["https://data.delijn.be/stops/302210", "https://data.delijn.be/stops/302236"], ["https://data.delijn.be/stops/505724", "https://data.delijn.be/stops/507597"], ["https://data.delijn.be/stops/407632", "https://data.delijn.be/stops/407633"], ["https://data.delijn.be/stops/109693", "https://data.delijn.be/stops/109711"], ["https://data.delijn.be/stops/208678", "https://data.delijn.be/stops/208804"], ["https://data.delijn.be/stops/201530", "https://data.delijn.be/stops/210528"], ["https://data.delijn.be/stops/503300", "https://data.delijn.be/stops/503716"], ["https://data.delijn.be/stops/302563", "https://data.delijn.be/stops/302567"], ["https://data.delijn.be/stops/302266", "https://data.delijn.be/stops/302936"], ["https://data.delijn.be/stops/403446", "https://data.delijn.be/stops/409272"], ["https://data.delijn.be/stops/308011", "https://data.delijn.be/stops/308013"], ["https://data.delijn.be/stops/109807", "https://data.delijn.be/stops/109813"], ["https://data.delijn.be/stops/200218", "https://data.delijn.be/stops/200219"], ["https://data.delijn.be/stops/207667", "https://data.delijn.be/stops/209064"], ["https://data.delijn.be/stops/105736", "https://data.delijn.be/stops/109941"], ["https://data.delijn.be/stops/104431", "https://data.delijn.be/stops/106783"], ["https://data.delijn.be/stops/303483", "https://data.delijn.be/stops/307069"], ["https://data.delijn.be/stops/304769", "https://data.delijn.be/stops/304771"], ["https://data.delijn.be/stops/105491", "https://data.delijn.be/stops/105494"], ["https://data.delijn.be/stops/303438", "https://data.delijn.be/stops/303446"], ["https://data.delijn.be/stops/301091", "https://data.delijn.be/stops/307046"], ["https://data.delijn.be/stops/202766", "https://data.delijn.be/stops/203766"], ["https://data.delijn.be/stops/109512", "https://data.delijn.be/stops/109513"], ["https://data.delijn.be/stops/301074", "https://data.delijn.be/stops/302479"], ["https://data.delijn.be/stops/200233", "https://data.delijn.be/stops/202354"], ["https://data.delijn.be/stops/208415", "https://data.delijn.be/stops/209414"], ["https://data.delijn.be/stops/401180", "https://data.delijn.be/stops/407323"], ["https://data.delijn.be/stops/105273", "https://data.delijn.be/stops/105276"], ["https://data.delijn.be/stops/508879", "https://data.delijn.be/stops/508883"], ["https://data.delijn.be/stops/208277", "https://data.delijn.be/stops/209276"], ["https://data.delijn.be/stops/305616", "https://data.delijn.be/stops/305618"], ["https://data.delijn.be/stops/405050", "https://data.delijn.be/stops/405051"], ["https://data.delijn.be/stops/301390", "https://data.delijn.be/stops/304174"], ["https://data.delijn.be/stops/505176", "https://data.delijn.be/stops/509635"], ["https://data.delijn.be/stops/407964", "https://data.delijn.be/stops/407969"], ["https://data.delijn.be/stops/303272", "https://data.delijn.be/stops/305729"], ["https://data.delijn.be/stops/400039", "https://data.delijn.be/stops/400349"], ["https://data.delijn.be/stops/307012", "https://data.delijn.be/stops/307014"], ["https://data.delijn.be/stops/403752", "https://data.delijn.be/stops/403781"], ["https://data.delijn.be/stops/303118", "https://data.delijn.be/stops/304659"], ["https://data.delijn.be/stops/401580", "https://data.delijn.be/stops/401744"], ["https://data.delijn.be/stops/405583", "https://data.delijn.be/stops/405604"], ["https://data.delijn.be/stops/305573", "https://data.delijn.be/stops/307044"], ["https://data.delijn.be/stops/408109", "https://data.delijn.be/stops/408160"], ["https://data.delijn.be/stops/202139", "https://data.delijn.be/stops/203993"], ["https://data.delijn.be/stops/108280", "https://data.delijn.be/stops/109005"], ["https://data.delijn.be/stops/303812", "https://data.delijn.be/stops/303820"], ["https://data.delijn.be/stops/402287", "https://data.delijn.be/stops/402471"], ["https://data.delijn.be/stops/207777", "https://data.delijn.be/stops/207778"], ["https://data.delijn.be/stops/202424", "https://data.delijn.be/stops/202425"], ["https://data.delijn.be/stops/407018", "https://data.delijn.be/stops/407913"], ["https://data.delijn.be/stops/205099", "https://data.delijn.be/stops/205713"], ["https://data.delijn.be/stops/402180", "https://data.delijn.be/stops/402430"], ["https://data.delijn.be/stops/209094", "https://data.delijn.be/stops/209630"], ["https://data.delijn.be/stops/108291", "https://data.delijn.be/stops/109363"], ["https://data.delijn.be/stops/200732", "https://data.delijn.be/stops/202625"], ["https://data.delijn.be/stops/204215", "https://data.delijn.be/stops/204366"], ["https://data.delijn.be/stops/204068", "https://data.delijn.be/stops/204189"], ["https://data.delijn.be/stops/303851", "https://data.delijn.be/stops/303985"], ["https://data.delijn.be/stops/105506", "https://data.delijn.be/stops/105786"], ["https://data.delijn.be/stops/103113", "https://data.delijn.be/stops/106813"], ["https://data.delijn.be/stops/201203", "https://data.delijn.be/stops/201204"], ["https://data.delijn.be/stops/408532", "https://data.delijn.be/stops/408533"], ["https://data.delijn.be/stops/402076", "https://data.delijn.be/stops/405554"], ["https://data.delijn.be/stops/101799", "https://data.delijn.be/stops/108509"], ["https://data.delijn.be/stops/300201", "https://data.delijn.be/stops/308786"], ["https://data.delijn.be/stops/502509", "https://data.delijn.be/stops/507489"], ["https://data.delijn.be/stops/402743", "https://data.delijn.be/stops/402869"], ["https://data.delijn.be/stops/303843", "https://data.delijn.be/stops/308978"], ["https://data.delijn.be/stops/103268", "https://data.delijn.be/stops/103269"], ["https://data.delijn.be/stops/107066", "https://data.delijn.be/stops/109188"], ["https://data.delijn.be/stops/109711", "https://data.delijn.be/stops/406498"], ["https://data.delijn.be/stops/204704", "https://data.delijn.be/stops/205705"], ["https://data.delijn.be/stops/509034", "https://data.delijn.be/stops/509704"], ["https://data.delijn.be/stops/301521", "https://data.delijn.be/stops/308079"], ["https://data.delijn.be/stops/208063", "https://data.delijn.be/stops/209064"], ["https://data.delijn.be/stops/503185", "https://data.delijn.be/stops/508185"], ["https://data.delijn.be/stops/102597", "https://data.delijn.be/stops/205650"], ["https://data.delijn.be/stops/106621", "https://data.delijn.be/stops/108017"], ["https://data.delijn.be/stops/301410", "https://data.delijn.be/stops/305599"], ["https://data.delijn.be/stops/501296", "https://data.delijn.be/stops/506315"], ["https://data.delijn.be/stops/301427", "https://data.delijn.be/stops/301428"], ["https://data.delijn.be/stops/109026", "https://data.delijn.be/stops/109027"], ["https://data.delijn.be/stops/301695", "https://data.delijn.be/stops/301702"], ["https://data.delijn.be/stops/105078", "https://data.delijn.be/stops/105079"], ["https://data.delijn.be/stops/305618", "https://data.delijn.be/stops/305619"], ["https://data.delijn.be/stops/505076", "https://data.delijn.be/stops/507467"], ["https://data.delijn.be/stops/104050", "https://data.delijn.be/stops/104060"], ["https://data.delijn.be/stops/106911", "https://data.delijn.be/stops/106912"], ["https://data.delijn.be/stops/105069", "https://data.delijn.be/stops/106737"], ["https://data.delijn.be/stops/503880", "https://data.delijn.be/stops/505134"], ["https://data.delijn.be/stops/204417", "https://data.delijn.be/stops/205116"], ["https://data.delijn.be/stops/301689", "https://data.delijn.be/stops/307976"], ["https://data.delijn.be/stops/101070", "https://data.delijn.be/stops/102795"], ["https://data.delijn.be/stops/404285", "https://data.delijn.be/stops/404286"], ["https://data.delijn.be/stops/203406", "https://data.delijn.be/stops/211405"], ["https://data.delijn.be/stops/208181", "https://data.delijn.be/stops/209180"], ["https://data.delijn.be/stops/303260", "https://data.delijn.be/stops/305642"], ["https://data.delijn.be/stops/308472", "https://data.delijn.be/stops/308489"], ["https://data.delijn.be/stops/200100", "https://data.delijn.be/stops/201101"], ["https://data.delijn.be/stops/407155", "https://data.delijn.be/stops/407167"], ["https://data.delijn.be/stops/403128", "https://data.delijn.be/stops/407580"], ["https://data.delijn.be/stops/405489", "https://data.delijn.be/stops/405490"], ["https://data.delijn.be/stops/301257", "https://data.delijn.be/stops/301262"], ["https://data.delijn.be/stops/502579", "https://data.delijn.be/stops/507145"], ["https://data.delijn.be/stops/106376", "https://data.delijn.be/stops/106377"], ["https://data.delijn.be/stops/406046", "https://data.delijn.be/stops/406123"], ["https://data.delijn.be/stops/206931", "https://data.delijn.be/stops/207910"], ["https://data.delijn.be/stops/102073", "https://data.delijn.be/stops/106933"], ["https://data.delijn.be/stops/303953", "https://data.delijn.be/stops/303960"], ["https://data.delijn.be/stops/207214", "https://data.delijn.be/stops/207820"], ["https://data.delijn.be/stops/104602", "https://data.delijn.be/stops/108045"], ["https://data.delijn.be/stops/501438", "https://data.delijn.be/stops/506087"], ["https://data.delijn.be/stops/204226", "https://data.delijn.be/stops/205225"], ["https://data.delijn.be/stops/104332", "https://data.delijn.be/stops/107548"], ["https://data.delijn.be/stops/206584", "https://data.delijn.be/stops/206841"], ["https://data.delijn.be/stops/302734", "https://data.delijn.be/stops/302752"], ["https://data.delijn.be/stops/103232", "https://data.delijn.be/stops/103557"], ["https://data.delijn.be/stops/108679", "https://data.delijn.be/stops/306624"], ["https://data.delijn.be/stops/207467", "https://data.delijn.be/stops/207510"], ["https://data.delijn.be/stops/302919", "https://data.delijn.be/stops/307008"], ["https://data.delijn.be/stops/207190", "https://data.delijn.be/stops/308567"], ["https://data.delijn.be/stops/105248", "https://data.delijn.be/stops/105251"], ["https://data.delijn.be/stops/401324", "https://data.delijn.be/stops/401368"], ["https://data.delijn.be/stops/503379", "https://data.delijn.be/stops/508357"], ["https://data.delijn.be/stops/208094", "https://data.delijn.be/stops/209094"], ["https://data.delijn.be/stops/107492", "https://data.delijn.be/stops/107493"], ["https://data.delijn.be/stops/401444", "https://data.delijn.be/stops/401513"], ["https://data.delijn.be/stops/301649", "https://data.delijn.be/stops/306143"], ["https://data.delijn.be/stops/503302", "https://data.delijn.be/stops/508302"], ["https://data.delijn.be/stops/204382", "https://data.delijn.be/stops/204762"], ["https://data.delijn.be/stops/206122", "https://data.delijn.be/stops/206473"], ["https://data.delijn.be/stops/107880", "https://data.delijn.be/stops/107885"], ["https://data.delijn.be/stops/404988", "https://data.delijn.be/stops/406900"], ["https://data.delijn.be/stops/402456", "https://data.delijn.be/stops/402457"], ["https://data.delijn.be/stops/208405", "https://data.delijn.be/stops/209413"], ["https://data.delijn.be/stops/400030", "https://data.delijn.be/stops/400439"], ["https://data.delijn.be/stops/206228", "https://data.delijn.be/stops/300226"], ["https://data.delijn.be/stops/200045", "https://data.delijn.be/stops/201218"], ["https://data.delijn.be/stops/204654", "https://data.delijn.be/stops/205830"], ["https://data.delijn.be/stops/400527", "https://data.delijn.be/stops/404531"], ["https://data.delijn.be/stops/303616", "https://data.delijn.be/stops/304615"], ["https://data.delijn.be/stops/408970", "https://data.delijn.be/stops/409242"], ["https://data.delijn.be/stops/503087", "https://data.delijn.be/stops/508087"], ["https://data.delijn.be/stops/503088", "https://data.delijn.be/stops/503091"], ["https://data.delijn.be/stops/101202", "https://data.delijn.be/stops/204661"], ["https://data.delijn.be/stops/206530", "https://data.delijn.be/stops/207822"], ["https://data.delijn.be/stops/301569", "https://data.delijn.be/stops/303010"], ["https://data.delijn.be/stops/407874", "https://data.delijn.be/stops/407995"], ["https://data.delijn.be/stops/504198", "https://data.delijn.be/stops/509199"], ["https://data.delijn.be/stops/104771", "https://data.delijn.be/stops/108681"], ["https://data.delijn.be/stops/302293", "https://data.delijn.be/stops/304951"], ["https://data.delijn.be/stops/203284", "https://data.delijn.be/stops/210005"], ["https://data.delijn.be/stops/503850", "https://data.delijn.be/stops/510028"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/209062"], ["https://data.delijn.be/stops/403328", "https://data.delijn.be/stops/410013"], ["https://data.delijn.be/stops/301614", "https://data.delijn.be/stops/301615"], ["https://data.delijn.be/stops/403887", "https://data.delijn.be/stops/403890"], ["https://data.delijn.be/stops/501106", "https://data.delijn.be/stops/506106"], ["https://data.delijn.be/stops/109499", "https://data.delijn.be/stops/304042"], ["https://data.delijn.be/stops/501064", "https://data.delijn.be/stops/501405"], ["https://data.delijn.be/stops/202741", "https://data.delijn.be/stops/203872"], ["https://data.delijn.be/stops/503160", "https://data.delijn.be/stops/508178"], ["https://data.delijn.be/stops/405695", "https://data.delijn.be/stops/405991"], ["https://data.delijn.be/stops/501028", "https://data.delijn.be/stops/506028"], ["https://data.delijn.be/stops/501424", "https://data.delijn.be/stops/506254"], ["https://data.delijn.be/stops/401588", "https://data.delijn.be/stops/401590"], ["https://data.delijn.be/stops/300715", "https://data.delijn.be/stops/302607"], ["https://data.delijn.be/stops/406403", "https://data.delijn.be/stops/406405"], ["https://data.delijn.be/stops/303289", "https://data.delijn.be/stops/308737"], ["https://data.delijn.be/stops/206215", "https://data.delijn.be/stops/207967"], ["https://data.delijn.be/stops/108082", "https://data.delijn.be/stops/108832"], ["https://data.delijn.be/stops/301344", "https://data.delijn.be/stops/301345"], ["https://data.delijn.be/stops/401294", "https://data.delijn.be/stops/401295"], ["https://data.delijn.be/stops/504668", "https://data.delijn.be/stops/509895"], ["https://data.delijn.be/stops/506607", "https://data.delijn.be/stops/506608"], ["https://data.delijn.be/stops/501172", "https://data.delijn.be/stops/506175"], ["https://data.delijn.be/stops/105763", "https://data.delijn.be/stops/107463"], ["https://data.delijn.be/stops/400833", "https://data.delijn.be/stops/403573"], ["https://data.delijn.be/stops/103744", "https://data.delijn.be/stops/104340"], ["https://data.delijn.be/stops/207069", "https://data.delijn.be/stops/207267"], ["https://data.delijn.be/stops/308424", "https://data.delijn.be/stops/308427"], ["https://data.delijn.be/stops/305565", "https://data.delijn.be/stops/308829"], ["https://data.delijn.be/stops/300214", "https://data.delijn.be/stops/302147"], ["https://data.delijn.be/stops/404355", "https://data.delijn.be/stops/404949"], ["https://data.delijn.be/stops/206719", "https://data.delijn.be/stops/207652"], ["https://data.delijn.be/stops/200173", "https://data.delijn.be/stops/200174"], ["https://data.delijn.be/stops/508511", "https://data.delijn.be/stops/509824"], ["https://data.delijn.be/stops/206954", "https://data.delijn.be/stops/300170"], ["https://data.delijn.be/stops/301325", "https://data.delijn.be/stops/305919"], ["https://data.delijn.be/stops/106153", "https://data.delijn.be/stops/106154"], ["https://data.delijn.be/stops/308743", "https://data.delijn.be/stops/308746"], ["https://data.delijn.be/stops/406141", "https://data.delijn.be/stops/406367"], ["https://data.delijn.be/stops/102752", "https://data.delijn.be/stops/102754"], ["https://data.delijn.be/stops/303431", "https://data.delijn.be/stops/303433"], ["https://data.delijn.be/stops/403792", "https://data.delijn.be/stops/403816"], ["https://data.delijn.be/stops/104013", "https://data.delijn.be/stops/104027"], ["https://data.delijn.be/stops/204683", "https://data.delijn.be/stops/205683"], ["https://data.delijn.be/stops/402150", "https://data.delijn.be/stops/402154"], ["https://data.delijn.be/stops/204997", "https://data.delijn.be/stops/508643"], ["https://data.delijn.be/stops/307775", "https://data.delijn.be/stops/307777"], ["https://data.delijn.be/stops/200576", "https://data.delijn.be/stops/201575"], ["https://data.delijn.be/stops/206510", "https://data.delijn.be/stops/207511"], ["https://data.delijn.be/stops/503621", "https://data.delijn.be/stops/508621"], ["https://data.delijn.be/stops/401666", "https://data.delijn.be/stops/307906"], ["https://data.delijn.be/stops/300727", "https://data.delijn.be/stops/304250"], ["https://data.delijn.be/stops/305282", "https://data.delijn.be/stops/308711"], ["https://data.delijn.be/stops/505980", "https://data.delijn.be/stops/508987"], ["https://data.delijn.be/stops/402348", "https://data.delijn.be/stops/402460"], ["https://data.delijn.be/stops/206705", "https://data.delijn.be/stops/206732"], ["https://data.delijn.be/stops/301482", "https://data.delijn.be/stops/301483"], ["https://data.delijn.be/stops/108803", "https://data.delijn.be/stops/109085"], ["https://data.delijn.be/stops/105054", "https://data.delijn.be/stops/109766"], ["https://data.delijn.be/stops/401355", "https://data.delijn.be/stops/401363"], ["https://data.delijn.be/stops/504024", "https://data.delijn.be/stops/509034"], ["https://data.delijn.be/stops/306931", "https://data.delijn.be/stops/306932"], ["https://data.delijn.be/stops/303864", "https://data.delijn.be/stops/303961"], ["https://data.delijn.be/stops/208319", "https://data.delijn.be/stops/208375"], ["https://data.delijn.be/stops/201471", "https://data.delijn.be/stops/201486"], ["https://data.delijn.be/stops/208329", "https://data.delijn.be/stops/209329"], ["https://data.delijn.be/stops/105244", "https://data.delijn.be/stops/105843"], ["https://data.delijn.be/stops/406770", "https://data.delijn.be/stops/406771"], ["https://data.delijn.be/stops/504137", "https://data.delijn.be/stops/505441"], ["https://data.delijn.be/stops/400651", "https://data.delijn.be/stops/400683"], ["https://data.delijn.be/stops/208632", "https://data.delijn.be/stops/209511"], ["https://data.delijn.be/stops/401519", "https://data.delijn.be/stops/401531"], ["https://data.delijn.be/stops/404118", "https://data.delijn.be/stops/408554"], ["https://data.delijn.be/stops/202538", "https://data.delijn.be/stops/203827"], ["https://data.delijn.be/stops/505392", "https://data.delijn.be/stops/505806"], ["https://data.delijn.be/stops/401421", "https://data.delijn.be/stops/403885"], ["https://data.delijn.be/stops/505259", "https://data.delijn.be/stops/508435"], ["https://data.delijn.be/stops/506214", "https://data.delijn.be/stops/506496"], ["https://data.delijn.be/stops/503832", "https://data.delijn.be/stops/508832"], ["https://data.delijn.be/stops/105048", "https://data.delijn.be/stops/106672"], ["https://data.delijn.be/stops/104649", "https://data.delijn.be/stops/108036"], ["https://data.delijn.be/stops/104056", "https://data.delijn.be/stops/108689"], ["https://data.delijn.be/stops/508319", "https://data.delijn.be/stops/508321"], ["https://data.delijn.be/stops/200021", "https://data.delijn.be/stops/201022"], ["https://data.delijn.be/stops/108284", "https://data.delijn.be/stops/109308"], ["https://data.delijn.be/stops/408265", "https://data.delijn.be/stops/408374"], ["https://data.delijn.be/stops/503750", "https://data.delijn.be/stops/509783"], ["https://data.delijn.be/stops/404959", "https://data.delijn.be/stops/404962"], ["https://data.delijn.be/stops/501108", "https://data.delijn.be/stops/501112"], ["https://data.delijn.be/stops/501011", "https://data.delijn.be/stops/501508"], ["https://data.delijn.be/stops/204643", "https://data.delijn.be/stops/205644"], ["https://data.delijn.be/stops/101978", "https://data.delijn.be/stops/109306"], ["https://data.delijn.be/stops/307248", "https://data.delijn.be/stops/307250"], ["https://data.delijn.be/stops/402701", "https://data.delijn.be/stops/402706"], ["https://data.delijn.be/stops/102073", "https://data.delijn.be/stops/106533"], ["https://data.delijn.be/stops/202101", "https://data.delijn.be/stops/202102"], ["https://data.delijn.be/stops/508112", "https://data.delijn.be/stops/509875"], ["https://data.delijn.be/stops/206762", "https://data.delijn.be/stops/209564"], ["https://data.delijn.be/stops/304584", "https://data.delijn.be/stops/304617"], ["https://data.delijn.be/stops/202396", "https://data.delijn.be/stops/204621"], ["https://data.delijn.be/stops/303084", "https://data.delijn.be/stops/304245"], ["https://data.delijn.be/stops/503255", "https://data.delijn.be/stops/508430"], ["https://data.delijn.be/stops/108050", "https://data.delijn.be/stops/108051"], ["https://data.delijn.be/stops/301265", "https://data.delijn.be/stops/301266"], ["https://data.delijn.be/stops/101302", "https://data.delijn.be/stops/106201"], ["https://data.delijn.be/stops/300308", "https://data.delijn.be/stops/300537"], ["https://data.delijn.be/stops/501745", "https://data.delijn.be/stops/506367"], ["https://data.delijn.be/stops/501450", "https://data.delijn.be/stops/506454"], ["https://data.delijn.be/stops/300594", "https://data.delijn.be/stops/304242"], ["https://data.delijn.be/stops/508023", "https://data.delijn.be/stops/508679"], ["https://data.delijn.be/stops/207799", "https://data.delijn.be/stops/208349"], ["https://data.delijn.be/stops/400843", "https://data.delijn.be/stops/409573"], ["https://data.delijn.be/stops/407112", "https://data.delijn.be/stops/407326"], ["https://data.delijn.be/stops/304162", "https://data.delijn.be/stops/307558"], ["https://data.delijn.be/stops/105816", "https://data.delijn.be/stops/105817"], ["https://data.delijn.be/stops/214012", "https://data.delijn.be/stops/214013"], ["https://data.delijn.be/stops/408099", "https://data.delijn.be/stops/408161"], ["https://data.delijn.be/stops/300876", "https://data.delijn.be/stops/300877"], ["https://data.delijn.be/stops/502320", "https://data.delijn.be/stops/502331"], ["https://data.delijn.be/stops/405060", "https://data.delijn.be/stops/405115"], ["https://data.delijn.be/stops/102205", "https://data.delijn.be/stops/103600"], ["https://data.delijn.be/stops/407756", "https://data.delijn.be/stops/407757"], ["https://data.delijn.be/stops/305354", "https://data.delijn.be/stops/308447"], ["https://data.delijn.be/stops/502721", "https://data.delijn.be/stops/507721"], ["https://data.delijn.be/stops/504645", "https://data.delijn.be/stops/505175"], ["https://data.delijn.be/stops/200860", "https://data.delijn.be/stops/203288"], ["https://data.delijn.be/stops/505659", "https://data.delijn.be/stops/508511"], ["https://data.delijn.be/stops/308483", "https://data.delijn.be/stops/308536"], ["https://data.delijn.be/stops/501039", "https://data.delijn.be/stops/506329"], ["https://data.delijn.be/stops/202882", "https://data.delijn.be/stops/203882"], ["https://data.delijn.be/stops/300738", "https://data.delijn.be/stops/308935"], ["https://data.delijn.be/stops/206303", "https://data.delijn.be/stops/207302"], ["https://data.delijn.be/stops/106135", "https://data.delijn.be/stops/106138"], ["https://data.delijn.be/stops/400782", "https://data.delijn.be/stops/400783"], ["https://data.delijn.be/stops/103672", "https://data.delijn.be/stops/106253"], ["https://data.delijn.be/stops/300094", "https://data.delijn.be/stops/300098"], ["https://data.delijn.be/stops/508920", "https://data.delijn.be/stops/509041"], ["https://data.delijn.be/stops/201937", "https://data.delijn.be/stops/201938"], ["https://data.delijn.be/stops/408448", "https://data.delijn.be/stops/409587"], ["https://data.delijn.be/stops/107551", "https://data.delijn.be/stops/109377"], ["https://data.delijn.be/stops/204183", "https://data.delijn.be/stops/205183"], ["https://data.delijn.be/stops/106665", "https://data.delijn.be/stops/106667"], ["https://data.delijn.be/stops/403410", "https://data.delijn.be/stops/403411"], ["https://data.delijn.be/stops/407746", "https://data.delijn.be/stops/409793"], ["https://data.delijn.be/stops/301899", "https://data.delijn.be/stops/305086"], ["https://data.delijn.be/stops/208250", "https://data.delijn.be/stops/208251"], ["https://data.delijn.be/stops/409581", "https://data.delijn.be/stops/409583"], ["https://data.delijn.be/stops/101010", "https://data.delijn.be/stops/102470"], ["https://data.delijn.be/stops/400597", "https://data.delijn.be/stops/400607"], ["https://data.delijn.be/stops/407045", "https://data.delijn.be/stops/407085"], ["https://data.delijn.be/stops/302120", "https://data.delijn.be/stops/302141"], ["https://data.delijn.be/stops/304978", "https://data.delijn.be/stops/305022"], ["https://data.delijn.be/stops/300311", "https://data.delijn.be/stops/302448"], ["https://data.delijn.be/stops/306908", "https://data.delijn.be/stops/306932"], ["https://data.delijn.be/stops/202511", "https://data.delijn.be/stops/203495"], ["https://data.delijn.be/stops/109233", "https://data.delijn.be/stops/109236"], ["https://data.delijn.be/stops/505200", "https://data.delijn.be/stops/508150"], ["https://data.delijn.be/stops/406524", "https://data.delijn.be/stops/406629"], ["https://data.delijn.be/stops/300768", "https://data.delijn.be/stops/300798"], ["https://data.delijn.be/stops/501557", "https://data.delijn.be/stops/506556"], ["https://data.delijn.be/stops/102454", "https://data.delijn.be/stops/109014"], ["https://data.delijn.be/stops/205429", "https://data.delijn.be/stops/205766"], ["https://data.delijn.be/stops/104014", "https://data.delijn.be/stops/104016"], ["https://data.delijn.be/stops/201764", "https://data.delijn.be/stops/209273"], ["https://data.delijn.be/stops/405144", "https://data.delijn.be/stops/405158"], ["https://data.delijn.be/stops/502396", "https://data.delijn.be/stops/507413"], ["https://data.delijn.be/stops/101390", "https://data.delijn.be/stops/107003"], ["https://data.delijn.be/stops/304784", "https://data.delijn.be/stops/304786"], ["https://data.delijn.be/stops/503543", "https://data.delijn.be/stops/503563"], ["https://data.delijn.be/stops/502699", "https://data.delijn.be/stops/507230"], ["https://data.delijn.be/stops/405192", "https://data.delijn.be/stops/405204"], ["https://data.delijn.be/stops/201949", "https://data.delijn.be/stops/211018"], ["https://data.delijn.be/stops/101892", "https://data.delijn.be/stops/107464"], ["https://data.delijn.be/stops/404594", "https://data.delijn.be/stops/406951"], ["https://data.delijn.be/stops/101223", "https://data.delijn.be/stops/107792"], ["https://data.delijn.be/stops/105103", "https://data.delijn.be/stops/105106"], ["https://data.delijn.be/stops/301649", "https://data.delijn.be/stops/307752"], ["https://data.delijn.be/stops/301773", "https://data.delijn.be/stops/306877"], ["https://data.delijn.be/stops/501062", "https://data.delijn.be/stops/506062"], ["https://data.delijn.be/stops/103098", "https://data.delijn.be/stops/103269"], ["https://data.delijn.be/stops/301336", "https://data.delijn.be/stops/301338"], ["https://data.delijn.be/stops/403050", "https://data.delijn.be/stops/403175"], ["https://data.delijn.be/stops/103259", "https://data.delijn.be/stops/105761"], ["https://data.delijn.be/stops/503027", "https://data.delijn.be/stops/508027"], ["https://data.delijn.be/stops/508440", "https://data.delijn.be/stops/509407"], ["https://data.delijn.be/stops/206018", "https://data.delijn.be/stops/207018"], ["https://data.delijn.be/stops/208018", "https://data.delijn.be/stops/208023"], ["https://data.delijn.be/stops/202148", "https://data.delijn.be/stops/203242"], ["https://data.delijn.be/stops/201532", "https://data.delijn.be/stops/203901"], ["https://data.delijn.be/stops/303336", "https://data.delijn.be/stops/303347"], ["https://data.delijn.be/stops/204424", "https://data.delijn.be/stops/205434"], ["https://data.delijn.be/stops/302562", "https://data.delijn.be/stops/306404"], ["https://data.delijn.be/stops/403409", "https://data.delijn.be/stops/403453"], ["https://data.delijn.be/stops/204605", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/301649", "https://data.delijn.be/stops/301655"], ["https://data.delijn.be/stops/501290", "https://data.delijn.be/stops/506205"], ["https://data.delijn.be/stops/102435", "https://data.delijn.be/stops/103005"], ["https://data.delijn.be/stops/205314", "https://data.delijn.be/stops/205709"], ["https://data.delijn.be/stops/403109", "https://data.delijn.be/stops/403111"], ["https://data.delijn.be/stops/109497", "https://data.delijn.be/stops/109499"], ["https://data.delijn.be/stops/405168", "https://data.delijn.be/stops/408369"], ["https://data.delijn.be/stops/204977", "https://data.delijn.be/stops/205976"], ["https://data.delijn.be/stops/405618", "https://data.delijn.be/stops/409514"], ["https://data.delijn.be/stops/305707", "https://data.delijn.be/stops/306303"], ["https://data.delijn.be/stops/208144", "https://data.delijn.be/stops/209403"], ["https://data.delijn.be/stops/402244", "https://data.delijn.be/stops/409393"], ["https://data.delijn.be/stops/502365", "https://data.delijn.be/stops/502679"], ["https://data.delijn.be/stops/208291", "https://data.delijn.be/stops/209292"], ["https://data.delijn.be/stops/300764", "https://data.delijn.be/stops/306117"], ["https://data.delijn.be/stops/502248", "https://data.delijn.be/stops/507566"], ["https://data.delijn.be/stops/407458", "https://data.delijn.be/stops/407466"], ["https://data.delijn.be/stops/400736", "https://data.delijn.be/stops/409383"], ["https://data.delijn.be/stops/209146", "https://data.delijn.be/stops/209148"], ["https://data.delijn.be/stops/505975", "https://data.delijn.be/stops/509406"], ["https://data.delijn.be/stops/407882", "https://data.delijn.be/stops/407883"], ["https://data.delijn.be/stops/504704", "https://data.delijn.be/stops/509704"], ["https://data.delijn.be/stops/104015", "https://data.delijn.be/stops/104655"], ["https://data.delijn.be/stops/503830", "https://data.delijn.be/stops/508829"], ["https://data.delijn.be/stops/108870", "https://data.delijn.be/stops/109140"], ["https://data.delijn.be/stops/202755", "https://data.delijn.be/stops/202795"], ["https://data.delijn.be/stops/405870", "https://data.delijn.be/stops/405871"], ["https://data.delijn.be/stops/104819", "https://data.delijn.be/stops/105544"], ["https://data.delijn.be/stops/204532", "https://data.delijn.be/stops/205761"], ["https://data.delijn.be/stops/504679", "https://data.delijn.be/stops/509461"], ["https://data.delijn.be/stops/207301", "https://data.delijn.be/stops/207738"], ["https://data.delijn.be/stops/200342", "https://data.delijn.be/stops/211009"], ["https://data.delijn.be/stops/101606", "https://data.delijn.be/stops/105759"], ["https://data.delijn.be/stops/206674", "https://data.delijn.be/stops/209175"], ["https://data.delijn.be/stops/502654", "https://data.delijn.be/stops/502735"], ["https://data.delijn.be/stops/400887", "https://data.delijn.be/stops/409660"], ["https://data.delijn.be/stops/405169", "https://data.delijn.be/stops/405231"], ["https://data.delijn.be/stops/204019", "https://data.delijn.be/stops/205400"], ["https://data.delijn.be/stops/401228", "https://data.delijn.be/stops/401239"], ["https://data.delijn.be/stops/204179", "https://data.delijn.be/stops/206392"], ["https://data.delijn.be/stops/201075", "https://data.delijn.be/stops/201076"], ["https://data.delijn.be/stops/206996", "https://data.delijn.be/stops/207996"], ["https://data.delijn.be/stops/104865", "https://data.delijn.be/stops/104870"], ["https://data.delijn.be/stops/405205", "https://data.delijn.be/stops/405251"], ["https://data.delijn.be/stops/302949", "https://data.delijn.be/stops/302976"], ["https://data.delijn.be/stops/504466", "https://data.delijn.be/stops/505304"], ["https://data.delijn.be/stops/202514", "https://data.delijn.be/stops/203514"], ["https://data.delijn.be/stops/204546", "https://data.delijn.be/stops/205332"], ["https://data.delijn.be/stops/108705", "https://data.delijn.be/stops/109986"], ["https://data.delijn.be/stops/301106", "https://data.delijn.be/stops/304599"], ["https://data.delijn.be/stops/504984", "https://data.delijn.be/stops/505290"], ["https://data.delijn.be/stops/200383", "https://data.delijn.be/stops/201141"], ["https://data.delijn.be/stops/209058", "https://data.delijn.be/stops/209059"], ["https://data.delijn.be/stops/201353", "https://data.delijn.be/stops/201805"], ["https://data.delijn.be/stops/200917", "https://data.delijn.be/stops/203043"], ["https://data.delijn.be/stops/400252", "https://data.delijn.be/stops/400384"], ["https://data.delijn.be/stops/405630", "https://data.delijn.be/stops/405632"], ["https://data.delijn.be/stops/404586", "https://data.delijn.be/stops/406931"], ["https://data.delijn.be/stops/405676", "https://data.delijn.be/stops/405685"], ["https://data.delijn.be/stops/404402", "https://data.delijn.be/stops/404448"], ["https://data.delijn.be/stops/302206", "https://data.delijn.be/stops/302207"], ["https://data.delijn.be/stops/202415", "https://data.delijn.be/stops/202570"], ["https://data.delijn.be/stops/107020", "https://data.delijn.be/stops/108650"], ["https://data.delijn.be/stops/406290", "https://data.delijn.be/stops/406443"], ["https://data.delijn.be/stops/107397", "https://data.delijn.be/stops/107399"], ["https://data.delijn.be/stops/303792", "https://data.delijn.be/stops/303793"], ["https://data.delijn.be/stops/405713", "https://data.delijn.be/stops/408353"], ["https://data.delijn.be/stops/102458", "https://data.delijn.be/stops/102459"], ["https://data.delijn.be/stops/400124", "https://data.delijn.be/stops/409173"], ["https://data.delijn.be/stops/302566", "https://data.delijn.be/stops/302589"], ["https://data.delijn.be/stops/503556", "https://data.delijn.be/stops/504277"], ["https://data.delijn.be/stops/107553", "https://data.delijn.be/stops/109376"], ["https://data.delijn.be/stops/503693", "https://data.delijn.be/stops/503734"], ["https://data.delijn.be/stops/502622", "https://data.delijn.be/stops/507613"], ["https://data.delijn.be/stops/402369", "https://data.delijn.be/stops/408485"], ["https://data.delijn.be/stops/200759", "https://data.delijn.be/stops/200762"], ["https://data.delijn.be/stops/107596", "https://data.delijn.be/stops/107722"], ["https://data.delijn.be/stops/501166", "https://data.delijn.be/stops/501668"], ["https://data.delijn.be/stops/103520", "https://data.delijn.be/stops/105110"], ["https://data.delijn.be/stops/307209", "https://data.delijn.be/stops/307210"], ["https://data.delijn.be/stops/106995", "https://data.delijn.be/stops/107317"], ["https://data.delijn.be/stops/404052", "https://data.delijn.be/stops/404059"], ["https://data.delijn.be/stops/105299", "https://data.delijn.be/stops/109970"], ["https://data.delijn.be/stops/501070", "https://data.delijn.be/stops/501382"], ["https://data.delijn.be/stops/108877", "https://data.delijn.be/stops/109507"], ["https://data.delijn.be/stops/407630", "https://data.delijn.be/stops/407631"], ["https://data.delijn.be/stops/503255", "https://data.delijn.be/stops/509764"], ["https://data.delijn.be/stops/202884", "https://data.delijn.be/stops/203884"], ["https://data.delijn.be/stops/103088", "https://data.delijn.be/stops/107482"], ["https://data.delijn.be/stops/206105", "https://data.delijn.be/stops/207105"], ["https://data.delijn.be/stops/407946", "https://data.delijn.be/stops/408087"], ["https://data.delijn.be/stops/504962", "https://data.delijn.be/stops/504989"], ["https://data.delijn.be/stops/406708", "https://data.delijn.be/stops/407063"], ["https://data.delijn.be/stops/403921", "https://data.delijn.be/stops/405946"], ["https://data.delijn.be/stops/207153", "https://data.delijn.be/stops/207154"], ["https://data.delijn.be/stops/305091", "https://data.delijn.be/stops/305161"], ["https://data.delijn.be/stops/409332", "https://data.delijn.be/stops/409333"], ["https://data.delijn.be/stops/106280", "https://data.delijn.be/stops/106300"], ["https://data.delijn.be/stops/200806", "https://data.delijn.be/stops/202054"], ["https://data.delijn.be/stops/508039", "https://data.delijn.be/stops/508045"], ["https://data.delijn.be/stops/208046", "https://data.delijn.be/stops/209047"], ["https://data.delijn.be/stops/405795", "https://data.delijn.be/stops/405796"], ["https://data.delijn.be/stops/200300", "https://data.delijn.be/stops/200301"], ["https://data.delijn.be/stops/305267", "https://data.delijn.be/stops/305330"], ["https://data.delijn.be/stops/400122", "https://data.delijn.be/stops/400128"], ["https://data.delijn.be/stops/503704", "https://data.delijn.be/stops/503707"], ["https://data.delijn.be/stops/108296", "https://data.delijn.be/stops/108298"], ["https://data.delijn.be/stops/400576", "https://data.delijn.be/stops/410009"], ["https://data.delijn.be/stops/207982", "https://data.delijn.be/stops/217020"], ["https://data.delijn.be/stops/300450", "https://data.delijn.be/stops/308059"], ["https://data.delijn.be/stops/405478", "https://data.delijn.be/stops/409290"], ["https://data.delijn.be/stops/504687", "https://data.delijn.be/stops/508532"], ["https://data.delijn.be/stops/400786", "https://data.delijn.be/stops/409596"], ["https://data.delijn.be/stops/108115", "https://data.delijn.be/stops/109055"], ["https://data.delijn.be/stops/203915", "https://data.delijn.be/stops/210097"], ["https://data.delijn.be/stops/209610", "https://data.delijn.be/stops/305298"], ["https://data.delijn.be/stops/308470", "https://data.delijn.be/stops/308689"], ["https://data.delijn.be/stops/206607", "https://data.delijn.be/stops/206667"], ["https://data.delijn.be/stops/408569", "https://data.delijn.be/stops/408571"], ["https://data.delijn.be/stops/208752", "https://data.delijn.be/stops/209692"], ["https://data.delijn.be/stops/301833", "https://data.delijn.be/stops/301834"], ["https://data.delijn.be/stops/401600", "https://data.delijn.be/stops/405836"], ["https://data.delijn.be/stops/407895", "https://data.delijn.be/stops/303262"], ["https://data.delijn.be/stops/405282", "https://data.delijn.be/stops/407702"], ["https://data.delijn.be/stops/307198", "https://data.delijn.be/stops/307202"], ["https://data.delijn.be/stops/202330", "https://data.delijn.be/stops/203336"], ["https://data.delijn.be/stops/102930", "https://data.delijn.be/stops/105510"], ["https://data.delijn.be/stops/307378", "https://data.delijn.be/stops/307448"], ["https://data.delijn.be/stops/501221", "https://data.delijn.be/stops/506212"], ["https://data.delijn.be/stops/106702", "https://data.delijn.be/stops/106704"], ["https://data.delijn.be/stops/400374", "https://data.delijn.be/stops/400375"], ["https://data.delijn.be/stops/108364", "https://data.delijn.be/stops/108506"], ["https://data.delijn.be/stops/305343", "https://data.delijn.be/stops/307110"], ["https://data.delijn.be/stops/402205", "https://data.delijn.be/stops/402235"], ["https://data.delijn.be/stops/403561", "https://data.delijn.be/stops/403861"], ["https://data.delijn.be/stops/204110", "https://data.delijn.be/stops/205110"], ["https://data.delijn.be/stops/400433", "https://data.delijn.be/stops/400434"], ["https://data.delijn.be/stops/301231", "https://data.delijn.be/stops/307623"], ["https://data.delijn.be/stops/402785", "https://data.delijn.be/stops/402798"], ["https://data.delijn.be/stops/406255", "https://data.delijn.be/stops/410131"], ["https://data.delijn.be/stops/306865", "https://data.delijn.be/stops/307730"], ["https://data.delijn.be/stops/505964", "https://data.delijn.be/stops/507692"], ["https://data.delijn.be/stops/405433", "https://data.delijn.be/stops/408873"], ["https://data.delijn.be/stops/300852", "https://data.delijn.be/stops/301047"], ["https://data.delijn.be/stops/505056", "https://data.delijn.be/stops/505115"], ["https://data.delijn.be/stops/500208", "https://data.delijn.be/stops/504741"], ["https://data.delijn.be/stops/505947", "https://data.delijn.be/stops/508968"], ["https://data.delijn.be/stops/206902", "https://data.delijn.be/stops/207264"], ["https://data.delijn.be/stops/308231", "https://data.delijn.be/stops/308234"], ["https://data.delijn.be/stops/402368", "https://data.delijn.be/stops/402370"], ["https://data.delijn.be/stops/108062", "https://data.delijn.be/stops/108359"], ["https://data.delijn.be/stops/200707", "https://data.delijn.be/stops/210088"], ["https://data.delijn.be/stops/304584", "https://data.delijn.be/stops/307267"], ["https://data.delijn.be/stops/407258", "https://data.delijn.be/stops/407259"], ["https://data.delijn.be/stops/207015", "https://data.delijn.be/stops/207267"], ["https://data.delijn.be/stops/300124", "https://data.delijn.be/stops/306830"], ["https://data.delijn.be/stops/305765", "https://data.delijn.be/stops/305766"], ["https://data.delijn.be/stops/504156", "https://data.delijn.be/stops/505108"], ["https://data.delijn.be/stops/405774", "https://data.delijn.be/stops/405775"], ["https://data.delijn.be/stops/501200", "https://data.delijn.be/stops/501425"], ["https://data.delijn.be/stops/200670", "https://data.delijn.be/stops/211102"], ["https://data.delijn.be/stops/105763", "https://data.delijn.be/stops/106854"], ["https://data.delijn.be/stops/203185", "https://data.delijn.be/stops/205094"], ["https://data.delijn.be/stops/406498", "https://data.delijn.be/stops/406509"], ["https://data.delijn.be/stops/404455", "https://data.delijn.be/stops/404561"], ["https://data.delijn.be/stops/405256", "https://data.delijn.be/stops/405272"], ["https://data.delijn.be/stops/503117", "https://data.delijn.be/stops/508119"], ["https://data.delijn.be/stops/201657", "https://data.delijn.be/stops/205931"], ["https://data.delijn.be/stops/504795", "https://data.delijn.be/stops/508470"], ["https://data.delijn.be/stops/206893", "https://data.delijn.be/stops/207888"], ["https://data.delijn.be/stops/102414", "https://data.delijn.be/stops/102915"], ["https://data.delijn.be/stops/106887", "https://data.delijn.be/stops/106889"], ["https://data.delijn.be/stops/401924", "https://data.delijn.be/stops/405822"], ["https://data.delijn.be/stops/307048", "https://data.delijn.be/stops/307049"], ["https://data.delijn.be/stops/505791", "https://data.delijn.be/stops/509421"], ["https://data.delijn.be/stops/106150", "https://data.delijn.be/stops/106151"], ["https://data.delijn.be/stops/207111", "https://data.delijn.be/stops/306726"], ["https://data.delijn.be/stops/204711", "https://data.delijn.be/stops/205712"], ["https://data.delijn.be/stops/300488", "https://data.delijn.be/stops/300501"], ["https://data.delijn.be/stops/408018", "https://data.delijn.be/stops/408042"], ["https://data.delijn.be/stops/101422", "https://data.delijn.be/stops/106976"], ["https://data.delijn.be/stops/504986", "https://data.delijn.be/stops/505830"], ["https://data.delijn.be/stops/103124", "https://data.delijn.be/stops/109170"], ["https://data.delijn.be/stops/103571", "https://data.delijn.be/stops/107139"], ["https://data.delijn.be/stops/402698", "https://data.delijn.be/stops/402880"], ["https://data.delijn.be/stops/407369", "https://data.delijn.be/stops/407570"], ["https://data.delijn.be/stops/302475", "https://data.delijn.be/stops/302498"], ["https://data.delijn.be/stops/106732", "https://data.delijn.be/stops/106773"], ["https://data.delijn.be/stops/305598", "https://data.delijn.be/stops/305629"], ["https://data.delijn.be/stops/504720", "https://data.delijn.be/stops/509014"], ["https://data.delijn.be/stops/504354", "https://data.delijn.be/stops/509350"], ["https://data.delijn.be/stops/103991", "https://data.delijn.be/stops/105312"], ["https://data.delijn.be/stops/401145", "https://data.delijn.be/stops/401147"], ["https://data.delijn.be/stops/300379", "https://data.delijn.be/stops/300380"], ["https://data.delijn.be/stops/403138", "https://data.delijn.be/stops/408516"], ["https://data.delijn.be/stops/301677", "https://data.delijn.be/stops/301683"], ["https://data.delijn.be/stops/402575", "https://data.delijn.be/stops/402583"], ["https://data.delijn.be/stops/503401", "https://data.delijn.be/stops/505556"], ["https://data.delijn.be/stops/204686", "https://data.delijn.be/stops/205686"], ["https://data.delijn.be/stops/206389", "https://data.delijn.be/stops/216004"], ["https://data.delijn.be/stops/200957", "https://data.delijn.be/stops/202671"], ["https://data.delijn.be/stops/501550", "https://data.delijn.be/stops/501558"], ["https://data.delijn.be/stops/401543", "https://data.delijn.be/stops/402033"], ["https://data.delijn.be/stops/506298", "https://data.delijn.be/stops/506353"], ["https://data.delijn.be/stops/102555", "https://data.delijn.be/stops/102640"], ["https://data.delijn.be/stops/400166", "https://data.delijn.be/stops/405642"], ["https://data.delijn.be/stops/105270", "https://data.delijn.be/stops/108800"], ["https://data.delijn.be/stops/109581", "https://data.delijn.be/stops/109586"], ["https://data.delijn.be/stops/106271", "https://data.delijn.be/stops/109626"], ["https://data.delijn.be/stops/301932", "https://data.delijn.be/stops/305841"], ["https://data.delijn.be/stops/303790", "https://data.delijn.be/stops/303807"], ["https://data.delijn.be/stops/200212", "https://data.delijn.be/stops/200217"], ["https://data.delijn.be/stops/105388", "https://data.delijn.be/stops/106025"], ["https://data.delijn.be/stops/402242", "https://data.delijn.be/stops/402243"], ["https://data.delijn.be/stops/302705", "https://data.delijn.be/stops/302738"], ["https://data.delijn.be/stops/503103", "https://data.delijn.be/stops/508103"], ["https://data.delijn.be/stops/104647", "https://data.delijn.be/stops/107982"], ["https://data.delijn.be/stops/302246", "https://data.delijn.be/stops/304031"], ["https://data.delijn.be/stops/303255", "https://data.delijn.be/stops/303258"], ["https://data.delijn.be/stops/503416", "https://data.delijn.be/stops/508416"], ["https://data.delijn.be/stops/503298", "https://data.delijn.be/stops/505948"], ["https://data.delijn.be/stops/505757", "https://data.delijn.be/stops/506122"], ["https://data.delijn.be/stops/101049", "https://data.delijn.be/stops/204608"], ["https://data.delijn.be/stops/502586", "https://data.delijn.be/stops/507358"], ["https://data.delijn.be/stops/300849", "https://data.delijn.be/stops/305313"], ["https://data.delijn.be/stops/304015", "https://data.delijn.be/stops/306278"], ["https://data.delijn.be/stops/404670", "https://data.delijn.be/stops/404671"], ["https://data.delijn.be/stops/305248", "https://data.delijn.be/stops/305600"], ["https://data.delijn.be/stops/300939", "https://data.delijn.be/stops/304720"], ["https://data.delijn.be/stops/501329", "https://data.delijn.be/stops/506034"], ["https://data.delijn.be/stops/503183", "https://data.delijn.be/stops/508204"], ["https://data.delijn.be/stops/405400", "https://data.delijn.be/stops/405405"], ["https://data.delijn.be/stops/408780", "https://data.delijn.be/stops/410249"], ["https://data.delijn.be/stops/300467", "https://data.delijn.be/stops/300470"], ["https://data.delijn.be/stops/406585", "https://data.delijn.be/stops/406699"], ["https://data.delijn.be/stops/303259", "https://data.delijn.be/stops/303266"], ["https://data.delijn.be/stops/108532", "https://data.delijn.be/stops/108536"], ["https://data.delijn.be/stops/408546", "https://data.delijn.be/stops/408769"], ["https://data.delijn.be/stops/206509", "https://data.delijn.be/stops/207510"], ["https://data.delijn.be/stops/501113", "https://data.delijn.be/stops/509836"], ["https://data.delijn.be/stops/406117", "https://data.delijn.be/stops/410199"], ["https://data.delijn.be/stops/201891", "https://data.delijn.be/stops/211119"], ["https://data.delijn.be/stops/206786", "https://data.delijn.be/stops/209039"], ["https://data.delijn.be/stops/305541", "https://data.delijn.be/stops/305560"], ["https://data.delijn.be/stops/503646", "https://data.delijn.be/stops/508741"], ["https://data.delijn.be/stops/300237", "https://data.delijn.be/stops/300247"], ["https://data.delijn.be/stops/306842", "https://data.delijn.be/stops/306866"], ["https://data.delijn.be/stops/200831", "https://data.delijn.be/stops/505063"], ["https://data.delijn.be/stops/101162", "https://data.delijn.be/stops/105972"], ["https://data.delijn.be/stops/204425", "https://data.delijn.be/stops/205744"], ["https://data.delijn.be/stops/306903", "https://data.delijn.be/stops/306906"], ["https://data.delijn.be/stops/301238", "https://data.delijn.be/stops/301241"], ["https://data.delijn.be/stops/502289", "https://data.delijn.be/stops/507292"], ["https://data.delijn.be/stops/106797", "https://data.delijn.be/stops/106799"], ["https://data.delijn.be/stops/104476", "https://data.delijn.be/stops/104477"], ["https://data.delijn.be/stops/204985", "https://data.delijn.be/stops/208351"], ["https://data.delijn.be/stops/505117", "https://data.delijn.be/stops/508886"], ["https://data.delijn.be/stops/305160", "https://data.delijn.be/stops/305161"], ["https://data.delijn.be/stops/206773", "https://data.delijn.be/stops/208092"], ["https://data.delijn.be/stops/504106", "https://data.delijn.be/stops/504471"], ["https://data.delijn.be/stops/106951", "https://data.delijn.be/stops/106953"], ["https://data.delijn.be/stops/106366", "https://data.delijn.be/stops/106372"], ["https://data.delijn.be/stops/503038", "https://data.delijn.be/stops/508038"], ["https://data.delijn.be/stops/407030", "https://data.delijn.be/stops/407031"], ["https://data.delijn.be/stops/308519", "https://data.delijn.be/stops/308521"], ["https://data.delijn.be/stops/505423", "https://data.delijn.be/stops/509137"], ["https://data.delijn.be/stops/407936", "https://data.delijn.be/stops/407937"], ["https://data.delijn.be/stops/203996", "https://data.delijn.be/stops/208562"], ["https://data.delijn.be/stops/207545", "https://data.delijn.be/stops/209748"], ["https://data.delijn.be/stops/205615", "https://data.delijn.be/stops/205674"], ["https://data.delijn.be/stops/502359", "https://data.delijn.be/stops/502586"], ["https://data.delijn.be/stops/301832", "https://data.delijn.be/stops/306984"], ["https://data.delijn.be/stops/501006", "https://data.delijn.be/stops/506505"], ["https://data.delijn.be/stops/503776", "https://data.delijn.be/stops/508780"], ["https://data.delijn.be/stops/301769", "https://data.delijn.be/stops/301770"], ["https://data.delijn.be/stops/203228", "https://data.delijn.be/stops/203229"], ["https://data.delijn.be/stops/209313", "https://data.delijn.be/stops/209771"], ["https://data.delijn.be/stops/207332", "https://data.delijn.be/stops/207710"], ["https://data.delijn.be/stops/301973", "https://data.delijn.be/stops/301975"], ["https://data.delijn.be/stops/505915", "https://data.delijn.be/stops/509089"], ["https://data.delijn.be/stops/208483", "https://data.delijn.be/stops/209487"], ["https://data.delijn.be/stops/401629", "https://data.delijn.be/stops/308209"], ["https://data.delijn.be/stops/503100", "https://data.delijn.be/stops/508100"], ["https://data.delijn.be/stops/201815", "https://data.delijn.be/stops/208252"], ["https://data.delijn.be/stops/505086", "https://data.delijn.be/stops/505234"], ["https://data.delijn.be/stops/105376", "https://data.delijn.be/stops/105581"], ["https://data.delijn.be/stops/405976", "https://data.delijn.be/stops/405977"], ["https://data.delijn.be/stops/501624", "https://data.delijn.be/stops/506015"], ["https://data.delijn.be/stops/102042", "https://data.delijn.be/stops/207365"], ["https://data.delijn.be/stops/305459", "https://data.delijn.be/stops/307896"], ["https://data.delijn.be/stops/401433", "https://data.delijn.be/stops/410146"], ["https://data.delijn.be/stops/401025", "https://data.delijn.be/stops/401151"], ["https://data.delijn.be/stops/205519", "https://data.delijn.be/stops/205520"], ["https://data.delijn.be/stops/405706", "https://data.delijn.be/stops/408972"], ["https://data.delijn.be/stops/201746", "https://data.delijn.be/stops/208328"], ["https://data.delijn.be/stops/508028", "https://data.delijn.be/stops/508030"], ["https://data.delijn.be/stops/208491", "https://data.delijn.be/stops/209103"], ["https://data.delijn.be/stops/300877", "https://data.delijn.be/stops/307921"], ["https://data.delijn.be/stops/507033", "https://data.delijn.be/stops/507044"], ["https://data.delijn.be/stops/500028", "https://data.delijn.be/stops/503118"], ["https://data.delijn.be/stops/401883", "https://data.delijn.be/stops/401885"], ["https://data.delijn.be/stops/300842", "https://data.delijn.be/stops/304566"], ["https://data.delijn.be/stops/102671", "https://data.delijn.be/stops/105531"], ["https://data.delijn.be/stops/105842", "https://data.delijn.be/stops/105844"], ["https://data.delijn.be/stops/103661", "https://data.delijn.be/stops/106219"], ["https://data.delijn.be/stops/208502", "https://data.delijn.be/stops/209502"], ["https://data.delijn.be/stops/300099", "https://data.delijn.be/stops/304411"], ["https://data.delijn.be/stops/504451", "https://data.delijn.be/stops/505828"], ["https://data.delijn.be/stops/503646", "https://data.delijn.be/stops/503718"], ["https://data.delijn.be/stops/302055", "https://data.delijn.be/stops/303184"], ["https://data.delijn.be/stops/300777", "https://data.delijn.be/stops/300778"], ["https://data.delijn.be/stops/405157", "https://data.delijn.be/stops/405184"], ["https://data.delijn.be/stops/406891", "https://data.delijn.be/stops/406899"], ["https://data.delijn.be/stops/400083", "https://data.delijn.be/stops/400119"], ["https://data.delijn.be/stops/302308", "https://data.delijn.be/stops/302326"], ["https://data.delijn.be/stops/301598", "https://data.delijn.be/stops/301614"], ["https://data.delijn.be/stops/402237", "https://data.delijn.be/stops/402480"], ["https://data.delijn.be/stops/202693", "https://data.delijn.be/stops/202694"], ["https://data.delijn.be/stops/305393", "https://data.delijn.be/stops/305394"], ["https://data.delijn.be/stops/408066", "https://data.delijn.be/stops/408082"], ["https://data.delijn.be/stops/505251", "https://data.delijn.be/stops/507698"], ["https://data.delijn.be/stops/408508", "https://data.delijn.be/stops/410249"], ["https://data.delijn.be/stops/108864", "https://data.delijn.be/stops/109743"], ["https://data.delijn.be/stops/306626", "https://data.delijn.be/stops/308455"], ["https://data.delijn.be/stops/400458", "https://data.delijn.be/stops/400497"], ["https://data.delijn.be/stops/200232", "https://data.delijn.be/stops/204924"], ["https://data.delijn.be/stops/406259", "https://data.delijn.be/stops/408417"], ["https://data.delijn.be/stops/404220", "https://data.delijn.be/stops/404221"], ["https://data.delijn.be/stops/207533", "https://data.delijn.be/stops/207823"], ["https://data.delijn.be/stops/505198", "https://data.delijn.be/stops/505288"], ["https://data.delijn.be/stops/409556", "https://data.delijn.be/stops/409559"], ["https://data.delijn.be/stops/105777", "https://data.delijn.be/stops/105778"], ["https://data.delijn.be/stops/303631", "https://data.delijn.be/stops/306399"], ["https://data.delijn.be/stops/304577", "https://data.delijn.be/stops/304578"], ["https://data.delijn.be/stops/502304", "https://data.delijn.be/stops/502592"], ["https://data.delijn.be/stops/206910", "https://data.delijn.be/stops/207106"], ["https://data.delijn.be/stops/505082", "https://data.delijn.be/stops/508008"], ["https://data.delijn.be/stops/408968", "https://data.delijn.be/stops/408973"], ["https://data.delijn.be/stops/201905", "https://data.delijn.be/stops/202515"], ["https://data.delijn.be/stops/206021", "https://data.delijn.be/stops/207162"], ["https://data.delijn.be/stops/503514", "https://data.delijn.be/stops/508513"], ["https://data.delijn.be/stops/503505", "https://data.delijn.be/stops/508505"], ["https://data.delijn.be/stops/108119", "https://data.delijn.be/stops/108121"], ["https://data.delijn.be/stops/303033", "https://data.delijn.be/stops/303094"], ["https://data.delijn.be/stops/509381", "https://data.delijn.be/stops/509382"], ["https://data.delijn.be/stops/501532", "https://data.delijn.be/stops/505398"], ["https://data.delijn.be/stops/504876", "https://data.delijn.be/stops/508642"], ["https://data.delijn.be/stops/500049", "https://data.delijn.be/stops/500052"], ["https://data.delijn.be/stops/101063", "https://data.delijn.be/stops/106007"], ["https://data.delijn.be/stops/404860", "https://data.delijn.be/stops/404861"], ["https://data.delijn.be/stops/104547", "https://data.delijn.be/stops/104574"], ["https://data.delijn.be/stops/200664", "https://data.delijn.be/stops/201562"], ["https://data.delijn.be/stops/206956", "https://data.delijn.be/stops/207186"], ["https://data.delijn.be/stops/304609", "https://data.delijn.be/stops/304610"], ["https://data.delijn.be/stops/300918", "https://data.delijn.be/stops/300919"], ["https://data.delijn.be/stops/301364", "https://data.delijn.be/stops/306153"], ["https://data.delijn.be/stops/106881", "https://data.delijn.be/stops/109750"], ["https://data.delijn.be/stops/202078", "https://data.delijn.be/stops/202448"], ["https://data.delijn.be/stops/402982", "https://data.delijn.be/stops/404699"], ["https://data.delijn.be/stops/107585", "https://data.delijn.be/stops/107590"], ["https://data.delijn.be/stops/409360", "https://data.delijn.be/stops/409440"], ["https://data.delijn.be/stops/408390", "https://data.delijn.be/stops/308218"], ["https://data.delijn.be/stops/301239", "https://data.delijn.be/stops/307614"], ["https://data.delijn.be/stops/200870", "https://data.delijn.be/stops/203336"], ["https://data.delijn.be/stops/301035", "https://data.delijn.be/stops/303833"], ["https://data.delijn.be/stops/409369", "https://data.delijn.be/stops/409371"], ["https://data.delijn.be/stops/109282", "https://data.delijn.be/stops/109284"], ["https://data.delijn.be/stops/502251", "https://data.delijn.be/stops/507251"], ["https://data.delijn.be/stops/207113", "https://data.delijn.be/stops/207156"], ["https://data.delijn.be/stops/407242", "https://data.delijn.be/stops/407450"], ["https://data.delijn.be/stops/503470", "https://data.delijn.be/stops/508470"], ["https://data.delijn.be/stops/500019", "https://data.delijn.be/stops/507046"], ["https://data.delijn.be/stops/208778", "https://data.delijn.be/stops/208779"], ["https://data.delijn.be/stops/502801", "https://data.delijn.be/stops/504990"], ["https://data.delijn.be/stops/105214", "https://data.delijn.be/stops/106248"], ["https://data.delijn.be/stops/402935", "https://data.delijn.be/stops/403960"], ["https://data.delijn.be/stops/105338", "https://data.delijn.be/stops/105339"], ["https://data.delijn.be/stops/106642", "https://data.delijn.be/stops/106648"], ["https://data.delijn.be/stops/200229", "https://data.delijn.be/stops/201229"], ["https://data.delijn.be/stops/402703", "https://data.delijn.be/stops/404433"], ["https://data.delijn.be/stops/301110", "https://data.delijn.be/stops/303674"], ["https://data.delijn.be/stops/102653", "https://data.delijn.be/stops/107791"], ["https://data.delijn.be/stops/503589", "https://data.delijn.be/stops/505663"], ["https://data.delijn.be/stops/105512", "https://data.delijn.be/stops/105513"], ["https://data.delijn.be/stops/205928", "https://data.delijn.be/stops/205929"], ["https://data.delijn.be/stops/303463", "https://data.delijn.be/stops/303490"], ["https://data.delijn.be/stops/504978", "https://data.delijn.be/stops/504979"], ["https://data.delijn.be/stops/205092", "https://data.delijn.be/stops/205173"], ["https://data.delijn.be/stops/409500", "https://data.delijn.be/stops/409516"], ["https://data.delijn.be/stops/401300", "https://data.delijn.be/stops/401321"], ["https://data.delijn.be/stops/201071", "https://data.delijn.be/stops/203352"], ["https://data.delijn.be/stops/401308", "https://data.delijn.be/stops/406656"], ["https://data.delijn.be/stops/103758", "https://data.delijn.be/stops/108140"], ["https://data.delijn.be/stops/103753", "https://data.delijn.be/stops/104630"], ["https://data.delijn.be/stops/103096", "https://data.delijn.be/stops/109273"], ["https://data.delijn.be/stops/504086", "https://data.delijn.be/stops/505102"], ["https://data.delijn.be/stops/404638", "https://data.delijn.be/stops/404641"], ["https://data.delijn.be/stops/308047", "https://data.delijn.be/stops/308446"], ["https://data.delijn.be/stops/503390", "https://data.delijn.be/stops/508197"], ["https://data.delijn.be/stops/505777", "https://data.delijn.be/stops/507236"], ["https://data.delijn.be/stops/107022", "https://data.delijn.be/stops/107024"], ["https://data.delijn.be/stops/401298", "https://data.delijn.be/stops/401306"], ["https://data.delijn.be/stops/106482", "https://data.delijn.be/stops/109211"], ["https://data.delijn.be/stops/106457", "https://data.delijn.be/stops/107036"], ["https://data.delijn.be/stops/409062", "https://data.delijn.be/stops/409123"], ["https://data.delijn.be/stops/104510", "https://data.delijn.be/stops/108830"], ["https://data.delijn.be/stops/400835", "https://data.delijn.be/stops/409532"], ["https://data.delijn.be/stops/106005", "https://data.delijn.be/stops/108035"], ["https://data.delijn.be/stops/101780", "https://data.delijn.be/stops/108975"], ["https://data.delijn.be/stops/205977", "https://data.delijn.be/stops/208245"], ["https://data.delijn.be/stops/408874", "https://data.delijn.be/stops/408910"], ["https://data.delijn.be/stops/202192", "https://data.delijn.be/stops/203193"], ["https://data.delijn.be/stops/300137", "https://data.delijn.be/stops/306812"], ["https://data.delijn.be/stops/208516", "https://data.delijn.be/stops/209442"], ["https://data.delijn.be/stops/206518", "https://data.delijn.be/stops/207445"], ["https://data.delijn.be/stops/403009", "https://data.delijn.be/stops/403309"], ["https://data.delijn.be/stops/302186", "https://data.delijn.be/stops/302205"], ["https://data.delijn.be/stops/307301", "https://data.delijn.be/stops/307318"], ["https://data.delijn.be/stops/208246", "https://data.delijn.be/stops/208248"], ["https://data.delijn.be/stops/201230", "https://data.delijn.be/stops/201232"], ["https://data.delijn.be/stops/208138", "https://data.delijn.be/stops/209133"], ["https://data.delijn.be/stops/107784", "https://data.delijn.be/stops/107788"], ["https://data.delijn.be/stops/402802", "https://data.delijn.be/stops/409046"], ["https://data.delijn.be/stops/404400", "https://data.delijn.be/stops/404410"], ["https://data.delijn.be/stops/200092", "https://data.delijn.be/stops/201093"], ["https://data.delijn.be/stops/307147", "https://data.delijn.be/stops/307149"], ["https://data.delijn.be/stops/503179", "https://data.delijn.be/stops/508179"], ["https://data.delijn.be/stops/502569", "https://data.delijn.be/stops/505700"], ["https://data.delijn.be/stops/407623", "https://data.delijn.be/stops/407701"], ["https://data.delijn.be/stops/102595", "https://data.delijn.be/stops/108305"], ["https://data.delijn.be/stops/508240", "https://data.delijn.be/stops/508518"], ["https://data.delijn.be/stops/104404", "https://data.delijn.be/stops/104409"], ["https://data.delijn.be/stops/508255", "https://data.delijn.be/stops/509793"], ["https://data.delijn.be/stops/204415", "https://data.delijn.be/stops/205769"], ["https://data.delijn.be/stops/305412", "https://data.delijn.be/stops/305414"], ["https://data.delijn.be/stops/200091", "https://data.delijn.be/stops/200479"], ["https://data.delijn.be/stops/300371", "https://data.delijn.be/stops/300401"], ["https://data.delijn.be/stops/502109", "https://data.delijn.be/stops/502122"], ["https://data.delijn.be/stops/300721", "https://data.delijn.be/stops/300724"], ["https://data.delijn.be/stops/505097", "https://data.delijn.be/stops/505124"], ["https://data.delijn.be/stops/302637", "https://data.delijn.be/stops/308116"], ["https://data.delijn.be/stops/502599", "https://data.delijn.be/stops/507599"], ["https://data.delijn.be/stops/204213", "https://data.delijn.be/stops/205213"], ["https://data.delijn.be/stops/401370", "https://data.delijn.be/stops/401373"], ["https://data.delijn.be/stops/303412", "https://data.delijn.be/stops/303413"], ["https://data.delijn.be/stops/501200", "https://data.delijn.be/stops/506200"], ["https://data.delijn.be/stops/401316", "https://data.delijn.be/stops/401324"], ["https://data.delijn.be/stops/109013", "https://data.delijn.be/stops/109014"], ["https://data.delijn.be/stops/405751", "https://data.delijn.be/stops/408329"], ["https://data.delijn.be/stops/302948", "https://data.delijn.be/stops/303003"], ["https://data.delijn.be/stops/103223", "https://data.delijn.be/stops/108615"], ["https://data.delijn.be/stops/205446", "https://data.delijn.be/stops/214002"], ["https://data.delijn.be/stops/502062", "https://data.delijn.be/stops/504881"], ["https://data.delijn.be/stops/502339", "https://data.delijn.be/stops/502692"], ["https://data.delijn.be/stops/404156", "https://data.delijn.be/stops/404166"], ["https://data.delijn.be/stops/301926", "https://data.delijn.be/stops/307878"], ["https://data.delijn.be/stops/103048", "https://data.delijn.be/stops/103049"], ["https://data.delijn.be/stops/107014", "https://data.delijn.be/stops/107017"], ["https://data.delijn.be/stops/209547", "https://data.delijn.be/stops/209548"], ["https://data.delijn.be/stops/409100", "https://data.delijn.be/stops/409102"], ["https://data.delijn.be/stops/301736", "https://data.delijn.be/stops/308423"], ["https://data.delijn.be/stops/204557", "https://data.delijn.be/stops/205030"], ["https://data.delijn.be/stops/102790", "https://data.delijn.be/stops/103090"], ["https://data.delijn.be/stops/102185", "https://data.delijn.be/stops/106359"], ["https://data.delijn.be/stops/504554", "https://data.delijn.be/stops/505289"], ["https://data.delijn.be/stops/307758", "https://data.delijn.be/stops/307759"], ["https://data.delijn.be/stops/104054", "https://data.delijn.be/stops/104056"], ["https://data.delijn.be/stops/401030", "https://data.delijn.be/stops/401039"], ["https://data.delijn.be/stops/503296", "https://data.delijn.be/stops/505934"], ["https://data.delijn.be/stops/501324", "https://data.delijn.be/stops/506324"], ["https://data.delijn.be/stops/406185", "https://data.delijn.be/stops/406431"], ["https://data.delijn.be/stops/300651", "https://data.delijn.be/stops/300664"], ["https://data.delijn.be/stops/104185", "https://data.delijn.be/stops/104521"], ["https://data.delijn.be/stops/401327", "https://data.delijn.be/stops/401355"], ["https://data.delijn.be/stops/502468", "https://data.delijn.be/stops/502472"], ["https://data.delijn.be/stops/101749", "https://data.delijn.be/stops/102754"], ["https://data.delijn.be/stops/209045", "https://data.delijn.be/stops/209061"], ["https://data.delijn.be/stops/102485", "https://data.delijn.be/stops/107665"], ["https://data.delijn.be/stops/207757", "https://data.delijn.be/stops/207780"], ["https://data.delijn.be/stops/206605", "https://data.delijn.be/stops/206606"], ["https://data.delijn.be/stops/101590", "https://data.delijn.be/stops/104115"], ["https://data.delijn.be/stops/504412", "https://data.delijn.be/stops/509080"], ["https://data.delijn.be/stops/104609", "https://data.delijn.be/stops/104817"], ["https://data.delijn.be/stops/105159", "https://data.delijn.be/stops/105166"], ["https://data.delijn.be/stops/505792", "https://data.delijn.be/stops/508103"], ["https://data.delijn.be/stops/303753", "https://data.delijn.be/stops/303756"], ["https://data.delijn.be/stops/401583", "https://data.delijn.be/stops/401904"], ["https://data.delijn.be/stops/302150", "https://data.delijn.be/stops/302151"], ["https://data.delijn.be/stops/402115", "https://data.delijn.be/stops/409299"], ["https://data.delijn.be/stops/305767", "https://data.delijn.be/stops/305785"], ["https://data.delijn.be/stops/505810", "https://data.delijn.be/stops/509054"], ["https://data.delijn.be/stops/301547", "https://data.delijn.be/stops/305137"], ["https://data.delijn.be/stops/106172", "https://data.delijn.be/stops/106175"], ["https://data.delijn.be/stops/502915", "https://data.delijn.be/stops/507023"], ["https://data.delijn.be/stops/403425", "https://data.delijn.be/stops/403584"], ["https://data.delijn.be/stops/404999", "https://data.delijn.be/stops/405530"], ["https://data.delijn.be/stops/304812", "https://data.delijn.be/stops/307885"], ["https://data.delijn.be/stops/505793", "https://data.delijn.be/stops/508044"], ["https://data.delijn.be/stops/202144", "https://data.delijn.be/stops/203144"], ["https://data.delijn.be/stops/206265", "https://data.delijn.be/stops/207981"], ["https://data.delijn.be/stops/401529", "https://data.delijn.be/stops/409504"], ["https://data.delijn.be/stops/200113", "https://data.delijn.be/stops/201113"], ["https://data.delijn.be/stops/204527", "https://data.delijn.be/stops/205732"], ["https://data.delijn.be/stops/203823", "https://data.delijn.be/stops/208240"], ["https://data.delijn.be/stops/407159", "https://data.delijn.be/stops/408729"], ["https://data.delijn.be/stops/101506", "https://data.delijn.be/stops/109034"], ["https://data.delijn.be/stops/304379", "https://data.delijn.be/stops/304380"], ["https://data.delijn.be/stops/207329", "https://data.delijn.be/stops/308845"], ["https://data.delijn.be/stops/504864", "https://data.delijn.be/stops/508340"], ["https://data.delijn.be/stops/205399", "https://data.delijn.be/stops/205772"], ["https://data.delijn.be/stops/505176", "https://data.delijn.be/stops/509720"], ["https://data.delijn.be/stops/200595", "https://data.delijn.be/stops/201595"], ["https://data.delijn.be/stops/504204", "https://data.delijn.be/stops/509204"], ["https://data.delijn.be/stops/208081", "https://data.delijn.be/stops/218015"], ["https://data.delijn.be/stops/202697", "https://data.delijn.be/stops/202706"], ["https://data.delijn.be/stops/209616", "https://data.delijn.be/stops/209617"], ["https://data.delijn.be/stops/208331", "https://data.delijn.be/stops/208716"], ["https://data.delijn.be/stops/401908", "https://data.delijn.be/stops/403576"], ["https://data.delijn.be/stops/407620", "https://data.delijn.be/stops/407621"], ["https://data.delijn.be/stops/402702", "https://data.delijn.be/stops/405997"], ["https://data.delijn.be/stops/202578", "https://data.delijn.be/stops/203579"], ["https://data.delijn.be/stops/102082", "https://data.delijn.be/stops/105834"], ["https://data.delijn.be/stops/400695", "https://data.delijn.be/stops/409524"], ["https://data.delijn.be/stops/402108", "https://data.delijn.be/stops/410335"], ["https://data.delijn.be/stops/501253", "https://data.delijn.be/stops/506250"], ["https://data.delijn.be/stops/401813", "https://data.delijn.be/stops/406354"], ["https://data.delijn.be/stops/106607", "https://data.delijn.be/stops/106609"], ["https://data.delijn.be/stops/308722", "https://data.delijn.be/stops/308733"], ["https://data.delijn.be/stops/404346", "https://data.delijn.be/stops/405669"], ["https://data.delijn.be/stops/500948", "https://data.delijn.be/stops/508067"], ["https://data.delijn.be/stops/206809", "https://data.delijn.be/stops/207201"], ["https://data.delijn.be/stops/302702", "https://data.delijn.be/stops/308062"], ["https://data.delijn.be/stops/202485", "https://data.delijn.be/stops/203485"], ["https://data.delijn.be/stops/200160", "https://data.delijn.be/stops/200536"], ["https://data.delijn.be/stops/402412", "https://data.delijn.be/stops/402413"], ["https://data.delijn.be/stops/301382", "https://data.delijn.be/stops/306138"], ["https://data.delijn.be/stops/109239", "https://data.delijn.be/stops/109246"], ["https://data.delijn.be/stops/503634", "https://data.delijn.be/stops/503961"], ["https://data.delijn.be/stops/302457", "https://data.delijn.be/stops/302459"], ["https://data.delijn.be/stops/404718", "https://data.delijn.be/stops/404721"], ["https://data.delijn.be/stops/504502", "https://data.delijn.be/stops/504730"], ["https://data.delijn.be/stops/505511", "https://data.delijn.be/stops/505611"], ["https://data.delijn.be/stops/406166", "https://data.delijn.be/stops/406167"], ["https://data.delijn.be/stops/201943", "https://data.delijn.be/stops/203491"], ["https://data.delijn.be/stops/404363", "https://data.delijn.be/stops/404782"], ["https://data.delijn.be/stops/300501", "https://data.delijn.be/stops/300505"], ["https://data.delijn.be/stops/301663", "https://data.delijn.be/stops/301664"], ["https://data.delijn.be/stops/200148", "https://data.delijn.be/stops/201149"], ["https://data.delijn.be/stops/305766", "https://data.delijn.be/stops/305768"], ["https://data.delijn.be/stops/206361", "https://data.delijn.be/stops/206365"], ["https://data.delijn.be/stops/500952", "https://data.delijn.be/stops/503633"], ["https://data.delijn.be/stops/204541", "https://data.delijn.be/stops/205541"], ["https://data.delijn.be/stops/300450", "https://data.delijn.be/stops/300476"], ["https://data.delijn.be/stops/104898", "https://data.delijn.be/stops/107647"], ["https://data.delijn.be/stops/301292", "https://data.delijn.be/stops/304693"], ["https://data.delijn.be/stops/403960", "https://data.delijn.be/stops/403961"], ["https://data.delijn.be/stops/103169", "https://data.delijn.be/stops/109892"], ["https://data.delijn.be/stops/407911", "https://data.delijn.be/stops/408199"], ["https://data.delijn.be/stops/404470", "https://data.delijn.be/stops/404471"], ["https://data.delijn.be/stops/204171", "https://data.delijn.be/stops/204771"], ["https://data.delijn.be/stops/402136", "https://data.delijn.be/stops/402155"], ["https://data.delijn.be/stops/101787", "https://data.delijn.be/stops/109228"], ["https://data.delijn.be/stops/200114", "https://data.delijn.be/stops/203077"], ["https://data.delijn.be/stops/408200", "https://data.delijn.be/stops/307452"], ["https://data.delijn.be/stops/405199", "https://data.delijn.be/stops/405239"], ["https://data.delijn.be/stops/101176", "https://data.delijn.be/stops/106784"], ["https://data.delijn.be/stops/409578", "https://data.delijn.be/stops/409592"], ["https://data.delijn.be/stops/405694", "https://data.delijn.be/stops/405695"], ["https://data.delijn.be/stops/406874", "https://data.delijn.be/stops/409760"], ["https://data.delijn.be/stops/404726", "https://data.delijn.be/stops/404833"], ["https://data.delijn.be/stops/201546", "https://data.delijn.be/stops/202896"], ["https://data.delijn.be/stops/302325", "https://data.delijn.be/stops/307075"], ["https://data.delijn.be/stops/102594", "https://data.delijn.be/stops/109918"], ["https://data.delijn.be/stops/510027", "https://data.delijn.be/stops/510028"], ["https://data.delijn.be/stops/304076", "https://data.delijn.be/stops/307814"], ["https://data.delijn.be/stops/103042", "https://data.delijn.be/stops/106809"], ["https://data.delijn.be/stops/206444", "https://data.delijn.be/stops/209681"], ["https://data.delijn.be/stops/300445", "https://data.delijn.be/stops/301180"], ["https://data.delijn.be/stops/506299", "https://data.delijn.be/stops/506330"], ["https://data.delijn.be/stops/400894", "https://data.delijn.be/stops/400952"], ["https://data.delijn.be/stops/402385", "https://data.delijn.be/stops/402493"], ["https://data.delijn.be/stops/405958", "https://data.delijn.be/stops/308155"], ["https://data.delijn.be/stops/208146", "https://data.delijn.be/stops/209583"], ["https://data.delijn.be/stops/203380", "https://data.delijn.be/stops/203381"], ["https://data.delijn.be/stops/202830", "https://data.delijn.be/stops/219022"], ["https://data.delijn.be/stops/200814", "https://data.delijn.be/stops/202224"], ["https://data.delijn.be/stops/304508", "https://data.delijn.be/stops/304509"], ["https://data.delijn.be/stops/500041", "https://data.delijn.be/stops/507456"], ["https://data.delijn.be/stops/208798", "https://data.delijn.be/stops/209499"], ["https://data.delijn.be/stops/501699", "https://data.delijn.be/stops/506479"], ["https://data.delijn.be/stops/406869", "https://data.delijn.be/stops/406871"], ["https://data.delijn.be/stops/402678", "https://data.delijn.be/stops/402726"], ["https://data.delijn.be/stops/202758", "https://data.delijn.be/stops/203762"], ["https://data.delijn.be/stops/403087", "https://data.delijn.be/stops/403680"], ["https://data.delijn.be/stops/103642", "https://data.delijn.be/stops/107171"], ["https://data.delijn.be/stops/208054", "https://data.delijn.be/stops/209055"], ["https://data.delijn.be/stops/504272", "https://data.delijn.be/stops/504578"], ["https://data.delijn.be/stops/502390", "https://data.delijn.be/stops/502652"], ["https://data.delijn.be/stops/300919", "https://data.delijn.be/stops/304719"], ["https://data.delijn.be/stops/501406", "https://data.delijn.be/stops/506177"], ["https://data.delijn.be/stops/403462", "https://data.delijn.be/stops/403483"], ["https://data.delijn.be/stops/300370", "https://data.delijn.be/stops/307726"], ["https://data.delijn.be/stops/406535", "https://data.delijn.be/stops/409631"], ["https://data.delijn.be/stops/103637", "https://data.delijn.be/stops/107166"], ["https://data.delijn.be/stops/208140", "https://data.delijn.be/stops/209851"], ["https://data.delijn.be/stops/302253", "https://data.delijn.be/stops/303207"], ["https://data.delijn.be/stops/405333", "https://data.delijn.be/stops/405336"], ["https://data.delijn.be/stops/105694", "https://data.delijn.be/stops/105697"], ["https://data.delijn.be/stops/501502", "https://data.delijn.be/stops/506386"], ["https://data.delijn.be/stops/503623", "https://data.delijn.be/stops/503633"], ["https://data.delijn.be/stops/503866", "https://data.delijn.be/stops/508874"], ["https://data.delijn.be/stops/208060", "https://data.delijn.be/stops/208660"], ["https://data.delijn.be/stops/304405", "https://data.delijn.be/stops/304406"], ["https://data.delijn.be/stops/502294", "https://data.delijn.be/stops/507296"], ["https://data.delijn.be/stops/104410", "https://data.delijn.be/stops/107660"], ["https://data.delijn.be/stops/206854", "https://data.delijn.be/stops/207197"], ["https://data.delijn.be/stops/400545", "https://data.delijn.be/stops/400555"], ["https://data.delijn.be/stops/304125", "https://data.delijn.be/stops/304129"], ["https://data.delijn.be/stops/501049", "https://data.delijn.be/stops/506082"], ["https://data.delijn.be/stops/307616", "https://data.delijn.be/stops/308258"], ["https://data.delijn.be/stops/507427", "https://data.delijn.be/stops/507751"], ["https://data.delijn.be/stops/204322", "https://data.delijn.be/stops/205061"], ["https://data.delijn.be/stops/407155", "https://data.delijn.be/stops/407183"], ["https://data.delijn.be/stops/207378", "https://data.delijn.be/stops/207730"], ["https://data.delijn.be/stops/206891", "https://data.delijn.be/stops/207888"], ["https://data.delijn.be/stops/508010", "https://data.delijn.be/stops/508015"], ["https://data.delijn.be/stops/209715", "https://data.delijn.be/stops/219503"], ["https://data.delijn.be/stops/300082", "https://data.delijn.be/stops/306784"], ["https://data.delijn.be/stops/404363", "https://data.delijn.be/stops/404369"], ["https://data.delijn.be/stops/201546", "https://data.delijn.be/stops/203897"], ["https://data.delijn.be/stops/302626", "https://data.delijn.be/stops/302644"], ["https://data.delijn.be/stops/102934", "https://data.delijn.be/stops/106041"], ["https://data.delijn.be/stops/301507", "https://data.delijn.be/stops/301516"], ["https://data.delijn.be/stops/107990", "https://data.delijn.be/stops/108240"], ["https://data.delijn.be/stops/405002", "https://data.delijn.be/stops/405019"], ["https://data.delijn.be/stops/504452", "https://data.delijn.be/stops/509456"], ["https://data.delijn.be/stops/300126", "https://data.delijn.be/stops/307070"], ["https://data.delijn.be/stops/204124", "https://data.delijn.be/stops/204127"], ["https://data.delijn.be/stops/501105", "https://data.delijn.be/stops/501107"], ["https://data.delijn.be/stops/502733", "https://data.delijn.be/stops/505172"], ["https://data.delijn.be/stops/303890", "https://data.delijn.be/stops/307797"], ["https://data.delijn.be/stops/101088", "https://data.delijn.be/stops/105977"], ["https://data.delijn.be/stops/102454", "https://data.delijn.be/stops/109642"], ["https://data.delijn.be/stops/405369", "https://data.delijn.be/stops/405391"], ["https://data.delijn.be/stops/209210", "https://data.delijn.be/stops/209808"], ["https://data.delijn.be/stops/501623", "https://data.delijn.be/stops/506623"], ["https://data.delijn.be/stops/401538", "https://data.delijn.be/stops/401890"], ["https://data.delijn.be/stops/504980", "https://data.delijn.be/stops/504981"], ["https://data.delijn.be/stops/402151", "https://data.delijn.be/stops/406810"], ["https://data.delijn.be/stops/206784", "https://data.delijn.be/stops/209030"], ["https://data.delijn.be/stops/303963", "https://data.delijn.be/stops/303965"], ["https://data.delijn.be/stops/302974", "https://data.delijn.be/stops/303004"], ["https://data.delijn.be/stops/203646", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/509512", "https://data.delijn.be/stops/509951"], ["https://data.delijn.be/stops/304209", "https://data.delijn.be/stops/305353"], ["https://data.delijn.be/stops/301666", "https://data.delijn.be/stops/307823"], ["https://data.delijn.be/stops/502407", "https://data.delijn.be/stops/507621"], ["https://data.delijn.be/stops/304614", "https://data.delijn.be/stops/304639"], ["https://data.delijn.be/stops/402096", "https://data.delijn.be/stops/402230"], ["https://data.delijn.be/stops/408030", "https://data.delijn.be/stops/408089"], ["https://data.delijn.be/stops/306815", "https://data.delijn.be/stops/307427"], ["https://data.delijn.be/stops/306909", "https://data.delijn.be/stops/306912"], ["https://data.delijn.be/stops/109449", "https://data.delijn.be/stops/109450"], ["https://data.delijn.be/stops/204235", "https://data.delijn.be/stops/204597"], ["https://data.delijn.be/stops/306745", "https://data.delijn.be/stops/306886"], ["https://data.delijn.be/stops/403731", "https://data.delijn.be/stops/403875"], ["https://data.delijn.be/stops/301365", "https://data.delijn.be/stops/308768"], ["https://data.delijn.be/stops/101972", "https://data.delijn.be/stops/109704"], ["https://data.delijn.be/stops/101389", "https://data.delijn.be/stops/101390"], ["https://data.delijn.be/stops/504324", "https://data.delijn.be/stops/504472"], ["https://data.delijn.be/stops/301841", "https://data.delijn.be/stops/301846"], ["https://data.delijn.be/stops/102422", "https://data.delijn.be/stops/107322"], ["https://data.delijn.be/stops/504967", "https://data.delijn.be/stops/509968"], ["https://data.delijn.be/stops/200318", "https://data.delijn.be/stops/200475"], ["https://data.delijn.be/stops/300346", "https://data.delijn.be/stops/300355"], ["https://data.delijn.be/stops/204161", "https://data.delijn.be/stops/204581"], ["https://data.delijn.be/stops/503792", "https://data.delijn.be/stops/508795"], ["https://data.delijn.be/stops/505120", "https://data.delijn.be/stops/505984"], ["https://data.delijn.be/stops/506191", "https://data.delijn.be/stops/506380"], ["https://data.delijn.be/stops/503768", "https://data.delijn.be/stops/508768"], ["https://data.delijn.be/stops/503706", "https://data.delijn.be/stops/503754"], ["https://data.delijn.be/stops/502058", "https://data.delijn.be/stops/507030"], ["https://data.delijn.be/stops/404660", "https://data.delijn.be/stops/404661"], ["https://data.delijn.be/stops/102684", "https://data.delijn.be/stops/104736"], ["https://data.delijn.be/stops/104469", "https://data.delijn.be/stops/307524"], ["https://data.delijn.be/stops/206612", "https://data.delijn.be/stops/206707"], ["https://data.delijn.be/stops/401800", "https://data.delijn.be/stops/410354"], ["https://data.delijn.be/stops/206229", "https://data.delijn.be/stops/207229"], ["https://data.delijn.be/stops/206225", "https://data.delijn.be/stops/207226"], ["https://data.delijn.be/stops/403092", "https://data.delijn.be/stops/403235"], ["https://data.delijn.be/stops/407117", "https://data.delijn.be/stops/407339"], ["https://data.delijn.be/stops/406368", "https://data.delijn.be/stops/406374"], ["https://data.delijn.be/stops/400721", "https://data.delijn.be/stops/401885"], ["https://data.delijn.be/stops/105331", "https://data.delijn.be/stops/105333"], ["https://data.delijn.be/stops/103740", "https://data.delijn.be/stops/103750"], ["https://data.delijn.be/stops/303294", "https://data.delijn.be/stops/303296"], ["https://data.delijn.be/stops/404547", "https://data.delijn.be/stops/404574"], ["https://data.delijn.be/stops/305028", "https://data.delijn.be/stops/305455"], ["https://data.delijn.be/stops/500026", "https://data.delijn.be/stops/507768"], ["https://data.delijn.be/stops/202164", "https://data.delijn.be/stops/202969"], ["https://data.delijn.be/stops/104453", "https://data.delijn.be/stops/107492"], ["https://data.delijn.be/stops/202346", "https://data.delijn.be/stops/203346"], ["https://data.delijn.be/stops/105278", "https://data.delijn.be/stops/105294"], ["https://data.delijn.be/stops/101136", "https://data.delijn.be/stops/103352"], ["https://data.delijn.be/stops/103909", "https://data.delijn.be/stops/106362"], ["https://data.delijn.be/stops/101983", "https://data.delijn.be/stops/102288"], ["https://data.delijn.be/stops/404780", "https://data.delijn.be/stops/404785"], ["https://data.delijn.be/stops/405859", "https://data.delijn.be/stops/405863"], ["https://data.delijn.be/stops/501224", "https://data.delijn.be/stops/506224"], ["https://data.delijn.be/stops/501084", "https://data.delijn.be/stops/506053"], ["https://data.delijn.be/stops/109447", "https://data.delijn.be/stops/109449"], ["https://data.delijn.be/stops/302859", "https://data.delijn.be/stops/304184"], ["https://data.delijn.be/stops/403412", "https://data.delijn.be/stops/410399"], ["https://data.delijn.be/stops/407902", "https://data.delijn.be/stops/408043"], ["https://data.delijn.be/stops/300528", "https://data.delijn.be/stops/303264"], ["https://data.delijn.be/stops/208796", "https://data.delijn.be/stops/209116"], ["https://data.delijn.be/stops/206963", "https://data.delijn.be/stops/207415"], ["https://data.delijn.be/stops/301370", "https://data.delijn.be/stops/306132"], ["https://data.delijn.be/stops/503090", "https://data.delijn.be/stops/507620"], ["https://data.delijn.be/stops/206305", "https://data.delijn.be/stops/207048"], ["https://data.delijn.be/stops/206542", "https://data.delijn.be/stops/207542"], ["https://data.delijn.be/stops/102591", "https://data.delijn.be/stops/102897"], ["https://data.delijn.be/stops/102546", "https://data.delijn.be/stops/406547"], ["https://data.delijn.be/stops/106817", "https://data.delijn.be/stops/106818"], ["https://data.delijn.be/stops/503487", "https://data.delijn.be/stops/503903"], ["https://data.delijn.be/stops/405170", "https://data.delijn.be/stops/405174"], ["https://data.delijn.be/stops/408106", "https://data.delijn.be/stops/408141"], ["https://data.delijn.be/stops/501408", "https://data.delijn.be/stops/506418"], ["https://data.delijn.be/stops/200413", "https://data.delijn.be/stops/201413"], ["https://data.delijn.be/stops/101401", "https://data.delijn.be/stops/103242"], ["https://data.delijn.be/stops/403388", "https://data.delijn.be/stops/403532"], ["https://data.delijn.be/stops/504131", "https://data.delijn.be/stops/505401"], ["https://data.delijn.be/stops/305105", "https://data.delijn.be/stops/308122"], ["https://data.delijn.be/stops/400593", "https://data.delijn.be/stops/400604"], ["https://data.delijn.be/stops/303011", "https://data.delijn.be/stops/306319"], ["https://data.delijn.be/stops/107422", "https://data.delijn.be/stops/109696"], ["https://data.delijn.be/stops/502713", "https://data.delijn.be/stops/505010"], ["https://data.delijn.be/stops/408116", "https://data.delijn.be/stops/408162"], ["https://data.delijn.be/stops/400459", "https://data.delijn.be/stops/400496"], ["https://data.delijn.be/stops/301736", "https://data.delijn.be/stops/308708"], ["https://data.delijn.be/stops/504089", "https://data.delijn.be/stops/505927"], ["https://data.delijn.be/stops/503977", "https://data.delijn.be/stops/508450"], ["https://data.delijn.be/stops/200185", "https://data.delijn.be/stops/202756"], ["https://data.delijn.be/stops/200604", "https://data.delijn.be/stops/210098"], ["https://data.delijn.be/stops/403229", "https://data.delijn.be/stops/410280"], ["https://data.delijn.be/stops/504961", "https://data.delijn.be/stops/508062"], ["https://data.delijn.be/stops/402843", "https://data.delijn.be/stops/409239"], ["https://data.delijn.be/stops/400556", "https://data.delijn.be/stops/403232"], ["https://data.delijn.be/stops/501062", "https://data.delijn.be/stops/501065"], ["https://data.delijn.be/stops/502068", "https://data.delijn.be/stops/505675"], ["https://data.delijn.be/stops/301675", "https://data.delijn.be/stops/301676"], ["https://data.delijn.be/stops/504166", "https://data.delijn.be/stops/509166"], ["https://data.delijn.be/stops/103043", "https://data.delijn.be/stops/104014"], ["https://data.delijn.be/stops/104602", "https://data.delijn.be/stops/108278"], ["https://data.delijn.be/stops/405556", "https://data.delijn.be/stops/405577"], ["https://data.delijn.be/stops/404266", "https://data.delijn.be/stops/405552"], ["https://data.delijn.be/stops/402516", "https://data.delijn.be/stops/402517"], ["https://data.delijn.be/stops/208215", "https://data.delijn.be/stops/209214"], ["https://data.delijn.be/stops/103489", "https://data.delijn.be/stops/108268"], ["https://data.delijn.be/stops/200070", "https://data.delijn.be/stops/200071"], ["https://data.delijn.be/stops/409613", "https://data.delijn.be/stops/409614"], ["https://data.delijn.be/stops/303551", "https://data.delijn.be/stops/304718"], ["https://data.delijn.be/stops/206220", "https://data.delijn.be/stops/207196"], ["https://data.delijn.be/stops/502221", "https://data.delijn.be/stops/507221"], ["https://data.delijn.be/stops/301072", "https://data.delijn.be/stops/307808"], ["https://data.delijn.be/stops/407212", "https://data.delijn.be/stops/407213"], ["https://data.delijn.be/stops/106375", "https://data.delijn.be/stops/106381"], ["https://data.delijn.be/stops/400700", "https://data.delijn.be/stops/400701"], ["https://data.delijn.be/stops/102549", "https://data.delijn.be/stops/405015"], ["https://data.delijn.be/stops/301449", "https://data.delijn.be/stops/306667"], ["https://data.delijn.be/stops/108617", "https://data.delijn.be/stops/305815"], ["https://data.delijn.be/stops/103538", "https://data.delijn.be/stops/109635"], ["https://data.delijn.be/stops/107906", "https://data.delijn.be/stops/108961"], ["https://data.delijn.be/stops/305755", "https://data.delijn.be/stops/308130"], ["https://data.delijn.be/stops/506045", "https://data.delijn.be/stops/507135"], ["https://data.delijn.be/stops/300195", "https://data.delijn.be/stops/300217"], ["https://data.delijn.be/stops/401550", "https://data.delijn.be/stops/404926"], ["https://data.delijn.be/stops/300463", "https://data.delijn.be/stops/300473"], ["https://data.delijn.be/stops/201314", "https://data.delijn.be/stops/218936"], ["https://data.delijn.be/stops/304026", "https://data.delijn.be/stops/308604"], ["https://data.delijn.be/stops/200463", "https://data.delijn.be/stops/201462"], ["https://data.delijn.be/stops/103234", "https://data.delijn.be/stops/107687"], ["https://data.delijn.be/stops/503347", "https://data.delijn.be/stops/508694"], ["https://data.delijn.be/stops/409088", "https://data.delijn.be/stops/409215"], ["https://data.delijn.be/stops/103993", "https://data.delijn.be/stops/109882"], ["https://data.delijn.be/stops/102464", "https://data.delijn.be/stops/102467"], ["https://data.delijn.be/stops/403754", "https://data.delijn.be/stops/403755"], ["https://data.delijn.be/stops/307135", "https://data.delijn.be/stops/308715"], ["https://data.delijn.be/stops/206125", "https://data.delijn.be/stops/207156"], ["https://data.delijn.be/stops/402970", "https://data.delijn.be/stops/403708"], ["https://data.delijn.be/stops/303838", "https://data.delijn.be/stops/303839"], ["https://data.delijn.be/stops/300739", "https://data.delijn.be/stops/308530"], ["https://data.delijn.be/stops/200101", "https://data.delijn.be/stops/200102"], ["https://data.delijn.be/stops/404920", "https://data.delijn.be/stops/404949"], ["https://data.delijn.be/stops/204400", "https://data.delijn.be/stops/205020"], ["https://data.delijn.be/stops/103991", "https://data.delijn.be/stops/105396"], ["https://data.delijn.be/stops/305093", "https://data.delijn.be/stops/305094"], ["https://data.delijn.be/stops/208329", "https://data.delijn.be/stops/210004"], ["https://data.delijn.be/stops/104378", "https://data.delijn.be/stops/104379"], ["https://data.delijn.be/stops/405904", "https://data.delijn.be/stops/405906"], ["https://data.delijn.be/stops/201356", "https://data.delijn.be/stops/211087"], ["https://data.delijn.be/stops/406276", "https://data.delijn.be/stops/406312"], ["https://data.delijn.be/stops/210076", "https://data.delijn.be/stops/505523"], ["https://data.delijn.be/stops/101947", "https://data.delijn.be/stops/108748"], ["https://data.delijn.be/stops/202397", "https://data.delijn.be/stops/203562"], ["https://data.delijn.be/stops/504019", "https://data.delijn.be/stops/504985"], ["https://data.delijn.be/stops/302515", "https://data.delijn.be/stops/305839"], ["https://data.delijn.be/stops/403595", "https://data.delijn.be/stops/404368"], ["https://data.delijn.be/stops/507693", "https://data.delijn.be/stops/508018"], ["https://data.delijn.be/stops/101726", "https://data.delijn.be/stops/102091"], ["https://data.delijn.be/stops/402977", "https://data.delijn.be/stops/407797"], ["https://data.delijn.be/stops/102030", "https://data.delijn.be/stops/104095"], ["https://data.delijn.be/stops/201469", "https://data.delijn.be/stops/201481"], ["https://data.delijn.be/stops/501184", "https://data.delijn.be/stops/506779"], ["https://data.delijn.be/stops/104140", "https://data.delijn.be/stops/104145"], ["https://data.delijn.be/stops/404442", "https://data.delijn.be/stops/404553"], ["https://data.delijn.be/stops/303568", "https://data.delijn.be/stops/303571"], ["https://data.delijn.be/stops/402334", "https://data.delijn.be/stops/402486"], ["https://data.delijn.be/stops/401165", "https://data.delijn.be/stops/410024"], ["https://data.delijn.be/stops/101023", "https://data.delijn.be/stops/105150"], ["https://data.delijn.be/stops/408507", "https://data.delijn.be/stops/408690"], ["https://data.delijn.be/stops/502007", "https://data.delijn.be/stops/507007"], ["https://data.delijn.be/stops/400474", "https://data.delijn.be/stops/408694"], ["https://data.delijn.be/stops/307041", "https://data.delijn.be/stops/308991"], ["https://data.delijn.be/stops/504571", "https://data.delijn.be/stops/504574"], ["https://data.delijn.be/stops/104271", "https://data.delijn.be/stops/104307"], ["https://data.delijn.be/stops/206327", "https://data.delijn.be/stops/303405"], ["https://data.delijn.be/stops/108391", "https://data.delijn.be/stops/108393"], ["https://data.delijn.be/stops/307306", "https://data.delijn.be/stops/307312"], ["https://data.delijn.be/stops/400657", "https://data.delijn.be/stops/400967"], ["https://data.delijn.be/stops/204398", "https://data.delijn.be/stops/205398"], ["https://data.delijn.be/stops/206754", "https://data.delijn.be/stops/209500"], ["https://data.delijn.be/stops/404910", "https://data.delijn.be/stops/404987"], ["https://data.delijn.be/stops/200460", "https://data.delijn.be/stops/201840"], ["https://data.delijn.be/stops/200592", "https://data.delijn.be/stops/201592"], ["https://data.delijn.be/stops/505134", "https://data.delijn.be/stops/505138"], ["https://data.delijn.be/stops/303520", "https://data.delijn.be/stops/303523"], ["https://data.delijn.be/stops/202633", "https://data.delijn.be/stops/203282"], ["https://data.delijn.be/stops/200154", "https://data.delijn.be/stops/201155"], ["https://data.delijn.be/stops/300454", "https://data.delijn.be/stops/308053"], ["https://data.delijn.be/stops/304236", "https://data.delijn.be/stops/304805"], ["https://data.delijn.be/stops/409122", "https://data.delijn.be/stops/409123"], ["https://data.delijn.be/stops/302962", "https://data.delijn.be/stops/306298"], ["https://data.delijn.be/stops/102251", "https://data.delijn.be/stops/102252"], ["https://data.delijn.be/stops/205147", "https://data.delijn.be/stops/205238"], ["https://data.delijn.be/stops/304970", "https://data.delijn.be/stops/304971"], ["https://data.delijn.be/stops/203347", "https://data.delijn.be/stops/203348"], ["https://data.delijn.be/stops/408475", "https://data.delijn.be/stops/409463"], ["https://data.delijn.be/stops/503759", "https://data.delijn.be/stops/508753"], ["https://data.delijn.be/stops/206562", "https://data.delijn.be/stops/207455"], ["https://data.delijn.be/stops/300216", "https://data.delijn.be/stops/300219"], ["https://data.delijn.be/stops/406247", "https://data.delijn.be/stops/406257"], ["https://data.delijn.be/stops/504525", "https://data.delijn.be/stops/504527"], ["https://data.delijn.be/stops/505309", "https://data.delijn.be/stops/507343"], ["https://data.delijn.be/stops/200436", "https://data.delijn.be/stops/201436"], ["https://data.delijn.be/stops/202820", "https://data.delijn.be/stops/203819"], ["https://data.delijn.be/stops/205307", "https://data.delijn.be/stops/205309"], ["https://data.delijn.be/stops/102571", "https://data.delijn.be/stops/109235"], ["https://data.delijn.be/stops/501592", "https://data.delijn.be/stops/504737"], ["https://data.delijn.be/stops/410074", "https://data.delijn.be/stops/410075"], ["https://data.delijn.be/stops/303049", "https://data.delijn.be/stops/306108"], ["https://data.delijn.be/stops/201754", "https://data.delijn.be/stops/209282"], ["https://data.delijn.be/stops/406204", "https://data.delijn.be/stops/406444"], ["https://data.delijn.be/stops/306647", "https://data.delijn.be/stops/307241"], ["https://data.delijn.be/stops/106738", "https://data.delijn.be/stops/106740"], ["https://data.delijn.be/stops/107877", "https://data.delijn.be/stops/107881"], ["https://data.delijn.be/stops/200609", "https://data.delijn.be/stops/202311"], ["https://data.delijn.be/stops/406367", "https://data.delijn.be/stops/406378"], ["https://data.delijn.be/stops/406812", "https://data.delijn.be/stops/406900"], ["https://data.delijn.be/stops/505138", "https://data.delijn.be/stops/505140"], ["https://data.delijn.be/stops/207276", "https://data.delijn.be/stops/207278"], ["https://data.delijn.be/stops/501038", "https://data.delijn.be/stops/506044"], ["https://data.delijn.be/stops/300326", "https://data.delijn.be/stops/307041"], ["https://data.delijn.be/stops/404708", "https://data.delijn.be/stops/404811"], ["https://data.delijn.be/stops/104559", "https://data.delijn.be/stops/104560"], ["https://data.delijn.be/stops/109069", "https://data.delijn.be/stops/109070"], ["https://data.delijn.be/stops/106291", "https://data.delijn.be/stops/106312"], ["https://data.delijn.be/stops/501090", "https://data.delijn.be/stops/506098"], ["https://data.delijn.be/stops/206638", "https://data.delijn.be/stops/207888"], ["https://data.delijn.be/stops/300473", "https://data.delijn.be/stops/302674"], ["https://data.delijn.be/stops/201019", "https://data.delijn.be/stops/211045"], ["https://data.delijn.be/stops/102642", "https://data.delijn.be/stops/104619"], ["https://data.delijn.be/stops/505626", "https://data.delijn.be/stops/507504"], ["https://data.delijn.be/stops/502612", "https://data.delijn.be/stops/505694"], ["https://data.delijn.be/stops/503663", "https://data.delijn.be/stops/508665"], ["https://data.delijn.be/stops/305506", "https://data.delijn.be/stops/305512"], ["https://data.delijn.be/stops/208066", "https://data.delijn.be/stops/209066"], ["https://data.delijn.be/stops/300200", "https://data.delijn.be/stops/304630"], ["https://data.delijn.be/stops/501476", "https://data.delijn.be/stops/506198"], ["https://data.delijn.be/stops/200591", "https://data.delijn.be/stops/201241"], ["https://data.delijn.be/stops/505572", "https://data.delijn.be/stops/505915"], ["https://data.delijn.be/stops/400500", "https://data.delijn.be/stops/400512"], ["https://data.delijn.be/stops/402230", "https://data.delijn.be/stops/402320"], ["https://data.delijn.be/stops/106480", "https://data.delijn.be/stops/106481"], ["https://data.delijn.be/stops/105554", "https://data.delijn.be/stops/105562"], ["https://data.delijn.be/stops/303070", "https://data.delijn.be/stops/308439"], ["https://data.delijn.be/stops/307792", "https://data.delijn.be/stops/308856"], ["https://data.delijn.be/stops/403932", "https://data.delijn.be/stops/403998"], ["https://data.delijn.be/stops/102717", "https://data.delijn.be/stops/105173"], ["https://data.delijn.be/stops/200497", "https://data.delijn.be/stops/201954"], ["https://data.delijn.be/stops/501362", "https://data.delijn.be/stops/501369"], ["https://data.delijn.be/stops/208117", "https://data.delijn.be/stops/208235"], ["https://data.delijn.be/stops/103483", "https://data.delijn.be/stops/109139"], ["https://data.delijn.be/stops/106467", "https://data.delijn.be/stops/108247"], ["https://data.delijn.be/stops/405981", "https://data.delijn.be/stops/405984"], ["https://data.delijn.be/stops/302092", "https://data.delijn.be/stops/302095"], ["https://data.delijn.be/stops/303693", "https://data.delijn.be/stops/303694"], ["https://data.delijn.be/stops/505916", "https://data.delijn.be/stops/509527"], ["https://data.delijn.be/stops/105757", "https://data.delijn.be/stops/109814"], ["https://data.delijn.be/stops/210049", "https://data.delijn.be/stops/211049"], ["https://data.delijn.be/stops/402769", "https://data.delijn.be/stops/409609"], ["https://data.delijn.be/stops/406081", "https://data.delijn.be/stops/406140"], ["https://data.delijn.be/stops/403378", "https://data.delijn.be/stops/410391"], ["https://data.delijn.be/stops/507559", "https://data.delijn.be/stops/507656"], ["https://data.delijn.be/stops/201772", "https://data.delijn.be/stops/209268"], ["https://data.delijn.be/stops/206823", "https://data.delijn.be/stops/207455"], ["https://data.delijn.be/stops/403486", "https://data.delijn.be/stops/403488"], ["https://data.delijn.be/stops/204575", "https://data.delijn.be/stops/205140"], ["https://data.delijn.be/stops/405225", "https://data.delijn.be/stops/406253"], ["https://data.delijn.be/stops/104462", "https://data.delijn.be/stops/104464"], ["https://data.delijn.be/stops/503017", "https://data.delijn.be/stops/503019"], ["https://data.delijn.be/stops/202702", "https://data.delijn.be/stops/203702"], ["https://data.delijn.be/stops/409739", "https://data.delijn.be/stops/409740"], ["https://data.delijn.be/stops/307311", "https://data.delijn.be/stops/307313"], ["https://data.delijn.be/stops/504651", "https://data.delijn.be/stops/505810"], ["https://data.delijn.be/stops/106871", "https://data.delijn.be/stops/106874"], ["https://data.delijn.be/stops/304704", "https://data.delijn.be/stops/306553"], ["https://data.delijn.be/stops/400618", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/401199", "https://data.delijn.be/stops/401200"], ["https://data.delijn.be/stops/101955", "https://data.delijn.be/stops/104135"], ["https://data.delijn.be/stops/300415", "https://data.delijn.be/stops/300416"], ["https://data.delijn.be/stops/404422", "https://data.delijn.be/stops/404427"], ["https://data.delijn.be/stops/508092", "https://data.delijn.be/stops/508547"], ["https://data.delijn.be/stops/106445", "https://data.delijn.be/stops/106446"], ["https://data.delijn.be/stops/406555", "https://data.delijn.be/stops/407566"], ["https://data.delijn.be/stops/304607", "https://data.delijn.be/stops/304625"], ["https://data.delijn.be/stops/301363", "https://data.delijn.be/stops/304527"], ["https://data.delijn.be/stops/202234", "https://data.delijn.be/stops/202236"], ["https://data.delijn.be/stops/200504", "https://data.delijn.be/stops/201453"], ["https://data.delijn.be/stops/106049", "https://data.delijn.be/stops/106051"], ["https://data.delijn.be/stops/503638", "https://data.delijn.be/stops/508638"], ["https://data.delijn.be/stops/109852", "https://data.delijn.be/stops/406859"], ["https://data.delijn.be/stops/407353", "https://data.delijn.be/stops/407481"], ["https://data.delijn.be/stops/501144", "https://data.delijn.be/stops/502512"], ["https://data.delijn.be/stops/102384", "https://data.delijn.be/stops/106314"], ["https://data.delijn.be/stops/505024", "https://data.delijn.be/stops/507007"], ["https://data.delijn.be/stops/202821", "https://data.delijn.be/stops/202913"], ["https://data.delijn.be/stops/300189", "https://data.delijn.be/stops/300631"], ["https://data.delijn.be/stops/400746", "https://data.delijn.be/stops/400747"], ["https://data.delijn.be/stops/503232", "https://data.delijn.be/stops/503256"], ["https://data.delijn.be/stops/106197", "https://data.delijn.be/stops/109274"], ["https://data.delijn.be/stops/400684", "https://data.delijn.be/stops/406606"], ["https://data.delijn.be/stops/201875", "https://data.delijn.be/stops/210008"], ["https://data.delijn.be/stops/202119", "https://data.delijn.be/stops/203638"], ["https://data.delijn.be/stops/300205", "https://data.delijn.be/stops/307131"], ["https://data.delijn.be/stops/207010", "https://data.delijn.be/stops/207520"], ["https://data.delijn.be/stops/303531", "https://data.delijn.be/stops/303573"], ["https://data.delijn.be/stops/402542", "https://data.delijn.be/stops/402558"], ["https://data.delijn.be/stops/204478", "https://data.delijn.be/stops/205241"], ["https://data.delijn.be/stops/502362", "https://data.delijn.be/stops/507356"], ["https://data.delijn.be/stops/306913", "https://data.delijn.be/stops/306914"], ["https://data.delijn.be/stops/201876", "https://data.delijn.be/stops/202657"], ["https://data.delijn.be/stops/107513", "https://data.delijn.be/stops/107519"], ["https://data.delijn.be/stops/105651", "https://data.delijn.be/stops/105652"], ["https://data.delijn.be/stops/208118", "https://data.delijn.be/stops/209118"], ["https://data.delijn.be/stops/502196", "https://data.delijn.be/stops/507939"], ["https://data.delijn.be/stops/105473", "https://data.delijn.be/stops/109935"], ["https://data.delijn.be/stops/300409", "https://data.delijn.be/stops/307490"], ["https://data.delijn.be/stops/406831", "https://data.delijn.be/stops/406944"], ["https://data.delijn.be/stops/202335", "https://data.delijn.be/stops/203335"], ["https://data.delijn.be/stops/102286", "https://data.delijn.be/stops/102736"], ["https://data.delijn.be/stops/307351", "https://data.delijn.be/stops/307430"], ["https://data.delijn.be/stops/304786", "https://data.delijn.be/stops/308787"], ["https://data.delijn.be/stops/406681", "https://data.delijn.be/stops/406706"], ["https://data.delijn.be/stops/304857", "https://data.delijn.be/stops/305504"], ["https://data.delijn.be/stops/104335", "https://data.delijn.be/stops/108370"], ["https://data.delijn.be/stops/503974", "https://data.delijn.be/stops/508974"], ["https://data.delijn.be/stops/401651", "https://data.delijn.be/stops/305949"], ["https://data.delijn.be/stops/202278", "https://data.delijn.be/stops/203662"], ["https://data.delijn.be/stops/102381", "https://data.delijn.be/stops/102382"], ["https://data.delijn.be/stops/204260", "https://data.delijn.be/stops/205463"], ["https://data.delijn.be/stops/202233", "https://data.delijn.be/stops/208890"], ["https://data.delijn.be/stops/200495", "https://data.delijn.be/stops/201495"], ["https://data.delijn.be/stops/507960", "https://data.delijn.be/stops/509816"], ["https://data.delijn.be/stops/504582", "https://data.delijn.be/stops/509581"], ["https://data.delijn.be/stops/103674", "https://data.delijn.be/stops/106217"], ["https://data.delijn.be/stops/400509", "https://data.delijn.be/stops/402637"], ["https://data.delijn.be/stops/500955", "https://data.delijn.be/stops/508282"], ["https://data.delijn.be/stops/201926", "https://data.delijn.be/stops/206401"], ["https://data.delijn.be/stops/107594", "https://data.delijn.be/stops/107598"], ["https://data.delijn.be/stops/407716", "https://data.delijn.be/stops/407729"], ["https://data.delijn.be/stops/208585", "https://data.delijn.be/stops/209585"], ["https://data.delijn.be/stops/301556", "https://data.delijn.be/stops/301560"], ["https://data.delijn.be/stops/410211", "https://data.delijn.be/stops/410248"], ["https://data.delijn.be/stops/300379", "https://data.delijn.be/stops/301946"], ["https://data.delijn.be/stops/504671", "https://data.delijn.be/stops/504794"], ["https://data.delijn.be/stops/404774", "https://data.delijn.be/stops/404789"], ["https://data.delijn.be/stops/202810", "https://data.delijn.be/stops/202867"], ["https://data.delijn.be/stops/206728", "https://data.delijn.be/stops/207130"], ["https://data.delijn.be/stops/208817", "https://data.delijn.be/stops/209070"], ["https://data.delijn.be/stops/304288", "https://data.delijn.be/stops/304301"], ["https://data.delijn.be/stops/106066", "https://data.delijn.be/stops/106067"], ["https://data.delijn.be/stops/504290", "https://data.delijn.be/stops/504291"], ["https://data.delijn.be/stops/304383", "https://data.delijn.be/stops/304401"], ["https://data.delijn.be/stops/300976", "https://data.delijn.be/stops/301003"], ["https://data.delijn.be/stops/407035", "https://data.delijn.be/stops/410033"], ["https://data.delijn.be/stops/300771", "https://data.delijn.be/stops/300772"], ["https://data.delijn.be/stops/304796", "https://data.delijn.be/stops/306687"], ["https://data.delijn.be/stops/104104", "https://data.delijn.be/stops/108295"], ["https://data.delijn.be/stops/201807", "https://data.delijn.be/stops/209327"], ["https://data.delijn.be/stops/208372", "https://data.delijn.be/stops/209407"], ["https://data.delijn.be/stops/303164", "https://data.delijn.be/stops/303575"], ["https://data.delijn.be/stops/406510", "https://data.delijn.be/stops/406515"], ["https://data.delijn.be/stops/304435", "https://data.delijn.be/stops/306063"], ["https://data.delijn.be/stops/405196", "https://data.delijn.be/stops/405197"], ["https://data.delijn.be/stops/202390", "https://data.delijn.be/stops/203390"], ["https://data.delijn.be/stops/201423", "https://data.delijn.be/stops/208496"], ["https://data.delijn.be/stops/107984", "https://data.delijn.be/stops/308536"], ["https://data.delijn.be/stops/104699", "https://data.delijn.be/stops/107357"], ["https://data.delijn.be/stops/403643", "https://data.delijn.be/stops/403644"], ["https://data.delijn.be/stops/401826", "https://data.delijn.be/stops/401831"], ["https://data.delijn.be/stops/408540", "https://data.delijn.be/stops/408543"], ["https://data.delijn.be/stops/508420", "https://data.delijn.be/stops/508431"], ["https://data.delijn.be/stops/401654", "https://data.delijn.be/stops/306327"], ["https://data.delijn.be/stops/506271", "https://data.delijn.be/stops/506783"], ["https://data.delijn.be/stops/207174", "https://data.delijn.be/stops/207520"], ["https://data.delijn.be/stops/204578", "https://data.delijn.be/stops/207273"], ["https://data.delijn.be/stops/501309", "https://data.delijn.be/stops/506546"], ["https://data.delijn.be/stops/206361", "https://data.delijn.be/stops/207711"], ["https://data.delijn.be/stops/302090", "https://data.delijn.be/stops/302277"], ["https://data.delijn.be/stops/300330", "https://data.delijn.be/stops/307041"], ["https://data.delijn.be/stops/403164", "https://data.delijn.be/stops/409571"], ["https://data.delijn.be/stops/405847", "https://data.delijn.be/stops/409727"], ["https://data.delijn.be/stops/406554", "https://data.delijn.be/stops/406698"], ["https://data.delijn.be/stops/403761", "https://data.delijn.be/stops/407232"], ["https://data.delijn.be/stops/204416", "https://data.delijn.be/stops/205772"], ["https://data.delijn.be/stops/206798", "https://data.delijn.be/stops/206799"], ["https://data.delijn.be/stops/304767", "https://data.delijn.be/stops/304768"], ["https://data.delijn.be/stops/407629", "https://data.delijn.be/stops/407633"], ["https://data.delijn.be/stops/504418", "https://data.delijn.be/stops/505785"], ["https://data.delijn.be/stops/301497", "https://data.delijn.be/stops/308071"], ["https://data.delijn.be/stops/400110", "https://data.delijn.be/stops/400111"], ["https://data.delijn.be/stops/408657", "https://data.delijn.be/stops/408662"], ["https://data.delijn.be/stops/505419", "https://data.delijn.be/stops/507170"], ["https://data.delijn.be/stops/202960", "https://data.delijn.be/stops/203957"], ["https://data.delijn.be/stops/505081", "https://data.delijn.be/stops/508326"], ["https://data.delijn.be/stops/101302", "https://data.delijn.be/stops/107455"], ["https://data.delijn.be/stops/502812", "https://data.delijn.be/stops/507490"], ["https://data.delijn.be/stops/301020", "https://data.delijn.be/stops/305915"], ["https://data.delijn.be/stops/200836", "https://data.delijn.be/stops/203302"], ["https://data.delijn.be/stops/403028", "https://data.delijn.be/stops/403030"], ["https://data.delijn.be/stops/205652", "https://data.delijn.be/stops/205668"], ["https://data.delijn.be/stops/503229", "https://data.delijn.be/stops/503786"], ["https://data.delijn.be/stops/209561", "https://data.delijn.be/stops/209846"], ["https://data.delijn.be/stops/502205", "https://data.delijn.be/stops/507200"], ["https://data.delijn.be/stops/108049", "https://data.delijn.be/stops/108278"], ["https://data.delijn.be/stops/206148", "https://data.delijn.be/stops/207149"], ["https://data.delijn.be/stops/103532", "https://data.delijn.be/stops/106269"], ["https://data.delijn.be/stops/202809", "https://data.delijn.be/stops/208651"], ["https://data.delijn.be/stops/503701", "https://data.delijn.be/stops/503704"], ["https://data.delijn.be/stops/509365", "https://data.delijn.be/stops/509366"], ["https://data.delijn.be/stops/303672", "https://data.delijn.be/stops/307137"], ["https://data.delijn.be/stops/201776", "https://data.delijn.be/stops/208295"], ["https://data.delijn.be/stops/303179", "https://data.delijn.be/stops/307073"], ["https://data.delijn.be/stops/205983", "https://data.delijn.be/stops/208811"], ["https://data.delijn.be/stops/405153", "https://data.delijn.be/stops/408369"], ["https://data.delijn.be/stops/201626", "https://data.delijn.be/stops/218003"], ["https://data.delijn.be/stops/504691", "https://data.delijn.be/stops/509215"], ["https://data.delijn.be/stops/308241", "https://data.delijn.be/stops/308249"], ["https://data.delijn.be/stops/206698", "https://data.delijn.be/stops/207697"], ["https://data.delijn.be/stops/409191", "https://data.delijn.be/stops/410259"], ["https://data.delijn.be/stops/501035", "https://data.delijn.be/stops/506023"], ["https://data.delijn.be/stops/502061", "https://data.delijn.be/stops/502068"], ["https://data.delijn.be/stops/108821", "https://data.delijn.be/stops/108823"], ["https://data.delijn.be/stops/202381", "https://data.delijn.be/stops/202443"], ["https://data.delijn.be/stops/107624", "https://data.delijn.be/stops/108539"], ["https://data.delijn.be/stops/204286", "https://data.delijn.be/stops/205287"], ["https://data.delijn.be/stops/408251", "https://data.delijn.be/stops/408264"], ["https://data.delijn.be/stops/109157", "https://data.delijn.be/stops/109158"], ["https://data.delijn.be/stops/209195", "https://data.delijn.be/stops/209387"], ["https://data.delijn.be/stops/305190", "https://data.delijn.be/stops/308681"], ["https://data.delijn.be/stops/303349", "https://data.delijn.be/stops/303390"], ["https://data.delijn.be/stops/200818", "https://data.delijn.be/stops/202303"], ["https://data.delijn.be/stops/206389", "https://data.delijn.be/stops/207541"], ["https://data.delijn.be/stops/503522", "https://data.delijn.be/stops/504686"], ["https://data.delijn.be/stops/403864", "https://data.delijn.be/stops/403866"], ["https://data.delijn.be/stops/202970", "https://data.delijn.be/stops/203969"], ["https://data.delijn.be/stops/503916", "https://data.delijn.be/stops/505255"], ["https://data.delijn.be/stops/405361", "https://data.delijn.be/stops/302838"], ["https://data.delijn.be/stops/204120", "https://data.delijn.be/stops/204666"], ["https://data.delijn.be/stops/404925", "https://data.delijn.be/stops/408583"], ["https://data.delijn.be/stops/301057", "https://data.delijn.be/stops/301059"], ["https://data.delijn.be/stops/503053", "https://data.delijn.be/stops/503432"], ["https://data.delijn.be/stops/400378", "https://data.delijn.be/stops/406785"], ["https://data.delijn.be/stops/504831", "https://data.delijn.be/stops/505642"], ["https://data.delijn.be/stops/107497", "https://data.delijn.be/stops/107523"], ["https://data.delijn.be/stops/300135", "https://data.delijn.be/stops/300138"], ["https://data.delijn.be/stops/204139", "https://data.delijn.be/stops/205147"], ["https://data.delijn.be/stops/106995", "https://data.delijn.be/stops/106996"], ["https://data.delijn.be/stops/206916", "https://data.delijn.be/stops/207352"], ["https://data.delijn.be/stops/400691", "https://data.delijn.be/stops/409562"], ["https://data.delijn.be/stops/402156", "https://data.delijn.be/stops/409372"], ["https://data.delijn.be/stops/203874", "https://data.delijn.be/stops/203875"], ["https://data.delijn.be/stops/101643", "https://data.delijn.be/stops/105239"], ["https://data.delijn.be/stops/407029", "https://data.delijn.be/stops/408429"], ["https://data.delijn.be/stops/504590", "https://data.delijn.be/stops/505303"], ["https://data.delijn.be/stops/404866", "https://data.delijn.be/stops/404963"], ["https://data.delijn.be/stops/101188", "https://data.delijn.be/stops/208900"], ["https://data.delijn.be/stops/202395", "https://data.delijn.be/stops/203436"], ["https://data.delijn.be/stops/206502", "https://data.delijn.be/stops/207502"], ["https://data.delijn.be/stops/207693", "https://data.delijn.be/stops/308567"], ["https://data.delijn.be/stops/206023", "https://data.delijn.be/stops/207903"], ["https://data.delijn.be/stops/404440", "https://data.delijn.be/stops/404442"], ["https://data.delijn.be/stops/406086", "https://data.delijn.be/stops/406091"], ["https://data.delijn.be/stops/409502", "https://data.delijn.be/stops/409504"], ["https://data.delijn.be/stops/402178", "https://data.delijn.be/stops/402179"], ["https://data.delijn.be/stops/400516", "https://data.delijn.be/stops/404051"], ["https://data.delijn.be/stops/208547", "https://data.delijn.be/stops/208556"], ["https://data.delijn.be/stops/503324", "https://data.delijn.be/stops/508324"], ["https://data.delijn.be/stops/501196", "https://data.delijn.be/stops/506190"], ["https://data.delijn.be/stops/301374", "https://data.delijn.be/stops/301379"], ["https://data.delijn.be/stops/403308", "https://data.delijn.be/stops/403535"], ["https://data.delijn.be/stops/409672", "https://data.delijn.be/stops/409674"], ["https://data.delijn.be/stops/301555", "https://data.delijn.be/stops/301563"], ["https://data.delijn.be/stops/201926", "https://data.delijn.be/stops/206247"], ["https://data.delijn.be/stops/506441", "https://data.delijn.be/stops/590334"], ["https://data.delijn.be/stops/206331", "https://data.delijn.be/stops/207732"], ["https://data.delijn.be/stops/105194", "https://data.delijn.be/stops/105196"], ["https://data.delijn.be/stops/400529", "https://data.delijn.be/stops/410005"], ["https://data.delijn.be/stops/508388", "https://data.delijn.be/stops/508405"], ["https://data.delijn.be/stops/403370", "https://data.delijn.be/stops/403373"], ["https://data.delijn.be/stops/104047", "https://data.delijn.be/stops/108400"], ["https://data.delijn.be/stops/400728", "https://data.delijn.be/stops/400732"], ["https://data.delijn.be/stops/202393", "https://data.delijn.be/stops/203393"], ["https://data.delijn.be/stops/202936", "https://data.delijn.be/stops/202937"], ["https://data.delijn.be/stops/106744", "https://data.delijn.be/stops/106745"], ["https://data.delijn.be/stops/300452", "https://data.delijn.be/stops/300461"], ["https://data.delijn.be/stops/101054", "https://data.delijn.be/stops/104080"], ["https://data.delijn.be/stops/106751", "https://data.delijn.be/stops/109700"], ["https://data.delijn.be/stops/505264", "https://data.delijn.be/stops/508594"], ["https://data.delijn.be/stops/407068", "https://data.delijn.be/stops/407069"], ["https://data.delijn.be/stops/201913", "https://data.delijn.be/stops/203468"], ["https://data.delijn.be/stops/104139", "https://data.delijn.be/stops/108104"], ["https://data.delijn.be/stops/201687", "https://data.delijn.be/stops/208261"], ["https://data.delijn.be/stops/406066", "https://data.delijn.be/stops/406067"], ["https://data.delijn.be/stops/204501", "https://data.delijn.be/stops/204547"], ["https://data.delijn.be/stops/208524", "https://data.delijn.be/stops/219017"], ["https://data.delijn.be/stops/501082", "https://data.delijn.be/stops/506082"], ["https://data.delijn.be/stops/107399", "https://data.delijn.be/stops/107401"], ["https://data.delijn.be/stops/201064", "https://data.delijn.be/stops/203928"], ["https://data.delijn.be/stops/403884", "https://data.delijn.be/stops/403890"], ["https://data.delijn.be/stops/402123", "https://data.delijn.be/stops/402127"], ["https://data.delijn.be/stops/407947", "https://data.delijn.be/stops/408139"], ["https://data.delijn.be/stops/405052", "https://data.delijn.be/stops/406548"], ["https://data.delijn.be/stops/302522", "https://data.delijn.be/stops/303715"], ["https://data.delijn.be/stops/102473", "https://data.delijn.be/stops/102474"], ["https://data.delijn.be/stops/300047", "https://data.delijn.be/stops/306790"], ["https://data.delijn.be/stops/307270", "https://data.delijn.be/stops/307272"], ["https://data.delijn.be/stops/302646", "https://data.delijn.be/stops/302659"], ["https://data.delijn.be/stops/400429", "https://data.delijn.be/stops/407517"], ["https://data.delijn.be/stops/104337", "https://data.delijn.be/stops/105911"], ["https://data.delijn.be/stops/501331", "https://data.delijn.be/stops/506330"], ["https://data.delijn.be/stops/504852", "https://data.delijn.be/stops/505242"], ["https://data.delijn.be/stops/400312", "https://data.delijn.be/stops/400432"], ["https://data.delijn.be/stops/206958", "https://data.delijn.be/stops/308566"], ["https://data.delijn.be/stops/202774", "https://data.delijn.be/stops/203775"], ["https://data.delijn.be/stops/101030", "https://data.delijn.be/stops/101210"], ["https://data.delijn.be/stops/408952", "https://data.delijn.be/stops/408991"], ["https://data.delijn.be/stops/307569", "https://data.delijn.be/stops/307764"], ["https://data.delijn.be/stops/304536", "https://data.delijn.be/stops/306208"], ["https://data.delijn.be/stops/202042", "https://data.delijn.be/stops/204621"], ["https://data.delijn.be/stops/102198", "https://data.delijn.be/stops/105263"], ["https://data.delijn.be/stops/305513", "https://data.delijn.be/stops/307896"], ["https://data.delijn.be/stops/505047", "https://data.delijn.be/stops/506208"], ["https://data.delijn.be/stops/105168", "https://data.delijn.be/stops/109522"], ["https://data.delijn.be/stops/305658", "https://data.delijn.be/stops/305740"], ["https://data.delijn.be/stops/201746", "https://data.delijn.be/stops/219027"], ["https://data.delijn.be/stops/106872", "https://data.delijn.be/stops/106874"], ["https://data.delijn.be/stops/302934", "https://data.delijn.be/stops/303140"], ["https://data.delijn.be/stops/203832", "https://data.delijn.be/stops/218025"], ["https://data.delijn.be/stops/405153", "https://data.delijn.be/stops/405212"], ["https://data.delijn.be/stops/501356", "https://data.delijn.be/stops/506501"], ["https://data.delijn.be/stops/201928", "https://data.delijn.be/stops/202958"], ["https://data.delijn.be/stops/200952", "https://data.delijn.be/stops/203250"], ["https://data.delijn.be/stops/108936", "https://data.delijn.be/stops/108938"], ["https://data.delijn.be/stops/208277", "https://data.delijn.be/stops/208281"], ["https://data.delijn.be/stops/407159", "https://data.delijn.be/stops/407178"], ["https://data.delijn.be/stops/404214", "https://data.delijn.be/stops/404244"], ["https://data.delijn.be/stops/101988", "https://data.delijn.be/stops/103749"], ["https://data.delijn.be/stops/304419", "https://data.delijn.be/stops/307397"], ["https://data.delijn.be/stops/305337", "https://data.delijn.be/stops/305341"], ["https://data.delijn.be/stops/102059", "https://data.delijn.be/stops/109532"], ["https://data.delijn.be/stops/400613", "https://data.delijn.be/stops/404293"], ["https://data.delijn.be/stops/201396", "https://data.delijn.be/stops/208970"], ["https://data.delijn.be/stops/206692", "https://data.delijn.be/stops/206693"], ["https://data.delijn.be/stops/305834", "https://data.delijn.be/stops/305835"], ["https://data.delijn.be/stops/206599", "https://data.delijn.be/stops/207513"], ["https://data.delijn.be/stops/308466", "https://data.delijn.be/stops/308689"], ["https://data.delijn.be/stops/206704", "https://data.delijn.be/stops/207608"], ["https://data.delijn.be/stops/303722", "https://data.delijn.be/stops/303788"], ["https://data.delijn.be/stops/300482", "https://data.delijn.be/stops/302072"], ["https://data.delijn.be/stops/204552", "https://data.delijn.be/stops/204619"], ["https://data.delijn.be/stops/302471", "https://data.delijn.be/stops/302487"], ["https://data.delijn.be/stops/504473", "https://data.delijn.be/stops/504483"], ["https://data.delijn.be/stops/209295", "https://data.delijn.be/stops/209382"], ["https://data.delijn.be/stops/504332", "https://data.delijn.be/stops/504338"], ["https://data.delijn.be/stops/206830", "https://data.delijn.be/stops/207830"], ["https://data.delijn.be/stops/201120", "https://data.delijn.be/stops/201122"], ["https://data.delijn.be/stops/205033", "https://data.delijn.be/stops/205034"], ["https://data.delijn.be/stops/206874", "https://data.delijn.be/stops/206900"], ["https://data.delijn.be/stops/505947", "https://data.delijn.be/stops/508308"], ["https://data.delijn.be/stops/108941", "https://data.delijn.be/stops/108948"], ["https://data.delijn.be/stops/305227", "https://data.delijn.be/stops/305296"], ["https://data.delijn.be/stops/408147", "https://data.delijn.be/stops/408154"], ["https://data.delijn.be/stops/105732", "https://data.delijn.be/stops/109839"], ["https://data.delijn.be/stops/501258", "https://data.delijn.be/stops/501259"], ["https://data.delijn.be/stops/302370", "https://data.delijn.be/stops/302750"], ["https://data.delijn.be/stops/407150", "https://data.delijn.be/stops/409516"], ["https://data.delijn.be/stops/200400", "https://data.delijn.be/stops/201400"], ["https://data.delijn.be/stops/304815", "https://data.delijn.be/stops/304839"], ["https://data.delijn.be/stops/201951", "https://data.delijn.be/stops/203467"], ["https://data.delijn.be/stops/302242", "https://data.delijn.be/stops/302243"], ["https://data.delijn.be/stops/403407", "https://data.delijn.be/stops/405126"], ["https://data.delijn.be/stops/303033", "https://data.delijn.be/stops/303034"], ["https://data.delijn.be/stops/200932", "https://data.delijn.be/stops/202257"], ["https://data.delijn.be/stops/200945", "https://data.delijn.be/stops/202696"], ["https://data.delijn.be/stops/303205", "https://data.delijn.be/stops/303206"], ["https://data.delijn.be/stops/208073", "https://data.delijn.be/stops/208074"], ["https://data.delijn.be/stops/501190", "https://data.delijn.be/stops/501197"], ["https://data.delijn.be/stops/105274", "https://data.delijn.be/stops/105294"], ["https://data.delijn.be/stops/202927", "https://data.delijn.be/stops/208724"], ["https://data.delijn.be/stops/401856", "https://data.delijn.be/stops/406237"], ["https://data.delijn.be/stops/209776", "https://data.delijn.be/stops/219030"], ["https://data.delijn.be/stops/202381", "https://data.delijn.be/stops/203442"], ["https://data.delijn.be/stops/404022", "https://data.delijn.be/stops/407066"], ["https://data.delijn.be/stops/206262", "https://data.delijn.be/stops/207005"], ["https://data.delijn.be/stops/109264", "https://data.delijn.be/stops/109267"], ["https://data.delijn.be/stops/307871", "https://data.delijn.be/stops/308713"], ["https://data.delijn.be/stops/504341", "https://data.delijn.be/stops/509332"], ["https://data.delijn.be/stops/305109", "https://data.delijn.be/stops/305115"], ["https://data.delijn.be/stops/407813", "https://data.delijn.be/stops/408037"], ["https://data.delijn.be/stops/504645", "https://data.delijn.be/stops/509644"], ["https://data.delijn.be/stops/503730", "https://data.delijn.be/stops/507932"], ["https://data.delijn.be/stops/101273", "https://data.delijn.be/stops/102925"], ["https://data.delijn.be/stops/300485", "https://data.delijn.be/stops/300486"], ["https://data.delijn.be/stops/201758", "https://data.delijn.be/stops/219011"], ["https://data.delijn.be/stops/206450", "https://data.delijn.be/stops/207452"], ["https://data.delijn.be/stops/404237", "https://data.delijn.be/stops/404247"], ["https://data.delijn.be/stops/504414", "https://data.delijn.be/stops/509414"], ["https://data.delijn.be/stops/200881", "https://data.delijn.be/stops/208964"], ["https://data.delijn.be/stops/502176", "https://data.delijn.be/stops/509975"], ["https://data.delijn.be/stops/101482", "https://data.delijn.be/stops/108213"], ["https://data.delijn.be/stops/404575", "https://data.delijn.be/stops/407354"], ["https://data.delijn.be/stops/101904", "https://data.delijn.be/stops/105457"], ["https://data.delijn.be/stops/300758", "https://data.delijn.be/stops/303223"], ["https://data.delijn.be/stops/307634", "https://data.delijn.be/stops/307637"], ["https://data.delijn.be/stops/103855", "https://data.delijn.be/stops/105950"], ["https://data.delijn.be/stops/301621", "https://data.delijn.be/stops/307675"], ["https://data.delijn.be/stops/405038", "https://data.delijn.be/stops/405063"], ["https://data.delijn.be/stops/204771", "https://data.delijn.be/stops/205590"], ["https://data.delijn.be/stops/101748", "https://data.delijn.be/stops/103909"], ["https://data.delijn.be/stops/303749", "https://data.delijn.be/stops/308658"], ["https://data.delijn.be/stops/400455", "https://data.delijn.be/stops/400496"], ["https://data.delijn.be/stops/300372", "https://data.delijn.be/stops/307723"], ["https://data.delijn.be/stops/101595", "https://data.delijn.be/stops/101600"], ["https://data.delijn.be/stops/300102", "https://data.delijn.be/stops/306854"], ["https://data.delijn.be/stops/300011", "https://data.delijn.be/stops/301478"], ["https://data.delijn.be/stops/504006", "https://data.delijn.be/stops/504634"], ["https://data.delijn.be/stops/503047", "https://data.delijn.be/stops/503510"], ["https://data.delijn.be/stops/101533", "https://data.delijn.be/stops/109116"], ["https://data.delijn.be/stops/301367", "https://data.delijn.be/stops/301368"], ["https://data.delijn.be/stops/405385", "https://data.delijn.be/stops/405386"], ["https://data.delijn.be/stops/304230", "https://data.delijn.be/stops/304231"], ["https://data.delijn.be/stops/103295", "https://data.delijn.be/stops/107850"], ["https://data.delijn.be/stops/503242", "https://data.delijn.be/stops/503391"], ["https://data.delijn.be/stops/105783", "https://data.delijn.be/stops/105784"], ["https://data.delijn.be/stops/503342", "https://data.delijn.be/stops/508336"], ["https://data.delijn.be/stops/301648", "https://data.delijn.be/stops/301650"], ["https://data.delijn.be/stops/501315", "https://data.delijn.be/stops/506315"], ["https://data.delijn.be/stops/301249", "https://data.delijn.be/stops/307390"], ["https://data.delijn.be/stops/200942", "https://data.delijn.be/stops/203688"], ["https://data.delijn.be/stops/106598", "https://data.delijn.be/stops/106600"], ["https://data.delijn.be/stops/301396", "https://data.delijn.be/stops/306148"], ["https://data.delijn.be/stops/106225", "https://data.delijn.be/stops/106328"], ["https://data.delijn.be/stops/502082", "https://data.delijn.be/stops/502816"], ["https://data.delijn.be/stops/300077", "https://data.delijn.be/stops/307343"], ["https://data.delijn.be/stops/509105", "https://data.delijn.be/stops/509544"], ["https://data.delijn.be/stops/101146", "https://data.delijn.be/stops/106859"], ["https://data.delijn.be/stops/505291", "https://data.delijn.be/stops/505429"], ["https://data.delijn.be/stops/407183", "https://data.delijn.be/stops/407184"], ["https://data.delijn.be/stops/501420", "https://data.delijn.be/stops/501421"], ["https://data.delijn.be/stops/106050", "https://data.delijn.be/stops/108055"], ["https://data.delijn.be/stops/402000", "https://data.delijn.be/stops/410292"], ["https://data.delijn.be/stops/108564", "https://data.delijn.be/stops/109093"], ["https://data.delijn.be/stops/301453", "https://data.delijn.be/stops/307167"], ["https://data.delijn.be/stops/506089", "https://data.delijn.be/stops/506098"], ["https://data.delijn.be/stops/503744", "https://data.delijn.be/stops/509866"], ["https://data.delijn.be/stops/507040", "https://data.delijn.be/stops/507616"], ["https://data.delijn.be/stops/306709", "https://data.delijn.be/stops/307983"], ["https://data.delijn.be/stops/402224", "https://data.delijn.be/stops/402237"], ["https://data.delijn.be/stops/305187", "https://data.delijn.be/stops/305217"], ["https://data.delijn.be/stops/101953", "https://data.delijn.be/stops/109556"], ["https://data.delijn.be/stops/102293", "https://data.delijn.be/stops/104652"], ["https://data.delijn.be/stops/407160", "https://data.delijn.be/stops/407161"], ["https://data.delijn.be/stops/101517", "https://data.delijn.be/stops/109021"], ["https://data.delijn.be/stops/208601", "https://data.delijn.be/stops/209601"], ["https://data.delijn.be/stops/105269", "https://data.delijn.be/stops/105273"], ["https://data.delijn.be/stops/200839", "https://data.delijn.be/stops/211005"], ["https://data.delijn.be/stops/209788", "https://data.delijn.be/stops/209798"], ["https://data.delijn.be/stops/407840", "https://data.delijn.be/stops/407841"], ["https://data.delijn.be/stops/400072", "https://data.delijn.be/stops/400162"], ["https://data.delijn.be/stops/208016", "https://data.delijn.be/stops/208026"], ["https://data.delijn.be/stops/503408", "https://data.delijn.be/stops/508212"], ["https://data.delijn.be/stops/102624", "https://data.delijn.be/stops/108219"], ["https://data.delijn.be/stops/206817", "https://data.delijn.be/stops/207314"], ["https://data.delijn.be/stops/505934", "https://data.delijn.be/stops/508303"], ["https://data.delijn.be/stops/208677", "https://data.delijn.be/stops/208682"], ["https://data.delijn.be/stops/102136", "https://data.delijn.be/stops/103476"], ["https://data.delijn.be/stops/101699", "https://data.delijn.be/stops/108420"], ["https://data.delijn.be/stops/507352", "https://data.delijn.be/stops/509968"], ["https://data.delijn.be/stops/305409", "https://data.delijn.be/stops/305419"], ["https://data.delijn.be/stops/108423", "https://data.delijn.be/stops/108424"], ["https://data.delijn.be/stops/401356", "https://data.delijn.be/stops/406071"], ["https://data.delijn.be/stops/504985", "https://data.delijn.be/stops/509008"], ["https://data.delijn.be/stops/303468", "https://data.delijn.be/stops/304895"], ["https://data.delijn.be/stops/107488", "https://data.delijn.be/stops/305799"], ["https://data.delijn.be/stops/103107", "https://data.delijn.be/stops/106568"], ["https://data.delijn.be/stops/501004", "https://data.delijn.be/stops/501174"], ["https://data.delijn.be/stops/102858", "https://data.delijn.be/stops/102859"], ["https://data.delijn.be/stops/202167", "https://data.delijn.be/stops/203119"], ["https://data.delijn.be/stops/404911", "https://data.delijn.be/stops/404987"], ["https://data.delijn.be/stops/201253", "https://data.delijn.be/stops/203557"], ["https://data.delijn.be/stops/408823", "https://data.delijn.be/stops/408828"], ["https://data.delijn.be/stops/200924", "https://data.delijn.be/stops/200946"], ["https://data.delijn.be/stops/202367", "https://data.delijn.be/stops/203998"], ["https://data.delijn.be/stops/503112", "https://data.delijn.be/stops/508112"], ["https://data.delijn.be/stops/103170", "https://data.delijn.be/stops/103186"], ["https://data.delijn.be/stops/503914", "https://data.delijn.be/stops/508998"], ["https://data.delijn.be/stops/103710", "https://data.delijn.be/stops/105405"], ["https://data.delijn.be/stops/103061", "https://data.delijn.be/stops/303877"], ["https://data.delijn.be/stops/401088", "https://data.delijn.be/stops/401089"], ["https://data.delijn.be/stops/308213", "https://data.delijn.be/stops/308237"], ["https://data.delijn.be/stops/102611", "https://data.delijn.be/stops/102671"], ["https://data.delijn.be/stops/300015", "https://data.delijn.be/stops/304564"], ["https://data.delijn.be/stops/501664", "https://data.delijn.be/stops/506663"], ["https://data.delijn.be/stops/201346", "https://data.delijn.be/stops/201534"], ["https://data.delijn.be/stops/503678", "https://data.delijn.be/stops/509815"], ["https://data.delijn.be/stops/101199", "https://data.delijn.be/stops/204616"], ["https://data.delijn.be/stops/109047", "https://data.delijn.be/stops/109320"], ["https://data.delijn.be/stops/303621", "https://data.delijn.be/stops/306704"], ["https://data.delijn.be/stops/206584", "https://data.delijn.be/stops/207583"], ["https://data.delijn.be/stops/507709", "https://data.delijn.be/stops/508985"], ["https://data.delijn.be/stops/204215", "https://data.delijn.be/stops/205366"], ["https://data.delijn.be/stops/505743", "https://data.delijn.be/stops/507006"], ["https://data.delijn.be/stops/502292", "https://data.delijn.be/stops/502298"], ["https://data.delijn.be/stops/504629", "https://data.delijn.be/stops/509629"], ["https://data.delijn.be/stops/201372", "https://data.delijn.be/stops/203002"], ["https://data.delijn.be/stops/208742", "https://data.delijn.be/stops/209395"], ["https://data.delijn.be/stops/104399", "https://data.delijn.be/stops/205602"], ["https://data.delijn.be/stops/300643", "https://data.delijn.be/stops/300658"], ["https://data.delijn.be/stops/404130", "https://data.delijn.be/stops/404190"], ["https://data.delijn.be/stops/304909", "https://data.delijn.be/stops/306086"], ["https://data.delijn.be/stops/103771", "https://data.delijn.be/stops/106435"], ["https://data.delijn.be/stops/302569", "https://data.delijn.be/stops/302570"], ["https://data.delijn.be/stops/200026", "https://data.delijn.be/stops/201070"], ["https://data.delijn.be/stops/202533", "https://data.delijn.be/stops/205173"], ["https://data.delijn.be/stops/401594", "https://data.delijn.be/stops/401596"], ["https://data.delijn.be/stops/302391", "https://data.delijn.be/stops/302672"], ["https://data.delijn.be/stops/108348", "https://data.delijn.be/stops/108352"], ["https://data.delijn.be/stops/301009", "https://data.delijn.be/stops/301015"], ["https://data.delijn.be/stops/405055", "https://data.delijn.be/stops/405100"], ["https://data.delijn.be/stops/200286", "https://data.delijn.be/stops/201343"], ["https://data.delijn.be/stops/502705", "https://data.delijn.be/stops/505348"], ["https://data.delijn.be/stops/300537", "https://data.delijn.be/stops/300539"], ["https://data.delijn.be/stops/305651", "https://data.delijn.be/stops/306338"], ["https://data.delijn.be/stops/206711", "https://data.delijn.be/stops/206713"], ["https://data.delijn.be/stops/504600", "https://data.delijn.be/stops/509598"], ["https://data.delijn.be/stops/305682", "https://data.delijn.be/stops/305712"], ["https://data.delijn.be/stops/204413", "https://data.delijn.be/stops/205768"], ["https://data.delijn.be/stops/400811", "https://data.delijn.be/stops/400872"], ["https://data.delijn.be/stops/305193", "https://data.delijn.be/stops/305200"], ["https://data.delijn.be/stops/404513", "https://data.delijn.be/stops/404772"], ["https://data.delijn.be/stops/101208", "https://data.delijn.be/stops/107842"], ["https://data.delijn.be/stops/304330", "https://data.delijn.be/stops/304707"], ["https://data.delijn.be/stops/109290", "https://data.delijn.be/stops/109291"], ["https://data.delijn.be/stops/300830", "https://data.delijn.be/stops/300875"], ["https://data.delijn.be/stops/103130", "https://data.delijn.be/stops/103135"], ["https://data.delijn.be/stops/401090", "https://data.delijn.be/stops/401100"], ["https://data.delijn.be/stops/200871", "https://data.delijn.be/stops/200896"], ["https://data.delijn.be/stops/406909", "https://data.delijn.be/stops/409453"], ["https://data.delijn.be/stops/508562", "https://data.delijn.be/stops/509907"], ["https://data.delijn.be/stops/200957", "https://data.delijn.be/stops/203725"], ["https://data.delijn.be/stops/304451", "https://data.delijn.be/stops/307715"], ["https://data.delijn.be/stops/408857", "https://data.delijn.be/stops/408869"], ["https://data.delijn.be/stops/508920", "https://data.delijn.be/stops/508933"], ["https://data.delijn.be/stops/304349", "https://data.delijn.be/stops/304354"], ["https://data.delijn.be/stops/207547", "https://data.delijn.be/stops/209744"], ["https://data.delijn.be/stops/505016", "https://data.delijn.be/stops/505017"], ["https://data.delijn.be/stops/303018", "https://data.delijn.be/stops/304241"], ["https://data.delijn.be/stops/209476", "https://data.delijn.be/stops/209500"], ["https://data.delijn.be/stops/104609", "https://data.delijn.be/stops/305836"], ["https://data.delijn.be/stops/204556", "https://data.delijn.be/stops/205556"], ["https://data.delijn.be/stops/403812", "https://data.delijn.be/stops/403825"], ["https://data.delijn.be/stops/408976", "https://data.delijn.be/stops/408977"], ["https://data.delijn.be/stops/107943", "https://data.delijn.be/stops/107946"], ["https://data.delijn.be/stops/200748", "https://data.delijn.be/stops/203164"], ["https://data.delijn.be/stops/303129", "https://data.delijn.be/stops/303130"], ["https://data.delijn.be/stops/204474", "https://data.delijn.be/stops/205467"], ["https://data.delijn.be/stops/302855", "https://data.delijn.be/stops/308824"], ["https://data.delijn.be/stops/101873", "https://data.delijn.be/stops/106873"], ["https://data.delijn.be/stops/208652", "https://data.delijn.be/stops/209651"], ["https://data.delijn.be/stops/407753", "https://data.delijn.be/stops/407756"], ["https://data.delijn.be/stops/401266", "https://data.delijn.be/stops/401298"], ["https://data.delijn.be/stops/504056", "https://data.delijn.be/stops/504149"], ["https://data.delijn.be/stops/502492", "https://data.delijn.be/stops/505591"], ["https://data.delijn.be/stops/206549", "https://data.delijn.be/stops/209756"], ["https://data.delijn.be/stops/502204", "https://data.delijn.be/stops/508705"], ["https://data.delijn.be/stops/107323", "https://data.delijn.be/stops/107326"], ["https://data.delijn.be/stops/102206", "https://data.delijn.be/stops/102669"], ["https://data.delijn.be/stops/402364", "https://data.delijn.be/stops/402365"], ["https://data.delijn.be/stops/305646", "https://data.delijn.be/stops/305647"], ["https://data.delijn.be/stops/201079", "https://data.delijn.be/stops/201093"], ["https://data.delijn.be/stops/504511", "https://data.delijn.be/stops/509511"], ["https://data.delijn.be/stops/208117", "https://data.delijn.be/stops/209117"], ["https://data.delijn.be/stops/206197", "https://data.delijn.be/stops/207197"], ["https://data.delijn.be/stops/306832", "https://data.delijn.be/stops/307849"], ["https://data.delijn.be/stops/305538", "https://data.delijn.be/stops/307824"], ["https://data.delijn.be/stops/502803", "https://data.delijn.be/stops/505340"], ["https://data.delijn.be/stops/203262", "https://data.delijn.be/stops/208852"], ["https://data.delijn.be/stops/401355", "https://data.delijn.be/stops/406071"], ["https://data.delijn.be/stops/503276", "https://data.delijn.be/stops/508276"], ["https://data.delijn.be/stops/301129", "https://data.delijn.be/stops/301130"], ["https://data.delijn.be/stops/500927", "https://data.delijn.be/stops/505414"], ["https://data.delijn.be/stops/503581", "https://data.delijn.be/stops/503874"], ["https://data.delijn.be/stops/405154", "https://data.delijn.be/stops/405212"], ["https://data.delijn.be/stops/202462", "https://data.delijn.be/stops/202463"], ["https://data.delijn.be/stops/206887", "https://data.delijn.be/stops/207912"], ["https://data.delijn.be/stops/203020", "https://data.delijn.be/stops/208889"], ["https://data.delijn.be/stops/407542", "https://data.delijn.be/stops/407544"], ["https://data.delijn.be/stops/204007", "https://data.delijn.be/stops/205692"], ["https://data.delijn.be/stops/208441", "https://data.delijn.be/stops/208684"], ["https://data.delijn.be/stops/202580", "https://data.delijn.be/stops/203581"], ["https://data.delijn.be/stops/402984", "https://data.delijn.be/stops/405595"], ["https://data.delijn.be/stops/505789", "https://data.delijn.be/stops/508063"], ["https://data.delijn.be/stops/102862", "https://data.delijn.be/stops/103645"], ["https://data.delijn.be/stops/206280", "https://data.delijn.be/stops/207281"], ["https://data.delijn.be/stops/101770", "https://data.delijn.be/stops/103282"], ["https://data.delijn.be/stops/501407", "https://data.delijn.be/stops/506408"], ["https://data.delijn.be/stops/502470", "https://data.delijn.be/stops/502758"], ["https://data.delijn.be/stops/204740", "https://data.delijn.be/stops/204742"], ["https://data.delijn.be/stops/107834", "https://data.delijn.be/stops/107836"], ["https://data.delijn.be/stops/503159", "https://data.delijn.be/stops/508126"], ["https://data.delijn.be/stops/101345", "https://data.delijn.be/stops/105365"], ["https://data.delijn.be/stops/403310", "https://data.delijn.be/stops/403313"], ["https://data.delijn.be/stops/300121", "https://data.delijn.be/stops/300133"], ["https://data.delijn.be/stops/105229", "https://data.delijn.be/stops/108000"], ["https://data.delijn.be/stops/304392", "https://data.delijn.be/stops/308059"], ["https://data.delijn.be/stops/101835", "https://data.delijn.be/stops/104722"], ["https://data.delijn.be/stops/204518", "https://data.delijn.be/stops/204519"], ["https://data.delijn.be/stops/302952", "https://data.delijn.be/stops/304708"], ["https://data.delijn.be/stops/201774", "https://data.delijn.be/stops/201814"], ["https://data.delijn.be/stops/506364", "https://data.delijn.be/stops/506442"], ["https://data.delijn.be/stops/301722", "https://data.delijn.be/stops/308878"], ["https://data.delijn.be/stops/107316", "https://data.delijn.be/stops/107317"], ["https://data.delijn.be/stops/403376", "https://data.delijn.be/stops/403377"], ["https://data.delijn.be/stops/500947", "https://data.delijn.be/stops/509741"], ["https://data.delijn.be/stops/105660", "https://data.delijn.be/stops/105665"], ["https://data.delijn.be/stops/504068", "https://data.delijn.be/stops/509517"], ["https://data.delijn.be/stops/301684", "https://data.delijn.be/stops/302761"], ["https://data.delijn.be/stops/307142", "https://data.delijn.be/stops/307461"], ["https://data.delijn.be/stops/107567", "https://data.delijn.be/stops/107569"], ["https://data.delijn.be/stops/208133", "https://data.delijn.be/stops/208200"], ["https://data.delijn.be/stops/107085", "https://data.delijn.be/stops/107350"], ["https://data.delijn.be/stops/107636", "https://data.delijn.be/stops/108839"], ["https://data.delijn.be/stops/204566", "https://data.delijn.be/stops/303536"], ["https://data.delijn.be/stops/502291", "https://data.delijn.be/stops/507291"], ["https://data.delijn.be/stops/208358", "https://data.delijn.be/stops/209358"], ["https://data.delijn.be/stops/301605", "https://data.delijn.be/stops/301616"], ["https://data.delijn.be/stops/400981", "https://data.delijn.be/stops/406578"], ["https://data.delijn.be/stops/410351", "https://data.delijn.be/stops/410352"], ["https://data.delijn.be/stops/206321", "https://data.delijn.be/stops/206505"], ["https://data.delijn.be/stops/304430", "https://data.delijn.be/stops/307371"], ["https://data.delijn.be/stops/406195", "https://data.delijn.be/stops/409529"], ["https://data.delijn.be/stops/303385", "https://data.delijn.be/stops/308892"], ["https://data.delijn.be/stops/103254", "https://data.delijn.be/stops/105440"], ["https://data.delijn.be/stops/208465", "https://data.delijn.be/stops/209683"], ["https://data.delijn.be/stops/204040", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/102014", "https://data.delijn.be/stops/105987"], ["https://data.delijn.be/stops/503554", "https://data.delijn.be/stops/508128"], ["https://data.delijn.be/stops/101777", "https://data.delijn.be/stops/107588"], ["https://data.delijn.be/stops/204042", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/403803", "https://data.delijn.be/stops/403805"], ["https://data.delijn.be/stops/307937", "https://data.delijn.be/stops/307939"], ["https://data.delijn.be/stops/208118", "https://data.delijn.be/stops/208236"], ["https://data.delijn.be/stops/101418", "https://data.delijn.be/stops/108716"], ["https://data.delijn.be/stops/503799", "https://data.delijn.be/stops/508106"], ["https://data.delijn.be/stops/405056", "https://data.delijn.be/stops/405073"], ["https://data.delijn.be/stops/109856", "https://data.delijn.be/stops/109931"], ["https://data.delijn.be/stops/507300", "https://data.delijn.be/stops/507601"], ["https://data.delijn.be/stops/407819", "https://data.delijn.be/stops/408004"], ["https://data.delijn.be/stops/106610", "https://data.delijn.be/stops/106612"], ["https://data.delijn.be/stops/505943", "https://data.delijn.be/stops/508224"], ["https://data.delijn.be/stops/408719", "https://data.delijn.be/stops/408721"], ["https://data.delijn.be/stops/407466", "https://data.delijn.be/stops/407522"], ["https://data.delijn.be/stops/502797", "https://data.delijn.be/stops/505700"], ["https://data.delijn.be/stops/404889", "https://data.delijn.be/stops/404901"], ["https://data.delijn.be/stops/204031", "https://data.delijn.be/stops/205247"], ["https://data.delijn.be/stops/206901", "https://data.delijn.be/stops/207901"], ["https://data.delijn.be/stops/505723", "https://data.delijn.be/stops/507287"], ["https://data.delijn.be/stops/104039", "https://data.delijn.be/stops/108512"], ["https://data.delijn.be/stops/107639", "https://data.delijn.be/stops/108081"], ["https://data.delijn.be/stops/300091", "https://data.delijn.be/stops/306844"], ["https://data.delijn.be/stops/403684", "https://data.delijn.be/stops/403685"], ["https://data.delijn.be/stops/107514", "https://data.delijn.be/stops/107516"], ["https://data.delijn.be/stops/402308", "https://data.delijn.be/stops/402309"], ["https://data.delijn.be/stops/208791", "https://data.delijn.be/stops/209781"], ["https://data.delijn.be/stops/502017", "https://data.delijn.be/stops/507797"], ["https://data.delijn.be/stops/108822", "https://data.delijn.be/stops/108826"], ["https://data.delijn.be/stops/505058", "https://data.delijn.be/stops/505333"], ["https://data.delijn.be/stops/201805", "https://data.delijn.be/stops/208268"], ["https://data.delijn.be/stops/402070", "https://data.delijn.be/stops/402338"], ["https://data.delijn.be/stops/103490", "https://data.delijn.be/stops/106213"], ["https://data.delijn.be/stops/200012", "https://data.delijn.be/stops/200392"], ["https://data.delijn.be/stops/300236", "https://data.delijn.be/stops/301374"], ["https://data.delijn.be/stops/308548", "https://data.delijn.be/stops/308550"], ["https://data.delijn.be/stops/101375", "https://data.delijn.be/stops/103790"], ["https://data.delijn.be/stops/405871", "https://data.delijn.be/stops/409423"], ["https://data.delijn.be/stops/406427", "https://data.delijn.be/stops/406453"], ["https://data.delijn.be/stops/504119", "https://data.delijn.be/stops/504721"], ["https://data.delijn.be/stops/409572", "https://data.delijn.be/stops/410082"], ["https://data.delijn.be/stops/402575", "https://data.delijn.be/stops/402654"], ["https://data.delijn.be/stops/408519", "https://data.delijn.be/stops/408733"], ["https://data.delijn.be/stops/404402", "https://data.delijn.be/stops/404417"], ["https://data.delijn.be/stops/405019", "https://data.delijn.be/stops/405036"], ["https://data.delijn.be/stops/106177", "https://data.delijn.be/stops/109372"], ["https://data.delijn.be/stops/106229", "https://data.delijn.be/stops/106231"], ["https://data.delijn.be/stops/204394", "https://data.delijn.be/stops/204395"], ["https://data.delijn.be/stops/202378", "https://data.delijn.be/stops/203378"], ["https://data.delijn.be/stops/402722", "https://data.delijn.be/stops/402728"], ["https://data.delijn.be/stops/305295", "https://data.delijn.be/stops/305888"], ["https://data.delijn.be/stops/509775", "https://data.delijn.be/stops/509777"], ["https://data.delijn.be/stops/501325", "https://data.delijn.be/stops/501346"], ["https://data.delijn.be/stops/201444", "https://data.delijn.be/stops/203132"], ["https://data.delijn.be/stops/408618", "https://data.delijn.be/stops/408619"], ["https://data.delijn.be/stops/305227", "https://data.delijn.be/stops/305908"], ["https://data.delijn.be/stops/102497", "https://data.delijn.be/stops/102502"], ["https://data.delijn.be/stops/503845", "https://data.delijn.be/stops/508845"], ["https://data.delijn.be/stops/403042", "https://data.delijn.be/stops/403045"], ["https://data.delijn.be/stops/404105", "https://data.delijn.be/stops/404115"], ["https://data.delijn.be/stops/203557", "https://data.delijn.be/stops/210024"], ["https://data.delijn.be/stops/501203", "https://data.delijn.be/stops/501238"], ["https://data.delijn.be/stops/200490", "https://data.delijn.be/stops/203453"], ["https://data.delijn.be/stops/401518", "https://data.delijn.be/stops/403880"], ["https://data.delijn.be/stops/104739", "https://data.delijn.be/stops/104749"], ["https://data.delijn.be/stops/404302", "https://data.delijn.be/stops/410083"], ["https://data.delijn.be/stops/206441", "https://data.delijn.be/stops/208466"], ["https://data.delijn.be/stops/400894", "https://data.delijn.be/stops/406589"], ["https://data.delijn.be/stops/402792", "https://data.delijn.be/stops/402797"], ["https://data.delijn.be/stops/219080", "https://data.delijn.be/stops/303292"], ["https://data.delijn.be/stops/206340", "https://data.delijn.be/stops/207712"], ["https://data.delijn.be/stops/108390", "https://data.delijn.be/stops/108392"], ["https://data.delijn.be/stops/301453", "https://data.delijn.be/stops/307912"], ["https://data.delijn.be/stops/204822", "https://data.delijn.be/stops/205504"], ["https://data.delijn.be/stops/200951", "https://data.delijn.be/stops/202076"], ["https://data.delijn.be/stops/301913", "https://data.delijn.be/stops/306252"], ["https://data.delijn.be/stops/206444", "https://data.delijn.be/stops/207443"], ["https://data.delijn.be/stops/302082", "https://data.delijn.be/stops/302864"], ["https://data.delijn.be/stops/505982", "https://data.delijn.be/stops/507204"], ["https://data.delijn.be/stops/404746", "https://data.delijn.be/stops/404749"], ["https://data.delijn.be/stops/210059", "https://data.delijn.be/stops/211059"], ["https://data.delijn.be/stops/200909", "https://data.delijn.be/stops/203052"], ["https://data.delijn.be/stops/105030", "https://data.delijn.be/stops/108645"], ["https://data.delijn.be/stops/301319", "https://data.delijn.be/stops/301324"], ["https://data.delijn.be/stops/105042", "https://data.delijn.be/stops/109759"], ["https://data.delijn.be/stops/204777", "https://data.delijn.be/stops/204778"], ["https://data.delijn.be/stops/503720", "https://data.delijn.be/stops/508732"], ["https://data.delijn.be/stops/403040", "https://data.delijn.be/stops/403497"], ["https://data.delijn.be/stops/404864", "https://data.delijn.be/stops/404896"], ["https://data.delijn.be/stops/303363", "https://data.delijn.be/stops/308850"], ["https://data.delijn.be/stops/208426", "https://data.delijn.be/stops/209431"], ["https://data.delijn.be/stops/104112", "https://data.delijn.be/stops/105445"], ["https://data.delijn.be/stops/501592", "https://data.delijn.be/stops/504511"], ["https://data.delijn.be/stops/306936", "https://data.delijn.be/stops/308132"], ["https://data.delijn.be/stops/506106", "https://data.delijn.be/stops/506389"], ["https://data.delijn.be/stops/102595", "https://data.delijn.be/stops/103615"], ["https://data.delijn.be/stops/104778", "https://data.delijn.be/stops/108151"], ["https://data.delijn.be/stops/300513", "https://data.delijn.be/stops/300538"], ["https://data.delijn.be/stops/102082", "https://data.delijn.be/stops/109977"], ["https://data.delijn.be/stops/303616", "https://data.delijn.be/stops/304563"], ["https://data.delijn.be/stops/308464", "https://data.delijn.be/stops/308689"], ["https://data.delijn.be/stops/405587", "https://data.delijn.be/stops/409431"], ["https://data.delijn.be/stops/305614", "https://data.delijn.be/stops/305615"], ["https://data.delijn.be/stops/107590", "https://data.delijn.be/stops/109055"], ["https://data.delijn.be/stops/103821", "https://data.delijn.be/stops/108090"], ["https://data.delijn.be/stops/405854", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/200513", "https://data.delijn.be/stops/200514"], ["https://data.delijn.be/stops/505067", "https://data.delijn.be/stops/505320"], ["https://data.delijn.be/stops/200880", "https://data.delijn.be/stops/208919"], ["https://data.delijn.be/stops/407750", "https://data.delijn.be/stops/407752"], ["https://data.delijn.be/stops/506262", "https://data.delijn.be/stops/506286"], ["https://data.delijn.be/stops/108292", "https://data.delijn.be/stops/108294"], ["https://data.delijn.be/stops/204086", "https://data.delijn.be/stops/205083"], ["https://data.delijn.be/stops/501181", "https://data.delijn.be/stops/506674"], ["https://data.delijn.be/stops/101070", "https://data.delijn.be/stops/103040"], ["https://data.delijn.be/stops/105937", "https://data.delijn.be/stops/105938"], ["https://data.delijn.be/stops/303758", "https://data.delijn.be/stops/303759"], ["https://data.delijn.be/stops/101617", "https://data.delijn.be/stops/106570"], ["https://data.delijn.be/stops/201594", "https://data.delijn.be/stops/201598"], ["https://data.delijn.be/stops/409705", "https://data.delijn.be/stops/409712"], ["https://data.delijn.be/stops/505123", "https://data.delijn.be/stops/505136"], ["https://data.delijn.be/stops/304493", "https://data.delijn.be/stops/304497"], ["https://data.delijn.be/stops/204749", "https://data.delijn.be/stops/205748"], ["https://data.delijn.be/stops/502030", "https://data.delijn.be/stops/502038"], ["https://data.delijn.be/stops/504336", "https://data.delijn.be/stops/505169"], ["https://data.delijn.be/stops/108726", "https://data.delijn.be/stops/108727"], ["https://data.delijn.be/stops/200713", "https://data.delijn.be/stops/200718"], ["https://data.delijn.be/stops/307674", "https://data.delijn.be/stops/307675"], ["https://data.delijn.be/stops/501004", "https://data.delijn.be/stops/506010"], ["https://data.delijn.be/stops/302423", "https://data.delijn.be/stops/308105"], ["https://data.delijn.be/stops/300361", "https://data.delijn.be/stops/308991"], ["https://data.delijn.be/stops/304008", "https://data.delijn.be/stops/304009"], ["https://data.delijn.be/stops/106151", "https://data.delijn.be/stops/106156"], ["https://data.delijn.be/stops/308246", "https://data.delijn.be/stops/308247"], ["https://data.delijn.be/stops/207987", "https://data.delijn.be/stops/207995"], ["https://data.delijn.be/stops/109667", "https://data.delijn.be/stops/401934"], ["https://data.delijn.be/stops/101343", "https://data.delijn.be/stops/104052"], ["https://data.delijn.be/stops/403041", "https://data.delijn.be/stops/403276"], ["https://data.delijn.be/stops/200521", "https://data.delijn.be/stops/201235"], ["https://data.delijn.be/stops/204423", "https://data.delijn.be/stops/205423"], ["https://data.delijn.be/stops/502234", "https://data.delijn.be/stops/505720"], ["https://data.delijn.be/stops/204404", "https://data.delijn.be/stops/205196"], ["https://data.delijn.be/stops/102492", "https://data.delijn.be/stops/405133"], ["https://data.delijn.be/stops/206416", "https://data.delijn.be/stops/216016"], ["https://data.delijn.be/stops/402989", "https://data.delijn.be/stops/404827"], ["https://data.delijn.be/stops/103930", "https://data.delijn.be/stops/105420"], ["https://data.delijn.be/stops/204013", "https://data.delijn.be/stops/204696"], ["https://data.delijn.be/stops/202442", "https://data.delijn.be/stops/202443"], ["https://data.delijn.be/stops/103167", "https://data.delijn.be/stops/109740"], ["https://data.delijn.be/stops/201726", "https://data.delijn.be/stops/202977"], ["https://data.delijn.be/stops/205446", "https://data.delijn.be/stops/205614"], ["https://data.delijn.be/stops/103081", "https://data.delijn.be/stops/104676"], ["https://data.delijn.be/stops/208234", "https://data.delijn.be/stops/209797"], ["https://data.delijn.be/stops/103246", "https://data.delijn.be/stops/108920"], ["https://data.delijn.be/stops/101514", "https://data.delijn.be/stops/102901"], ["https://data.delijn.be/stops/101296", "https://data.delijn.be/stops/105771"], ["https://data.delijn.be/stops/210851", "https://data.delijn.be/stops/210852"], ["https://data.delijn.be/stops/405306", "https://data.delijn.be/stops/407123"], ["https://data.delijn.be/stops/404166", "https://data.delijn.be/stops/404167"], ["https://data.delijn.be/stops/406619", "https://data.delijn.be/stops/407410"], ["https://data.delijn.be/stops/208460", "https://data.delijn.be/stops/208461"], ["https://data.delijn.be/stops/402267", "https://data.delijn.be/stops/402422"], ["https://data.delijn.be/stops/307714", "https://data.delijn.be/stops/307715"], ["https://data.delijn.be/stops/404620", "https://data.delijn.be/stops/406960"], ["https://data.delijn.be/stops/101142", "https://data.delijn.be/stops/102831"], ["https://data.delijn.be/stops/505586", "https://data.delijn.be/stops/505744"], ["https://data.delijn.be/stops/409059", "https://data.delijn.be/stops/409141"], ["https://data.delijn.be/stops/204993", "https://data.delijn.be/stops/209129"], ["https://data.delijn.be/stops/200720", "https://data.delijn.be/stops/202622"], ["https://data.delijn.be/stops/400817", "https://data.delijn.be/stops/403583"], ["https://data.delijn.be/stops/204432", "https://data.delijn.be/stops/205432"], ["https://data.delijn.be/stops/208606", "https://data.delijn.be/stops/307606"], ["https://data.delijn.be/stops/301713", "https://data.delijn.be/stops/308697"], ["https://data.delijn.be/stops/502129", "https://data.delijn.be/stops/502145"], ["https://data.delijn.be/stops/502039", "https://data.delijn.be/stops/507039"], ["https://data.delijn.be/stops/207474", "https://data.delijn.be/stops/207495"], ["https://data.delijn.be/stops/501529", "https://data.delijn.be/stops/501531"], ["https://data.delijn.be/stops/503051", "https://data.delijn.be/stops/509845"], ["https://data.delijn.be/stops/108409", "https://data.delijn.be/stops/108411"], ["https://data.delijn.be/stops/403968", "https://data.delijn.be/stops/403969"], ["https://data.delijn.be/stops/301551", "https://data.delijn.be/stops/305137"], ["https://data.delijn.be/stops/301353", "https://data.delijn.be/stops/306127"], ["https://data.delijn.be/stops/208122", "https://data.delijn.be/stops/209289"], ["https://data.delijn.be/stops/106643", "https://data.delijn.be/stops/109752"], ["https://data.delijn.be/stops/301897", "https://data.delijn.be/stops/308131"], ["https://data.delijn.be/stops/206808", "https://data.delijn.be/stops/207220"], ["https://data.delijn.be/stops/402176", "https://data.delijn.be/stops/406870"], ["https://data.delijn.be/stops/407824", "https://data.delijn.be/stops/407917"], ["https://data.delijn.be/stops/400453", "https://data.delijn.be/stops/407648"], ["https://data.delijn.be/stops/208000", "https://data.delijn.be/stops/208022"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/501736"], ["https://data.delijn.be/stops/101035", "https://data.delijn.be/stops/101865"], ["https://data.delijn.be/stops/210025", "https://data.delijn.be/stops/211037"], ["https://data.delijn.be/stops/106459", "https://data.delijn.be/stops/107038"], ["https://data.delijn.be/stops/302754", "https://data.delijn.be/stops/302772"], ["https://data.delijn.be/stops/300234", "https://data.delijn.be/stops/301379"], ["https://data.delijn.be/stops/408956", "https://data.delijn.be/stops/408965"], ["https://data.delijn.be/stops/509752", "https://data.delijn.be/stops/509753"], ["https://data.delijn.be/stops/108300", "https://data.delijn.be/stops/108490"], ["https://data.delijn.be/stops/403678", "https://data.delijn.be/stops/403679"], ["https://data.delijn.be/stops/207535", "https://data.delijn.be/stops/207547"], ["https://data.delijn.be/stops/203837", "https://data.delijn.be/stops/208679"], ["https://data.delijn.be/stops/508174", "https://data.delijn.be/stops/508262"], ["https://data.delijn.be/stops/204505", "https://data.delijn.be/stops/205904"], ["https://data.delijn.be/stops/200834", "https://data.delijn.be/stops/200857"], ["https://data.delijn.be/stops/504475", "https://data.delijn.be/stops/505988"], ["https://data.delijn.be/stops/102533", "https://data.delijn.be/stops/408342"], ["https://data.delijn.be/stops/303653", "https://data.delijn.be/stops/304838"], ["https://data.delijn.be/stops/502745", "https://data.delijn.be/stops/505069"], ["https://data.delijn.be/stops/400571", "https://data.delijn.be/stops/404057"], ["https://data.delijn.be/stops/105781", "https://data.delijn.be/stops/105783"], ["https://data.delijn.be/stops/402364", "https://data.delijn.be/stops/402457"], ["https://data.delijn.be/stops/408531", "https://data.delijn.be/stops/408589"], ["https://data.delijn.be/stops/400786", "https://data.delijn.be/stops/409651"], ["https://data.delijn.be/stops/109192", "https://data.delijn.be/stops/109228"], ["https://data.delijn.be/stops/200940", "https://data.delijn.be/stops/203706"], ["https://data.delijn.be/stops/109455", "https://data.delijn.be/stops/109456"], ["https://data.delijn.be/stops/206792", "https://data.delijn.be/stops/207629"], ["https://data.delijn.be/stops/407000", "https://data.delijn.be/stops/408025"], ["https://data.delijn.be/stops/407627", "https://data.delijn.be/stops/410194"], ["https://data.delijn.be/stops/109149", "https://data.delijn.be/stops/109151"], ["https://data.delijn.be/stops/301316", "https://data.delijn.be/stops/306660"], ["https://data.delijn.be/stops/200070", "https://data.delijn.be/stops/210113"], ["https://data.delijn.be/stops/200494", "https://data.delijn.be/stops/201494"], ["https://data.delijn.be/stops/307567", "https://data.delijn.be/stops/307765"], ["https://data.delijn.be/stops/206201", "https://data.delijn.be/stops/207808"], ["https://data.delijn.be/stops/502769", "https://data.delijn.be/stops/507769"], ["https://data.delijn.be/stops/404429", "https://data.delijn.be/stops/407234"], ["https://data.delijn.be/stops/401225", "https://data.delijn.be/stops/401381"], ["https://data.delijn.be/stops/504254", "https://data.delijn.be/stops/509386"], ["https://data.delijn.be/stops/504230", "https://data.delijn.be/stops/509241"], ["https://data.delijn.be/stops/101827", "https://data.delijn.be/stops/101927"], ["https://data.delijn.be/stops/505984", "https://data.delijn.be/stops/510026"], ["https://data.delijn.be/stops/301904", "https://data.delijn.be/stops/301905"], ["https://data.delijn.be/stops/301007", "https://data.delijn.be/stops/301015"], ["https://data.delijn.be/stops/201420", "https://data.delijn.be/stops/202406"], ["https://data.delijn.be/stops/101519", "https://data.delijn.be/stops/101983"], ["https://data.delijn.be/stops/300976", "https://data.delijn.be/stops/301074"], ["https://data.delijn.be/stops/402042", "https://data.delijn.be/stops/402364"], ["https://data.delijn.be/stops/505648", "https://data.delijn.be/stops/505752"], ["https://data.delijn.be/stops/208332", "https://data.delijn.be/stops/209332"], ["https://data.delijn.be/stops/501577", "https://data.delijn.be/stops/503835"], ["https://data.delijn.be/stops/408111", "https://data.delijn.be/stops/408118"], ["https://data.delijn.be/stops/201389", "https://data.delijn.be/stops/208708"], ["https://data.delijn.be/stops/301827", "https://data.delijn.be/stops/301833"], ["https://data.delijn.be/stops/200581", "https://data.delijn.be/stops/201581"], ["https://data.delijn.be/stops/300802", "https://data.delijn.be/stops/302407"], ["https://data.delijn.be/stops/101534", "https://data.delijn.be/stops/101944"], ["https://data.delijn.be/stops/502456", "https://data.delijn.be/stops/505741"], ["https://data.delijn.be/stops/304736", "https://data.delijn.be/stops/304751"], ["https://data.delijn.be/stops/104683", "https://data.delijn.be/stops/104783"], ["https://data.delijn.be/stops/205160", "https://data.delijn.be/stops/207278"], ["https://data.delijn.be/stops/200773", "https://data.delijn.be/stops/209309"], ["https://data.delijn.be/stops/202440", "https://data.delijn.be/stops/210047"], ["https://data.delijn.be/stops/502243", "https://data.delijn.be/stops/502633"], ["https://data.delijn.be/stops/306055", "https://data.delijn.be/stops/306062"], ["https://data.delijn.be/stops/206634", "https://data.delijn.be/stops/207634"], ["https://data.delijn.be/stops/202155", "https://data.delijn.be/stops/203140"], ["https://data.delijn.be/stops/104078", "https://data.delijn.be/stops/106074"], ["https://data.delijn.be/stops/408855", "https://data.delijn.be/stops/408869"], ["https://data.delijn.be/stops/505710", "https://data.delijn.be/stops/509137"], ["https://data.delijn.be/stops/219022", "https://data.delijn.be/stops/219023"], ["https://data.delijn.be/stops/209338", "https://data.delijn.be/stops/209360"], ["https://data.delijn.be/stops/505954", "https://data.delijn.be/stops/508606"], ["https://data.delijn.be/stops/304962", "https://data.delijn.be/stops/306383"], ["https://data.delijn.be/stops/400926", "https://data.delijn.be/stops/400927"], ["https://data.delijn.be/stops/108939", "https://data.delijn.be/stops/108941"], ["https://data.delijn.be/stops/504242", "https://data.delijn.be/stops/509232"], ["https://data.delijn.be/stops/106001", "https://data.delijn.be/stops/107908"], ["https://data.delijn.be/stops/505381", "https://data.delijn.be/stops/508096"], ["https://data.delijn.be/stops/103293", "https://data.delijn.be/stops/108705"], ["https://data.delijn.be/stops/400774", "https://data.delijn.be/stops/402235"], ["https://data.delijn.be/stops/204410", "https://data.delijn.be/stops/205410"], ["https://data.delijn.be/stops/404665", "https://data.delijn.be/stops/404683"], ["https://data.delijn.be/stops/301516", "https://data.delijn.be/stops/301525"], ["https://data.delijn.be/stops/201314", "https://data.delijn.be/stops/210314"], ["https://data.delijn.be/stops/106420", "https://data.delijn.be/stops/106521"], ["https://data.delijn.be/stops/408802", "https://data.delijn.be/stops/408824"], ["https://data.delijn.be/stops/305648", "https://data.delijn.be/stops/305656"], ["https://data.delijn.be/stops/101836", "https://data.delijn.be/stops/107044"], ["https://data.delijn.be/stops/301713", "https://data.delijn.be/stops/305314"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/504537"], ["https://data.delijn.be/stops/400472", "https://data.delijn.be/stops/404661"], ["https://data.delijn.be/stops/400714", "https://data.delijn.be/stops/400896"], ["https://data.delijn.be/stops/307133", "https://data.delijn.be/stops/308739"], ["https://data.delijn.be/stops/505291", "https://data.delijn.be/stops/508630"], ["https://data.delijn.be/stops/207686", "https://data.delijn.be/stops/207709"], ["https://data.delijn.be/stops/402210", "https://data.delijn.be/stops/405570"], ["https://data.delijn.be/stops/206660", "https://data.delijn.be/stops/207661"], ["https://data.delijn.be/stops/101355", "https://data.delijn.be/stops/101920"], ["https://data.delijn.be/stops/306904", "https://data.delijn.be/stops/306906"], ["https://data.delijn.be/stops/107903", "https://data.delijn.be/stops/109751"], ["https://data.delijn.be/stops/209470", "https://data.delijn.be/stops/209754"], ["https://data.delijn.be/stops/200693", "https://data.delijn.be/stops/200696"], ["https://data.delijn.be/stops/408204", "https://data.delijn.be/stops/408395"], ["https://data.delijn.be/stops/502487", "https://data.delijn.be/stops/509700"], ["https://data.delijn.be/stops/305070", "https://data.delijn.be/stops/308295"], ["https://data.delijn.be/stops/200755", "https://data.delijn.be/stops/209306"], ["https://data.delijn.be/stops/504273", "https://data.delijn.be/stops/509271"], ["https://data.delijn.be/stops/203223", "https://data.delijn.be/stops/205832"], ["https://data.delijn.be/stops/401166", "https://data.delijn.be/stops/403768"], ["https://data.delijn.be/stops/502024", "https://data.delijn.be/stops/502934"], ["https://data.delijn.be/stops/405534", "https://data.delijn.be/stops/406897"], ["https://data.delijn.be/stops/501238", "https://data.delijn.be/stops/506238"], ["https://data.delijn.be/stops/406875", "https://data.delijn.be/stops/406876"], ["https://data.delijn.be/stops/102390", "https://data.delijn.be/stops/103045"], ["https://data.delijn.be/stops/304453", "https://data.delijn.be/stops/307649"], ["https://data.delijn.be/stops/307306", "https://data.delijn.be/stops/307600"], ["https://data.delijn.be/stops/106029", "https://data.delijn.be/stops/106031"], ["https://data.delijn.be/stops/505503", "https://data.delijn.be/stops/505600"], ["https://data.delijn.be/stops/502269", "https://data.delijn.be/stops/507269"], ["https://data.delijn.be/stops/501070", "https://data.delijn.be/stops/501073"], ["https://data.delijn.be/stops/409621", "https://data.delijn.be/stops/409634"], ["https://data.delijn.be/stops/503423", "https://data.delijn.be/stops/503438"], ["https://data.delijn.be/stops/206031", "https://data.delijn.be/stops/207032"], ["https://data.delijn.be/stops/104364", "https://data.delijn.be/stops/105415"], ["https://data.delijn.be/stops/404246", "https://data.delijn.be/stops/404247"], ["https://data.delijn.be/stops/202031", "https://data.delijn.be/stops/203030"], ["https://data.delijn.be/stops/304376", "https://data.delijn.be/stops/307070"], ["https://data.delijn.be/stops/503089", "https://data.delijn.be/stops/508089"], ["https://data.delijn.be/stops/304333", "https://data.delijn.be/stops/304337"], ["https://data.delijn.be/stops/508621", "https://data.delijn.be/stops/508697"], ["https://data.delijn.be/stops/208769", "https://data.delijn.be/stops/209770"], ["https://data.delijn.be/stops/211014", "https://data.delijn.be/stops/502298"], ["https://data.delijn.be/stops/200372", "https://data.delijn.be/stops/201372"], ["https://data.delijn.be/stops/106819", "https://data.delijn.be/stops/106985"], ["https://data.delijn.be/stops/200200", "https://data.delijn.be/stops/201274"], ["https://data.delijn.be/stops/208464", "https://data.delijn.be/stops/209681"], ["https://data.delijn.be/stops/404898", "https://data.delijn.be/stops/408583"], ["https://data.delijn.be/stops/102792", "https://data.delijn.be/stops/107417"], ["https://data.delijn.be/stops/502206", "https://data.delijn.be/stops/507209"], ["https://data.delijn.be/stops/200356", "https://data.delijn.be/stops/202647"], ["https://data.delijn.be/stops/402099", "https://data.delijn.be/stops/402209"], ["https://data.delijn.be/stops/206750", "https://data.delijn.be/stops/206751"], ["https://data.delijn.be/stops/405576", "https://data.delijn.be/stops/405577"], ["https://data.delijn.be/stops/206961", "https://data.delijn.be/stops/207801"], ["https://data.delijn.be/stops/106725", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/307223", "https://data.delijn.be/stops/307224"], ["https://data.delijn.be/stops/503381", "https://data.delijn.be/stops/509907"], ["https://data.delijn.be/stops/405767", "https://data.delijn.be/stops/409754"], ["https://data.delijn.be/stops/505056", "https://data.delijn.be/stops/505761"], ["https://data.delijn.be/stops/502679", "https://data.delijn.be/stops/507358"], ["https://data.delijn.be/stops/101798", "https://data.delijn.be/stops/108517"], ["https://data.delijn.be/stops/504232", "https://data.delijn.be/stops/504241"], ["https://data.delijn.be/stops/202163", "https://data.delijn.be/stops/203163"], ["https://data.delijn.be/stops/400310", "https://data.delijn.be/stops/405537"], ["https://data.delijn.be/stops/504045", "https://data.delijn.be/stops/504989"], ["https://data.delijn.be/stops/504270", "https://data.delijn.be/stops/509275"], ["https://data.delijn.be/stops/200663", "https://data.delijn.be/stops/201841"], ["https://data.delijn.be/stops/303498", "https://data.delijn.be/stops/303504"], ["https://data.delijn.be/stops/108403", "https://data.delijn.be/stops/108406"], ["https://data.delijn.be/stops/204606", "https://data.delijn.be/stops/204607"], ["https://data.delijn.be/stops/501060", "https://data.delijn.be/stops/505357"], ["https://data.delijn.be/stops/306053", "https://data.delijn.be/stops/306054"], ["https://data.delijn.be/stops/202456", "https://data.delijn.be/stops/202486"], ["https://data.delijn.be/stops/503667", "https://data.delijn.be/stops/508648"], ["https://data.delijn.be/stops/101928", "https://data.delijn.be/stops/108203"], ["https://data.delijn.be/stops/405661", "https://data.delijn.be/stops/301240"], ["https://data.delijn.be/stops/400822", "https://data.delijn.be/stops/403058"], ["https://data.delijn.be/stops/105419", "https://data.delijn.be/stops/109978"], ["https://data.delijn.be/stops/103538", "https://data.delijn.be/stops/106723"], ["https://data.delijn.be/stops/206041", "https://data.delijn.be/stops/206964"], ["https://data.delijn.be/stops/306799", "https://data.delijn.be/stops/306800"], ["https://data.delijn.be/stops/403190", "https://data.delijn.be/stops/403638"], ["https://data.delijn.be/stops/208313", "https://data.delijn.be/stops/209771"], ["https://data.delijn.be/stops/206722", "https://data.delijn.be/stops/207140"], ["https://data.delijn.be/stops/206470", "https://data.delijn.be/stops/206471"], ["https://data.delijn.be/stops/509230", "https://data.delijn.be/stops/509239"], ["https://data.delijn.be/stops/504115", "https://data.delijn.be/stops/509115"], ["https://data.delijn.be/stops/300142", "https://data.delijn.be/stops/307728"], ["https://data.delijn.be/stops/510008", "https://data.delijn.be/stops/510010"], ["https://data.delijn.be/stops/503184", "https://data.delijn.be/stops/504820"], ["https://data.delijn.be/stops/407049", "https://data.delijn.be/stops/407083"], ["https://data.delijn.be/stops/204154", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/200906", "https://data.delijn.be/stops/200907"], ["https://data.delijn.be/stops/200182", "https://data.delijn.be/stops/200192"], ["https://data.delijn.be/stops/503240", "https://data.delijn.be/stops/508518"], ["https://data.delijn.be/stops/308512", "https://data.delijn.be/stops/308513"], ["https://data.delijn.be/stops/503054", "https://data.delijn.be/stops/509845"], ["https://data.delijn.be/stops/200608", "https://data.delijn.be/stops/202779"], ["https://data.delijn.be/stops/202364", "https://data.delijn.be/stops/203989"], ["https://data.delijn.be/stops/200394", "https://data.delijn.be/stops/200396"], ["https://data.delijn.be/stops/103486", "https://data.delijn.be/stops/103789"], ["https://data.delijn.be/stops/403436", "https://data.delijn.be/stops/403437"], ["https://data.delijn.be/stops/204292", "https://data.delijn.be/stops/205293"], ["https://data.delijn.be/stops/407490", "https://data.delijn.be/stops/407571"], ["https://data.delijn.be/stops/206317", "https://data.delijn.be/stops/207289"], ["https://data.delijn.be/stops/308076", "https://data.delijn.be/stops/308077"], ["https://data.delijn.be/stops/300459", "https://data.delijn.be/stops/300471"], ["https://data.delijn.be/stops/303162", "https://data.delijn.be/stops/303178"], ["https://data.delijn.be/stops/106969", "https://data.delijn.be/stops/106970"], ["https://data.delijn.be/stops/108079", "https://data.delijn.be/stops/108081"], ["https://data.delijn.be/stops/105691", "https://data.delijn.be/stops/105696"], ["https://data.delijn.be/stops/300188", "https://data.delijn.be/stops/300196"], ["https://data.delijn.be/stops/300510", "https://data.delijn.be/stops/308357"], ["https://data.delijn.be/stops/200346", "https://data.delijn.be/stops/201548"], ["https://data.delijn.be/stops/504193", "https://data.delijn.be/stops/509189"], ["https://data.delijn.be/stops/407371", "https://data.delijn.be/stops/407376"], ["https://data.delijn.be/stops/305728", "https://data.delijn.be/stops/305729"], ["https://data.delijn.be/stops/503798", "https://data.delijn.be/stops/508796"], ["https://data.delijn.be/stops/206953", "https://data.delijn.be/stops/300174"], ["https://data.delijn.be/stops/403702", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/501256", "https://data.delijn.be/stops/506256"], ["https://data.delijn.be/stops/208356", "https://data.delijn.be/stops/209355"], ["https://data.delijn.be/stops/108495", "https://data.delijn.be/stops/109088"], ["https://data.delijn.be/stops/200852", "https://data.delijn.be/stops/200857"], ["https://data.delijn.be/stops/505133", "https://data.delijn.be/stops/505134"], ["https://data.delijn.be/stops/305068", "https://data.delijn.be/stops/305081"], ["https://data.delijn.be/stops/304434", "https://data.delijn.be/stops/304444"], ["https://data.delijn.be/stops/300938", "https://data.delijn.be/stops/308856"], ["https://data.delijn.be/stops/105294", "https://data.delijn.be/stops/105296"], ["https://data.delijn.be/stops/206417", "https://data.delijn.be/stops/206718"], ["https://data.delijn.be/stops/408861", "https://data.delijn.be/stops/408898"], ["https://data.delijn.be/stops/208284", "https://data.delijn.be/stops/209284"], ["https://data.delijn.be/stops/404214", "https://data.delijn.be/stops/404238"], ["https://data.delijn.be/stops/407856", "https://data.delijn.be/stops/407931"], ["https://data.delijn.be/stops/505364", "https://data.delijn.be/stops/505957"], ["https://data.delijn.be/stops/404691", "https://data.delijn.be/stops/407254"], ["https://data.delijn.be/stops/307215", "https://data.delijn.be/stops/307218"], ["https://data.delijn.be/stops/300393", "https://data.delijn.be/stops/303125"], ["https://data.delijn.be/stops/103765", "https://data.delijn.be/stops/104265"], ["https://data.delijn.be/stops/504322", "https://data.delijn.be/stops/504323"], ["https://data.delijn.be/stops/208136", "https://data.delijn.be/stops/209135"], ["https://data.delijn.be/stops/208646", "https://data.delijn.be/stops/210111"], ["https://data.delijn.be/stops/205443", "https://data.delijn.be/stops/205768"], ["https://data.delijn.be/stops/201451", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/503019", "https://data.delijn.be/stops/508019"], ["https://data.delijn.be/stops/300951", "https://data.delijn.be/stops/301038"], ["https://data.delijn.be/stops/106864", "https://data.delijn.be/stops/106866"], ["https://data.delijn.be/stops/505711", "https://data.delijn.be/stops/509618"], ["https://data.delijn.be/stops/302236", "https://data.delijn.be/stops/302248"], ["https://data.delijn.be/stops/109318", "https://data.delijn.be/stops/109320"], ["https://data.delijn.be/stops/307934", "https://data.delijn.be/stops/307936"], ["https://data.delijn.be/stops/202745", "https://data.delijn.be/stops/207937"], ["https://data.delijn.be/stops/508630", "https://data.delijn.be/stops/509360"], ["https://data.delijn.be/stops/201491", "https://data.delijn.be/stops/205556"], ["https://data.delijn.be/stops/102835", "https://data.delijn.be/stops/102838"], ["https://data.delijn.be/stops/505741", "https://data.delijn.be/stops/507534"], ["https://data.delijn.be/stops/201664", "https://data.delijn.be/stops/210027"], ["https://data.delijn.be/stops/106077", "https://data.delijn.be/stops/106078"], ["https://data.delijn.be/stops/400328", "https://data.delijn.be/stops/400364"], ["https://data.delijn.be/stops/206500", "https://data.delijn.be/stops/206501"], ["https://data.delijn.be/stops/401842", "https://data.delijn.be/stops/401856"], ["https://data.delijn.be/stops/104821", "https://data.delijn.be/stops/108509"], ["https://data.delijn.be/stops/410361", "https://data.delijn.be/stops/410398"], ["https://data.delijn.be/stops/204391", "https://data.delijn.be/stops/205380"], ["https://data.delijn.be/stops/302924", "https://data.delijn.be/stops/302925"], ["https://data.delijn.be/stops/208195", "https://data.delijn.be/stops/208519"], ["https://data.delijn.be/stops/201342", "https://data.delijn.be/stops/211009"], ["https://data.delijn.be/stops/502494", "https://data.delijn.be/stops/505670"], ["https://data.delijn.be/stops/204767", "https://data.delijn.be/stops/204768"], ["https://data.delijn.be/stops/206266", "https://data.delijn.be/stops/207582"], ["https://data.delijn.be/stops/108553", "https://data.delijn.be/stops/109596"], ["https://data.delijn.be/stops/300816", "https://data.delijn.be/stops/308855"], ["https://data.delijn.be/stops/109956", "https://data.delijn.be/stops/109957"], ["https://data.delijn.be/stops/207133", "https://data.delijn.be/stops/207511"], ["https://data.delijn.be/stops/503758", "https://data.delijn.be/stops/509743"], ["https://data.delijn.be/stops/405227", "https://data.delijn.be/stops/409348"], ["https://data.delijn.be/stops/304069", "https://data.delijn.be/stops/304088"], ["https://data.delijn.be/stops/204655", "https://data.delijn.be/stops/205670"], ["https://data.delijn.be/stops/202497", "https://data.delijn.be/stops/203497"], ["https://data.delijn.be/stops/104659", "https://data.delijn.be/stops/108468"], ["https://data.delijn.be/stops/301616", "https://data.delijn.be/stops/307028"], ["https://data.delijn.be/stops/402240", "https://data.delijn.be/stops/402421"], ["https://data.delijn.be/stops/307624", "https://data.delijn.be/stops/308267"], ["https://data.delijn.be/stops/404850", "https://data.delijn.be/stops/404885"], ["https://data.delijn.be/stops/503523", "https://data.delijn.be/stops/504778"], ["https://data.delijn.be/stops/401260", "https://data.delijn.be/stops/401321"], ["https://data.delijn.be/stops/200415", "https://data.delijn.be/stops/201552"], ["https://data.delijn.be/stops/108706", "https://data.delijn.be/stops/108708"], ["https://data.delijn.be/stops/403717", "https://data.delijn.be/stops/403726"], ["https://data.delijn.be/stops/403123", "https://data.delijn.be/stops/403673"], ["https://data.delijn.be/stops/202510", "https://data.delijn.be/stops/203079"], ["https://data.delijn.be/stops/206543", "https://data.delijn.be/stops/209750"], ["https://data.delijn.be/stops/208362", "https://data.delijn.be/stops/208363"], ["https://data.delijn.be/stops/300951", "https://data.delijn.be/stops/305914"], ["https://data.delijn.be/stops/205350", "https://data.delijn.be/stops/205449"], ["https://data.delijn.be/stops/407813", "https://data.delijn.be/stops/407970"], ["https://data.delijn.be/stops/102638", "https://data.delijn.be/stops/107844"], ["https://data.delijn.be/stops/208387", "https://data.delijn.be/stops/219007"], ["https://data.delijn.be/stops/409358", "https://data.delijn.be/stops/409391"], ["https://data.delijn.be/stops/105273", "https://data.delijn.be/stops/105293"], ["https://data.delijn.be/stops/405426", "https://data.delijn.be/stops/409250"], ["https://data.delijn.be/stops/302878", "https://data.delijn.be/stops/302894"], ["https://data.delijn.be/stops/203166", "https://data.delijn.be/stops/205074"], ["https://data.delijn.be/stops/102446", "https://data.delijn.be/stops/103131"], ["https://data.delijn.be/stops/200369", "https://data.delijn.be/stops/201227"], ["https://data.delijn.be/stops/401420", "https://data.delijn.be/stops/401421"], ["https://data.delijn.be/stops/400829", "https://data.delijn.be/stops/409613"], ["https://data.delijn.be/stops/503200", "https://data.delijn.be/stops/503203"], ["https://data.delijn.be/stops/104001", "https://data.delijn.be/stops/104002"], ["https://data.delijn.be/stops/401413", "https://data.delijn.be/stops/306814"], ["https://data.delijn.be/stops/503495", "https://data.delijn.be/stops/503503"], ["https://data.delijn.be/stops/107115", "https://data.delijn.be/stops/107825"], ["https://data.delijn.be/stops/503953", "https://data.delijn.be/stops/504724"], ["https://data.delijn.be/stops/503789", "https://data.delijn.be/stops/508789"], ["https://data.delijn.be/stops/107986", "https://data.delijn.be/stops/308536"], ["https://data.delijn.be/stops/104904", "https://data.delijn.be/stops/107244"], ["https://data.delijn.be/stops/400251", "https://data.delijn.be/stops/400432"], ["https://data.delijn.be/stops/208919", "https://data.delijn.be/stops/210075"], ["https://data.delijn.be/stops/201646", "https://data.delijn.be/stops/202864"], ["https://data.delijn.be/stops/406191", "https://data.delijn.be/stops/406201"], ["https://data.delijn.be/stops/200884", "https://data.delijn.be/stops/200888"], ["https://data.delijn.be/stops/402740", "https://data.delijn.be/stops/407869"], ["https://data.delijn.be/stops/205242", "https://data.delijn.be/stops/205244"], ["https://data.delijn.be/stops/504997", "https://data.delijn.be/stops/508061"], ["https://data.delijn.be/stops/107283", "https://data.delijn.be/stops/107397"], ["https://data.delijn.be/stops/200984", "https://data.delijn.be/stops/201031"], ["https://data.delijn.be/stops/109056", "https://data.delijn.be/stops/405032"], ["https://data.delijn.be/stops/507320", "https://data.delijn.be/stops/507333"], ["https://data.delijn.be/stops/406041", "https://data.delijn.be/stops/406388"], ["https://data.delijn.be/stops/206678", "https://data.delijn.be/stops/206867"], ["https://data.delijn.be/stops/207451", "https://data.delijn.be/stops/207452"], ["https://data.delijn.be/stops/503652", "https://data.delijn.be/stops/508651"], ["https://data.delijn.be/stops/109836", "https://data.delijn.be/stops/109931"], ["https://data.delijn.be/stops/504798", "https://data.delijn.be/stops/507814"], ["https://data.delijn.be/stops/306345", "https://data.delijn.be/stops/308696"], ["https://data.delijn.be/stops/403335", "https://data.delijn.be/stops/403346"], ["https://data.delijn.be/stops/503218", "https://data.delijn.be/stops/508211"], ["https://data.delijn.be/stops/206110", "https://data.delijn.be/stops/207112"], ["https://data.delijn.be/stops/206910", "https://data.delijn.be/stops/207910"], ["https://data.delijn.be/stops/308730", "https://data.delijn.be/stops/308731"], ["https://data.delijn.be/stops/106361", "https://data.delijn.be/stops/106363"], ["https://data.delijn.be/stops/209485", "https://data.delijn.be/stops/209487"], ["https://data.delijn.be/stops/303473", "https://data.delijn.be/stops/303474"], ["https://data.delijn.be/stops/305612", "https://data.delijn.be/stops/305614"], ["https://data.delijn.be/stops/106069", "https://data.delijn.be/stops/106072"], ["https://data.delijn.be/stops/402694", "https://data.delijn.be/stops/402882"], ["https://data.delijn.be/stops/410336", "https://data.delijn.be/stops/410337"], ["https://data.delijn.be/stops/202560", "https://data.delijn.be/stops/203564"], ["https://data.delijn.be/stops/102535", "https://data.delijn.be/stops/104965"], ["https://data.delijn.be/stops/108860", "https://data.delijn.be/stops/108865"], ["https://data.delijn.be/stops/406006", "https://data.delijn.be/stops/406009"], ["https://data.delijn.be/stops/302166", "https://data.delijn.be/stops/306002"], ["https://data.delijn.be/stops/301074", "https://data.delijn.be/stops/306814"], ["https://data.delijn.be/stops/304428", "https://data.delijn.be/stops/307372"], ["https://data.delijn.be/stops/209386", "https://data.delijn.be/stops/209401"], ["https://data.delijn.be/stops/403894", "https://data.delijn.be/stops/404972"], ["https://data.delijn.be/stops/206305", "https://data.delijn.be/stops/206306"], ["https://data.delijn.be/stops/305732", "https://data.delijn.be/stops/307118"], ["https://data.delijn.be/stops/406623", "https://data.delijn.be/stops/406682"], ["https://data.delijn.be/stops/306049", "https://data.delijn.be/stops/306052"], ["https://data.delijn.be/stops/103317", "https://data.delijn.be/stops/105516"], ["https://data.delijn.be/stops/400171", "https://data.delijn.be/stops/407371"], ["https://data.delijn.be/stops/107592", "https://data.delijn.be/stops/107722"], ["https://data.delijn.be/stops/202521", "https://data.delijn.be/stops/203521"], ["https://data.delijn.be/stops/108519", "https://data.delijn.be/stops/108523"], ["https://data.delijn.be/stops/302218", "https://data.delijn.be/stops/302237"], ["https://data.delijn.be/stops/409390", "https://data.delijn.be/stops/409391"], ["https://data.delijn.be/stops/203253", "https://data.delijn.be/stops/203254"], ["https://data.delijn.be/stops/206793", "https://data.delijn.be/stops/209032"], ["https://data.delijn.be/stops/400072", "https://data.delijn.be/stops/400073"], ["https://data.delijn.be/stops/505109", "https://data.delijn.be/stops/509519"], ["https://data.delijn.be/stops/207572", "https://data.delijn.be/stops/207839"], ["https://data.delijn.be/stops/306830", "https://data.delijn.be/stops/306831"], ["https://data.delijn.be/stops/503666", "https://data.delijn.be/stops/505127"], ["https://data.delijn.be/stops/503934", "https://data.delijn.be/stops/505798"], ["https://data.delijn.be/stops/300298", "https://data.delijn.be/stops/307496"], ["https://data.delijn.be/stops/204059", "https://data.delijn.be/stops/205060"], ["https://data.delijn.be/stops/202570", "https://data.delijn.be/stops/203570"], ["https://data.delijn.be/stops/503397", "https://data.delijn.be/stops/503401"], ["https://data.delijn.be/stops/304023", "https://data.delijn.be/stops/304142"], ["https://data.delijn.be/stops/408176", "https://data.delijn.be/stops/408178"], ["https://data.delijn.be/stops/302893", "https://data.delijn.be/stops/302894"], ["https://data.delijn.be/stops/107141", "https://data.delijn.be/stops/107142"], ["https://data.delijn.be/stops/206333", "https://data.delijn.be/stops/206365"], ["https://data.delijn.be/stops/406557", "https://data.delijn.be/stops/407374"], ["https://data.delijn.be/stops/207185", "https://data.delijn.be/stops/207694"], ["https://data.delijn.be/stops/209152", "https://data.delijn.be/stops/209678"], ["https://data.delijn.be/stops/206989", "https://data.delijn.be/stops/207084"], ["https://data.delijn.be/stops/202035", "https://data.delijn.be/stops/203035"], ["https://data.delijn.be/stops/504408", "https://data.delijn.be/stops/509408"], ["https://data.delijn.be/stops/208122", "https://data.delijn.be/stops/209119"], ["https://data.delijn.be/stops/404225", "https://data.delijn.be/stops/404247"], ["https://data.delijn.be/stops/407832", "https://data.delijn.be/stops/407833"], ["https://data.delijn.be/stops/109087", "https://data.delijn.be/stops/109867"], ["https://data.delijn.be/stops/401189", "https://data.delijn.be/stops/401340"], ["https://data.delijn.be/stops/203238", "https://data.delijn.be/stops/203267"], ["https://data.delijn.be/stops/202092", "https://data.delijn.be/stops/203720"], ["https://data.delijn.be/stops/305167", "https://data.delijn.be/stops/308049"], ["https://data.delijn.be/stops/408858", "https://data.delijn.be/stops/408885"], ["https://data.delijn.be/stops/105469", "https://data.delijn.be/stops/105471"], ["https://data.delijn.be/stops/209040", "https://data.delijn.be/stops/209091"], ["https://data.delijn.be/stops/502003", "https://data.delijn.be/stops/502039"], ["https://data.delijn.be/stops/403642", "https://data.delijn.be/stops/403654"], ["https://data.delijn.be/stops/504982", "https://data.delijn.be/stops/505917"], ["https://data.delijn.be/stops/406679", "https://data.delijn.be/stops/407159"], ["https://data.delijn.be/stops/406040", "https://data.delijn.be/stops/406041"], ["https://data.delijn.be/stops/101944", "https://data.delijn.be/stops/109757"], ["https://data.delijn.be/stops/504013", "https://data.delijn.be/stops/504015"], ["https://data.delijn.be/stops/102202", "https://data.delijn.be/stops/105941"], ["https://data.delijn.be/stops/101529", "https://data.delijn.be/stops/109004"], ["https://data.delijn.be/stops/206676", "https://data.delijn.be/stops/206679"], ["https://data.delijn.be/stops/303953", "https://data.delijn.be/stops/303973"], ["https://data.delijn.be/stops/407733", "https://data.delijn.be/stops/409782"], ["https://data.delijn.be/stops/204321", "https://data.delijn.be/stops/205060"], ["https://data.delijn.be/stops/503886", "https://data.delijn.be/stops/508886"], ["https://data.delijn.be/stops/408123", "https://data.delijn.be/stops/408285"], ["https://data.delijn.be/stops/102042", "https://data.delijn.be/stops/206698"], ["https://data.delijn.be/stops/401755", "https://data.delijn.be/stops/401756"], ["https://data.delijn.be/stops/206636", "https://data.delijn.be/stops/206890"], ["https://data.delijn.be/stops/504798", "https://data.delijn.be/stops/504799"], ["https://data.delijn.be/stops/301584", "https://data.delijn.be/stops/301588"], ["https://data.delijn.be/stops/203907", "https://data.delijn.be/stops/203908"], ["https://data.delijn.be/stops/106473", "https://data.delijn.be/stops/109646"], ["https://data.delijn.be/stops/502471", "https://data.delijn.be/stops/502479"], ["https://data.delijn.be/stops/109013", "https://data.delijn.be/stops/109643"], ["https://data.delijn.be/stops/102702", "https://data.delijn.be/stops/105546"], ["https://data.delijn.be/stops/304797", "https://data.delijn.be/stops/304798"], ["https://data.delijn.be/stops/103975", "https://data.delijn.be/stops/103990"], ["https://data.delijn.be/stops/406107", "https://data.delijn.be/stops/406148"], ["https://data.delijn.be/stops/102979", "https://data.delijn.be/stops/105026"], ["https://data.delijn.be/stops/204023", "https://data.delijn.be/stops/205023"], ["https://data.delijn.be/stops/203817", "https://data.delijn.be/stops/203908"], ["https://data.delijn.be/stops/407098", "https://data.delijn.be/stops/407103"], ["https://data.delijn.be/stops/201926", "https://data.delijn.be/stops/207247"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/107149"], ["https://data.delijn.be/stops/403867", "https://data.delijn.be/stops/410013"], ["https://data.delijn.be/stops/201388", "https://data.delijn.be/stops/202650"], ["https://data.delijn.be/stops/204503", "https://data.delijn.be/stops/205539"], ["https://data.delijn.be/stops/202539", "https://data.delijn.be/stops/203688"], ["https://data.delijn.be/stops/405294", "https://data.delijn.be/stops/405298"], ["https://data.delijn.be/stops/205981", "https://data.delijn.be/stops/208725"], ["https://data.delijn.be/stops/304413", "https://data.delijn.be/stops/306858"], ["https://data.delijn.be/stops/200196", "https://data.delijn.be/stops/201106"], ["https://data.delijn.be/stops/405268", "https://data.delijn.be/stops/405273"], ["https://data.delijn.be/stops/502347", "https://data.delijn.be/stops/507347"], ["https://data.delijn.be/stops/207379", "https://data.delijn.be/stops/207731"], ["https://data.delijn.be/stops/302427", "https://data.delijn.be/stops/302438"], ["https://data.delijn.be/stops/106992", "https://data.delijn.be/stops/106993"], ["https://data.delijn.be/stops/301593", "https://data.delijn.be/stops/308088"], ["https://data.delijn.be/stops/405300", "https://data.delijn.be/stops/405428"], ["https://data.delijn.be/stops/502417", "https://data.delijn.be/stops/502440"], ["https://data.delijn.be/stops/202877", "https://data.delijn.be/stops/207427"], ["https://data.delijn.be/stops/503386", "https://data.delijn.be/stops/508386"], ["https://data.delijn.be/stops/101945", "https://data.delijn.be/stops/108738"], ["https://data.delijn.be/stops/106579", "https://data.delijn.be/stops/106581"], ["https://data.delijn.be/stops/207525", "https://data.delijn.be/stops/216006"], ["https://data.delijn.be/stops/300098", "https://data.delijn.be/stops/300117"], ["https://data.delijn.be/stops/209654", "https://data.delijn.be/stops/209656"], ["https://data.delijn.be/stops/404136", "https://data.delijn.be/stops/404179"], ["https://data.delijn.be/stops/304128", "https://data.delijn.be/stops/307677"], ["https://data.delijn.be/stops/404493", "https://data.delijn.be/stops/406947"], ["https://data.delijn.be/stops/204514", "https://data.delijn.be/stops/205334"], ["https://data.delijn.be/stops/106452", "https://data.delijn.be/stops/106453"], ["https://data.delijn.be/stops/402180", "https://data.delijn.be/stops/402191"], ["https://data.delijn.be/stops/301504", "https://data.delijn.be/stops/305733"], ["https://data.delijn.be/stops/404843", "https://data.delijn.be/stops/407751"], ["https://data.delijn.be/stops/205591", "https://data.delijn.be/stops/205779"], ["https://data.delijn.be/stops/403374", "https://data.delijn.be/stops/404103"], ["https://data.delijn.be/stops/206765", "https://data.delijn.be/stops/206791"], ["https://data.delijn.be/stops/200735", "https://data.delijn.be/stops/202590"], ["https://data.delijn.be/stops/400725", "https://data.delijn.be/stops/400802"], ["https://data.delijn.be/stops/503951", "https://data.delijn.be/stops/508417"], ["https://data.delijn.be/stops/208733", "https://data.delijn.be/stops/209847"], ["https://data.delijn.be/stops/505266", "https://data.delijn.be/stops/505942"], ["https://data.delijn.be/stops/501593", "https://data.delijn.be/stops/509495"], ["https://data.delijn.be/stops/202124", "https://data.delijn.be/stops/203123"], ["https://data.delijn.be/stops/504145", "https://data.delijn.be/stops/504386"], ["https://data.delijn.be/stops/405962", "https://data.delijn.be/stops/405966"], ["https://data.delijn.be/stops/204164", "https://data.delijn.be/stops/204771"], ["https://data.delijn.be/stops/403924", "https://data.delijn.be/stops/403981"], ["https://data.delijn.be/stops/205819", "https://data.delijn.be/stops/205821"], ["https://data.delijn.be/stops/202610", "https://data.delijn.be/stops/203610"], ["https://data.delijn.be/stops/403920", "https://data.delijn.be/stops/404015"], ["https://data.delijn.be/stops/301856", "https://data.delijn.be/stops/302051"], ["https://data.delijn.be/stops/501601", "https://data.delijn.be/stops/509744"], ["https://data.delijn.be/stops/207674", "https://data.delijn.be/stops/209103"], ["https://data.delijn.be/stops/102699", "https://data.delijn.be/stops/105177"], ["https://data.delijn.be/stops/206330", "https://data.delijn.be/stops/308799"], ["https://data.delijn.be/stops/400070", "https://data.delijn.be/stops/403549"], ["https://data.delijn.be/stops/405527", "https://data.delijn.be/stops/408074"], ["https://data.delijn.be/stops/202639", "https://data.delijn.be/stops/205104"], ["https://data.delijn.be/stops/102931", "https://data.delijn.be/stops/105030"], ["https://data.delijn.be/stops/204131", "https://data.delijn.be/stops/207637"], ["https://data.delijn.be/stops/300086", "https://data.delijn.be/stops/300087"], ["https://data.delijn.be/stops/503198", "https://data.delijn.be/stops/508195"], ["https://data.delijn.be/stops/501337", "https://data.delijn.be/stops/506300"], ["https://data.delijn.be/stops/300815", "https://data.delijn.be/stops/300877"], ["https://data.delijn.be/stops/304210", "https://data.delijn.be/stops/306003"], ["https://data.delijn.be/stops/509037", "https://data.delijn.be/stops/509280"], ["https://data.delijn.be/stops/401749", "https://data.delijn.be/stops/406888"], ["https://data.delijn.be/stops/300047", "https://data.delijn.be/stops/300056"], ["https://data.delijn.be/stops/200659", "https://data.delijn.be/stops/210048"], ["https://data.delijn.be/stops/101293", "https://data.delijn.be/stops/104971"], ["https://data.delijn.be/stops/502690", "https://data.delijn.be/stops/503824"], ["https://data.delijn.be/stops/304115", "https://data.delijn.be/stops/308645"], ["https://data.delijn.be/stops/301867", "https://data.delijn.be/stops/301874"], ["https://data.delijn.be/stops/101833", "https://data.delijn.be/stops/107093"], ["https://data.delijn.be/stops/209256", "https://data.delijn.be/stops/218027"], ["https://data.delijn.be/stops/509237", "https://data.delijn.be/stops/509654"], ["https://data.delijn.be/stops/508622", "https://data.delijn.be/stops/508627"], ["https://data.delijn.be/stops/105244", "https://data.delijn.be/stops/105412"], ["https://data.delijn.be/stops/403758", "https://data.delijn.be/stops/403762"], ["https://data.delijn.be/stops/407407", "https://data.delijn.be/stops/407564"], ["https://data.delijn.be/stops/102918", "https://data.delijn.be/stops/103275"], ["https://data.delijn.be/stops/300792", "https://data.delijn.be/stops/300793"], ["https://data.delijn.be/stops/505155", "https://data.delijn.be/stops/507074"], ["https://data.delijn.be/stops/104548", "https://data.delijn.be/stops/301914"], ["https://data.delijn.be/stops/202592", "https://data.delijn.be/stops/203591"], ["https://data.delijn.be/stops/104110", "https://data.delijn.be/stops/105885"], ["https://data.delijn.be/stops/201871", "https://data.delijn.be/stops/202423"], ["https://data.delijn.be/stops/301295", "https://data.delijn.be/stops/301358"], ["https://data.delijn.be/stops/302809", "https://data.delijn.be/stops/305544"], ["https://data.delijn.be/stops/302306", "https://data.delijn.be/stops/302330"], ["https://data.delijn.be/stops/502767", "https://data.delijn.be/stops/507151"], ["https://data.delijn.be/stops/501054", "https://data.delijn.be/stops/501061"], ["https://data.delijn.be/stops/407889", "https://data.delijn.be/stops/408182"], ["https://data.delijn.be/stops/405761", "https://data.delijn.be/stops/302845"], ["https://data.delijn.be/stops/305464", "https://data.delijn.be/stops/305480"], ["https://data.delijn.be/stops/407352", "https://data.delijn.be/stops/407400"], ["https://data.delijn.be/stops/204463", "https://data.delijn.be/stops/204464"], ["https://data.delijn.be/stops/107589", "https://data.delijn.be/stops/107722"], ["https://data.delijn.be/stops/404337", "https://data.delijn.be/stops/404382"], ["https://data.delijn.be/stops/206571", "https://data.delijn.be/stops/207570"], ["https://data.delijn.be/stops/508847", "https://data.delijn.be/stops/510029"], ["https://data.delijn.be/stops/103478", "https://data.delijn.be/stops/108932"], ["https://data.delijn.be/stops/206544", "https://data.delijn.be/stops/207546"], ["https://data.delijn.be/stops/105317", "https://data.delijn.be/stops/105341"], ["https://data.delijn.be/stops/304382", "https://data.delijn.be/stops/306832"], ["https://data.delijn.be/stops/205364", "https://data.delijn.be/stops/205718"], ["https://data.delijn.be/stops/106173", "https://data.delijn.be/stops/107442"], ["https://data.delijn.be/stops/206313", "https://data.delijn.be/stops/207291"], ["https://data.delijn.be/stops/410009", "https://data.delijn.be/stops/410034"], ["https://data.delijn.be/stops/303150", "https://data.delijn.be/stops/303680"], ["https://data.delijn.be/stops/503753", "https://data.delijn.be/stops/508753"], ["https://data.delijn.be/stops/101403", "https://data.delijn.be/stops/106529"], ["https://data.delijn.be/stops/200067", "https://data.delijn.be/stops/200089"], ["https://data.delijn.be/stops/407931", "https://data.delijn.be/stops/407934"], ["https://data.delijn.be/stops/400776", "https://data.delijn.be/stops/406686"], ["https://data.delijn.be/stops/401470", "https://data.delijn.be/stops/401471"], ["https://data.delijn.be/stops/303249", "https://data.delijn.be/stops/307004"], ["https://data.delijn.be/stops/400140", "https://data.delijn.be/stops/409163"], ["https://data.delijn.be/stops/301099", "https://data.delijn.be/stops/301102"], ["https://data.delijn.be/stops/408503", "https://data.delijn.be/stops/408548"], ["https://data.delijn.be/stops/304452", "https://data.delijn.be/stops/304453"], ["https://data.delijn.be/stops/404769", "https://data.delijn.be/stops/404775"], ["https://data.delijn.be/stops/401194", "https://data.delijn.be/stops/409190"], ["https://data.delijn.be/stops/205920", "https://data.delijn.be/stops/218936"], ["https://data.delijn.be/stops/204411", "https://data.delijn.be/stops/205772"], ["https://data.delijn.be/stops/504882", "https://data.delijn.be/stops/507714"], ["https://data.delijn.be/stops/103981", "https://data.delijn.be/stops/109958"], ["https://data.delijn.be/stops/206954", "https://data.delijn.be/stops/207802"], ["https://data.delijn.be/stops/300265", "https://data.delijn.be/stops/307495"], ["https://data.delijn.be/stops/105414", "https://data.delijn.be/stops/109846"], ["https://data.delijn.be/stops/301967", "https://data.delijn.be/stops/301968"], ["https://data.delijn.be/stops/202925", "https://data.delijn.be/stops/203926"], ["https://data.delijn.be/stops/502164", "https://data.delijn.be/stops/502628"], ["https://data.delijn.be/stops/406338", "https://data.delijn.be/stops/406401"], ["https://data.delijn.be/stops/208022", "https://data.delijn.be/stops/208024"], ["https://data.delijn.be/stops/401482", "https://data.delijn.be/stops/401892"], ["https://data.delijn.be/stops/203604", "https://data.delijn.be/stops/210077"], ["https://data.delijn.be/stops/502357", "https://data.delijn.be/stops/507531"], ["https://data.delijn.be/stops/301191", "https://data.delijn.be/stops/301253"], ["https://data.delijn.be/stops/206661", "https://data.delijn.be/stops/206662"], ["https://data.delijn.be/stops/202109", "https://data.delijn.be/stops/203184"], ["https://data.delijn.be/stops/505931", "https://data.delijn.be/stops/508140"], ["https://data.delijn.be/stops/304960", "https://data.delijn.be/stops/308084"], ["https://data.delijn.be/stops/208174", "https://data.delijn.be/stops/208180"], ["https://data.delijn.be/stops/303077", "https://data.delijn.be/stops/308654"], ["https://data.delijn.be/stops/404082", "https://data.delijn.be/stops/404084"], ["https://data.delijn.be/stops/402827", "https://data.delijn.be/stops/408483"], ["https://data.delijn.be/stops/404028", "https://data.delijn.be/stops/308746"], ["https://data.delijn.be/stops/504369", "https://data.delijn.be/stops/505933"], ["https://data.delijn.be/stops/502762", "https://data.delijn.be/stops/505238"], ["https://data.delijn.be/stops/404312", "https://data.delijn.be/stops/404330"], ["https://data.delijn.be/stops/505787", "https://data.delijn.be/stops/509342"], ["https://data.delijn.be/stops/102657", "https://data.delijn.be/stops/301152"], ["https://data.delijn.be/stops/200938", "https://data.delijn.be/stops/200939"], ["https://data.delijn.be/stops/304261", "https://data.delijn.be/stops/304264"], ["https://data.delijn.be/stops/407120", "https://data.delijn.be/stops/407150"], ["https://data.delijn.be/stops/303095", "https://data.delijn.be/stops/303999"], ["https://data.delijn.be/stops/502087", "https://data.delijn.be/stops/507087"], ["https://data.delijn.be/stops/405564", "https://data.delijn.be/stops/405570"], ["https://data.delijn.be/stops/200421", "https://data.delijn.be/stops/202406"], ["https://data.delijn.be/stops/301572", "https://data.delijn.be/stops/301576"], ["https://data.delijn.be/stops/206187", "https://data.delijn.be/stops/207955"], ["https://data.delijn.be/stops/404406", "https://data.delijn.be/stops/404412"], ["https://data.delijn.be/stops/101274", "https://data.delijn.be/stops/108760"], ["https://data.delijn.be/stops/505107", "https://data.delijn.be/stops/509640"], ["https://data.delijn.be/stops/206689", "https://data.delijn.be/stops/207716"], ["https://data.delijn.be/stops/206683", "https://data.delijn.be/stops/206703"], ["https://data.delijn.be/stops/202707", "https://data.delijn.be/stops/203682"], ["https://data.delijn.be/stops/302179", "https://data.delijn.be/stops/308129"], ["https://data.delijn.be/stops/208682", "https://data.delijn.be/stops/209437"], ["https://data.delijn.be/stops/307647", "https://data.delijn.be/stops/307649"], ["https://data.delijn.be/stops/404246", "https://data.delijn.be/stops/404504"], ["https://data.delijn.be/stops/209671", "https://data.delijn.be/stops/209672"], ["https://data.delijn.be/stops/503457", "https://data.delijn.be/stops/503458"], ["https://data.delijn.be/stops/503021", "https://data.delijn.be/stops/508010"], ["https://data.delijn.be/stops/206135", "https://data.delijn.be/stops/207133"], ["https://data.delijn.be/stops/503750", "https://data.delijn.be/stops/508750"], ["https://data.delijn.be/stops/109347", "https://data.delijn.be/stops/109355"], ["https://data.delijn.be/stops/306604", "https://data.delijn.be/stops/306605"], ["https://data.delijn.be/stops/407372", "https://data.delijn.be/stops/407373"], ["https://data.delijn.be/stops/108311", "https://data.delijn.be/stops/108312"], ["https://data.delijn.be/stops/208802", "https://data.delijn.be/stops/208803"], ["https://data.delijn.be/stops/105751", "https://data.delijn.be/stops/105752"], ["https://data.delijn.be/stops/206772", "https://data.delijn.be/stops/206778"], ["https://data.delijn.be/stops/202912", "https://data.delijn.be/stops/203911"], ["https://data.delijn.be/stops/405723", "https://data.delijn.be/stops/408339"], ["https://data.delijn.be/stops/502506", "https://data.delijn.be/stops/503334"], ["https://data.delijn.be/stops/206191", "https://data.delijn.be/stops/207223"], ["https://data.delijn.be/stops/109232", "https://data.delijn.be/stops/109233"], ["https://data.delijn.be/stops/203655", "https://data.delijn.be/stops/203656"], ["https://data.delijn.be/stops/406926", "https://data.delijn.be/stops/406928"], ["https://data.delijn.be/stops/205663", "https://data.delijn.be/stops/205681"], ["https://data.delijn.be/stops/304558", "https://data.delijn.be/stops/307570"], ["https://data.delijn.be/stops/105404", "https://data.delijn.be/stops/105406"], ["https://data.delijn.be/stops/106286", "https://data.delijn.be/stops/106303"], ["https://data.delijn.be/stops/402088", "https://data.delijn.be/stops/402089"], ["https://data.delijn.be/stops/101812", "https://data.delijn.be/stops/107977"], ["https://data.delijn.be/stops/107583", "https://data.delijn.be/stops/107586"], ["https://data.delijn.be/stops/502609", "https://data.delijn.be/stops/505691"], ["https://data.delijn.be/stops/200473", "https://data.delijn.be/stops/208939"], ["https://data.delijn.be/stops/504304", "https://data.delijn.be/stops/509383"], ["https://data.delijn.be/stops/208335", "https://data.delijn.be/stops/209334"], ["https://data.delijn.be/stops/506201", "https://data.delijn.be/stops/506202"], ["https://data.delijn.be/stops/302734", "https://data.delijn.be/stops/308594"], ["https://data.delijn.be/stops/200183", "https://data.delijn.be/stops/203477"], ["https://data.delijn.be/stops/403732", "https://data.delijn.be/stops/403740"], ["https://data.delijn.be/stops/401396", "https://data.delijn.be/stops/401452"], ["https://data.delijn.be/stops/202375", "https://data.delijn.be/stops/203375"], ["https://data.delijn.be/stops/208361", "https://data.delijn.be/stops/208782"], ["https://data.delijn.be/stops/101589", "https://data.delijn.be/stops/105765"], ["https://data.delijn.be/stops/308694", "https://data.delijn.be/stops/308815"], ["https://data.delijn.be/stops/103860", "https://data.delijn.be/stops/106060"], ["https://data.delijn.be/stops/201895", "https://data.delijn.be/stops/202905"], ["https://data.delijn.be/stops/502032", "https://data.delijn.be/stops/502617"], ["https://data.delijn.be/stops/403923", "https://data.delijn.be/stops/404432"], ["https://data.delijn.be/stops/304454", "https://data.delijn.be/stops/307696"], ["https://data.delijn.be/stops/508347", "https://data.delijn.be/stops/510022"], ["https://data.delijn.be/stops/104409", "https://data.delijn.be/stops/204622"], ["https://data.delijn.be/stops/403237", "https://data.delijn.be/stops/403471"], ["https://data.delijn.be/stops/301967", "https://data.delijn.be/stops/307225"], ["https://data.delijn.be/stops/304451", "https://data.delijn.be/stops/306064"], ["https://data.delijn.be/stops/502713", "https://data.delijn.be/stops/505053"], ["https://data.delijn.be/stops/507947", "https://data.delijn.be/stops/507955"], ["https://data.delijn.be/stops/402571", "https://data.delijn.be/stops/407845"], ["https://data.delijn.be/stops/401847", "https://data.delijn.be/stops/406232"], ["https://data.delijn.be/stops/304377", "https://data.delijn.be/stops/304426"], ["https://data.delijn.be/stops/101547", "https://data.delijn.be/stops/101552"], ["https://data.delijn.be/stops/501157", "https://data.delijn.be/stops/506142"], ["https://data.delijn.be/stops/407400", "https://data.delijn.be/stops/407470"], ["https://data.delijn.be/stops/302788", "https://data.delijn.be/stops/307456"], ["https://data.delijn.be/stops/103684", "https://data.delijn.be/stops/106222"], ["https://data.delijn.be/stops/400564", "https://data.delijn.be/stops/403165"], ["https://data.delijn.be/stops/306325", "https://data.delijn.be/stops/307621"], ["https://data.delijn.be/stops/401574", "https://data.delijn.be/stops/401575"], ["https://data.delijn.be/stops/305624", "https://data.delijn.be/stops/308377"], ["https://data.delijn.be/stops/206338", "https://data.delijn.be/stops/207709"], ["https://data.delijn.be/stops/308146", "https://data.delijn.be/stops/308163"], ["https://data.delijn.be/stops/101802", "https://data.delijn.be/stops/105745"], ["https://data.delijn.be/stops/101483", "https://data.delijn.be/stops/108324"], ["https://data.delijn.be/stops/202715", "https://data.delijn.be/stops/203715"], ["https://data.delijn.be/stops/108511", "https://data.delijn.be/stops/108512"], ["https://data.delijn.be/stops/101531", "https://data.delijn.be/stops/109109"], ["https://data.delijn.be/stops/303746", "https://data.delijn.be/stops/303750"], ["https://data.delijn.be/stops/101519", "https://data.delijn.be/stops/109049"], ["https://data.delijn.be/stops/202739", "https://data.delijn.be/stops/209740"], ["https://data.delijn.be/stops/503784", "https://data.delijn.be/stops/508784"], ["https://data.delijn.be/stops/502190", "https://data.delijn.be/stops/502203"], ["https://data.delijn.be/stops/205698", "https://data.delijn.be/stops/205699"], ["https://data.delijn.be/stops/502820", "https://data.delijn.be/stops/502821"], ["https://data.delijn.be/stops/303016", "https://data.delijn.be/stops/303034"], ["https://data.delijn.be/stops/208055", "https://data.delijn.be/stops/209055"], ["https://data.delijn.be/stops/400080", "https://data.delijn.be/stops/400081"], ["https://data.delijn.be/stops/402813", "https://data.delijn.be/stops/409039"], ["https://data.delijn.be/stops/101186", "https://data.delijn.be/stops/106773"], ["https://data.delijn.be/stops/402681", "https://data.delijn.be/stops/402725"], ["https://data.delijn.be/stops/201556", "https://data.delijn.be/stops/201559"], ["https://data.delijn.be/stops/107266", "https://data.delijn.be/stops/109723"], ["https://data.delijn.be/stops/208696", "https://data.delijn.be/stops/208700"], ["https://data.delijn.be/stops/107639", "https://data.delijn.be/stops/109614"], ["https://data.delijn.be/stops/501092", "https://data.delijn.be/stops/501225"], ["https://data.delijn.be/stops/307410", "https://data.delijn.be/stops/307414"], ["https://data.delijn.be/stops/505789", "https://data.delijn.be/stops/508116"], ["https://data.delijn.be/stops/201093", "https://data.delijn.be/stops/202895"], ["https://data.delijn.be/stops/400837", "https://data.delijn.be/stops/404378"], ["https://data.delijn.be/stops/410006", "https://data.delijn.be/stops/410007"], ["https://data.delijn.be/stops/502485", "https://data.delijn.be/stops/505664"], ["https://data.delijn.be/stops/404360", "https://data.delijn.be/stops/408796"], ["https://data.delijn.be/stops/102024", "https://data.delijn.be/stops/105743"], ["https://data.delijn.be/stops/301987", "https://data.delijn.be/stops/301999"], ["https://data.delijn.be/stops/403597", "https://data.delijn.be/stops/403609"], ["https://data.delijn.be/stops/503395", "https://data.delijn.be/stops/509907"], ["https://data.delijn.be/stops/301744", "https://data.delijn.be/stops/301746"], ["https://data.delijn.be/stops/407613", "https://data.delijn.be/stops/409878"], ["https://data.delijn.be/stops/109916", "https://data.delijn.be/stops/109917"], ["https://data.delijn.be/stops/106273", "https://data.delijn.be/stops/109630"], ["https://data.delijn.be/stops/408904", "https://data.delijn.be/stops/408912"], ["https://data.delijn.be/stops/105846", "https://data.delijn.be/stops/105847"], ["https://data.delijn.be/stops/503370", "https://data.delijn.be/stops/508407"], ["https://data.delijn.be/stops/507690", "https://data.delijn.be/stops/508822"], ["https://data.delijn.be/stops/505978", "https://data.delijn.be/stops/508669"], ["https://data.delijn.be/stops/503760", "https://data.delijn.be/stops/504743"], ["https://data.delijn.be/stops/108989", "https://data.delijn.be/stops/109092"], ["https://data.delijn.be/stops/208265", "https://data.delijn.be/stops/209847"], ["https://data.delijn.be/stops/207844", "https://data.delijn.be/stops/207845"], ["https://data.delijn.be/stops/205724", "https://data.delijn.be/stops/205725"], ["https://data.delijn.be/stops/306862", "https://data.delijn.be/stops/307947"], ["https://data.delijn.be/stops/204150", "https://data.delijn.be/stops/204784"], ["https://data.delijn.be/stops/208134", "https://data.delijn.be/stops/209134"], ["https://data.delijn.be/stops/202980", "https://data.delijn.be/stops/203980"], ["https://data.delijn.be/stops/105608", "https://data.delijn.be/stops/105611"], ["https://data.delijn.be/stops/400703", "https://data.delijn.be/stops/404310"], ["https://data.delijn.be/stops/505960", "https://data.delijn.be/stops/509560"], ["https://data.delijn.be/stops/505675", "https://data.delijn.be/stops/505679"], ["https://data.delijn.be/stops/507410", "https://data.delijn.be/stops/507681"], ["https://data.delijn.be/stops/407978", "https://data.delijn.be/stops/408166"], ["https://data.delijn.be/stops/200513", "https://data.delijn.be/stops/201514"], ["https://data.delijn.be/stops/505367", "https://data.delijn.be/stops/505975"], ["https://data.delijn.be/stops/109216", "https://data.delijn.be/stops/109218"], ["https://data.delijn.be/stops/400259", "https://data.delijn.be/stops/400267"], ["https://data.delijn.be/stops/301801", "https://data.delijn.be/stops/301823"], ["https://data.delijn.be/stops/304821", "https://data.delijn.be/stops/304826"], ["https://data.delijn.be/stops/209054", "https://data.delijn.be/stops/209056"], ["https://data.delijn.be/stops/200351", "https://data.delijn.be/stops/201014"], ["https://data.delijn.be/stops/505721", "https://data.delijn.be/stops/507700"], ["https://data.delijn.be/stops/103773", "https://data.delijn.be/stops/106504"], ["https://data.delijn.be/stops/501243", "https://data.delijn.be/stops/506242"], ["https://data.delijn.be/stops/106531", "https://data.delijn.be/stops/106534"], ["https://data.delijn.be/stops/505173", "https://data.delijn.be/stops/507345"], ["https://data.delijn.be/stops/209145", "https://data.delijn.be/stops/209698"], ["https://data.delijn.be/stops/204578", "https://data.delijn.be/stops/206273"], ["https://data.delijn.be/stops/208747", "https://data.delijn.be/stops/209415"], ["https://data.delijn.be/stops/106505", "https://data.delijn.be/stops/106508"], ["https://data.delijn.be/stops/305257", "https://data.delijn.be/stops/305258"], ["https://data.delijn.be/stops/506365", "https://data.delijn.be/stops/506368"], ["https://data.delijn.be/stops/504335", "https://data.delijn.be/stops/504633"], ["https://data.delijn.be/stops/207950", "https://data.delijn.be/stops/216016"], ["https://data.delijn.be/stops/304852", "https://data.delijn.be/stops/304864"], ["https://data.delijn.be/stops/301466", "https://data.delijn.be/stops/305659"], ["https://data.delijn.be/stops/301969", "https://data.delijn.be/stops/301982"], ["https://data.delijn.be/stops/201428", "https://data.delijn.be/stops/201429"], ["https://data.delijn.be/stops/407157", "https://data.delijn.be/stops/407179"], ["https://data.delijn.be/stops/101891", "https://data.delijn.be/stops/108380"], ["https://data.delijn.be/stops/408506", "https://data.delijn.be/stops/408566"], ["https://data.delijn.be/stops/201867", "https://data.delijn.be/stops/203083"], ["https://data.delijn.be/stops/301103", "https://data.delijn.be/stops/306337"], ["https://data.delijn.be/stops/303248", "https://data.delijn.be/stops/303249"], ["https://data.delijn.be/stops/503073", "https://data.delijn.be/stops/503365"], ["https://data.delijn.be/stops/300850", "https://data.delijn.be/stops/301793"], ["https://data.delijn.be/stops/303419", "https://data.delijn.be/stops/305046"], ["https://data.delijn.be/stops/507948", "https://data.delijn.be/stops/507957"], ["https://data.delijn.be/stops/204747", "https://data.delijn.be/stops/205739"], ["https://data.delijn.be/stops/106150", "https://data.delijn.be/stops/106442"], ["https://data.delijn.be/stops/204558", "https://data.delijn.be/stops/205033"], ["https://data.delijn.be/stops/405817", "https://data.delijn.be/stops/406826"], ["https://data.delijn.be/stops/502357", "https://data.delijn.be/stops/502798"], ["https://data.delijn.be/stops/503060", "https://data.delijn.be/stops/504293"], ["https://data.delijn.be/stops/505712", "https://data.delijn.be/stops/506053"], ["https://data.delijn.be/stops/404488", "https://data.delijn.be/stops/404519"], ["https://data.delijn.be/stops/206583", "https://data.delijn.be/stops/207583"], ["https://data.delijn.be/stops/103723", "https://data.delijn.be/stops/108377"], ["https://data.delijn.be/stops/400737", "https://data.delijn.be/stops/400938"], ["https://data.delijn.be/stops/305494", "https://data.delijn.be/stops/305501"], ["https://data.delijn.be/stops/204995", "https://data.delijn.be/stops/303866"], ["https://data.delijn.be/stops/205682", "https://data.delijn.be/stops/205683"], ["https://data.delijn.be/stops/102424", "https://data.delijn.be/stops/105145"], ["https://data.delijn.be/stops/401492", "https://data.delijn.be/stops/401512"], ["https://data.delijn.be/stops/300540", "https://data.delijn.be/stops/303220"], ["https://data.delijn.be/stops/506259", "https://data.delijn.be/stops/506684"], ["https://data.delijn.be/stops/205654", "https://data.delijn.be/stops/205830"], ["https://data.delijn.be/stops/102824", "https://data.delijn.be/stops/102826"], ["https://data.delijn.be/stops/202858", "https://data.delijn.be/stops/203858"], ["https://data.delijn.be/stops/408898", "https://data.delijn.be/stops/408904"], ["https://data.delijn.be/stops/401818", "https://data.delijn.be/stops/406893"], ["https://data.delijn.be/stops/203162", "https://data.delijn.be/stops/203500"], ["https://data.delijn.be/stops/303849", "https://data.delijn.be/stops/303962"], ["https://data.delijn.be/stops/206041", "https://data.delijn.be/stops/207041"], ["https://data.delijn.be/stops/503676", "https://data.delijn.be/stops/503953"], ["https://data.delijn.be/stops/300203", "https://data.delijn.be/stops/300204"], ["https://data.delijn.be/stops/106711", "https://data.delijn.be/stops/106713"], ["https://data.delijn.be/stops/201754", "https://data.delijn.be/stops/209967"], ["https://data.delijn.be/stops/503396", "https://data.delijn.be/stops/508409"], ["https://data.delijn.be/stops/505025", "https://data.delijn.be/stops/505584"], ["https://data.delijn.be/stops/502385", "https://data.delijn.be/stops/502401"], ["https://data.delijn.be/stops/301004", "https://data.delijn.be/stops/304722"], ["https://data.delijn.be/stops/201378", "https://data.delijn.be/stops/201379"], ["https://data.delijn.be/stops/302083", "https://data.delijn.be/stops/306378"], ["https://data.delijn.be/stops/508393", "https://data.delijn.be/stops/509767"], ["https://data.delijn.be/stops/302879", "https://data.delijn.be/stops/302910"], ["https://data.delijn.be/stops/102661", "https://data.delijn.be/stops/108742"], ["https://data.delijn.be/stops/104310", "https://data.delijn.be/stops/104315"], ["https://data.delijn.be/stops/405731", "https://data.delijn.be/stops/405734"], ["https://data.delijn.be/stops/501134", "https://data.delijn.be/stops/501745"], ["https://data.delijn.be/stops/503090", "https://data.delijn.be/stops/503091"], ["https://data.delijn.be/stops/101276", "https://data.delijn.be/stops/205489"], ["https://data.delijn.be/stops/400873", "https://data.delijn.be/stops/400896"], ["https://data.delijn.be/stops/108701", "https://data.delijn.be/stops/108703"], ["https://data.delijn.be/stops/503603", "https://data.delijn.be/stops/508603"], ["https://data.delijn.be/stops/300160", "https://data.delijn.be/stops/300221"], ["https://data.delijn.be/stops/200566", "https://data.delijn.be/stops/201566"], ["https://data.delijn.be/stops/202214", "https://data.delijn.be/stops/210056"], ["https://data.delijn.be/stops/208095", "https://data.delijn.be/stops/209095"], ["https://data.delijn.be/stops/501309", "https://data.delijn.be/stops/506309"], ["https://data.delijn.be/stops/503108", "https://data.delijn.be/stops/504623"], ["https://data.delijn.be/stops/307232", "https://data.delijn.be/stops/307233"], ["https://data.delijn.be/stops/406097", "https://data.delijn.be/stops/406115"], ["https://data.delijn.be/stops/504023", "https://data.delijn.be/stops/505212"], ["https://data.delijn.be/stops/304248", "https://data.delijn.be/stops/304267"], ["https://data.delijn.be/stops/501445", "https://data.delijn.be/stops/501446"], ["https://data.delijn.be/stops/302467", "https://data.delijn.be/stops/305956"], ["https://data.delijn.be/stops/502712", "https://data.delijn.be/stops/507712"], ["https://data.delijn.be/stops/510006", "https://data.delijn.be/stops/510007"], ["https://data.delijn.be/stops/404314", "https://data.delijn.be/stops/404315"], ["https://data.delijn.be/stops/207760", "https://data.delijn.be/stops/207779"], ["https://data.delijn.be/stops/302051", "https://data.delijn.be/stops/302079"], ["https://data.delijn.be/stops/108653", "https://data.delijn.be/stops/306596"], ["https://data.delijn.be/stops/101525", "https://data.delijn.be/stops/101640"], ["https://data.delijn.be/stops/503322", "https://data.delijn.be/stops/503323"], ["https://data.delijn.be/stops/107352", "https://data.delijn.be/stops/108176"], ["https://data.delijn.be/stops/301652", "https://data.delijn.be/stops/301653"], ["https://data.delijn.be/stops/504677", "https://data.delijn.be/stops/505434"], ["https://data.delijn.be/stops/209368", "https://data.delijn.be/stops/209369"], ["https://data.delijn.be/stops/303709", "https://data.delijn.be/stops/307258"], ["https://data.delijn.be/stops/402357", "https://data.delijn.be/stops/410094"], ["https://data.delijn.be/stops/301458", "https://data.delijn.be/stops/305665"], ["https://data.delijn.be/stops/106680", "https://data.delijn.be/stops/109122"], ["https://data.delijn.be/stops/406456", "https://data.delijn.be/stops/406495"], ["https://data.delijn.be/stops/104475", "https://data.delijn.be/stops/105700"], ["https://data.delijn.be/stops/505405", "https://data.delijn.be/stops/506765"], ["https://data.delijn.be/stops/106912", "https://data.delijn.be/stops/107253"], ["https://data.delijn.be/stops/404703", "https://data.delijn.be/stops/404713"], ["https://data.delijn.be/stops/401765", "https://data.delijn.be/stops/401872"], ["https://data.delijn.be/stops/206127", "https://data.delijn.be/stops/206722"], ["https://data.delijn.be/stops/207685", "https://data.delijn.be/stops/216012"], ["https://data.delijn.be/stops/304391", "https://data.delijn.be/stops/304408"], ["https://data.delijn.be/stops/106398", "https://data.delijn.be/stops/106574"], ["https://data.delijn.be/stops/300857", "https://data.delijn.be/stops/307444"], ["https://data.delijn.be/stops/409046", "https://data.delijn.be/stops/409443"], ["https://data.delijn.be/stops/403808", "https://data.delijn.be/stops/403809"], ["https://data.delijn.be/stops/206013", "https://data.delijn.be/stops/207016"], ["https://data.delijn.be/stops/108912", "https://data.delijn.be/stops/108914"], ["https://data.delijn.be/stops/407804", "https://data.delijn.be/stops/407805"], ["https://data.delijn.be/stops/104446", "https://data.delijn.be/stops/303880"], ["https://data.delijn.be/stops/402370", "https://data.delijn.be/stops/402501"], ["https://data.delijn.be/stops/201778", "https://data.delijn.be/stops/208250"], ["https://data.delijn.be/stops/300547", "https://data.delijn.be/stops/300618"], ["https://data.delijn.be/stops/104016", "https://data.delijn.be/stops/104018"], ["https://data.delijn.be/stops/300684", "https://data.delijn.be/stops/300685"], ["https://data.delijn.be/stops/503109", "https://data.delijn.be/stops/503416"], ["https://data.delijn.be/stops/304892", "https://data.delijn.be/stops/304900"], ["https://data.delijn.be/stops/105770", "https://data.delijn.be/stops/105780"], ["https://data.delijn.be/stops/205100", "https://data.delijn.be/stops/205696"], ["https://data.delijn.be/stops/400672", "https://data.delijn.be/stops/402620"], ["https://data.delijn.be/stops/502338", "https://data.delijn.be/stops/505009"], ["https://data.delijn.be/stops/502425", "https://data.delijn.be/stops/507308"], ["https://data.delijn.be/stops/501550", "https://data.delijn.be/stops/506635"], ["https://data.delijn.be/stops/401451", "https://data.delijn.be/stops/401553"], ["https://data.delijn.be/stops/201918", "https://data.delijn.be/stops/207833"], ["https://data.delijn.be/stops/207111", "https://data.delijn.be/stops/207112"], ["https://data.delijn.be/stops/106227", "https://data.delijn.be/stops/109126"], ["https://data.delijn.be/stops/109266", "https://data.delijn.be/stops/109267"], ["https://data.delijn.be/stops/401543", "https://data.delijn.be/stops/402038"], ["https://data.delijn.be/stops/204369", "https://data.delijn.be/stops/205182"], ["https://data.delijn.be/stops/501213", "https://data.delijn.be/stops/506213"], ["https://data.delijn.be/stops/200761", "https://data.delijn.be/stops/209305"], ["https://data.delijn.be/stops/301326", "https://data.delijn.be/stops/306650"], ["https://data.delijn.be/stops/503462", "https://data.delijn.be/stops/503473"], ["https://data.delijn.be/stops/304555", "https://data.delijn.be/stops/304558"], ["https://data.delijn.be/stops/303531", "https://data.delijn.be/stops/303533"], ["https://data.delijn.be/stops/304798", "https://data.delijn.be/stops/306643"], ["https://data.delijn.be/stops/300455", "https://data.delijn.be/stops/305039"], ["https://data.delijn.be/stops/402071", "https://data.delijn.be/stops/405583"], ["https://data.delijn.be/stops/407398", "https://data.delijn.be/stops/407422"], ["https://data.delijn.be/stops/303462", "https://data.delijn.be/stops/303477"], ["https://data.delijn.be/stops/206368", "https://data.delijn.be/stops/207368"], ["https://data.delijn.be/stops/505669", "https://data.delijn.be/stops/505982"], ["https://data.delijn.be/stops/109808", "https://data.delijn.be/stops/109812"], ["https://data.delijn.be/stops/400501", "https://data.delijn.be/stops/405558"], ["https://data.delijn.be/stops/503065", "https://data.delijn.be/stops/504850"], ["https://data.delijn.be/stops/400864", "https://data.delijn.be/stops/409530"], ["https://data.delijn.be/stops/205317", "https://data.delijn.be/stops/205362"], ["https://data.delijn.be/stops/102213", "https://data.delijn.be/stops/103314"], ["https://data.delijn.be/stops/301824", "https://data.delijn.be/stops/301844"], ["https://data.delijn.be/stops/304857", "https://data.delijn.be/stops/305507"], ["https://data.delijn.be/stops/502474", "https://data.delijn.be/stops/505808"], ["https://data.delijn.be/stops/504592", "https://data.delijn.be/stops/504597"], ["https://data.delijn.be/stops/506107", "https://data.delijn.be/stops/506503"], ["https://data.delijn.be/stops/405797", "https://data.delijn.be/stops/406386"], ["https://data.delijn.be/stops/207357", "https://data.delijn.be/stops/207733"], ["https://data.delijn.be/stops/104028", "https://data.delijn.be/stops/107312"], ["https://data.delijn.be/stops/106178", "https://data.delijn.be/stops/106179"], ["https://data.delijn.be/stops/407231", "https://data.delijn.be/stops/408799"], ["https://data.delijn.be/stops/307073", "https://data.delijn.be/stops/307074"], ["https://data.delijn.be/stops/208608", "https://data.delijn.be/stops/209607"], ["https://data.delijn.be/stops/304942", "https://data.delijn.be/stops/304944"], ["https://data.delijn.be/stops/101757", "https://data.delijn.be/stops/103646"], ["https://data.delijn.be/stops/209591", "https://data.delijn.be/stops/301420"], ["https://data.delijn.be/stops/302572", "https://data.delijn.be/stops/303299"], ["https://data.delijn.be/stops/200860", "https://data.delijn.be/stops/201955"], ["https://data.delijn.be/stops/102969", "https://data.delijn.be/stops/106041"], ["https://data.delijn.be/stops/502514", "https://data.delijn.be/stops/502925"], ["https://data.delijn.be/stops/402407", "https://data.delijn.be/stops/402418"], ["https://data.delijn.be/stops/102737", "https://data.delijn.be/stops/105521"], ["https://data.delijn.be/stops/503895", "https://data.delijn.be/stops/508895"], ["https://data.delijn.be/stops/305696", "https://data.delijn.be/stops/305700"], ["https://data.delijn.be/stops/101666", "https://data.delijn.be/stops/106488"], ["https://data.delijn.be/stops/308138", "https://data.delijn.be/stops/308139"], ["https://data.delijn.be/stops/300435", "https://data.delijn.be/stops/301275"], ["https://data.delijn.be/stops/503672", "https://data.delijn.be/stops/503674"], ["https://data.delijn.be/stops/201601", "https://data.delijn.be/stops/201843"], ["https://data.delijn.be/stops/206722", "https://data.delijn.be/stops/207087"], ["https://data.delijn.be/stops/102431", "https://data.delijn.be/stops/109108"], ["https://data.delijn.be/stops/203636", "https://data.delijn.be/stops/205070"], ["https://data.delijn.be/stops/202933", "https://data.delijn.be/stops/208724"], ["https://data.delijn.be/stops/403489", "https://data.delijn.be/stops/403490"], ["https://data.delijn.be/stops/305428", "https://data.delijn.be/stops/305429"], ["https://data.delijn.be/stops/302724", "https://data.delijn.be/stops/307337"], ["https://data.delijn.be/stops/103609", "https://data.delijn.be/stops/106027"], ["https://data.delijn.be/stops/109875", "https://data.delijn.be/stops/109876"], ["https://data.delijn.be/stops/101903", "https://data.delijn.be/stops/101904"], ["https://data.delijn.be/stops/103290", "https://data.delijn.be/stops/103354"], ["https://data.delijn.be/stops/507943", "https://data.delijn.be/stops/507958"], ["https://data.delijn.be/stops/304848", "https://data.delijn.be/stops/304865"], ["https://data.delijn.be/stops/103001", "https://data.delijn.be/stops/105176"], ["https://data.delijn.be/stops/501424", "https://data.delijn.be/stops/501633"], ["https://data.delijn.be/stops/102112", "https://data.delijn.be/stops/102113"], ["https://data.delijn.be/stops/504255", "https://data.delijn.be/stops/505992"], ["https://data.delijn.be/stops/400943", "https://data.delijn.be/stops/406946"], ["https://data.delijn.be/stops/500924", "https://data.delijn.be/stops/505637"], ["https://data.delijn.be/stops/302980", "https://data.delijn.be/stops/302981"], ["https://data.delijn.be/stops/207309", "https://data.delijn.be/stops/207392"], ["https://data.delijn.be/stops/504346", "https://data.delijn.be/stops/509353"], ["https://data.delijn.be/stops/405906", "https://data.delijn.be/stops/405965"], ["https://data.delijn.be/stops/302475", "https://data.delijn.be/stops/308832"], ["https://data.delijn.be/stops/108086", "https://data.delijn.be/stops/108447"], ["https://data.delijn.be/stops/406041", "https://data.delijn.be/stops/406142"], ["https://data.delijn.be/stops/307241", "https://data.delijn.be/stops/307251"], ["https://data.delijn.be/stops/504279", "https://data.delijn.be/stops/509037"], ["https://data.delijn.be/stops/301844", "https://data.delijn.be/stops/305981"], ["https://data.delijn.be/stops/504685", "https://data.delijn.be/stops/509224"], ["https://data.delijn.be/stops/201478", "https://data.delijn.be/stops/201894"], ["https://data.delijn.be/stops/200062", "https://data.delijn.be/stops/200271"], ["https://data.delijn.be/stops/107323", "https://data.delijn.be/stops/108823"], ["https://data.delijn.be/stops/405865", "https://data.delijn.be/stops/409425"], ["https://data.delijn.be/stops/204187", "https://data.delijn.be/stops/205228"], ["https://data.delijn.be/stops/108150", "https://data.delijn.be/stops/108151"], ["https://data.delijn.be/stops/101900", "https://data.delijn.be/stops/106005"], ["https://data.delijn.be/stops/502039", "https://data.delijn.be/stops/505203"], ["https://data.delijn.be/stops/105542", "https://data.delijn.be/stops/106249"], ["https://data.delijn.be/stops/102736", "https://data.delijn.be/stops/105523"], ["https://data.delijn.be/stops/504040", "https://data.delijn.be/stops/505787"], ["https://data.delijn.be/stops/503692", "https://data.delijn.be/stops/503991"], ["https://data.delijn.be/stops/402280", "https://data.delijn.be/stops/402281"], ["https://data.delijn.be/stops/206361", "https://data.delijn.be/stops/207746"], ["https://data.delijn.be/stops/502519", "https://data.delijn.be/stops/507519"], ["https://data.delijn.be/stops/201909", "https://data.delijn.be/stops/203498"], ["https://data.delijn.be/stops/306715", "https://data.delijn.be/stops/306716"], ["https://data.delijn.be/stops/400920", "https://data.delijn.be/stops/400921"], ["https://data.delijn.be/stops/402794", "https://data.delijn.be/stops/402795"], ["https://data.delijn.be/stops/403776", "https://data.delijn.be/stops/403793"], ["https://data.delijn.be/stops/402290", "https://data.delijn.be/stops/402291"], ["https://data.delijn.be/stops/102456", "https://data.delijn.be/stops/102457"], ["https://data.delijn.be/stops/206178", "https://data.delijn.be/stops/303858"], ["https://data.delijn.be/stops/202479", "https://data.delijn.be/stops/203479"], ["https://data.delijn.be/stops/403323", "https://data.delijn.be/stops/407595"], ["https://data.delijn.be/stops/409115", "https://data.delijn.be/stops/409811"], ["https://data.delijn.be/stops/400673", "https://data.delijn.be/stops/400677"], ["https://data.delijn.be/stops/407698", "https://data.delijn.be/stops/407699"], ["https://data.delijn.be/stops/502025", "https://data.delijn.be/stops/505768"], ["https://data.delijn.be/stops/201637", "https://data.delijn.be/stops/201940"], ["https://data.delijn.be/stops/301184", "https://data.delijn.be/stops/306004"], ["https://data.delijn.be/stops/508506", "https://data.delijn.be/stops/508510"], ["https://data.delijn.be/stops/206263", "https://data.delijn.be/stops/206268"], ["https://data.delijn.be/stops/102680", "https://data.delijn.be/stops/102681"], ["https://data.delijn.be/stops/503734", "https://data.delijn.be/stops/508690"], ["https://data.delijn.be/stops/304042", "https://data.delijn.be/stops/304043"], ["https://data.delijn.be/stops/300176", "https://data.delijn.be/stops/300221"], ["https://data.delijn.be/stops/308209", "https://data.delijn.be/stops/308218"], ["https://data.delijn.be/stops/504580", "https://data.delijn.be/stops/509580"], ["https://data.delijn.be/stops/300279", "https://data.delijn.be/stops/307475"], ["https://data.delijn.be/stops/302335", "https://data.delijn.be/stops/308357"], ["https://data.delijn.be/stops/408327", "https://data.delijn.be/stops/408335"], ["https://data.delijn.be/stops/301475", "https://data.delijn.be/stops/301488"], ["https://data.delijn.be/stops/301719", "https://data.delijn.be/stops/307889"], ["https://data.delijn.be/stops/202368", "https://data.delijn.be/stops/203368"], ["https://data.delijn.be/stops/208686", "https://data.delijn.be/stops/208691"], ["https://data.delijn.be/stops/505238", "https://data.delijn.be/stops/505341"], ["https://data.delijn.be/stops/303376", "https://data.delijn.be/stops/308869"], ["https://data.delijn.be/stops/206671", "https://data.delijn.be/stops/208658"], ["https://data.delijn.be/stops/206033", "https://data.delijn.be/stops/206901"], ["https://data.delijn.be/stops/206946", "https://data.delijn.be/stops/208073"], ["https://data.delijn.be/stops/202794", "https://data.delijn.be/stops/203794"], ["https://data.delijn.be/stops/308294", "https://data.delijn.be/stops/308295"], ["https://data.delijn.be/stops/401454", "https://data.delijn.be/stops/407120"], ["https://data.delijn.be/stops/103820", "https://data.delijn.be/stops/104260"], ["https://data.delijn.be/stops/301180", "https://data.delijn.be/stops/301256"], ["https://data.delijn.be/stops/408991", "https://data.delijn.be/stops/408992"], ["https://data.delijn.be/stops/503143", "https://data.delijn.be/stops/503144"], ["https://data.delijn.be/stops/503450", "https://data.delijn.be/stops/508197"], ["https://data.delijn.be/stops/206058", "https://data.delijn.be/stops/207967"], ["https://data.delijn.be/stops/504252", "https://data.delijn.be/stops/509369"], ["https://data.delijn.be/stops/300274", "https://data.delijn.be/stops/306286"], ["https://data.delijn.be/stops/200082", "https://data.delijn.be/stops/209291"], ["https://data.delijn.be/stops/200561", "https://data.delijn.be/stops/201564"], ["https://data.delijn.be/stops/503965", "https://data.delijn.be/stops/508246"], ["https://data.delijn.be/stops/402357", "https://data.delijn.be/stops/402375"], ["https://data.delijn.be/stops/209682", "https://data.delijn.be/stops/209683"], ["https://data.delijn.be/stops/300621", "https://data.delijn.be/stops/300622"], ["https://data.delijn.be/stops/101161", "https://data.delijn.be/stops/101162"], ["https://data.delijn.be/stops/303575", "https://data.delijn.be/stops/307290"], ["https://data.delijn.be/stops/506244", "https://data.delijn.be/stops/506425"], ["https://data.delijn.be/stops/300023", "https://data.delijn.be/stops/307000"], ["https://data.delijn.be/stops/302595", "https://data.delijn.be/stops/303612"], ["https://data.delijn.be/stops/302140", "https://data.delijn.be/stops/308106"], ["https://data.delijn.be/stops/405918", "https://data.delijn.be/stops/405993"], ["https://data.delijn.be/stops/403699", "https://data.delijn.be/stops/407294"], ["https://data.delijn.be/stops/205047", "https://data.delijn.be/stops/205302"], ["https://data.delijn.be/stops/406243", "https://data.delijn.be/stops/408416"], ["https://data.delijn.be/stops/103260", "https://data.delijn.be/stops/107705"], ["https://data.delijn.be/stops/102013", "https://data.delijn.be/stops/104114"], ["https://data.delijn.be/stops/303715", "https://data.delijn.be/stops/303717"], ["https://data.delijn.be/stops/109323", "https://data.delijn.be/stops/306862"], ["https://data.delijn.be/stops/208710", "https://data.delijn.be/stops/208712"], ["https://data.delijn.be/stops/104557", "https://data.delijn.be/stops/104558"], ["https://data.delijn.be/stops/301197", "https://data.delijn.be/stops/302411"], ["https://data.delijn.be/stops/104129", "https://data.delijn.be/stops/107485"], ["https://data.delijn.be/stops/219080", "https://data.delijn.be/stops/304659"], ["https://data.delijn.be/stops/206164", "https://data.delijn.be/stops/308797"], ["https://data.delijn.be/stops/109356", "https://data.delijn.be/stops/109357"], ["https://data.delijn.be/stops/305015", "https://data.delijn.be/stops/305016"], ["https://data.delijn.be/stops/108071", "https://data.delijn.be/stops/108137"], ["https://data.delijn.be/stops/305388", "https://data.delijn.be/stops/333234"], ["https://data.delijn.be/stops/101888", "https://data.delijn.be/stops/109995"], ["https://data.delijn.be/stops/400611", "https://data.delijn.be/stops/308155"], ["https://data.delijn.be/stops/306385", "https://data.delijn.be/stops/307220"], ["https://data.delijn.be/stops/508880", "https://data.delijn.be/stops/508881"], ["https://data.delijn.be/stops/406560", "https://data.delijn.be/stops/406561"], ["https://data.delijn.be/stops/401502", "https://data.delijn.be/stops/401503"], ["https://data.delijn.be/stops/504255", "https://data.delijn.be/stops/504296"], ["https://data.delijn.be/stops/504378", "https://data.delijn.be/stops/504379"], ["https://data.delijn.be/stops/504628", "https://data.delijn.be/stops/504631"], ["https://data.delijn.be/stops/503028", "https://data.delijn.be/stops/507960"], ["https://data.delijn.be/stops/207426", "https://data.delijn.be/stops/207832"], ["https://data.delijn.be/stops/300474", "https://data.delijn.be/stops/304974"], ["https://data.delijn.be/stops/502195", "https://data.delijn.be/stops/507195"], ["https://data.delijn.be/stops/303580", "https://data.delijn.be/stops/306396"], ["https://data.delijn.be/stops/200030", "https://data.delijn.be/stops/201031"], ["https://data.delijn.be/stops/405618", "https://data.delijn.be/stops/405619"], ["https://data.delijn.be/stops/204022", "https://data.delijn.be/stops/206283"], ["https://data.delijn.be/stops/105679", "https://data.delijn.be/stops/105683"], ["https://data.delijn.be/stops/306602", "https://data.delijn.be/stops/306604"], ["https://data.delijn.be/stops/203632", "https://data.delijn.be/stops/203634"], ["https://data.delijn.be/stops/105749", "https://data.delijn.be/stops/105751"], ["https://data.delijn.be/stops/206350", "https://data.delijn.be/stops/207689"], ["https://data.delijn.be/stops/202583", "https://data.delijn.be/stops/203576"], ["https://data.delijn.be/stops/206344", "https://data.delijn.be/stops/206688"], ["https://data.delijn.be/stops/402653", "https://data.delijn.be/stops/405485"], ["https://data.delijn.be/stops/503459", "https://data.delijn.be/stops/504801"], ["https://data.delijn.be/stops/200386", "https://data.delijn.be/stops/201649"], ["https://data.delijn.be/stops/301901", "https://data.delijn.be/stops/306007"], ["https://data.delijn.be/stops/501005", "https://data.delijn.be/stops/501595"], ["https://data.delijn.be/stops/406131", "https://data.delijn.be/stops/406133"], ["https://data.delijn.be/stops/206487", "https://data.delijn.be/stops/207487"], ["https://data.delijn.be/stops/505368", "https://data.delijn.be/stops/509055"], ["https://data.delijn.be/stops/400444", "https://data.delijn.be/stops/401199"], ["https://data.delijn.be/stops/503863", "https://data.delijn.be/stops/507719"], ["https://data.delijn.be/stops/103270", "https://data.delijn.be/stops/103275"], ["https://data.delijn.be/stops/308833", "https://data.delijn.be/stops/308834"], ["https://data.delijn.be/stops/402172", "https://data.delijn.be/stops/402173"], ["https://data.delijn.be/stops/203994", "https://data.delijn.be/stops/203997"], ["https://data.delijn.be/stops/509337", "https://data.delijn.be/stops/509338"], ["https://data.delijn.be/stops/308791", "https://data.delijn.be/stops/308792"], ["https://data.delijn.be/stops/406331", "https://data.delijn.be/stops/410394"], ["https://data.delijn.be/stops/403986", "https://data.delijn.be/stops/404033"], ["https://data.delijn.be/stops/206420", "https://data.delijn.be/stops/217012"], ["https://data.delijn.be/stops/302234", "https://data.delijn.be/stops/302236"], ["https://data.delijn.be/stops/407933", "https://data.delijn.be/stops/407934"], ["https://data.delijn.be/stops/201636", "https://data.delijn.be/stops/210123"], ["https://data.delijn.be/stops/400073", "https://data.delijn.be/stops/409143"], ["https://data.delijn.be/stops/204405", "https://data.delijn.be/stops/205405"], ["https://data.delijn.be/stops/202745", "https://data.delijn.be/stops/202946"], ["https://data.delijn.be/stops/403436", "https://data.delijn.be/stops/403498"], ["https://data.delijn.be/stops/200159", "https://data.delijn.be/stops/201159"], ["https://data.delijn.be/stops/303348", "https://data.delijn.be/stops/303390"], ["https://data.delijn.be/stops/103341", "https://data.delijn.be/stops/103342"], ["https://data.delijn.be/stops/201163", "https://data.delijn.be/stops/201420"], ["https://data.delijn.be/stops/501235", "https://data.delijn.be/stops/506245"], ["https://data.delijn.be/stops/407938", "https://data.delijn.be/stops/410345"], ["https://data.delijn.be/stops/205365", "https://data.delijn.be/stops/205366"], ["https://data.delijn.be/stops/202778", "https://data.delijn.be/stops/203769"], ["https://data.delijn.be/stops/207012", "https://data.delijn.be/stops/217009"], ["https://data.delijn.be/stops/504612", "https://data.delijn.be/stops/509612"], ["https://data.delijn.be/stops/103766", "https://data.delijn.be/stops/108734"], ["https://data.delijn.be/stops/103221", "https://data.delijn.be/stops/104572"], ["https://data.delijn.be/stops/207034", "https://data.delijn.be/stops/207874"], ["https://data.delijn.be/stops/302881", "https://data.delijn.be/stops/307049"], ["https://data.delijn.be/stops/505281", "https://data.delijn.be/stops/505923"], ["https://data.delijn.be/stops/203070", "https://data.delijn.be/stops/205926"], ["https://data.delijn.be/stops/104691", "https://data.delijn.be/stops/107361"], ["https://data.delijn.be/stops/104509", "https://data.delijn.be/stops/107917"], ["https://data.delijn.be/stops/103225", "https://data.delijn.be/stops/108575"], ["https://data.delijn.be/stops/300111", "https://data.delijn.be/stops/306851"], ["https://data.delijn.be/stops/400465", "https://data.delijn.be/stops/400470"], ["https://data.delijn.be/stops/303036", "https://data.delijn.be/stops/305158"], ["https://data.delijn.be/stops/500564", "https://data.delijn.be/stops/500566"], ["https://data.delijn.be/stops/508240", "https://data.delijn.be/stops/508513"], ["https://data.delijn.be/stops/104652", "https://data.delijn.be/stops/308480"], ["https://data.delijn.be/stops/400787", "https://data.delijn.be/stops/409596"], ["https://data.delijn.be/stops/505073", "https://data.delijn.be/stops/505115"], ["https://data.delijn.be/stops/102622", "https://data.delijn.be/stops/102629"], ["https://data.delijn.be/stops/400265", "https://data.delijn.be/stops/406812"], ["https://data.delijn.be/stops/102265", "https://data.delijn.be/stops/109687"], ["https://data.delijn.be/stops/406194", "https://data.delijn.be/stops/406219"], ["https://data.delijn.be/stops/400706", "https://data.delijn.be/stops/400707"], ["https://data.delijn.be/stops/106845", "https://data.delijn.be/stops/106847"], ["https://data.delijn.be/stops/301603", "https://data.delijn.be/stops/304499"], ["https://data.delijn.be/stops/300343", "https://data.delijn.be/stops/300344"], ["https://data.delijn.be/stops/501224", "https://data.delijn.be/stops/505231"], ["https://data.delijn.be/stops/208706", "https://data.delijn.be/stops/209706"], ["https://data.delijn.be/stops/206113", "https://data.delijn.be/stops/207113"], ["https://data.delijn.be/stops/202826", "https://data.delijn.be/stops/202837"], ["https://data.delijn.be/stops/501542", "https://data.delijn.be/stops/507731"], ["https://data.delijn.be/stops/102312", "https://data.delijn.be/stops/106256"], ["https://data.delijn.be/stops/101932", "https://data.delijn.be/stops/106210"], ["https://data.delijn.be/stops/502177", "https://data.delijn.be/stops/505550"], ["https://data.delijn.be/stops/203497", "https://data.delijn.be/stops/209867"], ["https://data.delijn.be/stops/102609", "https://data.delijn.be/stops/105529"], ["https://data.delijn.be/stops/105795", "https://data.delijn.be/stops/105797"], ["https://data.delijn.be/stops/300666", "https://data.delijn.be/stops/300676"], ["https://data.delijn.be/stops/502761", "https://data.delijn.be/stops/507761"], ["https://data.delijn.be/stops/108336", "https://data.delijn.be/stops/108337"], ["https://data.delijn.be/stops/106208", "https://data.delijn.be/stops/109902"], ["https://data.delijn.be/stops/406092", "https://data.delijn.be/stops/406093"], ["https://data.delijn.be/stops/407319", "https://data.delijn.be/stops/407787"], ["https://data.delijn.be/stops/200353", "https://data.delijn.be/stops/201014"], ["https://data.delijn.be/stops/301194", "https://data.delijn.be/stops/301239"], ["https://data.delijn.be/stops/404654", "https://data.delijn.be/stops/404655"], ["https://data.delijn.be/stops/402778", "https://data.delijn.be/stops/402798"], ["https://data.delijn.be/stops/200511", "https://data.delijn.be/stops/201551"], ["https://data.delijn.be/stops/109021", "https://data.delijn.be/stops/109024"], ["https://data.delijn.be/stops/203029", "https://data.delijn.be/stops/203032"], ["https://data.delijn.be/stops/300868", "https://data.delijn.be/stops/302221"], ["https://data.delijn.be/stops/206709", "https://data.delijn.be/stops/206969"], ["https://data.delijn.be/stops/501549", "https://data.delijn.be/stops/501741"], ["https://data.delijn.be/stops/507015", "https://data.delijn.be/stops/508909"], ["https://data.delijn.be/stops/302741", "https://data.delijn.be/stops/306164"], ["https://data.delijn.be/stops/301401", "https://data.delijn.be/stops/301403"], ["https://data.delijn.be/stops/301858", "https://data.delijn.be/stops/301865"], ["https://data.delijn.be/stops/303057", "https://data.delijn.be/stops/304927"], ["https://data.delijn.be/stops/507611", "https://data.delijn.be/stops/509880"], ["https://data.delijn.be/stops/103225", "https://data.delijn.be/stops/103240"], ["https://data.delijn.be/stops/407772", "https://data.delijn.be/stops/408847"], ["https://data.delijn.be/stops/107902", "https://data.delijn.be/stops/107906"], ["https://data.delijn.be/stops/200845", "https://data.delijn.be/stops/200846"], ["https://data.delijn.be/stops/108188", "https://data.delijn.be/stops/108353"], ["https://data.delijn.be/stops/201747", "https://data.delijn.be/stops/202160"], ["https://data.delijn.be/stops/108972", "https://data.delijn.be/stops/109690"], ["https://data.delijn.be/stops/107967", "https://data.delijn.be/stops/108427"], ["https://data.delijn.be/stops/405179", "https://data.delijn.be/stops/405216"], ["https://data.delijn.be/stops/402339", "https://data.delijn.be/stops/410075"], ["https://data.delijn.be/stops/102485", "https://data.delijn.be/stops/107660"], ["https://data.delijn.be/stops/301632", "https://data.delijn.be/stops/303935"], ["https://data.delijn.be/stops/206716", "https://data.delijn.be/stops/206868"], ["https://data.delijn.be/stops/107148", "https://data.delijn.be/stops/108931"], ["https://data.delijn.be/stops/502203", "https://data.delijn.be/stops/507190"], ["https://data.delijn.be/stops/204614", "https://data.delijn.be/stops/205655"], ["https://data.delijn.be/stops/200405", "https://data.delijn.be/stops/201742"], ["https://data.delijn.be/stops/208760", "https://data.delijn.be/stops/208762"], ["https://data.delijn.be/stops/307167", "https://data.delijn.be/stops/307912"], ["https://data.delijn.be/stops/304557", "https://data.delijn.be/stops/307027"], ["https://data.delijn.be/stops/406559", "https://data.delijn.be/stops/406567"], ["https://data.delijn.be/stops/201418", "https://data.delijn.be/stops/208843"], ["https://data.delijn.be/stops/307718", "https://data.delijn.be/stops/307719"], ["https://data.delijn.be/stops/504519", "https://data.delijn.be/stops/509522"], ["https://data.delijn.be/stops/107559", "https://data.delijn.be/stops/109440"], ["https://data.delijn.be/stops/200924", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/406774", "https://data.delijn.be/stops/406785"], ["https://data.delijn.be/stops/405168", "https://data.delijn.be/stops/405170"], ["https://data.delijn.be/stops/504611", "https://data.delijn.be/stops/505422"], ["https://data.delijn.be/stops/105747", "https://data.delijn.be/stops/109828"], ["https://data.delijn.be/stops/106498", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/402519", "https://data.delijn.be/stops/402588"], ["https://data.delijn.be/stops/502074", "https://data.delijn.be/stops/507074"], ["https://data.delijn.be/stops/201692", "https://data.delijn.be/stops/201719"], ["https://data.delijn.be/stops/208620", "https://data.delijn.be/stops/208846"], ["https://data.delijn.be/stops/408799", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/206731", "https://data.delijn.be/stops/207979"], ["https://data.delijn.be/stops/208068", "https://data.delijn.be/stops/208088"], ["https://data.delijn.be/stops/203936", "https://data.delijn.be/stops/203937"], ["https://data.delijn.be/stops/305092", "https://data.delijn.be/stops/305094"], ["https://data.delijn.be/stops/208060", "https://data.delijn.be/stops/209059"], ["https://data.delijn.be/stops/304166", "https://data.delijn.be/stops/307536"], ["https://data.delijn.be/stops/509555", "https://data.delijn.be/stops/509565"], ["https://data.delijn.be/stops/209279", "https://data.delijn.be/stops/209280"], ["https://data.delijn.be/stops/106057", "https://data.delijn.be/stops/109946"], ["https://data.delijn.be/stops/401834", "https://data.delijn.be/stops/406047"], ["https://data.delijn.be/stops/308060", "https://data.delijn.be/stops/308063"], ["https://data.delijn.be/stops/200034", "https://data.delijn.be/stops/209703"], ["https://data.delijn.be/stops/400455", "https://data.delijn.be/stops/400456"], ["https://data.delijn.be/stops/202199", "https://data.delijn.be/stops/202200"], ["https://data.delijn.be/stops/200342", "https://data.delijn.be/stops/201378"], ["https://data.delijn.be/stops/505686", "https://data.delijn.be/stops/507071"], ["https://data.delijn.be/stops/304030", "https://data.delijn.be/stops/304109"], ["https://data.delijn.be/stops/300811", "https://data.delijn.be/stops/300832"], ["https://data.delijn.be/stops/504046", "https://data.delijn.be/stops/509042"], ["https://data.delijn.be/stops/204017", "https://data.delijn.be/stops/204704"], ["https://data.delijn.be/stops/104103", "https://data.delijn.be/stops/104104"], ["https://data.delijn.be/stops/502235", "https://data.delijn.be/stops/507235"], ["https://data.delijn.be/stops/201948", "https://data.delijn.be/stops/202467"], ["https://data.delijn.be/stops/503330", "https://data.delijn.be/stops/503772"], ["https://data.delijn.be/stops/107456", "https://data.delijn.be/stops/107458"], ["https://data.delijn.be/stops/307431", "https://data.delijn.be/stops/307432"], ["https://data.delijn.be/stops/406166", "https://data.delijn.be/stops/406177"], ["https://data.delijn.be/stops/200763", "https://data.delijn.be/stops/209382"], ["https://data.delijn.be/stops/302226", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/307305", "https://data.delijn.be/stops/307312"], ["https://data.delijn.be/stops/304668", "https://data.delijn.be/stops/304669"], ["https://data.delijn.be/stops/202669", "https://data.delijn.be/stops/202891"], ["https://data.delijn.be/stops/506000", "https://data.delijn.be/stops/508163"], ["https://data.delijn.be/stops/103594", "https://data.delijn.be/stops/103595"], ["https://data.delijn.be/stops/503898", "https://data.delijn.be/stops/505641"], ["https://data.delijn.be/stops/401827", "https://data.delijn.be/stops/406018"], ["https://data.delijn.be/stops/106154", "https://data.delijn.be/stops/106156"], ["https://data.delijn.be/stops/308101", "https://data.delijn.be/stops/308103"], ["https://data.delijn.be/stops/402544", "https://data.delijn.be/stops/402631"], ["https://data.delijn.be/stops/304136", "https://data.delijn.be/stops/307564"], ["https://data.delijn.be/stops/103343", "https://data.delijn.be/stops/104390"], ["https://data.delijn.be/stops/408506", "https://data.delijn.be/stops/408795"], ["https://data.delijn.be/stops/303854", "https://data.delijn.be/stops/303978"], ["https://data.delijn.be/stops/106310", "https://data.delijn.be/stops/106311"], ["https://data.delijn.be/stops/300862", "https://data.delijn.be/stops/301059"], ["https://data.delijn.be/stops/405440", "https://data.delijn.be/stops/302849"], ["https://data.delijn.be/stops/105279", "https://data.delijn.be/stops/109972"], ["https://data.delijn.be/stops/502106", "https://data.delijn.be/stops/502421"], ["https://data.delijn.be/stops/101548", "https://data.delijn.be/stops/107807"], ["https://data.delijn.be/stops/508454", "https://data.delijn.be/stops/508471"], ["https://data.delijn.be/stops/502253", "https://data.delijn.be/stops/507252"], ["https://data.delijn.be/stops/204718", "https://data.delijn.be/stops/205718"], ["https://data.delijn.be/stops/207710", "https://data.delijn.be/stops/207732"], ["https://data.delijn.be/stops/503592", "https://data.delijn.be/stops/509883"], ["https://data.delijn.be/stops/105981", "https://data.delijn.be/stops/105982"], ["https://data.delijn.be/stops/202676", "https://data.delijn.be/stops/203724"], ["https://data.delijn.be/stops/300752", "https://data.delijn.be/stops/302408"], ["https://data.delijn.be/stops/200564", "https://data.delijn.be/stops/201565"], ["https://data.delijn.be/stops/200091", "https://data.delijn.be/stops/201060"], ["https://data.delijn.be/stops/206417", "https://data.delijn.be/stops/206418"], ["https://data.delijn.be/stops/105992", "https://data.delijn.be/stops/105996"], ["https://data.delijn.be/stops/508829", "https://data.delijn.be/stops/508830"], ["https://data.delijn.be/stops/400062", "https://data.delijn.be/stops/400109"], ["https://data.delijn.be/stops/200814", "https://data.delijn.be/stops/202215"], ["https://data.delijn.be/stops/208040", "https://data.delijn.be/stops/208540"], ["https://data.delijn.be/stops/407583", "https://data.delijn.be/stops/407584"], ["https://data.delijn.be/stops/102300", "https://data.delijn.be/stops/104595"], ["https://data.delijn.be/stops/106764", "https://data.delijn.be/stops/107513"], ["https://data.delijn.be/stops/202373", "https://data.delijn.be/stops/203373"], ["https://data.delijn.be/stops/508778", "https://data.delijn.be/stops/508781"], ["https://data.delijn.be/stops/104482", "https://data.delijn.be/stops/104562"], ["https://data.delijn.be/stops/506133", "https://data.delijn.be/stops/506137"], ["https://data.delijn.be/stops/208466", "https://data.delijn.be/stops/209465"], ["https://data.delijn.be/stops/307160", "https://data.delijn.be/stops/307775"], ["https://data.delijn.be/stops/303273", "https://data.delijn.be/stops/303275"], ["https://data.delijn.be/stops/208490", "https://data.delijn.be/stops/208560"], ["https://data.delijn.be/stops/206884", "https://data.delijn.be/stops/207030"], ["https://data.delijn.be/stops/505130", "https://data.delijn.be/stops/508661"], ["https://data.delijn.be/stops/202437", "https://data.delijn.be/stops/203585"], ["https://data.delijn.be/stops/305662", "https://data.delijn.be/stops/305663"], ["https://data.delijn.be/stops/208217", "https://data.delijn.be/stops/209238"], ["https://data.delijn.be/stops/107854", "https://data.delijn.be/stops/107856"], ["https://data.delijn.be/stops/302792", "https://data.delijn.be/stops/304027"], ["https://data.delijn.be/stops/301270", "https://data.delijn.be/stops/307908"], ["https://data.delijn.be/stops/405750", "https://data.delijn.be/stops/408348"], ["https://data.delijn.be/stops/400709", "https://data.delijn.be/stops/409509"], ["https://data.delijn.be/stops/108371", "https://data.delijn.be/stops/108455"], ["https://data.delijn.be/stops/103378", "https://data.delijn.be/stops/104470"], ["https://data.delijn.be/stops/502084", "https://data.delijn.be/stops/502681"], ["https://data.delijn.be/stops/101409", "https://data.delijn.be/stops/101433"], ["https://data.delijn.be/stops/204542", "https://data.delijn.be/stops/205541"], ["https://data.delijn.be/stops/403093", "https://data.delijn.be/stops/403123"], ["https://data.delijn.be/stops/207864", "https://data.delijn.be/stops/209423"], ["https://data.delijn.be/stops/503379", "https://data.delijn.be/stops/503422"], ["https://data.delijn.be/stops/106270", "https://data.delijn.be/stops/106272"], ["https://data.delijn.be/stops/102714", "https://data.delijn.be/stops/104824"], ["https://data.delijn.be/stops/307214", "https://data.delijn.be/stops/307216"], ["https://data.delijn.be/stops/402438", "https://data.delijn.be/stops/402439"], ["https://data.delijn.be/stops/503882", "https://data.delijn.be/stops/508061"], ["https://data.delijn.be/stops/306788", "https://data.delijn.be/stops/306791"], ["https://data.delijn.be/stops/109284", "https://data.delijn.be/stops/109286"], ["https://data.delijn.be/stops/305009", "https://data.delijn.be/stops/305025"], ["https://data.delijn.be/stops/305818", "https://data.delijn.be/stops/308441"], ["https://data.delijn.be/stops/108072", "https://data.delijn.be/stops/108137"], ["https://data.delijn.be/stops/101995", "https://data.delijn.be/stops/102735"], ["https://data.delijn.be/stops/507225", "https://data.delijn.be/stops/507228"], ["https://data.delijn.be/stops/106022", "https://data.delijn.be/stops/106192"], ["https://data.delijn.be/stops/304021", "https://data.delijn.be/stops/304066"], ["https://data.delijn.be/stops/407302", "https://data.delijn.be/stops/407305"], ["https://data.delijn.be/stops/204210", "https://data.delijn.be/stops/206310"], ["https://data.delijn.be/stops/503641", "https://data.delijn.be/stops/509876"], ["https://data.delijn.be/stops/207215", "https://data.delijn.be/stops/207904"], ["https://data.delijn.be/stops/407250", "https://data.delijn.be/stops/407378"], ["https://data.delijn.be/stops/204614", "https://data.delijn.be/stops/204655"], ["https://data.delijn.be/stops/406358", "https://data.delijn.be/stops/406364"], ["https://data.delijn.be/stops/208468", "https://data.delijn.be/stops/209754"], ["https://data.delijn.be/stops/503451", "https://data.delijn.be/stops/503469"], ["https://data.delijn.be/stops/102071", "https://data.delijn.be/stops/102073"], ["https://data.delijn.be/stops/303472", "https://data.delijn.be/stops/303485"], ["https://data.delijn.be/stops/305225", "https://data.delijn.be/stops/305244"], ["https://data.delijn.be/stops/201028", "https://data.delijn.be/stops/201372"], ["https://data.delijn.be/stops/501099", "https://data.delijn.be/stops/506099"], ["https://data.delijn.be/stops/210091", "https://data.delijn.be/stops/211091"], ["https://data.delijn.be/stops/507916", "https://data.delijn.be/stops/508591"], ["https://data.delijn.be/stops/208621", "https://data.delijn.be/stops/209621"], ["https://data.delijn.be/stops/300488", "https://data.delijn.be/stops/302867"], ["https://data.delijn.be/stops/105037", "https://data.delijn.be/stops/305831"], ["https://data.delijn.be/stops/305445", "https://data.delijn.be/stops/306699"], ["https://data.delijn.be/stops/103077", "https://data.delijn.be/stops/104237"], ["https://data.delijn.be/stops/300942", "https://data.delijn.be/stops/305889"], ["https://data.delijn.be/stops/504239", "https://data.delijn.be/stops/504241"], ["https://data.delijn.be/stops/106686", "https://data.delijn.be/stops/106688"], ["https://data.delijn.be/stops/501770", "https://data.delijn.be/stops/507373"], ["https://data.delijn.be/stops/508871", "https://data.delijn.be/stops/509755"], ["https://data.delijn.be/stops/402330", "https://data.delijn.be/stops/402334"], ["https://data.delijn.be/stops/200182", "https://data.delijn.be/stops/202760"], ["https://data.delijn.be/stops/200735", "https://data.delijn.be/stops/203572"], ["https://data.delijn.be/stops/101527", "https://data.delijn.be/stops/101528"], ["https://data.delijn.be/stops/208367", "https://data.delijn.be/stops/209367"], ["https://data.delijn.be/stops/402811", "https://data.delijn.be/stops/407080"], ["https://data.delijn.be/stops/204380", "https://data.delijn.be/stops/204763"], ["https://data.delijn.be/stops/303104", "https://data.delijn.be/stops/308718"], ["https://data.delijn.be/stops/406176", "https://data.delijn.be/stops/410402"], ["https://data.delijn.be/stops/109980", "https://data.delijn.be/stops/109981"], ["https://data.delijn.be/stops/400741", "https://data.delijn.be/stops/400743"], ["https://data.delijn.be/stops/400356", "https://data.delijn.be/stops/400396"], ["https://data.delijn.be/stops/500159", "https://data.delijn.be/stops/503562"], ["https://data.delijn.be/stops/305959", "https://data.delijn.be/stops/305963"], ["https://data.delijn.be/stops/101970", "https://data.delijn.be/stops/107115"], ["https://data.delijn.be/stops/407190", "https://data.delijn.be/stops/407192"], ["https://data.delijn.be/stops/308134", "https://data.delijn.be/stops/308291"], ["https://data.delijn.be/stops/501066", "https://data.delijn.be/stops/501075"], ["https://data.delijn.be/stops/102131", "https://data.delijn.be/stops/105717"], ["https://data.delijn.be/stops/507319", "https://data.delijn.be/stops/507711"], ["https://data.delijn.be/stops/201165", "https://data.delijn.be/stops/202171"], ["https://data.delijn.be/stops/303659", "https://data.delijn.be/stops/307686"], ["https://data.delijn.be/stops/503118", "https://data.delijn.be/stops/508118"], ["https://data.delijn.be/stops/502250", "https://data.delijn.be/stops/502255"], ["https://data.delijn.be/stops/403207", "https://data.delijn.be/stops/403376"], ["https://data.delijn.be/stops/201345", "https://data.delijn.be/stops/203131"], ["https://data.delijn.be/stops/301271", "https://data.delijn.be/stops/301277"], ["https://data.delijn.be/stops/107146", "https://data.delijn.be/stops/107149"], ["https://data.delijn.be/stops/400115", "https://data.delijn.be/stops/400946"], ["https://data.delijn.be/stops/502306", "https://data.delijn.be/stops/502603"], ["https://data.delijn.be/stops/508224", "https://data.delijn.be/stops/508594"], ["https://data.delijn.be/stops/505802", "https://data.delijn.be/stops/505808"], ["https://data.delijn.be/stops/200430", "https://data.delijn.be/stops/201429"], ["https://data.delijn.be/stops/408059", "https://data.delijn.be/stops/408123"], ["https://data.delijn.be/stops/207606", "https://data.delijn.be/stops/207607"], ["https://data.delijn.be/stops/502562", "https://data.delijn.be/stops/590331"], ["https://data.delijn.be/stops/500559", "https://data.delijn.be/stops/506033"], ["https://data.delijn.be/stops/304478", "https://data.delijn.be/stops/304516"], ["https://data.delijn.be/stops/300707", "https://data.delijn.be/stops/303422"], ["https://data.delijn.be/stops/106033", "https://data.delijn.be/stops/106036"], ["https://data.delijn.be/stops/501254", "https://data.delijn.be/stops/501257"], ["https://data.delijn.be/stops/208719", "https://data.delijn.be/stops/209720"], ["https://data.delijn.be/stops/102809", "https://data.delijn.be/stops/106483"], ["https://data.delijn.be/stops/204641", "https://data.delijn.be/stops/205642"], ["https://data.delijn.be/stops/404634", "https://data.delijn.be/stops/406958"], ["https://data.delijn.be/stops/203495", "https://data.delijn.be/stops/203607"], ["https://data.delijn.be/stops/108866", "https://data.delijn.be/stops/108868"], ["https://data.delijn.be/stops/208258", "https://data.delijn.be/stops/209259"], ["https://data.delijn.be/stops/101364", "https://data.delijn.be/stops/101553"], ["https://data.delijn.be/stops/502449", "https://data.delijn.be/stops/507443"], ["https://data.delijn.be/stops/303156", "https://data.delijn.be/stops/303157"], ["https://data.delijn.be/stops/304168", "https://data.delijn.be/stops/306067"], ["https://data.delijn.be/stops/505716", "https://data.delijn.be/stops/508491"], ["https://data.delijn.be/stops/200462", "https://data.delijn.be/stops/200662"], ["https://data.delijn.be/stops/305499", "https://data.delijn.be/stops/305500"], ["https://data.delijn.be/stops/305350", "https://data.delijn.be/stops/308981"], ["https://data.delijn.be/stops/501337", "https://data.delijn.be/stops/506337"], ["https://data.delijn.be/stops/201915", "https://data.delijn.be/stops/207594"], ["https://data.delijn.be/stops/404482", "https://data.delijn.be/stops/404563"], ["https://data.delijn.be/stops/106819", "https://data.delijn.be/stops/106821"], ["https://data.delijn.be/stops/302767", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/503370", "https://data.delijn.be/stops/503400"], ["https://data.delijn.be/stops/200976", "https://data.delijn.be/stops/206803"], ["https://data.delijn.be/stops/504180", "https://data.delijn.be/stops/504181"], ["https://data.delijn.be/stops/302346", "https://data.delijn.be/stops/302354"], ["https://data.delijn.be/stops/402210", "https://data.delijn.be/stops/410098"], ["https://data.delijn.be/stops/200049", "https://data.delijn.be/stops/201247"], ["https://data.delijn.be/stops/403545", "https://data.delijn.be/stops/405644"], ["https://data.delijn.be/stops/403602", "https://data.delijn.be/stops/403609"], ["https://data.delijn.be/stops/105999", "https://data.delijn.be/stops/107909"], ["https://data.delijn.be/stops/502556", "https://data.delijn.be/stops/505051"], ["https://data.delijn.be/stops/404700", "https://data.delijn.be/stops/404711"], ["https://data.delijn.be/stops/206166", "https://data.delijn.be/stops/207022"], ["https://data.delijn.be/stops/101367", "https://data.delijn.be/stops/101368"], ["https://data.delijn.be/stops/108775", "https://data.delijn.be/stops/108780"], ["https://data.delijn.be/stops/104597", "https://data.delijn.be/stops/105162"], ["https://data.delijn.be/stops/205140", "https://data.delijn.be/stops/207638"], ["https://data.delijn.be/stops/305483", "https://data.delijn.be/stops/305509"], ["https://data.delijn.be/stops/302167", "https://data.delijn.be/stops/307806"], ["https://data.delijn.be/stops/409052", "https://data.delijn.be/stops/409083"], ["https://data.delijn.be/stops/200214", "https://data.delijn.be/stops/200216"], ["https://data.delijn.be/stops/408504", "https://data.delijn.be/stops/408524"], ["https://data.delijn.be/stops/407650", "https://data.delijn.be/stops/410248"], ["https://data.delijn.be/stops/102310", "https://data.delijn.be/stops/109132"], ["https://data.delijn.be/stops/504625", "https://data.delijn.be/stops/509627"], ["https://data.delijn.be/stops/202253", "https://data.delijn.be/stops/203252"], ["https://data.delijn.be/stops/207767", "https://data.delijn.be/stops/208190"], ["https://data.delijn.be/stops/300408", "https://data.delijn.be/stops/306068"], ["https://data.delijn.be/stops/300924", "https://data.delijn.be/stops/300925"], ["https://data.delijn.be/stops/503650", "https://data.delijn.be/stops/505254"], ["https://data.delijn.be/stops/205499", "https://data.delijn.be/stops/205509"], ["https://data.delijn.be/stops/105429", "https://data.delijn.be/stops/105431"], ["https://data.delijn.be/stops/304729", "https://data.delijn.be/stops/304744"], ["https://data.delijn.be/stops/503268", "https://data.delijn.be/stops/504862"], ["https://data.delijn.be/stops/106663", "https://data.delijn.be/stops/106669"], ["https://data.delijn.be/stops/408650", "https://data.delijn.be/stops/408812"], ["https://data.delijn.be/stops/400846", "https://data.delijn.be/stops/400847"], ["https://data.delijn.be/stops/203329", "https://data.delijn.be/stops/203586"], ["https://data.delijn.be/stops/307264", "https://data.delijn.be/stops/307913"], ["https://data.delijn.be/stops/404255", "https://data.delijn.be/stops/405186"], ["https://data.delijn.be/stops/300177", "https://data.delijn.be/stops/300188"], ["https://data.delijn.be/stops/501659", "https://data.delijn.be/stops/506658"], ["https://data.delijn.be/stops/305056", "https://data.delijn.be/stops/305057"], ["https://data.delijn.be/stops/406556", "https://data.delijn.be/stops/406563"], ["https://data.delijn.be/stops/202940", "https://data.delijn.be/stops/211018"], ["https://data.delijn.be/stops/108467", "https://data.delijn.be/stops/108468"], ["https://data.delijn.be/stops/300342", "https://data.delijn.be/stops/300345"], ["https://data.delijn.be/stops/208526", "https://data.delijn.be/stops/209527"], ["https://data.delijn.be/stops/200873", "https://data.delijn.be/stops/202309"], ["https://data.delijn.be/stops/503048", "https://data.delijn.be/stops/508333"], ["https://data.delijn.be/stops/201753", "https://data.delijn.be/stops/201754"], ["https://data.delijn.be/stops/503395", "https://data.delijn.be/stops/509786"], ["https://data.delijn.be/stops/502085", "https://data.delijn.be/stops/502817"], ["https://data.delijn.be/stops/504271", "https://data.delijn.be/stops/504275"], ["https://data.delijn.be/stops/207158", "https://data.delijn.be/stops/207673"], ["https://data.delijn.be/stops/304873", "https://data.delijn.be/stops/305425"], ["https://data.delijn.be/stops/101170", "https://data.delijn.be/stops/102230"], ["https://data.delijn.be/stops/206436", "https://data.delijn.be/stops/207436"], ["https://data.delijn.be/stops/302664", "https://data.delijn.be/stops/308298"], ["https://data.delijn.be/stops/204246", "https://data.delijn.be/stops/205096"], ["https://data.delijn.be/stops/200871", "https://data.delijn.be/stops/201118"], ["https://data.delijn.be/stops/206068", "https://data.delijn.be/stops/207074"], ["https://data.delijn.be/stops/408710", "https://data.delijn.be/stops/408733"], ["https://data.delijn.be/stops/502042", "https://data.delijn.be/stops/507323"], ["https://data.delijn.be/stops/208470", "https://data.delijn.be/stops/209470"], ["https://data.delijn.be/stops/400526", "https://data.delijn.be/stops/404531"], ["https://data.delijn.be/stops/502669", "https://data.delijn.be/stops/502766"], ["https://data.delijn.be/stops/208271", "https://data.delijn.be/stops/209271"], ["https://data.delijn.be/stops/305892", "https://data.delijn.be/stops/305893"], ["https://data.delijn.be/stops/202910", "https://data.delijn.be/stops/211070"], ["https://data.delijn.be/stops/106161", "https://data.delijn.be/stops/106166"], ["https://data.delijn.be/stops/201924", "https://data.delijn.be/stops/206591"], ["https://data.delijn.be/stops/505530", "https://data.delijn.be/stops/506423"], ["https://data.delijn.be/stops/203902", "https://data.delijn.be/stops/218003"], ["https://data.delijn.be/stops/102725", "https://data.delijn.be/stops/105177"], ["https://data.delijn.be/stops/302800", "https://data.delijn.be/stops/302809"], ["https://data.delijn.be/stops/108335", "https://data.delijn.be/stops/108730"], ["https://data.delijn.be/stops/106429", "https://data.delijn.be/stops/106434"], ["https://data.delijn.be/stops/402583", "https://data.delijn.be/stops/402592"], ["https://data.delijn.be/stops/407117", "https://data.delijn.be/stops/407123"], ["https://data.delijn.be/stops/300429", "https://data.delijn.be/stops/308062"], ["https://data.delijn.be/stops/503147", "https://data.delijn.be/stops/508141"], ["https://data.delijn.be/stops/103250", "https://data.delijn.be/stops/107725"], ["https://data.delijn.be/stops/200232", "https://data.delijn.be/stops/201230"], ["https://data.delijn.be/stops/108653", "https://data.delijn.be/stops/304325"], ["https://data.delijn.be/stops/205636", "https://data.delijn.be/stops/205637"], ["https://data.delijn.be/stops/400876", "https://data.delijn.be/stops/407532"], ["https://data.delijn.be/stops/503410", "https://data.delijn.be/stops/508351"], ["https://data.delijn.be/stops/301560", "https://data.delijn.be/stops/301572"], ["https://data.delijn.be/stops/108747", "https://data.delijn.be/stops/108748"], ["https://data.delijn.be/stops/400339", "https://data.delijn.be/stops/400449"], ["https://data.delijn.be/stops/408059", "https://data.delijn.be/stops/408293"], ["https://data.delijn.be/stops/508755", "https://data.delijn.be/stops/509963"], ["https://data.delijn.be/stops/406307", "https://data.delijn.be/stops/406308"], ["https://data.delijn.be/stops/302006", "https://data.delijn.be/stops/303178"], ["https://data.delijn.be/stops/206432", "https://data.delijn.be/stops/207431"], ["https://data.delijn.be/stops/101255", "https://data.delijn.be/stops/103940"], ["https://data.delijn.be/stops/405524", "https://data.delijn.be/stops/407274"], ["https://data.delijn.be/stops/202729", "https://data.delijn.be/stops/203729"], ["https://data.delijn.be/stops/401129", "https://data.delijn.be/stops/406719"], ["https://data.delijn.be/stops/207674", "https://data.delijn.be/stops/208491"], ["https://data.delijn.be/stops/107322", "https://data.delijn.be/stops/107324"], ["https://data.delijn.be/stops/202156", "https://data.delijn.be/stops/203156"], ["https://data.delijn.be/stops/402548", "https://data.delijn.be/stops/404067"], ["https://data.delijn.be/stops/507064", "https://data.delijn.be/stops/507069"], ["https://data.delijn.be/stops/202872", "https://data.delijn.be/stops/203872"], ["https://data.delijn.be/stops/105539", "https://data.delijn.be/stops/106250"], ["https://data.delijn.be/stops/200278", "https://data.delijn.be/stops/201278"], ["https://data.delijn.be/stops/302002", "https://data.delijn.be/stops/302024"], ["https://data.delijn.be/stops/208607", "https://data.delijn.be/stops/208608"], ["https://data.delijn.be/stops/104335", "https://data.delijn.be/stops/104340"], ["https://data.delijn.be/stops/406654", "https://data.delijn.be/stops/406655"], ["https://data.delijn.be/stops/209478", "https://data.delijn.be/stops/209479"], ["https://data.delijn.be/stops/104044", "https://data.delijn.be/stops/108543"], ["https://data.delijn.be/stops/200662", "https://data.delijn.be/stops/201838"], ["https://data.delijn.be/stops/209724", "https://data.delijn.be/stops/209791"], ["https://data.delijn.be/stops/407616", "https://data.delijn.be/stops/409806"], ["https://data.delijn.be/stops/501226", "https://data.delijn.be/stops/501228"], ["https://data.delijn.be/stops/204082", "https://data.delijn.be/stops/204083"], ["https://data.delijn.be/stops/504454", "https://data.delijn.be/stops/504455"], ["https://data.delijn.be/stops/302183", "https://data.delijn.be/stops/307108"], ["https://data.delijn.be/stops/503791", "https://data.delijn.be/stops/508791"], ["https://data.delijn.be/stops/504027", "https://data.delijn.be/stops/509024"], ["https://data.delijn.be/stops/407867", "https://data.delijn.be/stops/408175"], ["https://data.delijn.be/stops/304621", "https://data.delijn.be/stops/304661"], ["https://data.delijn.be/stops/509653", "https://data.delijn.be/stops/509654"], ["https://data.delijn.be/stops/201897", "https://data.delijn.be/stops/201943"], ["https://data.delijn.be/stops/300273", "https://data.delijn.be/stops/300946"], ["https://data.delijn.be/stops/109143", "https://data.delijn.be/stops/109147"], ["https://data.delijn.be/stops/306816", "https://data.delijn.be/stops/308991"], ["https://data.delijn.be/stops/305116", "https://data.delijn.be/stops/305117"], ["https://data.delijn.be/stops/403008", "https://data.delijn.be/stops/403009"], ["https://data.delijn.be/stops/108380", "https://data.delijn.be/stops/108968"], ["https://data.delijn.be/stops/502815", "https://data.delijn.be/stops/507284"], ["https://data.delijn.be/stops/106953", "https://data.delijn.be/stops/107267"], ["https://data.delijn.be/stops/307243", "https://data.delijn.be/stops/307248"], ["https://data.delijn.be/stops/504028", "https://data.delijn.be/stops/504032"], ["https://data.delijn.be/stops/206001", "https://data.delijn.be/stops/207521"], ["https://data.delijn.be/stops/103130", "https://data.delijn.be/stops/107735"], ["https://data.delijn.be/stops/204412", "https://data.delijn.be/stops/205412"], ["https://data.delijn.be/stops/200406", "https://data.delijn.be/stops/200507"], ["https://data.delijn.be/stops/101632", "https://data.delijn.be/stops/105911"], ["https://data.delijn.be/stops/300761", "https://data.delijn.be/stops/306200"], ["https://data.delijn.be/stops/302161", "https://data.delijn.be/stops/308103"], ["https://data.delijn.be/stops/108929", "https://data.delijn.be/stops/108933"], ["https://data.delijn.be/stops/501522", "https://data.delijn.be/stops/501546"], ["https://data.delijn.be/stops/208013", "https://data.delijn.be/stops/208027"], ["https://data.delijn.be/stops/101854", "https://data.delijn.be/stops/109455"], ["https://data.delijn.be/stops/401105", "https://data.delijn.be/stops/409220"], ["https://data.delijn.be/stops/501250", "https://data.delijn.be/stops/506773"], ["https://data.delijn.be/stops/400788", "https://data.delijn.be/stops/400798"], ["https://data.delijn.be/stops/505015", "https://data.delijn.be/stops/507355"], ["https://data.delijn.be/stops/403598", "https://data.delijn.be/stops/407339"], ["https://data.delijn.be/stops/108698", "https://data.delijn.be/stops/108700"], ["https://data.delijn.be/stops/504964", "https://data.delijn.be/stops/509965"], ["https://data.delijn.be/stops/508607", "https://data.delijn.be/stops/508612"], ["https://data.delijn.be/stops/201390", "https://data.delijn.be/stops/201847"], ["https://data.delijn.be/stops/107483", "https://data.delijn.be/stops/107486"], ["https://data.delijn.be/stops/303239", "https://data.delijn.be/stops/303243"], ["https://data.delijn.be/stops/409160", "https://data.delijn.be/stops/409162"], ["https://data.delijn.be/stops/301714", "https://data.delijn.be/stops/308696"], ["https://data.delijn.be/stops/204642", "https://data.delijn.be/stops/204772"], ["https://data.delijn.be/stops/406082", "https://data.delijn.be/stops/406140"], ["https://data.delijn.be/stops/505073", "https://data.delijn.be/stops/505315"], ["https://data.delijn.be/stops/501060", "https://data.delijn.be/stops/502646"], ["https://data.delijn.be/stops/203737", "https://data.delijn.be/stops/203738"], ["https://data.delijn.be/stops/204007", "https://data.delijn.be/stops/205007"], ["https://data.delijn.be/stops/503444", "https://data.delijn.be/stops/508572"], ["https://data.delijn.be/stops/108752", "https://data.delijn.be/stops/109502"], ["https://data.delijn.be/stops/407607", "https://data.delijn.be/stops/407608"], ["https://data.delijn.be/stops/504161", "https://data.delijn.be/stops/509161"], ["https://data.delijn.be/stops/401288", "https://data.delijn.be/stops/401312"], ["https://data.delijn.be/stops/304480", "https://data.delijn.be/stops/304507"], ["https://data.delijn.be/stops/307896", "https://data.delijn.be/stops/308549"], ["https://data.delijn.be/stops/105334", "https://data.delijn.be/stops/105337"], ["https://data.delijn.be/stops/405225", "https://data.delijn.be/stops/406244"], ["https://data.delijn.be/stops/505523", "https://data.delijn.be/stops/505618"], ["https://data.delijn.be/stops/503299", "https://data.delijn.be/stops/503304"], ["https://data.delijn.be/stops/106648", "https://data.delijn.be/stops/106650"], ["https://data.delijn.be/stops/404221", "https://data.delijn.be/stops/404242"], ["https://data.delijn.be/stops/207702", "https://data.delijn.be/stops/207898"], ["https://data.delijn.be/stops/203666", "https://data.delijn.be/stops/203667"], ["https://data.delijn.be/stops/503635", "https://data.delijn.be/stops/503756"], ["https://data.delijn.be/stops/503934", "https://data.delijn.be/stops/508934"], ["https://data.delijn.be/stops/304067", "https://data.delijn.be/stops/304083"], ["https://data.delijn.be/stops/504247", "https://data.delijn.be/stops/504248"], ["https://data.delijn.be/stops/300246", "https://data.delijn.be/stops/300260"], ["https://data.delijn.be/stops/503802", "https://data.delijn.be/stops/505541"], ["https://data.delijn.be/stops/201879", "https://data.delijn.be/stops/210034"], ["https://data.delijn.be/stops/504633", "https://data.delijn.be/stops/509220"], ["https://data.delijn.be/stops/108834", "https://data.delijn.be/stops/108848"], ["https://data.delijn.be/stops/407229", "https://data.delijn.be/stops/407509"], ["https://data.delijn.be/stops/406882", "https://data.delijn.be/stops/409754"], ["https://data.delijn.be/stops/200461", "https://data.delijn.be/stops/201460"], ["https://data.delijn.be/stops/200726", "https://data.delijn.be/stops/203592"], ["https://data.delijn.be/stops/102407", "https://data.delijn.be/stops/402019"], ["https://data.delijn.be/stops/503391", "https://data.delijn.be/stops/508244"], ["https://data.delijn.be/stops/208524", "https://data.delijn.be/stops/209044"], ["https://data.delijn.be/stops/300136", "https://data.delijn.be/stops/300139"], ["https://data.delijn.be/stops/302680", "https://data.delijn.be/stops/303611"], ["https://data.delijn.be/stops/106183", "https://data.delijn.be/stops/107439"], ["https://data.delijn.be/stops/305273", "https://data.delijn.be/stops/305274"], ["https://data.delijn.be/stops/407906", "https://data.delijn.be/stops/408010"], ["https://data.delijn.be/stops/506369", "https://data.delijn.be/stops/507745"], ["https://data.delijn.be/stops/401249", "https://data.delijn.be/stops/401250"], ["https://data.delijn.be/stops/504490", "https://data.delijn.be/stops/504491"], ["https://data.delijn.be/stops/503278", "https://data.delijn.be/stops/506000"], ["https://data.delijn.be/stops/105671", "https://data.delijn.be/stops/106070"], ["https://data.delijn.be/stops/206164", "https://data.delijn.be/stops/308901"], ["https://data.delijn.be/stops/302196", "https://data.delijn.be/stops/308105"], ["https://data.delijn.be/stops/206605", "https://data.delijn.be/stops/206741"], ["https://data.delijn.be/stops/201916", "https://data.delijn.be/stops/206834"], ["https://data.delijn.be/stops/300955", "https://data.delijn.be/stops/300958"], ["https://data.delijn.be/stops/208406", "https://data.delijn.be/stops/209820"], ["https://data.delijn.be/stops/404332", "https://data.delijn.be/stops/404340"], ["https://data.delijn.be/stops/101518", "https://data.delijn.be/stops/109051"], ["https://data.delijn.be/stops/107573", "https://data.delijn.be/stops/107574"], ["https://data.delijn.be/stops/409402", "https://data.delijn.be/stops/409403"], ["https://data.delijn.be/stops/404723", "https://data.delijn.be/stops/404735"], ["https://data.delijn.be/stops/302130", "https://data.delijn.be/stops/302143"], ["https://data.delijn.be/stops/503432", "https://data.delijn.be/stops/503436"], ["https://data.delijn.be/stops/503906", "https://data.delijn.be/stops/504008"], ["https://data.delijn.be/stops/201693", "https://data.delijn.be/stops/202036"], ["https://data.delijn.be/stops/207357", "https://data.delijn.be/stops/207687"], ["https://data.delijn.be/stops/505912", "https://data.delijn.be/stops/509114"], ["https://data.delijn.be/stops/303756", "https://data.delijn.be/stops/303757"], ["https://data.delijn.be/stops/502801", "https://data.delijn.be/stops/504180"], ["https://data.delijn.be/stops/104477", "https://data.delijn.be/stops/104479"], ["https://data.delijn.be/stops/201874", "https://data.delijn.be/stops/202021"], ["https://data.delijn.be/stops/200587", "https://data.delijn.be/stops/211200"], ["https://data.delijn.be/stops/502148", "https://data.delijn.be/stops/507167"], ["https://data.delijn.be/stops/200945", "https://data.delijn.be/stops/211023"], ["https://data.delijn.be/stops/407961", "https://data.delijn.be/stops/408042"], ["https://data.delijn.be/stops/102633", "https://data.delijn.be/stops/107853"], ["https://data.delijn.be/stops/200367", "https://data.delijn.be/stops/201607"], ["https://data.delijn.be/stops/401762", "https://data.delijn.be/stops/401763"], ["https://data.delijn.be/stops/101752", "https://data.delijn.be/stops/101753"], ["https://data.delijn.be/stops/201880", "https://data.delijn.be/stops/210852"], ["https://data.delijn.be/stops/400157", "https://data.delijn.be/stops/400158"], ["https://data.delijn.be/stops/501014", "https://data.delijn.be/stops/501609"], ["https://data.delijn.be/stops/308896", "https://data.delijn.be/stops/308897"], ["https://data.delijn.be/stops/404346", "https://data.delijn.be/stops/404368"], ["https://data.delijn.be/stops/107558", "https://data.delijn.be/stops/107561"], ["https://data.delijn.be/stops/208417", "https://data.delijn.be/stops/208418"], ["https://data.delijn.be/stops/401627", "https://data.delijn.be/stops/401633"], ["https://data.delijn.be/stops/108418", "https://data.delijn.be/stops/108419"], ["https://data.delijn.be/stops/502551", "https://data.delijn.be/stops/505335"], ["https://data.delijn.be/stops/103097", "https://data.delijn.be/stops/103269"], ["https://data.delijn.be/stops/505691", "https://data.delijn.be/stops/507610"], ["https://data.delijn.be/stops/302717", "https://data.delijn.be/stops/302722"], ["https://data.delijn.be/stops/407400", "https://data.delijn.be/stops/407404"], ["https://data.delijn.be/stops/102470", "https://data.delijn.be/stops/102862"], ["https://data.delijn.be/stops/304579", "https://data.delijn.be/stops/308684"], ["https://data.delijn.be/stops/403218", "https://data.delijn.be/stops/403219"], ["https://data.delijn.be/stops/509486", "https://data.delijn.be/stops/509489"], ["https://data.delijn.be/stops/204211", "https://data.delijn.be/stops/207312"], ["https://data.delijn.be/stops/203503", "https://data.delijn.be/stops/209662"], ["https://data.delijn.be/stops/201862", "https://data.delijn.be/stops/203670"], ["https://data.delijn.be/stops/101173", "https://data.delijn.be/stops/101174"], ["https://data.delijn.be/stops/408856", "https://data.delijn.be/stops/408861"], ["https://data.delijn.be/stops/403192", "https://data.delijn.be/stops/403451"], ["https://data.delijn.be/stops/207511", "https://data.delijn.be/stops/209666"], ["https://data.delijn.be/stops/101414", "https://data.delijn.be/stops/101416"], ["https://data.delijn.be/stops/301924", "https://data.delijn.be/stops/307827"], ["https://data.delijn.be/stops/400844", "https://data.delijn.be/stops/409568"], ["https://data.delijn.be/stops/204423", "https://data.delijn.be/stops/205766"], ["https://data.delijn.be/stops/503547", "https://data.delijn.be/stops/503565"], ["https://data.delijn.be/stops/301682", "https://data.delijn.be/stops/306188"], ["https://data.delijn.be/stops/104883", "https://data.delijn.be/stops/104884"], ["https://data.delijn.be/stops/206266", "https://data.delijn.be/stops/207993"], ["https://data.delijn.be/stops/303354", "https://data.delijn.be/stops/303358"], ["https://data.delijn.be/stops/505634", "https://data.delijn.be/stops/505635"], ["https://data.delijn.be/stops/301623", "https://data.delijn.be/stops/301672"], ["https://data.delijn.be/stops/304271", "https://data.delijn.be/stops/304276"], ["https://data.delijn.be/stops/101632", "https://data.delijn.be/stops/109746"], ["https://data.delijn.be/stops/505634", "https://data.delijn.be/stops/508337"], ["https://data.delijn.be/stops/302799", "https://data.delijn.be/stops/307835"], ["https://data.delijn.be/stops/204383", "https://data.delijn.be/stops/205185"], ["https://data.delijn.be/stops/401892", "https://data.delijn.be/stops/401893"], ["https://data.delijn.be/stops/505718", "https://data.delijn.be/stops/508489"], ["https://data.delijn.be/stops/200105", "https://data.delijn.be/stops/200363"], ["https://data.delijn.be/stops/207627", "https://data.delijn.be/stops/207628"], ["https://data.delijn.be/stops/307082", "https://data.delijn.be/stops/308106"], ["https://data.delijn.be/stops/303528", "https://data.delijn.be/stops/307990"], ["https://data.delijn.be/stops/403054", "https://data.delijn.be/stops/410247"], ["https://data.delijn.be/stops/403418", "https://data.delijn.be/stops/403517"], ["https://data.delijn.be/stops/306198", "https://data.delijn.be/stops/307279"], ["https://data.delijn.be/stops/307555", "https://data.delijn.be/stops/307677"], ["https://data.delijn.be/stops/404399", "https://data.delijn.be/stops/405561"], ["https://data.delijn.be/stops/102551", "https://data.delijn.be/stops/109661"], ["https://data.delijn.be/stops/402588", "https://data.delijn.be/stops/404143"], ["https://data.delijn.be/stops/106368", "https://data.delijn.be/stops/106369"], ["https://data.delijn.be/stops/504212", "https://data.delijn.be/stops/504213"], ["https://data.delijn.be/stops/301374", "https://data.delijn.be/stops/302417"], ["https://data.delijn.be/stops/508327", "https://data.delijn.be/stops/509878"], ["https://data.delijn.be/stops/501638", "https://data.delijn.be/stops/506638"], ["https://data.delijn.be/stops/408951", "https://data.delijn.be/stops/408979"], ["https://data.delijn.be/stops/206395", "https://data.delijn.be/stops/206396"], ["https://data.delijn.be/stops/404444", "https://data.delijn.be/stops/404456"], ["https://data.delijn.be/stops/300764", "https://data.delijn.be/stops/302404"], ["https://data.delijn.be/stops/504542", "https://data.delijn.be/stops/505786"], ["https://data.delijn.be/stops/209316", "https://data.delijn.be/stops/209772"], ["https://data.delijn.be/stops/304497", "https://data.delijn.be/stops/304503"], ["https://data.delijn.be/stops/108627", "https://data.delijn.be/stops/302551"], ["https://data.delijn.be/stops/108273", "https://data.delijn.be/stops/108274"], ["https://data.delijn.be/stops/501538", "https://data.delijn.be/stops/501542"], ["https://data.delijn.be/stops/507451", "https://data.delijn.be/stops/507452"], ["https://data.delijn.be/stops/406669", "https://data.delijn.be/stops/406987"], ["https://data.delijn.be/stops/504564", "https://data.delijn.be/stops/505187"], ["https://data.delijn.be/stops/201553", "https://data.delijn.be/stops/201899"], ["https://data.delijn.be/stops/501736", "https://data.delijn.be/stops/506508"], ["https://data.delijn.be/stops/109830", "https://data.delijn.be/stops/109854"], ["https://data.delijn.be/stops/102396", "https://data.delijn.be/stops/108199"], ["https://data.delijn.be/stops/101310", "https://data.delijn.be/stops/102705"], ["https://data.delijn.be/stops/204999", "https://data.delijn.be/stops/207385"], ["https://data.delijn.be/stops/208525", "https://data.delijn.be/stops/208526"], ["https://data.delijn.be/stops/303291", "https://data.delijn.be/stops/303292"], ["https://data.delijn.be/stops/300767", "https://data.delijn.be/stops/303224"], ["https://data.delijn.be/stops/201638", "https://data.delijn.be/stops/211054"], ["https://data.delijn.be/stops/302959", "https://data.delijn.be/stops/302973"], ["https://data.delijn.be/stops/401638", "https://data.delijn.be/stops/401639"], ["https://data.delijn.be/stops/300952", "https://data.delijn.be/stops/301050"], ["https://data.delijn.be/stops/307641", "https://data.delijn.be/stops/307685"], ["https://data.delijn.be/stops/105572", "https://data.delijn.be/stops/105574"], ["https://data.delijn.be/stops/304429", "https://data.delijn.be/stops/307383"], ["https://data.delijn.be/stops/504435", "https://data.delijn.be/stops/509435"], ["https://data.delijn.be/stops/106004", "https://data.delijn.be/stops/106006"], ["https://data.delijn.be/stops/106381", "https://data.delijn.be/stops/106383"], ["https://data.delijn.be/stops/408641", "https://data.delijn.be/stops/408715"], ["https://data.delijn.be/stops/106355", "https://data.delijn.be/stops/106379"], ["https://data.delijn.be/stops/203062", "https://data.delijn.be/stops/210016"], ["https://data.delijn.be/stops/405773", "https://data.delijn.be/stops/405827"], ["https://data.delijn.be/stops/500018", "https://data.delijn.be/stops/502445"], ["https://data.delijn.be/stops/402327", "https://data.delijn.be/stops/402376"], ["https://data.delijn.be/stops/107859", "https://data.delijn.be/stops/208900"], ["https://data.delijn.be/stops/105886", "https://data.delijn.be/stops/105887"], ["https://data.delijn.be/stops/207038", "https://data.delijn.be/stops/207216"], ["https://data.delijn.be/stops/402048", "https://data.delijn.be/stops/402202"], ["https://data.delijn.be/stops/300592", "https://data.delijn.be/stops/300593"], ["https://data.delijn.be/stops/106999", "https://data.delijn.be/stops/107323"], ["https://data.delijn.be/stops/505757", "https://data.delijn.be/stops/506209"], ["https://data.delijn.be/stops/101518", "https://data.delijn.be/stops/109070"], ["https://data.delijn.be/stops/402529", "https://data.delijn.be/stops/402533"], ["https://data.delijn.be/stops/200534", "https://data.delijn.be/stops/201534"], ["https://data.delijn.be/stops/504448", "https://data.delijn.be/stops/509967"], ["https://data.delijn.be/stops/108187", "https://data.delijn.be/stops/108329"], ["https://data.delijn.be/stops/406160", "https://data.delijn.be/stops/409408"], ["https://data.delijn.be/stops/408560", "https://data.delijn.be/stops/408598"], ["https://data.delijn.be/stops/400906", "https://data.delijn.be/stops/400974"], ["https://data.delijn.be/stops/206964", "https://data.delijn.be/stops/216011"], ["https://data.delijn.be/stops/106089", "https://data.delijn.be/stops/106141"], ["https://data.delijn.be/stops/106083", "https://data.delijn.be/stops/108729"], ["https://data.delijn.be/stops/403194", "https://data.delijn.be/stops/403425"], ["https://data.delijn.be/stops/410159", "https://data.delijn.be/stops/410160"], ["https://data.delijn.be/stops/305338", "https://data.delijn.be/stops/305340"], ["https://data.delijn.be/stops/200856", "https://data.delijn.be/stops/203308"], ["https://data.delijn.be/stops/204646", "https://data.delijn.be/stops/205647"], ["https://data.delijn.be/stops/200913", "https://data.delijn.be/stops/203539"], ["https://data.delijn.be/stops/104004", "https://data.delijn.be/stops/106567"], ["https://data.delijn.be/stops/108568", "https://data.delijn.be/stops/108993"], ["https://data.delijn.be/stops/501663", "https://data.delijn.be/stops/506665"], ["https://data.delijn.be/stops/206703", "https://data.delijn.be/stops/207605"], ["https://data.delijn.be/stops/401210", "https://data.delijn.be/stops/401382"], ["https://data.delijn.be/stops/504377", "https://data.delijn.be/stops/504634"], ["https://data.delijn.be/stops/503785", "https://data.delijn.be/stops/503786"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/302890"], ["https://data.delijn.be/stops/505128", "https://data.delijn.be/stops/505241"], ["https://data.delijn.be/stops/109858", "https://data.delijn.be/stops/405881"], ["https://data.delijn.be/stops/302285", "https://data.delijn.be/stops/302291"], ["https://data.delijn.be/stops/105909", "https://data.delijn.be/stops/105911"], ["https://data.delijn.be/stops/208207", "https://data.delijn.be/stops/209208"], ["https://data.delijn.be/stops/202189", "https://data.delijn.be/stops/203616"], ["https://data.delijn.be/stops/503296", "https://data.delijn.be/stops/503323"], ["https://data.delijn.be/stops/106471", "https://data.delijn.be/stops/107048"], ["https://data.delijn.be/stops/101331", "https://data.delijn.be/stops/106638"], ["https://data.delijn.be/stops/502248", "https://data.delijn.be/stops/507910"], ["https://data.delijn.be/stops/205401", "https://data.delijn.be/stops/205402"], ["https://data.delijn.be/stops/206874", "https://data.delijn.be/stops/207904"], ["https://data.delijn.be/stops/504126", "https://data.delijn.be/stops/504132"], ["https://data.delijn.be/stops/107174", "https://data.delijn.be/stops/107176"], ["https://data.delijn.be/stops/106269", "https://data.delijn.be/stops/106339"], ["https://data.delijn.be/stops/201415", "https://data.delijn.be/stops/201416"], ["https://data.delijn.be/stops/305302", "https://data.delijn.be/stops/305303"], ["https://data.delijn.be/stops/206086", "https://data.delijn.be/stops/207086"], ["https://data.delijn.be/stops/305067", "https://data.delijn.be/stops/306956"], ["https://data.delijn.be/stops/200908", "https://data.delijn.be/stops/203249"], ["https://data.delijn.be/stops/502707", "https://data.delijn.be/stops/505734"], ["https://data.delijn.be/stops/303531", "https://data.delijn.be/stops/304130"], ["https://data.delijn.be/stops/504423", "https://data.delijn.be/stops/509401"], ["https://data.delijn.be/stops/503706", "https://data.delijn.be/stops/508712"], ["https://data.delijn.be/stops/104846", "https://data.delijn.be/stops/106794"], ["https://data.delijn.be/stops/407832", "https://data.delijn.be/stops/409543"], ["https://data.delijn.be/stops/408006", "https://data.delijn.be/stops/408149"], ["https://data.delijn.be/stops/304293", "https://data.delijn.be/stops/306827"], ["https://data.delijn.be/stops/404426", "https://data.delijn.be/stops/410102"], ["https://data.delijn.be/stops/103148", "https://data.delijn.be/stops/103149"], ["https://data.delijn.be/stops/303802", "https://data.delijn.be/stops/303803"], ["https://data.delijn.be/stops/502182", "https://data.delijn.be/stops/505556"], ["https://data.delijn.be/stops/204677", "https://data.delijn.be/stops/205677"], ["https://data.delijn.be/stops/102184", "https://data.delijn.be/stops/108031"], ["https://data.delijn.be/stops/401460", "https://data.delijn.be/stops/401526"], ["https://data.delijn.be/stops/304207", "https://data.delijn.be/stops/306003"], ["https://data.delijn.be/stops/302116", "https://data.delijn.be/stops/304023"], ["https://data.delijn.be/stops/505505", "https://data.delijn.be/stops/505602"], ["https://data.delijn.be/stops/301394", "https://data.delijn.be/stops/306147"], ["https://data.delijn.be/stops/200210", "https://data.delijn.be/stops/201203"], ["https://data.delijn.be/stops/500020", "https://data.delijn.be/stops/502146"], ["https://data.delijn.be/stops/502370", "https://data.delijn.be/stops/505437"], ["https://data.delijn.be/stops/304108", "https://data.delijn.be/stops/304109"], ["https://data.delijn.be/stops/501006", "https://data.delijn.be/stops/501174"], ["https://data.delijn.be/stops/206213", "https://data.delijn.be/stops/207213"], ["https://data.delijn.be/stops/202816", "https://data.delijn.be/stops/203816"], ["https://data.delijn.be/stops/205303", "https://data.delijn.be/stops/205312"], ["https://data.delijn.be/stops/101892", "https://data.delijn.be/stops/107613"], ["https://data.delijn.be/stops/205237", "https://data.delijn.be/stops/206396"], ["https://data.delijn.be/stops/304839", "https://data.delijn.be/stops/304879"], ["https://data.delijn.be/stops/400486", "https://data.delijn.be/stops/400487"], ["https://data.delijn.be/stops/206055", "https://data.delijn.be/stops/216003"], ["https://data.delijn.be/stops/305616", "https://data.delijn.be/stops/305955"], ["https://data.delijn.be/stops/401017", "https://data.delijn.be/stops/401125"], ["https://data.delijn.be/stops/504086", "https://data.delijn.be/stops/509088"], ["https://data.delijn.be/stops/504846", "https://data.delijn.be/stops/509640"], ["https://data.delijn.be/stops/508388", "https://data.delijn.be/stops/510022"], ["https://data.delijn.be/stops/106222", "https://data.delijn.be/stops/106314"], ["https://data.delijn.be/stops/206183", "https://data.delijn.be/stops/206358"], ["https://data.delijn.be/stops/402889", "https://data.delijn.be/stops/402890"], ["https://data.delijn.be/stops/207773", "https://data.delijn.be/stops/207781"], ["https://data.delijn.be/stops/201005", "https://data.delijn.be/stops/203524"], ["https://data.delijn.be/stops/500945", "https://data.delijn.be/stops/509429"], ["https://data.delijn.be/stops/303286", "https://data.delijn.be/stops/305977"], ["https://data.delijn.be/stops/101411", "https://data.delijn.be/stops/101413"], ["https://data.delijn.be/stops/303558", "https://data.delijn.be/stops/307989"], ["https://data.delijn.be/stops/502661", "https://data.delijn.be/stops/507659"], ["https://data.delijn.be/stops/402194", "https://data.delijn.be/stops/402195"], ["https://data.delijn.be/stops/206613", "https://data.delijn.be/stops/206717"], ["https://data.delijn.be/stops/201358", "https://data.delijn.be/stops/209662"], ["https://data.delijn.be/stops/301491", "https://data.delijn.be/stops/307930"], ["https://data.delijn.be/stops/300720", "https://data.delijn.be/stops/300721"], ["https://data.delijn.be/stops/107438", "https://data.delijn.be/stops/107439"], ["https://data.delijn.be/stops/400035", "https://data.delijn.be/stops/402758"], ["https://data.delijn.be/stops/402881", "https://data.delijn.be/stops/402882"], ["https://data.delijn.be/stops/103659", "https://data.delijn.be/stops/106220"], ["https://data.delijn.be/stops/106103", "https://data.delijn.be/stops/106120"], ["https://data.delijn.be/stops/109553", "https://data.delijn.be/stops/109786"], ["https://data.delijn.be/stops/408800", "https://data.delijn.be/stops/408805"], ["https://data.delijn.be/stops/409354", "https://data.delijn.be/stops/409355"], ["https://data.delijn.be/stops/200873", "https://data.delijn.be/stops/203793"], ["https://data.delijn.be/stops/300171", "https://data.delijn.be/stops/301219"], ["https://data.delijn.be/stops/307153", "https://data.delijn.be/stops/307157"], ["https://data.delijn.be/stops/408023", "https://data.delijn.be/stops/408194"], ["https://data.delijn.be/stops/406529", "https://data.delijn.be/stops/409278"], ["https://data.delijn.be/stops/502511", "https://data.delijn.be/stops/502636"], ["https://data.delijn.be/stops/201455", "https://data.delijn.be/stops/201684"], ["https://data.delijn.be/stops/108850", "https://data.delijn.be/stops/108852"], ["https://data.delijn.be/stops/302753", "https://data.delijn.be/stops/306166"], ["https://data.delijn.be/stops/304834", "https://data.delijn.be/stops/305424"], ["https://data.delijn.be/stops/502614", "https://data.delijn.be/stops/502615"], ["https://data.delijn.be/stops/404021", "https://data.delijn.be/stops/407067"], ["https://data.delijn.be/stops/208053", "https://data.delijn.be/stops/209053"], ["https://data.delijn.be/stops/504261", "https://data.delijn.be/stops/509259"], ["https://data.delijn.be/stops/109693", "https://data.delijn.be/stops/109720"], ["https://data.delijn.be/stops/105302", "https://data.delijn.be/stops/105306"], ["https://data.delijn.be/stops/107148", "https://data.delijn.be/stops/107551"], ["https://data.delijn.be/stops/306948", "https://data.delijn.be/stops/306950"], ["https://data.delijn.be/stops/202483", "https://data.delijn.be/stops/203483"], ["https://data.delijn.be/stops/102748", "https://data.delijn.be/stops/107844"], ["https://data.delijn.be/stops/206842", "https://data.delijn.be/stops/207842"], ["https://data.delijn.be/stops/302909", "https://data.delijn.be/stops/302910"], ["https://data.delijn.be/stops/101312", "https://data.delijn.be/stops/101313"], ["https://data.delijn.be/stops/107043", "https://data.delijn.be/stops/108244"], ["https://data.delijn.be/stops/302163", "https://data.delijn.be/stops/302448"], ["https://data.delijn.be/stops/301995", "https://data.delijn.be/stops/307194"], ["https://data.delijn.be/stops/504102", "https://data.delijn.be/stops/504256"], ["https://data.delijn.be/stops/305732", "https://data.delijn.be/stops/305739"], ["https://data.delijn.be/stops/409360", "https://data.delijn.be/stops/409361"], ["https://data.delijn.be/stops/108648", "https://data.delijn.be/stops/108649"], ["https://data.delijn.be/stops/208065", "https://data.delijn.be/stops/208066"], ["https://data.delijn.be/stops/404378", "https://data.delijn.be/stops/404381"], ["https://data.delijn.be/stops/504773", "https://data.delijn.be/stops/508804"], ["https://data.delijn.be/stops/206704", "https://data.delijn.be/stops/301616"], ["https://data.delijn.be/stops/201563", "https://data.delijn.be/stops/204997"], ["https://data.delijn.be/stops/204305", "https://data.delijn.be/stops/205305"], ["https://data.delijn.be/stops/504370", "https://data.delijn.be/stops/509370"], ["https://data.delijn.be/stops/103722", "https://data.delijn.be/stops/108543"], ["https://data.delijn.be/stops/303470", "https://data.delijn.be/stops/303501"], ["https://data.delijn.be/stops/301558", "https://data.delijn.be/stops/301559"], ["https://data.delijn.be/stops/405856", "https://data.delijn.be/stops/405871"], ["https://data.delijn.be/stops/206701", "https://data.delijn.be/stops/304272"], ["https://data.delijn.be/stops/402527", "https://data.delijn.be/stops/402543"], ["https://data.delijn.be/stops/202033", "https://data.delijn.be/stops/203032"], ["https://data.delijn.be/stops/403797", "https://data.delijn.be/stops/403809"], ["https://data.delijn.be/stops/400221", "https://data.delijn.be/stops/409514"], ["https://data.delijn.be/stops/504592", "https://data.delijn.be/stops/509594"], ["https://data.delijn.be/stops/403396", "https://data.delijn.be/stops/403397"], ["https://data.delijn.be/stops/203406", "https://data.delijn.be/stops/203407"], ["https://data.delijn.be/stops/206363", "https://data.delijn.be/stops/207363"], ["https://data.delijn.be/stops/305080", "https://data.delijn.be/stops/305095"], ["https://data.delijn.be/stops/403146", "https://data.delijn.be/stops/403215"], ["https://data.delijn.be/stops/204062", "https://data.delijn.be/stops/204323"], ["https://data.delijn.be/stops/404513", "https://data.delijn.be/stops/408948"], ["https://data.delijn.be/stops/300399", "https://data.delijn.be/stops/304547"], ["https://data.delijn.be/stops/300780", "https://data.delijn.be/stops/307832"], ["https://data.delijn.be/stops/504114", "https://data.delijn.be/stops/504272"], ["https://data.delijn.be/stops/504944", "https://data.delijn.be/stops/509153"], ["https://data.delijn.be/stops/305443", "https://data.delijn.be/stops/305444"], ["https://data.delijn.be/stops/108035", "https://data.delijn.be/stops/108040"], ["https://data.delijn.be/stops/301648", "https://data.delijn.be/stops/301659"], ["https://data.delijn.be/stops/105168", "https://data.delijn.be/stops/105176"], ["https://data.delijn.be/stops/503823", "https://data.delijn.be/stops/505090"], ["https://data.delijn.be/stops/503456", "https://data.delijn.be/stops/504806"], ["https://data.delijn.be/stops/102610", "https://data.delijn.be/stops/106086"], ["https://data.delijn.be/stops/300311", "https://data.delijn.be/stops/302182"], ["https://data.delijn.be/stops/301598", "https://data.delijn.be/stops/304250"], ["https://data.delijn.be/stops/301655", "https://data.delijn.be/stops/307752"], ["https://data.delijn.be/stops/503406", "https://data.delijn.be/stops/508406"], ["https://data.delijn.be/stops/503208", "https://data.delijn.be/stops/503216"], ["https://data.delijn.be/stops/101172", "https://data.delijn.be/stops/101310"], ["https://data.delijn.be/stops/502472", "https://data.delijn.be/stops/509927"], ["https://data.delijn.be/stops/404510", "https://data.delijn.be/stops/404530"], ["https://data.delijn.be/stops/301329", "https://data.delijn.be/stops/306652"], ["https://data.delijn.be/stops/504542", "https://data.delijn.be/stops/505116"], ["https://data.delijn.be/stops/300739", "https://data.delijn.be/stops/300780"], ["https://data.delijn.be/stops/102169", "https://data.delijn.be/stops/108907"], ["https://data.delijn.be/stops/404113", "https://data.delijn.be/stops/404127"], ["https://data.delijn.be/stops/101722", "https://data.delijn.be/stops/102197"], ["https://data.delijn.be/stops/502667", "https://data.delijn.be/stops/505692"], ["https://data.delijn.be/stops/204342", "https://data.delijn.be/stops/204343"], ["https://data.delijn.be/stops/304448", "https://data.delijn.be/stops/304450"], ["https://data.delijn.be/stops/508122", "https://data.delijn.be/stops/508131"], ["https://data.delijn.be/stops/200247", "https://data.delijn.be/stops/201185"], ["https://data.delijn.be/stops/305205", "https://data.delijn.be/stops/305206"], ["https://data.delijn.be/stops/502054", "https://data.delijn.be/stops/507054"], ["https://data.delijn.be/stops/102169", "https://data.delijn.be/stops/102183"], ["https://data.delijn.be/stops/301079", "https://data.delijn.be/stops/308818"], ["https://data.delijn.be/stops/503415", "https://data.delijn.be/stops/508439"], ["https://data.delijn.be/stops/105199", "https://data.delijn.be/stops/108059"], ["https://data.delijn.be/stops/406711", "https://data.delijn.be/stops/407567"], ["https://data.delijn.be/stops/101465", "https://data.delijn.be/stops/101475"], ["https://data.delijn.be/stops/401776", "https://data.delijn.be/stops/401777"], ["https://data.delijn.be/stops/306944", "https://data.delijn.be/stops/306945"], ["https://data.delijn.be/stops/501511", "https://data.delijn.be/stops/506783"], ["https://data.delijn.be/stops/307642", "https://data.delijn.be/stops/307645"], ["https://data.delijn.be/stops/501283", "https://data.delijn.be/stops/501322"], ["https://data.delijn.be/stops/108197", "https://data.delijn.be/stops/108202"], ["https://data.delijn.be/stops/407840", "https://data.delijn.be/stops/407846"], ["https://data.delijn.be/stops/105588", "https://data.delijn.be/stops/105591"], ["https://data.delijn.be/stops/400491", "https://data.delijn.be/stops/407213"], ["https://data.delijn.be/stops/407385", "https://data.delijn.be/stops/407386"], ["https://data.delijn.be/stops/103265", "https://data.delijn.be/stops/107040"], ["https://data.delijn.be/stops/101956", "https://data.delijn.be/stops/108308"], ["https://data.delijn.be/stops/101421", "https://data.delijn.be/stops/107266"], ["https://data.delijn.be/stops/107230", "https://data.delijn.be/stops/108860"], ["https://data.delijn.be/stops/504330", "https://data.delijn.be/stops/509334"], ["https://data.delijn.be/stops/302160", "https://data.delijn.be/stops/302162"], ["https://data.delijn.be/stops/204424", "https://data.delijn.be/stops/205424"], ["https://data.delijn.be/stops/202372", "https://data.delijn.be/stops/202373"], ["https://data.delijn.be/stops/406989", "https://data.delijn.be/stops/408207"], ["https://data.delijn.be/stops/106581", "https://data.delijn.be/stops/107406"], ["https://data.delijn.be/stops/401761", "https://data.delijn.be/stops/401799"], ["https://data.delijn.be/stops/105964", "https://data.delijn.be/stops/107151"], ["https://data.delijn.be/stops/204587", "https://data.delijn.be/stops/205165"], ["https://data.delijn.be/stops/503405", "https://data.delijn.be/stops/503410"], ["https://data.delijn.be/stops/401431", "https://data.delijn.be/stops/401878"], ["https://data.delijn.be/stops/504169", "https://data.delijn.be/stops/504177"], ["https://data.delijn.be/stops/305577", "https://data.delijn.be/stops/308980"], ["https://data.delijn.be/stops/102726", "https://data.delijn.be/stops/205605"], ["https://data.delijn.be/stops/307404", "https://data.delijn.be/stops/308054"], ["https://data.delijn.be/stops/204650", "https://data.delijn.be/stops/205649"], ["https://data.delijn.be/stops/204673", "https://data.delijn.be/stops/204675"], ["https://data.delijn.be/stops/101036", "https://data.delijn.be/stops/205565"], ["https://data.delijn.be/stops/101035", "https://data.delijn.be/stops/102565"], ["https://data.delijn.be/stops/405146", "https://data.delijn.be/stops/405225"], ["https://data.delijn.be/stops/300660", "https://data.delijn.be/stops/301851"], ["https://data.delijn.be/stops/306395", "https://data.delijn.be/stops/306398"], ["https://data.delijn.be/stops/201851", "https://data.delijn.be/stops/203657"], ["https://data.delijn.be/stops/504381", "https://data.delijn.be/stops/504382"], ["https://data.delijn.be/stops/200156", "https://data.delijn.be/stops/200411"], ["https://data.delijn.be/stops/106588", "https://data.delijn.be/stops/107393"], ["https://data.delijn.be/stops/500561", "https://data.delijn.be/stops/506027"], ["https://data.delijn.be/stops/103305", "https://data.delijn.be/stops/107845"], ["https://data.delijn.be/stops/105070", "https://data.delijn.be/stops/105260"], ["https://data.delijn.be/stops/502583", "https://data.delijn.be/stops/507213"], ["https://data.delijn.be/stops/304689", "https://data.delijn.be/stops/304784"], ["https://data.delijn.be/stops/105113", "https://data.delijn.be/stops/105826"], ["https://data.delijn.be/stops/400776", "https://data.delijn.be/stops/406986"], ["https://data.delijn.be/stops/305598", "https://data.delijn.be/stops/308696"], ["https://data.delijn.be/stops/108679", "https://data.delijn.be/stops/306614"], ["https://data.delijn.be/stops/206886", "https://data.delijn.be/stops/206888"], ["https://data.delijn.be/stops/300353", "https://data.delijn.be/stops/300354"], ["https://data.delijn.be/stops/202418", "https://data.delijn.be/stops/203417"], ["https://data.delijn.be/stops/503847", "https://data.delijn.be/stops/508847"], ["https://data.delijn.be/stops/300619", "https://data.delijn.be/stops/300691"], ["https://data.delijn.be/stops/206541", "https://data.delijn.be/stops/207560"], ["https://data.delijn.be/stops/302571", "https://data.delijn.be/stops/302579"], ["https://data.delijn.be/stops/403848", "https://data.delijn.be/stops/403849"], ["https://data.delijn.be/stops/208135", "https://data.delijn.be/stops/208137"], ["https://data.delijn.be/stops/204467", "https://data.delijn.be/stops/204474"], ["https://data.delijn.be/stops/404989", "https://data.delijn.be/stops/404990"], ["https://data.delijn.be/stops/204687", "https://data.delijn.be/stops/204688"], ["https://data.delijn.be/stops/404339", "https://data.delijn.be/stops/404347"], ["https://data.delijn.be/stops/509725", "https://data.delijn.be/stops/509726"], ["https://data.delijn.be/stops/206554", "https://data.delijn.be/stops/206569"], ["https://data.delijn.be/stops/400905", "https://data.delijn.be/stops/401246"], ["https://data.delijn.be/stops/505664", "https://data.delijn.be/stops/509700"], ["https://data.delijn.be/stops/501690", "https://data.delijn.be/stops/506436"], ["https://data.delijn.be/stops/302499", "https://data.delijn.be/stops/302502"], ["https://data.delijn.be/stops/501560", "https://data.delijn.be/stops/509811"], ["https://data.delijn.be/stops/201835", "https://data.delijn.be/stops/201845"], ["https://data.delijn.be/stops/504208", "https://data.delijn.be/stops/504691"], ["https://data.delijn.be/stops/106021", "https://data.delijn.be/stops/109860"], ["https://data.delijn.be/stops/201208", "https://data.delijn.be/stops/203142"], ["https://data.delijn.be/stops/205049", "https://data.delijn.be/stops/205051"], ["https://data.delijn.be/stops/301448", "https://data.delijn.be/stops/307271"], ["https://data.delijn.be/stops/101666", "https://data.delijn.be/stops/108727"], ["https://data.delijn.be/stops/304104", "https://data.delijn.be/stops/304786"], ["https://data.delijn.be/stops/502321", "https://data.delijn.be/stops/507321"], ["https://data.delijn.be/stops/204242", "https://data.delijn.be/stops/205477"], ["https://data.delijn.be/stops/105716", "https://data.delijn.be/stops/105718"], ["https://data.delijn.be/stops/500208", "https://data.delijn.be/stops/504855"], ["https://data.delijn.be/stops/102655", "https://data.delijn.be/stops/103209"], ["https://data.delijn.be/stops/403294", "https://data.delijn.be/stops/403312"], ["https://data.delijn.be/stops/304151", "https://data.delijn.be/stops/304162"], ["https://data.delijn.be/stops/108852", "https://data.delijn.be/stops/108853"], ["https://data.delijn.be/stops/401409", "https://data.delijn.be/stops/300924"], ["https://data.delijn.be/stops/502529", "https://data.delijn.be/stops/505348"], ["https://data.delijn.be/stops/200929", "https://data.delijn.be/stops/204994"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/203630"], ["https://data.delijn.be/stops/304945", "https://data.delijn.be/stops/308022"], ["https://data.delijn.be/stops/504493", "https://data.delijn.be/stops/504502"], ["https://data.delijn.be/stops/201778", "https://data.delijn.be/stops/201816"], ["https://data.delijn.be/stops/204419", "https://data.delijn.be/stops/205419"], ["https://data.delijn.be/stops/101508", "https://data.delijn.be/stops/305994"], ["https://data.delijn.be/stops/502244", "https://data.delijn.be/stops/502917"], ["https://data.delijn.be/stops/102152", "https://data.delijn.be/stops/104165"], ["https://data.delijn.be/stops/502673", "https://data.delijn.be/stops/505050"], ["https://data.delijn.be/stops/208172", "https://data.delijn.be/stops/209171"], ["https://data.delijn.be/stops/103397", "https://data.delijn.be/stops/108010"], ["https://data.delijn.be/stops/508779", "https://data.delijn.be/stops/508838"], ["https://data.delijn.be/stops/104838", "https://data.delijn.be/stops/104958"], ["https://data.delijn.be/stops/201001", "https://data.delijn.be/stops/202520"], ["https://data.delijn.be/stops/504522", "https://data.delijn.be/stops/504531"], ["https://data.delijn.be/stops/301417", "https://data.delijn.be/stops/301420"], ["https://data.delijn.be/stops/303456", "https://data.delijn.be/stops/303457"], ["https://data.delijn.be/stops/106632", "https://data.delijn.be/stops/106634"], ["https://data.delijn.be/stops/407295", "https://data.delijn.be/stops/408075"], ["https://data.delijn.be/stops/203080", "https://data.delijn.be/stops/203737"], ["https://data.delijn.be/stops/505051", "https://data.delijn.be/stops/505735"], ["https://data.delijn.be/stops/200465", "https://data.delijn.be/stops/201465"], ["https://data.delijn.be/stops/404622", "https://data.delijn.be/stops/404628"], ["https://data.delijn.be/stops/204241", "https://data.delijn.be/stops/205479"], ["https://data.delijn.be/stops/302410", "https://data.delijn.be/stops/302421"], ["https://data.delijn.be/stops/108551", "https://data.delijn.be/stops/108558"], ["https://data.delijn.be/stops/208539", "https://data.delijn.be/stops/209541"], ["https://data.delijn.be/stops/207674", "https://data.delijn.be/stops/209137"], ["https://data.delijn.be/stops/200941", "https://data.delijn.be/stops/203699"], ["https://data.delijn.be/stops/208766", "https://data.delijn.be/stops/208767"], ["https://data.delijn.be/stops/301160", "https://data.delijn.be/stops/301398"], ["https://data.delijn.be/stops/302830", "https://data.delijn.be/stops/308824"], ["https://data.delijn.be/stops/204683", "https://data.delijn.be/stops/205674"], ["https://data.delijn.be/stops/108943", "https://data.delijn.be/stops/108946"], ["https://data.delijn.be/stops/103737", "https://data.delijn.be/stops/104964"], ["https://data.delijn.be/stops/200911", "https://data.delijn.be/stops/202099"], ["https://data.delijn.be/stops/104638", "https://data.delijn.be/stops/107961"], ["https://data.delijn.be/stops/108514", "https://data.delijn.be/stops/108516"], ["https://data.delijn.be/stops/300946", "https://data.delijn.be/stops/305404"], ["https://data.delijn.be/stops/206705", "https://data.delijn.be/stops/206708"], ["https://data.delijn.be/stops/202634", "https://data.delijn.be/stops/202635"], ["https://data.delijn.be/stops/206209", "https://data.delijn.be/stops/206580"], ["https://data.delijn.be/stops/106446", "https://data.delijn.be/stops/106447"], ["https://data.delijn.be/stops/203720", "https://data.delijn.be/stops/203721"], ["https://data.delijn.be/stops/506468", "https://data.delijn.be/stops/506470"], ["https://data.delijn.be/stops/202817", "https://data.delijn.be/stops/202819"], ["https://data.delijn.be/stops/200383", "https://data.delijn.be/stops/201607"], ["https://data.delijn.be/stops/401468", "https://data.delijn.be/stops/401506"], ["https://data.delijn.be/stops/304709", "https://data.delijn.be/stops/306374"], ["https://data.delijn.be/stops/408898", "https://data.delijn.be/stops/408911"], ["https://data.delijn.be/stops/504100", "https://data.delijn.be/stops/504199"], ["https://data.delijn.be/stops/303533", "https://data.delijn.be/stops/308792"], ["https://data.delijn.be/stops/301395", "https://data.delijn.be/stops/301397"], ["https://data.delijn.be/stops/404049", "https://data.delijn.be/stops/404052"], ["https://data.delijn.be/stops/401519", "https://data.delijn.be/stops/401521"], ["https://data.delijn.be/stops/107275", "https://data.delijn.be/stops/108440"], ["https://data.delijn.be/stops/304044", "https://data.delijn.be/stops/304791"], ["https://data.delijn.be/stops/302347", "https://data.delijn.be/stops/302355"], ["https://data.delijn.be/stops/409695", "https://data.delijn.be/stops/409696"], ["https://data.delijn.be/stops/404700", "https://data.delijn.be/stops/404825"], ["https://data.delijn.be/stops/304550", "https://data.delijn.be/stops/309669"], ["https://data.delijn.be/stops/400610", "https://data.delijn.be/stops/400611"], ["https://data.delijn.be/stops/204517", "https://data.delijn.be/stops/205517"], ["https://data.delijn.be/stops/502383", "https://data.delijn.be/stops/502406"], ["https://data.delijn.be/stops/407753", "https://data.delijn.be/stops/409793"], ["https://data.delijn.be/stops/405436", "https://data.delijn.be/stops/408734"], ["https://data.delijn.be/stops/106851", "https://data.delijn.be/stops/107232"], ["https://data.delijn.be/stops/402517", "https://data.delijn.be/stops/402519"], ["https://data.delijn.be/stops/205489", "https://data.delijn.be/stops/205820"], ["https://data.delijn.be/stops/208357", "https://data.delijn.be/stops/209184"], ["https://data.delijn.be/stops/102785", "https://data.delijn.be/stops/103100"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/510008"], ["https://data.delijn.be/stops/504104", "https://data.delijn.be/stops/505299"], ["https://data.delijn.be/stops/200189", "https://data.delijn.be/stops/200400"], ["https://data.delijn.be/stops/206321", "https://data.delijn.be/stops/207146"], ["https://data.delijn.be/stops/301255", "https://data.delijn.be/stops/301256"], ["https://data.delijn.be/stops/108699", "https://data.delijn.be/stops/108700"], ["https://data.delijn.be/stops/105739", "https://data.delijn.be/stops/105741"], ["https://data.delijn.be/stops/205085", "https://data.delijn.be/stops/205410"], ["https://data.delijn.be/stops/202149", "https://data.delijn.be/stops/202617"], ["https://data.delijn.be/stops/107462", "https://data.delijn.be/stops/109199"], ["https://data.delijn.be/stops/109966", "https://data.delijn.be/stops/109967"], ["https://data.delijn.be/stops/300940", "https://data.delijn.be/stops/304720"], ["https://data.delijn.be/stops/202253", "https://data.delijn.be/stops/203254"], ["https://data.delijn.be/stops/304149", "https://data.delijn.be/stops/304161"], ["https://data.delijn.be/stops/410135", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/103062", "https://data.delijn.be/stops/103988"], ["https://data.delijn.be/stops/302650", "https://data.delijn.be/stops/308120"], ["https://data.delijn.be/stops/104971", "https://data.delijn.be/stops/105294"], ["https://data.delijn.be/stops/109263", "https://data.delijn.be/stops/407110"], ["https://data.delijn.be/stops/206928", "https://data.delijn.be/stops/206930"], ["https://data.delijn.be/stops/300327", "https://data.delijn.be/stops/308991"], ["https://data.delijn.be/stops/404594", "https://data.delijn.be/stops/404604"], ["https://data.delijn.be/stops/302464", "https://data.delijn.be/stops/302732"], ["https://data.delijn.be/stops/107840", "https://data.delijn.be/stops/108590"], ["https://data.delijn.be/stops/108744", "https://data.delijn.be/stops/109561"], ["https://data.delijn.be/stops/203189", "https://data.delijn.be/stops/203242"], ["https://data.delijn.be/stops/503395", "https://data.delijn.be/stops/504793"], ["https://data.delijn.be/stops/207460", "https://data.delijn.be/stops/207461"], ["https://data.delijn.be/stops/402506", "https://data.delijn.be/stops/402588"], ["https://data.delijn.be/stops/504139", "https://data.delijn.be/stops/509142"], ["https://data.delijn.be/stops/106219", "https://data.delijn.be/stops/106322"], ["https://data.delijn.be/stops/300841", "https://data.delijn.be/stops/333454"], ["https://data.delijn.be/stops/104802", "https://data.delijn.be/stops/109790"], ["https://data.delijn.be/stops/302887", "https://data.delijn.be/stops/302924"], ["https://data.delijn.be/stops/306719", "https://data.delijn.be/stops/306721"], ["https://data.delijn.be/stops/204348", "https://data.delijn.be/stops/204667"], ["https://data.delijn.be/stops/405920", "https://data.delijn.be/stops/405935"], ["https://data.delijn.be/stops/200368", "https://data.delijn.be/stops/200384"], ["https://data.delijn.be/stops/401121", "https://data.delijn.be/stops/401150"], ["https://data.delijn.be/stops/300665", "https://data.delijn.be/stops/306886"], ["https://data.delijn.be/stops/206281", "https://data.delijn.be/stops/207282"], ["https://data.delijn.be/stops/204340", "https://data.delijn.be/stops/204510"], ["https://data.delijn.be/stops/402886", "https://data.delijn.be/stops/405536"], ["https://data.delijn.be/stops/400898", "https://data.delijn.be/stops/409641"], ["https://data.delijn.be/stops/503059", "https://data.delijn.be/stops/504996"], ["https://data.delijn.be/stops/505351", "https://data.delijn.be/stops/505725"], ["https://data.delijn.be/stops/104034", "https://data.delijn.be/stops/204609"], ["https://data.delijn.be/stops/403341", "https://data.delijn.be/stops/403348"], ["https://data.delijn.be/stops/107477", "https://data.delijn.be/stops/107482"], ["https://data.delijn.be/stops/300524", "https://data.delijn.be/stops/304891"], ["https://data.delijn.be/stops/504758", "https://data.delijn.be/stops/509758"], ["https://data.delijn.be/stops/202093", "https://data.delijn.be/stops/203093"], ["https://data.delijn.be/stops/301229", "https://data.delijn.be/stops/308790"], ["https://data.delijn.be/stops/407853", "https://data.delijn.be/stops/408138"], ["https://data.delijn.be/stops/504324", "https://data.delijn.be/stops/504404"], ["https://data.delijn.be/stops/200760", "https://data.delijn.be/stops/200777"], ["https://data.delijn.be/stops/501145", "https://data.delijn.be/stops/501678"], ["https://data.delijn.be/stops/304765", "https://data.delijn.be/stops/304768"], ["https://data.delijn.be/stops/109133", "https://data.delijn.be/stops/109136"], ["https://data.delijn.be/stops/502805", "https://data.delijn.be/stops/507500"], ["https://data.delijn.be/stops/300293", "https://data.delijn.be/stops/300294"], ["https://data.delijn.be/stops/206863", "https://data.delijn.be/stops/207031"], ["https://data.delijn.be/stops/502496", "https://data.delijn.be/stops/505591"], ["https://data.delijn.be/stops/509435", "https://data.delijn.be/stops/509440"], ["https://data.delijn.be/stops/206820", "https://data.delijn.be/stops/207821"], ["https://data.delijn.be/stops/203443", "https://data.delijn.be/stops/203444"], ["https://data.delijn.be/stops/104579", "https://data.delijn.be/stops/107887"], ["https://data.delijn.be/stops/502928", "https://data.delijn.be/stops/509828"], ["https://data.delijn.be/stops/302302", "https://data.delijn.be/stops/302322"], ["https://data.delijn.be/stops/407910", "https://data.delijn.be/stops/407911"], ["https://data.delijn.be/stops/307693", "https://data.delijn.be/stops/307694"], ["https://data.delijn.be/stops/105249", "https://data.delijn.be/stops/105842"], ["https://data.delijn.be/stops/507001", "https://data.delijn.be/stops/507039"], ["https://data.delijn.be/stops/201125", "https://data.delijn.be/stops/502274"], ["https://data.delijn.be/stops/200746", "https://data.delijn.be/stops/201773"], ["https://data.delijn.be/stops/208772", "https://data.delijn.be/stops/209789"], ["https://data.delijn.be/stops/202830", "https://data.delijn.be/stops/203947"], ["https://data.delijn.be/stops/204418", "https://data.delijn.be/stops/205762"], ["https://data.delijn.be/stops/202209", "https://data.delijn.be/stops/202503"], ["https://data.delijn.be/stops/407422", "https://data.delijn.be/stops/407426"], ["https://data.delijn.be/stops/200605", "https://data.delijn.be/stops/201603"], ["https://data.delijn.be/stops/302706", "https://data.delijn.be/stops/302730"], ["https://data.delijn.be/stops/204156", "https://data.delijn.be/stops/205581"], ["https://data.delijn.be/stops/304784", "https://data.delijn.be/stops/304796"], ["https://data.delijn.be/stops/505725", "https://data.delijn.be/stops/507286"], ["https://data.delijn.be/stops/401434", "https://data.delijn.be/stops/401435"], ["https://data.delijn.be/stops/406711", "https://data.delijn.be/stops/407901"], ["https://data.delijn.be/stops/303559", "https://data.delijn.be/stops/307989"], ["https://data.delijn.be/stops/107559", "https://data.delijn.be/stops/107563"], ["https://data.delijn.be/stops/203115", "https://data.delijn.be/stops/205796"], ["https://data.delijn.be/stops/405839", "https://data.delijn.be/stops/406874"], ["https://data.delijn.be/stops/504518", "https://data.delijn.be/stops/509517"], ["https://data.delijn.be/stops/102193", "https://data.delijn.be/stops/105929"], ["https://data.delijn.be/stops/103746", "https://data.delijn.be/stops/105794"], ["https://data.delijn.be/stops/403018", "https://data.delijn.be/stops/404260"], ["https://data.delijn.be/stops/304783", "https://data.delijn.be/stops/304784"], ["https://data.delijn.be/stops/408590", "https://data.delijn.be/stops/408592"], ["https://data.delijn.be/stops/407707", "https://data.delijn.be/stops/409626"], ["https://data.delijn.be/stops/410199", "https://data.delijn.be/stops/410263"], ["https://data.delijn.be/stops/105613", "https://data.delijn.be/stops/105616"], ["https://data.delijn.be/stops/400721", "https://data.delijn.be/stops/409504"], ["https://data.delijn.be/stops/101689", "https://data.delijn.be/stops/103694"], ["https://data.delijn.be/stops/502321", "https://data.delijn.be/stops/505575"], ["https://data.delijn.be/stops/307308", "https://data.delijn.be/stops/307335"], ["https://data.delijn.be/stops/102055", "https://data.delijn.be/stops/102056"], ["https://data.delijn.be/stops/206016", "https://data.delijn.be/stops/207387"], ["https://data.delijn.be/stops/105896", "https://data.delijn.be/stops/105934"], ["https://data.delijn.be/stops/105337", "https://data.delijn.be/stops/105338"], ["https://data.delijn.be/stops/205149", "https://data.delijn.be/stops/205156"], ["https://data.delijn.be/stops/208149", "https://data.delijn.be/stops/208153"], ["https://data.delijn.be/stops/305150", "https://data.delijn.be/stops/305168"], ["https://data.delijn.be/stops/300330", "https://data.delijn.be/stops/308991"], ["https://data.delijn.be/stops/102289", "https://data.delijn.be/stops/109636"], ["https://data.delijn.be/stops/405664", "https://data.delijn.be/stops/405713"], ["https://data.delijn.be/stops/208500", "https://data.delijn.be/stops/209500"], ["https://data.delijn.be/stops/302609", "https://data.delijn.be/stops/302616"], ["https://data.delijn.be/stops/305796", "https://data.delijn.be/stops/305798"], ["https://data.delijn.be/stops/301705", "https://data.delijn.be/stops/301706"], ["https://data.delijn.be/stops/503543", "https://data.delijn.be/stops/508563"], ["https://data.delijn.be/stops/404350", "https://data.delijn.be/stops/404897"], ["https://data.delijn.be/stops/406269", "https://data.delijn.be/stops/406294"], ["https://data.delijn.be/stops/400663", "https://data.delijn.be/stops/408957"], ["https://data.delijn.be/stops/207761", "https://data.delijn.be/stops/207782"], ["https://data.delijn.be/stops/101205", "https://data.delijn.be/stops/102400"], ["https://data.delijn.be/stops/404891", "https://data.delijn.be/stops/404900"], ["https://data.delijn.be/stops/103525", "https://data.delijn.be/stops/103530"], ["https://data.delijn.be/stops/508074", "https://data.delijn.be/stops/508522"], ["https://data.delijn.be/stops/501217", "https://data.delijn.be/stops/506422"], ["https://data.delijn.be/stops/109254", "https://data.delijn.be/stops/109256"], ["https://data.delijn.be/stops/207672", "https://data.delijn.be/stops/207936"], ["https://data.delijn.be/stops/202100", "https://data.delijn.be/stops/203257"], ["https://data.delijn.be/stops/201257", "https://data.delijn.be/stops/202541"], ["https://data.delijn.be/stops/402100", "https://data.delijn.be/stops/402332"], ["https://data.delijn.be/stops/304911", "https://data.delijn.be/stops/306407"], ["https://data.delijn.be/stops/509243", "https://data.delijn.be/stops/509244"], ["https://data.delijn.be/stops/403428", "https://data.delijn.be/stops/410209"], ["https://data.delijn.be/stops/405259", "https://data.delijn.be/stops/405272"], ["https://data.delijn.be/stops/101943", "https://data.delijn.be/stops/108757"], ["https://data.delijn.be/stops/208200", "https://data.delijn.be/stops/209200"], ["https://data.delijn.be/stops/502477", "https://data.delijn.be/stops/507474"], ["https://data.delijn.be/stops/203204", "https://data.delijn.be/stops/203205"], ["https://data.delijn.be/stops/304713", "https://data.delijn.be/stops/305121"], ["https://data.delijn.be/stops/108211", "https://data.delijn.be/stops/108212"], ["https://data.delijn.be/stops/410129", "https://data.delijn.be/stops/410289"], ["https://data.delijn.be/stops/301739", "https://data.delijn.be/stops/301740"], ["https://data.delijn.be/stops/107186", "https://data.delijn.be/stops/107188"], ["https://data.delijn.be/stops/208590", "https://data.delijn.be/stops/307024"], ["https://data.delijn.be/stops/300258", "https://data.delijn.be/stops/303825"], ["https://data.delijn.be/stops/502562", "https://data.delijn.be/stops/507562"], ["https://data.delijn.be/stops/204484", "https://data.delijn.be/stops/204759"], ["https://data.delijn.be/stops/207888", "https://data.delijn.be/stops/207892"], ["https://data.delijn.be/stops/507490", "https://data.delijn.be/stops/507494"], ["https://data.delijn.be/stops/101576", "https://data.delijn.be/stops/105461"], ["https://data.delijn.be/stops/200811", "https://data.delijn.be/stops/202049"], ["https://data.delijn.be/stops/209539", "https://data.delijn.be/stops/209559"], ["https://data.delijn.be/stops/203392", "https://data.delijn.be/stops/203393"], ["https://data.delijn.be/stops/304370", "https://data.delijn.be/stops/307385"], ["https://data.delijn.be/stops/208426", "https://data.delijn.be/stops/208431"], ["https://data.delijn.be/stops/101368", "https://data.delijn.be/stops/103242"], ["https://data.delijn.be/stops/406200", "https://data.delijn.be/stops/410401"], ["https://data.delijn.be/stops/406975", "https://data.delijn.be/stops/409467"], ["https://data.delijn.be/stops/306677", "https://data.delijn.be/stops/306680"], ["https://data.delijn.be/stops/108064", "https://data.delijn.be/stops/108066"], ["https://data.delijn.be/stops/106243", "https://data.delijn.be/stops/106244"], ["https://data.delijn.be/stops/305320", "https://data.delijn.be/stops/305321"], ["https://data.delijn.be/stops/102540", "https://data.delijn.be/stops/104965"], ["https://data.delijn.be/stops/502504", "https://data.delijn.be/stops/507504"], ["https://data.delijn.be/stops/101315", "https://data.delijn.be/stops/108370"], ["https://data.delijn.be/stops/108401", "https://data.delijn.be/stops/306637"], ["https://data.delijn.be/stops/504255", "https://data.delijn.be/stops/509237"], ["https://data.delijn.be/stops/103645", "https://data.delijn.be/stops/103650"], ["https://data.delijn.be/stops/108423", "https://data.delijn.be/stops/109568"], ["https://data.delijn.be/stops/103241", "https://data.delijn.be/stops/107298"], ["https://data.delijn.be/stops/107493", "https://data.delijn.be/stops/305795"], ["https://data.delijn.be/stops/402235", "https://data.delijn.be/stops/402291"], ["https://data.delijn.be/stops/503463", "https://data.delijn.be/stops/508191"], ["https://data.delijn.be/stops/208470", "https://data.delijn.be/stops/209673"], ["https://data.delijn.be/stops/405890", "https://data.delijn.be/stops/405891"], ["https://data.delijn.be/stops/405031", "https://data.delijn.be/stops/405033"], ["https://data.delijn.be/stops/502201", "https://data.delijn.be/stops/505608"], ["https://data.delijn.be/stops/204036", "https://data.delijn.be/stops/205037"], ["https://data.delijn.be/stops/204122", "https://data.delijn.be/stops/214005"], ["https://data.delijn.be/stops/107249", "https://data.delijn.be/stops/107250"], ["https://data.delijn.be/stops/303980", "https://data.delijn.be/stops/306594"], ["https://data.delijn.be/stops/308473", "https://data.delijn.be/stops/308474"], ["https://data.delijn.be/stops/408844", "https://data.delijn.be/stops/408847"], ["https://data.delijn.be/stops/208062", "https://data.delijn.be/stops/209511"], ["https://data.delijn.be/stops/105887", "https://data.delijn.be/stops/105894"], ["https://data.delijn.be/stops/208339", "https://data.delijn.be/stops/209339"], ["https://data.delijn.be/stops/505825", "https://data.delijn.be/stops/508337"], ["https://data.delijn.be/stops/301440", "https://data.delijn.be/stops/302129"], ["https://data.delijn.be/stops/201205", "https://data.delijn.be/stops/201255"], ["https://data.delijn.be/stops/505310", "https://data.delijn.be/stops/507348"], ["https://data.delijn.be/stops/501608", "https://data.delijn.be/stops/501609"], ["https://data.delijn.be/stops/307720", "https://data.delijn.be/stops/307721"], ["https://data.delijn.be/stops/108919", "https://data.delijn.be/stops/109412"], ["https://data.delijn.be/stops/104366", "https://data.delijn.be/stops/104398"], ["https://data.delijn.be/stops/102293", "https://data.delijn.be/stops/107978"], ["https://data.delijn.be/stops/304931", "https://data.delijn.be/stops/304933"], ["https://data.delijn.be/stops/407241", "https://data.delijn.be/stops/407242"], ["https://data.delijn.be/stops/202743", "https://data.delijn.be/stops/203856"], ["https://data.delijn.be/stops/302311", "https://data.delijn.be/stops/304103"], ["https://data.delijn.be/stops/503255", "https://data.delijn.be/stops/509793"], ["https://data.delijn.be/stops/407745", "https://data.delijn.be/stops/409878"], ["https://data.delijn.be/stops/300077", "https://data.delijn.be/stops/306788"], ["https://data.delijn.be/stops/101703", "https://data.delijn.be/stops/103348"], ["https://data.delijn.be/stops/503366", "https://data.delijn.be/stops/503411"], ["https://data.delijn.be/stops/103088", "https://data.delijn.be/stops/107468"], ["https://data.delijn.be/stops/502100", "https://data.delijn.be/stops/507100"], ["https://data.delijn.be/stops/300541", "https://data.delijn.be/stops/303219"], ["https://data.delijn.be/stops/205978", "https://data.delijn.be/stops/209244"], ["https://data.delijn.be/stops/307025", "https://data.delijn.be/stops/307534"], ["https://data.delijn.be/stops/106110", "https://data.delijn.be/stops/106172"], ["https://data.delijn.be/stops/200419", "https://data.delijn.be/stops/201419"], ["https://data.delijn.be/stops/403703", "https://data.delijn.be/stops/404264"], ["https://data.delijn.be/stops/401157", "https://data.delijn.be/stops/407091"], ["https://data.delijn.be/stops/509609", "https://data.delijn.be/stops/509613"], ["https://data.delijn.be/stops/107956", "https://data.delijn.be/stops/109776"], ["https://data.delijn.be/stops/407505", "https://data.delijn.be/stops/407512"], ["https://data.delijn.be/stops/300570", "https://data.delijn.be/stops/303622"], ["https://data.delijn.be/stops/405448", "https://data.delijn.be/stops/407567"], ["https://data.delijn.be/stops/101178", "https://data.delijn.be/stops/106739"], ["https://data.delijn.be/stops/503090", "https://data.delijn.be/stops/508093"], ["https://data.delijn.be/stops/200909", "https://data.delijn.be/stops/202051"], ["https://data.delijn.be/stops/404340", "https://data.delijn.be/stops/404344"], ["https://data.delijn.be/stops/404478", "https://data.delijn.be/stops/408171"], ["https://data.delijn.be/stops/501768", "https://data.delijn.be/stops/502473"], ["https://data.delijn.be/stops/206746", "https://data.delijn.be/stops/207712"], ["https://data.delijn.be/stops/305228", "https://data.delijn.be/stops/305890"], ["https://data.delijn.be/stops/405823", "https://data.delijn.be/stops/405832"], ["https://data.delijn.be/stops/200649", "https://data.delijn.be/stops/201585"], ["https://data.delijn.be/stops/209077", "https://data.delijn.be/stops/209540"], ["https://data.delijn.be/stops/503637", "https://data.delijn.be/stops/508313"], ["https://data.delijn.be/stops/305450", "https://data.delijn.be/stops/307535"], ["https://data.delijn.be/stops/302994", "https://data.delijn.be/stops/306298"], ["https://data.delijn.be/stops/402120", "https://data.delijn.be/stops/402121"], ["https://data.delijn.be/stops/306965", "https://data.delijn.be/stops/306966"], ["https://data.delijn.be/stops/105627", "https://data.delijn.be/stops/107169"], ["https://data.delijn.be/stops/503328", "https://data.delijn.be/stops/508328"], ["https://data.delijn.be/stops/206903", "https://data.delijn.be/stops/207075"], ["https://data.delijn.be/stops/200518", "https://data.delijn.be/stops/200550"], ["https://data.delijn.be/stops/502230", "https://data.delijn.be/stops/507917"], ["https://data.delijn.be/stops/206033", "https://data.delijn.be/stops/206214"], ["https://data.delijn.be/stops/305037", "https://data.delijn.be/stops/305039"], ["https://data.delijn.be/stops/401488", "https://data.delijn.be/stops/401500"], ["https://data.delijn.be/stops/507479", "https://data.delijn.be/stops/507482"], ["https://data.delijn.be/stops/501241", "https://data.delijn.be/stops/506371"], ["https://data.delijn.be/stops/201633", "https://data.delijn.be/stops/201637"], ["https://data.delijn.be/stops/201859", "https://data.delijn.be/stops/210037"], ["https://data.delijn.be/stops/204202", "https://data.delijn.be/stops/205203"], ["https://data.delijn.be/stops/404691", "https://data.delijn.be/stops/409499"], ["https://data.delijn.be/stops/207865", "https://data.delijn.be/stops/208746"], ["https://data.delijn.be/stops/507688", "https://data.delijn.be/stops/508774"], ["https://data.delijn.be/stops/103162", "https://data.delijn.be/stops/109932"], ["https://data.delijn.be/stops/208525", "https://data.delijn.be/stops/209044"], ["https://data.delijn.be/stops/301532", "https://data.delijn.be/stops/301533"], ["https://data.delijn.be/stops/302438", "https://data.delijn.be/stops/302445"], ["https://data.delijn.be/stops/501149", "https://data.delijn.be/stops/506147"], ["https://data.delijn.be/stops/106771", "https://data.delijn.be/stops/106808"], ["https://data.delijn.be/stops/503080", "https://data.delijn.be/stops/509951"], ["https://data.delijn.be/stops/301645", "https://data.delijn.be/stops/302108"], ["https://data.delijn.be/stops/401219", "https://data.delijn.be/stops/401226"], ["https://data.delijn.be/stops/303103", "https://data.delijn.be/stops/303104"], ["https://data.delijn.be/stops/102600", "https://data.delijn.be/stops/103636"], ["https://data.delijn.be/stops/502392", "https://data.delijn.be/stops/507379"], ["https://data.delijn.be/stops/400146", "https://data.delijn.be/stops/409207"], ["https://data.delijn.be/stops/107482", "https://data.delijn.be/stops/107483"], ["https://data.delijn.be/stops/501200", "https://data.delijn.be/stops/501202"], ["https://data.delijn.be/stops/504043", "https://data.delijn.be/stops/509047"], ["https://data.delijn.be/stops/302805", "https://data.delijn.be/stops/308866"], ["https://data.delijn.be/stops/102646", "https://data.delijn.be/stops/107927"], ["https://data.delijn.be/stops/104846", "https://data.delijn.be/stops/106864"], ["https://data.delijn.be/stops/206355", "https://data.delijn.be/stops/207345"], ["https://data.delijn.be/stops/200259", "https://data.delijn.be/stops/201259"], ["https://data.delijn.be/stops/306691", "https://data.delijn.be/stops/306694"], ["https://data.delijn.be/stops/504040", "https://data.delijn.be/stops/509343"], ["https://data.delijn.be/stops/406212", "https://data.delijn.be/stops/406215"], ["https://data.delijn.be/stops/506410", "https://data.delijn.be/stops/506414"], ["https://data.delijn.be/stops/109801", "https://data.delijn.be/stops/109804"], ["https://data.delijn.be/stops/206540", "https://data.delijn.be/stops/206552"], ["https://data.delijn.be/stops/402243", "https://data.delijn.be/stops/402329"], ["https://data.delijn.be/stops/206234", "https://data.delijn.be/stops/207234"], ["https://data.delijn.be/stops/302269", "https://data.delijn.be/stops/302271"], ["https://data.delijn.be/stops/204481", "https://data.delijn.be/stops/205481"], ["https://data.delijn.be/stops/206610", "https://data.delijn.be/stops/207610"], ["https://data.delijn.be/stops/407949", "https://data.delijn.be/stops/407983"], ["https://data.delijn.be/stops/108052", "https://data.delijn.be/stops/307903"], ["https://data.delijn.be/stops/306118", "https://data.delijn.be/stops/306120"], ["https://data.delijn.be/stops/503479", "https://data.delijn.be/stops/504253"], ["https://data.delijn.be/stops/204711", "https://data.delijn.be/stops/205722"], ["https://data.delijn.be/stops/300306", "https://data.delijn.be/stops/306270"], ["https://data.delijn.be/stops/304010", "https://data.delijn.be/stops/307996"], ["https://data.delijn.be/stops/201769", "https://data.delijn.be/stops/218011"], ["https://data.delijn.be/stops/401200", "https://data.delijn.be/stops/401351"], ["https://data.delijn.be/stops/402704", "https://data.delijn.be/stops/402708"], ["https://data.delijn.be/stops/300275", "https://data.delijn.be/stops/300276"], ["https://data.delijn.be/stops/304142", "https://data.delijn.be/stops/307546"], ["https://data.delijn.be/stops/304724", "https://data.delijn.be/stops/305581"], ["https://data.delijn.be/stops/207664", "https://data.delijn.be/stops/209675"], ["https://data.delijn.be/stops/502685", "https://data.delijn.be/stops/508021"], ["https://data.delijn.be/stops/501512", "https://data.delijn.be/stops/506512"], ["https://data.delijn.be/stops/202098", "https://data.delijn.be/stops/203098"], ["https://data.delijn.be/stops/307295", "https://data.delijn.be/stops/307944"], ["https://data.delijn.be/stops/203873", "https://data.delijn.be/stops/209712"], ["https://data.delijn.be/stops/106746", "https://data.delijn.be/stops/109775"], ["https://data.delijn.be/stops/400772", "https://data.delijn.be/stops/400773"], ["https://data.delijn.be/stops/306392", "https://data.delijn.be/stops/306393"], ["https://data.delijn.be/stops/502350", "https://data.delijn.be/stops/505232"], ["https://data.delijn.be/stops/206773", "https://data.delijn.be/stops/209091"], ["https://data.delijn.be/stops/200357", "https://data.delijn.be/stops/203646"], ["https://data.delijn.be/stops/406735", "https://data.delijn.be/stops/407627"], ["https://data.delijn.be/stops/302629", "https://data.delijn.be/stops/302655"], ["https://data.delijn.be/stops/505945", "https://data.delijn.be/stops/509876"], ["https://data.delijn.be/stops/409737", "https://data.delijn.be/stops/409759"], ["https://data.delijn.be/stops/200764", "https://data.delijn.be/stops/200776"], ["https://data.delijn.be/stops/300124", "https://data.delijn.be/stops/300147"], ["https://data.delijn.be/stops/403954", "https://data.delijn.be/stops/404028"], ["https://data.delijn.be/stops/206369", "https://data.delijn.be/stops/207369"], ["https://data.delijn.be/stops/103121", "https://data.delijn.be/stops/104126"], ["https://data.delijn.be/stops/207630", "https://data.delijn.be/stops/209571"], ["https://data.delijn.be/stops/509760", "https://data.delijn.be/stops/509907"], ["https://data.delijn.be/stops/305957", "https://data.delijn.be/stops/306744"], ["https://data.delijn.be/stops/208478", "https://data.delijn.be/stops/209477"], ["https://data.delijn.be/stops/107664", "https://data.delijn.be/stops/109105"], ["https://data.delijn.be/stops/501284", "https://data.delijn.be/stops/506284"], ["https://data.delijn.be/stops/205292", "https://data.delijn.be/stops/205761"], ["https://data.delijn.be/stops/501642", "https://data.delijn.be/stops/501674"], ["https://data.delijn.be/stops/202137", "https://data.delijn.be/stops/203138"], ["https://data.delijn.be/stops/102951", "https://data.delijn.be/stops/106030"], ["https://data.delijn.be/stops/400227", "https://data.delijn.be/stops/410001"], ["https://data.delijn.be/stops/502559", "https://data.delijn.be/stops/505335"], ["https://data.delijn.be/stops/206669", "https://data.delijn.be/stops/209779"], ["https://data.delijn.be/stops/302130", "https://data.delijn.be/stops/305597"], ["https://data.delijn.be/stops/101722", "https://data.delijn.be/stops/105262"], ["https://data.delijn.be/stops/302705", "https://data.delijn.be/stops/302730"], ["https://data.delijn.be/stops/407241", "https://data.delijn.be/stops/407455"], ["https://data.delijn.be/stops/402853", "https://data.delijn.be/stops/402891"], ["https://data.delijn.be/stops/503856", "https://data.delijn.be/stops/503860"], ["https://data.delijn.be/stops/504430", "https://data.delijn.be/stops/505998"], ["https://data.delijn.be/stops/400400", "https://data.delijn.be/stops/400962"], ["https://data.delijn.be/stops/405473", "https://data.delijn.be/stops/406552"], ["https://data.delijn.be/stops/307695", "https://data.delijn.be/stops/307697"], ["https://data.delijn.be/stops/102763", "https://data.delijn.be/stops/105586"], ["https://data.delijn.be/stops/503388", "https://data.delijn.be/stops/508388"], ["https://data.delijn.be/stops/102150", "https://data.delijn.be/stops/102443"], ["https://data.delijn.be/stops/201325", "https://data.delijn.be/stops/210085"], ["https://data.delijn.be/stops/408770", "https://data.delijn.be/stops/408772"], ["https://data.delijn.be/stops/103975", "https://data.delijn.be/stops/104645"], ["https://data.delijn.be/stops/101019", "https://data.delijn.be/stops/105625"], ["https://data.delijn.be/stops/505242", "https://data.delijn.be/stops/507254"], ["https://data.delijn.be/stops/305062", "https://data.delijn.be/stops/305063"], ["https://data.delijn.be/stops/201138", "https://data.delijn.be/stops/201308"], ["https://data.delijn.be/stops/200278", "https://data.delijn.be/stops/200995"], ["https://data.delijn.be/stops/306683", "https://data.delijn.be/stops/306684"], ["https://data.delijn.be/stops/402669", "https://data.delijn.be/stops/402670"], ["https://data.delijn.be/stops/308470", "https://data.delijn.be/stops/308519"], ["https://data.delijn.be/stops/306110", "https://data.delijn.be/stops/306111"], ["https://data.delijn.be/stops/202615", "https://data.delijn.be/stops/202616"], ["https://data.delijn.be/stops/106423", "https://data.delijn.be/stops/106558"], ["https://data.delijn.be/stops/206983", "https://data.delijn.be/stops/301228"], ["https://data.delijn.be/stops/201001", "https://data.delijn.be/stops/203521"], ["https://data.delijn.be/stops/102158", "https://data.delijn.be/stops/104966"], ["https://data.delijn.be/stops/403008", "https://data.delijn.be/stops/410279"], ["https://data.delijn.be/stops/510023", "https://data.delijn.be/stops/510024"], ["https://data.delijn.be/stops/402107", "https://data.delijn.be/stops/402263"], ["https://data.delijn.be/stops/405612", "https://data.delijn.be/stops/407179"], ["https://data.delijn.be/stops/402264", "https://data.delijn.be/stops/402423"], ["https://data.delijn.be/stops/307827", "https://data.delijn.be/stops/307878"], ["https://data.delijn.be/stops/503783", "https://data.delijn.be/stops/508782"], ["https://data.delijn.be/stops/404058", "https://data.delijn.be/stops/406856"], ["https://data.delijn.be/stops/505558", "https://data.delijn.be/stops/509940"], ["https://data.delijn.be/stops/402805", "https://data.delijn.be/stops/406010"], ["https://data.delijn.be/stops/505130", "https://data.delijn.be/stops/508035"], ["https://data.delijn.be/stops/406613", "https://data.delijn.be/stops/406614"], ["https://data.delijn.be/stops/204181", "https://data.delijn.be/stops/205368"], ["https://data.delijn.be/stops/206880", "https://data.delijn.be/stops/207356"], ["https://data.delijn.be/stops/202531", "https://data.delijn.be/stops/203965"], ["https://data.delijn.be/stops/402245", "https://data.delijn.be/stops/409393"], ["https://data.delijn.be/stops/408550", "https://data.delijn.be/stops/408706"], ["https://data.delijn.be/stops/300338", "https://data.delijn.be/stops/307030"], ["https://data.delijn.be/stops/409768", "https://data.delijn.be/stops/409770"], ["https://data.delijn.be/stops/406812", "https://data.delijn.be/stops/406813"], ["https://data.delijn.be/stops/101760", "https://data.delijn.be/stops/103492"], ["https://data.delijn.be/stops/502417", "https://data.delijn.be/stops/502750"], ["https://data.delijn.be/stops/101640", "https://data.delijn.be/stops/108645"], ["https://data.delijn.be/stops/208536", "https://data.delijn.be/stops/209536"], ["https://data.delijn.be/stops/503686", "https://data.delijn.be/stops/508684"], ["https://data.delijn.be/stops/303442", "https://data.delijn.be/stops/303443"], ["https://data.delijn.be/stops/102255", "https://data.delijn.be/stops/103535"], ["https://data.delijn.be/stops/305956", "https://data.delijn.be/stops/305957"], ["https://data.delijn.be/stops/401224", "https://data.delijn.be/stops/401225"], ["https://data.delijn.be/stops/207309", "https://data.delijn.be/stops/207356"], ["https://data.delijn.be/stops/408640", "https://data.delijn.be/stops/408714"], ["https://data.delijn.be/stops/407537", "https://data.delijn.be/stops/409113"], ["https://data.delijn.be/stops/206990", "https://data.delijn.be/stops/301446"], ["https://data.delijn.be/stops/403570", "https://data.delijn.be/stops/403571"], ["https://data.delijn.be/stops/201915", "https://data.delijn.be/stops/202951"], ["https://data.delijn.be/stops/401629", "https://data.delijn.be/stops/308217"], ["https://data.delijn.be/stops/102308", "https://data.delijn.be/stops/105657"], ["https://data.delijn.be/stops/204500", "https://data.delijn.be/stops/204546"], ["https://data.delijn.be/stops/504774", "https://data.delijn.be/stops/508584"], ["https://data.delijn.be/stops/202159", "https://data.delijn.be/stops/203159"], ["https://data.delijn.be/stops/505794", "https://data.delijn.be/stops/509372"], ["https://data.delijn.be/stops/101218", "https://data.delijn.be/stops/101658"], ["https://data.delijn.be/stops/301261", "https://data.delijn.be/stops/307392"], ["https://data.delijn.be/stops/107346", "https://data.delijn.be/stops/107348"], ["https://data.delijn.be/stops/403772", "https://data.delijn.be/stops/403774"], ["https://data.delijn.be/stops/204644", "https://data.delijn.be/stops/205644"], ["https://data.delijn.be/stops/206723", "https://data.delijn.be/stops/207985"], ["https://data.delijn.be/stops/503746", "https://data.delijn.be/stops/508749"], ["https://data.delijn.be/stops/209600", "https://data.delijn.be/stops/307306"], ["https://data.delijn.be/stops/304401", "https://data.delijn.be/stops/307416"], ["https://data.delijn.be/stops/401584", "https://data.delijn.be/stops/401585"], ["https://data.delijn.be/stops/101488", "https://data.delijn.be/stops/101489"], ["https://data.delijn.be/stops/103005", "https://data.delijn.be/stops/103601"], ["https://data.delijn.be/stops/503364", "https://data.delijn.be/stops/508725"], ["https://data.delijn.be/stops/503265", "https://data.delijn.be/stops/508945"], ["https://data.delijn.be/stops/202693", "https://data.delijn.be/stops/203679"], ["https://data.delijn.be/stops/504586", "https://data.delijn.be/stops/509582"], ["https://data.delijn.be/stops/503453", "https://data.delijn.be/stops/504808"], ["https://data.delijn.be/stops/201079", "https://data.delijn.be/stops/201546"], ["https://data.delijn.be/stops/401412", "https://data.delijn.be/stops/303650"], ["https://data.delijn.be/stops/504122", "https://data.delijn.be/stops/504259"], ["https://data.delijn.be/stops/303020", "https://data.delijn.be/stops/304229"], ["https://data.delijn.be/stops/202077", "https://data.delijn.be/stops/211075"], ["https://data.delijn.be/stops/509238", "https://data.delijn.be/stops/509239"], ["https://data.delijn.be/stops/504654", "https://data.delijn.be/stops/509135"], ["https://data.delijn.be/stops/102198", "https://data.delijn.be/stops/105842"], ["https://data.delijn.be/stops/304597", "https://data.delijn.be/stops/304598"], ["https://data.delijn.be/stops/509955", "https://data.delijn.be/stops/509976"], ["https://data.delijn.be/stops/206034", "https://data.delijn.be/stops/206901"], ["https://data.delijn.be/stops/308151", "https://data.delijn.be/stops/308165"], ["https://data.delijn.be/stops/401757", "https://data.delijn.be/stops/401871"], ["https://data.delijn.be/stops/208325", "https://data.delijn.be/stops/505797"], ["https://data.delijn.be/stops/101675", "https://data.delijn.be/stops/105785"], ["https://data.delijn.be/stops/504834", "https://data.delijn.be/stops/505443"], ["https://data.delijn.be/stops/406324", "https://data.delijn.be/stops/406325"], ["https://data.delijn.be/stops/300656", "https://data.delijn.be/stops/300666"], ["https://data.delijn.be/stops/205120", "https://data.delijn.be/stops/205148"], ["https://data.delijn.be/stops/306606", "https://data.delijn.be/stops/306609"], ["https://data.delijn.be/stops/205402", "https://data.delijn.be/stops/205403"], ["https://data.delijn.be/stops/408196", "https://data.delijn.be/stops/408415"], ["https://data.delijn.be/stops/402844", "https://data.delijn.be/stops/402845"], ["https://data.delijn.be/stops/202956", "https://data.delijn.be/stops/203956"], ["https://data.delijn.be/stops/305289", "https://data.delijn.be/stops/305290"], ["https://data.delijn.be/stops/103037", "https://data.delijn.be/stops/103039"], ["https://data.delijn.be/stops/301290", "https://data.delijn.be/stops/301310"], ["https://data.delijn.be/stops/405980", "https://data.delijn.be/stops/405982"], ["https://data.delijn.be/stops/408861", "https://data.delijn.be/stops/408870"], ["https://data.delijn.be/stops/103668", "https://data.delijn.be/stops/103671"], ["https://data.delijn.be/stops/305243", "https://data.delijn.be/stops/306091"], ["https://data.delijn.be/stops/301069", "https://data.delijn.be/stops/306115"], ["https://data.delijn.be/stops/108446", "https://data.delijn.be/stops/108450"], ["https://data.delijn.be/stops/503498", "https://data.delijn.be/stops/503877"], ["https://data.delijn.be/stops/505971", "https://data.delijn.be/stops/509605"], ["https://data.delijn.be/stops/304797", "https://data.delijn.be/stops/307130"], ["https://data.delijn.be/stops/403388", "https://data.delijn.be/stops/406854"], ["https://data.delijn.be/stops/202723", "https://data.delijn.be/stops/203723"], ["https://data.delijn.be/stops/301703", "https://data.delijn.be/stops/305891"], ["https://data.delijn.be/stops/400860", "https://data.delijn.be/stops/406589"], ["https://data.delijn.be/stops/200738", "https://data.delijn.be/stops/202597"], ["https://data.delijn.be/stops/508543", "https://data.delijn.be/stops/508566"], ["https://data.delijn.be/stops/101756", "https://data.delijn.be/stops/101757"], ["https://data.delijn.be/stops/300951", "https://data.delijn.be/stops/301006"], ["https://data.delijn.be/stops/503930", "https://data.delijn.be/stops/505254"], ["https://data.delijn.be/stops/504514", "https://data.delijn.be/stops/509514"], ["https://data.delijn.be/stops/206144", "https://data.delijn.be/stops/207144"], ["https://data.delijn.be/stops/507092", "https://data.delijn.be/stops/507135"], ["https://data.delijn.be/stops/102642", "https://data.delijn.be/stops/107866"], ["https://data.delijn.be/stops/505427", "https://data.delijn.be/stops/508490"], ["https://data.delijn.be/stops/304933", "https://data.delijn.be/stops/305243"], ["https://data.delijn.be/stops/502223", "https://data.delijn.be/stops/507220"], ["https://data.delijn.be/stops/202159", "https://data.delijn.be/stops/203244"], ["https://data.delijn.be/stops/202862", "https://data.delijn.be/stops/203861"], ["https://data.delijn.be/stops/200526", "https://data.delijn.be/stops/200678"], ["https://data.delijn.be/stops/500929", "https://data.delijn.be/stops/500931"], ["https://data.delijn.be/stops/305438", "https://data.delijn.be/stops/305504"], ["https://data.delijn.be/stops/504135", "https://data.delijn.be/stops/504654"], ["https://data.delijn.be/stops/307968", "https://data.delijn.be/stops/307969"], ["https://data.delijn.be/stops/200914", "https://data.delijn.be/stops/202090"], ["https://data.delijn.be/stops/302765", "https://data.delijn.be/stops/302774"], ["https://data.delijn.be/stops/204069", "https://data.delijn.be/stops/204186"], ["https://data.delijn.be/stops/102974", "https://data.delijn.be/stops/107136"], ["https://data.delijn.be/stops/103076", "https://data.delijn.be/stops/109522"], ["https://data.delijn.be/stops/501357", "https://data.delijn.be/stops/506742"], ["https://data.delijn.be/stops/104041", "https://data.delijn.be/stops/104042"], ["https://data.delijn.be/stops/302682", "https://data.delijn.be/stops/306184"], ["https://data.delijn.be/stops/404580", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/103683", "https://data.delijn.be/stops/103684"], ["https://data.delijn.be/stops/400616", "https://data.delijn.be/stops/400617"], ["https://data.delijn.be/stops/308164", "https://data.delijn.be/stops/308165"], ["https://data.delijn.be/stops/107058", "https://data.delijn.be/stops/107059"], ["https://data.delijn.be/stops/201675", "https://data.delijn.be/stops/202503"], ["https://data.delijn.be/stops/502067", "https://data.delijn.be/stops/502451"], ["https://data.delijn.be/stops/202949", "https://data.delijn.be/stops/203949"], ["https://data.delijn.be/stops/201696", "https://data.delijn.be/stops/203385"], ["https://data.delijn.be/stops/302142", "https://data.delijn.be/stops/306271"], ["https://data.delijn.be/stops/501744", "https://data.delijn.be/stops/504129"], ["https://data.delijn.be/stops/300014", "https://data.delijn.be/stops/304551"], ["https://data.delijn.be/stops/105452", "https://data.delijn.be/stops/109946"], ["https://data.delijn.be/stops/402621", "https://data.delijn.be/stops/402623"], ["https://data.delijn.be/stops/307542", "https://data.delijn.be/stops/307544"], ["https://data.delijn.be/stops/106560", "https://data.delijn.be/stops/106562"], ["https://data.delijn.be/stops/501466", "https://data.delijn.be/stops/501468"], ["https://data.delijn.be/stops/102724", "https://data.delijn.be/stops/103340"], ["https://data.delijn.be/stops/206283", "https://data.delijn.be/stops/206284"], ["https://data.delijn.be/stops/408741", "https://data.delijn.be/stops/408817"], ["https://data.delijn.be/stops/303802", "https://data.delijn.be/stops/307031"], ["https://data.delijn.be/stops/200455", "https://data.delijn.be/stops/200459"], ["https://data.delijn.be/stops/504729", "https://data.delijn.be/stops/509490"], ["https://data.delijn.be/stops/202636", "https://data.delijn.be/stops/204077"], ["https://data.delijn.be/stops/200271", "https://data.delijn.be/stops/200272"], ["https://data.delijn.be/stops/503121", "https://data.delijn.be/stops/508114"], ["https://data.delijn.be/stops/300276", "https://data.delijn.be/stops/301322"], ["https://data.delijn.be/stops/200448", "https://data.delijn.be/stops/210113"], ["https://data.delijn.be/stops/404193", "https://data.delijn.be/stops/405916"], ["https://data.delijn.be/stops/401782", "https://data.delijn.be/stops/409349"], ["https://data.delijn.be/stops/303719", "https://data.delijn.be/stops/303745"], ["https://data.delijn.be/stops/102804", "https://data.delijn.be/stops/109446"], ["https://data.delijn.be/stops/509619", "https://data.delijn.be/stops/509627"], ["https://data.delijn.be/stops/401756", "https://data.delijn.be/stops/401771"], ["https://data.delijn.be/stops/300125", "https://data.delijn.be/stops/305993"], ["https://data.delijn.be/stops/200814", "https://data.delijn.be/stops/200888"], ["https://data.delijn.be/stops/300822", "https://data.delijn.be/stops/300876"], ["https://data.delijn.be/stops/200462", "https://data.delijn.be/stops/201465"], ["https://data.delijn.be/stops/300028", "https://data.delijn.be/stops/300065"], ["https://data.delijn.be/stops/305132", "https://data.delijn.be/stops/305171"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/505803"], ["https://data.delijn.be/stops/509624", "https://data.delijn.be/stops/509626"], ["https://data.delijn.be/stops/105326", "https://data.delijn.be/stops/105336"], ["https://data.delijn.be/stops/103494", "https://data.delijn.be/stops/103497"], ["https://data.delijn.be/stops/505688", "https://data.delijn.be/stops/505689"], ["https://data.delijn.be/stops/405765", "https://data.delijn.be/stops/409417"], ["https://data.delijn.be/stops/301813", "https://data.delijn.be/stops/305545"], ["https://data.delijn.be/stops/102549", "https://data.delijn.be/stops/102552"], ["https://data.delijn.be/stops/502572", "https://data.delijn.be/stops/507572"], ["https://data.delijn.be/stops/401837", "https://data.delijn.be/stops/401840"], ["https://data.delijn.be/stops/200238", "https://data.delijn.be/stops/201238"], ["https://data.delijn.be/stops/300451", "https://data.delijn.be/stops/300461"], ["https://data.delijn.be/stops/404144", "https://data.delijn.be/stops/404169"], ["https://data.delijn.be/stops/501129", "https://data.delijn.be/stops/501137"], ["https://data.delijn.be/stops/405783", "https://data.delijn.be/stops/409768"], ["https://data.delijn.be/stops/403375", "https://data.delijn.be/stops/404123"], ["https://data.delijn.be/stops/109826", "https://data.delijn.be/stops/109829"], ["https://data.delijn.be/stops/204508", "https://data.delijn.be/stops/205508"], ["https://data.delijn.be/stops/107537", "https://data.delijn.be/stops/303882"], ["https://data.delijn.be/stops/201680", "https://data.delijn.be/stops/203403"], ["https://data.delijn.be/stops/105196", "https://data.delijn.be/stops/108883"], ["https://data.delijn.be/stops/504176", "https://data.delijn.be/stops/509164"], ["https://data.delijn.be/stops/206681", "https://data.delijn.be/stops/207626"], ["https://data.delijn.be/stops/204698", "https://data.delijn.be/stops/214009"], ["https://data.delijn.be/stops/206874", "https://data.delijn.be/stops/207874"], ["https://data.delijn.be/stops/500006", "https://data.delijn.be/stops/501472"], ["https://data.delijn.be/stops/200628", "https://data.delijn.be/stops/202904"], ["https://data.delijn.be/stops/301816", "https://data.delijn.be/stops/303891"], ["https://data.delijn.be/stops/102170", "https://data.delijn.be/stops/104340"], ["https://data.delijn.be/stops/406213", "https://data.delijn.be/stops/406215"], ["https://data.delijn.be/stops/106180", "https://data.delijn.be/stops/106187"], ["https://data.delijn.be/stops/502062", "https://data.delijn.be/stops/505689"], ["https://data.delijn.be/stops/500025", "https://data.delijn.be/stops/505740"], ["https://data.delijn.be/stops/502306", "https://data.delijn.be/stops/502312"], ["https://data.delijn.be/stops/207668", "https://data.delijn.be/stops/209056"], ["https://data.delijn.be/stops/301411", "https://data.delijn.be/stops/303627"], ["https://data.delijn.be/stops/409089", "https://data.delijn.be/stops/409137"], ["https://data.delijn.be/stops/202509", "https://data.delijn.be/stops/203079"], ["https://data.delijn.be/stops/402802", "https://data.delijn.be/stops/409030"], ["https://data.delijn.be/stops/103650", "https://data.delijn.be/stops/104405"], ["https://data.delijn.be/stops/402309", "https://data.delijn.be/stops/402310"], ["https://data.delijn.be/stops/103246", "https://data.delijn.be/stops/108420"], ["https://data.delijn.be/stops/503261", "https://data.delijn.be/stops/509765"], ["https://data.delijn.be/stops/300371", "https://data.delijn.be/stops/300375"], ["https://data.delijn.be/stops/406156", "https://data.delijn.be/stops/406275"], ["https://data.delijn.be/stops/202017", "https://data.delijn.be/stops/202657"], ["https://data.delijn.be/stops/503730", "https://data.delijn.be/stops/509513"], ["https://data.delijn.be/stops/502257", "https://data.delijn.be/stops/507257"], ["https://data.delijn.be/stops/402087", "https://data.delijn.be/stops/402215"], ["https://data.delijn.be/stops/402046", "https://data.delijn.be/stops/402047"], ["https://data.delijn.be/stops/504509", "https://data.delijn.be/stops/505411"], ["https://data.delijn.be/stops/208052", "https://data.delijn.be/stops/209052"], ["https://data.delijn.be/stops/505130", "https://data.delijn.be/stops/505131"], ["https://data.delijn.be/stops/206092", "https://data.delijn.be/stops/207092"], ["https://data.delijn.be/stops/408390", "https://data.delijn.be/stops/408391"], ["https://data.delijn.be/stops/502725", "https://data.delijn.be/stops/507407"], ["https://data.delijn.be/stops/501291", "https://data.delijn.be/stops/506326"], ["https://data.delijn.be/stops/503205", "https://data.delijn.be/stops/508406"], ["https://data.delijn.be/stops/403807", "https://data.delijn.be/stops/406302"], ["https://data.delijn.be/stops/403915", "https://data.delijn.be/stops/410350"], ["https://data.delijn.be/stops/105329", "https://data.delijn.be/stops/105333"], ["https://data.delijn.be/stops/406305", "https://data.delijn.be/stops/406316"], ["https://data.delijn.be/stops/407708", "https://data.delijn.be/stops/407768"], ["https://data.delijn.be/stops/107593", "https://data.delijn.be/stops/107596"], ["https://data.delijn.be/stops/504262", "https://data.delijn.be/stops/509198"], ["https://data.delijn.be/stops/405585", "https://data.delijn.be/stops/408364"], ["https://data.delijn.be/stops/204070", "https://data.delijn.be/stops/205097"], ["https://data.delijn.be/stops/503913", "https://data.delijn.be/stops/507698"], ["https://data.delijn.be/stops/402106", "https://data.delijn.be/stops/402298"], ["https://data.delijn.be/stops/300464", "https://data.delijn.be/stops/300465"], ["https://data.delijn.be/stops/102601", "https://data.delijn.be/stops/102643"], ["https://data.delijn.be/stops/103993", "https://data.delijn.be/stops/105314"], ["https://data.delijn.be/stops/301470", "https://data.delijn.be/stops/301475"], ["https://data.delijn.be/stops/509776", "https://data.delijn.be/stops/509782"], ["https://data.delijn.be/stops/105558", "https://data.delijn.be/stops/106292"], ["https://data.delijn.be/stops/502163", "https://data.delijn.be/stops/507438"], ["https://data.delijn.be/stops/106899", "https://data.delijn.be/stops/106901"], ["https://data.delijn.be/stops/504837", "https://data.delijn.be/stops/505118"], ["https://data.delijn.be/stops/301026", "https://data.delijn.be/stops/301031"], ["https://data.delijn.be/stops/501409", "https://data.delijn.be/stops/501416"], ["https://data.delijn.be/stops/501088", "https://data.delijn.be/stops/505152"], ["https://data.delijn.be/stops/508264", "https://data.delijn.be/stops/508265"], ["https://data.delijn.be/stops/503557", "https://data.delijn.be/stops/503562"], ["https://data.delijn.be/stops/208351", "https://data.delijn.be/stops/208352"], ["https://data.delijn.be/stops/102203", "https://data.delijn.be/stops/105817"], ["https://data.delijn.be/stops/308444", "https://data.delijn.be/stops/308692"], ["https://data.delijn.be/stops/304898", "https://data.delijn.be/stops/304900"], ["https://data.delijn.be/stops/404168", "https://data.delijn.be/stops/404169"], ["https://data.delijn.be/stops/403226", "https://data.delijn.be/stops/403232"], ["https://data.delijn.be/stops/202927", "https://data.delijn.be/stops/203926"], ["https://data.delijn.be/stops/207699", "https://data.delijn.be/stops/207734"], ["https://data.delijn.be/stops/304164", "https://data.delijn.be/stops/305450"], ["https://data.delijn.be/stops/200459", "https://data.delijn.be/stops/201456"], ["https://data.delijn.be/stops/506067", "https://data.delijn.be/stops/506070"], ["https://data.delijn.be/stops/305018", "https://data.delijn.be/stops/305455"], ["https://data.delijn.be/stops/504047", "https://data.delijn.be/stops/505810"], ["https://data.delijn.be/stops/108382", "https://data.delijn.be/stops/109764"], ["https://data.delijn.be/stops/304756", "https://data.delijn.be/stops/304757"], ["https://data.delijn.be/stops/302189", "https://data.delijn.be/stops/302197"], ["https://data.delijn.be/stops/402842", "https://data.delijn.be/stops/409017"], ["https://data.delijn.be/stops/204643", "https://data.delijn.be/stops/204644"], ["https://data.delijn.be/stops/301274", "https://data.delijn.be/stops/307615"], ["https://data.delijn.be/stops/104043", "https://data.delijn.be/stops/305984"], ["https://data.delijn.be/stops/204629", "https://data.delijn.be/stops/205630"], ["https://data.delijn.be/stops/203638", "https://data.delijn.be/stops/204598"], ["https://data.delijn.be/stops/108136", "https://data.delijn.be/stops/108847"], ["https://data.delijn.be/stops/404326", "https://data.delijn.be/stops/404386"], ["https://data.delijn.be/stops/305540", "https://data.delijn.be/stops/308828"], ["https://data.delijn.be/stops/105548", "https://data.delijn.be/stops/105551"], ["https://data.delijn.be/stops/106348", "https://data.delijn.be/stops/106350"], ["https://data.delijn.be/stops/503053", "https://data.delijn.be/stops/508053"], ["https://data.delijn.be/stops/105247", "https://data.delijn.be/stops/109977"], ["https://data.delijn.be/stops/406165", "https://data.delijn.be/stops/406426"], ["https://data.delijn.be/stops/301923", "https://data.delijn.be/stops/307827"], ["https://data.delijn.be/stops/300655", "https://data.delijn.be/stops/300661"], ["https://data.delijn.be/stops/504032", "https://data.delijn.be/stops/509030"], ["https://data.delijn.be/stops/107247", "https://data.delijn.be/stops/107249"], ["https://data.delijn.be/stops/308471", "https://data.delijn.be/stops/308473"], ["https://data.delijn.be/stops/106353", "https://data.delijn.be/stops/106379"], ["https://data.delijn.be/stops/303680", "https://data.delijn.be/stops/307928"], ["https://data.delijn.be/stops/200636", "https://data.delijn.be/stops/201633"], ["https://data.delijn.be/stops/307681", "https://data.delijn.be/stops/307684"], ["https://data.delijn.be/stops/208607", "https://data.delijn.be/stops/209606"], ["https://data.delijn.be/stops/505232", "https://data.delijn.be/stops/507228"], ["https://data.delijn.be/stops/400766", "https://data.delijn.be/stops/409662"], ["https://data.delijn.be/stops/300542", "https://data.delijn.be/stops/307859"], ["https://data.delijn.be/stops/201123", "https://data.delijn.be/stops/509781"], ["https://data.delijn.be/stops/101823", "https://data.delijn.be/stops/103138"], ["https://data.delijn.be/stops/301705", "https://data.delijn.be/stops/308894"], ["https://data.delijn.be/stops/502184", "https://data.delijn.be/stops/505692"], ["https://data.delijn.be/stops/108817", "https://data.delijn.be/stops/108821"], ["https://data.delijn.be/stops/307789", "https://data.delijn.be/stops/308140"], ["https://data.delijn.be/stops/405771", "https://data.delijn.be/stops/405882"], ["https://data.delijn.be/stops/502233", "https://data.delijn.be/stops/505232"], ["https://data.delijn.be/stops/107612", "https://data.delijn.be/stops/107729"], ["https://data.delijn.be/stops/102501", "https://data.delijn.be/stops/400025"], ["https://data.delijn.be/stops/504548", "https://data.delijn.be/stops/509551"], ["https://data.delijn.be/stops/503840", "https://data.delijn.be/stops/508856"], ["https://data.delijn.be/stops/204652", "https://data.delijn.be/stops/205668"], ["https://data.delijn.be/stops/206414", "https://data.delijn.be/stops/207414"], ["https://data.delijn.be/stops/208419", "https://data.delijn.be/stops/209420"], ["https://data.delijn.be/stops/102248", "https://data.delijn.be/stops/105934"], ["https://data.delijn.be/stops/503523", "https://data.delijn.be/stops/509001"], ["https://data.delijn.be/stops/307622", "https://data.delijn.be/stops/308559"], ["https://data.delijn.be/stops/108469", "https://data.delijn.be/stops/305990"], ["https://data.delijn.be/stops/506466", "https://data.delijn.be/stops/506471"], ["https://data.delijn.be/stops/207060", "https://data.delijn.be/stops/207500"], ["https://data.delijn.be/stops/305283", "https://data.delijn.be/stops/305291"], ["https://data.delijn.be/stops/504173", "https://data.delijn.be/stops/509747"], ["https://data.delijn.be/stops/109147", "https://data.delijn.be/stops/109152"], ["https://data.delijn.be/stops/300731", "https://data.delijn.be/stops/300737"], ["https://data.delijn.be/stops/504520", "https://data.delijn.be/stops/509520"], ["https://data.delijn.be/stops/102183", "https://data.delijn.be/stops/107133"], ["https://data.delijn.be/stops/101211", "https://data.delijn.be/stops/107798"], ["https://data.delijn.be/stops/404469", "https://data.delijn.be/stops/404532"], ["https://data.delijn.be/stops/400496", "https://data.delijn.be/stops/408824"], ["https://data.delijn.be/stops/204563", "https://data.delijn.be/stops/205563"], ["https://data.delijn.be/stops/404016", "https://data.delijn.be/stops/404433"], ["https://data.delijn.be/stops/202220", "https://data.delijn.be/stops/205077"], ["https://data.delijn.be/stops/409215", "https://data.delijn.be/stops/409221"], ["https://data.delijn.be/stops/505601", "https://data.delijn.be/stops/505603"], ["https://data.delijn.be/stops/206570", "https://data.delijn.be/stops/207575"], ["https://data.delijn.be/stops/404322", "https://data.delijn.be/stops/404649"], ["https://data.delijn.be/stops/201083", "https://data.delijn.be/stops/203928"], ["https://data.delijn.be/stops/507014", "https://data.delijn.be/stops/507168"], ["https://data.delijn.be/stops/302741", "https://data.delijn.be/stops/302760"], ["https://data.delijn.be/stops/109001", "https://data.delijn.be/stops/408147"], ["https://data.delijn.be/stops/509617", "https://data.delijn.be/stops/509630"], ["https://data.delijn.be/stops/102195", "https://data.delijn.be/stops/102686"], ["https://data.delijn.be/stops/302937", "https://data.delijn.be/stops/303071"], ["https://data.delijn.be/stops/505197", "https://data.delijn.be/stops/505200"], ["https://data.delijn.be/stops/402136", "https://data.delijn.be/stops/402139"], ["https://data.delijn.be/stops/304805", "https://data.delijn.be/stops/304806"], ["https://data.delijn.be/stops/200753", "https://data.delijn.be/stops/200754"], ["https://data.delijn.be/stops/106283", "https://data.delijn.be/stops/106286"], ["https://data.delijn.be/stops/103221", "https://data.delijn.be/stops/104857"], ["https://data.delijn.be/stops/304513", "https://data.delijn.be/stops/307560"], ["https://data.delijn.be/stops/200105", "https://data.delijn.be/stops/200549"], ["https://data.delijn.be/stops/101224", "https://data.delijn.be/stops/108516"], ["https://data.delijn.be/stops/204635", "https://data.delijn.be/stops/204693"], ["https://data.delijn.be/stops/102699", "https://data.delijn.be/stops/105154"], ["https://data.delijn.be/stops/209593", "https://data.delijn.be/stops/209967"], ["https://data.delijn.be/stops/503415", "https://data.delijn.be/stops/508562"], ["https://data.delijn.be/stops/206476", "https://data.delijn.be/stops/206507"], ["https://data.delijn.be/stops/106374", "https://data.delijn.be/stops/106381"], ["https://data.delijn.be/stops/500555", "https://data.delijn.be/stops/502207"], ["https://data.delijn.be/stops/503045", "https://data.delijn.be/stops/508039"], ["https://data.delijn.be/stops/502310", "https://data.delijn.be/stops/507310"], ["https://data.delijn.be/stops/104794", "https://data.delijn.be/stops/106970"], ["https://data.delijn.be/stops/205122", "https://data.delijn.be/stops/214004"], ["https://data.delijn.be/stops/508633", "https://data.delijn.be/stops/590008"], ["https://data.delijn.be/stops/502410", "https://data.delijn.be/stops/507681"], ["https://data.delijn.be/stops/202558", "https://data.delijn.be/stops/203608"], ["https://data.delijn.be/stops/103470", "https://data.delijn.be/stops/103471"], ["https://data.delijn.be/stops/401524", "https://data.delijn.be/stops/404064"], ["https://data.delijn.be/stops/302346", "https://data.delijn.be/stops/302366"], ["https://data.delijn.be/stops/103338", "https://data.delijn.be/stops/105310"], ["https://data.delijn.be/stops/204739", "https://data.delijn.be/stops/205739"], ["https://data.delijn.be/stops/503601", "https://data.delijn.be/stops/503616"], ["https://data.delijn.be/stops/503476", "https://data.delijn.be/stops/509867"], ["https://data.delijn.be/stops/307202", "https://data.delijn.be/stops/307219"], ["https://data.delijn.be/stops/505073", "https://data.delijn.be/stops/508768"], ["https://data.delijn.be/stops/402692", "https://data.delijn.be/stops/301485"], ["https://data.delijn.be/stops/304824", "https://data.delijn.be/stops/306406"], ["https://data.delijn.be/stops/303250", "https://data.delijn.be/stops/303294"], ["https://data.delijn.be/stops/301083", "https://data.delijn.be/stops/307877"], ["https://data.delijn.be/stops/300190", "https://data.delijn.be/stops/302168"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/106457"], ["https://data.delijn.be/stops/200939", "https://data.delijn.be/stops/203047"], ["https://data.delijn.be/stops/505067", "https://data.delijn.be/stops/505068"], ["https://data.delijn.be/stops/106264", "https://data.delijn.be/stops/106341"], ["https://data.delijn.be/stops/105698", "https://data.delijn.be/stops/106069"], ["https://data.delijn.be/stops/107509", "https://data.delijn.be/stops/107512"], ["https://data.delijn.be/stops/104948", "https://data.delijn.be/stops/109790"], ["https://data.delijn.be/stops/405570", "https://data.delijn.be/stops/405579"], ["https://data.delijn.be/stops/402799", "https://data.delijn.be/stops/405585"], ["https://data.delijn.be/stops/404843", "https://data.delijn.be/stops/409249"], ["https://data.delijn.be/stops/400043", "https://data.delijn.be/stops/400044"], ["https://data.delijn.be/stops/107278", "https://data.delijn.be/stops/107394"], ["https://data.delijn.be/stops/505258", "https://data.delijn.be/stops/505261"], ["https://data.delijn.be/stops/504361", "https://data.delijn.be/stops/509366"], ["https://data.delijn.be/stops/102893", "https://data.delijn.be/stops/105705"], ["https://data.delijn.be/stops/504449", "https://data.delijn.be/stops/509449"], ["https://data.delijn.be/stops/404637", "https://data.delijn.be/stops/406962"], ["https://data.delijn.be/stops/204409", "https://data.delijn.be/stops/205409"], ["https://data.delijn.be/stops/300482", "https://data.delijn.be/stops/306162"], ["https://data.delijn.be/stops/405782", "https://data.delijn.be/stops/409752"], ["https://data.delijn.be/stops/204781", "https://data.delijn.be/stops/204785"], ["https://data.delijn.be/stops/304135", "https://data.delijn.be/stops/307758"], ["https://data.delijn.be/stops/108684", "https://data.delijn.be/stops/108894"], ["https://data.delijn.be/stops/304858", "https://data.delijn.be/stops/304859"], ["https://data.delijn.be/stops/400453", "https://data.delijn.be/stops/400487"], ["https://data.delijn.be/stops/407751", "https://data.delijn.be/stops/407754"], ["https://data.delijn.be/stops/406523", "https://data.delijn.be/stops/407363"], ["https://data.delijn.be/stops/105647", "https://data.delijn.be/stops/105648"], ["https://data.delijn.be/stops/504891", "https://data.delijn.be/stops/508277"], ["https://data.delijn.be/stops/504676", "https://data.delijn.be/stops/505434"], ["https://data.delijn.be/stops/204833", "https://data.delijn.be/stops/205074"], ["https://data.delijn.be/stops/109697", "https://data.delijn.be/stops/109711"], ["https://data.delijn.be/stops/305172", "https://data.delijn.be/stops/305206"], ["https://data.delijn.be/stops/405321", "https://data.delijn.be/stops/305062"], ["https://data.delijn.be/stops/101046", "https://data.delijn.be/stops/105985"], ["https://data.delijn.be/stops/101110", "https://data.delijn.be/stops/103165"], ["https://data.delijn.be/stops/202344", "https://data.delijn.be/stops/205975"], ["https://data.delijn.be/stops/201847", "https://data.delijn.be/stops/201848"], ["https://data.delijn.be/stops/108863", "https://data.delijn.be/stops/109743"], ["https://data.delijn.be/stops/404228", "https://data.delijn.be/stops/404229"], ["https://data.delijn.be/stops/404933", "https://data.delijn.be/stops/405648"], ["https://data.delijn.be/stops/402455", "https://data.delijn.be/stops/410042"], ["https://data.delijn.be/stops/206423", "https://data.delijn.be/stops/207805"], ["https://data.delijn.be/stops/304527", "https://data.delijn.be/stops/306152"], ["https://data.delijn.be/stops/503549", "https://data.delijn.be/stops/508541"], ["https://data.delijn.be/stops/301703", "https://data.delijn.be/stops/305235"], ["https://data.delijn.be/stops/503789", "https://data.delijn.be/stops/505843"], ["https://data.delijn.be/stops/214010", "https://data.delijn.be/stops/214011"], ["https://data.delijn.be/stops/109171", "https://data.delijn.be/stops/109174"], ["https://data.delijn.be/stops/504597", "https://data.delijn.be/stops/509594"], ["https://data.delijn.be/stops/108833", "https://data.delijn.be/stops/108836"], ["https://data.delijn.be/stops/302904", "https://data.delijn.be/stops/303235"], ["https://data.delijn.be/stops/203894", "https://data.delijn.be/stops/209247"], ["https://data.delijn.be/stops/403377", "https://data.delijn.be/stops/410282"], ["https://data.delijn.be/stops/200861", "https://data.delijn.be/stops/210017"], ["https://data.delijn.be/stops/105765", "https://data.delijn.be/stops/108575"], ["https://data.delijn.be/stops/109207", "https://data.delijn.be/stops/109225"], ["https://data.delijn.be/stops/302076", "https://data.delijn.be/stops/302077"], ["https://data.delijn.be/stops/103058", "https://data.delijn.be/stops/103573"], ["https://data.delijn.be/stops/405564", "https://data.delijn.be/stops/405579"], ["https://data.delijn.be/stops/208761", "https://data.delijn.be/stops/208762"], ["https://data.delijn.be/stops/305259", "https://data.delijn.be/stops/305260"], ["https://data.delijn.be/stops/200233", "https://data.delijn.be/stops/211051"], ["https://data.delijn.be/stops/408774", "https://data.delijn.be/stops/410192"], ["https://data.delijn.be/stops/101392", "https://data.delijn.be/stops/106516"], ["https://data.delijn.be/stops/509825", "https://data.delijn.be/stops/509931"], ["https://data.delijn.be/stops/503300", "https://data.delijn.be/stops/508300"], ["https://data.delijn.be/stops/503671", "https://data.delijn.be/stops/503673"], ["https://data.delijn.be/stops/302292", "https://data.delijn.be/stops/302293"], ["https://data.delijn.be/stops/404809", "https://data.delijn.be/stops/404836"], ["https://data.delijn.be/stops/308868", "https://data.delijn.be/stops/308871"], ["https://data.delijn.be/stops/505194", "https://data.delijn.be/stops/508149"], ["https://data.delijn.be/stops/204205", "https://data.delijn.be/stops/205200"], ["https://data.delijn.be/stops/501716", "https://data.delijn.be/stops/506017"], ["https://data.delijn.be/stops/505713", "https://data.delijn.be/stops/506002"], ["https://data.delijn.be/stops/402033", "https://data.delijn.be/stops/402034"], ["https://data.delijn.be/stops/106990", "https://data.delijn.be/stops/106991"], ["https://data.delijn.be/stops/504350", "https://data.delijn.be/stops/509592"], ["https://data.delijn.be/stops/501153", "https://data.delijn.be/stops/506143"], ["https://data.delijn.be/stops/505774", "https://data.delijn.be/stops/509931"], ["https://data.delijn.be/stops/107964", "https://data.delijn.be/stops/108034"], ["https://data.delijn.be/stops/107523", "https://data.delijn.be/stops/107524"], ["https://data.delijn.be/stops/206023", "https://data.delijn.be/stops/206024"], ["https://data.delijn.be/stops/206246", "https://data.delijn.be/stops/207403"], ["https://data.delijn.be/stops/401063", "https://data.delijn.be/stops/401949"], ["https://data.delijn.be/stops/201952", "https://data.delijn.be/stops/202468"], ["https://data.delijn.be/stops/107455", "https://data.delijn.be/stops/109755"], ["https://data.delijn.be/stops/307318", "https://data.delijn.be/stops/307321"], ["https://data.delijn.be/stops/503822", "https://data.delijn.be/stops/508822"], ["https://data.delijn.be/stops/300543", "https://data.delijn.be/stops/303966"], ["https://data.delijn.be/stops/208386", "https://data.delijn.be/stops/209419"], ["https://data.delijn.be/stops/400044", "https://data.delijn.be/stops/400320"], ["https://data.delijn.be/stops/208097", "https://data.delijn.be/stops/208100"], ["https://data.delijn.be/stops/107934", "https://data.delijn.be/stops/303879"], ["https://data.delijn.be/stops/103137", "https://data.delijn.be/stops/107117"], ["https://data.delijn.be/stops/103125", "https://data.delijn.be/stops/109774"], ["https://data.delijn.be/stops/508745", "https://data.delijn.be/stops/509783"], ["https://data.delijn.be/stops/307935", "https://data.delijn.be/stops/307937"], ["https://data.delijn.be/stops/108793", "https://data.delijn.be/stops/108796"], ["https://data.delijn.be/stops/200345", "https://data.delijn.be/stops/201289"], ["https://data.delijn.be/stops/206380", "https://data.delijn.be/stops/207356"], ["https://data.delijn.be/stops/200426", "https://data.delijn.be/stops/202009"], ["https://data.delijn.be/stops/204695", "https://data.delijn.be/stops/205064"], ["https://data.delijn.be/stops/105030", "https://data.delijn.be/stops/105770"], ["https://data.delijn.be/stops/408569", "https://data.delijn.be/stops/408788"], ["https://data.delijn.be/stops/209590", "https://data.delijn.be/stops/209591"], ["https://data.delijn.be/stops/501140", "https://data.delijn.be/stops/590331"], ["https://data.delijn.be/stops/201412", "https://data.delijn.be/stops/202360"], ["https://data.delijn.be/stops/204518", "https://data.delijn.be/stops/205044"], ["https://data.delijn.be/stops/400316", "https://data.delijn.be/stops/400317"], ["https://data.delijn.be/stops/406777", "https://data.delijn.be/stops/406784"], ["https://data.delijn.be/stops/102730", "https://data.delijn.be/stops/109798"], ["https://data.delijn.be/stops/405791", "https://data.delijn.be/stops/409414"], ["https://data.delijn.be/stops/305825", "https://data.delijn.be/stops/305826"], ["https://data.delijn.be/stops/208589", "https://data.delijn.be/stops/305223"], ["https://data.delijn.be/stops/406400", "https://data.delijn.be/stops/406402"], ["https://data.delijn.be/stops/201751", "https://data.delijn.be/stops/209495"], ["https://data.delijn.be/stops/401198", "https://data.delijn.be/stops/401203"], ["https://data.delijn.be/stops/101004", "https://data.delijn.be/stops/104353"], ["https://data.delijn.be/stops/500127", "https://data.delijn.be/stops/505319"], ["https://data.delijn.be/stops/503596", "https://data.delijn.be/stops/508596"], ["https://data.delijn.be/stops/207224", "https://data.delijn.be/stops/308570"], ["https://data.delijn.be/stops/306861", "https://data.delijn.be/stops/306865"], ["https://data.delijn.be/stops/501498", "https://data.delijn.be/stops/501568"], ["https://data.delijn.be/stops/202309", "https://data.delijn.be/stops/203310"], ["https://data.delijn.be/stops/200205", "https://data.delijn.be/stops/202136"], ["https://data.delijn.be/stops/300418", "https://data.delijn.be/stops/300429"], ["https://data.delijn.be/stops/406929", "https://data.delijn.be/stops/406947"], ["https://data.delijn.be/stops/500005", "https://data.delijn.be/stops/505835"], ["https://data.delijn.be/stops/405385", "https://data.delijn.be/stops/302842"], ["https://data.delijn.be/stops/103501", "https://data.delijn.be/stops/109897"], ["https://data.delijn.be/stops/102613", "https://data.delijn.be/stops/107054"], ["https://data.delijn.be/stops/406084", "https://data.delijn.be/stops/406085"], ["https://data.delijn.be/stops/405049", "https://data.delijn.be/stops/405810"], ["https://data.delijn.be/stops/504462", "https://data.delijn.be/stops/509463"], ["https://data.delijn.be/stops/303178", "https://data.delijn.be/stops/307074"], ["https://data.delijn.be/stops/509499", "https://data.delijn.be/stops/509509"], ["https://data.delijn.be/stops/507037", "https://data.delijn.be/stops/507618"], ["https://data.delijn.be/stops/504363", "https://data.delijn.be/stops/504665"], ["https://data.delijn.be/stops/405715", "https://data.delijn.be/stops/410140"], ["https://data.delijn.be/stops/400820", "https://data.delijn.be/stops/401908"], ["https://data.delijn.be/stops/501036", "https://data.delijn.be/stops/506036"], ["https://data.delijn.be/stops/206739", "https://data.delijn.be/stops/207994"], ["https://data.delijn.be/stops/502290", "https://data.delijn.be/stops/507286"], ["https://data.delijn.be/stops/400897", "https://data.delijn.be/stops/400898"], ["https://data.delijn.be/stops/404471", "https://data.delijn.be/stops/404566"], ["https://data.delijn.be/stops/400408", "https://data.delijn.be/stops/408487"], ["https://data.delijn.be/stops/202556", "https://data.delijn.be/stops/202559"], ["https://data.delijn.be/stops/404308", "https://data.delijn.be/stops/404320"], ["https://data.delijn.be/stops/200865", "https://data.delijn.be/stops/202447"], ["https://data.delijn.be/stops/103082", "https://data.delijn.be/stops/104673"], ["https://data.delijn.be/stops/305415", "https://data.delijn.be/stops/305463"], ["https://data.delijn.be/stops/401180", "https://data.delijn.be/stops/401188"], ["https://data.delijn.be/stops/301097", "https://data.delijn.be/stops/303240"], ["https://data.delijn.be/stops/304672", "https://data.delijn.be/stops/304673"], ["https://data.delijn.be/stops/101984", "https://data.delijn.be/stops/108229"], ["https://data.delijn.be/stops/407448", "https://data.delijn.be/stops/407570"], ["https://data.delijn.be/stops/303858", "https://data.delijn.be/stops/304080"], ["https://data.delijn.be/stops/308014", "https://data.delijn.be/stops/308016"], ["https://data.delijn.be/stops/505287", "https://data.delijn.be/stops/508835"], ["https://data.delijn.be/stops/407001", "https://data.delijn.be/stops/407002"], ["https://data.delijn.be/stops/502381", "https://data.delijn.be/stops/507381"], ["https://data.delijn.be/stops/300331", "https://data.delijn.be/stops/307041"], ["https://data.delijn.be/stops/108818", "https://data.delijn.be/stops/108821"], ["https://data.delijn.be/stops/502641", "https://data.delijn.be/stops/502803"], ["https://data.delijn.be/stops/300504", "https://data.delijn.be/stops/302363"], ["https://data.delijn.be/stops/506322", "https://data.delijn.be/stops/506474"], ["https://data.delijn.be/stops/502224", "https://data.delijn.be/stops/509796"], ["https://data.delijn.be/stops/206829", "https://data.delijn.be/stops/206936"], ["https://data.delijn.be/stops/403903", "https://data.delijn.be/stops/404033"], ["https://data.delijn.be/stops/308417", "https://data.delijn.be/stops/308418"], ["https://data.delijn.be/stops/102799", "https://data.delijn.be/stops/102807"], ["https://data.delijn.be/stops/201092", "https://data.delijn.be/stops/202896"], ["https://data.delijn.be/stops/104517", "https://data.delijn.be/stops/303881"], ["https://data.delijn.be/stops/402739", "https://data.delijn.be/stops/306391"], ["https://data.delijn.be/stops/103054", "https://data.delijn.be/stops/107181"], ["https://data.delijn.be/stops/209612", "https://data.delijn.be/stops/209615"], ["https://data.delijn.be/stops/503682", "https://data.delijn.be/stops/508682"], ["https://data.delijn.be/stops/204445", "https://data.delijn.be/stops/204679"], ["https://data.delijn.be/stops/103263", "https://data.delijn.be/stops/204629"], ["https://data.delijn.be/stops/508013", "https://data.delijn.be/stops/508995"], ["https://data.delijn.be/stops/304476", "https://data.delijn.be/stops/304505"], ["https://data.delijn.be/stops/401524", "https://data.delijn.be/stops/402544"], ["https://data.delijn.be/stops/200196", "https://data.delijn.be/stops/201428"], ["https://data.delijn.be/stops/401330", "https://data.delijn.be/stops/401340"], ["https://data.delijn.be/stops/106259", "https://data.delijn.be/stops/106261"], ["https://data.delijn.be/stops/109828", "https://data.delijn.be/stops/109829"], ["https://data.delijn.be/stops/409066", "https://data.delijn.be/stops/409072"], ["https://data.delijn.be/stops/506440", "https://data.delijn.be/stops/506441"], ["https://data.delijn.be/stops/200953", "https://data.delijn.be/stops/210114"], ["https://data.delijn.be/stops/101228", "https://data.delijn.be/stops/101551"], ["https://data.delijn.be/stops/400242", "https://data.delijn.be/stops/400946"], ["https://data.delijn.be/stops/303752", "https://data.delijn.be/stops/303753"], ["https://data.delijn.be/stops/207864", "https://data.delijn.be/stops/209457"], ["https://data.delijn.be/stops/105299", "https://data.delijn.be/stops/105303"], ["https://data.delijn.be/stops/107959", "https://data.delijn.be/stops/108124"], ["https://data.delijn.be/stops/107554", "https://data.delijn.be/stops/107556"], ["https://data.delijn.be/stops/408428", "https://data.delijn.be/stops/408640"], ["https://data.delijn.be/stops/304888", "https://data.delijn.be/stops/304891"], ["https://data.delijn.be/stops/304734", "https://data.delijn.be/stops/304754"], ["https://data.delijn.be/stops/505090", "https://data.delijn.be/stops/505172"], ["https://data.delijn.be/stops/300773", "https://data.delijn.be/stops/302400"], ["https://data.delijn.be/stops/302222", "https://data.delijn.be/stops/306277"], ["https://data.delijn.be/stops/505963", "https://data.delijn.be/stops/507957"], ["https://data.delijn.be/stops/502530", "https://data.delijn.be/stops/505438"], ["https://data.delijn.be/stops/105204", "https://data.delijn.be/stops/108059"], ["https://data.delijn.be/stops/504470", "https://data.delijn.be/stops/509103"], ["https://data.delijn.be/stops/209066", "https://data.delijn.be/stops/209194"], ["https://data.delijn.be/stops/304565", "https://data.delijn.be/stops/304596"], ["https://data.delijn.be/stops/102673", "https://data.delijn.be/stops/103494"], ["https://data.delijn.be/stops/300849", "https://data.delijn.be/stops/300850"], ["https://data.delijn.be/stops/201854", "https://data.delijn.be/stops/201880"], ["https://data.delijn.be/stops/404436", "https://data.delijn.be/stops/404473"], ["https://data.delijn.be/stops/407638", "https://data.delijn.be/stops/407639"], ["https://data.delijn.be/stops/205162", "https://data.delijn.be/stops/205167"], ["https://data.delijn.be/stops/202554", "https://data.delijn.be/stops/203554"], ["https://data.delijn.be/stops/304893", "https://data.delijn.be/stops/304903"], ["https://data.delijn.be/stops/407611", "https://data.delijn.be/stops/407629"], ["https://data.delijn.be/stops/406058", "https://data.delijn.be/stops/406292"], ["https://data.delijn.be/stops/402431", "https://data.delijn.be/stops/402433"], ["https://data.delijn.be/stops/508899", "https://data.delijn.be/stops/508906"], ["https://data.delijn.be/stops/505916", "https://data.delijn.be/stops/509163"], ["https://data.delijn.be/stops/304439", "https://data.delijn.be/stops/305543"], ["https://data.delijn.be/stops/204747", "https://data.delijn.be/stops/205746"], ["https://data.delijn.be/stops/209590", "https://data.delijn.be/stops/307529"], ["https://data.delijn.be/stops/500041", "https://data.delijn.be/stops/500049"], ["https://data.delijn.be/stops/403800", "https://data.delijn.be/stops/403805"], ["https://data.delijn.be/stops/400275", "https://data.delijn.be/stops/400385"], ["https://data.delijn.be/stops/301970", "https://data.delijn.be/stops/304533"], ["https://data.delijn.be/stops/405421", "https://data.delijn.be/stops/306775"], ["https://data.delijn.be/stops/208438", "https://data.delijn.be/stops/209438"], ["https://data.delijn.be/stops/200918", "https://data.delijn.be/stops/202395"], ["https://data.delijn.be/stops/204821", "https://data.delijn.be/stops/205819"], ["https://data.delijn.be/stops/206165", "https://data.delijn.be/stops/303792"], ["https://data.delijn.be/stops/102762", "https://data.delijn.be/stops/105130"], ["https://data.delijn.be/stops/103212", "https://data.delijn.be/stops/106305"], ["https://data.delijn.be/stops/305549", "https://data.delijn.be/stops/308548"], ["https://data.delijn.be/stops/104165", "https://data.delijn.be/stops/107690"], ["https://data.delijn.be/stops/503175", "https://data.delijn.be/stops/503796"], ["https://data.delijn.be/stops/104693", "https://data.delijn.be/stops/107356"], ["https://data.delijn.be/stops/102063", "https://data.delijn.be/stops/106927"], ["https://data.delijn.be/stops/502099", "https://data.delijn.be/stops/502168"], ["https://data.delijn.be/stops/208829", "https://data.delijn.be/stops/211084"], ["https://data.delijn.be/stops/101644", "https://data.delijn.be/stops/105836"], ["https://data.delijn.be/stops/400096", "https://data.delijn.be/stops/400097"], ["https://data.delijn.be/stops/206703", "https://data.delijn.be/stops/217020"], ["https://data.delijn.be/stops/208665", "https://data.delijn.be/stops/219021"], ["https://data.delijn.be/stops/504154", "https://data.delijn.be/stops/509166"], ["https://data.delijn.be/stops/408749", "https://data.delijn.be/stops/408807"], ["https://data.delijn.be/stops/106189", "https://data.delijn.be/stops/107441"], ["https://data.delijn.be/stops/406519", "https://data.delijn.be/stops/408798"], ["https://data.delijn.be/stops/407522", "https://data.delijn.be/stops/407547"], ["https://data.delijn.be/stops/506442", "https://data.delijn.be/stops/590411"], ["https://data.delijn.be/stops/102560", "https://data.delijn.be/stops/104690"], ["https://data.delijn.be/stops/504377", "https://data.delijn.be/stops/504385"], ["https://data.delijn.be/stops/300749", "https://data.delijn.be/stops/300750"], ["https://data.delijn.be/stops/207977", "https://data.delijn.be/stops/217010"], ["https://data.delijn.be/stops/206548", "https://data.delijn.be/stops/209756"], ["https://data.delijn.be/stops/107356", "https://data.delijn.be/stops/107357"], ["https://data.delijn.be/stops/301431", "https://data.delijn.be/stops/301433"], ["https://data.delijn.be/stops/301073", "https://data.delijn.be/stops/306400"], ["https://data.delijn.be/stops/301481", "https://data.delijn.be/stops/308704"], ["https://data.delijn.be/stops/407846", "https://data.delijn.be/stops/407847"], ["https://data.delijn.be/stops/205305", "https://data.delijn.be/stops/205306"], ["https://data.delijn.be/stops/204970", "https://data.delijn.be/stops/204971"], ["https://data.delijn.be/stops/204709", "https://data.delijn.be/stops/205708"], ["https://data.delijn.be/stops/207101", "https://data.delijn.be/stops/207844"], ["https://data.delijn.be/stops/501138", "https://data.delijn.be/stops/501485"], ["https://data.delijn.be/stops/503362", "https://data.delijn.be/stops/503388"], ["https://data.delijn.be/stops/101905", "https://data.delijn.be/stops/103636"], ["https://data.delijn.be/stops/203783", "https://data.delijn.be/stops/211103"], ["https://data.delijn.be/stops/401380", "https://data.delijn.be/stops/410174"], ["https://data.delijn.be/stops/501507", "https://data.delijn.be/stops/506507"], ["https://data.delijn.be/stops/200420", "https://data.delijn.be/stops/203654"], ["https://data.delijn.be/stops/104256", "https://data.delijn.be/stops/107120"], ["https://data.delijn.be/stops/405820", "https://data.delijn.be/stops/405822"], ["https://data.delijn.be/stops/105999", "https://data.delijn.be/stops/106002"], ["https://data.delijn.be/stops/502671", "https://data.delijn.be/stops/507380"], ["https://data.delijn.be/stops/209736", "https://data.delijn.be/stops/211048"], ["https://data.delijn.be/stops/504634", "https://data.delijn.be/stops/509377"], ["https://data.delijn.be/stops/507490", "https://data.delijn.be/stops/507513"], ["https://data.delijn.be/stops/500046", "https://data.delijn.be/stops/500047"], ["https://data.delijn.be/stops/107538", "https://data.delijn.be/stops/107887"], ["https://data.delijn.be/stops/202823", "https://data.delijn.be/stops/203823"], ["https://data.delijn.be/stops/206793", "https://data.delijn.be/stops/208034"], ["https://data.delijn.be/stops/303423", "https://data.delijn.be/stops/303426"], ["https://data.delijn.be/stops/504403", "https://data.delijn.be/stops/509415"], ["https://data.delijn.be/stops/204588", "https://data.delijn.be/stops/205165"], ["https://data.delijn.be/stops/409144", "https://data.delijn.be/stops/409155"], ["https://data.delijn.be/stops/503083", "https://data.delijn.be/stops/508507"], ["https://data.delijn.be/stops/502052", "https://data.delijn.be/stops/507059"], ["https://data.delijn.be/stops/508172", "https://data.delijn.be/stops/508178"], ["https://data.delijn.be/stops/208183", "https://data.delijn.be/stops/208759"], ["https://data.delijn.be/stops/304523", "https://data.delijn.be/stops/305606"], ["https://data.delijn.be/stops/402070", "https://data.delijn.be/stops/402081"], ["https://data.delijn.be/stops/305396", "https://data.delijn.be/stops/305406"], ["https://data.delijn.be/stops/206903", "https://data.delijn.be/stops/207903"], ["https://data.delijn.be/stops/400807", "https://data.delijn.be/stops/409664"], ["https://data.delijn.be/stops/101182", "https://data.delijn.be/stops/107943"], ["https://data.delijn.be/stops/302135", "https://data.delijn.be/stops/305238"], ["https://data.delijn.be/stops/405337", "https://data.delijn.be/stops/405430"], ["https://data.delijn.be/stops/203212", "https://data.delijn.be/stops/210118"], ["https://data.delijn.be/stops/400038", "https://data.delijn.be/stops/405497"], ["https://data.delijn.be/stops/300894", "https://data.delijn.be/stops/305448"], ["https://data.delijn.be/stops/101007", "https://data.delijn.be/stops/109773"], ["https://data.delijn.be/stops/206075", "https://data.delijn.be/stops/206903"], ["https://data.delijn.be/stops/502648", "https://data.delijn.be/stops/507036"], ["https://data.delijn.be/stops/205100", "https://data.delijn.be/stops/205714"], ["https://data.delijn.be/stops/407980", "https://data.delijn.be/stops/407992"], ["https://data.delijn.be/stops/208217", "https://data.delijn.be/stops/209786"], ["https://data.delijn.be/stops/307834", "https://data.delijn.be/stops/308275"], ["https://data.delijn.be/stops/306823", "https://data.delijn.be/stops/306824"], ["https://data.delijn.be/stops/301457", "https://data.delijn.be/stops/301484"], ["https://data.delijn.be/stops/207761", "https://data.delijn.be/stops/208406"], ["https://data.delijn.be/stops/407852", "https://data.delijn.be/stops/408005"], ["https://data.delijn.be/stops/209008", "https://data.delijn.be/stops/209009"], ["https://data.delijn.be/stops/405701", "https://data.delijn.be/stops/405720"], ["https://data.delijn.be/stops/303820", "https://data.delijn.be/stops/303869"], ["https://data.delijn.be/stops/200310", "https://data.delijn.be/stops/201310"], ["https://data.delijn.be/stops/300011", "https://data.delijn.be/stops/300795"], ["https://data.delijn.be/stops/505082", "https://data.delijn.be/stops/509878"], ["https://data.delijn.be/stops/308488", "https://data.delijn.be/stops/308492"], ["https://data.delijn.be/stops/206683", "https://data.delijn.be/stops/206975"], ["https://data.delijn.be/stops/501398", "https://data.delijn.be/stops/506397"], ["https://data.delijn.be/stops/109336", "https://data.delijn.be/stops/109337"], ["https://data.delijn.be/stops/505310", "https://data.delijn.be/stops/507347"], ["https://data.delijn.be/stops/503504", "https://data.delijn.be/stops/508504"], ["https://data.delijn.be/stops/402740", "https://data.delijn.be/stops/404586"], ["https://data.delijn.be/stops/306379", "https://data.delijn.be/stops/306380"], ["https://data.delijn.be/stops/105697", "https://data.delijn.be/stops/105698"], ["https://data.delijn.be/stops/408020", "https://data.delijn.be/stops/408032"], ["https://data.delijn.be/stops/209202", "https://data.delijn.be/stops/209768"], ["https://data.delijn.be/stops/302862", "https://data.delijn.be/stops/303110"], ["https://data.delijn.be/stops/505565", "https://data.delijn.be/stops/505659"], ["https://data.delijn.be/stops/109046", "https://data.delijn.be/stops/109321"], ["https://data.delijn.be/stops/304155", "https://data.delijn.be/stops/306207"], ["https://data.delijn.be/stops/109900", "https://data.delijn.be/stops/109901"], ["https://data.delijn.be/stops/105424", "https://data.delijn.be/stops/109844"], ["https://data.delijn.be/stops/300585", "https://data.delijn.be/stops/300588"], ["https://data.delijn.be/stops/503581", "https://data.delijn.be/stops/504774"], ["https://data.delijn.be/stops/503830", "https://data.delijn.be/stops/503833"], ["https://data.delijn.be/stops/505127", "https://data.delijn.be/stops/508666"], ["https://data.delijn.be/stops/502617", "https://data.delijn.be/stops/507059"], ["https://data.delijn.be/stops/302704", "https://data.delijn.be/stops/302714"], ["https://data.delijn.be/stops/403329", "https://data.delijn.be/stops/403338"], ["https://data.delijn.be/stops/108143", "https://data.delijn.be/stops/108147"], ["https://data.delijn.be/stops/200730", "https://data.delijn.be/stops/203615"], ["https://data.delijn.be/stops/201482", "https://data.delijn.be/stops/204357"], ["https://data.delijn.be/stops/408234", "https://data.delijn.be/stops/308204"], ["https://data.delijn.be/stops/303437", "https://data.delijn.be/stops/303521"], ["https://data.delijn.be/stops/502641", "https://data.delijn.be/stops/507485"], ["https://data.delijn.be/stops/107491", "https://data.delijn.be/stops/305797"], ["https://data.delijn.be/stops/505336", "https://data.delijn.be/stops/507523"], ["https://data.delijn.be/stops/102976", "https://data.delijn.be/stops/106769"], ["https://data.delijn.be/stops/101081", "https://data.delijn.be/stops/101083"], ["https://data.delijn.be/stops/304626", "https://data.delijn.be/stops/304647"], ["https://data.delijn.be/stops/302135", "https://data.delijn.be/stops/306268"], ["https://data.delijn.be/stops/303958", "https://data.delijn.be/stops/303974"], ["https://data.delijn.be/stops/205431", "https://data.delijn.be/stops/205433"], ["https://data.delijn.be/stops/508171", "https://data.delijn.be/stops/508265"], ["https://data.delijn.be/stops/102636", "https://data.delijn.be/stops/104917"], ["https://data.delijn.be/stops/201189", "https://data.delijn.be/stops/201651"], ["https://data.delijn.be/stops/101655", "https://data.delijn.be/stops/103238"], ["https://data.delijn.be/stops/408163", "https://data.delijn.be/stops/408165"], ["https://data.delijn.be/stops/407519", "https://data.delijn.be/stops/408266"], ["https://data.delijn.be/stops/301577", "https://data.delijn.be/stops/301579"], ["https://data.delijn.be/stops/402718", "https://data.delijn.be/stops/405941"], ["https://data.delijn.be/stops/104402", "https://data.delijn.be/stops/204622"], ["https://data.delijn.be/stops/104377", "https://data.delijn.be/stops/204258"], ["https://data.delijn.be/stops/202818", "https://data.delijn.be/stops/203818"], ["https://data.delijn.be/stops/305400", "https://data.delijn.be/stops/305925"], ["https://data.delijn.be/stops/105318", "https://data.delijn.be/stops/105321"], ["https://data.delijn.be/stops/308228", "https://data.delijn.be/stops/308232"], ["https://data.delijn.be/stops/302037", "https://data.delijn.be/stops/303066"], ["https://data.delijn.be/stops/301836", "https://data.delijn.be/stops/308602"], ["https://data.delijn.be/stops/402494", "https://data.delijn.be/stops/402496"], ["https://data.delijn.be/stops/104022", "https://data.delijn.be/stops/106980"], ["https://data.delijn.be/stops/502652", "https://data.delijn.be/stops/507393"], ["https://data.delijn.be/stops/202387", "https://data.delijn.be/stops/203078"], ["https://data.delijn.be/stops/501073", "https://data.delijn.be/stops/501376"], ["https://data.delijn.be/stops/305174", "https://data.delijn.be/stops/307972"], ["https://data.delijn.be/stops/106859", "https://data.delijn.be/stops/109543"], ["https://data.delijn.be/stops/503168", "https://data.delijn.be/stops/508162"], ["https://data.delijn.be/stops/102648", "https://data.delijn.be/stops/308810"], ["https://data.delijn.be/stops/200755", "https://data.delijn.be/stops/200761"], ["https://data.delijn.be/stops/208543", "https://data.delijn.be/stops/208545"], ["https://data.delijn.be/stops/502079", "https://data.delijn.be/stops/502082"], ["https://data.delijn.be/stops/201454", "https://data.delijn.be/stops/201899"], ["https://data.delijn.be/stops/101538", "https://data.delijn.be/stops/108269"], ["https://data.delijn.be/stops/109218", "https://data.delijn.be/stops/109220"], ["https://data.delijn.be/stops/208226", "https://data.delijn.be/stops/209225"], ["https://data.delijn.be/stops/102312", "https://data.delijn.be/stops/109902"], ["https://data.delijn.be/stops/505253", "https://data.delijn.be/stops/508919"], ["https://data.delijn.be/stops/404935", "https://data.delijn.be/stops/405648"], ["https://data.delijn.be/stops/201940", "https://data.delijn.be/stops/202909"], ["https://data.delijn.be/stops/505062", "https://data.delijn.be/stops/505063"], ["https://data.delijn.be/stops/103765", "https://data.delijn.be/stops/105755"], ["https://data.delijn.be/stops/105011", "https://data.delijn.be/stops/105080"], ["https://data.delijn.be/stops/502063", "https://data.delijn.be/stops/502680"], ["https://data.delijn.be/stops/503847", "https://data.delijn.be/stops/507953"], ["https://data.delijn.be/stops/504481", "https://data.delijn.be/stops/509481"], ["https://data.delijn.be/stops/200132", "https://data.delijn.be/stops/201133"], ["https://data.delijn.be/stops/107952", "https://data.delijn.be/stops/108985"], ["https://data.delijn.be/stops/201857", "https://data.delijn.be/stops/202666"], ["https://data.delijn.be/stops/404430", "https://data.delijn.be/stops/406743"], ["https://data.delijn.be/stops/503502", "https://data.delijn.be/stops/508492"], ["https://data.delijn.be/stops/200466", "https://data.delijn.be/stops/209955"], ["https://data.delijn.be/stops/507766", "https://data.delijn.be/stops/507767"], ["https://data.delijn.be/stops/503869", "https://data.delijn.be/stops/508877"], ["https://data.delijn.be/stops/502218", "https://data.delijn.be/stops/506097"], ["https://data.delijn.be/stops/104776", "https://data.delijn.be/stops/108159"], ["https://data.delijn.be/stops/403387", "https://data.delijn.be/stops/403464"], ["https://data.delijn.be/stops/502335", "https://data.delijn.be/stops/507318"], ["https://data.delijn.be/stops/503006", "https://data.delijn.be/stops/508001"], ["https://data.delijn.be/stops/206498", "https://data.delijn.be/stops/207498"], ["https://data.delijn.be/stops/200646", "https://data.delijn.be/stops/201647"], ["https://data.delijn.be/stops/400230", "https://data.delijn.be/stops/400237"], ["https://data.delijn.be/stops/102851", "https://data.delijn.be/stops/103128"], ["https://data.delijn.be/stops/403462", "https://data.delijn.be/stops/410012"], ["https://data.delijn.be/stops/405057", "https://data.delijn.be/stops/405063"], ["https://data.delijn.be/stops/206366", "https://data.delijn.be/stops/207712"], ["https://data.delijn.be/stops/400931", "https://data.delijn.be/stops/400942"], ["https://data.delijn.be/stops/201854", "https://data.delijn.be/stops/202028"], ["https://data.delijn.be/stops/503916", "https://data.delijn.be/stops/505265"], ["https://data.delijn.be/stops/108651", "https://data.delijn.be/stops/303980"], ["https://data.delijn.be/stops/206411", "https://data.delijn.be/stops/207411"], ["https://data.delijn.be/stops/504693", "https://data.delijn.be/stops/509071"], ["https://data.delijn.be/stops/503745", "https://data.delijn.be/stops/508743"], ["https://data.delijn.be/stops/109504", "https://data.delijn.be/stops/109505"], ["https://data.delijn.be/stops/302395", "https://data.delijn.be/stops/302397"], ["https://data.delijn.be/stops/300904", "https://data.delijn.be/stops/300906"], ["https://data.delijn.be/stops/502730", "https://data.delijn.be/stops/507728"], ["https://data.delijn.be/stops/503713", "https://data.delijn.be/stops/509871"], ["https://data.delijn.be/stops/201771", "https://data.delijn.be/stops/208283"], ["https://data.delijn.be/stops/204139", "https://data.delijn.be/stops/205139"], ["https://data.delijn.be/stops/304834", "https://data.delijn.be/stops/307831"], ["https://data.delijn.be/stops/302361", "https://data.delijn.be/stops/302365"], ["https://data.delijn.be/stops/400474", "https://data.delijn.be/stops/404681"], ["https://data.delijn.be/stops/107169", "https://data.delijn.be/stops/107731"], ["https://data.delijn.be/stops/407721", "https://data.delijn.be/stops/407762"], ["https://data.delijn.be/stops/300763", "https://data.delijn.be/stops/306117"], ["https://data.delijn.be/stops/101970", "https://data.delijn.be/stops/105665"], ["https://data.delijn.be/stops/101837", "https://data.delijn.be/stops/108202"], ["https://data.delijn.be/stops/404940", "https://data.delijn.be/stops/404941"], ["https://data.delijn.be/stops/106060", "https://data.delijn.be/stops/108060"], ["https://data.delijn.be/stops/503619", "https://data.delijn.be/stops/503626"], ["https://data.delijn.be/stops/500027", "https://data.delijn.be/stops/505437"], ["https://data.delijn.be/stops/403405", "https://data.delijn.be/stops/410029"], ["https://data.delijn.be/stops/201239", "https://data.delijn.be/stops/201935"], ["https://data.delijn.be/stops/505718", "https://data.delijn.be/stops/505719"], ["https://data.delijn.be/stops/208165", "https://data.delijn.be/stops/209165"], ["https://data.delijn.be/stops/208547", "https://data.delijn.be/stops/208565"], ["https://data.delijn.be/stops/104398", "https://data.delijn.be/stops/105083"], ["https://data.delijn.be/stops/407609", "https://data.delijn.be/stops/409786"], ["https://data.delijn.be/stops/200919", "https://data.delijn.be/stops/210114"], ["https://data.delijn.be/stops/505519", "https://data.delijn.be/stops/505746"], ["https://data.delijn.be/stops/409672", "https://data.delijn.be/stops/409688"], ["https://data.delijn.be/stops/204467", "https://data.delijn.be/stops/204781"], ["https://data.delijn.be/stops/305944", "https://data.delijn.be/stops/308415"], ["https://data.delijn.be/stops/504830", "https://data.delijn.be/stops/505637"], ["https://data.delijn.be/stops/207475", "https://data.delijn.be/stops/207476"], ["https://data.delijn.be/stops/501123", "https://data.delijn.be/stops/506123"], ["https://data.delijn.be/stops/302201", "https://data.delijn.be/stops/308096"], ["https://data.delijn.be/stops/103470", "https://data.delijn.be/stops/106616"], ["https://data.delijn.be/stops/200030", "https://data.delijn.be/stops/201074"], ["https://data.delijn.be/stops/201884", "https://data.delijn.be/stops/203061"], ["https://data.delijn.be/stops/201214", "https://data.delijn.be/stops/201262"], ["https://data.delijn.be/stops/106752", "https://data.delijn.be/stops/109528"], ["https://data.delijn.be/stops/508400", "https://data.delijn.be/stops/508404"], ["https://data.delijn.be/stops/507429", "https://data.delijn.be/stops/507432"], ["https://data.delijn.be/stops/502645", "https://data.delijn.be/stops/507696"], ["https://data.delijn.be/stops/200717", "https://data.delijn.be/stops/202127"], ["https://data.delijn.be/stops/501240", "https://data.delijn.be/stops/506240"], ["https://data.delijn.be/stops/104598", "https://data.delijn.be/stops/106812"], ["https://data.delijn.be/stops/502196", "https://data.delijn.be/stops/502203"], ["https://data.delijn.be/stops/403322", "https://data.delijn.be/stops/410349"], ["https://data.delijn.be/stops/105862", "https://data.delijn.be/stops/105863"], ["https://data.delijn.be/stops/503204", "https://data.delijn.be/stops/505132"], ["https://data.delijn.be/stops/101958", "https://data.delijn.be/stops/108342"], ["https://data.delijn.be/stops/107316", "https://data.delijn.be/stops/108818"], ["https://data.delijn.be/stops/403260", "https://data.delijn.be/stops/403261"], ["https://data.delijn.be/stops/206620", "https://data.delijn.be/stops/206756"], ["https://data.delijn.be/stops/302688", "https://data.delijn.be/stops/302695"], ["https://data.delijn.be/stops/204999", "https://data.delijn.be/stops/207807"], ["https://data.delijn.be/stops/404476", "https://data.delijn.be/stops/404564"], ["https://data.delijn.be/stops/408501", "https://data.delijn.be/stops/408539"], ["https://data.delijn.be/stops/105418", "https://data.delijn.be/stops/109844"], ["https://data.delijn.be/stops/408960", "https://data.delijn.be/stops/408961"], ["https://data.delijn.be/stops/301794", "https://data.delijn.be/stops/301818"], ["https://data.delijn.be/stops/202835", "https://data.delijn.be/stops/202942"], ["https://data.delijn.be/stops/403730", "https://data.delijn.be/stops/403767"], ["https://data.delijn.be/stops/206663", "https://data.delijn.be/stops/206739"], ["https://data.delijn.be/stops/105324", "https://data.delijn.be/stops/105328"], ["https://data.delijn.be/stops/400344", "https://data.delijn.be/stops/400441"], ["https://data.delijn.be/stops/203396", "https://data.delijn.be/stops/210038"], ["https://data.delijn.be/stops/307760", "https://data.delijn.be/stops/307763"], ["https://data.delijn.be/stops/400556", "https://data.delijn.be/stops/404180"], ["https://data.delijn.be/stops/208359", "https://data.delijn.be/stops/208719"], ["https://data.delijn.be/stops/103363", "https://data.delijn.be/stops/103371"], ["https://data.delijn.be/stops/105258", "https://data.delijn.be/stops/109974"], ["https://data.delijn.be/stops/208077", "https://data.delijn.be/stops/208125"], ["https://data.delijn.be/stops/208074", "https://data.delijn.be/stops/209074"], ["https://data.delijn.be/stops/203103", "https://data.delijn.be/stops/203104"], ["https://data.delijn.be/stops/403022", "https://data.delijn.be/stops/403023"], ["https://data.delijn.be/stops/106807", "https://data.delijn.be/stops/106808"], ["https://data.delijn.be/stops/507202", "https://data.delijn.be/stops/508805"], ["https://data.delijn.be/stops/502048", "https://data.delijn.be/stops/507048"], ["https://data.delijn.be/stops/504350", "https://data.delijn.be/stops/509350"], ["https://data.delijn.be/stops/404249", "https://data.delijn.be/stops/404321"], ["https://data.delijn.be/stops/101787", "https://data.delijn.be/stops/109153"], ["https://data.delijn.be/stops/201577", "https://data.delijn.be/stops/203193"], ["https://data.delijn.be/stops/405233", "https://data.delijn.be/stops/405290"], ["https://data.delijn.be/stops/502011", "https://data.delijn.be/stops/505026"], ["https://data.delijn.be/stops/502010", "https://data.delijn.be/stops/505771"], ["https://data.delijn.be/stops/102076", "https://data.delijn.be/stops/102078"], ["https://data.delijn.be/stops/208717", "https://data.delijn.be/stops/209717"], ["https://data.delijn.be/stops/403829", "https://data.delijn.be/stops/403850"], ["https://data.delijn.be/stops/501669", "https://data.delijn.be/stops/506427"], ["https://data.delijn.be/stops/503705", "https://data.delijn.be/stops/508731"], ["https://data.delijn.be/stops/104077", "https://data.delijn.be/stops/106074"], ["https://data.delijn.be/stops/501673", "https://data.delijn.be/stops/506733"], ["https://data.delijn.be/stops/202964", "https://data.delijn.be/stops/205243"], ["https://data.delijn.be/stops/304544", "https://data.delijn.be/stops/304606"], ["https://data.delijn.be/stops/301030", "https://data.delijn.be/stops/301032"], ["https://data.delijn.be/stops/201255", "https://data.delijn.be/stops/203614"], ["https://data.delijn.be/stops/505140", "https://data.delijn.be/stops/505296"], ["https://data.delijn.be/stops/405948", "https://data.delijn.be/stops/405953"], ["https://data.delijn.be/stops/503155", "https://data.delijn.be/stops/503442"], ["https://data.delijn.be/stops/104112", "https://data.delijn.be/stops/104124"], ["https://data.delijn.be/stops/408360", "https://data.delijn.be/stops/308241"], ["https://data.delijn.be/stops/500949", "https://data.delijn.be/stops/509176"], ["https://data.delijn.be/stops/300842", "https://data.delijn.be/stops/304471"], ["https://data.delijn.be/stops/502522", "https://data.delijn.be/stops/507521"], ["https://data.delijn.be/stops/107142", "https://data.delijn.be/stops/107144"], ["https://data.delijn.be/stops/404894", "https://data.delijn.be/stops/404966"], ["https://data.delijn.be/stops/507174", "https://data.delijn.be/stops/507176"], ["https://data.delijn.be/stops/508086", "https://data.delijn.be/stops/508923"], ["https://data.delijn.be/stops/501595", "https://data.delijn.be/stops/506215"], ["https://data.delijn.be/stops/504397", "https://data.delijn.be/stops/504661"], ["https://data.delijn.be/stops/105036", "https://data.delijn.be/stops/105066"], ["https://data.delijn.be/stops/408851", "https://data.delijn.be/stops/408921"], ["https://data.delijn.be/stops/502491", "https://data.delijn.be/stops/502508"], ["https://data.delijn.be/stops/104483", "https://data.delijn.be/stops/307899"], ["https://data.delijn.be/stops/407140", "https://data.delijn.be/stops/407331"], ["https://data.delijn.be/stops/502012", "https://data.delijn.be/stops/507012"], ["https://data.delijn.be/stops/407981", "https://data.delijn.be/stops/407992"], ["https://data.delijn.be/stops/504571", "https://data.delijn.be/stops/509424"], ["https://data.delijn.be/stops/302900", "https://data.delijn.be/stops/303080"], ["https://data.delijn.be/stops/402119", "https://data.delijn.be/stops/402128"], ["https://data.delijn.be/stops/200954", "https://data.delijn.be/stops/205984"], ["https://data.delijn.be/stops/204103", "https://data.delijn.be/stops/205145"], ["https://data.delijn.be/stops/505323", "https://data.delijn.be/stops/505628"], ["https://data.delijn.be/stops/405072", "https://data.delijn.be/stops/405073"], ["https://data.delijn.be/stops/207989", "https://data.delijn.be/stops/217008"], ["https://data.delijn.be/stops/300464", "https://data.delijn.be/stops/300475"], ["https://data.delijn.be/stops/305380", "https://data.delijn.be/stops/305417"], ["https://data.delijn.be/stops/400464", "https://data.delijn.be/stops/407643"], ["https://data.delijn.be/stops/207797", "https://data.delijn.be/stops/504000"], ["https://data.delijn.be/stops/304991", "https://data.delijn.be/stops/304998"], ["https://data.delijn.be/stops/204206", "https://data.delijn.be/stops/205233"], ["https://data.delijn.be/stops/406688", "https://data.delijn.be/stops/406691"], ["https://data.delijn.be/stops/504382", "https://data.delijn.be/stops/504383"], ["https://data.delijn.be/stops/402595", "https://data.delijn.be/stops/410212"], ["https://data.delijn.be/stops/406150", "https://data.delijn.be/stops/406153"], ["https://data.delijn.be/stops/302177", "https://data.delijn.be/stops/308104"], ["https://data.delijn.be/stops/400478", "https://data.delijn.be/stops/407648"], ["https://data.delijn.be/stops/400205", "https://data.delijn.be/stops/400210"], ["https://data.delijn.be/stops/302344", "https://data.delijn.be/stops/302371"], ["https://data.delijn.be/stops/301664", "https://data.delijn.be/stops/307822"], ["https://data.delijn.be/stops/205205", "https://data.delijn.be/stops/205406"], ["https://data.delijn.be/stops/401759", "https://data.delijn.be/stops/401760"], ["https://data.delijn.be/stops/501244", "https://data.delijn.be/stops/501370"], ["https://data.delijn.be/stops/405428", "https://data.delijn.be/stops/302851"], ["https://data.delijn.be/stops/503953", "https://data.delijn.be/stops/508654"], ["https://data.delijn.be/stops/102893", "https://data.delijn.be/stops/105980"], ["https://data.delijn.be/stops/305107", "https://data.delijn.be/stops/305112"], ["https://data.delijn.be/stops/305167", "https://data.delijn.be/stops/305216"], ["https://data.delijn.be/stops/502305", "https://data.delijn.be/stops/507312"], ["https://data.delijn.be/stops/508102", "https://data.delijn.be/stops/508103"], ["https://data.delijn.be/stops/102578", "https://data.delijn.be/stops/103160"], ["https://data.delijn.be/stops/206771", "https://data.delijn.be/stops/208541"], ["https://data.delijn.be/stops/408277", "https://data.delijn.be/stops/408355"], ["https://data.delijn.be/stops/404326", "https://data.delijn.be/stops/404327"], ["https://data.delijn.be/stops/408636", "https://data.delijn.be/stops/408654"], ["https://data.delijn.be/stops/304552", "https://data.delijn.be/stops/304639"], ["https://data.delijn.be/stops/503067", "https://data.delijn.be/stops/505408"], ["https://data.delijn.be/stops/105612", "https://data.delijn.be/stops/106366"], ["https://data.delijn.be/stops/101071", "https://data.delijn.be/stops/101074"], ["https://data.delijn.be/stops/208559", "https://data.delijn.be/stops/209559"], ["https://data.delijn.be/stops/503090", "https://data.delijn.be/stops/505847"], ["https://data.delijn.be/stops/200356", "https://data.delijn.be/stops/203646"], ["https://data.delijn.be/stops/208383", "https://data.delijn.be/stops/208753"], ["https://data.delijn.be/stops/402400", "https://data.delijn.be/stops/402492"], ["https://data.delijn.be/stops/508154", "https://data.delijn.be/stops/508253"], ["https://data.delijn.be/stops/106993", "https://data.delijn.be/stops/106995"], ["https://data.delijn.be/stops/103077", "https://data.delijn.be/stops/105024"], ["https://data.delijn.be/stops/508620", "https://data.delijn.be/stops/508630"], ["https://data.delijn.be/stops/305645", "https://data.delijn.be/stops/307103"], ["https://data.delijn.be/stops/400736", "https://data.delijn.be/stops/400737"], ["https://data.delijn.be/stops/406904", "https://data.delijn.be/stops/406951"], ["https://data.delijn.be/stops/402021", "https://data.delijn.be/stops/405554"], ["https://data.delijn.be/stops/104892", "https://data.delijn.be/stops/109355"], ["https://data.delijn.be/stops/400933", "https://data.delijn.be/stops/400945"], ["https://data.delijn.be/stops/403134", "https://data.delijn.be/stops/410147"], ["https://data.delijn.be/stops/106393", "https://data.delijn.be/stops/109423"], ["https://data.delijn.be/stops/202886", "https://data.delijn.be/stops/206421"], ["https://data.delijn.be/stops/106258", "https://data.delijn.be/stops/109903"], ["https://data.delijn.be/stops/403275", "https://data.delijn.be/stops/410029"], ["https://data.delijn.be/stops/206138", "https://data.delijn.be/stops/206471"], ["https://data.delijn.be/stops/504720", "https://data.delijn.be/stops/509720"], ["https://data.delijn.be/stops/305618", "https://data.delijn.be/stops/305955"], ["https://data.delijn.be/stops/108814", "https://data.delijn.be/stops/108848"], ["https://data.delijn.be/stops/305343", "https://data.delijn.be/stops/307971"], ["https://data.delijn.be/stops/502753", "https://data.delijn.be/stops/505808"], ["https://data.delijn.be/stops/108812", "https://data.delijn.be/stops/108850"], ["https://data.delijn.be/stops/304853", "https://data.delijn.be/stops/304864"], ["https://data.delijn.be/stops/305642", "https://data.delijn.be/stops/305671"], ["https://data.delijn.be/stops/304876", "https://data.delijn.be/stops/307830"], ["https://data.delijn.be/stops/101492", "https://data.delijn.be/stops/108327"], ["https://data.delijn.be/stops/405827", "https://data.delijn.be/stops/409420"], ["https://data.delijn.be/stops/208111", "https://data.delijn.be/stops/219009"], ["https://data.delijn.be/stops/102741", "https://data.delijn.be/stops/107288"], ["https://data.delijn.be/stops/305622", "https://data.delijn.be/stops/308377"], ["https://data.delijn.be/stops/200521", "https://data.delijn.be/stops/211130"], ["https://data.delijn.be/stops/205265", "https://data.delijn.be/stops/205493"], ["https://data.delijn.be/stops/505686", "https://data.delijn.be/stops/507060"], ["https://data.delijn.be/stops/207559", "https://data.delijn.be/stops/207927"], ["https://data.delijn.be/stops/201865", "https://data.delijn.be/stops/211038"], ["https://data.delijn.be/stops/406100", "https://data.delijn.be/stops/406127"], ["https://data.delijn.be/stops/301249", "https://data.delijn.be/stops/307399"], ["https://data.delijn.be/stops/204673", "https://data.delijn.be/stops/205672"], ["https://data.delijn.be/stops/105404", "https://data.delijn.be/stops/109850"], ["https://data.delijn.be/stops/503162", "https://data.delijn.be/stops/503945"], ["https://data.delijn.be/stops/205988", "https://data.delijn.be/stops/209347"], ["https://data.delijn.be/stops/201995", "https://data.delijn.be/stops/209952"], ["https://data.delijn.be/stops/207417", "https://data.delijn.be/stops/207418"], ["https://data.delijn.be/stops/508561", "https://data.delijn.be/stops/508609"], ["https://data.delijn.be/stops/402656", "https://data.delijn.be/stops/402659"], ["https://data.delijn.be/stops/300575", "https://data.delijn.be/stops/308896"], ["https://data.delijn.be/stops/503666", "https://data.delijn.be/stops/508666"], ["https://data.delijn.be/stops/101125", "https://data.delijn.be/stops/101240"], ["https://data.delijn.be/stops/304984", "https://data.delijn.be/stops/308029"], ["https://data.delijn.be/stops/203530", "https://data.delijn.be/stops/206827"], ["https://data.delijn.be/stops/407897", "https://data.delijn.be/stops/407938"], ["https://data.delijn.be/stops/400631", "https://data.delijn.be/stops/410007"], ["https://data.delijn.be/stops/303694", "https://data.delijn.be/stops/303698"], ["https://data.delijn.be/stops/204090", "https://data.delijn.be/stops/205017"], ["https://data.delijn.be/stops/200564", "https://data.delijn.be/stops/200665"], ["https://data.delijn.be/stops/504412", "https://data.delijn.be/stops/505785"], ["https://data.delijn.be/stops/402819", "https://data.delijn.be/stops/409449"], ["https://data.delijn.be/stops/305846", "https://data.delijn.be/stops/305898"], ["https://data.delijn.be/stops/402420", "https://data.delijn.be/stops/404499"], ["https://data.delijn.be/stops/404090", "https://data.delijn.be/stops/404091"], ["https://data.delijn.be/stops/304458", "https://data.delijn.be/stops/304459"], ["https://data.delijn.be/stops/208252", "https://data.delijn.be/stops/209252"], ["https://data.delijn.be/stops/204236", "https://data.delijn.be/stops/204237"], ["https://data.delijn.be/stops/407014", "https://data.delijn.be/stops/408441"], ["https://data.delijn.be/stops/109054", "https://data.delijn.be/stops/109056"], ["https://data.delijn.be/stops/203915", "https://data.delijn.be/stops/211097"], ["https://data.delijn.be/stops/400289", "https://data.delijn.be/stops/400333"], ["https://data.delijn.be/stops/302564", "https://data.delijn.be/stops/308120"], ["https://data.delijn.be/stops/305106", "https://data.delijn.be/stops/308123"], ["https://data.delijn.be/stops/305990", "https://data.delijn.be/stops/307234"], ["https://data.delijn.be/stops/407426", "https://data.delijn.be/stops/409861"], ["https://data.delijn.be/stops/306330", "https://data.delijn.be/stops/306331"], ["https://data.delijn.be/stops/500568", "https://data.delijn.be/stops/501041"], ["https://data.delijn.be/stops/104700", "https://data.delijn.be/stops/105400"], ["https://data.delijn.be/stops/504390", "https://data.delijn.be/stops/509392"], ["https://data.delijn.be/stops/303779", "https://data.delijn.be/stops/303801"], ["https://data.delijn.be/stops/501186", "https://data.delijn.be/stops/505729"], ["https://data.delijn.be/stops/300751", "https://data.delijn.be/stops/304590"], ["https://data.delijn.be/stops/105132", "https://data.delijn.be/stops/105134"], ["https://data.delijn.be/stops/200647", "https://data.delijn.be/stops/201605"], ["https://data.delijn.be/stops/200388", "https://data.delijn.be/stops/209702"], ["https://data.delijn.be/stops/207784", "https://data.delijn.be/stops/208189"], ["https://data.delijn.be/stops/403462", "https://data.delijn.be/stops/403463"], ["https://data.delijn.be/stops/400307", "https://data.delijn.be/stops/400325"], ["https://data.delijn.be/stops/305074", "https://data.delijn.be/stops/305153"], ["https://data.delijn.be/stops/301381", "https://data.delijn.be/stops/301382"], ["https://data.delijn.be/stops/308165", "https://data.delijn.be/stops/308229"], ["https://data.delijn.be/stops/401345", "https://data.delijn.be/stops/406064"], ["https://data.delijn.be/stops/302052", "https://data.delijn.be/stops/304915"], ["https://data.delijn.be/stops/206090", "https://data.delijn.be/stops/206091"], ["https://data.delijn.be/stops/205563", "https://data.delijn.be/stops/205564"], ["https://data.delijn.be/stops/102541", "https://data.delijn.be/stops/408336"], ["https://data.delijn.be/stops/502592", "https://data.delijn.be/stops/507060"], ["https://data.delijn.be/stops/502108", "https://data.delijn.be/stops/502141"], ["https://data.delijn.be/stops/400328", "https://data.delijn.be/stops/406769"], ["https://data.delijn.be/stops/208291", "https://data.delijn.be/stops/211065"], ["https://data.delijn.be/stops/103210", "https://data.delijn.be/stops/103212"], ["https://data.delijn.be/stops/303829", "https://data.delijn.be/stops/303830"], ["https://data.delijn.be/stops/200408", "https://data.delijn.be/stops/201408"], ["https://data.delijn.be/stops/403334", "https://data.delijn.be/stops/403349"], ["https://data.delijn.be/stops/107489", "https://data.delijn.be/stops/305801"], ["https://data.delijn.be/stops/200412", "https://data.delijn.be/stops/200504"], ["https://data.delijn.be/stops/104466", "https://data.delijn.be/stops/106744"], ["https://data.delijn.be/stops/406272", "https://data.delijn.be/stops/406278"], ["https://data.delijn.be/stops/301353", "https://data.delijn.be/stops/304525"], ["https://data.delijn.be/stops/201055", "https://data.delijn.be/stops/202475"], ["https://data.delijn.be/stops/105257", "https://data.delijn.be/stops/105276"], ["https://data.delijn.be/stops/206300", "https://data.delijn.be/stops/207473"], ["https://data.delijn.be/stops/104286", "https://data.delijn.be/stops/104288"], ["https://data.delijn.be/stops/502018", "https://data.delijn.be/stops/507797"], ["https://data.delijn.be/stops/301944", "https://data.delijn.be/stops/304642"], ["https://data.delijn.be/stops/303190", "https://data.delijn.be/stops/307952"], ["https://data.delijn.be/stops/400068", "https://data.delijn.be/stops/400167"], ["https://data.delijn.be/stops/200603", "https://data.delijn.be/stops/201604"], ["https://data.delijn.be/stops/303298", "https://data.delijn.be/stops/303299"], ["https://data.delijn.be/stops/107200", "https://data.delijn.be/stops/410162"], ["https://data.delijn.be/stops/404518", "https://data.delijn.be/stops/408163"], ["https://data.delijn.be/stops/102381", "https://data.delijn.be/stops/105609"], ["https://data.delijn.be/stops/408884", "https://data.delijn.be/stops/408893"], ["https://data.delijn.be/stops/301219", "https://data.delijn.be/stops/301220"], ["https://data.delijn.be/stops/506458", "https://data.delijn.be/stops/506459"], ["https://data.delijn.be/stops/102920", "https://data.delijn.be/stops/103415"], ["https://data.delijn.be/stops/504556", "https://data.delijn.be/stops/509561"], ["https://data.delijn.be/stops/201524", "https://data.delijn.be/stops/210130"], ["https://data.delijn.be/stops/204527", "https://data.delijn.be/stops/205525"], ["https://data.delijn.be/stops/107181", "https://data.delijn.be/stops/107183"], ["https://data.delijn.be/stops/204499", "https://data.delijn.be/stops/205499"], ["https://data.delijn.be/stops/104605", "https://data.delijn.be/stops/107382"], ["https://data.delijn.be/stops/503234", "https://data.delijn.be/stops/508234"], ["https://data.delijn.be/stops/407813", "https://data.delijn.be/stops/407905"], ["https://data.delijn.be/stops/302185", "https://data.delijn.be/stops/302186"], ["https://data.delijn.be/stops/202121", "https://data.delijn.be/stops/203120"], ["https://data.delijn.be/stops/503682", "https://data.delijn.be/stops/508686"], ["https://data.delijn.be/stops/502145", "https://data.delijn.be/stops/502421"], ["https://data.delijn.be/stops/504994", "https://data.delijn.be/stops/505218"], ["https://data.delijn.be/stops/501112", "https://data.delijn.be/stops/506503"], ["https://data.delijn.be/stops/404313", "https://data.delijn.be/stops/404330"], ["https://data.delijn.be/stops/501223", "https://data.delijn.be/stops/506223"], ["https://data.delijn.be/stops/101804", "https://data.delijn.be/stops/104132"], ["https://data.delijn.be/stops/103376", "https://data.delijn.be/stops/406788"], ["https://data.delijn.be/stops/407895", "https://data.delijn.be/stops/303889"], ["https://data.delijn.be/stops/505204", "https://data.delijn.be/stops/509019"], ["https://data.delijn.be/stops/304878", "https://data.delijn.be/stops/304884"], ["https://data.delijn.be/stops/206067", "https://data.delijn.be/stops/206120"], ["https://data.delijn.be/stops/501116", "https://data.delijn.be/stops/501187"], ["https://data.delijn.be/stops/503089", "https://data.delijn.be/stops/505379"], ["https://data.delijn.be/stops/503654", "https://data.delijn.be/stops/503953"], ["https://data.delijn.be/stops/304127", "https://data.delijn.be/stops/308818"], ["https://data.delijn.be/stops/206724", "https://data.delijn.be/stops/207097"], ["https://data.delijn.be/stops/504118", "https://data.delijn.be/stops/509118"], ["https://data.delijn.be/stops/202628", "https://data.delijn.be/stops/205068"], ["https://data.delijn.be/stops/405379", "https://data.delijn.be/stops/302841"], ["https://data.delijn.be/stops/204036", "https://data.delijn.be/stops/204037"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/200732"], ["https://data.delijn.be/stops/504247", "https://data.delijn.be/stops/504702"], ["https://data.delijn.be/stops/403812", "https://data.delijn.be/stops/403814"], ["https://data.delijn.be/stops/301432", "https://data.delijn.be/stops/301434"], ["https://data.delijn.be/stops/302623", "https://data.delijn.be/stops/308117"], ["https://data.delijn.be/stops/503260", "https://data.delijn.be/stops/509766"], ["https://data.delijn.be/stops/404327", "https://data.delijn.be/stops/404391"], ["https://data.delijn.be/stops/402777", "https://data.delijn.be/stops/406472"], ["https://data.delijn.be/stops/402550", "https://data.delijn.be/stops/404067"], ["https://data.delijn.be/stops/404115", "https://data.delijn.be/stops/408738"], ["https://data.delijn.be/stops/200126", "https://data.delijn.be/stops/201244"], ["https://data.delijn.be/stops/302862", "https://data.delijn.be/stops/306102"], ["https://data.delijn.be/stops/508317", "https://data.delijn.be/stops/508676"], ["https://data.delijn.be/stops/502506", "https://data.delijn.be/stops/505552"], ["https://data.delijn.be/stops/404740", "https://data.delijn.be/stops/404834"], ["https://data.delijn.be/stops/301146", "https://data.delijn.be/stops/307714"], ["https://data.delijn.be/stops/206894", "https://data.delijn.be/stops/207893"], ["https://data.delijn.be/stops/202465", "https://data.delijn.be/stops/203461"], ["https://data.delijn.be/stops/206219", "https://data.delijn.be/stops/207183"], ["https://data.delijn.be/stops/501633", "https://data.delijn.be/stops/506254"], ["https://data.delijn.be/stops/300292", "https://data.delijn.be/stops/307478"], ["https://data.delijn.be/stops/504665", "https://data.delijn.be/stops/506371"], ["https://data.delijn.be/stops/208237", "https://data.delijn.be/stops/208330"], ["https://data.delijn.be/stops/103644", "https://data.delijn.be/stops/107177"], ["https://data.delijn.be/stops/207095", "https://data.delijn.be/stops/207908"], ["https://data.delijn.be/stops/502420", "https://data.delijn.be/stops/507420"], ["https://data.delijn.be/stops/202030", "https://data.delijn.be/stops/203027"], ["https://data.delijn.be/stops/504838", "https://data.delijn.be/stops/505206"], ["https://data.delijn.be/stops/404612", "https://data.delijn.be/stops/404617"], ["https://data.delijn.be/stops/107409", "https://data.delijn.be/stops/107594"], ["https://data.delijn.be/stops/502280", "https://data.delijn.be/stops/502284"], ["https://data.delijn.be/stops/101836", "https://data.delijn.be/stops/101837"], ["https://data.delijn.be/stops/206218", "https://data.delijn.be/stops/207461"], ["https://data.delijn.be/stops/105061", "https://data.delijn.be/stops/105823"], ["https://data.delijn.be/stops/105455", "https://data.delijn.be/stops/105895"], ["https://data.delijn.be/stops/207147", "https://data.delijn.be/stops/207148"], ["https://data.delijn.be/stops/103499", "https://data.delijn.be/stops/106211"], ["https://data.delijn.be/stops/501675", "https://data.delijn.be/stops/502352"], ["https://data.delijn.be/stops/400932", "https://data.delijn.be/stops/402838"], ["https://data.delijn.be/stops/201893", "https://data.delijn.be/stops/203776"], ["https://data.delijn.be/stops/501402", "https://data.delijn.be/stops/506402"], ["https://data.delijn.be/stops/407622", "https://data.delijn.be/stops/407701"], ["https://data.delijn.be/stops/103147", "https://data.delijn.be/stops/106295"], ["https://data.delijn.be/stops/204740", "https://data.delijn.be/stops/204766"], ["https://data.delijn.be/stops/202340", "https://data.delijn.be/stops/203339"], ["https://data.delijn.be/stops/108316", "https://data.delijn.be/stops/109018"], ["https://data.delijn.be/stops/508563", "https://data.delijn.be/stops/508579"], ["https://data.delijn.be/stops/503520", "https://data.delijn.be/stops/505548"], ["https://data.delijn.be/stops/202162", "https://data.delijn.be/stops/203162"], ["https://data.delijn.be/stops/502043", "https://data.delijn.be/stops/502642"], ["https://data.delijn.be/stops/109775", "https://data.delijn.be/stops/109776"], ["https://data.delijn.be/stops/406350", "https://data.delijn.be/stops/408857"], ["https://data.delijn.be/stops/407003", "https://data.delijn.be/stops/407005"], ["https://data.delijn.be/stops/503536", "https://data.delijn.be/stops/508538"], ["https://data.delijn.be/stops/201774", "https://data.delijn.be/stops/201806"], ["https://data.delijn.be/stops/206138", "https://data.delijn.be/stops/207138"], ["https://data.delijn.be/stops/104773", "https://data.delijn.be/stops/108151"], ["https://data.delijn.be/stops/301427", "https://data.delijn.be/stops/301442"], ["https://data.delijn.be/stops/109026", "https://data.delijn.be/stops/109077"], ["https://data.delijn.be/stops/505977", "https://data.delijn.be/stops/509386"], ["https://data.delijn.be/stops/106119", "https://data.delijn.be/stops/106120"], ["https://data.delijn.be/stops/300255", "https://data.delijn.be/stops/300256"], ["https://data.delijn.be/stops/106950", "https://data.delijn.be/stops/106951"], ["https://data.delijn.be/stops/403826", "https://data.delijn.be/stops/404057"], ["https://data.delijn.be/stops/300523", "https://data.delijn.be/stops/307828"], ["https://data.delijn.be/stops/204651", "https://data.delijn.be/stops/205652"], ["https://data.delijn.be/stops/101459", "https://data.delijn.be/stops/109285"], ["https://data.delijn.be/stops/105263", "https://data.delijn.be/stops/105266"], ["https://data.delijn.be/stops/302764", "https://data.delijn.be/stops/307781"], ["https://data.delijn.be/stops/104861", "https://data.delijn.be/stops/107813"], ["https://data.delijn.be/stops/502752", "https://data.delijn.be/stops/507752"], ["https://data.delijn.be/stops/409108", "https://data.delijn.be/stops/409109"], ["https://data.delijn.be/stops/402103", "https://data.delijn.be/stops/402460"], ["https://data.delijn.be/stops/407054", "https://data.delijn.be/stops/407055"], ["https://data.delijn.be/stops/200130", "https://data.delijn.be/stops/211063"], ["https://data.delijn.be/stops/504391", "https://data.delijn.be/stops/509715"], ["https://data.delijn.be/stops/200400", "https://data.delijn.be/stops/202362"], ["https://data.delijn.be/stops/508284", "https://data.delijn.be/stops/508314"], ["https://data.delijn.be/stops/101160", "https://data.delijn.be/stops/104119"], ["https://data.delijn.be/stops/301026", "https://data.delijn.be/stops/305466"], ["https://data.delijn.be/stops/101831", "https://data.delijn.be/stops/107009"], ["https://data.delijn.be/stops/202891", "https://data.delijn.be/stops/203891"], ["https://data.delijn.be/stops/200910", "https://data.delijn.be/stops/200911"], ["https://data.delijn.be/stops/101631", "https://data.delijn.be/stops/104343"], ["https://data.delijn.be/stops/503568", "https://data.delijn.be/stops/505937"], ["https://data.delijn.be/stops/302177", "https://data.delijn.be/stops/302439"], ["https://data.delijn.be/stops/206034", "https://data.delijn.be/stops/206215"], ["https://data.delijn.be/stops/305589", "https://data.delijn.be/stops/308815"], ["https://data.delijn.be/stops/408549", "https://data.delijn.be/stops/408550"], ["https://data.delijn.be/stops/101556", "https://data.delijn.be/stops/101557"], ["https://data.delijn.be/stops/501195", "https://data.delijn.be/stops/506195"], ["https://data.delijn.be/stops/200368", "https://data.delijn.be/stops/201286"], ["https://data.delijn.be/stops/408878", "https://data.delijn.be/stops/408896"], ["https://data.delijn.be/stops/301599", "https://data.delijn.be/stops/301615"], ["https://data.delijn.be/stops/207776", "https://data.delijn.be/stops/209186"], ["https://data.delijn.be/stops/305344", "https://data.delijn.be/stops/305350"], ["https://data.delijn.be/stops/307800", "https://data.delijn.be/stops/308612"], ["https://data.delijn.be/stops/304670", "https://data.delijn.be/stops/304671"], ["https://data.delijn.be/stops/308920", "https://data.delijn.be/stops/308921"], ["https://data.delijn.be/stops/107657", "https://data.delijn.be/stops/107658"], ["https://data.delijn.be/stops/200556", "https://data.delijn.be/stops/201558"], ["https://data.delijn.be/stops/207906", "https://data.delijn.be/stops/207907"], ["https://data.delijn.be/stops/200217", "https://data.delijn.be/stops/201217"], ["https://data.delijn.be/stops/200762", "https://data.delijn.be/stops/505280"], ["https://data.delijn.be/stops/501627", "https://data.delijn.be/stops/503948"], ["https://data.delijn.be/stops/305229", "https://data.delijn.be/stops/305889"], ["https://data.delijn.be/stops/206561", "https://data.delijn.be/stops/207561"], ["https://data.delijn.be/stops/103041", "https://data.delijn.be/stops/104345"], ["https://data.delijn.be/stops/403064", "https://data.delijn.be/stops/403065"], ["https://data.delijn.be/stops/202747", "https://data.delijn.be/stops/202748"], ["https://data.delijn.be/stops/400569", "https://data.delijn.be/stops/404153"], ["https://data.delijn.be/stops/503153", "https://data.delijn.be/stops/505426"], ["https://data.delijn.be/stops/302596", "https://data.delijn.be/stops/302612"], ["https://data.delijn.be/stops/300228", "https://data.delijn.be/stops/307131"], ["https://data.delijn.be/stops/503064", "https://data.delijn.be/stops/508064"], ["https://data.delijn.be/stops/505017", "https://data.delijn.be/stops/505336"], ["https://data.delijn.be/stops/101332", "https://data.delijn.be/stops/106674"], ["https://data.delijn.be/stops/102745", "https://data.delijn.be/stops/102750"], ["https://data.delijn.be/stops/106643", "https://data.delijn.be/stops/109672"], ["https://data.delijn.be/stops/201236", "https://data.delijn.be/stops/204924"], ["https://data.delijn.be/stops/101360", "https://data.delijn.be/stops/101806"], ["https://data.delijn.be/stops/403901", "https://data.delijn.be/stops/403926"], ["https://data.delijn.be/stops/503652", "https://data.delijn.be/stops/505365"], ["https://data.delijn.be/stops/103291", "https://data.delijn.be/stops/108731"], ["https://data.delijn.be/stops/504373", "https://data.delijn.be/stops/505716"], ["https://data.delijn.be/stops/104075", "https://data.delijn.be/stops/104875"], ["https://data.delijn.be/stops/202663", "https://data.delijn.be/stops/203662"], ["https://data.delijn.be/stops/305889", "https://data.delijn.be/stops/307795"], ["https://data.delijn.be/stops/200144", "https://data.delijn.be/stops/205919"], ["https://data.delijn.be/stops/307272", "https://data.delijn.be/stops/308695"], ["https://data.delijn.be/stops/104033", "https://data.delijn.be/stops/104402"], ["https://data.delijn.be/stops/508917", "https://data.delijn.be/stops/508925"], ["https://data.delijn.be/stops/402366", "https://data.delijn.be/stops/402444"], ["https://data.delijn.be/stops/208218", "https://data.delijn.be/stops/208592"], ["https://data.delijn.be/stops/302355", "https://data.delijn.be/stops/302360"], ["https://data.delijn.be/stops/105320", "https://data.delijn.be/stops/105325"], ["https://data.delijn.be/stops/507183", "https://data.delijn.be/stops/507185"], ["https://data.delijn.be/stops/108868", "https://data.delijn.be/stops/108869"], ["https://data.delijn.be/stops/202453", "https://data.delijn.be/stops/203452"], ["https://data.delijn.be/stops/205760", "https://data.delijn.be/stops/214012"], ["https://data.delijn.be/stops/307546", "https://data.delijn.be/stops/307753"], ["https://data.delijn.be/stops/107964", "https://data.delijn.be/stops/107965"], ["https://data.delijn.be/stops/204314", "https://data.delijn.be/stops/204710"], ["https://data.delijn.be/stops/502193", "https://data.delijn.be/stops/509945"], ["https://data.delijn.be/stops/403316", "https://data.delijn.be/stops/403323"], ["https://data.delijn.be/stops/401824", "https://data.delijn.be/stops/401826"], ["https://data.delijn.be/stops/407766", "https://data.delijn.be/stops/409626"], ["https://data.delijn.be/stops/206422", "https://data.delijn.be/stops/206568"], ["https://data.delijn.be/stops/106734", "https://data.delijn.be/stops/106735"], ["https://data.delijn.be/stops/302006", "https://data.delijn.be/stops/303189"], ["https://data.delijn.be/stops/303281", "https://data.delijn.be/stops/308793"], ["https://data.delijn.be/stops/501230", "https://data.delijn.be/stops/506230"], ["https://data.delijn.be/stops/503491", "https://data.delijn.be/stops/508485"], ["https://data.delijn.be/stops/303434", "https://data.delijn.be/stops/303435"], ["https://data.delijn.be/stops/302549", "https://data.delijn.be/stops/302557"], ["https://data.delijn.be/stops/304033", "https://data.delijn.be/stops/304091"], ["https://data.delijn.be/stops/202703", "https://data.delijn.be/stops/203701"], ["https://data.delijn.be/stops/406576", "https://data.delijn.be/stops/407167"], ["https://data.delijn.be/stops/102573", "https://data.delijn.be/stops/109167"], ["https://data.delijn.be/stops/206080", "https://data.delijn.be/stops/207991"], ["https://data.delijn.be/stops/304028", "https://data.delijn.be/stops/304030"], ["https://data.delijn.be/stops/201149", "https://data.delijn.be/stops/201172"], ["https://data.delijn.be/stops/105342", "https://data.delijn.be/stops/105343"], ["https://data.delijn.be/stops/500013", "https://data.delijn.be/stops/502563"], ["https://data.delijn.be/stops/302395", "https://data.delijn.be/stops/302761"], ["https://data.delijn.be/stops/503022", "https://data.delijn.be/stops/508020"], ["https://data.delijn.be/stops/204669", "https://data.delijn.be/stops/205014"], ["https://data.delijn.be/stops/101719", "https://data.delijn.be/stops/102924"], ["https://data.delijn.be/stops/502044", "https://data.delijn.be/stops/507044"], ["https://data.delijn.be/stops/206235", "https://data.delijn.be/stops/207855"], ["https://data.delijn.be/stops/505177", "https://data.delijn.be/stops/508845"], ["https://data.delijn.be/stops/208054", "https://data.delijn.be/stops/208658"], ["https://data.delijn.be/stops/304586", "https://data.delijn.be/stops/304654"], ["https://data.delijn.be/stops/503609", "https://data.delijn.be/stops/508609"], ["https://data.delijn.be/stops/208409", "https://data.delijn.be/stops/209409"], ["https://data.delijn.be/stops/101931", "https://data.delijn.be/stops/106252"], ["https://data.delijn.be/stops/203974", "https://data.delijn.be/stops/204237"], ["https://data.delijn.be/stops/207450", "https://data.delijn.be/stops/207493"], ["https://data.delijn.be/stops/502342", "https://data.delijn.be/stops/507342"], ["https://data.delijn.be/stops/401439", "https://data.delijn.be/stops/401627"], ["https://data.delijn.be/stops/302235", "https://data.delijn.be/stops/302236"], ["https://data.delijn.be/stops/207464", "https://data.delijn.be/stops/216010"], ["https://data.delijn.be/stops/105024", "https://data.delijn.be/stops/105832"], ["https://data.delijn.be/stops/504555", "https://data.delijn.be/stops/505184"], ["https://data.delijn.be/stops/204483", "https://data.delijn.be/stops/205483"], ["https://data.delijn.be/stops/404441", "https://data.delijn.be/stops/409429"], ["https://data.delijn.be/stops/300480", "https://data.delijn.be/stops/306162"], ["https://data.delijn.be/stops/307804", "https://data.delijn.be/stops/307805"], ["https://data.delijn.be/stops/200739", "https://data.delijn.be/stops/203601"], ["https://data.delijn.be/stops/408632", "https://data.delijn.be/stops/410191"], ["https://data.delijn.be/stops/206809", "https://data.delijn.be/stops/207809"], ["https://data.delijn.be/stops/405180", "https://data.delijn.be/stops/405239"], ["https://data.delijn.be/stops/504190", "https://data.delijn.be/stops/509645"], ["https://data.delijn.be/stops/109059", "https://data.delijn.be/stops/109063"], ["https://data.delijn.be/stops/404081", "https://data.delijn.be/stops/405968"], ["https://data.delijn.be/stops/103152", "https://data.delijn.be/stops/410163"], ["https://data.delijn.be/stops/103611", "https://data.delijn.be/stops/106194"], ["https://data.delijn.be/stops/206332", "https://data.delijn.be/stops/207732"], ["https://data.delijn.be/stops/202782", "https://data.delijn.be/stops/211103"], ["https://data.delijn.be/stops/502212", "https://data.delijn.be/stops/505149"], ["https://data.delijn.be/stops/107716", "https://data.delijn.be/stops/109391"], ["https://data.delijn.be/stops/207152", "https://data.delijn.be/stops/207153"], ["https://data.delijn.be/stops/107376", "https://data.delijn.be/stops/107377"], ["https://data.delijn.be/stops/503151", "https://data.delijn.be/stops/505194"], ["https://data.delijn.be/stops/200566", "https://data.delijn.be/stops/201670"], ["https://data.delijn.be/stops/304518", "https://data.delijn.be/stops/307674"], ["https://data.delijn.be/stops/200900", "https://data.delijn.be/stops/208890"], ["https://data.delijn.be/stops/405505", "https://data.delijn.be/stops/410086"], ["https://data.delijn.be/stops/401584", "https://data.delijn.be/stops/402082"], ["https://data.delijn.be/stops/101969", "https://data.delijn.be/stops/108188"], ["https://data.delijn.be/stops/409330", "https://data.delijn.be/stops/410286"], ["https://data.delijn.be/stops/400212", "https://data.delijn.be/stops/405613"], ["https://data.delijn.be/stops/303174", "https://data.delijn.be/stops/303202"], ["https://data.delijn.be/stops/102025", "https://data.delijn.be/stops/103765"], ["https://data.delijn.be/stops/401511", "https://data.delijn.be/stops/402845"], ["https://data.delijn.be/stops/401531", "https://data.delijn.be/stops/403885"], ["https://data.delijn.be/stops/108138", "https://data.delijn.be/stops/108842"], ["https://data.delijn.be/stops/101852", "https://data.delijn.be/stops/106870"], ["https://data.delijn.be/stops/302795", "https://data.delijn.be/stops/306560"], ["https://data.delijn.be/stops/503311", "https://data.delijn.be/stops/508311"], ["https://data.delijn.be/stops/401633", "https://data.delijn.be/stops/401736"], ["https://data.delijn.be/stops/106923", "https://data.delijn.be/stops/106945"], ["https://data.delijn.be/stops/401786", "https://data.delijn.be/stops/401787"], ["https://data.delijn.be/stops/502915", "https://data.delijn.be/stops/507915"], ["https://data.delijn.be/stops/302570", "https://data.delijn.be/stops/302575"], ["https://data.delijn.be/stops/407814", "https://data.delijn.be/stops/408043"], ["https://data.delijn.be/stops/206930", "https://data.delijn.be/stops/206948"], ["https://data.delijn.be/stops/105031", "https://data.delijn.be/stops/106837"], ["https://data.delijn.be/stops/504520", "https://data.delijn.be/stops/504524"], ["https://data.delijn.be/stops/109451", "https://data.delijn.be/stops/109555"], ["https://data.delijn.be/stops/503384", "https://data.delijn.be/stops/508363"], ["https://data.delijn.be/stops/209469", "https://data.delijn.be/stops/209668"], ["https://data.delijn.be/stops/304850", "https://data.delijn.be/stops/304851"], ["https://data.delijn.be/stops/101027", "https://data.delijn.be/stops/101930"], ["https://data.delijn.be/stops/400061", "https://data.delijn.be/stops/400101"], ["https://data.delijn.be/stops/201379", "https://data.delijn.be/stops/201539"], ["https://data.delijn.be/stops/405500", "https://data.delijn.be/stops/409345"], ["https://data.delijn.be/stops/103624", "https://data.delijn.be/stops/103648"], ["https://data.delijn.be/stops/502685", "https://data.delijn.be/stops/507685"], ["https://data.delijn.be/stops/105721", "https://data.delijn.be/stops/106562"], ["https://data.delijn.be/stops/403147", "https://data.delijn.be/stops/403352"], ["https://data.delijn.be/stops/104571", "https://data.delijn.be/stops/104573"], ["https://data.delijn.be/stops/200647", "https://data.delijn.be/stops/200972"], ["https://data.delijn.be/stops/505164", "https://data.delijn.be/stops/505375"], ["https://data.delijn.be/stops/305520", "https://data.delijn.be/stops/308553"], ["https://data.delijn.be/stops/300377", "https://data.delijn.be/stops/307725"], ["https://data.delijn.be/stops/407257", "https://data.delijn.be/stops/409490"], ["https://data.delijn.be/stops/308781", "https://data.delijn.be/stops/308783"], ["https://data.delijn.be/stops/303285", "https://data.delijn.be/stops/303330"], ["https://data.delijn.be/stops/501549", "https://data.delijn.be/stops/506249"], ["https://data.delijn.be/stops/109148", "https://data.delijn.be/stops/109191"], ["https://data.delijn.be/stops/102659", "https://data.delijn.be/stops/104860"], ["https://data.delijn.be/stops/305264", "https://data.delijn.be/stops/305281"], ["https://data.delijn.be/stops/407782", "https://data.delijn.be/stops/307447"], ["https://data.delijn.be/stops/302863", "https://data.delijn.be/stops/306401"], ["https://data.delijn.be/stops/406557", "https://data.delijn.be/stops/406563"], ["https://data.delijn.be/stops/402175", "https://data.delijn.be/stops/402383"], ["https://data.delijn.be/stops/304252", "https://data.delijn.be/stops/305492"], ["https://data.delijn.be/stops/107712", "https://data.delijn.be/stops/107714"], ["https://data.delijn.be/stops/305163", "https://data.delijn.be/stops/308682"], ["https://data.delijn.be/stops/303820", "https://data.delijn.be/stops/303822"], ["https://data.delijn.be/stops/408775", "https://data.delijn.be/stops/408783"], ["https://data.delijn.be/stops/503047", "https://data.delijn.be/stops/508629"], ["https://data.delijn.be/stops/503788", "https://data.delijn.be/stops/505822"], ["https://data.delijn.be/stops/203925", "https://data.delijn.be/stops/203926"], ["https://data.delijn.be/stops/504621", "https://data.delijn.be/stops/504622"], ["https://data.delijn.be/stops/105093", "https://data.delijn.be/stops/105098"], ["https://data.delijn.be/stops/203338", "https://data.delijn.be/stops/203340"], ["https://data.delijn.be/stops/500043", "https://data.delijn.be/stops/500044"], ["https://data.delijn.be/stops/302267", "https://data.delijn.be/stops/303194"], ["https://data.delijn.be/stops/102494", "https://data.delijn.be/stops/400306"], ["https://data.delijn.be/stops/503064", "https://data.delijn.be/stops/503237"], ["https://data.delijn.be/stops/505786", "https://data.delijn.be/stops/509345"], ["https://data.delijn.be/stops/502622", "https://data.delijn.be/stops/507622"], ["https://data.delijn.be/stops/301397", "https://data.delijn.be/stops/306122"], ["https://data.delijn.be/stops/400215", "https://data.delijn.be/stops/400216"], ["https://data.delijn.be/stops/406266", "https://data.delijn.be/stops/408482"], ["https://data.delijn.be/stops/101685", "https://data.delijn.be/stops/101690"], ["https://data.delijn.be/stops/408222", "https://data.delijn.be/stops/408280"], ["https://data.delijn.be/stops/104592", "https://data.delijn.be/stops/108259"], ["https://data.delijn.be/stops/504023", "https://data.delijn.be/stops/504200"], ["https://data.delijn.be/stops/200547", "https://data.delijn.be/stops/208677"], ["https://data.delijn.be/stops/103169", "https://data.delijn.be/stops/109859"], ["https://data.delijn.be/stops/407715", "https://data.delijn.be/stops/407716"], ["https://data.delijn.be/stops/501097", "https://data.delijn.be/stops/507214"], ["https://data.delijn.be/stops/303806", "https://data.delijn.be/stops/303809"], ["https://data.delijn.be/stops/201712", "https://data.delijn.be/stops/208651"], ["https://data.delijn.be/stops/105223", "https://data.delijn.be/stops/105224"], ["https://data.delijn.be/stops/302653", "https://data.delijn.be/stops/306339"], ["https://data.delijn.be/stops/206388", "https://data.delijn.be/stops/207388"], ["https://data.delijn.be/stops/501362", "https://data.delijn.be/stops/501366"], ["https://data.delijn.be/stops/202711", "https://data.delijn.be/stops/203711"], ["https://data.delijn.be/stops/404033", "https://data.delijn.be/stops/410350"], ["https://data.delijn.be/stops/503983", "https://data.delijn.be/stops/508983"], ["https://data.delijn.be/stops/401397", "https://data.delijn.be/stops/301037"], ["https://data.delijn.be/stops/101906", "https://data.delijn.be/stops/107114"], ["https://data.delijn.be/stops/200066", "https://data.delijn.be/stops/200098"], ["https://data.delijn.be/stops/201182", "https://data.delijn.be/stops/202213"], ["https://data.delijn.be/stops/308172", "https://data.delijn.be/stops/308240"], ["https://data.delijn.be/stops/401390", "https://data.delijn.be/stops/402820"], ["https://data.delijn.be/stops/401671", "https://data.delijn.be/stops/401673"], ["https://data.delijn.be/stops/208209", "https://data.delijn.be/stops/209208"], ["https://data.delijn.be/stops/301836", "https://data.delijn.be/stops/301842"], ["https://data.delijn.be/stops/304934", "https://data.delijn.be/stops/304942"], ["https://data.delijn.be/stops/102592", "https://data.delijn.be/stops/108998"], ["https://data.delijn.be/stops/401454", "https://data.delijn.be/stops/401455"], ["https://data.delijn.be/stops/502326", "https://data.delijn.be/stops/502657"], ["https://data.delijn.be/stops/109453", "https://data.delijn.be/stops/109454"], ["https://data.delijn.be/stops/101823", "https://data.delijn.be/stops/102958"], ["https://data.delijn.be/stops/400581", "https://data.delijn.be/stops/403019"], ["https://data.delijn.be/stops/305598", "https://data.delijn.be/stops/306879"], ["https://data.delijn.be/stops/504439", "https://data.delijn.be/stops/509439"], ["https://data.delijn.be/stops/105419", "https://data.delijn.be/stops/109826"], ["https://data.delijn.be/stops/405970", "https://data.delijn.be/stops/405971"], ["https://data.delijn.be/stops/206443", "https://data.delijn.be/stops/209681"], ["https://data.delijn.be/stops/304564", "https://data.delijn.be/stops/305977"], ["https://data.delijn.be/stops/209423", "https://data.delijn.be/stops/209754"], ["https://data.delijn.be/stops/201286", "https://data.delijn.be/stops/201619"], ["https://data.delijn.be/stops/200917", "https://data.delijn.be/stops/202246"], ["https://data.delijn.be/stops/505596", "https://data.delijn.be/stops/507501"], ["https://data.delijn.be/stops/200968", "https://data.delijn.be/stops/208596"], ["https://data.delijn.be/stops/205079", "https://data.delijn.be/stops/205585"], ["https://data.delijn.be/stops/304073", "https://data.delijn.be/stops/308645"], ["https://data.delijn.be/stops/405326", "https://data.delijn.be/stops/405327"], ["https://data.delijn.be/stops/304469", "https://data.delijn.be/stops/304532"], ["https://data.delijn.be/stops/405267", "https://data.delijn.be/stops/405268"], ["https://data.delijn.be/stops/105283", "https://data.delijn.be/stops/105286"], ["https://data.delijn.be/stops/108226", "https://data.delijn.be/stops/108229"], ["https://data.delijn.be/stops/502451", "https://data.delijn.be/stops/507067"], ["https://data.delijn.be/stops/301907", "https://data.delijn.be/stops/306259"], ["https://data.delijn.be/stops/408313", "https://data.delijn.be/stops/408403"], ["https://data.delijn.be/stops/208671", "https://data.delijn.be/stops/219021"], ["https://data.delijn.be/stops/306150", "https://data.delijn.be/stops/306649"], ["https://data.delijn.be/stops/109330", "https://data.delijn.be/stops/300066"], ["https://data.delijn.be/stops/200184", "https://data.delijn.be/stops/201192"], ["https://data.delijn.be/stops/404522", "https://data.delijn.be/stops/404730"], ["https://data.delijn.be/stops/403442", "https://data.delijn.be/stops/403480"], ["https://data.delijn.be/stops/403794", "https://data.delijn.be/stops/403825"], ["https://data.delijn.be/stops/301665", "https://data.delijn.be/stops/307823"], ["https://data.delijn.be/stops/307910", "https://data.delijn.be/stops/308146"], ["https://data.delijn.be/stops/102619", "https://data.delijn.be/stops/102621"], ["https://data.delijn.be/stops/408863", "https://data.delijn.be/stops/408864"], ["https://data.delijn.be/stops/101970", "https://data.delijn.be/stops/101971"], ["https://data.delijn.be/stops/108617", "https://data.delijn.be/stops/300647"], ["https://data.delijn.be/stops/508684", "https://data.delijn.be/stops/508689"], ["https://data.delijn.be/stops/306373", "https://data.delijn.be/stops/306374"], ["https://data.delijn.be/stops/108334", "https://data.delijn.be/stops/109331"], ["https://data.delijn.be/stops/105692", "https://data.delijn.be/stops/105693"], ["https://data.delijn.be/stops/501489", "https://data.delijn.be/stops/501490"], ["https://data.delijn.be/stops/404696", "https://data.delijn.be/stops/407144"], ["https://data.delijn.be/stops/400689", "https://data.delijn.be/stops/404331"], ["https://data.delijn.be/stops/104383", "https://data.delijn.be/stops/104386"], ["https://data.delijn.be/stops/401114", "https://data.delijn.be/stops/401115"], ["https://data.delijn.be/stops/500998", "https://data.delijn.be/stops/504825"], ["https://data.delijn.be/stops/101724", "https://data.delijn.be/stops/106803"], ["https://data.delijn.be/stops/503348", "https://data.delijn.be/stops/508424"], ["https://data.delijn.be/stops/400926", "https://data.delijn.be/stops/400935"], ["https://data.delijn.be/stops/404857", "https://data.delijn.be/stops/404913"], ["https://data.delijn.be/stops/502582", "https://data.delijn.be/stops/507582"], ["https://data.delijn.be/stops/501541", "https://data.delijn.be/stops/505835"], ["https://data.delijn.be/stops/200751", "https://data.delijn.be/stops/208318"], ["https://data.delijn.be/stops/507562", "https://data.delijn.be/stops/507563"], ["https://data.delijn.be/stops/307047", "https://data.delijn.be/stops/307780"], ["https://data.delijn.be/stops/202399", "https://data.delijn.be/stops/209491"], ["https://data.delijn.be/stops/104106", "https://data.delijn.be/stops/107825"], ["https://data.delijn.be/stops/405124", "https://data.delijn.be/stops/409285"], ["https://data.delijn.be/stops/409079", "https://data.delijn.be/stops/409139"], ["https://data.delijn.be/stops/301651", "https://data.delijn.be/stops/301653"], ["https://data.delijn.be/stops/107210", "https://data.delijn.be/stops/107212"], ["https://data.delijn.be/stops/401350", "https://data.delijn.be/stops/401363"], ["https://data.delijn.be/stops/504557", "https://data.delijn.be/stops/504564"], ["https://data.delijn.be/stops/101398", "https://data.delijn.be/stops/106940"], ["https://data.delijn.be/stops/102481", "https://data.delijn.be/stops/102484"], ["https://data.delijn.be/stops/205993", "https://data.delijn.be/stops/209197"], ["https://data.delijn.be/stops/503207", "https://data.delijn.be/stops/507738"], ["https://data.delijn.be/stops/504756", "https://data.delijn.be/stops/508873"], ["https://data.delijn.be/stops/109119", "https://data.delijn.be/stops/109121"], ["https://data.delijn.be/stops/301481", "https://data.delijn.be/stops/301496"], ["https://data.delijn.be/stops/301096", "https://data.delijn.be/stops/303240"], ["https://data.delijn.be/stops/202128", "https://data.delijn.be/stops/202581"], ["https://data.delijn.be/stops/408961", "https://data.delijn.be/stops/408969"], ["https://data.delijn.be/stops/302743", "https://data.delijn.be/stops/305551"], ["https://data.delijn.be/stops/101320", "https://data.delijn.be/stops/104112"], ["https://data.delijn.be/stops/501368", "https://data.delijn.be/stops/506103"], ["https://data.delijn.be/stops/405147", "https://data.delijn.be/stops/405202"], ["https://data.delijn.be/stops/504835", "https://data.delijn.be/stops/505989"], ["https://data.delijn.be/stops/407214", "https://data.delijn.be/stops/410143"], ["https://data.delijn.be/stops/107606", "https://data.delijn.be/stops/406792"], ["https://data.delijn.be/stops/402104", "https://data.delijn.be/stops/402215"], ["https://data.delijn.be/stops/505709", "https://data.delijn.be/stops/509147"], ["https://data.delijn.be/stops/402210", "https://data.delijn.be/stops/405562"], ["https://data.delijn.be/stops/409794", "https://data.delijn.be/stops/409795"], ["https://data.delijn.be/stops/208194", "https://data.delijn.be/stops/209142"], ["https://data.delijn.be/stops/201356", "https://data.delijn.be/stops/209726"], ["https://data.delijn.be/stops/202967", "https://data.delijn.be/stops/204063"], ["https://data.delijn.be/stops/400790", "https://data.delijn.be/stops/400976"], ["https://data.delijn.be/stops/302657", "https://data.delijn.be/stops/302658"], ["https://data.delijn.be/stops/503380", "https://data.delijn.be/stops/503469"], ["https://data.delijn.be/stops/206441", "https://data.delijn.be/stops/207442"], ["https://data.delijn.be/stops/303468", "https://data.delijn.be/stops/304823"], ["https://data.delijn.be/stops/204298", "https://data.delijn.be/stops/204552"], ["https://data.delijn.be/stops/203427", "https://data.delijn.be/stops/203466"], ["https://data.delijn.be/stops/208445", "https://data.delijn.be/stops/209446"], ["https://data.delijn.be/stops/206466", "https://data.delijn.be/stops/207467"], ["https://data.delijn.be/stops/403345", "https://data.delijn.be/stops/403480"], ["https://data.delijn.be/stops/402953", "https://data.delijn.be/stops/405503"], ["https://data.delijn.be/stops/405853", "https://data.delijn.be/stops/409755"], ["https://data.delijn.be/stops/405557", "https://data.delijn.be/stops/408363"], ["https://data.delijn.be/stops/406211", "https://data.delijn.be/stops/406213"], ["https://data.delijn.be/stops/409621", "https://data.delijn.be/stops/409623"], ["https://data.delijn.be/stops/206031", "https://data.delijn.be/stops/207047"], ["https://data.delijn.be/stops/402715", "https://data.delijn.be/stops/301277"], ["https://data.delijn.be/stops/503412", "https://data.delijn.be/stops/508380"], ["https://data.delijn.be/stops/206021", "https://data.delijn.be/stops/207022"], ["https://data.delijn.be/stops/206629", "https://data.delijn.be/stops/209572"], ["https://data.delijn.be/stops/201167", "https://data.delijn.be/stops/203619"], ["https://data.delijn.be/stops/204753", "https://data.delijn.be/stops/205106"], ["https://data.delijn.be/stops/503364", "https://data.delijn.be/stops/509938"], ["https://data.delijn.be/stops/206028", "https://data.delijn.be/stops/207268"], ["https://data.delijn.be/stops/104462", "https://data.delijn.be/stops/107955"], ["https://data.delijn.be/stops/305389", "https://data.delijn.be/stops/305390"], ["https://data.delijn.be/stops/108368", "https://data.delijn.be/stops/304920"], ["https://data.delijn.be/stops/408645", "https://data.delijn.be/stops/408660"], ["https://data.delijn.be/stops/105131", "https://data.delijn.be/stops/108804"], ["https://data.delijn.be/stops/300204", "https://data.delijn.be/stops/306743"], ["https://data.delijn.be/stops/301830", "https://data.delijn.be/stops/305872"], ["https://data.delijn.be/stops/303587", "https://data.delijn.be/stops/305221"], ["https://data.delijn.be/stops/206942", "https://data.delijn.be/stops/209099"], ["https://data.delijn.be/stops/503284", "https://data.delijn.be/stops/508285"], ["https://data.delijn.be/stops/305751", "https://data.delijn.be/stops/306333"], ["https://data.delijn.be/stops/204468", "https://data.delijn.be/stops/204781"], ["https://data.delijn.be/stops/206907", "https://data.delijn.be/stops/207906"], ["https://data.delijn.be/stops/405703", "https://data.delijn.be/stops/405714"], ["https://data.delijn.be/stops/406160", "https://data.delijn.be/stops/409409"], ["https://data.delijn.be/stops/107451", "https://data.delijn.be/stops/109754"], ["https://data.delijn.be/stops/208398", "https://data.delijn.be/stops/209279"], ["https://data.delijn.be/stops/102985", "https://data.delijn.be/stops/103105"], ["https://data.delijn.be/stops/102738", "https://data.delijn.be/stops/102739"], ["https://data.delijn.be/stops/401007", "https://data.delijn.be/stops/401086"], ["https://data.delijn.be/stops/400377", "https://data.delijn.be/stops/401587"], ["https://data.delijn.be/stops/406080", "https://data.delijn.be/stops/406087"], ["https://data.delijn.be/stops/404128", "https://data.delijn.be/stops/408555"], ["https://data.delijn.be/stops/101928", "https://data.delijn.be/stops/108193"], ["https://data.delijn.be/stops/406292", "https://data.delijn.be/stops/409289"], ["https://data.delijn.be/stops/300475", "https://data.delijn.be/stops/301574"], ["https://data.delijn.be/stops/305869", "https://data.delijn.be/stops/306826"], ["https://data.delijn.be/stops/402988", "https://data.delijn.be/stops/410052"], ["https://data.delijn.be/stops/501373", "https://data.delijn.be/stops/501497"], ["https://data.delijn.be/stops/103640", "https://data.delijn.be/stops/105455"], ["https://data.delijn.be/stops/402248", "https://data.delijn.be/stops/402483"], ["https://data.delijn.be/stops/205120", "https://data.delijn.be/stops/214005"], ["https://data.delijn.be/stops/204427", "https://data.delijn.be/stops/205441"], ["https://data.delijn.be/stops/102619", "https://data.delijn.be/stops/108208"], ["https://data.delijn.be/stops/401394", "https://data.delijn.be/stops/401460"], ["https://data.delijn.be/stops/108178", "https://data.delijn.be/stops/108182"], ["https://data.delijn.be/stops/108692", "https://data.delijn.be/stops/108812"], ["https://data.delijn.be/stops/200182", "https://data.delijn.be/stops/200184"], ["https://data.delijn.be/stops/408444", "https://data.delijn.be/stops/410151"], ["https://data.delijn.be/stops/501067", "https://data.delijn.be/stops/501736"], ["https://data.delijn.be/stops/408249", "https://data.delijn.be/stops/308291"], ["https://data.delijn.be/stops/307926", "https://data.delijn.be/stops/307927"], ["https://data.delijn.be/stops/104988", "https://data.delijn.be/stops/109693"], ["https://data.delijn.be/stops/206550", "https://data.delijn.be/stops/209744"], ["https://data.delijn.be/stops/101226", "https://data.delijn.be/stops/107807"], ["https://data.delijn.be/stops/308013", "https://data.delijn.be/stops/308015"], ["https://data.delijn.be/stops/201947", "https://data.delijn.be/stops/203453"], ["https://data.delijn.be/stops/106868", "https://data.delijn.be/stops/106869"], ["https://data.delijn.be/stops/307938", "https://data.delijn.be/stops/307939"], ["https://data.delijn.be/stops/201095", "https://data.delijn.be/stops/202132"], ["https://data.delijn.be/stops/208354", "https://data.delijn.be/stops/209354"], ["https://data.delijn.be/stops/303001", "https://data.delijn.be/stops/308661"], ["https://data.delijn.be/stops/505239", "https://data.delijn.be/stops/505935"], ["https://data.delijn.be/stops/502257", "https://data.delijn.be/stops/502920"], ["https://data.delijn.be/stops/300578", "https://data.delijn.be/stops/302955"], ["https://data.delijn.be/stops/104106", "https://data.delijn.be/stops/104107"], ["https://data.delijn.be/stops/203082", "https://data.delijn.be/stops/203083"], ["https://data.delijn.be/stops/208494", "https://data.delijn.be/stops/209493"], ["https://data.delijn.be/stops/503060", "https://data.delijn.be/stops/503065"], ["https://data.delijn.be/stops/302357", "https://data.delijn.be/stops/302750"], ["https://data.delijn.be/stops/300633", "https://data.delijn.be/stops/307222"], ["https://data.delijn.be/stops/507398", "https://data.delijn.be/stops/507402"], ["https://data.delijn.be/stops/301529", "https://data.delijn.be/stops/308082"], ["https://data.delijn.be/stops/203794", "https://data.delijn.be/stops/502759"], ["https://data.delijn.be/stops/105133", "https://data.delijn.be/stops/105134"], ["https://data.delijn.be/stops/103143", "https://data.delijn.be/stops/103145"], ["https://data.delijn.be/stops/200257", "https://data.delijn.be/stops/202564"], ["https://data.delijn.be/stops/506385", "https://data.delijn.be/stops/506479"], ["https://data.delijn.be/stops/503155", "https://data.delijn.be/stops/503376"], ["https://data.delijn.be/stops/305740", "https://data.delijn.be/stops/305741"], ["https://data.delijn.be/stops/103327", "https://data.delijn.be/stops/105102"], ["https://data.delijn.be/stops/301796", "https://data.delijn.be/stops/301802"], ["https://data.delijn.be/stops/308474", "https://data.delijn.be/stops/308489"], ["https://data.delijn.be/stops/500943", "https://data.delijn.be/stops/503893"], ["https://data.delijn.be/stops/207068", "https://data.delijn.be/stops/207415"], ["https://data.delijn.be/stops/109249", "https://data.delijn.be/stops/109252"], ["https://data.delijn.be/stops/300347", "https://data.delijn.be/stops/300362"], ["https://data.delijn.be/stops/301742", "https://data.delijn.be/stops/303704"], ["https://data.delijn.be/stops/404437", "https://data.delijn.be/stops/404485"], ["https://data.delijn.be/stops/106891", "https://data.delijn.be/stops/106892"], ["https://data.delijn.be/stops/503407", "https://data.delijn.be/stops/508410"], ["https://data.delijn.be/stops/405895", "https://data.delijn.be/stops/408245"], ["https://data.delijn.be/stops/104804", "https://data.delijn.be/stops/109112"], ["https://data.delijn.be/stops/202936", "https://data.delijn.be/stops/203816"], ["https://data.delijn.be/stops/403151", "https://data.delijn.be/stops/403154"], ["https://data.delijn.be/stops/502682", "https://data.delijn.be/stops/509829"], ["https://data.delijn.be/stops/401836", "https://data.delijn.be/stops/406016"], ["https://data.delijn.be/stops/103532", "https://data.delijn.be/stops/109630"], ["https://data.delijn.be/stops/204778", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/401268", "https://data.delijn.be/stops/401381"], ["https://data.delijn.be/stops/208803", "https://data.delijn.be/stops/209430"], ["https://data.delijn.be/stops/101680", "https://data.delijn.be/stops/102230"], ["https://data.delijn.be/stops/409470", "https://data.delijn.be/stops/409471"], ["https://data.delijn.be/stops/503920", "https://data.delijn.be/stops/508920"], ["https://data.delijn.be/stops/202593", "https://data.delijn.be/stops/210023"], ["https://data.delijn.be/stops/305403", "https://data.delijn.be/stops/305463"], ["https://data.delijn.be/stops/301512", "https://data.delijn.be/stops/301513"], ["https://data.delijn.be/stops/204516", "https://data.delijn.be/stops/205515"], ["https://data.delijn.be/stops/505198", "https://data.delijn.be/stops/505217"], ["https://data.delijn.be/stops/302530", "https://data.delijn.be/stops/302607"], ["https://data.delijn.be/stops/301104", "https://data.delijn.be/stops/302017"], ["https://data.delijn.be/stops/210053", "https://data.delijn.be/stops/211054"], ["https://data.delijn.be/stops/200913", "https://data.delijn.be/stops/200949"], ["https://data.delijn.be/stops/202465", "https://data.delijn.be/stops/203816"], ["https://data.delijn.be/stops/200389", "https://data.delijn.be/stops/201570"], ["https://data.delijn.be/stops/502060", "https://data.delijn.be/stops/502071"], ["https://data.delijn.be/stops/501027", "https://data.delijn.be/stops/501448"], ["https://data.delijn.be/stops/305753", "https://data.delijn.be/stops/306331"], ["https://data.delijn.be/stops/505201", "https://data.delijn.be/stops/508148"], ["https://data.delijn.be/stops/302504", "https://data.delijn.be/stops/302514"], ["https://data.delijn.be/stops/503787", "https://data.delijn.be/stops/508790"], ["https://data.delijn.be/stops/108810", "https://data.delijn.be/stops/109733"], ["https://data.delijn.be/stops/102962", "https://data.delijn.be/stops/109278"], ["https://data.delijn.be/stops/406776", "https://data.delijn.be/stops/406777"], ["https://data.delijn.be/stops/103205", "https://data.delijn.be/stops/103206"], ["https://data.delijn.be/stops/503717", "https://data.delijn.be/stops/503718"], ["https://data.delijn.be/stops/202677", "https://data.delijn.be/stops/203678"], ["https://data.delijn.be/stops/503509", "https://data.delijn.be/stops/505230"], ["https://data.delijn.be/stops/401856", "https://data.delijn.be/stops/406347"], ["https://data.delijn.be/stops/208619", "https://data.delijn.be/stops/209084"], ["https://data.delijn.be/stops/104431", "https://data.delijn.be/stops/106788"], ["https://data.delijn.be/stops/408418", "https://data.delijn.be/stops/408419"], ["https://data.delijn.be/stops/504579", "https://data.delijn.be/stops/504689"], ["https://data.delijn.be/stops/400792", "https://data.delijn.be/stops/400793"], ["https://data.delijn.be/stops/102723", "https://data.delijn.be/stops/102724"], ["https://data.delijn.be/stops/202952", "https://data.delijn.be/stops/203952"], ["https://data.delijn.be/stops/302493", "https://data.delijn.be/stops/302497"], ["https://data.delijn.be/stops/301976", "https://data.delijn.be/stops/302920"], ["https://data.delijn.be/stops/102590", "https://data.delijn.be/stops/102745"], ["https://data.delijn.be/stops/301377", "https://data.delijn.be/stops/306138"], ["https://data.delijn.be/stops/400226", "https://data.delijn.be/stops/400230"], ["https://data.delijn.be/stops/304546", "https://data.delijn.be/stops/304550"], ["https://data.delijn.be/stops/505245", "https://data.delijn.be/stops/505780"], ["https://data.delijn.be/stops/109454", "https://data.delijn.be/stops/109555"], ["https://data.delijn.be/stops/402140", "https://data.delijn.be/stops/402396"], ["https://data.delijn.be/stops/105002", "https://data.delijn.be/stops/105119"], ["https://data.delijn.be/stops/402307", "https://data.delijn.be/stops/402309"], ["https://data.delijn.be/stops/307246", "https://data.delijn.be/stops/307249"], ["https://data.delijn.be/stops/503425", "https://data.delijn.be/stops/508431"], ["https://data.delijn.be/stops/301181", "https://data.delijn.be/stops/301189"], ["https://data.delijn.be/stops/108273", "https://data.delijn.be/stops/109360"], ["https://data.delijn.be/stops/302743", "https://data.delijn.be/stops/302744"], ["https://data.delijn.be/stops/302104", "https://data.delijn.be/stops/302276"], ["https://data.delijn.be/stops/505397", "https://data.delijn.be/stops/506022"], ["https://data.delijn.be/stops/206843", "https://data.delijn.be/stops/304649"], ["https://data.delijn.be/stops/502543", "https://data.delijn.be/stops/507667"], ["https://data.delijn.be/stops/503304", "https://data.delijn.be/stops/505990"], ["https://data.delijn.be/stops/504294", "https://data.delijn.be/stops/504319"], ["https://data.delijn.be/stops/209356", "https://data.delijn.be/stops/209357"], ["https://data.delijn.be/stops/209665", "https://data.delijn.be/stops/209680"], ["https://data.delijn.be/stops/503664", "https://data.delijn.be/stops/505959"], ["https://data.delijn.be/stops/308631", "https://data.delijn.be/stops/308632"], ["https://data.delijn.be/stops/502009", "https://data.delijn.be/stops/507005"], ["https://data.delijn.be/stops/106574", "https://data.delijn.be/stops/106575"], ["https://data.delijn.be/stops/302904", "https://data.delijn.be/stops/302913"], ["https://data.delijn.be/stops/509621", "https://data.delijn.be/stops/509624"], ["https://data.delijn.be/stops/204593", "https://data.delijn.be/stops/205167"], ["https://data.delijn.be/stops/205046", "https://data.delijn.be/stops/205047"], ["https://data.delijn.be/stops/400251", "https://data.delijn.be/stops/400422"], ["https://data.delijn.be/stops/203507", "https://data.delijn.be/stops/203508"], ["https://data.delijn.be/stops/308510", "https://data.delijn.be/stops/308511"], ["https://data.delijn.be/stops/102930", "https://data.delijn.be/stops/103520"], ["https://data.delijn.be/stops/105065", "https://data.delijn.be/stops/105105"], ["https://data.delijn.be/stops/106105", "https://data.delijn.be/stops/109373"], ["https://data.delijn.be/stops/205210", "https://data.delijn.be/stops/205450"], ["https://data.delijn.be/stops/405049", "https://data.delijn.be/stops/405066"], ["https://data.delijn.be/stops/305707", "https://data.delijn.be/stops/307926"], ["https://data.delijn.be/stops/509175", "https://data.delijn.be/stops/509192"], ["https://data.delijn.be/stops/501772", "https://data.delijn.be/stops/509897"], ["https://data.delijn.be/stops/206721", "https://data.delijn.be/stops/207618"], ["https://data.delijn.be/stops/408208", "https://data.delijn.be/stops/408312"], ["https://data.delijn.be/stops/506429", "https://data.delijn.be/stops/506456"], ["https://data.delijn.be/stops/102323", "https://data.delijn.be/stops/105334"], ["https://data.delijn.be/stops/303101", "https://data.delijn.be/stops/303114"], ["https://data.delijn.be/stops/200934", "https://data.delijn.be/stops/201694"], ["https://data.delijn.be/stops/305916", "https://data.delijn.be/stops/305918"], ["https://data.delijn.be/stops/203406", "https://data.delijn.be/stops/210405"], ["https://data.delijn.be/stops/307744", "https://data.delijn.be/stops/307745"], ["https://data.delijn.be/stops/504734", "https://data.delijn.be/stops/506370"], ["https://data.delijn.be/stops/400859", "https://data.delijn.be/stops/400874"], ["https://data.delijn.be/stops/201673", "https://data.delijn.be/stops/208662"], ["https://data.delijn.be/stops/106459", "https://data.delijn.be/stops/109558"], ["https://data.delijn.be/stops/304446", "https://data.delijn.be/stops/307697"], ["https://data.delijn.be/stops/102172", "https://data.delijn.be/stops/104051"], ["https://data.delijn.be/stops/104609", "https://data.delijn.be/stops/105825"], ["https://data.delijn.be/stops/200248", "https://data.delijn.be/stops/200576"], ["https://data.delijn.be/stops/104098", "https://data.delijn.be/stops/107860"], ["https://data.delijn.be/stops/301764", "https://data.delijn.be/stops/301774"], ["https://data.delijn.be/stops/300457", "https://data.delijn.be/stops/304979"], ["https://data.delijn.be/stops/107202", "https://data.delijn.be/stops/107611"], ["https://data.delijn.be/stops/200092", "https://data.delijn.be/stops/201060"], ["https://data.delijn.be/stops/502411", "https://data.delijn.be/stops/507588"], ["https://data.delijn.be/stops/109729", "https://data.delijn.be/stops/401957"], ["https://data.delijn.be/stops/503468", "https://data.delijn.be/stops/508468"], ["https://data.delijn.be/stops/200182", "https://data.delijn.be/stops/210128"], ["https://data.delijn.be/stops/302166", "https://data.delijn.be/stops/303629"], ["https://data.delijn.be/stops/303079", "https://data.delijn.be/stops/303105"], ["https://data.delijn.be/stops/406404", "https://data.delijn.be/stops/407725"], ["https://data.delijn.be/stops/305105", "https://data.delijn.be/stops/305107"], ["https://data.delijn.be/stops/101597", "https://data.delijn.be/stops/103084"], ["https://data.delijn.be/stops/502482", "https://data.delijn.be/stops/507487"], ["https://data.delijn.be/stops/303960", "https://data.delijn.be/stops/306099"], ["https://data.delijn.be/stops/205083", "https://data.delijn.be/stops/205084"], ["https://data.delijn.be/stops/102595", "https://data.delijn.be/stops/105500"], ["https://data.delijn.be/stops/103112", "https://data.delijn.be/stops/105560"], ["https://data.delijn.be/stops/201202", "https://data.delijn.be/stops/202935"], ["https://data.delijn.be/stops/505097", "https://data.delijn.be/stops/505125"], ["https://data.delijn.be/stops/301469", "https://data.delijn.be/stops/308077"], ["https://data.delijn.be/stops/307314", "https://data.delijn.be/stops/307316"], ["https://data.delijn.be/stops/206357", "https://data.delijn.be/stops/207348"], ["https://data.delijn.be/stops/503528", "https://data.delijn.be/stops/504777"], ["https://data.delijn.be/stops/103245", "https://data.delijn.be/stops/107705"], ["https://data.delijn.be/stops/509153", "https://data.delijn.be/stops/509588"], ["https://data.delijn.be/stops/109303", "https://data.delijn.be/stops/109331"], ["https://data.delijn.be/stops/200249", "https://data.delijn.be/stops/210131"], ["https://data.delijn.be/stops/104514", "https://data.delijn.be/stops/104515"], ["https://data.delijn.be/stops/102205", "https://data.delijn.be/stops/105365"], ["https://data.delijn.be/stops/204083", "https://data.delijn.be/stops/204409"], ["https://data.delijn.be/stops/303645", "https://data.delijn.be/stops/305503"], ["https://data.delijn.be/stops/407678", "https://data.delijn.be/stops/408699"], ["https://data.delijn.be/stops/302498", "https://data.delijn.be/stops/307037"], ["https://data.delijn.be/stops/208485", "https://data.delijn.be/stops/209485"], ["https://data.delijn.be/stops/201171", "https://data.delijn.be/stops/210119"], ["https://data.delijn.be/stops/501741", "https://data.delijn.be/stops/504734"], ["https://data.delijn.be/stops/105723", "https://data.delijn.be/stops/106563"], ["https://data.delijn.be/stops/409041", "https://data.delijn.be/stops/409044"], ["https://data.delijn.be/stops/508788", "https://data.delijn.be/stops/508789"], ["https://data.delijn.be/stops/301743", "https://data.delijn.be/stops/301795"], ["https://data.delijn.be/stops/206881", "https://data.delijn.be/stops/207915"], ["https://data.delijn.be/stops/102937", "https://data.delijn.be/stops/102986"], ["https://data.delijn.be/stops/101670", "https://data.delijn.be/stops/105760"], ["https://data.delijn.be/stops/507176", "https://data.delijn.be/stops/508066"], ["https://data.delijn.be/stops/402511", "https://data.delijn.be/stops/402515"], ["https://data.delijn.be/stops/109627", "https://data.delijn.be/stops/109628"], ["https://data.delijn.be/stops/107050", "https://data.delijn.be/stops/108465"], ["https://data.delijn.be/stops/103537", "https://data.delijn.be/stops/103538"], ["https://data.delijn.be/stops/304641", "https://data.delijn.be/stops/304642"], ["https://data.delijn.be/stops/505922", "https://data.delijn.be/stops/507175"], ["https://data.delijn.be/stops/402816", "https://data.delijn.be/stops/402817"], ["https://data.delijn.be/stops/106970", "https://data.delijn.be/stops/107634"], ["https://data.delijn.be/stops/209707", "https://data.delijn.be/stops/209956"], ["https://data.delijn.be/stops/202495", "https://data.delijn.be/stops/203172"], ["https://data.delijn.be/stops/401092", "https://data.delijn.be/stops/401107"], ["https://data.delijn.be/stops/202641", "https://data.delijn.be/stops/203578"], ["https://data.delijn.be/stops/108907", "https://data.delijn.be/stops/109396"], ["https://data.delijn.be/stops/107855", "https://data.delijn.be/stops/107865"], ["https://data.delijn.be/stops/503057", "https://data.delijn.be/stops/508053"], ["https://data.delijn.be/stops/507407", "https://data.delijn.be/stops/507725"], ["https://data.delijn.be/stops/504221", "https://data.delijn.be/stops/509221"], ["https://data.delijn.be/stops/501059", "https://data.delijn.be/stops/506059"], ["https://data.delijn.be/stops/507796", "https://data.delijn.be/stops/508319"], ["https://data.delijn.be/stops/306368", "https://data.delijn.be/stops/307591"], ["https://data.delijn.be/stops/406655", "https://data.delijn.be/stops/406692"], ["https://data.delijn.be/stops/406242", "https://data.delijn.be/stops/408416"], ["https://data.delijn.be/stops/303818", "https://data.delijn.be/stops/303823"], ["https://data.delijn.be/stops/206799", "https://data.delijn.be/stops/208622"], ["https://data.delijn.be/stops/304931", "https://data.delijn.be/stops/305225"], ["https://data.delijn.be/stops/206149", "https://data.delijn.be/stops/206908"], ["https://data.delijn.be/stops/503417", "https://data.delijn.be/stops/508417"], ["https://data.delijn.be/stops/103729", "https://data.delijn.be/stops/108614"], ["https://data.delijn.be/stops/105139", "https://data.delijn.be/stops/305825"], ["https://data.delijn.be/stops/403980", "https://data.delijn.be/stops/403981"], ["https://data.delijn.be/stops/405164", "https://data.delijn.be/stops/405165"], ["https://data.delijn.be/stops/300092", "https://data.delijn.be/stops/306843"], ["https://data.delijn.be/stops/201314", "https://data.delijn.be/stops/205920"], ["https://data.delijn.be/stops/304283", "https://data.delijn.be/stops/304284"], ["https://data.delijn.be/stops/407982", "https://data.delijn.be/stops/408121"], ["https://data.delijn.be/stops/300695", "https://data.delijn.be/stops/306937"], ["https://data.delijn.be/stops/503302", "https://data.delijn.be/stops/508307"], ["https://data.delijn.be/stops/306771", "https://data.delijn.be/stops/308112"], ["https://data.delijn.be/stops/503594", "https://data.delijn.be/stops/503598"], ["https://data.delijn.be/stops/106102", "https://data.delijn.be/stops/106103"], ["https://data.delijn.be/stops/506211", "https://data.delijn.be/stops/506223"], ["https://data.delijn.be/stops/303580", "https://data.delijn.be/stops/305910"], ["https://data.delijn.be/stops/101230", "https://data.delijn.be/stops/104161"], ["https://data.delijn.be/stops/507220", "https://data.delijn.be/stops/509796"], ["https://data.delijn.be/stops/304220", "https://data.delijn.be/stops/304222"], ["https://data.delijn.be/stops/201160", "https://data.delijn.be/stops/201310"], ["https://data.delijn.be/stops/407163", "https://data.delijn.be/stops/409876"], ["https://data.delijn.be/stops/507748", "https://data.delijn.be/stops/508679"], ["https://data.delijn.be/stops/501348", "https://data.delijn.be/stops/506348"], ["https://data.delijn.be/stops/302604", "https://data.delijn.be/stops/308926"], ["https://data.delijn.be/stops/203099", "https://data.delijn.be/stops/203259"], ["https://data.delijn.be/stops/404702", "https://data.delijn.be/stops/404718"], ["https://data.delijn.be/stops/206860", "https://data.delijn.be/stops/207483"], ["https://data.delijn.be/stops/305165", "https://data.delijn.be/stops/306001"], ["https://data.delijn.be/stops/103855", "https://data.delijn.be/stops/106060"], ["https://data.delijn.be/stops/401766", "https://data.delijn.be/stops/406019"], ["https://data.delijn.be/stops/101200", "https://data.delijn.be/stops/105745"], ["https://data.delijn.be/stops/504618", "https://data.delijn.be/stops/505711"], ["https://data.delijn.be/stops/202709", "https://data.delijn.be/stops/203710"], ["https://data.delijn.be/stops/206806", "https://data.delijn.be/stops/207313"], ["https://data.delijn.be/stops/407574", "https://data.delijn.be/stops/408944"], ["https://data.delijn.be/stops/509196", "https://data.delijn.be/stops/509526"], ["https://data.delijn.be/stops/200138", "https://data.delijn.be/stops/201987"], ["https://data.delijn.be/stops/305150", "https://data.delijn.be/stops/308050"], ["https://data.delijn.be/stops/107448", "https://data.delijn.be/stops/109754"], ["https://data.delijn.be/stops/102659", "https://data.delijn.be/stops/108010"], ["https://data.delijn.be/stops/301141", "https://data.delijn.be/stops/306275"], ["https://data.delijn.be/stops/502247", "https://data.delijn.be/stops/507247"], ["https://data.delijn.be/stops/303073", "https://data.delijn.be/stops/303103"], ["https://data.delijn.be/stops/208391", "https://data.delijn.be/stops/209391"], ["https://data.delijn.be/stops/409058", "https://data.delijn.be/stops/410023"], ["https://data.delijn.be/stops/200769", "https://data.delijn.be/stops/200771"], ["https://data.delijn.be/stops/103959", "https://data.delijn.be/stops/109586"], ["https://data.delijn.be/stops/503484", "https://data.delijn.be/stops/504392"], ["https://data.delijn.be/stops/108791", "https://data.delijn.be/stops/109556"], ["https://data.delijn.be/stops/401585", "https://data.delijn.be/stops/401590"], ["https://data.delijn.be/stops/102207", "https://data.delijn.be/stops/102208"], ["https://data.delijn.be/stops/201676", "https://data.delijn.be/stops/202402"], ["https://data.delijn.be/stops/502061", "https://data.delijn.be/stops/505675"], ["https://data.delijn.be/stops/400656", "https://data.delijn.be/stops/400657"], ["https://data.delijn.be/stops/404859", "https://data.delijn.be/stops/404878"], ["https://data.delijn.be/stops/504458", "https://data.delijn.be/stops/509460"], ["https://data.delijn.be/stops/405383", "https://data.delijn.be/stops/405412"], ["https://data.delijn.be/stops/405158", "https://data.delijn.be/stops/405179"], ["https://data.delijn.be/stops/507475", "https://data.delijn.be/stops/508326"], ["https://data.delijn.be/stops/103169", "https://data.delijn.be/stops/109923"], ["https://data.delijn.be/stops/201001", "https://data.delijn.be/stops/202527"], ["https://data.delijn.be/stops/504253", "https://data.delijn.be/stops/509253"], ["https://data.delijn.be/stops/300325", "https://data.delijn.be/stops/300328"], ["https://data.delijn.be/stops/108322", "https://data.delijn.be/stops/108380"], ["https://data.delijn.be/stops/307026", "https://data.delijn.be/stops/307027"], ["https://data.delijn.be/stops/202853", "https://data.delijn.be/stops/203853"], ["https://data.delijn.be/stops/501206", "https://data.delijn.be/stops/501213"], ["https://data.delijn.be/stops/300936", "https://data.delijn.be/stops/300937"], ["https://data.delijn.be/stops/408875", "https://data.delijn.be/stops/408910"], ["https://data.delijn.be/stops/105596", "https://data.delijn.be/stops/105597"], ["https://data.delijn.be/stops/402000", "https://data.delijn.be/stops/410223"], ["https://data.delijn.be/stops/400609", "https://data.delijn.be/stops/408386"], ["https://data.delijn.be/stops/107078", "https://data.delijn.be/stops/107347"], ["https://data.delijn.be/stops/203648", "https://data.delijn.be/stops/210119"], ["https://data.delijn.be/stops/308743", "https://data.delijn.be/stops/308745"], ["https://data.delijn.be/stops/302299", "https://data.delijn.be/stops/306791"], ["https://data.delijn.be/stops/405040", "https://data.delijn.be/stops/405044"], ["https://data.delijn.be/stops/202276", "https://data.delijn.be/stops/211659"], ["https://data.delijn.be/stops/404496", "https://data.delijn.be/stops/404583"], ["https://data.delijn.be/stops/102848", "https://data.delijn.be/stops/103625"], ["https://data.delijn.be/stops/300808", "https://data.delijn.be/stops/304534"], ["https://data.delijn.be/stops/103689", "https://data.delijn.be/stops/107577"], ["https://data.delijn.be/stops/210127", "https://data.delijn.be/stops/211127"], ["https://data.delijn.be/stops/504581", "https://data.delijn.be/stops/509584"], ["https://data.delijn.be/stops/506147", "https://data.delijn.be/stops/506156"], ["https://data.delijn.be/stops/108437", "https://data.delijn.be/stops/108438"], ["https://data.delijn.be/stops/108362", "https://data.delijn.be/stops/108506"], ["https://data.delijn.be/stops/102431", "https://data.delijn.be/stops/102584"], ["https://data.delijn.be/stops/409044", "https://data.delijn.be/stops/409443"], ["https://data.delijn.be/stops/204045", "https://data.delijn.be/stops/205045"], ["https://data.delijn.be/stops/204723", "https://data.delijn.be/stops/214013"], ["https://data.delijn.be/stops/109199", "https://data.delijn.be/stops/109202"], ["https://data.delijn.be/stops/304483", "https://data.delijn.be/stops/304506"], ["https://data.delijn.be/stops/304317", "https://data.delijn.be/stops/305280"], ["https://data.delijn.be/stops/205161", "https://data.delijn.be/stops/206279"], ["https://data.delijn.be/stops/503612", "https://data.delijn.be/stops/508504"], ["https://data.delijn.be/stops/109188", "https://data.delijn.be/stops/403860"], ["https://data.delijn.be/stops/303327", "https://data.delijn.be/stops/306336"], ["https://data.delijn.be/stops/101700", "https://data.delijn.be/stops/103397"], ["https://data.delijn.be/stops/302420", "https://data.delijn.be/stops/302421"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/307008"], ["https://data.delijn.be/stops/402406", "https://data.delijn.be/stops/402413"], ["https://data.delijn.be/stops/103609", "https://data.delijn.be/stops/106192"], ["https://data.delijn.be/stops/407588", "https://data.delijn.be/stops/407616"], ["https://data.delijn.be/stops/206204", "https://data.delijn.be/stops/207204"], ["https://data.delijn.be/stops/505148", "https://data.delijn.be/stops/505721"], ["https://data.delijn.be/stops/200364", "https://data.delijn.be/stops/200985"], ["https://data.delijn.be/stops/503684", "https://data.delijn.be/stops/508689"], ["https://data.delijn.be/stops/503782", "https://data.delijn.be/stops/505272"], ["https://data.delijn.be/stops/307550", "https://data.delijn.be/stops/307557"], ["https://data.delijn.be/stops/504196", "https://data.delijn.be/stops/509196"], ["https://data.delijn.be/stops/405633", "https://data.delijn.be/stops/405635"], ["https://data.delijn.be/stops/503183", "https://data.delijn.be/stops/504810"], ["https://data.delijn.be/stops/400102", "https://data.delijn.be/stops/409119"], ["https://data.delijn.be/stops/404381", "https://data.delijn.be/stops/404383"], ["https://data.delijn.be/stops/302554", "https://data.delijn.be/stops/302555"], ["https://data.delijn.be/stops/406182", "https://data.delijn.be/stops/406203"], ["https://data.delijn.be/stops/407590", "https://data.delijn.be/stops/407617"], ["https://data.delijn.be/stops/206182", "https://data.delijn.be/stops/217006"], ["https://data.delijn.be/stops/402451", "https://data.delijn.be/stops/407495"], ["https://data.delijn.be/stops/501441", "https://data.delijn.be/stops/506441"], ["https://data.delijn.be/stops/207879", "https://data.delijn.be/stops/207905"], ["https://data.delijn.be/stops/203393", "https://data.delijn.be/stops/210122"], ["https://data.delijn.be/stops/308247", "https://data.delijn.be/stops/308250"], ["https://data.delijn.be/stops/207176", "https://data.delijn.be/stops/207519"], ["https://data.delijn.be/stops/504996", "https://data.delijn.be/stops/508119"], ["https://data.delijn.be/stops/407773", "https://data.delijn.be/stops/304362"], ["https://data.delijn.be/stops/209183", "https://data.delijn.be/stops/218019"], ["https://data.delijn.be/stops/301360", "https://data.delijn.be/stops/303835"], ["https://data.delijn.be/stops/504805", "https://data.delijn.be/stops/507814"], ["https://data.delijn.be/stops/402516", "https://data.delijn.be/stops/402523"], ["https://data.delijn.be/stops/304065", "https://data.delijn.be/stops/304112"], ["https://data.delijn.be/stops/102710", "https://data.delijn.be/stops/102762"], ["https://data.delijn.be/stops/306682", "https://data.delijn.be/stops/307879"], ["https://data.delijn.be/stops/302382", "https://data.delijn.be/stops/302386"], ["https://data.delijn.be/stops/403153", "https://data.delijn.be/stops/407634"], ["https://data.delijn.be/stops/406972", "https://data.delijn.be/stops/409483"], ["https://data.delijn.be/stops/101921", "https://data.delijn.be/stops/105667"], ["https://data.delijn.be/stops/404123", "https://data.delijn.be/stops/410281"], ["https://data.delijn.be/stops/106635", "https://data.delijn.be/stops/106636"], ["https://data.delijn.be/stops/508035", "https://data.delijn.be/stops/508274"], ["https://data.delijn.be/stops/505416", "https://data.delijn.be/stops/507768"], ["https://data.delijn.be/stops/303308", "https://data.delijn.be/stops/308921"], ["https://data.delijn.be/stops/501164", "https://data.delijn.be/stops/506114"], ["https://data.delijn.be/stops/304452", "https://data.delijn.be/stops/304461"], ["https://data.delijn.be/stops/106402", "https://data.delijn.be/stops/106403"], ["https://data.delijn.be/stops/303289", "https://data.delijn.be/stops/303301"], ["https://data.delijn.be/stops/505428", "https://data.delijn.be/stops/505830"], ["https://data.delijn.be/stops/401841", "https://data.delijn.be/stops/406031"], ["https://data.delijn.be/stops/302088", "https://data.delijn.be/stops/302098"], ["https://data.delijn.be/stops/300665", "https://data.delijn.be/stops/300676"], ["https://data.delijn.be/stops/503654", "https://data.delijn.be/stops/505794"], ["https://data.delijn.be/stops/302198", "https://data.delijn.be/stops/305458"], ["https://data.delijn.be/stops/507061", "https://data.delijn.be/stops/507068"], ["https://data.delijn.be/stops/502438", "https://data.delijn.be/stops/502613"], ["https://data.delijn.be/stops/201403", "https://data.delijn.be/stops/202983"], ["https://data.delijn.be/stops/200872", "https://data.delijn.be/stops/201116"], ["https://data.delijn.be/stops/206357", "https://data.delijn.be/stops/206916"], ["https://data.delijn.be/stops/103228", "https://data.delijn.be/stops/103596"], ["https://data.delijn.be/stops/308482", "https://data.delijn.be/stops/308536"], ["https://data.delijn.be/stops/101605", "https://data.delijn.be/stops/103930"], ["https://data.delijn.be/stops/202317", "https://data.delijn.be/stops/203317"], ["https://data.delijn.be/stops/108987", "https://data.delijn.be/stops/109089"], ["https://data.delijn.be/stops/208183", "https://data.delijn.be/stops/209183"], ["https://data.delijn.be/stops/403957", "https://data.delijn.be/stops/410025"], ["https://data.delijn.be/stops/400551", "https://data.delijn.be/stops/400563"], ["https://data.delijn.be/stops/304148", "https://data.delijn.be/stops/307763"], ["https://data.delijn.be/stops/302932", "https://data.delijn.be/stops/308438"], ["https://data.delijn.be/stops/501427", "https://data.delijn.be/stops/506431"], ["https://data.delijn.be/stops/301383", "https://data.delijn.be/stops/303795"], ["https://data.delijn.be/stops/304377", "https://data.delijn.be/stops/307401"], ["https://data.delijn.be/stops/407375", "https://data.delijn.be/stops/407598"], ["https://data.delijn.be/stops/402504", "https://data.delijn.be/stops/402956"], ["https://data.delijn.be/stops/402064", "https://data.delijn.be/stops/410059"], ["https://data.delijn.be/stops/404010", "https://data.delijn.be/stops/404014"], ["https://data.delijn.be/stops/400822", "https://data.delijn.be/stops/401908"], ["https://data.delijn.be/stops/104081", "https://data.delijn.be/stops/105120"], ["https://data.delijn.be/stops/107161", "https://data.delijn.be/stops/107558"], ["https://data.delijn.be/stops/308498", "https://data.delijn.be/stops/308538"], ["https://data.delijn.be/stops/106691", "https://data.delijn.be/stops/106693"], ["https://data.delijn.be/stops/208650", "https://data.delijn.be/stops/208651"], ["https://data.delijn.be/stops/208337", "https://data.delijn.be/stops/209337"], ["https://data.delijn.be/stops/505833", "https://data.delijn.be/stops/507560"], ["https://data.delijn.be/stops/503171", "https://data.delijn.be/stops/508999"], ["https://data.delijn.be/stops/407913", "https://data.delijn.be/stops/408053"], ["https://data.delijn.be/stops/503361", "https://data.delijn.be/stops/508419"], ["https://data.delijn.be/stops/410171", "https://data.delijn.be/stops/410183"], ["https://data.delijn.be/stops/404406", "https://data.delijn.be/stops/404420"], ["https://data.delijn.be/stops/200126", "https://data.delijn.be/stops/201126"], ["https://data.delijn.be/stops/500007", "https://data.delijn.be/stops/503065"], ["https://data.delijn.be/stops/101891", "https://data.delijn.be/stops/109569"], ["https://data.delijn.be/stops/206780", "https://data.delijn.be/stops/206940"], ["https://data.delijn.be/stops/504493", "https://data.delijn.be/stops/504744"], ["https://data.delijn.be/stops/405615", "https://data.delijn.be/stops/406577"], ["https://data.delijn.be/stops/201857", "https://data.delijn.be/stops/210035"], ["https://data.delijn.be/stops/508724", "https://data.delijn.be/stops/509976"], ["https://data.delijn.be/stops/208528", "https://data.delijn.be/stops/208533"], ["https://data.delijn.be/stops/503138", "https://data.delijn.be/stops/505933"], ["https://data.delijn.be/stops/207269", "https://data.delijn.be/stops/207880"], ["https://data.delijn.be/stops/302899", "https://data.delijn.be/stops/306096"], ["https://data.delijn.be/stops/204205", "https://data.delijn.be/stops/205235"], ["https://data.delijn.be/stops/404734", "https://data.delijn.be/stops/404834"], ["https://data.delijn.be/stops/109028", "https://data.delijn.be/stops/109029"], ["https://data.delijn.be/stops/308115", "https://data.delijn.be/stops/308820"], ["https://data.delijn.be/stops/201699", "https://data.delijn.be/stops/208643"], ["https://data.delijn.be/stops/509205", "https://data.delijn.be/stops/509206"], ["https://data.delijn.be/stops/204437", "https://data.delijn.be/stops/204742"], ["https://data.delijn.be/stops/303204", "https://data.delijn.be/stops/307953"], ["https://data.delijn.be/stops/405459", "https://data.delijn.be/stops/405462"], ["https://data.delijn.be/stops/300069", "https://data.delijn.be/stops/300070"], ["https://data.delijn.be/stops/408603", "https://data.delijn.be/stops/408707"], ["https://data.delijn.be/stops/208386", "https://data.delijn.be/stops/209386"], ["https://data.delijn.be/stops/504080", "https://data.delijn.be/stops/504537"], ["https://data.delijn.be/stops/307193", "https://data.delijn.be/stops/307194"], ["https://data.delijn.be/stops/304014", "https://data.delijn.be/stops/306278"], ["https://data.delijn.be/stops/202259", "https://data.delijn.be/stops/203258"], ["https://data.delijn.be/stops/202089", "https://data.delijn.be/stops/203089"], ["https://data.delijn.be/stops/401434", "https://data.delijn.be/stops/401497"], ["https://data.delijn.be/stops/102617", "https://data.delijn.be/stops/102632"], ["https://data.delijn.be/stops/104003", "https://data.delijn.be/stops/104004"], ["https://data.delijn.be/stops/201859", "https://data.delijn.be/stops/203396"], ["https://data.delijn.be/stops/506777", "https://data.delijn.be/stops/506781"], ["https://data.delijn.be/stops/102660", "https://data.delijn.be/stops/102792"], ["https://data.delijn.be/stops/400040", "https://data.delijn.be/stops/405497"], ["https://data.delijn.be/stops/206882", "https://data.delijn.be/stops/207731"], ["https://data.delijn.be/stops/501367", "https://data.delijn.be/stops/506102"], ["https://data.delijn.be/stops/400126", "https://data.delijn.be/stops/400128"], ["https://data.delijn.be/stops/401426", "https://data.delijn.be/stops/410290"], ["https://data.delijn.be/stops/404973", "https://data.delijn.be/stops/404974"], ["https://data.delijn.be/stops/401106", "https://data.delijn.be/stops/401107"], ["https://data.delijn.be/stops/210130", "https://data.delijn.be/stops/211129"], ["https://data.delijn.be/stops/501599", "https://data.delijn.be/stops/506644"], ["https://data.delijn.be/stops/203912", "https://data.delijn.be/stops/203929"], ["https://data.delijn.be/stops/202424", "https://data.delijn.be/stops/203275"], ["https://data.delijn.be/stops/504234", "https://data.delijn.be/stops/505926"], ["https://data.delijn.be/stops/503076", "https://data.delijn.be/stops/508070"], ["https://data.delijn.be/stops/304046", "https://data.delijn.be/stops/304811"], ["https://data.delijn.be/stops/300424", "https://data.delijn.be/stops/307409"], ["https://data.delijn.be/stops/200185", "https://data.delijn.be/stops/201049"], ["https://data.delijn.be/stops/505151", "https://data.delijn.be/stops/507209"], ["https://data.delijn.be/stops/305108", "https://data.delijn.be/stops/305115"], ["https://data.delijn.be/stops/505985", "https://data.delijn.be/stops/508479"], ["https://data.delijn.be/stops/302952", "https://data.delijn.be/stops/302999"], ["https://data.delijn.be/stops/504290", "https://data.delijn.be/stops/504532"], ["https://data.delijn.be/stops/200133", "https://data.delijn.be/stops/203451"], ["https://data.delijn.be/stops/201434", "https://data.delijn.be/stops/203543"], ["https://data.delijn.be/stops/207283", "https://data.delijn.be/stops/207396"], ["https://data.delijn.be/stops/305211", "https://data.delijn.be/stops/305212"], ["https://data.delijn.be/stops/406186", "https://data.delijn.be/stops/409397"], ["https://data.delijn.be/stops/106929", "https://data.delijn.be/stops/106931"], ["https://data.delijn.be/stops/204330", "https://data.delijn.be/stops/204502"], ["https://data.delijn.be/stops/410154", "https://data.delijn.be/stops/304719"], ["https://data.delijn.be/stops/206181", "https://data.delijn.be/stops/207957"], ["https://data.delijn.be/stops/506365", "https://data.delijn.be/stops/590412"], ["https://data.delijn.be/stops/507767", "https://data.delijn.be/stops/508032"], ["https://data.delijn.be/stops/406245", "https://data.delijn.be/stops/406259"], ["https://data.delijn.be/stops/206632", "https://data.delijn.be/stops/207632"], ["https://data.delijn.be/stops/101971", "https://data.delijn.be/stops/103045"], ["https://data.delijn.be/stops/503033", "https://data.delijn.be/stops/508372"], ["https://data.delijn.be/stops/301189", "https://data.delijn.be/stops/301255"], ["https://data.delijn.be/stops/107688", "https://data.delijn.be/stops/108705"], ["https://data.delijn.be/stops/404791", "https://data.delijn.be/stops/404825"], ["https://data.delijn.be/stops/203408", "https://data.delijn.be/stops/211032"], ["https://data.delijn.be/stops/407932", "https://data.delijn.be/stops/407933"], ["https://data.delijn.be/stops/501460", "https://data.delijn.be/stops/505781"], ["https://data.delijn.be/stops/403589", "https://data.delijn.be/stops/410011"], ["https://data.delijn.be/stops/402602", "https://data.delijn.be/stops/403647"], ["https://data.delijn.be/stops/502327", "https://data.delijn.be/stops/507328"], ["https://data.delijn.be/stops/503885", "https://data.delijn.be/stops/508885"], ["https://data.delijn.be/stops/306145", "https://data.delijn.be/stops/307941"], ["https://data.delijn.be/stops/304503", "https://data.delijn.be/stops/304520"], ["https://data.delijn.be/stops/501289", "https://data.delijn.be/stops/506205"], ["https://data.delijn.be/stops/202236", "https://data.delijn.be/stops/208890"], ["https://data.delijn.be/stops/401290", "https://data.delijn.be/stops/401309"], ["https://data.delijn.be/stops/303120", "https://data.delijn.be/stops/303226"], ["https://data.delijn.be/stops/103134", "https://data.delijn.be/stops/103140"], ["https://data.delijn.be/stops/210058", "https://data.delijn.be/stops/210059"], ["https://data.delijn.be/stops/406829", "https://data.delijn.be/stops/406897"], ["https://data.delijn.be/stops/101649", "https://data.delijn.be/stops/106332"], ["https://data.delijn.be/stops/103328", "https://data.delijn.be/stops/105099"], ["https://data.delijn.be/stops/501120", "https://data.delijn.be/stops/505836"], ["https://data.delijn.be/stops/106046", "https://data.delijn.be/stops/106048"], ["https://data.delijn.be/stops/301348", "https://data.delijn.be/stops/306129"], ["https://data.delijn.be/stops/503243", "https://data.delijn.be/stops/509762"], ["https://data.delijn.be/stops/400809", "https://data.delijn.be/stops/405269"], ["https://data.delijn.be/stops/305649", "https://data.delijn.be/stops/305653"], ["https://data.delijn.be/stops/206019", "https://data.delijn.be/stops/207019"], ["https://data.delijn.be/stops/403038", "https://data.delijn.be/stops/403163"], ["https://data.delijn.be/stops/202338", "https://data.delijn.be/stops/203331"], ["https://data.delijn.be/stops/102109", "https://data.delijn.be/stops/109801"], ["https://data.delijn.be/stops/201762", "https://data.delijn.be/stops/201765"], ["https://data.delijn.be/stops/302621", "https://data.delijn.be/stops/302636"], ["https://data.delijn.be/stops/500002", "https://data.delijn.be/stops/503663"], ["https://data.delijn.be/stops/105824", "https://data.delijn.be/stops/106299"], ["https://data.delijn.be/stops/206517", "https://data.delijn.be/stops/206597"], ["https://data.delijn.be/stops/200768", "https://data.delijn.be/stops/209248"], ["https://data.delijn.be/stops/400079", "https://data.delijn.be/stops/409099"], ["https://data.delijn.be/stops/104711", "https://data.delijn.be/stops/107078"], ["https://data.delijn.be/stops/503370", "https://data.delijn.be/stops/508370"], ["https://data.delijn.be/stops/103944", "https://data.delijn.be/stops/108892"], ["https://data.delijn.be/stops/404849", "https://data.delijn.be/stops/405586"], ["https://data.delijn.be/stops/503657", "https://data.delijn.be/stops/508657"], ["https://data.delijn.be/stops/106464", "https://data.delijn.be/stops/106466"], ["https://data.delijn.be/stops/306043", "https://data.delijn.be/stops/307093"], ["https://data.delijn.be/stops/303337", "https://data.delijn.be/stops/305120"], ["https://data.delijn.be/stops/508351", "https://data.delijn.be/stops/508930"], ["https://data.delijn.be/stops/101400", "https://data.delijn.be/stops/106529"], ["https://data.delijn.be/stops/409009", "https://data.delijn.be/stops/409881"], ["https://data.delijn.be/stops/505772", "https://data.delijn.be/stops/507357"], ["https://data.delijn.be/stops/206231", "https://data.delijn.be/stops/206232"], ["https://data.delijn.be/stops/409539", "https://data.delijn.be/stops/409541"], ["https://data.delijn.be/stops/104107", "https://data.delijn.be/stops/107825"], ["https://data.delijn.be/stops/402103", "https://data.delijn.be/stops/402270"], ["https://data.delijn.be/stops/205391", "https://data.delijn.be/stops/205392"], ["https://data.delijn.be/stops/103249", "https://data.delijn.be/stops/108325"], ["https://data.delijn.be/stops/101374", "https://data.delijn.be/stops/101399"], ["https://data.delijn.be/stops/102224", "https://data.delijn.be/stops/105529"], ["https://data.delijn.be/stops/301039", "https://data.delijn.be/stops/307808"], ["https://data.delijn.be/stops/502029", "https://data.delijn.be/stops/507037"], ["https://data.delijn.be/stops/106229", "https://data.delijn.be/stops/106324"], ["https://data.delijn.be/stops/308252", "https://data.delijn.be/stops/308292"], ["https://data.delijn.be/stops/202730", "https://data.delijn.be/stops/203047"], ["https://data.delijn.be/stops/201734", "https://data.delijn.be/stops/203056"], ["https://data.delijn.be/stops/109905", "https://data.delijn.be/stops/109906"], ["https://data.delijn.be/stops/403527", "https://data.delijn.be/stops/403531"], ["https://data.delijn.be/stops/200660", "https://data.delijn.be/stops/201660"], ["https://data.delijn.be/stops/207354", "https://data.delijn.be/stops/207914"], ["https://data.delijn.be/stops/206922", "https://data.delijn.be/stops/207214"], ["https://data.delijn.be/stops/302079", "https://data.delijn.be/stops/306989"], ["https://data.delijn.be/stops/407823", "https://data.delijn.be/stops/407824"], ["https://data.delijn.be/stops/205658", "https://data.delijn.be/stops/205659"], ["https://data.delijn.be/stops/201327", "https://data.delijn.be/stops/203201"], ["https://data.delijn.be/stops/102243", "https://data.delijn.be/stops/105934"], ["https://data.delijn.be/stops/404642", "https://data.delijn.be/stops/406926"], ["https://data.delijn.be/stops/208172", "https://data.delijn.be/stops/208173"], ["https://data.delijn.be/stops/502539", "https://data.delijn.be/stops/505695"], ["https://data.delijn.be/stops/302156", "https://data.delijn.be/stops/308099"], ["https://data.delijn.be/stops/304421", "https://data.delijn.be/stops/304428"], ["https://data.delijn.be/stops/207168", "https://data.delijn.be/stops/303401"], ["https://data.delijn.be/stops/408345", "https://data.delijn.be/stops/408355"], ["https://data.delijn.be/stops/505063", "https://data.delijn.be/stops/505070"], ["https://data.delijn.be/stops/302413", "https://data.delijn.be/stops/302414"], ["https://data.delijn.be/stops/208430", "https://data.delijn.be/stops/208802"], ["https://data.delijn.be/stops/206179", "https://data.delijn.be/stops/206180"], ["https://data.delijn.be/stops/108984", "https://data.delijn.be/stops/108986"], ["https://data.delijn.be/stops/505701", "https://data.delijn.be/stops/507712"], ["https://data.delijn.be/stops/401047", "https://data.delijn.be/stops/401132"], ["https://data.delijn.be/stops/503488", "https://data.delijn.be/stops/503989"], ["https://data.delijn.be/stops/507322", "https://data.delijn.be/stops/507326"], ["https://data.delijn.be/stops/101290", "https://data.delijn.be/stops/102846"], ["https://data.delijn.be/stops/502330", "https://data.delijn.be/stops/507331"], ["https://data.delijn.be/stops/502119", "https://data.delijn.be/stops/507627"], ["https://data.delijn.be/stops/502345", "https://data.delijn.be/stops/502346"], ["https://data.delijn.be/stops/101427", "https://data.delijn.be/stops/107301"], ["https://data.delijn.be/stops/503183", "https://data.delijn.be/stops/508196"], ["https://data.delijn.be/stops/303475", "https://data.delijn.be/stops/308133"], ["https://data.delijn.be/stops/501199", "https://data.delijn.be/stops/506199"], ["https://data.delijn.be/stops/109810", "https://data.delijn.be/stops/109815"], ["https://data.delijn.be/stops/105428", "https://data.delijn.be/stops/105433"], ["https://data.delijn.be/stops/209426", "https://data.delijn.be/stops/209431"], ["https://data.delijn.be/stops/300424", "https://data.delijn.be/stops/300430"], ["https://data.delijn.be/stops/403314", "https://data.delijn.be/stops/410360"], ["https://data.delijn.be/stops/401650", "https://data.delijn.be/stops/405401"], ["https://data.delijn.be/stops/409383", "https://data.delijn.be/stops/409388"], ["https://data.delijn.be/stops/402086", "https://data.delijn.be/stops/402202"], ["https://data.delijn.be/stops/206861", "https://data.delijn.be/stops/207459"], ["https://data.delijn.be/stops/405282", "https://data.delijn.be/stops/407703"], ["https://data.delijn.be/stops/308147", "https://data.delijn.be/stops/308176"], ["https://data.delijn.be/stops/201689", "https://data.delijn.be/stops/203997"], ["https://data.delijn.be/stops/200832", "https://data.delijn.be/stops/200837"], ["https://data.delijn.be/stops/502372", "https://data.delijn.be/stops/507375"], ["https://data.delijn.be/stops/202910", "https://data.delijn.be/stops/203910"], ["https://data.delijn.be/stops/504754", "https://data.delijn.be/stops/509754"], ["https://data.delijn.be/stops/104484", "https://data.delijn.be/stops/104486"], ["https://data.delijn.be/stops/203459", "https://data.delijn.be/stops/203750"], ["https://data.delijn.be/stops/301350", "https://data.delijn.be/stops/302005"], ["https://data.delijn.be/stops/502143", "https://data.delijn.be/stops/502576"], ["https://data.delijn.be/stops/301118", "https://data.delijn.be/stops/307991"], ["https://data.delijn.be/stops/406127", "https://data.delijn.be/stops/408922"], ["https://data.delijn.be/stops/504379", "https://data.delijn.be/stops/505972"], ["https://data.delijn.be/stops/504283", "https://data.delijn.be/stops/509280"], ["https://data.delijn.be/stops/200039", "https://data.delijn.be/stops/201910"], ["https://data.delijn.be/stops/407519", "https://data.delijn.be/stops/408404"], ["https://data.delijn.be/stops/404409", "https://data.delijn.be/stops/404415"], ["https://data.delijn.be/stops/501271", "https://data.delijn.be/stops/501302"], ["https://data.delijn.be/stops/204651", "https://data.delijn.be/stops/205261"], ["https://data.delijn.be/stops/300473", "https://data.delijn.be/stops/302699"], ["https://data.delijn.be/stops/404374", "https://data.delijn.be/stops/404376"], ["https://data.delijn.be/stops/405790", "https://data.delijn.be/stops/405791"], ["https://data.delijn.be/stops/503220", "https://data.delijn.be/stops/503223"], ["https://data.delijn.be/stops/506307", "https://data.delijn.be/stops/510002"], ["https://data.delijn.be/stops/104696", "https://data.delijn.be/stops/104776"], ["https://data.delijn.be/stops/201861", "https://data.delijn.be/stops/203274"], ["https://data.delijn.be/stops/408456", "https://data.delijn.be/stops/409418"], ["https://data.delijn.be/stops/101950", "https://data.delijn.be/stops/105750"], ["https://data.delijn.be/stops/302625", "https://data.delijn.be/stops/308114"], ["https://data.delijn.be/stops/503678", "https://data.delijn.be/stops/508013"], ["https://data.delijn.be/stops/300364", "https://data.delijn.be/stops/307737"], ["https://data.delijn.be/stops/108488", "https://data.delijn.be/stops/108489"], ["https://data.delijn.be/stops/209452", "https://data.delijn.be/stops/209698"], ["https://data.delijn.be/stops/403625", "https://data.delijn.be/stops/403662"], ["https://data.delijn.be/stops/304801", "https://data.delijn.be/stops/304809"], ["https://data.delijn.be/stops/400749", "https://data.delijn.be/stops/408448"], ["https://data.delijn.be/stops/504155", "https://data.delijn.be/stops/505372"], ["https://data.delijn.be/stops/301917", "https://data.delijn.be/stops/306747"], ["https://data.delijn.be/stops/501445", "https://data.delijn.be/stops/501492"], ["https://data.delijn.be/stops/204204", "https://data.delijn.be/stops/205204"], ["https://data.delijn.be/stops/404952", "https://data.delijn.be/stops/404955"], ["https://data.delijn.be/stops/104587", "https://data.delijn.be/stops/107819"], ["https://data.delijn.be/stops/101908", "https://data.delijn.be/stops/101913"], ["https://data.delijn.be/stops/307298", "https://data.delijn.be/stops/307301"], ["https://data.delijn.be/stops/405256", "https://data.delijn.be/stops/405257"], ["https://data.delijn.be/stops/504809", "https://data.delijn.be/stops/508453"], ["https://data.delijn.be/stops/204688", "https://data.delijn.be/stops/205665"], ["https://data.delijn.be/stops/102293", "https://data.delijn.be/stops/102449"], ["https://data.delijn.be/stops/306905", "https://data.delijn.be/stops/306930"], ["https://data.delijn.be/stops/105267", "https://data.delijn.be/stops/105283"], ["https://data.delijn.be/stops/406456", "https://data.delijn.be/stops/406457"], ["https://data.delijn.be/stops/204131", "https://data.delijn.be/stops/206635"], ["https://data.delijn.be/stops/308526", "https://data.delijn.be/stops/308527"], ["https://data.delijn.be/stops/508212", "https://data.delijn.be/stops/508408"], ["https://data.delijn.be/stops/108965", "https://data.delijn.be/stops/109150"], ["https://data.delijn.be/stops/104843", "https://data.delijn.be/stops/109962"], ["https://data.delijn.be/stops/400520", "https://data.delijn.be/stops/400571"], ["https://data.delijn.be/stops/206690", "https://data.delijn.be/stops/207690"], ["https://data.delijn.be/stops/101075", "https://data.delijn.be/stops/106050"], ["https://data.delijn.be/stops/102288", "https://data.delijn.be/stops/109651"], ["https://data.delijn.be/stops/202027", "https://data.delijn.be/stops/202349"], ["https://data.delijn.be/stops/504608", "https://data.delijn.be/stops/509608"], ["https://data.delijn.be/stops/300999", "https://data.delijn.be/stops/301080"], ["https://data.delijn.be/stops/102656", "https://data.delijn.be/stops/308798"], ["https://data.delijn.be/stops/206106", "https://data.delijn.be/stops/206111"], ["https://data.delijn.be/stops/503486", "https://data.delijn.be/stops/503491"], ["https://data.delijn.be/stops/102009", "https://data.delijn.be/stops/205641"], ["https://data.delijn.be/stops/400767", "https://data.delijn.be/stops/405267"], ["https://data.delijn.be/stops/503397", "https://data.delijn.be/stops/504949"], ["https://data.delijn.be/stops/501321", "https://data.delijn.be/stops/506204"], ["https://data.delijn.be/stops/300060", "https://data.delijn.be/stops/307728"], ["https://data.delijn.be/stops/106230", "https://data.delijn.be/stops/109123"], ["https://data.delijn.be/stops/400052", "https://data.delijn.be/stops/400053"], ["https://data.delijn.be/stops/405717", "https://data.delijn.be/stops/410142"], ["https://data.delijn.be/stops/201709", "https://data.delijn.be/stops/202379"], ["https://data.delijn.be/stops/503237", "https://data.delijn.be/stops/508064"], ["https://data.delijn.be/stops/406735", "https://data.delijn.be/stops/407620"], ["https://data.delijn.be/stops/302691", "https://data.delijn.be/stops/302692"], ["https://data.delijn.be/stops/301404", "https://data.delijn.be/stops/304738"], ["https://data.delijn.be/stops/206741", "https://data.delijn.be/stops/207980"], ["https://data.delijn.be/stops/208803", "https://data.delijn.be/stops/209210"], ["https://data.delijn.be/stops/101987", "https://data.delijn.be/stops/105395"], ["https://data.delijn.be/stops/206369", "https://data.delijn.be/stops/207357"], ["https://data.delijn.be/stops/208659", "https://data.delijn.be/stops/209658"], ["https://data.delijn.be/stops/206961", "https://data.delijn.be/stops/306069"], ["https://data.delijn.be/stops/405733", "https://data.delijn.be/stops/410141"], ["https://data.delijn.be/stops/104468", "https://data.delijn.be/stops/107476"], ["https://data.delijn.be/stops/204443", "https://data.delijn.be/stops/205767"], ["https://data.delijn.be/stops/502493", "https://data.delijn.be/stops/507516"], ["https://data.delijn.be/stops/406882", "https://data.delijn.be/stops/409999"], ["https://data.delijn.be/stops/504222", "https://data.delijn.be/stops/509211"], ["https://data.delijn.be/stops/400158", "https://data.delijn.be/stops/405130"], ["https://data.delijn.be/stops/505352", "https://data.delijn.be/stops/505729"], ["https://data.delijn.be/stops/403942", "https://data.delijn.be/stops/403943"], ["https://data.delijn.be/stops/202320", "https://data.delijn.be/stops/203320"], ["https://data.delijn.be/stops/400733", "https://data.delijn.be/stops/400735"], ["https://data.delijn.be/stops/201933", "https://data.delijn.be/stops/202951"], ["https://data.delijn.be/stops/102416", "https://data.delijn.be/stops/108424"], ["https://data.delijn.be/stops/503746", "https://data.delijn.be/stops/509736"], ["https://data.delijn.be/stops/503462", "https://data.delijn.be/stops/503463"], ["https://data.delijn.be/stops/304050", "https://data.delijn.be/stops/304059"], ["https://data.delijn.be/stops/401744", "https://data.delijn.be/stops/401882"], ["https://data.delijn.be/stops/404370", "https://data.delijn.be/stops/404649"], ["https://data.delijn.be/stops/405145", "https://data.delijn.be/stops/405281"], ["https://data.delijn.be/stops/407925", "https://data.delijn.be/stops/408425"], ["https://data.delijn.be/stops/303262", "https://data.delijn.be/stops/307796"], ["https://data.delijn.be/stops/301013", "https://data.delijn.be/stops/301018"], ["https://data.delijn.be/stops/305256", "https://data.delijn.be/stops/305273"], ["https://data.delijn.be/stops/200827", "https://data.delijn.be/stops/502064"], ["https://data.delijn.be/stops/501074", "https://data.delijn.be/stops/506074"], ["https://data.delijn.be/stops/405455", "https://data.delijn.be/stops/408894"], ["https://data.delijn.be/stops/205522", "https://data.delijn.be/stops/205726"], ["https://data.delijn.be/stops/300289", "https://data.delijn.be/stops/306286"], ["https://data.delijn.be/stops/502238", "https://data.delijn.be/stops/502240"], ["https://data.delijn.be/stops/300407", "https://data.delijn.be/stops/302001"], ["https://data.delijn.be/stops/407664", "https://data.delijn.be/stops/407665"], ["https://data.delijn.be/stops/502003", "https://data.delijn.be/stops/507003"], ["https://data.delijn.be/stops/200849", "https://data.delijn.be/stops/208654"], ["https://data.delijn.be/stops/305562", "https://data.delijn.be/stops/305582"], ["https://data.delijn.be/stops/201705", "https://data.delijn.be/stops/202384"], ["https://data.delijn.be/stops/205982", "https://data.delijn.be/stops/208767"], ["https://data.delijn.be/stops/502419", "https://data.delijn.be/stops/507419"], ["https://data.delijn.be/stops/400784", "https://data.delijn.be/stops/400858"], ["https://data.delijn.be/stops/400585", "https://data.delijn.be/stops/400597"], ["https://data.delijn.be/stops/502143", "https://data.delijn.be/stops/507151"], ["https://data.delijn.be/stops/204477", "https://data.delijn.be/stops/205459"], ["https://data.delijn.be/stops/507932", "https://data.delijn.be/stops/508739"], ["https://data.delijn.be/stops/405766", "https://data.delijn.be/stops/405782"], ["https://data.delijn.be/stops/407847", "https://data.delijn.be/stops/407993"], ["https://data.delijn.be/stops/101175", "https://data.delijn.be/stops/102410"], ["https://data.delijn.be/stops/102159", "https://data.delijn.be/stops/108962"], ["https://data.delijn.be/stops/404404", "https://data.delijn.be/stops/404405"], ["https://data.delijn.be/stops/503988", "https://data.delijn.be/stops/508988"], ["https://data.delijn.be/stops/302740", "https://data.delijn.be/stops/307846"], ["https://data.delijn.be/stops/302472", "https://data.delijn.be/stops/302487"], ["https://data.delijn.be/stops/506334", "https://data.delijn.be/stops/506349"], ["https://data.delijn.be/stops/105905", "https://data.delijn.be/stops/108935"], ["https://data.delijn.be/stops/508455", "https://data.delijn.be/stops/508970"], ["https://data.delijn.be/stops/402407", "https://data.delijn.be/stops/402410"], ["https://data.delijn.be/stops/101130", "https://data.delijn.be/stops/103500"], ["https://data.delijn.be/stops/302808", "https://data.delijn.be/stops/302809"], ["https://data.delijn.be/stops/403254", "https://data.delijn.be/stops/403255"], ["https://data.delijn.be/stops/206810", "https://data.delijn.be/stops/207416"], ["https://data.delijn.be/stops/400476", "https://data.delijn.be/stops/400477"], ["https://data.delijn.be/stops/106822", "https://data.delijn.be/stops/106824"], ["https://data.delijn.be/stops/300972", "https://data.delijn.be/stops/306001"], ["https://data.delijn.be/stops/105995", "https://data.delijn.be/stops/107070"], ["https://data.delijn.be/stops/406187", "https://data.delijn.be/stops/409397"], ["https://data.delijn.be/stops/503122", "https://data.delijn.be/stops/508131"], ["https://data.delijn.be/stops/206534", "https://data.delijn.be/stops/207648"], ["https://data.delijn.be/stops/104418", "https://data.delijn.be/stops/205284"], ["https://data.delijn.be/stops/201089", "https://data.delijn.be/stops/206569"], ["https://data.delijn.be/stops/206871", "https://data.delijn.be/stops/208403"], ["https://data.delijn.be/stops/206090", "https://data.delijn.be/stops/207090"], ["https://data.delijn.be/stops/501225", "https://data.delijn.be/stops/505762"], ["https://data.delijn.be/stops/505183", "https://data.delijn.be/stops/509264"], ["https://data.delijn.be/stops/408007", "https://data.delijn.be/stops/408151"], ["https://data.delijn.be/stops/204782", "https://data.delijn.be/stops/205789"], ["https://data.delijn.be/stops/201751", "https://data.delijn.be/stops/203836"], ["https://data.delijn.be/stops/300395", "https://data.delijn.be/stops/306198"], ["https://data.delijn.be/stops/503373", "https://data.delijn.be/stops/508393"], ["https://data.delijn.be/stops/105422", "https://data.delijn.be/stops/105423"], ["https://data.delijn.be/stops/200752", "https://data.delijn.be/stops/208249"], ["https://data.delijn.be/stops/109057", "https://data.delijn.be/stops/109058"], ["https://data.delijn.be/stops/501391", "https://data.delijn.be/stops/506391"], ["https://data.delijn.be/stops/406484", "https://data.delijn.be/stops/406485"], ["https://data.delijn.be/stops/405615", "https://data.delijn.be/stops/407184"], ["https://data.delijn.be/stops/300307", "https://data.delijn.be/stops/305597"], ["https://data.delijn.be/stops/503124", "https://data.delijn.be/stops/509887"], ["https://data.delijn.be/stops/502337", "https://data.delijn.be/stops/505225"], ["https://data.delijn.be/stops/503138", "https://data.delijn.be/stops/507018"], ["https://data.delijn.be/stops/304915", "https://data.delijn.be/stops/308959"], ["https://data.delijn.be/stops/504586", "https://data.delijn.be/stops/509589"], ["https://data.delijn.be/stops/200212", "https://data.delijn.be/stops/201212"], ["https://data.delijn.be/stops/201870", "https://data.delijn.be/stops/202664"], ["https://data.delijn.be/stops/200274", "https://data.delijn.be/stops/203002"], ["https://data.delijn.be/stops/107607", "https://data.delijn.be/stops/107653"], ["https://data.delijn.be/stops/300638", "https://data.delijn.be/stops/305815"], ["https://data.delijn.be/stops/107291", "https://data.delijn.be/stops/107293"], ["https://data.delijn.be/stops/308511", "https://data.delijn.be/stops/308513"], ["https://data.delijn.be/stops/502758", "https://data.delijn.be/stops/507758"], ["https://data.delijn.be/stops/201265", "https://data.delijn.be/stops/202545"], ["https://data.delijn.be/stops/105598", "https://data.delijn.be/stops/109737"], ["https://data.delijn.be/stops/207346", "https://data.delijn.be/stops/207347"], ["https://data.delijn.be/stops/107087", "https://data.delijn.be/stops/107088"], ["https://data.delijn.be/stops/106843", "https://data.delijn.be/stops/106844"], ["https://data.delijn.be/stops/507481", "https://data.delijn.be/stops/509891"], ["https://data.delijn.be/stops/104021", "https://data.delijn.be/stops/107217"], ["https://data.delijn.be/stops/203814", "https://data.delijn.be/stops/205832"], ["https://data.delijn.be/stops/404399", "https://data.delijn.be/stops/405559"], ["https://data.delijn.be/stops/101290", "https://data.delijn.be/stops/101520"], ["https://data.delijn.be/stops/108368", "https://data.delijn.be/stops/108455"], ["https://data.delijn.be/stops/302674", "https://data.delijn.be/stops/302699"], ["https://data.delijn.be/stops/400221", "https://data.delijn.be/stops/400223"], ["https://data.delijn.be/stops/208238", "https://data.delijn.be/stops/209217"], ["https://data.delijn.be/stops/200066", "https://data.delijn.be/stops/201098"], ["https://data.delijn.be/stops/404885", "https://data.delijn.be/stops/404957"], ["https://data.delijn.be/stops/408861", "https://data.delijn.be/stops/408916"], ["https://data.delijn.be/stops/301475", "https://data.delijn.be/stops/301480"], ["https://data.delijn.be/stops/200070", "https://data.delijn.be/stops/208842"], ["https://data.delijn.be/stops/405345", "https://data.delijn.be/stops/308732"], ["https://data.delijn.be/stops/200569", "https://data.delijn.be/stops/202399"], ["https://data.delijn.be/stops/301814", "https://data.delijn.be/stops/305546"], ["https://data.delijn.be/stops/200538", "https://data.delijn.be/stops/210049"], ["https://data.delijn.be/stops/402024", "https://data.delijn.be/stops/403885"], ["https://data.delijn.be/stops/106497", "https://data.delijn.be/stops/107063"], ["https://data.delijn.be/stops/301598", "https://data.delijn.be/stops/301599"], ["https://data.delijn.be/stops/302973", "https://data.delijn.be/stops/303442"], ["https://data.delijn.be/stops/202515", "https://data.delijn.be/stops/202516"], ["https://data.delijn.be/stops/407034", "https://data.delijn.be/stops/410032"], ["https://data.delijn.be/stops/408076", "https://data.delijn.be/stops/408077"], ["https://data.delijn.be/stops/410025", "https://data.delijn.be/stops/410026"], ["https://data.delijn.be/stops/208176", "https://data.delijn.be/stops/208177"], ["https://data.delijn.be/stops/301180", "https://data.delijn.be/stops/301264"], ["https://data.delijn.be/stops/200511", "https://data.delijn.be/stops/201511"], ["https://data.delijn.be/stops/208604", "https://data.delijn.be/stops/209603"], ["https://data.delijn.be/stops/400143", "https://data.delijn.be/stops/403422"], ["https://data.delijn.be/stops/101192", "https://data.delijn.be/stops/205542"], ["https://data.delijn.be/stops/402688", "https://data.delijn.be/stops/402947"], ["https://data.delijn.be/stops/305183", "https://data.delijn.be/stops/305206"], ["https://data.delijn.be/stops/300824", "https://data.delijn.be/stops/304127"], ["https://data.delijn.be/stops/401664", "https://data.delijn.be/stops/403058"], ["https://data.delijn.be/stops/403468", "https://data.delijn.be/stops/403473"], ["https://data.delijn.be/stops/505422", "https://data.delijn.be/stops/509612"], ["https://data.delijn.be/stops/105998", "https://data.delijn.be/stops/107908"], ["https://data.delijn.be/stops/403687", "https://data.delijn.be/stops/409274"], ["https://data.delijn.be/stops/106795", "https://data.delijn.be/stops/106864"], ["https://data.delijn.be/stops/300479", "https://data.delijn.be/stops/302094"], ["https://data.delijn.be/stops/503601", "https://data.delijn.be/stops/508603"], ["https://data.delijn.be/stops/306875", "https://data.delijn.be/stops/307397"], ["https://data.delijn.be/stops/303715", "https://data.delijn.be/stops/303746"], ["https://data.delijn.be/stops/206295", "https://data.delijn.be/stops/207201"], ["https://data.delijn.be/stops/401344", "https://data.delijn.be/stops/404786"], ["https://data.delijn.be/stops/402502", "https://data.delijn.be/stops/402571"], ["https://data.delijn.be/stops/208519", "https://data.delijn.be/stops/218015"], ["https://data.delijn.be/stops/408277", "https://data.delijn.be/stops/408314"], ["https://data.delijn.be/stops/107598", "https://data.delijn.be/stops/107662"], ["https://data.delijn.be/stops/205978", "https://data.delijn.be/stops/208245"], ["https://data.delijn.be/stops/504197", "https://data.delijn.be/stops/508445"], ["https://data.delijn.be/stops/109043", "https://data.delijn.be/stops/307947"], ["https://data.delijn.be/stops/407508", "https://data.delijn.be/stops/407512"], ["https://data.delijn.be/stops/504037", "https://data.delijn.be/stops/509039"], ["https://data.delijn.be/stops/205523", "https://data.delijn.be/stops/205524"], ["https://data.delijn.be/stops/101523", "https://data.delijn.be/stops/101942"], ["https://data.delijn.be/stops/305309", "https://data.delijn.be/stops/306343"], ["https://data.delijn.be/stops/101921", "https://data.delijn.be/stops/106043"], ["https://data.delijn.be/stops/300276", "https://data.delijn.be/stops/300277"], ["https://data.delijn.be/stops/105856", "https://data.delijn.be/stops/105857"], ["https://data.delijn.be/stops/503319", "https://data.delijn.be/stops/503324"], ["https://data.delijn.be/stops/203121", "https://data.delijn.be/stops/203180"], ["https://data.delijn.be/stops/404723", "https://data.delijn.be/stops/404814"], ["https://data.delijn.be/stops/408134", "https://data.delijn.be/stops/408431"], ["https://data.delijn.be/stops/403768", "https://data.delijn.be/stops/403874"], ["https://data.delijn.be/stops/202917", "https://data.delijn.be/stops/203911"], ["https://data.delijn.be/stops/205390", "https://data.delijn.be/stops/205415"], ["https://data.delijn.be/stops/300808", "https://data.delijn.be/stops/301960"], ["https://data.delijn.be/stops/104643", "https://data.delijn.be/stops/108036"], ["https://data.delijn.be/stops/306847", "https://data.delijn.be/stops/307359"], ["https://data.delijn.be/stops/102724", "https://data.delijn.be/stops/103415"], ["https://data.delijn.be/stops/402824", "https://data.delijn.be/stops/409011"], ["https://data.delijn.be/stops/301631", "https://data.delijn.be/stops/302118"], ["https://data.delijn.be/stops/504840", "https://data.delijn.be/stops/509099"], ["https://data.delijn.be/stops/201811", "https://data.delijn.be/stops/201845"], ["https://data.delijn.be/stops/108024", "https://data.delijn.be/stops/108026"], ["https://data.delijn.be/stops/102509", "https://data.delijn.be/stops/406479"], ["https://data.delijn.be/stops/102833", "https://data.delijn.be/stops/102837"], ["https://data.delijn.be/stops/405320", "https://data.delijn.be/stops/305062"], ["https://data.delijn.be/stops/209613", "https://data.delijn.be/stops/209615"], ["https://data.delijn.be/stops/107545", "https://data.delijn.be/stops/109595"], ["https://data.delijn.be/stops/208598", "https://data.delijn.be/stops/209598"], ["https://data.delijn.be/stops/406354", "https://data.delijn.be/stops/406355"], ["https://data.delijn.be/stops/505309", "https://data.delijn.be/stops/507733"], ["https://data.delijn.be/stops/202183", "https://data.delijn.be/stops/203182"], ["https://data.delijn.be/stops/302035", "https://data.delijn.be/stops/307284"], ["https://data.delijn.be/stops/302922", "https://data.delijn.be/stops/302975"], ["https://data.delijn.be/stops/208030", "https://data.delijn.be/stops/208037"], ["https://data.delijn.be/stops/206415", "https://data.delijn.be/stops/216016"], ["https://data.delijn.be/stops/406622", "https://data.delijn.be/stops/406684"], ["https://data.delijn.be/stops/407582", "https://data.delijn.be/stops/408880"], ["https://data.delijn.be/stops/302462", "https://data.delijn.be/stops/302472"], ["https://data.delijn.be/stops/103073", "https://data.delijn.be/stops/106925"], ["https://data.delijn.be/stops/101651", "https://data.delijn.be/stops/105498"], ["https://data.delijn.be/stops/301592", "https://data.delijn.be/stops/301593"], ["https://data.delijn.be/stops/506433", "https://data.delijn.be/stops/506456"], ["https://data.delijn.be/stops/503459", "https://data.delijn.be/stops/504809"], ["https://data.delijn.be/stops/404305", "https://data.delijn.be/stops/404329"], ["https://data.delijn.be/stops/504254", "https://data.delijn.be/stops/509715"], ["https://data.delijn.be/stops/406311", "https://data.delijn.be/stops/407313"], ["https://data.delijn.be/stops/201724", "https://data.delijn.be/stops/203381"], ["https://data.delijn.be/stops/205432", "https://data.delijn.be/stops/205767"], ["https://data.delijn.be/stops/401806", "https://data.delijn.be/stops/401808"], ["https://data.delijn.be/stops/301618", "https://data.delijn.be/stops/301620"], ["https://data.delijn.be/stops/303934", "https://data.delijn.be/stops/304576"], ["https://data.delijn.be/stops/301885", "https://data.delijn.be/stops/302097"], ["https://data.delijn.be/stops/400090", "https://data.delijn.be/stops/400091"], ["https://data.delijn.be/stops/304365", "https://data.delijn.be/stops/307374"], ["https://data.delijn.be/stops/204579", "https://data.delijn.be/stops/211067"], ["https://data.delijn.be/stops/502112", "https://data.delijn.be/stops/507112"], ["https://data.delijn.be/stops/503535", "https://data.delijn.be/stops/508534"], ["https://data.delijn.be/stops/204240", "https://data.delijn.be/stops/205346"], ["https://data.delijn.be/stops/406445", "https://data.delijn.be/stops/406447"], ["https://data.delijn.be/stops/105101", "https://data.delijn.be/stops/105102"], ["https://data.delijn.be/stops/206198", "https://data.delijn.be/stops/207204"], ["https://data.delijn.be/stops/509112", "https://data.delijn.be/stops/509215"], ["https://data.delijn.be/stops/306669", "https://data.delijn.be/stops/306670"], ["https://data.delijn.be/stops/108244", "https://data.delijn.be/stops/108246"], ["https://data.delijn.be/stops/409375", "https://data.delijn.be/stops/409645"], ["https://data.delijn.be/stops/401642", "https://data.delijn.be/stops/405646"], ["https://data.delijn.be/stops/508051", "https://data.delijn.be/stops/509845"], ["https://data.delijn.be/stops/400379", "https://data.delijn.be/stops/405297"], ["https://data.delijn.be/stops/508514", "https://data.delijn.be/stops/508515"], ["https://data.delijn.be/stops/501734", "https://data.delijn.be/stops/506343"], ["https://data.delijn.be/stops/510007", "https://data.delijn.be/stops/510011"], ["https://data.delijn.be/stops/108279", "https://data.delijn.be/stops/108283"], ["https://data.delijn.be/stops/401990", "https://data.delijn.be/stops/402024"], ["https://data.delijn.be/stops/101632", "https://data.delijn.be/stops/104270"], ["https://data.delijn.be/stops/203114", "https://data.delijn.be/stops/205832"], ["https://data.delijn.be/stops/502172", "https://data.delijn.be/stops/505090"], ["https://data.delijn.be/stops/103988", "https://data.delijn.be/stops/108974"], ["https://data.delijn.be/stops/201881", "https://data.delijn.be/stops/203420"], ["https://data.delijn.be/stops/103031", "https://data.delijn.be/stops/109584"], ["https://data.delijn.be/stops/102857", "https://data.delijn.be/stops/104667"], ["https://data.delijn.be/stops/208345", "https://data.delijn.be/stops/209345"], ["https://data.delijn.be/stops/208115", "https://data.delijn.be/stops/209115"], ["https://data.delijn.be/stops/206083", "https://data.delijn.be/stops/206989"], ["https://data.delijn.be/stops/107333", "https://data.delijn.be/stops/107334"], ["https://data.delijn.be/stops/508568", "https://data.delijn.be/stops/508801"], ["https://data.delijn.be/stops/300824", "https://data.delijn.be/stops/300861"], ["https://data.delijn.be/stops/301364", "https://data.delijn.be/stops/304527"], ["https://data.delijn.be/stops/504995", "https://data.delijn.be/stops/505226"], ["https://data.delijn.be/stops/404590", "https://data.delijn.be/stops/404592"], ["https://data.delijn.be/stops/204119", "https://data.delijn.be/stops/205666"], ["https://data.delijn.be/stops/300991", "https://data.delijn.be/stops/300992"], ["https://data.delijn.be/stops/301810", "https://data.delijn.be/stops/304685"], ["https://data.delijn.be/stops/107202", "https://data.delijn.be/stops/107728"], ["https://data.delijn.be/stops/204307", "https://data.delijn.be/stops/205306"], ["https://data.delijn.be/stops/202403", "https://data.delijn.be/stops/203403"], ["https://data.delijn.be/stops/208432", "https://data.delijn.be/stops/208677"], ["https://data.delijn.be/stops/405136", "https://data.delijn.be/stops/408440"], ["https://data.delijn.be/stops/504123", "https://data.delijn.be/stops/504200"], ["https://data.delijn.be/stops/305433", "https://data.delijn.be/stops/305436"], ["https://data.delijn.be/stops/207846", "https://data.delijn.be/stops/207998"], ["https://data.delijn.be/stops/503727", "https://data.delijn.be/stops/509951"], ["https://data.delijn.be/stops/503380", "https://data.delijn.be/stops/508374"], ["https://data.delijn.be/stops/201370", "https://data.delijn.be/stops/201371"], ["https://data.delijn.be/stops/502487", "https://data.delijn.be/stops/502803"], ["https://data.delijn.be/stops/102531", "https://data.delijn.be/stops/405077"], ["https://data.delijn.be/stops/505085", "https://data.delijn.be/stops/506112"], ["https://data.delijn.be/stops/503932", "https://data.delijn.be/stops/504364"], ["https://data.delijn.be/stops/303988", "https://data.delijn.be/stops/307014"], ["https://data.delijn.be/stops/104549", "https://data.delijn.be/stops/305842"], ["https://data.delijn.be/stops/405500", "https://data.delijn.be/stops/408417"], ["https://data.delijn.be/stops/103538", "https://data.delijn.be/stops/108026"], ["https://data.delijn.be/stops/302178", "https://data.delijn.be/stops/308097"], ["https://data.delijn.be/stops/508455", "https://data.delijn.be/stops/508463"], ["https://data.delijn.be/stops/105641", "https://data.delijn.be/stops/105642"], ["https://data.delijn.be/stops/301091", "https://data.delijn.be/stops/304830"], ["https://data.delijn.be/stops/503459", "https://data.delijn.be/stops/508453"], ["https://data.delijn.be/stops/306129", "https://data.delijn.be/stops/306132"], ["https://data.delijn.be/stops/301859", "https://data.delijn.be/stops/305465"], ["https://data.delijn.be/stops/107072", "https://data.delijn.be/stops/107073"], ["https://data.delijn.be/stops/102166", "https://data.delijn.be/stops/104392"], ["https://data.delijn.be/stops/501183", "https://data.delijn.be/stops/509495"], ["https://data.delijn.be/stops/510019", "https://data.delijn.be/stops/510024"], ["https://data.delijn.be/stops/101678", "https://data.delijn.be/stops/101688"], ["https://data.delijn.be/stops/400493", "https://data.delijn.be/stops/409796"], ["https://data.delijn.be/stops/401185", "https://data.delijn.be/stops/406070"], ["https://data.delijn.be/stops/300276", "https://data.delijn.be/stops/306189"], ["https://data.delijn.be/stops/300225", "https://data.delijn.be/stops/300231"], ["https://data.delijn.be/stops/406518", "https://data.delijn.be/stops/407875"], ["https://data.delijn.be/stops/501315", "https://data.delijn.be/stops/501400"], ["https://data.delijn.be/stops/103122", "https://data.delijn.be/stops/104378"], ["https://data.delijn.be/stops/209547", "https://data.delijn.be/stops/209566"], ["https://data.delijn.be/stops/106112", "https://data.delijn.be/stops/109878"], ["https://data.delijn.be/stops/405788", "https://data.delijn.be/stops/409414"], ["https://data.delijn.be/stops/307142", "https://data.delijn.be/stops/307250"], ["https://data.delijn.be/stops/200022", "https://data.delijn.be/stops/201023"], ["https://data.delijn.be/stops/403525", "https://data.delijn.be/stops/403633"], ["https://data.delijn.be/stops/305139", "https://data.delijn.be/stops/305140"], ["https://data.delijn.be/stops/505700", "https://data.delijn.be/stops/507574"], ["https://data.delijn.be/stops/109839", "https://data.delijn.be/stops/109842"], ["https://data.delijn.be/stops/407920", "https://data.delijn.be/stops/408081"], ["https://data.delijn.be/stops/407353", "https://data.delijn.be/stops/407446"], ["https://data.delijn.be/stops/204161", "https://data.delijn.be/stops/205580"], ["https://data.delijn.be/stops/504026", "https://data.delijn.be/stops/509026"], ["https://data.delijn.be/stops/305234", "https://data.delijn.be/stops/305280"], ["https://data.delijn.be/stops/108282", "https://data.delijn.be/stops/109344"], ["https://data.delijn.be/stops/303235", "https://data.delijn.be/stops/303236"], ["https://data.delijn.be/stops/208273", "https://data.delijn.be/stops/209276"], ["https://data.delijn.be/stops/200409", "https://data.delijn.be/stops/201231"], ["https://data.delijn.be/stops/405775", "https://data.delijn.be/stops/405805"], ["https://data.delijn.be/stops/205078", "https://data.delijn.be/stops/205585"], ["https://data.delijn.be/stops/504541", "https://data.delijn.be/stops/505187"], ["https://data.delijn.be/stops/108250", "https://data.delijn.be/stops/108730"], ["https://data.delijn.be/stops/305280", "https://data.delijn.be/stops/305311"], ["https://data.delijn.be/stops/505146", "https://data.delijn.be/stops/507234"], ["https://data.delijn.be/stops/404467", "https://data.delijn.be/stops/404510"], ["https://data.delijn.be/stops/106759", "https://data.delijn.be/stops/109700"], ["https://data.delijn.be/stops/202436", "https://data.delijn.be/stops/202719"], ["https://data.delijn.be/stops/403928", "https://data.delijn.be/stops/404003"], ["https://data.delijn.be/stops/302764", "https://data.delijn.be/stops/302784"], ["https://data.delijn.be/stops/201083", "https://data.delijn.be/stops/201271"], ["https://data.delijn.be/stops/501165", "https://data.delijn.be/stops/506142"], ["https://data.delijn.be/stops/500017", "https://data.delijn.be/stops/501082"], ["https://data.delijn.be/stops/204608", "https://data.delijn.be/stops/205279"], ["https://data.delijn.be/stops/201266", "https://data.delijn.be/stops/202545"], ["https://data.delijn.be/stops/401724", "https://data.delijn.be/stops/405456"], ["https://data.delijn.be/stops/504424", "https://data.delijn.be/stops/508555"], ["https://data.delijn.be/stops/408369", "https://data.delijn.be/stops/409645"], ["https://data.delijn.be/stops/206088", "https://data.delijn.be/stops/206089"], ["https://data.delijn.be/stops/503221", "https://data.delijn.be/stops/503222"], ["https://data.delijn.be/stops/306331", "https://data.delijn.be/stops/306332"], ["https://data.delijn.be/stops/106182", "https://data.delijn.be/stops/107438"], ["https://data.delijn.be/stops/206605", "https://data.delijn.be/stops/207606"], ["https://data.delijn.be/stops/308460", "https://data.delijn.be/stops/308693"], ["https://data.delijn.be/stops/209248", "https://data.delijn.be/stops/209249"], ["https://data.delijn.be/stops/207428", "https://data.delijn.be/stops/208537"], ["https://data.delijn.be/stops/200605", "https://data.delijn.be/stops/202860"], ["https://data.delijn.be/stops/106892", "https://data.delijn.be/stops/107218"], ["https://data.delijn.be/stops/105419", "https://data.delijn.be/stops/105423"], ["https://data.delijn.be/stops/302919", "https://data.delijn.be/stops/306401"], ["https://data.delijn.be/stops/406036", "https://data.delijn.be/stops/406037"], ["https://data.delijn.be/stops/401890", "https://data.delijn.be/stops/401893"], ["https://data.delijn.be/stops/200657", "https://data.delijn.be/stops/201658"], ["https://data.delijn.be/stops/301281", "https://data.delijn.be/stops/306252"], ["https://data.delijn.be/stops/502388", "https://data.delijn.be/stops/507388"], ["https://data.delijn.be/stops/105950", "https://data.delijn.be/stops/108055"], ["https://data.delijn.be/stops/300969", "https://data.delijn.be/stops/302244"], ["https://data.delijn.be/stops/400220", "https://data.delijn.be/stops/400221"], ["https://data.delijn.be/stops/305746", "https://data.delijn.be/stops/305747"], ["https://data.delijn.be/stops/404006", "https://data.delijn.be/stops/404353"], ["https://data.delijn.be/stops/206123", "https://data.delijn.be/stops/207123"], ["https://data.delijn.be/stops/108923", "https://data.delijn.be/stops/108924"], ["https://data.delijn.be/stops/300019", "https://data.delijn.be/stops/307475"], ["https://data.delijn.be/stops/409193", "https://data.delijn.be/stops/409315"], ["https://data.delijn.be/stops/304592", "https://data.delijn.be/stops/307267"], ["https://data.delijn.be/stops/302320", "https://data.delijn.be/stops/307892"], ["https://data.delijn.be/stops/204018", "https://data.delijn.be/stops/205088"], ["https://data.delijn.be/stops/504336", "https://data.delijn.be/stops/509337"], ["https://data.delijn.be/stops/407287", "https://data.delijn.be/stops/408472"], ["https://data.delijn.be/stops/408034", "https://data.delijn.be/stops/408063"], ["https://data.delijn.be/stops/206423", "https://data.delijn.be/stops/207423"], ["https://data.delijn.be/stops/208288", "https://data.delijn.be/stops/209288"], ["https://data.delijn.be/stops/501609", "https://data.delijn.be/stops/506018"], ["https://data.delijn.be/stops/302631", "https://data.delijn.be/stops/306044"], ["https://data.delijn.be/stops/304024", "https://data.delijn.be/stops/304821"], ["https://data.delijn.be/stops/402662", "https://data.delijn.be/stops/402735"], ["https://data.delijn.be/stops/405925", "https://data.delijn.be/stops/405991"], ["https://data.delijn.be/stops/304330", "https://data.delijn.be/stops/304338"], ["https://data.delijn.be/stops/503998", "https://data.delijn.be/stops/505250"], ["https://data.delijn.be/stops/102715", "https://data.delijn.be/stops/105700"], ["https://data.delijn.be/stops/301961", "https://data.delijn.be/stops/301987"], ["https://data.delijn.be/stops/300600", "https://data.delijn.be/stops/300611"], ["https://data.delijn.be/stops/510015", "https://data.delijn.be/stops/510022"], ["https://data.delijn.be/stops/504436", "https://data.delijn.be/stops/509436"], ["https://data.delijn.be/stops/108196", "https://data.delijn.be/stops/108201"], ["https://data.delijn.be/stops/200938", "https://data.delijn.be/stops/201697"], ["https://data.delijn.be/stops/501432", "https://data.delijn.be/stops/506150"], ["https://data.delijn.be/stops/108383", "https://data.delijn.be/stops/108385"], ["https://data.delijn.be/stops/106009", "https://data.delijn.be/stops/106012"], ["https://data.delijn.be/stops/109294", "https://data.delijn.be/stops/109296"], ["https://data.delijn.be/stops/101680", "https://data.delijn.be/stops/103085"], ["https://data.delijn.be/stops/305481", "https://data.delijn.be/stops/305856"], ["https://data.delijn.be/stops/201809", "https://data.delijn.be/stops/201835"], ["https://data.delijn.be/stops/402192", "https://data.delijn.be/stops/402245"], ["https://data.delijn.be/stops/101262", "https://data.delijn.be/stops/105270"], ["https://data.delijn.be/stops/501315", "https://data.delijn.be/stops/506400"], ["https://data.delijn.be/stops/108451", "https://data.delijn.be/stops/108454"], ["https://data.delijn.be/stops/300179", "https://data.delijn.be/stops/300206"], ["https://data.delijn.be/stops/307422", "https://data.delijn.be/stops/307424"], ["https://data.delijn.be/stops/207441", "https://data.delijn.be/stops/207864"], ["https://data.delijn.be/stops/202581", "https://data.delijn.be/stops/203579"], ["https://data.delijn.be/stops/106188", "https://data.delijn.be/stops/106189"], ["https://data.delijn.be/stops/500950", "https://data.delijn.be/stops/500951"], ["https://data.delijn.be/stops/204397", "https://data.delijn.be/stops/205398"], ["https://data.delijn.be/stops/300937", "https://data.delijn.be/stops/301944"], ["https://data.delijn.be/stops/206762", "https://data.delijn.be/stops/208618"], ["https://data.delijn.be/stops/408826", "https://data.delijn.be/stops/410319"], ["https://data.delijn.be/stops/506026", "https://data.delijn.be/stops/506043"], ["https://data.delijn.be/stops/201532", "https://data.delijn.be/stops/201546"], ["https://data.delijn.be/stops/408696", "https://data.delijn.be/stops/408697"], ["https://data.delijn.be/stops/504995", "https://data.delijn.be/stops/505373"], ["https://data.delijn.be/stops/200315", "https://data.delijn.be/stops/201384"], ["https://data.delijn.be/stops/405408", "https://data.delijn.be/stops/407151"], ["https://data.delijn.be/stops/204127", "https://data.delijn.be/stops/205127"], ["https://data.delijn.be/stops/307640", "https://data.delijn.be/stops/307642"], ["https://data.delijn.be/stops/102998", "https://data.delijn.be/stops/107414"], ["https://data.delijn.be/stops/404267", "https://data.delijn.be/stops/408556"], ["https://data.delijn.be/stops/108106", "https://data.delijn.be/stops/108112"], ["https://data.delijn.be/stops/400967", "https://data.delijn.be/stops/406686"], ["https://data.delijn.be/stops/101701", "https://data.delijn.be/stops/103743"], ["https://data.delijn.be/stops/200094", "https://data.delijn.be/stops/200481"], ["https://data.delijn.be/stops/504640", "https://data.delijn.be/stops/509133"], ["https://data.delijn.be/stops/302372", "https://data.delijn.be/stops/302373"], ["https://data.delijn.be/stops/207785", "https://data.delijn.be/stops/208188"], ["https://data.delijn.be/stops/300151", "https://data.delijn.be/stops/300152"], ["https://data.delijn.be/stops/503094", "https://data.delijn.be/stops/508841"], ["https://data.delijn.be/stops/300019", "https://data.delijn.be/stops/300293"], ["https://data.delijn.be/stops/501115", "https://data.delijn.be/stops/501661"], ["https://data.delijn.be/stops/206774", "https://data.delijn.be/stops/209092"], ["https://data.delijn.be/stops/107575", "https://data.delijn.be/stops/107577"], ["https://data.delijn.be/stops/503540", "https://data.delijn.be/stops/505196"], ["https://data.delijn.be/stops/409262", "https://data.delijn.be/stops/409340"], ["https://data.delijn.be/stops/208353", "https://data.delijn.be/stops/208354"], ["https://data.delijn.be/stops/502560", "https://data.delijn.be/stops/507560"], ["https://data.delijn.be/stops/202207", "https://data.delijn.be/stops/203208"], ["https://data.delijn.be/stops/301331", "https://data.delijn.be/stops/301390"], ["https://data.delijn.be/stops/101018", "https://data.delijn.be/stops/105635"], ["https://data.delijn.be/stops/304678", "https://data.delijn.be/stops/304684"], ["https://data.delijn.be/stops/101397", "https://data.delijn.be/stops/101401"], ["https://data.delijn.be/stops/307406", "https://data.delijn.be/stops/307409"], ["https://data.delijn.be/stops/202020", "https://data.delijn.be/stops/211854"], ["https://data.delijn.be/stops/303947", "https://data.delijn.be/stops/303955"], ["https://data.delijn.be/stops/201435", "https://data.delijn.be/stops/209987"], ["https://data.delijn.be/stops/109297", "https://data.delijn.be/stops/109298"], ["https://data.delijn.be/stops/104590", "https://data.delijn.be/stops/105630"], ["https://data.delijn.be/stops/303250", "https://data.delijn.be/stops/303302"], ["https://data.delijn.be/stops/408830", "https://data.delijn.be/stops/408861"], ["https://data.delijn.be/stops/304066", "https://data.delijn.be/stops/304088"], ["https://data.delijn.be/stops/508280", "https://data.delijn.be/stops/508287"], ["https://data.delijn.be/stops/500007", "https://data.delijn.be/stops/509951"], ["https://data.delijn.be/stops/402554", "https://data.delijn.be/stops/402592"], ["https://data.delijn.be/stops/504060", "https://data.delijn.be/stops/509060"], ["https://data.delijn.be/stops/103694", "https://data.delijn.be/stops/103697"], ["https://data.delijn.be/stops/403259", "https://data.delijn.be/stops/403291"], ["https://data.delijn.be/stops/503003", "https://data.delijn.be/stops/508327"], ["https://data.delijn.be/stops/200840", "https://data.delijn.be/stops/502759"], ["https://data.delijn.be/stops/504800", "https://data.delijn.be/stops/504802"], ["https://data.delijn.be/stops/300282", "https://data.delijn.be/stops/300292"], ["https://data.delijn.be/stops/505105", "https://data.delijn.be/stops/508115"], ["https://data.delijn.be/stops/508561", "https://data.delijn.be/stops/509751"], ["https://data.delijn.be/stops/406694", "https://data.delijn.be/stops/409410"], ["https://data.delijn.be/stops/401679", "https://data.delijn.be/stops/308240"], ["https://data.delijn.be/stops/406033", "https://data.delijn.be/stops/406084"], ["https://data.delijn.be/stops/504639", "https://data.delijn.be/stops/504977"], ["https://data.delijn.be/stops/101199", "https://data.delijn.be/stops/204659"], ["https://data.delijn.be/stops/305184", "https://data.delijn.be/stops/308049"], ["https://data.delijn.be/stops/502311", "https://data.delijn.be/stops/505679"], ["https://data.delijn.be/stops/200105", "https://data.delijn.be/stops/201107"], ["https://data.delijn.be/stops/206834", "https://data.delijn.be/stops/207834"], ["https://data.delijn.be/stops/505669", "https://data.delijn.be/stops/507174"], ["https://data.delijn.be/stops/307883", "https://data.delijn.be/stops/307884"], ["https://data.delijn.be/stops/301531", "https://data.delijn.be/stops/304967"], ["https://data.delijn.be/stops/108209", "https://data.delijn.be/stops/108212"], ["https://data.delijn.be/stops/105513", "https://data.delijn.be/stops/105790"], ["https://data.delijn.be/stops/504122", "https://data.delijn.be/stops/509122"], ["https://data.delijn.be/stops/400792", "https://data.delijn.be/stops/409539"], ["https://data.delijn.be/stops/505501", "https://data.delijn.be/stops/505601"], ["https://data.delijn.be/stops/106226", "https://data.delijn.be/stops/109128"], ["https://data.delijn.be/stops/102042", "https://data.delijn.be/stops/206749"], ["https://data.delijn.be/stops/305773", "https://data.delijn.be/stops/305775"], ["https://data.delijn.be/stops/107277", "https://data.delijn.be/stops/107281"], ["https://data.delijn.be/stops/307297", "https://data.delijn.be/stops/307327"], ["https://data.delijn.be/stops/505986", "https://data.delijn.be/stops/509712"], ["https://data.delijn.be/stops/206455", "https://data.delijn.be/stops/206562"], ["https://data.delijn.be/stops/504422", "https://data.delijn.be/stops/509410"], ["https://data.delijn.be/stops/502733", "https://data.delijn.be/stops/505308"], ["https://data.delijn.be/stops/408600", "https://data.delijn.be/stops/408746"], ["https://data.delijn.be/stops/204250", "https://data.delijn.be/stops/205469"], ["https://data.delijn.be/stops/405176", "https://data.delijn.be/stops/405205"], ["https://data.delijn.be/stops/505256", "https://data.delijn.be/stops/505968"], ["https://data.delijn.be/stops/400973", "https://data.delijn.be/stops/408473"], ["https://data.delijn.be/stops/208712", "https://data.delijn.be/stops/208835"], ["https://data.delijn.be/stops/504241", "https://data.delijn.be/stops/509241"], ["https://data.delijn.be/stops/201212", "https://data.delijn.be/stops/203554"], ["https://data.delijn.be/stops/502321", "https://data.delijn.be/stops/505010"], ["https://data.delijn.be/stops/200425", "https://data.delijn.be/stops/203009"], ["https://data.delijn.be/stops/503038", "https://data.delijn.be/stops/504806"], ["https://data.delijn.be/stops/300421", "https://data.delijn.be/stops/302687"], ["https://data.delijn.be/stops/400914", "https://data.delijn.be/stops/400916"], ["https://data.delijn.be/stops/201333", "https://data.delijn.be/stops/210046"], ["https://data.delijn.be/stops/502647", "https://data.delijn.be/stops/507193"], ["https://data.delijn.be/stops/204414", "https://data.delijn.be/stops/204416"], ["https://data.delijn.be/stops/201959", "https://data.delijn.be/stops/201961"], ["https://data.delijn.be/stops/300212", "https://data.delijn.be/stops/300213"], ["https://data.delijn.be/stops/400758", "https://data.delijn.be/stops/400759"], ["https://data.delijn.be/stops/404100", "https://data.delijn.be/stops/404101"], ["https://data.delijn.be/stops/302512", "https://data.delijn.be/stops/302515"], ["https://data.delijn.be/stops/503842", "https://data.delijn.be/stops/507945"], ["https://data.delijn.be/stops/402082", "https://data.delijn.be/stops/402135"], ["https://data.delijn.be/stops/102409", "https://data.delijn.be/stops/109033"], ["https://data.delijn.be/stops/501119", "https://data.delijn.be/stops/506122"], ["https://data.delijn.be/stops/202428", "https://data.delijn.be/stops/202457"], ["https://data.delijn.be/stops/505032", "https://data.delijn.be/stops/506207"], ["https://data.delijn.be/stops/504834", "https://data.delijn.be/stops/505717"], ["https://data.delijn.be/stops/201051", "https://data.delijn.be/stops/211118"], ["https://data.delijn.be/stops/104741", "https://data.delijn.be/stops/104742"], ["https://data.delijn.be/stops/300010", "https://data.delijn.be/stops/304299"], ["https://data.delijn.be/stops/201660", "https://data.delijn.be/stops/210124"], ["https://data.delijn.be/stops/204384", "https://data.delijn.be/stops/205384"], ["https://data.delijn.be/stops/301845", "https://data.delijn.be/stops/305981"], ["https://data.delijn.be/stops/304479", "https://data.delijn.be/stops/304483"], ["https://data.delijn.be/stops/200848", "https://data.delijn.be/stops/200851"], ["https://data.delijn.be/stops/404201", "https://data.delijn.be/stops/404217"], ["https://data.delijn.be/stops/200732", "https://data.delijn.be/stops/203627"], ["https://data.delijn.be/stops/302509", "https://data.delijn.be/stops/302510"], ["https://data.delijn.be/stops/106037", "https://data.delijn.be/stops/107730"], ["https://data.delijn.be/stops/400118", "https://data.delijn.be/stops/400160"], ["https://data.delijn.be/stops/102170", "https://data.delijn.be/stops/103744"], ["https://data.delijn.be/stops/402851", "https://data.delijn.be/stops/409009"], ["https://data.delijn.be/stops/204231", "https://data.delijn.be/stops/204232"], ["https://data.delijn.be/stops/305043", "https://data.delijn.be/stops/308027"], ["https://data.delijn.be/stops/502222", "https://data.delijn.be/stops/502373"], ["https://data.delijn.be/stops/503811", "https://data.delijn.be/stops/504773"], ["https://data.delijn.be/stops/300021", "https://data.delijn.be/stops/300022"], ["https://data.delijn.be/stops/108534", "https://data.delijn.be/stops/108616"], ["https://data.delijn.be/stops/407740", "https://data.delijn.be/stops/409624"], ["https://data.delijn.be/stops/300329", "https://data.delijn.be/stops/304439"], ["https://data.delijn.be/stops/204205", "https://data.delijn.be/stops/205205"], ["https://data.delijn.be/stops/501122", "https://data.delijn.be/stops/506122"], ["https://data.delijn.be/stops/303168", "https://data.delijn.be/stops/307290"], ["https://data.delijn.be/stops/101779", "https://data.delijn.be/stops/108220"], ["https://data.delijn.be/stops/106760", "https://data.delijn.be/stops/106762"], ["https://data.delijn.be/stops/202289", "https://data.delijn.be/stops/203288"], ["https://data.delijn.be/stops/208452", "https://data.delijn.be/stops/209792"], ["https://data.delijn.be/stops/208494", "https://data.delijn.be/stops/208495"], ["https://data.delijn.be/stops/300192", "https://data.delijn.be/stops/308789"], ["https://data.delijn.be/stops/503277", "https://data.delijn.be/stops/508277"], ["https://data.delijn.be/stops/107789", "https://data.delijn.be/stops/107792"], ["https://data.delijn.be/stops/208572", "https://data.delijn.be/stops/209572"], ["https://data.delijn.be/stops/107727", "https://data.delijn.be/stops/107729"], ["https://data.delijn.be/stops/302145", "https://data.delijn.be/stops/307081"], ["https://data.delijn.be/stops/401469", "https://data.delijn.be/stops/401887"], ["https://data.delijn.be/stops/403360", "https://data.delijn.be/stops/403372"], ["https://data.delijn.be/stops/206213", "https://data.delijn.be/stops/206922"], ["https://data.delijn.be/stops/403001", "https://data.delijn.be/stops/403024"], ["https://data.delijn.be/stops/103338", "https://data.delijn.be/stops/103950"], ["https://data.delijn.be/stops/304596", "https://data.delijn.be/stops/304603"], ["https://data.delijn.be/stops/201863", "https://data.delijn.be/stops/203298"], ["https://data.delijn.be/stops/204087", "https://data.delijn.be/stops/205087"], ["https://data.delijn.be/stops/503248", "https://data.delijn.be/stops/503458"], ["https://data.delijn.be/stops/403492", "https://data.delijn.be/stops/403518"], ["https://data.delijn.be/stops/103924", "https://data.delijn.be/stops/107247"], ["https://data.delijn.be/stops/104835", "https://data.delijn.be/stops/106090"], ["https://data.delijn.be/stops/304731", "https://data.delijn.be/stops/304754"], ["https://data.delijn.be/stops/206947", "https://data.delijn.be/stops/207800"], ["https://data.delijn.be/stops/505070", "https://data.delijn.be/stops/505344"], ["https://data.delijn.be/stops/302346", "https://data.delijn.be/stops/302362"], ["https://data.delijn.be/stops/102996", "https://data.delijn.be/stops/106823"], ["https://data.delijn.be/stops/302316", "https://data.delijn.be/stops/304083"], ["https://data.delijn.be/stops/105559", "https://data.delijn.be/stops/105563"], ["https://data.delijn.be/stops/301347", "https://data.delijn.be/stops/306134"], ["https://data.delijn.be/stops/501542", "https://data.delijn.be/stops/502719"], ["https://data.delijn.be/stops/207003", "https://data.delijn.be/stops/207004"], ["https://data.delijn.be/stops/300868", "https://data.delijn.be/stops/300870"], ["https://data.delijn.be/stops/506124", "https://data.delijn.be/stops/506126"], ["https://data.delijn.be/stops/301376", "https://data.delijn.be/stops/306138"], ["https://data.delijn.be/stops/206370", "https://data.delijn.be/stops/207357"], ["https://data.delijn.be/stops/501351", "https://data.delijn.be/stops/506501"], ["https://data.delijn.be/stops/208507", "https://data.delijn.be/stops/208660"], ["https://data.delijn.be/stops/401118", "https://data.delijn.be/stops/401139"], ["https://data.delijn.be/stops/102400", "https://data.delijn.be/stops/108905"], ["https://data.delijn.be/stops/407802", "https://data.delijn.be/stops/407848"], ["https://data.delijn.be/stops/502008", "https://data.delijn.be/stops/507011"], ["https://data.delijn.be/stops/404350", "https://data.delijn.be/stops/404358"], ["https://data.delijn.be/stops/200914", "https://data.delijn.be/stops/203087"], ["https://data.delijn.be/stops/202205", "https://data.delijn.be/stops/203205"], ["https://data.delijn.be/stops/200167", "https://data.delijn.be/stops/202617"], ["https://data.delijn.be/stops/406509", "https://data.delijn.be/stops/406514"], ["https://data.delijn.be/stops/405335", "https://data.delijn.be/stops/302853"], ["https://data.delijn.be/stops/503466", "https://data.delijn.be/stops/503474"], ["https://data.delijn.be/stops/300827", "https://data.delijn.be/stops/305448"], ["https://data.delijn.be/stops/501266", "https://data.delijn.be/stops/506271"], ["https://data.delijn.be/stops/103613", "https://data.delijn.be/stops/103616"], ["https://data.delijn.be/stops/201818", "https://data.delijn.be/stops/209257"], ["https://data.delijn.be/stops/300641", "https://data.delijn.be/stops/301917"], ["https://data.delijn.be/stops/102222", "https://data.delijn.be/stops/105651"], ["https://data.delijn.be/stops/407945", "https://data.delijn.be/stops/407993"], ["https://data.delijn.be/stops/102355", "https://data.delijn.be/stops/102872"], ["https://data.delijn.be/stops/504082", "https://data.delijn.be/stops/505803"], ["https://data.delijn.be/stops/308686", "https://data.delijn.be/stops/308828"], ["https://data.delijn.be/stops/404108", "https://data.delijn.be/stops/404209"], ["https://data.delijn.be/stops/401676", "https://data.delijn.be/stops/308169"], ["https://data.delijn.be/stops/109640", "https://data.delijn.be/stops/109661"], ["https://data.delijn.be/stops/508628", "https://data.delijn.be/stops/590008"], ["https://data.delijn.be/stops/307383", "https://data.delijn.be/stops/308273"], ["https://data.delijn.be/stops/303653", "https://data.delijn.be/stops/308529"], ["https://data.delijn.be/stops/504607", "https://data.delijn.be/stops/509607"], ["https://data.delijn.be/stops/105329", "https://data.delijn.be/stops/204027"], ["https://data.delijn.be/stops/402506", "https://data.delijn.be/stops/402510"], ["https://data.delijn.be/stops/109082", "https://data.delijn.be/stops/109313"], ["https://data.delijn.be/stops/302781", "https://data.delijn.be/stops/307781"], ["https://data.delijn.be/stops/200172", "https://data.delijn.be/stops/201514"], ["https://data.delijn.be/stops/201184", "https://data.delijn.be/stops/201239"], ["https://data.delijn.be/stops/303194", "https://data.delijn.be/stops/303200"], ["https://data.delijn.be/stops/408273", "https://data.delijn.be/stops/408412"], ["https://data.delijn.be/stops/301557", "https://data.delijn.be/stops/308086"], ["https://data.delijn.be/stops/403267", "https://data.delijn.be/stops/410222"], ["https://data.delijn.be/stops/203264", "https://data.delijn.be/stops/203265"], ["https://data.delijn.be/stops/403962", "https://data.delijn.be/stops/403963"], ["https://data.delijn.be/stops/404920", "https://data.delijn.be/stops/404926"], ["https://data.delijn.be/stops/202848", "https://data.delijn.be/stops/218002"], ["https://data.delijn.be/stops/102874", "https://data.delijn.be/stops/105010"], ["https://data.delijn.be/stops/101527", "https://data.delijn.be/stops/109644"], ["https://data.delijn.be/stops/107567", "https://data.delijn.be/stops/107570"], ["https://data.delijn.be/stops/203796", "https://data.delijn.be/stops/203797"], ["https://data.delijn.be/stops/301886", "https://data.delijn.be/stops/305465"], ["https://data.delijn.be/stops/201907", "https://data.delijn.be/stops/203179"], ["https://data.delijn.be/stops/204925", "https://data.delijn.be/stops/205924"], ["https://data.delijn.be/stops/403209", "https://data.delijn.be/stops/403402"], ["https://data.delijn.be/stops/104854", "https://data.delijn.be/stops/107908"], ["https://data.delijn.be/stops/402103", "https://data.delijn.be/stops/402348"], ["https://data.delijn.be/stops/402175", "https://data.delijn.be/stops/402221"], ["https://data.delijn.be/stops/208470", "https://data.delijn.be/stops/209462"], ["https://data.delijn.be/stops/207783", "https://data.delijn.be/stops/209189"], ["https://data.delijn.be/stops/505719", "https://data.delijn.be/stops/508489"], ["https://data.delijn.be/stops/400601", "https://data.delijn.be/stops/400628"], ["https://data.delijn.be/stops/303081", "https://data.delijn.be/stops/303111"], ["https://data.delijn.be/stops/501307", "https://data.delijn.be/stops/501519"], ["https://data.delijn.be/stops/206721", "https://data.delijn.be/stops/206849"], ["https://data.delijn.be/stops/202147", "https://data.delijn.be/stops/203147"], ["https://data.delijn.be/stops/200839", "https://data.delijn.be/stops/200886"], ["https://data.delijn.be/stops/402956", "https://data.delijn.be/stops/405136"], ["https://data.delijn.be/stops/200670", "https://data.delijn.be/stops/204997"], ["https://data.delijn.be/stops/402592", "https://data.delijn.be/stops/402639"], ["https://data.delijn.be/stops/504563", "https://data.delijn.be/stops/505927"], ["https://data.delijn.be/stops/209772", "https://data.delijn.be/stops/209773"], ["https://data.delijn.be/stops/504031", "https://data.delijn.be/stops/509031"], ["https://data.delijn.be/stops/302228", "https://data.delijn.be/stops/308981"], ["https://data.delijn.be/stops/208127", "https://data.delijn.be/stops/208669"], ["https://data.delijn.be/stops/200643", "https://data.delijn.be/stops/201606"], ["https://data.delijn.be/stops/408334", "https://data.delijn.be/stops/410159"], ["https://data.delijn.be/stops/407747", "https://data.delijn.be/stops/409788"], ["https://data.delijn.be/stops/203077", "https://data.delijn.be/stops/211075"], ["https://data.delijn.be/stops/505658", "https://data.delijn.be/stops/505756"], ["https://data.delijn.be/stops/109495", "https://data.delijn.be/stops/109497"], ["https://data.delijn.be/stops/101313", "https://data.delijn.be/stops/101616"], ["https://data.delijn.be/stops/204049", "https://data.delijn.be/stops/205065"], ["https://data.delijn.be/stops/502006", "https://data.delijn.be/stops/505024"], ["https://data.delijn.be/stops/304893", "https://data.delijn.be/stops/304911"], ["https://data.delijn.be/stops/104052", "https://data.delijn.be/stops/108411"], ["https://data.delijn.be/stops/202217", "https://data.delijn.be/stops/202218"], ["https://data.delijn.be/stops/301412", "https://data.delijn.be/stops/301414"], ["https://data.delijn.be/stops/402491", "https://data.delijn.be/stops/402492"], ["https://data.delijn.be/stops/305231", "https://data.delijn.be/stops/305284"], ["https://data.delijn.be/stops/305456", "https://data.delijn.be/stops/306638"], ["https://data.delijn.be/stops/300594", "https://data.delijn.be/stops/303021"], ["https://data.delijn.be/stops/206246", "https://data.delijn.be/stops/207246"], ["https://data.delijn.be/stops/506115", "https://data.delijn.be/stops/506662"], ["https://data.delijn.be/stops/106202", "https://data.delijn.be/stops/106205"], ["https://data.delijn.be/stops/502175", "https://data.delijn.be/stops/507175"], ["https://data.delijn.be/stops/308414", "https://data.delijn.be/stops/308424"], ["https://data.delijn.be/stops/409782", "https://data.delijn.be/stops/409785"], ["https://data.delijn.be/stops/207761", "https://data.delijn.be/stops/207783"], ["https://data.delijn.be/stops/500565", "https://data.delijn.be/stops/500566"], ["https://data.delijn.be/stops/300103", "https://data.delijn.be/stops/300104"], ["https://data.delijn.be/stops/200133", "https://data.delijn.be/stops/202452"], ["https://data.delijn.be/stops/503578", "https://data.delijn.be/stops/508578"], ["https://data.delijn.be/stops/402764", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/401458", "https://data.delijn.be/stops/407120"], ["https://data.delijn.be/stops/105170", "https://data.delijn.be/stops/107212"], ["https://data.delijn.be/stops/403001", "https://data.delijn.be/stops/403073"], ["https://data.delijn.be/stops/206839", "https://data.delijn.be/stops/207572"], ["https://data.delijn.be/stops/307218", "https://data.delijn.be/stops/307283"], ["https://data.delijn.be/stops/201012", "https://data.delijn.be/stops/211021"], ["https://data.delijn.be/stops/109996", "https://data.delijn.be/stops/410261"], ["https://data.delijn.be/stops/303949", "https://data.delijn.be/stops/304178"], ["https://data.delijn.be/stops/201474", "https://data.delijn.be/stops/210057"], ["https://data.delijn.be/stops/303465", "https://data.delijn.be/stops/308636"], ["https://data.delijn.be/stops/405070", "https://data.delijn.be/stops/405071"], ["https://data.delijn.be/stops/204510", "https://data.delijn.be/stops/205449"], ["https://data.delijn.be/stops/109459", "https://data.delijn.be/stops/109461"], ["https://data.delijn.be/stops/105538", "https://data.delijn.be/stops/105539"], ["https://data.delijn.be/stops/109511", "https://data.delijn.be/stops/109512"], ["https://data.delijn.be/stops/106035", "https://data.delijn.be/stops/106045"], ["https://data.delijn.be/stops/503777", "https://data.delijn.be/stops/508777"], ["https://data.delijn.be/stops/103227", "https://data.delijn.be/stops/103598"], ["https://data.delijn.be/stops/102224", "https://data.delijn.be/stops/102228"], ["https://data.delijn.be/stops/301335", "https://data.delijn.be/stops/306120"], ["https://data.delijn.be/stops/201680", "https://data.delijn.be/stops/202403"], ["https://data.delijn.be/stops/402205", "https://data.delijn.be/stops/402333"], ["https://data.delijn.be/stops/410147", "https://data.delijn.be/stops/410351"], ["https://data.delijn.be/stops/101484", "https://data.delijn.be/stops/108747"], ["https://data.delijn.be/stops/307759", "https://data.delijn.be/stops/307760"], ["https://data.delijn.be/stops/305282", "https://data.delijn.be/stops/305293"], ["https://data.delijn.be/stops/401296", "https://data.delijn.be/stops/401368"], ["https://data.delijn.be/stops/106318", "https://data.delijn.be/stops/106319"], ["https://data.delijn.be/stops/502370", "https://data.delijn.be/stops/507369"], ["https://data.delijn.be/stops/102718", "https://data.delijn.be/stops/107187"], ["https://data.delijn.be/stops/403177", "https://data.delijn.be/stops/403205"], ["https://data.delijn.be/stops/206735", "https://data.delijn.be/stops/207616"], ["https://data.delijn.be/stops/404560", "https://data.delijn.be/stops/404562"], ["https://data.delijn.be/stops/308055", "https://data.delijn.be/stops/308057"], ["https://data.delijn.be/stops/405048", "https://data.delijn.be/stops/405112"], ["https://data.delijn.be/stops/206650", "https://data.delijn.be/stops/207411"], ["https://data.delijn.be/stops/301644", "https://data.delijn.be/stops/304180"], ["https://data.delijn.be/stops/503993", "https://data.delijn.be/stops/508993"], ["https://data.delijn.be/stops/203592", "https://data.delijn.be/stops/203593"], ["https://data.delijn.be/stops/308606", "https://data.delijn.be/stops/308607"], ["https://data.delijn.be/stops/200134", "https://data.delijn.be/stops/201133"], ["https://data.delijn.be/stops/103800", "https://data.delijn.be/stops/104127"], ["https://data.delijn.be/stops/103478", "https://data.delijn.be/stops/109217"], ["https://data.delijn.be/stops/206156", "https://data.delijn.be/stops/207810"], ["https://data.delijn.be/stops/301065", "https://data.delijn.be/stops/301269"], ["https://data.delijn.be/stops/303744", "https://data.delijn.be/stops/303745"], ["https://data.delijn.be/stops/400788", "https://data.delijn.be/stops/400789"], ["https://data.delijn.be/stops/505258", "https://data.delijn.be/stops/508673"], ["https://data.delijn.be/stops/402133", "https://data.delijn.be/stops/402143"], ["https://data.delijn.be/stops/108359", "https://data.delijn.be/stops/108502"], ["https://data.delijn.be/stops/101086", "https://data.delijn.be/stops/104458"], ["https://data.delijn.be/stops/203577", "https://data.delijn.be/stops/203578"], ["https://data.delijn.be/stops/403045", "https://data.delijn.be/stops/403091"], ["https://data.delijn.be/stops/300045", "https://data.delijn.be/stops/307825"], ["https://data.delijn.be/stops/101008", "https://data.delijn.be/stops/101138"], ["https://data.delijn.be/stops/106125", "https://data.delijn.be/stops/106237"], ["https://data.delijn.be/stops/204664", "https://data.delijn.be/stops/204687"], ["https://data.delijn.be/stops/507013", "https://data.delijn.be/stops/507154"], ["https://data.delijn.be/stops/507255", "https://data.delijn.be/stops/509207"], ["https://data.delijn.be/stops/300999", "https://data.delijn.be/stops/301000"], ["https://data.delijn.be/stops/209200", "https://data.delijn.be/stops/209201"], ["https://data.delijn.be/stops/303115", "https://data.delijn.be/stops/304237"], ["https://data.delijn.be/stops/504367", "https://data.delijn.be/stops/509369"], ["https://data.delijn.be/stops/105281", "https://data.delijn.be/stops/105298"], ["https://data.delijn.be/stops/501015", "https://data.delijn.be/stops/501016"], ["https://data.delijn.be/stops/201214", "https://data.delijn.be/stops/203546"], ["https://data.delijn.be/stops/101506", "https://data.delijn.be/stops/101508"], ["https://data.delijn.be/stops/305700", "https://data.delijn.be/stops/305701"], ["https://data.delijn.be/stops/105157", "https://data.delijn.be/stops/105158"], ["https://data.delijn.be/stops/105578", "https://data.delijn.be/stops/105584"], ["https://data.delijn.be/stops/401509", "https://data.delijn.be/stops/401566"], ["https://data.delijn.be/stops/404523", "https://data.delijn.be/stops/404585"], ["https://data.delijn.be/stops/207670", "https://data.delijn.be/stops/209482"], ["https://data.delijn.be/stops/105515", "https://data.delijn.be/stops/105725"], ["https://data.delijn.be/stops/401475", "https://data.delijn.be/stops/410146"], ["https://data.delijn.be/stops/206498", "https://data.delijn.be/stops/206991"], ["https://data.delijn.be/stops/102851", "https://data.delijn.be/stops/106776"], ["https://data.delijn.be/stops/300781", "https://data.delijn.be/stops/301017"], ["https://data.delijn.be/stops/504077", "https://data.delijn.be/stops/505940"], ["https://data.delijn.be/stops/304456", "https://data.delijn.be/stops/307694"], ["https://data.delijn.be/stops/300428", "https://data.delijn.be/stops/301262"], ["https://data.delijn.be/stops/403267", "https://data.delijn.be/stops/403268"], ["https://data.delijn.be/stops/208524", "https://data.delijn.be/stops/209524"], ["https://data.delijn.be/stops/400684", "https://data.delijn.be/stops/404472"], ["https://data.delijn.be/stops/503506", "https://data.delijn.be/stops/505297"], ["https://data.delijn.be/stops/406219", "https://data.delijn.be/stops/409407"], ["https://data.delijn.be/stops/407556", "https://data.delijn.be/stops/407558"], ["https://data.delijn.be/stops/106002", "https://data.delijn.be/stops/106003"], ["https://data.delijn.be/stops/409302", "https://data.delijn.be/stops/409303"], ["https://data.delijn.be/stops/107068", "https://data.delijn.be/stops/107071"], ["https://data.delijn.be/stops/308174", "https://data.delijn.be/stops/308177"], ["https://data.delijn.be/stops/202825", "https://data.delijn.be/stops/203826"], ["https://data.delijn.be/stops/304016", "https://data.delijn.be/stops/307504"], ["https://data.delijn.be/stops/405379", "https://data.delijn.be/stops/405380"], ["https://data.delijn.be/stops/301635", "https://data.delijn.be/stops/301637"], ["https://data.delijn.be/stops/400053", "https://data.delijn.be/stops/409163"], ["https://data.delijn.be/stops/404914", "https://data.delijn.be/stops/404946"], ["https://data.delijn.be/stops/203369", "https://data.delijn.be/stops/203587"], ["https://data.delijn.be/stops/200101", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/401440", "https://data.delijn.be/stops/408280"], ["https://data.delijn.be/stops/202378", "https://data.delijn.be/stops/202379"], ["https://data.delijn.be/stops/301945", "https://data.delijn.be/stops/307895"], ["https://data.delijn.be/stops/504116", "https://data.delijn.be/stops/509643"], ["https://data.delijn.be/stops/400402", "https://data.delijn.be/stops/405864"], ["https://data.delijn.be/stops/104335", "https://data.delijn.be/stops/108375"], ["https://data.delijn.be/stops/501156", "https://data.delijn.be/stops/505621"], ["https://data.delijn.be/stops/204313", "https://data.delijn.be/stops/204708"], ["https://data.delijn.be/stops/408681", "https://data.delijn.be/stops/408798"], ["https://data.delijn.be/stops/504119", "https://data.delijn.be/stops/509718"], ["https://data.delijn.be/stops/303460", "https://data.delijn.be/stops/303486"], ["https://data.delijn.be/stops/303484", "https://data.delijn.be/stops/308739"], ["https://data.delijn.be/stops/507447", "https://data.delijn.be/stops/507662"], ["https://data.delijn.be/stops/508745", "https://data.delijn.be/stops/508747"], ["https://data.delijn.be/stops/408852", "https://data.delijn.be/stops/408857"], ["https://data.delijn.be/stops/305148", "https://data.delijn.be/stops/305149"], ["https://data.delijn.be/stops/504326", "https://data.delijn.be/stops/504634"], ["https://data.delijn.be/stops/402177", "https://data.delijn.be/stops/402363"], ["https://data.delijn.be/stops/204115", "https://data.delijn.be/stops/204690"], ["https://data.delijn.be/stops/403091", "https://data.delijn.be/stops/410336"], ["https://data.delijn.be/stops/500604", "https://data.delijn.be/stops/501533"], ["https://data.delijn.be/stops/300327", "https://data.delijn.be/stops/307030"], ["https://data.delijn.be/stops/301327", "https://data.delijn.be/stops/301380"], ["https://data.delijn.be/stops/301389", "https://data.delijn.be/stops/306153"], ["https://data.delijn.be/stops/501303", "https://data.delijn.be/stops/506391"], ["https://data.delijn.be/stops/204660", "https://data.delijn.be/stops/205660"], ["https://data.delijn.be/stops/403431", "https://data.delijn.be/stops/403498"], ["https://data.delijn.be/stops/306178", "https://data.delijn.be/stops/306388"], ["https://data.delijn.be/stops/202209", "https://data.delijn.be/stops/203209"], ["https://data.delijn.be/stops/306612", "https://data.delijn.be/stops/306614"], ["https://data.delijn.be/stops/304889", "https://data.delijn.be/stops/306713"], ["https://data.delijn.be/stops/208174", "https://data.delijn.be/stops/208759"], ["https://data.delijn.be/stops/406699", "https://data.delijn.be/stops/406987"], ["https://data.delijn.be/stops/403144", "https://data.delijn.be/stops/407586"], ["https://data.delijn.be/stops/105134", "https://data.delijn.be/stops/305614"], ["https://data.delijn.be/stops/405594", "https://data.delijn.be/stops/405595"], ["https://data.delijn.be/stops/201751", "https://data.delijn.be/stops/208679"], ["https://data.delijn.be/stops/304383", "https://data.delijn.be/stops/304384"], ["https://data.delijn.be/stops/208241", "https://data.delijn.be/stops/209241"], ["https://data.delijn.be/stops/305613", "https://data.delijn.be/stops/305619"], ["https://data.delijn.be/stops/102420", "https://data.delijn.be/stops/105155"], ["https://data.delijn.be/stops/302411", "https://data.delijn.be/stops/308814"], ["https://data.delijn.be/stops/503078", "https://data.delijn.be/stops/508078"], ["https://data.delijn.be/stops/305692", "https://data.delijn.be/stops/305699"], ["https://data.delijn.be/stops/302668", "https://data.delijn.be/stops/302679"], ["https://data.delijn.be/stops/503699", "https://data.delijn.be/stops/508709"], ["https://data.delijn.be/stops/300396", "https://data.delijn.be/stops/306065"], ["https://data.delijn.be/stops/403293", "https://data.delijn.be/stops/405636"], ["https://data.delijn.be/stops/104377", "https://data.delijn.be/stops/204271"], ["https://data.delijn.be/stops/501447", "https://data.delijn.be/stops/506447"], ["https://data.delijn.be/stops/301626", "https://data.delijn.be/stops/301641"], ["https://data.delijn.be/stops/205910", "https://data.delijn.be/stops/205913"], ["https://data.delijn.be/stops/400436", "https://data.delijn.be/stops/406768"], ["https://data.delijn.be/stops/300293", "https://data.delijn.be/stops/306092"], ["https://data.delijn.be/stops/304073", "https://data.delijn.be/stops/304074"], ["https://data.delijn.be/stops/405582", "https://data.delijn.be/stops/405583"], ["https://data.delijn.be/stops/505562", "https://data.delijn.be/stops/508640"], ["https://data.delijn.be/stops/201644", "https://data.delijn.be/stops/201645"], ["https://data.delijn.be/stops/502202", "https://data.delijn.be/stops/503948"], ["https://data.delijn.be/stops/405304", "https://data.delijn.be/stops/410151"], ["https://data.delijn.be/stops/300481", "https://data.delijn.be/stops/300534"], ["https://data.delijn.be/stops/503541", "https://data.delijn.be/stops/508541"], ["https://data.delijn.be/stops/500119", "https://data.delijn.be/stops/502466"], ["https://data.delijn.be/stops/202389", "https://data.delijn.be/stops/209947"], ["https://data.delijn.be/stops/102724", "https://data.delijn.be/stops/109880"], ["https://data.delijn.be/stops/409801", "https://data.delijn.be/stops/410194"], ["https://data.delijn.be/stops/303663", "https://data.delijn.be/stops/304947"], ["https://data.delijn.be/stops/501104", "https://data.delijn.be/stops/501493"], ["https://data.delijn.be/stops/101705", "https://data.delijn.be/stops/102162"], ["https://data.delijn.be/stops/305155", "https://data.delijn.be/stops/306880"], ["https://data.delijn.be/stops/404222", "https://data.delijn.be/stops/404239"], ["https://data.delijn.be/stops/101135", "https://data.delijn.be/stops/103330"], ["https://data.delijn.be/stops/104667", "https://data.delijn.be/stops/104883"], ["https://data.delijn.be/stops/107132", "https://data.delijn.be/stops/109650"], ["https://data.delijn.be/stops/104046", "https://data.delijn.be/stops/108401"], ["https://data.delijn.be/stops/302121", "https://data.delijn.be/stops/304133"], ["https://data.delijn.be/stops/406152", "https://data.delijn.be/stops/406153"], ["https://data.delijn.be/stops/400353", "https://data.delijn.be/stops/400369"], ["https://data.delijn.be/stops/305286", "https://data.delijn.be/stops/305291"], ["https://data.delijn.be/stops/208642", "https://data.delijn.be/stops/210027"], ["https://data.delijn.be/stops/404444", "https://data.delijn.be/stops/404445"], ["https://data.delijn.be/stops/303307", "https://data.delijn.be/stops/303344"], ["https://data.delijn.be/stops/108488", "https://data.delijn.be/stops/307234"], ["https://data.delijn.be/stops/405786", "https://data.delijn.be/stops/405879"], ["https://data.delijn.be/stops/406272", "https://data.delijn.be/stops/408864"], ["https://data.delijn.be/stops/208557", "https://data.delijn.be/stops/209557"], ["https://data.delijn.be/stops/300120", "https://data.delijn.be/stops/300132"], ["https://data.delijn.be/stops/203464", "https://data.delijn.be/stops/203467"], ["https://data.delijn.be/stops/206673", "https://data.delijn.be/stops/208169"], ["https://data.delijn.be/stops/102808", "https://data.delijn.be/stops/102866"], ["https://data.delijn.be/stops/504131", "https://data.delijn.be/stops/504740"], ["https://data.delijn.be/stops/300941", "https://data.delijn.be/stops/307795"], ["https://data.delijn.be/stops/104852", "https://data.delijn.be/stops/305806"], ["https://data.delijn.be/stops/503106", "https://data.delijn.be/stops/508106"], ["https://data.delijn.be/stops/408185", "https://data.delijn.be/stops/408186"], ["https://data.delijn.be/stops/301110", "https://data.delijn.be/stops/307634"], ["https://data.delijn.be/stops/303543", "https://data.delijn.be/stops/303559"], ["https://data.delijn.be/stops/202590", "https://data.delijn.be/stops/202591"], ["https://data.delijn.be/stops/401003", "https://data.delijn.be/stops/401153"], ["https://data.delijn.be/stops/302253", "https://data.delijn.be/stops/302268"], ["https://data.delijn.be/stops/501192", "https://data.delijn.be/stops/501193"], ["https://data.delijn.be/stops/302906", "https://data.delijn.be/stops/304329"], ["https://data.delijn.be/stops/200249", "https://data.delijn.be/stops/201525"], ["https://data.delijn.be/stops/305568", "https://data.delijn.be/stops/308829"], ["https://data.delijn.be/stops/405716", "https://data.delijn.be/stops/410144"], ["https://data.delijn.be/stops/404873", "https://data.delijn.be/stops/405546"], ["https://data.delijn.be/stops/104056", "https://data.delijn.be/stops/108141"], ["https://data.delijn.be/stops/200022", "https://data.delijn.be/stops/200071"], ["https://data.delijn.be/stops/403335", "https://data.delijn.be/stops/407041"], ["https://data.delijn.be/stops/404735", "https://data.delijn.be/stops/404753"], ["https://data.delijn.be/stops/206270", "https://data.delijn.be/stops/207270"], ["https://data.delijn.be/stops/206015", "https://data.delijn.be/stops/206267"], ["https://data.delijn.be/stops/303790", "https://data.delijn.be/stops/303876"], ["https://data.delijn.be/stops/102813", "https://data.delijn.be/stops/102814"], ["https://data.delijn.be/stops/208203", "https://data.delijn.be/stops/209778"], ["https://data.delijn.be/stops/109038", "https://data.delijn.be/stops/109039"], ["https://data.delijn.be/stops/202619", "https://data.delijn.be/stops/203596"], ["https://data.delijn.be/stops/502393", "https://data.delijn.be/stops/502394"], ["https://data.delijn.be/stops/503212", "https://data.delijn.be/stops/508212"], ["https://data.delijn.be/stops/408622", "https://data.delijn.be/stops/408770"], ["https://data.delijn.be/stops/503016", "https://data.delijn.be/stops/508020"], ["https://data.delijn.be/stops/300571", "https://data.delijn.be/stops/307856"], ["https://data.delijn.be/stops/105054", "https://data.delijn.be/stops/304041"], ["https://data.delijn.be/stops/500018", "https://data.delijn.be/stops/502453"], ["https://data.delijn.be/stops/200315", "https://data.delijn.be/stops/201315"], ["https://data.delijn.be/stops/106719", "https://data.delijn.be/stops/106721"], ["https://data.delijn.be/stops/500558", "https://data.delijn.be/stops/506033"], ["https://data.delijn.be/stops/107481", "https://data.delijn.be/stops/107483"], ["https://data.delijn.be/stops/102756", "https://data.delijn.be/stops/103343"], ["https://data.delijn.be/stops/107787", "https://data.delijn.be/stops/107788"], ["https://data.delijn.be/stops/106267", "https://data.delijn.be/stops/106268"], ["https://data.delijn.be/stops/102979", "https://data.delijn.be/stops/103078"], ["https://data.delijn.be/stops/203861", "https://data.delijn.be/stops/208700"], ["https://data.delijn.be/stops/101804", "https://data.delijn.be/stops/107983"], ["https://data.delijn.be/stops/302390", "https://data.delijn.be/stops/302672"], ["https://data.delijn.be/stops/405948", "https://data.delijn.be/stops/405998"], ["https://data.delijn.be/stops/107015", "https://data.delijn.be/stops/108650"], ["https://data.delijn.be/stops/404229", "https://data.delijn.be/stops/404553"], ["https://data.delijn.be/stops/407040", "https://data.delijn.be/stops/409203"], ["https://data.delijn.be/stops/202380", "https://data.delijn.be/stops/203380"], ["https://data.delijn.be/stops/102832", "https://data.delijn.be/stops/104982"], ["https://data.delijn.be/stops/101357", "https://data.delijn.be/stops/101358"], ["https://data.delijn.be/stops/302922", "https://data.delijn.be/stops/302923"], ["https://data.delijn.be/stops/409304", "https://data.delijn.be/stops/409331"], ["https://data.delijn.be/stops/407615", "https://data.delijn.be/stops/407618"], ["https://data.delijn.be/stops/103944", "https://data.delijn.be/stops/107326"], ["https://data.delijn.be/stops/407770", "https://data.delijn.be/stops/307367"], ["https://data.delijn.be/stops/202272", "https://data.delijn.be/stops/203276"], ["https://data.delijn.be/stops/507032", "https://data.delijn.be/stops/507055"], ["https://data.delijn.be/stops/104742", "https://data.delijn.be/stops/104746"], ["https://data.delijn.be/stops/507171", "https://data.delijn.be/stops/507341"], ["https://data.delijn.be/stops/106797", "https://data.delijn.be/stops/106874"], ["https://data.delijn.be/stops/503842", "https://data.delijn.be/stops/508842"], ["https://data.delijn.be/stops/405276", "https://data.delijn.be/stops/409662"], ["https://data.delijn.be/stops/305101", "https://data.delijn.be/stops/305111"], ["https://data.delijn.be/stops/305242", "https://data.delijn.be/stops/308695"], ["https://data.delijn.be/stops/507190", "https://data.delijn.be/stops/507198"], ["https://data.delijn.be/stops/308545", "https://data.delijn.be/stops/308586"], ["https://data.delijn.be/stops/402718", "https://data.delijn.be/stops/402719"], ["https://data.delijn.be/stops/202327", "https://data.delijn.be/stops/202425"], ["https://data.delijn.be/stops/203165", "https://data.delijn.be/stops/205073"], ["https://data.delijn.be/stops/201892", "https://data.delijn.be/stops/203934"], ["https://data.delijn.be/stops/101808", "https://data.delijn.be/stops/109761"], ["https://data.delijn.be/stops/301990", "https://data.delijn.be/stops/303163"], ["https://data.delijn.be/stops/200924", "https://data.delijn.be/stops/202702"], ["https://data.delijn.be/stops/102555", "https://data.delijn.be/stops/102560"], ["https://data.delijn.be/stops/407658", "https://data.delijn.be/stops/407662"], ["https://data.delijn.be/stops/501203", "https://data.delijn.be/stops/506257"], ["https://data.delijn.be/stops/509175", "https://data.delijn.be/stops/509477"], ["https://data.delijn.be/stops/301852", "https://data.delijn.be/stops/301853"], ["https://data.delijn.be/stops/305749", "https://data.delijn.be/stops/306332"], ["https://data.delijn.be/stops/408416", "https://data.delijn.be/stops/408417"], ["https://data.delijn.be/stops/101484", "https://data.delijn.be/stops/101492"], ["https://data.delijn.be/stops/503754", "https://data.delijn.be/stops/508754"], ["https://data.delijn.be/stops/209117", "https://data.delijn.be/stops/209332"], ["https://data.delijn.be/stops/406599", "https://data.delijn.be/stops/406609"], ["https://data.delijn.be/stops/102435", "https://data.delijn.be/stops/107980"], ["https://data.delijn.be/stops/502231", "https://data.delijn.be/stops/502236"], ["https://data.delijn.be/stops/109201", "https://data.delijn.be/stops/109202"], ["https://data.delijn.be/stops/502145", "https://data.delijn.be/stops/507145"], ["https://data.delijn.be/stops/301982", "https://data.delijn.be/stops/301983"], ["https://data.delijn.be/stops/201443", "https://data.delijn.be/stops/203134"], ["https://data.delijn.be/stops/502048", "https://data.delijn.be/stops/507029"], ["https://data.delijn.be/stops/106225", "https://data.delijn.be/stops/106228"], ["https://data.delijn.be/stops/303639", "https://data.delijn.be/stops/304808"], ["https://data.delijn.be/stops/407000", "https://data.delijn.be/stops/301525"], ["https://data.delijn.be/stops/302567", "https://data.delijn.be/stops/308119"], ["https://data.delijn.be/stops/203598", "https://data.delijn.be/stops/203599"], ["https://data.delijn.be/stops/302282", "https://data.delijn.be/stops/302283"], ["https://data.delijn.be/stops/401426", "https://data.delijn.be/stops/401489"], ["https://data.delijn.be/stops/504013", "https://data.delijn.be/stops/505298"], ["https://data.delijn.be/stops/106678", "https://data.delijn.be/stops/106679"], ["https://data.delijn.be/stops/404137", "https://data.delijn.be/stops/404160"], ["https://data.delijn.be/stops/301104", "https://data.delijn.be/stops/302953"], ["https://data.delijn.be/stops/101787", "https://data.delijn.be/stops/109144"], ["https://data.delijn.be/stops/301511", "https://data.delijn.be/stops/308750"], ["https://data.delijn.be/stops/106766", "https://data.delijn.be/stops/106768"], ["https://data.delijn.be/stops/202003", "https://data.delijn.be/stops/202022"], ["https://data.delijn.be/stops/407036", "https://data.delijn.be/stops/407061"], ["https://data.delijn.be/stops/207677", "https://data.delijn.be/stops/209134"], ["https://data.delijn.be/stops/300164", "https://data.delijn.be/stops/301229"], ["https://data.delijn.be/stops/402082", "https://data.delijn.be/stops/408469"], ["https://data.delijn.be/stops/200246", "https://data.delijn.be/stops/200426"], ["https://data.delijn.be/stops/401539", "https://data.delijn.be/stops/401892"], ["https://data.delijn.be/stops/301370", "https://data.delijn.be/stops/306683"], ["https://data.delijn.be/stops/501468", "https://data.delijn.be/stops/506468"], ["https://data.delijn.be/stops/408320", "https://data.delijn.be/stops/408334"], ["https://data.delijn.be/stops/200664", "https://data.delijn.be/stops/200665"], ["https://data.delijn.be/stops/102880", "https://data.delijn.be/stops/106060"], ["https://data.delijn.be/stops/304833", "https://data.delijn.be/stops/307830"], ["https://data.delijn.be/stops/102757", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/105767", "https://data.delijn.be/stops/109806"], ["https://data.delijn.be/stops/200662", "https://data.delijn.be/stops/200663"], ["https://data.delijn.be/stops/105815", "https://data.delijn.be/stops/105816"], ["https://data.delijn.be/stops/202027", "https://data.delijn.be/stops/202028"], ["https://data.delijn.be/stops/502367", "https://data.delijn.be/stops/502426"], ["https://data.delijn.be/stops/200959", "https://data.delijn.be/stops/202519"], ["https://data.delijn.be/stops/303863", "https://data.delijn.be/stops/303864"], ["https://data.delijn.be/stops/202437", "https://data.delijn.be/stops/204559"], ["https://data.delijn.be/stops/504066", "https://data.delijn.be/stops/509063"], ["https://data.delijn.be/stops/204580", "https://data.delijn.be/stops/204799"], ["https://data.delijn.be/stops/208428", "https://data.delijn.be/stops/208429"], ["https://data.delijn.be/stops/102417", "https://data.delijn.be/stops/105583"], ["https://data.delijn.be/stops/109137", "https://data.delijn.be/stops/109139"], ["https://data.delijn.be/stops/302599", "https://data.delijn.be/stops/302642"], ["https://data.delijn.be/stops/504547", "https://data.delijn.be/stops/505991"], ["https://data.delijn.be/stops/300294", "https://data.delijn.be/stops/306092"], ["https://data.delijn.be/stops/300392", "https://data.delijn.be/stops/301995"], ["https://data.delijn.be/stops/300058", "https://data.delijn.be/stops/307728"], ["https://data.delijn.be/stops/204110", "https://data.delijn.be/stops/204350"], ["https://data.delijn.be/stops/401089", "https://data.delijn.be/stops/401152"], ["https://data.delijn.be/stops/407144", "https://data.delijn.be/stops/407280"], ["https://data.delijn.be/stops/504150", "https://data.delijn.be/stops/509741"], ["https://data.delijn.be/stops/404503", "https://data.delijn.be/stops/404585"], ["https://data.delijn.be/stops/202982", "https://data.delijn.be/stops/203983"], ["https://data.delijn.be/stops/305892", "https://data.delijn.be/stops/306383"], ["https://data.delijn.be/stops/108283", "https://data.delijn.be/stops/109341"], ["https://data.delijn.be/stops/405057", "https://data.delijn.be/stops/405059"], ["https://data.delijn.be/stops/201848", "https://data.delijn.be/stops/210022"], ["https://data.delijn.be/stops/208685", "https://data.delijn.be/stops/208686"], ["https://data.delijn.be/stops/502656", "https://data.delijn.be/stops/505335"], ["https://data.delijn.be/stops/408380", "https://data.delijn.be/stops/409644"], ["https://data.delijn.be/stops/506181", "https://data.delijn.be/stops/506781"], ["https://data.delijn.be/stops/202678", "https://data.delijn.be/stops/203691"], ["https://data.delijn.be/stops/407631", "https://data.delijn.be/stops/407657"], ["https://data.delijn.be/stops/505241", "https://data.delijn.be/stops/505666"], ["https://data.delijn.be/stops/503546", "https://data.delijn.be/stops/505196"], ["https://data.delijn.be/stops/206723", "https://data.delijn.be/stops/206987"], ["https://data.delijn.be/stops/102579", "https://data.delijn.be/stops/102580"], ["https://data.delijn.be/stops/503335", "https://data.delijn.be/stops/508344"], ["https://data.delijn.be/stops/204020", "https://data.delijn.be/stops/205022"], ["https://data.delijn.be/stops/400274", "https://data.delijn.be/stops/400335"], ["https://data.delijn.be/stops/201033", "https://data.delijn.be/stops/201069"], ["https://data.delijn.be/stops/208125", "https://data.delijn.be/stops/208126"], ["https://data.delijn.be/stops/201678", "https://data.delijn.be/stops/201837"], ["https://data.delijn.be/stops/500950", "https://data.delijn.be/stops/504987"], ["https://data.delijn.be/stops/303894", "https://data.delijn.be/stops/303895"], ["https://data.delijn.be/stops/301374", "https://data.delijn.be/stops/306150"], ["https://data.delijn.be/stops/501121", "https://data.delijn.be/stops/506125"], ["https://data.delijn.be/stops/201677", "https://data.delijn.be/stops/201849"], ["https://data.delijn.be/stops/201265", "https://data.delijn.be/stops/201266"], ["https://data.delijn.be/stops/104639", "https://data.delijn.be/stops/108039"], ["https://data.delijn.be/stops/306335", "https://data.delijn.be/stops/306337"], ["https://data.delijn.be/stops/303056", "https://data.delijn.be/stops/303057"], ["https://data.delijn.be/stops/402040", "https://data.delijn.be/stops/403880"], ["https://data.delijn.be/stops/504954", "https://data.delijn.be/stops/508724"], ["https://data.delijn.be/stops/401043", "https://data.delijn.be/stops/401155"], ["https://data.delijn.be/stops/107461", "https://data.delijn.be/stops/107462"], ["https://data.delijn.be/stops/308718", "https://data.delijn.be/stops/308719"], ["https://data.delijn.be/stops/202541", "https://data.delijn.be/stops/209987"], ["https://data.delijn.be/stops/208451", "https://data.delijn.be/stops/218030"], ["https://data.delijn.be/stops/506142", "https://data.delijn.be/stops/506154"], ["https://data.delijn.be/stops/408318", "https://data.delijn.be/stops/410158"], ["https://data.delijn.be/stops/300413", "https://data.delijn.be/stops/300603"], ["https://data.delijn.be/stops/302196", "https://data.delijn.be/stops/302208"], ["https://data.delijn.be/stops/202579", "https://data.delijn.be/stops/203604"], ["https://data.delijn.be/stops/108513", "https://data.delijn.be/stops/108516"], ["https://data.delijn.be/stops/503336", "https://data.delijn.be/stops/503339"], ["https://data.delijn.be/stops/409358", "https://data.delijn.be/stops/409359"], ["https://data.delijn.be/stops/301363", "https://data.delijn.be/stops/306128"], ["https://data.delijn.be/stops/409369", "https://data.delijn.be/stops/410252"], ["https://data.delijn.be/stops/306801", "https://data.delijn.be/stops/307728"], ["https://data.delijn.be/stops/201125", "https://data.delijn.be/stops/509781"], ["https://data.delijn.be/stops/403478", "https://data.delijn.be/stops/403480"], ["https://data.delijn.be/stops/301967", "https://data.delijn.be/stops/307912"], ["https://data.delijn.be/stops/107542", "https://data.delijn.be/stops/109601"], ["https://data.delijn.be/stops/306846", "https://data.delijn.be/stops/307354"], ["https://data.delijn.be/stops/501483", "https://data.delijn.be/stops/506095"], ["https://data.delijn.be/stops/400244", "https://data.delijn.be/stops/400945"], ["https://data.delijn.be/stops/102189", "https://data.delijn.be/stops/105921"], ["https://data.delijn.be/stops/304130", "https://data.delijn.be/stops/305846"], ["https://data.delijn.be/stops/504255", "https://data.delijn.be/stops/509380"], ["https://data.delijn.be/stops/201213", "https://data.delijn.be/stops/201217"], ["https://data.delijn.be/stops/300282", "https://data.delijn.be/stops/303825"], ["https://data.delijn.be/stops/101198", "https://data.delijn.be/stops/101199"], ["https://data.delijn.be/stops/102827", "https://data.delijn.be/stops/105356"], ["https://data.delijn.be/stops/402036", "https://data.delijn.be/stops/403882"], ["https://data.delijn.be/stops/501063", "https://data.delijn.be/stops/506062"], ["https://data.delijn.be/stops/404874", "https://data.delijn.be/stops/404959"], ["https://data.delijn.be/stops/301950", "https://data.delijn.be/stops/307893"], ["https://data.delijn.be/stops/200753", "https://data.delijn.be/stops/209253"], ["https://data.delijn.be/stops/206777", "https://data.delijn.be/stops/208532"], ["https://data.delijn.be/stops/307027", "https://data.delijn.be/stops/307572"], ["https://data.delijn.be/stops/102973", "https://data.delijn.be/stops/105350"], ["https://data.delijn.be/stops/303111", "https://data.delijn.be/stops/305158"], ["https://data.delijn.be/stops/401209", "https://data.delijn.be/stops/401270"], ["https://data.delijn.be/stops/402885", "https://data.delijn.be/stops/402944"], ["https://data.delijn.be/stops/106481", "https://data.delijn.be/stops/106485"], ["https://data.delijn.be/stops/406094", "https://data.delijn.be/stops/406095"], ["https://data.delijn.be/stops/500563", "https://data.delijn.be/stops/506027"], ["https://data.delijn.be/stops/300179", "https://data.delijn.be/stops/300184"], ["https://data.delijn.be/stops/101925", "https://data.delijn.be/stops/105500"], ["https://data.delijn.be/stops/403912", "https://data.delijn.be/stops/403985"], ["https://data.delijn.be/stops/101460", "https://data.delijn.be/stops/102182"], ["https://data.delijn.be/stops/303171", "https://data.delijn.be/stops/305525"], ["https://data.delijn.be/stops/304443", "https://data.delijn.be/stops/307719"], ["https://data.delijn.be/stops/107902", "https://data.delijn.be/stops/109442"], ["https://data.delijn.be/stops/107282", "https://data.delijn.be/stops/107284"], ["https://data.delijn.be/stops/301891", "https://data.delijn.be/stops/301893"], ["https://data.delijn.be/stops/300343", "https://data.delijn.be/stops/304861"], ["https://data.delijn.be/stops/206878", "https://data.delijn.be/stops/207934"], ["https://data.delijn.be/stops/501073", "https://data.delijn.be/stops/501771"], ["https://data.delijn.be/stops/204210", "https://data.delijn.be/stops/207395"], ["https://data.delijn.be/stops/405801", "https://data.delijn.be/stops/405875"], ["https://data.delijn.be/stops/301793", "https://data.delijn.be/stops/305313"], ["https://data.delijn.be/stops/503473", "https://data.delijn.be/stops/503478"], ["https://data.delijn.be/stops/204547", "https://data.delijn.be/stops/205531"], ["https://data.delijn.be/stops/402358", "https://data.delijn.be/stops/402456"], ["https://data.delijn.be/stops/103601", "https://data.delijn.be/stops/104011"], ["https://data.delijn.be/stops/208094", "https://data.delijn.be/stops/208095"], ["https://data.delijn.be/stops/109120", "https://data.delijn.be/stops/109150"], ["https://data.delijn.be/stops/202812", "https://data.delijn.be/stops/203856"], ["https://data.delijn.be/stops/302548", "https://data.delijn.be/stops/302549"], ["https://data.delijn.be/stops/200763", "https://data.delijn.be/stops/200775"], ["https://data.delijn.be/stops/400612", "https://data.delijn.be/stops/400625"], ["https://data.delijn.be/stops/303964", "https://data.delijn.be/stops/303967"], ["https://data.delijn.be/stops/300538", "https://data.delijn.be/stops/302367"], ["https://data.delijn.be/stops/405148", "https://data.delijn.be/stops/405220"], ["https://data.delijn.be/stops/101465", "https://data.delijn.be/stops/101467"], ["https://data.delijn.be/stops/208064", "https://data.delijn.be/stops/209066"], ["https://data.delijn.be/stops/308771", "https://data.delijn.be/stops/308772"], ["https://data.delijn.be/stops/104651", "https://data.delijn.be/stops/108045"], ["https://data.delijn.be/stops/300352", "https://data.delijn.be/stops/301290"], ["https://data.delijn.be/stops/502932", "https://data.delijn.be/stops/504303"], ["https://data.delijn.be/stops/408524", "https://data.delijn.be/stops/408547"], ["https://data.delijn.be/stops/405295", "https://data.delijn.be/stops/405299"], ["https://data.delijn.be/stops/402763", "https://data.delijn.be/stops/410335"], ["https://data.delijn.be/stops/300275", "https://data.delijn.be/stops/306045"], ["https://data.delijn.be/stops/102636", "https://data.delijn.be/stops/102637"], ["https://data.delijn.be/stops/503498", "https://data.delijn.be/stops/503528"], ["https://data.delijn.be/stops/510003", "https://data.delijn.be/stops/510006"], ["https://data.delijn.be/stops/203596", "https://data.delijn.be/stops/203619"], ["https://data.delijn.be/stops/501662", "https://data.delijn.be/stops/506662"], ["https://data.delijn.be/stops/302222", "https://data.delijn.be/stops/304032"], ["https://data.delijn.be/stops/403219", "https://data.delijn.be/stops/403552"], ["https://data.delijn.be/stops/200658", "https://data.delijn.be/stops/208331"], ["https://data.delijn.be/stops/503088", "https://data.delijn.be/stops/503973"], ["https://data.delijn.be/stops/303855", "https://data.delijn.be/stops/307017"], ["https://data.delijn.be/stops/206097", "https://data.delijn.be/stops/207097"], ["https://data.delijn.be/stops/200728", "https://data.delijn.be/stops/200735"], ["https://data.delijn.be/stops/102995", "https://data.delijn.be/stops/104007"], ["https://data.delijn.be/stops/206530", "https://data.delijn.be/stops/207531"], ["https://data.delijn.be/stops/501384", "https://data.delijn.be/stops/506384"], ["https://data.delijn.be/stops/505925", "https://data.delijn.be/stops/509339"], ["https://data.delijn.be/stops/502280", "https://data.delijn.be/stops/507279"], ["https://data.delijn.be/stops/300428", "https://data.delijn.be/stops/300429"], ["https://data.delijn.be/stops/203931", "https://data.delijn.be/stops/210086"], ["https://data.delijn.be/stops/303546", "https://data.delijn.be/stops/306283"], ["https://data.delijn.be/stops/405807", "https://data.delijn.be/stops/408456"], ["https://data.delijn.be/stops/107274", "https://data.delijn.be/stops/107277"], ["https://data.delijn.be/stops/307402", "https://data.delijn.be/stops/307404"], ["https://data.delijn.be/stops/204257", "https://data.delijn.be/stops/204488"], ["https://data.delijn.be/stops/301362", "https://data.delijn.be/stops/308710"], ["https://data.delijn.be/stops/208218", "https://data.delijn.be/stops/209218"], ["https://data.delijn.be/stops/204663", "https://data.delijn.be/stops/204664"], ["https://data.delijn.be/stops/304425", "https://data.delijn.be/stops/304426"], ["https://data.delijn.be/stops/308710", "https://data.delijn.be/stops/308712"], ["https://data.delijn.be/stops/102045", "https://data.delijn.be/stops/102050"], ["https://data.delijn.be/stops/107237", "https://data.delijn.be/stops/108250"], ["https://data.delijn.be/stops/400702", "https://data.delijn.be/stops/400805"], ["https://data.delijn.be/stops/209171", "https://data.delijn.be/stops/209172"], ["https://data.delijn.be/stops/406030", "https://data.delijn.be/stops/406134"], ["https://data.delijn.be/stops/102670", "https://data.delijn.be/stops/103754"], ["https://data.delijn.be/stops/302050", "https://data.delijn.be/stops/306379"], ["https://data.delijn.be/stops/503023", "https://data.delijn.be/stops/503027"], ["https://data.delijn.be/stops/400499", "https://data.delijn.be/stops/400642"], ["https://data.delijn.be/stops/302677", "https://data.delijn.be/stops/302686"], ["https://data.delijn.be/stops/305970", "https://data.delijn.be/stops/308658"], ["https://data.delijn.be/stops/301532", "https://data.delijn.be/stops/304702"], ["https://data.delijn.be/stops/407872", "https://data.delijn.be/stops/408055"], ["https://data.delijn.be/stops/106999", "https://data.delijn.be/stops/107001"], ["https://data.delijn.be/stops/501535", "https://data.delijn.be/stops/501537"], ["https://data.delijn.be/stops/307571", "https://data.delijn.be/stops/307575"], ["https://data.delijn.be/stops/408100", "https://data.delijn.be/stops/408231"], ["https://data.delijn.be/stops/304014", "https://data.delijn.be/stops/304047"], ["https://data.delijn.be/stops/404999", "https://data.delijn.be/stops/408074"], ["https://data.delijn.be/stops/405813", "https://data.delijn.be/stops/409476"], ["https://data.delijn.be/stops/504508", "https://data.delijn.be/stops/509508"], ["https://data.delijn.be/stops/408746", "https://data.delijn.be/stops/408747"], ["https://data.delijn.be/stops/108397", "https://data.delijn.be/stops/108409"], ["https://data.delijn.be/stops/405448", "https://data.delijn.be/stops/405456"], ["https://data.delijn.be/stops/204288", "https://data.delijn.be/stops/205288"], ["https://data.delijn.be/stops/300655", "https://data.delijn.be/stops/302469"], ["https://data.delijn.be/stops/408825", "https://data.delijn.be/stops/408833"], ["https://data.delijn.be/stops/300351", "https://data.delijn.be/stops/300352"], ["https://data.delijn.be/stops/506629", "https://data.delijn.be/stops/508135"], ["https://data.delijn.be/stops/204149", "https://data.delijn.be/stops/205154"], ["https://data.delijn.be/stops/300088", "https://data.delijn.be/stops/308541"], ["https://data.delijn.be/stops/401216", "https://data.delijn.be/stops/406943"], ["https://data.delijn.be/stops/207513", "https://data.delijn.be/stops/207599"], ["https://data.delijn.be/stops/104966", "https://data.delijn.be/stops/107434"], ["https://data.delijn.be/stops/104037", "https://data.delijn.be/stops/108393"], ["https://data.delijn.be/stops/402810", "https://data.delijn.be/stops/407080"], ["https://data.delijn.be/stops/501395", "https://data.delijn.be/stops/590331"], ["https://data.delijn.be/stops/305051", "https://data.delijn.be/stops/306959"], ["https://data.delijn.be/stops/204778", "https://data.delijn.be/stops/205779"], ["https://data.delijn.be/stops/303771", "https://data.delijn.be/stops/303802"], ["https://data.delijn.be/stops/303988", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/101375", "https://data.delijn.be/stops/101380"], ["https://data.delijn.be/stops/102513", "https://data.delijn.be/stops/406514"], ["https://data.delijn.be/stops/101293", "https://data.delijn.be/stops/105364"], ["https://data.delijn.be/stops/206633", "https://data.delijn.be/stops/207636"], ["https://data.delijn.be/stops/301703", "https://data.delijn.be/stops/305324"], ["https://data.delijn.be/stops/503640", "https://data.delijn.be/stops/505935"], ["https://data.delijn.be/stops/507239", "https://data.delijn.be/stops/507735"], ["https://data.delijn.be/stops/206506", "https://data.delijn.be/stops/206991"], ["https://data.delijn.be/stops/501173", "https://data.delijn.be/stops/506174"], ["https://data.delijn.be/stops/301042", "https://data.delijn.be/stops/307808"], ["https://data.delijn.be/stops/208133", "https://data.delijn.be/stops/209199"], ["https://data.delijn.be/stops/208313", "https://data.delijn.be/stops/208770"], ["https://data.delijn.be/stops/407892", "https://data.delijn.be/stops/301846"], ["https://data.delijn.be/stops/402006", "https://data.delijn.be/stops/405159"], ["https://data.delijn.be/stops/200957", "https://data.delijn.be/stops/203671"], ["https://data.delijn.be/stops/204070", "https://data.delijn.be/stops/205183"], ["https://data.delijn.be/stops/104099", "https://data.delijn.be/stops/104102"], ["https://data.delijn.be/stops/407131", "https://data.delijn.be/stops/407135"], ["https://data.delijn.be/stops/105024", "https://data.delijn.be/stops/105188"], ["https://data.delijn.be/stops/101004", "https://data.delijn.be/stops/104887"], ["https://data.delijn.be/stops/402859", "https://data.delijn.be/stops/410202"], ["https://data.delijn.be/stops/102511", "https://data.delijn.be/stops/405607"], ["https://data.delijn.be/stops/101426", "https://data.delijn.be/stops/102086"], ["https://data.delijn.be/stops/405583", "https://data.delijn.be/stops/407797"], ["https://data.delijn.be/stops/503958", "https://data.delijn.be/stops/504677"], ["https://data.delijn.be/stops/300770", "https://data.delijn.be/stops/301043"], ["https://data.delijn.be/stops/407022", "https://data.delijn.be/stops/410032"], ["https://data.delijn.be/stops/103062", "https://data.delijn.be/stops/109462"], ["https://data.delijn.be/stops/400135", "https://data.delijn.be/stops/409153"], ["https://data.delijn.be/stops/502318", "https://data.delijn.be/stops/502456"], ["https://data.delijn.be/stops/402554", "https://data.delijn.be/stops/408078"], ["https://data.delijn.be/stops/301311", "https://data.delijn.be/stops/304859"], ["https://data.delijn.be/stops/402767", "https://data.delijn.be/stops/408088"], ["https://data.delijn.be/stops/503160", "https://data.delijn.be/stops/508160"], ["https://data.delijn.be/stops/403085", "https://data.delijn.be/stops/403437"], ["https://data.delijn.be/stops/502182", "https://data.delijn.be/stops/504975"], ["https://data.delijn.be/stops/105446", "https://data.delijn.be/stops/105448"], ["https://data.delijn.be/stops/502215", "https://data.delijn.be/stops/505591"], ["https://data.delijn.be/stops/504749", "https://data.delijn.be/stops/505128"], ["https://data.delijn.be/stops/101313", "https://data.delijn.be/stops/101730"], ["https://data.delijn.be/stops/103038", "https://data.delijn.be/stops/103039"], ["https://data.delijn.be/stops/201716", "https://data.delijn.be/stops/202625"], ["https://data.delijn.be/stops/400510", "https://data.delijn.be/stops/400511"], ["https://data.delijn.be/stops/406843", "https://data.delijn.be/stops/408809"], ["https://data.delijn.be/stops/300215", "https://data.delijn.be/stops/301377"], ["https://data.delijn.be/stops/202252", "https://data.delijn.be/stops/202253"], ["https://data.delijn.be/stops/400115", "https://data.delijn.be/stops/400927"], ["https://data.delijn.be/stops/208535", "https://data.delijn.be/stops/209085"], ["https://data.delijn.be/stops/206826", "https://data.delijn.be/stops/206827"], ["https://data.delijn.be/stops/200839", "https://data.delijn.be/stops/203300"], ["https://data.delijn.be/stops/207756", "https://data.delijn.be/stops/207780"], ["https://data.delijn.be/stops/206197", "https://data.delijn.be/stops/207220"], ["https://data.delijn.be/stops/301644", "https://data.delijn.be/stops/301669"], ["https://data.delijn.be/stops/405182", "https://data.delijn.be/stops/409277"], ["https://data.delijn.be/stops/208189", "https://data.delijn.be/stops/209190"], ["https://data.delijn.be/stops/403590", "https://data.delijn.be/stops/410011"], ["https://data.delijn.be/stops/302930", "https://data.delijn.be/stops/303231"], ["https://data.delijn.be/stops/404391", "https://data.delijn.be/stops/409572"], ["https://data.delijn.be/stops/304842", "https://data.delijn.be/stops/304846"], ["https://data.delijn.be/stops/200236", "https://data.delijn.be/stops/204924"], ["https://data.delijn.be/stops/205174", "https://data.delijn.be/stops/206826"], ["https://data.delijn.be/stops/507175", "https://data.delijn.be/stops/507181"], ["https://data.delijn.be/stops/200666", "https://data.delijn.be/stops/201809"], ["https://data.delijn.be/stops/306553", "https://data.delijn.be/stops/306556"], ["https://data.delijn.be/stops/201767", "https://data.delijn.be/stops/208269"], ["https://data.delijn.be/stops/105728", "https://data.delijn.be/stops/105731"], ["https://data.delijn.be/stops/308226", "https://data.delijn.be/stops/308228"], ["https://data.delijn.be/stops/303098", "https://data.delijn.be/stops/303100"], ["https://data.delijn.be/stops/204408", "https://data.delijn.be/stops/205021"], ["https://data.delijn.be/stops/405276", "https://data.delijn.be/stops/405283"], ["https://data.delijn.be/stops/408175", "https://data.delijn.be/stops/408176"], ["https://data.delijn.be/stops/106149", "https://data.delijn.be/stops/106150"], ["https://data.delijn.be/stops/104106", "https://data.delijn.be/stops/108760"], ["https://data.delijn.be/stops/208295", "https://data.delijn.be/stops/208376"], ["https://data.delijn.be/stops/400474", "https://data.delijn.be/stops/400475"], ["https://data.delijn.be/stops/404339", "https://data.delijn.be/stops/404648"], ["https://data.delijn.be/stops/300407", "https://data.delijn.be/stops/306068"], ["https://data.delijn.be/stops/204163", "https://data.delijn.be/stops/204578"], ["https://data.delijn.be/stops/204347", "https://data.delijn.be/stops/205347"], ["https://data.delijn.be/stops/504182", "https://data.delijn.be/stops/509154"], ["https://data.delijn.be/stops/503595", "https://data.delijn.be/stops/508595"], ["https://data.delijn.be/stops/106240", "https://data.delijn.be/stops/106242"], ["https://data.delijn.be/stops/205332", "https://data.delijn.be/stops/205503"], ["https://data.delijn.be/stops/504486", "https://data.delijn.be/stops/509488"], ["https://data.delijn.be/stops/408358", "https://data.delijn.be/stops/409644"], ["https://data.delijn.be/stops/303203", "https://data.delijn.be/stops/303209"], ["https://data.delijn.be/stops/202517", "https://data.delijn.be/stops/203517"], ["https://data.delijn.be/stops/206387", "https://data.delijn.be/stops/207018"], ["https://data.delijn.be/stops/200734", "https://data.delijn.be/stops/203124"], ["https://data.delijn.be/stops/504008", "https://data.delijn.be/stops/504984"], ["https://data.delijn.be/stops/505561", "https://data.delijn.be/stops/506389"], ["https://data.delijn.be/stops/301461", "https://data.delijn.be/stops/301493"], ["https://data.delijn.be/stops/206369", "https://data.delijn.be/stops/206370"], ["https://data.delijn.be/stops/206815", "https://data.delijn.be/stops/207814"], ["https://data.delijn.be/stops/109337", "https://data.delijn.be/stops/109338"], ["https://data.delijn.be/stops/207247", "https://data.delijn.be/stops/207402"], ["https://data.delijn.be/stops/104377", "https://data.delijn.be/stops/204605"], ["https://data.delijn.be/stops/206343", "https://data.delijn.be/stops/206688"], ["https://data.delijn.be/stops/501568", "https://data.delijn.be/stops/506289"], ["https://data.delijn.be/stops/503068", "https://data.delijn.be/stops/508068"], ["https://data.delijn.be/stops/202853", "https://data.delijn.be/stops/202857"], ["https://data.delijn.be/stops/407950", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/306907", "https://data.delijn.be/stops/306910"], ["https://data.delijn.be/stops/204583", "https://data.delijn.be/stops/206390"], ["https://data.delijn.be/stops/502736", "https://data.delijn.be/stops/507117"], ["https://data.delijn.be/stops/204670", "https://data.delijn.be/stops/205671"], ["https://data.delijn.be/stops/405185", "https://data.delijn.be/stops/405250"], ["https://data.delijn.be/stops/401514", "https://data.delijn.be/stops/404455"], ["https://data.delijn.be/stops/109966", "https://data.delijn.be/stops/109975"], ["https://data.delijn.be/stops/506117", "https://data.delijn.be/stops/506733"], ["https://data.delijn.be/stops/505507", "https://data.delijn.be/stops/505515"], ["https://data.delijn.be/stops/105502", "https://data.delijn.be/stops/105507"], ["https://data.delijn.be/stops/405923", "https://data.delijn.be/stops/405931"], ["https://data.delijn.be/stops/507709", "https://data.delijn.be/stops/508828"], ["https://data.delijn.be/stops/400023", "https://data.delijn.be/stops/406493"], ["https://data.delijn.be/stops/401086", "https://data.delijn.be/stops/401153"], ["https://data.delijn.be/stops/201383", "https://data.delijn.be/stops/208732"], ["https://data.delijn.be/stops/202158", "https://data.delijn.be/stops/203158"], ["https://data.delijn.be/stops/404301", "https://data.delijn.be/stops/409576"], ["https://data.delijn.be/stops/505538", "https://data.delijn.be/stops/508808"], ["https://data.delijn.be/stops/405172", "https://data.delijn.be/stops/405173"], ["https://data.delijn.be/stops/108096", "https://data.delijn.be/stops/108097"], ["https://data.delijn.be/stops/203299", "https://data.delijn.be/stops/203300"], ["https://data.delijn.be/stops/402832", "https://data.delijn.be/stops/402845"], ["https://data.delijn.be/stops/208766", "https://data.delijn.be/stops/219015"], ["https://data.delijn.be/stops/207883", "https://data.delijn.be/stops/207893"], ["https://data.delijn.be/stops/402257", "https://data.delijn.be/stops/402382"], ["https://data.delijn.be/stops/102595", "https://data.delijn.be/stops/108930"], ["https://data.delijn.be/stops/300697", "https://data.delijn.be/stops/300720"], ["https://data.delijn.be/stops/101660", "https://data.delijn.be/stops/102639"], ["https://data.delijn.be/stops/302963", "https://data.delijn.be/stops/302971"], ["https://data.delijn.be/stops/105847", "https://data.delijn.be/stops/105848"], ["https://data.delijn.be/stops/403952", "https://data.delijn.be/stops/404027"], ["https://data.delijn.be/stops/106285", "https://data.delijn.be/stops/106287"], ["https://data.delijn.be/stops/509932", "https://data.delijn.be/stops/509933"], ["https://data.delijn.be/stops/205535", "https://data.delijn.be/stops/205695"], ["https://data.delijn.be/stops/505730", "https://data.delijn.be/stops/507291"], ["https://data.delijn.be/stops/208791", "https://data.delijn.be/stops/209798"], ["https://data.delijn.be/stops/203890", "https://data.delijn.be/stops/211132"], ["https://data.delijn.be/stops/402427", "https://data.delijn.be/stops/410059"], ["https://data.delijn.be/stops/400070", "https://data.delijn.be/stops/410322"], ["https://data.delijn.be/stops/300421", "https://data.delijn.be/stops/302633"], ["https://data.delijn.be/stops/106621", "https://data.delijn.be/stops/106702"], ["https://data.delijn.be/stops/206464", "https://data.delijn.be/stops/207464"], ["https://data.delijn.be/stops/202467", "https://data.delijn.be/stops/203467"], ["https://data.delijn.be/stops/200311", "https://data.delijn.be/stops/201311"], ["https://data.delijn.be/stops/301782", "https://data.delijn.be/stops/301783"], ["https://data.delijn.be/stops/101668", "https://data.delijn.be/stops/109862"], ["https://data.delijn.be/stops/405866", "https://data.delijn.be/stops/407511"], ["https://data.delijn.be/stops/209672", "https://data.delijn.be/stops/209673"], ["https://data.delijn.be/stops/502066", "https://data.delijn.be/stops/505687"], ["https://data.delijn.be/stops/202276", "https://data.delijn.be/stops/203276"], ["https://data.delijn.be/stops/404697", "https://data.delijn.be/stops/405509"], ["https://data.delijn.be/stops/204402", "https://data.delijn.be/stops/205402"], ["https://data.delijn.be/stops/401499", "https://data.delijn.be/stops/401627"], ["https://data.delijn.be/stops/307921", "https://data.delijn.be/stops/307922"], ["https://data.delijn.be/stops/209476", "https://data.delijn.be/stops/209667"], ["https://data.delijn.be/stops/200219", "https://data.delijn.be/stops/211090"], ["https://data.delijn.be/stops/508176", "https://data.delijn.be/stops/508177"], ["https://data.delijn.be/stops/106254", "https://data.delijn.be/stops/106256"], ["https://data.delijn.be/stops/101832", "https://data.delijn.be/stops/108349"], ["https://data.delijn.be/stops/405194", "https://data.delijn.be/stops/405199"], ["https://data.delijn.be/stops/505259", "https://data.delijn.be/stops/508027"], ["https://data.delijn.be/stops/405167", "https://data.delijn.be/stops/405216"], ["https://data.delijn.be/stops/301435", "https://data.delijn.be/stops/301443"], ["https://data.delijn.be/stops/204194", "https://data.delijn.be/stops/204232"], ["https://data.delijn.be/stops/500048", "https://data.delijn.be/stops/500050"], ["https://data.delijn.be/stops/407711", "https://data.delijn.be/stops/409775"], ["https://data.delijn.be/stops/108475", "https://data.delijn.be/stops/108981"], ["https://data.delijn.be/stops/103914", "https://data.delijn.be/stops/103916"], ["https://data.delijn.be/stops/409099", "https://data.delijn.be/stops/409110"], ["https://data.delijn.be/stops/206681", "https://data.delijn.be/stops/206757"], ["https://data.delijn.be/stops/408414", "https://data.delijn.be/stops/301841"], ["https://data.delijn.be/stops/405078", "https://data.delijn.be/stops/405106"], ["https://data.delijn.be/stops/502096", "https://data.delijn.be/stops/502681"], ["https://data.delijn.be/stops/401843", "https://data.delijn.be/stops/406347"], ["https://data.delijn.be/stops/106825", "https://data.delijn.be/stops/106826"], ["https://data.delijn.be/stops/102633", "https://data.delijn.be/stops/104926"], ["https://data.delijn.be/stops/202978", "https://data.delijn.be/stops/203978"], ["https://data.delijn.be/stops/102208", "https://data.delijn.be/stops/102967"], ["https://data.delijn.be/stops/401910", "https://data.delijn.be/stops/401919"], ["https://data.delijn.be/stops/306933", "https://data.delijn.be/stops/306934"], ["https://data.delijn.be/stops/304897", "https://data.delijn.be/stops/304905"], ["https://data.delijn.be/stops/207583", "https://data.delijn.be/stops/207993"], ["https://data.delijn.be/stops/108341", "https://data.delijn.be/stops/109369"], ["https://data.delijn.be/stops/101132", "https://data.delijn.be/stops/107957"], ["https://data.delijn.be/stops/503875", "https://data.delijn.be/stops/509753"], ["https://data.delijn.be/stops/101920", "https://data.delijn.be/stops/104450"], ["https://data.delijn.be/stops/300512", "https://data.delijn.be/stops/302366"], ["https://data.delijn.be/stops/403742", "https://data.delijn.be/stops/403813"], ["https://data.delijn.be/stops/101935", "https://data.delijn.be/stops/105615"], ["https://data.delijn.be/stops/403608", "https://data.delijn.be/stops/403609"], ["https://data.delijn.be/stops/405693", "https://data.delijn.be/stops/405695"], ["https://data.delijn.be/stops/301729", "https://data.delijn.be/stops/301758"], ["https://data.delijn.be/stops/300110", "https://data.delijn.be/stops/306853"], ["https://data.delijn.be/stops/206189", "https://data.delijn.be/stops/206193"], ["https://data.delijn.be/stops/301590", "https://data.delijn.be/stops/301591"], ["https://data.delijn.be/stops/406106", "https://data.delijn.be/stops/406807"], ["https://data.delijn.be/stops/103021", "https://data.delijn.be/stops/107231"], ["https://data.delijn.be/stops/300558", "https://data.delijn.be/stops/307860"], ["https://data.delijn.be/stops/101267", "https://data.delijn.be/stops/101520"], ["https://data.delijn.be/stops/105224", "https://data.delijn.be/stops/108056"], ["https://data.delijn.be/stops/204333", "https://data.delijn.be/stops/205817"], ["https://data.delijn.be/stops/408742", "https://data.delijn.be/stops/408743"], ["https://data.delijn.be/stops/202851", "https://data.delijn.be/stops/203849"], ["https://data.delijn.be/stops/205332", "https://data.delijn.be/stops/205333"], ["https://data.delijn.be/stops/401442", "https://data.delijn.be/stops/401736"], ["https://data.delijn.be/stops/202133", "https://data.delijn.be/stops/211058"], ["https://data.delijn.be/stops/501531", "https://data.delijn.be/stops/506510"], ["https://data.delijn.be/stops/201867", "https://data.delijn.be/stops/211039"], ["https://data.delijn.be/stops/200737", "https://data.delijn.be/stops/202619"], ["https://data.delijn.be/stops/203538", "https://data.delijn.be/stops/219022"], ["https://data.delijn.be/stops/200049", "https://data.delijn.be/stops/201049"], ["https://data.delijn.be/stops/505143", "https://data.delijn.be/stops/509051"], ["https://data.delijn.be/stops/302622", "https://data.delijn.be/stops/308937"], ["https://data.delijn.be/stops/300839", "https://data.delijn.be/stops/300876"], ["https://data.delijn.be/stops/204820", "https://data.delijn.be/stops/205820"], ["https://data.delijn.be/stops/300685", "https://data.delijn.be/stops/300700"], ["https://data.delijn.be/stops/201994", "https://data.delijn.be/stops/202013"], ["https://data.delijn.be/stops/502215", "https://data.delijn.be/stops/502219"], ["https://data.delijn.be/stops/301003", "https://data.delijn.be/stops/301004"], ["https://data.delijn.be/stops/102120", "https://data.delijn.be/stops/103636"], ["https://data.delijn.be/stops/205469", "https://data.delijn.be/stops/215011"], ["https://data.delijn.be/stops/404836", "https://data.delijn.be/stops/406751"], ["https://data.delijn.be/stops/501149", "https://data.delijn.be/stops/505621"], ["https://data.delijn.be/stops/400580", "https://data.delijn.be/stops/405918"], ["https://data.delijn.be/stops/407406", "https://data.delijn.be/stops/407407"], ["https://data.delijn.be/stops/307616", "https://data.delijn.be/stops/308559"], ["https://data.delijn.be/stops/107440", "https://data.delijn.be/stops/107442"], ["https://data.delijn.be/stops/305660", "https://data.delijn.be/stops/305663"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/101923"], ["https://data.delijn.be/stops/402300", "https://data.delijn.be/stops/409373"], ["https://data.delijn.be/stops/210035", "https://data.delijn.be/stops/211034"], ["https://data.delijn.be/stops/402004", "https://data.delijn.be/stops/406744"], ["https://data.delijn.be/stops/400135", "https://data.delijn.be/stops/410220"], ["https://data.delijn.be/stops/400223", "https://data.delijn.be/stops/400230"], ["https://data.delijn.be/stops/305446", "https://data.delijn.be/stops/307297"], ["https://data.delijn.be/stops/204722", "https://data.delijn.be/stops/214013"], ["https://data.delijn.be/stops/204789", "https://data.delijn.be/stops/205128"], ["https://data.delijn.be/stops/501389", "https://data.delijn.be/stops/506387"], ["https://data.delijn.be/stops/300700", "https://data.delijn.be/stops/306940"], ["https://data.delijn.be/stops/302685", "https://data.delijn.be/stops/302686"], ["https://data.delijn.be/stops/404534", "https://data.delijn.be/stops/404585"], ["https://data.delijn.be/stops/103571", "https://data.delijn.be/stops/103573"], ["https://data.delijn.be/stops/204970", "https://data.delijn.be/stops/207265"], ["https://data.delijn.be/stops/205444", "https://data.delijn.be/stops/205449"], ["https://data.delijn.be/stops/102612", "https://data.delijn.be/stops/102614"], ["https://data.delijn.be/stops/409350", "https://data.delijn.be/stops/409370"], ["https://data.delijn.be/stops/400776", "https://data.delijn.be/stops/406670"], ["https://data.delijn.be/stops/302576", "https://data.delijn.be/stops/308093"], ["https://data.delijn.be/stops/501388", "https://data.delijn.be/stops/506106"], ["https://data.delijn.be/stops/300172", "https://data.delijn.be/stops/306069"], ["https://data.delijn.be/stops/308486", "https://data.delijn.be/stops/308490"], ["https://data.delijn.be/stops/201711", "https://data.delijn.be/stops/202750"], ["https://data.delijn.be/stops/402141", "https://data.delijn.be/stops/402436"], ["https://data.delijn.be/stops/207800", "https://data.delijn.be/stops/209545"], ["https://data.delijn.be/stops/409070", "https://data.delijn.be/stops/409087"], ["https://data.delijn.be/stops/204320", "https://data.delijn.be/stops/205320"], ["https://data.delijn.be/stops/508334", "https://data.delijn.be/stops/508339"], ["https://data.delijn.be/stops/305652", "https://data.delijn.be/stops/308131"], ["https://data.delijn.be/stops/201281", "https://data.delijn.be/stops/208957"], ["https://data.delijn.be/stops/305408", "https://data.delijn.be/stops/305414"], ["https://data.delijn.be/stops/501111", "https://data.delijn.be/stops/501493"], ["https://data.delijn.be/stops/107253", "https://data.delijn.be/stops/107256"], ["https://data.delijn.be/stops/102844", "https://data.delijn.be/stops/106564"], ["https://data.delijn.be/stops/206240", "https://data.delijn.be/stops/206406"], ["https://data.delijn.be/stops/207364", "https://data.delijn.be/stops/207707"], ["https://data.delijn.be/stops/308685", "https://data.delijn.be/stops/308688"], ["https://data.delijn.be/stops/201617", "https://data.delijn.be/stops/202920"], ["https://data.delijn.be/stops/109288", "https://data.delijn.be/stops/109290"], ["https://data.delijn.be/stops/204424", "https://data.delijn.be/stops/204425"], ["https://data.delijn.be/stops/107845", "https://data.delijn.be/stops/107850"], ["https://data.delijn.be/stops/201418", "https://data.delijn.be/stops/201419"], ["https://data.delijn.be/stops/406246", "https://data.delijn.be/stops/406252"], ["https://data.delijn.be/stops/405904", "https://data.delijn.be/stops/405964"], ["https://data.delijn.be/stops/404457", "https://data.delijn.be/stops/404571"], ["https://data.delijn.be/stops/204075", "https://data.delijn.be/stops/214016"], ["https://data.delijn.be/stops/102844", "https://data.delijn.be/stops/108040"], ["https://data.delijn.be/stops/106662", "https://data.delijn.be/stops/106663"], ["https://data.delijn.be/stops/105153", "https://data.delijn.be/stops/105154"], ["https://data.delijn.be/stops/204912", "https://data.delijn.be/stops/204914"], ["https://data.delijn.be/stops/402377", "https://data.delijn.be/stops/405563"], ["https://data.delijn.be/stops/301025", "https://data.delijn.be/stops/301027"], ["https://data.delijn.be/stops/300234", "https://data.delijn.be/stops/300247"], ["https://data.delijn.be/stops/502445", "https://data.delijn.be/stops/502465"], ["https://data.delijn.be/stops/503626", "https://data.delijn.be/stops/508628"], ["https://data.delijn.be/stops/201769", "https://data.delijn.be/stops/201829"], ["https://data.delijn.be/stops/403509", "https://data.delijn.be/stops/403551"], ["https://data.delijn.be/stops/300348", "https://data.delijn.be/stops/300356"], ["https://data.delijn.be/stops/103170", "https://data.delijn.be/stops/107665"], ["https://data.delijn.be/stops/305114", "https://data.delijn.be/stops/305118"], ["https://data.delijn.be/stops/408398", "https://data.delijn.be/stops/408401"], ["https://data.delijn.be/stops/503092", "https://data.delijn.be/stops/508194"], ["https://data.delijn.be/stops/101380", "https://data.delijn.be/stops/104090"], ["https://data.delijn.be/stops/508903", "https://data.delijn.be/stops/509641"], ["https://data.delijn.be/stops/104428", "https://data.delijn.be/stops/107372"], ["https://data.delijn.be/stops/508915", "https://data.delijn.be/stops/508921"], ["https://data.delijn.be/stops/503366", "https://data.delijn.be/stops/503438"], ["https://data.delijn.be/stops/103748", "https://data.delijn.be/stops/104457"], ["https://data.delijn.be/stops/401440", "https://data.delijn.be/stops/408378"], ["https://data.delijn.be/stops/204310", "https://data.delijn.be/stops/204338"], ["https://data.delijn.be/stops/305430", "https://data.delijn.be/stops/308866"], ["https://data.delijn.be/stops/504620", "https://data.delijn.be/stops/504629"], ["https://data.delijn.be/stops/504012", "https://data.delijn.be/stops/505813"], ["https://data.delijn.be/stops/104706", "https://data.delijn.be/stops/108176"], ["https://data.delijn.be/stops/206082", "https://data.delijn.be/stops/217007"], ["https://data.delijn.be/stops/406321", "https://data.delijn.be/stops/406331"], ["https://data.delijn.be/stops/108937", "https://data.delijn.be/stops/108941"], ["https://data.delijn.be/stops/210107", "https://data.delijn.be/stops/211082"], ["https://data.delijn.be/stops/402620", "https://data.delijn.be/stops/406767"], ["https://data.delijn.be/stops/402404", "https://data.delijn.be/stops/409600"], ["https://data.delijn.be/stops/305248", "https://data.delijn.be/stops/305601"], ["https://data.delijn.be/stops/200356", "https://data.delijn.be/stops/201110"], ["https://data.delijn.be/stops/503855", "https://data.delijn.be/stops/504379"], ["https://data.delijn.be/stops/202886", "https://data.delijn.be/stops/202887"], ["https://data.delijn.be/stops/508498", "https://data.delijn.be/stops/508528"], ["https://data.delijn.be/stops/504163", "https://data.delijn.be/stops/505174"], ["https://data.delijn.be/stops/501520", "https://data.delijn.be/stops/501525"], ["https://data.delijn.be/stops/102200", "https://data.delijn.be/stops/105170"], ["https://data.delijn.be/stops/107522", "https://data.delijn.be/stops/107524"], ["https://data.delijn.be/stops/103641", "https://data.delijn.be/stops/106634"], ["https://data.delijn.be/stops/407818", "https://data.delijn.be/stops/407822"], ["https://data.delijn.be/stops/203044", "https://data.delijn.be/stops/203394"], ["https://data.delijn.be/stops/202345", "https://data.delijn.be/stops/203345"], ["https://data.delijn.be/stops/301739", "https://data.delijn.be/stops/305227"], ["https://data.delijn.be/stops/201260", "https://data.delijn.be/stops/203452"], ["https://data.delijn.be/stops/502647", "https://data.delijn.be/stops/504944"], ["https://data.delijn.be/stops/209197", "https://data.delijn.be/stops/209198"], ["https://data.delijn.be/stops/206373", "https://data.delijn.be/stops/207689"], ["https://data.delijn.be/stops/208090", "https://data.delijn.be/stops/208620"], ["https://data.delijn.be/stops/404805", "https://data.delijn.be/stops/404812"], ["https://data.delijn.be/stops/304364", "https://data.delijn.be/stops/304430"], ["https://data.delijn.be/stops/502631", "https://data.delijn.be/stops/507083"], ["https://data.delijn.be/stops/108558", "https://data.delijn.be/stops/109593"], ["https://data.delijn.be/stops/104343", "https://data.delijn.be/stops/104348"], ["https://data.delijn.be/stops/402323", "https://data.delijn.be/stops/405585"], ["https://data.delijn.be/stops/300825", "https://data.delijn.be/stops/303833"], ["https://data.delijn.be/stops/504048", "https://data.delijn.be/stops/509048"], ["https://data.delijn.be/stops/405058", "https://data.delijn.be/stops/405067"], ["https://data.delijn.be/stops/403260", "https://data.delijn.be/stops/403845"], ["https://data.delijn.be/stops/505680", "https://data.delijn.be/stops/507301"], ["https://data.delijn.be/stops/103129", "https://data.delijn.be/stops/106779"], ["https://data.delijn.be/stops/406430", "https://data.delijn.be/stops/409529"], ["https://data.delijn.be/stops/410113", "https://data.delijn.be/stops/410115"], ["https://data.delijn.be/stops/305016", "https://data.delijn.be/stops/305018"], ["https://data.delijn.be/stops/101982", "https://data.delijn.be/stops/300039"], ["https://data.delijn.be/stops/401760", "https://data.delijn.be/stops/401761"], ["https://data.delijn.be/stops/205721", "https://data.delijn.be/stops/205722"], ["https://data.delijn.be/stops/301359", "https://data.delijn.be/stops/301389"], ["https://data.delijn.be/stops/504565", "https://data.delijn.be/stops/509978"], ["https://data.delijn.be/stops/404638", "https://data.delijn.be/stops/404989"], ["https://data.delijn.be/stops/301869", "https://data.delijn.be/stops/301870"], ["https://data.delijn.be/stops/103014", "https://data.delijn.be/stops/109019"], ["https://data.delijn.be/stops/200002", "https://data.delijn.be/stops/200006"], ["https://data.delijn.be/stops/410326", "https://data.delijn.be/stops/410327"], ["https://data.delijn.be/stops/406010", "https://data.delijn.be/stops/406011"], ["https://data.delijn.be/stops/505339", "https://data.delijn.be/stops/507813"], ["https://data.delijn.be/stops/202900", "https://data.delijn.be/stops/202902"], ["https://data.delijn.be/stops/308927", "https://data.delijn.be/stops/308928"], ["https://data.delijn.be/stops/209117", "https://data.delijn.be/stops/209118"], ["https://data.delijn.be/stops/410324", "https://data.delijn.be/stops/410325"], ["https://data.delijn.be/stops/201131", "https://data.delijn.be/stops/204556"], ["https://data.delijn.be/stops/107019", "https://data.delijn.be/stops/107067"], ["https://data.delijn.be/stops/201557", "https://data.delijn.be/stops/201558"], ["https://data.delijn.be/stops/108797", "https://data.delijn.be/stops/109549"], ["https://data.delijn.be/stops/102612", "https://data.delijn.be/stops/107052"], ["https://data.delijn.be/stops/505429", "https://data.delijn.be/stops/505830"], ["https://data.delijn.be/stops/406564", "https://data.delijn.be/stops/407207"], ["https://data.delijn.be/stops/408444", "https://data.delijn.be/stops/303321"], ["https://data.delijn.be/stops/108082", "https://data.delijn.be/stops/108086"], ["https://data.delijn.be/stops/101706", "https://data.delijn.be/stops/104665"], ["https://data.delijn.be/stops/402307", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/209602", "https://data.delijn.be/stops/307593"], ["https://data.delijn.be/stops/104485", "https://data.delijn.be/stops/104855"], ["https://data.delijn.be/stops/307151", "https://data.delijn.be/stops/307152"], ["https://data.delijn.be/stops/107807", "https://data.delijn.be/stops/107808"], ["https://data.delijn.be/stops/402876", "https://data.delijn.be/stops/404298"], ["https://data.delijn.be/stops/507300", "https://data.delijn.be/stops/507303"], ["https://data.delijn.be/stops/102926", "https://data.delijn.be/stops/104810"], ["https://data.delijn.be/stops/502075", "https://data.delijn.be/stops/507075"], ["https://data.delijn.be/stops/101370", "https://data.delijn.be/stops/104801"], ["https://data.delijn.be/stops/501400", "https://data.delijn.be/stops/506400"], ["https://data.delijn.be/stops/204039", "https://data.delijn.be/stops/204040"], ["https://data.delijn.be/stops/304492", "https://data.delijn.be/stops/304530"], ["https://data.delijn.be/stops/300489", "https://data.delijn.be/stops/307084"], ["https://data.delijn.be/stops/301900", "https://data.delijn.be/stops/301901"], ["https://data.delijn.be/stops/209078", "https://data.delijn.be/stops/209143"], ["https://data.delijn.be/stops/105199", "https://data.delijn.be/stops/108878"], ["https://data.delijn.be/stops/403685", "https://data.delijn.be/stops/409251"], ["https://data.delijn.be/stops/108965", "https://data.delijn.be/stops/109115"], ["https://data.delijn.be/stops/202402", "https://data.delijn.be/stops/203501"], ["https://data.delijn.be/stops/202118", "https://data.delijn.be/stops/202217"], ["https://data.delijn.be/stops/302804", "https://data.delijn.be/stops/303376"], ["https://data.delijn.be/stops/401598", "https://data.delijn.be/stops/408635"], ["https://data.delijn.be/stops/507952", "https://data.delijn.be/stops/508011"], ["https://data.delijn.be/stops/208447", "https://data.delijn.be/stops/218029"], ["https://data.delijn.be/stops/200390", "https://data.delijn.be/stops/209722"], ["https://data.delijn.be/stops/401094", "https://data.delijn.be/stops/401097"], ["https://data.delijn.be/stops/202264", "https://data.delijn.be/stops/210006"], ["https://data.delijn.be/stops/208677", "https://data.delijn.be/stops/208807"], ["https://data.delijn.be/stops/103157", "https://data.delijn.be/stops/103159"], ["https://data.delijn.be/stops/304997", "https://data.delijn.be/stops/305003"], ["https://data.delijn.be/stops/303997", "https://data.delijn.be/stops/303998"], ["https://data.delijn.be/stops/200686", "https://data.delijn.be/stops/202375"], ["https://data.delijn.be/stops/108259", "https://data.delijn.be/stops/108261"], ["https://data.delijn.be/stops/104938", "https://data.delijn.be/stops/107852"], ["https://data.delijn.be/stops/301681", "https://data.delijn.be/stops/301682"], ["https://data.delijn.be/stops/501115", "https://data.delijn.be/stops/506662"], ["https://data.delijn.be/stops/302728", "https://data.delijn.be/stops/308834"], ["https://data.delijn.be/stops/200003", "https://data.delijn.be/stops/202015"], ["https://data.delijn.be/stops/203519", "https://data.delijn.be/stops/203525"], ["https://data.delijn.be/stops/102494", "https://data.delijn.be/stops/405133"], ["https://data.delijn.be/stops/200764", "https://data.delijn.be/stops/200767"], ["https://data.delijn.be/stops/107636", "https://data.delijn.be/stops/109614"], ["https://data.delijn.be/stops/508340", "https://data.delijn.be/stops/508341"], ["https://data.delijn.be/stops/304541", "https://data.delijn.be/stops/306207"], ["https://data.delijn.be/stops/407088", "https://data.delijn.be/stops/407089"], ["https://data.delijn.be/stops/505947", "https://data.delijn.be/stops/509926"], ["https://data.delijn.be/stops/400778", "https://data.delijn.be/stops/400885"], ["https://data.delijn.be/stops/508038", "https://data.delijn.be/stops/508267"], ["https://data.delijn.be/stops/109350", "https://data.delijn.be/stops/109356"], ["https://data.delijn.be/stops/409433", "https://data.delijn.be/stops/409712"], ["https://data.delijn.be/stops/202429", "https://data.delijn.be/stops/203429"], ["https://data.delijn.be/stops/505987", "https://data.delijn.be/stops/508337"], ["https://data.delijn.be/stops/101653", "https://data.delijn.be/stops/107916"], ["https://data.delijn.be/stops/304887", "https://data.delijn.be/stops/306161"], ["https://data.delijn.be/stops/502404", "https://data.delijn.be/stops/507578"], ["https://data.delijn.be/stops/203714", "https://data.delijn.be/stops/203715"], ["https://data.delijn.be/stops/300633", "https://data.delijn.be/stops/301358"], ["https://data.delijn.be/stops/303721", "https://data.delijn.be/stops/303725"], ["https://data.delijn.be/stops/206332", "https://data.delijn.be/stops/207331"], ["https://data.delijn.be/stops/506102", "https://data.delijn.be/stops/590331"], ["https://data.delijn.be/stops/200411", "https://data.delijn.be/stops/200545"], ["https://data.delijn.be/stops/301053", "https://data.delijn.be/stops/301054"], ["https://data.delijn.be/stops/400257", "https://data.delijn.be/stops/405589"], ["https://data.delijn.be/stops/404483", "https://data.delijn.be/stops/409259"], ["https://data.delijn.be/stops/109744", "https://data.delijn.be/stops/109748"], ["https://data.delijn.be/stops/501469", "https://data.delijn.be/stops/506468"], ["https://data.delijn.be/stops/201699", "https://data.delijn.be/stops/211103"], ["https://data.delijn.be/stops/300455", "https://data.delijn.be/stops/305002"], ["https://data.delijn.be/stops/304091", "https://data.delijn.be/stops/305437"], ["https://data.delijn.be/stops/502731", "https://data.delijn.be/stops/507731"], ["https://data.delijn.be/stops/502739", "https://data.delijn.be/stops/590335"], ["https://data.delijn.be/stops/208515", "https://data.delijn.be/stops/209672"], ["https://data.delijn.be/stops/305134", "https://data.delijn.be/stops/305142"], ["https://data.delijn.be/stops/400400", "https://data.delijn.be/stops/400954"], ["https://data.delijn.be/stops/306252", "https://data.delijn.be/stops/306253"], ["https://data.delijn.be/stops/304964", "https://data.delijn.be/stops/304977"], ["https://data.delijn.be/stops/300849", "https://data.delijn.be/stops/305336"], ["https://data.delijn.be/stops/300175", "https://data.delijn.be/stops/300178"], ["https://data.delijn.be/stops/408862", "https://data.delijn.be/stops/408916"], ["https://data.delijn.be/stops/503941", "https://data.delijn.be/stops/507941"], ["https://data.delijn.be/stops/300619", "https://data.delijn.be/stops/300620"], ["https://data.delijn.be/stops/505535", "https://data.delijn.be/stops/509357"], ["https://data.delijn.be/stops/501250", "https://data.delijn.be/stops/501633"], ["https://data.delijn.be/stops/202407", "https://data.delijn.be/stops/203015"], ["https://data.delijn.be/stops/301795", "https://data.delijn.be/stops/301796"], ["https://data.delijn.be/stops/204796", "https://data.delijn.be/stops/205093"], ["https://data.delijn.be/stops/405043", "https://data.delijn.be/stops/405810"], ["https://data.delijn.be/stops/404347", "https://data.delijn.be/stops/404355"], ["https://data.delijn.be/stops/107603", "https://data.delijn.be/stops/406795"], ["https://data.delijn.be/stops/503725", "https://data.delijn.be/stops/509938"], ["https://data.delijn.be/stops/102999", "https://data.delijn.be/stops/107416"], ["https://data.delijn.be/stops/204544", "https://data.delijn.be/stops/205552"], ["https://data.delijn.be/stops/307162", "https://data.delijn.be/stops/307776"], ["https://data.delijn.be/stops/504420", "https://data.delijn.be/stops/505166"], ["https://data.delijn.be/stops/505734", "https://data.delijn.be/stops/507606"], ["https://data.delijn.be/stops/302264", "https://data.delijn.be/stops/304842"], ["https://data.delijn.be/stops/307362", "https://data.delijn.be/stops/307364"], ["https://data.delijn.be/stops/403865", "https://data.delijn.be/stops/403866"], ["https://data.delijn.be/stops/202869", "https://data.delijn.be/stops/207937"], ["https://data.delijn.be/stops/103087", "https://data.delijn.be/stops/103088"], ["https://data.delijn.be/stops/503437", "https://data.delijn.be/stops/503442"], ["https://data.delijn.be/stops/201948", "https://data.delijn.be/stops/203507"], ["https://data.delijn.be/stops/109158", "https://data.delijn.be/stops/109232"], ["https://data.delijn.be/stops/106256", "https://data.delijn.be/stops/109902"], ["https://data.delijn.be/stops/401480", "https://data.delijn.be/stops/401774"], ["https://data.delijn.be/stops/406555", "https://data.delijn.be/stops/407382"], ["https://data.delijn.be/stops/104974", "https://data.delijn.be/stops/109555"], ["https://data.delijn.be/stops/501335", "https://data.delijn.be/stops/506335"], ["https://data.delijn.be/stops/209293", "https://data.delijn.be/stops/209724"], ["https://data.delijn.be/stops/405701", "https://data.delijn.be/stops/407206"], ["https://data.delijn.be/stops/306716", "https://data.delijn.be/stops/306717"], ["https://data.delijn.be/stops/108206", "https://data.delijn.be/stops/108207"], ["https://data.delijn.be/stops/205579", "https://data.delijn.be/stops/205593"], ["https://data.delijn.be/stops/204472", "https://data.delijn.be/stops/205594"], ["https://data.delijn.be/stops/204318", "https://data.delijn.be/stops/205060"], ["https://data.delijn.be/stops/505299", "https://data.delijn.be/stops/509446"], ["https://data.delijn.be/stops/104513", "https://data.delijn.be/stops/107787"], ["https://data.delijn.be/stops/400051", "https://data.delijn.be/stops/400168"], ["https://data.delijn.be/stops/104901", "https://data.delijn.be/stops/410261"], ["https://data.delijn.be/stops/403222", "https://data.delijn.be/stops/403223"], ["https://data.delijn.be/stops/301860", "https://data.delijn.be/stops/305465"], ["https://data.delijn.be/stops/104384", "https://data.delijn.be/stops/105420"], ["https://data.delijn.be/stops/402167", "https://data.delijn.be/stops/406857"], ["https://data.delijn.be/stops/504104", "https://data.delijn.be/stops/504107"], ["https://data.delijn.be/stops/504197", "https://data.delijn.be/stops/508697"], ["https://data.delijn.be/stops/206496", "https://data.delijn.be/stops/207496"], ["https://data.delijn.be/stops/303223", "https://data.delijn.be/stops/303224"], ["https://data.delijn.be/stops/101703", "https://data.delijn.be/stops/101704"], ["https://data.delijn.be/stops/403195", "https://data.delijn.be/stops/403232"], ["https://data.delijn.be/stops/506083", "https://data.delijn.be/stops/506518"], ["https://data.delijn.be/stops/401306", "https://data.delijn.be/stops/401324"], ["https://data.delijn.be/stops/501132", "https://data.delijn.be/stops/506132"], ["https://data.delijn.be/stops/204564", "https://data.delijn.be/stops/303536"], ["https://data.delijn.be/stops/208719", "https://data.delijn.be/stops/208720"], ["https://data.delijn.be/stops/107963", "https://data.delijn.be/stops/108031"], ["https://data.delijn.be/stops/400032", "https://data.delijn.be/stops/400042"], ["https://data.delijn.be/stops/105799", "https://data.delijn.be/stops/105811"], ["https://data.delijn.be/stops/102482", "https://data.delijn.be/stops/400435"], ["https://data.delijn.be/stops/302166", "https://data.delijn.be/stops/304001"], ["https://data.delijn.be/stops/405287", "https://data.delijn.be/stops/405288"], ["https://data.delijn.be/stops/202644", "https://data.delijn.be/stops/203093"], ["https://data.delijn.be/stops/503825", "https://data.delijn.be/stops/505969"], ["https://data.delijn.be/stops/505752", "https://data.delijn.be/stops/509878"], ["https://data.delijn.be/stops/503083", "https://data.delijn.be/stops/508081"], ["https://data.delijn.be/stops/301796", "https://data.delijn.be/stops/301811"], ["https://data.delijn.be/stops/209047", "https://data.delijn.be/stops/209489"], ["https://data.delijn.be/stops/400936", "https://data.delijn.be/stops/401923"], ["https://data.delijn.be/stops/407024", "https://data.delijn.be/stops/408429"], ["https://data.delijn.be/stops/510001", "https://data.delijn.be/stops/510004"], ["https://data.delijn.be/stops/209862", "https://data.delijn.be/stops/210061"], ["https://data.delijn.be/stops/406430", "https://data.delijn.be/stops/406431"], ["https://data.delijn.be/stops/101170", "https://data.delijn.be/stops/102415"], ["https://data.delijn.be/stops/400480", "https://data.delijn.be/stops/408695"], ["https://data.delijn.be/stops/302308", "https://data.delijn.be/stops/302309"], ["https://data.delijn.be/stops/107122", "https://data.delijn.be/stops/107123"], ["https://data.delijn.be/stops/206664", "https://data.delijn.be/stops/206707"], ["https://data.delijn.be/stops/503483", "https://data.delijn.be/stops/508485"], ["https://data.delijn.be/stops/403037", "https://data.delijn.be/stops/403038"], ["https://data.delijn.be/stops/106816", "https://data.delijn.be/stops/106817"], ["https://data.delijn.be/stops/508402", "https://data.delijn.be/stops/510016"], ["https://data.delijn.be/stops/308235", "https://data.delijn.be/stops/308236"], ["https://data.delijn.be/stops/307872", "https://data.delijn.be/stops/307873"], ["https://data.delijn.be/stops/200205", "https://data.delijn.be/stops/201254"], ["https://data.delijn.be/stops/101797", "https://data.delijn.be/stops/108613"], ["https://data.delijn.be/stops/101977", "https://data.delijn.be/stops/308493"], ["https://data.delijn.be/stops/200139", "https://data.delijn.be/stops/200435"], ["https://data.delijn.be/stops/301983", "https://data.delijn.be/stops/304160"], ["https://data.delijn.be/stops/109320", "https://data.delijn.be/stops/109323"], ["https://data.delijn.be/stops/402537", "https://data.delijn.be/stops/404092"], ["https://data.delijn.be/stops/402118", "https://data.delijn.be/stops/402123"], ["https://data.delijn.be/stops/403994", "https://data.delijn.be/stops/404033"], ["https://data.delijn.be/stops/104053", "https://data.delijn.be/stops/108412"], ["https://data.delijn.be/stops/102079", "https://data.delijn.be/stops/109869"], ["https://data.delijn.be/stops/510020", "https://data.delijn.be/stops/510025"], ["https://data.delijn.be/stops/402688", "https://data.delijn.be/stops/402709"], ["https://data.delijn.be/stops/202701", "https://data.delijn.be/stops/203701"], ["https://data.delijn.be/stops/307651", "https://data.delijn.be/stops/307693"], ["https://data.delijn.be/stops/201466", "https://data.delijn.be/stops/201835"], ["https://data.delijn.be/stops/502640", "https://data.delijn.be/stops/507115"], ["https://data.delijn.be/stops/303732", "https://data.delijn.be/stops/303738"], ["https://data.delijn.be/stops/206714", "https://data.delijn.be/stops/207128"], ["https://data.delijn.be/stops/300646", "https://data.delijn.be/stops/305813"], ["https://data.delijn.be/stops/204678", "https://data.delijn.be/stops/204685"], ["https://data.delijn.be/stops/300979", "https://data.delijn.be/stops/300997"], ["https://data.delijn.be/stops/216018", "https://data.delijn.be/stops/306729"], ["https://data.delijn.be/stops/206714", "https://data.delijn.be/stops/206728"], ["https://data.delijn.be/stops/507339", "https://data.delijn.be/stops/507692"], ["https://data.delijn.be/stops/107801", "https://data.delijn.be/stops/107803"], ["https://data.delijn.be/stops/403142", "https://data.delijn.be/stops/410272"], ["https://data.delijn.be/stops/504333", "https://data.delijn.be/stops/504336"], ["https://data.delijn.be/stops/407651", "https://data.delijn.be/stops/407652"], ["https://data.delijn.be/stops/504093", "https://data.delijn.be/stops/505194"], ["https://data.delijn.be/stops/306093", "https://data.delijn.be/stops/308828"], ["https://data.delijn.be/stops/104588", "https://data.delijn.be/stops/106414"], ["https://data.delijn.be/stops/303854", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/206174", "https://data.delijn.be/stops/207174"], ["https://data.delijn.be/stops/306681", "https://data.delijn.be/stops/307879"], ["https://data.delijn.be/stops/402451", "https://data.delijn.be/stops/402453"], ["https://data.delijn.be/stops/107326", "https://data.delijn.be/stops/107327"], ["https://data.delijn.be/stops/106591", "https://data.delijn.be/stops/106592"], ["https://data.delijn.be/stops/202754", "https://data.delijn.be/stops/202755"], ["https://data.delijn.be/stops/210123", "https://data.delijn.be/stops/211123"], ["https://data.delijn.be/stops/101828", "https://data.delijn.be/stops/107001"], ["https://data.delijn.be/stops/303051", "https://data.delijn.be/stops/304484"], ["https://data.delijn.be/stops/501669", "https://data.delijn.be/stops/506143"], ["https://data.delijn.be/stops/408223", "https://data.delijn.be/stops/408914"], ["https://data.delijn.be/stops/205013", "https://data.delijn.be/stops/205697"], ["https://data.delijn.be/stops/408056", "https://data.delijn.be/stops/408120"], ["https://data.delijn.be/stops/305089", "https://data.delijn.be/stops/306955"], ["https://data.delijn.be/stops/107402", "https://data.delijn.be/stops/107404"], ["https://data.delijn.be/stops/502590", "https://data.delijn.be/stops/507589"], ["https://data.delijn.be/stops/201685", "https://data.delijn.be/stops/202791"], ["https://data.delijn.be/stops/401629", "https://data.delijn.be/stops/401635"], ["https://data.delijn.be/stops/505684", "https://data.delijn.be/stops/507313"], ["https://data.delijn.be/stops/106192", "https://data.delijn.be/stops/106194"], ["https://data.delijn.be/stops/405802", "https://data.delijn.be/stops/409735"], ["https://data.delijn.be/stops/403272", "https://data.delijn.be/stops/403383"], ["https://data.delijn.be/stops/101425", "https://data.delijn.be/stops/106959"], ["https://data.delijn.be/stops/204243", "https://data.delijn.be/stops/205242"], ["https://data.delijn.be/stops/200908", "https://data.delijn.be/stops/202249"], ["https://data.delijn.be/stops/101073", "https://data.delijn.be/stops/107151"], ["https://data.delijn.be/stops/503510", "https://data.delijn.be/stops/508510"], ["https://data.delijn.be/stops/204366", "https://data.delijn.be/stops/205366"], ["https://data.delijn.be/stops/302946", "https://data.delijn.be/stops/302981"], ["https://data.delijn.be/stops/109312", "https://data.delijn.be/stops/109358"], ["https://data.delijn.be/stops/302873", "https://data.delijn.be/stops/302926"], ["https://data.delijn.be/stops/105372", "https://data.delijn.be/stops/105373"], ["https://data.delijn.be/stops/401212", "https://data.delijn.be/stops/401268"], ["https://data.delijn.be/stops/209480", "https://data.delijn.be/stops/209501"], ["https://data.delijn.be/stops/508402", "https://data.delijn.be/stops/508427"], ["https://data.delijn.be/stops/501104", "https://data.delijn.be/stops/506107"], ["https://data.delijn.be/stops/208208", "https://data.delijn.be/stops/209784"], ["https://data.delijn.be/stops/108262", "https://data.delijn.be/stops/108263"], ["https://data.delijn.be/stops/302074", "https://data.delijn.be/stops/302076"], ["https://data.delijn.be/stops/304398", "https://data.delijn.be/stops/307399"], ["https://data.delijn.be/stops/303470", "https://data.delijn.be/stops/303482"], ["https://data.delijn.be/stops/404575", "https://data.delijn.be/stops/407249"], ["https://data.delijn.be/stops/408228", "https://data.delijn.be/stops/408291"], ["https://data.delijn.be/stops/502543", "https://data.delijn.be/stops/507623"], ["https://data.delijn.be/stops/104824", "https://data.delijn.be/stops/109088"], ["https://data.delijn.be/stops/304019", "https://data.delijn.be/stops/304089"], ["https://data.delijn.be/stops/506301", "https://data.delijn.be/stops/506734"], ["https://data.delijn.be/stops/410062", "https://data.delijn.be/stops/410218"], ["https://data.delijn.be/stops/101673", "https://data.delijn.be/stops/103157"], ["https://data.delijn.be/stops/404631", "https://data.delijn.be/stops/404636"], ["https://data.delijn.be/stops/505591", "https://data.delijn.be/stops/507496"], ["https://data.delijn.be/stops/404106", "https://data.delijn.be/stops/404107"], ["https://data.delijn.be/stops/301643", "https://data.delijn.be/stops/307766"], ["https://data.delijn.be/stops/301667", "https://data.delijn.be/stops/301671"], ["https://data.delijn.be/stops/503802", "https://data.delijn.be/stops/508802"], ["https://data.delijn.be/stops/202217", "https://data.delijn.be/stops/204582"], ["https://data.delijn.be/stops/206958", "https://data.delijn.be/stops/207182"], ["https://data.delijn.be/stops/201337", "https://data.delijn.be/stops/204951"], ["https://data.delijn.be/stops/204143", "https://data.delijn.be/stops/207637"], ["https://data.delijn.be/stops/304617", "https://data.delijn.be/stops/304625"], ["https://data.delijn.be/stops/205986", "https://data.delijn.be/stops/207005"], ["https://data.delijn.be/stops/400720", "https://data.delijn.be/stops/404333"], ["https://data.delijn.be/stops/407197", "https://data.delijn.be/stops/407372"], ["https://data.delijn.be/stops/102463", "https://data.delijn.be/stops/400405"], ["https://data.delijn.be/stops/201279", "https://data.delijn.be/stops/209737"], ["https://data.delijn.be/stops/104304", "https://data.delijn.be/stops/109747"], ["https://data.delijn.be/stops/307301", "https://data.delijn.be/stops/307302"], ["https://data.delijn.be/stops/407950", "https://data.delijn.be/stops/407952"], ["https://data.delijn.be/stops/401393", "https://data.delijn.be/stops/408419"], ["https://data.delijn.be/stops/102441", "https://data.delijn.be/stops/102596"], ["https://data.delijn.be/stops/405910", "https://data.delijn.be/stops/405932"], ["https://data.delijn.be/stops/102950", "https://data.delijn.be/stops/104980"], ["https://data.delijn.be/stops/406138", "https://data.delijn.be/stops/406367"], ["https://data.delijn.be/stops/108939", "https://data.delijn.be/stops/109223"], ["https://data.delijn.be/stops/307446", "https://data.delijn.be/stops/308274"], ["https://data.delijn.be/stops/200693", "https://data.delijn.be/stops/210111"], ["https://data.delijn.be/stops/300542", "https://data.delijn.be/stops/300561"], ["https://data.delijn.be/stops/503764", "https://data.delijn.be/stops/508764"], ["https://data.delijn.be/stops/403172", "https://data.delijn.be/stops/403829"], ["https://data.delijn.be/stops/206241", "https://data.delijn.be/stops/207405"], ["https://data.delijn.be/stops/502175", "https://data.delijn.be/stops/502181"], ["https://data.delijn.be/stops/405776", "https://data.delijn.be/stops/409438"], ["https://data.delijn.be/stops/104363", "https://data.delijn.be/stops/108395"], ["https://data.delijn.be/stops/204229", "https://data.delijn.be/stops/205231"], ["https://data.delijn.be/stops/106674", "https://data.delijn.be/stops/106675"], ["https://data.delijn.be/stops/302646", "https://data.delijn.be/stops/306772"], ["https://data.delijn.be/stops/101834", "https://data.delijn.be/stops/107030"], ["https://data.delijn.be/stops/206759", "https://data.delijn.be/stops/209581"], ["https://data.delijn.be/stops/301787", "https://data.delijn.be/stops/302523"], ["https://data.delijn.be/stops/308150", "https://data.delijn.be/stops/308153"], ["https://data.delijn.be/stops/407385", "https://data.delijn.be/stops/407411"], ["https://data.delijn.be/stops/300551", "https://data.delijn.be/stops/300559"], ["https://data.delijn.be/stops/501127", "https://data.delijn.be/stops/506128"], ["https://data.delijn.be/stops/502343", "https://data.delijn.be/stops/505310"], ["https://data.delijn.be/stops/101835", "https://data.delijn.be/stops/105175"], ["https://data.delijn.be/stops/107591", "https://data.delijn.be/stops/107722"], ["https://data.delijn.be/stops/503158", "https://data.delijn.be/stops/508166"], ["https://data.delijn.be/stops/504206", "https://data.delijn.be/stops/509205"], ["https://data.delijn.be/stops/204828", "https://data.delijn.be/stops/205798"], ["https://data.delijn.be/stops/206906", "https://data.delijn.be/stops/207906"], ["https://data.delijn.be/stops/402357", "https://data.delijn.be/stops/407172"], ["https://data.delijn.be/stops/502572", "https://data.delijn.be/stops/502637"], ["https://data.delijn.be/stops/301511", "https://data.delijn.be/stops/301513"], ["https://data.delijn.be/stops/202683", "https://data.delijn.be/stops/202728"], ["https://data.delijn.be/stops/403300", "https://data.delijn.be/stops/410184"], ["https://data.delijn.be/stops/304904", "https://data.delijn.be/stops/306407"], ["https://data.delijn.be/stops/102657", "https://data.delijn.be/stops/109915"], ["https://data.delijn.be/stops/301949", "https://data.delijn.be/stops/301950"], ["https://data.delijn.be/stops/300582", "https://data.delijn.be/stops/308897"], ["https://data.delijn.be/stops/503546", "https://data.delijn.be/stops/503602"], ["https://data.delijn.be/stops/204989", "https://data.delijn.be/stops/208548"], ["https://data.delijn.be/stops/108419", "https://data.delijn.be/stops/108437"], ["https://data.delijn.be/stops/400662", "https://data.delijn.be/stops/402539"], ["https://data.delijn.be/stops/302732", "https://data.delijn.be/stops/308600"], ["https://data.delijn.be/stops/307721", "https://data.delijn.be/stops/307723"], ["https://data.delijn.be/stops/305787", "https://data.delijn.be/stops/305788"], ["https://data.delijn.be/stops/105256", "https://data.delijn.be/stops/105257"], ["https://data.delijn.be/stops/403263", "https://data.delijn.be/stops/403862"], ["https://data.delijn.be/stops/206788", "https://data.delijn.be/stops/208542"], ["https://data.delijn.be/stops/401517", "https://data.delijn.be/stops/401585"], ["https://data.delijn.be/stops/304058", "https://data.delijn.be/stops/304079"], ["https://data.delijn.be/stops/407127", "https://data.delijn.be/stops/407327"], ["https://data.delijn.be/stops/402331", "https://data.delijn.be/stops/402499"], ["https://data.delijn.be/stops/400786", "https://data.delijn.be/stops/400787"], ["https://data.delijn.be/stops/202248", "https://data.delijn.be/stops/203248"], ["https://data.delijn.be/stops/200086", "https://data.delijn.be/stops/203480"], ["https://data.delijn.be/stops/206341", "https://data.delijn.be/stops/207716"], ["https://data.delijn.be/stops/408764", "https://data.delijn.be/stops/408765"], ["https://data.delijn.be/stops/106357", "https://data.delijn.be/stops/106358"], ["https://data.delijn.be/stops/306626", "https://data.delijn.be/stops/306627"], ["https://data.delijn.be/stops/202384", "https://data.delijn.be/stops/203383"], ["https://data.delijn.be/stops/101145", "https://data.delijn.be/stops/105495"], ["https://data.delijn.be/stops/502273", "https://data.delijn.be/stops/507522"], ["https://data.delijn.be/stops/300447", "https://data.delijn.be/stops/307904"], ["https://data.delijn.be/stops/301923", "https://data.delijn.be/stops/307835"], ["https://data.delijn.be/stops/305767", "https://data.delijn.be/stops/305769"], ["https://data.delijn.be/stops/108892", "https://data.delijn.be/stops/108894"], ["https://data.delijn.be/stops/303212", "https://data.delijn.be/stops/304185"], ["https://data.delijn.be/stops/103298", "https://data.delijn.be/stops/105094"], ["https://data.delijn.be/stops/201327", "https://data.delijn.be/stops/202505"], ["https://data.delijn.be/stops/209598", "https://data.delijn.be/stops/307600"], ["https://data.delijn.be/stops/103754", "https://data.delijn.be/stops/103756"], ["https://data.delijn.be/stops/101669", "https://data.delijn.be/stops/109862"], ["https://data.delijn.be/stops/407436", "https://data.delijn.be/stops/407457"], ["https://data.delijn.be/stops/308611", "https://data.delijn.be/stops/308616"], ["https://data.delijn.be/stops/303019", "https://data.delijn.be/stops/304228"], ["https://data.delijn.be/stops/306923", "https://data.delijn.be/stops/307278"], ["https://data.delijn.be/stops/401118", "https://data.delijn.be/stops/402830"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/107157"], ["https://data.delijn.be/stops/104495", "https://data.delijn.be/stops/104496"], ["https://data.delijn.be/stops/504657", "https://data.delijn.be/stops/505213"], ["https://data.delijn.be/stops/206769", "https://data.delijn.be/stops/209048"], ["https://data.delijn.be/stops/303771", "https://data.delijn.be/stops/303772"], ["https://data.delijn.be/stops/208306", "https://data.delijn.be/stops/208307"], ["https://data.delijn.be/stops/104489", "https://data.delijn.be/stops/104562"], ["https://data.delijn.be/stops/400914", "https://data.delijn.be/stops/400971"], ["https://data.delijn.be/stops/503922", "https://data.delijn.be/stops/508922"], ["https://data.delijn.be/stops/105681", "https://data.delijn.be/stops/105686"], ["https://data.delijn.be/stops/403501", "https://data.delijn.be/stops/410292"], ["https://data.delijn.be/stops/503804", "https://data.delijn.be/stops/505538"], ["https://data.delijn.be/stops/200726", "https://data.delijn.be/stops/202615"], ["https://data.delijn.be/stops/503660", "https://data.delijn.be/stops/508665"], ["https://data.delijn.be/stops/102978", "https://data.delijn.be/stops/105112"], ["https://data.delijn.be/stops/303336", "https://data.delijn.be/stops/305120"], ["https://data.delijn.be/stops/502376", "https://data.delijn.be/stops/507376"], ["https://data.delijn.be/stops/204381", "https://data.delijn.be/stops/204762"], ["https://data.delijn.be/stops/302439", "https://data.delijn.be/stops/302443"], ["https://data.delijn.be/stops/501772", "https://data.delijn.be/stops/506283"], ["https://data.delijn.be/stops/503421", "https://data.delijn.be/stops/509099"], ["https://data.delijn.be/stops/206158", "https://data.delijn.be/stops/207159"], ["https://data.delijn.be/stops/107315", "https://data.delijn.be/stops/108205"], ["https://data.delijn.be/stops/404443", "https://data.delijn.be/stops/406995"], ["https://data.delijn.be/stops/106030", "https://data.delijn.be/stops/106035"], ["https://data.delijn.be/stops/206631", "https://data.delijn.be/stops/207630"], ["https://data.delijn.be/stops/300261", "https://data.delijn.be/stops/304951"], ["https://data.delijn.be/stops/501503", "https://data.delijn.be/stops/506503"], ["https://data.delijn.be/stops/201923", "https://data.delijn.be/stops/201924"], ["https://data.delijn.be/stops/204460", "https://data.delijn.be/stops/204463"], ["https://data.delijn.be/stops/502402", "https://data.delijn.be/stops/502403"], ["https://data.delijn.be/stops/400714", "https://data.delijn.be/stops/409512"], ["https://data.delijn.be/stops/507687", "https://data.delijn.be/stops/508345"], ["https://data.delijn.be/stops/307835", "https://data.delijn.be/stops/307836"], ["https://data.delijn.be/stops/503095", "https://data.delijn.be/stops/503105"], ["https://data.delijn.be/stops/308273", "https://data.delijn.be/stops/308278"], ["https://data.delijn.be/stops/300398", "https://data.delijn.be/stops/304587"], ["https://data.delijn.be/stops/406368", "https://data.delijn.be/stops/410395"], ["https://data.delijn.be/stops/501593", "https://data.delijn.be/stops/509511"], ["https://data.delijn.be/stops/502240", "https://data.delijn.be/stops/502721"], ["https://data.delijn.be/stops/401111", "https://data.delijn.be/stops/401156"], ["https://data.delijn.be/stops/404868", "https://data.delijn.be/stops/404966"], ["https://data.delijn.be/stops/301240", "https://data.delijn.be/stops/305968"], ["https://data.delijn.be/stops/208006", "https://data.delijn.be/stops/208007"], ["https://data.delijn.be/stops/207029", "https://data.delijn.be/stops/207032"], ["https://data.delijn.be/stops/202440", "https://data.delijn.be/stops/203343"], ["https://data.delijn.be/stops/503919", "https://data.delijn.be/stops/508916"], ["https://data.delijn.be/stops/300453", "https://data.delijn.be/stops/308060"], ["https://data.delijn.be/stops/102162", "https://data.delijn.be/stops/103340"], ["https://data.delijn.be/stops/300375", "https://data.delijn.be/stops/300468"], ["https://data.delijn.be/stops/504172", "https://data.delijn.be/stops/504836"], ["https://data.delijn.be/stops/300843", "https://data.delijn.be/stops/306718"], ["https://data.delijn.be/stops/305846", "https://data.delijn.be/stops/306395"], ["https://data.delijn.be/stops/302881", "https://data.delijn.be/stops/303077"], ["https://data.delijn.be/stops/306116", "https://data.delijn.be/stops/306117"], ["https://data.delijn.be/stops/105498", "https://data.delijn.be/stops/105499"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/202623"], ["https://data.delijn.be/stops/203495", "https://data.delijn.be/stops/203496"], ["https://data.delijn.be/stops/105497", "https://data.delijn.be/stops/105504"], ["https://data.delijn.be/stops/300687", "https://data.delijn.be/stops/303498"], ["https://data.delijn.be/stops/203227", "https://data.delijn.be/stops/208857"], ["https://data.delijn.be/stops/104939", "https://data.delijn.be/stops/107849"], ["https://data.delijn.be/stops/502310", "https://data.delijn.be/stops/507302"], ["https://data.delijn.be/stops/202463", "https://data.delijn.be/stops/203464"], ["https://data.delijn.be/stops/402887", "https://data.delijn.be/stops/402942"], ["https://data.delijn.be/stops/202908", "https://data.delijn.be/stops/203818"], ["https://data.delijn.be/stops/102869", "https://data.delijn.be/stops/104975"], ["https://data.delijn.be/stops/106514", "https://data.delijn.be/stops/106518"], ["https://data.delijn.be/stops/508499", "https://data.delijn.be/stops/508685"], ["https://data.delijn.be/stops/208261", "https://data.delijn.be/stops/208262"], ["https://data.delijn.be/stops/503013", "https://data.delijn.be/stops/507736"], ["https://data.delijn.be/stops/204502", "https://data.delijn.be/stops/204503"], ["https://data.delijn.be/stops/503253", "https://data.delijn.be/stops/503265"], ["https://data.delijn.be/stops/204633", "https://data.delijn.be/stops/205632"], ["https://data.delijn.be/stops/305496", "https://data.delijn.be/stops/307813"], ["https://data.delijn.be/stops/403965", "https://data.delijn.be/stops/408709"], ["https://data.delijn.be/stops/102924", "https://data.delijn.be/stops/104803"], ["https://data.delijn.be/stops/205406", "https://data.delijn.be/stops/205407"], ["https://data.delijn.be/stops/502532", "https://data.delijn.be/stops/502533"], ["https://data.delijn.be/stops/201763", "https://data.delijn.be/stops/209272"], ["https://data.delijn.be/stops/400493", "https://data.delijn.be/stops/407754"], ["https://data.delijn.be/stops/204724", "https://data.delijn.be/stops/204761"], ["https://data.delijn.be/stops/104733", "https://data.delijn.be/stops/204258"], ["https://data.delijn.be/stops/200631", "https://data.delijn.be/stops/201632"], ["https://data.delijn.be/stops/305712", "https://data.delijn.be/stops/305715"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/106449"], ["https://data.delijn.be/stops/105103", "https://data.delijn.be/stops/109504"], ["https://data.delijn.be/stops/106743", "https://data.delijn.be/stops/106745"], ["https://data.delijn.be/stops/200693", "https://data.delijn.be/stops/201720"], ["https://data.delijn.be/stops/303009", "https://data.delijn.be/stops/303010"], ["https://data.delijn.be/stops/501225", "https://data.delijn.be/stops/506225"], ["https://data.delijn.be/stops/200342", "https://data.delijn.be/stops/201342"], ["https://data.delijn.be/stops/109724", "https://data.delijn.be/stops/109728"], ["https://data.delijn.be/stops/400102", "https://data.delijn.be/stops/409130"], ["https://data.delijn.be/stops/209481", "https://data.delijn.be/stops/209482"], ["https://data.delijn.be/stops/504269", "https://data.delijn.be/stops/504690"], ["https://data.delijn.be/stops/505116", "https://data.delijn.be/stops/505434"], ["https://data.delijn.be/stops/300564", "https://data.delijn.be/stops/300589"], ["https://data.delijn.be/stops/108927", "https://data.delijn.be/stops/109137"], ["https://data.delijn.be/stops/406829", "https://data.delijn.be/stops/409458"], ["https://data.delijn.be/stops/404456", "https://data.delijn.be/stops/404476"], ["https://data.delijn.be/stops/503693", "https://data.delijn.be/stops/504871"], ["https://data.delijn.be/stops/305334", "https://data.delijn.be/stops/307605"], ["https://data.delijn.be/stops/300363", "https://data.delijn.be/stops/300402"], ["https://data.delijn.be/stops/102021", "https://data.delijn.be/stops/104092"], ["https://data.delijn.be/stops/502470", "https://data.delijn.be/stops/507470"], ["https://data.delijn.be/stops/408224", "https://data.delijn.be/stops/408914"], ["https://data.delijn.be/stops/406121", "https://data.delijn.be/stops/406125"], ["https://data.delijn.be/stops/200021", "https://data.delijn.be/stops/200022"], ["https://data.delijn.be/stops/400204", "https://data.delijn.be/stops/400214"], ["https://data.delijn.be/stops/210045", "https://data.delijn.be/stops/211106"], ["https://data.delijn.be/stops/202518", "https://data.delijn.be/stops/203519"], ["https://data.delijn.be/stops/206388", "https://data.delijn.be/stops/207967"], ["https://data.delijn.be/stops/504213", "https://data.delijn.be/stops/504221"], ["https://data.delijn.be/stops/209558", "https://data.delijn.be/stops/209612"], ["https://data.delijn.be/stops/205982", "https://data.delijn.be/stops/208402"], ["https://data.delijn.be/stops/504031", "https://data.delijn.be/stops/505113"], ["https://data.delijn.be/stops/206242", "https://data.delijn.be/stops/207404"], ["https://data.delijn.be/stops/400843", "https://data.delijn.be/stops/409565"], ["https://data.delijn.be/stops/507927", "https://data.delijn.be/stops/509758"], ["https://data.delijn.be/stops/300322", "https://data.delijn.be/stops/300323"], ["https://data.delijn.be/stops/206521", "https://data.delijn.be/stops/207520"], ["https://data.delijn.be/stops/405093", "https://data.delijn.be/stops/405109"], ["https://data.delijn.be/stops/106285", "https://data.delijn.be/stops/106348"], ["https://data.delijn.be/stops/200764", "https://data.delijn.be/stops/208301"], ["https://data.delijn.be/stops/301371", "https://data.delijn.be/stops/304695"], ["https://data.delijn.be/stops/401272", "https://data.delijn.be/stops/401273"], ["https://data.delijn.be/stops/400799", "https://data.delijn.be/stops/409602"], ["https://data.delijn.be/stops/302786", "https://data.delijn.be/stops/302787"], ["https://data.delijn.be/stops/402506", "https://data.delijn.be/stops/402622"], ["https://data.delijn.be/stops/104540", "https://data.delijn.be/stops/108280"], ["https://data.delijn.be/stops/101171", "https://data.delijn.be/stops/104855"], ["https://data.delijn.be/stops/503206", "https://data.delijn.be/stops/508813"], ["https://data.delijn.be/stops/406338", "https://data.delijn.be/stops/406365"], ["https://data.delijn.be/stops/303988", "https://data.delijn.be/stops/306294"], ["https://data.delijn.be/stops/101388", "https://data.delijn.be/stops/103136"], ["https://data.delijn.be/stops/208220", "https://data.delijn.be/stops/209220"], ["https://data.delijn.be/stops/109129", "https://data.delijn.be/stops/109131"], ["https://data.delijn.be/stops/503947", "https://data.delijn.be/stops/504796"], ["https://data.delijn.be/stops/201359", "https://data.delijn.be/stops/211095"], ["https://data.delijn.be/stops/106895", "https://data.delijn.be/stops/107224"], ["https://data.delijn.be/stops/305593", "https://data.delijn.be/stops/308815"], ["https://data.delijn.be/stops/207204", "https://data.delijn.be/stops/207206"], ["https://data.delijn.be/stops/302633", "https://data.delijn.be/stops/307100"], ["https://data.delijn.be/stops/304145", "https://data.delijn.be/stops/304171"], ["https://data.delijn.be/stops/304261", "https://data.delijn.be/stops/304285"], ["https://data.delijn.be/stops/509625", "https://data.delijn.be/stops/509627"], ["https://data.delijn.be/stops/103980", "https://data.delijn.be/stops/106065"], ["https://data.delijn.be/stops/503588", "https://data.delijn.be/stops/504892"], ["https://data.delijn.be/stops/102186", "https://data.delijn.be/stops/109748"], ["https://data.delijn.be/stops/302254", "https://data.delijn.be/stops/304842"], ["https://data.delijn.be/stops/404906", "https://data.delijn.be/stops/404907"], ["https://data.delijn.be/stops/207764", "https://data.delijn.be/stops/207787"], ["https://data.delijn.be/stops/403062", "https://data.delijn.be/stops/405122"], ["https://data.delijn.be/stops/204804", "https://data.delijn.be/stops/209291"], ["https://data.delijn.be/stops/505671", "https://data.delijn.be/stops/507268"], ["https://data.delijn.be/stops/203576", "https://data.delijn.be/stops/211851"], ["https://data.delijn.be/stops/103156", "https://data.delijn.be/stops/103157"], ["https://data.delijn.be/stops/408618", "https://data.delijn.be/stops/408691"], ["https://data.delijn.be/stops/204200", "https://data.delijn.be/stops/205200"], ["https://data.delijn.be/stops/306293", "https://data.delijn.be/stops/306294"], ["https://data.delijn.be/stops/408733", "https://data.delijn.be/stops/408780"], ["https://data.delijn.be/stops/407130", "https://data.delijn.be/stops/407131"], ["https://data.delijn.be/stops/107465", "https://data.delijn.be/stops/109382"], ["https://data.delijn.be/stops/200643", "https://data.delijn.be/stops/201643"], ["https://data.delijn.be/stops/300896", "https://data.delijn.be/stops/300939"], ["https://data.delijn.be/stops/202820", "https://data.delijn.be/stops/202821"], ["https://data.delijn.be/stops/301498", "https://data.delijn.be/stops/307930"], ["https://data.delijn.be/stops/103185", "https://data.delijn.be/stops/103255"], ["https://data.delijn.be/stops/200904", "https://data.delijn.be/stops/201957"], ["https://data.delijn.be/stops/410047", "https://data.delijn.be/stops/410048"], ["https://data.delijn.be/stops/508664", "https://data.delijn.be/stops/508669"], ["https://data.delijn.be/stops/301528", "https://data.delijn.be/stops/301580"], ["https://data.delijn.be/stops/203854", "https://data.delijn.be/stops/203855"], ["https://data.delijn.be/stops/507204", "https://data.delijn.be/stops/508692"], ["https://data.delijn.be/stops/107978", "https://data.delijn.be/stops/107981"], ["https://data.delijn.be/stops/304756", "https://data.delijn.be/stops/307514"], ["https://data.delijn.be/stops/504398", "https://data.delijn.be/stops/509435"], ["https://data.delijn.be/stops/202109", "https://data.delijn.be/stops/203119"], ["https://data.delijn.be/stops/502497", "https://data.delijn.be/stops/505323"], ["https://data.delijn.be/stops/204447", "https://data.delijn.be/stops/204613"], ["https://data.delijn.be/stops/501673", "https://data.delijn.be/stops/506487"], ["https://data.delijn.be/stops/307309", "https://data.delijn.be/stops/307313"], ["https://data.delijn.be/stops/306650", "https://data.delijn.be/stops/306653"], ["https://data.delijn.be/stops/208105", "https://data.delijn.be/stops/209105"], ["https://data.delijn.be/stops/301898", "https://data.delijn.be/stops/306956"], ["https://data.delijn.be/stops/202849", "https://data.delijn.be/stops/202907"], ["https://data.delijn.be/stops/504022", "https://data.delijn.be/stops/509022"], ["https://data.delijn.be/stops/502598", "https://data.delijn.be/stops/507598"], ["https://data.delijn.be/stops/202344", "https://data.delijn.be/stops/207551"], ["https://data.delijn.be/stops/208461", "https://data.delijn.be/stops/209462"], ["https://data.delijn.be/stops/200173", "https://data.delijn.be/stops/201277"], ["https://data.delijn.be/stops/301059", "https://data.delijn.be/stops/308854"], ["https://data.delijn.be/stops/404852", "https://data.delijn.be/stops/404853"], ["https://data.delijn.be/stops/200924", "https://data.delijn.be/stops/203703"], ["https://data.delijn.be/stops/201415", "https://data.delijn.be/stops/208888"], ["https://data.delijn.be/stops/504441", "https://data.delijn.be/stops/505299"], ["https://data.delijn.be/stops/104133", "https://data.delijn.be/stops/108037"], ["https://data.delijn.be/stops/105891", "https://data.delijn.be/stops/105908"], ["https://data.delijn.be/stops/201663", "https://data.delijn.be/stops/202320"], ["https://data.delijn.be/stops/200630", "https://data.delijn.be/stops/200631"], ["https://data.delijn.be/stops/308777", "https://data.delijn.be/stops/308779"], ["https://data.delijn.be/stops/200167", "https://data.delijn.be/stops/203619"], ["https://data.delijn.be/stops/208804", "https://data.delijn.be/stops/208806"], ["https://data.delijn.be/stops/206680", "https://data.delijn.be/stops/208491"], ["https://data.delijn.be/stops/505156", "https://data.delijn.be/stops/505329"], ["https://data.delijn.be/stops/102505", "https://data.delijn.be/stops/104940"], ["https://data.delijn.be/stops/206766", "https://data.delijn.be/stops/206947"], ["https://data.delijn.be/stops/300750", "https://data.delijn.be/stops/300791"], ["https://data.delijn.be/stops/402263", "https://data.delijn.be/stops/402299"], ["https://data.delijn.be/stops/501270", "https://data.delijn.be/stops/506270"], ["https://data.delijn.be/stops/210089", "https://data.delijn.be/stops/211044"], ["https://data.delijn.be/stops/305716", "https://data.delijn.be/stops/306304"], ["https://data.delijn.be/stops/304364", "https://data.delijn.be/stops/307371"], ["https://data.delijn.be/stops/301773", "https://data.delijn.be/stops/301774"], ["https://data.delijn.be/stops/101912", "https://data.delijn.be/stops/101913"], ["https://data.delijn.be/stops/303058", "https://data.delijn.be/stops/303680"], ["https://data.delijn.be/stops/300721", "https://data.delijn.be/stops/308935"], ["https://data.delijn.be/stops/407400", "https://data.delijn.be/stops/407498"], ["https://data.delijn.be/stops/202408", "https://data.delijn.be/stops/211032"], ["https://data.delijn.be/stops/207679", "https://data.delijn.be/stops/209150"], ["https://data.delijn.be/stops/402956", "https://data.delijn.be/stops/404062"], ["https://data.delijn.be/stops/303193", "https://data.delijn.be/stops/303203"], ["https://data.delijn.be/stops/307831", "https://data.delijn.be/stops/308525"], ["https://data.delijn.be/stops/105475", "https://data.delijn.be/stops/109934"], ["https://data.delijn.be/stops/505626", "https://data.delijn.be/stops/507497"], ["https://data.delijn.be/stops/208748", "https://data.delijn.be/stops/208750"], ["https://data.delijn.be/stops/206776", "https://data.delijn.be/stops/209486"], ["https://data.delijn.be/stops/106263", "https://data.delijn.be/stops/106264"], ["https://data.delijn.be/stops/501476", "https://data.delijn.be/stops/506048"], ["https://data.delijn.be/stops/207803", "https://data.delijn.be/stops/300218"], ["https://data.delijn.be/stops/403967", "https://data.delijn.be/stops/405978"], ["https://data.delijn.be/stops/401112", "https://data.delijn.be/stops/401158"], ["https://data.delijn.be/stops/505089", "https://data.delijn.be/stops/507341"], ["https://data.delijn.be/stops/104407", "https://data.delijn.be/stops/104627"], ["https://data.delijn.be/stops/201976", "https://data.delijn.be/stops/206582"], ["https://data.delijn.be/stops/300630", "https://data.delijn.be/stops/307862"], ["https://data.delijn.be/stops/500115", "https://data.delijn.be/stops/505023"], ["https://data.delijn.be/stops/401201", "https://data.delijn.be/stops/401298"], ["https://data.delijn.be/stops/201234", "https://data.delijn.be/stops/203353"], ["https://data.delijn.be/stops/501109", "https://data.delijn.be/stops/506103"], ["https://data.delijn.be/stops/402694", "https://data.delijn.be/stops/405536"], ["https://data.delijn.be/stops/109255", "https://data.delijn.be/stops/109256"], ["https://data.delijn.be/stops/106604", "https://data.delijn.be/stops/106685"], ["https://data.delijn.be/stops/501161", "https://data.delijn.be/stops/501166"], ["https://data.delijn.be/stops/102478", "https://data.delijn.be/stops/405297"], ["https://data.delijn.be/stops/201123", "https://data.delijn.be/stops/201124"], ["https://data.delijn.be/stops/302662", "https://data.delijn.be/stops/302695"], ["https://data.delijn.be/stops/302720", "https://data.delijn.be/stops/308596"], ["https://data.delijn.be/stops/502438", "https://data.delijn.be/stops/502749"], ["https://data.delijn.be/stops/208132", "https://data.delijn.be/stops/208198"], ["https://data.delijn.be/stops/300897", "https://data.delijn.be/stops/305889"], ["https://data.delijn.be/stops/505749", "https://data.delijn.be/stops/507706"], ["https://data.delijn.be/stops/103068", "https://data.delijn.be/stops/105761"], ["https://data.delijn.be/stops/406320", "https://data.delijn.be/stops/406321"], ["https://data.delijn.be/stops/206604", "https://data.delijn.be/stops/206703"], ["https://data.delijn.be/stops/206367", "https://data.delijn.be/stops/207367"], ["https://data.delijn.be/stops/106906", "https://data.delijn.be/stops/106908"], ["https://data.delijn.be/stops/204445", "https://data.delijn.be/stops/204671"], ["https://data.delijn.be/stops/109445", "https://data.delijn.be/stops/109446"], ["https://data.delijn.be/stops/104700", "https://data.delijn.be/stops/104724"], ["https://data.delijn.be/stops/403147", "https://data.delijn.be/stops/403831"], ["https://data.delijn.be/stops/206906", "https://data.delijn.be/stops/206907"], ["https://data.delijn.be/stops/103620", "https://data.delijn.be/stops/103930"], ["https://data.delijn.be/stops/206613", "https://data.delijn.be/stops/207613"], ["https://data.delijn.be/stops/404100", "https://data.delijn.be/stops/404208"], ["https://data.delijn.be/stops/106623", "https://data.delijn.be/stops/106624"], ["https://data.delijn.be/stops/305126", "https://data.delijn.be/stops/308122"], ["https://data.delijn.be/stops/504230", "https://data.delijn.be/stops/504241"], ["https://data.delijn.be/stops/400621", "https://data.delijn.be/stops/401997"], ["https://data.delijn.be/stops/503346", "https://data.delijn.be/stops/507817"], ["https://data.delijn.be/stops/103244", "https://data.delijn.be/stops/108124"], ["https://data.delijn.be/stops/305333", "https://data.delijn.be/stops/307302"], ["https://data.delijn.be/stops/502815", "https://data.delijn.be/stops/507280"], ["https://data.delijn.be/stops/105577", "https://data.delijn.be/stops/106356"], ["https://data.delijn.be/stops/401408", "https://data.delijn.be/stops/301085"], ["https://data.delijn.be/stops/505692", "https://data.delijn.be/stops/507564"], ["https://data.delijn.be/stops/303207", "https://data.delijn.be/stops/303213"], ["https://data.delijn.be/stops/102030", "https://data.delijn.be/stops/104111"], ["https://data.delijn.be/stops/205156", "https://data.delijn.be/stops/205582"], ["https://data.delijn.be/stops/504150", "https://data.delijn.be/stops/509159"], ["https://data.delijn.be/stops/109914", "https://data.delijn.be/stops/301152"], ["https://data.delijn.be/stops/505354", "https://data.delijn.be/stops/509368"], ["https://data.delijn.be/stops/208381", "https://data.delijn.be/stops/209381"], ["https://data.delijn.be/stops/108653", "https://data.delijn.be/stops/108654"], ["https://data.delijn.be/stops/301758", "https://data.delijn.be/stops/301759"], ["https://data.delijn.be/stops/106103", "https://data.delijn.be/stops/106122"], ["https://data.delijn.be/stops/303724", "https://data.delijn.be/stops/303725"], ["https://data.delijn.be/stops/509533", "https://data.delijn.be/stops/509534"], ["https://data.delijn.be/stops/200261", "https://data.delijn.be/stops/201261"], ["https://data.delijn.be/stops/404127", "https://data.delijn.be/stops/404204"], ["https://data.delijn.be/stops/204727", "https://data.delijn.be/stops/205523"], ["https://data.delijn.be/stops/105216", "https://data.delijn.be/stops/109396"], ["https://data.delijn.be/stops/403921", "https://data.delijn.be/stops/403996"], ["https://data.delijn.be/stops/105508", "https://data.delijn.be/stops/105788"], ["https://data.delijn.be/stops/102077", "https://data.delijn.be/stops/105996"], ["https://data.delijn.be/stops/405990", "https://data.delijn.be/stops/405991"], ["https://data.delijn.be/stops/503200", "https://data.delijn.be/stops/508200"], ["https://data.delijn.be/stops/109772", "https://data.delijn.be/stops/109773"], ["https://data.delijn.be/stops/408094", "https://data.delijn.be/stops/409113"], ["https://data.delijn.be/stops/403246", "https://data.delijn.be/stops/403383"], ["https://data.delijn.be/stops/306194", "https://data.delijn.be/stops/307854"], ["https://data.delijn.be/stops/107396", "https://data.delijn.be/stops/107406"], ["https://data.delijn.be/stops/400766", "https://data.delijn.be/stops/400767"], ["https://data.delijn.be/stops/306706", "https://data.delijn.be/stops/306708"], ["https://data.delijn.be/stops/104036", "https://data.delijn.be/stops/108828"], ["https://data.delijn.be/stops/207333", "https://data.delijn.be/stops/207364"], ["https://data.delijn.be/stops/503879", "https://data.delijn.be/stops/508880"], ["https://data.delijn.be/stops/105033", "https://data.delijn.be/stops/105048"], ["https://data.delijn.be/stops/400652", "https://data.delijn.be/stops/406767"], ["https://data.delijn.be/stops/301419", "https://data.delijn.be/stops/301420"], ["https://data.delijn.be/stops/503921", "https://data.delijn.be/stops/508920"], ["https://data.delijn.be/stops/503867", "https://data.delijn.be/stops/508503"], ["https://data.delijn.be/stops/301691", "https://data.delijn.be/stops/301692"], ["https://data.delijn.be/stops/505213", "https://data.delijn.be/stops/509527"], ["https://data.delijn.be/stops/406520", "https://data.delijn.be/stops/407434"], ["https://data.delijn.be/stops/206507", "https://data.delijn.be/stops/207506"], ["https://data.delijn.be/stops/503461", "https://data.delijn.be/stops/503466"], ["https://data.delijn.be/stops/206106", "https://data.delijn.be/stops/206911"], ["https://data.delijn.be/stops/102723", "https://data.delijn.be/stops/103310"], ["https://data.delijn.be/stops/101593", "https://data.delijn.be/stops/101690"], ["https://data.delijn.be/stops/505515", "https://data.delijn.be/stops/505614"], ["https://data.delijn.be/stops/407169", "https://data.delijn.be/stops/407171"], ["https://data.delijn.be/stops/505046", "https://data.delijn.be/stops/506597"], ["https://data.delijn.be/stops/208308", "https://data.delijn.be/stops/505973"], ["https://data.delijn.be/stops/504000", "https://data.delijn.be/stops/504318"], ["https://data.delijn.be/stops/404662", "https://data.delijn.be/stops/404664"], ["https://data.delijn.be/stops/503222", "https://data.delijn.be/stops/508222"], ["https://data.delijn.be/stops/101809", "https://data.delijn.be/stops/109586"], ["https://data.delijn.be/stops/306063", "https://data.delijn.be/stops/306064"], ["https://data.delijn.be/stops/300772", "https://data.delijn.be/stops/302405"], ["https://data.delijn.be/stops/106920", "https://data.delijn.be/stops/107287"], ["https://data.delijn.be/stops/201064", "https://data.delijn.be/stops/201083"], ["https://data.delijn.be/stops/403209", "https://data.delijn.be/stops/405127"], ["https://data.delijn.be/stops/303011", "https://data.delijn.be/stops/303012"], ["https://data.delijn.be/stops/301228", "https://data.delijn.be/stops/304269"], ["https://data.delijn.be/stops/301280", "https://data.delijn.be/stops/301311"], ["https://data.delijn.be/stops/208122", "https://data.delijn.be/stops/208239"], ["https://data.delijn.be/stops/300839", "https://data.delijn.be/stops/300841"], ["https://data.delijn.be/stops/509623", "https://data.delijn.be/stops/509628"], ["https://data.delijn.be/stops/504325", "https://data.delijn.be/stops/504335"], ["https://data.delijn.be/stops/508682", "https://data.delijn.be/stops/508687"], ["https://data.delijn.be/stops/304158", "https://data.delijn.be/stops/304498"], ["https://data.delijn.be/stops/501286", "https://data.delijn.be/stops/506289"], ["https://data.delijn.be/stops/102718", "https://data.delijn.be/stops/107152"], ["https://data.delijn.be/stops/206410", "https://data.delijn.be/stops/207410"], ["https://data.delijn.be/stops/406016", "https://data.delijn.be/stops/406135"], ["https://data.delijn.be/stops/503858", "https://data.delijn.be/stops/503859"], ["https://data.delijn.be/stops/200126", "https://data.delijn.be/stops/201945"], ["https://data.delijn.be/stops/501231", "https://data.delijn.be/stops/506231"], ["https://data.delijn.be/stops/500603", "https://data.delijn.be/stops/505398"], ["https://data.delijn.be/stops/403803", "https://data.delijn.be/stops/406302"], ["https://data.delijn.be/stops/502261", "https://data.delijn.be/stops/507261"], ["https://data.delijn.be/stops/400563", "https://data.delijn.be/stops/403062"], ["https://data.delijn.be/stops/202079", "https://data.delijn.be/stops/204079"], ["https://data.delijn.be/stops/404356", "https://data.delijn.be/stops/404358"], ["https://data.delijn.be/stops/202905", "https://data.delijn.be/stops/203905"], ["https://data.delijn.be/stops/409379", "https://data.delijn.be/stops/409390"], ["https://data.delijn.be/stops/105993", "https://data.delijn.be/stops/107958"], ["https://data.delijn.be/stops/207067", "https://data.delijn.be/stops/207074"], ["https://data.delijn.be/stops/304059", "https://data.delijn.be/stops/307504"], ["https://data.delijn.be/stops/502657", "https://data.delijn.be/stops/507657"], ["https://data.delijn.be/stops/106133", "https://data.delijn.be/stops/109560"], ["https://data.delijn.be/stops/501383", "https://data.delijn.be/stops/506191"], ["https://data.delijn.be/stops/403096", "https://data.delijn.be/stops/403512"], ["https://data.delijn.be/stops/305209", "https://data.delijn.be/stops/305210"], ["https://data.delijn.be/stops/404550", "https://data.delijn.be/stops/404551"], ["https://data.delijn.be/stops/200717", "https://data.delijn.be/stops/210050"], ["https://data.delijn.be/stops/204734", "https://data.delijn.be/stops/205757"], ["https://data.delijn.be/stops/204390", "https://data.delijn.be/stops/204401"], ["https://data.delijn.be/stops/303857", "https://data.delijn.be/stops/303858"], ["https://data.delijn.be/stops/403051", "https://data.delijn.be/stops/404979"], ["https://data.delijn.be/stops/308144", "https://data.delijn.be/stops/308177"], ["https://data.delijn.be/stops/102979", "https://data.delijn.be/stops/106832"], ["https://data.delijn.be/stops/208043", "https://data.delijn.be/stops/208220"], ["https://data.delijn.be/stops/302050", "https://data.delijn.be/stops/302251"], ["https://data.delijn.be/stops/305027", "https://data.delijn.be/stops/305030"], ["https://data.delijn.be/stops/400592", "https://data.delijn.be/stops/405992"], ["https://data.delijn.be/stops/400491", "https://data.delijn.be/stops/407754"], ["https://data.delijn.be/stops/404961", "https://data.delijn.be/stops/404964"], ["https://data.delijn.be/stops/503913", "https://data.delijn.be/stops/508934"], ["https://data.delijn.be/stops/106120", "https://data.delijn.be/stops/106121"], ["https://data.delijn.be/stops/302878", "https://data.delijn.be/stops/303594"], ["https://data.delijn.be/stops/301328", "https://data.delijn.be/stops/305919"], ["https://data.delijn.be/stops/301607", "https://data.delijn.be/stops/301619"], ["https://data.delijn.be/stops/304024", "https://data.delijn.be/stops/304036"], ["https://data.delijn.be/stops/303627", "https://data.delijn.be/stops/307676"], ["https://data.delijn.be/stops/300264", "https://data.delijn.be/stops/303817"], ["https://data.delijn.be/stops/104962", "https://data.delijn.be/stops/107429"], ["https://data.delijn.be/stops/201897", "https://data.delijn.be/stops/202146"], ["https://data.delijn.be/stops/108367", "https://data.delijn.be/stops/108456"], ["https://data.delijn.be/stops/406604", "https://data.delijn.be/stops/406643"], ["https://data.delijn.be/stops/300224", "https://data.delijn.be/stops/300225"], ["https://data.delijn.be/stops/302691", "https://data.delijn.be/stops/302699"], ["https://data.delijn.be/stops/402194", "https://data.delijn.be/stops/402355"], ["https://data.delijn.be/stops/206560", "https://data.delijn.be/stops/207539"], ["https://data.delijn.be/stops/206704", "https://data.delijn.be/stops/206732"], ["https://data.delijn.be/stops/307728", "https://data.delijn.be/stops/307736"], ["https://data.delijn.be/stops/402716", "https://data.delijn.be/stops/402717"], ["https://data.delijn.be/stops/402235", "https://data.delijn.be/stops/402237"], ["https://data.delijn.be/stops/304939", "https://data.delijn.be/stops/304948"], ["https://data.delijn.be/stops/505691", "https://data.delijn.be/stops/505748"], ["https://data.delijn.be/stops/403218", "https://data.delijn.be/stops/403389"], ["https://data.delijn.be/stops/405809", "https://data.delijn.be/stops/409696"], ["https://data.delijn.be/stops/200927", "https://data.delijn.be/stops/200950"], ["https://data.delijn.be/stops/400184", "https://data.delijn.be/stops/407671"], ["https://data.delijn.be/stops/403497", "https://data.delijn.be/stops/410029"], ["https://data.delijn.be/stops/107163", "https://data.delijn.be/stops/107561"], ["https://data.delijn.be/stops/104646", "https://data.delijn.be/stops/108048"], ["https://data.delijn.be/stops/408820", "https://data.delijn.be/stops/408831"], ["https://data.delijn.be/stops/102209", "https://data.delijn.be/stops/106242"], ["https://data.delijn.be/stops/106697", "https://data.delijn.be/stops/106698"], ["https://data.delijn.be/stops/406651", "https://data.delijn.be/stops/407168"], ["https://data.delijn.be/stops/308475", "https://data.delijn.be/stops/308476"], ["https://data.delijn.be/stops/208048", "https://data.delijn.be/stops/209489"], ["https://data.delijn.be/stops/208403", "https://data.delijn.be/stops/209364"], ["https://data.delijn.be/stops/107183", "https://data.delijn.be/stops/107188"], ["https://data.delijn.be/stops/403942", "https://data.delijn.be/stops/403986"], ["https://data.delijn.be/stops/308377", "https://data.delijn.be/stops/308410"], ["https://data.delijn.be/stops/405964", "https://data.delijn.be/stops/405972"], ["https://data.delijn.be/stops/206691", "https://data.delijn.be/stops/207691"], ["https://data.delijn.be/stops/206915", "https://data.delijn.be/stops/207859"], ["https://data.delijn.be/stops/505935", "https://data.delijn.be/stops/508968"], ["https://data.delijn.be/stops/403576", "https://data.delijn.be/stops/405667"], ["https://data.delijn.be/stops/501080", "https://data.delijn.be/stops/506084"], ["https://data.delijn.be/stops/301647", "https://data.delijn.be/stops/303662"], ["https://data.delijn.be/stops/403900", "https://data.delijn.be/stops/403942"], ["https://data.delijn.be/stops/107173", "https://data.delijn.be/stops/107733"], ["https://data.delijn.be/stops/200223", "https://data.delijn.be/stops/200224"], ["https://data.delijn.be/stops/405666", "https://data.delijn.be/stops/409621"], ["https://data.delijn.be/stops/105769", "https://data.delijn.be/stops/105771"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/504561"], ["https://data.delijn.be/stops/504482", "https://data.delijn.be/stops/509482"], ["https://data.delijn.be/stops/106787", "https://data.delijn.be/stops/106876"], ["https://data.delijn.be/stops/402190", "https://data.delijn.be/stops/402492"], ["https://data.delijn.be/stops/505242", "https://data.delijn.be/stops/507237"], ["https://data.delijn.be/stops/303070", "https://data.delijn.be/stops/303082"], ["https://data.delijn.be/stops/308612", "https://data.delijn.be/stops/308632"], ["https://data.delijn.be/stops/300817", "https://data.delijn.be/stops/300852"], ["https://data.delijn.be/stops/405445", "https://data.delijn.be/stops/408704"], ["https://data.delijn.be/stops/407581", "https://data.delijn.be/stops/407582"], ["https://data.delijn.be/stops/402196", "https://data.delijn.be/stops/402423"], ["https://data.delijn.be/stops/407275", "https://data.delijn.be/stops/407285"], ["https://data.delijn.be/stops/109739", "https://data.delijn.be/stops/109951"], ["https://data.delijn.be/stops/308430", "https://data.delijn.be/stops/308431"], ["https://data.delijn.be/stops/208472", "https://data.delijn.be/stops/209472"], ["https://data.delijn.be/stops/302184", "https://data.delijn.be/stops/302206"], ["https://data.delijn.be/stops/101919", "https://data.delijn.be/stops/107322"], ["https://data.delijn.be/stops/408215", "https://data.delijn.be/stops/408225"], ["https://data.delijn.be/stops/407801", "https://data.delijn.be/stops/407808"], ["https://data.delijn.be/stops/107362", "https://data.delijn.be/stops/107363"], ["https://data.delijn.be/stops/403588", "https://data.delijn.be/stops/404260"], ["https://data.delijn.be/stops/201745", "https://data.delijn.be/stops/209644"], ["https://data.delijn.be/stops/301365", "https://data.delijn.be/stops/304811"], ["https://data.delijn.be/stops/408887", "https://data.delijn.be/stops/408918"], ["https://data.delijn.be/stops/403833", "https://data.delijn.be/stops/410116"], ["https://data.delijn.be/stops/409439", "https://data.delijn.be/stops/409440"], ["https://data.delijn.be/stops/403963", "https://data.delijn.be/stops/408709"], ["https://data.delijn.be/stops/105804", "https://data.delijn.be/stops/107413"], ["https://data.delijn.be/stops/400553", "https://data.delijn.be/stops/403638"], ["https://data.delijn.be/stops/402626", "https://data.delijn.be/stops/405581"], ["https://data.delijn.be/stops/107802", "https://data.delijn.be/stops/107803"], ["https://data.delijn.be/stops/208416", "https://data.delijn.be/stops/209415"], ["https://data.delijn.be/stops/102090", "https://data.delijn.be/stops/105680"], ["https://data.delijn.be/stops/301640", "https://data.delijn.be/stops/301641"], ["https://data.delijn.be/stops/402520", "https://data.delijn.be/stops/402523"], ["https://data.delijn.be/stops/300976", "https://data.delijn.be/stops/300983"], ["https://data.delijn.be/stops/304031", "https://data.delijn.be/stops/304112"], ["https://data.delijn.be/stops/202242", "https://data.delijn.be/stops/203189"], ["https://data.delijn.be/stops/407519", "https://data.delijn.be/stops/408275"], ["https://data.delijn.be/stops/305637", "https://data.delijn.be/stops/308600"], ["https://data.delijn.be/stops/301403", "https://data.delijn.be/stops/307682"], ["https://data.delijn.be/stops/109287", "https://data.delijn.be/stops/109288"], ["https://data.delijn.be/stops/409051", "https://data.delijn.be/stops/409093"], ["https://data.delijn.be/stops/103932", "https://data.delijn.be/stops/106599"], ["https://data.delijn.be/stops/508572", "https://data.delijn.be/stops/508722"], ["https://data.delijn.be/stops/101188", "https://data.delijn.be/stops/101655"], ["https://data.delijn.be/stops/503579", "https://data.delijn.be/stops/508566"], ["https://data.delijn.be/stops/501493", "https://data.delijn.be/stops/506493"], ["https://data.delijn.be/stops/504798", "https://data.delijn.be/stops/507717"], ["https://data.delijn.be/stops/404511", "https://data.delijn.be/stops/406977"], ["https://data.delijn.be/stops/403386", "https://data.delijn.be/stops/403387"], ["https://data.delijn.be/stops/500566", "https://data.delijn.be/stops/506029"], ["https://data.delijn.be/stops/208327", "https://data.delijn.be/stops/209326"], ["https://data.delijn.be/stops/202121", "https://data.delijn.be/stops/204598"], ["https://data.delijn.be/stops/401710", "https://data.delijn.be/stops/401723"], ["https://data.delijn.be/stops/102169", "https://data.delijn.be/stops/107127"], ["https://data.delijn.be/stops/404592", "https://data.delijn.be/stops/404996"], ["https://data.delijn.be/stops/202509", "https://data.delijn.be/stops/203509"], ["https://data.delijn.be/stops/102885", "https://data.delijn.be/stops/106090"], ["https://data.delijn.be/stops/206840", "https://data.delijn.be/stops/206919"], ["https://data.delijn.be/stops/501015", "https://data.delijn.be/stops/506614"], ["https://data.delijn.be/stops/200524", "https://data.delijn.be/stops/200525"], ["https://data.delijn.be/stops/301898", "https://data.delijn.be/stops/305084"], ["https://data.delijn.be/stops/209566", "https://data.delijn.be/stops/209611"], ["https://data.delijn.be/stops/206654", "https://data.delijn.be/stops/206715"], ["https://data.delijn.be/stops/202530", "https://data.delijn.be/stops/202531"], ["https://data.delijn.be/stops/200546", "https://data.delijn.be/stops/211060"], ["https://data.delijn.be/stops/305077", "https://data.delijn.be/stops/308927"], ["https://data.delijn.be/stops/305413", "https://data.delijn.be/stops/305461"], ["https://data.delijn.be/stops/404647", "https://data.delijn.be/stops/406933"], ["https://data.delijn.be/stops/204210", "https://data.delijn.be/stops/205237"], ["https://data.delijn.be/stops/506677", "https://data.delijn.be/stops/506780"], ["https://data.delijn.be/stops/506284", "https://data.delijn.be/stops/506491"], ["https://data.delijn.be/stops/306869", "https://data.delijn.be/stops/306873"], ["https://data.delijn.be/stops/208617", "https://data.delijn.be/stops/209617"], ["https://data.delijn.be/stops/404324", "https://data.delijn.be/stops/404370"], ["https://data.delijn.be/stops/206178", "https://data.delijn.be/stops/207178"], ["https://data.delijn.be/stops/401107", "https://data.delijn.be/stops/401115"], ["https://data.delijn.be/stops/103569", "https://data.delijn.be/stops/107139"], ["https://data.delijn.be/stops/304452", "https://data.delijn.be/stops/307649"], ["https://data.delijn.be/stops/208462", "https://data.delijn.be/stops/209683"], ["https://data.delijn.be/stops/404310", "https://data.delijn.be/stops/404311"], ["https://data.delijn.be/stops/504049", "https://data.delijn.be/stops/509043"], ["https://data.delijn.be/stops/305074", "https://data.delijn.be/stops/305091"], ["https://data.delijn.be/stops/202143", "https://data.delijn.be/stops/202144"], ["https://data.delijn.be/stops/501714", "https://data.delijn.be/stops/501715"], ["https://data.delijn.be/stops/305643", "https://data.delijn.be/stops/308131"], ["https://data.delijn.be/stops/503918", "https://data.delijn.be/stops/503928"], ["https://data.delijn.be/stops/202886", "https://data.delijn.be/stops/206567"], ["https://data.delijn.be/stops/201698", "https://data.delijn.be/stops/202384"], ["https://data.delijn.be/stops/302442", "https://data.delijn.be/stops/302446"], ["https://data.delijn.be/stops/206664", "https://data.delijn.be/stops/206665"], ["https://data.delijn.be/stops/403795", "https://data.delijn.be/stops/403819"], ["https://data.delijn.be/stops/303412", "https://data.delijn.be/stops/306948"], ["https://data.delijn.be/stops/503387", "https://data.delijn.be/stops/508387"], ["https://data.delijn.be/stops/504875", "https://data.delijn.be/stops/505084"], ["https://data.delijn.be/stops/200205", "https://data.delijn.be/stops/201205"], ["https://data.delijn.be/stops/304608", "https://data.delijn.be/stops/307267"], ["https://data.delijn.be/stops/408763", "https://data.delijn.be/stops/408764"], ["https://data.delijn.be/stops/403275", "https://data.delijn.be/stops/403405"], ["https://data.delijn.be/stops/502481", "https://data.delijn.be/stops/507691"], ["https://data.delijn.be/stops/401089", "https://data.delijn.be/stops/401092"], ["https://data.delijn.be/stops/403644", "https://data.delijn.be/stops/407559"], ["https://data.delijn.be/stops/102693", "https://data.delijn.be/stops/103125"], ["https://data.delijn.be/stops/305951", "https://data.delijn.be/stops/307844"], ["https://data.delijn.be/stops/302455", "https://data.delijn.be/stops/304754"], ["https://data.delijn.be/stops/200351", "https://data.delijn.be/stops/201351"], ["https://data.delijn.be/stops/305152", "https://data.delijn.be/stops/305161"], ["https://data.delijn.be/stops/505847", "https://data.delijn.be/stops/508087"], ["https://data.delijn.be/stops/205298", "https://data.delijn.be/stops/205352"], ["https://data.delijn.be/stops/502211", "https://data.delijn.be/stops/507211"], ["https://data.delijn.be/stops/204266", "https://data.delijn.be/stops/204273"], ["https://data.delijn.be/stops/505029", "https://data.delijn.be/stops/506476"], ["https://data.delijn.be/stops/400767", "https://data.delijn.be/stops/400769"], ["https://data.delijn.be/stops/108811", "https://data.delijn.be/stops/109733"], ["https://data.delijn.be/stops/503306", "https://data.delijn.be/stops/508306"], ["https://data.delijn.be/stops/206716", "https://data.delijn.be/stops/207513"], ["https://data.delijn.be/stops/501261", "https://data.delijn.be/stops/506261"], ["https://data.delijn.be/stops/206965", "https://data.delijn.be/stops/207832"], ["https://data.delijn.be/stops/106949", "https://data.delijn.be/stops/106950"], ["https://data.delijn.be/stops/108092", "https://data.delijn.be/stops/108391"], ["https://data.delijn.be/stops/502668", "https://data.delijn.be/stops/507412"], ["https://data.delijn.be/stops/405676", "https://data.delijn.be/stops/408207"], ["https://data.delijn.be/stops/203535", "https://data.delijn.be/stops/204064"], ["https://data.delijn.be/stops/101408", "https://data.delijn.be/stops/101411"], ["https://data.delijn.be/stops/405543", "https://data.delijn.be/stops/406886"], ["https://data.delijn.be/stops/401849", "https://data.delijn.be/stops/406744"], ["https://data.delijn.be/stops/207663", "https://data.delijn.be/stops/208505"], ["https://data.delijn.be/stops/202767", "https://data.delijn.be/stops/203768"], ["https://data.delijn.be/stops/304008", "https://data.delijn.be/stops/304824"], ["https://data.delijn.be/stops/504007", "https://data.delijn.be/stops/504010"], ["https://data.delijn.be/stops/405420", "https://data.delijn.be/stops/306777"], ["https://data.delijn.be/stops/106617", "https://data.delijn.be/stops/106619"], ["https://data.delijn.be/stops/300096", "https://data.delijn.be/stops/300101"], ["https://data.delijn.be/stops/103043", "https://data.delijn.be/stops/106902"], ["https://data.delijn.be/stops/302996", "https://data.delijn.be/stops/307229"], ["https://data.delijn.be/stops/407479", "https://data.delijn.be/stops/407493"], ["https://data.delijn.be/stops/503821", "https://data.delijn.be/stops/508818"], ["https://data.delijn.be/stops/501086", "https://data.delijn.be/stops/506439"], ["https://data.delijn.be/stops/503032", "https://data.delijn.be/stops/508032"], ["https://data.delijn.be/stops/204485", "https://data.delijn.be/stops/204508"], ["https://data.delijn.be/stops/400142", "https://data.delijn.be/stops/409073"], ["https://data.delijn.be/stops/406501", "https://data.delijn.be/stops/406514"], ["https://data.delijn.be/stops/203347", "https://data.delijn.be/stops/206968"], ["https://data.delijn.be/stops/502251", "https://data.delijn.be/stops/509207"], ["https://data.delijn.be/stops/300320", "https://data.delijn.be/stops/301196"], ["https://data.delijn.be/stops/104422", "https://data.delijn.be/stops/204823"], ["https://data.delijn.be/stops/206786", "https://data.delijn.be/stops/209539"], ["https://data.delijn.be/stops/402200", "https://data.delijn.be/stops/402321"], ["https://data.delijn.be/stops/208458", "https://data.delijn.be/stops/209676"], ["https://data.delijn.be/stops/107524", "https://data.delijn.be/stops/107529"], ["https://data.delijn.be/stops/109820", "https://data.delijn.be/stops/109826"], ["https://data.delijn.be/stops/204044", "https://data.delijn.be/stops/204516"], ["https://data.delijn.be/stops/404888", "https://data.delijn.be/stops/404904"], ["https://data.delijn.be/stops/406264", "https://data.delijn.be/stops/406296"], ["https://data.delijn.be/stops/206646", "https://data.delijn.be/stops/207460"], ["https://data.delijn.be/stops/307820", "https://data.delijn.be/stops/307821"], ["https://data.delijn.be/stops/104598", "https://data.delijn.be/stops/106820"], ["https://data.delijn.be/stops/204048", "https://data.delijn.be/stops/205048"], ["https://data.delijn.be/stops/502407", "https://data.delijn.be/stops/507394"], ["https://data.delijn.be/stops/507023", "https://data.delijn.be/stops/508325"], ["https://data.delijn.be/stops/503429", "https://data.delijn.be/stops/508434"], ["https://data.delijn.be/stops/303418", "https://data.delijn.be/stops/305085"], ["https://data.delijn.be/stops/206112", "https://data.delijn.be/stops/206125"], ["https://data.delijn.be/stops/304831", "https://data.delijn.be/stops/304832"], ["https://data.delijn.be/stops/103870", "https://data.delijn.be/stops/103875"], ["https://data.delijn.be/stops/408960", "https://data.delijn.be/stops/408969"], ["https://data.delijn.be/stops/208595", "https://data.delijn.be/stops/208802"], ["https://data.delijn.be/stops/105623", "https://data.delijn.be/stops/106363"], ["https://data.delijn.be/stops/204999", "https://data.delijn.be/stops/205999"], ["https://data.delijn.be/stops/206808", "https://data.delijn.be/stops/207808"], ["https://data.delijn.be/stops/404361", "https://data.delijn.be/stops/404386"], ["https://data.delijn.be/stops/405155", "https://data.delijn.be/stops/405213"], ["https://data.delijn.be/stops/203921", "https://data.delijn.be/stops/203922"], ["https://data.delijn.be/stops/101331", "https://data.delijn.be/stops/106677"], ["https://data.delijn.be/stops/404335", "https://data.delijn.be/stops/404343"], ["https://data.delijn.be/stops/200062", "https://data.delijn.be/stops/203132"], ["https://data.delijn.be/stops/104988", "https://data.delijn.be/stops/109768"], ["https://data.delijn.be/stops/204212", "https://data.delijn.be/stops/206394"], ["https://data.delijn.be/stops/301361", "https://data.delijn.be/stops/306126"], ["https://data.delijn.be/stops/302905", "https://data.delijn.be/stops/303235"], ["https://data.delijn.be/stops/300623", "https://data.delijn.be/stops/306112"], ["https://data.delijn.be/stops/506309", "https://data.delijn.be/stops/506480"], ["https://data.delijn.be/stops/405667", "https://data.delijn.be/stops/409382"], ["https://data.delijn.be/stops/405963", "https://data.delijn.be/stops/405965"], ["https://data.delijn.be/stops/302742", "https://data.delijn.be/stops/302758"], ["https://data.delijn.be/stops/303348", "https://data.delijn.be/stops/303369"], ["https://data.delijn.be/stops/503003", "https://data.delijn.be/stops/509878"], ["https://data.delijn.be/stops/408312", "https://data.delijn.be/stops/408403"], ["https://data.delijn.be/stops/504792", "https://data.delijn.be/stops/509005"], ["https://data.delijn.be/stops/402814", "https://data.delijn.be/stops/409036"], ["https://data.delijn.be/stops/504665", "https://data.delijn.be/stops/504733"], ["https://data.delijn.be/stops/404987", "https://data.delijn.be/stops/408552"], ["https://data.delijn.be/stops/208736", "https://data.delijn.be/stops/209737"], ["https://data.delijn.be/stops/301944", "https://data.delijn.be/stops/305914"], ["https://data.delijn.be/stops/202626", "https://data.delijn.be/stops/203625"], ["https://data.delijn.be/stops/105234", "https://data.delijn.be/stops/109926"], ["https://data.delijn.be/stops/505713", "https://data.delijn.be/stops/505714"], ["https://data.delijn.be/stops/201353", "https://data.delijn.be/stops/208268"], ["https://data.delijn.be/stops/303817", "https://data.delijn.be/stops/307496"], ["https://data.delijn.be/stops/304491", "https://data.delijn.be/stops/307466"], ["https://data.delijn.be/stops/204316", "https://data.delijn.be/stops/205317"], ["https://data.delijn.be/stops/105041", "https://data.delijn.be/stops/105127"], ["https://data.delijn.be/stops/104484", "https://data.delijn.be/stops/307899"], ["https://data.delijn.be/stops/305813", "https://data.delijn.be/stops/305814"], ["https://data.delijn.be/stops/502764", "https://data.delijn.be/stops/507036"], ["https://data.delijn.be/stops/300089", "https://data.delijn.be/stops/306835"], ["https://data.delijn.be/stops/107575", "https://data.delijn.be/stops/109434"], ["https://data.delijn.be/stops/207785", "https://data.delijn.be/stops/208373"], ["https://data.delijn.be/stops/407249", "https://data.delijn.be/stops/407357"], ["https://data.delijn.be/stops/301436", "https://data.delijn.be/stops/306417"], ["https://data.delijn.be/stops/204759", "https://data.delijn.be/stops/205373"], ["https://data.delijn.be/stops/202118", "https://data.delijn.be/stops/204172"], ["https://data.delijn.be/stops/101377", "https://data.delijn.be/stops/107304"], ["https://data.delijn.be/stops/400704", "https://data.delijn.be/stops/404376"], ["https://data.delijn.be/stops/405366", "https://data.delijn.be/stops/405371"], ["https://data.delijn.be/stops/201922", "https://data.delijn.be/stops/207593"], ["https://data.delijn.be/stops/403944", "https://data.delijn.be/stops/403945"], ["https://data.delijn.be/stops/107734", "https://data.delijn.be/stops/107738"], ["https://data.delijn.be/stops/401961", "https://data.delijn.be/stops/403850"], ["https://data.delijn.be/stops/101834", "https://data.delijn.be/stops/107088"], ["https://data.delijn.be/stops/408360", "https://data.delijn.be/stops/308249"], ["https://data.delijn.be/stops/408533", "https://data.delijn.be/stops/408666"], ["https://data.delijn.be/stops/207730", "https://data.delijn.be/stops/207731"], ["https://data.delijn.be/stops/305954", "https://data.delijn.be/stops/305962"], ["https://data.delijn.be/stops/401183", "https://data.delijn.be/stops/401192"], ["https://data.delijn.be/stops/101426", "https://data.delijn.be/stops/108717"], ["https://data.delijn.be/stops/404450", "https://data.delijn.be/stops/406740"], ["https://data.delijn.be/stops/301096", "https://data.delijn.be/stops/306749"], ["https://data.delijn.be/stops/504776", "https://data.delijn.be/stops/505711"], ["https://data.delijn.be/stops/300601", "https://data.delijn.be/stops/300608"], ["https://data.delijn.be/stops/105341", "https://data.delijn.be/stops/105342"], ["https://data.delijn.be/stops/105674", "https://data.delijn.be/stops/105682"], ["https://data.delijn.be/stops/306618", "https://data.delijn.be/stops/306621"], ["https://data.delijn.be/stops/503905", "https://data.delijn.be/stops/508905"], ["https://data.delijn.be/stops/101482", "https://data.delijn.be/stops/109290"], ["https://data.delijn.be/stops/501115", "https://data.delijn.be/stops/506165"], ["https://data.delijn.be/stops/402047", "https://data.delijn.be/stops/410074"], ["https://data.delijn.be/stops/200240", "https://data.delijn.be/stops/218935"], ["https://data.delijn.be/stops/206285", "https://data.delijn.be/stops/206811"], ["https://data.delijn.be/stops/206144", "https://data.delijn.be/stops/207092"], ["https://data.delijn.be/stops/106221", "https://data.delijn.be/stops/106222"], ["https://data.delijn.be/stops/200795", "https://data.delijn.be/stops/201566"], ["https://data.delijn.be/stops/304648", "https://data.delijn.be/stops/304683"], ["https://data.delijn.be/stops/103158", "https://data.delijn.be/stops/406774"], ["https://data.delijn.be/stops/205994", "https://data.delijn.be/stops/211659"], ["https://data.delijn.be/stops/107279", "https://data.delijn.be/stops/107281"], ["https://data.delijn.be/stops/400711", "https://data.delijn.be/stops/409506"], ["https://data.delijn.be/stops/408832", "https://data.delijn.be/stops/408833"], ["https://data.delijn.be/stops/102436", "https://data.delijn.be/stops/107822"], ["https://data.delijn.be/stops/202358", "https://data.delijn.be/stops/203358"], ["https://data.delijn.be/stops/304991", "https://data.delijn.be/stops/305006"], ["https://data.delijn.be/stops/407094", "https://data.delijn.be/stops/407260"], ["https://data.delijn.be/stops/200257", "https://data.delijn.be/stops/203407"], ["https://data.delijn.be/stops/404463", "https://data.delijn.be/stops/404488"], ["https://data.delijn.be/stops/200924", "https://data.delijn.be/stops/200941"], ["https://data.delijn.be/stops/204201", "https://data.delijn.be/stops/205201"], ["https://data.delijn.be/stops/108927", "https://data.delijn.be/stops/108929"], ["https://data.delijn.be/stops/106487", "https://data.delijn.be/stops/106488"], ["https://data.delijn.be/stops/404315", "https://data.delijn.be/stops/404390"], ["https://data.delijn.be/stops/200680", "https://data.delijn.be/stops/201460"], ["https://data.delijn.be/stops/400102", "https://data.delijn.be/stops/404957"], ["https://data.delijn.be/stops/303677", "https://data.delijn.be/stops/303855"], ["https://data.delijn.be/stops/200914", "https://data.delijn.be/stops/203270"], ["https://data.delijn.be/stops/406114", "https://data.delijn.be/stops/406115"], ["https://data.delijn.be/stops/502635", "https://data.delijn.be/stops/507215"], ["https://data.delijn.be/stops/206221", "https://data.delijn.be/stops/207728"], ["https://data.delijn.be/stops/505994", "https://data.delijn.be/stops/508147"], ["https://data.delijn.be/stops/204342", "https://data.delijn.be/stops/205342"], ["https://data.delijn.be/stops/204513", "https://data.delijn.be/stops/204554"], ["https://data.delijn.be/stops/305248", "https://data.delijn.be/stops/305249"], ["https://data.delijn.be/stops/217008", "https://data.delijn.be/stops/217009"], ["https://data.delijn.be/stops/507044", "https://data.delijn.be/stops/507617"], ["https://data.delijn.be/stops/301678", "https://data.delijn.be/stops/306294"], ["https://data.delijn.be/stops/403088", "https://data.delijn.be/stops/403289"], ["https://data.delijn.be/stops/105340", "https://data.delijn.be/stops/108975"], ["https://data.delijn.be/stops/302859", "https://data.delijn.be/stops/302861"], ["https://data.delijn.be/stops/304400", "https://data.delijn.be/stops/307400"], ["https://data.delijn.be/stops/202413", "https://data.delijn.be/stops/203275"], ["https://data.delijn.be/stops/104037", "https://data.delijn.be/stops/108096"], ["https://data.delijn.be/stops/208123", "https://data.delijn.be/stops/209227"], ["https://data.delijn.be/stops/403296", "https://data.delijn.be/stops/403297"], ["https://data.delijn.be/stops/300340", "https://data.delijn.be/stops/300367"], ["https://data.delijn.be/stops/301155", "https://data.delijn.be/stops/301165"], ["https://data.delijn.be/stops/206106", "https://data.delijn.be/stops/207105"], ["https://data.delijn.be/stops/502017", "https://data.delijn.be/stops/507022"], ["https://data.delijn.be/stops/401416", "https://data.delijn.be/stops/305165"], ["https://data.delijn.be/stops/302880", "https://data.delijn.be/stops/303086"], ["https://data.delijn.be/stops/302239", "https://data.delijn.be/stops/302241"], ["https://data.delijn.be/stops/303734", "https://data.delijn.be/stops/303770"], ["https://data.delijn.be/stops/103218", "https://data.delijn.be/stops/107359"], ["https://data.delijn.be/stops/504355", "https://data.delijn.be/stops/505995"], ["https://data.delijn.be/stops/404653", "https://data.delijn.be/stops/404655"], ["https://data.delijn.be/stops/400726", "https://data.delijn.be/stops/405172"], ["https://data.delijn.be/stops/504659", "https://data.delijn.be/stops/509043"], ["https://data.delijn.be/stops/302751", "https://data.delijn.be/stops/302754"], ["https://data.delijn.be/stops/200961", "https://data.delijn.be/stops/201961"], ["https://data.delijn.be/stops/407284", "https://data.delijn.be/stops/407285"], ["https://data.delijn.be/stops/200781", "https://data.delijn.be/stops/201034"], ["https://data.delijn.be/stops/504137", "https://data.delijn.be/stops/504144"], ["https://data.delijn.be/stops/104776", "https://data.delijn.be/stops/107349"], ["https://data.delijn.be/stops/208163", "https://data.delijn.be/stops/209168"], ["https://data.delijn.be/stops/304853", "https://data.delijn.be/stops/304856"], ["https://data.delijn.be/stops/203158", "https://data.delijn.be/stops/205792"], ["https://data.delijn.be/stops/506012", "https://data.delijn.be/stops/506017"], ["https://data.delijn.be/stops/101750", "https://data.delijn.be/stops/104352"], ["https://data.delijn.be/stops/209344", "https://data.delijn.be/stops/218028"], ["https://data.delijn.be/stops/206415", "https://data.delijn.be/stops/207950"], ["https://data.delijn.be/stops/407373", "https://data.delijn.be/stops/407378"], ["https://data.delijn.be/stops/304435", "https://data.delijn.be/stops/304436"], ["https://data.delijn.be/stops/109316", "https://data.delijn.be/stops/109867"], ["https://data.delijn.be/stops/502710", "https://data.delijn.be/stops/507711"], ["https://data.delijn.be/stops/104593", "https://data.delijn.be/stops/108348"], ["https://data.delijn.be/stops/103626", "https://data.delijn.be/stops/103629"], ["https://data.delijn.be/stops/303168", "https://data.delijn.be/stops/303171"], ["https://data.delijn.be/stops/200540", "https://data.delijn.be/stops/200657"], ["https://data.delijn.be/stops/300163", "https://data.delijn.be/stops/308790"], ["https://data.delijn.be/stops/304485", "https://data.delijn.be/stops/304492"], ["https://data.delijn.be/stops/503387", "https://data.delijn.be/stops/503409"], ["https://data.delijn.be/stops/400179", "https://data.delijn.be/stops/405297"], ["https://data.delijn.be/stops/406652", "https://data.delijn.be/stops/406653"], ["https://data.delijn.be/stops/206154", "https://data.delijn.be/stops/207502"], ["https://data.delijn.be/stops/101016", "https://data.delijn.be/stops/103850"], ["https://data.delijn.be/stops/203784", "https://data.delijn.be/stops/203785"], ["https://data.delijn.be/stops/401799", "https://data.delijn.be/stops/406824"], ["https://data.delijn.be/stops/402076", "https://data.delijn.be/stops/405571"], ["https://data.delijn.be/stops/502931", "https://data.delijn.be/stops/507932"], ["https://data.delijn.be/stops/504957", "https://data.delijn.be/stops/509957"], ["https://data.delijn.be/stops/502757", "https://data.delijn.be/stops/508326"], ["https://data.delijn.be/stops/302128", "https://data.delijn.be/stops/302129"], ["https://data.delijn.be/stops/107528", "https://data.delijn.be/stops/107529"], ["https://data.delijn.be/stops/502757", "https://data.delijn.be/stops/505341"], ["https://data.delijn.be/stops/200355", "https://data.delijn.be/stops/202650"], ["https://data.delijn.be/stops/202676", "https://data.delijn.be/stops/203723"], ["https://data.delijn.be/stops/503432", "https://data.delijn.be/stops/508053"], ["https://data.delijn.be/stops/102906", "https://data.delijn.be/stops/105869"], ["https://data.delijn.be/stops/501182", "https://data.delijn.be/stops/506177"], ["https://data.delijn.be/stops/405243", "https://data.delijn.be/stops/405244"], ["https://data.delijn.be/stops/301291", "https://data.delijn.be/stops/301296"], ["https://data.delijn.be/stops/401958", "https://data.delijn.be/stops/402040"], ["https://data.delijn.be/stops/504624", "https://data.delijn.be/stops/509621"], ["https://data.delijn.be/stops/300382", "https://data.delijn.be/stops/300406"], ["https://data.delijn.be/stops/104700", "https://data.delijn.be/stops/105390"], ["https://data.delijn.be/stops/206467", "https://data.delijn.be/stops/207467"], ["https://data.delijn.be/stops/306314", "https://data.delijn.be/stops/308761"], ["https://data.delijn.be/stops/408851", "https://data.delijn.be/stops/408887"], ["https://data.delijn.be/stops/303779", "https://data.delijn.be/stops/303811"], ["https://data.delijn.be/stops/305166", "https://data.delijn.be/stops/305167"], ["https://data.delijn.be/stops/203872", "https://data.delijn.be/stops/204975"], ["https://data.delijn.be/stops/210068", "https://data.delijn.be/stops/211068"], ["https://data.delijn.be/stops/505508", "https://data.delijn.be/stops/505574"], ["https://data.delijn.be/stops/209508", "https://data.delijn.be/stops/209633"], ["https://data.delijn.be/stops/502526", "https://data.delijn.be/stops/502551"], ["https://data.delijn.be/stops/207678", "https://data.delijn.be/stops/208075"], ["https://data.delijn.be/stops/400730", "https://data.delijn.be/stops/406614"], ["https://data.delijn.be/stops/202284", "https://data.delijn.be/stops/210005"], ["https://data.delijn.be/stops/201814", "https://data.delijn.be/stops/209328"], ["https://data.delijn.be/stops/401636", "https://data.delijn.be/stops/308208"], ["https://data.delijn.be/stops/504107", "https://data.delijn.be/stops/509107"], ["https://data.delijn.be/stops/403237", "https://data.delijn.be/stops/403255"], ["https://data.delijn.be/stops/401529", "https://data.delijn.be/stops/407150"], ["https://data.delijn.be/stops/107002", "https://data.delijn.be/stops/107329"], ["https://data.delijn.be/stops/502511", "https://data.delijn.be/stops/507505"], ["https://data.delijn.be/stops/305115", "https://data.delijn.be/stops/305119"], ["https://data.delijn.be/stops/501223", "https://data.delijn.be/stops/501310"], ["https://data.delijn.be/stops/503516", "https://data.delijn.be/stops/504783"], ["https://data.delijn.be/stops/200353", "https://data.delijn.be/stops/200354"], ["https://data.delijn.be/stops/302352", "https://data.delijn.be/stops/306180"], ["https://data.delijn.be/stops/501461", "https://data.delijn.be/stops/506461"], ["https://data.delijn.be/stops/108122", "https://data.delijn.be/stops/109659"], ["https://data.delijn.be/stops/302072", "https://data.delijn.be/stops/302076"], ["https://data.delijn.be/stops/406541", "https://data.delijn.be/stops/407442"], ["https://data.delijn.be/stops/208761", "https://data.delijn.be/stops/218014"], ["https://data.delijn.be/stops/405266", "https://data.delijn.be/stops/405267"], ["https://data.delijn.be/stops/504413", "https://data.delijn.be/stops/509413"], ["https://data.delijn.be/stops/407730", "https://data.delijn.be/stops/407731"], ["https://data.delijn.be/stops/505843", "https://data.delijn.be/stops/508789"], ["https://data.delijn.be/stops/301938", "https://data.delijn.be/stops/307492"], ["https://data.delijn.be/stops/303225", "https://data.delijn.be/stops/303229"], ["https://data.delijn.be/stops/200532", "https://data.delijn.be/stops/211132"], ["https://data.delijn.be/stops/103094", "https://data.delijn.be/stops/109117"], ["https://data.delijn.be/stops/303121", "https://data.delijn.be/stops/303226"], ["https://data.delijn.be/stops/200110", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/408884", "https://data.delijn.be/stops/408903"], ["https://data.delijn.be/stops/101779", "https://data.delijn.be/stops/106727"], ["https://data.delijn.be/stops/408333", "https://data.delijn.be/stops/408357"], ["https://data.delijn.be/stops/407941", "https://data.delijn.be/stops/408432"], ["https://data.delijn.be/stops/304591", "https://data.delijn.be/stops/307767"], ["https://data.delijn.be/stops/300037", "https://data.delijn.be/stops/307825"], ["https://data.delijn.be/stops/305130", "https://data.delijn.be/stops/305131"], ["https://data.delijn.be/stops/300649", "https://data.delijn.be/stops/301851"], ["https://data.delijn.be/stops/404326", "https://data.delijn.be/stops/408669"], ["https://data.delijn.be/stops/306328", "https://data.delijn.be/stops/306329"], ["https://data.delijn.be/stops/409718", "https://data.delijn.be/stops/409719"], ["https://data.delijn.be/stops/407994", "https://data.delijn.be/stops/410161"], ["https://data.delijn.be/stops/108111", "https://data.delijn.be/stops/108143"], ["https://data.delijn.be/stops/502640", "https://data.delijn.be/stops/502728"], ["https://data.delijn.be/stops/303438", "https://data.delijn.be/stops/303519"], ["https://data.delijn.be/stops/302841", "https://data.delijn.be/stops/303284"], ["https://data.delijn.be/stops/502683", "https://data.delijn.be/stops/507683"], ["https://data.delijn.be/stops/508488", "https://data.delijn.be/stops/508989"], ["https://data.delijn.be/stops/503681", "https://data.delijn.be/stops/508681"], ["https://data.delijn.be/stops/502504", "https://data.delijn.be/stops/505323"], ["https://data.delijn.be/stops/404458", "https://data.delijn.be/stops/404545"], ["https://data.delijn.be/stops/202309", "https://data.delijn.be/stops/202310"], ["https://data.delijn.be/stops/107230", "https://data.delijn.be/stops/107305"], ["https://data.delijn.be/stops/106773", "https://data.delijn.be/stops/106778"], ["https://data.delijn.be/stops/305193", "https://data.delijn.be/stops/305217"], ["https://data.delijn.be/stops/505676", "https://data.delijn.be/stops/505678"], ["https://data.delijn.be/stops/402694", "https://data.delijn.be/stops/301483"], ["https://data.delijn.be/stops/406400", "https://data.delijn.be/stops/407639"], ["https://data.delijn.be/stops/102232", "https://data.delijn.be/stops/105659"], ["https://data.delijn.be/stops/405754", "https://data.delijn.be/stops/406058"], ["https://data.delijn.be/stops/103252", "https://data.delijn.be/stops/107725"], ["https://data.delijn.be/stops/506265", "https://data.delijn.be/stops/506327"], ["https://data.delijn.be/stops/106363", "https://data.delijn.be/stops/106369"], ["https://data.delijn.be/stops/107663", "https://data.delijn.be/stops/107666"], ["https://data.delijn.be/stops/108435", "https://data.delijn.be/stops/108440"], ["https://data.delijn.be/stops/406011", "https://data.delijn.be/stops/406133"], ["https://data.delijn.be/stops/301451", "https://data.delijn.be/stops/301457"], ["https://data.delijn.be/stops/103605", "https://data.delijn.be/stops/106393"], ["https://data.delijn.be/stops/306151", "https://data.delijn.be/stops/306259"], ["https://data.delijn.be/stops/304055", "https://data.delijn.be/stops/304056"], ["https://data.delijn.be/stops/405509", "https://data.delijn.be/stops/407254"], ["https://data.delijn.be/stops/109181", "https://data.delijn.be/stops/109253"], ["https://data.delijn.be/stops/200530", "https://data.delijn.be/stops/200531"], ["https://data.delijn.be/stops/102681", "https://data.delijn.be/stops/205608"], ["https://data.delijn.be/stops/205391", "https://data.delijn.be/stops/205763"], ["https://data.delijn.be/stops/208402", "https://data.delijn.be/stops/208767"], ["https://data.delijn.be/stops/105249", "https://data.delijn.be/stops/105251"], ["https://data.delijn.be/stops/304036", "https://data.delijn.be/stops/304815"], ["https://data.delijn.be/stops/400940", "https://data.delijn.be/stops/400941"], ["https://data.delijn.be/stops/205085", "https://data.delijn.be/stops/205086"], ["https://data.delijn.be/stops/504257", "https://data.delijn.be/stops/504258"], ["https://data.delijn.be/stops/301685", "https://data.delijn.be/stops/301687"], ["https://data.delijn.be/stops/302749", "https://data.delijn.be/stops/302755"], ["https://data.delijn.be/stops/102544", "https://data.delijn.be/stops/102546"], ["https://data.delijn.be/stops/401343", "https://data.delijn.be/stops/408419"], ["https://data.delijn.be/stops/410180", "https://data.delijn.be/stops/410259"], ["https://data.delijn.be/stops/302391", "https://data.delijn.be/stops/307842"], ["https://data.delijn.be/stops/206579", "https://data.delijn.be/stops/216010"], ["https://data.delijn.be/stops/303663", "https://data.delijn.be/stops/307735"], ["https://data.delijn.be/stops/108234", "https://data.delijn.be/stops/108237"], ["https://data.delijn.be/stops/401553", "https://data.delijn.be/stops/401554"], ["https://data.delijn.be/stops/102605", "https://data.delijn.be/stops/105105"], ["https://data.delijn.be/stops/303340", "https://data.delijn.be/stops/303341"], ["https://data.delijn.be/stops/203529", "https://data.delijn.be/stops/210009"], ["https://data.delijn.be/stops/403096", "https://data.delijn.be/stops/404873"], ["https://data.delijn.be/stops/106202", "https://data.delijn.be/stops/106301"], ["https://data.delijn.be/stops/106890", "https://data.delijn.be/stops/106891"], ["https://data.delijn.be/stops/502435", "https://data.delijn.be/stops/507439"], ["https://data.delijn.be/stops/407016", "https://data.delijn.be/stops/407044"], ["https://data.delijn.be/stops/218023", "https://data.delijn.be/stops/219023"], ["https://data.delijn.be/stops/501323", "https://data.delijn.be/stops/506320"], ["https://data.delijn.be/stops/304754", "https://data.delijn.be/stops/304760"], ["https://data.delijn.be/stops/404504", "https://data.delijn.be/stops/409601"], ["https://data.delijn.be/stops/501078", "https://data.delijn.be/stops/505404"], ["https://data.delijn.be/stops/505363", "https://data.delijn.be/stops/509514"], ["https://data.delijn.be/stops/304758", "https://data.delijn.be/stops/305292"], ["https://data.delijn.be/stops/106014", "https://data.delijn.be/stops/106016"], ["https://data.delijn.be/stops/403001", "https://data.delijn.be/stops/403025"], ["https://data.delijn.be/stops/404022", "https://data.delijn.be/stops/404025"], ["https://data.delijn.be/stops/406321", "https://data.delijn.be/stops/410394"], ["https://data.delijn.be/stops/108560", "https://data.delijn.be/stops/109730"], ["https://data.delijn.be/stops/501008", "https://data.delijn.be/stops/505355"], ["https://data.delijn.be/stops/101835", "https://data.delijn.be/stops/101895"], ["https://data.delijn.be/stops/404119", "https://data.delijn.be/stops/408554"], ["https://data.delijn.be/stops/505171", "https://data.delijn.be/stops/507363"], ["https://data.delijn.be/stops/303949", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/301832", "https://data.delijn.be/stops/301870"], ["https://data.delijn.be/stops/405901", "https://data.delijn.be/stops/405932"], ["https://data.delijn.be/stops/208164", "https://data.delijn.be/stops/209102"], ["https://data.delijn.be/stops/102519", "https://data.delijn.be/stops/406514"], ["https://data.delijn.be/stops/302521", "https://data.delijn.be/stops/302522"], ["https://data.delijn.be/stops/200390", "https://data.delijn.be/stops/208359"], ["https://data.delijn.be/stops/300014", "https://data.delijn.be/stops/300400"], ["https://data.delijn.be/stops/208589", "https://data.delijn.be/stops/305237"], ["https://data.delijn.be/stops/101026", "https://data.delijn.be/stops/101027"], ["https://data.delijn.be/stops/503649", "https://data.delijn.be/stops/508649"], ["https://data.delijn.be/stops/504137", "https://data.delijn.be/stops/505423"], ["https://data.delijn.be/stops/503536", "https://data.delijn.be/stops/505945"], ["https://data.delijn.be/stops/301040", "https://data.delijn.be/stops/301061"], ["https://data.delijn.be/stops/303093", "https://data.delijn.be/stops/303153"], ["https://data.delijn.be/stops/406925", "https://data.delijn.be/stops/406927"], ["https://data.delijn.be/stops/501577", "https://data.delijn.be/stops/505287"], ["https://data.delijn.be/stops/405300", "https://data.delijn.be/stops/406298"], ["https://data.delijn.be/stops/208030", "https://data.delijn.be/stops/209019"], ["https://data.delijn.be/stops/503665", "https://data.delijn.be/stops/503667"], ["https://data.delijn.be/stops/400317", "https://data.delijn.be/stops/400319"], ["https://data.delijn.be/stops/101930", "https://data.delijn.be/stops/105835"], ["https://data.delijn.be/stops/102400", "https://data.delijn.be/stops/108900"], ["https://data.delijn.be/stops/201813", "https://data.delijn.be/stops/208327"], ["https://data.delijn.be/stops/406182", "https://data.delijn.be/stops/406460"], ["https://data.delijn.be/stops/501161", "https://data.delijn.be/stops/506157"], ["https://data.delijn.be/stops/408325", "https://data.delijn.be/stops/408335"], ["https://data.delijn.be/stops/208661", "https://data.delijn.be/stops/208693"], ["https://data.delijn.be/stops/206469", "https://data.delijn.be/stops/207469"], ["https://data.delijn.be/stops/408122", "https://data.delijn.be/stops/408123"], ["https://data.delijn.be/stops/204165", "https://data.delijn.be/stops/205158"], ["https://data.delijn.be/stops/104861", "https://data.delijn.be/stops/107822"], ["https://data.delijn.be/stops/108140", "https://data.delijn.be/stops/108735"], ["https://data.delijn.be/stops/202874", "https://data.delijn.be/stops/207427"], ["https://data.delijn.be/stops/301242", "https://data.delijn.be/stops/301244"], ["https://data.delijn.be/stops/403326", "https://data.delijn.be/stops/403907"], ["https://data.delijn.be/stops/206958", "https://data.delijn.be/stops/207693"], ["https://data.delijn.be/stops/503915", "https://data.delijn.be/stops/503925"], ["https://data.delijn.be/stops/207971", "https://data.delijn.be/stops/207972"], ["https://data.delijn.be/stops/302888", "https://data.delijn.be/stops/303232"], ["https://data.delijn.be/stops/206132", "https://data.delijn.be/stops/206135"], ["https://data.delijn.be/stops/106499", "https://data.delijn.be/stops/107117"], ["https://data.delijn.be/stops/400353", "https://data.delijn.be/stops/406866"], ["https://data.delijn.be/stops/307351", "https://data.delijn.be/stops/307353"], ["https://data.delijn.be/stops/207779", "https://data.delijn.be/stops/207780"], ["https://data.delijn.be/stops/403904", "https://data.delijn.be/stops/403914"], ["https://data.delijn.be/stops/408495", "https://data.delijn.be/stops/408701"], ["https://data.delijn.be/stops/204289", "https://data.delijn.be/stops/205289"], ["https://data.delijn.be/stops/200691", "https://data.delijn.be/stops/209644"], ["https://data.delijn.be/stops/206911", "https://data.delijn.be/stops/207100"], ["https://data.delijn.be/stops/301233", "https://data.delijn.be/stops/305951"], ["https://data.delijn.be/stops/203787", "https://data.delijn.be/stops/210108"], ["https://data.delijn.be/stops/104580", "https://data.delijn.be/stops/104585"], ["https://data.delijn.be/stops/304290", "https://data.delijn.be/stops/304296"], ["https://data.delijn.be/stops/108697", "https://data.delijn.be/stops/108698"], ["https://data.delijn.be/stops/204680", "https://data.delijn.be/stops/205615"], ["https://data.delijn.be/stops/408350", "https://data.delijn.be/stops/408357"], ["https://data.delijn.be/stops/307800", "https://data.delijn.be/stops/308632"], ["https://data.delijn.be/stops/200172", "https://data.delijn.be/stops/201533"], ["https://data.delijn.be/stops/305602", "https://data.delijn.be/stops/305606"], ["https://data.delijn.be/stops/106352", "https://data.delijn.be/stops/106353"], ["https://data.delijn.be/stops/301894", "https://data.delijn.be/stops/303936"], ["https://data.delijn.be/stops/301249", "https://data.delijn.be/stops/301250"], ["https://data.delijn.be/stops/201422", "https://data.delijn.be/stops/201573"], ["https://data.delijn.be/stops/402454", "https://data.delijn.be/stops/410041"], ["https://data.delijn.be/stops/502762", "https://data.delijn.be/stops/503326"], ["https://data.delijn.be/stops/103105", "https://data.delijn.be/stops/106055"], ["https://data.delijn.be/stops/209597", "https://data.delijn.be/stops/301415"], ["https://data.delijn.be/stops/205026", "https://data.delijn.be/stops/205817"], ["https://data.delijn.be/stops/403784", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/102521", "https://data.delijn.be/stops/102549"], ["https://data.delijn.be/stops/501772", "https://data.delijn.be/stops/506742"], ["https://data.delijn.be/stops/202480", "https://data.delijn.be/stops/203480"], ["https://data.delijn.be/stops/107213", "https://data.delijn.be/stops/107214"], ["https://data.delijn.be/stops/204312", "https://data.delijn.be/stops/205312"], ["https://data.delijn.be/stops/202741", "https://data.delijn.be/stops/209713"], ["https://data.delijn.be/stops/505949", "https://data.delijn.be/stops/505966"], ["https://data.delijn.be/stops/304361", "https://data.delijn.be/stops/307370"], ["https://data.delijn.be/stops/401792", "https://data.delijn.be/stops/401817"], ["https://data.delijn.be/stops/205930", "https://data.delijn.be/stops/205931"], ["https://data.delijn.be/stops/201644", "https://data.delijn.be/stops/203946"], ["https://data.delijn.be/stops/508660", "https://data.delijn.be/stops/508663"], ["https://data.delijn.be/stops/206151", "https://data.delijn.be/stops/207150"], ["https://data.delijn.be/stops/103631", "https://data.delijn.be/stops/103633"], ["https://data.delijn.be/stops/305803", "https://data.delijn.be/stops/305804"], ["https://data.delijn.be/stops/204797", "https://data.delijn.be/stops/205796"], ["https://data.delijn.be/stops/505216", "https://data.delijn.be/stops/509550"], ["https://data.delijn.be/stops/302120", "https://data.delijn.be/stops/302121"], ["https://data.delijn.be/stops/208075", "https://data.delijn.be/stops/209076"], ["https://data.delijn.be/stops/403196", "https://data.delijn.be/stops/403278"], ["https://data.delijn.be/stops/501203", "https://data.delijn.be/stops/501257"], ["https://data.delijn.be/stops/301122", "https://data.delijn.be/stops/308957"], ["https://data.delijn.be/stops/408024", "https://data.delijn.be/stops/408029"], ["https://data.delijn.be/stops/202774", "https://data.delijn.be/stops/202775"], ["https://data.delijn.be/stops/502574", "https://data.delijn.be/stops/502587"], ["https://data.delijn.be/stops/402161", "https://data.delijn.be/stops/410041"], ["https://data.delijn.be/stops/301485", "https://data.delijn.be/stops/308705"], ["https://data.delijn.be/stops/305275", "https://data.delijn.be/stops/305313"], ["https://data.delijn.be/stops/407114", "https://data.delijn.be/stops/407862"], ["https://data.delijn.be/stops/303967", "https://data.delijn.be/stops/303968"], ["https://data.delijn.be/stops/204252", "https://data.delijn.be/stops/205758"], ["https://data.delijn.be/stops/206977", "https://data.delijn.be/stops/207419"], ["https://data.delijn.be/stops/207430", "https://data.delijn.be/stops/209693"], ["https://data.delijn.be/stops/502106", "https://data.delijn.be/stops/502129"], ["https://data.delijn.be/stops/105171", "https://data.delijn.be/stops/107422"], ["https://data.delijn.be/stops/104582", "https://data.delijn.be/stops/107901"], ["https://data.delijn.be/stops/402991", "https://data.delijn.be/stops/408936"], ["https://data.delijn.be/stops/302006", "https://data.delijn.be/stops/303197"], ["https://data.delijn.be/stops/206750", "https://data.delijn.be/stops/209478"], ["https://data.delijn.be/stops/501102", "https://data.delijn.be/stops/506102"], ["https://data.delijn.be/stops/408804", "https://data.delijn.be/stops/408861"], ["https://data.delijn.be/stops/300373", "https://data.delijn.be/stops/300406"], ["https://data.delijn.be/stops/103484", "https://data.delijn.be/stops/109139"], ["https://data.delijn.be/stops/505834", "https://data.delijn.be/stops/506013"], ["https://data.delijn.be/stops/105107", "https://data.delijn.be/stops/109505"], ["https://data.delijn.be/stops/104817", "https://data.delijn.be/stops/105824"], ["https://data.delijn.be/stops/400738", "https://data.delijn.be/stops/400739"], ["https://data.delijn.be/stops/402835", "https://data.delijn.be/stops/409021"], ["https://data.delijn.be/stops/302050", "https://data.delijn.be/stops/302051"], ["https://data.delijn.be/stops/305210", "https://data.delijn.be/stops/308681"], ["https://data.delijn.be/stops/508387", "https://data.delijn.be/stops/508409"], ["https://data.delijn.be/stops/400591", "https://data.delijn.be/stops/400622"], ["https://data.delijn.be/stops/504402", "https://data.delijn.be/stops/504413"], ["https://data.delijn.be/stops/108183", "https://data.delijn.be/stops/108192"], ["https://data.delijn.be/stops/308222", "https://data.delijn.be/stops/308223"], ["https://data.delijn.be/stops/401967", "https://data.delijn.be/stops/408158"], ["https://data.delijn.be/stops/404192", "https://data.delijn.be/stops/404194"], ["https://data.delijn.be/stops/102508", "https://data.delijn.be/stops/400022"], ["https://data.delijn.be/stops/301567", "https://data.delijn.be/stops/301578"], ["https://data.delijn.be/stops/400871", "https://data.delijn.be/stops/406589"], ["https://data.delijn.be/stops/504330", "https://data.delijn.be/stops/505992"], ["https://data.delijn.be/stops/203321", "https://data.delijn.be/stops/203322"], ["https://data.delijn.be/stops/105516", "https://data.delijn.be/stops/105517"], ["https://data.delijn.be/stops/404163", "https://data.delijn.be/stops/404171"], ["https://data.delijn.be/stops/502704", "https://data.delijn.be/stops/502705"], ["https://data.delijn.be/stops/402970", "https://data.delijn.be/stops/404699"], ["https://data.delijn.be/stops/504032", "https://data.delijn.be/stops/504036"], ["https://data.delijn.be/stops/404588", "https://data.delijn.be/stops/404590"], ["https://data.delijn.be/stops/101513", "https://data.delijn.be/stops/101514"], ["https://data.delijn.be/stops/206423", "https://data.delijn.be/stops/206805"], ["https://data.delijn.be/stops/502620", "https://data.delijn.be/stops/507105"], ["https://data.delijn.be/stops/208419", "https://data.delijn.be/stops/208745"], ["https://data.delijn.be/stops/205660", "https://data.delijn.be/stops/205681"], ["https://data.delijn.be/stops/303585", "https://data.delijn.be/stops/304317"], ["https://data.delijn.be/stops/504598", "https://data.delijn.be/stops/509598"], ["https://data.delijn.be/stops/507379", "https://data.delijn.be/stops/507399"], ["https://data.delijn.be/stops/504006", "https://data.delijn.be/stops/509533"], ["https://data.delijn.be/stops/202423", "https://data.delijn.be/stops/203275"], ["https://data.delijn.be/stops/401590", "https://data.delijn.be/stops/401593"], ["https://data.delijn.be/stops/404819", "https://data.delijn.be/stops/404829"], ["https://data.delijn.be/stops/200039", "https://data.delijn.be/stops/202499"], ["https://data.delijn.be/stops/404441", "https://data.delijn.be/stops/409438"], ["https://data.delijn.be/stops/408103", "https://data.delijn.be/stops/408107"], ["https://data.delijn.be/stops/300207", "https://data.delijn.be/stops/300214"], ["https://data.delijn.be/stops/208122", "https://data.delijn.be/stops/208295"], ["https://data.delijn.be/stops/501147", "https://data.delijn.be/stops/501155"], ["https://data.delijn.be/stops/304350", "https://data.delijn.be/stops/304355"], ["https://data.delijn.be/stops/206740", "https://data.delijn.be/stops/207600"], ["https://data.delijn.be/stops/302763", "https://data.delijn.be/stops/302774"], ["https://data.delijn.be/stops/102652", "https://data.delijn.be/stops/107901"], ["https://data.delijn.be/stops/205123", "https://data.delijn.be/stops/205146"], ["https://data.delijn.be/stops/303295", "https://data.delijn.be/stops/308120"], ["https://data.delijn.be/stops/204609", "https://data.delijn.be/stops/205280"], ["https://data.delijn.be/stops/300577", "https://data.delijn.be/stops/300593"], ["https://data.delijn.be/stops/501294", "https://data.delijn.be/stops/506397"], ["https://data.delijn.be/stops/101025", "https://data.delijn.be/stops/101150"], ["https://data.delijn.be/stops/201945", "https://data.delijn.be/stops/203455"], ["https://data.delijn.be/stops/401547", "https://data.delijn.be/stops/401958"], ["https://data.delijn.be/stops/400105", "https://data.delijn.be/stops/408095"], ["https://data.delijn.be/stops/201564", "https://data.delijn.be/stops/211102"], ["https://data.delijn.be/stops/108483", "https://data.delijn.be/stops/306598"], ["https://data.delijn.be/stops/206696", "https://data.delijn.be/stops/207710"], ["https://data.delijn.be/stops/407873", "https://data.delijn.be/stops/407874"], ["https://data.delijn.be/stops/505806", "https://data.delijn.be/stops/508078"], ["https://data.delijn.be/stops/204217", "https://data.delijn.be/stops/205178"], ["https://data.delijn.be/stops/507229", "https://data.delijn.be/stops/507240"], ["https://data.delijn.be/stops/301922", "https://data.delijn.be/stops/301923"], ["https://data.delijn.be/stops/305446", "https://data.delijn.be/stops/307327"], ["https://data.delijn.be/stops/206383", "https://data.delijn.be/stops/207356"], ["https://data.delijn.be/stops/201807", "https://data.delijn.be/stops/201813"], ["https://data.delijn.be/stops/102503", "https://data.delijn.be/stops/400023"], ["https://data.delijn.be/stops/503279", "https://data.delijn.be/stops/505952"], ["https://data.delijn.be/stops/304819", "https://data.delijn.be/stops/304820"], ["https://data.delijn.be/stops/409816", "https://data.delijn.be/stops/409817"], ["https://data.delijn.be/stops/502101", "https://data.delijn.be/stops/502132"], ["https://data.delijn.be/stops/500940", "https://data.delijn.be/stops/500941"], ["https://data.delijn.be/stops/108100", "https://data.delijn.be/stops/108101"], ["https://data.delijn.be/stops/303205", "https://data.delijn.be/stops/304312"], ["https://data.delijn.be/stops/400229", "https://data.delijn.be/stops/405611"], ["https://data.delijn.be/stops/200774", "https://data.delijn.be/stops/209385"], ["https://data.delijn.be/stops/206529", "https://data.delijn.be/stops/206822"], ["https://data.delijn.be/stops/108116", "https://data.delijn.be/stops/108117"], ["https://data.delijn.be/stops/509166", "https://data.delijn.be/stops/509172"], ["https://data.delijn.be/stops/304303", "https://data.delijn.be/stops/304305"], ["https://data.delijn.be/stops/103689", "https://data.delijn.be/stops/109430"], ["https://data.delijn.be/stops/208256", "https://data.delijn.be/stops/208257"], ["https://data.delijn.be/stops/400254", "https://data.delijn.be/stops/400257"], ["https://data.delijn.be/stops/204484", "https://data.delijn.be/stops/204736"], ["https://data.delijn.be/stops/101048", "https://data.delijn.be/stops/104368"], ["https://data.delijn.be/stops/401200", "https://data.delijn.be/stops/401304"], ["https://data.delijn.be/stops/108356", "https://data.delijn.be/stops/108357"], ["https://data.delijn.be/stops/101527", "https://data.delijn.be/stops/108796"], ["https://data.delijn.be/stops/408025", "https://data.delijn.be/stops/408414"], ["https://data.delijn.be/stops/105215", "https://data.delijn.be/stops/105542"], ["https://data.delijn.be/stops/502597", "https://data.delijn.be/stops/505724"], ["https://data.delijn.be/stops/102391", "https://data.delijn.be/stops/103140"], ["https://data.delijn.be/stops/107760", "https://data.delijn.be/stops/108957"], ["https://data.delijn.be/stops/202695", "https://data.delijn.be/stops/203726"], ["https://data.delijn.be/stops/504979", "https://data.delijn.be/stops/508905"], ["https://data.delijn.be/stops/405107", "https://data.delijn.be/stops/405108"], ["https://data.delijn.be/stops/402142", "https://data.delijn.be/stops/402143"], ["https://data.delijn.be/stops/504558", "https://data.delijn.be/stops/504559"], ["https://data.delijn.be/stops/504326", "https://data.delijn.be/stops/505992"], ["https://data.delijn.be/stops/504979", "https://data.delijn.be/stops/504980"], ["https://data.delijn.be/stops/301652", "https://data.delijn.be/stops/306143"], ["https://data.delijn.be/stops/503696", "https://data.delijn.be/stops/504975"], ["https://data.delijn.be/stops/102126", "https://data.delijn.be/stops/109491"], ["https://data.delijn.be/stops/106209", "https://data.delijn.be/stops/106213"], ["https://data.delijn.be/stops/300877", "https://data.delijn.be/stops/308855"], ["https://data.delijn.be/stops/101516", "https://data.delijn.be/stops/109026"], ["https://data.delijn.be/stops/401386", "https://data.delijn.be/stops/410171"], ["https://data.delijn.be/stops/202232", "https://data.delijn.be/stops/208890"], ["https://data.delijn.be/stops/408069", "https://data.delijn.be/stops/408085"], ["https://data.delijn.be/stops/107470", "https://data.delijn.be/stops/109687"], ["https://data.delijn.be/stops/102174", "https://data.delijn.be/stops/108341"], ["https://data.delijn.be/stops/102050", "https://data.delijn.be/stops/103120"], ["https://data.delijn.be/stops/106749", "https://data.delijn.be/stops/106750"], ["https://data.delijn.be/stops/509581", "https://data.delijn.be/stops/509582"], ["https://data.delijn.be/stops/104662", "https://data.delijn.be/stops/306603"], ["https://data.delijn.be/stops/504621", "https://data.delijn.be/stops/504630"], ["https://data.delijn.be/stops/101887", "https://data.delijn.be/stops/410163"], ["https://data.delijn.be/stops/204674", "https://data.delijn.be/stops/205674"], ["https://data.delijn.be/stops/106435", "https://data.delijn.be/stops/106436"], ["https://data.delijn.be/stops/206338", "https://data.delijn.be/stops/207338"], ["https://data.delijn.be/stops/201956", "https://data.delijn.be/stops/202477"], ["https://data.delijn.be/stops/108713", "https://data.delijn.be/stops/108858"], ["https://data.delijn.be/stops/102509", "https://data.delijn.be/stops/406470"], ["https://data.delijn.be/stops/501095", "https://data.delijn.be/stops/506244"], ["https://data.delijn.be/stops/403246", "https://data.delijn.be/stops/403247"], ["https://data.delijn.be/stops/208033", "https://data.delijn.be/stops/209032"], ["https://data.delijn.be/stops/203840", "https://data.delijn.be/stops/209736"], ["https://data.delijn.be/stops/504215", "https://data.delijn.be/stops/509112"], ["https://data.delijn.be/stops/407715", "https://data.delijn.be/stops/407726"], ["https://data.delijn.be/stops/200590", "https://data.delijn.be/stops/201590"], ["https://data.delijn.be/stops/109132", "https://data.delijn.be/stops/109421"], ["https://data.delijn.be/stops/400756", "https://data.delijn.be/stops/407591"], ["https://data.delijn.be/stops/409048", "https://data.delijn.be/stops/409446"], ["https://data.delijn.be/stops/403003", "https://data.delijn.be/stops/404269"], ["https://data.delijn.be/stops/304505", "https://data.delijn.be/stops/304508"], ["https://data.delijn.be/stops/402098", "https://data.delijn.be/stops/402208"], ["https://data.delijn.be/stops/207008", "https://data.delijn.be/stops/207520"], ["https://data.delijn.be/stops/403126", "https://data.delijn.be/stops/403357"], ["https://data.delijn.be/stops/501032", "https://data.delijn.be/stops/506284"], ["https://data.delijn.be/stops/204408", "https://data.delijn.be/stops/205413"], ["https://data.delijn.be/stops/202153", "https://data.delijn.be/stops/203153"], ["https://data.delijn.be/stops/208300", "https://data.delijn.be/stops/208375"], ["https://data.delijn.be/stops/501091", "https://data.delijn.be/stops/501099"], ["https://data.delijn.be/stops/302280", "https://data.delijn.be/stops/302285"], ["https://data.delijn.be/stops/204185", "https://data.delijn.be/stops/205185"], ["https://data.delijn.be/stops/403179", "https://data.delijn.be/stops/403262"], ["https://data.delijn.be/stops/106467", "https://data.delijn.be/stops/106468"], ["https://data.delijn.be/stops/204332", "https://data.delijn.be/stops/205333"], ["https://data.delijn.be/stops/204137", "https://data.delijn.be/stops/205239"], ["https://data.delijn.be/stops/502186", "https://data.delijn.be/stops/507187"], ["https://data.delijn.be/stops/101699", "https://data.delijn.be/stops/101701"], ["https://data.delijn.be/stops/502580", "https://data.delijn.be/stops/507725"], ["https://data.delijn.be/stops/300862", "https://data.delijn.be/stops/307233"], ["https://data.delijn.be/stops/306914", "https://data.delijn.be/stops/308875"], ["https://data.delijn.be/stops/400391", "https://data.delijn.be/stops/406485"], ["https://data.delijn.be/stops/503634", "https://data.delijn.be/stops/504677"], ["https://data.delijn.be/stops/200150", "https://data.delijn.be/stops/200511"], ["https://data.delijn.be/stops/207784", "https://data.delijn.be/stops/207789"], ["https://data.delijn.be/stops/403320", "https://data.delijn.be/stops/403321"], ["https://data.delijn.be/stops/101954", "https://data.delijn.be/stops/108311"], ["https://data.delijn.be/stops/106201", "https://data.delijn.be/stops/106203"], ["https://data.delijn.be/stops/505608", "https://data.delijn.be/stops/505726"], ["https://data.delijn.be/stops/505341", "https://data.delijn.be/stops/505756"], ["https://data.delijn.be/stops/208068", "https://data.delijn.be/stops/209068"], ["https://data.delijn.be/stops/300160", "https://data.delijn.be/stops/300163"], ["https://data.delijn.be/stops/504073", "https://data.delijn.be/stops/504692"], ["https://data.delijn.be/stops/402477", "https://data.delijn.be/stops/407547"], ["https://data.delijn.be/stops/401787", "https://data.delijn.be/stops/406015"], ["https://data.delijn.be/stops/202149", "https://data.delijn.be/stops/203150"], ["https://data.delijn.be/stops/402956", "https://data.delijn.be/stops/408179"], ["https://data.delijn.be/stops/404506", "https://data.delijn.be/stops/404544"], ["https://data.delijn.be/stops/102074", "https://data.delijn.be/stops/108838"], ["https://data.delijn.be/stops/101064", "https://data.delijn.be/stops/106743"], ["https://data.delijn.be/stops/301831", "https://data.delijn.be/stops/305983"], ["https://data.delijn.be/stops/101831", "https://data.delijn.be/stops/107328"], ["https://data.delijn.be/stops/504372", "https://data.delijn.be/stops/505224"], ["https://data.delijn.be/stops/405796", "https://data.delijn.be/stops/406386"], ["https://data.delijn.be/stops/101783", "https://data.delijn.be/stops/104113"], ["https://data.delijn.be/stops/108334", "https://data.delijn.be/stops/109301"], ["https://data.delijn.be/stops/408665", "https://data.delijn.be/stops/410191"], ["https://data.delijn.be/stops/503193", "https://data.delijn.be/stops/508208"], ["https://data.delijn.be/stops/105042", "https://data.delijn.be/stops/105049"], ["https://data.delijn.be/stops/300852", "https://data.delijn.be/stops/303831"], ["https://data.delijn.be/stops/405447", "https://data.delijn.be/stops/409280"], ["https://data.delijn.be/stops/204755", "https://data.delijn.be/stops/205754"], ["https://data.delijn.be/stops/206760", "https://data.delijn.be/stops/209581"], ["https://data.delijn.be/stops/505718", "https://data.delijn.be/stops/508488"], ["https://data.delijn.be/stops/108510", "https://data.delijn.be/stops/108512"], ["https://data.delijn.be/stops/405673", "https://data.delijn.be/stops/407334"], ["https://data.delijn.be/stops/306292", "https://data.delijn.be/stops/306294"], ["https://data.delijn.be/stops/105624", "https://data.delijn.be/stops/105626"], ["https://data.delijn.be/stops/407610", "https://data.delijn.be/stops/407611"], ["https://data.delijn.be/stops/307987", "https://data.delijn.be/stops/307990"], ["https://data.delijn.be/stops/504353", "https://data.delijn.be/stops/509348"], ["https://data.delijn.be/stops/400688", "https://data.delijn.be/stops/404309"], ["https://data.delijn.be/stops/304025", "https://data.delijn.be/stops/304821"], ["https://data.delijn.be/stops/202810", "https://data.delijn.be/stops/203867"], ["https://data.delijn.be/stops/204301", "https://data.delijn.be/stops/205301"], ["https://data.delijn.be/stops/104422", "https://data.delijn.be/stops/205288"], ["https://data.delijn.be/stops/108899", "https://data.delijn.be/stops/108901"], ["https://data.delijn.be/stops/106606", "https://data.delijn.be/stops/106685"], ["https://data.delijn.be/stops/103112", "https://data.delijn.be/stops/105345"], ["https://data.delijn.be/stops/202500", "https://data.delijn.be/stops/203500"], ["https://data.delijn.be/stops/201675", "https://data.delijn.be/stops/203209"], ["https://data.delijn.be/stops/402585", "https://data.delijn.be/stops/405485"], ["https://data.delijn.be/stops/203851", "https://data.delijn.be/stops/211098"], ["https://data.delijn.be/stops/303782", "https://data.delijn.be/stops/303783"], ["https://data.delijn.be/stops/202543", "https://data.delijn.be/stops/210016"], ["https://data.delijn.be/stops/409742", "https://data.delijn.be/stops/409754"], ["https://data.delijn.be/stops/400686", "https://data.delijn.be/stops/404603"], ["https://data.delijn.be/stops/503502", "https://data.delijn.be/stops/508503"], ["https://data.delijn.be/stops/102069", "https://data.delijn.be/stops/106929"], ["https://data.delijn.be/stops/305209", "https://data.delijn.be/stops/308681"], ["https://data.delijn.be/stops/103040", "https://data.delijn.be/stops/104680"], ["https://data.delijn.be/stops/106911", "https://data.delijn.be/stops/107259"], ["https://data.delijn.be/stops/401960", "https://data.delijn.be/stops/402961"], ["https://data.delijn.be/stops/305435", "https://data.delijn.be/stops/305436"], ["https://data.delijn.be/stops/208102", "https://data.delijn.be/stops/209103"], ["https://data.delijn.be/stops/107094", "https://data.delijn.be/stops/108199"], ["https://data.delijn.be/stops/404424", "https://data.delijn.be/stops/404425"], ["https://data.delijn.be/stops/105097", "https://data.delijn.be/stops/105098"], ["https://data.delijn.be/stops/102396", "https://data.delijn.be/stops/108183"], ["https://data.delijn.be/stops/402022", "https://data.delijn.be/stops/408877"], ["https://data.delijn.be/stops/304247", "https://data.delijn.be/stops/306669"], ["https://data.delijn.be/stops/401672", "https://data.delijn.be/stops/308287"], ["https://data.delijn.be/stops/402737", "https://data.delijn.be/stops/405947"], ["https://data.delijn.be/stops/409365", "https://data.delijn.be/stops/409378"], ["https://data.delijn.be/stops/206064", "https://data.delijn.be/stops/207063"], ["https://data.delijn.be/stops/401431", "https://data.delijn.be/stops/401576"], ["https://data.delijn.be/stops/407926", "https://data.delijn.be/stops/407959"], ["https://data.delijn.be/stops/503039", "https://data.delijn.be/stops/508039"], ["https://data.delijn.be/stops/101137", "https://data.delijn.be/stops/101138"], ["https://data.delijn.be/stops/408293", "https://data.delijn.be/stops/408438"], ["https://data.delijn.be/stops/308251", "https://data.delijn.be/stops/308293"], ["https://data.delijn.be/stops/408980", "https://data.delijn.be/stops/408992"], ["https://data.delijn.be/stops/501327", "https://data.delijn.be/stops/506565"], ["https://data.delijn.be/stops/508268", "https://data.delijn.be/stops/508275"], ["https://data.delijn.be/stops/403991", "https://data.delijn.be/stops/407066"], ["https://data.delijn.be/stops/405335", "https://data.delijn.be/stops/405337"], ["https://data.delijn.be/stops/506001", "https://data.delijn.be/stops/509559"], ["https://data.delijn.be/stops/303761", "https://data.delijn.be/stops/303762"], ["https://data.delijn.be/stops/408641", "https://data.delijn.be/stops/408736"], ["https://data.delijn.be/stops/308233", "https://data.delijn.be/stops/308234"], ["https://data.delijn.be/stops/407648", "https://data.delijn.be/stops/407669"], ["https://data.delijn.be/stops/201238", "https://data.delijn.be/stops/205925"], ["https://data.delijn.be/stops/400691", "https://data.delijn.be/stops/409567"], ["https://data.delijn.be/stops/200679", "https://data.delijn.be/stops/201737"], ["https://data.delijn.be/stops/102305", "https://data.delijn.be/stops/104485"], ["https://data.delijn.be/stops/405501", "https://data.delijn.be/stops/406243"], ["https://data.delijn.be/stops/402952", "https://data.delijn.be/stops/405312"], ["https://data.delijn.be/stops/206364", "https://data.delijn.be/stops/207710"], ["https://data.delijn.be/stops/300167", "https://data.delijn.be/stops/300168"], ["https://data.delijn.be/stops/105562", "https://data.delijn.be/stops/105563"], ["https://data.delijn.be/stops/302676", "https://data.delijn.be/stops/302694"], ["https://data.delijn.be/stops/505284", "https://data.delijn.be/stops/508293"], ["https://data.delijn.be/stops/303341", "https://data.delijn.be/stops/303343"], ["https://data.delijn.be/stops/206651", "https://data.delijn.be/stops/207600"], ["https://data.delijn.be/stops/109730", "https://data.delijn.be/stops/109731"], ["https://data.delijn.be/stops/304937", "https://data.delijn.be/stops/307736"], ["https://data.delijn.be/stops/307752", "https://data.delijn.be/stops/307766"], ["https://data.delijn.be/stops/502793", "https://data.delijn.be/stops/507115"], ["https://data.delijn.be/stops/305001", "https://data.delijn.be/stops/305022"], ["https://data.delijn.be/stops/101724", "https://data.delijn.be/stops/101847"], ["https://data.delijn.be/stops/200031", "https://data.delijn.be/stops/201031"], ["https://data.delijn.be/stops/109055", "https://data.delijn.be/stops/109060"], ["https://data.delijn.be/stops/501375", "https://data.delijn.be/stops/506372"], ["https://data.delijn.be/stops/208106", "https://data.delijn.be/stops/209777"], ["https://data.delijn.be/stops/305924", "https://data.delijn.be/stops/308978"], ["https://data.delijn.be/stops/502547", "https://data.delijn.be/stops/505231"], ["https://data.delijn.be/stops/503520", "https://data.delijn.be/stops/508722"], ["https://data.delijn.be/stops/503277", "https://data.delijn.be/stops/505292"], ["https://data.delijn.be/stops/301464", "https://data.delijn.be/stops/301466"], ["https://data.delijn.be/stops/303577", "https://data.delijn.be/stops/303583"], ["https://data.delijn.be/stops/205533", "https://data.delijn.be/stops/205544"], ["https://data.delijn.be/stops/104901", "https://data.delijn.be/stops/107607"], ["https://data.delijn.be/stops/202682", "https://data.delijn.be/stops/211709"], ["https://data.delijn.be/stops/108263", "https://data.delijn.be/stops/109338"], ["https://data.delijn.be/stops/204648", "https://data.delijn.be/stops/205272"], ["https://data.delijn.be/stops/108339", "https://data.delijn.be/stops/108341"], ["https://data.delijn.be/stops/504148", "https://data.delijn.be/stops/509136"], ["https://data.delijn.be/stops/503429", "https://data.delijn.be/stops/510025"], ["https://data.delijn.be/stops/403104", "https://data.delijn.be/stops/403112"], ["https://data.delijn.be/stops/502140", "https://data.delijn.be/stops/507728"], ["https://data.delijn.be/stops/207177", "https://data.delijn.be/stops/308978"], ["https://data.delijn.be/stops/400121", "https://data.delijn.be/stops/400162"], ["https://data.delijn.be/stops/106779", "https://data.delijn.be/stops/106780"], ["https://data.delijn.be/stops/201253", "https://data.delijn.be/stops/201254"], ["https://data.delijn.be/stops/407285", "https://data.delijn.be/stops/409492"], ["https://data.delijn.be/stops/403596", "https://data.delijn.be/stops/403597"], ["https://data.delijn.be/stops/504175", "https://data.delijn.be/stops/509175"], ["https://data.delijn.be/stops/507479", "https://data.delijn.be/stops/509929"], ["https://data.delijn.be/stops/301050", "https://data.delijn.be/stops/301061"], ["https://data.delijn.be/stops/302288", "https://data.delijn.be/stops/302289"], ["https://data.delijn.be/stops/209089", "https://data.delijn.be/stops/507962"], ["https://data.delijn.be/stops/503784", "https://data.delijn.be/stops/503785"], ["https://data.delijn.be/stops/301687", "https://data.delijn.be/stops/301690"], ["https://data.delijn.be/stops/408550", "https://data.delijn.be/stops/408675"], ["https://data.delijn.be/stops/400090", "https://data.delijn.be/stops/400151"], ["https://data.delijn.be/stops/304761", "https://data.delijn.be/stops/304767"], ["https://data.delijn.be/stops/102446", "https://data.delijn.be/stops/106010"], ["https://data.delijn.be/stops/202694", "https://data.delijn.be/stops/203678"], ["https://data.delijn.be/stops/206801", "https://data.delijn.be/stops/208622"], ["https://data.delijn.be/stops/406117", "https://data.delijn.be/stops/406126"], ["https://data.delijn.be/stops/401036", "https://data.delijn.be/stops/404869"], ["https://data.delijn.be/stops/101888", "https://data.delijn.be/stops/406833"], ["https://data.delijn.be/stops/509031", "https://data.delijn.be/stops/509471"], ["https://data.delijn.be/stops/502640", "https://data.delijn.be/stops/507397"], ["https://data.delijn.be/stops/108998", "https://data.delijn.be/stops/108999"], ["https://data.delijn.be/stops/501192", "https://data.delijn.be/stops/501497"], ["https://data.delijn.be/stops/405906", "https://data.delijn.be/stops/405907"], ["https://data.delijn.be/stops/303759", "https://data.delijn.be/stops/303781"], ["https://data.delijn.be/stops/407014", "https://data.delijn.be/stops/408052"], ["https://data.delijn.be/stops/305146", "https://data.delijn.be/stops/305147"], ["https://data.delijn.be/stops/505124", "https://data.delijn.be/stops/505125"], ["https://data.delijn.be/stops/203308", "https://data.delijn.be/stops/203309"], ["https://data.delijn.be/stops/301192", "https://data.delijn.be/stops/301193"], ["https://data.delijn.be/stops/506039", "https://data.delijn.be/stops/506329"], ["https://data.delijn.be/stops/407741", "https://data.delijn.be/stops/409625"], ["https://data.delijn.be/stops/307903", "https://data.delijn.be/stops/308490"], ["https://data.delijn.be/stops/302937", "https://data.delijn.be/stops/304710"], ["https://data.delijn.be/stops/108474", "https://data.delijn.be/stops/109085"], ["https://data.delijn.be/stops/402602", "https://data.delijn.be/stops/402642"], ["https://data.delijn.be/stops/508360", "https://data.delijn.be/stops/509790"], ["https://data.delijn.be/stops/201932", "https://data.delijn.be/stops/202512"], ["https://data.delijn.be/stops/508713", "https://data.delijn.be/stops/509970"], ["https://data.delijn.be/stops/305124", "https://data.delijn.be/stops/305125"], ["https://data.delijn.be/stops/107078", "https://data.delijn.be/stops/107079"], ["https://data.delijn.be/stops/404659", "https://data.delijn.be/stops/404671"], ["https://data.delijn.be/stops/206648", "https://data.delijn.be/stops/207648"], ["https://data.delijn.be/stops/401000", "https://data.delijn.be/stops/409822"], ["https://data.delijn.be/stops/509165", "https://data.delijn.be/stops/509192"], ["https://data.delijn.be/stops/303839", "https://data.delijn.be/stops/303861"], ["https://data.delijn.be/stops/505630", "https://data.delijn.be/stops/505981"], ["https://data.delijn.be/stops/402214", "https://data.delijn.be/stops/404861"], ["https://data.delijn.be/stops/300095", "https://data.delijn.be/stops/304411"], ["https://data.delijn.be/stops/502558", "https://data.delijn.be/stops/507552"], ["https://data.delijn.be/stops/409060", "https://data.delijn.be/stops/409081"], ["https://data.delijn.be/stops/106420", "https://data.delijn.be/stops/106561"], ["https://data.delijn.be/stops/406738", "https://data.delijn.be/stops/407446"], ["https://data.delijn.be/stops/304839", "https://data.delijn.be/stops/304884"], ["https://data.delijn.be/stops/101757", "https://data.delijn.be/stops/102181"], ["https://data.delijn.be/stops/204213", "https://data.delijn.be/stops/205175"], ["https://data.delijn.be/stops/408760", "https://data.delijn.be/stops/408812"], ["https://data.delijn.be/stops/206055", "https://data.delijn.be/stops/217002"], ["https://data.delijn.be/stops/304484", "https://data.delijn.be/stops/304492"], ["https://data.delijn.be/stops/206786", "https://data.delijn.be/stops/208561"], ["https://data.delijn.be/stops/501335", "https://data.delijn.be/stops/501349"], ["https://data.delijn.be/stops/201674", "https://data.delijn.be/stops/203206"], ["https://data.delijn.be/stops/106038", "https://data.delijn.be/stops/106569"], ["https://data.delijn.be/stops/501071", "https://data.delijn.be/stops/506067"], ["https://data.delijn.be/stops/102866", "https://data.delijn.be/stops/104410"], ["https://data.delijn.be/stops/209589", "https://data.delijn.be/stops/307529"], ["https://data.delijn.be/stops/304792", "https://data.delijn.be/stops/304799"], ["https://data.delijn.be/stops/403314", "https://data.delijn.be/stops/403315"], ["https://data.delijn.be/stops/201672", "https://data.delijn.be/stops/202211"], ["https://data.delijn.be/stops/401791", "https://data.delijn.be/stops/406121"], ["https://data.delijn.be/stops/200987", "https://data.delijn.be/stops/201190"], ["https://data.delijn.be/stops/109767", "https://data.delijn.be/stops/109785"], ["https://data.delijn.be/stops/400508", "https://data.delijn.be/stops/403898"], ["https://data.delijn.be/stops/102287", "https://data.delijn.be/stops/109651"], ["https://data.delijn.be/stops/501149", "https://data.delijn.be/stops/509832"], ["https://data.delijn.be/stops/102602", "https://data.delijn.be/stops/107945"], ["https://data.delijn.be/stops/307620", "https://data.delijn.be/stops/308559"], ["https://data.delijn.be/stops/200434", "https://data.delijn.be/stops/201549"], ["https://data.delijn.be/stops/101821", "https://data.delijn.be/stops/107071"], ["https://data.delijn.be/stops/303034", "https://data.delijn.be/stops/306319"], ["https://data.delijn.be/stops/504140", "https://data.delijn.be/stops/509143"], ["https://data.delijn.be/stops/407684", "https://data.delijn.be/stops/407686"], ["https://data.delijn.be/stops/103576", "https://data.delijn.be/stops/106614"], ["https://data.delijn.be/stops/301270", "https://data.delijn.be/stops/307844"], ["https://data.delijn.be/stops/105772", "https://data.delijn.be/stops/105783"], ["https://data.delijn.be/stops/300170", "https://data.delijn.be/stops/301224"], ["https://data.delijn.be/stops/502030", "https://data.delijn.be/stops/507038"], ["https://data.delijn.be/stops/504243", "https://data.delijn.be/stops/509445"], ["https://data.delijn.be/stops/503382", "https://data.delijn.be/stops/508382"], ["https://data.delijn.be/stops/505804", "https://data.delijn.be/stops/590007"], ["https://data.delijn.be/stops/204330", "https://data.delijn.be/stops/205292"], ["https://data.delijn.be/stops/300574", "https://data.delijn.be/stops/300588"], ["https://data.delijn.be/stops/303576", "https://data.delijn.be/stops/305225"], ["https://data.delijn.be/stops/506343", "https://data.delijn.be/stops/509897"], ["https://data.delijn.be/stops/505933", "https://data.delijn.be/stops/507012"], ["https://data.delijn.be/stops/503345", "https://data.delijn.be/stops/508345"], ["https://data.delijn.be/stops/301831", "https://data.delijn.be/stops/301832"], ["https://data.delijn.be/stops/408388", "https://data.delijn.be/stops/408389"], ["https://data.delijn.be/stops/407482", "https://data.delijn.be/stops/407540"], ["https://data.delijn.be/stops/303226", "https://data.delijn.be/stops/303230"], ["https://data.delijn.be/stops/305958", "https://data.delijn.be/stops/305961"], ["https://data.delijn.be/stops/204924", "https://data.delijn.be/stops/210051"], ["https://data.delijn.be/stops/104993", "https://data.delijn.be/stops/109998"], ["https://data.delijn.be/stops/505806", "https://data.delijn.be/stops/505832"], ["https://data.delijn.be/stops/200820", "https://data.delijn.be/stops/209656"], ["https://data.delijn.be/stops/404212", "https://data.delijn.be/stops/404213"], ["https://data.delijn.be/stops/304139", "https://data.delijn.be/stops/307565"], ["https://data.delijn.be/stops/202911", "https://data.delijn.be/stops/202916"], ["https://data.delijn.be/stops/106847", "https://data.delijn.be/stops/106850"], ["https://data.delijn.be/stops/504261", "https://data.delijn.be/stops/509261"], ["https://data.delijn.be/stops/206056", "https://data.delijn.be/stops/206964"], ["https://data.delijn.be/stops/503466", "https://data.delijn.be/stops/503644"], ["https://data.delijn.be/stops/408513", "https://data.delijn.be/stops/408538"], ["https://data.delijn.be/stops/307184", "https://data.delijn.be/stops/307187"], ["https://data.delijn.be/stops/506094", "https://data.delijn.be/stops/509811"], ["https://data.delijn.be/stops/204245", "https://data.delijn.be/stops/205248"], ["https://data.delijn.be/stops/202251", "https://data.delijn.be/stops/202252"], ["https://data.delijn.be/stops/200688", "https://data.delijn.be/stops/201720"], ["https://data.delijn.be/stops/408168", "https://data.delijn.be/stops/409561"], ["https://data.delijn.be/stops/108787", "https://data.delijn.be/stops/108789"], ["https://data.delijn.be/stops/104953", "https://data.delijn.be/stops/104954"], ["https://data.delijn.be/stops/406161", "https://data.delijn.be/stops/406264"], ["https://data.delijn.be/stops/201525", "https://data.delijn.be/stops/210131"], ["https://data.delijn.be/stops/301603", "https://data.delijn.be/stops/301619"], ["https://data.delijn.be/stops/200824", "https://data.delijn.be/stops/200847"], ["https://data.delijn.be/stops/200853", "https://data.delijn.be/stops/200890"], ["https://data.delijn.be/stops/301895", "https://data.delijn.be/stops/305755"], ["https://data.delijn.be/stops/202904", "https://data.delijn.be/stops/203905"], ["https://data.delijn.be/stops/304160", "https://data.delijn.be/stops/304227"], ["https://data.delijn.be/stops/101217", "https://data.delijn.be/stops/104448"], ["https://data.delijn.be/stops/306198", "https://data.delijn.be/stops/306199"], ["https://data.delijn.be/stops/400803", "https://data.delijn.be/stops/400805"], ["https://data.delijn.be/stops/107965", "https://data.delijn.be/stops/107966"], ["https://data.delijn.be/stops/201554", "https://data.delijn.be/stops/201668"], ["https://data.delijn.be/stops/301922", "https://data.delijn.be/stops/302795"], ["https://data.delijn.be/stops/202369", "https://data.delijn.be/stops/203998"], ["https://data.delijn.be/stops/404916", "https://data.delijn.be/stops/404917"], ["https://data.delijn.be/stops/102660", "https://data.delijn.be/stops/105177"], ["https://data.delijn.be/stops/201100", "https://data.delijn.be/stops/201101"], ["https://data.delijn.be/stops/101883", "https://data.delijn.be/stops/104561"], ["https://data.delijn.be/stops/503225", "https://data.delijn.be/stops/505392"], ["https://data.delijn.be/stops/101085", "https://data.delijn.be/stops/103575"], ["https://data.delijn.be/stops/402095", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/302552", "https://data.delijn.be/stops/305820"], ["https://data.delijn.be/stops/302984", "https://data.delijn.be/stops/306715"], ["https://data.delijn.be/stops/304127", "https://data.delijn.be/stops/304580"], ["https://data.delijn.be/stops/109169", "https://data.delijn.be/stops/109171"], ["https://data.delijn.be/stops/104793", "https://data.delijn.be/stops/105102"], ["https://data.delijn.be/stops/501551", "https://data.delijn.be/stops/502521"], ["https://data.delijn.be/stops/307557", "https://data.delijn.be/stops/307677"], ["https://data.delijn.be/stops/504101", "https://data.delijn.be/stops/504706"], ["https://data.delijn.be/stops/508177", "https://data.delijn.be/stops/508264"], ["https://data.delijn.be/stops/302904", "https://data.delijn.be/stops/302905"], ["https://data.delijn.be/stops/201565", "https://data.delijn.be/stops/210019"], ["https://data.delijn.be/stops/302205", "https://data.delijn.be/stops/302208"], ["https://data.delijn.be/stops/504576", "https://data.delijn.be/stops/505215"], ["https://data.delijn.be/stops/300666", "https://data.delijn.be/stops/306885"], ["https://data.delijn.be/stops/206866", "https://data.delijn.be/stops/209620"], ["https://data.delijn.be/stops/503014", "https://data.delijn.be/stops/503015"], ["https://data.delijn.be/stops/404928", "https://data.delijn.be/stops/407644"], ["https://data.delijn.be/stops/504718", "https://data.delijn.be/stops/504721"], ["https://data.delijn.be/stops/200763", "https://data.delijn.be/stops/208753"], ["https://data.delijn.be/stops/503605", "https://data.delijn.be/stops/503610"], ["https://data.delijn.be/stops/103679", "https://data.delijn.be/stops/106195"], ["https://data.delijn.be/stops/204042", "https://data.delijn.be/stops/205041"], ["https://data.delijn.be/stops/401279", "https://data.delijn.be/stops/401282"], ["https://data.delijn.be/stops/300183", "https://data.delijn.be/stops/300184"], ["https://data.delijn.be/stops/400334", "https://data.delijn.be/stops/400335"], ["https://data.delijn.be/stops/502196", "https://data.delijn.be/stops/507190"], ["https://data.delijn.be/stops/101515", "https://data.delijn.be/stops/101992"], ["https://data.delijn.be/stops/405772", "https://data.delijn.be/stops/409421"], ["https://data.delijn.be/stops/505681", "https://data.delijn.be/stops/505686"], ["https://data.delijn.be/stops/303513", "https://data.delijn.be/stops/304175"], ["https://data.delijn.be/stops/506097", "https://data.delijn.be/stops/507214"], ["https://data.delijn.be/stops/200900", "https://data.delijn.be/stops/505607"], ["https://data.delijn.be/stops/303824", "https://data.delijn.be/stops/303826"], ["https://data.delijn.be/stops/403448", "https://data.delijn.be/stops/404224"], ["https://data.delijn.be/stops/400916", "https://data.delijn.be/stops/400921"], ["https://data.delijn.be/stops/102093", "https://data.delijn.be/stops/105492"], ["https://data.delijn.be/stops/106238", "https://data.delijn.be/stops/106239"], ["https://data.delijn.be/stops/404042", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/103283", "https://data.delijn.be/stops/104965"], ["https://data.delijn.be/stops/302025", "https://data.delijn.be/stops/306381"], ["https://data.delijn.be/stops/406247", "https://data.delijn.be/stops/406417"], ["https://data.delijn.be/stops/200863", "https://data.delijn.be/stops/202295"], ["https://data.delijn.be/stops/305381", "https://data.delijn.be/stops/333453"], ["https://data.delijn.be/stops/202285", "https://data.delijn.be/stops/203284"], ["https://data.delijn.be/stops/300551", "https://data.delijn.be/stops/300558"], ["https://data.delijn.be/stops/504657", "https://data.delijn.be/stops/509642"], ["https://data.delijn.be/stops/405272", "https://data.delijn.be/stops/405275"], ["https://data.delijn.be/stops/202672", "https://data.delijn.be/stops/211036"], ["https://data.delijn.be/stops/205017", "https://data.delijn.be/stops/205088"], ["https://data.delijn.be/stops/405736", "https://data.delijn.be/stops/410141"], ["https://data.delijn.be/stops/408608", "https://data.delijn.be/stops/408700"], ["https://data.delijn.be/stops/400486", "https://data.delijn.be/stops/407210"], ["https://data.delijn.be/stops/409245", "https://data.delijn.be/stops/409246"], ["https://data.delijn.be/stops/505070", "https://data.delijn.be/stops/505071"], ["https://data.delijn.be/stops/103570", "https://data.delijn.be/stops/107134"], ["https://data.delijn.be/stops/207992", "https://data.delijn.be/stops/307028"], ["https://data.delijn.be/stops/409368", "https://data.delijn.be/stops/409383"], ["https://data.delijn.be/stops/204399", "https://data.delijn.be/stops/205399"], ["https://data.delijn.be/stops/200837", "https://data.delijn.be/stops/200838"], ["https://data.delijn.be/stops/201739", "https://data.delijn.be/stops/210015"], ["https://data.delijn.be/stops/104563", "https://data.delijn.be/stops/104564"], ["https://data.delijn.be/stops/505384", "https://data.delijn.be/stops/507698"], ["https://data.delijn.be/stops/503523", "https://data.delijn.be/stops/508378"], ["https://data.delijn.be/stops/106854", "https://data.delijn.be/stops/107463"], ["https://data.delijn.be/stops/301609", "https://data.delijn.be/stops/301633"], ["https://data.delijn.be/stops/302091", "https://data.delijn.be/stops/302101"], ["https://data.delijn.be/stops/211119", "https://data.delijn.be/stops/211120"], ["https://data.delijn.be/stops/405465", "https://data.delijn.be/stops/408814"], ["https://data.delijn.be/stops/504322", "https://data.delijn.be/stops/509295"], ["https://data.delijn.be/stops/401088", "https://data.delijn.be/stops/401097"], ["https://data.delijn.be/stops/400793", "https://data.delijn.be/stops/409539"], ["https://data.delijn.be/stops/207331", "https://data.delijn.be/stops/207708"], ["https://data.delijn.be/stops/407612", "https://data.delijn.be/stops/407745"], ["https://data.delijn.be/stops/405659", "https://data.delijn.be/stops/408665"], ["https://data.delijn.be/stops/501600", "https://data.delijn.be/stops/504510"], ["https://data.delijn.be/stops/307478", "https://data.delijn.be/stops/307479"], ["https://data.delijn.be/stops/208066", "https://data.delijn.be/stops/209521"], ["https://data.delijn.be/stops/406341", "https://data.delijn.be/stops/406346"], ["https://data.delijn.be/stops/408135", "https://data.delijn.be/stops/408137"], ["https://data.delijn.be/stops/408497", "https://data.delijn.be/stops/408692"], ["https://data.delijn.be/stops/400511", "https://data.delijn.be/stops/402641"], ["https://data.delijn.be/stops/501417", "https://data.delijn.be/stops/506413"], ["https://data.delijn.be/stops/307145", "https://data.delijn.be/stops/307146"], ["https://data.delijn.be/stops/305144", "https://data.delijn.be/stops/305223"], ["https://data.delijn.be/stops/302414", "https://data.delijn.be/stops/302437"], ["https://data.delijn.be/stops/200300", "https://data.delijn.be/stops/201301"], ["https://data.delijn.be/stops/206853", "https://data.delijn.be/stops/207858"], ["https://data.delijn.be/stops/202722", "https://data.delijn.be/stops/202723"], ["https://data.delijn.be/stops/300703", "https://data.delijn.be/stops/308064"], ["https://data.delijn.be/stops/300934", "https://data.delijn.be/stops/300991"], ["https://data.delijn.be/stops/303953", "https://data.delijn.be/stops/303955"], ["https://data.delijn.be/stops/102454", "https://data.delijn.be/stops/108318"], ["https://data.delijn.be/stops/501438", "https://data.delijn.be/stops/506092"], ["https://data.delijn.be/stops/101891", "https://data.delijn.be/stops/104838"], ["https://data.delijn.be/stops/107496", "https://data.delijn.be/stops/107524"], ["https://data.delijn.be/stops/204712", "https://data.delijn.be/stops/205896"], ["https://data.delijn.be/stops/206943", "https://data.delijn.be/stops/307744"], ["https://data.delijn.be/stops/504405", "https://data.delijn.be/stops/509405"], ["https://data.delijn.be/stops/408134", "https://data.delijn.be/stops/408194"], ["https://data.delijn.be/stops/206149", "https://data.delijn.be/stops/207149"], ["https://data.delijn.be/stops/301364", "https://data.delijn.be/stops/306128"], ["https://data.delijn.be/stops/303123", "https://data.delijn.be/stops/307203"], ["https://data.delijn.be/stops/210084", "https://data.delijn.be/stops/211084"], ["https://data.delijn.be/stops/504847", "https://data.delijn.be/stops/504945"], ["https://data.delijn.be/stops/302310", "https://data.delijn.be/stops/304049"], ["https://data.delijn.be/stops/501362", "https://data.delijn.be/stops/506369"], ["https://data.delijn.be/stops/200863", "https://data.delijn.be/stops/200875"], ["https://data.delijn.be/stops/303145", "https://data.delijn.be/stops/308438"], ["https://data.delijn.be/stops/108337", "https://data.delijn.be/stops/109301"], ["https://data.delijn.be/stops/303446", "https://data.delijn.be/stops/304841"], ["https://data.delijn.be/stops/204118", "https://data.delijn.be/stops/205117"], ["https://data.delijn.be/stops/102379", "https://data.delijn.be/stops/109383"], ["https://data.delijn.be/stops/500017", "https://data.delijn.be/stops/507654"], ["https://data.delijn.be/stops/302847", "https://data.delijn.be/stops/303324"], ["https://data.delijn.be/stops/305330", "https://data.delijn.be/stops/305331"], ["https://data.delijn.be/stops/402456", "https://data.delijn.be/stops/402468"], ["https://data.delijn.be/stops/501442", "https://data.delijn.be/stops/506440"], ["https://data.delijn.be/stops/404403", "https://data.delijn.be/stops/404426"], ["https://data.delijn.be/stops/202932", "https://data.delijn.be/stops/203933"], ["https://data.delijn.be/stops/105601", "https://data.delijn.be/stops/105603"], ["https://data.delijn.be/stops/301328", "https://data.delijn.be/stops/306655"], ["https://data.delijn.be/stops/300733", "https://data.delijn.be/stops/302199"], ["https://data.delijn.be/stops/503589", "https://data.delijn.be/stops/505944"], ["https://data.delijn.be/stops/204786", "https://data.delijn.be/stops/214004"], ["https://data.delijn.be/stops/106395", "https://data.delijn.be/stops/107275"], ["https://data.delijn.be/stops/301257", "https://data.delijn.be/stops/307392"], ["https://data.delijn.be/stops/501600", "https://data.delijn.be/stops/506684"], ["https://data.delijn.be/stops/507239", "https://data.delijn.be/stops/507722"], ["https://data.delijn.be/stops/400710", "https://data.delijn.be/stops/404395"], ["https://data.delijn.be/stops/206580", "https://data.delijn.be/stops/207723"], ["https://data.delijn.be/stops/408596", "https://data.delijn.be/stops/408597"], ["https://data.delijn.be/stops/201876", "https://data.delijn.be/stops/210007"], ["https://data.delijn.be/stops/505084", "https://data.delijn.be/stops/509875"], ["https://data.delijn.be/stops/105205", "https://data.delijn.be/stops/108361"], ["https://data.delijn.be/stops/503155", "https://data.delijn.be/stops/508370"], ["https://data.delijn.be/stops/202063", "https://data.delijn.be/stops/203062"], ["https://data.delijn.be/stops/103550", "https://data.delijn.be/stops/105680"], ["https://data.delijn.be/stops/102163", "https://data.delijn.be/stops/104033"], ["https://data.delijn.be/stops/501419", "https://data.delijn.be/stops/506419"], ["https://data.delijn.be/stops/102647", "https://data.delijn.be/stops/107828"], ["https://data.delijn.be/stops/300262", "https://data.delijn.be/stops/300729"], ["https://data.delijn.be/stops/508607", "https://data.delijn.be/stops/508876"], ["https://data.delijn.be/stops/503365", "https://data.delijn.be/stops/508525"], ["https://data.delijn.be/stops/505713", "https://data.delijn.be/stops/508486"], ["https://data.delijn.be/stops/107124", "https://data.delijn.be/stops/108908"], ["https://data.delijn.be/stops/106486", "https://data.delijn.be/stops/106488"], ["https://data.delijn.be/stops/305342", "https://data.delijn.be/stops/305346"], ["https://data.delijn.be/stops/208731", "https://data.delijn.be/stops/209731"], ["https://data.delijn.be/stops/200825", "https://data.delijn.be/stops/203296"], ["https://data.delijn.be/stops/300935", "https://data.delijn.be/stops/304721"], ["https://data.delijn.be/stops/403448", "https://data.delijn.be/stops/407362"], ["https://data.delijn.be/stops/302101", "https://data.delijn.be/stops/302102"], ["https://data.delijn.be/stops/300065", "https://data.delijn.be/stops/300857"], ["https://data.delijn.be/stops/401618", "https://data.delijn.be/stops/308224"], ["https://data.delijn.be/stops/206954", "https://data.delijn.be/stops/300173"], ["https://data.delijn.be/stops/406141", "https://data.delijn.be/stops/406356"], ["https://data.delijn.be/stops/206318", "https://data.delijn.be/stops/207319"], ["https://data.delijn.be/stops/107339", "https://data.delijn.be/stops/108166"], ["https://data.delijn.be/stops/206818", "https://data.delijn.be/stops/206819"], ["https://data.delijn.be/stops/106144", "https://data.delijn.be/stops/106145"], ["https://data.delijn.be/stops/505578", "https://data.delijn.be/stops/508754"], ["https://data.delijn.be/stops/201339", "https://data.delijn.be/stops/210046"], ["https://data.delijn.be/stops/402332", "https://data.delijn.be/stops/402333"], ["https://data.delijn.be/stops/305344", "https://data.delijn.be/stops/307211"], ["https://data.delijn.be/stops/206969", "https://data.delijn.be/stops/206970"], ["https://data.delijn.be/stops/409262", "https://data.delijn.be/stops/409263"], ["https://data.delijn.be/stops/300297", "https://data.delijn.be/stops/301304"], ["https://data.delijn.be/stops/200673", "https://data.delijn.be/stops/201457"], ["https://data.delijn.be/stops/505018", "https://data.delijn.be/stops/505050"], ["https://data.delijn.be/stops/303478", "https://data.delijn.be/stops/303497"], ["https://data.delijn.be/stops/206168", "https://data.delijn.be/stops/207169"], ["https://data.delijn.be/stops/101810", "https://data.delijn.be/stops/101815"], ["https://data.delijn.be/stops/300008", "https://data.delijn.be/stops/306202"], ["https://data.delijn.be/stops/300511", "https://data.delijn.be/stops/300537"], ["https://data.delijn.be/stops/501216", "https://data.delijn.be/stops/506222"], ["https://data.delijn.be/stops/207765", "https://data.delijn.be/stops/208760"], ["https://data.delijn.be/stops/203450", "https://data.delijn.be/stops/209931"], ["https://data.delijn.be/stops/305285", "https://data.delijn.be/stops/305289"], ["https://data.delijn.be/stops/300533", "https://data.delijn.be/stops/303201"], ["https://data.delijn.be/stops/404811", "https://data.delijn.be/stops/406109"], ["https://data.delijn.be/stops/505803", "https://data.delijn.be/stops/509079"], ["https://data.delijn.be/stops/207654", "https://data.delijn.be/stops/207655"], ["https://data.delijn.be/stops/208316", "https://data.delijn.be/stops/208772"], ["https://data.delijn.be/stops/203096", "https://data.delijn.be/stops/203097"], ["https://data.delijn.be/stops/102778", "https://data.delijn.be/stops/105576"], ["https://data.delijn.be/stops/503475", "https://data.delijn.be/stops/508038"], ["https://data.delijn.be/stops/202655", "https://data.delijn.be/stops/203078"], ["https://data.delijn.be/stops/102640", "https://data.delijn.be/stops/103800"], ["https://data.delijn.be/stops/506675", "https://data.delijn.be/stops/506676"], ["https://data.delijn.be/stops/408570", "https://data.delijn.be/stops/408816"], ["https://data.delijn.be/stops/301338", "https://data.delijn.be/stops/301339"], ["https://data.delijn.be/stops/105207", "https://data.delijn.be/stops/108872"], ["https://data.delijn.be/stops/206967", "https://data.delijn.be/stops/207928"], ["https://data.delijn.be/stops/501026", "https://data.delijn.be/stops/501488"], ["https://data.delijn.be/stops/505186", "https://data.delijn.be/stops/505362"], ["https://data.delijn.be/stops/106239", "https://data.delijn.be/stops/106242"], ["https://data.delijn.be/stops/503124", "https://data.delijn.be/stops/508124"], ["https://data.delijn.be/stops/109724", "https://data.delijn.be/stops/109768"], ["https://data.delijn.be/stops/505385", "https://data.delijn.be/stops/508105"], ["https://data.delijn.be/stops/502163", "https://data.delijn.be/stops/507030"], ["https://data.delijn.be/stops/307197", "https://data.delijn.be/stops/307200"], ["https://data.delijn.be/stops/301619", "https://data.delijn.be/stops/304518"], ["https://data.delijn.be/stops/307149", "https://data.delijn.be/stops/307151"], ["https://data.delijn.be/stops/108460", "https://data.delijn.be/stops/108465"], ["https://data.delijn.be/stops/206571", "https://data.delijn.be/stops/206574"], ["https://data.delijn.be/stops/505060", "https://data.delijn.be/stops/505649"], ["https://data.delijn.be/stops/504572", "https://data.delijn.be/stops/504575"], ["https://data.delijn.be/stops/300759", "https://data.delijn.be/stops/301069"], ["https://data.delijn.be/stops/300685", "https://data.delijn.be/stops/306949"], ["https://data.delijn.be/stops/104486", "https://data.delijn.be/stops/104554"], ["https://data.delijn.be/stops/301656", "https://data.delijn.be/stops/301894"], ["https://data.delijn.be/stops/401514", "https://data.delijn.be/stops/404464"], ["https://data.delijn.be/stops/402100", "https://data.delijn.be/stops/402204"], ["https://data.delijn.be/stops/406682", "https://data.delijn.be/stops/406683"], ["https://data.delijn.be/stops/101978", "https://data.delijn.be/stops/109307"], ["https://data.delijn.be/stops/107574", "https://data.delijn.be/stops/107575"], ["https://data.delijn.be/stops/303314", "https://data.delijn.be/stops/303315"], ["https://data.delijn.be/stops/406111", "https://data.delijn.be/stops/406120"], ["https://data.delijn.be/stops/202897", "https://data.delijn.be/stops/210127"], ["https://data.delijn.be/stops/300738", "https://data.delijn.be/stops/302530"], ["https://data.delijn.be/stops/403092", "https://data.delijn.be/stops/403117"], ["https://data.delijn.be/stops/109025", "https://data.delijn.be/stops/109035"], ["https://data.delijn.be/stops/402507", "https://data.delijn.be/stops/402510"], ["https://data.delijn.be/stops/305063", "https://data.delijn.be/stops/306920"], ["https://data.delijn.be/stops/300308", "https://data.delijn.be/stops/300527"], ["https://data.delijn.be/stops/502642", "https://data.delijn.be/stops/507081"], ["https://data.delijn.be/stops/504432", "https://data.delijn.be/stops/505166"], ["https://data.delijn.be/stops/301604", "https://data.delijn.be/stops/301616"], ["https://data.delijn.be/stops/200927", "https://data.delijn.be/stops/208890"], ["https://data.delijn.be/stops/203113", "https://data.delijn.be/stops/205585"], ["https://data.delijn.be/stops/300395", "https://data.delijn.be/stops/301247"], ["https://data.delijn.be/stops/302049", "https://data.delijn.be/stops/302747"], ["https://data.delijn.be/stops/401245", "https://data.delijn.be/stops/410182"], ["https://data.delijn.be/stops/107725", "https://data.delijn.be/stops/109035"], ["https://data.delijn.be/stops/504777", "https://data.delijn.be/stops/508498"], ["https://data.delijn.be/stops/409744", "https://data.delijn.be/stops/409745"], ["https://data.delijn.be/stops/102935", "https://data.delijn.be/stops/104570"], ["https://data.delijn.be/stops/407078", "https://data.delijn.be/stops/407079"], ["https://data.delijn.be/stops/406137", "https://data.delijn.be/stops/406346"], ["https://data.delijn.be/stops/403599", "https://data.delijn.be/stops/407525"], ["https://data.delijn.be/stops/404345", "https://data.delijn.be/stops/404949"], ["https://data.delijn.be/stops/206260", "https://data.delijn.be/stops/207918"], ["https://data.delijn.be/stops/207804", "https://data.delijn.be/stops/208785"], ["https://data.delijn.be/stops/101450", "https://data.delijn.be/stops/102819"], ["https://data.delijn.be/stops/503671", "https://data.delijn.be/stops/508027"], ["https://data.delijn.be/stops/407464", "https://data.delijn.be/stops/410067"], ["https://data.delijn.be/stops/200186", "https://data.delijn.be/stops/201187"], ["https://data.delijn.be/stops/300041", "https://data.delijn.be/stops/306793"], ["https://data.delijn.be/stops/402390", "https://data.delijn.be/stops/404730"], ["https://data.delijn.be/stops/203397", "https://data.delijn.be/stops/203562"], ["https://data.delijn.be/stops/502361", "https://data.delijn.be/stops/502564"], ["https://data.delijn.be/stops/201849", "https://data.delijn.be/stops/209642"], ["https://data.delijn.be/stops/400913", "https://data.delijn.be/stops/400919"], ["https://data.delijn.be/stops/402407", "https://data.delijn.be/stops/402465"], ["https://data.delijn.be/stops/202815", "https://data.delijn.be/stops/202883"], ["https://data.delijn.be/stops/301638", "https://data.delijn.be/stops/306154"], ["https://data.delijn.be/stops/407537", "https://data.delijn.be/stops/409104"], ["https://data.delijn.be/stops/503718", "https://data.delijn.be/stops/508718"], ["https://data.delijn.be/stops/202230", "https://data.delijn.be/stops/203229"], ["https://data.delijn.be/stops/308415", "https://data.delijn.be/stops/308416"], ["https://data.delijn.be/stops/206525", "https://data.delijn.be/stops/206526"], ["https://data.delijn.be/stops/106377", "https://data.delijn.be/stops/106381"], ["https://data.delijn.be/stops/503854", "https://data.delijn.be/stops/508854"], ["https://data.delijn.be/stops/200406", "https://data.delijn.be/stops/201552"], ["https://data.delijn.be/stops/503574", "https://data.delijn.be/stops/509902"], ["https://data.delijn.be/stops/206770", "https://data.delijn.be/stops/206797"], ["https://data.delijn.be/stops/305018", "https://data.delijn.be/stops/308017"], ["https://data.delijn.be/stops/204437", "https://data.delijn.be/stops/204750"], ["https://data.delijn.be/stops/106954", "https://data.delijn.be/stops/107270"], ["https://data.delijn.be/stops/503486", "https://data.delijn.be/stops/508486"], ["https://data.delijn.be/stops/104036", "https://data.delijn.be/stops/108686"], ["https://data.delijn.be/stops/405024", "https://data.delijn.be/stops/406500"], ["https://data.delijn.be/stops/302613", "https://data.delijn.be/stops/302614"], ["https://data.delijn.be/stops/200797", "https://data.delijn.be/stops/211072"], ["https://data.delijn.be/stops/209387", "https://data.delijn.be/stops/209410"], ["https://data.delijn.be/stops/305795", "https://data.delijn.be/stops/305796"], ["https://data.delijn.be/stops/108878", "https://data.delijn.be/stops/108879"], ["https://data.delijn.be/stops/400258", "https://data.delijn.be/stops/405537"], ["https://data.delijn.be/stops/204179", "https://data.delijn.be/stops/204584"], ["https://data.delijn.be/stops/201295", "https://data.delijn.be/stops/209708"], ["https://data.delijn.be/stops/206514", "https://data.delijn.be/stops/207661"], ["https://data.delijn.be/stops/410188", "https://data.delijn.be/stops/410189"], ["https://data.delijn.be/stops/201254", "https://data.delijn.be/stops/201255"], ["https://data.delijn.be/stops/203834", "https://data.delijn.be/stops/208656"], ["https://data.delijn.be/stops/206733", "https://data.delijn.be/stops/206734"], ["https://data.delijn.be/stops/301220", "https://data.delijn.be/stops/301222"], ["https://data.delijn.be/stops/201951", "https://data.delijn.be/stops/201952"], ["https://data.delijn.be/stops/504687", "https://data.delijn.be/stops/508522"], ["https://data.delijn.be/stops/201852", "https://data.delijn.be/stops/210853"], ["https://data.delijn.be/stops/407919", "https://data.delijn.be/stops/407921"], ["https://data.delijn.be/stops/202510", "https://data.delijn.be/stops/203607"], ["https://data.delijn.be/stops/404266", "https://data.delijn.be/stops/408556"], ["https://data.delijn.be/stops/208427", "https://data.delijn.be/stops/208802"], ["https://data.delijn.be/stops/200330", "https://data.delijn.be/stops/203203"], ["https://data.delijn.be/stops/505717", "https://data.delijn.be/stops/505995"], ["https://data.delijn.be/stops/103003", "https://data.delijn.be/stops/106299"], ["https://data.delijn.be/stops/102861", "https://data.delijn.be/stops/104880"], ["https://data.delijn.be/stops/201863", "https://data.delijn.be/stops/203666"], ["https://data.delijn.be/stops/106032", "https://data.delijn.be/stops/106313"], ["https://data.delijn.be/stops/105224", "https://data.delijn.be/stops/108057"], ["https://data.delijn.be/stops/508069", "https://data.delijn.be/stops/508075"], ["https://data.delijn.be/stops/206906", "https://data.delijn.be/stops/207110"], ["https://data.delijn.be/stops/208582", "https://data.delijn.be/stops/209699"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/501509"], ["https://data.delijn.be/stops/505577", "https://data.delijn.be/stops/505741"], ["https://data.delijn.be/stops/404652", "https://data.delijn.be/stops/404676"], ["https://data.delijn.be/stops/208615", "https://data.delijn.be/stops/209608"], ["https://data.delijn.be/stops/406900", "https://data.delijn.be/stops/406950"], ["https://data.delijn.be/stops/303853", "https://data.delijn.be/stops/303854"], ["https://data.delijn.be/stops/105345", "https://data.delijn.be/stops/108980"], ["https://data.delijn.be/stops/107263", "https://data.delijn.be/stops/107267"], ["https://data.delijn.be/stops/106842", "https://data.delijn.be/stops/106986"], ["https://data.delijn.be/stops/301294", "https://data.delijn.be/stops/304691"], ["https://data.delijn.be/stops/104096", "https://data.delijn.be/stops/104097"], ["https://data.delijn.be/stops/504405", "https://data.delijn.be/stops/504543"], ["https://data.delijn.be/stops/502297", "https://data.delijn.be/stops/505353"], ["https://data.delijn.be/stops/206657", "https://data.delijn.be/stops/207657"], ["https://data.delijn.be/stops/503961", "https://data.delijn.be/stops/504345"], ["https://data.delijn.be/stops/304578", "https://data.delijn.be/stops/304585"], ["https://data.delijn.be/stops/205504", "https://data.delijn.be/stops/205904"], ["https://data.delijn.be/stops/203256", "https://data.delijn.be/stops/203257"], ["https://data.delijn.be/stops/308146", "https://data.delijn.be/stops/308147"], ["https://data.delijn.be/stops/303348", "https://data.delijn.be/stops/307032"], ["https://data.delijn.be/stops/201434", "https://data.delijn.be/stops/210090"], ["https://data.delijn.be/stops/206548", "https://data.delijn.be/stops/207549"], ["https://data.delijn.be/stops/107205", "https://data.delijn.be/stops/109893"], ["https://data.delijn.be/stops/400454", "https://data.delijn.be/stops/400456"], ["https://data.delijn.be/stops/502911", "https://data.delijn.be/stops/507244"], ["https://data.delijn.be/stops/307815", "https://data.delijn.be/stops/307816"], ["https://data.delijn.be/stops/501451", "https://data.delijn.be/stops/506451"], ["https://data.delijn.be/stops/404367", "https://data.delijn.be/stops/404391"], ["https://data.delijn.be/stops/104454", "https://data.delijn.be/stops/104477"], ["https://data.delijn.be/stops/404648", "https://data.delijn.be/stops/409690"], ["https://data.delijn.be/stops/102713", "https://data.delijn.be/stops/104824"], ["https://data.delijn.be/stops/200485", "https://data.delijn.be/stops/201383"], ["https://data.delijn.be/stops/505163", "https://data.delijn.be/stops/509429"], ["https://data.delijn.be/stops/106763", "https://data.delijn.be/stops/106764"], ["https://data.delijn.be/stops/406240", "https://data.delijn.be/stops/406241"], ["https://data.delijn.be/stops/504551", "https://data.delijn.be/stops/509546"], ["https://data.delijn.be/stops/503221", "https://data.delijn.be/stops/503595"], ["https://data.delijn.be/stops/106369", "https://data.delijn.be/stops/106370"], ["https://data.delijn.be/stops/506194", "https://data.delijn.be/stops/506195"], ["https://data.delijn.be/stops/106244", "https://data.delijn.be/stops/107233"], ["https://data.delijn.be/stops/507170", "https://data.delijn.be/stops/507566"], ["https://data.delijn.be/stops/207675", "https://data.delijn.be/stops/208141"], ["https://data.delijn.be/stops/301863", "https://data.delijn.be/stops/301866"], ["https://data.delijn.be/stops/308741", "https://data.delijn.be/stops/308744"], ["https://data.delijn.be/stops/500028", "https://data.delijn.be/stops/508121"], ["https://data.delijn.be/stops/504533", "https://data.delijn.be/stops/509534"], ["https://data.delijn.be/stops/303729", "https://data.delijn.be/stops/303739"], ["https://data.delijn.be/stops/403280", "https://data.delijn.be/stops/403300"], ["https://data.delijn.be/stops/300674", "https://data.delijn.be/stops/308977"], ["https://data.delijn.be/stops/503529", "https://data.delijn.be/stops/508529"], ["https://data.delijn.be/stops/302775", "https://data.delijn.be/stops/306556"], ["https://data.delijn.be/stops/409093", "https://data.delijn.be/stops/409215"], ["https://data.delijn.be/stops/105006", "https://data.delijn.be/stops/105075"], ["https://data.delijn.be/stops/408500", "https://data.delijn.be/stops/408505"], ["https://data.delijn.be/stops/207800", "https://data.delijn.be/stops/209565"], ["https://data.delijn.be/stops/206869", "https://data.delijn.be/stops/207868"], ["https://data.delijn.be/stops/302494", "https://data.delijn.be/stops/302495"], ["https://data.delijn.be/stops/301218", "https://data.delijn.be/stops/304924"], ["https://data.delijn.be/stops/503371", "https://data.delijn.be/stops/503427"], ["https://data.delijn.be/stops/402222", "https://data.delijn.be/stops/402223"], ["https://data.delijn.be/stops/505266", "https://data.delijn.be/stops/505268"], ["https://data.delijn.be/stops/409654", "https://data.delijn.be/stops/409657"], ["https://data.delijn.be/stops/304941", "https://data.delijn.be/stops/306807"], ["https://data.delijn.be/stops/205064", "https://data.delijn.be/stops/205099"], ["https://data.delijn.be/stops/105812", "https://data.delijn.be/stops/105814"], ["https://data.delijn.be/stops/306677", "https://data.delijn.be/stops/306679"], ["https://data.delijn.be/stops/208198", "https://data.delijn.be/stops/209132"], ["https://data.delijn.be/stops/502588", "https://data.delijn.be/stops/507588"], ["https://data.delijn.be/stops/101934", "https://data.delijn.be/stops/107577"], ["https://data.delijn.be/stops/407065", "https://data.delijn.be/stops/407083"], ["https://data.delijn.be/stops/402242", "https://data.delijn.be/stops/410079"], ["https://data.delijn.be/stops/404176", "https://data.delijn.be/stops/404282"], ["https://data.delijn.be/stops/103348", "https://data.delijn.be/stops/104865"], ["https://data.delijn.be/stops/300484", "https://data.delijn.be/stops/306401"], ["https://data.delijn.be/stops/206498", "https://data.delijn.be/stops/206506"], ["https://data.delijn.be/stops/504563", "https://data.delijn.be/stops/504792"], ["https://data.delijn.be/stops/408519", "https://data.delijn.be/stops/408764"], ["https://data.delijn.be/stops/403943", "https://data.delijn.be/stops/404027"], ["https://data.delijn.be/stops/504882", "https://data.delijn.be/stops/505325"], ["https://data.delijn.be/stops/303980", "https://data.delijn.be/stops/307234"], ["https://data.delijn.be/stops/201237", "https://data.delijn.be/stops/211129"], ["https://data.delijn.be/stops/308944", "https://data.delijn.be/stops/308945"], ["https://data.delijn.be/stops/400313", "https://data.delijn.be/stops/405133"], ["https://data.delijn.be/stops/502029", "https://data.delijn.be/stops/507046"], ["https://data.delijn.be/stops/408097", "https://data.delijn.be/stops/408103"], ["https://data.delijn.be/stops/207942", "https://data.delijn.be/stops/208101"], ["https://data.delijn.be/stops/302931", "https://data.delijn.be/stops/307467"], ["https://data.delijn.be/stops/205394", "https://data.delijn.be/stops/205395"], ["https://data.delijn.be/stops/502520", "https://data.delijn.be/stops/502521"], ["https://data.delijn.be/stops/300029", "https://data.delijn.be/stops/306835"], ["https://data.delijn.be/stops/305139", "https://data.delijn.be/stops/308093"], ["https://data.delijn.be/stops/405229", "https://data.delijn.be/stops/405233"], ["https://data.delijn.be/stops/402109", "https://data.delijn.be/stops/410335"], ["https://data.delijn.be/stops/407690", "https://data.delijn.be/stops/409879"], ["https://data.delijn.be/stops/205394", "https://data.delijn.be/stops/205763"], ["https://data.delijn.be/stops/103239", "https://data.delijn.be/stops/105022"], ["https://data.delijn.be/stops/203026", "https://data.delijn.be/stops/211039"], ["https://data.delijn.be/stops/105034", "https://data.delijn.be/stops/105037"], ["https://data.delijn.be/stops/405711", "https://data.delijn.be/stops/407214"], ["https://data.delijn.be/stops/302799", "https://data.delijn.be/stops/302807"], ["https://data.delijn.be/stops/202219", "https://data.delijn.be/stops/205078"], ["https://data.delijn.be/stops/503399", "https://data.delijn.be/stops/508426"], ["https://data.delijn.be/stops/302015", "https://data.delijn.be/stops/307818"], ["https://data.delijn.be/stops/101984", "https://data.delijn.be/stops/109277"], ["https://data.delijn.be/stops/300396", "https://data.delijn.be/stops/300408"], ["https://data.delijn.be/stops/101422", "https://data.delijn.be/stops/101424"], ["https://data.delijn.be/stops/109014", "https://data.delijn.be/stops/109017"], ["https://data.delijn.be/stops/201371", "https://data.delijn.be/stops/201446"], ["https://data.delijn.be/stops/209154", "https://data.delijn.be/stops/209241"], ["https://data.delijn.be/stops/106144", "https://data.delijn.be/stops/106440"], ["https://data.delijn.be/stops/200453", "https://data.delijn.be/stops/201353"], ["https://data.delijn.be/stops/509520", "https://data.delijn.be/stops/509524"], ["https://data.delijn.be/stops/301154", "https://data.delijn.be/stops/307714"], ["https://data.delijn.be/stops/200413", "https://data.delijn.be/stops/203360"], ["https://data.delijn.be/stops/501100", "https://data.delijn.be/stops/506090"], ["https://data.delijn.be/stops/403662", "https://data.delijn.be/stops/406854"], ["https://data.delijn.be/stops/104469", "https://data.delijn.be/stops/104472"], ["https://data.delijn.be/stops/102418", "https://data.delijn.be/stops/105584"], ["https://data.delijn.be/stops/209724", "https://data.delijn.be/stops/210065"], ["https://data.delijn.be/stops/200604", "https://data.delijn.be/stops/202859"], ["https://data.delijn.be/stops/204233", "https://data.delijn.be/stops/205232"], ["https://data.delijn.be/stops/504600", "https://data.delijn.be/stops/504602"], ["https://data.delijn.be/stops/300560", "https://data.delijn.be/stops/300562"], ["https://data.delijn.be/stops/201570", "https://data.delijn.be/stops/204804"], ["https://data.delijn.be/stops/304810", "https://data.delijn.be/stops/306688"], ["https://data.delijn.be/stops/408963", "https://data.delijn.be/stops/408968"], ["https://data.delijn.be/stops/204122", "https://data.delijn.be/stops/205126"], ["https://data.delijn.be/stops/405456", "https://data.delijn.be/stops/405460"], ["https://data.delijn.be/stops/403766", "https://data.delijn.be/stops/403767"], ["https://data.delijn.be/stops/200386", "https://data.delijn.be/stops/201317"], ["https://data.delijn.be/stops/405058", "https://data.delijn.be/stops/405062"], ["https://data.delijn.be/stops/405228", "https://data.delijn.be/stops/405229"], ["https://data.delijn.be/stops/406195", "https://data.delijn.be/stops/406221"], ["https://data.delijn.be/stops/105089", "https://data.delijn.be/stops/105092"], ["https://data.delijn.be/stops/300705", "https://data.delijn.be/stops/303475"], ["https://data.delijn.be/stops/203403", "https://data.delijn.be/stops/211117"], ["https://data.delijn.be/stops/204776", "https://data.delijn.be/stops/204777"], ["https://data.delijn.be/stops/102231", "https://data.delijn.be/stops/105523"], ["https://data.delijn.be/stops/200823", "https://data.delijn.be/stops/209656"], ["https://data.delijn.be/stops/501697", "https://data.delijn.be/stops/502344"], ["https://data.delijn.be/stops/206809", "https://data.delijn.be/stops/207854"], ["https://data.delijn.be/stops/206483", "https://data.delijn.be/stops/207823"], ["https://data.delijn.be/stops/203079", "https://data.delijn.be/stops/203509"], ["https://data.delijn.be/stops/107226", "https://data.delijn.be/stops/107227"], ["https://data.delijn.be/stops/308452", "https://data.delijn.be/stops/308453"], ["https://data.delijn.be/stops/206223", "https://data.delijn.be/stops/207223"], ["https://data.delijn.be/stops/405061", "https://data.delijn.be/stops/405859"], ["https://data.delijn.be/stops/409072", "https://data.delijn.be/stops/409073"], ["https://data.delijn.be/stops/501217", "https://data.delijn.be/stops/506217"], ["https://data.delijn.be/stops/105971", "https://data.delijn.be/stops/205636"], ["https://data.delijn.be/stops/107159", "https://data.delijn.be/stops/107162"], ["https://data.delijn.be/stops/202433", "https://data.delijn.be/stops/202435"], ["https://data.delijn.be/stops/403621", "https://data.delijn.be/stops/403652"], ["https://data.delijn.be/stops/201676", "https://data.delijn.be/stops/203401"], ["https://data.delijn.be/stops/200117", "https://data.delijn.be/stops/201117"], ["https://data.delijn.be/stops/106281", "https://data.delijn.be/stops/106282"], ["https://data.delijn.be/stops/504721", "https://data.delijn.be/stops/509349"], ["https://data.delijn.be/stops/105903", "https://data.delijn.be/stops/105904"], ["https://data.delijn.be/stops/503682", "https://data.delijn.be/stops/503686"], ["https://data.delijn.be/stops/200738", "https://data.delijn.be/stops/203598"], ["https://data.delijn.be/stops/303451", "https://data.delijn.be/stops/307061"], ["https://data.delijn.be/stops/503207", "https://data.delijn.be/stops/504238"], ["https://data.delijn.be/stops/401359", "https://data.delijn.be/stops/401373"], ["https://data.delijn.be/stops/200606", "https://data.delijn.be/stops/201633"], ["https://data.delijn.be/stops/501764", "https://data.delijn.be/stops/508824"], ["https://data.delijn.be/stops/104954", "https://data.delijn.be/stops/109720"], ["https://data.delijn.be/stops/101675", "https://data.delijn.be/stops/101680"], ["https://data.delijn.be/stops/501032", "https://data.delijn.be/stops/506032"], ["https://data.delijn.be/stops/408878", "https://data.delijn.be/stops/408906"], ["https://data.delijn.be/stops/201799", "https://data.delijn.be/stops/202642"], ["https://data.delijn.be/stops/410175", "https://data.delijn.be/stops/410176"], ["https://data.delijn.be/stops/308217", "https://data.delijn.be/stops/308245"], ["https://data.delijn.be/stops/303149", "https://data.delijn.be/stops/307928"], ["https://data.delijn.be/stops/101770", "https://data.delijn.be/stops/104335"], ["https://data.delijn.be/stops/105372", "https://data.delijn.be/stops/107504"], ["https://data.delijn.be/stops/304168", "https://data.delijn.be/stops/307540"], ["https://data.delijn.be/stops/204076", "https://data.delijn.be/stops/205066"], ["https://data.delijn.be/stops/302428", "https://data.delijn.be/stops/302441"], ["https://data.delijn.be/stops/206577", "https://data.delijn.be/stops/207577"], ["https://data.delijn.be/stops/502523", "https://data.delijn.be/stops/507808"], ["https://data.delijn.be/stops/208407", "https://data.delijn.be/stops/209407"], ["https://data.delijn.be/stops/208110", "https://data.delijn.be/stops/209110"], ["https://data.delijn.be/stops/402698", "https://data.delijn.be/stops/402873"], ["https://data.delijn.be/stops/102698", "https://data.delijn.be/stops/105625"], ["https://data.delijn.be/stops/204162", "https://data.delijn.be/stops/204163"], ["https://data.delijn.be/stops/202214", "https://data.delijn.be/stops/202215"], ["https://data.delijn.be/stops/506027", "https://data.delijn.be/stops/506448"], ["https://data.delijn.be/stops/206267", "https://data.delijn.be/stops/207069"], ["https://data.delijn.be/stops/202887", "https://data.delijn.be/stops/203887"], ["https://data.delijn.be/stops/300422", "https://data.delijn.be/stops/300440"], ["https://data.delijn.be/stops/508375", "https://data.delijn.be/stops/509767"], ["https://data.delijn.be/stops/103076", "https://data.delijn.be/stops/105026"], ["https://data.delijn.be/stops/301047", "https://data.delijn.be/stops/301051"], ["https://data.delijn.be/stops/407845", "https://data.delijn.be/stops/407891"], ["https://data.delijn.be/stops/407980", "https://data.delijn.be/stops/407981"], ["https://data.delijn.be/stops/302132", "https://data.delijn.be/stops/307081"], ["https://data.delijn.be/stops/307728", "https://data.delijn.be/stops/307735"], ["https://data.delijn.be/stops/106277", "https://data.delijn.be/stops/106279"], ["https://data.delijn.be/stops/404489", "https://data.delijn.be/stops/404510"], ["https://data.delijn.be/stops/206971", "https://data.delijn.be/stops/206973"], ["https://data.delijn.be/stops/206064", "https://data.delijn.be/stops/206521"], ["https://data.delijn.be/stops/200504", "https://data.delijn.be/stops/201411"], ["https://data.delijn.be/stops/504877", "https://data.delijn.be/stops/507487"], ["https://data.delijn.be/stops/302182", "https://data.delijn.be/stops/302440"], ["https://data.delijn.be/stops/407281", "https://data.delijn.be/stops/407310"], ["https://data.delijn.be/stops/306100", "https://data.delijn.be/stops/308718"], ["https://data.delijn.be/stops/403790", "https://data.delijn.be/stops/403825"], ["https://data.delijn.be/stops/302313", "https://data.delijn.be/stops/304795"], ["https://data.delijn.be/stops/409292", "https://data.delijn.be/stops/409293"], ["https://data.delijn.be/stops/200826", "https://data.delijn.be/stops/200832"], ["https://data.delijn.be/stops/209500", "https://data.delijn.be/stops/209670"], ["https://data.delijn.be/stops/301487", "https://data.delijn.be/stops/308075"], ["https://data.delijn.be/stops/205743", "https://data.delijn.be/stops/205744"], ["https://data.delijn.be/stops/502024", "https://data.delijn.be/stops/502795"], ["https://data.delijn.be/stops/204174", "https://data.delijn.be/stops/204763"], ["https://data.delijn.be/stops/302406", "https://data.delijn.be/stops/302407"], ["https://data.delijn.be/stops/200539", "https://data.delijn.be/stops/200540"], ["https://data.delijn.be/stops/107838", "https://data.delijn.be/stops/205142"], ["https://data.delijn.be/stops/403942", "https://data.delijn.be/stops/403951"], ["https://data.delijn.be/stops/205482", "https://data.delijn.be/stops/205523"], ["https://data.delijn.be/stops/405401", "https://data.delijn.be/stops/405403"], ["https://data.delijn.be/stops/102206", "https://data.delijn.be/stops/105813"], ["https://data.delijn.be/stops/101090", "https://data.delijn.be/stops/101920"], ["https://data.delijn.be/stops/304545", "https://data.delijn.be/stops/304606"], ["https://data.delijn.be/stops/203065", "https://data.delijn.be/stops/203725"], ["https://data.delijn.be/stops/407223", "https://data.delijn.be/stops/407571"], ["https://data.delijn.be/stops/106961", "https://data.delijn.be/stops/109508"], ["https://data.delijn.be/stops/507126", "https://data.delijn.be/stops/507135"], ["https://data.delijn.be/stops/406032", "https://data.delijn.be/stops/406085"], ["https://data.delijn.be/stops/302666", "https://data.delijn.be/stops/302685"], ["https://data.delijn.be/stops/302745", "https://data.delijn.be/stops/302752"], ["https://data.delijn.be/stops/307625", "https://data.delijn.be/stops/308252"], ["https://data.delijn.be/stops/401097", "https://data.delijn.be/stops/401153"], ["https://data.delijn.be/stops/501118", "https://data.delijn.be/stops/501209"], ["https://data.delijn.be/stops/301902", "https://data.delijn.be/stops/306251"], ["https://data.delijn.be/stops/202636", "https://data.delijn.be/stops/205070"], ["https://data.delijn.be/stops/503531", "https://data.delijn.be/stops/504764"], ["https://data.delijn.be/stops/108746", "https://data.delijn.be/stops/108748"], ["https://data.delijn.be/stops/506227", "https://data.delijn.be/stops/506230"], ["https://data.delijn.be/stops/405060", "https://data.delijn.be/stops/405859"], ["https://data.delijn.be/stops/400161", "https://data.delijn.be/stops/410322"], ["https://data.delijn.be/stops/403230", "https://data.delijn.be/stops/410279"], ["https://data.delijn.be/stops/203488", "https://data.delijn.be/stops/203930"], ["https://data.delijn.be/stops/400686", "https://data.delijn.be/stops/404614"], ["https://data.delijn.be/stops/505185", "https://data.delijn.be/stops/509557"], ["https://data.delijn.be/stops/101000", "https://data.delijn.be/stops/103745"], ["https://data.delijn.be/stops/201864", "https://data.delijn.be/stops/202082"], ["https://data.delijn.be/stops/507474", "https://data.delijn.be/stops/507477"], ["https://data.delijn.be/stops/204744", "https://data.delijn.be/stops/205743"], ["https://data.delijn.be/stops/401773", "https://data.delijn.be/stops/406337"], ["https://data.delijn.be/stops/208329", "https://data.delijn.be/stops/208715"], ["https://data.delijn.be/stops/108826", "https://data.delijn.be/stops/108829"], ["https://data.delijn.be/stops/200831", "https://data.delijn.be/stops/505062"], ["https://data.delijn.be/stops/404410", "https://data.delijn.be/stops/404425"], ["https://data.delijn.be/stops/105483", "https://data.delijn.be/stops/105484"], ["https://data.delijn.be/stops/303002", "https://data.delijn.be/stops/307096"], ["https://data.delijn.be/stops/502215", "https://data.delijn.be/stops/502496"], ["https://data.delijn.be/stops/503003", "https://data.delijn.be/stops/505081"], ["https://data.delijn.be/stops/205240", "https://data.delijn.be/stops/205345"], ["https://data.delijn.be/stops/200387", "https://data.delijn.be/stops/209706"], ["https://data.delijn.be/stops/410090", "https://data.delijn.be/stops/410091"], ["https://data.delijn.be/stops/301698", "https://data.delijn.be/stops/301719"], ["https://data.delijn.be/stops/303368", "https://data.delijn.be/stops/303374"], ["https://data.delijn.be/stops/404150", "https://data.delijn.be/stops/404230"], ["https://data.delijn.be/stops/302008", "https://data.delijn.be/stops/304631"], ["https://data.delijn.be/stops/102081", "https://data.delijn.be/stops/105406"], ["https://data.delijn.be/stops/101971", "https://data.delijn.be/stops/105525"], ["https://data.delijn.be/stops/102074", "https://data.delijn.be/stops/108851"], ["https://data.delijn.be/stops/503805", "https://data.delijn.be/stops/508805"], ["https://data.delijn.be/stops/101782", "https://data.delijn.be/stops/107490"], ["https://data.delijn.be/stops/404682", "https://data.delijn.be/stops/404683"], ["https://data.delijn.be/stops/501087", "https://data.delijn.be/stops/506087"], ["https://data.delijn.be/stops/102818", "https://data.delijn.be/stops/105260"], ["https://data.delijn.be/stops/206845", "https://data.delijn.be/stops/306678"], ["https://data.delijn.be/stops/203896", "https://data.delijn.be/stops/203897"], ["https://data.delijn.be/stops/200804", "https://data.delijn.be/stops/200813"], ["https://data.delijn.be/stops/201762", "https://data.delijn.be/stops/209271"], ["https://data.delijn.be/stops/401187", "https://data.delijn.be/stops/401327"], ["https://data.delijn.be/stops/103981", "https://data.delijn.be/stops/105733"], ["https://data.delijn.be/stops/107595", "https://data.delijn.be/stops/107600"], ["https://data.delijn.be/stops/301104", "https://data.delijn.be/stops/302864"], ["https://data.delijn.be/stops/303783", "https://data.delijn.be/stops/303802"], ["https://data.delijn.be/stops/505187", "https://data.delijn.be/stops/505289"], ["https://data.delijn.be/stops/502609", "https://data.delijn.be/stops/507609"], ["https://data.delijn.be/stops/503313", "https://data.delijn.be/stops/508433"], ["https://data.delijn.be/stops/302055", "https://data.delijn.be/stops/308959"], ["https://data.delijn.be/stops/202698", "https://data.delijn.be/stops/203705"], ["https://data.delijn.be/stops/303441", "https://data.delijn.be/stops/307066"], ["https://data.delijn.be/stops/301273", "https://data.delijn.be/stops/301275"], ["https://data.delijn.be/stops/400754", "https://data.delijn.be/stops/400849"], ["https://data.delijn.be/stops/305140", "https://data.delijn.be/stops/305142"], ["https://data.delijn.be/stops/306929", "https://data.delijn.be/stops/306932"], ["https://data.delijn.be/stops/204057", "https://data.delijn.be/stops/205056"], ["https://data.delijn.be/stops/201852", "https://data.delijn.be/stops/208888"], ["https://data.delijn.be/stops/502537", "https://data.delijn.be/stops/507537"], ["https://data.delijn.be/stops/205377", "https://data.delijn.be/stops/205420"], ["https://data.delijn.be/stops/208283", "https://data.delijn.be/stops/209283"], ["https://data.delijn.be/stops/407642", "https://data.delijn.be/stops/407643"], ["https://data.delijn.be/stops/406511", "https://data.delijn.be/stops/406515"], ["https://data.delijn.be/stops/104394", "https://data.delijn.be/stops/104396"], ["https://data.delijn.be/stops/305537", "https://data.delijn.be/stops/305582"], ["https://data.delijn.be/stops/202723", "https://data.delijn.be/stops/203724"], ["https://data.delijn.be/stops/104132", "https://data.delijn.be/stops/108041"], ["https://data.delijn.be/stops/502390", "https://data.delijn.be/stops/502405"], ["https://data.delijn.be/stops/208309", "https://data.delijn.be/stops/503864"], ["https://data.delijn.be/stops/501147", "https://data.delijn.be/stops/501599"], ["https://data.delijn.be/stops/408066", "https://data.delijn.be/stops/408068"], ["https://data.delijn.be/stops/201952", "https://data.delijn.be/stops/203467"], ["https://data.delijn.be/stops/403275", "https://data.delijn.be/stops/403437"], ["https://data.delijn.be/stops/301564", "https://data.delijn.be/stops/301565"], ["https://data.delijn.be/stops/503447", "https://data.delijn.be/stops/503449"], ["https://data.delijn.be/stops/504995", "https://data.delijn.be/stops/508845"], ["https://data.delijn.be/stops/405851", "https://data.delijn.be/stops/409731"], ["https://data.delijn.be/stops/305590", "https://data.delijn.be/stops/305955"], ["https://data.delijn.be/stops/206923", "https://data.delijn.be/stops/207922"], ["https://data.delijn.be/stops/400081", "https://data.delijn.be/stops/403549"], ["https://data.delijn.be/stops/508854", "https://data.delijn.be/stops/508859"], ["https://data.delijn.be/stops/208089", "https://data.delijn.be/stops/209304"], ["https://data.delijn.be/stops/407009", "https://data.delijn.be/stops/407054"], ["https://data.delijn.be/stops/304252", "https://data.delijn.be/stops/304295"], ["https://data.delijn.be/stops/502034", "https://data.delijn.be/stops/507037"], ["https://data.delijn.be/stops/208748", "https://data.delijn.be/stops/209414"], ["https://data.delijn.be/stops/204551", "https://data.delijn.be/stops/205291"], ["https://data.delijn.be/stops/503774", "https://data.delijn.be/stops/508774"], ["https://data.delijn.be/stops/408968", "https://data.delijn.be/stops/408982"], ["https://data.delijn.be/stops/409074", "https://data.delijn.be/stops/409215"], ["https://data.delijn.be/stops/202640", "https://data.delijn.be/stops/203167"], ["https://data.delijn.be/stops/101582", "https://data.delijn.be/stops/105451"], ["https://data.delijn.be/stops/302262", "https://data.delijn.be/stops/302266"], ["https://data.delijn.be/stops/101494", "https://data.delijn.be/stops/109374"], ["https://data.delijn.be/stops/410191", "https://data.delijn.be/stops/410192"], ["https://data.delijn.be/stops/502304", "https://data.delijn.be/stops/507306"], ["https://data.delijn.be/stops/400105", "https://data.delijn.be/stops/401970"], ["https://data.delijn.be/stops/504641", "https://data.delijn.be/stops/504645"], ["https://data.delijn.be/stops/508001", "https://data.delijn.be/stops/508002"], ["https://data.delijn.be/stops/400321", "https://data.delijn.be/stops/400324"], ["https://data.delijn.be/stops/302745", "https://data.delijn.be/stops/303220"], ["https://data.delijn.be/stops/302034", "https://data.delijn.be/stops/302052"], ["https://data.delijn.be/stops/108928", "https://data.delijn.be/stops/108931"], ["https://data.delijn.be/stops/208792", "https://data.delijn.be/stops/209787"], ["https://data.delijn.be/stops/301500", "https://data.delijn.be/stops/305654"], ["https://data.delijn.be/stops/400602", "https://data.delijn.be/stops/308155"], ["https://data.delijn.be/stops/300659", "https://data.delijn.be/stops/300660"], ["https://data.delijn.be/stops/502206", "https://data.delijn.be/stops/507206"], ["https://data.delijn.be/stops/302635", "https://data.delijn.be/stops/302636"], ["https://data.delijn.be/stops/402704", "https://data.delijn.be/stops/405997"], ["https://data.delijn.be/stops/102389", "https://data.delijn.be/stops/107079"], ["https://data.delijn.be/stops/505199", "https://data.delijn.be/stops/505906"], ["https://data.delijn.be/stops/404850", "https://data.delijn.be/stops/404851"], ["https://data.delijn.be/stops/207799", "https://data.delijn.be/stops/209180"], ["https://data.delijn.be/stops/201711", "https://data.delijn.be/stops/201713"], ["https://data.delijn.be/stops/206424", "https://data.delijn.be/stops/206965"], ["https://data.delijn.be/stops/304381", "https://data.delijn.be/stops/304382"], ["https://data.delijn.be/stops/402132", "https://data.delijn.be/stops/402137"], ["https://data.delijn.be/stops/502382", "https://data.delijn.be/stops/507384"], ["https://data.delijn.be/stops/408390", "https://data.delijn.be/stops/308209"], ["https://data.delijn.be/stops/207187", "https://data.delijn.be/stops/207955"], ["https://data.delijn.be/stops/109082", "https://data.delijn.be/stops/109083"], ["https://data.delijn.be/stops/207751", "https://data.delijn.be/stops/207752"], ["https://data.delijn.be/stops/207566", "https://data.delijn.be/stops/207835"], ["https://data.delijn.be/stops/205069", "https://data.delijn.be/stops/214016"], ["https://data.delijn.be/stops/505704", "https://data.delijn.be/stops/507575"], ["https://data.delijn.be/stops/202328", "https://data.delijn.be/stops/202432"], ["https://data.delijn.be/stops/305571", "https://data.delijn.be/stops/305572"], ["https://data.delijn.be/stops/202117", "https://data.delijn.be/stops/203117"], ["https://data.delijn.be/stops/301196", "https://data.delijn.be/stops/305174"], ["https://data.delijn.be/stops/401420", "https://data.delijn.be/stops/401434"], ["https://data.delijn.be/stops/402579", "https://data.delijn.be/stops/402595"], ["https://data.delijn.be/stops/300002", "https://data.delijn.be/stops/302520"], ["https://data.delijn.be/stops/303330", "https://data.delijn.be/stops/303331"], ["https://data.delijn.be/stops/401448", "https://data.delijn.be/stops/404927"], ["https://data.delijn.be/stops/206725", "https://data.delijn.be/stops/206986"], ["https://data.delijn.be/stops/504349", "https://data.delijn.be/stops/509592"], ["https://data.delijn.be/stops/300708", "https://data.delijn.be/stops/308066"], ["https://data.delijn.be/stops/301964", "https://data.delijn.be/stops/301980"], ["https://data.delijn.be/stops/204291", "https://data.delijn.be/stops/205292"], ["https://data.delijn.be/stops/402207", "https://data.delijn.be/stops/402501"], ["https://data.delijn.be/stops/203277", "https://data.delijn.be/stops/203278"], ["https://data.delijn.be/stops/508672", "https://data.delijn.be/stops/509842"], ["https://data.delijn.be/stops/507820", "https://data.delijn.be/stops/508084"], ["https://data.delijn.be/stops/108469", "https://data.delijn.be/stops/306599"], ["https://data.delijn.be/stops/107161", "https://data.delijn.be/stops/107163"], ["https://data.delijn.be/stops/407662", "https://data.delijn.be/stops/408549"], ["https://data.delijn.be/stops/308610", "https://data.delijn.be/stops/308618"], ["https://data.delijn.be/stops/203037", "https://data.delijn.be/stops/203983"], ["https://data.delijn.be/stops/403913", "https://data.delijn.be/stops/403985"], ["https://data.delijn.be/stops/201924", "https://data.delijn.be/stops/207949"], ["https://data.delijn.be/stops/106970", "https://data.delijn.be/stops/109506"], ["https://data.delijn.be/stops/404833", "https://data.delijn.be/stops/406132"], ["https://data.delijn.be/stops/308770", "https://data.delijn.be/stops/308778"], ["https://data.delijn.be/stops/101343", "https://data.delijn.be/stops/108098"], ["https://data.delijn.be/stops/209350", "https://data.delijn.be/stops/209351"], ["https://data.delijn.be/stops/401449", "https://data.delijn.be/stops/401893"], ["https://data.delijn.be/stops/206674", "https://data.delijn.be/stops/208165"], ["https://data.delijn.be/stops/405700", "https://data.delijn.be/stops/410139"], ["https://data.delijn.be/stops/500925", "https://data.delijn.be/stops/590010"], ["https://data.delijn.be/stops/206136", "https://data.delijn.be/stops/207137"], ["https://data.delijn.be/stops/400979", "https://data.delijn.be/stops/409625"], ["https://data.delijn.be/stops/109460", "https://data.delijn.be/stops/109793"], ["https://data.delijn.be/stops/302806", "https://data.delijn.be/stops/302808"], ["https://data.delijn.be/stops/202146", "https://data.delijn.be/stops/203146"], ["https://data.delijn.be/stops/408629", "https://data.delijn.be/stops/408771"], ["https://data.delijn.be/stops/404493", "https://data.delijn.be/stops/404511"], ["https://data.delijn.be/stops/102578", "https://data.delijn.be/stops/109739"], ["https://data.delijn.be/stops/503624", "https://data.delijn.be/stops/508624"], ["https://data.delijn.be/stops/209485", "https://data.delijn.be/stops/209489"], ["https://data.delijn.be/stops/406006", "https://data.delijn.be/stops/406815"], ["https://data.delijn.be/stops/300137", "https://data.delijn.be/stops/306805"], ["https://data.delijn.be/stops/204273", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/500018", "https://data.delijn.be/stops/507444"], ["https://data.delijn.be/stops/101501", "https://data.delijn.be/stops/104891"], ["https://data.delijn.be/stops/509764", "https://data.delijn.be/stops/509765"], ["https://data.delijn.be/stops/101546", "https://data.delijn.be/stops/107802"], ["https://data.delijn.be/stops/302352", "https://data.delijn.be/stops/302353"], ["https://data.delijn.be/stops/408340", "https://data.delijn.be/stops/410158"], ["https://data.delijn.be/stops/300437", "https://data.delijn.be/stops/300439"], ["https://data.delijn.be/stops/209193", "https://data.delijn.be/stops/209499"], ["https://data.delijn.be/stops/302231", "https://data.delijn.be/stops/302248"], ["https://data.delijn.be/stops/503544", "https://data.delijn.be/stops/503560"], ["https://data.delijn.be/stops/307411", "https://data.delijn.be/stops/307414"], ["https://data.delijn.be/stops/501596", "https://data.delijn.be/stops/504636"], ["https://data.delijn.be/stops/502217", "https://data.delijn.be/stops/507217"], ["https://data.delijn.be/stops/201090", "https://data.delijn.be/stops/202888"], ["https://data.delijn.be/stops/306649", "https://data.delijn.be/stops/306651"], ["https://data.delijn.be/stops/402692", "https://data.delijn.be/stops/402698"], ["https://data.delijn.be/stops/504087", "https://data.delijn.be/stops/505927"], ["https://data.delijn.be/stops/204162", "https://data.delijn.be/stops/207400"], ["https://data.delijn.be/stops/505338", "https://data.delijn.be/stops/507328"], ["https://data.delijn.be/stops/305947", "https://data.delijn.be/stops/308418"], ["https://data.delijn.be/stops/204377", "https://data.delijn.be/stops/205376"], ["https://data.delijn.be/stops/103228", "https://data.delijn.be/stops/103232"], ["https://data.delijn.be/stops/202856", "https://data.delijn.be/stops/202922"], ["https://data.delijn.be/stops/402547", "https://data.delijn.be/stops/402577"], ["https://data.delijn.be/stops/105588", "https://data.delijn.be/stops/105661"], ["https://data.delijn.be/stops/304412", "https://data.delijn.be/stops/304415"], ["https://data.delijn.be/stops/202669", "https://data.delijn.be/stops/203669"], ["https://data.delijn.be/stops/504017", "https://data.delijn.be/stops/509017"], ["https://data.delijn.be/stops/507716", "https://data.delijn.be/stops/507814"], ["https://data.delijn.be/stops/408317", "https://data.delijn.be/stops/408399"], ["https://data.delijn.be/stops/205260", "https://data.delijn.be/stops/205286"], ["https://data.delijn.be/stops/402703", "https://data.delijn.be/stops/405940"], ["https://data.delijn.be/stops/202493", "https://data.delijn.be/stops/203494"], ["https://data.delijn.be/stops/502332", "https://data.delijn.be/stops/502337"], ["https://data.delijn.be/stops/200318", "https://data.delijn.be/stops/203191"], ["https://data.delijn.be/stops/101641", "https://data.delijn.be/stops/109274"], ["https://data.delijn.be/stops/108182", "https://data.delijn.be/stops/108184"], ["https://data.delijn.be/stops/206205", "https://data.delijn.be/stops/207205"], ["https://data.delijn.be/stops/303634", "https://data.delijn.be/stops/307465"], ["https://data.delijn.be/stops/202161", "https://data.delijn.be/stops/202634"], ["https://data.delijn.be/stops/107014", "https://data.delijn.be/stops/107016"], ["https://data.delijn.be/stops/405022", "https://data.delijn.be/stops/405070"], ["https://data.delijn.be/stops/403745", "https://data.delijn.be/stops/403772"], ["https://data.delijn.be/stops/502807", "https://data.delijn.be/stops/507513"], ["https://data.delijn.be/stops/301170", "https://data.delijn.be/stops/303208"], ["https://data.delijn.be/stops/202783", "https://data.delijn.be/stops/211103"], ["https://data.delijn.be/stops/106778", "https://data.delijn.be/stops/106780"], ["https://data.delijn.be/stops/104636", "https://data.delijn.be/stops/109604"], ["https://data.delijn.be/stops/503017", "https://data.delijn.be/stops/508017"], ["https://data.delijn.be/stops/400112", "https://data.delijn.be/stops/409153"], ["https://data.delijn.be/stops/103378", "https://data.delijn.be/stops/104655"], ["https://data.delijn.be/stops/409707", "https://data.delijn.be/stops/409722"], ["https://data.delijn.be/stops/308223", "https://data.delijn.be/stops/308292"], ["https://data.delijn.be/stops/305818", "https://data.delijn.be/stops/305819"], ["https://data.delijn.be/stops/200828", "https://data.delijn.be/stops/502071"], ["https://data.delijn.be/stops/108862", "https://data.delijn.be/stops/108863"], ["https://data.delijn.be/stops/300574", "https://data.delijn.be/stops/300575"], ["https://data.delijn.be/stops/106599", "https://data.delijn.be/stops/106603"], ["https://data.delijn.be/stops/505910", "https://data.delijn.be/stops/508151"], ["https://data.delijn.be/stops/401899", "https://data.delijn.be/stops/407875"], ["https://data.delijn.be/stops/300516", "https://data.delijn.be/stops/307829"], ["https://data.delijn.be/stops/407962", "https://data.delijn.be/stops/407963"], ["https://data.delijn.be/stops/409748", "https://data.delijn.be/stops/409749"], ["https://data.delijn.be/stops/402639", "https://data.delijn.be/stops/404143"], ["https://data.delijn.be/stops/504730", "https://data.delijn.be/stops/505307"], ["https://data.delijn.be/stops/401327", "https://data.delijn.be/stops/401363"], ["https://data.delijn.be/stops/102393", "https://data.delijn.be/stops/107016"], ["https://data.delijn.be/stops/404103", "https://data.delijn.be/stops/404112"], ["https://data.delijn.be/stops/102687", "https://data.delijn.be/stops/104645"], ["https://data.delijn.be/stops/206985", "https://data.delijn.be/stops/207985"], ["https://data.delijn.be/stops/106458", "https://data.delijn.be/stops/106461"], ["https://data.delijn.be/stops/405929", "https://data.delijn.be/stops/405977"], ["https://data.delijn.be/stops/202371", "https://data.delijn.be/stops/203372"], ["https://data.delijn.be/stops/102606", "https://data.delijn.be/stops/105531"], ["https://data.delijn.be/stops/503503", "https://data.delijn.be/stops/503867"], ["https://data.delijn.be/stops/107289", "https://data.delijn.be/stops/107293"], ["https://data.delijn.be/stops/103272", "https://data.delijn.be/stops/107200"], ["https://data.delijn.be/stops/104489", "https://data.delijn.be/stops/307898"], ["https://data.delijn.be/stops/200773", "https://data.delijn.be/stops/509817"], ["https://data.delijn.be/stops/108689", "https://data.delijn.be/stops/108691"], ["https://data.delijn.be/stops/209226", "https://data.delijn.be/stops/209227"], ["https://data.delijn.be/stops/303358", "https://data.delijn.be/stops/303395"], ["https://data.delijn.be/stops/403829", "https://data.delijn.be/stops/405122"], ["https://data.delijn.be/stops/505802", "https://data.delijn.be/stops/507474"], ["https://data.delijn.be/stops/206693", "https://data.delijn.be/stops/206694"], ["https://data.delijn.be/stops/206004", "https://data.delijn.be/stops/207079"], ["https://data.delijn.be/stops/207393", "https://data.delijn.be/stops/207394"], ["https://data.delijn.be/stops/205419", "https://data.delijn.be/stops/205467"], ["https://data.delijn.be/stops/302221", "https://data.delijn.be/stops/302249"], ["https://data.delijn.be/stops/102800", "https://data.delijn.be/stops/103040"], ["https://data.delijn.be/stops/103482", "https://data.delijn.be/stops/109161"], ["https://data.delijn.be/stops/503593", "https://data.delijn.be/stops/508596"], ["https://data.delijn.be/stops/305056", "https://data.delijn.be/stops/306931"], ["https://data.delijn.be/stops/508416", "https://data.delijn.be/stops/508434"], ["https://data.delijn.be/stops/203864", "https://data.delijn.be/stops/203879"], ["https://data.delijn.be/stops/106053", "https://data.delijn.be/stops/109937"], ["https://data.delijn.be/stops/503732", "https://data.delijn.be/stops/508741"], ["https://data.delijn.be/stops/203001", "https://data.delijn.be/stops/203491"], ["https://data.delijn.be/stops/209224", "https://data.delijn.be/stops/209774"], ["https://data.delijn.be/stops/300505", "https://data.delijn.be/stops/302867"], ["https://data.delijn.be/stops/407922", "https://data.delijn.be/stops/407972"], ["https://data.delijn.be/stops/300103", "https://data.delijn.be/stops/306845"], ["https://data.delijn.be/stops/206045", "https://data.delijn.be/stops/206920"], ["https://data.delijn.be/stops/308476", "https://data.delijn.be/stops/308484"], ["https://data.delijn.be/stops/200390", "https://data.delijn.be/stops/209955"], ["https://data.delijn.be/stops/102869", "https://data.delijn.be/stops/105485"], ["https://data.delijn.be/stops/507024", "https://data.delijn.be/stops/507927"], ["https://data.delijn.be/stops/402781", "https://data.delijn.be/stops/402799"], ["https://data.delijn.be/stops/206981", "https://data.delijn.be/stops/207982"], ["https://data.delijn.be/stops/307064", "https://data.delijn.be/stops/307065"], ["https://data.delijn.be/stops/502116", "https://data.delijn.be/stops/507116"], ["https://data.delijn.be/stops/206790", "https://data.delijn.be/stops/209242"], ["https://data.delijn.be/stops/302085", "https://data.delijn.be/stops/302277"], ["https://data.delijn.be/stops/104034", "https://data.delijn.be/stops/205609"], ["https://data.delijn.be/stops/502592", "https://data.delijn.be/stops/505686"], ["https://data.delijn.be/stops/505384", "https://data.delijn.be/stops/508104"], ["https://data.delijn.be/stops/106379", "https://data.delijn.be/stops/106383"], ["https://data.delijn.be/stops/501253", "https://data.delijn.be/stops/506253"], ["https://data.delijn.be/stops/208000", "https://data.delijn.be/stops/209013"], ["https://data.delijn.be/stops/206777", "https://data.delijn.be/stops/208478"], ["https://data.delijn.be/stops/403450", "https://data.delijn.be/stops/409283"], ["https://data.delijn.be/stops/303436", "https://data.delijn.be/stops/303521"], ["https://data.delijn.be/stops/403913", "https://data.delijn.be/stops/406007"], ["https://data.delijn.be/stops/206859", "https://data.delijn.be/stops/207927"], ["https://data.delijn.be/stops/202346", "https://data.delijn.be/stops/202738"], ["https://data.delijn.be/stops/208739", "https://data.delijn.be/stops/209405"], ["https://data.delijn.be/stops/101846", "https://data.delijn.be/stops/101847"], ["https://data.delijn.be/stops/503947", "https://data.delijn.be/stops/508459"], ["https://data.delijn.be/stops/300376", "https://data.delijn.be/stops/300379"], ["https://data.delijn.be/stops/208395", "https://data.delijn.be/stops/209394"], ["https://data.delijn.be/stops/505164", "https://data.delijn.be/stops/509405"], ["https://data.delijn.be/stops/301356", "https://data.delijn.be/stops/307156"], ["https://data.delijn.be/stops/202350", "https://data.delijn.be/stops/205916"], ["https://data.delijn.be/stops/404992", "https://data.delijn.be/stops/406946"], ["https://data.delijn.be/stops/407645", "https://data.delijn.be/stops/409626"], ["https://data.delijn.be/stops/105374", "https://data.delijn.be/stops/105376"], ["https://data.delijn.be/stops/400595", "https://data.delijn.be/stops/400600"], ["https://data.delijn.be/stops/404300", "https://data.delijn.be/stops/404305"], ["https://data.delijn.be/stops/202432", "https://data.delijn.be/stops/202588"], ["https://data.delijn.be/stops/204084", "https://data.delijn.be/stops/204086"], ["https://data.delijn.be/stops/109269", "https://data.delijn.be/stops/407111"], ["https://data.delijn.be/stops/406054", "https://data.delijn.be/stops/406064"], ["https://data.delijn.be/stops/103914", "https://data.delijn.be/stops/107885"], ["https://data.delijn.be/stops/501449", "https://data.delijn.be/stops/501454"], ["https://data.delijn.be/stops/201952", "https://data.delijn.be/stops/202428"], ["https://data.delijn.be/stops/405705", "https://data.delijn.be/stops/307283"], ["https://data.delijn.be/stops/107320", "https://data.delijn.be/stops/109060"], ["https://data.delijn.be/stops/206049", "https://data.delijn.be/stops/207298"], ["https://data.delijn.be/stops/408003", "https://data.delijn.be/stops/408244"], ["https://data.delijn.be/stops/505032", "https://data.delijn.be/stops/505035"], ["https://data.delijn.be/stops/404061", "https://data.delijn.be/stops/406856"], ["https://data.delijn.be/stops/201831", "https://data.delijn.be/stops/208257"], ["https://data.delijn.be/stops/101183", "https://data.delijn.be/stops/107870"], ["https://data.delijn.be/stops/406280", "https://data.delijn.be/stops/406891"], ["https://data.delijn.be/stops/400076", "https://data.delijn.be/stops/407023"], ["https://data.delijn.be/stops/400235", "https://data.delijn.be/stops/400237"], ["https://data.delijn.be/stops/302828", "https://data.delijn.be/stops/302829"], ["https://data.delijn.be/stops/105516", "https://data.delijn.be/stops/105790"], ["https://data.delijn.be/stops/506085", "https://data.delijn.be/stops/506089"], ["https://data.delijn.be/stops/101548", "https://data.delijn.be/stops/101718"], ["https://data.delijn.be/stops/405404", "https://data.delijn.be/stops/405496"], ["https://data.delijn.be/stops/105376", "https://data.delijn.be/stops/305787"], ["https://data.delijn.be/stops/108854", "https://data.delijn.be/stops/108856"], ["https://data.delijn.be/stops/403317", "https://data.delijn.be/stops/407587"], ["https://data.delijn.be/stops/200647", "https://data.delijn.be/stops/201647"], ["https://data.delijn.be/stops/102158", "https://data.delijn.be/stops/107434"], ["https://data.delijn.be/stops/400410", "https://data.delijn.be/stops/408487"], ["https://data.delijn.be/stops/105430", "https://data.delijn.be/stops/108830"], ["https://data.delijn.be/stops/206905", "https://data.delijn.be/stops/207879"], ["https://data.delijn.be/stops/408429", "https://data.delijn.be/stops/410033"], ["https://data.delijn.be/stops/208143", "https://data.delijn.be/stops/209143"], ["https://data.delijn.be/stops/403701", "https://data.delijn.be/stops/403773"], ["https://data.delijn.be/stops/206333", "https://data.delijn.be/stops/206334"], ["https://data.delijn.be/stops/209454", "https://data.delijn.be/stops/209661"], ["https://data.delijn.be/stops/504247", "https://data.delijn.be/stops/509245"], ["https://data.delijn.be/stops/401432", "https://data.delijn.be/stops/401434"], ["https://data.delijn.be/stops/207339", "https://data.delijn.be/stops/207686"], ["https://data.delijn.be/stops/108991", "https://data.delijn.be/stops/108993"], ["https://data.delijn.be/stops/505638", "https://data.delijn.be/stops/508180"], ["https://data.delijn.be/stops/504726", "https://data.delijn.be/stops/509491"], ["https://data.delijn.be/stops/402554", "https://data.delijn.be/stops/402605"], ["https://data.delijn.be/stops/308704", "https://data.delijn.be/stops/308705"], ["https://data.delijn.be/stops/300229", "https://data.delijn.be/stops/302127"], ["https://data.delijn.be/stops/207157", "https://data.delijn.be/stops/207505"], ["https://data.delijn.be/stops/503578", "https://data.delijn.be/stops/504991"], ["https://data.delijn.be/stops/205699", "https://data.delijn.be/stops/214009"], ["https://data.delijn.be/stops/208474", "https://data.delijn.be/stops/209669"], ["https://data.delijn.be/stops/101944", "https://data.delijn.be/stops/108756"], ["https://data.delijn.be/stops/405509", "https://data.delijn.be/stops/405512"], ["https://data.delijn.be/stops/102382", "https://data.delijn.be/stops/109638"], ["https://data.delijn.be/stops/106952", "https://data.delijn.be/stops/108716"], ["https://data.delijn.be/stops/400735", "https://data.delijn.be/stops/403586"], ["https://data.delijn.be/stops/303774", "https://data.delijn.be/stops/307032"], ["https://data.delijn.be/stops/409532", "https://data.delijn.be/stops/409547"], ["https://data.delijn.be/stops/304044", "https://data.delijn.be/stops/309671"], ["https://data.delijn.be/stops/103090", "https://data.delijn.be/stops/105760"], ["https://data.delijn.be/stops/401980", "https://data.delijn.be/stops/405545"], ["https://data.delijn.be/stops/105852", "https://data.delijn.be/stops/105853"], ["https://data.delijn.be/stops/103005", "https://data.delijn.be/stops/104535"], ["https://data.delijn.be/stops/105486", "https://data.delijn.be/stops/108802"], ["https://data.delijn.be/stops/501594", "https://data.delijn.be/stops/509508"], ["https://data.delijn.be/stops/105772", "https://data.delijn.be/stops/108013"], ["https://data.delijn.be/stops/504360", "https://data.delijn.be/stops/505535"], ["https://data.delijn.be/stops/501250", "https://data.delijn.be/stops/506250"], ["https://data.delijn.be/stops/408259", "https://data.delijn.be/stops/307380"], ["https://data.delijn.be/stops/406257", "https://data.delijn.be/stops/406259"], ["https://data.delijn.be/stops/505391", "https://data.delijn.be/stops/505831"], ["https://data.delijn.be/stops/407848", "https://data.delijn.be/stops/408064"], ["https://data.delijn.be/stops/402300", "https://data.delijn.be/stops/402327"], ["https://data.delijn.be/stops/304394", "https://data.delijn.be/stops/307399"], ["https://data.delijn.be/stops/200219", "https://data.delijn.be/stops/201434"], ["https://data.delijn.be/stops/306848", "https://data.delijn.be/stops/307356"], ["https://data.delijn.be/stops/208548", "https://data.delijn.be/stops/209611"], ["https://data.delijn.be/stops/206311", "https://data.delijn.be/stops/206312"], ["https://data.delijn.be/stops/408521", "https://data.delijn.be/stops/408785"], ["https://data.delijn.be/stops/205244", "https://data.delijn.be/stops/205245"], ["https://data.delijn.be/stops/404190", "https://data.delijn.be/stops/404191"], ["https://data.delijn.be/stops/303148", "https://data.delijn.be/stops/308757"], ["https://data.delijn.be/stops/201016", "https://data.delijn.be/stops/201512"], ["https://data.delijn.be/stops/210849", "https://data.delijn.be/stops/211025"], ["https://data.delijn.be/stops/408897", "https://data.delijn.be/stops/408903"], ["https://data.delijn.be/stops/103291", "https://data.delijn.be/stops/105501"], ["https://data.delijn.be/stops/105667", "https://data.delijn.be/stops/109895"], ["https://data.delijn.be/stops/402801", "https://data.delijn.be/stops/409446"], ["https://data.delijn.be/stops/205119", "https://data.delijn.be/stops/205464"], ["https://data.delijn.be/stops/504963", "https://data.delijn.be/stops/508755"], ["https://data.delijn.be/stops/401359", "https://data.delijn.be/stops/406071"], ["https://data.delijn.be/stops/505598", "https://data.delijn.be/stops/507517"], ["https://data.delijn.be/stops/508126", "https://data.delijn.be/stops/508135"], ["https://data.delijn.be/stops/406508", "https://data.delijn.be/stops/406509"], ["https://data.delijn.be/stops/106630", "https://data.delijn.be/stops/106632"], ["https://data.delijn.be/stops/304268", "https://data.delijn.be/stops/304299"], ["https://data.delijn.be/stops/400769", "https://data.delijn.be/stops/400771"], ["https://data.delijn.be/stops/305694", "https://data.delijn.be/stops/307840"], ["https://data.delijn.be/stops/204783", "https://data.delijn.be/stops/205474"], ["https://data.delijn.be/stops/504231", "https://data.delijn.be/stops/504241"], ["https://data.delijn.be/stops/102895", "https://data.delijn.be/stops/103636"], ["https://data.delijn.be/stops/304209", "https://data.delijn.be/stops/305345"], ["https://data.delijn.be/stops/101198", "https://data.delijn.be/stops/204616"], ["https://data.delijn.be/stops/403223", "https://data.delijn.be/stops/403353"], ["https://data.delijn.be/stops/307630", "https://data.delijn.be/stops/308262"], ["https://data.delijn.be/stops/404338", "https://data.delijn.be/stops/404348"], ["https://data.delijn.be/stops/201749", "https://data.delijn.be/stops/202190"], ["https://data.delijn.be/stops/201921", "https://data.delijn.be/stops/203517"], ["https://data.delijn.be/stops/204483", "https://data.delijn.be/stops/205044"], ["https://data.delijn.be/stops/301866", "https://data.delijn.be/stops/301874"], ["https://data.delijn.be/stops/503558", "https://data.delijn.be/stops/509453"], ["https://data.delijn.be/stops/500994", "https://data.delijn.be/stops/509828"], ["https://data.delijn.be/stops/101173", "https://data.delijn.be/stops/104485"], ["https://data.delijn.be/stops/200503", "https://data.delijn.be/stops/205951"], ["https://data.delijn.be/stops/300102", "https://data.delijn.be/stops/306822"], ["https://data.delijn.be/stops/203856", "https://data.delijn.be/stops/208713"], ["https://data.delijn.be/stops/300089", "https://data.delijn.be/stops/300106"], ["https://data.delijn.be/stops/504491", "https://data.delijn.be/stops/509491"], ["https://data.delijn.be/stops/404884", "https://data.delijn.be/stops/404957"], ["https://data.delijn.be/stops/304479", "https://data.delijn.be/stops/304491"], ["https://data.delijn.be/stops/101459", "https://data.delijn.be/stops/108218"], ["https://data.delijn.be/stops/208225", "https://data.delijn.be/stops/209224"], ["https://data.delijn.be/stops/101755", "https://data.delijn.be/stops/109821"], ["https://data.delijn.be/stops/509002", "https://data.delijn.be/stops/509737"], ["https://data.delijn.be/stops/308493", "https://data.delijn.be/stops/308500"], ["https://data.delijn.be/stops/301498", "https://data.delijn.be/stops/307956"], ["https://data.delijn.be/stops/402287", "https://data.delijn.be/stops/406871"], ["https://data.delijn.be/stops/305018", "https://data.delijn.be/stops/308033"], ["https://data.delijn.be/stops/104698", "https://data.delijn.be/stops/107356"], ["https://data.delijn.be/stops/503982", "https://data.delijn.be/stops/504786"], ["https://data.delijn.be/stops/406634", "https://data.delijn.be/stops/406635"], ["https://data.delijn.be/stops/202369", "https://data.delijn.be/stops/202977"], ["https://data.delijn.be/stops/303663", "https://data.delijn.be/stops/307736"], ["https://data.delijn.be/stops/402884", "https://data.delijn.be/stops/402944"], ["https://data.delijn.be/stops/302241", "https://data.delijn.be/stops/302247"], ["https://data.delijn.be/stops/400972", "https://data.delijn.be/stops/400973"], ["https://data.delijn.be/stops/202167", "https://data.delijn.be/stops/205075"], ["https://data.delijn.be/stops/501142", "https://data.delijn.be/stops/501161"], ["https://data.delijn.be/stops/504996", "https://data.delijn.be/stops/505379"], ["https://data.delijn.be/stops/300494", "https://data.delijn.be/stops/306175"], ["https://data.delijn.be/stops/300156", "https://data.delijn.be/stops/300165"], ["https://data.delijn.be/stops/304882", "https://data.delijn.be/stops/304883"], ["https://data.delijn.be/stops/105763", "https://data.delijn.be/stops/105764"], ["https://data.delijn.be/stops/203280", "https://data.delijn.be/stops/211104"], ["https://data.delijn.be/stops/200047", "https://data.delijn.be/stops/210001"], ["https://data.delijn.be/stops/304981", "https://data.delijn.be/stops/308012"], ["https://data.delijn.be/stops/503277", "https://data.delijn.be/stops/508286"], ["https://data.delijn.be/stops/407711", "https://data.delijn.be/stops/407713"], ["https://data.delijn.be/stops/408670", "https://data.delijn.be/stops/408755"], ["https://data.delijn.be/stops/400065", "https://data.delijn.be/stops/400109"], ["https://data.delijn.be/stops/301995", "https://data.delijn.be/stops/306386"], ["https://data.delijn.be/stops/405340", "https://data.delijn.be/stops/405341"], ["https://data.delijn.be/stops/504411", "https://data.delijn.be/stops/504427"], ["https://data.delijn.be/stops/204346", "https://data.delijn.be/stops/205346"], ["https://data.delijn.be/stops/208732", "https://data.delijn.be/stops/209732"], ["https://data.delijn.be/stops/410007", "https://data.delijn.be/stops/410009"], ["https://data.delijn.be/stops/405912", "https://data.delijn.be/stops/405913"], ["https://data.delijn.be/stops/408010", "https://data.delijn.be/stops/408421"], ["https://data.delijn.be/stops/105246", "https://data.delijn.be/stops/105249"], ["https://data.delijn.be/stops/206147", "https://data.delijn.be/stops/207146"], ["https://data.delijn.be/stops/404199", "https://data.delijn.be/stops/404204"], ["https://data.delijn.be/stops/305341", "https://data.delijn.be/stops/305352"], ["https://data.delijn.be/stops/408363", "https://data.delijn.be/stops/408364"], ["https://data.delijn.be/stops/106511", "https://data.delijn.be/stops/106513"], ["https://data.delijn.be/stops/403037", "https://data.delijn.be/stops/403865"], ["https://data.delijn.be/stops/500930", "https://data.delijn.be/stops/500938"], ["https://data.delijn.be/stops/106044", "https://data.delijn.be/stops/106059"], ["https://data.delijn.be/stops/301650", "https://data.delijn.be/stops/301652"], ["https://data.delijn.be/stops/203476", "https://data.delijn.be/stops/206933"], ["https://data.delijn.be/stops/502526", "https://data.delijn.be/stops/502528"], ["https://data.delijn.be/stops/303737", "https://data.delijn.be/stops/303743"], ["https://data.delijn.be/stops/503175", "https://data.delijn.be/stops/508175"], ["https://data.delijn.be/stops/407717", "https://data.delijn.be/stops/409777"], ["https://data.delijn.be/stops/206493", "https://data.delijn.be/stops/207492"], ["https://data.delijn.be/stops/209110", "https://data.delijn.be/stops/209112"], ["https://data.delijn.be/stops/204311", "https://data.delijn.be/stops/204675"], ["https://data.delijn.be/stops/107110", "https://data.delijn.be/stops/108875"], ["https://data.delijn.be/stops/207783", "https://data.delijn.be/stops/208189"], ["https://data.delijn.be/stops/202237", "https://data.delijn.be/stops/203236"], ["https://data.delijn.be/stops/104250", "https://data.delijn.be/stops/104254"], ["https://data.delijn.be/stops/206724", "https://data.delijn.be/stops/206736"], ["https://data.delijn.be/stops/104289", "https://data.delijn.be/stops/105862"], ["https://data.delijn.be/stops/504327", "https://data.delijn.be/stops/509328"], ["https://data.delijn.be/stops/202589", "https://data.delijn.be/stops/202590"], ["https://data.delijn.be/stops/502732", "https://data.delijn.be/stops/507087"], ["https://data.delijn.be/stops/502287", "https://data.delijn.be/stops/505352"], ["https://data.delijn.be/stops/202220", "https://data.delijn.be/stops/203220"], ["https://data.delijn.be/stops/408733", "https://data.delijn.be/stops/410342"], ["https://data.delijn.be/stops/300389", "https://data.delijn.be/stops/304588"], ["https://data.delijn.be/stops/200580", "https://data.delijn.be/stops/201732"], ["https://data.delijn.be/stops/105827", "https://data.delijn.be/stops/106828"], ["https://data.delijn.be/stops/200181", "https://data.delijn.be/stops/201199"], ["https://data.delijn.be/stops/204930", "https://data.delijn.be/stops/209730"], ["https://data.delijn.be/stops/407760", "https://data.delijn.be/stops/409745"], ["https://data.delijn.be/stops/204763", "https://data.delijn.be/stops/205764"], ["https://data.delijn.be/stops/307148", "https://data.delijn.be/stops/307217"], ["https://data.delijn.be/stops/304049", "https://data.delijn.be/stops/304096"], ["https://data.delijn.be/stops/207672", "https://data.delijn.be/stops/208001"], ["https://data.delijn.be/stops/103273", "https://data.delijn.be/stops/103293"], ["https://data.delijn.be/stops/109686", "https://data.delijn.be/stops/109692"], ["https://data.delijn.be/stops/201717", "https://data.delijn.be/stops/203604"], ["https://data.delijn.be/stops/400586", "https://data.delijn.be/stops/400589"], ["https://data.delijn.be/stops/502090", "https://data.delijn.be/stops/507089"], ["https://data.delijn.be/stops/405731", "https://data.delijn.be/stops/410140"], ["https://data.delijn.be/stops/302588", "https://data.delijn.be/stops/302664"], ["https://data.delijn.be/stops/502744", "https://data.delijn.be/stops/505697"], ["https://data.delijn.be/stops/303302", "https://data.delijn.be/stops/303303"], ["https://data.delijn.be/stops/503170", "https://data.delijn.be/stops/503172"], ["https://data.delijn.be/stops/508067", "https://data.delijn.be/stops/508832"], ["https://data.delijn.be/stops/108709", "https://data.delijn.be/stops/108729"], ["https://data.delijn.be/stops/304471", "https://data.delijn.be/stops/304672"], ["https://data.delijn.be/stops/208083", "https://data.delijn.be/stops/209083"], ["https://data.delijn.be/stops/307333", "https://data.delijn.be/stops/308699"], ["https://data.delijn.be/stops/204379", "https://data.delijn.be/stops/205379"], ["https://data.delijn.be/stops/103724", "https://data.delijn.be/stops/108092"], ["https://data.delijn.be/stops/206818", "https://data.delijn.be/stops/207819"], ["https://data.delijn.be/stops/106375", "https://data.delijn.be/stops/106386"], ["https://data.delijn.be/stops/503557", "https://data.delijn.be/stops/508548"], ["https://data.delijn.be/stops/103472", "https://data.delijn.be/stops/109168"], ["https://data.delijn.be/stops/204970", "https://data.delijn.be/stops/206902"], ["https://data.delijn.be/stops/407835", "https://data.delijn.be/stops/408064"], ["https://data.delijn.be/stops/504493", "https://data.delijn.be/stops/509493"], ["https://data.delijn.be/stops/105749", "https://data.delijn.be/stops/109964"], ["https://data.delijn.be/stops/508996", "https://data.delijn.be/stops/509487"], ["https://data.delijn.be/stops/407923", "https://data.delijn.be/stops/407972"], ["https://data.delijn.be/stops/201080", "https://data.delijn.be/stops/203889"], ["https://data.delijn.be/stops/308478", "https://data.delijn.be/stops/308479"], ["https://data.delijn.be/stops/401564", "https://data.delijn.be/stops/401746"], ["https://data.delijn.be/stops/208574", "https://data.delijn.be/stops/209574"], ["https://data.delijn.be/stops/504191", "https://data.delijn.be/stops/509191"], ["https://data.delijn.be/stops/204595", "https://data.delijn.be/stops/205104"], ["https://data.delijn.be/stops/305430", "https://data.delijn.be/stops/305436"], ["https://data.delijn.be/stops/200648", "https://data.delijn.be/stops/202863"], ["https://data.delijn.be/stops/103928", "https://data.delijn.be/stops/106901"], ["https://data.delijn.be/stops/106915", "https://data.delijn.be/stops/106917"], ["https://data.delijn.be/stops/105873", "https://data.delijn.be/stops/105876"], ["https://data.delijn.be/stops/103724", "https://data.delijn.be/stops/104037"], ["https://data.delijn.be/stops/200869", "https://data.delijn.be/stops/200884"], ["https://data.delijn.be/stops/208665", "https://data.delijn.be/stops/208670"], ["https://data.delijn.be/stops/300005", "https://data.delijn.be/stops/304494"], ["https://data.delijn.be/stops/200661", "https://data.delijn.be/stops/200662"], ["https://data.delijn.be/stops/402875", "https://data.delijn.be/stops/402878"], ["https://data.delijn.be/stops/104389", "https://data.delijn.be/stops/104392"], ["https://data.delijn.be/stops/408252", "https://data.delijn.be/stops/408317"], ["https://data.delijn.be/stops/101656", "https://data.delijn.be/stops/104866"], ["https://data.delijn.be/stops/106093", "https://data.delijn.be/stops/109184"], ["https://data.delijn.be/stops/404893", "https://data.delijn.be/stops/404897"], ["https://data.delijn.be/stops/407839", "https://data.delijn.be/stops/407846"], ["https://data.delijn.be/stops/304204", "https://data.delijn.be/stops/307504"], ["https://data.delijn.be/stops/407859", "https://data.delijn.be/stops/407949"], ["https://data.delijn.be/stops/404010", "https://data.delijn.be/stops/404011"], ["https://data.delijn.be/stops/200206", "https://data.delijn.be/stops/201656"], ["https://data.delijn.be/stops/403258", "https://data.delijn.be/stops/403394"], ["https://data.delijn.be/stops/503186", "https://data.delijn.be/stops/508216"], ["https://data.delijn.be/stops/402006", "https://data.delijn.be/stops/405217"], ["https://data.delijn.be/stops/105552", "https://data.delijn.be/stops/105556"], ["https://data.delijn.be/stops/300684", "https://data.delijn.be/stops/302187"], ["https://data.delijn.be/stops/109138", "https://data.delijn.be/stops/109142"], ["https://data.delijn.be/stops/408710", "https://data.delijn.be/stops/408711"], ["https://data.delijn.be/stops/401402", "https://data.delijn.be/stops/304719"], ["https://data.delijn.be/stops/107835", "https://data.delijn.be/stops/107840"], ["https://data.delijn.be/stops/107934", "https://data.delijn.be/stops/205564"], ["https://data.delijn.be/stops/302977", "https://data.delijn.be/stops/303005"], ["https://data.delijn.be/stops/505719", "https://data.delijn.be/stops/508481"], ["https://data.delijn.be/stops/505103", "https://data.delijn.be/stops/508899"], ["https://data.delijn.be/stops/209299", "https://data.delijn.be/stops/209379"], ["https://data.delijn.be/stops/401409", "https://data.delijn.be/stops/300987"], ["https://data.delijn.be/stops/107447", "https://data.delijn.be/stops/107451"], ["https://data.delijn.be/stops/404766", "https://data.delijn.be/stops/404767"], ["https://data.delijn.be/stops/300826", "https://data.delijn.be/stops/300827"], ["https://data.delijn.be/stops/509927", "https://data.delijn.be/stops/509928"], ["https://data.delijn.be/stops/204768", "https://data.delijn.be/stops/205400"], ["https://data.delijn.be/stops/104917", "https://data.delijn.be/stops/107861"], ["https://data.delijn.be/stops/102982", "https://data.delijn.be/stops/105064"], ["https://data.delijn.be/stops/502521", "https://data.delijn.be/stops/507521"], ["https://data.delijn.be/stops/403174", "https://data.delijn.be/stops/403175"], ["https://data.delijn.be/stops/109042", "https://data.delijn.be/stops/109083"], ["https://data.delijn.be/stops/407491", "https://data.delijn.be/stops/408601"], ["https://data.delijn.be/stops/504444", "https://data.delijn.be/stops/504445"], ["https://data.delijn.be/stops/207299", "https://data.delijn.be/stops/207300"], ["https://data.delijn.be/stops/408650", "https://data.delijn.be/stops/408657"], ["https://data.delijn.be/stops/302080", "https://data.delijn.be/stops/302086"], ["https://data.delijn.be/stops/201430", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/401282", "https://data.delijn.be/stops/408418"], ["https://data.delijn.be/stops/305206", "https://data.delijn.be/stops/308049"], ["https://data.delijn.be/stops/106090", "https://data.delijn.be/stops/106100"], ["https://data.delijn.be/stops/102532", "https://data.delijn.be/stops/405109"], ["https://data.delijn.be/stops/502467", "https://data.delijn.be/stops/502484"], ["https://data.delijn.be/stops/406110", "https://data.delijn.be/stops/406120"], ["https://data.delijn.be/stops/102638", "https://data.delijn.be/stops/104934"], ["https://data.delijn.be/stops/404082", "https://data.delijn.be/stops/308076"], ["https://data.delijn.be/stops/404647", "https://data.delijn.be/stops/405509"], ["https://data.delijn.be/stops/107370", "https://data.delijn.be/stops/107590"], ["https://data.delijn.be/stops/503759", "https://data.delijn.be/stops/508759"], ["https://data.delijn.be/stops/503509", "https://data.delijn.be/stops/508616"], ["https://data.delijn.be/stops/200712", "https://data.delijn.be/stops/205017"], ["https://data.delijn.be/stops/301484", "https://data.delijn.be/stops/301485"], ["https://data.delijn.be/stops/200414", "https://data.delijn.be/stops/201414"], ["https://data.delijn.be/stops/408654", "https://data.delijn.be/stops/408655"], ["https://data.delijn.be/stops/201729", "https://data.delijn.be/stops/208331"], ["https://data.delijn.be/stops/101193", "https://data.delijn.be/stops/205541"], ["https://data.delijn.be/stops/503253", "https://data.delijn.be/stops/505371"], ["https://data.delijn.be/stops/400555", "https://data.delijn.be/stops/410271"], ["https://data.delijn.be/stops/501620", "https://data.delijn.be/stops/506014"], ["https://data.delijn.be/stops/208829", "https://data.delijn.be/stops/210105"], ["https://data.delijn.be/stops/409021", "https://data.delijn.be/stops/409026"], ["https://data.delijn.be/stops/208641", "https://data.delijn.be/stops/209641"], ["https://data.delijn.be/stops/207878", "https://data.delijn.be/stops/306077"], ["https://data.delijn.be/stops/503359", "https://data.delijn.be/stops/503407"], ["https://data.delijn.be/stops/502032", "https://data.delijn.be/stops/502662"], ["https://data.delijn.be/stops/402579", "https://data.delijn.be/stops/403474"], ["https://data.delijn.be/stops/400598", "https://data.delijn.be/stops/400621"], ["https://data.delijn.be/stops/502019", "https://data.delijn.be/stops/507912"], ["https://data.delijn.be/stops/204290", "https://data.delijn.be/stops/205539"], ["https://data.delijn.be/stops/301356", "https://data.delijn.be/stops/304697"], ["https://data.delijn.be/stops/300735", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/300869", "https://data.delijn.be/stops/302217"], ["https://data.delijn.be/stops/405455", "https://data.delijn.be/stops/405462"], ["https://data.delijn.be/stops/104838", "https://data.delijn.be/stops/109566"], ["https://data.delijn.be/stops/301627", "https://data.delijn.be/stops/301630"], ["https://data.delijn.be/stops/101540", "https://data.delijn.be/stops/101665"], ["https://data.delijn.be/stops/200886", "https://data.delijn.be/stops/211005"], ["https://data.delijn.be/stops/302062", "https://data.delijn.be/stops/305635"], ["https://data.delijn.be/stops/504099", "https://data.delijn.be/stops/505190"], ["https://data.delijn.be/stops/104589", "https://data.delijn.be/stops/106413"], ["https://data.delijn.be/stops/301596", "https://data.delijn.be/stops/301602"], ["https://data.delijn.be/stops/206702", "https://data.delijn.be/stops/206730"], ["https://data.delijn.be/stops/302577", "https://data.delijn.be/stops/308093"], ["https://data.delijn.be/stops/505311", "https://data.delijn.be/stops/509058"], ["https://data.delijn.be/stops/305688", "https://data.delijn.be/stops/305690"], ["https://data.delijn.be/stops/203408", "https://data.delijn.be/stops/210409"], ["https://data.delijn.be/stops/401075", "https://data.delijn.be/stops/401083"], ["https://data.delijn.be/stops/108657", "https://data.delijn.be/stops/306630"], ["https://data.delijn.be/stops/508659", "https://data.delijn.be/stops/508748"], ["https://data.delijn.be/stops/107560", "https://data.delijn.be/stops/109847"], ["https://data.delijn.be/stops/406694", "https://data.delijn.be/stops/409766"], ["https://data.delijn.be/stops/504503", "https://data.delijn.be/stops/509510"], ["https://data.delijn.be/stops/308056", "https://data.delijn.be/stops/308758"], ["https://data.delijn.be/stops/200638", "https://data.delijn.be/stops/201638"], ["https://data.delijn.be/stops/503566", "https://data.delijn.be/stops/503570"], ["https://data.delijn.be/stops/405706", "https://data.delijn.be/stops/405714"], ["https://data.delijn.be/stops/202145", "https://data.delijn.be/stops/203144"], ["https://data.delijn.be/stops/508453", "https://data.delijn.be/stops/508459"], ["https://data.delijn.be/stops/105598", "https://data.delijn.be/stops/109606"], ["https://data.delijn.be/stops/502390", "https://data.delijn.be/stops/507405"], ["https://data.delijn.be/stops/408180", "https://data.delijn.be/stops/408181"], ["https://data.delijn.be/stops/302339", "https://data.delijn.be/stops/306180"], ["https://data.delijn.be/stops/301949", "https://data.delijn.be/stops/308965"], ["https://data.delijn.be/stops/403160", "https://data.delijn.be/stops/403478"], ["https://data.delijn.be/stops/205991", "https://data.delijn.be/stops/208799"], ["https://data.delijn.be/stops/303479", "https://data.delijn.be/stops/303482"], ["https://data.delijn.be/stops/204477", "https://data.delijn.be/stops/204478"], ["https://data.delijn.be/stops/105006", "https://data.delijn.be/stops/105009"], ["https://data.delijn.be/stops/300059", "https://data.delijn.be/stops/306797"], ["https://data.delijn.be/stops/101364", "https://data.delijn.be/stops/103241"], ["https://data.delijn.be/stops/500948", "https://data.delijn.be/stops/505409"], ["https://data.delijn.be/stops/300324", "https://data.delijn.be/stops/300328"], ["https://data.delijn.be/stops/300549", "https://data.delijn.be/stops/300568"], ["https://data.delijn.be/stops/202369", "https://data.delijn.be/stops/203369"], ["https://data.delijn.be/stops/206802", "https://data.delijn.be/stops/209034"], ["https://data.delijn.be/stops/204065", "https://data.delijn.be/stops/205703"], ["https://data.delijn.be/stops/505171", "https://data.delijn.be/stops/505672"], ["https://data.delijn.be/stops/109936", "https://data.delijn.be/stops/109947"], ["https://data.delijn.be/stops/505932", "https://data.delijn.be/stops/508140"], ["https://data.delijn.be/stops/504110", "https://data.delijn.be/stops/504469"], ["https://data.delijn.be/stops/503693", "https://data.delijn.be/stops/509962"], ["https://data.delijn.be/stops/301610", "https://data.delijn.be/stops/301614"], ["https://data.delijn.be/stops/207814", "https://data.delijn.be/stops/207815"], ["https://data.delijn.be/stops/502743", "https://data.delijn.be/stops/505066"], ["https://data.delijn.be/stops/202323", "https://data.delijn.be/stops/208640"], ["https://data.delijn.be/stops/107037", "https://data.delijn.be/stops/108238"], ["https://data.delijn.be/stops/302117", "https://data.delijn.be/stops/302119"], ["https://data.delijn.be/stops/404221", "https://data.delijn.be/stops/404222"], ["https://data.delijn.be/stops/504657", "https://data.delijn.be/stops/505921"], ["https://data.delijn.be/stops/101520", "https://data.delijn.be/stops/104877"], ["https://data.delijn.be/stops/405210", "https://data.delijn.be/stops/409355"], ["https://data.delijn.be/stops/301400", "https://data.delijn.be/stops/304549"], ["https://data.delijn.be/stops/402584", "https://data.delijn.be/stops/402645"], ["https://data.delijn.be/stops/509760", "https://data.delijn.be/stops/509787"], ["https://data.delijn.be/stops/405701", "https://data.delijn.be/stops/405741"], ["https://data.delijn.be/stops/202140", "https://data.delijn.be/stops/203140"], ["https://data.delijn.be/stops/209542", "https://data.delijn.be/stops/209559"], ["https://data.delijn.be/stops/200310", "https://data.delijn.be/stops/201311"], ["https://data.delijn.be/stops/200158", "https://data.delijn.be/stops/201639"], ["https://data.delijn.be/stops/103007", "https://data.delijn.be/stops/106509"], ["https://data.delijn.be/stops/201708", "https://data.delijn.be/stops/202442"], ["https://data.delijn.be/stops/102390", "https://data.delijn.be/stops/103085"], ["https://data.delijn.be/stops/404572", "https://data.delijn.be/stops/408171"], ["https://data.delijn.be/stops/403434", "https://data.delijn.be/stops/403435"], ["https://data.delijn.be/stops/203074", "https://data.delijn.be/stops/505684"], ["https://data.delijn.be/stops/404798", "https://data.delijn.be/stops/404814"], ["https://data.delijn.be/stops/206130", "https://data.delijn.be/stops/206137"], ["https://data.delijn.be/stops/301722", "https://data.delijn.be/stops/305276"], ["https://data.delijn.be/stops/202058", "https://data.delijn.be/stops/211104"], ["https://data.delijn.be/stops/101785", "https://data.delijn.be/stops/103875"], ["https://data.delijn.be/stops/503530", "https://data.delijn.be/stops/508530"], ["https://data.delijn.be/stops/203362", "https://data.delijn.be/stops/204950"], ["https://data.delijn.be/stops/208302", "https://data.delijn.be/stops/208303"], ["https://data.delijn.be/stops/407952", "https://data.delijn.be/stops/407953"], ["https://data.delijn.be/stops/201840", "https://data.delijn.be/stops/202320"], ["https://data.delijn.be/stops/402749", "https://data.delijn.be/stops/405295"], ["https://data.delijn.be/stops/306962", "https://data.delijn.be/stops/306963"], ["https://data.delijn.be/stops/407618", "https://data.delijn.be/stops/407658"], ["https://data.delijn.be/stops/104162", "https://data.delijn.be/stops/104521"], ["https://data.delijn.be/stops/201876", "https://data.delijn.be/stops/202660"], ["https://data.delijn.be/stops/404126", "https://data.delijn.be/stops/404197"], ["https://data.delijn.be/stops/300562", "https://data.delijn.be/stops/300563"], ["https://data.delijn.be/stops/208793", "https://data.delijn.be/stops/209788"], ["https://data.delijn.be/stops/407946", "https://data.delijn.be/stops/407947"], ["https://data.delijn.be/stops/103224", "https://data.delijn.be/stops/103299"], ["https://data.delijn.be/stops/208542", "https://data.delijn.be/stops/209542"], ["https://data.delijn.be/stops/502291", "https://data.delijn.be/stops/502293"], ["https://data.delijn.be/stops/102943", "https://data.delijn.be/stops/102944"], ["https://data.delijn.be/stops/201090", "https://data.delijn.be/stops/203889"], ["https://data.delijn.be/stops/504641", "https://data.delijn.be/stops/505119"], ["https://data.delijn.be/stops/203678", "https://data.delijn.be/stops/203694"], ["https://data.delijn.be/stops/108089", "https://data.delijn.be/stops/108388"], ["https://data.delijn.be/stops/308720", "https://data.delijn.be/stops/308733"], ["https://data.delijn.be/stops/305342", "https://data.delijn.be/stops/307970"], ["https://data.delijn.be/stops/107901", "https://data.delijn.be/stops/107909"], ["https://data.delijn.be/stops/505319", "https://data.delijn.be/stops/507479"], ["https://data.delijn.be/stops/205979", "https://data.delijn.be/stops/207404"], ["https://data.delijn.be/stops/104456", "https://data.delijn.be/stops/307523"], ["https://data.delijn.be/stops/407992", "https://data.delijn.be/stops/408070"], ["https://data.delijn.be/stops/300307", "https://data.delijn.be/stops/302134"], ["https://data.delijn.be/stops/300244", "https://data.delijn.be/stops/300245"], ["https://data.delijn.be/stops/107934", "https://data.delijn.be/stops/303536"], ["https://data.delijn.be/stops/407847", "https://data.delijn.be/stops/407983"], ["https://data.delijn.be/stops/208741", "https://data.delijn.be/stops/209358"], ["https://data.delijn.be/stops/505827", "https://data.delijn.be/stops/509451"], ["https://data.delijn.be/stops/300104", "https://data.delijn.be/stops/306850"], ["https://data.delijn.be/stops/409680", "https://data.delijn.be/stops/409722"], ["https://data.delijn.be/stops/202738", "https://data.delijn.be/stops/203738"], ["https://data.delijn.be/stops/208727", "https://data.delijn.be/stops/209727"], ["https://data.delijn.be/stops/401871", "https://data.delijn.be/stops/406337"], ["https://data.delijn.be/stops/109334", "https://data.delijn.be/stops/109335"], ["https://data.delijn.be/stops/308202", "https://data.delijn.be/stops/308203"], ["https://data.delijn.be/stops/107081", "https://data.delijn.be/stops/107082"], ["https://data.delijn.be/stops/107690", "https://data.delijn.be/stops/107695"], ["https://data.delijn.be/stops/402489", "https://data.delijn.be/stops/402491"], ["https://data.delijn.be/stops/103233", "https://data.delijn.be/stops/108923"], ["https://data.delijn.be/stops/304658", "https://data.delijn.be/stops/304659"], ["https://data.delijn.be/stops/101045", "https://data.delijn.be/stops/105430"], ["https://data.delijn.be/stops/201402", "https://data.delijn.be/stops/203364"], ["https://data.delijn.be/stops/205399", "https://data.delijn.be/stops/205400"], ["https://data.delijn.be/stops/208370", "https://data.delijn.be/stops/208372"], ["https://data.delijn.be/stops/300637", "https://data.delijn.be/stops/300659"], ["https://data.delijn.be/stops/109039", "https://data.delijn.be/stops/307947"], ["https://data.delijn.be/stops/106012", "https://data.delijn.be/stops/106016"], ["https://data.delijn.be/stops/405344", "https://data.delijn.be/stops/405430"], ["https://data.delijn.be/stops/404880", "https://data.delijn.be/stops/404883"], ["https://data.delijn.be/stops/306794", "https://data.delijn.be/stops/307347"], ["https://data.delijn.be/stops/305655", "https://data.delijn.be/stops/305670"], ["https://data.delijn.be/stops/204472", "https://data.delijn.be/stops/205472"], ["https://data.delijn.be/stops/301389", "https://data.delijn.be/stops/301390"], ["https://data.delijn.be/stops/206784", "https://data.delijn.be/stops/208019"], ["https://data.delijn.be/stops/405186", "https://data.delijn.be/stops/405187"], ["https://data.delijn.be/stops/206012", "https://data.delijn.be/stops/207387"], ["https://data.delijn.be/stops/201670", "https://data.delijn.be/stops/201840"], ["https://data.delijn.be/stops/104334", "https://data.delijn.be/stops/105853"], ["https://data.delijn.be/stops/202609", "https://data.delijn.be/stops/202612"], ["https://data.delijn.be/stops/105088", "https://data.delijn.be/stops/105089"], ["https://data.delijn.be/stops/302551", "https://data.delijn.be/stops/302555"], ["https://data.delijn.be/stops/501180", "https://data.delijn.be/stops/504511"], ["https://data.delijn.be/stops/504016", "https://data.delijn.be/stops/509506"], ["https://data.delijn.be/stops/301041", "https://data.delijn.be/stops/308854"], ["https://data.delijn.be/stops/109359", "https://data.delijn.be/stops/109360"], ["https://data.delijn.be/stops/305221", "https://data.delijn.be/stops/305222"], ["https://data.delijn.be/stops/102834", "https://data.delijn.be/stops/103761"], ["https://data.delijn.be/stops/107302", "https://data.delijn.be/stops/109664"], ["https://data.delijn.be/stops/200551", "https://data.delijn.be/stops/200568"], ["https://data.delijn.be/stops/206522", "https://data.delijn.be/stops/207521"], ["https://data.delijn.be/stops/200937", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/407779", "https://data.delijn.be/stops/407780"], ["https://data.delijn.be/stops/407241", "https://data.delijn.be/stops/407486"], ["https://data.delijn.be/stops/101780", "https://data.delijn.be/stops/103282"], ["https://data.delijn.be/stops/300481", "https://data.delijn.be/stops/300505"], ["https://data.delijn.be/stops/407752", "https://data.delijn.be/stops/407756"], ["https://data.delijn.be/stops/402734", "https://data.delijn.be/stops/410089"], ["https://data.delijn.be/stops/402562", "https://data.delijn.be/stops/402563"], ["https://data.delijn.be/stops/306797", "https://data.delijn.be/stops/306798"], ["https://data.delijn.be/stops/106859", "https://data.delijn.be/stops/109622"], ["https://data.delijn.be/stops/200558", "https://data.delijn.be/stops/201559"], ["https://data.delijn.be/stops/201383", "https://data.delijn.be/stops/209732"], ["https://data.delijn.be/stops/206131", "https://data.delijn.be/stops/206132"], ["https://data.delijn.be/stops/305113", "https://data.delijn.be/stops/305130"], ["https://data.delijn.be/stops/105517", "https://data.delijn.be/stops/108728"], ["https://data.delijn.be/stops/201216", "https://data.delijn.be/stops/201217"], ["https://data.delijn.be/stops/104244", "https://data.delijn.be/stops/104246"], ["https://data.delijn.be/stops/208612", "https://data.delijn.be/stops/209612"], ["https://data.delijn.be/stops/403413", "https://data.delijn.be/stops/403686"], ["https://data.delijn.be/stops/400527", "https://data.delijn.be/stops/400581"], ["https://data.delijn.be/stops/306297", "https://data.delijn.be/stops/306298"], ["https://data.delijn.be/stops/200691", "https://data.delijn.be/stops/211041"], ["https://data.delijn.be/stops/305451", "https://data.delijn.be/stops/308952"], ["https://data.delijn.be/stops/300973", "https://data.delijn.be/stops/304535"], ["https://data.delijn.be/stops/107562", "https://data.delijn.be/stops/109436"], ["https://data.delijn.be/stops/305033", "https://data.delijn.be/stops/308059"], ["https://data.delijn.be/stops/301463", "https://data.delijn.be/stops/301496"], ["https://data.delijn.be/stops/503287", "https://data.delijn.be/stops/504713"], ["https://data.delijn.be/stops/102551", "https://data.delijn.be/stops/109640"], ["https://data.delijn.be/stops/207665", "https://data.delijn.be/stops/209675"], ["https://data.delijn.be/stops/502812", "https://data.delijn.be/stops/507513"], ["https://data.delijn.be/stops/407653", "https://data.delijn.be/stops/409810"], ["https://data.delijn.be/stops/400353", "https://data.delijn.be/stops/400361"], ["https://data.delijn.be/stops/300897", "https://data.delijn.be/stops/306284"], ["https://data.delijn.be/stops/300667", "https://data.delijn.be/stops/300673"], ["https://data.delijn.be/stops/206148", "https://data.delijn.be/stops/207148"], ["https://data.delijn.be/stops/104711", "https://data.delijn.be/stops/107344"], ["https://data.delijn.be/stops/108628", "https://data.delijn.be/stops/108632"], ["https://data.delijn.be/stops/103609", "https://data.delijn.be/stops/103611"], ["https://data.delijn.be/stops/109450", "https://data.delijn.be/stops/109452"], ["https://data.delijn.be/stops/206692", "https://data.delijn.be/stops/207191"], ["https://data.delijn.be/stops/304497", "https://data.delijn.be/stops/304520"], ["https://data.delijn.be/stops/401118", "https://data.delijn.be/stops/406299"], ["https://data.delijn.be/stops/409478", "https://data.delijn.be/stops/409483"], ["https://data.delijn.be/stops/305060", "https://data.delijn.be/stops/305065"], ["https://data.delijn.be/stops/210048", "https://data.delijn.be/stops/211082"], ["https://data.delijn.be/stops/503672", "https://data.delijn.be/stops/505258"], ["https://data.delijn.be/stops/401575", "https://data.delijn.be/stops/402104"], ["https://data.delijn.be/stops/503294", "https://data.delijn.be/stops/508295"], ["https://data.delijn.be/stops/304335", "https://data.delijn.be/stops/304706"], ["https://data.delijn.be/stops/208010", "https://data.delijn.be/stops/209012"], ["https://data.delijn.be/stops/303415", "https://data.delijn.be/stops/303429"], ["https://data.delijn.be/stops/200019", "https://data.delijn.be/stops/210045"], ["https://data.delijn.be/stops/405385", "https://data.delijn.be/stops/303316"], ["https://data.delijn.be/stops/203779", "https://data.delijn.be/stops/203780"], ["https://data.delijn.be/stops/400748", "https://data.delijn.be/stops/409598"], ["https://data.delijn.be/stops/301860", "https://data.delijn.be/stops/306989"], ["https://data.delijn.be/stops/103638", "https://data.delijn.be/stops/107167"], ["https://data.delijn.be/stops/208107", "https://data.delijn.be/stops/209778"], ["https://data.delijn.be/stops/405763", "https://data.delijn.be/stops/409281"], ["https://data.delijn.be/stops/306594", "https://data.delijn.be/stops/306598"], ["https://data.delijn.be/stops/501698", "https://data.delijn.be/stops/506405"], ["https://data.delijn.be/stops/109153", "https://data.delijn.be/stops/109232"], ["https://data.delijn.be/stops/106918", "https://data.delijn.be/stops/106949"], ["https://data.delijn.be/stops/503159", "https://data.delijn.be/stops/504856"], ["https://data.delijn.be/stops/102739", "https://data.delijn.be/stops/105522"], ["https://data.delijn.be/stops/500018", "https://data.delijn.be/stops/502463"], ["https://data.delijn.be/stops/302415", "https://data.delijn.be/stops/307002"], ["https://data.delijn.be/stops/502304", "https://data.delijn.be/stops/507316"], ["https://data.delijn.be/stops/402048", "https://data.delijn.be/stops/402268"], ["https://data.delijn.be/stops/103486", "https://data.delijn.be/stops/109148"], ["https://data.delijn.be/stops/305076", "https://data.delijn.be/stops/305080"], ["https://data.delijn.be/stops/205371", "https://data.delijn.be/stops/205760"], ["https://data.delijn.be/stops/401642", "https://data.delijn.be/stops/408621"], ["https://data.delijn.be/stops/208759", "https://data.delijn.be/stops/209183"], ["https://data.delijn.be/stops/200843", "https://data.delijn.be/stops/202299"], ["https://data.delijn.be/stops/405484", "https://data.delijn.be/stops/405485"], ["https://data.delijn.be/stops/502105", "https://data.delijn.be/stops/502118"], ["https://data.delijn.be/stops/105434", "https://data.delijn.be/stops/109981"], ["https://data.delijn.be/stops/205365", "https://data.delijn.be/stops/214012"], ["https://data.delijn.be/stops/505522", "https://data.delijn.be/stops/509893"], ["https://data.delijn.be/stops/200702", "https://data.delijn.be/stops/200730"], ["https://data.delijn.be/stops/503324", "https://data.delijn.be/stops/508325"], ["https://data.delijn.be/stops/200695", "https://data.delijn.be/stops/210108"], ["https://data.delijn.be/stops/504004", "https://data.delijn.be/stops/509740"], ["https://data.delijn.be/stops/501196", "https://data.delijn.be/stops/506196"], ["https://data.delijn.be/stops/107215", "https://data.delijn.be/stops/107236"], ["https://data.delijn.be/stops/108488", "https://data.delijn.be/stops/303980"], ["https://data.delijn.be/stops/103499", "https://data.delijn.be/stops/103501"], ["https://data.delijn.be/stops/301153", "https://data.delijn.be/stops/307695"], ["https://data.delijn.be/stops/303126", "https://data.delijn.be/stops/303134"], ["https://data.delijn.be/stops/400113", "https://data.delijn.be/stops/400135"], ["https://data.delijn.be/stops/502669", "https://data.delijn.be/stops/507669"], ["https://data.delijn.be/stops/101827", "https://data.delijn.be/stops/107116"], ["https://data.delijn.be/stops/407991", "https://data.delijn.be/stops/408169"], ["https://data.delijn.be/stops/407834", "https://data.delijn.be/stops/407977"], ["https://data.delijn.be/stops/305059", "https://data.delijn.be/stops/305062"], ["https://data.delijn.be/stops/503725", "https://data.delijn.be/stops/508774"], ["https://data.delijn.be/stops/402138", "https://data.delijn.be/stops/406810"], ["https://data.delijn.be/stops/200390", "https://data.delijn.be/stops/208970"], ["https://data.delijn.be/stops/103646", "https://data.delijn.be/stops/105325"], ["https://data.delijn.be/stops/507429", "https://data.delijn.be/stops/507431"], ["https://data.delijn.be/stops/504402", "https://data.delijn.be/stops/509464"], ["https://data.delijn.be/stops/103923", "https://data.delijn.be/stops/103926"], ["https://data.delijn.be/stops/402345", "https://data.delijn.be/stops/402355"], ["https://data.delijn.be/stops/504014", "https://data.delijn.be/stops/509014"], ["https://data.delijn.be/stops/302232", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/407783", "https://data.delijn.be/stops/408143"], ["https://data.delijn.be/stops/102242", "https://data.delijn.be/stops/105881"], ["https://data.delijn.be/stops/200367", "https://data.delijn.be/stops/200383"], ["https://data.delijn.be/stops/200531", "https://data.delijn.be/stops/201531"], ["https://data.delijn.be/stops/303637", "https://data.delijn.be/stops/304807"], ["https://data.delijn.be/stops/104428", "https://data.delijn.be/stops/104869"], ["https://data.delijn.be/stops/207752", "https://data.delijn.be/stops/207795"], ["https://data.delijn.be/stops/204240", "https://data.delijn.be/stops/205240"], ["https://data.delijn.be/stops/101500", "https://data.delijn.be/stops/109351"], ["https://data.delijn.be/stops/303664", "https://data.delijn.be/stops/305398"], ["https://data.delijn.be/stops/304849", "https://data.delijn.be/stops/307831"], ["https://data.delijn.be/stops/207088", "https://data.delijn.be/stops/207089"], ["https://data.delijn.be/stops/508495", "https://data.delijn.be/stops/508501"], ["https://data.delijn.be/stops/105713", "https://data.delijn.be/stops/106078"], ["https://data.delijn.be/stops/405177", "https://data.delijn.be/stops/406725"], ["https://data.delijn.be/stops/301537", "https://data.delijn.be/stops/304702"], ["https://data.delijn.be/stops/102089", "https://data.delijn.be/stops/106806"], ["https://data.delijn.be/stops/104508", "https://data.delijn.be/stops/308798"], ["https://data.delijn.be/stops/103248", "https://data.delijn.be/stops/107595"], ["https://data.delijn.be/stops/302583", "https://data.delijn.be/stops/302596"], ["https://data.delijn.be/stops/104049", "https://data.delijn.be/stops/104128"], ["https://data.delijn.be/stops/403413", "https://data.delijn.be/stops/410288"], ["https://data.delijn.be/stops/103771", "https://data.delijn.be/stops/103773"], ["https://data.delijn.be/stops/207796", "https://data.delijn.be/stops/207797"], ["https://data.delijn.be/stops/502240", "https://data.delijn.be/stops/502654"], ["https://data.delijn.be/stops/101661", "https://data.delijn.be/stops/204661"], ["https://data.delijn.be/stops/503767", "https://data.delijn.be/stops/505315"], ["https://data.delijn.be/stops/101787", "https://data.delijn.be/stops/109152"], ["https://data.delijn.be/stops/302902", "https://data.delijn.be/stops/302903"], ["https://data.delijn.be/stops/304263", "https://data.delijn.be/stops/304271"], ["https://data.delijn.be/stops/304216", "https://data.delijn.be/stops/307246"], ["https://data.delijn.be/stops/200156", "https://data.delijn.be/stops/201157"], ["https://data.delijn.be/stops/502175", "https://data.delijn.be/stops/507686"], ["https://data.delijn.be/stops/504016", "https://data.delijn.be/stops/504507"], ["https://data.delijn.be/stops/202500", "https://data.delijn.be/stops/205792"], ["https://data.delijn.be/stops/505958", "https://data.delijn.be/stops/508280"], ["https://data.delijn.be/stops/303472", "https://data.delijn.be/stops/304175"], ["https://data.delijn.be/stops/208970", "https://data.delijn.be/stops/209955"], ["https://data.delijn.be/stops/403944", "https://data.delijn.be/stops/403984"], ["https://data.delijn.be/stops/503154", "https://data.delijn.be/stops/505190"], ["https://data.delijn.be/stops/202254", "https://data.delijn.be/stops/203254"], ["https://data.delijn.be/stops/502755", "https://data.delijn.be/stops/507755"], ["https://data.delijn.be/stops/301531", "https://data.delijn.be/stops/308084"], ["https://data.delijn.be/stops/503591", "https://data.delijn.be/stops/505957"], ["https://data.delijn.be/stops/207497", "https://data.delijn.be/stops/207501"], ["https://data.delijn.be/stops/408546", "https://data.delijn.be/stops/408603"], ["https://data.delijn.be/stops/204761", "https://data.delijn.be/stops/214013"], ["https://data.delijn.be/stops/402115", "https://data.delijn.be/stops/406805"], ["https://data.delijn.be/stops/108205", "https://data.delijn.be/stops/108965"], ["https://data.delijn.be/stops/300304", "https://data.delijn.be/stops/307457"], ["https://data.delijn.be/stops/300605", "https://data.delijn.be/stops/300607"], ["https://data.delijn.be/stops/406304", "https://data.delijn.be/stops/409015"], ["https://data.delijn.be/stops/105286", "https://data.delijn.be/stops/108465"], ["https://data.delijn.be/stops/500873", "https://data.delijn.be/stops/504994"], ["https://data.delijn.be/stops/101482", "https://data.delijn.be/stops/109297"], ["https://data.delijn.be/stops/405658", "https://data.delijn.be/stops/408746"], ["https://data.delijn.be/stops/303139", "https://data.delijn.be/stops/303594"], ["https://data.delijn.be/stops/204195", "https://data.delijn.be/stops/204196"], ["https://data.delijn.be/stops/301460", "https://data.delijn.be/stops/301492"], ["https://data.delijn.be/stops/301240", "https://data.delijn.be/stops/308266"], ["https://data.delijn.be/stops/203897", "https://data.delijn.be/stops/203898"], ["https://data.delijn.be/stops/409423", "https://data.delijn.be/stops/409725"], ["https://data.delijn.be/stops/206454", "https://data.delijn.be/stops/207454"], ["https://data.delijn.be/stops/102383", "https://data.delijn.be/stops/106568"], ["https://data.delijn.be/stops/210053", "https://data.delijn.be/stops/210124"], ["https://data.delijn.be/stops/503335", "https://data.delijn.be/stops/508336"], ["https://data.delijn.be/stops/108107", "https://data.delijn.be/stops/108118"], ["https://data.delijn.be/stops/203148", "https://data.delijn.be/stops/203149"], ["https://data.delijn.be/stops/106928", "https://data.delijn.be/stops/106929"], ["https://data.delijn.be/stops/200494", "https://data.delijn.be/stops/203937"], ["https://data.delijn.be/stops/508613", "https://data.delijn.be/stops/508617"], ["https://data.delijn.be/stops/300268", "https://data.delijn.be/stops/302150"], ["https://data.delijn.be/stops/503933", "https://data.delijn.be/stops/508933"], ["https://data.delijn.be/stops/505190", "https://data.delijn.be/stops/505788"], ["https://data.delijn.be/stops/410071", "https://data.delijn.be/stops/410072"], ["https://data.delijn.be/stops/102535", "https://data.delijn.be/stops/102540"], ["https://data.delijn.be/stops/202296", "https://data.delijn.be/stops/203295"], ["https://data.delijn.be/stops/400164", "https://data.delijn.be/stops/400168"], ["https://data.delijn.be/stops/202091", "https://data.delijn.be/stops/202689"], ["https://data.delijn.be/stops/505349", "https://data.delijn.be/stops/507597"], ["https://data.delijn.be/stops/409038", "https://data.delijn.be/stops/409039"], ["https://data.delijn.be/stops/409063", "https://data.delijn.be/stops/409072"], ["https://data.delijn.be/stops/409555", "https://data.delijn.be/stops/409560"], ["https://data.delijn.be/stops/400045", "https://data.delijn.be/stops/400321"], ["https://data.delijn.be/stops/409266", "https://data.delijn.be/stops/409267"], ["https://data.delijn.be/stops/107598", "https://data.delijn.be/stops/107601"], ["https://data.delijn.be/stops/301713", "https://data.delijn.be/stops/301756"], ["https://data.delijn.be/stops/302505", "https://data.delijn.be/stops/302518"], ["https://data.delijn.be/stops/403128", "https://data.delijn.be/stops/409316"], ["https://data.delijn.be/stops/107078", "https://data.delijn.be/stops/108173"], ["https://data.delijn.be/stops/406446", "https://data.delijn.be/stops/406744"], ["https://data.delijn.be/stops/305508", "https://data.delijn.be/stops/305518"], ["https://data.delijn.be/stops/505630", "https://data.delijn.be/stops/508345"], ["https://data.delijn.be/stops/106204", "https://data.delijn.be/stops/109907"], ["https://data.delijn.be/stops/503434", "https://data.delijn.be/stops/508416"], ["https://data.delijn.be/stops/401401", "https://data.delijn.be/stops/304720"], ["https://data.delijn.be/stops/208610", "https://data.delijn.be/stops/209609"], ["https://data.delijn.be/stops/207434", "https://data.delijn.be/stops/209690"], ["https://data.delijn.be/stops/205734", "https://data.delijn.be/stops/205757"], ["https://data.delijn.be/stops/405789", "https://data.delijn.be/stops/405791"], ["https://data.delijn.be/stops/200921", "https://data.delijn.be/stops/202275"], ["https://data.delijn.be/stops/404411", "https://data.delijn.be/stops/404412"], ["https://data.delijn.be/stops/201564", "https://data.delijn.be/stops/201565"], ["https://data.delijn.be/stops/205029", "https://data.delijn.be/stops/205030"], ["https://data.delijn.be/stops/201453", "https://data.delijn.be/stops/201454"], ["https://data.delijn.be/stops/502186", "https://data.delijn.be/stops/502187"], ["https://data.delijn.be/stops/200213", "https://data.delijn.be/stops/203547"], ["https://data.delijn.be/stops/102395", "https://data.delijn.be/stops/105905"], ["https://data.delijn.be/stops/202037", "https://data.delijn.be/stops/202038"], ["https://data.delijn.be/stops/102808", "https://data.delijn.be/stops/107660"], ["https://data.delijn.be/stops/507543", "https://data.delijn.be/stops/507612"], ["https://data.delijn.be/stops/104880", "https://data.delijn.be/stops/104884"], ["https://data.delijn.be/stops/400557", "https://data.delijn.be/stops/404281"], ["https://data.delijn.be/stops/206439", "https://data.delijn.be/stops/206440"], ["https://data.delijn.be/stops/504576", "https://data.delijn.be/stops/509576"], ["https://data.delijn.be/stops/405836", "https://data.delijn.be/stops/406386"], ["https://data.delijn.be/stops/509347", "https://data.delijn.be/stops/509354"], ["https://data.delijn.be/stops/204018", "https://data.delijn.be/stops/205086"], ["https://data.delijn.be/stops/303518", "https://data.delijn.be/stops/303523"], ["https://data.delijn.be/stops/402140", "https://data.delijn.be/stops/402439"], ["https://data.delijn.be/stops/305739", "https://data.delijn.be/stops/305745"], ["https://data.delijn.be/stops/106258", "https://data.delijn.be/stops/109904"], ["https://data.delijn.be/stops/101267", "https://data.delijn.be/stops/102884"], ["https://data.delijn.be/stops/202001", "https://data.delijn.be/stops/203491"], ["https://data.delijn.be/stops/308126", "https://data.delijn.be/stops/308875"], ["https://data.delijn.be/stops/501732", "https://data.delijn.be/stops/506115"], ["https://data.delijn.be/stops/300164", "https://data.delijn.be/stops/308700"], ["https://data.delijn.be/stops/301860", "https://data.delijn.be/stops/301864"], ["https://data.delijn.be/stops/102088", "https://data.delijn.be/stops/106771"], ["https://data.delijn.be/stops/103772", "https://data.delijn.be/stops/107117"], ["https://data.delijn.be/stops/503086", "https://data.delijn.be/stops/508086"], ["https://data.delijn.be/stops/305558", "https://data.delijn.be/stops/305580"], ["https://data.delijn.be/stops/208109", "https://data.delijn.be/stops/209110"], ["https://data.delijn.be/stops/202023", "https://data.delijn.be/stops/202024"], ["https://data.delijn.be/stops/501336", "https://data.delijn.be/stops/506360"], ["https://data.delijn.be/stops/206800", "https://data.delijn.be/stops/208603"], ["https://data.delijn.be/stops/208027", "https://data.delijn.be/stops/209096"], ["https://data.delijn.be/stops/106469", "https://data.delijn.be/stops/107046"], ["https://data.delijn.be/stops/403644", "https://data.delijn.be/stops/407271"], ["https://data.delijn.be/stops/201948", "https://data.delijn.be/stops/201953"], ["https://data.delijn.be/stops/200896", "https://data.delijn.be/stops/203054"], ["https://data.delijn.be/stops/200114", "https://data.delijn.be/stops/210073"], ["https://data.delijn.be/stops/503342", "https://data.delijn.be/stops/508343"], ["https://data.delijn.be/stops/408652", "https://data.delijn.be/stops/408656"], ["https://data.delijn.be/stops/408672", "https://data.delijn.be/stops/408807"], ["https://data.delijn.be/stops/108021", "https://data.delijn.be/stops/108023"], ["https://data.delijn.be/stops/201861", "https://data.delijn.be/stops/203725"], ["https://data.delijn.be/stops/305328", "https://data.delijn.be/stops/305329"], ["https://data.delijn.be/stops/302330", "https://data.delijn.be/stops/304068"], ["https://data.delijn.be/stops/407599", "https://data.delijn.be/stops/410298"], ["https://data.delijn.be/stops/503285", "https://data.delijn.be/stops/505954"], ["https://data.delijn.be/stops/300392", "https://data.delijn.be/stops/306386"], ["https://data.delijn.be/stops/108330", "https://data.delijn.be/stops/108730"], ["https://data.delijn.be/stops/204692", "https://data.delijn.be/stops/205323"], ["https://data.delijn.be/stops/209790", "https://data.delijn.be/stops/209791"], ["https://data.delijn.be/stops/302213", "https://data.delijn.be/stops/302215"], ["https://data.delijn.be/stops/407761", "https://data.delijn.be/stops/409788"], ["https://data.delijn.be/stops/109084", "https://data.delijn.be/stops/109313"], ["https://data.delijn.be/stops/107021", "https://data.delijn.be/stops/107023"], ["https://data.delijn.be/stops/103055", "https://data.delijn.be/stops/104135"], ["https://data.delijn.be/stops/102838", "https://data.delijn.be/stops/103049"], ["https://data.delijn.be/stops/210063", "https://data.delijn.be/stops/211119"], ["https://data.delijn.be/stops/406054", "https://data.delijn.be/stops/406144"], ["https://data.delijn.be/stops/204547", "https://data.delijn.be/stops/205501"], ["https://data.delijn.be/stops/108068", "https://data.delijn.be/stops/108868"], ["https://data.delijn.be/stops/200698", "https://data.delijn.be/stops/201745"], ["https://data.delijn.be/stops/303282", "https://data.delijn.be/stops/304658"], ["https://data.delijn.be/stops/302548", "https://data.delijn.be/stops/302557"], ["https://data.delijn.be/stops/202011", "https://data.delijn.be/stops/203654"], ["https://data.delijn.be/stops/503318", "https://data.delijn.be/stops/503963"], ["https://data.delijn.be/stops/404722", "https://data.delijn.be/stops/404801"], ["https://data.delijn.be/stops/401966", "https://data.delijn.be/stops/403073"], ["https://data.delijn.be/stops/400875", "https://data.delijn.be/stops/409646"], ["https://data.delijn.be/stops/101926", "https://data.delijn.be/stops/107069"], ["https://data.delijn.be/stops/105269", "https://data.delijn.be/stops/105272"], ["https://data.delijn.be/stops/206597", "https://data.delijn.be/stops/207597"], ["https://data.delijn.be/stops/208016", "https://data.delijn.be/stops/208017"], ["https://data.delijn.be/stops/401226", "https://data.delijn.be/stops/401275"], ["https://data.delijn.be/stops/409642", "https://data.delijn.be/stops/410334"], ["https://data.delijn.be/stops/207113", "https://data.delijn.be/stops/207906"], ["https://data.delijn.be/stops/303062", "https://data.delijn.be/stops/304229"], ["https://data.delijn.be/stops/302534", "https://data.delijn.be/stops/302546"], ["https://data.delijn.be/stops/102300", "https://data.delijn.be/stops/104490"], ["https://data.delijn.be/stops/202435", "https://data.delijn.be/stops/203716"], ["https://data.delijn.be/stops/200449", "https://data.delijn.be/stops/202353"], ["https://data.delijn.be/stops/306764", "https://data.delijn.be/stops/308816"], ["https://data.delijn.be/stops/302377", "https://data.delijn.be/stops/302387"], ["https://data.delijn.be/stops/108123", "https://data.delijn.be/stops/109586"], ["https://data.delijn.be/stops/203327", "https://data.delijn.be/stops/203429"], ["https://data.delijn.be/stops/507223", "https://data.delijn.be/stops/507224"], ["https://data.delijn.be/stops/107014", "https://data.delijn.be/stops/107067"], ["https://data.delijn.be/stops/409009", "https://data.delijn.be/stops/409017"], ["https://data.delijn.be/stops/509601", "https://data.delijn.be/stops/509607"], ["https://data.delijn.be/stops/300546", "https://data.delijn.be/stops/300550"], ["https://data.delijn.be/stops/503378", "https://data.delijn.be/stops/508531"], ["https://data.delijn.be/stops/104060", "https://data.delijn.be/stops/108145"], ["https://data.delijn.be/stops/407200", "https://data.delijn.be/stops/407201"], ["https://data.delijn.be/stops/201355", "https://data.delijn.be/stops/209725"], ["https://data.delijn.be/stops/402641", "https://data.delijn.be/stops/402948"], ["https://data.delijn.be/stops/300963", "https://data.delijn.be/stops/300964"], ["https://data.delijn.be/stops/400840", "https://data.delijn.be/stops/409575"], ["https://data.delijn.be/stops/305920", "https://data.delijn.be/stops/306254"], ["https://data.delijn.be/stops/300336", "https://data.delijn.be/stops/304458"], ["https://data.delijn.be/stops/504772", "https://data.delijn.be/stops/509534"], ["https://data.delijn.be/stops/408881", "https://data.delijn.be/stops/408886"], ["https://data.delijn.be/stops/201002", "https://data.delijn.be/stops/203018"], ["https://data.delijn.be/stops/403005", "https://data.delijn.be/stops/404531"], ["https://data.delijn.be/stops/409064", "https://data.delijn.be/stops/409121"], ["https://data.delijn.be/stops/400564", "https://data.delijn.be/stops/400577"], ["https://data.delijn.be/stops/302861", "https://data.delijn.be/stops/307072"], ["https://data.delijn.be/stops/209063", "https://data.delijn.be/stops/209064"], ["https://data.delijn.be/stops/105801", "https://data.delijn.be/stops/105812"], ["https://data.delijn.be/stops/101906", "https://data.delijn.be/stops/101923"], ["https://data.delijn.be/stops/201914", "https://data.delijn.be/stops/202949"], ["https://data.delijn.be/stops/403835", "https://data.delijn.be/stops/405635"], ["https://data.delijn.be/stops/503010", "https://data.delijn.be/stops/505278"], ["https://data.delijn.be/stops/200678", "https://data.delijn.be/stops/201808"], ["https://data.delijn.be/stops/206340", "https://data.delijn.be/stops/207339"], ["https://data.delijn.be/stops/509448", "https://data.delijn.be/stops/509964"], ["https://data.delijn.be/stops/204145", "https://data.delijn.be/stops/207888"], ["https://data.delijn.be/stops/301455", "https://data.delijn.be/stops/301467"], ["https://data.delijn.be/stops/405916", "https://data.delijn.be/stops/405967"], ["https://data.delijn.be/stops/102838", "https://data.delijn.be/stops/103535"], ["https://data.delijn.be/stops/505673", "https://data.delijn.be/stops/505688"], ["https://data.delijn.be/stops/208613", "https://data.delijn.be/stops/209614"], ["https://data.delijn.be/stops/206472", "https://data.delijn.be/stops/207471"], ["https://data.delijn.be/stops/404178", "https://data.delijn.be/stops/404188"], ["https://data.delijn.be/stops/105253", "https://data.delijn.be/stops/105841"], ["https://data.delijn.be/stops/200595", "https://data.delijn.be/stops/200598"], ["https://data.delijn.be/stops/303151", "https://data.delijn.be/stops/303182"], ["https://data.delijn.be/stops/401081", "https://data.delijn.be/stops/401147"], ["https://data.delijn.be/stops/302589", "https://data.delijn.be/stops/302606"], ["https://data.delijn.be/stops/508186", "https://data.delijn.be/stops/508216"], ["https://data.delijn.be/stops/200588", "https://data.delijn.be/stops/211200"], ["https://data.delijn.be/stops/303984", "https://data.delijn.be/stops/305869"], ["https://data.delijn.be/stops/203744", "https://data.delijn.be/stops/203856"], ["https://data.delijn.be/stops/501123", "https://data.delijn.be/stops/505757"], ["https://data.delijn.be/stops/304459", "https://data.delijn.be/stops/307089"], ["https://data.delijn.be/stops/400509", "https://data.delijn.be/stops/404049"], ["https://data.delijn.be/stops/202580", "https://data.delijn.be/stops/202597"], ["https://data.delijn.be/stops/405339", "https://data.delijn.be/stops/305062"], ["https://data.delijn.be/stops/403241", "https://data.delijn.be/stops/403861"], ["https://data.delijn.be/stops/202352", "https://data.delijn.be/stops/202353"], ["https://data.delijn.be/stops/101948", "https://data.delijn.be/stops/108747"], ["https://data.delijn.be/stops/500135", "https://data.delijn.be/stops/500136"], ["https://data.delijn.be/stops/400966", "https://data.delijn.be/stops/406550"], ["https://data.delijn.be/stops/106272", "https://data.delijn.be/stops/106274"], ["https://data.delijn.be/stops/307216", "https://data.delijn.be/stops/307218"], ["https://data.delijn.be/stops/407381", "https://data.delijn.be/stops/407598"], ["https://data.delijn.be/stops/403455", "https://data.delijn.be/stops/410212"], ["https://data.delijn.be/stops/109852", "https://data.delijn.be/stops/109859"], ["https://data.delijn.be/stops/505238", "https://data.delijn.be/stops/505756"], ["https://data.delijn.be/stops/101976", "https://data.delijn.be/stops/109059"], ["https://data.delijn.be/stops/500954", "https://data.delijn.be/stops/504181"], ["https://data.delijn.be/stops/404870", "https://data.delijn.be/stops/404883"], ["https://data.delijn.be/stops/402641", "https://data.delijn.be/stops/405561"], ["https://data.delijn.be/stops/101865", "https://data.delijn.be/stops/103640"], ["https://data.delijn.be/stops/200907", "https://data.delijn.be/stops/202251"], ["https://data.delijn.be/stops/501694", "https://data.delijn.be/stops/502532"], ["https://data.delijn.be/stops/400475", "https://data.delijn.be/stops/408695"], ["https://data.delijn.be/stops/202083", "https://data.delijn.be/stops/203083"], ["https://data.delijn.be/stops/300907", "https://data.delijn.be/stops/308819"], ["https://data.delijn.be/stops/402545", "https://data.delijn.be/stops/404093"], ["https://data.delijn.be/stops/303129", "https://data.delijn.be/stops/303135"], ["https://data.delijn.be/stops/503665", "https://data.delijn.be/stops/505365"], ["https://data.delijn.be/stops/301435", "https://data.delijn.be/stops/301438"], ["https://data.delijn.be/stops/402117", "https://data.delijn.be/stops/402139"], ["https://data.delijn.be/stops/205130", "https://data.delijn.be/stops/207638"], ["https://data.delijn.be/stops/201145", "https://data.delijn.be/stops/208842"], ["https://data.delijn.be/stops/200236", "https://data.delijn.be/stops/201237"], ["https://data.delijn.be/stops/204532", "https://data.delijn.be/stops/205293"], ["https://data.delijn.be/stops/207221", "https://data.delijn.be/stops/207347"], ["https://data.delijn.be/stops/400573", "https://data.delijn.be/stops/408458"], ["https://data.delijn.be/stops/305555", "https://data.delijn.be/stops/305558"], ["https://data.delijn.be/stops/400033", "https://data.delijn.be/stops/400681"], ["https://data.delijn.be/stops/103681", "https://data.delijn.be/stops/107787"], ["https://data.delijn.be/stops/402731", "https://data.delijn.be/stops/410056"], ["https://data.delijn.be/stops/204002", "https://data.delijn.be/stops/205213"], ["https://data.delijn.be/stops/301644", "https://data.delijn.be/stops/301645"], ["https://data.delijn.be/stops/403378", "https://data.delijn.be/stops/403466"], ["https://data.delijn.be/stops/407756", "https://data.delijn.be/stops/409792"], ["https://data.delijn.be/stops/203947", "https://data.delijn.be/stops/211065"], ["https://data.delijn.be/stops/101196", "https://data.delijn.be/stops/101198"], ["https://data.delijn.be/stops/505979", "https://data.delijn.be/stops/508666"], ["https://data.delijn.be/stops/204296", "https://data.delijn.be/stops/204297"], ["https://data.delijn.be/stops/401355", "https://data.delijn.be/stops/406070"], ["https://data.delijn.be/stops/202109", "https://data.delijn.be/stops/203109"], ["https://data.delijn.be/stops/300374", "https://data.delijn.be/stops/300382"], ["https://data.delijn.be/stops/400555", "https://data.delijn.be/stops/403226"], ["https://data.delijn.be/stops/407016", "https://data.delijn.be/stops/407017"], ["https://data.delijn.be/stops/205213", "https://data.delijn.be/stops/205214"], ["https://data.delijn.be/stops/208608", "https://data.delijn.be/stops/208615"], ["https://data.delijn.be/stops/209215", "https://data.delijn.be/stops/209216"], ["https://data.delijn.be/stops/203273", "https://data.delijn.be/stops/203669"], ["https://data.delijn.be/stops/400640", "https://data.delijn.be/stops/400962"], ["https://data.delijn.be/stops/406179", "https://data.delijn.be/stops/406202"], ["https://data.delijn.be/stops/106910", "https://data.delijn.be/stops/107259"], ["https://data.delijn.be/stops/407494", "https://data.delijn.be/stops/407495"], ["https://data.delijn.be/stops/407382", "https://data.delijn.be/stops/407857"], ["https://data.delijn.be/stops/503154", "https://data.delijn.be/stops/504840"], ["https://data.delijn.be/stops/501107", "https://data.delijn.be/stops/506107"], ["https://data.delijn.be/stops/300821", "https://data.delijn.be/stops/300822"], ["https://data.delijn.be/stops/106919", "https://data.delijn.be/stops/106947"], ["https://data.delijn.be/stops/202679", "https://data.delijn.be/stops/202680"], ["https://data.delijn.be/stops/208732", "https://data.delijn.be/stops/209663"], ["https://data.delijn.be/stops/103152", "https://data.delijn.be/stops/109993"], ["https://data.delijn.be/stops/201103", "https://data.delijn.be/stops/201361"], ["https://data.delijn.be/stops/403310", "https://data.delijn.be/stops/403312"], ["https://data.delijn.be/stops/503970", "https://data.delijn.be/stops/508204"], ["https://data.delijn.be/stops/104514", "https://data.delijn.be/stops/107798"], ["https://data.delijn.be/stops/300472", "https://data.delijn.be/stops/308062"], ["https://data.delijn.be/stops/504858", "https://data.delijn.be/stops/505819"], ["https://data.delijn.be/stops/508183", "https://data.delijn.be/stops/508214"], ["https://data.delijn.be/stops/200147", "https://data.delijn.be/stops/200567"], ["https://data.delijn.be/stops/302356", "https://data.delijn.be/stops/306186"], ["https://data.delijn.be/stops/204110", "https://data.delijn.be/stops/204685"], ["https://data.delijn.be/stops/202133", "https://data.delijn.be/stops/210058"], ["https://data.delijn.be/stops/407286", "https://data.delijn.be/stops/407287"], ["https://data.delijn.be/stops/404855", "https://data.delijn.be/stops/404944"], ["https://data.delijn.be/stops/503927", "https://data.delijn.be/stops/508927"], ["https://data.delijn.be/stops/102030", "https://data.delijn.be/stops/105165"], ["https://data.delijn.be/stops/406289", "https://data.delijn.be/stops/409404"], ["https://data.delijn.be/stops/200394", "https://data.delijn.be/stops/201396"], ["https://data.delijn.be/stops/402670", "https://data.delijn.be/stops/402729"], ["https://data.delijn.be/stops/508046", "https://data.delijn.be/stops/508958"], ["https://data.delijn.be/stops/200193", "https://data.delijn.be/stops/201181"], ["https://data.delijn.be/stops/300022", "https://data.delijn.be/stops/300411"], ["https://data.delijn.be/stops/101360", "https://data.delijn.be/stops/102763"], ["https://data.delijn.be/stops/408092", "https://data.delijn.be/stops/408158"], ["https://data.delijn.be/stops/204911", "https://data.delijn.be/stops/205912"], ["https://data.delijn.be/stops/400719", "https://data.delijn.be/stops/409511"], ["https://data.delijn.be/stops/207878", "https://data.delijn.be/stops/207934"], ["https://data.delijn.be/stops/206266", "https://data.delijn.be/stops/206525"], ["https://data.delijn.be/stops/404224", "https://data.delijn.be/stops/404226"], ["https://data.delijn.be/stops/505014", "https://data.delijn.be/stops/507356"], ["https://data.delijn.be/stops/103487", "https://data.delijn.be/stops/109158"], ["https://data.delijn.be/stops/209298", "https://data.delijn.be/stops/218022"], ["https://data.delijn.be/stops/101009", "https://data.delijn.be/stops/103690"], ["https://data.delijn.be/stops/305913", "https://data.delijn.be/stops/307807"], ["https://data.delijn.be/stops/208095", "https://data.delijn.be/stops/209404"], ["https://data.delijn.be/stops/503192", "https://data.delijn.be/stops/508192"], ["https://data.delijn.be/stops/101777", "https://data.delijn.be/stops/107589"], ["https://data.delijn.be/stops/403946", "https://data.delijn.be/stops/404028"], ["https://data.delijn.be/stops/302220", "https://data.delijn.be/stops/302243"], ["https://data.delijn.be/stops/505257", "https://data.delijn.be/stops/508672"], ["https://data.delijn.be/stops/101418", "https://data.delijn.be/stops/108715"], ["https://data.delijn.be/stops/304116", "https://data.delijn.be/stops/307969"], ["https://data.delijn.be/stops/202479", "https://data.delijn.be/stops/203954"], ["https://data.delijn.be/stops/108684", "https://data.delijn.be/stops/108828"], ["https://data.delijn.be/stops/405321", "https://data.delijn.be/stops/405348"], ["https://data.delijn.be/stops/404123", "https://data.delijn.be/stops/410214"], ["https://data.delijn.be/stops/106019", "https://data.delijn.be/stops/106188"], ["https://data.delijn.be/stops/505134", "https://data.delijn.be/stops/508994"], ["https://data.delijn.be/stops/207976", "https://data.delijn.be/stops/307771"], ["https://data.delijn.be/stops/208078", "https://data.delijn.be/stops/209143"], ["https://data.delijn.be/stops/300062", "https://data.delijn.be/stops/306068"], ["https://data.delijn.be/stops/105006", "https://data.delijn.be/stops/106833"], ["https://data.delijn.be/stops/303869", "https://data.delijn.be/stops/303870"], ["https://data.delijn.be/stops/404171", "https://data.delijn.be/stops/404241"], ["https://data.delijn.be/stops/103257", "https://data.delijn.be/stops/103258"], ["https://data.delijn.be/stops/303680", "https://data.delijn.be/stops/305442"], ["https://data.delijn.be/stops/401247", "https://data.delijn.be/stops/401255"], ["https://data.delijn.be/stops/206532", "https://data.delijn.be/stops/207413"], ["https://data.delijn.be/stops/109501", "https://data.delijn.be/stops/109561"], ["https://data.delijn.be/stops/404478", "https://data.delijn.be/stops/406753"], ["https://data.delijn.be/stops/300181", "https://data.delijn.be/stops/300227"], ["https://data.delijn.be/stops/202037", "https://data.delijn.be/stops/203037"], ["https://data.delijn.be/stops/106088", "https://data.delijn.be/stops/108472"], ["https://data.delijn.be/stops/209210", "https://data.delijn.be/stops/209213"], ["https://data.delijn.be/stops/302652", "https://data.delijn.be/stops/302655"], ["https://data.delijn.be/stops/302611", "https://data.delijn.be/stops/302629"], ["https://data.delijn.be/stops/403951", "https://data.delijn.be/stops/403952"], ["https://data.delijn.be/stops/204366", "https://data.delijn.be/stops/204367"], ["https://data.delijn.be/stops/400092", "https://data.delijn.be/stops/409143"], ["https://data.delijn.be/stops/101440", "https://data.delijn.be/stops/103208"], ["https://data.delijn.be/stops/202788", "https://data.delijn.be/stops/210027"], ["https://data.delijn.be/stops/102693", "https://data.delijn.be/stops/104835"], ["https://data.delijn.be/stops/101672", "https://data.delijn.be/stops/107663"], ["https://data.delijn.be/stops/405871", "https://data.delijn.be/stops/409433"], ["https://data.delijn.be/stops/107053", "https://data.delijn.be/stops/107055"], ["https://data.delijn.be/stops/307933", "https://data.delijn.be/stops/307935"], ["https://data.delijn.be/stops/303652", "https://data.delijn.be/stops/308529"], ["https://data.delijn.be/stops/207445", "https://data.delijn.be/stops/207518"], ["https://data.delijn.be/stops/502540", "https://data.delijn.be/stops/502545"], ["https://data.delijn.be/stops/104093", "https://data.delijn.be/stops/107714"], ["https://data.delijn.be/stops/206531", "https://data.delijn.be/stops/207538"], ["https://data.delijn.be/stops/206285", "https://data.delijn.be/stops/206287"], ["https://data.delijn.be/stops/102207", "https://data.delijn.be/stops/106238"], ["https://data.delijn.be/stops/302584", "https://data.delijn.be/stops/302596"], ["https://data.delijn.be/stops/502535", "https://data.delijn.be/stops/507746"], ["https://data.delijn.be/stops/400630", "https://data.delijn.be/stops/400634"], ["https://data.delijn.be/stops/302586", "https://data.delijn.be/stops/303611"], ["https://data.delijn.be/stops/206866", "https://data.delijn.be/stops/209295"], ["https://data.delijn.be/stops/103334", "https://data.delijn.be/stops/106471"], ["https://data.delijn.be/stops/405655", "https://data.delijn.be/stops/408894"], ["https://data.delijn.be/stops/307910", "https://data.delijn.be/stops/307911"], ["https://data.delijn.be/stops/207882", "https://data.delijn.be/stops/207914"], ["https://data.delijn.be/stops/302032", "https://data.delijn.be/stops/304632"], ["https://data.delijn.be/stops/206776", "https://data.delijn.be/stops/208486"], ["https://data.delijn.be/stops/206032", "https://data.delijn.be/stops/206922"], ["https://data.delijn.be/stops/504841", "https://data.delijn.be/stops/509764"], ["https://data.delijn.be/stops/200911", "https://data.delijn.be/stops/203255"], ["https://data.delijn.be/stops/308016", "https://data.delijn.be/stops/308019"], ["https://data.delijn.be/stops/403998", "https://data.delijn.be/stops/404033"], ["https://data.delijn.be/stops/303962", "https://data.delijn.be/stops/307492"], ["https://data.delijn.be/stops/101147", "https://data.delijn.be/stops/106858"], ["https://data.delijn.be/stops/504647", "https://data.delijn.be/stops/509657"], ["https://data.delijn.be/stops/300408", "https://data.delijn.be/stops/301997"], ["https://data.delijn.be/stops/200051", "https://data.delijn.be/stops/211113"], ["https://data.delijn.be/stops/103117", "https://data.delijn.be/stops/107368"], ["https://data.delijn.be/stops/103488", "https://data.delijn.be/stops/103494"], ["https://data.delijn.be/stops/503975", "https://data.delijn.be/stops/508975"], ["https://data.delijn.be/stops/204692", "https://data.delijn.be/stops/205692"], ["https://data.delijn.be/stops/503376", "https://data.delijn.be/stops/503408"], ["https://data.delijn.be/stops/302089", "https://data.delijn.be/stops/302277"], ["https://data.delijn.be/stops/300835", "https://data.delijn.be/stops/302284"], ["https://data.delijn.be/stops/401436", "https://data.delijn.be/stops/401961"], ["https://data.delijn.be/stops/206132", "https://data.delijn.be/stops/207131"], ["https://data.delijn.be/stops/102246", "https://data.delijn.be/stops/102863"], ["https://data.delijn.be/stops/400339", "https://data.delijn.be/stops/400972"], ["https://data.delijn.be/stops/206549", "https://data.delijn.be/stops/207648"], ["https://data.delijn.be/stops/406083", "https://data.delijn.be/stops/406086"], ["https://data.delijn.be/stops/401010", "https://data.delijn.be/stops/401059"], ["https://data.delijn.be/stops/301035", "https://data.delijn.be/stops/308819"], ["https://data.delijn.be/stops/206196", "https://data.delijn.be/stops/207854"], ["https://data.delijn.be/stops/200844", "https://data.delijn.be/stops/203300"], ["https://data.delijn.be/stops/201390", "https://data.delijn.be/stops/202652"], ["https://data.delijn.be/stops/504249", "https://data.delijn.be/stops/509443"], ["https://data.delijn.be/stops/202425", "https://data.delijn.be/stops/203424"], ["https://data.delijn.be/stops/303548", "https://data.delijn.be/stops/304317"], ["https://data.delijn.be/stops/403159", "https://data.delijn.be/stops/410213"], ["https://data.delijn.be/stops/509812", "https://data.delijn.be/stops/509827"], ["https://data.delijn.be/stops/101929", "https://data.delijn.be/stops/108384"], ["https://data.delijn.be/stops/504687", "https://data.delijn.be/stops/504761"], ["https://data.delijn.be/stops/406252", "https://data.delijn.be/stops/406253"], ["https://data.delijn.be/stops/506348", "https://data.delijn.be/stops/506546"], ["https://data.delijn.be/stops/302295", "https://data.delijn.be/stops/303494"], ["https://data.delijn.be/stops/105449", "https://data.delijn.be/stops/109937"], ["https://data.delijn.be/stops/505409", "https://data.delijn.be/stops/508041"], ["https://data.delijn.be/stops/204751", "https://data.delijn.be/stops/205752"], ["https://data.delijn.be/stops/205974", "https://data.delijn.be/stops/208237"], ["https://data.delijn.be/stops/208574", "https://data.delijn.be/stops/208598"], ["https://data.delijn.be/stops/403806", "https://data.delijn.be/stops/403807"], ["https://data.delijn.be/stops/106957", "https://data.delijn.be/stops/107269"], ["https://data.delijn.be/stops/201074", "https://data.delijn.be/stops/201448"], ["https://data.delijn.be/stops/302535", "https://data.delijn.be/stops/302537"], ["https://data.delijn.be/stops/104778", "https://data.delijn.be/stops/108158"], ["https://data.delijn.be/stops/503941", "https://data.delijn.be/stops/509940"], ["https://data.delijn.be/stops/403702", "https://data.delijn.be/stops/403704"], ["https://data.delijn.be/stops/200972", "https://data.delijn.be/stops/202861"], ["https://data.delijn.be/stops/401208", "https://data.delijn.be/stops/401270"], ["https://data.delijn.be/stops/301428", "https://data.delijn.be/stops/307321"], ["https://data.delijn.be/stops/307567", "https://data.delijn.be/stops/307569"], ["https://data.delijn.be/stops/300513", "https://data.delijn.be/stops/300530"], ["https://data.delijn.be/stops/205002", "https://data.delijn.be/stops/205064"], ["https://data.delijn.be/stops/106586", "https://data.delijn.be/stops/106588"], ["https://data.delijn.be/stops/406722", "https://data.delijn.be/stops/408643"], ["https://data.delijn.be/stops/102976", "https://data.delijn.be/stops/107521"], ["https://data.delijn.be/stops/204129", "https://data.delijn.be/stops/204130"], ["https://data.delijn.be/stops/406151", "https://data.delijn.be/stops/406153"], ["https://data.delijn.be/stops/406900", "https://data.delijn.be/stops/406901"], ["https://data.delijn.be/stops/301991", "https://data.delijn.be/stops/303092"], ["https://data.delijn.be/stops/505948", "https://data.delijn.be/stops/508304"], ["https://data.delijn.be/stops/503386", "https://data.delijn.be/stops/509771"], ["https://data.delijn.be/stops/201825", "https://data.delijn.be/stops/203754"], ["https://data.delijn.be/stops/201026", "https://data.delijn.be/stops/201033"], ["https://data.delijn.be/stops/505353", "https://data.delijn.be/stops/507296"], ["https://data.delijn.be/stops/406577", "https://data.delijn.be/stops/407191"], ["https://data.delijn.be/stops/400882", "https://data.delijn.be/stops/409613"], ["https://data.delijn.be/stops/206230", "https://data.delijn.be/stops/206234"], ["https://data.delijn.be/stops/208371", "https://data.delijn.be/stops/209371"], ["https://data.delijn.be/stops/502556", "https://data.delijn.be/stops/505735"], ["https://data.delijn.be/stops/302882", "https://data.delijn.be/stops/306276"], ["https://data.delijn.be/stops/201903", "https://data.delijn.be/stops/202472"], ["https://data.delijn.be/stops/109968", "https://data.delijn.be/stops/109969"], ["https://data.delijn.be/stops/303860", "https://data.delijn.be/stops/303866"], ["https://data.delijn.be/stops/303064", "https://data.delijn.be/stops/304472"], ["https://data.delijn.be/stops/501374", "https://data.delijn.be/stops/506375"], ["https://data.delijn.be/stops/109004", "https://data.delijn.be/stops/109007"], ["https://data.delijn.be/stops/409705", "https://data.delijn.be/stops/409710"], ["https://data.delijn.be/stops/407889", "https://data.delijn.be/stops/408443"], ["https://data.delijn.be/stops/108081", "https://data.delijn.be/stops/108450"], ["https://data.delijn.be/stops/107902", "https://data.delijn.be/stops/108951"], ["https://data.delijn.be/stops/205184", "https://data.delijn.be/stops/205383"], ["https://data.delijn.be/stops/101534", "https://data.delijn.be/stops/109501"], ["https://data.delijn.be/stops/101942", "https://data.delijn.be/stops/101951"], ["https://data.delijn.be/stops/503154", "https://data.delijn.be/stops/508152"], ["https://data.delijn.be/stops/301010", "https://data.delijn.be/stops/301012"], ["https://data.delijn.be/stops/300016", "https://data.delijn.be/stops/301123"], ["https://data.delijn.be/stops/408264", "https://data.delijn.be/stops/408413"], ["https://data.delijn.be/stops/208212", "https://data.delijn.be/stops/208800"], ["https://data.delijn.be/stops/405619", "https://data.delijn.be/stops/407163"], ["https://data.delijn.be/stops/107719", "https://data.delijn.be/stops/107721"], ["https://data.delijn.be/stops/207789", "https://data.delijn.be/stops/209372"], ["https://data.delijn.be/stops/301098", "https://data.delijn.be/stops/307197"], ["https://data.delijn.be/stops/201779", "https://data.delijn.be/stops/208248"], ["https://data.delijn.be/stops/204013", "https://data.delijn.be/stops/204686"], ["https://data.delijn.be/stops/104680", "https://data.delijn.be/stops/105950"], ["https://data.delijn.be/stops/505842", "https://data.delijn.be/stops/509239"], ["https://data.delijn.be/stops/303367", "https://data.delijn.be/stops/308717"], ["https://data.delijn.be/stops/108088", "https://data.delijn.be/stops/108688"], ["https://data.delijn.be/stops/402783", "https://data.delijn.be/stops/406921"], ["https://data.delijn.be/stops/504647", "https://data.delijn.be/stops/504657"], ["https://data.delijn.be/stops/402201", "https://data.delijn.be/stops/402316"], ["https://data.delijn.be/stops/102724", "https://data.delijn.be/stops/105383"], ["https://data.delijn.be/stops/402801", "https://data.delijn.be/stops/409018"], ["https://data.delijn.be/stops/202864", "https://data.delijn.be/stops/203879"], ["https://data.delijn.be/stops/301445", "https://data.delijn.be/stops/306416"], ["https://data.delijn.be/stops/204196", "https://data.delijn.be/stops/205194"], ["https://data.delijn.be/stops/302725", "https://data.delijn.be/stops/302726"], ["https://data.delijn.be/stops/400494", "https://data.delijn.be/stops/407210"], ["https://data.delijn.be/stops/200932", "https://data.delijn.be/stops/203256"], ["https://data.delijn.be/stops/200720", "https://data.delijn.be/stops/202621"], ["https://data.delijn.be/stops/101078", "https://data.delijn.be/stops/105969"], ["https://data.delijn.be/stops/502807", "https://data.delijn.be/stops/507261"], ["https://data.delijn.be/stops/304099", "https://data.delijn.be/stops/304117"], ["https://data.delijn.be/stops/205989", "https://data.delijn.be/stops/209549"], ["https://data.delijn.be/stops/403463", "https://data.delijn.be/stops/410013"], ["https://data.delijn.be/stops/503711", "https://data.delijn.be/stops/508715"], ["https://data.delijn.be/stops/301641", "https://data.delijn.be/stops/306155"], ["https://data.delijn.be/stops/401368", "https://data.delijn.be/stops/405467"], ["https://data.delijn.be/stops/302257", "https://data.delijn.be/stops/302265"], ["https://data.delijn.be/stops/408096", "https://data.delijn.be/stops/408097"], ["https://data.delijn.be/stops/307713", "https://data.delijn.be/stops/307717"], ["https://data.delijn.be/stops/106478", "https://data.delijn.be/stops/107461"], ["https://data.delijn.be/stops/104122", "https://data.delijn.be/stops/104225"], ["https://data.delijn.be/stops/300462", "https://data.delijn.be/stops/300463"], ["https://data.delijn.be/stops/304520", "https://data.delijn.be/stops/307560"], ["https://data.delijn.be/stops/407256", "https://data.delijn.be/stops/407257"], ["https://data.delijn.be/stops/501486", "https://data.delijn.be/stops/506138"], ["https://data.delijn.be/stops/300565", "https://data.delijn.be/stops/307863"], ["https://data.delijn.be/stops/403595", "https://data.delijn.be/stops/404316"], ["https://data.delijn.be/stops/405798", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/105282", "https://data.delijn.be/stops/109969"], ["https://data.delijn.be/stops/402021", "https://data.delijn.be/stops/402064"], ["https://data.delijn.be/stops/208762", "https://data.delijn.be/stops/209838"], ["https://data.delijn.be/stops/502566", "https://data.delijn.be/stops/502637"], ["https://data.delijn.be/stops/305481", "https://data.delijn.be/stops/307800"], ["https://data.delijn.be/stops/208951", "https://data.delijn.be/stops/209951"], ["https://data.delijn.be/stops/406374", "https://data.delijn.be/stops/410319"], ["https://data.delijn.be/stops/305681", "https://data.delijn.be/stops/305700"], ["https://data.delijn.be/stops/404835", "https://data.delijn.be/stops/404836"], ["https://data.delijn.be/stops/105018", "https://data.delijn.be/stops/105828"], ["https://data.delijn.be/stops/406568", "https://data.delijn.be/stops/406659"], ["https://data.delijn.be/stops/408246", "https://data.delijn.be/stops/308291"], ["https://data.delijn.be/stops/303784", "https://data.delijn.be/stops/303785"], ["https://data.delijn.be/stops/107116", "https://data.delijn.be/stops/107117"], ["https://data.delijn.be/stops/201346", "https://data.delijn.be/stops/202895"], ["https://data.delijn.be/stops/204047", "https://data.delijn.be/stops/205518"], ["https://data.delijn.be/stops/301387", "https://data.delijn.be/stops/301388"], ["https://data.delijn.be/stops/200144", "https://data.delijn.be/stops/200309"], ["https://data.delijn.be/stops/503053", "https://data.delijn.be/stops/503057"], ["https://data.delijn.be/stops/508230", "https://data.delijn.be/stops/509867"], ["https://data.delijn.be/stops/502591", "https://data.delijn.be/stops/507591"], ["https://data.delijn.be/stops/104450", "https://data.delijn.be/stops/105835"], ["https://data.delijn.be/stops/502288", "https://data.delijn.be/stops/502299"], ["https://data.delijn.be/stops/307720", "https://data.delijn.be/stops/307737"], ["https://data.delijn.be/stops/103961", "https://data.delijn.be/stops/108166"], ["https://data.delijn.be/stops/109838", "https://data.delijn.be/stops/109931"], ["https://data.delijn.be/stops/401780", "https://data.delijn.be/stops/406125"], ["https://data.delijn.be/stops/101974", "https://data.delijn.be/stops/307365"], ["https://data.delijn.be/stops/206474", "https://data.delijn.be/stops/207476"], ["https://data.delijn.be/stops/501411", "https://data.delijn.be/stops/506411"], ["https://data.delijn.be/stops/302362", "https://data.delijn.be/stops/302366"], ["https://data.delijn.be/stops/407491", "https://data.delijn.be/stops/408506"], ["https://data.delijn.be/stops/206915", "https://data.delijn.be/stops/207640"], ["https://data.delijn.be/stops/102504", "https://data.delijn.be/stops/400010"], ["https://data.delijn.be/stops/502005", "https://data.delijn.be/stops/505329"], ["https://data.delijn.be/stops/101891", "https://data.delijn.be/stops/108319"], ["https://data.delijn.be/stops/508057", "https://data.delijn.be/stops/508154"], ["https://data.delijn.be/stops/405549", "https://data.delijn.be/stops/410052"], ["https://data.delijn.be/stops/406285", "https://data.delijn.be/stops/410353"], ["https://data.delijn.be/stops/208135", "https://data.delijn.be/stops/209135"], ["https://data.delijn.be/stops/210085", "https://data.delijn.be/stops/211105"], ["https://data.delijn.be/stops/206452", "https://data.delijn.be/stops/206453"], ["https://data.delijn.be/stops/106802", "https://data.delijn.be/stops/106868"], ["https://data.delijn.be/stops/206708", "https://data.delijn.be/stops/207610"], ["https://data.delijn.be/stops/503787", "https://data.delijn.be/stops/505822"], ["https://data.delijn.be/stops/301721", "https://data.delijn.be/stops/305276"], ["https://data.delijn.be/stops/406586", "https://data.delijn.be/stops/406587"], ["https://data.delijn.be/stops/208126", "https://data.delijn.be/stops/208520"], ["https://data.delijn.be/stops/302422", "https://data.delijn.be/stops/302436"], ["https://data.delijn.be/stops/200880", "https://data.delijn.be/stops/203060"], ["https://data.delijn.be/stops/300232", "https://data.delijn.be/stops/300238"], ["https://data.delijn.be/stops/102603", "https://data.delijn.be/stops/107818"], ["https://data.delijn.be/stops/507326", "https://data.delijn.be/stops/507336"], ["https://data.delijn.be/stops/305339", "https://data.delijn.be/stops/308447"], ["https://data.delijn.be/stops/206795", "https://data.delijn.be/stops/209035"], ["https://data.delijn.be/stops/502637", "https://data.delijn.be/stops/507567"], ["https://data.delijn.be/stops/405310", "https://data.delijn.be/stops/302832"], ["https://data.delijn.be/stops/103481", "https://data.delijn.be/stops/109137"], ["https://data.delijn.be/stops/408620", "https://data.delijn.be/stops/410150"], ["https://data.delijn.be/stops/508604", "https://data.delijn.be/stops/508617"], ["https://data.delijn.be/stops/305918", "https://data.delijn.be/stops/306660"], ["https://data.delijn.be/stops/108067", "https://data.delijn.be/stops/108068"], ["https://data.delijn.be/stops/300634", "https://data.delijn.be/stops/306628"], ["https://data.delijn.be/stops/109638", "https://data.delijn.be/stops/109639"], ["https://data.delijn.be/stops/206633", "https://data.delijn.be/stops/206634"], ["https://data.delijn.be/stops/102022", "https://data.delijn.be/stops/109963"], ["https://data.delijn.be/stops/107556", "https://data.delijn.be/stops/108936"], ["https://data.delijn.be/stops/304013", "https://data.delijn.be/stops/304092"], ["https://data.delijn.be/stops/504336", "https://data.delijn.be/stops/505925"], ["https://data.delijn.be/stops/404758", "https://data.delijn.be/stops/404767"], ["https://data.delijn.be/stops/304283", "https://data.delijn.be/stops/308769"], ["https://data.delijn.be/stops/406048", "https://data.delijn.be/stops/406143"], ["https://data.delijn.be/stops/205093", "https://data.delijn.be/stops/205584"], ["https://data.delijn.be/stops/405646", "https://data.delijn.be/stops/408646"], ["https://data.delijn.be/stops/503455", "https://data.delijn.be/stops/508191"], ["https://data.delijn.be/stops/408258", "https://data.delijn.be/stops/410157"], ["https://data.delijn.be/stops/202335", "https://data.delijn.be/stops/211298"], ["https://data.delijn.be/stops/105751", "https://data.delijn.be/stops/109821"], ["https://data.delijn.be/stops/209142", "https://data.delijn.be/stops/209157"], ["https://data.delijn.be/stops/201813", "https://data.delijn.be/stops/209327"], ["https://data.delijn.be/stops/503515", "https://data.delijn.be/stops/508517"], ["https://data.delijn.be/stops/106210", "https://data.delijn.be/stops/106212"], ["https://data.delijn.be/stops/109177", "https://data.delijn.be/stops/109229"], ["https://data.delijn.be/stops/406634", "https://data.delijn.be/stops/408477"], ["https://data.delijn.be/stops/500007", "https://data.delijn.be/stops/503707"], ["https://data.delijn.be/stops/107876", "https://data.delijn.be/stops/205644"], ["https://data.delijn.be/stops/403300", "https://data.delijn.be/stops/404144"], ["https://data.delijn.be/stops/308527", "https://data.delijn.be/stops/308528"], ["https://data.delijn.be/stops/501200", "https://data.delijn.be/stops/501257"], ["https://data.delijn.be/stops/304823", "https://data.delijn.be/stops/304894"], ["https://data.delijn.be/stops/101557", "https://data.delijn.be/stops/102424"], ["https://data.delijn.be/stops/303121", "https://data.delijn.be/stops/304621"], ["https://data.delijn.be/stops/105997", "https://data.delijn.be/stops/106001"], ["https://data.delijn.be/stops/209602", "https://data.delijn.be/stops/307603"], ["https://data.delijn.be/stops/400657", "https://data.delijn.be/stops/407374"], ["https://data.delijn.be/stops/307151", "https://data.delijn.be/stops/307160"], ["https://data.delijn.be/stops/300305", "https://data.delijn.be/stops/306250"], ["https://data.delijn.be/stops/305968", "https://data.delijn.be/stops/306326"], ["https://data.delijn.be/stops/504447", "https://data.delijn.be/stops/509449"], ["https://data.delijn.be/stops/200751", "https://data.delijn.be/stops/208317"], ["https://data.delijn.be/stops/202304", "https://data.delijn.be/stops/202324"], ["https://data.delijn.be/stops/205382", "https://data.delijn.be/stops/205383"], ["https://data.delijn.be/stops/203516", "https://data.delijn.be/stops/203517"], ["https://data.delijn.be/stops/300927", "https://data.delijn.be/stops/300932"], ["https://data.delijn.be/stops/303288", "https://data.delijn.be/stops/303302"], ["https://data.delijn.be/stops/507043", "https://data.delijn.be/stops/507642"], ["https://data.delijn.be/stops/503144", "https://data.delijn.be/stops/503146"], ["https://data.delijn.be/stops/504638", "https://data.delijn.be/stops/509636"], ["https://data.delijn.be/stops/101913", "https://data.delijn.be/stops/103208"], ["https://data.delijn.be/stops/207504", "https://data.delijn.be/stops/207673"], ["https://data.delijn.be/stops/502140", "https://data.delijn.be/stops/507151"], ["https://data.delijn.be/stops/204341", "https://data.delijn.be/stops/214008"], ["https://data.delijn.be/stops/502225", "https://data.delijn.be/stops/505314"], ["https://data.delijn.be/stops/202823", "https://data.delijn.be/stops/219503"], ["https://data.delijn.be/stops/401045", "https://data.delijn.be/stops/409818"], ["https://data.delijn.be/stops/504800", "https://data.delijn.be/stops/507814"], ["https://data.delijn.be/stops/305571", "https://data.delijn.be/stops/307044"], ["https://data.delijn.be/stops/503871", "https://data.delijn.be/stops/504754"], ["https://data.delijn.be/stops/501050", "https://data.delijn.be/stops/505839"], ["https://data.delijn.be/stops/407942", "https://data.delijn.be/stops/407958"], ["https://data.delijn.be/stops/504092", "https://data.delijn.be/stops/509092"], ["https://data.delijn.be/stops/306721", "https://data.delijn.be/stops/306722"], ["https://data.delijn.be/stops/507018", "https://data.delijn.be/stops/508138"], ["https://data.delijn.be/stops/104461", "https://data.delijn.be/stops/104463"], ["https://data.delijn.be/stops/503079", "https://data.delijn.be/stops/503504"], ["https://data.delijn.be/stops/104381", "https://data.delijn.be/stops/104383"], ["https://data.delijn.be/stops/406168", "https://data.delijn.be/stops/406280"], ["https://data.delijn.be/stops/105733", "https://data.delijn.be/stops/109838"], ["https://data.delijn.be/stops/408723", "https://data.delijn.be/stops/410343"], ["https://data.delijn.be/stops/204051", "https://data.delijn.be/stops/204052"], ["https://data.delijn.be/stops/300507", "https://data.delijn.be/stops/300508"], ["https://data.delijn.be/stops/108677", "https://data.delijn.be/stops/406774"], ["https://data.delijn.be/stops/501413", "https://data.delijn.be/stops/501414"], ["https://data.delijn.be/stops/306200", "https://data.delijn.be/stops/306203"], ["https://data.delijn.be/stops/107587", "https://data.delijn.be/stops/107589"], ["https://data.delijn.be/stops/306744", "https://data.delijn.be/stops/306885"], ["https://data.delijn.be/stops/106158", "https://data.delijn.be/stops/106446"], ["https://data.delijn.be/stops/104852", "https://data.delijn.be/stops/301932"], ["https://data.delijn.be/stops/504739", "https://data.delijn.be/stops/509177"], ["https://data.delijn.be/stops/405626", "https://data.delijn.be/stops/407566"], ["https://data.delijn.be/stops/305335", "https://data.delijn.be/stops/305905"], ["https://data.delijn.be/stops/101590", "https://data.delijn.be/stops/104915"], ["https://data.delijn.be/stops/102991", "https://data.delijn.be/stops/105599"], ["https://data.delijn.be/stops/208611", "https://data.delijn.be/stops/209547"], ["https://data.delijn.be/stops/304376", "https://data.delijn.be/stops/307071"], ["https://data.delijn.be/stops/105048", "https://data.delijn.be/stops/109672"], ["https://data.delijn.be/stops/501138", "https://data.delijn.be/stops/506139"], ["https://data.delijn.be/stops/406115", "https://data.delijn.be/stops/407146"], ["https://data.delijn.be/stops/200392", "https://data.delijn.be/stops/201387"], ["https://data.delijn.be/stops/306091", "https://data.delijn.be/stops/306343"], ["https://data.delijn.be/stops/407608", "https://data.delijn.be/stops/409786"], ["https://data.delijn.be/stops/404674", "https://data.delijn.be/stops/410136"], ["https://data.delijn.be/stops/101255", "https://data.delijn.be/stops/103905"], ["https://data.delijn.be/stops/508880", "https://data.delijn.be/stops/508994"], ["https://data.delijn.be/stops/106251", "https://data.delijn.be/stops/106684"], ["https://data.delijn.be/stops/105410", "https://data.delijn.be/stops/106000"], ["https://data.delijn.be/stops/301936", "https://data.delijn.be/stops/303042"], ["https://data.delijn.be/stops/408148", "https://data.delijn.be/stops/408150"], ["https://data.delijn.be/stops/503461", "https://data.delijn.be/stops/503474"], ["https://data.delijn.be/stops/503338", "https://data.delijn.be/stops/503344"], ["https://data.delijn.be/stops/105472", "https://data.delijn.be/stops/109934"], ["https://data.delijn.be/stops/304768", "https://data.delijn.be/stops/304769"], ["https://data.delijn.be/stops/104703", "https://data.delijn.be/stops/107087"], ["https://data.delijn.be/stops/300380", "https://data.delijn.be/stops/306089"], ["https://data.delijn.be/stops/207751", "https://data.delijn.be/stops/207756"], ["https://data.delijn.be/stops/408582", "https://data.delijn.be/stops/408777"], ["https://data.delijn.be/stops/504780", "https://data.delijn.be/stops/508794"], ["https://data.delijn.be/stops/201775", "https://data.delijn.be/stops/209289"], ["https://data.delijn.be/stops/502066", "https://data.delijn.be/stops/507605"], ["https://data.delijn.be/stops/408625", "https://data.delijn.be/stops/410250"], ["https://data.delijn.be/stops/404336", "https://data.delijn.be/stops/404340"], ["https://data.delijn.be/stops/200171", "https://data.delijn.be/stops/201148"], ["https://data.delijn.be/stops/302661", "https://data.delijn.be/stops/302662"], ["https://data.delijn.be/stops/401785", "https://data.delijn.be/stops/406093"], ["https://data.delijn.be/stops/305643", "https://data.delijn.be/stops/305653"], ["https://data.delijn.be/stops/508070", "https://data.delijn.be/stops/508076"], ["https://data.delijn.be/stops/109128", "https://data.delijn.be/stops/109129"], ["https://data.delijn.be/stops/206846", "https://data.delijn.be/stops/306679"], ["https://data.delijn.be/stops/204406", "https://data.delijn.be/stops/204414"], ["https://data.delijn.be/stops/405181", "https://data.delijn.be/stops/405202"], ["https://data.delijn.be/stops/102248", "https://data.delijn.be/stops/102249"], ["https://data.delijn.be/stops/409120", "https://data.delijn.be/stops/409121"], ["https://data.delijn.be/stops/108178", "https://data.delijn.be/stops/108181"], ["https://data.delijn.be/stops/207679", "https://data.delijn.be/stops/209194"], ["https://data.delijn.be/stops/201464", "https://data.delijn.be/stops/205997"], ["https://data.delijn.be/stops/105751", "https://data.delijn.be/stops/109965"], ["https://data.delijn.be/stops/301169", "https://data.delijn.be/stops/304306"], ["https://data.delijn.be/stops/105743", "https://data.delijn.be/stops/109950"], ["https://data.delijn.be/stops/301698", "https://data.delijn.be/stops/301760"], ["https://data.delijn.be/stops/409255", "https://data.delijn.be/stops/409265"], ["https://data.delijn.be/stops/104402", "https://data.delijn.be/stops/205610"], ["https://data.delijn.be/stops/504386", "https://data.delijn.be/stops/504389"], ["https://data.delijn.be/stops/502795", "https://data.delijn.be/stops/507014"], ["https://data.delijn.be/stops/407757", "https://data.delijn.be/stops/409793"], ["https://data.delijn.be/stops/201240", "https://data.delijn.be/stops/201935"], ["https://data.delijn.be/stops/301892", "https://data.delijn.be/stops/301894"], ["https://data.delijn.be/stops/105606", "https://data.delijn.be/stops/105607"], ["https://data.delijn.be/stops/407133", "https://data.delijn.be/stops/407135"], ["https://data.delijn.be/stops/402167", "https://data.delijn.be/stops/406871"], ["https://data.delijn.be/stops/206547", "https://data.delijn.be/stops/207548"], ["https://data.delijn.be/stops/204379", "https://data.delijn.be/stops/205763"], ["https://data.delijn.be/stops/503676", "https://data.delijn.be/stops/508317"], ["https://data.delijn.be/stops/405562", "https://data.delijn.be/stops/405563"], ["https://data.delijn.be/stops/308507", "https://data.delijn.be/stops/308540"], ["https://data.delijn.be/stops/405302", "https://data.delijn.be/stops/405308"], ["https://data.delijn.be/stops/401285", "https://data.delijn.be/stops/410183"], ["https://data.delijn.be/stops/300245", "https://data.delijn.be/stops/300257"], ["https://data.delijn.be/stops/401596", "https://data.delijn.be/stops/401598"], ["https://data.delijn.be/stops/407154", "https://data.delijn.be/stops/407155"], ["https://data.delijn.be/stops/405367", "https://data.delijn.be/stops/405373"], ["https://data.delijn.be/stops/101607", "https://data.delijn.be/stops/109806"], ["https://data.delijn.be/stops/107909", "https://data.delijn.be/stops/107910"], ["https://data.delijn.be/stops/106382", "https://data.delijn.be/stops/106383"], ["https://data.delijn.be/stops/307358", "https://data.delijn.be/stops/307359"], ["https://data.delijn.be/stops/508663", "https://data.delijn.be/stops/508668"], ["https://data.delijn.be/stops/403413", "https://data.delijn.be/stops/403427"], ["https://data.delijn.be/stops/204241", "https://data.delijn.be/stops/204478"], ["https://data.delijn.be/stops/503793", "https://data.delijn.be/stops/505570"], ["https://data.delijn.be/stops/106713", "https://data.delijn.be/stops/106715"], ["https://data.delijn.be/stops/302337", "https://data.delijn.be/stops/306180"], ["https://data.delijn.be/stops/101992", "https://data.delijn.be/stops/104685"], ["https://data.delijn.be/stops/106426", "https://data.delijn.be/stops/106556"], ["https://data.delijn.be/stops/404969", "https://data.delijn.be/stops/404971"], ["https://data.delijn.be/stops/105666", "https://data.delijn.be/stops/105668"], ["https://data.delijn.be/stops/406998", "https://data.delijn.be/stops/407310"], ["https://data.delijn.be/stops/102650", "https://data.delijn.be/stops/103965"], ["https://data.delijn.be/stops/502146", "https://data.delijn.be/stops/502579"], ["https://data.delijn.be/stops/402209", "https://data.delijn.be/stops/402223"], ["https://data.delijn.be/stops/501497", "https://data.delijn.be/stops/501498"], ["https://data.delijn.be/stops/400966", "https://data.delijn.be/stops/407374"], ["https://data.delijn.be/stops/107889", "https://data.delijn.be/stops/107891"], ["https://data.delijn.be/stops/503170", "https://data.delijn.be/stops/508176"], ["https://data.delijn.be/stops/210079", "https://data.delijn.be/stops/211079"], ["https://data.delijn.be/stops/303779", "https://data.delijn.be/stops/303780"], ["https://data.delijn.be/stops/201583", "https://data.delijn.be/stops/201584"], ["https://data.delijn.be/stops/401520", "https://data.delijn.be/stops/402023"], ["https://data.delijn.be/stops/302948", "https://data.delijn.be/stops/302998"], ["https://data.delijn.be/stops/202276", "https://data.delijn.be/stops/205994"], ["https://data.delijn.be/stops/304550", "https://data.delijn.be/stops/304606"], ["https://data.delijn.be/stops/201752", "https://data.delijn.be/stops/209280"], ["https://data.delijn.be/stops/504445", "https://data.delijn.be/stops/509443"], ["https://data.delijn.be/stops/300500", "https://data.delijn.be/stops/308813"], ["https://data.delijn.be/stops/106052", "https://data.delijn.be/stops/106054"], ["https://data.delijn.be/stops/204344", "https://data.delijn.be/stops/204452"], ["https://data.delijn.be/stops/400645", "https://data.delijn.be/stops/407401"], ["https://data.delijn.be/stops/304933", "https://data.delijn.be/stops/305225"], ["https://data.delijn.be/stops/306626", "https://data.delijn.be/stops/308463"], ["https://data.delijn.be/stops/209118", "https://data.delijn.be/stops/209332"], ["https://data.delijn.be/stops/108240", "https://data.delijn.be/stops/109025"], ["https://data.delijn.be/stops/502096", "https://data.delijn.be/stops/507681"], ["https://data.delijn.be/stops/101958", "https://data.delijn.be/stops/102174"], ["https://data.delijn.be/stops/303164", "https://data.delijn.be/stops/303167"], ["https://data.delijn.be/stops/408637", "https://data.delijn.be/stops/408639"], ["https://data.delijn.be/stops/400328", "https://data.delijn.be/stops/400329"], ["https://data.delijn.be/stops/107701", "https://data.delijn.be/stops/109045"], ["https://data.delijn.be/stops/204465", "https://data.delijn.be/stops/205465"], ["https://data.delijn.be/stops/204218", "https://data.delijn.be/stops/204905"], ["https://data.delijn.be/stops/502429", "https://data.delijn.be/stops/507429"], ["https://data.delijn.be/stops/200747", "https://data.delijn.be/stops/201747"], ["https://data.delijn.be/stops/504064", "https://data.delijn.be/stops/505110"], ["https://data.delijn.be/stops/302252", "https://data.delijn.be/stops/302936"], ["https://data.delijn.be/stops/404212", "https://data.delijn.be/stops/404220"], ["https://data.delijn.be/stops/404572", "https://data.delijn.be/stops/406766"], ["https://data.delijn.be/stops/208772", "https://data.delijn.be/stops/209772"], ["https://data.delijn.be/stops/201495", "https://data.delijn.be/stops/210124"], ["https://data.delijn.be/stops/101673", "https://data.delijn.be/stops/406776"], ["https://data.delijn.be/stops/106812", "https://data.delijn.be/stops/106820"], ["https://data.delijn.be/stops/509393", "https://data.delijn.be/stops/509397"], ["https://data.delijn.be/stops/204982", "https://data.delijn.be/stops/206676"], ["https://data.delijn.be/stops/504352", "https://data.delijn.be/stops/504612"], ["https://data.delijn.be/stops/402240", "https://data.delijn.be/stops/402431"], ["https://data.delijn.be/stops/503733", "https://data.delijn.be/stops/504969"], ["https://data.delijn.be/stops/400137", "https://data.delijn.be/stops/400139"], ["https://data.delijn.be/stops/106849", "https://data.delijn.be/stops/106852"], ["https://data.delijn.be/stops/405952", "https://data.delijn.be/stops/405955"], ["https://data.delijn.be/stops/404141", "https://data.delijn.be/stops/405912"], ["https://data.delijn.be/stops/401162", "https://data.delijn.be/stops/401163"], ["https://data.delijn.be/stops/101135", "https://data.delijn.be/stops/101136"], ["https://data.delijn.be/stops/504021", "https://data.delijn.be/stops/505206"], ["https://data.delijn.be/stops/302609", "https://data.delijn.be/stops/308115"], ["https://data.delijn.be/stops/303653", "https://data.delijn.be/stops/308956"], ["https://data.delijn.be/stops/402984", "https://data.delijn.be/stops/410054"], ["https://data.delijn.be/stops/107176", "https://data.delijn.be/stops/107177"], ["https://data.delijn.be/stops/503326", "https://data.delijn.be/stops/505081"], ["https://data.delijn.be/stops/102407", "https://data.delijn.be/stops/405030"], ["https://data.delijn.be/stops/404619", "https://data.delijn.be/stops/404626"], ["https://data.delijn.be/stops/101963", "https://data.delijn.be/stops/109268"], ["https://data.delijn.be/stops/503409", "https://data.delijn.be/stops/508387"], ["https://data.delijn.be/stops/406207", "https://data.delijn.be/stops/406445"], ["https://data.delijn.be/stops/504402", "https://data.delijn.be/stops/509413"], ["https://data.delijn.be/stops/301641", "https://data.delijn.be/stops/304142"], ["https://data.delijn.be/stops/407953", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/202855", "https://data.delijn.be/stops/203857"], ["https://data.delijn.be/stops/402945", "https://data.delijn.be/stops/407299"], ["https://data.delijn.be/stops/200935", "https://data.delijn.be/stops/203715"], ["https://data.delijn.be/stops/208124", "https://data.delijn.be/stops/208666"], ["https://data.delijn.be/stops/200073", "https://data.delijn.be/stops/201234"], ["https://data.delijn.be/stops/302254", "https://data.delijn.be/stops/306370"], ["https://data.delijn.be/stops/502563", "https://data.delijn.be/stops/507563"], ["https://data.delijn.be/stops/202632", "https://data.delijn.be/stops/202634"], ["https://data.delijn.be/stops/106444", "https://data.delijn.be/stops/106446"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/506734"], ["https://data.delijn.be/stops/502014", "https://data.delijn.be/stops/507014"], ["https://data.delijn.be/stops/410085", "https://data.delijn.be/stops/410087"], ["https://data.delijn.be/stops/200263", "https://data.delijn.be/stops/201263"], ["https://data.delijn.be/stops/400724", "https://data.delijn.be/stops/400837"], ["https://data.delijn.be/stops/406148", "https://data.delijn.be/stops/406806"], ["https://data.delijn.be/stops/207542", "https://data.delijn.be/stops/216004"], ["https://data.delijn.be/stops/206523", "https://data.delijn.be/stops/207003"], ["https://data.delijn.be/stops/107696", "https://data.delijn.be/stops/107717"], ["https://data.delijn.be/stops/204986", "https://data.delijn.be/stops/503835"], ["https://data.delijn.be/stops/108451", "https://data.delijn.be/stops/108509"], ["https://data.delijn.be/stops/502261", "https://data.delijn.be/stops/507703"], ["https://data.delijn.be/stops/500928", "https://data.delijn.be/stops/501011"], ["https://data.delijn.be/stops/202567", "https://data.delijn.be/stops/204942"], ["https://data.delijn.be/stops/405921", "https://data.delijn.be/stops/405975"], ["https://data.delijn.be/stops/101825", "https://data.delijn.be/stops/102056"], ["https://data.delijn.be/stops/407395", "https://data.delijn.be/stops/407500"], ["https://data.delijn.be/stops/401980", "https://data.delijn.be/stops/406886"], ["https://data.delijn.be/stops/405505", "https://data.delijn.be/stops/407719"], ["https://data.delijn.be/stops/208058", "https://data.delijn.be/stops/209057"], ["https://data.delijn.be/stops/201630", "https://data.delijn.be/stops/203936"], ["https://data.delijn.be/stops/403647", "https://data.delijn.be/stops/404098"], ["https://data.delijn.be/stops/505340", "https://data.delijn.be/stops/505664"], ["https://data.delijn.be/stops/300437", "https://data.delijn.be/stops/300440"], ["https://data.delijn.be/stops/403750", "https://data.delijn.be/stops/403759"], ["https://data.delijn.be/stops/406138", "https://data.delijn.be/stops/406357"], ["https://data.delijn.be/stops/105033", "https://data.delijn.be/stops/106712"], ["https://data.delijn.be/stops/504016", "https://data.delijn.be/stops/504664"], ["https://data.delijn.be/stops/505163", "https://data.delijn.be/stops/505970"], ["https://data.delijn.be/stops/407966", "https://data.delijn.be/stops/407967"], ["https://data.delijn.be/stops/300329", "https://data.delijn.be/stops/300337"], ["https://data.delijn.be/stops/308066", "https://data.delijn.be/stops/308067"], ["https://data.delijn.be/stops/402430", "https://data.delijn.be/stops/402431"], ["https://data.delijn.be/stops/104481", "https://data.delijn.be/stops/307898"], ["https://data.delijn.be/stops/409116", "https://data.delijn.be/stops/409117"], ["https://data.delijn.be/stops/300092", "https://data.delijn.be/stops/307731"], ["https://data.delijn.be/stops/303629", "https://data.delijn.be/stops/304204"], ["https://data.delijn.be/stops/200598", "https://data.delijn.be/stops/201598"], ["https://data.delijn.be/stops/201377", "https://data.delijn.be/stops/211009"], ["https://data.delijn.be/stops/400775", "https://data.delijn.be/stops/407533"], ["https://data.delijn.be/stops/206119", "https://data.delijn.be/stops/207120"], ["https://data.delijn.be/stops/207062", "https://data.delijn.be/stops/207519"], ["https://data.delijn.be/stops/405036", "https://data.delijn.be/stops/405100"], ["https://data.delijn.be/stops/405575", "https://data.delijn.be/stops/410098"], ["https://data.delijn.be/stops/102237", "https://data.delijn.be/stops/105266"], ["https://data.delijn.be/stops/305145", "https://data.delijn.be/stops/504000"], ["https://data.delijn.be/stops/505251", "https://data.delijn.be/stops/508917"], ["https://data.delijn.be/stops/502320", "https://data.delijn.be/stops/507320"], ["https://data.delijn.be/stops/404122", "https://data.delijn.be/stops/404129"], ["https://data.delijn.be/stops/409387", "https://data.delijn.be/stops/409399"], ["https://data.delijn.be/stops/301096", "https://data.delijn.be/stops/306670"], ["https://data.delijn.be/stops/308904", "https://data.delijn.be/stops/308905"], ["https://data.delijn.be/stops/206658", "https://data.delijn.be/stops/206718"], ["https://data.delijn.be/stops/406813", "https://data.delijn.be/stops/406896"], ["https://data.delijn.be/stops/300306", "https://data.delijn.be/stops/302134"], ["https://data.delijn.be/stops/204059", "https://data.delijn.be/stops/205059"], ["https://data.delijn.be/stops/302143", "https://data.delijn.be/stops/307526"], ["https://data.delijn.be/stops/501296", "https://data.delijn.be/stops/506360"], ["https://data.delijn.be/stops/303518", "https://data.delijn.be/stops/307077"], ["https://data.delijn.be/stops/501502", "https://data.delijn.be/stops/506502"], ["https://data.delijn.be/stops/304487", "https://data.delijn.be/stops/304489"], ["https://data.delijn.be/stops/102157", "https://data.delijn.be/stops/108319"], ["https://data.delijn.be/stops/406925", "https://data.delijn.be/stops/407422"], ["https://data.delijn.be/stops/402778", "https://data.delijn.be/stops/402779"], ["https://data.delijn.be/stops/302244", "https://data.delijn.be/stops/302245"], ["https://data.delijn.be/stops/508197", "https://data.delijn.be/stops/508467"], ["https://data.delijn.be/stops/300399", "https://data.delijn.be/stops/300402"], ["https://data.delijn.be/stops/202094", "https://data.delijn.be/stops/202644"], ["https://data.delijn.be/stops/301929", "https://data.delijn.be/stops/304502"], ["https://data.delijn.be/stops/505847", "https://data.delijn.be/stops/507620"], ["https://data.delijn.be/stops/402126", "https://data.delijn.be/stops/402127"], ["https://data.delijn.be/stops/404168", "https://data.delijn.be/stops/404185"], ["https://data.delijn.be/stops/404519", "https://data.delijn.be/stops/408163"], ["https://data.delijn.be/stops/302019", "https://data.delijn.be/stops/307285"], ["https://data.delijn.be/stops/300534", "https://data.delijn.be/stops/300535"], ["https://data.delijn.be/stops/306060", "https://data.delijn.be/stops/306062"], ["https://data.delijn.be/stops/404641", "https://data.delijn.be/stops/406967"], ["https://data.delijn.be/stops/208769", "https://data.delijn.be/stops/209789"], ["https://data.delijn.be/stops/306920", "https://data.delijn.be/stops/306922"], ["https://data.delijn.be/stops/302667", "https://data.delijn.be/stops/302679"], ["https://data.delijn.be/stops/107496", "https://data.delijn.be/stops/107497"], ["https://data.delijn.be/stops/302100", "https://data.delijn.be/stops/302101"], ["https://data.delijn.be/stops/303358", "https://data.delijn.be/stops/303359"], ["https://data.delijn.be/stops/400452", "https://data.delijn.be/stops/400487"], ["https://data.delijn.be/stops/306002", "https://data.delijn.be/stops/307508"], ["https://data.delijn.be/stops/408836", "https://data.delijn.be/stops/408912"], ["https://data.delijn.be/stops/503752", "https://data.delijn.be/stops/508601"], ["https://data.delijn.be/stops/200737", "https://data.delijn.be/stops/203596"], ["https://data.delijn.be/stops/404603", "https://data.delijn.be/stops/406831"], ["https://data.delijn.be/stops/107569", "https://data.delijn.be/stops/109434"], ["https://data.delijn.be/stops/403220", "https://data.delijn.be/stops/403401"], ["https://data.delijn.be/stops/104490", "https://data.delijn.be/stops/104625"], ["https://data.delijn.be/stops/501362", "https://data.delijn.be/stops/506362"], ["https://data.delijn.be/stops/109937", "https://data.delijn.be/stops/109946"], ["https://data.delijn.be/stops/506504", "https://data.delijn.be/stops/506506"], ["https://data.delijn.be/stops/106102", "https://data.delijn.be/stops/106118"], ["https://data.delijn.be/stops/308461", "https://data.delijn.be/stops/308465"], ["https://data.delijn.be/stops/208274", "https://data.delijn.be/stops/209275"], ["https://data.delijn.be/stops/204348", "https://data.delijn.be/stops/205667"], ["https://data.delijn.be/stops/207767", "https://data.delijn.be/stops/207769"], ["https://data.delijn.be/stops/208091", "https://data.delijn.be/stops/209053"], ["https://data.delijn.be/stops/102984", "https://data.delijn.be/stops/105221"], ["https://data.delijn.be/stops/502644", "https://data.delijn.be/stops/502722"], ["https://data.delijn.be/stops/200045", "https://data.delijn.be/stops/201260"], ["https://data.delijn.be/stops/507716", "https://data.delijn.be/stops/508978"], ["https://data.delijn.be/stops/202697", "https://data.delijn.be/stops/202698"], ["https://data.delijn.be/stops/204522", "https://data.delijn.be/stops/205522"], ["https://data.delijn.be/stops/508142", "https://data.delijn.be/stops/509631"], ["https://data.delijn.be/stops/503847", "https://data.delijn.be/stops/504660"], ["https://data.delijn.be/stops/407574", "https://data.delijn.be/stops/408967"], ["https://data.delijn.be/stops/202276", "https://data.delijn.be/stops/203660"], ["https://data.delijn.be/stops/303515", "https://data.delijn.be/stops/303516"], ["https://data.delijn.be/stops/102898", "https://data.delijn.be/stops/106756"], ["https://data.delijn.be/stops/300105", "https://data.delijn.be/stops/300116"], ["https://data.delijn.be/stops/203276", "https://data.delijn.be/stops/203418"], ["https://data.delijn.be/stops/502191", "https://data.delijn.be/stops/507191"], ["https://data.delijn.be/stops/304125", "https://data.delijn.be/stops/305528"], ["https://data.delijn.be/stops/302112", "https://data.delijn.be/stops/302120"], ["https://data.delijn.be/stops/304764", "https://data.delijn.be/stops/304772"], ["https://data.delijn.be/stops/104215", "https://data.delijn.be/stops/104265"], ["https://data.delijn.be/stops/202316", "https://data.delijn.be/stops/203317"], ["https://data.delijn.be/stops/406014", "https://data.delijn.be/stops/406015"], ["https://data.delijn.be/stops/302457", "https://data.delijn.be/stops/302467"], ["https://data.delijn.be/stops/507342", "https://data.delijn.be/stops/508592"], ["https://data.delijn.be/stops/200155", "https://data.delijn.be/stops/200504"], ["https://data.delijn.be/stops/206223", "https://data.delijn.be/stops/207863"], ["https://data.delijn.be/stops/106452", "https://data.delijn.be/stops/106458"], ["https://data.delijn.be/stops/402180", "https://data.delijn.be/stops/402195"], ["https://data.delijn.be/stops/503362", "https://data.delijn.be/stops/508398"], ["https://data.delijn.be/stops/200895", "https://data.delijn.be/stops/202336"], ["https://data.delijn.be/stops/504976", "https://data.delijn.be/stops/509116"], ["https://data.delijn.be/stops/209369", "https://data.delijn.be/stops/209454"], ["https://data.delijn.be/stops/502910", "https://data.delijn.be/stops/507912"], ["https://data.delijn.be/stops/301727", "https://data.delijn.be/stops/305948"], ["https://data.delijn.be/stops/202957", "https://data.delijn.be/stops/203956"], ["https://data.delijn.be/stops/402795", "https://data.delijn.be/stops/406717"], ["https://data.delijn.be/stops/302629", "https://data.delijn.be/stops/308113"], ["https://data.delijn.be/stops/207101", "https://data.delijn.be/stops/207102"], ["https://data.delijn.be/stops/404266", "https://data.delijn.be/stops/404267"], ["https://data.delijn.be/stops/505197", "https://data.delijn.be/stops/505217"], ["https://data.delijn.be/stops/504217", "https://data.delijn.be/stops/509211"], ["https://data.delijn.be/stops/409073", "https://data.delijn.be/stops/409153"], ["https://data.delijn.be/stops/503284", "https://data.delijn.be/stops/505966"], ["https://data.delijn.be/stops/300453", "https://data.delijn.be/stops/308052"], ["https://data.delijn.be/stops/503069", "https://data.delijn.be/stops/508069"], ["https://data.delijn.be/stops/103293", "https://data.delijn.be/stops/109478"], ["https://data.delijn.be/stops/208433", "https://data.delijn.be/stops/218021"], ["https://data.delijn.be/stops/302755", "https://data.delijn.be/stops/302764"], ["https://data.delijn.be/stops/503540", "https://data.delijn.be/stops/503563"], ["https://data.delijn.be/stops/406868", "https://data.delijn.be/stops/406869"], ["https://data.delijn.be/stops/502219", "https://data.delijn.be/stops/507219"], ["https://data.delijn.be/stops/402731", "https://data.delijn.be/stops/402732"], ["https://data.delijn.be/stops/305266", "https://data.delijn.be/stops/306342"], ["https://data.delijn.be/stops/306917", "https://data.delijn.be/stops/306918"], ["https://data.delijn.be/stops/108608", "https://data.delijn.be/stops/307434"], ["https://data.delijn.be/stops/502184", "https://data.delijn.be/stops/507184"], ["https://data.delijn.be/stops/301082", "https://data.delijn.be/stops/301088"], ["https://data.delijn.be/stops/509037", "https://data.delijn.be/stops/509287"], ["https://data.delijn.be/stops/503970", "https://data.delijn.be/stops/508200"], ["https://data.delijn.be/stops/404071", "https://data.delijn.be/stops/404110"], ["https://data.delijn.be/stops/301063", "https://data.delijn.be/stops/306116"], ["https://data.delijn.be/stops/102956", "https://data.delijn.be/stops/105576"], ["https://data.delijn.be/stops/306770", "https://data.delijn.be/stops/307426"], ["https://data.delijn.be/stops/204633", "https://data.delijn.be/stops/205614"], ["https://data.delijn.be/stops/202788", "https://data.delijn.be/stops/208642"], ["https://data.delijn.be/stops/107200", "https://data.delijn.be/stops/107728"], ["https://data.delijn.be/stops/510021", "https://data.delijn.be/stops/510025"], ["https://data.delijn.be/stops/300483", "https://data.delijn.be/stops/300488"], ["https://data.delijn.be/stops/301118", "https://data.delijn.be/stops/304010"], ["https://data.delijn.be/stops/504345", "https://data.delijn.be/stops/505116"], ["https://data.delijn.be/stops/102911", "https://data.delijn.be/stops/103165"], ["https://data.delijn.be/stops/400956", "https://data.delijn.be/stops/400957"], ["https://data.delijn.be/stops/207248", "https://data.delijn.be/stops/207249"], ["https://data.delijn.be/stops/305668", "https://data.delijn.be/stops/305741"], ["https://data.delijn.be/stops/204372", "https://data.delijn.be/stops/204381"], ["https://data.delijn.be/stops/300925", "https://data.delijn.be/stops/300927"], ["https://data.delijn.be/stops/204394", "https://data.delijn.be/stops/205393"], ["https://data.delijn.be/stops/500196", "https://data.delijn.be/stops/506050"], ["https://data.delijn.be/stops/502025", "https://data.delijn.be/stops/502764"], ["https://data.delijn.be/stops/202844", "https://data.delijn.be/stops/203731"], ["https://data.delijn.be/stops/105207", "https://data.delijn.be/stops/108061"], ["https://data.delijn.be/stops/204304", "https://data.delijn.be/stops/205304"], ["https://data.delijn.be/stops/402563", "https://data.delijn.be/stops/407805"], ["https://data.delijn.be/stops/206299", "https://data.delijn.be/stops/206300"], ["https://data.delijn.be/stops/303060", "https://data.delijn.be/stops/304469"], ["https://data.delijn.be/stops/404988", "https://data.delijn.be/stops/409454"], ["https://data.delijn.be/stops/302306", "https://data.delijn.be/stops/302323"], ["https://data.delijn.be/stops/307959", "https://data.delijn.be/stops/308072"], ["https://data.delijn.be/stops/404878", "https://data.delijn.be/stops/404934"], ["https://data.delijn.be/stops/407657", "https://data.delijn.be/stops/407743"], ["https://data.delijn.be/stops/105363", "https://data.delijn.be/stops/105364"], ["https://data.delijn.be/stops/406309", "https://data.delijn.be/stops/406322"], ["https://data.delijn.be/stops/200591", "https://data.delijn.be/stops/201584"], ["https://data.delijn.be/stops/402313", "https://data.delijn.be/stops/402382"], ["https://data.delijn.be/stops/207858", "https://data.delijn.be/stops/209623"], ["https://data.delijn.be/stops/401781", "https://data.delijn.be/stops/401790"], ["https://data.delijn.be/stops/401086", "https://data.delijn.be/stops/401090"], ["https://data.delijn.be/stops/208253", "https://data.delijn.be/stops/208328"], ["https://data.delijn.be/stops/400204", "https://data.delijn.be/stops/400206"], ["https://data.delijn.be/stops/302944", "https://data.delijn.be/stops/308660"], ["https://data.delijn.be/stops/106850", "https://data.delijn.be/stops/106852"], ["https://data.delijn.be/stops/201913", "https://data.delijn.be/stops/202468"], ["https://data.delijn.be/stops/400140", "https://data.delijn.be/stops/409203"], ["https://data.delijn.be/stops/510017", "https://data.delijn.be/stops/510018"], ["https://data.delijn.be/stops/501556", "https://data.delijn.be/stops/506556"], ["https://data.delijn.be/stops/301422", "https://data.delijn.be/stops/303627"], ["https://data.delijn.be/stops/407078", "https://data.delijn.be/stops/407086"], ["https://data.delijn.be/stops/104736", "https://data.delijn.be/stops/107331"], ["https://data.delijn.be/stops/206805", "https://data.delijn.be/stops/217012"], ["https://data.delijn.be/stops/405740", "https://data.delijn.be/stops/405745"], ["https://data.delijn.be/stops/307413", "https://data.delijn.be/stops/308055"], ["https://data.delijn.be/stops/506142", "https://data.delijn.be/stops/509836"], ["https://data.delijn.be/stops/402336", "https://data.delijn.be/stops/402443"], ["https://data.delijn.be/stops/206420", "https://data.delijn.be/stops/207420"], ["https://data.delijn.be/stops/201771", "https://data.delijn.be/stops/201820"], ["https://data.delijn.be/stops/502199", "https://data.delijn.be/stops/507194"], ["https://data.delijn.be/stops/200821", "https://data.delijn.be/stops/200822"], ["https://data.delijn.be/stops/108412", "https://data.delijn.be/stops/108413"], ["https://data.delijn.be/stops/404369", "https://data.delijn.be/stops/405669"], ["https://data.delijn.be/stops/407050", "https://data.delijn.be/stops/410016"], ["https://data.delijn.be/stops/407468", "https://data.delijn.be/stops/409859"], ["https://data.delijn.be/stops/209461", "https://data.delijn.be/stops/209462"], ["https://data.delijn.be/stops/101027", "https://data.delijn.be/stops/105130"], ["https://data.delijn.be/stops/303627", "https://data.delijn.be/stops/307219"], ["https://data.delijn.be/stops/305437", "https://data.delijn.be/stops/308644"], ["https://data.delijn.be/stops/507498", "https://data.delijn.be/stops/509727"], ["https://data.delijn.be/stops/401255", "https://data.delijn.be/stops/401452"], ["https://data.delijn.be/stops/400782", "https://data.delijn.be/stops/400816"], ["https://data.delijn.be/stops/201825", "https://data.delijn.be/stops/203794"], ["https://data.delijn.be/stops/400753", "https://data.delijn.be/stops/409807"], ["https://data.delijn.be/stops/300170", "https://data.delijn.be/stops/304924"], ["https://data.delijn.be/stops/405958", "https://data.delijn.be/stops/405960"], ["https://data.delijn.be/stops/500946", "https://data.delijn.be/stops/504194"], ["https://data.delijn.be/stops/203548", "https://data.delijn.be/stops/203554"], ["https://data.delijn.be/stops/109207", "https://data.delijn.be/stops/109209"], ["https://data.delijn.be/stops/300998", "https://data.delijn.be/stops/307043"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/202628"], ["https://data.delijn.be/stops/403710", "https://data.delijn.be/stops/403711"], ["https://data.delijn.be/stops/300855", "https://data.delijn.be/stops/306050"], ["https://data.delijn.be/stops/203186", "https://data.delijn.be/stops/203668"], ["https://data.delijn.be/stops/109846", "https://data.delijn.be/stops/109849"], ["https://data.delijn.be/stops/208339", "https://data.delijn.be/stops/208789"], ["https://data.delijn.be/stops/409450", "https://data.delijn.be/stops/409453"], ["https://data.delijn.be/stops/400119", "https://data.delijn.be/stops/400152"], ["https://data.delijn.be/stops/509211", "https://data.delijn.be/stops/509222"], ["https://data.delijn.be/stops/501179", "https://data.delijn.be/stops/501736"], ["https://data.delijn.be/stops/102382", "https://data.delijn.be/stops/102991"], ["https://data.delijn.be/stops/408822", "https://data.delijn.be/stops/408833"], ["https://data.delijn.be/stops/503810", "https://data.delijn.be/stops/503811"], ["https://data.delijn.be/stops/303289", "https://data.delijn.be/stops/308738"], ["https://data.delijn.be/stops/103477", "https://data.delijn.be/stops/103619"], ["https://data.delijn.be/stops/203818", "https://data.delijn.be/stops/203844"], ["https://data.delijn.be/stops/302487", "https://data.delijn.be/stops/308830"], ["https://data.delijn.be/stops/102235", "https://data.delijn.be/stops/102813"], ["https://data.delijn.be/stops/104142", "https://data.delijn.be/stops/305791"], ["https://data.delijn.be/stops/208092", "https://data.delijn.be/stops/209091"], ["https://data.delijn.be/stops/403003", "https://data.delijn.be/stops/405608"], ["https://data.delijn.be/stops/105729", "https://data.delijn.be/stops/109842"], ["https://data.delijn.be/stops/200901", "https://data.delijn.be/stops/202265"], ["https://data.delijn.be/stops/506120", "https://data.delijn.be/stops/506125"], ["https://data.delijn.be/stops/101001", "https://data.delijn.be/stops/106070"], ["https://data.delijn.be/stops/208692", "https://data.delijn.be/stops/208712"], ["https://data.delijn.be/stops/207752", "https://data.delijn.be/stops/208190"], ["https://data.delijn.be/stops/505926", "https://data.delijn.be/stops/509562"], ["https://data.delijn.be/stops/101812", "https://data.delijn.be/stops/107976"], ["https://data.delijn.be/stops/404628", "https://data.delijn.be/stops/406962"], ["https://data.delijn.be/stops/206669", "https://data.delijn.be/stops/207677"], ["https://data.delijn.be/stops/407032", "https://data.delijn.be/stops/407036"], ["https://data.delijn.be/stops/403207", "https://data.delijn.be/stops/410215"], ["https://data.delijn.be/stops/302188", "https://data.delijn.be/stops/302196"], ["https://data.delijn.be/stops/300969", "https://data.delijn.be/stops/301116"], ["https://data.delijn.be/stops/204163", "https://data.delijn.be/stops/206401"], ["https://data.delijn.be/stops/208335", "https://data.delijn.be/stops/209335"], ["https://data.delijn.be/stops/404594", "https://data.delijn.be/stops/406905"], ["https://data.delijn.be/stops/505184", "https://data.delijn.be/stops/509565"], ["https://data.delijn.be/stops/507034", "https://data.delijn.be/stops/507048"], ["https://data.delijn.be/stops/208257", "https://data.delijn.be/stops/209257"], ["https://data.delijn.be/stops/401214", "https://data.delijn.be/stops/401247"], ["https://data.delijn.be/stops/505087", "https://data.delijn.be/stops/505231"], ["https://data.delijn.be/stops/503040", "https://data.delijn.be/stops/503045"], ["https://data.delijn.be/stops/102425", "https://data.delijn.be/stops/105315"], ["https://data.delijn.be/stops/104133", "https://data.delijn.be/stops/108045"], ["https://data.delijn.be/stops/108647", "https://data.delijn.be/stops/109792"], ["https://data.delijn.be/stops/101202", "https://data.delijn.be/stops/104931"], ["https://data.delijn.be/stops/501749", "https://data.delijn.be/stops/501777"], ["https://data.delijn.be/stops/208809", "https://data.delijn.be/stops/209129"], ["https://data.delijn.be/stops/408241", "https://data.delijn.be/stops/408243"], ["https://data.delijn.be/stops/405178", "https://data.delijn.be/stops/405179"], ["https://data.delijn.be/stops/203287", "https://data.delijn.be/stops/203288"], ["https://data.delijn.be/stops/206711", "https://data.delijn.be/stops/207975"], ["https://data.delijn.be/stops/200824", "https://data.delijn.be/stops/203330"], ["https://data.delijn.be/stops/305586", "https://data.delijn.be/stops/305587"], ["https://data.delijn.be/stops/503205", "https://data.delijn.be/stops/508192"], ["https://data.delijn.be/stops/204446", "https://data.delijn.be/stops/214002"], ["https://data.delijn.be/stops/208797", "https://data.delijn.be/stops/209796"], ["https://data.delijn.be/stops/401297", "https://data.delijn.be/stops/401306"], ["https://data.delijn.be/stops/102449", "https://data.delijn.be/stops/107979"], ["https://data.delijn.be/stops/504763", "https://data.delijn.be/stops/508530"], ["https://data.delijn.be/stops/200917", "https://data.delijn.be/stops/202044"], ["https://data.delijn.be/stops/403836", "https://data.delijn.be/stops/403848"], ["https://data.delijn.be/stops/305689", "https://data.delijn.be/stops/305704"], ["https://data.delijn.be/stops/105244", "https://data.delijn.be/stops/105247"], ["https://data.delijn.be/stops/503684", "https://data.delijn.be/stops/503686"], ["https://data.delijn.be/stops/303618", "https://data.delijn.be/stops/304923"], ["https://data.delijn.be/stops/406423", "https://data.delijn.be/stops/406442"], ["https://data.delijn.be/stops/400029", "https://data.delijn.be/stops/400030"], ["https://data.delijn.be/stops/201456", "https://data.delijn.be/stops/201652"], ["https://data.delijn.be/stops/102006", "https://data.delijn.be/stops/102007"], ["https://data.delijn.be/stops/402383", "https://data.delijn.be/stops/402452"], ["https://data.delijn.be/stops/405208", "https://data.delijn.be/stops/405290"], ["https://data.delijn.be/stops/108843", "https://data.delijn.be/stops/108856"], ["https://data.delijn.be/stops/405049", "https://data.delijn.be/stops/405756"], ["https://data.delijn.be/stops/300647", "https://data.delijn.be/stops/305815"], ["https://data.delijn.be/stops/503413", "https://data.delijn.be/stops/508438"], ["https://data.delijn.be/stops/206592", "https://data.delijn.be/stops/206930"], ["https://data.delijn.be/stops/103865", "https://data.delijn.be/stops/103870"], ["https://data.delijn.be/stops/101749", "https://data.delijn.be/stops/106385"], ["https://data.delijn.be/stops/101933", "https://data.delijn.be/stops/107739"], ["https://data.delijn.be/stops/204074", "https://data.delijn.be/stops/204236"], ["https://data.delijn.be/stops/105043", "https://data.delijn.be/stops/105044"], ["https://data.delijn.be/stops/301360", "https://data.delijn.be/stops/305528"], ["https://data.delijn.be/stops/504494", "https://data.delijn.be/stops/504729"], ["https://data.delijn.be/stops/200595", "https://data.delijn.be/stops/210130"], ["https://data.delijn.be/stops/507015", "https://data.delijn.be/stops/507912"], ["https://data.delijn.be/stops/104611", "https://data.delijn.be/stops/105825"], ["https://data.delijn.be/stops/101519", "https://data.delijn.be/stops/109056"], ["https://data.delijn.be/stops/303814", "https://data.delijn.be/stops/303823"], ["https://data.delijn.be/stops/201707", "https://data.delijn.be/stops/201711"], ["https://data.delijn.be/stops/401131", "https://data.delijn.be/stops/406549"], ["https://data.delijn.be/stops/400071", "https://data.delijn.be/stops/403298"], ["https://data.delijn.be/stops/106260", "https://data.delijn.be/stops/109909"], ["https://data.delijn.be/stops/502057", "https://data.delijn.be/stops/502441"], ["https://data.delijn.be/stops/407491", "https://data.delijn.be/stops/410191"], ["https://data.delijn.be/stops/201021", "https://data.delijn.be/stops/201101"], ["https://data.delijn.be/stops/201953", "https://data.delijn.be/stops/202463"], ["https://data.delijn.be/stops/107549", "https://data.delijn.be/stops/108936"], ["https://data.delijn.be/stops/305659", "https://data.delijn.be/stops/305669"], ["https://data.delijn.be/stops/400629", "https://data.delijn.be/stops/404290"], ["https://data.delijn.be/stops/402201", "https://data.delijn.be/stops/402367"], ["https://data.delijn.be/stops/402782", "https://data.delijn.be/stops/402797"], ["https://data.delijn.be/stops/404314", "https://data.delijn.be/stops/405669"], ["https://data.delijn.be/stops/108562", "https://data.delijn.be/stops/109101"], ["https://data.delijn.be/stops/304753", "https://data.delijn.be/stops/304762"], ["https://data.delijn.be/stops/504151", "https://data.delijn.be/stops/504170"], ["https://data.delijn.be/stops/400253", "https://data.delijn.be/stops/400332"], ["https://data.delijn.be/stops/508504", "https://data.delijn.be/stops/508607"], ["https://data.delijn.be/stops/201423", "https://data.delijn.be/stops/202538"], ["https://data.delijn.be/stops/305173", "https://data.delijn.be/stops/306916"], ["https://data.delijn.be/stops/405586", "https://data.delijn.be/stops/409431"], ["https://data.delijn.be/stops/105311", "https://data.delijn.be/stops/105313"], ["https://data.delijn.be/stops/408813", "https://data.delijn.be/stops/408815"], ["https://data.delijn.be/stops/503396", "https://data.delijn.be/stops/503694"], ["https://data.delijn.be/stops/306898", "https://data.delijn.be/stops/306900"], ["https://data.delijn.be/stops/301434", "https://data.delijn.be/stops/306417"], ["https://data.delijn.be/stops/208150", "https://data.delijn.be/stops/209150"], ["https://data.delijn.be/stops/203342", "https://data.delijn.be/stops/203447"], ["https://data.delijn.be/stops/409715", "https://data.delijn.be/stops/409719"], ["https://data.delijn.be/stops/405872", "https://data.delijn.be/stops/409766"], ["https://data.delijn.be/stops/103068", "https://data.delijn.be/stops/105753"], ["https://data.delijn.be/stops/300065", "https://data.delijn.be/stops/303943"], ["https://data.delijn.be/stops/502209", "https://data.delijn.be/stops/507746"], ["https://data.delijn.be/stops/304343", "https://data.delijn.be/stops/304345"], ["https://data.delijn.be/stops/105094", "https://data.delijn.be/stops/105098"], ["https://data.delijn.be/stops/501337", "https://data.delijn.be/stops/509898"], ["https://data.delijn.be/stops/504595", "https://data.delijn.be/stops/504703"], ["https://data.delijn.be/stops/300733", "https://data.delijn.be/stops/300734"], ["https://data.delijn.be/stops/300036", "https://data.delijn.be/stops/300065"], ["https://data.delijn.be/stops/201026", "https://data.delijn.be/stops/201446"], ["https://data.delijn.be/stops/400778", "https://data.delijn.be/stops/400779"], ["https://data.delijn.be/stops/303477", "https://data.delijn.be/stops/303493"], ["https://data.delijn.be/stops/405950", "https://data.delijn.be/stops/405954"], ["https://data.delijn.be/stops/202969", "https://data.delijn.be/stops/202970"], ["https://data.delijn.be/stops/402584", "https://data.delijn.be/stops/402605"], ["https://data.delijn.be/stops/200421", "https://data.delijn.be/stops/201452"], ["https://data.delijn.be/stops/106775", "https://data.delijn.be/stops/106776"], ["https://data.delijn.be/stops/501387", "https://data.delijn.be/stops/506387"], ["https://data.delijn.be/stops/301904", "https://data.delijn.be/stops/306251"], ["https://data.delijn.be/stops/209149", "https://data.delijn.be/stops/209403"], ["https://data.delijn.be/stops/202585", "https://data.delijn.be/stops/202607"], ["https://data.delijn.be/stops/107977", "https://data.delijn.be/stops/306761"], ["https://data.delijn.be/stops/200257", "https://data.delijn.be/stops/203564"], ["https://data.delijn.be/stops/200301", "https://data.delijn.be/stops/200302"], ["https://data.delijn.be/stops/218020", "https://data.delijn.be/stops/219020"], ["https://data.delijn.be/stops/400382", "https://data.delijn.be/stops/400427"], ["https://data.delijn.be/stops/501634", "https://data.delijn.be/stops/501663"], ["https://data.delijn.be/stops/400465", "https://data.delijn.be/stops/410319"], ["https://data.delijn.be/stops/300611", "https://data.delijn.be/stops/300612"], ["https://data.delijn.be/stops/304996", "https://data.delijn.be/stops/305455"], ["https://data.delijn.be/stops/304635", "https://data.delijn.be/stops/308963"], ["https://data.delijn.be/stops/210053", "https://data.delijn.be/stops/211123"], ["https://data.delijn.be/stops/205658", "https://data.delijn.be/stops/205679"], ["https://data.delijn.be/stops/401472", "https://data.delijn.be/stops/405142"], ["https://data.delijn.be/stops/300137", "https://data.delijn.be/stops/300138"], ["https://data.delijn.be/stops/501600", "https://data.delijn.be/stops/505165"], ["https://data.delijn.be/stops/505608", "https://data.delijn.be/stops/507529"], ["https://data.delijn.be/stops/207707", "https://data.delijn.be/stops/308799"], ["https://data.delijn.be/stops/301640", "https://data.delijn.be/stops/307766"], ["https://data.delijn.be/stops/303078", "https://data.delijn.be/stops/303112"], ["https://data.delijn.be/stops/405878", "https://data.delijn.be/stops/409665"], ["https://data.delijn.be/stops/401788", "https://data.delijn.be/stops/401791"], ["https://data.delijn.be/stops/208688", "https://data.delijn.be/stops/208692"], ["https://data.delijn.be/stops/200922", "https://data.delijn.be/stops/200937"], ["https://data.delijn.be/stops/304883", "https://data.delijn.be/stops/307831"], ["https://data.delijn.be/stops/304852", "https://data.delijn.be/stops/304853"], ["https://data.delijn.be/stops/101016", "https://data.delijn.be/stops/101017"], ["https://data.delijn.be/stops/109912", "https://data.delijn.be/stops/109913"], ["https://data.delijn.be/stops/105159", "https://data.delijn.be/stops/108761"], ["https://data.delijn.be/stops/304207", "https://data.delijn.be/stops/308981"], ["https://data.delijn.be/stops/406285", "https://data.delijn.be/stops/409357"], ["https://data.delijn.be/stops/302051", "https://data.delijn.be/stops/302251"], ["https://data.delijn.be/stops/302071", "https://data.delijn.be/stops/306350"], ["https://data.delijn.be/stops/402863", "https://data.delijn.be/stops/408082"], ["https://data.delijn.be/stops/201901", "https://data.delijn.be/stops/202473"], ["https://data.delijn.be/stops/109072", "https://data.delijn.be/stops/109559"], ["https://data.delijn.be/stops/105617", "https://data.delijn.be/stops/105619"], ["https://data.delijn.be/stops/206688", "https://data.delijn.be/stops/207342"], ["https://data.delijn.be/stops/503617", "https://data.delijn.be/stops/508617"], ["https://data.delijn.be/stops/106261", "https://data.delijn.be/stops/106340"], ["https://data.delijn.be/stops/304744", "https://data.delijn.be/stops/304747"], ["https://data.delijn.be/stops/106051", "https://data.delijn.be/stops/109875"], ["https://data.delijn.be/stops/306248", "https://data.delijn.be/stops/306250"], ["https://data.delijn.be/stops/207799", "https://data.delijn.be/stops/208784"], ["https://data.delijn.be/stops/502566", "https://data.delijn.be/stops/507569"], ["https://data.delijn.be/stops/206069", "https://data.delijn.be/stops/207903"], ["https://data.delijn.be/stops/204995", "https://data.delijn.be/stops/303865"], ["https://data.delijn.be/stops/207800", "https://data.delijn.be/stops/208545"], ["https://data.delijn.be/stops/109705", "https://data.delijn.be/stops/109706"], ["https://data.delijn.be/stops/406012", "https://data.delijn.be/stops/406118"], ["https://data.delijn.be/stops/205656", "https://data.delijn.be/stops/205657"], ["https://data.delijn.be/stops/200161", "https://data.delijn.be/stops/201313"], ["https://data.delijn.be/stops/403746", "https://data.delijn.be/stops/403749"], ["https://data.delijn.be/stops/506295", "https://data.delijn.be/stops/506296"], ["https://data.delijn.be/stops/404789", "https://data.delijn.be/stops/404811"], ["https://data.delijn.be/stops/208560", "https://data.delijn.be/stops/208620"], ["https://data.delijn.be/stops/301951", "https://data.delijn.be/stops/303287"], ["https://data.delijn.be/stops/501014", "https://data.delijn.be/stops/506609"], ["https://data.delijn.be/stops/307455", "https://data.delijn.be/stops/307456"], ["https://data.delijn.be/stops/202496", "https://data.delijn.be/stops/203174"], ["https://data.delijn.be/stops/409529", "https://data.delijn.be/stops/410402"], ["https://data.delijn.be/stops/505680", "https://data.delijn.be/stops/507315"], ["https://data.delijn.be/stops/408266", "https://data.delijn.be/stops/408267"], ["https://data.delijn.be/stops/502547", "https://data.delijn.be/stops/505583"], ["https://data.delijn.be/stops/104666", "https://data.delijn.be/stops/109568"], ["https://data.delijn.be/stops/209438", "https://data.delijn.be/stops/218021"], ["https://data.delijn.be/stops/208517", "https://data.delijn.be/stops/209701"], ["https://data.delijn.be/stops/402352", "https://data.delijn.be/stops/405577"], ["https://data.delijn.be/stops/408075", "https://data.delijn.be/stops/408131"], ["https://data.delijn.be/stops/102196", "https://data.delijn.be/stops/104277"], ["https://data.delijn.be/stops/106814", "https://data.delijn.be/stops/106820"], ["https://data.delijn.be/stops/301593", "https://data.delijn.be/stops/305047"], ["https://data.delijn.be/stops/109256", "https://data.delijn.be/stops/109713"], ["https://data.delijn.be/stops/302014", "https://data.delijn.be/stops/307818"], ["https://data.delijn.be/stops/502041", "https://data.delijn.be/stops/507041"], ["https://data.delijn.be/stops/404428", "https://data.delijn.be/stops/404525"], ["https://data.delijn.be/stops/206032", "https://data.delijn.be/stops/206214"], ["https://data.delijn.be/stops/504566", "https://data.delijn.be/stops/509560"], ["https://data.delijn.be/stops/303163", "https://data.delijn.be/stops/303168"], ["https://data.delijn.be/stops/504005", "https://data.delijn.be/stops/504010"], ["https://data.delijn.be/stops/407873", "https://data.delijn.be/stops/407947"], ["https://data.delijn.be/stops/108407", "https://data.delijn.be/stops/108409"], ["https://data.delijn.be/stops/501527", "https://data.delijn.be/stops/501529"], ["https://data.delijn.be/stops/105484", "https://data.delijn.be/stops/105498"], ["https://data.delijn.be/stops/205680", "https://data.delijn.be/stops/205681"], ["https://data.delijn.be/stops/206564", "https://data.delijn.be/stops/207564"], ["https://data.delijn.be/stops/402991", "https://data.delijn.be/stops/405588"], ["https://data.delijn.be/stops/202080", "https://data.delijn.be/stops/202737"], ["https://data.delijn.be/stops/404086", "https://data.delijn.be/stops/404087"], ["https://data.delijn.be/stops/200223", "https://data.delijn.be/stops/201223"], ["https://data.delijn.be/stops/506332", "https://data.delijn.be/stops/506477"], ["https://data.delijn.be/stops/400036", "https://data.delijn.be/stops/402791"], ["https://data.delijn.be/stops/106354", "https://data.delijn.be/stops/106355"], ["https://data.delijn.be/stops/300164", "https://data.delijn.be/stops/300165"], ["https://data.delijn.be/stops/406008", "https://data.delijn.be/stops/406009"], ["https://data.delijn.be/stops/504026", "https://data.delijn.be/stops/505301"], ["https://data.delijn.be/stops/107352", "https://data.delijn.be/stops/108173"], ["https://data.delijn.be/stops/408547", "https://data.delijn.be/stops/408548"], ["https://data.delijn.be/stops/406082", "https://data.delijn.be/stops/406084"], ["https://data.delijn.be/stops/404318", "https://data.delijn.be/stops/404331"], ["https://data.delijn.be/stops/300509", "https://data.delijn.be/stops/308357"], ["https://data.delijn.be/stops/300046", "https://data.delijn.be/stops/307825"], ["https://data.delijn.be/stops/503028", "https://data.delijn.be/stops/504816"], ["https://data.delijn.be/stops/400844", "https://data.delijn.be/stops/407592"], ["https://data.delijn.be/stops/200947", "https://data.delijn.be/stops/203231"], ["https://data.delijn.be/stops/204779", "https://data.delijn.be/stops/214011"], ["https://data.delijn.be/stops/405527", "https://data.delijn.be/stops/407274"], ["https://data.delijn.be/stops/204076", "https://data.delijn.be/stops/205091"], ["https://data.delijn.be/stops/508114", "https://data.delijn.be/stops/508885"], ["https://data.delijn.be/stops/204348", "https://data.delijn.be/stops/205107"], ["https://data.delijn.be/stops/403446", "https://data.delijn.be/stops/403450"], ["https://data.delijn.be/stops/401408", "https://data.delijn.be/stops/304599"], ["https://data.delijn.be/stops/503962", "https://data.delijn.be/stops/509887"], ["https://data.delijn.be/stops/400079", "https://data.delijn.be/stops/409105"], ["https://data.delijn.be/stops/103491", "https://data.delijn.be/stops/104887"], ["https://data.delijn.be/stops/206024", "https://data.delijn.be/stops/207024"], ["https://data.delijn.be/stops/506308", "https://data.delijn.be/stops/506500"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/504615"], ["https://data.delijn.be/stops/106766", "https://data.delijn.be/stops/107519"], ["https://data.delijn.be/stops/208051", "https://data.delijn.be/stops/209658"], ["https://data.delijn.be/stops/405242", "https://data.delijn.be/stops/405243"], ["https://data.delijn.be/stops/109601", "https://data.delijn.be/stops/109602"], ["https://data.delijn.be/stops/410120", "https://data.delijn.be/stops/410286"], ["https://data.delijn.be/stops/505997", "https://data.delijn.be/stops/509437"], ["https://data.delijn.be/stops/209147", "https://data.delijn.be/stops/209148"], ["https://data.delijn.be/stops/503564", "https://data.delijn.be/stops/508564"], ["https://data.delijn.be/stops/304000", "https://data.delijn.be/stops/307505"], ["https://data.delijn.be/stops/107218", "https://data.delijn.be/stops/107219"], ["https://data.delijn.be/stops/105150", "https://data.delijn.be/stops/105620"], ["https://data.delijn.be/stops/107115", "https://data.delijn.be/stops/107120"], ["https://data.delijn.be/stops/200749", "https://data.delijn.be/stops/203150"], ["https://data.delijn.be/stops/501550", "https://data.delijn.be/stops/506769"], ["https://data.delijn.be/stops/109830", "https://data.delijn.be/stops/109979"], ["https://data.delijn.be/stops/109560", "https://data.delijn.be/stops/109860"], ["https://data.delijn.be/stops/510018", "https://data.delijn.be/stops/510019"], ["https://data.delijn.be/stops/302727", "https://data.delijn.be/stops/308595"], ["https://data.delijn.be/stops/405336", "https://data.delijn.be/stops/405337"], ["https://data.delijn.be/stops/305500", "https://data.delijn.be/stops/308912"], ["https://data.delijn.be/stops/206863", "https://data.delijn.be/stops/207923"], ["https://data.delijn.be/stops/300363", "https://data.delijn.be/stops/307721"], ["https://data.delijn.be/stops/509356", "https://data.delijn.be/stops/509360"], ["https://data.delijn.be/stops/206524", "https://data.delijn.be/stops/216008"], ["https://data.delijn.be/stops/210855", "https://data.delijn.be/stops/211850"], ["https://data.delijn.be/stops/504968", "https://data.delijn.be/stops/509968"], ["https://data.delijn.be/stops/303862", "https://data.delijn.be/stops/305923"], ["https://data.delijn.be/stops/204343", "https://data.delijn.be/stops/204346"], ["https://data.delijn.be/stops/508486", "https://data.delijn.be/stops/508491"], ["https://data.delijn.be/stops/204644", "https://data.delijn.be/stops/204646"], ["https://data.delijn.be/stops/108652", "https://data.delijn.be/stops/306594"], ["https://data.delijn.be/stops/504749", "https://data.delijn.be/stops/505292"], ["https://data.delijn.be/stops/306172", "https://data.delijn.be/stops/306224"], ["https://data.delijn.be/stops/304555", "https://data.delijn.be/stops/304557"], ["https://data.delijn.be/stops/206102", "https://data.delijn.be/stops/207103"], ["https://data.delijn.be/stops/201102", "https://data.delijn.be/stops/210001"], ["https://data.delijn.be/stops/102150", "https://data.delijn.be/stops/106005"], ["https://data.delijn.be/stops/208611", "https://data.delijn.be/stops/209611"], ["https://data.delijn.be/stops/502498", "https://data.delijn.be/stops/502515"], ["https://data.delijn.be/stops/301256", "https://data.delijn.be/stops/301259"], ["https://data.delijn.be/stops/202529", "https://data.delijn.be/stops/206827"], ["https://data.delijn.be/stops/503502", "https://data.delijn.be/stops/503871"], ["https://data.delijn.be/stops/206701", "https://data.delijn.be/stops/206726"], ["https://data.delijn.be/stops/206368", "https://data.delijn.be/stops/207369"], ["https://data.delijn.be/stops/108224", "https://data.delijn.be/stops/108226"], ["https://data.delijn.be/stops/301371", "https://data.delijn.be/stops/308768"], ["https://data.delijn.be/stops/202110", "https://data.delijn.be/stops/204595"], ["https://data.delijn.be/stops/107695", "https://data.delijn.be/stops/108315"], ["https://data.delijn.be/stops/305456", "https://data.delijn.be/stops/305982"], ["https://data.delijn.be/stops/503918", "https://data.delijn.be/stops/508918"], ["https://data.delijn.be/stops/204496", "https://data.delijn.be/stops/205495"], ["https://data.delijn.be/stops/203128", "https://data.delijn.be/stops/203583"], ["https://data.delijn.be/stops/400784", "https://data.delijn.be/stops/400867"], ["https://data.delijn.be/stops/504264", "https://data.delijn.be/stops/504265"], ["https://data.delijn.be/stops/503381", "https://data.delijn.be/stops/509789"], ["https://data.delijn.be/stops/504417", "https://data.delijn.be/stops/509437"], ["https://data.delijn.be/stops/109442", "https://data.delijn.be/stops/109445"], ["https://data.delijn.be/stops/300817", "https://data.delijn.be/stops/300888"], ["https://data.delijn.be/stops/202348", "https://data.delijn.be/stops/203347"], ["https://data.delijn.be/stops/202419", "https://data.delijn.be/stops/203130"], ["https://data.delijn.be/stops/203852", "https://data.delijn.be/stops/210098"], ["https://data.delijn.be/stops/300059", "https://data.delijn.be/stops/307734"], ["https://data.delijn.be/stops/503427", "https://data.delijn.be/stops/503951"], ["https://data.delijn.be/stops/109721", "https://data.delijn.be/stops/406498"], ["https://data.delijn.be/stops/400652", "https://data.delijn.be/stops/400653"], ["https://data.delijn.be/stops/202576", "https://data.delijn.be/stops/203576"], ["https://data.delijn.be/stops/204347", "https://data.delijn.be/stops/205702"], ["https://data.delijn.be/stops/304582", "https://data.delijn.be/stops/307573"], ["https://data.delijn.be/stops/402854", "https://data.delijn.be/stops/408970"], ["https://data.delijn.be/stops/301818", "https://data.delijn.be/stops/307889"], ["https://data.delijn.be/stops/102708", "https://data.delijn.be/stops/108035"], ["https://data.delijn.be/stops/504881", "https://data.delijn.be/stops/507187"], ["https://data.delijn.be/stops/400553", "https://data.delijn.be/stops/403625"], ["https://data.delijn.be/stops/504327", "https://data.delijn.be/stops/505992"], ["https://data.delijn.be/stops/103273", "https://data.delijn.be/stops/109990"], ["https://data.delijn.be/stops/104965", "https://data.delijn.be/stops/104996"], ["https://data.delijn.be/stops/307612", "https://data.delijn.be/stops/307907"], ["https://data.delijn.be/stops/401314", "https://data.delijn.be/stops/401315"], ["https://data.delijn.be/stops/404217", "https://data.delijn.be/stops/404218"], ["https://data.delijn.be/stops/200249", "https://data.delijn.be/stops/201249"], ["https://data.delijn.be/stops/203875", "https://data.delijn.be/stops/206968"], ["https://data.delijn.be/stops/403518", "https://data.delijn.be/stops/403550"], ["https://data.delijn.be/stops/102911", "https://data.delijn.be/stops/107665"], ["https://data.delijn.be/stops/201706", "https://data.delijn.be/stops/203443"], ["https://data.delijn.be/stops/502090", "https://data.delijn.be/stops/502107"], ["https://data.delijn.be/stops/203970", "https://data.delijn.be/stops/203971"], ["https://data.delijn.be/stops/406010", "https://data.delijn.be/stops/406129"], ["https://data.delijn.be/stops/202402", "https://data.delijn.be/stops/202403"], ["https://data.delijn.be/stops/200782", "https://data.delijn.be/stops/201034"], ["https://data.delijn.be/stops/108861", "https://data.delijn.be/stops/108862"], ["https://data.delijn.be/stops/402114", "https://data.delijn.be/stops/402125"], ["https://data.delijn.be/stops/300490", "https://data.delijn.be/stops/302867"], ["https://data.delijn.be/stops/404067", "https://data.delijn.be/stops/405455"], ["https://data.delijn.be/stops/302011", "https://data.delijn.be/stops/302016"], ["https://data.delijn.be/stops/108279", "https://data.delijn.be/stops/109341"], ["https://data.delijn.be/stops/200710", "https://data.delijn.be/stops/200713"], ["https://data.delijn.be/stops/504500", "https://data.delijn.be/stops/505167"], ["https://data.delijn.be/stops/300549", "https://data.delijn.be/stops/307859"], ["https://data.delijn.be/stops/207007", "https://data.delijn.be/stops/207079"], ["https://data.delijn.be/stops/505217", "https://data.delijn.be/stops/505288"], ["https://data.delijn.be/stops/302776", "https://data.delijn.be/stops/302777"], ["https://data.delijn.be/stops/305628", "https://data.delijn.be/stops/305640"], ["https://data.delijn.be/stops/505022", "https://data.delijn.be/stops/507548"], ["https://data.delijn.be/stops/505373", "https://data.delijn.be/stops/508841"], ["https://data.delijn.be/stops/504724", "https://data.delijn.be/stops/508655"], ["https://data.delijn.be/stops/501684", "https://data.delijn.be/stops/506177"], ["https://data.delijn.be/stops/304525", "https://data.delijn.be/stops/304526"], ["https://data.delijn.be/stops/302351", "https://data.delijn.be/stops/302360"], ["https://data.delijn.be/stops/207789", "https://data.delijn.be/stops/208407"], ["https://data.delijn.be/stops/407814", "https://data.delijn.be/stops/407831"], ["https://data.delijn.be/stops/204785", "https://data.delijn.be/stops/205591"], ["https://data.delijn.be/stops/107236", "https://data.delijn.be/stops/107237"], ["https://data.delijn.be/stops/504345", "https://data.delijn.be/stops/509345"], ["https://data.delijn.be/stops/503608", "https://data.delijn.be/stops/508789"], ["https://data.delijn.be/stops/303580", "https://data.delijn.be/stops/303585"], ["https://data.delijn.be/stops/200197", "https://data.delijn.be/stops/202480"], ["https://data.delijn.be/stops/206168", "https://data.delijn.be/stops/206327"], ["https://data.delijn.be/stops/400091", "https://data.delijn.be/stops/400139"], ["https://data.delijn.be/stops/105294", "https://data.delijn.be/stops/105387"], ["https://data.delijn.be/stops/204030", "https://data.delijn.be/stops/205034"], ["https://data.delijn.be/stops/206335", "https://data.delijn.be/stops/206365"], ["https://data.delijn.be/stops/404324", "https://data.delijn.be/stops/404362"], ["https://data.delijn.be/stops/502378", "https://data.delijn.be/stops/502407"], ["https://data.delijn.be/stops/200768", "https://data.delijn.be/stops/208249"], ["https://data.delijn.be/stops/402143", "https://data.delijn.be/stops/402436"], ["https://data.delijn.be/stops/105703", "https://data.delijn.be/stops/105706"], ["https://data.delijn.be/stops/405519", "https://data.delijn.be/stops/405521"], ["https://data.delijn.be/stops/410285", "https://data.delijn.be/stops/410286"], ["https://data.delijn.be/stops/201776", "https://data.delijn.be/stops/208287"], ["https://data.delijn.be/stops/505238", "https://data.delijn.be/stops/505333"], ["https://data.delijn.be/stops/501662", "https://data.delijn.be/stops/506732"], ["https://data.delijn.be/stops/101442", "https://data.delijn.be/stops/108605"], ["https://data.delijn.be/stops/304140", "https://data.delijn.be/stops/304141"], ["https://data.delijn.be/stops/206491", "https://data.delijn.be/stops/207518"], ["https://data.delijn.be/stops/204707", "https://data.delijn.be/stops/205348"], ["https://data.delijn.be/stops/102387", "https://data.delijn.be/stops/107813"], ["https://data.delijn.be/stops/202064", "https://data.delijn.be/stops/203063"], ["https://data.delijn.be/stops/302345", "https://data.delijn.be/stops/302353"], ["https://data.delijn.be/stops/207771", "https://data.delijn.be/stops/208374"], ["https://data.delijn.be/stops/104368", "https://data.delijn.be/stops/205604"], ["https://data.delijn.be/stops/208489", "https://data.delijn.be/stops/209046"], ["https://data.delijn.be/stops/208285", "https://data.delijn.be/stops/209285"], ["https://data.delijn.be/stops/109932", "https://data.delijn.be/stops/109951"], ["https://data.delijn.be/stops/206967", "https://data.delijn.be/stops/207254"], ["https://data.delijn.be/stops/502335", "https://data.delijn.be/stops/507335"], ["https://data.delijn.be/stops/300400", "https://data.delijn.be/stops/300405"], ["https://data.delijn.be/stops/403430", "https://data.delijn.be/stops/403433"], ["https://data.delijn.be/stops/300061", "https://data.delijn.be/stops/300396"], ["https://data.delijn.be/stops/208360", "https://data.delijn.be/stops/209338"], ["https://data.delijn.be/stops/204165", "https://data.delijn.be/stops/204589"], ["https://data.delijn.be/stops/402453", "https://data.delijn.be/stops/407495"], ["https://data.delijn.be/stops/301986", "https://data.delijn.be/stops/303092"], ["https://data.delijn.be/stops/202973", "https://data.delijn.be/stops/204795"], ["https://data.delijn.be/stops/207178", "https://data.delijn.be/stops/303858"], ["https://data.delijn.be/stops/504253", "https://data.delijn.be/stops/505985"], ["https://data.delijn.be/stops/305691", "https://data.delijn.be/stops/305703"], ["https://data.delijn.be/stops/202159", "https://data.delijn.be/stops/202244"], ["https://data.delijn.be/stops/204929", "https://data.delijn.be/stops/208294"], ["https://data.delijn.be/stops/402242", "https://data.delijn.be/stops/402441"], ["https://data.delijn.be/stops/301454", "https://data.delijn.be/stops/305665"], ["https://data.delijn.be/stops/203218", "https://data.delijn.be/stops/203219"], ["https://data.delijn.be/stops/404550", "https://data.delijn.be/stops/409258"], ["https://data.delijn.be/stops/302515", "https://data.delijn.be/stops/302516"], ["https://data.delijn.be/stops/504215", "https://data.delijn.be/stops/509215"], ["https://data.delijn.be/stops/306775", "https://data.delijn.be/stops/306778"], ["https://data.delijn.be/stops/401402", "https://data.delijn.be/stops/300919"], ["https://data.delijn.be/stops/202428", "https://data.delijn.be/stops/203428"], ["https://data.delijn.be/stops/106939", "https://data.delijn.be/stops/109733"], ["https://data.delijn.be/stops/300808", "https://data.delijn.be/stops/301980"], ["https://data.delijn.be/stops/200246", "https://data.delijn.be/stops/202009"], ["https://data.delijn.be/stops/402178", "https://data.delijn.be/stops/402196"], ["https://data.delijn.be/stops/304609", "https://data.delijn.be/stops/304648"], ["https://data.delijn.be/stops/301968", "https://data.delijn.be/stops/301991"], ["https://data.delijn.be/stops/101605", "https://data.delijn.be/stops/105730"], ["https://data.delijn.be/stops/506169", "https://data.delijn.be/stops/506177"], ["https://data.delijn.be/stops/302259", "https://data.delijn.be/stops/302260"], ["https://data.delijn.be/stops/308172", "https://data.delijn.be/stops/308173"], ["https://data.delijn.be/stops/202413", "https://data.delijn.be/stops/203422"], ["https://data.delijn.be/stops/403903", "https://data.delijn.be/stops/403911"], ["https://data.delijn.be/stops/300217", "https://data.delijn.be/stops/300220"], ["https://data.delijn.be/stops/107165", "https://data.delijn.be/stops/107166"], ["https://data.delijn.be/stops/504830", "https://data.delijn.be/stops/505778"], ["https://data.delijn.be/stops/103033", "https://data.delijn.be/stops/106748"], ["https://data.delijn.be/stops/200552", "https://data.delijn.be/stops/211094"], ["https://data.delijn.be/stops/504079", "https://data.delijn.be/stops/504570"], ["https://data.delijn.be/stops/200452", "https://data.delijn.be/stops/201286"], ["https://data.delijn.be/stops/410224", "https://data.delijn.be/stops/410226"], ["https://data.delijn.be/stops/301434", "https://data.delijn.be/stops/307322"], ["https://data.delijn.be/stops/202583", "https://data.delijn.be/stops/203583"], ["https://data.delijn.be/stops/206307", "https://data.delijn.be/stops/207306"], ["https://data.delijn.be/stops/406012", "https://data.delijn.be/stops/407146"], ["https://data.delijn.be/stops/101220", "https://data.delijn.be/stops/107944"], ["https://data.delijn.be/stops/203243", "https://data.delijn.be/stops/203489"], ["https://data.delijn.be/stops/304416", "https://data.delijn.be/stops/306876"], ["https://data.delijn.be/stops/400763", "https://data.delijn.be/stops/400764"], ["https://data.delijn.be/stops/301181", "https://data.delijn.be/stops/301266"], ["https://data.delijn.be/stops/208102", "https://data.delijn.be/stops/219005"], ["https://data.delijn.be/stops/406424", "https://data.delijn.be/stops/406443"], ["https://data.delijn.be/stops/503569", "https://data.delijn.be/stops/503572"], ["https://data.delijn.be/stops/503897", "https://data.delijn.be/stops/504942"], ["https://data.delijn.be/stops/403103", "https://data.delijn.be/stops/403119"], ["https://data.delijn.be/stops/505260", "https://data.delijn.be/stops/505261"], ["https://data.delijn.be/stops/200397", "https://data.delijn.be/stops/208333"], ["https://data.delijn.be/stops/401438", "https://data.delijn.be/stops/401596"], ["https://data.delijn.be/stops/300274", "https://data.delijn.be/stops/300275"], ["https://data.delijn.be/stops/204746", "https://data.delijn.be/stops/205746"], ["https://data.delijn.be/stops/407049", "https://data.delijn.be/stops/407065"], ["https://data.delijn.be/stops/204117", "https://data.delijn.be/stops/204118"], ["https://data.delijn.be/stops/201857", "https://data.delijn.be/stops/203396"], ["https://data.delijn.be/stops/502665", "https://data.delijn.be/stops/505577"], ["https://data.delijn.be/stops/409018", "https://data.delijn.be/stops/409028"], ["https://data.delijn.be/stops/403313", "https://data.delijn.be/stops/403344"], ["https://data.delijn.be/stops/305183", "https://data.delijn.be/stops/307101"], ["https://data.delijn.be/stops/204180", "https://data.delijn.be/stops/205905"], ["https://data.delijn.be/stops/503055", "https://data.delijn.be/stops/503346"], ["https://data.delijn.be/stops/304649", "https://data.delijn.be/stops/304650"], ["https://data.delijn.be/stops/300552", "https://data.delijn.be/stops/307859"], ["https://data.delijn.be/stops/103486", "https://data.delijn.be/stops/103488"], ["https://data.delijn.be/stops/400238", "https://data.delijn.be/stops/409391"], ["https://data.delijn.be/stops/504867", "https://data.delijn.be/stops/508588"], ["https://data.delijn.be/stops/200780", "https://data.delijn.be/stops/200782"], ["https://data.delijn.be/stops/302712", "https://data.delijn.be/stops/308833"], ["https://data.delijn.be/stops/206904", "https://data.delijn.be/stops/207215"], ["https://data.delijn.be/stops/405667", "https://data.delijn.be/stops/409392"], ["https://data.delijn.be/stops/105193", "https://data.delijn.be/stops/105196"], ["https://data.delijn.be/stops/206515", "https://data.delijn.be/stops/207515"], ["https://data.delijn.be/stops/501235", "https://data.delijn.be/stops/506236"], ["https://data.delijn.be/stops/103914", "https://data.delijn.be/stops/106596"], ["https://data.delijn.be/stops/501595", "https://data.delijn.be/stops/501641"], ["https://data.delijn.be/stops/102251", "https://data.delijn.be/stops/109031"], ["https://data.delijn.be/stops/204422", "https://data.delijn.be/stops/205766"], ["https://data.delijn.be/stops/301246", "https://data.delijn.be/stops/306327"], ["https://data.delijn.be/stops/407345", "https://data.delijn.be/stops/409965"], ["https://data.delijn.be/stops/207238", "https://data.delijn.be/stops/207802"], ["https://data.delijn.be/stops/302281", "https://data.delijn.be/stops/306791"], ["https://data.delijn.be/stops/106434", "https://data.delijn.be/stops/106436"], ["https://data.delijn.be/stops/304485", "https://data.delijn.be/stops/307566"], ["https://data.delijn.be/stops/205467", "https://data.delijn.be/stops/205468"], ["https://data.delijn.be/stops/501379", "https://data.delijn.be/stops/501382"], ["https://data.delijn.be/stops/502282", "https://data.delijn.be/stops/507282"], ["https://data.delijn.be/stops/104677", "https://data.delijn.be/stops/109600"], ["https://data.delijn.be/stops/301635", "https://data.delijn.be/stops/307766"], ["https://data.delijn.be/stops/206636", "https://data.delijn.be/stops/207891"], ["https://data.delijn.be/stops/203014", "https://data.delijn.be/stops/203015"], ["https://data.delijn.be/stops/301829", "https://data.delijn.be/stops/301834"], ["https://data.delijn.be/stops/404555", "https://data.delijn.be/stops/404575"], ["https://data.delijn.be/stops/405414", "https://data.delijn.be/stops/302835"], ["https://data.delijn.be/stops/107858", "https://data.delijn.be/stops/208900"], ["https://data.delijn.be/stops/504626", "https://data.delijn.be/stops/509626"], ["https://data.delijn.be/stops/103725", "https://data.delijn.be/stops/103965"], ["https://data.delijn.be/stops/207981", "https://data.delijn.be/stops/217020"], ["https://data.delijn.be/stops/105353", "https://data.delijn.be/stops/109971"], ["https://data.delijn.be/stops/204026", "https://data.delijn.be/stops/205027"], ["https://data.delijn.be/stops/105079", "https://data.delijn.be/stops/105088"], ["https://data.delijn.be/stops/106649", "https://data.delijn.be/stops/106653"], ["https://data.delijn.be/stops/206742", "https://data.delijn.be/stops/207984"], ["https://data.delijn.be/stops/103661", "https://data.delijn.be/stops/106335"], ["https://data.delijn.be/stops/410276", "https://data.delijn.be/stops/410277"], ["https://data.delijn.be/stops/300551", "https://data.delijn.be/stops/300618"], ["https://data.delijn.be/stops/301678", "https://data.delijn.be/stops/301683"], ["https://data.delijn.be/stops/106898", "https://data.delijn.be/stops/107213"], ["https://data.delijn.be/stops/202856", "https://data.delijn.be/stops/203855"], ["https://data.delijn.be/stops/101450", "https://data.delijn.be/stops/103850"], ["https://data.delijn.be/stops/200617", "https://data.delijn.be/stops/202920"], ["https://data.delijn.be/stops/200515", "https://data.delijn.be/stops/201174"], ["https://data.delijn.be/stops/408324", "https://data.delijn.be/stops/410160"], ["https://data.delijn.be/stops/208718", "https://data.delijn.be/stops/208719"], ["https://data.delijn.be/stops/407705", "https://data.delijn.be/stops/407709"], ["https://data.delijn.be/stops/502542", "https://data.delijn.be/stops/502545"], ["https://data.delijn.be/stops/506411", "https://data.delijn.be/stops/506475"], ["https://data.delijn.be/stops/305269", "https://data.delijn.be/stops/305319"], ["https://data.delijn.be/stops/200919", "https://data.delijn.be/stops/202047"], ["https://data.delijn.be/stops/300602", "https://data.delijn.be/stops/306800"], ["https://data.delijn.be/stops/107488", "https://data.delijn.be/stops/107489"], ["https://data.delijn.be/stops/105774", "https://data.delijn.be/stops/108013"], ["https://data.delijn.be/stops/505271", "https://data.delijn.be/stops/507715"], ["https://data.delijn.be/stops/103993", "https://data.delijn.be/stops/105393"], ["https://data.delijn.be/stops/504609", "https://data.delijn.be/stops/509613"], ["https://data.delijn.be/stops/503966", "https://data.delijn.be/stops/505548"], ["https://data.delijn.be/stops/104239", "https://data.delijn.be/stops/106785"], ["https://data.delijn.be/stops/400797", "https://data.delijn.be/stops/409609"], ["https://data.delijn.be/stops/205508", "https://data.delijn.be/stops/205822"], ["https://data.delijn.be/stops/102050", "https://data.delijn.be/stops/104175"], ["https://data.delijn.be/stops/300296", "https://data.delijn.be/stops/307478"], ["https://data.delijn.be/stops/301858", "https://data.delijn.be/stops/301862"], ["https://data.delijn.be/stops/400863", "https://data.delijn.be/stops/400865"], ["https://data.delijn.be/stops/105374", "https://data.delijn.be/stops/107503"], ["https://data.delijn.be/stops/502111", "https://data.delijn.be/stops/507120"], ["https://data.delijn.be/stops/503150", "https://data.delijn.be/stops/505200"], ["https://data.delijn.be/stops/106078", "https://data.delijn.be/stops/108732"], ["https://data.delijn.be/stops/201695", "https://data.delijn.be/stops/202988"], ["https://data.delijn.be/stops/509446", "https://data.delijn.be/stops/509447"], ["https://data.delijn.be/stops/500137", "https://data.delijn.be/stops/500138"], ["https://data.delijn.be/stops/106588", "https://data.delijn.be/stops/107276"], ["https://data.delijn.be/stops/307316", "https://data.delijn.be/stops/307319"], ["https://data.delijn.be/stops/504541", "https://data.delijn.be/stops/509569"], ["https://data.delijn.be/stops/404902", "https://data.delijn.be/stops/404985"], ["https://data.delijn.be/stops/408636", "https://data.delijn.be/stops/408637"], ["https://data.delijn.be/stops/300388", "https://data.delijn.be/stops/307491"], ["https://data.delijn.be/stops/202090", "https://data.delijn.be/stops/203090"], ["https://data.delijn.be/stops/107516", "https://data.delijn.be/stops/107517"], ["https://data.delijn.be/stops/308766", "https://data.delijn.be/stops/308767"], ["https://data.delijn.be/stops/409505", "https://data.delijn.be/stops/409529"], ["https://data.delijn.be/stops/505241", "https://data.delijn.be/stops/505292"], ["https://data.delijn.be/stops/104105", "https://data.delijn.be/stops/105065"], ["https://data.delijn.be/stops/501334", "https://data.delijn.be/stops/501357"], ["https://data.delijn.be/stops/206477", "https://data.delijn.be/stops/207477"], ["https://data.delijn.be/stops/204433", "https://data.delijn.be/stops/205431"], ["https://data.delijn.be/stops/300027", "https://data.delijn.be/stops/300052"], ["https://data.delijn.be/stops/508194", "https://data.delijn.be/stops/508198"], ["https://data.delijn.be/stops/200113", "https://data.delijn.be/stops/201072"], ["https://data.delijn.be/stops/505148", "https://data.delijn.be/stops/505244"], ["https://data.delijn.be/stops/402765", "https://data.delijn.be/stops/402790"], ["https://data.delijn.be/stops/206705", "https://data.delijn.be/stops/207990"], ["https://data.delijn.be/stops/503393", "https://data.delijn.be/stops/503419"], ["https://data.delijn.be/stops/506629", "https://data.delijn.be/stops/508131"], ["https://data.delijn.be/stops/200537", "https://data.delijn.be/stops/201161"], ["https://data.delijn.be/stops/208170", "https://data.delijn.be/stops/209170"], ["https://data.delijn.be/stops/204769", "https://data.delijn.be/stops/205393"], ["https://data.delijn.be/stops/408684", "https://data.delijn.be/stops/408685"], ["https://data.delijn.be/stops/203817", "https://data.delijn.be/stops/203818"], ["https://data.delijn.be/stops/504686", "https://data.delijn.be/stops/504762"], ["https://data.delijn.be/stops/106627", "https://data.delijn.be/stops/106670"], ["https://data.delijn.be/stops/102277", "https://data.delijn.be/stops/108032"], ["https://data.delijn.be/stops/306023", "https://data.delijn.be/stops/307681"], ["https://data.delijn.be/stops/301415", "https://data.delijn.be/stops/301417"], ["https://data.delijn.be/stops/402323", "https://data.delijn.be/stops/408363"], ["https://data.delijn.be/stops/102430", "https://data.delijn.be/stops/104175"], ["https://data.delijn.be/stops/102513", "https://data.delijn.be/stops/406464"], ["https://data.delijn.be/stops/206692", "https://data.delijn.be/stops/207692"], ["https://data.delijn.be/stops/101182", "https://data.delijn.be/stops/107869"], ["https://data.delijn.be/stops/207853", "https://data.delijn.be/stops/209623"], ["https://data.delijn.be/stops/302085", "https://data.delijn.be/stops/302251"], ["https://data.delijn.be/stops/302204", "https://data.delijn.be/stops/302205"], ["https://data.delijn.be/stops/301961", "https://data.delijn.be/stops/301963"], ["https://data.delijn.be/stops/102088", "https://data.delijn.be/stops/106808"], ["https://data.delijn.be/stops/201004", "https://data.delijn.be/stops/201006"], ["https://data.delijn.be/stops/400120", "https://data.delijn.be/stops/400162"], ["https://data.delijn.be/stops/404252", "https://data.delijn.be/stops/404369"], ["https://data.delijn.be/stops/301906", "https://data.delijn.be/stops/301909"], ["https://data.delijn.be/stops/106009", "https://data.delijn.be/stops/106011"], ["https://data.delijn.be/stops/306864", "https://data.delijn.be/stops/307437"], ["https://data.delijn.be/stops/507250", "https://data.delijn.be/stops/509207"], ["https://data.delijn.be/stops/509029", "https://data.delijn.be/stops/509487"], ["https://data.delijn.be/stops/301645", "https://data.delijn.be/stops/301661"], ["https://data.delijn.be/stops/206601", "https://data.delijn.be/stops/207601"], ["https://data.delijn.be/stops/308501", "https://data.delijn.be/stops/308521"], ["https://data.delijn.be/stops/404762", "https://data.delijn.be/stops/404819"], ["https://data.delijn.be/stops/402322", "https://data.delijn.be/stops/407955"], ["https://data.delijn.be/stops/404718", "https://data.delijn.be/stops/404769"], ["https://data.delijn.be/stops/207443", "https://data.delijn.be/stops/209686"], ["https://data.delijn.be/stops/401728", "https://data.delijn.be/stops/406348"], ["https://data.delijn.be/stops/403632", "https://data.delijn.be/stops/403633"], ["https://data.delijn.be/stops/300681", "https://data.delijn.be/stops/305964"], ["https://data.delijn.be/stops/206096", "https://data.delijn.be/stops/207908"], ["https://data.delijn.be/stops/105888", "https://data.delijn.be/stops/109745"], ["https://data.delijn.be/stops/403305", "https://data.delijn.be/stops/403441"], ["https://data.delijn.be/stops/405257", "https://data.delijn.be/stops/405261"], ["https://data.delijn.be/stops/305063", "https://data.delijn.be/stops/305064"], ["https://data.delijn.be/stops/209038", "https://data.delijn.be/stops/209039"], ["https://data.delijn.be/stops/505230", "https://data.delijn.be/stops/508505"], ["https://data.delijn.be/stops/405782", "https://data.delijn.be/stops/409414"], ["https://data.delijn.be/stops/207189", "https://data.delijn.be/stops/207193"], ["https://data.delijn.be/stops/407761", "https://data.delijn.be/stops/409745"], ["https://data.delijn.be/stops/403955", "https://data.delijn.be/stops/403991"], ["https://data.delijn.be/stops/406218", "https://data.delijn.be/stops/406223"], ["https://data.delijn.be/stops/308721", "https://data.delijn.be/stops/308723"], ["https://data.delijn.be/stops/503542", "https://data.delijn.be/stops/508542"], ["https://data.delijn.be/stops/407647", "https://data.delijn.be/stops/407677"], ["https://data.delijn.be/stops/502497", "https://data.delijn.be/stops/504882"], ["https://data.delijn.be/stops/302198", "https://data.delijn.be/stops/308111"], ["https://data.delijn.be/stops/504517", "https://data.delijn.be/stops/504518"], ["https://data.delijn.be/stops/406946", "https://data.delijn.be/stops/406947"], ["https://data.delijn.be/stops/200479", "https://data.delijn.be/stops/201479"], ["https://data.delijn.be/stops/200846", "https://data.delijn.be/stops/202330"], ["https://data.delijn.be/stops/305254", "https://data.delijn.be/stops/305260"], ["https://data.delijn.be/stops/401648", "https://data.delijn.be/stops/408712"], ["https://data.delijn.be/stops/302128", "https://data.delijn.be/stops/302137"], ["https://data.delijn.be/stops/301692", "https://data.delijn.be/stops/301789"], ["https://data.delijn.be/stops/300242", "https://data.delijn.be/stops/304645"], ["https://data.delijn.be/stops/207289", "https://data.delijn.be/stops/207290"], ["https://data.delijn.be/stops/301582", "https://data.delijn.be/stops/303413"], ["https://data.delijn.be/stops/401479", "https://data.delijn.be/stops/401584"], ["https://data.delijn.be/stops/503436", "https://data.delijn.be/stops/508346"], ["https://data.delijn.be/stops/200208", "https://data.delijn.be/stops/201044"], ["https://data.delijn.be/stops/401287", "https://data.delijn.be/stops/401290"], ["https://data.delijn.be/stops/403781", "https://data.delijn.be/stops/407232"], ["https://data.delijn.be/stops/410193", "https://data.delijn.be/stops/410194"], ["https://data.delijn.be/stops/305897", "https://data.delijn.be/stops/305898"], ["https://data.delijn.be/stops/202152", "https://data.delijn.be/stops/203152"], ["https://data.delijn.be/stops/400491", "https://data.delijn.be/stops/406564"], ["https://data.delijn.be/stops/501741", "https://data.delijn.be/stops/504506"], ["https://data.delijn.be/stops/200569", "https://data.delijn.be/stops/201422"], ["https://data.delijn.be/stops/307377", "https://data.delijn.be/stops/307378"], ["https://data.delijn.be/stops/208878", "https://data.delijn.be/stops/218015"], ["https://data.delijn.be/stops/106466", "https://data.delijn.be/stops/106467"], ["https://data.delijn.be/stops/206285", "https://data.delijn.be/stops/207286"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/308823"], ["https://data.delijn.be/stops/504549", "https://data.delijn.be/stops/509550"], ["https://data.delijn.be/stops/402369", "https://data.delijn.be/stops/405574"], ["https://data.delijn.be/stops/401769", "https://data.delijn.be/stops/401834"], ["https://data.delijn.be/stops/500953", "https://data.delijn.be/stops/503623"], ["https://data.delijn.be/stops/102842", "https://data.delijn.be/stops/103046"], ["https://data.delijn.be/stops/503713", "https://data.delijn.be/stops/508713"], ["https://data.delijn.be/stops/503834", "https://data.delijn.be/stops/508141"], ["https://data.delijn.be/stops/404659", "https://data.delijn.be/stops/410132"], ["https://data.delijn.be/stops/206598", "https://data.delijn.be/stops/207597"], ["https://data.delijn.be/stops/205124", "https://data.delijn.be/stops/214004"], ["https://data.delijn.be/stops/102411", "https://data.delijn.be/stops/105440"], ["https://data.delijn.be/stops/403030", "https://data.delijn.be/stops/403057"], ["https://data.delijn.be/stops/406033", "https://data.delijn.be/stops/406140"], ["https://data.delijn.be/stops/304745", "https://data.delijn.be/stops/304778"], ["https://data.delijn.be/stops/408604", "https://data.delijn.be/stops/408772"], ["https://data.delijn.be/stops/502246", "https://data.delijn.be/stops/507246"], ["https://data.delijn.be/stops/102319", "https://data.delijn.be/stops/106314"], ["https://data.delijn.be/stops/300877", "https://data.delijn.be/stops/300885"], ["https://data.delijn.be/stops/504158", "https://data.delijn.be/stops/509170"], ["https://data.delijn.be/stops/200356", "https://data.delijn.be/stops/200357"], ["https://data.delijn.be/stops/107519", "https://data.delijn.be/stops/107521"], ["https://data.delijn.be/stops/204175", "https://data.delijn.be/stops/204176"], ["https://data.delijn.be/stops/102622", "https://data.delijn.be/stops/108209"], ["https://data.delijn.be/stops/404592", "https://data.delijn.be/stops/404607"], ["https://data.delijn.be/stops/206762", "https://data.delijn.be/stops/209617"], ["https://data.delijn.be/stops/108712", "https://data.delijn.be/stops/108713"], ["https://data.delijn.be/stops/504083", "https://data.delijn.be/stops/509083"], ["https://data.delijn.be/stops/504399", "https://data.delijn.be/stops/504414"], ["https://data.delijn.be/stops/403124", "https://data.delijn.be/stops/403235"], ["https://data.delijn.be/stops/201913", "https://data.delijn.be/stops/202510"], ["https://data.delijn.be/stops/207069", "https://data.delijn.be/stops/207903"], ["https://data.delijn.be/stops/102221", "https://data.delijn.be/stops/105542"], ["https://data.delijn.be/stops/104721", "https://data.delijn.be/stops/105185"], ["https://data.delijn.be/stops/208805", "https://data.delijn.be/stops/208954"], ["https://data.delijn.be/stops/502107", "https://data.delijn.be/stops/507090"], ["https://data.delijn.be/stops/504642", "https://data.delijn.be/stops/509642"], ["https://data.delijn.be/stops/103244", "https://data.delijn.be/stops/104605"], ["https://data.delijn.be/stops/404418", "https://data.delijn.be/stops/404475"], ["https://data.delijn.be/stops/208094", "https://data.delijn.be/stops/209632"], ["https://data.delijn.be/stops/200805", "https://data.delijn.be/stops/210056"], ["https://data.delijn.be/stops/202868", "https://data.delijn.be/stops/202869"], ["https://data.delijn.be/stops/102198", "https://data.delijn.be/stops/102566"], ["https://data.delijn.be/stops/203488", "https://data.delijn.be/stops/203489"], ["https://data.delijn.be/stops/300346", "https://data.delijn.be/stops/304861"], ["https://data.delijn.be/stops/207159", "https://data.delijn.be/stops/207161"], ["https://data.delijn.be/stops/400536", "https://data.delijn.be/stops/403584"], ["https://data.delijn.be/stops/200617", "https://data.delijn.be/stops/201617"], ["https://data.delijn.be/stops/103203", "https://data.delijn.be/stops/107186"], ["https://data.delijn.be/stops/102248", "https://data.delijn.be/stops/105801"], ["https://data.delijn.be/stops/402778", "https://data.delijn.be/stops/406921"], ["https://data.delijn.be/stops/207091", "https://data.delijn.be/stops/207093"], ["https://data.delijn.be/stops/503166", "https://data.delijn.be/stops/508159"], ["https://data.delijn.be/stops/503454", "https://data.delijn.be/stops/503986"], ["https://data.delijn.be/stops/202648", "https://data.delijn.be/stops/203648"], ["https://data.delijn.be/stops/107804", "https://data.delijn.be/stops/107806"], ["https://data.delijn.be/stops/302428", "https://data.delijn.be/stops/308095"], ["https://data.delijn.be/stops/105123", "https://data.delijn.be/stops/105128"], ["https://data.delijn.be/stops/102184", "https://data.delijn.be/stops/104593"], ["https://data.delijn.be/stops/208764", "https://data.delijn.be/stops/218014"], ["https://data.delijn.be/stops/300395", "https://data.delijn.be/stops/307279"], ["https://data.delijn.be/stops/204375", "https://data.delijn.be/stops/204765"], ["https://data.delijn.be/stops/305654", "https://data.delijn.be/stops/305662"], ["https://data.delijn.be/stops/102340", "https://data.delijn.be/stops/102345"], ["https://data.delijn.be/stops/102131", "https://data.delijn.be/stops/105708"], ["https://data.delijn.be/stops/208535", "https://data.delijn.be/stops/209536"], ["https://data.delijn.be/stops/501633", "https://data.delijn.be/stops/506231"], ["https://data.delijn.be/stops/505044", "https://data.delijn.be/stops/506227"], ["https://data.delijn.be/stops/200224", "https://data.delijn.be/stops/201225"], ["https://data.delijn.be/stops/107146", "https://data.delijn.be/stops/107148"], ["https://data.delijn.be/stops/501318", "https://data.delijn.be/stops/501523"], ["https://data.delijn.be/stops/407751", "https://data.delijn.be/stops/409794"], ["https://data.delijn.be/stops/400158", "https://data.delijn.be/stops/409067"], ["https://data.delijn.be/stops/109811", "https://data.delijn.be/stops/109812"], ["https://data.delijn.be/stops/505600", "https://data.delijn.be/stops/505601"], ["https://data.delijn.be/stops/506054", "https://data.delijn.be/stops/507646"], ["https://data.delijn.be/stops/304774", "https://data.delijn.be/stops/304775"], ["https://data.delijn.be/stops/505408", "https://data.delijn.be/stops/505409"], ["https://data.delijn.be/stops/102199", "https://data.delijn.be/stops/103314"], ["https://data.delijn.be/stops/202672", "https://data.delijn.be/stops/203727"], ["https://data.delijn.be/stops/401759", "https://data.delijn.be/stops/409406"], ["https://data.delijn.be/stops/201414", "https://data.delijn.be/stops/203359"], ["https://data.delijn.be/stops/307780", "https://data.delijn.be/stops/308859"], ["https://data.delijn.be/stops/200920", "https://data.delijn.be/stops/203691"], ["https://data.delijn.be/stops/505567", "https://data.delijn.be/stops/508751"], ["https://data.delijn.be/stops/300320", "https://data.delijn.be/stops/300321"], ["https://data.delijn.be/stops/302389", "https://data.delijn.be/stops/306183"], ["https://data.delijn.be/stops/401603", "https://data.delijn.be/stops/409755"], ["https://data.delijn.be/stops/216016", "https://data.delijn.be/stops/306078"], ["https://data.delijn.be/stops/504061", "https://data.delijn.be/stops/509061"], ["https://data.delijn.be/stops/505672", "https://data.delijn.be/stops/507355"], ["https://data.delijn.be/stops/200752", "https://data.delijn.be/stops/200768"], ["https://data.delijn.be/stops/501520", "https://data.delijn.be/stops/506301"], ["https://data.delijn.be/stops/401964", "https://data.delijn.be/stops/401987"], ["https://data.delijn.be/stops/200464", "https://data.delijn.be/stops/200663"], ["https://data.delijn.be/stops/402936", "https://data.delijn.be/stops/403973"], ["https://data.delijn.be/stops/109498", "https://data.delijn.be/stops/305632"], ["https://data.delijn.be/stops/107499", "https://data.delijn.be/stops/107748"], ["https://data.delijn.be/stops/505171", "https://data.delijn.be/stops/507353"], ["https://data.delijn.be/stops/208276", "https://data.delijn.be/stops/209276"], ["https://data.delijn.be/stops/204319", "https://data.delijn.be/stops/204362"], ["https://data.delijn.be/stops/107565", "https://data.delijn.be/stops/108070"], ["https://data.delijn.be/stops/207510", "https://data.delijn.be/stops/209666"], ["https://data.delijn.be/stops/308204", "https://data.delijn.be/stops/308226"], ["https://data.delijn.be/stops/305123", "https://data.delijn.be/stops/305138"], ["https://data.delijn.be/stops/406535", "https://data.delijn.be/stops/410335"], ["https://data.delijn.be/stops/103160", "https://data.delijn.be/stops/109739"], ["https://data.delijn.be/stops/402773", "https://data.delijn.be/stops/408275"], ["https://data.delijn.be/stops/507192", "https://data.delijn.be/stops/507939"], ["https://data.delijn.be/stops/300623", "https://data.delijn.be/stops/300625"], ["https://data.delijn.be/stops/403545", "https://data.delijn.be/stops/405643"], ["https://data.delijn.be/stops/102236", "https://data.delijn.be/stops/104287"], ["https://data.delijn.be/stops/104988", "https://data.delijn.be/stops/106295"], ["https://data.delijn.be/stops/502004", "https://data.delijn.be/stops/507004"], ["https://data.delijn.be/stops/401192", "https://data.delijn.be/stops/401196"], ["https://data.delijn.be/stops/204770", "https://data.delijn.be/stops/205770"], ["https://data.delijn.be/stops/202696", "https://data.delijn.be/stops/203697"], ["https://data.delijn.be/stops/206939", "https://data.delijn.be/stops/207836"], ["https://data.delijn.be/stops/409674", "https://data.delijn.be/stops/409685"], ["https://data.delijn.be/stops/206030", "https://data.delijn.be/stops/207685"], ["https://data.delijn.be/stops/404416", "https://data.delijn.be/stops/404448"], ["https://data.delijn.be/stops/104691", "https://data.delijn.be/stops/104693"], ["https://data.delijn.be/stops/504636", "https://data.delijn.be/stops/509636"], ["https://data.delijn.be/stops/507396", "https://data.delijn.be/stops/507404"], ["https://data.delijn.be/stops/408858", "https://data.delijn.be/stops/408916"], ["https://data.delijn.be/stops/108280", "https://data.delijn.be/stops/108285"], ["https://data.delijn.be/stops/200836", "https://data.delijn.be/stops/200838"], ["https://data.delijn.be/stops/104562", "https://data.delijn.be/stops/104564"], ["https://data.delijn.be/stops/303699", "https://data.delijn.be/stops/303780"], ["https://data.delijn.be/stops/200827", "https://data.delijn.be/stops/200862"], ["https://data.delijn.be/stops/303626", "https://data.delijn.be/stops/307207"], ["https://data.delijn.be/stops/304429", "https://data.delijn.be/stops/304430"], ["https://data.delijn.be/stops/306903", "https://data.delijn.be/stops/308725"], ["https://data.delijn.be/stops/400419", "https://data.delijn.be/stops/400421"], ["https://data.delijn.be/stops/401514", "https://data.delijn.be/stops/404542"], ["https://data.delijn.be/stops/505550", "https://data.delijn.be/stops/505922"], ["https://data.delijn.be/stops/104602", "https://data.delijn.be/stops/108271"], ["https://data.delijn.be/stops/501210", "https://data.delijn.be/stops/505038"], ["https://data.delijn.be/stops/302220", "https://data.delijn.be/stops/302248"], ["https://data.delijn.be/stops/202169", "https://data.delijn.be/stops/204079"], ["https://data.delijn.be/stops/109075", "https://data.delijn.be/stops/109076"], ["https://data.delijn.be/stops/201717", "https://data.delijn.be/stops/203579"], ["https://data.delijn.be/stops/301705", "https://data.delijn.be/stops/306879"], ["https://data.delijn.be/stops/403517", "https://data.delijn.be/stops/403560"], ["https://data.delijn.be/stops/200130", "https://data.delijn.be/stops/208939"], ["https://data.delijn.be/stops/205499", "https://data.delijn.be/stops/205500"], ["https://data.delijn.be/stops/301539", "https://data.delijn.be/stops/301551"], ["https://data.delijn.be/stops/200213", "https://data.delijn.be/stops/201217"], ["https://data.delijn.be/stops/102585", "https://data.delijn.be/stops/102745"], ["https://data.delijn.be/stops/500556", "https://data.delijn.be/stops/504660"], ["https://data.delijn.be/stops/204735", "https://data.delijn.be/stops/205758"], ["https://data.delijn.be/stops/207541", "https://data.delijn.be/stops/216004"], ["https://data.delijn.be/stops/408495", "https://data.delijn.be/stops/408692"], ["https://data.delijn.be/stops/300177", "https://data.delijn.be/stops/300187"], ["https://data.delijn.be/stops/304057", "https://data.delijn.be/stops/304078"], ["https://data.delijn.be/stops/400234", "https://data.delijn.be/stops/410000"], ["https://data.delijn.be/stops/308478", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/302710", "https://data.delijn.be/stops/308861"], ["https://data.delijn.be/stops/200625", "https://data.delijn.be/stops/201624"], ["https://data.delijn.be/stops/102604", "https://data.delijn.be/stops/106119"], ["https://data.delijn.be/stops/301999", "https://data.delijn.be/stops/303616"], ["https://data.delijn.be/stops/206022", "https://data.delijn.be/stops/207022"], ["https://data.delijn.be/stops/501764", "https://data.delijn.be/stops/505740"], ["https://data.delijn.be/stops/503752", "https://data.delijn.be/stops/508752"], ["https://data.delijn.be/stops/101649", "https://data.delijn.be/stops/102763"], ["https://data.delijn.be/stops/402207", "https://data.delijn.be/stops/402368"], ["https://data.delijn.be/stops/304543", "https://data.delijn.be/stops/304547"], ["https://data.delijn.be/stops/106887", "https://data.delijn.be/stops/107223"], ["https://data.delijn.be/stops/507406", "https://data.delijn.be/stops/507621"], ["https://data.delijn.be/stops/102616", "https://data.delijn.be/stops/108208"], ["https://data.delijn.be/stops/207289", "https://data.delijn.be/stops/207811"], ["https://data.delijn.be/stops/200269", "https://data.delijn.be/stops/201269"], ["https://data.delijn.be/stops/201940", "https://data.delijn.be/stops/203909"], ["https://data.delijn.be/stops/406465", "https://data.delijn.be/stops/406489"], ["https://data.delijn.be/stops/406078", "https://data.delijn.be/stops/406079"], ["https://data.delijn.be/stops/303801", "https://data.delijn.be/stops/303845"], ["https://data.delijn.be/stops/303455", "https://data.delijn.be/stops/303519"], ["https://data.delijn.be/stops/206998", "https://data.delijn.be/stops/207868"], ["https://data.delijn.be/stops/101134", "https://data.delijn.be/stops/104980"], ["https://data.delijn.be/stops/507019", "https://data.delijn.be/stops/507927"], ["https://data.delijn.be/stops/503146", "https://data.delijn.be/stops/508146"], ["https://data.delijn.be/stops/301679", "https://data.delijn.be/stops/301685"], ["https://data.delijn.be/stops/406182", "https://data.delijn.be/stops/410270"], ["https://data.delijn.be/stops/106284", "https://data.delijn.be/stops/106301"], ["https://data.delijn.be/stops/300547", "https://data.delijn.be/stops/300710"], ["https://data.delijn.be/stops/201122", "https://data.delijn.be/stops/201125"], ["https://data.delijn.be/stops/106104", "https://data.delijn.be/stops/106157"], ["https://data.delijn.be/stops/308458", "https://data.delijn.be/stops/308465"], ["https://data.delijn.be/stops/405641", "https://data.delijn.be/stops/410339"], ["https://data.delijn.be/stops/303082", "https://data.delijn.be/stops/303150"], ["https://data.delijn.be/stops/203387", "https://data.delijn.be/stops/209947"], ["https://data.delijn.be/stops/400348", "https://data.delijn.be/stops/400418"], ["https://data.delijn.be/stops/400443", "https://data.delijn.be/stops/400446"], ["https://data.delijn.be/stops/204207", "https://data.delijn.be/stops/204472"], ["https://data.delijn.be/stops/404402", "https://data.delijn.be/stops/404426"], ["https://data.delijn.be/stops/303679", "https://data.delijn.be/stops/306100"], ["https://data.delijn.be/stops/102241", "https://data.delijn.be/stops/105934"], ["https://data.delijn.be/stops/400626", "https://data.delijn.be/stops/408290"], ["https://data.delijn.be/stops/205113", "https://data.delijn.be/stops/205688"], ["https://data.delijn.be/stops/408428", "https://data.delijn.be/stops/408677"], ["https://data.delijn.be/stops/202279", "https://data.delijn.be/stops/202891"], ["https://data.delijn.be/stops/503294", "https://data.delijn.be/stops/505996"], ["https://data.delijn.be/stops/304233", "https://data.delijn.be/stops/304686"], ["https://data.delijn.be/stops/200275", "https://data.delijn.be/stops/200276"], ["https://data.delijn.be/stops/209603", "https://data.delijn.be/stops/307593"], ["https://data.delijn.be/stops/401850", "https://data.delijn.be/stops/406347"], ["https://data.delijn.be/stops/405129", "https://data.delijn.be/stops/405404"], ["https://data.delijn.be/stops/206657", "https://data.delijn.be/stops/206718"], ["https://data.delijn.be/stops/306204", "https://data.delijn.be/stops/306205"], ["https://data.delijn.be/stops/106456", "https://data.delijn.be/stops/106459"], ["https://data.delijn.be/stops/407077", "https://data.delijn.be/stops/308079"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/501179"], ["https://data.delijn.be/stops/502033", "https://data.delijn.be/stops/507048"], ["https://data.delijn.be/stops/402630", "https://data.delijn.be/stops/405028"], ["https://data.delijn.be/stops/400452", "https://data.delijn.be/stops/407214"], ["https://data.delijn.be/stops/200348", "https://data.delijn.be/stops/201501"], ["https://data.delijn.be/stops/506198", "https://data.delijn.be/stops/506468"], ["https://data.delijn.be/stops/109042", "https://data.delijn.be/stops/109044"], ["https://data.delijn.be/stops/102920", "https://data.delijn.be/stops/104665"], ["https://data.delijn.be/stops/401448", "https://data.delijn.be/stops/401551"], ["https://data.delijn.be/stops/200331", "https://data.delijn.be/stops/203198"], ["https://data.delijn.be/stops/203116", "https://data.delijn.be/stops/205795"], ["https://data.delijn.be/stops/403096", "https://data.delijn.be/stops/403097"], ["https://data.delijn.be/stops/502106", "https://data.delijn.be/stops/502119"], ["https://data.delijn.be/stops/206610", "https://data.delijn.be/stops/207973"], ["https://data.delijn.be/stops/206934", "https://data.delijn.be/stops/206950"], ["https://data.delijn.be/stops/107335", "https://data.delijn.be/stops/107345"], ["https://data.delijn.be/stops/101341", "https://data.delijn.be/stops/108102"], ["https://data.delijn.be/stops/205581", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/200240", "https://data.delijn.be/stops/201277"], ["https://data.delijn.be/stops/400880", "https://data.delijn.be/stops/400881"], ["https://data.delijn.be/stops/101434", "https://data.delijn.be/stops/107289"], ["https://data.delijn.be/stops/502530", "https://data.delijn.be/stops/507530"], ["https://data.delijn.be/stops/108009", "https://data.delijn.be/stops/108612"], ["https://data.delijn.be/stops/401666", "https://data.delijn.be/stops/307632"], ["https://data.delijn.be/stops/300018", "https://data.delijn.be/stops/302871"], ["https://data.delijn.be/stops/505302", "https://data.delijn.be/stops/509593"], ["https://data.delijn.be/stops/303628", "https://data.delijn.be/stops/304204"], ["https://data.delijn.be/stops/204821", "https://data.delijn.be/stops/205821"], ["https://data.delijn.be/stops/407875", "https://data.delijn.be/stops/409349"], ["https://data.delijn.be/stops/303113", "https://data.delijn.be/stops/305443"], ["https://data.delijn.be/stops/403618", "https://data.delijn.be/stops/403619"], ["https://data.delijn.be/stops/101501", "https://data.delijn.be/stops/308496"], ["https://data.delijn.be/stops/303619", "https://data.delijn.be/stops/305445"], ["https://data.delijn.be/stops/106044", "https://data.delijn.be/stops/106046"], ["https://data.delijn.be/stops/300165", "https://data.delijn.be/stops/308700"], ["https://data.delijn.be/stops/202851", "https://data.delijn.be/stops/203909"], ["https://data.delijn.be/stops/206660", "https://data.delijn.be/stops/207514"], ["https://data.delijn.be/stops/201770", "https://data.delijn.be/stops/201820"], ["https://data.delijn.be/stops/504425", "https://data.delijn.be/stops/505163"], ["https://data.delijn.be/stops/208676", "https://data.delijn.be/stops/208684"], ["https://data.delijn.be/stops/405072", "https://data.delijn.be/stops/405888"], ["https://data.delijn.be/stops/200928", "https://data.delijn.be/stops/203046"], ["https://data.delijn.be/stops/407203", "https://data.delijn.be/stops/407208"], ["https://data.delijn.be/stops/109719", "https://data.delijn.be/stops/410261"], ["https://data.delijn.be/stops/305333", "https://data.delijn.be/stops/307601"], ["https://data.delijn.be/stops/504287", "https://data.delijn.be/stops/509627"], ["https://data.delijn.be/stops/502815", "https://data.delijn.be/stops/507308"], ["https://data.delijn.be/stops/505335", "https://data.delijn.be/stops/507553"], ["https://data.delijn.be/stops/200193", "https://data.delijn.be/stops/201196"], ["https://data.delijn.be/stops/401760", "https://data.delijn.be/stops/401765"], ["https://data.delijn.be/stops/209172", "https://data.delijn.be/stops/209173"], ["https://data.delijn.be/stops/108585", "https://data.delijn.be/stops/108590"], ["https://data.delijn.be/stops/200064", "https://data.delijn.be/stops/200271"], ["https://data.delijn.be/stops/206611", "https://data.delijn.be/stops/207612"], ["https://data.delijn.be/stops/305241", "https://data.delijn.be/stops/305242"], ["https://data.delijn.be/stops/109357", "https://data.delijn.be/stops/109358"], ["https://data.delijn.be/stops/101898", "https://data.delijn.be/stops/107799"], ["https://data.delijn.be/stops/105206", "https://data.delijn.be/stops/108872"], ["https://data.delijn.be/stops/200274", "https://data.delijn.be/stops/201274"], ["https://data.delijn.be/stops/300489", "https://data.delijn.be/stops/300494"], ["https://data.delijn.be/stops/302951", "https://data.delijn.be/stops/302969"], ["https://data.delijn.be/stops/300322", "https://data.delijn.be/stops/304862"], ["https://data.delijn.be/stops/504561", "https://data.delijn.be/stops/505184"], ["https://data.delijn.be/stops/208053", "https://data.delijn.be/stops/209657"], ["https://data.delijn.be/stops/305257", "https://data.delijn.be/stops/306343"], ["https://data.delijn.be/stops/101061", "https://data.delijn.be/stops/101063"], ["https://data.delijn.be/stops/105594", "https://data.delijn.be/stops/105597"], ["https://data.delijn.be/stops/505000", "https://data.delijn.be/stops/505572"], ["https://data.delijn.be/stops/106737", "https://data.delijn.be/stops/106739"], ["https://data.delijn.be/stops/205158", "https://data.delijn.be/stops/211067"], ["https://data.delijn.be/stops/400929", "https://data.delijn.be/stops/400941"], ["https://data.delijn.be/stops/107990", "https://data.delijn.be/stops/109035"], ["https://data.delijn.be/stops/303270", "https://data.delijn.be/stops/305729"], ["https://data.delijn.be/stops/505916", "https://data.delijn.be/stops/509529"], ["https://data.delijn.be/stops/509129", "https://data.delijn.be/stops/509132"], ["https://data.delijn.be/stops/104284", "https://data.delijn.be/stops/105899"], ["https://data.delijn.be/stops/108686", "https://data.delijn.be/stops/108894"], ["https://data.delijn.be/stops/106498", "https://data.delijn.be/stops/109189"], ["https://data.delijn.be/stops/401373", "https://data.delijn.be/stops/401375"], ["https://data.delijn.be/stops/101417", "https://data.delijn.be/stops/108693"], ["https://data.delijn.be/stops/104627", "https://data.delijn.be/stops/104845"], ["https://data.delijn.be/stops/302541", "https://data.delijn.be/stops/303373"], ["https://data.delijn.be/stops/303369", "https://data.delijn.be/stops/307031"], ["https://data.delijn.be/stops/204649", "https://data.delijn.be/stops/205695"], ["https://data.delijn.be/stops/509386", "https://data.delijn.be/stops/509715"], ["https://data.delijn.be/stops/300602", "https://data.delijn.be/stops/300606"], ["https://data.delijn.be/stops/405202", "https://data.delijn.be/stops/405203"], ["https://data.delijn.be/stops/200891", "https://data.delijn.be/stops/507277"], ["https://data.delijn.be/stops/400649", "https://data.delijn.be/stops/400660"], ["https://data.delijn.be/stops/400457", "https://data.delijn.be/stops/404843"], ["https://data.delijn.be/stops/303285", "https://data.delijn.be/stops/303314"], ["https://data.delijn.be/stops/403140", "https://data.delijn.be/stops/403368"], ["https://data.delijn.be/stops/400129", "https://data.delijn.be/stops/403310"], ["https://data.delijn.be/stops/305966", "https://data.delijn.be/stops/307911"], ["https://data.delijn.be/stops/507764", "https://data.delijn.be/stops/509820"], ["https://data.delijn.be/stops/204294", "https://data.delijn.be/stops/205533"], ["https://data.delijn.be/stops/108401", "https://data.delijn.be/stops/306589"], ["https://data.delijn.be/stops/404176", "https://data.delijn.be/stops/404196"], ["https://data.delijn.be/stops/102204", "https://data.delijn.be/stops/105638"], ["https://data.delijn.be/stops/404610", "https://data.delijn.be/stops/404614"], ["https://data.delijn.be/stops/104020", "https://data.delijn.be/stops/104645"], ["https://data.delijn.be/stops/305080", "https://data.delijn.be/stops/307944"], ["https://data.delijn.be/stops/504260", "https://data.delijn.be/stops/505568"], ["https://data.delijn.be/stops/301380", "https://data.delijn.be/stops/306652"], ["https://data.delijn.be/stops/401386", "https://data.delijn.be/stops/410180"], ["https://data.delijn.be/stops/109198", "https://data.delijn.be/stops/109200"], ["https://data.delijn.be/stops/304695", "https://data.delijn.be/stops/308769"], ["https://data.delijn.be/stops/300230", "https://data.delijn.be/stops/300232"], ["https://data.delijn.be/stops/206065", "https://data.delijn.be/stops/207066"], ["https://data.delijn.be/stops/204037", "https://data.delijn.be/stops/204038"], ["https://data.delijn.be/stops/304253", "https://data.delijn.be/stops/304254"], ["https://data.delijn.be/stops/502029", "https://data.delijn.be/stops/502046"], ["https://data.delijn.be/stops/201479", "https://data.delijn.be/stops/201887"], ["https://data.delijn.be/stops/206752", "https://data.delijn.be/stops/206777"], ["https://data.delijn.be/stops/306793", "https://data.delijn.be/stops/307348"], ["https://data.delijn.be/stops/407146", "https://data.delijn.be/stops/410199"], ["https://data.delijn.be/stops/308049", "https://data.delijn.be/stops/308904"], ["https://data.delijn.be/stops/408642", "https://data.delijn.be/stops/408646"], ["https://data.delijn.be/stops/108673", "https://data.delijn.be/stops/109852"], ["https://data.delijn.be/stops/201385", "https://data.delijn.be/stops/201386"], ["https://data.delijn.be/stops/503947", "https://data.delijn.be/stops/508947"], ["https://data.delijn.be/stops/206504", "https://data.delijn.be/stops/207149"], ["https://data.delijn.be/stops/206164", "https://data.delijn.be/stops/304554"], ["https://data.delijn.be/stops/501448", "https://data.delijn.be/stops/506448"], ["https://data.delijn.be/stops/403475", "https://data.delijn.be/stops/410219"], ["https://data.delijn.be/stops/405641", "https://data.delijn.be/stops/405643"], ["https://data.delijn.be/stops/303128", "https://data.delijn.be/stops/303130"], ["https://data.delijn.be/stops/102416", "https://data.delijn.be/stops/108466"], ["https://data.delijn.be/stops/208552", "https://data.delijn.be/stops/208569"], ["https://data.delijn.be/stops/208019", "https://data.delijn.be/stops/209019"], ["https://data.delijn.be/stops/402323", "https://data.delijn.be/stops/402369"], ["https://data.delijn.be/stops/204139", "https://data.delijn.be/stops/205575"], ["https://data.delijn.be/stops/201744", "https://data.delijn.be/stops/203783"], ["https://data.delijn.be/stops/202113", "https://data.delijn.be/stops/203113"], ["https://data.delijn.be/stops/400212", "https://data.delijn.be/stops/407193"], ["https://data.delijn.be/stops/108048", "https://data.delijn.be/stops/108050"], ["https://data.delijn.be/stops/200061", "https://data.delijn.be/stops/201481"], ["https://data.delijn.be/stops/304914", "https://data.delijn.be/stops/308753"], ["https://data.delijn.be/stops/305420", "https://data.delijn.be/stops/305926"], ["https://data.delijn.be/stops/402262", "https://data.delijn.be/stops/402487"], ["https://data.delijn.be/stops/208649", "https://data.delijn.be/stops/208650"], ["https://data.delijn.be/stops/403280", "https://data.delijn.be/stops/405328"], ["https://data.delijn.be/stops/109173", "https://data.delijn.be/stops/109177"], ["https://data.delijn.be/stops/103261", "https://data.delijn.be/stops/105852"], ["https://data.delijn.be/stops/402965", "https://data.delijn.be/stops/402973"], ["https://data.delijn.be/stops/201371", "https://data.delijn.be/stops/201372"], ["https://data.delijn.be/stops/109671", "https://data.delijn.be/stops/109675"], ["https://data.delijn.be/stops/204592", "https://data.delijn.be/stops/205582"], ["https://data.delijn.be/stops/300505", "https://data.delijn.be/stops/300506"], ["https://data.delijn.be/stops/503617", "https://data.delijn.be/stops/508614"], ["https://data.delijn.be/stops/302068", "https://data.delijn.be/stops/302073"], ["https://data.delijn.be/stops/503920", "https://data.delijn.be/stops/503922"], ["https://data.delijn.be/stops/104422", "https://data.delijn.be/stops/204286"], ["https://data.delijn.be/stops/308132", "https://data.delijn.be/stops/308133"], ["https://data.delijn.be/stops/300244", "https://data.delijn.be/stops/300254"], ["https://data.delijn.be/stops/301401", "https://data.delijn.be/stops/303226"], ["https://data.delijn.be/stops/104051", "https://data.delijn.be/stops/108394"], ["https://data.delijn.be/stops/300721", "https://data.delijn.be/stops/301426"], ["https://data.delijn.be/stops/506174", "https://data.delijn.be/stops/506780"], ["https://data.delijn.be/stops/305250", "https://data.delijn.be/stops/305288"], ["https://data.delijn.be/stops/206607", "https://data.delijn.be/stops/206726"], ["https://data.delijn.be/stops/101388", "https://data.delijn.be/stops/101392"], ["https://data.delijn.be/stops/101537", "https://data.delijn.be/stops/109076"], ["https://data.delijn.be/stops/206491", "https://data.delijn.be/stops/209680"], ["https://data.delijn.be/stops/103940", "https://data.delijn.be/stops/103946"], ["https://data.delijn.be/stops/400761", "https://data.delijn.be/stops/400859"], ["https://data.delijn.be/stops/102799", "https://data.delijn.be/stops/103895"], ["https://data.delijn.be/stops/504607", "https://data.delijn.be/stops/505971"], ["https://data.delijn.be/stops/101368", "https://data.delijn.be/stops/101401"], ["https://data.delijn.be/stops/200344", "https://data.delijn.be/stops/201344"], ["https://data.delijn.be/stops/504483", "https://data.delijn.be/stops/504485"], ["https://data.delijn.be/stops/201180", "https://data.delijn.be/stops/201186"], ["https://data.delijn.be/stops/300762", "https://data.delijn.be/stops/306203"], ["https://data.delijn.be/stops/201959", "https://data.delijn.be/stops/203195"], ["https://data.delijn.be/stops/208292", "https://data.delijn.be/stops/208293"], ["https://data.delijn.be/stops/109225", "https://data.delijn.be/stops/109712"], ["https://data.delijn.be/stops/302192", "https://data.delijn.be/stops/302196"], ["https://data.delijn.be/stops/106569", "https://data.delijn.be/stops/106571"], ["https://data.delijn.be/stops/303696", "https://data.delijn.be/stops/303829"], ["https://data.delijn.be/stops/509486", "https://data.delijn.be/stops/509488"], ["https://data.delijn.be/stops/206006", "https://data.delijn.be/stops/206007"], ["https://data.delijn.be/stops/206437", "https://data.delijn.be/stops/207437"], ["https://data.delijn.be/stops/106432", "https://data.delijn.be/stops/106434"], ["https://data.delijn.be/stops/400841", "https://data.delijn.be/stops/404303"], ["https://data.delijn.be/stops/504372", "https://data.delijn.be/stops/509609"], ["https://data.delijn.be/stops/203045", "https://data.delijn.be/stops/203076"], ["https://data.delijn.be/stops/302081", "https://data.delijn.be/stops/302086"], ["https://data.delijn.be/stops/101900", "https://data.delijn.be/stops/102145"], ["https://data.delijn.be/stops/201831", "https://data.delijn.be/stops/201832"], ["https://data.delijn.be/stops/304965", "https://data.delijn.be/stops/304966"], ["https://data.delijn.be/stops/301619", "https://data.delijn.be/stops/307675"], ["https://data.delijn.be/stops/202701", "https://data.delijn.be/stops/202703"], ["https://data.delijn.be/stops/406162", "https://data.delijn.be/stops/407303"], ["https://data.delijn.be/stops/504057", "https://data.delijn.be/stops/509057"], ["https://data.delijn.be/stops/308086", "https://data.delijn.be/stops/308087"], ["https://data.delijn.be/stops/406359", "https://data.delijn.be/stops/406368"], ["https://data.delijn.be/stops/508123", "https://data.delijn.be/stops/509888"], ["https://data.delijn.be/stops/504611", "https://data.delijn.be/stops/509612"], ["https://data.delijn.be/stops/204583", "https://data.delijn.be/stops/204584"], ["https://data.delijn.be/stops/107859", "https://data.delijn.be/stops/107861"], ["https://data.delijn.be/stops/303367", "https://data.delijn.be/stops/303368"], ["https://data.delijn.be/stops/507959", "https://data.delijn.be/stops/507960"], ["https://data.delijn.be/stops/504796", "https://data.delijn.be/stops/504798"], ["https://data.delijn.be/stops/403990", "https://data.delijn.be/stops/403991"], ["https://data.delijn.be/stops/401278", "https://data.delijn.be/stops/401279"], ["https://data.delijn.be/stops/208171", "https://data.delijn.be/stops/209170"], ["https://data.delijn.be/stops/303581", "https://data.delijn.be/stops/303582"], ["https://data.delijn.be/stops/107852", "https://data.delijn.be/stops/107856"], ["https://data.delijn.be/stops/205770", "https://data.delijn.be/stops/205771"], ["https://data.delijn.be/stops/105016", "https://data.delijn.be/stops/105018"], ["https://data.delijn.be/stops/208202", "https://data.delijn.be/stops/209768"], ["https://data.delijn.be/stops/207786", "https://data.delijn.be/stops/208370"], ["https://data.delijn.be/stops/103998", "https://data.delijn.be/stops/104942"], ["https://data.delijn.be/stops/206751", "https://data.delijn.be/stops/209479"], ["https://data.delijn.be/stops/207797", "https://data.delijn.be/stops/209838"], ["https://data.delijn.be/stops/103317", "https://data.delijn.be/stops/105792"], ["https://data.delijn.be/stops/202026", "https://data.delijn.be/stops/202031"], ["https://data.delijn.be/stops/208634", "https://data.delijn.be/stops/209633"], ["https://data.delijn.be/stops/102925", "https://data.delijn.be/stops/103415"], ["https://data.delijn.be/stops/301516", "https://data.delijn.be/stops/301517"], ["https://data.delijn.be/stops/307941", "https://data.delijn.be/stops/307942"], ["https://data.delijn.be/stops/404768", "https://data.delijn.be/stops/404789"], ["https://data.delijn.be/stops/107233", "https://data.delijn.be/stops/107234"], ["https://data.delijn.be/stops/407808", "https://data.delijn.be/stops/407809"], ["https://data.delijn.be/stops/402628", "https://data.delijn.be/stops/405029"], ["https://data.delijn.be/stops/405560", "https://data.delijn.be/stops/405561"], ["https://data.delijn.be/stops/300184", "https://data.delijn.be/stops/300185"], ["https://data.delijn.be/stops/303307", "https://data.delijn.be/stops/303313"], ["https://data.delijn.be/stops/502695", "https://data.delijn.be/stops/502696"], ["https://data.delijn.be/stops/109886", "https://data.delijn.be/stops/109887"], ["https://data.delijn.be/stops/508838", "https://data.delijn.be/stops/508839"], ["https://data.delijn.be/stops/307956", "https://data.delijn.be/stops/307957"], ["https://data.delijn.be/stops/300634", "https://data.delijn.be/stops/304346"], ["https://data.delijn.be/stops/503870", "https://data.delijn.be/stops/508870"], ["https://data.delijn.be/stops/304641", "https://data.delijn.be/stops/308903"], ["https://data.delijn.be/stops/503607", "https://data.delijn.be/stops/508613"], ["https://data.delijn.be/stops/206463", "https://data.delijn.be/stops/207463"], ["https://data.delijn.be/stops/305003", "https://data.delijn.be/stops/305005"], ["https://data.delijn.be/stops/108281", "https://data.delijn.be/stops/109359"], ["https://data.delijn.be/stops/304334", "https://data.delijn.be/stops/304335"], ["https://data.delijn.be/stops/509352", "https://data.delijn.be/stops/509353"], ["https://data.delijn.be/stops/102396", "https://data.delijn.be/stops/108193"], ["https://data.delijn.be/stops/407852", "https://data.delijn.be/stops/408064"], ["https://data.delijn.be/stops/207338", "https://data.delijn.be/stops/207746"], ["https://data.delijn.be/stops/305737", "https://data.delijn.be/stops/306329"], ["https://data.delijn.be/stops/201081", "https://data.delijn.be/stops/209958"], ["https://data.delijn.be/stops/303807", "https://data.delijn.be/stops/308713"], ["https://data.delijn.be/stops/402953", "https://data.delijn.be/stops/405408"], ["https://data.delijn.be/stops/306689", "https://data.delijn.be/stops/306690"], ["https://data.delijn.be/stops/108113", "https://data.delijn.be/stops/108147"], ["https://data.delijn.be/stops/503103", "https://data.delijn.be/stops/505792"], ["https://data.delijn.be/stops/502768", "https://data.delijn.be/stops/507300"], ["https://data.delijn.be/stops/305577", "https://data.delijn.be/stops/306093"], ["https://data.delijn.be/stops/405921", "https://data.delijn.be/stops/406134"], ["https://data.delijn.be/stops/104504", "https://data.delijn.be/stops/308795"], ["https://data.delijn.be/stops/503846", "https://data.delijn.be/stops/505226"], ["https://data.delijn.be/stops/201762", "https://data.delijn.be/stops/208271"], ["https://data.delijn.be/stops/400758", "https://data.delijn.be/stops/409585"], ["https://data.delijn.be/stops/302665", "https://data.delijn.be/stops/302666"], ["https://data.delijn.be/stops/508497", "https://data.delijn.be/stops/508499"], ["https://data.delijn.be/stops/507407", "https://data.delijn.be/stops/507410"], ["https://data.delijn.be/stops/402225", "https://data.delijn.be/stops/402398"], ["https://data.delijn.be/stops/503301", "https://data.delijn.be/stops/504859"], ["https://data.delijn.be/stops/208670", "https://data.delijn.be/stops/208808"], ["https://data.delijn.be/stops/400768", "https://data.delijn.be/stops/410085"], ["https://data.delijn.be/stops/206553", "https://data.delijn.be/stops/209756"], ["https://data.delijn.be/stops/405068", "https://data.delijn.be/stops/405069"], ["https://data.delijn.be/stops/407693", "https://data.delijn.be/stops/407745"], ["https://data.delijn.be/stops/200428", "https://data.delijn.be/stops/201430"], ["https://data.delijn.be/stops/105080", "https://data.delijn.be/stops/105088"], ["https://data.delijn.be/stops/402529", "https://data.delijn.be/stops/402543"], ["https://data.delijn.be/stops/200418", "https://data.delijn.be/stops/201847"], ["https://data.delijn.be/stops/304962", "https://data.delijn.be/stops/305308"], ["https://data.delijn.be/stops/505532", "https://data.delijn.be/stops/508758"], ["https://data.delijn.be/stops/204341", "https://data.delijn.be/stops/205306"], ["https://data.delijn.be/stops/102314", "https://data.delijn.be/stops/104060"], ["https://data.delijn.be/stops/401525", "https://data.delijn.be/stops/403768"], ["https://data.delijn.be/stops/102389", "https://data.delijn.be/stops/107026"], ["https://data.delijn.be/stops/307223", "https://data.delijn.be/stops/307264"], ["https://data.delijn.be/stops/207366", "https://data.delijn.be/stops/207705"], ["https://data.delijn.be/stops/505226", "https://data.delijn.be/stops/505373"], ["https://data.delijn.be/stops/404007", "https://data.delijn.be/stops/404013"], ["https://data.delijn.be/stops/404340", "https://data.delijn.be/stops/404949"], ["https://data.delijn.be/stops/104404", "https://data.delijn.be/stops/204489"], ["https://data.delijn.be/stops/401343", "https://data.delijn.be/stops/401394"], ["https://data.delijn.be/stops/501222", "https://data.delijn.be/stops/506223"], ["https://data.delijn.be/stops/400639", "https://data.delijn.be/stops/400923"], ["https://data.delijn.be/stops/408638", "https://data.delijn.be/stops/302893"], ["https://data.delijn.be/stops/201836", "https://data.delijn.be/stops/202790"], ["https://data.delijn.be/stops/205674", "https://data.delijn.be/stops/205677"], ["https://data.delijn.be/stops/503685", "https://data.delijn.be/stops/503687"], ["https://data.delijn.be/stops/201825", "https://data.delijn.be/stops/202754"], ["https://data.delijn.be/stops/503625", "https://data.delijn.be/stops/508625"], ["https://data.delijn.be/stops/505277", "https://data.delijn.be/stops/505284"], ["https://data.delijn.be/stops/306931", "https://data.delijn.be/stops/306934"], ["https://data.delijn.be/stops/107971", "https://data.delijn.be/stops/108431"], ["https://data.delijn.be/stops/307347", "https://data.delijn.be/stops/307433"], ["https://data.delijn.be/stops/404753", "https://data.delijn.be/stops/404945"], ["https://data.delijn.be/stops/506245", "https://data.delijn.be/stops/506249"], ["https://data.delijn.be/stops/400946", "https://data.delijn.be/stops/400947"], ["https://data.delijn.be/stops/301050", "https://data.delijn.be/stops/301051"], ["https://data.delijn.be/stops/205064", "https://data.delijn.be/stops/205696"], ["https://data.delijn.be/stops/107284", "https://data.delijn.be/stops/107288"], ["https://data.delijn.be/stops/101871", "https://data.delijn.be/stops/102198"], ["https://data.delijn.be/stops/300803", "https://data.delijn.be/stops/300804"], ["https://data.delijn.be/stops/408550", "https://data.delijn.be/stops/408686"], ["https://data.delijn.be/stops/101958", "https://data.delijn.be/stops/108323"], ["https://data.delijn.be/stops/503035", "https://data.delijn.be/stops/503037"], ["https://data.delijn.be/stops/505318", "https://data.delijn.be/stops/507474"], ["https://data.delijn.be/stops/203358", "https://data.delijn.be/stops/210133"], ["https://data.delijn.be/stops/400535", "https://data.delijn.be/stops/404060"], ["https://data.delijn.be/stops/202096", "https://data.delijn.be/stops/203094"], ["https://data.delijn.be/stops/304641", "https://data.delijn.be/stops/305387"], ["https://data.delijn.be/stops/201432", "https://data.delijn.be/stops/201433"], ["https://data.delijn.be/stops/403312", "https://data.delijn.be/stops/409173"], ["https://data.delijn.be/stops/401508", "https://data.delijn.be/stops/402030"], ["https://data.delijn.be/stops/201904", "https://data.delijn.be/stops/203496"], ["https://data.delijn.be/stops/504006", "https://data.delijn.be/stops/504532"], ["https://data.delijn.be/stops/408229", "https://data.delijn.be/stops/408386"], ["https://data.delijn.be/stops/103502", "https://data.delijn.be/stops/106318"], ["https://data.delijn.be/stops/407135", "https://data.delijn.be/stops/407141"], ["https://data.delijn.be/stops/300292", "https://data.delijn.be/stops/300295"], ["https://data.delijn.be/stops/200608", "https://data.delijn.be/stops/202770"], ["https://data.delijn.be/stops/505547", "https://data.delijn.be/stops/507192"], ["https://data.delijn.be/stops/108398", "https://data.delijn.be/stops/108400"], ["https://data.delijn.be/stops/305855", "https://data.delijn.be/stops/305856"], ["https://data.delijn.be/stops/108484", "https://data.delijn.be/stops/306603"], ["https://data.delijn.be/stops/304486", "https://data.delijn.be/stops/304487"], ["https://data.delijn.be/stops/200578", "https://data.delijn.be/stops/201730"], ["https://data.delijn.be/stops/507345", "https://data.delijn.be/stops/507346"], ["https://data.delijn.be/stops/108838", "https://data.delijn.be/stops/108839"], ["https://data.delijn.be/stops/300290", "https://data.delijn.be/stops/300297"], ["https://data.delijn.be/stops/400344", "https://data.delijn.be/stops/400345"], ["https://data.delijn.be/stops/305084", "https://data.delijn.be/stops/305088"], ["https://data.delijn.be/stops/303451", "https://data.delijn.be/stops/303520"], ["https://data.delijn.be/stops/507143", "https://data.delijn.be/stops/507576"], ["https://data.delijn.be/stops/106664", "https://data.delijn.be/stops/106665"], ["https://data.delijn.be/stops/107287", "https://data.delijn.be/stops/107288"], ["https://data.delijn.be/stops/202227", "https://data.delijn.be/stops/203227"], ["https://data.delijn.be/stops/104609", "https://data.delijn.be/stops/109494"], ["https://data.delijn.be/stops/502495", "https://data.delijn.be/stops/507495"], ["https://data.delijn.be/stops/302972", "https://data.delijn.be/stops/306299"], ["https://data.delijn.be/stops/407832", "https://data.delijn.be/stops/409561"], ["https://data.delijn.be/stops/303720", "https://data.delijn.be/stops/303725"], ["https://data.delijn.be/stops/402122", "https://data.delijn.be/stops/402127"], ["https://data.delijn.be/stops/105776", "https://data.delijn.be/stops/105778"], ["https://data.delijn.be/stops/205986", "https://data.delijn.be/stops/207256"], ["https://data.delijn.be/stops/501697", "https://data.delijn.be/stops/507245"], ["https://data.delijn.be/stops/206027", "https://data.delijn.be/stops/206205"], ["https://data.delijn.be/stops/202702", "https://data.delijn.be/stops/211066"], ["https://data.delijn.be/stops/410226", "https://data.delijn.be/stops/410270"], ["https://data.delijn.be/stops/501415", "https://data.delijn.be/stops/506415"], ["https://data.delijn.be/stops/400969", "https://data.delijn.be/stops/400971"], ["https://data.delijn.be/stops/206004", "https://data.delijn.be/stops/206006"], ["https://data.delijn.be/stops/402214", "https://data.delijn.be/stops/404869"], ["https://data.delijn.be/stops/404655", "https://data.delijn.be/stops/410133"], ["https://data.delijn.be/stops/307331", "https://data.delijn.be/stops/308757"], ["https://data.delijn.be/stops/206233", "https://data.delijn.be/stops/207232"], ["https://data.delijn.be/stops/500557", "https://data.delijn.be/stops/500558"], ["https://data.delijn.be/stops/406179", "https://data.delijn.be/stops/406893"], ["https://data.delijn.be/stops/304434", "https://data.delijn.be/stops/304452"], ["https://data.delijn.be/stops/102302", "https://data.delijn.be/stops/108877"], ["https://data.delijn.be/stops/300078", "https://data.delijn.be/stops/300079"], ["https://data.delijn.be/stops/102399", "https://data.delijn.be/stops/103011"], ["https://data.delijn.be/stops/507174", "https://data.delijn.be/stops/507182"], ["https://data.delijn.be/stops/400665", "https://data.delijn.be/stops/408982"], ["https://data.delijn.be/stops/407860", "https://data.delijn.be/stops/306305"], ["https://data.delijn.be/stops/108942", "https://data.delijn.be/stops/109222"], ["https://data.delijn.be/stops/305337", "https://data.delijn.be/stops/305339"], ["https://data.delijn.be/stops/501433", "https://data.delijn.be/stops/506599"], ["https://data.delijn.be/stops/109139", "https://data.delijn.be/stops/109154"], ["https://data.delijn.be/stops/502071", "https://data.delijn.be/stops/507071"], ["https://data.delijn.be/stops/306142", "https://data.delijn.be/stops/306644"], ["https://data.delijn.be/stops/104355", "https://data.delijn.be/stops/104521"], ["https://data.delijn.be/stops/503499", "https://data.delijn.be/stops/503688"], ["https://data.delijn.be/stops/300760", "https://data.delijn.be/stops/300791"], ["https://data.delijn.be/stops/203050", "https://data.delijn.be/stops/203227"], ["https://data.delijn.be/stops/505521", "https://data.delijn.be/stops/505619"], ["https://data.delijn.be/stops/101797", "https://data.delijn.be/stops/108523"], ["https://data.delijn.be/stops/206009", "https://data.delijn.be/stops/216001"], ["https://data.delijn.be/stops/204515", "https://data.delijn.be/stops/205514"], ["https://data.delijn.be/stops/502019", "https://data.delijn.be/stops/507154"], ["https://data.delijn.be/stops/508140", "https://data.delijn.be/stops/508310"], ["https://data.delijn.be/stops/105192", "https://data.delijn.be/stops/108889"], ["https://data.delijn.be/stops/101367", "https://data.delijn.be/stops/106419"], ["https://data.delijn.be/stops/206249", "https://data.delijn.be/stops/208951"], ["https://data.delijn.be/stops/503527", "https://data.delijn.be/stops/508522"], ["https://data.delijn.be/stops/404810", "https://data.delijn.be/stops/404819"], ["https://data.delijn.be/stops/505396", "https://data.delijn.be/stops/507767"], ["https://data.delijn.be/stops/304972", "https://data.delijn.be/stops/304973"], ["https://data.delijn.be/stops/103251", "https://data.delijn.be/stops/107725"], ["https://data.delijn.be/stops/104185", "https://data.delijn.be/stops/104720"], ["https://data.delijn.be/stops/200540", "https://data.delijn.be/stops/201540"], ["https://data.delijn.be/stops/401427", "https://data.delijn.be/stops/402129"], ["https://data.delijn.be/stops/203941", "https://data.delijn.be/stops/210053"], ["https://data.delijn.be/stops/104993", "https://data.delijn.be/stops/109989"], ["https://data.delijn.be/stops/503965", "https://data.delijn.be/stops/509766"], ["https://data.delijn.be/stops/406595", "https://data.delijn.be/stops/406616"], ["https://data.delijn.be/stops/305847", "https://data.delijn.be/stops/306397"], ["https://data.delijn.be/stops/102525", "https://data.delijn.be/stops/405082"], ["https://data.delijn.be/stops/300057", "https://data.delijn.be/stops/300115"], ["https://data.delijn.be/stops/208390", "https://data.delijn.be/stops/208744"], ["https://data.delijn.be/stops/102201", "https://data.delijn.be/stops/105797"], ["https://data.delijn.be/stops/405877", "https://data.delijn.be/stops/409666"], ["https://data.delijn.be/stops/501614", "https://data.delijn.be/stops/501687"], ["https://data.delijn.be/stops/305992", "https://data.delijn.be/stops/307426"], ["https://data.delijn.be/stops/105462", "https://data.delijn.be/stops/105463"], ["https://data.delijn.be/stops/302266", "https://data.delijn.be/stops/302935"], ["https://data.delijn.be/stops/403446", "https://data.delijn.be/stops/409267"], ["https://data.delijn.be/stops/204614", "https://data.delijn.be/stops/205654"], ["https://data.delijn.be/stops/201851", "https://data.delijn.be/stops/202656"], ["https://data.delijn.be/stops/408093", "https://data.delijn.be/stops/408156"], ["https://data.delijn.be/stops/205982", "https://data.delijn.be/stops/208742"], ["https://data.delijn.be/stops/401502", "https://data.delijn.be/stops/401566"], ["https://data.delijn.be/stops/308011", "https://data.delijn.be/stops/308012"], ["https://data.delijn.be/stops/501003", "https://data.delijn.be/stops/506504"], ["https://data.delijn.be/stops/403304", "https://data.delijn.be/stops/403442"], ["https://data.delijn.be/stops/300540", "https://data.delijn.be/stops/305551"], ["https://data.delijn.be/stops/504550", "https://data.delijn.be/stops/505207"], ["https://data.delijn.be/stops/504060", "https://data.delijn.be/stops/505311"], ["https://data.delijn.be/stops/504773", "https://data.delijn.be/stops/508811"], ["https://data.delijn.be/stops/202766", "https://data.delijn.be/stops/203767"], ["https://data.delijn.be/stops/301437", "https://data.delijn.be/stops/301438"], ["https://data.delijn.be/stops/200778", "https://data.delijn.be/stops/208857"], ["https://data.delijn.be/stops/105627", "https://data.delijn.be/stops/107731"], ["https://data.delijn.be/stops/201914", "https://data.delijn.be/stops/216009"], ["https://data.delijn.be/stops/200717", "https://data.delijn.be/stops/201717"], ["https://data.delijn.be/stops/305616", "https://data.delijn.be/stops/305619"], ["https://data.delijn.be/stops/202664", "https://data.delijn.be/stops/203396"], ["https://data.delijn.be/stops/206450", "https://data.delijn.be/stops/207493"], ["https://data.delijn.be/stops/106627", "https://data.delijn.be/stops/106628"], ["https://data.delijn.be/stops/202790", "https://data.delijn.be/stops/202791"], ["https://data.delijn.be/stops/503339", "https://data.delijn.be/stops/505635"], ["https://data.delijn.be/stops/407964", "https://data.delijn.be/stops/407968"], ["https://data.delijn.be/stops/400039", "https://data.delijn.be/stops/400348"], ["https://data.delijn.be/stops/307554", "https://data.delijn.be/stops/307557"], ["https://data.delijn.be/stops/307012", "https://data.delijn.be/stops/307015"], ["https://data.delijn.be/stops/202703", "https://data.delijn.be/stops/202705"], ["https://data.delijn.be/stops/103036", "https://data.delijn.be/stops/106400"], ["https://data.delijn.be/stops/103619", "https://data.delijn.be/stops/109165"], ["https://data.delijn.be/stops/401580", "https://data.delijn.be/stops/401746"], ["https://data.delijn.be/stops/503232", "https://data.delijn.be/stops/508417"], ["https://data.delijn.be/stops/400544", "https://data.delijn.be/stops/403190"], ["https://data.delijn.be/stops/503494", "https://data.delijn.be/stops/508868"], ["https://data.delijn.be/stops/104015", "https://data.delijn.be/stops/104020"], ["https://data.delijn.be/stops/200009", "https://data.delijn.be/stops/210020"], ["https://data.delijn.be/stops/202139", "https://data.delijn.be/stops/203994"], ["https://data.delijn.be/stops/501419", "https://data.delijn.be/stops/506229"], ["https://data.delijn.be/stops/204212", "https://data.delijn.be/stops/206309"], ["https://data.delijn.be/stops/502924", "https://data.delijn.be/stops/505078"], ["https://data.delijn.be/stops/300573", "https://data.delijn.be/stops/300588"], ["https://data.delijn.be/stops/408604", "https://data.delijn.be/stops/408628"], ["https://data.delijn.be/stops/101014", "https://data.delijn.be/stops/101015"], ["https://data.delijn.be/stops/106955", "https://data.delijn.be/stops/106956"], ["https://data.delijn.be/stops/501283", "https://data.delijn.be/stops/506283"], ["https://data.delijn.be/stops/107312", "https://data.delijn.be/stops/108809"], ["https://data.delijn.be/stops/408303", "https://data.delijn.be/stops/308249"], ["https://data.delijn.be/stops/205585", "https://data.delijn.be/stops/205586"], ["https://data.delijn.be/stops/103995", "https://data.delijn.be/stops/108170"], ["https://data.delijn.be/stops/407538", "https://data.delijn.be/stops/407548"], ["https://data.delijn.be/stops/209085", "https://data.delijn.be/stops/209536"], ["https://data.delijn.be/stops/502128", "https://data.delijn.be/stops/502147"], ["https://data.delijn.be/stops/201867", "https://data.delijn.be/stops/202083"], ["https://data.delijn.be/stops/202155", "https://data.delijn.be/stops/203627"], ["https://data.delijn.be/stops/405614", "https://data.delijn.be/stops/407190"], ["https://data.delijn.be/stops/207567", "https://data.delijn.be/stops/207965"], ["https://data.delijn.be/stops/301043", "https://data.delijn.be/stops/301067"], ["https://data.delijn.be/stops/205129", "https://data.delijn.be/stops/205789"], ["https://data.delijn.be/stops/101780", "https://data.delijn.be/stops/102355"], ["https://data.delijn.be/stops/302298", "https://data.delijn.be/stops/302299"], ["https://data.delijn.be/stops/507290", "https://data.delijn.be/stops/507291"], ["https://data.delijn.be/stops/109433", "https://data.delijn.be/stops/109437"], ["https://data.delijn.be/stops/505408", "https://data.delijn.be/stops/508831"], ["https://data.delijn.be/stops/404206", "https://data.delijn.be/stops/404207"], ["https://data.delijn.be/stops/301895", "https://data.delijn.be/stops/305728"], ["https://data.delijn.be/stops/109711", "https://data.delijn.be/stops/406489"], ["https://data.delijn.be/stops/101644", "https://data.delijn.be/stops/109976"], ["https://data.delijn.be/stops/507033", "https://data.delijn.be/stops/507642"], ["https://data.delijn.be/stops/504444", "https://data.delijn.be/stops/509398"], ["https://data.delijn.be/stops/206145", "https://data.delijn.be/stops/206476"], ["https://data.delijn.be/stops/301745", "https://data.delijn.be/stops/305944"], ["https://data.delijn.be/stops/504779", "https://data.delijn.be/stops/504980"], ["https://data.delijn.be/stops/208063", "https://data.delijn.be/stops/209063"], ["https://data.delijn.be/stops/108571", "https://data.delijn.be/stops/108996"], ["https://data.delijn.be/stops/303636", "https://data.delijn.be/stops/304808"], ["https://data.delijn.be/stops/200229", "https://data.delijn.be/stops/202354"], ["https://data.delijn.be/stops/107582", "https://data.delijn.be/stops/109430"], ["https://data.delijn.be/stops/108740", "https://data.delijn.be/stops/109135"], ["https://data.delijn.be/stops/510003", "https://data.delijn.be/stops/510005"], ["https://data.delijn.be/stops/206645", "https://data.delijn.be/stops/207645"], ["https://data.delijn.be/stops/200195", "https://data.delijn.be/stops/201199"], ["https://data.delijn.be/stops/502404", "https://data.delijn.be/stops/502578"], ["https://data.delijn.be/stops/406557", "https://data.delijn.be/stops/407382"], ["https://data.delijn.be/stops/106911", "https://data.delijn.be/stops/106913"], ["https://data.delijn.be/stops/506012", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/500135", "https://data.delijn.be/stops/590331"], ["https://data.delijn.be/stops/201837", "https://data.delijn.be/stops/203402"], ["https://data.delijn.be/stops/501044", "https://data.delijn.be/stops/506488"], ["https://data.delijn.be/stops/101820", "https://data.delijn.be/stops/103955"], ["https://data.delijn.be/stops/303648", "https://data.delijn.be/stops/305928"], ["https://data.delijn.be/stops/408268", "https://data.delijn.be/stops/408406"], ["https://data.delijn.be/stops/402419", "https://data.delijn.be/stops/406678"], ["https://data.delijn.be/stops/208071", "https://data.delijn.be/stops/209071"], ["https://data.delijn.be/stops/503880", "https://data.delijn.be/stops/505133"], ["https://data.delijn.be/stops/502767", "https://data.delijn.be/stops/507909"], ["https://data.delijn.be/stops/502378", "https://data.delijn.be/stops/507378"], ["https://data.delijn.be/stops/403284", "https://data.delijn.be/stops/403440"], ["https://data.delijn.be/stops/502064", "https://data.delijn.be/stops/507064"], ["https://data.delijn.be/stops/201238", "https://data.delijn.be/stops/211129"], ["https://data.delijn.be/stops/503331", "https://data.delijn.be/stops/503333"], ["https://data.delijn.be/stops/101944", "https://data.delijn.be/stops/108777"], ["https://data.delijn.be/stops/401949", "https://data.delijn.be/stops/407277"], ["https://data.delijn.be/stops/305706", "https://data.delijn.be/stops/305707"], ["https://data.delijn.be/stops/102695", "https://data.delijn.be/stops/102807"], ["https://data.delijn.be/stops/402767", "https://data.delijn.be/stops/402768"], ["https://data.delijn.be/stops/503776", "https://data.delijn.be/stops/505822"], ["https://data.delijn.be/stops/402510", "https://data.delijn.be/stops/402588"], ["https://data.delijn.be/stops/200100", "https://data.delijn.be/stops/201100"], ["https://data.delijn.be/stops/502316", "https://data.delijn.be/stops/507063"], ["https://data.delijn.be/stops/204729", "https://data.delijn.be/stops/204730"], ["https://data.delijn.be/stops/206157", "https://data.delijn.be/stops/206498"], ["https://data.delijn.be/stops/106376", "https://data.delijn.be/stops/106381"], ["https://data.delijn.be/stops/406046", "https://data.delijn.be/stops/406122"], ["https://data.delijn.be/stops/409105", "https://data.delijn.be/stops/409107"], ["https://data.delijn.be/stops/201255", "https://data.delijn.be/stops/201615"], ["https://data.delijn.be/stops/300702", "https://data.delijn.be/stops/300704"], ["https://data.delijn.be/stops/105509", "https://data.delijn.be/stops/105511"], ["https://data.delijn.be/stops/102073", "https://data.delijn.be/stops/106931"], ["https://data.delijn.be/stops/206047", "https://data.delijn.be/stops/207999"], ["https://data.delijn.be/stops/209395", "https://data.delijn.be/stops/509816"], ["https://data.delijn.be/stops/404625", "https://data.delijn.be/stops/406955"], ["https://data.delijn.be/stops/403128", "https://data.delijn.be/stops/409312"], ["https://data.delijn.be/stops/406395", "https://data.delijn.be/stops/302829"], ["https://data.delijn.be/stops/204226", "https://data.delijn.be/stops/205226"], ["https://data.delijn.be/stops/301501", "https://data.delijn.be/stops/308937"], ["https://data.delijn.be/stops/505161", "https://data.delijn.be/stops/508641"], ["https://data.delijn.be/stops/108679", "https://data.delijn.be/stops/306625"], ["https://data.delijn.be/stops/204146", "https://data.delijn.be/stops/205141"], ["https://data.delijn.be/stops/304293", "https://data.delijn.be/stops/304295"], ["https://data.delijn.be/stops/204481", "https://data.delijn.be/stops/205106"], ["https://data.delijn.be/stops/406858", "https://data.delijn.be/stops/406861"], ["https://data.delijn.be/stops/503277", "https://data.delijn.be/stops/504892"], ["https://data.delijn.be/stops/302571", "https://data.delijn.be/stops/302572"], ["https://data.delijn.be/stops/103678", "https://data.delijn.be/stops/401931"], ["https://data.delijn.be/stops/304900", "https://data.delijn.be/stops/304910"], ["https://data.delijn.be/stops/303561", "https://data.delijn.be/stops/308607"], ["https://data.delijn.be/stops/408580", "https://data.delijn.be/stops/408817"], ["https://data.delijn.be/stops/408970", "https://data.delijn.be/stops/409239"], ["https://data.delijn.be/stops/200403", "https://data.delijn.be/stops/200404"], ["https://data.delijn.be/stops/103928", "https://data.delijn.be/stops/103929"], ["https://data.delijn.be/stops/408643", "https://data.delijn.be/stops/408649"], ["https://data.delijn.be/stops/504128", "https://data.delijn.be/stops/504740"], ["https://data.delijn.be/stops/502348", "https://data.delijn.be/stops/505092"], ["https://data.delijn.be/stops/307361", "https://data.delijn.be/stops/307363"], ["https://data.delijn.be/stops/403258", "https://data.delijn.be/stops/403830"], ["https://data.delijn.be/stops/407892", "https://data.delijn.be/stops/301841"], ["https://data.delijn.be/stops/203735", "https://data.delijn.be/stops/203849"], ["https://data.delijn.be/stops/102697", "https://data.delijn.be/stops/105635"], ["https://data.delijn.be/stops/202129", "https://data.delijn.be/stops/202436"], ["https://data.delijn.be/stops/301741", "https://data.delijn.be/stops/305295"], ["https://data.delijn.be/stops/302852", "https://data.delijn.be/stops/308822"], ["https://data.delijn.be/stops/207083", "https://data.delijn.be/stops/217007"], ["https://data.delijn.be/stops/107449", "https://data.delijn.be/stops/109645"], ["https://data.delijn.be/stops/503850", "https://data.delijn.be/stops/510029"], ["https://data.delijn.be/stops/106566", "https://data.delijn.be/stops/106567"], ["https://data.delijn.be/stops/303584", "https://data.delijn.be/stops/305910"], ["https://data.delijn.be/stops/306777", "https://data.delijn.be/stops/306778"], ["https://data.delijn.be/stops/302053", "https://data.delijn.be/stops/304915"], ["https://data.delijn.be/stops/501106", "https://data.delijn.be/stops/506107"], ["https://data.delijn.be/stops/407290", "https://data.delijn.be/stops/408130"], ["https://data.delijn.be/stops/209748", "https://data.delijn.be/stops/209749"], ["https://data.delijn.be/stops/501002", "https://data.delijn.be/stops/505355"], ["https://data.delijn.be/stops/206616", "https://data.delijn.be/stops/206617"], ["https://data.delijn.be/stops/505654", "https://data.delijn.be/stops/505697"], ["https://data.delijn.be/stops/205110", "https://data.delijn.be/stops/205114"], ["https://data.delijn.be/stops/501212", "https://data.delijn.be/stops/501310"], ["https://data.delijn.be/stops/307551", "https://data.delijn.be/stops/307552"], ["https://data.delijn.be/stops/504063", "https://data.delijn.be/stops/509065"], ["https://data.delijn.be/stops/508303", "https://data.delijn.be/stops/508315"], ["https://data.delijn.be/stops/502730", "https://data.delijn.be/stops/507087"], ["https://data.delijn.be/stops/105968", "https://data.delijn.be/stops/108945"], ["https://data.delijn.be/stops/400208", "https://data.delijn.be/stops/400211"], ["https://data.delijn.be/stops/406403", "https://data.delijn.be/stops/406404"], ["https://data.delijn.be/stops/106670", "https://data.delijn.be/stops/108017"], ["https://data.delijn.be/stops/200685", "https://data.delijn.be/stops/208653"], ["https://data.delijn.be/stops/502202", "https://data.delijn.be/stops/503812"], ["https://data.delijn.be/stops/505349", "https://data.delijn.be/stops/505724"], ["https://data.delijn.be/stops/504835", "https://data.delijn.be/stops/505207"], ["https://data.delijn.be/stops/406211", "https://data.delijn.be/stops/408922"], ["https://data.delijn.be/stops/504444", "https://data.delijn.be/stops/504701"], ["https://data.delijn.be/stops/503835", "https://data.delijn.be/stops/504816"], ["https://data.delijn.be/stops/504612", "https://data.delijn.be/stops/509412"], ["https://data.delijn.be/stops/301343", "https://data.delijn.be/stops/301388"], ["https://data.delijn.be/stops/202926", "https://data.delijn.be/stops/203926"], ["https://data.delijn.be/stops/501172", "https://data.delijn.be/stops/506172"], ["https://data.delijn.be/stops/304714", "https://data.delijn.be/stops/304715"], ["https://data.delijn.be/stops/200345", "https://data.delijn.be/stops/211095"], ["https://data.delijn.be/stops/106268", "https://data.delijn.be/stops/106270"], ["https://data.delijn.be/stops/303478", "https://data.delijn.be/stops/308636"], ["https://data.delijn.be/stops/307212", "https://data.delijn.be/stops/307214"], ["https://data.delijn.be/stops/503840", "https://data.delijn.be/stops/505226"], ["https://data.delijn.be/stops/406615", "https://data.delijn.be/stops/406623"], ["https://data.delijn.be/stops/206719", "https://data.delijn.be/stops/207653"], ["https://data.delijn.be/stops/302410", "https://data.delijn.be/stops/302411"], ["https://data.delijn.be/stops/409082", "https://data.delijn.be/stops/409083"], ["https://data.delijn.be/stops/503540", "https://data.delijn.be/stops/503552"], ["https://data.delijn.be/stops/204592", "https://data.delijn.be/stops/205149"], ["https://data.delijn.be/stops/302755", "https://data.delijn.be/stops/302763"], ["https://data.delijn.be/stops/501444", "https://data.delijn.be/stops/506444"], ["https://data.delijn.be/stops/403276", "https://data.delijn.be/stops/408516"], ["https://data.delijn.be/stops/206536", "https://data.delijn.be/stops/207535"], ["https://data.delijn.be/stops/105768", "https://data.delijn.be/stops/105769"], ["https://data.delijn.be/stops/108746", "https://data.delijn.be/stops/109561"], ["https://data.delijn.be/stops/402150", "https://data.delijn.be/stops/402155"], ["https://data.delijn.be/stops/505177", "https://data.delijn.be/stops/507719"], ["https://data.delijn.be/stops/204997", "https://data.delijn.be/stops/508642"], ["https://data.delijn.be/stops/200576", "https://data.delijn.be/stops/201576"], ["https://data.delijn.be/stops/307775", "https://data.delijn.be/stops/307778"], ["https://data.delijn.be/stops/502487", "https://data.delijn.be/stops/502641"], ["https://data.delijn.be/stops/305282", "https://data.delijn.be/stops/308710"], ["https://data.delijn.be/stops/106608", "https://data.delijn.be/stops/109649"], ["https://data.delijn.be/stops/302503", "https://data.delijn.be/stops/302704"], ["https://data.delijn.be/stops/200388", "https://data.delijn.be/stops/209331"], ["https://data.delijn.be/stops/501254", "https://data.delijn.be/stops/506254"], ["https://data.delijn.be/stops/401628", "https://data.delijn.be/stops/401629"], ["https://data.delijn.be/stops/104025", "https://data.delijn.be/stops/109884"], ["https://data.delijn.be/stops/503370", "https://data.delijn.be/stops/503440"], ["https://data.delijn.be/stops/102260", "https://data.delijn.be/stops/109683"], ["https://data.delijn.be/stops/508523", "https://data.delijn.be/stops/509777"], ["https://data.delijn.be/stops/401123", "https://data.delijn.be/stops/408958"], ["https://data.delijn.be/stops/501528", "https://data.delijn.be/stops/501545"], ["https://data.delijn.be/stops/406989", "https://data.delijn.be/stops/408380"], ["https://data.delijn.be/stops/109311", "https://data.delijn.be/stops/109313"], ["https://data.delijn.be/stops/406945", "https://data.delijn.be/stops/409453"], ["https://data.delijn.be/stops/401519", "https://data.delijn.be/stops/401530"], ["https://data.delijn.be/stops/102059", "https://data.delijn.be/stops/102062"], ["https://data.delijn.be/stops/502374", "https://data.delijn.be/stops/505225"], ["https://data.delijn.be/stops/105551", "https://data.delijn.be/stops/109624"], ["https://data.delijn.be/stops/208370", "https://data.delijn.be/stops/209193"], ["https://data.delijn.be/stops/204716", "https://data.delijn.be/stops/205696"], ["https://data.delijn.be/stops/405838", "https://data.delijn.be/stops/409759"], ["https://data.delijn.be/stops/206117", "https://data.delijn.be/stops/207810"], ["https://data.delijn.be/stops/201759", "https://data.delijn.be/stops/201782"], ["https://data.delijn.be/stops/200150", "https://data.delijn.be/stops/201513"], ["https://data.delijn.be/stops/307636", "https://data.delijn.be/stops/307691"], ["https://data.delijn.be/stops/109246", "https://data.delijn.be/stops/109267"], ["https://data.delijn.be/stops/207441", "https://data.delijn.be/stops/209690"], ["https://data.delijn.be/stops/402563", "https://data.delijn.be/stops/407806"], ["https://data.delijn.be/stops/302769", "https://data.delijn.be/stops/308911"], ["https://data.delijn.be/stops/400480", "https://data.delijn.be/stops/400481"], ["https://data.delijn.be/stops/209001", "https://data.delijn.be/stops/209158"], ["https://data.delijn.be/stops/301637", "https://data.delijn.be/stops/306144"], ["https://data.delijn.be/stops/204911", "https://data.delijn.be/stops/205922"], ["https://data.delijn.be/stops/204292", "https://data.delijn.be/stops/205531"], ["https://data.delijn.be/stops/206266", "https://data.delijn.be/stops/206524"], ["https://data.delijn.be/stops/502287", "https://data.delijn.be/stops/502295"], ["https://data.delijn.be/stops/206243", "https://data.delijn.be/stops/207403"], ["https://data.delijn.be/stops/507270", "https://data.delijn.be/stops/507466"], ["https://data.delijn.be/stops/404959", "https://data.delijn.be/stops/404963"], ["https://data.delijn.be/stops/308259", "https://data.delijn.be/stops/308293"], ["https://data.delijn.be/stops/307248", "https://data.delijn.be/stops/307249"], ["https://data.delijn.be/stops/200607", "https://data.delijn.be/stops/504771"], ["https://data.delijn.be/stops/508743", "https://data.delijn.be/stops/509866"], ["https://data.delijn.be/stops/208508", "https://data.delijn.be/stops/209508"], ["https://data.delijn.be/stops/503738", "https://data.delijn.be/stops/508732"], ["https://data.delijn.be/stops/106916", "https://data.delijn.be/stops/107263"], ["https://data.delijn.be/stops/302415", "https://data.delijn.be/stops/307110"], ["https://data.delijn.be/stops/206762", "https://data.delijn.be/stops/209565"], ["https://data.delijn.be/stops/207549", "https://data.delijn.be/stops/207648"], ["https://data.delijn.be/stops/400366", "https://data.delijn.be/stops/406769"], ["https://data.delijn.be/stops/101509", "https://data.delijn.be/stops/305994"], ["https://data.delijn.be/stops/504011", "https://data.delijn.be/stops/505911"], ["https://data.delijn.be/stops/101652", "https://data.delijn.be/stops/108799"], ["https://data.delijn.be/stops/105373", "https://data.delijn.be/stops/107504"], ["https://data.delijn.be/stops/300308", "https://data.delijn.be/stops/300536"], ["https://data.delijn.be/stops/105878", "https://data.delijn.be/stops/105881"], ["https://data.delijn.be/stops/302915", "https://data.delijn.be/stops/303231"], ["https://data.delijn.be/stops/108613", "https://data.delijn.be/stops/301915"], ["https://data.delijn.be/stops/407112", "https://data.delijn.be/stops/407327"], ["https://data.delijn.be/stops/206908", "https://data.delijn.be/stops/207908"], ["https://data.delijn.be/stops/501078", "https://data.delijn.be/stops/501083"], ["https://data.delijn.be/stops/503668", "https://data.delijn.be/stops/508669"], ["https://data.delijn.be/stops/407262", "https://data.delijn.be/stops/407335"], ["https://data.delijn.be/stops/508186", "https://data.delijn.be/stops/508406"], ["https://data.delijn.be/stops/405060", "https://data.delijn.be/stops/405114"], ["https://data.delijn.be/stops/402172", "https://data.delijn.be/stops/402484"], ["https://data.delijn.be/stops/206930", "https://data.delijn.be/stops/209126"], ["https://data.delijn.be/stops/503544", "https://data.delijn.be/stops/508550"], ["https://data.delijn.be/stops/301130", "https://data.delijn.be/stops/302872"], ["https://data.delijn.be/stops/507452", "https://data.delijn.be/stops/507461"], ["https://data.delijn.be/stops/302887", "https://data.delijn.be/stops/302897"], ["https://data.delijn.be/stops/206120", "https://data.delijn.be/stops/217016"], ["https://data.delijn.be/stops/502721", "https://data.delijn.be/stops/507722"], ["https://data.delijn.be/stops/105022", "https://data.delijn.be/stops/107298"], ["https://data.delijn.be/stops/102062", "https://data.delijn.be/stops/103073"], ["https://data.delijn.be/stops/303616", "https://data.delijn.be/stops/304716"], ["https://data.delijn.be/stops/307644", "https://data.delijn.be/stops/307690"], ["https://data.delijn.be/stops/200879", "https://data.delijn.be/stops/200895"], ["https://data.delijn.be/stops/401330", "https://data.delijn.be/stops/401380"], ["https://data.delijn.be/stops/408713", "https://data.delijn.be/stops/410343"], ["https://data.delijn.be/stops/303475", "https://data.delijn.be/stops/308065"], ["https://data.delijn.be/stops/504636", "https://data.delijn.be/stops/505311"], ["https://data.delijn.be/stops/101934", "https://data.delijn.be/stops/107744"], ["https://data.delijn.be/stops/503944", "https://data.delijn.be/stops/503996"], ["https://data.delijn.be/stops/303842", "https://data.delijn.be/stops/303850"], ["https://data.delijn.be/stops/503210", "https://data.delijn.be/stops/507738"], ["https://data.delijn.be/stops/102112", "https://data.delijn.be/stops/102846"], ["https://data.delijn.be/stops/206988", "https://data.delijn.be/stops/207977"], ["https://data.delijn.be/stops/101671", "https://data.delijn.be/stops/406843"], ["https://data.delijn.be/stops/302452", "https://data.delijn.be/stops/302459"], ["https://data.delijn.be/stops/301434", "https://data.delijn.be/stops/301444"], ["https://data.delijn.be/stops/406164", "https://data.delijn.be/stops/406167"], ["https://data.delijn.be/stops/206863", "https://data.delijn.be/stops/207047"], ["https://data.delijn.be/stops/201472", "https://data.delijn.be/stops/211061"], ["https://data.delijn.be/stops/106665", "https://data.delijn.be/stops/106666"], ["https://data.delijn.be/stops/107365", "https://data.delijn.be/stops/107900"], ["https://data.delijn.be/stops/101015", "https://data.delijn.be/stops/102986"], ["https://data.delijn.be/stops/201572", "https://data.delijn.be/stops/202194"], ["https://data.delijn.be/stops/409581", "https://data.delijn.be/stops/409585"], ["https://data.delijn.be/stops/401562", "https://data.delijn.be/stops/408469"], ["https://data.delijn.be/stops/400597", "https://data.delijn.be/stops/400608"], ["https://data.delijn.be/stops/208045", "https://data.delijn.be/stops/209846"], ["https://data.delijn.be/stops/105598", "https://data.delijn.be/stops/105599"], ["https://data.delijn.be/stops/108230", "https://data.delijn.be/stops/108235"], ["https://data.delijn.be/stops/300896", "https://data.delijn.be/stops/300897"], ["https://data.delijn.be/stops/200559", "https://data.delijn.be/stops/201560"], ["https://data.delijn.be/stops/401448", "https://data.delijn.be/stops/401470"], ["https://data.delijn.be/stops/400630", "https://data.delijn.be/stops/403036"], ["https://data.delijn.be/stops/405566", "https://data.delijn.be/stops/405570"], ["https://data.delijn.be/stops/102454", "https://data.delijn.be/stops/109013"], ["https://data.delijn.be/stops/200731", "https://data.delijn.be/stops/202567"], ["https://data.delijn.be/stops/201764", "https://data.delijn.be/stops/209274"], ["https://data.delijn.be/stops/403041", "https://data.delijn.be/stops/403059"], ["https://data.delijn.be/stops/401128", "https://data.delijn.be/stops/401151"], ["https://data.delijn.be/stops/405144", "https://data.delijn.be/stops/405159"], ["https://data.delijn.be/stops/102757", "https://data.delijn.be/stops/107060"], ["https://data.delijn.be/stops/303465", "https://data.delijn.be/stops/303492"], ["https://data.delijn.be/stops/204411", "https://data.delijn.be/stops/205020"], ["https://data.delijn.be/stops/303628", "https://data.delijn.be/stops/307504"], ["https://data.delijn.be/stops/404451", "https://data.delijn.be/stops/404560"], ["https://data.delijn.be/stops/200585", "https://data.delijn.be/stops/201585"], ["https://data.delijn.be/stops/206883", "https://data.delijn.be/stops/206915"], ["https://data.delijn.be/stops/304071", "https://data.delijn.be/stops/304086"], ["https://data.delijn.be/stops/307167", "https://data.delijn.be/stops/307194"], ["https://data.delijn.be/stops/206287", "https://data.delijn.be/stops/207877"], ["https://data.delijn.be/stops/200286", "https://data.delijn.be/stops/201381"], ["https://data.delijn.be/stops/304840", "https://data.delijn.be/stops/304857"], ["https://data.delijn.be/stops/301774", "https://data.delijn.be/stops/301783"], ["https://data.delijn.be/stops/101223", "https://data.delijn.be/stops/107793"], ["https://data.delijn.be/stops/206595", "https://data.delijn.be/stops/209515"], ["https://data.delijn.be/stops/508897", "https://data.delijn.be/stops/509941"], ["https://data.delijn.be/stops/109002", "https://data.delijn.be/stops/109006"], ["https://data.delijn.be/stops/402936", "https://data.delijn.be/stops/404073"], ["https://data.delijn.be/stops/302586", "https://data.delijn.be/stops/302678"], ["https://data.delijn.be/stops/304936", "https://data.delijn.be/stops/308019"], ["https://data.delijn.be/stops/201951", "https://data.delijn.be/stops/202428"], ["https://data.delijn.be/stops/301032", "https://data.delijn.be/stops/301033"], ["https://data.delijn.be/stops/202616", "https://data.delijn.be/stops/203617"], ["https://data.delijn.be/stops/503574", "https://data.delijn.be/stops/504539"], ["https://data.delijn.be/stops/503027", "https://data.delijn.be/stops/508026"], ["https://data.delijn.be/stops/201949", "https://data.delijn.be/stops/203944"], ["https://data.delijn.be/stops/217007", "https://data.delijn.be/stops/217009"], ["https://data.delijn.be/stops/502393", "https://data.delijn.be/stops/507393"], ["https://data.delijn.be/stops/106603", "https://data.delijn.be/stops/107211"], ["https://data.delijn.be/stops/303668", "https://data.delijn.be/stops/304641"], ["https://data.delijn.be/stops/201532", "https://data.delijn.be/stops/203900"], ["https://data.delijn.be/stops/405571", "https://data.delijn.be/stops/405578"], ["https://data.delijn.be/stops/300162", "https://data.delijn.be/stops/301225"], ["https://data.delijn.be/stops/101848", "https://data.delijn.be/stops/107227"], ["https://data.delijn.be/stops/500563", "https://data.delijn.be/stops/501128"], ["https://data.delijn.be/stops/300339", "https://data.delijn.be/stops/300367"], ["https://data.delijn.be/stops/102521", "https://data.delijn.be/stops/103963"], ["https://data.delijn.be/stops/200049", "https://data.delijn.be/stops/201191"], ["https://data.delijn.be/stops/206418", "https://data.delijn.be/stops/207659"], ["https://data.delijn.be/stops/204977", "https://data.delijn.be/stops/205977"], ["https://data.delijn.be/stops/405618", "https://data.delijn.be/stops/409515"], ["https://data.delijn.be/stops/406154", "https://data.delijn.be/stops/406155"], ["https://data.delijn.be/stops/307277", "https://data.delijn.be/stops/308122"], ["https://data.delijn.be/stops/200149", "https://data.delijn.be/stops/201017"], ["https://data.delijn.be/stops/208291", "https://data.delijn.be/stops/209291"], ["https://data.delijn.be/stops/206440", "https://data.delijn.be/stops/207440"], ["https://data.delijn.be/stops/304553", "https://data.delijn.be/stops/304554"], ["https://data.delijn.be/stops/200934", "https://data.delijn.be/stops/202689"], ["https://data.delijn.be/stops/208107", "https://data.delijn.be/stops/209455"], ["https://data.delijn.be/stops/501390", "https://data.delijn.be/stops/501500"], ["https://data.delijn.be/stops/209146", "https://data.delijn.be/stops/209147"], ["https://data.delijn.be/stops/505128", "https://data.delijn.be/stops/508661"], ["https://data.delijn.be/stops/402297", "https://data.delijn.be/stops/405571"], ["https://data.delijn.be/stops/501679", "https://data.delijn.be/stops/506430"], ["https://data.delijn.be/stops/500011", "https://data.delijn.be/stops/502337"], ["https://data.delijn.be/stops/200291", "https://data.delijn.be/stops/211095"], ["https://data.delijn.be/stops/506320", "https://data.delijn.be/stops/506357"], ["https://data.delijn.be/stops/300737", "https://data.delijn.be/stops/300738"], ["https://data.delijn.be/stops/306061", "https://data.delijn.be/stops/306062"], ["https://data.delijn.be/stops/104819", "https://data.delijn.be/stops/105543"], ["https://data.delijn.be/stops/301679", "https://data.delijn.be/stops/308556"], ["https://data.delijn.be/stops/502196", "https://data.delijn.be/stops/508312"], ["https://data.delijn.be/stops/204409", "https://data.delijn.be/stops/205200"], ["https://data.delijn.be/stops/105463", "https://data.delijn.be/stops/105464"], ["https://data.delijn.be/stops/202678", "https://data.delijn.be/stops/202693"], ["https://data.delijn.be/stops/405225", "https://data.delijn.be/stops/409348"], ["https://data.delijn.be/stops/305052", "https://data.delijn.be/stops/305056"], ["https://data.delijn.be/stops/207301", "https://data.delijn.be/stops/207737"], ["https://data.delijn.be/stops/200336", "https://data.delijn.be/stops/202193"], ["https://data.delijn.be/stops/405165", "https://data.delijn.be/stops/405173"], ["https://data.delijn.be/stops/102585", "https://data.delijn.be/stops/102825"], ["https://data.delijn.be/stops/205233", "https://data.delijn.be/stops/205234"], ["https://data.delijn.be/stops/403096", "https://data.delijn.be/stops/403421"], ["https://data.delijn.be/stops/400384", "https://data.delijn.be/stops/400385"], ["https://data.delijn.be/stops/107990", "https://data.delijn.be/stops/109025"], ["https://data.delijn.be/stops/302640", "https://data.delijn.be/stops/304099"], ["https://data.delijn.be/stops/300789", "https://data.delijn.be/stops/306117"], ["https://data.delijn.be/stops/204179", "https://data.delijn.be/stops/206393"], ["https://data.delijn.be/stops/400837", "https://data.delijn.be/stops/404331"], ["https://data.delijn.be/stops/501150", "https://data.delijn.be/stops/501644"], ["https://data.delijn.be/stops/304688", "https://data.delijn.be/stops/307162"], ["https://data.delijn.be/stops/503178", "https://data.delijn.be/stops/508172"], ["https://data.delijn.be/stops/400107", "https://data.delijn.be/stops/409144"], ["https://data.delijn.be/stops/305082", "https://data.delijn.be/stops/306961"], ["https://data.delijn.be/stops/504003", "https://data.delijn.be/stops/508494"], ["https://data.delijn.be/stops/200219", "https://data.delijn.be/stops/203543"], ["https://data.delijn.be/stops/307950", "https://data.delijn.be/stops/308027"], ["https://data.delijn.be/stops/400100", "https://data.delijn.be/stops/401976"], ["https://data.delijn.be/stops/501016", "https://data.delijn.be/stops/506016"], ["https://data.delijn.be/stops/106887", "https://data.delijn.be/stops/109900"], ["https://data.delijn.be/stops/301278", "https://data.delijn.be/stops/307034"], ["https://data.delijn.be/stops/504812", "https://data.delijn.be/stops/508468"], ["https://data.delijn.be/stops/202514", "https://data.delijn.be/stops/203515"], ["https://data.delijn.be/stops/301106", "https://data.delijn.be/stops/304600"], ["https://data.delijn.be/stops/402585", "https://data.delijn.be/stops/402645"], ["https://data.delijn.be/stops/207534", "https://data.delijn.be/stops/207548"], ["https://data.delijn.be/stops/503677", "https://data.delijn.be/stops/503678"], ["https://data.delijn.be/stops/402178", "https://data.delijn.be/stops/402483"], ["https://data.delijn.be/stops/507955", "https://data.delijn.be/stops/507956"], ["https://data.delijn.be/stops/200141", "https://data.delijn.be/stops/201141"], ["https://data.delijn.be/stops/400331", "https://data.delijn.be/stops/400332"], ["https://data.delijn.be/stops/200917", "https://data.delijn.be/stops/203044"], ["https://data.delijn.be/stops/107700", "https://data.delijn.be/stops/107906"], ["https://data.delijn.be/stops/402068", "https://data.delijn.be/stops/402763"], ["https://data.delijn.be/stops/307112", "https://data.delijn.be/stops/307113"], ["https://data.delijn.be/stops/202455", "https://data.delijn.be/stops/203455"], ["https://data.delijn.be/stops/400252", "https://data.delijn.be/stops/400385"], ["https://data.delijn.be/stops/301468", "https://data.delijn.be/stops/306306"], ["https://data.delijn.be/stops/109148", "https://data.delijn.be/stops/109149"], ["https://data.delijn.be/stops/503762", "https://data.delijn.be/stops/508762"], ["https://data.delijn.be/stops/405676", "https://data.delijn.be/stops/405687"], ["https://data.delijn.be/stops/300884", "https://data.delijn.be/stops/300886"], ["https://data.delijn.be/stops/101961", "https://data.delijn.be/stops/108764"], ["https://data.delijn.be/stops/300626", "https://data.delijn.be/stops/307860"], ["https://data.delijn.be/stops/501694", "https://data.delijn.be/stops/507366"], ["https://data.delijn.be/stops/303980", "https://data.delijn.be/stops/306593"], ["https://data.delijn.be/stops/107397", "https://data.delijn.be/stops/107398"], ["https://data.delijn.be/stops/103007", "https://data.delijn.be/stops/106423"], ["https://data.delijn.be/stops/503581", "https://data.delijn.be/stops/508579"], ["https://data.delijn.be/stops/204665", "https://data.delijn.be/stops/204689"], ["https://data.delijn.be/stops/208098", "https://data.delijn.be/stops/209097"], ["https://data.delijn.be/stops/304728", "https://data.delijn.be/stops/308699"], ["https://data.delijn.be/stops/107553", "https://data.delijn.be/stops/109377"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/501633"], ["https://data.delijn.be/stops/102485", "https://data.delijn.be/stops/108570"], ["https://data.delijn.be/stops/103114", "https://data.delijn.be/stops/106817"], ["https://data.delijn.be/stops/500994", "https://data.delijn.be/stops/505143"], ["https://data.delijn.be/stops/206096", "https://data.delijn.be/stops/206724"], ["https://data.delijn.be/stops/502739", "https://data.delijn.be/stops/506086"], ["https://data.delijn.be/stops/304120", "https://data.delijn.be/stops/307545"], ["https://data.delijn.be/stops/108733", "https://data.delijn.be/stops/108736"], ["https://data.delijn.be/stops/504962", "https://data.delijn.be/stops/504988"], ["https://data.delijn.be/stops/103088", "https://data.delijn.be/stops/107477"], ["https://data.delijn.be/stops/200834", "https://data.delijn.be/stops/200835"], ["https://data.delijn.be/stops/404200", "https://data.delijn.be/stops/404217"], ["https://data.delijn.be/stops/207349", "https://data.delijn.be/stops/207729"], ["https://data.delijn.be/stops/504386", "https://data.delijn.be/stops/509386"], ["https://data.delijn.be/stops/106821", "https://data.delijn.be/stops/106985"], ["https://data.delijn.be/stops/108238", "https://data.delijn.be/stops/108239"], ["https://data.delijn.be/stops/407056", "https://data.delijn.be/stops/407057"], ["https://data.delijn.be/stops/503229", "https://data.delijn.be/stops/508229"], ["https://data.delijn.be/stops/400517", "https://data.delijn.be/stops/403898"], ["https://data.delijn.be/stops/200806", "https://data.delijn.be/stops/202055"], ["https://data.delijn.be/stops/304728", "https://data.delijn.be/stops/304758"], ["https://data.delijn.be/stops/201652", "https://data.delijn.be/stops/202316"], ["https://data.delijn.be/stops/102646", "https://data.delijn.be/stops/109912"], ["https://data.delijn.be/stops/300347", "https://data.delijn.be/stops/304547"], ["https://data.delijn.be/stops/201182", "https://data.delijn.be/stops/201671"], ["https://data.delijn.be/stops/302265", "https://data.delijn.be/stops/304357"], ["https://data.delijn.be/stops/502745", "https://data.delijn.be/stops/505067"], ["https://data.delijn.be/stops/502598", "https://data.delijn.be/stops/505349"], ["https://data.delijn.be/stops/108296", "https://data.delijn.be/stops/108297"], ["https://data.delijn.be/stops/207703", "https://data.delijn.be/stops/207705"], ["https://data.delijn.be/stops/206715", "https://data.delijn.be/stops/206728"], ["https://data.delijn.be/stops/402196", "https://data.delijn.be/stops/402228"], ["https://data.delijn.be/stops/103222", "https://data.delijn.be/stops/107903"], ["https://data.delijn.be/stops/404459", "https://data.delijn.be/stops/404460"], ["https://data.delijn.be/stops/305527", "https://data.delijn.be/stops/305554"], ["https://data.delijn.be/stops/300627", "https://data.delijn.be/stops/300628"], ["https://data.delijn.be/stops/408569", "https://data.delijn.be/stops/408570"], ["https://data.delijn.be/stops/307525", "https://data.delijn.be/stops/307526"], ["https://data.delijn.be/stops/107618", "https://data.delijn.be/stops/108691"], ["https://data.delijn.be/stops/208621", "https://data.delijn.be/stops/219012"], ["https://data.delijn.be/stops/102571", "https://data.delijn.be/stops/109162"], ["https://data.delijn.be/stops/501059", "https://data.delijn.be/stops/505359"], ["https://data.delijn.be/stops/106525", "https://data.delijn.be/stops/106526"], ["https://data.delijn.be/stops/401600", "https://data.delijn.be/stops/405837"], ["https://data.delijn.be/stops/206764", "https://data.delijn.be/stops/307312"], ["https://data.delijn.be/stops/101513", "https://data.delijn.be/stops/101535"], ["https://data.delijn.be/stops/402826", "https://data.delijn.be/stops/402827"], ["https://data.delijn.be/stops/503883", "https://data.delijn.be/stops/503885"], ["https://data.delijn.be/stops/305223", "https://data.delijn.be/stops/307533"], ["https://data.delijn.be/stops/208487", "https://data.delijn.be/stops/209488"], ["https://data.delijn.be/stops/106702", "https://data.delijn.be/stops/106703"], ["https://data.delijn.be/stops/108364", "https://data.delijn.be/stops/108507"], ["https://data.delijn.be/stops/504483", "https://data.delijn.be/stops/504723"], ["https://data.delijn.be/stops/307975", "https://data.delijn.be/stops/307976"], ["https://data.delijn.be/stops/101957", "https://data.delijn.be/stops/109704"], ["https://data.delijn.be/stops/202257", "https://data.delijn.be/stops/203257"], ["https://data.delijn.be/stops/402785", "https://data.delijn.be/stops/402799"], ["https://data.delijn.be/stops/404443", "https://data.delijn.be/stops/405875"], ["https://data.delijn.be/stops/403908", "https://data.delijn.be/stops/403909"], ["https://data.delijn.be/stops/304739", "https://data.delijn.be/stops/308648"], ["https://data.delijn.be/stops/102688", "https://data.delijn.be/stops/106065"], ["https://data.delijn.be/stops/107709", "https://data.delijn.be/stops/107747"], ["https://data.delijn.be/stops/407866", "https://data.delijn.be/stops/408176"], ["https://data.delijn.be/stops/206164", "https://data.delijn.be/stops/303378"], ["https://data.delijn.be/stops/404329", "https://data.delijn.be/stops/404649"], ["https://data.delijn.be/stops/508189", "https://data.delijn.be/stops/508199"], ["https://data.delijn.be/stops/202402", "https://data.delijn.be/stops/202501"], ["https://data.delijn.be/stops/103302", "https://data.delijn.be/stops/105776"], ["https://data.delijn.be/stops/502455", "https://data.delijn.be/stops/507083"], ["https://data.delijn.be/stops/308137", "https://data.delijn.be/stops/308178"], ["https://data.delijn.be/stops/206671", "https://data.delijn.be/stops/207671"], ["https://data.delijn.be/stops/200062", "https://data.delijn.be/stops/200444"], ["https://data.delijn.be/stops/502431", "https://data.delijn.be/stops/507694"], ["https://data.delijn.be/stops/401075", "https://data.delijn.be/stops/401164"], ["https://data.delijn.be/stops/305439", "https://data.delijn.be/stops/305516"], ["https://data.delijn.be/stops/200696", "https://data.delijn.be/stops/208644"], ["https://data.delijn.be/stops/403625", "https://data.delijn.be/stops/403638"], ["https://data.delijn.be/stops/300124", "https://data.delijn.be/stops/306829"], ["https://data.delijn.be/stops/502254", "https://data.delijn.be/stops/505583"], ["https://data.delijn.be/stops/201314", "https://data.delijn.be/stops/201593"], ["https://data.delijn.be/stops/101584", "https://data.delijn.be/stops/105449"], ["https://data.delijn.be/stops/304248", "https://data.delijn.be/stops/304277"], ["https://data.delijn.be/stops/201955", "https://data.delijn.be/stops/203074"], ["https://data.delijn.be/stops/108112", "https://data.delijn.be/stops/108149"], ["https://data.delijn.be/stops/105414", "https://data.delijn.be/stops/105418"], ["https://data.delijn.be/stops/208085", "https://data.delijn.be/stops/209085"], ["https://data.delijn.be/stops/108924", "https://data.delijn.be/stops/109137"], ["https://data.delijn.be/stops/106698", "https://data.delijn.be/stops/106700"], ["https://data.delijn.be/stops/102414", "https://data.delijn.be/stops/102916"], ["https://data.delijn.be/stops/106887", "https://data.delijn.be/stops/106890"], ["https://data.delijn.be/stops/101060", "https://data.delijn.be/stops/101061"], ["https://data.delijn.be/stops/208083", "https://data.delijn.be/stops/209701"], ["https://data.delijn.be/stops/406648", "https://data.delijn.be/stops/406693"], ["https://data.delijn.be/stops/308772", "https://data.delijn.be/stops/308778"], ["https://data.delijn.be/stops/207111", "https://data.delijn.be/stops/306729"], ["https://data.delijn.be/stops/500026", "https://data.delijn.be/stops/501692"], ["https://data.delijn.be/stops/105885", "https://data.delijn.be/stops/108085"], ["https://data.delijn.be/stops/204711", "https://data.delijn.be/stops/205711"], ["https://data.delijn.be/stops/107339", "https://data.delijn.be/stops/107341"], ["https://data.delijn.be/stops/101422", "https://data.delijn.be/stops/106977"], ["https://data.delijn.be/stops/505102", "https://data.delijn.be/stops/505915"], ["https://data.delijn.be/stops/501607", "https://data.delijn.be/stops/501716"], ["https://data.delijn.be/stops/504109", "https://data.delijn.be/stops/509109"], ["https://data.delijn.be/stops/305592", "https://data.delijn.be/stops/308816"], ["https://data.delijn.be/stops/504165", "https://data.delijn.be/stops/505101"], ["https://data.delijn.be/stops/200013", "https://data.delijn.be/stops/201351"], ["https://data.delijn.be/stops/305598", "https://data.delijn.be/stops/305628"], ["https://data.delijn.be/stops/405357", "https://data.delijn.be/stops/409004"], ["https://data.delijn.be/stops/508499", "https://data.delijn.be/stops/509454"], ["https://data.delijn.be/stops/301601", "https://data.delijn.be/stops/301608"], ["https://data.delijn.be/stops/304997", "https://data.delijn.be/stops/305020"], ["https://data.delijn.be/stops/206685", "https://data.delijn.be/stops/207685"], ["https://data.delijn.be/stops/503477", "https://data.delijn.be/stops/508454"], ["https://data.delijn.be/stops/207686", "https://data.delijn.be/stops/207703"], ["https://data.delijn.be/stops/300379", "https://data.delijn.be/stops/300383"], ["https://data.delijn.be/stops/302655", "https://data.delijn.be/stops/308113"], ["https://data.delijn.be/stops/204634", "https://data.delijn.be/stops/204693"], ["https://data.delijn.be/stops/304892", "https://data.delijn.be/stops/304910"], ["https://data.delijn.be/stops/401454", "https://data.delijn.be/stops/407328"], ["https://data.delijn.be/stops/101452", "https://data.delijn.be/stops/102621"], ["https://data.delijn.be/stops/200241", "https://data.delijn.be/stops/201000"], ["https://data.delijn.be/stops/408272", "https://data.delijn.be/stops/408389"], ["https://data.delijn.be/stops/501208", "https://data.delijn.be/stops/506210"], ["https://data.delijn.be/stops/101680", "https://data.delijn.be/stops/102390"], ["https://data.delijn.be/stops/302764", "https://data.delijn.be/stops/308859"], ["https://data.delijn.be/stops/300612", "https://data.delijn.be/stops/303517"], ["https://data.delijn.be/stops/102929", "https://data.delijn.be/stops/106124"], ["https://data.delijn.be/stops/501550", "https://data.delijn.be/stops/501557"], ["https://data.delijn.be/stops/501681", "https://data.delijn.be/stops/506475"], ["https://data.delijn.be/stops/201250", "https://data.delijn.be/stops/210057"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/208241"], ["https://data.delijn.be/stops/208203", "https://data.delijn.be/stops/209202"], ["https://data.delijn.be/stops/208369", "https://data.delijn.be/stops/209369"], ["https://data.delijn.be/stops/407587", "https://data.delijn.be/stops/407596"], ["https://data.delijn.be/stops/401671", "https://data.delijn.be/stops/308276"], ["https://data.delijn.be/stops/402592", "https://data.delijn.be/stops/402600"], ["https://data.delijn.be/stops/301393", "https://data.delijn.be/stops/301395"], ["https://data.delijn.be/stops/300671", "https://data.delijn.be/stops/300676"], ["https://data.delijn.be/stops/106885", "https://data.delijn.be/stops/109901"], ["https://data.delijn.be/stops/106271", "https://data.delijn.be/stops/109625"], ["https://data.delijn.be/stops/303721", "https://data.delijn.be/stops/303745"], ["https://data.delijn.be/stops/104910", "https://data.delijn.be/stops/107310"], ["https://data.delijn.be/stops/502455", "https://data.delijn.be/stops/507455"], ["https://data.delijn.be/stops/504704", "https://data.delijn.be/stops/509032"], ["https://data.delijn.be/stops/508380", "https://data.delijn.be/stops/508427"], ["https://data.delijn.be/stops/503103", "https://data.delijn.be/stops/508102"], ["https://data.delijn.be/stops/303892", "https://data.delijn.be/stops/305579"], ["https://data.delijn.be/stops/202155", "https://data.delijn.be/stops/202156"], ["https://data.delijn.be/stops/207168", "https://data.delijn.be/stops/303841"], ["https://data.delijn.be/stops/208301", "https://data.delijn.be/stops/208303"], ["https://data.delijn.be/stops/202817", "https://data.delijn.be/stops/203819"], ["https://data.delijn.be/stops/506231", "https://data.delijn.be/stops/506769"], ["https://data.delijn.be/stops/101494", "https://data.delijn.be/stops/108294"], ["https://data.delijn.be/stops/105779", "https://data.delijn.be/stops/108013"], ["https://data.delijn.be/stops/104647", "https://data.delijn.be/stops/107983"], ["https://data.delijn.be/stops/302246", "https://data.delijn.be/stops/304032"], ["https://data.delijn.be/stops/503908", "https://data.delijn.be/stops/507070"], ["https://data.delijn.be/stops/200333", "https://data.delijn.be/stops/211084"], ["https://data.delijn.be/stops/202182", "https://data.delijn.be/stops/204237"], ["https://data.delijn.be/stops/208221", "https://data.delijn.be/stops/208593"], ["https://data.delijn.be/stops/400408", "https://data.delijn.be/stops/405537"], ["https://data.delijn.be/stops/404710", "https://data.delijn.be/stops/404758"], ["https://data.delijn.be/stops/307703", "https://data.delijn.be/stops/308592"], ["https://data.delijn.be/stops/300849", "https://data.delijn.be/stops/305318"], ["https://data.delijn.be/stops/206933", "https://data.delijn.be/stops/207933"], ["https://data.delijn.be/stops/403373", "https://data.delijn.be/stops/403510"], ["https://data.delijn.be/stops/504451", "https://data.delijn.be/stops/509452"], ["https://data.delijn.be/stops/307393", "https://data.delijn.be/stops/308641"], ["https://data.delijn.be/stops/402707", "https://data.delijn.be/stops/306391"], ["https://data.delijn.be/stops/406621", "https://data.delijn.be/stops/406698"], ["https://data.delijn.be/stops/204459", "https://data.delijn.be/stops/205460"], ["https://data.delijn.be/stops/106146", "https://data.delijn.be/stops/106148"], ["https://data.delijn.be/stops/407988", "https://data.delijn.be/stops/407990"], ["https://data.delijn.be/stops/200343", "https://data.delijn.be/stops/210106"], ["https://data.delijn.be/stops/205171", "https://data.delijn.be/stops/205770"], ["https://data.delijn.be/stops/403213", "https://data.delijn.be/stops/405127"], ["https://data.delijn.be/stops/108794", "https://data.delijn.be/stops/108796"], ["https://data.delijn.be/stops/506321", "https://data.delijn.be/stops/506326"], ["https://data.delijn.be/stops/408198", "https://data.delijn.be/stops/409340"], ["https://data.delijn.be/stops/301238", "https://data.delijn.be/stops/301242"], ["https://data.delijn.be/stops/106797", "https://data.delijn.be/stops/106798"], ["https://data.delijn.be/stops/204985", "https://data.delijn.be/stops/208352"], ["https://data.delijn.be/stops/203007", "https://data.delijn.be/stops/203008"], ["https://data.delijn.be/stops/400553", "https://data.delijn.be/stops/403584"], ["https://data.delijn.be/stops/507260", "https://data.delijn.be/stops/507264"], ["https://data.delijn.be/stops/301452", "https://data.delijn.be/stops/302520"], ["https://data.delijn.be/stops/103290", "https://data.delijn.be/stops/103378"], ["https://data.delijn.be/stops/305555", "https://data.delijn.be/stops/308683"], ["https://data.delijn.be/stops/208144", "https://data.delijn.be/stops/209698"], ["https://data.delijn.be/stops/407936", "https://data.delijn.be/stops/407938"], ["https://data.delijn.be/stops/408605", "https://data.delijn.be/stops/408700"], ["https://data.delijn.be/stops/306592", "https://data.delijn.be/stops/306593"], ["https://data.delijn.be/stops/404544", "https://data.delijn.be/stops/404545"], ["https://data.delijn.be/stops/503294", "https://data.delijn.be/stops/505283"], ["https://data.delijn.be/stops/301480", "https://data.delijn.be/stops/301483"], ["https://data.delijn.be/stops/208483", "https://data.delijn.be/stops/209486"], ["https://data.delijn.be/stops/206427", "https://data.delijn.be/stops/207427"], ["https://data.delijn.be/stops/206222", "https://data.delijn.be/stops/207863"], ["https://data.delijn.be/stops/401899", "https://data.delijn.be/stops/406417"], ["https://data.delijn.be/stops/503610", "https://data.delijn.be/stops/503615"], ["https://data.delijn.be/stops/201815", "https://data.delijn.be/stops/208251"], ["https://data.delijn.be/stops/208341", "https://data.delijn.be/stops/208387"], ["https://data.delijn.be/stops/501477", "https://data.delijn.be/stops/506353"], ["https://data.delijn.be/stops/306617", "https://data.delijn.be/stops/306627"], ["https://data.delijn.be/stops/402083", "https://data.delijn.be/stops/408469"], ["https://data.delijn.be/stops/401997", "https://data.delijn.be/stops/404531"], ["https://data.delijn.be/stops/301623", "https://data.delijn.be/stops/301630"], ["https://data.delijn.be/stops/401639", "https://data.delijn.be/stops/308211"], ["https://data.delijn.be/stops/403884", "https://data.delijn.be/stops/405543"], ["https://data.delijn.be/stops/205699", "https://data.delijn.be/stops/205700"], ["https://data.delijn.be/stops/305287", "https://data.delijn.be/stops/305331"], ["https://data.delijn.be/stops/308696", "https://data.delijn.be/stops/308697"], ["https://data.delijn.be/stops/203656", "https://data.delijn.be/stops/203657"], ["https://data.delijn.be/stops/301329", "https://data.delijn.be/stops/306254"], ["https://data.delijn.be/stops/101845", "https://data.delijn.be/stops/102443"], ["https://data.delijn.be/stops/402419", "https://data.delijn.be/stops/402433"], ["https://data.delijn.be/stops/304164", "https://data.delijn.be/stops/304166"], ["https://data.delijn.be/stops/201070", "https://data.delijn.be/stops/208845"], ["https://data.delijn.be/stops/503644", "https://data.delijn.be/stops/509951"], ["https://data.delijn.be/stops/400565", "https://data.delijn.be/stops/404153"], ["https://data.delijn.be/stops/207789", "https://data.delijn.be/stops/208372"], ["https://data.delijn.be/stops/208592", "https://data.delijn.be/stops/209221"], ["https://data.delijn.be/stops/200026", "https://data.delijn.be/stops/200446"], ["https://data.delijn.be/stops/200978", "https://data.delijn.be/stops/208620"], ["https://data.delijn.be/stops/509726", "https://data.delijn.be/stops/509727"], ["https://data.delijn.be/stops/200455", "https://data.delijn.be/stops/201459"], ["https://data.delijn.be/stops/301352", "https://data.delijn.be/stops/301353"], ["https://data.delijn.be/stops/300628", "https://data.delijn.be/stops/300710"], ["https://data.delijn.be/stops/301811", "https://data.delijn.be/stops/301812"], ["https://data.delijn.be/stops/406452", "https://data.delijn.be/stops/410226"], ["https://data.delijn.be/stops/302804", "https://data.delijn.be/stops/306176"], ["https://data.delijn.be/stops/301233", "https://data.delijn.be/stops/307908"], ["https://data.delijn.be/stops/301653", "https://data.delijn.be/stops/303936"], ["https://data.delijn.be/stops/102912", "https://data.delijn.be/stops/106713"], ["https://data.delijn.be/stops/108526", "https://data.delijn.be/stops/108538"], ["https://data.delijn.be/stops/202001", "https://data.delijn.be/stops/203001"], ["https://data.delijn.be/stops/103303", "https://data.delijn.be/stops/404726"], ["https://data.delijn.be/stops/505567", "https://data.delijn.be/stops/505568"], ["https://data.delijn.be/stops/307535", "https://data.delijn.be/stops/307552"], ["https://data.delijn.be/stops/403424", "https://data.delijn.be/stops/404970"], ["https://data.delijn.be/stops/205620", "https://data.delijn.be/stops/205755"], ["https://data.delijn.be/stops/105842", "https://data.delijn.be/stops/105843"], ["https://data.delijn.be/stops/503191", "https://data.delijn.be/stops/508193"], ["https://data.delijn.be/stops/402143", "https://data.delijn.be/stops/402397"], ["https://data.delijn.be/stops/402159", "https://data.delijn.be/stops/407955"], ["https://data.delijn.be/stops/302055", "https://data.delijn.be/stops/303185"], ["https://data.delijn.be/stops/200979", "https://data.delijn.be/stops/211026"], ["https://data.delijn.be/stops/107297", "https://data.delijn.be/stops/107298"], ["https://data.delijn.be/stops/406891", "https://data.delijn.be/stops/406895"], ["https://data.delijn.be/stops/301814", "https://data.delijn.be/stops/305567"], ["https://data.delijn.be/stops/106107", "https://data.delijn.be/stops/106108"], ["https://data.delijn.be/stops/206625", "https://data.delijn.be/stops/206626"], ["https://data.delijn.be/stops/301598", "https://data.delijn.be/stops/301615"], ["https://data.delijn.be/stops/202290", "https://data.delijn.be/stops/202292"], ["https://data.delijn.be/stops/400839", "https://data.delijn.be/stops/409573"], ["https://data.delijn.be/stops/303617", "https://data.delijn.be/stops/306699"], ["https://data.delijn.be/stops/507731", "https://data.delijn.be/stops/507732"], ["https://data.delijn.be/stops/504712", "https://data.delijn.be/stops/509388"], ["https://data.delijn.be/stops/200705", "https://data.delijn.be/stops/200706"], ["https://data.delijn.be/stops/402237", "https://data.delijn.be/stops/402481"], ["https://data.delijn.be/stops/509116", "https://data.delijn.be/stops/509643"], ["https://data.delijn.be/stops/407151", "https://data.delijn.be/stops/306781"], ["https://data.delijn.be/stops/501402", "https://data.delijn.be/stops/501603"], ["https://data.delijn.be/stops/209284", "https://data.delijn.be/stops/209285"], ["https://data.delijn.be/stops/108749", "https://data.delijn.be/stops/108751"], ["https://data.delijn.be/stops/206794", "https://data.delijn.be/stops/209050"], ["https://data.delijn.be/stops/505427", "https://data.delijn.be/stops/508481"], ["https://data.delijn.be/stops/205157", "https://data.delijn.be/stops/205582"], ["https://data.delijn.be/stops/306626", "https://data.delijn.be/stops/308456"], ["https://data.delijn.be/stops/108788", "https://data.delijn.be/stops/109757"], ["https://data.delijn.be/stops/308473", "https://data.delijn.be/stops/308489"], ["https://data.delijn.be/stops/406259", "https://data.delijn.be/stops/408416"], ["https://data.delijn.be/stops/503451", "https://data.delijn.be/stops/508390"], ["https://data.delijn.be/stops/206791", "https://data.delijn.be/stops/209566"], ["https://data.delijn.be/stops/503917", "https://data.delijn.be/stops/505250"], ["https://data.delijn.be/stops/503426", "https://data.delijn.be/stops/508446"], ["https://data.delijn.be/stops/303631", "https://data.delijn.be/stops/306400"], ["https://data.delijn.be/stops/106727", "https://data.delijn.be/stops/106729"], ["https://data.delijn.be/stops/401463", "https://data.delijn.be/stops/403164"], ["https://data.delijn.be/stops/501023", "https://data.delijn.be/stops/501031"], ["https://data.delijn.be/stops/102974", "https://data.delijn.be/stops/107141"], ["https://data.delijn.be/stops/503029", "https://data.delijn.be/stops/508026"], ["https://data.delijn.be/stops/408203", "https://data.delijn.be/stops/408277"], ["https://data.delijn.be/stops/206771", "https://data.delijn.be/stops/206797"], ["https://data.delijn.be/stops/206500", "https://data.delijn.be/stops/207500"], ["https://data.delijn.be/stops/201905", "https://data.delijn.be/stops/202516"], ["https://data.delijn.be/stops/204261", "https://data.delijn.be/stops/205473"], ["https://data.delijn.be/stops/405037", "https://data.delijn.be/stops/405069"], ["https://data.delijn.be/stops/502614", "https://data.delijn.be/stops/502641"], ["https://data.delijn.be/stops/303371", "https://data.delijn.be/stops/307031"], ["https://data.delijn.be/stops/107493", "https://data.delijn.be/stops/107494"], ["https://data.delijn.be/stops/105513", "https://data.delijn.be/stops/105514"], ["https://data.delijn.be/stops/108089", "https://data.delijn.be/stops/108691"], ["https://data.delijn.be/stops/408928", "https://data.delijn.be/stops/408944"], ["https://data.delijn.be/stops/501264", "https://data.delijn.be/stops/501286"], ["https://data.delijn.be/stops/501289", "https://data.delijn.be/stops/506289"], ["https://data.delijn.be/stops/106787", "https://data.delijn.be/stops/106797"], ["https://data.delijn.be/stops/304463", "https://data.delijn.be/stops/307694"], ["https://data.delijn.be/stops/408692", "https://data.delijn.be/stops/408697"], ["https://data.delijn.be/stops/400475", "https://data.delijn.be/stops/400480"], ["https://data.delijn.be/stops/106734", "https://data.delijn.be/stops/107199"], ["https://data.delijn.be/stops/503223", "https://data.delijn.be/stops/505943"], ["https://data.delijn.be/stops/109282", "https://data.delijn.be/stops/109283"], ["https://data.delijn.be/stops/501334", "https://data.delijn.be/stops/506349"], ["https://data.delijn.be/stops/502251", "https://data.delijn.be/stops/507250"], ["https://data.delijn.be/stops/105614", "https://data.delijn.be/stops/105616"], ["https://data.delijn.be/stops/500019", "https://data.delijn.be/stops/507047"], ["https://data.delijn.be/stops/503470", "https://data.delijn.be/stops/508469"], ["https://data.delijn.be/stops/109832", "https://data.delijn.be/stops/109833"], ["https://data.delijn.be/stops/400432", "https://data.delijn.be/stops/405132"], ["https://data.delijn.be/stops/207159", "https://data.delijn.be/stops/207448"], ["https://data.delijn.be/stops/302474", "https://data.delijn.be/stops/302732"], ["https://data.delijn.be/stops/203246", "https://data.delijn.be/stops/203247"], ["https://data.delijn.be/stops/501116", "https://data.delijn.be/stops/501693"], ["https://data.delijn.be/stops/305132", "https://data.delijn.be/stops/305172"], ["https://data.delijn.be/stops/200369", "https://data.delijn.be/stops/201267"], ["https://data.delijn.be/stops/504992", "https://data.delijn.be/stops/505984"], ["https://data.delijn.be/stops/102653", "https://data.delijn.be/stops/107788"], ["https://data.delijn.be/stops/206512", "https://data.delijn.be/stops/207512"], ["https://data.delijn.be/stops/304019", "https://data.delijn.be/stops/304073"], ["https://data.delijn.be/stops/200129", "https://data.delijn.be/stops/201323"], ["https://data.delijn.be/stops/301964", "https://data.delijn.be/stops/301988"], ["https://data.delijn.be/stops/107196", "https://data.delijn.be/stops/109772"], ["https://data.delijn.be/stops/406276", "https://data.delijn.be/stops/406277"], ["https://data.delijn.be/stops/105387", "https://data.delijn.be/stops/105626"], ["https://data.delijn.be/stops/405260", "https://data.delijn.be/stops/405262"], ["https://data.delijn.be/stops/400081", "https://data.delijn.be/stops/405644"], ["https://data.delijn.be/stops/501772", "https://data.delijn.be/stops/506474"], ["https://data.delijn.be/stops/502606", "https://data.delijn.be/stops/502607"], ["https://data.delijn.be/stops/207511", "https://data.delijn.be/stops/207598"], ["https://data.delijn.be/stops/404874", "https://data.delijn.be/stops/404875"], ["https://data.delijn.be/stops/210011", "https://data.delijn.be/stops/502275"], ["https://data.delijn.be/stops/107022", "https://data.delijn.be/stops/107023"], ["https://data.delijn.be/stops/200526", "https://data.delijn.be/stops/201668"], ["https://data.delijn.be/stops/400835", "https://data.delijn.be/stops/409536"], ["https://data.delijn.be/stops/303449", "https://data.delijn.be/stops/307067"], ["https://data.delijn.be/stops/404566", "https://data.delijn.be/stops/404568"], ["https://data.delijn.be/stops/401077", "https://data.delijn.be/stops/408092"], ["https://data.delijn.be/stops/403744", "https://data.delijn.be/stops/403877"], ["https://data.delijn.be/stops/302852", "https://data.delijn.be/stops/302853"], ["https://data.delijn.be/stops/400113", "https://data.delijn.be/stops/409156"], ["https://data.delijn.be/stops/404349", "https://data.delijn.be/stops/404355"], ["https://data.delijn.be/stops/503043", "https://data.delijn.be/stops/508043"], ["https://data.delijn.be/stops/503624", "https://data.delijn.be/stops/508632"], ["https://data.delijn.be/stops/305175", "https://data.delijn.be/stops/305176"], ["https://data.delijn.be/stops/208157", "https://data.delijn.be/stops/209509"], ["https://data.delijn.be/stops/405264", "https://data.delijn.be/stops/406405"], ["https://data.delijn.be/stops/208693", "https://data.delijn.be/stops/208695"], ["https://data.delijn.be/stops/501187", "https://data.delijn.be/stops/506116"], ["https://data.delijn.be/stops/307205", "https://data.delijn.be/stops/307676"], ["https://data.delijn.be/stops/102859", "https://data.delijn.be/stops/103262"], ["https://data.delijn.be/stops/202965", "https://data.delijn.be/stops/203966"], ["https://data.delijn.be/stops/305425", "https://data.delijn.be/stops/307051"], ["https://data.delijn.be/stops/404149", "https://data.delijn.be/stops/404173"], ["https://data.delijn.be/stops/307301", "https://data.delijn.be/stops/307321"], ["https://data.delijn.be/stops/508536", "https://data.delijn.be/stops/508538"], ["https://data.delijn.be/stops/101274", "https://data.delijn.be/stops/104103"], ["https://data.delijn.be/stops/200725", "https://data.delijn.be/stops/204943"], ["https://data.delijn.be/stops/207786", "https://data.delijn.be/stops/209408"], ["https://data.delijn.be/stops/200092", "https://data.delijn.be/stops/201092"], ["https://data.delijn.be/stops/408328", "https://data.delijn.be/stops/408329"], ["https://data.delijn.be/stops/101342", "https://data.delijn.be/stops/101343"], ["https://data.delijn.be/stops/200751", "https://data.delijn.be/stops/208298"], ["https://data.delijn.be/stops/101189", "https://data.delijn.be/stops/101191"], ["https://data.delijn.be/stops/302044", "https://data.delijn.be/stops/307285"], ["https://data.delijn.be/stops/109243", "https://data.delijn.be/stops/109246"], ["https://data.delijn.be/stops/105512", "https://data.delijn.be/stops/108731"], ["https://data.delijn.be/stops/305412", "https://data.delijn.be/stops/305413"], ["https://data.delijn.be/stops/204759", "https://data.delijn.be/stops/204760"], ["https://data.delijn.be/stops/502617", "https://data.delijn.be/stops/507618"], ["https://data.delijn.be/stops/302324", "https://data.delijn.be/stops/303439"], ["https://data.delijn.be/stops/204976", "https://data.delijn.be/stops/209298"], ["https://data.delijn.be/stops/206420", "https://data.delijn.be/stops/206805"], ["https://data.delijn.be/stops/401370", "https://data.delijn.be/stops/401376"], ["https://data.delijn.be/stops/204213", "https://data.delijn.be/stops/205212"], ["https://data.delijn.be/stops/408679", "https://data.delijn.be/stops/408788"], ["https://data.delijn.be/stops/402954", "https://data.delijn.be/stops/404384"], ["https://data.delijn.be/stops/203048", "https://data.delijn.be/stops/203049"], ["https://data.delijn.be/stops/508754", "https://data.delijn.be/stops/508764"], ["https://data.delijn.be/stops/503496", "https://data.delijn.be/stops/504452"], ["https://data.delijn.be/stops/501200", "https://data.delijn.be/stops/506201"], ["https://data.delijn.be/stops/402038", "https://data.delijn.be/stops/403882"], ["https://data.delijn.be/stops/403044", "https://data.delijn.be/stops/403073"], ["https://data.delijn.be/stops/300746", "https://data.delijn.be/stops/306115"], ["https://data.delijn.be/stops/107042", "https://data.delijn.be/stops/108239"], ["https://data.delijn.be/stops/200453", "https://data.delijn.be/stops/208267"], ["https://data.delijn.be/stops/404156", "https://data.delijn.be/stops/404167"], ["https://data.delijn.be/stops/405022", "https://data.delijn.be/stops/405112"], ["https://data.delijn.be/stops/200685", "https://data.delijn.be/stops/200822"], ["https://data.delijn.be/stops/106084", "https://data.delijn.be/stops/108729"], ["https://data.delijn.be/stops/401946", "https://data.delijn.be/stops/409730"], ["https://data.delijn.be/stops/210125", "https://data.delijn.be/stops/210127"], ["https://data.delijn.be/stops/400241", "https://data.delijn.be/stops/407156"], ["https://data.delijn.be/stops/306338", "https://data.delijn.be/stops/306339"], ["https://data.delijn.be/stops/509936", "https://data.delijn.be/stops/509982"], ["https://data.delijn.be/stops/303722", "https://data.delijn.be/stops/303723"], ["https://data.delijn.be/stops/501271", "https://data.delijn.be/stops/506302"], ["https://data.delijn.be/stops/504486", "https://data.delijn.be/stops/505928"], ["https://data.delijn.be/stops/308156", "https://data.delijn.be/stops/308159"], ["https://data.delijn.be/stops/200081", "https://data.delijn.be/stops/211855"], ["https://data.delijn.be/stops/105223", "https://data.delijn.be/stops/107390"], ["https://data.delijn.be/stops/501409", "https://data.delijn.be/stops/501419"], ["https://data.delijn.be/stops/503180", "https://data.delijn.be/stops/508180"], ["https://data.delijn.be/stops/503296", "https://data.delijn.be/stops/505935"], ["https://data.delijn.be/stops/202233", "https://data.delijn.be/stops/202234"], ["https://data.delijn.be/stops/300651", "https://data.delijn.be/stops/300663"], ["https://data.delijn.be/stops/304315", "https://data.delijn.be/stops/306883"], ["https://data.delijn.be/stops/206222", "https://data.delijn.be/stops/206809"], ["https://data.delijn.be/stops/102687", "https://data.delijn.be/stops/104630"], ["https://data.delijn.be/stops/102727", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/409802", "https://data.delijn.be/stops/409803"], ["https://data.delijn.be/stops/502130", "https://data.delijn.be/stops/507130"], ["https://data.delijn.be/stops/504976", "https://data.delijn.be/stops/509653"], ["https://data.delijn.be/stops/300661", "https://data.delijn.be/stops/300662"], ["https://data.delijn.be/stops/502229", "https://data.delijn.be/stops/507229"], ["https://data.delijn.be/stops/103326", "https://data.delijn.be/stops/107637"], ["https://data.delijn.be/stops/208019", "https://data.delijn.be/stops/208024"], ["https://data.delijn.be/stops/207757", "https://data.delijn.be/stops/207779"], ["https://data.delijn.be/stops/400894", "https://data.delijn.be/stops/406702"], ["https://data.delijn.be/stops/304540", "https://data.delijn.be/stops/304555"], ["https://data.delijn.be/stops/201859", "https://data.delijn.be/stops/202672"], ["https://data.delijn.be/stops/204705", "https://data.delijn.be/stops/204710"], ["https://data.delijn.be/stops/104706", "https://data.delijn.be/stops/107353"], ["https://data.delijn.be/stops/303753", "https://data.delijn.be/stops/303757"], ["https://data.delijn.be/stops/402115", "https://data.delijn.be/stops/409298"], ["https://data.delijn.be/stops/200557", "https://data.delijn.be/stops/200558"], ["https://data.delijn.be/stops/404999", "https://data.delijn.be/stops/405527"], ["https://data.delijn.be/stops/304812", "https://data.delijn.be/stops/307886"], ["https://data.delijn.be/stops/200637", "https://data.delijn.be/stops/201633"], ["https://data.delijn.be/stops/303113", "https://data.delijn.be/stops/303114"], ["https://data.delijn.be/stops/408505", "https://data.delijn.be/stops/408617"], ["https://data.delijn.be/stops/104591", "https://data.delijn.be/stops/107307"], ["https://data.delijn.be/stops/401529", "https://data.delijn.be/stops/409502"], ["https://data.delijn.be/stops/402812", "https://data.delijn.be/stops/409034"], ["https://data.delijn.be/stops/501367", "https://data.delijn.be/stops/506367"], ["https://data.delijn.be/stops/502099", "https://data.delijn.be/stops/502817"], ["https://data.delijn.be/stops/108817", "https://data.delijn.be/stops/108828"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/107139"], ["https://data.delijn.be/stops/202165", "https://data.delijn.be/stops/203638"], ["https://data.delijn.be/stops/206603", "https://data.delijn.be/stops/206703"], ["https://data.delijn.be/stops/305742", "https://data.delijn.be/stops/305743"], ["https://data.delijn.be/stops/105205", "https://data.delijn.be/stops/105206"], ["https://data.delijn.be/stops/306828", "https://data.delijn.be/stops/308700"], ["https://data.delijn.be/stops/504068", "https://data.delijn.be/stops/509066"], ["https://data.delijn.be/stops/202513", "https://data.delijn.be/stops/203513"], ["https://data.delijn.be/stops/308870", "https://data.delijn.be/stops/308871"], ["https://data.delijn.be/stops/203820", "https://data.delijn.be/stops/203821"], ["https://data.delijn.be/stops/506769", "https://data.delijn.be/stops/506772"], ["https://data.delijn.be/stops/203214", "https://data.delijn.be/stops/210005"], ["https://data.delijn.be/stops/507503", "https://data.delijn.be/stops/507536"], ["https://data.delijn.be/stops/304579", "https://data.delijn.be/stops/305555"], ["https://data.delijn.be/stops/306942", "https://data.delijn.be/stops/306947"], ["https://data.delijn.be/stops/407620", "https://data.delijn.be/stops/407622"], ["https://data.delijn.be/stops/508513", "https://data.delijn.be/stops/508518"], ["https://data.delijn.be/stops/302870", "https://data.delijn.be/stops/302892"], ["https://data.delijn.be/stops/102082", "https://data.delijn.be/stops/105833"], ["https://data.delijn.be/stops/401813", "https://data.delijn.be/stops/406355"], ["https://data.delijn.be/stops/106607", "https://data.delijn.be/stops/106608"], ["https://data.delijn.be/stops/304055", "https://data.delijn.be/stops/304084"], ["https://data.delijn.be/stops/503634", "https://data.delijn.be/stops/503959"], ["https://data.delijn.be/stops/404118", "https://data.delijn.be/stops/404182"], ["https://data.delijn.be/stops/303047", "https://data.delijn.be/stops/306552"], ["https://data.delijn.be/stops/102611", "https://data.delijn.be/stops/105531"], ["https://data.delijn.be/stops/101211", "https://data.delijn.be/stops/107827"], ["https://data.delijn.be/stops/300524", "https://data.delijn.be/stops/305551"], ["https://data.delijn.be/stops/505108", "https://data.delijn.be/stops/509172"], ["https://data.delijn.be/stops/505511", "https://data.delijn.be/stops/505615"], ["https://data.delijn.be/stops/204521", "https://data.delijn.be/stops/204522"], ["https://data.delijn.be/stops/101494", "https://data.delijn.be/stops/101514"], ["https://data.delijn.be/stops/202139", "https://data.delijn.be/stops/203139"], ["https://data.delijn.be/stops/408028", "https://data.delijn.be/stops/305731"], ["https://data.delijn.be/stops/505240", "https://data.delijn.be/stops/507346"], ["https://data.delijn.be/stops/502011", "https://data.delijn.be/stops/505764"], ["https://data.delijn.be/stops/504073", "https://data.delijn.be/stops/504341"], ["https://data.delijn.be/stops/303613", "https://data.delijn.be/stops/307167"], ["https://data.delijn.be/stops/300508", "https://data.delijn.be/stops/300509"], ["https://data.delijn.be/stops/206055", "https://data.delijn.be/stops/207297"], ["https://data.delijn.be/stops/407719", "https://data.delijn.be/stops/407720"], ["https://data.delijn.be/stops/105231", "https://data.delijn.be/stops/105232"], ["https://data.delijn.be/stops/301292", "https://data.delijn.be/stops/304694"], ["https://data.delijn.be/stops/211012", "https://data.delijn.be/stops/507275"], ["https://data.delijn.be/stops/206128", "https://data.delijn.be/stops/206129"], ["https://data.delijn.be/stops/208669", "https://data.delijn.be/stops/209127"], ["https://data.delijn.be/stops/109926", "https://data.delijn.be/stops/109956"], ["https://data.delijn.be/stops/106283", "https://data.delijn.be/stops/106285"], ["https://data.delijn.be/stops/405199", "https://data.delijn.be/stops/405238"], ["https://data.delijn.be/stops/501047", "https://data.delijn.be/stops/502730"], ["https://data.delijn.be/stops/500041", "https://data.delijn.be/stops/502821"], ["https://data.delijn.be/stops/503733", "https://data.delijn.be/stops/503738"], ["https://data.delijn.be/stops/504169", "https://data.delijn.be/stops/505988"], ["https://data.delijn.be/stops/200852", "https://data.delijn.be/stops/201846"], ["https://data.delijn.be/stops/406908", "https://data.delijn.be/stops/406944"], ["https://data.delijn.be/stops/202239", "https://data.delijn.be/stops/203239"], ["https://data.delijn.be/stops/401483", "https://data.delijn.be/stops/401566"], ["https://data.delijn.be/stops/301862", "https://data.delijn.be/stops/302051"], ["https://data.delijn.be/stops/503386", "https://data.delijn.be/stops/503402"], ["https://data.delijn.be/stops/107201", "https://data.delijn.be/stops/109993"], ["https://data.delijn.be/stops/502165", "https://data.delijn.be/stops/502243"], ["https://data.delijn.be/stops/409106", "https://data.delijn.be/stops/409110"], ["https://data.delijn.be/stops/204786", "https://data.delijn.be/stops/205148"], ["https://data.delijn.be/stops/108396", "https://data.delijn.be/stops/108400"], ["https://data.delijn.be/stops/408920", "https://data.delijn.be/stops/408927"], ["https://data.delijn.be/stops/503635", "https://data.delijn.be/stops/508635"], ["https://data.delijn.be/stops/308046", "https://data.delijn.be/stops/308047"], ["https://data.delijn.be/stops/509786", "https://data.delijn.be/stops/509788"], ["https://data.delijn.be/stops/101572", "https://data.delijn.be/stops/105467"], ["https://data.delijn.be/stops/205062", "https://data.delijn.be/stops/205323"], ["https://data.delijn.be/stops/202758", "https://data.delijn.be/stops/203763"], ["https://data.delijn.be/stops/305828", "https://data.delijn.be/stops/305830"], ["https://data.delijn.be/stops/403087", "https://data.delijn.be/stops/403679"], ["https://data.delijn.be/stops/103642", "https://data.delijn.be/stops/107169"], ["https://data.delijn.be/stops/101444", "https://data.delijn.be/stops/109665"], ["https://data.delijn.be/stops/502111", "https://data.delijn.be/stops/502580"], ["https://data.delijn.be/stops/204830", "https://data.delijn.be/stops/205260"], ["https://data.delijn.be/stops/307762", "https://data.delijn.be/stops/307765"], ["https://data.delijn.be/stops/400584", "https://data.delijn.be/stops/408676"], ["https://data.delijn.be/stops/106597", "https://data.delijn.be/stops/107243"], ["https://data.delijn.be/stops/302253", "https://data.delijn.be/stops/303206"], ["https://data.delijn.be/stops/200241", "https://data.delijn.be/stops/201129"], ["https://data.delijn.be/stops/508427", "https://data.delijn.be/stops/509770"], ["https://data.delijn.be/stops/405326", "https://data.delijn.be/stops/302847"], ["https://data.delijn.be/stops/304803", "https://data.delijn.be/stops/304804"], ["https://data.delijn.be/stops/402692", "https://data.delijn.be/stops/301477"], ["https://data.delijn.be/stops/407407", "https://data.delijn.be/stops/407571"], ["https://data.delijn.be/stops/406550", "https://data.delijn.be/stops/406558"], ["https://data.delijn.be/stops/201697", "https://data.delijn.be/stops/203384"], ["https://data.delijn.be/stops/401492", "https://data.delijn.be/stops/408635"], ["https://data.delijn.be/stops/106211", "https://data.delijn.be/stops/106215"], ["https://data.delijn.be/stops/401105", "https://data.delijn.be/stops/401111"], ["https://data.delijn.be/stops/401139", "https://data.delijn.be/stops/406719"], ["https://data.delijn.be/stops/202284", "https://data.delijn.be/stops/203283"], ["https://data.delijn.be/stops/304039", "https://data.delijn.be/stops/304090"], ["https://data.delijn.be/stops/300719", "https://data.delijn.be/stops/300726"], ["https://data.delijn.be/stops/501351", "https://data.delijn.be/stops/506329"], ["https://data.delijn.be/stops/503196", "https://data.delijn.be/stops/508196"], ["https://data.delijn.be/stops/307616", "https://data.delijn.be/stops/308257"], ["https://data.delijn.be/stops/200608", "https://data.delijn.be/stops/202206"], ["https://data.delijn.be/stops/202530", "https://data.delijn.be/stops/206827"], ["https://data.delijn.be/stops/402171", "https://data.delijn.be/stops/402206"], ["https://data.delijn.be/stops/207176", "https://data.delijn.be/stops/207479"], ["https://data.delijn.be/stops/308124", "https://data.delijn.be/stops/308734"], ["https://data.delijn.be/stops/302626", "https://data.delijn.be/stops/302643"], ["https://data.delijn.be/stops/107187", "https://data.delijn.be/stops/107197"], ["https://data.delijn.be/stops/106952", "https://data.delijn.be/stops/106954"], ["https://data.delijn.be/stops/108952", "https://data.delijn.be/stops/108953"], ["https://data.delijn.be/stops/504449", "https://data.delijn.be/stops/509441"], ["https://data.delijn.be/stops/204002", "https://data.delijn.be/stops/204716"], ["https://data.delijn.be/stops/304903", "https://data.delijn.be/stops/306178"], ["https://data.delijn.be/stops/407842", "https://data.delijn.be/stops/407991"], ["https://data.delijn.be/stops/303371", "https://data.delijn.be/stops/303386"], ["https://data.delijn.be/stops/504069", "https://data.delijn.be/stops/509069"], ["https://data.delijn.be/stops/308154", "https://data.delijn.be/stops/308170"], ["https://data.delijn.be/stops/405414", "https://data.delijn.be/stops/306776"], ["https://data.delijn.be/stops/403421", "https://data.delijn.be/stops/404873"], ["https://data.delijn.be/stops/204124", "https://data.delijn.be/stops/204126"], ["https://data.delijn.be/stops/201701", "https://data.delijn.be/stops/203562"], ["https://data.delijn.be/stops/501105", "https://data.delijn.be/stops/501106"], ["https://data.delijn.be/stops/408527", "https://data.delijn.be/stops/408688"], ["https://data.delijn.be/stops/300753", "https://data.delijn.be/stops/300773"], ["https://data.delijn.be/stops/102825", "https://data.delijn.be/stops/104370"], ["https://data.delijn.be/stops/105436", "https://data.delijn.be/stops/109953"], ["https://data.delijn.be/stops/108047", "https://data.delijn.be/stops/108278"], ["https://data.delijn.be/stops/501623", "https://data.delijn.be/stops/506624"], ["https://data.delijn.be/stops/304108", "https://data.delijn.be/stops/307996"], ["https://data.delijn.be/stops/208621", "https://data.delijn.be/stops/209596"], ["https://data.delijn.be/stops/504580", "https://data.delijn.be/stops/505995"], ["https://data.delijn.be/stops/302537", "https://data.delijn.be/stops/302540"], ["https://data.delijn.be/stops/405905", "https://data.delijn.be/stops/405972"], ["https://data.delijn.be/stops/406988", "https://data.delijn.be/stops/410005"], ["https://data.delijn.be/stops/200821", "https://data.delijn.be/stops/200849"], ["https://data.delijn.be/stops/302257", "https://data.delijn.be/stops/304846"], ["https://data.delijn.be/stops/305123", "https://data.delijn.be/stops/305125"], ["https://data.delijn.be/stops/200620", "https://data.delijn.be/stops/201478"], ["https://data.delijn.be/stops/304400", "https://data.delijn.be/stops/308827"], ["https://data.delijn.be/stops/108898", "https://data.delijn.be/stops/108899"], ["https://data.delijn.be/stops/303963", "https://data.delijn.be/stops/303964"], ["https://data.delijn.be/stops/301920", "https://data.delijn.be/stops/302812"], ["https://data.delijn.be/stops/200050", "https://data.delijn.be/stops/201892"], ["https://data.delijn.be/stops/201246", "https://data.delijn.be/stops/201425"], ["https://data.delijn.be/stops/501672", "https://data.delijn.be/stops/506430"], ["https://data.delijn.be/stops/505118", "https://data.delijn.be/stops/505427"], ["https://data.delijn.be/stops/108627", "https://data.delijn.be/stops/301837"], ["https://data.delijn.be/stops/405389", "https://data.delijn.be/stops/409250"], ["https://data.delijn.be/stops/400485", "https://data.delijn.be/stops/400494"], ["https://data.delijn.be/stops/105604", "https://data.delijn.be/stops/105606"], ["https://data.delijn.be/stops/306815", "https://data.delijn.be/stops/307428"], ["https://data.delijn.be/stops/204594", "https://data.delijn.be/stops/205582"], ["https://data.delijn.be/stops/509027", "https://data.delijn.be/stops/509034"], ["https://data.delijn.be/stops/502178", "https://data.delijn.be/stops/502256"], ["https://data.delijn.be/stops/302955", "https://data.delijn.be/stops/302957"], ["https://data.delijn.be/stops/101389", "https://data.delijn.be/stops/101391"], ["https://data.delijn.be/stops/202005", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/300129", "https://data.delijn.be/stops/300135"], ["https://data.delijn.be/stops/504967", "https://data.delijn.be/stops/509967"], ["https://data.delijn.be/stops/406003", "https://data.delijn.be/stops/406120"], ["https://data.delijn.be/stops/404660", "https://data.delijn.be/stops/404662"], ["https://data.delijn.be/stops/400177", "https://data.delijn.be/stops/400179"], ["https://data.delijn.be/stops/306325", "https://data.delijn.be/stops/306326"], ["https://data.delijn.be/stops/503794", "https://data.delijn.be/stops/508798"], ["https://data.delijn.be/stops/503085", "https://data.delijn.be/stops/507820"], ["https://data.delijn.be/stops/303848", "https://data.delijn.be/stops/304080"], ["https://data.delijn.be/stops/304389", "https://data.delijn.be/stops/304390"], ["https://data.delijn.be/stops/404175", "https://data.delijn.be/stops/404219"], ["https://data.delijn.be/stops/206225", "https://data.delijn.be/stops/207225"], ["https://data.delijn.be/stops/507382", "https://data.delijn.be/stops/507387"], ["https://data.delijn.be/stops/303294", "https://data.delijn.be/stops/303295"], ["https://data.delijn.be/stops/108896", "https://data.delijn.be/stops/108898"], ["https://data.delijn.be/stops/202049", "https://data.delijn.be/stops/203227"], ["https://data.delijn.be/stops/205160", "https://data.delijn.be/stops/205578"], ["https://data.delijn.be/stops/206168", "https://data.delijn.be/stops/304827"], ["https://data.delijn.be/stops/308868", "https://data.delijn.be/stops/308870"], ["https://data.delijn.be/stops/509591", "https://data.delijn.be/stops/509596"], ["https://data.delijn.be/stops/108300", "https://data.delijn.be/stops/108305"], ["https://data.delijn.be/stops/304570", "https://data.delijn.be/stops/304605"], ["https://data.delijn.be/stops/404114", "https://data.delijn.be/stops/408554"], ["https://data.delijn.be/stops/404431", "https://data.delijn.be/stops/404483"], ["https://data.delijn.be/stops/302613", "https://data.delijn.be/stops/302632"], ["https://data.delijn.be/stops/400960", "https://data.delijn.be/stops/400961"], ["https://data.delijn.be/stops/109419", "https://data.delijn.be/stops/109423"], ["https://data.delijn.be/stops/102381", "https://data.delijn.be/stops/106379"], ["https://data.delijn.be/stops/307374", "https://data.delijn.be/stops/307384"], ["https://data.delijn.be/stops/109447", "https://data.delijn.be/stops/109448"], ["https://data.delijn.be/stops/501227", "https://data.delijn.be/stops/505044"], ["https://data.delijn.be/stops/200431", "https://data.delijn.be/stops/201431"], ["https://data.delijn.be/stops/104044", "https://data.delijn.be/stops/104048"], ["https://data.delijn.be/stops/400151", "https://data.delijn.be/stops/410031"], ["https://data.delijn.be/stops/203115", "https://data.delijn.be/stops/204581"], ["https://data.delijn.be/stops/101812", "https://data.delijn.be/stops/108039"], ["https://data.delijn.be/stops/207695", "https://data.delijn.be/stops/207700"], ["https://data.delijn.be/stops/508563", "https://data.delijn.be/stops/508874"], ["https://data.delijn.be/stops/407861", "https://data.delijn.be/stops/408026"], ["https://data.delijn.be/stops/105459", "https://data.delijn.be/stops/109895"], ["https://data.delijn.be/stops/204584", "https://data.delijn.be/stops/204585"], ["https://data.delijn.be/stops/106729", "https://data.delijn.be/stops/108220"], ["https://data.delijn.be/stops/402608", "https://data.delijn.be/stops/402609"], ["https://data.delijn.be/stops/405277", "https://data.delijn.be/stops/410085"], ["https://data.delijn.be/stops/405170", "https://data.delijn.be/stops/405175"], ["https://data.delijn.be/stops/106693", "https://data.delijn.be/stops/106695"], ["https://data.delijn.be/stops/104954", "https://data.delijn.be/stops/406504"], ["https://data.delijn.be/stops/305832", "https://data.delijn.be/stops/305834"], ["https://data.delijn.be/stops/504618", "https://data.delijn.be/stops/509618"], ["https://data.delijn.be/stops/502763", "https://data.delijn.be/stops/507691"], ["https://data.delijn.be/stops/301277", "https://data.delijn.be/stops/303647"], ["https://data.delijn.be/stops/507317", "https://data.delijn.be/stops/507336"], ["https://data.delijn.be/stops/106843", "https://data.delijn.be/stops/106985"], ["https://data.delijn.be/stops/400593", "https://data.delijn.be/stops/400605"], ["https://data.delijn.be/stops/500931", "https://data.delijn.be/stops/503122"], ["https://data.delijn.be/stops/208303", "https://data.delijn.be/stops/209089"], ["https://data.delijn.be/stops/301063", "https://data.delijn.be/stops/305916"], ["https://data.delijn.be/stops/301647", "https://data.delijn.be/stops/302108"], ["https://data.delijn.be/stops/408230", "https://data.delijn.be/stops/408491"], ["https://data.delijn.be/stops/304154", "https://data.delijn.be/stops/304155"], ["https://data.delijn.be/stops/108413", "https://data.delijn.be/stops/108414"], ["https://data.delijn.be/stops/407204", "https://data.delijn.be/stops/408810"], ["https://data.delijn.be/stops/504220", "https://data.delijn.be/stops/504306"], ["https://data.delijn.be/stops/202608", "https://data.delijn.be/stops/203552"], ["https://data.delijn.be/stops/203126", "https://data.delijn.be/stops/203598"], ["https://data.delijn.be/stops/508495", "https://data.delijn.be/stops/509454"], ["https://data.delijn.be/stops/408806", "https://data.delijn.be/stops/408810"], ["https://data.delijn.be/stops/202760", "https://data.delijn.be/stops/203757"], ["https://data.delijn.be/stops/204566", "https://data.delijn.be/stops/303382"], ["https://data.delijn.be/stops/501506", "https://data.delijn.be/stops/506506"], ["https://data.delijn.be/stops/501615", "https://data.delijn.be/stops/501620"], ["https://data.delijn.be/stops/401344", "https://data.delijn.be/stops/410045"], ["https://data.delijn.be/stops/206223", "https://data.delijn.be/stops/206224"], ["https://data.delijn.be/stops/407255", "https://data.delijn.be/stops/407314"], ["https://data.delijn.be/stops/401466", "https://data.delijn.be/stops/401885"], ["https://data.delijn.be/stops/107138", "https://data.delijn.be/stops/107142"], ["https://data.delijn.be/stops/200089", "https://data.delijn.be/stops/201066"], ["https://data.delijn.be/stops/306147", "https://data.delijn.be/stops/306151"], ["https://data.delijn.be/stops/405180", "https://data.delijn.be/stops/405199"], ["https://data.delijn.be/stops/206791", "https://data.delijn.be/stops/208565"], ["https://data.delijn.be/stops/301701", "https://data.delijn.be/stops/303711"], ["https://data.delijn.be/stops/106643", "https://data.delijn.be/stops/106645"], ["https://data.delijn.be/stops/408518", "https://data.delijn.be/stops/408711"], ["https://data.delijn.be/stops/508607", "https://data.delijn.be/stops/509752"], ["https://data.delijn.be/stops/106813", "https://data.delijn.be/stops/106814"], ["https://data.delijn.be/stops/103294", "https://data.delijn.be/stops/107707"], ["https://data.delijn.be/stops/305675", "https://data.delijn.be/stops/305692"], ["https://data.delijn.be/stops/404266", "https://data.delijn.be/stops/405553"], ["https://data.delijn.be/stops/200410", "https://data.delijn.be/stops/201899"], ["https://data.delijn.be/stops/501445", "https://data.delijn.be/stops/501555"], ["https://data.delijn.be/stops/201953", "https://data.delijn.be/stops/202460"], ["https://data.delijn.be/stops/206327", "https://data.delijn.be/stops/308846"], ["https://data.delijn.be/stops/409505", "https://data.delijn.be/stops/410402"], ["https://data.delijn.be/stops/402836", "https://data.delijn.be/stops/407574"], ["https://data.delijn.be/stops/502221", "https://data.delijn.be/stops/507224"], ["https://data.delijn.be/stops/300172", "https://data.delijn.be/stops/306717"], ["https://data.delijn.be/stops/403601", "https://data.delijn.be/stops/410037"], ["https://data.delijn.be/stops/201555", "https://data.delijn.be/stops/201679"], ["https://data.delijn.be/stops/303032", "https://data.delijn.be/stops/303594"], ["https://data.delijn.be/stops/101924", "https://data.delijn.be/stops/107013"], ["https://data.delijn.be/stops/502170", "https://data.delijn.be/stops/507170"], ["https://data.delijn.be/stops/405407", "https://data.delijn.be/stops/406298"], ["https://data.delijn.be/stops/207236", "https://data.delijn.be/stops/207855"], ["https://data.delijn.be/stops/300195", "https://data.delijn.be/stops/300216"], ["https://data.delijn.be/stops/303624", "https://data.delijn.be/stops/306700"], ["https://data.delijn.be/stops/401676", "https://data.delijn.be/stops/308153"], ["https://data.delijn.be/stops/200588", "https://data.delijn.be/stops/211078"], ["https://data.delijn.be/stops/300463", "https://data.delijn.be/stops/300472"], ["https://data.delijn.be/stops/501529", "https://data.delijn.be/stops/506199"], ["https://data.delijn.be/stops/101671", "https://data.delijn.be/stops/107663"], ["https://data.delijn.be/stops/200463", "https://data.delijn.be/stops/201463"], ["https://data.delijn.be/stops/409088", "https://data.delijn.be/stops/409211"], ["https://data.delijn.be/stops/303801", "https://data.delijn.be/stops/303811"], ["https://data.delijn.be/stops/406058", "https://data.delijn.be/stops/409259"], ["https://data.delijn.be/stops/205021", "https://data.delijn.be/stops/205413"], ["https://data.delijn.be/stops/200663", "https://data.delijn.be/stops/200664"], ["https://data.delijn.be/stops/105214", "https://data.delijn.be/stops/105546"], ["https://data.delijn.be/stops/206664", "https://data.delijn.be/stops/207612"], ["https://data.delijn.be/stops/205123", "https://data.delijn.be/stops/214004"], ["https://data.delijn.be/stops/305984", "https://data.delijn.be/stops/305986"], ["https://data.delijn.be/stops/206201", "https://data.delijn.be/stops/206220"], ["https://data.delijn.be/stops/501047", "https://data.delijn.be/stops/506047"], ["https://data.delijn.be/stops/407899", "https://data.delijn.be/stops/407989"], ["https://data.delijn.be/stops/103041", "https://data.delijn.be/stops/103505"], ["https://data.delijn.be/stops/103292", "https://data.delijn.be/stops/108731"], ["https://data.delijn.be/stops/405044", "https://data.delijn.be/stops/408154"], ["https://data.delijn.be/stops/400815", "https://data.delijn.be/stops/400823"], ["https://data.delijn.be/stops/109033", "https://data.delijn.be/stops/109034"], ["https://data.delijn.be/stops/210037", "https://data.delijn.be/stops/211037"], ["https://data.delijn.be/stops/101474", "https://data.delijn.be/stops/109249"], ["https://data.delijn.be/stops/501169", "https://data.delijn.be/stops/501684"], ["https://data.delijn.be/stops/306942", "https://data.delijn.be/stops/308064"], ["https://data.delijn.be/stops/101947", "https://data.delijn.be/stops/108749"], ["https://data.delijn.be/stops/105552", "https://data.delijn.be/stops/105564"], ["https://data.delijn.be/stops/404090", "https://data.delijn.be/stops/408592"], ["https://data.delijn.be/stops/504103", "https://data.delijn.be/stops/509103"], ["https://data.delijn.be/stops/303443", "https://data.delijn.be/stops/303455"], ["https://data.delijn.be/stops/502043", "https://data.delijn.be/stops/507081"], ["https://data.delijn.be/stops/101726", "https://data.delijn.be/stops/102092"], ["https://data.delijn.be/stops/202213", "https://data.delijn.be/stops/203213"], ["https://data.delijn.be/stops/201747", "https://data.delijn.be/stops/203244"], ["https://data.delijn.be/stops/306280", "https://data.delijn.be/stops/308604"], ["https://data.delijn.be/stops/505073", "https://data.delijn.be/stops/505761"], ["https://data.delijn.be/stops/409476", "https://data.delijn.be/stops/410255"], ["https://data.delijn.be/stops/504772", "https://data.delijn.be/stops/505213"], ["https://data.delijn.be/stops/401728", "https://data.delijn.be/stops/406123"], ["https://data.delijn.be/stops/102481", "https://data.delijn.be/stops/407100"], ["https://data.delijn.be/stops/207404", "https://data.delijn.be/stops/207405"], ["https://data.delijn.be/stops/400657", "https://data.delijn.be/stops/400966"], ["https://data.delijn.be/stops/208147", "https://data.delijn.be/stops/208151"], ["https://data.delijn.be/stops/409286", "https://data.delijn.be/stops/409311"], ["https://data.delijn.be/stops/409076", "https://data.delijn.be/stops/409079"], ["https://data.delijn.be/stops/505134", "https://data.delijn.be/stops/505137"], ["https://data.delijn.be/stops/410167", "https://data.delijn.be/stops/410353"], ["https://data.delijn.be/stops/101013", "https://data.delijn.be/stops/109774"], ["https://data.delijn.be/stops/405284", "https://data.delijn.be/stops/407333"], ["https://data.delijn.be/stops/200176", "https://data.delijn.be/stops/200503"], ["https://data.delijn.be/stops/302962", "https://data.delijn.be/stops/306297"], ["https://data.delijn.be/stops/200225", "https://data.delijn.be/stops/200267"], ["https://data.delijn.be/stops/307477", "https://data.delijn.be/stops/307479"], ["https://data.delijn.be/stops/102314", "https://data.delijn.be/stops/103378"], ["https://data.delijn.be/stops/200360", "https://data.delijn.be/stops/202006"], ["https://data.delijn.be/stops/405613", "https://data.delijn.be/stops/407191"], ["https://data.delijn.be/stops/202836", "https://data.delijn.be/stops/203836"], ["https://data.delijn.be/stops/403619", "https://data.delijn.be/stops/403634"], ["https://data.delijn.be/stops/200066", "https://data.delijn.be/stops/200228"], ["https://data.delijn.be/stops/200052", "https://data.delijn.be/stops/201052"], ["https://data.delijn.be/stops/206774", "https://data.delijn.be/stops/209404"], ["https://data.delijn.be/stops/303378", "https://data.delijn.be/stops/303394"], ["https://data.delijn.be/stops/304974", "https://data.delijn.be/stops/308083"], ["https://data.delijn.be/stops/301992", "https://data.delijn.be/stops/303286"], ["https://data.delijn.be/stops/501674", "https://data.delijn.be/stops/506662"], ["https://data.delijn.be/stops/402394", "https://data.delijn.be/stops/407494"], ["https://data.delijn.be/stops/304829", "https://data.delijn.be/stops/305505"], ["https://data.delijn.be/stops/200820", "https://data.delijn.be/stops/200851"], ["https://data.delijn.be/stops/206829", "https://data.delijn.be/stops/207829"], ["https://data.delijn.be/stops/410074", "https://data.delijn.be/stops/410076"], ["https://data.delijn.be/stops/201754", "https://data.delijn.be/stops/209281"], ["https://data.delijn.be/stops/402086", "https://data.delijn.be/stops/402134"], ["https://data.delijn.be/stops/403179", "https://data.delijn.be/stops/403454"], ["https://data.delijn.be/stops/105696", "https://data.delijn.be/stops/105698"], ["https://data.delijn.be/stops/106738", "https://data.delijn.be/stops/106739"], ["https://data.delijn.be/stops/200832", "https://data.delijn.be/stops/200875"], ["https://data.delijn.be/stops/102590", "https://data.delijn.be/stops/105840"], ["https://data.delijn.be/stops/300190", "https://data.delijn.be/stops/300228"], ["https://data.delijn.be/stops/208340", "https://data.delijn.be/stops/208387"], ["https://data.delijn.be/stops/501014", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/503122", "https://data.delijn.be/stops/508044"], ["https://data.delijn.be/stops/306916", "https://data.delijn.be/stops/307086"], ["https://data.delijn.be/stops/407894", "https://data.delijn.be/stops/408045"], ["https://data.delijn.be/stops/200609", "https://data.delijn.be/stops/202310"], ["https://data.delijn.be/stops/407662", "https://data.delijn.be/stops/409807"], ["https://data.delijn.be/stops/201451", "https://data.delijn.be/stops/203407"], ["https://data.delijn.be/stops/300166", "https://data.delijn.be/stops/308700"], ["https://data.delijn.be/stops/401964", "https://data.delijn.be/stops/406885"], ["https://data.delijn.be/stops/402069", "https://data.delijn.be/stops/402070"], ["https://data.delijn.be/stops/403165", "https://data.delijn.be/stops/403829"], ["https://data.delijn.be/stops/102590", "https://data.delijn.be/stops/105735"], ["https://data.delijn.be/stops/202089", "https://data.delijn.be/stops/203721"], ["https://data.delijn.be/stops/505138", "https://data.delijn.be/stops/505139"], ["https://data.delijn.be/stops/303943", "https://data.delijn.be/stops/307729"], ["https://data.delijn.be/stops/102120", "https://data.delijn.be/stops/104110"], ["https://data.delijn.be/stops/503318", "https://data.delijn.be/stops/508318"], ["https://data.delijn.be/stops/304000", "https://data.delijn.be/stops/304092"], ["https://data.delijn.be/stops/404204", "https://data.delijn.be/stops/404205"], ["https://data.delijn.be/stops/202032", "https://data.delijn.be/stops/203029"], ["https://data.delijn.be/stops/500196", "https://data.delijn.be/stops/505030"], ["https://data.delijn.be/stops/407652", "https://data.delijn.be/stops/407653"], ["https://data.delijn.be/stops/300113", "https://data.delijn.be/stops/306844"], ["https://data.delijn.be/stops/505706", "https://data.delijn.be/stops/505707"], ["https://data.delijn.be/stops/407590", "https://data.delijn.be/stops/407670"], ["https://data.delijn.be/stops/501023", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/501026", "https://data.delijn.be/stops/506329"], ["https://data.delijn.be/stops/400659", "https://data.delijn.be/stops/402529"], ["https://data.delijn.be/stops/404835", "https://data.delijn.be/stops/406109"], ["https://data.delijn.be/stops/209502", "https://data.delijn.be/stops/209618"], ["https://data.delijn.be/stops/305506", "https://data.delijn.be/stops/305513"], ["https://data.delijn.be/stops/401922", "https://data.delijn.be/stops/403750"], ["https://data.delijn.be/stops/400500", "https://data.delijn.be/stops/400513"], ["https://data.delijn.be/stops/107902", "https://data.delijn.be/stops/108953"], ["https://data.delijn.be/stops/306691", "https://data.delijn.be/stops/308925"], ["https://data.delijn.be/stops/402976", "https://data.delijn.be/stops/404039"], ["https://data.delijn.be/stops/208390", "https://data.delijn.be/stops/209389"], ["https://data.delijn.be/stops/404161", "https://data.delijn.be/stops/404163"], ["https://data.delijn.be/stops/202298", "https://data.delijn.be/stops/203298"], ["https://data.delijn.be/stops/304616", "https://data.delijn.be/stops/304637"], ["https://data.delijn.be/stops/400440", "https://data.delijn.be/stops/400441"], ["https://data.delijn.be/stops/503070", "https://data.delijn.be/stops/508073"], ["https://data.delijn.be/stops/200738", "https://data.delijn.be/stops/203582"], ["https://data.delijn.be/stops/202371", "https://data.delijn.be/stops/210104"], ["https://data.delijn.be/stops/502149", "https://data.delijn.be/stops/507112"], ["https://data.delijn.be/stops/508079", "https://data.delijn.be/stops/508083"], ["https://data.delijn.be/stops/501211", "https://data.delijn.be/stops/501310"], ["https://data.delijn.be/stops/505916", "https://data.delijn.be/stops/509528"], ["https://data.delijn.be/stops/502401", "https://data.delijn.be/stops/502652"], ["https://data.delijn.be/stops/400481", "https://data.delijn.be/stops/408698"], ["https://data.delijn.be/stops/203155", "https://data.delijn.be/stops/203179"], ["https://data.delijn.be/stops/403338", "https://data.delijn.be/stops/403356"], ["https://data.delijn.be/stops/401488", "https://data.delijn.be/stops/406808"], ["https://data.delijn.be/stops/301947", "https://data.delijn.be/stops/306971"], ["https://data.delijn.be/stops/403486", "https://data.delijn.be/stops/403487"], ["https://data.delijn.be/stops/200481", "https://data.delijn.be/stops/202132"], ["https://data.delijn.be/stops/401359", "https://data.delijn.be/stops/406356"], ["https://data.delijn.be/stops/106194", "https://data.delijn.be/stops/106195"], ["https://data.delijn.be/stops/202375", "https://data.delijn.be/stops/202376"], ["https://data.delijn.be/stops/201023", "https://data.delijn.be/stops/208849"], ["https://data.delijn.be/stops/101398", "https://data.delijn.be/stops/107304"], ["https://data.delijn.be/stops/408769", "https://data.delijn.be/stops/408770"], ["https://data.delijn.be/stops/109279", "https://data.delijn.be/stops/109283"], ["https://data.delijn.be/stops/102392", "https://data.delijn.be/stops/107114"], ["https://data.delijn.be/stops/102397", "https://data.delijn.be/stops/106340"], ["https://data.delijn.be/stops/304607", "https://data.delijn.be/stops/304626"], ["https://data.delijn.be/stops/504410", "https://data.delijn.be/stops/509436"], ["https://data.delijn.be/stops/502332", "https://data.delijn.be/stops/507282"], ["https://data.delijn.be/stops/202564", "https://data.delijn.be/stops/203564"], ["https://data.delijn.be/stops/401413", "https://data.delijn.be/stops/307498"], ["https://data.delijn.be/stops/200088", "https://data.delijn.be/stops/203240"], ["https://data.delijn.be/stops/207670", "https://data.delijn.be/stops/209501"], ["https://data.delijn.be/stops/401475", "https://data.delijn.be/stops/410129"], ["https://data.delijn.be/stops/301006", "https://data.delijn.be/stops/301012"], ["https://data.delijn.be/stops/202234", "https://data.delijn.be/stops/202235"], ["https://data.delijn.be/stops/400900", "https://data.delijn.be/stops/400963"], ["https://data.delijn.be/stops/205139", "https://data.delijn.be/stops/209912"], ["https://data.delijn.be/stops/201668", "https://data.delijn.be/stops/201679"], ["https://data.delijn.be/stops/204062", "https://data.delijn.be/stops/205062"], ["https://data.delijn.be/stops/505236", "https://data.delijn.be/stops/505775"], ["https://data.delijn.be/stops/200110", "https://data.delijn.be/stops/201110"], ["https://data.delijn.be/stops/202481", "https://data.delijn.be/stops/211003"], ["https://data.delijn.be/stops/504364", "https://data.delijn.be/stops/505306"], ["https://data.delijn.be/stops/207514", "https://data.delijn.be/stops/207661"], ["https://data.delijn.be/stops/302024", "https://data.delijn.be/stops/302025"], ["https://data.delijn.be/stops/406714", "https://data.delijn.be/stops/408681"], ["https://data.delijn.be/stops/402871", "https://data.delijn.be/stops/402873"], ["https://data.delijn.be/stops/408854", "https://data.delijn.be/stops/408855"], ["https://data.delijn.be/stops/406568", "https://data.delijn.be/stops/406569"], ["https://data.delijn.be/stops/201534", "https://data.delijn.be/stops/201546"], ["https://data.delijn.be/stops/207676", "https://data.delijn.be/stops/207677"], ["https://data.delijn.be/stops/300205", "https://data.delijn.be/stops/307130"], ["https://data.delijn.be/stops/504287", "https://data.delijn.be/stops/504627"], ["https://data.delijn.be/stops/303531", "https://data.delijn.be/stops/303572"], ["https://data.delijn.be/stops/407017", "https://data.delijn.be/stops/407049"], ["https://data.delijn.be/stops/201695", "https://data.delijn.be/stops/202689"], ["https://data.delijn.be/stops/203969", "https://data.delijn.be/stops/205092"], ["https://data.delijn.be/stops/503766", "https://data.delijn.be/stops/508966"], ["https://data.delijn.be/stops/301655", "https://data.delijn.be/stops/306301"], ["https://data.delijn.be/stops/405531", "https://data.delijn.be/stops/406829"], ["https://data.delijn.be/stops/201852", "https://data.delijn.be/stops/202361"], ["https://data.delijn.be/stops/408149", "https://data.delijn.be/stops/408150"], ["https://data.delijn.be/stops/101950", "https://data.delijn.be/stops/101955"], ["https://data.delijn.be/stops/300641", "https://data.delijn.be/stops/300678"], ["https://data.delijn.be/stops/307940", "https://data.delijn.be/stops/308776"], ["https://data.delijn.be/stops/105473", "https://data.delijn.be/stops/109934"], ["https://data.delijn.be/stops/109890", "https://data.delijn.be/stops/109893"], ["https://data.delijn.be/stops/400562", "https://data.delijn.be/stops/405122"], ["https://data.delijn.be/stops/308720", "https://data.delijn.be/stops/308725"], ["https://data.delijn.be/stops/103116", "https://data.delijn.be/stops/107366"], ["https://data.delijn.be/stops/304826", "https://data.delijn.be/stops/304839"], ["https://data.delijn.be/stops/209615", "https://data.delijn.be/stops/307745"], ["https://data.delijn.be/stops/500005", "https://data.delijn.be/stops/500603"], ["https://data.delijn.be/stops/302943", "https://data.delijn.be/stops/302966"], ["https://data.delijn.be/stops/405718", "https://data.delijn.be/stops/410144"], ["https://data.delijn.be/stops/303462", "https://data.delijn.be/stops/308068"], ["https://data.delijn.be/stops/103054", "https://data.delijn.be/stops/103056"], ["https://data.delijn.be/stops/103963", "https://data.delijn.be/stops/408923"], ["https://data.delijn.be/stops/400575", "https://data.delijn.be/stops/403019"], ["https://data.delijn.be/stops/103674", "https://data.delijn.be/stops/106216"], ["https://data.delijn.be/stops/405131", "https://data.delijn.be/stops/405186"], ["https://data.delijn.be/stops/207671", "https://data.delijn.be/stops/208483"], ["https://data.delijn.be/stops/403329", "https://data.delijn.be/stops/403339"], ["https://data.delijn.be/stops/201926", "https://data.delijn.be/stops/206400"], ["https://data.delijn.be/stops/105746", "https://data.delijn.be/stops/105747"], ["https://data.delijn.be/stops/202162", "https://data.delijn.be/stops/202634"], ["https://data.delijn.be/stops/405254", "https://data.delijn.be/stops/405290"], ["https://data.delijn.be/stops/301556", "https://data.delijn.be/stops/301561"], ["https://data.delijn.be/stops/109024", "https://data.delijn.be/stops/109078"], ["https://data.delijn.be/stops/207061", "https://data.delijn.be/stops/207176"], ["https://data.delijn.be/stops/300813", "https://data.delijn.be/stops/307233"], ["https://data.delijn.be/stops/500006", "https://data.delijn.be/stops/506510"], ["https://data.delijn.be/stops/303061", "https://data.delijn.be/stops/304468"], ["https://data.delijn.be/stops/404774", "https://data.delijn.be/stops/404780"], ["https://data.delijn.be/stops/504671", "https://data.delijn.be/stops/504793"], ["https://data.delijn.be/stops/300442", "https://data.delijn.be/stops/307100"], ["https://data.delijn.be/stops/204757", "https://data.delijn.be/stops/205482"], ["https://data.delijn.be/stops/509055", "https://data.delijn.be/stops/509057"], ["https://data.delijn.be/stops/200131", "https://data.delijn.be/stops/201491"], ["https://data.delijn.be/stops/402781", "https://data.delijn.be/stops/405581"], ["https://data.delijn.be/stops/403525", "https://data.delijn.be/stops/404409"], ["https://data.delijn.be/stops/206486", "https://data.delijn.be/stops/207485"], ["https://data.delijn.be/stops/101838", "https://data.delijn.be/stops/105905"], ["https://data.delijn.be/stops/103019", "https://data.delijn.be/stops/107231"], ["https://data.delijn.be/stops/105791", "https://data.delijn.be/stops/105792"], ["https://data.delijn.be/stops/208178", "https://data.delijn.be/stops/209177"], ["https://data.delijn.be/stops/102519", "https://data.delijn.be/stops/405004"], ["https://data.delijn.be/stops/407035", "https://data.delijn.be/stops/410032"], ["https://data.delijn.be/stops/201967", "https://data.delijn.be/stops/208038"], ["https://data.delijn.be/stops/306065", "https://data.delijn.be/stops/307201"], ["https://data.delijn.be/stops/106003", "https://data.delijn.be/stops/106006"], ["https://data.delijn.be/stops/305655", "https://data.delijn.be/stops/305662"], ["https://data.delijn.be/stops/404414", "https://data.delijn.be/stops/404415"], ["https://data.delijn.be/stops/405196", "https://data.delijn.be/stops/405198"], ["https://data.delijn.be/stops/202390", "https://data.delijn.be/stops/203389"], ["https://data.delijn.be/stops/401592", "https://data.delijn.be/stops/408635"], ["https://data.delijn.be/stops/406908", "https://data.delijn.be/stops/409468"], ["https://data.delijn.be/stops/300952", "https://data.delijn.be/stops/301943"], ["https://data.delijn.be/stops/206632", "https://data.delijn.be/stops/207890"], ["https://data.delijn.be/stops/101228", "https://data.delijn.be/stops/104449"], ["https://data.delijn.be/stops/300135", "https://data.delijn.be/stops/306821"], ["https://data.delijn.be/stops/403643", "https://data.delijn.be/stops/403645"], ["https://data.delijn.be/stops/205137", "https://data.delijn.be/stops/207894"], ["https://data.delijn.be/stops/107031", "https://data.delijn.be/stops/107033"], ["https://data.delijn.be/stops/205098", "https://data.delijn.be/stops/205141"], ["https://data.delijn.be/stops/204460", "https://data.delijn.be/stops/205460"], ["https://data.delijn.be/stops/103989", "https://data.delijn.be/stops/104818"], ["https://data.delijn.be/stops/209334", "https://data.delijn.be/stops/209335"], ["https://data.delijn.be/stops/504660", "https://data.delijn.be/stops/507953"], ["https://data.delijn.be/stops/102998", "https://data.delijn.be/stops/102999"], ["https://data.delijn.be/stops/407671", "https://data.delijn.be/stops/408448"], ["https://data.delijn.be/stops/109065", "https://data.delijn.be/stops/109067"], ["https://data.delijn.be/stops/204692", "https://data.delijn.be/stops/205006"], ["https://data.delijn.be/stops/407963", "https://data.delijn.be/stops/408424"], ["https://data.delijn.be/stops/204321", "https://data.delijn.be/stops/204322"], ["https://data.delijn.be/stops/501312", "https://data.delijn.be/stops/501313"], ["https://data.delijn.be/stops/408584", "https://data.delijn.be/stops/408587"], ["https://data.delijn.be/stops/503931", "https://data.delijn.be/stops/508931"], ["https://data.delijn.be/stops/209030", "https://data.delijn.be/stops/217001"], ["https://data.delijn.be/stops/501205", "https://data.delijn.be/stops/506205"], ["https://data.delijn.be/stops/101172", "https://data.delijn.be/stops/104030"], ["https://data.delijn.be/stops/403323", "https://data.delijn.be/stops/407634"], ["https://data.delijn.be/stops/504464", "https://data.delijn.be/stops/509464"], ["https://data.delijn.be/stops/400859", "https://data.delijn.be/stops/400867"], ["https://data.delijn.be/stops/204416", "https://data.delijn.be/stops/205769"], ["https://data.delijn.be/stops/105522", "https://data.delijn.be/stops/106974"], ["https://data.delijn.be/stops/406648", "https://data.delijn.be/stops/406649"], ["https://data.delijn.be/stops/108287", "https://data.delijn.be/stops/108288"], ["https://data.delijn.be/stops/505332", "https://data.delijn.be/stops/507495"], ["https://data.delijn.be/stops/208407", "https://data.delijn.be/stops/209820"], ["https://data.delijn.be/stops/302956", "https://data.delijn.be/stops/302958"], ["https://data.delijn.be/stops/503199", "https://data.delijn.be/stops/508199"], ["https://data.delijn.be/stops/211084", "https://data.delijn.be/stops/211132"], ["https://data.delijn.be/stops/505331", "https://data.delijn.be/stops/507515"], ["https://data.delijn.be/stops/504509", "https://data.delijn.be/stops/505167"], ["https://data.delijn.be/stops/107003", "https://data.delijn.be/stops/107006"], ["https://data.delijn.be/stops/200132", "https://data.delijn.be/stops/201132"], ["https://data.delijn.be/stops/209740", "https://data.delijn.be/stops/209742"], ["https://data.delijn.be/stops/204669", "https://data.delijn.be/stops/205697"], ["https://data.delijn.be/stops/402889", "https://data.delijn.be/stops/402942"], ["https://data.delijn.be/stops/501204", "https://data.delijn.be/stops/506204"], ["https://data.delijn.be/stops/501087", "https://data.delijn.be/stops/505148"], ["https://data.delijn.be/stops/202784", "https://data.delijn.be/stops/203784"], ["https://data.delijn.be/stops/502009", "https://data.delijn.be/stops/505764"], ["https://data.delijn.be/stops/107200", "https://data.delijn.be/stops/107202"], ["https://data.delijn.be/stops/106115", "https://data.delijn.be/stops/109085"], ["https://data.delijn.be/stops/503330", "https://data.delijn.be/stops/508330"], ["https://data.delijn.be/stops/303823", "https://data.delijn.be/stops/307496"], ["https://data.delijn.be/stops/407256", "https://data.delijn.be/stops/407335"], ["https://data.delijn.be/stops/401089", "https://data.delijn.be/stops/401114"], ["https://data.delijn.be/stops/302906", "https://data.delijn.be/stops/304313"], ["https://data.delijn.be/stops/409077", "https://data.delijn.be/stops/409092"], ["https://data.delijn.be/stops/505079", "https://data.delijn.be/stops/509698"], ["https://data.delijn.be/stops/206794", "https://data.delijn.be/stops/206795"], ["https://data.delijn.be/stops/408820", "https://data.delijn.be/stops/408827"], ["https://data.delijn.be/stops/403487", "https://data.delijn.be/stops/409296"], ["https://data.delijn.be/stops/204431", "https://data.delijn.be/stops/204432"], ["https://data.delijn.be/stops/308125", "https://data.delijn.be/stops/308722"], ["https://data.delijn.be/stops/503807", "https://data.delijn.be/stops/505542"], ["https://data.delijn.be/stops/403164", "https://data.delijn.be/stops/403314"], ["https://data.delijn.be/stops/202173", "https://data.delijn.be/stops/202174"], ["https://data.delijn.be/stops/300807", "https://data.delijn.be/stops/300808"], ["https://data.delijn.be/stops/306194", "https://data.delijn.be/stops/307521"], ["https://data.delijn.be/stops/402156", "https://data.delijn.be/stops/409382"], ["https://data.delijn.be/stops/400871", "https://data.delijn.be/stops/400894"], ["https://data.delijn.be/stops/501489", "https://data.delijn.be/stops/506044"], ["https://data.delijn.be/stops/501476", "https://data.delijn.be/stops/505029"], ["https://data.delijn.be/stops/404866", "https://data.delijn.be/stops/404964"], ["https://data.delijn.be/stops/304547", "https://data.delijn.be/stops/304552"], ["https://data.delijn.be/stops/404059", "https://data.delijn.be/stops/406856"], ["https://data.delijn.be/stops/208076", "https://data.delijn.be/stops/209077"], ["https://data.delijn.be/stops/101657", "https://data.delijn.be/stops/102634"], ["https://data.delijn.be/stops/504517", "https://data.delijn.be/stops/505112"], ["https://data.delijn.be/stops/404714", "https://data.delijn.be/stops/404721"], ["https://data.delijn.be/stops/406161", "https://data.delijn.be/stops/406229"], ["https://data.delijn.be/stops/206502", "https://data.delijn.be/stops/207503"], ["https://data.delijn.be/stops/305460", "https://data.delijn.be/stops/306559"], ["https://data.delijn.be/stops/403018", "https://data.delijn.be/stops/408197"], ["https://data.delijn.be/stops/503669", "https://data.delijn.be/stops/504362"], ["https://data.delijn.be/stops/103078", "https://data.delijn.be/stops/105006"], ["https://data.delijn.be/stops/301759", "https://data.delijn.be/stops/308418"], ["https://data.delijn.be/stops/404019", "https://data.delijn.be/stops/404021"], ["https://data.delijn.be/stops/404785", "https://data.delijn.be/stops/404786"], ["https://data.delijn.be/stops/208410", "https://data.delijn.be/stops/208766"], ["https://data.delijn.be/stops/102826", "https://data.delijn.be/stops/106233"], ["https://data.delijn.be/stops/202413", "https://data.delijn.be/stops/203421"], ["https://data.delijn.be/stops/204408", "https://data.delijn.be/stops/205200"], ["https://data.delijn.be/stops/304807", "https://data.delijn.be/stops/304808"], ["https://data.delijn.be/stops/402235", "https://data.delijn.be/stops/409512"], ["https://data.delijn.be/stops/302684", "https://data.delijn.be/stops/302697"], ["https://data.delijn.be/stops/301555", "https://data.delijn.be/stops/301562"], ["https://data.delijn.be/stops/305944", "https://data.delijn.be/stops/308416"], ["https://data.delijn.be/stops/401756", "https://data.delijn.be/stops/401845"], ["https://data.delijn.be/stops/301437", "https://data.delijn.be/stops/301442"], ["https://data.delijn.be/stops/206621", "https://data.delijn.be/stops/207869"], ["https://data.delijn.be/stops/503928", "https://data.delijn.be/stops/505250"], ["https://data.delijn.be/stops/206354", "https://data.delijn.be/stops/206884"], ["https://data.delijn.be/stops/301269", "https://data.delijn.be/stops/301270"], ["https://data.delijn.be/stops/203673", "https://data.delijn.be/stops/203726"], ["https://data.delijn.be/stops/202567", "https://data.delijn.be/stops/202684"], ["https://data.delijn.be/stops/502567", "https://data.delijn.be/stops/507567"], ["https://data.delijn.be/stops/502494", "https://data.delijn.be/stops/505323"], ["https://data.delijn.be/stops/404856", "https://data.delijn.be/stops/404861"], ["https://data.delijn.be/stops/404524", "https://data.delijn.be/stops/404525"], ["https://data.delijn.be/stops/101931", "https://data.delijn.be/stops/101932"], ["https://data.delijn.be/stops/108527", "https://data.delijn.be/stops/108538"], ["https://data.delijn.be/stops/105555", "https://data.delijn.be/stops/108975"], ["https://data.delijn.be/stops/400661", "https://data.delijn.be/stops/400665"], ["https://data.delijn.be/stops/104839", "https://data.delijn.be/stops/107953"], ["https://data.delijn.be/stops/302758", "https://data.delijn.be/stops/302783"], ["https://data.delijn.be/stops/408579", "https://data.delijn.be/stops/408587"], ["https://data.delijn.be/stops/108313", "https://data.delijn.be/stops/108753"], ["https://data.delijn.be/stops/305343", "https://data.delijn.be/stops/305348"], ["https://data.delijn.be/stops/201913", "https://data.delijn.be/stops/203469"], ["https://data.delijn.be/stops/509252", "https://data.delijn.be/stops/509370"], ["https://data.delijn.be/stops/403313", "https://data.delijn.be/stops/403345"], ["https://data.delijn.be/stops/205241", "https://data.delijn.be/stops/205477"], ["https://data.delijn.be/stops/302807", "https://data.delijn.be/stops/302808"], ["https://data.delijn.be/stops/308649", "https://data.delijn.be/stops/308652"], ["https://data.delijn.be/stops/103682", "https://data.delijn.be/stops/109275"], ["https://data.delijn.be/stops/405030", "https://data.delijn.be/stops/405033"], ["https://data.delijn.be/stops/502920", "https://data.delijn.be/stops/507263"], ["https://data.delijn.be/stops/202275", "https://data.delijn.be/stops/202681"], ["https://data.delijn.be/stops/509043", "https://data.delijn.be/stops/509049"], ["https://data.delijn.be/stops/306624", "https://data.delijn.be/stops/306625"], ["https://data.delijn.be/stops/303348", "https://data.delijn.be/stops/303349"], ["https://data.delijn.be/stops/205980", "https://data.delijn.be/stops/207819"], ["https://data.delijn.be/stops/506296", "https://data.delijn.be/stops/506360"], ["https://data.delijn.be/stops/502061", "https://data.delijn.be/stops/507061"], ["https://data.delijn.be/stops/307270", "https://data.delijn.be/stops/307271"], ["https://data.delijn.be/stops/502048", "https://data.delijn.be/stops/507047"], ["https://data.delijn.be/stops/202312", "https://data.delijn.be/stops/202313"], ["https://data.delijn.be/stops/109084", "https://data.delijn.be/stops/109866"], ["https://data.delijn.be/stops/302646", "https://data.delijn.be/stops/302660"], ["https://data.delijn.be/stops/408952", "https://data.delijn.be/stops/408992"], ["https://data.delijn.be/stops/504127", "https://data.delijn.be/stops/509127"], ["https://data.delijn.be/stops/508100", "https://data.delijn.be/stops/508437"], ["https://data.delijn.be/stops/202156", "https://data.delijn.be/stops/202628"], ["https://data.delijn.be/stops/106872", "https://data.delijn.be/stops/106873"], ["https://data.delijn.be/stops/400031", "https://data.delijn.be/stops/400316"], ["https://data.delijn.be/stops/509783", "https://data.delijn.be/stops/509788"], ["https://data.delijn.be/stops/200952", "https://data.delijn.be/stops/203249"], ["https://data.delijn.be/stops/200309", "https://data.delijn.be/stops/201160"], ["https://data.delijn.be/stops/105802", "https://data.delijn.be/stops/305791"], ["https://data.delijn.be/stops/502690", "https://data.delijn.be/stops/508824"], ["https://data.delijn.be/stops/407159", "https://data.delijn.be/stops/407179"], ["https://data.delijn.be/stops/408008", "https://data.delijn.be/stops/408010"], ["https://data.delijn.be/stops/305337", "https://data.delijn.be/stops/305340"], ["https://data.delijn.be/stops/400508", "https://data.delijn.be/stops/404049"], ["https://data.delijn.be/stops/504416", "https://data.delijn.be/stops/509009"], ["https://data.delijn.be/stops/400599", "https://data.delijn.be/stops/401997"], ["https://data.delijn.be/stops/202301", "https://data.delijn.be/stops/203301"], ["https://data.delijn.be/stops/508602", "https://data.delijn.be/stops/508611"], ["https://data.delijn.be/stops/302163", "https://data.delijn.be/stops/307805"], ["https://data.delijn.be/stops/400613", "https://data.delijn.be/stops/404294"], ["https://data.delijn.be/stops/505323", "https://data.delijn.be/stops/505627"], ["https://data.delijn.be/stops/101310", "https://data.delijn.be/stops/102385"], ["https://data.delijn.be/stops/206704", "https://data.delijn.be/stops/207607"], ["https://data.delijn.be/stops/410028", "https://data.delijn.be/stops/410029"], ["https://data.delijn.be/stops/303722", "https://data.delijn.be/stops/303789"], ["https://data.delijn.be/stops/101423", "https://data.delijn.be/stops/106965"], ["https://data.delijn.be/stops/403832", "https://data.delijn.be/stops/405636"], ["https://data.delijn.be/stops/404535", "https://data.delijn.be/stops/404585"], ["https://data.delijn.be/stops/503382", "https://data.delijn.be/stops/508439"], ["https://data.delijn.be/stops/201206", "https://data.delijn.be/stops/202142"], ["https://data.delijn.be/stops/306815", "https://data.delijn.be/stops/308591"], ["https://data.delijn.be/stops/200857", "https://data.delijn.be/stops/201846"], ["https://data.delijn.be/stops/102750", "https://data.delijn.be/stops/102760"], ["https://data.delijn.be/stops/104022", "https://data.delijn.be/stops/104023"], ["https://data.delijn.be/stops/406529", "https://data.delijn.be/stops/409252"], ["https://data.delijn.be/stops/401251", "https://data.delijn.be/stops/401259"], ["https://data.delijn.be/stops/206258", "https://data.delijn.be/stops/206260"], ["https://data.delijn.be/stops/503834", "https://data.delijn.be/stops/508832"], ["https://data.delijn.be/stops/400205", "https://data.delijn.be/stops/400217"], ["https://data.delijn.be/stops/302356", "https://data.delijn.be/stops/302682"], ["https://data.delijn.be/stops/105732", "https://data.delijn.be/stops/109838"], ["https://data.delijn.be/stops/307420", "https://data.delijn.be/stops/308827"], ["https://data.delijn.be/stops/303168", "https://data.delijn.be/stops/304320"], ["https://data.delijn.be/stops/302708", "https://data.delijn.be/stops/302727"], ["https://data.delijn.be/stops/101344", "https://data.delijn.be/stops/108064"], ["https://data.delijn.be/stops/102977", "https://data.delijn.be/stops/107610"], ["https://data.delijn.be/stops/103694", "https://data.delijn.be/stops/109604"], ["https://data.delijn.be/stops/306910", "https://data.delijn.be/stops/308127"], ["https://data.delijn.be/stops/400877", "https://data.delijn.be/stops/403582"], ["https://data.delijn.be/stops/300545", "https://data.delijn.be/stops/306288"], ["https://data.delijn.be/stops/302505", "https://data.delijn.be/stops/302510"], ["https://data.delijn.be/stops/201108", "https://data.delijn.be/stops/209908"], ["https://data.delijn.be/stops/305508", "https://data.delijn.be/stops/305509"], ["https://data.delijn.be/stops/101684", "https://data.delijn.be/stops/101688"], ["https://data.delijn.be/stops/206872", "https://data.delijn.be/stops/207872"], ["https://data.delijn.be/stops/301995", "https://data.delijn.be/stops/303613"], ["https://data.delijn.be/stops/202003", "https://data.delijn.be/stops/203022"], ["https://data.delijn.be/stops/208541", "https://data.delijn.be/stops/208543"], ["https://data.delijn.be/stops/400700", "https://data.delijn.be/stops/400898"], ["https://data.delijn.be/stops/303566", "https://data.delijn.be/stops/303567"], ["https://data.delijn.be/stops/101941", "https://data.delijn.be/stops/101943"], ["https://data.delijn.be/stops/404934", "https://data.delijn.be/stops/405649"], ["https://data.delijn.be/stops/500029", "https://data.delijn.be/stops/503884"], ["https://data.delijn.be/stops/101514", "https://data.delijn.be/stops/102251"], ["https://data.delijn.be/stops/504002", "https://data.delijn.be/stops/508498"], ["https://data.delijn.be/stops/206048", "https://data.delijn.be/stops/207999"], ["https://data.delijn.be/stops/107657", "https://data.delijn.be/stops/109861"], ["https://data.delijn.be/stops/504645", "https://data.delijn.be/stops/509645"], ["https://data.delijn.be/stops/304399", "https://data.delijn.be/stops/304426"], ["https://data.delijn.be/stops/408169", "https://data.delijn.be/stops/409543"], ["https://data.delijn.be/stops/509048", "https://data.delijn.be/stops/509150"], ["https://data.delijn.be/stops/106652", "https://data.delijn.be/stops/106653"], ["https://data.delijn.be/stops/209096", "https://data.delijn.be/stops/209633"], ["https://data.delijn.be/stops/503873", "https://data.delijn.be/stops/508872"], ["https://data.delijn.be/stops/206997", "https://data.delijn.be/stops/207868"], ["https://data.delijn.be/stops/101476", "https://data.delijn.be/stops/101477"], ["https://data.delijn.be/stops/506150", "https://data.delijn.be/stops/506432"], ["https://data.delijn.be/stops/206450", "https://data.delijn.be/stops/207451"], ["https://data.delijn.be/stops/403370", "https://data.delijn.be/stops/403510"], ["https://data.delijn.be/stops/106425", "https://data.delijn.be/stops/106511"], ["https://data.delijn.be/stops/502321", "https://data.delijn.be/stops/505225"], ["https://data.delijn.be/stops/202497", "https://data.delijn.be/stops/203176"], ["https://data.delijn.be/stops/101482", "https://data.delijn.be/stops/108212"], ["https://data.delijn.be/stops/502426", "https://data.delijn.be/stops/507307"], ["https://data.delijn.be/stops/104738", "https://data.delijn.be/stops/107333"], ["https://data.delijn.be/stops/101904", "https://data.delijn.be/stops/105456"], ["https://data.delijn.be/stops/201002", "https://data.delijn.be/stops/210857"], ["https://data.delijn.be/stops/401210", "https://data.delijn.be/stops/401212"], ["https://data.delijn.be/stops/302785", "https://data.delijn.be/stops/304732"], ["https://data.delijn.be/stops/306970", "https://data.delijn.be/stops/306971"], ["https://data.delijn.be/stops/405827", "https://data.delijn.be/stops/409421"], ["https://data.delijn.be/stops/306662", "https://data.delijn.be/stops/306665"], ["https://data.delijn.be/stops/402095", "https://data.delijn.be/stops/402174"], ["https://data.delijn.be/stops/208085", "https://data.delijn.be/stops/208086"], ["https://data.delijn.be/stops/106509", "https://data.delijn.be/stops/106512"], ["https://data.delijn.be/stops/505079", "https://data.delijn.be/stops/505510"], ["https://data.delijn.be/stops/301249", "https://data.delijn.be/stops/307389"], ["https://data.delijn.be/stops/208581", "https://data.delijn.be/stops/301423"], ["https://data.delijn.be/stops/206536", "https://data.delijn.be/stops/209739"], ["https://data.delijn.be/stops/200682", "https://data.delijn.be/stops/208653"], ["https://data.delijn.be/stops/200942", "https://data.delijn.be/stops/203687"], ["https://data.delijn.be/stops/503670", "https://data.delijn.be/stops/509842"], ["https://data.delijn.be/stops/500129", "https://data.delijn.be/stops/505627"], ["https://data.delijn.be/stops/206300", "https://data.delijn.be/stops/206472"], ["https://data.delijn.be/stops/106598", "https://data.delijn.be/stops/106599"], ["https://data.delijn.be/stops/106567", "https://data.delijn.be/stops/106571"], ["https://data.delijn.be/stops/301486", "https://data.delijn.be/stops/308075"], ["https://data.delijn.be/stops/104951", "https://data.delijn.be/stops/109569"], ["https://data.delijn.be/stops/305735", "https://data.delijn.be/stops/305742"], ["https://data.delijn.be/stops/503716", "https://data.delijn.be/stops/505999"], ["https://data.delijn.be/stops/108564", "https://data.delijn.be/stops/109092"], ["https://data.delijn.be/stops/407897", "https://data.delijn.be/stops/407931"], ["https://data.delijn.be/stops/208129", "https://data.delijn.be/stops/208816"], ["https://data.delijn.be/stops/503290", "https://data.delijn.be/stops/505292"], ["https://data.delijn.be/stops/202440", "https://data.delijn.be/stops/203440"], ["https://data.delijn.be/stops/501300", "https://data.delijn.be/stops/506301"], ["https://data.delijn.be/stops/302198", "https://data.delijn.be/stops/308110"], ["https://data.delijn.be/stops/305452", "https://data.delijn.be/stops/308965"], ["https://data.delijn.be/stops/407276", "https://data.delijn.be/stops/407277"], ["https://data.delijn.be/stops/209011", "https://data.delijn.be/stops/209012"], ["https://data.delijn.be/stops/200868", "https://data.delijn.be/stops/203341"], ["https://data.delijn.be/stops/300194", "https://data.delijn.be/stops/300217"], ["https://data.delijn.be/stops/204994", "https://data.delijn.be/stops/505512"], ["https://data.delijn.be/stops/301116", "https://data.delijn.be/stops/302242"], ["https://data.delijn.be/stops/402538", "https://data.delijn.be/stops/404093"], ["https://data.delijn.be/stops/408177", "https://data.delijn.be/stops/408178"], ["https://data.delijn.be/stops/106624", "https://data.delijn.be/stops/106625"], ["https://data.delijn.be/stops/408524", "https://data.delijn.be/stops/408525"], ["https://data.delijn.be/stops/202593", "https://data.delijn.be/stops/203593"], ["https://data.delijn.be/stops/207158", "https://data.delijn.be/stops/207159"], ["https://data.delijn.be/stops/406119", "https://data.delijn.be/stops/410262"], ["https://data.delijn.be/stops/104732", "https://data.delijn.be/stops/204266"], ["https://data.delijn.be/stops/406042", "https://data.delijn.be/stops/406379"], ["https://data.delijn.be/stops/304926", "https://data.delijn.be/stops/306109"], ["https://data.delijn.be/stops/200837", "https://data.delijn.be/stops/200863"], ["https://data.delijn.be/stops/101666", "https://data.delijn.be/stops/109189"], ["https://data.delijn.be/stops/504748", "https://data.delijn.be/stops/509030"], ["https://data.delijn.be/stops/304384", "https://data.delijn.be/stops/304396"], ["https://data.delijn.be/stops/105217", "https://data.delijn.be/stops/109395"], ["https://data.delijn.be/stops/103107", "https://data.delijn.be/stops/106567"], ["https://data.delijn.be/stops/501681", "https://data.delijn.be/stops/506681"], ["https://data.delijn.be/stops/103011", "https://data.delijn.be/stops/104210"], ["https://data.delijn.be/stops/201253", "https://data.delijn.be/stops/203558"], ["https://data.delijn.be/stops/103170", "https://data.delijn.be/stops/103185"], ["https://data.delijn.be/stops/503112", "https://data.delijn.be/stops/508113"], ["https://data.delijn.be/stops/103980", "https://data.delijn.be/stops/104645"], ["https://data.delijn.be/stops/405759", "https://data.delijn.be/stops/303335"], ["https://data.delijn.be/stops/102728", "https://data.delijn.be/stops/102729"], ["https://data.delijn.be/stops/102555", "https://data.delijn.be/stops/103110"], ["https://data.delijn.be/stops/503961", "https://data.delijn.be/stops/504342"], ["https://data.delijn.be/stops/107716", "https://data.delijn.be/stops/107717"], ["https://data.delijn.be/stops/205176", "https://data.delijn.be/stops/205215"], ["https://data.delijn.be/stops/201532", "https://data.delijn.be/stops/211109"], ["https://data.delijn.be/stops/409750", "https://data.delijn.be/stops/409752"], ["https://data.delijn.be/stops/303540", "https://data.delijn.be/stops/303571"], ["https://data.delijn.be/stops/501664", "https://data.delijn.be/stops/506664"], ["https://data.delijn.be/stops/308472", "https://data.delijn.be/stops/308521"], ["https://data.delijn.be/stops/404322", "https://data.delijn.be/stops/404370"], ["https://data.delijn.be/stops/402858", "https://data.delijn.be/stops/409009"], ["https://data.delijn.be/stops/507335", "https://data.delijn.be/stops/507711"], ["https://data.delijn.be/stops/204929", "https://data.delijn.be/stops/209294"], ["https://data.delijn.be/stops/300479", "https://data.delijn.be/stops/300495"], ["https://data.delijn.be/stops/500017", "https://data.delijn.be/stops/501049"], ["https://data.delijn.be/stops/406602", "https://data.delijn.be/stops/406604"], ["https://data.delijn.be/stops/503558", "https://data.delijn.be/stops/503689"], ["https://data.delijn.be/stops/403221", "https://data.delijn.be/stops/403223"], ["https://data.delijn.be/stops/300451", "https://data.delijn.be/stops/308061"], ["https://data.delijn.be/stops/300486", "https://data.delijn.be/stops/300496"], ["https://data.delijn.be/stops/306885", "https://data.delijn.be/stops/306886"], ["https://data.delijn.be/stops/301455", "https://data.delijn.be/stops/301459"], ["https://data.delijn.be/stops/400502", "https://data.delijn.be/stops/400503"], ["https://data.delijn.be/stops/102940", "https://data.delijn.be/stops/104970"], ["https://data.delijn.be/stops/408884", "https://data.delijn.be/stops/408885"], ["https://data.delijn.be/stops/301165", "https://data.delijn.be/stops/301166"], ["https://data.delijn.be/stops/404130", "https://data.delijn.be/stops/404189"], ["https://data.delijn.be/stops/208562", "https://data.delijn.be/stops/209596"], ["https://data.delijn.be/stops/104741", "https://data.delijn.be/stops/108904"], ["https://data.delijn.be/stops/209590", "https://data.delijn.be/stops/305223"], ["https://data.delijn.be/stops/301396", "https://data.delijn.be/stops/301397"], ["https://data.delijn.be/stops/404178", "https://data.delijn.be/stops/404179"], ["https://data.delijn.be/stops/507153", "https://data.delijn.be/stops/507576"], ["https://data.delijn.be/stops/504699", "https://data.delijn.be/stops/509574"], ["https://data.delijn.be/stops/301009", "https://data.delijn.be/stops/301016"], ["https://data.delijn.be/stops/409386", "https://data.delijn.be/stops/409398"], ["https://data.delijn.be/stops/405055", "https://data.delijn.be/stops/405101"], ["https://data.delijn.be/stops/504054", "https://data.delijn.be/stops/504531"], ["https://data.delijn.be/stops/103112", "https://data.delijn.be/stops/104815"], ["https://data.delijn.be/stops/504446", "https://data.delijn.be/stops/509446"], ["https://data.delijn.be/stops/300537", "https://data.delijn.be/stops/300538"], ["https://data.delijn.be/stops/101350", "https://data.delijn.be/stops/102763"], ["https://data.delijn.be/stops/105262", "https://data.delijn.be/stops/105264"], ["https://data.delijn.be/stops/305060", "https://data.delijn.be/stops/306919"], ["https://data.delijn.be/stops/400966", "https://data.delijn.be/stops/406558"], ["https://data.delijn.be/stops/204413", "https://data.delijn.be/stops/205767"], ["https://data.delijn.be/stops/402378", "https://data.delijn.be/stops/404730"], ["https://data.delijn.be/stops/307389", "https://data.delijn.be/stops/307906"], ["https://data.delijn.be/stops/405951", "https://data.delijn.be/stops/405953"], ["https://data.delijn.be/stops/105766", "https://data.delijn.be/stops/108575"], ["https://data.delijn.be/stops/101208", "https://data.delijn.be/stops/107843"], ["https://data.delijn.be/stops/103027", "https://data.delijn.be/stops/107476"], ["https://data.delijn.be/stops/400515", "https://data.delijn.be/stops/403826"], ["https://data.delijn.be/stops/300359", "https://data.delijn.be/stops/300360"], ["https://data.delijn.be/stops/105972", "https://data.delijn.be/stops/105973"], ["https://data.delijn.be/stops/403916", "https://data.delijn.be/stops/403917"], ["https://data.delijn.be/stops/305216", "https://data.delijn.be/stops/306966"], ["https://data.delijn.be/stops/401090", "https://data.delijn.be/stops/401099"], ["https://data.delijn.be/stops/103623", "https://data.delijn.be/stops/103647"], ["https://data.delijn.be/stops/207959", "https://data.delijn.be/stops/306078"], ["https://data.delijn.be/stops/300094", "https://data.delijn.be/stops/300117"], ["https://data.delijn.be/stops/400065", "https://data.delijn.be/stops/409833"], ["https://data.delijn.be/stops/304451", "https://data.delijn.be/stops/307714"], ["https://data.delijn.be/stops/202344", "https://data.delijn.be/stops/209743"], ["https://data.delijn.be/stops/304349", "https://data.delijn.be/stops/304357"], ["https://data.delijn.be/stops/504008", "https://data.delijn.be/stops/508906"], ["https://data.delijn.be/stops/205460", "https://data.delijn.be/stops/214017"], ["https://data.delijn.be/stops/402777", "https://data.delijn.be/stops/406473"], ["https://data.delijn.be/stops/509328", "https://data.delijn.be/stops/509329"], ["https://data.delijn.be/stops/502528", "https://data.delijn.be/stops/507548"], ["https://data.delijn.be/stops/300478", "https://data.delijn.be/stops/300483"], ["https://data.delijn.be/stops/208652", "https://data.delijn.be/stops/209652"], ["https://data.delijn.be/stops/408578", "https://data.delijn.be/stops/408591"], ["https://data.delijn.be/stops/207350", "https://data.delijn.be/stops/207351"], ["https://data.delijn.be/stops/304389", "https://data.delijn.be/stops/304396"], ["https://data.delijn.be/stops/407753", "https://data.delijn.be/stops/407760"], ["https://data.delijn.be/stops/104742", "https://data.delijn.be/stops/107338"], ["https://data.delijn.be/stops/206894", "https://data.delijn.be/stops/207886"], ["https://data.delijn.be/stops/503661", "https://data.delijn.be/stops/505130"], ["https://data.delijn.be/stops/401806", "https://data.delijn.be/stops/406351"], ["https://data.delijn.be/stops/206762", "https://data.delijn.be/stops/208564"], ["https://data.delijn.be/stops/107323", "https://data.delijn.be/stops/107327"], ["https://data.delijn.be/stops/503098", "https://data.delijn.be/stops/505388"], ["https://data.delijn.be/stops/500120", "https://data.delijn.be/stops/502450"], ["https://data.delijn.be/stops/502516", "https://data.delijn.be/stops/505337"], ["https://data.delijn.be/stops/201688", "https://data.delijn.be/stops/201849"], ["https://data.delijn.be/stops/406282", "https://data.delijn.be/stops/406284"], ["https://data.delijn.be/stops/208117", "https://data.delijn.be/stops/209116"], ["https://data.delijn.be/stops/206197", "https://data.delijn.be/stops/207198"], ["https://data.delijn.be/stops/101196", "https://data.delijn.be/stops/101207"], ["https://data.delijn.be/stops/405414", "https://data.delijn.be/stops/406395"], ["https://data.delijn.be/stops/504025", "https://data.delijn.be/stops/504119"], ["https://data.delijn.be/stops/303302", "https://data.delijn.be/stops/303343"], ["https://data.delijn.be/stops/107409", "https://data.delijn.be/stops/107601"], ["https://data.delijn.be/stops/208096", "https://data.delijn.be/stops/209633"], ["https://data.delijn.be/stops/404784", "https://data.delijn.be/stops/410051"], ["https://data.delijn.be/stops/407542", "https://data.delijn.be/stops/407547"], ["https://data.delijn.be/stops/102482", "https://data.delijn.be/stops/400176"], ["https://data.delijn.be/stops/306771", "https://data.delijn.be/stops/306772"], ["https://data.delijn.be/stops/202013", "https://data.delijn.be/stops/203013"], ["https://data.delijn.be/stops/300543", "https://data.delijn.be/stops/304081"], ["https://data.delijn.be/stops/501407", "https://data.delijn.be/stops/506407"], ["https://data.delijn.be/stops/206019", "https://data.delijn.be/stops/206143"], ["https://data.delijn.be/stops/507109", "https://data.delijn.be/stops/507145"], ["https://data.delijn.be/stops/401964", "https://data.delijn.be/stops/402040"], ["https://data.delijn.be/stops/508066", "https://data.delijn.be/stops/509950"], ["https://data.delijn.be/stops/106124", "https://data.delijn.be/stops/106126"], ["https://data.delijn.be/stops/501658", "https://data.delijn.be/stops/506658"], ["https://data.delijn.be/stops/103118", "https://data.delijn.be/stops/104111"], ["https://data.delijn.be/stops/107834", "https://data.delijn.be/stops/107837"], ["https://data.delijn.be/stops/106440", "https://data.delijn.be/stops/106441"], ["https://data.delijn.be/stops/503187", "https://data.delijn.be/stops/508183"], ["https://data.delijn.be/stops/407247", "https://data.delijn.be/stops/407455"], ["https://data.delijn.be/stops/504281", "https://data.delijn.be/stops/504616"], ["https://data.delijn.be/stops/202332", "https://data.delijn.be/stops/202333"], ["https://data.delijn.be/stops/405788", "https://data.delijn.be/stops/409692"], ["https://data.delijn.be/stops/200514", "https://data.delijn.be/stops/201174"], ["https://data.delijn.be/stops/208589", "https://data.delijn.be/stops/305236"], ["https://data.delijn.be/stops/104103", "https://data.delijn.be/stops/108295"], ["https://data.delijn.be/stops/202940", "https://data.delijn.be/stops/203940"], ["https://data.delijn.be/stops/405754", "https://data.delijn.be/stops/405763"], ["https://data.delijn.be/stops/501002", "https://data.delijn.be/stops/506216"], ["https://data.delijn.be/stops/107567", "https://data.delijn.be/stops/107568"], ["https://data.delijn.be/stops/208133", "https://data.delijn.be/stops/208199"], ["https://data.delijn.be/stops/302156", "https://data.delijn.be/stops/302157"], ["https://data.delijn.be/stops/109156", "https://data.delijn.be/stops/109158"], ["https://data.delijn.be/stops/107636", "https://data.delijn.be/stops/108838"], ["https://data.delijn.be/stops/501096", "https://data.delijn.be/stops/507208"], ["https://data.delijn.be/stops/204015", "https://data.delijn.be/stops/204350"], ["https://data.delijn.be/stops/406518", "https://data.delijn.be/stops/409349"], ["https://data.delijn.be/stops/101409", "https://data.delijn.be/stops/101434"], ["https://data.delijn.be/stops/202105", "https://data.delijn.be/stops/203104"], ["https://data.delijn.be/stops/109298", "https://data.delijn.be/stops/109300"], ["https://data.delijn.be/stops/301608", "https://data.delijn.be/stops/301609"], ["https://data.delijn.be/stops/504140", "https://data.delijn.be/stops/504141"], ["https://data.delijn.be/stops/208358", "https://data.delijn.be/stops/209357"], ["https://data.delijn.be/stops/400104", "https://data.delijn.be/stops/400150"], ["https://data.delijn.be/stops/206321", "https://data.delijn.be/stops/206504"], ["https://data.delijn.be/stops/102459", "https://data.delijn.be/stops/406858"], ["https://data.delijn.be/stops/202926", "https://data.delijn.be/stops/208694"], ["https://data.delijn.be/stops/101459", "https://data.delijn.be/stops/109280"], ["https://data.delijn.be/stops/106943", "https://data.delijn.be/stops/108702"], ["https://data.delijn.be/stops/303385", "https://data.delijn.be/stops/308893"], ["https://data.delijn.be/stops/202877", "https://data.delijn.be/stops/209534"], ["https://data.delijn.be/stops/406268", "https://data.delijn.be/stops/406421"], ["https://data.delijn.be/stops/201385", "https://data.delijn.be/stops/202645"], ["https://data.delijn.be/stops/202008", "https://data.delijn.be/stops/203007"], ["https://data.delijn.be/stops/503554", "https://data.delijn.be/stops/508129"], ["https://data.delijn.be/stops/402685", "https://data.delijn.be/stops/402732"], ["https://data.delijn.be/stops/400918", "https://data.delijn.be/stops/400919"], ["https://data.delijn.be/stops/403803", "https://data.delijn.be/stops/403806"], ["https://data.delijn.be/stops/204078", "https://data.delijn.be/stops/204238"], ["https://data.delijn.be/stops/209204", "https://data.delijn.be/stops/209781"], ["https://data.delijn.be/stops/304846", "https://data.delijn.be/stops/307281"], ["https://data.delijn.be/stops/200685", "https://data.delijn.be/stops/209652"], ["https://data.delijn.be/stops/200678", "https://data.delijn.be/stops/201668"], ["https://data.delijn.be/stops/103685", "https://data.delijn.be/stops/103690"], ["https://data.delijn.be/stops/202472", "https://data.delijn.be/stops/203471"], ["https://data.delijn.be/stops/201192", "https://data.delijn.be/stops/201247"], ["https://data.delijn.be/stops/206519", "https://data.delijn.be/stops/207527"], ["https://data.delijn.be/stops/304232", "https://data.delijn.be/stops/304235"], ["https://data.delijn.be/stops/405714", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/106638", "https://data.delijn.be/stops/106647"], ["https://data.delijn.be/stops/301654", "https://data.delijn.be/stops/304498"], ["https://data.delijn.be/stops/404808", "https://data.delijn.be/stops/404809"], ["https://data.delijn.be/stops/202234", "https://data.delijn.be/stops/208890"], ["https://data.delijn.be/stops/507021", "https://data.delijn.be/stops/507024"], ["https://data.delijn.be/stops/301633", "https://data.delijn.be/stops/301638"], ["https://data.delijn.be/stops/304587", "https://data.delijn.be/stops/304613"], ["https://data.delijn.be/stops/206263", "https://data.delijn.be/stops/207005"], ["https://data.delijn.be/stops/402418", "https://data.delijn.be/stops/402419"], ["https://data.delijn.be/stops/300697", "https://data.delijn.be/stops/300698"], ["https://data.delijn.be/stops/508996", "https://data.delijn.be/stops/509594"], ["https://data.delijn.be/stops/408719", "https://data.delijn.be/stops/408720"], ["https://data.delijn.be/stops/205410", "https://data.delijn.be/stops/205798"], ["https://data.delijn.be/stops/101417", "https://data.delijn.be/stops/108812"], ["https://data.delijn.be/stops/104039", "https://data.delijn.be/stops/108513"], ["https://data.delijn.be/stops/408500", "https://data.delijn.be/stops/408526"], ["https://data.delijn.be/stops/506256", "https://data.delijn.be/stops/506259"], ["https://data.delijn.be/stops/403564", "https://data.delijn.be/stops/403565"], ["https://data.delijn.be/stops/409645", "https://data.delijn.be/stops/410167"], ["https://data.delijn.be/stops/404451", "https://data.delijn.be/stops/406742"], ["https://data.delijn.be/stops/406718", "https://data.delijn.be/stops/408280"], ["https://data.delijn.be/stops/405514", "https://data.delijn.be/stops/407787"], ["https://data.delijn.be/stops/304546", "https://data.delijn.be/stops/304606"], ["https://data.delijn.be/stops/502184", "https://data.delijn.be/stops/502189"], ["https://data.delijn.be/stops/102085", "https://data.delijn.be/stops/103990"], ["https://data.delijn.be/stops/402070", "https://data.delijn.be/stops/402339"], ["https://data.delijn.be/stops/208776", "https://data.delijn.be/stops/209364"], ["https://data.delijn.be/stops/300954", "https://data.delijn.be/stops/301943"], ["https://data.delijn.be/stops/500116", "https://data.delijn.be/stops/500117"], ["https://data.delijn.be/stops/304284", "https://data.delijn.be/stops/306137"], ["https://data.delijn.be/stops/102435", "https://data.delijn.be/stops/105928"], ["https://data.delijn.be/stops/501246", "https://data.delijn.be/stops/506768"], ["https://data.delijn.be/stops/407434", "https://data.delijn.be/stops/407444"], ["https://data.delijn.be/stops/303009", "https://data.delijn.be/stops/306099"], ["https://data.delijn.be/stops/302141", "https://data.delijn.be/stops/304133"], ["https://data.delijn.be/stops/302321", "https://data.delijn.be/stops/303448"], ["https://data.delijn.be/stops/403917", "https://data.delijn.be/stops/410257"], ["https://data.delijn.be/stops/105458", "https://data.delijn.be/stops/107205"], ["https://data.delijn.be/stops/200840", "https://data.delijn.be/stops/202796"], ["https://data.delijn.be/stops/206531", "https://data.delijn.be/stops/207530"], ["https://data.delijn.be/stops/504473", "https://data.delijn.be/stops/509447"], ["https://data.delijn.be/stops/106229", "https://data.delijn.be/stops/106230"], ["https://data.delijn.be/stops/204394", "https://data.delijn.be/stops/204396"], ["https://data.delijn.be/stops/202415", "https://data.delijn.be/stops/202416"], ["https://data.delijn.be/stops/201937", "https://data.delijn.be/stops/202449"], ["https://data.delijn.be/stops/207084", "https://data.delijn.be/stops/207410"], ["https://data.delijn.be/stops/400178", "https://data.delijn.be/stops/400367"], ["https://data.delijn.be/stops/502058", "https://data.delijn.be/stops/507041"], ["https://data.delijn.be/stops/304456", "https://data.delijn.be/stops/304460"], ["https://data.delijn.be/stops/305295", "https://data.delijn.be/stops/305889"], ["https://data.delijn.be/stops/109031", "https://data.delijn.be/stops/109032"], ["https://data.delijn.be/stops/303381", "https://data.delijn.be/stops/303382"], ["https://data.delijn.be/stops/307967", "https://data.delijn.be/stops/307971"], ["https://data.delijn.be/stops/405474", "https://data.delijn.be/stops/407568"], ["https://data.delijn.be/stops/103545", "https://data.delijn.be/stops/103550"], ["https://data.delijn.be/stops/400118", "https://data.delijn.be/stops/400119"], ["https://data.delijn.be/stops/503049", "https://data.delijn.be/stops/508051"], ["https://data.delijn.be/stops/403757", "https://data.delijn.be/stops/403763"], ["https://data.delijn.be/stops/304647", "https://data.delijn.be/stops/304648"], ["https://data.delijn.be/stops/504849", "https://data.delijn.be/stops/504948"], ["https://data.delijn.be/stops/303469", "https://data.delijn.be/stops/303510"], ["https://data.delijn.be/stops/401518", "https://data.delijn.be/stops/403882"], ["https://data.delijn.be/stops/403399", "https://data.delijn.be/stops/404980"], ["https://data.delijn.be/stops/300593", "https://data.delijn.be/stops/300595"], ["https://data.delijn.be/stops/104739", "https://data.delijn.be/stops/104757"], ["https://data.delijn.be/stops/208044", "https://data.delijn.be/stops/209082"], ["https://data.delijn.be/stops/302664", "https://data.delijn.be/stops/302666"], ["https://data.delijn.be/stops/403256", "https://data.delijn.be/stops/403466"], ["https://data.delijn.be/stops/206340", "https://data.delijn.be/stops/207713"], ["https://data.delijn.be/stops/108390", "https://data.delijn.be/stops/108391"], ["https://data.delijn.be/stops/200689", "https://data.delijn.be/stops/201735"], ["https://data.delijn.be/stops/204822", "https://data.delijn.be/stops/205503"], ["https://data.delijn.be/stops/300564", "https://data.delijn.be/stops/308897"], ["https://data.delijn.be/stops/302006", "https://data.delijn.be/stops/303184"], ["https://data.delijn.be/stops/206444", "https://data.delijn.be/stops/207444"], ["https://data.delijn.be/stops/502175", "https://data.delijn.be/stops/507181"], ["https://data.delijn.be/stops/201523", "https://data.delijn.be/stops/201524"], ["https://data.delijn.be/stops/405754", "https://data.delijn.be/stops/409258"], ["https://data.delijn.be/stops/105106", "https://data.delijn.be/stops/105107"], ["https://data.delijn.be/stops/107363", "https://data.delijn.be/stops/107364"], ["https://data.delijn.be/stops/300558", "https://data.delijn.be/stops/300613"], ["https://data.delijn.be/stops/502119", "https://data.delijn.be/stops/507752"], ["https://data.delijn.be/stops/301909", "https://data.delijn.be/stops/306259"], ["https://data.delijn.be/stops/406597", "https://data.delijn.be/stops/406645"], ["https://data.delijn.be/stops/404430", "https://data.delijn.be/stops/404515"], ["https://data.delijn.be/stops/300701", "https://data.delijn.be/stops/306944"], ["https://data.delijn.be/stops/108815", "https://data.delijn.be/stops/109150"], ["https://data.delijn.be/stops/503816", "https://data.delijn.be/stops/505259"], ["https://data.delijn.be/stops/307321", "https://data.delijn.be/stops/307323"], ["https://data.delijn.be/stops/505408", "https://data.delijn.be/stops/508041"], ["https://data.delijn.be/stops/102186", "https://data.delijn.be/stops/104271"], ["https://data.delijn.be/stops/508557", "https://data.delijn.be/stops/509817"], ["https://data.delijn.be/stops/508396", "https://data.delijn.be/stops/508409"], ["https://data.delijn.be/stops/300513", "https://data.delijn.be/stops/300539"], ["https://data.delijn.be/stops/208676", "https://data.delijn.be/stops/208710"], ["https://data.delijn.be/stops/403409", "https://data.delijn.be/stops/403417"], ["https://data.delijn.be/stops/300781", "https://data.delijn.be/stops/300787"], ["https://data.delijn.be/stops/109156", "https://data.delijn.be/stops/109232"], ["https://data.delijn.be/stops/502009", "https://data.delijn.be/stops/507746"], ["https://data.delijn.be/stops/305150", "https://data.delijn.be/stops/305176"], ["https://data.delijn.be/stops/207773", "https://data.delijn.be/stops/208190"], ["https://data.delijn.be/stops/105511", "https://data.delijn.be/stops/105512"], ["https://data.delijn.be/stops/106908", "https://data.delijn.be/stops/107258"], ["https://data.delijn.be/stops/200927", "https://data.delijn.be/stops/202229"], ["https://data.delijn.be/stops/306165", "https://data.delijn.be/stops/308545"], ["https://data.delijn.be/stops/106730", "https://data.delijn.be/stops/106731"], ["https://data.delijn.be/stops/108292", "https://data.delijn.be/stops/108293"], ["https://data.delijn.be/stops/407600", "https://data.delijn.be/stops/407698"], ["https://data.delijn.be/stops/303190", "https://data.delijn.be/stops/303193"], ["https://data.delijn.be/stops/501181", "https://data.delijn.be/stops/506675"], ["https://data.delijn.be/stops/303064", "https://data.delijn.be/stops/304464"], ["https://data.delijn.be/stops/305241", "https://data.delijn.be/stops/305250"], ["https://data.delijn.be/stops/210008", "https://data.delijn.be/stops/211854"], ["https://data.delijn.be/stops/206461", "https://data.delijn.be/stops/207461"], ["https://data.delijn.be/stops/301903", "https://data.delijn.be/stops/306251"], ["https://data.delijn.be/stops/503100", "https://data.delijn.be/stops/508424"], ["https://data.delijn.be/stops/108959", "https://data.delijn.be/stops/108963"], ["https://data.delijn.be/stops/204767", "https://data.delijn.be/stops/205432"], ["https://data.delijn.be/stops/106151", "https://data.delijn.be/stops/106153"], ["https://data.delijn.be/stops/503673", "https://data.delijn.be/stops/505258"], ["https://data.delijn.be/stops/505258", "https://data.delijn.be/stops/505968"], ["https://data.delijn.be/stops/207987", "https://data.delijn.be/stops/207994"], ["https://data.delijn.be/stops/101614", "https://data.delijn.be/stops/101730"], ["https://data.delijn.be/stops/204423", "https://data.delijn.be/stops/205422"], ["https://data.delijn.be/stops/105707", "https://data.delijn.be/stops/105712"], ["https://data.delijn.be/stops/207467", "https://data.delijn.be/stops/207825"], ["https://data.delijn.be/stops/203041", "https://data.delijn.be/stops/203686"], ["https://data.delijn.be/stops/501031", "https://data.delijn.be/stops/501485"], ["https://data.delijn.be/stops/108317", "https://data.delijn.be/stops/108318"], ["https://data.delijn.be/stops/304057", "https://data.delijn.be/stops/304058"], ["https://data.delijn.be/stops/305135", "https://data.delijn.be/stops/305143"], ["https://data.delijn.be/stops/303424", "https://data.delijn.be/stops/303429"], ["https://data.delijn.be/stops/302251", "https://data.delijn.be/stops/306379"], ["https://data.delijn.be/stops/101395", "https://data.delijn.be/stops/104256"], ["https://data.delijn.be/stops/207411", "https://data.delijn.be/stops/207600"], ["https://data.delijn.be/stops/509001", "https://data.delijn.be/stops/509866"], ["https://data.delijn.be/stops/409070", "https://data.delijn.be/stops/409071"], ["https://data.delijn.be/stops/405306", "https://data.delijn.be/stops/407127"], ["https://data.delijn.be/stops/306802", "https://data.delijn.be/stops/307732"], ["https://data.delijn.be/stops/405039", "https://data.delijn.be/stops/405073"], ["https://data.delijn.be/stops/103134", "https://data.delijn.be/stops/107107"], ["https://data.delijn.be/stops/101756", "https://data.delijn.be/stops/105325"], ["https://data.delijn.be/stops/204432", "https://data.delijn.be/stops/205433"], ["https://data.delijn.be/stops/401520", "https://data.delijn.be/stops/401521"], ["https://data.delijn.be/stops/303369", "https://data.delijn.be/stops/303370"], ["https://data.delijn.be/stops/204018", "https://data.delijn.be/stops/205798"], ["https://data.delijn.be/stops/400252", "https://data.delijn.be/stops/400335"], ["https://data.delijn.be/stops/109342", "https://data.delijn.be/stops/109344"], ["https://data.delijn.be/stops/207474", "https://data.delijn.be/stops/207496"], ["https://data.delijn.be/stops/501529", "https://data.delijn.be/stops/501532"], ["https://data.delijn.be/stops/407843", "https://data.delijn.be/stops/408168"], ["https://data.delijn.be/stops/208625", "https://data.delijn.be/stops/218020"], ["https://data.delijn.be/stops/208956", "https://data.delijn.be/stops/209707"], ["https://data.delijn.be/stops/108409", "https://data.delijn.be/stops/108412"], ["https://data.delijn.be/stops/300202", "https://data.delijn.be/stops/304786"], ["https://data.delijn.be/stops/102409", "https://data.delijn.be/stops/109081"], ["https://data.delijn.be/stops/103850", "https://data.delijn.be/stops/108360"], ["https://data.delijn.be/stops/107498", "https://data.delijn.be/stops/107502"], ["https://data.delijn.be/stops/402176", "https://data.delijn.be/stops/406869"], ["https://data.delijn.be/stops/304919", "https://data.delijn.be/stops/305378"], ["https://data.delijn.be/stops/200746", "https://data.delijn.be/stops/208328"], ["https://data.delijn.be/stops/405799", "https://data.delijn.be/stops/405854"], ["https://data.delijn.be/stops/200362", "https://data.delijn.be/stops/201362"], ["https://data.delijn.be/stops/105447", "https://data.delijn.be/stops/105450"], ["https://data.delijn.be/stops/108537", "https://data.delijn.be/stops/108616"], ["https://data.delijn.be/stops/208000", "https://data.delijn.be/stops/208023"], ["https://data.delijn.be/stops/504015", "https://data.delijn.be/stops/505298"], ["https://data.delijn.be/stops/200588", "https://data.delijn.be/stops/200996"], ["https://data.delijn.be/stops/203104", "https://data.delijn.be/stops/203105"], ["https://data.delijn.be/stops/203263", "https://data.delijn.be/stops/203264"], ["https://data.delijn.be/stops/502679", "https://data.delijn.be/stops/505054"], ["https://data.delijn.be/stops/406076", "https://data.delijn.be/stops/406077"], ["https://data.delijn.be/stops/403097", "https://data.delijn.be/stops/403512"], ["https://data.delijn.be/stops/301295", "https://data.delijn.be/stops/301968"], ["https://data.delijn.be/stops/305268", "https://data.delijn.be/stops/305330"], ["https://data.delijn.be/stops/301616", "https://data.delijn.be/stops/301669"], ["https://data.delijn.be/stops/204099", "https://data.delijn.be/stops/206407"], ["https://data.delijn.be/stops/402986", "https://data.delijn.be/stops/402988"], ["https://data.delijn.be/stops/401744", "https://data.delijn.be/stops/401746"], ["https://data.delijn.be/stops/202550", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/300234", "https://data.delijn.be/stops/301380"], ["https://data.delijn.be/stops/305585", "https://data.delijn.be/stops/305613"], ["https://data.delijn.be/stops/409067", "https://data.delijn.be/stops/409143"], ["https://data.delijn.be/stops/101658", "https://data.delijn.be/stops/102442"], ["https://data.delijn.be/stops/504575", "https://data.delijn.be/stops/504578"], ["https://data.delijn.be/stops/301400", "https://data.delijn.be/stops/301403"], ["https://data.delijn.be/stops/109845", "https://data.delijn.be/stops/109847"], ["https://data.delijn.be/stops/501093", "https://data.delijn.be/stops/505148"], ["https://data.delijn.be/stops/305540", "https://data.delijn.be/stops/308686"], ["https://data.delijn.be/stops/206902", "https://data.delijn.be/stops/216001"], ["https://data.delijn.be/stops/405187", "https://data.delijn.be/stops/405246"], ["https://data.delijn.be/stops/502745", "https://data.delijn.be/stops/505068"], ["https://data.delijn.be/stops/101822", "https://data.delijn.be/stops/102389"], ["https://data.delijn.be/stops/101082", "https://data.delijn.be/stops/101087"], ["https://data.delijn.be/stops/105195", "https://data.delijn.be/stops/105210"], ["https://data.delijn.be/stops/304251", "https://data.delijn.be/stops/304287"], ["https://data.delijn.be/stops/302535", "https://data.delijn.be/stops/303381"], ["https://data.delijn.be/stops/400571", "https://data.delijn.be/stops/404058"], ["https://data.delijn.be/stops/105781", "https://data.delijn.be/stops/105784"], ["https://data.delijn.be/stops/305775", "https://data.delijn.be/stops/305794"], ["https://data.delijn.be/stops/303166", "https://data.delijn.be/stops/303167"], ["https://data.delijn.be/stops/101641", "https://data.delijn.be/stops/101642"], ["https://data.delijn.be/stops/302422", "https://data.delijn.be/stops/302444"], ["https://data.delijn.be/stops/505175", "https://data.delijn.be/stops/509642"], ["https://data.delijn.be/stops/200940", "https://data.delijn.be/stops/203705"], ["https://data.delijn.be/stops/101781", "https://data.delijn.be/stops/103755"], ["https://data.delijn.be/stops/200973", "https://data.delijn.be/stops/209456"], ["https://data.delijn.be/stops/209367", "https://data.delijn.be/stops/209368"], ["https://data.delijn.be/stops/303370", "https://data.delijn.be/stops/303386"], ["https://data.delijn.be/stops/409095", "https://data.delijn.be/stops/409116"], ["https://data.delijn.be/stops/506443", "https://data.delijn.be/stops/506482"], ["https://data.delijn.be/stops/502148", "https://data.delijn.be/stops/507108"], ["https://data.delijn.be/stops/206792", "https://data.delijn.be/stops/207628"], ["https://data.delijn.be/stops/102705", "https://data.delijn.be/stops/104855"], ["https://data.delijn.be/stops/308892", "https://data.delijn.be/stops/308893"], ["https://data.delijn.be/stops/301870", "https://data.delijn.be/stops/301876"], ["https://data.delijn.be/stops/501068", "https://data.delijn.be/stops/501595"], ["https://data.delijn.be/stops/503595", "https://data.delijn.be/stops/508219"], ["https://data.delijn.be/stops/307567", "https://data.delijn.be/stops/307764"], ["https://data.delijn.be/stops/504970", "https://data.delijn.be/stops/509970"], ["https://data.delijn.be/stops/407057", "https://data.delijn.be/stops/407076"], ["https://data.delijn.be/stops/401364", "https://data.delijn.be/stops/401365"], ["https://data.delijn.be/stops/504574", "https://data.delijn.be/stops/509574"], ["https://data.delijn.be/stops/301393", "https://data.delijn.be/stops/306150"], ["https://data.delijn.be/stops/406853", "https://data.delijn.be/stops/406855"], ["https://data.delijn.be/stops/403075", "https://data.delijn.be/stops/403565"], ["https://data.delijn.be/stops/300829", "https://data.delijn.be/stops/306969"], ["https://data.delijn.be/stops/404748", "https://data.delijn.be/stops/404945"], ["https://data.delijn.be/stops/501431", "https://data.delijn.be/stops/506456"], ["https://data.delijn.be/stops/403056", "https://data.delijn.be/stops/403057"], ["https://data.delijn.be/stops/201825", "https://data.delijn.be/stops/203309"], ["https://data.delijn.be/stops/107305", "https://data.delijn.be/stops/107310"], ["https://data.delijn.be/stops/301532", "https://data.delijn.be/stops/301542"], ["https://data.delijn.be/stops/303452", "https://data.delijn.be/stops/307063"], ["https://data.delijn.be/stops/107931", "https://data.delijn.be/stops/308810"], ["https://data.delijn.be/stops/408111", "https://data.delijn.be/stops/408119"], ["https://data.delijn.be/stops/305565", "https://data.delijn.be/stops/306093"], ["https://data.delijn.be/stops/508691", "https://data.delijn.be/stops/508699"], ["https://data.delijn.be/stops/500603", "https://data.delijn.be/stops/501533"], ["https://data.delijn.be/stops/105551", "https://data.delijn.be/stops/106023"], ["https://data.delijn.be/stops/103254", "https://data.delijn.be/stops/105715"], ["https://data.delijn.be/stops/200581", "https://data.delijn.be/stops/201580"], ["https://data.delijn.be/stops/105043", "https://data.delijn.be/stops/105127"], ["https://data.delijn.be/stops/103046", "https://data.delijn.be/stops/108555"], ["https://data.delijn.be/stops/304736", "https://data.delijn.be/stops/304750"], ["https://data.delijn.be/stops/206522", "https://data.delijn.be/stops/207002"], ["https://data.delijn.be/stops/203989", "https://data.delijn.be/stops/203991"], ["https://data.delijn.be/stops/204583", "https://data.delijn.be/stops/205595"], ["https://data.delijn.be/stops/304222", "https://data.delijn.be/stops/307939"], ["https://data.delijn.be/stops/102880", "https://data.delijn.be/stops/108030"], ["https://data.delijn.be/stops/400229", "https://data.delijn.be/stops/400241"], ["https://data.delijn.be/stops/408855", "https://data.delijn.be/stops/408868"], ["https://data.delijn.be/stops/201716", "https://data.delijn.be/stops/202123"], ["https://data.delijn.be/stops/106611", "https://data.delijn.be/stops/106613"], ["https://data.delijn.be/stops/201656", "https://data.delijn.be/stops/202144"], ["https://data.delijn.be/stops/503238", "https://data.delijn.be/stops/508243"], ["https://data.delijn.be/stops/404738", "https://data.delijn.be/stops/404749"], ["https://data.delijn.be/stops/403901", "https://data.delijn.be/stops/308752"], ["https://data.delijn.be/stops/506742", "https://data.delijn.be/stops/510014"], ["https://data.delijn.be/stops/502436", "https://data.delijn.be/stops/507436"], ["https://data.delijn.be/stops/400315", "https://data.delijn.be/stops/402764"], ["https://data.delijn.be/stops/500929", "https://data.delijn.be/stops/506629"], ["https://data.delijn.be/stops/204676", "https://data.delijn.be/stops/205674"], ["https://data.delijn.be/stops/208344", "https://data.delijn.be/stops/208787"], ["https://data.delijn.be/stops/408886", "https://data.delijn.be/stops/408913"], ["https://data.delijn.be/stops/404160", "https://data.delijn.be/stops/404161"], ["https://data.delijn.be/stops/304018", "https://data.delijn.be/stops/304039"], ["https://data.delijn.be/stops/407296", "https://data.delijn.be/stops/407297"], ["https://data.delijn.be/stops/101611", "https://data.delijn.be/stops/101614"], ["https://data.delijn.be/stops/304902", "https://data.delijn.be/stops/304906"], ["https://data.delijn.be/stops/207498", "https://data.delijn.be/stops/207506"], ["https://data.delijn.be/stops/200371", "https://data.delijn.be/stops/201446"], ["https://data.delijn.be/stops/406466", "https://data.delijn.be/stops/406493"], ["https://data.delijn.be/stops/402409", "https://data.delijn.be/stops/406946"], ["https://data.delijn.be/stops/507034", "https://data.delijn.be/stops/507618"], ["https://data.delijn.be/stops/403910", "https://data.delijn.be/stops/406007"], ["https://data.delijn.be/stops/208616", "https://data.delijn.be/stops/209616"], ["https://data.delijn.be/stops/507498", "https://data.delijn.be/stops/507517"], ["https://data.delijn.be/stops/408961", "https://data.delijn.be/stops/408962"], ["https://data.delijn.be/stops/106222", "https://data.delijn.be/stops/106223"], ["https://data.delijn.be/stops/201044", "https://data.delijn.be/stops/202488"], ["https://data.delijn.be/stops/407642", "https://data.delijn.be/stops/407764"], ["https://data.delijn.be/stops/202339", "https://data.delijn.be/stops/202483"], ["https://data.delijn.be/stops/201663", "https://data.delijn.be/stops/201836"], ["https://data.delijn.be/stops/403328", "https://data.delijn.be/stops/403867"], ["https://data.delijn.be/stops/101202", "https://data.delijn.be/stops/101661"], ["https://data.delijn.be/stops/504881", "https://data.delijn.be/stops/505691"], ["https://data.delijn.be/stops/400052", "https://data.delijn.be/stops/400109"], ["https://data.delijn.be/stops/402210", "https://data.delijn.be/stops/405571"], ["https://data.delijn.be/stops/206660", "https://data.delijn.be/stops/207660"], ["https://data.delijn.be/stops/404382", "https://data.delijn.be/stops/404396"], ["https://data.delijn.be/stops/300141", "https://data.delijn.be/stops/306806"], ["https://data.delijn.be/stops/206920", "https://data.delijn.be/stops/207920"], ["https://data.delijn.be/stops/302629", "https://data.delijn.be/stops/302630"], ["https://data.delijn.be/stops/505985", "https://data.delijn.be/stops/509142"], ["https://data.delijn.be/stops/201558", "https://data.delijn.be/stops/502685"], ["https://data.delijn.be/stops/200255", "https://data.delijn.be/stops/201255"], ["https://data.delijn.be/stops/101669", "https://data.delijn.be/stops/406770"], ["https://data.delijn.be/stops/200755", "https://data.delijn.be/stops/209305"], ["https://data.delijn.be/stops/504273", "https://data.delijn.be/stops/509272"], ["https://data.delijn.be/stops/404510", "https://data.delijn.be/stops/408165"], ["https://data.delijn.be/stops/407376", "https://data.delijn.be/stops/407386"], ["https://data.delijn.be/stops/406352", "https://data.delijn.be/stops/406354"], ["https://data.delijn.be/stops/204728", "https://data.delijn.be/stops/205729"], ["https://data.delijn.be/stops/307641", "https://data.delijn.be/stops/307643"], ["https://data.delijn.be/stops/305164", "https://data.delijn.be/stops/306914"], ["https://data.delijn.be/stops/403014", "https://data.delijn.be/stops/403015"], ["https://data.delijn.be/stops/409621", "https://data.delijn.be/stops/409632"], ["https://data.delijn.be/stops/206007", "https://data.delijn.be/stops/207006"], ["https://data.delijn.be/stops/202031", "https://data.delijn.be/stops/203031"], ["https://data.delijn.be/stops/503098", "https://data.delijn.be/stops/508098"], ["https://data.delijn.be/stops/403207", "https://data.delijn.be/stops/403209"], ["https://data.delijn.be/stops/406995", "https://data.delijn.be/stops/409731"], ["https://data.delijn.be/stops/504144", "https://data.delijn.be/stops/509137"], ["https://data.delijn.be/stops/207792", "https://data.delijn.be/stops/208764"], ["https://data.delijn.be/stops/108248", "https://data.delijn.be/stops/109557"], ["https://data.delijn.be/stops/202789", "https://data.delijn.be/stops/203788"], ["https://data.delijn.be/stops/301488", "https://data.delijn.be/stops/301489"], ["https://data.delijn.be/stops/501523", "https://data.delijn.be/stops/509898"], ["https://data.delijn.be/stops/402170", "https://data.delijn.be/stops/402224"], ["https://data.delijn.be/stops/308073", "https://data.delijn.be/stops/308075"], ["https://data.delijn.be/stops/200456", "https://data.delijn.be/stops/201652"], ["https://data.delijn.be/stops/208769", "https://data.delijn.be/stops/209769"], ["https://data.delijn.be/stops/101137", "https://data.delijn.be/stops/108415"], ["https://data.delijn.be/stops/504285", "https://data.delijn.be/stops/509617"], ["https://data.delijn.be/stops/402099", "https://data.delijn.be/stops/402208"], ["https://data.delijn.be/stops/502546", "https://data.delijn.be/stops/507541"], ["https://data.delijn.be/stops/300168", "https://data.delijn.be/stops/300170"], ["https://data.delijn.be/stops/502520", "https://data.delijn.be/stops/507520"], ["https://data.delijn.be/stops/302278", "https://data.delijn.be/stops/307068"], ["https://data.delijn.be/stops/207569", "https://data.delijn.be/stops/207594"], ["https://data.delijn.be/stops/409395", "https://data.delijn.be/stops/409404"], ["https://data.delijn.be/stops/504232", "https://data.delijn.be/stops/504242"], ["https://data.delijn.be/stops/405703", "https://data.delijn.be/stops/405715"], ["https://data.delijn.be/stops/409588", "https://data.delijn.be/stops/410047"], ["https://data.delijn.be/stops/204979", "https://data.delijn.be/stops/208161"], ["https://data.delijn.be/stops/206073", "https://data.delijn.be/stops/207052"], ["https://data.delijn.be/stops/402049", "https://data.delijn.be/stops/402088"], ["https://data.delijn.be/stops/305666", "https://data.delijn.be/stops/305740"], ["https://data.delijn.be/stops/103028", "https://data.delijn.be/stops/107477"], ["https://data.delijn.be/stops/109837", "https://data.delijn.be/stops/405881"], ["https://data.delijn.be/stops/205533", "https://data.delijn.be/stops/205545"], ["https://data.delijn.be/stops/503560", "https://data.delijn.be/stops/505845"], ["https://data.delijn.be/stops/206603", "https://data.delijn.be/stops/207982"], ["https://data.delijn.be/stops/405661", "https://data.delijn.be/stops/301239"], ["https://data.delijn.be/stops/403241", "https://data.delijn.be/stops/403243"], ["https://data.delijn.be/stops/207751", "https://data.delijn.be/stops/207781"], ["https://data.delijn.be/stops/202567", "https://data.delijn.be/stops/202612"], ["https://data.delijn.be/stops/301861", "https://data.delijn.be/stops/301865"], ["https://data.delijn.be/stops/206013", "https://data.delijn.be/stops/207386"], ["https://data.delijn.be/stops/101361", "https://data.delijn.be/stops/102193"], ["https://data.delijn.be/stops/401576", "https://data.delijn.be/stops/402280"], ["https://data.delijn.be/stops/503498", "https://data.delijn.be/stops/508498"], ["https://data.delijn.be/stops/106093", "https://data.delijn.be/stops/108474"], ["https://data.delijn.be/stops/504115", "https://data.delijn.be/stops/509116"], ["https://data.delijn.be/stops/408214", "https://data.delijn.be/stops/408397"], ["https://data.delijn.be/stops/510008", "https://data.delijn.be/stops/510011"], ["https://data.delijn.be/stops/106173", "https://data.delijn.be/stops/106175"], ["https://data.delijn.be/stops/407601", "https://data.delijn.be/stops/407698"], ["https://data.delijn.be/stops/206788", "https://data.delijn.be/stops/206790"], ["https://data.delijn.be/stops/506148", "https://data.delijn.be/stops/506164"], ["https://data.delijn.be/stops/506635", "https://data.delijn.be/stops/506772"], ["https://data.delijn.be/stops/508592", "https://data.delijn.be/stops/509883"], ["https://data.delijn.be/stops/103731", "https://data.delijn.be/stops/106319"], ["https://data.delijn.be/stops/305539", "https://data.delijn.be/stops/307185"], ["https://data.delijn.be/stops/301830", "https://data.delijn.be/stops/301847"], ["https://data.delijn.be/stops/107832", "https://data.delijn.be/stops/107836"], ["https://data.delijn.be/stops/303583", "https://data.delijn.be/stops/305910"], ["https://data.delijn.be/stops/207152", "https://data.delijn.be/stops/207503"], ["https://data.delijn.be/stops/407490", "https://data.delijn.be/stops/407570"], ["https://data.delijn.be/stops/207429", "https://data.delijn.be/stops/209693"], ["https://data.delijn.be/stops/502027", "https://data.delijn.be/stops/507027"], ["https://data.delijn.be/stops/304022", "https://data.delijn.be/stops/305442"], ["https://data.delijn.be/stops/209739", "https://data.delijn.be/stops/209744"], ["https://data.delijn.be/stops/208128", "https://data.delijn.be/stops/208129"], ["https://data.delijn.be/stops/205980", "https://data.delijn.be/stops/207723"], ["https://data.delijn.be/stops/209715", "https://data.delijn.be/stops/209716"], ["https://data.delijn.be/stops/503482", "https://data.delijn.be/stops/505986"], ["https://data.delijn.be/stops/300459", "https://data.delijn.be/stops/300470"], ["https://data.delijn.be/stops/505968", "https://data.delijn.be/stops/508670"], ["https://data.delijn.be/stops/303162", "https://data.delijn.be/stops/303179"], ["https://data.delijn.be/stops/201805", "https://data.delijn.be/stops/201817"], ["https://data.delijn.be/stops/207337", "https://data.delijn.be/stops/207747"], ["https://data.delijn.be/stops/405090", "https://data.delijn.be/stops/405109"], ["https://data.delijn.be/stops/210052", "https://data.delijn.be/stops/211052"], ["https://data.delijn.be/stops/502467", "https://data.delijn.be/stops/507467"], ["https://data.delijn.be/stops/308779", "https://data.delijn.be/stops/308780"], ["https://data.delijn.be/stops/201762", "https://data.delijn.be/stops/209266"], ["https://data.delijn.be/stops/106428", "https://data.delijn.be/stops/106429"], ["https://data.delijn.be/stops/504543", "https://data.delijn.be/stops/505164"], ["https://data.delijn.be/stops/105691", "https://data.delijn.be/stops/105694"], ["https://data.delijn.be/stops/407154", "https://data.delijn.be/stops/407166"], ["https://data.delijn.be/stops/102201", "https://data.delijn.be/stops/105942"], ["https://data.delijn.be/stops/303559", "https://data.delijn.be/stops/303562"], ["https://data.delijn.be/stops/103944", "https://data.delijn.be/stops/104752"], ["https://data.delijn.be/stops/505703", "https://data.delijn.be/stops/507544"], ["https://data.delijn.be/stops/301480", "https://data.delijn.be/stops/308705"], ["https://data.delijn.be/stops/106372", "https://data.delijn.be/stops/106374"], ["https://data.delijn.be/stops/300633", "https://data.delijn.be/stops/307221"], ["https://data.delijn.be/stops/303051", "https://data.delijn.be/stops/303064"], ["https://data.delijn.be/stops/308459", "https://data.delijn.be/stops/308461"], ["https://data.delijn.be/stops/108495", "https://data.delijn.be/stops/109089"], ["https://data.delijn.be/stops/507033", "https://data.delijn.be/stops/507081"], ["https://data.delijn.be/stops/505133", "https://data.delijn.be/stops/505135"], ["https://data.delijn.be/stops/407211", "https://data.delijn.be/stops/407217"], ["https://data.delijn.be/stops/304434", "https://data.delijn.be/stops/304445"], ["https://data.delijn.be/stops/200257", "https://data.delijn.be/stops/202550"], ["https://data.delijn.be/stops/203139", "https://data.delijn.be/stops/211849"], ["https://data.delijn.be/stops/106522", "https://data.delijn.be/stops/106526"], ["https://data.delijn.be/stops/404148", "https://data.delijn.be/stops/404278"], ["https://data.delijn.be/stops/303993", "https://data.delijn.be/stops/304736"], ["https://data.delijn.be/stops/103327", "https://data.delijn.be/stops/105097"], ["https://data.delijn.be/stops/403357", "https://data.delijn.be/stops/405635"], ["https://data.delijn.be/stops/208284", "https://data.delijn.be/stops/209285"], ["https://data.delijn.be/stops/307215", "https://data.delijn.be/stops/307217"], ["https://data.delijn.be/stops/503508", "https://data.delijn.be/stops/508508"], ["https://data.delijn.be/stops/501022", "https://data.delijn.be/stops/506022"], ["https://data.delijn.be/stops/208136", "https://data.delijn.be/stops/209136"], ["https://data.delijn.be/stops/201810", "https://data.delijn.be/stops/201830"], ["https://data.delijn.be/stops/503019", "https://data.delijn.be/stops/508020"], ["https://data.delijn.be/stops/109318", "https://data.delijn.be/stops/109319"], ["https://data.delijn.be/stops/101215", "https://data.delijn.be/stops/105770"], ["https://data.delijn.be/stops/200050", "https://data.delijn.be/stops/202934"], ["https://data.delijn.be/stops/106864", "https://data.delijn.be/stops/106865"], ["https://data.delijn.be/stops/307934", "https://data.delijn.be/stops/307935"], ["https://data.delijn.be/stops/101267", "https://data.delijn.be/stops/104877"], ["https://data.delijn.be/stops/302831", "https://data.delijn.be/stops/302836"], ["https://data.delijn.be/stops/102640", "https://data.delijn.be/stops/104118"], ["https://data.delijn.be/stops/207886", "https://data.delijn.be/stops/207887"], ["https://data.delijn.be/stops/505642", "https://data.delijn.be/stops/508895"], ["https://data.delijn.be/stops/200681", "https://data.delijn.be/stops/202809"], ["https://data.delijn.be/stops/502481", "https://data.delijn.be/stops/507481"], ["https://data.delijn.be/stops/204480", "https://data.delijn.be/stops/205480"], ["https://data.delijn.be/stops/503050", "https://data.delijn.be/stops/508050"], ["https://data.delijn.be/stops/108070", "https://data.delijn.be/stops/108210"], ["https://data.delijn.be/stops/302845", "https://data.delijn.be/stops/302847"], ["https://data.delijn.be/stops/200554", "https://data.delijn.be/stops/201554"], ["https://data.delijn.be/stops/305438", "https://data.delijn.be/stops/305439"], ["https://data.delijn.be/stops/207596", "https://data.delijn.be/stops/209665"], ["https://data.delijn.be/stops/307295", "https://data.delijn.be/stops/308295"], ["https://data.delijn.be/stops/202865", "https://data.delijn.be/stops/203865"], ["https://data.delijn.be/stops/403164", "https://data.delijn.be/stops/403268"], ["https://data.delijn.be/stops/502455", "https://data.delijn.be/stops/507662"], ["https://data.delijn.be/stops/504562", "https://data.delijn.be/stops/509243"], ["https://data.delijn.be/stops/404212", "https://data.delijn.be/stops/404228"], ["https://data.delijn.be/stops/109880", "https://data.delijn.be/stops/109881"], ["https://data.delijn.be/stops/400429", "https://data.delijn.be/stops/406477"], ["https://data.delijn.be/stops/108553", "https://data.delijn.be/stops/109595"], ["https://data.delijn.be/stops/207133", "https://data.delijn.be/stops/207512"], ["https://data.delijn.be/stops/203263", "https://data.delijn.be/stops/208852"], ["https://data.delijn.be/stops/202529", "https://data.delijn.be/stops/203530"], ["https://data.delijn.be/stops/504115", "https://data.delijn.be/stops/504116"], ["https://data.delijn.be/stops/304069", "https://data.delijn.be/stops/304089"], ["https://data.delijn.be/stops/305845", "https://data.delijn.be/stops/305897"], ["https://data.delijn.be/stops/201927", "https://data.delijn.be/stops/207928"], ["https://data.delijn.be/stops/202497", "https://data.delijn.be/stops/203496"], ["https://data.delijn.be/stops/101086", "https://data.delijn.be/stops/105979"], ["https://data.delijn.be/stops/204119", "https://data.delijn.be/stops/204666"], ["https://data.delijn.be/stops/207805", "https://data.delijn.be/stops/306078"], ["https://data.delijn.be/stops/404850", "https://data.delijn.be/stops/404880"], ["https://data.delijn.be/stops/203401", "https://data.delijn.be/stops/203402"], ["https://data.delijn.be/stops/108656", "https://data.delijn.be/stops/306628"], ["https://data.delijn.be/stops/206608", "https://data.delijn.be/stops/207199"], ["https://data.delijn.be/stops/306621", "https://data.delijn.be/stops/306758"], ["https://data.delijn.be/stops/206607", "https://data.delijn.be/stops/207607"], ["https://data.delijn.be/stops/209698", "https://data.delijn.be/stops/218030"], ["https://data.delijn.be/stops/105152", "https://data.delijn.be/stops/105154"], ["https://data.delijn.be/stops/409358", "https://data.delijn.be/stops/409390"], ["https://data.delijn.be/stops/502188", "https://data.delijn.be/stops/505010"], ["https://data.delijn.be/stops/306830", "https://data.delijn.be/stops/307849"], ["https://data.delijn.be/stops/204044", "https://data.delijn.be/stops/205045"], ["https://data.delijn.be/stops/202815", "https://data.delijn.be/stops/203883"], ["https://data.delijn.be/stops/303697", "https://data.delijn.be/stops/305390"], ["https://data.delijn.be/stops/402790", "https://data.delijn.be/stops/402797"], ["https://data.delijn.be/stops/208715", "https://data.delijn.be/stops/209715"], ["https://data.delijn.be/stops/403691", "https://data.delijn.be/stops/409310"], ["https://data.delijn.be/stops/302878", "https://data.delijn.be/stops/302893"], ["https://data.delijn.be/stops/402809", "https://data.delijn.be/stops/409021"], ["https://data.delijn.be/stops/501211", "https://data.delijn.be/stops/506211"], ["https://data.delijn.be/stops/302974", "https://data.delijn.be/stops/302998"], ["https://data.delijn.be/stops/301937", "https://data.delijn.be/stops/302153"], ["https://data.delijn.be/stops/504645", "https://data.delijn.be/stops/505119"], ["https://data.delijn.be/stops/304403", "https://data.delijn.be/stops/304406"], ["https://data.delijn.be/stops/407894", "https://data.delijn.be/stops/303262"], ["https://data.delijn.be/stops/502676", "https://data.delijn.be/stops/507676"], ["https://data.delijn.be/stops/104793", "https://data.delijn.be/stops/107637"], ["https://data.delijn.be/stops/509398", "https://data.delijn.be/stops/509444"], ["https://data.delijn.be/stops/501606", "https://data.delijn.be/stops/506606"], ["https://data.delijn.be/stops/305896", "https://data.delijn.be/stops/305897"], ["https://data.delijn.be/stops/108812", "https://data.delijn.be/stops/108813"], ["https://data.delijn.be/stops/107090", "https://data.delijn.be/stops/108780"], ["https://data.delijn.be/stops/404252", "https://data.delijn.be/stops/404314"], ["https://data.delijn.be/stops/306399", "https://data.delijn.be/stops/306400"], ["https://data.delijn.be/stops/300508", "https://data.delijn.be/stops/305523"], ["https://data.delijn.be/stops/400251", "https://data.delijn.be/stops/400421"], ["https://data.delijn.be/stops/204723", "https://data.delijn.be/stops/204724"], ["https://data.delijn.be/stops/407025", "https://data.delijn.be/stops/407965"], ["https://data.delijn.be/stops/201013", "https://data.delijn.be/stops/201350"], ["https://data.delijn.be/stops/104377", "https://data.delijn.be/stops/104378"], ["https://data.delijn.be/stops/201646", "https://data.delijn.be/stops/202865"], ["https://data.delijn.be/stops/505103", "https://data.delijn.be/stops/509358"], ["https://data.delijn.be/stops/200984", "https://data.delijn.be/stops/201030"], ["https://data.delijn.be/stops/101400", "https://data.delijn.be/stops/101402"], ["https://data.delijn.be/stops/301540", "https://data.delijn.be/stops/301543"], ["https://data.delijn.be/stops/308288", "https://data.delijn.be/stops/308289"], ["https://data.delijn.be/stops/203383", "https://data.delijn.be/stops/203384"], ["https://data.delijn.be/stops/102691", "https://data.delijn.be/stops/108625"], ["https://data.delijn.be/stops/204706", "https://data.delijn.be/stops/205706"], ["https://data.delijn.be/stops/402756", "https://data.delijn.be/stops/402776"], ["https://data.delijn.be/stops/206652", "https://data.delijn.be/stops/207128"], ["https://data.delijn.be/stops/306345", "https://data.delijn.be/stops/308697"], ["https://data.delijn.be/stops/105712", "https://data.delijn.be/stops/106077"], ["https://data.delijn.be/stops/202915", "https://data.delijn.be/stops/211097"], ["https://data.delijn.be/stops/209485", "https://data.delijn.be/stops/209488"], ["https://data.delijn.be/stops/305612", "https://data.delijn.be/stops/305615"], ["https://data.delijn.be/stops/505057", "https://data.delijn.be/stops/507761"], ["https://data.delijn.be/stops/106069", "https://data.delijn.be/stops/106071"], ["https://data.delijn.be/stops/302318", "https://data.delijn.be/stops/304784"], ["https://data.delijn.be/stops/207245", "https://data.delijn.be/stops/207403"], ["https://data.delijn.be/stops/402705", "https://data.delijn.be/stops/402865"], ["https://data.delijn.be/stops/401850", "https://data.delijn.be/stops/401851"], ["https://data.delijn.be/stops/508158", "https://data.delijn.be/stops/508166"], ["https://data.delijn.be/stops/107202", "https://data.delijn.be/stops/107606"], ["https://data.delijn.be/stops/304428", "https://data.delijn.be/stops/307371"], ["https://data.delijn.be/stops/208386", "https://data.delijn.be/stops/208419"], ["https://data.delijn.be/stops/503468", "https://data.delijn.be/stops/508456"], ["https://data.delijn.be/stops/102009", "https://data.delijn.be/stops/105978"], ["https://data.delijn.be/stops/209215", "https://data.delijn.be/stops/209428"], ["https://data.delijn.be/stops/503727", "https://data.delijn.be/stops/509872"], ["https://data.delijn.be/stops/400171", "https://data.delijn.be/stops/407372"], ["https://data.delijn.be/stops/502199", "https://data.delijn.be/stops/507631"], ["https://data.delijn.be/stops/409624", "https://data.delijn.be/stops/409625"], ["https://data.delijn.be/stops/308143", "https://data.delijn.be/stops/308145"], ["https://data.delijn.be/stops/505109", "https://data.delijn.be/stops/509518"], ["https://data.delijn.be/stops/301232", "https://data.delijn.be/stops/305949"], ["https://data.delijn.be/stops/503182", "https://data.delijn.be/stops/508180"], ["https://data.delijn.be/stops/507201", "https://data.delijn.be/stops/590010"], ["https://data.delijn.be/stops/505251", "https://data.delijn.be/stops/508925"], ["https://data.delijn.be/stops/503185", "https://data.delijn.be/stops/508187"], ["https://data.delijn.be/stops/101835", "https://data.delijn.be/stops/105200"], ["https://data.delijn.be/stops/405344", "https://data.delijn.be/stops/308734"], ["https://data.delijn.be/stops/400040", "https://data.delijn.be/stops/400351"], ["https://data.delijn.be/stops/504234", "https://data.delijn.be/stops/505842"], ["https://data.delijn.be/stops/208450", "https://data.delijn.be/stops/208520"], ["https://data.delijn.be/stops/301743", "https://data.delijn.be/stops/301792"], ["https://data.delijn.be/stops/202238", "https://data.delijn.be/stops/202239"], ["https://data.delijn.be/stops/403950", "https://data.delijn.be/stops/404021"], ["https://data.delijn.be/stops/204434", "https://data.delijn.be/stops/205434"], ["https://data.delijn.be/stops/107141", "https://data.delijn.be/stops/107143"], ["https://data.delijn.be/stops/401851", "https://data.delijn.be/stops/406348"], ["https://data.delijn.be/stops/203739", "https://data.delijn.be/stops/209743"], ["https://data.delijn.be/stops/102894", "https://data.delijn.be/stops/103105"], ["https://data.delijn.be/stops/107961", "https://data.delijn.be/stops/108028"], ["https://data.delijn.be/stops/109087", "https://data.delijn.be/stops/109866"], ["https://data.delijn.be/stops/502126", "https://data.delijn.be/stops/507167"], ["https://data.delijn.be/stops/406447", "https://data.delijn.be/stops/406746"], ["https://data.delijn.be/stops/400552", "https://data.delijn.be/stops/403638"], ["https://data.delijn.be/stops/405436", "https://data.delijn.be/stops/408520"], ["https://data.delijn.be/stops/202495", "https://data.delijn.be/stops/203171"], ["https://data.delijn.be/stops/508227", "https://data.delijn.be/stops/508229"], ["https://data.delijn.be/stops/503998", "https://data.delijn.be/stops/508998"], ["https://data.delijn.be/stops/504505", "https://data.delijn.be/stops/509504"], ["https://data.delijn.be/stops/102456", "https://data.delijn.be/stops/406858"], ["https://data.delijn.be/stops/202217", "https://data.delijn.be/stops/203217"], ["https://data.delijn.be/stops/503033", "https://data.delijn.be/stops/508033"], ["https://data.delijn.be/stops/306067", "https://data.delijn.be/stops/306068"], ["https://data.delijn.be/stops/208336", "https://data.delijn.be/stops/209116"], ["https://data.delijn.be/stops/201868", "https://data.delijn.be/stops/203015"], ["https://data.delijn.be/stops/103931", "https://data.delijn.be/stops/106599"], ["https://data.delijn.be/stops/502623", "https://data.delijn.be/stops/505692"], ["https://data.delijn.be/stops/108332", "https://data.delijn.be/stops/109303"], ["https://data.delijn.be/stops/403756", "https://data.delijn.be/stops/403764"], ["https://data.delijn.be/stops/201004", "https://data.delijn.be/stops/211069"], ["https://data.delijn.be/stops/106735", "https://data.delijn.be/stops/106736"], ["https://data.delijn.be/stops/202264", "https://data.delijn.be/stops/202265"], ["https://data.delijn.be/stops/207437", "https://data.delijn.be/stops/207438"], ["https://data.delijn.be/stops/503446", "https://data.delijn.be/stops/508446"], ["https://data.delijn.be/stops/403480", "https://data.delijn.be/stops/403481"], ["https://data.delijn.be/stops/400911", "https://data.delijn.be/stops/400960"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/107029"], ["https://data.delijn.be/stops/102686", "https://data.delijn.be/stops/105200"], ["https://data.delijn.be/stops/306181", "https://data.delijn.be/stops/307829"], ["https://data.delijn.be/stops/102042", "https://data.delijn.be/stops/206697"], ["https://data.delijn.be/stops/102804", "https://data.delijn.be/stops/104974"], ["https://data.delijn.be/stops/204513", "https://data.delijn.be/stops/205513"], ["https://data.delijn.be/stops/204166", "https://data.delijn.be/stops/204579"], ["https://data.delijn.be/stops/301086", "https://data.delijn.be/stops/301927"], ["https://data.delijn.be/stops/208129", "https://data.delijn.be/stops/209851"], ["https://data.delijn.be/stops/106353", "https://data.delijn.be/stops/106354"], ["https://data.delijn.be/stops/106473", "https://data.delijn.be/stops/109645"], ["https://data.delijn.be/stops/206775", "https://data.delijn.be/stops/206798"], ["https://data.delijn.be/stops/509948", "https://data.delijn.be/stops/509957"], ["https://data.delijn.be/stops/109934", "https://data.delijn.be/stops/109949"], ["https://data.delijn.be/stops/109013", "https://data.delijn.be/stops/109642"], ["https://data.delijn.be/stops/102702", "https://data.delijn.be/stops/105547"], ["https://data.delijn.be/stops/405955", "https://data.delijn.be/stops/405957"], ["https://data.delijn.be/stops/408538", "https://data.delijn.be/stops/408539"], ["https://data.delijn.be/stops/401081", "https://data.delijn.be/stops/401084"], ["https://data.delijn.be/stops/206045", "https://data.delijn.be/stops/207381"], ["https://data.delijn.be/stops/501114", "https://data.delijn.be/stops/501665"], ["https://data.delijn.be/stops/207671", "https://data.delijn.be/stops/209484"], ["https://data.delijn.be/stops/208438", "https://data.delijn.be/stops/218021"], ["https://data.delijn.be/stops/406106", "https://data.delijn.be/stops/406148"], ["https://data.delijn.be/stops/204366", "https://data.delijn.be/stops/205215"], ["https://data.delijn.be/stops/104387", "https://data.delijn.be/stops/104389"], ["https://data.delijn.be/stops/102927", "https://data.delijn.be/stops/103313"], ["https://data.delijn.be/stops/300147", "https://data.delijn.be/stops/306823"], ["https://data.delijn.be/stops/404403", "https://data.delijn.be/stops/404410"], ["https://data.delijn.be/stops/409719", "https://data.delijn.be/stops/409721"], ["https://data.delijn.be/stops/400076", "https://data.delijn.be/stops/407962"], ["https://data.delijn.be/stops/501308", "https://data.delijn.be/stops/501501"], ["https://data.delijn.be/stops/502561", "https://data.delijn.be/stops/507561"], ["https://data.delijn.be/stops/204786", "https://data.delijn.be/stops/214005"], ["https://data.delijn.be/stops/404425", "https://data.delijn.be/stops/404583"], ["https://data.delijn.be/stops/405268", "https://data.delijn.be/stops/405270"], ["https://data.delijn.be/stops/501686", "https://data.delijn.be/stops/504740"], ["https://data.delijn.be/stops/104121", "https://data.delijn.be/stops/108540"], ["https://data.delijn.be/stops/106992", "https://data.delijn.be/stops/106994"], ["https://data.delijn.be/stops/405156", "https://data.delijn.be/stops/405157"], ["https://data.delijn.be/stops/300509", "https://data.delijn.be/stops/300510"], ["https://data.delijn.be/stops/204168", "https://data.delijn.be/stops/205579"], ["https://data.delijn.be/stops/405476", "https://data.delijn.be/stops/406600"], ["https://data.delijn.be/stops/105989", "https://data.delijn.be/stops/105990"], ["https://data.delijn.be/stops/206387", "https://data.delijn.be/stops/207926"], ["https://data.delijn.be/stops/503765", "https://data.delijn.be/stops/508762"], ["https://data.delijn.be/stops/206158", "https://data.delijn.be/stops/207507"], ["https://data.delijn.be/stops/402616", "https://data.delijn.be/stops/402617"], ["https://data.delijn.be/stops/204517", "https://data.delijn.be/stops/205045"], ["https://data.delijn.be/stops/503174", "https://data.delijn.be/stops/503239"], ["https://data.delijn.be/stops/405160", "https://data.delijn.be/stops/405161"], ["https://data.delijn.be/stops/401205", "https://data.delijn.be/stops/401207"], ["https://data.delijn.be/stops/501464", "https://data.delijn.be/stops/506464"], ["https://data.delijn.be/stops/300419", "https://data.delijn.be/stops/300420"], ["https://data.delijn.be/stops/301504", "https://data.delijn.be/stops/305732"], ["https://data.delijn.be/stops/500119", "https://data.delijn.be/stops/505023"], ["https://data.delijn.be/stops/106203", "https://data.delijn.be/stops/106213"], ["https://data.delijn.be/stops/403374", "https://data.delijn.be/stops/404102"], ["https://data.delijn.be/stops/503536", "https://data.delijn.be/stops/503839"], ["https://data.delijn.be/stops/200735", "https://data.delijn.be/stops/202591"], ["https://data.delijn.be/stops/400725", "https://data.delijn.be/stops/400803"], ["https://data.delijn.be/stops/408108", "https://data.delijn.be/stops/408114"], ["https://data.delijn.be/stops/402600", "https://data.delijn.be/stops/402601"], ["https://data.delijn.be/stops/302593", "https://data.delijn.be/stops/302594"], ["https://data.delijn.be/stops/405961", "https://data.delijn.be/stops/308152"], ["https://data.delijn.be/stops/200607", "https://data.delijn.be/stops/201661"], ["https://data.delijn.be/stops/200607", "https://data.delijn.be/stops/504876"], ["https://data.delijn.be/stops/400195", "https://data.delijn.be/stops/403768"], ["https://data.delijn.be/stops/305698", "https://data.delijn.be/stops/305706"], ["https://data.delijn.be/stops/307565", "https://data.delijn.be/stops/307765"], ["https://data.delijn.be/stops/103135", "https://data.delijn.be/stops/105770"], ["https://data.delijn.be/stops/501206", "https://data.delijn.be/stops/501214"], ["https://data.delijn.be/stops/405962", "https://data.delijn.be/stops/405967"], ["https://data.delijn.be/stops/403924", "https://data.delijn.be/stops/403982"], ["https://data.delijn.be/stops/201887", "https://data.delijn.be/stops/204556"], ["https://data.delijn.be/stops/205819", "https://data.delijn.be/stops/205820"], ["https://data.delijn.be/stops/206186", "https://data.delijn.be/stops/206694"], ["https://data.delijn.be/stops/504324", "https://data.delijn.be/stops/509404"], ["https://data.delijn.be/stops/501156", "https://data.delijn.be/stops/506156"], ["https://data.delijn.be/stops/503868", "https://data.delijn.be/stops/503877"], ["https://data.delijn.be/stops/204081", "https://data.delijn.be/stops/205082"], ["https://data.delijn.be/stops/503167", "https://data.delijn.be/stops/508167"], ["https://data.delijn.be/stops/107265", "https://data.delijn.be/stops/107267"], ["https://data.delijn.be/stops/102985", "https://data.delijn.be/stops/104690"], ["https://data.delijn.be/stops/106184", "https://data.delijn.be/stops/106187"], ["https://data.delijn.be/stops/204159", "https://data.delijn.be/stops/204165"], ["https://data.delijn.be/stops/204977", "https://data.delijn.be/stops/209245"], ["https://data.delijn.be/stops/303208", "https://data.delijn.be/stops/304313"], ["https://data.delijn.be/stops/209568", "https://data.delijn.be/stops/209611"], ["https://data.delijn.be/stops/101508", "https://data.delijn.be/stops/300111"], ["https://data.delijn.be/stops/407173", "https://data.delijn.be/stops/407176"], ["https://data.delijn.be/stops/300815", "https://data.delijn.be/stops/300876"], ["https://data.delijn.be/stops/509037", "https://data.delijn.be/stops/509279"], ["https://data.delijn.be/stops/503037", "https://data.delijn.be/stops/503185"], ["https://data.delijn.be/stops/406169", "https://data.delijn.be/stops/406192"], ["https://data.delijn.be/stops/300435", "https://data.delijn.be/stops/300443"], ["https://data.delijn.be/stops/301867", "https://data.delijn.be/stops/301869"], ["https://data.delijn.be/stops/304190", "https://data.delijn.be/stops/304191"], ["https://data.delijn.be/stops/408615", "https://data.delijn.be/stops/408632"], ["https://data.delijn.be/stops/107405", "https://data.delijn.be/stops/107407"], ["https://data.delijn.be/stops/504014", "https://data.delijn.be/stops/509720"], ["https://data.delijn.be/stops/404743", "https://data.delijn.be/stops/410051"], ["https://data.delijn.be/stops/101673", "https://data.delijn.be/stops/101674"], ["https://data.delijn.be/stops/208064", "https://data.delijn.be/stops/208065"], ["https://data.delijn.be/stops/209076", "https://data.delijn.be/stops/209124"], ["https://data.delijn.be/stops/503684", "https://data.delijn.be/stops/508684"], ["https://data.delijn.be/stops/306902", "https://data.delijn.be/stops/308129"], ["https://data.delijn.be/stops/505155", "https://data.delijn.be/stops/507075"], ["https://data.delijn.be/stops/200408", "https://data.delijn.be/stops/201308"], ["https://data.delijn.be/stops/208445", "https://data.delijn.be/stops/208453"], ["https://data.delijn.be/stops/300676", "https://data.delijn.be/stops/308977"], ["https://data.delijn.be/stops/405570", "https://data.delijn.be/stops/405571"], ["https://data.delijn.be/stops/200510", "https://data.delijn.be/stops/200511"], ["https://data.delijn.be/stops/408325", "https://data.delijn.be/stops/408348"], ["https://data.delijn.be/stops/200352", "https://data.delijn.be/stops/201018"], ["https://data.delijn.be/stops/508025", "https://data.delijn.be/stops/508223"], ["https://data.delijn.be/stops/303502", "https://data.delijn.be/stops/303503"], ["https://data.delijn.be/stops/300904", "https://data.delijn.be/stops/301114"], ["https://data.delijn.be/stops/101922", "https://data.delijn.be/stops/102969"], ["https://data.delijn.be/stops/402328", "https://data.delijn.be/stops/402329"], ["https://data.delijn.be/stops/407224", "https://data.delijn.be/stops/407490"], ["https://data.delijn.be/stops/308617", "https://data.delijn.be/stops/308618"], ["https://data.delijn.be/stops/403073", "https://data.delijn.be/stops/403075"], ["https://data.delijn.be/stops/202834", "https://data.delijn.be/stops/202942"], ["https://data.delijn.be/stops/401679", "https://data.delijn.be/stops/308171"], ["https://data.delijn.be/stops/406309", "https://data.delijn.be/stops/406312"], ["https://data.delijn.be/stops/206571", "https://data.delijn.be/stops/207571"], ["https://data.delijn.be/stops/209221", "https://data.delijn.be/stops/209238"], ["https://data.delijn.be/stops/403092", "https://data.delijn.be/stops/403093"], ["https://data.delijn.be/stops/202516", "https://data.delijn.be/stops/203515"], ["https://data.delijn.be/stops/503602", "https://data.delijn.be/stops/508602"], ["https://data.delijn.be/stops/301532", "https://data.delijn.be/stops/304701"], ["https://data.delijn.be/stops/105317", "https://data.delijn.be/stops/105342"], ["https://data.delijn.be/stops/200232", "https://data.delijn.be/stops/200550"], ["https://data.delijn.be/stops/101020", "https://data.delijn.be/stops/105671"], ["https://data.delijn.be/stops/407758", "https://data.delijn.be/stops/409249"], ["https://data.delijn.be/stops/101921", "https://data.delijn.be/stops/105668"], ["https://data.delijn.be/stops/303152", "https://data.delijn.be/stops/305449"], ["https://data.delijn.be/stops/208202", "https://data.delijn.be/stops/209780"], ["https://data.delijn.be/stops/300016", "https://data.delijn.be/stops/301138"], ["https://data.delijn.be/stops/301849", "https://data.delijn.be/stops/305817"], ["https://data.delijn.be/stops/204916", "https://data.delijn.be/stops/205912"], ["https://data.delijn.be/stops/208527", "https://data.delijn.be/stops/209701"], ["https://data.delijn.be/stops/102392", "https://data.delijn.be/stops/103137"], ["https://data.delijn.be/stops/105789", "https://data.delijn.be/stops/105790"], ["https://data.delijn.be/stops/503643", "https://data.delijn.be/stops/508641"], ["https://data.delijn.be/stops/206532", "https://data.delijn.be/stops/207455"], ["https://data.delijn.be/stops/202925", "https://data.delijn.be/stops/203925"], ["https://data.delijn.be/stops/408888", "https://data.delijn.be/stops/408903"], ["https://data.delijn.be/stops/400806", "https://data.delijn.be/stops/400872"], ["https://data.delijn.be/stops/106017", "https://data.delijn.be/stops/106758"], ["https://data.delijn.be/stops/501093", "https://data.delijn.be/stops/506092"], ["https://data.delijn.be/stops/201134", "https://data.delijn.be/stops/201468"], ["https://data.delijn.be/stops/101657", "https://data.delijn.be/stops/107849"], ["https://data.delijn.be/stops/200495", "https://data.delijn.be/stops/200632"], ["https://data.delijn.be/stops/208022", "https://data.delijn.be/stops/208023"], ["https://data.delijn.be/stops/409667", "https://data.delijn.be/stops/409688"], ["https://data.delijn.be/stops/209484", "https://data.delijn.be/stops/209659"], ["https://data.delijn.be/stops/400640", "https://data.delijn.be/stops/406876"], ["https://data.delijn.be/stops/504646", "https://data.delijn.be/stops/505101"], ["https://data.delijn.be/stops/302739", "https://data.delijn.be/stops/302747"], ["https://data.delijn.be/stops/403764", "https://data.delijn.be/stops/403774"], ["https://data.delijn.be/stops/206075", "https://data.delijn.be/stops/207319"], ["https://data.delijn.be/stops/200879", "https://data.delijn.be/stops/200888"], ["https://data.delijn.be/stops/406095", "https://data.delijn.be/stops/406133"], ["https://data.delijn.be/stops/105283", "https://data.delijn.be/stops/109925"], ["https://data.delijn.be/stops/301626", "https://data.delijn.be/stops/306155"], ["https://data.delijn.be/stops/303373", "https://data.delijn.be/stops/303383"], ["https://data.delijn.be/stops/404028", "https://data.delijn.be/stops/308749"], ["https://data.delijn.be/stops/402082", "https://data.delijn.be/stops/402116"], ["https://data.delijn.be/stops/204051", "https://data.delijn.be/stops/205065"], ["https://data.delijn.be/stops/207726", "https://data.delijn.be/stops/207881"], ["https://data.delijn.be/stops/508072", "https://data.delijn.be/stops/508073"], ["https://data.delijn.be/stops/408994", "https://data.delijn.be/stops/409006"], ["https://data.delijn.be/stops/300526", "https://data.delijn.be/stops/306174"], ["https://data.delijn.be/stops/208089", "https://data.delijn.be/stops/507962"], ["https://data.delijn.be/stops/505079", "https://data.delijn.be/stops/508822"], ["https://data.delijn.be/stops/504746", "https://data.delijn.be/stops/509132"], ["https://data.delijn.be/stops/301398", "https://data.delijn.be/stops/301403"], ["https://data.delijn.be/stops/407690", "https://data.delijn.be/stops/410193"], ["https://data.delijn.be/stops/302405", "https://data.delijn.be/stops/302407"], ["https://data.delijn.be/stops/505107", "https://data.delijn.be/stops/509639"], ["https://data.delijn.be/stops/206689", "https://data.delijn.be/stops/207717"], ["https://data.delijn.be/stops/507471", "https://data.delijn.be/stops/507476"], ["https://data.delijn.be/stops/302129", "https://data.delijn.be/stops/307527"], ["https://data.delijn.be/stops/203218", "https://data.delijn.be/stops/204795"], ["https://data.delijn.be/stops/208682", "https://data.delijn.be/stops/209432"], ["https://data.delijn.be/stops/403196", "https://data.delijn.be/stops/403518"], ["https://data.delijn.be/stops/307647", "https://data.delijn.be/stops/307648"], ["https://data.delijn.be/stops/103520", "https://data.delijn.be/stops/105510"], ["https://data.delijn.be/stops/503630", "https://data.delijn.be/stops/508630"], ["https://data.delijn.be/stops/201934", "https://data.delijn.be/stops/207966"], ["https://data.delijn.be/stops/108311", "https://data.delijn.be/stops/108313"], ["https://data.delijn.be/stops/201054", "https://data.delijn.be/stops/201478"], ["https://data.delijn.be/stops/108926", "https://data.delijn.be/stops/108931"], ["https://data.delijn.be/stops/108858", "https://data.delijn.be/stops/108861"], ["https://data.delijn.be/stops/401758", "https://data.delijn.be/stops/401760"], ["https://data.delijn.be/stops/209750", "https://data.delijn.be/stops/209756"], ["https://data.delijn.be/stops/308142", "https://data.delijn.be/stops/308145"], ["https://data.delijn.be/stops/406926", "https://data.delijn.be/stops/406927"], ["https://data.delijn.be/stops/304558", "https://data.delijn.be/stops/307571"], ["https://data.delijn.be/stops/105001", "https://data.delijn.be/stops/105066"], ["https://data.delijn.be/stops/303465", "https://data.delijn.be/stops/303501"], ["https://data.delijn.be/stops/503303", "https://data.delijn.be/stops/508303"], ["https://data.delijn.be/stops/302325", "https://data.delijn.be/stops/307229"], ["https://data.delijn.be/stops/104815", "https://data.delijn.be/stops/105457"], ["https://data.delijn.be/stops/301063", "https://data.delijn.be/stops/301064"], ["https://data.delijn.be/stops/304937", "https://data.delijn.be/stops/304943"], ["https://data.delijn.be/stops/104013", "https://data.delijn.be/stops/104016"], ["https://data.delijn.be/stops/509420", "https://data.delijn.be/stops/509436"], ["https://data.delijn.be/stops/407924", "https://data.delijn.be/stops/408230"], ["https://data.delijn.be/stops/504834", "https://data.delijn.be/stops/504845"], ["https://data.delijn.be/stops/300969", "https://data.delijn.be/stops/301106"], ["https://data.delijn.be/stops/405954", "https://data.delijn.be/stops/405955"], ["https://data.delijn.be/stops/302940", "https://data.delijn.be/stops/302951"], ["https://data.delijn.be/stops/505705", "https://data.delijn.be/stops/507062"], ["https://data.delijn.be/stops/504610", "https://data.delijn.be/stops/505983"], ["https://data.delijn.be/stops/101969", "https://data.delijn.be/stops/104936"], ["https://data.delijn.be/stops/503720", "https://data.delijn.be/stops/508720"], ["https://data.delijn.be/stops/500942", "https://data.delijn.be/stops/508806"], ["https://data.delijn.be/stops/407436", "https://data.delijn.be/stops/407488"], ["https://data.delijn.be/stops/403732", "https://data.delijn.be/stops/403739"], ["https://data.delijn.be/stops/305946", "https://data.delijn.be/stops/308420"], ["https://data.delijn.be/stops/506056", "https://data.delijn.be/stops/506058"], ["https://data.delijn.be/stops/305727", "https://data.delijn.be/stops/308131"], ["https://data.delijn.be/stops/202690", "https://data.delijn.be/stops/203722"], ["https://data.delijn.be/stops/406401", "https://data.delijn.be/stops/406402"], ["https://data.delijn.be/stops/507220", "https://data.delijn.be/stops/507223"], ["https://data.delijn.be/stops/405339", "https://data.delijn.be/stops/405349"], ["https://data.delijn.be/stops/103274", "https://data.delijn.be/stops/107611"], ["https://data.delijn.be/stops/301967", "https://data.delijn.be/stops/307224"], ["https://data.delijn.be/stops/505118", "https://data.delijn.be/stops/508480"], ["https://data.delijn.be/stops/308607", "https://data.delijn.be/stops/308609"], ["https://data.delijn.be/stops/507947", "https://data.delijn.be/stops/507954"], ["https://data.delijn.be/stops/304377", "https://data.delijn.be/stops/304425"], ["https://data.delijn.be/stops/206537", "https://data.delijn.be/stops/209689"], ["https://data.delijn.be/stops/307207", "https://data.delijn.be/stops/307534"], ["https://data.delijn.be/stops/407674", "https://data.delijn.be/stops/407679"], ["https://data.delijn.be/stops/302274", "https://data.delijn.be/stops/307280"], ["https://data.delijn.be/stops/203824", "https://data.delijn.be/stops/203825"], ["https://data.delijn.be/stops/408607", "https://data.delijn.be/stops/408616"], ["https://data.delijn.be/stops/502140", "https://data.delijn.be/stops/502728"], ["https://data.delijn.be/stops/400816", "https://data.delijn.be/stops/403580"], ["https://data.delijn.be/stops/108189", "https://data.delijn.be/stops/108206"], ["https://data.delijn.be/stops/408386", "https://data.delijn.be/stops/408388"], ["https://data.delijn.be/stops/207127", "https://data.delijn.be/stops/207414"], ["https://data.delijn.be/stops/501132", "https://data.delijn.be/stops/501135"], ["https://data.delijn.be/stops/407852", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/301536", "https://data.delijn.be/stops/304701"], ["https://data.delijn.be/stops/504491", "https://data.delijn.be/stops/509060"], ["https://data.delijn.be/stops/106099", "https://data.delijn.be/stops/106113"], ["https://data.delijn.be/stops/308479", "https://data.delijn.be/stops/308480"], ["https://data.delijn.be/stops/302594", "https://data.delijn.be/stops/302606"], ["https://data.delijn.be/stops/204069", "https://data.delijn.be/stops/205188"], ["https://data.delijn.be/stops/303814", "https://data.delijn.be/stops/303815"], ["https://data.delijn.be/stops/108109", "https://data.delijn.be/stops/108111"], ["https://data.delijn.be/stops/503953", "https://data.delijn.be/stops/508959"], ["https://data.delijn.be/stops/503784", "https://data.delijn.be/stops/508785"], ["https://data.delijn.be/stops/402776", "https://data.delijn.be/stops/405684"], ["https://data.delijn.be/stops/509780", "https://data.delijn.be/stops/509781"], ["https://data.delijn.be/stops/502190", "https://data.delijn.be/stops/502204"], ["https://data.delijn.be/stops/502327", "https://data.delijn.be/stops/507327"], ["https://data.delijn.be/stops/301921", "https://data.delijn.be/stops/302812"], ["https://data.delijn.be/stops/305502", "https://data.delijn.be/stops/307826"], ["https://data.delijn.be/stops/203817", "https://data.delijn.be/stops/219953"], ["https://data.delijn.be/stops/306054", "https://data.delijn.be/stops/306062"], ["https://data.delijn.be/stops/402813", "https://data.delijn.be/stops/409041"], ["https://data.delijn.be/stops/300740", "https://data.delijn.be/stops/308530"], ["https://data.delijn.be/stops/208004", "https://data.delijn.be/stops/209635"], ["https://data.delijn.be/stops/107483", "https://data.delijn.be/stops/107509"], ["https://data.delijn.be/stops/402681", "https://data.delijn.be/stops/402726"], ["https://data.delijn.be/stops/400201", "https://data.delijn.be/stops/402375"], ["https://data.delijn.be/stops/504560", "https://data.delijn.be/stops/504567"], ["https://data.delijn.be/stops/301683", "https://data.delijn.be/stops/302397"], ["https://data.delijn.be/stops/203013", "https://data.delijn.be/stops/203014"], ["https://data.delijn.be/stops/307204", "https://data.delijn.be/stops/307555"], ["https://data.delijn.be/stops/410151", "https://data.delijn.be/stops/302829"], ["https://data.delijn.be/stops/301987", "https://data.delijn.be/stops/301996"], ["https://data.delijn.be/stops/502014", "https://data.delijn.be/stops/502913"], ["https://data.delijn.be/stops/302621", "https://data.delijn.be/stops/302637"], ["https://data.delijn.be/stops/105237", "https://data.delijn.be/stops/105248"], ["https://data.delijn.be/stops/503531", "https://data.delijn.be/stops/508530"], ["https://data.delijn.be/stops/409088", "https://data.delijn.be/stops/409130"], ["https://data.delijn.be/stops/404324", "https://data.delijn.be/stops/404782"], ["https://data.delijn.be/stops/400377", "https://data.delijn.be/stops/401590"], ["https://data.delijn.be/stops/103389", "https://data.delijn.be/stops/108395"], ["https://data.delijn.be/stops/103496", "https://data.delijn.be/stops/103676"], ["https://data.delijn.be/stops/509409", "https://data.delijn.be/stops/509472"], ["https://data.delijn.be/stops/106273", "https://data.delijn.be/stops/109625"], ["https://data.delijn.be/stops/408904", "https://data.delijn.be/stops/408911"], ["https://data.delijn.be/stops/403057", "https://data.delijn.be/stops/403066"], ["https://data.delijn.be/stops/504784", "https://data.delijn.be/stops/508519"], ["https://data.delijn.be/stops/208668", "https://data.delijn.be/stops/208669"], ["https://data.delijn.be/stops/504101", "https://data.delijn.be/stops/504256"], ["https://data.delijn.be/stops/408499", "https://data.delijn.be/stops/408688"], ["https://data.delijn.be/stops/203885", "https://data.delijn.be/stops/209746"], ["https://data.delijn.be/stops/407782", "https://data.delijn.be/stops/307381"], ["https://data.delijn.be/stops/502401", "https://data.delijn.be/stops/507393"], ["https://data.delijn.be/stops/202065", "https://data.delijn.be/stops/203713"], ["https://data.delijn.be/stops/304501", "https://data.delijn.be/stops/304513"], ["https://data.delijn.be/stops/109308", "https://data.delijn.be/stops/109310"], ["https://data.delijn.be/stops/402584", "https://data.delijn.be/stops/402592"], ["https://data.delijn.be/stops/502410", "https://data.delijn.be/stops/502821"], ["https://data.delijn.be/stops/218001", "https://data.delijn.be/stops/219002"], ["https://data.delijn.be/stops/301960", "https://data.delijn.be/stops/301980"], ["https://data.delijn.be/stops/510016", "https://data.delijn.be/stops/510017"], ["https://data.delijn.be/stops/201010", "https://data.delijn.be/stops/211020"], ["https://data.delijn.be/stops/508539", "https://data.delijn.be/stops/508993"], ["https://data.delijn.be/stops/400482", "https://data.delijn.be/stops/407688"], ["https://data.delijn.be/stops/109216", "https://data.delijn.be/stops/109217"], ["https://data.delijn.be/stops/206592", "https://data.delijn.be/stops/207948"], ["https://data.delijn.be/stops/501033", "https://data.delijn.be/stops/501044"], ["https://data.delijn.be/stops/504200", "https://data.delijn.be/stops/509257"], ["https://data.delijn.be/stops/307395", "https://data.delijn.be/stops/308641"], ["https://data.delijn.be/stops/209054", "https://data.delijn.be/stops/209055"], ["https://data.delijn.be/stops/106362", "https://data.delijn.be/stops/106369"], ["https://data.delijn.be/stops/504535", "https://data.delijn.be/stops/504954"], ["https://data.delijn.be/stops/207031", "https://data.delijn.be/stops/207922"], ["https://data.delijn.be/stops/501634", "https://data.delijn.be/stops/501674"], ["https://data.delijn.be/stops/207608", "https://data.delijn.be/stops/207992"], ["https://data.delijn.be/stops/202714", "https://data.delijn.be/stops/202715"], ["https://data.delijn.be/stops/101526", "https://data.delijn.be/stops/101943"], ["https://data.delijn.be/stops/204578", "https://data.delijn.be/stops/206274"], ["https://data.delijn.be/stops/208747", "https://data.delijn.be/stops/209414"], ["https://data.delijn.be/stops/406835", "https://data.delijn.be/stops/406855"], ["https://data.delijn.be/stops/206362", "https://data.delijn.be/stops/207377"], ["https://data.delijn.be/stops/509264", "https://data.delijn.be/stops/509265"], ["https://data.delijn.be/stops/405505", "https://data.delijn.be/stops/405506"], ["https://data.delijn.be/stops/204145", "https://data.delijn.be/stops/206634"], ["https://data.delijn.be/stops/404131", "https://data.delijn.be/stops/404240"], ["https://data.delijn.be/stops/200679", "https://data.delijn.be/stops/201465"], ["https://data.delijn.be/stops/402222", "https://data.delijn.be/stops/410334"], ["https://data.delijn.be/stops/503904", "https://data.delijn.be/stops/508905"], ["https://data.delijn.be/stops/201867", "https://data.delijn.be/stops/203084"], ["https://data.delijn.be/stops/501491", "https://data.delijn.be/stops/506490"], ["https://data.delijn.be/stops/205739", "https://data.delijn.be/stops/205740"], ["https://data.delijn.be/stops/502079", "https://data.delijn.be/stops/502816"], ["https://data.delijn.be/stops/208720", "https://data.delijn.be/stops/209720"], ["https://data.delijn.be/stops/507365", "https://data.delijn.be/stops/507374"], ["https://data.delijn.be/stops/104608", "https://data.delijn.be/stops/108462"], ["https://data.delijn.be/stops/204747", "https://data.delijn.be/stops/205738"], ["https://data.delijn.be/stops/301103", "https://data.delijn.be/stops/303342"], ["https://data.delijn.be/stops/408681", "https://data.delijn.be/stops/408908"], ["https://data.delijn.be/stops/102672", "https://data.delijn.be/stops/106214"], ["https://data.delijn.be/stops/206448", "https://data.delijn.be/stops/207159"], ["https://data.delijn.be/stops/505213", "https://data.delijn.be/stops/509600"], ["https://data.delijn.be/stops/507322", "https://data.delijn.be/stops/507329"], ["https://data.delijn.be/stops/105688", "https://data.delijn.be/stops/105692"], ["https://data.delijn.be/stops/404007", "https://data.delijn.be/stops/404433"], ["https://data.delijn.be/stops/208451", "https://data.delijn.be/stops/209792"], ["https://data.delijn.be/stops/206755", "https://data.delijn.be/stops/208476"], ["https://data.delijn.be/stops/302412", "https://data.delijn.be/stops/302417"], ["https://data.delijn.be/stops/300528", "https://data.delijn.be/stops/306174"], ["https://data.delijn.be/stops/402196", "https://data.delijn.be/stops/402265"], ["https://data.delijn.be/stops/405478", "https://data.delijn.be/stops/409313"], ["https://data.delijn.be/stops/303837", "https://data.delijn.be/stops/303860"], ["https://data.delijn.be/stops/400100", "https://data.delijn.be/stops/400101"], ["https://data.delijn.be/stops/302256", "https://data.delijn.be/stops/307280"], ["https://data.delijn.be/stops/102193", "https://data.delijn.be/stops/102323"], ["https://data.delijn.be/stops/506074", "https://data.delijn.be/stops/506076"], ["https://data.delijn.be/stops/201982", "https://data.delijn.be/stops/202912"], ["https://data.delijn.be/stops/305693", "https://data.delijn.be/stops/305695"], ["https://data.delijn.be/stops/101605", "https://data.delijn.be/stops/103306"], ["https://data.delijn.be/stops/200522", "https://data.delijn.be/stops/211131"], ["https://data.delijn.be/stops/202424", "https://data.delijn.be/stops/203423"], ["https://data.delijn.be/stops/405190", "https://data.delijn.be/stops/406322"], ["https://data.delijn.be/stops/405456", "https://data.delijn.be/stops/405474"], ["https://data.delijn.be/stops/106711", "https://data.delijn.be/stops/106714"], ["https://data.delijn.be/stops/505278", "https://data.delijn.be/stops/505973"], ["https://data.delijn.be/stops/503355", "https://data.delijn.be/stops/503662"], ["https://data.delijn.be/stops/406074", "https://data.delijn.be/stops/406076"], ["https://data.delijn.be/stops/101973", "https://data.delijn.be/stops/109291"], ["https://data.delijn.be/stops/408230", "https://data.delijn.be/stops/408422"], ["https://data.delijn.be/stops/301935", "https://data.delijn.be/stops/302899"], ["https://data.delijn.be/stops/505025", "https://data.delijn.be/stops/505583"], ["https://data.delijn.be/stops/301728", "https://data.delijn.be/stops/301734"], ["https://data.delijn.be/stops/105151", "https://data.delijn.be/stops/109523"], ["https://data.delijn.be/stops/200485", "https://data.delijn.be/stops/209733"], ["https://data.delijn.be/stops/103399", "https://data.delijn.be/stops/105019"], ["https://data.delijn.be/stops/304494", "https://data.delijn.be/stops/304519"], ["https://data.delijn.be/stops/200543", "https://data.delijn.be/stops/201543"], ["https://data.delijn.be/stops/404617", "https://data.delijn.be/stops/406944"], ["https://data.delijn.be/stops/104310", "https://data.delijn.be/stops/104320"], ["https://data.delijn.be/stops/102661", "https://data.delijn.be/stops/108739"], ["https://data.delijn.be/stops/201945", "https://data.delijn.be/stops/202455"], ["https://data.delijn.be/stops/405035", "https://data.delijn.be/stops/405070"], ["https://data.delijn.be/stops/504076", "https://data.delijn.be/stops/504694"], ["https://data.delijn.be/stops/305414", "https://data.delijn.be/stops/305925"], ["https://data.delijn.be/stops/108701", "https://data.delijn.be/stops/108702"], ["https://data.delijn.be/stops/210003", "https://data.delijn.be/stops/211003"], ["https://data.delijn.be/stops/200175", "https://data.delijn.be/stops/211112"], ["https://data.delijn.be/stops/303163", "https://data.delijn.be/stops/303178"], ["https://data.delijn.be/stops/201561", "https://data.delijn.be/stops/201563"], ["https://data.delijn.be/stops/203114", "https://data.delijn.be/stops/205587"], ["https://data.delijn.be/stops/302417", "https://data.delijn.be/stops/306150"], ["https://data.delijn.be/stops/109771", "https://data.delijn.be/stops/109774"], ["https://data.delijn.be/stops/403726", "https://data.delijn.be/stops/403786"], ["https://data.delijn.be/stops/407938", "https://data.delijn.be/stops/408122"], ["https://data.delijn.be/stops/200523", "https://data.delijn.be/stops/201521"], ["https://data.delijn.be/stops/402158", "https://data.delijn.be/stops/407955"], ["https://data.delijn.be/stops/408172", "https://data.delijn.be/stops/408173"], ["https://data.delijn.be/stops/303367", "https://data.delijn.be/stops/303389"], ["https://data.delijn.be/stops/107139", "https://data.delijn.be/stops/107142"], ["https://data.delijn.be/stops/302467", "https://data.delijn.be/stops/305957"], ["https://data.delijn.be/stops/502391", "https://data.delijn.be/stops/507051"], ["https://data.delijn.be/stops/107811", "https://data.delijn.be/stops/109918"], ["https://data.delijn.be/stops/201501", "https://data.delijn.be/stops/201570"], ["https://data.delijn.be/stops/101477", "https://data.delijn.be/stops/109705"], ["https://data.delijn.be/stops/504040", "https://data.delijn.be/stops/509282"], ["https://data.delijn.be/stops/406880", "https://data.delijn.be/stops/409768"], ["https://data.delijn.be/stops/108653", "https://data.delijn.be/stops/306597"], ["https://data.delijn.be/stops/504333", "https://data.delijn.be/stops/509331"], ["https://data.delijn.be/stops/300826", "https://data.delijn.be/stops/305448"], ["https://data.delijn.be/stops/101908", "https://data.delijn.be/stops/101912"], ["https://data.delijn.be/stops/503313", "https://data.delijn.be/stops/505937"], ["https://data.delijn.be/stops/301474", "https://data.delijn.be/stops/308073"], ["https://data.delijn.be/stops/408517", "https://data.delijn.be/stops/408593"], ["https://data.delijn.be/stops/308468", "https://data.delijn.be/stops/308470"], ["https://data.delijn.be/stops/200606", "https://data.delijn.be/stops/201606"], ["https://data.delijn.be/stops/504677", "https://data.delijn.be/stops/505435"], ["https://data.delijn.be/stops/102414", "https://data.delijn.be/stops/102909"], ["https://data.delijn.be/stops/400688", "https://data.delijn.be/stops/404362"], ["https://data.delijn.be/stops/303362", "https://data.delijn.be/stops/303377"], ["https://data.delijn.be/stops/106628", "https://data.delijn.be/stops/106629"], ["https://data.delijn.be/stops/202791", "https://data.delijn.be/stops/202792"], ["https://data.delijn.be/stops/104345", "https://data.delijn.be/stops/104346"], ["https://data.delijn.be/stops/104966", "https://data.delijn.be/stops/109214"], ["https://data.delijn.be/stops/108353", "https://data.delijn.be/stops/108357"], ["https://data.delijn.be/stops/504495", "https://data.delijn.be/stops/506174"], ["https://data.delijn.be/stops/304955", "https://data.delijn.be/stops/304964"], ["https://data.delijn.be/stops/301277", "https://data.delijn.be/stops/307789"], ["https://data.delijn.be/stops/203574", "https://data.delijn.be/stops/203575"], ["https://data.delijn.be/stops/306046", "https://data.delijn.be/stops/306151"], ["https://data.delijn.be/stops/503647", "https://data.delijn.be/stops/508739"], ["https://data.delijn.be/stops/102009", "https://data.delijn.be/stops/205642"], ["https://data.delijn.be/stops/401034", "https://data.delijn.be/stops/401038"], ["https://data.delijn.be/stops/206711", "https://data.delijn.be/stops/207601"], ["https://data.delijn.be/stops/108912", "https://data.delijn.be/stops/108913"], ["https://data.delijn.be/stops/200632", "https://data.delijn.be/stops/200660"], ["https://data.delijn.be/stops/402157", "https://data.delijn.be/stops/402376"], ["https://data.delijn.be/stops/304829", "https://data.delijn.be/stops/304832"], ["https://data.delijn.be/stops/503589", "https://data.delijn.be/stops/508589"], ["https://data.delijn.be/stops/304412", "https://data.delijn.be/stops/307359"], ["https://data.delijn.be/stops/302083", "https://data.delijn.be/stops/302087"], ["https://data.delijn.be/stops/101579", "https://data.delijn.be/stops/101582"], ["https://data.delijn.be/stops/104016", "https://data.delijn.be/stops/104017"], ["https://data.delijn.be/stops/104511", "https://data.delijn.be/stops/104513"], ["https://data.delijn.be/stops/305191", "https://data.delijn.be/stops/305193"], ["https://data.delijn.be/stops/402715", "https://data.delijn.be/stops/308139"], ["https://data.delijn.be/stops/106078", "https://data.delijn.be/stops/106079"], ["https://data.delijn.be/stops/400060", "https://data.delijn.be/stops/400100"], ["https://data.delijn.be/stops/107115", "https://data.delijn.be/stops/107235"], ["https://data.delijn.be/stops/106725", "https://data.delijn.be/stops/106726"], ["https://data.delijn.be/stops/501366", "https://data.delijn.be/stops/506369"], ["https://data.delijn.be/stops/200504", "https://data.delijn.be/stops/201412"], ["https://data.delijn.be/stops/208185", "https://data.delijn.be/stops/209185"], ["https://data.delijn.be/stops/405697", "https://data.delijn.be/stops/405989"], ["https://data.delijn.be/stops/504194", "https://data.delijn.be/stops/504195"], ["https://data.delijn.be/stops/503511", "https://data.delijn.be/stops/508506"], ["https://data.delijn.be/stops/400759", "https://data.delijn.be/stops/409585"], ["https://data.delijn.be/stops/202147", "https://data.delijn.be/stops/202189"], ["https://data.delijn.be/stops/508197", "https://data.delijn.be/stops/508205"], ["https://data.delijn.be/stops/300213", "https://data.delijn.be/stops/303795"], ["https://data.delijn.be/stops/509644", "https://data.delijn.be/stops/509646"], ["https://data.delijn.be/stops/307860", "https://data.delijn.be/stops/307862"], ["https://data.delijn.be/stops/401212", "https://data.delijn.be/stops/402821"], ["https://data.delijn.be/stops/501213", "https://data.delijn.be/stops/506212"], ["https://data.delijn.be/stops/106808", "https://data.delijn.be/stops/106810"], ["https://data.delijn.be/stops/301121", "https://data.delijn.be/stops/301131"], ["https://data.delijn.be/stops/105771", "https://data.delijn.be/stops/108013"], ["https://data.delijn.be/stops/402191", "https://data.delijn.be/stops/402262"], ["https://data.delijn.be/stops/502696", "https://data.delijn.be/stops/507428"], ["https://data.delijn.be/stops/300455", "https://data.delijn.be/stops/305038"], ["https://data.delijn.be/stops/205372", "https://data.delijn.be/stops/205381"], ["https://data.delijn.be/stops/402071", "https://data.delijn.be/stops/405582"], ["https://data.delijn.be/stops/202607", "https://data.delijn.be/stops/203575"], ["https://data.delijn.be/stops/504278", "https://data.delijn.be/stops/504280"], ["https://data.delijn.be/stops/109808", "https://data.delijn.be/stops/109813"], ["https://data.delijn.be/stops/507103", "https://data.delijn.be/stops/507141"], ["https://data.delijn.be/stops/300788", "https://data.delijn.be/stops/300789"], ["https://data.delijn.be/stops/107468", "https://data.delijn.be/stops/107469"], ["https://data.delijn.be/stops/504080", "https://data.delijn.be/stops/504412"], ["https://data.delijn.be/stops/304446", "https://data.delijn.be/stops/304448"], ["https://data.delijn.be/stops/401736", "https://data.delijn.be/stops/401738"], ["https://data.delijn.be/stops/300318", "https://data.delijn.be/stops/308110"], ["https://data.delijn.be/stops/307420", "https://data.delijn.be/stops/307421"], ["https://data.delijn.be/stops/302378", "https://data.delijn.be/stops/302384"], ["https://data.delijn.be/stops/104028", "https://data.delijn.be/stops/107311"], ["https://data.delijn.be/stops/408649", "https://data.delijn.be/stops/408796"], ["https://data.delijn.be/stops/304424", "https://data.delijn.be/stops/307420"], ["https://data.delijn.be/stops/508759", "https://data.delijn.be/stops/509750"], ["https://data.delijn.be/stops/208608", "https://data.delijn.be/stops/209608"], ["https://data.delijn.be/stops/207731", "https://data.delijn.be/stops/207915"], ["https://data.delijn.be/stops/304396", "https://data.delijn.be/stops/307413"], ["https://data.delijn.be/stops/203945", "https://data.delijn.be/stops/203946"], ["https://data.delijn.be/stops/304942", "https://data.delijn.be/stops/304943"], ["https://data.delijn.be/stops/407971", "https://data.delijn.be/stops/408037"], ["https://data.delijn.be/stops/406674", "https://data.delijn.be/stops/406686"], ["https://data.delijn.be/stops/208514", "https://data.delijn.be/stops/209672"], ["https://data.delijn.be/stops/201891", "https://data.delijn.be/stops/211113"], ["https://data.delijn.be/stops/506681", "https://data.delijn.be/stops/509840"], ["https://data.delijn.be/stops/501671", "https://data.delijn.be/stops/501679"], ["https://data.delijn.be/stops/101666", "https://data.delijn.be/stops/106489"], ["https://data.delijn.be/stops/102955", "https://data.delijn.be/stops/104999"], ["https://data.delijn.be/stops/106858", "https://data.delijn.be/stops/106860"], ["https://data.delijn.be/stops/206722", "https://data.delijn.be/stops/207086"], ["https://data.delijn.be/stops/400201", "https://data.delijn.be/stops/409391"], ["https://data.delijn.be/stops/503087", "https://data.delijn.be/stops/505848"], ["https://data.delijn.be/stops/503528", "https://data.delijn.be/stops/508528"], ["https://data.delijn.be/stops/405701", "https://data.delijn.be/stops/407212"], ["https://data.delijn.be/stops/400110", "https://data.delijn.be/stops/409207"], ["https://data.delijn.be/stops/108986", "https://data.delijn.be/stops/109689"], ["https://data.delijn.be/stops/304960", "https://data.delijn.be/stops/304967"], ["https://data.delijn.be/stops/500924", "https://data.delijn.be/stops/505636"], ["https://data.delijn.be/stops/505143", "https://data.delijn.be/stops/507240"], ["https://data.delijn.be/stops/204791", "https://data.delijn.be/stops/205129"], ["https://data.delijn.be/stops/502580", "https://data.delijn.be/stops/507120"], ["https://data.delijn.be/stops/200818", "https://data.delijn.be/stops/200819"], ["https://data.delijn.be/stops/303284", "https://data.delijn.be/stops/303285"], ["https://data.delijn.be/stops/307241", "https://data.delijn.be/stops/307252"], ["https://data.delijn.be/stops/509417", "https://data.delijn.be/stops/509423"], ["https://data.delijn.be/stops/104364", "https://data.delijn.be/stops/104996"], ["https://data.delijn.be/stops/103961", "https://data.delijn.be/stops/107342"], ["https://data.delijn.be/stops/509272", "https://data.delijn.be/stops/509274"], ["https://data.delijn.be/stops/105542", "https://data.delijn.be/stops/106248"], ["https://data.delijn.be/stops/207246", "https://data.delijn.be/stops/207402"], ["https://data.delijn.be/stops/502495", "https://data.delijn.be/stops/507516"], ["https://data.delijn.be/stops/505996", "https://data.delijn.be/stops/508294"], ["https://data.delijn.be/stops/106636", "https://data.delijn.be/stops/106638"], ["https://data.delijn.be/stops/202479", "https://data.delijn.be/stops/203478"], ["https://data.delijn.be/stops/403776", "https://data.delijn.be/stops/403792"], ["https://data.delijn.be/stops/101013", "https://data.delijn.be/stops/103125"], ["https://data.delijn.be/stops/403323", "https://data.delijn.be/stops/407596"], ["https://data.delijn.be/stops/104038", "https://data.delijn.be/stops/107624"], ["https://data.delijn.be/stops/206651", "https://data.delijn.be/stops/207650"], ["https://data.delijn.be/stops/202187", "https://data.delijn.be/stops/203187"], ["https://data.delijn.be/stops/501556", "https://data.delijn.be/stops/506738"], ["https://data.delijn.be/stops/200806", "https://data.delijn.be/stops/203281"], ["https://data.delijn.be/stops/107963", "https://data.delijn.be/stops/107965"], ["https://data.delijn.be/stops/501081", "https://data.delijn.be/stops/501083"], ["https://data.delijn.be/stops/304897", "https://data.delijn.be/stops/307829"], ["https://data.delijn.be/stops/502216", "https://data.delijn.be/stops/505150"], ["https://data.delijn.be/stops/302663", "https://data.delijn.be/stops/302700"], ["https://data.delijn.be/stops/405835", "https://data.delijn.be/stops/409424"], ["https://data.delijn.be/stops/400091", "https://data.delijn.be/stops/400147"], ["https://data.delijn.be/stops/101250", "https://data.delijn.be/stops/103935"], ["https://data.delijn.be/stops/302335", "https://data.delijn.be/stops/308358"], ["https://data.delijn.be/stops/508655", "https://data.delijn.be/stops/508953"], ["https://data.delijn.be/stops/404461", "https://data.delijn.be/stops/404462"], ["https://data.delijn.be/stops/103929", "https://data.delijn.be/stops/104904"], ["https://data.delijn.be/stops/305074", "https://data.delijn.be/stops/305075"], ["https://data.delijn.be/stops/503299", "https://data.delijn.be/stops/503516"], ["https://data.delijn.be/stops/202368", "https://data.delijn.be/stops/203367"], ["https://data.delijn.be/stops/205131", "https://data.delijn.be/stops/205789"], ["https://data.delijn.be/stops/206671", "https://data.delijn.be/stops/208659"], ["https://data.delijn.be/stops/304297", "https://data.delijn.be/stops/306827"], ["https://data.delijn.be/stops/501247", "https://data.delijn.be/stops/506247"], ["https://data.delijn.be/stops/302973", "https://data.delijn.be/stops/303449"], ["https://data.delijn.be/stops/201940", "https://data.delijn.be/stops/210123"], ["https://data.delijn.be/stops/201953", "https://data.delijn.be/stops/203506"], ["https://data.delijn.be/stops/507266", "https://data.delijn.be/stops/507350"], ["https://data.delijn.be/stops/206946", "https://data.delijn.be/stops/208072"], ["https://data.delijn.be/stops/304535", "https://data.delijn.be/stops/304600"], ["https://data.delijn.be/stops/207633", "https://data.delijn.be/stops/207636"], ["https://data.delijn.be/stops/202967", "https://data.delijn.be/stops/203967"], ["https://data.delijn.be/stops/405379", "https://data.delijn.be/stops/303314"], ["https://data.delijn.be/stops/300305", "https://data.delijn.be/stops/300317"], ["https://data.delijn.be/stops/200216", "https://data.delijn.be/stops/201218"], ["https://data.delijn.be/stops/402303", "https://data.delijn.be/stops/402304"], ["https://data.delijn.be/stops/303058", "https://data.delijn.be/stops/303150"], ["https://data.delijn.be/stops/302846", "https://data.delijn.be/stops/302847"], ["https://data.delijn.be/stops/502665", "https://data.delijn.be/stops/507664"], ["https://data.delijn.be/stops/403089", "https://data.delijn.be/stops/410130"], ["https://data.delijn.be/stops/101970", "https://data.delijn.be/stops/107825"], ["https://data.delijn.be/stops/101055", "https://data.delijn.be/stops/108645"], ["https://data.delijn.be/stops/301781", "https://data.delijn.be/stops/301783"], ["https://data.delijn.be/stops/108537", "https://data.delijn.be/stops/108538"], ["https://data.delijn.be/stops/208151", "https://data.delijn.be/stops/209678"], ["https://data.delijn.be/stops/209682", "https://data.delijn.be/stops/209684"], ["https://data.delijn.be/stops/302736", "https://data.delijn.be/stops/307703"], ["https://data.delijn.be/stops/208358", "https://data.delijn.be/stops/209499"], ["https://data.delijn.be/stops/208584", "https://data.delijn.be/stops/208841"], ["https://data.delijn.be/stops/508200", "https://data.delijn.be/stops/508208"], ["https://data.delijn.be/stops/500998", "https://data.delijn.be/stops/505898"], ["https://data.delijn.be/stops/109040", "https://data.delijn.be/stops/109135"], ["https://data.delijn.be/stops/206478", "https://data.delijn.be/stops/207478"], ["https://data.delijn.be/stops/301945", "https://data.delijn.be/stops/303323"], ["https://data.delijn.be/stops/503161", "https://data.delijn.be/stops/505526"], ["https://data.delijn.be/stops/204971", "https://data.delijn.be/stops/207265"], ["https://data.delijn.be/stops/305691", "https://data.delijn.be/stops/305695"], ["https://data.delijn.be/stops/204693", "https://data.delijn.be/stops/205614"], ["https://data.delijn.be/stops/503378", "https://data.delijn.be/stops/504764"], ["https://data.delijn.be/stops/305604", "https://data.delijn.be/stops/305605"], ["https://data.delijn.be/stops/400584", "https://data.delijn.be/stops/400585"], ["https://data.delijn.be/stops/501303", "https://data.delijn.be/stops/501325"], ["https://data.delijn.be/stops/504387", "https://data.delijn.be/stops/505977"], ["https://data.delijn.be/stops/103056", "https://data.delijn.be/stops/107178"], ["https://data.delijn.be/stops/106336", "https://data.delijn.be/stops/106699"], ["https://data.delijn.be/stops/206164", "https://data.delijn.be/stops/308798"], ["https://data.delijn.be/stops/105134", "https://data.delijn.be/stops/105138"], ["https://data.delijn.be/stops/106329", "https://data.delijn.be/stops/106330"], ["https://data.delijn.be/stops/503851", "https://data.delijn.be/stops/504994"], ["https://data.delijn.be/stops/209201", "https://data.delijn.be/stops/209212"], ["https://data.delijn.be/stops/201159", "https://data.delijn.be/stops/205922"], ["https://data.delijn.be/stops/108071", "https://data.delijn.be/stops/108134"], ["https://data.delijn.be/stops/105699", "https://data.delijn.be/stops/105701"], ["https://data.delijn.be/stops/103486", "https://data.delijn.be/stops/109191"], ["https://data.delijn.be/stops/504378", "https://data.delijn.be/stops/507951"], ["https://data.delijn.be/stops/307542", "https://data.delijn.be/stops/307579"], ["https://data.delijn.be/stops/503964", "https://data.delijn.be/stops/505405"], ["https://data.delijn.be/stops/402851", "https://data.delijn.be/stops/402858"], ["https://data.delijn.be/stops/406560", "https://data.delijn.be/stops/406562"], ["https://data.delijn.be/stops/104934", "https://data.delijn.be/stops/107846"], ["https://data.delijn.be/stops/405710", "https://data.delijn.be/stops/408203"], ["https://data.delijn.be/stops/109261", "https://data.delijn.be/stops/109615"], ["https://data.delijn.be/stops/105614", "https://data.delijn.be/stops/106364"], ["https://data.delijn.be/stops/302006", "https://data.delijn.be/stops/307074"], ["https://data.delijn.be/stops/506096", "https://data.delijn.be/stops/506098"], ["https://data.delijn.be/stops/206792", "https://data.delijn.be/stops/207869"], ["https://data.delijn.be/stops/402782", "https://data.delijn.be/stops/405585"], ["https://data.delijn.be/stops/407854", "https://data.delijn.be/stops/407896"], ["https://data.delijn.be/stops/509698", "https://data.delijn.be/stops/509703"], ["https://data.delijn.be/stops/505537", "https://data.delijn.be/stops/505543"], ["https://data.delijn.be/stops/306602", "https://data.delijn.be/stops/306605"], ["https://data.delijn.be/stops/505749", "https://data.delijn.be/stops/507007"], ["https://data.delijn.be/stops/305625", "https://data.delijn.be/stops/308377"], ["https://data.delijn.be/stops/105748", "https://data.delijn.be/stops/105749"], ["https://data.delijn.be/stops/105338", "https://data.delijn.be/stops/105349"], ["https://data.delijn.be/stops/507352", "https://data.delijn.be/stops/508719"], ["https://data.delijn.be/stops/107360", "https://data.delijn.be/stops/108585"], ["https://data.delijn.be/stops/400737", "https://data.delijn.be/stops/404261"], ["https://data.delijn.be/stops/104919", "https://data.delijn.be/stops/107859"], ["https://data.delijn.be/stops/305013", "https://data.delijn.be/stops/305014"], ["https://data.delijn.be/stops/205637", "https://data.delijn.be/stops/205639"], ["https://data.delijn.be/stops/407138", "https://data.delijn.be/stops/407304"], ["https://data.delijn.be/stops/502380", "https://data.delijn.be/stops/507404"], ["https://data.delijn.be/stops/404762", "https://data.delijn.be/stops/404788"], ["https://data.delijn.be/stops/501203", "https://data.delijn.be/stops/506240"], ["https://data.delijn.be/stops/401298", "https://data.delijn.be/stops/401321"], ["https://data.delijn.be/stops/501397", "https://data.delijn.be/stops/505836"], ["https://data.delijn.be/stops/204742", "https://data.delijn.be/stops/204743"], ["https://data.delijn.be/stops/201657", "https://data.delijn.be/stops/201658"], ["https://data.delijn.be/stops/105488", "https://data.delijn.be/stops/105489"], ["https://data.delijn.be/stops/404801", "https://data.delijn.be/stops/406991"], ["https://data.delijn.be/stops/400964", "https://data.delijn.be/stops/400965"], ["https://data.delijn.be/stops/504456", "https://data.delijn.be/stops/509456"], ["https://data.delijn.be/stops/403365", "https://data.delijn.be/stops/403522"], ["https://data.delijn.be/stops/107157", "https://data.delijn.be/stops/109380"], ["https://data.delijn.be/stops/202778", "https://data.delijn.be/stops/203768"], ["https://data.delijn.be/stops/405711", "https://data.delijn.be/stops/410139"], ["https://data.delijn.be/stops/300514", "https://data.delijn.be/stops/302790"], ["https://data.delijn.be/stops/501680", "https://data.delijn.be/stops/504636"], ["https://data.delijn.be/stops/302756", "https://data.delijn.be/stops/302765"], ["https://data.delijn.be/stops/304886", "https://data.delijn.be/stops/306160"], ["https://data.delijn.be/stops/103972", "https://data.delijn.be/stops/106156"], ["https://data.delijn.be/stops/301810", "https://data.delijn.be/stops/304678"], ["https://data.delijn.be/stops/502113", "https://data.delijn.be/stops/502145"], ["https://data.delijn.be/stops/207439", "https://data.delijn.be/stops/207442"], ["https://data.delijn.be/stops/303036", "https://data.delijn.be/stops/305159"], ["https://data.delijn.be/stops/210069", "https://data.delijn.be/stops/211072"], ["https://data.delijn.be/stops/304018", "https://data.delijn.be/stops/304865"], ["https://data.delijn.be/stops/402810", "https://data.delijn.be/stops/409048"], ["https://data.delijn.be/stops/400787", "https://data.delijn.be/stops/409594"], ["https://data.delijn.be/stops/104652", "https://data.delijn.be/stops/308481"], ["https://data.delijn.be/stops/406221", "https://data.delijn.be/stops/410043"], ["https://data.delijn.be/stops/505193", "https://data.delijn.be/stops/505197"], ["https://data.delijn.be/stops/305248", "https://data.delijn.be/stops/306344"], ["https://data.delijn.be/stops/506101", "https://data.delijn.be/stops/506102"], ["https://data.delijn.be/stops/101799", "https://data.delijn.be/stops/300672"], ["https://data.delijn.be/stops/404352", "https://data.delijn.be/stops/404390"], ["https://data.delijn.be/stops/102698", "https://data.delijn.be/stops/103690"], ["https://data.delijn.be/stops/300302", "https://data.delijn.be/stops/306045"], ["https://data.delijn.be/stops/204986", "https://data.delijn.be/stops/509816"], ["https://data.delijn.be/stops/101452", "https://data.delijn.be/stops/107055"], ["https://data.delijn.be/stops/106845", "https://data.delijn.be/stops/106848"], ["https://data.delijn.be/stops/304712", "https://data.delijn.be/stops/306334"], ["https://data.delijn.be/stops/307535", "https://data.delijn.be/stops/307537"], ["https://data.delijn.be/stops/105079", "https://data.delijn.be/stops/105080"], ["https://data.delijn.be/stops/409121", "https://data.delijn.be/stops/409123"], ["https://data.delijn.be/stops/102312", "https://data.delijn.be/stops/106257"], ["https://data.delijn.be/stops/102609", "https://data.delijn.be/stops/105528"], ["https://data.delijn.be/stops/404939", "https://data.delijn.be/stops/404954"], ["https://data.delijn.be/stops/300666", "https://data.delijn.be/stops/300677"], ["https://data.delijn.be/stops/501448", "https://data.delijn.be/stops/501452"], ["https://data.delijn.be/stops/106208", "https://data.delijn.be/stops/109903"], ["https://data.delijn.be/stops/408608", "https://data.delijn.be/stops/408609"], ["https://data.delijn.be/stops/204475", "https://data.delijn.be/stops/205475"], ["https://data.delijn.be/stops/501776", "https://data.delijn.be/stops/501777"], ["https://data.delijn.be/stops/208480", "https://data.delijn.be/stops/209479"], ["https://data.delijn.be/stops/102516", "https://data.delijn.be/stops/406465"], ["https://data.delijn.be/stops/101475", "https://data.delijn.be/stops/101961"], ["https://data.delijn.be/stops/200353", "https://data.delijn.be/stops/201016"], ["https://data.delijn.be/stops/204380", "https://data.delijn.be/stops/205380"], ["https://data.delijn.be/stops/403109", "https://data.delijn.be/stops/403234"], ["https://data.delijn.be/stops/103070", "https://data.delijn.be/stops/104225"], ["https://data.delijn.be/stops/301717", "https://data.delijn.be/stops/301754"], ["https://data.delijn.be/stops/400407", "https://data.delijn.be/stops/408487"], ["https://data.delijn.be/stops/501238", "https://data.delijn.be/stops/506203"], ["https://data.delijn.be/stops/106669", "https://data.delijn.be/stops/109391"], ["https://data.delijn.be/stops/407772", "https://data.delijn.be/stops/408839"], ["https://data.delijn.be/stops/400702", "https://data.delijn.be/stops/400703"], ["https://data.delijn.be/stops/403928", "https://data.delijn.be/stops/403983"], ["https://data.delijn.be/stops/301632", "https://data.delijn.be/stops/303936"], ["https://data.delijn.be/stops/304340", "https://data.delijn.be/stops/304707"], ["https://data.delijn.be/stops/406712", "https://data.delijn.be/stops/408652"], ["https://data.delijn.be/stops/201305", "https://data.delijn.be/stops/203761"], ["https://data.delijn.be/stops/503279", "https://data.delijn.be/stops/508279"], ["https://data.delijn.be/stops/206705", "https://data.delijn.be/stops/301446"], ["https://data.delijn.be/stops/101372", "https://data.delijn.be/stops/101403"], ["https://data.delijn.be/stops/306385", "https://data.delijn.be/stops/307153"], ["https://data.delijn.be/stops/501105", "https://data.delijn.be/stops/501224"], ["https://data.delijn.be/stops/400852", "https://data.delijn.be/stops/409623"], ["https://data.delijn.be/stops/503032", "https://data.delijn.be/stops/507748"], ["https://data.delijn.be/stops/406957", "https://data.delijn.be/stops/406961"], ["https://data.delijn.be/stops/202837", "https://data.delijn.be/stops/203837"], ["https://data.delijn.be/stops/306367", "https://data.delijn.be/stops/306368"], ["https://data.delijn.be/stops/501436", "https://data.delijn.be/stops/506733"], ["https://data.delijn.be/stops/103725", "https://data.delijn.be/stops/105280"], ["https://data.delijn.be/stops/505331", "https://data.delijn.be/stops/505596"], ["https://data.delijn.be/stops/401774", "https://data.delijn.be/stops/406124"], ["https://data.delijn.be/stops/103737", "https://data.delijn.be/stops/108638"], ["https://data.delijn.be/stops/406774", "https://data.delijn.be/stops/406784"], ["https://data.delijn.be/stops/403314", "https://data.delijn.be/stops/409571"], ["https://data.delijn.be/stops/203767", "https://data.delijn.be/stops/203768"], ["https://data.delijn.be/stops/504212", "https://data.delijn.be/stops/504868"], ["https://data.delijn.be/stops/502136", "https://data.delijn.be/stops/502150"], ["https://data.delijn.be/stops/105747", "https://data.delijn.be/stops/109829"], ["https://data.delijn.be/stops/204769", "https://data.delijn.be/stops/205401"], ["https://data.delijn.be/stops/509770", "https://data.delijn.be/stops/510015"], ["https://data.delijn.be/stops/404653", "https://data.delijn.be/stops/404675"], ["https://data.delijn.be/stops/501298", "https://data.delijn.be/stops/501299"], ["https://data.delijn.be/stops/204445", "https://data.delijn.be/stops/205657"], ["https://data.delijn.be/stops/402751", "https://data.delijn.be/stops/408038"], ["https://data.delijn.be/stops/201680", "https://data.delijn.be/stops/201837"], ["https://data.delijn.be/stops/402208", "https://data.delijn.be/stops/402209"], ["https://data.delijn.be/stops/301159", "https://data.delijn.be/stops/301160"], ["https://data.delijn.be/stops/200151", "https://data.delijn.be/stops/201174"], ["https://data.delijn.be/stops/305092", "https://data.delijn.be/stops/305095"], ["https://data.delijn.be/stops/105621", "https://data.delijn.be/stops/105652"], ["https://data.delijn.be/stops/208060", "https://data.delijn.be/stops/209060"], ["https://data.delijn.be/stops/304166", "https://data.delijn.be/stops/307537"], ["https://data.delijn.be/stops/200781", "https://data.delijn.be/stops/201067"], ["https://data.delijn.be/stops/201918", "https://data.delijn.be/stops/206566"], ["https://data.delijn.be/stops/308499", "https://data.delijn.be/stops/308538"], ["https://data.delijn.be/stops/301230", "https://data.delijn.be/stops/307197"], ["https://data.delijn.be/stops/206918", "https://data.delijn.be/stops/207918"], ["https://data.delijn.be/stops/408298", "https://data.delijn.be/stops/408370"], ["https://data.delijn.be/stops/101397", "https://data.delijn.be/stops/107303"], ["https://data.delijn.be/stops/201491", "https://data.delijn.be/stops/203452"], ["https://data.delijn.be/stops/504576", "https://data.delijn.be/stops/505300"], ["https://data.delijn.be/stops/400455", "https://data.delijn.be/stops/400459"], ["https://data.delijn.be/stops/206777", "https://data.delijn.be/stops/208477"], ["https://data.delijn.be/stops/405160", "https://data.delijn.be/stops/405261"], ["https://data.delijn.be/stops/501635", "https://data.delijn.be/stops/506774"], ["https://data.delijn.be/stops/107456", "https://data.delijn.be/stops/107457"], ["https://data.delijn.be/stops/406166", "https://data.delijn.be/stops/406176"], ["https://data.delijn.be/stops/301356", "https://data.delijn.be/stops/307195"], ["https://data.delijn.be/stops/307305", "https://data.delijn.be/stops/307315"], ["https://data.delijn.be/stops/507745", "https://data.delijn.be/stops/590412"], ["https://data.delijn.be/stops/201557", "https://data.delijn.be/stops/502685"], ["https://data.delijn.be/stops/204334", "https://data.delijn.be/stops/204483"], ["https://data.delijn.be/stops/403786", "https://data.delijn.be/stops/403789"], ["https://data.delijn.be/stops/201881", "https://data.delijn.be/stops/203272"], ["https://data.delijn.be/stops/502392", "https://data.delijn.be/stops/502399"], ["https://data.delijn.be/stops/206028", "https://data.delijn.be/stops/206075"], ["https://data.delijn.be/stops/501219", "https://data.delijn.be/stops/506223"], ["https://data.delijn.be/stops/101363", "https://data.delijn.be/stops/102187"], ["https://data.delijn.be/stops/202164", "https://data.delijn.be/stops/203163"], ["https://data.delijn.be/stops/503469", "https://data.delijn.be/stops/508374"], ["https://data.delijn.be/stops/501680", "https://data.delijn.be/stops/504514"], ["https://data.delijn.be/stops/105279", "https://data.delijn.be/stops/109969"], ["https://data.delijn.be/stops/305498", "https://data.delijn.be/stops/308912"], ["https://data.delijn.be/stops/400772", "https://data.delijn.be/stops/409636"], ["https://data.delijn.be/stops/405114", "https://data.delijn.be/stops/405893"], ["https://data.delijn.be/stops/507450", "https://data.delijn.be/stops/507454"], ["https://data.delijn.be/stops/101391", "https://data.delijn.be/stops/102391"], ["https://data.delijn.be/stops/202422", "https://data.delijn.be/stops/202423"], ["https://data.delijn.be/stops/402888", "https://data.delijn.be/stops/402896"], ["https://data.delijn.be/stops/105561", "https://data.delijn.be/stops/105563"], ["https://data.delijn.be/stops/402853", "https://data.delijn.be/stops/301273"], ["https://data.delijn.be/stops/503441", "https://data.delijn.be/stops/508408"], ["https://data.delijn.be/stops/307440", "https://data.delijn.be/stops/307825"], ["https://data.delijn.be/stops/400768", "https://data.delijn.be/stops/405267"], ["https://data.delijn.be/stops/101462", "https://data.delijn.be/stops/109283"], ["https://data.delijn.be/stops/206155", "https://data.delijn.be/stops/206915"], ["https://data.delijn.be/stops/109054", "https://data.delijn.be/stops/109064"], ["https://data.delijn.be/stops/308194", "https://data.delijn.be/stops/308204"], ["https://data.delijn.be/stops/401059", "https://data.delijn.be/stops/406712"], ["https://data.delijn.be/stops/400062", "https://data.delijn.be/stops/400108"], ["https://data.delijn.be/stops/302114", "https://data.delijn.be/stops/302153"], ["https://data.delijn.be/stops/401287", "https://data.delijn.be/stops/401328"], ["https://data.delijn.be/stops/303316", "https://data.delijn.be/stops/307117"], ["https://data.delijn.be/stops/407583", "https://data.delijn.be/stops/407585"], ["https://data.delijn.be/stops/106764", "https://data.delijn.be/stops/107514"], ["https://data.delijn.be/stops/202373", "https://data.delijn.be/stops/203374"], ["https://data.delijn.be/stops/105124", "https://data.delijn.be/stops/105196"], ["https://data.delijn.be/stops/407944", "https://data.delijn.be/stops/408121"], ["https://data.delijn.be/stops/504159", "https://data.delijn.be/stops/509150"], ["https://data.delijn.be/stops/200388", "https://data.delijn.be/stops/209496"], ["https://data.delijn.be/stops/208466", "https://data.delijn.be/stops/209466"], ["https://data.delijn.be/stops/502769", "https://data.delijn.be/stops/507300"], ["https://data.delijn.be/stops/303273", "https://data.delijn.be/stops/303274"], ["https://data.delijn.be/stops/502536", "https://data.delijn.be/stops/507535"], ["https://data.delijn.be/stops/207186", "https://data.delijn.be/stops/207955"], ["https://data.delijn.be/stops/206556", "https://data.delijn.be/stops/206583"], ["https://data.delijn.be/stops/408830", "https://data.delijn.be/stops/408831"], ["https://data.delijn.be/stops/206866", "https://data.delijn.be/stops/208382"], ["https://data.delijn.be/stops/206251", "https://data.delijn.be/stops/206585"], ["https://data.delijn.be/stops/503413", "https://data.delijn.be/stops/503438"], ["https://data.delijn.be/stops/208015", "https://data.delijn.be/stops/209095"], ["https://data.delijn.be/stops/403093", "https://data.delijn.be/stops/403121"], ["https://data.delijn.be/stops/308240", "https://data.delijn.be/stops/308242"], ["https://data.delijn.be/stops/104931", "https://data.delijn.be/stops/104932"], ["https://data.delijn.be/stops/200351", "https://data.delijn.be/stops/200352"], ["https://data.delijn.be/stops/401783", "https://data.delijn.be/stops/406352"], ["https://data.delijn.be/stops/209012", "https://data.delijn.be/stops/209018"], ["https://data.delijn.be/stops/109284", "https://data.delijn.be/stops/109285"], ["https://data.delijn.be/stops/306788", "https://data.delijn.be/stops/306790"], ["https://data.delijn.be/stops/501064", "https://data.delijn.be/stops/501140"], ["https://data.delijn.be/stops/103605", "https://data.delijn.be/stops/109423"], ["https://data.delijn.be/stops/406973", "https://data.delijn.be/stops/407882"], ["https://data.delijn.be/stops/502425", "https://data.delijn.be/stops/502436"], ["https://data.delijn.be/stops/303965", "https://data.delijn.be/stops/303968"], ["https://data.delijn.be/stops/403030", "https://data.delijn.be/stops/403072"], ["https://data.delijn.be/stops/503077", "https://data.delijn.be/stops/505264"], ["https://data.delijn.be/stops/504409", "https://data.delijn.be/stops/509409"], ["https://data.delijn.be/stops/304540", "https://data.delijn.be/stops/307576"], ["https://data.delijn.be/stops/206878", "https://data.delijn.be/stops/206962"], ["https://data.delijn.be/stops/206430", "https://data.delijn.be/stops/206431"], ["https://data.delijn.be/stops/505669", "https://data.delijn.be/stops/507181"], ["https://data.delijn.be/stops/200105", "https://data.delijn.be/stops/201104"], ["https://data.delijn.be/stops/200350", "https://data.delijn.be/stops/201387"], ["https://data.delijn.be/stops/301531", "https://data.delijn.be/stops/304972"], ["https://data.delijn.be/stops/400932", "https://data.delijn.be/stops/408483"], ["https://data.delijn.be/stops/204210", "https://data.delijn.be/stops/206311"], ["https://data.delijn.be/stops/400892", "https://data.delijn.be/stops/409609"], ["https://data.delijn.be/stops/202029", "https://data.delijn.be/stops/202034"], ["https://data.delijn.be/stops/302749", "https://data.delijn.be/stops/307471"], ["https://data.delijn.be/stops/501032", "https://data.delijn.be/stops/501588"], ["https://data.delijn.be/stops/202821", "https://data.delijn.be/stops/203820"], ["https://data.delijn.be/stops/401755", "https://data.delijn.be/stops/401771"], ["https://data.delijn.be/stops/407250", "https://data.delijn.be/stops/407379"], ["https://data.delijn.be/stops/208212", "https://data.delijn.be/stops/209201"], ["https://data.delijn.be/stops/104005", "https://data.delijn.be/stops/104006"], ["https://data.delijn.be/stops/406358", "https://data.delijn.be/stops/406365"], ["https://data.delijn.be/stops/201337", "https://data.delijn.be/stops/211112"], ["https://data.delijn.be/stops/201516", "https://data.delijn.be/stops/201619"], ["https://data.delijn.be/stops/102053", "https://data.delijn.be/stops/107500"], ["https://data.delijn.be/stops/200415", "https://data.delijn.be/stops/201506"], ["https://data.delijn.be/stops/102071", "https://data.delijn.be/stops/102072"], ["https://data.delijn.be/stops/408514", "https://data.delijn.be/stops/408761"], ["https://data.delijn.be/stops/401521", "https://data.delijn.be/stops/401554"], ["https://data.delijn.be/stops/200842", "https://data.delijn.be/stops/202306"], ["https://data.delijn.be/stops/505980", "https://data.delijn.be/stops/509942"], ["https://data.delijn.be/stops/501267", "https://data.delijn.be/stops/506315"], ["https://data.delijn.be/stops/103992", "https://data.delijn.be/stops/103993"], ["https://data.delijn.be/stops/106603", "https://data.delijn.be/stops/106900"], ["https://data.delijn.be/stops/102179", "https://data.delijn.be/stops/102987"], ["https://data.delijn.be/stops/304459", "https://data.delijn.be/stops/307042"], ["https://data.delijn.be/stops/204595", "https://data.delijn.be/stops/204797"], ["https://data.delijn.be/stops/503657", "https://data.delijn.be/stops/505534"], ["https://data.delijn.be/stops/102113", "https://data.delijn.be/stops/102846"], ["https://data.delijn.be/stops/201707", "https://data.delijn.be/stops/203444"], ["https://data.delijn.be/stops/505034", "https://data.delijn.be/stops/506470"], ["https://data.delijn.be/stops/401491", "https://data.delijn.be/stops/401749"], ["https://data.delijn.be/stops/304377", "https://data.delijn.be/stops/307398"], ["https://data.delijn.be/stops/502647", "https://data.delijn.be/stops/507202"], ["https://data.delijn.be/stops/200926", "https://data.delijn.be/stops/200939"], ["https://data.delijn.be/stops/504058", "https://data.delijn.be/stops/504059"], ["https://data.delijn.be/stops/400883", "https://data.delijn.be/stops/409343"], ["https://data.delijn.be/stops/206880", "https://data.delijn.be/stops/206881"], ["https://data.delijn.be/stops/501770", "https://data.delijn.be/stops/507372"], ["https://data.delijn.be/stops/402330", "https://data.delijn.be/stops/402335"], ["https://data.delijn.be/stops/201936", "https://data.delijn.be/stops/207406"], ["https://data.delijn.be/stops/301502", "https://data.delijn.be/stops/301523"], ["https://data.delijn.be/stops/208457", "https://data.delijn.be/stops/209457"], ["https://data.delijn.be/stops/300366", "https://data.delijn.be/stops/307722"], ["https://data.delijn.be/stops/406733", "https://data.delijn.be/stops/408530"], ["https://data.delijn.be/stops/102409", "https://data.delijn.be/stops/109034"], ["https://data.delijn.be/stops/102059", "https://data.delijn.be/stops/106926"], ["https://data.delijn.be/stops/504748", "https://data.delijn.be/stops/509484"], ["https://data.delijn.be/stops/303104", "https://data.delijn.be/stops/308719"], ["https://data.delijn.be/stops/409559", "https://data.delijn.be/stops/409562"], ["https://data.delijn.be/stops/506366", "https://data.delijn.be/stops/507745"], ["https://data.delijn.be/stops/102050", "https://data.delijn.be/stops/102785"], ["https://data.delijn.be/stops/400741", "https://data.delijn.be/stops/400742"], ["https://data.delijn.be/stops/400356", "https://data.delijn.be/stops/400397"], ["https://data.delijn.be/stops/305959", "https://data.delijn.be/stops/305962"], ["https://data.delijn.be/stops/302131", "https://data.delijn.be/stops/304869"], ["https://data.delijn.be/stops/405807", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/301296", "https://data.delijn.be/stops/307254"], ["https://data.delijn.be/stops/304691", "https://data.delijn.be/stops/304692"], ["https://data.delijn.be/stops/501412", "https://data.delijn.be/stops/501681"], ["https://data.delijn.be/stops/206343", "https://data.delijn.be/stops/206344"], ["https://data.delijn.be/stops/308134", "https://data.delijn.be/stops/308290"], ["https://data.delijn.be/stops/301450", "https://data.delijn.be/stops/301451"], ["https://data.delijn.be/stops/501212", "https://data.delijn.be/stops/501223"], ["https://data.delijn.be/stops/302509", "https://data.delijn.be/stops/302519"], ["https://data.delijn.be/stops/103647", "https://data.delijn.be/stops/107174"], ["https://data.delijn.be/stops/508235", "https://data.delijn.be/stops/508252"], ["https://data.delijn.be/stops/308493", "https://data.delijn.be/stops/308501"], ["https://data.delijn.be/stops/306707", "https://data.delijn.be/stops/306709"], ["https://data.delijn.be/stops/503037", "https://data.delijn.be/stops/508037"], ["https://data.delijn.be/stops/200341", "https://data.delijn.be/stops/201283"], ["https://data.delijn.be/stops/409665", "https://data.delijn.be/stops/409748"], ["https://data.delijn.be/stops/404734", "https://data.delijn.be/stops/404741"], ["https://data.delijn.be/stops/203003", "https://data.delijn.be/stops/203021"], ["https://data.delijn.be/stops/107173", "https://data.delijn.be/stops/107174"], ["https://data.delijn.be/stops/303192", "https://data.delijn.be/stops/305449"], ["https://data.delijn.be/stops/202639", "https://data.delijn.be/stops/203108"], ["https://data.delijn.be/stops/200430", "https://data.delijn.be/stops/201428"], ["https://data.delijn.be/stops/302834", "https://data.delijn.be/stops/306773"], ["https://data.delijn.be/stops/305887", "https://data.delijn.be/stops/305888"], ["https://data.delijn.be/stops/400583", "https://data.delijn.be/stops/400618"], ["https://data.delijn.be/stops/501253", "https://data.delijn.be/stops/501738"], ["https://data.delijn.be/stops/106093", "https://data.delijn.be/stops/106094"], ["https://data.delijn.be/stops/406597", "https://data.delijn.be/stops/407410"], ["https://data.delijn.be/stops/303461", "https://data.delijn.be/stops/308068"], ["https://data.delijn.be/stops/501323", "https://data.delijn.be/stops/506347"], ["https://data.delijn.be/stops/208719", "https://data.delijn.be/stops/209719"], ["https://data.delijn.be/stops/102809", "https://data.delijn.be/stops/106482"], ["https://data.delijn.be/stops/302389", "https://data.delijn.be/stops/306194"], ["https://data.delijn.be/stops/404634", "https://data.delijn.be/stops/406959"], ["https://data.delijn.be/stops/405458", "https://data.delijn.be/stops/405462"], ["https://data.delijn.be/stops/208258", "https://data.delijn.be/stops/209258"], ["https://data.delijn.be/stops/105676", "https://data.delijn.be/stops/105678"], ["https://data.delijn.be/stops/404852", "https://data.delijn.be/stops/404878"], ["https://data.delijn.be/stops/206104", "https://data.delijn.be/stops/207123"], ["https://data.delijn.be/stops/202319", "https://data.delijn.be/stops/202320"], ["https://data.delijn.be/stops/400590", "https://data.delijn.be/stops/400591"], ["https://data.delijn.be/stops/405004", "https://data.delijn.be/stops/408342"], ["https://data.delijn.be/stops/505088", "https://data.delijn.be/stops/507236"], ["https://data.delijn.be/stops/504864", "https://data.delijn.be/stops/505633"], ["https://data.delijn.be/stops/305350", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/508243", "https://data.delijn.be/stops/509763"], ["https://data.delijn.be/stops/106819", "https://data.delijn.be/stops/106820"], ["https://data.delijn.be/stops/509631", "https://data.delijn.be/stops/509885"], ["https://data.delijn.be/stops/501328", "https://data.delijn.be/stops/506317"], ["https://data.delijn.be/stops/208466", "https://data.delijn.be/stops/209683"], ["https://data.delijn.be/stops/102662", "https://data.delijn.be/stops/108739"], ["https://data.delijn.be/stops/503570", "https://data.delijn.be/stops/508539"], ["https://data.delijn.be/stops/202020", "https://data.delijn.be/stops/210854"], ["https://data.delijn.be/stops/408973", "https://data.delijn.be/stops/408982"], ["https://data.delijn.be/stops/302316", "https://data.delijn.be/stops/304082"], ["https://data.delijn.be/stops/301216", "https://data.delijn.be/stops/301217"], ["https://data.delijn.be/stops/504594", "https://data.delijn.be/stops/505791"], ["https://data.delijn.be/stops/403197", "https://data.delijn.be/stops/403494"], ["https://data.delijn.be/stops/408316", "https://data.delijn.be/stops/408317"], ["https://data.delijn.be/stops/200081", "https://data.delijn.be/stops/209958"], ["https://data.delijn.be/stops/208671", "https://data.delijn.be/stops/209439"], ["https://data.delijn.be/stops/202371", "https://data.delijn.be/stops/202587"], ["https://data.delijn.be/stops/302763", "https://data.delijn.be/stops/302785"], ["https://data.delijn.be/stops/207022", "https://data.delijn.be/stops/207028"], ["https://data.delijn.be/stops/404911", "https://data.delijn.be/stops/404966"], ["https://data.delijn.be/stops/409278", "https://data.delijn.be/stops/409312"], ["https://data.delijn.be/stops/209304", "https://data.delijn.be/stops/209305"], ["https://data.delijn.be/stops/103326", "https://data.delijn.be/stops/103327"], ["https://data.delijn.be/stops/400577", "https://data.delijn.be/stops/404138"], ["https://data.delijn.be/stops/404350", "https://data.delijn.be/stops/404351"], ["https://data.delijn.be/stops/207829", "https://data.delijn.be/stops/207929"], ["https://data.delijn.be/stops/201776", "https://data.delijn.be/stops/205974"], ["https://data.delijn.be/stops/204351", "https://data.delijn.be/stops/205351"], ["https://data.delijn.be/stops/103090", "https://data.delijn.be/stops/105870"], ["https://data.delijn.be/stops/200580", "https://data.delijn.be/stops/201733"], ["https://data.delijn.be/stops/300759", "https://data.delijn.be/stops/301006"], ["https://data.delijn.be/stops/408267", "https://data.delijn.be/stops/408404"], ["https://data.delijn.be/stops/306871", "https://data.delijn.be/stops/306872"], ["https://data.delijn.be/stops/106330", "https://data.delijn.be/stops/109390"], ["https://data.delijn.be/stops/408504", "https://data.delijn.be/stops/408527"], ["https://data.delijn.be/stops/209584", "https://data.delijn.be/stops/209697"], ["https://data.delijn.be/stops/502178", "https://data.delijn.be/stops/505558"], ["https://data.delijn.be/stops/102310", "https://data.delijn.be/stops/109131"], ["https://data.delijn.be/stops/405875", "https://data.delijn.be/stops/409429"], ["https://data.delijn.be/stops/406598", "https://data.delijn.be/stops/406613"], ["https://data.delijn.be/stops/107228", "https://data.delijn.be/stops/109889"], ["https://data.delijn.be/stops/200400", "https://data.delijn.be/stops/200500"], ["https://data.delijn.be/stops/301539", "https://data.delijn.be/stops/301543"], ["https://data.delijn.be/stops/406411", "https://data.delijn.be/stops/406725"], ["https://data.delijn.be/stops/401845", "https://data.delijn.be/stops/406349"], ["https://data.delijn.be/stops/306695", "https://data.delijn.be/stops/308788"], ["https://data.delijn.be/stops/307857", "https://data.delijn.be/stops/307858"], ["https://data.delijn.be/stops/501659", "https://data.delijn.be/stops/506659"], ["https://data.delijn.be/stops/102515", "https://data.delijn.be/stops/105490"], ["https://data.delijn.be/stops/200873", "https://data.delijn.be/stops/202308"], ["https://data.delijn.be/stops/502497", "https://data.delijn.be/stops/505626"], ["https://data.delijn.be/stops/503395", "https://data.delijn.be/stops/509785"], ["https://data.delijn.be/stops/308160", "https://data.delijn.be/stops/308181"], ["https://data.delijn.be/stops/202548", "https://data.delijn.be/stops/203548"], ["https://data.delijn.be/stops/107603", "https://data.delijn.be/stops/107605"], ["https://data.delijn.be/stops/103054", "https://data.delijn.be/stops/107179"], ["https://data.delijn.be/stops/402577", "https://data.delijn.be/stops/402583"], ["https://data.delijn.be/stops/407683", "https://data.delijn.be/stops/409878"], ["https://data.delijn.be/stops/401125", "https://data.delijn.be/stops/401140"], ["https://data.delijn.be/stops/207344", "https://data.delijn.be/stops/207688"], ["https://data.delijn.be/stops/406280", "https://data.delijn.be/stops/406281"], ["https://data.delijn.be/stops/301129", "https://data.delijn.be/stops/302875"], ["https://data.delijn.be/stops/206423", "https://data.delijn.be/stops/207685"], ["https://data.delijn.be/stops/303838", "https://data.delijn.be/stops/303849"], ["https://data.delijn.be/stops/109114", "https://data.delijn.be/stops/109117"], ["https://data.delijn.be/stops/206436", "https://data.delijn.be/stops/207437"], ["https://data.delijn.be/stops/207763", "https://data.delijn.be/stops/207786"], ["https://data.delijn.be/stops/204129", "https://data.delijn.be/stops/205129"], ["https://data.delijn.be/stops/200871", "https://data.delijn.be/stops/201117"], ["https://data.delijn.be/stops/300741", "https://data.delijn.be/stops/300776"], ["https://data.delijn.be/stops/507942", "https://data.delijn.be/stops/507958"], ["https://data.delijn.be/stops/403082", "https://data.delijn.be/stops/410034"], ["https://data.delijn.be/stops/405843", "https://data.delijn.be/stops/409757"], ["https://data.delijn.be/stops/506440", "https://data.delijn.be/stops/506482"], ["https://data.delijn.be/stops/208470", "https://data.delijn.be/stops/209471"], ["https://data.delijn.be/stops/508758", "https://data.delijn.be/stops/508958"], ["https://data.delijn.be/stops/502384", "https://data.delijn.be/stops/507384"], ["https://data.delijn.be/stops/201879", "https://data.delijn.be/stops/211034"], ["https://data.delijn.be/stops/101533", "https://data.delijn.be/stops/108785"], ["https://data.delijn.be/stops/106161", "https://data.delijn.be/stops/106167"], ["https://data.delijn.be/stops/209603", "https://data.delijn.be/stops/307603"], ["https://data.delijn.be/stops/504605", "https://data.delijn.be/stops/509605"], ["https://data.delijn.be/stops/109343", "https://data.delijn.be/stops/109346"], ["https://data.delijn.be/stops/302314", "https://data.delijn.be/stops/302352"], ["https://data.delijn.be/stops/306132", "https://data.delijn.be/stops/306135"], ["https://data.delijn.be/stops/300304", "https://data.delijn.be/stops/301768"], ["https://data.delijn.be/stops/404766", "https://data.delijn.be/stops/404788"], ["https://data.delijn.be/stops/104479", "https://data.delijn.be/stops/104483"], ["https://data.delijn.be/stops/407363", "https://data.delijn.be/stops/407388"], ["https://data.delijn.be/stops/303469", "https://data.delijn.be/stops/303509"], ["https://data.delijn.be/stops/503569", "https://data.delijn.be/stops/508564"], ["https://data.delijn.be/stops/206649", "https://data.delijn.be/stops/206757"], ["https://data.delijn.be/stops/103064", "https://data.delijn.be/stops/205280"], ["https://data.delijn.be/stops/106201", "https://data.delijn.be/stops/109755"], ["https://data.delijn.be/stops/405473", "https://data.delijn.be/stops/406691"], ["https://data.delijn.be/stops/501456", "https://data.delijn.be/stops/501547"], ["https://data.delijn.be/stops/308853", "https://data.delijn.be/stops/308854"], ["https://data.delijn.be/stops/207576", "https://data.delijn.be/stops/207577"], ["https://data.delijn.be/stops/305309", "https://data.delijn.be/stops/306091"], ["https://data.delijn.be/stops/207505", "https://data.delijn.be/stops/207673"], ["https://data.delijn.be/stops/305210", "https://data.delijn.be/stops/306933"], ["https://data.delijn.be/stops/300288", "https://data.delijn.be/stops/306045"], ["https://data.delijn.be/stops/504982", "https://data.delijn.be/stops/508901"], ["https://data.delijn.be/stops/206432", "https://data.delijn.be/stops/207432"], ["https://data.delijn.be/stops/406307", "https://data.delijn.be/stops/406309"], ["https://data.delijn.be/stops/209088", "https://data.delijn.be/stops/209154"], ["https://data.delijn.be/stops/302962", "https://data.delijn.be/stops/306300"], ["https://data.delijn.be/stops/501027", "https://data.delijn.be/stops/506027"], ["https://data.delijn.be/stops/101255", "https://data.delijn.be/stops/103935"], ["https://data.delijn.be/stops/405524", "https://data.delijn.be/stops/407275"], ["https://data.delijn.be/stops/503195", "https://data.delijn.be/stops/508195"], ["https://data.delijn.be/stops/301430", "https://data.delijn.be/stops/301435"], ["https://data.delijn.be/stops/107322", "https://data.delijn.be/stops/107323"], ["https://data.delijn.be/stops/200053", "https://data.delijn.be/stops/200054"], ["https://data.delijn.be/stops/300578", "https://data.delijn.be/stops/307077"], ["https://data.delijn.be/stops/506734", "https://data.delijn.be/stops/510001"], ["https://data.delijn.be/stops/504773", "https://data.delijn.be/stops/508568"], ["https://data.delijn.be/stops/402219", "https://data.delijn.be/stops/405548"], ["https://data.delijn.be/stops/508456", "https://data.delijn.be/stops/508468"], ["https://data.delijn.be/stops/107612", "https://data.delijn.be/stops/109995"], ["https://data.delijn.be/stops/301365", "https://data.delijn.be/stops/306134"], ["https://data.delijn.be/stops/305066", "https://data.delijn.be/stops/305076"], ["https://data.delijn.be/stops/302746", "https://data.delijn.be/stops/302747"], ["https://data.delijn.be/stops/402386", "https://data.delijn.be/stops/402387"], ["https://data.delijn.be/stops/306163", "https://data.delijn.be/stops/306164"], ["https://data.delijn.be/stops/108517", "https://data.delijn.be/stops/108518"], ["https://data.delijn.be/stops/403618", "https://data.delijn.be/stops/403631"], ["https://data.delijn.be/stops/105786", "https://data.delijn.be/stops/105788"], ["https://data.delijn.be/stops/102869", "https://data.delijn.be/stops/103575"], ["https://data.delijn.be/stops/300932", "https://data.delijn.be/stops/300934"], ["https://data.delijn.be/stops/206115", "https://data.delijn.be/stops/207115"], ["https://data.delijn.be/stops/503791", "https://data.delijn.be/stops/508794"], ["https://data.delijn.be/stops/208112", "https://data.delijn.be/stops/209110"], ["https://data.delijn.be/stops/504027", "https://data.delijn.be/stops/509027"], ["https://data.delijn.be/stops/408713", "https://data.delijn.be/stops/408723"], ["https://data.delijn.be/stops/301681", "https://data.delijn.be/stops/302388"], ["https://data.delijn.be/stops/302939", "https://data.delijn.be/stops/307435"], ["https://data.delijn.be/stops/105744", "https://data.delijn.be/stops/109835"], ["https://data.delijn.be/stops/403129", "https://data.delijn.be/stops/403135"], ["https://data.delijn.be/stops/406273", "https://data.delijn.be/stops/406275"], ["https://data.delijn.be/stops/403015", "https://data.delijn.be/stops/403410"], ["https://data.delijn.be/stops/101361", "https://data.delijn.be/stops/105354"], ["https://data.delijn.be/stops/302380", "https://data.delijn.be/stops/307841"], ["https://data.delijn.be/stops/201939", "https://data.delijn.be/stops/203945"], ["https://data.delijn.be/stops/108380", "https://data.delijn.be/stops/108967"], ["https://data.delijn.be/stops/400375", "https://data.delijn.be/stops/406768"], ["https://data.delijn.be/stops/106291", "https://data.delijn.be/stops/106292"], ["https://data.delijn.be/stops/301046", "https://data.delijn.be/stops/301062"], ["https://data.delijn.be/stops/202890", "https://data.delijn.be/stops/203820"], ["https://data.delijn.be/stops/505117", "https://data.delijn.be/stops/505365"], ["https://data.delijn.be/stops/505721", "https://data.delijn.be/stops/506093"], ["https://data.delijn.be/stops/307243", "https://data.delijn.be/stops/307246"], ["https://data.delijn.be/stops/504379", "https://data.delijn.be/stops/508859"], ["https://data.delijn.be/stops/501547", "https://data.delijn.be/stops/506460"], ["https://data.delijn.be/stops/505269", "https://data.delijn.be/stops/508219"], ["https://data.delijn.be/stops/406084", "https://data.delijn.be/stops/406824"], ["https://data.delijn.be/stops/304259", "https://data.delijn.be/stops/306663"], ["https://data.delijn.be/stops/300541", "https://data.delijn.be/stops/306167"], ["https://data.delijn.be/stops/404548", "https://data.delijn.be/stops/404553"], ["https://data.delijn.be/stops/302951", "https://data.delijn.be/stops/302977"], ["https://data.delijn.be/stops/108929", "https://data.delijn.be/stops/108932"], ["https://data.delijn.be/stops/503539", "https://data.delijn.be/stops/508539"], ["https://data.delijn.be/stops/507722", "https://data.delijn.be/stops/507735"], ["https://data.delijn.be/stops/403273", "https://data.delijn.be/stops/410294"], ["https://data.delijn.be/stops/205437", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/200486", "https://data.delijn.be/stops/201470"], ["https://data.delijn.be/stops/406312", "https://data.delijn.be/stops/406313"], ["https://data.delijn.be/stops/503310", "https://data.delijn.be/stops/505949"], ["https://data.delijn.be/stops/200224", "https://data.delijn.be/stops/201444"], ["https://data.delijn.be/stops/405832", "https://data.delijn.be/stops/405833"], ["https://data.delijn.be/stops/102073", "https://data.delijn.be/stops/106989"], ["https://data.delijn.be/stops/400788", "https://data.delijn.be/stops/400799"], ["https://data.delijn.be/stops/505015", "https://data.delijn.be/stops/507356"], ["https://data.delijn.be/stops/105319", "https://data.delijn.be/stops/105328"], ["https://data.delijn.be/stops/204367", "https://data.delijn.be/stops/205367"], ["https://data.delijn.be/stops/400333", "https://data.delijn.be/stops/400334"], ["https://data.delijn.be/stops/409160", "https://data.delijn.be/stops/409163"], ["https://data.delijn.be/stops/301714", "https://data.delijn.be/stops/308697"], ["https://data.delijn.be/stops/408743", "https://data.delijn.be/stops/408817"], ["https://data.delijn.be/stops/405846", "https://data.delijn.be/stops/405847"], ["https://data.delijn.be/stops/205991", "https://data.delijn.be/stops/208781"], ["https://data.delijn.be/stops/402201", "https://data.delijn.be/stops/402329"], ["https://data.delijn.be/stops/402769", "https://data.delijn.be/stops/409550"], ["https://data.delijn.be/stops/305779", "https://data.delijn.be/stops/305800"], ["https://data.delijn.be/stops/502322", "https://data.delijn.be/stops/507322"], ["https://data.delijn.be/stops/403384", "https://data.delijn.be/stops/404979"], ["https://data.delijn.be/stops/502351", "https://data.delijn.be/stops/507919"], ["https://data.delijn.be/stops/304174", "https://data.delijn.be/stops/306152"], ["https://data.delijn.be/stops/204057", "https://data.delijn.be/stops/204058"], ["https://data.delijn.be/stops/406948", "https://data.delijn.be/stops/407398"], ["https://data.delijn.be/stops/104759", "https://data.delijn.be/stops/108896"], ["https://data.delijn.be/stops/102751", "https://data.delijn.be/stops/104875"], ["https://data.delijn.be/stops/503252", "https://data.delijn.be/stops/503261"], ["https://data.delijn.be/stops/505523", "https://data.delijn.be/stops/505617"], ["https://data.delijn.be/stops/204519", "https://data.delijn.be/stops/205519"], ["https://data.delijn.be/stops/206864", "https://data.delijn.be/stops/207234"], ["https://data.delijn.be/stops/407496", "https://data.delijn.be/stops/407503"], ["https://data.delijn.be/stops/109894", "https://data.delijn.be/stops/109923"], ["https://data.delijn.be/stops/303386", "https://data.delijn.be/stops/308893"], ["https://data.delijn.be/stops/302961", "https://data.delijn.be/stops/306296"], ["https://data.delijn.be/stops/405973", "https://data.delijn.be/stops/405982"], ["https://data.delijn.be/stops/407381", "https://data.delijn.be/stops/407799"], ["https://data.delijn.be/stops/203533", "https://data.delijn.be/stops/205173"], ["https://data.delijn.be/stops/204080", "https://data.delijn.be/stops/205080"], ["https://data.delijn.be/stops/503054", "https://data.delijn.be/stops/503056"], ["https://data.delijn.be/stops/101796", "https://data.delijn.be/stops/104011"], ["https://data.delijn.be/stops/207764", "https://data.delijn.be/stops/208407"], ["https://data.delijn.be/stops/304884", "https://data.delijn.be/stops/304885"], ["https://data.delijn.be/stops/107064", "https://data.delijn.be/stops/109665"], ["https://data.delijn.be/stops/106483", "https://data.delijn.be/stops/109213"], ["https://data.delijn.be/stops/107050", "https://data.delijn.be/stops/107685"], ["https://data.delijn.be/stops/200974", "https://data.delijn.be/stops/206853"], ["https://data.delijn.be/stops/104646", "https://data.delijn.be/stops/107986"], ["https://data.delijn.be/stops/102284", "https://data.delijn.be/stops/106743"], ["https://data.delijn.be/stops/203725", "https://data.delijn.be/stops/203892"], ["https://data.delijn.be/stops/306837", "https://data.delijn.be/stops/306838"], ["https://data.delijn.be/stops/400703", "https://data.delijn.be/stops/400878"], ["https://data.delijn.be/stops/400142", "https://data.delijn.be/stops/400143"], ["https://data.delijn.be/stops/504358", "https://data.delijn.be/stops/508902"], ["https://data.delijn.be/stops/400733", "https://data.delijn.be/stops/400807"], ["https://data.delijn.be/stops/101942", "https://data.delijn.be/stops/109644"], ["https://data.delijn.be/stops/402749", "https://data.delijn.be/stops/405285"], ["https://data.delijn.be/stops/403243", "https://data.delijn.be/stops/408516"], ["https://data.delijn.be/stops/505517", "https://data.delijn.be/stops/505623"], ["https://data.delijn.be/stops/104276", "https://data.delijn.be/stops/104277"], ["https://data.delijn.be/stops/504648", "https://data.delijn.be/stops/509644"], ["https://data.delijn.be/stops/204636", "https://data.delijn.be/stops/205694"], ["https://data.delijn.be/stops/106206", "https://data.delijn.be/stops/106207"], ["https://data.delijn.be/stops/202387", "https://data.delijn.be/stops/202388"], ["https://data.delijn.be/stops/201282", "https://data.delijn.be/stops/208958"], ["https://data.delijn.be/stops/502233", "https://data.delijn.be/stops/505720"], ["https://data.delijn.be/stops/204295", "https://data.delijn.be/stops/205296"], ["https://data.delijn.be/stops/403659", "https://data.delijn.be/stops/409431"], ["https://data.delijn.be/stops/306367", "https://data.delijn.be/stops/307603"], ["https://data.delijn.be/stops/201010", "https://data.delijn.be/stops/201417"], ["https://data.delijn.be/stops/302023", "https://data.delijn.be/stops/306340"], ["https://data.delijn.be/stops/101990", "https://data.delijn.be/stops/105175"], ["https://data.delijn.be/stops/105473", "https://data.delijn.be/stops/105475"], ["https://data.delijn.be/stops/201693", "https://data.delijn.be/stops/202035"], ["https://data.delijn.be/stops/501555", "https://data.delijn.be/stops/506261"], ["https://data.delijn.be/stops/200066", "https://data.delijn.be/stops/200089"], ["https://data.delijn.be/stops/403742", "https://data.delijn.be/stops/403743"], ["https://data.delijn.be/stops/502801", "https://data.delijn.be/stops/504179"], ["https://data.delijn.be/stops/104477", "https://data.delijn.be/stops/104478"], ["https://data.delijn.be/stops/104667", "https://data.delijn.be/stops/204612"], ["https://data.delijn.be/stops/403784", "https://data.delijn.be/stops/403788"], ["https://data.delijn.be/stops/102649", "https://data.delijn.be/stops/107829"], ["https://data.delijn.be/stops/407754", "https://data.delijn.be/stops/409796"], ["https://data.delijn.be/stops/200239", "https://data.delijn.be/stops/201037"], ["https://data.delijn.be/stops/206817", "https://data.delijn.be/stops/207806"], ["https://data.delijn.be/stops/201880", "https://data.delijn.be/stops/210853"], ["https://data.delijn.be/stops/103696", "https://data.delijn.be/stops/103699"], ["https://data.delijn.be/stops/200556", "https://data.delijn.be/stops/502685"], ["https://data.delijn.be/stops/407172", "https://data.delijn.be/stops/407173"], ["https://data.delijn.be/stops/107634", "https://data.delijn.be/stops/107637"], ["https://data.delijn.be/stops/404346", "https://data.delijn.be/stops/404369"], ["https://data.delijn.be/stops/404336", "https://data.delijn.be/stops/404383"], ["https://data.delijn.be/stops/201069", "https://data.delijn.be/stops/205926"], ["https://data.delijn.be/stops/401245", "https://data.delijn.be/stops/401278"], ["https://data.delijn.be/stops/103490", "https://data.delijn.be/stops/103497"], ["https://data.delijn.be/stops/404184", "https://data.delijn.be/stops/407362"], ["https://data.delijn.be/stops/501077", "https://data.delijn.be/stops/501081"], ["https://data.delijn.be/stops/504376", "https://data.delijn.be/stops/505070"], ["https://data.delijn.be/stops/302953", "https://data.delijn.be/stops/306275"], ["https://data.delijn.be/stops/207946", "https://data.delijn.be/stops/208070"], ["https://data.delijn.be/stops/507111", "https://data.delijn.be/stops/507725"], ["https://data.delijn.be/stops/200139", "https://data.delijn.be/stops/201783"], ["https://data.delijn.be/stops/106602", "https://data.delijn.be/stops/107211"], ["https://data.delijn.be/stops/201916", "https://data.delijn.be/stops/202749"], ["https://data.delijn.be/stops/503659", "https://data.delijn.be/stops/508659"], ["https://data.delijn.be/stops/408313", "https://data.delijn.be/stops/408393"], ["https://data.delijn.be/stops/203785", "https://data.delijn.be/stops/208643"], ["https://data.delijn.be/stops/202931", "https://data.delijn.be/stops/203931"], ["https://data.delijn.be/stops/507354", "https://data.delijn.be/stops/507925"], ["https://data.delijn.be/stops/402592", "https://data.delijn.be/stops/404143"], ["https://data.delijn.be/stops/201862", "https://data.delijn.be/stops/203667"], ["https://data.delijn.be/stops/406317", "https://data.delijn.be/stops/406364"], ["https://data.delijn.be/stops/503382", "https://data.delijn.be/stops/509760"], ["https://data.delijn.be/stops/302668", "https://data.delijn.be/stops/302684"], ["https://data.delijn.be/stops/405607", "https://data.delijn.be/stops/405687"], ["https://data.delijn.be/stops/402429", "https://data.delijn.be/stops/409856"], ["https://data.delijn.be/stops/501228", "https://data.delijn.be/stops/506681"], ["https://data.delijn.be/stops/301014", "https://data.delijn.be/stops/301021"], ["https://data.delijn.be/stops/200148", "https://data.delijn.be/stops/200171"], ["https://data.delijn.be/stops/101477", "https://data.delijn.be/stops/109287"], ["https://data.delijn.be/stops/406359", "https://data.delijn.be/stops/406392"], ["https://data.delijn.be/stops/301282", "https://data.delijn.be/stops/306255"], ["https://data.delijn.be/stops/208279", "https://data.delijn.be/stops/208280"], ["https://data.delijn.be/stops/502584", "https://data.delijn.be/stops/507118"], ["https://data.delijn.be/stops/301682", "https://data.delijn.be/stops/306185"], ["https://data.delijn.be/stops/400711", "https://data.delijn.be/stops/400720"], ["https://data.delijn.be/stops/206108", "https://data.delijn.be/stops/206111"], ["https://data.delijn.be/stops/303354", "https://data.delijn.be/stops/303359"], ["https://data.delijn.be/stops/108534", "https://data.delijn.be/stops/108536"], ["https://data.delijn.be/stops/204658", "https://data.delijn.be/stops/205658"], ["https://data.delijn.be/stops/504082", "https://data.delijn.be/stops/509081"], ["https://data.delijn.be/stops/206089", "https://data.delijn.be/stops/207089"], ["https://data.delijn.be/stops/503677", "https://data.delijn.be/stops/508677"], ["https://data.delijn.be/stops/103636", "https://data.delijn.be/stops/103695"], ["https://data.delijn.be/stops/201107", "https://data.delijn.be/stops/209908"], ["https://data.delijn.be/stops/207797", "https://data.delijn.be/stops/208024"], ["https://data.delijn.be/stops/408101", "https://data.delijn.be/stops/408108"], ["https://data.delijn.be/stops/104961", "https://data.delijn.be/stops/104965"], ["https://data.delijn.be/stops/204383", "https://data.delijn.be/stops/205184"], ["https://data.delijn.be/stops/302799", "https://data.delijn.be/stops/307836"], ["https://data.delijn.be/stops/404455", "https://data.delijn.be/stops/404480"], ["https://data.delijn.be/stops/201893", "https://data.delijn.be/stops/209823"], ["https://data.delijn.be/stops/502451", "https://data.delijn.be/stops/502454"], ["https://data.delijn.be/stops/200815", "https://data.delijn.be/stops/502274"], ["https://data.delijn.be/stops/103310", "https://data.delijn.be/stops/108655"], ["https://data.delijn.be/stops/406920", "https://data.delijn.be/stops/409464"], ["https://data.delijn.be/stops/404355", "https://data.delijn.be/stops/404384"], ["https://data.delijn.be/stops/104647", "https://data.delijn.be/stops/104651"], ["https://data.delijn.be/stops/305201", "https://data.delijn.be/stops/305203"], ["https://data.delijn.be/stops/105266", "https://data.delijn.be/stops/109967"], ["https://data.delijn.be/stops/400688", "https://data.delijn.be/stops/404325"], ["https://data.delijn.be/stops/403054", "https://data.delijn.be/stops/410248"], ["https://data.delijn.be/stops/404222", "https://data.delijn.be/stops/404230"], ["https://data.delijn.be/stops/207335", "https://data.delijn.be/stops/207697"], ["https://data.delijn.be/stops/106368", "https://data.delijn.be/stops/106372"], ["https://data.delijn.be/stops/106243", "https://data.delijn.be/stops/107233"], ["https://data.delijn.be/stops/504134", "https://data.delijn.be/stops/505921"], ["https://data.delijn.be/stops/202887", "https://data.delijn.be/stops/207421"], ["https://data.delijn.be/stops/501387", "https://data.delijn.be/stops/501391"], ["https://data.delijn.be/stops/204620", "https://data.delijn.be/stops/204621"], ["https://data.delijn.be/stops/400164", "https://data.delijn.be/stops/409144"], ["https://data.delijn.be/stops/102330", "https://data.delijn.be/stops/103308"], ["https://data.delijn.be/stops/400482", "https://data.delijn.be/stops/400486"], ["https://data.delijn.be/stops/406254", "https://data.delijn.be/stops/406255"], ["https://data.delijn.be/stops/304119", "https://data.delijn.be/stops/307544"], ["https://data.delijn.be/stops/407145", "https://data.delijn.be/stops/407146"], ["https://data.delijn.be/stops/109088", "https://data.delijn.be/stops/109089"], ["https://data.delijn.be/stops/204610", "https://data.delijn.be/stops/204611"], ["https://data.delijn.be/stops/501214", "https://data.delijn.be/stops/501637"], ["https://data.delijn.be/stops/501139", "https://data.delijn.be/stops/506139"], ["https://data.delijn.be/stops/109842", "https://data.delijn.be/stops/109843"], ["https://data.delijn.be/stops/108918", "https://data.delijn.be/stops/108919"], ["https://data.delijn.be/stops/201895", "https://data.delijn.be/stops/202340"], ["https://data.delijn.be/stops/502275", "https://data.delijn.be/stops/502276"], ["https://data.delijn.be/stops/406848", "https://data.delijn.be/stops/406852"], ["https://data.delijn.be/stops/201470", "https://data.delijn.be/stops/202455"], ["https://data.delijn.be/stops/503607", "https://data.delijn.be/stops/508604"], ["https://data.delijn.be/stops/204059", "https://data.delijn.be/stops/204060"], ["https://data.delijn.be/stops/102946", "https://data.delijn.be/stops/108564"], ["https://data.delijn.be/stops/503738", "https://data.delijn.be/stops/504969"], ["https://data.delijn.be/stops/504564", "https://data.delijn.be/stops/505188"], ["https://data.delijn.be/stops/301180", "https://data.delijn.be/stops/301185"], ["https://data.delijn.be/stops/101617", "https://data.delijn.be/stops/102969"], ["https://data.delijn.be/stops/109830", "https://data.delijn.be/stops/109855"], ["https://data.delijn.be/stops/402022", "https://data.delijn.be/stops/408896"], ["https://data.delijn.be/stops/109344", "https://data.delijn.be/stops/109346"], ["https://data.delijn.be/stops/503075", "https://data.delijn.be/stops/508070"], ["https://data.delijn.be/stops/302936", "https://data.delijn.be/stops/306371"], ["https://data.delijn.be/stops/204999", "https://data.delijn.be/stops/207383"], ["https://data.delijn.be/stops/202526", "https://data.delijn.be/stops/203520"], ["https://data.delijn.be/stops/205501", "https://data.delijn.be/stops/205545"], ["https://data.delijn.be/stops/102297", "https://data.delijn.be/stops/107393"], ["https://data.delijn.be/stops/400132", "https://data.delijn.be/stops/409169"], ["https://data.delijn.be/stops/105572", "https://data.delijn.be/stops/105573"], ["https://data.delijn.be/stops/304429", "https://data.delijn.be/stops/307384"], ["https://data.delijn.be/stops/303639", "https://data.delijn.be/stops/307886"], ["https://data.delijn.be/stops/403048", "https://data.delijn.be/stops/403090"], ["https://data.delijn.be/stops/504392", "https://data.delijn.be/stops/504712"], ["https://data.delijn.be/stops/202892", "https://data.delijn.be/stops/203725"], ["https://data.delijn.be/stops/405545", "https://data.delijn.be/stops/405546"], ["https://data.delijn.be/stops/408641", "https://data.delijn.be/stops/408714"], ["https://data.delijn.be/stops/307628", "https://data.delijn.be/stops/308262"], ["https://data.delijn.be/stops/101408", "https://data.delijn.be/stops/101435"], ["https://data.delijn.be/stops/306123", "https://data.delijn.be/stops/307473"], ["https://data.delijn.be/stops/400554", "https://data.delijn.be/stops/400555"], ["https://data.delijn.be/stops/102936", "https://data.delijn.be/stops/104900"], ["https://data.delijn.be/stops/500018", "https://data.delijn.be/stops/502448"], ["https://data.delijn.be/stops/103909", "https://data.delijn.be/stops/105647"], ["https://data.delijn.be/stops/300251", "https://data.delijn.be/stops/304567"], ["https://data.delijn.be/stops/101518", "https://data.delijn.be/stops/109071"], ["https://data.delijn.be/stops/200153", "https://data.delijn.be/stops/201154"], ["https://data.delijn.be/stops/402529", "https://data.delijn.be/stops/402532"], ["https://data.delijn.be/stops/400213", "https://data.delijn.be/stops/400241"], ["https://data.delijn.be/stops/503438", "https://data.delijn.be/stops/510019"], ["https://data.delijn.be/stops/204170", "https://data.delijn.be/stops/205579"], ["https://data.delijn.be/stops/504448", "https://data.delijn.be/stops/509965"], ["https://data.delijn.be/stops/303780", "https://data.delijn.be/stops/303781"], ["https://data.delijn.be/stops/504011", "https://data.delijn.be/stops/509013"], ["https://data.delijn.be/stops/300402", "https://data.delijn.be/stops/304054"], ["https://data.delijn.be/stops/405772", "https://data.delijn.be/stops/405827"], ["https://data.delijn.be/stops/204408", "https://data.delijn.be/stops/205205"], ["https://data.delijn.be/stops/402299", "https://data.delijn.be/stops/402472"], ["https://data.delijn.be/stops/206669", "https://data.delijn.be/stops/206682"], ["https://data.delijn.be/stops/202340", "https://data.delijn.be/stops/203850"], ["https://data.delijn.be/stops/402782", "https://data.delijn.be/stops/405497"], ["https://data.delijn.be/stops/204646", "https://data.delijn.be/stops/205646"], ["https://data.delijn.be/stops/504783", "https://data.delijn.be/stops/508299"], ["https://data.delijn.be/stops/300874", "https://data.delijn.be/stops/300880"], ["https://data.delijn.be/stops/503569", "https://data.delijn.be/stops/503574"], ["https://data.delijn.be/stops/300459", "https://data.delijn.be/stops/305013"], ["https://data.delijn.be/stops/407908", "https://data.delijn.be/stops/407909"], ["https://data.delijn.be/stops/503358", "https://data.delijn.be/stops/503492"], ["https://data.delijn.be/stops/104082", "https://data.delijn.be/stops/105455"], ["https://data.delijn.be/stops/206185", "https://data.delijn.be/stops/206694"], ["https://data.delijn.be/stops/105997", "https://data.delijn.be/stops/107908"], ["https://data.delijn.be/stops/503315", "https://data.delijn.be/stops/505814"], ["https://data.delijn.be/stops/107699", "https://data.delijn.be/stops/107717"], ["https://data.delijn.be/stops/102745", "https://data.delijn.be/stops/105265"], ["https://data.delijn.be/stops/203346", "https://data.delijn.be/stops/209743"], ["https://data.delijn.be/stops/304739", "https://data.delijn.be/stops/308711"], ["https://data.delijn.be/stops/300599", "https://data.delijn.be/stops/300600"], ["https://data.delijn.be/stops/208207", "https://data.delijn.be/stops/209207"], ["https://data.delijn.be/stops/303759", "https://data.delijn.be/stops/303760"], ["https://data.delijn.be/stops/504217", "https://data.delijn.be/stops/504218"], ["https://data.delijn.be/stops/302054", "https://data.delijn.be/stops/303179"], ["https://data.delijn.be/stops/101371", "https://data.delijn.be/stops/101404"], ["https://data.delijn.be/stops/107174", "https://data.delijn.be/stops/107175"], ["https://data.delijn.be/stops/502278", "https://data.delijn.be/stops/507282"], ["https://data.delijn.be/stops/504135", "https://data.delijn.be/stops/504976"], ["https://data.delijn.be/stops/508082", "https://data.delijn.be/stops/508507"], ["https://data.delijn.be/stops/504423", "https://data.delijn.be/stops/509400"], ["https://data.delijn.be/stops/109797", "https://data.delijn.be/stops/109798"], ["https://data.delijn.be/stops/302558", "https://data.delijn.be/stops/305980"], ["https://data.delijn.be/stops/407822", "https://data.delijn.be/stops/407824"], ["https://data.delijn.be/stops/501331", "https://data.delijn.be/stops/506345"], ["https://data.delijn.be/stops/504362", "https://data.delijn.be/stops/505093"], ["https://data.delijn.be/stops/401474", "https://data.delijn.be/stops/401475"], ["https://data.delijn.be/stops/409298", "https://data.delijn.be/stops/409299"], ["https://data.delijn.be/stops/504371", "https://data.delijn.be/stops/509368"], ["https://data.delijn.be/stops/206839", "https://data.delijn.be/stops/208953"], ["https://data.delijn.be/stops/303802", "https://data.delijn.be/stops/303808"], ["https://data.delijn.be/stops/501615", "https://data.delijn.be/stops/506616"], ["https://data.delijn.be/stops/202003", "https://data.delijn.be/stops/202023"], ["https://data.delijn.be/stops/204677", "https://data.delijn.be/stops/205678"], ["https://data.delijn.be/stops/200861", "https://data.delijn.be/stops/200863"], ["https://data.delijn.be/stops/504074", "https://data.delijn.be/stops/504075"], ["https://data.delijn.be/stops/200107", "https://data.delijn.be/stops/203007"], ["https://data.delijn.be/stops/301394", "https://data.delijn.be/stops/306148"], ["https://data.delijn.be/stops/505505", "https://data.delijn.be/stops/505605"], ["https://data.delijn.be/stops/200210", "https://data.delijn.be/stops/201210"], ["https://data.delijn.be/stops/306726", "https://data.delijn.be/stops/306727"], ["https://data.delijn.be/stops/403174", "https://data.delijn.be/stops/410028"], ["https://data.delijn.be/stops/204973", "https://data.delijn.be/stops/205970"], ["https://data.delijn.be/stops/101892", "https://data.delijn.be/stops/107614"], ["https://data.delijn.be/stops/102237", "https://data.delijn.be/stops/105857"], ["https://data.delijn.be/stops/501017", "https://data.delijn.be/stops/506013"], ["https://data.delijn.be/stops/400665", "https://data.delijn.be/stops/408972"], ["https://data.delijn.be/stops/400288", "https://data.delijn.be/stops/400289"], ["https://data.delijn.be/stops/501401", "https://data.delijn.be/stops/506518"], ["https://data.delijn.be/stops/204544", "https://data.delijn.be/stops/204619"], ["https://data.delijn.be/stops/402889", "https://data.delijn.be/stops/402891"], ["https://data.delijn.be/stops/208665", "https://data.delijn.be/stops/208754"], ["https://data.delijn.be/stops/201005", "https://data.delijn.be/stops/203523"], ["https://data.delijn.be/stops/105075", "https://data.delijn.be/stops/105076"], ["https://data.delijn.be/stops/305147", "https://data.delijn.be/stops/306965"], ["https://data.delijn.be/stops/202021", "https://data.delijn.be/stops/211853"], ["https://data.delijn.be/stops/101411", "https://data.delijn.be/stops/101412"], ["https://data.delijn.be/stops/402074", "https://data.delijn.be/stops/402076"], ["https://data.delijn.be/stops/405798", "https://data.delijn.be/stops/409712"], ["https://data.delijn.be/stops/407871", "https://data.delijn.be/stops/409457"], ["https://data.delijn.be/stops/402339", "https://data.delijn.be/stops/402340"], ["https://data.delijn.be/stops/107702", "https://data.delijn.be/stops/107715"], ["https://data.delijn.be/stops/207466", "https://data.delijn.be/stops/207467"], ["https://data.delijn.be/stops/301491", "https://data.delijn.be/stops/307931"], ["https://data.delijn.be/stops/502508", "https://data.delijn.be/stops/507508"], ["https://data.delijn.be/stops/308224", "https://data.delijn.be/stops/308231"], ["https://data.delijn.be/stops/403612", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/505427", "https://data.delijn.be/stops/505719"], ["https://data.delijn.be/stops/302738", "https://data.delijn.be/stops/307705"], ["https://data.delijn.be/stops/101795", "https://data.delijn.be/stops/101950"], ["https://data.delijn.be/stops/408800", "https://data.delijn.be/stops/408806"], ["https://data.delijn.be/stops/206389", "https://data.delijn.be/stops/206552"], ["https://data.delijn.be/stops/401446", "https://data.delijn.be/stops/401738"], ["https://data.delijn.be/stops/401635", "https://data.delijn.be/stops/308217"], ["https://data.delijn.be/stops/108850", "https://data.delijn.be/stops/108853"], ["https://data.delijn.be/stops/501021", "https://data.delijn.be/stops/501622"], ["https://data.delijn.be/stops/102053", "https://data.delijn.be/stops/104049"], ["https://data.delijn.be/stops/304834", "https://data.delijn.be/stops/305425"], ["https://data.delijn.be/stops/404021", "https://data.delijn.be/stops/407066"], ["https://data.delijn.be/stops/101780", "https://data.delijn.be/stops/105160"], ["https://data.delijn.be/stops/406243", "https://data.delijn.be/stops/406249"], ["https://data.delijn.be/stops/505099", "https://data.delijn.be/stops/505124"], ["https://data.delijn.be/stops/408191", "https://data.delijn.be/stops/408336"], ["https://data.delijn.be/stops/502421", "https://data.delijn.be/stops/507124"], ["https://data.delijn.be/stops/502477", "https://data.delijn.be/stops/502753"], ["https://data.delijn.be/stops/105345", "https://data.delijn.be/stops/105560"], ["https://data.delijn.be/stops/504034", "https://data.delijn.be/stops/505301"], ["https://data.delijn.be/stops/306948", "https://data.delijn.be/stops/306949"], ["https://data.delijn.be/stops/402776", "https://data.delijn.be/stops/402777"], ["https://data.delijn.be/stops/507005", "https://data.delijn.be/stops/507746"], ["https://data.delijn.be/stops/509200", "https://data.delijn.be/stops/509353"], ["https://data.delijn.be/stops/102399", "https://data.delijn.be/stops/108775"], ["https://data.delijn.be/stops/208565", "https://data.delijn.be/stops/209546"], ["https://data.delijn.be/stops/102748", "https://data.delijn.be/stops/107847"], ["https://data.delijn.be/stops/302909", "https://data.delijn.be/stops/302911"], ["https://data.delijn.be/stops/206269", "https://data.delijn.be/stops/207046"], ["https://data.delijn.be/stops/503506", "https://data.delijn.be/stops/508510"], ["https://data.delijn.be/stops/301995", "https://data.delijn.be/stops/307193"], ["https://data.delijn.be/stops/502388", "https://data.delijn.be/stops/507381"], ["https://data.delijn.be/stops/201028", "https://data.delijn.be/stops/201275"], ["https://data.delijn.be/stops/404378", "https://data.delijn.be/stops/404380"], ["https://data.delijn.be/stops/407176", "https://data.delijn.be/stops/409857"], ["https://data.delijn.be/stops/408606", "https://data.delijn.be/stops/306774"], ["https://data.delijn.be/stops/101597", "https://data.delijn.be/stops/106587"], ["https://data.delijn.be/stops/102225", "https://data.delijn.be/stops/102230"], ["https://data.delijn.be/stops/201134", "https://data.delijn.be/stops/201135"], ["https://data.delijn.be/stops/104818", "https://data.delijn.be/stops/108562"], ["https://data.delijn.be/stops/302967", "https://data.delijn.be/stops/306282"], ["https://data.delijn.be/stops/206147", "https://data.delijn.be/stops/206148"], ["https://data.delijn.be/stops/204305", "https://data.delijn.be/stops/205304"], ["https://data.delijn.be/stops/400696", "https://data.delijn.be/stops/409526"], ["https://data.delijn.be/stops/504370", "https://data.delijn.be/stops/509367"], ["https://data.delijn.be/stops/105447", "https://data.delijn.be/stops/109937"], ["https://data.delijn.be/stops/101080", "https://data.delijn.be/stops/104975"], ["https://data.delijn.be/stops/104504", "https://data.delijn.be/stops/107926"], ["https://data.delijn.be/stops/303470", "https://data.delijn.be/stops/303500"], ["https://data.delijn.be/stops/405363", "https://data.delijn.be/stops/405406"], ["https://data.delijn.be/stops/206075", "https://data.delijn.be/stops/207028"], ["https://data.delijn.be/stops/206701", "https://data.delijn.be/stops/304275"], ["https://data.delijn.be/stops/502413", "https://data.delijn.be/stops/507386"], ["https://data.delijn.be/stops/302858", "https://data.delijn.be/stops/302861"], ["https://data.delijn.be/stops/404450", "https://data.delijn.be/stops/404494"], ["https://data.delijn.be/stops/504862", "https://data.delijn.be/stops/505966"], ["https://data.delijn.be/stops/202033", "https://data.delijn.be/stops/203033"], ["https://data.delijn.be/stops/408298", "https://data.delijn.be/stops/408402"], ["https://data.delijn.be/stops/103569", "https://data.delijn.be/stops/103570"], ["https://data.delijn.be/stops/403797", "https://data.delijn.be/stops/403808"], ["https://data.delijn.be/stops/201006", "https://data.delijn.be/stops/211069"], ["https://data.delijn.be/stops/301908", "https://data.delijn.be/stops/306258"], ["https://data.delijn.be/stops/504492", "https://data.delijn.be/stops/504505"], ["https://data.delijn.be/stops/504058", "https://data.delijn.be/stops/509062"], ["https://data.delijn.be/stops/404513", "https://data.delijn.be/stops/408946"], ["https://data.delijn.be/stops/104894", "https://data.delijn.be/stops/105349"], ["https://data.delijn.be/stops/503149", "https://data.delijn.be/stops/505191"], ["https://data.delijn.be/stops/504520", "https://data.delijn.be/stops/509069"], ["https://data.delijn.be/stops/503373", "https://data.delijn.be/stops/508356"], ["https://data.delijn.be/stops/202582", "https://data.delijn.be/stops/203582"], ["https://data.delijn.be/stops/308027", "https://data.delijn.be/stops/308029"], ["https://data.delijn.be/stops/303822", "https://data.delijn.be/stops/303823"], ["https://data.delijn.be/stops/109930", "https://data.delijn.be/stops/109952"], ["https://data.delijn.be/stops/403700", "https://data.delijn.be/stops/403764"], ["https://data.delijn.be/stops/302330", "https://data.delijn.be/stops/304083"], ["https://data.delijn.be/stops/103286", "https://data.delijn.be/stops/109372"], ["https://data.delijn.be/stops/504562", "https://data.delijn.be/stops/505186"], ["https://data.delijn.be/stops/405166", "https://data.delijn.be/stops/405217"], ["https://data.delijn.be/stops/101489", "https://data.delijn.be/stops/108752"], ["https://data.delijn.be/stops/502273", "https://data.delijn.be/stops/505023"], ["https://data.delijn.be/stops/204768", "https://data.delijn.be/stops/205443"], ["https://data.delijn.be/stops/405748", "https://data.delijn.be/stops/409672"], ["https://data.delijn.be/stops/208077", "https://data.delijn.be/stops/208078"], ["https://data.delijn.be/stops/502204", "https://data.delijn.be/stops/508991"], ["https://data.delijn.be/stops/200392", "https://data.delijn.be/stops/202651"], ["https://data.delijn.be/stops/107586", "https://data.delijn.be/stops/107588"], ["https://data.delijn.be/stops/404510", "https://data.delijn.be/stops/404529"], ["https://data.delijn.be/stops/301329", "https://data.delijn.be/stops/306655"], ["https://data.delijn.be/stops/103343", "https://data.delijn.be/stops/104363"], ["https://data.delijn.be/stops/108837", "https://data.delijn.be/stops/108851"], ["https://data.delijn.be/stops/101990", "https://data.delijn.be/stops/102195"], ["https://data.delijn.be/stops/109051", "https://data.delijn.be/stops/109053"], ["https://data.delijn.be/stops/502643", "https://data.delijn.be/stops/507150"], ["https://data.delijn.be/stops/304448", "https://data.delijn.be/stops/304451"], ["https://data.delijn.be/stops/400055", "https://data.delijn.be/stops/400096"], ["https://data.delijn.be/stops/404311", "https://data.delijn.be/stops/406816"], ["https://data.delijn.be/stops/209525", "https://data.delijn.be/stops/209705"], ["https://data.delijn.be/stops/401833", "https://data.delijn.be/stops/401835"], ["https://data.delijn.be/stops/303529", "https://data.delijn.be/stops/303552"], ["https://data.delijn.be/stops/202026", "https://data.delijn.be/stops/203026"], ["https://data.delijn.be/stops/103214", "https://data.delijn.be/stops/106742"], ["https://data.delijn.be/stops/104419", "https://data.delijn.be/stops/204489"], ["https://data.delijn.be/stops/503041", "https://data.delijn.be/stops/508995"], ["https://data.delijn.be/stops/108766", "https://data.delijn.be/stops/109272"], ["https://data.delijn.be/stops/402161", "https://data.delijn.be/stops/402203"], ["https://data.delijn.be/stops/301712", "https://data.delijn.be/stops/305909"], ["https://data.delijn.be/stops/105269", "https://data.delijn.be/stops/105287"], ["https://data.delijn.be/stops/201929", "https://data.delijn.be/stops/203474"], ["https://data.delijn.be/stops/205021", "https://data.delijn.be/stops/205798"], ["https://data.delijn.be/stops/200707", "https://data.delijn.be/stops/200937"], ["https://data.delijn.be/stops/105588", "https://data.delijn.be/stops/105592"], ["https://data.delijn.be/stops/108457", "https://data.delijn.be/stops/108461"], ["https://data.delijn.be/stops/503647", "https://data.delijn.be/stops/509513"], ["https://data.delijn.be/stops/405023", "https://data.delijn.be/stops/405052"], ["https://data.delijn.be/stops/200115", "https://data.delijn.be/stops/200874"], ["https://data.delijn.be/stops/307826", "https://data.delijn.be/stops/307878"], ["https://data.delijn.be/stops/101421", "https://data.delijn.be/stops/107265"], ["https://data.delijn.be/stops/403453", "https://data.delijn.be/stops/403477"], ["https://data.delijn.be/stops/407987", "https://data.delijn.be/stops/407992"], ["https://data.delijn.be/stops/302160", "https://data.delijn.be/stops/302161"], ["https://data.delijn.be/stops/103628", "https://data.delijn.be/stops/103631"], ["https://data.delijn.be/stops/200128", "https://data.delijn.be/stops/201210"], ["https://data.delijn.be/stops/204424", "https://data.delijn.be/stops/205425"], ["https://data.delijn.be/stops/501296", "https://data.delijn.be/stops/506295"], ["https://data.delijn.be/stops/504059", "https://data.delijn.be/stops/505305"], ["https://data.delijn.be/stops/102995", "https://data.delijn.be/stops/104008"], ["https://data.delijn.be/stops/202035", "https://data.delijn.be/stops/202986"], ["https://data.delijn.be/stops/108374", "https://data.delijn.be/stops/108376"], ["https://data.delijn.be/stops/400472", "https://data.delijn.be/stops/400477"], ["https://data.delijn.be/stops/306937", "https://data.delijn.be/stops/308132"], ["https://data.delijn.be/stops/102910", "https://data.delijn.be/stops/105365"], ["https://data.delijn.be/stops/109839", "https://data.delijn.be/stops/109953"], ["https://data.delijn.be/stops/400264", "https://data.delijn.be/stops/402826"], ["https://data.delijn.be/stops/300631", "https://data.delijn.be/stops/300632"], ["https://data.delijn.be/stops/507197", "https://data.delijn.be/stops/507687"], ["https://data.delijn.be/stops/300219", "https://data.delijn.be/stops/300221"], ["https://data.delijn.be/stops/401431", "https://data.delijn.be/stops/401876"], ["https://data.delijn.be/stops/304384", "https://data.delijn.be/stops/308056"], ["https://data.delijn.be/stops/409068", "https://data.delijn.be/stops/409139"], ["https://data.delijn.be/stops/107274", "https://data.delijn.be/stops/107276"], ["https://data.delijn.be/stops/303299", "https://data.delijn.be/stops/305102"], ["https://data.delijn.be/stops/208106", "https://data.delijn.be/stops/208107"], ["https://data.delijn.be/stops/400109", "https://data.delijn.be/stops/409164"], ["https://data.delijn.be/stops/504747", "https://data.delijn.be/stops/509173"], ["https://data.delijn.be/stops/401777", "https://data.delijn.be/stops/406144"], ["https://data.delijn.be/stops/307375", "https://data.delijn.be/stops/307376"], ["https://data.delijn.be/stops/109494", "https://data.delijn.be/stops/109800"], ["https://data.delijn.be/stops/500126", "https://data.delijn.be/stops/508005"], ["https://data.delijn.be/stops/206695", "https://data.delijn.be/stops/207695"], ["https://data.delijn.be/stops/506729", "https://data.delijn.be/stops/507170"], ["https://data.delijn.be/stops/208837", "https://data.delijn.be/stops/209212"], ["https://data.delijn.be/stops/503305", "https://data.delijn.be/stops/508137"], ["https://data.delijn.be/stops/301548", "https://data.delijn.be/stops/301552"], ["https://data.delijn.be/stops/303528", "https://data.delijn.be/stops/303566"], ["https://data.delijn.be/stops/405803", "https://data.delijn.be/stops/409732"], ["https://data.delijn.be/stops/502427", "https://data.delijn.be/stops/507423"], ["https://data.delijn.be/stops/300769", "https://data.delijn.be/stops/301168"], ["https://data.delijn.be/stops/301547", "https://data.delijn.be/stops/305206"], ["https://data.delijn.be/stops/201927", "https://data.delijn.be/stops/204001"], ["https://data.delijn.be/stops/105091", "https://data.delijn.be/stops/105092"], ["https://data.delijn.be/stops/107038", "https://data.delijn.be/stops/109558"], ["https://data.delijn.be/stops/301439", "https://data.delijn.be/stops/301440"], ["https://data.delijn.be/stops/305636", "https://data.delijn.be/stops/305637"], ["https://data.delijn.be/stops/504587", "https://data.delijn.be/stops/509587"], ["https://data.delijn.be/stops/302948", "https://data.delijn.be/stops/308656"], ["https://data.delijn.be/stops/103716", "https://data.delijn.be/stops/107307"], ["https://data.delijn.be/stops/200031", "https://data.delijn.be/stops/200144"], ["https://data.delijn.be/stops/404927", "https://data.delijn.be/stops/404949"], ["https://data.delijn.be/stops/102431", "https://data.delijn.be/stops/104972"], ["https://data.delijn.be/stops/407099", "https://data.delijn.be/stops/407103"], ["https://data.delijn.be/stops/204596", "https://data.delijn.be/stops/204799"], ["https://data.delijn.be/stops/400810", "https://data.delijn.be/stops/409621"], ["https://data.delijn.be/stops/503119", "https://data.delijn.be/stops/508118"], ["https://data.delijn.be/stops/208135", "https://data.delijn.be/stops/208136"], ["https://data.delijn.be/stops/503583", "https://data.delijn.be/stops/503600"], ["https://data.delijn.be/stops/403432", "https://data.delijn.be/stops/403498"], ["https://data.delijn.be/stops/503783", "https://data.delijn.be/stops/505269"], ["https://data.delijn.be/stops/410002", "https://data.delijn.be/stops/410003"], ["https://data.delijn.be/stops/407582", "https://data.delijn.be/stops/408922"], ["https://data.delijn.be/stops/400905", "https://data.delijn.be/stops/401247"], ["https://data.delijn.be/stops/206837", "https://data.delijn.be/stops/207836"], ["https://data.delijn.be/stops/408017", "https://data.delijn.be/stops/408037"], ["https://data.delijn.be/stops/106733", "https://data.delijn.be/stops/107199"], ["https://data.delijn.be/stops/106425", "https://data.delijn.be/stops/106426"], ["https://data.delijn.be/stops/504208", "https://data.delijn.be/stops/504690"], ["https://data.delijn.be/stops/201523", "https://data.delijn.be/stops/211131"], ["https://data.delijn.be/stops/206633", "https://data.delijn.be/stops/207633"], ["https://data.delijn.be/stops/404702", "https://data.delijn.be/stops/404755"], ["https://data.delijn.be/stops/101827", "https://data.delijn.be/stops/102958"], ["https://data.delijn.be/stops/304896", "https://data.delijn.be/stops/307829"], ["https://data.delijn.be/stops/301448", "https://data.delijn.be/stops/307272"], ["https://data.delijn.be/stops/406557", "https://data.delijn.be/stops/407598"], ["https://data.delijn.be/stops/202481", "https://data.delijn.be/stops/203477"], ["https://data.delijn.be/stops/303141", "https://data.delijn.be/stops/304026"], ["https://data.delijn.be/stops/305308", "https://data.delijn.be/stops/306343"], ["https://data.delijn.be/stops/405156", "https://data.delijn.be/stops/405192"], ["https://data.delijn.be/stops/106963", "https://data.delijn.be/stops/106965"], ["https://data.delijn.be/stops/401422", "https://data.delijn.be/stops/401498"], ["https://data.delijn.be/stops/105716", "https://data.delijn.be/stops/105717"], ["https://data.delijn.be/stops/406011", "https://data.delijn.be/stops/406095"], ["https://data.delijn.be/stops/502705", "https://data.delijn.be/stops/507705"], ["https://data.delijn.be/stops/402892", "https://data.delijn.be/stops/402894"], ["https://data.delijn.be/stops/108852", "https://data.delijn.be/stops/108854"], ["https://data.delijn.be/stops/400712", "https://data.delijn.be/stops/400713"], ["https://data.delijn.be/stops/200724", "https://data.delijn.be/stops/202586"], ["https://data.delijn.be/stops/501208", "https://data.delijn.be/stops/505047"], ["https://data.delijn.be/stops/403023", "https://data.delijn.be/stops/404263"], ["https://data.delijn.be/stops/300273", "https://data.delijn.be/stops/305404"], ["https://data.delijn.be/stops/200966", "https://data.delijn.be/stops/208038"], ["https://data.delijn.be/stops/504424", "https://data.delijn.be/stops/504571"], ["https://data.delijn.be/stops/301399", "https://data.delijn.be/stops/301403"], ["https://data.delijn.be/stops/206754", "https://data.delijn.be/stops/206755"], ["https://data.delijn.be/stops/204335", "https://data.delijn.be/stops/205335"], ["https://data.delijn.be/stops/501028", "https://data.delijn.be/stops/506036"], ["https://data.delijn.be/stops/208172", "https://data.delijn.be/stops/209172"], ["https://data.delijn.be/stops/200538", "https://data.delijn.be/stops/200539"], ["https://data.delijn.be/stops/208213", "https://data.delijn.be/stops/209210"], ["https://data.delijn.be/stops/204441", "https://data.delijn.be/stops/205441"], ["https://data.delijn.be/stops/504892", "https://data.delijn.be/stops/508587"], ["https://data.delijn.be/stops/206121", "https://data.delijn.be/stops/206145"], ["https://data.delijn.be/stops/304163", "https://data.delijn.be/stops/304165"], ["https://data.delijn.be/stops/505197", "https://data.delijn.be/stops/505288"], ["https://data.delijn.be/stops/408200", "https://data.delijn.be/stops/307379"], ["https://data.delijn.be/stops/503616", "https://data.delijn.be/stops/508601"], ["https://data.delijn.be/stops/200465", "https://data.delijn.be/stops/201466"], ["https://data.delijn.be/stops/102045", "https://data.delijn.be/stops/108030"], ["https://data.delijn.be/stops/403214", "https://data.delijn.be/stops/403219"], ["https://data.delijn.be/stops/209050", "https://data.delijn.be/stops/209658"], ["https://data.delijn.be/stops/200168", "https://data.delijn.be/stops/203623"], ["https://data.delijn.be/stops/302410", "https://data.delijn.be/stops/302420"], ["https://data.delijn.be/stops/200006", "https://data.delijn.be/stops/201006"], ["https://data.delijn.be/stops/302003", "https://data.delijn.be/stops/302044"], ["https://data.delijn.be/stops/200710", "https://data.delijn.be/stops/204768"], ["https://data.delijn.be/stops/207674", "https://data.delijn.be/stops/209138"], ["https://data.delijn.be/stops/504212", "https://data.delijn.be/stops/509209"], ["https://data.delijn.be/stops/103478", "https://data.delijn.be/stops/103481"], ["https://data.delijn.be/stops/303114", "https://data.delijn.be/stops/305444"], ["https://data.delijn.be/stops/200941", "https://data.delijn.be/stops/203700"], ["https://data.delijn.be/stops/407478", "https://data.delijn.be/stops/407540"], ["https://data.delijn.be/stops/102932", "https://data.delijn.be/stops/106042"], ["https://data.delijn.be/stops/101395", "https://data.delijn.be/stops/102520"], ["https://data.delijn.be/stops/107045", "https://data.delijn.be/stops/108410"], ["https://data.delijn.be/stops/203720", "https://data.delijn.be/stops/203722"], ["https://data.delijn.be/stops/106446", "https://data.delijn.be/stops/106448"], ["https://data.delijn.be/stops/101668", "https://data.delijn.be/stops/107656"], ["https://data.delijn.be/stops/105424", "https://data.delijn.be/stops/105428"], ["https://data.delijn.be/stops/408740", "https://data.delijn.be/stops/408744"], ["https://data.delijn.be/stops/401468", "https://data.delijn.be/stops/401505"], ["https://data.delijn.be/stops/304709", "https://data.delijn.be/stops/306373"], ["https://data.delijn.be/stops/301905", "https://data.delijn.be/stops/306251"], ["https://data.delijn.be/stops/402527", "https://data.delijn.be/stops/404064"], ["https://data.delijn.be/stops/404049", "https://data.delijn.be/stops/404051"], ["https://data.delijn.be/stops/301395", "https://data.delijn.be/stops/301396"], ["https://data.delijn.be/stops/303836", "https://data.delijn.be/stops/308541"], ["https://data.delijn.be/stops/102815", "https://data.delijn.be/stops/105260"], ["https://data.delijn.be/stops/401519", "https://data.delijn.be/stops/401520"], ["https://data.delijn.be/stops/202189", "https://data.delijn.be/stops/203146"], ["https://data.delijn.be/stops/400195", "https://data.delijn.be/stops/401162"], ["https://data.delijn.be/stops/206185", "https://data.delijn.be/stops/206186"], ["https://data.delijn.be/stops/504965", "https://data.delijn.be/stops/508726"], ["https://data.delijn.be/stops/302347", "https://data.delijn.be/stops/302356"], ["https://data.delijn.be/stops/104511", "https://data.delijn.be/stops/107799"], ["https://data.delijn.be/stops/407588", "https://data.delijn.be/stops/409806"], ["https://data.delijn.be/stops/104749", "https://data.delijn.be/stops/107328"], ["https://data.delijn.be/stops/204517", "https://data.delijn.be/stops/205516"], ["https://data.delijn.be/stops/506190", "https://data.delijn.be/stops/506194"], ["https://data.delijn.be/stops/410126", "https://data.delijn.be/stops/410127"], ["https://data.delijn.be/stops/400491", "https://data.delijn.be/stops/400493"], ["https://data.delijn.be/stops/203686", "https://data.delijn.be/stops/203687"], ["https://data.delijn.be/stops/401280", "https://data.delijn.be/stops/401281"], ["https://data.delijn.be/stops/205489", "https://data.delijn.be/stops/205823"], ["https://data.delijn.be/stops/102157", "https://data.delijn.be/stops/109569"], ["https://data.delijn.be/stops/402517", "https://data.delijn.be/stops/402518"], ["https://data.delijn.be/stops/200452", "https://data.delijn.be/stops/208738"], ["https://data.delijn.be/stops/209395", "https://data.delijn.be/stops/508032"], ["https://data.delijn.be/stops/300801", "https://data.delijn.be/stops/302406"], ["https://data.delijn.be/stops/300008", "https://data.delijn.be/stops/300009"], ["https://data.delijn.be/stops/103329", "https://data.delijn.be/stops/109297"], ["https://data.delijn.be/stops/105740", "https://data.delijn.be/stops/105745"], ["https://data.delijn.be/stops/103790", "https://data.delijn.be/stops/104080"], ["https://data.delijn.be/stops/206321", "https://data.delijn.be/stops/207145"], ["https://data.delijn.be/stops/301255", "https://data.delijn.be/stops/301259"], ["https://data.delijn.be/stops/401174", "https://data.delijn.be/stops/406692"], ["https://data.delijn.be/stops/500115", "https://data.delijn.be/stops/507388"], ["https://data.delijn.be/stops/109910", "https://data.delijn.be/stops/109913"], ["https://data.delijn.be/stops/101261", "https://data.delijn.be/stops/103680"], ["https://data.delijn.be/stops/501509", "https://data.delijn.be/stops/506343"], ["https://data.delijn.be/stops/208044", "https://data.delijn.be/stops/208525"], ["https://data.delijn.be/stops/507709", "https://data.delijn.be/stops/508826"], ["https://data.delijn.be/stops/301789", "https://data.delijn.be/stops/302531"], ["https://data.delijn.be/stops/202253", "https://data.delijn.be/stops/203253"], ["https://data.delijn.be/stops/504613", "https://data.delijn.be/stops/509613"], ["https://data.delijn.be/stops/401326", "https://data.delijn.be/stops/401363"], ["https://data.delijn.be/stops/202725", "https://data.delijn.be/stops/203725"], ["https://data.delijn.be/stops/109263", "https://data.delijn.be/stops/407111"], ["https://data.delijn.be/stops/300028", "https://data.delijn.be/stops/307443"], ["https://data.delijn.be/stops/504213", "https://data.delijn.be/stops/504306"], ["https://data.delijn.be/stops/405479", "https://data.delijn.be/stops/409291"], ["https://data.delijn.be/stops/106075", "https://data.delijn.be/stops/106077"], ["https://data.delijn.be/stops/404594", "https://data.delijn.be/stops/404607"], ["https://data.delijn.be/stops/509164", "https://data.delijn.be/stops/509170"], ["https://data.delijn.be/stops/209301", "https://data.delijn.be/stops/209302"], ["https://data.delijn.be/stops/306847", "https://data.delijn.be/stops/306848"], ["https://data.delijn.be/stops/105858", "https://data.delijn.be/stops/105861"], ["https://data.delijn.be/stops/103535", "https://data.delijn.be/stops/106010"], ["https://data.delijn.be/stops/406087", "https://data.delijn.be/stops/410148"], ["https://data.delijn.be/stops/406469", "https://data.delijn.be/stops/406833"], ["https://data.delijn.be/stops/503341", "https://data.delijn.be/stops/508340"], ["https://data.delijn.be/stops/501500", "https://data.delijn.be/stops/506500"], ["https://data.delijn.be/stops/504598", "https://data.delijn.be/stops/504602"], ["https://data.delijn.be/stops/508066", "https://data.delijn.be/stops/508699"], ["https://data.delijn.be/stops/205101", "https://data.delijn.be/stops/205342"], ["https://data.delijn.be/stops/301399", "https://data.delijn.be/stops/303226"], ["https://data.delijn.be/stops/106219", "https://data.delijn.be/stops/106321"], ["https://data.delijn.be/stops/303166", "https://data.delijn.be/stops/307284"], ["https://data.delijn.be/stops/300841", "https://data.delijn.be/stops/333453"], ["https://data.delijn.be/stops/104802", "https://data.delijn.be/stops/109791"], ["https://data.delijn.be/stops/400924", "https://data.delijn.be/stops/400925"], ["https://data.delijn.be/stops/306719", "https://data.delijn.be/stops/306720"], ["https://data.delijn.be/stops/503685", "https://data.delijn.be/stops/504453"], ["https://data.delijn.be/stops/103259", "https://data.delijn.be/stops/105858"], ["https://data.delijn.be/stops/101828", "https://data.delijn.be/stops/101829"], ["https://data.delijn.be/stops/503325", "https://data.delijn.be/stops/503756"], ["https://data.delijn.be/stops/505291", "https://data.delijn.be/stops/505906"], ["https://data.delijn.be/stops/300665", "https://data.delijn.be/stops/306885"], ["https://data.delijn.be/stops/300582", "https://data.delijn.be/stops/307077"], ["https://data.delijn.be/stops/405512", "https://data.delijn.be/stops/407786"], ["https://data.delijn.be/stops/506072", "https://data.delijn.be/stops/506075"], ["https://data.delijn.be/stops/206722", "https://data.delijn.be/stops/207650"], ["https://data.delijn.be/stops/106645", "https://data.delijn.be/stops/106674"], ["https://data.delijn.be/stops/103159", "https://data.delijn.be/stops/406776"], ["https://data.delijn.be/stops/401312", "https://data.delijn.be/stops/405467"], ["https://data.delijn.be/stops/403740", "https://data.delijn.be/stops/403743"], ["https://data.delijn.be/stops/207537", "https://data.delijn.be/stops/209742"], ["https://data.delijn.be/stops/502476", "https://data.delijn.be/stops/507479"], ["https://data.delijn.be/stops/208751", "https://data.delijn.be/stops/209438"], ["https://data.delijn.be/stops/503897", "https://data.delijn.be/stops/505423"], ["https://data.delijn.be/stops/504428", "https://data.delijn.be/stops/508304"], ["https://data.delijn.be/stops/501051", "https://data.delijn.be/stops/506045"], ["https://data.delijn.be/stops/501003", "https://data.delijn.be/stops/501072"], ["https://data.delijn.be/stops/406318", "https://data.delijn.be/stops/406407"], ["https://data.delijn.be/stops/405820", "https://data.delijn.be/stops/409417"], ["https://data.delijn.be/stops/402156", "https://data.delijn.be/stops/402252"], ["https://data.delijn.be/stops/503661", "https://data.delijn.be/stops/508661"], ["https://data.delijn.be/stops/505398", "https://data.delijn.be/stops/506645"], ["https://data.delijn.be/stops/202827", "https://data.delijn.be/stops/218023"], ["https://data.delijn.be/stops/302271", "https://data.delijn.be/stops/306883"], ["https://data.delijn.be/stops/204155", "https://data.delijn.be/stops/204579"], ["https://data.delijn.be/stops/509029", "https://data.delijn.be/stops/509102"], ["https://data.delijn.be/stops/400910", "https://data.delijn.be/stops/400911"], ["https://data.delijn.be/stops/504644", "https://data.delijn.be/stops/504646"], ["https://data.delijn.be/stops/208761", "https://data.delijn.be/stops/208872"], ["https://data.delijn.be/stops/400658", "https://data.delijn.be/stops/400659"], ["https://data.delijn.be/stops/109360", "https://data.delijn.be/stops/109365"], ["https://data.delijn.be/stops/504146", "https://data.delijn.be/stops/505423"], ["https://data.delijn.be/stops/405129", "https://data.delijn.be/stops/405496"], ["https://data.delijn.be/stops/102899", "https://data.delijn.be/stops/107069"], ["https://data.delijn.be/stops/207941", "https://data.delijn.be/stops/208564"], ["https://data.delijn.be/stops/206820", "https://data.delijn.be/stops/207820"], ["https://data.delijn.be/stops/205099", "https://data.delijn.be/stops/205340"], ["https://data.delijn.be/stops/400867", "https://data.delijn.be/stops/409530"], ["https://data.delijn.be/stops/405078", "https://data.delijn.be/stops/405107"], ["https://data.delijn.be/stops/302711", "https://data.delijn.be/stops/308595"], ["https://data.delijn.be/stops/303078", "https://data.delijn.be/stops/303080"], ["https://data.delijn.be/stops/503710", "https://data.delijn.be/stops/508710"], ["https://data.delijn.be/stops/305275", "https://data.delijn.be/stops/305276"], ["https://data.delijn.be/stops/202036", "https://data.delijn.be/stops/203982"], ["https://data.delijn.be/stops/407422", "https://data.delijn.be/stops/407427"], ["https://data.delijn.be/stops/107970", "https://data.delijn.be/stops/306759"], ["https://data.delijn.be/stops/301356", "https://data.delijn.be/stops/301453"], ["https://data.delijn.be/stops/400258", "https://data.delijn.be/stops/405557"], ["https://data.delijn.be/stops/101668", "https://data.delijn.be/stops/101669"], ["https://data.delijn.be/stops/103994", "https://data.delijn.be/stops/108386"], ["https://data.delijn.be/stops/206049", "https://data.delijn.be/stops/207040"], ["https://data.delijn.be/stops/301792", "https://data.delijn.be/stops/305395"], ["https://data.delijn.be/stops/508261", "https://data.delijn.be/stops/509792"], ["https://data.delijn.be/stops/305251", "https://data.delijn.be/stops/305287"], ["https://data.delijn.be/stops/202108", "https://data.delijn.be/stops/202639"], ["https://data.delijn.be/stops/202629", "https://data.delijn.be/stops/203629"], ["https://data.delijn.be/stops/304840", "https://data.delijn.be/stops/304884"], ["https://data.delijn.be/stops/503648", "https://data.delijn.be/stops/508648"], ["https://data.delijn.be/stops/109192", "https://data.delijn.be/stops/109193"], ["https://data.delijn.be/stops/503023", "https://data.delijn.be/stops/508025"], ["https://data.delijn.be/stops/302148", "https://data.delijn.be/stops/302151"], ["https://data.delijn.be/stops/107559", "https://data.delijn.be/stops/107562"], ["https://data.delijn.be/stops/103282", "https://data.delijn.be/stops/104300"], ["https://data.delijn.be/stops/102424", "https://data.delijn.be/stops/105100"], ["https://data.delijn.be/stops/307030", "https://data.delijn.be/stops/307035"], ["https://data.delijn.be/stops/102869", "https://data.delijn.be/stops/103645"], ["https://data.delijn.be/stops/107692", "https://data.delijn.be/stops/109995"], ["https://data.delijn.be/stops/406204", "https://data.delijn.be/stops/406205"], ["https://data.delijn.be/stops/504518", "https://data.delijn.be/stops/509518"], ["https://data.delijn.be/stops/208588", "https://data.delijn.be/stops/209588"], ["https://data.delijn.be/stops/502763", "https://data.delijn.be/stops/507763"], ["https://data.delijn.be/stops/405901", "https://data.delijn.be/stops/405907"], ["https://data.delijn.be/stops/103746", "https://data.delijn.be/stops/105791"], ["https://data.delijn.be/stops/305178", "https://data.delijn.be/stops/305188"], ["https://data.delijn.be/stops/201394", "https://data.delijn.be/stops/208722"], ["https://data.delijn.be/stops/305223", "https://data.delijn.be/stops/305236"], ["https://data.delijn.be/stops/408590", "https://data.delijn.be/stops/408591"], ["https://data.delijn.be/stops/303800", "https://data.delijn.be/stops/303803"], ["https://data.delijn.be/stops/207450", "https://data.delijn.be/stops/207452"], ["https://data.delijn.be/stops/302492", "https://data.delijn.be/stops/302720"], ["https://data.delijn.be/stops/401151", "https://data.delijn.be/stops/407796"], ["https://data.delijn.be/stops/503449", "https://data.delijn.be/stops/504873"], ["https://data.delijn.be/stops/308239", "https://data.delijn.be/stops/308243"], ["https://data.delijn.be/stops/105337", "https://data.delijn.be/stops/105339"], ["https://data.delijn.be/stops/200868", "https://data.delijn.be/stops/202483"], ["https://data.delijn.be/stops/109044", "https://data.delijn.be/stops/109086"], ["https://data.delijn.be/stops/502101", "https://data.delijn.be/stops/507130"], ["https://data.delijn.be/stops/509031", "https://data.delijn.be/stops/509033"], ["https://data.delijn.be/stops/508347", "https://data.delijn.be/stops/508388"], ["https://data.delijn.be/stops/200777", "https://data.delijn.be/stops/209307"], ["https://data.delijn.be/stops/103989", "https://data.delijn.be/stops/108558"], ["https://data.delijn.be/stops/406611", "https://data.delijn.be/stops/407410"], ["https://data.delijn.be/stops/208507", "https://data.delijn.be/stops/217004"], ["https://data.delijn.be/stops/305091", "https://data.delijn.be/stops/305095"], ["https://data.delijn.be/stops/505026", "https://data.delijn.be/stops/505345"], ["https://data.delijn.be/stops/106172", "https://data.delijn.be/stops/109103"], ["https://data.delijn.be/stops/407018", "https://data.delijn.be/stops/407086"], ["https://data.delijn.be/stops/503446", "https://data.delijn.be/stops/508951"], ["https://data.delijn.be/stops/302425", "https://data.delijn.be/stops/302449"], ["https://data.delijn.be/stops/304510", "https://data.delijn.be/stops/306346"], ["https://data.delijn.be/stops/102319", "https://data.delijn.be/stops/106224"], ["https://data.delijn.be/stops/403912", "https://data.delijn.be/stops/406007"], ["https://data.delijn.be/stops/104288", "https://data.delijn.be/stops/105859"], ["https://data.delijn.be/stops/407178", "https://data.delijn.be/stops/408729"], ["https://data.delijn.be/stops/503676", "https://data.delijn.be/stops/508676"], ["https://data.delijn.be/stops/407005", "https://data.delijn.be/stops/408195"], ["https://data.delijn.be/stops/200551", "https://data.delijn.be/stops/200552"], ["https://data.delijn.be/stops/101943", "https://data.delijn.be/stops/108758"], ["https://data.delijn.be/stops/505163", "https://data.delijn.be/stops/509411"], ["https://data.delijn.be/stops/501180", "https://data.delijn.be/stops/506183"], ["https://data.delijn.be/stops/505258", "https://data.delijn.be/stops/505943"], ["https://data.delijn.be/stops/200143", "https://data.delijn.be/stops/200780"], ["https://data.delijn.be/stops/103885", "https://data.delijn.be/stops/105470"], ["https://data.delijn.be/stops/502266", "https://data.delijn.be/stops/507266"], ["https://data.delijn.be/stops/205324", "https://data.delijn.be/stops/205340"], ["https://data.delijn.be/stops/505095", "https://data.delijn.be/stops/505096"], ["https://data.delijn.be/stops/504616", "https://data.delijn.be/stops/509289"], ["https://data.delijn.be/stops/408264", "https://data.delijn.be/stops/408265"], ["https://data.delijn.be/stops/501409", "https://data.delijn.be/stops/506416"], ["https://data.delijn.be/stops/106193", "https://data.delijn.be/stops/107443"], ["https://data.delijn.be/stops/106826", "https://data.delijn.be/stops/109749"], ["https://data.delijn.be/stops/502442", "https://data.delijn.be/stops/502453"], ["https://data.delijn.be/stops/503755", "https://data.delijn.be/stops/504965"], ["https://data.delijn.be/stops/104942", "https://data.delijn.be/stops/107217"], ["https://data.delijn.be/stops/301596", "https://data.delijn.be/stops/304475"], ["https://data.delijn.be/stops/207888", "https://data.delijn.be/stops/207891"], ["https://data.delijn.be/stops/101012", "https://data.delijn.be/stops/102694"], ["https://data.delijn.be/stops/101576", "https://data.delijn.be/stops/105462"], ["https://data.delijn.be/stops/402704", "https://data.delijn.be/stops/402867"], ["https://data.delijn.be/stops/208307", "https://data.delijn.be/stops/209307"], ["https://data.delijn.be/stops/209039", "https://data.delijn.be/stops/209047"], ["https://data.delijn.be/stops/505817", "https://data.delijn.be/stops/509120"], ["https://data.delijn.be/stops/204772", "https://data.delijn.be/stops/205730"], ["https://data.delijn.be/stops/303062", "https://data.delijn.be/stops/303091"], ["https://data.delijn.be/stops/503152", "https://data.delijn.be/stops/508152"], ["https://data.delijn.be/stops/301124", "https://data.delijn.be/stops/301229"], ["https://data.delijn.be/stops/409739", "https://data.delijn.be/stops/409999"], ["https://data.delijn.be/stops/305408", "https://data.delijn.be/stops/305421"], ["https://data.delijn.be/stops/408526", "https://data.delijn.be/stops/408688"], ["https://data.delijn.be/stops/101207", "https://data.delijn.be/stops/101661"], ["https://data.delijn.be/stops/406975", "https://data.delijn.be/stops/409468"], ["https://data.delijn.be/stops/201886", "https://data.delijn.be/stops/203976"], ["https://data.delijn.be/stops/205207", "https://data.delijn.be/stops/205472"], ["https://data.delijn.be/stops/107189", "https://data.delijn.be/stops/107736"], ["https://data.delijn.be/stops/203238", "https://data.delijn.be/stops/210076"], ["https://data.delijn.be/stops/108401", "https://data.delijn.be/stops/306638"], ["https://data.delijn.be/stops/103645", "https://data.delijn.be/stops/103651"], ["https://data.delijn.be/stops/204202", "https://data.delijn.be/stops/205081"], ["https://data.delijn.be/stops/308466", "https://data.delijn.be/stops/308468"], ["https://data.delijn.be/stops/107493", "https://data.delijn.be/stops/305796"], ["https://data.delijn.be/stops/105134", "https://data.delijn.be/stops/305825"], ["https://data.delijn.be/stops/304468", "https://data.delijn.be/stops/304555"], ["https://data.delijn.be/stops/103631", "https://data.delijn.be/stops/107566"], ["https://data.delijn.be/stops/208470", "https://data.delijn.be/stops/209674"], ["https://data.delijn.be/stops/508680", "https://data.delijn.be/stops/509815"], ["https://data.delijn.be/stops/300397", "https://data.delijn.be/stops/300398"], ["https://data.delijn.be/stops/300119", "https://data.delijn.be/stops/300133"], ["https://data.delijn.be/stops/204122", "https://data.delijn.be/stops/214004"], ["https://data.delijn.be/stops/203963", "https://data.delijn.be/stops/207270"], ["https://data.delijn.be/stops/404258", "https://data.delijn.be/stops/405124"], ["https://data.delijn.be/stops/408844", "https://data.delijn.be/stops/408846"], ["https://data.delijn.be/stops/207631", "https://data.delijn.be/stops/208655"], ["https://data.delijn.be/stops/201071", "https://data.delijn.be/stops/201072"], ["https://data.delijn.be/stops/504770", "https://data.delijn.be/stops/505919"], ["https://data.delijn.be/stops/503189", "https://data.delijn.be/stops/508189"], ["https://data.delijn.be/stops/307720", "https://data.delijn.be/stops/307722"], ["https://data.delijn.be/stops/403283", "https://data.delijn.be/stops/403360"], ["https://data.delijn.be/stops/104572", "https://data.delijn.be/stops/107531"], ["https://data.delijn.be/stops/205507", "https://data.delijn.be/stops/205508"], ["https://data.delijn.be/stops/306664", "https://data.delijn.be/stops/306665"], ["https://data.delijn.be/stops/404361", "https://data.delijn.be/stops/408762"], ["https://data.delijn.be/stops/103748", "https://data.delijn.be/stops/104467"], ["https://data.delijn.be/stops/200701", "https://data.delijn.be/stops/201411"], ["https://data.delijn.be/stops/503555", "https://data.delijn.be/stops/505191"], ["https://data.delijn.be/stops/108309", "https://data.delijn.be/stops/109374"], ["https://data.delijn.be/stops/109365", "https://data.delijn.be/stops/109367"], ["https://data.delijn.be/stops/209509", "https://data.delijn.be/stops/209510"], ["https://data.delijn.be/stops/502483", "https://data.delijn.be/stops/505078"], ["https://data.delijn.be/stops/305231", "https://data.delijn.be/stops/305232"], ["https://data.delijn.be/stops/404174", "https://data.delijn.be/stops/404219"], ["https://data.delijn.be/stops/207144", "https://data.delijn.be/stops/207145"], ["https://data.delijn.be/stops/407114", "https://data.delijn.be/stops/410148"], ["https://data.delijn.be/stops/400152", "https://data.delijn.be/stops/400153"], ["https://data.delijn.be/stops/403160", "https://data.delijn.be/stops/403221"], ["https://data.delijn.be/stops/402036", "https://data.delijn.be/stops/402038"], ["https://data.delijn.be/stops/209525", "https://data.delijn.be/stops/218017"], ["https://data.delijn.be/stops/502435", "https://data.delijn.be/stops/507420"], ["https://data.delijn.be/stops/403976", "https://data.delijn.be/stops/408709"], ["https://data.delijn.be/stops/101074", "https://data.delijn.be/stops/107187"], ["https://data.delijn.be/stops/401587", "https://data.delijn.be/stops/408635"], ["https://data.delijn.be/stops/202824", "https://data.delijn.be/stops/211022"], ["https://data.delijn.be/stops/403088", "https://data.delijn.be/stops/403095"], ["https://data.delijn.be/stops/404288", "https://data.delijn.be/stops/409747"], ["https://data.delijn.be/stops/407159", "https://data.delijn.be/stops/409856"], ["https://data.delijn.be/stops/400872", "https://data.delijn.be/stops/403586"], ["https://data.delijn.be/stops/405823", "https://data.delijn.be/stops/405833"], ["https://data.delijn.be/stops/404813", "https://data.delijn.be/stops/406991"], ["https://data.delijn.be/stops/506227", "https://data.delijn.be/stops/506418"], ["https://data.delijn.be/stops/208382", "https://data.delijn.be/stops/209382"], ["https://data.delijn.be/stops/108647", "https://data.delijn.be/stops/109680"], ["https://data.delijn.be/stops/405012", "https://data.delijn.be/stops/405019"], ["https://data.delijn.be/stops/302657", "https://data.delijn.be/stops/303259"], ["https://data.delijn.be/stops/501321", "https://data.delijn.be/stops/501546"], ["https://data.delijn.be/stops/503091", "https://data.delijn.be/stops/503103"], ["https://data.delijn.be/stops/108353", "https://data.delijn.be/stops/109335"], ["https://data.delijn.be/stops/102649", "https://data.delijn.be/stops/107793"], ["https://data.delijn.be/stops/302009", "https://data.delijn.be/stops/306341"], ["https://data.delijn.be/stops/200689", "https://data.delijn.be/stops/210081"], ["https://data.delijn.be/stops/202478", "https://data.delijn.be/stops/202481"], ["https://data.delijn.be/stops/302161", "https://data.delijn.be/stops/302177"], ["https://data.delijn.be/stops/206033", "https://data.delijn.be/stops/206215"], ["https://data.delijn.be/stops/205983", "https://data.delijn.be/stops/208677"], ["https://data.delijn.be/stops/403039", "https://data.delijn.be/stops/404817"], ["https://data.delijn.be/stops/300431", "https://data.delijn.be/stops/300438"], ["https://data.delijn.be/stops/503151", "https://data.delijn.be/stops/505910"], ["https://data.delijn.be/stops/505136", "https://data.delijn.be/stops/508668"], ["https://data.delijn.be/stops/400326", "https://data.delijn.be/stops/406769"], ["https://data.delijn.be/stops/400852", "https://data.delijn.be/stops/400853"], ["https://data.delijn.be/stops/305222", "https://data.delijn.be/stops/305321"], ["https://data.delijn.be/stops/500946", "https://data.delijn.be/stops/505415"], ["https://data.delijn.be/stops/506055", "https://data.delijn.be/stops/506057"], ["https://data.delijn.be/stops/106255", "https://data.delijn.be/stops/106257"], ["https://data.delijn.be/stops/300828", "https://data.delijn.be/stops/306641"], ["https://data.delijn.be/stops/208191", "https://data.delijn.be/stops/209405"], ["https://data.delijn.be/stops/504267", "https://data.delijn.be/stops/509267"], ["https://data.delijn.be/stops/304556", "https://data.delijn.be/stops/307571"], ["https://data.delijn.be/stops/106771", "https://data.delijn.be/stops/106807"], ["https://data.delijn.be/stops/208671", "https://data.delijn.be/stops/218021"], ["https://data.delijn.be/stops/208584", "https://data.delijn.be/stops/209697"], ["https://data.delijn.be/stops/203079", "https://data.delijn.be/stops/203493"], ["https://data.delijn.be/stops/502398", "https://data.delijn.be/stops/502413"], ["https://data.delijn.be/stops/103302", "https://data.delijn.be/stops/105768"], ["https://data.delijn.be/stops/201912", "https://data.delijn.be/stops/202967"], ["https://data.delijn.be/stops/106955", "https://data.delijn.be/stops/107271"], ["https://data.delijn.be/stops/301334", "https://data.delijn.be/stops/301342"], ["https://data.delijn.be/stops/503916", "https://data.delijn.be/stops/503927"], ["https://data.delijn.be/stops/200181", "https://data.delijn.be/stops/201181"], ["https://data.delijn.be/stops/207823", "https://data.delijn.be/stops/207824"], ["https://data.delijn.be/stops/403608", "https://data.delijn.be/stops/410038"], ["https://data.delijn.be/stops/200131", "https://data.delijn.be/stops/205556"], ["https://data.delijn.be/stops/200888", "https://data.delijn.be/stops/210056"], ["https://data.delijn.be/stops/406564", "https://data.delijn.be/stops/407200"], ["https://data.delijn.be/stops/401216", "https://data.delijn.be/stops/401338"], ["https://data.delijn.be/stops/206355", "https://data.delijn.be/stops/207344"], ["https://data.delijn.be/stops/501445", "https://data.delijn.be/stops/501484"], ["https://data.delijn.be/stops/204657", "https://data.delijn.be/stops/204658"], ["https://data.delijn.be/stops/106232", "https://data.delijn.be/stops/109803"], ["https://data.delijn.be/stops/101891", "https://data.delijn.be/stops/104952"], ["https://data.delijn.be/stops/204423", "https://data.delijn.be/stops/205434"], ["https://data.delijn.be/stops/108073", "https://data.delijn.be/stops/108841"], ["https://data.delijn.be/stops/407718", "https://data.delijn.be/stops/407729"], ["https://data.delijn.be/stops/408532", "https://data.delijn.be/stops/408750"], ["https://data.delijn.be/stops/300365", "https://data.delijn.be/stops/300402"], ["https://data.delijn.be/stops/206234", "https://data.delijn.be/stops/207233"], ["https://data.delijn.be/stops/104897", "https://data.delijn.be/stops/105444"], ["https://data.delijn.be/stops/101370", "https://data.delijn.be/stops/104785"], ["https://data.delijn.be/stops/202181", "https://data.delijn.be/stops/203182"], ["https://data.delijn.be/stops/400804", "https://data.delijn.be/stops/400879"], ["https://data.delijn.be/stops/203439", "https://data.delijn.be/stops/203482"], ["https://data.delijn.be/stops/505791", "https://data.delijn.be/stops/509433"], ["https://data.delijn.be/stops/404581", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/504477", "https://data.delijn.be/stops/509175"], ["https://data.delijn.be/stops/206883", "https://data.delijn.be/stops/207030"], ["https://data.delijn.be/stops/204711", "https://data.delijn.be/stops/205721"], ["https://data.delijn.be/stops/401828", "https://data.delijn.be/stops/406020"], ["https://data.delijn.be/stops/506771", "https://data.delijn.be/stops/506772"], ["https://data.delijn.be/stops/508693", "https://data.delijn.be/stops/508719"], ["https://data.delijn.be/stops/204076", "https://data.delijn.be/stops/205082"], ["https://data.delijn.be/stops/103231", "https://data.delijn.be/stops/103232"], ["https://data.delijn.be/stops/304480", "https://data.delijn.be/stops/304481"], ["https://data.delijn.be/stops/200959", "https://data.delijn.be/stops/201907"], ["https://data.delijn.be/stops/409144", "https://data.delijn.be/stops/409145"], ["https://data.delijn.be/stops/104468", "https://data.delijn.be/stops/104469"], ["https://data.delijn.be/stops/200421", "https://data.delijn.be/stops/211405"], ["https://data.delijn.be/stops/503458", "https://data.delijn.be/stops/508459"], ["https://data.delijn.be/stops/305154", "https://data.delijn.be/stops/305155"], ["https://data.delijn.be/stops/207664", "https://data.delijn.be/stops/209676"], ["https://data.delijn.be/stops/204703", "https://data.delijn.be/stops/205703"], ["https://data.delijn.be/stops/504578", "https://data.delijn.be/stops/505215"], ["https://data.delijn.be/stops/404247", "https://data.delijn.be/stops/409789"], ["https://data.delijn.be/stops/206795", "https://data.delijn.be/stops/208035"], ["https://data.delijn.be/stops/200391", "https://data.delijn.be/stops/208719"], ["https://data.delijn.be/stops/202117", "https://data.delijn.be/stops/202494"], ["https://data.delijn.be/stops/106801", "https://data.delijn.be/stops/106804"], ["https://data.delijn.be/stops/102021", "https://data.delijn.be/stops/109949"], ["https://data.delijn.be/stops/203873", "https://data.delijn.be/stops/209713"], ["https://data.delijn.be/stops/408164", "https://data.delijn.be/stops/409136"], ["https://data.delijn.be/stops/103991", "https://data.delijn.be/stops/105309"], ["https://data.delijn.be/stops/400052", "https://data.delijn.be/stops/400062"], ["https://data.delijn.be/stops/102237", "https://data.delijn.be/stops/102566"], ["https://data.delijn.be/stops/101024", "https://data.delijn.be/stops/105615"], ["https://data.delijn.be/stops/403307", "https://data.delijn.be/stops/403309"], ["https://data.delijn.be/stops/207678", "https://data.delijn.be/stops/207679"], ["https://data.delijn.be/stops/104953", "https://data.delijn.be/stops/406502"], ["https://data.delijn.be/stops/502300", "https://data.delijn.be/stops/505676"], ["https://data.delijn.be/stops/406316", "https://data.delijn.be/stops/406321"], ["https://data.delijn.be/stops/501115", "https://data.delijn.be/stops/506642"], ["https://data.delijn.be/stops/304698", "https://data.delijn.be/stops/304699"], ["https://data.delijn.be/stops/404709", "https://data.delijn.be/stops/406109"], ["https://data.delijn.be/stops/308748", "https://data.delijn.be/stops/308749"], ["https://data.delijn.be/stops/403954", "https://data.delijn.be/stops/404027"], ["https://data.delijn.be/stops/304669", "https://data.delijn.be/stops/304685"], ["https://data.delijn.be/stops/200339", "https://data.delijn.be/stops/201325"], ["https://data.delijn.be/stops/103121", "https://data.delijn.be/stops/104124"], ["https://data.delijn.be/stops/408082", "https://data.delijn.be/stops/408083"], ["https://data.delijn.be/stops/209131", "https://data.delijn.be/stops/209132"], ["https://data.delijn.be/stops/402865", "https://data.delijn.be/stops/402867"], ["https://data.delijn.be/stops/208478", "https://data.delijn.be/stops/209478"], ["https://data.delijn.be/stops/403302", "https://data.delijn.be/stops/405641"], ["https://data.delijn.be/stops/200839", "https://data.delijn.be/stops/200844"], ["https://data.delijn.be/stops/102835", "https://data.delijn.be/stops/103131"], ["https://data.delijn.be/stops/501436", "https://data.delijn.be/stops/501733"], ["https://data.delijn.be/stops/204750", "https://data.delijn.be/stops/204751"], ["https://data.delijn.be/stops/202429", "https://data.delijn.be/stops/203438"], ["https://data.delijn.be/stops/208664", "https://data.delijn.be/stops/208665"], ["https://data.delijn.be/stops/303576", "https://data.delijn.be/stops/305280"], ["https://data.delijn.be/stops/201646", "https://data.delijn.be/stops/201647"], ["https://data.delijn.be/stops/400861", "https://data.delijn.be/stops/400866"], ["https://data.delijn.be/stops/400227", "https://data.delijn.be/stops/410000"], ["https://data.delijn.be/stops/504286", "https://data.delijn.be/stops/509282"], ["https://data.delijn.be/stops/400410", "https://data.delijn.be/stops/406861"], ["https://data.delijn.be/stops/302130", "https://data.delijn.be/stops/305596"], ["https://data.delijn.be/stops/107900", "https://data.delijn.be/stops/107905"], ["https://data.delijn.be/stops/502591", "https://data.delijn.be/stops/507751"], ["https://data.delijn.be/stops/402749", "https://data.delijn.be/stops/405202"], ["https://data.delijn.be/stops/502500", "https://data.delijn.be/stops/505767"], ["https://data.delijn.be/stops/300455", "https://data.delijn.be/stops/305005"], ["https://data.delijn.be/stops/303063", "https://data.delijn.be/stops/303107"], ["https://data.delijn.be/stops/204774", "https://data.delijn.be/stops/205094"], ["https://data.delijn.be/stops/401340", "https://data.delijn.be/stops/406648"], ["https://data.delijn.be/stops/101494", "https://data.delijn.be/stops/108302"], ["https://data.delijn.be/stops/505988", "https://data.delijn.be/stops/509169"], ["https://data.delijn.be/stops/406834", "https://data.delijn.be/stops/407138"], ["https://data.delijn.be/stops/501446", "https://data.delijn.be/stops/501492"], ["https://data.delijn.be/stops/504154", "https://data.delijn.be/stops/504990"], ["https://data.delijn.be/stops/405879", "https://data.delijn.be/stops/409750"], ["https://data.delijn.be/stops/204124", "https://data.delijn.be/stops/205124"], ["https://data.delijn.be/stops/107345", "https://data.delijn.be/stops/108405"], ["https://data.delijn.be/stops/307695", "https://data.delijn.be/stops/307696"], ["https://data.delijn.be/stops/407744", "https://data.delijn.be/stops/409785"], ["https://data.delijn.be/stops/502656", "https://data.delijn.be/stops/507559"], ["https://data.delijn.be/stops/405277", "https://data.delijn.be/stops/405283"], ["https://data.delijn.be/stops/400784", "https://data.delijn.be/stops/400834"], ["https://data.delijn.be/stops/202857", "https://data.delijn.be/stops/203853"], ["https://data.delijn.be/stops/204513", "https://data.delijn.be/stops/204514"], ["https://data.delijn.be/stops/204123", "https://data.delijn.be/stops/204146"], ["https://data.delijn.be/stops/401248", "https://data.delijn.be/stops/401259"], ["https://data.delijn.be/stops/206352", "https://data.delijn.be/stops/206916"], ["https://data.delijn.be/stops/505371", "https://data.delijn.be/stops/508251"], ["https://data.delijn.be/stops/508729", "https://data.delijn.be/stops/508742"], ["https://data.delijn.be/stops/101992", "https://data.delijn.be/stops/104118"], ["https://data.delijn.be/stops/206510", "https://data.delijn.be/stops/207135"], ["https://data.delijn.be/stops/103503", "https://data.delijn.be/stops/109896"], ["https://data.delijn.be/stops/204158", "https://data.delijn.be/stops/205590"], ["https://data.delijn.be/stops/302760", "https://data.delijn.be/stops/302772"], ["https://data.delijn.be/stops/504045", "https://data.delijn.be/stops/504962"], ["https://data.delijn.be/stops/106423", "https://data.delijn.be/stops/106557"], ["https://data.delijn.be/stops/403314", "https://data.delijn.be/stops/410126"], ["https://data.delijn.be/stops/102158", "https://data.delijn.be/stops/104962"], ["https://data.delijn.be/stops/108488", "https://data.delijn.be/stops/305990"], ["https://data.delijn.be/stops/107546", "https://data.delijn.be/stops/109589"], ["https://data.delijn.be/stops/405251", "https://data.delijn.be/stops/408369"], ["https://data.delijn.be/stops/103235", "https://data.delijn.be/stops/103250"], ["https://data.delijn.be/stops/505752", "https://data.delijn.be/stops/508327"], ["https://data.delijn.be/stops/406194", "https://data.delijn.be/stops/409529"], ["https://data.delijn.be/stops/300086", "https://data.delijn.be/stops/307361"], ["https://data.delijn.be/stops/105383", "https://data.delijn.be/stops/105389"], ["https://data.delijn.be/stops/203494", "https://data.delijn.be/stops/211043"], ["https://data.delijn.be/stops/209432", "https://data.delijn.be/stops/209433"], ["https://data.delijn.be/stops/301789", "https://data.delijn.be/stops/308886"], ["https://data.delijn.be/stops/404285", "https://data.delijn.be/stops/407273"], ["https://data.delijn.be/stops/301092", "https://data.delijn.be/stops/301093"], ["https://data.delijn.be/stops/502043", "https://data.delijn.be/stops/507591"], ["https://data.delijn.be/stops/502553", "https://data.delijn.be/stops/507656"], ["https://data.delijn.be/stops/505299", "https://data.delijn.be/stops/509447"], ["https://data.delijn.be/stops/407537", "https://data.delijn.be/stops/409112"], ["https://data.delijn.be/stops/408593", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/102529", "https://data.delijn.be/stops/408352"], ["https://data.delijn.be/stops/109448", "https://data.delijn.be/stops/109450"], ["https://data.delijn.be/stops/305146", "https://data.delijn.be/stops/305185"], ["https://data.delijn.be/stops/208422", "https://data.delijn.be/stops/208742"], ["https://data.delijn.be/stops/405492", "https://data.delijn.be/stops/409318"], ["https://data.delijn.be/stops/301114", "https://data.delijn.be/stops/307636"], ["https://data.delijn.be/stops/108838", "https://data.delijn.be/stops/108853"], ["https://data.delijn.be/stops/503126", "https://data.delijn.be/stops/508126"], ["https://data.delijn.be/stops/109087", "https://data.delijn.be/stops/109317"], ["https://data.delijn.be/stops/401629", "https://data.delijn.be/stops/308218"], ["https://data.delijn.be/stops/201945", "https://data.delijn.be/stops/201946"], ["https://data.delijn.be/stops/301626", "https://data.delijn.be/stops/301627"], ["https://data.delijn.be/stops/202176", "https://data.delijn.be/stops/203497"], ["https://data.delijn.be/stops/403772", "https://data.delijn.be/stops/403773"], ["https://data.delijn.be/stops/107346", "https://data.delijn.be/stops/107347"], ["https://data.delijn.be/stops/206723", "https://data.delijn.be/stops/207986"], ["https://data.delijn.be/stops/101951", "https://data.delijn.be/stops/108794"], ["https://data.delijn.be/stops/504586", "https://data.delijn.be/stops/509581"], ["https://data.delijn.be/stops/202693", "https://data.delijn.be/stops/203678"], ["https://data.delijn.be/stops/404883", "https://data.delijn.be/stops/404964"], ["https://data.delijn.be/stops/405288", "https://data.delijn.be/stops/406253"], ["https://data.delijn.be/stops/401864", "https://data.delijn.be/stops/410354"], ["https://data.delijn.be/stops/502032", "https://data.delijn.be/stops/507032"], ["https://data.delijn.be/stops/109910", "https://data.delijn.be/stops/301152"], ["https://data.delijn.be/stops/304355", "https://data.delijn.be/stops/304356"], ["https://data.delijn.be/stops/105206", "https://data.delijn.be/stops/105207"], ["https://data.delijn.be/stops/108687", "https://data.delijn.be/stops/108688"], ["https://data.delijn.be/stops/201360", "https://data.delijn.be/stops/201361"], ["https://data.delijn.be/stops/401426", "https://data.delijn.be/stops/401445"], ["https://data.delijn.be/stops/405794", "https://data.delijn.be/stops/409437"], ["https://data.delijn.be/stops/104713", "https://data.delijn.be/stops/104736"], ["https://data.delijn.be/stops/303020", "https://data.delijn.be/stops/304228"], ["https://data.delijn.be/stops/508115", "https://data.delijn.be/stops/508884"], ["https://data.delijn.be/stops/405581", "https://data.delijn.be/stops/405585"], ["https://data.delijn.be/stops/503217", "https://data.delijn.be/stops/509951"], ["https://data.delijn.be/stops/303420", "https://data.delijn.be/stops/303462"], ["https://data.delijn.be/stops/205481", "https://data.delijn.be/stops/205482"], ["https://data.delijn.be/stops/406635", "https://data.delijn.be/stops/407442"], ["https://data.delijn.be/stops/308151", "https://data.delijn.be/stops/308166"], ["https://data.delijn.be/stops/303100", "https://data.delijn.be/stops/303119"], ["https://data.delijn.be/stops/307476", "https://data.delijn.be/stops/307478"], ["https://data.delijn.be/stops/305587", "https://data.delijn.be/stops/306765"], ["https://data.delijn.be/stops/202762", "https://data.delijn.be/stops/203762"], ["https://data.delijn.be/stops/200429", "https://data.delijn.be/stops/201549"], ["https://data.delijn.be/stops/201560", "https://data.delijn.be/stops/210067"], ["https://data.delijn.be/stops/102698", "https://data.delijn.be/stops/103743"], ["https://data.delijn.be/stops/504520", "https://data.delijn.be/stops/504836"], ["https://data.delijn.be/stops/507814", "https://data.delijn.be/stops/508462"], ["https://data.delijn.be/stops/401786", "https://data.delijn.be/stops/406144"], ["https://data.delijn.be/stops/102912", "https://data.delijn.be/stops/106705"], ["https://data.delijn.be/stops/103037", "https://data.delijn.be/stops/103038"], ["https://data.delijn.be/stops/206582", "https://data.delijn.be/stops/207822"], ["https://data.delijn.be/stops/408196", "https://data.delijn.be/stops/408414"], ["https://data.delijn.be/stops/405980", "https://data.delijn.be/stops/405981"], ["https://data.delijn.be/stops/101296", "https://data.delijn.be/stops/105492"], ["https://data.delijn.be/stops/103532", "https://data.delijn.be/stops/106335"], ["https://data.delijn.be/stops/108446", "https://data.delijn.be/stops/108449"], ["https://data.delijn.be/stops/208795", "https://data.delijn.be/stops/209231"], ["https://data.delijn.be/stops/505971", "https://data.delijn.be/stops/509607"], ["https://data.delijn.be/stops/201153", "https://data.delijn.be/stops/203358"], ["https://data.delijn.be/stops/505780", "https://data.delijn.be/stops/509880"], ["https://data.delijn.be/stops/103022", "https://data.delijn.be/stops/103023"], ["https://data.delijn.be/stops/201940", "https://data.delijn.be/stops/210098"], ["https://data.delijn.be/stops/403193", "https://data.delijn.be/stops/403440"], ["https://data.delijn.be/stops/202084", "https://data.delijn.be/stops/203084"], ["https://data.delijn.be/stops/109318", "https://data.delijn.be/stops/109354"], ["https://data.delijn.be/stops/405438", "https://data.delijn.be/stops/408589"], ["https://data.delijn.be/stops/501636", "https://data.delijn.be/stops/506496"], ["https://data.delijn.be/stops/103027", "https://data.delijn.be/stops/307523"], ["https://data.delijn.be/stops/505255", "https://data.delijn.be/stops/508922"], ["https://data.delijn.be/stops/302585", "https://data.delijn.be/stops/302601"], ["https://data.delijn.be/stops/407807", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/303240", "https://data.delijn.be/stops/306749"], ["https://data.delijn.be/stops/408715", "https://data.delijn.be/stops/408736"], ["https://data.delijn.be/stops/109320", "https://data.delijn.be/stops/109322"], ["https://data.delijn.be/stops/102642", "https://data.delijn.be/stops/107867"], ["https://data.delijn.be/stops/406192", "https://data.delijn.be/stops/406818"], ["https://data.delijn.be/stops/405972", "https://data.delijn.be/stops/405973"], ["https://data.delijn.be/stops/202654", "https://data.delijn.be/stops/203653"], ["https://data.delijn.be/stops/304933", "https://data.delijn.be/stops/305244"], ["https://data.delijn.be/stops/205312", "https://data.delijn.be/stops/205351"], ["https://data.delijn.be/stops/102485", "https://data.delijn.be/stops/104410"], ["https://data.delijn.be/stops/303977", "https://data.delijn.be/stops/303978"], ["https://data.delijn.be/stops/202862", "https://data.delijn.be/stops/203862"], ["https://data.delijn.be/stops/300795", "https://data.delijn.be/stops/303121"], ["https://data.delijn.be/stops/508434", "https://data.delijn.be/stops/508443"], ["https://data.delijn.be/stops/505612", "https://data.delijn.be/stops/509781"], ["https://data.delijn.be/stops/408062", "https://data.delijn.be/stops/408089"], ["https://data.delijn.be/stops/408637", "https://data.delijn.be/stops/408655"], ["https://data.delijn.be/stops/502038", "https://data.delijn.be/stops/502058"], ["https://data.delijn.be/stops/102695", "https://data.delijn.be/stops/102895"], ["https://data.delijn.be/stops/303852", "https://data.delijn.be/stops/303985"], ["https://data.delijn.be/stops/106770", "https://data.delijn.be/stops/106868"], ["https://data.delijn.be/stops/302682", "https://data.delijn.be/stops/306185"], ["https://data.delijn.be/stops/300652", "https://data.delijn.be/stops/300654"], ["https://data.delijn.be/stops/109073", "https://data.delijn.be/stops/109074"], ["https://data.delijn.be/stops/202666", "https://data.delijn.be/stops/203666"], ["https://data.delijn.be/stops/502067", "https://data.delijn.be/stops/502454"], ["https://data.delijn.be/stops/408277", "https://data.delijn.be/stops/408341"], ["https://data.delijn.be/stops/205578", "https://data.delijn.be/stops/205590"], ["https://data.delijn.be/stops/401528", "https://data.delijn.be/stops/401885"], ["https://data.delijn.be/stops/201696", "https://data.delijn.be/stops/203386"], ["https://data.delijn.be/stops/305595", "https://data.delijn.be/stops/305609"], ["https://data.delijn.be/stops/501466", "https://data.delijn.be/stops/505397"], ["https://data.delijn.be/stops/501744", "https://data.delijn.be/stops/504130"], ["https://data.delijn.be/stops/404714", "https://data.delijn.be/stops/404816"], ["https://data.delijn.be/stops/101487", "https://data.delijn.be/stops/101945"], ["https://data.delijn.be/stops/402621", "https://data.delijn.be/stops/402622"], ["https://data.delijn.be/stops/307542", "https://data.delijn.be/stops/307543"], ["https://data.delijn.be/stops/408678", "https://data.delijn.be/stops/408788"], ["https://data.delijn.be/stops/104881", "https://data.delijn.be/stops/104887"], ["https://data.delijn.be/stops/106560", "https://data.delijn.be/stops/106561"], ["https://data.delijn.be/stops/509234", "https://data.delijn.be/stops/509244"], ["https://data.delijn.be/stops/200031", "https://data.delijn.be/stops/201242"], ["https://data.delijn.be/stops/501466", "https://data.delijn.be/stops/501469"], ["https://data.delijn.be/stops/502590", "https://data.delijn.be/stops/507590"], ["https://data.delijn.be/stops/504729", "https://data.delijn.be/stops/509491"], ["https://data.delijn.be/stops/108741", "https://data.delijn.be/stops/109501"], ["https://data.delijn.be/stops/505684", "https://data.delijn.be/stops/507304"], ["https://data.delijn.be/stops/301370", "https://data.delijn.be/stops/304695"], ["https://data.delijn.be/stops/108218", "https://data.delijn.be/stops/108219"], ["https://data.delijn.be/stops/102309", "https://data.delijn.be/stops/105553"], ["https://data.delijn.be/stops/406472", "https://data.delijn.be/stops/406476"], ["https://data.delijn.be/stops/200707", "https://data.delijn.be/stops/202588"], ["https://data.delijn.be/stops/303483", "https://data.delijn.be/stops/303485"], ["https://data.delijn.be/stops/300421", "https://data.delijn.be/stops/300442"], ["https://data.delijn.be/stops/303169", "https://data.delijn.be/stops/304320"], ["https://data.delijn.be/stops/102330", "https://data.delijn.be/stops/104565"], ["https://data.delijn.be/stops/404307", "https://data.delijn.be/stops/409659"], ["https://data.delijn.be/stops/102536", "https://data.delijn.be/stops/408342"], ["https://data.delijn.be/stops/502111", "https://data.delijn.be/stops/502116"], ["https://data.delijn.be/stops/206224", "https://data.delijn.be/stops/207223"], ["https://data.delijn.be/stops/108507", "https://data.delijn.be/stops/304920"], ["https://data.delijn.be/stops/406207", "https://data.delijn.be/stops/406448"], ["https://data.delijn.be/stops/501658", "https://data.delijn.be/stops/501659"], ["https://data.delijn.be/stops/206905", "https://data.delijn.be/stops/207216"], ["https://data.delijn.be/stops/501140", "https://data.delijn.be/stops/501395"], ["https://data.delijn.be/stops/303692", "https://data.delijn.be/stops/303693"], ["https://data.delijn.be/stops/505688", "https://data.delijn.be/stops/505690"], ["https://data.delijn.be/stops/104840", "https://data.delijn.be/stops/105630"], ["https://data.delijn.be/stops/504366", "https://data.delijn.be/stops/509369"], ["https://data.delijn.be/stops/301383", "https://data.delijn.be/stops/306645"], ["https://data.delijn.be/stops/402221", "https://data.delijn.be/stops/402249"], ["https://data.delijn.be/stops/401422", "https://data.delijn.be/stops/401423"], ["https://data.delijn.be/stops/200238", "https://data.delijn.be/stops/201237"], ["https://data.delijn.be/stops/207725", "https://data.delijn.be/stops/207881"], ["https://data.delijn.be/stops/403739", "https://data.delijn.be/stops/403813"], ["https://data.delijn.be/stops/303503", "https://data.delijn.be/stops/303506"], ["https://data.delijn.be/stops/406066", "https://data.delijn.be/stops/406141"], ["https://data.delijn.be/stops/401062", "https://data.delijn.be/stops/408552"], ["https://data.delijn.be/stops/301258", "https://data.delijn.be/stops/301262"], ["https://data.delijn.be/stops/203117", "https://data.delijn.be/stops/203171"], ["https://data.delijn.be/stops/200188", "https://data.delijn.be/stops/205951"], ["https://data.delijn.be/stops/105196", "https://data.delijn.be/stops/108884"], ["https://data.delijn.be/stops/207762", "https://data.delijn.be/stops/207785"], ["https://data.delijn.be/stops/401295", "https://data.delijn.be/stops/401368"], ["https://data.delijn.be/stops/101468", "https://data.delijn.be/stops/109264"], ["https://data.delijn.be/stops/200628", "https://data.delijn.be/stops/202903"], ["https://data.delijn.be/stops/304511", "https://data.delijn.be/stops/306344"], ["https://data.delijn.be/stops/404819", "https://data.delijn.be/stops/410045"], ["https://data.delijn.be/stops/507912", "https://data.delijn.be/stops/508909"], ["https://data.delijn.be/stops/102899", "https://data.delijn.be/stops/104711"], ["https://data.delijn.be/stops/206990", "https://data.delijn.be/stops/207970"], ["https://data.delijn.be/stops/408222", "https://data.delijn.be/stops/408914"], ["https://data.delijn.be/stops/301958", "https://data.delijn.be/stops/302398"], ["https://data.delijn.be/stops/304617", "https://data.delijn.be/stops/304618"], ["https://data.delijn.be/stops/209705", "https://data.delijn.be/stops/219016"], ["https://data.delijn.be/stops/301411", "https://data.delijn.be/stops/303626"], ["https://data.delijn.be/stops/402802", "https://data.delijn.be/stops/409045"], ["https://data.delijn.be/stops/503919", "https://data.delijn.be/stops/509108"], ["https://data.delijn.be/stops/204072", "https://data.delijn.be/stops/204187"], ["https://data.delijn.be/stops/301856", "https://data.delijn.be/stops/301857"], ["https://data.delijn.be/stops/208147", "https://data.delijn.be/stops/209677"], ["https://data.delijn.be/stops/409345", "https://data.delijn.be/stops/409346"], ["https://data.delijn.be/stops/107703", "https://data.delijn.be/stops/109173"], ["https://data.delijn.be/stops/304254", "https://data.delijn.be/stops/304272"], ["https://data.delijn.be/stops/402559", "https://data.delijn.be/stops/402567"], ["https://data.delijn.be/stops/101620", "https://data.delijn.be/stops/102866"], ["https://data.delijn.be/stops/307158", "https://data.delijn.be/stops/307159"], ["https://data.delijn.be/stops/102722", "https://data.delijn.be/stops/108307"], ["https://data.delijn.be/stops/503420", "https://data.delijn.be/stops/508408"], ["https://data.delijn.be/stops/200951", "https://data.delijn.be/stops/203393"], ["https://data.delijn.be/stops/305960", "https://data.delijn.be/stops/305964"], ["https://data.delijn.be/stops/204612", "https://data.delijn.be/stops/205612"], ["https://data.delijn.be/stops/503153", "https://data.delijn.be/stops/508153"], ["https://data.delijn.be/stops/505303", "https://data.delijn.be/stops/505367"], ["https://data.delijn.be/stops/105465", "https://data.delijn.be/stops/105670"], ["https://data.delijn.be/stops/500001", "https://data.delijn.be/stops/505438"], ["https://data.delijn.be/stops/203207", "https://data.delijn.be/stops/203208"], ["https://data.delijn.be/stops/403745", "https://data.delijn.be/stops/403791"], ["https://data.delijn.be/stops/501172", "https://data.delijn.be/stops/501177"], ["https://data.delijn.be/stops/200129", "https://data.delijn.be/stops/200300"], ["https://data.delijn.be/stops/300464", "https://data.delijn.be/stops/300466"], ["https://data.delijn.be/stops/402712", "https://data.delijn.be/stops/308175"], ["https://data.delijn.be/stops/503627", "https://data.delijn.be/stops/508622"], ["https://data.delijn.be/stops/501016", "https://data.delijn.be/stops/501412"], ["https://data.delijn.be/stops/304904", "https://data.delijn.be/stops/306408"], ["https://data.delijn.be/stops/304300", "https://data.delijn.be/stops/306826"], ["https://data.delijn.be/stops/307972", "https://data.delijn.be/stops/307975"], ["https://data.delijn.be/stops/301026", "https://data.delijn.be/stops/301034"], ["https://data.delijn.be/stops/104858", "https://data.delijn.be/stops/107817"], ["https://data.delijn.be/stops/302492", "https://data.delijn.be/stops/308835"], ["https://data.delijn.be/stops/402842", "https://data.delijn.be/stops/402843"], ["https://data.delijn.be/stops/101481", "https://data.delijn.be/stops/108213"], ["https://data.delijn.be/stops/308444", "https://data.delijn.be/stops/308693"], ["https://data.delijn.be/stops/508650", "https://data.delijn.be/stops/509757"], ["https://data.delijn.be/stops/107897", "https://data.delijn.be/stops/108953"], ["https://data.delijn.be/stops/503197", "https://data.delijn.be/stops/503205"], ["https://data.delijn.be/stops/501671", "https://data.delijn.be/stops/506433"], ["https://data.delijn.be/stops/304022", "https://data.delijn.be/stops/307929"], ["https://data.delijn.be/stops/501303", "https://data.delijn.be/stops/501500"], ["https://data.delijn.be/stops/505159", "https://data.delijn.be/stops/508838"], ["https://data.delijn.be/stops/201877", "https://data.delijn.be/stops/211033"], ["https://data.delijn.be/stops/209543", "https://data.delijn.be/stops/209559"], ["https://data.delijn.be/stops/405408", "https://data.delijn.be/stops/302832"], ["https://data.delijn.be/stops/204355", "https://data.delijn.be/stops/204762"], ["https://data.delijn.be/stops/503478", "https://data.delijn.be/stops/507814"], ["https://data.delijn.be/stops/106691", "https://data.delijn.be/stops/109390"], ["https://data.delijn.be/stops/506164", "https://data.delijn.be/stops/506165"], ["https://data.delijn.be/stops/303753", "https://data.delijn.be/stops/303788"], ["https://data.delijn.be/stops/104051", "https://data.delijn.be/stops/108096"], ["https://data.delijn.be/stops/406165", "https://data.delijn.be/stops/406427"], ["https://data.delijn.be/stops/403714", "https://data.delijn.be/stops/406709"], ["https://data.delijn.be/stops/503271", "https://data.delijn.be/stops/508267"], ["https://data.delijn.be/stops/109620", "https://data.delijn.be/stops/109659"], ["https://data.delijn.be/stops/401899", "https://data.delijn.be/stops/410359"], ["https://data.delijn.be/stops/300025", "https://data.delijn.be/stops/300404"], ["https://data.delijn.be/stops/107247", "https://data.delijn.be/stops/107250"], ["https://data.delijn.be/stops/502271", "https://data.delijn.be/stops/505013"], ["https://data.delijn.be/stops/304441", "https://data.delijn.be/stops/307717"], ["https://data.delijn.be/stops/304800", "https://data.delijn.be/stops/304811"], ["https://data.delijn.be/stops/201831", "https://data.delijn.be/stops/209259"], ["https://data.delijn.be/stops/206532", "https://data.delijn.be/stops/207532"], ["https://data.delijn.be/stops/206351", "https://data.delijn.be/stops/206362"], ["https://data.delijn.be/stops/304379", "https://data.delijn.be/stops/304391"], ["https://data.delijn.be/stops/101683", "https://data.delijn.be/stops/101687"], ["https://data.delijn.be/stops/200490", "https://data.delijn.be/stops/201489"], ["https://data.delijn.be/stops/400826", "https://data.delijn.be/stops/402011"], ["https://data.delijn.be/stops/400266", "https://data.delijn.be/stops/400267"], ["https://data.delijn.be/stops/504583", "https://data.delijn.be/stops/509583"], ["https://data.delijn.be/stops/303843", "https://data.delijn.be/stops/303856"], ["https://data.delijn.be/stops/206066", "https://data.delijn.be/stops/207067"], ["https://data.delijn.be/stops/305599", "https://data.delijn.be/stops/305629"], ["https://data.delijn.be/stops/104344", "https://data.delijn.be/stops/104348"], ["https://data.delijn.be/stops/303771", "https://data.delijn.be/stops/303784"], ["https://data.delijn.be/stops/502079", "https://data.delijn.be/stops/507080"], ["https://data.delijn.be/stops/206235", "https://data.delijn.be/stops/206864"], ["https://data.delijn.be/stops/203111", "https://data.delijn.be/stops/205797"], ["https://data.delijn.be/stops/505734", "https://data.delijn.be/stops/505780"], ["https://data.delijn.be/stops/200977", "https://data.delijn.be/stops/219953"], ["https://data.delijn.be/stops/503660", "https://data.delijn.be/stops/508660"], ["https://data.delijn.be/stops/406220", "https://data.delijn.be/stops/410043"], ["https://data.delijn.be/stops/400725", "https://data.delijn.be/stops/410393"], ["https://data.delijn.be/stops/206944", "https://data.delijn.be/stops/207944"], ["https://data.delijn.be/stops/503114", "https://data.delijn.be/stops/508787"], ["https://data.delijn.be/stops/400683", "https://data.delijn.be/stops/408972"], ["https://data.delijn.be/stops/106704", "https://data.delijn.be/stops/106706"], ["https://data.delijn.be/stops/405300", "https://data.delijn.be/stops/405405"], ["https://data.delijn.be/stops/407460", "https://data.delijn.be/stops/407556"], ["https://data.delijn.be/stops/504967", "https://data.delijn.be/stops/508719"], ["https://data.delijn.be/stops/401526", "https://data.delijn.be/stops/410207"], ["https://data.delijn.be/stops/108419", "https://data.delijn.be/stops/109572"], ["https://data.delijn.be/stops/109147", "https://data.delijn.be/stops/109149"], ["https://data.delijn.be/stops/403962", "https://data.delijn.be/stops/408709"], ["https://data.delijn.be/stops/102247", "https://data.delijn.be/stops/105863"], ["https://data.delijn.be/stops/102183", "https://data.delijn.be/stops/107132"], ["https://data.delijn.be/stops/206123", "https://data.delijn.be/stops/306720"], ["https://data.delijn.be/stops/201493", "https://data.delijn.be/stops/202292"], ["https://data.delijn.be/stops/200254", "https://data.delijn.be/stops/202559"], ["https://data.delijn.be/stops/301289", "https://data.delijn.be/stops/304694"], ["https://data.delijn.be/stops/409215", "https://data.delijn.be/stops/409220"], ["https://data.delijn.be/stops/202463", "https://data.delijn.be/stops/202464"], ["https://data.delijn.be/stops/102477", "https://data.delijn.be/stops/400178"], ["https://data.delijn.be/stops/507687", "https://data.delijn.be/stops/508338"], ["https://data.delijn.be/stops/107933", "https://data.delijn.be/stops/205563"], ["https://data.delijn.be/stops/301268", "https://data.delijn.be/stops/308011"], ["https://data.delijn.be/stops/503095", "https://data.delijn.be/stops/503096"], ["https://data.delijn.be/stops/200222", "https://data.delijn.be/stops/201783"], ["https://data.delijn.be/stops/204437", "https://data.delijn.be/stops/205425"], ["https://data.delijn.be/stops/400617", "https://data.delijn.be/stops/408229"], ["https://data.delijn.be/stops/307906", "https://data.delijn.be/stops/308273"], ["https://data.delijn.be/stops/501388", "https://data.delijn.be/stops/501493"], ["https://data.delijn.be/stops/501742", "https://data.delijn.be/stops/504503"], ["https://data.delijn.be/stops/206799", "https://data.delijn.be/stops/209622"], ["https://data.delijn.be/stops/307813", "https://data.delijn.be/stops/307821"], ["https://data.delijn.be/stops/501114", "https://data.delijn.be/stops/506732"], ["https://data.delijn.be/stops/503787", "https://data.delijn.be/stops/505962"], ["https://data.delijn.be/stops/400818", "https://data.delijn.be/stops/403580"], ["https://data.delijn.be/stops/106666", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/204407", "https://data.delijn.be/stops/205205"], ["https://data.delijn.be/stops/301834", "https://data.delijn.be/stops/301847"], ["https://data.delijn.be/stops/200662", "https://data.delijn.be/stops/201463"], ["https://data.delijn.be/stops/103641", "https://data.delijn.be/stops/103643"], ["https://data.delijn.be/stops/307506", "https://data.delijn.be/stops/307508"], ["https://data.delijn.be/stops/401410", "https://data.delijn.be/stops/301088"], ["https://data.delijn.be/stops/503291", "https://data.delijn.be/stops/509936"], ["https://data.delijn.be/stops/101464", "https://data.delijn.be/stops/101466"], ["https://data.delijn.be/stops/108077", "https://data.delijn.be/stops/108079"], ["https://data.delijn.be/stops/102746", "https://data.delijn.be/stops/106412"], ["https://data.delijn.be/stops/204739", "https://data.delijn.be/stops/205738"], ["https://data.delijn.be/stops/503048", "https://data.delijn.be/stops/503049"], ["https://data.delijn.be/stops/105417", "https://data.delijn.be/stops/105421"], ["https://data.delijn.be/stops/406550", "https://data.delijn.be/stops/406566"], ["https://data.delijn.be/stops/502324", "https://data.delijn.be/stops/507335"], ["https://data.delijn.be/stops/106264", "https://data.delijn.be/stops/106342"], ["https://data.delijn.be/stops/107417", "https://data.delijn.be/stops/109796"], ["https://data.delijn.be/stops/203076", "https://data.delijn.be/stops/210122"], ["https://data.delijn.be/stops/208001", "https://data.delijn.be/stops/208002"], ["https://data.delijn.be/stops/304322", "https://data.delijn.be/stops/304323"], ["https://data.delijn.be/stops/202833", "https://data.delijn.be/stops/209638"], ["https://data.delijn.be/stops/200315", "https://data.delijn.be/stops/210026"], ["https://data.delijn.be/stops/505328", "https://data.delijn.be/stops/505329"], ["https://data.delijn.be/stops/200530", "https://data.delijn.be/stops/201531"], ["https://data.delijn.be/stops/101974", "https://data.delijn.be/stops/109065"], ["https://data.delijn.be/stops/302287", "https://data.delijn.be/stops/302299"], ["https://data.delijn.be/stops/108841", "https://data.delijn.be/stops/108842"], ["https://data.delijn.be/stops/200704", "https://data.delijn.be/stops/202574"], ["https://data.delijn.be/stops/200011", "https://data.delijn.be/stops/200014"], ["https://data.delijn.be/stops/503034", "https://data.delijn.be/stops/503035"], ["https://data.delijn.be/stops/305334", "https://data.delijn.be/stops/307592"], ["https://data.delijn.be/stops/301694", "https://data.delijn.be/stops/301702"], ["https://data.delijn.be/stops/206916", "https://data.delijn.be/stops/207729"], ["https://data.delijn.be/stops/504361", "https://data.delijn.be/stops/509365"], ["https://data.delijn.be/stops/206063", "https://data.delijn.be/stops/207063"], ["https://data.delijn.be/stops/401582", "https://data.delijn.be/stops/405502"], ["https://data.delijn.be/stops/209584", "https://data.delijn.be/stops/209585"], ["https://data.delijn.be/stops/502209", "https://data.delijn.be/stops/505329"], ["https://data.delijn.be/stops/105317", "https://data.delijn.be/stops/105321"], ["https://data.delijn.be/stops/202934", "https://data.delijn.be/stops/203934"], ["https://data.delijn.be/stops/503116", "https://data.delijn.be/stops/508116"], ["https://data.delijn.be/stops/402311", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/408662", "https://data.delijn.be/stops/408743"], ["https://data.delijn.be/stops/200977", "https://data.delijn.be/stops/202905"], ["https://data.delijn.be/stops/405002", "https://data.delijn.be/stops/405003"], ["https://data.delijn.be/stops/504468", "https://data.delijn.be/stops/504698"], ["https://data.delijn.be/stops/109854", "https://data.delijn.be/stops/109855"], ["https://data.delijn.be/stops/207560", "https://data.delijn.be/stops/207570"], ["https://data.delijn.be/stops/504399", "https://data.delijn.be/stops/504409"], ["https://data.delijn.be/stops/509832", "https://data.delijn.be/stops/509833"], ["https://data.delijn.be/stops/206196", "https://data.delijn.be/stops/206220"], ["https://data.delijn.be/stops/109193", "https://data.delijn.be/stops/109228"], ["https://data.delijn.be/stops/307264", "https://data.delijn.be/stops/307776"], ["https://data.delijn.be/stops/202172", "https://data.delijn.be/stops/202173"], ["https://data.delijn.be/stops/505701", "https://data.delijn.be/stops/505703"], ["https://data.delijn.be/stops/301351", "https://data.delijn.be/stops/304812"], ["https://data.delijn.be/stops/105611", "https://data.delijn.be/stops/105612"], ["https://data.delijn.be/stops/305048", "https://data.delijn.be/stops/305049"], ["https://data.delijn.be/stops/105647", "https://data.delijn.be/stops/105649"], ["https://data.delijn.be/stops/504677", "https://data.delijn.be/stops/504858"], ["https://data.delijn.be/stops/300956", "https://data.delijn.be/stops/300974"], ["https://data.delijn.be/stops/208647", "https://data.delijn.be/stops/209647"], ["https://data.delijn.be/stops/405369", "https://data.delijn.be/stops/405373"], ["https://data.delijn.be/stops/300753", "https://data.delijn.be/stops/300782"], ["https://data.delijn.be/stops/102763", "https://data.delijn.be/stops/103587"], ["https://data.delijn.be/stops/502173", "https://data.delijn.be/stops/507173"], ["https://data.delijn.be/stops/104099", "https://data.delijn.be/stops/107235"], ["https://data.delijn.be/stops/108186", "https://data.delijn.be/stops/108329"], ["https://data.delijn.be/stops/302922", "https://data.delijn.be/stops/303043"], ["https://data.delijn.be/stops/207165", "https://data.delijn.be/stops/303792"], ["https://data.delijn.be/stops/108767", "https://data.delijn.be/stops/109272"], ["https://data.delijn.be/stops/101579", "https://data.delijn.be/stops/105458"], ["https://data.delijn.be/stops/400724", "https://data.delijn.be/stops/404331"], ["https://data.delijn.be/stops/404286", "https://data.delijn.be/stops/409494"], ["https://data.delijn.be/stops/401053", "https://data.delijn.be/stops/408958"], ["https://data.delijn.be/stops/101296", "https://data.delijn.be/stops/102093"], ["https://data.delijn.be/stops/200832", "https://data.delijn.be/stops/505060"], ["https://data.delijn.be/stops/509083", "https://data.delijn.be/stops/509610"], ["https://data.delijn.be/stops/301703", "https://data.delijn.be/stops/305230"], ["https://data.delijn.be/stops/304012", "https://data.delijn.be/stops/304013"], ["https://data.delijn.be/stops/401489", "https://data.delijn.be/stops/406808"], ["https://data.delijn.be/stops/102288", "https://data.delijn.be/stops/109008"], ["https://data.delijn.be/stops/203600", "https://data.delijn.be/stops/203601"], ["https://data.delijn.be/stops/202751", "https://data.delijn.be/stops/203758"], ["https://data.delijn.be/stops/504597", "https://data.delijn.be/stops/509595"], ["https://data.delijn.be/stops/404972", "https://data.delijn.be/stops/404974"], ["https://data.delijn.be/stops/308725", "https://data.delijn.be/stops/308726"], ["https://data.delijn.be/stops/103999", "https://data.delijn.be/stops/106884"], ["https://data.delijn.be/stops/300023", "https://data.delijn.be/stops/300387"], ["https://data.delijn.be/stops/101141", "https://data.delijn.be/stops/102831"], ["https://data.delijn.be/stops/204037", "https://data.delijn.be/stops/205037"], ["https://data.delijn.be/stops/405476", "https://data.delijn.be/stops/406614"], ["https://data.delijn.be/stops/202111", "https://data.delijn.be/stops/205797"], ["https://data.delijn.be/stops/101007", "https://data.delijn.be/stops/107980"], ["https://data.delijn.be/stops/109207", "https://data.delijn.be/stops/109226"], ["https://data.delijn.be/stops/405894", "https://data.delijn.be/stops/308279"], ["https://data.delijn.be/stops/407941", "https://data.delijn.be/stops/408023"], ["https://data.delijn.be/stops/204148", "https://data.delijn.be/stops/205789"], ["https://data.delijn.be/stops/201558", "https://data.delijn.be/stops/201559"], ["https://data.delijn.be/stops/302516", "https://data.delijn.be/stops/305874"], ["https://data.delijn.be/stops/405314", "https://data.delijn.be/stops/302828"], ["https://data.delijn.be/stops/201327", "https://data.delijn.be/stops/203764"], ["https://data.delijn.be/stops/203540", "https://data.delijn.be/stops/206409"], ["https://data.delijn.be/stops/403042", "https://data.delijn.be/stops/403094"], ["https://data.delijn.be/stops/204231", "https://data.delijn.be/stops/204261"], ["https://data.delijn.be/stops/102951", "https://data.delijn.be/stops/102957"], ["https://data.delijn.be/stops/108651", "https://data.delijn.be/stops/306594"], ["https://data.delijn.be/stops/201914", "https://data.delijn.be/stops/201934"], ["https://data.delijn.be/stops/402891", "https://data.delijn.be/stops/402892"], ["https://data.delijn.be/stops/305730", "https://data.delijn.be/stops/305731"], ["https://data.delijn.be/stops/404809", "https://data.delijn.be/stops/404835"], ["https://data.delijn.be/stops/104142", "https://data.delijn.be/stops/305773"], ["https://data.delijn.be/stops/405859", "https://data.delijn.be/stops/405893"], ["https://data.delijn.be/stops/200806", "https://data.delijn.be/stops/202281"], ["https://data.delijn.be/stops/201952", "https://data.delijn.be/stops/202467"], ["https://data.delijn.be/stops/301856", "https://data.delijn.be/stops/301871"], ["https://data.delijn.be/stops/502498", "https://data.delijn.be/stops/507517"], ["https://data.delijn.be/stops/505747", "https://data.delijn.be/stops/507290"], ["https://data.delijn.be/stops/102292", "https://data.delijn.be/stops/108291"], ["https://data.delijn.be/stops/107597", "https://data.delijn.be/stops/107601"], ["https://data.delijn.be/stops/403051", "https://data.delijn.be/stops/403428"], ["https://data.delijn.be/stops/105748", "https://data.delijn.be/stops/109964"], ["https://data.delijn.be/stops/503820", "https://data.delijn.be/stops/504816"], ["https://data.delijn.be/stops/104018", "https://data.delijn.be/stops/104022"], ["https://data.delijn.be/stops/202362", "https://data.delijn.be/stops/203363"], ["https://data.delijn.be/stops/402883", "https://data.delijn.be/stops/402884"], ["https://data.delijn.be/stops/107934", "https://data.delijn.be/stops/303878"], ["https://data.delijn.be/stops/505532", "https://data.delijn.be/stops/505562"], ["https://data.delijn.be/stops/307935", "https://data.delijn.be/stops/307938"], ["https://data.delijn.be/stops/206019", "https://data.delijn.be/stops/206077"], ["https://data.delijn.be/stops/102833", "https://data.delijn.be/stops/103759"], ["https://data.delijn.be/stops/302586", "https://data.delijn.be/stops/302593"], ["https://data.delijn.be/stops/102694", "https://data.delijn.be/stops/103125"], ["https://data.delijn.be/stops/405792", "https://data.delijn.be/stops/405832"], ["https://data.delijn.be/stops/403599", "https://data.delijn.be/stops/406266"], ["https://data.delijn.be/stops/501760", "https://data.delijn.be/stops/509932"], ["https://data.delijn.be/stops/400590", "https://data.delijn.be/stops/400625"], ["https://data.delijn.be/stops/501408", "https://data.delijn.be/stops/506407"], ["https://data.delijn.be/stops/404280", "https://data.delijn.be/stops/404281"], ["https://data.delijn.be/stops/207591", "https://data.delijn.be/stops/207949"], ["https://data.delijn.be/stops/301027", "https://data.delijn.be/stops/303833"], ["https://data.delijn.be/stops/104962", "https://data.delijn.be/stops/109261"], ["https://data.delijn.be/stops/200907", "https://data.delijn.be/stops/200931"], ["https://data.delijn.be/stops/200206", "https://data.delijn.be/stops/203143"], ["https://data.delijn.be/stops/402770", "https://data.delijn.be/stops/408124"], ["https://data.delijn.be/stops/200691", "https://data.delijn.be/stops/200698"], ["https://data.delijn.be/stops/202608", "https://data.delijn.be/stops/203564"], ["https://data.delijn.be/stops/206008", "https://data.delijn.be/stops/207008"], ["https://data.delijn.be/stops/306861", "https://data.delijn.be/stops/306864"], ["https://data.delijn.be/stops/504041", "https://data.delijn.be/stops/509041"], ["https://data.delijn.be/stops/202309", "https://data.delijn.be/stops/203309"], ["https://data.delijn.be/stops/108431", "https://data.delijn.be/stops/108432"], ["https://data.delijn.be/stops/402670", "https://data.delijn.be/stops/402735"], ["https://data.delijn.be/stops/502795", "https://data.delijn.be/stops/502934"], ["https://data.delijn.be/stops/102256", "https://data.delijn.be/stops/109871"], ["https://data.delijn.be/stops/102613", "https://data.delijn.be/stops/107053"], ["https://data.delijn.be/stops/505183", "https://data.delijn.be/stops/509394"], ["https://data.delijn.be/stops/102018", "https://data.delijn.be/stops/109963"], ["https://data.delijn.be/stops/504136", "https://data.delijn.be/stops/504144"], ["https://data.delijn.be/stops/405212", "https://data.delijn.be/stops/405213"], ["https://data.delijn.be/stops/406967", "https://data.delijn.be/stops/409450"], ["https://data.delijn.be/stops/206739", "https://data.delijn.be/stops/207995"], ["https://data.delijn.be/stops/307373", "https://data.delijn.be/stops/307380"], ["https://data.delijn.be/stops/101050", "https://data.delijn.be/stops/103046"], ["https://data.delijn.be/stops/104052", "https://data.delijn.be/stops/108100"], ["https://data.delijn.be/stops/202556", "https://data.delijn.be/stops/202560"], ["https://data.delijn.be/stops/201566", "https://data.delijn.be/stops/201670"], ["https://data.delijn.be/stops/302404", "https://data.delijn.be/stops/302405"], ["https://data.delijn.be/stops/403517", "https://data.delijn.be/stops/403518"], ["https://data.delijn.be/stops/505051", "https://data.delijn.be/stops/507557"], ["https://data.delijn.be/stops/301921", "https://data.delijn.be/stops/302794"], ["https://data.delijn.be/stops/106638", "https://data.delijn.be/stops/106677"], ["https://data.delijn.be/stops/509777", "https://data.delijn.be/stops/509782"], ["https://data.delijn.be/stops/308218", "https://data.delijn.be/stops/308246"], ["https://data.delijn.be/stops/505526", "https://data.delijn.be/stops/505534"], ["https://data.delijn.be/stops/505415", "https://data.delijn.be/stops/509161"], ["https://data.delijn.be/stops/404171", "https://data.delijn.be/stops/404178"], ["https://data.delijn.be/stops/402409", "https://data.delijn.be/stops/404992"], ["https://data.delijn.be/stops/106379", "https://data.delijn.be/stops/108024"], ["https://data.delijn.be/stops/300331", "https://data.delijn.be/stops/307042"], ["https://data.delijn.be/stops/103541", "https://data.delijn.be/stops/106725"], ["https://data.delijn.be/stops/400727", "https://data.delijn.be/stops/405216"], ["https://data.delijn.be/stops/200909", "https://data.delijn.be/stops/200929"], ["https://data.delijn.be/stops/200707", "https://data.delijn.be/stops/202129"], ["https://data.delijn.be/stops/204251", "https://data.delijn.be/stops/205251"], ["https://data.delijn.be/stops/101683", "https://data.delijn.be/stops/103697"], ["https://data.delijn.be/stops/400406", "https://data.delijn.be/stops/400407"], ["https://data.delijn.be/stops/404730", "https://data.delijn.be/stops/405134"], ["https://data.delijn.be/stops/104517", "https://data.delijn.be/stops/303882"], ["https://data.delijn.be/stops/502387", "https://data.delijn.be/stops/507384"], ["https://data.delijn.be/stops/302710", "https://data.delijn.be/stops/307846"], ["https://data.delijn.be/stops/404887", "https://data.delijn.be/stops/406722"], ["https://data.delijn.be/stops/504392", "https://data.delijn.be/stops/509392"], ["https://data.delijn.be/stops/300534", "https://data.delijn.be/stops/308929"], ["https://data.delijn.be/stops/409408", "https://data.delijn.be/stops/409409"], ["https://data.delijn.be/stops/504595", "https://data.delijn.be/stops/509592"], ["https://data.delijn.be/stops/102537", "https://data.delijn.be/stops/102538"], ["https://data.delijn.be/stops/202198", "https://data.delijn.be/stops/203197"], ["https://data.delijn.be/stops/106259", "https://data.delijn.be/stops/106260"], ["https://data.delijn.be/stops/202446", "https://data.delijn.be/stops/202447"], ["https://data.delijn.be/stops/404100", "https://data.delijn.be/stops/404209"], ["https://data.delijn.be/stops/200976", "https://data.delijn.be/stops/209581"], ["https://data.delijn.be/stops/508703", "https://data.delijn.be/stops/508741"], ["https://data.delijn.be/stops/301847", "https://data.delijn.be/stops/305872"], ["https://data.delijn.be/stops/500937", "https://data.delijn.be/stops/500938"], ["https://data.delijn.be/stops/300084", "https://data.delijn.be/stops/306846"], ["https://data.delijn.be/stops/208794", "https://data.delijn.be/stops/209243"], ["https://data.delijn.be/stops/301711", "https://data.delijn.be/stops/305909"], ["https://data.delijn.be/stops/501075", "https://data.delijn.be/stops/506506"], ["https://data.delijn.be/stops/507018", "https://data.delijn.be/stops/507797"], ["https://data.delijn.be/stops/400753", "https://data.delijn.be/stops/409579"], ["https://data.delijn.be/stops/305514", "https://data.delijn.be/stops/305515"], ["https://data.delijn.be/stops/206725", "https://data.delijn.be/stops/207994"], ["https://data.delijn.be/stops/502244", "https://data.delijn.be/stops/507244"], ["https://data.delijn.be/stops/301358", "https://data.delijn.be/stops/307222"], ["https://data.delijn.be/stops/303752", "https://data.delijn.be/stops/303756"], ["https://data.delijn.be/stops/401792", "https://data.delijn.be/stops/401793"], ["https://data.delijn.be/stops/505919", "https://data.delijn.be/stops/509099"], ["https://data.delijn.be/stops/300773", "https://data.delijn.be/stops/302401"], ["https://data.delijn.be/stops/106753", "https://data.delijn.be/stops/109700"], ["https://data.delijn.be/stops/500126", "https://data.delijn.be/stops/503005"], ["https://data.delijn.be/stops/304016", "https://data.delijn.be/stops/304084"], ["https://data.delijn.be/stops/408864", "https://data.delijn.be/stops/408865"], ["https://data.delijn.be/stops/505963", "https://data.delijn.be/stops/507956"], ["https://data.delijn.be/stops/202024", "https://data.delijn.be/stops/203349"], ["https://data.delijn.be/stops/308542", "https://data.delijn.be/stops/308543"], ["https://data.delijn.be/stops/207828", "https://data.delijn.be/stops/207829"], ["https://data.delijn.be/stops/102163", "https://data.delijn.be/stops/102164"], ["https://data.delijn.be/stops/102077", "https://data.delijn.be/stops/105990"], ["https://data.delijn.be/stops/101363", "https://data.delijn.be/stops/105354"], ["https://data.delijn.be/stops/501096", "https://data.delijn.be/stops/502218"], ["https://data.delijn.be/stops/504259", "https://data.delijn.be/stops/509127"], ["https://data.delijn.be/stops/104463", "https://data.delijn.be/stops/104467"], ["https://data.delijn.be/stops/200682", "https://data.delijn.be/stops/209651"], ["https://data.delijn.be/stops/204504", "https://data.delijn.be/stops/204505"], ["https://data.delijn.be/stops/503259", "https://data.delijn.be/stops/508262"], ["https://data.delijn.be/stops/202554", "https://data.delijn.be/stops/203556"], ["https://data.delijn.be/stops/307456", "https://data.delijn.be/stops/307845"], ["https://data.delijn.be/stops/503496", "https://data.delijn.be/stops/509452"], ["https://data.delijn.be/stops/303484", "https://data.delijn.be/stops/307069"], ["https://data.delijn.be/stops/405935", "https://data.delijn.be/stops/405963"], ["https://data.delijn.be/stops/408232", "https://data.delijn.be/stops/408249"], ["https://data.delijn.be/stops/204374", "https://data.delijn.be/stops/204383"], ["https://data.delijn.be/stops/101298", "https://data.delijn.be/stops/108802"], ["https://data.delijn.be/stops/507430", "https://data.delijn.be/stops/507434"], ["https://data.delijn.be/stops/107192", "https://data.delijn.be/stops/107193"], ["https://data.delijn.be/stops/203528", "https://data.delijn.be/stops/203529"], ["https://data.delijn.be/stops/402895", "https://data.delijn.be/stops/302637"], ["https://data.delijn.be/stops/503921", "https://data.delijn.be/stops/508915"], ["https://data.delijn.be/stops/201699", "https://data.delijn.be/stops/203785"], ["https://data.delijn.be/stops/301259", "https://data.delijn.be/stops/307392"], ["https://data.delijn.be/stops/301970", "https://data.delijn.be/stops/304534"], ["https://data.delijn.be/stops/103322", "https://data.delijn.be/stops/105085"], ["https://data.delijn.be/stops/503341", "https://data.delijn.be/stops/505633"], ["https://data.delijn.be/stops/209211", "https://data.delijn.be/stops/209808"], ["https://data.delijn.be/stops/405639", "https://data.delijn.be/stops/405641"], ["https://data.delijn.be/stops/202111", "https://data.delijn.be/stops/202112"], ["https://data.delijn.be/stops/400352", "https://data.delijn.be/stops/400353"], ["https://data.delijn.be/stops/504402", "https://data.delijn.be/stops/504466"], ["https://data.delijn.be/stops/103212", "https://data.delijn.be/stops/106304"], ["https://data.delijn.be/stops/200436", "https://data.delijn.be/stops/201408"], ["https://data.delijn.be/stops/103620", "https://data.delijn.be/stops/105730"], ["https://data.delijn.be/stops/500013", "https://data.delijn.be/stops/507562"], ["https://data.delijn.be/stops/104693", "https://data.delijn.be/stops/107357"], ["https://data.delijn.be/stops/501542", "https://data.delijn.be/stops/506077"], ["https://data.delijn.be/stops/204675", "https://data.delijn.be/stops/205258"], ["https://data.delijn.be/stops/502348", "https://data.delijn.be/stops/507340"], ["https://data.delijn.be/stops/401728", "https://data.delijn.be/stops/401870"], ["https://data.delijn.be/stops/304831", "https://data.delijn.be/stops/306160"], ["https://data.delijn.be/stops/503222", "https://data.delijn.be/stops/508221"], ["https://data.delijn.be/stops/207380", "https://data.delijn.be/stops/207381"], ["https://data.delijn.be/stops/306384", "https://data.delijn.be/stops/306385"], ["https://data.delijn.be/stops/201770", "https://data.delijn.be/stops/201827"], ["https://data.delijn.be/stops/204070", "https://data.delijn.be/stops/204221"], ["https://data.delijn.be/stops/407581", "https://data.delijn.be/stops/408913"], ["https://data.delijn.be/stops/302870", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/208134", "https://data.delijn.be/stops/208138"], ["https://data.delijn.be/stops/101394", "https://data.delijn.be/stops/103141"], ["https://data.delijn.be/stops/409521", "https://data.delijn.be/stops/409772"], ["https://data.delijn.be/stops/205135", "https://data.delijn.be/stops/205136"], ["https://data.delijn.be/stops/400437", "https://data.delijn.be/stops/406843"], ["https://data.delijn.be/stops/300749", "https://data.delijn.be/stops/300753"], ["https://data.delijn.be/stops/206836", "https://data.delijn.be/stops/207836"], ["https://data.delijn.be/stops/304030", "https://data.delijn.be/stops/306176"], ["https://data.delijn.be/stops/402270", "https://data.delijn.be/stops/410094"], ["https://data.delijn.be/stops/202447", "https://data.delijn.be/stops/203447"], ["https://data.delijn.be/stops/200694", "https://data.delijn.be/stops/203790"], ["https://data.delijn.be/stops/107089", "https://data.delijn.be/stops/107093"], ["https://data.delijn.be/stops/301431", "https://data.delijn.be/stops/301432"], ["https://data.delijn.be/stops/503688", "https://data.delijn.be/stops/508682"], ["https://data.delijn.be/stops/402301", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/404835", "https://data.delijn.be/stops/406094"], ["https://data.delijn.be/stops/301799", "https://data.delijn.be/stops/305395"], ["https://data.delijn.be/stops/200756", "https://data.delijn.be/stops/200770"], ["https://data.delijn.be/stops/103590", "https://data.delijn.be/stops/109399"], ["https://data.delijn.be/stops/109196", "https://data.delijn.be/stops/109198"], ["https://data.delijn.be/stops/302514", "https://data.delijn.be/stops/305803"], ["https://data.delijn.be/stops/403625", "https://data.delijn.be/stops/403720"], ["https://data.delijn.be/stops/200701", "https://data.delijn.be/stops/201157"], ["https://data.delijn.be/stops/301936", "https://data.delijn.be/stops/308719"], ["https://data.delijn.be/stops/406097", "https://data.delijn.be/stops/406129"], ["https://data.delijn.be/stops/206382", "https://data.delijn.be/stops/207383"], ["https://data.delijn.be/stops/503095", "https://data.delijn.be/stops/508095"], ["https://data.delijn.be/stops/303639", "https://data.delijn.be/stops/304521"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/203622"], ["https://data.delijn.be/stops/406897", "https://data.delijn.be/stops/409463"], ["https://data.delijn.be/stops/410291", "https://data.delijn.be/stops/410352"], ["https://data.delijn.be/stops/304388", "https://data.delijn.be/stops/307417"], ["https://data.delijn.be/stops/301025", "https://data.delijn.be/stops/305466"], ["https://data.delijn.be/stops/305550", "https://data.delijn.be/stops/305555"], ["https://data.delijn.be/stops/104675", "https://data.delijn.be/stops/105870"], ["https://data.delijn.be/stops/401417", "https://data.delijn.be/stops/306001"], ["https://data.delijn.be/stops/204390", "https://data.delijn.be/stops/204402"], ["https://data.delijn.be/stops/101376", "https://data.delijn.be/stops/101402"], ["https://data.delijn.be/stops/505552", "https://data.delijn.be/stops/505922"], ["https://data.delijn.be/stops/502080", "https://data.delijn.be/stops/507079"], ["https://data.delijn.be/stops/206509", "https://data.delijn.be/stops/207862"], ["https://data.delijn.be/stops/303423", "https://data.delijn.be/stops/303431"], ["https://data.delijn.be/stops/206748", "https://data.delijn.be/stops/207337"], ["https://data.delijn.be/stops/305027", "https://data.delijn.be/stops/305029"], ["https://data.delijn.be/stops/409144", "https://data.delijn.be/stops/409156"], ["https://data.delijn.be/stops/503629", "https://data.delijn.be/stops/508619"], ["https://data.delijn.be/stops/303170", "https://data.delijn.be/stops/303175"], ["https://data.delijn.be/stops/503516", "https://data.delijn.be/stops/508299"], ["https://data.delijn.be/stops/203741", "https://data.delijn.be/stops/203870"], ["https://data.delijn.be/stops/304523", "https://data.delijn.be/stops/305603"], ["https://data.delijn.be/stops/408718", "https://data.delijn.be/stops/408726"], ["https://data.delijn.be/stops/104200", "https://data.delijn.be/stops/104220"], ["https://data.delijn.be/stops/503052", "https://data.delijn.be/stops/508049"], ["https://data.delijn.be/stops/405819", "https://data.delijn.be/stops/405872"], ["https://data.delijn.be/stops/305396", "https://data.delijn.be/stops/305407"], ["https://data.delijn.be/stops/104001", "https://data.delijn.be/stops/106884"], ["https://data.delijn.be/stops/106862", "https://data.delijn.be/stops/106865"], ["https://data.delijn.be/stops/101182", "https://data.delijn.be/stops/107946"], ["https://data.delijn.be/stops/101872", "https://data.delijn.be/stops/106873"], ["https://data.delijn.be/stops/502438", "https://data.delijn.be/stops/507438"], ["https://data.delijn.be/stops/203212", "https://data.delijn.be/stops/210115"], ["https://data.delijn.be/stops/503462", "https://data.delijn.be/stops/508462"], ["https://data.delijn.be/stops/501015", "https://data.delijn.be/stops/501618"], ["https://data.delijn.be/stops/408846", "https://data.delijn.be/stops/408848"], ["https://data.delijn.be/stops/205100", "https://data.delijn.be/stops/205716"], ["https://data.delijn.be/stops/307834", "https://data.delijn.be/stops/308276"], ["https://data.delijn.be/stops/107150", "https://data.delijn.be/stops/107315"], ["https://data.delijn.be/stops/300949", "https://data.delijn.be/stops/304641"], ["https://data.delijn.be/stops/503515", "https://data.delijn.be/stops/504784"], ["https://data.delijn.be/stops/300011", "https://data.delijn.be/stops/300794"], ["https://data.delijn.be/stops/206117", "https://data.delijn.be/stops/206118"], ["https://data.delijn.be/stops/102391", "https://data.delijn.be/stops/107107"], ["https://data.delijn.be/stops/402397", "https://data.delijn.be/stops/405134"], ["https://data.delijn.be/stops/109285", "https://data.delijn.be/stops/109736"], ["https://data.delijn.be/stops/406296", "https://data.delijn.be/stops/409409"], ["https://data.delijn.be/stops/203235", "https://data.delijn.be/stops/203236"], ["https://data.delijn.be/stops/303153", "https://data.delijn.be/stops/303183"], ["https://data.delijn.be/stops/404105", "https://data.delijn.be/stops/404182"], ["https://data.delijn.be/stops/503260", "https://data.delijn.be/stops/503458"], ["https://data.delijn.be/stops/401242", "https://data.delijn.be/stops/401243"], ["https://data.delijn.be/stops/201382", "https://data.delijn.be/stops/201984"], ["https://data.delijn.be/stops/109838", "https://data.delijn.be/stops/109839"], ["https://data.delijn.be/stops/202155", "https://data.delijn.be/stops/202176"], ["https://data.delijn.be/stops/206164", "https://data.delijn.be/stops/308848"], ["https://data.delijn.be/stops/204153", "https://data.delijn.be/stops/205153"], ["https://data.delijn.be/stops/402589", "https://data.delijn.be/stops/402597"], ["https://data.delijn.be/stops/201193", "https://data.delijn.be/stops/202756"], ["https://data.delijn.be/stops/503963", "https://data.delijn.be/stops/508318"], ["https://data.delijn.be/stops/201885", "https://data.delijn.be/stops/203281"], ["https://data.delijn.be/stops/204829", "https://data.delijn.be/stops/205765"], ["https://data.delijn.be/stops/303068", "https://data.delijn.be/stops/303069"], ["https://data.delijn.be/stops/502228", "https://data.delijn.be/stops/507229"], ["https://data.delijn.be/stops/103158", "https://data.delijn.be/stops/107711"], ["https://data.delijn.be/stops/102723", "https://data.delijn.be/stops/107005"], ["https://data.delijn.be/stops/404117", "https://data.delijn.be/stops/404182"], ["https://data.delijn.be/stops/404455", "https://data.delijn.be/stops/406878"], ["https://data.delijn.be/stops/402098", "https://data.delijn.be/stops/402099"], ["https://data.delijn.be/stops/101425", "https://data.delijn.be/stops/108717"], ["https://data.delijn.be/stops/302999", "https://data.delijn.be/stops/303000"], ["https://data.delijn.be/stops/503203", "https://data.delijn.be/stops/508204"], ["https://data.delijn.be/stops/305312", "https://data.delijn.be/stops/305313"], ["https://data.delijn.be/stops/408780", "https://data.delijn.be/stops/410343"], ["https://data.delijn.be/stops/300467", "https://data.delijn.be/stops/300475"], ["https://data.delijn.be/stops/505598", "https://data.delijn.be/stops/505670"], ["https://data.delijn.be/stops/107491", "https://data.delijn.be/stops/305798"], ["https://data.delijn.be/stops/400960", "https://data.delijn.be/stops/407401"], ["https://data.delijn.be/stops/304626", "https://data.delijn.be/stops/304646"], ["https://data.delijn.be/stops/207358", "https://data.delijn.be/stops/207884"], ["https://data.delijn.be/stops/408633", "https://data.delijn.be/stops/408768"], ["https://data.delijn.be/stops/103638", "https://data.delijn.be/stops/103639"], ["https://data.delijn.be/stops/306625", "https://data.delijn.be/stops/306627"], ["https://data.delijn.be/stops/501014", "https://data.delijn.be/stops/506014"], ["https://data.delijn.be/stops/407800", "https://data.delijn.be/stops/407801"], ["https://data.delijn.be/stops/301850", "https://data.delijn.be/stops/301851"], ["https://data.delijn.be/stops/107242", "https://data.delijn.be/stops/107243"], ["https://data.delijn.be/stops/107537", "https://data.delijn.be/stops/107818"], ["https://data.delijn.be/stops/308087", "https://data.delijn.be/stops/308088"], ["https://data.delijn.be/stops/404090", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/102636", "https://data.delijn.be/stops/104921"], ["https://data.delijn.be/stops/302192", "https://data.delijn.be/stops/302420"], ["https://data.delijn.be/stops/202494", "https://data.delijn.be/stops/203494"], ["https://data.delijn.be/stops/403158", "https://data.delijn.be/stops/407583"], ["https://data.delijn.be/stops/106946", "https://data.delijn.be/stops/108701"], ["https://data.delijn.be/stops/102247", "https://data.delijn.be/stops/105761"], ["https://data.delijn.be/stops/502499", "https://data.delijn.be/stops/502925"], ["https://data.delijn.be/stops/301577", "https://data.delijn.be/stops/301578"], ["https://data.delijn.be/stops/106970", "https://data.delijn.be/stops/106971"], ["https://data.delijn.be/stops/502732", "https://data.delijn.be/stops/506082"], ["https://data.delijn.be/stops/502513", "https://data.delijn.be/stops/508800"], ["https://data.delijn.be/stops/209115", "https://data.delijn.be/stops/209339"], ["https://data.delijn.be/stops/505413", "https://data.delijn.be/stops/505581"], ["https://data.delijn.be/stops/406908", "https://data.delijn.be/stops/409453"], ["https://data.delijn.be/stops/205152", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/102858", "https://data.delijn.be/stops/205629"], ["https://data.delijn.be/stops/401498", "https://data.delijn.be/stops/401627"], ["https://data.delijn.be/stops/302084", "https://data.delijn.be/stops/302085"], ["https://data.delijn.be/stops/305400", "https://data.delijn.be/stops/305926"], ["https://data.delijn.be/stops/202818", "https://data.delijn.be/stops/203817"], ["https://data.delijn.be/stops/208077", "https://data.delijn.be/stops/208520"], ["https://data.delijn.be/stops/503099", "https://data.delijn.be/stops/508926"], ["https://data.delijn.be/stops/505341", "https://data.delijn.be/stops/505658"], ["https://data.delijn.be/stops/308228", "https://data.delijn.be/stops/308231"], ["https://data.delijn.be/stops/407057", "https://data.delijn.be/stops/308746"], ["https://data.delijn.be/stops/401821", "https://data.delijn.be/stops/410357"], ["https://data.delijn.be/stops/206427", "https://data.delijn.be/stops/209536"], ["https://data.delijn.be/stops/300549", "https://data.delijn.be/stops/307864"], ["https://data.delijn.be/stops/407645", "https://data.delijn.be/stops/407689"], ["https://data.delijn.be/stops/204950", "https://data.delijn.be/stops/205950"], ["https://data.delijn.be/stops/408509", "https://data.delijn.be/stops/408525"], ["https://data.delijn.be/stops/304474", "https://data.delijn.be/stops/304506"], ["https://data.delijn.be/stops/503666", "https://data.delijn.be/stops/505979"], ["https://data.delijn.be/stops/304770", "https://data.delijn.be/stops/304772"], ["https://data.delijn.be/stops/206046", "https://data.delijn.be/stops/206107"], ["https://data.delijn.be/stops/200689", "https://data.delijn.be/stops/203004"], ["https://data.delijn.be/stops/505373", "https://data.delijn.be/stops/508860"], ["https://data.delijn.be/stops/200546", "https://data.delijn.be/stops/208862"], ["https://data.delijn.be/stops/405100", "https://data.delijn.be/stops/405101"], ["https://data.delijn.be/stops/300861", "https://data.delijn.be/stops/301057"], ["https://data.delijn.be/stops/208379", "https://data.delijn.be/stops/218022"], ["https://data.delijn.be/stops/505261", "https://data.delijn.be/stops/505943"], ["https://data.delijn.be/stops/301602", "https://data.delijn.be/stops/301603"], ["https://data.delijn.be/stops/109218", "https://data.delijn.be/stops/109219"], ["https://data.delijn.be/stops/101631", "https://data.delijn.be/stops/102188"], ["https://data.delijn.be/stops/208226", "https://data.delijn.be/stops/209226"], ["https://data.delijn.be/stops/506677", "https://data.delijn.be/stops/506779"], ["https://data.delijn.be/stops/401757", "https://data.delijn.be/stops/401807"], ["https://data.delijn.be/stops/200849", "https://data.delijn.be/stops/209654"], ["https://data.delijn.be/stops/504426", "https://data.delijn.be/stops/505970"], ["https://data.delijn.be/stops/102312", "https://data.delijn.be/stops/109903"], ["https://data.delijn.be/stops/400409", "https://data.delijn.be/stops/400410"], ["https://data.delijn.be/stops/300644", "https://data.delijn.be/stops/306746"], ["https://data.delijn.be/stops/403519", "https://data.delijn.be/stops/410277"], ["https://data.delijn.be/stops/300655", "https://data.delijn.be/stops/301917"], ["https://data.delijn.be/stops/206954", "https://data.delijn.be/stops/207925"], ["https://data.delijn.be/stops/302620", "https://data.delijn.be/stops/303252"], ["https://data.delijn.be/stops/302166", "https://data.delijn.be/stops/304078"], ["https://data.delijn.be/stops/306764", "https://data.delijn.be/stops/307272"], ["https://data.delijn.be/stops/105011", "https://data.delijn.be/stops/105079"], ["https://data.delijn.be/stops/507394", "https://data.delijn.be/stops/507621"], ["https://data.delijn.be/stops/302949", "https://data.delijn.be/stops/303003"], ["https://data.delijn.be/stops/504481", "https://data.delijn.be/stops/509480"], ["https://data.delijn.be/stops/505118", "https://data.delijn.be/stops/509479"], ["https://data.delijn.be/stops/302096", "https://data.delijn.be/stops/302104"], ["https://data.delijn.be/stops/207641", "https://data.delijn.be/stops/207642"], ["https://data.delijn.be/stops/101024", "https://data.delijn.be/stops/101027"], ["https://data.delijn.be/stops/202435", "https://data.delijn.be/stops/203435"], ["https://data.delijn.be/stops/207587", "https://data.delijn.be/stops/207588"], ["https://data.delijn.be/stops/206208", "https://data.delijn.be/stops/207208"], ["https://data.delijn.be/stops/308241", "https://data.delijn.be/stops/308242"], ["https://data.delijn.be/stops/204294", "https://data.delijn.be/stops/205293"], ["https://data.delijn.be/stops/203353", "https://data.delijn.be/stops/211046"], ["https://data.delijn.be/stops/407380", "https://data.delijn.be/stops/407381"], ["https://data.delijn.be/stops/105607", "https://data.delijn.be/stops/105609"], ["https://data.delijn.be/stops/209601", "https://data.delijn.be/stops/307592"], ["https://data.delijn.be/stops/403275", "https://data.delijn.be/stops/403406"], ["https://data.delijn.be/stops/501016", "https://data.delijn.be/stops/501687"], ["https://data.delijn.be/stops/101262", "https://data.delijn.be/stops/102185"], ["https://data.delijn.be/stops/503006", "https://data.delijn.be/stops/508002"], ["https://data.delijn.be/stops/200249", "https://data.delijn.be/stops/201450"], ["https://data.delijn.be/stops/405642", "https://data.delijn.be/stops/410339"], ["https://data.delijn.be/stops/302455", "https://data.delijn.be/stops/304756"], ["https://data.delijn.be/stops/101067", "https://data.delijn.be/stops/108940"], ["https://data.delijn.be/stops/104113", "https://data.delijn.be/stops/107881"], ["https://data.delijn.be/stops/204501", "https://data.delijn.be/stops/205501"], ["https://data.delijn.be/stops/400931", "https://data.delijn.be/stops/400943"], ["https://data.delijn.be/stops/502414", "https://data.delijn.be/stops/502431"], ["https://data.delijn.be/stops/106384", "https://data.delijn.be/stops/106386"], ["https://data.delijn.be/stops/504690", "https://data.delijn.be/stops/505940"], ["https://data.delijn.be/stops/405918", "https://data.delijn.be/stops/405970"], ["https://data.delijn.be/stops/408203", "https://data.delijn.be/stops/408215"], ["https://data.delijn.be/stops/303268", "https://data.delijn.be/stops/303308"], ["https://data.delijn.be/stops/300904", "https://data.delijn.be/stops/300907"], ["https://data.delijn.be/stops/207178", "https://data.delijn.be/stops/303843"], ["https://data.delijn.be/stops/206588", "https://data.delijn.be/stops/206589"], ["https://data.delijn.be/stops/209331", "https://data.delijn.be/stops/209702"], ["https://data.delijn.be/stops/105962", "https://data.delijn.be/stops/105963"], ["https://data.delijn.be/stops/300158", "https://data.delijn.be/stops/306697"], ["https://data.delijn.be/stops/103752", "https://data.delijn.be/stops/105655"], ["https://data.delijn.be/stops/502507", "https://data.delijn.be/stops/507492"], ["https://data.delijn.be/stops/402502", "https://data.delijn.be/stops/402529"], ["https://data.delijn.be/stops/302361", "https://data.delijn.be/stops/302366"], ["https://data.delijn.be/stops/300529", "https://data.delijn.be/stops/300534"], ["https://data.delijn.be/stops/402156", "https://data.delijn.be/stops/409392"], ["https://data.delijn.be/stops/306930", "https://data.delijn.be/stops/308726"], ["https://data.delijn.be/stops/508241", "https://data.delijn.be/stops/508262"], ["https://data.delijn.be/stops/107355", "https://data.delijn.be/stops/108065"], ["https://data.delijn.be/stops/400830", "https://data.delijn.be/stops/405667"], ["https://data.delijn.be/stops/502483", "https://data.delijn.be/stops/505340"], ["https://data.delijn.be/stops/503914", "https://data.delijn.be/stops/503924"], ["https://data.delijn.be/stops/300495", "https://data.delijn.be/stops/306175"], ["https://data.delijn.be/stops/505935", "https://data.delijn.be/stops/508296"], ["https://data.delijn.be/stops/305748", "https://data.delijn.be/stops/305754"], ["https://data.delijn.be/stops/501255", "https://data.delijn.be/stops/501635"], ["https://data.delijn.be/stops/302805", "https://data.delijn.be/stops/306176"], ["https://data.delijn.be/stops/503619", "https://data.delijn.be/stops/503625"], ["https://data.delijn.be/stops/204178", "https://data.delijn.be/stops/204242"], ["https://data.delijn.be/stops/301747", "https://data.delijn.be/stops/305906"], ["https://data.delijn.be/stops/208418", "https://data.delijn.be/stops/208745"], ["https://data.delijn.be/stops/401160", "https://data.delijn.be/stops/408103"], ["https://data.delijn.be/stops/203004", "https://data.delijn.be/stops/203759"], ["https://data.delijn.be/stops/407609", "https://data.delijn.be/stops/409785"], ["https://data.delijn.be/stops/403599", "https://data.delijn.be/stops/403616"], ["https://data.delijn.be/stops/401137", "https://data.delijn.be/stops/401140"], ["https://data.delijn.be/stops/202088", "https://data.delijn.be/stops/202089"], ["https://data.delijn.be/stops/204306", "https://data.delijn.be/stops/204307"], ["https://data.delijn.be/stops/505556", "https://data.delijn.be/stops/505558"], ["https://data.delijn.be/stops/302201", "https://data.delijn.be/stops/308097"], ["https://data.delijn.be/stops/400967", "https://data.delijn.be/stops/401281"], ["https://data.delijn.be/stops/408877", "https://data.delijn.be/stops/408890"], ["https://data.delijn.be/stops/403254", "https://data.delijn.be/stops/403396"], ["https://data.delijn.be/stops/206447", "https://data.delijn.be/stops/207159"], ["https://data.delijn.be/stops/300686", "https://data.delijn.be/stops/303498"], ["https://data.delijn.be/stops/403535", "https://data.delijn.be/stops/403545"], ["https://data.delijn.be/stops/401932", "https://data.delijn.be/stops/401934"], ["https://data.delijn.be/stops/405142", "https://data.delijn.be/stops/405201"], ["https://data.delijn.be/stops/303692", "https://data.delijn.be/stops/303764"], ["https://data.delijn.be/stops/105862", "https://data.delijn.be/stops/105864"], ["https://data.delijn.be/stops/207887", "https://data.delijn.be/stops/207889"], ["https://data.delijn.be/stops/302737", "https://data.delijn.be/stops/308813"], ["https://data.delijn.be/stops/304761", "https://data.delijn.be/stops/304778"], ["https://data.delijn.be/stops/303463", "https://data.delijn.be/stops/303505"], ["https://data.delijn.be/stops/209064", "https://data.delijn.be/stops/209067"], ["https://data.delijn.be/stops/503582", "https://data.delijn.be/stops/503996"], ["https://data.delijn.be/stops/200446", "https://data.delijn.be/stops/201447"], ["https://data.delijn.be/stops/202833", "https://data.delijn.be/stops/218025"], ["https://data.delijn.be/stops/503171", "https://data.delijn.be/stops/508175"], ["https://data.delijn.be/stops/105324", "https://data.delijn.be/stops/105327"], ["https://data.delijn.be/stops/400344", "https://data.delijn.be/stops/400438"], ["https://data.delijn.be/stops/402174", "https://data.delijn.be/stops/402175"], ["https://data.delijn.be/stops/300576", "https://data.delijn.be/stops/300583"], ["https://data.delijn.be/stops/202950", "https://data.delijn.be/stops/203950"], ["https://data.delijn.be/stops/103161", "https://data.delijn.be/stops/109740"], ["https://data.delijn.be/stops/208359", "https://data.delijn.be/stops/208720"], ["https://data.delijn.be/stops/101182", "https://data.delijn.be/stops/104861"], ["https://data.delijn.be/stops/302742", "https://data.delijn.be/stops/302760"], ["https://data.delijn.be/stops/107228", "https://data.delijn.be/stops/107231"], ["https://data.delijn.be/stops/208074", "https://data.delijn.be/stops/209075"], ["https://data.delijn.be/stops/102527", "https://data.delijn.be/stops/102528"], ["https://data.delijn.be/stops/206055", "https://data.delijn.be/stops/207026"], ["https://data.delijn.be/stops/101133", "https://data.delijn.be/stops/108360"], ["https://data.delijn.be/stops/500561", "https://data.delijn.be/stops/500564"], ["https://data.delijn.be/stops/500555", "https://data.delijn.be/stops/507213"], ["https://data.delijn.be/stops/301510", "https://data.delijn.be/stops/301520"], ["https://data.delijn.be/stops/208411", "https://data.delijn.be/stops/209411"], ["https://data.delijn.be/stops/404249", "https://data.delijn.be/stops/404320"], ["https://data.delijn.be/stops/303817", "https://data.delijn.be/stops/307497"], ["https://data.delijn.be/stops/204046", "https://data.delijn.be/stops/205046"], ["https://data.delijn.be/stops/102076", "https://data.delijn.be/stops/102079"], ["https://data.delijn.be/stops/401772", "https://data.delijn.be/stops/406341"], ["https://data.delijn.be/stops/207964", "https://data.delijn.be/stops/216003"], ["https://data.delijn.be/stops/507416", "https://data.delijn.be/stops/507430"], ["https://data.delijn.be/stops/403648", "https://data.delijn.be/stops/409965"], ["https://data.delijn.be/stops/204389", "https://data.delijn.be/stops/205389"], ["https://data.delijn.be/stops/402042", "https://data.delijn.be/stops/410071"], ["https://data.delijn.be/stops/200548", "https://data.delijn.be/stops/201375"], ["https://data.delijn.be/stops/509038", "https://data.delijn.be/stops/509286"], ["https://data.delijn.be/stops/301030", "https://data.delijn.be/stops/301031"], ["https://data.delijn.be/stops/109446", "https://data.delijn.be/stops/109448"], ["https://data.delijn.be/stops/405948", "https://data.delijn.be/stops/405950"], ["https://data.delijn.be/stops/405386", "https://data.delijn.be/stops/405393"], ["https://data.delijn.be/stops/502522", "https://data.delijn.be/stops/507522"], ["https://data.delijn.be/stops/305954", "https://data.delijn.be/stops/305955"], ["https://data.delijn.be/stops/107142", "https://data.delijn.be/stops/107143"], ["https://data.delijn.be/stops/505646", "https://data.delijn.be/stops/505773"], ["https://data.delijn.be/stops/108767", "https://data.delijn.be/stops/108768"], ["https://data.delijn.be/stops/208112", "https://data.delijn.be/stops/209798"], ["https://data.delijn.be/stops/200889", "https://data.delijn.be/stops/202299"], ["https://data.delijn.be/stops/201648", "https://data.delijn.be/stops/202864"], ["https://data.delijn.be/stops/302262", "https://data.delijn.be/stops/303194"], ["https://data.delijn.be/stops/502491", "https://data.delijn.be/stops/502507"], ["https://data.delijn.be/stops/504110", "https://data.delijn.be/stops/504111"], ["https://data.delijn.be/stops/402404", "https://data.delijn.be/stops/402441"], ["https://data.delijn.be/stops/200402", "https://data.delijn.be/stops/201402"], ["https://data.delijn.be/stops/207702", "https://data.delijn.be/stops/207705"], ["https://data.delijn.be/stops/102204", "https://data.delijn.be/stops/102669"], ["https://data.delijn.be/stops/508325", "https://data.delijn.be/stops/508730"], ["https://data.delijn.be/stops/207989", "https://data.delijn.be/stops/217007"], ["https://data.delijn.be/stops/102995", "https://data.delijn.be/stops/104021"], ["https://data.delijn.be/stops/301252", "https://data.delijn.be/stops/308266"], ["https://data.delijn.be/stops/304519", "https://data.delijn.be/stops/307255"], ["https://data.delijn.be/stops/300722", "https://data.delijn.be/stops/301426"], ["https://data.delijn.be/stops/200705", "https://data.delijn.be/stops/202574"], ["https://data.delijn.be/stops/305647", "https://data.delijn.be/stops/305664"], ["https://data.delijn.be/stops/102164", "https://data.delijn.be/stops/102166"], ["https://data.delijn.be/stops/404503", "https://data.delijn.be/stops/404534"], ["https://data.delijn.be/stops/107121", "https://data.delijn.be/stops/107124"], ["https://data.delijn.be/stops/304991", "https://data.delijn.be/stops/304993"], ["https://data.delijn.be/stops/503435", "https://data.delijn.be/stops/503444"], ["https://data.delijn.be/stops/500998", "https://data.delijn.be/stops/509402"], ["https://data.delijn.be/stops/103031", "https://data.delijn.be/stops/104605"], ["https://data.delijn.be/stops/504565", "https://data.delijn.be/stops/509276"], ["https://data.delijn.be/stops/304493", "https://data.delijn.be/stops/307566"], ["https://data.delijn.be/stops/501399", "https://data.delijn.be/stops/501568"], ["https://data.delijn.be/stops/206922", "https://data.delijn.be/stops/207922"], ["https://data.delijn.be/stops/503414", "https://data.delijn.be/stops/505856"], ["https://data.delijn.be/stops/303740", "https://data.delijn.be/stops/304918"], ["https://data.delijn.be/stops/301664", "https://data.delijn.be/stops/307823"], ["https://data.delijn.be/stops/201231", "https://data.delijn.be/stops/203133"], ["https://data.delijn.be/stops/302951", "https://data.delijn.be/stops/306374"], ["https://data.delijn.be/stops/204234", "https://data.delijn.be/stops/205793"], ["https://data.delijn.be/stops/400274", "https://data.delijn.be/stops/400275"], ["https://data.delijn.be/stops/506363", "https://data.delijn.be/stops/590412"], ["https://data.delijn.be/stops/403928", "https://data.delijn.be/stops/403960"], ["https://data.delijn.be/stops/208889", "https://data.delijn.be/stops/211853"], ["https://data.delijn.be/stops/303162", "https://data.delijn.be/stops/303575"], ["https://data.delijn.be/stops/305138", "https://data.delijn.be/stops/305140"], ["https://data.delijn.be/stops/208368", "https://data.delijn.be/stops/209499"], ["https://data.delijn.be/stops/409263", "https://data.delijn.be/stops/409340"], ["https://data.delijn.be/stops/304552", "https://data.delijn.be/stops/304640"], ["https://data.delijn.be/stops/201894", "https://data.delijn.be/stops/210126"], ["https://data.delijn.be/stops/400228", "https://data.delijn.be/stops/402357"], ["https://data.delijn.be/stops/303462", "https://data.delijn.be/stops/304989"], ["https://data.delijn.be/stops/206856", "https://data.delijn.be/stops/207197"], ["https://data.delijn.be/stops/501687", "https://data.delijn.be/stops/506598"], ["https://data.delijn.be/stops/408572", "https://data.delijn.be/stops/408575"], ["https://data.delijn.be/stops/205983", "https://data.delijn.be/stops/206677"], ["https://data.delijn.be/stops/501137", "https://data.delijn.be/stops/506137"], ["https://data.delijn.be/stops/508270", "https://data.delijn.be/stops/508492"], ["https://data.delijn.be/stops/502323", "https://data.delijn.be/stops/502336"], ["https://data.delijn.be/stops/204138", "https://data.delijn.be/stops/204142"], ["https://data.delijn.be/stops/102901", "https://data.delijn.be/stops/109026"], ["https://data.delijn.be/stops/204346", "https://data.delijn.be/stops/204695"], ["https://data.delijn.be/stops/300393", "https://data.delijn.be/stops/300394"], ["https://data.delijn.be/stops/402400", "https://data.delijn.be/stops/402491"], ["https://data.delijn.be/stops/402628", "https://data.delijn.be/stops/405663"], ["https://data.delijn.be/stops/303253", "https://data.delijn.be/stops/306338"], ["https://data.delijn.be/stops/504192", "https://data.delijn.be/stops/509169"], ["https://data.delijn.be/stops/106993", "https://data.delijn.be/stops/106994"], ["https://data.delijn.be/stops/108683", "https://data.delijn.be/stops/108892"], ["https://data.delijn.be/stops/505752", "https://data.delijn.be/stops/507756"], ["https://data.delijn.be/stops/503164", "https://data.delijn.be/stops/503605"], ["https://data.delijn.be/stops/104892", "https://data.delijn.be/stops/109356"], ["https://data.delijn.be/stops/503851", "https://data.delijn.be/stops/505923"], ["https://data.delijn.be/stops/406283", "https://data.delijn.be/stops/409357"], ["https://data.delijn.be/stops/505368", "https://data.delijn.be/stops/505810"], ["https://data.delijn.be/stops/210012", "https://data.delijn.be/stops/502275"], ["https://data.delijn.be/stops/408200", "https://data.delijn.be/stops/408259"], ["https://data.delijn.be/stops/108814", "https://data.delijn.be/stops/108849"], ["https://data.delijn.be/stops/305343", "https://data.delijn.be/stops/307970"], ["https://data.delijn.be/stops/300318", "https://data.delijn.be/stops/300624"], ["https://data.delijn.be/stops/508178", "https://data.delijn.be/stops/508265"], ["https://data.delijn.be/stops/205681", "https://data.delijn.be/stops/205688"], ["https://data.delijn.be/stops/206573", "https://data.delijn.be/stops/206574"], ["https://data.delijn.be/stops/307136", "https://data.delijn.be/stops/308716"], ["https://data.delijn.be/stops/504772", "https://data.delijn.be/stops/505921"], ["https://data.delijn.be/stops/507116", "https://data.delijn.be/stops/507383"], ["https://data.delijn.be/stops/505108", "https://data.delijn.be/stops/505645"], ["https://data.delijn.be/stops/505708", "https://data.delijn.be/stops/509139"], ["https://data.delijn.be/stops/500118", "https://data.delijn.be/stops/507268"], ["https://data.delijn.be/stops/200368", "https://data.delijn.be/stops/209727"], ["https://data.delijn.be/stops/505390", "https://data.delijn.be/stops/505932"], ["https://data.delijn.be/stops/204673", "https://data.delijn.be/stops/205673"], ["https://data.delijn.be/stops/202512", "https://data.delijn.be/stops/203511"], ["https://data.delijn.be/stops/504073", "https://data.delijn.be/stops/504210"], ["https://data.delijn.be/stops/303480", "https://data.delijn.be/stops/303482"], ["https://data.delijn.be/stops/200108", "https://data.delijn.be/stops/201361"], ["https://data.delijn.be/stops/501360", "https://data.delijn.be/stops/506345"], ["https://data.delijn.be/stops/403508", "https://data.delijn.be/stops/403528"], ["https://data.delijn.be/stops/404223", "https://data.delijn.be/stops/404238"], ["https://data.delijn.be/stops/206763", "https://data.delijn.be/stops/209655"], ["https://data.delijn.be/stops/402637", "https://data.delijn.be/stops/405580"], ["https://data.delijn.be/stops/202225", "https://data.delijn.be/stops/203224"], ["https://data.delijn.be/stops/407626", "https://data.delijn.be/stops/407627"], ["https://data.delijn.be/stops/200778", "https://data.delijn.be/stops/200908"], ["https://data.delijn.be/stops/505231", "https://data.delijn.be/stops/505777"], ["https://data.delijn.be/stops/504761", "https://data.delijn.be/stops/508532"], ["https://data.delijn.be/stops/400631", "https://data.delijn.be/stops/410006"], ["https://data.delijn.be/stops/401304", "https://data.delijn.be/stops/401351"], ["https://data.delijn.be/stops/106195", "https://data.delijn.be/stops/109186"], ["https://data.delijn.be/stops/502931", "https://data.delijn.be/stops/507931"], ["https://data.delijn.be/stops/204250", "https://data.delijn.be/stops/204468"], ["https://data.delijn.be/stops/101154", "https://data.delijn.be/stops/103306"], ["https://data.delijn.be/stops/405296", "https://data.delijn.be/stops/405298"], ["https://data.delijn.be/stops/504360", "https://data.delijn.be/stops/509357"], ["https://data.delijn.be/stops/206914", "https://data.delijn.be/stops/207890"], ["https://data.delijn.be/stops/202326", "https://data.delijn.be/stops/203326"], ["https://data.delijn.be/stops/402420", "https://data.delijn.be/stops/404498"], ["https://data.delijn.be/stops/209308", "https://data.delijn.be/stops/209309"], ["https://data.delijn.be/stops/208252", "https://data.delijn.be/stops/209253"], ["https://data.delijn.be/stops/109054", "https://data.delijn.be/stops/109057"], ["https://data.delijn.be/stops/105138", "https://data.delijn.be/stops/305826"], ["https://data.delijn.be/stops/503621", "https://data.delijn.be/stops/508697"], ["https://data.delijn.be/stops/101224", "https://data.delijn.be/stops/101799"], ["https://data.delijn.be/stops/207727", "https://data.delijn.be/stops/207733"], ["https://data.delijn.be/stops/104133", "https://data.delijn.be/stops/108259"], ["https://data.delijn.be/stops/105002", "https://data.delijn.be/stops/108889"], ["https://data.delijn.be/stops/406045", "https://data.delijn.be/stops/406054"], ["https://data.delijn.be/stops/504390", "https://data.delijn.be/stops/509391"], ["https://data.delijn.be/stops/301679", "https://data.delijn.be/stops/302393"], ["https://data.delijn.be/stops/406224", "https://data.delijn.be/stops/406432"], ["https://data.delijn.be/stops/504100", "https://data.delijn.be/stops/504481"], ["https://data.delijn.be/stops/200388", "https://data.delijn.be/stops/209703"], ["https://data.delijn.be/stops/205970", "https://data.delijn.be/stops/205971"], ["https://data.delijn.be/stops/406996", "https://data.delijn.be/stops/407135"], ["https://data.delijn.be/stops/505900", "https://data.delijn.be/stops/508315"], ["https://data.delijn.be/stops/400602", "https://data.delijn.be/stops/400607"], ["https://data.delijn.be/stops/207784", "https://data.delijn.be/stops/208188"], ["https://data.delijn.be/stops/202341", "https://data.delijn.be/stops/202448"], ["https://data.delijn.be/stops/502572", "https://data.delijn.be/stops/502573"], ["https://data.delijn.be/stops/104843", "https://data.delijn.be/stops/104844"], ["https://data.delijn.be/stops/301381", "https://data.delijn.be/stops/301383"], ["https://data.delijn.be/stops/404213", "https://data.delijn.be/stops/404221"], ["https://data.delijn.be/stops/403043", "https://data.delijn.be/stops/403094"], ["https://data.delijn.be/stops/500945", "https://data.delijn.be/stops/505166"], ["https://data.delijn.be/stops/208416", "https://data.delijn.be/stops/208745"], ["https://data.delijn.be/stops/204637", "https://data.delijn.be/stops/205638"], ["https://data.delijn.be/stops/200412", "https://data.delijn.be/stops/200505"], ["https://data.delijn.be/stops/502064", "https://data.delijn.be/stops/507071"], ["https://data.delijn.be/stops/509430", "https://data.delijn.be/stops/509696"], ["https://data.delijn.be/stops/209095", "https://data.delijn.be/stops/209404"], ["https://data.delijn.be/stops/207156", "https://data.delijn.be/stops/207639"], ["https://data.delijn.be/stops/101365", "https://data.delijn.be/stops/109709"], ["https://data.delijn.be/stops/205358", "https://data.delijn.be/stops/205919"], ["https://data.delijn.be/stops/406272", "https://data.delijn.be/stops/406279"], ["https://data.delijn.be/stops/504473", "https://data.delijn.be/stops/505837"], ["https://data.delijn.be/stops/405201", "https://data.delijn.be/stops/405290"], ["https://data.delijn.be/stops/202150", "https://data.delijn.be/stops/202197"], ["https://data.delijn.be/stops/201860", "https://data.delijn.be/stops/202671"], ["https://data.delijn.be/stops/505038", "https://data.delijn.be/stops/505046"], ["https://data.delijn.be/stops/509519", "https://data.delijn.be/stops/509521"], ["https://data.delijn.be/stops/104286", "https://data.delijn.be/stops/104289"], ["https://data.delijn.be/stops/208093", "https://data.delijn.be/stops/209094"], ["https://data.delijn.be/stops/303190", "https://data.delijn.be/stops/307953"], ["https://data.delijn.be/stops/200603", "https://data.delijn.be/stops/201603"], ["https://data.delijn.be/stops/301816", "https://data.delijn.be/stops/301818"], ["https://data.delijn.be/stops/305086", "https://data.delijn.be/stops/305087"], ["https://data.delijn.be/stops/409485", "https://data.delijn.be/stops/410069"], ["https://data.delijn.be/stops/301550", "https://data.delijn.be/stops/306961"], ["https://data.delijn.be/stops/200500", "https://data.delijn.be/stops/201553"], ["https://data.delijn.be/stops/504030", "https://data.delijn.be/stops/509032"], ["https://data.delijn.be/stops/209427", "https://data.delijn.be/stops/209430"], ["https://data.delijn.be/stops/502249", "https://data.delijn.be/stops/502252"], ["https://data.delijn.be/stops/109265", "https://data.delijn.be/stops/109267"], ["https://data.delijn.be/stops/106019", "https://data.delijn.be/stops/106021"], ["https://data.delijn.be/stops/208120", "https://data.delijn.be/stops/208794"], ["https://data.delijn.be/stops/400727", "https://data.delijn.be/stops/409398"], ["https://data.delijn.be/stops/301693", "https://data.delijn.be/stops/303746"], ["https://data.delijn.be/stops/107375", "https://data.delijn.be/stops/107595"], ["https://data.delijn.be/stops/104982", "https://data.delijn.be/stops/106773"], ["https://data.delijn.be/stops/403316", "https://data.delijn.be/stops/407587"], ["https://data.delijn.be/stops/305130", "https://data.delijn.be/stops/305136"], ["https://data.delijn.be/stops/102958", "https://data.delijn.be/stops/107011"], ["https://data.delijn.be/stops/202968", "https://data.delijn.be/stops/204092"], ["https://data.delijn.be/stops/200349", "https://data.delijn.be/stops/201501"], ["https://data.delijn.be/stops/403199", "https://data.delijn.be/stops/403279"], ["https://data.delijn.be/stops/201524", "https://data.delijn.be/stops/210131"], ["https://data.delijn.be/stops/301758", "https://data.delijn.be/stops/308421"], ["https://data.delijn.be/stops/200018", "https://data.delijn.be/stops/201018"], ["https://data.delijn.be/stops/306122", "https://data.delijn.be/stops/306148"], ["https://data.delijn.be/stops/102387", "https://data.delijn.be/stops/102599"], ["https://data.delijn.be/stops/301448", "https://data.delijn.be/stops/308411"], ["https://data.delijn.be/stops/300769", "https://data.delijn.be/stops/307142"], ["https://data.delijn.be/stops/103037", "https://data.delijn.be/stops/103934"], ["https://data.delijn.be/stops/108115", "https://data.delijn.be/stops/108120"], ["https://data.delijn.be/stops/204396", "https://data.delijn.be/stops/205396"], ["https://data.delijn.be/stops/503109", "https://data.delijn.be/stops/508374"], ["https://data.delijn.be/stops/503602", "https://data.delijn.be/stops/503611"], ["https://data.delijn.be/stops/103615", "https://data.delijn.be/stops/108300"], ["https://data.delijn.be/stops/402694", "https://data.delijn.be/stops/301477"], ["https://data.delijn.be/stops/407614", "https://data.delijn.be/stops/407681"], ["https://data.delijn.be/stops/304412", "https://data.delijn.be/stops/307501"], ["https://data.delijn.be/stops/208197", "https://data.delijn.be/stops/209197"], ["https://data.delijn.be/stops/305694", "https://data.delijn.be/stops/305699"], ["https://data.delijn.be/stops/303638", "https://data.delijn.be/stops/304804"], ["https://data.delijn.be/stops/408358", "https://data.delijn.be/stops/408403"], ["https://data.delijn.be/stops/505264", "https://data.delijn.be/stops/508223"], ["https://data.delijn.be/stops/502278", "https://data.delijn.be/stops/502279"], ["https://data.delijn.be/stops/205122", "https://data.delijn.be/stops/205123"], ["https://data.delijn.be/stops/501457", "https://data.delijn.be/stops/506457"], ["https://data.delijn.be/stops/405379", "https://data.delijn.be/stops/302840"], ["https://data.delijn.be/stops/505711", "https://data.delijn.be/stops/505985"], ["https://data.delijn.be/stops/404112", "https://data.delijn.be/stops/404113"], ["https://data.delijn.be/stops/502481", "https://data.delijn.be/stops/509891"], ["https://data.delijn.be/stops/400515", "https://data.delijn.be/stops/400534"], ["https://data.delijn.be/stops/403812", "https://data.delijn.be/stops/403815"], ["https://data.delijn.be/stops/202757", "https://data.delijn.be/stops/203757"], ["https://data.delijn.be/stops/102210", "https://data.delijn.be/stops/102895"], ["https://data.delijn.be/stops/504748", "https://data.delijn.be/stops/505837"], ["https://data.delijn.be/stops/404115", "https://data.delijn.be/stops/408739"], ["https://data.delijn.be/stops/101846", "https://data.delijn.be/stops/102092"], ["https://data.delijn.be/stops/202874", "https://data.delijn.be/stops/203875"], ["https://data.delijn.be/stops/302650", "https://data.delijn.be/stops/303295"], ["https://data.delijn.be/stops/507738", "https://data.delijn.be/stops/507764"], ["https://data.delijn.be/stops/502506", "https://data.delijn.be/stops/505553"], ["https://data.delijn.be/stops/206894", "https://data.delijn.be/stops/207894"], ["https://data.delijn.be/stops/200037", "https://data.delijn.be/stops/200376"], ["https://data.delijn.be/stops/202874", "https://data.delijn.be/stops/206427"], ["https://data.delijn.be/stops/501549", "https://data.delijn.be/stops/504734"], ["https://data.delijn.be/stops/509167", "https://data.delijn.be/stops/509475"], ["https://data.delijn.be/stops/402824", "https://data.delijn.be/stops/402825"], ["https://data.delijn.be/stops/400427", "https://data.delijn.be/stops/405133"], ["https://data.delijn.be/stops/305377", "https://data.delijn.be/stops/333453"], ["https://data.delijn.be/stops/103644", "https://data.delijn.be/stops/107176"], ["https://data.delijn.be/stops/200703", "https://data.delijn.be/stops/201872"], ["https://data.delijn.be/stops/302672", "https://data.delijn.be/stops/304098"], ["https://data.delijn.be/stops/404612", "https://data.delijn.be/stops/404614"], ["https://data.delijn.be/stops/206218", "https://data.delijn.be/stops/207462"], ["https://data.delijn.be/stops/501673", "https://data.delijn.be/stops/506673"], ["https://data.delijn.be/stops/405448", "https://data.delijn.be/stops/407901"], ["https://data.delijn.be/stops/405380", "https://data.delijn.be/stops/405383"], ["https://data.delijn.be/stops/401499", "https://data.delijn.be/stops/408635"], ["https://data.delijn.be/stops/206569", "https://data.delijn.be/stops/207569"], ["https://data.delijn.be/stops/108181", "https://data.delijn.be/stops/108184"], ["https://data.delijn.be/stops/501402", "https://data.delijn.be/stops/506401"], ["https://data.delijn.be/stops/104077", "https://data.delijn.be/stops/104078"], ["https://data.delijn.be/stops/103147", "https://data.delijn.be/stops/106296"], ["https://data.delijn.be/stops/304758", "https://data.delijn.be/stops/305289"], ["https://data.delijn.be/stops/103300", "https://data.delijn.be/stops/103305"], ["https://data.delijn.be/stops/202366", "https://data.delijn.be/stops/203997"], ["https://data.delijn.be/stops/207438", "https://data.delijn.be/stops/209560"], ["https://data.delijn.be/stops/408611", "https://data.delijn.be/stops/408695"], ["https://data.delijn.be/stops/308828", "https://data.delijn.be/stops/308829"], ["https://data.delijn.be/stops/205131", "https://data.delijn.be/stops/206635"], ["https://data.delijn.be/stops/207164", "https://data.delijn.be/stops/303378"], ["https://data.delijn.be/stops/108067", "https://data.delijn.be/stops/108366"], ["https://data.delijn.be/stops/303012", "https://data.delijn.be/stops/303044"], ["https://data.delijn.be/stops/300803", "https://data.delijn.be/stops/301956"], ["https://data.delijn.be/stops/201774", "https://data.delijn.be/stops/201807"], ["https://data.delijn.be/stops/407026", "https://data.delijn.be/stops/407035"], ["https://data.delijn.be/stops/305548", "https://data.delijn.be/stops/307824"], ["https://data.delijn.be/stops/209134", "https://data.delijn.be/stops/209135"], ["https://data.delijn.be/stops/505537", "https://data.delijn.be/stops/508803"], ["https://data.delijn.be/stops/509390", "https://data.delijn.be/stops/509391"], ["https://data.delijn.be/stops/503778", "https://data.delijn.be/stops/508779"], ["https://data.delijn.be/stops/304074", "https://data.delijn.be/stops/307050"], ["https://data.delijn.be/stops/302385", "https://data.delijn.be/stops/304117"], ["https://data.delijn.be/stops/405023", "https://data.delijn.be/stops/408372"], ["https://data.delijn.be/stops/200331", "https://data.delijn.be/stops/202196"], ["https://data.delijn.be/stops/301040", "https://data.delijn.be/stops/301052"], ["https://data.delijn.be/stops/402358", "https://data.delijn.be/stops/402359"], ["https://data.delijn.be/stops/106233", "https://data.delijn.be/stops/106236"], ["https://data.delijn.be/stops/404003", "https://data.delijn.be/stops/405968"], ["https://data.delijn.be/stops/207096", "https://data.delijn.be/stops/207097"], ["https://data.delijn.be/stops/409419", "https://data.delijn.be/stops/409420"], ["https://data.delijn.be/stops/101978", "https://data.delijn.be/stops/101979"], ["https://data.delijn.be/stops/209395", "https://data.delijn.be/stops/507959"], ["https://data.delijn.be/stops/202591", "https://data.delijn.be/stops/203590"], ["https://data.delijn.be/stops/409108", "https://data.delijn.be/stops/409113"], ["https://data.delijn.be/stops/402685", "https://data.delijn.be/stops/402724"], ["https://data.delijn.be/stops/308104", "https://data.delijn.be/stops/308105"], ["https://data.delijn.be/stops/106997", "https://data.delijn.be/stops/106998"], ["https://data.delijn.be/stops/307344", "https://data.delijn.be/stops/308535"], ["https://data.delijn.be/stops/107148", "https://data.delijn.be/stops/107149"], ["https://data.delijn.be/stops/102222", "https://data.delijn.be/stops/105543"], ["https://data.delijn.be/stops/202042", "https://data.delijn.be/stops/203730"], ["https://data.delijn.be/stops/206232", "https://data.delijn.be/stops/300161"], ["https://data.delijn.be/stops/301661", "https://data.delijn.be/stops/301666"], ["https://data.delijn.be/stops/505348", "https://data.delijn.be/stops/507370"], ["https://data.delijn.be/stops/200951", "https://data.delijn.be/stops/203076"], ["https://data.delijn.be/stops/501195", "https://data.delijn.be/stops/506194"], ["https://data.delijn.be/stops/203863", "https://data.delijn.be/stops/208692"], ["https://data.delijn.be/stops/307350", "https://data.delijn.be/stops/308590"], ["https://data.delijn.be/stops/503313", "https://data.delijn.be/stops/508791"], ["https://data.delijn.be/stops/108649", "https://data.delijn.be/stops/303980"], ["https://data.delijn.be/stops/203460", "https://data.delijn.be/stops/203461"], ["https://data.delijn.be/stops/404889", "https://data.delijn.be/stops/404907"], ["https://data.delijn.be/stops/301775", "https://data.delijn.be/stops/301779"], ["https://data.delijn.be/stops/201592", "https://data.delijn.be/stops/218935"], ["https://data.delijn.be/stops/202470", "https://data.delijn.be/stops/203470"], ["https://data.delijn.be/stops/504244", "https://data.delijn.be/stops/504702"], ["https://data.delijn.be/stops/204694", "https://data.delijn.be/stops/205691"], ["https://data.delijn.be/stops/206755", "https://data.delijn.be/stops/206803"], ["https://data.delijn.be/stops/301198", "https://data.delijn.be/stops/308264"], ["https://data.delijn.be/stops/503693", "https://data.delijn.be/stops/509871"], ["https://data.delijn.be/stops/200762", "https://data.delijn.be/stops/505286"], ["https://data.delijn.be/stops/305229", "https://data.delijn.be/stops/305890"], ["https://data.delijn.be/stops/304238", "https://data.delijn.be/stops/306706"], ["https://data.delijn.be/stops/108191", "https://data.delijn.be/stops/108192"], ["https://data.delijn.be/stops/105366", "https://data.delijn.be/stops/105394"], ["https://data.delijn.be/stops/305771", "https://data.delijn.be/stops/305786"], ["https://data.delijn.be/stops/207666", "https://data.delijn.be/stops/208505"], ["https://data.delijn.be/stops/401000", "https://data.delijn.be/stops/401153"], ["https://data.delijn.be/stops/204427", "https://data.delijn.be/stops/205412"], ["https://data.delijn.be/stops/206580", "https://data.delijn.be/stops/207819"], ["https://data.delijn.be/stops/404402", "https://data.delijn.be/stops/404412"], ["https://data.delijn.be/stops/503368", "https://data.delijn.be/stops/503414"], ["https://data.delijn.be/stops/403901", "https://data.delijn.be/stops/403933"], ["https://data.delijn.be/stops/409015", "https://data.delijn.be/stops/409017"], ["https://data.delijn.be/stops/301159", "https://data.delijn.be/stops/307682"], ["https://data.delijn.be/stops/103291", "https://data.delijn.be/stops/108732"], ["https://data.delijn.be/stops/504373", "https://data.delijn.be/stops/505714"], ["https://data.delijn.be/stops/305686", "https://data.delijn.be/stops/305687"], ["https://data.delijn.be/stops/303514", "https://data.delijn.be/stops/307891"], ["https://data.delijn.be/stops/400140", "https://data.delijn.be/stops/400141"], ["https://data.delijn.be/stops/203486", "https://data.delijn.be/stops/203487"], ["https://data.delijn.be/stops/202663", "https://data.delijn.be/stops/203663"], ["https://data.delijn.be/stops/307272", "https://data.delijn.be/stops/308694"], ["https://data.delijn.be/stops/502248", "https://data.delijn.be/stops/507245"], ["https://data.delijn.be/stops/200724", "https://data.delijn.be/stops/202328"], ["https://data.delijn.be/stops/402414", "https://data.delijn.be/stops/402416"], ["https://data.delijn.be/stops/304447", "https://data.delijn.be/stops/304450"], ["https://data.delijn.be/stops/208218", "https://data.delijn.be/stops/208593"], ["https://data.delijn.be/stops/210025", "https://data.delijn.be/stops/210037"], ["https://data.delijn.be/stops/503162", "https://data.delijn.be/stops/503176"], ["https://data.delijn.be/stops/206104", "https://data.delijn.be/stops/306722"], ["https://data.delijn.be/stops/401846", "https://data.delijn.be/stops/406236"], ["https://data.delijn.be/stops/106311", "https://data.delijn.be/stops/106313"], ["https://data.delijn.be/stops/300944", "https://data.delijn.be/stops/303670"], ["https://data.delijn.be/stops/507183", "https://data.delijn.be/stops/507186"], ["https://data.delijn.be/stops/201240", "https://data.delijn.be/stops/202955"], ["https://data.delijn.be/stops/200937", "https://data.delijn.be/stops/203704"], ["https://data.delijn.be/stops/206535", "https://data.delijn.be/stops/209687"], ["https://data.delijn.be/stops/202453", "https://data.delijn.be/stops/203453"], ["https://data.delijn.be/stops/202406", "https://data.delijn.be/stops/210405"], ["https://data.delijn.be/stops/502440", "https://data.delijn.be/stops/502750"], ["https://data.delijn.be/stops/205662", "https://data.delijn.be/stops/205681"], ["https://data.delijn.be/stops/405244", "https://data.delijn.be/stops/406324"], ["https://data.delijn.be/stops/205258", "https://data.delijn.be/stops/205286"], ["https://data.delijn.be/stops/305275", "https://data.delijn.be/stops/305312"], ["https://data.delijn.be/stops/105128", "https://data.delijn.be/stops/105129"], ["https://data.delijn.be/stops/206460", "https://data.delijn.be/stops/207461"], ["https://data.delijn.be/stops/200273", "https://data.delijn.be/stops/202002"], ["https://data.delijn.be/stops/500119", "https://data.delijn.be/stops/500120"], ["https://data.delijn.be/stops/306710", "https://data.delijn.be/stops/307983"], ["https://data.delijn.be/stops/206750", "https://data.delijn.be/stops/209473"], ["https://data.delijn.be/stops/400555", "https://data.delijn.be/stops/403425"], ["https://data.delijn.be/stops/109292", "https://data.delijn.be/stops/109295"], ["https://data.delijn.be/stops/302549", "https://data.delijn.be/stops/302558"], ["https://data.delijn.be/stops/304033", "https://data.delijn.be/stops/304090"], ["https://data.delijn.be/stops/102573", "https://data.delijn.be/stops/109168"], ["https://data.delijn.be/stops/207008", "https://data.delijn.be/stops/207052"], ["https://data.delijn.be/stops/200857", "https://data.delijn.be/stops/203306"], ["https://data.delijn.be/stops/304495", "https://data.delijn.be/stops/304497"], ["https://data.delijn.be/stops/404228", "https://data.delijn.be/stops/405653"], ["https://data.delijn.be/stops/303351", "https://data.delijn.be/stops/303361"], ["https://data.delijn.be/stops/304470", "https://data.delijn.be/stops/304526"], ["https://data.delijn.be/stops/302395", "https://data.delijn.be/stops/302762"], ["https://data.delijn.be/stops/303793", "https://data.delijn.be/stops/303846"], ["https://data.delijn.be/stops/302908", "https://data.delijn.be/stops/304325"], ["https://data.delijn.be/stops/303590", "https://data.delijn.be/stops/306392"], ["https://data.delijn.be/stops/207281", "https://data.delijn.be/stops/207282"], ["https://data.delijn.be/stops/207944", "https://data.delijn.be/stops/207945"], ["https://data.delijn.be/stops/101383", "https://data.delijn.be/stops/101384"], ["https://data.delijn.be/stops/504943", "https://data.delijn.be/stops/509153"], ["https://data.delijn.be/stops/503064", "https://data.delijn.be/stops/509303"], ["https://data.delijn.be/stops/505507", "https://data.delijn.be/stops/505607"], ["https://data.delijn.be/stops/503422", "https://data.delijn.be/stops/508405"], ["https://data.delijn.be/stops/503609", "https://data.delijn.be/stops/508610"], ["https://data.delijn.be/stops/502516", "https://data.delijn.be/stops/507516"], ["https://data.delijn.be/stops/106364", "https://data.delijn.be/stops/106366"], ["https://data.delijn.be/stops/101931", "https://data.delijn.be/stops/106253"], ["https://data.delijn.be/stops/203974", "https://data.delijn.be/stops/204236"], ["https://data.delijn.be/stops/207450", "https://data.delijn.be/stops/207492"], ["https://data.delijn.be/stops/401439", "https://data.delijn.be/stops/401633"], ["https://data.delijn.be/stops/501087", "https://data.delijn.be/stops/501093"], ["https://data.delijn.be/stops/204311", "https://data.delijn.be/stops/204449"], ["https://data.delijn.be/stops/106720", "https://data.delijn.be/stops/109672"], ["https://data.delijn.be/stops/302348", "https://data.delijn.be/stops/302357"], ["https://data.delijn.be/stops/302763", "https://data.delijn.be/stops/302764"], ["https://data.delijn.be/stops/101183", "https://data.delijn.be/stops/205644"], ["https://data.delijn.be/stops/106488", "https://data.delijn.be/stops/106490"], ["https://data.delijn.be/stops/401207", "https://data.delijn.be/stops/401375"], ["https://data.delijn.be/stops/205469", "https://data.delijn.be/stops/214010"], ["https://data.delijn.be/stops/308229", "https://data.delijn.be/stops/308230"], ["https://data.delijn.be/stops/109059", "https://data.delijn.be/stops/109062"], ["https://data.delijn.be/stops/207586", "https://data.delijn.be/stops/207919"], ["https://data.delijn.be/stops/300625", "https://data.delijn.be/stops/300626"], ["https://data.delijn.be/stops/107812", "https://data.delijn.be/stops/109918"], ["https://data.delijn.be/stops/408102", "https://data.delijn.be/stops/408420"], ["https://data.delijn.be/stops/406881", "https://data.delijn.be/stops/409768"], ["https://data.delijn.be/stops/400564", "https://data.delijn.be/stops/400565"], ["https://data.delijn.be/stops/204068", "https://data.delijn.be/stops/204402"], ["https://data.delijn.be/stops/305999", "https://data.delijn.be/stops/306003"], ["https://data.delijn.be/stops/305052", "https://data.delijn.be/stops/306929"], ["https://data.delijn.be/stops/400810", "https://data.delijn.be/stops/405666"], ["https://data.delijn.be/stops/103685", "https://data.delijn.be/stops/103977"], ["https://data.delijn.be/stops/208801", "https://data.delijn.be/stops/209211"], ["https://data.delijn.be/stops/401511", "https://data.delijn.be/stops/402844"], ["https://data.delijn.be/stops/102456", "https://data.delijn.be/stops/102462"], ["https://data.delijn.be/stops/302564", "https://data.delijn.be/stops/302601"], ["https://data.delijn.be/stops/103206", "https://data.delijn.be/stops/106436"], ["https://data.delijn.be/stops/108138", "https://data.delijn.be/stops/108843"], ["https://data.delijn.be/stops/402444", "https://data.delijn.be/stops/402446"], ["https://data.delijn.be/stops/302795", "https://data.delijn.be/stops/306561"], ["https://data.delijn.be/stops/104124", "https://data.delijn.be/stops/104126"], ["https://data.delijn.be/stops/303363", "https://data.delijn.be/stops/303397"], ["https://data.delijn.be/stops/407941", "https://data.delijn.be/stops/408125"], ["https://data.delijn.be/stops/407397", "https://data.delijn.be/stops/407542"], ["https://data.delijn.be/stops/105872", "https://data.delijn.be/stops/109744"], ["https://data.delijn.be/stops/304250", "https://data.delijn.be/stops/304257"], ["https://data.delijn.be/stops/205630", "https://data.delijn.be/stops/205631"], ["https://data.delijn.be/stops/401129", "https://data.delijn.be/stops/407796"], ["https://data.delijn.be/stops/403058", "https://data.delijn.be/stops/406836"], ["https://data.delijn.be/stops/103283", "https://data.delijn.be/stops/105995"], ["https://data.delijn.be/stops/302949", "https://data.delijn.be/stops/306297"], ["https://data.delijn.be/stops/401225", "https://data.delijn.be/stops/406943"], ["https://data.delijn.be/stops/300183", "https://data.delijn.be/stops/306742"], ["https://data.delijn.be/stops/503094", "https://data.delijn.be/stops/505848"], ["https://data.delijn.be/stops/201772", "https://data.delijn.be/stops/209271"], ["https://data.delijn.be/stops/501318", "https://data.delijn.be/stops/506517"], ["https://data.delijn.be/stops/504756", "https://data.delijn.be/stops/509755"], ["https://data.delijn.be/stops/403648", "https://data.delijn.be/stops/403649"], ["https://data.delijn.be/stops/308168", "https://data.delijn.be/stops/308169"], ["https://data.delijn.be/stops/400886", "https://data.delijn.be/stops/409614"], ["https://data.delijn.be/stops/503478", "https://data.delijn.be/stops/504805"], ["https://data.delijn.be/stops/305918", "https://data.delijn.be/stops/307457"], ["https://data.delijn.be/stops/505265", "https://data.delijn.be/stops/508219"], ["https://data.delijn.be/stops/104571", "https://data.delijn.be/stops/104572"], ["https://data.delijn.be/stops/303285", "https://data.delijn.be/stops/303331"], ["https://data.delijn.be/stops/407859", "https://data.delijn.be/stops/407945"], ["https://data.delijn.be/stops/407682", "https://data.delijn.be/stops/409878"], ["https://data.delijn.be/stops/102824", "https://data.delijn.be/stops/106236"], ["https://data.delijn.be/stops/303522", "https://data.delijn.be/stops/303523"], ["https://data.delijn.be/stops/502065", "https://data.delijn.be/stops/505680"], ["https://data.delijn.be/stops/102886", "https://data.delijn.be/stops/102887"], ["https://data.delijn.be/stops/104962", "https://data.delijn.be/stops/109615"], ["https://data.delijn.be/stops/406160", "https://data.delijn.be/stops/406296"], ["https://data.delijn.be/stops/206308", "https://data.delijn.be/stops/207307"], ["https://data.delijn.be/stops/302857", "https://data.delijn.be/stops/302889"], ["https://data.delijn.be/stops/206949", "https://data.delijn.be/stops/207591"], ["https://data.delijn.be/stops/206185", "https://data.delijn.be/stops/207955"], ["https://data.delijn.be/stops/200251", "https://data.delijn.be/stops/202193"], ["https://data.delijn.be/stops/303820", "https://data.delijn.be/stops/303821"], ["https://data.delijn.be/stops/502235", "https://data.delijn.be/stops/502684"], ["https://data.delijn.be/stops/401543", "https://data.delijn.be/stops/401958"], ["https://data.delijn.be/stops/500043", "https://data.delijn.be/stops/500045"], ["https://data.delijn.be/stops/206365", "https://data.delijn.be/stops/207335"], ["https://data.delijn.be/stops/501238", "https://data.delijn.be/stops/506425"], ["https://data.delijn.be/stops/103240", "https://data.delijn.be/stops/107395"], ["https://data.delijn.be/stops/208403", "https://data.delijn.be/stops/209290"], ["https://data.delijn.be/stops/202391", "https://data.delijn.be/stops/202395"], ["https://data.delijn.be/stops/106580", "https://data.delijn.be/stops/107790"], ["https://data.delijn.be/stops/300448", "https://data.delijn.be/stops/308297"], ["https://data.delijn.be/stops/105386", "https://data.delijn.be/stops/105389"], ["https://data.delijn.be/stops/408222", "https://data.delijn.be/stops/408299"], ["https://data.delijn.be/stops/502668", "https://data.delijn.be/stops/507668"], ["https://data.delijn.be/stops/202937", "https://data.delijn.be/stops/203816"], ["https://data.delijn.be/stops/405200", "https://data.delijn.be/stops/405201"], ["https://data.delijn.be/stops/401288", "https://data.delijn.be/stops/405467"], ["https://data.delijn.be/stops/201497", "https://data.delijn.be/stops/211055"], ["https://data.delijn.be/stops/300468", "https://data.delijn.be/stops/300469"], ["https://data.delijn.be/stops/402944", "https://data.delijn.be/stops/402945"], ["https://data.delijn.be/stops/403601", "https://data.delijn.be/stops/407515"], ["https://data.delijn.be/stops/301549", "https://data.delijn.be/stops/301595"], ["https://data.delijn.be/stops/204139", "https://data.delijn.be/stops/207888"], ["https://data.delijn.be/stops/208622", "https://data.delijn.be/stops/208623"], ["https://data.delijn.be/stops/107067", "https://data.delijn.be/stops/107068"], ["https://data.delijn.be/stops/102253", "https://data.delijn.be/stops/109307"], ["https://data.delijn.be/stops/106400", "https://data.delijn.be/stops/106574"], ["https://data.delijn.be/stops/304150", "https://data.delijn.be/stops/307761"], ["https://data.delijn.be/stops/302943", "https://data.delijn.be/stops/302944"], ["https://data.delijn.be/stops/204511", "https://data.delijn.be/stops/205497"], ["https://data.delijn.be/stops/101788", "https://data.delijn.be/stops/105613"], ["https://data.delijn.be/stops/303304", "https://data.delijn.be/stops/303305"], ["https://data.delijn.be/stops/304086", "https://data.delijn.be/stops/306004"], ["https://data.delijn.be/stops/108857", "https://data.delijn.be/stops/108859"], ["https://data.delijn.be/stops/207840", "https://data.delijn.be/stops/207927"], ["https://data.delijn.be/stops/502566", "https://data.delijn.be/stops/507575"], ["https://data.delijn.be/stops/106533", "https://data.delijn.be/stops/107304"], ["https://data.delijn.be/stops/103722", "https://data.delijn.be/stops/306590"], ["https://data.delijn.be/stops/106473", "https://data.delijn.be/stops/107051"], ["https://data.delijn.be/stops/502801", "https://data.delijn.be/stops/504158"], ["https://data.delijn.be/stops/502812", "https://data.delijn.be/stops/505670"], ["https://data.delijn.be/stops/401454", "https://data.delijn.be/stops/401458"], ["https://data.delijn.be/stops/208644", "https://data.delijn.be/stops/209645"], ["https://data.delijn.be/stops/105336", "https://data.delijn.be/stops/105341"], ["https://data.delijn.be/stops/408654", "https://data.delijn.be/stops/408691"], ["https://data.delijn.be/stops/206194", "https://data.delijn.be/stops/207194"], ["https://data.delijn.be/stops/502450", "https://data.delijn.be/stops/502466"], ["https://data.delijn.be/stops/102380", "https://data.delijn.be/stops/104030"], ["https://data.delijn.be/stops/105419", "https://data.delijn.be/stops/109829"], ["https://data.delijn.be/stops/504656", "https://data.delijn.be/stops/505119"], ["https://data.delijn.be/stops/206267", "https://data.delijn.be/stops/207902"], ["https://data.delijn.be/stops/200910", "https://data.delijn.be/stops/203252"], ["https://data.delijn.be/stops/302789", "https://data.delijn.be/stops/307845"], ["https://data.delijn.be/stops/205079", "https://data.delijn.be/stops/205584"], ["https://data.delijn.be/stops/205374", "https://data.delijn.be/stops/205762"], ["https://data.delijn.be/stops/202983", "https://data.delijn.be/stops/203983"], ["https://data.delijn.be/stops/400505", "https://data.delijn.be/stops/401437"], ["https://data.delijn.be/stops/204129", "https://data.delijn.be/stops/204575"], ["https://data.delijn.be/stops/504048", "https://data.delijn.be/stops/509056"], ["https://data.delijn.be/stops/300283", "https://data.delijn.be/stops/300298"], ["https://data.delijn.be/stops/301991", "https://data.delijn.be/stops/303281"], ["https://data.delijn.be/stops/402327", "https://data.delijn.be/stops/409372"], ["https://data.delijn.be/stops/505514", "https://data.delijn.be/stops/505618"], ["https://data.delijn.be/stops/103622", "https://data.delijn.be/stops/106196"], ["https://data.delijn.be/stops/304820", "https://data.delijn.be/stops/306405"], ["https://data.delijn.be/stops/206777", "https://data.delijn.be/stops/209477"], ["https://data.delijn.be/stops/305587", "https://data.delijn.be/stops/308816"], ["https://data.delijn.be/stops/404128", "https://data.delijn.be/stops/404129"], ["https://data.delijn.be/stops/407693", "https://data.delijn.be/stops/409878"], ["https://data.delijn.be/stops/504226", "https://data.delijn.be/stops/504228"], ["https://data.delijn.be/stops/404188", "https://data.delijn.be/stops/404195"], ["https://data.delijn.be/stops/503634", "https://data.delijn.be/stops/504676"], ["https://data.delijn.be/stops/301665", "https://data.delijn.be/stops/307822"], ["https://data.delijn.be/stops/509276", "https://data.delijn.be/stops/509978"], ["https://data.delijn.be/stops/503282", "https://data.delijn.be/stops/505952"], ["https://data.delijn.be/stops/301827", "https://data.delijn.be/stops/301840"], ["https://data.delijn.be/stops/506235", "https://data.delijn.be/stops/506245"], ["https://data.delijn.be/stops/206030", "https://data.delijn.be/stops/206901"], ["https://data.delijn.be/stops/400773", "https://data.delijn.be/stops/409634"], ["https://data.delijn.be/stops/105009", "https://data.delijn.be/stops/106833"], ["https://data.delijn.be/stops/208406", "https://data.delijn.be/stops/208740"], ["https://data.delijn.be/stops/404314", "https://data.delijn.be/stops/404390"], ["https://data.delijn.be/stops/201694", "https://data.delijn.be/stops/201864"], ["https://data.delijn.be/stops/404696", "https://data.delijn.be/stops/407141"], ["https://data.delijn.be/stops/104383", "https://data.delijn.be/stops/104384"], ["https://data.delijn.be/stops/500953", "https://data.delijn.be/stops/508623"], ["https://data.delijn.be/stops/108633", "https://data.delijn.be/stops/109662"], ["https://data.delijn.be/stops/108727", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/501622", "https://data.delijn.be/stops/506620"], ["https://data.delijn.be/stops/206626", "https://data.delijn.be/stops/207626"], ["https://data.delijn.be/stops/504948", "https://data.delijn.be/stops/509948"], ["https://data.delijn.be/stops/405684", "https://data.delijn.be/stops/405687"], ["https://data.delijn.be/stops/504604", "https://data.delijn.be/stops/509604"], ["https://data.delijn.be/stops/307047", "https://data.delijn.be/stops/307781"], ["https://data.delijn.be/stops/408344", "https://data.delijn.be/stops/410158"], ["https://data.delijn.be/stops/405124", "https://data.delijn.be/stops/409284"], ["https://data.delijn.be/stops/103725", "https://data.delijn.be/stops/104480"], ["https://data.delijn.be/stops/401647", "https://data.delijn.be/stops/401648"], ["https://data.delijn.be/stops/301651", "https://data.delijn.be/stops/301652"], ["https://data.delijn.be/stops/305522", "https://data.delijn.be/stops/305573"], ["https://data.delijn.be/stops/102961", "https://data.delijn.be/stops/107248"], ["https://data.delijn.be/stops/201769", "https://data.delijn.be/stops/219011"], ["https://data.delijn.be/stops/504649", "https://data.delijn.be/stops/505119"], ["https://data.delijn.be/stops/305648", "https://data.delijn.be/stops/305649"], ["https://data.delijn.be/stops/300480", "https://data.delijn.be/stops/308929"], ["https://data.delijn.be/stops/300806", "https://data.delijn.be/stops/304774"], ["https://data.delijn.be/stops/504805", "https://data.delijn.be/stops/504806"], ["https://data.delijn.be/stops/206142", "https://data.delijn.be/stops/207089"], ["https://data.delijn.be/stops/505408", "https://data.delijn.be/stops/508146"], ["https://data.delijn.be/stops/204115", "https://data.delijn.be/stops/205690"], ["https://data.delijn.be/stops/101320", "https://data.delijn.be/stops/104111"], ["https://data.delijn.be/stops/201825", "https://data.delijn.be/stops/202309"], ["https://data.delijn.be/stops/402317", "https://data.delijn.be/stops/402398"], ["https://data.delijn.be/stops/504253", "https://data.delijn.be/stops/504715"], ["https://data.delijn.be/stops/208194", "https://data.delijn.be/stops/209155"], ["https://data.delijn.be/stops/203932", "https://data.delijn.be/stops/218001"], ["https://data.delijn.be/stops/300964", "https://data.delijn.be/stops/300974"], ["https://data.delijn.be/stops/301813", "https://data.delijn.be/stops/307181"], ["https://data.delijn.be/stops/203111", "https://data.delijn.be/stops/205069"], ["https://data.delijn.be/stops/405538", "https://data.delijn.be/stops/409271"], ["https://data.delijn.be/stops/206441", "https://data.delijn.be/stops/207441"], ["https://data.delijn.be/stops/208271", "https://data.delijn.be/stops/208272"], ["https://data.delijn.be/stops/407376", "https://data.delijn.be/stops/407377"], ["https://data.delijn.be/stops/109896", "https://data.delijn.be/stops/109897"], ["https://data.delijn.be/stops/101601", "https://data.delijn.be/stops/103609"], ["https://data.delijn.be/stops/109022", "https://data.delijn.be/stops/109075"], ["https://data.delijn.be/stops/302298", "https://data.delijn.be/stops/303507"], ["https://data.delijn.be/stops/300235", "https://data.delijn.be/stops/300283"], ["https://data.delijn.be/stops/209575", "https://data.delijn.be/stops/307525"], ["https://data.delijn.be/stops/401814", "https://data.delijn.be/stops/401818"], ["https://data.delijn.be/stops/108762", "https://data.delijn.be/stops/108763"], ["https://data.delijn.be/stops/406211", "https://data.delijn.be/stops/406212"], ["https://data.delijn.be/stops/208186", "https://data.delijn.be/stops/209185"], ["https://data.delijn.be/stops/101540", "https://data.delijn.be/stops/104626"], ["https://data.delijn.be/stops/208249", "https://data.delijn.be/stops/209249"], ["https://data.delijn.be/stops/408493", "https://data.delijn.be/stops/408952"], ["https://data.delijn.be/stops/206021", "https://data.delijn.be/stops/207021"], ["https://data.delijn.be/stops/204488", "https://data.delijn.be/stops/205485"], ["https://data.delijn.be/stops/200955", "https://data.delijn.be/stops/201913"], ["https://data.delijn.be/stops/108441", "https://data.delijn.be/stops/108444"], ["https://data.delijn.be/stops/303230", "https://data.delijn.be/stops/304549"], ["https://data.delijn.be/stops/403127", "https://data.delijn.be/stops/403129"], ["https://data.delijn.be/stops/302935", "https://data.delijn.be/stops/306371"], ["https://data.delijn.be/stops/105474", "https://data.delijn.be/stops/105682"], ["https://data.delijn.be/stops/308640", "https://data.delijn.be/stops/308641"], ["https://data.delijn.be/stops/407997", "https://data.delijn.be/stops/407999"], ["https://data.delijn.be/stops/107744", "https://data.delijn.be/stops/107745"], ["https://data.delijn.be/stops/500047", "https://data.delijn.be/stops/500048"], ["https://data.delijn.be/stops/305001", "https://data.delijn.be/stops/305021"], ["https://data.delijn.be/stops/402088", "https://data.delijn.be/stops/402202"], ["https://data.delijn.be/stops/208106", "https://data.delijn.be/stops/209778"], ["https://data.delijn.be/stops/207366", "https://data.delijn.be/stops/207688"], ["https://data.delijn.be/stops/304594", "https://data.delijn.be/stops/304630"], ["https://data.delijn.be/stops/200852", "https://data.delijn.be/stops/203066"], ["https://data.delijn.be/stops/504710", "https://data.delijn.be/stops/509164"], ["https://data.delijn.be/stops/107451", "https://data.delijn.be/stops/109755"], ["https://data.delijn.be/stops/302653", "https://data.delijn.be/stops/302654"], ["https://data.delijn.be/stops/107052", "https://data.delijn.be/stops/107053"], ["https://data.delijn.be/stops/205200", "https://data.delijn.be/stops/205205"], ["https://data.delijn.be/stops/305666", "https://data.delijn.be/stops/305748"], ["https://data.delijn.be/stops/207774", "https://data.delijn.be/stops/209187"], ["https://data.delijn.be/stops/105139", "https://data.delijn.be/stops/108506"], ["https://data.delijn.be/stops/404128", "https://data.delijn.be/stops/408554"], ["https://data.delijn.be/stops/101928", "https://data.delijn.be/stops/108192"], ["https://data.delijn.be/stops/107201", "https://data.delijn.be/stops/107612"], ["https://data.delijn.be/stops/303243", "https://data.delijn.be/stops/304247"], ["https://data.delijn.be/stops/305869", "https://data.delijn.be/stops/306827"], ["https://data.delijn.be/stops/504521", "https://data.delijn.be/stops/505803"], ["https://data.delijn.be/stops/202125", "https://data.delijn.be/stops/203600"], ["https://data.delijn.be/stops/402988", "https://data.delijn.be/stops/410053"], ["https://data.delijn.be/stops/404856", "https://data.delijn.be/stops/404913"], ["https://data.delijn.be/stops/400608", "https://data.delijn.be/stops/400609"], ["https://data.delijn.be/stops/504089", "https://data.delijn.be/stops/509087"], ["https://data.delijn.be/stops/502500", "https://data.delijn.be/stops/505331"], ["https://data.delijn.be/stops/201360", "https://data.delijn.be/stops/209908"], ["https://data.delijn.be/stops/300503", "https://data.delijn.be/stops/302366"], ["https://data.delijn.be/stops/400098", "https://data.delijn.be/stops/400128"], ["https://data.delijn.be/stops/202443", "https://data.delijn.be/stops/203443"], ["https://data.delijn.be/stops/401785", "https://data.delijn.be/stops/406116"], ["https://data.delijn.be/stops/200630", "https://data.delijn.be/stops/201630"], ["https://data.delijn.be/stops/305716", "https://data.delijn.be/stops/306059"], ["https://data.delijn.be/stops/102619", "https://data.delijn.be/stops/108209"], ["https://data.delijn.be/stops/200938", "https://data.delijn.be/stops/201405"], ["https://data.delijn.be/stops/504964", "https://data.delijn.be/stops/504965"], ["https://data.delijn.be/stops/506635", "https://data.delijn.be/stops/506738"], ["https://data.delijn.be/stops/407002", "https://data.delijn.be/stops/308079"], ["https://data.delijn.be/stops/203455", "https://data.delijn.be/stops/203459"], ["https://data.delijn.be/stops/200809", "https://data.delijn.be/stops/200899"], ["https://data.delijn.be/stops/401971", "https://data.delijn.be/stops/401976"], ["https://data.delijn.be/stops/307152", "https://data.delijn.be/stops/307153"], ["https://data.delijn.be/stops/504099", "https://data.delijn.be/stops/504832"], ["https://data.delijn.be/stops/305146", "https://data.delijn.be/stops/305152"], ["https://data.delijn.be/stops/208075", "https://data.delijn.be/stops/208124"], ["https://data.delijn.be/stops/302511", "https://data.delijn.be/stops/305839"], ["https://data.delijn.be/stops/101226", "https://data.delijn.be/stops/107808"], ["https://data.delijn.be/stops/504358", "https://data.delijn.be/stops/509358"], ["https://data.delijn.be/stops/308013", "https://data.delijn.be/stops/308014"], ["https://data.delijn.be/stops/201947", "https://data.delijn.be/stops/203454"], ["https://data.delijn.be/stops/508108", "https://data.delijn.be/stops/508529"], ["https://data.delijn.be/stops/402396", "https://data.delijn.be/stops/405134"], ["https://data.delijn.be/stops/207015", "https://data.delijn.be/stops/207166"], ["https://data.delijn.be/stops/208354", "https://data.delijn.be/stops/209353"], ["https://data.delijn.be/stops/402314", "https://data.delijn.be/stops/405692"], ["https://data.delijn.be/stops/202134", "https://data.delijn.be/stops/203133"], ["https://data.delijn.be/stops/402612", "https://data.delijn.be/stops/405561"], ["https://data.delijn.be/stops/505239", "https://data.delijn.be/stops/505934"], ["https://data.delijn.be/stops/407161", "https://data.delijn.be/stops/407185"], ["https://data.delijn.be/stops/504771", "https://data.delijn.be/stops/504875"], ["https://data.delijn.be/stops/208494", "https://data.delijn.be/stops/209494"], ["https://data.delijn.be/stops/202374", "https://data.delijn.be/stops/203374"], ["https://data.delijn.be/stops/306597", "https://data.delijn.be/stops/306604"], ["https://data.delijn.be/stops/303010", "https://data.delijn.be/stops/306100"], ["https://data.delijn.be/stops/206241", "https://data.delijn.be/stops/207241"], ["https://data.delijn.be/stops/209474", "https://data.delijn.be/stops/209475"], ["https://data.delijn.be/stops/109161", "https://data.delijn.be/stops/109162"], ["https://data.delijn.be/stops/101046", "https://data.delijn.be/stops/102009"], ["https://data.delijn.be/stops/208362", "https://data.delijn.be/stops/209362"], ["https://data.delijn.be/stops/303559", "https://data.delijn.be/stops/308688"], ["https://data.delijn.be/stops/504529", "https://data.delijn.be/stops/509529"], ["https://data.delijn.be/stops/307564", "https://data.delijn.be/stops/307652"], ["https://data.delijn.be/stops/301935", "https://data.delijn.be/stops/308719"], ["https://data.delijn.be/stops/308208", "https://data.delijn.be/stops/308209"], ["https://data.delijn.be/stops/404443", "https://data.delijn.be/stops/408371"], ["https://data.delijn.be/stops/104486", "https://data.delijn.be/stops/307899"], ["https://data.delijn.be/stops/206882", "https://data.delijn.be/stops/207030"], ["https://data.delijn.be/stops/503489", "https://data.delijn.be/stops/508489"], ["https://data.delijn.be/stops/304484", "https://data.delijn.be/stops/304485"], ["https://data.delijn.be/stops/106598", "https://data.delijn.be/stops/107210"], ["https://data.delijn.be/stops/108836", "https://data.delijn.be/stops/108837"], ["https://data.delijn.be/stops/302714", "https://data.delijn.be/stops/302731"], ["https://data.delijn.be/stops/501265", "https://data.delijn.be/stops/501293"], ["https://data.delijn.be/stops/401520", "https://data.delijn.be/stops/401723"], ["https://data.delijn.be/stops/503295", "https://data.delijn.be/stops/508672"], ["https://data.delijn.be/stops/300441", "https://data.delijn.be/stops/307093"], ["https://data.delijn.be/stops/105668", "https://data.delijn.be/stops/106058"], ["https://data.delijn.be/stops/206470", "https://data.delijn.be/stops/207470"], ["https://data.delijn.be/stops/101796", "https://data.delijn.be/stops/103492"], ["https://data.delijn.be/stops/104804", "https://data.delijn.be/stops/109113"], ["https://data.delijn.be/stops/201698", "https://data.delijn.be/stops/203445"], ["https://data.delijn.be/stops/401836", "https://data.delijn.be/stops/406017"], ["https://data.delijn.be/stops/401268", "https://data.delijn.be/stops/401382"], ["https://data.delijn.be/stops/505442", "https://data.delijn.be/stops/509141"], ["https://data.delijn.be/stops/301983", "https://data.delijn.be/stops/304152"], ["https://data.delijn.be/stops/103576", "https://data.delijn.be/stops/106613"], ["https://data.delijn.be/stops/105772", "https://data.delijn.be/stops/105782"], ["https://data.delijn.be/stops/400830", "https://data.delijn.be/stops/402245"], ["https://data.delijn.be/stops/204516", "https://data.delijn.be/stops/205516"], ["https://data.delijn.be/stops/400573", "https://data.delijn.be/stops/403226"], ["https://data.delijn.be/stops/406365", "https://data.delijn.be/stops/406410"], ["https://data.delijn.be/stops/208231", "https://data.delijn.be/stops/209231"], ["https://data.delijn.be/stops/106960", "https://data.delijn.be/stops/109512"], ["https://data.delijn.be/stops/204767", "https://data.delijn.be/stops/205768"], ["https://data.delijn.be/stops/506311", "https://data.delijn.be/stops/506337"], ["https://data.delijn.be/stops/305284", "https://data.delijn.be/stops/305288"], ["https://data.delijn.be/stops/104937", "https://data.delijn.be/stops/108353"], ["https://data.delijn.be/stops/301104", "https://data.delijn.be/stops/302016"], ["https://data.delijn.be/stops/109552", "https://data.delijn.be/stops/300050"], ["https://data.delijn.be/stops/202797", "https://data.delijn.be/stops/502759"], ["https://data.delijn.be/stops/307619", "https://data.delijn.be/stops/308759"], ["https://data.delijn.be/stops/204068", "https://data.delijn.be/stops/205190"], ["https://data.delijn.be/stops/500010", "https://data.delijn.be/stops/502330"], ["https://data.delijn.be/stops/200337", "https://data.delijn.be/stops/202204"], ["https://data.delijn.be/stops/304848", "https://data.delijn.be/stops/308524"], ["https://data.delijn.be/stops/206935", "https://data.delijn.be/stops/207238"], ["https://data.delijn.be/stops/201819", "https://data.delijn.be/stops/218026"], ["https://data.delijn.be/stops/203819", "https://data.delijn.be/stops/203912"], ["https://data.delijn.be/stops/503288", "https://data.delijn.be/stops/508282"], ["https://data.delijn.be/stops/306304", "https://data.delijn.be/stops/307926"], ["https://data.delijn.be/stops/200410", "https://data.delijn.be/stops/201412"], ["https://data.delijn.be/stops/508036", "https://data.delijn.be/stops/508185"], ["https://data.delijn.be/stops/507461", "https://data.delijn.be/stops/507662"], ["https://data.delijn.be/stops/501118", "https://data.delijn.be/stops/501124"], ["https://data.delijn.be/stops/203247", "https://data.delijn.be/stops/203248"], ["https://data.delijn.be/stops/202540", "https://data.delijn.be/stops/203540"], ["https://data.delijn.be/stops/109209", "https://data.delijn.be/stops/109210"], ["https://data.delijn.be/stops/104411", "https://data.delijn.be/stops/204335"], ["https://data.delijn.be/stops/404131", "https://data.delijn.be/stops/408555"], ["https://data.delijn.be/stops/303152", "https://data.delijn.be/stops/303193"], ["https://data.delijn.be/stops/508259", "https://data.delijn.be/stops/508744"], ["https://data.delijn.be/stops/401515", "https://data.delijn.be/stops/401743"], ["https://data.delijn.be/stops/303030", "https://data.delijn.be/stops/307727"], ["https://data.delijn.be/stops/406013", "https://data.delijn.be/stops/406118"], ["https://data.delijn.be/stops/303123", "https://data.delijn.be/stops/307201"], ["https://data.delijn.be/stops/202617", "https://data.delijn.be/stops/203617"], ["https://data.delijn.be/stops/401808", "https://data.delijn.be/stops/401809"], ["https://data.delijn.be/stops/408538", "https://data.delijn.be/stops/408688"], ["https://data.delijn.be/stops/206514", "https://data.delijn.be/stops/206659"], ["https://data.delijn.be/stops/400817", "https://data.delijn.be/stops/400876"], ["https://data.delijn.be/stops/504663", "https://data.delijn.be/stops/509496"], ["https://data.delijn.be/stops/107928", "https://data.delijn.be/stops/301152"], ["https://data.delijn.be/stops/502105", "https://data.delijn.be/stops/507680"], ["https://data.delijn.be/stops/102260", "https://data.delijn.be/stops/102290"], ["https://data.delijn.be/stops/203975", "https://data.delijn.be/stops/207398"], ["https://data.delijn.be/stops/302493", "https://data.delijn.be/stops/302496"], ["https://data.delijn.be/stops/307002", "https://data.delijn.be/stops/308823"], ["https://data.delijn.be/stops/400226", "https://data.delijn.be/stops/400231"], ["https://data.delijn.be/stops/401281", "https://data.delijn.be/stops/406686"], ["https://data.delijn.be/stops/207385", "https://data.delijn.be/stops/207807"], ["https://data.delijn.be/stops/402140", "https://data.delijn.be/stops/402397"], ["https://data.delijn.be/stops/206467", "https://data.delijn.be/stops/207825"], ["https://data.delijn.be/stops/206062", "https://data.delijn.be/stops/206063"], ["https://data.delijn.be/stops/103415", "https://data.delijn.be/stops/106025"], ["https://data.delijn.be/stops/301887", "https://data.delijn.be/stops/305912"], ["https://data.delijn.be/stops/108273", "https://data.delijn.be/stops/109359"], ["https://data.delijn.be/stops/502038", "https://data.delijn.be/stops/507281"], ["https://data.delijn.be/stops/300285", "https://data.delijn.be/stops/300289"], ["https://data.delijn.be/stops/105417", "https://data.delijn.be/stops/105848"], ["https://data.delijn.be/stops/404330", "https://data.delijn.be/stops/404380"], ["https://data.delijn.be/stops/504576", "https://data.delijn.be/stops/505205"], ["https://data.delijn.be/stops/507067", "https://data.delijn.be/stops/507445"], ["https://data.delijn.be/stops/302032", "https://data.delijn.be/stops/306379"], ["https://data.delijn.be/stops/302757", "https://data.delijn.be/stops/302758"], ["https://data.delijn.be/stops/301540", "https://data.delijn.be/stops/301551"], ["https://data.delijn.be/stops/502283", "https://data.delijn.be/stops/502334"], ["https://data.delijn.be/stops/200579", "https://data.delijn.be/stops/201732"], ["https://data.delijn.be/stops/200352", "https://data.delijn.be/stops/201388"], ["https://data.delijn.be/stops/504332", "https://data.delijn.be/stops/509076"], ["https://data.delijn.be/stops/104101", "https://data.delijn.be/stops/108290"], ["https://data.delijn.be/stops/200934", "https://data.delijn.be/stops/201695"], ["https://data.delijn.be/stops/106228", "https://data.delijn.be/stops/106328"], ["https://data.delijn.be/stops/300267", "https://data.delijn.be/stops/303868"], ["https://data.delijn.be/stops/206108", "https://data.delijn.be/stops/206931"], ["https://data.delijn.be/stops/206032", "https://data.delijn.be/stops/207032"], ["https://data.delijn.be/stops/302369", "https://data.delijn.be/stops/306195"], ["https://data.delijn.be/stops/306141", "https://data.delijn.be/stops/306643"], ["https://data.delijn.be/stops/400859", "https://data.delijn.be/stops/400875"], ["https://data.delijn.be/stops/504865", "https://data.delijn.be/stops/504996"], ["https://data.delijn.be/stops/106530", "https://data.delijn.be/stops/106531"], ["https://data.delijn.be/stops/102172", "https://data.delijn.be/stops/104052"], ["https://data.delijn.be/stops/204590", "https://data.delijn.be/stops/205594"], ["https://data.delijn.be/stops/201091", "https://data.delijn.be/stops/201092"], ["https://data.delijn.be/stops/302110", "https://data.delijn.be/stops/302112"], ["https://data.delijn.be/stops/202776", "https://data.delijn.be/stops/203460"], ["https://data.delijn.be/stops/103639", "https://data.delijn.be/stops/106634"], ["https://data.delijn.be/stops/504157", "https://data.delijn.be/stops/504190"], ["https://data.delijn.be/stops/509477", "https://data.delijn.be/stops/509479"], ["https://data.delijn.be/stops/505643", "https://data.delijn.be/stops/508897"], ["https://data.delijn.be/stops/201121", "https://data.delijn.be/stops/203482"], ["https://data.delijn.be/stops/304985", "https://data.delijn.be/stops/305018"], ["https://data.delijn.be/stops/508699", "https://data.delijn.be/stops/509955"], ["https://data.delijn.be/stops/305105", "https://data.delijn.be/stops/305106"], ["https://data.delijn.be/stops/503029", "https://data.delijn.be/stops/503030"], ["https://data.delijn.be/stops/200179", "https://data.delijn.be/stops/204951"], ["https://data.delijn.be/stops/307314", "https://data.delijn.be/stops/307317"], ["https://data.delijn.be/stops/208110", "https://data.delijn.be/stops/209314"], ["https://data.delijn.be/stops/204758", "https://data.delijn.be/stops/205758"], ["https://data.delijn.be/stops/304480", "https://data.delijn.be/stops/307674"], ["https://data.delijn.be/stops/107591", "https://data.delijn.be/stops/107697"], ["https://data.delijn.be/stops/405736", "https://data.delijn.be/stops/410140"], ["https://data.delijn.be/stops/407922", "https://data.delijn.be/stops/303262"], ["https://data.delijn.be/stops/502082", "https://data.delijn.be/stops/507681"], ["https://data.delijn.be/stops/208625", "https://data.delijn.be/stops/209655"], ["https://data.delijn.be/stops/102583", "https://data.delijn.be/stops/104972"], ["https://data.delijn.be/stops/500955", "https://data.delijn.be/stops/503288"], ["https://data.delijn.be/stops/304019", "https://data.delijn.be/stops/307050"], ["https://data.delijn.be/stops/407799", "https://data.delijn.be/stops/407857"], ["https://data.delijn.be/stops/407259", "https://data.delijn.be/stops/407293"], ["https://data.delijn.be/stops/208059", "https://data.delijn.be/stops/209060"], ["https://data.delijn.be/stops/303481", "https://data.delijn.be/stops/303482"], ["https://data.delijn.be/stops/502732", "https://data.delijn.be/stops/507135"], ["https://data.delijn.be/stops/301747", "https://data.delijn.be/stops/308425"], ["https://data.delijn.be/stops/501298", "https://data.delijn.be/stops/506345"], ["https://data.delijn.be/stops/205081", "https://data.delijn.be/stops/205082"], ["https://data.delijn.be/stops/202641", "https://data.delijn.be/stops/203577"], ["https://data.delijn.be/stops/505682", "https://data.delijn.be/stops/507315"], ["https://data.delijn.be/stops/503831", "https://data.delijn.be/stops/508067"], ["https://data.delijn.be/stops/302374", "https://data.delijn.be/stops/302381"], ["https://data.delijn.be/stops/200949", "https://data.delijn.be/stops/203539"], ["https://data.delijn.be/stops/503108", "https://data.delijn.be/stops/503145"], ["https://data.delijn.be/stops/300491", "https://data.delijn.be/stops/300493"], ["https://data.delijn.be/stops/501303", "https://data.delijn.be/stops/501391"], ["https://data.delijn.be/stops/209457", "https://data.delijn.be/stops/209676"], ["https://data.delijn.be/stops/506049", "https://data.delijn.be/stops/507135"], ["https://data.delijn.be/stops/401812", "https://data.delijn.be/stops/406239"], ["https://data.delijn.be/stops/208098", "https://data.delijn.be/stops/208099"], ["https://data.delijn.be/stops/205157", "https://data.delijn.be/stops/211067"], ["https://data.delijn.be/stops/302291", "https://data.delijn.be/stops/306791"], ["https://data.delijn.be/stops/501769", "https://data.delijn.be/stops/502704"], ["https://data.delijn.be/stops/400068", "https://data.delijn.be/stops/400069"], ["https://data.delijn.be/stops/303677", "https://data.delijn.be/stops/303977"], ["https://data.delijn.be/stops/505562", "https://data.delijn.be/stops/505578"], ["https://data.delijn.be/stops/403658", "https://data.delijn.be/stops/403659"], ["https://data.delijn.be/stops/408004", "https://data.delijn.be/stops/408090"], ["https://data.delijn.be/stops/504331", "https://data.delijn.be/stops/504341"], ["https://data.delijn.be/stops/107341", "https://data.delijn.be/stops/107342"], ["https://data.delijn.be/stops/503081", "https://data.delijn.be/stops/507820"], ["https://data.delijn.be/stops/501059", "https://data.delijn.be/stops/506061"], ["https://data.delijn.be/stops/203791", "https://data.delijn.be/stops/203792"], ["https://data.delijn.be/stops/304014", "https://data.delijn.be/stops/304015"], ["https://data.delijn.be/stops/303818", "https://data.delijn.be/stops/303822"], ["https://data.delijn.be/stops/404590", "https://data.delijn.be/stops/404993"], ["https://data.delijn.be/stops/105248", "https://data.delijn.be/stops/105249"], ["https://data.delijn.be/stops/306679", "https://data.delijn.be/stops/307880"], ["https://data.delijn.be/stops/201682", "https://data.delijn.be/stops/203502"], ["https://data.delijn.be/stops/107849", "https://data.delijn.be/stops/107851"], ["https://data.delijn.be/stops/103729", "https://data.delijn.be/stops/108613"], ["https://data.delijn.be/stops/502662", "https://data.delijn.be/stops/502736"], ["https://data.delijn.be/stops/307303", "https://data.delijn.be/stops/307317"], ["https://data.delijn.be/stops/401127", "https://data.delijn.be/stops/401128"], ["https://data.delijn.be/stops/108088", "https://data.delijn.be/stops/108387"], ["https://data.delijn.be/stops/107492", "https://data.delijn.be/stops/107511"], ["https://data.delijn.be/stops/305584", "https://data.delijn.be/stops/305587"], ["https://data.delijn.be/stops/301309", "https://data.delijn.be/stops/304858"], ["https://data.delijn.be/stops/102997", "https://data.delijn.be/stops/109449"], ["https://data.delijn.be/stops/500945", "https://data.delijn.be/stops/505785"], ["https://data.delijn.be/stops/501688", "https://data.delijn.be/stops/505046"], ["https://data.delijn.be/stops/506211", "https://data.delijn.be/stops/506222"], ["https://data.delijn.be/stops/102887", "https://data.delijn.be/stops/102888"], ["https://data.delijn.be/stops/502685", "https://data.delijn.be/stops/505668"], ["https://data.delijn.be/stops/200918", "https://data.delijn.be/stops/200951"], ["https://data.delijn.be/stops/207795", "https://data.delijn.be/stops/207796"], ["https://data.delijn.be/stops/407163", "https://data.delijn.be/stops/409877"], ["https://data.delijn.be/stops/204337", "https://data.delijn.be/stops/205335"], ["https://data.delijn.be/stops/304220", "https://data.delijn.be/stops/304221"], ["https://data.delijn.be/stops/206416", "https://data.delijn.be/stops/206977"], ["https://data.delijn.be/stops/305682", "https://data.delijn.be/stops/305731"], ["https://data.delijn.be/stops/503109", "https://data.delijn.be/stops/508437"], ["https://data.delijn.be/stops/402378", "https://data.delijn.be/stops/404704"], ["https://data.delijn.be/stops/301704", "https://data.delijn.be/stops/305235"], ["https://data.delijn.be/stops/208116", "https://data.delijn.be/stops/209116"], ["https://data.delijn.be/stops/208429", "https://data.delijn.be/stops/208801"], ["https://data.delijn.be/stops/407641", "https://data.delijn.be/stops/407642"], ["https://data.delijn.be/stops/203099", "https://data.delijn.be/stops/203258"], ["https://data.delijn.be/stops/404425", "https://data.delijn.be/stops/404570"], ["https://data.delijn.be/stops/307061", "https://data.delijn.be/stops/307281"], ["https://data.delijn.be/stops/402382", "https://data.delijn.be/stops/402383"], ["https://data.delijn.be/stops/302427", "https://data.delijn.be/stops/302450"], ["https://data.delijn.be/stops/305308", "https://data.delijn.be/stops/306382"], ["https://data.delijn.be/stops/206806", "https://data.delijn.be/stops/207312"], ["https://data.delijn.be/stops/407574", "https://data.delijn.be/stops/408946"], ["https://data.delijn.be/stops/307086", "https://data.delijn.be/stops/308048"], ["https://data.delijn.be/stops/205580", "https://data.delijn.be/stops/205592"], ["https://data.delijn.be/stops/303073", "https://data.delijn.be/stops/303104"], ["https://data.delijn.be/stops/403467", "https://data.delijn.be/stops/410338"], ["https://data.delijn.be/stops/408283", "https://data.delijn.be/stops/408285"], ["https://data.delijn.be/stops/107918", "https://data.delijn.be/stops/107919"], ["https://data.delijn.be/stops/503610", "https://data.delijn.be/stops/504751"], ["https://data.delijn.be/stops/302587", "https://data.delijn.be/stops/308926"], ["https://data.delijn.be/stops/204798", "https://data.delijn.be/stops/205765"], ["https://data.delijn.be/stops/203531", "https://data.delijn.be/stops/203965"], ["https://data.delijn.be/stops/102207", "https://data.delijn.be/stops/102211"], ["https://data.delijn.be/stops/109400", "https://data.delijn.be/stops/109427"], ["https://data.delijn.be/stops/206475", "https://data.delijn.be/stops/207476"], ["https://data.delijn.be/stops/304218", "https://data.delijn.be/stops/304220"], ["https://data.delijn.be/stops/404843", "https://data.delijn.be/stops/407758"], ["https://data.delijn.be/stops/404292", "https://data.delijn.be/stops/404293"], ["https://data.delijn.be/stops/300429", "https://data.delijn.be/stops/307409"], ["https://data.delijn.be/stops/304128", "https://data.delijn.be/stops/304146"], ["https://data.delijn.be/stops/406489", "https://data.delijn.be/stops/406495"], ["https://data.delijn.be/stops/200765", "https://data.delijn.be/stops/209300"], ["https://data.delijn.be/stops/200233", "https://data.delijn.be/stops/203354"], ["https://data.delijn.be/stops/101298", "https://data.delijn.be/stops/105506"], ["https://data.delijn.be/stops/300824", "https://data.delijn.be/stops/301055"], ["https://data.delijn.be/stops/206655", "https://data.delijn.be/stops/206666"], ["https://data.delijn.be/stops/300449", "https://data.delijn.be/stops/300452"], ["https://data.delijn.be/stops/108564", "https://data.delijn.be/stops/108566"], ["https://data.delijn.be/stops/400255", "https://data.delijn.be/stops/400258"], ["https://data.delijn.be/stops/503007", "https://data.delijn.be/stops/507813"], ["https://data.delijn.be/stops/108223", "https://data.delijn.be/stops/108224"], ["https://data.delijn.be/stops/106335", "https://data.delijn.be/stops/106699"], ["https://data.delijn.be/stops/308743", "https://data.delijn.be/stops/308744"], ["https://data.delijn.be/stops/404726", "https://data.delijn.be/stops/404748"], ["https://data.delijn.be/stops/206694", "https://data.delijn.be/stops/207694"], ["https://data.delijn.be/stops/409114", "https://data.delijn.be/stops/409115"], ["https://data.delijn.be/stops/305136", "https://data.delijn.be/stops/305137"], ["https://data.delijn.be/stops/500957", "https://data.delijn.be/stops/505952"], ["https://data.delijn.be/stops/210127", "https://data.delijn.be/stops/211126"], ["https://data.delijn.be/stops/504581", "https://data.delijn.be/stops/509581"], ["https://data.delijn.be/stops/101012", "https://data.delijn.be/stops/101013"], ["https://data.delijn.be/stops/400236", "https://data.delijn.be/stops/406283"], ["https://data.delijn.be/stops/202492", "https://data.delijn.be/stops/211043"], ["https://data.delijn.be/stops/101508", "https://data.delijn.be/stops/300103"], ["https://data.delijn.be/stops/305452", "https://data.delijn.be/stops/307778"], ["https://data.delijn.be/stops/304896", "https://data.delijn.be/stops/306408"], ["https://data.delijn.be/stops/204476", "https://data.delijn.be/stops/205120"], ["https://data.delijn.be/stops/307199", "https://data.delijn.be/stops/307599"], ["https://data.delijn.be/stops/301218", "https://data.delijn.be/stops/301220"], ["https://data.delijn.be/stops/202492", "https://data.delijn.be/stops/203492"], ["https://data.delijn.be/stops/402106", "https://data.delijn.be/stops/402217"], ["https://data.delijn.be/stops/109626", "https://data.delijn.be/stops/109628"], ["https://data.delijn.be/stops/206204", "https://data.delijn.be/stops/207203"], ["https://data.delijn.be/stops/107613", "https://data.delijn.be/stops/108959"], ["https://data.delijn.be/stops/301012", "https://data.delijn.be/stops/301015"], ["https://data.delijn.be/stops/106897", "https://data.delijn.be/stops/107217"], ["https://data.delijn.be/stops/108607", "https://data.delijn.be/stops/109330"], ["https://data.delijn.be/stops/204637", "https://data.delijn.be/stops/205694"], ["https://data.delijn.be/stops/307550", "https://data.delijn.be/stops/307552"], ["https://data.delijn.be/stops/409436", "https://data.delijn.be/stops/409437"], ["https://data.delijn.be/stops/502534", "https://data.delijn.be/stops/507533"], ["https://data.delijn.be/stops/404979", "https://data.delijn.be/stops/410210"], ["https://data.delijn.be/stops/505067", "https://data.delijn.be/stops/505654"], ["https://data.delijn.be/stops/307149", "https://data.delijn.be/stops/307160"], ["https://data.delijn.be/stops/300659", "https://data.delijn.be/stops/305816"], ["https://data.delijn.be/stops/204521", "https://data.delijn.be/stops/205483"], ["https://data.delijn.be/stops/106096", "https://data.delijn.be/stops/106112"], ["https://data.delijn.be/stops/102889", "https://data.delijn.be/stops/102892"], ["https://data.delijn.be/stops/204488", "https://data.delijn.be/stops/205265"], ["https://data.delijn.be/stops/303314", "https://data.delijn.be/stops/303320"], ["https://data.delijn.be/stops/305628", "https://data.delijn.be/stops/305768"], ["https://data.delijn.be/stops/102710", "https://data.delijn.be/stops/102763"], ["https://data.delijn.be/stops/306682", "https://data.delijn.be/stops/307880"], ["https://data.delijn.be/stops/501126", "https://data.delijn.be/stops/505038"], ["https://data.delijn.be/stops/304664", "https://data.delijn.be/stops/304665"], ["https://data.delijn.be/stops/400574", "https://data.delijn.be/stops/400575"], ["https://data.delijn.be/stops/307051", "https://data.delijn.be/stops/307053"], ["https://data.delijn.be/stops/409378", "https://data.delijn.be/stops/409388"], ["https://data.delijn.be/stops/405479", "https://data.delijn.be/stops/409266"], ["https://data.delijn.be/stops/302929", "https://data.delijn.be/stops/304014"], ["https://data.delijn.be/stops/502013", "https://data.delijn.be/stops/507154"], ["https://data.delijn.be/stops/208128", "https://data.delijn.be/stops/209128"], ["https://data.delijn.be/stops/408549", "https://data.delijn.be/stops/408565"], ["https://data.delijn.be/stops/102238", "https://data.delijn.be/stops/105869"], ["https://data.delijn.be/stops/405232", "https://data.delijn.be/stops/405500"], ["https://data.delijn.be/stops/305581", "https://data.delijn.be/stops/306555"], ["https://data.delijn.be/stops/406137", "https://data.delijn.be/stops/406343"], ["https://data.delijn.be/stops/302198", "https://data.delijn.be/stops/305457"], ["https://data.delijn.be/stops/401730", "https://data.delijn.be/stops/401752"], ["https://data.delijn.be/stops/302000", "https://data.delijn.be/stops/306067"], ["https://data.delijn.be/stops/408888", "https://data.delijn.be/stops/408893"], ["https://data.delijn.be/stops/405792", "https://data.delijn.be/stops/409665"], ["https://data.delijn.be/stops/200391", "https://data.delijn.be/stops/209706"], ["https://data.delijn.be/stops/505558", "https://data.delijn.be/stops/507178"], ["https://data.delijn.be/stops/301549", "https://data.delijn.be/stops/308090"], ["https://data.delijn.be/stops/504998", "https://data.delijn.be/stops/508883"], ["https://data.delijn.be/stops/402298", "https://data.delijn.be/stops/402363"], ["https://data.delijn.be/stops/502561", "https://data.delijn.be/stops/507224"], ["https://data.delijn.be/stops/206685", "https://data.delijn.be/stops/206874"], ["https://data.delijn.be/stops/403957", "https://data.delijn.be/stops/410026"], ["https://data.delijn.be/stops/208450", "https://data.delijn.be/stops/209878"], ["https://data.delijn.be/stops/403024", "https://data.delijn.be/stops/403410"], ["https://data.delijn.be/stops/204425", "https://data.delijn.be/stops/204437"], ["https://data.delijn.be/stops/104626", "https://data.delijn.be/stops/104627"], ["https://data.delijn.be/stops/208143", "https://data.delijn.be/stops/218030"], ["https://data.delijn.be/stops/101688", "https://data.delijn.be/stops/109391"], ["https://data.delijn.be/stops/107792", "https://data.delijn.be/stops/107794"], ["https://data.delijn.be/stops/500944", "https://data.delijn.be/stops/505711"], ["https://data.delijn.be/stops/201691", "https://data.delijn.be/stops/202139"], ["https://data.delijn.be/stops/106460", "https://data.delijn.be/stops/106463"], ["https://data.delijn.be/stops/300041", "https://data.delijn.be/stops/306791"], ["https://data.delijn.be/stops/303842", "https://data.delijn.be/stops/303867"], ["https://data.delijn.be/stops/202555", "https://data.delijn.be/stops/210024"], ["https://data.delijn.be/stops/302728", "https://data.delijn.be/stops/308595"], ["https://data.delijn.be/stops/302326", "https://data.delijn.be/stops/302481"], ["https://data.delijn.be/stops/503108", "https://data.delijn.be/stops/509886"], ["https://data.delijn.be/stops/301882", "https://data.delijn.be/stops/302065"], ["https://data.delijn.be/stops/201857", "https://data.delijn.be/stops/203666"], ["https://data.delijn.be/stops/206182", "https://data.delijn.be/stops/207182"], ["https://data.delijn.be/stops/106691", "https://data.delijn.be/stops/106694"], ["https://data.delijn.be/stops/208337", "https://data.delijn.be/stops/209338"], ["https://data.delijn.be/stops/104994", "https://data.delijn.be/stops/400391"], ["https://data.delijn.be/stops/206152", "https://data.delijn.be/stops/207153"], ["https://data.delijn.be/stops/505833", "https://data.delijn.be/stops/507561"], ["https://data.delijn.be/stops/406562", "https://data.delijn.be/stops/406567"], ["https://data.delijn.be/stops/303322", "https://data.delijn.be/stops/303323"], ["https://data.delijn.be/stops/103227", "https://data.delijn.be/stops/108912"], ["https://data.delijn.be/stops/305192", "https://data.delijn.be/stops/305202"], ["https://data.delijn.be/stops/405041", "https://data.delijn.be/stops/405863"], ["https://data.delijn.be/stops/301697", "https://data.delijn.be/stops/301746"], ["https://data.delijn.be/stops/206780", "https://data.delijn.be/stops/206941"], ["https://data.delijn.be/stops/304157", "https://data.delijn.be/stops/307579"], ["https://data.delijn.be/stops/104607", "https://data.delijn.be/stops/108076"], ["https://data.delijn.be/stops/300978", "https://data.delijn.be/stops/300979"], ["https://data.delijn.be/stops/300290", "https://data.delijn.be/stops/301281"], ["https://data.delijn.be/stops/109347", "https://data.delijn.be/stops/109348"], ["https://data.delijn.be/stops/304894", "https://data.delijn.be/stops/304910"], ["https://data.delijn.be/stops/207546", "https://data.delijn.be/stops/209744"], ["https://data.delijn.be/stops/303085", "https://data.delijn.be/stops/304710"], ["https://data.delijn.be/stops/508450", "https://data.delijn.be/stops/508975"], ["https://data.delijn.be/stops/204437", "https://data.delijn.be/stops/204743"], ["https://data.delijn.be/stops/302384", "https://data.delijn.be/stops/307841"], ["https://data.delijn.be/stops/200577", "https://data.delijn.be/stops/202757"], ["https://data.delijn.be/stops/504046", "https://data.delijn.be/stops/504837"], ["https://data.delijn.be/stops/303644", "https://data.delijn.be/stops/305496"], ["https://data.delijn.be/stops/205187", "https://data.delijn.be/stops/205188"], ["https://data.delijn.be/stops/102605", "https://data.delijn.be/stops/102680"], ["https://data.delijn.be/stops/301848", "https://data.delijn.be/stops/305871"], ["https://data.delijn.be/stops/302120", "https://data.delijn.be/stops/304034"], ["https://data.delijn.be/stops/301031", "https://data.delijn.be/stops/301032"], ["https://data.delijn.be/stops/302874", "https://data.delijn.be/stops/302927"], ["https://data.delijn.be/stops/301729", "https://data.delijn.be/stops/301730"], ["https://data.delijn.be/stops/108626", "https://data.delijn.be/stops/108627"], ["https://data.delijn.be/stops/102471", "https://data.delijn.be/stops/102472"], ["https://data.delijn.be/stops/400794", "https://data.delijn.be/stops/406660"], ["https://data.delijn.be/stops/400126", "https://data.delijn.be/stops/400127"], ["https://data.delijn.be/stops/206026", "https://data.delijn.be/stops/206267"], ["https://data.delijn.be/stops/201461", "https://data.delijn.be/stops/201465"], ["https://data.delijn.be/stops/200841", "https://data.delijn.be/stops/202792"], ["https://data.delijn.be/stops/503101", "https://data.delijn.be/stops/508097"], ["https://data.delijn.be/stops/302588", "https://data.delijn.be/stops/308298"], ["https://data.delijn.be/stops/301600", "https://data.delijn.be/stops/301608"], ["https://data.delijn.be/stops/210130", "https://data.delijn.be/stops/211130"], ["https://data.delijn.be/stops/201470", "https://data.delijn.be/stops/201893"], ["https://data.delijn.be/stops/501371", "https://data.delijn.be/stops/506371"], ["https://data.delijn.be/stops/503470", "https://data.delijn.be/stops/503471"], ["https://data.delijn.be/stops/407581", "https://data.delijn.be/stops/408880"], ["https://data.delijn.be/stops/200706", "https://data.delijn.be/stops/200733"], ["https://data.delijn.be/stops/303933", "https://data.delijn.be/stops/304573"], ["https://data.delijn.be/stops/302379", "https://data.delijn.be/stops/302391"], ["https://data.delijn.be/stops/306598", "https://data.delijn.be/stops/306599"], ["https://data.delijn.be/stops/105747", "https://data.delijn.be/stops/105748"], ["https://data.delijn.be/stops/504623", "https://data.delijn.be/stops/509628"], ["https://data.delijn.be/stops/509391", "https://data.delijn.be/stops/509715"], ["https://data.delijn.be/stops/201378", "https://data.delijn.be/stops/201537"], ["https://data.delijn.be/stops/102289", "https://data.delijn.be/stops/109630"], ["https://data.delijn.be/stops/401254", "https://data.delijn.be/stops/401338"], ["https://data.delijn.be/stops/207283", "https://data.delijn.be/stops/207397"], ["https://data.delijn.be/stops/400112", "https://data.delijn.be/stops/409072"], ["https://data.delijn.be/stops/404728", "https://data.delijn.be/stops/404743"], ["https://data.delijn.be/stops/200251", "https://data.delijn.be/stops/200960"], ["https://data.delijn.be/stops/404302", "https://data.delijn.be/stops/404303"], ["https://data.delijn.be/stops/502073", "https://data.delijn.be/stops/502560"], ["https://data.delijn.be/stops/503725", "https://data.delijn.be/stops/503774"], ["https://data.delijn.be/stops/406629", "https://data.delijn.be/stops/406631"], ["https://data.delijn.be/stops/108303", "https://data.delijn.be/stops/108304"], ["https://data.delijn.be/stops/202407", "https://data.delijn.be/stops/203407"], ["https://data.delijn.be/stops/101025", "https://data.delijn.be/stops/101030"], ["https://data.delijn.be/stops/105252", "https://data.delijn.be/stops/105253"], ["https://data.delijn.be/stops/303068", "https://data.delijn.be/stops/308661"], ["https://data.delijn.be/stops/109677", "https://data.delijn.be/stops/408450"], ["https://data.delijn.be/stops/501094", "https://data.delijn.be/stops/506094"], ["https://data.delijn.be/stops/104742", "https://data.delijn.be/stops/108163"], ["https://data.delijn.be/stops/300056", "https://data.delijn.be/stops/306790"], ["https://data.delijn.be/stops/201138", "https://data.delijn.be/stops/203450"], ["https://data.delijn.be/stops/407932", "https://data.delijn.be/stops/407934"], ["https://data.delijn.be/stops/503265", "https://data.delijn.be/stops/508075"], ["https://data.delijn.be/stops/403315", "https://data.delijn.be/stops/409571"], ["https://data.delijn.be/stops/405290", "https://data.delijn.be/stops/406310"], ["https://data.delijn.be/stops/505163", "https://data.delijn.be/stops/509418"], ["https://data.delijn.be/stops/108666", "https://data.delijn.be/stops/306610"], ["https://data.delijn.be/stops/206978", "https://data.delijn.be/stops/207978"], ["https://data.delijn.be/stops/404534", "https://data.delijn.be/stops/404546"], ["https://data.delijn.be/stops/306145", "https://data.delijn.be/stops/307942"], ["https://data.delijn.be/stops/406240", "https://data.delijn.be/stops/406246"], ["https://data.delijn.be/stops/104917", "https://data.delijn.be/stops/104921"], ["https://data.delijn.be/stops/301010", "https://data.delijn.be/stops/301018"], ["https://data.delijn.be/stops/401290", "https://data.delijn.be/stops/401308"], ["https://data.delijn.be/stops/201404", "https://data.delijn.be/stops/201405"], ["https://data.delijn.be/stops/400929", "https://data.delijn.be/stops/400944"], ["https://data.delijn.be/stops/401462", "https://data.delijn.be/stops/403895"], ["https://data.delijn.be/stops/405218", "https://data.delijn.be/stops/405219"], ["https://data.delijn.be/stops/200874", "https://data.delijn.be/stops/201115"], ["https://data.delijn.be/stops/301348", "https://data.delijn.be/stops/306130"], ["https://data.delijn.be/stops/105735", "https://data.delijn.be/stops/105740"], ["https://data.delijn.be/stops/307426", "https://data.delijn.be/stops/307733"], ["https://data.delijn.be/stops/201749", "https://data.delijn.be/stops/203620"], ["https://data.delijn.be/stops/408042", "https://data.delijn.be/stops/408043"], ["https://data.delijn.be/stops/400253", "https://data.delijn.be/stops/400357"], ["https://data.delijn.be/stops/302158", "https://data.delijn.be/stops/302160"], ["https://data.delijn.be/stops/404091", "https://data.delijn.be/stops/407230"], ["https://data.delijn.be/stops/401200", "https://data.delijn.be/stops/401201"], ["https://data.delijn.be/stops/507606", "https://data.delijn.be/stops/507607"], ["https://data.delijn.be/stops/504323", "https://data.delijn.be/stops/509295"], ["https://data.delijn.be/stops/302494", "https://data.delijn.be/stops/302500"], ["https://data.delijn.be/stops/206517", "https://data.delijn.be/stops/206598"], ["https://data.delijn.be/stops/200768", "https://data.delijn.be/stops/209249"], ["https://data.delijn.be/stops/101382", "https://data.delijn.be/stops/106994"], ["https://data.delijn.be/stops/502357", "https://data.delijn.be/stops/507357"], ["https://data.delijn.be/stops/202352", "https://data.delijn.be/stops/203352"], ["https://data.delijn.be/stops/103944", "https://data.delijn.be/stops/108893"], ["https://data.delijn.be/stops/504753", "https://data.delijn.be/stops/504754"], ["https://data.delijn.be/stops/401562", "https://data.delijn.be/stops/401563"], ["https://data.delijn.be/stops/503237", "https://data.delijn.be/stops/508062"], ["https://data.delijn.be/stops/200705", "https://data.delijn.be/stops/200736"], ["https://data.delijn.be/stops/506238", "https://data.delijn.be/stops/506240"], ["https://data.delijn.be/stops/101689", "https://data.delijn.be/stops/101691"], ["https://data.delijn.be/stops/301193", "https://data.delijn.be/stops/301253"], ["https://data.delijn.be/stops/408617", "https://data.delijn.be/stops/408707"], ["https://data.delijn.be/stops/300751", "https://data.delijn.be/stops/302406"], ["https://data.delijn.be/stops/408519", "https://data.delijn.be/stops/408773"], ["https://data.delijn.be/stops/103287", "https://data.delijn.be/stops/109991"], ["https://data.delijn.be/stops/505140", "https://data.delijn.be/stops/505579"], ["https://data.delijn.be/stops/503018", "https://data.delijn.be/stops/508018"], ["https://data.delijn.be/stops/203529", "https://data.delijn.be/stops/206826"], ["https://data.delijn.be/stops/504051", "https://data.delijn.be/stops/509051"], ["https://data.delijn.be/stops/202598", "https://data.delijn.be/stops/203127"], ["https://data.delijn.be/stops/202730", "https://data.delijn.be/stops/203042"], ["https://data.delijn.be/stops/103007", "https://data.delijn.be/stops/106424"], ["https://data.delijn.be/stops/102153", "https://data.delijn.be/stops/109725"], ["https://data.delijn.be/stops/504222", "https://data.delijn.be/stops/509633"], ["https://data.delijn.be/stops/206983", "https://data.delijn.be/stops/304269"], ["https://data.delijn.be/stops/409375", "https://data.delijn.be/stops/409399"], ["https://data.delijn.be/stops/403527", "https://data.delijn.be/stops/403530"], ["https://data.delijn.be/stops/304342", "https://data.delijn.be/stops/307007"], ["https://data.delijn.be/stops/301375", "https://data.delijn.be/stops/306138"], ["https://data.delijn.be/stops/501243", "https://data.delijn.be/stops/506243"], ["https://data.delijn.be/stops/403949", "https://data.delijn.be/stops/404022"], ["https://data.delijn.be/stops/307836", "https://data.delijn.be/stops/307837"], ["https://data.delijn.be/stops/302617", "https://data.delijn.be/stops/302632"], ["https://data.delijn.be/stops/302156", "https://data.delijn.be/stops/308098"], ["https://data.delijn.be/stops/104592", "https://data.delijn.be/stops/108351"], ["https://data.delijn.be/stops/304421", "https://data.delijn.be/stops/304427"], ["https://data.delijn.be/stops/401647", "https://data.delijn.be/stops/408732"], ["https://data.delijn.be/stops/101069", "https://data.delijn.be/stops/101073"], ["https://data.delijn.be/stops/208430", "https://data.delijn.be/stops/208803"], ["https://data.delijn.be/stops/503530", "https://data.delijn.be/stops/504686"], ["https://data.delijn.be/stops/206356", "https://data.delijn.be/stops/207688"], ["https://data.delijn.be/stops/308866", "https://data.delijn.be/stops/308868"], ["https://data.delijn.be/stops/107604", "https://data.delijn.be/stops/107606"], ["https://data.delijn.be/stops/403160", "https://data.delijn.be/stops/403161"], ["https://data.delijn.be/stops/505110", "https://data.delijn.be/stops/509149"], ["https://data.delijn.be/stops/109908", "https://data.delijn.be/stops/109909"], ["https://data.delijn.be/stops/502423", "https://data.delijn.be/stops/507750"], ["https://data.delijn.be/stops/204166", "https://data.delijn.be/stops/204774"], ["https://data.delijn.be/stops/103475", "https://data.delijn.be/stops/105435"], ["https://data.delijn.be/stops/306950", "https://data.delijn.be/stops/306956"], ["https://data.delijn.be/stops/104452", "https://data.delijn.be/stops/107521"], ["https://data.delijn.be/stops/107300", "https://data.delijn.be/stops/108240"], ["https://data.delijn.be/stops/302514", "https://data.delijn.be/stops/302517"], ["https://data.delijn.be/stops/409588", "https://data.delijn.be/stops/409590"], ["https://data.delijn.be/stops/203472", "https://data.delijn.be/stops/210047"], ["https://data.delijn.be/stops/208300", "https://data.delijn.be/stops/209300"], ["https://data.delijn.be/stops/209433", "https://data.delijn.be/stops/219021"], ["https://data.delijn.be/stops/205974", "https://data.delijn.be/stops/208242"], ["https://data.delijn.be/stops/106398", "https://data.delijn.be/stops/107406"], ["https://data.delijn.be/stops/403438", "https://data.delijn.be/stops/403662"], ["https://data.delijn.be/stops/406596", "https://data.delijn.be/stops/407410"], ["https://data.delijn.be/stops/401650", "https://data.delijn.be/stops/405402"], ["https://data.delijn.be/stops/502085", "https://data.delijn.be/stops/502104"], ["https://data.delijn.be/stops/102022", "https://data.delijn.be/stops/109949"], ["https://data.delijn.be/stops/201717", "https://data.delijn.be/stops/202604"], ["https://data.delijn.be/stops/200277", "https://data.delijn.be/stops/201174"], ["https://data.delijn.be/stops/208588", "https://data.delijn.be/stops/307528"], ["https://data.delijn.be/stops/107239", "https://data.delijn.be/stops/107242"], ["https://data.delijn.be/stops/502328", "https://data.delijn.be/stops/507331"], ["https://data.delijn.be/stops/104484", "https://data.delijn.be/stops/104487"], ["https://data.delijn.be/stops/301935", "https://data.delijn.be/stops/302907"], ["https://data.delijn.be/stops/106906", "https://data.delijn.be/stops/107262"], ["https://data.delijn.be/stops/408801", "https://data.delijn.be/stops/408802"], ["https://data.delijn.be/stops/204336", "https://data.delijn.be/stops/204626"], ["https://data.delijn.be/stops/103162", "https://data.delijn.be/stops/109951"], ["https://data.delijn.be/stops/105654", "https://data.delijn.be/stops/105658"], ["https://data.delijn.be/stops/504104", "https://data.delijn.be/stops/509544"], ["https://data.delijn.be/stops/102200", "https://data.delijn.be/stops/108165"], ["https://data.delijn.be/stops/102260", "https://data.delijn.be/stops/109382"], ["https://data.delijn.be/stops/407613", "https://data.delijn.be/stops/407745"], ["https://data.delijn.be/stops/508415", "https://data.delijn.be/stops/508562"], ["https://data.delijn.be/stops/410247", "https://data.delijn.be/stops/410248"], ["https://data.delijn.be/stops/504283", "https://data.delijn.be/stops/509281"], ["https://data.delijn.be/stops/401447", "https://data.delijn.be/stops/401736"], ["https://data.delijn.be/stops/405731", "https://data.delijn.be/stops/405735"], ["https://data.delijn.be/stops/102911", "https://data.delijn.be/stops/107660"], ["https://data.delijn.be/stops/108701", "https://data.delijn.be/stops/108710"], ["https://data.delijn.be/stops/206230", "https://data.delijn.be/stops/207935"], ["https://data.delijn.be/stops/200550", "https://data.delijn.be/stops/201230"], ["https://data.delijn.be/stops/308452", "https://data.delijn.be/stops/308464"], ["https://data.delijn.be/stops/505376", "https://data.delijn.be/stops/508882"], ["https://data.delijn.be/stops/506307", "https://data.delijn.be/stops/510003"], ["https://data.delijn.be/stops/508162", "https://data.delijn.be/stops/508176"], ["https://data.delijn.be/stops/304736", "https://data.delijn.be/stops/304851"], ["https://data.delijn.be/stops/408456", "https://data.delijn.be/stops/409419"], ["https://data.delijn.be/stops/503645", "https://data.delijn.be/stops/508724"], ["https://data.delijn.be/stops/302625", "https://data.delijn.be/stops/308115"], ["https://data.delijn.be/stops/401812", "https://data.delijn.be/stops/406354"], ["https://data.delijn.be/stops/202711", "https://data.delijn.be/stops/202712"], ["https://data.delijn.be/stops/209452", "https://data.delijn.be/stops/209699"], ["https://data.delijn.be/stops/301285", "https://data.delijn.be/stops/301900"], ["https://data.delijn.be/stops/302327", "https://data.delijn.be/stops/306180"], ["https://data.delijn.be/stops/508033", "https://data.delijn.be/stops/508424"], ["https://data.delijn.be/stops/102780", "https://data.delijn.be/stops/103715"], ["https://data.delijn.be/stops/406097", "https://data.delijn.be/stops/406106"], ["https://data.delijn.be/stops/202155", "https://data.delijn.be/stops/203154"], ["https://data.delijn.be/stops/209792", "https://data.delijn.be/stops/218015"], ["https://data.delijn.be/stops/403019", "https://data.delijn.be/stops/404531"], ["https://data.delijn.be/stops/300936", "https://data.delijn.be/stops/301005"], ["https://data.delijn.be/stops/103721", "https://data.delijn.be/stops/103722"], ["https://data.delijn.be/stops/204511", "https://data.delijn.be/stops/204513"], ["https://data.delijn.be/stops/407664", "https://data.delijn.be/stops/409801"], ["https://data.delijn.be/stops/403338", "https://data.delijn.be/stops/403339"], ["https://data.delijn.be/stops/504631", "https://data.delijn.be/stops/508142"], ["https://data.delijn.be/stops/200711", "https://data.delijn.be/stops/200739"], ["https://data.delijn.be/stops/206265", "https://data.delijn.be/stops/206981"], ["https://data.delijn.be/stops/104843", "https://data.delijn.be/stops/109963"], ["https://data.delijn.be/stops/304981", "https://data.delijn.be/stops/304986"], ["https://data.delijn.be/stops/403511", "https://data.delijn.be/stops/403512"], ["https://data.delijn.be/stops/103124", "https://data.delijn.be/stops/109172"], ["https://data.delijn.be/stops/502811", "https://data.delijn.be/stops/507501"], ["https://data.delijn.be/stops/207024", "https://data.delijn.be/stops/207166"], ["https://data.delijn.be/stops/300999", "https://data.delijn.be/stops/301077"], ["https://data.delijn.be/stops/102656", "https://data.delijn.be/stops/308797"], ["https://data.delijn.be/stops/400767", "https://data.delijn.be/stops/405268"], ["https://data.delijn.be/stops/302636", "https://data.delijn.be/stops/308820"], ["https://data.delijn.be/stops/400825", "https://data.delijn.be/stops/400828"], ["https://data.delijn.be/stops/508689", "https://data.delijn.be/stops/509453"], ["https://data.delijn.be/stops/201709", "https://data.delijn.be/stops/202378"], ["https://data.delijn.be/stops/300224", "https://data.delijn.be/stops/300255"], ["https://data.delijn.be/stops/506368", "https://data.delijn.be/stops/590412"], ["https://data.delijn.be/stops/406735", "https://data.delijn.be/stops/407621"], ["https://data.delijn.be/stops/301404", "https://data.delijn.be/stops/304739"], ["https://data.delijn.be/stops/304159", "https://data.delijn.be/stops/307544"], ["https://data.delijn.be/stops/300271", "https://data.delijn.be/stops/307113"], ["https://data.delijn.be/stops/202737", "https://data.delijn.be/stops/203080"], ["https://data.delijn.be/stops/408272", "https://data.delijn.be/stops/408413"], ["https://data.delijn.be/stops/102291", "https://data.delijn.be/stops/106347"], ["https://data.delijn.be/stops/503210", "https://data.delijn.be/stops/508189"], ["https://data.delijn.be/stops/403890", "https://data.delijn.be/stops/403895"], ["https://data.delijn.be/stops/401451", "https://data.delijn.be/stops/401543"], ["https://data.delijn.be/stops/205007", "https://data.delijn.be/stops/205321"], ["https://data.delijn.be/stops/106072", "https://data.delijn.be/stops/106073"], ["https://data.delijn.be/stops/107305", "https://data.delijn.be/stops/108860"], ["https://data.delijn.be/stops/307971", "https://data.delijn.be/stops/307973"], ["https://data.delijn.be/stops/107387", "https://data.delijn.be/stops/107790"], ["https://data.delijn.be/stops/300363", "https://data.delijn.be/stops/307737"], ["https://data.delijn.be/stops/408194", "https://data.delijn.be/stops/408431"], ["https://data.delijn.be/stops/305498", "https://data.delijn.be/stops/305499"], ["https://data.delijn.be/stops/207429", "https://data.delijn.be/stops/208752"], ["https://data.delijn.be/stops/502435", "https://data.delijn.be/stops/502644"], ["https://data.delijn.be/stops/403212", "https://data.delijn.be/stops/405127"], ["https://data.delijn.be/stops/503746", "https://data.delijn.be/stops/509737"], ["https://data.delijn.be/stops/407454", "https://data.delijn.be/stops/407455"], ["https://data.delijn.be/stops/200350", "https://data.delijn.be/stops/200355"], ["https://data.delijn.be/stops/205372", "https://data.delijn.be/stops/205373"], ["https://data.delijn.be/stops/408641", "https://data.delijn.be/stops/408664"], ["https://data.delijn.be/stops/401583", "https://data.delijn.be/stops/406249"], ["https://data.delijn.be/stops/304561", "https://data.delijn.be/stops/304640"], ["https://data.delijn.be/stops/502327", "https://data.delijn.be/stops/505574"], ["https://data.delijn.be/stops/300197", "https://data.delijn.be/stops/300230"], ["https://data.delijn.be/stops/405145", "https://data.delijn.be/stops/405280"], ["https://data.delijn.be/stops/502470", "https://data.delijn.be/stops/508326"], ["https://data.delijn.be/stops/501428", "https://data.delijn.be/stops/501433"], ["https://data.delijn.be/stops/405281", "https://data.delijn.be/stops/405295"], ["https://data.delijn.be/stops/207760", "https://data.delijn.be/stops/209188"], ["https://data.delijn.be/stops/505406", "https://data.delijn.be/stops/505901"], ["https://data.delijn.be/stops/503351", "https://data.delijn.be/stops/503410"], ["https://data.delijn.be/stops/507126", "https://data.delijn.be/stops/507167"], ["https://data.delijn.be/stops/307643", "https://data.delijn.be/stops/307688"], ["https://data.delijn.be/stops/200650", "https://data.delijn.be/stops/203886"], ["https://data.delijn.be/stops/400321", "https://data.delijn.be/stops/400439"], ["https://data.delijn.be/stops/201950", "https://data.delijn.be/stops/203428"], ["https://data.delijn.be/stops/303507", "https://data.delijn.be/stops/308739"], ["https://data.delijn.be/stops/502238", "https://data.delijn.be/stops/502241"], ["https://data.delijn.be/stops/300407", "https://data.delijn.be/stops/302000"], ["https://data.delijn.be/stops/304113", "https://data.delijn.be/stops/306278"], ["https://data.delijn.be/stops/405149", "https://data.delijn.be/stops/405228"], ["https://data.delijn.be/stops/504508", "https://data.delijn.be/stops/509017"], ["https://data.delijn.be/stops/203043", "https://data.delijn.be/stops/203047"], ["https://data.delijn.be/stops/201053", "https://data.delijn.be/stops/202931"], ["https://data.delijn.be/stops/102162", "https://data.delijn.be/stops/102724"], ["https://data.delijn.be/stops/201705", "https://data.delijn.be/stops/202383"], ["https://data.delijn.be/stops/304568", "https://data.delijn.be/stops/308963"], ["https://data.delijn.be/stops/108573", "https://data.delijn.be/stops/109689"], ["https://data.delijn.be/stops/107916", "https://data.delijn.be/stops/107918"], ["https://data.delijn.be/stops/507206", "https://data.delijn.be/stops/507219"], ["https://data.delijn.be/stops/504033", "https://data.delijn.be/stops/509031"], ["https://data.delijn.be/stops/206957", "https://data.delijn.be/stops/207714"], ["https://data.delijn.be/stops/504417", "https://data.delijn.be/stops/509417"], ["https://data.delijn.be/stops/503485", "https://data.delijn.be/stops/505718"], ["https://data.delijn.be/stops/204459", "https://data.delijn.be/stops/205459"], ["https://data.delijn.be/stops/408244", "https://data.delijn.be/stops/308222"], ["https://data.delijn.be/stops/205741", "https://data.delijn.be/stops/205742"], ["https://data.delijn.be/stops/204301", "https://data.delijn.be/stops/205047"], ["https://data.delijn.be/stops/405624", "https://data.delijn.be/stops/409300"], ["https://data.delijn.be/stops/503444", "https://data.delijn.be/stops/508722"], ["https://data.delijn.be/stops/206872", "https://data.delijn.be/stops/208364"], ["https://data.delijn.be/stops/403290", "https://data.delijn.be/stops/410117"], ["https://data.delijn.be/stops/300789", "https://data.delijn.be/stops/308673"], ["https://data.delijn.be/stops/201001", "https://data.delijn.be/stops/203527"], ["https://data.delijn.be/stops/302472", "https://data.delijn.be/stops/302486"], ["https://data.delijn.be/stops/107594", "https://data.delijn.be/stops/107662"], ["https://data.delijn.be/stops/505556", "https://data.delijn.be/stops/507178"], ["https://data.delijn.be/stops/509574", "https://data.delijn.be/stops/509577"], ["https://data.delijn.be/stops/101223", "https://data.delijn.be/stops/206697"], ["https://data.delijn.be/stops/206682", "https://data.delijn.be/stops/209106"], ["https://data.delijn.be/stops/400476", "https://data.delijn.be/stops/400478"], ["https://data.delijn.be/stops/205335", "https://data.delijn.be/stops/205337"], ["https://data.delijn.be/stops/104262", "https://data.delijn.be/stops/105354"], ["https://data.delijn.be/stops/106531", "https://data.delijn.be/stops/107309"], ["https://data.delijn.be/stops/401661", "https://data.delijn.be/stops/401710"], ["https://data.delijn.be/stops/209398", "https://data.delijn.be/stops/209495"], ["https://data.delijn.be/stops/503122", "https://data.delijn.be/stops/508132"], ["https://data.delijn.be/stops/206534", "https://data.delijn.be/stops/207647"], ["https://data.delijn.be/stops/206680", "https://data.delijn.be/stops/218005"], ["https://data.delijn.be/stops/405434", "https://data.delijn.be/stops/409251"], ["https://data.delijn.be/stops/304304", "https://data.delijn.be/stops/304305"], ["https://data.delijn.be/stops/105615", "https://data.delijn.be/stops/105620"], ["https://data.delijn.be/stops/101066", "https://data.delijn.be/stops/101069"], ["https://data.delijn.be/stops/102255", "https://data.delijn.be/stops/106010"], ["https://data.delijn.be/stops/400755", "https://data.delijn.be/stops/410048"], ["https://data.delijn.be/stops/502804", "https://data.delijn.be/stops/505662"], ["https://data.delijn.be/stops/103304", "https://data.delijn.be/stops/104870"], ["https://data.delijn.be/stops/206090", "https://data.delijn.be/stops/207091"], ["https://data.delijn.be/stops/207230", "https://data.delijn.be/stops/207935"], ["https://data.delijn.be/stops/502216", "https://data.delijn.be/stops/507216"], ["https://data.delijn.be/stops/202340", "https://data.delijn.be/stops/202948"], ["https://data.delijn.be/stops/504483", "https://data.delijn.be/stops/509447"], ["https://data.delijn.be/stops/204043", "https://data.delijn.be/stops/204409"], ["https://data.delijn.be/stops/205977", "https://data.delijn.be/stops/218022"], ["https://data.delijn.be/stops/301480", "https://data.delijn.be/stops/301482"], ["https://data.delijn.be/stops/508516", "https://data.delijn.be/stops/508982"], ["https://data.delijn.be/stops/304690", "https://data.delijn.be/stops/304791"], ["https://data.delijn.be/stops/400926", "https://data.delijn.be/stops/407393"], ["https://data.delijn.be/stops/301640", "https://data.delijn.be/stops/306154"], ["https://data.delijn.be/stops/501048", "https://data.delijn.be/stops/501476"], ["https://data.delijn.be/stops/505682", "https://data.delijn.be/stops/505684"], ["https://data.delijn.be/stops/507535", "https://data.delijn.be/stops/507741"], ["https://data.delijn.be/stops/202890", "https://data.delijn.be/stops/211132"], ["https://data.delijn.be/stops/202064", "https://data.delijn.be/stops/211852"], ["https://data.delijn.be/stops/405056", "https://data.delijn.be/stops/405863"], ["https://data.delijn.be/stops/505316", "https://data.delijn.be/stops/508005"], ["https://data.delijn.be/stops/304407", "https://data.delijn.be/stops/307416"], ["https://data.delijn.be/stops/304101", "https://data.delijn.be/stops/304108"], ["https://data.delijn.be/stops/201870", "https://data.delijn.be/stops/202663"], ["https://data.delijn.be/stops/106455", "https://data.delijn.be/stops/106457"], ["https://data.delijn.be/stops/206668", "https://data.delijn.be/stops/208532"], ["https://data.delijn.be/stops/106916", "https://data.delijn.be/stops/107251"], ["https://data.delijn.be/stops/107659", "https://data.delijn.be/stops/107663"], ["https://data.delijn.be/stops/102053", "https://data.delijn.be/stops/102260"], ["https://data.delijn.be/stops/206537", "https://data.delijn.be/stops/207432"], ["https://data.delijn.be/stops/107444", "https://data.delijn.be/stops/109755"], ["https://data.delijn.be/stops/208802", "https://data.delijn.be/stops/209427"], ["https://data.delijn.be/stops/201803", "https://data.delijn.be/stops/201833"], ["https://data.delijn.be/stops/302152", "https://data.delijn.be/stops/303844"], ["https://data.delijn.be/stops/200247", "https://data.delijn.be/stops/203756"], ["https://data.delijn.be/stops/500927", "https://data.delijn.be/stops/503958"], ["https://data.delijn.be/stops/504278", "https://data.delijn.be/stops/509283"], ["https://data.delijn.be/stops/400519", "https://data.delijn.be/stops/400520"], ["https://data.delijn.be/stops/204401", "https://data.delijn.be/stops/204402"], ["https://data.delijn.be/stops/503573", "https://data.delijn.be/stops/503580"], ["https://data.delijn.be/stops/407825", "https://data.delijn.be/stops/408174"], ["https://data.delijn.be/stops/107018", "https://data.delijn.be/stops/107112"], ["https://data.delijn.be/stops/201053", "https://data.delijn.be/stops/201477"], ["https://data.delijn.be/stops/505673", "https://data.delijn.be/stops/507314"], ["https://data.delijn.be/stops/402705", "https://data.delijn.be/stops/405997"], ["https://data.delijn.be/stops/404320", "https://data.delijn.be/stops/404321"], ["https://data.delijn.be/stops/303857", "https://data.delijn.be/stops/304080"], ["https://data.delijn.be/stops/202698", "https://data.delijn.be/stops/203698"], ["https://data.delijn.be/stops/504638", "https://data.delijn.be/stops/504746"], ["https://data.delijn.be/stops/505395", "https://data.delijn.be/stops/505810"], ["https://data.delijn.be/stops/400031", "https://data.delijn.be/stops/400439"], ["https://data.delijn.be/stops/200833", "https://data.delijn.be/stops/201883"], ["https://data.delijn.be/stops/300289", "https://data.delijn.be/stops/301316"], ["https://data.delijn.be/stops/108368", "https://data.delijn.be/stops/108458"], ["https://data.delijn.be/stops/106395", "https://data.delijn.be/stops/106397"], ["https://data.delijn.be/stops/505841", "https://data.delijn.be/stops/509118"], ["https://data.delijn.be/stops/403617", "https://data.delijn.be/stops/410037"], ["https://data.delijn.be/stops/306156", "https://data.delijn.be/stops/308638"], ["https://data.delijn.be/stops/503553", "https://data.delijn.be/stops/503556"], ["https://data.delijn.be/stops/206235", "https://data.delijn.be/stops/207236"], ["https://data.delijn.be/stops/501123", "https://data.delijn.be/stops/501126"], ["https://data.delijn.be/stops/402608", "https://data.delijn.be/stops/405472"], ["https://data.delijn.be/stops/403304", "https://data.delijn.be/stops/409173"], ["https://data.delijn.be/stops/201335", "https://data.delijn.be/stops/210335"], ["https://data.delijn.be/stops/405250", "https://data.delijn.be/stops/405251"], ["https://data.delijn.be/stops/403795", "https://data.delijn.be/stops/403811"], ["https://data.delijn.be/stops/109590", "https://data.delijn.be/stops/109591"], ["https://data.delijn.be/stops/106422", "https://data.delijn.be/stops/106561"], ["https://data.delijn.be/stops/401029", "https://data.delijn.be/stops/409220"], ["https://data.delijn.be/stops/405412", "https://data.delijn.be/stops/302841"], ["https://data.delijn.be/stops/406171", "https://data.delijn.be/stops/410226"], ["https://data.delijn.be/stops/503267", "https://data.delijn.be/stops/508036"], ["https://data.delijn.be/stops/204080", "https://data.delijn.be/stops/204203"], ["https://data.delijn.be/stops/204424", "https://data.delijn.be/stops/204745"], ["https://data.delijn.be/stops/106818", "https://data.delijn.be/stops/106819"], ["https://data.delijn.be/stops/203032", "https://data.delijn.be/stops/203033"], ["https://data.delijn.be/stops/201952", "https://data.delijn.be/stops/203457"], ["https://data.delijn.be/stops/206323", "https://data.delijn.be/stops/206487"], ["https://data.delijn.be/stops/104839", "https://data.delijn.be/stops/109460"], ["https://data.delijn.be/stops/303360", "https://data.delijn.be/stops/303373"], ["https://data.delijn.be/stops/507294", "https://data.delijn.be/stops/507296"], ["https://data.delijn.be/stops/107136", "https://data.delijn.be/stops/107138"], ["https://data.delijn.be/stops/102022", "https://data.delijn.be/stops/104843"], ["https://data.delijn.be/stops/407094", "https://data.delijn.be/stops/407098"], ["https://data.delijn.be/stops/401476", "https://data.delijn.be/stops/401491"], ["https://data.delijn.be/stops/401900", "https://data.delijn.be/stops/401908"], ["https://data.delijn.be/stops/505579", "https://data.delijn.be/stops/509891"], ["https://data.delijn.be/stops/407021", "https://data.delijn.be/stops/407057"], ["https://data.delijn.be/stops/304265", "https://data.delijn.be/stops/304285"], ["https://data.delijn.be/stops/405903", "https://data.delijn.be/stops/405917"], ["https://data.delijn.be/stops/200501", "https://data.delijn.be/stops/201189"], ["https://data.delijn.be/stops/504701", "https://data.delijn.be/stops/509441"], ["https://data.delijn.be/stops/401125", "https://data.delijn.be/stops/402830"], ["https://data.delijn.be/stops/209689", "https://data.delijn.be/stops/209741"], ["https://data.delijn.be/stops/303715", "https://data.delijn.be/stops/303747"], ["https://data.delijn.be/stops/405037", "https://data.delijn.be/stops/405100"], ["https://data.delijn.be/stops/503212", "https://data.delijn.be/stops/508354"], ["https://data.delijn.be/stops/209389", "https://data.delijn.be/stops/503329"], ["https://data.delijn.be/stops/503480", "https://data.delijn.be/stops/509046"], ["https://data.delijn.be/stops/201345", "https://data.delijn.be/stops/201346"], ["https://data.delijn.be/stops/401264", "https://data.delijn.be/stops/401270"], ["https://data.delijn.be/stops/502304", "https://data.delijn.be/stops/507313"], ["https://data.delijn.be/stops/101136", "https://data.delijn.be/stops/104362"], ["https://data.delijn.be/stops/504037", "https://data.delijn.be/stops/509038"], ["https://data.delijn.be/stops/503565", "https://data.delijn.be/stops/503569"], ["https://data.delijn.be/stops/104639", "https://data.delijn.be/stops/107971"], ["https://data.delijn.be/stops/101941", "https://data.delijn.be/stops/109642"], ["https://data.delijn.be/stops/410043", "https://data.delijn.be/stops/410044"], ["https://data.delijn.be/stops/209466", "https://data.delijn.be/stops/209467"], ["https://data.delijn.be/stops/203121", "https://data.delijn.be/stops/203181"], ["https://data.delijn.be/stops/106994", "https://data.delijn.be/stops/107098"], ["https://data.delijn.be/stops/403768", "https://data.delijn.be/stops/403875"], ["https://data.delijn.be/stops/306954", "https://data.delijn.be/stops/306957"], ["https://data.delijn.be/stops/206750", "https://data.delijn.be/stops/208477"], ["https://data.delijn.be/stops/200815", "https://data.delijn.be/stops/200874"], ["https://data.delijn.be/stops/201811", "https://data.delijn.be/stops/201844"], ["https://data.delijn.be/stops/507798", "https://data.delijn.be/stops/508271"], ["https://data.delijn.be/stops/206049", "https://data.delijn.be/stops/206143"], ["https://data.delijn.be/stops/301785", "https://data.delijn.be/stops/301786"], ["https://data.delijn.be/stops/501122", "https://data.delijn.be/stops/501123"], ["https://data.delijn.be/stops/503028", "https://data.delijn.be/stops/508028"], ["https://data.delijn.be/stops/403938", "https://data.delijn.be/stops/403939"], ["https://data.delijn.be/stops/107545", "https://data.delijn.be/stops/109596"], ["https://data.delijn.be/stops/503460", "https://data.delijn.be/stops/503461"], ["https://data.delijn.be/stops/406622", "https://data.delijn.be/stops/406685"], ["https://data.delijn.be/stops/405705", "https://data.delijn.be/stops/408898"], ["https://data.delijn.be/stops/204675", "https://data.delijn.be/stops/205676"], ["https://data.delijn.be/stops/103073", "https://data.delijn.be/stops/106926"], ["https://data.delijn.be/stops/101651", "https://data.delijn.be/stops/105499"], ["https://data.delijn.be/stops/402653", "https://data.delijn.be/stops/405484"], ["https://data.delijn.be/stops/404305", "https://data.delijn.be/stops/404328"], ["https://data.delijn.be/stops/201724", "https://data.delijn.be/stops/203380"], ["https://data.delijn.be/stops/102211", "https://data.delijn.be/stops/106119"], ["https://data.delijn.be/stops/403907", "https://data.delijn.be/stops/404039"], ["https://data.delijn.be/stops/401806", "https://data.delijn.be/stops/401807"], ["https://data.delijn.be/stops/301618", "https://data.delijn.be/stops/301621"], ["https://data.delijn.be/stops/503562", "https://data.delijn.be/stops/508564"], ["https://data.delijn.be/stops/103279", "https://data.delijn.be/stops/107725"], ["https://data.delijn.be/stops/200573", "https://data.delijn.be/stops/201422"], ["https://data.delijn.be/stops/501262", "https://data.delijn.be/stops/506321"], ["https://data.delijn.be/stops/304490", "https://data.delijn.be/stops/304516"], ["https://data.delijn.be/stops/101389", "https://data.delijn.be/stops/101828"], ["https://data.delijn.be/stops/202304", "https://data.delijn.be/stops/203304"], ["https://data.delijn.be/stops/101015", "https://data.delijn.be/stops/101017"], ["https://data.delijn.be/stops/305545", "https://data.delijn.be/stops/305546"], ["https://data.delijn.be/stops/405696", "https://data.delijn.be/stops/405991"], ["https://data.delijn.be/stops/105967", "https://data.delijn.be/stops/107140"], ["https://data.delijn.be/stops/405687", "https://data.delijn.be/stops/406466"], ["https://data.delijn.be/stops/404012", "https://data.delijn.be/stops/404013"], ["https://data.delijn.be/stops/501096", "https://data.delijn.be/stops/505151"], ["https://data.delijn.be/stops/301702", "https://data.delijn.be/stops/303750"], ["https://data.delijn.be/stops/208506", "https://data.delijn.be/stops/208660"], ["https://data.delijn.be/stops/502533", "https://data.delijn.be/stops/507532"], ["https://data.delijn.be/stops/206547", "https://data.delijn.be/stops/209750"], ["https://data.delijn.be/stops/505307", "https://data.delijn.be/stops/505342"], ["https://data.delijn.be/stops/407599", "https://data.delijn.be/stops/410350"], ["https://data.delijn.be/stops/106333", "https://data.delijn.be/stops/106697"], ["https://data.delijn.be/stops/206565", "https://data.delijn.be/stops/207565"], ["https://data.delijn.be/stops/504164", "https://data.delijn.be/stops/504739"], ["https://data.delijn.be/stops/201735", "https://data.delijn.be/stops/203758"], ["https://data.delijn.be/stops/208345", "https://data.delijn.be/stops/209346"], ["https://data.delijn.be/stops/107797", "https://data.delijn.be/stops/107801"], ["https://data.delijn.be/stops/301746", "https://data.delijn.be/stops/304571"], ["https://data.delijn.be/stops/407586", "https://data.delijn.be/stops/410275"], ["https://data.delijn.be/stops/200234", "https://data.delijn.be/stops/201249"], ["https://data.delijn.be/stops/302756", "https://data.delijn.be/stops/302774"], ["https://data.delijn.be/stops/503096", "https://data.delijn.be/stops/508096"], ["https://data.delijn.be/stops/103617", "https://data.delijn.be/stops/103679"], ["https://data.delijn.be/stops/302550", "https://data.delijn.be/stops/305979"], ["https://data.delijn.be/stops/101799", "https://data.delijn.be/stops/300680"], ["https://data.delijn.be/stops/108784", "https://data.delijn.be/stops/109119"], ["https://data.delijn.be/stops/400991", "https://data.delijn.be/stops/409102"], ["https://data.delijn.be/stops/102502", "https://data.delijn.be/stops/102504"], ["https://data.delijn.be/stops/300343", "https://data.delijn.be/stops/300355"], ["https://data.delijn.be/stops/106939", "https://data.delijn.be/stops/107309"], ["https://data.delijn.be/stops/104599", "https://data.delijn.be/stops/104601"], ["https://data.delijn.be/stops/503779", "https://data.delijn.be/stops/508838"], ["https://data.delijn.be/stops/200403", "https://data.delijn.be/stops/202040"], ["https://data.delijn.be/stops/105083", "https://data.delijn.be/stops/205279"], ["https://data.delijn.be/stops/404691", "https://data.delijn.be/stops/406933"], ["https://data.delijn.be/stops/102219", "https://data.delijn.be/stops/102221"], ["https://data.delijn.be/stops/307310", "https://data.delijn.be/stops/307313"], ["https://data.delijn.be/stops/306129", "https://data.delijn.be/stops/306130"], ["https://data.delijn.be/stops/400560", "https://data.delijn.be/stops/400561"], ["https://data.delijn.be/stops/400368", "https://data.delijn.be/stops/400416"], ["https://data.delijn.be/stops/201862", "https://data.delijn.be/stops/201879"], ["https://data.delijn.be/stops/510019", "https://data.delijn.be/stops/510023"], ["https://data.delijn.be/stops/302136", "https://data.delijn.be/stops/302144"], ["https://data.delijn.be/stops/300225", "https://data.delijn.be/stops/300230"], ["https://data.delijn.be/stops/102931", "https://data.delijn.be/stops/102936"], ["https://data.delijn.be/stops/409692", "https://data.delijn.be/stops/409704"], ["https://data.delijn.be/stops/107090", "https://data.delijn.be/stops/107350"], ["https://data.delijn.be/stops/302216", "https://data.delijn.be/stops/302234"], ["https://data.delijn.be/stops/104479", "https://data.delijn.be/stops/303561"], ["https://data.delijn.be/stops/307142", "https://data.delijn.be/stops/307249"], ["https://data.delijn.be/stops/104549", "https://data.delijn.be/stops/301914"], ["https://data.delijn.be/stops/403525", "https://data.delijn.be/stops/403628"], ["https://data.delijn.be/stops/402778", "https://data.delijn.be/stops/402785"], ["https://data.delijn.be/stops/407920", "https://data.delijn.be/stops/408080"], ["https://data.delijn.be/stops/206198", "https://data.delijn.be/stops/206238"], ["https://data.delijn.be/stops/203547", "https://data.delijn.be/stops/203548"], ["https://data.delijn.be/stops/308223", "https://data.delijn.be/stops/308287"], ["https://data.delijn.be/stops/200828", "https://data.delijn.be/stops/502060"], ["https://data.delijn.be/stops/404346", "https://data.delijn.be/stops/409690"], ["https://data.delijn.be/stops/207096", "https://data.delijn.be/stops/207909"], ["https://data.delijn.be/stops/102500", "https://data.delijn.be/stops/102505"], ["https://data.delijn.be/stops/206229", "https://data.delijn.be/stops/207906"], ["https://data.delijn.be/stops/208549", "https://data.delijn.be/stops/209549"], ["https://data.delijn.be/stops/305280", "https://data.delijn.be/stops/305310"], ["https://data.delijn.be/stops/501385", "https://data.delijn.be/stops/506464"], ["https://data.delijn.be/stops/210008", "https://data.delijn.be/stops/210856"], ["https://data.delijn.be/stops/407772", "https://data.delijn.be/stops/408848"], ["https://data.delijn.be/stops/407714", "https://data.delijn.be/stops/409520"], ["https://data.delijn.be/stops/206727", "https://data.delijn.be/stops/206733"], ["https://data.delijn.be/stops/402656", "https://data.delijn.be/stops/407298"], ["https://data.delijn.be/stops/201073", "https://data.delijn.be/stops/211046"], ["https://data.delijn.be/stops/204089", "https://data.delijn.be/stops/205017"], ["https://data.delijn.be/stops/105092", "https://data.delijn.be/stops/105094"], ["https://data.delijn.be/stops/103982", "https://data.delijn.be/stops/109960"], ["https://data.delijn.be/stops/109681", "https://data.delijn.be/stops/109682"], ["https://data.delijn.be/stops/404461", "https://data.delijn.be/stops/410155"], ["https://data.delijn.be/stops/308460", "https://data.delijn.be/stops/308692"], ["https://data.delijn.be/stops/103209", "https://data.delijn.be/stops/108440"], ["https://data.delijn.be/stops/300487", "https://data.delijn.be/stops/303613"], ["https://data.delijn.be/stops/501201", "https://data.delijn.be/stops/506257"], ["https://data.delijn.be/stops/202448", "https://data.delijn.be/stops/203078"], ["https://data.delijn.be/stops/504569", "https://data.delijn.be/stops/509569"], ["https://data.delijn.be/stops/305344", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/105419", "https://data.delijn.be/stops/105422"], ["https://data.delijn.be/stops/302919", "https://data.delijn.be/stops/306402"], ["https://data.delijn.be/stops/404140", "https://data.delijn.be/stops/404141"], ["https://data.delijn.be/stops/301281", "https://data.delijn.be/stops/306251"], ["https://data.delijn.be/stops/303773", "https://data.delijn.be/stops/308714"], ["https://data.delijn.be/stops/305991", "https://data.delijn.be/stops/306632"], ["https://data.delijn.be/stops/405766", "https://data.delijn.be/stops/409752"], ["https://data.delijn.be/stops/305746", "https://data.delijn.be/stops/305748"], ["https://data.delijn.be/stops/201874", "https://data.delijn.be/stops/203021"], ["https://data.delijn.be/stops/402528", "https://data.delijn.be/stops/402532"], ["https://data.delijn.be/stops/108923", "https://data.delijn.be/stops/108926"], ["https://data.delijn.be/stops/401443", "https://data.delijn.be/stops/401723"], ["https://data.delijn.be/stops/405311", "https://data.delijn.be/stops/405420"], ["https://data.delijn.be/stops/500601", "https://data.delijn.be/stops/501537"], ["https://data.delijn.be/stops/502762", "https://data.delijn.be/stops/507756"], ["https://data.delijn.be/stops/105266", "https://data.delijn.be/stops/105353"], ["https://data.delijn.be/stops/200396", "https://data.delijn.be/stops/201396"], ["https://data.delijn.be/stops/109933", "https://data.delijn.be/stops/109958"], ["https://data.delijn.be/stops/304357", "https://data.delijn.be/stops/304358"], ["https://data.delijn.be/stops/405925", "https://data.delijn.be/stops/405990"], ["https://data.delijn.be/stops/408705", "https://data.delijn.be/stops/408767"], ["https://data.delijn.be/stops/206971", "https://data.delijn.be/stops/207990"], ["https://data.delijn.be/stops/106898", "https://data.delijn.be/stops/109884"], ["https://data.delijn.be/stops/301961", "https://data.delijn.be/stops/301982"], ["https://data.delijn.be/stops/300600", "https://data.delijn.be/stops/300612"], ["https://data.delijn.be/stops/302338", "https://data.delijn.be/stops/306181"], ["https://data.delijn.be/stops/306901", "https://data.delijn.be/stops/306902"], ["https://data.delijn.be/stops/202758", "https://data.delijn.be/stops/202759"], ["https://data.delijn.be/stops/109294", "https://data.delijn.be/stops/109295"], ["https://data.delijn.be/stops/200620", "https://data.delijn.be/stops/211002"], ["https://data.delijn.be/stops/107064", "https://data.delijn.be/stops/107066"], ["https://data.delijn.be/stops/201809", "https://data.delijn.be/stops/201834"], ["https://data.delijn.be/stops/300705", "https://data.delijn.be/stops/308069"], ["https://data.delijn.be/stops/308170", "https://data.delijn.be/stops/308172"], ["https://data.delijn.be/stops/402192", "https://data.delijn.be/stops/402252"], ["https://data.delijn.be/stops/202932", "https://data.delijn.be/stops/218001"], ["https://data.delijn.be/stops/102751", "https://data.delijn.be/stops/108145"], ["https://data.delijn.be/stops/200579", "https://data.delijn.be/stops/201580"], ["https://data.delijn.be/stops/405659", "https://data.delijn.be/stops/408747"], ["https://data.delijn.be/stops/305482", "https://data.delijn.be/stops/308551"], ["https://data.delijn.be/stops/404138", "https://data.delijn.be/stops/404140"], ["https://data.delijn.be/stops/302318", "https://data.delijn.be/stops/308788"], ["https://data.delijn.be/stops/401741", "https://data.delijn.be/stops/401743"], ["https://data.delijn.be/stops/307422", "https://data.delijn.be/stops/307423"], ["https://data.delijn.be/stops/201849", "https://data.delijn.be/stops/203772"], ["https://data.delijn.be/stops/202581", "https://data.delijn.be/stops/203582"], ["https://data.delijn.be/stops/201126", "https://data.delijn.be/stops/203142"], ["https://data.delijn.be/stops/207012", "https://data.delijn.be/stops/207988"], ["https://data.delijn.be/stops/402205", "https://data.delijn.be/stops/402481"], ["https://data.delijn.be/stops/101298", "https://data.delijn.be/stops/105487"], ["https://data.delijn.be/stops/205175", "https://data.delijn.be/stops/205452"], ["https://data.delijn.be/stops/408875", "https://data.delijn.be/stops/408890"], ["https://data.delijn.be/stops/307640", "https://data.delijn.be/stops/307643"], ["https://data.delijn.be/stops/403686", "https://data.delijn.be/stops/409274"], ["https://data.delijn.be/stops/103398", "https://data.delijn.be/stops/104794"], ["https://data.delijn.be/stops/402017", "https://data.delijn.be/stops/402021"], ["https://data.delijn.be/stops/106087", "https://data.delijn.be/stops/106139"], ["https://data.delijn.be/stops/204622", "https://data.delijn.be/stops/205622"], ["https://data.delijn.be/stops/504210", "https://data.delijn.be/stops/504691"], ["https://data.delijn.be/stops/305806", "https://data.delijn.be/stops/305841"], ["https://data.delijn.be/stops/403051", "https://data.delijn.be/stops/403175"], ["https://data.delijn.be/stops/206940", "https://data.delijn.be/stops/207940"], ["https://data.delijn.be/stops/405380", "https://data.delijn.be/stops/405412"], ["https://data.delijn.be/stops/206255", "https://data.delijn.be/stops/206996"], ["https://data.delijn.be/stops/203823", "https://data.delijn.be/stops/209715"], ["https://data.delijn.be/stops/104284", "https://data.delijn.be/stops/104338"], ["https://data.delijn.be/stops/407052", "https://data.delijn.be/stops/407076"], ["https://data.delijn.be/stops/208245", "https://data.delijn.be/stops/208246"], ["https://data.delijn.be/stops/206774", "https://data.delijn.be/stops/209093"], ["https://data.delijn.be/stops/107575", "https://data.delijn.be/stops/107576"], ["https://data.delijn.be/stops/302162", "https://data.delijn.be/stops/302163"], ["https://data.delijn.be/stops/204095", "https://data.delijn.be/stops/204471"], ["https://data.delijn.be/stops/308072", "https://data.delijn.be/stops/308075"], ["https://data.delijn.be/stops/200778", "https://data.delijn.be/stops/211121"], ["https://data.delijn.be/stops/206621", "https://data.delijn.be/stops/206622"], ["https://data.delijn.be/stops/505973", "https://data.delijn.be/stops/508017"], ["https://data.delijn.be/stops/306853", "https://data.delijn.be/stops/306854"], ["https://data.delijn.be/stops/508754", "https://data.delijn.be/stops/508759"], ["https://data.delijn.be/stops/101217", "https://data.delijn.be/stops/107944"], ["https://data.delijn.be/stops/305220", "https://data.delijn.be/stops/305989"], ["https://data.delijn.be/stops/404770", "https://data.delijn.be/stops/404771"], ["https://data.delijn.be/stops/504703", "https://data.delijn.be/stops/509597"], ["https://data.delijn.be/stops/301331", "https://data.delijn.be/stops/301389"], ["https://data.delijn.be/stops/102807", "https://data.delijn.be/stops/109673"], ["https://data.delijn.be/stops/102300", "https://data.delijn.be/stops/104625"], ["https://data.delijn.be/stops/307791", "https://data.delijn.be/stops/333234"], ["https://data.delijn.be/stops/304751", "https://data.delijn.be/stops/308698"], ["https://data.delijn.be/stops/308214", "https://data.delijn.be/stops/308231"], ["https://data.delijn.be/stops/403087", "https://data.delijn.be/stops/403682"], ["https://data.delijn.be/stops/206470", "https://data.delijn.be/stops/207137"], ["https://data.delijn.be/stops/501065", "https://data.delijn.be/stops/506135"], ["https://data.delijn.be/stops/405880", "https://data.delijn.be/stops/405881"], ["https://data.delijn.be/stops/503592", "https://data.delijn.be/stops/504883"], ["https://data.delijn.be/stops/300349", "https://data.delijn.be/stops/300361"], ["https://data.delijn.be/stops/502761", "https://data.delijn.be/stops/505647"], ["https://data.delijn.be/stops/403701", "https://data.delijn.be/stops/403761"], ["https://data.delijn.be/stops/206789", "https://data.delijn.be/stops/208596"], ["https://data.delijn.be/stops/104590", "https://data.delijn.be/stops/105635"], ["https://data.delijn.be/stops/407888", "https://data.delijn.be/stops/408179"], ["https://data.delijn.be/stops/505060", "https://data.delijn.be/stops/505062"], ["https://data.delijn.be/stops/208133", "https://data.delijn.be/stops/208138"], ["https://data.delijn.be/stops/106091", "https://data.delijn.be/stops/108473"], ["https://data.delijn.be/stops/504008", "https://data.delijn.be/stops/505103"], ["https://data.delijn.be/stops/308215", "https://data.delijn.be/stops/308245"], ["https://data.delijn.be/stops/105236", "https://data.delijn.be/stops/108000"], ["https://data.delijn.be/stops/206530", "https://data.delijn.be/stops/206822"], ["https://data.delijn.be/stops/103477", "https://data.delijn.be/stops/109164"], ["https://data.delijn.be/stops/302541", "https://data.delijn.be/stops/302542"], ["https://data.delijn.be/stops/200711", "https://data.delijn.be/stops/204768"], ["https://data.delijn.be/stops/400435", "https://data.delijn.be/stops/405297"], ["https://data.delijn.be/stops/103694", "https://data.delijn.be/stops/103696"], ["https://data.delijn.be/stops/301627", "https://data.delijn.be/stops/302119"], ["https://data.delijn.be/stops/200095", "https://data.delijn.be/stops/201095"], ["https://data.delijn.be/stops/301089", "https://data.delijn.be/stops/302808"], ["https://data.delijn.be/stops/206411", "https://data.delijn.be/stops/207650"], ["https://data.delijn.be/stops/103605", "https://data.delijn.be/stops/109402"], ["https://data.delijn.be/stops/403340", "https://data.delijn.be/stops/403522"], ["https://data.delijn.be/stops/102607", "https://data.delijn.be/stops/105527"], ["https://data.delijn.be/stops/505105", "https://data.delijn.be/stops/508116"], ["https://data.delijn.be/stops/403326", "https://data.delijn.be/stops/403327"], ["https://data.delijn.be/stops/500022", "https://data.delijn.be/stops/506194"], ["https://data.delijn.be/stops/401672", "https://data.delijn.be/stops/307626"], ["https://data.delijn.be/stops/409545", "https://data.delijn.be/stops/409547"], ["https://data.delijn.be/stops/206834", "https://data.delijn.be/stops/207833"], ["https://data.delijn.be/stops/402840", "https://data.delijn.be/stops/402889"], ["https://data.delijn.be/stops/400792", "https://data.delijn.be/stops/409541"], ["https://data.delijn.be/stops/306960", "https://data.delijn.be/stops/308088"], ["https://data.delijn.be/stops/202419", "https://data.delijn.be/stops/203276"], ["https://data.delijn.be/stops/104866", "https://data.delijn.be/stops/104867"], ["https://data.delijn.be/stops/105968", "https://data.delijn.be/stops/105971"], ["https://data.delijn.be/stops/501250", "https://data.delijn.be/stops/506259"], ["https://data.delijn.be/stops/503780", "https://data.delijn.be/stops/508780"], ["https://data.delijn.be/stops/204342", "https://data.delijn.be/stops/205212"], ["https://data.delijn.be/stops/408134", "https://data.delijn.be/stops/408140"], ["https://data.delijn.be/stops/202625", "https://data.delijn.be/stops/203625"], ["https://data.delijn.be/stops/204250", "https://data.delijn.be/stops/205468"], ["https://data.delijn.be/stops/407838", "https://data.delijn.be/stops/408006"], ["https://data.delijn.be/stops/200815", "https://data.delijn.be/stops/201125"], ["https://data.delijn.be/stops/402586", "https://data.delijn.be/stops/402587"], ["https://data.delijn.be/stops/302603", "https://data.delijn.be/stops/302604"], ["https://data.delijn.be/stops/306819", "https://data.delijn.be/stops/306820"], ["https://data.delijn.be/stops/104995", "https://data.delijn.be/stops/105000"], ["https://data.delijn.be/stops/306045", "https://data.delijn.be/stops/307475"], ["https://data.delijn.be/stops/409347", "https://data.delijn.be/stops/409348"], ["https://data.delijn.be/stops/503552", "https://data.delijn.be/stops/503576"], ["https://data.delijn.be/stops/101046", "https://data.delijn.be/stops/105988"], ["https://data.delijn.be/stops/102474", "https://data.delijn.be/stops/102477"], ["https://data.delijn.be/stops/407683", "https://data.delijn.be/stops/407685"], ["https://data.delijn.be/stops/307386", "https://data.delijn.be/stops/307397"], ["https://data.delijn.be/stops/505289", "https://data.delijn.be/stops/505369"], ["https://data.delijn.be/stops/508154", "https://data.delijn.be/stops/508155"], ["https://data.delijn.be/stops/202431", "https://data.delijn.be/stops/203433"], ["https://data.delijn.be/stops/202259", "https://data.delijn.be/stops/203105"], ["https://data.delijn.be/stops/106961", "https://data.delijn.be/stops/106962"], ["https://data.delijn.be/stops/308068", "https://data.delijn.be/stops/308069"], ["https://data.delijn.be/stops/304434", "https://data.delijn.be/stops/307042"], ["https://data.delijn.be/stops/208114", "https://data.delijn.be/stops/209789"], ["https://data.delijn.be/stops/302943", "https://data.delijn.be/stops/308660"], ["https://data.delijn.be/stops/307162", "https://data.delijn.be/stops/307264"], ["https://data.delijn.be/stops/302974", "https://data.delijn.be/stops/303026"], ["https://data.delijn.be/stops/400914", "https://data.delijn.be/stops/400915"], ["https://data.delijn.be/stops/403468", "https://data.delijn.be/stops/410062"], ["https://data.delijn.be/stops/504208", "https://data.delijn.be/stops/504692"], ["https://data.delijn.be/stops/504231", "https://data.delijn.be/stops/504232"], ["https://data.delijn.be/stops/202272", "https://data.delijn.be/stops/203662"], ["https://data.delijn.be/stops/108703", "https://data.delijn.be/stops/108710"], ["https://data.delijn.be/stops/206043", "https://data.delijn.be/stops/206538"], ["https://data.delijn.be/stops/404100", "https://data.delijn.be/stops/404102"], ["https://data.delijn.be/stops/204151", "https://data.delijn.be/stops/205591"], ["https://data.delijn.be/stops/502348", "https://data.delijn.be/stops/505310"], ["https://data.delijn.be/stops/203372", "https://data.delijn.be/stops/203373"], ["https://data.delijn.be/stops/505787", "https://data.delijn.be/stops/509040"], ["https://data.delijn.be/stops/504258", "https://data.delijn.be/stops/504707"], ["https://data.delijn.be/stops/201632", "https://data.delijn.be/stops/202909"], ["https://data.delijn.be/stops/504324", "https://data.delijn.be/stops/504424"], ["https://data.delijn.be/stops/507163", "https://data.delijn.be/stops/507441"], ["https://data.delijn.be/stops/300010", "https://data.delijn.be/stops/304300"], ["https://data.delijn.be/stops/201644", "https://data.delijn.be/stops/203777"], ["https://data.delijn.be/stops/303141", "https://data.delijn.be/stops/308604"], ["https://data.delijn.be/stops/403922", "https://data.delijn.be/stops/405940"], ["https://data.delijn.be/stops/204384", "https://data.delijn.be/stops/205385"], ["https://data.delijn.be/stops/208098", "https://data.delijn.be/stops/209004"], ["https://data.delijn.be/stops/102295", "https://data.delijn.be/stops/103762"], ["https://data.delijn.be/stops/501741", "https://data.delijn.be/stops/509507"], ["https://data.delijn.be/stops/304479", "https://data.delijn.be/stops/304482"], ["https://data.delijn.be/stops/404201", "https://data.delijn.be/stops/404218"], ["https://data.delijn.be/stops/102415", "https://data.delijn.be/stops/105570"], ["https://data.delijn.be/stops/102860", "https://data.delijn.be/stops/104565"], ["https://data.delijn.be/stops/401009", "https://data.delijn.be/stops/403800"], ["https://data.delijn.be/stops/401472", "https://data.delijn.be/stops/405232"], ["https://data.delijn.be/stops/302749", "https://data.delijn.be/stops/302764"], ["https://data.delijn.be/stops/103731", "https://data.delijn.be/stops/109896"], ["https://data.delijn.be/stops/101574", "https://data.delijn.be/stops/105469"], ["https://data.delijn.be/stops/406939", "https://data.delijn.be/stops/409492"], ["https://data.delijn.be/stops/401839", "https://data.delijn.be/stops/406020"], ["https://data.delijn.be/stops/505194", "https://data.delijn.be/stops/508151"], ["https://data.delijn.be/stops/407740", "https://data.delijn.be/stops/409625"], ["https://data.delijn.be/stops/109185", "https://data.delijn.be/stops/109878"], ["https://data.delijn.be/stops/400300", "https://data.delijn.be/stops/400306"], ["https://data.delijn.be/stops/501122", "https://data.delijn.be/stops/506121"], ["https://data.delijn.be/stops/507090", "https://data.delijn.be/stops/507148"], ["https://data.delijn.be/stops/406586", "https://data.delijn.be/stops/407167"], ["https://data.delijn.be/stops/405154", "https://data.delijn.be/stops/405257"], ["https://data.delijn.be/stops/305140", "https://data.delijn.be/stops/308090"], ["https://data.delijn.be/stops/105926", "https://data.delijn.be/stops/107271"], ["https://data.delijn.be/stops/408223", "https://data.delijn.be/stops/408280"], ["https://data.delijn.be/stops/301019", "https://data.delijn.be/stops/304255"], ["https://data.delijn.be/stops/207695", "https://data.delijn.be/stops/207715"], ["https://data.delijn.be/stops/203217", "https://data.delijn.be/stops/205092"], ["https://data.delijn.be/stops/104028", "https://data.delijn.be/stops/106528"], ["https://data.delijn.be/stops/107727", "https://data.delijn.be/stops/107728"], ["https://data.delijn.be/stops/200014", "https://data.delijn.be/stops/201508"], ["https://data.delijn.be/stops/403148", "https://data.delijn.be/stops/403318"], ["https://data.delijn.be/stops/105030", "https://data.delijn.be/stops/105780"], ["https://data.delijn.be/stops/209290", "https://data.delijn.be/stops/209295"], ["https://data.delijn.be/stops/508243", "https://data.delijn.be/stops/509792"], ["https://data.delijn.be/stops/204087", "https://data.delijn.be/stops/205086"], ["https://data.delijn.be/stops/404871", "https://data.delijn.be/stops/405546"], ["https://data.delijn.be/stops/505707", "https://data.delijn.be/stops/509227"], ["https://data.delijn.be/stops/103924", "https://data.delijn.be/stops/107248"], ["https://data.delijn.be/stops/306845", "https://data.delijn.be/stops/306850"], ["https://data.delijn.be/stops/503570", "https://data.delijn.be/stops/508566"], ["https://data.delijn.be/stops/400374", "https://data.delijn.be/stops/400437"], ["https://data.delijn.be/stops/300750", "https://data.delijn.be/stops/300833"], ["https://data.delijn.be/stops/504220", "https://data.delijn.be/stops/504221"], ["https://data.delijn.be/stops/107211", "https://data.delijn.be/stops/107212"], ["https://data.delijn.be/stops/403109", "https://data.delijn.be/stops/403187"], ["https://data.delijn.be/stops/300868", "https://data.delijn.be/stops/300869"], ["https://data.delijn.be/stops/101221", "https://data.delijn.be/stops/107824"], ["https://data.delijn.be/stops/300813", "https://data.delijn.be/stops/300875"], ["https://data.delijn.be/stops/407802", "https://data.delijn.be/stops/407849"], ["https://data.delijn.be/stops/501056", "https://data.delijn.be/stops/506505"], ["https://data.delijn.be/stops/404350", "https://data.delijn.be/stops/404359"], ["https://data.delijn.be/stops/103398", "https://data.delijn.be/stops/107408"], ["https://data.delijn.be/stops/503369", "https://data.delijn.be/stops/503429"], ["https://data.delijn.be/stops/200914", "https://data.delijn.be/stops/203090"], ["https://data.delijn.be/stops/202205", "https://data.delijn.be/stops/203206"], ["https://data.delijn.be/stops/408866", "https://data.delijn.be/stops/408867"], ["https://data.delijn.be/stops/307383", "https://data.delijn.be/stops/307384"], ["https://data.delijn.be/stops/108847", "https://data.delijn.be/stops/108859"], ["https://data.delijn.be/stops/302947", "https://data.delijn.be/stops/302948"], ["https://data.delijn.be/stops/103981", "https://data.delijn.be/stops/103982"], ["https://data.delijn.be/stops/302550", "https://data.delijn.be/stops/302555"], ["https://data.delijn.be/stops/106416", "https://data.delijn.be/stops/106417"], ["https://data.delijn.be/stops/503305", "https://data.delijn.be/stops/503311"], ["https://data.delijn.be/stops/300104", "https://data.delijn.be/stops/300111"], ["https://data.delijn.be/stops/404229", "https://data.delijn.be/stops/409601"], ["https://data.delijn.be/stops/501074", "https://data.delijn.be/stops/501076"], ["https://data.delijn.be/stops/302020", "https://data.delijn.be/stops/302055"], ["https://data.delijn.be/stops/501461", "https://data.delijn.be/stops/501541"], ["https://data.delijn.be/stops/103284", "https://data.delijn.be/stops/106130"], ["https://data.delijn.be/stops/204676", "https://data.delijn.be/stops/205314"], ["https://data.delijn.be/stops/503669", "https://data.delijn.be/stops/505135"], ["https://data.delijn.be/stops/200637", "https://data.delijn.be/stops/201940"], ["https://data.delijn.be/stops/408503", "https://data.delijn.be/stops/408511"], ["https://data.delijn.be/stops/206753", "https://data.delijn.be/stops/208500"], ["https://data.delijn.be/stops/503055", "https://data.delijn.be/stops/508053"], ["https://data.delijn.be/stops/407466", "https://data.delijn.be/stops/407467"], ["https://data.delijn.be/stops/208744", "https://data.delijn.be/stops/208745"], ["https://data.delijn.be/stops/200636", "https://data.delijn.be/stops/201941"], ["https://data.delijn.be/stops/200531", "https://data.delijn.be/stops/211079"], ["https://data.delijn.be/stops/505302", "https://data.delijn.be/stops/505303"], ["https://data.delijn.be/stops/307383", "https://data.delijn.be/stops/308274"], ["https://data.delijn.be/stops/504162", "https://data.delijn.be/stops/509162"], ["https://data.delijn.be/stops/104039", "https://data.delijn.be/stops/108453"], ["https://data.delijn.be/stops/105329", "https://data.delijn.be/stops/204024"], ["https://data.delijn.be/stops/300365", "https://data.delijn.be/stops/300370"], ["https://data.delijn.be/stops/300634", "https://data.delijn.be/stops/308457"], ["https://data.delijn.be/stops/201184", "https://data.delijn.be/stops/201240"], ["https://data.delijn.be/stops/409356", "https://data.delijn.be/stops/409361"], ["https://data.delijn.be/stops/400562", "https://data.delijn.be/stops/400563"], ["https://data.delijn.be/stops/502706", "https://data.delijn.be/stops/507706"], ["https://data.delijn.be/stops/102931", "https://data.delijn.be/stops/105775"], ["https://data.delijn.be/stops/401482", "https://data.delijn.be/stops/402030"], ["https://data.delijn.be/stops/204745", "https://data.delijn.be/stops/205424"], ["https://data.delijn.be/stops/101446", "https://data.delijn.be/stops/107059"], ["https://data.delijn.be/stops/308244", "https://data.delijn.be/stops/308248"], ["https://data.delijn.be/stops/201271", "https://data.delijn.be/stops/201372"], ["https://data.delijn.be/stops/407656", "https://data.delijn.be/stops/407735"], ["https://data.delijn.be/stops/201681", "https://data.delijn.be/stops/203809"], ["https://data.delijn.be/stops/202848", "https://data.delijn.be/stops/218001"], ["https://data.delijn.be/stops/502056", "https://data.delijn.be/stops/502914"], ["https://data.delijn.be/stops/300741", "https://data.delijn.be/stops/300785"], ["https://data.delijn.be/stops/405904", "https://data.delijn.be/stops/405928"], ["https://data.delijn.be/stops/206137", "https://data.delijn.be/stops/206471"], ["https://data.delijn.be/stops/204925", "https://data.delijn.be/stops/205925"], ["https://data.delijn.be/stops/209979", "https://data.delijn.be/stops/215003"], ["https://data.delijn.be/stops/104854", "https://data.delijn.be/stops/107907"], ["https://data.delijn.be/stops/203717", "https://data.delijn.be/stops/210434"], ["https://data.delijn.be/stops/503450", "https://data.delijn.be/stops/508450"], ["https://data.delijn.be/stops/400814", "https://data.delijn.be/stops/403573"], ["https://data.delijn.be/stops/301313", "https://data.delijn.be/stops/301912"], ["https://data.delijn.be/stops/505719", "https://data.delijn.be/stops/508490"], ["https://data.delijn.be/stops/400601", "https://data.delijn.be/stops/400629"], ["https://data.delijn.be/stops/303081", "https://data.delijn.be/stops/303112"], ["https://data.delijn.be/stops/501307", "https://data.delijn.be/stops/501520"], ["https://data.delijn.be/stops/208525", "https://data.delijn.be/stops/218017"], ["https://data.delijn.be/stops/505286", "https://data.delijn.be/stops/508328"], ["https://data.delijn.be/stops/308489", "https://data.delijn.be/stops/308521"], ["https://data.delijn.be/stops/307081", "https://data.delijn.be/stops/307529"], ["https://data.delijn.be/stops/504031", "https://data.delijn.be/stops/509030"], ["https://data.delijn.be/stops/302228", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/207148", "https://data.delijn.be/stops/207149"], ["https://data.delijn.be/stops/108460", "https://data.delijn.be/stops/108955"], ["https://data.delijn.be/stops/502292", "https://data.delijn.be/stops/507298"], ["https://data.delijn.be/stops/407910", "https://data.delijn.be/stops/407986"], ["https://data.delijn.be/stops/200023", "https://data.delijn.be/stops/211094"], ["https://data.delijn.be/stops/206301", "https://data.delijn.be/stops/207354"], ["https://data.delijn.be/stops/405234", "https://data.delijn.be/stops/405235"], ["https://data.delijn.be/stops/101083", "https://data.delijn.be/stops/101084"], ["https://data.delijn.be/stops/208044", "https://data.delijn.be/stops/209044"], ["https://data.delijn.be/stops/104482", "https://data.delijn.be/stops/307898"], ["https://data.delijn.be/stops/101160", "https://data.delijn.be/stops/101545"], ["https://data.delijn.be/stops/503503", "https://data.delijn.be/stops/508501"], ["https://data.delijn.be/stops/101825", "https://data.delijn.be/stops/104285"], ["https://data.delijn.be/stops/202030", "https://data.delijn.be/stops/202031"], ["https://data.delijn.be/stops/204316", "https://data.delijn.be/stops/204678"], ["https://data.delijn.be/stops/106800", "https://data.delijn.be/stops/106868"], ["https://data.delijn.be/stops/106227", "https://data.delijn.be/stops/106228"], ["https://data.delijn.be/stops/509545", "https://data.delijn.be/stops/509551"], ["https://data.delijn.be/stops/203196", "https://data.delijn.be/stops/203199"], ["https://data.delijn.be/stops/202413", "https://data.delijn.be/stops/202414"], ["https://data.delijn.be/stops/305456", "https://data.delijn.be/stops/306637"], ["https://data.delijn.be/stops/303587", "https://data.delijn.be/stops/303590"], ["https://data.delijn.be/stops/504948", "https://data.delijn.be/stops/508699"], ["https://data.delijn.be/stops/402895", "https://data.delijn.be/stops/302614"], ["https://data.delijn.be/stops/401766", "https://data.delijn.be/stops/401826"], ["https://data.delijn.be/stops/402524", "https://data.delijn.be/stops/402600"], ["https://data.delijn.be/stops/102469", "https://data.delijn.be/stops/406848"], ["https://data.delijn.be/stops/403619", "https://data.delijn.be/stops/403648"], ["https://data.delijn.be/stops/102187", "https://data.delijn.be/stops/505600"], ["https://data.delijn.be/stops/400352", "https://data.delijn.be/stops/400387"], ["https://data.delijn.be/stops/103212", "https://data.delijn.be/stops/106285"], ["https://data.delijn.be/stops/401794", "https://data.delijn.be/stops/401847"], ["https://data.delijn.be/stops/107232", "https://data.delijn.be/stops/109887"], ["https://data.delijn.be/stops/303949", "https://data.delijn.be/stops/304177"], ["https://data.delijn.be/stops/101024", "https://data.delijn.be/stops/101991"], ["https://data.delijn.be/stops/208800", "https://data.delijn.be/stops/208838"], ["https://data.delijn.be/stops/401106", "https://data.delijn.be/stops/401158"], ["https://data.delijn.be/stops/109459", "https://data.delijn.be/stops/109460"], ["https://data.delijn.be/stops/109843", "https://data.delijn.be/stops/109845"], ["https://data.delijn.be/stops/209111", "https://data.delijn.be/stops/219009"], ["https://data.delijn.be/stops/106607", "https://data.delijn.be/stops/109649"], ["https://data.delijn.be/stops/201539", "https://data.delijn.be/stops/201540"], ["https://data.delijn.be/stops/402496", "https://data.delijn.be/stops/402497"], ["https://data.delijn.be/stops/103040", "https://data.delijn.be/stops/106050"], ["https://data.delijn.be/stops/305116", "https://data.delijn.be/stops/305126"], ["https://data.delijn.be/stops/409437", "https://data.delijn.be/stops/409698"], ["https://data.delijn.be/stops/406220", "https://data.delijn.be/stops/406238"], ["https://data.delijn.be/stops/304760", "https://data.delijn.be/stops/304778"], ["https://data.delijn.be/stops/303856", "https://data.delijn.be/stops/303866"], ["https://data.delijn.be/stops/503302", "https://data.delijn.be/stops/503309"], ["https://data.delijn.be/stops/101484", "https://data.delijn.be/stops/108746"], ["https://data.delijn.be/stops/102090", "https://data.delijn.be/stops/105285"], ["https://data.delijn.be/stops/305054", "https://data.delijn.be/stops/305179"], ["https://data.delijn.be/stops/404443", "https://data.delijn.be/stops/405846"], ["https://data.delijn.be/stops/407613", "https://data.delijn.be/stops/407645"], ["https://data.delijn.be/stops/101173", "https://data.delijn.be/stops/103510"], ["https://data.delijn.be/stops/300208", "https://data.delijn.be/stops/307112"], ["https://data.delijn.be/stops/204207", "https://data.delijn.be/stops/205472"], ["https://data.delijn.be/stops/402526", "https://data.delijn.be/stops/404064"], ["https://data.delijn.be/stops/502370", "https://data.delijn.be/stops/507370"], ["https://data.delijn.be/stops/304500", "https://data.delijn.be/stops/307255"], ["https://data.delijn.be/stops/210011", "https://data.delijn.be/stops/502276"], ["https://data.delijn.be/stops/300774", "https://data.delijn.be/stops/300787"], ["https://data.delijn.be/stops/103238", "https://data.delijn.be/stops/107856"], ["https://data.delijn.be/stops/204318", "https://data.delijn.be/stops/205318"], ["https://data.delijn.be/stops/203831", "https://data.delijn.be/stops/211048"], ["https://data.delijn.be/stops/406956", "https://data.delijn.be/stops/406966"], ["https://data.delijn.be/stops/101235", "https://data.delijn.be/stops/102733"], ["https://data.delijn.be/stops/206735", "https://data.delijn.be/stops/207617"], ["https://data.delijn.be/stops/405715", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/403125", "https://data.delijn.be/stops/403126"], ["https://data.delijn.be/stops/504792", "https://data.delijn.be/stops/508153"], ["https://data.delijn.be/stops/200007", "https://data.delijn.be/stops/203297"], ["https://data.delijn.be/stops/403736", "https://data.delijn.be/stops/403737"], ["https://data.delijn.be/stops/504678", "https://data.delijn.be/stops/504679"], ["https://data.delijn.be/stops/301496", "https://data.delijn.be/stops/301497"], ["https://data.delijn.be/stops/404861", "https://data.delijn.be/stops/404865"], ["https://data.delijn.be/stops/303644", "https://data.delijn.be/stops/303645"], ["https://data.delijn.be/stops/301239", "https://data.delijn.be/stops/308759"], ["https://data.delijn.be/stops/507105", "https://data.delijn.be/stops/507604"], ["https://data.delijn.be/stops/402133", "https://data.delijn.be/stops/402142"], ["https://data.delijn.be/stops/200371", "https://data.delijn.be/stops/200372"], ["https://data.delijn.be/stops/102679", "https://data.delijn.be/stops/308817"], ["https://data.delijn.be/stops/303643", "https://data.delijn.be/stops/304521"], ["https://data.delijn.be/stops/101885", "https://data.delijn.be/stops/104825"], ["https://data.delijn.be/stops/203136", "https://data.delijn.be/stops/203450"], ["https://data.delijn.be/stops/301097", "https://data.delijn.be/stops/306667"], ["https://data.delijn.be/stops/204664", "https://data.delijn.be/stops/204688"], ["https://data.delijn.be/stops/103167", "https://data.delijn.be/stops/104093"], ["https://data.delijn.be/stops/505382", "https://data.delijn.be/stops/508101"], ["https://data.delijn.be/stops/200208", "https://data.delijn.be/stops/201943"], ["https://data.delijn.be/stops/204448", "https://data.delijn.be/stops/205310"], ["https://data.delijn.be/stops/504367", "https://data.delijn.be/stops/509372"], ["https://data.delijn.be/stops/206201", "https://data.delijn.be/stops/206368"], ["https://data.delijn.be/stops/202886", "https://data.delijn.be/stops/206998"], ["https://data.delijn.be/stops/302331", "https://data.delijn.be/stops/302333"], ["https://data.delijn.be/stops/101506", "https://data.delijn.be/stops/101509"], ["https://data.delijn.be/stops/201387", "https://data.delijn.be/stops/202647"], ["https://data.delijn.be/stops/502490", "https://data.delijn.be/stops/507490"], ["https://data.delijn.be/stops/106750", "https://data.delijn.be/stops/106752"], ["https://data.delijn.be/stops/502306", "https://data.delijn.be/stops/507316"], ["https://data.delijn.be/stops/102851", "https://data.delijn.be/stops/106777"], ["https://data.delijn.be/stops/501319", "https://data.delijn.be/stops/501523"], ["https://data.delijn.be/stops/306667", "https://data.delijn.be/stops/306680"], ["https://data.delijn.be/stops/406168", "https://data.delijn.be/stops/406169"], ["https://data.delijn.be/stops/504173", "https://data.delijn.be/stops/509173"], ["https://data.delijn.be/stops/103991", "https://data.delijn.be/stops/103992"], ["https://data.delijn.be/stops/509572", "https://data.delijn.be/stops/509574"], ["https://data.delijn.be/stops/303533", "https://data.delijn.be/stops/303568"], ["https://data.delijn.be/stops/206001", "https://data.delijn.be/stops/206523"], ["https://data.delijn.be/stops/505024", "https://data.delijn.be/stops/507010"], ["https://data.delijn.be/stops/400218", "https://data.delijn.be/stops/400221"], ["https://data.delijn.be/stops/104858", "https://data.delijn.be/stops/107931"], ["https://data.delijn.be/stops/406882", "https://data.delijn.be/stops/409739"], ["https://data.delijn.be/stops/209560", "https://data.delijn.be/stops/209691"], ["https://data.delijn.be/stops/407556", "https://data.delijn.be/stops/407557"], ["https://data.delijn.be/stops/209955", "https://data.delijn.be/stops/209970"], ["https://data.delijn.be/stops/202546", "https://data.delijn.be/stops/203545"], ["https://data.delijn.be/stops/206130", "https://data.delijn.be/stops/206140"], ["https://data.delijn.be/stops/208089", "https://data.delijn.be/stops/209089"], ["https://data.delijn.be/stops/306591", "https://data.delijn.be/stops/308442"], ["https://data.delijn.be/stops/301635", "https://data.delijn.be/stops/301636"], ["https://data.delijn.be/stops/302013", "https://data.delijn.be/stops/307285"], ["https://data.delijn.be/stops/303713", "https://data.delijn.be/stops/307259"], ["https://data.delijn.be/stops/107925", "https://data.delijn.be/stops/108835"], ["https://data.delijn.be/stops/109848", "https://data.delijn.be/stops/109853"], ["https://data.delijn.be/stops/107882", "https://data.delijn.be/stops/107883"], ["https://data.delijn.be/stops/208235", "https://data.delijn.be/stops/208236"], ["https://data.delijn.be/stops/204303", "https://data.delijn.be/stops/205312"], ["https://data.delijn.be/stops/305698", "https://data.delijn.be/stops/306308"], ["https://data.delijn.be/stops/303773", "https://data.delijn.be/stops/303806"], ["https://data.delijn.be/stops/204128", "https://data.delijn.be/stops/205132"], ["https://data.delijn.be/stops/504767", "https://data.delijn.be/stops/508527"], ["https://data.delijn.be/stops/400810", "https://data.delijn.be/stops/403586"], ["https://data.delijn.be/stops/401777", "https://data.delijn.be/stops/401836"], ["https://data.delijn.be/stops/308673", "https://data.delijn.be/stops/308675"], ["https://data.delijn.be/stops/303460", "https://data.delijn.be/stops/303485"], ["https://data.delijn.be/stops/507447", "https://data.delijn.be/stops/507661"], ["https://data.delijn.be/stops/304153", "https://data.delijn.be/stops/306067"], ["https://data.delijn.be/stops/402493", "https://data.delijn.be/stops/406884"], ["https://data.delijn.be/stops/107618", "https://data.delijn.be/stops/108094"], ["https://data.delijn.be/stops/409095", "https://data.delijn.be/stops/409221"], ["https://data.delijn.be/stops/209101", "https://data.delijn.be/stops/218005"], ["https://data.delijn.be/stops/205737", "https://data.delijn.be/stops/205757"], ["https://data.delijn.be/stops/107594", "https://data.delijn.be/stops/107596"], ["https://data.delijn.be/stops/202738", "https://data.delijn.be/stops/203739"], ["https://data.delijn.be/stops/503874", "https://data.delijn.be/stops/508874"], ["https://data.delijn.be/stops/507952", "https://data.delijn.be/stops/508848"], ["https://data.delijn.be/stops/307416", "https://data.delijn.be/stops/307417"], ["https://data.delijn.be/stops/204660", "https://data.delijn.be/stops/205661"], ["https://data.delijn.be/stops/408694", "https://data.delijn.be/stops/408697"], ["https://data.delijn.be/stops/202209", "https://data.delijn.be/stops/203211"], ["https://data.delijn.be/stops/204294", "https://data.delijn.be/stops/204327"], ["https://data.delijn.be/stops/304889", "https://data.delijn.be/stops/306710"], ["https://data.delijn.be/stops/407399", "https://data.delijn.be/stops/409861"], ["https://data.delijn.be/stops/405968", "https://data.delijn.be/stops/410256"], ["https://data.delijn.be/stops/401402", "https://data.delijn.be/stops/410153"], ["https://data.delijn.be/stops/200668", "https://data.delijn.be/stops/211019"], ["https://data.delijn.be/stops/407800", "https://data.delijn.be/stops/407806"], ["https://data.delijn.be/stops/400676", "https://data.delijn.be/stops/402628"], ["https://data.delijn.be/stops/204332", "https://data.delijn.be/stops/205817"], ["https://data.delijn.be/stops/401131", "https://data.delijn.be/stops/401134"], ["https://data.delijn.be/stops/106623", "https://data.delijn.be/stops/108017"], ["https://data.delijn.be/stops/205399", "https://data.delijn.be/stops/205411"], ["https://data.delijn.be/stops/502929", "https://data.delijn.be/stops/503730"], ["https://data.delijn.be/stops/400091", "https://data.delijn.be/stops/409207"], ["https://data.delijn.be/stops/305712", "https://data.delijn.be/stops/306303"], ["https://data.delijn.be/stops/504524", "https://data.delijn.be/stops/509524"], ["https://data.delijn.be/stops/107459", "https://data.delijn.be/stops/109193"], ["https://data.delijn.be/stops/103684", "https://data.delijn.be/stops/106315"], ["https://data.delijn.be/stops/206575", "https://data.delijn.be/stops/207575"], ["https://data.delijn.be/stops/503068", "https://data.delijn.be/stops/503238"], ["https://data.delijn.be/stops/502748", "https://data.delijn.be/stops/505694"], ["https://data.delijn.be/stops/505543", "https://data.delijn.be/stops/508809"], ["https://data.delijn.be/stops/202869", "https://data.delijn.be/stops/203869"], ["https://data.delijn.be/stops/404880", "https://data.delijn.be/stops/404882"], ["https://data.delijn.be/stops/406510", "https://data.delijn.be/stops/406511"], ["https://data.delijn.be/stops/202212", "https://data.delijn.be/stops/202775"], ["https://data.delijn.be/stops/407020", "https://data.delijn.be/stops/308741"], ["https://data.delijn.be/stops/103590", "https://data.delijn.be/stops/109427"], ["https://data.delijn.be/stops/503547", "https://data.delijn.be/stops/503572"], ["https://data.delijn.be/stops/503089", "https://data.delijn.be/stops/507620"], ["https://data.delijn.be/stops/306312", "https://data.delijn.be/stops/306313"], ["https://data.delijn.be/stops/201516", "https://data.delijn.be/stops/209737"], ["https://data.delijn.be/stops/101191", "https://data.delijn.be/stops/101206"], ["https://data.delijn.be/stops/204684", "https://data.delijn.be/stops/205683"], ["https://data.delijn.be/stops/102053", "https://data.delijn.be/stops/102412"], ["https://data.delijn.be/stops/503651", "https://data.delijn.be/stops/508116"], ["https://data.delijn.be/stops/109018", "https://data.delijn.be/stops/109019"], ["https://data.delijn.be/stops/201803", "https://data.delijn.be/stops/201819"], ["https://data.delijn.be/stops/409801", "https://data.delijn.be/stops/410193"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/103573"], ["https://data.delijn.be/stops/303663", "https://data.delijn.be/stops/304946"], ["https://data.delijn.be/stops/404366", "https://data.delijn.be/stops/404367"], ["https://data.delijn.be/stops/300234", "https://data.delijn.be/stops/306655"], ["https://data.delijn.be/stops/306905", "https://data.delijn.be/stops/306906"], ["https://data.delijn.be/stops/404222", "https://data.delijn.be/stops/404242"], ["https://data.delijn.be/stops/506086", "https://data.delijn.be/stops/506439"], ["https://data.delijn.be/stops/202508", "https://data.delijn.be/stops/203001"], ["https://data.delijn.be/stops/107502", "https://data.delijn.be/stops/107528"], ["https://data.delijn.be/stops/405714", "https://data.delijn.be/stops/405715"], ["https://data.delijn.be/stops/102388", "https://data.delijn.be/stops/109918"], ["https://data.delijn.be/stops/307387", "https://data.delijn.be/stops/307390"], ["https://data.delijn.be/stops/404768", "https://data.delijn.be/stops/404769"], ["https://data.delijn.be/stops/300191", "https://data.delijn.be/stops/300632"], ["https://data.delijn.be/stops/101273", "https://data.delijn.be/stops/102006"], ["https://data.delijn.be/stops/501134", "https://data.delijn.be/stops/506102"], ["https://data.delijn.be/stops/103968", "https://data.delijn.be/stops/106017"], ["https://data.delijn.be/stops/207435", "https://data.delijn.be/stops/209689"], ["https://data.delijn.be/stops/101240", "https://data.delijn.be/stops/103973"], ["https://data.delijn.be/stops/106801", "https://data.delijn.be/stops/106871"], ["https://data.delijn.be/stops/300120", "https://data.delijn.be/stops/300131"], ["https://data.delijn.be/stops/503893", "https://data.delijn.be/stops/505641"], ["https://data.delijn.be/stops/504420", "https://data.delijn.be/stops/504421"], ["https://data.delijn.be/stops/106608", "https://data.delijn.be/stops/106609"], ["https://data.delijn.be/stops/404236", "https://data.delijn.be/stops/404247"], ["https://data.delijn.be/stops/204656", "https://data.delijn.be/stops/205671"], ["https://data.delijn.be/stops/102457", "https://data.delijn.be/stops/406848"], ["https://data.delijn.be/stops/508228", "https://data.delijn.be/stops/508229"], ["https://data.delijn.be/stops/302131", "https://data.delijn.be/stops/307799"], ["https://data.delijn.be/stops/301110", "https://data.delijn.be/stops/307635"], ["https://data.delijn.be/stops/203623", "https://data.delijn.be/stops/203624"], ["https://data.delijn.be/stops/200830", "https://data.delijn.be/stops/200831"], ["https://data.delijn.be/stops/103627", "https://data.delijn.be/stops/103648"], ["https://data.delijn.be/stops/302906", "https://data.delijn.be/stops/304328"], ["https://data.delijn.be/stops/302253", "https://data.delijn.be/stops/302267"], ["https://data.delijn.be/stops/409220", "https://data.delijn.be/stops/409221"], ["https://data.delijn.be/stops/101551", "https://data.delijn.be/stops/101552"], ["https://data.delijn.be/stops/104517", "https://data.delijn.be/stops/104583"], ["https://data.delijn.be/stops/104042", "https://data.delijn.be/stops/109702"], ["https://data.delijn.be/stops/200776", "https://data.delijn.be/stops/208303"], ["https://data.delijn.be/stops/102867", "https://data.delijn.be/stops/106154"], ["https://data.delijn.be/stops/205736", "https://data.delijn.be/stops/205757"], ["https://data.delijn.be/stops/406940", "https://data.delijn.be/stops/409476"], ["https://data.delijn.be/stops/206726", "https://data.delijn.be/stops/307028"], ["https://data.delijn.be/stops/200180", "https://data.delijn.be/stops/201195"], ["https://data.delijn.be/stops/208203", "https://data.delijn.be/stops/209779"], ["https://data.delijn.be/stops/403274", "https://data.delijn.be/stops/403275"], ["https://data.delijn.be/stops/302218", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/503239", "https://data.delijn.be/stops/508262"], ["https://data.delijn.be/stops/206587", "https://data.delijn.be/stops/206840"], ["https://data.delijn.be/stops/406009", "https://data.delijn.be/stops/406815"], ["https://data.delijn.be/stops/304050", "https://data.delijn.be/stops/304085"], ["https://data.delijn.be/stops/409052", "https://data.delijn.be/stops/409157"], ["https://data.delijn.be/stops/308164", "https://data.delijn.be/stops/308227"], ["https://data.delijn.be/stops/107396", "https://data.delijn.be/stops/107398"], ["https://data.delijn.be/stops/105054", "https://data.delijn.be/stops/304040"], ["https://data.delijn.be/stops/501005", "https://data.delijn.be/stops/506496"], ["https://data.delijn.be/stops/404584", "https://data.delijn.be/stops/404585"], ["https://data.delijn.be/stops/104491", "https://data.delijn.be/stops/104585"], ["https://data.delijn.be/stops/202469", "https://data.delijn.be/stops/203469"], ["https://data.delijn.be/stops/103186", "https://data.delijn.be/stops/108570"], ["https://data.delijn.be/stops/201506", "https://data.delijn.be/stops/201552"], ["https://data.delijn.be/stops/403831", "https://data.delijn.be/stops/410118"], ["https://data.delijn.be/stops/502166", "https://data.delijn.be/stops/507153"], ["https://data.delijn.be/stops/203481", "https://data.delijn.be/stops/207933"], ["https://data.delijn.be/stops/403055", "https://data.delijn.be/stops/410247"], ["https://data.delijn.be/stops/207668", "https://data.delijn.be/stops/217004"], ["https://data.delijn.be/stops/301535", "https://data.delijn.be/stops/304701"], ["https://data.delijn.be/stops/102756", "https://data.delijn.be/stops/103342"], ["https://data.delijn.be/stops/106251", "https://data.delijn.be/stops/106604"], ["https://data.delijn.be/stops/206539", "https://data.delijn.be/stops/207559"], ["https://data.delijn.be/stops/404440", "https://data.delijn.be/stops/404467"], ["https://data.delijn.be/stops/201979", "https://data.delijn.be/stops/208090"], ["https://data.delijn.be/stops/206706", "https://data.delijn.be/stops/206975"], ["https://data.delijn.be/stops/202739", "https://data.delijn.be/stops/206537"], ["https://data.delijn.be/stops/204986", "https://data.delijn.be/stops/209392"], ["https://data.delijn.be/stops/203861", "https://data.delijn.be/stops/208701"], ["https://data.delijn.be/stops/502550", "https://data.delijn.be/stops/507674"], ["https://data.delijn.be/stops/105367", "https://data.delijn.be/stops/105392"], ["https://data.delijn.be/stops/109136", "https://data.delijn.be/stops/109137"], ["https://data.delijn.be/stops/400115", "https://data.delijn.be/stops/407375"], ["https://data.delijn.be/stops/408560", "https://data.delijn.be/stops/408619"], ["https://data.delijn.be/stops/306870", "https://data.delijn.be/stops/307070"], ["https://data.delijn.be/stops/301553", "https://data.delijn.be/stops/308087"], ["https://data.delijn.be/stops/303134", "https://data.delijn.be/stops/306086"], ["https://data.delijn.be/stops/502307", "https://data.delijn.be/stops/505673"], ["https://data.delijn.be/stops/405863", "https://data.delijn.be/stops/408154"], ["https://data.delijn.be/stops/202380", "https://data.delijn.be/stops/203379"], ["https://data.delijn.be/stops/301555", "https://data.delijn.be/stops/301579"], ["https://data.delijn.be/stops/405734", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/403159", "https://data.delijn.be/stops/403211"], ["https://data.delijn.be/stops/103049", "https://data.delijn.be/stops/103535"], ["https://data.delijn.be/stops/503340", "https://data.delijn.be/stops/508343"], ["https://data.delijn.be/stops/101674", "https://data.delijn.be/stops/103156"], ["https://data.delijn.be/stops/502564", "https://data.delijn.be/stops/507361"], ["https://data.delijn.be/stops/306694", "https://data.delijn.be/stops/308925"], ["https://data.delijn.be/stops/400106", "https://data.delijn.be/stops/409144"], ["https://data.delijn.be/stops/206256", "https://data.delijn.be/stops/207996"], ["https://data.delijn.be/stops/104950", "https://data.delijn.be/stops/104955"], ["https://data.delijn.be/stops/504145", "https://data.delijn.be/stops/509386"], ["https://data.delijn.be/stops/503842", "https://data.delijn.be/stops/508857"], ["https://data.delijn.be/stops/408568", "https://data.delijn.be/stops/408570"], ["https://data.delijn.be/stops/503423", "https://data.delijn.be/stops/508416"], ["https://data.delijn.be/stops/305101", "https://data.delijn.be/stops/305110"], ["https://data.delijn.be/stops/502224", "https://data.delijn.be/stops/502563"], ["https://data.delijn.be/stops/302548", "https://data.delijn.be/stops/306589"], ["https://data.delijn.be/stops/405895", "https://data.delijn.be/stops/308203"], ["https://data.delijn.be/stops/202570", "https://data.delijn.be/stops/204942"], ["https://data.delijn.be/stops/206275", "https://data.delijn.be/stops/207968"], ["https://data.delijn.be/stops/507423", "https://data.delijn.be/stops/507427"], ["https://data.delijn.be/stops/202452", "https://data.delijn.be/stops/203452"], ["https://data.delijn.be/stops/304809", "https://data.delijn.be/stops/304810"], ["https://data.delijn.be/stops/202327", "https://data.delijn.be/stops/202426"], ["https://data.delijn.be/stops/407858", "https://data.delijn.be/stops/408023"], ["https://data.delijn.be/stops/502359", "https://data.delijn.be/stops/502679"], ["https://data.delijn.be/stops/403396", "https://data.delijn.be/stops/403561"], ["https://data.delijn.be/stops/301085", "https://data.delijn.be/stops/306159"], ["https://data.delijn.be/stops/206763", "https://data.delijn.be/stops/206792"], ["https://data.delijn.be/stops/108373", "https://data.delijn.be/stops/108376"], ["https://data.delijn.be/stops/501423", "https://data.delijn.be/stops/501425"], ["https://data.delijn.be/stops/509175", "https://data.delijn.be/stops/509475"], ["https://data.delijn.be/stops/204109", "https://data.delijn.be/stops/204116"], ["https://data.delijn.be/stops/101331", "https://data.delijn.be/stops/106631"], ["https://data.delijn.be/stops/400238", "https://data.delijn.be/stops/409356"], ["https://data.delijn.be/stops/108074", "https://data.delijn.be/stops/108446"], ["https://data.delijn.be/stops/109316", "https://data.delijn.be/stops/109352"], ["https://data.delijn.be/stops/201979", "https://data.delijn.be/stops/209846"], ["https://data.delijn.be/stops/308102", "https://data.delijn.be/stops/308103"], ["https://data.delijn.be/stops/201900", "https://data.delijn.be/stops/211001"], ["https://data.delijn.be/stops/509464", "https://data.delijn.be/stops/509465"], ["https://data.delijn.be/stops/109201", "https://data.delijn.be/stops/109203"], ["https://data.delijn.be/stops/206014", "https://data.delijn.be/stops/207020"], ["https://data.delijn.be/stops/303620", "https://data.delijn.be/stops/306705"], ["https://data.delijn.be/stops/106484", "https://data.delijn.be/stops/106486"], ["https://data.delijn.be/stops/203116", "https://data.delijn.be/stops/205593"], ["https://data.delijn.be/stops/107444", "https://data.delijn.be/stops/109645"], ["https://data.delijn.be/stops/302282", "https://data.delijn.be/stops/302286"], ["https://data.delijn.be/stops/504238", "https://data.delijn.be/stops/509822"], ["https://data.delijn.be/stops/403947", "https://data.delijn.be/stops/407056"], ["https://data.delijn.be/stops/502526", "https://data.delijn.be/stops/507551"], ["https://data.delijn.be/stops/207677", "https://data.delijn.be/stops/209133"], ["https://data.delijn.be/stops/503071", "https://data.delijn.be/stops/508167"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/214018"], ["https://data.delijn.be/stops/102618", "https://data.delijn.be/stops/102619"], ["https://data.delijn.be/stops/204821", "https://data.delijn.be/stops/205506"], ["https://data.delijn.be/stops/307807", "https://data.delijn.be/stops/307808"], ["https://data.delijn.be/stops/501086", "https://data.delijn.be/stops/506086"], ["https://data.delijn.be/stops/101396", "https://data.delijn.be/stops/106518"], ["https://data.delijn.be/stops/105014", "https://data.delijn.be/stops/105112"], ["https://data.delijn.be/stops/101171", "https://data.delijn.be/stops/101172"], ["https://data.delijn.be/stops/301526", "https://data.delijn.be/stops/301527"], ["https://data.delijn.be/stops/402042", "https://data.delijn.be/stops/410079"], ["https://data.delijn.be/stops/505958", "https://data.delijn.be/stops/508287"], ["https://data.delijn.be/stops/105638", "https://data.delijn.be/stops/105817"], ["https://data.delijn.be/stops/204302", "https://data.delijn.be/stops/205303"], ["https://data.delijn.be/stops/304098", "https://data.delijn.be/stops/304099"], ["https://data.delijn.be/stops/108363", "https://data.delijn.be/stops/108364"], ["https://data.delijn.be/stops/509396", "https://data.delijn.be/stops/509397"], ["https://data.delijn.be/stops/204041", "https://data.delijn.be/stops/204042"], ["https://data.delijn.be/stops/408263", "https://data.delijn.be/stops/408283"], ["https://data.delijn.be/stops/300768", "https://data.delijn.be/stops/306115"], ["https://data.delijn.be/stops/207545", "https://data.delijn.be/stops/207550"], ["https://data.delijn.be/stops/101836", "https://data.delijn.be/stops/108234"], ["https://data.delijn.be/stops/505781", "https://data.delijn.be/stops/506146"], ["https://data.delijn.be/stops/408338", "https://data.delijn.be/stops/408382"], ["https://data.delijn.be/stops/502183", "https://data.delijn.be/stops/502187"], ["https://data.delijn.be/stops/504571", "https://data.delijn.be/stops/509413"], ["https://data.delijn.be/stops/200712", "https://data.delijn.be/stops/215018"], ["https://data.delijn.be/stops/107593", "https://data.delijn.be/stops/107664"], ["https://data.delijn.be/stops/506036", "https://data.delijn.be/stops/506058"], ["https://data.delijn.be/stops/302336", "https://data.delijn.be/stops/302337"], ["https://data.delijn.be/stops/501395", "https://data.delijn.be/stops/501512"], ["https://data.delijn.be/stops/403654", "https://data.delijn.be/stops/407345"], ["https://data.delijn.be/stops/101927", "https://data.delijn.be/stops/107007"], ["https://data.delijn.be/stops/402546", "https://data.delijn.be/stops/402551"], ["https://data.delijn.be/stops/503895", "https://data.delijn.be/stops/505980"], ["https://data.delijn.be/stops/504471", "https://data.delijn.be/stops/509107"], ["https://data.delijn.be/stops/302085", "https://data.delijn.be/stops/302087"], ["https://data.delijn.be/stops/202308", "https://data.delijn.be/stops/202309"], ["https://data.delijn.be/stops/401089", "https://data.delijn.be/stops/401153"], ["https://data.delijn.be/stops/400082", "https://data.delijn.be/stops/400119"], ["https://data.delijn.be/stops/404503", "https://data.delijn.be/stops/404584"], ["https://data.delijn.be/stops/404741", "https://data.delijn.be/stops/404751"], ["https://data.delijn.be/stops/108283", "https://data.delijn.be/stops/109342"], ["https://data.delijn.be/stops/509173", "https://data.delijn.be/stops/509741"], ["https://data.delijn.be/stops/103249", "https://data.delijn.be/stops/107335"], ["https://data.delijn.be/stops/108070", "https://data.delijn.be/stops/108160"], ["https://data.delijn.be/stops/101531", "https://data.delijn.be/stops/102587"], ["https://data.delijn.be/stops/302736", "https://data.delijn.be/stops/307456"], ["https://data.delijn.be/stops/103014", "https://data.delijn.be/stops/108314"], ["https://data.delijn.be/stops/303613", "https://data.delijn.be/stops/304697"], ["https://data.delijn.be/stops/508534", "https://data.delijn.be/stops/508966"], ["https://data.delijn.be/stops/202678", "https://data.delijn.be/stops/203690"], ["https://data.delijn.be/stops/301296", "https://data.delijn.be/stops/304692"], ["https://data.delijn.be/stops/102579", "https://data.delijn.be/stops/102583"], ["https://data.delijn.be/stops/501217", "https://data.delijn.be/stops/501218"], ["https://data.delijn.be/stops/108107", "https://data.delijn.be/stops/108108"], ["https://data.delijn.be/stops/102323", "https://data.delijn.be/stops/505600"], ["https://data.delijn.be/stops/401635", "https://data.delijn.be/stops/308209"], ["https://data.delijn.be/stops/204020", "https://data.delijn.be/stops/205023"], ["https://data.delijn.be/stops/107314", "https://data.delijn.be/stops/108809"], ["https://data.delijn.be/stops/104958", "https://data.delijn.be/stops/108969"], ["https://data.delijn.be/stops/206771", "https://data.delijn.be/stops/208543"], ["https://data.delijn.be/stops/102821", "https://data.delijn.be/stops/102822"], ["https://data.delijn.be/stops/504522", "https://data.delijn.be/stops/505372"], ["https://data.delijn.be/stops/405128", "https://data.delijn.be/stops/405129"], ["https://data.delijn.be/stops/308854", "https://data.delijn.be/stops/308856"], ["https://data.delijn.be/stops/308462", "https://data.delijn.be/stops/308467"], ["https://data.delijn.be/stops/400045", "https://data.delijn.be/stops/400320"], ["https://data.delijn.be/stops/400374", "https://data.delijn.be/stops/408809"], ["https://data.delijn.be/stops/505173", "https://data.delijn.be/stops/505413"], ["https://data.delijn.be/stops/407862", "https://data.delijn.be/stops/407865"], ["https://data.delijn.be/stops/501264", "https://data.delijn.be/stops/501359"], ["https://data.delijn.be/stops/501687", "https://data.delijn.be/stops/506614"], ["https://data.delijn.be/stops/304952", "https://data.delijn.be/stops/308028"], ["https://data.delijn.be/stops/300398", "https://data.delijn.be/stops/300412"], ["https://data.delijn.be/stops/503434", "https://data.delijn.be/stops/508434"], ["https://data.delijn.be/stops/202601", "https://data.delijn.be/stops/203600"], ["https://data.delijn.be/stops/200664", "https://data.delijn.be/stops/201464"], ["https://data.delijn.be/stops/400873", "https://data.delijn.be/stops/409641"], ["https://data.delijn.be/stops/501693", "https://data.delijn.be/stops/505746"], ["https://data.delijn.be/stops/300413", "https://data.delijn.be/stops/300602"], ["https://data.delijn.be/stops/303757", "https://data.delijn.be/stops/303790"], ["https://data.delijn.be/stops/300594", "https://data.delijn.be/stops/300596"], ["https://data.delijn.be/stops/300210", "https://data.delijn.be/stops/303127"], ["https://data.delijn.be/stops/101940", "https://data.delijn.be/stops/105750"], ["https://data.delijn.be/stops/501672", "https://data.delijn.be/stops/501673"], ["https://data.delijn.be/stops/503871", "https://data.delijn.be/stops/508265"], ["https://data.delijn.be/stops/108513", "https://data.delijn.be/stops/108514"], ["https://data.delijn.be/stops/106886", "https://data.delijn.be/stops/106888"], ["https://data.delijn.be/stops/101027", "https://data.delijn.be/stops/102710"], ["https://data.delijn.be/stops/406565", "https://data.delijn.be/stops/408802"], ["https://data.delijn.be/stops/102978", "https://data.delijn.be/stops/102979"], ["https://data.delijn.be/stops/101883", "https://data.delijn.be/stops/104489"], ["https://data.delijn.be/stops/501309", "https://data.delijn.be/stops/501546"], ["https://data.delijn.be/stops/507195", "https://data.delijn.be/stops/507196"], ["https://data.delijn.be/stops/101422", "https://data.delijn.be/stops/109722"], ["https://data.delijn.be/stops/104099", "https://data.delijn.be/stops/105726"], ["https://data.delijn.be/stops/403478", "https://data.delijn.be/stops/403479"], ["https://data.delijn.be/stops/407457", "https://data.delijn.be/stops/407469"], ["https://data.delijn.be/stops/307630", "https://data.delijn.be/stops/307631"], ["https://data.delijn.be/stops/403690", "https://data.delijn.be/stops/403691"], ["https://data.delijn.be/stops/305950", "https://data.delijn.be/stops/308670"], ["https://data.delijn.be/stops/202277", "https://data.delijn.be/stops/202278"], ["https://data.delijn.be/stops/301169", "https://data.delijn.be/stops/301170"], ["https://data.delijn.be/stops/507764", "https://data.delijn.be/stops/507765"], ["https://data.delijn.be/stops/104824", "https://data.delijn.be/stops/109091"], ["https://data.delijn.be/stops/402527", "https://data.delijn.be/stops/402529"], ["https://data.delijn.be/stops/400244", "https://data.delijn.be/stops/400944"], ["https://data.delijn.be/stops/102189", "https://data.delijn.be/stops/105919"], ["https://data.delijn.be/stops/210010", "https://data.delijn.be/stops/211011"], ["https://data.delijn.be/stops/205422", "https://data.delijn.be/stops/205765"], ["https://data.delijn.be/stops/200871", "https://data.delijn.be/stops/200872"], ["https://data.delijn.be/stops/304130", "https://data.delijn.be/stops/305847"], ["https://data.delijn.be/stops/407601", "https://data.delijn.be/stops/407609"], ["https://data.delijn.be/stops/501245", "https://data.delijn.be/stops/506245"], ["https://data.delijn.be/stops/305558", "https://data.delijn.be/stops/305581"], ["https://data.delijn.be/stops/300785", "https://data.delijn.be/stops/300833"], ["https://data.delijn.be/stops/208325", "https://data.delijn.be/stops/503864"], ["https://data.delijn.be/stops/205373", "https://data.delijn.be/stops/205382"], ["https://data.delijn.be/stops/200753", "https://data.delijn.be/stops/209252"], ["https://data.delijn.be/stops/301809", "https://data.delijn.be/stops/304679"], ["https://data.delijn.be/stops/307027", "https://data.delijn.be/stops/307573"], ["https://data.delijn.be/stops/206800", "https://data.delijn.be/stops/208602"], ["https://data.delijn.be/stops/504492", "https://data.delijn.be/stops/504497"], ["https://data.delijn.be/stops/200957", "https://data.delijn.be/stops/202065"], ["https://data.delijn.be/stops/108061", "https://data.delijn.be/stops/108062"], ["https://data.delijn.be/stops/106556", "https://data.delijn.be/stops/106557"], ["https://data.delijn.be/stops/504502", "https://data.delijn.be/stops/509510"], ["https://data.delijn.be/stops/104937", "https://data.delijn.be/stops/108187"], ["https://data.delijn.be/stops/205265", "https://data.delijn.be/stops/205485"], ["https://data.delijn.be/stops/303111", "https://data.delijn.be/stops/305159"], ["https://data.delijn.be/stops/401209", "https://data.delijn.be/stops/401272"], ["https://data.delijn.be/stops/407706", "https://data.delijn.be/stops/407769"], ["https://data.delijn.be/stops/506609", "https://data.delijn.be/stops/506612"], ["https://data.delijn.be/stops/108228", "https://data.delijn.be/stops/108229"], ["https://data.delijn.be/stops/301263", "https://data.delijn.be/stops/301266"], ["https://data.delijn.be/stops/302944", "https://data.delijn.be/stops/303132"], ["https://data.delijn.be/stops/103201", "https://data.delijn.be/stops/109932"], ["https://data.delijn.be/stops/208341", "https://data.delijn.be/stops/209340"], ["https://data.delijn.be/stops/502318", "https://data.delijn.be/stops/502335"], ["https://data.delijn.be/stops/303847", "https://data.delijn.be/stops/303848"], ["https://data.delijn.be/stops/304443", "https://data.delijn.be/stops/307718"], ["https://data.delijn.be/stops/206243", "https://data.delijn.be/stops/206244"], ["https://data.delijn.be/stops/304908", "https://data.delijn.be/stops/306388"], ["https://data.delijn.be/stops/101131", "https://data.delijn.be/stops/105997"], ["https://data.delijn.be/stops/107282", "https://data.delijn.be/stops/107283"], ["https://data.delijn.be/stops/201239", "https://data.delijn.be/stops/203241"], ["https://data.delijn.be/stops/504698", "https://data.delijn.be/stops/509463"], ["https://data.delijn.be/stops/202013", "https://data.delijn.be/stops/210070"], ["https://data.delijn.be/stops/304136", "https://data.delijn.be/stops/307583"], ["https://data.delijn.be/stops/103636", "https://data.delijn.be/stops/104115"], ["https://data.delijn.be/stops/503987", "https://data.delijn.be/stops/508895"], ["https://data.delijn.be/stops/402765", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/200432", "https://data.delijn.be/stops/200433"], ["https://data.delijn.be/stops/409094", "https://data.delijn.be/stops/409116"], ["https://data.delijn.be/stops/206376", "https://data.delijn.be/stops/207351"], ["https://data.delijn.be/stops/501065", "https://data.delijn.be/stops/501135"], ["https://data.delijn.be/stops/502814", "https://data.delijn.be/stops/508139"], ["https://data.delijn.be/stops/303391", "https://data.delijn.be/stops/303396"], ["https://data.delijn.be/stops/301570", "https://data.delijn.be/stops/301571"], ["https://data.delijn.be/stops/400410", "https://data.delijn.be/stops/400412"], ["https://data.delijn.be/stops/404228", "https://data.delijn.be/stops/409630"], ["https://data.delijn.be/stops/305078", "https://data.delijn.be/stops/305081"], ["https://data.delijn.be/stops/502394", "https://data.delijn.be/stops/507909"], ["https://data.delijn.be/stops/204433", "https://data.delijn.be/stops/204434"], ["https://data.delijn.be/stops/404962", "https://data.delijn.be/stops/404963"], ["https://data.delijn.be/stops/400612", "https://data.delijn.be/stops/400624"], ["https://data.delijn.be/stops/101465", "https://data.delijn.be/stops/101466"], ["https://data.delijn.be/stops/201685", "https://data.delijn.be/stops/202314"], ["https://data.delijn.be/stops/104651", "https://data.delijn.be/stops/108048"], ["https://data.delijn.be/stops/401958", "https://data.delijn.be/stops/401964"], ["https://data.delijn.be/stops/102589", "https://data.delijn.be/stops/409531"], ["https://data.delijn.be/stops/300743", "https://data.delijn.be/stops/300798"], ["https://data.delijn.be/stops/201769", "https://data.delijn.be/stops/209272"], ["https://data.delijn.be/stops/402763", "https://data.delijn.be/stops/410334"], ["https://data.delijn.be/stops/300019", "https://data.delijn.be/stops/306045"], ["https://data.delijn.be/stops/503081", "https://data.delijn.be/stops/503084"], ["https://data.delijn.be/stops/104893", "https://data.delijn.be/stops/104894"], ["https://data.delijn.be/stops/304936", "https://data.delijn.be/stops/304939"], ["https://data.delijn.be/stops/403219", "https://data.delijn.be/stops/403553"], ["https://data.delijn.be/stops/501662", "https://data.delijn.be/stops/506663"], ["https://data.delijn.be/stops/302339", "https://data.delijn.be/stops/302344"], ["https://data.delijn.be/stops/107820", "https://data.delijn.be/stops/107825"], ["https://data.delijn.be/stops/400438", "https://data.delijn.be/stops/406842"], ["https://data.delijn.be/stops/403178", "https://data.delijn.be/stops/403518"], ["https://data.delijn.be/stops/101587", "https://data.delijn.be/stops/105450"], ["https://data.delijn.be/stops/302260", "https://data.delijn.be/stops/304347"], ["https://data.delijn.be/stops/106221", "https://data.delijn.be/stops/106336"], ["https://data.delijn.be/stops/300703", "https://data.delijn.be/stops/300706"], ["https://data.delijn.be/stops/206061", "https://data.delijn.be/stops/207062"], ["https://data.delijn.be/stops/204587", "https://data.delijn.be/stops/205159"], ["https://data.delijn.be/stops/206530", "https://data.delijn.be/stops/207530"], ["https://data.delijn.be/stops/207672", "https://data.delijn.be/stops/209157"], ["https://data.delijn.be/stops/300751", "https://data.delijn.be/stops/300784"], ["https://data.delijn.be/stops/302127", "https://data.delijn.be/stops/304165"], ["https://data.delijn.be/stops/104401", "https://data.delijn.be/stops/107132"], ["https://data.delijn.be/stops/108189", "https://data.delijn.be/stops/108354"], ["https://data.delijn.be/stops/502069", "https://data.delijn.be/stops/505681"], ["https://data.delijn.be/stops/502280", "https://data.delijn.be/stops/507280"], ["https://data.delijn.be/stops/200808", "https://data.delijn.be/stops/200809"], ["https://data.delijn.be/stops/503914", "https://data.delijn.be/stops/508924"], ["https://data.delijn.be/stops/400851", "https://data.delijn.be/stops/400852"], ["https://data.delijn.be/stops/504793", "https://data.delijn.be/stops/509907"], ["https://data.delijn.be/stops/406461", "https://data.delijn.be/stops/406519"], ["https://data.delijn.be/stops/502740", "https://data.delijn.be/stops/507919"], ["https://data.delijn.be/stops/303859", "https://data.delijn.be/stops/303962"], ["https://data.delijn.be/stops/405939", "https://data.delijn.be/stops/405947"], ["https://data.delijn.be/stops/303260", "https://data.delijn.be/stops/305661"], ["https://data.delijn.be/stops/103647", "https://data.delijn.be/stops/107736"], ["https://data.delijn.be/stops/501435", "https://data.delijn.be/stops/501672"], ["https://data.delijn.be/stops/108072", "https://data.delijn.be/stops/108073"], ["https://data.delijn.be/stops/201609", "https://data.delijn.be/stops/202755"], ["https://data.delijn.be/stops/303131", "https://data.delijn.be/stops/303134"], ["https://data.delijn.be/stops/102893", "https://data.delijn.be/stops/105305"], ["https://data.delijn.be/stops/404427", "https://data.delijn.be/stops/404497"], ["https://data.delijn.be/stops/203998", "https://data.delijn.be/stops/203999"], ["https://data.delijn.be/stops/504988", "https://data.delijn.be/stops/509046"], ["https://data.delijn.be/stops/401462", "https://data.delijn.be/stops/401474"], ["https://data.delijn.be/stops/304757", "https://data.delijn.be/stops/308815"], ["https://data.delijn.be/stops/200525", "https://data.delijn.be/stops/201525"], ["https://data.delijn.be/stops/307571", "https://data.delijn.be/stops/307574"], ["https://data.delijn.be/stops/200497", "https://data.delijn.be/stops/201497"], ["https://data.delijn.be/stops/204145", "https://data.delijn.be/stops/207637"], ["https://data.delijn.be/stops/402119", "https://data.delijn.be/stops/403426"], ["https://data.delijn.be/stops/303229", "https://data.delijn.be/stops/304550"], ["https://data.delijn.be/stops/204157", "https://data.delijn.be/stops/205157"], ["https://data.delijn.be/stops/401794", "https://data.delijn.be/stops/406349"], ["https://data.delijn.be/stops/505158", "https://data.delijn.be/stops/508887"], ["https://data.delijn.be/stops/204288", "https://data.delijn.be/stops/205289"], ["https://data.delijn.be/stops/407989", "https://data.delijn.be/stops/408070"], ["https://data.delijn.be/stops/307871", "https://data.delijn.be/stops/308887"], ["https://data.delijn.be/stops/201683", "https://data.delijn.be/stops/203004"], ["https://data.delijn.be/stops/408512", "https://data.delijn.be/stops/408513"], ["https://data.delijn.be/stops/101086", "https://data.delijn.be/stops/101088"], ["https://data.delijn.be/stops/103531", "https://data.delijn.be/stops/109635"], ["https://data.delijn.be/stops/505567", "https://data.delijn.be/stops/508639"], ["https://data.delijn.be/stops/407689", "https://data.delijn.be/stops/407734"], ["https://data.delijn.be/stops/106739", "https://data.delijn.be/stops/106740"], ["https://data.delijn.be/stops/203549", "https://data.delijn.be/stops/203557"], ["https://data.delijn.be/stops/203364", "https://data.delijn.be/stops/203989"], ["https://data.delijn.be/stops/104037", "https://data.delijn.be/stops/108394"], ["https://data.delijn.be/stops/502553", "https://data.delijn.be/stops/502666"], ["https://data.delijn.be/stops/400905", "https://data.delijn.be/stops/401255"], ["https://data.delijn.be/stops/504414", "https://data.delijn.be/stops/509591"], ["https://data.delijn.be/stops/502085", "https://data.delijn.be/stops/502584"], ["https://data.delijn.be/stops/203771", "https://data.delijn.be/stops/203772"], ["https://data.delijn.be/stops/409282", "https://data.delijn.be/stops/409283"], ["https://data.delijn.be/stops/104097", "https://data.delijn.be/stops/104099"], ["https://data.delijn.be/stops/405565", "https://data.delijn.be/stops/405576"], ["https://data.delijn.be/stops/502543", "https://data.delijn.be/stops/507543"], ["https://data.delijn.be/stops/404709", "https://data.delijn.be/stops/404811"], ["https://data.delijn.be/stops/201871", "https://data.delijn.be/stops/203422"], ["https://data.delijn.be/stops/208313", "https://data.delijn.be/stops/208771"], ["https://data.delijn.be/stops/402260", "https://data.delijn.be/stops/409631"], ["https://data.delijn.be/stops/502278", "https://data.delijn.be/stops/502334"], ["https://data.delijn.be/stops/407131", "https://data.delijn.be/stops/407133"], ["https://data.delijn.be/stops/103758", "https://data.delijn.be/stops/108090"], ["https://data.delijn.be/stops/504848", "https://data.delijn.be/stops/508119"], ["https://data.delijn.be/stops/103069", "https://data.delijn.be/stops/105754"], ["https://data.delijn.be/stops/409559", "https://data.delijn.be/stops/409567"], ["https://data.delijn.be/stops/202365", "https://data.delijn.be/stops/203364"], ["https://data.delijn.be/stops/504741", "https://data.delijn.be/stops/509150"], ["https://data.delijn.be/stops/408428", "https://data.delijn.be/stops/408577"], ["https://data.delijn.be/stops/205259", "https://data.delijn.be/stops/205260"], ["https://data.delijn.be/stops/101426", "https://data.delijn.be/stops/102087"], ["https://data.delijn.be/stops/305023", "https://data.delijn.be/stops/305024"], ["https://data.delijn.be/stops/206029", "https://data.delijn.be/stops/207029"], ["https://data.delijn.be/stops/502416", "https://data.delijn.be/stops/507420"], ["https://data.delijn.be/stops/106637", "https://data.delijn.be/stops/106679"], ["https://data.delijn.be/stops/403085", "https://data.delijn.be/stops/403436"], ["https://data.delijn.be/stops/504771", "https://data.delijn.be/stops/505945"], ["https://data.delijn.be/stops/504073", "https://data.delijn.be/stops/509076"], ["https://data.delijn.be/stops/505848", "https://data.delijn.be/stops/507620"], ["https://data.delijn.be/stops/502406", "https://data.delijn.be/stops/507725"], ["https://data.delijn.be/stops/501624", "https://data.delijn.be/stops/506624"], ["https://data.delijn.be/stops/209374", "https://data.delijn.be/stops/209661"], ["https://data.delijn.be/stops/303656", "https://data.delijn.be/stops/305464"], ["https://data.delijn.be/stops/302937", "https://data.delijn.be/stops/303142"], ["https://data.delijn.be/stops/301789", "https://data.delijn.be/stops/301790"], ["https://data.delijn.be/stops/206458", "https://data.delijn.be/stops/206861"], ["https://data.delijn.be/stops/301644", "https://data.delijn.be/stops/301670"], ["https://data.delijn.be/stops/307212", "https://data.delijn.be/stops/307283"], ["https://data.delijn.be/stops/105277", "https://data.delijn.be/stops/105686"], ["https://data.delijn.be/stops/503989", "https://data.delijn.be/stops/508486"], ["https://data.delijn.be/stops/208189", "https://data.delijn.be/stops/209189"], ["https://data.delijn.be/stops/305993", "https://data.delijn.be/stops/307425"], ["https://data.delijn.be/stops/101794", "https://data.delijn.be/stops/108562"], ["https://data.delijn.be/stops/505534", "https://data.delijn.be/stops/505535"], ["https://data.delijn.be/stops/503033", "https://data.delijn.be/stops/503363"], ["https://data.delijn.be/stops/304733", "https://data.delijn.be/stops/306555"], ["https://data.delijn.be/stops/107982", "https://data.delijn.be/stops/107986"], ["https://data.delijn.be/stops/400932", "https://data.delijn.be/stops/402826"], ["https://data.delijn.be/stops/201767", "https://data.delijn.be/stops/208268"], ["https://data.delijn.be/stops/203660", "https://data.delijn.be/stops/203661"], ["https://data.delijn.be/stops/308226", "https://data.delijn.be/stops/308227"], ["https://data.delijn.be/stops/200908", "https://data.delijn.be/stops/200928"], ["https://data.delijn.be/stops/105458", "https://data.delijn.be/stops/105461"], ["https://data.delijn.be/stops/400424", "https://data.delijn.be/stops/400954"], ["https://data.delijn.be/stops/502100", "https://data.delijn.be/stops/502111"], ["https://data.delijn.be/stops/200810", "https://data.delijn.be/stops/203356"], ["https://data.delijn.be/stops/501009", "https://data.delijn.be/stops/505035"], ["https://data.delijn.be/stops/508066", "https://data.delijn.be/stops/509975"], ["https://data.delijn.be/stops/204243", "https://data.delijn.be/stops/204458"], ["https://data.delijn.be/stops/202908", "https://data.delijn.be/stops/203908"], ["https://data.delijn.be/stops/400708", "https://data.delijn.be/stops/400710"], ["https://data.delijn.be/stops/300407", "https://data.delijn.be/stops/306067"], ["https://data.delijn.be/stops/203528", "https://data.delijn.be/stops/210009"], ["https://data.delijn.be/stops/204347", "https://data.delijn.be/stops/205348"], ["https://data.delijn.be/stops/107096", "https://data.delijn.be/stops/108233"], ["https://data.delijn.be/stops/103142", "https://data.delijn.be/stops/103727"], ["https://data.delijn.be/stops/105503", "https://data.delijn.be/stops/105506"], ["https://data.delijn.be/stops/105352", "https://data.delijn.be/stops/109617"], ["https://data.delijn.be/stops/304528", "https://data.delijn.be/stops/304672"], ["https://data.delijn.be/stops/104409", "https://data.delijn.be/stops/204493"], ["https://data.delijn.be/stops/208219", "https://data.delijn.be/stops/209219"], ["https://data.delijn.be/stops/300615", "https://data.delijn.be/stops/304650"], ["https://data.delijn.be/stops/210033", "https://data.delijn.be/stops/211037"], ["https://data.delijn.be/stops/101545", "https://data.delijn.be/stops/104127"], ["https://data.delijn.be/stops/105639", "https://data.delijn.be/stops/105811"], ["https://data.delijn.be/stops/302126", "https://data.delijn.be/stops/304781"], ["https://data.delijn.be/stops/503842", "https://data.delijn.be/stops/505804"], ["https://data.delijn.be/stops/107828", "https://data.delijn.be/stops/107829"], ["https://data.delijn.be/stops/206815", "https://data.delijn.be/stops/207815"], ["https://data.delijn.be/stops/408276", "https://data.delijn.be/stops/408341"], ["https://data.delijn.be/stops/207247", "https://data.delijn.be/stops/207401"], ["https://data.delijn.be/stops/105204", "https://data.delijn.be/stops/108877"], ["https://data.delijn.be/stops/300274", "https://data.delijn.be/stops/307477"], ["https://data.delijn.be/stops/407600", "https://data.delijn.be/stops/407601"], ["https://data.delijn.be/stops/401949", "https://data.delijn.be/stops/407112"], ["https://data.delijn.be/stops/300690", "https://data.delijn.be/stops/303459"], ["https://data.delijn.be/stops/408444", "https://data.delijn.be/stops/305684"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/510001"], ["https://data.delijn.be/stops/304983", "https://data.delijn.be/stops/308013"], ["https://data.delijn.be/stops/403085", "https://data.delijn.be/stops/403133"], ["https://data.delijn.be/stops/405185", "https://data.delijn.be/stops/405251"], ["https://data.delijn.be/stops/101285", "https://data.delijn.be/stops/101992"], ["https://data.delijn.be/stops/109966", "https://data.delijn.be/stops/109974"], ["https://data.delijn.be/stops/508064", "https://data.delijn.be/stops/509303"], ["https://data.delijn.be/stops/503329", "https://data.delijn.be/stops/508329"], ["https://data.delijn.be/stops/202891", "https://data.delijn.be/stops/203669"], ["https://data.delijn.be/stops/201943", "https://data.delijn.be/stops/202001"], ["https://data.delijn.be/stops/302588", "https://data.delijn.be/stops/302594"], ["https://data.delijn.be/stops/101179", "https://data.delijn.be/stops/106791"], ["https://data.delijn.be/stops/407842", "https://data.delijn.be/stops/407907"], ["https://data.delijn.be/stops/507491", "https://data.delijn.be/stops/507507"], ["https://data.delijn.be/stops/307226", "https://data.delijn.be/stops/307913"], ["https://data.delijn.be/stops/104971", "https://data.delijn.be/stops/105303"], ["https://data.delijn.be/stops/101049", "https://data.delijn.be/stops/205279"], ["https://data.delijn.be/stops/301055", "https://data.delijn.be/stops/303832"], ["https://data.delijn.be/stops/408865", "https://data.delijn.be/stops/408868"], ["https://data.delijn.be/stops/300847", "https://data.delijn.be/stops/301565"], ["https://data.delijn.be/stops/406678", "https://data.delijn.be/stops/406679"], ["https://data.delijn.be/stops/300499", "https://data.delijn.be/stops/300500"], ["https://data.delijn.be/stops/503882", "https://data.delijn.be/stops/505376"], ["https://data.delijn.be/stops/306786", "https://data.delijn.be/stops/306788"], ["https://data.delijn.be/stops/105906", "https://data.delijn.be/stops/105907"], ["https://data.delijn.be/stops/410320", "https://data.delijn.be/stops/410321"], ["https://data.delijn.be/stops/300311", "https://data.delijn.be/stops/307806"], ["https://data.delijn.be/stops/504697", "https://data.delijn.be/stops/509411"], ["https://data.delijn.be/stops/300697", "https://data.delijn.be/stops/300719"], ["https://data.delijn.be/stops/403952", "https://data.delijn.be/stops/404025"], ["https://data.delijn.be/stops/106285", "https://data.delijn.be/stops/106286"], ["https://data.delijn.be/stops/107869", "https://data.delijn.be/stops/107871"], ["https://data.delijn.be/stops/301470", "https://data.delijn.be/stops/307960"], ["https://data.delijn.be/stops/502648", "https://data.delijn.be/stops/502815"], ["https://data.delijn.be/stops/302897", "https://data.delijn.be/stops/302924"], ["https://data.delijn.be/stops/208179", "https://data.delijn.be/stops/209178"], ["https://data.delijn.be/stops/501249", "https://data.delijn.be/stops/506249"], ["https://data.delijn.be/stops/500931", "https://data.delijn.be/stops/500935"], ["https://data.delijn.be/stops/209169", "https://data.delijn.be/stops/209170"], ["https://data.delijn.be/stops/301798", "https://data.delijn.be/stops/303704"], ["https://data.delijn.be/stops/503030", "https://data.delijn.be/stops/505396"], ["https://data.delijn.be/stops/503295", "https://data.delijn.be/stops/509842"], ["https://data.delijn.be/stops/104038", "https://data.delijn.be/stops/104044"], ["https://data.delijn.be/stops/508026", "https://data.delijn.be/stops/508030"], ["https://data.delijn.be/stops/206464", "https://data.delijn.be/stops/207463"], ["https://data.delijn.be/stops/106084", "https://data.delijn.be/stops/109899"], ["https://data.delijn.be/stops/402160", "https://data.delijn.be/stops/402172"], ["https://data.delijn.be/stops/301782", "https://data.delijn.be/stops/301784"], ["https://data.delijn.be/stops/106298", "https://data.delijn.be/stops/106472"], ["https://data.delijn.be/stops/506265", "https://data.delijn.be/stops/506565"], ["https://data.delijn.be/stops/503346", "https://data.delijn.be/stops/508053"], ["https://data.delijn.be/stops/204402", "https://data.delijn.be/stops/205403"], ["https://data.delijn.be/stops/105073", "https://data.delijn.be/stops/105188"], ["https://data.delijn.be/stops/502052", "https://data.delijn.be/stops/502661"], ["https://data.delijn.be/stops/208470", "https://data.delijn.be/stops/209513"], ["https://data.delijn.be/stops/200704", "https://data.delijn.be/stops/200705"], ["https://data.delijn.be/stops/405194", "https://data.delijn.be/stops/405196"], ["https://data.delijn.be/stops/109133", "https://data.delijn.be/stops/109137"], ["https://data.delijn.be/stops/102184", "https://data.delijn.be/stops/104428"], ["https://data.delijn.be/stops/103255", "https://data.delijn.be/stops/103256"], ["https://data.delijn.be/stops/505259", "https://data.delijn.be/stops/508026"], ["https://data.delijn.be/stops/105023", "https://data.delijn.be/stops/106829"], ["https://data.delijn.be/stops/107686", "https://data.delijn.be/stops/107691"], ["https://data.delijn.be/stops/304287", "https://data.delijn.be/stops/304301"], ["https://data.delijn.be/stops/304598", "https://data.delijn.be/stops/304717"], ["https://data.delijn.be/stops/207416", "https://data.delijn.be/stops/207639"], ["https://data.delijn.be/stops/304110", "https://data.delijn.be/stops/304821"], ["https://data.delijn.be/stops/209442", "https://data.delijn.be/stops/209443"], ["https://data.delijn.be/stops/207669", "https://data.delijn.be/stops/208055"], ["https://data.delijn.be/stops/200767", "https://data.delijn.be/stops/201728"], ["https://data.delijn.be/stops/503046", "https://data.delijn.be/stops/508047"], ["https://data.delijn.be/stops/300105", "https://data.delijn.be/stops/306842"], ["https://data.delijn.be/stops/506166", "https://data.delijn.be/stops/509838"], ["https://data.delijn.be/stops/202929", "https://data.delijn.be/stops/210097"], ["https://data.delijn.be/stops/106448", "https://data.delijn.be/stops/106451"], ["https://data.delijn.be/stops/503230", "https://data.delijn.be/stops/509867"], ["https://data.delijn.be/stops/407836", "https://data.delijn.be/stops/409561"], ["https://data.delijn.be/stops/202559", "https://data.delijn.be/stops/203558"], ["https://data.delijn.be/stops/502200", "https://data.delijn.be/stops/505549"], ["https://data.delijn.be/stops/502104", "https://data.delijn.be/stops/502168"], ["https://data.delijn.be/stops/103994", "https://data.delijn.be/stops/108394"], ["https://data.delijn.be/stops/101132", "https://data.delijn.be/stops/107958"], ["https://data.delijn.be/stops/101929", "https://data.delijn.be/stops/108385"], ["https://data.delijn.be/stops/504649", "https://data.delijn.be/stops/509643"], ["https://data.delijn.be/stops/107034", "https://data.delijn.be/stops/107038"], ["https://data.delijn.be/stops/504687", "https://data.delijn.be/stops/504762"], ["https://data.delijn.be/stops/302295", "https://data.delijn.be/stops/303503"], ["https://data.delijn.be/stops/102919", "https://data.delijn.be/stops/104580"], ["https://data.delijn.be/stops/208511", "https://data.delijn.be/stops/208632"], ["https://data.delijn.be/stops/404430", "https://data.delijn.be/stops/404482"], ["https://data.delijn.be/stops/401404", "https://data.delijn.be/stops/410153"], ["https://data.delijn.be/stops/406075", "https://data.delijn.be/stops/407489"], ["https://data.delijn.be/stops/403880", "https://data.delijn.be/stops/403882"], ["https://data.delijn.be/stops/404228", "https://data.delijn.be/stops/405547"], ["https://data.delijn.be/stops/207497", "https://data.delijn.be/stops/207673"], ["https://data.delijn.be/stops/502718", "https://data.delijn.be/stops/502920"], ["https://data.delijn.be/stops/400135", "https://data.delijn.be/stops/400142"], ["https://data.delijn.be/stops/103021", "https://data.delijn.be/stops/107232"], ["https://data.delijn.be/stops/105314", "https://data.delijn.be/stops/105342"], ["https://data.delijn.be/stops/502408", "https://data.delijn.be/stops/507394"], ["https://data.delijn.be/stops/303107", "https://data.delijn.be/stops/303117"], ["https://data.delijn.be/stops/408742", "https://data.delijn.be/stops/408744"], ["https://data.delijn.be/stops/403276", "https://data.delijn.be/stops/403396"], ["https://data.delijn.be/stops/503307", "https://data.delijn.be/stops/503312"], ["https://data.delijn.be/stops/207182", "https://data.delijn.be/stops/207184"], ["https://data.delijn.be/stops/502355", "https://data.delijn.be/stops/507362"], ["https://data.delijn.be/stops/302718", "https://data.delijn.be/stops/302722"], ["https://data.delijn.be/stops/108214", "https://data.delijn.be/stops/108216"], ["https://data.delijn.be/stops/200012", "https://data.delijn.be/stops/200013"], ["https://data.delijn.be/stops/208683", "https://data.delijn.be/stops/209437"], ["https://data.delijn.be/stops/503828", "https://data.delijn.be/stops/508449"], ["https://data.delijn.be/stops/402893", "https://data.delijn.be/stops/302613"], ["https://data.delijn.be/stops/501330", "https://data.delijn.be/stops/501331"], ["https://data.delijn.be/stops/503977", "https://data.delijn.be/stops/508467"], ["https://data.delijn.be/stops/105701", "https://data.delijn.be/stops/106069"], ["https://data.delijn.be/stops/102200", "https://data.delijn.be/stops/108170"], ["https://data.delijn.be/stops/201994", "https://data.delijn.be/stops/202014"], ["https://data.delijn.be/stops/208764", "https://data.delijn.be/stops/208765"], ["https://data.delijn.be/stops/303695", "https://data.delijn.be/stops/303749"], ["https://data.delijn.be/stops/501149", "https://data.delijn.be/stops/505620"], ["https://data.delijn.be/stops/107979", "https://data.delijn.be/stops/107981"], ["https://data.delijn.be/stops/205911", "https://data.delijn.be/stops/205913"], ["https://data.delijn.be/stops/208005", "https://data.delijn.be/stops/209634"], ["https://data.delijn.be/stops/107440", "https://data.delijn.be/stops/107441"], ["https://data.delijn.be/stops/108086", "https://data.delijn.be/stops/108832"], ["https://data.delijn.be/stops/206431", "https://data.delijn.be/stops/207432"], ["https://data.delijn.be/stops/204749", "https://data.delijn.be/stops/205750"], ["https://data.delijn.be/stops/509410", "https://data.delijn.be/stops/509420"], ["https://data.delijn.be/stops/302425", "https://data.delijn.be/stops/302440"], ["https://data.delijn.be/stops/304604", "https://data.delijn.be/stops/304618"], ["https://data.delijn.be/stops/200566", "https://data.delijn.be/stops/201680"], ["https://data.delijn.be/stops/208583", "https://data.delijn.be/stops/209677"], ["https://data.delijn.be/stops/301065", "https://data.delijn.be/stops/301278"], ["https://data.delijn.be/stops/401062", "https://data.delijn.be/stops/406712"], ["https://data.delijn.be/stops/101530", "https://data.delijn.be/stops/103108"], ["https://data.delijn.be/stops/207495", "https://data.delijn.be/stops/207496"], ["https://data.delijn.be/stops/102370", "https://data.delijn.be/stops/104627"], ["https://data.delijn.be/stops/103571", "https://data.delijn.be/stops/103574"], ["https://data.delijn.be/stops/301585", "https://data.delijn.be/stops/304960"], ["https://data.delijn.be/stops/303189", "https://data.delijn.be/stops/303202"], ["https://data.delijn.be/stops/502442", "https://data.delijn.be/stops/502463"], ["https://data.delijn.be/stops/403160", "https://data.delijn.be/stops/403408"], ["https://data.delijn.be/stops/409350", "https://data.delijn.be/stops/409369"], ["https://data.delijn.be/stops/108551", "https://data.delijn.be/stops/109093"], ["https://data.delijn.be/stops/303340", "https://data.delijn.be/stops/306335"], ["https://data.delijn.be/stops/501632", "https://data.delijn.be/stops/506023"], ["https://data.delijn.be/stops/106594", "https://data.delijn.be/stops/107246"], ["https://data.delijn.be/stops/201212", "https://data.delijn.be/stops/201213"], ["https://data.delijn.be/stops/407080", "https://data.delijn.be/stops/409018"], ["https://data.delijn.be/stops/108155", "https://data.delijn.be/stops/108160"], ["https://data.delijn.be/stops/504990", "https://data.delijn.be/stops/509189"], ["https://data.delijn.be/stops/503073", "https://data.delijn.be/stops/508073"], ["https://data.delijn.be/stops/107344", "https://data.delijn.be/stops/107347"], ["https://data.delijn.be/stops/304797", "https://data.delijn.be/stops/306643"], ["https://data.delijn.be/stops/303312", "https://data.delijn.be/stops/303328"], ["https://data.delijn.be/stops/201281", "https://data.delijn.be/stops/208958"], ["https://data.delijn.be/stops/101536", "https://data.delijn.be/stops/102454"], ["https://data.delijn.be/stops/306694", "https://data.delijn.be/stops/308785"], ["https://data.delijn.be/stops/202103", "https://data.delijn.be/stops/210006"], ["https://data.delijn.be/stops/107700", "https://data.delijn.be/stops/107760"], ["https://data.delijn.be/stops/300684", "https://data.delijn.be/stops/300735"], ["https://data.delijn.be/stops/204103", "https://data.delijn.be/stops/206306"], ["https://data.delijn.be/stops/302388", "https://data.delijn.be/stops/302389"], ["https://data.delijn.be/stops/109288", "https://data.delijn.be/stops/109289"], ["https://data.delijn.be/stops/208582", "https://data.delijn.be/stops/209452"], ["https://data.delijn.be/stops/502072", "https://data.delijn.be/stops/507070"], ["https://data.delijn.be/stops/405904", "https://data.delijn.be/stops/405965"], ["https://data.delijn.be/stops/106478", "https://data.delijn.be/stops/107454"], ["https://data.delijn.be/stops/403456", "https://data.delijn.be/stops/410328"], ["https://data.delijn.be/stops/404090", "https://data.delijn.be/stops/408585"], ["https://data.delijn.be/stops/404294", "https://data.delijn.be/stops/405999"], ["https://data.delijn.be/stops/301252", "https://data.delijn.be/stops/308557"], ["https://data.delijn.be/stops/303514", "https://data.delijn.be/stops/304175"], ["https://data.delijn.be/stops/302697", "https://data.delijn.be/stops/302698"], ["https://data.delijn.be/stops/106662", "https://data.delijn.be/stops/106664"], ["https://data.delijn.be/stops/407046", "https://data.delijn.be/stops/407047"], ["https://data.delijn.be/stops/502004", "https://data.delijn.be/stops/505749"], ["https://data.delijn.be/stops/205367", "https://data.delijn.be/stops/205760"], ["https://data.delijn.be/stops/204912", "https://data.delijn.be/stops/204915"], ["https://data.delijn.be/stops/400992", "https://data.delijn.be/stops/400999"], ["https://data.delijn.be/stops/209654", "https://data.delijn.be/stops/210068"], ["https://data.delijn.be/stops/201658", "https://data.delijn.be/stops/201659"], ["https://data.delijn.be/stops/406299", "https://data.delijn.be/stops/409139"], ["https://data.delijn.be/stops/102061", "https://data.delijn.be/stops/106940"], ["https://data.delijn.be/stops/501697", "https://data.delijn.be/stops/502244"], ["https://data.delijn.be/stops/305681", "https://data.delijn.be/stops/305699"], ["https://data.delijn.be/stops/503626", "https://data.delijn.be/stops/508619"], ["https://data.delijn.be/stops/101664", "https://data.delijn.be/stops/106489"], ["https://data.delijn.be/stops/204376", "https://data.delijn.be/stops/205764"], ["https://data.delijn.be/stops/506091", "https://data.delijn.be/stops/506099"], ["https://data.delijn.be/stops/302396", "https://data.delijn.be/stops/302397"], ["https://data.delijn.be/stops/107469", "https://data.delijn.be/stops/107517"], ["https://data.delijn.be/stops/501411", "https://data.delijn.be/stops/506410"], ["https://data.delijn.be/stops/407867", "https://data.delijn.be/stops/407888"], ["https://data.delijn.be/stops/509316", "https://data.delijn.be/stops/509860"], ["https://data.delijn.be/stops/401440", "https://data.delijn.be/stops/408379"], ["https://data.delijn.be/stops/400176", "https://data.delijn.be/stops/400179"], ["https://data.delijn.be/stops/505230", "https://data.delijn.be/stops/505565"], ["https://data.delijn.be/stops/406834", "https://data.delijn.be/stops/407325"], ["https://data.delijn.be/stops/208239", "https://data.delijn.be/stops/209234"], ["https://data.delijn.be/stops/301582", "https://data.delijn.be/stops/301585"], ["https://data.delijn.be/stops/201927", "https://data.delijn.be/stops/207750"], ["https://data.delijn.be/stops/106873", "https://data.delijn.be/stops/106874"], ["https://data.delijn.be/stops/104210", "https://data.delijn.be/stops/104215"], ["https://data.delijn.be/stops/303780", "https://data.delijn.be/stops/303811"], ["https://data.delijn.be/stops/102314", "https://data.delijn.be/stops/103752"], ["https://data.delijn.be/stops/405515", "https://data.delijn.be/stops/407144"], ["https://data.delijn.be/stops/206214", "https://data.delijn.be/stops/206215"], ["https://data.delijn.be/stops/301080", "https://data.delijn.be/stops/308819"], ["https://data.delijn.be/stops/101139", "https://data.delijn.be/stops/109382"], ["https://data.delijn.be/stops/410188", "https://data.delijn.be/stops/410251"], ["https://data.delijn.be/stops/503855", "https://data.delijn.be/stops/504378"], ["https://data.delijn.be/stops/504978", "https://data.delijn.be/stops/509086"], ["https://data.delijn.be/stops/107680", "https://data.delijn.be/stops/107705"], ["https://data.delijn.be/stops/200093", "https://data.delijn.be/stops/201469"], ["https://data.delijn.be/stops/505363", "https://data.delijn.be/stops/509199"], ["https://data.delijn.be/stops/201090", "https://data.delijn.be/stops/201916"], ["https://data.delijn.be/stops/203593", "https://data.delijn.be/stops/210023"], ["https://data.delijn.be/stops/107557", "https://data.delijn.be/stops/107902"], ["https://data.delijn.be/stops/302422", "https://data.delijn.be/stops/302423"], ["https://data.delijn.be/stops/301836", "https://data.delijn.be/stops/301852"], ["https://data.delijn.be/stops/200450", "https://data.delijn.be/stops/208722"], ["https://data.delijn.be/stops/403383", "https://data.delijn.be/stops/406887"], ["https://data.delijn.be/stops/401471", "https://data.delijn.be/stops/401897"], ["https://data.delijn.be/stops/509411", "https://data.delijn.be/stops/509429"], ["https://data.delijn.be/stops/200051", "https://data.delijn.be/stops/201051"], ["https://data.delijn.be/stops/403489", "https://data.delijn.be/stops/405632"], ["https://data.delijn.be/stops/101797", "https://data.delijn.be/stops/300642"], ["https://data.delijn.be/stops/301560", "https://data.delijn.be/stops/308087"], ["https://data.delijn.be/stops/504620", "https://data.delijn.be/stops/509620"], ["https://data.delijn.be/stops/307198", "https://data.delijn.be/stops/307219"], ["https://data.delijn.be/stops/201728", "https://data.delijn.be/stops/208304"], ["https://data.delijn.be/stops/405305", "https://data.delijn.be/stops/405314"], ["https://data.delijn.be/stops/501130", "https://data.delijn.be/stops/506130"], ["https://data.delijn.be/stops/302626", "https://data.delijn.be/stops/308114"], ["https://data.delijn.be/stops/505136", "https://data.delijn.be/stops/508660"], ["https://data.delijn.be/stops/402605", "https://data.delijn.be/stops/402609"], ["https://data.delijn.be/stops/306044", "https://data.delijn.be/stops/307100"], ["https://data.delijn.be/stops/504006", "https://data.delijn.be/stops/509006"], ["https://data.delijn.be/stops/201827", "https://data.delijn.be/stops/209333"], ["https://data.delijn.be/stops/101368", "https://data.delijn.be/stops/106523"], ["https://data.delijn.be/stops/209781", "https://data.delijn.be/stops/209798"], ["https://data.delijn.be/stops/205679", "https://data.delijn.be/stops/205680"], ["https://data.delijn.be/stops/410113", "https://data.delijn.be/stops/410114"], ["https://data.delijn.be/stops/103011", "https://data.delijn.be/stops/103012"], ["https://data.delijn.be/stops/305016", "https://data.delijn.be/stops/305019"], ["https://data.delijn.be/stops/505208", "https://data.delijn.be/stops/505923"], ["https://data.delijn.be/stops/300098", "https://data.delijn.be/stops/300100"], ["https://data.delijn.be/stops/300018", "https://data.delijn.be/stops/301131"], ["https://data.delijn.be/stops/404884", "https://data.delijn.be/stops/405546"], ["https://data.delijn.be/stops/202900", "https://data.delijn.be/stops/202901"], ["https://data.delijn.be/stops/206482", "https://data.delijn.be/stops/206582"], ["https://data.delijn.be/stops/201110", "https://data.delijn.be/stops/203646"], ["https://data.delijn.be/stops/405582", "https://data.delijn.be/stops/405604"], ["https://data.delijn.be/stops/107019", "https://data.delijn.be/stops/107068"], ["https://data.delijn.be/stops/306794", "https://data.delijn.be/stops/308449"], ["https://data.delijn.be/stops/409254", "https://data.delijn.be/stops/409255"], ["https://data.delijn.be/stops/206086", "https://data.delijn.be/stops/207988"], ["https://data.delijn.be/stops/301116", "https://data.delijn.be/stops/306176"], ["https://data.delijn.be/stops/200083", "https://data.delijn.be/stops/201083"], ["https://data.delijn.be/stops/105276", "https://data.delijn.be/stops/105293"], ["https://data.delijn.be/stops/106290", "https://data.delijn.be/stops/106310"], ["https://data.delijn.be/stops/502209", "https://data.delijn.be/stops/505151"], ["https://data.delijn.be/stops/302805", "https://data.delijn.be/stops/308867"], ["https://data.delijn.be/stops/505542", "https://data.delijn.be/stops/508806"], ["https://data.delijn.be/stops/102123", "https://data.delijn.be/stops/109586"], ["https://data.delijn.be/stops/408444", "https://data.delijn.be/stops/303320"], ["https://data.delijn.be/stops/503126", "https://data.delijn.be/stops/509886"], ["https://data.delijn.be/stops/200718", "https://data.delijn.be/stops/203599"], ["https://data.delijn.be/stops/303427", "https://data.delijn.be/stops/303432"], ["https://data.delijn.be/stops/501118", "https://data.delijn.be/stops/505038"], ["https://data.delijn.be/stops/101885", "https://data.delijn.be/stops/101895"], ["https://data.delijn.be/stops/407718", "https://data.delijn.be/stops/407719"], ["https://data.delijn.be/stops/404530", "https://data.delijn.be/stops/409316"], ["https://data.delijn.be/stops/408532", "https://data.delijn.be/stops/408764"], ["https://data.delijn.be/stops/402300", "https://data.delijn.be/stops/402447"], ["https://data.delijn.be/stops/405856", "https://data.delijn.be/stops/409713"], ["https://data.delijn.be/stops/207791", "https://data.delijn.be/stops/208872"], ["https://data.delijn.be/stops/301001", "https://data.delijn.be/stops/301002"], ["https://data.delijn.be/stops/502075", "https://data.delijn.be/stops/507074"], ["https://data.delijn.be/stops/400849", "https://data.delijn.be/stops/400851"], ["https://data.delijn.be/stops/508846", "https://data.delijn.be/stops/508849"], ["https://data.delijn.be/stops/202181", "https://data.delijn.be/stops/203121"], ["https://data.delijn.be/stops/204747", "https://data.delijn.be/stops/204749"], ["https://data.delijn.be/stops/505629", "https://data.delijn.be/stops/509807"], ["https://data.delijn.be/stops/404131", "https://data.delijn.be/stops/410213"], ["https://data.delijn.be/stops/205718", "https://data.delijn.be/stops/205719"], ["https://data.delijn.be/stops/101992", "https://data.delijn.be/stops/104494"], ["https://data.delijn.be/stops/402379", "https://data.delijn.be/stops/404730"], ["https://data.delijn.be/stops/500924", "https://data.delijn.be/stops/503341"], ["https://data.delijn.be/stops/206532", "https://data.delijn.be/stops/206562"], ["https://data.delijn.be/stops/208526", "https://data.delijn.be/stops/209705"], ["https://data.delijn.be/stops/105793", "https://data.delijn.be/stops/105795"], ["https://data.delijn.be/stops/505325", "https://data.delijn.be/stops/505626"], ["https://data.delijn.be/stops/102724", "https://data.delijn.be/stops/106025"], ["https://data.delijn.be/stops/200450", "https://data.delijn.be/stops/209722"], ["https://data.delijn.be/stops/501655", "https://data.delijn.be/stops/506435"], ["https://data.delijn.be/stops/300041", "https://data.delijn.be/stops/300042"], ["https://data.delijn.be/stops/101556", "https://data.delijn.be/stops/106000"], ["https://data.delijn.be/stops/501414", "https://data.delijn.be/stops/506413"], ["https://data.delijn.be/stops/102746", "https://data.delijn.be/stops/103039"], ["https://data.delijn.be/stops/200291", "https://data.delijn.be/stops/201359"], ["https://data.delijn.be/stops/404689", "https://data.delijn.be/stops/405748"], ["https://data.delijn.be/stops/200695", "https://data.delijn.be/stops/203787"], ["https://data.delijn.be/stops/200686", "https://data.delijn.be/stops/202376"], ["https://data.delijn.be/stops/302376", "https://data.delijn.be/stops/302377"], ["https://data.delijn.be/stops/208328", "https://data.delijn.be/stops/209328"], ["https://data.delijn.be/stops/404793", "https://data.delijn.be/stops/404798"], ["https://data.delijn.be/stops/201144", "https://data.delijn.be/stops/205923"], ["https://data.delijn.be/stops/503490", "https://data.delijn.be/stops/508487"], ["https://data.delijn.be/stops/303076", "https://data.delijn.be/stops/308654"], ["https://data.delijn.be/stops/200339", "https://data.delijn.be/stops/201339"], ["https://data.delijn.be/stops/401846", "https://data.delijn.be/stops/401856"], ["https://data.delijn.be/stops/505942", "https://data.delijn.be/stops/508056"], ["https://data.delijn.be/stops/210200", "https://data.delijn.be/stops/211095"], ["https://data.delijn.be/stops/102588", "https://data.delijn.be/stops/409531"], ["https://data.delijn.be/stops/501096", "https://data.delijn.be/stops/506097"], ["https://data.delijn.be/stops/407754", "https://data.delijn.be/stops/407755"], ["https://data.delijn.be/stops/207104", "https://data.delijn.be/stops/207105"], ["https://data.delijn.be/stops/109350", "https://data.delijn.be/stops/109355"], ["https://data.delijn.be/stops/304367", "https://data.delijn.be/stops/307380"], ["https://data.delijn.be/stops/406638", "https://data.delijn.be/stops/406640"], ["https://data.delijn.be/stops/102635", "https://data.delijn.be/stops/102640"], ["https://data.delijn.be/stops/200184", "https://data.delijn.be/stops/202757"], ["https://data.delijn.be/stops/502404", "https://data.delijn.be/stops/507581"], ["https://data.delijn.be/stops/204804", "https://data.delijn.be/stops/205804"], ["https://data.delijn.be/stops/501469", "https://data.delijn.be/stops/506466"], ["https://data.delijn.be/stops/107120", "https://data.delijn.be/stops/107230"], ["https://data.delijn.be/stops/206273", "https://data.delijn.be/stops/207272"], ["https://data.delijn.be/stops/505064", "https://data.delijn.be/stops/505068"], ["https://data.delijn.be/stops/300891", "https://data.delijn.be/stops/303648"], ["https://data.delijn.be/stops/205304", "https://data.delijn.be/stops/205305"], ["https://data.delijn.be/stops/101581", "https://data.delijn.be/stops/105451"], ["https://data.delijn.be/stops/305945", "https://data.delijn.be/stops/308428"], ["https://data.delijn.be/stops/403926", "https://data.delijn.be/stops/308751"], ["https://data.delijn.be/stops/502731", "https://data.delijn.be/stops/507732"], ["https://data.delijn.be/stops/103057", "https://data.delijn.be/stops/106837"], ["https://data.delijn.be/stops/305134", "https://data.delijn.be/stops/305143"], ["https://data.delijn.be/stops/404866", "https://data.delijn.be/stops/404878"], ["https://data.delijn.be/stops/109998", "https://data.delijn.be/stops/406468"], ["https://data.delijn.be/stops/106920", "https://data.delijn.be/stops/106945"], ["https://data.delijn.be/stops/202195", "https://data.delijn.be/stops/203197"], ["https://data.delijn.be/stops/103975", "https://data.delijn.be/stops/104635"], ["https://data.delijn.be/stops/203823", "https://data.delijn.be/stops/219503"], ["https://data.delijn.be/stops/303152", "https://data.delijn.be/stops/303154"], ["https://data.delijn.be/stops/105472", "https://data.delijn.be/stops/109948"], ["https://data.delijn.be/stops/103900", "https://data.delijn.be/stops/103901"], ["https://data.delijn.be/stops/305005", "https://data.delijn.be/stops/305037"], ["https://data.delijn.be/stops/300356", "https://data.delijn.be/stops/304698"], ["https://data.delijn.be/stops/104429", "https://data.delijn.be/stops/104593"], ["https://data.delijn.be/stops/107603", "https://data.delijn.be/stops/406796"], ["https://data.delijn.be/stops/207751", "https://data.delijn.be/stops/207767"], ["https://data.delijn.be/stops/102999", "https://data.delijn.be/stops/107417"], ["https://data.delijn.be/stops/502552", "https://data.delijn.be/stops/502558"], ["https://data.delijn.be/stops/202567", "https://data.delijn.be/stops/202613"], ["https://data.delijn.be/stops/505734", "https://data.delijn.be/stops/507607"], ["https://data.delijn.be/stops/306842", "https://data.delijn.be/stops/306844"], ["https://data.delijn.be/stops/307362", "https://data.delijn.be/stops/307365"], ["https://data.delijn.be/stops/108792", "https://data.delijn.be/stops/108793"], ["https://data.delijn.be/stops/203629", "https://data.delijn.be/stops/203630"], ["https://data.delijn.be/stops/408728", "https://data.delijn.be/stops/410343"], ["https://data.delijn.be/stops/401480", "https://data.delijn.be/stops/401775"], ["https://data.delijn.be/stops/507718", "https://data.delijn.be/stops/508845"], ["https://data.delijn.be/stops/407068", "https://data.delijn.be/stops/410014"], ["https://data.delijn.be/stops/206528", "https://data.delijn.be/stops/207529"], ["https://data.delijn.be/stops/400985", "https://data.delijn.be/stops/406585"], ["https://data.delijn.be/stops/405849", "https://data.delijn.be/stops/407293"], ["https://data.delijn.be/stops/300192", "https://data.delijn.be/stops/300201"], ["https://data.delijn.be/stops/208145", "https://data.delijn.be/stops/209403"], ["https://data.delijn.be/stops/108294", "https://data.delijn.be/stops/108296"], ["https://data.delijn.be/stops/501294", "https://data.delijn.be/stops/501324"], ["https://data.delijn.be/stops/408712", "https://data.delijn.be/stops/408720"], ["https://data.delijn.be/stops/403726", "https://data.delijn.be/stops/406709"], ["https://data.delijn.be/stops/206828", "https://data.delijn.be/stops/207254"], ["https://data.delijn.be/stops/108206", "https://data.delijn.be/stops/108208"], ["https://data.delijn.be/stops/302678", "https://data.delijn.be/stops/302680"], ["https://data.delijn.be/stops/109792", "https://data.delijn.be/stops/109793"], ["https://data.delijn.be/stops/405186", "https://data.delijn.be/stops/405280"], ["https://data.delijn.be/stops/503688", "https://data.delijn.be/stops/508689"], ["https://data.delijn.be/stops/200896", "https://data.delijn.be/stops/200929"], ["https://data.delijn.be/stops/504104", "https://data.delijn.be/stops/504106"], ["https://data.delijn.be/stops/505955", "https://data.delijn.be/stops/508161"], ["https://data.delijn.be/stops/103772", "https://data.delijn.be/stops/106435"], ["https://data.delijn.be/stops/403863", "https://data.delijn.be/stops/403864"], ["https://data.delijn.be/stops/300106", "https://data.delijn.be/stops/306837"], ["https://data.delijn.be/stops/404445", "https://data.delijn.be/stops/404447"], ["https://data.delijn.be/stops/102461", "https://data.delijn.be/stops/102463"], ["https://data.delijn.be/stops/207151", "https://data.delijn.be/stops/207152"], ["https://data.delijn.be/stops/506420", "https://data.delijn.be/stops/506421"], ["https://data.delijn.be/stops/104108", "https://data.delijn.be/stops/104109"], ["https://data.delijn.be/stops/200076", "https://data.delijn.be/stops/201525"], ["https://data.delijn.be/stops/505588", "https://data.delijn.be/stops/507491"], ["https://data.delijn.be/stops/400032", "https://data.delijn.be/stops/400043"], ["https://data.delijn.be/stops/200016", "https://data.delijn.be/stops/201016"], ["https://data.delijn.be/stops/308740", "https://data.delijn.be/stops/308742"], ["https://data.delijn.be/stops/105799", "https://data.delijn.be/stops/105812"], ["https://data.delijn.be/stops/407514", "https://data.delijn.be/stops/407525"], ["https://data.delijn.be/stops/501521", "https://data.delijn.be/stops/501525"], ["https://data.delijn.be/stops/304183", "https://data.delijn.be/stops/304184"], ["https://data.delijn.be/stops/208334", "https://data.delijn.be/stops/209334"], ["https://data.delijn.be/stops/202644", "https://data.delijn.be/stops/203094"], ["https://data.delijn.be/stops/109261", "https://data.delijn.be/stops/109263"], ["https://data.delijn.be/stops/205293", "https://data.delijn.be/stops/205537"], ["https://data.delijn.be/stops/400428", "https://data.delijn.be/stops/402767"], ["https://data.delijn.be/stops/301796", "https://data.delijn.be/stops/301812"], ["https://data.delijn.be/stops/406178", "https://data.delijn.be/stops/406179"], ["https://data.delijn.be/stops/302032", "https://data.delijn.be/stops/302033"], ["https://data.delijn.be/stops/509835", "https://data.delijn.be/stops/509838"], ["https://data.delijn.be/stops/108751", "https://data.delijn.be/stops/108752"], ["https://data.delijn.be/stops/101195", "https://data.delijn.be/stops/105185"], ["https://data.delijn.be/stops/103646", "https://data.delijn.be/stops/103651"], ["https://data.delijn.be/stops/202642", "https://data.delijn.be/stops/203641"], ["https://data.delijn.be/stops/503667", "https://data.delijn.be/stops/504368"], ["https://data.delijn.be/stops/508402", "https://data.delijn.be/stops/510017"], ["https://data.delijn.be/stops/300579", "https://data.delijn.be/stops/300993"], ["https://data.delijn.be/stops/407726", "https://data.delijn.be/stops/407727"], ["https://data.delijn.be/stops/105390", "https://data.delijn.be/stops/105400"], ["https://data.delijn.be/stops/401580", "https://data.delijn.be/stops/401581"], ["https://data.delijn.be/stops/303618", "https://data.delijn.be/stops/303619"], ["https://data.delijn.be/stops/200205", "https://data.delijn.be/stops/201253"], ["https://data.delijn.be/stops/202059", "https://data.delijn.be/stops/211075"], ["https://data.delijn.be/stops/206973", "https://data.delijn.be/stops/207611"], ["https://data.delijn.be/stops/503180", "https://data.delijn.be/stops/505638"], ["https://data.delijn.be/stops/301231", "https://data.delijn.be/stops/306327"], ["https://data.delijn.be/stops/402537", "https://data.delijn.be/stops/404093"], ["https://data.delijn.be/stops/505700", "https://data.delijn.be/stops/507569"], ["https://data.delijn.be/stops/302798", "https://data.delijn.be/stops/302807"], ["https://data.delijn.be/stops/202701", "https://data.delijn.be/stops/203700"], ["https://data.delijn.be/stops/400727", "https://data.delijn.be/stops/400729"], ["https://data.delijn.be/stops/400853", "https://data.delijn.be/stops/405666"], ["https://data.delijn.be/stops/404447", "https://data.delijn.be/stops/404536"], ["https://data.delijn.be/stops/200364", "https://data.delijn.be/stops/200549"], ["https://data.delijn.be/stops/405235", "https://data.delijn.be/stops/405286"], ["https://data.delijn.be/stops/203628", "https://data.delijn.be/stops/205068"], ["https://data.delijn.be/stops/405018", "https://data.delijn.be/stops/408923"], ["https://data.delijn.be/stops/300646", "https://data.delijn.be/stops/305814"], ["https://data.delijn.be/stops/106414", "https://data.delijn.be/stops/106415"], ["https://data.delijn.be/stops/204678", "https://data.delijn.be/stops/204684"], ["https://data.delijn.be/stops/505575", "https://data.delijn.be/stops/507188"], ["https://data.delijn.be/stops/300979", "https://data.delijn.be/stops/300998"], ["https://data.delijn.be/stops/206771", "https://data.delijn.be/stops/206778"], ["https://data.delijn.be/stops/400274", "https://data.delijn.be/stops/400413"], ["https://data.delijn.be/stops/501021", "https://data.delijn.be/stops/501687"], ["https://data.delijn.be/stops/504093", "https://data.delijn.be/stops/505193"], ["https://data.delijn.be/stops/202885", "https://data.delijn.be/stops/203884"], ["https://data.delijn.be/stops/201079", "https://data.delijn.be/stops/202896"], ["https://data.delijn.be/stops/502021", "https://data.delijn.be/stops/507154"], ["https://data.delijn.be/stops/501098", "https://data.delijn.be/stops/502208"], ["https://data.delijn.be/stops/506729", "https://data.delijn.be/stops/507566"], ["https://data.delijn.be/stops/401485", "https://data.delijn.be/stops/401496"], ["https://data.delijn.be/stops/202110", "https://data.delijn.be/stops/205093"], ["https://data.delijn.be/stops/402451", "https://data.delijn.be/stops/402452"], ["https://data.delijn.be/stops/303525", "https://data.delijn.be/stops/304081"], ["https://data.delijn.be/stops/304069", "https://data.delijn.be/stops/304114"], ["https://data.delijn.be/stops/201530", "https://data.delijn.be/stops/210091"], ["https://data.delijn.be/stops/305704", "https://data.delijn.be/stops/307840"], ["https://data.delijn.be/stops/108982", "https://data.delijn.be/stops/109692"], ["https://data.delijn.be/stops/300946", "https://data.delijn.be/stops/300947"], ["https://data.delijn.be/stops/400964", "https://data.delijn.be/stops/406875"], ["https://data.delijn.be/stops/302861", "https://data.delijn.be/stops/302912"], ["https://data.delijn.be/stops/300620", "https://data.delijn.be/stops/300691"], ["https://data.delijn.be/stops/301351", "https://data.delijn.be/stops/303279"], ["https://data.delijn.be/stops/504004", "https://data.delijn.be/stops/509004"], ["https://data.delijn.be/stops/108024", "https://data.delijn.be/stops/108058"], ["https://data.delijn.be/stops/509121", "https://data.delijn.be/stops/509129"], ["https://data.delijn.be/stops/205057", "https://data.delijn.be/stops/205058"], ["https://data.delijn.be/stops/103224", "https://data.delijn.be/stops/107035"], ["https://data.delijn.be/stops/106636", "https://data.delijn.be/stops/107188"], ["https://data.delijn.be/stops/502313", "https://data.delijn.be/stops/502592"], ["https://data.delijn.be/stops/403272", "https://data.delijn.be/stops/403382"], ["https://data.delijn.be/stops/102999", "https://data.delijn.be/stops/109796"], ["https://data.delijn.be/stops/206079", "https://data.delijn.be/stops/207304"], ["https://data.delijn.be/stops/204366", "https://data.delijn.be/stops/205367"], ["https://data.delijn.be/stops/109312", "https://data.delijn.be/stops/109357"], ["https://data.delijn.be/stops/408038", "https://data.delijn.be/stops/408088"], ["https://data.delijn.be/stops/200814", "https://data.delijn.be/stops/200881"], ["https://data.delijn.be/stops/501104", "https://data.delijn.be/stops/506104"], ["https://data.delijn.be/stops/206009", "https://data.delijn.be/stops/206073"], ["https://data.delijn.be/stops/505900", "https://data.delijn.be/stops/509908"], ["https://data.delijn.be/stops/407649", "https://data.delijn.be/stops/409775"], ["https://data.delijn.be/stops/101211", "https://data.delijn.be/stops/102748"], ["https://data.delijn.be/stops/208794", "https://data.delijn.be/stops/218022"], ["https://data.delijn.be/stops/108974", "https://data.delijn.be/stops/108977"], ["https://data.delijn.be/stops/504410", "https://data.delijn.be/stops/504436"], ["https://data.delijn.be/stops/508378", "https://data.delijn.be/stops/508531"], ["https://data.delijn.be/stops/400257", "https://data.delijn.be/stops/400258"], ["https://data.delijn.be/stops/404144", "https://data.delijn.be/stops/404174"], ["https://data.delijn.be/stops/300451", "https://data.delijn.be/stops/300452"], ["https://data.delijn.be/stops/202403", "https://data.delijn.be/stops/202501"], ["https://data.delijn.be/stops/307357", "https://data.delijn.be/stops/307362"], ["https://data.delijn.be/stops/202437", "https://data.delijn.be/stops/202573"], ["https://data.delijn.be/stops/502057", "https://data.delijn.be/stops/507043"], ["https://data.delijn.be/stops/109014", "https://data.delijn.be/stops/404047"], ["https://data.delijn.be/stops/301667", "https://data.delijn.be/stops/301670"], ["https://data.delijn.be/stops/206181", "https://data.delijn.be/stops/206958"], ["https://data.delijn.be/stops/202082", "https://data.delijn.be/stops/203026"], ["https://data.delijn.be/stops/400800", "https://data.delijn.be/stops/400801"], ["https://data.delijn.be/stops/502500", "https://data.delijn.be/stops/507500"], ["https://data.delijn.be/stops/503659", "https://data.delijn.be/stops/509943"], ["https://data.delijn.be/stops/300954", "https://data.delijn.be/stops/308856"], ["https://data.delijn.be/stops/304953", "https://data.delijn.be/stops/304955"], ["https://data.delijn.be/stops/201279", "https://data.delijn.be/stops/209736"], ["https://data.delijn.be/stops/104304", "https://data.delijn.be/stops/109746"], ["https://data.delijn.be/stops/102896", "https://data.delijn.be/stops/105515"], ["https://data.delijn.be/stops/101953", "https://data.delijn.be/stops/108796"], ["https://data.delijn.be/stops/302474", "https://data.delijn.be/stops/302498"], ["https://data.delijn.be/stops/200941", "https://data.delijn.be/stops/211066"], ["https://data.delijn.be/stops/405852", "https://data.delijn.be/stops/409428"], ["https://data.delijn.be/stops/203473", "https://data.delijn.be/stops/203474"], ["https://data.delijn.be/stops/502448", "https://data.delijn.be/stops/507466"], ["https://data.delijn.be/stops/103167", "https://data.delijn.be/stops/109923"], ["https://data.delijn.be/stops/505926", "https://data.delijn.be/stops/509243"], ["https://data.delijn.be/stops/402047", "https://data.delijn.be/stops/402270"], ["https://data.delijn.be/stops/300371", "https://data.delijn.be/stops/300382"], ["https://data.delijn.be/stops/200518", "https://data.delijn.be/stops/201518"], ["https://data.delijn.be/stops/504076", "https://data.delijn.be/stops/509076"], ["https://data.delijn.be/stops/108736", "https://data.delijn.be/stops/108738"], ["https://data.delijn.be/stops/503181", "https://data.delijn.be/stops/508865"], ["https://data.delijn.be/stops/508926", "https://data.delijn.be/stops/508931"], ["https://data.delijn.be/stops/208440", "https://data.delijn.be/stops/209439"], ["https://data.delijn.be/stops/302017", "https://data.delijn.be/stops/302864"], ["https://data.delijn.be/stops/201954", "https://data.delijn.be/stops/210055"], ["https://data.delijn.be/stops/101177", "https://data.delijn.be/stops/106782"], ["https://data.delijn.be/stops/208114", "https://data.delijn.be/stops/219009"], ["https://data.delijn.be/stops/103538", "https://data.delijn.be/stops/108058"], ["https://data.delijn.be/stops/405191", "https://data.delijn.be/stops/405245"], ["https://data.delijn.be/stops/400487", "https://data.delijn.be/stops/407688"], ["https://data.delijn.be/stops/502067", "https://data.delijn.be/stops/507454"], ["https://data.delijn.be/stops/408317", "https://data.delijn.be/stops/408350"], ["https://data.delijn.be/stops/200995", "https://data.delijn.be/stops/209952"], ["https://data.delijn.be/stops/505251", "https://data.delijn.be/stops/508914"], ["https://data.delijn.be/stops/402712", "https://data.delijn.be/stops/402713"], ["https://data.delijn.be/stops/303718", "https://data.delijn.be/stops/303757"], ["https://data.delijn.be/stops/208646", "https://data.delijn.be/stops/211111"], ["https://data.delijn.be/stops/503612", "https://data.delijn.be/stops/508540"], ["https://data.delijn.be/stops/403192", "https://data.delijn.be/stops/409316"], ["https://data.delijn.be/stops/102236", "https://data.delijn.be/stops/105867"], ["https://data.delijn.be/stops/302359", "https://data.delijn.be/stops/307013"], ["https://data.delijn.be/stops/101011", "https://data.delijn.be/stops/102340"], ["https://data.delijn.be/stops/103510", "https://data.delijn.be/stops/104595"], ["https://data.delijn.be/stops/208109", "https://data.delijn.be/stops/209798"], ["https://data.delijn.be/stops/201254", "https://data.delijn.be/stops/203562"], ["https://data.delijn.be/stops/101760", "https://data.delijn.be/stops/101796"], ["https://data.delijn.be/stops/106769", "https://data.delijn.be/stops/106770"], ["https://data.delijn.be/stops/301511", "https://data.delijn.be/stops/301512"], ["https://data.delijn.be/stops/106942", "https://data.delijn.be/stops/108699"], ["https://data.delijn.be/stops/300582", "https://data.delijn.be/stops/308896"], ["https://data.delijn.be/stops/304315", "https://data.delijn.be/stops/304322"], ["https://data.delijn.be/stops/102587", "https://data.delijn.be/stops/109109"], ["https://data.delijn.be/stops/108419", "https://data.delijn.be/stops/108438"], ["https://data.delijn.be/stops/409068", "https://data.delijn.be/stops/409071"], ["https://data.delijn.be/stops/502540", "https://data.delijn.be/stops/507545"], ["https://data.delijn.be/stops/300399", "https://data.delijn.be/stops/300401"], ["https://data.delijn.be/stops/505021", "https://data.delijn.be/stops/507925"], ["https://data.delijn.be/stops/405744", "https://data.delijn.be/stops/405745"], ["https://data.delijn.be/stops/307721", "https://data.delijn.be/stops/307722"], ["https://data.delijn.be/stops/202873", "https://data.delijn.be/stops/203737"], ["https://data.delijn.be/stops/401904", "https://data.delijn.be/stops/406248"], ["https://data.delijn.be/stops/207465", "https://data.delijn.be/stops/207466"], ["https://data.delijn.be/stops/405826", "https://data.delijn.be/stops/409420"], ["https://data.delijn.be/stops/407127", "https://data.delijn.be/stops/407326"], ["https://data.delijn.be/stops/304488", "https://data.delijn.be/stops/304489"], ["https://data.delijn.be/stops/206909", "https://data.delijn.be/stops/207108"], ["https://data.delijn.be/stops/306707", "https://data.delijn.be/stops/307983"], ["https://data.delijn.be/stops/300039", "https://data.delijn.be/stops/300042"], ["https://data.delijn.be/stops/302667", "https://data.delijn.be/stops/302686"], ["https://data.delijn.be/stops/503886", "https://data.delijn.be/stops/508884"], ["https://data.delijn.be/stops/103266", "https://data.delijn.be/stops/104407"], ["https://data.delijn.be/stops/406880", "https://data.delijn.be/stops/409036"], ["https://data.delijn.be/stops/502273", "https://data.delijn.be/stops/507521"], ["https://data.delijn.be/stops/200538", "https://data.delijn.be/stops/201161"], ["https://data.delijn.be/stops/305572", "https://data.delijn.be/stops/305573"], ["https://data.delijn.be/stops/303212", "https://data.delijn.be/stops/304186"], ["https://data.delijn.be/stops/502687", "https://data.delijn.be/stops/508338"], ["https://data.delijn.be/stops/200900", "https://data.delijn.be/stops/202239"], ["https://data.delijn.be/stops/305915", "https://data.delijn.be/stops/305918"], ["https://data.delijn.be/stops/207787", "https://data.delijn.be/stops/209407"], ["https://data.delijn.be/stops/300062", "https://data.delijn.be/stops/307204"], ["https://data.delijn.be/stops/501120", "https://data.delijn.be/stops/506120"], ["https://data.delijn.be/stops/202138", "https://data.delijn.be/stops/210114"], ["https://data.delijn.be/stops/403220", "https://data.delijn.be/stops/403408"], ["https://data.delijn.be/stops/502094", "https://data.delijn.be/stops/502127"], ["https://data.delijn.be/stops/300191", "https://data.delijn.be/stops/300192"], ["https://data.delijn.be/stops/402173", "https://data.delijn.be/stops/410041"], ["https://data.delijn.be/stops/402954", "https://data.delijn.be/stops/404925"], ["https://data.delijn.be/stops/400526", "https://data.delijn.be/stops/400581"], ["https://data.delijn.be/stops/205300", "https://data.delijn.be/stops/205301"], ["https://data.delijn.be/stops/504663", "https://data.delijn.be/stops/509370"], ["https://data.delijn.be/stops/400706", "https://data.delijn.be/stops/401919"], ["https://data.delijn.be/stops/102515", "https://data.delijn.be/stops/102520"], ["https://data.delijn.be/stops/400144", "https://data.delijn.be/stops/400172"], ["https://data.delijn.be/stops/503693", "https://data.delijn.be/stops/508693"], ["https://data.delijn.be/stops/204711", "https://data.delijn.be/stops/205896"], ["https://data.delijn.be/stops/408824", "https://data.delijn.be/stops/408833"], ["https://data.delijn.be/stops/202976", "https://data.delijn.be/stops/203395"], ["https://data.delijn.be/stops/302571", "https://data.delijn.be/stops/303299"], ["https://data.delijn.be/stops/207712", "https://data.delijn.be/stops/207713"], ["https://data.delijn.be/stops/208317", "https://data.delijn.be/stops/209299"], ["https://data.delijn.be/stops/304133", "https://data.delijn.be/stops/304134"], ["https://data.delijn.be/stops/505044", "https://data.delijn.be/stops/505045"], ["https://data.delijn.be/stops/502038", "https://data.delijn.be/stops/507038"], ["https://data.delijn.be/stops/301606", "https://data.delijn.be/stops/307675"], ["https://data.delijn.be/stops/504535", "https://data.delijn.be/stops/509979"], ["https://data.delijn.be/stops/405066", "https://data.delijn.be/stops/405810"], ["https://data.delijn.be/stops/203974", "https://data.delijn.be/stops/205235"], ["https://data.delijn.be/stops/300950", "https://data.delijn.be/stops/300951"], ["https://data.delijn.be/stops/208655", "https://data.delijn.be/stops/209090"], ["https://data.delijn.be/stops/302439", "https://data.delijn.be/stops/302442"], ["https://data.delijn.be/stops/302723", "https://data.delijn.be/stops/307337"], ["https://data.delijn.be/stops/206158", "https://data.delijn.be/stops/207158"], ["https://data.delijn.be/stops/402725", "https://data.delijn.be/stops/402730"], ["https://data.delijn.be/stops/504694", "https://data.delijn.be/stops/505375"], ["https://data.delijn.be/stops/102308", "https://data.delijn.be/stops/102944"], ["https://data.delijn.be/stops/302112", "https://data.delijn.be/stops/302113"], ["https://data.delijn.be/stops/304764", "https://data.delijn.be/stops/304765"], ["https://data.delijn.be/stops/208121", "https://data.delijn.be/stops/209206"], ["https://data.delijn.be/stops/201914", "https://data.delijn.be/stops/207966"], ["https://data.delijn.be/stops/306897", "https://data.delijn.be/stops/306899"], ["https://data.delijn.be/stops/508232", "https://data.delijn.be/stops/508263"], ["https://data.delijn.be/stops/502178", "https://data.delijn.be/stops/509723"], ["https://data.delijn.be/stops/301893", "https://data.delijn.be/stops/301894"], ["https://data.delijn.be/stops/403612", "https://data.delijn.be/stops/403654"], ["https://data.delijn.be/stops/205245", "https://data.delijn.be/stops/205248"], ["https://data.delijn.be/stops/204164", "https://data.delijn.be/stops/205770"], ["https://data.delijn.be/stops/211129", "https://data.delijn.be/stops/211130"], ["https://data.delijn.be/stops/505566", "https://data.delijn.be/stops/508752"], ["https://data.delijn.be/stops/402991", "https://data.delijn.be/stops/404827"], ["https://data.delijn.be/stops/200956", "https://data.delijn.be/stops/203392"], ["https://data.delijn.be/stops/401757", "https://data.delijn.be/stops/406341"], ["https://data.delijn.be/stops/300398", "https://data.delijn.be/stops/304588"], ["https://data.delijn.be/stops/407089", "https://data.delijn.be/stops/407258"], ["https://data.delijn.be/stops/102441", "https://data.delijn.be/stops/102442"], ["https://data.delijn.be/stops/202208", "https://data.delijn.be/stops/203208"], ["https://data.delijn.be/stops/408168", "https://data.delijn.be/stops/408169"], ["https://data.delijn.be/stops/304753", "https://data.delijn.be/stops/308699"], ["https://data.delijn.be/stops/505954", "https://data.delijn.be/stops/505958"], ["https://data.delijn.be/stops/404572", "https://data.delijn.be/stops/404583"], ["https://data.delijn.be/stops/504203", "https://data.delijn.be/stops/504207"], ["https://data.delijn.be/stops/201694", "https://data.delijn.be/stops/203033"], ["https://data.delijn.be/stops/201304", "https://data.delijn.be/stops/203757"], ["https://data.delijn.be/stops/202642", "https://data.delijn.be/stops/210050"], ["https://data.delijn.be/stops/500957", "https://data.delijn.be/stops/503282"], ["https://data.delijn.be/stops/503656", "https://data.delijn.be/stops/508748"], ["https://data.delijn.be/stops/307441", "https://data.delijn.be/stops/307825"], ["https://data.delijn.be/stops/104028", "https://data.delijn.be/stops/106939"], ["https://data.delijn.be/stops/508154", "https://data.delijn.be/stops/509843"], ["https://data.delijn.be/stops/504444", "https://data.delijn.be/stops/509444"], ["https://data.delijn.be/stops/408117", "https://data.delijn.be/stops/408231"], ["https://data.delijn.be/stops/407004", "https://data.delijn.be/stops/407051"], ["https://data.delijn.be/stops/109441", "https://data.delijn.be/stops/109520"], ["https://data.delijn.be/stops/202463", "https://data.delijn.be/stops/203463"], ["https://data.delijn.be/stops/504507", "https://data.delijn.be/stops/509016"], ["https://data.delijn.be/stops/202908", "https://data.delijn.be/stops/203817"], ["https://data.delijn.be/stops/102869", "https://data.delijn.be/stops/104980"], ["https://data.delijn.be/stops/300331", "https://data.delijn.be/stops/300340"], ["https://data.delijn.be/stops/502184", "https://data.delijn.be/stops/507189"], ["https://data.delijn.be/stops/502461", "https://data.delijn.be/stops/507464"], ["https://data.delijn.be/stops/103498", "https://data.delijn.be/stops/103501"], ["https://data.delijn.be/stops/502027", "https://data.delijn.be/stops/502041"], ["https://data.delijn.be/stops/208304", "https://data.delijn.be/stops/209306"], ["https://data.delijn.be/stops/406112", "https://data.delijn.be/stops/407145"], ["https://data.delijn.be/stops/109677", "https://data.delijn.be/stops/109680"], ["https://data.delijn.be/stops/304247", "https://data.delijn.be/stops/304286"], ["https://data.delijn.be/stops/204633", "https://data.delijn.be/stops/205633"], ["https://data.delijn.be/stops/101833", "https://data.delijn.be/stops/107091"], ["https://data.delijn.be/stops/501092", "https://data.delijn.be/stops/506225"], ["https://data.delijn.be/stops/502077", "https://data.delijn.be/stops/507080"], ["https://data.delijn.be/stops/300805", "https://data.delijn.be/stops/304774"], ["https://data.delijn.be/stops/306112", "https://data.delijn.be/stops/306113"], ["https://data.delijn.be/stops/301745", "https://data.delijn.be/stops/301747"], ["https://data.delijn.be/stops/202675", "https://data.delijn.be/stops/203675"], ["https://data.delijn.be/stops/107359", "https://data.delijn.be/stops/107361"], ["https://data.delijn.be/stops/504965", "https://data.delijn.be/stops/508720"], ["https://data.delijn.be/stops/503315", "https://data.delijn.be/stops/508307"], ["https://data.delijn.be/stops/206064", "https://data.delijn.be/stops/207502"], ["https://data.delijn.be/stops/302172", "https://data.delijn.be/stops/302183"], ["https://data.delijn.be/stops/304368", "https://data.delijn.be/stops/307372"], ["https://data.delijn.be/stops/204304", "https://data.delijn.be/stops/205297"], ["https://data.delijn.be/stops/503817", "https://data.delijn.be/stops/508821"], ["https://data.delijn.be/stops/502740", "https://data.delijn.be/stops/507740"], ["https://data.delijn.be/stops/505116", "https://data.delijn.be/stops/505435"], ["https://data.delijn.be/stops/105557", "https://data.delijn.be/stops/105561"], ["https://data.delijn.be/stops/204412", "https://data.delijn.be/stops/205428"], ["https://data.delijn.be/stops/302306", "https://data.delijn.be/stops/302316"], ["https://data.delijn.be/stops/501441", "https://data.delijn.be/stops/506443"], ["https://data.delijn.be/stops/200967", "https://data.delijn.be/stops/201674"], ["https://data.delijn.be/stops/406829", "https://data.delijn.be/stops/409457"], ["https://data.delijn.be/stops/509410", "https://data.delijn.be/stops/509696"], ["https://data.delijn.be/stops/305334", "https://data.delijn.be/stops/307602"], ["https://data.delijn.be/stops/404559", "https://data.delijn.be/stops/409292"], ["https://data.delijn.be/stops/101199", "https://data.delijn.be/stops/101661"], ["https://data.delijn.be/stops/200478", "https://data.delijn.be/stops/211072"], ["https://data.delijn.be/stops/402776", "https://data.delijn.be/stops/406472"], ["https://data.delijn.be/stops/404401", "https://data.delijn.be/stops/404424"], ["https://data.delijn.be/stops/400204", "https://data.delijn.be/stops/400215"], ["https://data.delijn.be/stops/204398", "https://data.delijn.be/stops/205772"], ["https://data.delijn.be/stops/407906", "https://data.delijn.be/stops/408421"], ["https://data.delijn.be/stops/403142", "https://data.delijn.be/stops/403145"], ["https://data.delijn.be/stops/504213", "https://data.delijn.be/stops/504218"], ["https://data.delijn.be/stops/203927", "https://data.delijn.be/stops/208724"], ["https://data.delijn.be/stops/200804", "https://data.delijn.be/stops/203281"], ["https://data.delijn.be/stops/301662", "https://data.delijn.be/stops/302137"], ["https://data.delijn.be/stops/200861", "https://data.delijn.be/stops/201493"], ["https://data.delijn.be/stops/501450", "https://data.delijn.be/stops/501454"], ["https://data.delijn.be/stops/503439", "https://data.delijn.be/stops/508694"], ["https://data.delijn.be/stops/206248", "https://data.delijn.be/stops/207248"], ["https://data.delijn.be/stops/400734", "https://data.delijn.be/stops/405172"], ["https://data.delijn.be/stops/401391", "https://data.delijn.be/stops/406568"], ["https://data.delijn.be/stops/200163", "https://data.delijn.be/stops/201419"], ["https://data.delijn.be/stops/504004", "https://data.delijn.be/stops/509317"], ["https://data.delijn.be/stops/206521", "https://data.delijn.be/stops/207521"], ["https://data.delijn.be/stops/300753", "https://data.delijn.be/stops/300754"], ["https://data.delijn.be/stops/404107", "https://data.delijn.be/stops/408554"], ["https://data.delijn.be/stops/203344", "https://data.delijn.be/stops/209747"], ["https://data.delijn.be/stops/200176", "https://data.delijn.be/stops/201337"], ["https://data.delijn.be/stops/206941", "https://data.delijn.be/stops/219012"], ["https://data.delijn.be/stops/301371", "https://data.delijn.be/stops/304696"], ["https://data.delijn.be/stops/303083", "https://data.delijn.be/stops/303146"], ["https://data.delijn.be/stops/400799", "https://data.delijn.be/stops/409604"], ["https://data.delijn.be/stops/201636", "https://data.delijn.be/stops/201941"], ["https://data.delijn.be/stops/201876", "https://data.delijn.be/stops/203658"], ["https://data.delijn.be/stops/302406", "https://data.delijn.be/stops/308673"], ["https://data.delijn.be/stops/400408", "https://data.delijn.be/stops/400409"], ["https://data.delijn.be/stops/503746", "https://data.delijn.be/stops/503749"], ["https://data.delijn.be/stops/206093", "https://data.delijn.be/stops/207094"], ["https://data.delijn.be/stops/304954", "https://data.delijn.be/stops/304964"], ["https://data.delijn.be/stops/505737", "https://data.delijn.be/stops/507710"], ["https://data.delijn.be/stops/103965", "https://data.delijn.be/stops/105400"], ["https://data.delijn.be/stops/308749", "https://data.delijn.be/stops/308751"], ["https://data.delijn.be/stops/108627", "https://data.delijn.be/stops/301853"], ["https://data.delijn.be/stops/301525", "https://data.delijn.be/stops/301527"], ["https://data.delijn.be/stops/306698", "https://data.delijn.be/stops/307934"], ["https://data.delijn.be/stops/503947", "https://data.delijn.be/stops/504795"], ["https://data.delijn.be/stops/404338", "https://data.delijn.be/stops/404339"], ["https://data.delijn.be/stops/206556", "https://data.delijn.be/stops/207556"], ["https://data.delijn.be/stops/401519", "https://data.delijn.be/stops/401723"], ["https://data.delijn.be/stops/507023", "https://data.delijn.be/stops/509758"], ["https://data.delijn.be/stops/409393", "https://data.delijn.be/stops/409394"], ["https://data.delijn.be/stops/202442", "https://data.delijn.be/stops/203379"], ["https://data.delijn.be/stops/202966", "https://data.delijn.be/stops/203966"], ["https://data.delijn.be/stops/304172", "https://data.delijn.be/stops/307539"], ["https://data.delijn.be/stops/305593", "https://data.delijn.be/stops/308816"], ["https://data.delijn.be/stops/208062", "https://data.delijn.be/stops/209062"], ["https://data.delijn.be/stops/200488", "https://data.delijn.be/stops/202454"], ["https://data.delijn.be/stops/406003", "https://data.delijn.be/stops/406100"], ["https://data.delijn.be/stops/502181", "https://data.delijn.be/stops/502686"], ["https://data.delijn.be/stops/300855", "https://data.delijn.be/stops/306052"], ["https://data.delijn.be/stops/202607", "https://data.delijn.be/stops/209979"], ["https://data.delijn.be/stops/105581", "https://data.delijn.be/stops/305787"], ["https://data.delijn.be/stops/504225", "https://data.delijn.be/stops/509622"], ["https://data.delijn.be/stops/404175", "https://data.delijn.be/stops/404199"], ["https://data.delijn.be/stops/200560", "https://data.delijn.be/stops/201662"], ["https://data.delijn.be/stops/106792", "https://data.delijn.be/stops/106794"], ["https://data.delijn.be/stops/306066", "https://data.delijn.be/stops/307204"], ["https://data.delijn.be/stops/502311", "https://data.delijn.be/stops/507311"], ["https://data.delijn.be/stops/502316", "https://data.delijn.be/stops/507316"], ["https://data.delijn.be/stops/306162", "https://data.delijn.be/stops/308930"], ["https://data.delijn.be/stops/103493", "https://data.delijn.be/stops/103501"], ["https://data.delijn.be/stops/404584", "https://data.delijn.be/stops/405620"], ["https://data.delijn.be/stops/201768", "https://data.delijn.be/stops/201782"], ["https://data.delijn.be/stops/203108", "https://data.delijn.be/stops/205793"], ["https://data.delijn.be/stops/401311", "https://data.delijn.be/stops/401321"], ["https://data.delijn.be/stops/300896", "https://data.delijn.be/stops/300940"], ["https://data.delijn.be/stops/506179", "https://data.delijn.be/stops/506775"], ["https://data.delijn.be/stops/501187", "https://data.delijn.be/stops/505722"], ["https://data.delijn.be/stops/203027", "https://data.delijn.be/stops/203030"], ["https://data.delijn.be/stops/301528", "https://data.delijn.be/stops/301581"], ["https://data.delijn.be/stops/507204", "https://data.delijn.be/stops/508691"], ["https://data.delijn.be/stops/105128", "https://data.delijn.be/stops/105198"], ["https://data.delijn.be/stops/104601", "https://data.delijn.be/stops/106825"], ["https://data.delijn.be/stops/403715", "https://data.delijn.be/stops/406889"], ["https://data.delijn.be/stops/104592", "https://data.delijn.be/stops/108033"], ["https://data.delijn.be/stops/206340", "https://data.delijn.be/stops/206366"], ["https://data.delijn.be/stops/102668", "https://data.delijn.be/stops/300110"], ["https://data.delijn.be/stops/503359", "https://data.delijn.be/stops/508813"], ["https://data.delijn.be/stops/404628", "https://data.delijn.be/stops/404638"], ["https://data.delijn.be/stops/301999", "https://data.delijn.be/stops/306317"], ["https://data.delijn.be/stops/501027", "https://data.delijn.be/stops/506129"], ["https://data.delijn.be/stops/502423", "https://data.delijn.be/stops/507422"], ["https://data.delijn.be/stops/301898", "https://data.delijn.be/stops/306957"], ["https://data.delijn.be/stops/206957", "https://data.delijn.be/stops/207957"], ["https://data.delijn.be/stops/206644", "https://data.delijn.be/stops/209686"], ["https://data.delijn.be/stops/102280", "https://data.delijn.be/stops/107450"], ["https://data.delijn.be/stops/203742", "https://data.delijn.be/stops/203743"], ["https://data.delijn.be/stops/404939", "https://data.delijn.be/stops/405648"], ["https://data.delijn.be/stops/406576", "https://data.delijn.be/stops/407184"], ["https://data.delijn.be/stops/102023", "https://data.delijn.be/stops/109962"], ["https://data.delijn.be/stops/105137", "https://data.delijn.be/stops/108804"], ["https://data.delijn.be/stops/505184", "https://data.delijn.be/stops/509555"], ["https://data.delijn.be/stops/405733", "https://data.delijn.be/stops/405735"], ["https://data.delijn.be/stops/501073", "https://data.delijn.be/stops/506381"], ["https://data.delijn.be/stops/401521", "https://data.delijn.be/stops/402023"], ["https://data.delijn.be/stops/405108", "https://data.delijn.be/stops/405109"], ["https://data.delijn.be/stops/200924", "https://data.delijn.be/stops/203702"], ["https://data.delijn.be/stops/104133", "https://data.delijn.be/stops/108038"], ["https://data.delijn.be/stops/304596", "https://data.delijn.be/stops/304637"], ["https://data.delijn.be/stops/109750", "https://data.delijn.be/stops/109900"], ["https://data.delijn.be/stops/308139", "https://data.delijn.be/stops/308143"], ["https://data.delijn.be/stops/201663", "https://data.delijn.be/stops/202321"], ["https://data.delijn.be/stops/501337", "https://data.delijn.be/stops/506477"], ["https://data.delijn.be/stops/501347", "https://data.delijn.be/stops/506292"], ["https://data.delijn.be/stops/303416", "https://data.delijn.be/stops/303417"], ["https://data.delijn.be/stops/409676", "https://data.delijn.be/stops/409677"], ["https://data.delijn.be/stops/504272", "https://data.delijn.be/stops/504699"], ["https://data.delijn.be/stops/502673", "https://data.delijn.be/stops/507269"], ["https://data.delijn.be/stops/500158", "https://data.delijn.be/stops/508863"], ["https://data.delijn.be/stops/200751", "https://data.delijn.be/stops/200752"], ["https://data.delijn.be/stops/501695", "https://data.delijn.be/stops/505690"], ["https://data.delijn.be/stops/301967", "https://data.delijn.be/stops/307227"], ["https://data.delijn.be/stops/305689", "https://data.delijn.be/stops/305703"], ["https://data.delijn.be/stops/305333", "https://data.delijn.be/stops/305334"], ["https://data.delijn.be/stops/201279", "https://data.delijn.be/stops/201619"], ["https://data.delijn.be/stops/208145", "https://data.delijn.be/stops/209698"], ["https://data.delijn.be/stops/207958", "https://data.delijn.be/stops/302152"], ["https://data.delijn.be/stops/504128", "https://data.delijn.be/stops/505305"], ["https://data.delijn.be/stops/405717", "https://data.delijn.be/stops/405745"], ["https://data.delijn.be/stops/502204", "https://data.delijn.be/stops/503991"], ["https://data.delijn.be/stops/102185", "https://data.delijn.be/stops/102345"], ["https://data.delijn.be/stops/508520", "https://data.delijn.be/stops/508722"], ["https://data.delijn.be/stops/205673", "https://data.delijn.be/stops/205676"], ["https://data.delijn.be/stops/204999", "https://data.delijn.be/stops/207921"], ["https://data.delijn.be/stops/206803", "https://data.delijn.be/stops/208530"], ["https://data.delijn.be/stops/101903", "https://data.delijn.be/stops/105456"], ["https://data.delijn.be/stops/207679", "https://data.delijn.be/stops/209149"], ["https://data.delijn.be/stops/302609", "https://data.delijn.be/stops/302635"], ["https://data.delijn.be/stops/306007", "https://data.delijn.be/stops/308657"], ["https://data.delijn.be/stops/208048", "https://data.delijn.be/stops/209048"], ["https://data.delijn.be/stops/105653", "https://data.delijn.be/stops/105654"], ["https://data.delijn.be/stops/405180", "https://data.delijn.be/stops/405181"], ["https://data.delijn.be/stops/503717", "https://data.delijn.be/stops/507352"], ["https://data.delijn.be/stops/402602", "https://data.delijn.be/stops/408079"], ["https://data.delijn.be/stops/206776", "https://data.delijn.be/stops/209487"], ["https://data.delijn.be/stops/302843", "https://data.delijn.be/stops/302845"], ["https://data.delijn.be/stops/302334", "https://data.delijn.be/stops/302571"], ["https://data.delijn.be/stops/409722", "https://data.delijn.be/stops/409723"], ["https://data.delijn.be/stops/409330", "https://data.delijn.be/stops/409331"], ["https://data.delijn.be/stops/208259", "https://data.delijn.be/stops/208260"], ["https://data.delijn.be/stops/301076", "https://data.delijn.be/stops/305495"], ["https://data.delijn.be/stops/305226", "https://data.delijn.be/stops/305264"], ["https://data.delijn.be/stops/101519", "https://data.delijn.be/stops/109051"], ["https://data.delijn.be/stops/207803", "https://data.delijn.be/stops/300219"], ["https://data.delijn.be/stops/204506", "https://data.delijn.be/stops/204821"], ["https://data.delijn.be/stops/307818", "https://data.delijn.be/stops/308754"], ["https://data.delijn.be/stops/205474", "https://data.delijn.be/stops/205475"], ["https://data.delijn.be/stops/300603", "https://data.delijn.be/stops/300606"], ["https://data.delijn.be/stops/505153", "https://data.delijn.be/stops/505154"], ["https://data.delijn.be/stops/501365", "https://data.delijn.be/stops/506368"], ["https://data.delijn.be/stops/300177", "https://data.delijn.be/stops/300228"], ["https://data.delijn.be/stops/506130", "https://data.delijn.be/stops/506134"], ["https://data.delijn.be/stops/104031", "https://data.delijn.be/stops/105083"], ["https://data.delijn.be/stops/107680", "https://data.delijn.be/stops/108620"], ["https://data.delijn.be/stops/303180", "https://data.delijn.be/stops/303181"], ["https://data.delijn.be/stops/500022", "https://data.delijn.be/stops/500023"], ["https://data.delijn.be/stops/108734", "https://data.delijn.be/stops/108737"], ["https://data.delijn.be/stops/403834", "https://data.delijn.be/stops/405635"], ["https://data.delijn.be/stops/104605", "https://data.delijn.be/stops/104681"], ["https://data.delijn.be/stops/500029", "https://data.delijn.be/stops/503121"], ["https://data.delijn.be/stops/402782", "https://data.delijn.be/stops/402796"], ["https://data.delijn.be/stops/305649", "https://data.delijn.be/stops/305671"], ["https://data.delijn.be/stops/501416", "https://data.delijn.be/stops/501475"], ["https://data.delijn.be/stops/401084", "https://data.delijn.be/stops/401166"], ["https://data.delijn.be/stops/204680", "https://data.delijn.be/stops/205680"], ["https://data.delijn.be/stops/208132", "https://data.delijn.be/stops/208199"], ["https://data.delijn.be/stops/400041", "https://data.delijn.be/stops/400042"], ["https://data.delijn.be/stops/400761", "https://data.delijn.be/stops/400879"], ["https://data.delijn.be/stops/302156", "https://data.delijn.be/stops/307186"], ["https://data.delijn.be/stops/503186", "https://data.delijn.be/stops/503192"], ["https://data.delijn.be/stops/504546", "https://data.delijn.be/stops/504551"], ["https://data.delijn.be/stops/208051", "https://data.delijn.be/stops/209051"], ["https://data.delijn.be/stops/302168", "https://data.delijn.be/stops/304165"], ["https://data.delijn.be/stops/302878", "https://data.delijn.be/stops/303139"], ["https://data.delijn.be/stops/106906", "https://data.delijn.be/stops/106907"], ["https://data.delijn.be/stops/206201", "https://data.delijn.be/stops/206203"], ["https://data.delijn.be/stops/505650", "https://data.delijn.be/stops/507756"], ["https://data.delijn.be/stops/205107", "https://data.delijn.be/stops/205209"], ["https://data.delijn.be/stops/206431", "https://data.delijn.be/stops/209690"], ["https://data.delijn.be/stops/210057", "https://data.delijn.be/stops/211063"], ["https://data.delijn.be/stops/201197", "https://data.delijn.be/stops/201200"], ["https://data.delijn.be/stops/502749", "https://data.delijn.be/stops/507418"], ["https://data.delijn.be/stops/202161", "https://data.delijn.be/stops/202282"], ["https://data.delijn.be/stops/204103", "https://data.delijn.be/stops/206390"], ["https://data.delijn.be/stops/101355", "https://data.delijn.be/stops/101806"], ["https://data.delijn.be/stops/108264", "https://data.delijn.be/stops/108266"], ["https://data.delijn.be/stops/105283", "https://data.delijn.be/stops/107995"], ["https://data.delijn.be/stops/206725", "https://data.delijn.be/stops/207986"], ["https://data.delijn.be/stops/206974", "https://data.delijn.be/stops/207974"], ["https://data.delijn.be/stops/404548", "https://data.delijn.be/stops/409601"], ["https://data.delijn.be/stops/204291", "https://data.delijn.be/stops/204330"], ["https://data.delijn.be/stops/505949", "https://data.delijn.be/stops/505990"], ["https://data.delijn.be/stops/102244", "https://data.delijn.be/stops/105877"], ["https://data.delijn.be/stops/501387", "https://data.delijn.be/stops/506392"], ["https://data.delijn.be/stops/101686", "https://data.delijn.be/stops/101691"], ["https://data.delijn.be/stops/504150", "https://data.delijn.be/stops/509161"], ["https://data.delijn.be/stops/304888", "https://data.delijn.be/stops/304906"], ["https://data.delijn.be/stops/206175", "https://data.delijn.be/stops/207481"], ["https://data.delijn.be/stops/208545", "https://data.delijn.be/stops/209544"], ["https://data.delijn.be/stops/101010", "https://data.delijn.be/stops/102950"], ["https://data.delijn.be/stops/403779", "https://data.delijn.be/stops/404264"], ["https://data.delijn.be/stops/106925", "https://data.delijn.be/stops/106941"], ["https://data.delijn.be/stops/200406", "https://data.delijn.be/stops/201406"], ["https://data.delijn.be/stops/406374", "https://data.delijn.be/stops/407721"], ["https://data.delijn.be/stops/206362", "https://data.delijn.be/stops/207362"], ["https://data.delijn.be/stops/401647", "https://data.delijn.be/stops/408713"], ["https://data.delijn.be/stops/200844", "https://data.delijn.be/stops/202330"], ["https://data.delijn.be/stops/204441", "https://data.delijn.be/stops/205396"], ["https://data.delijn.be/stops/506095", "https://data.delijn.be/stops/506098"], ["https://data.delijn.be/stops/101298", "https://data.delijn.be/stops/105783"], ["https://data.delijn.be/stops/208117", "https://data.delijn.be/stops/209234"], ["https://data.delijn.be/stops/503879", "https://data.delijn.be/stops/508881"], ["https://data.delijn.be/stops/306554", "https://data.delijn.be/stops/306557"], ["https://data.delijn.be/stops/105405", "https://data.delijn.be/stops/105410"], ["https://data.delijn.be/stops/204241", "https://data.delijn.be/stops/205175"], ["https://data.delijn.be/stops/206082", "https://data.delijn.be/stops/217010"], ["https://data.delijn.be/stops/503706", "https://data.delijn.be/stops/508647"], ["https://data.delijn.be/stops/307108", "https://data.delijn.be/stops/307114"], ["https://data.delijn.be/stops/301103", "https://data.delijn.be/stops/303325"], ["https://data.delijn.be/stops/504123", "https://data.delijn.be/stops/504129"], ["https://data.delijn.be/stops/402524", "https://data.delijn.be/stops/402554"], ["https://data.delijn.be/stops/406520", "https://data.delijn.be/stops/407444"], ["https://data.delijn.be/stops/208223", "https://data.delijn.be/stops/209223"], ["https://data.delijn.be/stops/503461", "https://data.delijn.be/stops/503465"], ["https://data.delijn.be/stops/102924", "https://data.delijn.be/stops/107953"], ["https://data.delijn.be/stops/300702", "https://data.delijn.be/stops/308066"], ["https://data.delijn.be/stops/200269", "https://data.delijn.be/stops/201393"], ["https://data.delijn.be/stops/305558", "https://data.delijn.be/stops/308652"], ["https://data.delijn.be/stops/305494", "https://data.delijn.be/stops/305495"], ["https://data.delijn.be/stops/200863", "https://data.delijn.be/stops/201493"], ["https://data.delijn.be/stops/203933", "https://data.delijn.be/stops/208681"], ["https://data.delijn.be/stops/403788", "https://data.delijn.be/stops/408962"], ["https://data.delijn.be/stops/206106", "https://data.delijn.be/stops/206910"], ["https://data.delijn.be/stops/503647", "https://data.delijn.be/stops/509750"], ["https://data.delijn.be/stops/300514", "https://data.delijn.be/stops/300539"], ["https://data.delijn.be/stops/407204", "https://data.delijn.be/stops/407206"], ["https://data.delijn.be/stops/306628", "https://data.delijn.be/stops/306629"], ["https://data.delijn.be/stops/407326", "https://data.delijn.be/stops/407327"], ["https://data.delijn.be/stops/505515", "https://data.delijn.be/stops/505615"], ["https://data.delijn.be/stops/300664", "https://data.delijn.be/stops/305814"], ["https://data.delijn.be/stops/403565", "https://data.delijn.be/stops/410287"], ["https://data.delijn.be/stops/200103", "https://data.delijn.be/stops/200140"], ["https://data.delijn.be/stops/402532", "https://data.delijn.be/stops/402539"], ["https://data.delijn.be/stops/404662", "https://data.delijn.be/stops/404665"], ["https://data.delijn.be/stops/207358", "https://data.delijn.be/stops/207740"], ["https://data.delijn.be/stops/405950", "https://data.delijn.be/stops/308155"], ["https://data.delijn.be/stops/208449", "https://data.delijn.be/stops/218015"], ["https://data.delijn.be/stops/503396", "https://data.delijn.be/stops/508387"], ["https://data.delijn.be/stops/508619", "https://data.delijn.be/stops/508626"], ["https://data.delijn.be/stops/504993", "https://data.delijn.be/stops/505972"], ["https://data.delijn.be/stops/403486", "https://data.delijn.be/stops/410114"], ["https://data.delijn.be/stops/400569", "https://data.delijn.be/stops/403186"], ["https://data.delijn.be/stops/207512", "https://data.delijn.be/stops/207598"], ["https://data.delijn.be/stops/305070", "https://data.delijn.be/stops/308927"], ["https://data.delijn.be/stops/304581", "https://data.delijn.be/stops/304624"], ["https://data.delijn.be/stops/302348", "https://data.delijn.be/stops/302367"], ["https://data.delijn.be/stops/509217", "https://data.delijn.be/stops/509221"], ["https://data.delijn.be/stops/401015", "https://data.delijn.be/stops/401019"], ["https://data.delijn.be/stops/201473", "https://data.delijn.be/stops/208939"], ["https://data.delijn.be/stops/208167", "https://data.delijn.be/stops/208175"], ["https://data.delijn.be/stops/408567", "https://data.delijn.be/stops/408795"], ["https://data.delijn.be/stops/201047", "https://data.delijn.be/stops/203470"], ["https://data.delijn.be/stops/209606", "https://data.delijn.be/stops/209607"], ["https://data.delijn.be/stops/102054", "https://data.delijn.be/stops/104565"], ["https://data.delijn.be/stops/108284", "https://data.delijn.be/stops/109363"], ["https://data.delijn.be/stops/207542", "https://data.delijn.be/stops/209750"], ["https://data.delijn.be/stops/402312", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/401486", "https://data.delijn.be/stops/401887"], ["https://data.delijn.be/stops/508271", "https://data.delijn.be/stops/509822"], ["https://data.delijn.be/stops/504299", "https://data.delijn.be/stops/504307"], ["https://data.delijn.be/stops/109196", "https://data.delijn.be/stops/109206"], ["https://data.delijn.be/stops/400314", "https://data.delijn.be/stops/400315"], ["https://data.delijn.be/stops/401038", "https://data.delijn.be/stops/401100"], ["https://data.delijn.be/stops/105993", "https://data.delijn.be/stops/107957"], ["https://data.delijn.be/stops/105728", "https://data.delijn.be/stops/109845"], ["https://data.delijn.be/stops/404786", "https://data.delijn.be/stops/404832"], ["https://data.delijn.be/stops/208742", "https://data.delijn.be/stops/208767"], ["https://data.delijn.be/stops/408552", "https://data.delijn.be/stops/408647"], ["https://data.delijn.be/stops/101217", "https://data.delijn.be/stops/101218"], ["https://data.delijn.be/stops/102720", "https://data.delijn.be/stops/102874"], ["https://data.delijn.be/stops/204513", "https://data.delijn.be/stops/205334"], ["https://data.delijn.be/stops/207369", "https://data.delijn.be/stops/207371"], ["https://data.delijn.be/stops/502401", "https://data.delijn.be/stops/502588"], ["https://data.delijn.be/stops/204734", "https://data.delijn.be/stops/205758"], ["https://data.delijn.be/stops/504649", "https://data.delijn.be/stops/509116"], ["https://data.delijn.be/stops/203896", "https://data.delijn.be/stops/211126"], ["https://data.delijn.be/stops/300687", "https://data.delijn.be/stops/300695"], ["https://data.delijn.be/stops/206532", "https://data.delijn.be/stops/206582"], ["https://data.delijn.be/stops/502800", "https://data.delijn.be/stops/502801"], ["https://data.delijn.be/stops/308477", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/102979", "https://data.delijn.be/stops/106833"], ["https://data.delijn.be/stops/405618", "https://data.delijn.be/stops/407160"], ["https://data.delijn.be/stops/404473", "https://data.delijn.be/stops/404567"], ["https://data.delijn.be/stops/106171", "https://data.delijn.be/stops/106466"], ["https://data.delijn.be/stops/204299", "https://data.delijn.be/stops/204352"], ["https://data.delijn.be/stops/103690", "https://data.delijn.be/stops/105625"], ["https://data.delijn.be/stops/401408", "https://data.delijn.be/stops/304600"], ["https://data.delijn.be/stops/204519", "https://data.delijn.be/stops/205483"], ["https://data.delijn.be/stops/104419", "https://data.delijn.be/stops/204287"], ["https://data.delijn.be/stops/201168", "https://data.delijn.be/stops/202642"], ["https://data.delijn.be/stops/401045", "https://data.delijn.be/stops/408939"], ["https://data.delijn.be/stops/501194", "https://data.delijn.be/stops/506194"], ["https://data.delijn.be/stops/400306", "https://data.delijn.be/stops/400439"], ["https://data.delijn.be/stops/200966", "https://data.delijn.be/stops/209039"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/504608"], ["https://data.delijn.be/stops/303378", "https://data.delijn.be/stops/308893"], ["https://data.delijn.be/stops/403311", "https://data.delijn.be/stops/410013"], ["https://data.delijn.be/stops/305519", "https://data.delijn.be/stops/307831"], ["https://data.delijn.be/stops/302691", "https://data.delijn.be/stops/302698"], ["https://data.delijn.be/stops/408272", "https://data.delijn.be/stops/408375"], ["https://data.delijn.be/stops/109057", "https://data.delijn.be/stops/405032"], ["https://data.delijn.be/stops/503594", "https://data.delijn.be/stops/508597"], ["https://data.delijn.be/stops/304939", "https://data.delijn.be/stops/304949"], ["https://data.delijn.be/stops/506615", "https://data.delijn.be/stops/506616"], ["https://data.delijn.be/stops/400184", "https://data.delijn.be/stops/407665"], ["https://data.delijn.be/stops/504019", "https://data.delijn.be/stops/509021"], ["https://data.delijn.be/stops/405433", "https://data.delijn.be/stops/408529"], ["https://data.delijn.be/stops/408820", "https://data.delijn.be/stops/408832"], ["https://data.delijn.be/stops/105092", "https://data.delijn.be/stops/108882"], ["https://data.delijn.be/stops/301752", "https://data.delijn.be/stops/307457"], ["https://data.delijn.be/stops/501359", "https://data.delijn.be/stops/501568"], ["https://data.delijn.be/stops/303153", "https://data.delijn.be/stops/303193"], ["https://data.delijn.be/stops/308377", "https://data.delijn.be/stops/308407"], ["https://data.delijn.be/stops/508450", "https://data.delijn.be/stops/508467"], ["https://data.delijn.be/stops/303872", "https://data.delijn.be/stops/304080"], ["https://data.delijn.be/stops/204729", "https://data.delijn.be/stops/205731"], ["https://data.delijn.be/stops/403263", "https://data.delijn.be/stops/403454"], ["https://data.delijn.be/stops/102150", "https://data.delijn.be/stops/106010"], ["https://data.delijn.be/stops/406432", "https://data.delijn.be/stops/409407"], ["https://data.delijn.be/stops/201307", "https://data.delijn.be/stops/211090"], ["https://data.delijn.be/stops/406286", "https://data.delijn.be/stops/406287"], ["https://data.delijn.be/stops/107955", "https://data.delijn.be/stops/107956"], ["https://data.delijn.be/stops/205822", "https://data.delijn.be/stops/205823"], ["https://data.delijn.be/stops/403900", "https://data.delijn.be/stops/403943"], ["https://data.delijn.be/stops/400838", "https://data.delijn.be/stops/400839"], ["https://data.delijn.be/stops/301716", "https://data.delijn.be/stops/301753"], ["https://data.delijn.be/stops/305425", "https://data.delijn.be/stops/305426"], ["https://data.delijn.be/stops/501262", "https://data.delijn.be/stops/501264"], ["https://data.delijn.be/stops/206196", "https://data.delijn.be/stops/206856"], ["https://data.delijn.be/stops/106787", "https://data.delijn.be/stops/106875"], ["https://data.delijn.be/stops/503532", "https://data.delijn.be/stops/508532"], ["https://data.delijn.be/stops/304724", "https://data.delijn.be/stops/304731"], ["https://data.delijn.be/stops/308612", "https://data.delijn.be/stops/308631"], ["https://data.delijn.be/stops/104404", "https://data.delijn.be/stops/204622"], ["https://data.delijn.be/stops/103570", "https://data.delijn.be/stops/103572"], ["https://data.delijn.be/stops/401848", "https://data.delijn.be/stops/401850"], ["https://data.delijn.be/stops/209791", "https://data.delijn.be/stops/210065"], ["https://data.delijn.be/stops/104338", "https://data.delijn.be/stops/105907"], ["https://data.delijn.be/stops/208472", "https://data.delijn.be/stops/209473"], ["https://data.delijn.be/stops/102511", "https://data.delijn.be/stops/102512"], ["https://data.delijn.be/stops/206178", "https://data.delijn.be/stops/206179"], ["https://data.delijn.be/stops/106709", "https://data.delijn.be/stops/106710"], ["https://data.delijn.be/stops/503356", "https://data.delijn.be/stops/509920"], ["https://data.delijn.be/stops/206189", "https://data.delijn.be/stops/207189"], ["https://data.delijn.be/stops/206208", "https://data.delijn.be/stops/207722"], ["https://data.delijn.be/stops/501021", "https://data.delijn.be/stops/506021"], ["https://data.delijn.be/stops/211015", "https://data.delijn.be/stops/507292"], ["https://data.delijn.be/stops/103012", "https://data.delijn.be/stops/104094"], ["https://data.delijn.be/stops/204070", "https://data.delijn.be/stops/204098"], ["https://data.delijn.be/stops/105804", "https://data.delijn.be/stops/107412"], ["https://data.delijn.be/stops/300491", "https://data.delijn.be/stops/307084"], ["https://data.delijn.be/stops/300012", "https://data.delijn.be/stops/300741"], ["https://data.delijn.be/stops/108823", "https://data.delijn.be/stops/108826"], ["https://data.delijn.be/stops/107802", "https://data.delijn.be/stops/107806"], ["https://data.delijn.be/stops/208416", "https://data.delijn.be/stops/209416"], ["https://data.delijn.be/stops/306759", "https://data.delijn.be/stops/306760"], ["https://data.delijn.be/stops/402758", "https://data.delijn.be/stops/402759"], ["https://data.delijn.be/stops/301640", "https://data.delijn.be/stops/301642"], ["https://data.delijn.be/stops/101719", "https://data.delijn.be/stops/108969"], ["https://data.delijn.be/stops/108435", "https://data.delijn.be/stops/108585"], ["https://data.delijn.be/stops/204616", "https://data.delijn.be/stops/204658"], ["https://data.delijn.be/stops/109850", "https://data.delijn.be/stops/109851"], ["https://data.delijn.be/stops/401314", "https://data.delijn.be/stops/401324"], ["https://data.delijn.be/stops/200870", "https://data.delijn.be/stops/202335"], ["https://data.delijn.be/stops/502468", "https://data.delijn.be/stops/504877"], ["https://data.delijn.be/stops/207414", "https://data.delijn.be/stops/306973"], ["https://data.delijn.be/stops/501552", "https://data.delijn.be/stops/509659"], ["https://data.delijn.be/stops/201836", "https://data.delijn.be/stops/208887"], ["https://data.delijn.be/stops/109287", "https://data.delijn.be/stops/109289"], ["https://data.delijn.be/stops/103932", "https://data.delijn.be/stops/106600"], ["https://data.delijn.be/stops/405186", "https://data.delijn.be/stops/405196"], ["https://data.delijn.be/stops/201817", "https://data.delijn.be/stops/201831"], ["https://data.delijn.be/stops/308516", "https://data.delijn.be/stops/308518"], ["https://data.delijn.be/stops/407170", "https://data.delijn.be/stops/407171"], ["https://data.delijn.be/stops/204632", "https://data.delijn.be/stops/204633"], ["https://data.delijn.be/stops/504798", "https://data.delijn.be/stops/507716"], ["https://data.delijn.be/stops/208327", "https://data.delijn.be/stops/209327"], ["https://data.delijn.be/stops/300279", "https://data.delijn.be/stops/300292"], ["https://data.delijn.be/stops/503269", "https://data.delijn.be/stops/503273"], ["https://data.delijn.be/stops/302319", "https://data.delijn.be/stops/303514"], ["https://data.delijn.be/stops/106636", "https://data.delijn.be/stops/106655"], ["https://data.delijn.be/stops/404592", "https://data.delijn.be/stops/404995"], ["https://data.delijn.be/stops/108019", "https://data.delijn.be/stops/109636"], ["https://data.delijn.be/stops/300650", "https://data.delijn.be/stops/301838"], ["https://data.delijn.be/stops/202509", "https://data.delijn.be/stops/203508"], ["https://data.delijn.be/stops/504156", "https://data.delijn.be/stops/504990"], ["https://data.delijn.be/stops/104363", "https://data.delijn.be/stops/104390"], ["https://data.delijn.be/stops/501015", "https://data.delijn.be/stops/506618"], ["https://data.delijn.be/stops/308518", "https://data.delijn.be/stops/308520"], ["https://data.delijn.be/stops/107146", "https://data.delijn.be/stops/108931"], ["https://data.delijn.be/stops/301898", "https://data.delijn.be/stops/305085"], ["https://data.delijn.be/stops/102109", "https://data.delijn.be/stops/106685"], ["https://data.delijn.be/stops/201695", "https://data.delijn.be/stops/203988"], ["https://data.delijn.be/stops/202175", "https://data.delijn.be/stops/203153"], ["https://data.delijn.be/stops/405673", "https://data.delijn.be/stops/407256"], ["https://data.delijn.be/stops/305413", "https://data.delijn.be/stops/305462"], ["https://data.delijn.be/stops/202109", "https://data.delijn.be/stops/202640"], ["https://data.delijn.be/stops/200546", "https://data.delijn.be/stops/211061"], ["https://data.delijn.be/stops/400527", "https://data.delijn.be/stops/400605"], ["https://data.delijn.be/stops/203682", "https://data.delijn.be/stops/203728"], ["https://data.delijn.be/stops/408318", "https://data.delijn.be/stops/408334"], ["https://data.delijn.be/stops/505253", "https://data.delijn.be/stops/508926"], ["https://data.delijn.be/stops/301471", "https://data.delijn.be/stops/308070"], ["https://data.delijn.be/stops/306869", "https://data.delijn.be/stops/306872"], ["https://data.delijn.be/stops/302620", "https://data.delijn.be/stops/303260"], ["https://data.delijn.be/stops/208617", "https://data.delijn.be/stops/209616"], ["https://data.delijn.be/stops/304278", "https://data.delijn.be/stops/304286"], ["https://data.delijn.be/stops/501356", "https://data.delijn.be/stops/506351"], ["https://data.delijn.be/stops/400528", "https://data.delijn.be/stops/403036"], ["https://data.delijn.be/stops/400925", "https://data.delijn.be/stops/400929"], ["https://data.delijn.be/stops/206339", "https://data.delijn.be/stops/207704"], ["https://data.delijn.be/stops/206178", "https://data.delijn.be/stops/207179"], ["https://data.delijn.be/stops/402572", "https://data.delijn.be/stops/402616"], ["https://data.delijn.be/stops/304484", "https://data.delijn.be/stops/304529"], ["https://data.delijn.be/stops/206417", "https://data.delijn.be/stops/206658"], ["https://data.delijn.be/stops/300871", "https://data.delijn.be/stops/302216"], ["https://data.delijn.be/stops/304824", "https://data.delijn.be/stops/304900"], ["https://data.delijn.be/stops/106323", "https://data.delijn.be/stops/106325"], ["https://data.delijn.be/stops/303061", "https://data.delijn.be/stops/303064"], ["https://data.delijn.be/stops/201698", "https://data.delijn.be/stops/202385"], ["https://data.delijn.be/stops/106170", "https://data.delijn.be/stops/106171"], ["https://data.delijn.be/stops/409054", "https://data.delijn.be/stops/409055"], ["https://data.delijn.be/stops/403795", "https://data.delijn.be/stops/403818"], ["https://data.delijn.be/stops/208303", "https://data.delijn.be/stops/209303"], ["https://data.delijn.be/stops/108077", "https://data.delijn.be/stops/108450"], ["https://data.delijn.be/stops/402725", "https://data.delijn.be/stops/405944"], ["https://data.delijn.be/stops/200205", "https://data.delijn.be/stops/201204"], ["https://data.delijn.be/stops/107826", "https://data.delijn.be/stops/107827"], ["https://data.delijn.be/stops/407195", "https://data.delijn.be/stops/407197"], ["https://data.delijn.be/stops/300981", "https://data.delijn.be/stops/301088"], ["https://data.delijn.be/stops/209601", "https://data.delijn.be/stops/307602"], ["https://data.delijn.be/stops/403644", "https://data.delijn.be/stops/407558"], ["https://data.delijn.be/stops/401876", "https://data.delijn.be/stops/402281"], ["https://data.delijn.be/stops/206527", "https://data.delijn.be/stops/209080"], ["https://data.delijn.be/stops/505292", "https://data.delijn.be/stops/508286"], ["https://data.delijn.be/stops/503451", "https://data.delijn.be/stops/508451"], ["https://data.delijn.be/stops/504153", "https://data.delijn.be/stops/509048"], ["https://data.delijn.be/stops/400257", "https://data.delijn.be/stops/402989"], ["https://data.delijn.be/stops/216020", "https://data.delijn.be/stops/217020"], ["https://data.delijn.be/stops/204266", "https://data.delijn.be/stops/204271"], ["https://data.delijn.be/stops/204663", "https://data.delijn.be/stops/205098"], ["https://data.delijn.be/stops/504435", "https://data.delijn.be/stops/509407"], ["https://data.delijn.be/stops/208206", "https://data.delijn.be/stops/209206"], ["https://data.delijn.be/stops/200539", "https://data.delijn.be/stops/201161"], ["https://data.delijn.be/stops/106949", "https://data.delijn.be/stops/106951"], ["https://data.delijn.be/stops/403762", "https://data.delijn.be/stops/403763"], ["https://data.delijn.be/stops/408722", "https://data.delijn.be/stops/410342"], ["https://data.delijn.be/stops/101413", "https://data.delijn.be/stops/106924"], ["https://data.delijn.be/stops/104106", "https://data.delijn.be/stops/105145"], ["https://data.delijn.be/stops/302975", "https://data.delijn.be/stops/307228"], ["https://data.delijn.be/stops/101408", "https://data.delijn.be/stops/101409"], ["https://data.delijn.be/stops/405543", "https://data.delijn.be/stops/406887"], ["https://data.delijn.be/stops/105737", "https://data.delijn.be/stops/109958"], ["https://data.delijn.be/stops/103000", "https://data.delijn.be/stops/104008"], ["https://data.delijn.be/stops/104488", "https://data.delijn.be/stops/307898"], ["https://data.delijn.be/stops/501412", "https://data.delijn.be/stops/506618"], ["https://data.delijn.be/stops/106617", "https://data.delijn.be/stops/106618"], ["https://data.delijn.be/stops/403081", "https://data.delijn.be/stops/403501"], ["https://data.delijn.be/stops/302996", "https://data.delijn.be/stops/307228"], ["https://data.delijn.be/stops/505502", "https://data.delijn.be/stops/505602"], ["https://data.delijn.be/stops/301546", "https://data.delijn.be/stops/306962"], ["https://data.delijn.be/stops/400213", "https://data.delijn.be/stops/400214"], ["https://data.delijn.be/stops/101020", "https://data.delijn.be/stops/102373"], ["https://data.delijn.be/stops/207366", "https://data.delijn.be/stops/207740"], ["https://data.delijn.be/stops/503203", "https://data.delijn.be/stops/508189"], ["https://data.delijn.be/stops/208353", "https://data.delijn.be/stops/209184"], ["https://data.delijn.be/stops/300217", "https://data.delijn.be/stops/300219"], ["https://data.delijn.be/stops/307898", "https://data.delijn.be/stops/307899"], ["https://data.delijn.be/stops/304663", "https://data.delijn.be/stops/304665"], ["https://data.delijn.be/stops/206726", "https://data.delijn.be/stops/207608"], ["https://data.delijn.be/stops/106838", "https://data.delijn.be/stops/106839"], ["https://data.delijn.be/stops/407623", "https://data.delijn.be/stops/409805"], ["https://data.delijn.be/stops/400124", "https://data.delijn.be/stops/400129"], ["https://data.delijn.be/stops/402200", "https://data.delijn.be/stops/402322"], ["https://data.delijn.be/stops/109820", "https://data.delijn.be/stops/109827"], ["https://data.delijn.be/stops/406939", "https://data.delijn.be/stops/407330"], ["https://data.delijn.be/stops/409366", "https://data.delijn.be/stops/409367"], ["https://data.delijn.be/stops/102465", "https://data.delijn.be/stops/108010"], ["https://data.delijn.be/stops/406353", "https://data.delijn.be/stops/406355"], ["https://data.delijn.be/stops/501163", "https://data.delijn.be/stops/501678"], ["https://data.delijn.be/stops/107614", "https://data.delijn.be/stops/108952"], ["https://data.delijn.be/stops/408590", "https://data.delijn.be/stops/408777"], ["https://data.delijn.be/stops/503059", "https://data.delijn.be/stops/508117"], ["https://data.delijn.be/stops/401420", "https://data.delijn.be/stops/401501"], ["https://data.delijn.be/stops/304997", "https://data.delijn.be/stops/305455"], ["https://data.delijn.be/stops/203150", "https://data.delijn.be/stops/203169"], ["https://data.delijn.be/stops/501174", "https://data.delijn.be/stops/505403"], ["https://data.delijn.be/stops/404191", "https://data.delijn.be/stops/404192"], ["https://data.delijn.be/stops/105445", "https://data.delijn.be/stops/108370"], ["https://data.delijn.be/stops/201849", "https://data.delijn.be/stops/208640"], ["https://data.delijn.be/stops/405264", "https://data.delijn.be/stops/408367"], ["https://data.delijn.be/stops/401438", "https://data.delijn.be/stops/401633"], ["https://data.delijn.be/stops/206068", "https://data.delijn.be/stops/206964"], ["https://data.delijn.be/stops/506203", "https://data.delijn.be/stops/506425"], ["https://data.delijn.be/stops/403267", "https://data.delijn.be/stops/404970"], ["https://data.delijn.be/stops/403307", "https://data.delijn.be/stops/410164"], ["https://data.delijn.be/stops/303154", "https://data.delijn.be/stops/304244"], ["https://data.delijn.be/stops/300120", "https://data.delijn.be/stops/304998"], ["https://data.delijn.be/stops/302824", "https://data.delijn.be/stops/302825"], ["https://data.delijn.be/stops/210041", "https://data.delijn.be/stops/211041"], ["https://data.delijn.be/stops/201904", "https://data.delijn.be/stops/203513"], ["https://data.delijn.be/stops/503859", "https://data.delijn.be/stops/508858"], ["https://data.delijn.be/stops/304795", "https://data.delijn.be/stops/306689"], ["https://data.delijn.be/stops/205080", "https://data.delijn.be/stops/205091"], ["https://data.delijn.be/stops/306146", "https://data.delijn.be/stops/307941"], ["https://data.delijn.be/stops/400631", "https://data.delijn.be/stops/403062"], ["https://data.delijn.be/stops/301361", "https://data.delijn.be/stops/306127"], ["https://data.delijn.be/stops/302905", "https://data.delijn.be/stops/303236"], ["https://data.delijn.be/stops/409011", "https://data.delijn.be/stops/409015"], ["https://data.delijn.be/stops/405667", "https://data.delijn.be/stops/409383"], ["https://data.delijn.be/stops/503325", "https://data.delijn.be/stops/508730"], ["https://data.delijn.be/stops/405963", "https://data.delijn.be/stops/405964"], ["https://data.delijn.be/stops/103064", "https://data.delijn.be/stops/104031"], ["https://data.delijn.be/stops/302166", "https://data.delijn.be/stops/302203"], ["https://data.delijn.be/stops/304953", "https://data.delijn.be/stops/304961"], ["https://data.delijn.be/stops/406842", "https://data.delijn.be/stops/406843"], ["https://data.delijn.be/stops/200200", "https://data.delijn.be/stops/201372"], ["https://data.delijn.be/stops/404987", "https://data.delijn.be/stops/408553"], ["https://data.delijn.be/stops/408110", "https://data.delijn.be/stops/408161"], ["https://data.delijn.be/stops/401478", "https://data.delijn.be/stops/408419"], ["https://data.delijn.be/stops/307431", "https://data.delijn.be/stops/308590"], ["https://data.delijn.be/stops/404419", "https://data.delijn.be/stops/407245"], ["https://data.delijn.be/stops/202626", "https://data.delijn.be/stops/203626"], ["https://data.delijn.be/stops/503525", "https://data.delijn.be/stops/508074"], ["https://data.delijn.be/stops/304320", "https://data.delijn.be/stops/304326"], ["https://data.delijn.be/stops/107156", "https://data.delijn.be/stops/107157"], ["https://data.delijn.be/stops/504243", "https://data.delijn.be/stops/504485"], ["https://data.delijn.be/stops/207543", "https://data.delijn.be/stops/207544"], ["https://data.delijn.be/stops/201901", "https://data.delijn.be/stops/201902"], ["https://data.delijn.be/stops/300111", "https://data.delijn.be/stops/306849"], ["https://data.delijn.be/stops/502442", "https://data.delijn.be/stops/502659"], ["https://data.delijn.be/stops/300089", "https://data.delijn.be/stops/306837"], ["https://data.delijn.be/stops/209207", "https://data.delijn.be/stops/209208"], ["https://data.delijn.be/stops/407249", "https://data.delijn.be/stops/407354"], ["https://data.delijn.be/stops/204759", "https://data.delijn.be/stops/205372"], ["https://data.delijn.be/stops/305433", "https://data.delijn.be/stops/305520"], ["https://data.delijn.be/stops/201191", "https://data.delijn.be/stops/201192"], ["https://data.delijn.be/stops/503380", "https://data.delijn.be/stops/508412"], ["https://data.delijn.be/stops/405737", "https://data.delijn.be/stops/410138"], ["https://data.delijn.be/stops/402559", "https://data.delijn.be/stops/402571"], ["https://data.delijn.be/stops/401751", "https://data.delijn.be/stops/406888"], ["https://data.delijn.be/stops/308135", "https://data.delijn.be/stops/308140"], ["https://data.delijn.be/stops/404713", "https://data.delijn.be/stops/404829"], ["https://data.delijn.be/stops/300343", "https://data.delijn.be/stops/300362"], ["https://data.delijn.be/stops/406208", "https://data.delijn.be/stops/406209"], ["https://data.delijn.be/stops/410173", "https://data.delijn.be/stops/410174"], ["https://data.delijn.be/stops/101834", "https://data.delijn.be/stops/107087"], ["https://data.delijn.be/stops/402344", "https://data.delijn.be/stops/402354"], ["https://data.delijn.be/stops/200917", "https://data.delijn.be/stops/203394"], ["https://data.delijn.be/stops/101984", "https://data.delijn.be/stops/101986"], ["https://data.delijn.be/stops/503495", "https://data.delijn.be/stops/508495"], ["https://data.delijn.be/stops/406087", "https://data.delijn.be/stops/406139"], ["https://data.delijn.be/stops/201825", "https://data.delijn.be/stops/502759"], ["https://data.delijn.be/stops/400816", "https://data.delijn.be/stops/400818"], ["https://data.delijn.be/stops/503154", "https://data.delijn.be/stops/503428"], ["https://data.delijn.be/stops/107642", "https://data.delijn.be/stops/308407"], ["https://data.delijn.be/stops/206344", "https://data.delijn.be/stops/207717"], ["https://data.delijn.be/stops/301678", "https://data.delijn.be/stops/301688"], ["https://data.delijn.be/stops/101687", "https://data.delijn.be/stops/103697"], ["https://data.delijn.be/stops/407140", "https://data.delijn.be/stops/407325"], ["https://data.delijn.be/stops/105609", "https://data.delijn.be/stops/105612"], ["https://data.delijn.be/stops/405492", "https://data.delijn.be/stops/405538"], ["https://data.delijn.be/stops/201027", "https://data.delijn.be/stops/201446"], ["https://data.delijn.be/stops/200584", "https://data.delijn.be/stops/204920"], ["https://data.delijn.be/stops/300601", "https://data.delijn.be/stops/300607"], ["https://data.delijn.be/stops/106653", "https://data.delijn.be/stops/109753"], ["https://data.delijn.be/stops/107209", "https://data.delijn.be/stops/107211"], ["https://data.delijn.be/stops/105674", "https://data.delijn.be/stops/105679"], ["https://data.delijn.be/stops/503049", "https://data.delijn.be/stops/503052"], ["https://data.delijn.be/stops/200514", "https://data.delijn.be/stops/201515"], ["https://data.delijn.be/stops/106803", "https://data.delijn.be/stops/106804"], ["https://data.delijn.be/stops/209470", "https://data.delijn.be/stops/209471"], ["https://data.delijn.be/stops/403500", "https://data.delijn.be/stops/410391"], ["https://data.delijn.be/stops/408326", "https://data.delijn.be/stops/408357"], ["https://data.delijn.be/stops/102394", "https://data.delijn.be/stops/107096"], ["https://data.delijn.be/stops/407890", "https://data.delijn.be/stops/408188"], ["https://data.delijn.be/stops/204133", "https://data.delijn.be/stops/205146"], ["https://data.delijn.be/stops/505018", "https://data.delijn.be/stops/507554"], ["https://data.delijn.be/stops/208214", "https://data.delijn.be/stops/209214"], ["https://data.delijn.be/stops/107279", "https://data.delijn.be/stops/107282"], ["https://data.delijn.be/stops/102436", "https://data.delijn.be/stops/107821"], ["https://data.delijn.be/stops/202336", "https://data.delijn.be/stops/203336"], ["https://data.delijn.be/stops/302010", "https://data.delijn.be/stops/308654"], ["https://data.delijn.be/stops/407094", "https://data.delijn.be/stops/407261"], ["https://data.delijn.be/stops/408027", "https://data.delijn.be/stops/301846"], ["https://data.delijn.be/stops/201021", "https://data.delijn.be/stops/210045"], ["https://data.delijn.be/stops/103249", "https://data.delijn.be/stops/107375"], ["https://data.delijn.be/stops/403916", "https://data.delijn.be/stops/410256"], ["https://data.delijn.be/stops/505692", "https://data.delijn.be/stops/507184"], ["https://data.delijn.be/stops/101378", "https://data.delijn.be/stops/101397"], ["https://data.delijn.be/stops/504342", "https://data.delijn.be/stops/509342"], ["https://data.delijn.be/stops/204201", "https://data.delijn.be/stops/205202"], ["https://data.delijn.be/stops/108927", "https://data.delijn.be/stops/108928"], ["https://data.delijn.be/stops/200680", "https://data.delijn.be/stops/201459"], ["https://data.delijn.be/stops/308849", "https://data.delijn.be/stops/308850"], ["https://data.delijn.be/stops/108289", "https://data.delijn.be/stops/108291"], ["https://data.delijn.be/stops/503197", "https://data.delijn.be/stops/503408"], ["https://data.delijn.be/stops/206805", "https://data.delijn.be/stops/207805"], ["https://data.delijn.be/stops/304785", "https://data.delijn.be/stops/304786"], ["https://data.delijn.be/stops/208044", "https://data.delijn.be/stops/209699"], ["https://data.delijn.be/stops/503801", "https://data.delijn.be/stops/505908"], ["https://data.delijn.be/stops/502305", "https://data.delijn.be/stops/507305"], ["https://data.delijn.be/stops/406060", "https://data.delijn.be/stops/406357"], ["https://data.delijn.be/stops/303677", "https://data.delijn.be/stops/303854"], ["https://data.delijn.be/stops/104457", "https://data.delijn.be/stops/106740"], ["https://data.delijn.be/stops/200067", "https://data.delijn.be/stops/200370"], ["https://data.delijn.be/stops/208559", "https://data.delijn.be/stops/209542"], ["https://data.delijn.be/stops/201922", "https://data.delijn.be/stops/201936"], ["https://data.delijn.be/stops/503648", "https://data.delijn.be/stops/503950"], ["https://data.delijn.be/stops/201414", "https://data.delijn.be/stops/202361"], ["https://data.delijn.be/stops/303811", "https://data.delijn.be/stops/303845"], ["https://data.delijn.be/stops/301976", "https://data.delijn.be/stops/307279"], ["https://data.delijn.be/stops/204362", "https://data.delijn.be/stops/204678"], ["https://data.delijn.be/stops/302229", "https://data.delijn.be/stops/302928"], ["https://data.delijn.be/stops/406036", "https://data.delijn.be/stops/406069"], ["https://data.delijn.be/stops/204429", "https://data.delijn.be/stops/204431"], ["https://data.delijn.be/stops/107392", "https://data.delijn.be/stops/107394"], ["https://data.delijn.be/stops/405217", "https://data.delijn.be/stops/405269"], ["https://data.delijn.be/stops/203240", "https://data.delijn.be/stops/203961"], ["https://data.delijn.be/stops/301155", "https://data.delijn.be/stops/301166"], ["https://data.delijn.be/stops/505380", "https://data.delijn.be/stops/508093"], ["https://data.delijn.be/stops/500948", "https://data.delijn.be/stops/504203"], ["https://data.delijn.be/stops/301399", "https://data.delijn.be/stops/303120"], ["https://data.delijn.be/stops/302880", "https://data.delijn.be/stops/303085"], ["https://data.delijn.be/stops/300364", "https://data.delijn.be/stops/300366"], ["https://data.delijn.be/stops/406774", "https://data.delijn.be/stops/406777"], ["https://data.delijn.be/stops/300707", "https://data.delijn.be/stops/306944"], ["https://data.delijn.be/stops/502463", "https://data.delijn.be/stops/507657"], ["https://data.delijn.be/stops/300257", "https://data.delijn.be/stops/300273"], ["https://data.delijn.be/stops/306647", "https://data.delijn.be/stops/307461"], ["https://data.delijn.be/stops/301984", "https://data.delijn.be/stops/307279"], ["https://data.delijn.be/stops/304074", "https://data.delijn.be/stops/304075"], ["https://data.delijn.be/stops/504659", "https://data.delijn.be/stops/509042"], ["https://data.delijn.be/stops/201044", "https://data.delijn.be/stops/201945"], ["https://data.delijn.be/stops/103723", "https://data.delijn.be/stops/109761"], ["https://data.delijn.be/stops/108804", "https://data.delijn.be/stops/109012"], ["https://data.delijn.be/stops/107051", "https://data.delijn.be/stops/107053"], ["https://data.delijn.be/stops/105308", "https://data.delijn.be/stops/105309"], ["https://data.delijn.be/stops/201458", "https://data.delijn.be/stops/201459"], ["https://data.delijn.be/stops/302127", "https://data.delijn.be/stops/302168"], ["https://data.delijn.be/stops/504425", "https://data.delijn.be/stops/504571"], ["https://data.delijn.be/stops/207675", "https://data.delijn.be/stops/209140"], ["https://data.delijn.be/stops/206511", "https://data.delijn.be/stops/207134"], ["https://data.delijn.be/stops/302381", "https://data.delijn.be/stops/307966"], ["https://data.delijn.be/stops/204672", "https://data.delijn.be/stops/204675"], ["https://data.delijn.be/stops/200458", "https://data.delijn.be/stops/201737"], ["https://data.delijn.be/stops/409058", "https://data.delijn.be/stops/409104"], ["https://data.delijn.be/stops/402821", "https://data.delijn.be/stops/406680"], ["https://data.delijn.be/stops/108022", "https://data.delijn.be/stops/108023"], ["https://data.delijn.be/stops/102184", "https://data.delijn.be/stops/104869"], ["https://data.delijn.be/stops/507191", "https://data.delijn.be/stops/507201"], ["https://data.delijn.be/stops/402796", "https://data.delijn.be/stops/406717"], ["https://data.delijn.be/stops/505686", "https://data.delijn.be/stops/507069"], ["https://data.delijn.be/stops/403090", "https://data.delijn.be/stops/403091"], ["https://data.delijn.be/stops/303812", "https://data.delijn.be/stops/303869"], ["https://data.delijn.be/stops/404469", "https://data.delijn.be/stops/404472"], ["https://data.delijn.be/stops/108093", "https://data.delijn.be/stops/108390"], ["https://data.delijn.be/stops/208225", "https://data.delijn.be/stops/208834"], ["https://data.delijn.be/stops/206923", "https://data.delijn.be/stops/207213"], ["https://data.delijn.be/stops/502710", "https://data.delijn.be/stops/507710"], ["https://data.delijn.be/stops/109669", "https://data.delijn.be/stops/109671"], ["https://data.delijn.be/stops/304128", "https://data.delijn.be/stops/307578"], ["https://data.delijn.be/stops/400608", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/504670", "https://data.delijn.be/stops/504766"], ["https://data.delijn.be/stops/400099", "https://data.delijn.be/stops/410013"], ["https://data.delijn.be/stops/501360", "https://data.delijn.be/stops/506360"], ["https://data.delijn.be/stops/503784", "https://data.delijn.be/stops/508595"], ["https://data.delijn.be/stops/202255", "https://data.delijn.be/stops/203255"], ["https://data.delijn.be/stops/200883", "https://data.delijn.be/stops/203054"], ["https://data.delijn.be/stops/400541", "https://data.delijn.be/stops/400569"], ["https://data.delijn.be/stops/502610", "https://data.delijn.be/stops/505691"], ["https://data.delijn.be/stops/509782", "https://data.delijn.be/stops/509783"], ["https://data.delijn.be/stops/403278", "https://data.delijn.be/stops/403279"], ["https://data.delijn.be/stops/503503", "https://data.delijn.be/stops/508270"], ["https://data.delijn.be/stops/301857", "https://data.delijn.be/stops/301866"], ["https://data.delijn.be/stops/203784", "https://data.delijn.be/stops/203786"], ["https://data.delijn.be/stops/503207", "https://data.delijn.be/stops/503815"], ["https://data.delijn.be/stops/105468", "https://data.delijn.be/stops/105471"], ["https://data.delijn.be/stops/501018", "https://data.delijn.be/stops/506609"], ["https://data.delijn.be/stops/203648", "https://data.delijn.be/stops/211045"], ["https://data.delijn.be/stops/406330", "https://data.delijn.be/stops/406410"], ["https://data.delijn.be/stops/101895", "https://data.delijn.be/stops/104719"], ["https://data.delijn.be/stops/509813", "https://data.delijn.be/stops/509825"], ["https://data.delijn.be/stops/306926", "https://data.delijn.be/stops/308728"], ["https://data.delijn.be/stops/300375", "https://data.delijn.be/stops/300381"], ["https://data.delijn.be/stops/400214", "https://data.delijn.be/stops/408489"], ["https://data.delijn.be/stops/504212", "https://data.delijn.be/stops/509020"], ["https://data.delijn.be/stops/104332", "https://data.delijn.be/stops/109589"], ["https://data.delijn.be/stops/301692", "https://data.delijn.be/stops/301790"], ["https://data.delijn.be/stops/102917", "https://data.delijn.be/stops/103295"], ["https://data.delijn.be/stops/503855", "https://data.delijn.be/stops/503859"], ["https://data.delijn.be/stops/206914", "https://data.delijn.be/stops/207882"], ["https://data.delijn.be/stops/406156", "https://data.delijn.be/stops/406157"], ["https://data.delijn.be/stops/503825", "https://data.delijn.be/stops/508828"], ["https://data.delijn.be/stops/206286", "https://data.delijn.be/stops/207239"], ["https://data.delijn.be/stops/402975", "https://data.delijn.be/stops/403148"], ["https://data.delijn.be/stops/304239", "https://data.delijn.be/stops/304806"], ["https://data.delijn.be/stops/405310", "https://data.delijn.be/stops/405361"], ["https://data.delijn.be/stops/301954", "https://data.delijn.be/stops/302868"], ["https://data.delijn.be/stops/403791", "https://data.delijn.be/stops/404264"], ["https://data.delijn.be/stops/202781", "https://data.delijn.be/stops/203770"], ["https://data.delijn.be/stops/301556", "https://data.delijn.be/stops/301589"], ["https://data.delijn.be/stops/106520", "https://data.delijn.be/stops/107098"], ["https://data.delijn.be/stops/401958", "https://data.delijn.be/stops/402038"], ["https://data.delijn.be/stops/504624", "https://data.delijn.be/stops/509624"], ["https://data.delijn.be/stops/206467", "https://data.delijn.be/stops/207469"], ["https://data.delijn.be/stops/200829", "https://data.delijn.be/stops/200830"], ["https://data.delijn.be/stops/401016", "https://data.delijn.be/stops/401149"], ["https://data.delijn.be/stops/303958", "https://data.delijn.be/stops/307859"], ["https://data.delijn.be/stops/304810", "https://data.delijn.be/stops/307883"], ["https://data.delijn.be/stops/504468", "https://data.delijn.be/stops/509462"], ["https://data.delijn.be/stops/401636", "https://data.delijn.be/stops/308204"], ["https://data.delijn.be/stops/102091", "https://data.delijn.be/stops/106813"], ["https://data.delijn.be/stops/502929", "https://data.delijn.be/stops/502932"], ["https://data.delijn.be/stops/101820", "https://data.delijn.be/stops/105980"], ["https://data.delijn.be/stops/202238", "https://data.delijn.be/stops/203239"], ["https://data.delijn.be/stops/502572", "https://data.delijn.be/stops/502582"], ["https://data.delijn.be/stops/402546", "https://data.delijn.be/stops/402622"], ["https://data.delijn.be/stops/300692", "https://data.delijn.be/stops/306938"], ["https://data.delijn.be/stops/201426", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/104043", "https://data.delijn.be/stops/108408"], ["https://data.delijn.be/stops/305115", "https://data.delijn.be/stops/305118"], ["https://data.delijn.be/stops/201729", "https://data.delijn.be/stops/204920"], ["https://data.delijn.be/stops/300575", "https://data.delijn.be/stops/300576"], ["https://data.delijn.be/stops/102661", "https://data.delijn.be/stops/109708"], ["https://data.delijn.be/stops/404863", "https://data.delijn.be/stops/404865"], ["https://data.delijn.be/stops/302191", "https://data.delijn.be/stops/302193"], ["https://data.delijn.be/stops/403353", "https://data.delijn.be/stops/410010"], ["https://data.delijn.be/stops/403093", "https://data.delijn.be/stops/403129"], ["https://data.delijn.be/stops/207936", "https://data.delijn.be/stops/208101"], ["https://data.delijn.be/stops/206616", "https://data.delijn.be/stops/207617"], ["https://data.delijn.be/stops/405380", "https://data.delijn.be/stops/410151"], ["https://data.delijn.be/stops/302072", "https://data.delijn.be/stops/302077"], ["https://data.delijn.be/stops/302142", "https://data.delijn.be/stops/302143"], ["https://data.delijn.be/stops/103685", "https://data.delijn.be/stops/105625"], ["https://data.delijn.be/stops/407730", "https://data.delijn.be/stops/407732"], ["https://data.delijn.be/stops/503110", "https://data.delijn.be/stops/505945"], ["https://data.delijn.be/stops/303290", "https://data.delijn.be/stops/303292"], ["https://data.delijn.be/stops/203479", "https://data.delijn.be/stops/207933"], ["https://data.delijn.be/stops/307959", "https://data.delijn.be/stops/307961"], ["https://data.delijn.be/stops/103113", "https://data.delijn.be/stops/103114"], ["https://data.delijn.be/stops/202299", "https://data.delijn.be/stops/203296"], ["https://data.delijn.be/stops/101689", "https://data.delijn.be/stops/109604"], ["https://data.delijn.be/stops/107321", "https://data.delijn.be/stops/107322"], ["https://data.delijn.be/stops/503037", "https://data.delijn.be/stops/508201"], ["https://data.delijn.be/stops/206605", "https://data.delijn.be/stops/206702"], ["https://data.delijn.be/stops/301642", "https://data.delijn.be/stops/307766"], ["https://data.delijn.be/stops/401922", "https://data.delijn.be/stops/407232"], ["https://data.delijn.be/stops/305187", "https://data.delijn.be/stops/306965"], ["https://data.delijn.be/stops/407941", "https://data.delijn.be/stops/408431"], ["https://data.delijn.be/stops/108333", "https://data.delijn.be/stops/109331"], ["https://data.delijn.be/stops/202482", "https://data.delijn.be/stops/203476"], ["https://data.delijn.be/stops/205392", "https://data.delijn.be/stops/205415"], ["https://data.delijn.be/stops/408341", "https://data.delijn.be/stops/408398"], ["https://data.delijn.be/stops/400985", "https://data.delijn.be/stops/400999"], ["https://data.delijn.be/stops/504461", "https://data.delijn.be/stops/509461"], ["https://data.delijn.be/stops/106302", "https://data.delijn.be/stops/106303"], ["https://data.delijn.be/stops/206380", "https://data.delijn.be/stops/206381"], ["https://data.delijn.be/stops/405280", "https://data.delijn.be/stops/405281"], ["https://data.delijn.be/stops/505946", "https://data.delijn.be/stops/508299"], ["https://data.delijn.be/stops/505602", "https://data.delijn.be/stops/505623"], ["https://data.delijn.be/stops/400672", "https://data.delijn.be/stops/406767"], ["https://data.delijn.be/stops/304380", "https://data.delijn.be/stops/304381"], ["https://data.delijn.be/stops/106971", "https://data.delijn.be/stops/107634"], ["https://data.delijn.be/stops/200841", "https://data.delijn.be/stops/201685"], ["https://data.delijn.be/stops/407904", "https://data.delijn.be/stops/408149"], ["https://data.delijn.be/stops/300855", "https://data.delijn.be/stops/300856"], ["https://data.delijn.be/stops/201267", "https://data.delijn.be/stops/203928"], ["https://data.delijn.be/stops/103203", "https://data.delijn.be/stops/107194"], ["https://data.delijn.be/stops/200316", "https://data.delijn.be/stops/204920"], ["https://data.delijn.be/stops/103252", "https://data.delijn.be/stops/107720"], ["https://data.delijn.be/stops/406563", "https://data.delijn.be/stops/407382"], ["https://data.delijn.be/stops/508542", "https://data.delijn.be/stops/508548"], ["https://data.delijn.be/stops/503715", "https://data.delijn.be/stops/509970"], ["https://data.delijn.be/stops/304055", "https://data.delijn.be/stops/304057"], ["https://data.delijn.be/stops/403482", "https://data.delijn.be/stops/410011"], ["https://data.delijn.be/stops/302565", "https://data.delijn.be/stops/302566"], ["https://data.delijn.be/stops/108711", "https://data.delijn.be/stops/108855"], ["https://data.delijn.be/stops/102681", "https://data.delijn.be/stops/205609"], ["https://data.delijn.be/stops/101197", "https://data.delijn.be/stops/204616"], ["https://data.delijn.be/stops/208402", "https://data.delijn.be/stops/208766"], ["https://data.delijn.be/stops/307629", "https://data.delijn.be/stops/308272"], ["https://data.delijn.be/stops/201165", "https://data.delijn.be/stops/202190"], ["https://data.delijn.be/stops/301685", "https://data.delijn.be/stops/301686"], ["https://data.delijn.be/stops/206203", "https://data.delijn.be/stops/206808"], ["https://data.delijn.be/stops/203425", "https://data.delijn.be/stops/211033"], ["https://data.delijn.be/stops/102982", "https://data.delijn.be/stops/105031"], ["https://data.delijn.be/stops/106287", "https://data.delijn.be/stops/106290"], ["https://data.delijn.be/stops/502190", "https://data.delijn.be/stops/508705"], ["https://data.delijn.be/stops/508337", "https://data.delijn.be/stops/509890"], ["https://data.delijn.be/stops/104026", "https://data.delijn.be/stops/106899"], ["https://data.delijn.be/stops/208308", "https://data.delijn.be/stops/209309"], ["https://data.delijn.be/stops/201200", "https://data.delijn.be/stops/201735"], ["https://data.delijn.be/stops/107799", "https://data.delijn.be/stops/107803"], ["https://data.delijn.be/stops/105099", "https://data.delijn.be/stops/109504"], ["https://data.delijn.be/stops/208831", "https://data.delijn.be/stops/208834"], ["https://data.delijn.be/stops/204061", "https://data.delijn.be/stops/205061"], ["https://data.delijn.be/stops/204019", "https://data.delijn.be/stops/205798"], ["https://data.delijn.be/stops/206473", "https://data.delijn.be/stops/207471"], ["https://data.delijn.be/stops/206336", "https://data.delijn.be/stops/207335"], ["https://data.delijn.be/stops/108108", "https://data.delijn.be/stops/108117"], ["https://data.delijn.be/stops/302338", "https://data.delijn.be/stops/302340"], ["https://data.delijn.be/stops/102658", "https://data.delijn.be/stops/105593"], ["https://data.delijn.be/stops/105039", "https://data.delijn.be/stops/105049"], ["https://data.delijn.be/stops/202897", "https://data.delijn.be/stops/202898"], ["https://data.delijn.be/stops/101642", "https://data.delijn.be/stops/109186"], ["https://data.delijn.be/stops/504326", "https://data.delijn.be/stops/504381"], ["https://data.delijn.be/stops/301041", "https://data.delijn.be/stops/301943"], ["https://data.delijn.be/stops/406245", "https://data.delijn.be/stops/409346"], ["https://data.delijn.be/stops/304592", "https://data.delijn.be/stops/307767"], ["https://data.delijn.be/stops/402083", "https://data.delijn.be/stops/402085"], ["https://data.delijn.be/stops/206190", "https://data.delijn.be/stops/207190"], ["https://data.delijn.be/stops/405372", "https://data.delijn.be/stops/302844"], ["https://data.delijn.be/stops/502548", "https://data.delijn.be/stops/505743"], ["https://data.delijn.be/stops/304234", "https://data.delijn.be/stops/304290"], ["https://data.delijn.be/stops/200866", "https://data.delijn.be/stops/209656"], ["https://data.delijn.be/stops/301472", "https://data.delijn.be/stops/308937"], ["https://data.delijn.be/stops/208340", "https://data.delijn.be/stops/209340"], ["https://data.delijn.be/stops/503649", "https://data.delijn.be/stops/508650"], ["https://data.delijn.be/stops/201904", "https://data.delijn.be/stops/202514"], ["https://data.delijn.be/stops/401519", "https://data.delijn.be/stops/401554"], ["https://data.delijn.be/stops/107328", "https://data.delijn.be/stops/107329"], ["https://data.delijn.be/stops/303093", "https://data.delijn.be/stops/303154"], ["https://data.delijn.be/stops/406925", "https://data.delijn.be/stops/406928"], ["https://data.delijn.be/stops/303704", "https://data.delijn.be/stops/303740"], ["https://data.delijn.be/stops/502237", "https://data.delijn.be/stops/507231"], ["https://data.delijn.be/stops/503166", "https://data.delijn.be/stops/507684"], ["https://data.delijn.be/stops/104487", "https://data.delijn.be/stops/104554"], ["https://data.delijn.be/stops/106208", "https://data.delijn.be/stops/106210"], ["https://data.delijn.be/stops/202323", "https://data.delijn.be/stops/203323"], ["https://data.delijn.be/stops/207616", "https://data.delijn.be/stops/207617"], ["https://data.delijn.be/stops/104056", "https://data.delijn.be/stops/108896"], ["https://data.delijn.be/stops/200089", "https://data.delijn.be/stops/201098"], ["https://data.delijn.be/stops/407214", "https://data.delijn.be/stops/407217"], ["https://data.delijn.be/stops/108274", "https://data.delijn.be/stops/108279"], ["https://data.delijn.be/stops/508336", "https://data.delijn.be/stops/508339"], ["https://data.delijn.be/stops/401039", "https://data.delijn.be/stops/401089"], ["https://data.delijn.be/stops/104861", "https://data.delijn.be/stops/107821"], ["https://data.delijn.be/stops/208348", "https://data.delijn.be/stops/209348"], ["https://data.delijn.be/stops/303103", "https://data.delijn.be/stops/306110"], ["https://data.delijn.be/stops/104486", "https://data.delijn.be/stops/104487"], ["https://data.delijn.be/stops/407760", "https://data.delijn.be/stops/409795"], ["https://data.delijn.be/stops/403326", "https://data.delijn.be/stops/403906"], ["https://data.delijn.be/stops/407034", "https://data.delijn.be/stops/407035"], ["https://data.delijn.be/stops/502150", "https://data.delijn.be/stops/502165"], ["https://data.delijn.be/stops/102684", "https://data.delijn.be/stops/108167"], ["https://data.delijn.be/stops/202690", "https://data.delijn.be/stops/203092"], ["https://data.delijn.be/stops/208574", "https://data.delijn.be/stops/307335"], ["https://data.delijn.be/stops/302944", "https://data.delijn.be/stops/306086"], ["https://data.delijn.be/stops/201669", "https://data.delijn.be/stops/201680"], ["https://data.delijn.be/stops/104986", "https://data.delijn.be/stops/104992"], ["https://data.delijn.be/stops/200203", "https://data.delijn.be/stops/201212"], ["https://data.delijn.be/stops/405995", "https://data.delijn.be/stops/405997"], ["https://data.delijn.be/stops/108869", "https://data.delijn.be/stops/109513"], ["https://data.delijn.be/stops/301078", "https://data.delijn.be/stops/301080"], ["https://data.delijn.be/stops/307351", "https://data.delijn.be/stops/307352"], ["https://data.delijn.be/stops/300701", "https://data.delijn.be/stops/300702"], ["https://data.delijn.be/stops/304953", "https://data.delijn.be/stops/307950"], ["https://data.delijn.be/stops/502642", "https://data.delijn.be/stops/507033"], ["https://data.delijn.be/stops/208046", "https://data.delijn.be/stops/209489"], ["https://data.delijn.be/stops/301661", "https://data.delijn.be/stops/301674"], ["https://data.delijn.be/stops/103500", "https://data.delijn.be/stops/103755"], ["https://data.delijn.be/stops/408681", "https://data.delijn.be/stops/408714"], ["https://data.delijn.be/stops/503030", "https://data.delijn.be/stops/508024"], ["https://data.delijn.be/stops/404808", "https://data.delijn.be/stops/404836"], ["https://data.delijn.be/stops/104284", "https://data.delijn.be/stops/105799"], ["https://data.delijn.be/stops/103293", "https://data.delijn.be/stops/107688"], ["https://data.delijn.be/stops/302733", "https://data.delijn.be/stops/302746"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/106630"], ["https://data.delijn.be/stops/104582", "https://data.delijn.be/stops/109751"], ["https://data.delijn.be/stops/201578", "https://data.delijn.be/stops/202192"], ["https://data.delijn.be/stops/300751", "https://data.delijn.be/stops/308673"], ["https://data.delijn.be/stops/104005", "https://data.delijn.be/stops/105460"], ["https://data.delijn.be/stops/404588", "https://data.delijn.be/stops/406903"], ["https://data.delijn.be/stops/102498", "https://data.delijn.be/stops/400301"], ["https://data.delijn.be/stops/106946", "https://data.delijn.be/stops/106947"], ["https://data.delijn.be/stops/503510", "https://data.delijn.be/stops/508047"], ["https://data.delijn.be/stops/205450", "https://data.delijn.be/stops/205696"], ["https://data.delijn.be/stops/500956", "https://data.delijn.be/stops/508287"], ["https://data.delijn.be/stops/106472", "https://data.delijn.be/stops/109645"], ["https://data.delijn.be/stops/201547", "https://data.delijn.be/stops/219953"], ["https://data.delijn.be/stops/202024", "https://data.delijn.be/stops/203025"], ["https://data.delijn.be/stops/400569", "https://data.delijn.be/stops/404162"], ["https://data.delijn.be/stops/502572", "https://data.delijn.be/stops/507567"], ["https://data.delijn.be/stops/402454", "https://data.delijn.be/stops/410042"], ["https://data.delijn.be/stops/501214", "https://data.delijn.be/stops/506213"], ["https://data.delijn.be/stops/203025", "https://data.delijn.be/stops/211039"], ["https://data.delijn.be/stops/209597", "https://data.delijn.be/stops/301414"], ["https://data.delijn.be/stops/208439", "https://data.delijn.be/stops/209439"], ["https://data.delijn.be/stops/504198", "https://data.delijn.be/stops/504199"], ["https://data.delijn.be/stops/402968", "https://data.delijn.be/stops/402973"], ["https://data.delijn.be/stops/200543", "https://data.delijn.be/stops/201325"], ["https://data.delijn.be/stops/203234", "https://data.delijn.be/stops/211121"], ["https://data.delijn.be/stops/405442", "https://data.delijn.be/stops/408589"], ["https://data.delijn.be/stops/302621", "https://data.delijn.be/stops/308116"], ["https://data.delijn.be/stops/201012", "https://data.delijn.be/stops/201390"], ["https://data.delijn.be/stops/308082", "https://data.delijn.be/stops/308083"], ["https://data.delijn.be/stops/207334", "https://data.delijn.be/stops/207706"], ["https://data.delijn.be/stops/108654", "https://data.delijn.be/stops/304305"], ["https://data.delijn.be/stops/408864", "https://data.delijn.be/stops/408882"], ["https://data.delijn.be/stops/401533", "https://data.delijn.be/stops/401827"], ["https://data.delijn.be/stops/200817", "https://data.delijn.be/stops/201116"], ["https://data.delijn.be/stops/105389", "https://data.delijn.be/stops/106025"], ["https://data.delijn.be/stops/304402", "https://data.delijn.be/stops/304408"], ["https://data.delijn.be/stops/203627", "https://data.delijn.be/stops/203643"], ["https://data.delijn.be/stops/206151", "https://data.delijn.be/stops/207151"], ["https://data.delijn.be/stops/103631", "https://data.delijn.be/stops/103632"], ["https://data.delijn.be/stops/304703", "https://data.delijn.be/stops/304704"], ["https://data.delijn.be/stops/400452", "https://data.delijn.be/stops/407215"], ["https://data.delijn.be/stops/208075", "https://data.delijn.be/stops/209075"], ["https://data.delijn.be/stops/503089", "https://data.delijn.be/stops/505848"], ["https://data.delijn.be/stops/403212", "https://data.delijn.be/stops/404759"], ["https://data.delijn.be/stops/504792", "https://data.delijn.be/stops/509563"], ["https://data.delijn.be/stops/106762", "https://data.delijn.be/stops/107516"], ["https://data.delijn.be/stops/206157", "https://data.delijn.be/stops/207157"], ["https://data.delijn.be/stops/505250", "https://data.delijn.be/stops/508998"], ["https://data.delijn.be/stops/206433", "https://data.delijn.be/stops/206434"], ["https://data.delijn.be/stops/408024", "https://data.delijn.be/stops/408028"], ["https://data.delijn.be/stops/108085", "https://data.delijn.be/stops/108090"], ["https://data.delijn.be/stops/400469", "https://data.delijn.be/stops/400471"], ["https://data.delijn.be/stops/504721", "https://data.delijn.be/stops/509718"], ["https://data.delijn.be/stops/206834", "https://data.delijn.be/stops/207426"], ["https://data.delijn.be/stops/109284", "https://data.delijn.be/stops/109736"], ["https://data.delijn.be/stops/304985", "https://data.delijn.be/stops/308017"], ["https://data.delijn.be/stops/101964", "https://data.delijn.be/stops/109284"], ["https://data.delijn.be/stops/404292", "https://data.delijn.be/stops/405699"], ["https://data.delijn.be/stops/207430", "https://data.delijn.be/stops/209692"], ["https://data.delijn.be/stops/109419", "https://data.delijn.be/stops/109420"], ["https://data.delijn.be/stops/105502", "https://data.delijn.be/stops/108799"], ["https://data.delijn.be/stops/103353", "https://data.delijn.be/stops/104570"], ["https://data.delijn.be/stops/103699", "https://data.delijn.be/stops/103700"], ["https://data.delijn.be/stops/209233", "https://data.delijn.be/stops/209234"], ["https://data.delijn.be/stops/301179", "https://data.delijn.be/stops/307102"], ["https://data.delijn.be/stops/202244", "https://data.delijn.be/stops/203244"], ["https://data.delijn.be/stops/400626", "https://data.delijn.be/stops/400627"], ["https://data.delijn.be/stops/102602", "https://data.delijn.be/stops/102643"], ["https://data.delijn.be/stops/108741", "https://data.delijn.be/stops/108742"], ["https://data.delijn.be/stops/404459", "https://data.delijn.be/stops/404585"], ["https://data.delijn.be/stops/104031", "https://data.delijn.be/stops/104394"], ["https://data.delijn.be/stops/404192", "https://data.delijn.be/stops/404193"], ["https://data.delijn.be/stops/200984", "https://data.delijn.be/stops/210335"], ["https://data.delijn.be/stops/501155", "https://data.delijn.be/stops/506156"], ["https://data.delijn.be/stops/205912", "https://data.delijn.be/stops/205916"], ["https://data.delijn.be/stops/404163", "https://data.delijn.be/stops/404170"], ["https://data.delijn.be/stops/403702", "https://data.delijn.be/stops/403717"], ["https://data.delijn.be/stops/401433", "https://data.delijn.be/stops/401474"], ["https://data.delijn.be/stops/503107", "https://data.delijn.be/stops/508090"], ["https://data.delijn.be/stops/400084", "https://data.delijn.be/stops/400152"], ["https://data.delijn.be/stops/101571", "https://data.delijn.be/stops/101572"], ["https://data.delijn.be/stops/405732", "https://data.delijn.be/stops/405739"], ["https://data.delijn.be/stops/405907", "https://data.delijn.be/stops/405965"], ["https://data.delijn.be/stops/205660", "https://data.delijn.be/stops/205680"], ["https://data.delijn.be/stops/211045", "https://data.delijn.be/stops/211106"], ["https://data.delijn.be/stops/202495", "https://data.delijn.be/stops/203495"], ["https://data.delijn.be/stops/206212", "https://data.delijn.be/stops/207814"], ["https://data.delijn.be/stops/302294", "https://data.delijn.be/stops/302295"], ["https://data.delijn.be/stops/302348", "https://data.delijn.be/stops/302349"], ["https://data.delijn.be/stops/304350", "https://data.delijn.be/stops/304356"], ["https://data.delijn.be/stops/504524", "https://data.delijn.be/stops/504526"], ["https://data.delijn.be/stops/108489", "https://data.delijn.be/stops/306595"], ["https://data.delijn.be/stops/206859", "https://data.delijn.be/stops/206927"], ["https://data.delijn.be/stops/300577", "https://data.delijn.be/stops/300592"], ["https://data.delijn.be/stops/301646", "https://data.delijn.be/stops/301672"], ["https://data.delijn.be/stops/400535", "https://data.delijn.be/stops/403858"], ["https://data.delijn.be/stops/504831", "https://data.delijn.be/stops/508893"], ["https://data.delijn.be/stops/201945", "https://data.delijn.be/stops/203456"], ["https://data.delijn.be/stops/302012", "https://data.delijn.be/stops/302044"], ["https://data.delijn.be/stops/503077", "https://data.delijn.be/stops/503078"], ["https://data.delijn.be/stops/201828", "https://data.delijn.be/stops/208276"], ["https://data.delijn.be/stops/106155", "https://data.delijn.be/stops/106157"], ["https://data.delijn.be/stops/409550", "https://data.delijn.be/stops/409555"], ["https://data.delijn.be/stops/503306", "https://data.delijn.be/stops/505947"], ["https://data.delijn.be/stops/200347", "https://data.delijn.be/stops/200349"], ["https://data.delijn.be/stops/406002", "https://data.delijn.be/stops/406100"], ["https://data.delijn.be/stops/204217", "https://data.delijn.be/stops/205177"], ["https://data.delijn.be/stops/204972", "https://data.delijn.be/stops/217002"], ["https://data.delijn.be/stops/405632", "https://data.delijn.be/stops/405634"], ["https://data.delijn.be/stops/301922", "https://data.delijn.be/stops/301924"], ["https://data.delijn.be/stops/200204", "https://data.delijn.be/stops/200253"], ["https://data.delijn.be/stops/300490", "https://data.delijn.be/stops/300491"], ["https://data.delijn.be/stops/305006", "https://data.delijn.be/stops/305007"], ["https://data.delijn.be/stops/304407", "https://data.delijn.be/stops/304408"], ["https://data.delijn.be/stops/501001", "https://data.delijn.be/stops/505403"], ["https://data.delijn.be/stops/409816", "https://data.delijn.be/stops/409818"], ["https://data.delijn.be/stops/400080", "https://data.delijn.be/stops/400167"], ["https://data.delijn.be/stops/106630", "https://data.delijn.be/stops/108016"], ["https://data.delijn.be/stops/106590", "https://data.delijn.be/stops/107274"], ["https://data.delijn.be/stops/303084", "https://data.delijn.be/stops/303086"], ["https://data.delijn.be/stops/302278", "https://data.delijn.be/stops/307932"], ["https://data.delijn.be/stops/502915", "https://data.delijn.be/stops/507927"], ["https://data.delijn.be/stops/205991", "https://data.delijn.be/stops/208780"], ["https://data.delijn.be/stops/400229", "https://data.delijn.be/stops/405610"], ["https://data.delijn.be/stops/200774", "https://data.delijn.be/stops/209384"], ["https://data.delijn.be/stops/507798", "https://data.delijn.be/stops/508924"], ["https://data.delijn.be/stops/103689", "https://data.delijn.be/stops/109431"], ["https://data.delijn.be/stops/407294", "https://data.delijn.be/stops/407869"], ["https://data.delijn.be/stops/204484", "https://data.delijn.be/stops/204735"], ["https://data.delijn.be/stops/405051", "https://data.delijn.be/stops/405118"], ["https://data.delijn.be/stops/205972", "https://data.delijn.be/stops/217002"], ["https://data.delijn.be/stops/204467", "https://data.delijn.be/stops/205468"], ["https://data.delijn.be/stops/508504", "https://data.delijn.be/stops/508509"], ["https://data.delijn.be/stops/101152", "https://data.delijn.be/stops/109621"], ["https://data.delijn.be/stops/305208", "https://data.delijn.be/stops/308904"], ["https://data.delijn.be/stops/402452", "https://data.delijn.be/stops/402453"], ["https://data.delijn.be/stops/105215", "https://data.delijn.be/stops/105541"], ["https://data.delijn.be/stops/302725", "https://data.delijn.be/stops/302769"], ["https://data.delijn.be/stops/502523", "https://data.delijn.be/stops/507665"], ["https://data.delijn.be/stops/407027", "https://data.delijn.be/stops/407035"], ["https://data.delijn.be/stops/408502", "https://data.delijn.be/stops/408547"], ["https://data.delijn.be/stops/405039", "https://data.delijn.be/stops/405057"], ["https://data.delijn.be/stops/306046", "https://data.delijn.be/stops/306259"], ["https://data.delijn.be/stops/304219", "https://data.delijn.be/stops/304230"], ["https://data.delijn.be/stops/308118", "https://data.delijn.be/stops/308120"], ["https://data.delijn.be/stops/101461", "https://data.delijn.be/stops/109253"], ["https://data.delijn.be/stops/400649", "https://data.delijn.be/stops/400652"], ["https://data.delijn.be/stops/403337", "https://data.delijn.be/stops/407634"], ["https://data.delijn.be/stops/109509", "https://data.delijn.be/stops/109510"], ["https://data.delijn.be/stops/304316", "https://data.delijn.be/stops/304317"], ["https://data.delijn.be/stops/106209", "https://data.delijn.be/stops/106212"], ["https://data.delijn.be/stops/300854", "https://data.delijn.be/stops/300894"], ["https://data.delijn.be/stops/407980", "https://data.delijn.be/stops/408031"], ["https://data.delijn.be/stops/403000", "https://data.delijn.be/stops/403277"], ["https://data.delijn.be/stops/101583", "https://data.delijn.be/stops/101584"], ["https://data.delijn.be/stops/200759", "https://data.delijn.be/stops/507962"], ["https://data.delijn.be/stops/501017", "https://data.delijn.be/stops/501716"], ["https://data.delijn.be/stops/203639", "https://data.delijn.be/stops/205069"], ["https://data.delijn.be/stops/304919", "https://data.delijn.be/stops/305396"], ["https://data.delijn.be/stops/504633", "https://data.delijn.be/stops/509222"], ["https://data.delijn.be/stops/308167", "https://data.delijn.be/stops/308229"], ["https://data.delijn.be/stops/206247", "https://data.delijn.be/stops/207247"], ["https://data.delijn.be/stops/207178", "https://data.delijn.be/stops/304080"], ["https://data.delijn.be/stops/204674", "https://data.delijn.be/stops/205673"], ["https://data.delijn.be/stops/410401", "https://data.delijn.be/stops/410402"], ["https://data.delijn.be/stops/206338", "https://data.delijn.be/stops/207339"], ["https://data.delijn.be/stops/207127", "https://data.delijn.be/stops/207650"], ["https://data.delijn.be/stops/206895", "https://data.delijn.be/stops/207887"], ["https://data.delijn.be/stops/108713", "https://data.delijn.be/stops/108857"], ["https://data.delijn.be/stops/501029", "https://data.delijn.be/stops/506041"], ["https://data.delijn.be/stops/105013", "https://data.delijn.be/stops/106831"], ["https://data.delijn.be/stops/503097", "https://data.delijn.be/stops/508095"], ["https://data.delijn.be/stops/202957", "https://data.delijn.be/stops/203241"], ["https://data.delijn.be/stops/401946", "https://data.delijn.be/stops/405851"], ["https://data.delijn.be/stops/504584", "https://data.delijn.be/stops/504588"], ["https://data.delijn.be/stops/107227", "https://data.delijn.be/stops/109750"], ["https://data.delijn.be/stops/200118", "https://data.delijn.be/stops/201119"], ["https://data.delijn.be/stops/402262", "https://data.delijn.be/stops/402488"], ["https://data.delijn.be/stops/205051", "https://data.delijn.be/stops/205052"], ["https://data.delijn.be/stops/105459", "https://data.delijn.be/stops/105461"], ["https://data.delijn.be/stops/102913", "https://data.delijn.be/stops/103532"], ["https://data.delijn.be/stops/202508", "https://data.delijn.be/stops/203507"], ["https://data.delijn.be/stops/406308", "https://data.delijn.be/stops/406310"], ["https://data.delijn.be/stops/404332", "https://data.delijn.be/stops/404333"], ["https://data.delijn.be/stops/107973", "https://data.delijn.be/stops/107974"], ["https://data.delijn.be/stops/305274", "https://data.delijn.be/stops/305601"], ["https://data.delijn.be/stops/400756", "https://data.delijn.be/stops/407592"], ["https://data.delijn.be/stops/407321", "https://data.delijn.be/stops/409427"], ["https://data.delijn.be/stops/409048", "https://data.delijn.be/stops/409444"], ["https://data.delijn.be/stops/503061", "https://data.delijn.be/stops/504997"], ["https://data.delijn.be/stops/402714", "https://data.delijn.be/stops/303647"], ["https://data.delijn.be/stops/405795", "https://data.delijn.be/stops/405883"], ["https://data.delijn.be/stops/302968", "https://data.delijn.be/stops/303001"], ["https://data.delijn.be/stops/108149", "https://data.delijn.be/stops/108150"], ["https://data.delijn.be/stops/402643", "https://data.delijn.be/stops/403647"], ["https://data.delijn.be/stops/305775", "https://data.delijn.be/stops/305776"], ["https://data.delijn.be/stops/209418", "https://data.delijn.be/stops/209419"], ["https://data.delijn.be/stops/208393", "https://data.delijn.be/stops/209393"], ["https://data.delijn.be/stops/303293", "https://data.delijn.be/stops/303322"], ["https://data.delijn.be/stops/105241", "https://data.delijn.be/stops/105243"], ["https://data.delijn.be/stops/300561", "https://data.delijn.be/stops/307858"], ["https://data.delijn.be/stops/200370", "https://data.delijn.be/stops/201446"], ["https://data.delijn.be/stops/300040", "https://data.delijn.be/stops/307732"], ["https://data.delijn.be/stops/406707", "https://data.delijn.be/stops/406708"], ["https://data.delijn.be/stops/402963", "https://data.delijn.be/stops/405151"], ["https://data.delijn.be/stops/502801", "https://data.delijn.be/stops/504182"], ["https://data.delijn.be/stops/208569", "https://data.delijn.be/stops/209090"], ["https://data.delijn.be/stops/204943", "https://data.delijn.be/stops/210256"], ["https://data.delijn.be/stops/401187", "https://data.delijn.be/stops/406070"], ["https://data.delijn.be/stops/509198", "https://data.delijn.be/stops/509199"], ["https://data.delijn.be/stops/104794", "https://data.delijn.be/stops/106823"], ["https://data.delijn.be/stops/201012", "https://data.delijn.be/stops/210021"], ["https://data.delijn.be/stops/410279", "https://data.delijn.be/stops/410280"], ["https://data.delijn.be/stops/103940", "https://data.delijn.be/stops/103945"], ["https://data.delijn.be/stops/204185", "https://data.delijn.be/stops/205186"], ["https://data.delijn.be/stops/307638", "https://data.delijn.be/stops/307640"], ["https://data.delijn.be/stops/504281", "https://data.delijn.be/stops/509283"], ["https://data.delijn.be/stops/405242", "https://data.delijn.be/stops/406311"], ["https://data.delijn.be/stops/401627", "https://data.delijn.be/stops/401649"], ["https://data.delijn.be/stops/305782", "https://data.delijn.be/stops/306878"], ["https://data.delijn.be/stops/403000", "https://data.delijn.be/stops/403133"], ["https://data.delijn.be/stops/302659", "https://data.delijn.be/stops/306772"], ["https://data.delijn.be/stops/408008", "https://data.delijn.be/stops/408148"], ["https://data.delijn.be/stops/303210", "https://data.delijn.be/stops/307953"], ["https://data.delijn.be/stops/206601", "https://data.delijn.be/stops/206738"], ["https://data.delijn.be/stops/106207", "https://data.delijn.be/stops/109905"], ["https://data.delijn.be/stops/200707", "https://data.delijn.be/stops/203329"], ["https://data.delijn.be/stops/205106", "https://data.delijn.be/stops/205752"], ["https://data.delijn.be/stops/509029", "https://data.delijn.be/stops/509759"], ["https://data.delijn.be/stops/102687", "https://data.delijn.be/stops/103980"], ["https://data.delijn.be/stops/202779", "https://data.delijn.be/stops/203769"], ["https://data.delijn.be/stops/403974", "https://data.delijn.be/stops/403977"], ["https://data.delijn.be/stops/304995", "https://data.delijn.be/stops/305033"], ["https://data.delijn.be/stops/406066", "https://data.delijn.be/stops/407114"], ["https://data.delijn.be/stops/304580", "https://data.delijn.be/stops/305448"], ["https://data.delijn.be/stops/109206", "https://data.delijn.be/stops/109209"], ["https://data.delijn.be/stops/400106", "https://data.delijn.be/stops/400134"], ["https://data.delijn.be/stops/206136", "https://data.delijn.be/stops/207469"], ["https://data.delijn.be/stops/307015", "https://data.delijn.be/stops/307016"], ["https://data.delijn.be/stops/102074", "https://data.delijn.be/stops/108839"], ["https://data.delijn.be/stops/202149", "https://data.delijn.be/stops/203149"], ["https://data.delijn.be/stops/402956", "https://data.delijn.be/stops/408180"], ["https://data.delijn.be/stops/402321", "https://data.delijn.be/stops/408054"], ["https://data.delijn.be/stops/208366", "https://data.delijn.be/stops/208776"], ["https://data.delijn.be/stops/407927", "https://data.delijn.be/stops/408018"], ["https://data.delijn.be/stops/201402", "https://data.delijn.be/stops/201689"], ["https://data.delijn.be/stops/400830", "https://data.delijn.be/stops/407532"], ["https://data.delijn.be/stops/101783", "https://data.delijn.be/stops/104114"], ["https://data.delijn.be/stops/308818", "https://data.delijn.be/stops/308819"], ["https://data.delijn.be/stops/203773", "https://data.delijn.be/stops/203774"], ["https://data.delijn.be/stops/108161", "https://data.delijn.be/stops/108162"], ["https://data.delijn.be/stops/405447", "https://data.delijn.be/stops/409281"], ["https://data.delijn.be/stops/104383", "https://data.delijn.be/stops/104393"], ["https://data.delijn.be/stops/401980", "https://data.delijn.be/stops/403885"], ["https://data.delijn.be/stops/303663", "https://data.delijn.be/stops/304937"], ["https://data.delijn.be/stops/306292", "https://data.delijn.be/stops/306293"], ["https://data.delijn.be/stops/202969", "https://data.delijn.be/stops/204092"], ["https://data.delijn.be/stops/403761", "https://data.delijn.be/stops/403764"], ["https://data.delijn.be/stops/307583", "https://data.delijn.be/stops/307652"], ["https://data.delijn.be/stops/108948", "https://data.delijn.be/stops/109224"], ["https://data.delijn.be/stops/401137", "https://data.delijn.be/stops/403762"], ["https://data.delijn.be/stops/202431", "https://data.delijn.be/stops/202433"], ["https://data.delijn.be/stops/504189", "https://data.delijn.be/stops/509189"], ["https://data.delijn.be/stops/407237", "https://data.delijn.be/stops/407505"], ["https://data.delijn.be/stops/304544", "https://data.delijn.be/stops/304547"], ["https://data.delijn.be/stops/108899", "https://data.delijn.be/stops/108902"], ["https://data.delijn.be/stops/204717", "https://data.delijn.be/stops/205712"], ["https://data.delijn.be/stops/106606", "https://data.delijn.be/stops/106686"], ["https://data.delijn.be/stops/206161", "https://data.delijn.be/stops/207449"], ["https://data.delijn.be/stops/406466", "https://data.delijn.be/stops/406467"], ["https://data.delijn.be/stops/408802", "https://data.delijn.be/stops/408806"], ["https://data.delijn.be/stops/302240", "https://data.delijn.be/stops/302243"], ["https://data.delijn.be/stops/104952", "https://data.delijn.be/stops/108495"], ["https://data.delijn.be/stops/106519", "https://data.delijn.be/stops/106521"], ["https://data.delijn.be/stops/102671", "https://data.delijn.be/stops/105648"], ["https://data.delijn.be/stops/204695", "https://data.delijn.be/stops/205701"], ["https://data.delijn.be/stops/307437", "https://data.delijn.be/stops/307438"], ["https://data.delijn.be/stops/304759", "https://data.delijn.be/stops/304763"], ["https://data.delijn.be/stops/400010", "https://data.delijn.be/stops/400015"], ["https://data.delijn.be/stops/508963", "https://data.delijn.be/stops/508964"], ["https://data.delijn.be/stops/200745", "https://data.delijn.be/stops/209644"], ["https://data.delijn.be/stops/105117", "https://data.delijn.be/stops/105158"], ["https://data.delijn.be/stops/402690", "https://data.delijn.be/stops/402743"], ["https://data.delijn.be/stops/404010", "https://data.delijn.be/stops/404353"], ["https://data.delijn.be/stops/106911", "https://data.delijn.be/stops/107261"], ["https://data.delijn.be/stops/402074", "https://data.delijn.be/stops/402219"], ["https://data.delijn.be/stops/206527", "https://data.delijn.be/stops/207582"], ["https://data.delijn.be/stops/404351", "https://data.delijn.be/stops/404384"], ["https://data.delijn.be/stops/402022", "https://data.delijn.be/stops/408878"], ["https://data.delijn.be/stops/108974", "https://data.delijn.be/stops/109690"], ["https://data.delijn.be/stops/409382", "https://data.delijn.be/stops/409383"], ["https://data.delijn.be/stops/207135", "https://data.delijn.be/stops/207136"], ["https://data.delijn.be/stops/305539", "https://data.delijn.be/stops/307181"], ["https://data.delijn.be/stops/407263", "https://data.delijn.be/stops/410255"], ["https://data.delijn.be/stops/107073", "https://data.delijn.be/stops/107074"], ["https://data.delijn.be/stops/105243", "https://data.delijn.be/stops/105247"], ["https://data.delijn.be/stops/103628", "https://data.delijn.be/stops/107169"], ["https://data.delijn.be/stops/206752", "https://data.delijn.be/stops/208532"], ["https://data.delijn.be/stops/202987", "https://data.delijn.be/stops/203987"], ["https://data.delijn.be/stops/305120", "https://data.delijn.be/stops/305129"], ["https://data.delijn.be/stops/101137", "https://data.delijn.be/stops/101142"], ["https://data.delijn.be/stops/206727", "https://data.delijn.be/stops/207983"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/402622"], ["https://data.delijn.be/stops/101093", "https://data.delijn.be/stops/104462"], ["https://data.delijn.be/stops/503818", "https://data.delijn.be/stops/508821"], ["https://data.delijn.be/stops/308182", "https://data.delijn.be/stops/308195"], ["https://data.delijn.be/stops/103031", "https://data.delijn.be/stops/107959"], ["https://data.delijn.be/stops/406176", "https://data.delijn.be/stops/406177"], ["https://data.delijn.be/stops/300817", "https://data.delijn.be/stops/303833"], ["https://data.delijn.be/stops/300851", "https://data.delijn.be/stops/300852"], ["https://data.delijn.be/stops/304986", "https://data.delijn.be/stops/304987"], ["https://data.delijn.be/stops/301528", "https://data.delijn.be/stops/301529"], ["https://data.delijn.be/stops/300118", "https://data.delijn.be/stops/306854"], ["https://data.delijn.be/stops/303761", "https://data.delijn.be/stops/303763"], ["https://data.delijn.be/stops/308233", "https://data.delijn.be/stops/308235"], ["https://data.delijn.be/stops/200192", "https://data.delijn.be/stops/201689"], ["https://data.delijn.be/stops/503403", "https://data.delijn.be/stops/508382"], ["https://data.delijn.be/stops/206677", "https://data.delijn.be/stops/208804"], ["https://data.delijn.be/stops/400554", "https://data.delijn.be/stops/400572"], ["https://data.delijn.be/stops/201183", "https://data.delijn.be/stops/202522"], ["https://data.delijn.be/stops/306182", "https://data.delijn.be/stops/306186"], ["https://data.delijn.be/stops/105562", "https://data.delijn.be/stops/105566"], ["https://data.delijn.be/stops/200350", "https://data.delijn.be/stops/201013"], ["https://data.delijn.be/stops/303341", "https://data.delijn.be/stops/303342"], ["https://data.delijn.be/stops/301781", "https://data.delijn.be/stops/306879"], ["https://data.delijn.be/stops/504231", "https://data.delijn.be/stops/509230"], ["https://data.delijn.be/stops/403948", "https://data.delijn.be/stops/404022"], ["https://data.delijn.be/stops/504523", "https://data.delijn.be/stops/509059"], ["https://data.delijn.be/stops/503270", "https://data.delijn.be/stops/508035"], ["https://data.delijn.be/stops/105748", "https://data.delijn.be/stops/109820"], ["https://data.delijn.be/stops/502694", "https://data.delijn.be/stops/507419"], ["https://data.delijn.be/stops/101906", "https://data.delijn.be/stops/107021"], ["https://data.delijn.be/stops/502473", "https://data.delijn.be/stops/502803"], ["https://data.delijn.be/stops/409236", "https://data.delijn.be/stops/409242"], ["https://data.delijn.be/stops/206509", "https://data.delijn.be/stops/206510"], ["https://data.delijn.be/stops/404474", "https://data.delijn.be/stops/404502"], ["https://data.delijn.be/stops/201922", "https://data.delijn.be/stops/203961"], ["https://data.delijn.be/stops/202529", "https://data.delijn.be/stops/202965"], ["https://data.delijn.be/stops/401343", "https://data.delijn.be/stops/401393"], ["https://data.delijn.be/stops/106634", "https://data.delijn.be/stops/106636"], ["https://data.delijn.be/stops/304437", "https://data.delijn.be/stops/306063"], ["https://data.delijn.be/stops/208398", "https://data.delijn.be/stops/209278"], ["https://data.delijn.be/stops/303577", "https://data.delijn.be/stops/303584"], ["https://data.delijn.be/stops/502388", "https://data.delijn.be/stops/502578"], ["https://data.delijn.be/stops/108263", "https://data.delijn.be/stops/109337"], ["https://data.delijn.be/stops/208458", "https://data.delijn.be/stops/209754"], ["https://data.delijn.be/stops/403104", "https://data.delijn.be/stops/403111"], ["https://data.delijn.be/stops/403008", "https://data.delijn.be/stops/410325"], ["https://data.delijn.be/stops/102191", "https://data.delijn.be/stops/104262"], ["https://data.delijn.be/stops/104638", "https://data.delijn.be/stops/109583"], ["https://data.delijn.be/stops/200968", "https://data.delijn.be/stops/218012"], ["https://data.delijn.be/stops/403672", "https://data.delijn.be/stops/403673"], ["https://data.delijn.be/stops/104417", "https://data.delijn.be/stops/104419"], ["https://data.delijn.be/stops/201694", "https://data.delijn.be/stops/203987"], ["https://data.delijn.be/stops/203246", "https://data.delijn.be/stops/203730"], ["https://data.delijn.be/stops/400608", "https://data.delijn.be/stops/400618"], ["https://data.delijn.be/stops/501198", "https://data.delijn.be/stops/506198"], ["https://data.delijn.be/stops/105889", "https://data.delijn.be/stops/105891"], ["https://data.delijn.be/stops/207442", "https://data.delijn.be/stops/209560"], ["https://data.delijn.be/stops/502012", "https://data.delijn.be/stops/505240"], ["https://data.delijn.be/stops/304475", "https://data.delijn.be/stops/305492"], ["https://data.delijn.be/stops/503784", "https://data.delijn.be/stops/503786"], ["https://data.delijn.be/stops/206880", "https://data.delijn.be/stops/207306"], ["https://data.delijn.be/stops/405004", "https://data.delijn.be/stops/406514"], ["https://data.delijn.be/stops/304761", "https://data.delijn.be/stops/304766"], ["https://data.delijn.be/stops/101958", "https://data.delijn.be/stops/108298"], ["https://data.delijn.be/stops/101067", "https://data.delijn.be/stops/105962"], ["https://data.delijn.be/stops/400560", "https://data.delijn.be/stops/403820"], ["https://data.delijn.be/stops/206518", "https://data.delijn.be/stops/209679"], ["https://data.delijn.be/stops/503369", "https://data.delijn.be/stops/508369"], ["https://data.delijn.be/stops/304356", "https://data.delijn.be/stops/304357"], ["https://data.delijn.be/stops/401036", "https://data.delijn.be/stops/404868"], ["https://data.delijn.be/stops/201429", "https://data.delijn.be/stops/201549"], ["https://data.delijn.be/stops/502313", "https://data.delijn.be/stops/507301"], ["https://data.delijn.be/stops/305189", "https://data.delijn.be/stops/305207"], ["https://data.delijn.be/stops/504513", "https://data.delijn.be/stops/505176"], ["https://data.delijn.be/stops/502725", "https://data.delijn.be/stops/507681"], ["https://data.delijn.be/stops/505761", "https://data.delijn.be/stops/507758"], ["https://data.delijn.be/stops/102867", "https://data.delijn.be/stops/106447"], ["https://data.delijn.be/stops/106269", "https://data.delijn.be/stops/106341"], ["https://data.delijn.be/stops/200473", "https://data.delijn.be/stops/201472"], ["https://data.delijn.be/stops/307903", "https://data.delijn.be/stops/308491"], ["https://data.delijn.be/stops/502569", "https://data.delijn.be/stops/502637"], ["https://data.delijn.be/stops/106639", "https://data.delijn.be/stops/106640"], ["https://data.delijn.be/stops/306758", "https://data.delijn.be/stops/306759"], ["https://data.delijn.be/stops/408853", "https://data.delijn.be/stops/408870"], ["https://data.delijn.be/stops/200117", "https://data.delijn.be/stops/200874"], ["https://data.delijn.be/stops/202099", "https://data.delijn.be/stops/203255"], ["https://data.delijn.be/stops/201009", "https://data.delijn.be/stops/201417"], ["https://data.delijn.be/stops/305028", "https://data.delijn.be/stops/305031"], ["https://data.delijn.be/stops/302179", "https://data.delijn.be/stops/305173"], ["https://data.delijn.be/stops/503193", "https://data.delijn.be/stops/508193"], ["https://data.delijn.be/stops/501318", "https://data.delijn.be/stops/501355"], ["https://data.delijn.be/stops/301723", "https://data.delijn.be/stops/301725"], ["https://data.delijn.be/stops/105110", "https://data.delijn.be/stops/108930"], ["https://data.delijn.be/stops/207857", "https://data.delijn.be/stops/207858"], ["https://data.delijn.be/stops/301388", "https://data.delijn.be/stops/304667"], ["https://data.delijn.be/stops/208492", "https://data.delijn.be/stops/208493"], ["https://data.delijn.be/stops/208669", "https://data.delijn.be/stops/209439"], ["https://data.delijn.be/stops/408678", "https://data.delijn.be/stops/408679"], ["https://data.delijn.be/stops/208516", "https://data.delijn.be/stops/209516"], ["https://data.delijn.be/stops/505112", "https://data.delijn.be/stops/509517"], ["https://data.delijn.be/stops/504135", "https://data.delijn.be/stops/509135"], ["https://data.delijn.be/stops/402214", "https://data.delijn.be/stops/404860"], ["https://data.delijn.be/stops/209377", "https://data.delijn.be/stops/218008"], ["https://data.delijn.be/stops/503121", "https://data.delijn.be/stops/503884"], ["https://data.delijn.be/stops/304434", "https://data.delijn.be/stops/304461"], ["https://data.delijn.be/stops/503816", "https://data.delijn.be/stops/503817"], ["https://data.delijn.be/stops/404490", "https://data.delijn.be/stops/404538"], ["https://data.delijn.be/stops/202626", "https://data.delijn.be/stops/202627"], ["https://data.delijn.be/stops/101797", "https://data.delijn.be/stops/101798"], ["https://data.delijn.be/stops/408760", "https://data.delijn.be/stops/408813"], ["https://data.delijn.be/stops/502469", "https://data.delijn.be/stops/509703"], ["https://data.delijn.be/stops/304753", "https://data.delijn.be/stops/307276"], ["https://data.delijn.be/stops/102735", "https://data.delijn.be/stops/104723"], ["https://data.delijn.be/stops/206796", "https://data.delijn.be/stops/208048"], ["https://data.delijn.be/stops/404214", "https://data.delijn.be/stops/404217"], ["https://data.delijn.be/stops/501265", "https://data.delijn.be/stops/501322"], ["https://data.delijn.be/stops/201674", "https://data.delijn.be/stops/203205"], ["https://data.delijn.be/stops/201237", "https://data.delijn.be/stops/205924"], ["https://data.delijn.be/stops/106038", "https://data.delijn.be/stops/106570"], ["https://data.delijn.be/stops/501672", "https://data.delijn.be/stops/505712"], ["https://data.delijn.be/stops/300347", "https://data.delijn.be/stops/300349"], ["https://data.delijn.be/stops/202945", "https://data.delijn.be/stops/207966"], ["https://data.delijn.be/stops/209589", "https://data.delijn.be/stops/307530"], ["https://data.delijn.be/stops/302766", "https://data.delijn.be/stops/302774"], ["https://data.delijn.be/stops/101462", "https://data.delijn.be/stops/102962"], ["https://data.delijn.be/stops/106395", "https://data.delijn.be/stops/107835"], ["https://data.delijn.be/stops/408625", "https://data.delijn.be/stops/408727"], ["https://data.delijn.be/stops/101411", "https://data.delijn.be/stops/101433"], ["https://data.delijn.be/stops/106791", "https://data.delijn.be/stops/106793"], ["https://data.delijn.be/stops/406570", "https://data.delijn.be/stops/406701"], ["https://data.delijn.be/stops/306791", "https://data.delijn.be/stops/307812"], ["https://data.delijn.be/stops/102602", "https://data.delijn.be/stops/107946"], ["https://data.delijn.be/stops/407684", "https://data.delijn.be/stops/407685"], ["https://data.delijn.be/stops/403275", "https://data.delijn.be/stops/403507"], ["https://data.delijn.be/stops/503920", "https://data.delijn.be/stops/508929"], ["https://data.delijn.be/stops/101262", "https://data.delijn.be/stops/102320"], ["https://data.delijn.be/stops/105772", "https://data.delijn.be/stops/105774"], ["https://data.delijn.be/stops/103011", "https://data.delijn.be/stops/104096"], ["https://data.delijn.be/stops/306693", "https://data.delijn.be/stops/306695"], ["https://data.delijn.be/stops/105068", "https://data.delijn.be/stops/106781"], ["https://data.delijn.be/stops/407341", "https://data.delijn.be/stops/409403"], ["https://data.delijn.be/stops/503513", "https://data.delijn.be/stops/504791"], ["https://data.delijn.be/stops/200204", "https://data.delijn.be/stops/201204"], ["https://data.delijn.be/stops/505073", "https://data.delijn.be/stops/507763"], ["https://data.delijn.be/stops/209673", "https://data.delijn.be/stops/209674"], ["https://data.delijn.be/stops/305804", "https://data.delijn.be/stops/305806"], ["https://data.delijn.be/stops/106100", "https://data.delijn.be/stops/107765"], ["https://data.delijn.be/stops/304072", "https://data.delijn.be/stops/307504"], ["https://data.delijn.be/stops/400301", "https://data.delijn.be/stops/400302"], ["https://data.delijn.be/stops/502189", "https://data.delijn.be/stops/507189"], ["https://data.delijn.be/stops/107167", "https://data.delijn.be/stops/107171"], ["https://data.delijn.be/stops/404638", "https://data.delijn.be/stops/406962"], ["https://data.delijn.be/stops/300337", "https://data.delijn.be/stops/305543"], ["https://data.delijn.be/stops/404974", "https://data.delijn.be/stops/410295"], ["https://data.delijn.be/stops/503504", "https://data.delijn.be/stops/508079"], ["https://data.delijn.be/stops/101995", "https://data.delijn.be/stops/102420"], ["https://data.delijn.be/stops/105052", "https://data.delijn.be/stops/105054"], ["https://data.delijn.be/stops/502500", "https://data.delijn.be/stops/505662"], ["https://data.delijn.be/stops/206543", "https://data.delijn.be/stops/206564"], ["https://data.delijn.be/stops/502517", "https://data.delijn.be/stops/507517"], ["https://data.delijn.be/stops/202640", "https://data.delijn.be/stops/203109"], ["https://data.delijn.be/stops/104993", "https://data.delijn.be/stops/109997"], ["https://data.delijn.be/stops/203535", "https://data.delijn.be/stops/204770"], ["https://data.delijn.be/stops/208544", "https://data.delijn.be/stops/209544"], ["https://data.delijn.be/stops/407155", "https://data.delijn.be/stops/409514"], ["https://data.delijn.be/stops/405768", "https://data.delijn.be/stops/409277"], ["https://data.delijn.be/stops/301234", "https://data.delijn.be/stops/307612"], ["https://data.delijn.be/stops/504261", "https://data.delijn.be/stops/509262"], ["https://data.delijn.be/stops/307211", "https://data.delijn.be/stops/307214"], ["https://data.delijn.be/stops/501678", "https://data.delijn.be/stops/506678"], ["https://data.delijn.be/stops/305249", "https://data.delijn.be/stops/305256"], ["https://data.delijn.be/stops/109766", "https://data.delijn.be/stops/304043"], ["https://data.delijn.be/stops/106224", "https://data.delijn.be/stops/106226"], ["https://data.delijn.be/stops/406788", "https://data.delijn.be/stops/406853"], ["https://data.delijn.be/stops/503658", "https://data.delijn.be/stops/508658"], ["https://data.delijn.be/stops/408671", "https://data.delijn.be/stops/408755"], ["https://data.delijn.be/stops/302534", "https://data.delijn.be/stops/308615"], ["https://data.delijn.be/stops/208199", "https://data.delijn.be/stops/209198"], ["https://data.delijn.be/stops/401470", "https://data.delijn.be/stops/401895"], ["https://data.delijn.be/stops/507245", "https://data.delijn.be/stops/507248"], ["https://data.delijn.be/stops/204942", "https://data.delijn.be/stops/205943"], ["https://data.delijn.be/stops/407660", "https://data.delijn.be/stops/409807"], ["https://data.delijn.be/stops/301603", "https://data.delijn.be/stops/301618"], ["https://data.delijn.be/stops/402240", "https://data.delijn.be/stops/402420"], ["https://data.delijn.be/stops/105771", "https://data.delijn.be/stops/105776"], ["https://data.delijn.be/stops/202904", "https://data.delijn.be/stops/203904"], ["https://data.delijn.be/stops/400804", "https://data.delijn.be/stops/400805"], ["https://data.delijn.be/stops/205687", "https://data.delijn.be/stops/205688"], ["https://data.delijn.be/stops/307763", "https://data.delijn.be/stops/307765"], ["https://data.delijn.be/stops/203625", "https://data.delijn.be/stops/203626"], ["https://data.delijn.be/stops/504121", "https://data.delijn.be/stops/504124"], ["https://data.delijn.be/stops/105315", "https://data.delijn.be/stops/105410"], ["https://data.delijn.be/stops/107965", "https://data.delijn.be/stops/107967"], ["https://data.delijn.be/stops/501682", "https://data.delijn.be/stops/509659"], ["https://data.delijn.be/stops/403938", "https://data.delijn.be/stops/404030"], ["https://data.delijn.be/stops/202863", "https://data.delijn.be/stops/203863"], ["https://data.delijn.be/stops/201692", "https://data.delijn.be/stops/202366"], ["https://data.delijn.be/stops/503237", "https://data.delijn.be/stops/504961"], ["https://data.delijn.be/stops/502002", "https://data.delijn.be/stops/505742"], ["https://data.delijn.be/stops/202369", "https://data.delijn.be/stops/203999"], ["https://data.delijn.be/stops/101516", "https://data.delijn.be/stops/101517"], ["https://data.delijn.be/stops/301165", "https://data.delijn.be/stops/307695"], ["https://data.delijn.be/stops/406565", "https://data.delijn.be/stops/408811"], ["https://data.delijn.be/stops/107360", "https://data.delijn.be/stops/107840"], ["https://data.delijn.be/stops/407098", "https://data.delijn.be/stops/407301"], ["https://data.delijn.be/stops/108817", "https://data.delijn.be/stops/108848"], ["https://data.delijn.be/stops/109169", "https://data.delijn.be/stops/109172"], ["https://data.delijn.be/stops/207442", "https://data.delijn.be/stops/209690"], ["https://data.delijn.be/stops/505151", "https://data.delijn.be/stops/506096"], ["https://data.delijn.be/stops/403813", "https://data.delijn.be/stops/403815"], ["https://data.delijn.be/stops/200129", "https://data.delijn.be/stops/201210"], ["https://data.delijn.be/stops/205206", "https://data.delijn.be/stops/205473"], ["https://data.delijn.be/stops/502413", "https://data.delijn.be/stops/507413"], ["https://data.delijn.be/stops/407023", "https://data.delijn.be/stops/407027"], ["https://data.delijn.be/stops/304574", "https://data.delijn.be/stops/304659"], ["https://data.delijn.be/stops/502754", "https://data.delijn.be/stops/505649"], ["https://data.delijn.be/stops/407803", "https://data.delijn.be/stops/407850"], ["https://data.delijn.be/stops/504127", "https://data.delijn.be/stops/504257"], ["https://data.delijn.be/stops/504432", "https://data.delijn.be/stops/509420"], ["https://data.delijn.be/stops/302205", "https://data.delijn.be/stops/302209"], ["https://data.delijn.be/stops/301443", "https://data.delijn.be/stops/307608"], ["https://data.delijn.be/stops/507121", "https://data.delijn.be/stops/507164"], ["https://data.delijn.be/stops/406826", "https://data.delijn.be/stops/409431"], ["https://data.delijn.be/stops/502030", "https://data.delijn.be/stops/505768"], ["https://data.delijn.be/stops/208149", "https://data.delijn.be/stops/209151"], ["https://data.delijn.be/stops/108748", "https://data.delijn.be/stops/109561"], ["https://data.delijn.be/stops/200491", "https://data.delijn.be/stops/203452"], ["https://data.delijn.be/stops/501423", "https://data.delijn.be/stops/506425"], ["https://data.delijn.be/stops/401899", "https://data.delijn.be/stops/406518"], ["https://data.delijn.be/stops/507030", "https://data.delijn.be/stops/507676"], ["https://data.delijn.be/stops/206317", "https://data.delijn.be/stops/206812"], ["https://data.delijn.be/stops/109812", "https://data.delijn.be/stops/109813"], ["https://data.delijn.be/stops/504090", "https://data.delijn.be/stops/505927"], ["https://data.delijn.be/stops/206102", "https://data.delijn.be/stops/207844"], ["https://data.delijn.be/stops/402873", "https://data.delijn.be/stops/402874"], ["https://data.delijn.be/stops/204160", "https://data.delijn.be/stops/205592"], ["https://data.delijn.be/stops/201832", "https://data.delijn.be/stops/208259"], ["https://data.delijn.be/stops/205368", "https://data.delijn.be/stops/205369"], ["https://data.delijn.be/stops/208888", "https://data.delijn.be/stops/210853"], ["https://data.delijn.be/stops/302247", "https://data.delijn.be/stops/303997"], ["https://data.delijn.be/stops/106521", "https://data.delijn.be/stops/106523"], ["https://data.delijn.be/stops/107335", "https://data.delijn.be/stops/108325"], ["https://data.delijn.be/stops/301622", "https://data.delijn.be/stops/301624"], ["https://data.delijn.be/stops/107158", "https://data.delijn.be/stops/107159"], ["https://data.delijn.be/stops/301764", "https://data.delijn.be/stops/301766"], ["https://data.delijn.be/stops/200108", "https://data.delijn.be/stops/200361"], ["https://data.delijn.be/stops/503775", "https://data.delijn.be/stops/505276"], ["https://data.delijn.be/stops/204053", "https://data.delijn.be/stops/205053"], ["https://data.delijn.be/stops/304373", "https://data.delijn.be/stops/304411"], ["https://data.delijn.be/stops/300299", "https://data.delijn.be/stops/306092"], ["https://data.delijn.be/stops/207787", "https://data.delijn.be/stops/208372"], ["https://data.delijn.be/stops/405975", "https://data.delijn.be/stops/405992"], ["https://data.delijn.be/stops/303824", "https://data.delijn.be/stops/303825"], ["https://data.delijn.be/stops/407771", "https://data.delijn.be/stops/304360"], ["https://data.delijn.be/stops/405846", "https://data.delijn.be/stops/409663"], ["https://data.delijn.be/stops/204149", "https://data.delijn.be/stops/204156"], ["https://data.delijn.be/stops/101002", "https://data.delijn.be/stops/108625"], ["https://data.delijn.be/stops/506074", "https://data.delijn.be/stops/506778"], ["https://data.delijn.be/stops/505027", "https://data.delijn.be/stops/505771"], ["https://data.delijn.be/stops/304054", "https://data.delijn.be/stops/304063"], ["https://data.delijn.be/stops/407044", "https://data.delijn.be/stops/407051"], ["https://data.delijn.be/stops/304825", "https://data.delijn.be/stops/304826"], ["https://data.delijn.be/stops/102621", "https://data.delijn.be/stops/102622"], ["https://data.delijn.be/stops/202672", "https://data.delijn.be/stops/211035"], ["https://data.delijn.be/stops/205017", "https://data.delijn.be/stops/205089"], ["https://data.delijn.be/stops/303645", "https://data.delijn.be/stops/305496"], ["https://data.delijn.be/stops/200390", "https://data.delijn.be/stops/208722"], ["https://data.delijn.be/stops/104949", "https://data.delijn.be/stops/109995"], ["https://data.delijn.be/stops/105286", "https://data.delijn.be/stops/107995"], ["https://data.delijn.be/stops/200658", "https://data.delijn.be/stops/208329"], ["https://data.delijn.be/stops/502109", "https://data.delijn.be/stops/507145"], ["https://data.delijn.be/stops/402770", "https://data.delijn.be/stops/408389"], ["https://data.delijn.be/stops/207992", "https://data.delijn.be/stops/307029"], ["https://data.delijn.be/stops/105078", "https://data.delijn.be/stops/105089"], ["https://data.delijn.be/stops/206499", "https://data.delijn.be/stops/206556"], ["https://data.delijn.be/stops/502178", "https://data.delijn.be/stops/502703"], ["https://data.delijn.be/stops/104884", "https://data.delijn.be/stops/205528"], ["https://data.delijn.be/stops/301609", "https://data.delijn.be/stops/301632"], ["https://data.delijn.be/stops/307507", "https://data.delijn.be/stops/307508"], ["https://data.delijn.be/stops/108874", "https://data.delijn.be/stops/109509"], ["https://data.delijn.be/stops/106430", "https://data.delijn.be/stops/106432"], ["https://data.delijn.be/stops/201055", "https://data.delijn.be/stops/201902"], ["https://data.delijn.be/stops/404463", "https://data.delijn.be/stops/404542"], ["https://data.delijn.be/stops/401030", "https://data.delijn.be/stops/401114"], ["https://data.delijn.be/stops/401088", "https://data.delijn.be/stops/401095"], ["https://data.delijn.be/stops/508139", "https://data.delijn.be/stops/508284"], ["https://data.delijn.be/stops/404168", "https://data.delijn.be/stops/404230"], ["https://data.delijn.be/stops/503952", "https://data.delijn.be/stops/504276"], ["https://data.delijn.be/stops/405626", "https://data.delijn.be/stops/407799"], ["https://data.delijn.be/stops/104018", "https://data.delijn.be/stops/107264"], ["https://data.delijn.be/stops/206289", "https://data.delijn.be/stops/207811"], ["https://data.delijn.be/stops/501226", "https://data.delijn.be/stops/506228"], ["https://data.delijn.be/stops/305144", "https://data.delijn.be/stops/305224"], ["https://data.delijn.be/stops/200023", "https://data.delijn.be/stops/208849"], ["https://data.delijn.be/stops/202305", "https://data.delijn.be/stops/203066"], ["https://data.delijn.be/stops/200105", "https://data.delijn.be/stops/201360"], ["https://data.delijn.be/stops/300630", "https://data.delijn.be/stops/306112"], ["https://data.delijn.be/stops/300703", "https://data.delijn.be/stops/308067"], ["https://data.delijn.be/stops/303953", "https://data.delijn.be/stops/303954"], ["https://data.delijn.be/stops/105738", "https://data.delijn.be/stops/109958"], ["https://data.delijn.be/stops/502171", "https://data.delijn.be/stops/507344"], ["https://data.delijn.be/stops/404625", "https://data.delijn.be/stops/406958"], ["https://data.delijn.be/stops/406063", "https://data.delijn.be/stops/407865"], ["https://data.delijn.be/stops/302734", "https://data.delijn.be/stops/302745"], ["https://data.delijn.be/stops/206943", "https://data.delijn.be/stops/307745"], ["https://data.delijn.be/stops/205572", "https://data.delijn.be/stops/307135"], ["https://data.delijn.be/stops/501154", "https://data.delijn.be/stops/501166"], ["https://data.delijn.be/stops/207757", "https://data.delijn.be/stops/208757"], ["https://data.delijn.be/stops/303123", "https://data.delijn.be/stops/307204"], ["https://data.delijn.be/stops/400351", "https://data.delijn.be/stops/400353"], ["https://data.delijn.be/stops/206514", "https://data.delijn.be/stops/206515"], ["https://data.delijn.be/stops/105309", "https://data.delijn.be/stops/105311"], ["https://data.delijn.be/stops/502330", "https://data.delijn.be/stops/505737"], ["https://data.delijn.be/stops/201199", "https://data.delijn.be/stops/201732"], ["https://data.delijn.be/stops/204118", "https://data.delijn.be/stops/205116"], ["https://data.delijn.be/stops/405778", "https://data.delijn.be/stops/409422"], ["https://data.delijn.be/stops/400599", "https://data.delijn.be/stops/400621"], ["https://data.delijn.be/stops/402456", "https://data.delijn.be/stops/402469"], ["https://data.delijn.be/stops/103928", "https://data.delijn.be/stops/106603"], ["https://data.delijn.be/stops/408711", "https://data.delijn.be/stops/408733"], ["https://data.delijn.be/stops/103994", "https://data.delijn.be/stops/104048"], ["https://data.delijn.be/stops/502177", "https://data.delijn.be/stops/507178"], ["https://data.delijn.be/stops/207712", "https://data.delijn.be/stops/207746"], ["https://data.delijn.be/stops/106191", "https://data.delijn.be/stops/106192"], ["https://data.delijn.be/stops/200064", "https://data.delijn.be/stops/201271"], ["https://data.delijn.be/stops/503560", "https://data.delijn.be/stops/503561"], ["https://data.delijn.be/stops/502218", "https://data.delijn.be/stops/507206"], ["https://data.delijn.be/stops/408358", "https://data.delijn.be/stops/408380"], ["https://data.delijn.be/stops/106607", "https://data.delijn.be/stops/106690"], ["https://data.delijn.be/stops/304891", "https://data.delijn.be/stops/305551"], ["https://data.delijn.be/stops/102726", "https://data.delijn.be/stops/104108"], ["https://data.delijn.be/stops/204121", "https://data.delijn.be/stops/204249"], ["https://data.delijn.be/stops/506664", "https://data.delijn.be/stops/506732"], ["https://data.delijn.be/stops/107281", "https://data.delijn.be/stops/107396"], ["https://data.delijn.be/stops/502451", "https://data.delijn.be/stops/507451"], ["https://data.delijn.be/stops/103251", "https://data.delijn.be/stops/109035"], ["https://data.delijn.be/stops/403426", "https://data.delijn.be/stops/410291"], ["https://data.delijn.be/stops/300072", "https://data.delijn.be/stops/304669"], ["https://data.delijn.be/stops/401648", "https://data.delijn.be/stops/406519"], ["https://data.delijn.be/stops/206485", "https://data.delijn.be/stops/207485"], ["https://data.delijn.be/stops/104596", "https://data.delijn.be/stops/107428"], ["https://data.delijn.be/stops/101644", "https://data.delijn.be/stops/109977"], ["https://data.delijn.be/stops/302862", "https://data.delijn.be/stops/306111"], ["https://data.delijn.be/stops/508696", "https://data.delijn.be/stops/508699"], ["https://data.delijn.be/stops/503162", "https://data.delijn.be/stops/503239"], ["https://data.delijn.be/stops/200551", "https://data.delijn.be/stops/201033"], ["https://data.delijn.be/stops/202963", "https://data.delijn.be/stops/206270"], ["https://data.delijn.be/stops/504664", "https://data.delijn.be/stops/505414"], ["https://data.delijn.be/stops/306557", "https://data.delijn.be/stops/306559"], ["https://data.delijn.be/stops/503898", "https://data.delijn.be/stops/508147"], ["https://data.delijn.be/stops/504475", "https://data.delijn.be/stops/509478"], ["https://data.delijn.be/stops/102194", "https://data.delijn.be/stops/109747"], ["https://data.delijn.be/stops/505277", "https://data.delijn.be/stops/508436"], ["https://data.delijn.be/stops/308619", "https://data.delijn.be/stops/308620"], ["https://data.delijn.be/stops/207756", "https://data.delijn.be/stops/207757"], ["https://data.delijn.be/stops/506266", "https://data.delijn.be/stops/506783"], ["https://data.delijn.be/stops/303548", "https://data.delijn.be/stops/306283"], ["https://data.delijn.be/stops/200825", "https://data.delijn.be/stops/203295"], ["https://data.delijn.be/stops/109074", "https://data.delijn.be/stops/300149"], ["https://data.delijn.be/stops/200972", "https://data.delijn.be/stops/208705"], ["https://data.delijn.be/stops/400429", "https://data.delijn.be/stops/402767"], ["https://data.delijn.be/stops/406615", "https://data.delijn.be/stops/406638"], ["https://data.delijn.be/stops/301828", "https://data.delijn.be/stops/301852"], ["https://data.delijn.be/stops/101654", "https://data.delijn.be/stops/308847"], ["https://data.delijn.be/stops/306698", "https://data.delijn.be/stops/308779"], ["https://data.delijn.be/stops/302003", "https://data.delijn.be/stops/302019"], ["https://data.delijn.be/stops/401483", "https://data.delijn.be/stops/401508"], ["https://data.delijn.be/stops/301305", "https://data.delijn.be/stops/308657"], ["https://data.delijn.be/stops/507293", "https://data.delijn.be/stops/507294"], ["https://data.delijn.be/stops/501150", "https://data.delijn.be/stops/506432"], ["https://data.delijn.be/stops/107928", "https://data.delijn.be/stops/107929"], ["https://data.delijn.be/stops/406585", "https://data.delijn.be/stops/406622"], ["https://data.delijn.be/stops/400054", "https://data.delijn.be/stops/400105"], ["https://data.delijn.be/stops/216012", "https://data.delijn.be/stops/217014"], ["https://data.delijn.be/stops/206805", "https://data.delijn.be/stops/306731"], ["https://data.delijn.be/stops/304889", "https://data.delijn.be/stops/304890"], ["https://data.delijn.be/stops/209459", "https://data.delijn.be/stops/209754"], ["https://data.delijn.be/stops/401410", "https://data.delijn.be/stops/300991"], ["https://data.delijn.be/stops/103470", "https://data.delijn.be/stops/103576"], ["https://data.delijn.be/stops/502005", "https://data.delijn.be/stops/507746"], ["https://data.delijn.be/stops/400793", "https://data.delijn.be/stops/402769"], ["https://data.delijn.be/stops/508550", "https://data.delijn.be/stops/508564"], ["https://data.delijn.be/stops/103660", "https://data.delijn.be/stops/106335"], ["https://data.delijn.be/stops/402406", "https://data.delijn.be/stops/402412"], ["https://data.delijn.be/stops/408570", "https://data.delijn.be/stops/408817"], ["https://data.delijn.be/stops/104114", "https://data.delijn.be/stops/107876"], ["https://data.delijn.be/stops/101218", "https://data.delijn.be/stops/107946"], ["https://data.delijn.be/stops/105207", "https://data.delijn.be/stops/108873"], ["https://data.delijn.be/stops/203869", "https://data.delijn.be/stops/208835"], ["https://data.delijn.be/stops/305677", "https://data.delijn.be/stops/305690"], ["https://data.delijn.be/stops/105263", "https://data.delijn.be/stops/109966"], ["https://data.delijn.be/stops/209115", "https://data.delijn.be/stops/219007"], ["https://data.delijn.be/stops/505327", "https://data.delijn.be/stops/507210"], ["https://data.delijn.be/stops/204996", "https://data.delijn.be/stops/207021"], ["https://data.delijn.be/stops/405586", "https://data.delijn.be/stops/405595"], ["https://data.delijn.be/stops/205060", "https://data.delijn.be/stops/205061"], ["https://data.delijn.be/stops/201384", "https://data.delijn.be/stops/201527"], ["https://data.delijn.be/stops/209604", "https://data.delijn.be/stops/305334"], ["https://data.delijn.be/stops/403865", "https://data.delijn.be/stops/410164"], ["https://data.delijn.be/stops/109724", "https://data.delijn.be/stops/109769"], ["https://data.delijn.be/stops/200088", "https://data.delijn.be/stops/206870"], ["https://data.delijn.be/stops/204385", "https://data.delijn.be/stops/205385"], ["https://data.delijn.be/stops/505385", "https://data.delijn.be/stops/508104"], ["https://data.delijn.be/stops/408507", "https://data.delijn.be/stops/408795"], ["https://data.delijn.be/stops/305715", "https://data.delijn.be/stops/306305"], ["https://data.delijn.be/stops/305046", "https://data.delijn.be/stops/305047"], ["https://data.delijn.be/stops/108790", "https://data.delijn.be/stops/109549"], ["https://data.delijn.be/stops/204198", "https://data.delijn.be/stops/204405"], ["https://data.delijn.be/stops/300477", "https://data.delijn.be/stops/307087"], ["https://data.delijn.be/stops/405322", "https://data.delijn.be/stops/405324"], ["https://data.delijn.be/stops/104512", "https://data.delijn.be/stops/104513"], ["https://data.delijn.be/stops/503781", "https://data.delijn.be/stops/508787"], ["https://data.delijn.be/stops/408573", "https://data.delijn.be/stops/408788"], ["https://data.delijn.be/stops/400421", "https://data.delijn.be/stops/405133"], ["https://data.delijn.be/stops/503750", "https://data.delijn.be/stops/509789"], ["https://data.delijn.be/stops/204261", "https://data.delijn.be/stops/205232"], ["https://data.delijn.be/stops/207672", "https://data.delijn.be/stops/208099"], ["https://data.delijn.be/stops/502431", "https://data.delijn.be/stops/507415"], ["https://data.delijn.be/stops/308259", "https://data.delijn.be/stops/308290"], ["https://data.delijn.be/stops/509020", "https://data.delijn.be/stops/509220"], ["https://data.delijn.be/stops/504120", "https://data.delijn.be/stops/509120"], ["https://data.delijn.be/stops/403092", "https://data.delijn.be/stops/403118"], ["https://data.delijn.be/stops/200609", "https://data.delijn.be/stops/203793"], ["https://data.delijn.be/stops/506026", "https://data.delijn.be/stops/506448"], ["https://data.delijn.be/stops/503102", "https://data.delijn.be/stops/508090"], ["https://data.delijn.be/stops/408100", "https://data.delijn.be/stops/408421"], ["https://data.delijn.be/stops/410356", "https://data.delijn.be/stops/410357"], ["https://data.delijn.be/stops/200693", "https://data.delijn.be/stops/208646"], ["https://data.delijn.be/stops/305502", "https://data.delijn.be/stops/307989"], ["https://data.delijn.be/stops/406787", "https://data.delijn.be/stops/409299"], ["https://data.delijn.be/stops/402081", "https://data.delijn.be/stops/402443"], ["https://data.delijn.be/stops/200699", "https://data.delijn.be/stops/202789"], ["https://data.delijn.be/stops/509261", "https://data.delijn.be/stops/509262"], ["https://data.delijn.be/stops/109255", "https://data.delijn.be/stops/109277"], ["https://data.delijn.be/stops/501326", "https://data.delijn.be/stops/506321"], ["https://data.delijn.be/stops/203040", "https://data.delijn.be/stops/203687"], ["https://data.delijn.be/stops/303861", "https://data.delijn.be/stops/305923"], ["https://data.delijn.be/stops/207164", "https://data.delijn.be/stops/308893"], ["https://data.delijn.be/stops/206583", "https://data.delijn.be/stops/206927"], ["https://data.delijn.be/stops/408536", "https://data.delijn.be/stops/408537"], ["https://data.delijn.be/stops/301920", "https://data.delijn.be/stops/307813"], ["https://data.delijn.be/stops/407677", "https://data.delijn.be/stops/407678"], ["https://data.delijn.be/stops/302726", "https://data.delijn.be/stops/302776"], ["https://data.delijn.be/stops/303265", "https://data.delijn.be/stops/303266"], ["https://data.delijn.be/stops/305820", "https://data.delijn.be/stops/306588"], ["https://data.delijn.be/stops/301366", "https://data.delijn.be/stops/306684"], ["https://data.delijn.be/stops/403914", "https://data.delijn.be/stops/404033"], ["https://data.delijn.be/stops/405905", "https://data.delijn.be/stops/405928"], ["https://data.delijn.be/stops/400924", "https://data.delijn.be/stops/400941"], ["https://data.delijn.be/stops/102309", "https://data.delijn.be/stops/102944"], ["https://data.delijn.be/stops/101973", "https://data.delijn.be/stops/109703"], ["https://data.delijn.be/stops/206018", "https://data.delijn.be/stops/206077"], ["https://data.delijn.be/stops/303032", "https://data.delijn.be/stops/308674"], ["https://data.delijn.be/stops/505950", "https://data.delijn.be/stops/505954"], ["https://data.delijn.be/stops/207804", "https://data.delijn.be/stops/208784"], ["https://data.delijn.be/stops/504347", "https://data.delijn.be/stops/509592"], ["https://data.delijn.be/stops/401330", "https://data.delijn.be/stops/401381"], ["https://data.delijn.be/stops/307307", "https://data.delijn.be/stops/307309"], ["https://data.delijn.be/stops/206987", "https://data.delijn.be/stops/207987"], ["https://data.delijn.be/stops/101311", "https://data.delijn.be/stops/106046"], ["https://data.delijn.be/stops/106135", "https://data.delijn.be/stops/106136"], ["https://data.delijn.be/stops/206773", "https://data.delijn.be/stops/206774"], ["https://data.delijn.be/stops/407704", "https://data.delijn.be/stops/407709"], ["https://data.delijn.be/stops/208771", "https://data.delijn.be/stops/209772"], ["https://data.delijn.be/stops/304475", "https://data.delijn.be/stops/304507"], ["https://data.delijn.be/stops/304787", "https://data.delijn.be/stops/306687"], ["https://data.delijn.be/stops/202815", "https://data.delijn.be/stops/202884"], ["https://data.delijn.be/stops/207111", "https://data.delijn.be/stops/207412"], ["https://data.delijn.be/stops/101084", "https://data.delijn.be/stops/101086"], ["https://data.delijn.be/stops/201882", "https://data.delijn.be/stops/202408"], ["https://data.delijn.be/stops/401788", "https://data.delijn.be/stops/406046"], ["https://data.delijn.be/stops/109307", "https://data.delijn.be/stops/109654"], ["https://data.delijn.be/stops/501191", "https://data.delijn.be/stops/506191"], ["https://data.delijn.be/stops/107831", "https://data.delijn.be/stops/204142"], ["https://data.delijn.be/stops/504427", "https://data.delijn.be/stops/509411"], ["https://data.delijn.be/stops/200093", "https://data.delijn.be/stops/211059"], ["https://data.delijn.be/stops/208049", "https://data.delijn.be/stops/209049"], ["https://data.delijn.be/stops/407445", "https://data.delijn.be/stops/407499"], ["https://data.delijn.be/stops/401080", "https://data.delijn.be/stops/409058"], ["https://data.delijn.be/stops/104162", "https://data.delijn.be/stops/104365"], ["https://data.delijn.be/stops/305529", "https://data.delijn.be/stops/305530"], ["https://data.delijn.be/stops/208703", "https://data.delijn.be/stops/209703"], ["https://data.delijn.be/stops/400223", "https://data.delijn.be/stops/401865"], ["https://data.delijn.be/stops/200765", "https://data.delijn.be/stops/209317"], ["https://data.delijn.be/stops/207444", "https://data.delijn.be/stops/207518"], ["https://data.delijn.be/stops/302757", "https://data.delijn.be/stops/308911"], ["https://data.delijn.be/stops/204437", "https://data.delijn.be/stops/204751"], ["https://data.delijn.be/stops/106954", "https://data.delijn.be/stops/107269"], ["https://data.delijn.be/stops/503321", "https://data.delijn.be/stops/503324"], ["https://data.delijn.be/stops/401128", "https://data.delijn.be/stops/401135"], ["https://data.delijn.be/stops/401970", "https://data.delijn.be/stops/408156"], ["https://data.delijn.be/stops/106490", "https://data.delijn.be/stops/109712"], ["https://data.delijn.be/stops/204208", "https://data.delijn.be/stops/204778"], ["https://data.delijn.be/stops/204179", "https://data.delijn.be/stops/204585"], ["https://data.delijn.be/stops/206078", "https://data.delijn.be/stops/207107"], ["https://data.delijn.be/stops/408026", "https://data.delijn.be/stops/408029"], ["https://data.delijn.be/stops/501114", "https://data.delijn.be/stops/506665"], ["https://data.delijn.be/stops/303346", "https://data.delijn.be/stops/306334"], ["https://data.delijn.be/stops/502118", "https://data.delijn.be/stops/507105"], ["https://data.delijn.be/stops/202178", "https://data.delijn.be/stops/209867"], ["https://data.delijn.be/stops/209078", "https://data.delijn.be/stops/218030"], ["https://data.delijn.be/stops/201852", "https://data.delijn.be/stops/210852"], ["https://data.delijn.be/stops/406436", "https://data.delijn.be/stops/406447"], ["https://data.delijn.be/stops/108328", "https://data.delijn.be/stops/109333"], ["https://data.delijn.be/stops/302148", "https://data.delijn.be/stops/302150"], ["https://data.delijn.be/stops/503720", "https://data.delijn.be/stops/508697"], ["https://data.delijn.be/stops/107559", "https://data.delijn.be/stops/107561"], ["https://data.delijn.be/stops/302874", "https://data.delijn.be/stops/302919"], ["https://data.delijn.be/stops/507551", "https://data.delijn.be/stops/507553"], ["https://data.delijn.be/stops/301537", "https://data.delijn.be/stops/301549"], ["https://data.delijn.be/stops/101537", "https://data.delijn.be/stops/109019"], ["https://data.delijn.be/stops/103098", "https://data.delijn.be/stops/103271"], ["https://data.delijn.be/stops/404197", "https://data.delijn.be/stops/404198"], ["https://data.delijn.be/stops/205514", "https://data.delijn.be/stops/205515"], ["https://data.delijn.be/stops/400362", "https://data.delijn.be/stops/400404"], ["https://data.delijn.be/stops/502269", "https://data.delijn.be/stops/502674"], ["https://data.delijn.be/stops/209629", "https://data.delijn.be/stops/209630"], ["https://data.delijn.be/stops/410172", "https://data.delijn.be/stops/410173"], ["https://data.delijn.be/stops/208049", "https://data.delijn.be/stops/208050"], ["https://data.delijn.be/stops/404163", "https://data.delijn.be/stops/404281"], ["https://data.delijn.be/stops/505905", "https://data.delijn.be/stops/508676"], ["https://data.delijn.be/stops/202182", "https://data.delijn.be/stops/203182"], ["https://data.delijn.be/stops/303800", "https://data.delijn.be/stops/303802"], ["https://data.delijn.be/stops/307537", "https://data.delijn.be/stops/307540"], ["https://data.delijn.be/stops/102645", "https://data.delijn.be/stops/102820"], ["https://data.delijn.be/stops/503481", "https://data.delijn.be/stops/505713"], ["https://data.delijn.be/stops/501421", "https://data.delijn.be/stops/506420"], ["https://data.delijn.be/stops/302119", "https://data.delijn.be/stops/304023"], ["https://data.delijn.be/stops/204980", "https://data.delijn.be/stops/206388"], ["https://data.delijn.be/stops/504010", "https://data.delijn.be/stops/505205"], ["https://data.delijn.be/stops/408197", "https://data.delijn.be/stops/409339"], ["https://data.delijn.be/stops/404708", "https://data.delijn.be/stops/404709"], ["https://data.delijn.be/stops/503543", "https://data.delijn.be/stops/508543"], ["https://data.delijn.be/stops/500941", "https://data.delijn.be/stops/504942"], ["https://data.delijn.be/stops/508161", "https://data.delijn.be/stops/508163"], ["https://data.delijn.be/stops/302965", "https://data.delijn.be/stops/302966"], ["https://data.delijn.be/stops/206548", "https://data.delijn.be/stops/207548"], ["https://data.delijn.be/stops/300567", "https://data.delijn.be/stops/307855"], ["https://data.delijn.be/stops/400454", "https://data.delijn.be/stops/400457"], ["https://data.delijn.be/stops/407018", "https://data.delijn.be/stops/407085"], ["https://data.delijn.be/stops/302849", "https://data.delijn.be/stops/302855"], ["https://data.delijn.be/stops/200108", "https://data.delijn.be/stops/202007"], ["https://data.delijn.be/stops/503805", "https://data.delijn.be/stops/509153"], ["https://data.delijn.be/stops/209584", "https://data.delijn.be/stops/209677"], ["https://data.delijn.be/stops/304425", "https://data.delijn.be/stops/307398"], ["https://data.delijn.be/stops/300689", "https://data.delijn.be/stops/300697"], ["https://data.delijn.be/stops/303954", "https://data.delijn.be/stops/303973"], ["https://data.delijn.be/stops/400576", "https://data.delijn.be/stops/404139"], ["https://data.delijn.be/stops/400378", "https://data.delijn.be/stops/405297"], ["https://data.delijn.be/stops/201976", "https://data.delijn.be/stops/206481"], ["https://data.delijn.be/stops/206591", "https://data.delijn.be/stops/207574"], ["https://data.delijn.be/stops/307818", "https://data.delijn.be/stops/308753"], ["https://data.delijn.be/stops/503221", "https://data.delijn.be/stops/503596"], ["https://data.delijn.be/stops/106244", "https://data.delijn.be/stops/107234"], ["https://data.delijn.be/stops/207675", "https://data.delijn.be/stops/208140"], ["https://data.delijn.be/stops/407845", "https://data.delijn.be/stops/408177"], ["https://data.delijn.be/stops/206945", "https://data.delijn.be/stops/209549"], ["https://data.delijn.be/stops/304539", "https://data.delijn.be/stops/304540"], ["https://data.delijn.be/stops/403703", "https://data.delijn.be/stops/403745"], ["https://data.delijn.be/stops/308741", "https://data.delijn.be/stops/308747"], ["https://data.delijn.be/stops/504533", "https://data.delijn.be/stops/509533"], ["https://data.delijn.be/stops/202445", "https://data.delijn.be/stops/203445"], ["https://data.delijn.be/stops/204179", "https://data.delijn.be/stops/206394"], ["https://data.delijn.be/stops/504236", "https://data.delijn.be/stops/509241"], ["https://data.delijn.be/stops/105006", "https://data.delijn.be/stops/105076"], ["https://data.delijn.be/stops/200712", "https://data.delijn.be/stops/201704"], ["https://data.delijn.be/stops/405040", "https://data.delijn.be/stops/405863"], ["https://data.delijn.be/stops/303697", "https://data.delijn.be/stops/303698"], ["https://data.delijn.be/stops/508012", "https://data.delijn.be/stops/508018"], ["https://data.delijn.be/stops/305082", "https://data.delijn.be/stops/306954"], ["https://data.delijn.be/stops/402122", "https://data.delijn.be/stops/405490"], ["https://data.delijn.be/stops/303551", "https://data.delijn.be/stops/308685"], ["https://data.delijn.be/stops/106798", "https://data.delijn.be/stops/106866"], ["https://data.delijn.be/stops/404310", "https://data.delijn.be/stops/404649"], ["https://data.delijn.be/stops/105099", "https://data.delijn.be/stops/105102"], ["https://data.delijn.be/stops/400496", "https://data.delijn.be/stops/400497"], ["https://data.delijn.be/stops/407837", "https://data.delijn.be/stops/408168"], ["https://data.delijn.be/stops/201754", "https://data.delijn.be/stops/208221"], ["https://data.delijn.be/stops/303471", "https://data.delijn.be/stops/303472"], ["https://data.delijn.be/stops/404139", "https://data.delijn.be/stops/404140"], ["https://data.delijn.be/stops/306677", "https://data.delijn.be/stops/306678"], ["https://data.delijn.be/stops/301359", "https://data.delijn.be/stops/306125"], ["https://data.delijn.be/stops/502588", "https://data.delijn.be/stops/507589"], ["https://data.delijn.be/stops/502039", "https://data.delijn.be/stops/507001"], ["https://data.delijn.be/stops/203882", "https://data.delijn.be/stops/207938"], ["https://data.delijn.be/stops/505788", "https://data.delijn.be/stops/506001"], ["https://data.delijn.be/stops/503762", "https://data.delijn.be/stops/508753"], ["https://data.delijn.be/stops/300076", "https://data.delijn.be/stops/308450"], ["https://data.delijn.be/stops/403968", "https://data.delijn.be/stops/403974"], ["https://data.delijn.be/stops/201237", "https://data.delijn.be/stops/211130"], ["https://data.delijn.be/stops/408519", "https://data.delijn.be/stops/408765"], ["https://data.delijn.be/stops/108654", "https://data.delijn.be/stops/306597"], ["https://data.delijn.be/stops/409036", "https://data.delijn.be/stops/409246"], ["https://data.delijn.be/stops/208659", "https://data.delijn.be/stops/209484"], ["https://data.delijn.be/stops/407497", "https://data.delijn.be/stops/409457"], ["https://data.delijn.be/stops/401093", "https://data.delijn.be/stops/401123"], ["https://data.delijn.be/stops/502004", "https://data.delijn.be/stops/505625"], ["https://data.delijn.be/stops/301986", "https://data.delijn.be/stops/307194"], ["https://data.delijn.be/stops/106982", "https://data.delijn.be/stops/106984"], ["https://data.delijn.be/stops/406272", "https://data.delijn.be/stops/407582"], ["https://data.delijn.be/stops/406069", "https://data.delijn.be/stops/406138"], ["https://data.delijn.be/stops/200257", "https://data.delijn.be/stops/203552"], ["https://data.delijn.be/stops/505925", "https://data.delijn.be/stops/505992"], ["https://data.delijn.be/stops/407690", "https://data.delijn.be/stops/409878"], ["https://data.delijn.be/stops/301002", "https://data.delijn.be/stops/301074"], ["https://data.delijn.be/stops/501634", "https://data.delijn.be/stops/501642"], ["https://data.delijn.be/stops/105034", "https://data.delijn.be/stops/105038"], ["https://data.delijn.be/stops/300123", "https://data.delijn.be/stops/300125"], ["https://data.delijn.be/stops/107900", "https://data.delijn.be/stops/108035"], ["https://data.delijn.be/stops/501357", "https://data.delijn.be/stops/506335"], ["https://data.delijn.be/stops/305840", "https://data.delijn.be/stops/305841"], ["https://data.delijn.be/stops/502214", "https://data.delijn.be/stops/507214"], ["https://data.delijn.be/stops/101580", "https://data.delijn.be/stops/109709"], ["https://data.delijn.be/stops/504063", "https://data.delijn.be/stops/505109"], ["https://data.delijn.be/stops/202219", "https://data.delijn.be/stops/205077"], ["https://data.delijn.be/stops/301938", "https://data.delijn.be/stops/306825"], ["https://data.delijn.be/stops/200507", "https://data.delijn.be/stops/211133"], ["https://data.delijn.be/stops/204152", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/107341", "https://data.delijn.be/stops/108163"], ["https://data.delijn.be/stops/200924", "https://data.delijn.be/stops/211066"], ["https://data.delijn.be/stops/301519", "https://data.delijn.be/stops/301525"], ["https://data.delijn.be/stops/408294", "https://data.delijn.be/stops/408295"], ["https://data.delijn.be/stops/204822", "https://data.delijn.be/stops/205539"], ["https://data.delijn.be/stops/407626", "https://data.delijn.be/stops/410193"], ["https://data.delijn.be/stops/201714", "https://data.delijn.be/stops/202380"], ["https://data.delijn.be/stops/503858", "https://data.delijn.be/stops/507945"], ["https://data.delijn.be/stops/305162", "https://data.delijn.be/stops/305190"], ["https://data.delijn.be/stops/406110", "https://data.delijn.be/stops/406111"], ["https://data.delijn.be/stops/505662", "https://data.delijn.be/stops/507505"], ["https://data.delijn.be/stops/209220", "https://data.delijn.be/stops/209223"], ["https://data.delijn.be/stops/201356", "https://data.delijn.be/stops/201501"], ["https://data.delijn.be/stops/402836", "https://data.delijn.be/stops/402854"], ["https://data.delijn.be/stops/304339", "https://data.delijn.be/stops/304707"], ["https://data.delijn.be/stops/302921", "https://data.delijn.be/stops/306317"], ["https://data.delijn.be/stops/101948", "https://data.delijn.be/stops/109871"], ["https://data.delijn.be/stops/508693", "https://data.delijn.be/stops/509962"], ["https://data.delijn.be/stops/402654", "https://data.delijn.be/stops/402655"], ["https://data.delijn.be/stops/200604", "https://data.delijn.be/stops/202860"], ["https://data.delijn.be/stops/505817", "https://data.delijn.be/stops/509481"], ["https://data.delijn.be/stops/200518", "https://data.delijn.be/stops/200533"], ["https://data.delijn.be/stops/401413", "https://data.delijn.be/stops/401415"], ["https://data.delijn.be/stops/300560", "https://data.delijn.be/stops/300561"], ["https://data.delijn.be/stops/502015", "https://data.delijn.be/stops/507912"], ["https://data.delijn.be/stops/206512", "https://data.delijn.be/stops/206716"], ["https://data.delijn.be/stops/408963", "https://data.delijn.be/stops/408965"], ["https://data.delijn.be/stops/204115", "https://data.delijn.be/stops/204117"], ["https://data.delijn.be/stops/501488", "https://data.delijn.be/stops/506026"], ["https://data.delijn.be/stops/301450", "https://data.delijn.be/stops/308077"], ["https://data.delijn.be/stops/107565", "https://data.delijn.be/stops/108155"], ["https://data.delijn.be/stops/503613", "https://data.delijn.be/stops/503617"], ["https://data.delijn.be/stops/400094", "https://data.delijn.be/stops/409067"], ["https://data.delijn.be/stops/503871", "https://data.delijn.be/stops/508868"], ["https://data.delijn.be/stops/504388", "https://data.delijn.be/stops/509388"], ["https://data.delijn.be/stops/405228", "https://data.delijn.be/stops/405233"], ["https://data.delijn.be/stops/505204", "https://data.delijn.be/stops/505830"], ["https://data.delijn.be/stops/201768", "https://data.delijn.be/stops/219006"], ["https://data.delijn.be/stops/200079", "https://data.delijn.be/stops/201346"], ["https://data.delijn.be/stops/102231", "https://data.delijn.be/stops/105522"], ["https://data.delijn.be/stops/503099", "https://data.delijn.be/stops/503219"], ["https://data.delijn.be/stops/503526", "https://data.delijn.be/stops/504687"], ["https://data.delijn.be/stops/302438", "https://data.delijn.be/stops/302439"], ["https://data.delijn.be/stops/302997", "https://data.delijn.be/stops/302998"], ["https://data.delijn.be/stops/107689", "https://data.delijn.be/stops/107691"], ["https://data.delijn.be/stops/305310", "https://data.delijn.be/stops/305311"], ["https://data.delijn.be/stops/204651", "https://data.delijn.be/stops/205286"], ["https://data.delijn.be/stops/301869", "https://data.delijn.be/stops/301876"], ["https://data.delijn.be/stops/203474", "https://data.delijn.be/stops/203475"], ["https://data.delijn.be/stops/503645", "https://data.delijn.be/stops/508735"], ["https://data.delijn.be/stops/502707", "https://data.delijn.be/stops/507606"], ["https://data.delijn.be/stops/402834", "https://data.delijn.be/stops/406993"], ["https://data.delijn.be/stops/105971", "https://data.delijn.be/stops/205637"], ["https://data.delijn.be/stops/107159", "https://data.delijn.be/stops/107161"], ["https://data.delijn.be/stops/202433", "https://data.delijn.be/stops/202434"], ["https://data.delijn.be/stops/302977", "https://data.delijn.be/stops/308660"], ["https://data.delijn.be/stops/402477", "https://data.delijn.be/stops/407369"], ["https://data.delijn.be/stops/300127", "https://data.delijn.be/stops/300144"], ["https://data.delijn.be/stops/505617", "https://data.delijn.be/stops/505623"], ["https://data.delijn.be/stops/307205", "https://data.delijn.be/stops/307206"], ["https://data.delijn.be/stops/502225", "https://data.delijn.be/stops/507225"], ["https://data.delijn.be/stops/206390", "https://data.delijn.be/stops/207306"], ["https://data.delijn.be/stops/306660", "https://data.delijn.be/stops/307457"], ["https://data.delijn.be/stops/105012", "https://data.delijn.be/stops/105082"], ["https://data.delijn.be/stops/405882", "https://data.delijn.be/stops/405889"], ["https://data.delijn.be/stops/503531", "https://data.delijn.be/stops/503869"], ["https://data.delijn.be/stops/102634", "https://data.delijn.be/stops/107854"], ["https://data.delijn.be/stops/104954", "https://data.delijn.be/stops/109721"], ["https://data.delijn.be/stops/200705", "https://data.delijn.be/stops/203573"], ["https://data.delijn.be/stops/404514", "https://data.delijn.be/stops/406743"], ["https://data.delijn.be/stops/506200", "https://data.delijn.be/stops/506254"], ["https://data.delijn.be/stops/203980", "https://data.delijn.be/stops/203982"], ["https://data.delijn.be/stops/308144", "https://data.delijn.be/stops/308145"], ["https://data.delijn.be/stops/203254", "https://data.delijn.be/stops/203255"], ["https://data.delijn.be/stops/302897", "https://data.delijn.be/stops/303236"], ["https://data.delijn.be/stops/101412", "https://data.delijn.be/stops/101413"], ["https://data.delijn.be/stops/104960", "https://data.delijn.be/stops/104996"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/202154"], ["https://data.delijn.be/stops/206621", "https://data.delijn.be/stops/206757"], ["https://data.delijn.be/stops/107793", "https://data.delijn.be/stops/107796"], ["https://data.delijn.be/stops/300829", "https://data.delijn.be/stops/301811"], ["https://data.delijn.be/stops/206443", "https://data.delijn.be/stops/206444"], ["https://data.delijn.be/stops/300354", "https://data.delijn.be/stops/304054"], ["https://data.delijn.be/stops/405147", "https://data.delijn.be/stops/405285"], ["https://data.delijn.be/stops/101640", "https://data.delijn.be/stops/102839"], ["https://data.delijn.be/stops/203118", "https://data.delijn.be/stops/203223"], ["https://data.delijn.be/stops/106370", "https://data.delijn.be/stops/106372"], ["https://data.delijn.be/stops/106908", "https://data.delijn.be/stops/106909"], ["https://data.delijn.be/stops/301047", "https://data.delijn.be/stops/301050"], ["https://data.delijn.be/stops/201513", "https://data.delijn.be/stops/201551"], ["https://data.delijn.be/stops/106277", "https://data.delijn.be/stops/106278"], ["https://data.delijn.be/stops/206971", "https://data.delijn.be/stops/206972"], ["https://data.delijn.be/stops/109549", "https://data.delijn.be/stops/109758"], ["https://data.delijn.be/stops/308020", "https://data.delijn.be/stops/308021"], ["https://data.delijn.be/stops/300685", "https://data.delijn.be/stops/305068"], ["https://data.delijn.be/stops/201861", "https://data.delijn.be/stops/202669"], ["https://data.delijn.be/stops/409552", "https://data.delijn.be/stops/409555"], ["https://data.delijn.be/stops/405635", "https://data.delijn.be/stops/405636"], ["https://data.delijn.be/stops/300244", "https://data.delijn.be/stops/305420"], ["https://data.delijn.be/stops/102651", "https://data.delijn.be/stops/102652"], ["https://data.delijn.be/stops/105048", "https://data.delijn.be/stops/106708"], ["https://data.delijn.be/stops/409086", "https://data.delijn.be/stops/409139"], ["https://data.delijn.be/stops/302353", "https://data.delijn.be/stops/302369"], ["https://data.delijn.be/stops/308731", "https://data.delijn.be/stops/308732"], ["https://data.delijn.be/stops/106247", "https://data.delijn.be/stops/106250"], ["https://data.delijn.be/stops/406451", "https://data.delijn.be/stops/406488"], ["https://data.delijn.be/stops/500559", "https://data.delijn.be/stops/500561"], ["https://data.delijn.be/stops/205482", "https://data.delijn.be/stops/205522"], ["https://data.delijn.be/stops/400733", "https://data.delijn.be/stops/400742"], ["https://data.delijn.be/stops/102206", "https://data.delijn.be/stops/105814"], ["https://data.delijn.be/stops/106658", "https://data.delijn.be/stops/106659"], ["https://data.delijn.be/stops/202924", "https://data.delijn.be/stops/202925"], ["https://data.delijn.be/stops/307648", "https://data.delijn.be/stops/307649"], ["https://data.delijn.be/stops/303531", "https://data.delijn.be/stops/303556"], ["https://data.delijn.be/stops/303892", "https://data.delijn.be/stops/305547"], ["https://data.delijn.be/stops/204636", "https://data.delijn.be/stops/205637"], ["https://data.delijn.be/stops/204113", "https://data.delijn.be/stops/205681"], ["https://data.delijn.be/stops/504244", "https://data.delijn.be/stops/509596"], ["https://data.delijn.be/stops/408523", "https://data.delijn.be/stops/408580"], ["https://data.delijn.be/stops/400582", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/302682", "https://data.delijn.be/stops/302750"], ["https://data.delijn.be/stops/402377", "https://data.delijn.be/stops/402427"], ["https://data.delijn.be/stops/202776", "https://data.delijn.be/stops/203935"], ["https://data.delijn.be/stops/307625", "https://data.delijn.be/stops/308251"], ["https://data.delijn.be/stops/302745", "https://data.delijn.be/stops/302751"], ["https://data.delijn.be/stops/504654", "https://data.delijn.be/stops/509654"], ["https://data.delijn.be/stops/503797", "https://data.delijn.be/stops/508864"], ["https://data.delijn.be/stops/503046", "https://data.delijn.be/stops/508763"], ["https://data.delijn.be/stops/507206", "https://data.delijn.be/stops/507211"], ["https://data.delijn.be/stops/503531", "https://data.delijn.be/stops/504765"], ["https://data.delijn.be/stops/501104", "https://data.delijn.be/stops/501112"], ["https://data.delijn.be/stops/400900", "https://data.delijn.be/stops/408473"], ["https://data.delijn.be/stops/307393", "https://data.delijn.be/stops/308640"], ["https://data.delijn.be/stops/408315", "https://data.delijn.be/stops/408343"], ["https://data.delijn.be/stops/102880", "https://data.delijn.be/stops/104889"], ["https://data.delijn.be/stops/101278", "https://data.delijn.be/stops/105391"], ["https://data.delijn.be/stops/104652", "https://data.delijn.be/stops/306620"], ["https://data.delijn.be/stops/208170", "https://data.delijn.be/stops/208171"], ["https://data.delijn.be/stops/505185", "https://data.delijn.be/stops/509558"], ["https://data.delijn.be/stops/404681", "https://data.delijn.be/stops/408700"], ["https://data.delijn.be/stops/400999", "https://data.delijn.be/stops/406577"], ["https://data.delijn.be/stops/204744", "https://data.delijn.be/stops/205744"], ["https://data.delijn.be/stops/103006", "https://data.delijn.be/stops/106556"], ["https://data.delijn.be/stops/402854", "https://data.delijn.be/stops/408981"], ["https://data.delijn.be/stops/107602", "https://data.delijn.be/stops/107605"], ["https://data.delijn.be/stops/207755", "https://data.delijn.be/stops/208374"], ["https://data.delijn.be/stops/200129", "https://data.delijn.be/stops/201129"], ["https://data.delijn.be/stops/505117", "https://data.delijn.be/stops/508884"], ["https://data.delijn.be/stops/300180", "https://data.delijn.be/stops/300211"], ["https://data.delijn.be/stops/509398", "https://data.delijn.be/stops/509550"], ["https://data.delijn.be/stops/206346", "https://data.delijn.be/stops/207372"], ["https://data.delijn.be/stops/303404", "https://data.delijn.be/stops/303405"], ["https://data.delijn.be/stops/200391", "https://data.delijn.be/stops/203719"], ["https://data.delijn.be/stops/107786", "https://data.delijn.be/stops/207334"], ["https://data.delijn.be/stops/106685", "https://data.delijn.be/stops/106686"], ["https://data.delijn.be/stops/303696", "https://data.delijn.be/stops/303780"], ["https://data.delijn.be/stops/403253", "https://data.delijn.be/stops/403285"], ["https://data.delijn.be/stops/505706", "https://data.delijn.be/stops/509224"], ["https://data.delijn.be/stops/202674", "https://data.delijn.be/stops/203675"], ["https://data.delijn.be/stops/105743", "https://data.delijn.be/stops/109833"], ["https://data.delijn.be/stops/207970", "https://data.delijn.be/stops/207990"], ["https://data.delijn.be/stops/303368", "https://data.delijn.be/stops/303373"], ["https://data.delijn.be/stops/506113", "https://data.delijn.be/stops/506638"], ["https://data.delijn.be/stops/101430", "https://data.delijn.be/stops/101810"], ["https://data.delijn.be/stops/105620", "https://data.delijn.be/stops/105830"], ["https://data.delijn.be/stops/508195", "https://data.delijn.be/stops/508198"], ["https://data.delijn.be/stops/101590", "https://data.delijn.be/stops/105885"], ["https://data.delijn.be/stops/200914", "https://data.delijn.be/stops/200934"], ["https://data.delijn.be/stops/400576", "https://data.delijn.be/stops/400635"], ["https://data.delijn.be/stops/301261", "https://data.delijn.be/stops/307389"], ["https://data.delijn.be/stops/303747", "https://data.delijn.be/stops/303750"], ["https://data.delijn.be/stops/405806", "https://data.delijn.be/stops/409420"], ["https://data.delijn.be/stops/204167", "https://data.delijn.be/stops/205168"], ["https://data.delijn.be/stops/200457", "https://data.delijn.be/stops/200557"], ["https://data.delijn.be/stops/402132", "https://data.delijn.be/stops/410100"], ["https://data.delijn.be/stops/504435", "https://data.delijn.be/stops/504835"], ["https://data.delijn.be/stops/201762", "https://data.delijn.be/stops/209272"], ["https://data.delijn.be/stops/207416", "https://data.delijn.be/stops/217016"], ["https://data.delijn.be/stops/300638", "https://data.delijn.be/stops/305816"], ["https://data.delijn.be/stops/403195", "https://data.delijn.be/stops/403251"], ["https://data.delijn.be/stops/505231", "https://data.delijn.be/stops/506105"], ["https://data.delijn.be/stops/203990", "https://data.delijn.be/stops/210851"], ["https://data.delijn.be/stops/302614", "https://data.delijn.be/stops/302637"], ["https://data.delijn.be/stops/303783", "https://data.delijn.be/stops/303801"], ["https://data.delijn.be/stops/400362", "https://data.delijn.be/stops/406866"], ["https://data.delijn.be/stops/401025", "https://data.delijn.be/stops/401140"], ["https://data.delijn.be/stops/503060", "https://data.delijn.be/stops/503163"], ["https://data.delijn.be/stops/505013", "https://data.delijn.be/stops/507271"], ["https://data.delijn.be/stops/401185", "https://data.delijn.be/stops/401187"], ["https://data.delijn.be/stops/301273", "https://data.delijn.be/stops/301274"], ["https://data.delijn.be/stops/307394", "https://data.delijn.be/stops/307395"], ["https://data.delijn.be/stops/106426", "https://data.delijn.be/stops/106427"], ["https://data.delijn.be/stops/401413", "https://data.delijn.be/stops/301122"], ["https://data.delijn.be/stops/401786", "https://data.delijn.be/stops/406143"], ["https://data.delijn.be/stops/303535", "https://data.delijn.be/stops/308792"], ["https://data.delijn.be/stops/101230", "https://data.delijn.be/stops/102505"], ["https://data.delijn.be/stops/402157", "https://data.delijn.be/stops/402252"], ["https://data.delijn.be/stops/302294", "https://data.delijn.be/stops/304989"], ["https://data.delijn.be/stops/205229", "https://data.delijn.be/stops/205230"], ["https://data.delijn.be/stops/406500", "https://data.delijn.be/stops/406501"], ["https://data.delijn.be/stops/101641", "https://data.delijn.be/stops/109186"], ["https://data.delijn.be/stops/200402", "https://data.delijn.be/stops/201689"], ["https://data.delijn.be/stops/300005", "https://data.delijn.be/stops/307467"], ["https://data.delijn.be/stops/508372", "https://data.delijn.be/stops/508403"], ["https://data.delijn.be/stops/505823", "https://data.delijn.be/stops/507018"], ["https://data.delijn.be/stops/202624", "https://data.delijn.be/stops/202625"], ["https://data.delijn.be/stops/501075", "https://data.delijn.be/stops/506071"], ["https://data.delijn.be/stops/301698", "https://data.delijn.be/stops/304571"], ["https://data.delijn.be/stops/403502", "https://data.delijn.be/stops/409571"], ["https://data.delijn.be/stops/302913", "https://data.delijn.be/stops/303227"], ["https://data.delijn.be/stops/408066", "https://data.delijn.be/stops/408067"], ["https://data.delijn.be/stops/106641", "https://data.delijn.be/stops/106678"], ["https://data.delijn.be/stops/102241", "https://data.delijn.be/stops/102242"], ["https://data.delijn.be/stops/206419", "https://data.delijn.be/stops/207805"], ["https://data.delijn.be/stops/206579", "https://data.delijn.be/stops/207467"], ["https://data.delijn.be/stops/206960", "https://data.delijn.be/stops/306730"], ["https://data.delijn.be/stops/401066", "https://data.delijn.be/stops/410202"], ["https://data.delijn.be/stops/108272", "https://data.delijn.be/stops/108277"], ["https://data.delijn.be/stops/501409", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/503868", "https://data.delijn.be/stops/508868"], ["https://data.delijn.be/stops/101616", "https://data.delijn.be/stops/102934"], ["https://data.delijn.be/stops/501286", "https://data.delijn.be/stops/506204"], ["https://data.delijn.be/stops/501023", "https://data.delijn.be/stops/501036"], ["https://data.delijn.be/stops/502107", "https://data.delijn.be/stops/502167"], ["https://data.delijn.be/stops/204756", "https://data.delijn.be/stops/205522"], ["https://data.delijn.be/stops/400528", "https://data.delijn.be/stops/400630"], ["https://data.delijn.be/stops/204551", "https://data.delijn.be/stops/205290"], ["https://data.delijn.be/stops/302917", "https://data.delijn.be/stops/307008"], ["https://data.delijn.be/stops/408137", "https://data.delijn.be/stops/408166"], ["https://data.delijn.be/stops/406055", "https://data.delijn.be/stops/406143"], ["https://data.delijn.be/stops/400520", "https://data.delijn.be/stops/403826"], ["https://data.delijn.be/stops/101494", "https://data.delijn.be/stops/109375"], ["https://data.delijn.be/stops/101782", "https://data.delijn.be/stops/108010"], ["https://data.delijn.be/stops/508787", "https://data.delijn.be/stops/508885"], ["https://data.delijn.be/stops/208667", "https://data.delijn.be/stops/208668"], ["https://data.delijn.be/stops/104392", "https://data.delijn.be/stops/104393"], ["https://data.delijn.be/stops/301452", "https://data.delijn.be/stops/308713"], ["https://data.delijn.be/stops/200955", "https://data.delijn.be/stops/203508"], ["https://data.delijn.be/stops/102691", "https://data.delijn.be/stops/103120"], ["https://data.delijn.be/stops/204289", "https://data.delijn.be/stops/204290"], ["https://data.delijn.be/stops/300752", "https://data.delijn.be/stops/304569"], ["https://data.delijn.be/stops/404850", "https://data.delijn.be/stops/404854"], ["https://data.delijn.be/stops/504255", "https://data.delijn.be/stops/504326"], ["https://data.delijn.be/stops/201711", "https://data.delijn.be/stops/201712"], ["https://data.delijn.be/stops/506388", "https://data.delijn.be/stops/506390"], ["https://data.delijn.be/stops/408741", "https://data.delijn.be/stops/408743"], ["https://data.delijn.be/stops/407231", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/304347", "https://data.delijn.be/stops/304349"], ["https://data.delijn.be/stops/400064", "https://data.delijn.be/stops/409203"], ["https://data.delijn.be/stops/507249", "https://data.delijn.be/stops/507255"], ["https://data.delijn.be/stops/109082", "https://data.delijn.be/stops/109084"], ["https://data.delijn.be/stops/304392", "https://data.delijn.be/stops/304995"], ["https://data.delijn.be/stops/506261", "https://data.delijn.be/stops/509659"], ["https://data.delijn.be/stops/102527", "https://data.delijn.be/stops/405710"], ["https://data.delijn.be/stops/500019", "https://data.delijn.be/stops/507058"], ["https://data.delijn.be/stops/206844", "https://data.delijn.be/stops/207843"], ["https://data.delijn.be/stops/308504", "https://data.delijn.be/stops/308540"], ["https://data.delijn.be/stops/103610", "https://data.delijn.be/stops/107290"], ["https://data.delijn.be/stops/106642", "https://data.delijn.be/stops/106650"], ["https://data.delijn.be/stops/305571", "https://data.delijn.be/stops/305573"], ["https://data.delijn.be/stops/303411", "https://data.delijn.be/stops/303427"], ["https://data.delijn.be/stops/405453", "https://data.delijn.be/stops/405460"], ["https://data.delijn.be/stops/202648", "https://data.delijn.be/stops/211045"], ["https://data.delijn.be/stops/503354", "https://data.delijn.be/stops/508374"], ["https://data.delijn.be/stops/101442", "https://data.delijn.be/stops/107055"], ["https://data.delijn.be/stops/301813", "https://data.delijn.be/stops/305531"], ["https://data.delijn.be/stops/407023", "https://data.delijn.be/stops/407034"], ["https://data.delijn.be/stops/405630", "https://data.delijn.be/stops/407774"], ["https://data.delijn.be/stops/204291", "https://data.delijn.be/stops/205291"], ["https://data.delijn.be/stops/210125", "https://data.delijn.be/stops/211127"], ["https://data.delijn.be/stops/406270", "https://data.delijn.be/stops/406278"], ["https://data.delijn.be/stops/409500", "https://data.delijn.be/stops/409506"], ["https://data.delijn.be/stops/408859", "https://data.delijn.be/stops/408864"], ["https://data.delijn.be/stops/504499", "https://data.delijn.be/stops/509501"], ["https://data.delijn.be/stops/103234", "https://data.delijn.be/stops/103236"], ["https://data.delijn.be/stops/301297", "https://data.delijn.be/stops/307324"], ["https://data.delijn.be/stops/203037", "https://data.delijn.be/stops/203982"], ["https://data.delijn.be/stops/403925", "https://data.delijn.be/stops/408356"], ["https://data.delijn.be/stops/108825", "https://data.delijn.be/stops/108892"], ["https://data.delijn.be/stops/101536", "https://data.delijn.be/stops/109017"], ["https://data.delijn.be/stops/101747", "https://data.delijn.be/stops/101748"], ["https://data.delijn.be/stops/109048", "https://data.delijn.be/stops/109330"], ["https://data.delijn.be/stops/106482", "https://data.delijn.be/stops/109213"], ["https://data.delijn.be/stops/206702", "https://data.delijn.be/stops/206741"], ["https://data.delijn.be/stops/504572", "https://data.delijn.be/stops/505300"], ["https://data.delijn.be/stops/500006", "https://data.delijn.be/stops/501510"], ["https://data.delijn.be/stops/206136", "https://data.delijn.be/stops/207136"], ["https://data.delijn.be/stops/109096", "https://data.delijn.be/stops/109097"], ["https://data.delijn.be/stops/306189", "https://data.delijn.be/stops/306190"], ["https://data.delijn.be/stops/302806", "https://data.delijn.be/stops/302807"], ["https://data.delijn.be/stops/301253", "https://data.delijn.be/stops/301254"], ["https://data.delijn.be/stops/203677", "https://data.delijn.be/stops/203695"], ["https://data.delijn.be/stops/500873", "https://data.delijn.be/stops/505923"], ["https://data.delijn.be/stops/302222", "https://data.delijn.be/stops/302223"], ["https://data.delijn.be/stops/308136", "https://data.delijn.be/stops/308137"], ["https://data.delijn.be/stops/504734", "https://data.delijn.be/stops/506241"], ["https://data.delijn.be/stops/509871", "https://data.delijn.be/stops/509963"], ["https://data.delijn.be/stops/300137", "https://data.delijn.be/stops/306806"], ["https://data.delijn.be/stops/502290", "https://data.delijn.be/stops/505730"], ["https://data.delijn.be/stops/303851", "https://data.delijn.be/stops/303854"], ["https://data.delijn.be/stops/102982", "https://data.delijn.be/stops/107412"], ["https://data.delijn.be/stops/207574", "https://data.delijn.be/stops/207575"], ["https://data.delijn.be/stops/409321", "https://data.delijn.be/stops/410068"], ["https://data.delijn.be/stops/300437", "https://data.delijn.be/stops/300438"], ["https://data.delijn.be/stops/202112", "https://data.delijn.be/stops/203113"], ["https://data.delijn.be/stops/403243", "https://data.delijn.be/stops/403276"], ["https://data.delijn.be/stops/408059", "https://data.delijn.be/stops/408438"], ["https://data.delijn.be/stops/405206", "https://data.delijn.be/stops/405252"], ["https://data.delijn.be/stops/101226", "https://data.delijn.be/stops/101718"], ["https://data.delijn.be/stops/109824", "https://data.delijn.be/stops/109825"], ["https://data.delijn.be/stops/205289", "https://data.delijn.be/stops/205498"], ["https://data.delijn.be/stops/408171", "https://data.delijn.be/stops/409136"], ["https://data.delijn.be/stops/508601", "https://data.delijn.be/stops/508752"], ["https://data.delijn.be/stops/400624", "https://data.delijn.be/stops/400625"], ["https://data.delijn.be/stops/306649", "https://data.delijn.be/stops/306650"], ["https://data.delijn.be/stops/401099", "https://data.delijn.be/stops/404984"], ["https://data.delijn.be/stops/502617", "https://data.delijn.be/stops/507617"], ["https://data.delijn.be/stops/300559", "https://data.delijn.be/stops/300613"], ["https://data.delijn.be/stops/206049", "https://data.delijn.be/stops/206962"], ["https://data.delijn.be/stops/105011", "https://data.delijn.be/stops/105013"], ["https://data.delijn.be/stops/201699", "https://data.delijn.be/stops/202785"], ["https://data.delijn.be/stops/509773", "https://data.delijn.be/stops/509787"], ["https://data.delijn.be/stops/405960", "https://data.delijn.be/stops/308171"], ["https://data.delijn.be/stops/307833", "https://data.delijn.be/stops/308275"], ["https://data.delijn.be/stops/407176", "https://data.delijn.be/stops/408729"], ["https://data.delijn.be/stops/200563", "https://data.delijn.be/stops/201564"], ["https://data.delijn.be/stops/404784", "https://data.delijn.be/stops/404832"], ["https://data.delijn.be/stops/203971", "https://data.delijn.be/stops/203972"], ["https://data.delijn.be/stops/504072", "https://data.delijn.be/stops/509071"], ["https://data.delijn.be/stops/408317", "https://data.delijn.be/stops/408398"], ["https://data.delijn.be/stops/202108", "https://data.delijn.be/stops/205793"], ["https://data.delijn.be/stops/208501", "https://data.delijn.be/stops/209468"], ["https://data.delijn.be/stops/409312", "https://data.delijn.be/stops/409313"], ["https://data.delijn.be/stops/102453", "https://data.delijn.be/stops/102454"], ["https://data.delijn.be/stops/206205", "https://data.delijn.be/stops/207206"], ["https://data.delijn.be/stops/206640", "https://data.delijn.be/stops/206922"], ["https://data.delijn.be/stops/405849", "https://data.delijn.be/stops/405868"], ["https://data.delijn.be/stops/208342", "https://data.delijn.be/stops/209110"], ["https://data.delijn.be/stops/409368", "https://data.delijn.be/stops/409442"], ["https://data.delijn.be/stops/106221", "https://data.delijn.be/stops/106320"], ["https://data.delijn.be/stops/408258", "https://data.delijn.be/stops/408373"], ["https://data.delijn.be/stops/107400", "https://data.delijn.be/stops/107725"], ["https://data.delijn.be/stops/203624", "https://data.delijn.be/stops/203625"], ["https://data.delijn.be/stops/406214", "https://data.delijn.be/stops/406232"], ["https://data.delijn.be/stops/206520", "https://data.delijn.be/stops/207520"], ["https://data.delijn.be/stops/503513", "https://data.delijn.be/stops/508475"], ["https://data.delijn.be/stops/109946", "https://data.delijn.be/stops/109947"], ["https://data.delijn.be/stops/304562", "https://data.delijn.be/stops/304586"], ["https://data.delijn.be/stops/305234", "https://data.delijn.be/stops/305325"], ["https://data.delijn.be/stops/300516", "https://data.delijn.be/stops/307828"], ["https://data.delijn.be/stops/108921", "https://data.delijn.be/stops/108923"], ["https://data.delijn.be/stops/307552", "https://data.delijn.be/stops/307555"], ["https://data.delijn.be/stops/400477", "https://data.delijn.be/stops/404669"], ["https://data.delijn.be/stops/106105", "https://data.delijn.be/stops/106161"], ["https://data.delijn.be/stops/206029", "https://data.delijn.be/stops/206030"], ["https://data.delijn.be/stops/211076", "https://data.delijn.be/stops/214003"], ["https://data.delijn.be/stops/206985", "https://data.delijn.be/stops/207984"], ["https://data.delijn.be/stops/401904", "https://data.delijn.be/stops/406257"], ["https://data.delijn.be/stops/206559", "https://data.delijn.be/stops/208953"], ["https://data.delijn.be/stops/501036", "https://data.delijn.be/stops/506323"], ["https://data.delijn.be/stops/502555", "https://data.delijn.be/stops/507555"], ["https://data.delijn.be/stops/206500", "https://data.delijn.be/stops/207062"], ["https://data.delijn.be/stops/200714", "https://data.delijn.be/stops/202124"], ["https://data.delijn.be/stops/104042", "https://data.delijn.be/stops/108376"], ["https://data.delijn.be/stops/406398", "https://data.delijn.be/stops/302838"], ["https://data.delijn.be/stops/101428", "https://data.delijn.be/stops/107298"], ["https://data.delijn.be/stops/200713", "https://data.delijn.be/stops/202600"], ["https://data.delijn.be/stops/403735", "https://data.delijn.be/stops/403736"], ["https://data.delijn.be/stops/208058", "https://data.delijn.be/stops/208059"], ["https://data.delijn.be/stops/405883", "https://data.delijn.be/stops/406386"], ["https://data.delijn.be/stops/503680", "https://data.delijn.be/stops/508077"], ["https://data.delijn.be/stops/501193", "https://data.delijn.be/stops/506193"], ["https://data.delijn.be/stops/406453", "https://data.delijn.be/stops/410225"], ["https://data.delijn.be/stops/505810", "https://data.delijn.be/stops/509044"], ["https://data.delijn.be/stops/101723", "https://data.delijn.be/stops/109975"], ["https://data.delijn.be/stops/202216", "https://data.delijn.be/stops/203212"], ["https://data.delijn.be/stops/300025", "https://data.delijn.be/stops/300387"], ["https://data.delijn.be/stops/402222", "https://data.delijn.be/stops/402763"], ["https://data.delijn.be/stops/503867", "https://data.delijn.be/stops/508872"], ["https://data.delijn.be/stops/207140", "https://data.delijn.be/stops/207141"], ["https://data.delijn.be/stops/205419", "https://data.delijn.be/stops/205466"], ["https://data.delijn.be/stops/307681", "https://data.delijn.be/stops/307682"], ["https://data.delijn.be/stops/400073", "https://data.delijn.be/stops/401971"], ["https://data.delijn.be/stops/402954", "https://data.delijn.be/stops/404899"], ["https://data.delijn.be/stops/405766", "https://data.delijn.be/stops/409742"], ["https://data.delijn.be/stops/304568", "https://data.delijn.be/stops/304578"], ["https://data.delijn.be/stops/101506", "https://data.delijn.be/stops/109032"], ["https://data.delijn.be/stops/409746", "https://data.delijn.be/stops/409747"], ["https://data.delijn.be/stops/306346", "https://data.delijn.be/stops/306347"], ["https://data.delijn.be/stops/209224", "https://data.delijn.be/stops/209773"], ["https://data.delijn.be/stops/507543", "https://data.delijn.be/stops/507623"], ["https://data.delijn.be/stops/503809", "https://data.delijn.be/stops/503812"], ["https://data.delijn.be/stops/403387", "https://data.delijn.be/stops/410324"], ["https://data.delijn.be/stops/502376", "https://data.delijn.be/stops/502555"], ["https://data.delijn.be/stops/300147", "https://data.delijn.be/stops/306770"], ["https://data.delijn.be/stops/208716", "https://data.delijn.be/stops/209331"], ["https://data.delijn.be/stops/503443", "https://data.delijn.be/stops/508429"], ["https://data.delijn.be/stops/505058", "https://data.delijn.be/stops/505072"], ["https://data.delijn.be/stops/307409", "https://data.delijn.be/stops/308054"], ["https://data.delijn.be/stops/405443", "https://data.delijn.be/stops/408613"], ["https://data.delijn.be/stops/208537", "https://data.delijn.be/stops/209696"], ["https://data.delijn.be/stops/205981", "https://data.delijn.be/stops/208684"], ["https://data.delijn.be/stops/206981", "https://data.delijn.be/stops/207981"], ["https://data.delijn.be/stops/501645", "https://data.delijn.be/stops/506646"], ["https://data.delijn.be/stops/510015", "https://data.delijn.be/stops/510021"], ["https://data.delijn.be/stops/304987", "https://data.delijn.be/stops/304988"], ["https://data.delijn.be/stops/106379", "https://data.delijn.be/stops/106382"], ["https://data.delijn.be/stops/109351", "https://data.delijn.be/stops/306815"], ["https://data.delijn.be/stops/301005", "https://data.delijn.be/stops/301011"], ["https://data.delijn.be/stops/501772", "https://data.delijn.be/stops/506302"], ["https://data.delijn.be/stops/409036", "https://data.delijn.be/stops/409038"], ["https://data.delijn.be/stops/508044", "https://data.delijn.be/stops/508122"], ["https://data.delijn.be/stops/208000", "https://data.delijn.be/stops/209014"], ["https://data.delijn.be/stops/308265", "https://data.delijn.be/stops/308266"], ["https://data.delijn.be/stops/503884", "https://data.delijn.be/stops/508115"], ["https://data.delijn.be/stops/403450", "https://data.delijn.be/stops/409284"], ["https://data.delijn.be/stops/505748", "https://data.delijn.be/stops/507667"], ["https://data.delijn.be/stops/304415", "https://data.delijn.be/stops/306858"], ["https://data.delijn.be/stops/107599", "https://data.delijn.be/stops/107601"], ["https://data.delijn.be/stops/109239", "https://data.delijn.be/stops/109240"], ["https://data.delijn.be/stops/304371", "https://data.delijn.be/stops/304372"], ["https://data.delijn.be/stops/204615", "https://data.delijn.be/stops/204657"], ["https://data.delijn.be/stops/409778", "https://data.delijn.be/stops/409779"], ["https://data.delijn.be/stops/300811", "https://data.delijn.be/stops/300812"], ["https://data.delijn.be/stops/109668", "https://data.delijn.be/stops/109669"], ["https://data.delijn.be/stops/208038", "https://data.delijn.be/stops/209038"], ["https://data.delijn.be/stops/204405", "https://data.delijn.be/stops/205198"], ["https://data.delijn.be/stops/502798", "https://data.delijn.be/stops/507318"], ["https://data.delijn.be/stops/300077", "https://data.delijn.be/stops/308450"], ["https://data.delijn.be/stops/308502", "https://data.delijn.be/stops/308520"], ["https://data.delijn.be/stops/103895", "https://data.delijn.be/stops/105316"], ["https://data.delijn.be/stops/101497", "https://data.delijn.be/stops/108306"], ["https://data.delijn.be/stops/204663", "https://data.delijn.be/stops/205664"], ["https://data.delijn.be/stops/400216", "https://data.delijn.be/stops/400217"], ["https://data.delijn.be/stops/503151", "https://data.delijn.be/stops/504095"], ["https://data.delijn.be/stops/408108", "https://data.delijn.be/stops/408160"], ["https://data.delijn.be/stops/104898", "https://data.delijn.be/stops/107613"], ["https://data.delijn.be/stops/300768", "https://data.delijn.be/stops/301069"], ["https://data.delijn.be/stops/307317", "https://data.delijn.be/stops/307319"], ["https://data.delijn.be/stops/102933", "https://data.delijn.be/stops/106038"], ["https://data.delijn.be/stops/503104", "https://data.delijn.be/stops/505384"], ["https://data.delijn.be/stops/408055", "https://data.delijn.be/stops/408057"], ["https://data.delijn.be/stops/107156", "https://data.delijn.be/stops/107554"], ["https://data.delijn.be/stops/201277", "https://data.delijn.be/stops/204925"], ["https://data.delijn.be/stops/108106", "https://data.delijn.be/stops/108117"], ["https://data.delijn.be/stops/408045", "https://data.delijn.be/stops/303262"], ["https://data.delijn.be/stops/401618", "https://data.delijn.be/stops/308221"], ["https://data.delijn.be/stops/105238", "https://data.delijn.be/stops/105239"], ["https://data.delijn.be/stops/408003", "https://data.delijn.be/stops/408245"], ["https://data.delijn.be/stops/206476", "https://data.delijn.be/stops/206477"], ["https://data.delijn.be/stops/409060", "https://data.delijn.be/stops/409122"], ["https://data.delijn.be/stops/402692", "https://data.delijn.be/stops/402877"], ["https://data.delijn.be/stops/305344", "https://data.delijn.be/stops/307283"], ["https://data.delijn.be/stops/104101", "https://data.delijn.be/stops/104102"], ["https://data.delijn.be/stops/404496", "https://data.delijn.be/stops/404526"], ["https://data.delijn.be/stops/201831", "https://data.delijn.be/stops/208256"], ["https://data.delijn.be/stops/101183", "https://data.delijn.be/stops/107871"], ["https://data.delijn.be/stops/503731", "https://data.delijn.be/stops/508731"], ["https://data.delijn.be/stops/502581", "https://data.delijn.be/stops/507388"], ["https://data.delijn.be/stops/107422", "https://data.delijn.be/stops/107707"], ["https://data.delijn.be/stops/400235", "https://data.delijn.be/stops/400236"], ["https://data.delijn.be/stops/105528", "https://data.delijn.be/stops/106973"], ["https://data.delijn.be/stops/300815", "https://data.delijn.be/stops/300821"], ["https://data.delijn.be/stops/506085", "https://data.delijn.be/stops/506088"], ["https://data.delijn.be/stops/503211", "https://data.delijn.be/stops/508211"], ["https://data.delijn.be/stops/300987", "https://data.delijn.be/stops/300988"], ["https://data.delijn.be/stops/106228", "https://data.delijn.be/stops/109128"], ["https://data.delijn.be/stops/405683", "https://data.delijn.be/stops/409746"], ["https://data.delijn.be/stops/407775", "https://data.delijn.be/stops/407778"], ["https://data.delijn.be/stops/403701", "https://data.delijn.be/stops/403772"], ["https://data.delijn.be/stops/401432", "https://data.delijn.be/stops/401435"], ["https://data.delijn.be/stops/301723", "https://data.delijn.be/stops/303466"], ["https://data.delijn.be/stops/208346", "https://data.delijn.be/stops/209347"], ["https://data.delijn.be/stops/108991", "https://data.delijn.be/stops/108992"], ["https://data.delijn.be/stops/505638", "https://data.delijn.be/stops/508181"], ["https://data.delijn.be/stops/204638", "https://data.delijn.be/stops/204731"], ["https://data.delijn.be/stops/405087", "https://data.delijn.be/stops/406501"], ["https://data.delijn.be/stops/503224", "https://data.delijn.be/stops/505261"], ["https://data.delijn.be/stops/502294", "https://data.delijn.be/stops/507294"], ["https://data.delijn.be/stops/302461", "https://data.delijn.be/stops/302464"], ["https://data.delijn.be/stops/507556", "https://data.delijn.be/stops/507666"], ["https://data.delijn.be/stops/108122", "https://data.delijn.be/stops/109620"], ["https://data.delijn.be/stops/504661", "https://data.delijn.be/stops/509393"], ["https://data.delijn.be/stops/300229", "https://data.delijn.be/stops/302126"], ["https://data.delijn.be/stops/402563", "https://data.delijn.be/stops/407843"], ["https://data.delijn.be/stops/505224", "https://data.delijn.be/stops/509609"], ["https://data.delijn.be/stops/503894", "https://data.delijn.be/stops/505980"], ["https://data.delijn.be/stops/507079", "https://data.delijn.be/stops/507080"], ["https://data.delijn.be/stops/303774", "https://data.delijn.be/stops/307031"], ["https://data.delijn.be/stops/105013", "https://data.delijn.be/stops/105081"], ["https://data.delijn.be/stops/107278", "https://data.delijn.be/stops/107392"], ["https://data.delijn.be/stops/301849", "https://data.delijn.be/stops/301851"], ["https://data.delijn.be/stops/400749", "https://data.delijn.be/stops/409587"], ["https://data.delijn.be/stops/304044", "https://data.delijn.be/stops/309670"], ["https://data.delijn.be/stops/504158", "https://data.delijn.be/stops/509189"], ["https://data.delijn.be/stops/203001", "https://data.delijn.be/stops/203079"], ["https://data.delijn.be/stops/508614", "https://data.delijn.be/stops/508617"], ["https://data.delijn.be/stops/406322", "https://data.delijn.be/stops/406331"], ["https://data.delijn.be/stops/208431", "https://data.delijn.be/stops/208680"], ["https://data.delijn.be/stops/108938", "https://data.delijn.be/stops/108941"], ["https://data.delijn.be/stops/507207", "https://data.delijn.be/stops/507216"], ["https://data.delijn.be/stops/206822", "https://data.delijn.be/stops/207529"], ["https://data.delijn.be/stops/208888", "https://data.delijn.be/stops/208889"], ["https://data.delijn.be/stops/503932", "https://data.delijn.be/stops/508932"], ["https://data.delijn.be/stops/406257", "https://data.delijn.be/stops/406258"], ["https://data.delijn.be/stops/505391", "https://data.delijn.be/stops/505832"], ["https://data.delijn.be/stops/208046", "https://data.delijn.be/stops/209561"], ["https://data.delijn.be/stops/402300", "https://data.delijn.be/stops/402326"], ["https://data.delijn.be/stops/104659", "https://data.delijn.be/stops/306608"], ["https://data.delijn.be/stops/201639", "https://data.delijn.be/stops/201896"], ["https://data.delijn.be/stops/306848", "https://data.delijn.be/stops/307355"], ["https://data.delijn.be/stops/507021", "https://data.delijn.be/stops/507154"], ["https://data.delijn.be/stops/504119", "https://data.delijn.be/stops/509119"], ["https://data.delijn.be/stops/404190", "https://data.delijn.be/stops/404194"], ["https://data.delijn.be/stops/405176", "https://data.delijn.be/stops/405219"], ["https://data.delijn.be/stops/207587", "https://data.delijn.be/stops/208951"], ["https://data.delijn.be/stops/403158", "https://data.delijn.be/stops/410320"], ["https://data.delijn.be/stops/206213", "https://data.delijn.be/stops/207820"], ["https://data.delijn.be/stops/405060", "https://data.delijn.be/stops/405061"], ["https://data.delijn.be/stops/402773", "https://data.delijn.be/stops/402777"], ["https://data.delijn.be/stops/101350", "https://data.delijn.be/stops/102710"], ["https://data.delijn.be/stops/106655", "https://data.delijn.be/stops/106657"], ["https://data.delijn.be/stops/410394", "https://data.delijn.be/stops/410395"], ["https://data.delijn.be/stops/302537", "https://data.delijn.be/stops/302539"], ["https://data.delijn.be/stops/409585", "https://data.delijn.be/stops/409586"], ["https://data.delijn.be/stops/208254", "https://data.delijn.be/stops/218027"], ["https://data.delijn.be/stops/500942", "https://data.delijn.be/stops/590010"], ["https://data.delijn.be/stops/206675", "https://data.delijn.be/stops/209101"], ["https://data.delijn.be/stops/108536", "https://data.delijn.be/stops/108538"], ["https://data.delijn.be/stops/200949", "https://data.delijn.be/stops/202094"], ["https://data.delijn.be/stops/303253", "https://data.delijn.be/stops/303259"], ["https://data.delijn.be/stops/401483", "https://data.delijn.be/stops/407348"], ["https://data.delijn.be/stops/201246", "https://data.delijn.be/stops/201426"], ["https://data.delijn.be/stops/504231", "https://data.delijn.be/stops/504240"], ["https://data.delijn.be/stops/403764", "https://data.delijn.be/stops/403811"], ["https://data.delijn.be/stops/503201", "https://data.delijn.be/stops/508190"], ["https://data.delijn.be/stops/102751", "https://data.delijn.be/stops/103357"], ["https://data.delijn.be/stops/200871", "https://data.delijn.be/stops/201120"], ["https://data.delijn.be/stops/404338", "https://data.delijn.be/stops/404347"], ["https://data.delijn.be/stops/200311", "https://data.delijn.be/stops/200537"], ["https://data.delijn.be/stops/307595", "https://data.delijn.be/stops/307596"], ["https://data.delijn.be/stops/306939", "https://data.delijn.be/stops/306941"], ["https://data.delijn.be/stops/206917", "https://data.delijn.be/stops/207264"], ["https://data.delijn.be/stops/102422", "https://data.delijn.be/stops/107316"], ["https://data.delijn.be/stops/400147", "https://data.delijn.be/stops/409199"], ["https://data.delijn.be/stops/402659", "https://data.delijn.be/stops/402669"], ["https://data.delijn.be/stops/308498", "https://data.delijn.be/stops/308500"], ["https://data.delijn.be/stops/204043", "https://data.delijn.be/stops/205043"], ["https://data.delijn.be/stops/206879", "https://data.delijn.be/stops/207878"], ["https://data.delijn.be/stops/304489", "https://data.delijn.be/stops/304491"], ["https://data.delijn.be/stops/103683", "https://data.delijn.be/stops/106316"], ["https://data.delijn.be/stops/400286", "https://data.delijn.be/stops/400403"], ["https://data.delijn.be/stops/204017", "https://data.delijn.be/stops/205054"], ["https://data.delijn.be/stops/208151", "https://data.delijn.be/stops/209152"], ["https://data.delijn.be/stops/303440", "https://data.delijn.be/stops/303446"], ["https://data.delijn.be/stops/304511", "https://data.delijn.be/stops/305278"], ["https://data.delijn.be/stops/501454", "https://data.delijn.be/stops/506449"], ["https://data.delijn.be/stops/502487", "https://data.delijn.be/stops/507485"], ["https://data.delijn.be/stops/206015", "https://data.delijn.be/stops/206166"], ["https://data.delijn.be/stops/207885", "https://data.delijn.be/stops/207889"], ["https://data.delijn.be/stops/101068", "https://data.delijn.be/stops/109095"], ["https://data.delijn.be/stops/104471", "https://data.delijn.be/stops/104476"], ["https://data.delijn.be/stops/303256", "https://data.delijn.be/stops/303275"], ["https://data.delijn.be/stops/305018", "https://data.delijn.be/stops/308034"], ["https://data.delijn.be/stops/502100", "https://data.delijn.be/stops/507120"], ["https://data.delijn.be/stops/504612", "https://data.delijn.be/stops/509352"], ["https://data.delijn.be/stops/406524", "https://data.delijn.be/stops/406525"], ["https://data.delijn.be/stops/109335", "https://data.delijn.be/stops/109337"], ["https://data.delijn.be/stops/105481", "https://data.delijn.be/stops/105484"], ["https://data.delijn.be/stops/302241", "https://data.delijn.be/stops/302246"], ["https://data.delijn.be/stops/300933", "https://data.delijn.be/stops/300935"], ["https://data.delijn.be/stops/106097", "https://data.delijn.be/stops/106112"], ["https://data.delijn.be/stops/301896", "https://data.delijn.be/stops/304299"], ["https://data.delijn.be/stops/109221", "https://data.delijn.be/stops/109223"], ["https://data.delijn.be/stops/102605", "https://data.delijn.be/stops/102610"], ["https://data.delijn.be/stops/204389", "https://data.delijn.be/stops/204402"], ["https://data.delijn.be/stops/208592", "https://data.delijn.be/stops/209592"], ["https://data.delijn.be/stops/407103", "https://data.delijn.be/stops/407272"], ["https://data.delijn.be/stops/407711", "https://data.delijn.be/stops/407712"], ["https://data.delijn.be/stops/404952", "https://data.delijn.be/stops/408583"], ["https://data.delijn.be/stops/208441", "https://data.delijn.be/stops/208668"], ["https://data.delijn.be/stops/208344", "https://data.delijn.be/stops/218031"], ["https://data.delijn.be/stops/302641", "https://data.delijn.be/stops/302687"], ["https://data.delijn.be/stops/200852", "https://data.delijn.be/stops/202324"], ["https://data.delijn.be/stops/202118", "https://data.delijn.be/stops/205171"], ["https://data.delijn.be/stops/204346", "https://data.delijn.be/stops/205345"], ["https://data.delijn.be/stops/108815", "https://data.delijn.be/stops/108970"], ["https://data.delijn.be/stops/206147", "https://data.delijn.be/stops/207147"], ["https://data.delijn.be/stops/404199", "https://data.delijn.be/stops/404205"], ["https://data.delijn.be/stops/405178", "https://data.delijn.be/stops/405216"], ["https://data.delijn.be/stops/502606", "https://data.delijn.be/stops/507606"], ["https://data.delijn.be/stops/504268", "https://data.delijn.be/stops/509268"], ["https://data.delijn.be/stops/206190", "https://data.delijn.be/stops/207224"], ["https://data.delijn.be/stops/204006", "https://data.delijn.be/stops/205007"], ["https://data.delijn.be/stops/507498", "https://data.delijn.be/stops/508800"], ["https://data.delijn.be/stops/303011", "https://data.delijn.be/stops/306279"], ["https://data.delijn.be/stops/106511", "https://data.delijn.be/stops/106514"], ["https://data.delijn.be/stops/407026", "https://data.delijn.be/stops/407027"], ["https://data.delijn.be/stops/202907", "https://data.delijn.be/stops/203906"], ["https://data.delijn.be/stops/500930", "https://data.delijn.be/stops/500937"], ["https://data.delijn.be/stops/406127", "https://data.delijn.be/stops/407914"], ["https://data.delijn.be/stops/200925", "https://data.delijn.be/stops/200952"], ["https://data.delijn.be/stops/102424", "https://data.delijn.be/stops/103710"], ["https://data.delijn.be/stops/403237", "https://data.delijn.be/stops/403428"], ["https://data.delijn.be/stops/206008", "https://data.delijn.be/stops/207007"], ["https://data.delijn.be/stops/404632", "https://data.delijn.be/stops/404634"], ["https://data.delijn.be/stops/101162", "https://data.delijn.be/stops/205640"], ["https://data.delijn.be/stops/105599", "https://data.delijn.be/stops/105602"], ["https://data.delijn.be/stops/201619", "https://data.delijn.be/stops/211048"], ["https://data.delijn.be/stops/402065", "https://data.delijn.be/stops/410059"], ["https://data.delijn.be/stops/207679", "https://data.delijn.be/stops/209144"], ["https://data.delijn.be/stops/103990", "https://data.delijn.be/stops/104494"], ["https://data.delijn.be/stops/502140", "https://data.delijn.be/stops/502793"], ["https://data.delijn.be/stops/301651", "https://data.delijn.be/stops/303936"], ["https://data.delijn.be/stops/209644", "https://data.delijn.be/stops/209645"], ["https://data.delijn.be/stops/404979", "https://data.delijn.be/stops/410061"], ["https://data.delijn.be/stops/105252", "https://data.delijn.be/stops/105268"], ["https://data.delijn.be/stops/504197", "https://data.delijn.be/stops/504969"], ["https://data.delijn.be/stops/302545", "https://data.delijn.be/stops/305857"], ["https://data.delijn.be/stops/207672", "https://data.delijn.be/stops/208002"], ["https://data.delijn.be/stops/206739", "https://data.delijn.be/stops/207980"], ["https://data.delijn.be/stops/402085", "https://data.delijn.be/stops/408469"], ["https://data.delijn.be/stops/305675", "https://data.delijn.be/stops/305685"], ["https://data.delijn.be/stops/204468", "https://data.delijn.be/stops/214010"], ["https://data.delijn.be/stops/406598", "https://data.delijn.be/stops/406638"], ["https://data.delijn.be/stops/206763", "https://data.delijn.be/stops/218020"], ["https://data.delijn.be/stops/206770", "https://data.delijn.be/stops/208541"], ["https://data.delijn.be/stops/102669", "https://data.delijn.be/stops/102671"], ["https://data.delijn.be/stops/302456", "https://data.delijn.be/stops/302497"], ["https://data.delijn.be/stops/300640", "https://data.delijn.be/stops/300645"], ["https://data.delijn.be/stops/108709", "https://data.delijn.be/stops/108728"], ["https://data.delijn.be/stops/108742", "https://data.delijn.be/stops/109501"], ["https://data.delijn.be/stops/103724", "https://data.delijn.be/stops/108091"], ["https://data.delijn.be/stops/300334", "https://data.delijn.be/stops/306816"], ["https://data.delijn.be/stops/504397", "https://data.delijn.be/stops/509393"], ["https://data.delijn.be/stops/302578", "https://data.delijn.be/stops/306404"], ["https://data.delijn.be/stops/206818", "https://data.delijn.be/stops/207818"], ["https://data.delijn.be/stops/106375", "https://data.delijn.be/stops/106387"], ["https://data.delijn.be/stops/109260", "https://data.delijn.be/stops/109265"], ["https://data.delijn.be/stops/103472", "https://data.delijn.be/stops/109165"], ["https://data.delijn.be/stops/103747", "https://data.delijn.be/stops/105795"], ["https://data.delijn.be/stops/105480", "https://data.delijn.be/stops/105689"], ["https://data.delijn.be/stops/502797", "https://data.delijn.be/stops/505766"], ["https://data.delijn.be/stops/407923", "https://data.delijn.be/stops/407973"], ["https://data.delijn.be/stops/300677", "https://data.delijn.be/stops/300678"], ["https://data.delijn.be/stops/200531", "https://data.delijn.be/stops/211091"], ["https://data.delijn.be/stops/101786", "https://data.delijn.be/stops/109142"], ["https://data.delijn.be/stops/504378", "https://data.delijn.be/stops/508855"], ["https://data.delijn.be/stops/202985", "https://data.delijn.be/stops/203986"], ["https://data.delijn.be/stops/205027", "https://data.delijn.be/stops/205817"], ["https://data.delijn.be/stops/504022", "https://data.delijn.be/stops/505291"], ["https://data.delijn.be/stops/303985", "https://data.delijn.be/stops/303986"], ["https://data.delijn.be/stops/300182", "https://data.delijn.be/stops/300187"], ["https://data.delijn.be/stops/101917", "https://data.delijn.be/stops/107920"], ["https://data.delijn.be/stops/406870", "https://data.delijn.be/stops/406871"], ["https://data.delijn.be/stops/104802", "https://data.delijn.be/stops/109553"], ["https://data.delijn.be/stops/402333", "https://data.delijn.be/stops/407328"], ["https://data.delijn.be/stops/305430", "https://data.delijn.be/stops/305435"], ["https://data.delijn.be/stops/105311", "https://data.delijn.be/stops/105353"], ["https://data.delijn.be/stops/501076", "https://data.delijn.be/stops/506074"], ["https://data.delijn.be/stops/200066", "https://data.delijn.be/stops/200983"], ["https://data.delijn.be/stops/106915", "https://data.delijn.be/stops/106918"], ["https://data.delijn.be/stops/103004", "https://data.delijn.be/stops/108329"], ["https://data.delijn.be/stops/105873", "https://data.delijn.be/stops/105874"], ["https://data.delijn.be/stops/202085", "https://data.delijn.be/stops/202086"], ["https://data.delijn.be/stops/106198", "https://data.delijn.be/stops/109274"], ["https://data.delijn.be/stops/400842", "https://data.delijn.be/stops/409573"], ["https://data.delijn.be/stops/203136", "https://data.delijn.be/stops/209987"], ["https://data.delijn.be/stops/208665", "https://data.delijn.be/stops/208669"], ["https://data.delijn.be/stops/501551", "https://data.delijn.be/stops/507521"], ["https://data.delijn.be/stops/402865", "https://data.delijn.be/stops/306035"], ["https://data.delijn.be/stops/200661", "https://data.delijn.be/stops/200663"], ["https://data.delijn.be/stops/104389", "https://data.delijn.be/stops/104393"], ["https://data.delijn.be/stops/303115", "https://data.delijn.be/stops/307939"], ["https://data.delijn.be/stops/406311", "https://data.delijn.be/stops/406324"], ["https://data.delijn.be/stops/208069", "https://data.delijn.be/stops/209241"], ["https://data.delijn.be/stops/208467", "https://data.delijn.be/stops/209461"], ["https://data.delijn.be/stops/404893", "https://data.delijn.be/stops/404896"], ["https://data.delijn.be/stops/302178", "https://data.delijn.be/stops/305161"], ["https://data.delijn.be/stops/505788", "https://data.delijn.be/stops/505910"], ["https://data.delijn.be/stops/200848", "https://data.delijn.be/stops/209653"], ["https://data.delijn.be/stops/105708", "https://data.delijn.be/stops/106071"], ["https://data.delijn.be/stops/508735", "https://data.delijn.be/stops/509976"], ["https://data.delijn.be/stops/200629", "https://data.delijn.be/stops/200954"], ["https://data.delijn.be/stops/109138", "https://data.delijn.be/stops/109141"], ["https://data.delijn.be/stops/508590", "https://data.delijn.be/stops/509883"], ["https://data.delijn.be/stops/300706", "https://data.delijn.be/stops/308068"], ["https://data.delijn.be/stops/302977", "https://data.delijn.be/stops/303006"], ["https://data.delijn.be/stops/105299", "https://data.delijn.be/stops/105301"], ["https://data.delijn.be/stops/200939", "https://data.delijn.be/stops/202042"], ["https://data.delijn.be/stops/304734", "https://data.delijn.be/stops/304745"], ["https://data.delijn.be/stops/106643", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/400443", "https://data.delijn.be/stops/404772"], ["https://data.delijn.be/stops/504563", "https://data.delijn.be/stops/505918"], ["https://data.delijn.be/stops/108553", "https://data.delijn.be/stops/108558"], ["https://data.delijn.be/stops/505937", "https://data.delijn.be/stops/505946"], ["https://data.delijn.be/stops/502623", "https://data.delijn.be/stops/507544"], ["https://data.delijn.be/stops/409028", "https://data.delijn.be/stops/409045"], ["https://data.delijn.be/stops/303110", "https://data.delijn.be/stops/306102"], ["https://data.delijn.be/stops/402953", "https://data.delijn.be/stops/306782"], ["https://data.delijn.be/stops/206732", "https://data.delijn.be/stops/307822"], ["https://data.delijn.be/stops/302787", "https://data.delijn.be/stops/308593"], ["https://data.delijn.be/stops/409076", "https://data.delijn.be/stops/409078"], ["https://data.delijn.be/stops/102209", "https://data.delijn.be/stops/102211"], ["https://data.delijn.be/stops/305232", "https://data.delijn.be/stops/305252"], ["https://data.delijn.be/stops/505064", "https://data.delijn.be/stops/505320"], ["https://data.delijn.be/stops/208464", "https://data.delijn.be/stops/208515"], ["https://data.delijn.be/stops/101077", "https://data.delijn.be/stops/107152"], ["https://data.delijn.be/stops/302080", "https://data.delijn.be/stops/302087"], ["https://data.delijn.be/stops/409580", "https://data.delijn.be/stops/409583"], ["https://data.delijn.be/stops/401282", "https://data.delijn.be/stops/408419"], ["https://data.delijn.be/stops/102335", "https://data.delijn.be/stops/104165"], ["https://data.delijn.be/stops/104392", "https://data.delijn.be/stops/104492"], ["https://data.delijn.be/stops/200660", "https://data.delijn.be/stops/210123"], ["https://data.delijn.be/stops/103305", "https://data.delijn.be/stops/107015"], ["https://data.delijn.be/stops/505365", "https://data.delijn.be/stops/508662"], ["https://data.delijn.be/stops/506266", "https://data.delijn.be/stops/506308"], ["https://data.delijn.be/stops/502712", "https://data.delijn.be/stops/505694"], ["https://data.delijn.be/stops/407033", "https://data.delijn.be/stops/408000"], ["https://data.delijn.be/stops/302805", "https://data.delijn.be/stops/305429"], ["https://data.delijn.be/stops/107330", "https://data.delijn.be/stops/108120"], ["https://data.delijn.be/stops/403719", "https://data.delijn.be/stops/405136"], ["https://data.delijn.be/stops/308414", "https://data.delijn.be/stops/308429"], ["https://data.delijn.be/stops/302373", "https://data.delijn.be/stops/302387"], ["https://data.delijn.be/stops/504482", "https://data.delijn.be/stops/509012"], ["https://data.delijn.be/stops/204314", "https://data.delijn.be/stops/204315"], ["https://data.delijn.be/stops/406001", "https://data.delijn.be/stops/406135"], ["https://data.delijn.be/stops/304466", "https://data.delijn.be/stops/304469"], ["https://data.delijn.be/stops/302203", "https://data.delijn.be/stops/304079"], ["https://data.delijn.be/stops/202866", "https://data.delijn.be/stops/203742"], ["https://data.delijn.be/stops/201671", "https://data.delijn.be/stops/203774"], ["https://data.delijn.be/stops/400937", "https://data.delijn.be/stops/401923"], ["https://data.delijn.be/stops/206736", "https://data.delijn.be/stops/207985"], ["https://data.delijn.be/stops/106498", "https://data.delijn.be/stops/108727"], ["https://data.delijn.be/stops/200689", "https://data.delijn.be/stops/203759"], ["https://data.delijn.be/stops/405397", "https://data.delijn.be/stops/302835"], ["https://data.delijn.be/stops/101055", "https://data.delijn.be/stops/104895"], ["https://data.delijn.be/stops/505809", "https://data.delijn.be/stops/507709"], ["https://data.delijn.be/stops/306171", "https://data.delijn.be/stops/307267"], ["https://data.delijn.be/stops/203933", "https://data.delijn.be/stops/208724"], ["https://data.delijn.be/stops/503538", "https://data.delijn.be/stops/508110"], ["https://data.delijn.be/stops/200820", "https://data.delijn.be/stops/200848"], ["https://data.delijn.be/stops/205237", "https://data.delijn.be/stops/207396"], ["https://data.delijn.be/stops/401492", "https://data.delijn.be/stops/401549"], ["https://data.delijn.be/stops/301733", "https://data.delijn.be/stops/305948"], ["https://data.delijn.be/stops/200414", "https://data.delijn.be/stops/201415"], ["https://data.delijn.be/stops/201144", "https://data.delijn.be/stops/201242"], ["https://data.delijn.be/stops/305651", "https://data.delijn.be/stops/305661"], ["https://data.delijn.be/stops/402751", "https://data.delijn.be/stops/406473"], ["https://data.delijn.be/stops/108166", "https://data.delijn.be/stops/108168"], ["https://data.delijn.be/stops/409021", "https://data.delijn.be/stops/409028"], ["https://data.delijn.be/stops/401433", "https://data.delijn.be/stops/401435"], ["https://data.delijn.be/stops/300093", "https://data.delijn.be/stops/306862"], ["https://data.delijn.be/stops/102660", "https://data.delijn.be/stops/107417"], ["https://data.delijn.be/stops/106927", "https://data.delijn.be/stops/106928"], ["https://data.delijn.be/stops/107877", "https://data.delijn.be/stops/107883"], ["https://data.delijn.be/stops/200255", "https://data.delijn.be/stops/200258"], ["https://data.delijn.be/stops/105383", "https://data.delijn.be/stops/105624"], ["https://data.delijn.be/stops/402879", "https://data.delijn.be/stops/402880"], ["https://data.delijn.be/stops/407732", "https://data.delijn.be/stops/407733"], ["https://data.delijn.be/stops/202106", "https://data.delijn.be/stops/202262"], ["https://data.delijn.be/stops/206773", "https://data.delijn.be/stops/208031"], ["https://data.delijn.be/stops/206389", "https://data.delijn.be/stops/209756"], ["https://data.delijn.be/stops/503068", "https://data.delijn.be/stops/503391"], ["https://data.delijn.be/stops/405900", "https://data.delijn.be/stops/405926"], ["https://data.delijn.be/stops/204591", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/509110", "https://data.delijn.be/stops/509114"], ["https://data.delijn.be/stops/304693", "https://data.delijn.be/stops/304694"], ["https://data.delijn.be/stops/301627", "https://data.delijn.be/stops/301633"], ["https://data.delijn.be/stops/102383", "https://data.delijn.be/stops/106037"], ["https://data.delijn.be/stops/406956", "https://data.delijn.be/stops/406957"], ["https://data.delijn.be/stops/104589", "https://data.delijn.be/stops/106412"], ["https://data.delijn.be/stops/305233", "https://data.delijn.be/stops/305296"], ["https://data.delijn.be/stops/404835", "https://data.delijn.be/stops/406095"], ["https://data.delijn.be/stops/205706", "https://data.delijn.be/stops/205708"], ["https://data.delijn.be/stops/200010", "https://data.delijn.be/stops/201010"], ["https://data.delijn.be/stops/508328", "https://data.delijn.be/stops/508980"], ["https://data.delijn.be/stops/200587", "https://data.delijn.be/stops/201587"], ["https://data.delijn.be/stops/303372", "https://data.delijn.be/stops/303803"], ["https://data.delijn.be/stops/402230", "https://data.delijn.be/stops/402294"], ["https://data.delijn.be/stops/106561", "https://data.delijn.be/stops/106562"], ["https://data.delijn.be/stops/308520", "https://data.delijn.be/stops/308521"], ["https://data.delijn.be/stops/409098", "https://data.delijn.be/stops/409100"], ["https://data.delijn.be/stops/204034", "https://data.delijn.be/stops/205034"], ["https://data.delijn.be/stops/305466", "https://data.delijn.be/stops/307461"], ["https://data.delijn.be/stops/202169", "https://data.delijn.be/stops/204773"], ["https://data.delijn.be/stops/202889", "https://data.delijn.be/stops/203749"], ["https://data.delijn.be/stops/102830", "https://data.delijn.be/stops/108060"], ["https://data.delijn.be/stops/307689", "https://data.delijn.be/stops/307690"], ["https://data.delijn.be/stops/206416", "https://data.delijn.be/stops/217016"], ["https://data.delijn.be/stops/400834", "https://data.delijn.be/stops/409532"], ["https://data.delijn.be/stops/302339", "https://data.delijn.be/stops/306181"], ["https://data.delijn.be/stops/205991", "https://data.delijn.be/stops/208798"], ["https://data.delijn.be/stops/109312", "https://data.delijn.be/stops/109866"], ["https://data.delijn.be/stops/102650", "https://data.delijn.be/stops/105400"], ["https://data.delijn.be/stops/503907", "https://data.delijn.be/stops/505917"], ["https://data.delijn.be/stops/200764", "https://data.delijn.be/stops/209300"], ["https://data.delijn.be/stops/101364", "https://data.delijn.be/stops/103242"], ["https://data.delijn.be/stops/503925", "https://data.delijn.be/stops/508929"], ["https://data.delijn.be/stops/202369", "https://data.delijn.be/stops/203372"], ["https://data.delijn.be/stops/300324", "https://data.delijn.be/stops/300327"], ["https://data.delijn.be/stops/409560", "https://data.delijn.be/stops/409570"], ["https://data.delijn.be/stops/202507", "https://data.delijn.be/stops/203930"], ["https://data.delijn.be/stops/508535", "https://data.delijn.be/stops/509970"], ["https://data.delijn.be/stops/103496", "https://data.delijn.be/stops/103499"], ["https://data.delijn.be/stops/503017", "https://data.delijn.be/stops/503022"], ["https://data.delijn.be/stops/403456", "https://data.delijn.be/stops/403459"], ["https://data.delijn.be/stops/204191", "https://data.delijn.be/stops/205195"], ["https://data.delijn.be/stops/202066", "https://data.delijn.be/stops/202305"], ["https://data.delijn.be/stops/102204", "https://data.delijn.be/stops/102206"], ["https://data.delijn.be/stops/200813", "https://data.delijn.be/stops/210075"], ["https://data.delijn.be/stops/103992", "https://data.delijn.be/stops/105392"], ["https://data.delijn.be/stops/409054", "https://data.delijn.be/stops/409210"], ["https://data.delijn.be/stops/506439", "https://data.delijn.be/stops/590334"], ["https://data.delijn.be/stops/302117", "https://data.delijn.be/stops/302118"], ["https://data.delijn.be/stops/504055", "https://data.delijn.be/stops/509149"], ["https://data.delijn.be/stops/507251", "https://data.delijn.be/stops/507252"], ["https://data.delijn.be/stops/502029", "https://data.delijn.be/stops/502037"], ["https://data.delijn.be/stops/208155", "https://data.delijn.be/stops/208157"], ["https://data.delijn.be/stops/304067", "https://data.delijn.be/stops/304068"], ["https://data.delijn.be/stops/504491", "https://data.delijn.be/stops/505311"], ["https://data.delijn.be/stops/201708", "https://data.delijn.be/stops/202443"], ["https://data.delijn.be/stops/302024", "https://data.delijn.be/stops/302046"], ["https://data.delijn.be/stops/206699", "https://data.delijn.be/stops/207734"], ["https://data.delijn.be/stops/503751", "https://data.delijn.be/stops/504260"], ["https://data.delijn.be/stops/503270", "https://data.delijn.be/stops/503272"], ["https://data.delijn.be/stops/202937", "https://data.delijn.be/stops/202938"], ["https://data.delijn.be/stops/410056", "https://data.delijn.be/stops/308175"], ["https://data.delijn.be/stops/108950", "https://data.delijn.be/stops/108955"], ["https://data.delijn.be/stops/404898", "https://data.delijn.be/stops/404949"], ["https://data.delijn.be/stops/207644", "https://data.delijn.be/stops/207645"], ["https://data.delijn.be/stops/302254", "https://data.delijn.be/stops/302255"], ["https://data.delijn.be/stops/303192", "https://data.delijn.be/stops/303193"], ["https://data.delijn.be/stops/202196", "https://data.delijn.be/stops/203199"], ["https://data.delijn.be/stops/503453", "https://data.delijn.be/stops/503458"], ["https://data.delijn.be/stops/200190", "https://data.delijn.be/stops/200401"], ["https://data.delijn.be/stops/304177", "https://data.delijn.be/stops/306097"], ["https://data.delijn.be/stops/206108", "https://data.delijn.be/stops/207910"], ["https://data.delijn.be/stops/502093", "https://data.delijn.be/stops/502099"], ["https://data.delijn.be/stops/208793", "https://data.delijn.be/stops/209787"], ["https://data.delijn.be/stops/301501", "https://data.delijn.be/stops/305654"], ["https://data.delijn.be/stops/204128", "https://data.delijn.be/stops/205123"], ["https://data.delijn.be/stops/203678", "https://data.delijn.be/stops/203695"], ["https://data.delijn.be/stops/107656", "https://data.delijn.be/stops/406770"], ["https://data.delijn.be/stops/101020", "https://data.delijn.be/stops/102075"], ["https://data.delijn.be/stops/302130", "https://data.delijn.be/stops/302142"], ["https://data.delijn.be/stops/505281", "https://data.delijn.be/stops/507736"], ["https://data.delijn.be/stops/408707", "https://data.delijn.be/stops/410090"], ["https://data.delijn.be/stops/408320", "https://data.delijn.be/stops/410159"], ["https://data.delijn.be/stops/505662", "https://data.delijn.be/stops/507502"], ["https://data.delijn.be/stops/505331", "https://data.delijn.be/stops/509727"], ["https://data.delijn.be/stops/101920", "https://data.delijn.be/stops/105760"], ["https://data.delijn.be/stops/402098", "https://data.delijn.be/stops/402158"], ["https://data.delijn.be/stops/106306", "https://data.delijn.be/stops/106308"], ["https://data.delijn.be/stops/205035", "https://data.delijn.be/stops/205036"], ["https://data.delijn.be/stops/201288", "https://data.delijn.be/stops/201289"], ["https://data.delijn.be/stops/104449", "https://data.delijn.be/stops/109918"], ["https://data.delijn.be/stops/203229", "https://data.delijn.be/stops/208857"], ["https://data.delijn.be/stops/109569", "https://data.delijn.be/stops/109588"], ["https://data.delijn.be/stops/405693", "https://data.delijn.be/stops/405932"], ["https://data.delijn.be/stops/206127", "https://data.delijn.be/stops/207650"], ["https://data.delijn.be/stops/208043", "https://data.delijn.be/stops/209220"], ["https://data.delijn.be/stops/301947", "https://data.delijn.be/stops/303293"], ["https://data.delijn.be/stops/203315", "https://data.delijn.be/stops/210067"], ["https://data.delijn.be/stops/300104", "https://data.delijn.be/stops/306849"], ["https://data.delijn.be/stops/202331", "https://data.delijn.be/stops/203331"], ["https://data.delijn.be/stops/300004", "https://data.delijn.be/stops/304299"], ["https://data.delijn.be/stops/200394", "https://data.delijn.be/stops/204804"], ["https://data.delijn.be/stops/402107", "https://data.delijn.be/stops/402298"], ["https://data.delijn.be/stops/105448", "https://data.delijn.be/stops/105450"], ["https://data.delijn.be/stops/502657", "https://data.delijn.be/stops/505508"], ["https://data.delijn.be/stops/402489", "https://data.delijn.be/stops/402490"], ["https://data.delijn.be/stops/503687", "https://data.delijn.be/stops/508687"], ["https://data.delijn.be/stops/206710", "https://data.delijn.be/stops/206740"], ["https://data.delijn.be/stops/401225", "https://data.delijn.be/stops/401256"], ["https://data.delijn.be/stops/206899", "https://data.delijn.be/stops/207899"], ["https://data.delijn.be/stops/105197", "https://data.delijn.be/stops/108883"], ["https://data.delijn.be/stops/306883", "https://data.delijn.be/stops/307007"], ["https://data.delijn.be/stops/302869", "https://data.delijn.be/stops/306097"], ["https://data.delijn.be/stops/405660", "https://data.delijn.be/stops/306282"], ["https://data.delijn.be/stops/208370", "https://data.delijn.be/stops/208371"], ["https://data.delijn.be/stops/504849", "https://data.delijn.be/stops/508729"], ["https://data.delijn.be/stops/208021", "https://data.delijn.be/stops/208025"], ["https://data.delijn.be/stops/501430", "https://data.delijn.be/stops/501672"], ["https://data.delijn.be/stops/202042", "https://data.delijn.be/stops/202537"], ["https://data.delijn.be/stops/218015", "https://data.delijn.be/stops/218016"], ["https://data.delijn.be/stops/202869", "https://data.delijn.be/stops/203878"], ["https://data.delijn.be/stops/503973", "https://data.delijn.be/stops/505385"], ["https://data.delijn.be/stops/208640", "https://data.delijn.be/stops/209640"], ["https://data.delijn.be/stops/405673", "https://data.delijn.be/stops/409496"], ["https://data.delijn.be/stops/301392", "https://data.delijn.be/stops/302417"], ["https://data.delijn.be/stops/104342", "https://data.delijn.be/stops/105911"], ["https://data.delijn.be/stops/403459", "https://data.delijn.be/stops/403678"], ["https://data.delijn.be/stops/501013", "https://data.delijn.be/stops/501534"], ["https://data.delijn.be/stops/502795", "https://data.delijn.be/stops/507168"], ["https://data.delijn.be/stops/508431", "https://data.delijn.be/stops/508441"], ["https://data.delijn.be/stops/302551", "https://data.delijn.be/stops/302556"], ["https://data.delijn.be/stops/504016", "https://data.delijn.be/stops/509507"], ["https://data.delijn.be/stops/208552", "https://data.delijn.be/stops/209549"], ["https://data.delijn.be/stops/508743", "https://data.delijn.be/stops/509001"], ["https://data.delijn.be/stops/302693", "https://data.delijn.be/stops/303612"], ["https://data.delijn.be/stops/201803", "https://data.delijn.be/stops/201811"], ["https://data.delijn.be/stops/402562", "https://data.delijn.be/stops/402566"], ["https://data.delijn.be/stops/400134", "https://data.delijn.be/stops/410221"], ["https://data.delijn.be/stops/201726", "https://data.delijn.be/stops/203978"], ["https://data.delijn.be/stops/208612", "https://data.delijn.be/stops/209613"], ["https://data.delijn.be/stops/503691", "https://data.delijn.be/stops/508396"], ["https://data.delijn.be/stops/207115", "https://data.delijn.be/stops/207118"], ["https://data.delijn.be/stops/101399", "https://data.delijn.be/stops/106531"], ["https://data.delijn.be/stops/501388", "https://data.delijn.be/stops/506390"], ["https://data.delijn.be/stops/106453", "https://data.delijn.be/stops/106455"], ["https://data.delijn.be/stops/200404", "https://data.delijn.be/stops/202983"], ["https://data.delijn.be/stops/206287", "https://data.delijn.be/stops/207287"], ["https://data.delijn.be/stops/302663", "https://data.delijn.be/stops/302674"], ["https://data.delijn.be/stops/101888", "https://data.delijn.be/stops/104949"], ["https://data.delijn.be/stops/201277", "https://data.delijn.be/stops/218935"], ["https://data.delijn.be/stops/302383", "https://data.delijn.be/stops/307841"], ["https://data.delijn.be/stops/400360", "https://data.delijn.be/stops/400366"], ["https://data.delijn.be/stops/101350", "https://data.delijn.be/stops/101930"], ["https://data.delijn.be/stops/503705", "https://data.delijn.be/stops/508445"], ["https://data.delijn.be/stops/400353", "https://data.delijn.be/stops/400368"], ["https://data.delijn.be/stops/101878", "https://data.delijn.be/stops/105694"], ["https://data.delijn.be/stops/502205", "https://data.delijn.be/stops/507194"], ["https://data.delijn.be/stops/502811", "https://data.delijn.be/stops/507506"], ["https://data.delijn.be/stops/102238", "https://data.delijn.be/stops/109748"], ["https://data.delijn.be/stops/504852", "https://data.delijn.be/stops/505838"], ["https://data.delijn.be/stops/104711", "https://data.delijn.be/stops/107343"], ["https://data.delijn.be/stops/204503", "https://data.delijn.be/stops/204822"], ["https://data.delijn.be/stops/109047", "https://data.delijn.be/stops/307947"], ["https://data.delijn.be/stops/103965", "https://data.delijn.be/stops/104480"], ["https://data.delijn.be/stops/203347", "https://data.delijn.be/stops/208710"], ["https://data.delijn.be/stops/102225", "https://data.delijn.be/stops/103880"], ["https://data.delijn.be/stops/103609", "https://data.delijn.be/stops/103612"], ["https://data.delijn.be/stops/206692", "https://data.delijn.be/stops/207190"], ["https://data.delijn.be/stops/303586", "https://data.delijn.be/stops/306396"], ["https://data.delijn.be/stops/504691", "https://data.delijn.be/stops/509219"], ["https://data.delijn.be/stops/206698", "https://data.delijn.be/stops/207699"], ["https://data.delijn.be/stops/502032", "https://data.delijn.be/stops/502052"], ["https://data.delijn.be/stops/101267", "https://data.delijn.be/stops/104685"], ["https://data.delijn.be/stops/208102", "https://data.delijn.be/stops/208491"], ["https://data.delijn.be/stops/103286", "https://data.delijn.be/stops/106126"], ["https://data.delijn.be/stops/300213", "https://data.delijn.be/stops/307130"], ["https://data.delijn.be/stops/503980", "https://data.delijn.be/stops/508980"], ["https://data.delijn.be/stops/507193", "https://data.delijn.be/stops/507202"], ["https://data.delijn.be/stops/109963", "https://data.delijn.be/stops/109965"], ["https://data.delijn.be/stops/304335", "https://data.delijn.be/stops/304707"], ["https://data.delijn.be/stops/201782", "https://data.delijn.be/stops/201816"], ["https://data.delijn.be/stops/303240", "https://data.delijn.be/stops/306678"], ["https://data.delijn.be/stops/501125", "https://data.delijn.be/stops/506230"], ["https://data.delijn.be/stops/206330", "https://data.delijn.be/stops/207329"], ["https://data.delijn.be/stops/303342", "https://data.delijn.be/stops/303343"], ["https://data.delijn.be/stops/208010", "https://data.delijn.be/stops/209011"], ["https://data.delijn.be/stops/501409", "https://data.delijn.be/stops/501736"], ["https://data.delijn.be/stops/405180", "https://data.delijn.be/stops/406725"], ["https://data.delijn.be/stops/102692", "https://data.delijn.be/stops/105020"], ["https://data.delijn.be/stops/304782", "https://data.delijn.be/stops/304794"], ["https://data.delijn.be/stops/201465", "https://data.delijn.be/stops/201737"], ["https://data.delijn.be/stops/103638", "https://data.delijn.be/stops/107171"], ["https://data.delijn.be/stops/204466", "https://data.delijn.be/stops/205466"], ["https://data.delijn.be/stops/305328", "https://data.delijn.be/stops/306091"], ["https://data.delijn.be/stops/304328", "https://data.delijn.be/stops/304329"], ["https://data.delijn.be/stops/301807", "https://data.delijn.be/stops/301808"], ["https://data.delijn.be/stops/506113", "https://data.delijn.be/stops/506142"], ["https://data.delijn.be/stops/208591", "https://data.delijn.be/stops/301408"], ["https://data.delijn.be/stops/300258", "https://data.delijn.be/stops/300273"], ["https://data.delijn.be/stops/407045", "https://data.delijn.be/stops/407047"], ["https://data.delijn.be/stops/102340", "https://data.delijn.be/stops/103665"], ["https://data.delijn.be/stops/105507", "https://data.delijn.be/stops/105509"], ["https://data.delijn.be/stops/504599", "https://data.delijn.be/stops/509599"], ["https://data.delijn.be/stops/304164", "https://data.delijn.be/stops/307536"], ["https://data.delijn.be/stops/103057", "https://data.delijn.be/stops/105031"], ["https://data.delijn.be/stops/404781", "https://data.delijn.be/stops/404786"], ["https://data.delijn.be/stops/203665", "https://data.delijn.be/stops/210080"], ["https://data.delijn.be/stops/403135", "https://data.delijn.be/stops/403352"], ["https://data.delijn.be/stops/300777", "https://data.delijn.be/stops/304569"], ["https://data.delijn.be/stops/205028", "https://data.delijn.be/stops/205029"], ["https://data.delijn.be/stops/500018", "https://data.delijn.be/stops/502466"], ["https://data.delijn.be/stops/104046", "https://data.delijn.be/stops/104048"], ["https://data.delijn.be/stops/407333", "https://data.delijn.be/stops/410165"], ["https://data.delijn.be/stops/104009", "https://data.delijn.be/stops/107216"], ["https://data.delijn.be/stops/507365", "https://data.delijn.be/stops/507679"], ["https://data.delijn.be/stops/502570", "https://data.delijn.be/stops/507919"], ["https://data.delijn.be/stops/104340", "https://data.delijn.be/stops/105445"], ["https://data.delijn.be/stops/307591", "https://data.delijn.be/stops/307592"], ["https://data.delijn.be/stops/308130", "https://data.delijn.be/stops/308131"], ["https://data.delijn.be/stops/505522", "https://data.delijn.be/stops/509894"], ["https://data.delijn.be/stops/507951", "https://data.delijn.be/stops/507958"], ["https://data.delijn.be/stops/409300", "https://data.delijn.be/stops/409301"], ["https://data.delijn.be/stops/101208", "https://data.delijn.be/stops/101209"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/506674"], ["https://data.delijn.be/stops/504004", "https://data.delijn.be/stops/509739"], ["https://data.delijn.be/stops/303562", "https://data.delijn.be/stops/308688"], ["https://data.delijn.be/stops/107215", "https://data.delijn.be/stops/107237"], ["https://data.delijn.be/stops/200368", "https://data.delijn.be/stops/201766"], ["https://data.delijn.be/stops/107015", "https://data.delijn.be/stops/108655"], ["https://data.delijn.be/stops/200702", "https://data.delijn.be/stops/200731"], ["https://data.delijn.be/stops/403493", "https://data.delijn.be/stops/403550"], ["https://data.delijn.be/stops/401967", "https://data.delijn.be/stops/408454"], ["https://data.delijn.be/stops/400311", "https://data.delijn.be/stops/400413"], ["https://data.delijn.be/stops/109062", "https://data.delijn.be/stops/307369"], ["https://data.delijn.be/stops/300387", "https://data.delijn.be/stops/308637"], ["https://data.delijn.be/stops/204395", "https://data.delijn.be/stops/205396"], ["https://data.delijn.be/stops/200236", "https://data.delijn.be/stops/211130"], ["https://data.delijn.be/stops/104030", "https://data.delijn.be/stops/104810"], ["https://data.delijn.be/stops/503962", "https://data.delijn.be/stops/508044"], ["https://data.delijn.be/stops/303723", "https://data.delijn.be/stops/303742"], ["https://data.delijn.be/stops/404286", "https://data.delijn.be/stops/407089"], ["https://data.delijn.be/stops/403086", "https://data.delijn.be/stops/410328"], ["https://data.delijn.be/stops/307820", "https://data.delijn.be/stops/307827"], ["https://data.delijn.be/stops/403417", "https://data.delijn.be/stops/403453"], ["https://data.delijn.be/stops/403596", "https://data.delijn.be/stops/403645"], ["https://data.delijn.be/stops/106753", "https://data.delijn.be/stops/106758"], ["https://data.delijn.be/stops/504402", "https://data.delijn.be/stops/509465"], ["https://data.delijn.be/stops/103290", "https://data.delijn.be/stops/104811"], ["https://data.delijn.be/stops/401420", "https://data.delijn.be/stops/401531"], ["https://data.delijn.be/stops/400241", "https://data.delijn.be/stops/405610"], ["https://data.delijn.be/stops/410289", "https://data.delijn.be/stops/410351"], ["https://data.delijn.be/stops/303977", "https://data.delijn.be/stops/305524"], ["https://data.delijn.be/stops/102242", "https://data.delijn.be/stops/105879"], ["https://data.delijn.be/stops/301452", "https://data.delijn.be/stops/302505"], ["https://data.delijn.be/stops/205250", "https://data.delijn.be/stops/205471"], ["https://data.delijn.be/stops/302256", "https://data.delijn.be/stops/302275"], ["https://data.delijn.be/stops/105979", "https://data.delijn.be/stops/105982"], ["https://data.delijn.be/stops/503476", "https://data.delijn.be/stops/508260"], ["https://data.delijn.be/stops/300459", "https://data.delijn.be/stops/307087"], ["https://data.delijn.be/stops/208517", "https://data.delijn.be/stops/209517"], ["https://data.delijn.be/stops/307093", "https://data.delijn.be/stops/307100"], ["https://data.delijn.be/stops/405155", "https://data.delijn.be/stops/405206"], ["https://data.delijn.be/stops/105713", "https://data.delijn.be/stops/106079"], ["https://data.delijn.be/stops/500029", "https://data.delijn.be/stops/508885"], ["https://data.delijn.be/stops/205740", "https://data.delijn.be/stops/205741"], ["https://data.delijn.be/stops/101746", "https://data.delijn.be/stops/106384"], ["https://data.delijn.be/stops/204524", "https://data.delijn.be/stops/205481"], ["https://data.delijn.be/stops/301192", "https://data.delijn.be/stops/301239"], ["https://data.delijn.be/stops/400302", "https://data.delijn.be/stops/400440"], ["https://data.delijn.be/stops/109201", "https://data.delijn.be/stops/109211"], ["https://data.delijn.be/stops/300747", "https://data.delijn.be/stops/300804"], ["https://data.delijn.be/stops/406881", "https://data.delijn.be/stops/409411"], ["https://data.delijn.be/stops/104049", "https://data.delijn.be/stops/104129"], ["https://data.delijn.be/stops/107969", "https://data.delijn.be/stops/108436"], ["https://data.delijn.be/stops/407822", "https://data.delijn.be/stops/407923"], ["https://data.delijn.be/stops/200430", "https://data.delijn.be/stops/200433"], ["https://data.delijn.be/stops/301811", "https://data.delijn.be/stops/305928"], ["https://data.delijn.be/stops/404946", "https://data.delijn.be/stops/404947"], ["https://data.delijn.be/stops/405055", "https://data.delijn.be/stops/408257"], ["https://data.delijn.be/stops/101661", "https://data.delijn.be/stops/204660"], ["https://data.delijn.be/stops/208023", "https://data.delijn.be/stops/209011"], ["https://data.delijn.be/stops/205635", "https://data.delijn.be/stops/205636"], ["https://data.delijn.be/stops/107030", "https://data.delijn.be/stops/107086"], ["https://data.delijn.be/stops/101787", "https://data.delijn.be/stops/109151"], ["https://data.delijn.be/stops/502318", "https://data.delijn.be/stops/505741"], ["https://data.delijn.be/stops/208397", "https://data.delijn.be/stops/209333"], ["https://data.delijn.be/stops/106616", "https://data.delijn.be/stops/106618"], ["https://data.delijn.be/stops/401137", "https://data.delijn.be/stops/403750"], ["https://data.delijn.be/stops/103789", "https://data.delijn.be/stops/109148"], ["https://data.delijn.be/stops/505047", "https://data.delijn.be/stops/506210"], ["https://data.delijn.be/stops/108613", "https://data.delijn.be/stops/108616"], ["https://data.delijn.be/stops/108378", "https://data.delijn.be/stops/108444"], ["https://data.delijn.be/stops/300746", "https://data.delijn.be/stops/300775"], ["https://data.delijn.be/stops/108875", "https://data.delijn.be/stops/109150"], ["https://data.delijn.be/stops/409681", "https://data.delijn.be/stops/409683"], ["https://data.delijn.be/stops/502755", "https://data.delijn.be/stops/507754"], ["https://data.delijn.be/stops/202746", "https://data.delijn.be/stops/207421"], ["https://data.delijn.be/stops/300777", "https://data.delijn.be/stops/300794"], ["https://data.delijn.be/stops/405791", "https://data.delijn.be/stops/409889"], ["https://data.delijn.be/stops/307097", "https://data.delijn.be/stops/307371"], ["https://data.delijn.be/stops/101311", "https://data.delijn.be/stops/102934"], ["https://data.delijn.be/stops/204761", "https://data.delijn.be/stops/214012"], ["https://data.delijn.be/stops/400508", "https://data.delijn.be/stops/404051"], ["https://data.delijn.be/stops/501433", "https://data.delijn.be/stops/506644"], ["https://data.delijn.be/stops/206412", "https://data.delijn.be/stops/207454"], ["https://data.delijn.be/stops/208069", "https://data.delijn.be/stops/209069"], ["https://data.delijn.be/stops/102591", "https://data.delijn.be/stops/109102"], ["https://data.delijn.be/stops/503118", "https://data.delijn.be/stops/503119"], ["https://data.delijn.be/stops/405364", "https://data.delijn.be/stops/405368"], ["https://data.delijn.be/stops/101883", "https://data.delijn.be/stops/101884"], ["https://data.delijn.be/stops/105580", "https://data.delijn.be/stops/105584"], ["https://data.delijn.be/stops/208057", "https://data.delijn.be/stops/208628"], ["https://data.delijn.be/stops/207669", "https://data.delijn.be/stops/209618"], ["https://data.delijn.be/stops/401664", "https://data.delijn.be/stops/402011"], ["https://data.delijn.be/stops/504332", "https://data.delijn.be/stops/504341"], ["https://data.delijn.be/stops/304991", "https://data.delijn.be/stops/305008"], ["https://data.delijn.be/stops/102614", "https://data.delijn.be/stops/102617"], ["https://data.delijn.be/stops/501045", "https://data.delijn.be/stops/507654"], ["https://data.delijn.be/stops/202988", "https://data.delijn.be/stops/203988"], ["https://data.delijn.be/stops/101531", "https://data.delijn.be/stops/102579"], ["https://data.delijn.be/stops/401217", "https://data.delijn.be/stops/401389"], ["https://data.delijn.be/stops/501088", "https://data.delijn.be/stops/501438"], ["https://data.delijn.be/stops/505547", "https://data.delijn.be/stops/505982"], ["https://data.delijn.be/stops/503335", "https://data.delijn.be/stops/508335"], ["https://data.delijn.be/stops/300322", "https://data.delijn.be/stops/306816"], ["https://data.delijn.be/stops/108107", "https://data.delijn.be/stops/108117"], ["https://data.delijn.be/stops/108293", "https://data.delijn.be/stops/109735"], ["https://data.delijn.be/stops/404919", "https://data.delijn.be/stops/404939"], ["https://data.delijn.be/stops/204520", "https://data.delijn.be/stops/205726"], ["https://data.delijn.be/stops/302425", "https://data.delijn.be/stops/302427"], ["https://data.delijn.be/stops/208339", "https://data.delijn.be/stops/219010"], ["https://data.delijn.be/stops/202296", "https://data.delijn.be/stops/203296"], ["https://data.delijn.be/stops/400164", "https://data.delijn.be/stops/400169"], ["https://data.delijn.be/stops/108439", "https://data.delijn.be/stops/109702"], ["https://data.delijn.be/stops/505349", "https://data.delijn.be/stops/507598"], ["https://data.delijn.be/stops/102700", "https://data.delijn.be/stops/103515"], ["https://data.delijn.be/stops/300992", "https://data.delijn.be/stops/300996"], ["https://data.delijn.be/stops/305197", "https://data.delijn.be/stops/305198"], ["https://data.delijn.be/stops/508817", "https://data.delijn.be/stops/508819"], ["https://data.delijn.be/stops/505988", "https://data.delijn.be/stops/509151"], ["https://data.delijn.be/stops/210012", "https://data.delijn.be/stops/211012"], ["https://data.delijn.be/stops/301185", "https://data.delijn.be/stops/301263"], ["https://data.delijn.be/stops/502138", "https://data.delijn.be/stops/507135"], ["https://data.delijn.be/stops/204105", "https://data.delijn.be/stops/205105"], ["https://data.delijn.be/stops/403225", "https://data.delijn.be/stops/403402"], ["https://data.delijn.be/stops/204450", "https://data.delijn.be/stops/214002"], ["https://data.delijn.be/stops/502745", "https://data.delijn.be/stops/505247"], ["https://data.delijn.be/stops/402172", "https://data.delijn.be/stops/410041"], ["https://data.delijn.be/stops/502575", "https://data.delijn.be/stops/507574"], ["https://data.delijn.be/stops/502151", "https://data.delijn.be/stops/502166"], ["https://data.delijn.be/stops/503046", "https://data.delijn.be/stops/508958"], ["https://data.delijn.be/stops/208610", "https://data.delijn.be/stops/209610"], ["https://data.delijn.be/stops/408836", "https://data.delijn.be/stops/408851"], ["https://data.delijn.be/stops/501462", "https://data.delijn.be/stops/505398"], ["https://data.delijn.be/stops/109264", "https://data.delijn.be/stops/109265"], ["https://data.delijn.be/stops/206101", "https://data.delijn.be/stops/207932"], ["https://data.delijn.be/stops/505636", "https://data.delijn.be/stops/505924"], ["https://data.delijn.be/stops/200370", "https://data.delijn.be/stops/201067"], ["https://data.delijn.be/stops/203814", "https://data.delijn.be/stops/205076"], ["https://data.delijn.be/stops/504645", "https://data.delijn.be/stops/509646"], ["https://data.delijn.be/stops/502017", "https://data.delijn.be/stops/507012"], ["https://data.delijn.be/stops/302239", "https://data.delijn.be/stops/302247"], ["https://data.delijn.be/stops/209056", "https://data.delijn.be/stops/209092"], ["https://data.delijn.be/stops/207258", "https://data.delijn.be/stops/207289"], ["https://data.delijn.be/stops/108683", "https://data.delijn.be/stops/108891"], ["https://data.delijn.be/stops/501091", "https://data.delijn.be/stops/505152"], ["https://data.delijn.be/stops/206450", "https://data.delijn.be/stops/207450"], ["https://data.delijn.be/stops/204018", "https://data.delijn.be/stops/205087"], ["https://data.delijn.be/stops/104892", "https://data.delijn.be/stops/109345"], ["https://data.delijn.be/stops/305739", "https://data.delijn.be/stops/305744"], ["https://data.delijn.be/stops/301028", "https://data.delijn.be/stops/301030"], ["https://data.delijn.be/stops/406118", "https://data.delijn.be/stops/410262"], ["https://data.delijn.be/stops/102293", "https://data.delijn.be/stops/308481"], ["https://data.delijn.be/stops/205721", "https://data.delijn.be/stops/214013"], ["https://data.delijn.be/stops/105825", "https://data.delijn.be/stops/109491"], ["https://data.delijn.be/stops/200494", "https://data.delijn.be/stops/200495"], ["https://data.delijn.be/stops/402527", "https://data.delijn.be/stops/402542"], ["https://data.delijn.be/stops/307634", "https://data.delijn.be/stops/307635"], ["https://data.delijn.be/stops/302858", "https://data.delijn.be/stops/302913"], ["https://data.delijn.be/stops/410152", "https://data.delijn.be/stops/300925"], ["https://data.delijn.be/stops/408076", "https://data.delijn.be/stops/305696"], ["https://data.delijn.be/stops/207489", "https://data.delijn.be/stops/207490"], ["https://data.delijn.be/stops/304335", "https://data.delijn.be/stops/304336"], ["https://data.delijn.be/stops/108651", "https://data.delijn.be/stops/108652"], ["https://data.delijn.be/stops/408628", "https://data.delijn.be/stops/408771"], ["https://data.delijn.be/stops/404874", "https://data.delijn.be/stops/404968"], ["https://data.delijn.be/stops/108261", "https://data.delijn.be/stops/108263"], ["https://data.delijn.be/stops/301809", "https://data.delijn.be/stops/304669"], ["https://data.delijn.be/stops/205985", "https://data.delijn.be/stops/206837"], ["https://data.delijn.be/stops/107089", "https://data.delijn.be/stops/108184"], ["https://data.delijn.be/stops/404513", "https://data.delijn.be/stops/408967"], ["https://data.delijn.be/stops/506663", "https://data.delijn.be/stops/506664"], ["https://data.delijn.be/stops/409530", "https://data.delijn.be/stops/410112"], ["https://data.delijn.be/stops/400501", "https://data.delijn.be/stops/400513"], ["https://data.delijn.be/stops/102858", "https://data.delijn.be/stops/204626"], ["https://data.delijn.be/stops/202326", "https://data.delijn.be/stops/203065"], ["https://data.delijn.be/stops/200143", "https://data.delijn.be/stops/211094"], ["https://data.delijn.be/stops/503342", "https://data.delijn.be/stops/508342"], ["https://data.delijn.be/stops/105129", "https://data.delijn.be/stops/105131"], ["https://data.delijn.be/stops/201601", "https://data.delijn.be/stops/203194"], ["https://data.delijn.be/stops/302944", "https://data.delijn.be/stops/303124"], ["https://data.delijn.be/stops/109930", "https://data.delijn.be/stops/109931"], ["https://data.delijn.be/stops/303154", "https://data.delijn.be/stops/305449"], ["https://data.delijn.be/stops/103290", "https://data.delijn.be/stops/107500"], ["https://data.delijn.be/stops/101925", "https://data.delijn.be/stops/105510"], ["https://data.delijn.be/stops/403912", "https://data.delijn.be/stops/403978"], ["https://data.delijn.be/stops/508047", "https://data.delijn.be/stops/508624"], ["https://data.delijn.be/stops/102412", "https://data.delijn.be/stops/104049"], ["https://data.delijn.be/stops/502584", "https://data.delijn.be/stops/502736"], ["https://data.delijn.be/stops/503376", "https://data.delijn.be/stops/508370"], ["https://data.delijn.be/stops/502603", "https://data.delijn.be/stops/507306"], ["https://data.delijn.be/stops/201777", "https://data.delijn.be/stops/201780"], ["https://data.delijn.be/stops/300315", "https://data.delijn.be/stops/301676"], ["https://data.delijn.be/stops/101061", "https://data.delijn.be/stops/106009"], ["https://data.delijn.be/stops/305550", "https://data.delijn.be/stops/308548"], ["https://data.delijn.be/stops/202396", "https://data.delijn.be/stops/202537"], ["https://data.delijn.be/stops/203156", "https://data.delijn.be/stops/203158"], ["https://data.delijn.be/stops/505036", "https://data.delijn.be/stops/505038"], ["https://data.delijn.be/stops/101384", "https://data.delijn.be/stops/101386"], ["https://data.delijn.be/stops/503318", "https://data.delijn.be/stops/503964"], ["https://data.delijn.be/stops/400123", "https://data.delijn.be/stops/400130"], ["https://data.delijn.be/stops/308100", "https://data.delijn.be/stops/308102"], ["https://data.delijn.be/stops/307642", "https://data.delijn.be/stops/307690"], ["https://data.delijn.be/stops/101926", "https://data.delijn.be/stops/107076"], ["https://data.delijn.be/stops/102631", "https://data.delijn.be/stops/108213"], ["https://data.delijn.be/stops/201413", "https://data.delijn.be/stops/201414"], ["https://data.delijn.be/stops/208405", "https://data.delijn.be/stops/208413"], ["https://data.delijn.be/stops/208016", "https://data.delijn.be/stops/208020"], ["https://data.delijn.be/stops/409642", "https://data.delijn.be/stops/410335"], ["https://data.delijn.be/stops/303026", "https://data.delijn.be/stops/303072"], ["https://data.delijn.be/stops/307068", "https://data.delijn.be/stops/307133"], ["https://data.delijn.be/stops/401887", "https://data.delijn.be/stops/401890"], ["https://data.delijn.be/stops/503570", "https://data.delijn.be/stops/503944"], ["https://data.delijn.be/stops/106918", "https://data.delijn.be/stops/107282"], ["https://data.delijn.be/stops/504303", "https://data.delijn.be/stops/504961"], ["https://data.delijn.be/stops/501617", "https://data.delijn.be/stops/506614"], ["https://data.delijn.be/stops/305186", "https://data.delijn.be/stops/306963"], ["https://data.delijn.be/stops/502414", "https://data.delijn.be/stops/507695"], ["https://data.delijn.be/stops/201355", "https://data.delijn.be/stops/209726"], ["https://data.delijn.be/stops/503224", "https://data.delijn.be/stops/508593"], ["https://data.delijn.be/stops/403901", "https://data.delijn.be/stops/404030"], ["https://data.delijn.be/stops/204743", "https://data.delijn.be/stops/205744"], ["https://data.delijn.be/stops/501461", "https://data.delijn.be/stops/506459"], ["https://data.delijn.be/stops/505675", "https://data.delijn.be/stops/507305"], ["https://data.delijn.be/stops/503233", "https://data.delijn.be/stops/503458"], ["https://data.delijn.be/stops/400248", "https://data.delijn.be/stops/400944"], ["https://data.delijn.be/stops/509377", "https://data.delijn.be/stops/509385"], ["https://data.delijn.be/stops/305920", "https://data.delijn.be/stops/306255"], ["https://data.delijn.be/stops/405201", "https://data.delijn.be/stops/405289"], ["https://data.delijn.be/stops/504007", "https://data.delijn.be/stops/509404"], ["https://data.delijn.be/stops/204322", "https://data.delijn.be/stops/205007"], ["https://data.delijn.be/stops/402942", "https://data.delijn.be/stops/402943"], ["https://data.delijn.be/stops/101261", "https://data.delijn.be/stops/101262"], ["https://data.delijn.be/stops/302037", "https://data.delijn.be/stops/304915"], ["https://data.delijn.be/stops/302394", "https://data.delijn.be/stops/307521"], ["https://data.delijn.be/stops/307103", "https://data.delijn.be/stops/307790"], ["https://data.delijn.be/stops/307109", "https://data.delijn.be/stops/308094"], ["https://data.delijn.be/stops/500602", "https://data.delijn.be/stops/501462"], ["https://data.delijn.be/stops/509448", "https://data.delijn.be/stops/509963"], ["https://data.delijn.be/stops/403960", "https://data.delijn.be/stops/405978"], ["https://data.delijn.be/stops/308550", "https://data.delijn.be/stops/308551"], ["https://data.delijn.be/stops/301807", "https://data.delijn.be/stops/307889"], ["https://data.delijn.be/stops/402337", "https://data.delijn.be/stops/402468"], ["https://data.delijn.be/stops/207196", "https://data.delijn.be/stops/207854"], ["https://data.delijn.be/stops/402300", "https://data.delijn.be/stops/402316"], ["https://data.delijn.be/stops/208613", "https://data.delijn.be/stops/209613"], ["https://data.delijn.be/stops/103488", "https://data.delijn.be/stops/109191"], ["https://data.delijn.be/stops/402895", "https://data.delijn.be/stops/402896"], ["https://data.delijn.be/stops/200891", "https://data.delijn.be/stops/502274"], ["https://data.delijn.be/stops/202795", "https://data.delijn.be/stops/202796"], ["https://data.delijn.be/stops/206472", "https://data.delijn.be/stops/207472"], ["https://data.delijn.be/stops/307420", "https://data.delijn.be/stops/307955"], ["https://data.delijn.be/stops/503986", "https://data.delijn.be/stops/508454"], ["https://data.delijn.be/stops/404990", "https://data.delijn.be/stops/404992"], ["https://data.delijn.be/stops/404178", "https://data.delijn.be/stops/404189"], ["https://data.delijn.be/stops/208548", "https://data.delijn.be/stops/209548"], ["https://data.delijn.be/stops/108348", "https://data.delijn.be/stops/108349"], ["https://data.delijn.be/stops/103503", "https://data.delijn.be/stops/109141"], ["https://data.delijn.be/stops/105253", "https://data.delijn.be/stops/105842"], ["https://data.delijn.be/stops/303151", "https://data.delijn.be/stops/303183"], ["https://data.delijn.be/stops/505046", "https://data.delijn.be/stops/509840"], ["https://data.delijn.be/stops/303292", "https://data.delijn.be/stops/306971"], ["https://data.delijn.be/stops/401359", "https://data.delijn.be/stops/406141"], ["https://data.delijn.be/stops/403241", "https://data.delijn.be/stops/403862"], ["https://data.delijn.be/stops/505898", "https://data.delijn.be/stops/509424"], ["https://data.delijn.be/stops/400136", "https://data.delijn.be/stops/400138"], ["https://data.delijn.be/stops/400966", "https://data.delijn.be/stops/406551"], ["https://data.delijn.be/stops/101988", "https://data.delijn.be/stops/102874"], ["https://data.delijn.be/stops/205145", "https://data.delijn.be/stops/205151"], ["https://data.delijn.be/stops/206447", "https://data.delijn.be/stops/207447"], ["https://data.delijn.be/stops/106466", "https://data.delijn.be/stops/108247"], ["https://data.delijn.be/stops/306289", "https://data.delijn.be/stops/306290"], ["https://data.delijn.be/stops/106216", "https://data.delijn.be/stops/106217"], ["https://data.delijn.be/stops/400030", "https://data.delijn.be/stops/400428"], ["https://data.delijn.be/stops/200464", "https://data.delijn.be/stops/205997"], ["https://data.delijn.be/stops/103003", "https://data.delijn.be/stops/105063"], ["https://data.delijn.be/stops/205981", "https://data.delijn.be/stops/208675"], ["https://data.delijn.be/stops/201002", "https://data.delijn.be/stops/211857"], ["https://data.delijn.be/stops/104107", "https://data.delijn.be/stops/108295"], ["https://data.delijn.be/stops/407230", "https://data.delijn.be/stops/407231"], ["https://data.delijn.be/stops/200907", "https://data.delijn.be/stops/202252"], ["https://data.delijn.be/stops/501694", "https://data.delijn.be/stops/502533"], ["https://data.delijn.be/stops/207959", "https://data.delijn.be/stops/306077"], ["https://data.delijn.be/stops/200147", "https://data.delijn.be/stops/201022"], ["https://data.delijn.be/stops/503153", "https://data.delijn.be/stops/505202"], ["https://data.delijn.be/stops/507372", "https://data.delijn.be/stops/507520"], ["https://data.delijn.be/stops/207674", "https://data.delijn.be/stops/208137"], ["https://data.delijn.be/stops/207547", "https://data.delijn.be/stops/209750"], ["https://data.delijn.be/stops/203766", "https://data.delijn.be/stops/203767"], ["https://data.delijn.be/stops/200460", "https://data.delijn.be/stops/200526"], ["https://data.delijn.be/stops/207870", "https://data.delijn.be/stops/208785"], ["https://data.delijn.be/stops/404316", "https://data.delijn.be/stops/404368"], ["https://data.delijn.be/stops/502247", "https://data.delijn.be/stops/507910"], ["https://data.delijn.be/stops/200593", "https://data.delijn.be/stops/200594"], ["https://data.delijn.be/stops/300478", "https://data.delijn.be/stops/300488"], ["https://data.delijn.be/stops/206203", "https://data.delijn.be/stops/207357"], ["https://data.delijn.be/stops/208483", "https://data.delijn.be/stops/208484"], ["https://data.delijn.be/stops/102943", "https://data.delijn.be/stops/105654"], ["https://data.delijn.be/stops/105648", "https://data.delijn.be/stops/105649"], ["https://data.delijn.be/stops/200416", "https://data.delijn.be/stops/201416"], ["https://data.delijn.be/stops/204532", "https://data.delijn.be/stops/205294"], ["https://data.delijn.be/stops/202050", "https://data.delijn.be/stops/203051"], ["https://data.delijn.be/stops/104898", "https://data.delijn.be/stops/107760"], ["https://data.delijn.be/stops/503586", "https://data.delijn.be/stops/505098"], ["https://data.delijn.be/stops/201695", "https://data.delijn.be/stops/202539"], ["https://data.delijn.be/stops/301514", "https://data.delijn.be/stops/308750"], ["https://data.delijn.be/stops/103288", "https://data.delijn.be/stops/109478"], ["https://data.delijn.be/stops/105121", "https://data.delijn.be/stops/305823"], ["https://data.delijn.be/stops/302698", "https://data.delijn.be/stops/302699"], ["https://data.delijn.be/stops/103681", "https://data.delijn.be/stops/107788"], ["https://data.delijn.be/stops/301644", "https://data.delijn.be/stops/301646"], ["https://data.delijn.be/stops/105277", "https://data.delijn.be/stops/105677"], ["https://data.delijn.be/stops/101196", "https://data.delijn.be/stops/101197"], ["https://data.delijn.be/stops/507385", "https://data.delijn.be/stops/507581"], ["https://data.delijn.be/stops/200165", "https://data.delijn.be/stops/203152"], ["https://data.delijn.be/stops/503540", "https://data.delijn.be/stops/503576"], ["https://data.delijn.be/stops/206887", "https://data.delijn.be/stops/207914"], ["https://data.delijn.be/stops/106467", "https://data.delijn.be/stops/107044"], ["https://data.delijn.be/stops/108937", "https://data.delijn.be/stops/109223"], ["https://data.delijn.be/stops/301486", "https://data.delijn.be/stops/301500"], ["https://data.delijn.be/stops/109000", "https://data.delijn.be/stops/408147"], ["https://data.delijn.be/stops/507261", "https://data.delijn.be/stops/509725"], ["https://data.delijn.be/stops/505578", "https://data.delijn.be/stops/508640"], ["https://data.delijn.be/stops/509611", "https://data.delijn.be/stops/509614"], ["https://data.delijn.be/stops/405891", "https://data.delijn.be/stops/407263"], ["https://data.delijn.be/stops/408714", "https://data.delijn.be/stops/408715"], ["https://data.delijn.be/stops/504803", "https://data.delijn.be/stops/504804"], ["https://data.delijn.be/stops/304406", "https://data.delijn.be/stops/306874"], ["https://data.delijn.be/stops/504519", "https://data.delijn.be/stops/504531"], ["https://data.delijn.be/stops/202078", "https://data.delijn.be/stops/203078"], ["https://data.delijn.be/stops/200918", "https://data.delijn.be/stops/202138"], ["https://data.delijn.be/stops/404881", "https://data.delijn.be/stops/404944"], ["https://data.delijn.be/stops/405908", "https://data.delijn.be/stops/405942"], ["https://data.delijn.be/stops/404254", "https://data.delijn.be/stops/404320"], ["https://data.delijn.be/stops/400450", "https://data.delijn.be/stops/404674"], ["https://data.delijn.be/stops/202679", "https://data.delijn.be/stops/202681"], ["https://data.delijn.be/stops/502100", "https://data.delijn.be/stops/502120"], ["https://data.delijn.be/stops/300950", "https://data.delijn.be/stops/305913"], ["https://data.delijn.be/stops/503944", "https://data.delijn.be/stops/508567"], ["https://data.delijn.be/stops/208642", "https://data.delijn.be/stops/209643"], ["https://data.delijn.be/stops/101835", "https://data.delijn.be/stops/101885"], ["https://data.delijn.be/stops/400474", "https://data.delijn.be/stops/400480"], ["https://data.delijn.be/stops/505742", "https://data.delijn.be/stops/507005"], ["https://data.delijn.be/stops/403310", "https://data.delijn.be/stops/403311"], ["https://data.delijn.be/stops/305598", "https://data.delijn.be/stops/306344"], ["https://data.delijn.be/stops/208967", "https://data.delijn.be/stops/209967"], ["https://data.delijn.be/stops/105696", "https://data.delijn.be/stops/106071"], ["https://data.delijn.be/stops/300472", "https://data.delijn.be/stops/308063"], ["https://data.delijn.be/stops/502193", "https://data.delijn.be/stops/504847"], ["https://data.delijn.be/stops/503358", "https://data.delijn.be/stops/505137"], ["https://data.delijn.be/stops/102290", "https://data.delijn.be/stops/107465"], ["https://data.delijn.be/stops/202716", "https://data.delijn.be/stops/203716"], ["https://data.delijn.be/stops/206228", "https://data.delijn.be/stops/207226"], ["https://data.delijn.be/stops/204515", "https://data.delijn.be/stops/204516"], ["https://data.delijn.be/stops/102514", "https://data.delijn.be/stops/102516"], ["https://data.delijn.be/stops/406806", "https://data.delijn.be/stops/407914"], ["https://data.delijn.be/stops/109914", "https://data.delijn.be/stops/109917"], ["https://data.delijn.be/stops/205318", "https://data.delijn.be/stops/205362"], ["https://data.delijn.be/stops/307320", "https://data.delijn.be/stops/307321"], ["https://data.delijn.be/stops/401676", "https://data.delijn.be/stops/401679"], ["https://data.delijn.be/stops/106591", "https://data.delijn.be/stops/107247"], ["https://data.delijn.be/stops/200827", "https://data.delijn.be/stops/200828"], ["https://data.delijn.be/stops/404224", "https://data.delijn.be/stops/404225"], ["https://data.delijn.be/stops/102477", "https://data.delijn.be/stops/400295"], ["https://data.delijn.be/stops/101445", "https://data.delijn.be/stops/101450"], ["https://data.delijn.be/stops/101342", "https://data.delijn.be/stops/108109"], ["https://data.delijn.be/stops/501641", "https://data.delijn.be/stops/506383"], ["https://data.delijn.be/stops/303994", "https://data.delijn.be/stops/307019"], ["https://data.delijn.be/stops/506089", "https://data.delijn.be/stops/509811"], ["https://data.delijn.be/stops/301352", "https://data.delijn.be/stops/306127"], ["https://data.delijn.be/stops/305657", "https://data.delijn.be/stops/307103"], ["https://data.delijn.be/stops/503192", "https://data.delijn.be/stops/508193"], ["https://data.delijn.be/stops/201230", "https://data.delijn.be/stops/202354"], ["https://data.delijn.be/stops/302220", "https://data.delijn.be/stops/302242"], ["https://data.delijn.be/stops/505257", "https://data.delijn.be/stops/508671"], ["https://data.delijn.be/stops/405588", "https://data.delijn.be/stops/405589"], ["https://data.delijn.be/stops/400136", "https://data.delijn.be/stops/409164"], ["https://data.delijn.be/stops/101418", "https://data.delijn.be/stops/108714"], ["https://data.delijn.be/stops/302950", "https://data.delijn.be/stops/303000"], ["https://data.delijn.be/stops/108684", "https://data.delijn.be/stops/108829"], ["https://data.delijn.be/stops/503484", "https://data.delijn.be/stops/508484"], ["https://data.delijn.be/stops/401553", "https://data.delijn.be/stops/402036"], ["https://data.delijn.be/stops/408919", "https://data.delijn.be/stops/408924"], ["https://data.delijn.be/stops/306805", "https://data.delijn.be/stops/306806"], ["https://data.delijn.be/stops/202266", "https://data.delijn.be/stops/203265"], ["https://data.delijn.be/stops/402418", "https://data.delijn.be/stops/402429"], ["https://data.delijn.be/stops/503999", "https://data.delijn.be/stops/508561"], ["https://data.delijn.be/stops/105803", "https://data.delijn.be/stops/305787"], ["https://data.delijn.be/stops/306608", "https://data.delijn.be/stops/306609"], ["https://data.delijn.be/stops/302963", "https://data.delijn.be/stops/302964"], ["https://data.delijn.be/stops/207445", "https://data.delijn.be/stops/209515"], ["https://data.delijn.be/stops/207411", "https://data.delijn.be/stops/207650"], ["https://data.delijn.be/stops/401763", "https://data.delijn.be/stops/401768"], ["https://data.delijn.be/stops/202570", "https://data.delijn.be/stops/202684"], ["https://data.delijn.be/stops/503635", "https://data.delijn.be/stops/509971"], ["https://data.delijn.be/stops/300181", "https://data.delijn.be/stops/300226"], ["https://data.delijn.be/stops/106204", "https://data.delijn.be/stops/106206"], ["https://data.delijn.be/stops/404478", "https://data.delijn.be/stops/406766"], ["https://data.delijn.be/stops/207341", "https://data.delijn.be/stops/207716"], ["https://data.delijn.be/stops/106088", "https://data.delijn.be/stops/108473"], ["https://data.delijn.be/stops/206142", "https://data.delijn.be/stops/206722"], ["https://data.delijn.be/stops/508184", "https://data.delijn.be/stops/508206"], ["https://data.delijn.be/stops/501690", "https://data.delijn.be/stops/506690"], ["https://data.delijn.be/stops/201805", "https://data.delijn.be/stops/208261"], ["https://data.delijn.be/stops/101440", "https://data.delijn.be/stops/103209"], ["https://data.delijn.be/stops/201780", "https://data.delijn.be/stops/209247"], ["https://data.delijn.be/stops/405261", "https://data.delijn.be/stops/405278"], ["https://data.delijn.be/stops/101904", "https://data.delijn.be/stops/105720"], ["https://data.delijn.be/stops/104082", "https://data.delijn.be/stops/105895"], ["https://data.delijn.be/stops/104972", "https://data.delijn.be/stops/109110"], ["https://data.delijn.be/stops/305923", "https://data.delijn.be/stops/305924"], ["https://data.delijn.be/stops/103258", "https://data.delijn.be/stops/103306"], ["https://data.delijn.be/stops/409500", "https://data.delijn.be/stops/409502"], ["https://data.delijn.be/stops/205639", "https://data.delijn.be/stops/205640"], ["https://data.delijn.be/stops/504473", "https://data.delijn.be/stops/509446"], ["https://data.delijn.be/stops/105373", "https://data.delijn.be/stops/305785"], ["https://data.delijn.be/stops/403197", "https://data.delijn.be/stops/403198"], ["https://data.delijn.be/stops/300128", "https://data.delijn.be/stops/300148"], ["https://data.delijn.be/stops/101084", "https://data.delijn.be/stops/101087"], ["https://data.delijn.be/stops/208008", "https://data.delijn.be/stops/209008"], ["https://data.delijn.be/stops/305596", "https://data.delijn.be/stops/306268"], ["https://data.delijn.be/stops/402340", "https://data.delijn.be/stops/410149"], ["https://data.delijn.be/stops/505648", "https://data.delijn.be/stops/507472"], ["https://data.delijn.be/stops/302520", "https://data.delijn.be/stops/302524"], ["https://data.delijn.be/stops/301029", "https://data.delijn.be/stops/308819"], ["https://data.delijn.be/stops/206776", "https://data.delijn.be/stops/208487"], ["https://data.delijn.be/stops/200770", "https://data.delijn.be/stops/508011"], ["https://data.delijn.be/stops/102373", "https://data.delijn.be/stops/102892"], ["https://data.delijn.be/stops/106111", "https://data.delijn.be/stops/106112"], ["https://data.delijn.be/stops/402454", "https://data.delijn.be/stops/402455"], ["https://data.delijn.be/stops/301586", "https://data.delijn.be/stops/301587"], ["https://data.delijn.be/stops/202296", "https://data.delijn.be/stops/202297"], ["https://data.delijn.be/stops/302302", "https://data.delijn.be/stops/302303"], ["https://data.delijn.be/stops/105034", "https://data.delijn.be/stops/105064"], ["https://data.delijn.be/stops/408310", "https://data.delijn.be/stops/408380"], ["https://data.delijn.be/stops/508659", "https://data.delijn.be/stops/509943"], ["https://data.delijn.be/stops/303469", "https://data.delijn.be/stops/303470"], ["https://data.delijn.be/stops/103116", "https://data.delijn.be/stops/103117"], ["https://data.delijn.be/stops/202391", "https://data.delijn.be/stops/203390"], ["https://data.delijn.be/stops/403394", "https://data.delijn.be/stops/410117"], ["https://data.delijn.be/stops/300835", "https://data.delijn.be/stops/302285"], ["https://data.delijn.be/stops/509593", "https://data.delijn.be/stops/509596"], ["https://data.delijn.be/stops/400056", "https://data.delijn.be/stops/400101"], ["https://data.delijn.be/stops/219080", "https://data.delijn.be/stops/303290"], ["https://data.delijn.be/stops/305298", "https://data.delijn.be/stops/305299"], ["https://data.delijn.be/stops/501593", "https://data.delijn.be/stops/509061"], ["https://data.delijn.be/stops/504612", "https://data.delijn.be/stops/509080"], ["https://data.delijn.be/stops/104676", "https://data.delijn.be/stops/104677"], ["https://data.delijn.be/stops/308264", "https://data.delijn.be/stops/308266"], ["https://data.delijn.be/stops/209166", "https://data.delijn.be/stops/209167"], ["https://data.delijn.be/stops/503735", "https://data.delijn.be/stops/508266"], ["https://data.delijn.be/stops/303629", "https://data.delijn.be/stops/306003"], ["https://data.delijn.be/stops/101978", "https://data.delijn.be/stops/109654"], ["https://data.delijn.be/stops/201390", "https://data.delijn.be/stops/202651"], ["https://data.delijn.be/stops/307276", "https://data.delijn.be/stops/307333"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/504296"], ["https://data.delijn.be/stops/300606", "https://data.delijn.be/stops/300607"], ["https://data.delijn.be/stops/303548", "https://data.delijn.be/stops/304316"], ["https://data.delijn.be/stops/305538", "https://data.delijn.be/stops/305583"], ["https://data.delijn.be/stops/503491", "https://data.delijn.be/stops/508491"], ["https://data.delijn.be/stops/104256", "https://data.delijn.be/stops/108865"], ["https://data.delijn.be/stops/509812", "https://data.delijn.be/stops/509825"], ["https://data.delijn.be/stops/203323", "https://data.delijn.be/stops/208640"], ["https://data.delijn.be/stops/406252", "https://data.delijn.be/stops/406254"], ["https://data.delijn.be/stops/302295", "https://data.delijn.be/stops/303495"], ["https://data.delijn.be/stops/400616", "https://data.delijn.be/stops/408229"], ["https://data.delijn.be/stops/504496", "https://data.delijn.be/stops/509496"], ["https://data.delijn.be/stops/304239", "https://data.delijn.be/stops/304522"], ["https://data.delijn.be/stops/204751", "https://data.delijn.be/stops/205751"], ["https://data.delijn.be/stops/303680", "https://data.delijn.be/stops/304022"], ["https://data.delijn.be/stops/302535", "https://data.delijn.be/stops/302536"], ["https://data.delijn.be/stops/300558", "https://data.delijn.be/stops/307863"], ["https://data.delijn.be/stops/104818", "https://data.delijn.be/stops/109097"], ["https://data.delijn.be/stops/509086", "https://data.delijn.be/stops/509091"], ["https://data.delijn.be/stops/101548", "https://data.delijn.be/stops/101549"], ["https://data.delijn.be/stops/303107", "https://data.delijn.be/stops/303108"], ["https://data.delijn.be/stops/105841", "https://data.delijn.be/stops/105842"], ["https://data.delijn.be/stops/102637", "https://data.delijn.be/stops/107857"], ["https://data.delijn.be/stops/301428", "https://data.delijn.be/stops/307318"], ["https://data.delijn.be/stops/208187", "https://data.delijn.be/stops/209192"], ["https://data.delijn.be/stops/406722", "https://data.delijn.be/stops/408642"], ["https://data.delijn.be/stops/302889", "https://data.delijn.be/stops/302890"], ["https://data.delijn.be/stops/101272", "https://data.delijn.be/stops/101273"], ["https://data.delijn.be/stops/206704", "https://data.delijn.be/stops/207992"], ["https://data.delijn.be/stops/406571", "https://data.delijn.be/stops/410202"], ["https://data.delijn.be/stops/504306", "https://data.delijn.be/stops/509220"], ["https://data.delijn.be/stops/501157", "https://data.delijn.be/stops/501165"], ["https://data.delijn.be/stops/200819", "https://data.delijn.be/stops/200847"], ["https://data.delijn.be/stops/406168", "https://data.delijn.be/stops/406818"], ["https://data.delijn.be/stops/103376", "https://data.delijn.be/stops/109852"], ["https://data.delijn.be/stops/404748", "https://data.delijn.be/stops/404749"], ["https://data.delijn.be/stops/201457", "https://data.delijn.be/stops/201661"], ["https://data.delijn.be/stops/506076", "https://data.delijn.be/stops/506778"], ["https://data.delijn.be/stops/200725", "https://data.delijn.be/stops/202612"], ["https://data.delijn.be/stops/107927", "https://data.delijn.be/stops/205799"], ["https://data.delijn.be/stops/401364", "https://data.delijn.be/stops/406356"], ["https://data.delijn.be/stops/204086", "https://data.delijn.be/stops/205085"], ["https://data.delijn.be/stops/109968", "https://data.delijn.be/stops/109972"], ["https://data.delijn.be/stops/201903", "https://data.delijn.be/stops/202473"], ["https://data.delijn.be/stops/101617", "https://data.delijn.be/stops/106573"], ["https://data.delijn.be/stops/407396", "https://data.delijn.be/stops/407397"], ["https://data.delijn.be/stops/501374", "https://data.delijn.be/stops/506374"], ["https://data.delijn.be/stops/402652", "https://data.delijn.be/stops/402653"], ["https://data.delijn.be/stops/409705", "https://data.delijn.be/stops/409707"], ["https://data.delijn.be/stops/202849", "https://data.delijn.be/stops/203735"], ["https://data.delijn.be/stops/304493", "https://data.delijn.be/stops/304503"], ["https://data.delijn.be/stops/406978", "https://data.delijn.be/stops/409485"], ["https://data.delijn.be/stops/102770", "https://data.delijn.be/stops/102775"], ["https://data.delijn.be/stops/501769", "https://data.delijn.be/stops/505438"], ["https://data.delijn.be/stops/408805", "https://data.delijn.be/stops/408806"], ["https://data.delijn.be/stops/406729", "https://data.delijn.be/stops/407321"], ["https://data.delijn.be/stops/101826", "https://data.delijn.be/stops/103138"], ["https://data.delijn.be/stops/106618", "https://data.delijn.be/stops/106619"], ["https://data.delijn.be/stops/108870", "https://data.delijn.be/stops/109145"], ["https://data.delijn.be/stops/405177", "https://data.delijn.be/stops/405206"], ["https://data.delijn.be/stops/204767", "https://data.delijn.be/stops/205443"], ["https://data.delijn.be/stops/107902", "https://data.delijn.be/stops/108948"], ["https://data.delijn.be/stops/200923", "https://data.delijn.be/stops/201858"], ["https://data.delijn.be/stops/301376", "https://data.delijn.be/stops/301392"], ["https://data.delijn.be/stops/400276", "https://data.delijn.be/stops/400387"], ["https://data.delijn.be/stops/301549", "https://data.delijn.be/stops/301559"], ["https://data.delijn.be/stops/205184", "https://data.delijn.be/stops/205382"], ["https://data.delijn.be/stops/304248", "https://data.delijn.be/stops/304300"], ["https://data.delijn.be/stops/101534", "https://data.delijn.be/stops/109502"], ["https://data.delijn.be/stops/104352", "https://data.delijn.be/stops/108565"], ["https://data.delijn.be/stops/307526", "https://data.delijn.be/stops/307528"], ["https://data.delijn.be/stops/406739", "https://data.delijn.be/stops/407481"], ["https://data.delijn.be/stops/206263", "https://data.delijn.be/stops/207263"], ["https://data.delijn.be/stops/408264", "https://data.delijn.be/stops/408412"], ["https://data.delijn.be/stops/302272", "https://data.delijn.be/stops/302273"], ["https://data.delijn.be/stops/304794", "https://data.delijn.be/stops/304800"], ["https://data.delijn.be/stops/205920", "https://data.delijn.be/stops/210026"], ["https://data.delijn.be/stops/108088", "https://data.delijn.be/stops/108687"], ["https://data.delijn.be/stops/403427", "https://data.delijn.be/stops/410291"], ["https://data.delijn.be/stops/204446", "https://data.delijn.be/stops/205337"], ["https://data.delijn.be/stops/302325", "https://data.delijn.be/stops/302956"], ["https://data.delijn.be/stops/407800", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/402135", "https://data.delijn.be/stops/402136"], ["https://data.delijn.be/stops/302570", "https://data.delijn.be/stops/303299"], ["https://data.delijn.be/stops/501760", "https://data.delijn.be/stops/506179"], ["https://data.delijn.be/stops/400201", "https://data.delijn.be/stops/400209"], ["https://data.delijn.be/stops/402515", "https://data.delijn.be/stops/402517"], ["https://data.delijn.be/stops/305911", "https://data.delijn.be/stops/305912"], ["https://data.delijn.be/stops/400396", "https://data.delijn.be/stops/400397"], ["https://data.delijn.be/stops/501009", "https://data.delijn.be/stops/501022"], ["https://data.delijn.be/stops/507394", "https://data.delijn.be/stops/507408"], ["https://data.delijn.be/stops/404166", "https://data.delijn.be/stops/404177"], ["https://data.delijn.be/stops/101878", "https://data.delijn.be/stops/106077"], ["https://data.delijn.be/stops/108608", "https://data.delijn.be/stops/307348"], ["https://data.delijn.be/stops/204320", "https://data.delijn.be/stops/205321"], ["https://data.delijn.be/stops/207212", "https://data.delijn.be/stops/207814"], ["https://data.delijn.be/stops/403057", "https://data.delijn.be/stops/403162"], ["https://data.delijn.be/stops/207843", "https://data.delijn.be/stops/207844"], ["https://data.delijn.be/stops/301124", "https://data.delijn.be/stops/301208"], ["https://data.delijn.be/stops/109964", "https://data.delijn.be/stops/109965"], ["https://data.delijn.be/stops/503846", "https://data.delijn.be/stops/508856"], ["https://data.delijn.be/stops/507329", "https://data.delijn.be/stops/507338"], ["https://data.delijn.be/stops/406165", "https://data.delijn.be/stops/409396"], ["https://data.delijn.be/stops/401080", "https://data.delijn.be/stops/401084"], ["https://data.delijn.be/stops/504614", "https://data.delijn.be/stops/509615"], ["https://data.delijn.be/stops/204332", "https://data.delijn.be/stops/204821"], ["https://data.delijn.be/stops/504892", "https://data.delijn.be/stops/505091"], ["https://data.delijn.be/stops/304099", "https://data.delijn.be/stops/304118"], ["https://data.delijn.be/stops/502129", "https://data.delijn.be/stops/502147"], ["https://data.delijn.be/stops/301641", "https://data.delijn.be/stops/306154"], ["https://data.delijn.be/stops/108409", "https://data.delijn.be/stops/108413"], ["https://data.delijn.be/stops/205000", "https://data.delijn.be/stops/207378"], ["https://data.delijn.be/stops/204052", "https://data.delijn.be/stops/205052"], ["https://data.delijn.be/stops/307713", "https://data.delijn.be/stops/307716"], ["https://data.delijn.be/stops/405246", "https://data.delijn.be/stops/405254"], ["https://data.delijn.be/stops/400345", "https://data.delijn.be/stops/400437"], ["https://data.delijn.be/stops/200594", "https://data.delijn.be/stops/200598"], ["https://data.delijn.be/stops/201708", "https://data.delijn.be/stops/201709"], ["https://data.delijn.be/stops/403595", "https://data.delijn.be/stops/404317"], ["https://data.delijn.be/stops/507397", "https://data.delijn.be/stops/507412"], ["https://data.delijn.be/stops/402551", "https://data.delijn.be/stops/408446"], ["https://data.delijn.be/stops/200073", "https://data.delijn.be/stops/202353"], ["https://data.delijn.be/stops/407824", "https://data.delijn.be/stops/407919"], ["https://data.delijn.be/stops/300201", "https://data.delijn.be/stops/302202"], ["https://data.delijn.be/stops/501066", "https://data.delijn.be/stops/501506"], ["https://data.delijn.be/stops/300029", "https://data.delijn.be/stops/306797"], ["https://data.delijn.be/stops/303618", "https://data.delijn.be/stops/306705"], ["https://data.delijn.be/stops/101664", "https://data.delijn.be/stops/106481"], ["https://data.delijn.be/stops/105018", "https://data.delijn.be/stops/105829"], ["https://data.delijn.be/stops/307068", "https://data.delijn.be/stops/308739"], ["https://data.delijn.be/stops/204047", "https://data.delijn.be/stops/205519"], ["https://data.delijn.be/stops/106459", "https://data.delijn.be/stops/107036"], ["https://data.delijn.be/stops/200718", "https://data.delijn.be/stops/214003"], ["https://data.delijn.be/stops/101969", "https://data.delijn.be/stops/109302"], ["https://data.delijn.be/stops/402191", "https://data.delijn.be/stops/402497"], ["https://data.delijn.be/stops/206474", "https://data.delijn.be/stops/207477"], ["https://data.delijn.be/stops/401946", "https://data.delijn.be/stops/405825"], ["https://data.delijn.be/stops/208377", "https://data.delijn.be/stops/208378"], ["https://data.delijn.be/stops/502005", "https://data.delijn.be/stops/505328"], ["https://data.delijn.be/stops/201885", "https://data.delijn.be/stops/203214"], ["https://data.delijn.be/stops/403332", "https://data.delijn.be/stops/403333"], ["https://data.delijn.be/stops/307466", "https://data.delijn.be/stops/307467"], ["https://data.delijn.be/stops/201694", "https://data.delijn.be/stops/202032"], ["https://data.delijn.be/stops/504214", "https://data.delijn.be/stops/504223"], ["https://data.delijn.be/stops/501262", "https://data.delijn.be/stops/501326"], ["https://data.delijn.be/stops/306660", "https://data.delijn.be/stops/306661"], ["https://data.delijn.be/stops/501084", "https://data.delijn.be/stops/506059"], ["https://data.delijn.be/stops/502467", "https://data.delijn.be/stops/502473"], ["https://data.delijn.be/stops/401417", "https://data.delijn.be/stops/304535"], ["https://data.delijn.be/stops/305733", "https://data.delijn.be/stops/305736"], ["https://data.delijn.be/stops/506176", "https://data.delijn.be/stops/506182"], ["https://data.delijn.be/stops/202273", "https://data.delijn.be/stops/202669"], ["https://data.delijn.be/stops/204718", "https://data.delijn.be/stops/205213"], ["https://data.delijn.be/stops/407841", "https://data.delijn.be/stops/407991"], ["https://data.delijn.be/stops/201617", "https://data.delijn.be/stops/203923"], ["https://data.delijn.be/stops/400571", "https://data.delijn.be/stops/404059"], ["https://data.delijn.be/stops/405445", "https://data.delijn.be/stops/408543"], ["https://data.delijn.be/stops/202125", "https://data.delijn.be/stops/210050"], ["https://data.delijn.be/stops/501376", "https://data.delijn.be/stops/505354"], ["https://data.delijn.be/stops/300222", "https://data.delijn.be/stops/302153"], ["https://data.delijn.be/stops/302422", "https://data.delijn.be/stops/302437"], ["https://data.delijn.be/stops/102880", "https://data.delijn.be/stops/104667"], ["https://data.delijn.be/stops/300232", "https://data.delijn.be/stops/300239"], ["https://data.delijn.be/stops/502226", "https://data.delijn.be/stops/505720"], ["https://data.delijn.be/stops/204126", "https://data.delijn.be/stops/205121"], ["https://data.delijn.be/stops/300634", "https://data.delijn.be/stops/306629"], ["https://data.delijn.be/stops/406196", "https://data.delijn.be/stops/406818"], ["https://data.delijn.be/stops/408354", "https://data.delijn.be/stops/408370"], ["https://data.delijn.be/stops/404805", "https://data.delijn.be/stops/404834"], ["https://data.delijn.be/stops/104353", "https://data.delijn.be/stops/104882"], ["https://data.delijn.be/stops/200563", "https://data.delijn.be/stops/200665"], ["https://data.delijn.be/stops/305012", "https://data.delijn.be/stops/305032"], ["https://data.delijn.be/stops/304283", "https://data.delijn.be/stops/308768"], ["https://data.delijn.be/stops/305222", "https://data.delijn.be/stops/305268"], ["https://data.delijn.be/stops/103233", "https://data.delijn.be/stops/107143"], ["https://data.delijn.be/stops/407640", "https://data.delijn.be/stops/407763"], ["https://data.delijn.be/stops/303106", "https://data.delijn.be/stops/303999"], ["https://data.delijn.be/stops/506070", "https://data.delijn.be/stops/506507"], ["https://data.delijn.be/stops/209344", "https://data.delijn.be/stops/209345"], ["https://data.delijn.be/stops/300482", "https://data.delijn.be/stops/300485"], ["https://data.delijn.be/stops/106345", "https://data.delijn.be/stops/109633"], ["https://data.delijn.be/stops/203109", "https://data.delijn.be/stops/205587"], ["https://data.delijn.be/stops/303452", "https://data.delijn.be/stops/307061"], ["https://data.delijn.be/stops/300359", "https://data.delijn.be/stops/304714"], ["https://data.delijn.be/stops/500603", "https://data.delijn.be/stops/501547"], ["https://data.delijn.be/stops/109177", "https://data.delijn.be/stops/109228"], ["https://data.delijn.be/stops/206466", "https://data.delijn.be/stops/206467"], ["https://data.delijn.be/stops/400097", "https://data.delijn.be/stops/401967"], ["https://data.delijn.be/stops/402977", "https://data.delijn.be/stops/404699"], ["https://data.delijn.be/stops/502346", "https://data.delijn.be/stops/505240"], ["https://data.delijn.be/stops/105575", "https://data.delijn.be/stops/105590"], ["https://data.delijn.be/stops/200355", "https://data.delijn.be/stops/211106"], ["https://data.delijn.be/stops/208691", "https://data.delijn.be/stops/208697"], ["https://data.delijn.be/stops/301701", "https://data.delijn.be/stops/307258"], ["https://data.delijn.be/stops/101877", "https://data.delijn.be/stops/109516"], ["https://data.delijn.be/stops/302568", "https://data.delijn.be/stops/308119"], ["https://data.delijn.be/stops/502653", "https://data.delijn.be/stops/507665"], ["https://data.delijn.be/stops/206606", "https://data.delijn.be/stops/206667"], ["https://data.delijn.be/stops/202796", "https://data.delijn.be/stops/202797"], ["https://data.delijn.be/stops/300447", "https://data.delijn.be/stops/300448"], ["https://data.delijn.be/stops/106333", "https://data.delijn.be/stops/109390"], ["https://data.delijn.be/stops/303229", "https://data.delijn.be/stops/304660"], ["https://data.delijn.be/stops/509332", "https://data.delijn.be/stops/509338"], ["https://data.delijn.be/stops/502089", "https://data.delijn.be/stops/502134"], ["https://data.delijn.be/stops/408018", "https://data.delijn.be/stops/408043"], ["https://data.delijn.be/stops/300512", "https://data.delijn.be/stops/300534"], ["https://data.delijn.be/stops/108339", "https://data.delijn.be/stops/109301"], ["https://data.delijn.be/stops/303059", "https://data.delijn.be/stops/303146"], ["https://data.delijn.be/stops/505841", "https://data.delijn.be/stops/509351"], ["https://data.delijn.be/stops/306704", "https://data.delijn.be/stops/307939"], ["https://data.delijn.be/stops/209266", "https://data.delijn.be/stops/209267"], ["https://data.delijn.be/stops/304391", "https://data.delijn.be/stops/304392"], ["https://data.delijn.be/stops/105180", "https://data.delijn.be/stops/105185"], ["https://data.delijn.be/stops/403833", "https://data.delijn.be/stops/405635"], ["https://data.delijn.be/stops/101847", "https://data.delijn.be/stops/106803"], ["https://data.delijn.be/stops/104666", "https://data.delijn.be/stops/104668"], ["https://data.delijn.be/stops/505931", "https://data.delijn.be/stops/505933"], ["https://data.delijn.be/stops/503295", "https://data.delijn.be/stops/505283"], ["https://data.delijn.be/stops/201399", "https://data.delijn.be/stops/202360"], ["https://data.delijn.be/stops/209425", "https://data.delijn.be/stops/209426"], ["https://data.delijn.be/stops/400694", "https://data.delijn.be/stops/400695"], ["https://data.delijn.be/stops/208557", "https://data.delijn.be/stops/209612"], ["https://data.delijn.be/stops/404244", "https://data.delijn.be/stops/409296"], ["https://data.delijn.be/stops/207595", "https://data.delijn.be/stops/209672"], ["https://data.delijn.be/stops/302086", "https://data.delijn.be/stops/302088"], ["https://data.delijn.be/stops/105702", "https://data.delijn.be/stops/106073"], ["https://data.delijn.be/stops/407445", "https://data.delijn.be/stops/410253"], ["https://data.delijn.be/stops/306721", "https://data.delijn.be/stops/306725"], ["https://data.delijn.be/stops/200053", "https://data.delijn.be/stops/210057"], ["https://data.delijn.be/stops/104461", "https://data.delijn.be/stops/104462"], ["https://data.delijn.be/stops/104381", "https://data.delijn.be/stops/104382"], ["https://data.delijn.be/stops/400315", "https://data.delijn.be/stops/400318"], ["https://data.delijn.be/stops/505392", "https://data.delijn.be/stops/508226"], ["https://data.delijn.be/stops/102865", "https://data.delijn.be/stops/104490"], ["https://data.delijn.be/stops/505224", "https://data.delijn.be/stops/509083"], ["https://data.delijn.be/stops/305189", "https://data.delijn.be/stops/306913"], ["https://data.delijn.be/stops/106883", "https://data.delijn.be/stops/106885"], ["https://data.delijn.be/stops/305164", "https://data.delijn.be/stops/306915"], ["https://data.delijn.be/stops/108244", "https://data.delijn.be/stops/108247"], ["https://data.delijn.be/stops/301932", "https://data.delijn.be/stops/305806"], ["https://data.delijn.be/stops/400733", "https://data.delijn.be/stops/400781"], ["https://data.delijn.be/stops/503782", "https://data.delijn.be/stops/508782"], ["https://data.delijn.be/stops/508405", "https://data.delijn.be/stops/509939"], ["https://data.delijn.be/stops/504617", "https://data.delijn.be/stops/509617"], ["https://data.delijn.be/stops/501640", "https://data.delijn.be/stops/506149"], ["https://data.delijn.be/stops/304114", "https://data.delijn.be/stops/304115"], ["https://data.delijn.be/stops/400756", "https://data.delijn.be/stops/400757"], ["https://data.delijn.be/stops/302665", "https://data.delijn.be/stops/302700"], ["https://data.delijn.be/stops/501138", "https://data.delijn.be/stops/506138"], ["https://data.delijn.be/stops/102859", "https://data.delijn.be/stops/204626"], ["https://data.delijn.be/stops/401161", "https://data.delijn.be/stops/408119"], ["https://data.delijn.be/stops/404179", "https://data.delijn.be/stops/404188"], ["https://data.delijn.be/stops/205638", "https://data.delijn.be/stops/205639"], ["https://data.delijn.be/stops/208515", "https://data.delijn.be/stops/209681"], ["https://data.delijn.be/stops/305134", "https://data.delijn.be/stops/305135"], ["https://data.delijn.be/stops/101079", "https://data.delijn.be/stops/107152"], ["https://data.delijn.be/stops/502206", "https://data.delijn.be/stops/507219"], ["https://data.delijn.be/stops/307304", "https://data.delijn.be/stops/307306"], ["https://data.delijn.be/stops/104407", "https://data.delijn.be/stops/104408"], ["https://data.delijn.be/stops/106479", "https://data.delijn.be/stops/106481"], ["https://data.delijn.be/stops/103078", "https://data.delijn.be/stops/105024"], ["https://data.delijn.be/stops/106251", "https://data.delijn.be/stops/106682"], ["https://data.delijn.be/stops/506022", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/103101", "https://data.delijn.be/stops/105853"], ["https://data.delijn.be/stops/306590", "https://data.delijn.be/stops/308441"], ["https://data.delijn.be/stops/308428", "https://data.delijn.be/stops/308430"], ["https://data.delijn.be/stops/200495", "https://data.delijn.be/stops/201660"], ["https://data.delijn.be/stops/107349", "https://data.delijn.be/stops/108173"], ["https://data.delijn.be/stops/504232", "https://data.delijn.be/stops/504235"], ["https://data.delijn.be/stops/105472", "https://data.delijn.be/stops/109935"], ["https://data.delijn.be/stops/106702", "https://data.delijn.be/stops/108017"], ["https://data.delijn.be/stops/108471", "https://data.delijn.be/stops/306603"], ["https://data.delijn.be/stops/501614", "https://data.delijn.be/stops/506614"], ["https://data.delijn.be/stops/400451", "https://data.delijn.be/stops/400478"], ["https://data.delijn.be/stops/406680", "https://data.delijn.be/stops/406706"], ["https://data.delijn.be/stops/502449", "https://data.delijn.be/stops/507589"], ["https://data.delijn.be/stops/208458", "https://data.delijn.be/stops/209458"], ["https://data.delijn.be/stops/409454", "https://data.delijn.be/stops/409485"], ["https://data.delijn.be/stops/206614", "https://data.delijn.be/stops/206717"], ["https://data.delijn.be/stops/302801", "https://data.delijn.be/stops/307835"], ["https://data.delijn.be/stops/402805", "https://data.delijn.be/stops/406035"], ["https://data.delijn.be/stops/503865", "https://data.delijn.be/stops/505640"], ["https://data.delijn.be/stops/206722", "https://data.delijn.be/stops/207142"], ["https://data.delijn.be/stops/408625", "https://data.delijn.be/stops/410249"], ["https://data.delijn.be/stops/208349", "https://data.delijn.be/stops/209349"], ["https://data.delijn.be/stops/509230", "https://data.delijn.be/stops/509233"], ["https://data.delijn.be/stops/109128", "https://data.delijn.be/stops/109131"], ["https://data.delijn.be/stops/301078", "https://data.delijn.be/stops/308818"], ["https://data.delijn.be/stops/208294", "https://data.delijn.be/stops/209294"], ["https://data.delijn.be/stops/103860", "https://data.delijn.be/stops/204609"], ["https://data.delijn.be/stops/505423", "https://data.delijn.be/stops/509145"], ["https://data.delijn.be/stops/108178", "https://data.delijn.be/stops/108179"], ["https://data.delijn.be/stops/301727", "https://data.delijn.be/stops/301739"], ["https://data.delijn.be/stops/407049", "https://data.delijn.be/stops/407079"], ["https://data.delijn.be/stops/407307", "https://data.delijn.be/stops/407398"], ["https://data.delijn.be/stops/207669", "https://data.delijn.be/stops/208505"], ["https://data.delijn.be/stops/503054", "https://data.delijn.be/stops/509847"], ["https://data.delijn.be/stops/404544", "https://data.delijn.be/stops/404573"], ["https://data.delijn.be/stops/301698", "https://data.delijn.be/stops/301761"], ["https://data.delijn.be/stops/502323", "https://data.delijn.be/stops/507336"], ["https://data.delijn.be/stops/206206", "https://data.delijn.be/stops/207206"], ["https://data.delijn.be/stops/206699", "https://data.delijn.be/stops/207365"], ["https://data.delijn.be/stops/108326", "https://data.delijn.be/stops/108327"], ["https://data.delijn.be/stops/104019", "https://data.delijn.be/stops/104022"], ["https://data.delijn.be/stops/407061", "https://data.delijn.be/stops/407075"], ["https://data.delijn.be/stops/304022", "https://data.delijn.be/stops/305449"], ["https://data.delijn.be/stops/305049", "https://data.delijn.be/stops/305085"], ["https://data.delijn.be/stops/105606", "https://data.delijn.be/stops/105608"], ["https://data.delijn.be/stops/402730", "https://data.delijn.be/stops/410056"], ["https://data.delijn.be/stops/106969", "https://data.delijn.be/stops/106983"], ["https://data.delijn.be/stops/505082", "https://data.delijn.be/stops/505668"], ["https://data.delijn.be/stops/503364", "https://data.delijn.be/stops/508706"], ["https://data.delijn.be/stops/400398", "https://data.delijn.be/stops/400399"], ["https://data.delijn.be/stops/107058", "https://data.delijn.be/stops/108227"], ["https://data.delijn.be/stops/406206", "https://data.delijn.be/stops/406268"], ["https://data.delijn.be/stops/209062", "https://data.delijn.be/stops/209511"], ["https://data.delijn.be/stops/203407", "https://data.delijn.be/stops/211032"], ["https://data.delijn.be/stops/101909", "https://data.delijn.be/stops/107880"], ["https://data.delijn.be/stops/204437", "https://data.delijn.be/stops/205746"], ["https://data.delijn.be/stops/307227", "https://data.delijn.be/stops/307913"], ["https://data.delijn.be/stops/105691", "https://data.delijn.be/stops/105693"], ["https://data.delijn.be/stops/301003", "https://data.delijn.be/stops/307043"], ["https://data.delijn.be/stops/405367", "https://data.delijn.be/stops/405372"], ["https://data.delijn.be/stops/207352", "https://data.delijn.be/stops/207916"], ["https://data.delijn.be/stops/200903", "https://data.delijn.be/stops/201957"], ["https://data.delijn.be/stops/307358", "https://data.delijn.be/stops/307360"], ["https://data.delijn.be/stops/507604", "https://data.delijn.be/stops/507680"], ["https://data.delijn.be/stops/503798", "https://data.delijn.be/stops/508794"], ["https://data.delijn.be/stops/408612", "https://data.delijn.be/stops/408613"], ["https://data.delijn.be/stops/302673", "https://data.delijn.be/stops/302674"], ["https://data.delijn.be/stops/308158", "https://data.delijn.be/stops/308160"], ["https://data.delijn.be/stops/105993", "https://data.delijn.be/stops/105998"], ["https://data.delijn.be/stops/400171", "https://data.delijn.be/stops/406977"], ["https://data.delijn.be/stops/200880", "https://data.delijn.be/stops/201884"], ["https://data.delijn.be/stops/300073", "https://data.delijn.be/stops/304676"], ["https://data.delijn.be/stops/404969", "https://data.delijn.be/stops/404972"], ["https://data.delijn.be/stops/301319", "https://data.delijn.be/stops/301913"], ["https://data.delijn.be/stops/105666", "https://data.delijn.be/stops/105669"], ["https://data.delijn.be/stops/303554", "https://data.delijn.be/stops/303568"], ["https://data.delijn.be/stops/300023", "https://data.delijn.be/stops/300024"], ["https://data.delijn.be/stops/401987", "https://data.delijn.be/stops/402024"], ["https://data.delijn.be/stops/408656", "https://data.delijn.be/stops/408662"], ["https://data.delijn.be/stops/202111", "https://data.delijn.be/stops/205584"], ["https://data.delijn.be/stops/106595", "https://data.delijn.be/stops/107241"], ["https://data.delijn.be/stops/401561", "https://data.delijn.be/stops/407348"], ["https://data.delijn.be/stops/507766", "https://data.delijn.be/stops/508023"], ["https://data.delijn.be/stops/202585", "https://data.delijn.be/stops/211076"], ["https://data.delijn.be/stops/206374", "https://data.delijn.be/stops/207689"], ["https://data.delijn.be/stops/208485", "https://data.delijn.be/stops/209658"], ["https://data.delijn.be/stops/303889", "https://data.delijn.be/stops/306062"], ["https://data.delijn.be/stops/502697", "https://data.delijn.be/stops/507704"], ["https://data.delijn.be/stops/200435", "https://data.delijn.be/stops/201435"], ["https://data.delijn.be/stops/403902", "https://data.delijn.be/stops/403903"], ["https://data.delijn.be/stops/300653", "https://data.delijn.be/stops/302473"], ["https://data.delijn.be/stops/200919", "https://data.delijn.be/stops/202138"], ["https://data.delijn.be/stops/302766", "https://data.delijn.be/stops/306553"], ["https://data.delijn.be/stops/206212", "https://data.delijn.be/stops/207212"], ["https://data.delijn.be/stops/503100", "https://data.delijn.be/stops/503348"], ["https://data.delijn.be/stops/303867", "https://data.delijn.be/stops/303870"], ["https://data.delijn.be/stops/305613", "https://data.delijn.be/stops/306765"], ["https://data.delijn.be/stops/109032", "https://data.delijn.be/stops/109034"], ["https://data.delijn.be/stops/108290", "https://data.delijn.be/stops/108295"], ["https://data.delijn.be/stops/102092", "https://data.delijn.be/stops/109750"], ["https://data.delijn.be/stops/303349", "https://data.delijn.be/stops/303369"], ["https://data.delijn.be/stops/305041", "https://data.delijn.be/stops/307849"], ["https://data.delijn.be/stops/404854", "https://data.delijn.be/stops/404895"], ["https://data.delijn.be/stops/400141", "https://data.delijn.be/stops/406362"], ["https://data.delijn.be/stops/509221", "https://data.delijn.be/stops/509222"], ["https://data.delijn.be/stops/301208", "https://data.delijn.be/stops/303617"], ["https://data.delijn.be/stops/202355", "https://data.delijn.be/stops/203648"], ["https://data.delijn.be/stops/107201", "https://data.delijn.be/stops/410162"], ["https://data.delijn.be/stops/401842", "https://data.delijn.be/stops/401854"], ["https://data.delijn.be/stops/409081", "https://data.delijn.be/stops/409123"], ["https://data.delijn.be/stops/216018", "https://data.delijn.be/stops/306730"], ["https://data.delijn.be/stops/206714", "https://data.delijn.be/stops/206719"], ["https://data.delijn.be/stops/304521", "https://data.delijn.be/stops/304806"], ["https://data.delijn.be/stops/303283", "https://data.delijn.be/stops/303291"], ["https://data.delijn.be/stops/404572", "https://data.delijn.be/stops/406763"], ["https://data.delijn.be/stops/200118", "https://data.delijn.be/stops/200815"], ["https://data.delijn.be/stops/505245", "https://data.delijn.be/stops/505315"], ["https://data.delijn.be/stops/405869", "https://data.delijn.be/stops/409412"], ["https://data.delijn.be/stops/301306", "https://data.delijn.be/stops/306256"], ["https://data.delijn.be/stops/405089", "https://data.delijn.be/stops/406547"], ["https://data.delijn.be/stops/104036", "https://data.delijn.be/stops/108086"], ["https://data.delijn.be/stops/304420", "https://data.delijn.be/stops/304424"], ["https://data.delijn.be/stops/503969", "https://data.delijn.be/stops/508969"], ["https://data.delijn.be/stops/200525", "https://data.delijn.be/stops/201595"], ["https://data.delijn.be/stops/504648", "https://data.delijn.be/stops/505101"], ["https://data.delijn.be/stops/502493", "https://data.delijn.be/stops/502516"], ["https://data.delijn.be/stops/406161", "https://data.delijn.be/stops/406287"], ["https://data.delijn.be/stops/102073", "https://data.delijn.be/stops/109714"], ["https://data.delijn.be/stops/400137", "https://data.delijn.be/stops/400138"], ["https://data.delijn.be/stops/505549", "https://data.delijn.be/stops/508312"], ["https://data.delijn.be/stops/107512", "https://data.delijn.be/stops/107516"], ["https://data.delijn.be/stops/108784", "https://data.delijn.be/stops/108786"], ["https://data.delijn.be/stops/200812", "https://data.delijn.be/stops/202053"], ["https://data.delijn.be/stops/405789", "https://data.delijn.be/stops/405885"], ["https://data.delijn.be/stops/202303", "https://data.delijn.be/stops/202324"], ["https://data.delijn.be/stops/404141", "https://data.delijn.be/stops/405913"], ["https://data.delijn.be/stops/504396", "https://data.delijn.be/stops/509661"], ["https://data.delijn.be/stops/103712", "https://data.delijn.be/stops/103752"], ["https://data.delijn.be/stops/102309", "https://data.delijn.be/stops/105569"], ["https://data.delijn.be/stops/204779", "https://data.delijn.be/stops/205779"], ["https://data.delijn.be/stops/503877", "https://data.delijn.be/stops/508167"], ["https://data.delijn.be/stops/102200", "https://data.delijn.be/stops/103995"], ["https://data.delijn.be/stops/402200", "https://data.delijn.be/stops/402398"], ["https://data.delijn.be/stops/300186", "https://data.delijn.be/stops/300209"], ["https://data.delijn.be/stops/505831", "https://data.delijn.be/stops/508013"], ["https://data.delijn.be/stops/108683", "https://data.delijn.be/stops/108829"], ["https://data.delijn.be/stops/200503", "https://data.delijn.be/stops/201553"], ["https://data.delijn.be/stops/402261", "https://data.delijn.be/stops/409631"], ["https://data.delijn.be/stops/404729", "https://data.delijn.be/stops/406991"], ["https://data.delijn.be/stops/401212", "https://data.delijn.be/stops/401257"], ["https://data.delijn.be/stops/404465", "https://data.delijn.be/stops/404548"], ["https://data.delijn.be/stops/307964", "https://data.delijn.be/stops/307965"], ["https://data.delijn.be/stops/208116", "https://data.delijn.be/stops/208796"], ["https://data.delijn.be/stops/405765", "https://data.delijn.be/stops/405820"], ["https://data.delijn.be/stops/408284", "https://data.delijn.be/stops/408345"], ["https://data.delijn.be/stops/400801", "https://data.delijn.be/stops/403572"], ["https://data.delijn.be/stops/403934", "https://data.delijn.be/stops/403983"], ["https://data.delijn.be/stops/303066", "https://data.delijn.be/stops/303183"], ["https://data.delijn.be/stops/200494", "https://data.delijn.be/stops/200631"], ["https://data.delijn.be/stops/101865", "https://data.delijn.be/stops/104340"], ["https://data.delijn.be/stops/104110", "https://data.delijn.be/stops/104115"], ["https://data.delijn.be/stops/104102", "https://data.delijn.be/stops/108290"], ["https://data.delijn.be/stops/107986", "https://data.delijn.be/stops/308483"], ["https://data.delijn.be/stops/403933", "https://data.delijn.be/stops/403986"], ["https://data.delijn.be/stops/204508", "https://data.delijn.be/stops/205489"], ["https://data.delijn.be/stops/408006", "https://data.delijn.be/stops/408013"], ["https://data.delijn.be/stops/102915", "https://data.delijn.be/stops/103343"], ["https://data.delijn.be/stops/302348", "https://data.delijn.be/stops/302750"], ["https://data.delijn.be/stops/206483", "https://data.delijn.be/stops/207483"], ["https://data.delijn.be/stops/305182", "https://data.delijn.be/stops/308049"], ["https://data.delijn.be/stops/410085", "https://data.delijn.be/stops/410086"], ["https://data.delijn.be/stops/208549", "https://data.delijn.be/stops/208551"], ["https://data.delijn.be/stops/210097", "https://data.delijn.be/stops/211097"], ["https://data.delijn.be/stops/303754", "https://data.delijn.be/stops/303755"], ["https://data.delijn.be/stops/506429", "https://data.delijn.be/stops/506433"], ["https://data.delijn.be/stops/206483", "https://data.delijn.be/stops/206860"], ["https://data.delijn.be/stops/507269", "https://data.delijn.be/stops/507272"], ["https://data.delijn.be/stops/204142", "https://data.delijn.be/stops/205142"], ["https://data.delijn.be/stops/400556", "https://data.delijn.be/stops/404278"], ["https://data.delijn.be/stops/201868", "https://data.delijn.be/stops/202017"], ["https://data.delijn.be/stops/503369", "https://data.delijn.be/stops/510024"], ["https://data.delijn.be/stops/501048", "https://data.delijn.be/stops/501538"], ["https://data.delijn.be/stops/104825", "https://data.delijn.be/stops/104860"], ["https://data.delijn.be/stops/505829", "https://data.delijn.be/stops/509268"], ["https://data.delijn.be/stops/400816", "https://data.delijn.be/stops/409647"], ["https://data.delijn.be/stops/109711", "https://data.delijn.be/stops/109721"], ["https://data.delijn.be/stops/407089", "https://data.delijn.be/stops/407259"], ["https://data.delijn.be/stops/405505", "https://data.delijn.be/stops/407718"], ["https://data.delijn.be/stops/208058", "https://data.delijn.be/stops/209058"], ["https://data.delijn.be/stops/102882", "https://data.delijn.be/stops/108153"], ["https://data.delijn.be/stops/405206", "https://data.delijn.be/stops/405218"], ["https://data.delijn.be/stops/406330", "https://data.delijn.be/stops/406331"], ["https://data.delijn.be/stops/201327", "https://data.delijn.be/stops/202765"], ["https://data.delijn.be/stops/308227", "https://data.delijn.be/stops/308230"], ["https://data.delijn.be/stops/300329", "https://data.delijn.be/stops/300338"], ["https://data.delijn.be/stops/300734", "https://data.delijn.be/stops/302607"], ["https://data.delijn.be/stops/206542", "https://data.delijn.be/stops/206563"], ["https://data.delijn.be/stops/405643", "https://data.delijn.be/stops/405644"], ["https://data.delijn.be/stops/403084", "https://data.delijn.be/stops/403437"], ["https://data.delijn.be/stops/203823", "https://data.delijn.be/stops/209240"], ["https://data.delijn.be/stops/101428", "https://data.delijn.be/stops/101429"], ["https://data.delijn.be/stops/407001", "https://data.delijn.be/stops/408196"], ["https://data.delijn.be/stops/306552", "https://data.delijn.be/stops/306553"], ["https://data.delijn.be/stops/408024", "https://data.delijn.be/stops/301841"], ["https://data.delijn.be/stops/206119", "https://data.delijn.be/stops/207119"], ["https://data.delijn.be/stops/204704", "https://data.delijn.be/stops/205704"], ["https://data.delijn.be/stops/202204", "https://data.delijn.be/stops/202205"], ["https://data.delijn.be/stops/101884", "https://data.delijn.be/stops/104559"], ["https://data.delijn.be/stops/206576", "https://data.delijn.be/stops/207577"], ["https://data.delijn.be/stops/409387", "https://data.delijn.be/stops/409398"], ["https://data.delijn.be/stops/501606", "https://data.delijn.be/stops/501716"], ["https://data.delijn.be/stops/208198", "https://data.delijn.be/stops/208199"], ["https://data.delijn.be/stops/105966", "https://data.delijn.be/stops/108945"], ["https://data.delijn.be/stops/206534", "https://data.delijn.be/stops/206547"], ["https://data.delijn.be/stops/203851", "https://data.delijn.be/stops/203853"], ["https://data.delijn.be/stops/208169", "https://data.delijn.be/stops/209169"], ["https://data.delijn.be/stops/104096", "https://data.delijn.be/stops/107860"], ["https://data.delijn.be/stops/204059", "https://data.delijn.be/stops/205058"], ["https://data.delijn.be/stops/202579", "https://data.delijn.be/stops/202581"], ["https://data.delijn.be/stops/302143", "https://data.delijn.be/stops/307527"], ["https://data.delijn.be/stops/509143", "https://data.delijn.be/stops/509144"], ["https://data.delijn.be/stops/501502", "https://data.delijn.be/stops/506501"], ["https://data.delijn.be/stops/503726", "https://data.delijn.be/stops/504967"], ["https://data.delijn.be/stops/207865", "https://data.delijn.be/stops/208385"], ["https://data.delijn.be/stops/105464", "https://data.delijn.be/stops/105466"], ["https://data.delijn.be/stops/504406", "https://data.delijn.be/stops/504433"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/307110"], ["https://data.delijn.be/stops/504661", "https://data.delijn.be/stops/509661"], ["https://data.delijn.be/stops/400404", "https://data.delijn.be/stops/406866"], ["https://data.delijn.be/stops/204912", "https://data.delijn.be/stops/205914"], ["https://data.delijn.be/stops/201152", "https://data.delijn.be/stops/202358"], ["https://data.delijn.be/stops/102713", "https://data.delijn.be/stops/102714"], ["https://data.delijn.be/stops/407580", "https://data.delijn.be/stops/409291"], ["https://data.delijn.be/stops/301408", "https://data.delijn.be/stops/301411"], ["https://data.delijn.be/stops/307336", "https://data.delijn.be/stops/308833"], ["https://data.delijn.be/stops/504050", "https://data.delijn.be/stops/505410"], ["https://data.delijn.be/stops/202319", "https://data.delijn.be/stops/203320"], ["https://data.delijn.be/stops/107355", "https://data.delijn.be/stops/108160"], ["https://data.delijn.be/stops/101943", "https://data.delijn.be/stops/108316"], ["https://data.delijn.be/stops/306920", "https://data.delijn.be/stops/306921"], ["https://data.delijn.be/stops/203035", "https://data.delijn.be/stops/203986"], ["https://data.delijn.be/stops/205183", "https://data.delijn.be/stops/205184"], ["https://data.delijn.be/stops/206878", "https://data.delijn.be/stops/207039"], ["https://data.delijn.be/stops/501007", "https://data.delijn.be/stops/503744"], ["https://data.delijn.be/stops/300416", "https://data.delijn.be/stops/301264"], ["https://data.delijn.be/stops/300935", "https://data.delijn.be/stops/300982"], ["https://data.delijn.be/stops/406675", "https://data.delijn.be/stops/406677"], ["https://data.delijn.be/stops/102471", "https://data.delijn.be/stops/400359"], ["https://data.delijn.be/stops/506415", "https://data.delijn.be/stops/506475"], ["https://data.delijn.be/stops/302310", "https://data.delijn.be/stops/304009"], ["https://data.delijn.be/stops/507490", "https://data.delijn.be/stops/507740"], ["https://data.delijn.be/stops/403066", "https://data.delijn.be/stops/410329"], ["https://data.delijn.be/stops/102997", "https://data.delijn.be/stops/109454"], ["https://data.delijn.be/stops/402972", "https://data.delijn.be/stops/404699"], ["https://data.delijn.be/stops/303195", "https://data.delijn.be/stops/303214"], ["https://data.delijn.be/stops/305195", "https://data.delijn.be/stops/305197"], ["https://data.delijn.be/stops/202232", "https://data.delijn.be/stops/203232"], ["https://data.delijn.be/stops/208274", "https://data.delijn.be/stops/209276"], ["https://data.delijn.be/stops/403405", "https://data.delijn.be/stops/403406"], ["https://data.delijn.be/stops/308162", "https://data.delijn.be/stops/308163"], ["https://data.delijn.be/stops/107056", "https://data.delijn.be/stops/107057"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/107147"], ["https://data.delijn.be/stops/206769", "https://data.delijn.be/stops/209037"], ["https://data.delijn.be/stops/404403", "https://data.delijn.be/stops/404411"], ["https://data.delijn.be/stops/106082", "https://data.delijn.be/stops/106083"], ["https://data.delijn.be/stops/402140", "https://data.delijn.be/stops/402141"], ["https://data.delijn.be/stops/503772", "https://data.delijn.be/stops/504318"], ["https://data.delijn.be/stops/403169", "https://data.delijn.be/stops/403863"], ["https://data.delijn.be/stops/108055", "https://data.delijn.be/stops/108060"], ["https://data.delijn.be/stops/206618", "https://data.delijn.be/stops/207618"], ["https://data.delijn.be/stops/308594", "https://data.delijn.be/stops/308595"], ["https://data.delijn.be/stops/503539", "https://data.delijn.be/stops/503993"], ["https://data.delijn.be/stops/107353", "https://data.delijn.be/stops/107354"], ["https://data.delijn.be/stops/506027", "https://data.delijn.be/stops/506037"], ["https://data.delijn.be/stops/404702", "https://data.delijn.be/stops/404703"], ["https://data.delijn.be/stops/404260", "https://data.delijn.be/stops/404263"], ["https://data.delijn.be/stops/305717", "https://data.delijn.be/stops/306053"], ["https://data.delijn.be/stops/407291", "https://data.delijn.be/stops/408131"], ["https://data.delijn.be/stops/406717", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/206600", "https://data.delijn.be/stops/207601"], ["https://data.delijn.be/stops/304260", "https://data.delijn.be/stops/306662"], ["https://data.delijn.be/stops/403443", "https://data.delijn.be/stops/403479"], ["https://data.delijn.be/stops/102881", "https://data.delijn.be/stops/104771"], ["https://data.delijn.be/stops/300896", "https://data.delijn.be/stops/306283"], ["https://data.delijn.be/stops/109000", "https://data.delijn.be/stops/109001"], ["https://data.delijn.be/stops/201408", "https://data.delijn.be/stops/201409"], ["https://data.delijn.be/stops/405433", "https://data.delijn.be/stops/406733"], ["https://data.delijn.be/stops/208014", "https://data.delijn.be/stops/208027"], ["https://data.delijn.be/stops/206158", "https://data.delijn.be/stops/207498"], ["https://data.delijn.be/stops/108638", "https://data.delijn.be/stops/109686"], ["https://data.delijn.be/stops/304764", "https://data.delijn.be/stops/304773"], ["https://data.delijn.be/stops/202524", "https://data.delijn.be/stops/203518"], ["https://data.delijn.be/stops/404971", "https://data.delijn.be/stops/404977"], ["https://data.delijn.be/stops/507212", "https://data.delijn.be/stops/507583"], ["https://data.delijn.be/stops/407844", "https://data.delijn.be/stops/407845"], ["https://data.delijn.be/stops/206631", "https://data.delijn.be/stops/207631"], ["https://data.delijn.be/stops/502457", "https://data.delijn.be/stops/505508"], ["https://data.delijn.be/stops/505318", "https://data.delijn.be/stops/509891"], ["https://data.delijn.be/stops/504077", "https://data.delijn.be/stops/509072"], ["https://data.delijn.be/stops/207306", "https://data.delijn.be/stops/207308"], ["https://data.delijn.be/stops/503011", "https://data.delijn.be/stops/503013"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/501213"], ["https://data.delijn.be/stops/505812", "https://data.delijn.be/stops/507345"], ["https://data.delijn.be/stops/202957", "https://data.delijn.be/stops/203957"], ["https://data.delijn.be/stops/503493", "https://data.delijn.be/stops/505138"], ["https://data.delijn.be/stops/406118", "https://data.delijn.be/stops/406127"], ["https://data.delijn.be/stops/305555", "https://data.delijn.be/stops/305578"], ["https://data.delijn.be/stops/302629", "https://data.delijn.be/stops/308114"], ["https://data.delijn.be/stops/105982", "https://data.delijn.be/stops/105983"], ["https://data.delijn.be/stops/400255", "https://data.delijn.be/stops/400257"], ["https://data.delijn.be/stops/409073", "https://data.delijn.be/stops/409154"], ["https://data.delijn.be/stops/409578", "https://data.delijn.be/stops/409579"], ["https://data.delijn.be/stops/200564", "https://data.delijn.be/stops/200565"], ["https://data.delijn.be/stops/102162", "https://data.delijn.be/stops/103415"], ["https://data.delijn.be/stops/302423", "https://data.delijn.be/stops/302437"], ["https://data.delijn.be/stops/405813", "https://data.delijn.be/stops/406880"], ["https://data.delijn.be/stops/304723", "https://data.delijn.be/stops/304735"], ["https://data.delijn.be/stops/501306", "https://data.delijn.be/stops/506315"], ["https://data.delijn.be/stops/206510", "https://data.delijn.be/stops/207510"], ["https://data.delijn.be/stops/306966", "https://data.delijn.be/stops/306967"], ["https://data.delijn.be/stops/101094", "https://data.delijn.be/stops/107955"], ["https://data.delijn.be/stops/304006", "https://data.delijn.be/stops/304024"], ["https://data.delijn.be/stops/202679", "https://data.delijn.be/stops/202691"], ["https://data.delijn.be/stops/207730", "https://data.delijn.be/stops/207916"], ["https://data.delijn.be/stops/108608", "https://data.delijn.be/stops/307433"], ["https://data.delijn.be/stops/102645", "https://data.delijn.be/stops/104815"], ["https://data.delijn.be/stops/305611", "https://data.delijn.be/stops/305614"], ["https://data.delijn.be/stops/106558", "https://data.delijn.be/stops/106560"], ["https://data.delijn.be/stops/300360", "https://data.delijn.be/stops/303660"], ["https://data.delijn.be/stops/205272", "https://data.delijn.be/stops/205647"], ["https://data.delijn.be/stops/307893", "https://data.delijn.be/stops/307894"], ["https://data.delijn.be/stops/504159", "https://data.delijn.be/stops/509048"], ["https://data.delijn.be/stops/402773", "https://data.delijn.be/stops/408404"], ["https://data.delijn.be/stops/206463", "https://data.delijn.be/stops/216010"], ["https://data.delijn.be/stops/403758", "https://data.delijn.be/stops/403759"], ["https://data.delijn.be/stops/402692", "https://data.delijn.be/stops/301469"], ["https://data.delijn.be/stops/103525", "https://data.delijn.be/stops/105260"], ["https://data.delijn.be/stops/206596", "https://data.delijn.be/stops/207595"], ["https://data.delijn.be/stops/503315", "https://data.delijn.be/stops/508315"], ["https://data.delijn.be/stops/104481", "https://data.delijn.be/stops/104483"], ["https://data.delijn.be/stops/505327", "https://data.delijn.be/stops/507235"], ["https://data.delijn.be/stops/204394", "https://data.delijn.be/stops/205394"], ["https://data.delijn.be/stops/308448", "https://data.delijn.be/stops/308691"], ["https://data.delijn.be/stops/109724", "https://data.delijn.be/stops/109785"], ["https://data.delijn.be/stops/408798", "https://data.delijn.be/stops/408908"], ["https://data.delijn.be/stops/105207", "https://data.delijn.be/stops/108062"], ["https://data.delijn.be/stops/204055", "https://data.delijn.be/stops/204703"], ["https://data.delijn.be/stops/404607", "https://data.delijn.be/stops/404996"], ["https://data.delijn.be/stops/305100", "https://data.delijn.be/stops/305104"], ["https://data.delijn.be/stops/300438", "https://data.delijn.be/stops/302702"], ["https://data.delijn.be/stops/208068", "https://data.delijn.be/stops/209194"], ["https://data.delijn.be/stops/210075", "https://data.delijn.be/stops/211075"], ["https://data.delijn.be/stops/101776", "https://data.delijn.be/stops/101777"], ["https://data.delijn.be/stops/304842", "https://data.delijn.be/stops/307065"], ["https://data.delijn.be/stops/400204", "https://data.delijn.be/stops/400207"], ["https://data.delijn.be/stops/108471", "https://data.delijn.be/stops/108483"], ["https://data.delijn.be/stops/500949", "https://data.delijn.be/stops/500954"], ["https://data.delijn.be/stops/201913", "https://data.delijn.be/stops/202469"], ["https://data.delijn.be/stops/403788", "https://data.delijn.be/stops/403789"], ["https://data.delijn.be/stops/505157", "https://data.delijn.be/stops/509875"], ["https://data.delijn.be/stops/200543", "https://data.delijn.be/stops/211105"], ["https://data.delijn.be/stops/404853", "https://data.delijn.be/stops/404878"], ["https://data.delijn.be/stops/301654", "https://data.delijn.be/stops/307756"], ["https://data.delijn.be/stops/202940", "https://data.delijn.be/stops/210053"], ["https://data.delijn.be/stops/300322", "https://data.delijn.be/stops/300334"], ["https://data.delijn.be/stops/305228", "https://data.delijn.be/stops/305296"], ["https://data.delijn.be/stops/105292", "https://data.delijn.be/stops/105387"], ["https://data.delijn.be/stops/305225", "https://data.delijn.be/stops/305226"], ["https://data.delijn.be/stops/103981", "https://data.delijn.be/stops/109950"], ["https://data.delijn.be/stops/401603", "https://data.delijn.be/stops/409428"], ["https://data.delijn.be/stops/403065", "https://data.delijn.be/stops/403129"], ["https://data.delijn.be/stops/307413", "https://data.delijn.be/stops/308054"], ["https://data.delijn.be/stops/202257", "https://data.delijn.be/stops/210006"], ["https://data.delijn.be/stops/209269", "https://data.delijn.be/stops/209270"], ["https://data.delijn.be/stops/204428", "https://data.delijn.be/stops/204443"], ["https://data.delijn.be/stops/107475", "https://data.delijn.be/stops/109687"], ["https://data.delijn.be/stops/300461", "https://data.delijn.be/stops/308061"], ["https://data.delijn.be/stops/202246", "https://data.delijn.be/stops/203246"], ["https://data.delijn.be/stops/405102", "https://data.delijn.be/stops/408257"], ["https://data.delijn.be/stops/406571", "https://data.delijn.be/stops/406701"], ["https://data.delijn.be/stops/503432", "https://data.delijn.be/stops/509757"], ["https://data.delijn.be/stops/407050", "https://data.delijn.be/stops/410017"], ["https://data.delijn.be/stops/208174", "https://data.delijn.be/stops/208178"], ["https://data.delijn.be/stops/507498", "https://data.delijn.be/stops/509726"], ["https://data.delijn.be/stops/108678", "https://data.delijn.be/stops/306625"], ["https://data.delijn.be/stops/502588", "https://data.delijn.be/stops/507401"], ["https://data.delijn.be/stops/508556", "https://data.delijn.be/stops/508567"], ["https://data.delijn.be/stops/301384", "https://data.delijn.be/stops/306646"], ["https://data.delijn.be/stops/404545", "https://data.delijn.be/stops/404583"], ["https://data.delijn.be/stops/109248", "https://data.delijn.be/stops/109267"], ["https://data.delijn.be/stops/405958", "https://data.delijn.be/stops/405961"], ["https://data.delijn.be/stops/106815", "https://data.delijn.be/stops/106844"], ["https://data.delijn.be/stops/203548", "https://data.delijn.be/stops/203556"], ["https://data.delijn.be/stops/101912", "https://data.delijn.be/stops/103209"], ["https://data.delijn.be/stops/503563", "https://data.delijn.be/stops/508563"], ["https://data.delijn.be/stops/104652", "https://data.delijn.be/stops/107977"], ["https://data.delijn.be/stops/402659", "https://data.delijn.be/stops/402707"], ["https://data.delijn.be/stops/407379", "https://data.delijn.be/stops/407385"], ["https://data.delijn.be/stops/200460", "https://data.delijn.be/stops/200680"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/202629"], ["https://data.delijn.be/stops/206182", "https://data.delijn.be/stops/206957"], ["https://data.delijn.be/stops/302354", "https://data.delijn.be/stops/302355"], ["https://data.delijn.be/stops/300410", "https://data.delijn.be/stops/307490"], ["https://data.delijn.be/stops/305192", "https://data.delijn.be/stops/305203"], ["https://data.delijn.be/stops/300952", "https://data.delijn.be/stops/300953"], ["https://data.delijn.be/stops/303448", "https://data.delijn.be/stops/303452"], ["https://data.delijn.be/stops/502152", "https://data.delijn.be/stops/502816"], ["https://data.delijn.be/stops/509211", "https://data.delijn.be/stops/509223"], ["https://data.delijn.be/stops/501061", "https://data.delijn.be/stops/506059"], ["https://data.delijn.be/stops/102382", "https://data.delijn.be/stops/102990"], ["https://data.delijn.be/stops/108069", "https://data.delijn.be/stops/108136"], ["https://data.delijn.be/stops/103185", "https://data.delijn.be/stops/103265"], ["https://data.delijn.be/stops/301694", "https://data.delijn.be/stops/303750"], ["https://data.delijn.be/stops/200199", "https://data.delijn.be/stops/202889"], ["https://data.delijn.be/stops/403246", "https://data.delijn.be/stops/403530"], ["https://data.delijn.be/stops/502083", "https://data.delijn.be/stops/502793"], ["https://data.delijn.be/stops/202594", "https://data.delijn.be/stops/202595"], ["https://data.delijn.be/stops/104142", "https://data.delijn.be/stops/305789"], ["https://data.delijn.be/stops/301528", "https://data.delijn.be/stops/301589"], ["https://data.delijn.be/stops/107898", "https://data.delijn.be/stops/107907"], ["https://data.delijn.be/stops/305908", "https://data.delijn.be/stops/305909"], ["https://data.delijn.be/stops/204190", "https://data.delijn.be/stops/204204"], ["https://data.delijn.be/stops/301594", "https://data.delijn.be/stops/302604"], ["https://data.delijn.be/stops/504891", "https://data.delijn.be/stops/505957"], ["https://data.delijn.be/stops/200747", "https://data.delijn.be/stops/203244"], ["https://data.delijn.be/stops/101824", "https://data.delijn.be/stops/102958"], ["https://data.delijn.be/stops/504412", "https://data.delijn.be/stops/504612"], ["https://data.delijn.be/stops/103969", "https://data.delijn.be/stops/104856"], ["https://data.delijn.be/stops/403548", "https://data.delijn.be/stops/405328"], ["https://data.delijn.be/stops/204163", "https://data.delijn.be/stops/206400"], ["https://data.delijn.be/stops/407646", "https://data.delijn.be/stops/407718"], ["https://data.delijn.be/stops/207801", "https://data.delijn.be/stops/217014"], ["https://data.delijn.be/stops/206804", "https://data.delijn.be/stops/208348"], ["https://data.delijn.be/stops/105319", "https://data.delijn.be/stops/109882"], ["https://data.delijn.be/stops/401214", "https://data.delijn.be/stops/401246"], ["https://data.delijn.be/stops/102603", "https://data.delijn.be/stops/107537"], ["https://data.delijn.be/stops/101202", "https://data.delijn.be/stops/104932"], ["https://data.delijn.be/stops/505010", "https://data.delijn.be/stops/505737"], ["https://data.delijn.be/stops/403683", "https://data.delijn.be/stops/405389"], ["https://data.delijn.be/stops/102966", "https://data.delijn.be/stops/109462"], ["https://data.delijn.be/stops/105395", "https://data.delijn.be/stops/105700"], ["https://data.delijn.be/stops/401297", "https://data.delijn.be/stops/401304"], ["https://data.delijn.be/stops/504228", "https://data.delijn.be/stops/509228"], ["https://data.delijn.be/stops/200072", "https://data.delijn.be/stops/211047"], ["https://data.delijn.be/stops/102449", "https://data.delijn.be/stops/107982"], ["https://data.delijn.be/stops/406077", "https://data.delijn.be/stops/407168"], ["https://data.delijn.be/stops/401523", "https://data.delijn.be/stops/401741"], ["https://data.delijn.be/stops/509383", "https://data.delijn.be/stops/509534"], ["https://data.delijn.be/stops/403728", "https://data.delijn.be/stops/406973"], ["https://data.delijn.be/stops/503961", "https://data.delijn.be/stops/509285"], ["https://data.delijn.be/stops/105896", "https://data.delijn.be/stops/105897"], ["https://data.delijn.be/stops/202106", "https://data.delijn.be/stops/202107"], ["https://data.delijn.be/stops/504106", "https://data.delijn.be/stops/504544"], ["https://data.delijn.be/stops/504089", "https://data.delijn.be/stops/505918"], ["https://data.delijn.be/stops/206552", "https://data.delijn.be/stops/206553"], ["https://data.delijn.be/stops/507719", "https://data.delijn.be/stops/508863"], ["https://data.delijn.be/stops/509011", "https://data.delijn.be/stops/509013"], ["https://data.delijn.be/stops/200828", "https://data.delijn.be/stops/200830"], ["https://data.delijn.be/stops/300837", "https://data.delijn.be/stops/301792"], ["https://data.delijn.be/stops/406733", "https://data.delijn.be/stops/408762"], ["https://data.delijn.be/stops/105713", "https://data.delijn.be/stops/105717"], ["https://data.delijn.be/stops/407890", "https://data.delijn.be/stops/407906"], ["https://data.delijn.be/stops/305379", "https://data.delijn.be/stops/305383"], ["https://data.delijn.be/stops/202385", "https://data.delijn.be/stops/203384"], ["https://data.delijn.be/stops/404494", "https://data.delijn.be/stops/406740"], ["https://data.delijn.be/stops/503543", "https://data.delijn.be/stops/508579"], ["https://data.delijn.be/stops/308155", "https://data.delijn.be/stops/308173"], ["https://data.delijn.be/stops/204074", "https://data.delijn.be/stops/204237"], ["https://data.delijn.be/stops/205754", "https://data.delijn.be/stops/205755"], ["https://data.delijn.be/stops/200363", "https://data.delijn.be/stops/201104"], ["https://data.delijn.be/stops/104611", "https://data.delijn.be/stops/105824"], ["https://data.delijn.be/stops/504872", "https://data.delijn.be/stops/508722"], ["https://data.delijn.be/stops/201707", "https://data.delijn.be/stops/201710"], ["https://data.delijn.be/stops/305675", "https://data.delijn.be/stops/305722"], ["https://data.delijn.be/stops/504085", "https://data.delijn.be/stops/505000"], ["https://data.delijn.be/stops/505272", "https://data.delijn.be/stops/508785"], ["https://data.delijn.be/stops/405015", "https://data.delijn.be/stops/408155"], ["https://data.delijn.be/stops/508753", "https://data.delijn.be/stops/508762"], ["https://data.delijn.be/stops/208801", "https://data.delijn.be/stops/209429"], ["https://data.delijn.be/stops/305177", "https://data.delijn.be/stops/305193"], ["https://data.delijn.be/stops/206004", "https://data.delijn.be/stops/207005"], ["https://data.delijn.be/stops/202916", "https://data.delijn.be/stops/203733"], ["https://data.delijn.be/stops/200176", "https://data.delijn.be/stops/201176"], ["https://data.delijn.be/stops/305306", "https://data.delijn.be/stops/305307"], ["https://data.delijn.be/stops/404238", "https://data.delijn.be/stops/405547"], ["https://data.delijn.be/stops/502365", "https://data.delijn.be/stops/507332"], ["https://data.delijn.be/stops/108104", "https://data.delijn.be/stops/108107"], ["https://data.delijn.be/stops/301651", "https://data.delijn.be/stops/301894"], ["https://data.delijn.be/stops/504151", "https://data.delijn.be/stops/504169"], ["https://data.delijn.be/stops/405320", "https://data.delijn.be/stops/405322"], ["https://data.delijn.be/stops/200008", "https://data.delijn.be/stops/201008"], ["https://data.delijn.be/stops/303003", "https://data.delijn.be/stops/303004"], ["https://data.delijn.be/stops/302286", "https://data.delijn.be/stops/302287"], ["https://data.delijn.be/stops/306898", "https://data.delijn.be/stops/306899"], ["https://data.delijn.be/stops/506407", "https://data.delijn.be/stops/506408"], ["https://data.delijn.be/stops/405872", "https://data.delijn.be/stops/409764"], ["https://data.delijn.be/stops/507753", "https://data.delijn.be/stops/507763"], ["https://data.delijn.be/stops/505297", "https://data.delijn.be/stops/508510"], ["https://data.delijn.be/stops/304343", "https://data.delijn.be/stops/304344"], ["https://data.delijn.be/stops/401524", "https://data.delijn.be/stops/402520"], ["https://data.delijn.be/stops/300099", "https://data.delijn.be/stops/307357"], ["https://data.delijn.be/stops/502350", "https://data.delijn.be/stops/505141"], ["https://data.delijn.be/stops/300733", "https://data.delijn.be/stops/300737"], ["https://data.delijn.be/stops/305957", "https://data.delijn.be/stops/305958"], ["https://data.delijn.be/stops/210014", "https://data.delijn.be/stops/502277"], ["https://data.delijn.be/stops/302729", "https://data.delijn.be/stops/305635"], ["https://data.delijn.be/stops/302313", "https://data.delijn.be/stops/306689"], ["https://data.delijn.be/stops/504118", "https://data.delijn.be/stops/509397"], ["https://data.delijn.be/stops/502361", "https://data.delijn.be/stops/502797"], ["https://data.delijn.be/stops/405950", "https://data.delijn.be/stops/405955"], ["https://data.delijn.be/stops/503984", "https://data.delijn.be/stops/509746"], ["https://data.delijn.be/stops/502029", "https://data.delijn.be/stops/507058"], ["https://data.delijn.be/stops/303396", "https://data.delijn.be/stops/307135"], ["https://data.delijn.be/stops/408666", "https://data.delijn.be/stops/408767"], ["https://data.delijn.be/stops/301801", "https://data.delijn.be/stops/301821"], ["https://data.delijn.be/stops/404915", "https://data.delijn.be/stops/404926"], ["https://data.delijn.be/stops/302016", "https://data.delijn.be/stops/308755"], ["https://data.delijn.be/stops/505575", "https://data.delijn.be/stops/507683"], ["https://data.delijn.be/stops/303082", "https://data.delijn.be/stops/307331"], ["https://data.delijn.be/stops/404862", "https://data.delijn.be/stops/404867"], ["https://data.delijn.be/stops/203028", "https://data.delijn.be/stops/203029"], ["https://data.delijn.be/stops/404436", "https://data.delijn.be/stops/404491"], ["https://data.delijn.be/stops/200922", "https://data.delijn.be/stops/200940"], ["https://data.delijn.be/stops/304883", "https://data.delijn.be/stops/307830"], ["https://data.delijn.be/stops/108940", "https://data.delijn.be/stops/109100"], ["https://data.delijn.be/stops/402863", "https://data.delijn.be/stops/408081"], ["https://data.delijn.be/stops/406032", "https://data.delijn.be/stops/406649"], ["https://data.delijn.be/stops/108299", "https://data.delijn.be/stops/109304"], ["https://data.delijn.be/stops/209163", "https://data.delijn.be/stops/219005"], ["https://data.delijn.be/stops/201121", "https://data.delijn.be/stops/203952"], ["https://data.delijn.be/stops/102913", "https://data.delijn.be/stops/106719"], ["https://data.delijn.be/stops/502344", "https://data.delijn.be/stops/505418"], ["https://data.delijn.be/stops/102672", "https://data.delijn.be/stops/106213"], ["https://data.delijn.be/stops/304793", "https://data.delijn.be/stops/304794"], ["https://data.delijn.be/stops/304944", "https://data.delijn.be/stops/304945"], ["https://data.delijn.be/stops/306248", "https://data.delijn.be/stops/306251"], ["https://data.delijn.be/stops/201467", "https://data.delijn.be/stops/203774"], ["https://data.delijn.be/stops/101350", "https://data.delijn.be/stops/101360"], ["https://data.delijn.be/stops/202410", "https://data.delijn.be/stops/203420"], ["https://data.delijn.be/stops/201664", "https://data.delijn.be/stops/201836"], ["https://data.delijn.be/stops/300157", "https://data.delijn.be/stops/308789"], ["https://data.delijn.be/stops/509006", "https://data.delijn.be/stops/509533"], ["https://data.delijn.be/stops/304336", "https://data.delijn.be/stops/304707"], ["https://data.delijn.be/stops/302657", "https://data.delijn.be/stops/303295"], ["https://data.delijn.be/stops/207800", "https://data.delijn.be/stops/208544"], ["https://data.delijn.be/stops/504783", "https://data.delijn.be/stops/505946"], ["https://data.delijn.be/stops/405828", "https://data.delijn.be/stops/405883"], ["https://data.delijn.be/stops/404116", "https://data.delijn.be/stops/404117"], ["https://data.delijn.be/stops/403198", "https://data.delijn.be/stops/403279"], ["https://data.delijn.be/stops/405043", "https://data.delijn.be/stops/405893"], ["https://data.delijn.be/stops/504623", "https://data.delijn.be/stops/504626"], ["https://data.delijn.be/stops/303300", "https://data.delijn.be/stops/305121"], ["https://data.delijn.be/stops/401762", "https://data.delijn.be/stops/401764"], ["https://data.delijn.be/stops/405327", "https://data.delijn.be/stops/405336"], ["https://data.delijn.be/stops/105261", "https://data.delijn.be/stops/105264"], ["https://data.delijn.be/stops/501558", "https://data.delijn.be/stops/501741"], ["https://data.delijn.be/stops/407858", "https://data.delijn.be/stops/408167"], ["https://data.delijn.be/stops/202496", "https://data.delijn.be/stops/203175"], ["https://data.delijn.be/stops/204028", "https://data.delijn.be/stops/204029"], ["https://data.delijn.be/stops/203518", "https://data.delijn.be/stops/203519"], ["https://data.delijn.be/stops/407613", "https://data.delijn.be/stops/407689"], ["https://data.delijn.be/stops/206175", "https://data.delijn.be/stops/206479"], ["https://data.delijn.be/stops/304816", "https://data.delijn.be/stops/304825"], ["https://data.delijn.be/stops/105307", "https://data.delijn.be/stops/105308"], ["https://data.delijn.be/stops/407002", "https://data.delijn.be/stops/407004"], ["https://data.delijn.be/stops/308521", "https://data.delijn.be/stops/308522"], ["https://data.delijn.be/stops/502547", "https://data.delijn.be/stops/505584"], ["https://data.delijn.be/stops/303637", "https://data.delijn.be/stops/307883"], ["https://data.delijn.be/stops/103330", "https://data.delijn.be/stops/104363"], ["https://data.delijn.be/stops/105664", "https://data.delijn.be/stops/109895"], ["https://data.delijn.be/stops/504291", "https://data.delijn.be/stops/509291"], ["https://data.delijn.be/stops/301861", "https://data.delijn.be/stops/305465"], ["https://data.delijn.be/stops/502751", "https://data.delijn.be/stops/502752"], ["https://data.delijn.be/stops/108940", "https://data.delijn.be/stops/109731"], ["https://data.delijn.be/stops/109256", "https://data.delijn.be/stops/109712"], ["https://data.delijn.be/stops/302014", "https://data.delijn.be/stops/307819"], ["https://data.delijn.be/stops/102607", "https://data.delijn.be/stops/105522"], ["https://data.delijn.be/stops/305079", "https://data.delijn.be/stops/306953"], ["https://data.delijn.be/stops/203907", "https://data.delijn.be/stops/219953"], ["https://data.delijn.be/stops/103931", "https://data.delijn.be/stops/104904"], ["https://data.delijn.be/stops/405860", "https://data.delijn.be/stops/409739"], ["https://data.delijn.be/stops/503076", "https://data.delijn.be/stops/503244"], ["https://data.delijn.be/stops/104119", "https://data.delijn.be/stops/104127"], ["https://data.delijn.be/stops/301919", "https://data.delijn.be/stops/301990"], ["https://data.delijn.be/stops/206564", "https://data.delijn.be/stops/207563"], ["https://data.delijn.be/stops/403150", "https://data.delijn.be/stops/407586"], ["https://data.delijn.be/stops/206964", "https://data.delijn.be/stops/207041"], ["https://data.delijn.be/stops/302274", "https://data.delijn.be/stops/302275"], ["https://data.delijn.be/stops/103592", "https://data.delijn.be/stops/109129"], ["https://data.delijn.be/stops/303146", "https://data.delijn.be/stops/303147"], ["https://data.delijn.be/stops/201638", "https://data.delijn.be/stops/203942"], ["https://data.delijn.be/stops/304062", "https://data.delijn.be/stops/304082"], ["https://data.delijn.be/stops/308524", "https://data.delijn.be/stops/308527"], ["https://data.delijn.be/stops/305550", "https://data.delijn.be/stops/305580"], ["https://data.delijn.be/stops/206476", "https://data.delijn.be/stops/207476"], ["https://data.delijn.be/stops/108296", "https://data.delijn.be/stops/109363"], ["https://data.delijn.be/stops/406082", "https://data.delijn.be/stops/406083"], ["https://data.delijn.be/stops/101463", "https://data.delijn.be/stops/101464"], ["https://data.delijn.be/stops/404694", "https://data.delijn.be/stops/407254"], ["https://data.delijn.be/stops/107691", "https://data.delijn.be/stops/107722"], ["https://data.delijn.be/stops/209709", "https://data.delijn.be/stops/218017"], ["https://data.delijn.be/stops/300059", "https://data.delijn.be/stops/306835"], ["https://data.delijn.be/stops/200947", "https://data.delijn.be/stops/203232"], ["https://data.delijn.be/stops/405527", "https://data.delijn.be/stops/407275"], ["https://data.delijn.be/stops/102747", "https://data.delijn.be/stops/107404"], ["https://data.delijn.be/stops/208502", "https://data.delijn.be/stops/209618"], ["https://data.delijn.be/stops/404444", "https://data.delijn.be/stops/404564"], ["https://data.delijn.be/stops/503913", "https://data.delijn.be/stops/508921"], ["https://data.delijn.be/stops/501368", "https://data.delijn.be/stops/506368"], ["https://data.delijn.be/stops/407381", "https://data.delijn.be/stops/407857"], ["https://data.delijn.be/stops/402514", "https://data.delijn.be/stops/402515"], ["https://data.delijn.be/stops/200534", "https://data.delijn.be/stops/210091"], ["https://data.delijn.be/stops/308465", "https://data.delijn.be/stops/308466"], ["https://data.delijn.be/stops/107649", "https://data.delijn.be/stops/108954"], ["https://data.delijn.be/stops/407173", "https://data.delijn.be/stops/410094"], ["https://data.delijn.be/stops/103108", "https://data.delijn.be/stops/105345"], ["https://data.delijn.be/stops/401123", "https://data.delijn.be/stops/409816"], ["https://data.delijn.be/stops/400714", "https://data.delijn.be/stops/400715"], ["https://data.delijn.be/stops/302469", "https://data.delijn.be/stops/306744"], ["https://data.delijn.be/stops/504150", "https://data.delijn.be/stops/505415"], ["https://data.delijn.be/stops/201206", "https://data.delijn.be/stops/201615"], ["https://data.delijn.be/stops/207185", "https://data.delijn.be/stops/207956"], ["https://data.delijn.be/stops/404845", "https://data.delijn.be/stops/409624"], ["https://data.delijn.be/stops/108844", "https://data.delijn.be/stops/108859"], ["https://data.delijn.be/stops/301457", "https://data.delijn.be/stops/301499"], ["https://data.delijn.be/stops/302263", "https://data.delijn.be/stops/303194"], ["https://data.delijn.be/stops/103066", "https://data.delijn.be/stops/106837"], ["https://data.delijn.be/stops/302727", "https://data.delijn.be/stops/308594"], ["https://data.delijn.be/stops/302869", "https://data.delijn.be/stops/302895"], ["https://data.delijn.be/stops/109041", "https://data.delijn.be/stops/109086"], ["https://data.delijn.be/stops/300295", "https://data.delijn.be/stops/300332"], ["https://data.delijn.be/stops/109657", "https://data.delijn.be/stops/406514"], ["https://data.delijn.be/stops/108453", "https://data.delijn.be/stops/108512"], ["https://data.delijn.be/stops/402503", "https://data.delijn.be/stops/402504"], ["https://data.delijn.be/stops/206891", "https://data.delijn.be/stops/206892"], ["https://data.delijn.be/stops/302008", "https://data.delijn.be/stops/306380"], ["https://data.delijn.be/stops/406202", "https://data.delijn.be/stops/410251"], ["https://data.delijn.be/stops/206898", "https://data.delijn.be/stops/207702"], ["https://data.delijn.be/stops/200714", "https://data.delijn.be/stops/201716"], ["https://data.delijn.be/stops/402967", "https://data.delijn.be/stops/402973"], ["https://data.delijn.be/stops/206469", "https://data.delijn.be/stops/206825"], ["https://data.delijn.be/stops/204644", "https://data.delijn.be/stops/204645"], ["https://data.delijn.be/stops/101430", "https://data.delijn.be/stops/103080"], ["https://data.delijn.be/stops/504705", "https://data.delijn.be/stops/509505"], ["https://data.delijn.be/stops/300281", "https://data.delijn.be/stops/300300"], ["https://data.delijn.be/stops/304555", "https://data.delijn.be/stops/304556"], ["https://data.delijn.be/stops/206102", "https://data.delijn.be/stops/207102"], ["https://data.delijn.be/stops/505517", "https://data.delijn.be/stops/505603"], ["https://data.delijn.be/stops/202825", "https://data.delijn.be/stops/211022"], ["https://data.delijn.be/stops/403911", "https://data.delijn.be/stops/403958"], ["https://data.delijn.be/stops/101500", "https://data.delijn.be/stops/308505"], ["https://data.delijn.be/stops/503558", "https://data.delijn.be/stops/503581"], ["https://data.delijn.be/stops/301371", "https://data.delijn.be/stops/308769"], ["https://data.delijn.be/stops/402262", "https://data.delijn.be/stops/402472"], ["https://data.delijn.be/stops/302133", "https://data.delijn.be/stops/302140"], ["https://data.delijn.be/stops/401163", "https://data.delijn.be/stops/401164"], ["https://data.delijn.be/stops/109173", "https://data.delijn.be/stops/109233"], ["https://data.delijn.be/stops/305209", "https://data.delijn.be/stops/306934"], ["https://data.delijn.be/stops/303513", "https://data.delijn.be/stops/303520"], ["https://data.delijn.be/stops/301077", "https://data.delijn.be/stops/301079"], ["https://data.delijn.be/stops/504556", "https://data.delijn.be/stops/506001"], ["https://data.delijn.be/stops/204223", "https://data.delijn.be/stops/204248"], ["https://data.delijn.be/stops/400734", "https://data.delijn.be/stops/403586"], ["https://data.delijn.be/stops/206641", "https://data.delijn.be/stops/206642"], ["https://data.delijn.be/stops/400756", "https://data.delijn.be/stops/407663"], ["https://data.delijn.be/stops/305524", "https://data.delijn.be/stops/307015"], ["https://data.delijn.be/stops/102072", "https://data.delijn.be/stops/106929"], ["https://data.delijn.be/stops/406621", "https://data.delijn.be/stops/406628"], ["https://data.delijn.be/stops/503381", "https://data.delijn.be/stops/509788"], ["https://data.delijn.be/stops/303070", "https://data.delijn.be/stops/303071"], ["https://data.delijn.be/stops/507812", "https://data.delijn.be/stops/508002"], ["https://data.delijn.be/stops/104028", "https://data.delijn.be/stops/107314"], ["https://data.delijn.be/stops/404359", "https://data.delijn.be/stops/404893"], ["https://data.delijn.be/stops/202348", "https://data.delijn.be/stops/203348"], ["https://data.delijn.be/stops/107642", "https://data.delijn.be/stops/305625"], ["https://data.delijn.be/stops/201288", "https://data.delijn.be/stops/201344"], ["https://data.delijn.be/stops/403001", "https://data.delijn.be/stops/403289"], ["https://data.delijn.be/stops/209724", "https://data.delijn.be/stops/211048"], ["https://data.delijn.be/stops/400761", "https://data.delijn.be/stops/400804"], ["https://data.delijn.be/stops/206512", "https://data.delijn.be/stops/206847"], ["https://data.delijn.be/stops/504249", "https://data.delijn.be/stops/504483"], ["https://data.delijn.be/stops/201011", "https://data.delijn.be/stops/210021"], ["https://data.delijn.be/stops/301154", "https://data.delijn.be/stops/301156"], ["https://data.delijn.be/stops/106393", "https://data.delijn.be/stops/109134"], ["https://data.delijn.be/stops/101666", "https://data.delijn.be/stops/106490"], ["https://data.delijn.be/stops/204830", "https://data.delijn.be/stops/205830"], ["https://data.delijn.be/stops/408530", "https://data.delijn.be/stops/408734"], ["https://data.delijn.be/stops/201014", "https://data.delijn.be/stops/201351"], ["https://data.delijn.be/stops/102431", "https://data.delijn.be/stops/109097"], ["https://data.delijn.be/stops/208546", "https://data.delijn.be/stops/208612"], ["https://data.delijn.be/stops/200171", "https://data.delijn.be/stops/201172"], ["https://data.delijn.be/stops/101426", "https://data.delijn.be/stops/106959"], ["https://data.delijn.be/stops/504881", "https://data.delijn.be/stops/507186"], ["https://data.delijn.be/stops/108656", "https://data.delijn.be/stops/108657"], ["https://data.delijn.be/stops/103609", "https://data.delijn.be/stops/106029"], ["https://data.delijn.be/stops/405660", "https://data.delijn.be/stops/306281"], ["https://data.delijn.be/stops/301772", "https://data.delijn.be/stops/301786"], ["https://data.delijn.be/stops/201917", "https://data.delijn.be/stops/206834"], ["https://data.delijn.be/stops/109178", "https://data.delijn.be/stops/109227"], ["https://data.delijn.be/stops/400327", "https://data.delijn.be/stops/406769"], ["https://data.delijn.be/stops/101418", "https://data.delijn.be/stops/101426"], ["https://data.delijn.be/stops/402044", "https://data.delijn.be/stops/402456"], ["https://data.delijn.be/stops/208767", "https://data.delijn.be/stops/505275"], ["https://data.delijn.be/stops/201706", "https://data.delijn.be/stops/203444"], ["https://data.delijn.be/stops/206752", "https://data.delijn.be/stops/209456"], ["https://data.delijn.be/stops/401243", "https://data.delijn.be/stops/401330"], ["https://data.delijn.be/stops/106257", "https://data.delijn.be/stops/106259"], ["https://data.delijn.be/stops/101460", "https://data.delijn.be/stops/102733"], ["https://data.delijn.be/stops/504680", "https://data.delijn.be/stops/505841"], ["https://data.delijn.be/stops/109542", "https://data.delijn.be/stops/109543"], ["https://data.delijn.be/stops/505536", "https://data.delijn.be/stops/505537"], ["https://data.delijn.be/stops/101554", "https://data.delijn.be/stops/107303"], ["https://data.delijn.be/stops/304894", "https://data.delijn.be/stops/306408"], ["https://data.delijn.be/stops/505628", "https://data.delijn.be/stops/507512"], ["https://data.delijn.be/stops/101799", "https://data.delijn.be/stops/104822"], ["https://data.delijn.be/stops/302776", "https://data.delijn.be/stops/302780"], ["https://data.delijn.be/stops/206046", "https://data.delijn.be/stops/206047"], ["https://data.delijn.be/stops/406068", "https://data.delijn.be/stops/406378"], ["https://data.delijn.be/stops/505570", "https://data.delijn.be/stops/508796"], ["https://data.delijn.be/stops/504145", "https://data.delijn.be/stops/505423"], ["https://data.delijn.be/stops/106585", "https://data.delijn.be/stops/106586"], ["https://data.delijn.be/stops/103113", "https://data.delijn.be/stops/106846"], ["https://data.delijn.be/stops/403323", "https://data.delijn.be/stops/407593"], ["https://data.delijn.be/stops/302351", "https://data.delijn.be/stops/302361"], ["https://data.delijn.be/stops/202312", "https://data.delijn.be/stops/203312"], ["https://data.delijn.be/stops/302703", "https://data.delijn.be/stops/302713"], ["https://data.delijn.be/stops/402181", "https://data.delijn.be/stops/402345"], ["https://data.delijn.be/stops/202613", "https://data.delijn.be/stops/203613"], ["https://data.delijn.be/stops/202187", "https://data.delijn.be/stops/203188"], ["https://data.delijn.be/stops/408220", "https://data.delijn.be/stops/408914"], ["https://data.delijn.be/stops/104025", "https://data.delijn.be/stops/106898"], ["https://data.delijn.be/stops/104094", "https://data.delijn.be/stops/104096"], ["https://data.delijn.be/stops/403111", "https://data.delijn.be/stops/403234"], ["https://data.delijn.be/stops/300196", "https://data.delijn.be/stops/300217"], ["https://data.delijn.be/stops/408018", "https://data.delijn.be/stops/408019"], ["https://data.delijn.be/stops/301000", "https://data.delijn.be/stops/306048"], ["https://data.delijn.be/stops/301371", "https://data.delijn.be/stops/301372"], ["https://data.delijn.be/stops/204030", "https://data.delijn.be/stops/205029"], ["https://data.delijn.be/stops/404324", "https://data.delijn.be/stops/404363"], ["https://data.delijn.be/stops/501134", "https://data.delijn.be/stops/506130"], ["https://data.delijn.be/stops/106535", "https://data.delijn.be/stops/107306"], ["https://data.delijn.be/stops/408767", "https://data.delijn.be/stops/408768"], ["https://data.delijn.be/stops/500042", "https://data.delijn.be/stops/507456"], ["https://data.delijn.be/stops/503553", "https://data.delijn.be/stops/503559"], ["https://data.delijn.be/stops/507438", "https://data.delijn.be/stops/507676"], ["https://data.delijn.be/stops/409458", "https://data.delijn.be/stops/410070"], ["https://data.delijn.be/stops/103223", "https://data.delijn.be/stops/107680"], ["https://data.delijn.be/stops/202970", "https://data.delijn.be/stops/203164"], ["https://data.delijn.be/stops/201183", "https://data.delijn.be/stops/203477"], ["https://data.delijn.be/stops/401463", "https://data.delijn.be/stops/410127"], ["https://data.delijn.be/stops/502684", "https://data.delijn.be/stops/507235"], ["https://data.delijn.be/stops/204672", "https://data.delijn.be/stops/205259"], ["https://data.delijn.be/stops/205497", "https://data.delijn.be/stops/205510"], ["https://data.delijn.be/stops/505069", "https://data.delijn.be/stops/505344"], ["https://data.delijn.be/stops/502543", "https://data.delijn.be/stops/505692"], ["https://data.delijn.be/stops/404619", "https://data.delijn.be/stops/406732"], ["https://data.delijn.be/stops/304111", "https://data.delijn.be/stops/304820"], ["https://data.delijn.be/stops/202064", "https://data.delijn.be/stops/203064"], ["https://data.delijn.be/stops/303808", "https://data.delijn.be/stops/307031"], ["https://data.delijn.be/stops/404339", "https://data.delijn.be/stops/409690"], ["https://data.delijn.be/stops/202327", "https://data.delijn.be/stops/202715"], ["https://data.delijn.be/stops/102742", "https://data.delijn.be/stops/103934"], ["https://data.delijn.be/stops/306916", "https://data.delijn.be/stops/308048"], ["https://data.delijn.be/stops/200681", "https://data.delijn.be/stops/202750"], ["https://data.delijn.be/stops/502425", "https://data.delijn.be/stops/507426"], ["https://data.delijn.be/stops/408087", "https://data.delijn.be/stops/408138"], ["https://data.delijn.be/stops/203665", "https://data.delijn.be/stops/203666"], ["https://data.delijn.be/stops/504421", "https://data.delijn.be/stops/509433"], ["https://data.delijn.be/stops/300410", "https://data.delijn.be/stops/304635"], ["https://data.delijn.be/stops/502665", "https://data.delijn.be/stops/507655"], ["https://data.delijn.be/stops/503143", "https://data.delijn.be/stops/508988"], ["https://data.delijn.be/stops/302455", "https://data.delijn.be/stops/304772"], ["https://data.delijn.be/stops/305989", "https://data.delijn.be/stops/305990"], ["https://data.delijn.be/stops/400458", "https://data.delijn.be/stops/400459"], ["https://data.delijn.be/stops/203087", "https://data.delijn.be/stops/203722"], ["https://data.delijn.be/stops/502446", "https://data.delijn.be/stops/502682"], ["https://data.delijn.be/stops/307153", "https://data.delijn.be/stops/307217"], ["https://data.delijn.be/stops/403928", "https://data.delijn.be/stops/403929"], ["https://data.delijn.be/stops/300480", "https://data.delijn.be/stops/300482"], ["https://data.delijn.be/stops/305691", "https://data.delijn.be/stops/305702"], ["https://data.delijn.be/stops/204929", "https://data.delijn.be/stops/208293"], ["https://data.delijn.be/stops/204504", "https://data.delijn.be/stops/205503"], ["https://data.delijn.be/stops/400584", "https://data.delijn.be/stops/400596"], ["https://data.delijn.be/stops/401344", "https://data.delijn.be/stops/404765"], ["https://data.delijn.be/stops/407661", "https://data.delijn.be/stops/409807"], ["https://data.delijn.be/stops/503492", "https://data.delijn.be/stops/503669"], ["https://data.delijn.be/stops/503147", "https://data.delijn.be/stops/503830"], ["https://data.delijn.be/stops/208067", "https://data.delijn.be/stops/209067"], ["https://data.delijn.be/stops/407337", "https://data.delijn.be/stops/409249"], ["https://data.delijn.be/stops/201070", "https://data.delijn.be/stops/210113"], ["https://data.delijn.be/stops/306775", "https://data.delijn.be/stops/306777"], ["https://data.delijn.be/stops/300285", "https://data.delijn.be/stops/306656"], ["https://data.delijn.be/stops/205109", "https://data.delijn.be/stops/205118"], ["https://data.delijn.be/stops/300126", "https://data.delijn.be/stops/306831"], ["https://data.delijn.be/stops/401642", "https://data.delijn.be/stops/408661"], ["https://data.delijn.be/stops/501292", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/209737", "https://data.delijn.be/stops/209738"], ["https://data.delijn.be/stops/305055", "https://data.delijn.be/stops/305057"], ["https://data.delijn.be/stops/506676", "https://data.delijn.be/stops/506677"], ["https://data.delijn.be/stops/207434", "https://data.delijn.be/stops/209560"], ["https://data.delijn.be/stops/103205", "https://data.delijn.be/stops/106436"], ["https://data.delijn.be/stops/302570", "https://data.delijn.be/stops/305124"], ["https://data.delijn.be/stops/404311", "https://data.delijn.be/stops/404649"], ["https://data.delijn.be/stops/408644", "https://data.delijn.be/stops/408660"], ["https://data.delijn.be/stops/504356", "https://data.delijn.be/stops/509355"], ["https://data.delijn.be/stops/501427", "https://data.delijn.be/stops/501669"], ["https://data.delijn.be/stops/101088", "https://data.delijn.be/stops/102009"], ["https://data.delijn.be/stops/407582", "https://data.delijn.be/stops/408890"], ["https://data.delijn.be/stops/208361", "https://data.delijn.be/stops/209376"], ["https://data.delijn.be/stops/306866", "https://data.delijn.be/stops/307354"], ["https://data.delijn.be/stops/503762", "https://data.delijn.be/stops/503765"], ["https://data.delijn.be/stops/406522", "https://data.delijn.be/stops/406603"], ["https://data.delijn.be/stops/504218", "https://data.delijn.be/stops/504219"], ["https://data.delijn.be/stops/202534", "https://data.delijn.be/stops/205243"], ["https://data.delijn.be/stops/505245", "https://data.delijn.be/stops/505697"], ["https://data.delijn.be/stops/504113", "https://data.delijn.be/stops/509114"], ["https://data.delijn.be/stops/203243", "https://data.delijn.be/stops/203486"], ["https://data.delijn.be/stops/204259", "https://data.delijn.be/stops/205419"], ["https://data.delijn.be/stops/106945", "https://data.delijn.be/stops/106946"], ["https://data.delijn.be/stops/108527", "https://data.delijn.be/stops/108528"], ["https://data.delijn.be/stops/303066", "https://data.delijn.be/stops/303094"], ["https://data.delijn.be/stops/300002", "https://data.delijn.be/stops/302528"], ["https://data.delijn.be/stops/502380", "https://data.delijn.be/stops/507396"], ["https://data.delijn.be/stops/108454", "https://data.delijn.be/stops/108510"], ["https://data.delijn.be/stops/505091", "https://data.delijn.be/stops/508588"], ["https://data.delijn.be/stops/503781", "https://data.delijn.be/stops/503787"], ["https://data.delijn.be/stops/106141", "https://data.delijn.be/stops/106142"], ["https://data.delijn.be/stops/501128", "https://data.delijn.be/stops/501137"], ["https://data.delijn.be/stops/407049", "https://data.delijn.be/stops/407063"], ["https://data.delijn.be/stops/200330", "https://data.delijn.be/stops/202199"], ["https://data.delijn.be/stops/207044", "https://data.delijn.be/stops/207967"], ["https://data.delijn.be/stops/503557", "https://data.delijn.be/stops/505191"], ["https://data.delijn.be/stops/504758", "https://data.delijn.be/stops/507023"], ["https://data.delijn.be/stops/505843", "https://data.delijn.be/stops/505914"], ["https://data.delijn.be/stops/208453", "https://data.delijn.be/stops/209444"], ["https://data.delijn.be/stops/403986", "https://data.delijn.be/stops/404021"], ["https://data.delijn.be/stops/307353", "https://data.delijn.be/stops/307430"], ["https://data.delijn.be/stops/401790", "https://data.delijn.be/stops/406121"], ["https://data.delijn.be/stops/304957", "https://data.delijn.be/stops/304966"], ["https://data.delijn.be/stops/502747", "https://data.delijn.be/stops/505326"], ["https://data.delijn.be/stops/501026", "https://data.delijn.be/stops/506026"], ["https://data.delijn.be/stops/302712", "https://data.delijn.be/stops/308834"], ["https://data.delijn.be/stops/503754", "https://data.delijn.be/stops/508764"], ["https://data.delijn.be/stops/206904", "https://data.delijn.be/stops/207216"], ["https://data.delijn.be/stops/504064", "https://data.delijn.be/stops/504069"], ["https://data.delijn.be/stops/504532", "https://data.delijn.be/stops/504602"], ["https://data.delijn.be/stops/200355", "https://data.delijn.be/stops/209948"], ["https://data.delijn.be/stops/508059", "https://data.delijn.be/stops/508117"], ["https://data.delijn.be/stops/202890", "https://data.delijn.be/stops/219953"], ["https://data.delijn.be/stops/207884", "https://data.delijn.be/stops/207889"], ["https://data.delijn.be/stops/208532", "https://data.delijn.be/stops/209480"], ["https://data.delijn.be/stops/202778", "https://data.delijn.be/stops/203767"], ["https://data.delijn.be/stops/305703", "https://data.delijn.be/stops/305704"], ["https://data.delijn.be/stops/303995", "https://data.delijn.be/stops/306187"], ["https://data.delijn.be/stops/505290", "https://data.delijn.be/stops/508904"], ["https://data.delijn.be/stops/104781", "https://data.delijn.be/stops/108119"], ["https://data.delijn.be/stops/201920", "https://data.delijn.be/stops/202241"], ["https://data.delijn.be/stops/502032", "https://data.delijn.be/stops/507052"], ["https://data.delijn.be/stops/306614", "https://data.delijn.be/stops/306617"], ["https://data.delijn.be/stops/400917", "https://data.delijn.be/stops/400918"], ["https://data.delijn.be/stops/304037", "https://data.delijn.be/stops/304076"], ["https://data.delijn.be/stops/205661", "https://data.delijn.be/stops/205662"], ["https://data.delijn.be/stops/400327", "https://data.delijn.be/stops/400355"], ["https://data.delijn.be/stops/503410", "https://data.delijn.be/stops/508410"], ["https://data.delijn.be/stops/206636", "https://data.delijn.be/stops/207890"], ["https://data.delijn.be/stops/104691", "https://data.delijn.be/stops/107363"], ["https://data.delijn.be/stops/502227", "https://data.delijn.be/stops/507230"], ["https://data.delijn.be/stops/502113", "https://data.delijn.be/stops/502164"], ["https://data.delijn.be/stops/404555", "https://data.delijn.be/stops/404574"], ["https://data.delijn.be/stops/200606", "https://data.delijn.be/stops/201941"], ["https://data.delijn.be/stops/503581", "https://data.delijn.be/stops/503584"], ["https://data.delijn.be/stops/207964", "https://data.delijn.be/stops/217003"], ["https://data.delijn.be/stops/409590", "https://data.delijn.be/stops/409594"], ["https://data.delijn.be/stops/206602", "https://data.delijn.be/stops/307771"], ["https://data.delijn.be/stops/407245", "https://data.delijn.be/stops/407556"], ["https://data.delijn.be/stops/504477", "https://data.delijn.be/stops/509157"], ["https://data.delijn.be/stops/407972", "https://data.delijn.be/stops/307797"], ["https://data.delijn.be/stops/504292", "https://data.delijn.be/stops/504307"], ["https://data.delijn.be/stops/301565", "https://data.delijn.be/stops/301578"], ["https://data.delijn.be/stops/503276", "https://data.delijn.be/stops/503281"], ["https://data.delijn.be/stops/206597", "https://data.delijn.be/stops/207417"], ["https://data.delijn.be/stops/504485", "https://data.delijn.be/stops/504723"], ["https://data.delijn.be/stops/207294", "https://data.delijn.be/stops/207817"], ["https://data.delijn.be/stops/502616", "https://data.delijn.be/stops/507616"], ["https://data.delijn.be/stops/402492", "https://data.delijn.be/stops/402498"], ["https://data.delijn.be/stops/301678", "https://data.delijn.be/stops/301680"], ["https://data.delijn.be/stops/400625", "https://data.delijn.be/stops/404293"], ["https://data.delijn.be/stops/200652", "https://data.delijn.be/stops/210067"], ["https://data.delijn.be/stops/504787", "https://data.delijn.be/stops/508275"], ["https://data.delijn.be/stops/204475", "https://data.delijn.be/stops/205474"], ["https://data.delijn.be/stops/202923", "https://data.delijn.be/stops/208695"], ["https://data.delijn.be/stops/200919", "https://data.delijn.be/stops/202048"], ["https://data.delijn.be/stops/206302", "https://data.delijn.be/stops/206914"], ["https://data.delijn.be/stops/403745", "https://data.delijn.be/stops/403817"], ["https://data.delijn.be/stops/300098", "https://data.delijn.be/stops/307098"], ["https://data.delijn.be/stops/409368", "https://data.delijn.be/stops/409441"], ["https://data.delijn.be/stops/504609", "https://data.delijn.be/stops/509614"], ["https://data.delijn.be/stops/200353", "https://data.delijn.be/stops/201017"], ["https://data.delijn.be/stops/207044", "https://data.delijn.be/stops/207269"], ["https://data.delijn.be/stops/207593", "https://data.delijn.be/stops/207948"], ["https://data.delijn.be/stops/102586", "https://data.delijn.be/stops/104818"], ["https://data.delijn.be/stops/106248", "https://data.delijn.be/stops/107234"], ["https://data.delijn.be/stops/205426", "https://data.delijn.be/stops/205441"], ["https://data.delijn.be/stops/402688", "https://data.delijn.be/stops/402743"], ["https://data.delijn.be/stops/301578", "https://data.delijn.be/stops/301579"], ["https://data.delijn.be/stops/103330", "https://data.delijn.be/stops/103331"], ["https://data.delijn.be/stops/408029", "https://data.delijn.be/stops/305731"], ["https://data.delijn.be/stops/401784", "https://data.delijn.be/stops/406092"], ["https://data.delijn.be/stops/503949", "https://data.delijn.be/stops/508648"], ["https://data.delijn.be/stops/107274", "https://data.delijn.be/stops/107393"], ["https://data.delijn.be/stops/504837", "https://data.delijn.be/stops/508481"], ["https://data.delijn.be/stops/107823", "https://data.delijn.be/stops/107824"], ["https://data.delijn.be/stops/500603", "https://data.delijn.be/stops/500604"], ["https://data.delijn.be/stops/503096", "https://data.delijn.be/stops/505383"], ["https://data.delijn.be/stops/204055", "https://data.delijn.be/stops/205058"], ["https://data.delijn.be/stops/409280", "https://data.delijn.be/stops/409292"], ["https://data.delijn.be/stops/105374", "https://data.delijn.be/stops/107502"], ["https://data.delijn.be/stops/503150", "https://data.delijn.be/stops/505201"], ["https://data.delijn.be/stops/101658", "https://data.delijn.be/stops/101660"], ["https://data.delijn.be/stops/207493", "https://data.delijn.be/stops/207494"], ["https://data.delijn.be/stops/203297", "https://data.delijn.be/stops/211854"], ["https://data.delijn.be/stops/502403", "https://data.delijn.be/stops/507402"], ["https://data.delijn.be/stops/302888", "https://data.delijn.be/stops/302902"], ["https://data.delijn.be/stops/304306", "https://data.delijn.be/stops/304307"], ["https://data.delijn.be/stops/506659", "https://data.delijn.be/stops/506661"], ["https://data.delijn.be/stops/107886", "https://data.delijn.be/stops/107908"], ["https://data.delijn.be/stops/503452", "https://data.delijn.be/stops/503468"], ["https://data.delijn.be/stops/301713", "https://data.delijn.be/stops/301714"], ["https://data.delijn.be/stops/102734", "https://data.delijn.be/stops/109795"], ["https://data.delijn.be/stops/308766", "https://data.delijn.be/stops/308768"], ["https://data.delijn.be/stops/207161", "https://data.delijn.be/stops/207449"], ["https://data.delijn.be/stops/300499", "https://data.delijn.be/stops/300513"], ["https://data.delijn.be/stops/503434", "https://data.delijn.be/stops/508369"], ["https://data.delijn.be/stops/407239", "https://data.delijn.be/stops/407512"], ["https://data.delijn.be/stops/408095", "https://data.delijn.be/stops/409113"], ["https://data.delijn.be/stops/206477", "https://data.delijn.be/stops/207476"], ["https://data.delijn.be/stops/403236", "https://data.delijn.be/stops/410061"], ["https://data.delijn.be/stops/305751", "https://data.delijn.be/stops/305752"], ["https://data.delijn.be/stops/102302", "https://data.delijn.be/stops/105106"], ["https://data.delijn.be/stops/300027", "https://data.delijn.be/stops/300065"], ["https://data.delijn.be/stops/504876", "https://data.delijn.be/stops/509876"], ["https://data.delijn.be/stops/204299", "https://data.delijn.be/stops/205305"], ["https://data.delijn.be/stops/506629", "https://data.delijn.be/stops/508132"], ["https://data.delijn.be/stops/400526", "https://data.delijn.be/stops/400527"], ["https://data.delijn.be/stops/203744", "https://data.delijn.be/stops/203946"], ["https://data.delijn.be/stops/200187", "https://data.delijn.be/stops/201187"], ["https://data.delijn.be/stops/304060", "https://data.delijn.be/stops/306004"], ["https://data.delijn.be/stops/403387", "https://data.delijn.be/stops/410279"], ["https://data.delijn.be/stops/308867", "https://data.delijn.be/stops/308869"], ["https://data.delijn.be/stops/106108", "https://data.delijn.be/stops/106110"], ["https://data.delijn.be/stops/102277", "https://data.delijn.be/stops/108033"], ["https://data.delijn.be/stops/307389", "https://data.delijn.be/stops/307392"], ["https://data.delijn.be/stops/301415", "https://data.delijn.be/stops/301416"], ["https://data.delijn.be/stops/102197", "https://data.delijn.be/stops/102198"], ["https://data.delijn.be/stops/207860", "https://data.delijn.be/stops/207861"], ["https://data.delijn.be/stops/305650", "https://data.delijn.be/stops/305663"], ["https://data.delijn.be/stops/405925", "https://data.delijn.be/stops/405976"], ["https://data.delijn.be/stops/501186", "https://data.delijn.be/stops/507290"], ["https://data.delijn.be/stops/505541", "https://data.delijn.be/stops/505542"], ["https://data.delijn.be/stops/102062", "https://data.delijn.be/stops/102067"], ["https://data.delijn.be/stops/104307", "https://data.delijn.be/stops/109747"], ["https://data.delijn.be/stops/501192", "https://data.delijn.be/stops/506193"], ["https://data.delijn.be/stops/400254", "https://data.delijn.be/stops/405578"], ["https://data.delijn.be/stops/304579", "https://data.delijn.be/stops/305529"], ["https://data.delijn.be/stops/105621", "https://data.delijn.be/stops/105649"], ["https://data.delijn.be/stops/304047", "https://data.delijn.be/stops/306277"], ["https://data.delijn.be/stops/505204", "https://data.delijn.be/stops/508153"], ["https://data.delijn.be/stops/205056", "https://data.delijn.be/stops/205057"], ["https://data.delijn.be/stops/202097", "https://data.delijn.be/stops/203098"], ["https://data.delijn.be/stops/204919", "https://data.delijn.be/stops/205913"], ["https://data.delijn.be/stops/306864", "https://data.delijn.be/stops/307438"], ["https://data.delijn.be/stops/202086", "https://data.delijn.be/stops/203086"], ["https://data.delijn.be/stops/401224", "https://data.delijn.be/stops/401557"], ["https://data.delijn.be/stops/405375", "https://data.delijn.be/stops/409320"], ["https://data.delijn.be/stops/308501", "https://data.delijn.be/stops/308522"], ["https://data.delijn.be/stops/404762", "https://data.delijn.be/stops/404825"], ["https://data.delijn.be/stops/206133", "https://data.delijn.be/stops/207133"], ["https://data.delijn.be/stops/504557", "https://data.delijn.be/stops/509557"], ["https://data.delijn.be/stops/206592", "https://data.delijn.be/stops/207592"], ["https://data.delijn.be/stops/402662", "https://data.delijn.be/stops/410057"], ["https://data.delijn.be/stops/404776", "https://data.delijn.be/stops/410051"], ["https://data.delijn.be/stops/404057", "https://data.delijn.be/stops/404058"], ["https://data.delijn.be/stops/501183", "https://data.delijn.be/stops/504495"], ["https://data.delijn.be/stops/303168", "https://data.delijn.be/stops/303172"], ["https://data.delijn.be/stops/202057", "https://data.delijn.be/stops/211104"], ["https://data.delijn.be/stops/502443", "https://data.delijn.be/stops/502589"], ["https://data.delijn.be/stops/102283", "https://data.delijn.be/stops/106792"], ["https://data.delijn.be/stops/404859", "https://data.delijn.be/stops/404963"], ["https://data.delijn.be/stops/201443", "https://data.delijn.be/stops/202134"], ["https://data.delijn.be/stops/206458", "https://data.delijn.be/stops/207459"], ["https://data.delijn.be/stops/104285", "https://data.delijn.be/stops/104650"], ["https://data.delijn.be/stops/300145", "https://data.delijn.be/stops/300146"], ["https://data.delijn.be/stops/209084", "https://data.delijn.be/stops/209619"], ["https://data.delijn.be/stops/404460", "https://data.delijn.be/stops/404491"], ["https://data.delijn.be/stops/302167", "https://data.delijn.be/stops/308098"], ["https://data.delijn.be/stops/503542", "https://data.delijn.be/stops/508541"], ["https://data.delijn.be/stops/206957", "https://data.delijn.be/stops/207182"], ["https://data.delijn.be/stops/301650", "https://data.delijn.be/stops/306143"], ["https://data.delijn.be/stops/407160", "https://data.delijn.be/stops/407193"], ["https://data.delijn.be/stops/305527", "https://data.delijn.be/stops/308980"], ["https://data.delijn.be/stops/205151", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/202596", "https://data.delijn.be/stops/203596"], ["https://data.delijn.be/stops/202432", "https://data.delijn.be/stops/204559"], ["https://data.delijn.be/stops/301582", "https://data.delijn.be/stops/303414"], ["https://data.delijn.be/stops/201847", "https://data.delijn.be/stops/202652"], ["https://data.delijn.be/stops/209278", "https://data.delijn.be/stops/209495"], ["https://data.delijn.be/stops/204345", "https://data.delijn.be/stops/205344"], ["https://data.delijn.be/stops/507511", "https://data.delijn.be/stops/507636"], ["https://data.delijn.be/stops/301083", "https://data.delijn.be/stops/301086"], ["https://data.delijn.be/stops/101804", "https://data.delijn.be/stops/104651"], ["https://data.delijn.be/stops/204687", "https://data.delijn.be/stops/205687"], ["https://data.delijn.be/stops/308786", "https://data.delijn.be/stops/308787"], ["https://data.delijn.be/stops/503471", "https://data.delijn.be/stops/508947"], ["https://data.delijn.be/stops/204158", "https://data.delijn.be/stops/207274"], ["https://data.delijn.be/stops/207510", "https://data.delijn.be/stops/207825"], ["https://data.delijn.be/stops/505381", "https://data.delijn.be/stops/505382"], ["https://data.delijn.be/stops/200475", "https://data.delijn.be/stops/201317"], ["https://data.delijn.be/stops/504171", "https://data.delijn.be/stops/504348"], ["https://data.delijn.be/stops/504170", "https://data.delijn.be/stops/504710"], ["https://data.delijn.be/stops/101167", "https://data.delijn.be/stops/103775"], ["https://data.delijn.be/stops/402829", "https://data.delijn.be/stops/402840"], ["https://data.delijn.be/stops/207278", "https://data.delijn.be/stops/207279"], ["https://data.delijn.be/stops/106466", "https://data.delijn.be/stops/106468"], ["https://data.delijn.be/stops/104043", "https://data.delijn.be/stops/108416"], ["https://data.delijn.be/stops/200901", "https://data.delijn.be/stops/210006"], ["https://data.delijn.be/stops/408185", "https://data.delijn.be/stops/408443"], ["https://data.delijn.be/stops/307157", "https://data.delijn.be/stops/307158"], ["https://data.delijn.be/stops/300414", "https://data.delijn.be/stops/307891"], ["https://data.delijn.be/stops/503371", "https://data.delijn.be/stops/509939"], ["https://data.delijn.be/stops/108371", "https://data.delijn.be/stops/108461"], ["https://data.delijn.be/stops/201765", "https://data.delijn.be/stops/209265"], ["https://data.delijn.be/stops/505268", "https://data.delijn.be/stops/508331"], ["https://data.delijn.be/stops/403093", "https://data.delijn.be/stops/403120"], ["https://data.delijn.be/stops/508251", "https://data.delijn.be/stops/509762"], ["https://data.delijn.be/stops/402369", "https://data.delijn.be/stops/405575"], ["https://data.delijn.be/stops/401769", "https://data.delijn.be/stops/401833"], ["https://data.delijn.be/stops/303540", "https://data.delijn.be/stops/303541"], ["https://data.delijn.be/stops/303844", "https://data.delijn.be/stops/308574"], ["https://data.delijn.be/stops/300759", "https://data.delijn.be/stops/300951"], ["https://data.delijn.be/stops/303717", "https://data.delijn.be/stops/303757"], ["https://data.delijn.be/stops/302448", "https://data.delijn.be/stops/302451"], ["https://data.delijn.be/stops/207176", "https://data.delijn.be/stops/207446"], ["https://data.delijn.be/stops/300877", "https://data.delijn.be/stops/300884"], ["https://data.delijn.be/stops/109697", "https://data.delijn.be/stops/406485"], ["https://data.delijn.be/stops/407897", "https://data.delijn.be/stops/303263"], ["https://data.delijn.be/stops/501386", "https://data.delijn.be/stops/506386"], ["https://data.delijn.be/stops/302677", "https://data.delijn.be/stops/302678"], ["https://data.delijn.be/stops/108712", "https://data.delijn.be/stops/108714"], ["https://data.delijn.be/stops/200506", "https://data.delijn.be/stops/211133"], ["https://data.delijn.be/stops/301464", "https://data.delijn.be/stops/305669"], ["https://data.delijn.be/stops/202148", "https://data.delijn.be/stops/203148"], ["https://data.delijn.be/stops/505906", "https://data.delijn.be/stops/508633"], ["https://data.delijn.be/stops/208394", "https://data.delijn.be/stops/208395"], ["https://data.delijn.be/stops/407848", "https://data.delijn.be/stops/407849"], ["https://data.delijn.be/stops/301506", "https://data.delijn.be/stops/301507"], ["https://data.delijn.be/stops/303387", "https://data.delijn.be/stops/303388"], ["https://data.delijn.be/stops/404014", "https://data.delijn.be/stops/404015"], ["https://data.delijn.be/stops/105899", "https://data.delijn.be/stops/105934"], ["https://data.delijn.be/stops/101856", "https://data.delijn.be/stops/104980"], ["https://data.delijn.be/stops/404108", "https://data.delijn.be/stops/404112"], ["https://data.delijn.be/stops/308267", "https://data.delijn.be/stops/308268"], ["https://data.delijn.be/stops/301930", "https://data.delijn.be/stops/304523"], ["https://data.delijn.be/stops/502660", "https://data.delijn.be/stops/502661"], ["https://data.delijn.be/stops/203712", "https://data.delijn.be/stops/203713"], ["https://data.delijn.be/stops/102738", "https://data.delijn.be/stops/105522"], ["https://data.delijn.be/stops/201275", "https://data.delijn.be/stops/201984"], ["https://data.delijn.be/stops/206774", "https://data.delijn.be/stops/208093"], ["https://data.delijn.be/stops/403065", "https://data.delijn.be/stops/403138"], ["https://data.delijn.be/stops/206749", "https://data.delijn.be/stops/207365"], ["https://data.delijn.be/stops/504783", "https://data.delijn.be/stops/508519"], ["https://data.delijn.be/stops/102157", "https://data.delijn.be/stops/104332"], ["https://data.delijn.be/stops/301827", "https://data.delijn.be/stops/308602"], ["https://data.delijn.be/stops/206675", "https://data.delijn.be/stops/209161"], ["https://data.delijn.be/stops/109806", "https://data.delijn.be/stops/109809"], ["https://data.delijn.be/stops/408982", "https://data.delijn.be/stops/408983"], ["https://data.delijn.be/stops/102136", "https://data.delijn.be/stops/102137"], ["https://data.delijn.be/stops/200976", "https://data.delijn.be/stops/207851"], ["https://data.delijn.be/stops/206307", "https://data.delijn.be/stops/206390"], ["https://data.delijn.be/stops/305428", "https://data.delijn.be/stops/305436"], ["https://data.delijn.be/stops/307392", "https://data.delijn.be/stops/308262"], ["https://data.delijn.be/stops/502348", "https://data.delijn.be/stops/505172"], ["https://data.delijn.be/stops/508746", "https://data.delijn.be/stops/508749"], ["https://data.delijn.be/stops/101222", "https://data.delijn.be/stops/107796"], ["https://data.delijn.be/stops/404258", "https://data.delijn.be/stops/409257"], ["https://data.delijn.be/stops/108465", "https://data.delijn.be/stops/109880"], ["https://data.delijn.be/stops/202835", "https://data.delijn.be/stops/203835"], ["https://data.delijn.be/stops/209299", "https://data.delijn.be/stops/218022"], ["https://data.delijn.be/stops/209575", "https://data.delijn.be/stops/306271"], ["https://data.delijn.be/stops/200867", "https://data.delijn.be/stops/202338"], ["https://data.delijn.be/stops/305959", "https://data.delijn.be/stops/305961"], ["https://data.delijn.be/stops/502640", "https://data.delijn.be/stops/506050"], ["https://data.delijn.be/stops/201893", "https://data.delijn.be/stops/202776"], ["https://data.delijn.be/stops/305654", "https://data.delijn.be/stops/305663"], ["https://data.delijn.be/stops/300962", "https://data.delijn.be/stops/300974"], ["https://data.delijn.be/stops/102131", "https://data.delijn.be/stops/105707"], ["https://data.delijn.be/stops/302125", "https://data.delijn.be/stops/302141"], ["https://data.delijn.be/stops/200732", "https://data.delijn.be/stops/203643"], ["https://data.delijn.be/stops/502252", "https://data.delijn.be/stops/502255"], ["https://data.delijn.be/stops/509002", "https://data.delijn.be/stops/509866"], ["https://data.delijn.be/stops/208535", "https://data.delijn.be/stops/209535"], ["https://data.delijn.be/stops/204712", "https://data.delijn.be/stops/205717"], ["https://data.delijn.be/stops/403176", "https://data.delijn.be/stops/403235"], ["https://data.delijn.be/stops/102520", "https://data.delijn.be/stops/104256"], ["https://data.delijn.be/stops/201533", "https://data.delijn.be/stops/201550"], ["https://data.delijn.be/stops/401839", "https://data.delijn.be/stops/406047"], ["https://data.delijn.be/stops/200224", "https://data.delijn.be/stops/201226"], ["https://data.delijn.be/stops/305426", "https://data.delijn.be/stops/305428"], ["https://data.delijn.be/stops/401013", "https://data.delijn.be/stops/401014"], ["https://data.delijn.be/stops/107146", "https://data.delijn.be/stops/107147"], ["https://data.delijn.be/stops/400577", "https://data.delijn.be/stops/410034"], ["https://data.delijn.be/stops/301520", "https://data.delijn.be/stops/308079"], ["https://data.delijn.be/stops/105826", "https://data.delijn.be/stops/105828"], ["https://data.delijn.be/stops/504246", "https://data.delijn.be/stops/504485"], ["https://data.delijn.be/stops/305875", "https://data.delijn.be/stops/308423"], ["https://data.delijn.be/stops/505203", "https://data.delijn.be/stops/507008"], ["https://data.delijn.be/stops/108635", "https://data.delijn.be/stops/109771"], ["https://data.delijn.be/stops/404746", "https://data.delijn.be/stops/404945"], ["https://data.delijn.be/stops/202672", "https://data.delijn.be/stops/203726"], ["https://data.delijn.be/stops/209234", "https://data.delijn.be/stops/209797"], ["https://data.delijn.be/stops/108967", "https://data.delijn.be/stops/401936"], ["https://data.delijn.be/stops/200920", "https://data.delijn.be/stops/203690"], ["https://data.delijn.be/stops/102233", "https://data.delijn.be/stops/105569"], ["https://data.delijn.be/stops/208719", "https://data.delijn.be/stops/209718"], ["https://data.delijn.be/stops/207796", "https://data.delijn.be/stops/208758"], ["https://data.delijn.be/stops/506299", "https://data.delijn.be/stops/506305"], ["https://data.delijn.be/stops/504061", "https://data.delijn.be/stops/509060"], ["https://data.delijn.be/stops/206768", "https://data.delijn.be/stops/207800"], ["https://data.delijn.be/stops/200752", "https://data.delijn.be/stops/200769"], ["https://data.delijn.be/stops/502439", "https://data.delijn.be/stops/505741"], ["https://data.delijn.be/stops/506412", "https://data.delijn.be/stops/506597"], ["https://data.delijn.be/stops/105941", "https://data.delijn.be/stops/105942"], ["https://data.delijn.be/stops/103127", "https://data.delijn.be/stops/105445"], ["https://data.delijn.be/stops/406970", "https://data.delijn.be/stops/409483"], ["https://data.delijn.be/stops/204703", "https://data.delijn.be/stops/205056"], ["https://data.delijn.be/stops/402596", "https://data.delijn.be/stops/404143"], ["https://data.delijn.be/stops/204613", "https://data.delijn.be/stops/205694"], ["https://data.delijn.be/stops/206339", "https://data.delijn.be/stops/206340"], ["https://data.delijn.be/stops/302987", "https://data.delijn.be/stops/303032"], ["https://data.delijn.be/stops/200505", "https://data.delijn.be/stops/201411"], ["https://data.delijn.be/stops/302443", "https://data.delijn.be/stops/302450"], ["https://data.delijn.be/stops/403291", "https://data.delijn.be/stops/409317"], ["https://data.delijn.be/stops/201470", "https://data.delijn.be/stops/201471"], ["https://data.delijn.be/stops/402738", "https://data.delijn.be/stops/407299"], ["https://data.delijn.be/stops/402605", "https://data.delijn.be/stops/402644"], ["https://data.delijn.be/stops/202674", "https://data.delijn.be/stops/202724"], ["https://data.delijn.be/stops/300623", "https://data.delijn.be/stops/300624"], ["https://data.delijn.be/stops/206068", "https://data.delijn.be/stops/207963"], ["https://data.delijn.be/stops/504006", "https://data.delijn.be/stops/509377"], ["https://data.delijn.be/stops/407284", "https://data.delijn.be/stops/409492"], ["https://data.delijn.be/stops/105236", "https://data.delijn.be/stops/105248"], ["https://data.delijn.be/stops/501320", "https://data.delijn.be/stops/501349"], ["https://data.delijn.be/stops/408239", "https://data.delijn.be/stops/408243"], ["https://data.delijn.be/stops/401192", "https://data.delijn.be/stops/401194"], ["https://data.delijn.be/stops/202696", "https://data.delijn.be/stops/203698"], ["https://data.delijn.be/stops/504318", "https://data.delijn.be/stops/507689"], ["https://data.delijn.be/stops/104456", "https://data.delijn.be/stops/104482"], ["https://data.delijn.be/stops/206343", "https://data.delijn.be/stops/207366"], ["https://data.delijn.be/stops/300318", "https://data.delijn.be/stops/300319"], ["https://data.delijn.be/stops/201282", "https://data.delijn.be/stops/202193"], ["https://data.delijn.be/stops/101331", "https://data.delijn.be/stops/101332"], ["https://data.delijn.be/stops/202979", "https://data.delijn.be/stops/205995"], ["https://data.delijn.be/stops/107267", "https://data.delijn.be/stops/107270"], ["https://data.delijn.be/stops/200836", "https://data.delijn.be/stops/200839"], ["https://data.delijn.be/stops/304703", "https://data.delijn.be/stops/306553"], ["https://data.delijn.be/stops/306160", "https://data.delijn.be/stops/306161"], ["https://data.delijn.be/stops/202130", "https://data.delijn.be/stops/203419"], ["https://data.delijn.be/stops/407083", "https://data.delijn.be/stops/407084"], ["https://data.delijn.be/stops/509334", "https://data.delijn.be/stops/509339"], ["https://data.delijn.be/stops/203114", "https://data.delijn.be/stops/204597"], ["https://data.delijn.be/stops/303626", "https://data.delijn.be/stops/307208"], ["https://data.delijn.be/stops/202091", "https://data.delijn.be/stops/203093"], ["https://data.delijn.be/stops/306903", "https://data.delijn.be/stops/308726"], ["https://data.delijn.be/stops/105290", "https://data.delijn.be/stops/109881"], ["https://data.delijn.be/stops/302898", "https://data.delijn.be/stops/302925"], ["https://data.delijn.be/stops/104602", "https://data.delijn.be/stops/108269"], ["https://data.delijn.be/stops/205556", "https://data.delijn.be/stops/211086"], ["https://data.delijn.be/stops/305675", "https://data.delijn.be/stops/305698"], ["https://data.delijn.be/stops/102310", "https://data.delijn.be/stops/109134"], ["https://data.delijn.be/stops/405556", "https://data.delijn.be/stops/405572"], ["https://data.delijn.be/stops/301781", "https://data.delijn.be/stops/305948"], ["https://data.delijn.be/stops/403517", "https://data.delijn.be/stops/403559"], ["https://data.delijn.be/stops/502273", "https://data.delijn.be/stops/502673"], ["https://data.delijn.be/stops/301539", "https://data.delijn.be/stops/301550"], ["https://data.delijn.be/stops/302494", "https://data.delijn.be/stops/308833"], ["https://data.delijn.be/stops/305177", "https://data.delijn.be/stops/305191"], ["https://data.delijn.be/stops/302517", "https://data.delijn.be/stops/302518"], ["https://data.delijn.be/stops/503688", "https://data.delijn.be/stops/503876"], ["https://data.delijn.be/stops/408495", "https://data.delijn.be/stops/408696"], ["https://data.delijn.be/stops/302107", "https://data.delijn.be/stops/302145"], ["https://data.delijn.be/stops/106781", "https://data.delijn.be/stops/106784"], ["https://data.delijn.be/stops/200962", "https://data.delijn.be/stops/203197"], ["https://data.delijn.be/stops/505097", "https://data.delijn.be/stops/505663"], ["https://data.delijn.be/stops/302018", "https://data.delijn.be/stops/307284"], ["https://data.delijn.be/stops/406556", "https://data.delijn.be/stops/406557"], ["https://data.delijn.be/stops/501365", "https://data.delijn.be/stops/590411"], ["https://data.delijn.be/stops/501088", "https://data.delijn.be/stops/506091"], ["https://data.delijn.be/stops/206318", "https://data.delijn.be/stops/206918"], ["https://data.delijn.be/stops/406005", "https://data.delijn.be/stops/406006"], ["https://data.delijn.be/stops/108913", "https://data.delijn.be/stops/108914"], ["https://data.delijn.be/stops/501114", "https://data.delijn.be/stops/506114"], ["https://data.delijn.be/stops/404909", "https://data.delijn.be/stops/404910"], ["https://data.delijn.be/stops/202679", "https://data.delijn.be/stops/203679"], ["https://data.delijn.be/stops/502047", "https://data.delijn.be/stops/507032"], ["https://data.delijn.be/stops/206022", "https://data.delijn.be/stops/207023"], ["https://data.delijn.be/stops/504389", "https://data.delijn.be/stops/504583"], ["https://data.delijn.be/stops/302590", "https://data.delijn.be/stops/302606"], ["https://data.delijn.be/stops/202037", "https://data.delijn.be/stops/202988"], ["https://data.delijn.be/stops/301930", "https://data.delijn.be/stops/306204"], ["https://data.delijn.be/stops/107015", "https://data.delijn.be/stops/107845"], ["https://data.delijn.be/stops/404588", "https://data.delijn.be/stops/406913"], ["https://data.delijn.be/stops/504723", "https://data.delijn.be/stops/509488"], ["https://data.delijn.be/stops/402577", "https://data.delijn.be/stops/402588"], ["https://data.delijn.be/stops/504764", "https://data.delijn.be/stops/508531"], ["https://data.delijn.be/stops/210116", "https://data.delijn.be/stops/210118"], ["https://data.delijn.be/stops/303652", "https://data.delijn.be/stops/304021"], ["https://data.delijn.be/stops/206098", "https://data.delijn.be/stops/206932"], ["https://data.delijn.be/stops/106689", "https://data.delijn.be/stops/106691"], ["https://data.delijn.be/stops/406311", "https://data.delijn.be/stops/406325"], ["https://data.delijn.be/stops/102760", "https://data.delijn.be/stops/105740"], ["https://data.delijn.be/stops/106104", "https://data.delijn.be/stops/106162"], ["https://data.delijn.be/stops/301847", "https://data.delijn.be/stops/305911"], ["https://data.delijn.be/stops/503430", "https://data.delijn.be/stops/508252"], ["https://data.delijn.be/stops/501009", "https://data.delijn.be/stops/506471"], ["https://data.delijn.be/stops/303082", "https://data.delijn.be/stops/303149"], ["https://data.delijn.be/stops/209597", "https://data.delijn.be/stops/301422"], ["https://data.delijn.be/stops/305128", "https://data.delijn.be/stops/305129"], ["https://data.delijn.be/stops/400443", "https://data.delijn.be/stops/400449"], ["https://data.delijn.be/stops/301507", "https://data.delijn.be/stops/307930"], ["https://data.delijn.be/stops/204207", "https://data.delijn.be/stops/204473"], ["https://data.delijn.be/stops/502042", "https://data.delijn.be/stops/507317"], ["https://data.delijn.be/stops/202279", "https://data.delijn.be/stops/202892"], ["https://data.delijn.be/stops/102384", "https://data.delijn.be/stops/106224"], ["https://data.delijn.be/stops/504751", "https://data.delijn.be/stops/509751"], ["https://data.delijn.be/stops/504434", "https://data.delijn.be/stops/509434"], ["https://data.delijn.be/stops/503025", "https://data.delijn.be/stops/503077"], ["https://data.delijn.be/stops/108820", "https://data.delijn.be/stops/109060"], ["https://data.delijn.be/stops/308819", "https://data.delijn.be/stops/308874"], ["https://data.delijn.be/stops/102849", "https://data.delijn.be/stops/106773"], ["https://data.delijn.be/stops/204385", "https://data.delijn.be/stops/204386"], ["https://data.delijn.be/stops/200975", "https://data.delijn.be/stops/206623"], ["https://data.delijn.be/stops/305157", "https://data.delijn.be/stops/305187"], ["https://data.delijn.be/stops/107114", "https://data.delijn.be/stops/107117"], ["https://data.delijn.be/stops/404772", "https://data.delijn.be/stops/404773"], ["https://data.delijn.be/stops/101535", "https://data.delijn.be/stops/109028"], ["https://data.delijn.be/stops/203167", "https://data.delijn.be/stops/203814"], ["https://data.delijn.be/stops/408236", "https://data.delijn.be/stops/308219"], ["https://data.delijn.be/stops/402203", "https://data.delijn.be/stops/402439"], ["https://data.delijn.be/stops/300464", "https://data.delijn.be/stops/304974"], ["https://data.delijn.be/stops/103272", "https://data.delijn.be/stops/108705"], ["https://data.delijn.be/stops/503147", "https://data.delijn.be/stops/508147"], ["https://data.delijn.be/stops/409076", "https://data.delijn.be/stops/409085"], ["https://data.delijn.be/stops/507307", "https://data.delijn.be/stops/507314"], ["https://data.delijn.be/stops/501489", "https://data.delijn.be/stops/506488"], ["https://data.delijn.be/stops/507467", "https://data.delijn.be/stops/507484"], ["https://data.delijn.be/stops/103998", "https://data.delijn.be/stops/104021"], ["https://data.delijn.be/stops/506229", "https://data.delijn.be/stops/506418"], ["https://data.delijn.be/stops/302006", "https://data.delijn.be/stops/303174"], ["https://data.delijn.be/stops/502367", "https://data.delijn.be/stops/507307"], ["https://data.delijn.be/stops/403747", "https://data.delijn.be/stops/403749"], ["https://data.delijn.be/stops/507450", "https://data.delijn.be/stops/509830"], ["https://data.delijn.be/stops/207689", "https://data.delijn.be/stops/207733"], ["https://data.delijn.be/stops/503727", "https://data.delijn.be/stops/508690"], ["https://data.delijn.be/stops/209348", "https://data.delijn.be/stops/209350"], ["https://data.delijn.be/stops/402283", "https://data.delijn.be/stops/405012"], ["https://data.delijn.be/stops/508456", "https://data.delijn.be/stops/508478"], ["https://data.delijn.be/stops/302623", "https://data.delijn.be/stops/308074"], ["https://data.delijn.be/stops/304241", "https://data.delijn.be/stops/306108"], ["https://data.delijn.be/stops/305266", "https://data.delijn.be/stops/305307"], ["https://data.delijn.be/stops/407618", "https://data.delijn.be/stops/409806"], ["https://data.delijn.be/stops/401104", "https://data.delijn.be/stops/409117"], ["https://data.delijn.be/stops/507274", "https://data.delijn.be/stops/508664"], ["https://data.delijn.be/stops/508387", "https://data.delijn.be/stops/508398"], ["https://data.delijn.be/stops/403618", "https://data.delijn.be/stops/403623"], ["https://data.delijn.be/stops/406012", "https://data.delijn.be/stops/406107"], ["https://data.delijn.be/stops/106132", "https://data.delijn.be/stops/109372"], ["https://data.delijn.be/stops/404852", "https://data.delijn.be/stops/405545"], ["https://data.delijn.be/stops/406457", "https://data.delijn.be/stops/406478"], ["https://data.delijn.be/stops/205395", "https://data.delijn.be/stops/205426"], ["https://data.delijn.be/stops/503818", "https://data.delijn.be/stops/503821"], ["https://data.delijn.be/stops/302116", "https://data.delijn.be/stops/302117"], ["https://data.delijn.be/stops/303336", "https://data.delijn.be/stops/303337"], ["https://data.delijn.be/stops/208815", "https://data.delijn.be/stops/209139"], ["https://data.delijn.be/stops/508347", "https://data.delijn.be/stops/508694"], ["https://data.delijn.be/stops/208676", "https://data.delijn.be/stops/208685"], ["https://data.delijn.be/stops/503505", "https://data.delijn.be/stops/505230"], ["https://data.delijn.be/stops/102161", "https://data.delijn.be/stops/108961"], ["https://data.delijn.be/stops/209681", "https://data.delijn.be/stops/209682"], ["https://data.delijn.be/stops/407203", "https://data.delijn.be/stops/407209"], ["https://data.delijn.be/stops/208509", "https://data.delijn.be/stops/209633"], ["https://data.delijn.be/stops/302869", "https://data.delijn.be/stops/303949"], ["https://data.delijn.be/stops/509157", "https://data.delijn.be/stops/509165"], ["https://data.delijn.be/stops/103753", "https://data.delijn.be/stops/105650"], ["https://data.delijn.be/stops/208446", "https://data.delijn.be/stops/209520"], ["https://data.delijn.be/stops/106796", "https://data.delijn.be/stops/106864"], ["https://data.delijn.be/stops/103990", "https://data.delijn.be/stops/104650"], ["https://data.delijn.be/stops/206684", "https://data.delijn.be/stops/206977"], ["https://data.delijn.be/stops/207441", "https://data.delijn.be/stops/209466"], ["https://data.delijn.be/stops/204114", "https://data.delijn.be/stops/205114"], ["https://data.delijn.be/stops/104510", "https://data.delijn.be/stops/105430"], ["https://data.delijn.be/stops/301046", "https://data.delijn.be/stops/301053"], ["https://data.delijn.be/stops/303190", "https://data.delijn.be/stops/303203"], ["https://data.delijn.be/stops/206611", "https://data.delijn.be/stops/207611"], ["https://data.delijn.be/stops/300021", "https://data.delijn.be/stops/300390"], ["https://data.delijn.be/stops/206717", "https://data.delijn.be/stops/206785"], ["https://data.delijn.be/stops/301461", "https://data.delijn.be/stops/307930"], ["https://data.delijn.be/stops/102736", "https://data.delijn.be/stops/102739"], ["https://data.delijn.be/stops/304259", "https://data.delijn.be/stops/306662"], ["https://data.delijn.be/stops/206157", "https://data.delijn.be/stops/206991"], ["https://data.delijn.be/stops/306961", "https://data.delijn.be/stops/306963"], ["https://data.delijn.be/stops/108929", "https://data.delijn.be/stops/108931"], ["https://data.delijn.be/stops/408622", "https://data.delijn.be/stops/408629"], ["https://data.delijn.be/stops/200457", "https://data.delijn.be/stops/200607"], ["https://data.delijn.be/stops/208615", "https://data.delijn.be/stops/307740"], ["https://data.delijn.be/stops/200345", "https://data.delijn.be/stops/208829"], ["https://data.delijn.be/stops/101061", "https://data.delijn.be/stops/101062"], ["https://data.delijn.be/stops/101969", "https://data.delijn.be/stops/108206"], ["https://data.delijn.be/stops/401112", "https://data.delijn.be/stops/401113"], ["https://data.delijn.be/stops/102535", "https://data.delijn.be/stops/103475"], ["https://data.delijn.be/stops/106828", "https://data.delijn.be/stops/109749"], ["https://data.delijn.be/stops/402241", "https://data.delijn.be/stops/402330"], ["https://data.delijn.be/stops/203822", "https://data.delijn.be/stops/219503"], ["https://data.delijn.be/stops/101885", "https://data.delijn.be/stops/102659"], ["https://data.delijn.be/stops/101577", "https://data.delijn.be/stops/103982"], ["https://data.delijn.be/stops/401511", "https://data.delijn.be/stops/402825"], ["https://data.delijn.be/stops/204072", "https://data.delijn.be/stops/205228"], ["https://data.delijn.be/stops/503282", "https://data.delijn.be/stops/504713"], ["https://data.delijn.be/stops/206027", "https://data.delijn.be/stops/207687"], ["https://data.delijn.be/stops/406911", "https://data.delijn.be/stops/406967"], ["https://data.delijn.be/stops/504374", "https://data.delijn.be/stops/509389"], ["https://data.delijn.be/stops/409370", "https://data.delijn.be/stops/409391"], ["https://data.delijn.be/stops/400643", "https://data.delijn.be/stops/408473"], ["https://data.delijn.be/stops/107796", "https://data.delijn.be/stops/107823"], ["https://data.delijn.be/stops/106498", "https://data.delijn.be/stops/109190"], ["https://data.delijn.be/stops/407968", "https://data.delijn.be/stops/407969"], ["https://data.delijn.be/stops/301293", "https://data.delijn.be/stops/301297"], ["https://data.delijn.be/stops/401373", "https://data.delijn.be/stops/401376"], ["https://data.delijn.be/stops/505986", "https://data.delijn.be/stops/508484"], ["https://data.delijn.be/stops/506041", "https://data.delijn.be/stops/506042"], ["https://data.delijn.be/stops/101924", "https://data.delijn.be/stops/107068"], ["https://data.delijn.be/stops/101417", "https://data.delijn.be/stops/108694"], ["https://data.delijn.be/stops/304923", "https://data.delijn.be/stops/305445"], ["https://data.delijn.be/stops/104557", "https://data.delijn.be/stops/107487"], ["https://data.delijn.be/stops/304286", "https://data.delijn.be/stops/306669"], ["https://data.delijn.be/stops/216018", "https://data.delijn.be/stops/217014"], ["https://data.delijn.be/stops/104759", "https://data.delijn.be/stops/108897"], ["https://data.delijn.be/stops/304695", "https://data.delijn.be/stops/306683"], ["https://data.delijn.be/stops/301485", "https://data.delijn.be/stops/301495"], ["https://data.delijn.be/stops/505817", "https://data.delijn.be/stops/509117"], ["https://data.delijn.be/stops/103758", "https://data.delijn.be/stops/103821"], ["https://data.delijn.be/stops/505213", "https://data.delijn.be/stops/505921"], ["https://data.delijn.be/stops/505543", "https://data.delijn.be/stops/509588"], ["https://data.delijn.be/stops/502052", "https://data.delijn.be/stops/507028"], ["https://data.delijn.be/stops/104028", "https://data.delijn.be/stops/104029"], ["https://data.delijn.be/stops/503193", "https://data.delijn.be/stops/503208"], ["https://data.delijn.be/stops/300111", "https://data.delijn.be/stops/300112"], ["https://data.delijn.be/stops/201263", "https://data.delijn.be/stops/202549"], ["https://data.delijn.be/stops/302143", "https://data.delijn.be/stops/306272"], ["https://data.delijn.be/stops/102875", "https://data.delijn.be/stops/102910"], ["https://data.delijn.be/stops/303285", "https://data.delijn.be/stops/303315"], ["https://data.delijn.be/stops/507764", "https://data.delijn.be/stops/509819"], ["https://data.delijn.be/stops/502572", "https://data.delijn.be/stops/506729"], ["https://data.delijn.be/stops/205310", "https://data.delijn.be/stops/205311"], ["https://data.delijn.be/stops/304567", "https://data.delijn.be/stops/304578"], ["https://data.delijn.be/stops/304856", "https://data.delijn.be/stops/304857"], ["https://data.delijn.be/stops/401386", "https://data.delijn.be/stops/410181"], ["https://data.delijn.be/stops/300230", "https://data.delijn.be/stops/300233"], ["https://data.delijn.be/stops/205284", "https://data.delijn.be/stops/205337"], ["https://data.delijn.be/stops/304876", "https://data.delijn.be/stops/307054"], ["https://data.delijn.be/stops/205817", "https://data.delijn.be/stops/205819"], ["https://data.delijn.be/stops/208477", "https://data.delijn.be/stops/209477"], ["https://data.delijn.be/stops/204154", "https://data.delijn.be/stops/204583"], ["https://data.delijn.be/stops/406879", "https://data.delijn.be/stops/409414"], ["https://data.delijn.be/stops/200975", "https://data.delijn.be/stops/206758"], ["https://data.delijn.be/stops/406076", "https://data.delijn.be/stops/406085"], ["https://data.delijn.be/stops/206504", "https://data.delijn.be/stops/207150"], ["https://data.delijn.be/stops/405641", "https://data.delijn.be/stops/405642"], ["https://data.delijn.be/stops/206895", "https://data.delijn.be/stops/207895"], ["https://data.delijn.be/stops/202165", "https://data.delijn.be/stops/203165"], ["https://data.delijn.be/stops/208552", "https://data.delijn.be/stops/208568"], ["https://data.delijn.be/stops/208153", "https://data.delijn.be/stops/209153"], ["https://data.delijn.be/stops/403283", "https://data.delijn.be/stops/403300"], ["https://data.delijn.be/stops/403659", "https://data.delijn.be/stops/404849"], ["https://data.delijn.be/stops/202497", "https://data.delijn.be/stops/209867"], ["https://data.delijn.be/stops/201162", "https://data.delijn.be/stops/201313"], ["https://data.delijn.be/stops/200904", "https://data.delijn.be/stops/200946"], ["https://data.delijn.be/stops/505534", "https://data.delijn.be/stops/508657"], ["https://data.delijn.be/stops/201744", "https://data.delijn.be/stops/203782"], ["https://data.delijn.be/stops/409277", "https://data.delijn.be/stops/409330"], ["https://data.delijn.be/stops/108048", "https://data.delijn.be/stops/108049"], ["https://data.delijn.be/stops/505034", "https://data.delijn.be/stops/505035"], ["https://data.delijn.be/stops/106180", "https://data.delijn.be/stops/107442"], ["https://data.delijn.be/stops/403911", "https://data.delijn.be/stops/404033"], ["https://data.delijn.be/stops/302196", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/409067", "https://data.delijn.be/stops/409156"], ["https://data.delijn.be/stops/400403", "https://data.delijn.be/stops/409431"], ["https://data.delijn.be/stops/501258", "https://data.delijn.be/stops/506259"], ["https://data.delijn.be/stops/404636", "https://data.delijn.be/stops/404637"], ["https://data.delijn.be/stops/302232", "https://data.delijn.be/stops/302241"], ["https://data.delijn.be/stops/107143", "https://data.delijn.be/stops/108931"], ["https://data.delijn.be/stops/504871", "https://data.delijn.be/stops/509967"], ["https://data.delijn.be/stops/204156", "https://data.delijn.be/stops/205156"], ["https://data.delijn.be/stops/505072", "https://data.delijn.be/stops/505756"], ["https://data.delijn.be/stops/407992", "https://data.delijn.be/stops/408089"], ["https://data.delijn.be/stops/407370", "https://data.delijn.be/stops/407371"], ["https://data.delijn.be/stops/109630", "https://data.delijn.be/stops/109632"], ["https://data.delijn.be/stops/104422", "https://data.delijn.be/stops/204287"], ["https://data.delijn.be/stops/102265", "https://data.delijn.be/stops/103353"], ["https://data.delijn.be/stops/300538", "https://data.delijn.be/stops/300539"], ["https://data.delijn.be/stops/103860", "https://data.delijn.be/stops/108060"], ["https://data.delijn.be/stops/305801", "https://data.delijn.be/stops/305802"], ["https://data.delijn.be/stops/206494", "https://data.delijn.be/stops/206495"], ["https://data.delijn.be/stops/400265", "https://data.delijn.be/stops/405534"], ["https://data.delijn.be/stops/202268", "https://data.delijn.be/stops/202269"], ["https://data.delijn.be/stops/407860", "https://data.delijn.be/stops/305683"], ["https://data.delijn.be/stops/503627", "https://data.delijn.be/stops/503628"], ["https://data.delijn.be/stops/204111", "https://data.delijn.be/stops/204112"], ["https://data.delijn.be/stops/505050", "https://data.delijn.be/stops/505051"], ["https://data.delijn.be/stops/406525", "https://data.delijn.be/stops/406643"], ["https://data.delijn.be/stops/404680", "https://data.delijn.be/stops/404681"], ["https://data.delijn.be/stops/400158", "https://data.delijn.be/stops/400159"], ["https://data.delijn.be/stops/405300", "https://data.delijn.be/stops/302854"], ["https://data.delijn.be/stops/504630", "https://data.delijn.be/stops/505799"], ["https://data.delijn.be/stops/300548", "https://data.delijn.be/stops/307864"], ["https://data.delijn.be/stops/301229", "https://data.delijn.be/stops/306828"], ["https://data.delijn.be/stops/206528", "https://data.delijn.be/stops/206927"], ["https://data.delijn.be/stops/101368", "https://data.delijn.be/stops/101402"], ["https://data.delijn.be/stops/107962", "https://data.delijn.be/stops/107963"], ["https://data.delijn.be/stops/302134", "https://data.delijn.be/stops/306268"], ["https://data.delijn.be/stops/507764", "https://data.delijn.be/stops/508189"], ["https://data.delijn.be/stops/404336", "https://data.delijn.be/stops/404396"], ["https://data.delijn.be/stops/103165", "https://data.delijn.be/stops/103348"], ["https://data.delijn.be/stops/501090", "https://data.delijn.be/stops/502208"], ["https://data.delijn.be/stops/208152", "https://data.delijn.be/stops/208506"], ["https://data.delijn.be/stops/101987", "https://data.delijn.be/stops/104995"], ["https://data.delijn.be/stops/407151", "https://data.delijn.be/stops/302832"], ["https://data.delijn.be/stops/407503", "https://data.delijn.be/stops/410254"], ["https://data.delijn.be/stops/407104", "https://data.delijn.be/stops/407343"], ["https://data.delijn.be/stops/109225", "https://data.delijn.be/stops/109713"], ["https://data.delijn.be/stops/302192", "https://data.delijn.be/stops/302193"], ["https://data.delijn.be/stops/503331", "https://data.delijn.be/stops/508331"], ["https://data.delijn.be/stops/302255", "https://data.delijn.be/stops/304349"], ["https://data.delijn.be/stops/405082", "https://data.delijn.be/stops/405692"], ["https://data.delijn.be/stops/301612", "https://data.delijn.be/stops/304272"], ["https://data.delijn.be/stops/104669", "https://data.delijn.be/stops/107382"], ["https://data.delijn.be/stops/502700", "https://data.delijn.be/stops/505147"], ["https://data.delijn.be/stops/204686", "https://data.delijn.be/stops/204696"], ["https://data.delijn.be/stops/208080", "https://data.delijn.be/stops/218015"], ["https://data.delijn.be/stops/202472", "https://data.delijn.be/stops/209852"], ["https://data.delijn.be/stops/106459", "https://data.delijn.be/stops/106461"], ["https://data.delijn.be/stops/204257", "https://data.delijn.be/stops/205264"], ["https://data.delijn.be/stops/104004", "https://data.delijn.be/stops/108540"], ["https://data.delijn.be/stops/300135", "https://data.delijn.be/stops/306819"], ["https://data.delijn.be/stops/104502", "https://data.delijn.be/stops/104503"], ["https://data.delijn.be/stops/305383", "https://data.delijn.be/stops/305418"], ["https://data.delijn.be/stops/403616", "https://data.delijn.be/stops/403617"], ["https://data.delijn.be/stops/304995", "https://data.delijn.be/stops/305041"], ["https://data.delijn.be/stops/406016", "https://data.delijn.be/stops/406017"], ["https://data.delijn.be/stops/103272", "https://data.delijn.be/stops/109987"], ["https://data.delijn.be/stops/402114", "https://data.delijn.be/stops/402138"], ["https://data.delijn.be/stops/209648", "https://data.delijn.be/stops/211041"], ["https://data.delijn.be/stops/405390", "https://data.delijn.be/stops/405392"], ["https://data.delijn.be/stops/109110", "https://data.delijn.be/stops/109113"], ["https://data.delijn.be/stops/501082", "https://data.delijn.be/stops/502238"], ["https://data.delijn.be/stops/504796", "https://data.delijn.be/stops/504797"], ["https://data.delijn.be/stops/504760", "https://data.delijn.be/stops/508532"], ["https://data.delijn.be/stops/304271", "https://data.delijn.be/stops/304282"], ["https://data.delijn.be/stops/301456", "https://data.delijn.be/stops/301507"], ["https://data.delijn.be/stops/207958", "https://data.delijn.be/stops/308573"], ["https://data.delijn.be/stops/501684", "https://data.delijn.be/stops/506169"], ["https://data.delijn.be/stops/202873", "https://data.delijn.be/stops/209712"], ["https://data.delijn.be/stops/303542", "https://data.delijn.be/stops/303552"], ["https://data.delijn.be/stops/101291", "https://data.delijn.be/stops/101515"], ["https://data.delijn.be/stops/405714", "https://data.delijn.be/stops/410355"], ["https://data.delijn.be/stops/101456", "https://data.delijn.be/stops/107056"], ["https://data.delijn.be/stops/208590", "https://data.delijn.be/stops/209590"], ["https://data.delijn.be/stops/203274", "https://data.delijn.be/stops/203670"], ["https://data.delijn.be/stops/406920", "https://data.delijn.be/stops/409485"], ["https://data.delijn.be/stops/505097", "https://data.delijn.be/stops/505944"], ["https://data.delijn.be/stops/208266", "https://data.delijn.be/stops/208847"], ["https://data.delijn.be/stops/505081", "https://data.delijn.be/stops/505752"], ["https://data.delijn.be/stops/204784", "https://data.delijn.be/stops/205150"], ["https://data.delijn.be/stops/501094", "https://data.delijn.be/stops/501483"], ["https://data.delijn.be/stops/504426", "https://data.delijn.be/stops/505997"], ["https://data.delijn.be/stops/203208", "https://data.delijn.be/stops/203504"], ["https://data.delijn.be/stops/300794", "https://data.delijn.be/stops/300801"], ["https://data.delijn.be/stops/302109", "https://data.delijn.be/stops/302120"], ["https://data.delijn.be/stops/300488", "https://data.delijn.be/stops/300509"], ["https://data.delijn.be/stops/202028", "https://data.delijn.be/stops/203028"], ["https://data.delijn.be/stops/408234", "https://data.delijn.be/stops/408247"], ["https://data.delijn.be/stops/407052", "https://data.delijn.be/stops/407053"], ["https://data.delijn.be/stops/200074", "https://data.delijn.be/stops/203352"], ["https://data.delijn.be/stops/407607", "https://data.delijn.be/stops/407767"], ["https://data.delijn.be/stops/201877", "https://data.delijn.be/stops/202414"], ["https://data.delijn.be/stops/403979", "https://data.delijn.be/stops/403981"], ["https://data.delijn.be/stops/105189", "https://data.delijn.be/stops/105192"], ["https://data.delijn.be/stops/406452", "https://data.delijn.be/stops/409397"], ["https://data.delijn.be/stops/508782", "https://data.delijn.be/stops/508785"], ["https://data.delijn.be/stops/501638", "https://data.delijn.be/stops/506641"], ["https://data.delijn.be/stops/403104", "https://data.delijn.be/stops/403445"], ["https://data.delijn.be/stops/105462", "https://data.delijn.be/stops/109895"], ["https://data.delijn.be/stops/502606", "https://data.delijn.be/stops/505705"], ["https://data.delijn.be/stops/204695", "https://data.delijn.be/stops/205692"], ["https://data.delijn.be/stops/103123", "https://data.delijn.be/stops/103124"], ["https://data.delijn.be/stops/502512", "https://data.delijn.be/stops/507363"], ["https://data.delijn.be/stops/300184", "https://data.delijn.be/stops/300186"], ["https://data.delijn.be/stops/503011", "https://data.delijn.be/stops/508011"], ["https://data.delijn.be/stops/300764", "https://data.delijn.be/stops/302402"], ["https://data.delijn.be/stops/109003", "https://data.delijn.be/stops/405030"], ["https://data.delijn.be/stops/303652", "https://data.delijn.be/stops/304913"], ["https://data.delijn.be/stops/401471", "https://data.delijn.be/stops/401546"], ["https://data.delijn.be/stops/303307", "https://data.delijn.be/stops/303312"], ["https://data.delijn.be/stops/201525", "https://data.delijn.be/stops/204911"], ["https://data.delijn.be/stops/208586", "https://data.delijn.be/stops/209586"], ["https://data.delijn.be/stops/304249", "https://data.delijn.be/stops/304253"], ["https://data.delijn.be/stops/103098", "https://data.delijn.be/stops/104407"], ["https://data.delijn.be/stops/200325", "https://data.delijn.be/stops/201325"], ["https://data.delijn.be/stops/300772", "https://data.delijn.be/stops/303121"], ["https://data.delijn.be/stops/304615", "https://data.delijn.be/stops/304616"], ["https://data.delijn.be/stops/104746", "https://data.delijn.be/stops/104747"], ["https://data.delijn.be/stops/300994", "https://data.delijn.be/stops/301000"], ["https://data.delijn.be/stops/102408", "https://data.delijn.be/stops/109034"], ["https://data.delijn.be/stops/203870", "https://data.delijn.be/stops/209723"], ["https://data.delijn.be/stops/104046", "https://data.delijn.be/stops/306591"], ["https://data.delijn.be/stops/204656", "https://data.delijn.be/stops/205656"], ["https://data.delijn.be/stops/305003", "https://data.delijn.be/stops/305004"], ["https://data.delijn.be/stops/301719", "https://data.delijn.be/stops/301720"], ["https://data.delijn.be/stops/202337", "https://data.delijn.be/stops/203331"], ["https://data.delijn.be/stops/106277", "https://data.delijn.be/stops/106343"], ["https://data.delijn.be/stops/302986", "https://data.delijn.be/stops/306647"], ["https://data.delijn.be/stops/104822", "https://data.delijn.be/stops/108505"], ["https://data.delijn.be/stops/302616", "https://data.delijn.be/stops/302618"], ["https://data.delijn.be/stops/208084", "https://data.delijn.be/stops/208517"], ["https://data.delijn.be/stops/502644", "https://data.delijn.be/stops/507644"], ["https://data.delijn.be/stops/504081", "https://data.delijn.be/stops/505803"], ["https://data.delijn.be/stops/307968", "https://data.delijn.be/stops/307970"], ["https://data.delijn.be/stops/301943", "https://data.delijn.be/stops/305913"], ["https://data.delijn.be/stops/405394", "https://data.delijn.be/stops/408941"], ["https://data.delijn.be/stops/406197", "https://data.delijn.be/stops/406280"], ["https://data.delijn.be/stops/501270", "https://data.delijn.be/stops/501328"], ["https://data.delijn.be/stops/203578", "https://data.delijn.be/stops/211851"], ["https://data.delijn.be/stops/301478", "https://data.delijn.be/stops/304622"], ["https://data.delijn.be/stops/407826", "https://data.delijn.be/stops/407827"], ["https://data.delijn.be/stops/301195", "https://data.delijn.be/stops/308258"], ["https://data.delijn.be/stops/107193", "https://data.delijn.be/stops/109383"], ["https://data.delijn.be/stops/106893", "https://data.delijn.be/stops/107218"], ["https://data.delijn.be/stops/208670", "https://data.delijn.be/stops/208809"], ["https://data.delijn.be/stops/208157", "https://data.delijn.be/stops/208194"], ["https://data.delijn.be/stops/305209", "https://data.delijn.be/stops/306911"], ["https://data.delijn.be/stops/408513", "https://data.delijn.be/stops/408684"], ["https://data.delijn.be/stops/305103", "https://data.delijn.be/stops/305122"], ["https://data.delijn.be/stops/408202", "https://data.delijn.be/stops/408225"], ["https://data.delijn.be/stops/101828", "https://data.delijn.be/stops/107107"], ["https://data.delijn.be/stops/501746", "https://data.delijn.be/stops/505824"], ["https://data.delijn.be/stops/207868", "https://data.delijn.be/stops/209747"], ["https://data.delijn.be/stops/501250", "https://data.delijn.be/stops/501259"], ["https://data.delijn.be/stops/404872", "https://data.delijn.be/stops/404884"], ["https://data.delijn.be/stops/404007", "https://data.delijn.be/stops/404012"], ["https://data.delijn.be/stops/400946", "https://data.delijn.be/stops/406730"], ["https://data.delijn.be/stops/106089", "https://data.delijn.be/stops/106139"], ["https://data.delijn.be/stops/206995", "https://data.delijn.be/stops/207995"], ["https://data.delijn.be/stops/410249", "https://data.delijn.be/stops/410250"], ["https://data.delijn.be/stops/306552", "https://data.delijn.be/stops/307897"], ["https://data.delijn.be/stops/205674", "https://data.delijn.be/stops/205676"], ["https://data.delijn.be/stops/102297", "https://data.delijn.be/stops/106588"], ["https://data.delijn.be/stops/206377", "https://data.delijn.be/stops/207725"], ["https://data.delijn.be/stops/503535", "https://data.delijn.be/stops/508713"], ["https://data.delijn.be/stops/206009", "https://data.delijn.be/stops/206264"], ["https://data.delijn.be/stops/403417", "https://data.delijn.be/stops/403443"], ["https://data.delijn.be/stops/209119", "https://data.delijn.be/stops/219008"], ["https://data.delijn.be/stops/104507", "https://data.delijn.be/stops/107927"], ["https://data.delijn.be/stops/107284", "https://data.delijn.be/stops/107287"], ["https://data.delijn.be/stops/107055", "https://data.delijn.be/stops/108605"], ["https://data.delijn.be/stops/407050", "https://data.delijn.be/stops/407076"], ["https://data.delijn.be/stops/200026", "https://data.delijn.be/stops/208845"], ["https://data.delijn.be/stops/408550", "https://data.delijn.be/stops/408687"], ["https://data.delijn.be/stops/307722", "https://data.delijn.be/stops/307724"], ["https://data.delijn.be/stops/302661", "https://data.delijn.be/stops/302694"], ["https://data.delijn.be/stops/101958", "https://data.delijn.be/stops/108324"], ["https://data.delijn.be/stops/204117", "https://data.delijn.be/stops/204690"], ["https://data.delijn.be/stops/302285", "https://data.delijn.be/stops/302289"], ["https://data.delijn.be/stops/102608", "https://data.delijn.be/stops/105526"], ["https://data.delijn.be/stops/103502", "https://data.delijn.be/stops/106317"], ["https://data.delijn.be/stops/109496", "https://data.delijn.be/stops/305632"], ["https://data.delijn.be/stops/206453", "https://data.delijn.be/stops/207452"], ["https://data.delijn.be/stops/500048", "https://data.delijn.be/stops/500049"], ["https://data.delijn.be/stops/108484", "https://data.delijn.be/stops/306602"], ["https://data.delijn.be/stops/200578", "https://data.delijn.be/stops/201732"], ["https://data.delijn.be/stops/500944", "https://data.delijn.be/stops/504139"], ["https://data.delijn.be/stops/305714", "https://data.delijn.be/stops/307926"], ["https://data.delijn.be/stops/202392", "https://data.delijn.be/stops/203392"], ["https://data.delijn.be/stops/403386", "https://data.delijn.be/stops/403465"], ["https://data.delijn.be/stops/400832", "https://data.delijn.be/stops/400833"], ["https://data.delijn.be/stops/104943", "https://data.delijn.be/stops/106496"], ["https://data.delijn.be/stops/404408", "https://data.delijn.be/stops/404414"], ["https://data.delijn.be/stops/503982", "https://data.delijn.be/stops/505966"], ["https://data.delijn.be/stops/207299", "https://data.delijn.be/stops/207860"], ["https://data.delijn.be/stops/202182", "https://data.delijn.be/stops/205235"], ["https://data.delijn.be/stops/205052", "https://data.delijn.be/stops/205053"], ["https://data.delijn.be/stops/105776", "https://data.delijn.be/stops/105777"], ["https://data.delijn.be/stops/404249", "https://data.delijn.be/stops/404352"], ["https://data.delijn.be/stops/201687", "https://data.delijn.be/stops/202503"], ["https://data.delijn.be/stops/206027", "https://data.delijn.be/stops/206206"], ["https://data.delijn.be/stops/403996", "https://data.delijn.be/stops/405936"], ["https://data.delijn.be/stops/208452", "https://data.delijn.be/stops/209699"], ["https://data.delijn.be/stops/400969", "https://data.delijn.be/stops/400970"], ["https://data.delijn.be/stops/206004", "https://data.delijn.be/stops/206005"], ["https://data.delijn.be/stops/402490", "https://data.delijn.be/stops/406884"], ["https://data.delijn.be/stops/206233", "https://data.delijn.be/stops/207233"], ["https://data.delijn.be/stops/103230", "https://data.delijn.be/stops/108570"], ["https://data.delijn.be/stops/400709", "https://data.delijn.be/stops/401910"], ["https://data.delijn.be/stops/105573", "https://data.delijn.be/stops/105577"], ["https://data.delijn.be/stops/507508", "https://data.delijn.be/stops/507536"], ["https://data.delijn.be/stops/507174", "https://data.delijn.be/stops/507181"], ["https://data.delijn.be/stops/407860", "https://data.delijn.be/stops/306304"], ["https://data.delijn.be/stops/502369", "https://data.delijn.be/stops/507369"], ["https://data.delijn.be/stops/502458", "https://data.delijn.be/stops/502463"], ["https://data.delijn.be/stops/504540", "https://data.delijn.be/stops/509902"], ["https://data.delijn.be/stops/108608", "https://data.delijn.be/stops/300066"], ["https://data.delijn.be/stops/305337", "https://data.delijn.be/stops/305338"], ["https://data.delijn.be/stops/302275", "https://data.delijn.be/stops/306784"], ["https://data.delijn.be/stops/303769", "https://data.delijn.be/stops/303770"], ["https://data.delijn.be/stops/403571", "https://data.delijn.be/stops/404960"], ["https://data.delijn.be/stops/505521", "https://data.delijn.be/stops/505622"], ["https://data.delijn.be/stops/101797", "https://data.delijn.be/stops/108524"], ["https://data.delijn.be/stops/400981", "https://data.delijn.be/stops/400983"], ["https://data.delijn.be/stops/408326", "https://data.delijn.be/stops/408327"], ["https://data.delijn.be/stops/305597", "https://data.delijn.be/stops/306268"], ["https://data.delijn.be/stops/106106", "https://data.delijn.be/stops/106161"], ["https://data.delijn.be/stops/502059", "https://data.delijn.be/stops/507027"], ["https://data.delijn.be/stops/104239", "https://data.delijn.be/stops/106875"], ["https://data.delijn.be/stops/505148", "https://data.delijn.be/stops/506093"], ["https://data.delijn.be/stops/406073", "https://data.delijn.be/stops/406078"], ["https://data.delijn.be/stops/207334", "https://data.delijn.be/stops/207335"], ["https://data.delijn.be/stops/101367", "https://data.delijn.be/stops/106418"], ["https://data.delijn.be/stops/508721", "https://data.delijn.be/stops/508739"], ["https://data.delijn.be/stops/503177", "https://data.delijn.be/stops/508162"], ["https://data.delijn.be/stops/109553", "https://data.delijn.be/stops/109784"], ["https://data.delijn.be/stops/201848", "https://data.delijn.be/stops/210020"], ["https://data.delijn.be/stops/108419", "https://data.delijn.be/stops/108466"], ["https://data.delijn.be/stops/505198", "https://data.delijn.be/stops/505199"], ["https://data.delijn.be/stops/404854", "https://data.delijn.be/stops/404855"], ["https://data.delijn.be/stops/502478", "https://data.delijn.be/stops/505739"], ["https://data.delijn.be/stops/304972", "https://data.delijn.be/stops/304974"], ["https://data.delijn.be/stops/205430", "https://data.delijn.be/stops/205431"], ["https://data.delijn.be/stops/109552", "https://data.delijn.be/stops/300028"], ["https://data.delijn.be/stops/402708", "https://data.delijn.be/stops/402709"], ["https://data.delijn.be/stops/201581", "https://data.delijn.be/stops/201733"], ["https://data.delijn.be/stops/400402", "https://data.delijn.be/stops/400403"], ["https://data.delijn.be/stops/404150", "https://data.delijn.be/stops/407365"], ["https://data.delijn.be/stops/304815", "https://data.delijn.be/stops/304825"], ["https://data.delijn.be/stops/410140", "https://data.delijn.be/stops/410141"], ["https://data.delijn.be/stops/301777", "https://data.delijn.be/stops/301778"], ["https://data.delijn.be/stops/402976", "https://data.delijn.be/stops/403327"], ["https://data.delijn.be/stops/208390", "https://data.delijn.be/stops/208745"], ["https://data.delijn.be/stops/206174", "https://data.delijn.be/stops/207066"], ["https://data.delijn.be/stops/302210", "https://data.delijn.be/stops/302234"], ["https://data.delijn.be/stops/108243", "https://data.delijn.be/stops/108246"], ["https://data.delijn.be/stops/406788", "https://data.delijn.be/stops/406835"], ["https://data.delijn.be/stops/301634", "https://data.delijn.be/stops/301642"], ["https://data.delijn.be/stops/408168", "https://data.delijn.be/stops/409543"], ["https://data.delijn.be/stops/503305", "https://data.delijn.be/stops/505990"], ["https://data.delijn.be/stops/201851", "https://data.delijn.be/stops/202657"], ["https://data.delijn.be/stops/200760", "https://data.delijn.be/stops/208306"], ["https://data.delijn.be/stops/505186", "https://data.delijn.be/stops/509562"], ["https://data.delijn.be/stops/408093", "https://data.delijn.be/stops/408157"], ["https://data.delijn.be/stops/104975", "https://data.delijn.be/stops/105065"], ["https://data.delijn.be/stops/104337", "https://data.delijn.be/stops/104338"], ["https://data.delijn.be/stops/505645", "https://data.delijn.be/stops/509149"], ["https://data.delijn.be/stops/503084", "https://data.delijn.be/stops/507820"], ["https://data.delijn.be/stops/305345", "https://data.delijn.be/stops/305349"], ["https://data.delijn.be/stops/504560", "https://data.delijn.be/stops/505362"], ["https://data.delijn.be/stops/101907", "https://data.delijn.be/stops/101914"], ["https://data.delijn.be/stops/502398", "https://data.delijn.be/stops/507384"], ["https://data.delijn.be/stops/200625", "https://data.delijn.be/stops/201202"], ["https://data.delijn.be/stops/403296", "https://data.delijn.be/stops/403309"], ["https://data.delijn.be/stops/400882", "https://data.delijn.be/stops/400883"], ["https://data.delijn.be/stops/105491", "https://data.delijn.be/stops/105504"], ["https://data.delijn.be/stops/505380", "https://data.delijn.be/stops/508107"], ["https://data.delijn.be/stops/506150", "https://data.delijn.be/stops/509835"], ["https://data.delijn.be/stops/505059", "https://data.delijn.be/stops/505651"], ["https://data.delijn.be/stops/301437", "https://data.delijn.be/stops/301441"], ["https://data.delijn.be/stops/404513", "https://data.delijn.be/stops/405357"], ["https://data.delijn.be/stops/407922", "https://data.delijn.be/stops/408058"], ["https://data.delijn.be/stops/202278", "https://data.delijn.be/stops/202663"], ["https://data.delijn.be/stops/209381", "https://data.delijn.be/stops/209382"], ["https://data.delijn.be/stops/400375", "https://data.delijn.be/stops/400436"], ["https://data.delijn.be/stops/109144", "https://data.delijn.be/stops/109152"], ["https://data.delijn.be/stops/402140", "https://data.delijn.be/stops/402379"], ["https://data.delijn.be/stops/201355", "https://data.delijn.be/stops/201356"], ["https://data.delijn.be/stops/205108", "https://data.delijn.be/stops/205109"], ["https://data.delijn.be/stops/503648", "https://data.delijn.be/stops/508950"], ["https://data.delijn.be/stops/400032", "https://data.delijn.be/stops/407101"], ["https://data.delijn.be/stops/206680", "https://data.delijn.be/stops/207936"], ["https://data.delijn.be/stops/407964", "https://data.delijn.be/stops/407967"], ["https://data.delijn.be/stops/408314", "https://data.delijn.be/stops/408343"], ["https://data.delijn.be/stops/103722", "https://data.delijn.be/stops/108537"], ["https://data.delijn.be/stops/400039", "https://data.delijn.be/stops/400351"], ["https://data.delijn.be/stops/501205", "https://data.delijn.be/stops/501290"], ["https://data.delijn.be/stops/106162", "https://data.delijn.be/stops/106451"], ["https://data.delijn.be/stops/504106", "https://data.delijn.be/stops/505212"], ["https://data.delijn.be/stops/202703", "https://data.delijn.be/stops/202704"], ["https://data.delijn.be/stops/300536", "https://data.delijn.be/stops/302349"], ["https://data.delijn.be/stops/104980", "https://data.delijn.be/stops/107805"], ["https://data.delijn.be/stops/504436", "https://data.delijn.be/stops/509430"], ["https://data.delijn.be/stops/101152", "https://data.delijn.be/stops/106749"], ["https://data.delijn.be/stops/503781", "https://data.delijn.be/stops/503887"], ["https://data.delijn.be/stops/504592", "https://data.delijn.be/stops/509592"], ["https://data.delijn.be/stops/202292", "https://data.delijn.be/stops/203292"], ["https://data.delijn.be/stops/204791", "https://data.delijn.be/stops/205575"], ["https://data.delijn.be/stops/408109", "https://data.delijn.be/stops/408158"], ["https://data.delijn.be/stops/302458", "https://data.delijn.be/stops/302459"], ["https://data.delijn.be/stops/502283", "https://data.delijn.be/stops/502317"], ["https://data.delijn.be/stops/108201", "https://data.delijn.be/stops/108202"], ["https://data.delijn.be/stops/204212", "https://data.delijn.be/stops/206310"], ["https://data.delijn.be/stops/400800", "https://data.delijn.be/stops/400828"], ["https://data.delijn.be/stops/405802", "https://data.delijn.be/stops/405803"], ["https://data.delijn.be/stops/105168", "https://data.delijn.be/stops/105173"], ["https://data.delijn.be/stops/206935", "https://data.delijn.be/stops/207935"], ["https://data.delijn.be/stops/200190", "https://data.delijn.be/stops/201689"], ["https://data.delijn.be/stops/209409", "https://data.delijn.be/stops/209410"], ["https://data.delijn.be/stops/107312", "https://data.delijn.be/stops/108808"], ["https://data.delijn.be/stops/408143", "https://data.delijn.be/stops/307452"], ["https://data.delijn.be/stops/505953", "https://data.delijn.be/stops/508139"], ["https://data.delijn.be/stops/400732", "https://data.delijn.be/stops/400734"], ["https://data.delijn.be/stops/300272", "https://data.delijn.be/stops/307494"], ["https://data.delijn.be/stops/508158", "https://data.delijn.be/stops/508175"], ["https://data.delijn.be/stops/301043", "https://data.delijn.be/stops/301066"], ["https://data.delijn.be/stops/401150", "https://data.delijn.be/stops/409141"], ["https://data.delijn.be/stops/202172", "https://data.delijn.be/stops/203172"], ["https://data.delijn.be/stops/201976", "https://data.delijn.be/stops/207481"], ["https://data.delijn.be/stops/205129", "https://data.delijn.be/stops/205790"], ["https://data.delijn.be/stops/101780", "https://data.delijn.be/stops/102350"], ["https://data.delijn.be/stops/101799", "https://data.delijn.be/stops/108516"], ["https://data.delijn.be/stops/108437", "https://data.delijn.be/stops/109572"], ["https://data.delijn.be/stops/500011", "https://data.delijn.be/stops/505560"], ["https://data.delijn.be/stops/303317", "https://data.delijn.be/stops/303335"], ["https://data.delijn.be/stops/403199", "https://data.delijn.be/stops/403201"], ["https://data.delijn.be/stops/505193", "https://data.delijn.be/stops/505288"], ["https://data.delijn.be/stops/108009", "https://data.delijn.be/stops/109048"], ["https://data.delijn.be/stops/301895", "https://data.delijn.be/stops/305727"], ["https://data.delijn.be/stops/405070", "https://data.delijn.be/stops/408373"], ["https://data.delijn.be/stops/405148", "https://data.delijn.be/stops/405201"], ["https://data.delijn.be/stops/400133", "https://data.delijn.be/stops/400153"], ["https://data.delijn.be/stops/108118", "https://data.delijn.be/stops/108119"], ["https://data.delijn.be/stops/107372", "https://data.delijn.be/stops/107377"], ["https://data.delijn.be/stops/103971", "https://data.delijn.be/stops/106155"], ["https://data.delijn.be/stops/103245", "https://data.delijn.be/stops/107725"], ["https://data.delijn.be/stops/405142", "https://data.delijn.be/stops/406726"], ["https://data.delijn.be/stops/202224", "https://data.delijn.be/stops/203224"], ["https://data.delijn.be/stops/307522", "https://data.delijn.be/stops/308592"], ["https://data.delijn.be/stops/503034", "https://data.delijn.be/stops/508034"], ["https://data.delijn.be/stops/302454", "https://data.delijn.be/stops/302456"], ["https://data.delijn.be/stops/405023", "https://data.delijn.be/stops/405055"], ["https://data.delijn.be/stops/300743", "https://data.delijn.be/stops/300797"], ["https://data.delijn.be/stops/305235", "https://data.delijn.be/stops/305305"], ["https://data.delijn.be/stops/102394", "https://data.delijn.be/stops/102396"], ["https://data.delijn.be/stops/405751", "https://data.delijn.be/stops/408191"], ["https://data.delijn.be/stops/302534", "https://data.delijn.be/stops/302536"], ["https://data.delijn.be/stops/510003", "https://data.delijn.be/stops/510004"], ["https://data.delijn.be/stops/303497", "https://data.delijn.be/stops/303505"], ["https://data.delijn.be/stops/503639", "https://data.delijn.be/stops/508638"], ["https://data.delijn.be/stops/400486", "https://data.delijn.be/stops/407215"], ["https://data.delijn.be/stops/407987", "https://data.delijn.be/stops/407999"], ["https://data.delijn.be/stops/501695", "https://data.delijn.be/stops/505705"], ["https://data.delijn.be/stops/505555", "https://data.delijn.be/stops/507180"], ["https://data.delijn.be/stops/304524", "https://data.delijn.be/stops/305603"], ["https://data.delijn.be/stops/301695", "https://data.delijn.be/stops/301696"], ["https://data.delijn.be/stops/107092", "https://data.delijn.be/stops/107093"], ["https://data.delijn.be/stops/103624", "https://data.delijn.be/stops/107737"], ["https://data.delijn.be/stops/409368", "https://data.delijn.be/stops/409369"], ["https://data.delijn.be/stops/106911", "https://data.delijn.be/stops/106914"], ["https://data.delijn.be/stops/206530", "https://data.delijn.be/stops/207529"], ["https://data.delijn.be/stops/201837", "https://data.delijn.be/stops/203401"], ["https://data.delijn.be/stops/500135", "https://data.delijn.be/stops/590330"], ["https://data.delijn.be/stops/207592", "https://data.delijn.be/stops/207948"], ["https://data.delijn.be/stops/206879", "https://data.delijn.be/stops/207038"], ["https://data.delijn.be/stops/402834", "https://data.delijn.be/stops/402839"], ["https://data.delijn.be/stops/405227", "https://data.delijn.be/stops/405234"], ["https://data.delijn.be/stops/408031", "https://data.delijn.be/stops/408062"], ["https://data.delijn.be/stops/202513", "https://data.delijn.be/stops/202514"], ["https://data.delijn.be/stops/301689", "https://data.delijn.be/stops/307974"], ["https://data.delijn.be/stops/101944", "https://data.delijn.be/stops/108789"], ["https://data.delijn.be/stops/401949", "https://data.delijn.be/stops/407276"], ["https://data.delijn.be/stops/101070", "https://data.delijn.be/stops/102800"], ["https://data.delijn.be/stops/508870", "https://data.delijn.be/stops/509756"], ["https://data.delijn.be/stops/103605", "https://data.delijn.be/stops/108924"], ["https://data.delijn.be/stops/403143", "https://data.delijn.be/stops/403368"], ["https://data.delijn.be/stops/504775", "https://data.delijn.be/stops/509596"], ["https://data.delijn.be/stops/301257", "https://data.delijn.be/stops/301260"], ["https://data.delijn.be/stops/108042", "https://data.delijn.be/stops/108045"], ["https://data.delijn.be/stops/301758", "https://data.delijn.be/stops/305946"], ["https://data.delijn.be/stops/300461", "https://data.delijn.be/stops/308081"], ["https://data.delijn.be/stops/409815", "https://data.delijn.be/stops/409822"], ["https://data.delijn.be/stops/201105", "https://data.delijn.be/stops/201939"], ["https://data.delijn.be/stops/105509", "https://data.delijn.be/stops/105512"], ["https://data.delijn.be/stops/102073", "https://data.delijn.be/stops/106940"], ["https://data.delijn.be/stops/406601", "https://data.delijn.be/stops/406644"], ["https://data.delijn.be/stops/501266", "https://data.delijn.be/stops/506783"], ["https://data.delijn.be/stops/306627", "https://data.delijn.be/stops/308457"], ["https://data.delijn.be/stops/403128", "https://data.delijn.be/stops/409313"], ["https://data.delijn.be/stops/104602", "https://data.delijn.be/stops/108047"], ["https://data.delijn.be/stops/101530", "https://data.delijn.be/stops/102820"], ["https://data.delijn.be/stops/107350", "https://data.delijn.be/stops/108065"], ["https://data.delijn.be/stops/402491", "https://data.delijn.be/stops/406884"], ["https://data.delijn.be/stops/504770", "https://data.delijn.be/stops/505193"], ["https://data.delijn.be/stops/406858", "https://data.delijn.be/stops/406859"], ["https://data.delijn.be/stops/405710", "https://data.delijn.be/stops/408277"], ["https://data.delijn.be/stops/506134", "https://data.delijn.be/stops/506140"], ["https://data.delijn.be/stops/200415", "https://data.delijn.be/stops/201416"], ["https://data.delijn.be/stops/201431", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/206428", "https://data.delijn.be/stops/209712"], ["https://data.delijn.be/stops/505785", "https://data.delijn.be/stops/509418"], ["https://data.delijn.be/stops/102169", "https://data.delijn.be/stops/103233"], ["https://data.delijn.be/stops/408957", "https://data.delijn.be/stops/408964"], ["https://data.delijn.be/stops/303151", "https://data.delijn.be/stops/303153"], ["https://data.delijn.be/stops/300947", "https://data.delijn.be/stops/308903"], ["https://data.delijn.be/stops/403290", "https://data.delijn.be/stops/409317"], ["https://data.delijn.be/stops/502687", "https://data.delijn.be/stops/509945"], ["https://data.delijn.be/stops/204421", "https://data.delijn.be/stops/205418"], ["https://data.delijn.be/stops/406301", "https://data.delijn.be/stops/406317"], ["https://data.delijn.be/stops/301634", "https://data.delijn.be/stops/307766"], ["https://data.delijn.be/stops/200242", "https://data.delijn.be/stops/203142"], ["https://data.delijn.be/stops/206066", "https://data.delijn.be/stops/207120"], ["https://data.delijn.be/stops/305724", "https://data.delijn.be/stops/305725"], ["https://data.delijn.be/stops/306384", "https://data.delijn.be/stops/307220"], ["https://data.delijn.be/stops/300496", "https://data.delijn.be/stops/302076"], ["https://data.delijn.be/stops/301859", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/200958", "https://data.delijn.be/stops/203470"], ["https://data.delijn.be/stops/308058", "https://data.delijn.be/stops/308758"], ["https://data.delijn.be/stops/202225", "https://data.delijn.be/stops/202284"], ["https://data.delijn.be/stops/300897", "https://data.delijn.be/stops/300940"], ["https://data.delijn.be/stops/307361", "https://data.delijn.be/stops/307362"], ["https://data.delijn.be/stops/501257", "https://data.delijn.be/stops/506236"], ["https://data.delijn.be/stops/200659", "https://data.delijn.be/stops/205929"], ["https://data.delijn.be/stops/202932", "https://data.delijn.be/stops/208681"], ["https://data.delijn.be/stops/506092", "https://data.delijn.be/stops/506093"], ["https://data.delijn.be/stops/300536", "https://data.delijn.be/stops/300538"], ["https://data.delijn.be/stops/404112", "https://data.delijn.be/stops/404127"], ["https://data.delijn.be/stops/505169", "https://data.delijn.be/stops/509339"], ["https://data.delijn.be/stops/106907", "https://data.delijn.be/stops/106908"], ["https://data.delijn.be/stops/206798", "https://data.delijn.be/stops/209456"], ["https://data.delijn.be/stops/206438", "https://data.delijn.be/stops/206439"], ["https://data.delijn.be/stops/503850", "https://data.delijn.be/stops/510026"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/209068"], ["https://data.delijn.be/stops/304996", "https://data.delijn.be/stops/305027"], ["https://data.delijn.be/stops/407290", "https://data.delijn.be/stops/408131"], ["https://data.delijn.be/stops/102647", "https://data.delijn.be/stops/107837"], ["https://data.delijn.be/stops/300001", "https://data.delijn.be/stops/305782"], ["https://data.delijn.be/stops/102272", "https://data.delijn.be/stops/103283"], ["https://data.delijn.be/stops/303678", "https://data.delijn.be/stops/303679"], ["https://data.delijn.be/stops/402180", "https://data.delijn.be/stops/402240"], ["https://data.delijn.be/stops/107125", "https://data.delijn.be/stops/108330"], ["https://data.delijn.be/stops/106203", "https://data.delijn.be/stops/106205"], ["https://data.delijn.be/stops/504499", "https://data.delijn.be/stops/504737"], ["https://data.delijn.be/stops/200189", "https://data.delijn.be/stops/201189"], ["https://data.delijn.be/stops/504679", "https://data.delijn.be/stops/509265"], ["https://data.delijn.be/stops/502171", "https://data.delijn.be/stops/505089"], ["https://data.delijn.be/stops/200685", "https://data.delijn.be/stops/208652"], ["https://data.delijn.be/stops/302741", "https://data.delijn.be/stops/302742"], ["https://data.delijn.be/stops/103399", "https://data.delijn.be/stops/107408"], ["https://data.delijn.be/stops/108082", "https://data.delijn.be/stops/108834"], ["https://data.delijn.be/stops/406521", "https://data.delijn.be/stops/407389"], ["https://data.delijn.be/stops/205978", "https://data.delijn.be/stops/208794"], ["https://data.delijn.be/stops/301417", "https://data.delijn.be/stops/301422"], ["https://data.delijn.be/stops/402436", "https://data.delijn.be/stops/402438"], ["https://data.delijn.be/stops/508677", "https://data.delijn.be/stops/508679"], ["https://data.delijn.be/stops/306806", "https://data.delijn.be/stops/307728"], ["https://data.delijn.be/stops/300374", "https://data.delijn.be/stops/300406"], ["https://data.delijn.be/stops/509527", "https://data.delijn.be/stops/509528"], ["https://data.delijn.be/stops/206719", "https://data.delijn.be/stops/207654"], ["https://data.delijn.be/stops/300446", "https://data.delijn.be/stops/301180"], ["https://data.delijn.be/stops/106153", "https://data.delijn.be/stops/106156"], ["https://data.delijn.be/stops/404563", "https://data.delijn.be/stops/406878"], ["https://data.delijn.be/stops/304048", "https://data.delijn.be/stops/304097"], ["https://data.delijn.be/stops/502695", "https://data.delijn.be/stops/507695"], ["https://data.delijn.be/stops/204822", "https://data.delijn.be/stops/205904"], ["https://data.delijn.be/stops/210073", "https://data.delijn.be/stops/211104"], ["https://data.delijn.be/stops/105728", "https://data.delijn.be/stops/105729"], ["https://data.delijn.be/stops/205153", "https://data.delijn.be/stops/205595"], ["https://data.delijn.be/stops/104562", "https://data.delijn.be/stops/307898"], ["https://data.delijn.be/stops/300511", "https://data.delijn.be/stops/300525"], ["https://data.delijn.be/stops/204687", "https://data.delijn.be/stops/205688"], ["https://data.delijn.be/stops/507188", "https://data.delijn.be/stops/507683"], ["https://data.delijn.be/stops/208476", "https://data.delijn.be/stops/208477"], ["https://data.delijn.be/stops/406931", "https://data.delijn.be/stops/407294"], ["https://data.delijn.be/stops/108918", "https://data.delijn.be/stops/109411"], ["https://data.delijn.be/stops/304464", "https://data.delijn.be/stops/304472"], ["https://data.delijn.be/stops/302385", "https://data.delijn.be/stops/304098"], ["https://data.delijn.be/stops/206067", "https://data.delijn.be/stops/207120"], ["https://data.delijn.be/stops/505667", "https://data.delijn.be/stops/508111"], ["https://data.delijn.be/stops/103303", "https://data.delijn.be/stops/109391"], ["https://data.delijn.be/stops/502475", "https://data.delijn.be/stops/507475"], ["https://data.delijn.be/stops/105997", "https://data.delijn.be/stops/107958"], ["https://data.delijn.be/stops/408375", "https://data.delijn.be/stops/408389"], ["https://data.delijn.be/stops/105048", "https://data.delijn.be/stops/106674"], ["https://data.delijn.be/stops/104649", "https://data.delijn.be/stops/108034"], ["https://data.delijn.be/stops/401219", "https://data.delijn.be/stops/401275"], ["https://data.delijn.be/stops/502525", "https://data.delijn.be/stops/507523"], ["https://data.delijn.be/stops/202700", "https://data.delijn.be/stops/203699"], ["https://data.delijn.be/stops/504692", "https://data.delijn.be/stops/509076"], ["https://data.delijn.be/stops/206410", "https://data.delijn.be/stops/207083"], ["https://data.delijn.be/stops/506448", "https://data.delijn.be/stops/506452"], ["https://data.delijn.be/stops/301637", "https://data.delijn.be/stops/306143"], ["https://data.delijn.be/stops/407724", "https://data.delijn.be/stops/407727"], ["https://data.delijn.be/stops/300685", "https://data.delijn.be/stops/306942"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/510010"], ["https://data.delijn.be/stops/201087", "https://data.delijn.be/stops/203770"], ["https://data.delijn.be/stops/102057", "https://data.delijn.be/stops/106860"], ["https://data.delijn.be/stops/300336", "https://data.delijn.be/stops/305543"], ["https://data.delijn.be/stops/405869", "https://data.delijn.be/stops/409770"], ["https://data.delijn.be/stops/302415", "https://data.delijn.be/stops/307111"], ["https://data.delijn.be/stops/508078", "https://data.delijn.be/stops/508597"], ["https://data.delijn.be/stops/509448", "https://data.delijn.be/stops/509871"], ["https://data.delijn.be/stops/205102", "https://data.delijn.be/stops/205346"], ["https://data.delijn.be/stops/104971", "https://data.delijn.be/stops/105302"], ["https://data.delijn.be/stops/102841", "https://data.delijn.be/stops/103049"], ["https://data.delijn.be/stops/306765", "https://data.delijn.be/stops/307271"], ["https://data.delijn.be/stops/101302", "https://data.delijn.be/stops/106203"], ["https://data.delijn.be/stops/107192", "https://data.delijn.be/stops/107736"], ["https://data.delijn.be/stops/300643", "https://data.delijn.be/stops/300644"], ["https://data.delijn.be/stops/301525", "https://data.delijn.be/stops/308079"], ["https://data.delijn.be/stops/502664", "https://data.delijn.be/stops/507655"], ["https://data.delijn.be/stops/501450", "https://data.delijn.be/stops/506452"], ["https://data.delijn.be/stops/306742", "https://data.delijn.be/stops/306743"], ["https://data.delijn.be/stops/105878", "https://data.delijn.be/stops/105879"], ["https://data.delijn.be/stops/201913", "https://data.delijn.be/stops/201948"], ["https://data.delijn.be/stops/503341", "https://data.delijn.be/stops/508341"], ["https://data.delijn.be/stops/304339", "https://data.delijn.be/stops/304340"], ["https://data.delijn.be/stops/400518", "https://data.delijn.be/stops/400519"], ["https://data.delijn.be/stops/103027", "https://data.delijn.be/stops/103028"], ["https://data.delijn.be/stops/407262", "https://data.delijn.be/stops/407334"], ["https://data.delijn.be/stops/505778", "https://data.delijn.be/stops/505924"], ["https://data.delijn.be/stops/303959", "https://data.delijn.be/stops/303974"], ["https://data.delijn.be/stops/407668", "https://data.delijn.be/stops/407686"], ["https://data.delijn.be/stops/505549", "https://data.delijn.be/stops/509312"], ["https://data.delijn.be/stops/502320", "https://data.delijn.be/stops/502333"], ["https://data.delijn.be/stops/206930", "https://data.delijn.be/stops/209125"], ["https://data.delijn.be/stops/202977", "https://data.delijn.be/stops/203373"], ["https://data.delijn.be/stops/302887", "https://data.delijn.be/stops/302898"], ["https://data.delijn.be/stops/105676", "https://data.delijn.be/stops/106047"], ["https://data.delijn.be/stops/403640", "https://data.delijn.be/stops/403641"], ["https://data.delijn.be/stops/105022", "https://data.delijn.be/stops/107297"], ["https://data.delijn.be/stops/208428", "https://data.delijn.be/stops/209595"], ["https://data.delijn.be/stops/201908", "https://data.delijn.be/stops/202519"], ["https://data.delijn.be/stops/307324", "https://data.delijn.be/stops/308657"], ["https://data.delijn.be/stops/305950", "https://data.delijn.be/stops/308259"], ["https://data.delijn.be/stops/106021", "https://data.delijn.be/stops/109560"], ["https://data.delijn.be/stops/200841", "https://data.delijn.be/stops/202313"], ["https://data.delijn.be/stops/201671", "https://data.delijn.be/stops/201849"], ["https://data.delijn.be/stops/206303", "https://data.delijn.be/stops/207304"], ["https://data.delijn.be/stops/206561", "https://data.delijn.be/stops/206563"], ["https://data.delijn.be/stops/301490", "https://data.delijn.be/stops/301491"], ["https://data.delijn.be/stops/103672", "https://data.delijn.be/stops/106255"], ["https://data.delijn.be/stops/504428", "https://data.delijn.be/stops/508309"], ["https://data.delijn.be/stops/307208", "https://data.delijn.be/stops/307220"], ["https://data.delijn.be/stops/303641", "https://data.delijn.be/stops/303643"], ["https://data.delijn.be/stops/507497", "https://data.delijn.be/stops/507504"], ["https://data.delijn.be/stops/104393", "https://data.delijn.be/stops/104396"], ["https://data.delijn.be/stops/209639", "https://data.delijn.be/stops/209661"], ["https://data.delijn.be/stops/202610", "https://data.delijn.be/stops/202612"], ["https://data.delijn.be/stops/503563", "https://data.delijn.be/stops/508612"], ["https://data.delijn.be/stops/200774", "https://data.delijn.be/stops/200775"], ["https://data.delijn.be/stops/200704", "https://data.delijn.be/stops/200719"], ["https://data.delijn.be/stops/503439", "https://data.delijn.be/stops/503691"], ["https://data.delijn.be/stops/400560", "https://data.delijn.be/stops/405151"], ["https://data.delijn.be/stops/402192", "https://data.delijn.be/stops/402320"], ["https://data.delijn.be/stops/201882", "https://data.delijn.be/stops/202418"], ["https://data.delijn.be/stops/206393", "https://data.delijn.be/stops/207392"], ["https://data.delijn.be/stops/202378", "https://data.delijn.be/stops/203379"], ["https://data.delijn.be/stops/104996", "https://data.delijn.be/stops/105435"], ["https://data.delijn.be/stops/403766", "https://data.delijn.be/stops/408183"], ["https://data.delijn.be/stops/400457", "https://data.delijn.be/stops/400458"], ["https://data.delijn.be/stops/502591", "https://data.delijn.be/stops/507044"], ["https://data.delijn.be/stops/409581", "https://data.delijn.be/stops/409586"], ["https://data.delijn.be/stops/503842", "https://data.delijn.be/stops/503854"], ["https://data.delijn.be/stops/206904", "https://data.delijn.be/stops/207904"], ["https://data.delijn.be/stops/204678", "https://data.delijn.be/stops/205316"], ["https://data.delijn.be/stops/301254", "https://data.delijn.be/stops/301265"], ["https://data.delijn.be/stops/403374", "https://data.delijn.be/stops/404128"], ["https://data.delijn.be/stops/200559", "https://data.delijn.be/stops/201559"], ["https://data.delijn.be/stops/109402", "https://data.delijn.be/stops/109423"], ["https://data.delijn.be/stops/402190", "https://data.delijn.be/stops/402401"], ["https://data.delijn.be/stops/302184", "https://data.delijn.be/stops/305081"], ["https://data.delijn.be/stops/502489", "https://data.delijn.be/stops/502511"], ["https://data.delijn.be/stops/201684", "https://data.delijn.be/stops/202317"], ["https://data.delijn.be/stops/206046", "https://data.delijn.be/stops/207044"], ["https://data.delijn.be/stops/405052", "https://data.delijn.be/stops/405065"], ["https://data.delijn.be/stops/503772", "https://data.delijn.be/stops/508772"], ["https://data.delijn.be/stops/303071", "https://data.delijn.be/stops/303146"], ["https://data.delijn.be/stops/101444", "https://data.delijn.be/stops/102732"], ["https://data.delijn.be/stops/101390", "https://data.delijn.be/stops/107001"], ["https://data.delijn.be/stops/201739", "https://data.delijn.be/stops/505351"], ["https://data.delijn.be/stops/204260", "https://data.delijn.be/stops/205249"], ["https://data.delijn.be/stops/408695", "https://data.delijn.be/stops/408698"], ["https://data.delijn.be/stops/301774", "https://data.delijn.be/stops/301784"], ["https://data.delijn.be/stops/207715", "https://data.delijn.be/stops/207716"], ["https://data.delijn.be/stops/400100", "https://data.delijn.be/stops/400157"], ["https://data.delijn.be/stops/301773", "https://data.delijn.be/stops/306879"], ["https://data.delijn.be/stops/105000", "https://data.delijn.be/stops/105010"], ["https://data.delijn.be/stops/509645", "https://data.delijn.be/stops/509646"], ["https://data.delijn.be/stops/205514", "https://data.delijn.be/stops/205554"], ["https://data.delijn.be/stops/503574", "https://data.delijn.be/stops/504540"], ["https://data.delijn.be/stops/205021", "https://data.delijn.be/stops/205043"], ["https://data.delijn.be/stops/509598", "https://data.delijn.be/stops/509599"], ["https://data.delijn.be/stops/217007", "https://data.delijn.be/stops/217008"], ["https://data.delijn.be/stops/503027", "https://data.delijn.be/stops/508025"], ["https://data.delijn.be/stops/502393", "https://data.delijn.be/stops/507394"], ["https://data.delijn.be/stops/101931", "https://data.delijn.be/stops/106211"], ["https://data.delijn.be/stops/105613", "https://data.delijn.be/stops/105614"], ["https://data.delijn.be/stops/502620", "https://data.delijn.be/stops/507035"], ["https://data.delijn.be/stops/409290", "https://data.delijn.be/stops/409313"], ["https://data.delijn.be/stops/505116", "https://data.delijn.be/stops/509345"], ["https://data.delijn.be/stops/204605", "https://data.delijn.be/stops/205605"], ["https://data.delijn.be/stops/401185", "https://data.delijn.be/stops/410148"], ["https://data.delijn.be/stops/404993", "https://data.delijn.be/stops/404995"], ["https://data.delijn.be/stops/107436", "https://data.delijn.be/stops/107437"], ["https://data.delijn.be/stops/308689", "https://data.delijn.be/stops/308690"], ["https://data.delijn.be/stops/106533", "https://data.delijn.be/stops/106940"], ["https://data.delijn.be/stops/505788", "https://data.delijn.be/stops/509561"], ["https://data.delijn.be/stops/302609", "https://data.delijn.be/stops/302610"], ["https://data.delijn.be/stops/202459", "https://data.delijn.be/stops/203459"], ["https://data.delijn.be/stops/101540", "https://data.delijn.be/stops/101800"], ["https://data.delijn.be/stops/106652", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/108065", "https://data.delijn.be/stops/109120"], ["https://data.delijn.be/stops/109064", "https://data.delijn.be/stops/109067"], ["https://data.delijn.be/stops/207761", "https://data.delijn.be/stops/207789"], ["https://data.delijn.be/stops/407883", "https://data.delijn.be/stops/408189"], ["https://data.delijn.be/stops/406244", "https://data.delijn.be/stops/406245"], ["https://data.delijn.be/stops/503556", "https://data.delijn.be/stops/503572"], ["https://data.delijn.be/stops/402953", "https://data.delijn.be/stops/406711"], ["https://data.delijn.be/stops/208074", "https://data.delijn.be/stops/208075"], ["https://data.delijn.be/stops/401830", "https://data.delijn.be/stops/406040"], ["https://data.delijn.be/stops/205495", "https://data.delijn.be/stops/205509"], ["https://data.delijn.be/stops/301348", "https://data.delijn.be/stops/301349"], ["https://data.delijn.be/stops/502457", "https://data.delijn.be/stops/502458"], ["https://data.delijn.be/stops/405838", "https://data.delijn.be/stops/405839"], ["https://data.delijn.be/stops/501217", "https://data.delijn.be/stops/501633"], ["https://data.delijn.be/stops/206427", "https://data.delijn.be/stops/209712"], ["https://data.delijn.be/stops/306691", "https://data.delijn.be/stops/308785"], ["https://data.delijn.be/stops/206587", "https://data.delijn.be/stops/207919"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/400682"], ["https://data.delijn.be/stops/300703", "https://data.delijn.be/stops/306942"], ["https://data.delijn.be/stops/202678", "https://data.delijn.be/stops/202691"], ["https://data.delijn.be/stops/301798", "https://data.delijn.be/stops/301799"], ["https://data.delijn.be/stops/405165", "https://data.delijn.be/stops/405172"], ["https://data.delijn.be/stops/503507", "https://data.delijn.be/stops/508512"], ["https://data.delijn.be/stops/107549", "https://data.delijn.be/stops/107553"], ["https://data.delijn.be/stops/304358", "https://data.delijn.be/stops/306628"], ["https://data.delijn.be/stops/302570", "https://data.delijn.be/stops/302580"], ["https://data.delijn.be/stops/208699", "https://data.delijn.be/stops/208701"], ["https://data.delijn.be/stops/302604", "https://data.delijn.be/stops/302606"], ["https://data.delijn.be/stops/502175", "https://data.delijn.be/stops/502686"], ["https://data.delijn.be/stops/505192", "https://data.delijn.be/stops/505193"], ["https://data.delijn.be/stops/300243", "https://data.delijn.be/stops/304618"], ["https://data.delijn.be/stops/409431", "https://data.delijn.be/stops/409433"], ["https://data.delijn.be/stops/207888", "https://data.delijn.be/stops/207894"], ["https://data.delijn.be/stops/108181", "https://data.delijn.be/stops/108349"], ["https://data.delijn.be/stops/503874", "https://data.delijn.be/stops/508558"], ["https://data.delijn.be/stops/201673", "https://data.delijn.be/stops/202206"], ["https://data.delijn.be/stops/501140", "https://data.delijn.be/stops/506140"], ["https://data.delijn.be/stops/200157", "https://data.delijn.be/stops/207403"], ["https://data.delijn.be/stops/503223", "https://data.delijn.be/stops/508223"], ["https://data.delijn.be/stops/502491", "https://data.delijn.be/stops/507496"], ["https://data.delijn.be/stops/503181", "https://data.delijn.be/stops/508181"], ["https://data.delijn.be/stops/501508", "https://data.delijn.be/stops/501746"], ["https://data.delijn.be/stops/403213", "https://data.delijn.be/stops/403477"], ["https://data.delijn.be/stops/401566", "https://data.delijn.be/stops/401567"], ["https://data.delijn.be/stops/303312", "https://data.delijn.be/stops/303313"], ["https://data.delijn.be/stops/506032", "https://data.delijn.be/stops/506284"], ["https://data.delijn.be/stops/305408", "https://data.delijn.be/stops/305416"], ["https://data.delijn.be/stops/503677", "https://data.delijn.be/stops/503679"], ["https://data.delijn.be/stops/207534", "https://data.delijn.be/stops/207549"], ["https://data.delijn.be/stops/403169", "https://data.delijn.be/stops/403444"], ["https://data.delijn.be/stops/203839", "https://data.delijn.be/stops/208425"], ["https://data.delijn.be/stops/101765", "https://data.delijn.be/stops/103885"], ["https://data.delijn.be/stops/501008", "https://data.delijn.be/stops/501595"], ["https://data.delijn.be/stops/301579", "https://data.delijn.be/stops/301594"], ["https://data.delijn.be/stops/200254", "https://data.delijn.be/stops/203562"], ["https://data.delijn.be/stops/301361", "https://data.delijn.be/stops/301369"], ["https://data.delijn.be/stops/502129", "https://data.delijn.be/stops/502168"], ["https://data.delijn.be/stops/105668", "https://data.delijn.be/stops/105673"], ["https://data.delijn.be/stops/504410", "https://data.delijn.be/stops/509430"], ["https://data.delijn.be/stops/201751", "https://data.delijn.be/stops/209279"], ["https://data.delijn.be/stops/107005", "https://data.delijn.be/stops/109880"], ["https://data.delijn.be/stops/204242", "https://data.delijn.be/stops/205178"], ["https://data.delijn.be/stops/200105", "https://data.delijn.be/stops/209908"], ["https://data.delijn.be/stops/108535", "https://data.delijn.be/stops/108540"], ["https://data.delijn.be/stops/105447", "https://data.delijn.be/stops/106053"], ["https://data.delijn.be/stops/400704", "https://data.delijn.be/stops/401919"], ["https://data.delijn.be/stops/305531", "https://data.delijn.be/stops/305544"], ["https://data.delijn.be/stops/302986", "https://data.delijn.be/stops/303632"], ["https://data.delijn.be/stops/501049", "https://data.delijn.be/stops/501082"], ["https://data.delijn.be/stops/302647", "https://data.delijn.be/stops/302653"], ["https://data.delijn.be/stops/303980", "https://data.delijn.be/stops/306592"], ["https://data.delijn.be/stops/107397", "https://data.delijn.be/stops/107401"], ["https://data.delijn.be/stops/303792", "https://data.delijn.be/stops/303796"], ["https://data.delijn.be/stops/102474", "https://data.delijn.be/stops/405253"], ["https://data.delijn.be/stops/208413", "https://data.delijn.be/stops/209413"], ["https://data.delijn.be/stops/305539", "https://data.delijn.be/stops/305548"], ["https://data.delijn.be/stops/304728", "https://data.delijn.be/stops/308698"], ["https://data.delijn.be/stops/400034", "https://data.delijn.be/stops/400439"], ["https://data.delijn.be/stops/103114", "https://data.delijn.be/stops/106814"], ["https://data.delijn.be/stops/302896", "https://data.delijn.be/stops/307055"], ["https://data.delijn.be/stops/401546", "https://data.delijn.be/stops/401958"], ["https://data.delijn.be/stops/501070", "https://data.delijn.be/stops/501384"], ["https://data.delijn.be/stops/108877", "https://data.delijn.be/stops/109505"], ["https://data.delijn.be/stops/302735", "https://data.delijn.be/stops/308592"], ["https://data.delijn.be/stops/302856", "https://data.delijn.be/stops/302889"], ["https://data.delijn.be/stops/501629", "https://data.delijn.be/stops/503959"], ["https://data.delijn.be/stops/200834", "https://data.delijn.be/stops/200836"], ["https://data.delijn.be/stops/206742", "https://data.delijn.be/stops/301228"], ["https://data.delijn.be/stops/304982", "https://data.delijn.be/stops/304984"], ["https://data.delijn.be/stops/501491", "https://data.delijn.be/stops/506632"], ["https://data.delijn.be/stops/305459", "https://data.delijn.be/stops/305581"], ["https://data.delijn.be/stops/200806", "https://data.delijn.be/stops/202056"], ["https://data.delijn.be/stops/307224", "https://data.delijn.be/stops/307264"], ["https://data.delijn.be/stops/305162", "https://data.delijn.be/stops/305182"], ["https://data.delijn.be/stops/502570", "https://data.delijn.be/stops/507570"], ["https://data.delijn.be/stops/403662", "https://data.delijn.be/stops/403720"], ["https://data.delijn.be/stops/206375", "https://data.delijn.be/stops/207727"], ["https://data.delijn.be/stops/104696", "https://data.delijn.be/stops/107353"], ["https://data.delijn.be/stops/508104", "https://data.delijn.be/stops/508974"], ["https://data.delijn.be/stops/207703", "https://data.delijn.be/stops/207704"], ["https://data.delijn.be/stops/404478", "https://data.delijn.be/stops/408164"], ["https://data.delijn.be/stops/304169", "https://data.delijn.be/stops/306067"], ["https://data.delijn.be/stops/301261", "https://data.delijn.be/stops/301262"], ["https://data.delijn.be/stops/402196", "https://data.delijn.be/stops/402229"], ["https://data.delijn.be/stops/104843", "https://data.delijn.be/stops/109964"], ["https://data.delijn.be/stops/200712", "https://data.delijn.be/stops/204828"], ["https://data.delijn.be/stops/505956", "https://data.delijn.be/stops/508276"], ["https://data.delijn.be/stops/105547", "https://data.delijn.be/stops/106133"], ["https://data.delijn.be/stops/408569", "https://data.delijn.be/stops/408573"], ["https://data.delijn.be/stops/201455", "https://data.delijn.be/stops/203319"], ["https://data.delijn.be/stops/102571", "https://data.delijn.be/stops/109161"], ["https://data.delijn.be/stops/508297", "https://data.delijn.be/stops/509908"], ["https://data.delijn.be/stops/102060", "https://data.delijn.be/stops/102065"], ["https://data.delijn.be/stops/102007", "https://data.delijn.be/stops/204488"], ["https://data.delijn.be/stops/201102", "https://data.delijn.be/stops/203005"], ["https://data.delijn.be/stops/303634", "https://data.delijn.be/stops/306825"], ["https://data.delijn.be/stops/200626", "https://data.delijn.be/stops/211073"], ["https://data.delijn.be/stops/502659", "https://data.delijn.be/stops/502661"], ["https://data.delijn.be/stops/200437", "https://data.delijn.be/stops/202451"], ["https://data.delijn.be/stops/501210", "https://data.delijn.be/stops/509795"], ["https://data.delijn.be/stops/208487", "https://data.delijn.be/stops/209487"], ["https://data.delijn.be/stops/208446", "https://data.delijn.be/stops/209446"], ["https://data.delijn.be/stops/305793", "https://data.delijn.be/stops/305794"], ["https://data.delijn.be/stops/301886", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/101957", "https://data.delijn.be/stops/109703"], ["https://data.delijn.be/stops/103047", "https://data.delijn.be/stops/108645"], ["https://data.delijn.be/stops/405646", "https://data.delijn.be/stops/408644"], ["https://data.delijn.be/stops/200152", "https://data.delijn.be/stops/203358"], ["https://data.delijn.be/stops/407866", "https://data.delijn.be/stops/408175"], ["https://data.delijn.be/stops/503149", "https://data.delijn.be/stops/503577"], ["https://data.delijn.be/stops/502502", "https://data.delijn.be/stops/505596"], ["https://data.delijn.be/stops/505914", "https://data.delijn.be/stops/508836"], ["https://data.delijn.be/stops/407091", "https://data.delijn.be/stops/407301"], ["https://data.delijn.be/stops/202765", "https://data.delijn.be/stops/202766"], ["https://data.delijn.be/stops/502030", "https://data.delijn.be/stops/502058"], ["https://data.delijn.be/stops/307504", "https://data.delijn.be/stops/308981"], ["https://data.delijn.be/stops/405878", "https://data.delijn.be/stops/409413"], ["https://data.delijn.be/stops/407633", "https://data.delijn.be/stops/407657"], ["https://data.delijn.be/stops/207801", "https://data.delijn.be/stops/306072"], ["https://data.delijn.be/stops/502431", "https://data.delijn.be/stops/507695"], ["https://data.delijn.be/stops/102870", "https://data.delijn.be/stops/105380"], ["https://data.delijn.be/stops/408863", "https://data.delijn.be/stops/408867"], ["https://data.delijn.be/stops/200696", "https://data.delijn.be/stops/208645"], ["https://data.delijn.be/stops/208013", "https://data.delijn.be/stops/208079"], ["https://data.delijn.be/stops/501327", "https://data.delijn.be/stops/501353"], ["https://data.delijn.be/stops/201314", "https://data.delijn.be/stops/201594"], ["https://data.delijn.be/stops/202591", "https://data.delijn.be/stops/210023"], ["https://data.delijn.be/stops/501778", "https://data.delijn.be/stops/506435"], ["https://data.delijn.be/stops/501362", "https://data.delijn.be/stops/501447"], ["https://data.delijn.be/stops/403096", "https://data.delijn.be/stops/403246"], ["https://data.delijn.be/stops/405256", "https://data.delijn.be/stops/405270"], ["https://data.delijn.be/stops/107158", "https://data.delijn.be/stops/107554"], ["https://data.delijn.be/stops/103144", "https://data.delijn.be/stops/109444"], ["https://data.delijn.be/stops/401359", "https://data.delijn.be/stops/401364"], ["https://data.delijn.be/stops/504167", "https://data.delijn.be/stops/504192"], ["https://data.delijn.be/stops/301778", "https://data.delijn.be/stops/301786"], ["https://data.delijn.be/stops/504374", "https://data.delijn.be/stops/509587"], ["https://data.delijn.be/stops/208083", "https://data.delijn.be/stops/209700"], ["https://data.delijn.be/stops/204159", "https://data.delijn.be/stops/205164"], ["https://data.delijn.be/stops/503675", "https://data.delijn.be/stops/505968"], ["https://data.delijn.be/stops/207778", "https://data.delijn.be/stops/208757"], ["https://data.delijn.be/stops/102232", "https://data.delijn.be/stops/102308"], ["https://data.delijn.be/stops/500195", "https://data.delijn.be/stops/506050"], ["https://data.delijn.be/stops/508190", "https://data.delijn.be/stops/508196"], ["https://data.delijn.be/stops/209630", "https://data.delijn.be/stops/209631"], ["https://data.delijn.be/stops/401513", "https://data.delijn.be/stops/406808"], ["https://data.delijn.be/stops/203051", "https://data.delijn.be/stops/203227"], ["https://data.delijn.be/stops/400627", "https://data.delijn.be/stops/408305"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/504516"], ["https://data.delijn.be/stops/405357", "https://data.delijn.be/stops/409001"], ["https://data.delijn.be/stops/304997", "https://data.delijn.be/stops/305019"], ["https://data.delijn.be/stops/400302", "https://data.delijn.be/stops/406768"], ["https://data.delijn.be/stops/408568", "https://data.delijn.be/stops/408814"], ["https://data.delijn.be/stops/207686", "https://data.delijn.be/stops/207704"], ["https://data.delijn.be/stops/508703", "https://data.delijn.be/stops/508991"], ["https://data.delijn.be/stops/103262", "https://data.delijn.be/stops/204627"], ["https://data.delijn.be/stops/503109", "https://data.delijn.be/stops/503374"], ["https://data.delijn.be/stops/401258", "https://data.delijn.be/stops/404558"], ["https://data.delijn.be/stops/208680", "https://data.delijn.be/stops/208681"], ["https://data.delijn.be/stops/206989", "https://data.delijn.be/stops/207989"], ["https://data.delijn.be/stops/307435", "https://data.delijn.be/stops/307436"], ["https://data.delijn.be/stops/300762", "https://data.delijn.be/stops/304577"], ["https://data.delijn.be/stops/507532", "https://data.delijn.be/stops/507533"], ["https://data.delijn.be/stops/505392", "https://data.delijn.be/stops/508225"], ["https://data.delijn.be/stops/505908", "https://data.delijn.be/stops/508568"], ["https://data.delijn.be/stops/501028", "https://data.delijn.be/stops/501036"], ["https://data.delijn.be/stops/209366", "https://data.delijn.be/stops/209367"], ["https://data.delijn.be/stops/304482", "https://data.delijn.be/stops/304483"], ["https://data.delijn.be/stops/403430", "https://data.delijn.be/stops/403498"], ["https://data.delijn.be/stops/300388", "https://data.delijn.be/stops/300394"], ["https://data.delijn.be/stops/208203", "https://data.delijn.be/stops/209203"], ["https://data.delijn.be/stops/401671", "https://data.delijn.be/stops/308275"], ["https://data.delijn.be/stops/402592", "https://data.delijn.be/stops/402601"], ["https://data.delijn.be/stops/300671", "https://data.delijn.be/stops/300675"], ["https://data.delijn.be/stops/405549", "https://data.delijn.be/stops/405553"], ["https://data.delijn.be/stops/504005", "https://data.delijn.be/stops/505205"], ["https://data.delijn.be/stops/109581", "https://data.delijn.be/stops/109583"], ["https://data.delijn.be/stops/204671", "https://data.delijn.be/stops/204672"], ["https://data.delijn.be/stops/105406", "https://data.delijn.be/stops/105407"], ["https://data.delijn.be/stops/301962", "https://data.delijn.be/stops/301963"], ["https://data.delijn.be/stops/405335", "https://data.delijn.be/stops/405364"], ["https://data.delijn.be/stops/408493", "https://data.delijn.be/stops/408980"], ["https://data.delijn.be/stops/104480", "https://data.delijn.be/stops/105285"], ["https://data.delijn.be/stops/407241", "https://data.delijn.be/stops/407436"], ["https://data.delijn.be/stops/205162", "https://data.delijn.be/stops/205580"], ["https://data.delijn.be/stops/300748", "https://data.delijn.be/stops/302401"], ["https://data.delijn.be/stops/200814", "https://data.delijn.be/stops/203215"], ["https://data.delijn.be/stops/304270", "https://data.delijn.be/stops/306681"], ["https://data.delijn.be/stops/208301", "https://data.delijn.be/stops/208302"], ["https://data.delijn.be/stops/508123", "https://data.delijn.be/stops/508142"], ["https://data.delijn.be/stops/400871", "https://data.delijn.be/stops/400952"], ["https://data.delijn.be/stops/204464", "https://data.delijn.be/stops/205119"], ["https://data.delijn.be/stops/302666", "https://data.delijn.be/stops/302678"], ["https://data.delijn.be/stops/208221", "https://data.delijn.be/stops/208592"], ["https://data.delijn.be/stops/402099", "https://data.delijn.be/stops/402260"], ["https://data.delijn.be/stops/307304", "https://data.delijn.be/stops/307315"], ["https://data.delijn.be/stops/400161", "https://data.delijn.be/stops/403549"], ["https://data.delijn.be/stops/300175", "https://data.delijn.be/stops/300188"], ["https://data.delijn.be/stops/504417", "https://data.delijn.be/stops/509400"], ["https://data.delijn.be/stops/103168", "https://data.delijn.be/stops/109740"], ["https://data.delijn.be/stops/305924", "https://data.delijn.be/stops/308881"], ["https://data.delijn.be/stops/502754", "https://data.delijn.be/stops/502756"], ["https://data.delijn.be/stops/204477", "https://data.delijn.be/stops/205477"], ["https://data.delijn.be/stops/105501", "https://data.delijn.be/stops/105694"], ["https://data.delijn.be/stops/405766", "https://data.delijn.be/stops/405767"], ["https://data.delijn.be/stops/406256", "https://data.delijn.be/stops/406257"], ["https://data.delijn.be/stops/501250", "https://data.delijn.be/stops/501635"], ["https://data.delijn.be/stops/400502", "https://data.delijn.be/stops/405581"], ["https://data.delijn.be/stops/200625", "https://data.delijn.be/stops/200954"], ["https://data.delijn.be/stops/301351", "https://data.delijn.be/stops/302005"], ["https://data.delijn.be/stops/409663", "https://data.delijn.be/stops/409727"], ["https://data.delijn.be/stops/503051", "https://data.delijn.be/stops/503056"], ["https://data.delijn.be/stops/204998", "https://data.delijn.be/stops/205998"], ["https://data.delijn.be/stops/505265", "https://data.delijn.be/stops/508927"], ["https://data.delijn.be/stops/303586", "https://data.delijn.be/stops/304317"], ["https://data.delijn.be/stops/407988", "https://data.delijn.be/stops/407989"], ["https://data.delijn.be/stops/503646", "https://data.delijn.be/stops/508735"], ["https://data.delijn.be/stops/508128", "https://data.delijn.be/stops/509453"], ["https://data.delijn.be/stops/404331", "https://data.delijn.be/stops/404380"], ["https://data.delijn.be/stops/505734", "https://data.delijn.be/stops/507608"], ["https://data.delijn.be/stops/402805", "https://data.delijn.be/stops/406003"], ["https://data.delijn.be/stops/301862", "https://data.delijn.be/stops/306989"], ["https://data.delijn.be/stops/306138", "https://data.delijn.be/stops/306140"], ["https://data.delijn.be/stops/108025", "https://data.delijn.be/stops/108030"], ["https://data.delijn.be/stops/105518", "https://data.delijn.be/stops/105521"], ["https://data.delijn.be/stops/403067", "https://data.delijn.be/stops/410328"], ["https://data.delijn.be/stops/201748", "https://data.delijn.be/stops/205071"], ["https://data.delijn.be/stops/104476", "https://data.delijn.be/stops/104479"], ["https://data.delijn.be/stops/109739", "https://data.delijn.be/stops/406774"], ["https://data.delijn.be/stops/504268", "https://data.delijn.be/stops/505183"], ["https://data.delijn.be/stops/103290", "https://data.delijn.be/stops/103377"], ["https://data.delijn.be/stops/102174", "https://data.delijn.be/stops/109369"], ["https://data.delijn.be/stops/302472", "https://data.delijn.be/stops/308830"], ["https://data.delijn.be/stops/304205", "https://data.delijn.be/stops/304207"], ["https://data.delijn.be/stops/405478", "https://data.delijn.be/stops/405479"], ["https://data.delijn.be/stops/407742", "https://data.delijn.be/stops/409775"], ["https://data.delijn.be/stops/305007", "https://data.delijn.be/stops/305015"], ["https://data.delijn.be/stops/508415", "https://data.delijn.be/stops/508439"], ["https://data.delijn.be/stops/204037", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/304831", "https://data.delijn.be/stops/304887"], ["https://data.delijn.be/stops/207526", "https://data.delijn.be/stops/216006"], ["https://data.delijn.be/stops/501294", "https://data.delijn.be/stops/501344"], ["https://data.delijn.be/stops/207978", "https://data.delijn.be/stops/304259"], ["https://data.delijn.be/stops/102207", "https://data.delijn.be/stops/102967"], ["https://data.delijn.be/stops/208483", "https://data.delijn.be/stops/209485"], ["https://data.delijn.be/stops/206659", "https://data.delijn.be/stops/207515"], ["https://data.delijn.be/stops/504774", "https://data.delijn.be/stops/508579"], ["https://data.delijn.be/stops/504051", "https://data.delijn.be/stops/505143"], ["https://data.delijn.be/stops/506038", "https://data.delijn.be/stops/506044"], ["https://data.delijn.be/stops/410220", "https://data.delijn.be/stops/410391"], ["https://data.delijn.be/stops/103623", "https://data.delijn.be/stops/107737"], ["https://data.delijn.be/stops/101017", "https://data.delijn.be/stops/104600"], ["https://data.delijn.be/stops/507311", "https://data.delijn.be/stops/507601"], ["https://data.delijn.be/stops/301623", "https://data.delijn.be/stops/301625"], ["https://data.delijn.be/stops/406318", "https://data.delijn.be/stops/409884"], ["https://data.delijn.be/stops/502305", "https://data.delijn.be/stops/505677"], ["https://data.delijn.be/stops/400642", "https://data.delijn.be/stops/400643"], ["https://data.delijn.be/stops/404207", "https://data.delijn.be/stops/404208"], ["https://data.delijn.be/stops/503113", "https://data.delijn.be/stops/505157"], ["https://data.delijn.be/stops/300852", "https://data.delijn.be/stops/303631"], ["https://data.delijn.be/stops/200009", "https://data.delijn.be/stops/201010"], ["https://data.delijn.be/stops/201551", "https://data.delijn.be/stops/211510"], ["https://data.delijn.be/stops/203023", "https://data.delijn.be/stops/203024"], ["https://data.delijn.be/stops/406553", "https://data.delijn.be/stops/406562"], ["https://data.delijn.be/stops/301352", "https://data.delijn.be/stops/301354"], ["https://data.delijn.be/stops/106799", "https://data.delijn.be/stops/106874"], ["https://data.delijn.be/stops/205180", "https://data.delijn.be/stops/205218"], ["https://data.delijn.be/stops/400967", "https://data.delijn.be/stops/406552"], ["https://data.delijn.be/stops/503428", "https://data.delijn.be/stops/505189"], ["https://data.delijn.be/stops/208032", "https://data.delijn.be/stops/209032"], ["https://data.delijn.be/stops/500028", "https://data.delijn.be/stops/503120"], ["https://data.delijn.be/stops/301653", "https://data.delijn.be/stops/303935"], ["https://data.delijn.be/stops/306606", "https://data.delijn.be/stops/306607"], ["https://data.delijn.be/stops/108526", "https://data.delijn.be/stops/108537"], ["https://data.delijn.be/stops/105753", "https://data.delijn.be/stops/105754"], ["https://data.delijn.be/stops/307535", "https://data.delijn.be/stops/307551"], ["https://data.delijn.be/stops/503191", "https://data.delijn.be/stops/508192"], ["https://data.delijn.be/stops/302612", "https://data.delijn.be/stops/302652"], ["https://data.delijn.be/stops/304753", "https://data.delijn.be/stops/307333"], ["https://data.delijn.be/stops/205620", "https://data.delijn.be/stops/205754"], ["https://data.delijn.be/stops/209460", "https://data.delijn.be/stops/209467"], ["https://data.delijn.be/stops/403424", "https://data.delijn.be/stops/404969"], ["https://data.delijn.be/stops/503264", "https://data.delijn.be/stops/508174"], ["https://data.delijn.be/stops/408186", "https://data.delijn.be/stops/408443"], ["https://data.delijn.be/stops/400548", "https://data.delijn.be/stops/404060"], ["https://data.delijn.be/stops/200137", "https://data.delijn.be/stops/201308"], ["https://data.delijn.be/stops/407783", "https://data.delijn.be/stops/308202"], ["https://data.delijn.be/stops/302892", "https://data.delijn.be/stops/307072"], ["https://data.delijn.be/stops/208136", "https://data.delijn.be/stops/209103"], ["https://data.delijn.be/stops/303251", "https://data.delijn.be/stops/303258"], ["https://data.delijn.be/stops/503625", "https://data.delijn.be/stops/503629"], ["https://data.delijn.be/stops/305518", "https://data.delijn.be/stops/305519"], ["https://data.delijn.be/stops/206794", "https://data.delijn.be/stops/209049"], ["https://data.delijn.be/stops/502801", "https://data.delijn.be/stops/509189"], ["https://data.delijn.be/stops/206118", "https://data.delijn.be/stops/207117"], ["https://data.delijn.be/stops/401514", "https://data.delijn.be/stops/409315"], ["https://data.delijn.be/stops/306626", "https://data.delijn.be/stops/308457"], ["https://data.delijn.be/stops/108788", "https://data.delijn.be/stops/109758"], ["https://data.delijn.be/stops/503390", "https://data.delijn.be/stops/503450"], ["https://data.delijn.be/stops/101315", "https://data.delijn.be/stops/101320"], ["https://data.delijn.be/stops/304390", "https://data.delijn.be/stops/307414"], ["https://data.delijn.be/stops/405079", "https://data.delijn.be/stops/405109"], ["https://data.delijn.be/stops/402459", "https://data.delijn.be/stops/402463"], ["https://data.delijn.be/stops/206791", "https://data.delijn.be/stops/209568"], ["https://data.delijn.be/stops/201466", "https://data.delijn.be/stops/201833"], ["https://data.delijn.be/stops/108678", "https://data.delijn.be/stops/108679"], ["https://data.delijn.be/stops/302842", "https://data.delijn.be/stops/307117"], ["https://data.delijn.be/stops/503029", "https://data.delijn.be/stops/508029"], ["https://data.delijn.be/stops/505172", "https://data.delijn.be/stops/507343"], ["https://data.delijn.be/stops/201151", "https://data.delijn.be/stops/201174"], ["https://data.delijn.be/stops/407009", "https://data.delijn.be/stops/407057"], ["https://data.delijn.be/stops/102974", "https://data.delijn.be/stops/107142"], ["https://data.delijn.be/stops/303043", "https://data.delijn.be/stops/303073"], ["https://data.delijn.be/stops/300063", "https://data.delijn.be/stops/303836"], ["https://data.delijn.be/stops/405692", "https://data.delijn.be/stops/405708"], ["https://data.delijn.be/stops/305099", "https://data.delijn.be/stops/305104"], ["https://data.delijn.be/stops/201645", "https://data.delijn.be/stops/202865"], ["https://data.delijn.be/stops/200459", "https://data.delijn.be/stops/201652"], ["https://data.delijn.be/stops/405857", "https://data.delijn.be/stops/409433"], ["https://data.delijn.be/stops/302917", "https://data.delijn.be/stops/307019"], ["https://data.delijn.be/stops/403796", "https://data.delijn.be/stops/403808"], ["https://data.delijn.be/stops/207724", "https://data.delijn.be/stops/207726"], ["https://data.delijn.be/stops/409061", "https://data.delijn.be/stops/409089"], ["https://data.delijn.be/stops/200259", "https://data.delijn.be/stops/202453"], ["https://data.delijn.be/stops/400020", "https://data.delijn.be/stops/400025"], ["https://data.delijn.be/stops/507368", "https://data.delijn.be/stops/507370"], ["https://data.delijn.be/stops/406142", "https://data.delijn.be/stops/406388"], ["https://data.delijn.be/stops/504683", "https://data.delijn.be/stops/509683"], ["https://data.delijn.be/stops/206132", "https://data.delijn.be/stops/206868"], ["https://data.delijn.be/stops/300494", "https://data.delijn.be/stops/307085"], ["https://data.delijn.be/stops/302034", "https://data.delijn.be/stops/302053"], ["https://data.delijn.be/stops/408928", "https://data.delijn.be/stops/408943"], ["https://data.delijn.be/stops/104108", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/101631", "https://data.delijn.be/stops/101632"], ["https://data.delijn.be/stops/500049", "https://data.delijn.be/stops/500050"], ["https://data.delijn.be/stops/103515", "https://data.delijn.be/stops/105180"], ["https://data.delijn.be/stops/405184", "https://data.delijn.be/stops/407333"], ["https://data.delijn.be/stops/202381", "https://data.delijn.be/stops/203381"], ["https://data.delijn.be/stops/406520", "https://data.delijn.be/stops/407565"], ["https://data.delijn.be/stops/503679", "https://data.delijn.be/stops/508679"], ["https://data.delijn.be/stops/403564", "https://data.delijn.be/stops/407464"], ["https://data.delijn.be/stops/206668", "https://data.delijn.be/stops/206801"], ["https://data.delijn.be/stops/105031", "https://data.delijn.be/stops/105064"], ["https://data.delijn.be/stops/102804", "https://data.delijn.be/stops/109448"], ["https://data.delijn.be/stops/202589", "https://data.delijn.be/stops/203590"], ["https://data.delijn.be/stops/300264", "https://data.delijn.be/stops/307497"], ["https://data.delijn.be/stops/205350", "https://data.delijn.be/stops/205444"], ["https://data.delijn.be/stops/200054", "https://data.delijn.be/stops/211057"], ["https://data.delijn.be/stops/206347", "https://data.delijn.be/stops/207347"], ["https://data.delijn.be/stops/201462", "https://data.delijn.be/stops/201737"], ["https://data.delijn.be/stops/406939", "https://data.delijn.be/stops/407296"], ["https://data.delijn.be/stops/303169", "https://data.delijn.be/stops/304327"], ["https://data.delijn.be/stops/402264", "https://data.delijn.be/stops/402265"], ["https://data.delijn.be/stops/302873", "https://data.delijn.be/stops/302874"], ["https://data.delijn.be/stops/406522", "https://data.delijn.be/stops/406647"], ["https://data.delijn.be/stops/204221", "https://data.delijn.be/stops/205905"], ["https://data.delijn.be/stops/207159", "https://data.delijn.be/stops/207447"], ["https://data.delijn.be/stops/403346", "https://data.delijn.be/stops/403349"], ["https://data.delijn.be/stops/301110", "https://data.delijn.be/stops/303676"], ["https://data.delijn.be/stops/103239", "https://data.delijn.be/stops/107292"], ["https://data.delijn.be/stops/200647", "https://data.delijn.be/stops/202861"], ["https://data.delijn.be/stops/205928", "https://data.delijn.be/stops/205931"], ["https://data.delijn.be/stops/403701", "https://data.delijn.be/stops/407233"], ["https://data.delijn.be/stops/207602", "https://data.delijn.be/stops/307771"], ["https://data.delijn.be/stops/107196", "https://data.delijn.be/stops/109771"], ["https://data.delijn.be/stops/405209", "https://data.delijn.be/stops/405255"], ["https://data.delijn.be/stops/502376", "https://data.delijn.be/stops/507555"], ["https://data.delijn.be/stops/403474", "https://data.delijn.be/stops/410390"], ["https://data.delijn.be/stops/200867", "https://data.delijn.be/stops/200879"], ["https://data.delijn.be/stops/401548", "https://data.delijn.be/stops/401661"], ["https://data.delijn.be/stops/405260", "https://data.delijn.be/stops/405263"], ["https://data.delijn.be/stops/202360", "https://data.delijn.be/stops/203360"], ["https://data.delijn.be/stops/501129", "https://data.delijn.be/stops/501134"], ["https://data.delijn.be/stops/206188", "https://data.delijn.be/stops/206955"], ["https://data.delijn.be/stops/103096", "https://data.delijn.be/stops/109271"], ["https://data.delijn.be/stops/403933", "https://data.delijn.be/stops/403998"], ["https://data.delijn.be/stops/405687", "https://data.delijn.be/stops/406492"], ["https://data.delijn.be/stops/101343", "https://data.delijn.be/stops/108099"], ["https://data.delijn.be/stops/409267", "https://data.delijn.be/stops/409282"], ["https://data.delijn.be/stops/300593", "https://data.delijn.be/stops/307170"], ["https://data.delijn.be/stops/403222", "https://data.delijn.be/stops/403401"], ["https://data.delijn.be/stops/404566", "https://data.delijn.be/stops/404567"], ["https://data.delijn.be/stops/406829", "https://data.delijn.be/stops/408475"], ["https://data.delijn.be/stops/402581", "https://data.delijn.be/stops/408446"], ["https://data.delijn.be/stops/204391", "https://data.delijn.be/stops/204763"], ["https://data.delijn.be/stops/201152", "https://data.delijn.be/stops/201153"], ["https://data.delijn.be/stops/403236", "https://data.delijn.be/stops/403473"], ["https://data.delijn.be/stops/208376", "https://data.delijn.be/stops/209120"], ["https://data.delijn.be/stops/202733", "https://data.delijn.be/stops/202735"], ["https://data.delijn.be/stops/103364", "https://data.delijn.be/stops/107490"], ["https://data.delijn.be/stops/402359", "https://data.delijn.be/stops/402461"], ["https://data.delijn.be/stops/107302", "https://data.delijn.be/stops/109715"], ["https://data.delijn.be/stops/504734", "https://data.delijn.be/stops/506249"], ["https://data.delijn.be/stops/301958", "https://data.delijn.be/stops/302399"], ["https://data.delijn.be/stops/204027", "https://data.delijn.be/stops/204028"], ["https://data.delijn.be/stops/304243", "https://data.delijn.be/stops/304244"], ["https://data.delijn.be/stops/208693", "https://data.delijn.be/stops/208694"], ["https://data.delijn.be/stops/200804", "https://data.delijn.be/stops/200882"], ["https://data.delijn.be/stops/106614", "https://data.delijn.be/stops/106615"], ["https://data.delijn.be/stops/304136", "https://data.delijn.be/stops/307652"], ["https://data.delijn.be/stops/401872", "https://data.delijn.be/stops/401874"], ["https://data.delijn.be/stops/307572", "https://data.delijn.be/stops/307573"], ["https://data.delijn.be/stops/202965", "https://data.delijn.be/stops/203965"], ["https://data.delijn.be/stops/102859", "https://data.delijn.be/stops/103263"], ["https://data.delijn.be/stops/106200", "https://data.delijn.be/stops/106303"], ["https://data.delijn.be/stops/302186", "https://data.delijn.be/stops/302207"], ["https://data.delijn.be/stops/208053", "https://data.delijn.be/stops/208657"], ["https://data.delijn.be/stops/509764", "https://data.delijn.be/stops/509793"], ["https://data.delijn.be/stops/400513", "https://data.delijn.be/stops/401961"], ["https://data.delijn.be/stops/105086", "https://data.delijn.be/stops/105087"], ["https://data.delijn.be/stops/201604", "https://data.delijn.be/stops/201940"], ["https://data.delijn.be/stops/102447", "https://data.delijn.be/stops/104117"], ["https://data.delijn.be/stops/502518", "https://data.delijn.be/stops/509795"], ["https://data.delijn.be/stops/402385", "https://data.delijn.be/stops/404730"], ["https://data.delijn.be/stops/405902", "https://data.delijn.be/stops/405903"], ["https://data.delijn.be/stops/300371", "https://data.delijn.be/stops/300377"], ["https://data.delijn.be/stops/503812", "https://data.delijn.be/stops/505543"], ["https://data.delijn.be/stops/302324", "https://data.delijn.be/stops/303438"], ["https://data.delijn.be/stops/501428", "https://data.delijn.be/stops/506487"], ["https://data.delijn.be/stops/202762", "https://data.delijn.be/stops/202763"], ["https://data.delijn.be/stops/303412", "https://data.delijn.be/stops/303415"], ["https://data.delijn.be/stops/307088", "https://data.delijn.be/stops/307905"], ["https://data.delijn.be/stops/200862", "https://data.delijn.be/stops/502069"], ["https://data.delijn.be/stops/505504", "https://data.delijn.be/stops/505604"], ["https://data.delijn.be/stops/406786", "https://data.delijn.be/stops/409299"], ["https://data.delijn.be/stops/206122", "https://data.delijn.be/stops/206477"], ["https://data.delijn.be/stops/507261", "https://data.delijn.be/stops/507703"], ["https://data.delijn.be/stops/504323", "https://data.delijn.be/stops/507689"], ["https://data.delijn.be/stops/107151", "https://data.delijn.be/stops/107153"], ["https://data.delijn.be/stops/206924", "https://data.delijn.be/stops/206925"], ["https://data.delijn.be/stops/307261", "https://data.delijn.be/stops/307262"], ["https://data.delijn.be/stops/200453", "https://data.delijn.be/stops/208266"], ["https://data.delijn.be/stops/400493", "https://data.delijn.be/stops/409797"], ["https://data.delijn.be/stops/504069", "https://data.delijn.be/stops/505110"], ["https://data.delijn.be/stops/506043", "https://data.delijn.be/stops/506488"], ["https://data.delijn.be/stops/405195", "https://data.delijn.be/stops/405199"], ["https://data.delijn.be/stops/206599", "https://data.delijn.be/stops/207598"], ["https://data.delijn.be/stops/205789", "https://data.delijn.be/stops/205791"], ["https://data.delijn.be/stops/105203", "https://data.delijn.be/stops/109012"], ["https://data.delijn.be/stops/206487", "https://data.delijn.be/stops/206648"], ["https://data.delijn.be/stops/502385", "https://data.delijn.be/stops/502766"], ["https://data.delijn.be/stops/300637", "https://data.delijn.be/stops/302471"], ["https://data.delijn.be/stops/400112", "https://data.delijn.be/stops/409156"], ["https://data.delijn.be/stops/409707", "https://data.delijn.be/stops/409710"], ["https://data.delijn.be/stops/405177", "https://data.delijn.be/stops/408367"], ["https://data.delijn.be/stops/504319", "https://data.delijn.be/stops/504455"], ["https://data.delijn.be/stops/506329", "https://data.delijn.be/stops/506453"], ["https://data.delijn.be/stops/304101", "https://data.delijn.be/stops/307996"], ["https://data.delijn.be/stops/505663", "https://data.delijn.be/stops/505944"], ["https://data.delijn.be/stops/501117", "https://data.delijn.be/stops/506117"], ["https://data.delijn.be/stops/304315", "https://data.delijn.be/stops/306882"], ["https://data.delijn.be/stops/504987", "https://data.delijn.be/stops/504988"], ["https://data.delijn.be/stops/108726", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/502096", "https://data.delijn.be/stops/502146"], ["https://data.delijn.be/stops/405215", "https://data.delijn.be/stops/405296"], ["https://data.delijn.be/stops/301138", "https://data.delijn.be/stops/302876"], ["https://data.delijn.be/stops/405676", "https://data.delijn.be/stops/408395"], ["https://data.delijn.be/stops/501165", "https://data.delijn.be/stops/506165"], ["https://data.delijn.be/stops/406398", "https://data.delijn.be/stops/302830"], ["https://data.delijn.be/stops/207757", "https://data.delijn.be/stops/207778"], ["https://data.delijn.be/stops/408636", "https://data.delijn.be/stops/408672"], ["https://data.delijn.be/stops/102888", "https://data.delijn.be/stops/105275"], ["https://data.delijn.be/stops/504795", "https://data.delijn.be/stops/508947"], ["https://data.delijn.be/stops/104706", "https://data.delijn.be/stops/107354"], ["https://data.delijn.be/stops/503445", "https://data.delijn.be/stops/508444"], ["https://data.delijn.be/stops/200967", "https://data.delijn.be/stops/208662"], ["https://data.delijn.be/stops/202795", "https://data.delijn.be/stops/203796"], ["https://data.delijn.be/stops/305181", "https://data.delijn.be/stops/305208"], ["https://data.delijn.be/stops/204973", "https://data.delijn.be/stops/207067"], ["https://data.delijn.be/stops/409372", "https://data.delijn.be/stops/409382"], ["https://data.delijn.be/stops/104591", "https://data.delijn.be/stops/107306"], ["https://data.delijn.be/stops/308418", "https://data.delijn.be/stops/308423"], ["https://data.delijn.be/stops/506504", "https://data.delijn.be/stops/506513"], ["https://data.delijn.be/stops/302272", "https://data.delijn.be/stops/307932"], ["https://data.delijn.be/stops/204648", "https://data.delijn.be/stops/205648"], ["https://data.delijn.be/stops/402812", "https://data.delijn.be/stops/409030"], ["https://data.delijn.be/stops/206748", "https://data.delijn.be/stops/207709"], ["https://data.delijn.be/stops/204913", "https://data.delijn.be/stops/204914"], ["https://data.delijn.be/stops/501053", "https://data.delijn.be/stops/506057"], ["https://data.delijn.be/stops/201908", "https://data.delijn.be/stops/201910"], ["https://data.delijn.be/stops/101311", "https://data.delijn.be/stops/101313"], ["https://data.delijn.be/stops/202394", "https://data.delijn.be/stops/203394"], ["https://data.delijn.be/stops/108817", "https://data.delijn.be/stops/108819"], ["https://data.delijn.be/stops/505387", "https://data.delijn.be/stops/505969"], ["https://data.delijn.be/stops/206924", "https://data.delijn.be/stops/207212"], ["https://data.delijn.be/stops/304502", "https://data.delijn.be/stops/304520"], ["https://data.delijn.be/stops/203480", "https://data.delijn.be/stops/203954"], ["https://data.delijn.be/stops/501645", "https://data.delijn.be/stops/506636"], ["https://data.delijn.be/stops/407888", "https://data.delijn.be/stops/407889"], ["https://data.delijn.be/stops/202315", "https://data.delijn.be/stops/208887"], ["https://data.delijn.be/stops/300673", "https://data.delijn.be/stops/300674"], ["https://data.delijn.be/stops/404357", "https://data.delijn.be/stops/404893"], ["https://data.delijn.be/stops/406195", "https://data.delijn.be/stops/406460"], ["https://data.delijn.be/stops/109330", "https://data.delijn.be/stops/307436"], ["https://data.delijn.be/stops/302870", "https://data.delijn.be/stops/302891"], ["https://data.delijn.be/stops/300268", "https://data.delijn.be/stops/306825"], ["https://data.delijn.be/stops/400078", "https://data.delijn.be/stops/409105"], ["https://data.delijn.be/stops/102082", "https://data.delijn.be/stops/105836"], ["https://data.delijn.be/stops/301569", "https://data.delijn.be/stops/303110"], ["https://data.delijn.be/stops/105058", "https://data.delijn.be/stops/109491"], ["https://data.delijn.be/stops/401480", "https://data.delijn.be/stops/406006"], ["https://data.delijn.be/stops/400715", "https://data.delijn.be/stops/401919"], ["https://data.delijn.be/stops/107449", "https://data.delijn.be/stops/107453"], ["https://data.delijn.be/stops/307334", "https://data.delijn.be/stops/307335"], ["https://data.delijn.be/stops/201666", "https://data.delijn.be/stops/201678"], ["https://data.delijn.be/stops/408028", "https://data.delijn.be/stops/305730"], ["https://data.delijn.be/stops/503244", "https://data.delijn.be/stops/508076"], ["https://data.delijn.be/stops/509361", "https://data.delijn.be/stops/509370"], ["https://data.delijn.be/stops/102684", "https://data.delijn.be/stops/107337"], ["https://data.delijn.be/stops/201428", "https://data.delijn.be/stops/203008"], ["https://data.delijn.be/stops/507369", "https://data.delijn.be/stops/507370"], ["https://data.delijn.be/stops/208773", "https://data.delijn.be/stops/209774"], ["https://data.delijn.be/stops/105108", "https://data.delijn.be/stops/105112"], ["https://data.delijn.be/stops/404062", "https://data.delijn.be/stops/408965"], ["https://data.delijn.be/stops/203297", "https://data.delijn.be/stops/208889"], ["https://data.delijn.be/stops/406460", "https://data.delijn.be/stops/410188"], ["https://data.delijn.be/stops/403685", "https://data.delijn.be/stops/405389"], ["https://data.delijn.be/stops/208846", "https://data.delijn.be/stops/209047"], ["https://data.delijn.be/stops/502279", "https://data.delijn.be/stops/507279"], ["https://data.delijn.be/stops/401546", "https://data.delijn.be/stops/401547"], ["https://data.delijn.be/stops/502672", "https://data.delijn.be/stops/507268"], ["https://data.delijn.be/stops/104941", "https://data.delijn.be/stops/109995"], ["https://data.delijn.be/stops/303328", "https://data.delijn.be/stops/303329"], ["https://data.delijn.be/stops/301542", "https://data.delijn.be/stops/301543"], ["https://data.delijn.be/stops/503987", "https://data.delijn.be/stops/508987"], ["https://data.delijn.be/stops/201852", "https://data.delijn.be/stops/201880"], ["https://data.delijn.be/stops/404470", "https://data.delijn.be/stops/404473"], ["https://data.delijn.be/stops/501108", "https://data.delijn.be/stops/506111"], ["https://data.delijn.be/stops/501034", "https://data.delijn.be/stops/506329"], ["https://data.delijn.be/stops/503024", "https://data.delijn.be/stops/508024"], ["https://data.delijn.be/stops/106283", "https://data.delijn.be/stops/106284"], ["https://data.delijn.be/stops/103642", "https://data.delijn.be/stops/105628"], ["https://data.delijn.be/stops/400101", "https://data.delijn.be/stops/400163"], ["https://data.delijn.be/stops/405694", "https://data.delijn.be/stops/405697"], ["https://data.delijn.be/stops/503733", "https://data.delijn.be/stops/503741"], ["https://data.delijn.be/stops/401618", "https://data.delijn.be/stops/308212"], ["https://data.delijn.be/stops/202362", "https://data.delijn.be/stops/204950"], ["https://data.delijn.be/stops/107123", "https://data.delijn.be/stops/109650"], ["https://data.delijn.be/stops/202610", "https://data.delijn.be/stops/203564"], ["https://data.delijn.be/stops/503951", "https://data.delijn.be/stops/508951"], ["https://data.delijn.be/stops/401483", "https://data.delijn.be/stops/401567"], ["https://data.delijn.be/stops/106716", "https://data.delijn.be/stops/106720"], ["https://data.delijn.be/stops/300280", "https://data.delijn.be/stops/307475"], ["https://data.delijn.be/stops/106052", "https://data.delijn.be/stops/109937"], ["https://data.delijn.be/stops/402385", "https://data.delijn.be/stops/402495"], ["https://data.delijn.be/stops/305102", "https://data.delijn.be/stops/305120"], ["https://data.delijn.be/stops/402074", "https://data.delijn.be/stops/405548"], ["https://data.delijn.be/stops/109617", "https://data.delijn.be/stops/109618"], ["https://data.delijn.be/stops/401649", "https://data.delijn.be/stops/401723"], ["https://data.delijn.be/stops/305179", "https://data.delijn.be/stops/305180"], ["https://data.delijn.be/stops/404794", "https://data.delijn.be/stops/404798"], ["https://data.delijn.be/stops/101572", "https://data.delijn.be/stops/105466"], ["https://data.delijn.be/stops/503856", "https://data.delijn.be/stops/508856"], ["https://data.delijn.be/stops/107035", "https://data.delijn.be/stops/107040"], ["https://data.delijn.be/stops/300391", "https://data.delijn.be/stops/300395"], ["https://data.delijn.be/stops/204830", "https://data.delijn.be/stops/205259"], ["https://data.delijn.be/stops/304739", "https://data.delijn.be/stops/304850"], ["https://data.delijn.be/stops/106568", "https://data.delijn.be/stops/107730"], ["https://data.delijn.be/stops/405333", "https://data.delijn.be/stops/405339"], ["https://data.delijn.be/stops/103068", "https://data.delijn.be/stops/103069"], ["https://data.delijn.be/stops/307729", "https://data.delijn.be/stops/307732"], ["https://data.delijn.be/stops/307269", "https://data.delijn.be/stops/308410"], ["https://data.delijn.be/stops/101277", "https://data.delijn.be/stops/106025"], ["https://data.delijn.be/stops/405326", "https://data.delijn.be/stops/302846"], ["https://data.delijn.be/stops/400195", "https://data.delijn.be/stops/401082"], ["https://data.delijn.be/stops/407407", "https://data.delijn.be/stops/407570"], ["https://data.delijn.be/stops/101654", "https://data.delijn.be/stops/107921"], ["https://data.delijn.be/stops/300523", "https://data.delijn.be/stops/305552"], ["https://data.delijn.be/stops/200808", "https://data.delijn.be/stops/200884"], ["https://data.delijn.be/stops/304039", "https://data.delijn.be/stops/304091"], ["https://data.delijn.be/stops/202284", "https://data.delijn.be/stops/203284"], ["https://data.delijn.be/stops/104948", "https://data.delijn.be/stops/109767"], ["https://data.delijn.be/stops/502553", "https://data.delijn.be/stops/507553"], ["https://data.delijn.be/stops/208231", "https://data.delijn.be/stops/208795"], ["https://data.delijn.be/stops/507154", "https://data.delijn.be/stops/507912"], ["https://data.delijn.be/stops/504513", "https://data.delijn.be/stops/504515"], ["https://data.delijn.be/stops/503044", "https://data.delijn.be/stops/508040"], ["https://data.delijn.be/stops/306558", "https://data.delijn.be/stops/306559"], ["https://data.delijn.be/stops/200608", "https://data.delijn.be/stops/202207"], ["https://data.delijn.be/stops/105257", "https://data.delijn.be/stops/105259"], ["https://data.delijn.be/stops/402171", "https://data.delijn.be/stops/402207"], ["https://data.delijn.be/stops/101522", "https://data.delijn.be/stops/109644"], ["https://data.delijn.be/stops/202834", "https://data.delijn.be/stops/202835"], ["https://data.delijn.be/stops/505915", "https://data.delijn.be/stops/505918"], ["https://data.delijn.be/stops/106952", "https://data.delijn.be/stops/106953"], ["https://data.delijn.be/stops/108952", "https://data.delijn.be/stops/108954"], ["https://data.delijn.be/stops/403886", "https://data.delijn.be/stops/404057"], ["https://data.delijn.be/stops/107028", "https://data.delijn.be/stops/107030"], ["https://data.delijn.be/stops/102934", "https://data.delijn.be/stops/106043"], ["https://data.delijn.be/stops/101445", "https://data.delijn.be/stops/104545"], ["https://data.delijn.be/stops/403837", "https://data.delijn.be/stops/405633"], ["https://data.delijn.be/stops/109293", "https://data.delijn.be/stops/109703"], ["https://data.delijn.be/stops/300789", "https://data.delijn.be/stops/302404"], ["https://data.delijn.be/stops/403724", "https://data.delijn.be/stops/403726"], ["https://data.delijn.be/stops/407303", "https://data.delijn.be/stops/409494"], ["https://data.delijn.be/stops/407250", "https://data.delijn.be/stops/407411"], ["https://data.delijn.be/stops/502124", "https://data.delijn.be/stops/502752"], ["https://data.delijn.be/stops/109559", "https://data.delijn.be/stops/306859"], ["https://data.delijn.be/stops/204584", "https://data.delijn.be/stops/207391"], ["https://data.delijn.be/stops/308549", "https://data.delijn.be/stops/308551"], ["https://data.delijn.be/stops/501031", "https://data.delijn.be/stops/501138"], ["https://data.delijn.be/stops/101088", "https://data.delijn.be/stops/105974"], ["https://data.delijn.be/stops/208647", "https://data.delijn.be/stops/209648"], ["https://data.delijn.be/stops/403952", "https://data.delijn.be/stops/403953"], ["https://data.delijn.be/stops/106285", "https://data.delijn.be/stops/106350"], ["https://data.delijn.be/stops/400299", "https://data.delijn.be/stops/400359"], ["https://data.delijn.be/stops/102724", "https://data.delijn.be/stops/105626"], ["https://data.delijn.be/stops/302922", "https://data.delijn.be/stops/303026"], ["https://data.delijn.be/stops/300709", "https://data.delijn.be/stops/300730"], ["https://data.delijn.be/stops/305123", "https://data.delijn.be/stops/305124"], ["https://data.delijn.be/stops/102735", "https://data.delijn.be/stops/103725"], ["https://data.delijn.be/stops/407000", "https://data.delijn.be/stops/308079"], ["https://data.delijn.be/stops/200045", "https://data.delijn.be/stops/201436"], ["https://data.delijn.be/stops/501672", "https://data.delijn.be/stops/506429"], ["https://data.delijn.be/stops/409193", "https://data.delijn.be/stops/410155"], ["https://data.delijn.be/stops/207239", "https://data.delijn.be/stops/207291"], ["https://data.delijn.be/stops/400485", "https://data.delijn.be/stops/400493"], ["https://data.delijn.be/stops/300783", "https://data.delijn.be/stops/304653"], ["https://data.delijn.be/stops/401000", "https://data.delijn.be/stops/401003"], ["https://data.delijn.be/stops/108833", "https://data.delijn.be/stops/108834"], ["https://data.delijn.be/stops/503899", "https://data.delijn.be/stops/508902"], ["https://data.delijn.be/stops/401951", "https://data.delijn.be/stops/407558"], ["https://data.delijn.be/stops/307595", "https://data.delijn.be/stops/307606"], ["https://data.delijn.be/stops/301866", "https://data.delijn.be/stops/301867"], ["https://data.delijn.be/stops/107261", "https://data.delijn.be/stops/107262"], ["https://data.delijn.be/stops/502324", "https://data.delijn.be/stops/505737"], ["https://data.delijn.be/stops/300117", "https://data.delijn.be/stops/306853"], ["https://data.delijn.be/stops/405476", "https://data.delijn.be/stops/406615"], ["https://data.delijn.be/stops/102500", "https://data.delijn.be/stops/104940"], ["https://data.delijn.be/stops/504546", "https://data.delijn.be/stops/509546"], ["https://data.delijn.be/stops/300942", "https://data.delijn.be/stops/304720"], ["https://data.delijn.be/stops/400707", "https://data.delijn.be/stops/400709"], ["https://data.delijn.be/stops/300129", "https://data.delijn.be/stops/300136"], ["https://data.delijn.be/stops/202005", "https://data.delijn.be/stops/211006"], ["https://data.delijn.be/stops/300102", "https://data.delijn.be/stops/306770"], ["https://data.delijn.be/stops/500051", "https://data.delijn.be/stops/501010"], ["https://data.delijn.be/stops/504967", "https://data.delijn.be/stops/509965"], ["https://data.delijn.be/stops/503792", "https://data.delijn.be/stops/508797"], ["https://data.delijn.be/stops/303496", "https://data.delijn.be/stops/303498"], ["https://data.delijn.be/stops/501420", "https://data.delijn.be/stops/505530"], ["https://data.delijn.be/stops/302197", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/404660", "https://data.delijn.be/stops/404663"], ["https://data.delijn.be/stops/305949", "https://data.delijn.be/stops/308290"], ["https://data.delijn.be/stops/105659", "https://data.delijn.be/stops/105661"], ["https://data.delijn.be/stops/306325", "https://data.delijn.be/stops/306327"], ["https://data.delijn.be/stops/503794", "https://data.delijn.be/stops/508795"], ["https://data.delijn.be/stops/206225", "https://data.delijn.be/stops/207224"], ["https://data.delijn.be/stops/303256", "https://data.delijn.be/stops/303266"], ["https://data.delijn.be/stops/105331", "https://data.delijn.be/stops/105336"], ["https://data.delijn.be/stops/401311", "https://data.delijn.be/stops/401324"], ["https://data.delijn.be/stops/108896", "https://data.delijn.be/stops/108897"], ["https://data.delijn.be/stops/200199", "https://data.delijn.be/stops/202954"], ["https://data.delijn.be/stops/308868", "https://data.delijn.be/stops/308869"], ["https://data.delijn.be/stops/206108", "https://data.delijn.be/stops/207106"], ["https://data.delijn.be/stops/408669", "https://data.delijn.be/stops/408671"], ["https://data.delijn.be/stops/504074", "https://data.delijn.be/stops/504271"], ["https://data.delijn.be/stops/105481", "https://data.delijn.be/stops/105492"], ["https://data.delijn.be/stops/303229", "https://data.delijn.be/stops/303230"], ["https://data.delijn.be/stops/301546", "https://data.delijn.be/stops/305166"], ["https://data.delijn.be/stops/302927", "https://data.delijn.be/stops/302953"], ["https://data.delijn.be/stops/304071", "https://data.delijn.be/stops/307504"], ["https://data.delijn.be/stops/201952", "https://data.delijn.be/stops/202457"], ["https://data.delijn.be/stops/503822", "https://data.delijn.be/stops/508824"], ["https://data.delijn.be/stops/200431", "https://data.delijn.be/stops/201432"], ["https://data.delijn.be/stops/400151", "https://data.delijn.be/stops/410030"], ["https://data.delijn.be/stops/404451", "https://data.delijn.be/stops/404495"], ["https://data.delijn.be/stops/207367", "https://data.delijn.be/stops/207368"], ["https://data.delijn.be/stops/302116", "https://data.delijn.be/stops/303662"], ["https://data.delijn.be/stops/405040", "https://data.delijn.be/stops/405068"], ["https://data.delijn.be/stops/204429", "https://data.delijn.be/stops/205418"], ["https://data.delijn.be/stops/400650", "https://data.delijn.be/stops/400682"], ["https://data.delijn.be/stops/109784", "https://data.delijn.be/stops/109787"], ["https://data.delijn.be/stops/305341", "https://data.delijn.be/stops/305342"], ["https://data.delijn.be/stops/106693", "https://data.delijn.be/stops/106696"], ["https://data.delijn.be/stops/204613", "https://data.delijn.be/stops/205730"], ["https://data.delijn.be/stops/302563", "https://data.delijn.be/stops/308121"], ["https://data.delijn.be/stops/102469", "https://data.delijn.be/stops/400414"], ["https://data.delijn.be/stops/106145", "https://data.delijn.be/stops/106440"], ["https://data.delijn.be/stops/301277", "https://data.delijn.be/stops/303646"], ["https://data.delijn.be/stops/504159", "https://data.delijn.be/stops/509191"], ["https://data.delijn.be/stops/403975", "https://data.delijn.be/stops/405976"], ["https://data.delijn.be/stops/404323", "https://data.delijn.be/stops/404370"], ["https://data.delijn.be/stops/504293", "https://data.delijn.be/stops/509957"], ["https://data.delijn.be/stops/202046", "https://data.delijn.be/stops/203137"], ["https://data.delijn.be/stops/108154", "https://data.delijn.be/stops/108156"], ["https://data.delijn.be/stops/508436", "https://data.delijn.be/stops/508818"], ["https://data.delijn.be/stops/204155", "https://data.delijn.be/stops/204166"], ["https://data.delijn.be/stops/508375", "https://data.delijn.be/stops/508393"], ["https://data.delijn.be/stops/305311", "https://data.delijn.be/stops/305314"], ["https://data.delijn.be/stops/503837", "https://data.delijn.be/stops/508838"], ["https://data.delijn.be/stops/206778", "https://data.delijn.be/stops/208032"], ["https://data.delijn.be/stops/406660", "https://data.delijn.be/stops/406685"], ["https://data.delijn.be/stops/204566", "https://data.delijn.be/stops/303381"], ["https://data.delijn.be/stops/102256", "https://data.delijn.be/stops/109872"], ["https://data.delijn.be/stops/208130", "https://data.delijn.be/stops/209131"], ["https://data.delijn.be/stops/102613", "https://data.delijn.be/stops/107052"], ["https://data.delijn.be/stops/204992", "https://data.delijn.be/stops/208335"], ["https://data.delijn.be/stops/407255", "https://data.delijn.be/stops/407315"], ["https://data.delijn.be/stops/400177", "https://data.delijn.be/stops/400416"], ["https://data.delijn.be/stops/105018", "https://data.delijn.be/stops/105113"], ["https://data.delijn.be/stops/103149", "https://data.delijn.be/stops/109480"], ["https://data.delijn.be/stops/201661", "https://data.delijn.be/stops/503642"], ["https://data.delijn.be/stops/402843", "https://data.delijn.be/stops/409234"], ["https://data.delijn.be/stops/301402", "https://data.delijn.be/stops/301403"], ["https://data.delijn.be/stops/106643", "https://data.delijn.be/stops/106644"], ["https://data.delijn.be/stops/300458", "https://data.delijn.be/stops/304975"], ["https://data.delijn.be/stops/505009", "https://data.delijn.be/stops/505574"], ["https://data.delijn.be/stops/204135", "https://data.delijn.be/stops/204147"], ["https://data.delijn.be/stops/405897", "https://data.delijn.be/stops/409889"], ["https://data.delijn.be/stops/402090", "https://data.delijn.be/stops/402105"], ["https://data.delijn.be/stops/406729", "https://data.delijn.be/stops/407095"], ["https://data.delijn.be/stops/407999", "https://data.delijn.be/stops/408020"], ["https://data.delijn.be/stops/305226", "https://data.delijn.be/stops/305244"], ["https://data.delijn.be/stops/502246", "https://data.delijn.be/stops/507022"], ["https://data.delijn.be/stops/502537", "https://data.delijn.be/stops/502542"], ["https://data.delijn.be/stops/105487", "https://data.delijn.be/stops/105494"], ["https://data.delijn.be/stops/305675", "https://data.delijn.be/stops/305693"], ["https://data.delijn.be/stops/201916", "https://data.delijn.be/stops/206426"], ["https://data.delijn.be/stops/401782", "https://data.delijn.be/stops/407875"], ["https://data.delijn.be/stops/103785", "https://data.delijn.be/stops/105895"], ["https://data.delijn.be/stops/405731", "https://data.delijn.be/stops/410141"], ["https://data.delijn.be/stops/200179", "https://data.delijn.be/stops/201733"], ["https://data.delijn.be/stops/504794", "https://data.delijn.be/stops/508524"], ["https://data.delijn.be/stops/401180", "https://data.delijn.be/stops/401192"], ["https://data.delijn.be/stops/405165", "https://data.delijn.be/stops/405217"], ["https://data.delijn.be/stops/201953", "https://data.delijn.be/stops/202461"], ["https://data.delijn.be/stops/200754", "https://data.delijn.be/stops/209251"], ["https://data.delijn.be/stops/102717", "https://data.delijn.be/stops/105029"], ["https://data.delijn.be/stops/105462", "https://data.delijn.be/stops/105663"], ["https://data.delijn.be/stops/208253", "https://data.delijn.be/stops/219027"], ["https://data.delijn.be/stops/407110", "https://data.delijn.be/stops/407111"], ["https://data.delijn.be/stops/203947", "https://data.delijn.be/stops/219022"], ["https://data.delijn.be/stops/103205", "https://data.delijn.be/stops/103333"], ["https://data.delijn.be/stops/403601", "https://data.delijn.be/stops/410038"], ["https://data.delijn.be/stops/406257", "https://data.delijn.be/stops/408416"], ["https://data.delijn.be/stops/503557", "https://data.delijn.be/stops/508552"], ["https://data.delijn.be/stops/502252", "https://data.delijn.be/stops/507252"], ["https://data.delijn.be/stops/303032", "https://data.delijn.be/stops/303595"], ["https://data.delijn.be/stops/101924", "https://data.delijn.be/stops/107016"], ["https://data.delijn.be/stops/206022", "https://data.delijn.be/stops/207075"], ["https://data.delijn.be/stops/200521", "https://data.delijn.be/stops/200523"], ["https://data.delijn.be/stops/308796", "https://data.delijn.be/stops/308850"], ["https://data.delijn.be/stops/206019", "https://data.delijn.be/stops/207078"], ["https://data.delijn.be/stops/200977", "https://data.delijn.be/stops/203904"], ["https://data.delijn.be/stops/207667", "https://data.delijn.be/stops/208061"], ["https://data.delijn.be/stops/202585", "https://data.delijn.be/stops/203585"], ["https://data.delijn.be/stops/400406", "https://data.delijn.be/stops/400412"], ["https://data.delijn.be/stops/202947", "https://data.delijn.be/stops/203962"], ["https://data.delijn.be/stops/203849", "https://data.delijn.be/stops/203851"], ["https://data.delijn.be/stops/202306", "https://data.delijn.be/stops/203306"], ["https://data.delijn.be/stops/305984", "https://data.delijn.be/stops/305985"], ["https://data.delijn.be/stops/401524", "https://data.delijn.be/stops/402567"], ["https://data.delijn.be/stops/400252", "https://data.delijn.be/stops/400266"], ["https://data.delijn.be/stops/304111", "https://data.delijn.be/stops/306406"], ["https://data.delijn.be/stops/210037", "https://data.delijn.be/stops/211038"], ["https://data.delijn.be/stops/202301", "https://data.delijn.be/stops/202303"], ["https://data.delijn.be/stops/201978", "https://data.delijn.be/stops/208540"], ["https://data.delijn.be/stops/507018", "https://data.delijn.be/stops/507796"], ["https://data.delijn.be/stops/305305", "https://data.delijn.be/stops/305310"], ["https://data.delijn.be/stops/101947", "https://data.delijn.be/stops/108751"], ["https://data.delijn.be/stops/503135", "https://data.delijn.be/stops/508135"], ["https://data.delijn.be/stops/303443", "https://data.delijn.be/stops/303456"], ["https://data.delijn.be/stops/202213", "https://data.delijn.be/stops/203212"], ["https://data.delijn.be/stops/105764", "https://data.delijn.be/stops/109528"], ["https://data.delijn.be/stops/502502", "https://data.delijn.be/stops/507734"], ["https://data.delijn.be/stops/208453", "https://data.delijn.be/stops/209520"], ["https://data.delijn.be/stops/106634", "https://data.delijn.be/stops/107184"], ["https://data.delijn.be/stops/206802", "https://data.delijn.be/stops/208032"], ["https://data.delijn.be/stops/304173", "https://data.delijn.be/stops/304684"], ["https://data.delijn.be/stops/201684", "https://data.delijn.be/stops/203318"], ["https://data.delijn.be/stops/205264", "https://data.delijn.be/stops/205823"], ["https://data.delijn.be/stops/400474", "https://data.delijn.be/stops/408700"], ["https://data.delijn.be/stops/404910", "https://data.delijn.be/stops/404984"], ["https://data.delijn.be/stops/108636", "https://data.delijn.be/stops/109657"], ["https://data.delijn.be/stops/303078", "https://data.delijn.be/stops/303105"], ["https://data.delijn.be/stops/409286", "https://data.delijn.be/stops/409310"], ["https://data.delijn.be/stops/305232", "https://data.delijn.be/stops/305260"], ["https://data.delijn.be/stops/504317", "https://data.delijn.be/stops/509317"], ["https://data.delijn.be/stops/503706", "https://data.delijn.be/stops/509364"], ["https://data.delijn.be/stops/303520", "https://data.delijn.be/stops/303521"], ["https://data.delijn.be/stops/409063", "https://data.delijn.be/stops/409149"], ["https://data.delijn.be/stops/301896", "https://data.delijn.be/stops/304282"], ["https://data.delijn.be/stops/502616", "https://data.delijn.be/stops/502617"], ["https://data.delijn.be/stops/503022", "https://data.delijn.be/stops/504344"], ["https://data.delijn.be/stops/201386", "https://data.delijn.be/stops/203651"], ["https://data.delijn.be/stops/102137", "https://data.delijn.be/stops/103476"], ["https://data.delijn.be/stops/303644", "https://data.delijn.be/stops/305540"], ["https://data.delijn.be/stops/210129", "https://data.delijn.be/stops/211129"], ["https://data.delijn.be/stops/200052", "https://data.delijn.be/stops/201053"], ["https://data.delijn.be/stops/208473", "https://data.delijn.be/stops/209473"], ["https://data.delijn.be/stops/208223", "https://data.delijn.be/stops/209222"], ["https://data.delijn.be/stops/502318", "https://data.delijn.be/stops/507318"], ["https://data.delijn.be/stops/503341", "https://data.delijn.be/stops/505634"], ["https://data.delijn.be/stops/500128", "https://data.delijn.be/stops/505014"], ["https://data.delijn.be/stops/208382", "https://data.delijn.be/stops/208753"], ["https://data.delijn.be/stops/402394", "https://data.delijn.be/stops/407495"], ["https://data.delijn.be/stops/504525", "https://data.delijn.be/stops/504529"], ["https://data.delijn.be/stops/502562", "https://data.delijn.be/stops/502563"], ["https://data.delijn.be/stops/502054", "https://data.delijn.be/stops/502441"], ["https://data.delijn.be/stops/201102", "https://data.delijn.be/stops/201103"], ["https://data.delijn.be/stops/406124", "https://data.delijn.be/stops/406125"], ["https://data.delijn.be/stops/209631", "https://data.delijn.be/stops/209632"], ["https://data.delijn.be/stops/105696", "https://data.delijn.be/stops/105697"], ["https://data.delijn.be/stops/301513", "https://data.delijn.be/stops/301515"], ["https://data.delijn.be/stops/504442", "https://data.delijn.be/stops/509398"], ["https://data.delijn.be/stops/107760", "https://data.delijn.be/stops/107906"], ["https://data.delijn.be/stops/300190", "https://data.delijn.be/stops/300229"], ["https://data.delijn.be/stops/204070", "https://data.delijn.be/stops/204222"], ["https://data.delijn.be/stops/405202", "https://data.delijn.be/stops/406725"], ["https://data.delijn.be/stops/407894", "https://data.delijn.be/stops/408044"], ["https://data.delijn.be/stops/302148", "https://data.delijn.be/stops/307113"], ["https://data.delijn.be/stops/102091", "https://data.delijn.be/stops/102092"], ["https://data.delijn.be/stops/202089", "https://data.delijn.be/stops/203720"], ["https://data.delijn.be/stops/109188", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/302713", "https://data.delijn.be/stops/302736"], ["https://data.delijn.be/stops/106276", "https://data.delijn.be/stops/106277"], ["https://data.delijn.be/stops/500196", "https://data.delijn.be/stops/505032"], ["https://data.delijn.be/stops/503293", "https://data.delijn.be/stops/508293"], ["https://data.delijn.be/stops/103612", "https://data.delijn.be/stops/103614"], ["https://data.delijn.be/stops/504666", "https://data.delijn.be/stops/505794"], ["https://data.delijn.be/stops/200805", "https://data.delijn.be/stops/200883"], ["https://data.delijn.be/stops/307955", "https://data.delijn.be/stops/308827"], ["https://data.delijn.be/stops/205127", "https://data.delijn.be/stops/205128"], ["https://data.delijn.be/stops/504819", "https://data.delijn.be/stops/508189"], ["https://data.delijn.be/stops/102785", "https://data.delijn.be/stops/102800"], ["https://data.delijn.be/stops/303206", "https://data.delijn.be/stops/304314"], ["https://data.delijn.be/stops/503663", "https://data.delijn.be/stops/508663"], ["https://data.delijn.be/stops/504365", "https://data.delijn.be/stops/509365"], ["https://data.delijn.be/stops/503645", "https://data.delijn.be/stops/508718"], ["https://data.delijn.be/stops/408485", "https://data.delijn.be/stops/408486"], ["https://data.delijn.be/stops/302716", "https://data.delijn.be/stops/302785"], ["https://data.delijn.be/stops/208390", "https://data.delijn.be/stops/209390"], ["https://data.delijn.be/stops/105554", "https://data.delijn.be/stops/105556"], ["https://data.delijn.be/stops/504503", "https://data.delijn.be/stops/509503"], ["https://data.delijn.be/stops/408674", "https://data.delijn.be/stops/408760"], ["https://data.delijn.be/stops/105267", "https://data.delijn.be/stops/109925"], ["https://data.delijn.be/stops/404161", "https://data.delijn.be/stops/404162"], ["https://data.delijn.be/stops/101090", "https://data.delijn.be/stops/103845"], ["https://data.delijn.be/stops/300679", "https://data.delijn.be/stops/300680"], ["https://data.delijn.be/stops/503676", "https://data.delijn.be/stops/505905"], ["https://data.delijn.be/stops/503070", "https://data.delijn.be/stops/508074"], ["https://data.delijn.be/stops/200738", "https://data.delijn.be/stops/203581"], ["https://data.delijn.be/stops/508764", "https://data.delijn.be/stops/509364"], ["https://data.delijn.be/stops/409094", "https://data.delijn.be/stops/410049"], ["https://data.delijn.be/stops/405981", "https://data.delijn.be/stops/405982"], ["https://data.delijn.be/stops/505261", "https://data.delijn.be/stops/508222"], ["https://data.delijn.be/stops/301824", "https://data.delijn.be/stops/302550"], ["https://data.delijn.be/stops/400874", "https://data.delijn.be/stops/400875"], ["https://data.delijn.be/stops/504070", "https://data.delijn.be/stops/504694"], ["https://data.delijn.be/stops/504353", "https://data.delijn.be/stops/509200"], ["https://data.delijn.be/stops/202260", "https://data.delijn.be/stops/203105"], ["https://data.delijn.be/stops/108116", "https://data.delijn.be/stops/108151"], ["https://data.delijn.be/stops/209081", "https://data.delijn.be/stops/218015"], ["https://data.delijn.be/stops/300927", "https://data.delijn.be/stops/300988"], ["https://data.delijn.be/stops/201511", "https://data.delijn.be/stops/211510"], ["https://data.delijn.be/stops/201772", "https://data.delijn.be/stops/209270"], ["https://data.delijn.be/stops/403765", "https://data.delijn.be/stops/403811"], ["https://data.delijn.be/stops/106896", "https://data.delijn.be/stops/107217"], ["https://data.delijn.be/stops/101027", "https://data.delijn.be/stops/101989"], ["https://data.delijn.be/stops/207479", "https://data.delijn.be/stops/207499"], ["https://data.delijn.be/stops/108942", "https://data.delijn.be/stops/108943"], ["https://data.delijn.be/stops/402070", "https://data.delijn.be/stops/402079"], ["https://data.delijn.be/stops/303877", "https://data.delijn.be/stops/307800"], ["https://data.delijn.be/stops/304219", "https://data.delijn.be/stops/304289"], ["https://data.delijn.be/stops/501551", "https://data.delijn.be/stops/509796"], ["https://data.delijn.be/stops/300263", "https://data.delijn.be/stops/300265"], ["https://data.delijn.be/stops/407095", "https://data.delijn.be/stops/407321"], ["https://data.delijn.be/stops/102392", "https://data.delijn.be/stops/107117"], ["https://data.delijn.be/stops/303373", "https://data.delijn.be/stops/303672"], ["https://data.delijn.be/stops/204476", "https://data.delijn.be/stops/205119"], ["https://data.delijn.be/stops/507266", "https://data.delijn.be/stops/507921"], ["https://data.delijn.be/stops/505714", "https://data.delijn.be/stops/508486"], ["https://data.delijn.be/stops/106111", "https://data.delijn.be/stops/109877"], ["https://data.delijn.be/stops/207670", "https://data.delijn.be/stops/209502"], ["https://data.delijn.be/stops/206064", "https://data.delijn.be/stops/206501"], ["https://data.delijn.be/stops/301134", "https://data.delijn.be/stops/308957"], ["https://data.delijn.be/stops/506070", "https://data.delijn.be/stops/506073"], ["https://data.delijn.be/stops/107163", "https://data.delijn.be/stops/107563"], ["https://data.delijn.be/stops/402105", "https://data.delijn.be/stops/402422"], ["https://data.delijn.be/stops/104646", "https://data.delijn.be/stops/108050"], ["https://data.delijn.be/stops/202147", "https://data.delijn.be/stops/202148"], ["https://data.delijn.be/stops/107426", "https://data.delijn.be/stops/107428"], ["https://data.delijn.be/stops/207514", "https://data.delijn.be/stops/207660"], ["https://data.delijn.be/stops/105967", "https://data.delijn.be/stops/105968"], ["https://data.delijn.be/stops/301250", "https://data.delijn.be/stops/307409"], ["https://data.delijn.be/stops/108421", "https://data.delijn.be/stops/109568"], ["https://data.delijn.be/stops/200727", "https://data.delijn.be/stops/204942"], ["https://data.delijn.be/stops/408854", "https://data.delijn.be/stops/408856"], ["https://data.delijn.be/stops/103055", "https://data.delijn.be/stops/104801"], ["https://data.delijn.be/stops/108081", "https://data.delijn.be/stops/108083"], ["https://data.delijn.be/stops/501325", "https://data.delijn.be/stops/501565"], ["https://data.delijn.be/stops/405410", "https://data.delijn.be/stops/406395"], ["https://data.delijn.be/stops/101430", "https://data.delijn.be/stops/103070"], ["https://data.delijn.be/stops/410143", "https://data.delijn.be/stops/410145"], ["https://data.delijn.be/stops/404914", "https://data.delijn.be/stops/404922"], ["https://data.delijn.be/stops/208279", "https://data.delijn.be/stops/209278"], ["https://data.delijn.be/stops/203262", "https://data.delijn.be/stops/203263"], ["https://data.delijn.be/stops/307648", "https://data.delijn.be/stops/307691"], ["https://data.delijn.be/stops/203868", "https://data.delijn.be/stops/208835"], ["https://data.delijn.be/stops/308420", "https://data.delijn.be/stops/308708"], ["https://data.delijn.be/stops/407017", "https://data.delijn.be/stops/407050"], ["https://data.delijn.be/stops/503419", "https://data.delijn.be/stops/503442"], ["https://data.delijn.be/stops/503067", "https://data.delijn.be/stops/508067"], ["https://data.delijn.be/stops/104548", "https://data.delijn.be/stops/104549"], ["https://data.delijn.be/stops/201695", "https://data.delijn.be/stops/202688"], ["https://data.delijn.be/stops/508149", "https://data.delijn.be/stops/508151"], ["https://data.delijn.be/stops/203823", "https://data.delijn.be/stops/203824"], ["https://data.delijn.be/stops/503483", "https://data.delijn.be/stops/504391"], ["https://data.delijn.be/stops/307940", "https://data.delijn.be/stops/308774"], ["https://data.delijn.be/stops/403997", "https://data.delijn.be/stops/404014"], ["https://data.delijn.be/stops/406032", "https://data.delijn.be/stops/406033"], ["https://data.delijn.be/stops/200822", "https://data.delijn.be/stops/208653"], ["https://data.delijn.be/stops/204241", "https://data.delijn.be/stops/205344"], ["https://data.delijn.be/stops/405466", "https://data.delijn.be/stops/408568"], ["https://data.delijn.be/stops/302071", "https://data.delijn.be/stops/308812"], ["https://data.delijn.be/stops/403210", "https://data.delijn.be/stops/410213"], ["https://data.delijn.be/stops/502105", "https://data.delijn.be/stops/502142"], ["https://data.delijn.be/stops/210129", "https://data.delijn.be/stops/218935"], ["https://data.delijn.be/stops/502258", "https://data.delijn.be/stops/502718"], ["https://data.delijn.be/stops/404694", "https://data.delijn.be/stops/405509"], ["https://data.delijn.be/stops/402818", "https://data.delijn.be/stops/404620"], ["https://data.delijn.be/stops/201865", "https://data.delijn.be/stops/201874"], ["https://data.delijn.be/stops/305450", "https://data.delijn.be/stops/307551"], ["https://data.delijn.be/stops/409680", "https://data.delijn.be/stops/409683"], ["https://data.delijn.be/stops/304027", "https://data.delijn.be/stops/304028"], ["https://data.delijn.be/stops/203456", "https://data.delijn.be/stops/203459"], ["https://data.delijn.be/stops/404286", "https://data.delijn.be/stops/407293"], ["https://data.delijn.be/stops/507260", "https://data.delijn.be/stops/507912"], ["https://data.delijn.be/stops/404774", "https://data.delijn.be/stops/404781"], ["https://data.delijn.be/stops/206728", "https://data.delijn.be/stops/207128"], ["https://data.delijn.be/stops/208817", "https://data.delijn.be/stops/209072"], ["https://data.delijn.be/stops/408324", "https://data.delijn.be/stops/408325"], ["https://data.delijn.be/stops/509055", "https://data.delijn.be/stops/509056"], ["https://data.delijn.be/stops/504694", "https://data.delijn.be/stops/509483"], ["https://data.delijn.be/stops/407380", "https://data.delijn.be/stops/407598"], ["https://data.delijn.be/stops/105791", "https://data.delijn.be/stops/105793"], ["https://data.delijn.be/stops/107390", "https://data.delijn.be/stops/305821"], ["https://data.delijn.be/stops/208178", "https://data.delijn.be/stops/209178"], ["https://data.delijn.be/stops/300273", "https://data.delijn.be/stops/300281"], ["https://data.delijn.be/stops/304796", "https://data.delijn.be/stops/306685"], ["https://data.delijn.be/stops/101982", "https://data.delijn.be/stops/300026"], ["https://data.delijn.be/stops/502587", "https://data.delijn.be/stops/505700"], ["https://data.delijn.be/stops/503281", "https://data.delijn.be/stops/508281"], ["https://data.delijn.be/stops/404993", "https://data.delijn.be/stops/406926"], ["https://data.delijn.be/stops/305483", "https://data.delijn.be/stops/308553"], ["https://data.delijn.be/stops/405196", "https://data.delijn.be/stops/405199"], ["https://data.delijn.be/stops/409051", "https://data.delijn.be/stops/409077"], ["https://data.delijn.be/stops/406908", "https://data.delijn.be/stops/409470"], ["https://data.delijn.be/stops/301090", "https://data.delijn.be/stops/304254"], ["https://data.delijn.be/stops/208498", "https://data.delijn.be/stops/209469"], ["https://data.delijn.be/stops/200818", "https://data.delijn.be/stops/200853"], ["https://data.delijn.be/stops/202609", "https://data.delijn.be/stops/202613"], ["https://data.delijn.be/stops/105318", "https://data.delijn.be/stops/105323"], ["https://data.delijn.be/stops/205137", "https://data.delijn.be/stops/207895"], ["https://data.delijn.be/stops/308137", "https://data.delijn.be/stops/308140"], ["https://data.delijn.be/stops/407057", "https://data.delijn.be/stops/308745"], ["https://data.delijn.be/stops/205321", "https://data.delijn.be/stops/205698"], ["https://data.delijn.be/stops/205098", "https://data.delijn.be/stops/205142"], ["https://data.delijn.be/stops/102859", "https://data.delijn.be/stops/205629"], ["https://data.delijn.be/stops/501010", "https://data.delijn.be/stops/502821"], ["https://data.delijn.be/stops/102998", "https://data.delijn.be/stops/103002"], ["https://data.delijn.be/stops/504660", "https://data.delijn.be/stops/507954"], ["https://data.delijn.be/stops/403046", "https://data.delijn.be/stops/403502"], ["https://data.delijn.be/stops/500954", "https://data.delijn.be/stops/509154"], ["https://data.delijn.be/stops/206668", "https://data.delijn.be/stops/208482"], ["https://data.delijn.be/stops/202831", "https://data.delijn.be/stops/202942"], ["https://data.delijn.be/stops/409596", "https://data.delijn.be/stops/409651"], ["https://data.delijn.be/stops/405019", "https://data.delijn.be/stops/408923"], ["https://data.delijn.be/stops/400596", "https://data.delijn.be/stops/400619"], ["https://data.delijn.be/stops/505298", "https://data.delijn.be/stops/505817"], ["https://data.delijn.be/stops/403719", "https://data.delijn.be/stops/403723"], ["https://data.delijn.be/stops/502315", "https://data.delijn.be/stops/505680"], ["https://data.delijn.be/stops/407223", "https://data.delijn.be/stops/407224"], ["https://data.delijn.be/stops/403894", "https://data.delijn.be/stops/406887"], ["https://data.delijn.be/stops/400267", "https://data.delijn.be/stops/405537"], ["https://data.delijn.be/stops/109118", "https://data.delijn.be/stops/109121"], ["https://data.delijn.be/stops/502915", "https://data.delijn.be/stops/508325"], ["https://data.delijn.be/stops/405700", "https://data.delijn.be/stops/405740"], ["https://data.delijn.be/stops/200082", "https://data.delijn.be/stops/201082"], ["https://data.delijn.be/stops/303259", "https://data.delijn.be/stops/306339"], ["https://data.delijn.be/stops/206890", "https://data.delijn.be/stops/206914"], ["https://data.delijn.be/stops/103492", "https://data.delijn.be/stops/104551"], ["https://data.delijn.be/stops/300176", "https://data.delijn.be/stops/300192"], ["https://data.delijn.be/stops/106472", "https://data.delijn.be/stops/106473"], ["https://data.delijn.be/stops/408318", "https://data.delijn.be/stops/408349"], ["https://data.delijn.be/stops/206521", "https://data.delijn.be/stops/207063"], ["https://data.delijn.be/stops/108287", "https://data.delijn.be/stops/108289"], ["https://data.delijn.be/stops/101362", "https://data.delijn.be/stops/102188"], ["https://data.delijn.be/stops/504980", "https://data.delijn.be/stops/508905"], ["https://data.delijn.be/stops/408562", "https://data.delijn.be/stops/408795"], ["https://data.delijn.be/stops/101302", "https://data.delijn.be/stops/107457"], ["https://data.delijn.be/stops/402306", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/204134", "https://data.delijn.be/stops/205147"], ["https://data.delijn.be/stops/201148", "https://data.delijn.be/stops/201149"], ["https://data.delijn.be/stops/401394", "https://data.delijn.be/stops/408418"], ["https://data.delijn.be/stops/200836", "https://data.delijn.be/stops/203300"], ["https://data.delijn.be/stops/505332", "https://data.delijn.be/stops/507502"], ["https://data.delijn.be/stops/502194", "https://data.delijn.be/stops/508312"], ["https://data.delijn.be/stops/401652", "https://data.delijn.be/stops/305950"], ["https://data.delijn.be/stops/400353", "https://data.delijn.be/stops/400360"], ["https://data.delijn.be/stops/202819", "https://data.delijn.be/stops/211070"], ["https://data.delijn.be/stops/303059", "https://data.delijn.be/stops/303070"], ["https://data.delijn.be/stops/208633", "https://data.delijn.be/stops/209508"], ["https://data.delijn.be/stops/502010", "https://data.delijn.be/stops/505345"], ["https://data.delijn.be/stops/300084", "https://data.delijn.be/stops/300085"], ["https://data.delijn.be/stops/506335", "https://data.delijn.be/stops/506349"], ["https://data.delijn.be/stops/209740", "https://data.delijn.be/stops/209743"], ["https://data.delijn.be/stops/202809", "https://data.delijn.be/stops/208649"], ["https://data.delijn.be/stops/302096", "https://data.delijn.be/stops/302097"], ["https://data.delijn.be/stops/503502", "https://data.delijn.be/stops/508495"], ["https://data.delijn.be/stops/101640", "https://data.delijn.be/stops/103048"], ["https://data.delijn.be/stops/201776", "https://data.delijn.be/stops/208289"], ["https://data.delijn.be/stops/406224", "https://data.delijn.be/stops/406228"], ["https://data.delijn.be/stops/300160", "https://data.delijn.be/stops/308790"], ["https://data.delijn.be/stops/104054", "https://data.delijn.be/stops/108901"], ["https://data.delijn.be/stops/501204", "https://data.delijn.be/stops/506205"], ["https://data.delijn.be/stops/300694", "https://data.delijn.be/stops/306935"], ["https://data.delijn.be/stops/504571", "https://data.delijn.be/stops/509577"], ["https://data.delijn.be/stops/204580", "https://data.delijn.be/stops/205094"], ["https://data.delijn.be/stops/200569", "https://data.delijn.be/stops/201960"], ["https://data.delijn.be/stops/407054", "https://data.delijn.be/stops/410014"], ["https://data.delijn.be/stops/408178", "https://data.delijn.be/stops/408179"], ["https://data.delijn.be/stops/106881", "https://data.delijn.be/stops/106882"], ["https://data.delijn.be/stops/203098", "https://data.delijn.be/stops/203099"], ["https://data.delijn.be/stops/202474", "https://data.delijn.be/stops/203473"], ["https://data.delijn.be/stops/206533", "https://data.delijn.be/stops/207532"], ["https://data.delijn.be/stops/200562", "https://data.delijn.be/stops/201562"], ["https://data.delijn.be/stops/504291", "https://data.delijn.be/stops/504602"], ["https://data.delijn.be/stops/108000", "https://data.delijn.be/stops/108115"], ["https://data.delijn.be/stops/407256", "https://data.delijn.be/stops/407334"], ["https://data.delijn.be/stops/304947", "https://data.delijn.be/stops/304991"], ["https://data.delijn.be/stops/504554", "https://data.delijn.be/stops/505369"], ["https://data.delijn.be/stops/202683", "https://data.delijn.be/stops/202711"], ["https://data.delijn.be/stops/503928", "https://data.delijn.be/stops/508928"], ["https://data.delijn.be/stops/206342", "https://data.delijn.be/stops/206688"], ["https://data.delijn.be/stops/302906", "https://data.delijn.be/stops/304312"], ["https://data.delijn.be/stops/101220", "https://data.delijn.be/stops/102593"], ["https://data.delijn.be/stops/101148", "https://data.delijn.be/stops/106762"], ["https://data.delijn.be/stops/504318", "https://data.delijn.be/stops/509735"], ["https://data.delijn.be/stops/107059", "https://data.delijn.be/stops/108224"], ["https://data.delijn.be/stops/403062", "https://data.delijn.be/stops/403082"], ["https://data.delijn.be/stops/200640", "https://data.delijn.be/stops/201983"], ["https://data.delijn.be/stops/301121", "https://data.delijn.be/stops/301122"], ["https://data.delijn.be/stops/204257", "https://data.delijn.be/stops/204823"], ["https://data.delijn.be/stops/102922", "https://data.delijn.be/stops/104870"], ["https://data.delijn.be/stops/506248", "https://data.delijn.be/stops/506771"], ["https://data.delijn.be/stops/408902", "https://data.delijn.be/stops/408903"], ["https://data.delijn.be/stops/302496", "https://data.delijn.be/stops/302716"], ["https://data.delijn.be/stops/102021", "https://data.delijn.be/stops/102022"], ["https://data.delijn.be/stops/308125", "https://data.delijn.be/stops/308723"], ["https://data.delijn.be/stops/300258", "https://data.delijn.be/stops/300281"], ["https://data.delijn.be/stops/405324", "https://data.delijn.be/stops/405327"], ["https://data.delijn.be/stops/106333", "https://data.delijn.be/stops/106334"], ["https://data.delijn.be/stops/506138", "https://data.delijn.be/stops/506139"], ["https://data.delijn.be/stops/201026", "https://data.delijn.be/stops/205926"], ["https://data.delijn.be/stops/502095", "https://data.delijn.be/stops/502148"], ["https://data.delijn.be/stops/300135", "https://data.delijn.be/stops/300136"], ["https://data.delijn.be/stops/407323", "https://data.delijn.be/stops/410181"], ["https://data.delijn.be/stops/305657", "https://data.delijn.be/stops/307790"], ["https://data.delijn.be/stops/406881", "https://data.delijn.be/stops/406882"], ["https://data.delijn.be/stops/206128", "https://data.delijn.be/stops/206652"], ["https://data.delijn.be/stops/301520", "https://data.delijn.be/stops/308740"], ["https://data.delijn.be/stops/105705", "https://data.delijn.be/stops/105980"], ["https://data.delijn.be/stops/201659", "https://data.delijn.be/stops/210048"], ["https://data.delijn.be/stops/200813", "https://data.delijn.be/stops/202059"], ["https://data.delijn.be/stops/201276", "https://data.delijn.be/stops/201342"], ["https://data.delijn.be/stops/503116", "https://data.delijn.be/stops/505789"], ["https://data.delijn.be/stops/204295", "https://data.delijn.be/stops/205496"], ["https://data.delijn.be/stops/501059", "https://data.delijn.be/stops/506053"], ["https://data.delijn.be/stops/101837", "https://data.delijn.be/stops/108199"], ["https://data.delijn.be/stops/405018", "https://data.delijn.be/stops/405019"], ["https://data.delijn.be/stops/304547", "https://data.delijn.be/stops/304551"], ["https://data.delijn.be/stops/207481", "https://data.delijn.be/stops/207822"], ["https://data.delijn.be/stops/306588", "https://data.delijn.be/stops/308441"], ["https://data.delijn.be/stops/305460", "https://data.delijn.be/stops/306558"], ["https://data.delijn.be/stops/208619", "https://data.delijn.be/stops/209619"], ["https://data.delijn.be/stops/406161", "https://data.delijn.be/stops/406228"], ["https://data.delijn.be/stops/504103", "https://data.delijn.be/stops/504471"], ["https://data.delijn.be/stops/208165", "https://data.delijn.be/stops/209171"], ["https://data.delijn.be/stops/102880", "https://data.delijn.be/stops/205611"], ["https://data.delijn.be/stops/201811", "https://data.delijn.be/stops/201813"], ["https://data.delijn.be/stops/406914", "https://data.delijn.be/stops/406933"], ["https://data.delijn.be/stops/406233", "https://data.delijn.be/stops/406238"], ["https://data.delijn.be/stops/302421", "https://data.delijn.be/stops/302423"], ["https://data.delijn.be/stops/308470", "https://data.delijn.be/stops/308472"], ["https://data.delijn.be/stops/300163", "https://data.delijn.be/stops/300176"], ["https://data.delijn.be/stops/401007", "https://data.delijn.be/stops/401009"], ["https://data.delijn.be/stops/402417", "https://data.delijn.be/stops/402430"], ["https://data.delijn.be/stops/206354", "https://data.delijn.be/stops/206885"], ["https://data.delijn.be/stops/202047", "https://data.delijn.be/stops/203138"], ["https://data.delijn.be/stops/103259", "https://data.delijn.be/stops/105421"], ["https://data.delijn.be/stops/403370", "https://data.delijn.be/stops/403371"], ["https://data.delijn.be/stops/503535", "https://data.delijn.be/stops/508755"], ["https://data.delijn.be/stops/501021", "https://data.delijn.be/stops/506620"], ["https://data.delijn.be/stops/502453", "https://data.delijn.be/stops/507444"], ["https://data.delijn.be/stops/404067", "https://data.delijn.be/stops/408894"], ["https://data.delijn.be/stops/501240", "https://data.delijn.be/stops/506236"], ["https://data.delijn.be/stops/107600", "https://data.delijn.be/stops/109030"], ["https://data.delijn.be/stops/200477", "https://data.delijn.be/stops/203931"], ["https://data.delijn.be/stops/304316", "https://data.delijn.be/stops/306284"], ["https://data.delijn.be/stops/104551", "https://data.delijn.be/stops/108940"], ["https://data.delijn.be/stops/300318", "https://data.delijn.be/stops/300728"], ["https://data.delijn.be/stops/504637", "https://data.delijn.be/stops/509515"], ["https://data.delijn.be/stops/504506", "https://data.delijn.be/stops/509507"], ["https://data.delijn.be/stops/302688", "https://data.delijn.be/stops/302693"], ["https://data.delijn.be/stops/206397", "https://data.delijn.be/stops/207280"], ["https://data.delijn.be/stops/408579", "https://data.delijn.be/stops/408586"], ["https://data.delijn.be/stops/108313", "https://data.delijn.be/stops/108754"], ["https://data.delijn.be/stops/405696", "https://data.delijn.be/stops/405931"], ["https://data.delijn.be/stops/101535", "https://data.delijn.be/stops/102252"], ["https://data.delijn.be/stops/207376", "https://data.delijn.be/stops/207724"], ["https://data.delijn.be/stops/504680", "https://data.delijn.be/stops/509200"], ["https://data.delijn.be/stops/206399", "https://data.delijn.be/stops/207400"], ["https://data.delijn.be/stops/205241", "https://data.delijn.be/stops/205478"], ["https://data.delijn.be/stops/502014", "https://data.delijn.be/stops/507168"], ["https://data.delijn.be/stops/504393", "https://data.delijn.be/stops/509661"], ["https://data.delijn.be/stops/201472", "https://data.delijn.be/stops/211120"], ["https://data.delijn.be/stops/105324", "https://data.delijn.be/stops/105336"], ["https://data.delijn.be/stops/402000", "https://data.delijn.be/stops/404977"], ["https://data.delijn.be/stops/308056", "https://data.delijn.be/stops/308057"], ["https://data.delijn.be/stops/206945", "https://data.delijn.be/stops/207944"], ["https://data.delijn.be/stops/206612", "https://data.delijn.be/stops/206785"], ["https://data.delijn.be/stops/503881", "https://data.delijn.be/stops/504998"], ["https://data.delijn.be/stops/300937", "https://data.delijn.be/stops/301005"], ["https://data.delijn.be/stops/204505", "https://data.delijn.be/stops/204506"], ["https://data.delijn.be/stops/502048", "https://data.delijn.be/stops/507046"], ["https://data.delijn.be/stops/409777", "https://data.delijn.be/stops/409779"], ["https://data.delijn.be/stops/500561", "https://data.delijn.be/stops/500563"], ["https://data.delijn.be/stops/407815", "https://data.delijn.be/stops/407961"], ["https://data.delijn.be/stops/206709", "https://data.delijn.be/stops/301428"], ["https://data.delijn.be/stops/103766", "https://data.delijn.be/stops/108737"], ["https://data.delijn.be/stops/301020", "https://data.delijn.be/stops/304255"], ["https://data.delijn.be/stops/101217", "https://data.delijn.be/stops/101658"], ["https://data.delijn.be/stops/101030", "https://data.delijn.be/stops/101215"], ["https://data.delijn.be/stops/402963", "https://data.delijn.be/stops/407042"], ["https://data.delijn.be/stops/205069", "https://data.delijn.be/stops/205236"], ["https://data.delijn.be/stops/106018", "https://data.delijn.be/stops/106188"], ["https://data.delijn.be/stops/504201", "https://data.delijn.be/stops/505387"], ["https://data.delijn.be/stops/107923", "https://data.delijn.be/stops/205799"], ["https://data.delijn.be/stops/202108", "https://data.delijn.be/stops/203108"], ["https://data.delijn.be/stops/200489", "https://data.delijn.be/stops/203454"], ["https://data.delijn.be/stops/301616", "https://data.delijn.be/stops/304179"], ["https://data.delijn.be/stops/200952", "https://data.delijn.be/stops/203252"], ["https://data.delijn.be/stops/200309", "https://data.delijn.be/stops/201159"], ["https://data.delijn.be/stops/501345", "https://data.delijn.be/stops/506546"], ["https://data.delijn.be/stops/501017", "https://data.delijn.be/stops/506022"], ["https://data.delijn.be/stops/108124", "https://data.delijn.be/stops/108126"], ["https://data.delijn.be/stops/505729", "https://data.delijn.be/stops/507295"], ["https://data.delijn.be/stops/301038", "https://data.delijn.be/stops/301070"], ["https://data.delijn.be/stops/108157", "https://data.delijn.be/stops/108158"], ["https://data.delijn.be/stops/304419", "https://data.delijn.be/stops/307395"], ["https://data.delijn.be/stops/408851", "https://data.delijn.be/stops/408919"], ["https://data.delijn.be/stops/501485", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/207894", "https://data.delijn.be/stops/207895"], ["https://data.delijn.be/stops/405660", "https://data.delijn.be/stops/302963"], ["https://data.delijn.be/stops/404437", "https://data.delijn.be/stops/404546"], ["https://data.delijn.be/stops/306346", "https://data.delijn.be/stops/308697"], ["https://data.delijn.be/stops/401419", "https://data.delijn.be/stops/305494"], ["https://data.delijn.be/stops/504349", "https://data.delijn.be/stops/509351"], ["https://data.delijn.be/stops/103338", "https://data.delijn.be/stops/104877"], ["https://data.delijn.be/stops/503244", "https://data.delijn.be/stops/503265"], ["https://data.delijn.be/stops/400791", "https://data.delijn.be/stops/400835"], ["https://data.delijn.be/stops/501449", "https://data.delijn.be/stops/506501"], ["https://data.delijn.be/stops/504043", "https://data.delijn.be/stops/504047"], ["https://data.delijn.be/stops/304991", "https://data.delijn.be/stops/305018"], ["https://data.delijn.be/stops/501409", "https://data.delijn.be/stops/501485"], ["https://data.delijn.be/stops/503468", "https://data.delijn.be/stops/504812"], ["https://data.delijn.be/stops/507372", "https://data.delijn.be/stops/509892"], ["https://data.delijn.be/stops/409354", "https://data.delijn.be/stops/409387"], ["https://data.delijn.be/stops/101726", "https://data.delijn.be/stops/106806"], ["https://data.delijn.be/stops/102679", "https://data.delijn.be/stops/305821"], ["https://data.delijn.be/stops/401251", "https://data.delijn.be/stops/401258"], ["https://data.delijn.be/stops/108941", "https://data.delijn.be/stops/108946"], ["https://data.delijn.be/stops/305182", "https://data.delijn.be/stops/305184"], ["https://data.delijn.be/stops/400205", "https://data.delijn.be/stops/400216"], ["https://data.delijn.be/stops/204412", "https://data.delijn.be/stops/204428"], ["https://data.delijn.be/stops/401446", "https://data.delijn.be/stops/401596"], ["https://data.delijn.be/stops/104676", "https://data.delijn.be/stops/107371"], ["https://data.delijn.be/stops/302293", "https://data.delijn.be/stops/302294"], ["https://data.delijn.be/stops/101139", "https://data.delijn.be/stops/102280"], ["https://data.delijn.be/stops/200668", "https://data.delijn.be/stops/508847"], ["https://data.delijn.be/stops/101007", "https://data.delijn.be/stops/101072"], ["https://data.delijn.be/stops/205447", "https://data.delijn.be/stops/205649"], ["https://data.delijn.be/stops/403212", "https://data.delijn.be/stops/403213"], ["https://data.delijn.be/stops/204991", "https://data.delijn.be/stops/205991"], ["https://data.delijn.be/stops/504125", "https://data.delijn.be/stops/504130"], ["https://data.delijn.be/stops/202101", "https://data.delijn.be/stops/203100"], ["https://data.delijn.be/stops/102757", "https://data.delijn.be/stops/105072"], ["https://data.delijn.be/stops/303492", "https://data.delijn.be/stops/303502"], ["https://data.delijn.be/stops/302505", "https://data.delijn.be/stops/302509"], ["https://data.delijn.be/stops/403225", "https://data.delijn.be/stops/403389"], ["https://data.delijn.be/stops/102109", "https://data.delijn.be/stops/106233"], ["https://data.delijn.be/stops/202528", "https://data.delijn.be/stops/210009"], ["https://data.delijn.be/stops/101684", "https://data.delijn.be/stops/101687"], ["https://data.delijn.be/stops/303205", "https://data.delijn.be/stops/303208"], ["https://data.delijn.be/stops/400545", "https://data.delijn.be/stops/410271"], ["https://data.delijn.be/stops/302523", "https://data.delijn.be/stops/302528"], ["https://data.delijn.be/stops/502729", "https://data.delijn.be/stops/507150"], ["https://data.delijn.be/stops/107145", "https://data.delijn.be/stops/109090"], ["https://data.delijn.be/stops/500029", "https://data.delijn.be/stops/503883"], ["https://data.delijn.be/stops/102629", "https://data.delijn.be/stops/102631"], ["https://data.delijn.be/stops/204362", "https://data.delijn.be/stops/204696"], ["https://data.delijn.be/stops/400803", "https://data.delijn.be/stops/400847"], ["https://data.delijn.be/stops/107718", "https://data.delijn.be/stops/107719"], ["https://data.delijn.be/stops/207236", "https://data.delijn.be/stops/207935"], ["https://data.delijn.be/stops/200231", "https://data.delijn.be/stops/202133"], ["https://data.delijn.be/stops/304020", "https://data.delijn.be/stops/304066"], ["https://data.delijn.be/stops/104024", "https://data.delijn.be/stops/106602"], ["https://data.delijn.be/stops/405306", "https://data.delijn.be/stops/406996"], ["https://data.delijn.be/stops/503873", "https://data.delijn.be/stops/508873"], ["https://data.delijn.be/stops/105052", "https://data.delijn.be/stops/304043"], ["https://data.delijn.be/stops/403370", "https://data.delijn.be/stops/403509"], ["https://data.delijn.be/stops/102513", "https://data.delijn.be/stops/406500"], ["https://data.delijn.be/stops/203144", "https://data.delijn.be/stops/203145"], ["https://data.delijn.be/stops/101520", "https://data.delijn.be/stops/102113"], ["https://data.delijn.be/stops/101182", "https://data.delijn.be/stops/107879"], ["https://data.delijn.be/stops/105791", "https://data.delijn.be/stops/105942"], ["https://data.delijn.be/stops/504029", "https://data.delijn.be/stops/509029"], ["https://data.delijn.be/stops/202022", "https://data.delijn.be/stops/210853"], ["https://data.delijn.be/stops/401380", "https://data.delijn.be/stops/401381"], ["https://data.delijn.be/stops/109171", "https://data.delijn.be/stops/109233"], ["https://data.delijn.be/stops/101468", "https://data.delijn.be/stops/101963"], ["https://data.delijn.be/stops/304361", "https://data.delijn.be/stops/304370"], ["https://data.delijn.be/stops/402518", "https://data.delijn.be/stops/402586"], ["https://data.delijn.be/stops/303389", "https://data.delijn.be/stops/303390"], ["https://data.delijn.be/stops/106815", "https://data.delijn.be/stops/106817"], ["https://data.delijn.be/stops/501129", "https://data.delijn.be/stops/501366"], ["https://data.delijn.be/stops/405827", "https://data.delijn.be/stops/409422"], ["https://data.delijn.be/stops/507818", "https://data.delijn.be/stops/509772"], ["https://data.delijn.be/stops/501176", "https://data.delijn.be/stops/506170"], ["https://data.delijn.be/stops/502688", "https://data.delijn.be/stops/507921"], ["https://data.delijn.be/stops/504566", "https://data.delijn.be/stops/505289"], ["https://data.delijn.be/stops/101533", "https://data.delijn.be/stops/109118"], ["https://data.delijn.be/stops/402101", "https://data.delijn.be/stops/402228"], ["https://data.delijn.be/stops/504891", "https://data.delijn.be/stops/504892"], ["https://data.delijn.be/stops/408068", "https://data.delijn.be/stops/408069"], ["https://data.delijn.be/stops/501389", "https://data.delijn.be/stops/501392"], ["https://data.delijn.be/stops/304966", "https://data.delijn.be/stops/304967"], ["https://data.delijn.be/stops/308744", "https://data.delijn.be/stops/308746"], ["https://data.delijn.be/stops/104081", "https://data.delijn.be/stops/104082"], ["https://data.delijn.be/stops/105783", "https://data.delijn.be/stops/105786"], ["https://data.delijn.be/stops/407920", "https://data.delijn.be/stops/305716"], ["https://data.delijn.be/stops/301249", "https://data.delijn.be/stops/307388"], ["https://data.delijn.be/stops/400257", "https://data.delijn.be/stops/404269"], ["https://data.delijn.be/stops/105120", "https://data.delijn.be/stops/105125"], ["https://data.delijn.be/stops/200682", "https://data.delijn.be/stops/208652"], ["https://data.delijn.be/stops/302044", "https://data.delijn.be/stops/302045"], ["https://data.delijn.be/stops/101404", "https://data.delijn.be/stops/106525"], ["https://data.delijn.be/stops/406407", "https://data.delijn.be/stops/410394"], ["https://data.delijn.be/stops/501477", "https://data.delijn.be/stops/506477"], ["https://data.delijn.be/stops/209600", "https://data.delijn.be/stops/307600"], ["https://data.delijn.be/stops/202347", "https://data.delijn.be/stops/203347"], ["https://data.delijn.be/stops/400142", "https://data.delijn.be/stops/403097"], ["https://data.delijn.be/stops/106129", "https://data.delijn.be/stops/106240"], ["https://data.delijn.be/stops/106225", "https://data.delijn.be/stops/106330"], ["https://data.delijn.be/stops/200021", "https://data.delijn.be/stops/200147"], ["https://data.delijn.be/stops/300500", "https://data.delijn.be/stops/300529"], ["https://data.delijn.be/stops/509105", "https://data.delijn.be/stops/509546"], ["https://data.delijn.be/stops/400050", "https://data.delijn.be/stops/400165"], ["https://data.delijn.be/stops/101146", "https://data.delijn.be/stops/106857"], ["https://data.delijn.be/stops/202725", "https://data.delijn.be/stops/203892"], ["https://data.delijn.be/stops/406470", "https://data.delijn.be/stops/406493"], ["https://data.delijn.be/stops/204547", "https://data.delijn.be/stops/205502"], ["https://data.delijn.be/stops/302198", "https://data.delijn.be/stops/308109"], ["https://data.delijn.be/stops/504031", "https://data.delijn.be/stops/504033"], ["https://data.delijn.be/stops/208054", "https://data.delijn.be/stops/208055"], ["https://data.delijn.be/stops/402450", "https://data.delijn.be/stops/402451"], ["https://data.delijn.be/stops/105426", "https://data.delijn.be/stops/105428"], ["https://data.delijn.be/stops/101384", "https://data.delijn.be/stops/101394"], ["https://data.delijn.be/stops/408814", "https://data.delijn.be/stops/408815"], ["https://data.delijn.be/stops/207710", "https://data.delijn.be/stops/207711"], ["https://data.delijn.be/stops/501069", "https://data.delijn.be/stops/501073"], ["https://data.delijn.be/stops/200349", "https://data.delijn.be/stops/201349"], ["https://data.delijn.be/stops/300487", "https://data.delijn.be/stops/307198"], ["https://data.delijn.be/stops/400788", "https://data.delijn.be/stops/409594"], ["https://data.delijn.be/stops/300150", "https://data.delijn.be/stops/306860"], ["https://data.delijn.be/stops/408620", "https://data.delijn.be/stops/408621"], ["https://data.delijn.be/stops/405792", "https://data.delijn.be/stops/405897"], ["https://data.delijn.be/stops/202593", "https://data.delijn.be/stops/203594"], ["https://data.delijn.be/stops/205422", "https://data.delijn.be/stops/205423"], ["https://data.delijn.be/stops/302541", "https://data.delijn.be/stops/307809"], ["https://data.delijn.be/stops/403210", "https://data.delijn.be/stops/403380"], ["https://data.delijn.be/stops/403087", "https://data.delijn.be/stops/403413"], ["https://data.delijn.be/stops/502812", "https://data.delijn.be/stops/508800"], ["https://data.delijn.be/stops/102136", "https://data.delijn.be/stops/103474"], ["https://data.delijn.be/stops/102161", "https://data.delijn.be/stops/107952"], ["https://data.delijn.be/stops/208705", "https://data.delijn.be/stops/208709"], ["https://data.delijn.be/stops/210659", "https://data.delijn.be/stops/211659"], ["https://data.delijn.be/stops/300724", "https://data.delijn.be/stops/306935"], ["https://data.delijn.be/stops/503722", "https://data.delijn.be/stops/509937"], ["https://data.delijn.be/stops/206741", "https://data.delijn.be/stops/207605"], ["https://data.delijn.be/stops/405834", "https://data.delijn.be/stops/405870"], ["https://data.delijn.be/stops/401040", "https://data.delijn.be/stops/401149"], ["https://data.delijn.be/stops/508593", "https://data.delijn.be/stops/508594"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/405455"], ["https://data.delijn.be/stops/405759", "https://data.delijn.be/stops/303334"], ["https://data.delijn.be/stops/109204", "https://data.delijn.be/stops/109205"], ["https://data.delijn.be/stops/302735", "https://data.delijn.be/stops/302738"], ["https://data.delijn.be/stops/305046", "https://data.delijn.be/stops/305085"], ["https://data.delijn.be/stops/503961", "https://data.delijn.be/stops/504343"], ["https://data.delijn.be/stops/108790", "https://data.delijn.be/stops/109758"], ["https://data.delijn.be/stops/208566", "https://data.delijn.be/stops/209547"], ["https://data.delijn.be/stops/406608", "https://data.delijn.be/stops/406609"], ["https://data.delijn.be/stops/206206", "https://data.delijn.be/stops/206608"], ["https://data.delijn.be/stops/501664", "https://data.delijn.be/stops/506665"], ["https://data.delijn.be/stops/307632", "https://data.delijn.be/stops/307906"], ["https://data.delijn.be/stops/302176", "https://data.delijn.be/stops/308105"], ["https://data.delijn.be/stops/408890", "https://data.delijn.be/stops/408906"], ["https://data.delijn.be/stops/206588", "https://data.delijn.be/stops/206839"], ["https://data.delijn.be/stops/203671", "https://data.delijn.be/stops/203727"], ["https://data.delijn.be/stops/402863", "https://data.delijn.be/stops/404098"], ["https://data.delijn.be/stops/302369", "https://data.delijn.be/stops/307521"], ["https://data.delijn.be/stops/208528", "https://data.delijn.be/stops/219016"], ["https://data.delijn.be/stops/301221", "https://data.delijn.be/stops/301223"], ["https://data.delijn.be/stops/406602", "https://data.delijn.be/stops/406603"], ["https://data.delijn.be/stops/204142", "https://data.delijn.be/stops/207898"], ["https://data.delijn.be/stops/406601", "https://data.delijn.be/stops/406621"], ["https://data.delijn.be/stops/302429", "https://data.delijn.be/stops/307002"], ["https://data.delijn.be/stops/300486", "https://data.delijn.be/stops/300498"], ["https://data.delijn.be/stops/502249", "https://data.delijn.be/stops/502255"], ["https://data.delijn.be/stops/301455", "https://data.delijn.be/stops/301458"], ["https://data.delijn.be/stops/406157", "https://data.delijn.be/stops/406254"], ["https://data.delijn.be/stops/102381", "https://data.delijn.be/stops/105612"], ["https://data.delijn.be/stops/304388", "https://data.delijn.be/stops/306869"], ["https://data.delijn.be/stops/301267", "https://data.delijn.be/stops/305043"], ["https://data.delijn.be/stops/300453", "https://data.delijn.be/stops/308297"], ["https://data.delijn.be/stops/404130", "https://data.delijn.be/stops/404188"], ["https://data.delijn.be/stops/201639", "https://data.delijn.be/stops/201949"], ["https://data.delijn.be/stops/106109", "https://data.delijn.be/stops/106176"], ["https://data.delijn.be/stops/103045", "https://data.delijn.be/stops/104256"], ["https://data.delijn.be/stops/107236", "https://data.delijn.be/stops/107885"], ["https://data.delijn.be/stops/206004", "https://data.delijn.be/stops/206522"], ["https://data.delijn.be/stops/409194", "https://data.delijn.be/stops/409203"], ["https://data.delijn.be/stops/206541", "https://data.delijn.be/stops/207570"], ["https://data.delijn.be/stops/505813", "https://data.delijn.be/stops/509011"], ["https://data.delijn.be/stops/209080", "https://data.delijn.be/stops/216006"], ["https://data.delijn.be/stops/405472", "https://data.delijn.be/stops/405485"], ["https://data.delijn.be/stops/207415", "https://data.delijn.be/stops/217016"], ["https://data.delijn.be/stops/101607", "https://data.delijn.be/stops/105762"], ["https://data.delijn.be/stops/200682", "https://data.delijn.be/stops/200683"], ["https://data.delijn.be/stops/403809", "https://data.delijn.be/stops/408597"], ["https://data.delijn.be/stops/301343", "https://data.delijn.be/stops/304666"], ["https://data.delijn.be/stops/103615", "https://data.delijn.be/stops/108305"], ["https://data.delijn.be/stops/304758", "https://data.delijn.be/stops/304762"], ["https://data.delijn.be/stops/201584", "https://data.delijn.be/stops/201591"], ["https://data.delijn.be/stops/501672", "https://data.delijn.be/stops/506456"], ["https://data.delijn.be/stops/204652", "https://data.delijn.be/stops/205261"], ["https://data.delijn.be/stops/509754", "https://data.delijn.be/stops/509755"], ["https://data.delijn.be/stops/401960", "https://data.delijn.be/stops/407042"], ["https://data.delijn.be/stops/408559", "https://data.delijn.be/stops/408563"], ["https://data.delijn.be/stops/204097", "https://data.delijn.be/stops/215017"], ["https://data.delijn.be/stops/504535", "https://data.delijn.be/stops/508718"], ["https://data.delijn.be/stops/302358", "https://data.delijn.be/stops/302359"], ["https://data.delijn.be/stops/304655", "https://data.delijn.be/stops/306170"], ["https://data.delijn.be/stops/403341", "https://data.delijn.be/stops/403521"], ["https://data.delijn.be/stops/106296", "https://data.delijn.be/stops/109436"], ["https://data.delijn.be/stops/503900", "https://data.delijn.be/stops/508901"], ["https://data.delijn.be/stops/209609", "https://data.delijn.be/stops/307605"], ["https://data.delijn.be/stops/402316", "https://data.delijn.be/stops/402367"], ["https://data.delijn.be/stops/202344", "https://data.delijn.be/stops/209744"], ["https://data.delijn.be/stops/503449", "https://data.delijn.be/stops/503644"], ["https://data.delijn.be/stops/408976", "https://data.delijn.be/stops/408979"], ["https://data.delijn.be/stops/207248", "https://data.delijn.be/stops/216019"], ["https://data.delijn.be/stops/304337", "https://data.delijn.be/stops/304706"], ["https://data.delijn.be/stops/106646", "https://data.delijn.be/stops/106647"], ["https://data.delijn.be/stops/201934", "https://data.delijn.be/stops/201937"], ["https://data.delijn.be/stops/308509", "https://data.delijn.be/stops/308510"], ["https://data.delijn.be/stops/203506", "https://data.delijn.be/stops/203507"], ["https://data.delijn.be/stops/104379", "https://data.delijn.be/stops/104381"], ["https://data.delijn.be/stops/203902", "https://data.delijn.be/stops/210092"], ["https://data.delijn.be/stops/508075", "https://data.delijn.be/stops/508869"], ["https://data.delijn.be/stops/504218", "https://data.delijn.be/stops/509066"], ["https://data.delijn.be/stops/508317", "https://data.delijn.be/stops/508654"], ["https://data.delijn.be/stops/101978", "https://data.delijn.be/stops/108284"], ["https://data.delijn.be/stops/503661", "https://data.delijn.be/stops/505131"], ["https://data.delijn.be/stops/407931", "https://data.delijn.be/stops/410344"], ["https://data.delijn.be/stops/101191", "https://data.delijn.be/stops/101656"], ["https://data.delijn.be/stops/509004", "https://data.delijn.be/stops/509737"], ["https://data.delijn.be/stops/405025", "https://data.delijn.be/stops/405607"], ["https://data.delijn.be/stops/406282", "https://data.delijn.be/stops/406285"], ["https://data.delijn.be/stops/504511", "https://data.delijn.be/stops/509509"], ["https://data.delijn.be/stops/211013", "https://data.delijn.be/stops/502277"], ["https://data.delijn.be/stops/401820", "https://data.delijn.be/stops/406202"], ["https://data.delijn.be/stops/406262", "https://data.delijn.be/stops/408482"], ["https://data.delijn.be/stops/202462", "https://data.delijn.be/stops/202465"], ["https://data.delijn.be/stops/103467", "https://data.delijn.be/stops/106323"], ["https://data.delijn.be/stops/304637", "https://data.delijn.be/stops/304652"], ["https://data.delijn.be/stops/208629", "https://data.delijn.be/stops/209058"], ["https://data.delijn.be/stops/504296", "https://data.delijn.be/stops/504307"], ["https://data.delijn.be/stops/507470", "https://data.delijn.be/stops/507691"], ["https://data.delijn.be/stops/509420", "https://data.delijn.be/stops/509421"], ["https://data.delijn.be/stops/402984", "https://data.delijn.be/stops/405592"], ["https://data.delijn.be/stops/205654", "https://data.delijn.be/stops/205668"], ["https://data.delijn.be/stops/400802", "https://data.delijn.be/stops/404331"], ["https://data.delijn.be/stops/208110", "https://data.delijn.be/stops/208387"], ["https://data.delijn.be/stops/502195", "https://data.delijn.be/stops/507939"], ["https://data.delijn.be/stops/301545", "https://data.delijn.be/stops/305142"], ["https://data.delijn.be/stops/206189", "https://data.delijn.be/stops/206367"], ["https://data.delijn.be/stops/302960", "https://data.delijn.be/stops/302981"], ["https://data.delijn.be/stops/407943", "https://data.delijn.be/stops/408064"], ["https://data.delijn.be/stops/103896", "https://data.delijn.be/stops/103900"], ["https://data.delijn.be/stops/407247", "https://data.delijn.be/stops/407456"], ["https://data.delijn.be/stops/403210", "https://data.delijn.be/stops/403219"], ["https://data.delijn.be/stops/302722", "https://data.delijn.be/stops/308598"], ["https://data.delijn.be/stops/208804", "https://data.delijn.be/stops/208954"], ["https://data.delijn.be/stops/208645", "https://data.delijn.be/stops/209645"], ["https://data.delijn.be/stops/107316", "https://data.delijn.be/stops/107319"], ["https://data.delijn.be/stops/202940", "https://data.delijn.be/stops/203941"], ["https://data.delijn.be/stops/505977", "https://data.delijn.be/stops/509392"], ["https://data.delijn.be/stops/209009", "https://data.delijn.be/stops/209010"], ["https://data.delijn.be/stops/207490", "https://data.delijn.be/stops/207491"], ["https://data.delijn.be/stops/108385", "https://data.delijn.be/stops/108386"], ["https://data.delijn.be/stops/305057", "https://data.delijn.be/stops/305180"], ["https://data.delijn.be/stops/403602", "https://data.delijn.be/stops/403642"], ["https://data.delijn.be/stops/502946", "https://data.delijn.be/stops/508588"], ["https://data.delijn.be/stops/407672", "https://data.delijn.be/stops/409803"], ["https://data.delijn.be/stops/101409", "https://data.delijn.be/stops/101435"], ["https://data.delijn.be/stops/202105", "https://data.delijn.be/stops/203105"], ["https://data.delijn.be/stops/202868", "https://data.delijn.be/stops/203868"], ["https://data.delijn.be/stops/109298", "https://data.delijn.be/stops/109299"], ["https://data.delijn.be/stops/403484", "https://data.delijn.be/stops/403588"], ["https://data.delijn.be/stops/301608", "https://data.delijn.be/stops/301610"], ["https://data.delijn.be/stops/304401", "https://data.delijn.be/stops/304405"], ["https://data.delijn.be/stops/209217", "https://data.delijn.be/stops/209238"], ["https://data.delijn.be/stops/208465", "https://data.delijn.be/stops/209685"], ["https://data.delijn.be/stops/202591", "https://data.delijn.be/stops/203591"], ["https://data.delijn.be/stops/303699", "https://data.delijn.be/stops/303761"], ["https://data.delijn.be/stops/504318", "https://data.delijn.be/stops/504322"], ["https://data.delijn.be/stops/408238", "https://data.delijn.be/stops/408241"], ["https://data.delijn.be/stops/202008", "https://data.delijn.be/stops/203008"], ["https://data.delijn.be/stops/505147", "https://data.delijn.be/stops/505762"], ["https://data.delijn.be/stops/204670", "https://data.delijn.be/stops/205670"], ["https://data.delijn.be/stops/402685", "https://data.delijn.be/stops/402731"], ["https://data.delijn.be/stops/401553", "https://data.delijn.be/stops/403882"], ["https://data.delijn.be/stops/108617", "https://data.delijn.be/stops/301916"], ["https://data.delijn.be/stops/300745", "https://data.delijn.be/stops/300746"], ["https://data.delijn.be/stops/200744", "https://data.delijn.be/stops/201745"], ["https://data.delijn.be/stops/204035", "https://data.delijn.be/stops/205035"], ["https://data.delijn.be/stops/204231", "https://data.delijn.be/stops/205250"], ["https://data.delijn.be/stops/404715", "https://data.delijn.be/stops/404721"], ["https://data.delijn.be/stops/404686", "https://data.delijn.be/stops/404687"], ["https://data.delijn.be/stops/202741", "https://data.delijn.be/stops/202873"], ["https://data.delijn.be/stops/507709", "https://data.delijn.be/stops/509936"], ["https://data.delijn.be/stops/201836", "https://data.delijn.be/stops/203319"], ["https://data.delijn.be/stops/304259", "https://data.delijn.be/stops/304260"], ["https://data.delijn.be/stops/200678", "https://data.delijn.be/stops/201667"], ["https://data.delijn.be/stops/206519", "https://data.delijn.be/stops/207524"], ["https://data.delijn.be/stops/101377", "https://data.delijn.be/stops/101399"], ["https://data.delijn.be/stops/405002", "https://data.delijn.be/stops/405068"], ["https://data.delijn.be/stops/301654", "https://data.delijn.be/stops/304499"], ["https://data.delijn.be/stops/301630", "https://data.delijn.be/stops/301631"], ["https://data.delijn.be/stops/107714", "https://data.delijn.be/stops/107715"], ["https://data.delijn.be/stops/106594", "https://data.delijn.be/stops/107387"], ["https://data.delijn.be/stops/302149", "https://data.delijn.be/stops/303813"], ["https://data.delijn.be/stops/107639", "https://data.delijn.be/stops/108083"], ["https://data.delijn.be/stops/403684", "https://data.delijn.be/stops/403687"], ["https://data.delijn.be/stops/409645", "https://data.delijn.be/stops/410165"], ["https://data.delijn.be/stops/403759", "https://data.delijn.be/stops/403763"], ["https://data.delijn.be/stops/500937", "https://data.delijn.be/stops/505406"], ["https://data.delijn.be/stops/405514", "https://data.delijn.be/stops/407786"], ["https://data.delijn.be/stops/106948", "https://data.delijn.be/stops/108712"], ["https://data.delijn.be/stops/107786", "https://data.delijn.be/stops/107788"], ["https://data.delijn.be/stops/500116", "https://data.delijn.be/stops/500118"], ["https://data.delijn.be/stops/302739", "https://data.delijn.be/stops/302740"], ["https://data.delijn.be/stops/304284", "https://data.delijn.be/stops/306138"], ["https://data.delijn.be/stops/206686", "https://data.delijn.be/stops/207207"], ["https://data.delijn.be/stops/204392", "https://data.delijn.be/stops/205392"], ["https://data.delijn.be/stops/206272", "https://data.delijn.be/stops/207272"], ["https://data.delijn.be/stops/405261", "https://data.delijn.be/stops/405270"], ["https://data.delijn.be/stops/202429", "https://data.delijn.be/stops/202715"], ["https://data.delijn.be/stops/501246", "https://data.delijn.be/stops/506767"], ["https://data.delijn.be/stops/304391", "https://data.delijn.be/stops/307416"], ["https://data.delijn.be/stops/305771", "https://data.delijn.be/stops/305787"], ["https://data.delijn.be/stops/501396", "https://data.delijn.be/stops/501397"], ["https://data.delijn.be/stops/106006", "https://data.delijn.be/stops/106008"], ["https://data.delijn.be/stops/303815", "https://data.delijn.be/stops/303817"], ["https://data.delijn.be/stops/303009", "https://data.delijn.be/stops/306100"], ["https://data.delijn.be/stops/502796", "https://data.delijn.be/stops/504863"], ["https://data.delijn.be/stops/206501", "https://data.delijn.be/stops/207673"], ["https://data.delijn.be/stops/403917", "https://data.delijn.be/stops/410256"], ["https://data.delijn.be/stops/300085", "https://data.delijn.be/stops/300137"], ["https://data.delijn.be/stops/206531", "https://data.delijn.be/stops/207531"], ["https://data.delijn.be/stops/503144", "https://data.delijn.be/stops/508143"], ["https://data.delijn.be/stops/105299", "https://data.delijn.be/stops/105353"], ["https://data.delijn.be/stops/208436", "https://data.delijn.be/stops/208437"], ["https://data.delijn.be/stops/507050", "https://data.delijn.be/stops/507750"], ["https://data.delijn.be/stops/101699", "https://data.delijn.be/stops/103246"], ["https://data.delijn.be/stops/501480", "https://data.delijn.be/stops/506480"], ["https://data.delijn.be/stops/401496", "https://data.delijn.be/stops/401497"], ["https://data.delijn.be/stops/400178", "https://data.delijn.be/stops/400366"], ["https://data.delijn.be/stops/109913", "https://data.delijn.be/stops/109914"], ["https://data.delijn.be/stops/504470", "https://data.delijn.be/stops/509031"], ["https://data.delijn.be/stops/305295", "https://data.delijn.be/stops/305890"], ["https://data.delijn.be/stops/304456", "https://data.delijn.be/stops/304461"], ["https://data.delijn.be/stops/208227", "https://data.delijn.be/stops/209233"], ["https://data.delijn.be/stops/402366", "https://data.delijn.be/stops/402446"], ["https://data.delijn.be/stops/409364", "https://data.delijn.be/stops/409367"], ["https://data.delijn.be/stops/307967", "https://data.delijn.be/stops/307970"], ["https://data.delijn.be/stops/405474", "https://data.delijn.be/stops/407567"], ["https://data.delijn.be/stops/206244", "https://data.delijn.be/stops/207244"], ["https://data.delijn.be/stops/505146", "https://data.delijn.be/stops/507917"], ["https://data.delijn.be/stops/500925", "https://data.delijn.be/stops/508341"], ["https://data.delijn.be/stops/104739", "https://data.delijn.be/stops/104756"], ["https://data.delijn.be/stops/300572", "https://data.delijn.be/stops/300590"], ["https://data.delijn.be/stops/303879", "https://data.delijn.be/stops/303880"], ["https://data.delijn.be/stops/503272", "https://data.delijn.be/stops/503275"], ["https://data.delijn.be/stops/202110", "https://data.delijn.be/stops/202639"], ["https://data.delijn.be/stops/304139", "https://data.delijn.be/stops/307762"], ["https://data.delijn.be/stops/401905", "https://data.delijn.be/stops/410157"], ["https://data.delijn.be/stops/219080", "https://data.delijn.be/stops/303282"], ["https://data.delijn.be/stops/508977", "https://data.delijn.be/stops/508978"], ["https://data.delijn.be/stops/301838", "https://data.delijn.be/stops/302487"], ["https://data.delijn.be/stops/503042", "https://data.delijn.be/stops/504206"], ["https://data.delijn.be/stops/404405", "https://data.delijn.be/stops/404412"], ["https://data.delijn.be/stops/300564", "https://data.delijn.be/stops/308896"], ["https://data.delijn.be/stops/407766", "https://data.delijn.be/stops/409624"], ["https://data.delijn.be/stops/302006", "https://data.delijn.be/stops/303185"], ["https://data.delijn.be/stops/107320", "https://data.delijn.be/stops/109055"], ["https://data.delijn.be/stops/503491", "https://data.delijn.be/stops/508483"], ["https://data.delijn.be/stops/405754", "https://data.delijn.be/stops/409259"], ["https://data.delijn.be/stops/403466", "https://data.delijn.be/stops/403467"], ["https://data.delijn.be/stops/509812", "https://data.delijn.be/stops/509813"], ["https://data.delijn.be/stops/505518", "https://data.delijn.be/stops/505523"], ["https://data.delijn.be/stops/302549", "https://data.delijn.be/stops/302551"], ["https://data.delijn.be/stops/103306", "https://data.delijn.be/stops/105730"], ["https://data.delijn.be/stops/204765", "https://data.delijn.be/stops/205373"], ["https://data.delijn.be/stops/301909", "https://data.delijn.be/stops/306258"], ["https://data.delijn.be/stops/300701", "https://data.delijn.be/stops/306943"], ["https://data.delijn.be/stops/501076", "https://data.delijn.be/stops/506513"], ["https://data.delijn.be/stops/206410", "https://data.delijn.be/stops/306973"], ["https://data.delijn.be/stops/401538", "https://data.delijn.be/stops/401539"], ["https://data.delijn.be/stops/301537", "https://data.delijn.be/stops/301538"], ["https://data.delijn.be/stops/503893", "https://data.delijn.be/stops/508893"], ["https://data.delijn.be/stops/502207", "https://data.delijn.be/stops/502216"], ["https://data.delijn.be/stops/205086", "https://data.delijn.be/stops/205798"], ["https://data.delijn.be/stops/202273", "https://data.delijn.be/stops/203273"], ["https://data.delijn.be/stops/102186", "https://data.delijn.be/stops/104262"], ["https://data.delijn.be/stops/106066", "https://data.delijn.be/stops/109876"], ["https://data.delijn.be/stops/300474", "https://data.delijn.be/stops/301560"], ["https://data.delijn.be/stops/405812", "https://data.delijn.be/stops/406880"], ["https://data.delijn.be/stops/502934", "https://data.delijn.be/stops/507914"], ["https://data.delijn.be/stops/406370", "https://data.delijn.be/stops/406374"], ["https://data.delijn.be/stops/102035", "https://data.delijn.be/stops/103764"], ["https://data.delijn.be/stops/400132", "https://data.delijn.be/stops/400133"], ["https://data.delijn.be/stops/407953", "https://data.delijn.be/stops/408126"], ["https://data.delijn.be/stops/302381", "https://data.delijn.be/stops/304062"], ["https://data.delijn.be/stops/503097", "https://data.delijn.be/stops/505382"], ["https://data.delijn.be/stops/405760", "https://data.delijn.be/stops/301103"], ["https://data.delijn.be/stops/206950", "https://data.delijn.be/stops/207934"], ["https://data.delijn.be/stops/503110", "https://data.delijn.be/stops/505083"], ["https://data.delijn.be/stops/205118", "https://data.delijn.be/stops/205464"], ["https://data.delijn.be/stops/503200", "https://data.delijn.be/stops/503970"], ["https://data.delijn.be/stops/304044", "https://data.delijn.be/stops/304690"], ["https://data.delijn.be/stops/202876", "https://data.delijn.be/stops/202877"], ["https://data.delijn.be/stops/207773", "https://data.delijn.be/stops/208189"], ["https://data.delijn.be/stops/502529", "https://data.delijn.be/stops/507529"], ["https://data.delijn.be/stops/401296", "https://data.delijn.be/stops/401326"], ["https://data.delijn.be/stops/102345", "https://data.delijn.be/stops/104250"], ["https://data.delijn.be/stops/407750", "https://data.delijn.be/stops/407754"], ["https://data.delijn.be/stops/200927", "https://data.delijn.be/stops/202230"], ["https://data.delijn.be/stops/408173", "https://data.delijn.be/stops/408174"], ["https://data.delijn.be/stops/407600", "https://data.delijn.be/stops/407699"], ["https://data.delijn.be/stops/307379", "https://data.delijn.be/stops/307451"], ["https://data.delijn.be/stops/204109", "https://data.delijn.be/stops/205115"], ["https://data.delijn.be/stops/109059", "https://data.delijn.be/stops/109061"], ["https://data.delijn.be/stops/303064", "https://data.delijn.be/stops/304465"], ["https://data.delijn.be/stops/108483", "https://data.delijn.be/stops/306596"], ["https://data.delijn.be/stops/206461", "https://data.delijn.be/stops/207462"], ["https://data.delijn.be/stops/106263", "https://data.delijn.be/stops/106340"], ["https://data.delijn.be/stops/106612", "https://data.delijn.be/stops/106613"], ["https://data.delijn.be/stops/201126", "https://data.delijn.be/stops/201298"], ["https://data.delijn.be/stops/207420", "https://data.delijn.be/stops/216012"], ["https://data.delijn.be/stops/403156", "https://data.delijn.be/stops/407583"], ["https://data.delijn.be/stops/103272", "https://data.delijn.be/stops/107689"], ["https://data.delijn.be/stops/407650", "https://data.delijn.be/stops/410211"], ["https://data.delijn.be/stops/401554", "https://data.delijn.be/stops/401558"], ["https://data.delijn.be/stops/503320", "https://data.delijn.be/stops/508315"], ["https://data.delijn.be/stops/406262", "https://data.delijn.be/stops/407123"], ["https://data.delijn.be/stops/201333", "https://data.delijn.be/stops/201339"], ["https://data.delijn.be/stops/307578", "https://data.delijn.be/stops/307677"], ["https://data.delijn.be/stops/105304", "https://data.delijn.be/stops/105364"], ["https://data.delijn.be/stops/304236", "https://data.delijn.be/stops/304486"], ["https://data.delijn.be/stops/305778", "https://data.delijn.be/stops/305780"], ["https://data.delijn.be/stops/101203", "https://data.delijn.be/stops/204661"], ["https://data.delijn.be/stops/503093", "https://data.delijn.be/stops/505379"], ["https://data.delijn.be/stops/400896", "https://data.delijn.be/stops/400898"], ["https://data.delijn.be/stops/108068", "https://data.delijn.be/stops/108136"], ["https://data.delijn.be/stops/302251", "https://data.delijn.be/stops/306378"], ["https://data.delijn.be/stops/201726", "https://data.delijn.be/stops/202979"], ["https://data.delijn.be/stops/103081", "https://data.delijn.be/stops/104673"], ["https://data.delijn.be/stops/407861", "https://data.delijn.be/stops/305682"], ["https://data.delijn.be/stops/107395", "https://data.delijn.be/stops/108575"], ["https://data.delijn.be/stops/407719", "https://data.delijn.be/stops/409520"], ["https://data.delijn.be/stops/203877", "https://data.delijn.be/stops/209534"], ["https://data.delijn.be/stops/407176", "https://data.delijn.be/stops/410094"], ["https://data.delijn.be/stops/102514", "https://data.delijn.be/stops/406479"], ["https://data.delijn.be/stops/501593", "https://data.delijn.be/stops/505403"], ["https://data.delijn.be/stops/202784", "https://data.delijn.be/stops/211103"], ["https://data.delijn.be/stops/502402", "https://data.delijn.be/stops/507402"], ["https://data.delijn.be/stops/502418", "https://data.delijn.be/stops/502645"], ["https://data.delijn.be/stops/210021", "https://data.delijn.be/stops/211020"], ["https://data.delijn.be/stops/304411", "https://data.delijn.be/stops/307360"], ["https://data.delijn.be/stops/103134", "https://data.delijn.be/stops/107106"], ["https://data.delijn.be/stops/206449", "https://data.delijn.be/stops/207059"], ["https://data.delijn.be/stops/102909", "https://data.delijn.be/stops/102915"], ["https://data.delijn.be/stops/201547", "https://data.delijn.be/stops/211132"], ["https://data.delijn.be/stops/406172", "https://data.delijn.be/stops/406436"], ["https://data.delijn.be/stops/208646", "https://data.delijn.be/stops/209646"], ["https://data.delijn.be/stops/405866", "https://data.delijn.be/stops/405867"], ["https://data.delijn.be/stops/101419", "https://data.delijn.be/stops/106957"], ["https://data.delijn.be/stops/106437", "https://data.delijn.be/stops/106507"], ["https://data.delijn.be/stops/207287", "https://data.delijn.be/stops/207811"], ["https://data.delijn.be/stops/408977", "https://data.delijn.be/stops/408979"], ["https://data.delijn.be/stops/203313", "https://data.delijn.be/stops/203314"], ["https://data.delijn.be/stops/105787", "https://data.delijn.be/stops/105936"], ["https://data.delijn.be/stops/301489", "https://data.delijn.be/stops/302623"], ["https://data.delijn.be/stops/104586", "https://data.delijn.be/stops/104587"], ["https://data.delijn.be/stops/400004", "https://data.delijn.be/stops/400431"], ["https://data.delijn.be/stops/200037", "https://data.delijn.be/stops/201037"], ["https://data.delijn.be/stops/503099", "https://data.delijn.be/stops/505253"], ["https://data.delijn.be/stops/300773", "https://data.delijn.be/stops/301958"], ["https://data.delijn.be/stops/202735", "https://data.delijn.be/stops/202849"], ["https://data.delijn.be/stops/405799", "https://data.delijn.be/stops/405855"], ["https://data.delijn.be/stops/503142", "https://data.delijn.be/stops/503988"], ["https://data.delijn.be/stops/102131", "https://data.delijn.be/stops/106068"], ["https://data.delijn.be/stops/402263", "https://data.delijn.be/stops/402472"], ["https://data.delijn.be/stops/307132", "https://data.delijn.be/stops/308447"], ["https://data.delijn.be/stops/300645", "https://data.delijn.be/stops/300663"], ["https://data.delijn.be/stops/301616", "https://data.delijn.be/stops/301670"], ["https://data.delijn.be/stops/407826", "https://data.delijn.be/stops/408014"], ["https://data.delijn.be/stops/304120", "https://data.delijn.be/stops/307677"], ["https://data.delijn.be/stops/101922", "https://data.delijn.be/stops/106039"], ["https://data.delijn.be/stops/503363", "https://data.delijn.be/stops/503373"], ["https://data.delijn.be/stops/206756", "https://data.delijn.be/stops/206849"], ["https://data.delijn.be/stops/401440", "https://data.delijn.be/stops/408358"], ["https://data.delijn.be/stops/302413", "https://data.delijn.be/stops/302437"], ["https://data.delijn.be/stops/204505", "https://data.delijn.be/stops/205821"], ["https://data.delijn.be/stops/204734", "https://data.delijn.be/stops/205734"], ["https://data.delijn.be/stops/202274", "https://data.delijn.be/stops/203274"], ["https://data.delijn.be/stops/303806", "https://data.delijn.be/stops/303807"], ["https://data.delijn.be/stops/403332", "https://data.delijn.be/stops/403341"], ["https://data.delijn.be/stops/206902", "https://data.delijn.be/stops/216002"], ["https://data.delijn.be/stops/303068", "https://data.delijn.be/stops/303157"], ["https://data.delijn.be/stops/300561", "https://data.delijn.be/stops/300562"], ["https://data.delijn.be/stops/305540", "https://data.delijn.be/stops/308685"], ["https://data.delijn.be/stops/207097", "https://data.delijn.be/stops/207931"], ["https://data.delijn.be/stops/503323", "https://data.delijn.be/stops/508323"], ["https://data.delijn.be/stops/508784", "https://data.delijn.be/stops/508785"], ["https://data.delijn.be/stops/201725", "https://data.delijn.be/stops/203377"], ["https://data.delijn.be/stops/308181", "https://data.delijn.be/stops/308182"], ["https://data.delijn.be/stops/407370", "https://data.delijn.be/stops/407376"], ["https://data.delijn.be/stops/504091", "https://data.delijn.be/stops/504838"], ["https://data.delijn.be/stops/207703", "https://data.delijn.be/stops/207739"], ["https://data.delijn.be/stops/402021", "https://data.delijn.be/stops/410059"], ["https://data.delijn.be/stops/403123", "https://data.delijn.be/stops/403357"], ["https://data.delijn.be/stops/405823", "https://data.delijn.be/stops/405841"], ["https://data.delijn.be/stops/404317", "https://data.delijn.be/stops/409690"], ["https://data.delijn.be/stops/206048", "https://data.delijn.be/stops/207046"], ["https://data.delijn.be/stops/109455", "https://data.delijn.be/stops/109458"], ["https://data.delijn.be/stops/101781", "https://data.delijn.be/stops/103756"], ["https://data.delijn.be/stops/303370", "https://data.delijn.be/stops/303385"], ["https://data.delijn.be/stops/304934", "https://data.delijn.be/stops/304944"], ["https://data.delijn.be/stops/300829", "https://data.delijn.be/stops/300874"], ["https://data.delijn.be/stops/208621", "https://data.delijn.be/stops/218012"], ["https://data.delijn.be/stops/502440", "https://data.delijn.be/stops/507422"], ["https://data.delijn.be/stops/502802", "https://data.delijn.be/stops/507540"], ["https://data.delijn.be/stops/204066", "https://data.delijn.be/stops/204228"], ["https://data.delijn.be/stops/503225", "https://data.delijn.be/stops/503226"], ["https://data.delijn.be/stops/206092", "https://data.delijn.be/stops/206093"], ["https://data.delijn.be/stops/201925", "https://data.delijn.be/stops/205979"], ["https://data.delijn.be/stops/204599", "https://data.delijn.be/stops/205095"], ["https://data.delijn.be/stops/103870", "https://data.delijn.be/stops/105525"], ["https://data.delijn.be/stops/200492", "https://data.delijn.be/stops/201490"], ["https://data.delijn.be/stops/202203", "https://data.delijn.be/stops/202204"], ["https://data.delijn.be/stops/507356", "https://data.delijn.be/stops/507362"], ["https://data.delijn.be/stops/203661", "https://data.delijn.be/stops/203662"], ["https://data.delijn.be/stops/401072", "https://data.delijn.be/stops/410024"], ["https://data.delijn.be/stops/201825", "https://data.delijn.be/stops/203310"], ["https://data.delijn.be/stops/105865", "https://data.delijn.be/stops/105871"], ["https://data.delijn.be/stops/304469", "https://data.delijn.be/stops/304555"], ["https://data.delijn.be/stops/503598", "https://data.delijn.be/stops/508594"], ["https://data.delijn.be/stops/405868", "https://data.delijn.be/stops/407258"], ["https://data.delijn.be/stops/300107", "https://data.delijn.be/stops/306866"], ["https://data.delijn.be/stops/307404", "https://data.delijn.be/stops/307406"], ["https://data.delijn.be/stops/107931", "https://data.delijn.be/stops/308811"], ["https://data.delijn.be/stops/209314", "https://data.delijn.be/stops/219009"], ["https://data.delijn.be/stops/108871", "https://data.delijn.be/stops/108873"], ["https://data.delijn.be/stops/102582", "https://data.delijn.be/stops/105620"], ["https://data.delijn.be/stops/103058", "https://data.delijn.be/stops/106612"], ["https://data.delijn.be/stops/404903", "https://data.delijn.be/stops/404985"], ["https://data.delijn.be/stops/300209", "https://data.delijn.be/stops/300210"], ["https://data.delijn.be/stops/307148", "https://data.delijn.be/stops/307153"], ["https://data.delijn.be/stops/504760", "https://data.delijn.be/stops/504761"], ["https://data.delijn.be/stops/105671", "https://data.delijn.be/stops/105710"], ["https://data.delijn.be/stops/407752", "https://data.delijn.be/stops/409795"], ["https://data.delijn.be/stops/203989", "https://data.delijn.be/stops/203990"], ["https://data.delijn.be/stops/101929", "https://data.delijn.be/stops/104048"], ["https://data.delijn.be/stops/408722", "https://data.delijn.be/stops/408723"], ["https://data.delijn.be/stops/400229", "https://data.delijn.be/stops/400240"], ["https://data.delijn.be/stops/502273", "https://data.delijn.be/stops/502389"], ["https://data.delijn.be/stops/106611", "https://data.delijn.be/stops/106612"], ["https://data.delijn.be/stops/405986", "https://data.delijn.be/stops/406030"], ["https://data.delijn.be/stops/206143", "https://data.delijn.be/stops/207019"], ["https://data.delijn.be/stops/400315", "https://data.delijn.be/stops/402765"], ["https://data.delijn.be/stops/301298", "https://data.delijn.be/stops/308675"], ["https://data.delijn.be/stops/504243", "https://data.delijn.be/stops/504246"], ["https://data.delijn.be/stops/107018", "https://data.delijn.be/stops/107067"], ["https://data.delijn.be/stops/108939", "https://data.delijn.be/stops/108943"], ["https://data.delijn.be/stops/208344", "https://data.delijn.be/stops/208786"], ["https://data.delijn.be/stops/208612", "https://data.delijn.be/stops/209557"], ["https://data.delijn.be/stops/409104", "https://data.delijn.be/stops/409106"], ["https://data.delijn.be/stops/106504", "https://data.delijn.be/stops/106506"], ["https://data.delijn.be/stops/102375", "https://data.delijn.be/stops/104626"], ["https://data.delijn.be/stops/303252", "https://data.delijn.be/stops/303266"], ["https://data.delijn.be/stops/401924", "https://data.delijn.be/stops/405840"], ["https://data.delijn.be/stops/500020", "https://data.delijn.be/stops/502114"], ["https://data.delijn.be/stops/502134", "https://data.delijn.be/stops/507242"], ["https://data.delijn.be/stops/404665", "https://data.delijn.be/stops/404681"], ["https://data.delijn.be/stops/501453", "https://data.delijn.be/stops/506452"], ["https://data.delijn.be/stops/302862", "https://data.delijn.be/stops/308718"], ["https://data.delijn.be/stops/207642", "https://data.delijn.be/stops/209688"], ["https://data.delijn.be/stops/206930", "https://data.delijn.be/stops/207591"], ["https://data.delijn.be/stops/301516", "https://data.delijn.be/stops/301527"], ["https://data.delijn.be/stops/406466", "https://data.delijn.be/stops/406492"], ["https://data.delijn.be/stops/303254", "https://data.delijn.be/stops/303345"], ["https://data.delijn.be/stops/401572", "https://data.delijn.be/stops/402483"], ["https://data.delijn.be/stops/305648", "https://data.delijn.be/stops/305654"], ["https://data.delijn.be/stops/503291", "https://data.delijn.be/stops/508291"], ["https://data.delijn.be/stops/203996", "https://data.delijn.be/stops/206779"], ["https://data.delijn.be/stops/206711", "https://data.delijn.be/stops/206740"], ["https://data.delijn.be/stops/505567", "https://data.delijn.be/stops/505660"], ["https://data.delijn.be/stops/103045", "https://data.delijn.be/stops/105525"], ["https://data.delijn.be/stops/501529", "https://data.delijn.be/stops/509896"], ["https://data.delijn.be/stops/206643", "https://data.delijn.be/stops/207643"], ["https://data.delijn.be/stops/300415", "https://data.delijn.be/stops/300443"], ["https://data.delijn.be/stops/501295", "https://data.delijn.be/stops/506295"], ["https://data.delijn.be/stops/400472", "https://data.delijn.be/stops/404663"], ["https://data.delijn.be/stops/508146", "https://data.delijn.be/stops/509225"], ["https://data.delijn.be/stops/501159", "https://data.delijn.be/stops/501668"], ["https://data.delijn.be/stops/301217", "https://data.delijn.be/stops/301219"], ["https://data.delijn.be/stops/502595", "https://data.delijn.be/stops/507449"], ["https://data.delijn.be/stops/200412", "https://data.delijn.be/stops/201412"], ["https://data.delijn.be/stops/401575", "https://data.delijn.be/stops/402215"], ["https://data.delijn.be/stops/408601", "https://data.delijn.be/stops/408655"], ["https://data.delijn.be/stops/502287", "https://data.delijn.be/stops/507287"], ["https://data.delijn.be/stops/407739", "https://data.delijn.be/stops/409634"], ["https://data.delijn.be/stops/407934", "https://data.delijn.be/stops/407936"], ["https://data.delijn.be/stops/402784", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/101007", "https://data.delijn.be/stops/107675"], ["https://data.delijn.be/stops/200255", "https://data.delijn.be/stops/201254"], ["https://data.delijn.be/stops/504273", "https://data.delijn.be/stops/509274"], ["https://data.delijn.be/stops/202526", "https://data.delijn.be/stops/203540"], ["https://data.delijn.be/stops/207524", "https://data.delijn.be/stops/216008"], ["https://data.delijn.be/stops/109186", "https://data.delijn.be/stops/109275"], ["https://data.delijn.be/stops/408842", "https://data.delijn.be/stops/408843"], ["https://data.delijn.be/stops/206187", "https://data.delijn.be/stops/207187"], ["https://data.delijn.be/stops/206466", "https://data.delijn.be/stops/207470"], ["https://data.delijn.be/stops/201289", "https://data.delijn.be/stops/211132"], ["https://data.delijn.be/stops/204728", "https://data.delijn.be/stops/205728"], ["https://data.delijn.be/stops/200135", "https://data.delijn.be/stops/200408"], ["https://data.delijn.be/stops/105996", "https://data.delijn.be/stops/107908"], ["https://data.delijn.be/stops/403488", "https://data.delijn.be/stops/403489"], ["https://data.delijn.be/stops/200937", "https://data.delijn.be/stops/200940"], ["https://data.delijn.be/stops/108460", "https://data.delijn.be/stops/108620"], ["https://data.delijn.be/stops/300923", "https://data.delijn.be/stops/300924"], ["https://data.delijn.be/stops/206007", "https://data.delijn.be/stops/207007"], ["https://data.delijn.be/stops/505406", "https://data.delijn.be/stops/509885"], ["https://data.delijn.be/stops/503098", "https://data.delijn.be/stops/508099"], ["https://data.delijn.be/stops/503147", "https://data.delijn.be/stops/505994"], ["https://data.delijn.be/stops/406995", "https://data.delijn.be/stops/409732"], ["https://data.delijn.be/stops/200417", "https://data.delijn.be/stops/201009"], ["https://data.delijn.be/stops/207724", "https://data.delijn.be/stops/207881"], ["https://data.delijn.be/stops/202789", "https://data.delijn.be/stops/203789"], ["https://data.delijn.be/stops/302246", "https://data.delijn.be/stops/303997"], ["https://data.delijn.be/stops/308073", "https://data.delijn.be/stops/308074"], ["https://data.delijn.be/stops/301288", "https://data.delijn.be/stops/307942"], ["https://data.delijn.be/stops/101895", "https://data.delijn.be/stops/108010"], ["https://data.delijn.be/stops/103909", "https://data.delijn.be/stops/105621"], ["https://data.delijn.be/stops/206132", "https://data.delijn.be/stops/206716"], ["https://data.delijn.be/stops/501446", "https://data.delijn.be/stops/501484"], ["https://data.delijn.be/stops/305076", "https://data.delijn.be/stops/305095"], ["https://data.delijn.be/stops/106507", "https://data.delijn.be/stops/106508"], ["https://data.delijn.be/stops/405684", "https://data.delijn.be/stops/406467"], ["https://data.delijn.be/stops/205735", "https://data.delijn.be/stops/205757"], ["https://data.delijn.be/stops/206424", "https://data.delijn.be/stops/207568"], ["https://data.delijn.be/stops/208796", "https://data.delijn.be/stops/209231"], ["https://data.delijn.be/stops/105643", "https://data.delijn.be/stops/105646"], ["https://data.delijn.be/stops/206080", "https://data.delijn.be/stops/207080"], ["https://data.delijn.be/stops/204752", "https://data.delijn.be/stops/205752"], ["https://data.delijn.be/stops/402049", "https://data.delijn.be/stops/402089"], ["https://data.delijn.be/stops/204565", "https://data.delijn.be/stops/205565"], ["https://data.delijn.be/stops/307626", "https://data.delijn.be/stops/308268"], ["https://data.delijn.be/stops/207691", "https://data.delijn.be/stops/207718"], ["https://data.delijn.be/stops/104677", "https://data.delijn.be/stops/104696"], ["https://data.delijn.be/stops/200663", "https://data.delijn.be/stops/201838"], ["https://data.delijn.be/stops/103028", "https://data.delijn.be/stops/107482"], ["https://data.delijn.be/stops/300627", "https://data.delijn.be/stops/300709"], ["https://data.delijn.be/stops/505118", "https://data.delijn.be/stops/509046"], ["https://data.delijn.be/stops/503560", "https://data.delijn.be/stops/505846"], ["https://data.delijn.be/stops/503384", "https://data.delijn.be/stops/507817"], ["https://data.delijn.be/stops/502317", "https://data.delijn.be/stops/507027"], ["https://data.delijn.be/stops/504120", "https://data.delijn.be/stops/504759"], ["https://data.delijn.be/stops/202543", "https://data.delijn.be/stops/507277"], ["https://data.delijn.be/stops/200050", "https://data.delijn.be/stops/200202"], ["https://data.delijn.be/stops/406522", "https://data.delijn.be/stops/406524"], ["https://data.delijn.be/stops/106142", "https://data.delijn.be/stops/106144"], ["https://data.delijn.be/stops/300694", "https://data.delijn.be/stops/306366"], ["https://data.delijn.be/stops/301861", "https://data.delijn.be/stops/301864"], ["https://data.delijn.be/stops/200633", "https://data.delijn.be/stops/201603"], ["https://data.delijn.be/stops/407782", "https://data.delijn.be/stops/407783"], ["https://data.delijn.be/stops/101361", "https://data.delijn.be/stops/102192"], ["https://data.delijn.be/stops/108789", "https://data.delijn.be/stops/109112"], ["https://data.delijn.be/stops/301667", "https://data.delijn.be/stops/307338"], ["https://data.delijn.be/stops/200449", "https://data.delijn.be/stops/201075"], ["https://data.delijn.be/stops/305166", "https://data.delijn.be/stops/306965"], ["https://data.delijn.be/stops/305160", "https://data.delijn.be/stops/305195"], ["https://data.delijn.be/stops/405434", "https://data.delijn.be/stops/409303"], ["https://data.delijn.be/stops/400098", "https://data.delijn.be/stops/400099"], ["https://data.delijn.be/stops/406127", "https://data.delijn.be/stops/406132"], ["https://data.delijn.be/stops/101080", "https://data.delijn.be/stops/101085"], ["https://data.delijn.be/stops/102227", "https://data.delijn.be/stops/105524"], ["https://data.delijn.be/stops/206788", "https://data.delijn.be/stops/206789"], ["https://data.delijn.be/stops/104972", "https://data.delijn.be/stops/108558"], ["https://data.delijn.be/stops/202578", "https://data.delijn.be/stops/202581"], ["https://data.delijn.be/stops/502508", "https://data.delijn.be/stops/502535"], ["https://data.delijn.be/stops/104900", "https://data.delijn.be/stops/108555"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/302917"], ["https://data.delijn.be/stops/204169", "https://data.delijn.be/stops/205169"], ["https://data.delijn.be/stops/202379", "https://data.delijn.be/stops/203379"], ["https://data.delijn.be/stops/201260", "https://data.delijn.be/stops/210095"], ["https://data.delijn.be/stops/503145", "https://data.delijn.be/stops/509885"], ["https://data.delijn.be/stops/308512", "https://data.delijn.be/stops/308515"], ["https://data.delijn.be/stops/301169", "https://data.delijn.be/stops/304313"], ["https://data.delijn.be/stops/503550", "https://data.delijn.be/stops/508550"], ["https://data.delijn.be/stops/403401", "https://data.delijn.be/stops/403402"], ["https://data.delijn.be/stops/302469", "https://data.delijn.be/stops/304875"], ["https://data.delijn.be/stops/108274", "https://data.delijn.be/stops/109341"], ["https://data.delijn.be/stops/209498", "https://data.delijn.be/stops/209668"], ["https://data.delijn.be/stops/201389", "https://data.delijn.be/stops/208970"], ["https://data.delijn.be/stops/209603", "https://data.delijn.be/stops/305334"], ["https://data.delijn.be/stops/202963", "https://data.delijn.be/stops/203964"], ["https://data.delijn.be/stops/206207", "https://data.delijn.be/stops/206322"], ["https://data.delijn.be/stops/102589", "https://data.delijn.be/stops/109002"], ["https://data.delijn.be/stops/503846", "https://data.delijn.be/stops/503856"], ["https://data.delijn.be/stops/302553", "https://data.delijn.be/stops/302554"], ["https://data.delijn.be/stops/302871", "https://data.delijn.be/stops/302872"], ["https://data.delijn.be/stops/202062", "https://data.delijn.be/stops/203062"], ["https://data.delijn.be/stops/508482", "https://data.delijn.be/stops/508490"], ["https://data.delijn.be/stops/308507", "https://data.delijn.be/stops/308514"], ["https://data.delijn.be/stops/200856", "https://data.delijn.be/stops/202306"], ["https://data.delijn.be/stops/504563", "https://data.delijn.be/stops/509235"], ["https://data.delijn.be/stops/206972", "https://data.delijn.be/stops/207990"], ["https://data.delijn.be/stops/305523", "https://data.delijn.be/stops/305524"], ["https://data.delijn.be/stops/503731", "https://data.delijn.be/stops/503741"], ["https://data.delijn.be/stops/208670", "https://data.delijn.be/stops/219021"], ["https://data.delijn.be/stops/109987", "https://data.delijn.be/stops/410346"], ["https://data.delijn.be/stops/505726", "https://data.delijn.be/stops/507769"], ["https://data.delijn.be/stops/206063", "https://data.delijn.be/stops/206064"], ["https://data.delijn.be/stops/502583", "https://data.delijn.be/stops/507583"], ["https://data.delijn.be/stops/108325", "https://data.delijn.be/stops/108410"], ["https://data.delijn.be/stops/407154", "https://data.delijn.be/stops/407167"], ["https://data.delijn.be/stops/204190", "https://data.delijn.be/stops/205190"], ["https://data.delijn.be/stops/202263", "https://data.delijn.be/stops/202264"], ["https://data.delijn.be/stops/503168", "https://data.delijn.be/stops/508265"], ["https://data.delijn.be/stops/108742", "https://data.delijn.be/stops/108774"], ["https://data.delijn.be/stops/102201", "https://data.delijn.be/stops/105941"], ["https://data.delijn.be/stops/401844", "https://data.delijn.be/stops/406347"], ["https://data.delijn.be/stops/402573", "https://data.delijn.be/stops/402655"], ["https://data.delijn.be/stops/301453", "https://data.delijn.be/stops/307264"], ["https://data.delijn.be/stops/103476", "https://data.delijn.be/stops/103619"], ["https://data.delijn.be/stops/208395", "https://data.delijn.be/stops/509816"], ["https://data.delijn.be/stops/505417", "https://data.delijn.be/stops/505724"], ["https://data.delijn.be/stops/301480", "https://data.delijn.be/stops/308704"], ["https://data.delijn.be/stops/106372", "https://data.delijn.be/stops/106373"], ["https://data.delijn.be/stops/307349", "https://data.delijn.be/stops/307350"], ["https://data.delijn.be/stops/307108", "https://data.delijn.be/stops/307806"], ["https://data.delijn.be/stops/502660", "https://data.delijn.be/stops/507447"], ["https://data.delijn.be/stops/206953", "https://data.delijn.be/stops/300172"], ["https://data.delijn.be/stops/308459", "https://data.delijn.be/stops/308462"], ["https://data.delijn.be/stops/404320", "https://data.delijn.be/stops/404370"], ["https://data.delijn.be/stops/102812", "https://data.delijn.be/stops/104035"], ["https://data.delijn.be/stops/102484", "https://data.delijn.be/stops/400251"], ["https://data.delijn.be/stops/300570", "https://data.delijn.be/stops/301624"], ["https://data.delijn.be/stops/503489", "https://data.delijn.be/stops/508484"], ["https://data.delijn.be/stops/304944", "https://data.delijn.be/stops/308021"], ["https://data.delijn.be/stops/101836", "https://data.delijn.be/stops/108204"], ["https://data.delijn.be/stops/404703", "https://data.delijn.be/stops/404829"], ["https://data.delijn.be/stops/301251", "https://data.delijn.be/stops/301252"], ["https://data.delijn.be/stops/404061", "https://data.delijn.be/stops/404543"], ["https://data.delijn.be/stops/403357", "https://data.delijn.be/stops/405636"], ["https://data.delijn.be/stops/104448", "https://data.delijn.be/stops/107944"], ["https://data.delijn.be/stops/102961", "https://data.delijn.be/stops/106593"], ["https://data.delijn.be/stops/505364", "https://data.delijn.be/stops/505955"], ["https://data.delijn.be/stops/307215", "https://data.delijn.be/stops/307216"], ["https://data.delijn.be/stops/501071", "https://data.delijn.be/stops/506071"], ["https://data.delijn.be/stops/106212", "https://data.delijn.be/stops/106252"], ["https://data.delijn.be/stops/403704", "https://data.delijn.be/stops/403705"], ["https://data.delijn.be/stops/301734", "https://data.delijn.be/stops/301736"], ["https://data.delijn.be/stops/204144", "https://data.delijn.be/stops/205144"], ["https://data.delijn.be/stops/303425", "https://data.delijn.be/stops/303429"], ["https://data.delijn.be/stops/503019", "https://data.delijn.be/stops/508017"], ["https://data.delijn.be/stops/303118", "https://data.delijn.be/stops/303125"], ["https://data.delijn.be/stops/109318", "https://data.delijn.be/stops/109322"], ["https://data.delijn.be/stops/302831", "https://data.delijn.be/stops/302837"], ["https://data.delijn.be/stops/304410", "https://data.delijn.be/stops/306875"], ["https://data.delijn.be/stops/405940", "https://data.delijn.be/stops/405941"], ["https://data.delijn.be/stops/105374", "https://data.delijn.be/stops/305785"], ["https://data.delijn.be/stops/200632", "https://data.delijn.be/stops/201940"], ["https://data.delijn.be/stops/305634", "https://data.delijn.be/stops/305636"], ["https://data.delijn.be/stops/206579", "https://data.delijn.be/stops/207510"], ["https://data.delijn.be/stops/302524", "https://data.delijn.be/stops/308713"], ["https://data.delijn.be/stops/206308", "https://data.delijn.be/stops/206391"], ["https://data.delijn.be/stops/504944", "https://data.delijn.be/stops/509944"], ["https://data.delijn.be/stops/403284", "https://data.delijn.be/stops/403865"], ["https://data.delijn.be/stops/211025", "https://data.delijn.be/stops/211849"], ["https://data.delijn.be/stops/200025", "https://data.delijn.be/stops/205926"], ["https://data.delijn.be/stops/501022", "https://data.delijn.be/stops/501471"], ["https://data.delijn.be/stops/206298", "https://data.delijn.be/stops/207107"], ["https://data.delijn.be/stops/304577", "https://data.delijn.be/stops/304610"], ["https://data.delijn.be/stops/207429", "https://data.delijn.be/stops/208538"], ["https://data.delijn.be/stops/405553", "https://data.delijn.be/stops/410054"], ["https://data.delijn.be/stops/504701", "https://data.delijn.be/stops/509546"], ["https://data.delijn.be/stops/405918", "https://data.delijn.be/stops/405919"], ["https://data.delijn.be/stops/401842", "https://data.delijn.be/stops/401846"], ["https://data.delijn.be/stops/404173", "https://data.delijn.be/stops/404279"], ["https://data.delijn.be/stops/307295", "https://data.delijn.be/stops/308294"], ["https://data.delijn.be/stops/201361", "https://data.delijn.be/stops/202006"], ["https://data.delijn.be/stops/507520", "https://data.delijn.be/stops/507673"], ["https://data.delijn.be/stops/101359", "https://data.delijn.be/stops/101362"], ["https://data.delijn.be/stops/504562", "https://data.delijn.be/stops/509244"], ["https://data.delijn.be/stops/204068", "https://data.delijn.be/stops/205195"], ["https://data.delijn.be/stops/109253", "https://data.delijn.be/stops/109713"], ["https://data.delijn.be/stops/408566", "https://data.delijn.be/stops/408795"], ["https://data.delijn.be/stops/505550", "https://data.delijn.be/stops/507256"], ["https://data.delijn.be/stops/502479", "https://data.delijn.be/stops/509929"], ["https://data.delijn.be/stops/200816", "https://data.delijn.be/stops/200874"], ["https://data.delijn.be/stops/300816", "https://data.delijn.be/stops/308853"], ["https://data.delijn.be/stops/406827", "https://data.delijn.be/stops/409667"], ["https://data.delijn.be/stops/206822", "https://data.delijn.be/stops/207822"], ["https://data.delijn.be/stops/505520", "https://data.delijn.be/stops/505622"], ["https://data.delijn.be/stops/507340", "https://data.delijn.be/stops/507342"], ["https://data.delijn.be/stops/203101", "https://data.delijn.be/stops/203258"], ["https://data.delijn.be/stops/208679", "https://data.delijn.be/stops/209428"], ["https://data.delijn.be/stops/108720", "https://data.delijn.be/stops/109899"], ["https://data.delijn.be/stops/301031", "https://data.delijn.be/stops/307142"], ["https://data.delijn.be/stops/106812", "https://data.delijn.be/stops/106813"], ["https://data.delijn.be/stops/307864", "https://data.delijn.be/stops/307865"], ["https://data.delijn.be/stops/205226", "https://data.delijn.be/stops/205231"], ["https://data.delijn.be/stops/505038", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/301446", "https://data.delijn.be/stops/301673"], ["https://data.delijn.be/stops/201344", "https://data.delijn.be/stops/201377"], ["https://data.delijn.be/stops/307624", "https://data.delijn.be/stops/308265"], ["https://data.delijn.be/stops/206513", "https://data.delijn.be/stops/207517"], ["https://data.delijn.be/stops/501362", "https://data.delijn.be/stops/506493"], ["https://data.delijn.be/stops/208383", "https://data.delijn.be/stops/209383"], ["https://data.delijn.be/stops/101130", "https://data.delijn.be/stops/101565"], ["https://data.delijn.be/stops/500002", "https://data.delijn.be/stops/503204"], ["https://data.delijn.be/stops/408524", "https://data.delijn.be/stops/408763"], ["https://data.delijn.be/stops/206415", "https://data.delijn.be/stops/217016"], ["https://data.delijn.be/stops/211011", "https://data.delijn.be/stops/502276"], ["https://data.delijn.be/stops/202815", "https://data.delijn.be/stops/203884"], ["https://data.delijn.be/stops/408620", "https://data.delijn.be/stops/408807"], ["https://data.delijn.be/stops/403087", "https://data.delijn.be/stops/403162"], ["https://data.delijn.be/stops/303697", "https://data.delijn.be/stops/305389"], ["https://data.delijn.be/stops/300788", "https://data.delijn.be/stops/308673"], ["https://data.delijn.be/stops/405426", "https://data.delijn.be/stops/409256"], ["https://data.delijn.be/stops/302974", "https://data.delijn.be/stops/302997"], ["https://data.delijn.be/stops/503425", "https://data.delijn.be/stops/508420"], ["https://data.delijn.be/stops/301937", "https://data.delijn.be/stops/302152"], ["https://data.delijn.be/stops/301181", "https://data.delijn.be/stops/301185"], ["https://data.delijn.be/stops/208630", "https://data.delijn.be/stops/209045"], ["https://data.delijn.be/stops/106605", "https://data.delijn.be/stops/106607"], ["https://data.delijn.be/stops/408768", "https://data.delijn.be/stops/408774"], ["https://data.delijn.be/stops/106905", "https://data.delijn.be/stops/106906"], ["https://data.delijn.be/stops/305896", "https://data.delijn.be/stops/305898"], ["https://data.delijn.be/stops/402803", "https://data.delijn.be/stops/402812"], ["https://data.delijn.be/stops/108812", "https://data.delijn.be/stops/108814"], ["https://data.delijn.be/stops/208292", "https://data.delijn.be/stops/209292"], ["https://data.delijn.be/stops/105106", "https://data.delijn.be/stops/109505"], ["https://data.delijn.be/stops/200160", "https://data.delijn.be/stops/201160"], ["https://data.delijn.be/stops/404252", "https://data.delijn.be/stops/404315"], ["https://data.delijn.be/stops/503142", "https://data.delijn.be/stops/505408"], ["https://data.delijn.be/stops/505103", "https://data.delijn.be/stops/509359"], ["https://data.delijn.be/stops/206139", "https://data.delijn.be/stops/207138"], ["https://data.delijn.be/stops/105039", "https://data.delijn.be/stops/305833"], ["https://data.delijn.be/stops/502070", "https://data.delijn.be/stops/507061"], ["https://data.delijn.be/stops/207303", "https://data.delijn.be/stops/207304"], ["https://data.delijn.be/stops/307381", "https://data.delijn.be/stops/308278"], ["https://data.delijn.be/stops/105861", "https://data.delijn.be/stops/105863"], ["https://data.delijn.be/stops/102454", "https://data.delijn.be/stops/404047"], ["https://data.delijn.be/stops/308288", "https://data.delijn.be/stops/308290"], ["https://data.delijn.be/stops/501389", "https://data.delijn.be/stops/501464"], ["https://data.delijn.be/stops/303754", "https://data.delijn.be/stops/303784"], ["https://data.delijn.be/stops/503652", "https://data.delijn.be/stops/508653"], ["https://data.delijn.be/stops/305536", "https://data.delijn.be/stops/305537"], ["https://data.delijn.be/stops/109970", "https://data.delijn.be/stops/109971"], ["https://data.delijn.be/stops/103248", "https://data.delijn.be/stops/108230"], ["https://data.delijn.be/stops/205421", "https://data.delijn.be/stops/205765"], ["https://data.delijn.be/stops/306141", "https://data.delijn.be/stops/306644"], ["https://data.delijn.be/stops/300475", "https://data.delijn.be/stops/308081"], ["https://data.delijn.be/stops/308136", "https://data.delijn.be/stops/308178"], ["https://data.delijn.be/stops/206865", "https://data.delijn.be/stops/208746"], ["https://data.delijn.be/stops/504284", "https://data.delijn.be/stops/509038"], ["https://data.delijn.be/stops/501594", "https://data.delijn.be/stops/509017"], ["https://data.delijn.be/stops/505135", "https://data.delijn.be/stops/505978"], ["https://data.delijn.be/stops/102670", "https://data.delijn.be/stops/105435"], ["https://data.delijn.be/stops/104466", "https://data.delijn.be/stops/109777"], ["https://data.delijn.be/stops/300112", "https://data.delijn.be/stops/306851"], ["https://data.delijn.be/stops/204072", "https://data.delijn.be/stops/205097"], ["https://data.delijn.be/stops/202560", "https://data.delijn.be/stops/203560"], ["https://data.delijn.be/stops/504581", "https://data.delijn.be/stops/504586"], ["https://data.delijn.be/stops/103201", "https://data.delijn.be/stops/406788"], ["https://data.delijn.be/stops/301067", "https://data.delijn.be/stops/301071"], ["https://data.delijn.be/stops/208539", "https://data.delijn.be/stops/209038"], ["https://data.delijn.be/stops/504113", "https://data.delijn.be/stops/504698"], ["https://data.delijn.be/stops/107202", "https://data.delijn.be/stops/107605"], ["https://data.delijn.be/stops/302062", "https://data.delijn.be/stops/308812"], ["https://data.delijn.be/stops/403894", "https://data.delijn.be/stops/404970"], ["https://data.delijn.be/stops/304985", "https://data.delijn.be/stops/305017"], ["https://data.delijn.be/stops/405521", "https://data.delijn.be/stops/405671"], ["https://data.delijn.be/stops/104370", "https://data.delijn.be/stops/104375"], ["https://data.delijn.be/stops/301184", "https://data.delijn.be/stops/302929"], ["https://data.delijn.be/stops/109117", "https://data.delijn.be/stops/109121"], ["https://data.delijn.be/stops/107370", "https://data.delijn.be/stops/108115"], ["https://data.delijn.be/stops/401413", "https://data.delijn.be/stops/301132"], ["https://data.delijn.be/stops/506684", "https://data.delijn.be/stops/509499"], ["https://data.delijn.be/stops/108519", "https://data.delijn.be/stops/108521"], ["https://data.delijn.be/stops/402973", "https://data.delijn.be/stops/410059"], ["https://data.delijn.be/stops/407400", "https://data.delijn.be/stops/410253"], ["https://data.delijn.be/stops/301365", "https://data.delijn.be/stops/306684"], ["https://data.delijn.be/stops/102521", "https://data.delijn.be/stops/108628"], ["https://data.delijn.be/stops/202489", "https://data.delijn.be/stops/203489"], ["https://data.delijn.be/stops/506028", "https://data.delijn.be/stops/506491"], ["https://data.delijn.be/stops/501458", "https://data.delijn.be/stops/506458"], ["https://data.delijn.be/stops/505109", "https://data.delijn.be/stops/509521"], ["https://data.delijn.be/stops/107726", "https://data.delijn.be/stops/406796"], ["https://data.delijn.be/stops/503182", "https://data.delijn.be/stops/508181"], ["https://data.delijn.be/stops/206434", "https://data.delijn.be/stops/209689"], ["https://data.delijn.be/stops/108067", "https://data.delijn.be/stops/108458"], ["https://data.delijn.be/stops/304089", "https://data.delijn.be/stops/304107"], ["https://data.delijn.be/stops/206232", "https://data.delijn.be/stops/207232"], ["https://data.delijn.be/stops/104275", "https://data.delijn.be/stops/107290"], ["https://data.delijn.be/stops/302967", "https://data.delijn.be/stops/304186"], ["https://data.delijn.be/stops/305549", "https://data.delijn.be/stops/305561"], ["https://data.delijn.be/stops/104355", "https://data.delijn.be/stops/104721"], ["https://data.delijn.be/stops/500119", "https://data.delijn.be/stops/507270"], ["https://data.delijn.be/stops/106933", "https://data.delijn.be/stops/107302"], ["https://data.delijn.be/stops/502925", "https://data.delijn.be/stops/505332"], ["https://data.delijn.be/stops/304023", "https://data.delijn.be/stops/304144"], ["https://data.delijn.be/stops/301597", "https://data.delijn.be/stops/301602"], ["https://data.delijn.be/stops/308165", "https://data.delijn.be/stops/308167"], ["https://data.delijn.be/stops/503816", "https://data.delijn.be/stops/508436"], ["https://data.delijn.be/stops/410275", "https://data.delijn.be/stops/410277"], ["https://data.delijn.be/stops/206084", "https://data.delijn.be/stops/206989"], ["https://data.delijn.be/stops/504079", "https://data.delijn.be/stops/509079"], ["https://data.delijn.be/stops/108114", "https://data.delijn.be/stops/108116"], ["https://data.delijn.be/stops/103632", "https://data.delijn.be/stops/103633"], ["https://data.delijn.be/stops/200608", "https://data.delijn.be/stops/201608"], ["https://data.delijn.be/stops/106317", "https://data.delijn.be/stops/109138"], ["https://data.delijn.be/stops/305424", "https://data.delijn.be/stops/305519"], ["https://data.delijn.be/stops/302316", "https://data.delijn.be/stops/302317"], ["https://data.delijn.be/stops/205998", "https://data.delijn.be/stops/208378"], ["https://data.delijn.be/stops/504505", "https://data.delijn.be/stops/509505"], ["https://data.delijn.be/stops/402825", "https://data.delijn.be/stops/402827"], ["https://data.delijn.be/stops/400081", "https://data.delijn.be/stops/403298"], ["https://data.delijn.be/stops/304827", "https://data.delijn.be/stops/304828"], ["https://data.delijn.be/stops/103299", "https://data.delijn.be/stops/107015"], ["https://data.delijn.be/stops/400489", "https://data.delijn.be/stops/400972"], ["https://data.delijn.be/stops/401319", "https://data.delijn.be/stops/406656"], ["https://data.delijn.be/stops/300075", "https://data.delijn.be/stops/304645"], ["https://data.delijn.be/stops/206548", "https://data.delijn.be/stops/206549"], ["https://data.delijn.be/stops/509167", "https://data.delijn.be/stops/509192"], ["https://data.delijn.be/stops/102202", "https://data.delijn.be/stops/105938"], ["https://data.delijn.be/stops/400911", "https://data.delijn.be/stops/400961"], ["https://data.delijn.be/stops/103634", "https://data.delijn.be/stops/107166"], ["https://data.delijn.be/stops/404172", "https://data.delijn.be/stops/404197"], ["https://data.delijn.be/stops/206756", "https://data.delijn.be/stops/207658"], ["https://data.delijn.be/stops/106748", "https://data.delijn.be/stops/109775"], ["https://data.delijn.be/stops/301634", "https://data.delijn.be/stops/301638"], ["https://data.delijn.be/stops/108677", "https://data.delijn.be/stops/109951"], ["https://data.delijn.be/stops/102388", "https://data.delijn.be/stops/102648"], ["https://data.delijn.be/stops/509056", "https://data.delijn.be/stops/509191"], ["https://data.delijn.be/stops/206027", "https://data.delijn.be/stops/207205"], ["https://data.delijn.be/stops/204166", "https://data.delijn.be/stops/204580"], ["https://data.delijn.be/stops/405781", "https://data.delijn.be/stops/408481"], ["https://data.delijn.be/stops/301584", "https://data.delijn.be/stops/301590"], ["https://data.delijn.be/stops/106353", "https://data.delijn.be/stops/106355"], ["https://data.delijn.be/stops/401123", "https://data.delijn.be/stops/401129"], ["https://data.delijn.be/stops/405955", "https://data.delijn.be/stops/405956"], ["https://data.delijn.be/stops/503439", "https://data.delijn.be/stops/508429"], ["https://data.delijn.be/stops/206045", "https://data.delijn.be/stops/207382"], ["https://data.delijn.be/stops/200025", "https://data.delijn.be/stops/200551"], ["https://data.delijn.be/stops/104966", "https://data.delijn.be/stops/107464"], ["https://data.delijn.be/stops/104200", "https://data.delijn.be/stops/104720"], ["https://data.delijn.be/stops/204366", "https://data.delijn.be/stops/205216"], ["https://data.delijn.be/stops/407208", "https://data.delijn.be/stops/407209"], ["https://data.delijn.be/stops/109661", "https://data.delijn.be/stops/109662"], ["https://data.delijn.be/stops/300502", "https://data.delijn.be/stops/300510"], ["https://data.delijn.be/stops/402382", "https://data.delijn.be/stops/402392"], ["https://data.delijn.be/stops/102423", "https://data.delijn.be/stops/104736"], ["https://data.delijn.be/stops/400221", "https://data.delijn.be/stops/407193"], ["https://data.delijn.be/stops/106992", "https://data.delijn.be/stops/106995"], ["https://data.delijn.be/stops/408946", "https://data.delijn.be/stops/408948"], ["https://data.delijn.be/stops/203140", "https://data.delijn.be/stops/203176"], ["https://data.delijn.be/stops/407574", "https://data.delijn.be/stops/408928"], ["https://data.delijn.be/stops/207449", "https://data.delijn.be/stops/207450"], ["https://data.delijn.be/stops/403922", "https://data.delijn.be/stops/404432"], ["https://data.delijn.be/stops/202214", "https://data.delijn.be/stops/203281"], ["https://data.delijn.be/stops/403808", "https://data.delijn.be/stops/408745"], ["https://data.delijn.be/stops/107445", "https://data.delijn.be/stops/107475"], ["https://data.delijn.be/stops/206158", "https://data.delijn.be/stops/207506"], ["https://data.delijn.be/stops/102643", "https://data.delijn.be/stops/205447"], ["https://data.delijn.be/stops/500601", "https://data.delijn.be/stops/506457"], ["https://data.delijn.be/stops/208380", "https://data.delijn.be/stops/209379"], ["https://data.delijn.be/stops/108462", "https://data.delijn.be/stops/108463"], ["https://data.delijn.be/stops/106760", "https://data.delijn.be/stops/107469"], ["https://data.delijn.be/stops/200076", "https://data.delijn.be/stops/204912"], ["https://data.delijn.be/stops/203146", "https://data.delijn.be/stops/203188"], ["https://data.delijn.be/stops/301785", "https://data.delijn.be/stops/308430"], ["https://data.delijn.be/stops/300179", "https://data.delijn.be/stops/307130"], ["https://data.delijn.be/stops/101538", "https://data.delijn.be/stops/103473"], ["https://data.delijn.be/stops/201587", "https://data.delijn.be/stops/211850"], ["https://data.delijn.be/stops/406118", "https://data.delijn.be/stops/406119"], ["https://data.delijn.be/stops/409785", "https://data.delijn.be/stops/409787"], ["https://data.delijn.be/stops/300214", "https://data.delijn.be/stops/301377"], ["https://data.delijn.be/stops/402205", "https://data.delijn.be/stops/402499"], ["https://data.delijn.be/stops/206149", "https://data.delijn.be/stops/207907"], ["https://data.delijn.be/stops/505381", "https://data.delijn.be/stops/508059"], ["https://data.delijn.be/stops/503949", "https://data.delijn.be/stops/503950"], ["https://data.delijn.be/stops/204192", "https://data.delijn.be/stops/205204"], ["https://data.delijn.be/stops/505395", "https://data.delijn.be/stops/505424"], ["https://data.delijn.be/stops/206318", "https://data.delijn.be/stops/207268"], ["https://data.delijn.be/stops/503167", "https://data.delijn.be/stops/508168"], ["https://data.delijn.be/stops/403792", "https://data.delijn.be/stops/403811"], ["https://data.delijn.be/stops/108957", "https://data.delijn.be/stops/108958"], ["https://data.delijn.be/stops/400640", "https://data.delijn.be/stops/400916"], ["https://data.delijn.be/stops/208146", "https://data.delijn.be/stops/209146"], ["https://data.delijn.be/stops/302753", "https://data.delijn.be/stops/308545"], ["https://data.delijn.be/stops/107265", "https://data.delijn.be/stops/107268"], ["https://data.delijn.be/stops/206799", "https://data.delijn.be/stops/206801"], ["https://data.delijn.be/stops/402385", "https://data.delijn.be/stops/402452"], ["https://data.delijn.be/stops/204977", "https://data.delijn.be/stops/209246"], ["https://data.delijn.be/stops/503878", "https://data.delijn.be/stops/508878"], ["https://data.delijn.be/stops/301338", "https://data.delijn.be/stops/306118"], ["https://data.delijn.be/stops/202324", "https://data.delijn.be/stops/203304"], ["https://data.delijn.be/stops/101508", "https://data.delijn.be/stops/300112"], ["https://data.delijn.be/stops/503009", "https://data.delijn.be/stops/503014"], ["https://data.delijn.be/stops/208666", "https://data.delijn.be/stops/209124"], ["https://data.delijn.be/stops/201663", "https://data.delijn.be/stops/203321"], ["https://data.delijn.be/stops/103616", "https://data.delijn.be/stops/106306"], ["https://data.delijn.be/stops/406169", "https://data.delijn.be/stops/406193"], ["https://data.delijn.be/stops/302981", "https://data.delijn.be/stops/306295"], ["https://data.delijn.be/stops/502690", "https://data.delijn.be/stops/503822"], ["https://data.delijn.be/stops/107405", "https://data.delijn.be/stops/107406"], ["https://data.delijn.be/stops/107200", "https://data.delijn.be/stops/107727"], ["https://data.delijn.be/stops/303377", "https://data.delijn.be/stops/307135"], ["https://data.delijn.be/stops/401077", "https://data.delijn.be/stops/401167"], ["https://data.delijn.be/stops/302607", "https://data.delijn.be/stops/302608"], ["https://data.delijn.be/stops/101010", "https://data.delijn.be/stops/105860"], ["https://data.delijn.be/stops/303250", "https://data.delijn.be/stops/303251"], ["https://data.delijn.be/stops/204716", "https://data.delijn.be/stops/205716"], ["https://data.delijn.be/stops/102243", "https://data.delijn.be/stops/102244"], ["https://data.delijn.be/stops/206741", "https://data.delijn.be/stops/206980"], ["https://data.delijn.be/stops/504051", "https://data.delijn.be/stops/509931"], ["https://data.delijn.be/stops/504196", "https://data.delijn.be/stops/509166"], ["https://data.delijn.be/stops/502041", "https://data.delijn.be/stops/502059"], ["https://data.delijn.be/stops/403819", "https://data.delijn.be/stops/403825"], ["https://data.delijn.be/stops/302809", "https://data.delijn.be/stops/305546"], ["https://data.delijn.be/stops/108090", "https://data.delijn.be/stops/108135"], ["https://data.delijn.be/stops/505843", "https://data.delijn.be/stops/508850"], ["https://data.delijn.be/stops/300904", "https://data.delijn.be/stops/301115"], ["https://data.delijn.be/stops/200905", "https://data.delijn.be/stops/202269"], ["https://data.delijn.be/stops/203424", "https://data.delijn.be/stops/211033"], ["https://data.delijn.be/stops/207350", "https://data.delijn.be/stops/207729"], ["https://data.delijn.be/stops/402100", "https://data.delijn.be/stops/402228"], ["https://data.delijn.be/stops/204418", "https://data.delijn.be/stops/205386"], ["https://data.delijn.be/stops/102010", "https://data.delijn.be/stops/102200"], ["https://data.delijn.be/stops/504363", "https://data.delijn.be/stops/509363"], ["https://data.delijn.be/stops/504155", "https://data.delijn.be/stops/505110"], ["https://data.delijn.be/stops/206355", "https://data.delijn.be/stops/207688"], ["https://data.delijn.be/stops/106203", "https://data.delijn.be/stops/109193"], ["https://data.delijn.be/stops/101403", "https://data.delijn.be/stops/106527"], ["https://data.delijn.be/stops/407931", "https://data.delijn.be/stops/407936"], ["https://data.delijn.be/stops/508067", "https://data.delijn.be/stops/508831"], ["https://data.delijn.be/stops/504239", "https://data.delijn.be/stops/509241"], ["https://data.delijn.be/stops/208202", "https://data.delijn.be/stops/209779"], ["https://data.delijn.be/stops/204481", "https://data.delijn.be/stops/205251"], ["https://data.delijn.be/stops/102543", "https://data.delijn.be/stops/102546"], ["https://data.delijn.be/stops/505358", "https://data.delijn.be/stops/505359"], ["https://data.delijn.be/stops/200142", "https://data.delijn.be/stops/201067"], ["https://data.delijn.be/stops/503668", "https://data.delijn.be/stops/508663"], ["https://data.delijn.be/stops/102441", "https://data.delijn.be/stops/107946"], ["https://data.delijn.be/stops/305653", "https://data.delijn.be/stops/308131"], ["https://data.delijn.be/stops/500601", "https://data.delijn.be/stops/501456"], ["https://data.delijn.be/stops/508719", "https://data.delijn.be/stops/509967"], ["https://data.delijn.be/stops/401196", "https://data.delijn.be/stops/401219"], ["https://data.delijn.be/stops/108464", "https://data.delijn.be/stops/108466"], ["https://data.delijn.be/stops/501093", "https://data.delijn.be/stops/506093"], ["https://data.delijn.be/stops/209097", "https://data.delijn.be/stops/209099"], ["https://data.delijn.be/stops/106017", "https://data.delijn.be/stops/106756"], ["https://data.delijn.be/stops/402298", "https://data.delijn.be/stops/402362"], ["https://data.delijn.be/stops/405920", "https://data.delijn.be/stops/405987"], ["https://data.delijn.be/stops/300744", "https://data.delijn.be/stops/303224"], ["https://data.delijn.be/stops/208476", "https://data.delijn.be/stops/209475"], ["https://data.delijn.be/stops/106877", "https://data.delijn.be/stops/106878"], ["https://data.delijn.be/stops/308161", "https://data.delijn.be/stops/308162"], ["https://data.delijn.be/stops/509771", "https://data.delijn.be/stops/509790"], ["https://data.delijn.be/stops/302307", "https://data.delijn.be/stops/302317"], ["https://data.delijn.be/stops/306846", "https://data.delijn.be/stops/306850"], ["https://data.delijn.be/stops/204400", "https://data.delijn.be/stops/204411"], ["https://data.delijn.be/stops/101036", "https://data.delijn.be/stops/104506"], ["https://data.delijn.be/stops/303373", "https://data.delijn.be/stops/303384"], ["https://data.delijn.be/stops/101222", "https://data.delijn.be/stops/107824"], ["https://data.delijn.be/stops/207701", "https://data.delijn.be/stops/207740"], ["https://data.delijn.be/stops/404028", "https://data.delijn.be/stops/308748"], ["https://data.delijn.be/stops/404494", "https://data.delijn.be/stops/404537"], ["https://data.delijn.be/stops/503883", "https://data.delijn.be/stops/505104"], ["https://data.delijn.be/stops/402082", "https://data.delijn.be/stops/402117"], ["https://data.delijn.be/stops/303417", "https://data.delijn.be/stops/303420"], ["https://data.delijn.be/stops/508072", "https://data.delijn.be/stops/508074"], ["https://data.delijn.be/stops/408605", "https://data.delijn.be/stops/408772"], ["https://data.delijn.be/stops/202899", "https://data.delijn.be/stops/210125"], ["https://data.delijn.be/stops/206988", "https://data.delijn.be/stops/207987"], ["https://data.delijn.be/stops/501481", "https://data.delijn.be/stops/505034"], ["https://data.delijn.be/stops/300999", "https://data.delijn.be/stops/306052"], ["https://data.delijn.be/stops/402659", "https://data.delijn.be/stops/402717"], ["https://data.delijn.be/stops/401466", "https://data.delijn.be/stops/401504"], ["https://data.delijn.be/stops/108240", "https://data.delijn.be/stops/108410"], ["https://data.delijn.be/stops/503750", "https://data.delijn.be/stops/508055"], ["https://data.delijn.be/stops/200677", "https://data.delijn.be/stops/210082"], ["https://data.delijn.be/stops/201664", "https://data.delijn.be/stops/209642"], ["https://data.delijn.be/stops/505696", "https://data.delijn.be/stops/505780"], ["https://data.delijn.be/stops/203022", "https://data.delijn.be/stops/210853"], ["https://data.delijn.be/stops/509032", "https://data.delijn.be/stops/509704"], ["https://data.delijn.be/stops/400964", "https://data.delijn.be/stops/401248"], ["https://data.delijn.be/stops/301262", "https://data.delijn.be/stops/307409"], ["https://data.delijn.be/stops/102623", "https://data.delijn.be/stops/102624"], ["https://data.delijn.be/stops/202015", "https://data.delijn.be/stops/202016"], ["https://data.delijn.be/stops/204730", "https://data.delijn.be/stops/204758"], ["https://data.delijn.be/stops/202328", "https://data.delijn.be/stops/204559"], ["https://data.delijn.be/stops/209514", "https://data.delijn.be/stops/209684"], ["https://data.delijn.be/stops/201768", "https://data.delijn.be/stops/201815"], ["https://data.delijn.be/stops/206135", "https://data.delijn.be/stops/207135"], ["https://data.delijn.be/stops/204541", "https://data.delijn.be/stops/204542"], ["https://data.delijn.be/stops/400477", "https://data.delijn.be/stops/407647"], ["https://data.delijn.be/stops/306604", "https://data.delijn.be/stops/306607"], ["https://data.delijn.be/stops/108926", "https://data.delijn.be/stops/108928"], ["https://data.delijn.be/stops/407925", "https://data.delijn.be/stops/408230"], ["https://data.delijn.be/stops/207291", "https://data.delijn.be/stops/207816"], ["https://data.delijn.be/stops/204175", "https://data.delijn.be/stops/205175"], ["https://data.delijn.be/stops/502229", "https://data.delijn.be/stops/505142"], ["https://data.delijn.be/stops/202691", "https://data.delijn.be/stops/203679"], ["https://data.delijn.be/stops/201726", "https://data.delijn.be/stops/203374"], ["https://data.delijn.be/stops/300384", "https://data.delijn.be/stops/301946"], ["https://data.delijn.be/stops/501737", "https://data.delijn.be/stops/506508"], ["https://data.delijn.be/stops/103300", "https://data.delijn.be/stops/107850"], ["https://data.delijn.be/stops/503812", "https://data.delijn.be/stops/508812"], ["https://data.delijn.be/stops/106131", "https://data.delijn.be/stops/106132"], ["https://data.delijn.be/stops/107583", "https://data.delijn.be/stops/107584"], ["https://data.delijn.be/stops/104013", "https://data.delijn.be/stops/104017"], ["https://data.delijn.be/stops/405954", "https://data.delijn.be/stops/405956"], ["https://data.delijn.be/stops/505639", "https://data.delijn.be/stops/508896"], ["https://data.delijn.be/stops/409386", "https://data.delijn.be/stops/410167"], ["https://data.delijn.be/stops/204214", "https://data.delijn.be/stops/205213"], ["https://data.delijn.be/stops/208458", "https://data.delijn.be/stops/209423"], ["https://data.delijn.be/stops/504045", "https://data.delijn.be/stops/505368"], ["https://data.delijn.be/stops/200133", "https://data.delijn.be/stops/200491"], ["https://data.delijn.be/stops/204299", "https://data.delijn.be/stops/204539"], ["https://data.delijn.be/stops/102075", "https://data.delijn.be/stops/102816"], ["https://data.delijn.be/stops/105672", "https://data.delijn.be/stops/305787"], ["https://data.delijn.be/stops/501749", "https://data.delijn.be/stops/501751"], ["https://data.delijn.be/stops/102752", "https://data.delijn.be/stops/104636"], ["https://data.delijn.be/stops/400794", "https://data.delijn.be/stops/406677"], ["https://data.delijn.be/stops/105891", "https://data.delijn.be/stops/105892"], ["https://data.delijn.be/stops/201725", "https://data.delijn.be/stops/202376"], ["https://data.delijn.be/stops/301814", "https://data.delijn.be/stops/306561"], ["https://data.delijn.be/stops/303012", "https://data.delijn.be/stops/303096"], ["https://data.delijn.be/stops/403492", "https://data.delijn.be/stops/403493"], ["https://data.delijn.be/stops/201895", "https://data.delijn.be/stops/202907"], ["https://data.delijn.be/stops/405339", "https://data.delijn.be/stops/405348"], ["https://data.delijn.be/stops/503076", "https://data.delijn.be/stops/508076"], ["https://data.delijn.be/stops/105613", "https://data.delijn.be/stops/105659"], ["https://data.delijn.be/stops/403722", "https://data.delijn.be/stops/403723"], ["https://data.delijn.be/stops/404652", "https://data.delijn.be/stops/404654"], ["https://data.delijn.be/stops/503848", "https://data.delijn.be/stops/504378"], ["https://data.delijn.be/stops/202506", "https://data.delijn.be/stops/203243"], ["https://data.delijn.be/stops/404700", "https://data.delijn.be/stops/404791"], ["https://data.delijn.be/stops/206140", "https://data.delijn.be/stops/207140"], ["https://data.delijn.be/stops/203493", "https://data.delijn.be/stops/203494"], ["https://data.delijn.be/stops/202653", "https://data.delijn.be/stops/203652"], ["https://data.delijn.be/stops/108189", "https://data.delijn.be/stops/108207"], ["https://data.delijn.be/stops/304987", "https://data.delijn.be/stops/308022"], ["https://data.delijn.be/stops/408386", "https://data.delijn.be/stops/408387"], ["https://data.delijn.be/stops/105495", "https://data.delijn.be/stops/105785"], ["https://data.delijn.be/stops/305017", "https://data.delijn.be/stops/308028"], ["https://data.delijn.be/stops/106942", "https://data.delijn.be/stops/109532"], ["https://data.delijn.be/stops/306935", "https://data.delijn.be/stops/306937"], ["https://data.delijn.be/stops/102651", "https://data.delijn.be/stops/104446"], ["https://data.delijn.be/stops/501132", "https://data.delijn.be/stops/501137"], ["https://data.delijn.be/stops/208181", "https://data.delijn.be/stops/208182"], ["https://data.delijn.be/stops/406244", "https://data.delijn.be/stops/406252"], ["https://data.delijn.be/stops/408257", "https://data.delijn.be/stops/408329"], ["https://data.delijn.be/stops/108434", "https://data.delijn.be/stops/109576"], ["https://data.delijn.be/stops/105043", "https://data.delijn.be/stops/105054"], ["https://data.delijn.be/stops/106099", "https://data.delijn.be/stops/106114"], ["https://data.delijn.be/stops/206942", "https://data.delijn.be/stops/207942"], ["https://data.delijn.be/stops/502286", "https://data.delijn.be/stops/505729"], ["https://data.delijn.be/stops/102686", "https://data.delijn.be/stops/104362"], ["https://data.delijn.be/stops/204069", "https://data.delijn.be/stops/205187"], ["https://data.delijn.be/stops/504017", "https://data.delijn.be/stops/504507"], ["https://data.delijn.be/stops/306401", "https://data.delijn.be/stops/306402"], ["https://data.delijn.be/stops/105936", "https://data.delijn.be/stops/105937"], ["https://data.delijn.be/stops/205020", "https://data.delijn.be/stops/205798"], ["https://data.delijn.be/stops/406240", "https://data.delijn.be/stops/406257"], ["https://data.delijn.be/stops/308112", "https://data.delijn.be/stops/308115"], ["https://data.delijn.be/stops/207082", "https://data.delijn.be/stops/207083"], ["https://data.delijn.be/stops/504236", "https://data.delijn.be/stops/504237"], ["https://data.delijn.be/stops/301712", "https://data.delijn.be/stops/301740"], ["https://data.delijn.be/stops/502240", "https://data.delijn.be/stops/502241"], ["https://data.delijn.be/stops/305502", "https://data.delijn.be/stops/307827"], ["https://data.delijn.be/stops/505839", "https://data.delijn.be/stops/505840"], ["https://data.delijn.be/stops/302311", "https://data.delijn.be/stops/302329"], ["https://data.delijn.be/stops/505097", "https://data.delijn.be/stops/505582"], ["https://data.delijn.be/stops/105113", "https://data.delijn.be/stops/105114"], ["https://data.delijn.be/stops/102212", "https://data.delijn.be/stops/103314"], ["https://data.delijn.be/stops/400594", "https://data.delijn.be/stops/400629"], ["https://data.delijn.be/stops/307410", "https://data.delijn.be/stops/307412"], ["https://data.delijn.be/stops/205418", "https://data.delijn.be/stops/205763"], ["https://data.delijn.be/stops/305732", "https://data.delijn.be/stops/306330"], ["https://data.delijn.be/stops/410006", "https://data.delijn.be/stops/410009"], ["https://data.delijn.be/stops/200776", "https://data.delijn.be/stops/201728"], ["https://data.delijn.be/stops/105996", "https://data.delijn.be/stops/105998"], ["https://data.delijn.be/stops/203013", "https://data.delijn.be/stops/203015"], ["https://data.delijn.be/stops/204566", "https://data.delijn.be/stops/205566"], ["https://data.delijn.be/stops/204589", "https://data.delijn.be/stops/211067"], ["https://data.delijn.be/stops/301987", "https://data.delijn.be/stops/301997"], ["https://data.delijn.be/stops/403597", "https://data.delijn.be/stops/403603"], ["https://data.delijn.be/stops/400107", "https://data.delijn.be/stops/409155"], ["https://data.delijn.be/stops/301603", "https://data.delijn.be/stops/306301"], ["https://data.delijn.be/stops/302336", "https://data.delijn.be/stops/306181"], ["https://data.delijn.be/stops/208404", "https://data.delijn.be/stops/211087"], ["https://data.delijn.be/stops/106398", "https://data.delijn.be/stops/106399"], ["https://data.delijn.be/stops/408738", "https://data.delijn.be/stops/408739"], ["https://data.delijn.be/stops/505762", "https://data.delijn.be/stops/506093"], ["https://data.delijn.be/stops/503645", "https://data.delijn.be/stops/503718"], ["https://data.delijn.be/stops/400865", "https://data.delijn.be/stops/400867"], ["https://data.delijn.be/stops/304476", "https://data.delijn.be/stops/304482"], ["https://data.delijn.be/stops/303471", "https://data.delijn.be/stops/303485"], ["https://data.delijn.be/stops/101006", "https://data.delijn.be/stops/109773"], ["https://data.delijn.be/stops/104469", "https://data.delijn.be/stops/107531"], ["https://data.delijn.be/stops/301432", "https://data.delijn.be/stops/307322"], ["https://data.delijn.be/stops/300856", "https://data.delijn.be/stops/308676"], ["https://data.delijn.be/stops/101311", "https://data.delijn.be/stops/106059"], ["https://data.delijn.be/stops/406044", "https://data.delijn.be/stops/406045"], ["https://data.delijn.be/stops/502704", "https://data.delijn.be/stops/507425"], ["https://data.delijn.be/stops/505772", "https://data.delijn.be/stops/507365"], ["https://data.delijn.be/stops/408617", "https://data.delijn.be/stops/408622"], ["https://data.delijn.be/stops/405161", "https://data.delijn.be/stops/405174"], ["https://data.delijn.be/stops/304501", "https://data.delijn.be/stops/304512"], ["https://data.delijn.be/stops/109308", "https://data.delijn.be/stops/109309"], ["https://data.delijn.be/stops/101593", "https://data.delijn.be/stops/107400"], ["https://data.delijn.be/stops/201855", "https://data.delijn.be/stops/203024"], ["https://data.delijn.be/stops/106651", "https://data.delijn.be/stops/109753"], ["https://data.delijn.be/stops/400781", "https://data.delijn.be/stops/404262"], ["https://data.delijn.be/stops/109798", "https://data.delijn.be/stops/305784"], ["https://data.delijn.be/stops/302784", "https://data.delijn.be/stops/302785"], ["https://data.delijn.be/stops/406299", "https://data.delijn.be/stops/409079"], ["https://data.delijn.be/stops/403187", "https://data.delijn.be/stops/403444"], ["https://data.delijn.be/stops/106793", "https://data.delijn.be/stops/106795"], ["https://data.delijn.be/stops/503063", "https://data.delijn.be/stops/508063"], ["https://data.delijn.be/stops/105971", "https://data.delijn.be/stops/105973"], ["https://data.delijn.be/stops/501033", "https://data.delijn.be/stops/501043"], ["https://data.delijn.be/stops/107654", "https://data.delijn.be/stops/107726"], ["https://data.delijn.be/stops/405229", "https://data.delijn.be/stops/405287"], ["https://data.delijn.be/stops/306120", "https://data.delijn.be/stops/306121"], ["https://data.delijn.be/stops/101922", "https://data.delijn.be/stops/109895"], ["https://data.delijn.be/stops/408357", "https://data.delijn.be/stops/408383"], ["https://data.delijn.be/stops/101995", "https://data.delijn.be/stops/104470"], ["https://data.delijn.be/stops/102580", "https://data.delijn.be/stops/108788"], ["https://data.delijn.be/stops/506248", "https://data.delijn.be/stops/506634"], ["https://data.delijn.be/stops/101526", "https://data.delijn.be/stops/101951"], ["https://data.delijn.be/stops/500007", "https://data.delijn.be/stops/504850"], ["https://data.delijn.be/stops/107596", "https://data.delijn.be/stops/107662"], ["https://data.delijn.be/stops/300994", "https://data.delijn.be/stops/308356"], ["https://data.delijn.be/stops/108360", "https://data.delijn.be/stops/109010"], ["https://data.delijn.be/stops/307811", "https://data.delijn.be/stops/307812"], ["https://data.delijn.be/stops/402190", "https://data.delijn.be/stops/402191"], ["https://data.delijn.be/stops/505356", "https://data.delijn.be/stops/507704"], ["https://data.delijn.be/stops/105466", "https://data.delijn.be/stops/105467"], ["https://data.delijn.be/stops/104762", "https://data.delijn.be/stops/108896"], ["https://data.delijn.be/stops/200007", "https://data.delijn.be/stops/200416"], ["https://data.delijn.be/stops/400877", "https://data.delijn.be/stops/403058"], ["https://data.delijn.be/stops/501491", "https://data.delijn.be/stops/506491"], ["https://data.delijn.be/stops/400400", "https://data.delijn.be/stops/400639"], ["https://data.delijn.be/stops/108735", "https://data.delijn.be/stops/108775"], ["https://data.delijn.be/stops/300919", "https://data.delijn.be/stops/300941"], ["https://data.delijn.be/stops/507948", "https://data.delijn.be/stops/507955"], ["https://data.delijn.be/stops/300872", "https://data.delijn.be/stops/302193"], ["https://data.delijn.be/stops/501055", "https://data.delijn.be/stops/501673"], ["https://data.delijn.be/stops/301754", "https://data.delijn.be/stops/304572"], ["https://data.delijn.be/stops/106150", "https://data.delijn.be/stops/106440"], ["https://data.delijn.be/stops/408078", "https://data.delijn.be/stops/305688"], ["https://data.delijn.be/stops/302176", "https://data.delijn.be/stops/302209"], ["https://data.delijn.be/stops/304466", "https://data.delijn.be/stops/304525"], ["https://data.delijn.be/stops/505213", "https://data.delijn.be/stops/509599"], ["https://data.delijn.be/stops/400576", "https://data.delijn.be/stops/410034"], ["https://data.delijn.be/stops/505712", "https://data.delijn.be/stops/506055"], ["https://data.delijn.be/stops/101427", "https://data.delijn.be/stops/107299"], ["https://data.delijn.be/stops/202965", "https://data.delijn.be/stops/202966"], ["https://data.delijn.be/stops/105593", "https://data.delijn.be/stops/105597"], ["https://data.delijn.be/stops/405478", "https://data.delijn.be/stops/409312"], ["https://data.delijn.be/stops/503060", "https://data.delijn.be/stops/508060"], ["https://data.delijn.be/stops/510028", "https://data.delijn.be/stops/510029"], ["https://data.delijn.be/stops/501438", "https://data.delijn.be/stops/501439"], ["https://data.delijn.be/stops/109816", "https://data.delijn.be/stops/109817"], ["https://data.delijn.be/stops/102880", "https://data.delijn.be/stops/104680"], ["https://data.delijn.be/stops/103723", "https://data.delijn.be/stops/108379"], ["https://data.delijn.be/stops/200093", "https://data.delijn.be/stops/201481"], ["https://data.delijn.be/stops/501655", "https://data.delijn.be/stops/506157"], ["https://data.delijn.be/stops/402120", "https://data.delijn.be/stops/402256"], ["https://data.delijn.be/stops/204233", "https://data.delijn.be/stops/205206"], ["https://data.delijn.be/stops/302151", "https://data.delijn.be/stops/303868"], ["https://data.delijn.be/stops/504992", "https://data.delijn.be/stops/504995"], ["https://data.delijn.be/stops/102697", "https://data.delijn.be/stops/102698"], ["https://data.delijn.be/stops/202424", "https://data.delijn.be/stops/203424"], ["https://data.delijn.be/stops/203852", "https://data.delijn.be/stops/203853"], ["https://data.delijn.be/stops/501488", "https://data.delijn.be/stops/506043"], ["https://data.delijn.be/stops/300203", "https://data.delijn.be/stops/300206"], ["https://data.delijn.be/stops/305497", "https://data.delijn.be/stops/307821"], ["https://data.delijn.be/stops/504845", "https://data.delijn.be/stops/505443"], ["https://data.delijn.be/stops/406074", "https://data.delijn.be/stops/406075"], ["https://data.delijn.be/stops/408230", "https://data.delijn.be/stops/408421"], ["https://data.delijn.be/stops/209472", "https://data.delijn.be/stops/209498"], ["https://data.delijn.be/stops/406220", "https://data.delijn.be/stops/406221"], ["https://data.delijn.be/stops/301728", "https://data.delijn.be/stops/301736"], ["https://data.delijn.be/stops/106424", "https://data.delijn.be/stops/106556"], ["https://data.delijn.be/stops/407483", "https://data.delijn.be/stops/407540"], ["https://data.delijn.be/stops/300778", "https://data.delijn.be/stops/304569"], ["https://data.delijn.be/stops/104310", "https://data.delijn.be/stops/104321"], ["https://data.delijn.be/stops/502361", "https://data.delijn.be/stops/507332"], ["https://data.delijn.be/stops/106235", "https://data.delijn.be/stops/106251"], ["https://data.delijn.be/stops/201945", "https://data.delijn.be/stops/202456"], ["https://data.delijn.be/stops/400499", "https://data.delijn.be/stops/407401"], ["https://data.delijn.be/stops/400128", "https://data.delijn.be/stops/403310"], ["https://data.delijn.be/stops/306844", "https://data.delijn.be/stops/307947"], ["https://data.delijn.be/stops/400588", "https://data.delijn.be/stops/400611"], ["https://data.delijn.be/stops/102203", "https://data.delijn.be/stops/105638"], ["https://data.delijn.be/stops/405271", "https://data.delijn.be/stops/405273"], ["https://data.delijn.be/stops/104558", "https://data.delijn.be/stops/104560"], ["https://data.delijn.be/stops/308605", "https://data.delijn.be/stops/308631"], ["https://data.delijn.be/stops/407680", "https://data.delijn.be/stops/408603"], ["https://data.delijn.be/stops/200259", "https://data.delijn.be/stops/201216"], ["https://data.delijn.be/stops/104010", "https://data.delijn.be/stops/104942"], ["https://data.delijn.be/stops/106133", "https://data.delijn.be/stops/109624"], ["https://data.delijn.be/stops/404952", "https://data.delijn.be/stops/404953"], ["https://data.delijn.be/stops/506428", "https://data.delijn.be/stops/506733"], ["https://data.delijn.be/stops/406880", "https://data.delijn.be/stops/409769"], ["https://data.delijn.be/stops/406739", "https://data.delijn.be/stops/407407"], ["https://data.delijn.be/stops/504333", "https://data.delijn.be/stops/509332"], ["https://data.delijn.be/stops/101302", "https://data.delijn.be/stops/106478"], ["https://data.delijn.be/stops/304439", "https://data.delijn.be/stops/307089"], ["https://data.delijn.be/stops/101908", "https://data.delijn.be/stops/101909"], ["https://data.delijn.be/stops/308511", "https://data.delijn.be/stops/308691"], ["https://data.delijn.be/stops/301474", "https://data.delijn.be/stops/308074"], ["https://data.delijn.be/stops/407033", "https://data.delijn.be/stops/407037"], ["https://data.delijn.be/stops/502101", "https://data.delijn.be/stops/502120"], ["https://data.delijn.be/stops/308468", "https://data.delijn.be/stops/308469"], ["https://data.delijn.be/stops/401838", "https://data.delijn.be/stops/406047"], ["https://data.delijn.be/stops/103144", "https://data.delijn.be/stops/109520"], ["https://data.delijn.be/stops/200606", "https://data.delijn.be/stops/201603"], ["https://data.delijn.be/stops/408886", "https://data.delijn.be/stops/408887"], ["https://data.delijn.be/stops/305205", "https://data.delijn.be/stops/307101"], ["https://data.delijn.be/stops/505143", "https://data.delijn.be/stops/505407"], ["https://data.delijn.be/stops/504589", "https://data.delijn.be/stops/505995"], ["https://data.delijn.be/stops/400688", "https://data.delijn.be/stops/404363"], ["https://data.delijn.be/stops/303362", "https://data.delijn.be/stops/303378"], ["https://data.delijn.be/stops/208629", "https://data.delijn.be/stops/209630"], ["https://data.delijn.be/stops/200477", "https://data.delijn.be/stops/201053"], ["https://data.delijn.be/stops/101412", "https://data.delijn.be/stops/101432"], ["https://data.delijn.be/stops/504056", "https://data.delijn.be/stops/509149"], ["https://data.delijn.be/stops/501016", "https://data.delijn.be/stops/505781"], ["https://data.delijn.be/stops/206106", "https://data.delijn.be/stops/206108"], ["https://data.delijn.be/stops/400800", "https://data.delijn.be/stops/409539"], ["https://data.delijn.be/stops/400825", "https://data.delijn.be/stops/400833"], ["https://data.delijn.be/stops/102466", "https://data.delijn.be/stops/102467"], ["https://data.delijn.be/stops/200367", "https://data.delijn.be/stops/201367"], ["https://data.delijn.be/stops/300547", "https://data.delijn.be/stops/300628"], ["https://data.delijn.be/stops/304412", "https://data.delijn.be/stops/307360"], ["https://data.delijn.be/stops/304272", "https://data.delijn.be/stops/304280"], ["https://data.delijn.be/stops/200848", "https://data.delijn.be/stops/211068"], ["https://data.delijn.be/stops/405717", "https://data.delijn.be/stops/410140"], ["https://data.delijn.be/stops/104511", "https://data.delijn.be/stops/104512"], ["https://data.delijn.be/stops/503407", "https://data.delijn.be/stops/508351"], ["https://data.delijn.be/stops/203942", "https://data.delijn.be/stops/211054"], ["https://data.delijn.be/stops/305191", "https://data.delijn.be/stops/305192"], ["https://data.delijn.be/stops/304369", "https://data.delijn.be/stops/304370"], ["https://data.delijn.be/stops/506780", "https://data.delijn.be/stops/506782"], ["https://data.delijn.be/stops/106725", "https://data.delijn.be/stops/106727"], ["https://data.delijn.be/stops/407195", "https://data.delijn.be/stops/407372"], ["https://data.delijn.be/stops/502565", "https://data.delijn.be/stops/507540"], ["https://data.delijn.be/stops/503621", "https://data.delijn.be/stops/503658"], ["https://data.delijn.be/stops/408510", "https://data.delijn.be/stops/408775"], ["https://data.delijn.be/stops/208742", "https://data.delijn.be/stops/505275"], ["https://data.delijn.be/stops/503638", "https://data.delijn.be/stops/505935"], ["https://data.delijn.be/stops/404845", "https://data.delijn.be/stops/407766"], ["https://data.delijn.be/stops/400759", "https://data.delijn.be/stops/409583"], ["https://data.delijn.be/stops/102822", "https://data.delijn.be/stops/103850"], ["https://data.delijn.be/stops/307860", "https://data.delijn.be/stops/307863"], ["https://data.delijn.be/stops/106808", "https://data.delijn.be/stops/106811"], ["https://data.delijn.be/stops/205698", "https://data.delijn.be/stops/214009"], ["https://data.delijn.be/stops/503505", "https://data.delijn.be/stops/509824"], ["https://data.delijn.be/stops/105677", "https://data.delijn.be/stops/106064"], ["https://data.delijn.be/stops/205516", "https://data.delijn.be/stops/205517"], ["https://data.delijn.be/stops/402191", "https://data.delijn.be/stops/402263"], ["https://data.delijn.be/stops/106247", "https://data.delijn.be/stops/106249"], ["https://data.delijn.be/stops/501374", "https://data.delijn.be/stops/506206"], ["https://data.delijn.be/stops/101850", "https://data.delijn.be/stops/102842"], ["https://data.delijn.be/stops/304059", "https://data.delijn.be/stops/304084"], ["https://data.delijn.be/stops/402451", "https://data.delijn.be/stops/406884"], ["https://data.delijn.be/stops/101227", "https://data.delijn.be/stops/101548"], ["https://data.delijn.be/stops/404898", "https://data.delijn.be/stops/404899"], ["https://data.delijn.be/stops/403512", "https://data.delijn.be/stops/410220"], ["https://data.delijn.be/stops/303872", "https://data.delijn.be/stops/304064"], ["https://data.delijn.be/stops/300281", "https://data.delijn.be/stops/300292"], ["https://data.delijn.be/stops/407188", "https://data.delijn.be/stops/407411"], ["https://data.delijn.be/stops/407398", "https://data.delijn.be/stops/407399"], ["https://data.delijn.be/stops/504014", "https://data.delijn.be/stops/504720"], ["https://data.delijn.be/stops/206624", "https://data.delijn.be/stops/206625"], ["https://data.delijn.be/stops/206153", "https://data.delijn.be/stops/207153"], ["https://data.delijn.be/stops/501074", "https://data.delijn.be/stops/506066"], ["https://data.delijn.be/stops/206150", "https://data.delijn.be/stops/207907"], ["https://data.delijn.be/stops/209216", "https://data.delijn.be/stops/209238"], ["https://data.delijn.be/stops/307625", "https://data.delijn.be/stops/308266"], ["https://data.delijn.be/stops/505828", "https://data.delijn.be/stops/509455"], ["https://data.delijn.be/stops/403360", "https://data.delijn.be/stops/406854"], ["https://data.delijn.be/stops/504592", "https://data.delijn.be/stops/504595"], ["https://data.delijn.be/stops/201705", "https://data.delijn.be/stops/202382"], ["https://data.delijn.be/stops/204156", "https://data.delijn.be/stops/205149"], ["https://data.delijn.be/stops/304446", "https://data.delijn.be/stops/304449"], ["https://data.delijn.be/stops/302522", "https://data.delijn.be/stops/308887"], ["https://data.delijn.be/stops/405994", "https://data.delijn.be/stops/405997"], ["https://data.delijn.be/stops/501149", "https://data.delijn.be/stops/505515"], ["https://data.delijn.be/stops/101915", "https://data.delijn.be/stops/108835"], ["https://data.delijn.be/stops/408165", "https://data.delijn.be/stops/409315"], ["https://data.delijn.be/stops/305112", "https://data.delijn.be/stops/305131"], ["https://data.delijn.be/stops/208355", "https://data.delijn.be/stops/208356"], ["https://data.delijn.be/stops/301406", "https://data.delijn.be/stops/304697"], ["https://data.delijn.be/stops/300638", "https://data.delijn.be/stops/300659"], ["https://data.delijn.be/stops/202853", "https://data.delijn.be/stops/210098"], ["https://data.delijn.be/stops/304297", "https://data.delijn.be/stops/304301"], ["https://data.delijn.be/stops/501083", "https://data.delijn.be/stops/506083"], ["https://data.delijn.be/stops/202685", "https://data.delijn.be/stops/203047"], ["https://data.delijn.be/stops/406674", "https://data.delijn.be/stops/406687"], ["https://data.delijn.be/stops/104952", "https://data.delijn.be/stops/109588"], ["https://data.delijn.be/stops/105581", "https://data.delijn.be/stops/105672"], ["https://data.delijn.be/stops/302825", "https://data.delijn.be/stops/302828"], ["https://data.delijn.be/stops/503689", "https://data.delijn.be/stops/509453"], ["https://data.delijn.be/stops/400254", "https://data.delijn.be/stops/404269"], ["https://data.delijn.be/stops/502310", "https://data.delijn.be/stops/502603"], ["https://data.delijn.be/stops/405519", "https://data.delijn.be/stops/407291"], ["https://data.delijn.be/stops/400508", "https://data.delijn.be/stops/400509"], ["https://data.delijn.be/stops/306899", "https://data.delijn.be/stops/306900"], ["https://data.delijn.be/stops/106032", "https://data.delijn.be/stops/106033"], ["https://data.delijn.be/stops/200103", "https://data.delijn.be/stops/200363"], ["https://data.delijn.be/stops/300360", "https://data.delijn.be/stops/303248"], ["https://data.delijn.be/stops/401208", "https://data.delijn.be/stops/401226"], ["https://data.delijn.be/stops/406196", "https://data.delijn.be/stops/406744"], ["https://data.delijn.be/stops/101666", "https://data.delijn.be/stops/106498"], ["https://data.delijn.be/stops/201273", "https://data.delijn.be/stops/202002"], ["https://data.delijn.be/stops/308138", "https://data.delijn.be/stops/308141"], ["https://data.delijn.be/stops/208442", "https://data.delijn.be/stops/208676"], ["https://data.delijn.be/stops/106858", "https://data.delijn.be/stops/106859"], ["https://data.delijn.be/stops/503122", "https://data.delijn.be/stops/508122"], ["https://data.delijn.be/stops/502465", "https://data.delijn.be/stops/507067"], ["https://data.delijn.be/stops/300001", "https://data.delijn.be/stops/301779"], ["https://data.delijn.be/stops/102506", "https://data.delijn.be/stops/400020"], ["https://data.delijn.be/stops/208313", "https://data.delijn.be/stops/209313"], ["https://data.delijn.be/stops/507943", "https://data.delijn.be/stops/507956"], ["https://data.delijn.be/stops/305496", "https://data.delijn.be/stops/306560"], ["https://data.delijn.be/stops/508637", "https://data.delijn.be/stops/508639"], ["https://data.delijn.be/stops/203558", "https://data.delijn.be/stops/203560"], ["https://data.delijn.be/stops/206117", "https://data.delijn.be/stops/207120"], ["https://data.delijn.be/stops/103001", "https://data.delijn.be/stops/105173"], ["https://data.delijn.be/stops/503790", "https://data.delijn.be/stops/508789"], ["https://data.delijn.be/stops/503653", "https://data.delijn.be/stops/508116"], ["https://data.delijn.be/stops/302932", "https://data.delijn.be/stops/303145"], ["https://data.delijn.be/stops/203043", "https://data.delijn.be/stops/203246"], ["https://data.delijn.be/stops/101473", "https://data.delijn.be/stops/109271"], ["https://data.delijn.be/stops/503815", "https://data.delijn.be/stops/509820"], ["https://data.delijn.be/stops/208291", "https://data.delijn.be/stops/208292"], ["https://data.delijn.be/stops/204791", "https://data.delijn.be/stops/205132"], ["https://data.delijn.be/stops/102607", "https://data.delijn.be/stops/102608"], ["https://data.delijn.be/stops/204782", "https://data.delijn.be/stops/205791"], ["https://data.delijn.be/stops/201636", "https://data.delijn.be/stops/210055"], ["https://data.delijn.be/stops/404150", "https://data.delijn.be/stops/404224"], ["https://data.delijn.be/stops/206226", "https://data.delijn.be/stops/207226"], ["https://data.delijn.be/stops/204979", "https://data.delijn.be/stops/208168"], ["https://data.delijn.be/stops/307225", "https://data.delijn.be/stops/307264"], ["https://data.delijn.be/stops/200296", "https://data.delijn.be/stops/210048"], ["https://data.delijn.be/stops/200062", "https://data.delijn.be/stops/200267"], ["https://data.delijn.be/stops/107323", "https://data.delijn.be/stops/108821"], ["https://data.delijn.be/stops/108150", "https://data.delijn.be/stops/108153"], ["https://data.delijn.be/stops/102734", "https://data.delijn.be/stops/107414"], ["https://data.delijn.be/stops/103961", "https://data.delijn.be/stops/107341"], ["https://data.delijn.be/stops/201870", "https://data.delijn.be/stops/202662"], ["https://data.delijn.be/stops/201173", "https://data.delijn.be/stops/201515"], ["https://data.delijn.be/stops/305628", "https://data.delijn.be/stops/305629"], ["https://data.delijn.be/stops/207693", "https://data.delijn.be/stops/207956"], ["https://data.delijn.be/stops/206787", "https://data.delijn.be/stops/208539"], ["https://data.delijn.be/stops/503187", "https://data.delijn.be/stops/503214"], ["https://data.delijn.be/stops/405911", "https://data.delijn.be/stops/409701"], ["https://data.delijn.be/stops/102812", "https://data.delijn.be/stops/104785"], ["https://data.delijn.be/stops/503467", "https://data.delijn.be/stops/508467"], ["https://data.delijn.be/stops/507052", "https://data.delijn.be/stops/507059"], ["https://data.delijn.be/stops/202945", "https://data.delijn.be/stops/216009"], ["https://data.delijn.be/stops/409359", "https://data.delijn.be/stops/409391"], ["https://data.delijn.be/stops/104038", "https://data.delijn.be/stops/107622"], ["https://data.delijn.be/stops/206651", "https://data.delijn.be/stops/207651"], ["https://data.delijn.be/stops/504250", "https://data.delijn.be/stops/509247"], ["https://data.delijn.be/stops/301825", "https://data.delijn.be/stops/301852"], ["https://data.delijn.be/stops/302916", "https://data.delijn.be/stops/304184"], ["https://data.delijn.be/stops/404904", "https://data.delijn.be/stops/404966"], ["https://data.delijn.be/stops/308209", "https://data.delijn.be/stops/308216"], ["https://data.delijn.be/stops/301406", "https://data.delijn.be/stops/303613"], ["https://data.delijn.be/stops/304897", "https://data.delijn.be/stops/307828"], ["https://data.delijn.be/stops/302663", "https://data.delijn.be/stops/302699"], ["https://data.delijn.be/stops/101487", "https://data.delijn.be/stops/109705"], ["https://data.delijn.be/stops/403836", "https://data.delijn.be/stops/410114"], ["https://data.delijn.be/stops/101250", "https://data.delijn.be/stops/103940"], ["https://data.delijn.be/stops/406152", "https://data.delijn.be/stops/406209"], ["https://data.delijn.be/stops/106277", "https://data.delijn.be/stops/109633"], ["https://data.delijn.be/stops/208008", "https://data.delijn.be/stops/208009"], ["https://data.delijn.be/stops/102844", "https://data.delijn.be/stops/104003"], ["https://data.delijn.be/stops/504174", "https://data.delijn.be/stops/505253"], ["https://data.delijn.be/stops/200242", "https://data.delijn.be/stops/201244"], ["https://data.delijn.be/stops/200152", "https://data.delijn.be/stops/202358"], ["https://data.delijn.be/stops/206875", "https://data.delijn.be/stops/207044"], ["https://data.delijn.be/stops/206013", "https://data.delijn.be/stops/206016"], ["https://data.delijn.be/stops/404973", "https://data.delijn.be/stops/404977"], ["https://data.delijn.be/stops/303376", "https://data.delijn.be/stops/308871"], ["https://data.delijn.be/stops/405406", "https://data.delijn.be/stops/405407"], ["https://data.delijn.be/stops/200707", "https://data.delijn.be/stops/200723"], ["https://data.delijn.be/stops/300547", "https://data.delijn.be/stops/302608"], ["https://data.delijn.be/stops/200767", "https://data.delijn.be/stops/208375"], ["https://data.delijn.be/stops/502697", "https://data.delijn.be/stops/507646"], ["https://data.delijn.be/stops/302973", "https://data.delijn.be/stops/303450"], ["https://data.delijn.be/stops/201953", "https://data.delijn.be/stops/203507"], ["https://data.delijn.be/stops/407901", "https://data.delijn.be/stops/302837"], ["https://data.delijn.be/stops/505768", "https://data.delijn.be/stops/507025"], ["https://data.delijn.be/stops/204246", "https://data.delijn.be/stops/205223"], ["https://data.delijn.be/stops/206946", "https://data.delijn.be/stops/208071"], ["https://data.delijn.be/stops/407020", "https://data.delijn.be/stops/407021"], ["https://data.delijn.be/stops/304523", "https://data.delijn.be/stops/304524"], ["https://data.delijn.be/stops/204985", "https://data.delijn.be/stops/209349"], ["https://data.delijn.be/stops/503512", "https://data.delijn.be/stops/508506"], ["https://data.delijn.be/stops/301180", "https://data.delijn.be/stops/301258"], ["https://data.delijn.be/stops/103751", "https://data.delijn.be/stops/105085"], ["https://data.delijn.be/stops/408991", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/200511", "https://data.delijn.be/stops/201513"], ["https://data.delijn.be/stops/405782", "https://data.delijn.be/stops/406879"], ["https://data.delijn.be/stops/303755", "https://data.delijn.be/stops/303766"], ["https://data.delijn.be/stops/504117", "https://data.delijn.be/stops/504394"], ["https://data.delijn.be/stops/508642", "https://data.delijn.be/stops/509876"], ["https://data.delijn.be/stops/301781", "https://data.delijn.be/stops/301782"], ["https://data.delijn.be/stops/108537", "https://data.delijn.be/stops/108539"], ["https://data.delijn.be/stops/303325", "https://data.delijn.be/stops/306337"], ["https://data.delijn.be/stops/306815", "https://data.delijn.be/stops/308540"], ["https://data.delijn.be/stops/209682", "https://data.delijn.be/stops/209685"], ["https://data.delijn.be/stops/506244", "https://data.delijn.be/stops/506423"], ["https://data.delijn.be/stops/202641", "https://data.delijn.be/stops/203641"], ["https://data.delijn.be/stops/506597", "https://data.delijn.be/stops/506623"], ["https://data.delijn.be/stops/204165", "https://data.delijn.be/stops/204580"], ["https://data.delijn.be/stops/109052", "https://data.delijn.be/stops/109056"], ["https://data.delijn.be/stops/107711", "https://data.delijn.be/stops/109045"], ["https://data.delijn.be/stops/206277", "https://data.delijn.be/stops/206823"], ["https://data.delijn.be/stops/508405", "https://data.delijn.be/stops/509770"], ["https://data.delijn.be/stops/503378", "https://data.delijn.be/stops/504765"], ["https://data.delijn.be/stops/302917", "https://data.delijn.be/stops/307072"], ["https://data.delijn.be/stops/103056", "https://data.delijn.be/stops/107177"], ["https://data.delijn.be/stops/408303", "https://data.delijn.be/stops/408391"], ["https://data.delijn.be/stops/300452", "https://data.delijn.be/stops/308758"], ["https://data.delijn.be/stops/103977", "https://data.delijn.be/stops/109005"], ["https://data.delijn.be/stops/201159", "https://data.delijn.be/stops/205923"], ["https://data.delijn.be/stops/303275", "https://data.delijn.be/stops/303277"], ["https://data.delijn.be/stops/104639", "https://data.delijn.be/stops/107974"], ["https://data.delijn.be/stops/200050", "https://data.delijn.be/stops/203776"], ["https://data.delijn.be/stops/202317", "https://data.delijn.be/stops/208887"], ["https://data.delijn.be/stops/304345", "https://data.delijn.be/stops/304346"], ["https://data.delijn.be/stops/405352", "https://data.delijn.be/stops/405353"], ["https://data.delijn.be/stops/201295", "https://data.delijn.be/stops/209952"], ["https://data.delijn.be/stops/401642", "https://data.delijn.be/stops/408650"], ["https://data.delijn.be/stops/504083", "https://data.delijn.be/stops/505803"], ["https://data.delijn.be/stops/102669", "https://data.delijn.be/stops/105814"], ["https://data.delijn.be/stops/505535", "https://data.delijn.be/stops/509584"], ["https://data.delijn.be/stops/103004", "https://data.delijn.be/stops/104937"], ["https://data.delijn.be/stops/201811", "https://data.delijn.be/stops/201834"], ["https://data.delijn.be/stops/502267", "https://data.delijn.be/stops/502688"], ["https://data.delijn.be/stops/505519", "https://data.delijn.be/stops/505619"], ["https://data.delijn.be/stops/108562", "https://data.delijn.be/stops/108564"], ["https://data.delijn.be/stops/505152", "https://data.delijn.be/stops/506100"], ["https://data.delijn.be/stops/105754", "https://data.delijn.be/stops/109816"], ["https://data.delijn.be/stops/505253", "https://data.delijn.be/stops/505920"], ["https://data.delijn.be/stops/509698", "https://data.delijn.be/stops/509702"], ["https://data.delijn.be/stops/204022", "https://data.delijn.be/stops/206281"], ["https://data.delijn.be/stops/200823", "https://data.delijn.be/stops/200866"], ["https://data.delijn.be/stops/204348", "https://data.delijn.be/stops/205209"], ["https://data.delijn.be/stops/109501", "https://data.delijn.be/stops/109502"], ["https://data.delijn.be/stops/105679", "https://data.delijn.be/stops/105681"], ["https://data.delijn.be/stops/201857", "https://data.delijn.be/stops/201859"], ["https://data.delijn.be/stops/107625", "https://data.delijn.be/stops/108935"], ["https://data.delijn.be/stops/200141", "https://data.delijn.be/stops/201900"], ["https://data.delijn.be/stops/503459", "https://data.delijn.be/stops/504803"], ["https://data.delijn.be/stops/101586", "https://data.delijn.be/stops/107310"], ["https://data.delijn.be/stops/205637", "https://data.delijn.be/stops/205638"], ["https://data.delijn.be/stops/204982", "https://data.delijn.be/stops/209167"], ["https://data.delijn.be/stops/400244", "https://data.delijn.be/stops/400923"], ["https://data.delijn.be/stops/405038", "https://data.delijn.be/stops/405057"], ["https://data.delijn.be/stops/503161", "https://data.delijn.be/stops/505529"], ["https://data.delijn.be/stops/102953", "https://data.delijn.be/stops/102954"], ["https://data.delijn.be/stops/507500", "https://data.delijn.be/stops/507511"], ["https://data.delijn.be/stops/402566", "https://data.delijn.be/stops/407804"], ["https://data.delijn.be/stops/206744", "https://data.delijn.be/stops/206745"], ["https://data.delijn.be/stops/400444", "https://data.delijn.be/stops/401201"], ["https://data.delijn.be/stops/405774", "https://data.delijn.be/stops/409735"], ["https://data.delijn.be/stops/102967", "https://data.delijn.be/stops/106237"], ["https://data.delijn.be/stops/204207", "https://data.delijn.be/stops/205094"], ["https://data.delijn.be/stops/200092", "https://data.delijn.be/stops/211059"], ["https://data.delijn.be/stops/200251", "https://data.delijn.be/stops/201575"], ["https://data.delijn.be/stops/501203", "https://data.delijn.be/stops/506238"], ["https://data.delijn.be/stops/305053", "https://data.delijn.be/stops/305056"], ["https://data.delijn.be/stops/301306", "https://data.delijn.be/stops/301307"], ["https://data.delijn.be/stops/400051", "https://data.delijn.be/stops/400120"], ["https://data.delijn.be/stops/502291", "https://data.delijn.be/stops/505730"], ["https://data.delijn.be/stops/203396", "https://data.delijn.be/stops/210007"], ["https://data.delijn.be/stops/304442", "https://data.delijn.be/stops/304444"], ["https://data.delijn.be/stops/202060", "https://data.delijn.be/stops/208919"], ["https://data.delijn.be/stops/104022", "https://data.delijn.be/stops/109887"], ["https://data.delijn.be/stops/207721", "https://data.delijn.be/stops/207725"], ["https://data.delijn.be/stops/501053", "https://data.delijn.be/stops/501057"], ["https://data.delijn.be/stops/202104", "https://data.delijn.be/stops/202262"], ["https://data.delijn.be/stops/108738", "https://data.delijn.be/stops/108739"], ["https://data.delijn.be/stops/205063", "https://data.delijn.be/stops/205324"], ["https://data.delijn.be/stops/207696", "https://data.delijn.be/stops/207743"], ["https://data.delijn.be/stops/205129", "https://data.delijn.be/stops/205132"], ["https://data.delijn.be/stops/508568", "https://data.delijn.be/stops/508811"], ["https://data.delijn.be/stops/103221", "https://data.delijn.be/stops/104574"], ["https://data.delijn.be/stops/401306", "https://data.delijn.be/stops/401368"], ["https://data.delijn.be/stops/304886", "https://data.delijn.be/stops/306161"], ["https://data.delijn.be/stops/103944", "https://data.delijn.be/stops/104739"], ["https://data.delijn.be/stops/103972", "https://data.delijn.be/stops/106155"], ["https://data.delijn.be/stops/502302", "https://data.delijn.be/stops/502305"], ["https://data.delijn.be/stops/109978", "https://data.delijn.be/stops/109979"], ["https://data.delijn.be/stops/201972", "https://data.delijn.be/stops/208705"], ["https://data.delijn.be/stops/102653", "https://data.delijn.be/stops/102654"], ["https://data.delijn.be/stops/103219", "https://data.delijn.be/stops/108179"], ["https://data.delijn.be/stops/104077", "https://data.delijn.be/stops/106069"], ["https://data.delijn.be/stops/106399", "https://data.delijn.be/stops/106574"], ["https://data.delijn.be/stops/503657", "https://data.delijn.be/stops/509153"], ["https://data.delijn.be/stops/209667", "https://data.delijn.be/stops/209672"], ["https://data.delijn.be/stops/406194", "https://data.delijn.be/stops/406221"], ["https://data.delijn.be/stops/101452", "https://data.delijn.be/stops/107054"], ["https://data.delijn.be/stops/200677", "https://data.delijn.be/stops/201808"], ["https://data.delijn.be/stops/400706", "https://data.delijn.be/stops/400709"], ["https://data.delijn.be/stops/300343", "https://data.delijn.be/stops/300346"], ["https://data.delijn.be/stops/302737", "https://data.delijn.be/stops/302787"], ["https://data.delijn.be/stops/105137", "https://data.delijn.be/stops/108501"], ["https://data.delijn.be/stops/307535", "https://data.delijn.be/stops/307536"], ["https://data.delijn.be/stops/502200", "https://data.delijn.be/stops/509312"], ["https://data.delijn.be/stops/303577", "https://data.delijn.be/stops/304929"], ["https://data.delijn.be/stops/405699", "https://data.delijn.be/stops/405926"], ["https://data.delijn.be/stops/503473", "https://data.delijn.be/stops/508462"], ["https://data.delijn.be/stops/407469", "https://data.delijn.be/stops/407505"], ["https://data.delijn.be/stops/301038", "https://data.delijn.be/stops/301039"], ["https://data.delijn.be/stops/101432", "https://data.delijn.be/stops/101434"], ["https://data.delijn.be/stops/207340", "https://data.delijn.be/stops/207342"], ["https://data.delijn.be/stops/200115", "https://data.delijn.be/stops/200887"], ["https://data.delijn.be/stops/404939", "https://data.delijn.be/stops/404955"], ["https://data.delijn.be/stops/300666", "https://data.delijn.be/stops/300678"], ["https://data.delijn.be/stops/202439", "https://data.delijn.be/stops/203482"], ["https://data.delijn.be/stops/102166", "https://data.delijn.be/stops/104394"], ["https://data.delijn.be/stops/206412", "https://data.delijn.be/stops/207413"], ["https://data.delijn.be/stops/407426", "https://data.delijn.be/stops/407427"], ["https://data.delijn.be/stops/306185", "https://data.delijn.be/stops/306186"], ["https://data.delijn.be/stops/108336", "https://data.delijn.be/stops/108339"], ["https://data.delijn.be/stops/302567", "https://data.delijn.be/stops/302590"], ["https://data.delijn.be/stops/501448", "https://data.delijn.be/stops/501451"], ["https://data.delijn.be/stops/501205", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/303094", "https://data.delijn.be/stops/303100"], ["https://data.delijn.be/stops/107591", "https://data.delijn.be/stops/107592"], ["https://data.delijn.be/stops/201175", "https://data.delijn.be/stops/211112"], ["https://data.delijn.be/stops/503612", "https://data.delijn.be/stops/508612"], ["https://data.delijn.be/stops/400438", "https://data.delijn.be/stops/406771"], ["https://data.delijn.be/stops/200628", "https://data.delijn.be/stops/219003"], ["https://data.delijn.be/stops/305544", "https://data.delijn.be/stops/305545"], ["https://data.delijn.be/stops/406664", "https://data.delijn.be/stops/407179"], ["https://data.delijn.be/stops/305774", "https://data.delijn.be/stops/306879"], ["https://data.delijn.be/stops/206836", "https://data.delijn.be/stops/206928"], ["https://data.delijn.be/stops/305827", "https://data.delijn.be/stops/305955"], ["https://data.delijn.be/stops/206733", "https://data.delijn.be/stops/306681"], ["https://data.delijn.be/stops/403109", "https://data.delijn.be/stops/403235"], ["https://data.delijn.be/stops/204426", "https://data.delijn.be/stops/204441"], ["https://data.delijn.be/stops/200939", "https://data.delijn.be/stops/202685"], ["https://data.delijn.be/stops/402079", "https://data.delijn.be/stops/410149"], ["https://data.delijn.be/stops/505199", "https://data.delijn.be/stops/505425"], ["https://data.delijn.be/stops/502511", "https://data.delijn.be/stops/502804"], ["https://data.delijn.be/stops/204650", "https://data.delijn.be/stops/205695"], ["https://data.delijn.be/stops/303856", "https://data.delijn.be/stops/308978"], ["https://data.delijn.be/stops/302741", "https://data.delijn.be/stops/306166"], ["https://data.delijn.be/stops/206897", "https://data.delijn.be/stops/207898"], ["https://data.delijn.be/stops/501517", "https://data.delijn.be/stops/509898"], ["https://data.delijn.be/stops/505271", "https://data.delijn.be/stops/505276"], ["https://data.delijn.be/stops/501385", "https://data.delijn.be/stops/506479"], ["https://data.delijn.be/stops/407772", "https://data.delijn.be/stops/408840"], ["https://data.delijn.be/stops/401653", "https://data.delijn.be/stops/305950"], ["https://data.delijn.be/stops/101477", "https://data.delijn.be/stops/108738"], ["https://data.delijn.be/stops/300715", "https://data.delijn.be/stops/300730"], ["https://data.delijn.be/stops/302721", "https://data.delijn.be/stops/302736"], ["https://data.delijn.be/stops/207464", "https://data.delijn.be/stops/207465"], ["https://data.delijn.be/stops/200770", "https://data.delijn.be/stops/209309"], ["https://data.delijn.be/stops/208222", "https://data.delijn.be/stops/209222"], ["https://data.delijn.be/stops/504872", "https://data.delijn.be/stops/509872"], ["https://data.delijn.be/stops/102045", "https://data.delijn.be/stops/104535"], ["https://data.delijn.be/stops/406712", "https://data.delijn.be/stops/408653"], ["https://data.delijn.be/stops/503216", "https://data.delijn.be/stops/508193"], ["https://data.delijn.be/stops/107148", "https://data.delijn.be/stops/108933"], ["https://data.delijn.be/stops/109205", "https://data.delijn.be/stops/109209"], ["https://data.delijn.be/stops/401760", "https://data.delijn.be/stops/406319"], ["https://data.delijn.be/stops/409071", "https://data.delijn.be/stops/409210"], ["https://data.delijn.be/stops/204374", "https://data.delijn.be/stops/205374"], ["https://data.delijn.be/stops/200722", "https://data.delijn.be/stops/202410"], ["https://data.delijn.be/stops/306385", "https://data.delijn.be/stops/307154"], ["https://data.delijn.be/stops/400852", "https://data.delijn.be/stops/409621"], ["https://data.delijn.be/stops/208383", "https://data.delijn.be/stops/209620"], ["https://data.delijn.be/stops/302859", "https://data.delijn.be/stops/302916"], ["https://data.delijn.be/stops/304909", "https://data.delijn.be/stops/307331"], ["https://data.delijn.be/stops/202076", "https://data.delijn.be/stops/203076"], ["https://data.delijn.be/stops/107559", "https://data.delijn.be/stops/109438"], ["https://data.delijn.be/stops/304865", "https://data.delijn.be/stops/308529"], ["https://data.delijn.be/stops/505331", "https://data.delijn.be/stops/505597"], ["https://data.delijn.be/stops/507087", "https://data.delijn.be/stops/507729"], ["https://data.delijn.be/stops/407499", "https://data.delijn.be/stops/410253"], ["https://data.delijn.be/stops/504621", "https://data.delijn.be/stops/509625"], ["https://data.delijn.be/stops/301499", "https://data.delijn.be/stops/307956"], ["https://data.delijn.be/stops/504192", "https://data.delijn.be/stops/509177"], ["https://data.delijn.be/stops/503650", "https://data.delijn.be/stops/508351"], ["https://data.delijn.be/stops/105380", "https://data.delijn.be/stops/108485"], ["https://data.delijn.be/stops/201154", "https://data.delijn.be/stops/201453"], ["https://data.delijn.be/stops/207857", "https://data.delijn.be/stops/209616"], ["https://data.delijn.be/stops/202170", "https://data.delijn.be/stops/203170"], ["https://data.delijn.be/stops/404653", "https://data.delijn.be/stops/404674"], ["https://data.delijn.be/stops/405204", "https://data.delijn.be/stops/405206"], ["https://data.delijn.be/stops/105538", "https://data.delijn.be/stops/106250"], ["https://data.delijn.be/stops/405763", "https://data.delijn.be/stops/406292"], ["https://data.delijn.be/stops/206673", "https://data.delijn.be/stops/209008"], ["https://data.delijn.be/stops/200003", "https://data.delijn.be/stops/203014"], ["https://data.delijn.be/stops/300072", "https://data.delijn.be/stops/300073"], ["https://data.delijn.be/stops/402173", "https://data.delijn.be/stops/402483"], ["https://data.delijn.be/stops/502535", "https://data.delijn.be/stops/507215"], ["https://data.delijn.be/stops/505923", "https://data.delijn.be/stops/509982"], ["https://data.delijn.be/stops/307384", "https://data.delijn.be/stops/307446"], ["https://data.delijn.be/stops/504126", "https://data.delijn.be/stops/509636"], ["https://data.delijn.be/stops/305481", "https://data.delijn.be/stops/305858"], ["https://data.delijn.be/stops/405944", "https://data.delijn.be/stops/405945"], ["https://data.delijn.be/stops/502493", "https://data.delijn.be/stops/505625"], ["https://data.delijn.be/stops/204298", "https://data.delijn.be/stops/205298"], ["https://data.delijn.be/stops/208854", "https://data.delijn.be/stops/208855"], ["https://data.delijn.be/stops/404762", "https://data.delijn.be/stops/404810"], ["https://data.delijn.be/stops/200433", "https://data.delijn.be/stops/201432"], ["https://data.delijn.be/stops/301326", "https://data.delijn.be/stops/301327"], ["https://data.delijn.be/stops/101276", "https://data.delijn.be/stops/205264"], ["https://data.delijn.be/stops/305821", "https://data.delijn.be/stops/308817"], ["https://data.delijn.be/stops/302199", "https://data.delijn.be/stops/308110"], ["https://data.delijn.be/stops/501635", "https://data.delijn.be/stops/506773"], ["https://data.delijn.be/stops/102090", "https://data.delijn.be/stops/103985"], ["https://data.delijn.be/stops/402721", "https://data.delijn.be/stops/410057"], ["https://data.delijn.be/stops/206420", "https://data.delijn.be/stops/306732"], ["https://data.delijn.be/stops/200272", "https://data.delijn.be/stops/201273"], ["https://data.delijn.be/stops/307305", "https://data.delijn.be/stops/307314"], ["https://data.delijn.be/stops/507745", "https://data.delijn.be/stops/590413"], ["https://data.delijn.be/stops/304668", "https://data.delijn.be/stops/304671"], ["https://data.delijn.be/stops/200603", "https://data.delijn.be/stops/200605"], ["https://data.delijn.be/stops/101187", "https://data.delijn.be/stops/106773"], ["https://data.delijn.be/stops/103323", "https://data.delijn.be/stops/103388"], ["https://data.delijn.be/stops/202164", "https://data.delijn.be/stops/203164"], ["https://data.delijn.be/stops/101160", "https://data.delijn.be/stops/101985"], ["https://data.delijn.be/stops/108930", "https://data.delijn.be/stops/108935"], ["https://data.delijn.be/stops/402002", "https://data.delijn.be/stops/406142"], ["https://data.delijn.be/stops/400772", "https://data.delijn.be/stops/409634"], ["https://data.delijn.be/stops/102998", "https://data.delijn.be/stops/107417"], ["https://data.delijn.be/stops/303248", "https://data.delijn.be/stops/303660"], ["https://data.delijn.be/stops/401389", "https://data.delijn.be/stops/401557"], ["https://data.delijn.be/stops/102717", "https://data.delijn.be/stops/102982"], ["https://data.delijn.be/stops/502253", "https://data.delijn.be/stops/507254"], ["https://data.delijn.be/stops/200116", "https://data.delijn.be/stops/200874"], ["https://data.delijn.be/stops/508024", "https://data.delijn.be/stops/508030"], ["https://data.delijn.be/stops/400678", "https://data.delijn.be/stops/405301"], ["https://data.delijn.be/stops/302400", "https://data.delijn.be/stops/302402"], ["https://data.delijn.be/stops/400768", "https://data.delijn.be/stops/405266"], ["https://data.delijn.be/stops/301725", "https://data.delijn.be/stops/308431"], ["https://data.delijn.be/stops/504438", "https://data.delijn.be/stops/509424"], ["https://data.delijn.be/stops/105992", "https://data.delijn.be/stops/105998"], ["https://data.delijn.be/stops/406045", "https://data.delijn.be/stops/406064"], ["https://data.delijn.be/stops/300251", "https://data.delijn.be/stops/300393"], ["https://data.delijn.be/stops/305500", "https://data.delijn.be/stops/307826"], ["https://data.delijn.be/stops/305025", "https://data.delijn.be/stops/305040"], ["https://data.delijn.be/stops/407583", "https://data.delijn.be/stops/407586"], ["https://data.delijn.be/stops/308214", "https://data.delijn.be/stops/308234"], ["https://data.delijn.be/stops/501391", "https://data.delijn.be/stops/501699"], ["https://data.delijn.be/stops/303459", "https://data.delijn.be/stops/303460"], ["https://data.delijn.be/stops/206323", "https://data.delijn.be/stops/207485"], ["https://data.delijn.be/stops/502536", "https://data.delijn.be/stops/507536"], ["https://data.delijn.be/stops/107700", "https://data.delijn.be/stops/108956"], ["https://data.delijn.be/stops/206067", "https://data.delijn.be/stops/207067"], ["https://data.delijn.be/stops/206285", "https://data.delijn.be/stops/207287"], ["https://data.delijn.be/stops/104840", "https://data.delijn.be/stops/106086"], ["https://data.delijn.be/stops/400076", "https://data.delijn.be/stops/408426"], ["https://data.delijn.be/stops/302792", "https://data.delijn.be/stops/304030"], ["https://data.delijn.be/stops/204093", "https://data.delijn.be/stops/205092"], ["https://data.delijn.be/stops/108638", "https://data.delijn.be/stops/108644"], ["https://data.delijn.be/stops/301971", "https://data.delijn.be/stops/301999"], ["https://data.delijn.be/stops/101461", "https://data.delijn.be/stops/102962"], ["https://data.delijn.be/stops/206039", "https://data.delijn.be/stops/206962"], ["https://data.delijn.be/stops/301138", "https://data.delijn.be/stops/308957"], ["https://data.delijn.be/stops/102915", "https://data.delijn.be/stops/103323"], ["https://data.delijn.be/stops/302856", "https://data.delijn.be/stops/308654"], ["https://data.delijn.be/stops/216021", "https://data.delijn.be/stops/217019"], ["https://data.delijn.be/stops/401783", "https://data.delijn.be/stops/406353"], ["https://data.delijn.be/stops/301151", "https://data.delijn.be/stops/301152"], ["https://data.delijn.be/stops/202434", "https://data.delijn.be/stops/202435"], ["https://data.delijn.be/stops/101725", "https://data.delijn.be/stops/103364"], ["https://data.delijn.be/stops/504316", "https://data.delijn.be/stops/505827"], ["https://data.delijn.be/stops/210026", "https://data.delijn.be/stops/218936"], ["https://data.delijn.be/stops/505315", "https://data.delijn.be/stops/505326"], ["https://data.delijn.be/stops/300344", "https://data.delijn.be/stops/307690"], ["https://data.delijn.be/stops/203089", "https://data.delijn.be/stops/203720"], ["https://data.delijn.be/stops/501261", "https://data.delijn.be/stops/506738"], ["https://data.delijn.be/stops/302162", "https://data.delijn.be/stops/307140"], ["https://data.delijn.be/stops/406033", "https://data.delijn.be/stops/406082"], ["https://data.delijn.be/stops/101299", "https://data.delijn.be/stops/107456"], ["https://data.delijn.be/stops/305949", "https://data.delijn.be/stops/305950"], ["https://data.delijn.be/stops/408312", "https://data.delijn.be/stops/408914"], ["https://data.delijn.be/stops/200512", "https://data.delijn.be/stops/201512"], ["https://data.delijn.be/stops/301368", "https://data.delijn.be/stops/306130"], ["https://data.delijn.be/stops/106022", "https://data.delijn.be/stops/106190"], ["https://data.delijn.be/stops/508743", "https://data.delijn.be/stops/509777"], ["https://data.delijn.be/stops/202700", "https://data.delijn.be/stops/202701"], ["https://data.delijn.be/stops/105354", "https://data.delijn.be/stops/105929"], ["https://data.delijn.be/stops/303639", "https://data.delijn.be/stops/303641"], ["https://data.delijn.be/stops/203163", "https://data.delijn.be/stops/204092"], ["https://data.delijn.be/stops/508137", "https://data.delijn.be/stops/508140"], ["https://data.delijn.be/stops/208143", "https://data.delijn.be/stops/208144"], ["https://data.delijn.be/stops/402321", "https://data.delijn.be/stops/402501"], ["https://data.delijn.be/stops/102491", "https://data.delijn.be/stops/400043"], ["https://data.delijn.be/stops/405013", "https://data.delijn.be/stops/405015"], ["https://data.delijn.be/stops/407668", "https://data.delijn.be/stops/409801"], ["https://data.delijn.be/stops/106083", "https://data.delijn.be/stops/106136"], ["https://data.delijn.be/stops/101765", "https://data.delijn.be/stops/105470"], ["https://data.delijn.be/stops/201339", "https://data.delijn.be/stops/211105"], ["https://data.delijn.be/stops/200842", "https://data.delijn.be/stops/202307"], ["https://data.delijn.be/stops/301041", "https://data.delijn.be/stops/301050"], ["https://data.delijn.be/stops/107548", "https://data.delijn.be/stops/107960"], ["https://data.delijn.be/stops/104495", "https://data.delijn.be/stops/107488"], ["https://data.delijn.be/stops/200537", "https://data.delijn.be/stops/201311"], ["https://data.delijn.be/stops/304459", "https://data.delijn.be/stops/307041"], ["https://data.delijn.be/stops/403490", "https://data.delijn.be/stops/403518"], ["https://data.delijn.be/stops/507509", "https://data.delijn.be/stops/507714"], ["https://data.delijn.be/stops/202427", "https://data.delijn.be/stops/202466"], ["https://data.delijn.be/stops/201707", "https://data.delijn.be/stops/203443"], ["https://data.delijn.be/stops/205448", "https://data.delijn.be/stops/214008"], ["https://data.delijn.be/stops/305594", "https://data.delijn.be/stops/305595"], ["https://data.delijn.be/stops/104893", "https://data.delijn.be/stops/105313"], ["https://data.delijn.be/stops/300212", "https://data.delijn.be/stops/300223"], ["https://data.delijn.be/stops/504058", "https://data.delijn.be/stops/504060"], ["https://data.delijn.be/stops/501770", "https://data.delijn.be/stops/507375"], ["https://data.delijn.be/stops/404960", "https://data.delijn.be/stops/409646"], ["https://data.delijn.be/stops/503371", "https://data.delijn.be/stops/508371"], ["https://data.delijn.be/stops/208416", "https://data.delijn.be/stops/208763"], ["https://data.delijn.be/stops/302174", "https://data.delijn.be/stops/305092"], ["https://data.delijn.be/stops/402730", "https://data.delijn.be/stops/402731"], ["https://data.delijn.be/stops/301502", "https://data.delijn.be/stops/301522"], ["https://data.delijn.be/stops/102205", "https://data.delijn.be/stops/109898"], ["https://data.delijn.be/stops/207923", "https://data.delijn.be/stops/207925"], ["https://data.delijn.be/stops/101565", "https://data.delijn.be/stops/102370"], ["https://data.delijn.be/stops/404081", "https://data.delijn.be/stops/404082"], ["https://data.delijn.be/stops/201871", "https://data.delijn.be/stops/202665"], ["https://data.delijn.be/stops/305654", "https://data.delijn.be/stops/305655"], ["https://data.delijn.be/stops/204180", "https://data.delijn.be/stops/204355"], ["https://data.delijn.be/stops/401026", "https://data.delijn.be/stops/404860"], ["https://data.delijn.be/stops/302509", "https://data.delijn.be/stops/302520"], ["https://data.delijn.be/stops/300280", "https://data.delijn.be/stops/300298"], ["https://data.delijn.be/stops/402203", "https://data.delijn.be/stops/402266"], ["https://data.delijn.be/stops/306707", "https://data.delijn.be/stops/306708"], ["https://data.delijn.be/stops/109576", "https://data.delijn.be/stops/109579"], ["https://data.delijn.be/stops/101631", "https://data.delijn.be/stops/105917"], ["https://data.delijn.be/stops/207079", "https://data.delijn.be/stops/207876"], ["https://data.delijn.be/stops/106699", "https://data.delijn.be/stops/106700"], ["https://data.delijn.be/stops/307724", "https://data.delijn.be/stops/307725"], ["https://data.delijn.be/stops/203003", "https://data.delijn.be/stops/203022"], ["https://data.delijn.be/stops/104453", "https://data.delijn.be/stops/107518"], ["https://data.delijn.be/stops/107173", "https://data.delijn.be/stops/107175"], ["https://data.delijn.be/stops/102928", "https://data.delijn.be/stops/102947"], ["https://data.delijn.be/stops/105481", "https://data.delijn.be/stops/105483"], ["https://data.delijn.be/stops/201467", "https://data.delijn.be/stops/211117"], ["https://data.delijn.be/stops/206005", "https://data.delijn.be/stops/207006"], ["https://data.delijn.be/stops/303108", "https://data.delijn.be/stops/303119"], ["https://data.delijn.be/stops/105160", "https://data.delijn.be/stops/105345"], ["https://data.delijn.be/stops/401215", "https://data.delijn.be/stops/401396"], ["https://data.delijn.be/stops/400093", "https://data.delijn.be/stops/400164"], ["https://data.delijn.be/stops/305580", "https://data.delijn.be/stops/305581"], ["https://data.delijn.be/stops/204449", "https://data.delijn.be/stops/205312"], ["https://data.delijn.be/stops/407784", "https://data.delijn.be/stops/407785"], ["https://data.delijn.be/stops/300891", "https://data.delijn.be/stops/301802"], ["https://data.delijn.be/stops/400583", "https://data.delijn.be/stops/400619"], ["https://data.delijn.be/stops/303461", "https://data.delijn.be/stops/308069"], ["https://data.delijn.be/stops/300687", "https://data.delijn.be/stops/301425"], ["https://data.delijn.be/stops/304421", "https://data.delijn.be/stops/308640"], ["https://data.delijn.be/stops/102809", "https://data.delijn.be/stops/106485"], ["https://data.delijn.be/stops/204641", "https://data.delijn.be/stops/205640"], ["https://data.delijn.be/stops/101514", "https://data.delijn.be/stops/101535"], ["https://data.delijn.be/stops/403148", "https://data.delijn.be/stops/403323"], ["https://data.delijn.be/stops/208209", "https://data.delijn.be/stops/208792"], ["https://data.delijn.be/stops/407699", "https://data.delijn.be/stops/409796"], ["https://data.delijn.be/stops/202577", "https://data.delijn.be/stops/203577"], ["https://data.delijn.be/stops/105485", "https://data.delijn.be/stops/105860"], ["https://data.delijn.be/stops/502725", "https://data.delijn.be/stops/507084"], ["https://data.delijn.be/stops/405974", "https://data.delijn.be/stops/405992"], ["https://data.delijn.be/stops/403785", "https://data.delijn.be/stops/408960"], ["https://data.delijn.be/stops/107371", "https://data.delijn.be/stops/107377"], ["https://data.delijn.be/stops/202434", "https://data.delijn.be/stops/210434"], ["https://data.delijn.be/stops/102662", "https://data.delijn.be/stops/108742"], ["https://data.delijn.be/stops/201936", "https://data.delijn.be/stops/206408"], ["https://data.delijn.be/stops/408973", "https://data.delijn.be/stops/408977"], ["https://data.delijn.be/stops/105236", "https://data.delijn.be/stops/105237"], ["https://data.delijn.be/stops/206463", "https://data.delijn.be/stops/206464"], ["https://data.delijn.be/stops/105778", "https://data.delijn.be/stops/105784"], ["https://data.delijn.be/stops/207680", "https://data.delijn.be/stops/208141"], ["https://data.delijn.be/stops/208671", "https://data.delijn.be/stops/209438"], ["https://data.delijn.be/stops/201196", "https://data.delijn.be/stops/201732"], ["https://data.delijn.be/stops/305265", "https://data.delijn.be/stops/305329"], ["https://data.delijn.be/stops/108883", "https://data.delijn.be/stops/108884"], ["https://data.delijn.be/stops/205319", "https://data.delijn.be/stops/205697"], ["https://data.delijn.be/stops/308213", "https://data.delijn.be/stops/308215"], ["https://data.delijn.be/stops/204398", "https://data.delijn.be/stops/204768"], ["https://data.delijn.be/stops/503880", "https://data.delijn.be/stops/508880"], ["https://data.delijn.be/stops/301675", "https://data.delijn.be/stops/301689"], ["https://data.delijn.be/stops/105689", "https://data.delijn.be/stops/105691"], ["https://data.delijn.be/stops/408504", "https://data.delijn.be/stops/408526"], ["https://data.delijn.be/stops/301776", "https://data.delijn.be/stops/301779"], ["https://data.delijn.be/stops/300301", "https://data.delijn.be/stops/300333"], ["https://data.delijn.be/stops/301118", "https://data.delijn.be/stops/302224"], ["https://data.delijn.be/stops/406598", "https://data.delijn.be/stops/406612"], ["https://data.delijn.be/stops/207301", "https://data.delijn.be/stops/207640"], ["https://data.delijn.be/stops/300986", "https://data.delijn.be/stops/306048"], ["https://data.delijn.be/stops/106663", "https://data.delijn.be/stops/106667"], ["https://data.delijn.be/stops/400757", "https://data.delijn.be/stops/409570"], ["https://data.delijn.be/stops/407644", "https://data.delijn.be/stops/407689"], ["https://data.delijn.be/stops/205444", "https://data.delijn.be/stops/205596"], ["https://data.delijn.be/stops/502482", "https://data.delijn.be/stops/505665"], ["https://data.delijn.be/stops/106629", "https://data.delijn.be/stops/106631"], ["https://data.delijn.be/stops/501659", "https://data.delijn.be/stops/506661"], ["https://data.delijn.be/stops/105433", "https://data.delijn.be/stops/109842"], ["https://data.delijn.be/stops/305722", "https://data.delijn.be/stops/305723"], ["https://data.delijn.be/stops/200093", "https://data.delijn.be/stops/201093"], ["https://data.delijn.be/stops/201067", "https://data.delijn.be/stops/201446"], ["https://data.delijn.be/stops/102919", "https://data.delijn.be/stops/102921"], ["https://data.delijn.be/stops/300404", "https://data.delijn.be/stops/300405"], ["https://data.delijn.be/stops/400727", "https://data.delijn.be/stops/405179"], ["https://data.delijn.be/stops/208526", "https://data.delijn.be/stops/209525"], ["https://data.delijn.be/stops/405308", "https://data.delijn.be/stops/405314"], ["https://data.delijn.be/stops/507387", "https://data.delijn.be/stops/507402"], ["https://data.delijn.be/stops/403344", "https://data.delijn.be/stops/403345"], ["https://data.delijn.be/stops/503574", "https://data.delijn.be/stops/503575"], ["https://data.delijn.be/stops/206178", "https://data.delijn.be/stops/207957"], ["https://data.delijn.be/stops/202548", "https://data.delijn.be/stops/203549"], ["https://data.delijn.be/stops/401104", "https://data.delijn.be/stops/410049"], ["https://data.delijn.be/stops/308160", "https://data.delijn.be/stops/308180"], ["https://data.delijn.be/stops/401807", "https://data.delijn.be/stops/401809"], ["https://data.delijn.be/stops/109229", "https://data.delijn.be/stops/109230"], ["https://data.delijn.be/stops/107603", "https://data.delijn.be/stops/107606"], ["https://data.delijn.be/stops/205450", "https://data.delijn.be/stops/205713"], ["https://data.delijn.be/stops/504271", "https://data.delijn.be/stops/504273"], ["https://data.delijn.be/stops/305594", "https://data.delijn.be/stops/305609"], ["https://data.delijn.be/stops/205930", "https://data.delijn.be/stops/210084"], ["https://data.delijn.be/stops/401840", "https://data.delijn.be/stops/406031"], ["https://data.delijn.be/stops/108908", "https://data.delijn.be/stops/109396"], ["https://data.delijn.be/stops/109179", "https://data.delijn.be/stops/109249"], ["https://data.delijn.be/stops/206043", "https://data.delijn.be/stops/207539"], ["https://data.delijn.be/stops/304154", "https://data.delijn.be/stops/306207"], ["https://data.delijn.be/stops/504171", "https://data.delijn.be/stops/509171"], ["https://data.delijn.be/stops/207199", "https://data.delijn.be/stops/207925"], ["https://data.delijn.be/stops/406044", "https://data.delijn.be/stops/406144"], ["https://data.delijn.be/stops/300741", "https://data.delijn.be/stops/300775"], ["https://data.delijn.be/stops/502913", "https://data.delijn.be/stops/507247"], ["https://data.delijn.be/stops/405843", "https://data.delijn.be/stops/409755"], ["https://data.delijn.be/stops/206068", "https://data.delijn.be/stops/207068"], ["https://data.delijn.be/stops/105552", "https://data.delijn.be/stops/105554"], ["https://data.delijn.be/stops/501182", "https://data.delijn.be/stops/501563"], ["https://data.delijn.be/stops/101783", "https://data.delijn.be/stops/107874"], ["https://data.delijn.be/stops/102248", "https://data.delijn.be/stops/104284"], ["https://data.delijn.be/stops/109008", "https://data.delijn.be/stops/402018"], ["https://data.delijn.be/stops/304781", "https://data.delijn.be/stops/304794"], ["https://data.delijn.be/stops/504605", "https://data.delijn.be/stops/509604"], ["https://data.delijn.be/stops/306132", "https://data.delijn.be/stops/306134"], ["https://data.delijn.be/stops/205177", "https://data.delijn.be/stops/205178"], ["https://data.delijn.be/stops/404798", "https://data.delijn.be/stops/404805"], ["https://data.delijn.be/stops/503633", "https://data.delijn.be/stops/505291"], ["https://data.delijn.be/stops/406185", "https://data.delijn.be/stops/406200"], ["https://data.delijn.be/stops/406116", "https://data.delijn.be/stops/406815"], ["https://data.delijn.be/stops/106429", "https://data.delijn.be/stops/106432"], ["https://data.delijn.be/stops/202041", "https://data.delijn.be/stops/202686"], ["https://data.delijn.be/stops/101379", "https://data.delijn.be/stops/108692"], ["https://data.delijn.be/stops/208225", "https://data.delijn.be/stops/209774"], ["https://data.delijn.be/stops/407363", "https://data.delijn.be/stops/407389"], ["https://data.delijn.be/stops/300324", "https://data.delijn.be/stops/308991"], ["https://data.delijn.be/stops/101507", "https://data.delijn.be/stops/109075"], ["https://data.delijn.be/stops/400798", "https://data.delijn.be/stops/400976"], ["https://data.delijn.be/stops/108297", "https://data.delijn.be/stops/108302"], ["https://data.delijn.be/stops/208554", "https://data.delijn.be/stops/209553"], ["https://data.delijn.be/stops/206105", "https://data.delijn.be/stops/207111"], ["https://data.delijn.be/stops/305118", "https://data.delijn.be/stops/305122"], ["https://data.delijn.be/stops/308853", "https://data.delijn.be/stops/308855"], ["https://data.delijn.be/stops/200232", "https://data.delijn.be/stops/201232"], ["https://data.delijn.be/stops/301412", "https://data.delijn.be/stops/301420"], ["https://data.delijn.be/stops/203927", "https://data.delijn.be/stops/211022"], ["https://data.delijn.be/stops/305210", "https://data.delijn.be/stops/306934"], ["https://data.delijn.be/stops/500005", "https://data.delijn.be/stops/501541"], ["https://data.delijn.be/stops/301074", "https://data.delijn.be/stops/307043"], ["https://data.delijn.be/stops/200198", "https://data.delijn.be/stops/201198"], ["https://data.delijn.be/stops/208129", "https://data.delijn.be/stops/208664"], ["https://data.delijn.be/stops/406307", "https://data.delijn.be/stops/406310"], ["https://data.delijn.be/stops/504102", "https://data.delijn.be/stops/509102"], ["https://data.delijn.be/stops/503219", "https://data.delijn.be/stops/505265"], ["https://data.delijn.be/stops/403848", "https://data.delijn.be/stops/410116"], ["https://data.delijn.be/stops/403262", "https://data.delijn.be/stops/403454"], ["https://data.delijn.be/stops/101467", "https://data.delijn.be/stops/109250"], ["https://data.delijn.be/stops/202156", "https://data.delijn.be/stops/203158"], ["https://data.delijn.be/stops/105617", "https://data.delijn.be/stops/106363"], ["https://data.delijn.be/stops/407603", "https://data.delijn.be/stops/407754"], ["https://data.delijn.be/stops/105786", "https://data.delijn.be/stops/105787"], ["https://data.delijn.be/stops/108517", "https://data.delijn.be/stops/108519"], ["https://data.delijn.be/stops/300999", "https://data.delijn.be/stops/302479"], ["https://data.delijn.be/stops/503497", "https://data.delijn.be/stops/503870"], ["https://data.delijn.be/stops/406015", "https://data.delijn.be/stops/406048"], ["https://data.delijn.be/stops/505901", "https://data.delijn.be/stops/508142"], ["https://data.delijn.be/stops/404875", "https://data.delijn.be/stops/406890"], ["https://data.delijn.be/stops/300932", "https://data.delijn.be/stops/300933"], ["https://data.delijn.be/stops/306254", "https://data.delijn.be/stops/306255"], ["https://data.delijn.be/stops/302151", "https://data.delijn.be/stops/303813"], ["https://data.delijn.be/stops/206115", "https://data.delijn.be/stops/207114"], ["https://data.delijn.be/stops/302939", "https://data.delijn.be/stops/307436"], ["https://data.delijn.be/stops/105744", "https://data.delijn.be/stops/109834"], ["https://data.delijn.be/stops/406699", "https://data.delijn.be/stops/406700"], ["https://data.delijn.be/stops/105660", "https://data.delijn.be/stops/105720"], ["https://data.delijn.be/stops/403015", "https://data.delijn.be/stops/403411"], ["https://data.delijn.be/stops/404524", "https://data.delijn.be/stops/407234"], ["https://data.delijn.be/stops/401351", "https://data.delijn.be/stops/401360"], ["https://data.delijn.be/stops/202011", "https://data.delijn.be/stops/202536"], ["https://data.delijn.be/stops/301280", "https://data.delijn.be/stops/301339"], ["https://data.delijn.be/stops/202745", "https://data.delijn.be/stops/206937"], ["https://data.delijn.be/stops/502279", "https://data.delijn.be/stops/502284"], ["https://data.delijn.be/stops/202881", "https://data.delijn.be/stops/203870"], ["https://data.delijn.be/stops/108063", "https://data.delijn.be/stops/108871"], ["https://data.delijn.be/stops/502035", "https://data.delijn.be/stops/507035"], ["https://data.delijn.be/stops/200109", "https://data.delijn.be/stops/200357"], ["https://data.delijn.be/stops/509458", "https://data.delijn.be/stops/509612"], ["https://data.delijn.be/stops/404551", "https://data.delijn.be/stops/409258"], ["https://data.delijn.be/stops/202890", "https://data.delijn.be/stops/203819"], ["https://data.delijn.be/stops/501090", "https://data.delijn.be/stops/506095"], ["https://data.delijn.be/stops/101540", "https://data.delijn.be/stops/101802"], ["https://data.delijn.be/stops/303860", "https://data.delijn.be/stops/303962"], ["https://data.delijn.be/stops/405035", "https://data.delijn.be/stops/405047"], ["https://data.delijn.be/stops/103097", "https://data.delijn.be/stops/104627"], ["https://data.delijn.be/stops/101583", "https://data.delijn.be/stops/105728"], ["https://data.delijn.be/stops/206858", "https://data.delijn.be/stops/207857"], ["https://data.delijn.be/stops/302297", "https://data.delijn.be/stops/303301"], ["https://data.delijn.be/stops/300018", "https://data.delijn.be/stops/301123"], ["https://data.delijn.be/stops/402670", "https://data.delijn.be/stops/410056"], ["https://data.delijn.be/stops/306952", "https://data.delijn.be/stops/306953"], ["https://data.delijn.be/stops/502272", "https://data.delijn.be/stops/505013"], ["https://data.delijn.be/stops/305257", "https://data.delijn.be/stops/306382"], ["https://data.delijn.be/stops/403374", "https://data.delijn.be/stops/403375"], ["https://data.delijn.be/stops/307523", "https://data.delijn.be/stops/307524"], ["https://data.delijn.be/stops/502178", "https://data.delijn.be/stops/507178"], ["https://data.delijn.be/stops/502001", "https://data.delijn.be/stops/507001"], ["https://data.delijn.be/stops/206356", "https://data.delijn.be/stops/207347"], ["https://data.delijn.be/stops/203221", "https://data.delijn.be/stops/205076"], ["https://data.delijn.be/stops/101854", "https://data.delijn.be/stops/109453"], ["https://data.delijn.be/stops/505205", "https://data.delijn.be/stops/505375"], ["https://data.delijn.be/stops/204780", "https://data.delijn.be/stops/205591"], ["https://data.delijn.be/stops/200683", "https://data.delijn.be/stops/210108"], ["https://data.delijn.be/stops/406231", "https://data.delijn.be/stops/406237"], ["https://data.delijn.be/stops/402133", "https://data.delijn.be/stops/402137"], ["https://data.delijn.be/stops/403512", "https://data.delijn.be/stops/403526"], ["https://data.delijn.be/stops/200533", "https://data.delijn.be/stops/204925"], ["https://data.delijn.be/stops/308236", "https://data.delijn.be/stops/308238"], ["https://data.delijn.be/stops/108338", "https://data.delijn.be/stops/109369"], ["https://data.delijn.be/stops/501145", "https://data.delijn.be/stops/506145"], ["https://data.delijn.be/stops/509059", "https://data.delijn.be/stops/509069"], ["https://data.delijn.be/stops/300029", "https://data.delijn.be/stops/300059"], ["https://data.delijn.be/stops/402201", "https://data.delijn.be/stops/402328"], ["https://data.delijn.be/stops/402769", "https://data.delijn.be/stops/409547"], ["https://data.delijn.be/stops/200368", "https://data.delijn.be/stops/201164"], ["https://data.delijn.be/stops/204031", "https://data.delijn.be/stops/205030"], ["https://data.delijn.be/stops/509349", "https://data.delijn.be/stops/509351"], ["https://data.delijn.be/stops/206753", "https://data.delijn.be/stops/206754"], ["https://data.delijn.be/stops/204299", "https://data.delijn.be/stops/204306"], ["https://data.delijn.be/stops/204126", "https://data.delijn.be/stops/204786"], ["https://data.delijn.be/stops/206864", "https://data.delijn.be/stops/207233"], ["https://data.delijn.be/stops/204519", "https://data.delijn.be/stops/205518"], ["https://data.delijn.be/stops/102068", "https://data.delijn.be/stops/107302"], ["https://data.delijn.be/stops/407496", "https://data.delijn.be/stops/407502"], ["https://data.delijn.be/stops/204080", "https://data.delijn.be/stops/205081"], ["https://data.delijn.be/stops/304838", "https://data.delijn.be/stops/308543"], ["https://data.delijn.be/stops/400717", "https://data.delijn.be/stops/400896"], ["https://data.delijn.be/stops/302396", "https://data.delijn.be/stops/308556"], ["https://data.delijn.be/stops/102778", "https://data.delijn.be/stops/102954"], ["https://data.delijn.be/stops/204151", "https://data.delijn.be/stops/205145"], ["https://data.delijn.be/stops/304371", "https://data.delijn.be/stops/305992"], ["https://data.delijn.be/stops/506172", "https://data.delijn.be/stops/506183"], ["https://data.delijn.be/stops/207764", "https://data.delijn.be/stops/208408"], ["https://data.delijn.be/stops/507248", "https://data.delijn.be/stops/507566"], ["https://data.delijn.be/stops/405550", "https://data.delijn.be/stops/405551"], ["https://data.delijn.be/stops/103820", "https://data.delijn.be/stops/103821"], ["https://data.delijn.be/stops/503005", "https://data.delijn.be/stops/505081"], ["https://data.delijn.be/stops/201008", "https://data.delijn.be/stops/210022"], ["https://data.delijn.be/stops/400900", "https://data.delijn.be/stops/400961"], ["https://data.delijn.be/stops/408565", "https://data.delijn.be/stops/408617"], ["https://data.delijn.be/stops/507455", "https://data.delijn.be/stops/507461"], ["https://data.delijn.be/stops/504247", "https://data.delijn.be/stops/504250"], ["https://data.delijn.be/stops/504042", "https://data.delijn.be/stops/504045"], ["https://data.delijn.be/stops/505155", "https://data.delijn.be/stops/507739"], ["https://data.delijn.be/stops/200876", "https://data.delijn.be/stops/505064"], ["https://data.delijn.be/stops/106027", "https://data.delijn.be/stops/106029"], ["https://data.delijn.be/stops/407229", "https://data.delijn.be/stops/407507"], ["https://data.delijn.be/stops/307300", "https://data.delijn.be/stops/307301"], ["https://data.delijn.be/stops/106484", "https://data.delijn.be/stops/109213"], ["https://data.delijn.be/stops/107654", "https://data.delijn.be/stops/107656"], ["https://data.delijn.be/stops/102494", "https://data.delijn.be/stops/400307"], ["https://data.delijn.be/stops/205977", "https://data.delijn.be/stops/208794"], ["https://data.delijn.be/stops/201950", "https://data.delijn.be/stops/211018"], ["https://data.delijn.be/stops/107864", "https://data.delijn.be/stops/107945"], ["https://data.delijn.be/stops/504358", "https://data.delijn.be/stops/508899"], ["https://data.delijn.be/stops/204062", "https://data.delijn.be/stops/205896"], ["https://data.delijn.be/stops/408720", "https://data.delijn.be/stops/408908"], ["https://data.delijn.be/stops/303134", "https://data.delijn.be/stops/308757"], ["https://data.delijn.be/stops/105365", "https://data.delijn.be/stops/109898"], ["https://data.delijn.be/stops/503218", "https://data.delijn.be/stops/509746"], ["https://data.delijn.be/stops/504282", "https://data.delijn.be/stops/509282"], ["https://data.delijn.be/stops/407812", "https://data.delijn.be/stops/408008"], ["https://data.delijn.be/stops/403256", "https://data.delijn.be/stops/403379"], ["https://data.delijn.be/stops/300955", "https://data.delijn.be/stops/300962"], ["https://data.delijn.be/stops/205024", "https://data.delijn.be/stops/205819"], ["https://data.delijn.be/stops/204295", "https://data.delijn.be/stops/205295"], ["https://data.delijn.be/stops/202290", "https://data.delijn.be/stops/210291"], ["https://data.delijn.be/stops/302232", "https://data.delijn.be/stops/302233"], ["https://data.delijn.be/stops/201844", "https://data.delijn.be/stops/209326"], ["https://data.delijn.be/stops/102503", "https://data.delijn.be/stops/102508"], ["https://data.delijn.be/stops/405149", "https://data.delijn.be/stops/405290"], ["https://data.delijn.be/stops/205290", "https://data.delijn.be/stops/205291"], ["https://data.delijn.be/stops/206642", "https://data.delijn.be/stops/207443"], ["https://data.delijn.be/stops/108468", "https://data.delijn.be/stops/108471"], ["https://data.delijn.be/stops/503126", "https://data.delijn.be/stops/503135"], ["https://data.delijn.be/stops/304251", "https://data.delijn.be/stops/304252"], ["https://data.delijn.be/stops/503230", "https://data.delijn.be/stops/508230"], ["https://data.delijn.be/stops/503697", "https://data.delijn.be/stops/509969"], ["https://data.delijn.be/stops/105473", "https://data.delijn.be/stops/105474"], ["https://data.delijn.be/stops/505379", "https://data.delijn.be/stops/508089"], ["https://data.delijn.be/stops/200649", "https://data.delijn.be/stops/201649"], ["https://data.delijn.be/stops/102219", "https://data.delijn.be/stops/105648"], ["https://data.delijn.be/stops/102169", "https://data.delijn.be/stops/103583"], ["https://data.delijn.be/stops/403784", "https://data.delijn.be/stops/403789"], ["https://data.delijn.be/stops/503101", "https://data.delijn.be/stops/505382"], ["https://data.delijn.be/stops/202675", "https://data.delijn.be/stops/202724"], ["https://data.delijn.be/stops/104048", "https://data.delijn.be/stops/109764"], ["https://data.delijn.be/stops/501021", "https://data.delijn.be/stops/506014"], ["https://data.delijn.be/stops/105066", "https://data.delijn.be/stops/105169"], ["https://data.delijn.be/stops/400547", "https://data.delijn.be/stops/400963"], ["https://data.delijn.be/stops/400736", "https://data.delijn.be/stops/400938"], ["https://data.delijn.be/stops/103934", "https://data.delijn.be/stops/107404"], ["https://data.delijn.be/stops/305893", "https://data.delijn.be/stops/306393"], ["https://data.delijn.be/stops/404336", "https://data.delijn.be/stops/404382"], ["https://data.delijn.be/stops/103097", "https://data.delijn.be/stops/103271"], ["https://data.delijn.be/stops/301561", "https://data.delijn.be/stops/308083"], ["https://data.delijn.be/stops/301824", "https://data.delijn.be/stops/302767"], ["https://data.delijn.be/stops/501077", "https://data.delijn.be/stops/501082"], ["https://data.delijn.be/stops/504376", "https://data.delijn.be/stops/505071"], ["https://data.delijn.be/stops/102930", "https://data.delijn.be/stops/106030"], ["https://data.delijn.be/stops/206111", "https://data.delijn.be/stops/207112"], ["https://data.delijn.be/stops/302255", "https://data.delijn.be/stops/304357"], ["https://data.delijn.be/stops/106602", "https://data.delijn.be/stops/107212"], ["https://data.delijn.be/stops/304721", "https://data.delijn.be/stops/305269"], ["https://data.delijn.be/stops/403328", "https://data.delijn.be/stops/409194"], ["https://data.delijn.be/stops/301347", "https://data.delijn.be/stops/306683"], ["https://data.delijn.be/stops/407519", "https://data.delijn.be/stops/408305"], ["https://data.delijn.be/stops/510013", "https://data.delijn.be/stops/510014"], ["https://data.delijn.be/stops/400449", "https://data.delijn.be/stops/400489"], ["https://data.delijn.be/stops/508120", "https://data.delijn.be/stops/508122"], ["https://data.delijn.be/stops/200168", "https://data.delijn.be/stops/201168"], ["https://data.delijn.be/stops/407405", "https://data.delijn.be/stops/408482"], ["https://data.delijn.be/stops/102188", "https://data.delijn.be/stops/105354"], ["https://data.delijn.be/stops/203045", "https://data.delijn.be/stops/203046"], ["https://data.delijn.be/stops/203319", "https://data.delijn.be/stops/203320"], ["https://data.delijn.be/stops/302155", "https://data.delijn.be/stops/302200"], ["https://data.delijn.be/stops/500007", "https://data.delijn.be/stops/503742"], ["https://data.delijn.be/stops/200262", "https://data.delijn.be/stops/203546"], ["https://data.delijn.be/stops/205910", "https://data.delijn.be/stops/205911"], ["https://data.delijn.be/stops/301282", "https://data.delijn.be/stops/306252"], ["https://data.delijn.be/stops/206108", "https://data.delijn.be/stops/206110"], ["https://data.delijn.be/stops/207224", "https://data.delijn.be/stops/207225"], ["https://data.delijn.be/stops/307349", "https://data.delijn.be/stops/308590"], ["https://data.delijn.be/stops/304271", "https://data.delijn.be/stops/304272"], ["https://data.delijn.be/stops/407444", "https://data.delijn.be/stops/407499"], ["https://data.delijn.be/stops/200718", "https://data.delijn.be/stops/203582"], ["https://data.delijn.be/stops/504082", "https://data.delijn.be/stops/509082"], ["https://data.delijn.be/stops/206089", "https://data.delijn.be/stops/207088"], ["https://data.delijn.be/stops/204437", "https://data.delijn.be/stops/205436"], ["https://data.delijn.be/stops/503677", "https://data.delijn.be/stops/508678"], ["https://data.delijn.be/stops/407822", "https://data.delijn.be/stops/407973"], ["https://data.delijn.be/stops/300591", "https://data.delijn.be/stops/308897"], ["https://data.delijn.be/stops/401892", "https://data.delijn.be/stops/401897"], ["https://data.delijn.be/stops/103292", "https://data.delijn.be/stops/105509"], ["https://data.delijn.be/stops/207196", "https://data.delijn.be/stops/207201"], ["https://data.delijn.be/stops/207030", "https://data.delijn.be/stops/207916"], ["https://data.delijn.be/stops/406920", "https://data.delijn.be/stops/409465"], ["https://data.delijn.be/stops/505202", "https://data.delijn.be/stops/505369"], ["https://data.delijn.be/stops/105266", "https://data.delijn.be/stops/109968"], ["https://data.delijn.be/stops/206489", "https://data.delijn.be/stops/206579"], ["https://data.delijn.be/stops/104667", "https://data.delijn.be/stops/104886"], ["https://data.delijn.be/stops/101658", "https://data.delijn.be/stops/107810"], ["https://data.delijn.be/stops/302109", "https://data.delijn.be/stops/302112"], ["https://data.delijn.be/stops/410183", "https://data.delijn.be/stops/410208"], ["https://data.delijn.be/stops/103100", "https://data.delijn.be/stops/103120"], ["https://data.delijn.be/stops/400814", "https://data.delijn.be/stops/400823"], ["https://data.delijn.be/stops/202265", "https://data.delijn.be/stops/203264"], ["https://data.delijn.be/stops/505365", "https://data.delijn.be/stops/508884"], ["https://data.delijn.be/stops/404768", "https://data.delijn.be/stops/404774"], ["https://data.delijn.be/stops/103022", "https://data.delijn.be/stops/109790"], ["https://data.delijn.be/stops/305820", "https://data.delijn.be/stops/305871"], ["https://data.delijn.be/stops/400353", "https://data.delijn.be/stops/400397"], ["https://data.delijn.be/stops/408951", "https://data.delijn.be/stops/408977"], ["https://data.delijn.be/stops/200334", "https://data.delijn.be/stops/200569"], ["https://data.delijn.be/stops/400164", "https://data.delijn.be/stops/409145"], ["https://data.delijn.be/stops/403292", "https://data.delijn.be/stops/410028"], ["https://data.delijn.be/stops/506032", "https://data.delijn.be/stops/506588"], ["https://data.delijn.be/stops/302840", "https://data.delijn.be/stops/302841"], ["https://data.delijn.be/stops/210314", "https://data.delijn.be/stops/218936"], ["https://data.delijn.be/stops/202065", "https://data.delijn.be/stops/202683"], ["https://data.delijn.be/stops/108273", "https://data.delijn.be/stops/108277"], ["https://data.delijn.be/stops/400454", "https://data.delijn.be/stops/404843"], ["https://data.delijn.be/stops/200726", "https://data.delijn.be/stops/200730"], ["https://data.delijn.be/stops/406848", "https://data.delijn.be/stops/406849"], ["https://data.delijn.be/stops/503872", "https://data.delijn.be/stops/503873"], ["https://data.delijn.be/stops/103295", "https://data.delijn.be/stops/103300"], ["https://data.delijn.be/stops/502681", "https://data.delijn.be/stops/502725"], ["https://data.delijn.be/stops/502540", "https://data.delijn.be/stops/502802"], ["https://data.delijn.be/stops/109858", "https://data.delijn.be/stops/406859"], ["https://data.delijn.be/stops/202727", "https://data.delijn.be/stops/203727"], ["https://data.delijn.be/stops/102866", "https://data.delijn.be/stops/107660"], ["https://data.delijn.be/stops/503075", "https://data.delijn.be/stops/508069"], ["https://data.delijn.be/stops/407728", "https://data.delijn.be/stops/409777"], ["https://data.delijn.be/stops/501742", "https://data.delijn.be/stops/509503"], ["https://data.delijn.be/stops/102728", "https://data.delijn.be/stops/106590"], ["https://data.delijn.be/stops/202526", "https://data.delijn.be/stops/203521"], ["https://data.delijn.be/stops/301487", "https://data.delijn.be/stops/307958"], ["https://data.delijn.be/stops/203186", "https://data.delijn.be/stops/203273"], ["https://data.delijn.be/stops/502564", "https://data.delijn.be/stops/502565"], ["https://data.delijn.be/stops/204650", "https://data.delijn.be/stops/205286"], ["https://data.delijn.be/stops/202137", "https://data.delijn.be/stops/203076"], ["https://data.delijn.be/stops/407170", "https://data.delijn.be/stops/407489"], ["https://data.delijn.be/stops/305685", "https://data.delijn.be/stops/305687"], ["https://data.delijn.be/stops/502768", "https://data.delijn.be/stops/507307"], ["https://data.delijn.be/stops/109662", "https://data.delijn.be/stops/109663"], ["https://data.delijn.be/stops/508235", "https://data.delijn.be/stops/508365"], ["https://data.delijn.be/stops/103613", "https://data.delijn.be/stops/106194"], ["https://data.delijn.be/stops/201455", "https://data.delijn.be/stops/201459"], ["https://data.delijn.be/stops/106004", "https://data.delijn.be/stops/106008"], ["https://data.delijn.be/stops/304161", "https://data.delijn.be/stops/304172"], ["https://data.delijn.be/stops/106381", "https://data.delijn.be/stops/106385"], ["https://data.delijn.be/stops/504599", "https://data.delijn.be/stops/509527"], ["https://data.delijn.be/stops/502021", "https://data.delijn.be/stops/507927"], ["https://data.delijn.be/stops/503412", "https://data.delijn.be/stops/508417"], ["https://data.delijn.be/stops/105456", "https://data.delijn.be/stops/105465"], ["https://data.delijn.be/stops/503016", "https://data.delijn.be/stops/508014"], ["https://data.delijn.be/stops/301920", "https://data.delijn.be/stops/301921"], ["https://data.delijn.be/stops/301753", "https://data.delijn.be/stops/301754"], ["https://data.delijn.be/stops/409308", "https://data.delijn.be/stops/410067"], ["https://data.delijn.be/stops/305103", "https://data.delijn.be/stops/305114"], ["https://data.delijn.be/stops/206131", "https://data.delijn.be/stops/207131"], ["https://data.delijn.be/stops/501127", "https://data.delijn.be/stops/501137"], ["https://data.delijn.be/stops/109370", "https://data.delijn.be/stops/109371"], ["https://data.delijn.be/stops/201579", "https://data.delijn.be/stops/201730"], ["https://data.delijn.be/stops/103046", "https://data.delijn.be/stops/103107"], ["https://data.delijn.be/stops/105080", "https://data.delijn.be/stops/105081"], ["https://data.delijn.be/stops/200153", "https://data.delijn.be/stops/201153"], ["https://data.delijn.be/stops/305622", "https://data.delijn.be/stops/305623"], ["https://data.delijn.be/stops/503480", "https://data.delijn.be/stops/504837"], ["https://data.delijn.be/stops/500558", "https://data.delijn.be/stops/506031"], ["https://data.delijn.be/stops/102756", "https://data.delijn.be/stops/103341"], ["https://data.delijn.be/stops/109368", "https://data.delijn.be/stops/109369"], ["https://data.delijn.be/stops/101470", "https://data.delijn.be/stops/101963"], ["https://data.delijn.be/stops/203630", "https://data.delijn.be/stops/203631"], ["https://data.delijn.be/stops/203923", "https://data.delijn.be/stops/203924"], ["https://data.delijn.be/stops/300723", "https://data.delijn.be/stops/306366"], ["https://data.delijn.be/stops/500041", "https://data.delijn.be/stops/500042"], ["https://data.delijn.be/stops/404872", "https://data.delijn.be/stops/404873"], ["https://data.delijn.be/stops/102906", "https://data.delijn.be/stops/102907"], ["https://data.delijn.be/stops/504338", "https://data.delijn.be/stops/509339"], ["https://data.delijn.be/stops/401744", "https://data.delijn.be/stops/407348"], ["https://data.delijn.be/stops/300277", "https://data.delijn.be/stops/306656"], ["https://data.delijn.be/stops/300993", "https://data.delijn.be/stops/308356"], ["https://data.delijn.be/stops/405320", "https://data.delijn.be/stops/305058"], ["https://data.delijn.be/stops/408638", "https://data.delijn.be/stops/302868"], ["https://data.delijn.be/stops/204229", "https://data.delijn.be/stops/204231"], ["https://data.delijn.be/stops/207113", "https://data.delijn.be/stops/207229"], ["https://data.delijn.be/stops/400060", "https://data.delijn.be/stops/405130"], ["https://data.delijn.be/stops/201972", "https://data.delijn.be/stops/203863"], ["https://data.delijn.be/stops/200025", "https://data.delijn.be/stops/203070"], ["https://data.delijn.be/stops/108232", "https://data.delijn.be/stops/108233"], ["https://data.delijn.be/stops/504674", "https://data.delijn.be/stops/505307"], ["https://data.delijn.be/stops/200771", "https://data.delijn.be/stops/201728"], ["https://data.delijn.be/stops/206921", "https://data.delijn.be/stops/207383"], ["https://data.delijn.be/stops/106797", "https://data.delijn.be/stops/106868"], ["https://data.delijn.be/stops/106845", "https://data.delijn.be/stops/106984"], ["https://data.delijn.be/stops/106319", "https://data.delijn.be/stops/106321"], ["https://data.delijn.be/stops/300459", "https://data.delijn.be/stops/305012"], ["https://data.delijn.be/stops/208806", "https://data.delijn.be/stops/208837"], ["https://data.delijn.be/stops/204110", "https://data.delijn.be/stops/205363"], ["https://data.delijn.be/stops/402159", "https://data.delijn.be/stops/402287"], ["https://data.delijn.be/stops/101211", "https://data.delijn.be/stops/104909"], ["https://data.delijn.be/stops/502288", "https://data.delijn.be/stops/507299"], ["https://data.delijn.be/stops/302036", "https://data.delijn.be/stops/302037"], ["https://data.delijn.be/stops/206372", "https://data.delijn.be/stops/207371"], ["https://data.delijn.be/stops/400051", "https://data.delijn.be/stops/400073"], ["https://data.delijn.be/stops/503540", "https://data.delijn.be/stops/508540"], ["https://data.delijn.be/stops/404420", "https://data.delijn.be/stops/404537"], ["https://data.delijn.be/stops/208017", "https://data.delijn.be/stops/209021"], ["https://data.delijn.be/stops/106840", "https://data.delijn.be/stops/109749"], ["https://data.delijn.be/stops/300389", "https://data.delijn.be/stops/304551"], ["https://data.delijn.be/stops/404150", "https://data.delijn.be/stops/404168"], ["https://data.delijn.be/stops/101371", "https://data.delijn.be/stops/101403"], ["https://data.delijn.be/stops/304945", "https://data.delijn.be/stops/304950"], ["https://data.delijn.be/stops/204532", "https://data.delijn.be/stops/205536"], ["https://data.delijn.be/stops/303070", "https://data.delijn.be/stops/308757"], ["https://data.delijn.be/stops/104846", "https://data.delijn.be/stops/106796"], ["https://data.delijn.be/stops/407815", "https://data.delijn.be/stops/407943"], ["https://data.delijn.be/stops/501438", "https://data.delijn.be/stops/506225"], ["https://data.delijn.be/stops/104161", "https://data.delijn.be/stops/104375"], ["https://data.delijn.be/stops/406712", "https://data.delijn.be/stops/408742"], ["https://data.delijn.be/stops/407036", "https://data.delijn.be/stops/407059"], ["https://data.delijn.be/stops/407897", "https://data.delijn.be/stops/408045"], ["https://data.delijn.be/stops/508649", "https://data.delijn.be/stops/509767"], ["https://data.delijn.be/stops/200861", "https://data.delijn.be/stops/200862"], ["https://data.delijn.be/stops/202408", "https://data.delijn.be/stops/202418"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/505412"], ["https://data.delijn.be/stops/105001", "https://data.delijn.be/stops/105224"], ["https://data.delijn.be/stops/306726", "https://data.delijn.be/stops/306728"], ["https://data.delijn.be/stops/301701", "https://data.delijn.be/stops/301742"], ["https://data.delijn.be/stops/301184", "https://data.delijn.be/stops/302823"], ["https://data.delijn.be/stops/403318", "https://data.delijn.be/stops/403319"], ["https://data.delijn.be/stops/106872", "https://data.delijn.be/stops/106881"], ["https://data.delijn.be/stops/202286", "https://data.delijn.be/stops/203287"], ["https://data.delijn.be/stops/304378", "https://data.delijn.be/stops/304399"], ["https://data.delijn.be/stops/302737", "https://data.delijn.be/stops/302738"], ["https://data.delijn.be/stops/202920", "https://data.delijn.be/stops/203920"], ["https://data.delijn.be/stops/206786", "https://data.delijn.be/stops/208542"], ["https://data.delijn.be/stops/406271", "https://data.delijn.be/stops/406278"], ["https://data.delijn.be/stops/408861", "https://data.delijn.be/stops/408862"], ["https://data.delijn.be/stops/402889", "https://data.delijn.be/stops/402892"], ["https://data.delijn.be/stops/200959", "https://data.delijn.be/stops/202517"], ["https://data.delijn.be/stops/408338", "https://data.delijn.be/stops/408351"], ["https://data.delijn.be/stops/104347", "https://data.delijn.be/stops/105917"], ["https://data.delijn.be/stops/503459", "https://data.delijn.be/stops/508459"], ["https://data.delijn.be/stops/206675", "https://data.delijn.be/stops/219005"], ["https://data.delijn.be/stops/306693", "https://data.delijn.be/stops/308788"], ["https://data.delijn.be/stops/502661", "https://data.delijn.be/stops/507661"], ["https://data.delijn.be/stops/200815", "https://data.delijn.be/stops/210016"], ["https://data.delijn.be/stops/107702", "https://data.delijn.be/stops/107714"], ["https://data.delijn.be/stops/503314", "https://data.delijn.be/stops/508314"], ["https://data.delijn.be/stops/405298", "https://data.delijn.be/stops/407333"], ["https://data.delijn.be/stops/107062", "https://data.delijn.be/stops/109255"], ["https://data.delijn.be/stops/302926", "https://data.delijn.be/stops/306402"], ["https://data.delijn.be/stops/500948", "https://data.delijn.be/stops/505838"], ["https://data.delijn.be/stops/306720", "https://data.delijn.be/stops/306721"], ["https://data.delijn.be/stops/307312", "https://data.delijn.be/stops/307313"], ["https://data.delijn.be/stops/107438", "https://data.delijn.be/stops/107441"], ["https://data.delijn.be/stops/205413", "https://data.delijn.be/stops/205769"], ["https://data.delijn.be/stops/402881", "https://data.delijn.be/stops/402884"], ["https://data.delijn.be/stops/106137", "https://data.delijn.be/stops/106138"], ["https://data.delijn.be/stops/208951", "https://data.delijn.be/stops/216019"], ["https://data.delijn.be/stops/200840", "https://data.delijn.be/stops/505753"], ["https://data.delijn.be/stops/300523", "https://data.delijn.be/stops/303201"], ["https://data.delijn.be/stops/307153", "https://data.delijn.be/stops/307155"], ["https://data.delijn.be/stops/400912", "https://data.delijn.be/stops/400923"], ["https://data.delijn.be/stops/408827", "https://data.delijn.be/stops/408832"], ["https://data.delijn.be/stops/302481", "https://data.delijn.be/stops/302640"], ["https://data.delijn.be/stops/101188", "https://data.delijn.be/stops/205651"], ["https://data.delijn.be/stops/304004", "https://data.delijn.be/stops/304006"], ["https://data.delijn.be/stops/401635", "https://data.delijn.be/stops/308216"], ["https://data.delijn.be/stops/304834", "https://data.delijn.be/stops/305426"], ["https://data.delijn.be/stops/201673", "https://data.delijn.be/stops/209662"], ["https://data.delijn.be/stops/206900", "https://data.delijn.be/stops/306078"], ["https://data.delijn.be/stops/504539", "https://data.delijn.be/stops/509902"], ["https://data.delijn.be/stops/105908", "https://data.delijn.be/stops/109745"], ["https://data.delijn.be/stops/505099", "https://data.delijn.be/stops/505123"], ["https://data.delijn.be/stops/204721", "https://data.delijn.be/stops/214013"], ["https://data.delijn.be/stops/105091", "https://data.delijn.be/stops/108877"], ["https://data.delijn.be/stops/102202", "https://data.delijn.be/stops/105789"], ["https://data.delijn.be/stops/405822", "https://data.delijn.be/stops/405840"], ["https://data.delijn.be/stops/103909", "https://data.delijn.be/stops/105799"], ["https://data.delijn.be/stops/307211", "https://data.delijn.be/stops/307283"], ["https://data.delijn.be/stops/300447", "https://data.delijn.be/stops/308052"], ["https://data.delijn.be/stops/307002", "https://data.delijn.be/stops/307110"], ["https://data.delijn.be/stops/205262", "https://data.delijn.be/stops/205310"], ["https://data.delijn.be/stops/106787", "https://data.delijn.be/stops/106790"], ["https://data.delijn.be/stops/202677", "https://data.delijn.be/stops/202690"], ["https://data.delijn.be/stops/405109", "https://data.delijn.be/stops/405664"], ["https://data.delijn.be/stops/102491", "https://data.delijn.be/stops/400307"], ["https://data.delijn.be/stops/208565", "https://data.delijn.be/stops/209547"], ["https://data.delijn.be/stops/201128", "https://data.delijn.be/stops/201210"], ["https://data.delijn.be/stops/302140", "https://data.delijn.be/stops/302141"], ["https://data.delijn.be/stops/106695", "https://data.delijn.be/stops/109390"], ["https://data.delijn.be/stops/400937", "https://data.delijn.be/stops/400941"], ["https://data.delijn.be/stops/305732", "https://data.delijn.be/stops/305745"], ["https://data.delijn.be/stops/108648", "https://data.delijn.be/stops/108651"], ["https://data.delijn.be/stops/102493", "https://data.delijn.be/stops/102498"], ["https://data.delijn.be/stops/206177", "https://data.delijn.be/stops/305923"], ["https://data.delijn.be/stops/206799", "https://data.delijn.be/stops/207853"], ["https://data.delijn.be/stops/300509", "https://data.delijn.be/stops/305523"], ["https://data.delijn.be/stops/101781", "https://data.delijn.be/stops/104185"], ["https://data.delijn.be/stops/407176", "https://data.delijn.be/stops/409856"], ["https://data.delijn.be/stops/408571", "https://data.delijn.be/stops/408580"], ["https://data.delijn.be/stops/504172", "https://data.delijn.be/stops/509172"], ["https://data.delijn.be/stops/301671", "https://data.delijn.be/stops/307338"], ["https://data.delijn.be/stops/303617", "https://data.delijn.be/stops/303625"], ["https://data.delijn.be/stops/203527", "https://data.delijn.be/stops/210009"], ["https://data.delijn.be/stops/102703", "https://data.delijn.be/stops/107331"], ["https://data.delijn.be/stops/304369", "https://data.delijn.be/stops/307366"], ["https://data.delijn.be/stops/505664", "https://data.delijn.be/stops/509928"], ["https://data.delijn.be/stops/405363", "https://data.delijn.be/stops/405407"], ["https://data.delijn.be/stops/107542", "https://data.delijn.be/stops/109597"], ["https://data.delijn.be/stops/401441", "https://data.delijn.be/stops/404157"], ["https://data.delijn.be/stops/406172", "https://data.delijn.be/stops/406187"], ["https://data.delijn.be/stops/404450", "https://data.delijn.be/stops/404495"], ["https://data.delijn.be/stops/407492", "https://data.delijn.be/stops/407540"], ["https://data.delijn.be/stops/200079", "https://data.delijn.be/stops/202895"], ["https://data.delijn.be/stops/505512", "https://data.delijn.be/stops/505607"], ["https://data.delijn.be/stops/303778", "https://data.delijn.be/stops/303779"], ["https://data.delijn.be/stops/401059", "https://data.delijn.be/stops/401060"], ["https://data.delijn.be/stops/501472", "https://data.delijn.be/stops/505398"], ["https://data.delijn.be/stops/501176", "https://data.delijn.be/stops/506176"], ["https://data.delijn.be/stops/406310", "https://data.delijn.be/stops/407313"], ["https://data.delijn.be/stops/102131", "https://data.delijn.be/stops/106420"], ["https://data.delijn.be/stops/202582", "https://data.delijn.be/stops/203583"], ["https://data.delijn.be/stops/300643", "https://data.delijn.be/stops/304875"], ["https://data.delijn.be/stops/300880", "https://data.delijn.be/stops/300881"], ["https://data.delijn.be/stops/308027", "https://data.delijn.be/stops/308028"], ["https://data.delijn.be/stops/402400", "https://data.delijn.be/stops/402401"], ["https://data.delijn.be/stops/209174", "https://data.delijn.be/stops/209175"], ["https://data.delijn.be/stops/101718", "https://data.delijn.be/stops/107804"], ["https://data.delijn.be/stops/302742", "https://data.delijn.be/stops/302782"], ["https://data.delijn.be/stops/103286", "https://data.delijn.be/stops/109373"], ["https://data.delijn.be/stops/102647", "https://data.delijn.be/stops/109652"], ["https://data.delijn.be/stops/301598", "https://data.delijn.be/stops/304257"], ["https://data.delijn.be/stops/301655", "https://data.delijn.be/stops/307754"], ["https://data.delijn.be/stops/106400", "https://data.delijn.be/stops/107407"], ["https://data.delijn.be/stops/509833", "https://data.delijn.be/stops/509834"], ["https://data.delijn.be/stops/202494", "https://data.delijn.be/stops/202495"], ["https://data.delijn.be/stops/301048", "https://data.delijn.be/stops/301049"], ["https://data.delijn.be/stops/306959", "https://data.delijn.be/stops/306960"], ["https://data.delijn.be/stops/208690", "https://data.delijn.be/stops/208692"], ["https://data.delijn.be/stops/204068", "https://data.delijn.be/stops/204195"], ["https://data.delijn.be/stops/102668", "https://data.delijn.be/stops/306854"], ["https://data.delijn.be/stops/104812", "https://data.delijn.be/stops/105369"], ["https://data.delijn.be/stops/404510", "https://data.delijn.be/stops/404528"], ["https://data.delijn.be/stops/505141", "https://data.delijn.be/stops/507240"], ["https://data.delijn.be/stops/501438", "https://data.delijn.be/stops/506440"], ["https://data.delijn.be/stops/400732", "https://data.delijn.be/stops/400742"], ["https://data.delijn.be/stops/504989", "https://data.delijn.be/stops/509042"], ["https://data.delijn.be/stops/301376", "https://data.delijn.be/stops/302417"], ["https://data.delijn.be/stops/405501", "https://data.delijn.be/stops/405502"], ["https://data.delijn.be/stops/408943", "https://data.delijn.be/stops/408944"], ["https://data.delijn.be/stops/305429", "https://data.delijn.be/stops/308866"], ["https://data.delijn.be/stops/502283", "https://data.delijn.be/stops/507281"], ["https://data.delijn.be/stops/401026", "https://data.delijn.be/stops/401039"], ["https://data.delijn.be/stops/409117", "https://data.delijn.be/stops/409221"], ["https://data.delijn.be/stops/502643", "https://data.delijn.be/stops/507151"], ["https://data.delijn.be/stops/107224", "https://data.delijn.be/stops/109888"], ["https://data.delijn.be/stops/402743", "https://data.delijn.be/stops/402879"], ["https://data.delijn.be/stops/102526", "https://data.delijn.be/stops/402314"], ["https://data.delijn.be/stops/403412", "https://data.delijn.be/stops/410128"], ["https://data.delijn.be/stops/505102", "https://data.delijn.be/stops/509091"], ["https://data.delijn.be/stops/200960", "https://data.delijn.be/stops/202193"], ["https://data.delijn.be/stops/401833", "https://data.delijn.be/stops/401834"], ["https://data.delijn.be/stops/200336", "https://data.delijn.be/stops/200569"], ["https://data.delijn.be/stops/408600", "https://data.delijn.be/stops/408655"], ["https://data.delijn.be/stops/404206", "https://data.delijn.be/stops/404216"], ["https://data.delijn.be/stops/408785", "https://data.delijn.be/stops/408795"], ["https://data.delijn.be/stops/101075", "https://data.delijn.be/stops/102890"], ["https://data.delijn.be/stops/102010", "https://data.delijn.be/stops/108165"], ["https://data.delijn.be/stops/102093", "https://data.delijn.be/stops/105477"], ["https://data.delijn.be/stops/306944", "https://data.delijn.be/stops/306947"], ["https://data.delijn.be/stops/206941", "https://data.delijn.be/stops/209242"], ["https://data.delijn.be/stops/300042", "https://data.delijn.be/stops/300071"], ["https://data.delijn.be/stops/401267", "https://data.delijn.be/stops/410124"], ["https://data.delijn.be/stops/214003", "https://data.delijn.be/stops/215003"], ["https://data.delijn.be/stops/201929", "https://data.delijn.be/stops/203475"], ["https://data.delijn.be/stops/302375", "https://data.delijn.be/stops/304083"], ["https://data.delijn.be/stops/407991", "https://data.delijn.be/stops/407993"], ["https://data.delijn.be/stops/508077", "https://data.delijn.be/stops/508995"], ["https://data.delijn.be/stops/409110", "https://data.delijn.be/stops/409127"], ["https://data.delijn.be/stops/302907", "https://data.delijn.be/stops/302909"], ["https://data.delijn.be/stops/303718", "https://data.delijn.be/stops/303744"], ["https://data.delijn.be/stops/508499", "https://data.delijn.be/stops/508875"], ["https://data.delijn.be/stops/403633", "https://data.delijn.be/stops/404408"], ["https://data.delijn.be/stops/304936", "https://data.delijn.be/stops/304938"], ["https://data.delijn.be/stops/502295", "https://data.delijn.be/stops/507292"], ["https://data.delijn.be/stops/101421", "https://data.delijn.be/stops/107268"], ["https://data.delijn.be/stops/405022", "https://data.delijn.be/stops/405023"], ["https://data.delijn.be/stops/203272", "https://data.delijn.be/stops/203419"], ["https://data.delijn.be/stops/105811", "https://data.delijn.be/stops/105812"], ["https://data.delijn.be/stops/200703", "https://data.delijn.be/stops/203327"], ["https://data.delijn.be/stops/505054", "https://data.delijn.be/stops/507366"], ["https://data.delijn.be/stops/403043", "https://data.delijn.be/stops/403088"], ["https://data.delijn.be/stops/204587", "https://data.delijn.be/stops/205168"], ["https://data.delijn.be/stops/202035", "https://data.delijn.be/stops/202987"], ["https://data.delijn.be/stops/109794", "https://data.delijn.be/stops/109837"], ["https://data.delijn.be/stops/207672", "https://data.delijn.be/stops/209099"], ["https://data.delijn.be/stops/300011", "https://data.delijn.be/stops/304622"], ["https://data.delijn.be/stops/503550", "https://data.delijn.be/stops/505191"], ["https://data.delijn.be/stops/300595", "https://data.delijn.be/stops/303021"], ["https://data.delijn.be/stops/300219", "https://data.delijn.be/stops/300220"], ["https://data.delijn.be/stops/204016", "https://data.delijn.be/stops/205103"], ["https://data.delijn.be/stops/408823", "https://data.delijn.be/stops/408825"], ["https://data.delijn.be/stops/109996", "https://data.delijn.be/stops/400438"], ["https://data.delijn.be/stops/209690", "https://data.delijn.be/stops/209692"], ["https://data.delijn.be/stops/203196", "https://data.delijn.be/stops/211087"], ["https://data.delijn.be/stops/204650", "https://data.delijn.be/stops/205651"], ["https://data.delijn.be/stops/208357", "https://data.delijn.be/stops/209357"], ["https://data.delijn.be/stops/206434", "https://data.delijn.be/stops/207433"], ["https://data.delijn.be/stops/304500", "https://data.delijn.be/stops/304513"], ["https://data.delijn.be/stops/405146", "https://data.delijn.be/stops/405227"], ["https://data.delijn.be/stops/104476", "https://data.delijn.be/stops/308607"], ["https://data.delijn.be/stops/106567", "https://data.delijn.be/stops/108540"], ["https://data.delijn.be/stops/401418", "https://data.delijn.be/stops/305495"], ["https://data.delijn.be/stops/203345", "https://data.delijn.be/stops/209743"], ["https://data.delijn.be/stops/401252", "https://data.delijn.be/stops/401396"], ["https://data.delijn.be/stops/403312", "https://data.delijn.be/stops/403313"], ["https://data.delijn.be/stops/204719", "https://data.delijn.be/stops/204721"], ["https://data.delijn.be/stops/102670", "https://data.delijn.be/stops/103756"], ["https://data.delijn.be/stops/208837", "https://data.delijn.be/stops/209213"], ["https://data.delijn.be/stops/201105", "https://data.delijn.be/stops/201949"], ["https://data.delijn.be/stops/503023", "https://data.delijn.be/stops/503025"], ["https://data.delijn.be/stops/200156", "https://data.delijn.be/stops/200413"], ["https://data.delijn.be/stops/301548", "https://data.delijn.be/stops/301553"], ["https://data.delijn.be/stops/407037", "https://data.delijn.be/stops/407059"], ["https://data.delijn.be/stops/304689", "https://data.delijn.be/stops/304786"], ["https://data.delijn.be/stops/101364", "https://data.delijn.be/stops/107301"], ["https://data.delijn.be/stops/108679", "https://data.delijn.be/stops/306612"], ["https://data.delijn.be/stops/207351", "https://data.delijn.be/stops/207729"], ["https://data.delijn.be/stops/105091", "https://data.delijn.be/stops/105093"], ["https://data.delijn.be/stops/408302", "https://data.delijn.be/stops/408370"], ["https://data.delijn.be/stops/402121", "https://data.delijn.be/stops/402392"], ["https://data.delijn.be/stops/201182", "https://data.delijn.be/stops/202323"], ["https://data.delijn.be/stops/202144", "https://data.delijn.be/stops/202614"], ["https://data.delijn.be/stops/107236", "https://data.delijn.be/stops/107920"], ["https://data.delijn.be/stops/503347", "https://data.delijn.be/stops/508347"], ["https://data.delijn.be/stops/504411", "https://data.delijn.be/stops/505166"], ["https://data.delijn.be/stops/504222", "https://data.delijn.be/stops/504634"], ["https://data.delijn.be/stops/505646", "https://data.delijn.be/stops/507468"], ["https://data.delijn.be/stops/102517", "https://data.delijn.be/stops/406510"], ["https://data.delijn.be/stops/201769", "https://data.delijn.be/stops/208397"], ["https://data.delijn.be/stops/101062", "https://data.delijn.be/stops/103033"], ["https://data.delijn.be/stops/410002", "https://data.delijn.be/stops/410004"], ["https://data.delijn.be/stops/206837", "https://data.delijn.be/stops/207837"], ["https://data.delijn.be/stops/407523", "https://data.delijn.be/stops/407556"], ["https://data.delijn.be/stops/408017", "https://data.delijn.be/stops/408036"], ["https://data.delijn.be/stops/108210", "https://data.delijn.be/stops/108965"], ["https://data.delijn.be/stops/202384", "https://data.delijn.be/stops/202385"], ["https://data.delijn.be/stops/502357", "https://data.delijn.be/stops/507679"], ["https://data.delijn.be/stops/108966", "https://data.delijn.be/stops/108985"], ["https://data.delijn.be/stops/301927", "https://data.delijn.be/stops/306159"], ["https://data.delijn.be/stops/206633", "https://data.delijn.be/stops/207634"], ["https://data.delijn.be/stops/400094", "https://data.delijn.be/stops/409143"], ["https://data.delijn.be/stops/203388", "https://data.delijn.be/stops/209947"], ["https://data.delijn.be/stops/204221", "https://data.delijn.be/stops/204222"], ["https://data.delijn.be/stops/407464", "https://data.delijn.be/stops/410287"], ["https://data.delijn.be/stops/503088", "https://data.delijn.be/stops/503105"], ["https://data.delijn.be/stops/405156", "https://data.delijn.be/stops/405193"], ["https://data.delijn.be/stops/502689", "https://data.delijn.be/stops/507921"], ["https://data.delijn.be/stops/407286", "https://data.delijn.be/stops/408472"], ["https://data.delijn.be/stops/401026", "https://data.delijn.be/stops/409220"], ["https://data.delijn.be/stops/300024", "https://data.delijn.be/stops/307262"], ["https://data.delijn.be/stops/408370", "https://data.delijn.be/stops/408402"], ["https://data.delijn.be/stops/501412", "https://data.delijn.be/stops/501413"], ["https://data.delijn.be/stops/109225", "https://data.delijn.be/stops/109226"], ["https://data.delijn.be/stops/104821", "https://data.delijn.be/stops/104822"], ["https://data.delijn.be/stops/305400", "https://data.delijn.be/stops/305401"], ["https://data.delijn.be/stops/503401", "https://data.delijn.be/stops/504957"], ["https://data.delijn.be/stops/404136", "https://data.delijn.be/stops/404141"], ["https://data.delijn.be/stops/202414", "https://data.delijn.be/stops/202415"], ["https://data.delijn.be/stops/306643", "https://data.delijn.be/stops/308767"], ["https://data.delijn.be/stops/202465", "https://data.delijn.be/stops/203427"], ["https://data.delijn.be/stops/403716", "https://data.delijn.be/stops/403717"], ["https://data.delijn.be/stops/103397", "https://data.delijn.be/stops/108005"], ["https://data.delijn.be/stops/501641", "https://data.delijn.be/stops/506191"], ["https://data.delijn.be/stops/202868", "https://data.delijn.be/stops/208713"], ["https://data.delijn.be/stops/200337", "https://data.delijn.be/stops/201674"], ["https://data.delijn.be/stops/509264", "https://data.delijn.be/stops/509661"], ["https://data.delijn.be/stops/304348", "https://data.delijn.be/stops/304355"], ["https://data.delijn.be/stops/302495", "https://data.delijn.be/stops/302501"], ["https://data.delijn.be/stops/300449", "https://data.delijn.be/stops/300476"], ["https://data.delijn.be/stops/303171", "https://data.delijn.be/stops/304306"], ["https://data.delijn.be/stops/405913", "https://data.delijn.be/stops/405914"], ["https://data.delijn.be/stops/409082", "https://data.delijn.be/stops/409098"], ["https://data.delijn.be/stops/200006", "https://data.delijn.be/stops/201007"], ["https://data.delijn.be/stops/208539", "https://data.delijn.be/stops/209539"], ["https://data.delijn.be/stops/303114", "https://data.delijn.be/stops/305443"], ["https://data.delijn.be/stops/104638", "https://data.delijn.be/stops/107967"], ["https://data.delijn.be/stops/203195", "https://data.delijn.be/stops/209491"], ["https://data.delijn.be/stops/101502", "https://data.delijn.be/stops/308494"], ["https://data.delijn.be/stops/500009", "https://data.delijn.be/stops/507769"], ["https://data.delijn.be/stops/206122", "https://data.delijn.be/stops/207477"], ["https://data.delijn.be/stops/300482", "https://data.delijn.be/stops/308813"], ["https://data.delijn.be/stops/103257", "https://data.delijn.be/stops/105730"], ["https://data.delijn.be/stops/304502", "https://data.delijn.be/stops/306206"], ["https://data.delijn.be/stops/105424", "https://data.delijn.be/stops/105429"], ["https://data.delijn.be/stops/300361", "https://data.delijn.be/stops/300362"], ["https://data.delijn.be/stops/302960", "https://data.delijn.be/stops/302972"], ["https://data.delijn.be/stops/104605", "https://data.delijn.be/stops/109539"], ["https://data.delijn.be/stops/307255", "https://data.delijn.be/stops/307560"], ["https://data.delijn.be/stops/403975", "https://data.delijn.be/stops/405922"], ["https://data.delijn.be/stops/209107", "https://data.delijn.be/stops/209455"], ["https://data.delijn.be/stops/401772", "https://data.delijn.be/stops/401773"], ["https://data.delijn.be/stops/304730", "https://data.delijn.be/stops/305558"], ["https://data.delijn.be/stops/208219", "https://data.delijn.be/stops/209218"], ["https://data.delijn.be/stops/405139", "https://data.delijn.be/stops/406854"], ["https://data.delijn.be/stops/102472", "https://data.delijn.be/stops/405253"], ["https://data.delijn.be/stops/400195", "https://data.delijn.be/stops/401163"], ["https://data.delijn.be/stops/204015", "https://data.delijn.be/stops/205014"], ["https://data.delijn.be/stops/504226", "https://data.delijn.be/stops/509625"], ["https://data.delijn.be/stops/501076", "https://data.delijn.be/stops/501174"], ["https://data.delijn.be/stops/102019", "https://data.delijn.be/stops/109817"], ["https://data.delijn.be/stops/505822", "https://data.delijn.be/stops/508790"], ["https://data.delijn.be/stops/301413", "https://data.delijn.be/stops/301419"], ["https://data.delijn.be/stops/504126", "https://data.delijn.be/stops/509127"], ["https://data.delijn.be/stops/501067", "https://data.delijn.be/stops/501071"], ["https://data.delijn.be/stops/208500", "https://data.delijn.be/stops/209670"], ["https://data.delijn.be/stops/401758", "https://data.delijn.be/stops/406319"], ["https://data.delijn.be/stops/503994", "https://data.delijn.be/stops/508995"], ["https://data.delijn.be/stops/409695", "https://data.delijn.be/stops/409700"], ["https://data.delijn.be/stops/503035", "https://data.delijn.be/stops/505376"], ["https://data.delijn.be/stops/302736", "https://data.delijn.be/stops/307846"], ["https://data.delijn.be/stops/407827", "https://data.delijn.be/stops/407959"], ["https://data.delijn.be/stops/205489", "https://data.delijn.be/stops/205822"], ["https://data.delijn.be/stops/200237", "https://data.delijn.be/stops/200238"], ["https://data.delijn.be/stops/201841", "https://data.delijn.be/stops/504991"], ["https://data.delijn.be/stops/302306", "https://data.delijn.be/stops/302331"], ["https://data.delijn.be/stops/105603", "https://data.delijn.be/stops/105608"], ["https://data.delijn.be/stops/202282", "https://data.delijn.be/stops/203282"], ["https://data.delijn.be/stops/306670", "https://data.delijn.be/stops/306749"], ["https://data.delijn.be/stops/103329", "https://data.delijn.be/stops/109296"], ["https://data.delijn.be/stops/206321", "https://data.delijn.be/stops/207148"], ["https://data.delijn.be/stops/108699", "https://data.delijn.be/stops/108702"], ["https://data.delijn.be/stops/109993", "https://data.delijn.be/stops/109995"], ["https://data.delijn.be/stops/502202", "https://data.delijn.be/stops/504847"], ["https://data.delijn.be/stops/103084", "https://data.delijn.be/stops/106582"], ["https://data.delijn.be/stops/206865", "https://data.delijn.be/stops/208384"], ["https://data.delijn.be/stops/201577", "https://data.delijn.be/stops/202192"], ["https://data.delijn.be/stops/503412", "https://data.delijn.be/stops/503427"], ["https://data.delijn.be/stops/402176", "https://data.delijn.be/stops/410079"], ["https://data.delijn.be/stops/502451", "https://data.delijn.be/stops/502682"], ["https://data.delijn.be/stops/106075", "https://data.delijn.be/stops/106076"], ["https://data.delijn.be/stops/502664", "https://data.delijn.be/stops/507663"], ["https://data.delijn.be/stops/403625", "https://data.delijn.be/stops/408458"], ["https://data.delijn.be/stops/501164", "https://data.delijn.be/stops/506165"], ["https://data.delijn.be/stops/305238", "https://data.delijn.be/stops/305261"], ["https://data.delijn.be/stops/206719", "https://data.delijn.be/stops/206740"], ["https://data.delijn.be/stops/202163", "https://data.delijn.be/stops/202636"], ["https://data.delijn.be/stops/504598", "https://data.delijn.be/stops/504601"], ["https://data.delijn.be/stops/502320", "https://data.delijn.be/stops/502324"], ["https://data.delijn.be/stops/503849", "https://data.delijn.be/stops/505208"], ["https://data.delijn.be/stops/104802", "https://data.delijn.be/stops/109786"], ["https://data.delijn.be/stops/407242", "https://data.delijn.be/stops/407466"], ["https://data.delijn.be/stops/207372", "https://data.delijn.be/stops/207691"], ["https://data.delijn.be/stops/304336", "https://data.delijn.be/stops/305988"], ["https://data.delijn.be/stops/301802", "https://data.delijn.be/stops/301811"], ["https://data.delijn.be/stops/404106", "https://data.delijn.be/stops/408738"], ["https://data.delijn.be/stops/502743", "https://data.delijn.be/stops/505654"], ["https://data.delijn.be/stops/405512", "https://data.delijn.be/stops/407787"], ["https://data.delijn.be/stops/502116", "https://data.delijn.be/stops/507143"], ["https://data.delijn.be/stops/103159", "https://data.delijn.be/stops/406777"], ["https://data.delijn.be/stops/106274", "https://data.delijn.be/stops/106275"], ["https://data.delijn.be/stops/501531", "https://data.delijn.be/stops/506199"], ["https://data.delijn.be/stops/300238", "https://data.delijn.be/stops/300239"], ["https://data.delijn.be/stops/504428", "https://data.delijn.be/stops/508301"], ["https://data.delijn.be/stops/206806", "https://data.delijn.be/stops/206889"], ["https://data.delijn.be/stops/404494", "https://data.delijn.be/stops/404495"], ["https://data.delijn.be/stops/400966", "https://data.delijn.be/stops/400967"], ["https://data.delijn.be/stops/406318", "https://data.delijn.be/stops/406406"], ["https://data.delijn.be/stops/507372", "https://data.delijn.be/stops/507373"], ["https://data.delijn.be/stops/101332", "https://data.delijn.be/stops/106631"], ["https://data.delijn.be/stops/206773", "https://data.delijn.be/stops/206793"], ["https://data.delijn.be/stops/202966", "https://data.delijn.be/stops/204063"], ["https://data.delijn.be/stops/300287", "https://data.delijn.be/stops/300303"], ["https://data.delijn.be/stops/302452", "https://data.delijn.be/stops/302458"], ["https://data.delijn.be/stops/303819", "https://data.delijn.be/stops/303825"], ["https://data.delijn.be/stops/507136", "https://data.delijn.be/stops/507150"], ["https://data.delijn.be/stops/401466", "https://data.delijn.be/stops/401467"], ["https://data.delijn.be/stops/301899", "https://data.delijn.be/stops/305084"], ["https://data.delijn.be/stops/304300", "https://data.delijn.be/stops/304301"], ["https://data.delijn.be/stops/108292", "https://data.delijn.be/stops/109735"], ["https://data.delijn.be/stops/201334", "https://data.delijn.be/stops/201384"], ["https://data.delijn.be/stops/200691", "https://data.delijn.be/stops/203809"], ["https://data.delijn.be/stops/106615", "https://data.delijn.be/stops/106694"], ["https://data.delijn.be/stops/201857", "https://data.delijn.be/stops/210080"], ["https://data.delijn.be/stops/407910", "https://data.delijn.be/stops/407913"], ["https://data.delijn.be/stops/302120", "https://data.delijn.be/stops/302125"], ["https://data.delijn.be/stops/306690", "https://data.delijn.be/stops/308784"], ["https://data.delijn.be/stops/508765", "https://data.delijn.be/stops/509971"], ["https://data.delijn.be/stops/405078", "https://data.delijn.be/stops/405108"], ["https://data.delijn.be/stops/107731", "https://data.delijn.be/stops/107732"], ["https://data.delijn.be/stops/303078", "https://data.delijn.be/stops/303079"], ["https://data.delijn.be/stops/304894", "https://data.delijn.be/stops/304900"], ["https://data.delijn.be/stops/400976", "https://data.delijn.be/stops/409654"], ["https://data.delijn.be/stops/501557", "https://data.delijn.be/stops/506635"], ["https://data.delijn.be/stops/103055", "https://data.delijn.be/stops/103715"], ["https://data.delijn.be/stops/501226", "https://data.delijn.be/stops/509840"], ["https://data.delijn.be/stops/204418", "https://data.delijn.be/stops/205764"], ["https://data.delijn.be/stops/502341", "https://data.delijn.be/stops/507341"], ["https://data.delijn.be/stops/504715", "https://data.delijn.be/stops/509715"], ["https://data.delijn.be/stops/108855", "https://data.delijn.be/stops/108856"], ["https://data.delijn.be/stops/307694", "https://data.delijn.be/stops/307696"], ["https://data.delijn.be/stops/506240", "https://data.delijn.be/stops/506243"], ["https://data.delijn.be/stops/505161", "https://data.delijn.be/stops/505945"], ["https://data.delijn.be/stops/305106", "https://data.delijn.be/stops/305107"], ["https://data.delijn.be/stops/302706", "https://data.delijn.be/stops/302732"], ["https://data.delijn.be/stops/109575", "https://data.delijn.be/stops/109576"], ["https://data.delijn.be/stops/104391", "https://data.delijn.be/stops/104392"], ["https://data.delijn.be/stops/502522", "https://data.delijn.be/stops/509795"], ["https://data.delijn.be/stops/202629", "https://data.delijn.be/stops/203628"], ["https://data.delijn.be/stops/501200", "https://data.delijn.be/stops/506257"], ["https://data.delijn.be/stops/205308", "https://data.delijn.be/stops/214008"], ["https://data.delijn.be/stops/401275", "https://data.delijn.be/stops/401283"], ["https://data.delijn.be/stops/402880", "https://data.delijn.be/stops/402882"], ["https://data.delijn.be/stops/300107", "https://data.delijn.be/stops/300115"], ["https://data.delijn.be/stops/208072", "https://data.delijn.be/stops/209072"], ["https://data.delijn.be/stops/304806", "https://data.delijn.be/stops/307881"], ["https://data.delijn.be/stops/505586", "https://data.delijn.be/stops/507007"], ["https://data.delijn.be/stops/404771", "https://data.delijn.be/stops/410051"], ["https://data.delijn.be/stops/501332", "https://data.delijn.be/stops/501353"], ["https://data.delijn.be/stops/202924", "https://data.delijn.be/stops/203920"], ["https://data.delijn.be/stops/200494", "https://data.delijn.be/stops/201632"], ["https://data.delijn.be/stops/103746", "https://data.delijn.be/stops/105792"], ["https://data.delijn.be/stops/304586", "https://data.delijn.be/stops/304639"], ["https://data.delijn.be/stops/405345", "https://data.delijn.be/stops/405430"], ["https://data.delijn.be/stops/304783", "https://data.delijn.be/stops/304786"], ["https://data.delijn.be/stops/501484", "https://data.delijn.be/stops/501601"], ["https://data.delijn.be/stops/302381", "https://data.delijn.be/stops/304083"], ["https://data.delijn.be/stops/304397", "https://data.delijn.be/stops/307399"], ["https://data.delijn.be/stops/500563", "https://data.delijn.be/stops/501137"], ["https://data.delijn.be/stops/408821", "https://data.delijn.be/stops/408827"], ["https://data.delijn.be/stops/504196", "https://data.delijn.be/stops/509154"], ["https://data.delijn.be/stops/409260", "https://data.delijn.be/stops/409261"], ["https://data.delijn.be/stops/107926", "https://data.delijn.be/stops/107928"], ["https://data.delijn.be/stops/504058", "https://data.delijn.be/stops/509638"], ["https://data.delijn.be/stops/305091", "https://data.delijn.be/stops/305094"], ["https://data.delijn.be/stops/200752", "https://data.delijn.be/stops/209250"], ["https://data.delijn.be/stops/304580", "https://data.delijn.be/stops/306052"], ["https://data.delijn.be/stops/401830", "https://data.delijn.be/stops/406048"], ["https://data.delijn.be/stops/101483", "https://data.delijn.be/stops/108342"], ["https://data.delijn.be/stops/505951", "https://data.delijn.be/stops/508279"], ["https://data.delijn.be/stops/303457", "https://data.delijn.be/stops/303519"], ["https://data.delijn.be/stops/403215", "https://data.delijn.be/stops/403368"], ["https://data.delijn.be/stops/301233", "https://data.delijn.be/stops/301234"], ["https://data.delijn.be/stops/300704", "https://data.delijn.be/stops/308066"], ["https://data.delijn.be/stops/402819", "https://data.delijn.be/stops/406965"], ["https://data.delijn.be/stops/500954", "https://data.delijn.be/stops/509164"], ["https://data.delijn.be/stops/201943", "https://data.delijn.be/stops/202146"], ["https://data.delijn.be/stops/301766", "https://data.delijn.be/stops/301780"], ["https://data.delijn.be/stops/504588", "https://data.delijn.be/stops/509588"], ["https://data.delijn.be/stops/304590", "https://data.delijn.be/stops/304605"], ["https://data.delijn.be/stops/205102", "https://data.delijn.be/stops/205701"], ["https://data.delijn.be/stops/502047", "https://data.delijn.be/stops/502616"], ["https://data.delijn.be/stops/200010", "https://data.delijn.be/stops/200011"], ["https://data.delijn.be/stops/501409", "https://data.delijn.be/stops/506415"], ["https://data.delijn.be/stops/204397", "https://data.delijn.be/stops/205768"], ["https://data.delijn.be/stops/101782", "https://data.delijn.be/stops/103369"], ["https://data.delijn.be/stops/501632", "https://data.delijn.be/stops/506035"], ["https://data.delijn.be/stops/300258", "https://data.delijn.be/stops/303827"], ["https://data.delijn.be/stops/300243", "https://data.delijn.be/stops/304626"], ["https://data.delijn.be/stops/308486", "https://data.delijn.be/stops/308488"], ["https://data.delijn.be/stops/300254", "https://data.delijn.be/stops/305420"], ["https://data.delijn.be/stops/206914", "https://data.delijn.be/stops/207354"], ["https://data.delijn.be/stops/402141", "https://data.delijn.be/stops/402438"], ["https://data.delijn.be/stops/407205", "https://data.delijn.be/stops/408810"], ["https://data.delijn.be/stops/101576", "https://data.delijn.be/stops/105463"], ["https://data.delijn.be/stops/402704", "https://data.delijn.be/stops/402865"], ["https://data.delijn.be/stops/102533", "https://data.delijn.be/stops/102538"], ["https://data.delijn.be/stops/107344", "https://data.delijn.be/stops/107346"], ["https://data.delijn.be/stops/506386", "https://data.delijn.be/stops/506493"], ["https://data.delijn.be/stops/401864", "https://data.delijn.be/stops/401867"], ["https://data.delijn.be/stops/101087", "https://data.delijn.be/stops/105972"], ["https://data.delijn.be/stops/102453", "https://data.delijn.be/stops/109642"], ["https://data.delijn.be/stops/208352", "https://data.delijn.be/stops/218019"], ["https://data.delijn.be/stops/204783", "https://data.delijn.be/stops/205788"], ["https://data.delijn.be/stops/102216", "https://data.delijn.be/stops/105533"], ["https://data.delijn.be/stops/202695", "https://data.delijn.be/stops/203696"], ["https://data.delijn.be/stops/201886", "https://data.delijn.be/stops/203977"], ["https://data.delijn.be/stops/303763", "https://data.delijn.be/stops/303781"], ["https://data.delijn.be/stops/302994", "https://data.delijn.be/stops/303003"], ["https://data.delijn.be/stops/108064", "https://data.delijn.be/stops/108068"], ["https://data.delijn.be/stops/208343", "https://data.delijn.be/stops/219031"], ["https://data.delijn.be/stops/302877", "https://data.delijn.be/stops/302894"], ["https://data.delijn.be/stops/504489", "https://data.delijn.be/stops/509248"], ["https://data.delijn.be/stops/308685", "https://data.delijn.be/stops/308686"], ["https://data.delijn.be/stops/103274", "https://data.delijn.be/stops/107202"], ["https://data.delijn.be/stops/107427", "https://data.delijn.be/stops/107428"], ["https://data.delijn.be/stops/402772", "https://data.delijn.be/stops/402777"], ["https://data.delijn.be/stops/103076", "https://data.delijn.be/stops/105172"], ["https://data.delijn.be/stops/400234", "https://data.delijn.be/stops/400236"], ["https://data.delijn.be/stops/302226", "https://data.delijn.be/stops/307717"], ["https://data.delijn.be/stops/103241", "https://data.delijn.be/stops/107293"], ["https://data.delijn.be/stops/203463", "https://data.delijn.be/stops/203464"], ["https://data.delijn.be/stops/405161", "https://data.delijn.be/stops/405279"], ["https://data.delijn.be/stops/308466", "https://data.delijn.be/stops/308467"], ["https://data.delijn.be/stops/504630", "https://data.delijn.be/stops/509630"], ["https://data.delijn.be/stops/500944", "https://data.delijn.be/stops/509618"], ["https://data.delijn.be/stops/302731", "https://data.delijn.be/stops/302735"], ["https://data.delijn.be/stops/200711", "https://data.delijn.be/stops/203602"], ["https://data.delijn.be/stops/502029", "https://data.delijn.be/stops/507029"], ["https://data.delijn.be/stops/305531", "https://data.delijn.be/stops/305532"], ["https://data.delijn.be/stops/107249", "https://data.delijn.be/stops/107252"], ["https://data.delijn.be/stops/108382", "https://data.delijn.be/stops/108384"], ["https://data.delijn.be/stops/503575", "https://data.delijn.be/stops/509902"], ["https://data.delijn.be/stops/204665", "https://data.delijn.be/stops/204688"], ["https://data.delijn.be/stops/305681", "https://data.delijn.be/stops/305706"], ["https://data.delijn.be/stops/503626", "https://data.delijn.be/stops/508626"], ["https://data.delijn.be/stops/303345", "https://data.delijn.be/stops/308932"], ["https://data.delijn.be/stops/404862", "https://data.delijn.be/stops/404934"], ["https://data.delijn.be/stops/300817", "https://data.delijn.be/stops/302986"], ["https://data.delijn.be/stops/200996", "https://data.delijn.be/stops/201587"], ["https://data.delijn.be/stops/207249", "https://data.delijn.be/stops/208951"], ["https://data.delijn.be/stops/403161", "https://data.delijn.be/stops/403479"], ["https://data.delijn.be/stops/102734", "https://data.delijn.be/stops/105823"], ["https://data.delijn.be/stops/304120", "https://data.delijn.be/stops/307556"], ["https://data.delijn.be/stops/503951", "https://data.delijn.be/stops/508357"], ["https://data.delijn.be/stops/303517", "https://data.delijn.be/stops/307892"], ["https://data.delijn.be/stops/503222", "https://data.delijn.be/stops/505261"], ["https://data.delijn.be/stops/501197", "https://data.delijn.be/stops/506194"], ["https://data.delijn.be/stops/300515", "https://data.delijn.be/stops/300517"], ["https://data.delijn.be/stops/304150", "https://data.delijn.be/stops/304162"], ["https://data.delijn.be/stops/206867", "https://data.delijn.be/stops/208810"], ["https://data.delijn.be/stops/106110", "https://data.delijn.be/stops/106170"], ["https://data.delijn.be/stops/106147", "https://data.delijn.be/stops/106157"], ["https://data.delijn.be/stops/108084", "https://data.delijn.be/stops/108385"], ["https://data.delijn.be/stops/205804", "https://data.delijn.be/stops/208722"], ["https://data.delijn.be/stops/101643", "https://data.delijn.be/stops/108000"], ["https://data.delijn.be/stops/302551", "https://data.delijn.be/stops/305859"], ["https://data.delijn.be/stops/304279", "https://data.delijn.be/stops/304281"], ["https://data.delijn.be/stops/504647", "https://data.delijn.be/stops/505101"], ["https://data.delijn.be/stops/108937", "https://data.delijn.be/stops/108939"], ["https://data.delijn.be/stops/503298", "https://data.delijn.be/stops/508298"], ["https://data.delijn.be/stops/501265", "https://data.delijn.be/stops/506565"], ["https://data.delijn.be/stops/202961", "https://data.delijn.be/stops/203960"], ["https://data.delijn.be/stops/404288", "https://data.delijn.be/stops/409748"], ["https://data.delijn.be/stops/200649", "https://data.delijn.be/stops/201583"], ["https://data.delijn.be/stops/503877", "https://data.delijn.be/stops/508868"], ["https://data.delijn.be/stops/206589", "https://data.delijn.be/stops/207573"], ["https://data.delijn.be/stops/405012", "https://data.delijn.be/stops/405018"], ["https://data.delijn.be/stops/410279", "https://data.delijn.be/stops/410324"], ["https://data.delijn.be/stops/409044", "https://data.delijn.be/stops/409046"], ["https://data.delijn.be/stops/503091", "https://data.delijn.be/stops/503102"], ["https://data.delijn.be/stops/400635", "https://data.delijn.be/stops/403027"], ["https://data.delijn.be/stops/108524", "https://data.delijn.be/stops/108529"], ["https://data.delijn.be/stops/200745", "https://data.delijn.be/stops/208644"], ["https://data.delijn.be/stops/502121", "https://data.delijn.be/stops/507112"], ["https://data.delijn.be/stops/501470", "https://data.delijn.be/stops/506476"], ["https://data.delijn.be/stops/300431", "https://data.delijn.be/stops/300437"], ["https://data.delijn.be/stops/400122", "https://data.delijn.be/stops/409194"], ["https://data.delijn.be/stops/109363", "https://data.delijn.be/stops/109364"], ["https://data.delijn.be/stops/106255", "https://data.delijn.be/stops/106256"], ["https://data.delijn.be/stops/405823", "https://data.delijn.be/stops/409415"], ["https://data.delijn.be/stops/301476", "https://data.delijn.be/stops/308705"], ["https://data.delijn.be/stops/202008", "https://data.delijn.be/stops/203651"], ["https://data.delijn.be/stops/106771", "https://data.delijn.be/stops/106806"], ["https://data.delijn.be/stops/507689", "https://data.delijn.be/stops/509739"], ["https://data.delijn.be/stops/406431", "https://data.delijn.be/stops/406432"], ["https://data.delijn.be/stops/408944", "https://data.delijn.be/stops/409242"], ["https://data.delijn.be/stops/504837", "https://data.delijn.be/stops/506002"], ["https://data.delijn.be/stops/300352", "https://data.delijn.be/stops/304858"], ["https://data.delijn.be/stops/305100", "https://data.delijn.be/stops/305138"], ["https://data.delijn.be/stops/308231", "https://data.delijn.be/stops/308232"], ["https://data.delijn.be/stops/203079", "https://data.delijn.be/stops/203492"], ["https://data.delijn.be/stops/300007", "https://data.delijn.be/stops/304683"], ["https://data.delijn.be/stops/302486", "https://data.delijn.be/stops/302487"], ["https://data.delijn.be/stops/405410", "https://data.delijn.be/stops/405412"], ["https://data.delijn.be/stops/504224", "https://data.delijn.be/stops/509224"], ["https://data.delijn.be/stops/502392", "https://data.delijn.be/stops/507381"], ["https://data.delijn.be/stops/103302", "https://data.delijn.be/stops/105767"], ["https://data.delijn.be/stops/403030", "https://data.delijn.be/stops/403569"], ["https://data.delijn.be/stops/101971", "https://data.delijn.be/stops/105665"], ["https://data.delijn.be/stops/306794", "https://data.delijn.be/stops/308448"], ["https://data.delijn.be/stops/302190", "https://data.delijn.be/stops/302191"], ["https://data.delijn.be/stops/400575", "https://data.delijn.be/stops/400635"], ["https://data.delijn.be/stops/504499", "https://data.delijn.be/stops/505411"], ["https://data.delijn.be/stops/302716", "https://data.delijn.be/stops/302720"], ["https://data.delijn.be/stops/403608", "https://data.delijn.be/stops/410037"], ["https://data.delijn.be/stops/101022", "https://data.delijn.be/stops/106040"], ["https://data.delijn.be/stops/409263", "https://data.delijn.be/stops/410286"], ["https://data.delijn.be/stops/501398", "https://data.delijn.be/stops/501399"], ["https://data.delijn.be/stops/406564", "https://data.delijn.be/stops/407201"], ["https://data.delijn.be/stops/408855", "https://data.delijn.be/stops/408857"], ["https://data.delijn.be/stops/106232", "https://data.delijn.be/stops/109804"], ["https://data.delijn.be/stops/108073", "https://data.delijn.be/stops/108842"], ["https://data.delijn.be/stops/508253", "https://data.delijn.be/stops/509843"], ["https://data.delijn.be/stops/400746", "https://data.delijn.be/stops/409807"], ["https://data.delijn.be/stops/408621", "https://data.delijn.be/stops/408648"], ["https://data.delijn.be/stops/502660", "https://data.delijn.be/stops/507660"], ["https://data.delijn.be/stops/206772", "https://data.delijn.be/stops/209030"], ["https://data.delijn.be/stops/304826", "https://data.delijn.be/stops/306405"], ["https://data.delijn.be/stops/400804", "https://data.delijn.be/stops/400878"], ["https://data.delijn.be/stops/301243", "https://data.delijn.be/stops/308135"], ["https://data.delijn.be/stops/301360", "https://data.delijn.be/stops/308709"], ["https://data.delijn.be/stops/300488", "https://data.delijn.be/stops/300494"], ["https://data.delijn.be/stops/503194", "https://data.delijn.be/stops/508198"], ["https://data.delijn.be/stops/404478", "https://data.delijn.be/stops/409136"], ["https://data.delijn.be/stops/204646", "https://data.delijn.be/stops/204647"], ["https://data.delijn.be/stops/407805", "https://data.delijn.be/stops/407806"], ["https://data.delijn.be/stops/400582", "https://data.delijn.be/stops/400618"], ["https://data.delijn.be/stops/200959", "https://data.delijn.be/stops/201908"], ["https://data.delijn.be/stops/502446", "https://data.delijn.be/stops/507462"], ["https://data.delijn.be/stops/200873", "https://data.delijn.be/stops/200893"], ["https://data.delijn.be/stops/406256", "https://data.delijn.be/stops/408416"], ["https://data.delijn.be/stops/208404", "https://data.delijn.be/stops/209491"], ["https://data.delijn.be/stops/204156", "https://data.delijn.be/stops/214007"], ["https://data.delijn.be/stops/200391", "https://data.delijn.be/stops/208718"], ["https://data.delijn.be/stops/201134", "https://data.delijn.be/stops/202451"], ["https://data.delijn.be/stops/505920", "https://data.delijn.be/stops/508923"], ["https://data.delijn.be/stops/405631", "https://data.delijn.be/stops/410211"], ["https://data.delijn.be/stops/400052", "https://data.delijn.be/stops/400063"], ["https://data.delijn.be/stops/503607", "https://data.delijn.be/stops/508616"], ["https://data.delijn.be/stops/206505", "https://data.delijn.be/stops/207673"], ["https://data.delijn.be/stops/102795", "https://data.delijn.be/stops/103125"], ["https://data.delijn.be/stops/304051", "https://data.delijn.be/stops/304058"], ["https://data.delijn.be/stops/101511", "https://data.delijn.be/stops/305994"], ["https://data.delijn.be/stops/202347", "https://data.delijn.be/stops/202875"], ["https://data.delijn.be/stops/401813", "https://data.delijn.be/stops/406239"], ["https://data.delijn.be/stops/306267", "https://data.delijn.be/stops/307326"], ["https://data.delijn.be/stops/402022", "https://data.delijn.be/stops/408910"], ["https://data.delijn.be/stops/105733", "https://data.delijn.be/stops/109836"], ["https://data.delijn.be/stops/400212", "https://data.delijn.be/stops/408489"], ["https://data.delijn.be/stops/208478", "https://data.delijn.be/stops/209479"], ["https://data.delijn.be/stops/503025", "https://data.delijn.be/stops/508223"], ["https://data.delijn.be/stops/202441", "https://data.delijn.be/stops/210047"], ["https://data.delijn.be/stops/503099", "https://data.delijn.be/stops/505394"], ["https://data.delijn.be/stops/203771", "https://data.delijn.be/stops/209641"], ["https://data.delijn.be/stops/304367", "https://data.delijn.be/stops/307373"], ["https://data.delijn.be/stops/208332", "https://data.delijn.be/stops/208334"], ["https://data.delijn.be/stops/201646", "https://data.delijn.be/stops/201648"], ["https://data.delijn.be/stops/203114", "https://data.delijn.be/stops/204079"], ["https://data.delijn.be/stops/505566", "https://data.delijn.be/stops/505660"], ["https://data.delijn.be/stops/303279", "https://data.delijn.be/stops/303642"], ["https://data.delijn.be/stops/300134", "https://data.delijn.be/stops/307849"], ["https://data.delijn.be/stops/101658", "https://data.delijn.be/stops/102639"], ["https://data.delijn.be/stops/302705", "https://data.delijn.be/stops/302732"], ["https://data.delijn.be/stops/106633", "https://data.delijn.be/stops/106635"], ["https://data.delijn.be/stops/504692", "https://data.delijn.be/stops/505940"], ["https://data.delijn.be/stops/303892", "https://data.delijn.be/stops/305568"], ["https://data.delijn.be/stops/105251", "https://data.delijn.be/stops/105268"], ["https://data.delijn.be/stops/405145", "https://data.delijn.be/stops/405238"], ["https://data.delijn.be/stops/101494", "https://data.delijn.be/stops/108303"], ["https://data.delijn.be/stops/301268", "https://data.delijn.be/stops/303421"], ["https://data.delijn.be/stops/206826", "https://data.delijn.be/stops/207320"], ["https://data.delijn.be/stops/405499", "https://data.delijn.be/stops/407908"], ["https://data.delijn.be/stops/204582", "https://data.delijn.be/stops/205171"], ["https://data.delijn.be/stops/200399", "https://data.delijn.be/stops/201899"], ["https://data.delijn.be/stops/505015", "https://data.delijn.be/stops/505766"], ["https://data.delijn.be/stops/406834", "https://data.delijn.be/stops/407135"], ["https://data.delijn.be/stops/405426", "https://data.delijn.be/stops/405434"], ["https://data.delijn.be/stops/200080", "https://data.delijn.be/stops/207933"], ["https://data.delijn.be/stops/204124", "https://data.delijn.be/stops/205128"], ["https://data.delijn.be/stops/200877", "https://data.delijn.be/stops/210016"], ["https://data.delijn.be/stops/102109", "https://data.delijn.be/stops/106323"], ["https://data.delijn.be/stops/405515", "https://data.delijn.be/stops/407319"], ["https://data.delijn.be/stops/204511", "https://data.delijn.be/stops/205510"], ["https://data.delijn.be/stops/404238", "https://data.delijn.be/stops/404244"], ["https://data.delijn.be/stops/400827", "https://data.delijn.be/stops/401664"], ["https://data.delijn.be/stops/509122", "https://data.delijn.be/stops/509261"], ["https://data.delijn.be/stops/206510", "https://data.delijn.be/stops/207136"], ["https://data.delijn.be/stops/103503", "https://data.delijn.be/stops/109897"], ["https://data.delijn.be/stops/301274", "https://data.delijn.be/stops/301275"], ["https://data.delijn.be/stops/301972", "https://data.delijn.be/stops/306198"], ["https://data.delijn.be/stops/300480", "https://data.delijn.be/stops/308813"], ["https://data.delijn.be/stops/104964", "https://data.delijn.be/stops/109461"], ["https://data.delijn.be/stops/502552", "https://data.delijn.be/stops/505051"], ["https://data.delijn.be/stops/104005", "https://data.delijn.be/stops/104760"], ["https://data.delijn.be/stops/402375", "https://data.delijn.be/stops/409359"], ["https://data.delijn.be/stops/405118", "https://data.delijn.be/stops/405848"], ["https://data.delijn.be/stops/504409", "https://data.delijn.be/stops/504414"], ["https://data.delijn.be/stops/200722", "https://data.delijn.be/stops/211032"], ["https://data.delijn.be/stops/105297", "https://data.delijn.be/stops/109971"], ["https://data.delijn.be/stops/301237", "https://data.delijn.be/stops/301242"], ["https://data.delijn.be/stops/207019", "https://data.delijn.be/stops/207078"], ["https://data.delijn.be/stops/308652", "https://data.delijn.be/stops/308684"], ["https://data.delijn.be/stops/103066", "https://data.delijn.be/stops/107422"], ["https://data.delijn.be/stops/208754", "https://data.delijn.be/stops/209128"], ["https://data.delijn.be/stops/109158", "https://data.delijn.be/stops/109234"], ["https://data.delijn.be/stops/304316", "https://data.delijn.be/stops/305280"], ["https://data.delijn.be/stops/300260", "https://data.delijn.be/stops/300272"], ["https://data.delijn.be/stops/503994", "https://data.delijn.be/stops/505831"], ["https://data.delijn.be/stops/209432", "https://data.delijn.be/stops/209436"], ["https://data.delijn.be/stops/300012", "https://data.delijn.be/stops/300757"], ["https://data.delijn.be/stops/105511", "https://data.delijn.be/stops/105790"], ["https://data.delijn.be/stops/102287", "https://data.delijn.be/stops/109008"], ["https://data.delijn.be/stops/405687", "https://data.delijn.be/stops/405689"], ["https://data.delijn.be/stops/401364", "https://data.delijn.be/stops/406060"], ["https://data.delijn.be/stops/105019", "https://data.delijn.be/stops/106830"], ["https://data.delijn.be/stops/109188", "https://data.delijn.be/stops/109189"], ["https://data.delijn.be/stops/508376", "https://data.delijn.be/stops/508441"], ["https://data.delijn.be/stops/405155", "https://data.delijn.be/stops/405257"], ["https://data.delijn.be/stops/101305", "https://data.delijn.be/stops/103106"], ["https://data.delijn.be/stops/409530", "https://data.delijn.be/stops/409532"], ["https://data.delijn.be/stops/204198", "https://data.delijn.be/stops/205199"], ["https://data.delijn.be/stops/208422", "https://data.delijn.be/stops/208743"], ["https://data.delijn.be/stops/405492", "https://data.delijn.be/stops/409319"], ["https://data.delijn.be/stops/303284", "https://data.delijn.be/stops/303318"], ["https://data.delijn.be/stops/301114", "https://data.delijn.be/stops/307637"], ["https://data.delijn.be/stops/502190", "https://data.delijn.be/stops/507203"], ["https://data.delijn.be/stops/502452", "https://data.delijn.be/stops/507452"], ["https://data.delijn.be/stops/109087", "https://data.delijn.be/stops/109316"], ["https://data.delijn.be/stops/405041", "https://data.delijn.be/stops/405068"], ["https://data.delijn.be/stops/402245", "https://data.delijn.be/stops/402254"], ["https://data.delijn.be/stops/508508", "https://data.delijn.be/stops/508512"], ["https://data.delijn.be/stops/405453", "https://data.delijn.be/stops/408894"], ["https://data.delijn.be/stops/101951", "https://data.delijn.be/stops/108798"], ["https://data.delijn.be/stops/209600", "https://data.delijn.be/stops/307304"], ["https://data.delijn.be/stops/206059", "https://data.delijn.be/stops/207161"], ["https://data.delijn.be/stops/200894", "https://data.delijn.be/stops/203338"], ["https://data.delijn.be/stops/404883", "https://data.delijn.be/stops/404965"], ["https://data.delijn.be/stops/503364", "https://data.delijn.be/stops/508723"], ["https://data.delijn.be/stops/504213", "https://data.delijn.be/stops/509219"], ["https://data.delijn.be/stops/207014", "https://data.delijn.be/stops/207386"], ["https://data.delijn.be/stops/409543", "https://data.delijn.be/stops/409561"], ["https://data.delijn.be/stops/101370", "https://data.delijn.be/stops/101805"], ["https://data.delijn.be/stops/405794", "https://data.delijn.be/stops/409436"], ["https://data.delijn.be/stops/503256", "https://data.delijn.be/stops/503417"], ["https://data.delijn.be/stops/101530", "https://data.delijn.be/stops/104770"], ["https://data.delijn.be/stops/308151", "https://data.delijn.be/stops/308167"], ["https://data.delijn.be/stops/202144", "https://data.delijn.be/stops/202145"], ["https://data.delijn.be/stops/307476", "https://data.delijn.be/stops/307479"], ["https://data.delijn.be/stops/404449", "https://data.delijn.be/stops/404536"], ["https://data.delijn.be/stops/204031", "https://data.delijn.be/stops/204557"], ["https://data.delijn.be/stops/200031", "https://data.delijn.be/stops/201075"], ["https://data.delijn.be/stops/104671", "https://data.delijn.be/stops/107378"], ["https://data.delijn.be/stops/106426", "https://data.delijn.be/stops/106516"], ["https://data.delijn.be/stops/108965", "https://data.delijn.be/stops/108970"], ["https://data.delijn.be/stops/302166", "https://data.delijn.be/stops/304017"], ["https://data.delijn.be/stops/206280", "https://data.delijn.be/stops/207398"], ["https://data.delijn.be/stops/102536", "https://data.delijn.be/stops/405723"], ["https://data.delijn.be/stops/404754", "https://data.delijn.be/stops/404755"], ["https://data.delijn.be/stops/108526", "https://data.delijn.be/stops/108527"], ["https://data.delijn.be/stops/509342", "https://data.delijn.be/stops/509345"], ["https://data.delijn.be/stops/211012", "https://data.delijn.be/stops/502275"], ["https://data.delijn.be/stops/200242", "https://data.delijn.be/stops/201205"], ["https://data.delijn.be/stops/408861", "https://data.delijn.be/stops/408868"], ["https://data.delijn.be/stops/307613", "https://data.delijn.be/stops/307614"], ["https://data.delijn.be/stops/403798", "https://data.delijn.be/stops/403807"], ["https://data.delijn.be/stops/101719", "https://data.delijn.be/stops/103678"], ["https://data.delijn.be/stops/200309", "https://data.delijn.be/stops/200341"], ["https://data.delijn.be/stops/403902", "https://data.delijn.be/stops/404033"], ["https://data.delijn.be/stops/300319", "https://data.delijn.be/stops/301196"], ["https://data.delijn.be/stops/503483", "https://data.delijn.be/stops/508483"], ["https://data.delijn.be/stops/301627", "https://data.delijn.be/stops/306155"], ["https://data.delijn.be/stops/108094", "https://data.delijn.be/stops/108096"], ["https://data.delijn.be/stops/109776", "https://data.delijn.be/stops/109777"], ["https://data.delijn.be/stops/104054", "https://data.delijn.be/stops/108143"], ["https://data.delijn.be/stops/305253", "https://data.delijn.be/stops/305321"], ["https://data.delijn.be/stops/407020", "https://data.delijn.be/stops/407057"], ["https://data.delijn.be/stops/404472", "https://data.delijn.be/stops/404473"], ["https://data.delijn.be/stops/300041", "https://data.delijn.be/stops/307348"], ["https://data.delijn.be/stops/504085", "https://data.delijn.be/stops/509092"], ["https://data.delijn.be/stops/303642", "https://data.delijn.be/stops/303643"], ["https://data.delijn.be/stops/302585", "https://data.delijn.be/stops/302602"], ["https://data.delijn.be/stops/101601", "https://data.delijn.be/stops/106192"], ["https://data.delijn.be/stops/109320", "https://data.delijn.be/stops/109321"], ["https://data.delijn.be/stops/102642", "https://data.delijn.be/stops/107868"], ["https://data.delijn.be/stops/402118", "https://data.delijn.be/stops/402129"], ["https://data.delijn.be/stops/101986", "https://data.delijn.be/stops/108228"], ["https://data.delijn.be/stops/308454", "https://data.delijn.be/stops/308693"], ["https://data.delijn.be/stops/303732", "https://data.delijn.be/stops/303748"], ["https://data.delijn.be/stops/211093", "https://data.delijn.be/stops/211118"], ["https://data.delijn.be/stops/301235", "https://data.delijn.be/stops/301236"], ["https://data.delijn.be/stops/101070", "https://data.delijn.be/stops/102890"], ["https://data.delijn.be/stops/102695", "https://data.delijn.be/stops/102896"], ["https://data.delijn.be/stops/400660", "https://data.delijn.be/stops/400661"], ["https://data.delijn.be/stops/106166", "https://data.delijn.be/stops/106167"], ["https://data.delijn.be/stops/405868", "https://data.delijn.be/stops/409771"], ["https://data.delijn.be/stops/409296", "https://data.delijn.be/stops/409331"], ["https://data.delijn.be/stops/201994", "https://data.delijn.be/stops/211069"], ["https://data.delijn.be/stops/500952", "https://data.delijn.be/stops/500953"], ["https://data.delijn.be/stops/104681", "https://data.delijn.be/stops/104683"], ["https://data.delijn.be/stops/304179", "https://data.delijn.be/stops/304180"], ["https://data.delijn.be/stops/101706", "https://data.delijn.be/stops/102007"], ["https://data.delijn.be/stops/106770", "https://data.delijn.be/stops/106869"], ["https://data.delijn.be/stops/302682", "https://data.delijn.be/stops/306186"], ["https://data.delijn.be/stops/406471", "https://data.delijn.be/stops/406497"], ["https://data.delijn.be/stops/209441", "https://data.delijn.be/stops/209516"], ["https://data.delijn.be/stops/200363", "https://data.delijn.be/stops/200985"], ["https://data.delijn.be/stops/104364", "https://data.delijn.be/stops/105220"], ["https://data.delijn.be/stops/211058", "https://data.delijn.be/stops/211086"], ["https://data.delijn.be/stops/403796", "https://data.delijn.be/stops/403797"], ["https://data.delijn.be/stops/301656", "https://data.delijn.be/stops/301657"], ["https://data.delijn.be/stops/507944", "https://data.delijn.be/stops/508858"], ["https://data.delijn.be/stops/202666", "https://data.delijn.be/stops/203665"], ["https://data.delijn.be/stops/102208", "https://data.delijn.be/stops/106123"], ["https://data.delijn.be/stops/108381", "https://data.delijn.be/stops/108443"], ["https://data.delijn.be/stops/409263", "https://data.delijn.be/stops/409308"], ["https://data.delijn.be/stops/401485", "https://data.delijn.be/stops/401497"], ["https://data.delijn.be/stops/104127", "https://data.delijn.be/stops/105160"], ["https://data.delijn.be/stops/400696", "https://data.delijn.be/stops/400785"], ["https://data.delijn.be/stops/305595", "https://data.delijn.be/stops/305605"], ["https://data.delijn.be/stops/205821", "https://data.delijn.be/stops/205904"], ["https://data.delijn.be/stops/207584", "https://data.delijn.be/stops/207841"], ["https://data.delijn.be/stops/102892", "https://data.delijn.be/stops/105705"], ["https://data.delijn.be/stops/503228", "https://data.delijn.be/stops/504000"], ["https://data.delijn.be/stops/503733", "https://data.delijn.be/stops/508741"], ["https://data.delijn.be/stops/205144", "https://data.delijn.be/stops/207633"], ["https://data.delijn.be/stops/200853", "https://data.delijn.be/stops/200858"], ["https://data.delijn.be/stops/303042", "https://data.delijn.be/stops/303043"], ["https://data.delijn.be/stops/107512", "https://data.delijn.be/stops/107514"], ["https://data.delijn.be/stops/400827", "https://data.delijn.be/stops/401908"], ["https://data.delijn.be/stops/107821", "https://data.delijn.be/stops/107822"], ["https://data.delijn.be/stops/500601", "https://data.delijn.be/stops/500602"], ["https://data.delijn.be/stops/504795", "https://data.delijn.be/stops/504796"], ["https://data.delijn.be/stops/200688", "https://data.delijn.be/stops/200692"], ["https://data.delijn.be/stops/108218", "https://data.delijn.be/stops/108224"], ["https://data.delijn.be/stops/303719", "https://data.delijn.be/stops/303747"], ["https://data.delijn.be/stops/502544", "https://data.delijn.be/stops/507544"], ["https://data.delijn.be/stops/304119", "https://data.delijn.be/stops/304120"], ["https://data.delijn.be/stops/406472", "https://data.delijn.be/stops/406473"], ["https://data.delijn.be/stops/303483", "https://data.delijn.be/stops/303486"], ["https://data.delijn.be/stops/105614", "https://data.delijn.be/stops/105623"], ["https://data.delijn.be/stops/400473", "https://data.delijn.be/stops/400474"], ["https://data.delijn.be/stops/502560", "https://data.delijn.be/stops/505833"], ["https://data.delijn.be/stops/200130", "https://data.delijn.be/stops/200492"], ["https://data.delijn.be/stops/508071", "https://data.delijn.be/stops/508877"], ["https://data.delijn.be/stops/201760", "https://data.delijn.be/stops/201782"], ["https://data.delijn.be/stops/402935", "https://data.delijn.be/stops/403970"], ["https://data.delijn.be/stops/206224", "https://data.delijn.be/stops/207224"], ["https://data.delijn.be/stops/303337", "https://data.delijn.be/stops/303347"], ["https://data.delijn.be/stops/109613", "https://data.delijn.be/stops/109616"], ["https://data.delijn.be/stops/509624", "https://data.delijn.be/stops/509628"], ["https://data.delijn.be/stops/208317", "https://data.delijn.be/stops/209317"], ["https://data.delijn.be/stops/303692", "https://data.delijn.be/stops/303694"], ["https://data.delijn.be/stops/105413", "https://data.delijn.be/stops/109850"], ["https://data.delijn.be/stops/405765", "https://data.delijn.be/stops/409419"], ["https://data.delijn.be/stops/503264", "https://data.delijn.be/stops/503945"], ["https://data.delijn.be/stops/502692", "https://data.delijn.be/stops/505317"], ["https://data.delijn.be/stops/400479", "https://data.delijn.be/stops/407647"], ["https://data.delijn.be/stops/102157", "https://data.delijn.be/stops/108127"], ["https://data.delijn.be/stops/400689", "https://data.delijn.be/stops/400803"], ["https://data.delijn.be/stops/405783", "https://data.delijn.be/stops/409766"], ["https://data.delijn.be/stops/201386", "https://data.delijn.be/stops/202645"], ["https://data.delijn.be/stops/403739", "https://data.delijn.be/stops/403814"], ["https://data.delijn.be/stops/401062", "https://data.delijn.be/stops/408553"], ["https://data.delijn.be/stops/504269", "https://data.delijn.be/stops/509110"], ["https://data.delijn.be/stops/202538", "https://data.delijn.be/stops/209721"], ["https://data.delijn.be/stops/404106", "https://data.delijn.be/stops/404114"], ["https://data.delijn.be/stops/206681", "https://data.delijn.be/stops/207624"], ["https://data.delijn.be/stops/305303", "https://data.delijn.be/stops/305328"], ["https://data.delijn.be/stops/503769", "https://data.delijn.be/stops/503822"], ["https://data.delijn.be/stops/501067", "https://data.delijn.be/stops/506067"], ["https://data.delijn.be/stops/502549", "https://data.delijn.be/stops/502656"], ["https://data.delijn.be/stops/301104", "https://data.delijn.be/stops/301141"], ["https://data.delijn.be/stops/406965", "https://data.delijn.be/stops/409449"], ["https://data.delijn.be/stops/204350", "https://data.delijn.be/stops/205110"], ["https://data.delijn.be/stops/108502", "https://data.delijn.be/stops/109012"], ["https://data.delijn.be/stops/504563", "https://data.delijn.be/stops/509005"], ["https://data.delijn.be/stops/505022", "https://data.delijn.be/stops/507706"], ["https://data.delijn.be/stops/303995", "https://data.delijn.be/stops/306182"], ["https://data.delijn.be/stops/303269", "https://data.delijn.be/stops/308920"], ["https://data.delijn.be/stops/400069", "https://data.delijn.be/stops/400080"], ["https://data.delijn.be/stops/300570", "https://data.delijn.be/stops/307339"], ["https://data.delijn.be/stops/301515", "https://data.delijn.be/stops/301526"], ["https://data.delijn.be/stops/405767", "https://data.delijn.be/stops/405782"], ["https://data.delijn.be/stops/109244", "https://data.delijn.be/stops/109259"], ["https://data.delijn.be/stops/202911", "https://data.delijn.be/stops/203911"], ["https://data.delijn.be/stops/305255", "https://data.delijn.be/stops/305284"], ["https://data.delijn.be/stops/200689", "https://data.delijn.be/stops/201197"], ["https://data.delijn.be/stops/208831", "https://data.delijn.be/stops/209231"], ["https://data.delijn.be/stops/503544", "https://data.delijn.be/stops/503547"], ["https://data.delijn.be/stops/202480", "https://data.delijn.be/stops/202889"], ["https://data.delijn.be/stops/502434", "https://data.delijn.be/stops/507124"], ["https://data.delijn.be/stops/504195", "https://data.delijn.be/stops/505415"], ["https://data.delijn.be/stops/503597", "https://data.delijn.be/stops/508597"], ["https://data.delijn.be/stops/305382", "https://data.delijn.be/stops/305386"], ["https://data.delijn.be/stops/501072", "https://data.delijn.be/stops/506506"], ["https://data.delijn.be/stops/101816", "https://data.delijn.be/stops/107834"], ["https://data.delijn.be/stops/508385", "https://data.delijn.be/stops/508406"], ["https://data.delijn.be/stops/206662", "https://data.delijn.be/stops/208500"], ["https://data.delijn.be/stops/301049", "https://data.delijn.be/stops/306116"], ["https://data.delijn.be/stops/402559", "https://data.delijn.be/stops/402566"], ["https://data.delijn.be/stops/302324", "https://data.delijn.be/stops/303448"], ["https://data.delijn.be/stops/103466", "https://data.delijn.be/stops/106688"], ["https://data.delijn.be/stops/308270", "https://data.delijn.be/stops/308287"], ["https://data.delijn.be/stops/400211", "https://data.delijn.be/stops/400239"], ["https://data.delijn.be/stops/102956", "https://data.delijn.be/stops/103764"], ["https://data.delijn.be/stops/303412", "https://data.delijn.be/stops/303423"], ["https://data.delijn.be/stops/506134", "https://data.delijn.be/stops/590331"], ["https://data.delijn.be/stops/207322", "https://data.delijn.be/stops/207354"], ["https://data.delijn.be/stops/305520", "https://data.delijn.be/stops/305522"], ["https://data.delijn.be/stops/204076", "https://data.delijn.be/stops/204082"], ["https://data.delijn.be/stops/502023", "https://data.delijn.be/stops/508321"], ["https://data.delijn.be/stops/105329", "https://data.delijn.be/stops/105331"], ["https://data.delijn.be/stops/405083", "https://data.delijn.be/stops/405708"], ["https://data.delijn.be/stops/505596", "https://data.delijn.be/stops/505597"], ["https://data.delijn.be/stops/304437", "https://data.delijn.be/stops/304455"], ["https://data.delijn.be/stops/106857", "https://data.delijn.be/stops/109700"], ["https://data.delijn.be/stops/404156", "https://data.delijn.be/stops/404176"], ["https://data.delijn.be/stops/207837", "https://data.delijn.be/stops/207939"], ["https://data.delijn.be/stops/200492", "https://data.delijn.be/stops/201890"], ["https://data.delijn.be/stops/105848", "https://data.delijn.be/stops/105849"], ["https://data.delijn.be/stops/302359", "https://data.delijn.be/stops/307014"], ["https://data.delijn.be/stops/508665", "https://data.delijn.be/stops/508667"], ["https://data.delijn.be/stops/300464", "https://data.delijn.be/stops/300467"], ["https://data.delijn.be/stops/503683", "https://data.delijn.be/stops/503685"], ["https://data.delijn.be/stops/101054", "https://data.delijn.be/stops/101380"], ["https://data.delijn.be/stops/208060", "https://data.delijn.be/stops/208507"], ["https://data.delijn.be/stops/503627", "https://data.delijn.be/stops/508623"], ["https://data.delijn.be/stops/407975", "https://data.delijn.be/stops/408239"], ["https://data.delijn.be/stops/503315", "https://data.delijn.be/stops/508133"], ["https://data.delijn.be/stops/502405", "https://data.delijn.be/stops/507393"], ["https://data.delijn.be/stops/400752", "https://data.delijn.be/stops/409570"], ["https://data.delijn.be/stops/504077", "https://data.delijn.be/stops/504693"], ["https://data.delijn.be/stops/501409", "https://data.delijn.be/stops/501410"], ["https://data.delijn.be/stops/104858", "https://data.delijn.be/stops/107815"], ["https://data.delijn.be/stops/302492", "https://data.delijn.be/stops/308836"], ["https://data.delijn.be/stops/409068", "https://data.delijn.be/stops/409070"], ["https://data.delijn.be/stops/304986", "https://data.delijn.be/stops/308014"], ["https://data.delijn.be/stops/405924", "https://data.delijn.be/stops/405931"], ["https://data.delijn.be/stops/405304", "https://data.delijn.be/stops/305688"], ["https://data.delijn.be/stops/502015", "https://data.delijn.be/stops/502915"], ["https://data.delijn.be/stops/304898", "https://data.delijn.be/stops/304903"], ["https://data.delijn.be/stops/407580", "https://data.delijn.be/stops/409290"], ["https://data.delijn.be/stops/108704", "https://data.delijn.be/stops/108707"], ["https://data.delijn.be/stops/502232", "https://data.delijn.be/stops/502684"], ["https://data.delijn.be/stops/300651", "https://data.delijn.be/stops/300654"], ["https://data.delijn.be/stops/501503", "https://data.delijn.be/stops/506112"], ["https://data.delijn.be/stops/208281", "https://data.delijn.be/stops/209281"], ["https://data.delijn.be/stops/305447", "https://data.delijn.be/stops/307326"], ["https://data.delijn.be/stops/202747", "https://data.delijn.be/stops/206594"], ["https://data.delijn.be/stops/200325", "https://data.delijn.be/stops/210107"], ["https://data.delijn.be/stops/200459", "https://data.delijn.be/stops/201458"], ["https://data.delijn.be/stops/202211", "https://data.delijn.be/stops/202773"], ["https://data.delijn.be/stops/206332", "https://data.delijn.be/stops/206364"], ["https://data.delijn.be/stops/204643", "https://data.delijn.be/stops/204646"], ["https://data.delijn.be/stops/503222", "https://data.delijn.be/stops/503596"], ["https://data.delijn.be/stops/406398", "https://data.delijn.be/stops/302855"], ["https://data.delijn.be/stops/108136", "https://data.delijn.be/stops/108845"], ["https://data.delijn.be/stops/104043", "https://data.delijn.be/stops/305982"], ["https://data.delijn.be/stops/502605", "https://data.delijn.be/stops/502606"], ["https://data.delijn.be/stops/202640", "https://data.delijn.be/stops/205832"], ["https://data.delijn.be/stops/506253", "https://data.delijn.be/stops/506738"], ["https://data.delijn.be/stops/503419", "https://data.delijn.be/stops/508419"], ["https://data.delijn.be/stops/505088", "https://data.delijn.be/stops/505242"], ["https://data.delijn.be/stops/204171", "https://data.delijn.be/stops/205171"], ["https://data.delijn.be/stops/303753", "https://data.delijn.be/stops/303789"], ["https://data.delijn.be/stops/402350", "https://data.delijn.be/stops/402365"], ["https://data.delijn.be/stops/408156", "https://data.delijn.be/stops/409113"], ["https://data.delijn.be/stops/504032", "https://data.delijn.be/stops/509032"], ["https://data.delijn.be/stops/302444", "https://data.delijn.be/stops/302445"], ["https://data.delijn.be/stops/406940", "https://data.delijn.be/stops/406970"], ["https://data.delijn.be/stops/206452", "https://data.delijn.be/stops/206824"], ["https://data.delijn.be/stops/107933", "https://data.delijn.be/stops/107934"], ["https://data.delijn.be/stops/204511", "https://data.delijn.be/stops/205333"], ["https://data.delijn.be/stops/300025", "https://data.delijn.be/stops/300403"], ["https://data.delijn.be/stops/202339", "https://data.delijn.be/stops/203483"], ["https://data.delijn.be/stops/108706", "https://data.delijn.be/stops/108854"], ["https://data.delijn.be/stops/304441", "https://data.delijn.be/stops/307716"], ["https://data.delijn.be/stops/307522", "https://data.delijn.be/stops/307703"], ["https://data.delijn.be/stops/301145", "https://data.delijn.be/stops/301146"], ["https://data.delijn.be/stops/506415", "https://data.delijn.be/stops/506416"], ["https://data.delijn.be/stops/300028", "https://data.delijn.be/stops/302939"], ["https://data.delijn.be/stops/203182", "https://data.delijn.be/stops/204200"], ["https://data.delijn.be/stops/502662", "https://data.delijn.be/stops/507117"], ["https://data.delijn.be/stops/101796", "https://data.delijn.be/stops/104552"], ["https://data.delijn.be/stops/206066", "https://data.delijn.be/stops/207066"], ["https://data.delijn.be/stops/504111", "https://data.delijn.be/stops/504690"], ["https://data.delijn.be/stops/405059", "https://data.delijn.be/stops/405066"], ["https://data.delijn.be/stops/204503", "https://data.delijn.be/stops/205503"], ["https://data.delijn.be/stops/400914", "https://data.delijn.be/stops/400965"], ["https://data.delijn.be/stops/202400", "https://data.delijn.be/stops/208262"], ["https://data.delijn.be/stops/502549", "https://data.delijn.be/stops/507550"], ["https://data.delijn.be/stops/503038", "https://data.delijn.be/stops/508214"], ["https://data.delijn.be/stops/207764", "https://data.delijn.be/stops/208872"], ["https://data.delijn.be/stops/505923", "https://data.delijn.be/stops/509936"], ["https://data.delijn.be/stops/106704", "https://data.delijn.be/stops/106705"], ["https://data.delijn.be/stops/203680", "https://data.delijn.be/stops/203681"], ["https://data.delijn.be/stops/207704", "https://data.delijn.be/stops/207705"], ["https://data.delijn.be/stops/305283", "https://data.delijn.be/stops/305293"], ["https://data.delijn.be/stops/308722", "https://data.delijn.be/stops/308723"], ["https://data.delijn.be/stops/405809", "https://data.delijn.be/stops/409414"], ["https://data.delijn.be/stops/106110", "https://data.delijn.be/stops/109183"], ["https://data.delijn.be/stops/202392", "https://data.delijn.be/stops/202393"], ["https://data.delijn.be/stops/305499", "https://data.delijn.be/stops/308912"], ["https://data.delijn.be/stops/507250", "https://data.delijn.be/stops/507251"], ["https://data.delijn.be/stops/200086", "https://data.delijn.be/stops/202478"], ["https://data.delijn.be/stops/202823", "https://data.delijn.be/stops/202924"], ["https://data.delijn.be/stops/303679", "https://data.delijn.be/stops/308718"], ["https://data.delijn.be/stops/503069", "https://data.delijn.be/stops/503522"], ["https://data.delijn.be/stops/403382", "https://data.delijn.be/stops/403383"], ["https://data.delijn.be/stops/301697", "https://data.delijn.be/stops/301698"], ["https://data.delijn.be/stops/503244", "https://data.delijn.be/stops/508068"], ["https://data.delijn.be/stops/408578", "https://data.delijn.be/stops/408586"], ["https://data.delijn.be/stops/308502", "https://data.delijn.be/stops/308539"], ["https://data.delijn.be/stops/201705", "https://data.delijn.be/stops/203445"], ["https://data.delijn.be/stops/300728", "https://data.delijn.be/stops/307057"], ["https://data.delijn.be/stops/102477", "https://data.delijn.be/stops/400177"], ["https://data.delijn.be/stops/107933", "https://data.delijn.be/stops/205564"], ["https://data.delijn.be/stops/503231", "https://data.delijn.be/stops/504783"], ["https://data.delijn.be/stops/504158", "https://data.delijn.be/stops/504181"], ["https://data.delijn.be/stops/302252", "https://data.delijn.be/stops/302253"], ["https://data.delijn.be/stops/108101", "https://data.delijn.be/stops/108109"], ["https://data.delijn.be/stops/506026", "https://data.delijn.be/stops/506037"], ["https://data.delijn.be/stops/403960", "https://data.delijn.be/stops/403967"], ["https://data.delijn.be/stops/402136", "https://data.delijn.be/stops/402137"], ["https://data.delijn.be/stops/206419", "https://data.delijn.be/stops/306078"], ["https://data.delijn.be/stops/402017", "https://data.delijn.be/stops/402071"], ["https://data.delijn.be/stops/307640", "https://data.delijn.be/stops/307691"], ["https://data.delijn.be/stops/306686", "https://data.delijn.be/stops/309671"], ["https://data.delijn.be/stops/306386", "https://data.delijn.be/stops/307198"], ["https://data.delijn.be/stops/206799", "https://data.delijn.be/stops/209623"], ["https://data.delijn.be/stops/206402", "https://data.delijn.be/stops/207243"], ["https://data.delijn.be/stops/408311", "https://data.delijn.be/stops/408345"], ["https://data.delijn.be/stops/500957", "https://data.delijn.be/stops/503289"], ["https://data.delijn.be/stops/307813", "https://data.delijn.be/stops/307820"], ["https://data.delijn.be/stops/304723", "https://data.delijn.be/stops/304734"], ["https://data.delijn.be/stops/102598", "https://data.delijn.be/stops/104587"], ["https://data.delijn.be/stops/408920", "https://data.delijn.be/stops/408922"], ["https://data.delijn.be/stops/503045", "https://data.delijn.be/stops/508045"], ["https://data.delijn.be/stops/405699", "https://data.delijn.be/stops/406030"], ["https://data.delijn.be/stops/200662", "https://data.delijn.be/stops/201462"], ["https://data.delijn.be/stops/105046", "https://data.delijn.be/stops/105054"], ["https://data.delijn.be/stops/204233", "https://data.delijn.be/stops/205473"], ["https://data.delijn.be/stops/101391", "https://data.delijn.be/stops/107107"], ["https://data.delijn.be/stops/105657", "https://data.delijn.be/stops/105658"], ["https://data.delijn.be/stops/501531", "https://data.delijn.be/stops/501532"], ["https://data.delijn.be/stops/503248", "https://data.delijn.be/stops/503262"], ["https://data.delijn.be/stops/108411", "https://data.delijn.be/stops/108412"], ["https://data.delijn.be/stops/201672", "https://data.delijn.be/stops/202502"], ["https://data.delijn.be/stops/105928", "https://data.delijn.be/stops/109100"], ["https://data.delijn.be/stops/302772", "https://data.delijn.be/stops/302773"], ["https://data.delijn.be/stops/108077", "https://data.delijn.be/stops/108078"], ["https://data.delijn.be/stops/101078", "https://data.delijn.be/stops/101079"], ["https://data.delijn.be/stops/207771", "https://data.delijn.be/stops/208739"], ["https://data.delijn.be/stops/504829", "https://data.delijn.be/stops/508120"], ["https://data.delijn.be/stops/300483", "https://data.delijn.be/stops/300507"], ["https://data.delijn.be/stops/405223", "https://data.delijn.be/stops/405288"], ["https://data.delijn.be/stops/208020", "https://data.delijn.be/stops/209016"], ["https://data.delijn.be/stops/406101", "https://data.delijn.be/stops/407146"], ["https://data.delijn.be/stops/203701", "https://data.delijn.be/stops/211066"], ["https://data.delijn.be/stops/201697", "https://data.delijn.be/stops/203391"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/106451"], ["https://data.delijn.be/stops/105698", "https://data.delijn.be/stops/106071"], ["https://data.delijn.be/stops/404146", "https://data.delijn.be/stops/404180"], ["https://data.delijn.be/stops/403682", "https://data.delijn.be/stops/403685"], ["https://data.delijn.be/stops/101035", "https://data.delijn.be/stops/105445"], ["https://data.delijn.be/stops/508139", "https://data.delijn.be/stops/508140"], ["https://data.delijn.be/stops/305352", "https://data.delijn.be/stops/307969"], ["https://data.delijn.be/stops/505641", "https://data.delijn.be/stops/508969"], ["https://data.delijn.be/stops/303791", "https://data.delijn.be/stops/303809"], ["https://data.delijn.be/stops/200704", "https://data.delijn.be/stops/202575"], ["https://data.delijn.be/stops/409550", "https://data.delijn.be/stops/410112"], ["https://data.delijn.be/stops/503660", "https://data.delijn.be/stops/503663"], ["https://data.delijn.be/stops/408265", "https://data.delijn.be/stops/408413"], ["https://data.delijn.be/stops/301968", "https://data.delijn.be/stops/308952"], ["https://data.delijn.be/stops/200765", "https://data.delijn.be/stops/208380"], ["https://data.delijn.be/stops/200061", "https://data.delijn.be/stops/202133"], ["https://data.delijn.be/stops/301249", "https://data.delijn.be/stops/304397"], ["https://data.delijn.be/stops/504449", "https://data.delijn.be/stops/509443"], ["https://data.delijn.be/stops/201882", "https://data.delijn.be/stops/205994"], ["https://data.delijn.be/stops/503116", "https://data.delijn.be/stops/508117"], ["https://data.delijn.be/stops/302273", "https://data.delijn.be/stops/302275"], ["https://data.delijn.be/stops/200977", "https://data.delijn.be/stops/202906"], ["https://data.delijn.be/stops/208166", "https://data.delijn.be/stops/209175"], ["https://data.delijn.be/stops/400757", "https://data.delijn.be/stops/409807"], ["https://data.delijn.be/stops/107710", "https://data.delijn.be/stops/108220"], ["https://data.delijn.be/stops/204631", "https://data.delijn.be/stops/205631"], ["https://data.delijn.be/stops/501745", "https://data.delijn.be/stops/506363"], ["https://data.delijn.be/stops/509832", "https://data.delijn.be/stops/509834"], ["https://data.delijn.be/stops/206352", "https://data.delijn.be/stops/207352"], ["https://data.delijn.be/stops/305048", "https://data.delijn.be/stops/305050"], ["https://data.delijn.be/stops/501520", "https://data.delijn.be/stops/510014"], ["https://data.delijn.be/stops/409744", "https://data.delijn.be/stops/409794"], ["https://data.delijn.be/stops/205914", "https://data.delijn.be/stops/205916"], ["https://data.delijn.be/stops/405369", "https://data.delijn.be/stops/405372"], ["https://data.delijn.be/stops/303083", "https://data.delijn.be/stops/303147"], ["https://data.delijn.be/stops/101362", "https://data.delijn.be/stops/101363"], ["https://data.delijn.be/stops/400603", "https://data.delijn.be/stops/400607"], ["https://data.delijn.be/stops/203967", "https://data.delijn.be/stops/205173"], ["https://data.delijn.be/stops/503978", "https://data.delijn.be/stops/505845"], ["https://data.delijn.be/stops/302922", "https://data.delijn.be/stops/303042"], ["https://data.delijn.be/stops/406338", "https://data.delijn.be/stops/406358"], ["https://data.delijn.be/stops/304148", "https://data.delijn.be/stops/304541"], ["https://data.delijn.be/stops/108767", "https://data.delijn.be/stops/109273"], ["https://data.delijn.be/stops/209224", "https://data.delijn.be/stops/209225"], ["https://data.delijn.be/stops/208952", "https://data.delijn.be/stops/209489"], ["https://data.delijn.be/stops/208620", "https://data.delijn.be/stops/209846"], ["https://data.delijn.be/stops/402631", "https://data.delijn.be/stops/410022"], ["https://data.delijn.be/stops/105665", "https://data.delijn.be/stops/105720"], ["https://data.delijn.be/stops/300590", "https://data.delijn.be/stops/300613"], ["https://data.delijn.be/stops/405503", "https://data.delijn.be/stops/302826"], ["https://data.delijn.be/stops/403583", "https://data.delijn.be/stops/406836"], ["https://data.delijn.be/stops/504535", "https://data.delijn.be/stops/508729"], ["https://data.delijn.be/stops/402723", "https://data.delijn.be/stops/402724"], ["https://data.delijn.be/stops/306909", "https://data.delijn.be/stops/306910"], ["https://data.delijn.be/stops/500933", "https://data.delijn.be/stops/503123"], ["https://data.delijn.be/stops/106895", "https://data.delijn.be/stops/107222"], ["https://data.delijn.be/stops/204037", "https://data.delijn.be/stops/205038"], ["https://data.delijn.be/stops/501181", "https://data.delijn.be/stops/509932"], ["https://data.delijn.be/stops/501045", "https://data.delijn.be/stops/506049"], ["https://data.delijn.be/stops/200051", "https://data.delijn.be/stops/203934"], ["https://data.delijn.be/stops/505103", "https://data.delijn.be/stops/509008"], ["https://data.delijn.be/stops/402659", "https://data.delijn.be/stops/402706"], ["https://data.delijn.be/stops/301289", "https://data.delijn.be/stops/301290"], ["https://data.delijn.be/stops/200235", "https://data.delijn.be/stops/211051"], ["https://data.delijn.be/stops/504961", "https://data.delijn.be/stops/508064"], ["https://data.delijn.be/stops/202843", "https://data.delijn.be/stops/203843"], ["https://data.delijn.be/stops/502556", "https://data.delijn.be/stops/507551"], ["https://data.delijn.be/stops/504559", "https://data.delijn.be/stops/509559"], ["https://data.delijn.be/stops/502928", "https://data.delijn.be/stops/509931"], ["https://data.delijn.be/stops/201327", "https://data.delijn.be/stops/203765"], ["https://data.delijn.be/stops/207777", "https://data.delijn.be/stops/208186"], ["https://data.delijn.be/stops/403196", "https://data.delijn.be/stops/403550"], ["https://data.delijn.be/stops/206031", "https://data.delijn.be/stops/207801"], ["https://data.delijn.be/stops/104666", "https://data.delijn.be/stops/305989"], ["https://data.delijn.be/stops/501379", "https://data.delijn.be/stops/506379"], ["https://data.delijn.be/stops/106262", "https://data.delijn.be/stops/106263"], ["https://data.delijn.be/stops/102019", "https://data.delijn.be/stops/102021"], ["https://data.delijn.be/stops/407925", "https://data.delijn.be/stops/408199"], ["https://data.delijn.be/stops/206567", "https://data.delijn.be/stops/207567"], ["https://data.delijn.be/stops/200210", "https://data.delijn.be/stops/200212"], ["https://data.delijn.be/stops/103998", "https://data.delijn.be/stops/103999"], ["https://data.delijn.be/stops/301280", "https://data.delijn.be/stops/304859"], ["https://data.delijn.be/stops/503361", "https://data.delijn.be/stops/503440"], ["https://data.delijn.be/stops/400044", "https://data.delijn.be/stops/400324"], ["https://data.delijn.be/stops/202733", "https://data.delijn.be/stops/203735"], ["https://data.delijn.be/stops/303973", "https://data.delijn.be/stops/303974"], ["https://data.delijn.be/stops/206562", "https://data.delijn.be/stops/206823"], ["https://data.delijn.be/stops/403224", "https://data.delijn.be/stops/403402"], ["https://data.delijn.be/stops/102591", "https://data.delijn.be/stops/102946"], ["https://data.delijn.be/stops/209237", "https://data.delijn.be/stops/209384"], ["https://data.delijn.be/stops/302586", "https://data.delijn.be/stops/302590"], ["https://data.delijn.be/stops/405792", "https://data.delijn.be/stops/405833"], ["https://data.delijn.be/stops/400300", "https://data.delijn.be/stops/406768"], ["https://data.delijn.be/stops/501408", "https://data.delijn.be/stops/506408"], ["https://data.delijn.be/stops/107526", "https://data.delijn.be/stops/107545"], ["https://data.delijn.be/stops/207164", "https://data.delijn.be/stops/303386"], ["https://data.delijn.be/stops/302388", "https://data.delijn.be/stops/302761"], ["https://data.delijn.be/stops/504100", "https://data.delijn.be/stops/504120"], ["https://data.delijn.be/stops/107005", "https://data.delijn.be/stops/107010"], ["https://data.delijn.be/stops/502254", "https://data.delijn.be/stops/505025"], ["https://data.delijn.be/stops/106909", "https://data.delijn.be/stops/107254"], ["https://data.delijn.be/stops/507048", "https://data.delijn.be/stops/507642"], ["https://data.delijn.be/stops/500042", "https://data.delijn.be/stops/507117"], ["https://data.delijn.be/stops/401198", "https://data.delijn.be/stops/401207"], ["https://data.delijn.be/stops/401523", "https://data.delijn.be/stops/401743"], ["https://data.delijn.be/stops/408543", "https://data.delijn.be/stops/408615"], ["https://data.delijn.be/stops/502414", "https://data.delijn.be/stops/507428"], ["https://data.delijn.be/stops/103228", "https://data.delijn.be/stops/109405"], ["https://data.delijn.be/stops/501320", "https://data.delijn.be/stops/501323"], ["https://data.delijn.be/stops/403014", "https://data.delijn.be/stops/409334"], ["https://data.delijn.be/stops/208414", "https://data.delijn.be/stops/209414"], ["https://data.delijn.be/stops/403429", "https://data.delijn.be/stops/410209"], ["https://data.delijn.be/stops/202237", "https://data.delijn.be/stops/203237"], ["https://data.delijn.be/stops/301706", "https://data.delijn.be/stops/306879"], ["https://data.delijn.be/stops/407400", "https://data.delijn.be/stops/407492"], ["https://data.delijn.be/stops/208057", "https://data.delijn.be/stops/209628"], ["https://data.delijn.be/stops/409278", "https://data.delijn.be/stops/409279"], ["https://data.delijn.be/stops/302082", "https://data.delijn.be/stops/302092"], ["https://data.delijn.be/stops/102408", "https://data.delijn.be/stops/102409"], ["https://data.delijn.be/stops/303955", "https://data.delijn.be/stops/303956"], ["https://data.delijn.be/stops/102593", "https://data.delijn.be/stops/102594"], ["https://data.delijn.be/stops/505183", "https://data.delijn.be/stops/509395"], ["https://data.delijn.be/stops/308146", "https://data.delijn.be/stops/308176"], ["https://data.delijn.be/stops/405433", "https://data.delijn.be/stops/410150"], ["https://data.delijn.be/stops/402300", "https://data.delijn.be/stops/409359"], ["https://data.delijn.be/stops/308479", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/504166", "https://data.delijn.be/stops/509172"], ["https://data.delijn.be/stops/301279", "https://data.delijn.be/stops/304858"], ["https://data.delijn.be/stops/201707", "https://data.delijn.be/stops/201713"], ["https://data.delijn.be/stops/403221", "https://data.delijn.be/stops/403481"], ["https://data.delijn.be/stops/500120", "https://data.delijn.be/stops/509829"], ["https://data.delijn.be/stops/103082", "https://data.delijn.be/stops/104671"], ["https://data.delijn.be/stops/505856", "https://data.delijn.be/stops/508380"], ["https://data.delijn.be/stops/508670", "https://data.delijn.be/stops/509842"], ["https://data.delijn.be/stops/405653", "https://data.delijn.be/stops/409307"], ["https://data.delijn.be/stops/300630", "https://data.delijn.be/stops/307860"], ["https://data.delijn.be/stops/304768", "https://data.delijn.be/stops/308701"], ["https://data.delijn.be/stops/303120", "https://data.delijn.be/stops/303223"], ["https://data.delijn.be/stops/503085", "https://data.delijn.be/stops/504096"], ["https://data.delijn.be/stops/506130", "https://data.delijn.be/stops/506133"], ["https://data.delijn.be/stops/402440", "https://data.delijn.be/stops/402442"], ["https://data.delijn.be/stops/508681", "https://data.delijn.be/stops/508683"], ["https://data.delijn.be/stops/106967", "https://data.delijn.be/stops/106969"], ["https://data.delijn.be/stops/301196", "https://data.delijn.be/stops/301197"], ["https://data.delijn.be/stops/505526", "https://data.delijn.be/stops/505529"], ["https://data.delijn.be/stops/505142", "https://data.delijn.be/stops/505232"], ["https://data.delijn.be/stops/300006", "https://data.delijn.be/stops/306200"], ["https://data.delijn.be/stops/502080", "https://data.delijn.be/stops/507681"], ["https://data.delijn.be/stops/106379", "https://data.delijn.be/stops/108023"], ["https://data.delijn.be/stops/407732", "https://data.delijn.be/stops/409786"], ["https://data.delijn.be/stops/501715", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/200246", "https://data.delijn.be/stops/203009"], ["https://data.delijn.be/stops/502448", "https://data.delijn.be/stops/502463"], ["https://data.delijn.be/stops/107123", "https://data.delijn.be/stops/107126"], ["https://data.delijn.be/stops/103541", "https://data.delijn.be/stops/106726"], ["https://data.delijn.be/stops/301283", "https://data.delijn.be/stops/301296"], ["https://data.delijn.be/stops/204251", "https://data.delijn.be/stops/205252"], ["https://data.delijn.be/stops/107084", "https://data.delijn.be/stops/107086"], ["https://data.delijn.be/stops/202852", "https://data.delijn.be/stops/203853"], ["https://data.delijn.be/stops/304130", "https://data.delijn.be/stops/304131"], ["https://data.delijn.be/stops/301103", "https://data.delijn.be/stops/308932"], ["https://data.delijn.be/stops/303652", "https://data.delijn.be/stops/304066"], ["https://data.delijn.be/stops/204689", "https://data.delijn.be/stops/204690"], ["https://data.delijn.be/stops/302656", "https://data.delijn.be/stops/308113"], ["https://data.delijn.be/stops/407979", "https://data.delijn.be/stops/408236"], ["https://data.delijn.be/stops/204080", "https://data.delijn.be/stops/205202"], ["https://data.delijn.be/stops/408252", "https://data.delijn.be/stops/408351"], ["https://data.delijn.be/stops/305777", "https://data.delijn.be/stops/305779"], ["https://data.delijn.be/stops/300400", "https://data.delijn.be/stops/307001"], ["https://data.delijn.be/stops/305856", "https://data.delijn.be/stops/305858"], ["https://data.delijn.be/stops/400815", "https://data.delijn.be/stops/400832"], ["https://data.delijn.be/stops/101527", "https://data.delijn.be/stops/109651"], ["https://data.delijn.be/stops/107258", "https://data.delijn.be/stops/107259"], ["https://data.delijn.be/stops/301711", "https://data.delijn.be/stops/305908"], ["https://data.delijn.be/stops/503232", "https://data.delijn.be/stops/508263"], ["https://data.delijn.be/stops/305333", "https://data.delijn.be/stops/307300"], ["https://data.delijn.be/stops/206134", "https://data.delijn.be/stops/206511"], ["https://data.delijn.be/stops/502244", "https://data.delijn.be/stops/507245"], ["https://data.delijn.be/stops/206309", "https://data.delijn.be/stops/206310"], ["https://data.delijn.be/stops/404810", "https://data.delijn.be/stops/406108"], ["https://data.delijn.be/stops/208575", "https://data.delijn.be/stops/306271"], ["https://data.delijn.be/stops/400242", "https://data.delijn.be/stops/400944"], ["https://data.delijn.be/stops/202196", "https://data.delijn.be/stops/211087"], ["https://data.delijn.be/stops/505692", "https://data.delijn.be/stops/507540"], ["https://data.delijn.be/stops/101050", "https://data.delijn.be/stops/108555"], ["https://data.delijn.be/stops/200318", "https://data.delijn.be/stops/200588"], ["https://data.delijn.be/stops/206462", "https://data.delijn.be/stops/206463"], ["https://data.delijn.be/stops/500126", "https://data.delijn.be/stops/503003"], ["https://data.delijn.be/stops/208520", "https://data.delijn.be/stops/209078"], ["https://data.delijn.be/stops/109181", "https://data.delijn.be/stops/109182"], ["https://data.delijn.be/stops/108216", "https://data.delijn.be/stops/108219"], ["https://data.delijn.be/stops/501680", "https://data.delijn.be/stops/509122"], ["https://data.delijn.be/stops/505547", "https://data.delijn.be/stops/507939"], ["https://data.delijn.be/stops/201096", "https://data.delijn.be/stops/201345"], ["https://data.delijn.be/stops/101685", "https://data.delijn.be/stops/105766"], ["https://data.delijn.be/stops/304565", "https://data.delijn.be/stops/304603"], ["https://data.delijn.be/stops/200375", "https://data.delijn.be/stops/200548"], ["https://data.delijn.be/stops/102077", "https://data.delijn.be/stops/105989"], ["https://data.delijn.be/stops/208530", "https://data.delijn.be/stops/209456"], ["https://data.delijn.be/stops/300657", "https://data.delijn.be/stops/300658"], ["https://data.delijn.be/stops/408222", "https://data.delijn.be/stops/408224"], ["https://data.delijn.be/stops/407638", "https://data.delijn.be/stops/407641"], ["https://data.delijn.be/stops/302273", "https://data.delijn.be/stops/303436"], ["https://data.delijn.be/stops/506049", "https://data.delijn.be/stops/506082"], ["https://data.delijn.be/stops/307456", "https://data.delijn.be/stops/307846"], ["https://data.delijn.be/stops/404918", "https://data.delijn.be/stops/404954"], ["https://data.delijn.be/stops/203915", "https://data.delijn.be/stops/203929"], ["https://data.delijn.be/stops/206742", "https://data.delijn.be/stops/301093"], ["https://data.delijn.be/stops/501034", "https://data.delijn.be/stops/506039"], ["https://data.delijn.be/stops/509774", "https://data.delijn.be/stops/509785"], ["https://data.delijn.be/stops/104412", "https://data.delijn.be/stops/205337"], ["https://data.delijn.be/stops/402895", "https://data.delijn.be/stops/302638"], ["https://data.delijn.be/stops/500041", "https://data.delijn.be/stops/500047"], ["https://data.delijn.be/stops/400597", "https://data.delijn.be/stops/408676"], ["https://data.delijn.be/stops/404310", "https://data.delijn.be/stops/406816"], ["https://data.delijn.be/stops/205418", "https://data.delijn.be/stops/205428"], ["https://data.delijn.be/stops/206100", "https://data.delijn.be/stops/207911"], ["https://data.delijn.be/stops/405421", "https://data.delijn.be/stops/306777"], ["https://data.delijn.be/stops/202239", "https://data.delijn.be/stops/505518"], ["https://data.delijn.be/stops/403360", "https://data.delijn.be/stops/403448"], ["https://data.delijn.be/stops/405639", "https://data.delijn.be/stops/405640"], ["https://data.delijn.be/stops/206069", "https://data.delijn.be/stops/207917"], ["https://data.delijn.be/stops/501125", "https://data.delijn.be/stops/505045"], ["https://data.delijn.be/stops/302919", "https://data.delijn.be/stops/303977"], ["https://data.delijn.be/stops/102499", "https://data.delijn.be/stops/400028"], ["https://data.delijn.be/stops/200290", "https://data.delijn.be/stops/205941"], ["https://data.delijn.be/stops/500013", "https://data.delijn.be/stops/507563"], ["https://data.delijn.be/stops/206235", "https://data.delijn.be/stops/207863"], ["https://data.delijn.be/stops/204347", "https://data.delijn.be/stops/205209"], ["https://data.delijn.be/stops/406488", "https://data.delijn.be/stops/406495"], ["https://data.delijn.be/stops/504775", "https://data.delijn.be/stops/505302"], ["https://data.delijn.be/stops/406304", "https://data.delijn.be/stops/409232"], ["https://data.delijn.be/stops/407984", "https://data.delijn.be/stops/408021"], ["https://data.delijn.be/stops/208314", "https://data.delijn.be/stops/209770"], ["https://data.delijn.be/stops/300772", "https://data.delijn.be/stops/302407"], ["https://data.delijn.be/stops/509136", "https://data.delijn.be/stops/509140"], ["https://data.delijn.be/stops/503646", "https://data.delijn.be/stops/508266"], ["https://data.delijn.be/stops/102560", "https://data.delijn.be/stops/104685"], ["https://data.delijn.be/stops/107581", "https://data.delijn.be/stops/107719"], ["https://data.delijn.be/stops/102918", "https://data.delijn.be/stops/102919"], ["https://data.delijn.be/stops/102718", "https://data.delijn.be/stops/107154"], ["https://data.delijn.be/stops/502692", "https://data.delijn.be/stops/502924"], ["https://data.delijn.be/stops/208843", "https://data.delijn.be/stops/210022"], ["https://data.delijn.be/stops/501294", "https://data.delijn.be/stops/506324"], ["https://data.delijn.be/stops/205985", "https://data.delijn.be/stops/207565"], ["https://data.delijn.be/stops/200694", "https://data.delijn.be/stops/203791"], ["https://data.delijn.be/stops/308211", "https://data.delijn.be/stops/308216"], ["https://data.delijn.be/stops/206151", "https://data.delijn.be/stops/206152"], ["https://data.delijn.be/stops/406195", "https://data.delijn.be/stops/410402"], ["https://data.delijn.be/stops/306616", "https://data.delijn.be/stops/308537"], ["https://data.delijn.be/stops/303206", "https://data.delijn.be/stops/304322"], ["https://data.delijn.be/stops/404302", "https://data.delijn.be/stops/408550"], ["https://data.delijn.be/stops/305482", "https://data.delijn.be/stops/305483"], ["https://data.delijn.be/stops/302514", "https://data.delijn.be/stops/305802"], ["https://data.delijn.be/stops/404835", "https://data.delijn.be/stops/406751"], ["https://data.delijn.be/stops/204335", "https://data.delijn.be/stops/204626"], ["https://data.delijn.be/stops/408067", "https://data.delijn.be/stops/408068"], ["https://data.delijn.be/stops/402116", "https://data.delijn.be/stops/402138"], ["https://data.delijn.be/stops/402241", "https://data.delijn.be/stops/402284"], ["https://data.delijn.be/stops/200721", "https://data.delijn.be/stops/203623"], ["https://data.delijn.be/stops/303744", "https://data.delijn.be/stops/303756"], ["https://data.delijn.be/stops/300353", "https://data.delijn.be/stops/300402"], ["https://data.delijn.be/stops/302868", "https://data.delijn.be/stops/302894"], ["https://data.delijn.be/stops/106182", "https://data.delijn.be/stops/106184"], ["https://data.delijn.be/stops/301699", "https://data.delijn.be/stops/305294"], ["https://data.delijn.be/stops/500022", "https://data.delijn.be/stops/501346"], ["https://data.delijn.be/stops/308459", "https://data.delijn.be/stops/308693"], ["https://data.delijn.be/stops/300687", "https://data.delijn.be/stops/300696"], ["https://data.delijn.be/stops/206759", "https://data.delijn.be/stops/219020"], ["https://data.delijn.be/stops/402782", "https://data.delijn.be/stops/406921"], ["https://data.delijn.be/stops/408718", "https://data.delijn.be/stops/408727"], ["https://data.delijn.be/stops/509463", "https://data.delijn.be/stops/509574"], ["https://data.delijn.be/stops/105928", "https://data.delijn.be/stops/107975"], ["https://data.delijn.be/stops/106593", "https://data.delijn.be/stops/107387"], ["https://data.delijn.be/stops/401006", "https://data.delijn.be/stops/401011"], ["https://data.delijn.be/stops/101182", "https://data.delijn.be/stops/107945"], ["https://data.delijn.be/stops/502164", "https://data.delijn.be/stops/507108"], ["https://data.delijn.be/stops/102996", "https://data.delijn.be/stops/105397"], ["https://data.delijn.be/stops/408499", "https://data.delijn.be/stops/408527"], ["https://data.delijn.be/stops/402690", "https://data.delijn.be/stops/402869"], ["https://data.delijn.be/stops/509253", "https://data.delijn.be/stops/509254"], ["https://data.delijn.be/stops/408846", "https://data.delijn.be/stops/408851"], ["https://data.delijn.be/stops/104888", "https://data.delijn.be/stops/104889"], ["https://data.delijn.be/stops/401509", "https://data.delijn.be/stops/401558"], ["https://data.delijn.be/stops/304567", "https://data.delijn.be/stops/304656"], ["https://data.delijn.be/stops/404351", "https://data.delijn.be/stops/404358"], ["https://data.delijn.be/stops/307834", "https://data.delijn.be/stops/308277"], ["https://data.delijn.be/stops/504380", "https://data.delijn.be/stops/509380"], ["https://data.delijn.be/stops/103222", "https://data.delijn.be/stops/104547"], ["https://data.delijn.be/stops/208219", "https://data.delijn.be/stops/209773"], ["https://data.delijn.be/stops/106965", "https://data.delijn.be/stops/106981"], ["https://data.delijn.be/stops/400504", "https://data.delijn.be/stops/400511"], ["https://data.delijn.be/stops/400591", "https://data.delijn.be/stops/404292"], ["https://data.delijn.be/stops/106724", "https://data.delijn.be/stops/106726"], ["https://data.delijn.be/stops/307755", "https://data.delijn.be/stops/307757"], ["https://data.delijn.be/stops/402854", "https://data.delijn.be/stops/402856"], ["https://data.delijn.be/stops/108650", "https://data.delijn.be/stops/108655"], ["https://data.delijn.be/stops/407519", "https://data.delijn.be/stops/308242"], ["https://data.delijn.be/stops/209455", "https://data.delijn.be/stops/209778"], ["https://data.delijn.be/stops/207249", "https://data.delijn.be/stops/209951"], ["https://data.delijn.be/stops/204674", "https://data.delijn.be/stops/205615"], ["https://data.delijn.be/stops/302008", "https://data.delijn.be/stops/306381"], ["https://data.delijn.be/stops/205929", "https://data.delijn.be/stops/205930"], ["https://data.delijn.be/stops/104011", "https://data.delijn.be/stops/105928"], ["https://data.delijn.be/stops/504351", "https://data.delijn.be/stops/509592"], ["https://data.delijn.be/stops/402749", "https://data.delijn.be/stops/405181"], ["https://data.delijn.be/stops/305107", "https://data.delijn.be/stops/305140"], ["https://data.delijn.be/stops/400367", "https://data.delijn.be/stops/406769"], ["https://data.delijn.be/stops/104572", "https://data.delijn.be/stops/107468"], ["https://data.delijn.be/stops/403263", "https://data.delijn.be/stops/403455"], ["https://data.delijn.be/stops/200904", "https://data.delijn.be/stops/200921"], ["https://data.delijn.be/stops/206276", "https://data.delijn.be/stops/207275"], ["https://data.delijn.be/stops/402071", "https://data.delijn.be/stops/405552"], ["https://data.delijn.be/stops/401540", "https://data.delijn.be/stops/401541"], ["https://data.delijn.be/stops/501073", "https://data.delijn.be/stops/501079"], ["https://data.delijn.be/stops/404008", "https://data.delijn.be/stops/404009"], ["https://data.delijn.be/stops/202106", "https://data.delijn.be/stops/203262"], ["https://data.delijn.be/stops/402589", "https://data.delijn.be/stops/402596"], ["https://data.delijn.be/stops/204401", "https://data.delijn.be/stops/205401"], ["https://data.delijn.be/stops/105233", "https://data.delijn.be/stops/105234"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/504567"], ["https://data.delijn.be/stops/105297", "https://data.delijn.be/stops/105299"], ["https://data.delijn.be/stops/305680", "https://data.delijn.be/stops/305681"], ["https://data.delijn.be/stops/403337", "https://data.delijn.be/stops/410274"], ["https://data.delijn.be/stops/300585", "https://data.delijn.be/stops/300590"], ["https://data.delijn.be/stops/303462", "https://data.delijn.be/stops/308067"], ["https://data.delijn.be/stops/505242", "https://data.delijn.be/stops/507231"], ["https://data.delijn.be/stops/305701", "https://data.delijn.be/stops/307839"], ["https://data.delijn.be/stops/200909", "https://data.delijn.be/stops/202227"], ["https://data.delijn.be/stops/101425", "https://data.delijn.be/stops/108716"], ["https://data.delijn.be/stops/304424", "https://data.delijn.be/stops/307395"], ["https://data.delijn.be/stops/501250", "https://data.delijn.be/stops/501738"], ["https://data.delijn.be/stops/408780", "https://data.delijn.be/stops/410342"], ["https://data.delijn.be/stops/209610", "https://data.delijn.be/stops/305262"], ["https://data.delijn.be/stops/304557", "https://data.delijn.be/stops/304558"], ["https://data.delijn.be/stops/204373", "https://data.delijn.be/stops/204374"], ["https://data.delijn.be/stops/208382", "https://data.delijn.be/stops/209295"], ["https://data.delijn.be/stops/501427", "https://data.delijn.be/stops/501431"], ["https://data.delijn.be/stops/404763", "https://data.delijn.be/stops/404791"], ["https://data.delijn.be/stops/304589", "https://data.delijn.be/stops/304662"], ["https://data.delijn.be/stops/204071", "https://data.delijn.be/stops/205185"], ["https://data.delijn.be/stops/107491", "https://data.delijn.be/stops/305799"], ["https://data.delijn.be/stops/401794", "https://data.delijn.be/stops/401809"], ["https://data.delijn.be/stops/409680", "https://data.delijn.be/stops/409698"], ["https://data.delijn.be/stops/209391", "https://data.delijn.be/stops/209392"], ["https://data.delijn.be/stops/502537", "https://data.delijn.be/stops/505703"], ["https://data.delijn.be/stops/501323", "https://data.delijn.be/stops/501522"], ["https://data.delijn.be/stops/206618", "https://data.delijn.be/stops/206720"], ["https://data.delijn.be/stops/505336", "https://data.delijn.be/stops/507525"], ["https://data.delijn.be/stops/305133", "https://data.delijn.be/stops/305172"], ["https://data.delijn.be/stops/304626", "https://data.delijn.be/stops/304645"], ["https://data.delijn.be/stops/202900", "https://data.delijn.be/stops/203900"], ["https://data.delijn.be/stops/207358", "https://data.delijn.be/stops/207885"], ["https://data.delijn.be/stops/200681", "https://data.delijn.be/stops/200691"], ["https://data.delijn.be/stops/308443", "https://data.delijn.be/stops/308444"], ["https://data.delijn.be/stops/408561", "https://data.delijn.be/stops/408873"], ["https://data.delijn.be/stops/200088", "https://data.delijn.be/stops/201088"], ["https://data.delijn.be/stops/504261", "https://data.delijn.be/stops/505301"], ["https://data.delijn.be/stops/408324", "https://data.delijn.be/stops/408335"], ["https://data.delijn.be/stops/202471", "https://data.delijn.be/stops/209852"], ["https://data.delijn.be/stops/302422", "https://data.delijn.be/stops/308105"], ["https://data.delijn.be/stops/501144", "https://data.delijn.be/stops/507919"], ["https://data.delijn.be/stops/109016", "https://data.delijn.be/stops/404046"], ["https://data.delijn.be/stops/503088", "https://data.delijn.be/stops/505383"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/208155"], ["https://data.delijn.be/stops/106037", "https://data.delijn.be/stops/106053"], ["https://data.delijn.be/stops/204483", "https://data.delijn.be/stops/204515"], ["https://data.delijn.be/stops/206766", "https://data.delijn.be/stops/207800"], ["https://data.delijn.be/stops/501320", "https://data.delijn.be/stops/506323"], ["https://data.delijn.be/stops/304372", "https://data.delijn.be/stops/304375"], ["https://data.delijn.be/stops/202494", "https://data.delijn.be/stops/203495"], ["https://data.delijn.be/stops/102807", "https://data.delijn.be/stops/103901"], ["https://data.delijn.be/stops/506599", "https://data.delijn.be/stops/506733"], ["https://data.delijn.be/stops/203165", "https://data.delijn.be/stops/204833"], ["https://data.delijn.be/stops/208614", "https://data.delijn.be/stops/209615"], ["https://data.delijn.be/stops/206090", "https://data.delijn.be/stops/207089"], ["https://data.delijn.be/stops/109262", "https://data.delijn.be/stops/407110"], ["https://data.delijn.be/stops/506190", "https://data.delijn.be/stops/506394"], ["https://data.delijn.be/stops/206854", "https://data.delijn.be/stops/207856"], ["https://data.delijn.be/stops/409051", "https://data.delijn.be/stops/409085"], ["https://data.delijn.be/stops/402480", "https://data.delijn.be/stops/402481"], ["https://data.delijn.be/stops/201564", "https://data.delijn.be/stops/211019"], ["https://data.delijn.be/stops/410305", "https://data.delijn.be/stops/410306"], ["https://data.delijn.be/stops/402563", "https://data.delijn.be/stops/402571"], ["https://data.delijn.be/stops/202735", "https://data.delijn.be/stops/203908"], ["https://data.delijn.be/stops/408576", "https://data.delijn.be/stops/408577"], ["https://data.delijn.be/stops/402114", "https://data.delijn.be/stops/402115"], ["https://data.delijn.be/stops/403526", "https://data.delijn.be/stops/410217"], ["https://data.delijn.be/stops/503844", "https://data.delijn.be/stops/503847"], ["https://data.delijn.be/stops/501338", "https://data.delijn.be/stops/501342"], ["https://data.delijn.be/stops/402321", "https://data.delijn.be/stops/407955"], ["https://data.delijn.be/stops/302179", "https://data.delijn.be/stops/308875"], ["https://data.delijn.be/stops/304474", "https://data.delijn.be/stops/304507"], ["https://data.delijn.be/stops/508621", "https://data.delijn.be/stops/508632"], ["https://data.delijn.be/stops/405222", "https://data.delijn.be/stops/405290"], ["https://data.delijn.be/stops/206537", "https://data.delijn.be/stops/207537"], ["https://data.delijn.be/stops/102812", "https://data.delijn.be/stops/104775"], ["https://data.delijn.be/stops/107414", "https://data.delijn.be/stops/109796"], ["https://data.delijn.be/stops/204511", "https://data.delijn.be/stops/204544"], ["https://data.delijn.be/stops/108902", "https://data.delijn.be/stops/108904"], ["https://data.delijn.be/stops/407814", "https://data.delijn.be/stops/407815"], ["https://data.delijn.be/stops/101631", "https://data.delijn.be/stops/102189"], ["https://data.delijn.be/stops/406649", "https://data.delijn.be/stops/406655"], ["https://data.delijn.be/stops/200849", "https://data.delijn.be/stops/209653"], ["https://data.delijn.be/stops/301630", "https://data.delijn.be/stops/302119"], ["https://data.delijn.be/stops/401757", "https://data.delijn.be/stops/401806"], ["https://data.delijn.be/stops/300259", "https://data.delijn.be/stops/303893"], ["https://data.delijn.be/stops/206221", "https://data.delijn.be/stops/206371"], ["https://data.delijn.be/stops/102502", "https://data.delijn.be/stops/400028"], ["https://data.delijn.be/stops/403519", "https://data.delijn.be/stops/410276"], ["https://data.delijn.be/stops/302457", "https://data.delijn.be/stops/304756"], ["https://data.delijn.be/stops/403131", "https://data.delijn.be/stops/403666"], ["https://data.delijn.be/stops/302388", "https://data.delijn.be/stops/306185"], ["https://data.delijn.be/stops/304324", "https://data.delijn.be/stops/306882"], ["https://data.delijn.be/stops/304509", "https://data.delijn.be/stops/304518"], ["https://data.delijn.be/stops/207445", "https://data.delijn.be/stops/208515"], ["https://data.delijn.be/stops/209099", "https://data.delijn.be/stops/209100"], ["https://data.delijn.be/stops/504142", "https://data.delijn.be/stops/504147"], ["https://data.delijn.be/stops/204606", "https://data.delijn.be/stops/205608"], ["https://data.delijn.be/stops/504049", "https://data.delijn.be/stops/509045"], ["https://data.delijn.be/stops/203991", "https://data.delijn.be/stops/210851"], ["https://data.delijn.be/stops/301290", "https://data.delijn.be/stops/301297"], ["https://data.delijn.be/stops/201857", "https://data.delijn.be/stops/202664"], ["https://data.delijn.be/stops/107425", "https://data.delijn.be/stops/109241"], ["https://data.delijn.be/stops/300062", "https://data.delijn.be/stops/300408"], ["https://data.delijn.be/stops/505191", "https://data.delijn.be/stops/508149"], ["https://data.delijn.be/stops/200466", "https://data.delijn.be/stops/209957"], ["https://data.delijn.be/stops/202435", "https://data.delijn.be/stops/203433"], ["https://data.delijn.be/stops/102583", "https://data.delijn.be/stops/102584"], ["https://data.delijn.be/stops/308241", "https://data.delijn.be/stops/308243"], ["https://data.delijn.be/stops/408016", "https://data.delijn.be/stops/408199"], ["https://data.delijn.be/stops/204294", "https://data.delijn.be/stops/205294"], ["https://data.delijn.be/stops/103080", "https://data.delijn.be/stops/104123"], ["https://data.delijn.be/stops/106580", "https://data.delijn.be/stops/106582"], ["https://data.delijn.be/stops/407380", "https://data.delijn.be/stops/407382"], ["https://data.delijn.be/stops/203372", "https://data.delijn.be/stops/203587"], ["https://data.delijn.be/stops/206435", "https://data.delijn.be/stops/207435"], ["https://data.delijn.be/stops/302326", "https://data.delijn.be/stops/302343"], ["https://data.delijn.be/stops/502020", "https://data.delijn.be/stops/502913"], ["https://data.delijn.be/stops/105607", "https://data.delijn.be/stops/105608"], ["https://data.delijn.be/stops/102908", "https://data.delijn.be/stops/102909"], ["https://data.delijn.be/stops/502329", "https://data.delijn.be/stops/505009"], ["https://data.delijn.be/stops/406369", "https://data.delijn.be/stops/406393"], ["https://data.delijn.be/stops/201748", "https://data.delijn.be/stops/202971"], ["https://data.delijn.be/stops/503652", "https://data.delijn.be/stops/505117"], ["https://data.delijn.be/stops/104113", "https://data.delijn.be/stops/107878"], ["https://data.delijn.be/stops/503745", "https://data.delijn.be/stops/508745"], ["https://data.delijn.be/stops/107878", "https://data.delijn.be/stops/107882"], ["https://data.delijn.be/stops/300480", "https://data.delijn.be/stops/300500"], ["https://data.delijn.be/stops/300158", "https://data.delijn.be/stops/306696"], ["https://data.delijn.be/stops/401504", "https://data.delijn.be/stops/401506"], ["https://data.delijn.be/stops/307442", "https://data.delijn.be/stops/307825"], ["https://data.delijn.be/stops/502507", "https://data.delijn.be/stops/507491"], ["https://data.delijn.be/stops/104548", "https://data.delijn.be/stops/104852"], ["https://data.delijn.be/stops/300529", "https://data.delijn.be/stops/300535"], ["https://data.delijn.be/stops/408235", "https://data.delijn.be/stops/308208"], ["https://data.delijn.be/stops/402156", "https://data.delijn.be/stops/409393"], ["https://data.delijn.be/stops/103216", "https://data.delijn.be/stops/103591"], ["https://data.delijn.be/stops/302515", "https://data.delijn.be/stops/302533"], ["https://data.delijn.be/stops/102779", "https://data.delijn.be/stops/106030"], ["https://data.delijn.be/stops/305748", "https://data.delijn.be/stops/305755"], ["https://data.delijn.be/stops/104493", "https://data.delijn.be/stops/105345"], ["https://data.delijn.be/stops/404838", "https://data.delijn.be/stops/405221"], ["https://data.delijn.be/stops/103729", "https://data.delijn.be/stops/108534"], ["https://data.delijn.be/stops/202127", "https://data.delijn.be/stops/210077"], ["https://data.delijn.be/stops/508759", "https://data.delijn.be/stops/509513"], ["https://data.delijn.be/stops/503009", "https://data.delijn.be/stops/505278"], ["https://data.delijn.be/stops/403308", "https://data.delijn.be/stops/403545"], ["https://data.delijn.be/stops/302684", "https://data.delijn.be/stops/302686"], ["https://data.delijn.be/stops/410061", "https://data.delijn.be/stops/410210"], ["https://data.delijn.be/stops/206488", "https://data.delijn.be/stops/206861"], ["https://data.delijn.be/stops/505502", "https://data.delijn.be/stops/505504"], ["https://data.delijn.be/stops/400222", "https://data.delijn.be/stops/406079"], ["https://data.delijn.be/stops/204064", "https://data.delijn.be/stops/204582"], ["https://data.delijn.be/stops/301947", "https://data.delijn.be/stops/303323"], ["https://data.delijn.be/stops/103470", "https://data.delijn.be/stops/106618"], ["https://data.delijn.be/stops/400924", "https://data.delijn.be/stops/401923"], ["https://data.delijn.be/stops/208361", "https://data.delijn.be/stops/209361"], ["https://data.delijn.be/stops/408207", "https://data.delijn.be/stops/408380"], ["https://data.delijn.be/stops/300503", "https://data.delijn.be/stops/300504"], ["https://data.delijn.be/stops/103006", "https://data.delijn.be/stops/106424"], ["https://data.delijn.be/stops/105893", "https://data.delijn.be/stops/105903"], ["https://data.delijn.be/stops/505071", "https://data.delijn.be/stops/505072"], ["https://data.delijn.be/stops/201775", "https://data.delijn.be/stops/209226"], ["https://data.delijn.be/stops/507561", "https://data.delijn.be/stops/507562"], ["https://data.delijn.be/stops/303692", "https://data.delijn.be/stops/303765"], ["https://data.delijn.be/stops/203232", "https://data.delijn.be/stops/203233"], ["https://data.delijn.be/stops/303762", "https://data.delijn.be/stops/303766"], ["https://data.delijn.be/stops/105862", "https://data.delijn.be/stops/105865"], ["https://data.delijn.be/stops/401932", "https://data.delijn.be/stops/401933"], ["https://data.delijn.be/stops/208554", "https://data.delijn.be/stops/307742"], ["https://data.delijn.be/stops/104020", "https://data.delijn.be/stops/105655"], ["https://data.delijn.be/stops/403320", "https://data.delijn.be/stops/410349"], ["https://data.delijn.be/stops/201262", "https://data.delijn.be/stops/203546"], ["https://data.delijn.be/stops/501563", "https://data.delijn.be/stops/506182"], ["https://data.delijn.be/stops/503068", "https://data.delijn.be/stops/503073"], ["https://data.delijn.be/stops/302610", "https://data.delijn.be/stops/302618"], ["https://data.delijn.be/stops/507016", "https://data.delijn.be/stops/509940"], ["https://data.delijn.be/stops/106908", "https://data.delijn.be/stops/107252"], ["https://data.delijn.be/stops/107053", "https://data.delijn.be/stops/109646"], ["https://data.delijn.be/stops/300797", "https://data.delijn.be/stops/300798"], ["https://data.delijn.be/stops/101832", "https://data.delijn.be/stops/108184"], ["https://data.delijn.be/stops/503653", "https://data.delijn.be/stops/503886"], ["https://data.delijn.be/stops/503171", "https://data.delijn.be/stops/508171"], ["https://data.delijn.be/stops/408624", "https://data.delijn.be/stops/410250"], ["https://data.delijn.be/stops/505804", "https://data.delijn.be/stops/508842"], ["https://data.delijn.be/stops/101386", "https://data.delijn.be/stops/101829"], ["https://data.delijn.be/stops/204728", "https://data.delijn.be/stops/204761"], ["https://data.delijn.be/stops/504758", "https://data.delijn.be/stops/507914"], ["https://data.delijn.be/stops/300576", "https://data.delijn.be/stops/300584"], ["https://data.delijn.be/stops/104237", "https://data.delijn.be/stops/105024"], ["https://data.delijn.be/stops/104384", "https://data.delijn.be/stops/105250"], ["https://data.delijn.be/stops/203094", "https://data.delijn.be/stops/203644"], ["https://data.delijn.be/stops/301811", "https://data.delijn.be/stops/306969"], ["https://data.delijn.be/stops/402487", "https://data.delijn.be/stops/402489"], ["https://data.delijn.be/stops/503798", "https://data.delijn.be/stops/507684"], ["https://data.delijn.be/stops/504202", "https://data.delijn.be/stops/504256"], ["https://data.delijn.be/stops/503208", "https://data.delijn.be/stops/508193"], ["https://data.delijn.be/stops/101408", "https://data.delijn.be/stops/106921"], ["https://data.delijn.be/stops/103885", "https://data.delijn.be/stops/105670"], ["https://data.delijn.be/stops/202596", "https://data.delijn.be/stops/202617"], ["https://data.delijn.be/stops/300222", "https://data.delijn.be/stops/307464"], ["https://data.delijn.be/stops/304354", "https://data.delijn.be/stops/304355"], ["https://data.delijn.be/stops/209223", "https://data.delijn.be/stops/209224"], ["https://data.delijn.be/stops/200350", "https://data.delijn.be/stops/202650"], ["https://data.delijn.be/stops/201353", "https://data.delijn.be/stops/208261"], ["https://data.delijn.be/stops/109719", "https://data.delijn.be/stops/109996"], ["https://data.delijn.be/stops/404497", "https://data.delijn.be/stops/404564"], ["https://data.delijn.be/stops/204295", "https://data.delijn.be/stops/204496"], ["https://data.delijn.be/stops/204289", "https://data.delijn.be/stops/205546"], ["https://data.delijn.be/stops/106021", "https://data.delijn.be/stops/106188"], ["https://data.delijn.be/stops/209583", "https://data.delijn.be/stops/209677"], ["https://data.delijn.be/stops/401199", "https://data.delijn.be/stops/404772"], ["https://data.delijn.be/stops/301184", "https://data.delijn.be/stops/302928"], ["https://data.delijn.be/stops/502469", "https://data.delijn.be/stops/505664"], ["https://data.delijn.be/stops/308279", "https://data.delijn.be/stops/308287"], ["https://data.delijn.be/stops/406999", "https://data.delijn.be/stops/408700"], ["https://data.delijn.be/stops/201767", "https://data.delijn.be/stops/209269"], ["https://data.delijn.be/stops/203381", "https://data.delijn.be/stops/203382"], ["https://data.delijn.be/stops/505102", "https://data.delijn.be/stops/505572"], ["https://data.delijn.be/stops/201047", "https://data.delijn.be/stops/202441"], ["https://data.delijn.be/stops/401767", "https://data.delijn.be/stops/406329"], ["https://data.delijn.be/stops/400153", "https://data.delijn.be/stops/409199"], ["https://data.delijn.be/stops/300343", "https://data.delijn.be/stops/300357"], ["https://data.delijn.be/stops/208373", "https://data.delijn.be/stops/209373"], ["https://data.delijn.be/stops/307024", "https://data.delijn.be/stops/307534"], ["https://data.delijn.be/stops/204754", "https://data.delijn.be/stops/204755"], ["https://data.delijn.be/stops/505749", "https://data.delijn.be/stops/507504"], ["https://data.delijn.be/stops/305954", "https://data.delijn.be/stops/305956"], ["https://data.delijn.be/stops/406087", "https://data.delijn.be/stops/406091"], ["https://data.delijn.be/stops/401290", "https://data.delijn.be/stops/410148"], ["https://data.delijn.be/stops/302792", "https://data.delijn.be/stops/305425"], ["https://data.delijn.be/stops/405824", "https://data.delijn.be/stops/409742"], ["https://data.delijn.be/stops/402404", "https://data.delijn.be/stops/402440"], ["https://data.delijn.be/stops/405022", "https://data.delijn.be/stops/405113"], ["https://data.delijn.be/stops/502299", "https://data.delijn.be/stops/505608"], ["https://data.delijn.be/stops/101482", "https://data.delijn.be/stops/109292"], ["https://data.delijn.be/stops/303361", "https://data.delijn.be/stops/307032"], ["https://data.delijn.be/stops/200049", "https://data.delijn.be/stops/200187"], ["https://data.delijn.be/stops/306295", "https://data.delijn.be/stops/306296"], ["https://data.delijn.be/stops/205659", "https://data.delijn.be/stops/205660"], ["https://data.delijn.be/stops/102477", "https://data.delijn.be/stops/405297"], ["https://data.delijn.be/stops/200795", "https://data.delijn.be/stops/201665"], ["https://data.delijn.be/stops/503199", "https://data.delijn.be/stops/503983"], ["https://data.delijn.be/stops/203550", "https://data.delijn.be/stops/203552"], ["https://data.delijn.be/stops/403307", "https://data.delijn.be/stops/405640"], ["https://data.delijn.be/stops/107050", "https://data.delijn.be/stops/108620"], ["https://data.delijn.be/stops/109332", "https://data.delijn.be/stops/109333"], ["https://data.delijn.be/stops/501213", "https://data.delijn.be/stops/501221"], ["https://data.delijn.be/stops/304991", "https://data.delijn.be/stops/304992"], ["https://data.delijn.be/stops/504615", "https://data.delijn.be/stops/505422"], ["https://data.delijn.be/stops/406150", "https://data.delijn.be/stops/406151"], ["https://data.delijn.be/stops/504853", "https://data.delijn.be/stops/505088"], ["https://data.delijn.be/stops/400025", "https://data.delijn.be/stops/407513"], ["https://data.delijn.be/stops/202875", "https://data.delijn.be/stops/202876"], ["https://data.delijn.be/stops/404735", "https://data.delijn.be/stops/404814"], ["https://data.delijn.be/stops/404173", "https://data.delijn.be/stops/404197"], ["https://data.delijn.be/stops/504018", "https://data.delijn.be/stops/504664"], ["https://data.delijn.be/stops/301881", "https://data.delijn.be/stops/301889"], ["https://data.delijn.be/stops/105476", "https://data.delijn.be/stops/109934"], ["https://data.delijn.be/stops/504272", "https://data.delijn.be/stops/509274"], ["https://data.delijn.be/stops/106096", "https://data.delijn.be/stops/106143"], ["https://data.delijn.be/stops/404667", "https://data.delijn.be/stops/404668"], ["https://data.delijn.be/stops/300922", "https://data.delijn.be/stops/300924"], ["https://data.delijn.be/stops/509787", "https://data.delijn.be/stops/509907"], ["https://data.delijn.be/stops/509737", "https://data.delijn.be/stops/509740"], ["https://data.delijn.be/stops/201894", "https://data.delijn.be/stops/210127"], ["https://data.delijn.be/stops/402244", "https://data.delijn.be/stops/402245"], ["https://data.delijn.be/stops/304306", "https://data.delijn.be/stops/304320"], ["https://data.delijn.be/stops/508507", "https://data.delijn.be/stops/508508"], ["https://data.delijn.be/stops/105612", "https://data.delijn.be/stops/106364"], ["https://data.delijn.be/stops/503279", "https://data.delijn.be/stops/508289"], ["https://data.delijn.be/stops/401048", "https://data.delijn.be/stops/402830"], ["https://data.delijn.be/stops/303462", "https://data.delijn.be/stops/304988"], ["https://data.delijn.be/stops/502583", "https://data.delijn.be/stops/507207"], ["https://data.delijn.be/stops/307798", "https://data.delijn.be/stops/307799"], ["https://data.delijn.be/stops/200710", "https://data.delijn.be/stops/200937"], ["https://data.delijn.be/stops/505757", "https://data.delijn.be/stops/509796"], ["https://data.delijn.be/stops/501137", "https://data.delijn.be/stops/506129"], ["https://data.delijn.be/stops/502729", "https://data.delijn.be/stops/507136"], ["https://data.delijn.be/stops/201406", "https://data.delijn.be/stops/203358"], ["https://data.delijn.be/stops/501177", "https://data.delijn.be/stops/506169"], ["https://data.delijn.be/stops/209735", "https://data.delijn.be/stops/218025"], ["https://data.delijn.be/stops/102901", "https://data.delijn.be/stops/109027"], ["https://data.delijn.be/stops/208460", "https://data.delijn.be/stops/209513"], ["https://data.delijn.be/stops/502811", "https://data.delijn.be/stops/505596"], ["https://data.delijn.be/stops/201007", "https://data.delijn.be/stops/210070"], ["https://data.delijn.be/stops/109829", "https://data.delijn.be/stops/109979"], ["https://data.delijn.be/stops/408684", "https://data.delijn.be/stops/408706"], ["https://data.delijn.be/stops/206417", "https://data.delijn.be/stops/207417"], ["https://data.delijn.be/stops/200266", "https://data.delijn.be/stops/201266"], ["https://data.delijn.be/stops/502019", "https://data.delijn.be/stops/502915"], ["https://data.delijn.be/stops/200503", "https://data.delijn.be/stops/201154"], ["https://data.delijn.be/stops/505440", "https://data.delijn.be/stops/505635"], ["https://data.delijn.be/stops/503443", "https://data.delijn.be/stops/508382"], ["https://data.delijn.be/stops/504659", "https://data.delijn.be/stops/509045"], ["https://data.delijn.be/stops/106240", "https://data.delijn.be/stops/107234"], ["https://data.delijn.be/stops/200738", "https://data.delijn.be/stops/202581"], ["https://data.delijn.be/stops/404140", "https://data.delijn.be/stops/405918"], ["https://data.delijn.be/stops/406400", "https://data.delijn.be/stops/407763"], ["https://data.delijn.be/stops/104738", "https://data.delijn.be/stops/107338"], ["https://data.delijn.be/stops/303246", "https://data.delijn.be/stops/303247"], ["https://data.delijn.be/stops/103097", "https://data.delijn.be/stops/103974"], ["https://data.delijn.be/stops/108792", "https://data.delijn.be/stops/109549"], ["https://data.delijn.be/stops/304746", "https://data.delijn.be/stops/308701"], ["https://data.delijn.be/stops/101592", "https://data.delijn.be/stops/101611"], ["https://data.delijn.be/stops/106672", "https://data.delijn.be/stops/106674"], ["https://data.delijn.be/stops/105533", "https://data.delijn.be/stops/106247"], ["https://data.delijn.be/stops/202870", "https://data.delijn.be/stops/209723"], ["https://data.delijn.be/stops/300728", "https://data.delijn.be/stops/302199"], ["https://data.delijn.be/stops/304611", "https://data.delijn.be/stops/304633"], ["https://data.delijn.be/stops/404039", "https://data.delijn.be/stops/405980"], ["https://data.delijn.be/stops/404513", "https://data.delijn.be/stops/408994"], ["https://data.delijn.be/stops/104894", "https://data.delijn.be/stops/105311"], ["https://data.delijn.be/stops/206778", "https://data.delijn.be/stops/206784"], ["https://data.delijn.be/stops/204129", "https://data.delijn.be/stops/205789"], ["https://data.delijn.be/stops/304738", "https://data.delijn.be/stops/308712"], ["https://data.delijn.be/stops/404780", "https://data.delijn.be/stops/410051"], ["https://data.delijn.be/stops/505390", "https://data.delijn.be/stops/505931"], ["https://data.delijn.be/stops/403925", "https://data.delijn.be/stops/403983"], ["https://data.delijn.be/stops/109322", "https://data.delijn.be/stops/307438"], ["https://data.delijn.be/stops/504073", "https://data.delijn.be/stops/504209"], ["https://data.delijn.be/stops/206970", "https://data.delijn.be/stops/206990"], ["https://data.delijn.be/stops/108416", "https://data.delijn.be/stops/108417"], ["https://data.delijn.be/stops/505093", "https://data.delijn.be/stops/509891"], ["https://data.delijn.be/stops/204101", "https://data.delijn.be/stops/207395"], ["https://data.delijn.be/stops/206300", "https://data.delijn.be/stops/206464"], ["https://data.delijn.be/stops/300208", "https://data.delijn.be/stops/301375"], ["https://data.delijn.be/stops/507931", "https://data.delijn.be/stops/508721"], ["https://data.delijn.be/stops/302756", "https://data.delijn.be/stops/304829"], ["https://data.delijn.be/stops/504284", "https://data.delijn.be/stops/509284"], ["https://data.delijn.be/stops/504349", "https://data.delijn.be/stops/504351"], ["https://data.delijn.be/stops/402637", "https://data.delijn.be/stops/405581"], ["https://data.delijn.be/stops/303270", "https://data.delijn.be/stops/303271"], ["https://data.delijn.be/stops/200778", "https://data.delijn.be/stops/200907"], ["https://data.delijn.be/stops/306925", "https://data.delijn.be/stops/307278"], ["https://data.delijn.be/stops/502691", "https://data.delijn.be/stops/507474"], ["https://data.delijn.be/stops/302940", "https://data.delijn.be/stops/307096"], ["https://data.delijn.be/stops/102917", "https://data.delijn.be/stops/103300"], ["https://data.delijn.be/stops/204484", "https://data.delijn.be/stops/205484"], ["https://data.delijn.be/stops/403664", "https://data.delijn.be/stops/409255"], ["https://data.delijn.be/stops/301582", "https://data.delijn.be/stops/303419"], ["https://data.delijn.be/stops/302108", "https://data.delijn.be/stops/302109"], ["https://data.delijn.be/stops/109163", "https://data.delijn.be/stops/109164"], ["https://data.delijn.be/stops/400289", "https://data.delijn.be/stops/400331"], ["https://data.delijn.be/stops/302389", "https://data.delijn.be/stops/302762"], ["https://data.delijn.be/stops/303346", "https://data.delijn.be/stops/303347"], ["https://data.delijn.be/stops/106371", "https://data.delijn.be/stops/106373"], ["https://data.delijn.be/stops/509171", "https://data.delijn.be/stops/509354"], ["https://data.delijn.be/stops/104133", "https://data.delijn.be/stops/108261"], ["https://data.delijn.be/stops/508184", "https://data.delijn.be/stops/508815"], ["https://data.delijn.be/stops/105002", "https://data.delijn.be/stops/108890"], ["https://data.delijn.be/stops/500557", "https://data.delijn.be/stops/506033"], ["https://data.delijn.be/stops/504390", "https://data.delijn.be/stops/509390"], ["https://data.delijn.be/stops/503198", "https://data.delijn.be/stops/508213"], ["https://data.delijn.be/stops/305500", "https://data.delijn.be/stops/307878"], ["https://data.delijn.be/stops/202525", "https://data.delijn.be/stops/203960"], ["https://data.delijn.be/stops/105164", "https://data.delijn.be/stops/107504"], ["https://data.delijn.be/stops/206829", "https://data.delijn.be/stops/209951"], ["https://data.delijn.be/stops/303374", "https://data.delijn.be/stops/303672"], ["https://data.delijn.be/stops/504028", "https://data.delijn.be/stops/509028"], ["https://data.delijn.be/stops/206658", "https://data.delijn.be/stops/206659"], ["https://data.delijn.be/stops/301613", "https://data.delijn.be/stops/303623"], ["https://data.delijn.be/stops/500116", "https://data.delijn.be/stops/505023"], ["https://data.delijn.be/stops/202355", "https://data.delijn.be/stops/210119"], ["https://data.delijn.be/stops/102701", "https://data.delijn.be/stops/105656"], ["https://data.delijn.be/stops/400602", "https://data.delijn.be/stops/400606"], ["https://data.delijn.be/stops/109217", "https://data.delijn.be/stops/109219"], ["https://data.delijn.be/stops/403043", "https://data.delijn.be/stops/403095"], ["https://data.delijn.be/stops/505210", "https://data.delijn.be/stops/509089"], ["https://data.delijn.be/stops/107050", "https://data.delijn.be/stops/108405"], ["https://data.delijn.be/stops/504883", "https://data.delijn.be/stops/509883"], ["https://data.delijn.be/stops/106211", "https://data.delijn.be/stops/106252"], ["https://data.delijn.be/stops/103107", "https://data.delijn.be/stops/106566"], ["https://data.delijn.be/stops/302645", "https://data.delijn.be/stops/308113"], ["https://data.delijn.be/stops/307529", "https://data.delijn.be/stops/307530"], ["https://data.delijn.be/stops/108681", "https://data.delijn.be/stops/108682"], ["https://data.delijn.be/stops/206530", "https://data.delijn.be/stops/206859"], ["https://data.delijn.be/stops/106529", "https://data.delijn.be/stops/106530"], ["https://data.delijn.be/stops/407232", "https://data.delijn.be/stops/407233"], ["https://data.delijn.be/stops/105019", "https://data.delijn.be/stops/105087"], ["https://data.delijn.be/stops/202268", "https://data.delijn.be/stops/203268"], ["https://data.delijn.be/stops/202492", "https://data.delijn.be/stops/203001"], ["https://data.delijn.be/stops/101036", "https://data.delijn.be/stops/205564"], ["https://data.delijn.be/stops/409119", "https://data.delijn.be/stops/409130"], ["https://data.delijn.be/stops/207783", "https://data.delijn.be/stops/207789"], ["https://data.delijn.be/stops/200106", "https://data.delijn.be/stops/203008"], ["https://data.delijn.be/stops/303490", "https://data.delijn.be/stops/308636"], ["https://data.delijn.be/stops/302958", "https://data.delijn.be/stops/302974"], ["https://data.delijn.be/stops/301250", "https://data.delijn.be/stops/304397"], ["https://data.delijn.be/stops/509009", "https://data.delijn.be/stops/509405"], ["https://data.delijn.be/stops/103236", "https://data.delijn.be/stops/107722"], ["https://data.delijn.be/stops/203116", "https://data.delijn.be/stops/204172"], ["https://data.delijn.be/stops/501054", "https://data.delijn.be/stops/506061"], ["https://data.delijn.be/stops/405420", "https://data.delijn.be/stops/405421"], ["https://data.delijn.be/stops/206294", "https://data.delijn.be/stops/207315"], ["https://data.delijn.be/stops/405531", "https://data.delijn.be/stops/408075"], ["https://data.delijn.be/stops/300451", "https://data.delijn.be/stops/308052"], ["https://data.delijn.be/stops/106154", "https://data.delijn.be/stops/106447"], ["https://data.delijn.be/stops/305086", "https://data.delijn.be/stops/305088"], ["https://data.delijn.be/stops/201670", "https://data.delijn.be/stops/210044"], ["https://data.delijn.be/stops/301550", "https://data.delijn.be/stops/306962"], ["https://data.delijn.be/stops/201760", "https://data.delijn.be/stops/208271"], ["https://data.delijn.be/stops/201773", "https://data.delijn.be/stops/218027"], ["https://data.delijn.be/stops/101753", "https://data.delijn.be/stops/109821"], ["https://data.delijn.be/stops/206642", "https://data.delijn.be/stops/206643"], ["https://data.delijn.be/stops/400727", "https://data.delijn.be/stops/409399"], ["https://data.delijn.be/stops/208669", "https://data.delijn.be/stops/208672"], ["https://data.delijn.be/stops/102862", "https://data.delijn.be/stops/105860"], ["https://data.delijn.be/stops/406358", "https://data.delijn.be/stops/406392"], ["https://data.delijn.be/stops/505599", "https://data.delijn.be/stops/507714"], ["https://data.delijn.be/stops/203267", "https://data.delijn.be/stops/210076"], ["https://data.delijn.be/stops/408274", "https://data.delijn.be/stops/408275"], ["https://data.delijn.be/stops/503786", "https://data.delijn.be/stops/508786"], ["https://data.delijn.be/stops/106712", "https://data.delijn.be/stops/106714"], ["https://data.delijn.be/stops/402064", "https://data.delijn.be/stops/405555"], ["https://data.delijn.be/stops/503682", "https://data.delijn.be/stops/508684"], ["https://data.delijn.be/stops/403015", "https://data.delijn.be/stops/409334"], ["https://data.delijn.be/stops/303315", "https://data.delijn.be/stops/307294"], ["https://data.delijn.be/stops/204396", "https://data.delijn.be/stops/205397"], ["https://data.delijn.be/stops/202199", "https://data.delijn.be/stops/203199"], ["https://data.delijn.be/stops/206228", "https://data.delijn.be/stops/300181"], ["https://data.delijn.be/stops/304188", "https://data.delijn.be/stops/305905"], ["https://data.delijn.be/stops/402694", "https://data.delijn.be/stops/301476"], ["https://data.delijn.be/stops/510026", "https://data.delijn.be/stops/510030"], ["https://data.delijn.be/stops/403485", "https://data.delijn.be/stops/403488"], ["https://data.delijn.be/stops/208797", "https://data.delijn.be/stops/209116"], ["https://data.delijn.be/stops/101855", "https://data.delijn.be/stops/101856"], ["https://data.delijn.be/stops/104637", "https://data.delijn.be/stops/108033"], ["https://data.delijn.be/stops/307439", "https://data.delijn.be/stops/307440"], ["https://data.delijn.be/stops/200422", "https://data.delijn.be/stops/202536"], ["https://data.delijn.be/stops/304958", "https://data.delijn.be/stops/304966"], ["https://data.delijn.be/stops/105151", "https://data.delijn.be/stops/105153"], ["https://data.delijn.be/stops/502336", "https://data.delijn.be/stops/507336"], ["https://data.delijn.be/stops/102066", "https://data.delijn.be/stops/102067"], ["https://data.delijn.be/stops/401255", "https://data.delijn.be/stops/401388"], ["https://data.delijn.be/stops/101778", "https://data.delijn.be/stops/104247"], ["https://data.delijn.be/stops/106363", "https://data.delijn.be/stops/106367"], ["https://data.delijn.be/stops/204141", "https://data.delijn.be/stops/205239"], ["https://data.delijn.be/stops/202938", "https://data.delijn.be/stops/203427"], ["https://data.delijn.be/stops/400716", "https://data.delijn.be/stops/402235"], ["https://data.delijn.be/stops/206724", "https://data.delijn.be/stops/207095"], ["https://data.delijn.be/stops/204593", "https://data.delijn.be/stops/205582"], ["https://data.delijn.be/stops/404294", "https://data.delijn.be/stops/405699"], ["https://data.delijn.be/stops/505264", "https://data.delijn.be/stops/508224"], ["https://data.delijn.be/stops/400857", "https://data.delijn.be/stops/409541"], ["https://data.delijn.be/stops/502797", "https://data.delijn.be/stops/503979"], ["https://data.delijn.be/stops/209575", "https://data.delijn.be/stops/306272"], ["https://data.delijn.be/stops/106632", "https://data.delijn.be/stops/107164"], ["https://data.delijn.be/stops/202757", "https://data.delijn.be/stops/203756"], ["https://data.delijn.be/stops/504150", "https://data.delijn.be/stops/509150"], ["https://data.delijn.be/stops/403294", "https://data.delijn.be/stops/403345"], ["https://data.delijn.be/stops/102210", "https://data.delijn.be/stops/102896"], ["https://data.delijn.be/stops/206026", "https://data.delijn.be/stops/216002"], ["https://data.delijn.be/stops/503803", "https://data.delijn.be/stops/505538"], ["https://data.delijn.be/stops/507100", "https://data.delijn.be/stops/507576"], ["https://data.delijn.be/stops/301334", "https://data.delijn.be/stops/301907"], ["https://data.delijn.be/stops/207378", "https://data.delijn.be/stops/207381"], ["https://data.delijn.be/stops/202663", "https://data.delijn.be/stops/202664"], ["https://data.delijn.be/stops/304511", "https://data.delijn.be/stops/305307"], ["https://data.delijn.be/stops/104919", "https://data.delijn.be/stops/104921"], ["https://data.delijn.be/stops/307629", "https://data.delijn.be/stops/308261"], ["https://data.delijn.be/stops/203711", "https://data.delijn.be/stops/211709"], ["https://data.delijn.be/stops/504310", "https://data.delijn.be/stops/509292"], ["https://data.delijn.be/stops/200037", "https://data.delijn.be/stops/200375"], ["https://data.delijn.be/stops/300292", "https://data.delijn.be/stops/307476"], ["https://data.delijn.be/stops/202176", "https://data.delijn.be/stops/203155"], ["https://data.delijn.be/stops/106817", "https://data.delijn.be/stops/106988"], ["https://data.delijn.be/stops/107390", "https://data.delijn.be/stops/308817"], ["https://data.delijn.be/stops/403487", "https://data.delijn.be/stops/403488"], ["https://data.delijn.be/stops/402877", "https://data.delijn.be/stops/402878"], ["https://data.delijn.be/stops/301910", "https://data.delijn.be/stops/301911"], ["https://data.delijn.be/stops/101030", "https://data.delijn.be/stops/104905"], ["https://data.delijn.be/stops/208992", "https://data.delijn.be/stops/209329"], ["https://data.delijn.be/stops/304442", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/105737", "https://data.delijn.be/stops/109835"], ["https://data.delijn.be/stops/406521", "https://data.delijn.be/stops/407442"], ["https://data.delijn.be/stops/104109", "https://data.delijn.be/stops/204604"], ["https://data.delijn.be/stops/302566", "https://data.delijn.be/stops/306404"], ["https://data.delijn.be/stops/101825", "https://data.delijn.be/stops/103975"], ["https://data.delijn.be/stops/202830", "https://data.delijn.be/stops/203831"], ["https://data.delijn.be/stops/202030", "https://data.delijn.be/stops/203029"], ["https://data.delijn.be/stops/504674", "https://data.delijn.be/stops/509015"], ["https://data.delijn.be/stops/503701", "https://data.delijn.be/stops/508723"], ["https://data.delijn.be/stops/502219", "https://data.delijn.be/stops/505150"], ["https://data.delijn.be/stops/208156", "https://data.delijn.be/stops/209155"], ["https://data.delijn.be/stops/405277", "https://data.delijn.be/stops/405506"], ["https://data.delijn.be/stops/301459", "https://data.delijn.be/stops/307102"], ["https://data.delijn.be/stops/102233", "https://data.delijn.be/stops/105580"], ["https://data.delijn.be/stops/200855", "https://data.delijn.be/stops/200856"], ["https://data.delijn.be/stops/401979", "https://data.delijn.be/stops/406885"], ["https://data.delijn.be/stops/304754", "https://data.delijn.be/stops/304770"], ["https://data.delijn.be/stops/402078", "https://data.delijn.be/stops/402079"], ["https://data.delijn.be/stops/208451", "https://data.delijn.be/stops/209698"], ["https://data.delijn.be/stops/303019", "https://data.delijn.be/stops/303020"], ["https://data.delijn.be/stops/304285", "https://data.delijn.be/stops/306669"], ["https://data.delijn.be/stops/200677", "https://data.delijn.be/stops/201466"], ["https://data.delijn.be/stops/410082", "https://data.delijn.be/stops/410083"], ["https://data.delijn.be/stops/507469", "https://data.delijn.be/stops/509699"], ["https://data.delijn.be/stops/407261", "https://data.delijn.be/stops/407301"], ["https://data.delijn.be/stops/104017", "https://data.delijn.be/stops/104019"], ["https://data.delijn.be/stops/508563", "https://data.delijn.be/stops/508612"], ["https://data.delijn.be/stops/404197", "https://data.delijn.be/stops/404204"], ["https://data.delijn.be/stops/508747", "https://data.delijn.be/stops/509866"], ["https://data.delijn.be/stops/202269", "https://data.delijn.be/stops/203269"], ["https://data.delijn.be/stops/403629", "https://data.delijn.be/stops/403649"], ["https://data.delijn.be/stops/405719", "https://data.delijn.be/stops/410145"], ["https://data.delijn.be/stops/104605", "https://data.delijn.be/stops/109594"], ["https://data.delijn.be/stops/204619", "https://data.delijn.be/stops/205619"], ["https://data.delijn.be/stops/303247", "https://data.delijn.be/stops/307688"], ["https://data.delijn.be/stops/410213", "https://data.delijn.be/stops/410320"], ["https://data.delijn.be/stops/102829", "https://data.delijn.be/stops/104780"], ["https://data.delijn.be/stops/509947", "https://data.delijn.be/stops/509962"], ["https://data.delijn.be/stops/206224", "https://data.delijn.be/stops/207803"], ["https://data.delijn.be/stops/302072", "https://data.delijn.be/stops/308813"], ["https://data.delijn.be/stops/407085", "https://data.delijn.be/stops/407086"], ["https://data.delijn.be/stops/503778", "https://data.delijn.be/stops/508780"], ["https://data.delijn.be/stops/401878", "https://data.delijn.be/stops/402281"], ["https://data.delijn.be/stops/109311", "https://data.delijn.be/stops/109345"], ["https://data.delijn.be/stops/504020", "https://data.delijn.be/stops/505425"], ["https://data.delijn.be/stops/505146", "https://data.delijn.be/stops/505312"], ["https://data.delijn.be/stops/303725", "https://data.delijn.be/stops/303743"], ["https://data.delijn.be/stops/502287", "https://data.delijn.be/stops/505723"], ["https://data.delijn.be/stops/505079", "https://data.delijn.be/stops/507471"], ["https://data.delijn.be/stops/207080", "https://data.delijn.be/stops/207991"], ["https://data.delijn.be/stops/300138", "https://data.delijn.be/stops/306808"], ["https://data.delijn.be/stops/407802", "https://data.delijn.be/stops/407803"], ["https://data.delijn.be/stops/206114", "https://data.delijn.be/stops/207114"], ["https://data.delijn.be/stops/508336", "https://data.delijn.be/stops/508342"], ["https://data.delijn.be/stops/204625", "https://data.delijn.be/stops/205622"], ["https://data.delijn.be/stops/206478", "https://data.delijn.be/stops/207059"], ["https://data.delijn.be/stops/408444", "https://data.delijn.be/stops/305710"], ["https://data.delijn.be/stops/209395", "https://data.delijn.be/stops/507960"], ["https://data.delijn.be/stops/202631", "https://data.delijn.be/stops/202633"], ["https://data.delijn.be/stops/206244", "https://data.delijn.be/stops/206403"], ["https://data.delijn.be/stops/409108", "https://data.delijn.be/stops/409112"], ["https://data.delijn.be/stops/403991", "https://data.delijn.be/stops/407055"], ["https://data.delijn.be/stops/400860", "https://data.delijn.be/stops/400952"], ["https://data.delijn.be/stops/208957", "https://data.delijn.be/stops/208958"], ["https://data.delijn.be/stops/404511", "https://data.delijn.be/stops/407422"], ["https://data.delijn.be/stops/507946", "https://data.delijn.be/stops/507954"], ["https://data.delijn.be/stops/402685", "https://data.delijn.be/stops/402723"], ["https://data.delijn.be/stops/209103", "https://data.delijn.be/stops/209136"], ["https://data.delijn.be/stops/302898", "https://data.delijn.be/stops/302900"], ["https://data.delijn.be/stops/205137", "https://data.delijn.be/stops/209912"], ["https://data.delijn.be/stops/409413", "https://data.delijn.be/stops/409665"], ["https://data.delijn.be/stops/502178", "https://data.delijn.be/stops/505550"], ["https://data.delijn.be/stops/403803", "https://data.delijn.be/stops/403807"], ["https://data.delijn.be/stops/102323", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/202741", "https://data.delijn.be/stops/202881"], ["https://data.delijn.be/stops/101831", "https://data.delijn.be/stops/107011"], ["https://data.delijn.be/stops/504245", "https://data.delijn.be/stops/504248"], ["https://data.delijn.be/stops/102126", "https://data.delijn.be/stops/105058"], ["https://data.delijn.be/stops/503969", "https://data.delijn.be/stops/509812"], ["https://data.delijn.be/stops/502505", "https://data.delijn.be/stops/507505"], ["https://data.delijn.be/stops/102222", "https://data.delijn.be/stops/105544"], ["https://data.delijn.be/stops/302822", "https://data.delijn.be/stops/304072"], ["https://data.delijn.be/stops/206284", "https://data.delijn.be/stops/206285"], ["https://data.delijn.be/stops/502115", "https://data.delijn.be/stops/502728"], ["https://data.delijn.be/stops/204379", "https://data.delijn.be/stops/205418"], ["https://data.delijn.be/stops/506450", "https://data.delijn.be/stops/506454"], ["https://data.delijn.be/stops/407835", "https://data.delijn.be/stops/407848"], ["https://data.delijn.be/stops/504324", "https://data.delijn.be/stops/508555"], ["https://data.delijn.be/stops/103498", "https://data.delijn.be/stops/109141"], ["https://data.delijn.be/stops/302152", "https://data.delijn.be/stops/302153"], ["https://data.delijn.be/stops/307350", "https://data.delijn.be/stops/308591"], ["https://data.delijn.be/stops/307904", "https://data.delijn.be/stops/308061"], ["https://data.delijn.be/stops/208399", "https://data.delijn.be/stops/209376"], ["https://data.delijn.be/stops/106767", "https://data.delijn.be/stops/107519"], ["https://data.delijn.be/stops/107869", "https://data.delijn.be/stops/107879"], ["https://data.delijn.be/stops/408500", "https://data.delijn.be/stops/408539"], ["https://data.delijn.be/stops/200464", "https://data.delijn.be/stops/201838"], ["https://data.delijn.be/stops/408332", "https://data.delijn.be/stops/408335"], ["https://data.delijn.be/stops/404011", "https://data.delijn.be/stops/404013"], ["https://data.delijn.be/stops/208791", "https://data.delijn.be/stops/209788"], ["https://data.delijn.be/stops/405306", "https://data.delijn.be/stops/407315"], ["https://data.delijn.be/stops/200556", "https://data.delijn.be/stops/201556"], ["https://data.delijn.be/stops/301373", "https://data.delijn.be/stops/302417"], ["https://data.delijn.be/stops/105321", "https://data.delijn.be/stops/105323"], ["https://data.delijn.be/stops/403346", "https://data.delijn.be/stops/407040"], ["https://data.delijn.be/stops/501321", "https://data.delijn.be/stops/506262"], ["https://data.delijn.be/stops/505823", "https://data.delijn.be/stops/508138"], ["https://data.delijn.be/stops/302223", "https://data.delijn.be/stops/304047"], ["https://data.delijn.be/stops/107567", "https://data.delijn.be/stops/107741"], ["https://data.delijn.be/stops/300297", "https://data.delijn.be/stops/305918"], ["https://data.delijn.be/stops/401000", "https://data.delijn.be/stops/401152"], ["https://data.delijn.be/stops/206556", "https://data.delijn.be/stops/207499"], ["https://data.delijn.be/stops/505398", "https://data.delijn.be/stops/506518"], ["https://data.delijn.be/stops/503426", "https://data.delijn.be/stops/503446"], ["https://data.delijn.be/stops/508060", "https://data.delijn.be/stops/508707"], ["https://data.delijn.be/stops/404402", "https://data.delijn.be/stops/404411"], ["https://data.delijn.be/stops/204206", "https://data.delijn.be/stops/204234"], ["https://data.delijn.be/stops/503368", "https://data.delijn.be/stops/503413"], ["https://data.delijn.be/stops/503455", "https://data.delijn.be/stops/508970"], ["https://data.delijn.be/stops/103121", "https://data.delijn.be/stops/104112"], ["https://data.delijn.be/stops/401419", "https://data.delijn.be/stops/301083"], ["https://data.delijn.be/stops/200982", "https://data.delijn.be/stops/202917"], ["https://data.delijn.be/stops/403901", "https://data.delijn.be/stops/403932"], ["https://data.delijn.be/stops/204318", "https://data.delijn.be/stops/204320"], ["https://data.delijn.be/stops/102082", "https://data.delijn.be/stops/105412"], ["https://data.delijn.be/stops/208525", "https://data.delijn.be/stops/219017"], ["https://data.delijn.be/stops/203486", "https://data.delijn.be/stops/203488"], ["https://data.delijn.be/stops/202145", "https://data.delijn.be/stops/203615"], ["https://data.delijn.be/stops/501397", "https://data.delijn.be/stops/506403"], ["https://data.delijn.be/stops/402414", "https://data.delijn.be/stops/402415"], ["https://data.delijn.be/stops/300692", "https://data.delijn.be/stops/300694"], ["https://data.delijn.be/stops/200845", "https://data.delijn.be/stops/202301"], ["https://data.delijn.be/stops/206612", "https://data.delijn.be/stops/206613"], ["https://data.delijn.be/stops/208341", "https://data.delijn.be/stops/209110"], ["https://data.delijn.be/stops/504693", "https://data.delijn.be/stops/509483"], ["https://data.delijn.be/stops/107491", "https://data.delijn.be/stops/107511"], ["https://data.delijn.be/stops/506116", "https://data.delijn.be/stops/506117"], ["https://data.delijn.be/stops/106959", "https://data.delijn.be/stops/109514"], ["https://data.delijn.be/stops/202875", "https://data.delijn.be/stops/203880"], ["https://data.delijn.be/stops/505134", "https://data.delijn.be/stops/505158"], ["https://data.delijn.be/stops/306849", "https://data.delijn.be/stops/306851"], ["https://data.delijn.be/stops/504154", "https://data.delijn.be/stops/504166"], ["https://data.delijn.be/stops/200966", "https://data.delijn.be/stops/201967"], ["https://data.delijn.be/stops/503465", "https://data.delijn.be/stops/503644"], ["https://data.delijn.be/stops/102804", "https://data.delijn.be/stops/103142"], ["https://data.delijn.be/stops/502691", "https://data.delijn.be/stops/507763"], ["https://data.delijn.be/stops/200590", "https://data.delijn.be/stops/201733"], ["https://data.delijn.be/stops/403316", "https://data.delijn.be/stops/403317"], ["https://data.delijn.be/stops/303024", "https://data.delijn.be/stops/308656"], ["https://data.delijn.be/stops/103156", "https://data.delijn.be/stops/109105"], ["https://data.delijn.be/stops/101139", "https://data.delijn.be/stops/107465"], ["https://data.delijn.be/stops/300795", "https://data.delijn.be/stops/300801"], ["https://data.delijn.be/stops/302719", "https://data.delijn.be/stops/302720"], ["https://data.delijn.be/stops/401047", "https://data.delijn.be/stops/401151"], ["https://data.delijn.be/stops/205984", "https://data.delijn.be/stops/211073"], ["https://data.delijn.be/stops/202489", "https://data.delijn.be/stops/202506"], ["https://data.delijn.be/stops/302549", "https://data.delijn.be/stops/302560"], ["https://data.delijn.be/stops/301691", "https://data.delijn.be/stops/301778"], ["https://data.delijn.be/stops/202703", "https://data.delijn.be/stops/203703"], ["https://data.delijn.be/stops/204111", "https://data.delijn.be/stops/205110"], ["https://data.delijn.be/stops/400876", "https://data.delijn.be/stops/403580"], ["https://data.delijn.be/stops/500138", "https://data.delijn.be/stops/502075"], ["https://data.delijn.be/stops/209092", "https://data.delijn.be/stops/209628"], ["https://data.delijn.be/stops/200857", "https://data.delijn.be/stops/203305"], ["https://data.delijn.be/stops/208504", "https://data.delijn.be/stops/209503"], ["https://data.delijn.be/stops/405514", "https://data.delijn.be/stops/405515"], ["https://data.delijn.be/stops/303351", "https://data.delijn.be/stops/303360"], ["https://data.delijn.be/stops/205996", "https://data.delijn.be/stops/206143"], ["https://data.delijn.be/stops/303739", "https://data.delijn.be/stops/308658"], ["https://data.delijn.be/stops/208040", "https://data.delijn.be/stops/208846"], ["https://data.delijn.be/stops/504120", "https://data.delijn.be/stops/504481"], ["https://data.delijn.be/stops/302908", "https://data.delijn.be/stops/304324"], ["https://data.delijn.be/stops/102186", "https://data.delijn.be/stops/104247"], ["https://data.delijn.be/stops/505151", "https://data.delijn.be/stops/505156"], ["https://data.delijn.be/stops/400296", "https://data.delijn.be/stops/400367"], ["https://data.delijn.be/stops/503422", "https://data.delijn.be/stops/508404"], ["https://data.delijn.be/stops/106364", "https://data.delijn.be/stops/106365"], ["https://data.delijn.be/stops/206987", "https://data.delijn.be/stops/206988"], ["https://data.delijn.be/stops/305536", "https://data.delijn.be/stops/308553"], ["https://data.delijn.be/stops/101193", "https://data.delijn.be/stops/101196"], ["https://data.delijn.be/stops/407762", "https://data.delijn.be/stops/407764"], ["https://data.delijn.be/stops/500562", "https://data.delijn.be/stops/500568"], ["https://data.delijn.be/stops/402139", "https://data.delijn.be/stops/402155"], ["https://data.delijn.be/stops/502352", "https://data.delijn.be/stops/503979"], ["https://data.delijn.be/stops/404819", "https://data.delijn.be/stops/404825"], ["https://data.delijn.be/stops/300526", "https://data.delijn.be/stops/307845"], ["https://data.delijn.be/stops/502558", "https://data.delijn.be/stops/505012"], ["https://data.delijn.be/stops/102652", "https://data.delijn.be/stops/107898"], ["https://data.delijn.be/stops/401296", "https://data.delijn.be/stops/401312"], ["https://data.delijn.be/stops/301089", "https://data.delijn.be/stops/305510"], ["https://data.delijn.be/stops/401207", "https://data.delijn.be/stops/401376"], ["https://data.delijn.be/stops/402550", "https://data.delijn.be/stops/402551"], ["https://data.delijn.be/stops/108489", "https://data.delijn.be/stops/306592"], ["https://data.delijn.be/stops/101183", "https://data.delijn.be/stops/205645"], ["https://data.delijn.be/stops/300149", "https://data.delijn.be/stops/300150"], ["https://data.delijn.be/stops/405602", "https://data.delijn.be/stops/405603"], ["https://data.delijn.be/stops/403908", "https://data.delijn.be/stops/403972"], ["https://data.delijn.be/stops/401463", "https://data.delijn.be/stops/403894"], ["https://data.delijn.be/stops/408115", "https://data.delijn.be/stops/408158"], ["https://data.delijn.be/stops/503758", "https://data.delijn.be/stops/504743"], ["https://data.delijn.be/stops/408122", "https://data.delijn.be/stops/408285"], ["https://data.delijn.be/stops/406881", "https://data.delijn.be/stops/409767"], ["https://data.delijn.be/stops/107716", "https://data.delijn.be/stops/109383"], ["https://data.delijn.be/stops/409392", "https://data.delijn.be/stops/409394"], ["https://data.delijn.be/stops/204068", "https://data.delijn.be/stops/204403"], ["https://data.delijn.be/stops/305999", "https://data.delijn.be/stops/306002"], ["https://data.delijn.be/stops/406748", "https://data.delijn.be/stops/406812"], ["https://data.delijn.be/stops/102170", "https://data.delijn.be/stops/103070"], ["https://data.delijn.be/stops/308596", "https://data.delijn.be/stops/308597"], ["https://data.delijn.be/stops/400771", "https://data.delijn.be/stops/410085"], ["https://data.delijn.be/stops/301332", "https://data.delijn.be/stops/301334"], ["https://data.delijn.be/stops/205987", "https://data.delijn.be/stops/208223"], ["https://data.delijn.be/stops/410184", "https://data.delijn.be/stops/410185"], ["https://data.delijn.be/stops/503320", "https://data.delijn.be/stops/508323"], ["https://data.delijn.be/stops/306350", "https://data.delijn.be/stops/308812"], ["https://data.delijn.be/stops/508122", "https://data.delijn.be/stops/509887"], ["https://data.delijn.be/stops/107620", "https://data.delijn.be/stops/107695"], ["https://data.delijn.be/stops/204983", "https://data.delijn.be/stops/206209"], ["https://data.delijn.be/stops/304427", "https://data.delijn.be/stops/307383"], ["https://data.delijn.be/stops/504421", "https://data.delijn.be/stops/505166"], ["https://data.delijn.be/stops/509781", "https://data.delijn.be/stops/509893"], ["https://data.delijn.be/stops/306303", "https://data.delijn.be/stops/306331"], ["https://data.delijn.be/stops/302949", "https://data.delijn.be/stops/306298"], ["https://data.delijn.be/stops/409158", "https://data.delijn.be/stops/409160"], ["https://data.delijn.be/stops/205249", "https://data.delijn.be/stops/205475"], ["https://data.delijn.be/stops/304804", "https://data.delijn.be/stops/304806"], ["https://data.delijn.be/stops/105531", "https://data.delijn.be/stops/105532"], ["https://data.delijn.be/stops/306149", "https://data.delijn.be/stops/306150"], ["https://data.delijn.be/stops/407070", "https://data.delijn.be/stops/407071"], ["https://data.delijn.be/stops/405500", "https://data.delijn.be/stops/409347"], ["https://data.delijn.be/stops/503838", "https://data.delijn.be/stops/505159"], ["https://data.delijn.be/stops/401339", "https://data.delijn.be/stops/406943"], ["https://data.delijn.be/stops/503478", "https://data.delijn.be/stops/504806"], ["https://data.delijn.be/stops/302308", "https://data.delijn.be/stops/302640"], ["https://data.delijn.be/stops/300377", "https://data.delijn.be/stops/307723"], ["https://data.delijn.be/stops/407839", "https://data.delijn.be/stops/407905"], ["https://data.delijn.be/stops/301844", "https://data.delijn.be/stops/301845"], ["https://data.delijn.be/stops/209773", "https://data.delijn.be/stops/209774"], ["https://data.delijn.be/stops/402096", "https://data.delijn.be/stops/402316"], ["https://data.delijn.be/stops/201514", "https://data.delijn.be/stops/201515"], ["https://data.delijn.be/stops/502807", "https://data.delijn.be/stops/507703"], ["https://data.delijn.be/stops/301858", "https://data.delijn.be/stops/306989"], ["https://data.delijn.be/stops/104962", "https://data.delijn.be/stops/109616"], ["https://data.delijn.be/stops/301658", "https://data.delijn.be/stops/301893"], ["https://data.delijn.be/stops/205426", "https://data.delijn.be/stops/205763"], ["https://data.delijn.be/stops/205046", "https://data.delijn.be/stops/205515"], ["https://data.delijn.be/stops/206308", "https://data.delijn.be/stops/207308"], ["https://data.delijn.be/stops/505649", "https://data.delijn.be/stops/507755"], ["https://data.delijn.be/stops/308416", "https://data.delijn.be/stops/308428"], ["https://data.delijn.be/stops/101789", "https://data.delijn.be/stops/105612"], ["https://data.delijn.be/stops/508758", "https://data.delijn.be/stops/508766"], ["https://data.delijn.be/stops/104662", "https://data.delijn.be/stops/306605"], ["https://data.delijn.be/stops/200262", "https://data.delijn.be/stops/202547"], ["https://data.delijn.be/stops/205644", "https://data.delijn.be/stops/205645"], ["https://data.delijn.be/stops/402967", "https://data.delijn.be/stops/405151"], ["https://data.delijn.be/stops/302304", "https://data.delijn.be/stops/303468"], ["https://data.delijn.be/stops/407984", "https://data.delijn.be/stops/408442"], ["https://data.delijn.be/stops/200714", "https://data.delijn.be/stops/201799"], ["https://data.delijn.be/stops/301424", "https://data.delijn.be/stops/306172"], ["https://data.delijn.be/stops/202107", "https://data.delijn.be/stops/203262"], ["https://data.delijn.be/stops/109838", "https://data.delijn.be/stops/109953"], ["https://data.delijn.be/stops/202743", "https://data.delijn.be/stops/203812"], ["https://data.delijn.be/stops/202880", "https://data.delijn.be/stops/203880"], ["https://data.delijn.be/stops/503561", "https://data.delijn.be/stops/508550"], ["https://data.delijn.be/stops/300316", "https://data.delijn.be/stops/300624"], ["https://data.delijn.be/stops/209070", "https://data.delijn.be/stops/209072"], ["https://data.delijn.be/stops/505990", "https://data.delijn.be/stops/508301"], ["https://data.delijn.be/stops/206422", "https://data.delijn.be/stops/207422"], ["https://data.delijn.be/stops/206455", "https://data.delijn.be/stops/207824"], ["https://data.delijn.be/stops/305091", "https://data.delijn.be/stops/305152"], ["https://data.delijn.be/stops/106400", "https://data.delijn.be/stops/106575"], ["https://data.delijn.be/stops/204447", "https://data.delijn.be/stops/204510"], ["https://data.delijn.be/stops/106846", "https://data.delijn.be/stops/106848"], ["https://data.delijn.be/stops/204342", "https://data.delijn.be/stops/204452"], ["https://data.delijn.be/stops/504668", "https://data.delijn.be/stops/508654"], ["https://data.delijn.be/stops/101990", "https://data.delijn.be/stops/105155"], ["https://data.delijn.be/stops/209390", "https://data.delijn.be/stops/209391"], ["https://data.delijn.be/stops/105003", "https://data.delijn.be/stops/105193"], ["https://data.delijn.be/stops/400503", "https://data.delijn.be/stops/404042"], ["https://data.delijn.be/stops/105573", "https://data.delijn.be/stops/106354"], ["https://data.delijn.be/stops/408560", "https://data.delijn.be/stops/408873"], ["https://data.delijn.be/stops/402049", "https://data.delijn.be/stops/402268"], ["https://data.delijn.be/stops/109270", "https://data.delijn.be/stops/109272"], ["https://data.delijn.be/stops/304902", "https://data.delijn.be/stops/306388"], ["https://data.delijn.be/stops/102592", "https://data.delijn.be/stops/109000"], ["https://data.delijn.be/stops/208644", "https://data.delijn.be/stops/209644"], ["https://data.delijn.be/stops/507089", "https://data.delijn.be/stops/507644"], ["https://data.delijn.be/stops/507234", "https://data.delijn.be/stops/507822"], ["https://data.delijn.be/stops/401390", "https://data.delijn.be/stops/406568"], ["https://data.delijn.be/stops/302280", "https://data.delijn.be/stops/302291"], ["https://data.delijn.be/stops/202817", "https://data.delijn.be/stops/202890"], ["https://data.delijn.be/stops/400537", "https://data.delijn.be/stops/400573"], ["https://data.delijn.be/stops/504439", "https://data.delijn.be/stops/509441"], ["https://data.delijn.be/stops/501204", "https://data.delijn.be/stops/501321"], ["https://data.delijn.be/stops/306724", "https://data.delijn.be/stops/306726"], ["https://data.delijn.be/stops/400492", "https://data.delijn.be/stops/400494"], ["https://data.delijn.be/stops/202236", "https://data.delijn.be/stops/202238"], ["https://data.delijn.be/stops/300163", "https://data.delijn.be/stops/301229"], ["https://data.delijn.be/stops/405823", "https://data.delijn.be/stops/409663"], ["https://data.delijn.be/stops/501472", "https://data.delijn.be/stops/501532"], ["https://data.delijn.be/stops/101387", "https://data.delijn.be/stops/101829"], ["https://data.delijn.be/stops/103097", "https://data.delijn.be/stops/103266"], ["https://data.delijn.be/stops/300012", "https://data.delijn.be/stops/300806"], ["https://data.delijn.be/stops/504376", "https://data.delijn.be/stops/505063"], ["https://data.delijn.be/stops/402595", "https://data.delijn.be/stops/403472"], ["https://data.delijn.be/stops/103622", "https://data.delijn.be/stops/106197"], ["https://data.delijn.be/stops/410221", "https://data.delijn.be/stops/410339"], ["https://data.delijn.be/stops/408598", "https://data.delijn.be/stops/408619"], ["https://data.delijn.be/stops/108636", "https://data.delijn.be/stops/406504"], ["https://data.delijn.be/stops/202506", "https://data.delijn.be/stops/203489"], ["https://data.delijn.be/stops/501248", "https://data.delijn.be/stops/501633"], ["https://data.delijn.be/stops/304529", "https://data.delijn.be/stops/304530"], ["https://data.delijn.be/stops/208080", "https://data.delijn.be/stops/218029"], ["https://data.delijn.be/stops/208517", "https://data.delijn.be/stops/209619"], ["https://data.delijn.be/stops/303724", "https://data.delijn.be/stops/307259"], ["https://data.delijn.be/stops/305383", "https://data.delijn.be/stops/305398"], ["https://data.delijn.be/stops/104879", "https://data.delijn.be/stops/109972"], ["https://data.delijn.be/stops/206015", "https://data.delijn.be/stops/207166"], ["https://data.delijn.be/stops/109206", "https://data.delijn.be/stops/109208"], ["https://data.delijn.be/stops/302155", "https://data.delijn.be/stops/302183"], ["https://data.delijn.be/stops/204450", "https://data.delijn.be/stops/205445"], ["https://data.delijn.be/stops/405146", "https://data.delijn.be/stops/406253"], ["https://data.delijn.be/stops/504447", "https://data.delijn.be/stops/504449"], ["https://data.delijn.be/stops/408863", "https://data.delijn.be/stops/408866"], ["https://data.delijn.be/stops/308709", "https://data.delijn.be/stops/308710"], ["https://data.delijn.be/stops/105009", "https://data.delijn.be/stops/106832"], ["https://data.delijn.be/stops/303542", "https://data.delijn.be/stops/303570"], ["https://data.delijn.be/stops/500230", "https://data.delijn.be/stops/506101"], ["https://data.delijn.be/stops/406686", "https://data.delijn.be/stops/406687"], ["https://data.delijn.be/stops/400537", "https://data.delijn.be/stops/408458"], ["https://data.delijn.be/stops/402562", "https://data.delijn.be/stops/402570"], ["https://data.delijn.be/stops/301838", "https://data.delijn.be/stops/301851"], ["https://data.delijn.be/stops/206654", "https://data.delijn.be/stops/206655"], ["https://data.delijn.be/stops/400926", "https://data.delijn.be/stops/400937"], ["https://data.delijn.be/stops/400872", "https://data.delijn.be/stops/405666"], ["https://data.delijn.be/stops/200974", "https://data.delijn.be/stops/219020"], ["https://data.delijn.be/stops/108633", "https://data.delijn.be/stops/109663"], ["https://data.delijn.be/stops/206626", "https://data.delijn.be/stops/207625"], ["https://data.delijn.be/stops/405684", "https://data.delijn.be/stops/405685"], ["https://data.delijn.be/stops/208096", "https://data.delijn.be/stops/209095"], ["https://data.delijn.be/stops/405047", "https://data.delijn.be/stops/405756"], ["https://data.delijn.be/stops/504353", "https://data.delijn.be/stops/509346"], ["https://data.delijn.be/stops/402989", "https://data.delijn.be/stops/405588"], ["https://data.delijn.be/stops/507798", "https://data.delijn.be/stops/509822"], ["https://data.delijn.be/stops/503084", "https://data.delijn.be/stops/505297"], ["https://data.delijn.be/stops/103759", "https://data.delijn.be/stops/104340"], ["https://data.delijn.be/stops/408344", "https://data.delijn.be/stops/410157"], ["https://data.delijn.be/stops/207676", "https://data.delijn.be/stops/209105"], ["https://data.delijn.be/stops/400763", "https://data.delijn.be/stops/405268"], ["https://data.delijn.be/stops/102482", "https://data.delijn.be/stops/400251"], ["https://data.delijn.be/stops/401350", "https://data.delijn.be/stops/401351"], ["https://data.delijn.be/stops/504557", "https://data.delijn.be/stops/504558"], ["https://data.delijn.be/stops/300512", "https://data.delijn.be/stops/300513"], ["https://data.delijn.be/stops/102961", "https://data.delijn.be/stops/107247"], ["https://data.delijn.be/stops/109728", "https://data.delijn.be/stops/401957"], ["https://data.delijn.be/stops/104952", "https://data.delijn.be/stops/108475"], ["https://data.delijn.be/stops/302960", "https://data.delijn.be/stops/306295"], ["https://data.delijn.be/stops/404303", "https://data.delijn.be/stops/404649"], ["https://data.delijn.be/stops/504430", "https://data.delijn.be/stops/504436"], ["https://data.delijn.be/stops/300480", "https://data.delijn.be/stops/308930"], ["https://data.delijn.be/stops/201592", "https://data.delijn.be/stops/210129"], ["https://data.delijn.be/stops/201379", "https://data.delijn.be/stops/201380"], ["https://data.delijn.be/stops/300041", "https://data.delijn.be/stops/300071"], ["https://data.delijn.be/stops/504805", "https://data.delijn.be/stops/504807"], ["https://data.delijn.be/stops/206142", "https://data.delijn.be/stops/207088"], ["https://data.delijn.be/stops/402450", "https://data.delijn.be/stops/407494"], ["https://data.delijn.be/stops/303504", "https://data.delijn.be/stops/303509"], ["https://data.delijn.be/stops/201714", "https://data.delijn.be/stops/203379"], ["https://data.delijn.be/stops/105742", "https://data.delijn.be/stops/105802"], ["https://data.delijn.be/stops/504002", "https://data.delijn.be/stops/509002"], ["https://data.delijn.be/stops/201825", "https://data.delijn.be/stops/202310"], ["https://data.delijn.be/stops/204347", "https://data.delijn.be/stops/204694"], ["https://data.delijn.be/stops/503059", "https://data.delijn.be/stops/505381"], ["https://data.delijn.be/stops/102093", "https://data.delijn.be/stops/109812"], ["https://data.delijn.be/stops/406664", "https://data.delijn.be/stops/406679"], ["https://data.delijn.be/stops/501405", "https://data.delijn.be/stops/501698"], ["https://data.delijn.be/stops/502209", "https://data.delijn.be/stops/507209"], ["https://data.delijn.be/stops/101355", "https://data.delijn.be/stops/101930"], ["https://data.delijn.be/stops/400589", "https://data.delijn.be/stops/400610"], ["https://data.delijn.be/stops/204458", "https://data.delijn.be/stops/204477"], ["https://data.delijn.be/stops/208194", "https://data.delijn.be/stops/209156"], ["https://data.delijn.be/stops/200619", "https://data.delijn.be/stops/201286"], ["https://data.delijn.be/stops/505984", "https://data.delijn.be/stops/508850"], ["https://data.delijn.be/stops/408565", "https://data.delijn.be/stops/408707"], ["https://data.delijn.be/stops/500946", "https://data.delijn.be/stops/504195"], ["https://data.delijn.be/stops/206441", "https://data.delijn.be/stops/207440"], ["https://data.delijn.be/stops/509872", "https://data.delijn.be/stops/509873"], ["https://data.delijn.be/stops/402292", "https://data.delijn.be/stops/402320"], ["https://data.delijn.be/stops/502248", "https://data.delijn.be/stops/505704"], ["https://data.delijn.be/stops/209575", "https://data.delijn.be/stops/307526"], ["https://data.delijn.be/stops/406009", "https://data.delijn.be/stops/406064"], ["https://data.delijn.be/stops/302723", "https://data.delijn.be/stops/302724"], ["https://data.delijn.be/stops/304036", "https://data.delijn.be/stops/304865"], ["https://data.delijn.be/stops/102990", "https://data.delijn.be/stops/109641"], ["https://data.delijn.be/stops/101076", "https://data.delijn.be/stops/102718"], ["https://data.delijn.be/stops/304814", "https://data.delijn.be/stops/308771"], ["https://data.delijn.be/stops/401459", "https://data.delijn.be/stops/401541"], ["https://data.delijn.be/stops/200199", "https://data.delijn.be/stops/202480"], ["https://data.delijn.be/stops/307045", "https://data.delijn.be/stops/307046"], ["https://data.delijn.be/stops/505157", "https://data.delijn.be/stops/508112"], ["https://data.delijn.be/stops/504121", "https://data.delijn.be/stops/509121"], ["https://data.delijn.be/stops/101549", "https://data.delijn.be/stops/107806"], ["https://data.delijn.be/stops/301066", "https://data.delijn.be/stops/301070"], ["https://data.delijn.be/stops/507177", "https://data.delijn.be/stops/507181"], ["https://data.delijn.be/stops/303261", "https://data.delijn.be/stops/305661"], ["https://data.delijn.be/stops/402099", "https://data.delijn.be/stops/402223"], ["https://data.delijn.be/stops/208575", "https://data.delijn.be/stops/209575"], ["https://data.delijn.be/stops/107744", "https://data.delijn.be/stops/107746"], ["https://data.delijn.be/stops/403948", "https://data.delijn.be/stops/404021"], ["https://data.delijn.be/stops/304223", "https://data.delijn.be/stops/306826"], ["https://data.delijn.be/stops/200843", "https://data.delijn.be/stops/203299"], ["https://data.delijn.be/stops/208106", "https://data.delijn.be/stops/209779"], ["https://data.delijn.be/stops/203748", "https://data.delijn.be/stops/207568"], ["https://data.delijn.be/stops/503206", "https://data.delijn.be/stops/503359"], ["https://data.delijn.be/stops/302009", "https://data.delijn.be/stops/302025"], ["https://data.delijn.be/stops/302625", "https://data.delijn.be/stops/302626"], ["https://data.delijn.be/stops/504223", "https://data.delijn.be/stops/509523"], ["https://data.delijn.be/stops/302653", "https://data.delijn.be/stops/302657"], ["https://data.delijn.be/stops/504825", "https://data.delijn.be/stops/509402"], ["https://data.delijn.be/stops/104901", "https://data.delijn.be/stops/107609"], ["https://data.delijn.be/stops/503036", "https://data.delijn.be/stops/508037"], ["https://data.delijn.be/stops/202705", "https://data.delijn.be/stops/203705"], ["https://data.delijn.be/stops/108403", "https://data.delijn.be/stops/108404"], ["https://data.delijn.be/stops/108037", "https://data.delijn.be/stops/108038"], ["https://data.delijn.be/stops/105139", "https://data.delijn.be/stops/108505"], ["https://data.delijn.be/stops/403104", "https://data.delijn.be/stops/403114"], ["https://data.delijn.be/stops/101928", "https://data.delijn.be/stops/108196"], ["https://data.delijn.be/stops/300787", "https://data.delijn.be/stops/301048"], ["https://data.delijn.be/stops/504632", "https://data.delijn.be/stops/509633"], ["https://data.delijn.be/stops/104003", "https://data.delijn.be/stops/107840"], ["https://data.delijn.be/stops/501663", "https://data.delijn.be/stops/506636"], ["https://data.delijn.be/stops/503450", "https://data.delijn.be/stops/508975"], ["https://data.delijn.be/stops/504355", "https://data.delijn.be/stops/504357"], ["https://data.delijn.be/stops/304747", "https://data.delijn.be/stops/307276"], ["https://data.delijn.be/stops/300503", "https://data.delijn.be/stops/302363"], ["https://data.delijn.be/stops/400098", "https://data.delijn.be/stops/400127"], ["https://data.delijn.be/stops/209274", "https://data.delijn.be/stops/209333"], ["https://data.delijn.be/stops/200938", "https://data.delijn.be/stops/201404"], ["https://data.delijn.be/stops/108692", "https://data.delijn.be/stops/108810"], ["https://data.delijn.be/stops/401152", "https://data.delijn.be/stops/409815"], ["https://data.delijn.be/stops/305146", "https://data.delijn.be/stops/305153"], ["https://data.delijn.be/stops/405474", "https://data.delijn.be/stops/406711"], ["https://data.delijn.be/stops/203677", "https://data.delijn.be/stops/203726"], ["https://data.delijn.be/stops/304318", "https://data.delijn.be/stops/304319"], ["https://data.delijn.be/stops/109730", "https://data.delijn.be/stops/205528"], ["https://data.delijn.be/stops/408853", "https://data.delijn.be/stops/408861"], ["https://data.delijn.be/stops/402314", "https://data.delijn.be/stops/405689"], ["https://data.delijn.be/stops/202134", "https://data.delijn.be/stops/203134"], ["https://data.delijn.be/stops/503193", "https://data.delijn.be/stops/508200"], ["https://data.delijn.be/stops/303461", "https://data.delijn.be/stops/303477"], ["https://data.delijn.be/stops/504040", "https://data.delijn.be/stops/509040"], ["https://data.delijn.be/stops/302715", "https://data.delijn.be/stops/302777"], ["https://data.delijn.be/stops/508713", "https://data.delijn.be/stops/509963"], ["https://data.delijn.be/stops/505281", "https://data.delijn.be/stops/505996"], ["https://data.delijn.be/stops/403927", "https://data.delijn.be/stops/403930"], ["https://data.delijn.be/stops/502151", "https://data.delijn.be/stops/502643"], ["https://data.delijn.be/stops/402181", "https://data.delijn.be/stops/402430"], ["https://data.delijn.be/stops/303068", "https://data.delijn.be/stops/307928"], ["https://data.delijn.be/stops/200869", "https://data.delijn.be/stops/203341"], ["https://data.delijn.be/stops/207643", "https://data.delijn.be/stops/207644"], ["https://data.delijn.be/stops/305695", "https://data.delijn.be/stops/307840"], ["https://data.delijn.be/stops/503500", "https://data.delijn.be/stops/503503"], ["https://data.delijn.be/stops/301682", "https://data.delijn.be/stops/301684"], ["https://data.delijn.be/stops/102957", "https://data.delijn.be/stops/103764"], ["https://data.delijn.be/stops/501264", "https://data.delijn.be/stops/506262"], ["https://data.delijn.be/stops/101046", "https://data.delijn.be/stops/102012"], ["https://data.delijn.be/stops/105133", "https://data.delijn.be/stops/105136"], ["https://data.delijn.be/stops/101943", "https://data.delijn.be/stops/102453"], ["https://data.delijn.be/stops/108570", "https://data.delijn.be/stops/108575"], ["https://data.delijn.be/stops/202461", "https://data.delijn.be/stops/203461"], ["https://data.delijn.be/stops/304839", "https://data.delijn.be/stops/304853"], ["https://data.delijn.be/stops/301935", "https://data.delijn.be/stops/308718"], ["https://data.delijn.be/stops/106598", "https://data.delijn.be/stops/107209"], ["https://data.delijn.be/stops/503083", "https://data.delijn.be/stops/508079"], ["https://data.delijn.be/stops/308474", "https://data.delijn.be/stops/308487"], ["https://data.delijn.be/stops/302714", "https://data.delijn.be/stops/302732"], ["https://data.delijn.be/stops/204669", "https://data.delijn.be/stops/205669"], ["https://data.delijn.be/stops/501291", "https://data.delijn.be/stops/506546"], ["https://data.delijn.be/stops/503372", "https://data.delijn.be/stops/508403"], ["https://data.delijn.be/stops/109249", "https://data.delijn.be/stops/109250"], ["https://data.delijn.be/stops/300347", "https://data.delijn.be/stops/300356"], ["https://data.delijn.be/stops/410153", "https://data.delijn.be/stops/300918"], ["https://data.delijn.be/stops/204354", "https://data.delijn.be/stops/204675"], ["https://data.delijn.be/stops/107044", "https://data.delijn.be/stops/107046"], ["https://data.delijn.be/stops/104804", "https://data.delijn.be/stops/109114"], ["https://data.delijn.be/stops/404181", "https://data.delijn.be/stops/404279"], ["https://data.delijn.be/stops/405536", "https://data.delijn.be/stops/301489"], ["https://data.delijn.be/stops/307442", "https://data.delijn.be/stops/308590"], ["https://data.delijn.be/stops/201698", "https://data.delijn.be/stops/203446"], ["https://data.delijn.be/stops/403151", "https://data.delijn.be/stops/403152"], ["https://data.delijn.be/stops/401836", "https://data.delijn.be/stops/406018"], ["https://data.delijn.be/stops/304061", "https://data.delijn.be/stops/308447"], ["https://data.delijn.be/stops/206501", "https://data.delijn.be/stops/207502"], ["https://data.delijn.be/stops/402047", "https://data.delijn.be/stops/410149"], ["https://data.delijn.be/stops/105286", "https://data.delijn.be/stops/105287"], ["https://data.delijn.be/stops/305827", "https://data.delijn.be/stops/305828"], ["https://data.delijn.be/stops/103576", "https://data.delijn.be/stops/106612"], ["https://data.delijn.be/stops/405189", "https://data.delijn.be/stops/410059"], ["https://data.delijn.be/stops/404773", "https://data.delijn.be/stops/404777"], ["https://data.delijn.be/stops/200451", "https://data.delijn.be/stops/201425"], ["https://data.delijn.be/stops/104502", "https://data.delijn.be/stops/205563"], ["https://data.delijn.be/stops/508916", "https://data.delijn.be/stops/508919"], ["https://data.delijn.be/stops/208698", "https://data.delijn.be/stops/208699"], ["https://data.delijn.be/stops/301512", "https://data.delijn.be/stops/301515"], ["https://data.delijn.be/stops/504622", "https://data.delijn.be/stops/509622"], ["https://data.delijn.be/stops/204767", "https://data.delijn.be/stops/205767"], ["https://data.delijn.be/stops/305284", "https://data.delijn.be/stops/305287"], ["https://data.delijn.be/stops/505073", "https://data.delijn.be/stops/507753"], ["https://data.delijn.be/stops/305329", "https://data.delijn.be/stops/306342"], ["https://data.delijn.be/stops/401361", "https://data.delijn.be/stops/401366"], ["https://data.delijn.be/stops/202741", "https://data.delijn.be/stops/203741"], ["https://data.delijn.be/stops/407701", "https://data.delijn.be/stops/408448"], ["https://data.delijn.be/stops/501628", "https://data.delijn.be/stops/505716"], ["https://data.delijn.be/stops/109552", "https://data.delijn.be/stops/300051"], ["https://data.delijn.be/stops/503307", "https://data.delijn.be/stops/505814"], ["https://data.delijn.be/stops/500010", "https://data.delijn.be/stops/502337"], ["https://data.delijn.be/stops/200337", "https://data.delijn.be/stops/202203"], ["https://data.delijn.be/stops/401825", "https://data.delijn.be/stops/401831"], ["https://data.delijn.be/stops/201951", "https://data.delijn.be/stops/203428"], ["https://data.delijn.be/stops/401203", "https://data.delijn.be/stops/401360"], ["https://data.delijn.be/stops/204140", "https://data.delijn.be/stops/207888"], ["https://data.delijn.be/stops/301839", "https://data.delijn.be/stops/302470"], ["https://data.delijn.be/stops/409422", "https://data.delijn.be/stops/409705"], ["https://data.delijn.be/stops/201094", "https://data.delijn.be/stops/201469"], ["https://data.delijn.be/stops/307211", "https://data.delijn.be/stops/307213"], ["https://data.delijn.be/stops/305753", "https://data.delijn.be/stops/306333"], ["https://data.delijn.be/stops/107790", "https://data.delijn.be/stops/107795"], ["https://data.delijn.be/stops/104041", "https://data.delijn.be/stops/107624"], ["https://data.delijn.be/stops/102962", "https://data.delijn.be/stops/109276"], ["https://data.delijn.be/stops/502262", "https://data.delijn.be/stops/502689"], ["https://data.delijn.be/stops/400840", "https://data.delijn.be/stops/400842"], ["https://data.delijn.be/stops/104411", "https://data.delijn.be/stops/204336"], ["https://data.delijn.be/stops/300769", "https://data.delijn.be/stops/301043"], ["https://data.delijn.be/stops/109209", "https://data.delijn.be/stops/109211"], ["https://data.delijn.be/stops/303152", "https://data.delijn.be/stops/303192"], ["https://data.delijn.be/stops/308011", "https://data.delijn.be/stops/308030"], ["https://data.delijn.be/stops/408836", "https://data.delijn.be/stops/408904"], ["https://data.delijn.be/stops/502485", "https://data.delijn.be/stops/507485"], ["https://data.delijn.be/stops/302163", "https://data.delijn.be/stops/302451"], ["https://data.delijn.be/stops/303030", "https://data.delijn.be/stops/307724"], ["https://data.delijn.be/stops/103205", "https://data.delijn.be/stops/106507"], ["https://data.delijn.be/stops/104431", "https://data.delijn.be/stops/106786"], ["https://data.delijn.be/stops/506053", "https://data.delijn.be/stops/506055"], ["https://data.delijn.be/stops/102040", "https://data.delijn.be/stops/103745"], ["https://data.delijn.be/stops/201930", "https://data.delijn.be/stops/202471"], ["https://data.delijn.be/stops/301051", "https://data.delijn.be/stops/301062"], ["https://data.delijn.be/stops/302004", "https://data.delijn.be/stops/308958"], ["https://data.delijn.be/stops/101940", "https://data.delijn.be/stops/101950"], ["https://data.delijn.be/stops/105002", "https://data.delijn.be/stops/105121"], ["https://data.delijn.be/stops/302984", "https://data.delijn.be/stops/306707"], ["https://data.delijn.be/stops/102978", "https://data.delijn.be/stops/106831"], ["https://data.delijn.be/stops/303272", "https://data.delijn.be/stops/305724"], ["https://data.delijn.be/stops/301887", "https://data.delijn.be/stops/305911"], ["https://data.delijn.be/stops/304398", "https://data.delijn.be/stops/307406"], ["https://data.delijn.be/stops/505151", "https://data.delijn.be/stops/506089"], ["https://data.delijn.be/stops/201283", "https://data.delijn.be/stops/201335"], ["https://data.delijn.be/stops/404425", "https://data.delijn.be/stops/404427"], ["https://data.delijn.be/stops/202532", "https://data.delijn.be/stops/203966"], ["https://data.delijn.be/stops/107164", "https://data.delijn.be/stops/107166"], ["https://data.delijn.be/stops/404697", "https://data.delijn.be/stops/407144"], ["https://data.delijn.be/stops/202123", "https://data.delijn.be/stops/214018"], ["https://data.delijn.be/stops/209589", "https://data.delijn.be/stops/209590"], ["https://data.delijn.be/stops/101262", "https://data.delijn.be/stops/103680"], ["https://data.delijn.be/stops/404330", "https://data.delijn.be/stops/404381"], ["https://data.delijn.be/stops/302624", "https://data.delijn.be/stops/308116"], ["https://data.delijn.be/stops/200982", "https://data.delijn.be/stops/203917"], ["https://data.delijn.be/stops/204593", "https://data.delijn.be/stops/205164"], ["https://data.delijn.be/stops/207276", "https://data.delijn.be/stops/207968"], ["https://data.delijn.be/stops/107647", "https://data.delijn.be/stops/108958"], ["https://data.delijn.be/stops/506203", "https://data.delijn.be/stops/506257"], ["https://data.delijn.be/stops/504432", "https://data.delijn.be/stops/509410"], ["https://data.delijn.be/stops/200012", "https://data.delijn.be/stops/201012"], ["https://data.delijn.be/stops/300302", "https://data.delijn.be/stops/300303"], ["https://data.delijn.be/stops/302032", "https://data.delijn.be/stops/306380"], ["https://data.delijn.be/stops/503619", "https://data.delijn.be/stops/508619"], ["https://data.delijn.be/stops/300462", "https://data.delijn.be/stops/307088"], ["https://data.delijn.be/stops/403085", "https://data.delijn.be/stops/403666"], ["https://data.delijn.be/stops/300642", "https://data.delijn.be/stops/306747"], ["https://data.delijn.be/stops/103682", "https://data.delijn.be/stops/106197"], ["https://data.delijn.be/stops/206032", "https://data.delijn.be/stops/207031"], ["https://data.delijn.be/stops/401990", "https://data.delijn.be/stops/402040"], ["https://data.delijn.be/stops/102717", "https://data.delijn.be/stops/107413"], ["https://data.delijn.be/stops/400981", "https://data.delijn.be/stops/402860"], ["https://data.delijn.be/stops/202080", "https://data.delijn.be/stops/202346"], ["https://data.delijn.be/stops/207972", "https://data.delijn.be/stops/207973"], ["https://data.delijn.be/stops/206787", "https://data.delijn.be/stops/209037"], ["https://data.delijn.be/stops/502196", "https://data.delijn.be/stops/507196"], ["https://data.delijn.be/stops/302110", "https://data.delijn.be/stops/302113"], ["https://data.delijn.be/stops/403750", "https://data.delijn.be/stops/403781"], ["https://data.delijn.be/stops/207908", "https://data.delijn.be/stops/207909"], ["https://data.delijn.be/stops/102246", "https://data.delijn.be/stops/102247"], ["https://data.delijn.be/stops/200921", "https://data.delijn.be/stops/203699"], ["https://data.delijn.be/stops/109435", "https://data.delijn.be/stops/109437"], ["https://data.delijn.be/stops/208266", "https://data.delijn.be/stops/209266"], ["https://data.delijn.be/stops/103634", "https://data.delijn.be/stops/103637"], ["https://data.delijn.be/stops/200319", "https://data.delijn.be/stops/203191"], ["https://data.delijn.be/stops/302679", "https://data.delijn.be/stops/303612"], ["https://data.delijn.be/stops/102482", "https://data.delijn.be/stops/102484"], ["https://data.delijn.be/stops/109433", "https://data.delijn.be/stops/109435"], ["https://data.delijn.be/stops/303140", "https://data.delijn.be/stops/304026"], ["https://data.delijn.be/stops/401776", "https://data.delijn.be/stops/401790"], ["https://data.delijn.be/stops/305394", "https://data.delijn.be/stops/305461"], ["https://data.delijn.be/stops/200918", "https://data.delijn.be/stops/203138"], ["https://data.delijn.be/stops/402850", "https://data.delijn.be/stops/402858"], ["https://data.delijn.be/stops/307614", "https://data.delijn.be/stops/307615"], ["https://data.delijn.be/stops/204758", "https://data.delijn.be/stops/205759"], ["https://data.delijn.be/stops/405036", "https://data.delijn.be/stops/405069"], ["https://data.delijn.be/stops/303327", "https://data.delijn.be/stops/305058"], ["https://data.delijn.be/stops/204448", "https://data.delijn.be/stops/205448"], ["https://data.delijn.be/stops/300040", "https://data.delijn.be/stops/300041"], ["https://data.delijn.be/stops/407108", "https://data.delijn.be/stops/407734"], ["https://data.delijn.be/stops/401194", "https://data.delijn.be/stops/401219"], ["https://data.delijn.be/stops/203233", "https://data.delijn.be/stops/211121"], ["https://data.delijn.be/stops/306764", "https://data.delijn.be/stops/308694"], ["https://data.delijn.be/stops/501599", "https://data.delijn.be/stops/506146"], ["https://data.delijn.be/stops/201955", "https://data.delijn.be/stops/203285"], ["https://data.delijn.be/stops/405022", "https://data.delijn.be/stops/405052"], ["https://data.delijn.be/stops/403956", "https://data.delijn.be/stops/410025"], ["https://data.delijn.be/stops/102383", "https://data.delijn.be/stops/107730"], ["https://data.delijn.be/stops/308824", "https://data.delijn.be/stops/308825"], ["https://data.delijn.be/stops/107578", "https://data.delijn.be/stops/107579"], ["https://data.delijn.be/stops/501329", "https://data.delijn.be/stops/501356"], ["https://data.delijn.be/stops/109023", "https://data.delijn.be/stops/109078"], ["https://data.delijn.be/stops/201316", "https://data.delijn.be/stops/201649"], ["https://data.delijn.be/stops/409467", "https://data.delijn.be/stops/409471"], ["https://data.delijn.be/stops/200948", "https://data.delijn.be/stops/203049"], ["https://data.delijn.be/stops/404664", "https://data.delijn.be/stops/404670"], ["https://data.delijn.be/stops/503714", "https://data.delijn.be/stops/508706"], ["https://data.delijn.be/stops/106652", "https://data.delijn.be/stops/109752"], ["https://data.delijn.be/stops/300504", "https://data.delijn.be/stops/308358"], ["https://data.delijn.be/stops/504081", "https://data.delijn.be/stops/509081"], ["https://data.delijn.be/stops/208059", "https://data.delijn.be/stops/209059"], ["https://data.delijn.be/stops/206030", "https://data.delijn.be/stops/207874"], ["https://data.delijn.be/stops/200840", "https://data.delijn.be/stops/505648"], ["https://data.delijn.be/stops/201224", "https://data.delijn.be/stops/203134"], ["https://data.delijn.be/stops/408858", "https://data.delijn.be/stops/408897"], ["https://data.delijn.be/stops/308062", "https://data.delijn.be/stops/308063"], ["https://data.delijn.be/stops/106986", "https://data.delijn.be/stops/106987"], ["https://data.delijn.be/stops/302374", "https://data.delijn.be/stops/302384"], ["https://data.delijn.be/stops/206717", "https://data.delijn.be/stops/207613"], ["https://data.delijn.be/stops/504775", "https://data.delijn.be/stops/509591"], ["https://data.delijn.be/stops/300491", "https://data.delijn.be/stops/300492"], ["https://data.delijn.be/stops/505387", "https://data.delijn.be/stops/505389"], ["https://data.delijn.be/stops/200224", "https://data.delijn.be/stops/200443"], ["https://data.delijn.be/stops/501769", "https://data.delijn.be/stops/502705"], ["https://data.delijn.be/stops/507717", "https://data.delijn.be/stops/508975"], ["https://data.delijn.be/stops/503310", "https://data.delijn.be/stops/508140"], ["https://data.delijn.be/stops/206997", "https://data.delijn.be/stops/209748"], ["https://data.delijn.be/stops/207950", "https://data.delijn.be/stops/306077"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/107022"], ["https://data.delijn.be/stops/208782", "https://data.delijn.be/stops/209376"], ["https://data.delijn.be/stops/507796", "https://data.delijn.be/stops/508321"], ["https://data.delijn.be/stops/301113", "https://data.delijn.be/stops/307683"], ["https://data.delijn.be/stops/408910", "https://data.delijn.be/stops/408911"], ["https://data.delijn.be/stops/308410", "https://data.delijn.be/stops/308411"], ["https://data.delijn.be/stops/301168", "https://data.delijn.be/stops/307142"], ["https://data.delijn.be/stops/406108", "https://data.delijn.be/stops/406116"], ["https://data.delijn.be/stops/505258", "https://data.delijn.be/stops/508223"], ["https://data.delijn.be/stops/204171", "https://data.delijn.be/stops/205172"], ["https://data.delijn.be/stops/406895", "https://data.delijn.be/stops/406899"], ["https://data.delijn.be/stops/401398", "https://data.delijn.be/stops/301037"], ["https://data.delijn.be/stops/208538", "https://data.delijn.be/stops/209538"], ["https://data.delijn.be/stops/504964", "https://data.delijn.be/stops/508755"], ["https://data.delijn.be/stops/306679", "https://data.delijn.be/stops/307879"], ["https://data.delijn.be/stops/201682", "https://data.delijn.be/stops/203501"], ["https://data.delijn.be/stops/504296", "https://data.delijn.be/stops/505362"], ["https://data.delijn.be/stops/201047", "https://data.delijn.be/stops/201105"], ["https://data.delijn.be/stops/102954", "https://data.delijn.be/stops/102957"], ["https://data.delijn.be/stops/507477", "https://data.delijn.be/stops/507763"], ["https://data.delijn.be/stops/103975", "https://data.delijn.be/stops/104020"], ["https://data.delijn.be/stops/503800", "https://data.delijn.be/stops/508099"], ["https://data.delijn.be/stops/508081", "https://data.delijn.be/stops/508507"], ["https://data.delijn.be/stops/204997", "https://data.delijn.be/stops/205997"], ["https://data.delijn.be/stops/202128", "https://data.delijn.be/stops/203128"], ["https://data.delijn.be/stops/401416", "https://data.delijn.be/stops/308957"], ["https://data.delijn.be/stops/200590", "https://data.delijn.be/stops/211112"], ["https://data.delijn.be/stops/204473", "https://data.delijn.be/stops/205207"], ["https://data.delijn.be/stops/306384", "https://data.delijn.be/stops/307207"], ["https://data.delijn.be/stops/509119", "https://data.delijn.be/stops/509394"], ["https://data.delijn.be/stops/204795", "https://data.delijn.be/stops/205074"], ["https://data.delijn.be/stops/503316", "https://data.delijn.be/stops/504668"], ["https://data.delijn.be/stops/303616", "https://data.delijn.be/stops/304597"], ["https://data.delijn.be/stops/200686", "https://data.delijn.be/stops/201710"], ["https://data.delijn.be/stops/102978", "https://data.delijn.be/stops/105111"], ["https://data.delijn.be/stops/300142", "https://data.delijn.be/stops/306811"], ["https://data.delijn.be/stops/302427", "https://data.delijn.be/stops/302449"], ["https://data.delijn.be/stops/102778", "https://data.delijn.be/stops/106035"], ["https://data.delijn.be/stops/103069", "https://data.delijn.be/stops/105756"], ["https://data.delijn.be/stops/101492", "https://data.delijn.be/stops/108302"], ["https://data.delijn.be/stops/207046", "https://data.delijn.be/stops/207050"], ["https://data.delijn.be/stops/101133", "https://data.delijn.be/stops/101134"], ["https://data.delijn.be/stops/307451", "https://data.delijn.be/stops/307452"], ["https://data.delijn.be/stops/403450", "https://data.delijn.be/stops/409265"], ["https://data.delijn.be/stops/107599", "https://data.delijn.be/stops/107691"], ["https://data.delijn.be/stops/208603", "https://data.delijn.be/stops/307594"], ["https://data.delijn.be/stops/503484", "https://data.delijn.be/stops/504390"], ["https://data.delijn.be/stops/404469", "https://data.delijn.be/stops/404569"], ["https://data.delijn.be/stops/202534", "https://data.delijn.be/stops/202535"], ["https://data.delijn.be/stops/504420", "https://data.delijn.be/stops/509420"], ["https://data.delijn.be/stops/504063", "https://data.delijn.be/stops/509063"], ["https://data.delijn.be/stops/304218", "https://data.delijn.be/stops/304219"], ["https://data.delijn.be/stops/206627", "https://data.delijn.be/stops/307312"], ["https://data.delijn.be/stops/505580", "https://data.delijn.be/stops/505667"], ["https://data.delijn.be/stops/406118", "https://data.delijn.be/stops/406148"], ["https://data.delijn.be/stops/200765", "https://data.delijn.be/stops/209299"], ["https://data.delijn.be/stops/406554", "https://data.delijn.be/stops/406555"], ["https://data.delijn.be/stops/305698", "https://data.delijn.be/stops/305699"], ["https://data.delijn.be/stops/403149", "https://data.delijn.be/stops/403152"], ["https://data.delijn.be/stops/103135", "https://data.delijn.be/stops/105775"], ["https://data.delijn.be/stops/403924", "https://data.delijn.be/stops/403971"], ["https://data.delijn.be/stops/301828", "https://data.delijn.be/stops/301829"], ["https://data.delijn.be/stops/205705", "https://data.delijn.be/stops/205706"], ["https://data.delijn.be/stops/501687", "https://data.delijn.be/stops/506021"], ["https://data.delijn.be/stops/503540", "https://data.delijn.be/stops/503546"], ["https://data.delijn.be/stops/405885", "https://data.delijn.be/stops/406827"], ["https://data.delijn.be/stops/400928", "https://data.delijn.be/stops/400945"], ["https://data.delijn.be/stops/206666", "https://data.delijn.be/stops/206716"], ["https://data.delijn.be/stops/201191", "https://data.delijn.be/stops/201689"], ["https://data.delijn.be/stops/102159", "https://data.delijn.be/stops/107960"], ["https://data.delijn.be/stops/207250", "https://data.delijn.be/stops/208951"], ["https://data.delijn.be/stops/300351", "https://data.delijn.be/stops/301290"], ["https://data.delijn.be/stops/402074", "https://data.delijn.be/stops/405571"], ["https://data.delijn.be/stops/101798", "https://data.delijn.be/stops/300678"], ["https://data.delijn.be/stops/505512", "https://data.delijn.be/stops/505515"], ["https://data.delijn.be/stops/108362", "https://data.delijn.be/stops/108504"], ["https://data.delijn.be/stops/102431", "https://data.delijn.be/stops/102586"], ["https://data.delijn.be/stops/201450", "https://data.delijn.be/stops/202353"], ["https://data.delijn.be/stops/101508", "https://data.delijn.be/stops/300104"], ["https://data.delijn.be/stops/305734", "https://data.delijn.be/stops/305746"], ["https://data.delijn.be/stops/102675", "https://data.delijn.be/stops/105420"], ["https://data.delijn.be/stops/109680", "https://data.delijn.be/stops/408450"], ["https://data.delijn.be/stops/304153", "https://data.delijn.be/stops/304168"], ["https://data.delijn.be/stops/305429", "https://data.delijn.be/stops/305430"], ["https://data.delijn.be/stops/109199", "https://data.delijn.be/stops/109200"], ["https://data.delijn.be/stops/501210", "https://data.delijn.be/stops/506209"], ["https://data.delijn.be/stops/407853", "https://data.delijn.be/stops/408065"], ["https://data.delijn.be/stops/504875", "https://data.delijn.be/stops/505157"], ["https://data.delijn.be/stops/207784", "https://data.delijn.be/stops/208373"], ["https://data.delijn.be/stops/107150", "https://data.delijn.be/stops/109850"], ["https://data.delijn.be/stops/101748", "https://data.delijn.be/stops/102187"], ["https://data.delijn.be/stops/302420", "https://data.delijn.be/stops/302423"], ["https://data.delijn.be/stops/400468", "https://data.delijn.be/stops/409249"], ["https://data.delijn.be/stops/402406", "https://data.delijn.be/stops/402419"], ["https://data.delijn.be/stops/206950", "https://data.delijn.be/stops/207878"], ["https://data.delijn.be/stops/101024", "https://data.delijn.be/stops/106040"], ["https://data.delijn.be/stops/208159", "https://data.delijn.be/stops/209510"], ["https://data.delijn.be/stops/401843", "https://data.delijn.be/stops/401844"], ["https://data.delijn.be/stops/307550", "https://data.delijn.be/stops/307551"], ["https://data.delijn.be/stops/302172", "https://data.delijn.be/stops/302175"], ["https://data.delijn.be/stops/107208", "https://data.delijn.be/stops/107211"], ["https://data.delijn.be/stops/200412", "https://data.delijn.be/stops/200413"], ["https://data.delijn.be/stops/502534", "https://data.delijn.be/stops/507534"], ["https://data.delijn.be/stops/300032", "https://data.delijn.be/stops/303322"], ["https://data.delijn.be/stops/302306", "https://data.delijn.be/stops/302307"], ["https://data.delijn.be/stops/203848", "https://data.delijn.be/stops/203927"], ["https://data.delijn.be/stops/300357", "https://data.delijn.be/stops/300362"], ["https://data.delijn.be/stops/102819", "https://data.delijn.be/stops/103850"], ["https://data.delijn.be/stops/503781", "https://data.delijn.be/stops/508778"], ["https://data.delijn.be/stops/303310", "https://data.delijn.be/stops/303331"], ["https://data.delijn.be/stops/304222", "https://data.delijn.be/stops/304223"], ["https://data.delijn.be/stops/409050", "https://data.delijn.be/stops/409087"], ["https://data.delijn.be/stops/401679", "https://data.delijn.be/stops/308166"], ["https://data.delijn.be/stops/302765", "https://data.delijn.be/stops/304829"], ["https://data.delijn.be/stops/402685", "https://data.delijn.be/stops/402733"], ["https://data.delijn.be/stops/304995", "https://data.delijn.be/stops/308059"], ["https://data.delijn.be/stops/402078", "https://data.delijn.be/stops/410149"], ["https://data.delijn.be/stops/202743", "https://data.delijn.be/stops/203743"], ["https://data.delijn.be/stops/308935", "https://data.delijn.be/stops/308936"], ["https://data.delijn.be/stops/109017", "https://data.delijn.be/stops/404047"], ["https://data.delijn.be/stops/206678", "https://data.delijn.be/stops/208807"], ["https://data.delijn.be/stops/208679", "https://data.delijn.be/stops/209595"], ["https://data.delijn.be/stops/301215", "https://data.delijn.be/stops/304923"], ["https://data.delijn.be/stops/200094", "https://data.delijn.be/stops/201095"], ["https://data.delijn.be/stops/503231", "https://data.delijn.be/stops/508231"], ["https://data.delijn.be/stops/503800", "https://data.delijn.be/stops/505388"], ["https://data.delijn.be/stops/509389", "https://data.delijn.be/stops/509583"], ["https://data.delijn.be/stops/406972", "https://data.delijn.be/stops/409476"], ["https://data.delijn.be/stops/307051", "https://data.delijn.be/stops/307054"], ["https://data.delijn.be/stops/409378", "https://data.delijn.be/stops/409389"], ["https://data.delijn.be/stops/106433", "https://data.delijn.be/stops/106435"], ["https://data.delijn.be/stops/401245", "https://data.delijn.be/stops/410180"], ["https://data.delijn.be/stops/400836", "https://data.delijn.be/stops/400837"], ["https://data.delijn.be/stops/502683", "https://data.delijn.be/stops/505053"], ["https://data.delijn.be/stops/106402", "https://data.delijn.be/stops/106405"], ["https://data.delijn.be/stops/408549", "https://data.delijn.be/stops/408564"], ["https://data.delijn.be/stops/202969", "https://data.delijn.be/stops/203969"], ["https://data.delijn.be/stops/103257", "https://data.delijn.be/stops/103304"], ["https://data.delijn.be/stops/102238", "https://data.delijn.be/stops/105868"], ["https://data.delijn.be/stops/109396", "https://data.delijn.be/stops/109397"], ["https://data.delijn.be/stops/200864", "https://data.delijn.be/stops/202292"], ["https://data.delijn.be/stops/405232", "https://data.delijn.be/stops/405501"], ["https://data.delijn.be/stops/403131", "https://data.delijn.be/stops/403135"], ["https://data.delijn.be/stops/505302", "https://data.delijn.be/stops/505367"], ["https://data.delijn.be/stops/406137", "https://data.delijn.be/stops/406341"], ["https://data.delijn.be/stops/400537", "https://data.delijn.be/stops/403584"], ["https://data.delijn.be/stops/108628", "https://data.delijn.be/stops/109671"], ["https://data.delijn.be/stops/407668", "https://data.delijn.be/stops/407669"], ["https://data.delijn.be/stops/401730", "https://data.delijn.be/stops/401753"], ["https://data.delijn.be/stops/305042", "https://data.delijn.be/stops/305043"], ["https://data.delijn.be/stops/302281", "https://data.delijn.be/stops/302286"], ["https://data.delijn.be/stops/405792", "https://data.delijn.be/stops/409666"], ["https://data.delijn.be/stops/504172", "https://data.delijn.be/stops/509526"], ["https://data.delijn.be/stops/204185", "https://data.delijn.be/stops/204384"], ["https://data.delijn.be/stops/204546", "https://data.delijn.be/stops/205499"], ["https://data.delijn.be/stops/101555", "https://data.delijn.be/stops/101556"], ["https://data.delijn.be/stops/504820", "https://data.delijn.be/stops/508184"], ["https://data.delijn.be/stops/304148", "https://data.delijn.be/stops/307761"], ["https://data.delijn.be/stops/204340", "https://data.delijn.be/stops/204448"], ["https://data.delijn.be/stops/507051", "https://data.delijn.be/stops/507391"], ["https://data.delijn.be/stops/401524", "https://data.delijn.be/stops/402515"], ["https://data.delijn.be/stops/200879", "https://data.delijn.be/stops/200881"], ["https://data.delijn.be/stops/507381", "https://data.delijn.be/stops/507578"], ["https://data.delijn.be/stops/206296", "https://data.delijn.be/stops/206446"], ["https://data.delijn.be/stops/503671", "https://data.delijn.be/stops/508025"], ["https://data.delijn.be/stops/303373", "https://data.delijn.be/stops/303374"], ["https://data.delijn.be/stops/206987", "https://data.delijn.be/stops/207994"], ["https://data.delijn.be/stops/400413", "https://data.delijn.be/stops/400414"], ["https://data.delijn.be/stops/202985", "https://data.delijn.be/stops/203037"], ["https://data.delijn.be/stops/504295", "https://data.delijn.be/stops/509295"], ["https://data.delijn.be/stops/304563", "https://data.delijn.be/stops/306317"], ["https://data.delijn.be/stops/406017", "https://data.delijn.be/stops/406018"], ["https://data.delijn.be/stops/502042", "https://data.delijn.be/stops/507391"], ["https://data.delijn.be/stops/206988", "https://data.delijn.be/stops/207995"], ["https://data.delijn.be/stops/400910", "https://data.delijn.be/stops/400956"], ["https://data.delijn.be/stops/107916", "https://data.delijn.be/stops/207742"], ["https://data.delijn.be/stops/504810", "https://data.delijn.be/stops/508305"], ["https://data.delijn.be/stops/206152", "https://data.delijn.be/stops/207152"], ["https://data.delijn.be/stops/401409", "https://data.delijn.be/stops/301088"], ["https://data.delijn.be/stops/202695", "https://data.delijn.be/stops/211023"], ["https://data.delijn.be/stops/106640", "https://data.delijn.be/stops/106642"], ["https://data.delijn.be/stops/504504", "https://data.delijn.be/stops/509504"], ["https://data.delijn.be/stops/201906", "https://data.delijn.be/stops/203517"], ["https://data.delijn.be/stops/402803", "https://data.delijn.be/stops/409030"], ["https://data.delijn.be/stops/504093", "https://data.delijn.be/stops/504094"], ["https://data.delijn.be/stops/401500", "https://data.delijn.be/stops/410291"], ["https://data.delijn.be/stops/200866", "https://data.delijn.be/stops/202331"], ["https://data.delijn.be/stops/109347", "https://data.delijn.be/stops/109349"], ["https://data.delijn.be/stops/502554", "https://data.delijn.be/stops/505051"], ["https://data.delijn.be/stops/300747", "https://data.delijn.be/stops/302401"], ["https://data.delijn.be/stops/406524", "https://data.delijn.be/stops/406602"], ["https://data.delijn.be/stops/200577", "https://data.delijn.be/stops/202756"], ["https://data.delijn.be/stops/205052", "https://data.delijn.be/stops/205704"], ["https://data.delijn.be/stops/401258", "https://data.delijn.be/stops/401259"], ["https://data.delijn.be/stops/409164", "https://data.delijn.be/stops/409207"], ["https://data.delijn.be/stops/301002", "https://data.delijn.be/stops/306813"], ["https://data.delijn.be/stops/405723", "https://data.delijn.be/stops/408327"], ["https://data.delijn.be/stops/504224", "https://data.delijn.be/stops/504228"], ["https://data.delijn.be/stops/501163", "https://data.delijn.be/stops/506678"], ["https://data.delijn.be/stops/208202", "https://data.delijn.be/stops/208203"], ["https://data.delijn.be/stops/503361", "https://data.delijn.be/stops/503419"], ["https://data.delijn.be/stops/109116", "https://data.delijn.be/stops/109117"], ["https://data.delijn.be/stops/407617", "https://data.delijn.be/stops/409806"], ["https://data.delijn.be/stops/504127", "https://data.delijn.be/stops/509683"], ["https://data.delijn.be/stops/107034", "https://data.delijn.be/stops/107036"], ["https://data.delijn.be/stops/408003", "https://data.delijn.be/stops/408340"], ["https://data.delijn.be/stops/206514", "https://data.delijn.be/stops/207659"], ["https://data.delijn.be/stops/301691", "https://data.delijn.be/stops/301788"], ["https://data.delijn.be/stops/404864", "https://data.delijn.be/stops/406722"], ["https://data.delijn.be/stops/401356", "https://data.delijn.be/stops/401373"], ["https://data.delijn.be/stops/303985", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/504162", "https://data.delijn.be/stops/504196"], ["https://data.delijn.be/stops/407667", "https://data.delijn.be/stops/410248"], ["https://data.delijn.be/stops/404864", "https://data.delijn.be/stops/404892"], ["https://data.delijn.be/stops/502269", "https://data.delijn.be/stops/502673"], ["https://data.delijn.be/stops/504079", "https://data.delijn.be/stops/505395"], ["https://data.delijn.be/stops/304032", "https://data.delijn.be/stops/304112"], ["https://data.delijn.be/stops/501347", "https://data.delijn.be/stops/506357"], ["https://data.delijn.be/stops/405619", "https://data.delijn.be/stops/409876"], ["https://data.delijn.be/stops/200841", "https://data.delijn.be/stops/202791"], ["https://data.delijn.be/stops/401106", "https://data.delijn.be/stops/401111"], ["https://data.delijn.be/stops/503076", "https://data.delijn.be/stops/508068"], ["https://data.delijn.be/stops/407581", "https://data.delijn.be/stops/408881"], ["https://data.delijn.be/stops/206955", "https://data.delijn.be/stops/207367"], ["https://data.delijn.be/stops/305108", "https://data.delijn.be/stops/305109"], ["https://data.delijn.be/stops/103609", "https://data.delijn.be/stops/106311"], ["https://data.delijn.be/stops/503346", "https://data.delijn.be/stops/508346"], ["https://data.delijn.be/stops/300685", "https://data.delijn.be/stops/300699"], ["https://data.delijn.be/stops/402042", "https://data.delijn.be/stops/402044"], ["https://data.delijn.be/stops/200624", "https://data.delijn.be/stops/210093"], ["https://data.delijn.be/stops/109246", "https://data.delijn.be/stops/109258"], ["https://data.delijn.be/stops/107110", "https://data.delijn.be/stops/107595"], ["https://data.delijn.be/stops/202201", "https://data.delijn.be/stops/202204"], ["https://data.delijn.be/stops/202407", "https://data.delijn.be/stops/203406"], ["https://data.delijn.be/stops/503793", "https://data.delijn.be/stops/503795"], ["https://data.delijn.be/stops/106235", "https://data.delijn.be/stops/106682"], ["https://data.delijn.be/stops/503513", "https://data.delijn.be/stops/503518"], ["https://data.delijn.be/stops/200457", "https://data.delijn.be/stops/201737"], ["https://data.delijn.be/stops/303696", "https://data.delijn.be/stops/305419"], ["https://data.delijn.be/stops/207031", "https://data.delijn.be/stops/207047"], ["https://data.delijn.be/stops/301615", "https://data.delijn.be/stops/301633"], ["https://data.delijn.be/stops/400853", "https://data.delijn.be/stops/409621"], ["https://data.delijn.be/stops/501011", "https://data.delijn.be/stops/501072"], ["https://data.delijn.be/stops/202930", "https://data.delijn.be/stops/203491"], ["https://data.delijn.be/stops/401761", "https://data.delijn.be/stops/406824"], ["https://data.delijn.be/stops/304473", "https://data.delijn.be/stops/307584"], ["https://data.delijn.be/stops/104504", "https://data.delijn.be/stops/308849"], ["https://data.delijn.be/stops/501451", "https://data.delijn.be/stops/506362"], ["https://data.delijn.be/stops/104742", "https://data.delijn.be/stops/108162"], ["https://data.delijn.be/stops/207803", "https://data.delijn.be/stops/300195"], ["https://data.delijn.be/stops/403967", "https://data.delijn.be/stops/405979"], ["https://data.delijn.be/stops/204530", "https://data.delijn.be/stops/205327"], ["https://data.delijn.be/stops/301332", "https://data.delijn.be/stops/301342"], ["https://data.delijn.be/stops/304918", "https://data.delijn.be/stops/304919"], ["https://data.delijn.be/stops/408369", "https://data.delijn.be/stops/409375"], ["https://data.delijn.be/stops/403364", "https://data.delijn.be/stops/403522"], ["https://data.delijn.be/stops/300481", "https://data.delijn.be/stops/300503"], ["https://data.delijn.be/stops/406240", "https://data.delijn.be/stops/406247"], ["https://data.delijn.be/stops/101845", "https://data.delijn.be/stops/102840"], ["https://data.delijn.be/stops/400929", "https://data.delijn.be/stops/400945"], ["https://data.delijn.be/stops/303120", "https://data.delijn.be/stops/303224"], ["https://data.delijn.be/stops/206674", "https://data.delijn.be/stops/209172"], ["https://data.delijn.be/stops/200855", "https://data.delijn.be/stops/201883"], ["https://data.delijn.be/stops/301348", "https://data.delijn.be/stops/306132"], ["https://data.delijn.be/stops/204752", "https://data.delijn.be/stops/204753"], ["https://data.delijn.be/stops/204026", "https://data.delijn.be/stops/204027"], ["https://data.delijn.be/stops/109227", "https://data.delijn.be/stops/109228"], ["https://data.delijn.be/stops/400015", "https://data.delijn.be/stops/400016"], ["https://data.delijn.be/stops/201749", "https://data.delijn.be/stops/203621"], ["https://data.delijn.be/stops/302158", "https://data.delijn.be/stops/302159"], ["https://data.delijn.be/stops/109170", "https://data.delijn.be/stops/109172"], ["https://data.delijn.be/stops/500002", "https://data.delijn.be/stops/503665"], ["https://data.delijn.be/stops/402724", "https://data.delijn.be/stops/402731"], ["https://data.delijn.be/stops/305265", "https://data.delijn.be/stops/308697"], ["https://data.delijn.be/stops/301825", "https://data.delijn.be/stops/305912"], ["https://data.delijn.be/stops/106798", "https://data.delijn.be/stops/106867"], ["https://data.delijn.be/stops/103900", "https://data.delijn.be/stops/109673"], ["https://data.delijn.be/stops/203279", "https://data.delijn.be/stops/203298"], ["https://data.delijn.be/stops/400199", "https://data.delijn.be/stops/400430"], ["https://data.delijn.be/stops/202012", "https://data.delijn.be/stops/203012"], ["https://data.delijn.be/stops/101382", "https://data.delijn.be/stops/106993"], ["https://data.delijn.be/stops/206236", "https://data.delijn.be/stops/206855"], ["https://data.delijn.be/stops/407823", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/304941", "https://data.delijn.be/stops/306805"], ["https://data.delijn.be/stops/302014", "https://data.delijn.be/stops/302023"], ["https://data.delijn.be/stops/208061", "https://data.delijn.be/stops/208063"], ["https://data.delijn.be/stops/502039", "https://data.delijn.be/stops/507008"], ["https://data.delijn.be/stops/101400", "https://data.delijn.be/stops/106531"], ["https://data.delijn.be/stops/401562", "https://data.delijn.be/stops/401564"], ["https://data.delijn.be/stops/206566", "https://data.delijn.be/stops/206998"], ["https://data.delijn.be/stops/206085", "https://data.delijn.be/stops/206086"], ["https://data.delijn.be/stops/207474", "https://data.delijn.be/stops/207475"], ["https://data.delijn.be/stops/101689", "https://data.delijn.be/stops/101692"], ["https://data.delijn.be/stops/505772", "https://data.delijn.be/stops/507374"], ["https://data.delijn.be/stops/503040", "https://data.delijn.be/stops/508045"], ["https://data.delijn.be/stops/503232", "https://data.delijn.be/stops/508232"], ["https://data.delijn.be/stops/203064", "https://data.delijn.be/stops/211852"], ["https://data.delijn.be/stops/505960", "https://data.delijn.be/stops/509562"], ["https://data.delijn.be/stops/103287", "https://data.delijn.be/stops/109990"], ["https://data.delijn.be/stops/208167", "https://data.delijn.be/stops/209167"], ["https://data.delijn.be/stops/103002", "https://data.delijn.be/stops/105176"], ["https://data.delijn.be/stops/102224", "https://data.delijn.be/stops/105527"], ["https://data.delijn.be/stops/300345", "https://data.delijn.be/stops/304699"], ["https://data.delijn.be/stops/504470", "https://data.delijn.be/stops/504473"], ["https://data.delijn.be/stops/405713", "https://data.delijn.be/stops/408352"], ["https://data.delijn.be/stops/103007", "https://data.delijn.be/stops/106425"], ["https://data.delijn.be/stops/200650", "https://data.delijn.be/stops/208712"], ["https://data.delijn.be/stops/403949", "https://data.delijn.be/stops/404025"], ["https://data.delijn.be/stops/409306", "https://data.delijn.be/stops/409307"], ["https://data.delijn.be/stops/306871", "https://data.delijn.be/stops/307421"], ["https://data.delijn.be/stops/401647", "https://data.delijn.be/stops/408723"], ["https://data.delijn.be/stops/305347", "https://data.delijn.be/stops/307110"], ["https://data.delijn.be/stops/102463", "https://data.delijn.be/stops/400145"], ["https://data.delijn.be/stops/105114", "https://data.delijn.be/stops/105826"], ["https://data.delijn.be/stops/402155", "https://data.delijn.be/stops/406810"], ["https://data.delijn.be/stops/308866", "https://data.delijn.be/stops/308867"], ["https://data.delijn.be/stops/107604", "https://data.delijn.be/stops/107605"], ["https://data.delijn.be/stops/403394", "https://data.delijn.be/stops/403395"], ["https://data.delijn.be/stops/505778", "https://data.delijn.be/stops/509827"], ["https://data.delijn.be/stops/503858", "https://data.delijn.be/stops/507953"], ["https://data.delijn.be/stops/102756", "https://data.delijn.be/stops/103306"], ["https://data.delijn.be/stops/303700", "https://data.delijn.be/stops/304918"], ["https://data.delijn.be/stops/205528", "https://data.delijn.be/stops/205634"], ["https://data.delijn.be/stops/503949", "https://data.delijn.be/stops/504997"], ["https://data.delijn.be/stops/104452", "https://data.delijn.be/stops/107522"], ["https://data.delijn.be/stops/408332", "https://data.delijn.be/stops/410160"], ["https://data.delijn.be/stops/206769", "https://data.delijn.be/stops/208038"], ["https://data.delijn.be/stops/202028", "https://data.delijn.be/stops/203991"], ["https://data.delijn.be/stops/208440", "https://data.delijn.be/stops/208674"], ["https://data.delijn.be/stops/501100", "https://data.delijn.be/stops/506100"], ["https://data.delijn.be/stops/205974", "https://data.delijn.be/stops/208243"], ["https://data.delijn.be/stops/301833", "https://data.delijn.be/stops/301847"], ["https://data.delijn.be/stops/404626", "https://data.delijn.be/stops/406732"], ["https://data.delijn.be/stops/503145", "https://data.delijn.be/stops/503159"], ["https://data.delijn.be/stops/501173", "https://data.delijn.be/stops/501183"], ["https://data.delijn.be/stops/404655", "https://data.delijn.be/stops/404666"], ["https://data.delijn.be/stops/200832", "https://data.delijn.be/stops/200835"], ["https://data.delijn.be/stops/204340", "https://data.delijn.be/stops/204341"], ["https://data.delijn.be/stops/305497", "https://data.delijn.be/stops/307813"], ["https://data.delijn.be/stops/502328", "https://data.delijn.be/stops/507328"], ["https://data.delijn.be/stops/101368", "https://data.delijn.be/stops/106419"], ["https://data.delijn.be/stops/501384", "https://data.delijn.be/stops/506191"], ["https://data.delijn.be/stops/402750", "https://data.delijn.be/stops/408038"], ["https://data.delijn.be/stops/105654", "https://data.delijn.be/stops/105657"], ["https://data.delijn.be/stops/201235", "https://data.delijn.be/stops/201521"], ["https://data.delijn.be/stops/103641", "https://data.delijn.be/stops/107171"], ["https://data.delijn.be/stops/301847", "https://data.delijn.be/stops/308602"], ["https://data.delijn.be/stops/203766", "https://data.delijn.be/stops/203778"], ["https://data.delijn.be/stops/404151", "https://data.delijn.be/stops/404184"], ["https://data.delijn.be/stops/505079", "https://data.delijn.be/stops/507753"], ["https://data.delijn.be/stops/108091", "https://data.delijn.be/stops/108093"], ["https://data.delijn.be/stops/208843", "https://data.delijn.be/stops/210070"], ["https://data.delijn.be/stops/407630", "https://data.delijn.be/stops/409520"], ["https://data.delijn.be/stops/203305", "https://data.delijn.be/stops/203306"], ["https://data.delijn.be/stops/333233", "https://data.delijn.be/stops/333234"], ["https://data.delijn.be/stops/302958", "https://data.delijn.be/stops/303005"], ["https://data.delijn.be/stops/407224", "https://data.delijn.be/stops/407442"], ["https://data.delijn.be/stops/408456", "https://data.delijn.be/stops/409420"], ["https://data.delijn.be/stops/401922", "https://data.delijn.be/stops/403798"], ["https://data.delijn.be/stops/301292", "https://data.delijn.be/stops/306249"], ["https://data.delijn.be/stops/200333", "https://data.delijn.be/stops/203821"], ["https://data.delijn.be/stops/202824", "https://data.delijn.be/stops/203824"], ["https://data.delijn.be/stops/300780", "https://data.delijn.be/stops/300785"], ["https://data.delijn.be/stops/506242", "https://data.delijn.be/stops/506768"], ["https://data.delijn.be/stops/303180", "https://data.delijn.be/stops/307799"], ["https://data.delijn.be/stops/204370", "https://data.delijn.be/stops/204371"], ["https://data.delijn.be/stops/207760", "https://data.delijn.be/stops/207781"], ["https://data.delijn.be/stops/402589", "https://data.delijn.be/stops/404143"], ["https://data.delijn.be/stops/400092", "https://data.delijn.be/stops/400093"], ["https://data.delijn.be/stops/205020", "https://data.delijn.be/stops/205400"], ["https://data.delijn.be/stops/203989", "https://data.delijn.be/stops/210850"], ["https://data.delijn.be/stops/305664", "https://data.delijn.be/stops/305666"], ["https://data.delijn.be/stops/504604", "https://data.delijn.be/stops/509523"], ["https://data.delijn.be/stops/401401", "https://data.delijn.be/stops/401402"], ["https://data.delijn.be/stops/504443", "https://data.delijn.be/stops/509445"], ["https://data.delijn.be/stops/101589", "https://data.delijn.be/stops/101590"], ["https://data.delijn.be/stops/206168", "https://data.delijn.be/stops/206169"], ["https://data.delijn.be/stops/406974", "https://data.delijn.be/stops/406975"], ["https://data.delijn.be/stops/204649", "https://data.delijn.be/stops/205613"], ["https://data.delijn.be/stops/502297", "https://data.delijn.be/stops/507297"], ["https://data.delijn.be/stops/201403", "https://data.delijn.be/stops/202688"], ["https://data.delijn.be/stops/308477", "https://data.delijn.be/stops/308478"], ["https://data.delijn.be/stops/205251", "https://data.delijn.be/stops/205481"], ["https://data.delijn.be/stops/304863", "https://data.delijn.be/stops/306816"], ["https://data.delijn.be/stops/302428", "https://data.delijn.be/stops/302429"], ["https://data.delijn.be/stops/206265", "https://data.delijn.be/stops/206982"], ["https://data.delijn.be/stops/301052", "https://data.delijn.be/stops/301061"], ["https://data.delijn.be/stops/302887", "https://data.delijn.be/stops/303232"], ["https://data.delijn.be/stops/101395", "https://data.delijn.be/stops/101680"], ["https://data.delijn.be/stops/208110", "https://data.delijn.be/stops/209112"], ["https://data.delijn.be/stops/501751", "https://data.delijn.be/stops/501777"], ["https://data.delijn.be/stops/406786", "https://data.delijn.be/stops/406804"], ["https://data.delijn.be/stops/503696", "https://data.delijn.be/stops/508696"], ["https://data.delijn.be/stops/402104", "https://data.delijn.be/stops/402105"], ["https://data.delijn.be/stops/408432", "https://data.delijn.be/stops/408433"], ["https://data.delijn.be/stops/106230", "https://data.delijn.be/stops/109126"], ["https://data.delijn.be/stops/102190", "https://data.delijn.be/stops/102414"], ["https://data.delijn.be/stops/201709", "https://data.delijn.be/stops/202377"], ["https://data.delijn.be/stops/300224", "https://data.delijn.be/stops/300256"], ["https://data.delijn.be/stops/202108", "https://data.delijn.be/stops/204234"], ["https://data.delijn.be/stops/103985", "https://data.delijn.be/stops/104020"], ["https://data.delijn.be/stops/406735", "https://data.delijn.be/stops/407622"], ["https://data.delijn.be/stops/300271", "https://data.delijn.be/stops/307112"], ["https://data.delijn.be/stops/304051", "https://data.delijn.be/stops/304079"], ["https://data.delijn.be/stops/304159", "https://data.delijn.be/stops/307543"], ["https://data.delijn.be/stops/409457", "https://data.delijn.be/stops/409458"], ["https://data.delijn.be/stops/404728", "https://data.delijn.be/stops/406109"], ["https://data.delijn.be/stops/102596", "https://data.delijn.be/stops/102597"], ["https://data.delijn.be/stops/200725", "https://data.delijn.be/stops/202567"], ["https://data.delijn.be/stops/303276", "https://data.delijn.be/stops/303304"], ["https://data.delijn.be/stops/209118", "https://data.delijn.be/stops/209236"], ["https://data.delijn.be/stops/207111", "https://data.delijn.be/stops/207125"], ["https://data.delijn.be/stops/307971", "https://data.delijn.be/stops/307972"], ["https://data.delijn.be/stops/403844", "https://data.delijn.be/stops/403845"], ["https://data.delijn.be/stops/501681", "https://data.delijn.be/stops/506417"], ["https://data.delijn.be/stops/505207", "https://data.delijn.be/stops/505216"], ["https://data.delijn.be/stops/504786", "https://data.delijn.be/stops/504862"], ["https://data.delijn.be/stops/103585", "https://data.delijn.be/stops/105325"], ["https://data.delijn.be/stops/102209", "https://data.delijn.be/stops/106241"], ["https://data.delijn.be/stops/307742", "https://data.delijn.be/stops/307743"], ["https://data.delijn.be/stops/501436", "https://data.delijn.be/stops/501693"], ["https://data.delijn.be/stops/107231", "https://data.delijn.be/stops/107232"], ["https://data.delijn.be/stops/408260", "https://data.delijn.be/stops/408401"], ["https://data.delijn.be/stops/402953", "https://data.delijn.be/stops/405308"], ["https://data.delijn.be/stops/301099", "https://data.delijn.be/stops/308871"], ["https://data.delijn.be/stops/405735", "https://data.delijn.be/stops/410141"], ["https://data.delijn.be/stops/505547", "https://data.delijn.be/stops/505669"], ["https://data.delijn.be/stops/308488", "https://data.delijn.be/stops/308523"], ["https://data.delijn.be/stops/303721", "https://data.delijn.be/stops/303743"], ["https://data.delijn.be/stops/502250", "https://data.delijn.be/stops/507250"], ["https://data.delijn.be/stops/500023", "https://data.delijn.be/stops/501402"], ["https://data.delijn.be/stops/109049", "https://data.delijn.be/stops/109051"], ["https://data.delijn.be/stops/406694", "https://data.delijn.be/stops/408481"], ["https://data.delijn.be/stops/401583", "https://data.delijn.be/stops/406248"], ["https://data.delijn.be/stops/501428", "https://data.delijn.be/stops/501430"], ["https://data.delijn.be/stops/302315", "https://data.delijn.be/stops/302671"], ["https://data.delijn.be/stops/105049", "https://data.delijn.be/stops/304043"], ["https://data.delijn.be/stops/107695", "https://data.delijn.be/stops/108300"], ["https://data.delijn.be/stops/203221", "https://data.delijn.be/stops/205832"], ["https://data.delijn.be/stops/503416", "https://data.delijn.be/stops/508443"], ["https://data.delijn.be/stops/201950", "https://data.delijn.be/stops/203427"], ["https://data.delijn.be/stops/507796", "https://data.delijn.be/stops/507797"], ["https://data.delijn.be/stops/205972", "https://data.delijn.be/stops/207074"], ["https://data.delijn.be/stops/305653", "https://data.delijn.be/stops/307790"], ["https://data.delijn.be/stops/106920", "https://data.delijn.be/stops/106921"], ["https://data.delijn.be/stops/207427", "https://data.delijn.be/stops/209535"], ["https://data.delijn.be/stops/404082", "https://data.delijn.be/stops/308751"], ["https://data.delijn.be/stops/301021", "https://data.delijn.be/stops/301048"], ["https://data.delijn.be/stops/304393", "https://data.delijn.be/stops/307399"], ["https://data.delijn.be/stops/403514", "https://data.delijn.be/stops/403559"], ["https://data.delijn.be/stops/507206", "https://data.delijn.be/stops/507218"], ["https://data.delijn.be/stops/501104", "https://data.delijn.be/stops/501108"], ["https://data.delijn.be/stops/302378", "https://data.delijn.be/stops/302391"], ["https://data.delijn.be/stops/106721", "https://data.delijn.be/stops/106722"], ["https://data.delijn.be/stops/502143", "https://data.delijn.be/stops/507166"], ["https://data.delijn.be/stops/106220", "https://data.delijn.be/stops/106322"], ["https://data.delijn.be/stops/501768", "https://data.delijn.be/stops/502484"], ["https://data.delijn.be/stops/204459", "https://data.delijn.be/stops/205458"], ["https://data.delijn.be/stops/303238", "https://data.delijn.be/stops/303239"], ["https://data.delijn.be/stops/405624", "https://data.delijn.be/stops/409301"], ["https://data.delijn.be/stops/102159", "https://data.delijn.be/stops/108964"], ["https://data.delijn.be/stops/407834", "https://data.delijn.be/stops/407835"], ["https://data.delijn.be/stops/301098", "https://data.delijn.be/stops/301247"], ["https://data.delijn.be/stops/105036", "https://data.delijn.be/stops/105219"], ["https://data.delijn.be/stops/200239", "https://data.delijn.be/stops/201276"], ["https://data.delijn.be/stops/505434", "https://data.delijn.be/stops/505435"], ["https://data.delijn.be/stops/402719", "https://data.delijn.be/stops/402729"], ["https://data.delijn.be/stops/300831", "https://data.delijn.be/stops/300986"], ["https://data.delijn.be/stops/401773", "https://data.delijn.be/stops/406329"], ["https://data.delijn.be/stops/207019", "https://data.delijn.be/stops/207143"], ["https://data.delijn.be/stops/400476", "https://data.delijn.be/stops/400479"], ["https://data.delijn.be/stops/502911", "https://data.delijn.be/stops/502917"], ["https://data.delijn.be/stops/208804", "https://data.delijn.be/stops/209431"], ["https://data.delijn.be/stops/502453", "https://data.delijn.be/stops/507659"], ["https://data.delijn.be/stops/503326", "https://data.delijn.be/stops/505752"], ["https://data.delijn.be/stops/406187", "https://data.delijn.be/stops/409395"], ["https://data.delijn.be/stops/208316", "https://data.delijn.be/stops/209316"], ["https://data.delijn.be/stops/103012", "https://data.delijn.be/stops/104102"], ["https://data.delijn.be/stops/503475", "https://data.delijn.be/stops/508475"], ["https://data.delijn.be/stops/503197", "https://data.delijn.be/stops/508212"], ["https://data.delijn.be/stops/405434", "https://data.delijn.be/stops/409250"], ["https://data.delijn.be/stops/300012", "https://data.delijn.be/stops/300785"], ["https://data.delijn.be/stops/303943", "https://data.delijn.be/stops/306797"], ["https://data.delijn.be/stops/403573", "https://data.delijn.be/stops/403576"], ["https://data.delijn.be/stops/400110", "https://data.delijn.be/stops/409164"], ["https://data.delijn.be/stops/200023", "https://data.delijn.be/stops/201023"], ["https://data.delijn.be/stops/406310", "https://data.delijn.be/stops/406325"], ["https://data.delijn.be/stops/407725", "https://data.delijn.be/stops/407727"], ["https://data.delijn.be/stops/207758", "https://data.delijn.be/stops/207798"], ["https://data.delijn.be/stops/402115", "https://data.delijn.be/stops/402122"], ["https://data.delijn.be/stops/301480", "https://data.delijn.be/stops/301481"], ["https://data.delijn.be/stops/107283", "https://data.delijn.be/stops/107402"], ["https://data.delijn.be/stops/101677", "https://data.delijn.be/stops/103132"], ["https://data.delijn.be/stops/504393", "https://data.delijn.be/stops/509393"], ["https://data.delijn.be/stops/201751", "https://data.delijn.be/stops/203834"], ["https://data.delijn.be/stops/301114", "https://data.delijn.be/stops/307634"], ["https://data.delijn.be/stops/302081", "https://data.delijn.be/stops/302095"], ["https://data.delijn.be/stops/102965", "https://data.delijn.be/stops/104100"], ["https://data.delijn.be/stops/304404", "https://data.delijn.be/stops/307955"], ["https://data.delijn.be/stops/102867", "https://data.delijn.be/stops/106505"], ["https://data.delijn.be/stops/405615", "https://data.delijn.be/stops/407186"], ["https://data.delijn.be/stops/505682", "https://data.delijn.be/stops/505683"], ["https://data.delijn.be/stops/105977", "https://data.delijn.be/stops/105978"], ["https://data.delijn.be/stops/303213", "https://data.delijn.be/stops/303214"], ["https://data.delijn.be/stops/301421", "https://data.delijn.be/stops/302132"], ["https://data.delijn.be/stops/204167", "https://data.delijn.be/stops/205167"], ["https://data.delijn.be/stops/505316", "https://data.delijn.be/stops/508006"], ["https://data.delijn.be/stops/101857", "https://data.delijn.be/stops/105554"], ["https://data.delijn.be/stops/206228", "https://data.delijn.be/stops/308573"], ["https://data.delijn.be/stops/200212", "https://data.delijn.be/stops/201203"], ["https://data.delijn.be/stops/207246", "https://data.delijn.be/stops/207403"], ["https://data.delijn.be/stops/307428", "https://data.delijn.be/stops/307429"], ["https://data.delijn.be/stops/304101", "https://data.delijn.be/stops/304109"], ["https://data.delijn.be/stops/502324", "https://data.delijn.be/stops/502333"], ["https://data.delijn.be/stops/106455", "https://data.delijn.be/stops/106456"], ["https://data.delijn.be/stops/107444", "https://data.delijn.be/stops/109754"], ["https://data.delijn.be/stops/501027", "https://data.delijn.be/stops/501366"], ["https://data.delijn.be/stops/405976", "https://data.delijn.be/stops/405991"], ["https://data.delijn.be/stops/502092", "https://data.delijn.be/stops/507112"], ["https://data.delijn.be/stops/200856", "https://data.delijn.be/stops/201883"], ["https://data.delijn.be/stops/408735", "https://data.delijn.be/stops/408775"], ["https://data.delijn.be/stops/504278", "https://data.delijn.be/stops/509282"], ["https://data.delijn.be/stops/505052", "https://data.delijn.be/stops/505225"], ["https://data.delijn.be/stops/202110", "https://data.delijn.be/stops/203639"], ["https://data.delijn.be/stops/308015", "https://data.delijn.be/stops/308018"], ["https://data.delijn.be/stops/503573", "https://data.delijn.be/stops/503575"], ["https://data.delijn.be/stops/106839", "https://data.delijn.be/stops/107426"], ["https://data.delijn.be/stops/403817", "https://data.delijn.be/stops/403819"], ["https://data.delijn.be/stops/101530", "https://data.delijn.be/stops/104815"], ["https://data.delijn.be/stops/503154", "https://data.delijn.be/stops/505788"], ["https://data.delijn.be/stops/301825", "https://data.delijn.be/stops/301828"], ["https://data.delijn.be/stops/206642", "https://data.delijn.be/stops/207642"], ["https://data.delijn.be/stops/502457", "https://data.delijn.be/stops/507270"], ["https://data.delijn.be/stops/201375", "https://data.delijn.be/stops/210089"], ["https://data.delijn.be/stops/208087", "https://data.delijn.be/stops/209088"], ["https://data.delijn.be/stops/101279", "https://data.delijn.be/stops/106025"], ["https://data.delijn.be/stops/506051", "https://data.delijn.be/stops/507135"], ["https://data.delijn.be/stops/106395", "https://data.delijn.be/stops/106396"], ["https://data.delijn.be/stops/504327", "https://data.delijn.be/stops/504330"], ["https://data.delijn.be/stops/204990", "https://data.delijn.be/stops/204991"], ["https://data.delijn.be/stops/303657", "https://data.delijn.be/stops/308958"], ["https://data.delijn.be/stops/503646", "https://data.delijn.be/stops/503735"], ["https://data.delijn.be/stops/301632", "https://data.delijn.be/stops/301633"], ["https://data.delijn.be/stops/103624", "https://data.delijn.be/stops/103629"], ["https://data.delijn.be/stops/200183", "https://data.delijn.be/stops/202477"], ["https://data.delijn.be/stops/204432", "https://data.delijn.be/stops/204443"], ["https://data.delijn.be/stops/503696", "https://data.delijn.be/stops/509950"], ["https://data.delijn.be/stops/206123", "https://data.delijn.be/stops/300843"], ["https://data.delijn.be/stops/402236", "https://data.delijn.be/stops/402237"], ["https://data.delijn.be/stops/301084", "https://data.delijn.be/stops/301927"], ["https://data.delijn.be/stops/105458", "https://data.delijn.be/stops/109893"], ["https://data.delijn.be/stops/106138", "https://data.delijn.be/stops/106140"], ["https://data.delijn.be/stops/104757", "https://data.delijn.be/stops/108897"], ["https://data.delijn.be/stops/406042", "https://data.delijn.be/stops/406050"], ["https://data.delijn.be/stops/408530", "https://data.delijn.be/stops/408775"], ["https://data.delijn.be/stops/301832", "https://data.delijn.be/stops/304334"], ["https://data.delijn.be/stops/408698", "https://data.delijn.be/stops/408699"], ["https://data.delijn.be/stops/208159", "https://data.delijn.be/stops/208510"], ["https://data.delijn.be/stops/504820", "https://data.delijn.be/stops/509820"], ["https://data.delijn.be/stops/407542", "https://data.delijn.be/stops/408482"], ["https://data.delijn.be/stops/401082", "https://data.delijn.be/stops/401167"], ["https://data.delijn.be/stops/302345", "https://data.delijn.be/stops/302370"], ["https://data.delijn.be/stops/108558", "https://data.delijn.be/stops/109093"], ["https://data.delijn.be/stops/103596", "https://data.delijn.be/stops/109402"], ["https://data.delijn.be/stops/106818", "https://data.delijn.be/stops/106820"], ["https://data.delijn.be/stops/202365", "https://data.delijn.be/stops/203997"], ["https://data.delijn.be/stops/408084", "https://data.delijn.be/stops/305705"], ["https://data.delijn.be/stops/502037", "https://data.delijn.be/stops/502041"], ["https://data.delijn.be/stops/107136", "https://data.delijn.be/stops/107137"], ["https://data.delijn.be/stops/400143", "https://data.delijn.be/stops/403420"], ["https://data.delijn.be/stops/301587", "https://data.delijn.be/stops/301588"], ["https://data.delijn.be/stops/407357", "https://data.delijn.be/stops/409859"], ["https://data.delijn.be/stops/404486", "https://data.delijn.be/stops/406763"], ["https://data.delijn.be/stops/101925", "https://data.delijn.be/stops/102595"], ["https://data.delijn.be/stops/200669", "https://data.delijn.be/stops/505914"], ["https://data.delijn.be/stops/403468", "https://data.delijn.be/stops/403475"], ["https://data.delijn.be/stops/200501", "https://data.delijn.be/stops/201188"], ["https://data.delijn.be/stops/401564", "https://data.delijn.be/stops/408469"], ["https://data.delijn.be/stops/305263", "https://data.delijn.be/stops/305315"], ["https://data.delijn.be/stops/503601", "https://data.delijn.be/stops/508601"], ["https://data.delijn.be/stops/408968", "https://data.delijn.be/stops/408976"], ["https://data.delijn.be/stops/504257", "https://data.delijn.be/stops/509683"], ["https://data.delijn.be/stops/109621", "https://data.delijn.be/stops/109622"], ["https://data.delijn.be/stops/305070", "https://data.delijn.be/stops/305071"], ["https://data.delijn.be/stops/404625", "https://data.delijn.be/stops/404634"], ["https://data.delijn.be/stops/303196", "https://data.delijn.be/stops/303197"], ["https://data.delijn.be/stops/202103", "https://data.delijn.be/stops/202104"], ["https://data.delijn.be/stops/407508", "https://data.delijn.be/stops/407509"], ["https://data.delijn.be/stops/504037", "https://data.delijn.be/stops/509037"], ["https://data.delijn.be/stops/208707", "https://data.delijn.be/stops/208708"], ["https://data.delijn.be/stops/407479", "https://data.delijn.be/stops/407540"], ["https://data.delijn.be/stops/405466", "https://data.delijn.be/stops/408814"], ["https://data.delijn.be/stops/209006", "https://data.delijn.be/stops/209007"], ["https://data.delijn.be/stops/107929", "https://data.delijn.be/stops/107930"], ["https://data.delijn.be/stops/203233", "https://data.delijn.be/stops/203234"], ["https://data.delijn.be/stops/305082", "https://data.delijn.be/stops/305083"], ["https://data.delijn.be/stops/104987", "https://data.delijn.be/stops/109480"], ["https://data.delijn.be/stops/102389", "https://data.delijn.be/stops/107081"], ["https://data.delijn.be/stops/308074", "https://data.delijn.be/stops/308937"], ["https://data.delijn.be/stops/206750", "https://data.delijn.be/stops/208476"], ["https://data.delijn.be/stops/104643", "https://data.delijn.be/stops/108034"], ["https://data.delijn.be/stops/206706", "https://data.delijn.be/stops/207611"], ["https://data.delijn.be/stops/400906", "https://data.delijn.be/stops/400907"], ["https://data.delijn.be/stops/503061", "https://data.delijn.be/stops/505789"], ["https://data.delijn.be/stops/107545", "https://data.delijn.be/stops/109593"], ["https://data.delijn.be/stops/407670", "https://data.delijn.be/stops/407674"], ["https://data.delijn.be/stops/200692", "https://data.delijn.be/stops/210041"], ["https://data.delijn.be/stops/502518", "https://data.delijn.be/stops/507518"], ["https://data.delijn.be/stops/207619", "https://data.delijn.be/stops/207620"], ["https://data.delijn.be/stops/403201", "https://data.delijn.be/stops/403559"], ["https://data.delijn.be/stops/200115", "https://data.delijn.be/stops/203077"], ["https://data.delijn.be/stops/305122", "https://data.delijn.be/stops/305124"], ["https://data.delijn.be/stops/200185", "https://data.delijn.be/stops/203756"], ["https://data.delijn.be/stops/305964", "https://data.delijn.be/stops/305965"], ["https://data.delijn.be/stops/505746", "https://data.delijn.be/stops/509893"], ["https://data.delijn.be/stops/300420", "https://data.delijn.be/stops/302702"], ["https://data.delijn.be/stops/302363", "https://data.delijn.be/stops/307013"], ["https://data.delijn.be/stops/102237", "https://data.delijn.be/stops/104334"], ["https://data.delijn.be/stops/306770", "https://data.delijn.be/stops/306821"], ["https://data.delijn.be/stops/109498", "https://data.delijn.be/stops/109499"], ["https://data.delijn.be/stops/408228", "https://data.delijn.be/stops/408250"], ["https://data.delijn.be/stops/207568", "https://data.delijn.be/stops/207594"], ["https://data.delijn.be/stops/403907", "https://data.delijn.be/stops/404037"], ["https://data.delijn.be/stops/502236", "https://data.delijn.be/stops/505088"], ["https://data.delijn.be/stops/304409", "https://data.delijn.be/stops/304410"], ["https://data.delijn.be/stops/505368", "https://data.delijn.be/stops/509045"], ["https://data.delijn.be/stops/400768", "https://data.delijn.be/stops/400771"], ["https://data.delijn.be/stops/504087", "https://data.delijn.be/stops/504090"], ["https://data.delijn.be/stops/109837", "https://data.delijn.be/stops/109892"], ["https://data.delijn.be/stops/101550", "https://data.delijn.be/stops/109673"], ["https://data.delijn.be/stops/204426", "https://data.delijn.be/stops/205426"], ["https://data.delijn.be/stops/401548", "https://data.delijn.be/stops/401627"], ["https://data.delijn.be/stops/105281", "https://data.delijn.be/stops/109969"], ["https://data.delijn.be/stops/200191", "https://data.delijn.be/stops/201198"], ["https://data.delijn.be/stops/408120", "https://data.delijn.be/stops/408121"], ["https://data.delijn.be/stops/404012", "https://data.delijn.be/stops/404014"], ["https://data.delijn.be/stops/108825", "https://data.delijn.be/stops/108891"], ["https://data.delijn.be/stops/308770", "https://data.delijn.be/stops/308780"], ["https://data.delijn.be/stops/400209", "https://data.delijn.be/stops/400211"], ["https://data.delijn.be/stops/302555", "https://data.delijn.be/stops/302556"], ["https://data.delijn.be/stops/303713", "https://data.delijn.be/stops/303724"], ["https://data.delijn.be/stops/104908", "https://data.delijn.be/stops/107847"], ["https://data.delijn.be/stops/401340", "https://data.delijn.be/stops/410175"], ["https://data.delijn.be/stops/207181", "https://data.delijn.be/stops/207957"], ["https://data.delijn.be/stops/202747", "https://data.delijn.be/stops/207422"], ["https://data.delijn.be/stops/302595", "https://data.delijn.be/stops/302601"], ["https://data.delijn.be/stops/200431", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/101014", "https://data.delijn.be/stops/101133"], ["https://data.delijn.be/stops/207721", "https://data.delijn.be/stops/207733"], ["https://data.delijn.be/stops/406097", "https://data.delijn.be/stops/406983"], ["https://data.delijn.be/stops/505695", "https://data.delijn.be/stops/509880"], ["https://data.delijn.be/stops/507113", "https://data.delijn.be/stops/507145"], ["https://data.delijn.be/stops/206549", "https://data.delijn.be/stops/207486"], ["https://data.delijn.be/stops/102703", "https://data.delijn.be/stops/104747"], ["https://data.delijn.be/stops/407053", "https://data.delijn.be/stops/408001"], ["https://data.delijn.be/stops/503703", "https://data.delijn.be/stops/508703"], ["https://data.delijn.be/stops/503071", "https://data.delijn.be/stops/508071"], ["https://data.delijn.be/stops/503336", "https://data.delijn.be/stops/505635"], ["https://data.delijn.be/stops/503282", "https://data.delijn.be/stops/503288"], ["https://data.delijn.be/stops/405524", "https://data.delijn.be/stops/406736"], ["https://data.delijn.be/stops/208397", "https://data.delijn.be/stops/209272"], ["https://data.delijn.be/stops/302136", "https://data.delijn.be/stops/307081"], ["https://data.delijn.be/stops/406442", "https://data.delijn.be/stops/406443"], ["https://data.delijn.be/stops/301284", "https://data.delijn.be/stops/304691"], ["https://data.delijn.be/stops/308514", "https://data.delijn.be/stops/308517"], ["https://data.delijn.be/stops/504522", "https://data.delijn.be/stops/509522"], ["https://data.delijn.be/stops/505287", "https://data.delijn.be/stops/508544"], ["https://data.delijn.be/stops/204373", "https://data.delijn.be/stops/204765"], ["https://data.delijn.be/stops/105288", "https://data.delijn.be/stops/106491"], ["https://data.delijn.be/stops/200563", "https://data.delijn.be/stops/201563"], ["https://data.delijn.be/stops/403044", "https://data.delijn.be/stops/403048"], ["https://data.delijn.be/stops/302774", "https://data.delijn.be/stops/302775"], ["https://data.delijn.be/stops/103875", "https://data.delijn.be/stops/105525"], ["https://data.delijn.be/stops/301609", "https://data.delijn.be/stops/303936"], ["https://data.delijn.be/stops/502176", "https://data.delijn.be/stops/502182"], ["https://data.delijn.be/stops/107042", "https://data.delijn.be/stops/108237"], ["https://data.delijn.be/stops/207702", "https://data.delijn.be/stops/207739"], ["https://data.delijn.be/stops/405022", "https://data.delijn.be/stops/405064"], ["https://data.delijn.be/stops/200661", "https://data.delijn.be/stops/201835"], ["https://data.delijn.be/stops/206946", "https://data.delijn.be/stops/207678"], ["https://data.delijn.be/stops/302692", "https://data.delijn.be/stops/302699"], ["https://data.delijn.be/stops/402946", "https://data.delijn.be/stops/402947"], ["https://data.delijn.be/stops/301170", "https://data.delijn.be/stops/303214"], ["https://data.delijn.be/stops/503244", "https://data.delijn.be/stops/503253"], ["https://data.delijn.be/stops/200686", "https://data.delijn.be/stops/200688"], ["https://data.delijn.be/stops/303722", "https://data.delijn.be/stops/303742"], ["https://data.delijn.be/stops/505353", "https://data.delijn.be/stops/507099"], ["https://data.delijn.be/stops/303009", "https://data.delijn.be/stops/304927"], ["https://data.delijn.be/stops/306202", "https://data.delijn.be/stops/306203"], ["https://data.delijn.be/stops/502012", "https://data.delijn.be/stops/502344"], ["https://data.delijn.be/stops/402778", "https://data.delijn.be/stops/402784"], ["https://data.delijn.be/stops/200935", "https://data.delijn.be/stops/202713"], ["https://data.delijn.be/stops/103070", "https://data.delijn.be/stops/104123"], ["https://data.delijn.be/stops/203238", "https://data.delijn.be/stops/203239"], ["https://data.delijn.be/stops/502563", "https://data.delijn.be/stops/507224"], ["https://data.delijn.be/stops/202282", "https://data.delijn.be/stops/205067"], ["https://data.delijn.be/stops/501540", "https://data.delijn.be/stops/501547"], ["https://data.delijn.be/stops/201282", "https://data.delijn.be/stops/203193"], ["https://data.delijn.be/stops/105823", "https://data.delijn.be/stops/109516"], ["https://data.delijn.be/stops/307552", "https://data.delijn.be/stops/307554"], ["https://data.delijn.be/stops/103476", "https://data.delijn.be/stops/109214"], ["https://data.delijn.be/stops/204730", "https://data.delijn.be/stops/205732"], ["https://data.delijn.be/stops/407772", "https://data.delijn.be/stops/408851"], ["https://data.delijn.be/stops/209072", "https://data.delijn.be/stops/209073"], ["https://data.delijn.be/stops/206727", "https://data.delijn.be/stops/206734"], ["https://data.delijn.be/stops/404208", "https://data.delijn.be/stops/404217"], ["https://data.delijn.be/stops/503651", "https://data.delijn.be/stops/503950"], ["https://data.delijn.be/stops/102537", "https://data.delijn.be/stops/405723"], ["https://data.delijn.be/stops/105092", "https://data.delijn.be/stops/105093"], ["https://data.delijn.be/stops/103500", "https://data.delijn.be/stops/105435"], ["https://data.delijn.be/stops/200816", "https://data.delijn.be/stops/200880"], ["https://data.delijn.be/stops/207757", "https://data.delijn.be/stops/207760"], ["https://data.delijn.be/stops/102700", "https://data.delijn.be/stops/106015"], ["https://data.delijn.be/stops/302916", "https://data.delijn.be/stops/302917"], ["https://data.delijn.be/stops/302844", "https://data.delijn.be/stops/302845"], ["https://data.delijn.be/stops/105130", "https://data.delijn.be/stops/105586"], ["https://data.delijn.be/stops/300075", "https://data.delijn.be/stops/301809"], ["https://data.delijn.be/stops/300629", "https://data.delijn.be/stops/300630"], ["https://data.delijn.be/stops/504569", "https://data.delijn.be/stops/509568"], ["https://data.delijn.be/stops/505643", "https://data.delijn.be/stops/509941"], ["https://data.delijn.be/stops/206775", "https://data.delijn.be/stops/206853"], ["https://data.delijn.be/stops/504070", "https://data.delijn.be/stops/505375"], ["https://data.delijn.be/stops/104028", "https://data.delijn.be/stops/106991"], ["https://data.delijn.be/stops/502297", "https://data.delijn.be/stops/505725"], ["https://data.delijn.be/stops/302221", "https://data.delijn.be/stops/302243"], ["https://data.delijn.be/stops/305339", "https://data.delijn.be/stops/305354"], ["https://data.delijn.be/stops/201643", "https://data.delijn.be/stops/201941"], ["https://data.delijn.be/stops/502267", "https://data.delijn.be/stops/502807"], ["https://data.delijn.be/stops/204527", "https://data.delijn.be/stops/205731"], ["https://data.delijn.be/stops/301281", "https://data.delijn.be/stops/306250"], ["https://data.delijn.be/stops/208236", "https://data.delijn.be/stops/209118"], ["https://data.delijn.be/stops/103725", "https://data.delijn.be/stops/105285"], ["https://data.delijn.be/stops/400220", "https://data.delijn.be/stops/400223"], ["https://data.delijn.be/stops/405766", "https://data.delijn.be/stops/409754"], ["https://data.delijn.be/stops/305991", "https://data.delijn.be/stops/306633"], ["https://data.delijn.be/stops/201874", "https://data.delijn.be/stops/203020"], ["https://data.delijn.be/stops/301764", "https://data.delijn.be/stops/306877"], ["https://data.delijn.be/stops/406571", "https://data.delijn.be/stops/406589"], ["https://data.delijn.be/stops/300494", "https://data.delijn.be/stops/300495"], ["https://data.delijn.be/stops/305092", "https://data.delijn.be/stops/308099"], ["https://data.delijn.be/stops/506121", "https://data.delijn.be/stops/506125"], ["https://data.delijn.be/stops/201381", "https://data.delijn.be/stops/211044"], ["https://data.delijn.be/stops/207857", "https://data.delijn.be/stops/209625"], ["https://data.delijn.be/stops/509770", "https://data.delijn.be/stops/510022"], ["https://data.delijn.be/stops/101177", "https://data.delijn.be/stops/101178"], ["https://data.delijn.be/stops/400303", "https://data.delijn.be/stops/406768"], ["https://data.delijn.be/stops/301342", "https://data.delijn.be/stops/301388"], ["https://data.delijn.be/stops/400423", "https://data.delijn.be/stops/401600"], ["https://data.delijn.be/stops/501645", "https://data.delijn.be/stops/506645"], ["https://data.delijn.be/stops/507528", "https://data.delijn.be/stops/507548"], ["https://data.delijn.be/stops/307202", "https://data.delijn.be/stops/307607"], ["https://data.delijn.be/stops/304574", "https://data.delijn.be/stops/304576"], ["https://data.delijn.be/stops/408946", "https://data.delijn.be/stops/408966"], ["https://data.delijn.be/stops/200007", "https://data.delijn.be/stops/210070"], ["https://data.delijn.be/stops/202279", "https://data.delijn.be/stops/203669"], ["https://data.delijn.be/stops/308170", "https://data.delijn.be/stops/308171"], ["https://data.delijn.be/stops/203540", "https://data.delijn.be/stops/210009"], ["https://data.delijn.be/stops/102468", "https://data.delijn.be/stops/400274"], ["https://data.delijn.be/stops/201352", "https://data.delijn.be/stops/202399"], ["https://data.delijn.be/stops/408941", "https://data.delijn.be/stops/409245"], ["https://data.delijn.be/stops/508546", "https://data.delijn.be/stops/508602"], ["https://data.delijn.be/stops/400770", "https://data.delijn.be/stops/405267"], ["https://data.delijn.be/stops/208298", "https://data.delijn.be/stops/208317"], ["https://data.delijn.be/stops/401130", "https://data.delijn.be/stops/401131"], ["https://data.delijn.be/stops/405045", "https://data.delijn.be/stops/408154"], ["https://data.delijn.be/stops/204017", "https://data.delijn.be/stops/204710"], ["https://data.delijn.be/stops/207758", "https://data.delijn.be/stops/209185"], ["https://data.delijn.be/stops/508294", "https://data.delijn.be/stops/509842"], ["https://data.delijn.be/stops/102448", "https://data.delijn.be/stops/108140"], ["https://data.delijn.be/stops/405659", "https://data.delijn.be/stops/408746"], ["https://data.delijn.be/stops/404138", "https://data.delijn.be/stops/404139"], ["https://data.delijn.be/stops/406313", "https://data.delijn.be/stops/406406"], ["https://data.delijn.be/stops/402356", "https://data.delijn.be/stops/410149"], ["https://data.delijn.be/stops/108451", "https://data.delijn.be/stops/108452"], ["https://data.delijn.be/stops/302167", "https://data.delijn.be/stops/307114"], ["https://data.delijn.be/stops/208193", "https://data.delijn.be/stops/209148"], ["https://data.delijn.be/stops/502011", "https://data.delijn.be/stops/505742"], ["https://data.delijn.be/stops/307305", "https://data.delijn.be/stops/307306"], ["https://data.delijn.be/stops/202581", "https://data.delijn.be/stops/203581"], ["https://data.delijn.be/stops/402291", "https://data.delijn.be/stops/402293"], ["https://data.delijn.be/stops/301504", "https://data.delijn.be/stops/305669"], ["https://data.delijn.be/stops/207012", "https://data.delijn.be/stops/207989"], ["https://data.delijn.be/stops/501633", "https://data.delijn.be/stops/506422"], ["https://data.delijn.be/stops/101661", "https://data.delijn.be/stops/104932"], ["https://data.delijn.be/stops/200080", "https://data.delijn.be/stops/206933"], ["https://data.delijn.be/stops/108069", "https://data.delijn.be/stops/108457"], ["https://data.delijn.be/stops/302856", "https://data.delijn.be/stops/303076"], ["https://data.delijn.be/stops/101779", "https://data.delijn.be/stops/107710"], ["https://data.delijn.be/stops/401558", "https://data.delijn.be/stops/402034"], ["https://data.delijn.be/stops/105342", "https://data.delijn.be/stops/109618"], ["https://data.delijn.be/stops/206455", "https://data.delijn.be/stops/207413"], ["https://data.delijn.be/stops/109322", "https://data.delijn.be/stops/109323"], ["https://data.delijn.be/stops/208562", "https://data.delijn.be/stops/208596"], ["https://data.delijn.be/stops/203078", "https://data.delijn.be/stops/203447"], ["https://data.delijn.be/stops/204464", "https://data.delijn.be/stops/205463"], ["https://data.delijn.be/stops/200912", "https://data.delijn.be/stops/202690"], ["https://data.delijn.be/stops/204132", "https://data.delijn.be/stops/204133"], ["https://data.delijn.be/stops/402938", "https://data.delijn.be/stops/404073"], ["https://data.delijn.be/stops/407647", "https://data.delijn.be/stops/407676"], ["https://data.delijn.be/stops/107490", "https://data.delijn.be/stops/109382"], ["https://data.delijn.be/stops/505269", "https://data.delijn.be/stops/505271"], ["https://data.delijn.be/stops/402224", "https://data.delijn.be/stops/402225"], ["https://data.delijn.be/stops/403080", "https://data.delijn.be/stops/403274"], ["https://data.delijn.be/stops/300158", "https://data.delijn.be/stops/308789"], ["https://data.delijn.be/stops/203823", "https://data.delijn.be/stops/209716"], ["https://data.delijn.be/stops/102335", "https://data.delijn.be/stops/108830"], ["https://data.delijn.be/stops/201467", "https://data.delijn.be/stops/203403"], ["https://data.delijn.be/stops/305176", "https://data.delijn.be/stops/306967"], ["https://data.delijn.be/stops/407004", "https://data.delijn.be/stops/407005"], ["https://data.delijn.be/stops/209219", "https://data.delijn.be/stops/209220"], ["https://data.delijn.be/stops/101217", "https://data.delijn.be/stops/107943"], ["https://data.delijn.be/stops/302334", "https://data.delijn.be/stops/308119"], ["https://data.delijn.be/stops/407634", "https://data.delijn.be/stops/410298"], ["https://data.delijn.be/stops/301331", "https://data.delijn.be/stops/301388"], ["https://data.delijn.be/stops/400076", "https://data.delijn.be/stops/407025"], ["https://data.delijn.be/stops/502043", "https://data.delijn.be/stops/502591"], ["https://data.delijn.be/stops/200004", "https://data.delijn.be/stops/201994"], ["https://data.delijn.be/stops/404530", "https://data.delijn.be/stops/406527"], ["https://data.delijn.be/stops/202152", "https://data.delijn.be/stops/203170"], ["https://data.delijn.be/stops/203057", "https://data.delijn.be/stops/210073"], ["https://data.delijn.be/stops/102091", "https://data.delijn.be/stops/106805"], ["https://data.delijn.be/stops/303947", "https://data.delijn.be/stops/303957"], ["https://data.delijn.be/stops/208173", "https://data.delijn.be/stops/208759"], ["https://data.delijn.be/stops/107200", "https://data.delijn.be/stops/107602"], ["https://data.delijn.be/stops/502761", "https://data.delijn.be/stops/505648"], ["https://data.delijn.be/stops/504020", "https://data.delijn.be/stops/505204"], ["https://data.delijn.be/stops/206880", "https://data.delijn.be/stops/207915"], ["https://data.delijn.be/stops/503966", "https://data.delijn.be/stops/508572"], ["https://data.delijn.be/stops/407888", "https://data.delijn.be/stops/408178"], ["https://data.delijn.be/stops/208615", "https://data.delijn.be/stops/209615"], ["https://data.delijn.be/stops/400242", "https://data.delijn.be/stops/400244"], ["https://data.delijn.be/stops/105406", "https://data.delijn.be/stops/109850"], ["https://data.delijn.be/stops/502226", "https://data.delijn.be/stops/505145"], ["https://data.delijn.be/stops/401053", "https://data.delijn.be/stops/403749"], ["https://data.delijn.be/stops/502921", "https://data.delijn.be/stops/507619"], ["https://data.delijn.be/stops/306902", "https://data.delijn.be/stops/308094"], ["https://data.delijn.be/stops/401798", "https://data.delijn.be/stops/410356"], ["https://data.delijn.be/stops/302284", "https://data.delijn.be/stops/302288"], ["https://data.delijn.be/stops/504060", "https://data.delijn.be/stops/509058"], ["https://data.delijn.be/stops/108967", "https://data.delijn.be/stops/108969"], ["https://data.delijn.be/stops/403340", "https://data.delijn.be/stops/403521"], ["https://data.delijn.be/stops/504800", "https://data.delijn.be/stops/504804"], ["https://data.delijn.be/stops/505105", "https://data.delijn.be/stops/508117"], ["https://data.delijn.be/stops/401063", "https://data.delijn.be/stops/407104"], ["https://data.delijn.be/stops/403030", "https://data.delijn.be/stops/403086"], ["https://data.delijn.be/stops/408497", "https://data.delijn.be/stops/408608"], ["https://data.delijn.be/stops/500022", "https://data.delijn.be/stops/506195"], ["https://data.delijn.be/stops/502311", "https://data.delijn.be/stops/505677"], ["https://data.delijn.be/stops/507552", "https://data.delijn.be/stops/507557"], ["https://data.delijn.be/stops/206834", "https://data.delijn.be/stops/207832"], ["https://data.delijn.be/stops/102533", "https://data.delijn.be/stops/405723"], ["https://data.delijn.be/stops/505669", "https://data.delijn.be/stops/507176"], ["https://data.delijn.be/stops/402840", "https://data.delijn.be/stops/402892"], ["https://data.delijn.be/stops/502239", "https://data.delijn.be/stops/507735"], ["https://data.delijn.be/stops/401086", "https://data.delijn.be/stops/401094"], ["https://data.delijn.be/stops/211060", "https://data.delijn.be/stops/211061"], ["https://data.delijn.be/stops/504175", "https://data.delijn.be/stops/504477"], ["https://data.delijn.be/stops/505501", "https://data.delijn.be/stops/505603"], ["https://data.delijn.be/stops/206056", "https://data.delijn.be/stops/217003"], ["https://data.delijn.be/stops/500009", "https://data.delijn.be/stops/505437"], ["https://data.delijn.be/stops/106226", "https://data.delijn.be/stops/109131"], ["https://data.delijn.be/stops/504202", "https://data.delijn.be/stops/509262"], ["https://data.delijn.be/stops/304421", "https://data.delijn.be/stops/307393"], ["https://data.delijn.be/stops/101358", "https://data.delijn.be/stops/102189"], ["https://data.delijn.be/stops/101537", "https://data.delijn.be/stops/103014"], ["https://data.delijn.be/stops/408003", "https://data.delijn.be/stops/308198"], ["https://data.delijn.be/stops/503063", "https://data.delijn.be/stops/505381"], ["https://data.delijn.be/stops/202625", "https://data.delijn.be/stops/203624"], ["https://data.delijn.be/stops/203928", "https://data.delijn.be/stops/204810"], ["https://data.delijn.be/stops/103209", "https://data.delijn.be/stops/107790"], ["https://data.delijn.be/stops/206217", "https://data.delijn.be/stops/206817"], ["https://data.delijn.be/stops/102453", "https://data.delijn.be/stops/108318"], ["https://data.delijn.be/stops/202361", "https://data.delijn.be/stops/210852"], ["https://data.delijn.be/stops/206336", "https://data.delijn.be/stops/206365"], ["https://data.delijn.be/stops/102302", "https://data.delijn.be/stops/109505"], ["https://data.delijn.be/stops/301041", "https://data.delijn.be/stops/301059"], ["https://data.delijn.be/stops/302473", "https://data.delijn.be/stops/302476"], ["https://data.delijn.be/stops/202431", "https://data.delijn.be/stops/203438"], ["https://data.delijn.be/stops/202259", "https://data.delijn.be/stops/203104"], ["https://data.delijn.be/stops/502418", "https://data.delijn.be/stops/502749"], ["https://data.delijn.be/stops/400956", "https://data.delijn.be/stops/406875"], ["https://data.delijn.be/stops/106961", "https://data.delijn.be/stops/106963"], ["https://data.delijn.be/stops/303343", "https://data.delijn.be/stops/304713"], ["https://data.delijn.be/stops/207294", "https://data.delijn.be/stops/207315"], ["https://data.delijn.be/stops/105706", "https://data.delijn.be/stops/106069"], ["https://data.delijn.be/stops/505918", "https://data.delijn.be/stops/509242"], ["https://data.delijn.be/stops/200912", "https://data.delijn.be/stops/203260"], ["https://data.delijn.be/stops/504231", "https://data.delijn.be/stops/504235"], ["https://data.delijn.be/stops/202272", "https://data.delijn.be/stops/203661"], ["https://data.delijn.be/stops/400077", "https://data.delijn.be/stops/400141"], ["https://data.delijn.be/stops/205983", "https://data.delijn.be/stops/209431"], ["https://data.delijn.be/stops/406112", "https://data.delijn.be/stops/406113"], ["https://data.delijn.be/stops/410294", "https://data.delijn.be/stops/410295"], ["https://data.delijn.be/stops/200437", "https://data.delijn.be/stops/201135"], ["https://data.delijn.be/stops/301027", "https://data.delijn.be/stops/301034"], ["https://data.delijn.be/stops/101880", "https://data.delijn.be/stops/104685"], ["https://data.delijn.be/stops/305377", "https://data.delijn.be/stops/305390"], ["https://data.delijn.be/stops/407740", "https://data.delijn.be/stops/407741"], ["https://data.delijn.be/stops/409051", "https://data.delijn.be/stops/409211"], ["https://data.delijn.be/stops/301996", "https://data.delijn.be/stops/302001"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/305344"], ["https://data.delijn.be/stops/402526", "https://data.delijn.be/stops/402545"], ["https://data.delijn.be/stops/300553", "https://data.delijn.be/stops/307859"], ["https://data.delijn.be/stops/206348", "https://data.delijn.be/stops/207348"], ["https://data.delijn.be/stops/301821", "https://data.delijn.be/stops/301823"], ["https://data.delijn.be/stops/302252", "https://data.delijn.be/stops/306371"], ["https://data.delijn.be/stops/200972", "https://data.delijn.be/stops/203862"], ["https://data.delijn.be/stops/203047", "https://data.delijn.be/stops/203246"], ["https://data.delijn.be/stops/303364", "https://data.delijn.be/stops/303365"], ["https://data.delijn.be/stops/102131", "https://data.delijn.be/stops/105723"], ["https://data.delijn.be/stops/200732", "https://data.delijn.be/stops/203625"], ["https://data.delijn.be/stops/402717", "https://data.delijn.be/stops/402720"], ["https://data.delijn.be/stops/102857", "https://data.delijn.be/stops/204624"], ["https://data.delijn.be/stops/301467", "https://data.delijn.be/stops/305664"], ["https://data.delijn.be/stops/207706", "https://data.delijn.be/stops/207742"], ["https://data.delijn.be/stops/404333", "https://data.delijn.be/stops/404949"], ["https://data.delijn.be/stops/502058", "https://data.delijn.be/stops/507441"], ["https://data.delijn.be/stops/407337", "https://data.delijn.be/stops/409778"], ["https://data.delijn.be/stops/101574", "https://data.delijn.be/stops/105468"], ["https://data.delijn.be/stops/102419", "https://data.delijn.be/stops/102421"], ["https://data.delijn.be/stops/108534", "https://data.delijn.be/stops/108614"], ["https://data.delijn.be/stops/400300", "https://data.delijn.be/stops/400302"], ["https://data.delijn.be/stops/305840", "https://data.delijn.be/stops/308619"], ["https://data.delijn.be/stops/501489", "https://data.delijn.be/stops/506489"], ["https://data.delijn.be/stops/406527", "https://data.delijn.be/stops/409261"], ["https://data.delijn.be/stops/103718", "https://data.delijn.be/stops/108810"], ["https://data.delijn.be/stops/200974", "https://data.delijn.be/stops/209625"], ["https://data.delijn.be/stops/105711", "https://data.delijn.be/stops/106067"], ["https://data.delijn.be/stops/404398", "https://data.delijn.be/stops/404400"], ["https://data.delijn.be/stops/502611", "https://data.delijn.be/stops/509880"], ["https://data.delijn.be/stops/300446", "https://data.delijn.be/stops/301258"], ["https://data.delijn.be/stops/201397", "https://data.delijn.be/stops/209703"], ["https://data.delijn.be/stops/300891", "https://data.delijn.be/stops/301793"], ["https://data.delijn.be/stops/304692", "https://data.delijn.be/stops/307254"], ["https://data.delijn.be/stops/107300", "https://data.delijn.be/stops/109025"], ["https://data.delijn.be/stops/507492", "https://data.delijn.be/stops/507506"], ["https://data.delijn.be/stops/301862", "https://data.delijn.be/stops/301863"], ["https://data.delijn.be/stops/504114", "https://data.delijn.be/stops/509114"], ["https://data.delijn.be/stops/305592", "https://data.delijn.be/stops/305593"], ["https://data.delijn.be/stops/208300", "https://data.delijn.be/stops/209375"], ["https://data.delijn.be/stops/405822", "https://data.delijn.be/stops/409416"], ["https://data.delijn.be/stops/400500", "https://data.delijn.be/stops/402641"], ["https://data.delijn.be/stops/208844", "https://data.delijn.be/stops/210113"], ["https://data.delijn.be/stops/504941", "https://data.delijn.be/stops/509941"], ["https://data.delijn.be/stops/207991", "https://data.delijn.be/stops/306973"], ["https://data.delijn.be/stops/502492", "https://data.delijn.be/stops/502506"], ["https://data.delijn.be/stops/102249", "https://data.delijn.be/stops/105899"], ["https://data.delijn.be/stops/403037", "https://data.delijn.be/stops/403863"], ["https://data.delijn.be/stops/505707", "https://data.delijn.be/stops/509226"], ["https://data.delijn.be/stops/103378", "https://data.delijn.be/stops/103925"], ["https://data.delijn.be/stops/507292", "https://data.delijn.be/stops/507295"], ["https://data.delijn.be/stops/503570", "https://data.delijn.be/stops/508567"], ["https://data.delijn.be/stops/200027", "https://data.delijn.be/stops/201026"], ["https://data.delijn.be/stops/400374", "https://data.delijn.be/stops/400436"], ["https://data.delijn.be/stops/502035", "https://data.delijn.be/stops/507627"], ["https://data.delijn.be/stops/503135", "https://data.delijn.be/stops/506945"], ["https://data.delijn.be/stops/406042", "https://data.delijn.be/stops/407779"], ["https://data.delijn.be/stops/406551", "https://data.delijn.be/stops/406566"], ["https://data.delijn.be/stops/201304", "https://data.delijn.be/stops/201601"], ["https://data.delijn.be/stops/206085", "https://data.delijn.be/stops/207086"], ["https://data.delijn.be/stops/101167", "https://data.delijn.be/stops/101310"], ["https://data.delijn.be/stops/408812", "https://data.delijn.be/stops/408815"], ["https://data.delijn.be/stops/206724", "https://data.delijn.be/stops/206734"], ["https://data.delijn.be/stops/406929", "https://data.delijn.be/stops/406946"], ["https://data.delijn.be/stops/107968", "https://data.delijn.be/stops/107969"], ["https://data.delijn.be/stops/503039", "https://data.delijn.be/stops/503042"], ["https://data.delijn.be/stops/406198", "https://data.delijn.be/stops/406201"], ["https://data.delijn.be/stops/305379", "https://data.delijn.be/stops/305418"], ["https://data.delijn.be/stops/502140", "https://data.delijn.be/stops/502767"], ["https://data.delijn.be/stops/301658", "https://data.delijn.be/stops/306301"], ["https://data.delijn.be/stops/304443", "https://data.delijn.be/stops/304463"], ["https://data.delijn.be/stops/404979", "https://data.delijn.be/stops/410062"], ["https://data.delijn.be/stops/206152", "https://data.delijn.be/stops/207907"], ["https://data.delijn.be/stops/300771", "https://data.delijn.be/stops/302402"], ["https://data.delijn.be/stops/200290", "https://data.delijn.be/stops/211082"], ["https://data.delijn.be/stops/200914", "https://data.delijn.be/stops/203089"], ["https://data.delijn.be/stops/500050", "https://data.delijn.be/stops/500053"], ["https://data.delijn.be/stops/305895", "https://data.delijn.be/stops/305896"], ["https://data.delijn.be/stops/106416", "https://data.delijn.be/stops/106418"], ["https://data.delijn.be/stops/108062", "https://data.delijn.be/stops/108066"], ["https://data.delijn.be/stops/503305", "https://data.delijn.be/stops/503310"], ["https://data.delijn.be/stops/101754", "https://data.delijn.be/stops/101755"], ["https://data.delijn.be/stops/304822", "https://data.delijn.be/stops/304825"], ["https://data.delijn.be/stops/200416", "https://data.delijn.be/stops/201010"], ["https://data.delijn.be/stops/205711", "https://data.delijn.be/stops/205722"], ["https://data.delijn.be/stops/408340", "https://data.delijn.be/stops/408344"], ["https://data.delijn.be/stops/400586", "https://data.delijn.be/stops/400587"], ["https://data.delijn.be/stops/405321", "https://data.delijn.be/stops/405327"], ["https://data.delijn.be/stops/207047", "https://data.delijn.be/stops/207801"], ["https://data.delijn.be/stops/408828", "https://data.delijn.be/stops/408829"], ["https://data.delijn.be/stops/207530", "https://data.delijn.be/stops/207531"], ["https://data.delijn.be/stops/403292", "https://data.delijn.be/stops/403405"], ["https://data.delijn.be/stops/504382", "https://data.delijn.be/stops/509381"], ["https://data.delijn.be/stops/409361", "https://data.delijn.be/stops/409440"], ["https://data.delijn.be/stops/103284", "https://data.delijn.be/stops/106129"], ["https://data.delijn.be/stops/301022", "https://data.delijn.be/stops/301049"], ["https://data.delijn.be/stops/504589", "https://data.delijn.be/stops/505537"], ["https://data.delijn.be/stops/201479", "https://data.delijn.be/stops/210072"], ["https://data.delijn.be/stops/101776", "https://data.delijn.be/stops/107719"], ["https://data.delijn.be/stops/503095", "https://data.delijn.be/stops/508974"], ["https://data.delijn.be/stops/503243", "https://data.delijn.be/stops/509766"], ["https://data.delijn.be/stops/201327", "https://data.delijn.be/stops/202200"], ["https://data.delijn.be/stops/405445", "https://data.delijn.be/stops/408795"], ["https://data.delijn.be/stops/509412", "https://data.delijn.be/stops/509434"], ["https://data.delijn.be/stops/501733", "https://data.delijn.be/stops/506690"], ["https://data.delijn.be/stops/105329", "https://data.delijn.be/stops/204025"], ["https://data.delijn.be/stops/400756", "https://data.delijn.be/stops/409568"], ["https://data.delijn.be/stops/403378", "https://data.delijn.be/stops/410220"], ["https://data.delijn.be/stops/300365", "https://data.delijn.be/stops/300369"], ["https://data.delijn.be/stops/204495", "https://data.delijn.be/stops/204530"], ["https://data.delijn.be/stops/408571", "https://data.delijn.be/stops/408788"], ["https://data.delijn.be/stops/301072", "https://data.delijn.be/stops/301073"], ["https://data.delijn.be/stops/108610", "https://data.delijn.be/stops/109085"], ["https://data.delijn.be/stops/206069", "https://data.delijn.be/stops/206917"], ["https://data.delijn.be/stops/503571", "https://data.delijn.be/stops/508556"], ["https://data.delijn.be/stops/301557", "https://data.delijn.be/stops/308088"], ["https://data.delijn.be/stops/201271", "https://data.delijn.be/stops/201371"], ["https://data.delijn.be/stops/204259", "https://data.delijn.be/stops/204466"], ["https://data.delijn.be/stops/501050", "https://data.delijn.be/stops/507728"], ["https://data.delijn.be/stops/203731", "https://data.delijn.be/stops/203733"], ["https://data.delijn.be/stops/504787", "https://data.delijn.be/stops/508475"], ["https://data.delijn.be/stops/400985", "https://data.delijn.be/stops/407179"], ["https://data.delijn.be/stops/503267", "https://data.delijn.be/stops/508274"], ["https://data.delijn.be/stops/505096", "https://data.delijn.be/stops/505125"], ["https://data.delijn.be/stops/101833", "https://data.delijn.be/stops/108236"], ["https://data.delijn.be/stops/206112", "https://data.delijn.be/stops/207906"], ["https://data.delijn.be/stops/503450", "https://data.delijn.be/stops/508451"], ["https://data.delijn.be/stops/206182", "https://data.delijn.be/stops/207184"], ["https://data.delijn.be/stops/206038", "https://data.delijn.be/stops/207216"], ["https://data.delijn.be/stops/304630", "https://data.delijn.be/stops/306171"], ["https://data.delijn.be/stops/108553", "https://data.delijn.be/stops/108556"], ["https://data.delijn.be/stops/501046", "https://data.delijn.be/stops/501048"], ["https://data.delijn.be/stops/300880", "https://data.delijn.be/stops/301811"], ["https://data.delijn.be/stops/202687", "https://data.delijn.be/stops/203687"], ["https://data.delijn.be/stops/204768", "https://data.delijn.be/stops/205398"], ["https://data.delijn.be/stops/201966", "https://data.delijn.be/stops/208952"], ["https://data.delijn.be/stops/303358", "https://data.delijn.be/stops/307135"], ["https://data.delijn.be/stops/404190", "https://data.delijn.be/stops/410213"], ["https://data.delijn.be/stops/206691", "https://data.delijn.be/stops/207873"], ["https://data.delijn.be/stops/200301", "https://data.delijn.be/stops/201946"], ["https://data.delijn.be/stops/201101", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/109495", "https://data.delijn.be/stops/109499"], ["https://data.delijn.be/stops/503503", "https://data.delijn.be/stops/508500"], ["https://data.delijn.be/stops/102086", "https://data.delijn.be/stops/109743"], ["https://data.delijn.be/stops/304833", "https://data.delijn.be/stops/304876"], ["https://data.delijn.be/stops/206644", "https://data.delijn.be/stops/207645"], ["https://data.delijn.be/stops/400332", "https://data.delijn.be/stops/400333"], ["https://data.delijn.be/stops/402524", "https://data.delijn.be/stops/402601"], ["https://data.delijn.be/stops/300074", "https://data.delijn.be/stops/304647"], ["https://data.delijn.be/stops/509059", "https://data.delijn.be/stops/509524"], ["https://data.delijn.be/stops/403619", "https://data.delijn.be/stops/403649"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/506170"], ["https://data.delijn.be/stops/504404", "https://data.delijn.be/stops/509416"], ["https://data.delijn.be/stops/201389", "https://data.delijn.be/stops/201396"], ["https://data.delijn.be/stops/105170", "https://data.delijn.be/stops/107214"], ["https://data.delijn.be/stops/305266", "https://data.delijn.be/stops/305329"], ["https://data.delijn.be/stops/305066", "https://data.delijn.be/stops/305067"], ["https://data.delijn.be/stops/509794", "https://data.delijn.be/stops/509795"], ["https://data.delijn.be/stops/200172", "https://data.delijn.be/stops/201172"], ["https://data.delijn.be/stops/200739", "https://data.delijn.be/stops/202600"], ["https://data.delijn.be/stops/300822", "https://data.delijn.be/stops/301792"], ["https://data.delijn.be/stops/106367", "https://data.delijn.be/stops/106369"], ["https://data.delijn.be/stops/304905", "https://data.delijn.be/stops/306408"], ["https://data.delijn.be/stops/502542", "https://data.delijn.be/stops/505090"], ["https://data.delijn.be/stops/301007", "https://data.delijn.be/stops/304641"], ["https://data.delijn.be/stops/305384", "https://data.delijn.be/stops/305390"], ["https://data.delijn.be/stops/109843", "https://data.delijn.be/stops/109844"], ["https://data.delijn.be/stops/303238", "https://data.delijn.be/stops/306707"], ["https://data.delijn.be/stops/502031", "https://data.delijn.be/stops/502055"], ["https://data.delijn.be/stops/307732", "https://data.delijn.be/stops/307811"], ["https://data.delijn.be/stops/402496", "https://data.delijn.be/stops/402498"], ["https://data.delijn.be/stops/505410", "https://data.delijn.be/stops/509050"], ["https://data.delijn.be/stops/403039", "https://data.delijn.be/stops/404706"], ["https://data.delijn.be/stops/102224", "https://data.delijn.be/stops/102226"], ["https://data.delijn.be/stops/503239", "https://data.delijn.be/stops/503262"], ["https://data.delijn.be/stops/101939", "https://data.delijn.be/stops/105100"], ["https://data.delijn.be/stops/200360", "https://data.delijn.be/stops/209908"], ["https://data.delijn.be/stops/501100", "https://data.delijn.be/stops/505148"], ["https://data.delijn.be/stops/103059", "https://data.delijn.be/stops/103061"], ["https://data.delijn.be/stops/304126", "https://data.delijn.be/stops/307551"], ["https://data.delijn.be/stops/101484", "https://data.delijn.be/stops/108744"], ["https://data.delijn.be/stops/105868", "https://data.delijn.be/stops/105869"], ["https://data.delijn.be/stops/400703", "https://data.delijn.be/stops/404649"], ["https://data.delijn.be/stops/210011", "https://data.delijn.be/stops/502277"], ["https://data.delijn.be/stops/207864", "https://data.delijn.be/stops/208457"], ["https://data.delijn.be/stops/301327", "https://data.delijn.be/stops/306653"], ["https://data.delijn.be/stops/300774", "https://data.delijn.be/stops/300786"], ["https://data.delijn.be/stops/302791", "https://data.delijn.be/stops/307456"], ["https://data.delijn.be/stops/106099", "https://data.delijn.be/stops/106147"], ["https://data.delijn.be/stops/403125", "https://data.delijn.be/stops/403129"], ["https://data.delijn.be/stops/308516", "https://data.delijn.be/stops/308690"], ["https://data.delijn.be/stops/306940", "https://data.delijn.be/stops/307945"], ["https://data.delijn.be/stops/206055", "https://data.delijn.be/stops/206297"], ["https://data.delijn.be/stops/107887", "https://data.delijn.be/stops/107891"], ["https://data.delijn.be/stops/305532", "https://data.delijn.be/stops/307044"], ["https://data.delijn.be/stops/206915", "https://data.delijn.be/stops/207354"], ["https://data.delijn.be/stops/107560", "https://data.delijn.be/stops/109853"], ["https://data.delijn.be/stops/406740", "https://data.delijn.be/stops/406741"], ["https://data.delijn.be/stops/103478", "https://data.delijn.be/stops/109219"], ["https://data.delijn.be/stops/102280", "https://data.delijn.be/stops/103352"], ["https://data.delijn.be/stops/200395", "https://data.delijn.be/stops/209496"], ["https://data.delijn.be/stops/202298", "https://data.delijn.be/stops/203279"], ["https://data.delijn.be/stops/403609", "https://data.delijn.be/stops/403612"], ["https://data.delijn.be/stops/408235", "https://data.delijn.be/stops/408308"], ["https://data.delijn.be/stops/200019", "https://data.delijn.be/stops/201019"], ["https://data.delijn.be/stops/405706", "https://data.delijn.be/stops/405720"], ["https://data.delijn.be/stops/209270", "https://data.delijn.be/stops/209271"], ["https://data.delijn.be/stops/204193", "https://data.delijn.be/stops/204230"], ["https://data.delijn.be/stops/207396", "https://data.delijn.be/stops/207397"], ["https://data.delijn.be/stops/105350", "https://data.delijn.be/stops/105780"], ["https://data.delijn.be/stops/303643", "https://data.delijn.be/stops/304522"], ["https://data.delijn.be/stops/400775", "https://data.delijn.be/stops/403580"], ["https://data.delijn.be/stops/503178", "https://data.delijn.be/stops/508264"], ["https://data.delijn.be/stops/200269", "https://data.delijn.be/stops/201083"], ["https://data.delijn.be/stops/401832", "https://data.delijn.be/stops/401833"], ["https://data.delijn.be/stops/206236", "https://data.delijn.be/stops/207236"], ["https://data.delijn.be/stops/102075", "https://data.delijn.be/stops/102320"], ["https://data.delijn.be/stops/403493", "https://data.delijn.be/stops/407774"], ["https://data.delijn.be/stops/504368", "https://data.delijn.be/stops/505130"], ["https://data.delijn.be/stops/107542", "https://data.delijn.be/stops/107545"], ["https://data.delijn.be/stops/508524", "https://data.delijn.be/stops/508526"], ["https://data.delijn.be/stops/401838", "https://data.delijn.be/stops/401839"], ["https://data.delijn.be/stops/204191", "https://data.delijn.be/stops/205204"], ["https://data.delijn.be/stops/407621", "https://data.delijn.be/stops/407627"], ["https://data.delijn.be/stops/400213", "https://data.delijn.be/stops/408489"], ["https://data.delijn.be/stops/300415", "https://data.delijn.be/stops/300439"], ["https://data.delijn.be/stops/204425", "https://data.delijn.be/stops/204743"], ["https://data.delijn.be/stops/503897", "https://data.delijn.be/stops/508897"], ["https://data.delijn.be/stops/105034", "https://data.delijn.be/stops/305831"], ["https://data.delijn.be/stops/400437", "https://data.delijn.be/stops/400438"], ["https://data.delijn.be/stops/206267", "https://data.delijn.be/stops/207015"], ["https://data.delijn.be/stops/205239", "https://data.delijn.be/stops/207896"], ["https://data.delijn.be/stops/106750", "https://data.delijn.be/stops/106751"], ["https://data.delijn.be/stops/202938", "https://data.delijn.be/stops/203816"], ["https://data.delijn.be/stops/407687", "https://data.delijn.be/stops/407699"], ["https://data.delijn.be/stops/303368", "https://data.delijn.be/stops/307137"], ["https://data.delijn.be/stops/302708", "https://data.delijn.be/stops/308835"], ["https://data.delijn.be/stops/209251", "https://data.delijn.be/stops/209252"], ["https://data.delijn.be/stops/203187", "https://data.delijn.be/stops/203188"], ["https://data.delijn.be/stops/403053", "https://data.delijn.be/stops/403057"], ["https://data.delijn.be/stops/104429", "https://data.delijn.be/stops/107369"], ["https://data.delijn.be/stops/209560", "https://data.delijn.be/stops/209690"], ["https://data.delijn.be/stops/202825", "https://data.delijn.be/stops/203824"], ["https://data.delijn.be/stops/102025", "https://data.delijn.be/stops/108755"], ["https://data.delijn.be/stops/206130", "https://data.delijn.be/stops/206139"], ["https://data.delijn.be/stops/507822", "https://data.delijn.be/stops/507917"], ["https://data.delijn.be/stops/200965", "https://data.delijn.be/stops/203928"], ["https://data.delijn.be/stops/306591", "https://data.delijn.be/stops/308441"], ["https://data.delijn.be/stops/400053", "https://data.delijn.be/stops/409160"], ["https://data.delijn.be/stops/301635", "https://data.delijn.be/stops/301639"], ["https://data.delijn.be/stops/106201", "https://data.delijn.be/stops/107455"], ["https://data.delijn.be/stops/207941", "https://data.delijn.be/stops/209621"], ["https://data.delijn.be/stops/503354", "https://data.delijn.be/stops/503420"], ["https://data.delijn.be/stops/107882", "https://data.delijn.be/stops/107884"], ["https://data.delijn.be/stops/504648", "https://data.delijn.be/stops/509647"], ["https://data.delijn.be/stops/108748", "https://data.delijn.be/stops/108749"], ["https://data.delijn.be/stops/305973", "https://data.delijn.be/stops/305974"], ["https://data.delijn.be/stops/504490", "https://data.delijn.be/stops/504497"], ["https://data.delijn.be/stops/206174", "https://data.delijn.be/stops/207010"], ["https://data.delijn.be/stops/300133", "https://data.delijn.be/stops/304999"], ["https://data.delijn.be/stops/505342", "https://data.delijn.be/stops/509637"], ["https://data.delijn.be/stops/404838", "https://data.delijn.be/stops/409347"], ["https://data.delijn.be/stops/500012", "https://data.delijn.be/stops/507375"], ["https://data.delijn.be/stops/503606", "https://data.delijn.be/stops/505845"], ["https://data.delijn.be/stops/204128", "https://data.delijn.be/stops/205129"], ["https://data.delijn.be/stops/409030", "https://data.delijn.be/stops/409045"], ["https://data.delijn.be/stops/303764", "https://data.delijn.be/stops/303766"], ["https://data.delijn.be/stops/306367", "https://data.delijn.be/stops/307592"], ["https://data.delijn.be/stops/304420", "https://data.delijn.be/stops/307420"], ["https://data.delijn.be/stops/202743", "https://data.delijn.be/stops/202812"], ["https://data.delijn.be/stops/502735", "https://data.delijn.be/stops/507735"], ["https://data.delijn.be/stops/302130", "https://data.delijn.be/stops/302131"], ["https://data.delijn.be/stops/501156", "https://data.delijn.be/stops/505619"], ["https://data.delijn.be/stops/203582", "https://data.delijn.be/stops/203583"], ["https://data.delijn.be/stops/306560", "https://data.delijn.be/stops/306561"], ["https://data.delijn.be/stops/303379", "https://data.delijn.be/stops/308794"], ["https://data.delijn.be/stops/505319", "https://data.delijn.be/stops/507482"], ["https://data.delijn.be/stops/501319", "https://data.delijn.be/stops/506517"], ["https://data.delijn.be/stops/107413", "https://data.delijn.be/stops/107414"], ["https://data.delijn.be/stops/303460", "https://data.delijn.be/stops/303488"], ["https://data.delijn.be/stops/501776", "https://data.delijn.be/stops/506157"], ["https://data.delijn.be/stops/206101", "https://data.delijn.be/stops/207104"], ["https://data.delijn.be/stops/507289", "https://data.delijn.be/stops/507295"], ["https://data.delijn.be/stops/406729", "https://data.delijn.be/stops/408456"], ["https://data.delijn.be/stops/401342", "https://data.delijn.be/stops/401343"], ["https://data.delijn.be/stops/302184", "https://data.delijn.be/stops/302185"], ["https://data.delijn.be/stops/400915", "https://data.delijn.be/stops/400964"], ["https://data.delijn.be/stops/502148", "https://data.delijn.be/stops/507148"], ["https://data.delijn.be/stops/300907", "https://data.delijn.be/stops/301107"], ["https://data.delijn.be/stops/306924", "https://data.delijn.be/stops/306926"], ["https://data.delijn.be/stops/202109", "https://data.delijn.be/stops/204598"], ["https://data.delijn.be/stops/202525", "https://data.delijn.be/stops/202961"], ["https://data.delijn.be/stops/505687", "https://data.delijn.be/stops/507707"], ["https://data.delijn.be/stops/408354", "https://data.delijn.be/stops/408391"], ["https://data.delijn.be/stops/502166", "https://data.delijn.be/stops/502576"], ["https://data.delijn.be/stops/407399", "https://data.delijn.be/stops/409873"], ["https://data.delijn.be/stops/401402", "https://data.delijn.be/stops/410154"], ["https://data.delijn.be/stops/403144", "https://data.delijn.be/stops/407584"], ["https://data.delijn.be/stops/406051", "https://data.delijn.be/stops/406388"], ["https://data.delijn.be/stops/401759", "https://data.delijn.be/stops/406824"], ["https://data.delijn.be/stops/407800", "https://data.delijn.be/stops/407807"], ["https://data.delijn.be/stops/504575", "https://data.delijn.be/stops/509574"], ["https://data.delijn.be/stops/502050", "https://data.delijn.be/stops/507050"], ["https://data.delijn.be/stops/405885", "https://data.delijn.be/stops/409687"], ["https://data.delijn.be/stops/408565", "https://data.delijn.be/stops/410090"], ["https://data.delijn.be/stops/106623", "https://data.delijn.be/stops/108016"], ["https://data.delijn.be/stops/504780", "https://data.delijn.be/stops/505937"], ["https://data.delijn.be/stops/400330", "https://data.delijn.be/stops/400357"], ["https://data.delijn.be/stops/202333", "https://data.delijn.be/stops/507315"], ["https://data.delijn.be/stops/103115", "https://data.delijn.be/stops/103785"], ["https://data.delijn.be/stops/206602", "https://data.delijn.be/stops/207602"], ["https://data.delijn.be/stops/201153", "https://data.delijn.be/stops/201154"], ["https://data.delijn.be/stops/504524", "https://data.delijn.be/stops/509526"], ["https://data.delijn.be/stops/404770", "https://data.delijn.be/stops/410051"], ["https://data.delijn.be/stops/302437", "https://data.delijn.be/stops/308814"], ["https://data.delijn.be/stops/101975", "https://data.delijn.be/stops/108930"], ["https://data.delijn.be/stops/302209", "https://data.delijn.be/stops/308102"], ["https://data.delijn.be/stops/103684", "https://data.delijn.be/stops/106314"], ["https://data.delijn.be/stops/200265", "https://data.delijn.be/stops/201433"], ["https://data.delijn.be/stops/502748", "https://data.delijn.be/stops/505695"], ["https://data.delijn.be/stops/107459", "https://data.delijn.be/stops/109194"], ["https://data.delijn.be/stops/401012", "https://data.delijn.be/stops/401014"], ["https://data.delijn.be/stops/202869", "https://data.delijn.be/stops/203868"], ["https://data.delijn.be/stops/404880", "https://data.delijn.be/stops/404881"], ["https://data.delijn.be/stops/405868", "https://data.delijn.be/stops/407259"], ["https://data.delijn.be/stops/305406", "https://data.delijn.be/stops/333453"], ["https://data.delijn.be/stops/303440", "https://data.delijn.be/stops/304841"], ["https://data.delijn.be/stops/305692", "https://data.delijn.be/stops/305693"], ["https://data.delijn.be/stops/205152", "https://data.delijn.be/stops/205595"], ["https://data.delijn.be/stops/102529", "https://data.delijn.be/stops/408253"], ["https://data.delijn.be/stops/206758", "https://data.delijn.be/stops/207515"], ["https://data.delijn.be/stops/307910", "https://data.delijn.be/stops/308177"], ["https://data.delijn.be/stops/405325", "https://data.delijn.be/stops/405327"], ["https://data.delijn.be/stops/304813", "https://data.delijn.be/stops/307881"], ["https://data.delijn.be/stops/502262", "https://data.delijn.be/stops/507921"], ["https://data.delijn.be/stops/400781", "https://data.delijn.be/stops/409664"], ["https://data.delijn.be/stops/401340", "https://data.delijn.be/stops/406693"], ["https://data.delijn.be/stops/404506", "https://data.delijn.be/stops/404508"], ["https://data.delijn.be/stops/503163", "https://data.delijn.be/stops/508062"], ["https://data.delijn.be/stops/106117", "https://data.delijn.be/stops/106118"], ["https://data.delijn.be/stops/306141", "https://data.delijn.be/stops/306142"], ["https://data.delijn.be/stops/401876", "https://data.delijn.be/stops/406888"], ["https://data.delijn.be/stops/504865", "https://data.delijn.be/stops/508118"], ["https://data.delijn.be/stops/407241", "https://data.delijn.be/stops/407467"], ["https://data.delijn.be/stops/502453", "https://data.delijn.be/stops/502463"], ["https://data.delijn.be/stops/301456", "https://data.delijn.be/stops/301457"], ["https://data.delijn.be/stops/202303", "https://data.delijn.be/stops/203304"], ["https://data.delijn.be/stops/207944", "https://data.delijn.be/stops/209612"], ["https://data.delijn.be/stops/406804", "https://data.delijn.be/stops/406810"], ["https://data.delijn.be/stops/503829", "https://data.delijn.be/stops/508829"], ["https://data.delijn.be/stops/108029", "https://data.delijn.be/stops/108031"], ["https://data.delijn.be/stops/206911", "https://data.delijn.be/stops/207911"], ["https://data.delijn.be/stops/102753", "https://data.delijn.be/stops/106382"], ["https://data.delijn.be/stops/300234", "https://data.delijn.be/stops/306652"], ["https://data.delijn.be/stops/500022", "https://data.delijn.be/stops/501197"], ["https://data.delijn.be/stops/404680", "https://data.delijn.be/stops/408700"], ["https://data.delijn.be/stops/302106", "https://data.delijn.be/stops/302125"], ["https://data.delijn.be/stops/400195", "https://data.delijn.be/stops/408185"], ["https://data.delijn.be/stops/108768", "https://data.delijn.be/stops/109119"], ["https://data.delijn.be/stops/202362", "https://data.delijn.be/stops/203989"], ["https://data.delijn.be/stops/206107", "https://data.delijn.be/stops/206298"], ["https://data.delijn.be/stops/400814", "https://data.delijn.be/stops/400815"], ["https://data.delijn.be/stops/402628", "https://data.delijn.be/stops/405028"], ["https://data.delijn.be/stops/104002", "https://data.delijn.be/stops/106030"], ["https://data.delijn.be/stops/504430", "https://data.delijn.be/stops/504472"], ["https://data.delijn.be/stops/504174", "https://data.delijn.be/stops/505388"], ["https://data.delijn.be/stops/509386", "https://data.delijn.be/stops/509390"], ["https://data.delijn.be/stops/404376", "https://data.delijn.be/stops/404383"], ["https://data.delijn.be/stops/503022", "https://data.delijn.be/stops/508557"], ["https://data.delijn.be/stops/508720", "https://data.delijn.be/stops/508766"], ["https://data.delijn.be/stops/209464", "https://data.delijn.be/stops/209672"], ["https://data.delijn.be/stops/105224", "https://data.delijn.be/stops/107390"], ["https://data.delijn.be/stops/305209", "https://data.delijn.be/stops/308724"], ["https://data.delijn.be/stops/204182", "https://data.delijn.be/stops/205368"], ["https://data.delijn.be/stops/300579", "https://data.delijn.be/stops/301074"], ["https://data.delijn.be/stops/201553", "https://data.delijn.be/stops/202362"], ["https://data.delijn.be/stops/304365", "https://data.delijn.be/stops/307097"], ["https://data.delijn.be/stops/306652", "https://data.delijn.be/stops/306653"], ["https://data.delijn.be/stops/201719", "https://data.delijn.be/stops/203993"], ["https://data.delijn.be/stops/101670", "https://data.delijn.be/stops/104845"], ["https://data.delijn.be/stops/505103", "https://data.delijn.be/stops/505291"], ["https://data.delijn.be/stops/103627", "https://data.delijn.be/stops/103647"], ["https://data.delijn.be/stops/208475", "https://data.delijn.be/stops/209475"], ["https://data.delijn.be/stops/507380", "https://data.delijn.be/stops/507385"], ["https://data.delijn.be/stops/300295", "https://data.delijn.be/stops/300301"], ["https://data.delijn.be/stops/102139", "https://data.delijn.be/stops/106050"], ["https://data.delijn.be/stops/303415", "https://data.delijn.be/stops/303427"], ["https://data.delijn.be/stops/307528", "https://data.delijn.be/stops/307530"], ["https://data.delijn.be/stops/302133", "https://data.delijn.be/stops/307081"], ["https://data.delijn.be/stops/104517", "https://data.delijn.be/stops/104584"], ["https://data.delijn.be/stops/207629", "https://data.delijn.be/stops/209571"], ["https://data.delijn.be/stops/303106", "https://data.delijn.be/stops/307055"], ["https://data.delijn.be/stops/300050", "https://data.delijn.be/stops/307436"], ["https://data.delijn.be/stops/206438", "https://data.delijn.be/stops/207440"], ["https://data.delijn.be/stops/208360", "https://data.delijn.be/stops/209376"], ["https://data.delijn.be/stops/308251", "https://data.delijn.be/stops/308259"], ["https://data.delijn.be/stops/303983", "https://data.delijn.be/stops/304301"], ["https://data.delijn.be/stops/301807", "https://data.delijn.be/stops/301821"], ["https://data.delijn.be/stops/502498", "https://data.delijn.be/stops/505331"], ["https://data.delijn.be/stops/503746", "https://data.delijn.be/stops/509866"], ["https://data.delijn.be/stops/202395", "https://data.delijn.be/stops/210114"], ["https://data.delijn.be/stops/400808", "https://data.delijn.be/stops/400810"], ["https://data.delijn.be/stops/306279", "https://data.delijn.be/stops/306280"], ["https://data.delijn.be/stops/209625", "https://data.delijn.be/stops/219020"], ["https://data.delijn.be/stops/403825", "https://data.delijn.be/stops/403875"], ["https://data.delijn.be/stops/104270", "https://data.delijn.be/stops/105354"], ["https://data.delijn.be/stops/202469", "https://data.delijn.be/stops/203468"], ["https://data.delijn.be/stops/403395", "https://data.delijn.be/stops/410117"], ["https://data.delijn.be/stops/102245", "https://data.delijn.be/stops/105808"], ["https://data.delijn.be/stops/305652", "https://data.delijn.be/stops/307790"], ["https://data.delijn.be/stops/200031", "https://data.delijn.be/stops/201076"], ["https://data.delijn.be/stops/206502", "https://data.delijn.be/stops/207501"], ["https://data.delijn.be/stops/104659", "https://data.delijn.be/stops/108438"], ["https://data.delijn.be/stops/204178", "https://data.delijn.be/stops/204218"], ["https://data.delijn.be/stops/200465", "https://data.delijn.be/stops/200675"], ["https://data.delijn.be/stops/206706", "https://data.delijn.be/stops/206974"], ["https://data.delijn.be/stops/204986", "https://data.delijn.be/stops/209391"], ["https://data.delijn.be/stops/104270", "https://data.delijn.be/stops/104271"], ["https://data.delijn.be/stops/201401", "https://data.delijn.be/stops/201402"], ["https://data.delijn.be/stops/101804", "https://data.delijn.be/stops/107981"], ["https://data.delijn.be/stops/503662", "https://data.delijn.be/stops/508662"], ["https://data.delijn.be/stops/504619", "https://data.delijn.be/stops/509619"], ["https://data.delijn.be/stops/402713", "https://data.delijn.be/stops/402736"], ["https://data.delijn.be/stops/408533", "https://data.delijn.be/stops/408765"], ["https://data.delijn.be/stops/406644", "https://data.delijn.be/stops/406645"], ["https://data.delijn.be/stops/407040", "https://data.delijn.be/stops/409194"], ["https://data.delijn.be/stops/303126", "https://data.delijn.be/stops/303128"], ["https://data.delijn.be/stops/504151", "https://data.delijn.be/stops/504739"], ["https://data.delijn.be/stops/502461", "https://data.delijn.be/stops/502634"], ["https://data.delijn.be/stops/501559", "https://data.delijn.be/stops/506769"], ["https://data.delijn.be/stops/405828", "https://data.delijn.be/stops/405831"], ["https://data.delijn.be/stops/109062", "https://data.delijn.be/stops/307370"], ["https://data.delijn.be/stops/301855", "https://data.delijn.be/stops/301885"], ["https://data.delijn.be/stops/204395", "https://data.delijn.be/stops/205395"], ["https://data.delijn.be/stops/206646", "https://data.delijn.be/stops/207461"], ["https://data.delijn.be/stops/405765", "https://data.delijn.be/stops/405772"], ["https://data.delijn.be/stops/502206", "https://data.delijn.be/stops/502217"], ["https://data.delijn.be/stops/109281", "https://data.delijn.be/stops/109283"], ["https://data.delijn.be/stops/109286", "https://data.delijn.be/stops/109288"], ["https://data.delijn.be/stops/502255", "https://data.delijn.be/stops/507255"], ["https://data.delijn.be/stops/401576", "https://data.delijn.be/stops/402215"], ["https://data.delijn.be/stops/504536", "https://data.delijn.be/stops/509608"], ["https://data.delijn.be/stops/409662", "https://data.delijn.be/stops/410035"], ["https://data.delijn.be/stops/106797", "https://data.delijn.be/stops/106876"], ["https://data.delijn.be/stops/205026", "https://data.delijn.be/stops/205027"], ["https://data.delijn.be/stops/405895", "https://data.delijn.be/stops/308202"], ["https://data.delijn.be/stops/105979", "https://data.delijn.be/stops/105981"], ["https://data.delijn.be/stops/401438", "https://data.delijn.be/stops/401736"], ["https://data.delijn.be/stops/202452", "https://data.delijn.be/stops/203451"], ["https://data.delijn.be/stops/306207", "https://data.delijn.be/stops/306208"], ["https://data.delijn.be/stops/400689", "https://data.delijn.be/stops/400702"], ["https://data.delijn.be/stops/307862", "https://data.delijn.be/stops/307863"], ["https://data.delijn.be/stops/403739", "https://data.delijn.be/stops/403740"], ["https://data.delijn.be/stops/200149", "https://data.delijn.be/stops/201150"], ["https://data.delijn.be/stops/407658", "https://data.delijn.be/stops/407660"], ["https://data.delijn.be/stops/208517", "https://data.delijn.be/stops/209535"], ["https://data.delijn.be/stops/508635", "https://data.delijn.be/stops/509971"], ["https://data.delijn.be/stops/300201", "https://data.delijn.be/stops/300632"], ["https://data.delijn.be/stops/107741", "https://data.delijn.be/stops/107743"], ["https://data.delijn.be/stops/502728", "https://data.delijn.be/stops/507115"], ["https://data.delijn.be/stops/300048", "https://data.delijn.be/stops/306788"], ["https://data.delijn.be/stops/502275", "https://data.delijn.be/stops/507275"], ["https://data.delijn.be/stops/106192", "https://data.delijn.be/stops/107440"], ["https://data.delijn.be/stops/204514", "https://data.delijn.be/stops/205514"], ["https://data.delijn.be/stops/401046", "https://data.delijn.be/stops/401047"], ["https://data.delijn.be/stops/405615", "https://data.delijn.be/stops/407153"], ["https://data.delijn.be/stops/504275", "https://data.delijn.be/stops/504689"], ["https://data.delijn.be/stops/506296", "https://data.delijn.be/stops/506315"], ["https://data.delijn.be/stops/200905", "https://data.delijn.be/stops/200932"], ["https://data.delijn.be/stops/407089", "https://data.delijn.be/stops/409498"], ["https://data.delijn.be/stops/500944", "https://data.delijn.be/stops/504685"], ["https://data.delijn.be/stops/109194", "https://data.delijn.be/stops/109228"], ["https://data.delijn.be/stops/300245", "https://data.delijn.be/stops/300273"], ["https://data.delijn.be/stops/500950", "https://data.delijn.be/stops/504741"], ["https://data.delijn.be/stops/200430", "https://data.delijn.be/stops/200432"], ["https://data.delijn.be/stops/504949", "https://data.delijn.be/stops/505556"], ["https://data.delijn.be/stops/400778", "https://data.delijn.be/stops/409343"], ["https://data.delijn.be/stops/101661", "https://data.delijn.be/stops/204659"], ["https://data.delijn.be/stops/102746", "https://data.delijn.be/stops/107291"], ["https://data.delijn.be/stops/403947", "https://data.delijn.be/stops/407057"], ["https://data.delijn.be/stops/103617", "https://data.delijn.be/stops/103618"], ["https://data.delijn.be/stops/207415", "https://data.delijn.be/stops/207963"], ["https://data.delijn.be/stops/407904", "https://data.delijn.be/stops/407905"], ["https://data.delijn.be/stops/205613", "https://data.delijn.be/stops/205730"], ["https://data.delijn.be/stops/105638", "https://data.delijn.be/stops/105816"], ["https://data.delijn.be/stops/200664", "https://data.delijn.be/stops/200667"], ["https://data.delijn.be/stops/402473", "https://data.delijn.be/stops/402488"], ["https://data.delijn.be/stops/405359", "https://data.delijn.be/stops/410280"], ["https://data.delijn.be/stops/106231", "https://data.delijn.be/stops/109802"], ["https://data.delijn.be/stops/201105", "https://data.delijn.be/stops/203449"], ["https://data.delijn.be/stops/502219", "https://data.delijn.be/stops/505825"], ["https://data.delijn.be/stops/503585", "https://data.delijn.be/stops/508591"], ["https://data.delijn.be/stops/106598", "https://data.delijn.be/stops/107243"], ["https://data.delijn.be/stops/208277", "https://data.delijn.be/stops/208278"], ["https://data.delijn.be/stops/303383", "https://data.delijn.be/stops/303384"], ["https://data.delijn.be/stops/406931", "https://data.delijn.be/stops/406932"], ["https://data.delijn.be/stops/300555", "https://data.delijn.be/stops/307855"], ["https://data.delijn.be/stops/502183", "https://data.delijn.be/stops/502186"], ["https://data.delijn.be/stops/505099", "https://data.delijn.be/stops/508664"], ["https://data.delijn.be/stops/308834", "https://data.delijn.be/stops/308836"], ["https://data.delijn.be/stops/102799", "https://data.delijn.be/stops/104955"], ["https://data.delijn.be/stops/505314", "https://data.delijn.be/stops/507228"], ["https://data.delijn.be/stops/505844", "https://data.delijn.be/stops/508337"], ["https://data.delijn.be/stops/107578", "https://data.delijn.be/stops/107721"], ["https://data.delijn.be/stops/101927", "https://data.delijn.be/stops/107008"], ["https://data.delijn.be/stops/300058", "https://data.delijn.be/stops/307734"], ["https://data.delijn.be/stops/302085", "https://data.delijn.be/stops/302086"], ["https://data.delijn.be/stops/401038", "https://data.delijn.be/stops/404984"], ["https://data.delijn.be/stops/302709", "https://data.delijn.be/stops/302710"], ["https://data.delijn.be/stops/403532", "https://data.delijn.be/stops/403662"], ["https://data.delijn.be/stops/306921", "https://data.delijn.be/stops/306923"], ["https://data.delijn.be/stops/200107", "https://data.delijn.be/stops/209908"], ["https://data.delijn.be/stops/207983", "https://data.delijn.be/stops/304270"], ["https://data.delijn.be/stops/301460", "https://data.delijn.be/stops/301498"], ["https://data.delijn.be/stops/202498", "https://data.delijn.be/stops/203498"], ["https://data.delijn.be/stops/101531", "https://data.delijn.be/stops/102584"], ["https://data.delijn.be/stops/108137", "https://data.delijn.be/stops/108843"], ["https://data.delijn.be/stops/101429", "https://data.delijn.be/stops/107298"], ["https://data.delijn.be/stops/505396", "https://data.delijn.be/stops/507766"], ["https://data.delijn.be/stops/204412", "https://data.delijn.be/stops/204413"], ["https://data.delijn.be/stops/504733", "https://data.delijn.be/stops/504734"], ["https://data.delijn.be/stops/304004", "https://data.delijn.be/stops/304048"], ["https://data.delijn.be/stops/208682", "https://data.delijn.be/stops/208725"], ["https://data.delijn.be/stops/107314", "https://data.delijn.be/stops/108808"], ["https://data.delijn.be/stops/406275", "https://data.delijn.be/stops/406277"], ["https://data.delijn.be/stops/206156", "https://data.delijn.be/stops/206810"], ["https://data.delijn.be/stops/307016", "https://data.delijn.be/stops/307017"], ["https://data.delijn.be/stops/106127", "https://data.delijn.be/stops/106128"], ["https://data.delijn.be/stops/402458", "https://data.delijn.be/stops/402462"], ["https://data.delijn.be/stops/203655", "https://data.delijn.be/stops/211857"], ["https://data.delijn.be/stops/409555", "https://data.delijn.be/stops/409556"], ["https://data.delijn.be/stops/308854", "https://data.delijn.be/stops/308855"], ["https://data.delijn.be/stops/501061", "https://data.delijn.be/stops/501080"], ["https://data.delijn.be/stops/505553", "https://data.delijn.be/stops/507510"], ["https://data.delijn.be/stops/402410", "https://data.delijn.be/stops/402465"], ["https://data.delijn.be/stops/304606", "https://data.delijn.be/stops/304664"], ["https://data.delijn.be/stops/101483", "https://data.delijn.be/stops/103329"], ["https://data.delijn.be/stops/103398", "https://data.delijn.be/stops/103399"], ["https://data.delijn.be/stops/200092", "https://data.delijn.be/stops/200093"], ["https://data.delijn.be/stops/304952", "https://data.delijn.be/stops/308027"], ["https://data.delijn.be/stops/501190", "https://data.delijn.be/stops/501192"], ["https://data.delijn.be/stops/300479", "https://data.delijn.be/stops/306175"], ["https://data.delijn.be/stops/200273", "https://data.delijn.be/stops/203002"], ["https://data.delijn.be/stops/204378", "https://data.delijn.be/stops/205418"], ["https://data.delijn.be/stops/507513", "https://data.delijn.be/stops/509726"], ["https://data.delijn.be/stops/404838", "https://data.delijn.be/stops/405234"], ["https://data.delijn.be/stops/300254", "https://data.delijn.be/stops/303830"], ["https://data.delijn.be/stops/406036", "https://data.delijn.be/stops/406051"], ["https://data.delijn.be/stops/303757", "https://data.delijn.be/stops/303791"], ["https://data.delijn.be/stops/304127", "https://data.delijn.be/stops/305448"], ["https://data.delijn.be/stops/402108", "https://data.delijn.be/stops/402301"], ["https://data.delijn.be/stops/107718", "https://data.delijn.be/stops/107738"], ["https://data.delijn.be/stops/407916", "https://data.delijn.be/stops/407919"], ["https://data.delijn.be/stops/403272", "https://data.delijn.be/stops/403273"], ["https://data.delijn.be/stops/503405", "https://data.delijn.be/stops/508444"], ["https://data.delijn.be/stops/401413", "https://data.delijn.be/stops/300907"], ["https://data.delijn.be/stops/409369", "https://data.delijn.be/stops/409501"], ["https://data.delijn.be/stops/409371", "https://data.delijn.be/stops/410252"], ["https://data.delijn.be/stops/502227", "https://data.delijn.be/stops/505232"], ["https://data.delijn.be/stops/204216", "https://data.delijn.be/stops/205177"], ["https://data.delijn.be/stops/500936", "https://data.delijn.be/stops/505406"], ["https://data.delijn.be/stops/101422", "https://data.delijn.be/stops/109723"], ["https://data.delijn.be/stops/407624", "https://data.delijn.be/stops/409805"], ["https://data.delijn.be/stops/407457", "https://data.delijn.be/stops/407468"], ["https://data.delijn.be/stops/404880", "https://data.delijn.be/stops/405546"], ["https://data.delijn.be/stops/200251", "https://data.delijn.be/stops/200576"], ["https://data.delijn.be/stops/204413", "https://data.delijn.be/stops/205441"], ["https://data.delijn.be/stops/406336", "https://data.delijn.be/stops/406337"], ["https://data.delijn.be/stops/303585", "https://data.delijn.be/stops/303586"], ["https://data.delijn.be/stops/502413", "https://data.delijn.be/stops/507402"], ["https://data.delijn.be/stops/200110", "https://data.delijn.be/stops/200356"], ["https://data.delijn.be/stops/401347", "https://data.delijn.be/stops/401370"], ["https://data.delijn.be/stops/506283", "https://data.delijn.be/stops/506322"], ["https://data.delijn.be/stops/302851", "https://data.delijn.be/stops/302854"], ["https://data.delijn.be/stops/300198", "https://data.delijn.be/stops/300224"], ["https://data.delijn.be/stops/102692", "https://data.delijn.be/stops/108630"], ["https://data.delijn.be/stops/205373", "https://data.delijn.be/stops/205381"], ["https://data.delijn.be/stops/303372", "https://data.delijn.be/stops/308900"], ["https://data.delijn.be/stops/504841", "https://data.delijn.be/stops/508232"], ["https://data.delijn.be/stops/207833", "https://data.delijn.be/stops/207834"], ["https://data.delijn.be/stops/205985", "https://data.delijn.be/stops/206830"], ["https://data.delijn.be/stops/504622", "https://data.delijn.be/stops/508144"], ["https://data.delijn.be/stops/209386", "https://data.delijn.be/stops/503329"], ["https://data.delijn.be/stops/401209", "https://data.delijn.be/stops/401273"], ["https://data.delijn.be/stops/407706", "https://data.delijn.be/stops/407768"], ["https://data.delijn.be/stops/207777", "https://data.delijn.be/stops/207798"], ["https://data.delijn.be/stops/400279", "https://data.delijn.be/stops/400443"], ["https://data.delijn.be/stops/105171", "https://data.delijn.be/stops/106837"], ["https://data.delijn.be/stops/500563", "https://data.delijn.be/stops/506029"], ["https://data.delijn.be/stops/400675", "https://data.delijn.be/stops/401650"], ["https://data.delijn.be/stops/300525", "https://data.delijn.be/stops/306174"], ["https://data.delijn.be/stops/302731", "https://data.delijn.be/stops/307522"], ["https://data.delijn.be/stops/205347", "https://data.delijn.be/stops/205702"], ["https://data.delijn.be/stops/205280", "https://data.delijn.be/stops/205610"], ["https://data.delijn.be/stops/208384", "https://data.delijn.be/stops/209384"], ["https://data.delijn.be/stops/107902", "https://data.delijn.be/stops/109440"], ["https://data.delijn.be/stops/203308", "https://data.delijn.be/stops/507759"], ["https://data.delijn.be/stops/209069", "https://data.delijn.be/stops/209088"], ["https://data.delijn.be/stops/200778", "https://data.delijn.be/stops/200931"], ["https://data.delijn.be/stops/302746", "https://data.delijn.be/stops/308860"], ["https://data.delijn.be/stops/106283", "https://data.delijn.be/stops/106348"], ["https://data.delijn.be/stops/105911", "https://data.delijn.be/stops/109745"], ["https://data.delijn.be/stops/203560", "https://data.delijn.be/stops/203564"], ["https://data.delijn.be/stops/400055", "https://data.delijn.be/stops/400063"], ["https://data.delijn.be/stops/501065", "https://data.delijn.be/stops/501132"], ["https://data.delijn.be/stops/107872", "https://data.delijn.be/stops/107873"], ["https://data.delijn.be/stops/502814", "https://data.delijn.be/stops/508140"], ["https://data.delijn.be/stops/300235", "https://data.delijn.be/stops/306655"], ["https://data.delijn.be/stops/303056", "https://data.delijn.be/stops/304081"], ["https://data.delijn.be/stops/303317", "https://data.delijn.be/stops/303319"], ["https://data.delijn.be/stops/200443", "https://data.delijn.be/stops/201443"], ["https://data.delijn.be/stops/106013", "https://data.delijn.be/stops/107910"], ["https://data.delijn.be/stops/101370", "https://data.delijn.be/stops/106359"], ["https://data.delijn.be/stops/504445", "https://data.delijn.be/stops/504449"], ["https://data.delijn.be/stops/103625", "https://data.delijn.be/stops/103745"], ["https://data.delijn.be/stops/302755", "https://data.delijn.be/stops/304830"], ["https://data.delijn.be/stops/403123", "https://data.delijn.be/stops/403126"], ["https://data.delijn.be/stops/408574", "https://data.delijn.be/stops/408677"], ["https://data.delijn.be/stops/201685", "https://data.delijn.be/stops/202315"], ["https://data.delijn.be/stops/401424", "https://data.delijn.be/stops/401578"], ["https://data.delijn.be/stops/305500", "https://data.delijn.be/stops/305501"], ["https://data.delijn.be/stops/405671", "https://data.delijn.be/stops/406912"], ["https://data.delijn.be/stops/307642", "https://data.delijn.be/stops/307643"], ["https://data.delijn.be/stops/406093", "https://data.delijn.be/stops/406116"], ["https://data.delijn.be/stops/205521", "https://data.delijn.be/stops/205726"], ["https://data.delijn.be/stops/103728", "https://data.delijn.be/stops/109442"], ["https://data.delijn.be/stops/508388", "https://data.delijn.be/stops/509770"], ["https://data.delijn.be/stops/503371", "https://data.delijn.be/stops/503951"], ["https://data.delijn.be/stops/306917", "https://data.delijn.be/stops/306919"], ["https://data.delijn.be/stops/403117", "https://data.delijn.be/stops/403234"], ["https://data.delijn.be/stops/503268", "https://data.delijn.be/stops/508268"], ["https://data.delijn.be/stops/502750", "https://data.delijn.be/stops/507750"], ["https://data.delijn.be/stops/102636", "https://data.delijn.be/stops/102639"], ["https://data.delijn.be/stops/104893", "https://data.delijn.be/stops/104897"], ["https://data.delijn.be/stops/408520", "https://data.delijn.be/stops/408795"], ["https://data.delijn.be/stops/503158", "https://data.delijn.be/stops/508175"], ["https://data.delijn.be/stops/102091", "https://data.delijn.be/stops/106846"], ["https://data.delijn.be/stops/400438", "https://data.delijn.be/stops/406843"], ["https://data.delijn.be/stops/106221", "https://data.delijn.be/stops/106335"], ["https://data.delijn.be/stops/207672", "https://data.delijn.be/stops/209158"], ["https://data.delijn.be/stops/300751", "https://data.delijn.be/stops/300783"], ["https://data.delijn.be/stops/500044", "https://data.delijn.be/stops/500053"], ["https://data.delijn.be/stops/400752", "https://data.delijn.be/stops/409560"], ["https://data.delijn.be/stops/400851", "https://data.delijn.be/stops/400853"], ["https://data.delijn.be/stops/502515", "https://data.delijn.be/stops/507636"], ["https://data.delijn.be/stops/408031", "https://data.delijn.be/stops/408035"], ["https://data.delijn.be/stops/107013", "https://data.delijn.be/stops/107016"], ["https://data.delijn.be/stops/102045", "https://data.delijn.be/stops/103005"], ["https://data.delijn.be/stops/303260", "https://data.delijn.be/stops/305660"], ["https://data.delijn.be/stops/303082", "https://data.delijn.be/stops/308661"], ["https://data.delijn.be/stops/300344", "https://data.delijn.be/stops/307644"], ["https://data.delijn.be/stops/503745", "https://data.delijn.be/stops/509777"], ["https://data.delijn.be/stops/302562", "https://data.delijn.be/stops/302566"], ["https://data.delijn.be/stops/102340", "https://data.delijn.be/stops/104254"], ["https://data.delijn.be/stops/101922", "https://data.delijn.be/stops/102933"], ["https://data.delijn.be/stops/102448", "https://data.delijn.be/stops/103011"], ["https://data.delijn.be/stops/303131", "https://data.delijn.be/stops/303135"], ["https://data.delijn.be/stops/204164", "https://data.delijn.be/stops/207274"], ["https://data.delijn.be/stops/404427", "https://data.delijn.be/stops/404496"], ["https://data.delijn.be/stops/303528", "https://data.delijn.be/stops/303552"], ["https://data.delijn.be/stops/303229", "https://data.delijn.be/stops/304549"], ["https://data.delijn.be/stops/404466", "https://data.delijn.be/stops/404510"], ["https://data.delijn.be/stops/409801", "https://data.delijn.be/stops/409803"], ["https://data.delijn.be/stops/402118", "https://data.delijn.be/stops/409286"], ["https://data.delijn.be/stops/202113", "https://data.delijn.be/stops/205586"], ["https://data.delijn.be/stops/204157", "https://data.delijn.be/stops/205156"], ["https://data.delijn.be/stops/208394", "https://data.delijn.be/stops/208421"], ["https://data.delijn.be/stops/204146", "https://data.delijn.be/stops/205126"], ["https://data.delijn.be/stops/108397", "https://data.delijn.be/stops/108411"], ["https://data.delijn.be/stops/206708", "https://data.delijn.be/stops/206975"], ["https://data.delijn.be/stops/503480", "https://data.delijn.be/stops/504046"], ["https://data.delijn.be/stops/200745", "https://data.delijn.be/stops/203780"], ["https://data.delijn.be/stops/503382", "https://data.delijn.be/stops/503439"], ["https://data.delijn.be/stops/307871", "https://data.delijn.be/stops/308886"], ["https://data.delijn.be/stops/101086", "https://data.delijn.be/stops/101087"], ["https://data.delijn.be/stops/302780", "https://data.delijn.be/stops/302781"], ["https://data.delijn.be/stops/408957", "https://data.delijn.be/stops/408983"], ["https://data.delijn.be/stops/107442", "https://data.delijn.be/stops/107444"], ["https://data.delijn.be/stops/407689", "https://data.delijn.be/stops/407735"], ["https://data.delijn.be/stops/300247", "https://data.delijn.be/stops/303893"], ["https://data.delijn.be/stops/409130", "https://data.delijn.be/stops/409215"], ["https://data.delijn.be/stops/304262", "https://data.delijn.be/stops/304264"], ["https://data.delijn.be/stops/502662", "https://data.delijn.be/stops/507032"], ["https://data.delijn.be/stops/405210", "https://data.delijn.be/stops/407341"], ["https://data.delijn.be/stops/308245", "https://data.delijn.be/stops/308246"], ["https://data.delijn.be/stops/400694", "https://data.delijn.be/stops/400875"], ["https://data.delijn.be/stops/400966", "https://data.delijn.be/stops/406552"], ["https://data.delijn.be/stops/503086", "https://data.delijn.be/stops/508923"], ["https://data.delijn.be/stops/104802", "https://data.delijn.be/stops/109456"], ["https://data.delijn.be/stops/102529", "https://data.delijn.be/stops/405077"], ["https://data.delijn.be/stops/205131", "https://data.delijn.be/stops/205143"], ["https://data.delijn.be/stops/101293", "https://data.delijn.be/stops/105366"], ["https://data.delijn.be/stops/101976", "https://data.delijn.be/stops/109065"], ["https://data.delijn.be/stops/206436", "https://data.delijn.be/stops/207641"], ["https://data.delijn.be/stops/405156", "https://data.delijn.be/stops/405184"], ["https://data.delijn.be/stops/408596", "https://data.delijn.be/stops/408741"], ["https://data.delijn.be/stops/406167", "https://data.delijn.be/stops/406453"], ["https://data.delijn.be/stops/409685", "https://data.delijn.be/stops/409687"], ["https://data.delijn.be/stops/201380", "https://data.delijn.be/stops/210200"], ["https://data.delijn.be/stops/203943", "https://data.delijn.be/stops/203944"], ["https://data.delijn.be/stops/405778", "https://data.delijn.be/stops/405806"], ["https://data.delijn.be/stops/301435", "https://data.delijn.be/stops/301436"], ["https://data.delijn.be/stops/106637", "https://data.delijn.be/stops/106678"], ["https://data.delijn.be/stops/402740", "https://data.delijn.be/stops/405671"], ["https://data.delijn.be/stops/303644", "https://data.delijn.be/stops/308828"], ["https://data.delijn.be/stops/403085", "https://data.delijn.be/stops/403435"], ["https://data.delijn.be/stops/401026", "https://data.delijn.be/stops/404965"], ["https://data.delijn.be/stops/200199", "https://data.delijn.be/stops/201080"], ["https://data.delijn.be/stops/504851", "https://data.delijn.be/stops/505940"], ["https://data.delijn.be/stops/401375", "https://data.delijn.be/stops/401376"], ["https://data.delijn.be/stops/403716", "https://data.delijn.be/stops/403729"], ["https://data.delijn.be/stops/409004", "https://data.delijn.be/stops/409006"], ["https://data.delijn.be/stops/501624", "https://data.delijn.be/stops/506623"], ["https://data.delijn.be/stops/204244", "https://data.delijn.be/stops/204245"], ["https://data.delijn.be/stops/302937", "https://data.delijn.be/stops/303145"], ["https://data.delijn.be/stops/207154", "https://data.delijn.be/stops/207502"], ["https://data.delijn.be/stops/502803", "https://data.delijn.be/stops/505317"], ["https://data.delijn.be/stops/401045", "https://data.delijn.be/stops/401140"], ["https://data.delijn.be/stops/308778", "https://data.delijn.be/stops/308780"], ["https://data.delijn.be/stops/305993", "https://data.delijn.be/stops/307426"], ["https://data.delijn.be/stops/403590", "https://data.delijn.be/stops/410013"], ["https://data.delijn.be/stops/503359", "https://data.delijn.be/stops/508930"], ["https://data.delijn.be/stops/102863", "https://data.delijn.be/stops/102864"], ["https://data.delijn.be/stops/107313", "https://data.delijn.be/stops/107314"], ["https://data.delijn.be/stops/403337", "https://data.delijn.be/stops/410026"], ["https://data.delijn.be/stops/208781", "https://data.delijn.be/stops/208788"], ["https://data.delijn.be/stops/502613", "https://data.delijn.be/stops/502676"], ["https://data.delijn.be/stops/506147", "https://data.delijn.be/stops/509834"], ["https://data.delijn.be/stops/206913", "https://data.delijn.be/stops/207926"], ["https://data.delijn.be/stops/504803", "https://data.delijn.be/stops/504809"], ["https://data.delijn.be/stops/405909", "https://data.delijn.be/stops/405942"], ["https://data.delijn.be/stops/305021", "https://data.delijn.be/stops/305022"], ["https://data.delijn.be/stops/102145", "https://data.delijn.be/stops/102444"], ["https://data.delijn.be/stops/202933", "https://data.delijn.be/stops/203848"], ["https://data.delijn.be/stops/404164", "https://data.delijn.be/stops/404282"], ["https://data.delijn.be/stops/108969", "https://data.delijn.be/stops/109566"], ["https://data.delijn.be/stops/400658", "https://data.delijn.be/stops/408964"], ["https://data.delijn.be/stops/509544", "https://data.delijn.be/stops/509546"], ["https://data.delijn.be/stops/501336", "https://data.delijn.be/stops/501353"], ["https://data.delijn.be/stops/103968", "https://data.delijn.be/stops/106756"], ["https://data.delijn.be/stops/403398", "https://data.delijn.be/stops/410295"], ["https://data.delijn.be/stops/504307", "https://data.delijn.be/stops/509292"], ["https://data.delijn.be/stops/408551", "https://data.delijn.be/stops/410001"], ["https://data.delijn.be/stops/200080", "https://data.delijn.be/stops/201080"], ["https://data.delijn.be/stops/400708", "https://data.delijn.be/stops/400709"], ["https://data.delijn.be/stops/505742", "https://data.delijn.be/stops/507002"], ["https://data.delijn.be/stops/107360", "https://data.delijn.be/stops/107365"], ["https://data.delijn.be/stops/501322", "https://data.delijn.be/stops/506283"], ["https://data.delijn.be/stops/102984", "https://data.delijn.be/stops/105057"], ["https://data.delijn.be/stops/205744", "https://data.delijn.be/stops/205745"], ["https://data.delijn.be/stops/401016", "https://data.delijn.be/stops/401017"], ["https://data.delijn.be/stops/401297", "https://data.delijn.be/stops/401351"], ["https://data.delijn.be/stops/105503", "https://data.delijn.be/stops/105504"], ["https://data.delijn.be/stops/304419", "https://data.delijn.be/stops/304424"], ["https://data.delijn.be/stops/205332", "https://data.delijn.be/stops/205501"], ["https://data.delijn.be/stops/206692", "https://data.delijn.be/stops/206956"], ["https://data.delijn.be/stops/300083", "https://data.delijn.be/stops/306784"], ["https://data.delijn.be/stops/300001", "https://data.delijn.be/stops/302508"], ["https://data.delijn.be/stops/202322", "https://data.delijn.be/stops/209640"], ["https://data.delijn.be/stops/402670", "https://data.delijn.be/stops/402723"], ["https://data.delijn.be/stops/200814", "https://data.delijn.be/stops/210056"], ["https://data.delijn.be/stops/201423", "https://data.delijn.be/stops/209721"], ["https://data.delijn.be/stops/204638", "https://data.delijn.be/stops/204639"], ["https://data.delijn.be/stops/106264", "https://data.delijn.be/stops/106274"], ["https://data.delijn.be/stops/200891", "https://data.delijn.be/stops/210016"], ["https://data.delijn.be/stops/304173", "https://data.delijn.be/stops/306152"], ["https://data.delijn.be/stops/204652", "https://data.delijn.be/stops/214001"], ["https://data.delijn.be/stops/104958", "https://data.delijn.be/stops/109566"], ["https://data.delijn.be/stops/107315", "https://data.delijn.be/stops/109080"], ["https://data.delijn.be/stops/105204", "https://data.delijn.be/stops/108876"], ["https://data.delijn.be/stops/400409", "https://data.delijn.be/stops/408487"], ["https://data.delijn.be/stops/209313", "https://data.delijn.be/stops/209788"], ["https://data.delijn.be/stops/205691", "https://data.delijn.be/stops/205700"], ["https://data.delijn.be/stops/104185", "https://data.delijn.be/stops/104205"], ["https://data.delijn.be/stops/204160", "https://data.delijn.be/stops/204165"], ["https://data.delijn.be/stops/403085", "https://data.delijn.be/stops/403132"], ["https://data.delijn.be/stops/407659", "https://data.delijn.be/stops/409807"], ["https://data.delijn.be/stops/101342", "https://data.delijn.be/stops/108099"], ["https://data.delijn.be/stops/202874", "https://data.delijn.be/stops/209712"], ["https://data.delijn.be/stops/505083", "https://data.delijn.be/stops/505667"], ["https://data.delijn.be/stops/109086", "https://data.delijn.be/stops/109317"], ["https://data.delijn.be/stops/105502", "https://data.delijn.be/stops/105504"], ["https://data.delijn.be/stops/206655", "https://data.delijn.be/stops/207655"], ["https://data.delijn.be/stops/302588", "https://data.delijn.be/stops/302593"], ["https://data.delijn.be/stops/507491", "https://data.delijn.be/stops/507508"], ["https://data.delijn.be/stops/505538", "https://data.delijn.be/stops/508810"], ["https://data.delijn.be/stops/108388", "https://data.delijn.be/stops/108390"], ["https://data.delijn.be/stops/401398", "https://data.delijn.be/stops/401418"], ["https://data.delijn.be/stops/105906", "https://data.delijn.be/stops/105908"], ["https://data.delijn.be/stops/302740", "https://data.delijn.be/stops/302747"], ["https://data.delijn.be/stops/405056", "https://data.delijn.be/stops/405062"], ["https://data.delijn.be/stops/102963", "https://data.delijn.be/stops/103217"], ["https://data.delijn.be/stops/502185", "https://data.delijn.be/stops/507189"], ["https://data.delijn.be/stops/501164", "https://data.delijn.be/stops/506148"], ["https://data.delijn.be/stops/404853", "https://data.delijn.be/stops/404943"], ["https://data.delijn.be/stops/306847", "https://data.delijn.be/stops/306858"], ["https://data.delijn.be/stops/102212", "https://data.delijn.be/stops/102736"], ["https://data.delijn.be/stops/106465", "https://data.delijn.be/stops/109557"], ["https://data.delijn.be/stops/200774", "https://data.delijn.be/stops/209302"], ["https://data.delijn.be/stops/403705", "https://data.delijn.be/stops/406973"], ["https://data.delijn.be/stops/404226", "https://data.delijn.be/stops/404227"], ["https://data.delijn.be/stops/107869", "https://data.delijn.be/stops/107870"], ["https://data.delijn.be/stops/500931", "https://data.delijn.be/stops/500936"], ["https://data.delijn.be/stops/300802", "https://data.delijn.be/stops/303121"], ["https://data.delijn.be/stops/501363", "https://data.delijn.be/stops/506363"], ["https://data.delijn.be/stops/308482", "https://data.delijn.be/stops/308484"], ["https://data.delijn.be/stops/106145", "https://data.delijn.be/stops/106146"], ["https://data.delijn.be/stops/302230", "https://data.delijn.be/stops/302236"], ["https://data.delijn.be/stops/106082", "https://data.delijn.be/stops/106138"], ["https://data.delijn.be/stops/200013", "https://data.delijn.be/stops/201014"], ["https://data.delijn.be/stops/305614", "https://data.delijn.be/stops/308944"], ["https://data.delijn.be/stops/401468", "https://data.delijn.be/stops/401893"], ["https://data.delijn.be/stops/207942", "https://data.delijn.be/stops/209161"], ["https://data.delijn.be/stops/403832", "https://data.delijn.be/stops/403833"], ["https://data.delijn.be/stops/501306", "https://data.delijn.be/stops/501360"], ["https://data.delijn.be/stops/204354", "https://data.delijn.be/stops/205314"], ["https://data.delijn.be/stops/204554", "https://data.delijn.be/stops/205554"], ["https://data.delijn.be/stops/103860", "https://data.delijn.be/stops/205609"], ["https://data.delijn.be/stops/206803", "https://data.delijn.be/stops/209581"], ["https://data.delijn.be/stops/502815", "https://data.delijn.be/stops/507036"], ["https://data.delijn.be/stops/105073", "https://data.delijn.be/stops/105189"], ["https://data.delijn.be/stops/102184", "https://data.delijn.be/stops/104429"], ["https://data.delijn.be/stops/305686", "https://data.delijn.be/stops/305711"], ["https://data.delijn.be/stops/400213", "https://data.delijn.be/stops/407156"], ["https://data.delijn.be/stops/107686", "https://data.delijn.be/stops/107688"], ["https://data.delijn.be/stops/405850", "https://data.delijn.be/stops/405851"], ["https://data.delijn.be/stops/206222", "https://data.delijn.be/stops/207192"], ["https://data.delijn.be/stops/508660", "https://data.delijn.be/stops/508668"], ["https://data.delijn.be/stops/206193", "https://data.delijn.be/stops/207194"], ["https://data.delijn.be/stops/305328", "https://data.delijn.be/stops/306343"], ["https://data.delijn.be/stops/306713", "https://data.delijn.be/stops/306714"], ["https://data.delijn.be/stops/408205", "https://data.delijn.be/stops/408355"], ["https://data.delijn.be/stops/304978", "https://data.delijn.be/stops/305002"], ["https://data.delijn.be/stops/102195", "https://data.delijn.be/stops/102414"], ["https://data.delijn.be/stops/209442", "https://data.delijn.be/stops/209444"], ["https://data.delijn.be/stops/306871", "https://data.delijn.be/stops/307954"], ["https://data.delijn.be/stops/202180", "https://data.delijn.be/stops/204080"], ["https://data.delijn.be/stops/505200", "https://data.delijn.be/stops/508148"], ["https://data.delijn.be/stops/102607", "https://data.delijn.be/stops/106974"], ["https://data.delijn.be/stops/503391", "https://data.delijn.be/stops/509762"], ["https://data.delijn.be/stops/202747", "https://data.delijn.be/stops/203748"], ["https://data.delijn.be/stops/506166", "https://data.delijn.be/stops/509837"], ["https://data.delijn.be/stops/502499", "https://data.delijn.be/stops/507502"], ["https://data.delijn.be/stops/400407", "https://data.delijn.be/stops/400408"], ["https://data.delijn.be/stops/506393", "https://data.delijn.be/stops/506394"], ["https://data.delijn.be/stops/504249", "https://data.delijn.be/stops/509449"], ["https://data.delijn.be/stops/405840", "https://data.delijn.be/stops/405841"], ["https://data.delijn.be/stops/501439", "https://data.delijn.be/stops/506444"], ["https://data.delijn.be/stops/202559", "https://data.delijn.be/stops/203559"], ["https://data.delijn.be/stops/200978", "https://data.delijn.be/stops/208046"], ["https://data.delijn.be/stops/105832", "https://data.delijn.be/stops/107707"], ["https://data.delijn.be/stops/502487", "https://data.delijn.be/stops/504877"], ["https://data.delijn.be/stops/107034", "https://data.delijn.be/stops/107037"], ["https://data.delijn.be/stops/101929", "https://data.delijn.be/stops/108386"], ["https://data.delijn.be/stops/102713", "https://data.delijn.be/stops/109589"], ["https://data.delijn.be/stops/504687", "https://data.delijn.be/stops/504763"], ["https://data.delijn.be/stops/102904", "https://data.delijn.be/stops/109567"], ["https://data.delijn.be/stops/403742", "https://data.delijn.be/stops/403811"], ["https://data.delijn.be/stops/300017", "https://data.delijn.be/stops/304564"], ["https://data.delijn.be/stops/406597", "https://data.delijn.be/stops/406628"], ["https://data.delijn.be/stops/102238", "https://data.delijn.be/stops/102239"], ["https://data.delijn.be/stops/404430", "https://data.delijn.be/stops/404483"], ["https://data.delijn.be/stops/503635", "https://data.delijn.be/stops/508322"], ["https://data.delijn.be/stops/202243", "https://data.delijn.be/stops/203485"], ["https://data.delijn.be/stops/303351", "https://data.delijn.be/stops/303368"], ["https://data.delijn.be/stops/208426", "https://data.delijn.be/stops/209426"], ["https://data.delijn.be/stops/101135", "https://data.delijn.be/stops/104570"], ["https://data.delijn.be/stops/408241", "https://data.delijn.be/stops/408308"], ["https://data.delijn.be/stops/201754", "https://data.delijn.be/stops/209221"], ["https://data.delijn.be/stops/505177", "https://data.delijn.be/stops/508863"], ["https://data.delijn.be/stops/200545", "https://data.delijn.be/stops/200701"], ["https://data.delijn.be/stops/408742", "https://data.delijn.be/stops/408745"], ["https://data.delijn.be/stops/503307", "https://data.delijn.be/stops/503315"], ["https://data.delijn.be/stops/409357", "https://data.delijn.be/stops/409439"], ["https://data.delijn.be/stops/108214", "https://data.delijn.be/stops/108217"], ["https://data.delijn.be/stops/206433", "https://data.delijn.be/stops/209690"], ["https://data.delijn.be/stops/200012", "https://data.delijn.be/stops/200014"], ["https://data.delijn.be/stops/402893", "https://data.delijn.be/stops/302614"], ["https://data.delijn.be/stops/201859", "https://data.delijn.be/stops/211036"], ["https://data.delijn.be/stops/503026", "https://data.delijn.be/stops/508023"], ["https://data.delijn.be/stops/504564", "https://data.delijn.be/stops/504568"], ["https://data.delijn.be/stops/405276", "https://data.delijn.be/stops/410085"], ["https://data.delijn.be/stops/408037", "https://data.delijn.be/stops/408043"], ["https://data.delijn.be/stops/206950", "https://data.delijn.be/stops/207950"], ["https://data.delijn.be/stops/301040", "https://data.delijn.be/stops/301041"], ["https://data.delijn.be/stops/201867", "https://data.delijn.be/stops/211037"], ["https://data.delijn.be/stops/206303", "https://data.delijn.be/stops/207632"], ["https://data.delijn.be/stops/505948", "https://data.delijn.be/stops/508298"], ["https://data.delijn.be/stops/403197", "https://data.delijn.be/stops/403386"], ["https://data.delijn.be/stops/501214", "https://data.delijn.be/stops/506496"], ["https://data.delijn.be/stops/205000", "https://data.delijn.be/stops/206378"], ["https://data.delijn.be/stops/208011", "https://data.delijn.be/stops/209011"], ["https://data.delijn.be/stops/504473", "https://data.delijn.be/stops/509109"], ["https://data.delijn.be/stops/506599", "https://data.delijn.be/stops/506644"], ["https://data.delijn.be/stops/509647", "https://data.delijn.be/stops/509657"], ["https://data.delijn.be/stops/208413", "https://data.delijn.be/stops/208414"], ["https://data.delijn.be/stops/205911", "https://data.delijn.be/stops/205914"], ["https://data.delijn.be/stops/208005", "https://data.delijn.be/stops/209635"], ["https://data.delijn.be/stops/503293", "https://data.delijn.be/stops/505259"], ["https://data.delijn.be/stops/106732", "https://data.delijn.be/stops/109771"], ["https://data.delijn.be/stops/305208", "https://data.delijn.be/stops/308049"], ["https://data.delijn.be/stops/206431", "https://data.delijn.be/stops/207431"], ["https://data.delijn.be/stops/501492", "https://data.delijn.be/stops/504506"], ["https://data.delijn.be/stops/303826", "https://data.delijn.be/stops/303830"], ["https://data.delijn.be/stops/202092", "https://data.delijn.be/stops/202720"], ["https://data.delijn.be/stops/305660", "https://data.delijn.be/stops/305661"], ["https://data.delijn.be/stops/204322", "https://data.delijn.be/stops/205321"], ["https://data.delijn.be/stops/503411", "https://data.delijn.be/stops/503423"], ["https://data.delijn.be/stops/308097", "https://data.delijn.be/stops/308129"], ["https://data.delijn.be/stops/204749", "https://data.delijn.be/stops/205749"], ["https://data.delijn.be/stops/107174", "https://data.delijn.be/stops/107733"], ["https://data.delijn.be/stops/307383", "https://data.delijn.be/stops/307446"], ["https://data.delijn.be/stops/304604", "https://data.delijn.be/stops/304617"], ["https://data.delijn.be/stops/400643", "https://data.delijn.be/stops/400901"], ["https://data.delijn.be/stops/108460", "https://data.delijn.be/stops/109880"], ["https://data.delijn.be/stops/304577", "https://data.delijn.be/stops/306203"], ["https://data.delijn.be/stops/102086", "https://data.delijn.be/stops/108715"], ["https://data.delijn.be/stops/503630", "https://data.delijn.be/stops/505534"], ["https://data.delijn.be/stops/300700", "https://data.delijn.be/stops/306942"], ["https://data.delijn.be/stops/407074", "https://data.delijn.be/stops/407775"], ["https://data.delijn.be/stops/107685", "https://data.delijn.be/stops/107990"], ["https://data.delijn.be/stops/204762", "https://data.delijn.be/stops/205355"], ["https://data.delijn.be/stops/105229", "https://data.delijn.be/stops/105233"], ["https://data.delijn.be/stops/102162", "https://data.delijn.be/stops/102164"], ["https://data.delijn.be/stops/501409", "https://data.delijn.be/stops/506407"], ["https://data.delijn.be/stops/300038", "https://data.delijn.be/stops/306837"], ["https://data.delijn.be/stops/102612", "https://data.delijn.be/stops/102617"], ["https://data.delijn.be/stops/208005", "https://data.delijn.be/stops/208006"], ["https://data.delijn.be/stops/201779", "https://data.delijn.be/stops/208250"], ["https://data.delijn.be/stops/505279", "https://data.delijn.be/stops/505280"], ["https://data.delijn.be/stops/105054", "https://data.delijn.be/stops/305610"], ["https://data.delijn.be/stops/407814", "https://data.delijn.be/stops/408042"], ["https://data.delijn.be/stops/400776", "https://data.delijn.be/stops/406668"], ["https://data.delijn.be/stops/408536", "https://data.delijn.be/stops/408650"], ["https://data.delijn.be/stops/303012", "https://data.delijn.be/stops/306279"], ["https://data.delijn.be/stops/403655", "https://data.delijn.be/stops/407345"], ["https://data.delijn.be/stops/508276", "https://data.delijn.be/stops/508277"], ["https://data.delijn.be/stops/404345", "https://data.delijn.be/stops/404648"], ["https://data.delijn.be/stops/400061", "https://data.delijn.be/stops/400151"], ["https://data.delijn.be/stops/402108", "https://data.delijn.be/stops/402486"], ["https://data.delijn.be/stops/208481", "https://data.delijn.be/stops/209481"], ["https://data.delijn.be/stops/304517", "https://data.delijn.be/stops/304518"], ["https://data.delijn.be/stops/201915", "https://data.delijn.be/stops/206424"], ["https://data.delijn.be/stops/101913", "https://data.delijn.be/stops/101914"], ["https://data.delijn.be/stops/303312", "https://data.delijn.be/stops/303329"], ["https://data.delijn.be/stops/401933", "https://data.delijn.be/stops/401934"], ["https://data.delijn.be/stops/207798", "https://data.delijn.be/stops/208184"], ["https://data.delijn.be/stops/300354", "https://data.delijn.be/stops/304063"], ["https://data.delijn.be/stops/502743", "https://data.delijn.be/stops/505734"], ["https://data.delijn.be/stops/207795", "https://data.delijn.be/stops/208757"], ["https://data.delijn.be/stops/102397", "https://data.delijn.be/stops/106261"], ["https://data.delijn.be/stops/404875", "https://data.delijn.be/stops/404968"], ["https://data.delijn.be/stops/208510", "https://data.delijn.be/stops/209159"], ["https://data.delijn.be/stops/302257", "https://data.delijn.be/stops/302275"], ["https://data.delijn.be/stops/304556", "https://data.delijn.be/stops/304558"], ["https://data.delijn.be/stops/208437", "https://data.delijn.be/stops/208751"], ["https://data.delijn.be/stops/307713", "https://data.delijn.be/stops/307715"], ["https://data.delijn.be/stops/106688", "https://data.delijn.be/stops/106690"], ["https://data.delijn.be/stops/301252", "https://data.delijn.be/stops/308558"], ["https://data.delijn.be/stops/105134", "https://data.delijn.be/stops/305826"], ["https://data.delijn.be/stops/303514", "https://data.delijn.be/stops/304176"], ["https://data.delijn.be/stops/302697", "https://data.delijn.be/stops/302701"], ["https://data.delijn.be/stops/105153", "https://data.delijn.be/stops/105156"], ["https://data.delijn.be/stops/407046", "https://data.delijn.be/stops/407051"], ["https://data.delijn.be/stops/103364", "https://data.delijn.be/stops/103369"], ["https://data.delijn.be/stops/207754", "https://data.delijn.be/stops/209838"], ["https://data.delijn.be/stops/406299", "https://data.delijn.be/stops/409140"], ["https://data.delijn.be/stops/105447", "https://data.delijn.be/stops/105448"], ["https://data.delijn.be/stops/104424", "https://data.delijn.be/stops/205287"], ["https://data.delijn.be/stops/403476", "https://data.delijn.be/stops/403479"], ["https://data.delijn.be/stops/401242", "https://data.delijn.be/stops/401381"], ["https://data.delijn.be/stops/305582", "https://data.delijn.be/stops/307044"], ["https://data.delijn.be/stops/505846", "https://data.delijn.be/stops/508952"], ["https://data.delijn.be/stops/509316", "https://data.delijn.be/stops/509861"], ["https://data.delijn.be/stops/406834", "https://data.delijn.be/stops/407324"], ["https://data.delijn.be/stops/304762", "https://data.delijn.be/stops/304765"], ["https://data.delijn.be/stops/208239", "https://data.delijn.be/stops/209233"], ["https://data.delijn.be/stops/206451", "https://data.delijn.be/stops/207451"], ["https://data.delijn.be/stops/202622", "https://data.delijn.be/stops/210043"], ["https://data.delijn.be/stops/405610", "https://data.delijn.be/stops/405611"], ["https://data.delijn.be/stops/209746", "https://data.delijn.be/stops/209747"], ["https://data.delijn.be/stops/404435", "https://data.delijn.be/stops/404442"], ["https://data.delijn.be/stops/206708", "https://data.delijn.be/stops/207607"], ["https://data.delijn.be/stops/302439", "https://data.delijn.be/stops/308104"], ["https://data.delijn.be/stops/504978", "https://data.delijn.be/stops/509085"], ["https://data.delijn.be/stops/303140", "https://data.delijn.be/stops/303141"], ["https://data.delijn.be/stops/505363", "https://data.delijn.be/stops/509198"], ["https://data.delijn.be/stops/403152", "https://data.delijn.be/stops/403153"], ["https://data.delijn.be/stops/503823", "https://data.delijn.be/stops/508824"], ["https://data.delijn.be/stops/300742", "https://data.delijn.be/stops/300775"], ["https://data.delijn.be/stops/405970", "https://data.delijn.be/stops/405993"], ["https://data.delijn.be/stops/300503", "https://data.delijn.be/stops/300512"], ["https://data.delijn.be/stops/305742", "https://data.delijn.be/stops/306308"], ["https://data.delijn.be/stops/206729", "https://data.delijn.be/stops/207658"], ["https://data.delijn.be/stops/201773", "https://data.delijn.be/stops/201812"], ["https://data.delijn.be/stops/306339", "https://data.delijn.be/stops/306771"], ["https://data.delijn.be/stops/200668", "https://data.delijn.be/stops/211102"], ["https://data.delijn.be/stops/206252", "https://data.delijn.be/stops/207584"], ["https://data.delijn.be/stops/200399", "https://data.delijn.be/stops/204950"], ["https://data.delijn.be/stops/104994", "https://data.delijn.be/stops/109480"], ["https://data.delijn.be/stops/501688", "https://data.delijn.be/stops/506597"], ["https://data.delijn.be/stops/105621", "https://data.delijn.be/stops/106361"], ["https://data.delijn.be/stops/103129", "https://data.delijn.be/stops/106781"], ["https://data.delijn.be/stops/300949", "https://data.delijn.be/stops/303664"], ["https://data.delijn.be/stops/109351", "https://data.delijn.be/stops/307353"], ["https://data.delijn.be/stops/208643", "https://data.delijn.be/stops/209643"], ["https://data.delijn.be/stops/501487", "https://data.delijn.be/stops/506428"], ["https://data.delijn.be/stops/208369", "https://data.delijn.be/stops/208370"], ["https://data.delijn.be/stops/200002", "https://data.delijn.be/stops/200004"], ["https://data.delijn.be/stops/207772", "https://data.delijn.be/stops/208406"], ["https://data.delijn.be/stops/505183", "https://data.delijn.be/stops/509119"], ["https://data.delijn.be/stops/101979", "https://data.delijn.be/stops/108284"], ["https://data.delijn.be/stops/102385", "https://data.delijn.be/stops/104090"], ["https://data.delijn.be/stops/106950", "https://data.delijn.be/stops/108714"], ["https://data.delijn.be/stops/102254", "https://data.delijn.be/stops/108289"], ["https://data.delijn.be/stops/302173", "https://data.delijn.be/stops/305090"], ["https://data.delijn.be/stops/102585", "https://data.delijn.be/stops/105265"], ["https://data.delijn.be/stops/200034", "https://data.delijn.be/stops/201397"], ["https://data.delijn.be/stops/501022", "https://data.delijn.be/stops/505397"], ["https://data.delijn.be/stops/206337", "https://data.delijn.be/stops/207337"], ["https://data.delijn.be/stops/105997", "https://data.delijn.be/stops/105999"], ["https://data.delijn.be/stops/302875", "https://data.delijn.be/stops/307650"], ["https://data.delijn.be/stops/404738", "https://data.delijn.be/stops/404751"], ["https://data.delijn.be/stops/503408", "https://data.delijn.be/stops/503441"], ["https://data.delijn.be/stops/303427", "https://data.delijn.be/stops/303429"], ["https://data.delijn.be/stops/304307", "https://data.delijn.be/stops/304309"], ["https://data.delijn.be/stops/501191", "https://data.delijn.be/stops/501497"], ["https://data.delijn.be/stops/202755", "https://data.delijn.be/stops/203795"], ["https://data.delijn.be/stops/107807", "https://data.delijn.be/stops/107810"], ["https://data.delijn.be/stops/408532", "https://data.delijn.be/stops/408765"], ["https://data.delijn.be/stops/402300", "https://data.delijn.be/stops/402446"], ["https://data.delijn.be/stops/303091", "https://data.delijn.be/stops/305443"], ["https://data.delijn.be/stops/500128", "https://data.delijn.be/stops/501675"], ["https://data.delijn.be/stops/400848", "https://data.delijn.be/stops/400849"], ["https://data.delijn.be/stops/204747", "https://data.delijn.be/stops/204748"], ["https://data.delijn.be/stops/301566", "https://data.delijn.be/stops/308080"], ["https://data.delijn.be/stops/300414", "https://data.delijn.be/stops/300608"], ["https://data.delijn.be/stops/102832", "https://data.delijn.be/stops/108415"], ["https://data.delijn.be/stops/305020", "https://data.delijn.be/stops/305040"], ["https://data.delijn.be/stops/305648", "https://data.delijn.be/stops/305671"], ["https://data.delijn.be/stops/402572", "https://data.delijn.be/stops/402654"], ["https://data.delijn.be/stops/501414", "https://data.delijn.be/stops/506414"], ["https://data.delijn.be/stops/402698", "https://data.delijn.be/stops/402882"], ["https://data.delijn.be/stops/400304", "https://data.delijn.be/stops/400339"], ["https://data.delijn.be/stops/206066", "https://data.delijn.be/stops/206067"], ["https://data.delijn.be/stops/206267", "https://data.delijn.be/stops/207026"], ["https://data.delijn.be/stops/201940", "https://data.delijn.be/stops/211098"], ["https://data.delijn.be/stops/503109", "https://data.delijn.be/stops/503356"], ["https://data.delijn.be/stops/305435", "https://data.delijn.be/stops/305522"], ["https://data.delijn.be/stops/407942", "https://data.delijn.be/stops/407960"], ["https://data.delijn.be/stops/202748", "https://data.delijn.be/stops/206422"], ["https://data.delijn.be/stops/108193", "https://data.delijn.be/stops/108197"], ["https://data.delijn.be/stops/506374", "https://data.delijn.be/stops/506375"], ["https://data.delijn.be/stops/106513", "https://data.delijn.be/stops/106514"], ["https://data.delijn.be/stops/508340", "https://data.delijn.be/stops/508343"], ["https://data.delijn.be/stops/400184", "https://data.delijn.be/stops/407679"], ["https://data.delijn.be/stops/505947", "https://data.delijn.be/stops/509908"], ["https://data.delijn.be/stops/206342", "https://data.delijn.be/stops/207342"], ["https://data.delijn.be/stops/502108", "https://data.delijn.be/stops/507141"], ["https://data.delijn.be/stops/501096", "https://data.delijn.be/stops/506096"], ["https://data.delijn.be/stops/501435", "https://data.delijn.be/stops/506435"], ["https://data.delijn.be/stops/407754", "https://data.delijn.be/stops/407756"], ["https://data.delijn.be/stops/508038", "https://data.delijn.be/stops/508269"], ["https://data.delijn.be/stops/105049", "https://data.delijn.be/stops/109759"], ["https://data.delijn.be/stops/300235", "https://data.delijn.be/stops/300294"], ["https://data.delijn.be/stops/400105", "https://data.delijn.be/stops/409105"], ["https://data.delijn.be/stops/304005", "https://data.delijn.be/stops/304007"], ["https://data.delijn.be/stops/504325", "https://data.delijn.be/stops/505925"], ["https://data.delijn.be/stops/205716", "https://data.delijn.be/stops/205717"], ["https://data.delijn.be/stops/303017", "https://data.delijn.be/stops/306107"], ["https://data.delijn.be/stops/505503", "https://data.delijn.be/stops/505618"], ["https://data.delijn.be/stops/506186", "https://data.delijn.be/stops/506187"], ["https://data.delijn.be/stops/406450", "https://data.delijn.be/stops/406451"], ["https://data.delijn.be/stops/206301", "https://data.delijn.be/stops/207303"], ["https://data.delijn.be/stops/404483", "https://data.delijn.be/stops/409261"], ["https://data.delijn.be/stops/109744", "https://data.delijn.be/stops/109746"], ["https://data.delijn.be/stops/106470", "https://data.delijn.be/stops/106471"], ["https://data.delijn.be/stops/401485", "https://data.delijn.be/stops/403887"], ["https://data.delijn.be/stops/206273", "https://data.delijn.be/stops/207273"], ["https://data.delijn.be/stops/505064", "https://data.delijn.be/stops/505067"], ["https://data.delijn.be/stops/202659", "https://data.delijn.be/stops/202660"], ["https://data.delijn.be/stops/300197", "https://data.delijn.be/stops/300198"], ["https://data.delijn.be/stops/300487", "https://data.delijn.be/stops/301406"], ["https://data.delijn.be/stops/502250", "https://data.delijn.be/stops/509207"], ["https://data.delijn.be/stops/403926", "https://data.delijn.be/stops/308752"], ["https://data.delijn.be/stops/210010", "https://data.delijn.be/stops/502289"], ["https://data.delijn.be/stops/404179", "https://data.delijn.be/stops/404195"], ["https://data.delijn.be/stops/509480", "https://data.delijn.be/stops/509515"], ["https://data.delijn.be/stops/305134", "https://data.delijn.be/stops/305140"], ["https://data.delijn.be/stops/208326", "https://data.delijn.be/stops/209326"], ["https://data.delijn.be/stops/304583", "https://data.delijn.be/stops/304584"], ["https://data.delijn.be/stops/402119", "https://data.delijn.be/stops/403691"], ["https://data.delijn.be/stops/202363", "https://data.delijn.be/stops/203989"], ["https://data.delijn.be/stops/504448", "https://data.delijn.be/stops/509448"], ["https://data.delijn.be/stops/206220", "https://data.delijn.be/stops/207808"], ["https://data.delijn.be/stops/300395", "https://data.delijn.be/stops/300396"], ["https://data.delijn.be/stops/506306", "https://data.delijn.be/stops/506324"], ["https://data.delijn.be/stops/106282", "https://data.delijn.be/stops/106283"], ["https://data.delijn.be/stops/106888", "https://data.delijn.be/stops/109900"], ["https://data.delijn.be/stops/202470", "https://data.delijn.be/stops/202471"], ["https://data.delijn.be/stops/303152", "https://data.delijn.be/stops/303153"], ["https://data.delijn.be/stops/504451", "https://data.delijn.be/stops/509451"], ["https://data.delijn.be/stops/502527", "https://data.delijn.be/stops/502708"], ["https://data.delijn.be/stops/108766", "https://data.delijn.be/stops/108767"], ["https://data.delijn.be/stops/405703", "https://data.delijn.be/stops/405741"], ["https://data.delijn.be/stops/204374", "https://data.delijn.be/stops/205762"], ["https://data.delijn.be/stops/206535", "https://data.delijn.be/stops/207535"], ["https://data.delijn.be/stops/206814", "https://data.delijn.be/stops/207818"], ["https://data.delijn.be/stops/202407", "https://data.delijn.be/stops/203013"], ["https://data.delijn.be/stops/401381", "https://data.delijn.be/stops/401382"], ["https://data.delijn.be/stops/300627", "https://data.delijn.be/stops/300730"], ["https://data.delijn.be/stops/303498", "https://data.delijn.be/stops/303499"], ["https://data.delijn.be/stops/101473", "https://data.delijn.be/stops/407111"], ["https://data.delijn.be/stops/408002", "https://data.delijn.be/stops/408340"], ["https://data.delijn.be/stops/305644", "https://data.delijn.be/stops/305645"], ["https://data.delijn.be/stops/205189", "https://data.delijn.be/stops/205229"], ["https://data.delijn.be/stops/104142", "https://data.delijn.be/stops/105803"], ["https://data.delijn.be/stops/502121", "https://data.delijn.be/stops/507149"], ["https://data.delijn.be/stops/505099", "https://data.delijn.be/stops/505964"], ["https://data.delijn.be/stops/107060", "https://data.delijn.be/stops/108227"], ["https://data.delijn.be/stops/505558", "https://data.delijn.be/stops/509946"], ["https://data.delijn.be/stops/101596", "https://data.delijn.be/stops/101597"], ["https://data.delijn.be/stops/206414", "https://data.delijn.be/stops/207127"], ["https://data.delijn.be/stops/402345", "https://data.delijn.be/stops/402415"], ["https://data.delijn.be/stops/302104", "https://data.delijn.be/stops/302105"], ["https://data.delijn.be/stops/403914", "https://data.delijn.be/stops/410350"], ["https://data.delijn.be/stops/401480", "https://data.delijn.be/stops/401776"], ["https://data.delijn.be/stops/509230", "https://data.delijn.be/stops/509236"], ["https://data.delijn.be/stops/106082", "https://data.delijn.be/stops/108732"], ["https://data.delijn.be/stops/201305", "https://data.delijn.be/stops/202761"], ["https://data.delijn.be/stops/206528", "https://data.delijn.be/stops/207528"], ["https://data.delijn.be/stops/502495", "https://data.delijn.be/stops/502925"], ["https://data.delijn.be/stops/404410", "https://data.delijn.be/stops/404415"], ["https://data.delijn.be/stops/405849", "https://data.delijn.be/stops/407292"], ["https://data.delijn.be/stops/109513", "https://data.delijn.be/stops/109514"], ["https://data.delijn.be/stops/201222", "https://data.delijn.be/stops/203136"], ["https://data.delijn.be/stops/106761", "https://data.delijn.be/stops/107516"], ["https://data.delijn.be/stops/405701", "https://data.delijn.be/stops/407204"], ["https://data.delijn.be/stops/501769", "https://data.delijn.be/stops/507530"], ["https://data.delijn.be/stops/200877", "https://data.delijn.be/stops/203063"], ["https://data.delijn.be/stops/304031", "https://data.delijn.be/stops/304032"], ["https://data.delijn.be/stops/403247", "https://data.delijn.be/stops/403383"], ["https://data.delijn.be/stops/408712", "https://data.delijn.be/stops/408721"], ["https://data.delijn.be/stops/206828", "https://data.delijn.be/stops/207252"], ["https://data.delijn.be/stops/400943", "https://data.delijn.be/stops/406955"], ["https://data.delijn.be/stops/305590", "https://data.delijn.be/stops/305617"], ["https://data.delijn.be/stops/504048", "https://data.delijn.be/stops/505368"], ["https://data.delijn.be/stops/404971", "https://data.delijn.be/stops/404972"], ["https://data.delijn.be/stops/202276", "https://data.delijn.be/stops/202418"], ["https://data.delijn.be/stops/502580", "https://data.delijn.be/stops/507111"], ["https://data.delijn.be/stops/105020", "https://data.delijn.be/stops/109774"], ["https://data.delijn.be/stops/401104", "https://data.delijn.be/stops/401105"], ["https://data.delijn.be/stops/304486", "https://data.delijn.be/stops/304515"], ["https://data.delijn.be/stops/408697", "https://data.delijn.be/stops/408701"], ["https://data.delijn.be/stops/300359", "https://data.delijn.be/stops/306313"], ["https://data.delijn.be/stops/109187", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/506039", "https://data.delijn.be/stops/506284"], ["https://data.delijn.be/stops/302574", "https://data.delijn.be/stops/302771"], ["https://data.delijn.be/stops/404975", "https://data.delijn.be/stops/404976"], ["https://data.delijn.be/stops/402549", "https://data.delijn.be/stops/402622"], ["https://data.delijn.be/stops/302898", "https://data.delijn.be/stops/303080"], ["https://data.delijn.be/stops/504104", "https://data.delijn.be/stops/504105"], ["https://data.delijn.be/stops/401279", "https://data.delijn.be/stops/401478"], ["https://data.delijn.be/stops/404696", "https://data.delijn.be/stops/407315"], ["https://data.delijn.be/stops/404445", "https://data.delijn.be/stops/404446"], ["https://data.delijn.be/stops/204193", "https://data.delijn.be/stops/204195"], ["https://data.delijn.be/stops/102461", "https://data.delijn.be/stops/102462"], ["https://data.delijn.be/stops/200994", "https://data.delijn.be/stops/202014"], ["https://data.delijn.be/stops/405705", "https://data.delijn.be/stops/305344"], ["https://data.delijn.be/stops/208564", "https://data.delijn.be/stops/209564"], ["https://data.delijn.be/stops/303656", "https://data.delijn.be/stops/308612"], ["https://data.delijn.be/stops/400715", "https://data.delijn.be/stops/409512"], ["https://data.delijn.be/stops/300945", "https://data.delijn.be/stops/301016"], ["https://data.delijn.be/stops/502507", "https://data.delijn.be/stops/502811"], ["https://data.delijn.be/stops/107963", "https://data.delijn.be/stops/108029"], ["https://data.delijn.be/stops/400032", "https://data.delijn.be/stops/400036"], ["https://data.delijn.be/stops/300095", "https://data.delijn.be/stops/304373"], ["https://data.delijn.be/stops/203520", "https://data.delijn.be/stops/203526"], ["https://data.delijn.be/stops/504815", "https://data.delijn.be/stops/508680"], ["https://data.delijn.be/stops/106858", "https://data.delijn.be/stops/109622"], ["https://data.delijn.be/stops/304202", "https://data.delijn.be/stops/305354"], ["https://data.delijn.be/stops/401786", "https://data.delijn.be/stops/406014"], ["https://data.delijn.be/stops/104099", "https://data.delijn.be/stops/107860"], ["https://data.delijn.be/stops/202720", "https://data.delijn.be/stops/203089"], ["https://data.delijn.be/stops/103349", "https://data.delijn.be/stops/104870"], ["https://data.delijn.be/stops/408760", "https://data.delijn.be/stops/408761"], ["https://data.delijn.be/stops/509279", "https://data.delijn.be/stops/509616"], ["https://data.delijn.be/stops/308795", "https://data.delijn.be/stops/308796"], ["https://data.delijn.be/stops/107344", "https://data.delijn.be/stops/108164"], ["https://data.delijn.be/stops/102335", "https://data.delijn.be/stops/107695"], ["https://data.delijn.be/stops/202201", "https://data.delijn.be/stops/203201"], ["https://data.delijn.be/stops/203832", "https://data.delijn.be/stops/208492"], ["https://data.delijn.be/stops/504793", "https://data.delijn.be/stops/504794"], ["https://data.delijn.be/stops/307907", "https://data.delijn.be/stops/308258"], ["https://data.delijn.be/stops/105687", "https://data.delijn.be/stops/105690"], ["https://data.delijn.be/stops/301406", "https://data.delijn.be/stops/307219"], ["https://data.delijn.be/stops/502268", "https://data.delijn.be/stops/502926"], ["https://data.delijn.be/stops/210079", "https://data.delijn.be/stops/211089"], ["https://data.delijn.be/stops/101278", "https://data.delijn.be/stops/205489"], ["https://data.delijn.be/stops/105198", "https://data.delijn.be/stops/108878"], ["https://data.delijn.be/stops/508402", "https://data.delijn.be/stops/510018"], ["https://data.delijn.be/stops/208489", "https://data.delijn.be/stops/209489"], ["https://data.delijn.be/stops/306201", "https://data.delijn.be/stops/306203"], ["https://data.delijn.be/stops/303618", "https://data.delijn.be/stops/303620"], ["https://data.delijn.be/stops/307400", "https://data.delijn.be/stops/307411"], ["https://data.delijn.be/stops/101977", "https://data.delijn.be/stops/308495"], ["https://data.delijn.be/stops/502016", "https://data.delijn.be/stops/507016"], ["https://data.delijn.be/stops/102922", "https://data.delijn.be/stops/103265"], ["https://data.delijn.be/stops/206973", "https://data.delijn.be/stops/207610"], ["https://data.delijn.be/stops/503051", "https://data.delijn.be/stops/508054"], ["https://data.delijn.be/stops/403075", "https://data.delijn.be/stops/403077"], ["https://data.delijn.be/stops/402217", "https://data.delijn.be/stops/402263"], ["https://data.delijn.be/stops/510020", "https://data.delijn.be/stops/510023"], ["https://data.delijn.be/stops/402323", "https://data.delijn.be/stops/402612"], ["https://data.delijn.be/stops/508256", "https://data.delijn.be/stops/508426"], ["https://data.delijn.be/stops/202966", "https://data.delijn.be/stops/205173"], ["https://data.delijn.be/stops/208111", "https://data.delijn.be/stops/209111"], ["https://data.delijn.be/stops/306815", "https://data.delijn.be/stops/308504"], ["https://data.delijn.be/stops/306064", "https://data.delijn.be/stops/307716"], ["https://data.delijn.be/stops/206545", "https://data.delijn.be/stops/209744"], ["https://data.delijn.be/stops/408800", "https://data.delijn.be/stops/408828"], ["https://data.delijn.be/stops/402845", "https://data.delijn.be/stops/409004"], ["https://data.delijn.be/stops/303164", "https://data.delijn.be/stops/303179"], ["https://data.delijn.be/stops/104466", "https://data.delijn.be/stops/104467"], ["https://data.delijn.be/stops/305152", "https://data.delijn.be/stops/305153"], ["https://data.delijn.be/stops/503063", "https://data.delijn.be/stops/505789"], ["https://data.delijn.be/stops/407773", "https://data.delijn.be/stops/307372"], ["https://data.delijn.be/stops/209164", "https://data.delijn.be/stops/209171"], ["https://data.delijn.be/stops/105279", "https://data.delijn.be/stops/105281"], ["https://data.delijn.be/stops/207417", "https://data.delijn.be/stops/207661"], ["https://data.delijn.be/stops/106152", "https://data.delijn.be/stops/106154"], ["https://data.delijn.be/stops/405037", "https://data.delijn.be/stops/405052"], ["https://data.delijn.be/stops/405676", "https://data.delijn.be/stops/408225"], ["https://data.delijn.be/stops/401652", "https://data.delijn.be/stops/401653"], ["https://data.delijn.be/stops/400755", "https://data.delijn.be/stops/400758"], ["https://data.delijn.be/stops/502796", "https://data.delijn.be/stops/508341"], ["https://data.delijn.be/stops/501035", "https://data.delijn.be/stops/501632"], ["https://data.delijn.be/stops/107148", "https://data.delijn.be/stops/109377"], ["https://data.delijn.be/stops/409562", "https://data.delijn.be/stops/409565"], ["https://data.delijn.be/stops/506729", "https://data.delijn.be/stops/507567"], ["https://data.delijn.be/stops/407693", "https://data.delijn.be/stops/407698"], ["https://data.delijn.be/stops/407008", "https://data.delijn.be/stops/407068"], ["https://data.delijn.be/stops/107326", "https://data.delijn.be/stops/107329"], ["https://data.delijn.be/stops/102013", "https://data.delijn.be/stops/107876"], ["https://data.delijn.be/stops/400519", "https://data.delijn.be/stops/401437"], ["https://data.delijn.be/stops/101828", "https://data.delijn.be/stops/106998"], ["https://data.delijn.be/stops/202677", "https://data.delijn.be/stops/203677"], ["https://data.delijn.be/stops/204722", "https://data.delijn.be/stops/205722"], ["https://data.delijn.be/stops/409814", "https://data.delijn.be/stops/409822"], ["https://data.delijn.be/stops/201693", "https://data.delijn.be/stops/203035"], ["https://data.delijn.be/stops/106734", "https://data.delijn.be/stops/107198"], ["https://data.delijn.be/stops/104713", "https://data.delijn.be/stops/108167"], ["https://data.delijn.be/stops/301166", "https://data.delijn.be/stops/304705"], ["https://data.delijn.be/stops/404141", "https://data.delijn.be/stops/405914"], ["https://data.delijn.be/stops/206488", "https://data.delijn.be/stops/207488"], ["https://data.delijn.be/stops/403630", "https://data.delijn.be/stops/403641"], ["https://data.delijn.be/stops/101824", "https://data.delijn.be/stops/102393"], ["https://data.delijn.be/stops/101688", "https://data.delijn.be/stops/101689"], ["https://data.delijn.be/stops/303209", "https://data.delijn.be/stops/303210"], ["https://data.delijn.be/stops/503917", "https://data.delijn.be/stops/508928"], ["https://data.delijn.be/stops/200860", "https://data.delijn.be/stops/202289"], ["https://data.delijn.be/stops/404331", "https://data.delijn.be/stops/406816"], ["https://data.delijn.be/stops/501124", "https://data.delijn.be/stops/505038"], ["https://data.delijn.be/stops/303676", "https://data.delijn.be/stops/307682"], ["https://data.delijn.be/stops/409358", "https://data.delijn.be/stops/409373"], ["https://data.delijn.be/stops/206079", "https://data.delijn.be/stops/207305"], ["https://data.delijn.be/stops/206690", "https://data.delijn.be/stops/207185"], ["https://data.delijn.be/stops/109312", "https://data.delijn.be/stops/109356"], ["https://data.delijn.be/stops/508369", "https://data.delijn.be/stops/510024"], ["https://data.delijn.be/stops/305147", "https://data.delijn.be/stops/305185"], ["https://data.delijn.be/stops/508071", "https://data.delijn.be/stops/508869"], ["https://data.delijn.be/stops/406494", "https://data.delijn.be/stops/406495"], ["https://data.delijn.be/stops/200910", "https://data.delijn.be/stops/203539"], ["https://data.delijn.be/stops/306770", "https://data.delijn.be/stops/306820"], ["https://data.delijn.be/stops/108974", "https://data.delijn.be/stops/108978"], ["https://data.delijn.be/stops/201088", "https://data.delijn.be/stops/203960"], ["https://data.delijn.be/stops/407803", "https://data.delijn.be/stops/407808"], ["https://data.delijn.be/stops/200867", "https://data.delijn.be/stops/200895"], ["https://data.delijn.be/stops/404285", "https://data.delijn.be/stops/407091"], ["https://data.delijn.be/stops/302997", "https://data.delijn.be/stops/303024"], ["https://data.delijn.be/stops/404631", "https://data.delijn.be/stops/404632"], ["https://data.delijn.be/stops/300958", "https://data.delijn.be/stops/300961"], ["https://data.delijn.be/stops/307357", "https://data.delijn.be/stops/307365"], ["https://data.delijn.be/stops/406191", "https://data.delijn.be/stops/406431"], ["https://data.delijn.be/stops/501342", "https://data.delijn.be/stops/506742"], ["https://data.delijn.be/stops/301446", "https://data.delijn.be/stops/307798"], ["https://data.delijn.be/stops/509033", "https://data.delijn.be/stops/509035"], ["https://data.delijn.be/stops/303754", "https://data.delijn.be/stops/303762"], ["https://data.delijn.be/stops/407589", "https://data.delijn.be/stops/409806"], ["https://data.delijn.be/stops/303822", "https://data.delijn.be/stops/303845"], ["https://data.delijn.be/stops/502549", "https://data.delijn.be/stops/502664"], ["https://data.delijn.be/stops/205309", "https://data.delijn.be/stops/205448"], ["https://data.delijn.be/stops/405715", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/502559", "https://data.delijn.be/stops/502656"], ["https://data.delijn.be/stops/202176", "https://data.delijn.be/stops/202178"], ["https://data.delijn.be/stops/200804", "https://data.delijn.be/stops/200898"], ["https://data.delijn.be/stops/205105", "https://data.delijn.be/stops/205363"], ["https://data.delijn.be/stops/501081", "https://data.delijn.be/stops/506081"], ["https://data.delijn.be/stops/503497", "https://data.delijn.be/stops/508499"], ["https://data.delijn.be/stops/103363", "https://data.delijn.be/stops/105700"], ["https://data.delijn.be/stops/106397", "https://data.delijn.be/stops/106579"], ["https://data.delijn.be/stops/202920", "https://data.delijn.be/stops/211097"], ["https://data.delijn.be/stops/109037", "https://data.delijn.be/stops/109039"], ["https://data.delijn.be/stops/105041", "https://data.delijn.be/stops/105043"], ["https://data.delijn.be/stops/402818", "https://data.delijn.be/stops/406960"], ["https://data.delijn.be/stops/105033", "https://data.delijn.be/stops/106720"], ["https://data.delijn.be/stops/404400", "https://data.delijn.be/stops/404425"], ["https://data.delijn.be/stops/403531", "https://data.delijn.be/stops/408453"], ["https://data.delijn.be/stops/408171", "https://data.delijn.be/stops/409193"], ["https://data.delijn.be/stops/401397", "https://data.delijn.be/stops/300924"], ["https://data.delijn.be/stops/405776", "https://data.delijn.be/stops/409427"], ["https://data.delijn.be/stops/505926", "https://data.delijn.be/stops/509244"], ["https://data.delijn.be/stops/304378", "https://data.delijn.be/stops/307401"], ["https://data.delijn.be/stops/503849", "https://data.delijn.be/stops/508849"], ["https://data.delijn.be/stops/504076", "https://data.delijn.be/stops/509077"], ["https://data.delijn.be/stops/206161", "https://data.delijn.be/stops/207161"], ["https://data.delijn.be/stops/108736", "https://data.delijn.be/stops/108737"], ["https://data.delijn.be/stops/404713", "https://data.delijn.be/stops/404786"], ["https://data.delijn.be/stops/102848", "https://data.delijn.be/stops/103763"], ["https://data.delijn.be/stops/305547", "https://data.delijn.be/stops/307185"], ["https://data.delijn.be/stops/101834", "https://data.delijn.be/stops/107032"], ["https://data.delijn.be/stops/303412", "https://data.delijn.be/stops/303431"], ["https://data.delijn.be/stops/503038", "https://data.delijn.be/stops/503214"], ["https://data.delijn.be/stops/400491", "https://data.delijn.be/stops/407201"], ["https://data.delijn.be/stops/102424", "https://data.delijn.be/stops/105665"], ["https://data.delijn.be/stops/101932", "https://data.delijn.be/stops/106253"], ["https://data.delijn.be/stops/203920", "https://data.delijn.be/stops/203924"], ["https://data.delijn.be/stops/105876", "https://data.delijn.be/stops/105881"], ["https://data.delijn.be/stops/208169", "https://data.delijn.be/stops/209168"], ["https://data.delijn.be/stops/202084", "https://data.delijn.be/stops/202085"], ["https://data.delijn.be/stops/102236", "https://data.delijn.be/stops/105866"], ["https://data.delijn.be/stops/403950", "https://data.delijn.be/stops/404025"], ["https://data.delijn.be/stops/407825", "https://data.delijn.be/stops/407921"], ["https://data.delijn.be/stops/102190", "https://data.delijn.be/stops/102686"], ["https://data.delijn.be/stops/504492", "https://data.delijn.be/stops/509510"], ["https://data.delijn.be/stops/405899", "https://data.delijn.be/stops/410069"], ["https://data.delijn.be/stops/207339", "https://data.delijn.be/stops/207704"], ["https://data.delijn.be/stops/400516", "https://data.delijn.be/stops/401437"], ["https://data.delijn.be/stops/101991", "https://data.delijn.be/stops/105615"], ["https://data.delijn.be/stops/107222", "https://data.delijn.be/stops/107224"], ["https://data.delijn.be/stops/503513", "https://data.delijn.be/stops/508518"], ["https://data.delijn.be/stops/501203", "https://data.delijn.be/stops/506203"], ["https://data.delijn.be/stops/400752", "https://data.delijn.be/stops/409579"], ["https://data.delijn.be/stops/402204", "https://data.delijn.be/stops/402205"], ["https://data.delijn.be/stops/501420", "https://data.delijn.be/stops/506422"], ["https://data.delijn.be/stops/502378", "https://data.delijn.be/stops/507410"], ["https://data.delijn.be/stops/204912", "https://data.delijn.be/stops/205911"], ["https://data.delijn.be/stops/403025", "https://data.delijn.be/stops/403132"], ["https://data.delijn.be/stops/409331", "https://data.delijn.be/stops/410326"], ["https://data.delijn.be/stops/301747", "https://data.delijn.be/stops/308414"], ["https://data.delijn.be/stops/300399", "https://data.delijn.be/stops/300400"], ["https://data.delijn.be/stops/108061", "https://data.delijn.be/stops/108359"], ["https://data.delijn.be/stops/508139", "https://data.delijn.be/stops/508314"], ["https://data.delijn.be/stops/202722", "https://data.delijn.be/stops/203723"], ["https://data.delijn.be/stops/302481", "https://data.delijn.be/stops/302671"], ["https://data.delijn.be/stops/202205", "https://data.delijn.be/stops/203505"], ["https://data.delijn.be/stops/300660", "https://data.delijn.be/stops/302470"], ["https://data.delijn.be/stops/204729", "https://data.delijn.be/stops/204758"], ["https://data.delijn.be/stops/401904", "https://data.delijn.be/stops/406247"], ["https://data.delijn.be/stops/204074", "https://data.delijn.be/stops/205797"], ["https://data.delijn.be/stops/501738", "https://data.delijn.be/stops/506738"], ["https://data.delijn.be/stops/303379", "https://data.delijn.be/stops/303672"], ["https://data.delijn.be/stops/505317", "https://data.delijn.be/stops/507692"], ["https://data.delijn.be/stops/403825", "https://data.delijn.be/stops/404264"], ["https://data.delijn.be/stops/500602", "https://data.delijn.be/stops/501535"], ["https://data.delijn.be/stops/200086", "https://data.delijn.be/stops/203478"], ["https://data.delijn.be/stops/301089", "https://data.delijn.be/stops/301099"], ["https://data.delijn.be/stops/106383", "https://data.delijn.be/stops/106385"], ["https://data.delijn.be/stops/408405", "https://data.delijn.be/stops/408406"], ["https://data.delijn.be/stops/305515", "https://data.delijn.be/stops/305518"], ["https://data.delijn.be/stops/201894", "https://data.delijn.be/stops/211050"], ["https://data.delijn.be/stops/102632", "https://data.delijn.be/stops/108207"], ["https://data.delijn.be/stops/302667", "https://data.delijn.be/stops/302677"], ["https://data.delijn.be/stops/306643", "https://data.delijn.be/stops/306644"], ["https://data.delijn.be/stops/105782", "https://data.delijn.be/stops/105783"], ["https://data.delijn.be/stops/207041", "https://data.delijn.be/stops/216011"], ["https://data.delijn.be/stops/502013", "https://data.delijn.be/stops/507013"], ["https://data.delijn.be/stops/103298", "https://data.delijn.be/stops/105087"], ["https://data.delijn.be/stops/501120", "https://data.delijn.be/stops/506119"], ["https://data.delijn.be/stops/402365", "https://data.delijn.be/stops/410072"], ["https://data.delijn.be/stops/303728", "https://data.delijn.be/stops/303741"], ["https://data.delijn.be/stops/301364", "https://data.delijn.be/stops/306125"], ["https://data.delijn.be/stops/304637", "https://data.delijn.be/stops/305977"], ["https://data.delijn.be/stops/200014", "https://data.delijn.be/stops/201014"], ["https://data.delijn.be/stops/101770", "https://data.delijn.be/stops/102415"], ["https://data.delijn.be/stops/106765", "https://data.delijn.be/stops/106766"], ["https://data.delijn.be/stops/108328", "https://data.delijn.be/stops/108329"], ["https://data.delijn.be/stops/210001", "https://data.delijn.be/stops/211001"], ["https://data.delijn.be/stops/401000", "https://data.delijn.be/stops/403800"], ["https://data.delijn.be/stops/106913", "https://data.delijn.be/stops/106916"], ["https://data.delijn.be/stops/400433", "https://data.delijn.be/stops/405132"], ["https://data.delijn.be/stops/308611", "https://data.delijn.be/stops/308612"], ["https://data.delijn.be/stops/403272", "https://data.delijn.be/stops/403531"], ["https://data.delijn.be/stops/507027", "https://data.delijn.be/stops/507281"], ["https://data.delijn.be/stops/504507", "https://data.delijn.be/stops/509507"], ["https://data.delijn.be/stops/400706", "https://data.delijn.be/stops/401910"], ["https://data.delijn.be/stops/505304", "https://data.delijn.be/stops/509462"], ["https://data.delijn.be/stops/204646", "https://data.delijn.be/stops/205272"], ["https://data.delijn.be/stops/305195", "https://data.delijn.be/stops/305203"], ["https://data.delijn.be/stops/407903", "https://data.delijn.be/stops/407905"], ["https://data.delijn.be/stops/304841", "https://data.delijn.be/stops/307281"], ["https://data.delijn.be/stops/302017", "https://data.delijn.be/stops/302083"], ["https://data.delijn.be/stops/104502", "https://data.delijn.be/stops/107932"], ["https://data.delijn.be/stops/503901", "https://data.delijn.be/stops/508901"], ["https://data.delijn.be/stops/107463", "https://data.delijn.be/stops/109529"], ["https://data.delijn.be/stops/502132", "https://data.delijn.be/stops/507149"], ["https://data.delijn.be/stops/104495", "https://data.delijn.be/stops/104498"], ["https://data.delijn.be/stops/101555", "https://data.delijn.be/stops/103900"], ["https://data.delijn.be/stops/104489", "https://data.delijn.be/stops/104560"], ["https://data.delijn.be/stops/403169", "https://data.delijn.be/stops/403864"], ["https://data.delijn.be/stops/401136", "https://data.delijn.be/stops/401137"], ["https://data.delijn.be/stops/301239", "https://data.delijn.be/stops/301240"], ["https://data.delijn.be/stops/508801", "https://data.delijn.be/stops/508806"], ["https://data.delijn.be/stops/304502", "https://data.delijn.be/stops/304503"], ["https://data.delijn.be/stops/102421", "https://data.delijn.be/stops/106259"], ["https://data.delijn.be/stops/207687", "https://data.delijn.be/stops/207720"], ["https://data.delijn.be/stops/503660", "https://data.delijn.be/stops/508667"], ["https://data.delijn.be/stops/508918", "https://data.delijn.be/stops/508922"], ["https://data.delijn.be/stops/207880", "https://data.delijn.be/stops/207999"], ["https://data.delijn.be/stops/107843", "https://data.delijn.be/stops/109652"], ["https://data.delijn.be/stops/101565", "https://data.delijn.be/stops/104945"], ["https://data.delijn.be/stops/202506", "https://data.delijn.be/stops/203930"], ["https://data.delijn.be/stops/102949", "https://data.delijn.be/stops/106593"], ["https://data.delijn.be/stops/204240", "https://data.delijn.be/stops/204707"], ["https://data.delijn.be/stops/405300", "https://data.delijn.be/stops/405404"], ["https://data.delijn.be/stops/406073", "https://data.delijn.be/stops/407489"], ["https://data.delijn.be/stops/102898", "https://data.delijn.be/stops/106759"], ["https://data.delijn.be/stops/208184", "https://data.delijn.be/stops/209183"], ["https://data.delijn.be/stops/407746", "https://data.delijn.be/stops/407756"], ["https://data.delijn.be/stops/504438", "https://data.delijn.be/stops/505211"], ["https://data.delijn.be/stops/402725", "https://data.delijn.be/stops/402731"], ["https://data.delijn.be/stops/305504", "https://data.delijn.be/stops/305507"], ["https://data.delijn.be/stops/204133", "https://data.delijn.be/stops/204791"], ["https://data.delijn.be/stops/102308", "https://data.delijn.be/stops/102943"], ["https://data.delijn.be/stops/508017", "https://data.delijn.be/stops/508019"], ["https://data.delijn.be/stops/108473", "https://data.delijn.be/stops/108610"], ["https://data.delijn.be/stops/401014", "https://data.delijn.be/stops/401137"], ["https://data.delijn.be/stops/102921", "https://data.delijn.be/stops/104492"], ["https://data.delijn.be/stops/404126", "https://data.delijn.be/stops/408738"], ["https://data.delijn.be/stops/407985", "https://data.delijn.be/stops/408032"], ["https://data.delijn.be/stops/105343", "https://data.delijn.be/stops/109618"], ["https://data.delijn.be/stops/206567", "https://data.delijn.be/stops/206998"], ["https://data.delijn.be/stops/102181", "https://data.delijn.be/stops/102182"], ["https://data.delijn.be/stops/200956", "https://data.delijn.be/stops/203391"], ["https://data.delijn.be/stops/504385", "https://data.delijn.be/stops/509385"], ["https://data.delijn.be/stops/302741", "https://data.delijn.be/stops/302753"], ["https://data.delijn.be/stops/509617", "https://data.delijn.be/stops/509624"], ["https://data.delijn.be/stops/103145", "https://data.delijn.be/stops/109441"], ["https://data.delijn.be/stops/101473", "https://data.delijn.be/stops/103096"], ["https://data.delijn.be/stops/302937", "https://data.delijn.be/stops/303083"], ["https://data.delijn.be/stops/202124", "https://data.delijn.be/stops/203124"], ["https://data.delijn.be/stops/406554", "https://data.delijn.be/stops/406560"], ["https://data.delijn.be/stops/304022", "https://data.delijn.be/stops/304229"], ["https://data.delijn.be/stops/101643", "https://data.delijn.be/stops/105834"], ["https://data.delijn.be/stops/404663", "https://data.delijn.be/stops/404665"], ["https://data.delijn.be/stops/206840", "https://data.delijn.be/stops/207840"], ["https://data.delijn.be/stops/406054", "https://data.delijn.be/stops/406055"], ["https://data.delijn.be/stops/201694", "https://data.delijn.be/stops/203034"], ["https://data.delijn.be/stops/304766", "https://data.delijn.be/stops/304767"], ["https://data.delijn.be/stops/508445", "https://data.delijn.be/stops/508748"], ["https://data.delijn.be/stops/501084", "https://data.delijn.be/stops/506646"], ["https://data.delijn.be/stops/501055", "https://data.delijn.be/stops/501361"], ["https://data.delijn.be/stops/408311", "https://data.delijn.be/stops/408355"], ["https://data.delijn.be/stops/401996", "https://data.delijn.be/stops/404061"], ["https://data.delijn.be/stops/103340", "https://data.delijn.be/stops/105808"], ["https://data.delijn.be/stops/207429", "https://data.delijn.be/stops/207430"], ["https://data.delijn.be/stops/503441", "https://data.delijn.be/stops/508441"], ["https://data.delijn.be/stops/300843", "https://data.delijn.be/stops/306720"], ["https://data.delijn.be/stops/204302", "https://data.delijn.be/stops/205048"], ["https://data.delijn.be/stops/400768", "https://data.delijn.be/stops/405259"], ["https://data.delijn.be/stops/504160", "https://data.delijn.be/stops/509151"], ["https://data.delijn.be/stops/208527", "https://data.delijn.be/stops/208533"], ["https://data.delijn.be/stops/403237", "https://data.delijn.be/stops/410209"], ["https://data.delijn.be/stops/508154", "https://data.delijn.be/stops/509844"], ["https://data.delijn.be/stops/505781", "https://data.delijn.be/stops/506637"], ["https://data.delijn.be/stops/104939", "https://data.delijn.be/stops/107851"], ["https://data.delijn.be/stops/104794", "https://data.delijn.be/stops/106983"], ["https://data.delijn.be/stops/202463", "https://data.delijn.be/stops/203462"], ["https://data.delijn.be/stops/301001", "https://data.delijn.be/stops/306813"], ["https://data.delijn.be/stops/503919", "https://data.delijn.be/stops/504108"], ["https://data.delijn.be/stops/305154", "https://data.delijn.be/stops/306880"], ["https://data.delijn.be/stops/400534", "https://data.delijn.be/stops/403886"], ["https://data.delijn.be/stops/508499", "https://data.delijn.be/stops/508683"], ["https://data.delijn.be/stops/202883", "https://data.delijn.be/stops/207938"], ["https://data.delijn.be/stops/104382", "https://data.delijn.be/stops/104384"], ["https://data.delijn.be/stops/101833", "https://data.delijn.be/stops/107092"], ["https://data.delijn.be/stops/202475", "https://data.delijn.be/stops/202476"], ["https://data.delijn.be/stops/505999", "https://data.delijn.be/stops/508306"], ["https://data.delijn.be/stops/206296", "https://data.delijn.be/stops/207500"], ["https://data.delijn.be/stops/103165", "https://data.delijn.be/stops/103185"], ["https://data.delijn.be/stops/201763", "https://data.delijn.be/stops/209274"], ["https://data.delijn.be/stops/208568", "https://data.delijn.be/stops/209568"], ["https://data.delijn.be/stops/408258", "https://data.delijn.be/stops/408259"], ["https://data.delijn.be/stops/401040", "https://data.delijn.be/stops/401041"], ["https://data.delijn.be/stops/106289", "https://data.delijn.be/stops/106312"], ["https://data.delijn.be/stops/509700", "https://data.delijn.be/stops/509701"], ["https://data.delijn.be/stops/507520", "https://data.delijn.be/stops/509892"], ["https://data.delijn.be/stops/106264", "https://data.delijn.be/stops/106339"], ["https://data.delijn.be/stops/200562", "https://data.delijn.be/stops/200563"], ["https://data.delijn.be/stops/204593", "https://data.delijn.be/stops/204594"], ["https://data.delijn.be/stops/503653", "https://data.delijn.be/stops/508653"], ["https://data.delijn.be/stops/406198", "https://data.delijn.be/stops/406264"], ["https://data.delijn.be/stops/502502", "https://data.delijn.be/stops/505332"], ["https://data.delijn.be/stops/304368", "https://data.delijn.be/stops/307371"], ["https://data.delijn.be/stops/403612", "https://data.delijn.be/stops/405807"], ["https://data.delijn.be/stops/503817", "https://data.delijn.be/stops/508816"], ["https://data.delijn.be/stops/204304", "https://data.delijn.be/stops/205298"], ["https://data.delijn.be/stops/506181", "https://data.delijn.be/stops/506675"], ["https://data.delijn.be/stops/109043", "https://data.delijn.be/stops/109319"], ["https://data.delijn.be/stops/501026", "https://data.delijn.be/stops/501039"], ["https://data.delijn.be/stops/305423", "https://data.delijn.be/stops/305433"], ["https://data.delijn.be/stops/305334", "https://data.delijn.be/stops/307603"], ["https://data.delijn.be/stops/407694", "https://data.delijn.be/stops/407698"], ["https://data.delijn.be/stops/301694", "https://data.delijn.be/stops/301695"], ["https://data.delijn.be/stops/408248", "https://data.delijn.be/stops/408249"], ["https://data.delijn.be/stops/302179", "https://data.delijn.be/stops/306916"], ["https://data.delijn.be/stops/304362", "https://data.delijn.be/stops/304370"], ["https://data.delijn.be/stops/402759", "https://data.delijn.be/stops/402767"], ["https://data.delijn.be/stops/404401", "https://data.delijn.be/stops/404425"], ["https://data.delijn.be/stops/407906", "https://data.delijn.be/stops/408420"], ["https://data.delijn.be/stops/105739", "https://data.delijn.be/stops/109834"], ["https://data.delijn.be/stops/504213", "https://data.delijn.be/stops/504219"], ["https://data.delijn.be/stops/302975", "https://data.delijn.be/stops/303026"], ["https://data.delijn.be/stops/200683", "https://data.delijn.be/stops/209650"], ["https://data.delijn.be/stops/508255", "https://data.delijn.be/stops/508430"], ["https://data.delijn.be/stops/305083", "https://data.delijn.be/stops/305089"], ["https://data.delijn.be/stops/207853", "https://data.delijn.be/stops/207858"], ["https://data.delijn.be/stops/305537", "https://data.delijn.be/stops/308553"], ["https://data.delijn.be/stops/308487", "https://data.delijn.be/stops/308489"], ["https://data.delijn.be/stops/505603", "https://data.delijn.be/stops/505623"], ["https://data.delijn.be/stops/105871", "https://data.delijn.be/stops/105888"], ["https://data.delijn.be/stops/200163", "https://data.delijn.be/stops/201418"], ["https://data.delijn.be/stops/400236", "https://data.delijn.be/stops/410000"], ["https://data.delijn.be/stops/200764", "https://data.delijn.be/stops/208303"], ["https://data.delijn.be/stops/503793", "https://data.delijn.be/stops/508798"], ["https://data.delijn.be/stops/200028", "https://data.delijn.be/stops/200446"], ["https://data.delijn.be/stops/208247", "https://data.delijn.be/stops/208855"], ["https://data.delijn.be/stops/106198", "https://data.delijn.be/stops/106199"], ["https://data.delijn.be/stops/401578", "https://data.delijn.be/stops/402281"], ["https://data.delijn.be/stops/206093", "https://data.delijn.be/stops/207093"], ["https://data.delijn.be/stops/402298", "https://data.delijn.be/stops/402299"], ["https://data.delijn.be/stops/501382", "https://data.delijn.be/stops/509203"], ["https://data.delijn.be/stops/204144", "https://data.delijn.be/stops/206633"], ["https://data.delijn.be/stops/104720", "https://data.delijn.be/stops/104721"], ["https://data.delijn.be/stops/302870", "https://data.delijn.be/stops/307072"], ["https://data.delijn.be/stops/301022", "https://data.delijn.be/stops/305916"], ["https://data.delijn.be/stops/505184", "https://data.delijn.be/stops/505788"], ["https://data.delijn.be/stops/202768", "https://data.delijn.be/stops/203768"], ["https://data.delijn.be/stops/305445", "https://data.delijn.be/stops/306704"], ["https://data.delijn.be/stops/301871", "https://data.delijn.be/stops/301872"], ["https://data.delijn.be/stops/204654", "https://data.delijn.be/stops/205654"], ["https://data.delijn.be/stops/308749", "https://data.delijn.be/stops/308750"], ["https://data.delijn.be/stops/104816", "https://data.delijn.be/stops/105166"], ["https://data.delijn.be/stops/106176", "https://data.delijn.be/stops/106177"], ["https://data.delijn.be/stops/403951", "https://data.delijn.be/stops/404025"], ["https://data.delijn.be/stops/405211", "https://data.delijn.be/stops/410167"], ["https://data.delijn.be/stops/105472", "https://data.delijn.be/stops/105674"], ["https://data.delijn.be/stops/407614", "https://data.delijn.be/stops/407615"], ["https://data.delijn.be/stops/306846", "https://data.delijn.be/stops/306866"], ["https://data.delijn.be/stops/108361", "https://data.delijn.be/stops/109012"], ["https://data.delijn.be/stops/308725", "https://data.delijn.be/stops/308733"], ["https://data.delijn.be/stops/505583", "https://data.delijn.be/stops/507254"], ["https://data.delijn.be/stops/301975", "https://data.delijn.be/stops/304563"], ["https://data.delijn.be/stops/206556", "https://data.delijn.be/stops/207555"], ["https://data.delijn.be/stops/109248", "https://data.delijn.be/stops/109266"], ["https://data.delijn.be/stops/302904", "https://data.delijn.be/stops/303227"], ["https://data.delijn.be/stops/401519", "https://data.delijn.be/stops/401710"], ["https://data.delijn.be/stops/202966", "https://data.delijn.be/stops/203967"], ["https://data.delijn.be/stops/303560", "https://data.delijn.be/stops/308617"], ["https://data.delijn.be/stops/201652", "https://data.delijn.be/stops/203316"], ["https://data.delijn.be/stops/208062", "https://data.delijn.be/stops/209063"], ["https://data.delijn.be/stops/102910", "https://data.delijn.be/stops/104889"], ["https://data.delijn.be/stops/402659", "https://data.delijn.be/stops/402716"], ["https://data.delijn.be/stops/105533", "https://data.delijn.be/stops/105537"], ["https://data.delijn.be/stops/200488", "https://data.delijn.be/stops/202455"], ["https://data.delijn.be/stops/401466", "https://data.delijn.be/stops/401487"], ["https://data.delijn.be/stops/405564", "https://data.delijn.be/stops/405565"], ["https://data.delijn.be/stops/503644", "https://data.delijn.be/stops/503727"], ["https://data.delijn.be/stops/502416", "https://data.delijn.be/stops/507430"], ["https://data.delijn.be/stops/208339", "https://data.delijn.be/stops/208782"], ["https://data.delijn.be/stops/207706", "https://data.delijn.be/stops/207707"], ["https://data.delijn.be/stops/206124", "https://data.delijn.be/stops/206132"], ["https://data.delijn.be/stops/502431", "https://data.delijn.be/stops/502622"], ["https://data.delijn.be/stops/108999", "https://data.delijn.be/stops/408147"], ["https://data.delijn.be/stops/204541", "https://data.delijn.be/stops/204614"], ["https://data.delijn.be/stops/406634", "https://data.delijn.be/stops/406647"], ["https://data.delijn.be/stops/201470", "https://data.delijn.be/stops/203455"], ["https://data.delijn.be/stops/206772", "https://data.delijn.be/stops/206784"], ["https://data.delijn.be/stops/301402", "https://data.delijn.be/stops/306313"], ["https://data.delijn.be/stops/404666", "https://data.delijn.be/stops/404668"], ["https://data.delijn.be/stops/506393", "https://data.delijn.be/stops/506464"], ["https://data.delijn.be/stops/206176", "https://data.delijn.be/stops/206447"], ["https://data.delijn.be/stops/303588", "https://data.delijn.be/stops/305267"], ["https://data.delijn.be/stops/108707", "https://data.delijn.be/stops/108852"], ["https://data.delijn.be/stops/208180", "https://data.delijn.be/stops/209179"], ["https://data.delijn.be/stops/209387", "https://data.delijn.be/stops/209449"], ["https://data.delijn.be/stops/502636", "https://data.delijn.be/stops/502806"], ["https://data.delijn.be/stops/502423", "https://data.delijn.be/stops/507423"], ["https://data.delijn.be/stops/200698", "https://data.delijn.be/stops/200744"], ["https://data.delijn.be/stops/302309", "https://data.delijn.be/stops/302332"], ["https://data.delijn.be/stops/306650", "https://data.delijn.be/stops/306651"], ["https://data.delijn.be/stops/502136", "https://data.delijn.be/stops/507138"], ["https://data.delijn.be/stops/504723", "https://data.delijn.be/stops/505837"], ["https://data.delijn.be/stops/306925", "https://data.delijn.be/stops/308726"], ["https://data.delijn.be/stops/403454", "https://data.delijn.be/stops/403455"], ["https://data.delijn.be/stops/102023", "https://data.delijn.be/stops/109960"], ["https://data.delijn.be/stops/405733", "https://data.delijn.be/stops/405736"], ["https://data.delijn.be/stops/303996", "https://data.delijn.be/stops/308447"], ["https://data.delijn.be/stops/504369", "https://data.delijn.be/stops/505390"], ["https://data.delijn.be/stops/203674", "https://data.delijn.be/stops/203675"], ["https://data.delijn.be/stops/505087", "https://data.delijn.be/stops/505223"], ["https://data.delijn.be/stops/501240", "https://data.delijn.be/stops/501257"], ["https://data.delijn.be/stops/104133", "https://data.delijn.be/stops/108043"], ["https://data.delijn.be/stops/205100", "https://data.delijn.be/stops/205896"], ["https://data.delijn.be/stops/103098", "https://data.delijn.be/stops/103318"], ["https://data.delijn.be/stops/109750", "https://data.delijn.be/stops/109901"], ["https://data.delijn.be/stops/105891", "https://data.delijn.be/stops/105906"], ["https://data.delijn.be/stops/308139", "https://data.delijn.be/stops/308144"], ["https://data.delijn.be/stops/307002", "https://data.delijn.be/stops/308095"], ["https://data.delijn.be/stops/303416", "https://data.delijn.be/stops/303420"], ["https://data.delijn.be/stops/206604", "https://data.delijn.be/stops/216020"], ["https://data.delijn.be/stops/200010", "https://data.delijn.be/stops/210021"], ["https://data.delijn.be/stops/400310", "https://data.delijn.be/stops/400384"], ["https://data.delijn.be/stops/203831", "https://data.delijn.be/stops/203947"], ["https://data.delijn.be/stops/405339", "https://data.delijn.be/stops/306920"], ["https://data.delijn.be/stops/103146", "https://data.delijn.be/stops/106296"], ["https://data.delijn.be/stops/301967", "https://data.delijn.be/stops/307226"], ["https://data.delijn.be/stops/207958", "https://data.delijn.be/stops/302153"], ["https://data.delijn.be/stops/300750", "https://data.delijn.be/stops/300793"], ["https://data.delijn.be/stops/206703", "https://data.delijn.be/stops/207976"], ["https://data.delijn.be/stops/305726", "https://data.delijn.be/stops/305727"], ["https://data.delijn.be/stops/102541", "https://data.delijn.be/stops/408191"], ["https://data.delijn.be/stops/403982", "https://data.delijn.be/stops/403985"], ["https://data.delijn.be/stops/408125", "https://data.delijn.be/stops/408433"], ["https://data.delijn.be/stops/102185", "https://data.delijn.be/stops/102340"], ["https://data.delijn.be/stops/401467", "https://data.delijn.be/stops/401486"], ["https://data.delijn.be/stops/105163", "https://data.delijn.be/stops/107504"], ["https://data.delijn.be/stops/107110", "https://data.delijn.be/stops/108820"], ["https://data.delijn.be/stops/302609", "https://data.delijn.be/stops/302636"], ["https://data.delijn.be/stops/207016", "https://data.delijn.be/stops/207020"], ["https://data.delijn.be/stops/502797", "https://data.delijn.be/stops/505015"], ["https://data.delijn.be/stops/501351", "https://data.delijn.be/stops/506453"], ["https://data.delijn.be/stops/302498", "https://data.delijn.be/stops/302503"], ["https://data.delijn.be/stops/300869", "https://data.delijn.be/stops/302240"], ["https://data.delijn.be/stops/201938", "https://data.delijn.be/stops/203449"], ["https://data.delijn.be/stops/107315", "https://data.delijn.be/stops/107320"], ["https://data.delijn.be/stops/108072", "https://data.delijn.be/stops/108463"], ["https://data.delijn.be/stops/206299", "https://data.delijn.be/stops/206458"], ["https://data.delijn.be/stops/102511", "https://data.delijn.be/stops/406470"], ["https://data.delijn.be/stops/303193", "https://data.delijn.be/stops/303209"], ["https://data.delijn.be/stops/303983", "https://data.delijn.be/stops/304293"], ["https://data.delijn.be/stops/101802", "https://data.delijn.be/stops/105750"], ["https://data.delijn.be/stops/101188", "https://data.delijn.be/stops/101189"], ["https://data.delijn.be/stops/302334", "https://data.delijn.be/stops/302574"], ["https://data.delijn.be/stops/302843", "https://data.delijn.be/stops/302844"], ["https://data.delijn.be/stops/104364", "https://data.delijn.be/stops/104733"], ["https://data.delijn.be/stops/202715", "https://data.delijn.be/stops/203714"], ["https://data.delijn.be/stops/208402", "https://data.delijn.be/stops/208411"], ["https://data.delijn.be/stops/108323", "https://data.delijn.be/stops/108327"], ["https://data.delijn.be/stops/101191", "https://data.delijn.be/stops/205652"], ["https://data.delijn.be/stops/200007", "https://data.delijn.be/stops/201416"], ["https://data.delijn.be/stops/304481", "https://data.delijn.be/stops/304518"], ["https://data.delijn.be/stops/502454", "https://data.delijn.be/stops/509830"], ["https://data.delijn.be/stops/208492", "https://data.delijn.be/stops/209492"], ["https://data.delijn.be/stops/202355", "https://data.delijn.be/stops/202648"], ["https://data.delijn.be/stops/201242", "https://data.delijn.be/stops/202350"], ["https://data.delijn.be/stops/307818", "https://data.delijn.be/stops/308755"], ["https://data.delijn.be/stops/205144", "https://data.delijn.be/stops/205145"], ["https://data.delijn.be/stops/305177", "https://data.delijn.be/stops/305203"], ["https://data.delijn.be/stops/206220", "https://data.delijn.be/stops/207220"], ["https://data.delijn.be/stops/505153", "https://data.delijn.be/stops/505155"], ["https://data.delijn.be/stops/401812", "https://data.delijn.be/stops/401847"], ["https://data.delijn.be/stops/201239", "https://data.delijn.be/stops/201240"], ["https://data.delijn.be/stops/503676", "https://data.delijn.be/stops/508959"], ["https://data.delijn.be/stops/101444", "https://data.delijn.be/stops/101446"], ["https://data.delijn.be/stops/501365", "https://data.delijn.be/stops/506365"], ["https://data.delijn.be/stops/205216", "https://data.delijn.be/stops/205217"], ["https://data.delijn.be/stops/106967", "https://data.delijn.be/stops/106980"], ["https://data.delijn.be/stops/105161", "https://data.delijn.be/stops/105162"], ["https://data.delijn.be/stops/102710", "https://data.delijn.be/stops/105130"], ["https://data.delijn.be/stops/106604", "https://data.delijn.be/stops/106682"], ["https://data.delijn.be/stops/206069", "https://data.delijn.be/stops/207069"], ["https://data.delijn.be/stops/409294", "https://data.delijn.be/stops/409300"], ["https://data.delijn.be/stops/105709", "https://data.delijn.be/stops/105713"], ["https://data.delijn.be/stops/105703", "https://data.delijn.be/stops/106072"], ["https://data.delijn.be/stops/205222", "https://data.delijn.be/stops/205248"], ["https://data.delijn.be/stops/208051", "https://data.delijn.be/stops/209050"], ["https://data.delijn.be/stops/208641", "https://data.delijn.be/stops/208642"], ["https://data.delijn.be/stops/200291", "https://data.delijn.be/stops/200344"], ["https://data.delijn.be/stops/306861", "https://data.delijn.be/stops/307731"], ["https://data.delijn.be/stops/108264", "https://data.delijn.be/stops/108267"], ["https://data.delijn.be/stops/403748", "https://data.delijn.be/stops/403749"], ["https://data.delijn.be/stops/502441", "https://data.delijn.be/stops/507441"], ["https://data.delijn.be/stops/302000", "https://data.delijn.be/stops/302001"], ["https://data.delijn.be/stops/506439", "https://data.delijn.be/stops/506444"], ["https://data.delijn.be/stops/200265", "https://data.delijn.be/stops/201265"], ["https://data.delijn.be/stops/503463", "https://data.delijn.be/stops/508205"], ["https://data.delijn.be/stops/108654", "https://data.delijn.be/stops/306631"], ["https://data.delijn.be/stops/502607", "https://data.delijn.be/stops/502608"], ["https://data.delijn.be/stops/106024", "https://data.delijn.be/stops/106192"], ["https://data.delijn.be/stops/105577", "https://data.delijn.be/stops/106354"], ["https://data.delijn.be/stops/208808", "https://data.delijn.be/stops/209432"], ["https://data.delijn.be/stops/208024", "https://data.delijn.be/stops/208173"], ["https://data.delijn.be/stops/206175", "https://data.delijn.be/stops/207480"], ["https://data.delijn.be/stops/105028", "https://data.delijn.be/stops/105173"], ["https://data.delijn.be/stops/407067", "https://data.delijn.be/stops/407070"], ["https://data.delijn.be/stops/200261", "https://data.delijn.be/stops/201259"], ["https://data.delijn.be/stops/308134", "https://data.delijn.be/stops/308178"], ["https://data.delijn.be/stops/103982", "https://data.delijn.be/stops/105468"], ["https://data.delijn.be/stops/109195", "https://data.delijn.be/stops/109196"], ["https://data.delijn.be/stops/502549", "https://data.delijn.be/stops/502550"], ["https://data.delijn.be/stops/504499", "https://data.delijn.be/stops/504501"], ["https://data.delijn.be/stops/209212", "https://data.delijn.be/stops/209213"], ["https://data.delijn.be/stops/401647", "https://data.delijn.be/stops/408712"], ["https://data.delijn.be/stops/504085", "https://data.delijn.be/stops/504088"], ["https://data.delijn.be/stops/400766", "https://data.delijn.be/stops/400769"], ["https://data.delijn.be/stops/300455", "https://data.delijn.be/stops/300456"], ["https://data.delijn.be/stops/104244", "https://data.delijn.be/stops/105266"], ["https://data.delijn.be/stops/107350", "https://data.delijn.be/stops/108740"], ["https://data.delijn.be/stops/202632", "https://data.delijn.be/stops/203634"], ["https://data.delijn.be/stops/305258", "https://data.delijn.be/stops/305320"], ["https://data.delijn.be/stops/403269", "https://data.delijn.be/stops/409522"], ["https://data.delijn.be/stops/308496", "https://data.delijn.be/stops/308503"], ["https://data.delijn.be/stops/304491", "https://data.delijn.be/stops/304522"], ["https://data.delijn.be/stops/502210", "https://data.delijn.be/stops/505149"], ["https://data.delijn.be/stops/408078", "https://data.delijn.be/stops/305705"], ["https://data.delijn.be/stops/301271", "https://data.delijn.be/stops/303646"], ["https://data.delijn.be/stops/101068", "https://data.delijn.be/stops/101072"], ["https://data.delijn.be/stops/202916", "https://data.delijn.be/stops/203911"], ["https://data.delijn.be/stops/505182", "https://data.delijn.be/stops/509410"], ["https://data.delijn.be/stops/200014", "https://data.delijn.be/stops/201551"], ["https://data.delijn.be/stops/407496", "https://data.delijn.be/stops/410254"], ["https://data.delijn.be/stops/203400", "https://data.delijn.be/stops/209262"], ["https://data.delijn.be/stops/102219", "https://data.delijn.be/stops/105542"], ["https://data.delijn.be/stops/404647", "https://data.delijn.be/stops/404691"], ["https://data.delijn.be/stops/404532", "https://data.delijn.be/stops/404569"], ["https://data.delijn.be/stops/200820", "https://data.delijn.be/stops/200824"], ["https://data.delijn.be/stops/206351", "https://data.delijn.be/stops/206916"], ["https://data.delijn.be/stops/301032", "https://data.delijn.be/stops/301168"], ["https://data.delijn.be/stops/407204", "https://data.delijn.be/stops/407205"], ["https://data.delijn.be/stops/504581", "https://data.delijn.be/stops/505543"], ["https://data.delijn.be/stops/308728", "https://data.delijn.be/stops/308729"], ["https://data.delijn.be/stops/505515", "https://data.delijn.be/stops/505600"], ["https://data.delijn.be/stops/401600", "https://data.delijn.be/stops/405797"], ["https://data.delijn.be/stops/201319", "https://data.delijn.be/stops/201996"], ["https://data.delijn.be/stops/401818", "https://data.delijn.be/stops/406824"], ["https://data.delijn.be/stops/406558", "https://data.delijn.be/stops/407374"], ["https://data.delijn.be/stops/404662", "https://data.delijn.be/stops/404670"], ["https://data.delijn.be/stops/105261", "https://data.delijn.be/stops/105263"], ["https://data.delijn.be/stops/202579", "https://data.delijn.be/stops/202604"], ["https://data.delijn.be/stops/202417", "https://data.delijn.be/stops/202418"], ["https://data.delijn.be/stops/403039", "https://data.delijn.be/stops/404754"], ["https://data.delijn.be/stops/304973", "https://data.delijn.be/stops/304975"], ["https://data.delijn.be/stops/401893", "https://data.delijn.be/stops/404927"], ["https://data.delijn.be/stops/500945", "https://data.delijn.be/stops/504429"], ["https://data.delijn.be/stops/403415", "https://data.delijn.be/stops/403871"], ["https://data.delijn.be/stops/507012", "https://data.delijn.be/stops/507022"], ["https://data.delijn.be/stops/304581", "https://data.delijn.be/stops/304623"], ["https://data.delijn.be/stops/502756", "https://data.delijn.be/stops/507756"], ["https://data.delijn.be/stops/509623", "https://data.delijn.be/stops/509626"], ["https://data.delijn.be/stops/306069", "https://data.delijn.be/stops/306070"], ["https://data.delijn.be/stops/105471", "https://data.delijn.be/stops/105472"], ["https://data.delijn.be/stops/505017", "https://data.delijn.be/stops/507363"], ["https://data.delijn.be/stops/108315", "https://data.delijn.be/stops/108935"], ["https://data.delijn.be/stops/102430", "https://data.delijn.be/stops/107670"], ["https://data.delijn.be/stops/404329", "https://data.delijn.be/stops/404782"], ["https://data.delijn.be/stops/105412", "https://data.delijn.be/stops/105413"], ["https://data.delijn.be/stops/207098", "https://data.delijn.be/stops/207931"], ["https://data.delijn.be/stops/206891", "https://data.delijn.be/stops/207912"], ["https://data.delijn.be/stops/501447", "https://data.delijn.be/stops/506362"], ["https://data.delijn.be/stops/200411", "https://data.delijn.be/stops/201410"], ["https://data.delijn.be/stops/401486", "https://data.delijn.be/stops/401885"], ["https://data.delijn.be/stops/403811", "https://data.delijn.be/stops/403816"], ["https://data.delijn.be/stops/405860", "https://data.delijn.be/stops/409737"], ["https://data.delijn.be/stops/109196", "https://data.delijn.be/stops/109205"], ["https://data.delijn.be/stops/200702", "https://data.delijn.be/stops/203614"], ["https://data.delijn.be/stops/301624", "https://data.delijn.be/stops/307339"], ["https://data.delijn.be/stops/305482", "https://data.delijn.be/stops/305515"], ["https://data.delijn.be/stops/201783", "https://data.delijn.be/stops/209931"], ["https://data.delijn.be/stops/206116", "https://data.delijn.be/stops/207116"], ["https://data.delijn.be/stops/505793", "https://data.delijn.be/stops/509888"], ["https://data.delijn.be/stops/102382", "https://data.delijn.be/stops/106357"], ["https://data.delijn.be/stops/408235", "https://data.delijn.be/stops/408260"], ["https://data.delijn.be/stops/408255", "https://data.delijn.be/stops/408392"], ["https://data.delijn.be/stops/307344", "https://data.delijn.be/stops/308454"], ["https://data.delijn.be/stops/102378", "https://data.delijn.be/stops/106663"], ["https://data.delijn.be/stops/204513", "https://data.delijn.be/stops/205333"], ["https://data.delijn.be/stops/501107", "https://data.delijn.be/stops/505085"], ["https://data.delijn.be/stops/504421", "https://data.delijn.be/stops/504433"], ["https://data.delijn.be/stops/503665", "https://data.delijn.be/stops/508665"], ["https://data.delijn.be/stops/404694", "https://data.delijn.be/stops/407255"], ["https://data.delijn.be/stops/106150", "https://data.delijn.be/stops/106155"], ["https://data.delijn.be/stops/102754", "https://data.delijn.be/stops/505600"], ["https://data.delijn.be/stops/303362", "https://data.delijn.be/stops/303396"], ["https://data.delijn.be/stops/301304", "https://data.delijn.be/stops/305918"], ["https://data.delijn.be/stops/202171", "https://data.delijn.be/stops/203117"], ["https://data.delijn.be/stops/307370", "https://data.delijn.be/stops/307376"], ["https://data.delijn.be/stops/208511", "https://data.delijn.be/stops/209511"], ["https://data.delijn.be/stops/107738", "https://data.delijn.be/stops/107740"], ["https://data.delijn.be/stops/303455", "https://data.delijn.be/stops/303457"], ["https://data.delijn.be/stops/206676", "https://data.delijn.be/stops/209102"], ["https://data.delijn.be/stops/404961", "https://data.delijn.be/stops/404962"], ["https://data.delijn.be/stops/503070", "https://data.delijn.be/stops/503074"], ["https://data.delijn.be/stops/303430", "https://data.delijn.be/stops/303433"], ["https://data.delijn.be/stops/107649", "https://data.delijn.be/stops/108957"], ["https://data.delijn.be/stops/201871", "https://data.delijn.be/stops/203665"], ["https://data.delijn.be/stops/503387", "https://data.delijn.be/stops/508235"], ["https://data.delijn.be/stops/208582", "https://data.delijn.be/stops/208841"], ["https://data.delijn.be/stops/402194", "https://data.delijn.be/stops/402345"], ["https://data.delijn.be/stops/406316", "https://data.delijn.be/stops/406393"], ["https://data.delijn.be/stops/201008", "https://data.delijn.be/stops/210070"], ["https://data.delijn.be/stops/503594", "https://data.delijn.be/stops/508598"], ["https://data.delijn.be/stops/301457", "https://data.delijn.be/stops/301494"], ["https://data.delijn.be/stops/410390", "https://data.delijn.be/stops/410391"], ["https://data.delijn.be/stops/308492", "https://data.delijn.be/stops/308493"], ["https://data.delijn.be/stops/400184", "https://data.delijn.be/stops/407664"], ["https://data.delijn.be/stops/207334", "https://data.delijn.be/stops/207363"], ["https://data.delijn.be/stops/408820", "https://data.delijn.be/stops/408833"], ["https://data.delijn.be/stops/504394", "https://data.delijn.be/stops/509394"], ["https://data.delijn.be/stops/503136", "https://data.delijn.be/stops/504829"], ["https://data.delijn.be/stops/105092", "https://data.delijn.be/stops/108881"], ["https://data.delijn.be/stops/304802", "https://data.delijn.be/stops/307881"], ["https://data.delijn.be/stops/102045", "https://data.delijn.be/stops/104175"], ["https://data.delijn.be/stops/102513", "https://data.delijn.be/stops/102516"], ["https://data.delijn.be/stops/302931", "https://data.delijn.be/stops/304479"], ["https://data.delijn.be/stops/107183", "https://data.delijn.be/stops/107186"], ["https://data.delijn.be/stops/308377", "https://data.delijn.be/stops/308408"], ["https://data.delijn.be/stops/403968", "https://data.delijn.be/stops/408709"], ["https://data.delijn.be/stops/305741", "https://data.delijn.be/stops/307118"], ["https://data.delijn.be/stops/503092", "https://data.delijn.be/stops/508101"], ["https://data.delijn.be/stops/308173", "https://data.delijn.be/stops/308240"], ["https://data.delijn.be/stops/408222", "https://data.delijn.be/stops/408366"], ["https://data.delijn.be/stops/407826", "https://data.delijn.be/stops/408070"], ["https://data.delijn.be/stops/206915", "https://data.delijn.be/stops/207861"], ["https://data.delijn.be/stops/406606", "https://data.delijn.be/stops/406616"], ["https://data.delijn.be/stops/103095", "https://data.delijn.be/stops/104570"], ["https://data.delijn.be/stops/305014", "https://data.delijn.be/stops/305033"], ["https://data.delijn.be/stops/201658", "https://data.delijn.be/stops/205928"], ["https://data.delijn.be/stops/200223", "https://data.delijn.be/stops/200226"], ["https://data.delijn.be/stops/200395", "https://data.delijn.be/stops/208718"], ["https://data.delijn.be/stops/203633", "https://data.delijn.be/stops/205068"], ["https://data.delijn.be/stops/504112", "https://data.delijn.be/stops/504215"], ["https://data.delijn.be/stops/101705", "https://data.delijn.be/stops/104402"], ["https://data.delijn.be/stops/202118", "https://data.delijn.be/stops/205795"], ["https://data.delijn.be/stops/304857", "https://data.delijn.be/stops/305519"], ["https://data.delijn.be/stops/504273", "https://data.delijn.be/stops/504275"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/504559"], ["https://data.delijn.be/stops/402190", "https://data.delijn.be/stops/402498"], ["https://data.delijn.be/stops/503115", "https://data.delijn.be/stops/505105"], ["https://data.delijn.be/stops/401960", "https://data.delijn.be/stops/401961"], ["https://data.delijn.be/stops/109442", "https://data.delijn.be/stops/109443"], ["https://data.delijn.be/stops/300476", "https://data.delijn.be/stops/300545"], ["https://data.delijn.be/stops/304910", "https://data.delijn.be/stops/306408"], ["https://data.delijn.be/stops/105413", "https://data.delijn.be/stops/105416"], ["https://data.delijn.be/stops/501154", "https://data.delijn.be/stops/509836"], ["https://data.delijn.be/stops/105573", "https://data.delijn.be/stops/106289"], ["https://data.delijn.be/stops/408918", "https://data.delijn.be/stops/408922"], ["https://data.delijn.be/stops/401848", "https://data.delijn.be/stops/401851"], ["https://data.delijn.be/stops/403001", "https://data.delijn.be/stops/403277"], ["https://data.delijn.be/stops/407818", "https://data.delijn.be/stops/408004"], ["https://data.delijn.be/stops/307989", "https://data.delijn.be/stops/307990"], ["https://data.delijn.be/stops/502925", "https://data.delijn.be/stops/507499"], ["https://data.delijn.be/stops/206304", "https://data.delijn.be/stops/207304"], ["https://data.delijn.be/stops/200161", "https://data.delijn.be/stops/201161"], ["https://data.delijn.be/stops/406939", "https://data.delijn.be/stops/407140"], ["https://data.delijn.be/stops/200503", "https://data.delijn.be/stops/201454"], ["https://data.delijn.be/stops/206189", "https://data.delijn.be/stops/207188"], ["https://data.delijn.be/stops/109258", "https://data.delijn.be/stops/109259"], ["https://data.delijn.be/stops/402726", "https://data.delijn.be/stops/402730"], ["https://data.delijn.be/stops/406229", "https://data.delijn.be/stops/406254"], ["https://data.delijn.be/stops/301887", "https://data.delijn.be/stops/305974"], ["https://data.delijn.be/stops/200958", "https://data.delijn.be/stops/202470"], ["https://data.delijn.be/stops/402128", "https://data.delijn.be/stops/402129"], ["https://data.delijn.be/stops/302967", "https://data.delijn.be/stops/302968"], ["https://data.delijn.be/stops/101401", "https://data.delijn.be/stops/101402"], ["https://data.delijn.be/stops/209110", "https://data.delijn.be/stops/209341"], ["https://data.delijn.be/stops/507350", "https://data.delijn.be/stops/507921"], ["https://data.delijn.be/stops/200506", "https://data.delijn.be/stops/200507"], ["https://data.delijn.be/stops/102174", "https://data.delijn.be/stops/109367"], ["https://data.delijn.be/stops/105716", "https://data.delijn.be/stops/106140"], ["https://data.delijn.be/stops/300976", "https://data.delijn.be/stops/300977"], ["https://data.delijn.be/stops/306666", "https://data.delijn.be/stops/306667"], ["https://data.delijn.be/stops/204616", "https://data.delijn.be/stops/204659"], ["https://data.delijn.be/stops/401451", "https://data.delijn.be/stops/402036"], ["https://data.delijn.be/stops/206545", "https://data.delijn.be/stops/206550"], ["https://data.delijn.be/stops/405759", "https://data.delijn.be/stops/302843"], ["https://data.delijn.be/stops/101408", "https://data.delijn.be/stops/107291"], ["https://data.delijn.be/stops/301114", "https://data.delijn.be/stops/307683"], ["https://data.delijn.be/stops/105318", "https://data.delijn.be/stops/105341"], ["https://data.delijn.be/stops/402706", "https://data.delijn.be/stops/402707"], ["https://data.delijn.be/stops/106343", "https://data.delijn.be/stops/106345"], ["https://data.delijn.be/stops/308516", "https://data.delijn.be/stops/308517"], ["https://data.delijn.be/stops/403293", "https://data.delijn.be/stops/403352"], ["https://data.delijn.be/stops/205098", "https://data.delijn.be/stops/205126"], ["https://data.delijn.be/stops/107492", "https://data.delijn.be/stops/305798"], ["https://data.delijn.be/stops/504646", "https://data.delijn.be/stops/509646"], ["https://data.delijn.be/stops/300279", "https://data.delijn.be/stops/300291"], ["https://data.delijn.be/stops/308518", "https://data.delijn.be/stops/308519"], ["https://data.delijn.be/stops/405288", "https://data.delijn.be/stops/406276"], ["https://data.delijn.be/stops/105556", "https://data.delijn.be/stops/106033"], ["https://data.delijn.be/stops/207190", "https://data.delijn.be/stops/207692"], ["https://data.delijn.be/stops/501220", "https://data.delijn.be/stops/506220"], ["https://data.delijn.be/stops/105549", "https://data.delijn.be/stops/106023"], ["https://data.delijn.be/stops/502712", "https://data.delijn.be/stops/507546"], ["https://data.delijn.be/stops/300650", "https://data.delijn.be/stops/301839"], ["https://data.delijn.be/stops/403920", "https://data.delijn.be/stops/405946"], ["https://data.delijn.be/stops/300668", "https://data.delijn.be/stops/300678"], ["https://data.delijn.be/stops/302474", "https://data.delijn.be/stops/302704"], ["https://data.delijn.be/stops/502149", "https://data.delijn.be/stops/502243"], ["https://data.delijn.be/stops/504616", "https://data.delijn.be/stops/509616"], ["https://data.delijn.be/stops/302351", "https://data.delijn.be/stops/302354"], ["https://data.delijn.be/stops/206675", "https://data.delijn.be/stops/208163"], ["https://data.delijn.be/stops/302272", "https://data.delijn.be/stops/302296"], ["https://data.delijn.be/stops/103022", "https://data.delijn.be/stops/406504"], ["https://data.delijn.be/stops/302703", "https://data.delijn.be/stops/302704"], ["https://data.delijn.be/stops/302711", "https://data.delijn.be/stops/302723"], ["https://data.delijn.be/stops/303105", "https://data.delijn.be/stops/305158"], ["https://data.delijn.be/stops/101477", "https://data.delijn.be/stops/101973"], ["https://data.delijn.be/stops/103678", "https://data.delijn.be/stops/108967"], ["https://data.delijn.be/stops/101538", "https://data.delijn.be/stops/108262"], ["https://data.delijn.be/stops/104009", "https://data.delijn.be/stops/106894"], ["https://data.delijn.be/stops/304359", "https://data.delijn.be/stops/304362"], ["https://data.delijn.be/stops/200525", "https://data.delijn.be/stops/205922"], ["https://data.delijn.be/stops/102502", "https://data.delijn.be/stops/400004"], ["https://data.delijn.be/stops/504345", "https://data.delijn.be/stops/509342"], ["https://data.delijn.be/stops/200436", "https://data.delijn.be/stops/200641"], ["https://data.delijn.be/stops/501072", "https://data.delijn.be/stops/506075"], ["https://data.delijn.be/stops/200900", "https://data.delijn.be/stops/505507"], ["https://data.delijn.be/stops/506284", "https://data.delijn.be/stops/506489"], ["https://data.delijn.be/stops/206255", "https://data.delijn.be/stops/207255"], ["https://data.delijn.be/stops/206705", "https://data.delijn.be/stops/207607"], ["https://data.delijn.be/stops/109278", "https://data.delijn.be/stops/109279"], ["https://data.delijn.be/stops/102010", "https://data.delijn.be/stops/107125"], ["https://data.delijn.be/stops/300471", "https://data.delijn.be/stops/307087"], ["https://data.delijn.be/stops/502174", "https://data.delijn.be/stops/507182"], ["https://data.delijn.be/stops/403984", "https://data.delijn.be/stops/404030"], ["https://data.delijn.be/stops/402572", "https://data.delijn.be/stops/402617"], ["https://data.delijn.be/stops/304484", "https://data.delijn.be/stops/304530"], ["https://data.delijn.be/stops/206760", "https://data.delijn.be/stops/206853"], ["https://data.delijn.be/stops/503646", "https://data.delijn.be/stops/503703"], ["https://data.delijn.be/stops/407369", "https://data.delijn.be/stops/407522"], ["https://data.delijn.be/stops/501512", "https://data.delijn.be/stops/506405"], ["https://data.delijn.be/stops/508720", "https://data.delijn.be/stops/508726"], ["https://data.delijn.be/stops/200676", "https://data.delijn.be/stops/201461"], ["https://data.delijn.be/stops/500931", "https://data.delijn.be/stops/505793"], ["https://data.delijn.be/stops/106323", "https://data.delijn.be/stops/106324"], ["https://data.delijn.be/stops/504812", "https://data.delijn.be/stops/504813"], ["https://data.delijn.be/stops/205269", "https://data.delijn.be/stops/205535"], ["https://data.delijn.be/stops/409458", "https://data.delijn.be/stops/410069"], ["https://data.delijn.be/stops/201698", "https://data.delijn.be/stops/202386"], ["https://data.delijn.be/stops/307832", "https://data.delijn.be/stops/308530"], ["https://data.delijn.be/stops/502800", "https://data.delijn.be/stops/504182"], ["https://data.delijn.be/stops/505029", "https://data.delijn.be/stops/505030"], ["https://data.delijn.be/stops/301895", "https://data.delijn.be/stops/301897"], ["https://data.delijn.be/stops/205458", "https://data.delijn.be/stops/215017"], ["https://data.delijn.be/stops/200461", "https://data.delijn.be/stops/200676"], ["https://data.delijn.be/stops/102852", "https://data.delijn.be/stops/104417"], ["https://data.delijn.be/stops/501175", "https://data.delijn.be/stops/501177"], ["https://data.delijn.be/stops/504020", "https://data.delijn.be/stops/504986"], ["https://data.delijn.be/stops/108066", "https://data.delijn.be/stops/108068"], ["https://data.delijn.be/stops/304898", "https://data.delijn.be/stops/306178"], ["https://data.delijn.be/stops/401989", "https://data.delijn.be/stops/403381"], ["https://data.delijn.be/stops/501223", "https://data.delijn.be/stops/501633"], ["https://data.delijn.be/stops/307837", "https://data.delijn.be/stops/307838"], ["https://data.delijn.be/stops/104517", "https://data.delijn.be/stops/104519"], ["https://data.delijn.be/stops/401807", "https://data.delijn.be/stops/406349"], ["https://data.delijn.be/stops/204500", "https://data.delijn.be/stops/205544"], ["https://data.delijn.be/stops/102681", "https://data.delijn.be/stops/103860"], ["https://data.delijn.be/stops/202779", "https://data.delijn.be/stops/202780"], ["https://data.delijn.be/stops/501142", "https://data.delijn.be/stops/506154"], ["https://data.delijn.be/stops/403687", "https://data.delijn.be/stops/409251"], ["https://data.delijn.be/stops/509382", "https://data.delijn.be/stops/509383"], ["https://data.delijn.be/stops/405806", "https://data.delijn.be/stops/409705"], ["https://data.delijn.be/stops/301595", "https://data.delijn.be/stops/302577"], ["https://data.delijn.be/stops/101668", "https://data.delijn.be/stops/406770"], ["https://data.delijn.be/stops/207178", "https://data.delijn.be/stops/303848"], ["https://data.delijn.be/stops/301361", "https://data.delijn.be/stops/304695"], ["https://data.delijn.be/stops/505082", "https://data.delijn.be/stops/507812"], ["https://data.delijn.be/stops/301294", "https://data.delijn.be/stops/301900"], ["https://data.delijn.be/stops/406294", "https://data.delijn.be/stops/406449"], ["https://data.delijn.be/stops/305263", "https://data.delijn.be/stops/305271"], ["https://data.delijn.be/stops/408722", "https://data.delijn.be/stops/410343"], ["https://data.delijn.be/stops/302975", "https://data.delijn.be/stops/307229"], ["https://data.delijn.be/stops/409074", "https://data.delijn.be/stops/409119"], ["https://data.delijn.be/stops/305070", "https://data.delijn.be/stops/305078"], ["https://data.delijn.be/stops/502759", "https://data.delijn.be/stops/507759"], ["https://data.delijn.be/stops/505550", "https://data.delijn.be/stops/507178"], ["https://data.delijn.be/stops/103216", "https://data.delijn.be/stops/103600"], ["https://data.delijn.be/stops/104488", "https://data.delijn.be/stops/307899"], ["https://data.delijn.be/stops/200725", "https://data.delijn.be/stops/205943"], ["https://data.delijn.be/stops/508468", "https://data.delijn.be/stops/508478"], ["https://data.delijn.be/stops/106617", "https://data.delijn.be/stops/106621"], ["https://data.delijn.be/stops/403834", "https://data.delijn.be/stops/403849"], ["https://data.delijn.be/stops/106963", "https://data.delijn.be/stops/106976"], ["https://data.delijn.be/stops/504224", "https://data.delijn.be/stops/504685"], ["https://data.delijn.be/stops/301309", "https://data.delijn.be/stops/301336"], ["https://data.delijn.be/stops/403150", "https://data.delijn.be/stops/410275"], ["https://data.delijn.be/stops/105049", "https://data.delijn.be/stops/305833"], ["https://data.delijn.be/stops/407604", "https://data.delijn.be/stops/407605"], ["https://data.delijn.be/stops/105121", "https://data.delijn.be/stops/109696"], ["https://data.delijn.be/stops/406114", "https://data.delijn.be/stops/407146"], ["https://data.delijn.be/stops/407177", "https://data.delijn.be/stops/409856"], ["https://data.delijn.be/stops/103214", "https://data.delijn.be/stops/106293"], ["https://data.delijn.be/stops/206448", "https://data.delijn.be/stops/207448"], ["https://data.delijn.be/stops/101445", "https://data.delijn.be/stops/109005"], ["https://data.delijn.be/stops/202060", "https://data.delijn.be/stops/203060"], ["https://data.delijn.be/stops/301411", "https://data.delijn.be/stops/307025"], ["https://data.delijn.be/stops/201565", "https://data.delijn.be/stops/201841"], ["https://data.delijn.be/stops/202501", "https://data.delijn.be/stops/203501"], ["https://data.delijn.be/stops/304701", "https://data.delijn.be/stops/304702"], ["https://data.delijn.be/stops/205058", "https://data.delijn.be/stops/205317"], ["https://data.delijn.be/stops/302570", "https://data.delijn.be/stops/305103"], ["https://data.delijn.be/stops/403903", "https://data.delijn.be/stops/403905"], ["https://data.delijn.be/stops/103161", "https://data.delijn.be/stops/103162"], ["https://data.delijn.be/stops/206726", "https://data.delijn.be/stops/207607"], ["https://data.delijn.be/stops/302587", "https://data.delijn.be/stops/302588"], ["https://data.delijn.be/stops/407623", "https://data.delijn.be/stops/409810"], ["https://data.delijn.be/stops/408644", "https://data.delijn.be/stops/408646"], ["https://data.delijn.be/stops/108337", "https://data.delijn.be/stops/109333"], ["https://data.delijn.be/stops/400124", "https://data.delijn.be/stops/400130"], ["https://data.delijn.be/stops/306186", "https://data.delijn.be/stops/306290"], ["https://data.delijn.be/stops/202665", "https://data.delijn.be/stops/203665"], ["https://data.delijn.be/stops/103033", "https://data.delijn.be/stops/106750"], ["https://data.delijn.be/stops/303254", "https://data.delijn.be/stops/303302"], ["https://data.delijn.be/stops/206228", "https://data.delijn.be/stops/302153"], ["https://data.delijn.be/stops/200722", "https://data.delijn.be/stops/210409"], ["https://data.delijn.be/stops/204044", "https://data.delijn.be/stops/204518"], ["https://data.delijn.be/stops/403398", "https://data.delijn.be/stops/408453"], ["https://data.delijn.be/stops/206373", "https://data.delijn.be/stops/207374"], ["https://data.delijn.be/stops/406353", "https://data.delijn.be/stops/406354"], ["https://data.delijn.be/stops/201873", "https://data.delijn.be/stops/203030"], ["https://data.delijn.be/stops/408590", "https://data.delijn.be/stops/408776"], ["https://data.delijn.be/stops/202754", "https://data.delijn.be/stops/203754"], ["https://data.delijn.be/stops/302219", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/301181", "https://data.delijn.be/stops/301256"], ["https://data.delijn.be/stops/505283", "https://data.delijn.be/stops/508295"], ["https://data.delijn.be/stops/404191", "https://data.delijn.be/stops/404193"], ["https://data.delijn.be/stops/505387", "https://data.delijn.be/stops/508106"], ["https://data.delijn.be/stops/104974", "https://data.delijn.be/stops/109785"], ["https://data.delijn.be/stops/402069", "https://data.delijn.be/stops/402375"], ["https://data.delijn.be/stops/502194", "https://data.delijn.be/stops/502199"], ["https://data.delijn.be/stops/409251", "https://data.delijn.be/stops/409275"], ["https://data.delijn.be/stops/302610", "https://data.delijn.be/stops/302626"], ["https://data.delijn.be/stops/204058", "https://data.delijn.be/stops/204059"], ["https://data.delijn.be/stops/206815", "https://data.delijn.be/stops/207199"], ["https://data.delijn.be/stops/504232", "https://data.delijn.be/stops/505918"], ["https://data.delijn.be/stops/105623", "https://data.delijn.be/stops/106365"], ["https://data.delijn.be/stops/103683", "https://data.delijn.be/stops/109138"], ["https://data.delijn.be/stops/401224", "https://data.delijn.be/stops/401379"], ["https://data.delijn.be/stops/503859", "https://data.delijn.be/stops/508859"], ["https://data.delijn.be/stops/307336", "https://data.delijn.be/stops/308598"], ["https://data.delijn.be/stops/208270", "https://data.delijn.be/stops/209269"], ["https://data.delijn.be/stops/403946", "https://data.delijn.be/stops/407054"], ["https://data.delijn.be/stops/202313", "https://data.delijn.be/stops/202314"], ["https://data.delijn.be/stops/102914", "https://data.delijn.be/stops/103305"], ["https://data.delijn.be/stops/102944", "https://data.delijn.be/stops/105553"], ["https://data.delijn.be/stops/104822", "https://data.delijn.be/stops/300680"], ["https://data.delijn.be/stops/201345", "https://data.delijn.be/stops/201548"], ["https://data.delijn.be/stops/406241", "https://data.delijn.be/stops/406257"], ["https://data.delijn.be/stops/106851", "https://data.delijn.be/stops/106852"], ["https://data.delijn.be/stops/308198", "https://data.delijn.be/stops/308199"], ["https://data.delijn.be/stops/107079", "https://data.delijn.be/stops/107080"], ["https://data.delijn.be/stops/502062", "https://data.delijn.be/stops/505575"], ["https://data.delijn.be/stops/201911", "https://data.delijn.be/stops/202528"], ["https://data.delijn.be/stops/502666", "https://data.delijn.be/stops/507550"], ["https://data.delijn.be/stops/402413", "https://data.delijn.be/stops/402414"], ["https://data.delijn.be/stops/101133", "https://data.delijn.be/stops/108355"], ["https://data.delijn.be/stops/505441", "https://data.delijn.be/stops/505442"], ["https://data.delijn.be/stops/505206", "https://data.delijn.be/stops/505210"], ["https://data.delijn.be/stops/201105", "https://data.delijn.be/stops/202944"], ["https://data.delijn.be/stops/502257", "https://data.delijn.be/stops/502570"], ["https://data.delijn.be/stops/202059", "https://data.delijn.be/stops/203058"], ["https://data.delijn.be/stops/103636", "https://data.delijn.be/stops/104110"], ["https://data.delijn.be/stops/508164", "https://data.delijn.be/stops/508999"], ["https://data.delijn.be/stops/407060", "https://data.delijn.be/stops/407074"], ["https://data.delijn.be/stops/304320", "https://data.delijn.be/stops/304327"], ["https://data.delijn.be/stops/504995", "https://data.delijn.be/stops/505177"], ["https://data.delijn.be/stops/201901", "https://data.delijn.be/stops/201903"], ["https://data.delijn.be/stops/301829", "https://data.delijn.be/stops/301840"], ["https://data.delijn.be/stops/404505", "https://data.delijn.be/stops/404548"], ["https://data.delijn.be/stops/403371", "https://data.delijn.be/stops/403513"], ["https://data.delijn.be/stops/209272", "https://data.delijn.be/stops/209397"], ["https://data.delijn.be/stops/508553", "https://data.delijn.be/stops/508567"], ["https://data.delijn.be/stops/503006", "https://data.delijn.be/stops/503111"], ["https://data.delijn.be/stops/502173", "https://data.delijn.be/stops/508137"], ["https://data.delijn.be/stops/400265", "https://data.delijn.be/stops/406896"], ["https://data.delijn.be/stops/402559", "https://data.delijn.be/stops/402570"], ["https://data.delijn.be/stops/205320", "https://data.delijn.be/stops/205698"], ["https://data.delijn.be/stops/501428", "https://data.delijn.be/stops/506428"], ["https://data.delijn.be/stops/107734", "https://data.delijn.be/stops/107736"], ["https://data.delijn.be/stops/506435", "https://data.delijn.be/stops/506646"], ["https://data.delijn.be/stops/300752", "https://data.delijn.be/stops/300778"], ["https://data.delijn.be/stops/101463", "https://data.delijn.be/stops/108734"], ["https://data.delijn.be/stops/202519", "https://data.delijn.be/stops/202520"], ["https://data.delijn.be/stops/301666", "https://data.delijn.be/stops/304179"], ["https://data.delijn.be/stops/400816", "https://data.delijn.be/stops/400817"], ["https://data.delijn.be/stops/301235", "https://data.delijn.be/stops/308134"], ["https://data.delijn.be/stops/102225", "https://data.delijn.be/stops/103030"], ["https://data.delijn.be/stops/405492", "https://data.delijn.be/stops/405540"], ["https://data.delijn.be/stops/206240", "https://data.delijn.be/stops/206826"], ["https://data.delijn.be/stops/407140", "https://data.delijn.be/stops/407324"], ["https://data.delijn.be/stops/105609", "https://data.delijn.be/stops/105611"], ["https://data.delijn.be/stops/208501", "https://data.delijn.be/stops/209501"], ["https://data.delijn.be/stops/502012", "https://data.delijn.be/stops/507022"], ["https://data.delijn.be/stops/300601", "https://data.delijn.be/stops/300606"], ["https://data.delijn.be/stops/107209", "https://data.delijn.be/stops/107212"], ["https://data.delijn.be/stops/402558", "https://data.delijn.be/stops/402559"], ["https://data.delijn.be/stops/306618", "https://data.delijn.be/stops/306619"], ["https://data.delijn.be/stops/201021", "https://data.delijn.be/stops/203647"], ["https://data.delijn.be/stops/101228", "https://data.delijn.be/stops/109916"], ["https://data.delijn.be/stops/202657", "https://data.delijn.be/stops/203658"], ["https://data.delijn.be/stops/403597", "https://data.delijn.be/stops/410038"], ["https://data.delijn.be/stops/303722", "https://data.delijn.be/stops/303755"], ["https://data.delijn.be/stops/508041", "https://data.delijn.be/stops/509888"], ["https://data.delijn.be/stops/102394", "https://data.delijn.be/stops/107094"], ["https://data.delijn.be/stops/202025", "https://data.delijn.be/stops/211039"], ["https://data.delijn.be/stops/101524", "https://data.delijn.be/stops/108757"], ["https://data.delijn.be/stops/404997", "https://data.delijn.be/stops/406964"], ["https://data.delijn.be/stops/407890", "https://data.delijn.be/stops/408187"], ["https://data.delijn.be/stops/305380", "https://data.delijn.be/stops/305404"], ["https://data.delijn.be/stops/204372", "https://data.delijn.be/stops/204762"], ["https://data.delijn.be/stops/403916", "https://data.delijn.be/stops/410257"], ["https://data.delijn.be/stops/306101", "https://data.delijn.be/stops/306102"], ["https://data.delijn.be/stops/302736", "https://data.delijn.be/stops/307522"], ["https://data.delijn.be/stops/101378", "https://data.delijn.be/stops/101398"], ["https://data.delijn.be/stops/407504", "https://data.delijn.be/stops/407505"], ["https://data.delijn.be/stops/407738", "https://data.delijn.be/stops/409628"], ["https://data.delijn.be/stops/108927", "https://data.delijn.be/stops/108931"], ["https://data.delijn.be/stops/503501", "https://data.delijn.be/stops/508497"], ["https://data.delijn.be/stops/206322", "https://data.delijn.be/stops/207355"], ["https://data.delijn.be/stops/108289", "https://data.delijn.be/stops/108292"], ["https://data.delijn.be/stops/506231", "https://data.delijn.be/stops/506254"], ["https://data.delijn.be/stops/300143", "https://data.delijn.be/stops/300145"], ["https://data.delijn.be/stops/406060", "https://data.delijn.be/stops/406356"], ["https://data.delijn.be/stops/400908", "https://data.delijn.be/stops/400960"], ["https://data.delijn.be/stops/104457", "https://data.delijn.be/stops/106741"], ["https://data.delijn.be/stops/108501", "https://data.delijn.be/stops/108503"], ["https://data.delijn.be/stops/302563", "https://data.delijn.be/stops/302586"], ["https://data.delijn.be/stops/204507", "https://data.delijn.be/stops/205821"], ["https://data.delijn.be/stops/106088", "https://data.delijn.be/stops/109899"], ["https://data.delijn.be/stops/507072", "https://data.delijn.be/stops/507605"], ["https://data.delijn.be/stops/104205", "https://data.delijn.be/stops/104720"], ["https://data.delijn.be/stops/501164", "https://data.delijn.be/stops/506640"], ["https://data.delijn.be/stops/503752", "https://data.delijn.be/stops/508549"], ["https://data.delijn.be/stops/505831", "https://data.delijn.be/stops/508995"], ["https://data.delijn.be/stops/102492", "https://data.delijn.be/stops/407928"], ["https://data.delijn.be/stops/204429", "https://data.delijn.be/stops/204430"], ["https://data.delijn.be/stops/208123", "https://data.delijn.be/stops/209233"], ["https://data.delijn.be/stops/305895", "https://data.delijn.be/stops/308709"], ["https://data.delijn.be/stops/400078", "https://data.delijn.be/stops/400079"], ["https://data.delijn.be/stops/409731", "https://data.delijn.be/stops/409732"], ["https://data.delijn.be/stops/208398", "https://data.delijn.be/stops/209495"], ["https://data.delijn.be/stops/102018", "https://data.delijn.be/stops/102021"], ["https://data.delijn.be/stops/500948", "https://data.delijn.be/stops/504204"], ["https://data.delijn.be/stops/206872", "https://data.delijn.be/stops/209365"], ["https://data.delijn.be/stops/502017", "https://data.delijn.be/stops/507020"], ["https://data.delijn.be/stops/302880", "https://data.delijn.be/stops/303084"], ["https://data.delijn.be/stops/302190", "https://data.delijn.be/stops/308109"], ["https://data.delijn.be/stops/103723", "https://data.delijn.be/stops/109764"], ["https://data.delijn.be/stops/306613", "https://data.delijn.be/stops/306616"], ["https://data.delijn.be/stops/300654", "https://data.delijn.be/stops/300657"], ["https://data.delijn.be/stops/207675", "https://data.delijn.be/stops/209139"], ["https://data.delijn.be/stops/300567", "https://data.delijn.be/stops/300572"], ["https://data.delijn.be/stops/202029", "https://data.delijn.be/stops/211025"], ["https://data.delijn.be/stops/103586", "https://data.delijn.be/stops/104625"], ["https://data.delijn.be/stops/404531", "https://data.delijn.be/stops/406988"], ["https://data.delijn.be/stops/201467", "https://data.delijn.be/stops/202774"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/509615"], ["https://data.delijn.be/stops/302228", "https://data.delijn.be/stops/302823"], ["https://data.delijn.be/stops/301283", "https://data.delijn.be/stops/304692"], ["https://data.delijn.be/stops/410272", "https://data.delijn.be/stops/410277"], ["https://data.delijn.be/stops/507818", "https://data.delijn.be/stops/509790"], ["https://data.delijn.be/stops/404293", "https://data.delijn.be/stops/404294"], ["https://data.delijn.be/stops/300941", "https://data.delijn.be/stops/304720"], ["https://data.delijn.be/stops/306859", "https://data.delijn.be/stops/307361"], ["https://data.delijn.be/stops/208330", "https://data.delijn.be/stops/208376"], ["https://data.delijn.be/stops/304435", "https://data.delijn.be/stops/304438"], ["https://data.delijn.be/stops/504670", "https://data.delijn.be/stops/504767"], ["https://data.delijn.be/stops/109669", "https://data.delijn.be/stops/109675"], ["https://data.delijn.be/stops/402944", "https://data.delijn.be/stops/407299"], ["https://data.delijn.be/stops/402255", "https://data.delijn.be/stops/407532"], ["https://data.delijn.be/stops/206411", "https://data.delijn.be/stops/206651"], ["https://data.delijn.be/stops/101692", "https://data.delijn.be/stops/103694"], ["https://data.delijn.be/stops/209369", "https://data.delijn.be/stops/209374"], ["https://data.delijn.be/stops/208556", "https://data.delijn.be/stops/209557"], ["https://data.delijn.be/stops/302392", "https://data.delijn.be/stops/302393"], ["https://data.delijn.be/stops/107875", "https://data.delijn.be/stops/107876"], ["https://data.delijn.be/stops/205038", "https://data.delijn.be/stops/205818"], ["https://data.delijn.be/stops/204090", "https://data.delijn.be/stops/214018"], ["https://data.delijn.be/stops/202255", "https://data.delijn.be/stops/203254"], ["https://data.delijn.be/stops/303681", "https://data.delijn.be/stops/304428"], ["https://data.delijn.be/stops/204223", "https://data.delijn.be/stops/205223"], ["https://data.delijn.be/stops/300383", "https://data.delijn.be/stops/300384"], ["https://data.delijn.be/stops/206379", "https://data.delijn.be/stops/207731"], ["https://data.delijn.be/stops/305397", "https://data.delijn.be/stops/305398"], ["https://data.delijn.be/stops/209380", "https://data.delijn.be/stops/209381"], ["https://data.delijn.be/stops/402989", "https://data.delijn.be/stops/402991"], ["https://data.delijn.be/stops/206192", "https://data.delijn.be/stops/206222"], ["https://data.delijn.be/stops/201906", "https://data.delijn.be/stops/209867"], ["https://data.delijn.be/stops/202363", "https://data.delijn.be/stops/203363"], ["https://data.delijn.be/stops/503775", "https://data.delijn.be/stops/505272"], ["https://data.delijn.be/stops/408118", "https://data.delijn.be/stops/408119"], ["https://data.delijn.be/stops/403371", "https://data.delijn.be/stops/403375"], ["https://data.delijn.be/stops/200444", "https://data.delijn.be/stops/201445"], ["https://data.delijn.be/stops/406946", "https://data.delijn.be/stops/406977"], ["https://data.delijn.be/stops/302372", "https://data.delijn.be/stops/302386"], ["https://data.delijn.be/stops/102837", "https://data.delijn.be/stops/105780"], ["https://data.delijn.be/stops/201090", "https://data.delijn.be/stops/202749"], ["https://data.delijn.be/stops/202812", "https://data.delijn.be/stops/203812"], ["https://data.delijn.be/stops/302755", "https://data.delijn.be/stops/304829"], ["https://data.delijn.be/stops/410225", "https://data.delijn.be/stops/410226"], ["https://data.delijn.be/stops/406013", "https://data.delijn.be/stops/410262"], ["https://data.delijn.be/stops/509171", "https://data.delijn.be/stops/509346"], ["https://data.delijn.be/stops/104540", "https://data.delijn.be/stops/104545"], ["https://data.delijn.be/stops/200822", "https://data.delijn.be/stops/200823"], ["https://data.delijn.be/stops/102071", "https://data.delijn.be/stops/104591"], ["https://data.delijn.be/stops/200869", "https://data.delijn.be/stops/202655"], ["https://data.delijn.be/stops/503828", "https://data.delijn.be/stops/505809"], ["https://data.delijn.be/stops/407231", "https://data.delijn.be/stops/407233"], ["https://data.delijn.be/stops/307826", "https://data.delijn.be/stops/307827"], ["https://data.delijn.be/stops/101011", "https://data.delijn.be/stops/106332"], ["https://data.delijn.be/stops/403037", "https://data.delijn.be/stops/403256"], ["https://data.delijn.be/stops/400219", "https://data.delijn.be/stops/400227"], ["https://data.delijn.be/stops/504028", "https://data.delijn.be/stops/509036"], ["https://data.delijn.be/stops/504468", "https://data.delijn.be/stops/509463"], ["https://data.delijn.be/stops/403773", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/301436", "https://data.delijn.be/stops/301437"], ["https://data.delijn.be/stops/401120", "https://data.delijn.be/stops/401121"], ["https://data.delijn.be/stops/400730", "https://data.delijn.be/stops/406612"], ["https://data.delijn.be/stops/105519", "https://data.delijn.be/stops/105521"], ["https://data.delijn.be/stops/401636", "https://data.delijn.be/stops/308205"], ["https://data.delijn.be/stops/202238", "https://data.delijn.be/stops/203238"], ["https://data.delijn.be/stops/107002", "https://data.delijn.be/stops/107327"], ["https://data.delijn.be/stops/206067", "https://data.delijn.be/stops/207068"], ["https://data.delijn.be/stops/502319", "https://data.delijn.be/stops/507324"], ["https://data.delijn.be/stops/406047", "https://data.delijn.be/stops/406123"], ["https://data.delijn.be/stops/300192", "https://data.delijn.be/stops/300632"], ["https://data.delijn.be/stops/304044", "https://data.delijn.be/stops/307885"], ["https://data.delijn.be/stops/506218", "https://data.delijn.be/stops/506421"], ["https://data.delijn.be/stops/206616", "https://data.delijn.be/stops/207616"], ["https://data.delijn.be/stops/204180", "https://data.delijn.be/stops/205355"], ["https://data.delijn.be/stops/303290", "https://data.delijn.be/stops/303291"], ["https://data.delijn.be/stops/307959", "https://data.delijn.be/stops/307960"], ["https://data.delijn.be/stops/302958", "https://data.delijn.be/stops/302966"], ["https://data.delijn.be/stops/303702", "https://data.delijn.be/stops/305378"], ["https://data.delijn.be/stops/107484", "https://data.delijn.be/stops/107509"], ["https://data.delijn.be/stops/201675", "https://data.delijn.be/stops/202208"], ["https://data.delijn.be/stops/405537", "https://data.delijn.be/stops/405864"], ["https://data.delijn.be/stops/103094", "https://data.delijn.be/stops/109119"], ["https://data.delijn.be/stops/501074", "https://data.delijn.be/stops/506775"], ["https://data.delijn.be/stops/204657", "https://data.delijn.be/stops/205658"], ["https://data.delijn.be/stops/408100", "https://data.delijn.be/stops/408102"], ["https://data.delijn.be/stops/206610", "https://data.delijn.be/stops/206708"], ["https://data.delijn.be/stops/501095", "https://data.delijn.be/stops/501771"], ["https://data.delijn.be/stops/304394", "https://data.delijn.be/stops/307402"], ["https://data.delijn.be/stops/405221", "https://data.delijn.be/stops/405235"], ["https://data.delijn.be/stops/200202", "https://data.delijn.be/stops/203934"], ["https://data.delijn.be/stops/108333", "https://data.delijn.be/stops/109332"], ["https://data.delijn.be/stops/203647", "https://data.delijn.be/stops/211106"], ["https://data.delijn.be/stops/407364", "https://data.delijn.be/stops/408477"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/506676"], ["https://data.delijn.be/stops/409718", "https://data.delijn.be/stops/409722"], ["https://data.delijn.be/stops/103633", "https://data.delijn.be/stops/107163"], ["https://data.delijn.be/stops/306328", "https://data.delijn.be/stops/306331"], ["https://data.delijn.be/stops/108369", "https://data.delijn.be/stops/108455"], ["https://data.delijn.be/stops/301454", "https://data.delijn.be/stops/301458"], ["https://data.delijn.be/stops/304306", "https://data.delijn.be/stops/305525"], ["https://data.delijn.be/stops/502107", "https://data.delijn.be/stops/507095"], ["https://data.delijn.be/stops/108415", "https://data.delijn.be/stops/108920"], ["https://data.delijn.be/stops/204741", "https://data.delijn.be/stops/205739"], ["https://data.delijn.be/stops/201562", "https://data.delijn.be/stops/205997"], ["https://data.delijn.be/stops/308847", "https://data.delijn.be/stops/308848"], ["https://data.delijn.be/stops/102689", "https://data.delijn.be/stops/205279"], ["https://data.delijn.be/stops/402240", "https://data.delijn.be/stops/404730"], ["https://data.delijn.be/stops/503332", "https://data.delijn.be/stops/503772"], ["https://data.delijn.be/stops/506364", "https://data.delijn.be/stops/590411"], ["https://data.delijn.be/stops/503672", "https://data.delijn.be/stops/508673"], ["https://data.delijn.be/stops/202130", "https://data.delijn.be/stops/202419"], ["https://data.delijn.be/stops/503037", "https://data.delijn.be/stops/505376"], ["https://data.delijn.be/stops/105546", "https://data.delijn.be/stops/106240"], ["https://data.delijn.be/stops/303253", "https://data.delijn.be/stops/303261"], ["https://data.delijn.be/stops/202272", "https://data.delijn.be/stops/203660"], ["https://data.delijn.be/stops/201233", "https://data.delijn.be/stops/211051"], ["https://data.delijn.be/stops/407904", "https://data.delijn.be/stops/408148"], ["https://data.delijn.be/stops/205432", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/406323", "https://data.delijn.be/stops/406410"], ["https://data.delijn.be/stops/303477", "https://data.delijn.be/stops/304989"], ["https://data.delijn.be/stops/207710", "https://data.delijn.be/stops/304064"], ["https://data.delijn.be/stops/300542", "https://data.delijn.be/stops/303968"], ["https://data.delijn.be/stops/200636", "https://data.delijn.be/stops/210123"], ["https://data.delijn.be/stops/410219", "https://data.delijn.be/stops/410390"], ["https://data.delijn.be/stops/503166", "https://data.delijn.be/stops/508166"], ["https://data.delijn.be/stops/206499", "https://data.delijn.be/stops/207479"], ["https://data.delijn.be/stops/503462", "https://data.delijn.be/stops/508978"], ["https://data.delijn.be/stops/303458", "https://data.delijn.be/stops/303519"], ["https://data.delijn.be/stops/503099", "https://data.delijn.be/stops/503800"], ["https://data.delijn.be/stops/504523", "https://data.delijn.be/stops/504526"], ["https://data.delijn.be/stops/503816", "https://data.delijn.be/stops/508028"], ["https://data.delijn.be/stops/208445", "https://data.delijn.be/stops/209520"], ["https://data.delijn.be/stops/504723", "https://data.delijn.be/stops/504748"], ["https://data.delijn.be/stops/508767", "https://data.delijn.be/stops/508824"], ["https://data.delijn.be/stops/102519", "https://data.delijn.be/stops/109640"], ["https://data.delijn.be/stops/108240", "https://data.delijn.be/stops/108325"], ["https://data.delijn.be/stops/304055", "https://data.delijn.be/stops/304058"], ["https://data.delijn.be/stops/200876", "https://data.delijn.be/stops/505320"], ["https://data.delijn.be/stops/407020", "https://data.delijn.be/stops/308079"], ["https://data.delijn.be/stops/403482", "https://data.delijn.be/stops/410010"], ["https://data.delijn.be/stops/204135", "https://data.delijn.be/stops/205135"], ["https://data.delijn.be/stops/203130", "https://data.delijn.be/stops/203272"], ["https://data.delijn.be/stops/400551", "https://data.delijn.be/stops/410005"], ["https://data.delijn.be/stops/201833", "https://data.delijn.be/stops/209260"], ["https://data.delijn.be/stops/301450", "https://data.delijn.be/stops/301469"], ["https://data.delijn.be/stops/504604", "https://data.delijn.be/stops/504634"], ["https://data.delijn.be/stops/405936", "https://data.delijn.be/stops/405946"], ["https://data.delijn.be/stops/102131", "https://data.delijn.be/stops/105714"], ["https://data.delijn.be/stops/406927", "https://data.delijn.be/stops/406933"], ["https://data.delijn.be/stops/203532", "https://data.delijn.be/stops/206827"], ["https://data.delijn.be/stops/503564", "https://data.delijn.be/stops/503565"], ["https://data.delijn.be/stops/106314", "https://data.delijn.be/stops/106315"], ["https://data.delijn.be/stops/501431", "https://data.delijn.be/stops/501432"], ["https://data.delijn.be/stops/104471", "https://data.delijn.be/stops/104574"], ["https://data.delijn.be/stops/508108", "https://data.delijn.be/stops/508109"], ["https://data.delijn.be/stops/101146", "https://data.delijn.be/stops/106761"], ["https://data.delijn.be/stops/208345", "https://data.delijn.be/stops/208346"], ["https://data.delijn.be/stops/504453", "https://data.delijn.be/stops/509453"], ["https://data.delijn.be/stops/105768", "https://data.delijn.be/stops/109806"], ["https://data.delijn.be/stops/406053", "https://data.delijn.be/stops/409289"], ["https://data.delijn.be/stops/304910", "https://data.delijn.be/stops/304911"], ["https://data.delijn.be/stops/303588", "https://data.delijn.be/stops/305330"], ["https://data.delijn.be/stops/504724", "https://data.delijn.be/stops/508953"], ["https://data.delijn.be/stops/401215", "https://data.delijn.be/stops/401272"], ["https://data.delijn.be/stops/203840", "https://data.delijn.be/stops/209276"], ["https://data.delijn.be/stops/503822", "https://data.delijn.be/stops/508767"], ["https://data.delijn.be/stops/200247", "https://data.delijn.be/stops/201247"], ["https://data.delijn.be/stops/408107", "https://data.delijn.be/stops/408118"], ["https://data.delijn.be/stops/302309", "https://data.delijn.be/stops/302326"], ["https://data.delijn.be/stops/401960", "https://data.delijn.be/stops/402427"], ["https://data.delijn.be/stops/108108", "https://data.delijn.be/stops/108118"], ["https://data.delijn.be/stops/302338", "https://data.delijn.be/stops/302339"], ["https://data.delijn.be/stops/505584", "https://data.delijn.be/stops/507236"], ["https://data.delijn.be/stops/200536", "https://data.delijn.be/stops/201159"], ["https://data.delijn.be/stops/505781", "https://data.delijn.be/stops/506461"], ["https://data.delijn.be/stops/402936", "https://data.delijn.be/stops/403975"], ["https://data.delijn.be/stops/504326", "https://data.delijn.be/stops/504380"], ["https://data.delijn.be/stops/202690", "https://data.delijn.be/stops/203644"], ["https://data.delijn.be/stops/204158", "https://data.delijn.be/stops/207968"], ["https://data.delijn.be/stops/101513", "https://data.delijn.be/stops/102901"], ["https://data.delijn.be/stops/302577", "https://data.delijn.be/stops/302578"], ["https://data.delijn.be/stops/406245", "https://data.delijn.be/stops/409345"], ["https://data.delijn.be/stops/408021", "https://data.delijn.be/stops/408134"], ["https://data.delijn.be/stops/208800", "https://data.delijn.be/stops/209207"], ["https://data.delijn.be/stops/402810", "https://data.delijn.be/stops/402811"], ["https://data.delijn.be/stops/402083", "https://data.delijn.be/stops/402084"], ["https://data.delijn.be/stops/206190", "https://data.delijn.be/stops/207191"], ["https://data.delijn.be/stops/307703", "https://data.delijn.be/stops/307705"], ["https://data.delijn.be/stops/302008", "https://data.delijn.be/stops/302009"], ["https://data.delijn.be/stops/302290", "https://data.delijn.be/stops/307811"], ["https://data.delijn.be/stops/504292", "https://data.delijn.be/stops/509292"], ["https://data.delijn.be/stops/401602", "https://data.delijn.be/stops/409438"], ["https://data.delijn.be/stops/401519", "https://data.delijn.be/stops/401553"], ["https://data.delijn.be/stops/303264", "https://data.delijn.be/stops/306174"], ["https://data.delijn.be/stops/303093", "https://data.delijn.be/stops/303151"], ["https://data.delijn.be/stops/201133", "https://data.delijn.be/stops/201468"], ["https://data.delijn.be/stops/202696", "https://data.delijn.be/stops/203726"], ["https://data.delijn.be/stops/502529", "https://data.delijn.be/stops/507368"], ["https://data.delijn.be/stops/105583", "https://data.delijn.be/stops/105589"], ["https://data.delijn.be/stops/403442", "https://data.delijn.be/stops/405359"], ["https://data.delijn.be/stops/503338", "https://data.delijn.be/stops/507687"], ["https://data.delijn.be/stops/408614", "https://data.delijn.be/stops/408632"], ["https://data.delijn.be/stops/401002", "https://data.delijn.be/stops/401003"], ["https://data.delijn.be/stops/305781", "https://data.delijn.be/stops/305801"], ["https://data.delijn.be/stops/402808", "https://data.delijn.be/stops/404620"], ["https://data.delijn.be/stops/503993", "https://data.delijn.be/stops/508129"], ["https://data.delijn.be/stops/204597", "https://data.delijn.be/stops/205078"], ["https://data.delijn.be/stops/401039", "https://data.delijn.be/stops/401088"], ["https://data.delijn.be/stops/501259", "https://data.delijn.be/stops/506177"], ["https://data.delijn.be/stops/300082", "https://data.delijn.be/stops/307344"], ["https://data.delijn.be/stops/208065", "https://data.delijn.be/stops/209066"], ["https://data.delijn.be/stops/404551", "https://data.delijn.be/stops/406741"], ["https://data.delijn.be/stops/106813", "https://data.delijn.be/stops/106846"], ["https://data.delijn.be/stops/308292", "https://data.delijn.be/stops/308293"], ["https://data.delijn.be/stops/102565", "https://data.delijn.be/stops/102570"], ["https://data.delijn.be/stops/401563", "https://data.delijn.be/stops/410305"], ["https://data.delijn.be/stops/304208", "https://data.delijn.be/stops/304210"], ["https://data.delijn.be/stops/503620", "https://data.delijn.be/stops/503630"], ["https://data.delijn.be/stops/504390", "https://data.delijn.be/stops/504392"], ["https://data.delijn.be/stops/404917", "https://data.delijn.be/stops/404943"], ["https://data.delijn.be/stops/208810", "https://data.delijn.be/stops/208814"], ["https://data.delijn.be/stops/400737", "https://data.delijn.be/stops/400739"], ["https://data.delijn.be/stops/208504", "https://data.delijn.be/stops/208505"], ["https://data.delijn.be/stops/300885", "https://data.delijn.be/stops/300887"], ["https://data.delijn.be/stops/300541", "https://data.delijn.be/stops/308545"], ["https://data.delijn.be/stops/106887", "https://data.delijn.be/stops/107221"], ["https://data.delijn.be/stops/307618", "https://data.delijn.be/stops/307619"], ["https://data.delijn.be/stops/501305", "https://data.delijn.be/stops/506305"], ["https://data.delijn.be/stops/300173", "https://data.delijn.be/stops/301223"], ["https://data.delijn.be/stops/404588", "https://data.delijn.be/stops/406902"], ["https://data.delijn.be/stops/503516", "https://data.delijn.be/stops/508516"], ["https://data.delijn.be/stops/301231", "https://data.delijn.be/stops/301232"], ["https://data.delijn.be/stops/106582", "https://data.delijn.be/stops/107790"], ["https://data.delijn.be/stops/300450", "https://data.delijn.be/stops/308758"], ["https://data.delijn.be/stops/403317", "https://data.delijn.be/stops/403327"], ["https://data.delijn.be/stops/502085", "https://data.delijn.be/stops/502818"], ["https://data.delijn.be/stops/503488", "https://data.delijn.be/stops/508989"], ["https://data.delijn.be/stops/203354", "https://data.delijn.be/stops/211047"], ["https://data.delijn.be/stops/307296", "https://data.delijn.be/stops/307298"], ["https://data.delijn.be/stops/204915", "https://data.delijn.be/stops/204918"], ["https://data.delijn.be/stops/300547", "https://data.delijn.be/stops/300716"], ["https://data.delijn.be/stops/102567", "https://data.delijn.be/stops/400023"], ["https://data.delijn.be/stops/408098", "https://data.delijn.be/stops/408111"], ["https://data.delijn.be/stops/202024", "https://data.delijn.be/stops/203024"], ["https://data.delijn.be/stops/401814", "https://data.delijn.be/stops/406824"], ["https://data.delijn.be/stops/302062", "https://data.delijn.be/stops/302071"], ["https://data.delijn.be/stops/201305", "https://data.delijn.be/stops/202199"], ["https://data.delijn.be/stops/106066", "https://data.delijn.be/stops/106413"], ["https://data.delijn.be/stops/109906", "https://data.delijn.be/stops/109908"], ["https://data.delijn.be/stops/504171", "https://data.delijn.be/stops/509348"], ["https://data.delijn.be/stops/301196", "https://data.delijn.be/stops/307111"], ["https://data.delijn.be/stops/401986", "https://data.delijn.be/stops/401987"], ["https://data.delijn.be/stops/208439", "https://data.delijn.be/stops/209438"], ["https://data.delijn.be/stops/107184", "https://data.delijn.be/stops/107188"], ["https://data.delijn.be/stops/504198", "https://data.delijn.be/stops/504202"], ["https://data.delijn.be/stops/403629", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/102521", "https://data.delijn.be/stops/102551"], ["https://data.delijn.be/stops/202826", "https://data.delijn.be/stops/211022"], ["https://data.delijn.be/stops/206679", "https://data.delijn.be/stops/209776"], ["https://data.delijn.be/stops/401792", "https://data.delijn.be/stops/401800"], ["https://data.delijn.be/stops/303196", "https://data.delijn.be/stops/308959"], ["https://data.delijn.be/stops/502540", "https://data.delijn.be/stops/505692"], ["https://data.delijn.be/stops/410137", "https://data.delijn.be/stops/410138"], ["https://data.delijn.be/stops/102397", "https://data.delijn.be/stops/102398"], ["https://data.delijn.be/stops/207988", "https://data.delijn.be/stops/207989"], ["https://data.delijn.be/stops/201644", "https://data.delijn.be/stops/203944"], ["https://data.delijn.be/stops/200748", "https://data.delijn.be/stops/202970"], ["https://data.delijn.be/stops/404231", "https://data.delijn.be/stops/404242"], ["https://data.delijn.be/stops/200817", "https://data.delijn.be/stops/201115"], ["https://data.delijn.be/stops/101483", "https://data.delijn.be/stops/109299"], ["https://data.delijn.be/stops/502339", "https://data.delijn.be/stops/505959"], ["https://data.delijn.be/stops/101276", "https://data.delijn.be/stops/101277"], ["https://data.delijn.be/stops/109215", "https://data.delijn.be/stops/109217"], ["https://data.delijn.be/stops/101147", "https://data.delijn.be/stops/106863"], ["https://data.delijn.be/stops/109220", "https://data.delijn.be/stops/109222"], ["https://data.delijn.be/stops/501468", "https://data.delijn.be/stops/501545"], ["https://data.delijn.be/stops/201172", "https://data.delijn.be/stops/201230"], ["https://data.delijn.be/stops/302120", "https://data.delijn.be/stops/302124"], ["https://data.delijn.be/stops/101510", "https://data.delijn.be/stops/109050"], ["https://data.delijn.be/stops/406359", "https://data.delijn.be/stops/407721"], ["https://data.delijn.be/stops/408024", "https://data.delijn.be/stops/408027"], ["https://data.delijn.be/stops/206294", "https://data.delijn.be/stops/206816"], ["https://data.delijn.be/stops/502539", "https://data.delijn.be/stops/503823"], ["https://data.delijn.be/stops/405284", "https://data.delijn.be/stops/405285"], ["https://data.delijn.be/stops/204415", "https://data.delijn.be/stops/205413"], ["https://data.delijn.be/stops/200744", "https://data.delijn.be/stops/200745"], ["https://data.delijn.be/stops/502337", "https://data.delijn.be/stops/505737"], ["https://data.delijn.be/stops/403715", "https://data.delijn.be/stops/406709"], ["https://data.delijn.be/stops/202861", "https://data.delijn.be/stops/202862"], ["https://data.delijn.be/stops/501001", "https://data.delijn.be/stops/501011"], ["https://data.delijn.be/stops/406363", "https://data.delijn.be/stops/406729"], ["https://data.delijn.be/stops/206460", "https://data.delijn.be/stops/207460"], ["https://data.delijn.be/stops/109419", "https://data.delijn.be/stops/109421"], ["https://data.delijn.be/stops/101362", "https://data.delijn.be/stops/105354"], ["https://data.delijn.be/stops/401425", "https://data.delijn.be/stops/401458"], ["https://data.delijn.be/stops/407153", "https://data.delijn.be/stops/407162"], ["https://data.delijn.be/stops/502383", "https://data.delijn.be/stops/507383"], ["https://data.delijn.be/stops/406001", "https://data.delijn.be/stops/406017"], ["https://data.delijn.be/stops/404628", "https://data.delijn.be/stops/406732"], ["https://data.delijn.be/stops/302203", "https://data.delijn.be/stops/304051"], ["https://data.delijn.be/stops/502192", "https://data.delijn.be/stops/507939"], ["https://data.delijn.be/stops/501374", "https://data.delijn.be/stops/501375"], ["https://data.delijn.be/stops/101892", "https://data.delijn.be/stops/107526"], ["https://data.delijn.be/stops/408938", "https://data.delijn.be/stops/308249"], ["https://data.delijn.be/stops/105106", "https://data.delijn.be/stops/106968"], ["https://data.delijn.be/stops/400738", "https://data.delijn.be/stops/400741"], ["https://data.delijn.be/stops/207728", "https://data.delijn.be/stops/207733"], ["https://data.delijn.be/stops/509400", "https://data.delijn.be/stops/509719"], ["https://data.delijn.be/stops/404091", "https://data.delijn.be/stops/408799"], ["https://data.delijn.be/stops/102508", "https://data.delijn.be/stops/400025"], ["https://data.delijn.be/stops/107197", "https://data.delijn.be/stops/109772"], ["https://data.delijn.be/stops/406012", "https://data.delijn.be/stops/406114"], ["https://data.delijn.be/stops/302535", "https://data.delijn.be/stops/302544"], ["https://data.delijn.be/stops/209473", "https://data.delijn.be/stops/209668"], ["https://data.delijn.be/stops/103721", "https://data.delijn.be/stops/305818"], ["https://data.delijn.be/stops/405732", "https://data.delijn.be/stops/405738"], ["https://data.delijn.be/stops/300333", "https://data.delijn.be/stops/306661"], ["https://data.delijn.be/stops/401439", "https://data.delijn.be/stops/401596"], ["https://data.delijn.be/stops/300189", "https://data.delijn.be/stops/300228"], ["https://data.delijn.be/stops/204048", "https://data.delijn.be/stops/205519"], ["https://data.delijn.be/stops/202043", "https://data.delijn.be/stops/203043"], ["https://data.delijn.be/stops/303069", "https://data.delijn.be/stops/307929"], ["https://data.delijn.be/stops/408543", "https://data.delijn.be/stops/408567"], ["https://data.delijn.be/stops/302723", "https://data.delijn.be/stops/308598"], ["https://data.delijn.be/stops/405807", "https://data.delijn.be/stops/405854"], ["https://data.delijn.be/stops/304126", "https://data.delijn.be/stops/307579"], ["https://data.delijn.be/stops/300207", "https://data.delijn.be/stops/300208"], ["https://data.delijn.be/stops/102226", "https://data.delijn.be/stops/102609"], ["https://data.delijn.be/stops/304350", "https://data.delijn.be/stops/304357"], ["https://data.delijn.be/stops/303541", "https://data.delijn.be/stops/304130"], ["https://data.delijn.be/stops/300577", "https://data.delijn.be/stops/300591"], ["https://data.delijn.be/stops/308229", "https://data.delijn.be/stops/308239"], ["https://data.delijn.be/stops/207772", "https://data.delijn.be/stops/208374"], ["https://data.delijn.be/stops/302012", "https://data.delijn.be/stops/302045"], ["https://data.delijn.be/stops/204763", "https://data.delijn.be/stops/205380"], ["https://data.delijn.be/stops/300021", "https://data.delijn.be/stops/300389"], ["https://data.delijn.be/stops/202267", "https://data.delijn.be/stops/203268"], ["https://data.delijn.be/stops/409550", "https://data.delijn.be/stops/409552"], ["https://data.delijn.be/stops/403720", "https://data.delijn.be/stops/407790"], ["https://data.delijn.be/stops/502456", "https://data.delijn.be/stops/505577"], ["https://data.delijn.be/stops/504414", "https://data.delijn.be/stops/504442"], ["https://data.delijn.be/stops/206047", "https://data.delijn.be/stops/206107"], ["https://data.delijn.be/stops/101595", "https://data.delijn.be/stops/107185"], ["https://data.delijn.be/stops/101500", "https://data.delijn.be/stops/306815"], ["https://data.delijn.be/stops/300586", "https://data.delijn.be/stops/303523"], ["https://data.delijn.be/stops/400034", "https://data.delijn.be/stops/402758"], ["https://data.delijn.be/stops/101573", "https://data.delijn.be/stops/103036"], ["https://data.delijn.be/stops/502273", "https://data.delijn.be/stops/502521"], ["https://data.delijn.be/stops/302645", "https://data.delijn.be/stops/302646"], ["https://data.delijn.be/stops/403719", "https://data.delijn.be/stops/403822"], ["https://data.delijn.be/stops/400080", "https://data.delijn.be/stops/400166"], ["https://data.delijn.be/stops/508835", "https://data.delijn.be/stops/508980"], ["https://data.delijn.be/stops/206455", "https://data.delijn.be/stops/206823"], ["https://data.delijn.be/stops/400746", "https://data.delijn.be/stops/409579"], ["https://data.delijn.be/stops/208543", "https://data.delijn.be/stops/208614"], ["https://data.delijn.be/stops/503510", "https://data.delijn.be/stops/505297"], ["https://data.delijn.be/stops/501135", "https://data.delijn.be/stops/506132"], ["https://data.delijn.be/stops/104897", "https://data.delijn.be/stops/105312"], ["https://data.delijn.be/stops/504715", "https://data.delijn.be/stops/509254"], ["https://data.delijn.be/stops/103914", "https://data.delijn.be/stops/107238"], ["https://data.delijn.be/stops/203822", "https://data.delijn.be/stops/203913"], ["https://data.delijn.be/stops/301472", "https://data.delijn.be/stops/301473"], ["https://data.delijn.be/stops/504647", "https://data.delijn.be/stops/504648"], ["https://data.delijn.be/stops/404084", "https://data.delijn.be/stops/404086"], ["https://data.delijn.be/stops/204197", "https://data.delijn.be/stops/204238"], ["https://data.delijn.be/stops/505253", "https://data.delijn.be/stops/509174"], ["https://data.delijn.be/stops/300649", "https://data.delijn.be/stops/300650"], ["https://data.delijn.be/stops/204112", "https://data.delijn.be/stops/205112"], ["https://data.delijn.be/stops/302541", "https://data.delijn.be/stops/303381"], ["https://data.delijn.be/stops/101152", "https://data.delijn.be/stops/109622"], ["https://data.delijn.be/stops/402838", "https://data.delijn.be/stops/406304"], ["https://data.delijn.be/stops/102200", "https://data.delijn.be/stops/103000"], ["https://data.delijn.be/stops/402452", "https://data.delijn.be/stops/402454"], ["https://data.delijn.be/stops/302725", "https://data.delijn.be/stops/302772"], ["https://data.delijn.be/stops/301522", "https://data.delijn.be/stops/305733"], ["https://data.delijn.be/stops/302313", "https://data.delijn.be/stops/308784"], ["https://data.delijn.be/stops/300005", "https://data.delijn.be/stops/304508"], ["https://data.delijn.be/stops/101461", "https://data.delijn.be/stops/109252"], ["https://data.delijn.be/stops/107012", "https://data.delijn.be/stops/107013"], ["https://data.delijn.be/stops/308118", "https://data.delijn.be/stops/308119"], ["https://data.delijn.be/stops/403337", "https://data.delijn.be/stops/407635"], ["https://data.delijn.be/stops/109509", "https://data.delijn.be/stops/109511"], ["https://data.delijn.be/stops/202682", "https://data.delijn.be/stops/203682"], ["https://data.delijn.be/stops/201108", "https://data.delijn.be/stops/202007"], ["https://data.delijn.be/stops/109165", "https://data.delijn.be/stops/109166"], ["https://data.delijn.be/stops/503204", "https://data.delijn.be/stops/503355"], ["https://data.delijn.be/stops/304856", "https://data.delijn.be/stops/304864"], ["https://data.delijn.be/stops/503904", "https://data.delijn.be/stops/503905"], ["https://data.delijn.be/stops/503283", "https://data.delijn.be/stops/508280"], ["https://data.delijn.be/stops/200759", "https://data.delijn.be/stops/507961"], ["https://data.delijn.be/stops/201168", "https://data.delijn.be/stops/203641"], ["https://data.delijn.be/stops/403053", "https://data.delijn.be/stops/403067"], ["https://data.delijn.be/stops/408498", "https://data.delijn.be/stops/408499"], ["https://data.delijn.be/stops/207943", "https://data.delijn.be/stops/207944"], ["https://data.delijn.be/stops/406875", "https://data.delijn.be/stops/407401"], ["https://data.delijn.be/stops/407406", "https://data.delijn.be/stops/407564"], ["https://data.delijn.be/stops/204674", "https://data.delijn.be/stops/205672"], ["https://data.delijn.be/stops/200579", "https://data.delijn.be/stops/200580"], ["https://data.delijn.be/stops/504679", "https://data.delijn.be/stops/505435"], ["https://data.delijn.be/stops/108713", "https://data.delijn.be/stops/108856"], ["https://data.delijn.be/stops/205747", "https://data.delijn.be/stops/205748"], ["https://data.delijn.be/stops/206630", "https://data.delijn.be/stops/209571"], ["https://data.delijn.be/stops/403949", "https://data.delijn.be/stops/403950"], ["https://data.delijn.be/stops/400909", "https://data.delijn.be/stops/400960"], ["https://data.delijn.be/stops/202312", "https://data.delijn.be/stops/202793"], ["https://data.delijn.be/stops/201591", "https://data.delijn.be/stops/205920"], ["https://data.delijn.be/stops/504034", "https://data.delijn.be/stops/509026"], ["https://data.delijn.be/stops/200224", "https://data.delijn.be/stops/200225"], ["https://data.delijn.be/stops/200090", "https://data.delijn.be/stops/211126"], ["https://data.delijn.be/stops/300483", "https://data.delijn.be/stops/302918"], ["https://data.delijn.be/stops/219030", "https://data.delijn.be/stops/219031"], ["https://data.delijn.be/stops/406308", "https://data.delijn.be/stops/406309"], ["https://data.delijn.be/stops/204244", "https://data.delijn.be/stops/205244"], ["https://data.delijn.be/stops/300403", "https://data.delijn.be/stops/300405"], ["https://data.delijn.be/stops/409048", "https://data.delijn.be/stops/409443"], ["https://data.delijn.be/stops/105356", "https://data.delijn.be/stops/109396"], ["https://data.delijn.be/stops/305775", "https://data.delijn.be/stops/305777"], ["https://data.delijn.be/stops/108880", "https://data.delijn.be/stops/108882"], ["https://data.delijn.be/stops/108766", "https://data.delijn.be/stops/108777"], ["https://data.delijn.be/stops/206535", "https://data.delijn.be/stops/207547"], ["https://data.delijn.be/stops/104794", "https://data.delijn.be/stops/106824"], ["https://data.delijn.be/stops/201181", "https://data.delijn.be/stops/201196"], ["https://data.delijn.be/stops/304864", "https://data.delijn.be/stops/304865"], ["https://data.delijn.be/stops/103234", "https://data.delijn.be/stops/109433"], ["https://data.delijn.be/stops/207092", "https://data.delijn.be/stops/207142"], ["https://data.delijn.be/stops/407058", "https://data.delijn.be/stops/407071"], ["https://data.delijn.be/stops/203100", "https://data.delijn.be/stops/203101"], ["https://data.delijn.be/stops/109395", "https://data.delijn.be/stops/109405"], ["https://data.delijn.be/stops/201051", "https://data.delijn.be/stops/201052"], ["https://data.delijn.be/stops/501282", "https://data.delijn.be/stops/506271"], ["https://data.delijn.be/stops/206925", "https://data.delijn.be/stops/207815"], ["https://data.delijn.be/stops/306770", "https://data.delijn.be/stops/306868"], ["https://data.delijn.be/stops/306903", "https://data.delijn.be/stops/306930"], ["https://data.delijn.be/stops/400118", "https://data.delijn.be/stops/410278"], ["https://data.delijn.be/stops/503871", "https://data.delijn.be/stops/508871"], ["https://data.delijn.be/stops/406062", "https://data.delijn.be/stops/409406"], ["https://data.delijn.be/stops/102018", "https://data.delijn.be/stops/102019"], ["https://data.delijn.be/stops/306924", "https://data.delijn.be/stops/308728"], ["https://data.delijn.be/stops/405814", "https://data.delijn.be/stops/405815"], ["https://data.delijn.be/stops/202127", "https://data.delijn.be/stops/203127"], ["https://data.delijn.be/stops/207496", "https://data.delijn.be/stops/207507"], ["https://data.delijn.be/stops/102227", "https://data.delijn.be/stops/105527"], ["https://data.delijn.be/stops/207260", "https://data.delijn.be/stops/207918"], ["https://data.delijn.be/stops/406007", "https://data.delijn.be/stops/408709"], ["https://data.delijn.be/stops/405618", "https://data.delijn.be/stops/409876"], ["https://data.delijn.be/stops/508266", "https://data.delijn.be/stops/508991"], ["https://data.delijn.be/stops/503802", "https://data.delijn.be/stops/503948"], ["https://data.delijn.be/stops/202826", "https://data.delijn.be/stops/218002"], ["https://data.delijn.be/stops/105283", "https://data.delijn.be/stops/105284"], ["https://data.delijn.be/stops/401279", "https://data.delijn.be/stops/408419"], ["https://data.delijn.be/stops/106207", "https://data.delijn.be/stops/109904"], ["https://data.delijn.be/stops/206199", "https://data.delijn.be/stops/207925"], ["https://data.delijn.be/stops/205106", "https://data.delijn.be/stops/205749"], ["https://data.delijn.be/stops/105576", "https://data.delijn.be/stops/105590"], ["https://data.delijn.be/stops/506235", "https://data.delijn.be/stops/506236"], ["https://data.delijn.be/stops/403924", "https://data.delijn.be/stops/410257"], ["https://data.delijn.be/stops/102011", "https://data.delijn.be/stops/102078"], ["https://data.delijn.be/stops/401491", "https://data.delijn.be/stops/410306"], ["https://data.delijn.be/stops/306124", "https://data.delijn.be/stops/307145"], ["https://data.delijn.be/stops/401360", "https://data.delijn.be/stops/401361"], ["https://data.delijn.be/stops/504516", "https://data.delijn.be/stops/509418"], ["https://data.delijn.be/stops/202149", "https://data.delijn.be/stops/203148"], ["https://data.delijn.be/stops/108443", "https://data.delijn.be/stops/108445"], ["https://data.delijn.be/stops/301831", "https://data.delijn.be/stops/305985"], ["https://data.delijn.be/stops/504625", "https://data.delijn.be/stops/509287"], ["https://data.delijn.be/stops/408074", "https://data.delijn.be/stops/408131"], ["https://data.delijn.be/stops/200807", "https://data.delijn.be/stops/202389"], ["https://data.delijn.be/stops/102885", "https://data.delijn.be/stops/106050"], ["https://data.delijn.be/stops/101954", "https://data.delijn.be/stops/109872"], ["https://data.delijn.be/stops/207252", "https://data.delijn.be/stops/207829"], ["https://data.delijn.be/stops/200055", "https://data.delijn.be/stops/211119"], ["https://data.delijn.be/stops/404319", "https://data.delijn.be/stops/404390"], ["https://data.delijn.be/stops/107378", "https://data.delijn.be/stops/109539"], ["https://data.delijn.be/stops/503348", "https://data.delijn.be/stops/508437"], ["https://data.delijn.be/stops/405389", "https://data.delijn.be/stops/405426"], ["https://data.delijn.be/stops/206234", "https://data.delijn.be/stops/206864"], ["https://data.delijn.be/stops/402548", "https://data.delijn.be/stops/402550"], ["https://data.delijn.be/stops/400509", "https://data.delijn.be/stops/400511"], ["https://data.delijn.be/stops/300688", "https://data.delijn.be/stops/306941"], ["https://data.delijn.be/stops/504358", "https://data.delijn.be/stops/504359"], ["https://data.delijn.be/stops/108287", "https://data.delijn.be/stops/108291"], ["https://data.delijn.be/stops/301822", "https://data.delijn.be/stops/307889"], ["https://data.delijn.be/stops/204031", "https://data.delijn.be/stops/204751"], ["https://data.delijn.be/stops/202431", "https://data.delijn.be/stops/202432"], ["https://data.delijn.be/stops/400718", "https://data.delijn.be/stops/400719"], ["https://data.delijn.be/stops/407237", "https://data.delijn.be/stops/407504"], ["https://data.delijn.be/stops/205180", "https://data.delijn.be/stops/205181"], ["https://data.delijn.be/stops/109591", "https://data.delijn.be/stops/109593"], ["https://data.delijn.be/stops/503958", "https://data.delijn.be/stops/509267"], ["https://data.delijn.be/stops/202782", "https://data.delijn.be/stops/202783"], ["https://data.delijn.be/stops/404724", "https://data.delijn.be/stops/404748"], ["https://data.delijn.be/stops/303782", "https://data.delijn.be/stops/303785"], ["https://data.delijn.be/stops/107960", "https://data.delijn.be/stops/108322"], ["https://data.delijn.be/stops/106519", "https://data.delijn.be/stops/106520"], ["https://data.delijn.be/stops/300842", "https://data.delijn.be/stops/304679"], ["https://data.delijn.be/stops/200860", "https://data.delijn.be/stops/200892"], ["https://data.delijn.be/stops/102123", "https://data.delijn.be/stops/104139"], ["https://data.delijn.be/stops/401765", "https://data.delijn.be/stops/401783"], ["https://data.delijn.be/stops/204695", "https://data.delijn.be/stops/205700"], ["https://data.delijn.be/stops/502753", "https://data.delijn.be/stops/505079"], ["https://data.delijn.be/stops/301998", "https://data.delijn.be/stops/306318"], ["https://data.delijn.be/stops/501675", "https://data.delijn.be/stops/505014"], ["https://data.delijn.be/stops/400620", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/304759", "https://data.delijn.be/stops/304762"], ["https://data.delijn.be/stops/209187", "https://data.delijn.be/stops/209358"], ["https://data.delijn.be/stops/106197", "https://data.delijn.be/stops/106198"], ["https://data.delijn.be/stops/504555", "https://data.delijn.be/stops/509565"], ["https://data.delijn.be/stops/403958", "https://data.delijn.be/stops/406007"], ["https://data.delijn.be/stops/505709", "https://data.delijn.be/stops/509136"], ["https://data.delijn.be/stops/403907", "https://data.delijn.be/stops/403914"], ["https://data.delijn.be/stops/504354", "https://data.delijn.be/stops/509171"], ["https://data.delijn.be/stops/504207", "https://data.delijn.be/stops/509207"], ["https://data.delijn.be/stops/502397", "https://data.delijn.be/stops/502412"], ["https://data.delijn.be/stops/502676", "https://data.delijn.be/stops/505768"], ["https://data.delijn.be/stops/404424", "https://data.delijn.be/stops/404427"], ["https://data.delijn.be/stops/207669", "https://data.delijn.be/stops/209503"], ["https://data.delijn.be/stops/106960", "https://data.delijn.be/stops/107271"], ["https://data.delijn.be/stops/107073", "https://data.delijn.be/stops/107075"], ["https://data.delijn.be/stops/200385", "https://data.delijn.be/stops/200475"], ["https://data.delijn.be/stops/409365", "https://data.delijn.be/stops/409388"], ["https://data.delijn.be/stops/102120", "https://data.delijn.be/stops/102895"], ["https://data.delijn.be/stops/405899", "https://data.delijn.be/stops/406978"], ["https://data.delijn.be/stops/300763", "https://data.delijn.be/stops/301048"], ["https://data.delijn.be/stops/206752", "https://data.delijn.be/stops/208530"], ["https://data.delijn.be/stops/103628", "https://data.delijn.be/stops/107171"], ["https://data.delijn.be/stops/302083", "https://data.delijn.be/stops/302864"], ["https://data.delijn.be/stops/502564", "https://data.delijn.be/stops/502582"], ["https://data.delijn.be/stops/503039", "https://data.delijn.be/stops/508041"], ["https://data.delijn.be/stops/101137", "https://data.delijn.be/stops/101141"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/402623"], ["https://data.delijn.be/stops/101906", "https://data.delijn.be/stops/106504"], ["https://data.delijn.be/stops/308182", "https://data.delijn.be/stops/308194"], ["https://data.delijn.be/stops/504693", "https://data.delijn.be/stops/509077"], ["https://data.delijn.be/stops/503077", "https://data.delijn.be/stops/503678"], ["https://data.delijn.be/stops/109245", "https://data.delijn.be/stops/109248"], ["https://data.delijn.be/stops/101392", "https://data.delijn.be/stops/103136"], ["https://data.delijn.be/stops/501401", "https://data.delijn.be/stops/501532"], ["https://data.delijn.be/stops/300118", "https://data.delijn.be/stops/306853"], ["https://data.delijn.be/stops/501565", "https://data.delijn.be/stops/506565"], ["https://data.delijn.be/stops/505095", "https://data.delijn.be/stops/508586"], ["https://data.delijn.be/stops/205164", "https://data.delijn.be/stops/205582"], ["https://data.delijn.be/stops/308233", "https://data.delijn.be/stops/308236"], ["https://data.delijn.be/stops/206677", "https://data.delijn.be/stops/208805"], ["https://data.delijn.be/stops/402331", "https://data.delijn.be/stops/402766"], ["https://data.delijn.be/stops/304015", "https://data.delijn.be/stops/304070"], ["https://data.delijn.be/stops/104819", "https://data.delijn.be/stops/105214"], ["https://data.delijn.be/stops/204629", "https://data.delijn.be/stops/204630"], ["https://data.delijn.be/stops/300167", "https://data.delijn.be/stops/300170"], ["https://data.delijn.be/stops/102818", "https://data.delijn.be/stops/103770"], ["https://data.delijn.be/stops/303313", "https://data.delijn.be/stops/303331"], ["https://data.delijn.be/stops/103909", "https://data.delijn.be/stops/105644"], ["https://data.delijn.be/stops/200349", "https://data.delijn.be/stops/200389"], ["https://data.delijn.be/stops/503518", "https://data.delijn.be/stops/508518"], ["https://data.delijn.be/stops/206121", "https://data.delijn.be/stops/207092"], ["https://data.delijn.be/stops/400739", "https://data.delijn.be/stops/400741"], ["https://data.delijn.be/stops/105748", "https://data.delijn.be/stops/109829"], ["https://data.delijn.be/stops/402965", "https://data.delijn.be/stops/405151"], ["https://data.delijn.be/stops/408685", "https://data.delijn.be/stops/408689"], ["https://data.delijn.be/stops/402897", "https://data.delijn.be/stops/402942"], ["https://data.delijn.be/stops/406225", "https://data.delijn.be/stops/406432"], ["https://data.delijn.be/stops/104643", "https://data.delijn.be/stops/107967"], ["https://data.delijn.be/stops/501375", "https://data.delijn.be/stops/506375"], ["https://data.delijn.be/stops/501714", "https://data.delijn.be/stops/506012"], ["https://data.delijn.be/stops/304666", "https://data.delijn.be/stops/304677"], ["https://data.delijn.be/stops/206529", "https://data.delijn.be/stops/207529"], ["https://data.delijn.be/stops/409236", "https://data.delijn.be/stops/409239"], ["https://data.delijn.be/stops/404474", "https://data.delijn.be/stops/404503"], ["https://data.delijn.be/stops/400466", "https://data.delijn.be/stops/404843"], ["https://data.delijn.be/stops/103598", "https://data.delijn.be/stops/109399"], ["https://data.delijn.be/stops/304207", "https://data.delijn.be/stops/304208"], ["https://data.delijn.be/stops/301383", "https://data.delijn.be/stops/301384"], ["https://data.delijn.be/stops/205243", "https://data.delijn.be/stops/207241"], ["https://data.delijn.be/stops/302752", "https://data.delijn.be/stops/302773"], ["https://data.delijn.be/stops/402538", "https://data.delijn.be/stops/402544"], ["https://data.delijn.be/stops/206236", "https://data.delijn.be/stops/207935"], ["https://data.delijn.be/stops/106174", "https://data.delijn.be/stops/106175"], ["https://data.delijn.be/stops/304187", "https://data.delijn.be/stops/304188"], ["https://data.delijn.be/stops/403008", "https://data.delijn.be/stops/410324"], ["https://data.delijn.be/stops/301394", "https://data.delijn.be/stops/301395"], ["https://data.delijn.be/stops/105478", "https://data.delijn.be/stops/105479"], ["https://data.delijn.be/stops/103259", "https://data.delijn.be/stops/105419"], ["https://data.delijn.be/stops/104417", "https://data.delijn.be/stops/104418"], ["https://data.delijn.be/stops/203339", "https://data.delijn.be/stops/203850"], ["https://data.delijn.be/stops/304563", "https://data.delijn.be/stops/304564"], ["https://data.delijn.be/stops/105917", "https://data.delijn.be/stops/105919"], ["https://data.delijn.be/stops/302543", "https://data.delijn.be/stops/302544"], ["https://data.delijn.be/stops/201694", "https://data.delijn.be/stops/203988"], ["https://data.delijn.be/stops/400106", "https://data.delijn.be/stops/409155"], ["https://data.delijn.be/stops/509119", "https://data.delijn.be/stops/509718"], ["https://data.delijn.be/stops/501198", "https://data.delijn.be/stops/506199"], ["https://data.delijn.be/stops/200387", "https://data.delijn.be/stops/203719"], ["https://data.delijn.be/stops/502300", "https://data.delijn.be/stops/507300"], ["https://data.delijn.be/stops/504068", "https://data.delijn.be/stops/504112"], ["https://data.delijn.be/stops/201703", "https://data.delijn.be/stops/210256"], ["https://data.delijn.be/stops/207180", "https://data.delijn.be/stops/308574"], ["https://data.delijn.be/stops/503894", "https://data.delijn.be/stops/508894"], ["https://data.delijn.be/stops/501492", "https://data.delijn.be/stops/501601"], ["https://data.delijn.be/stops/105258", "https://data.delijn.be/stops/105276"], ["https://data.delijn.be/stops/503233", "https://data.delijn.be/stops/503965"], ["https://data.delijn.be/stops/401224", "https://data.delijn.be/stops/401285"], ["https://data.delijn.be/stops/108998", "https://data.delijn.be/stops/109001"], ["https://data.delijn.be/stops/500946", "https://data.delijn.be/stops/509168"], ["https://data.delijn.be/stops/303759", "https://data.delijn.be/stops/303779"], ["https://data.delijn.be/stops/402601", "https://data.delijn.be/stops/402639"], ["https://data.delijn.be/stops/407135", "https://data.delijn.be/stops/407138"], ["https://data.delijn.be/stops/300292", "https://data.delijn.be/stops/300301"], ["https://data.delijn.be/stops/408323", "https://data.delijn.be/stops/408357"], ["https://data.delijn.be/stops/300201", "https://data.delijn.be/stops/300631"], ["https://data.delijn.be/stops/505124", "https://data.delijn.be/stops/505127"], ["https://data.delijn.be/stops/504758", "https://data.delijn.be/stops/507797"], ["https://data.delijn.be/stops/403744", "https://data.delijn.be/stops/403817"], ["https://data.delijn.be/stops/102172", "https://data.delijn.be/stops/108096"], ["https://data.delijn.be/stops/307715", "https://data.delijn.be/stops/307717"], ["https://data.delijn.be/stops/106690", "https://data.delijn.be/stops/106692"], ["https://data.delijn.be/stops/200896", "https://data.delijn.be/stops/200897"], ["https://data.delijn.be/stops/307903", "https://data.delijn.be/stops/308492"], ["https://data.delijn.be/stops/407741", "https://data.delijn.be/stops/409634"], ["https://data.delijn.be/stops/203938", "https://data.delijn.be/stops/211052"], ["https://data.delijn.be/stops/106565", "https://data.delijn.be/stops/106567"], ["https://data.delijn.be/stops/205023", "https://data.delijn.be/stops/205819"], ["https://data.delijn.be/stops/306123", "https://data.delijn.be/stops/306124"], ["https://data.delijn.be/stops/200510", "https://data.delijn.be/stops/201509"], ["https://data.delijn.be/stops/404408", "https://data.delijn.be/stops/404421"], ["https://data.delijn.be/stops/200301", "https://data.delijn.be/stops/201301"], ["https://data.delijn.be/stops/108082", "https://data.delijn.be/stops/108448"], ["https://data.delijn.be/stops/202099", "https://data.delijn.be/stops/203256"], ["https://data.delijn.be/stops/302319", "https://data.delijn.be/stops/304176"], ["https://data.delijn.be/stops/407161", "https://data.delijn.be/stops/407192"], ["https://data.delijn.be/stops/301723", "https://data.delijn.be/stops/301724"], ["https://data.delijn.be/stops/106397", "https://data.delijn.be/stops/106398"], ["https://data.delijn.be/stops/103755", "https://data.delijn.be/stops/104161"], ["https://data.delijn.be/stops/507028", "https://data.delijn.be/stops/507051"], ["https://data.delijn.be/stops/301388", "https://data.delijn.be/stops/304666"], ["https://data.delijn.be/stops/104548", "https://data.delijn.be/stops/308620"], ["https://data.delijn.be/stops/504193", "https://data.delijn.be/stops/509159"], ["https://data.delijn.be/stops/406766", "https://data.delijn.be/stops/408171"], ["https://data.delijn.be/stops/504949", "https://data.delijn.be/stops/509949"], ["https://data.delijn.be/stops/105725", "https://data.delijn.be/stops/105755"], ["https://data.delijn.be/stops/505112", "https://data.delijn.be/stops/509516"], ["https://data.delijn.be/stops/502633", "https://data.delijn.be/stops/507130"], ["https://data.delijn.be/stops/203062", "https://data.delijn.be/stops/203074"], ["https://data.delijn.be/stops/106209", "https://data.delijn.be/stops/109904"], ["https://data.delijn.be/stops/501428", "https://data.delijn.be/stops/506599"], ["https://data.delijn.be/stops/505584", "https://data.delijn.be/stops/505754"], ["https://data.delijn.be/stops/201863", "https://data.delijn.be/stops/202423"], ["https://data.delijn.be/stops/304010", "https://data.delijn.be/stops/304100"], ["https://data.delijn.be/stops/307350", "https://data.delijn.be/stops/307429"], ["https://data.delijn.be/stops/508829", "https://data.delijn.be/stops/509052"], ["https://data.delijn.be/stops/401563", "https://data.delijn.be/stops/401746"], ["https://data.delijn.be/stops/201674", "https://data.delijn.be/stops/203204"], ["https://data.delijn.be/stops/508114", "https://data.delijn.be/stops/508118"], ["https://data.delijn.be/stops/300347", "https://data.delijn.be/stops/300348"], ["https://data.delijn.be/stops/105449", "https://data.delijn.be/stops/105451"], ["https://data.delijn.be/stops/502224", "https://data.delijn.be/stops/505836"], ["https://data.delijn.be/stops/407595", "https://data.delijn.be/stops/407634"], ["https://data.delijn.be/stops/503406", "https://data.delijn.be/stops/503410"], ["https://data.delijn.be/stops/106791", "https://data.delijn.be/stops/106792"], ["https://data.delijn.be/stops/400844", "https://data.delijn.be/stops/400845"], ["https://data.delijn.be/stops/405926", "https://data.delijn.be/stops/405927"], ["https://data.delijn.be/stops/109767", "https://data.delijn.be/stops/109787"], ["https://data.delijn.be/stops/200537", "https://data.delijn.be/stops/210049"], ["https://data.delijn.be/stops/203938", "https://data.delijn.be/stops/203940"], ["https://data.delijn.be/stops/302646", "https://data.delijn.be/stops/308112"], ["https://data.delijn.be/stops/202967", "https://data.delijn.be/stops/204100"], ["https://data.delijn.be/stops/405517", "https://data.delijn.be/stops/405521"], ["https://data.delijn.be/stops/502441", "https://data.delijn.be/stops/507163"], ["https://data.delijn.be/stops/205367", "https://data.delijn.be/stops/205369"], ["https://data.delijn.be/stops/105772", "https://data.delijn.be/stops/105773"], ["https://data.delijn.be/stops/504593", "https://data.delijn.be/stops/509245"], ["https://data.delijn.be/stops/406803", "https://data.delijn.be/stops/407901"], ["https://data.delijn.be/stops/101148", "https://data.delijn.be/stops/106761"], ["https://data.delijn.be/stops/102503", "https://data.delijn.be/stops/406493"], ["https://data.delijn.be/stops/504460", "https://data.delijn.be/stops/509200"], ["https://data.delijn.be/stops/306693", "https://data.delijn.be/stops/306694"], ["https://data.delijn.be/stops/102436", "https://data.delijn.be/stops/107884"], ["https://data.delijn.be/stops/505804", "https://data.delijn.be/stops/510030"], ["https://data.delijn.be/stops/102947", "https://data.delijn.be/stops/106128"], ["https://data.delijn.be/stops/105068", "https://data.delijn.be/stops/106782"], ["https://data.delijn.be/stops/407341", "https://data.delijn.be/stops/409402"], ["https://data.delijn.be/stops/102457", "https://data.delijn.be/stops/109852"], ["https://data.delijn.be/stops/406529", "https://data.delijn.be/stops/409289"], ["https://data.delijn.be/stops/105356", "https://data.delijn.be/stops/106234"], ["https://data.delijn.be/stops/202434", "https://data.delijn.be/stops/203438"], ["https://data.delijn.be/stops/400301", "https://data.delijn.be/stops/400306"], ["https://data.delijn.be/stops/308472", "https://data.delijn.be/stops/308473"], ["https://data.delijn.be/stops/105052", "https://data.delijn.be/stops/105053"], ["https://data.delijn.be/stops/305399", "https://data.delijn.be/stops/305461"], ["https://data.delijn.be/stops/102632", "https://data.delijn.be/stops/103337"], ["https://data.delijn.be/stops/300480", "https://data.delijn.be/stops/300534"], ["https://data.delijn.be/stops/300670", "https://data.delijn.be/stops/300675"], ["https://data.delijn.be/stops/200979", "https://data.delijn.be/stops/201594"], ["https://data.delijn.be/stops/503881", "https://data.delijn.be/stops/508879"], ["https://data.delijn.be/stops/304139", "https://data.delijn.be/stops/307561"], ["https://data.delijn.be/stops/209145", "https://data.delijn.be/stops/209403"], ["https://data.delijn.be/stops/102229", "https://data.delijn.be/stops/102607"], ["https://data.delijn.be/stops/401203", "https://data.delijn.be/stops/401346"], ["https://data.delijn.be/stops/106847", "https://data.delijn.be/stops/106848"], ["https://data.delijn.be/stops/506363", "https://data.delijn.be/stops/506364"], ["https://data.delijn.be/stops/300345", "https://data.delijn.be/stops/300355"], ["https://data.delijn.be/stops/408613", "https://data.delijn.be/stops/408750"], ["https://data.delijn.be/stops/108071", "https://data.delijn.be/stops/108072"], ["https://data.delijn.be/stops/208253", "https://data.delijn.be/stops/209328"], ["https://data.delijn.be/stops/305753", "https://data.delijn.be/stops/306303"], ["https://data.delijn.be/stops/400228", "https://data.delijn.be/stops/402375"], ["https://data.delijn.be/stops/208199", "https://data.delijn.be/stops/209199"], ["https://data.delijn.be/stops/500002", "https://data.delijn.be/stops/508663"], ["https://data.delijn.be/stops/202632", "https://data.delijn.be/stops/204091"], ["https://data.delijn.be/stops/106590", "https://data.delijn.be/stops/107252"], ["https://data.delijn.be/stops/503717", "https://data.delijn.be/stops/503732"], ["https://data.delijn.be/stops/502499", "https://data.delijn.be/stops/505662"], ["https://data.delijn.be/stops/202927", "https://data.delijn.be/stops/208694"], ["https://data.delijn.be/stops/105771", "https://data.delijn.be/stops/105777"], ["https://data.delijn.be/stops/401260", "https://data.delijn.be/stops/401277"], ["https://data.delijn.be/stops/504405", "https://data.delijn.be/stops/505989"], ["https://data.delijn.be/stops/408591", "https://data.delijn.be/stops/408777"], ["https://data.delijn.be/stops/101651", "https://data.delijn.be/stops/108799"], ["https://data.delijn.be/stops/504121", "https://data.delijn.be/stops/504129"], ["https://data.delijn.be/stops/502574", "https://data.delijn.be/stops/507574"], ["https://data.delijn.be/stops/202589", "https://data.delijn.be/stops/203570"], ["https://data.delijn.be/stops/105854", "https://data.delijn.be/stops/105856"], ["https://data.delijn.be/stops/201554", "https://data.delijn.be/stops/201666"], ["https://data.delijn.be/stops/502023", "https://data.delijn.be/stops/507797"], ["https://data.delijn.be/stops/207340", "https://data.delijn.be/stops/207713"], ["https://data.delijn.be/stops/101919", "https://data.delijn.be/stops/106999"], ["https://data.delijn.be/stops/200478", "https://data.delijn.be/stops/201797"], ["https://data.delijn.be/stops/305616", "https://data.delijn.be/stops/305617"], ["https://data.delijn.be/stops/302974", "https://data.delijn.be/stops/302975"], ["https://data.delijn.be/stops/300822", "https://data.delijn.be/stops/300841"], ["https://data.delijn.be/stops/107425", "https://data.delijn.be/stops/107703"], ["https://data.delijn.be/stops/302878", "https://data.delijn.be/stops/302978"], ["https://data.delijn.be/stops/501523", "https://data.delijn.be/stops/501546"], ["https://data.delijn.be/stops/505141", "https://data.delijn.be/stops/505142"], ["https://data.delijn.be/stops/501551", "https://data.delijn.be/stops/502519"], ["https://data.delijn.be/stops/208174", "https://data.delijn.be/stops/209173"], ["https://data.delijn.be/stops/505151", "https://data.delijn.be/stops/506097"], ["https://data.delijn.be/stops/208083", "https://data.delijn.be/stops/208084"], ["https://data.delijn.be/stops/308637", "https://data.delijn.be/stops/308638"], ["https://data.delijn.be/stops/206471", "https://data.delijn.be/stops/207471"], ["https://data.delijn.be/stops/402669", "https://data.delijn.be/stops/410089"], ["https://data.delijn.be/stops/208133", "https://data.delijn.be/stops/208815"], ["https://data.delijn.be/stops/203538", "https://data.delijn.be/stops/209722"], ["https://data.delijn.be/stops/301122", "https://data.delijn.be/stops/301131"], ["https://data.delijn.be/stops/507569", "https://data.delijn.be/stops/507575"], ["https://data.delijn.be/stops/400755", "https://data.delijn.be/stops/409587"], ["https://data.delijn.be/stops/502069", "https://data.delijn.be/stops/507069"], ["https://data.delijn.be/stops/306375", "https://data.delijn.be/stops/307814"], ["https://data.delijn.be/stops/303515", "https://data.delijn.be/stops/305637"], ["https://data.delijn.be/stops/206130", "https://data.delijn.be/stops/207138"], ["https://data.delijn.be/stops/401445", "https://data.delijn.be/stops/406808"], ["https://data.delijn.be/stops/507320", "https://data.delijn.be/stops/507331"], ["https://data.delijn.be/stops/401014", "https://data.delijn.be/stops/401019"], ["https://data.delijn.be/stops/501423", "https://data.delijn.be/stops/506424"], ["https://data.delijn.be/stops/407692", "https://data.delijn.be/stops/407694"], ["https://data.delijn.be/stops/206243", "https://data.delijn.be/stops/206272"], ["https://data.delijn.be/stops/200762", "https://data.delijn.be/stops/507961"], ["https://data.delijn.be/stops/206102", "https://data.delijn.be/stops/207843"], ["https://data.delijn.be/stops/402873", "https://data.delijn.be/stops/402875"], ["https://data.delijn.be/stops/201832", "https://data.delijn.be/stops/208260"], ["https://data.delijn.be/stops/301583", "https://data.delijn.be/stops/305046"], ["https://data.delijn.be/stops/203822", "https://data.delijn.be/stops/209715"], ["https://data.delijn.be/stops/306685", "https://data.delijn.be/stops/306688"], ["https://data.delijn.be/stops/300183", "https://data.delijn.be/stops/300186"], ["https://data.delijn.be/stops/207101", "https://data.delijn.be/stops/207123"], ["https://data.delijn.be/stops/106521", "https://data.delijn.be/stops/106522"], ["https://data.delijn.be/stops/403715", "https://data.delijn.be/stops/403726"], ["https://data.delijn.be/stops/405772", "https://data.delijn.be/stops/409419"], ["https://data.delijn.be/stops/508158", "https://data.delijn.be/stops/508171"], ["https://data.delijn.be/stops/107158", "https://data.delijn.be/stops/107161"], ["https://data.delijn.be/stops/303092", "https://data.delijn.be/stops/307169"], ["https://data.delijn.be/stops/200108", "https://data.delijn.be/stops/200360"], ["https://data.delijn.be/stops/207797", "https://data.delijn.be/stops/208758"], ["https://data.delijn.be/stops/204053", "https://data.delijn.be/stops/205052"], ["https://data.delijn.be/stops/404647", "https://data.delijn.be/stops/407254"], ["https://data.delijn.be/stops/201931", "https://data.delijn.be/stops/202945"], ["https://data.delijn.be/stops/203706", "https://data.delijn.be/stops/203707"], ["https://data.delijn.be/stops/204411", "https://data.delijn.be/stops/205411"], ["https://data.delijn.be/stops/303188", "https://data.delijn.be/stops/303211"], ["https://data.delijn.be/stops/201850", "https://data.delijn.be/stops/211032"], ["https://data.delijn.be/stops/304759", "https://data.delijn.be/stops/305285"], ["https://data.delijn.be/stops/403131", "https://data.delijn.be/stops/403831"], ["https://data.delijn.be/stops/400171", "https://data.delijn.be/stops/407393"], ["https://data.delijn.be/stops/104419", "https://data.delijn.be/stops/204450"], ["https://data.delijn.be/stops/201922", "https://data.delijn.be/stops/207409"], ["https://data.delijn.be/stops/505184", "https://data.delijn.be/stops/509978"], ["https://data.delijn.be/stops/301946", "https://data.delijn.be/stops/307895"], ["https://data.delijn.be/stops/206357", "https://data.delijn.be/stops/207358"], ["https://data.delijn.be/stops/504981", "https://data.delijn.be/stops/509641"], ["https://data.delijn.be/stops/200906", "https://data.delijn.be/stops/203269"], ["https://data.delijn.be/stops/503797", "https://data.delijn.be/stops/508549"], ["https://data.delijn.be/stops/407044", "https://data.delijn.be/stops/407050"], ["https://data.delijn.be/stops/104966", "https://data.delijn.be/stops/107614"], ["https://data.delijn.be/stops/305235", "https://data.delijn.be/stops/305314"], ["https://data.delijn.be/stops/500019", "https://data.delijn.be/stops/507441"], ["https://data.delijn.be/stops/303645", "https://data.delijn.be/stops/305497"], ["https://data.delijn.be/stops/208164", "https://data.delijn.be/stops/209170"], ["https://data.delijn.be/stops/107230", "https://data.delijn.be/stops/108865"], ["https://data.delijn.be/stops/206925", "https://data.delijn.be/stops/207199"], ["https://data.delijn.be/stops/504348", "https://data.delijn.be/stops/509200"], ["https://data.delijn.be/stops/103570", "https://data.delijn.be/stops/107137"], ["https://data.delijn.be/stops/500158", "https://data.delijn.be/stops/505984"], ["https://data.delijn.be/stops/504527", "https://data.delijn.be/stops/504599"], ["https://data.delijn.be/stops/201763", "https://data.delijn.be/stops/209397"], ["https://data.delijn.be/stops/201420", "https://data.delijn.be/stops/203012"], ["https://data.delijn.be/stops/303733", "https://data.delijn.be/stops/307259"], ["https://data.delijn.be/stops/206139", "https://data.delijn.be/stops/206140"], ["https://data.delijn.be/stops/502511", "https://data.delijn.be/stops/502806"], ["https://data.delijn.be/stops/506644", "https://data.delijn.be/stops/509835"], ["https://data.delijn.be/stops/501313", "https://data.delijn.be/stops/501511"], ["https://data.delijn.be/stops/504258", "https://data.delijn.be/stops/509258"], ["https://data.delijn.be/stops/108284", "https://data.delijn.be/stops/108288"], ["https://data.delijn.be/stops/101557", "https://data.delijn.be/stops/103757"], ["https://data.delijn.be/stops/102972", "https://data.delijn.be/stops/105780"], ["https://data.delijn.be/stops/202386", "https://data.delijn.be/stops/209947"], ["https://data.delijn.be/stops/200300", "https://data.delijn.be/stops/201323"], ["https://data.delijn.be/stops/303101", "https://data.delijn.be/stops/305159"], ["https://data.delijn.be/stops/308074", "https://data.delijn.be/stops/308075"], ["https://data.delijn.be/stops/106967", "https://data.delijn.be/stops/106968"], ["https://data.delijn.be/stops/403221", "https://data.delijn.be/stops/403222"], ["https://data.delijn.be/stops/302071", "https://data.delijn.be/stops/305635"], ["https://data.delijn.be/stops/303953", "https://data.delijn.be/stops/303957"], ["https://data.delijn.be/stops/103999", "https://data.delijn.be/stops/107285"], ["https://data.delijn.be/stops/102813", "https://data.delijn.be/stops/104775"], ["https://data.delijn.be/stops/403960", "https://data.delijn.be/stops/405943"], ["https://data.delijn.be/stops/104741", "https://data.delijn.be/stops/108154"], ["https://data.delijn.be/stops/104585", "https://data.delijn.be/stops/105809"], ["https://data.delijn.be/stops/206002", "https://data.delijn.be/stops/207003"], ["https://data.delijn.be/stops/301184", "https://data.delijn.be/stops/304071"], ["https://data.delijn.be/stops/300323", "https://data.delijn.be/stops/300334"], ["https://data.delijn.be/stops/408505", "https://data.delijn.be/stops/408526"], ["https://data.delijn.be/stops/400223", "https://data.delijn.be/stops/407154"], ["https://data.delijn.be/stops/403199", "https://data.delijn.be/stops/403229"], ["https://data.delijn.be/stops/106327", "https://data.delijn.be/stops/106328"], ["https://data.delijn.be/stops/405683", "https://data.delijn.be/stops/407511"], ["https://data.delijn.be/stops/303757", "https://data.delijn.be/stops/303875"], ["https://data.delijn.be/stops/408439", "https://data.delijn.be/stops/408440"], ["https://data.delijn.be/stops/501559", "https://data.delijn.be/stops/506231"], ["https://data.delijn.be/stops/206604", "https://data.delijn.be/stops/207980"], ["https://data.delijn.be/stops/206048", "https://data.delijn.be/stops/206298"], ["https://data.delijn.be/stops/501155", "https://data.delijn.be/stops/506690"], ["https://data.delijn.be/stops/104599", "https://data.delijn.be/stops/106826"], ["https://data.delijn.be/stops/203857", "https://data.delijn.be/stops/208714"], ["https://data.delijn.be/stops/103994", "https://data.delijn.be/stops/104047"], ["https://data.delijn.be/stops/302848", "https://data.delijn.be/stops/308822"], ["https://data.delijn.be/stops/501442", "https://data.delijn.be/stops/506438"], ["https://data.delijn.be/stops/502177", "https://data.delijn.be/stops/507177"], ["https://data.delijn.be/stops/505664", "https://data.delijn.be/stops/509703"], ["https://data.delijn.be/stops/103281", "https://data.delijn.be/stops/105456"], ["https://data.delijn.be/stops/407729", "https://data.delijn.be/stops/409777"], ["https://data.delijn.be/stops/409398", "https://data.delijn.be/stops/409399"], ["https://data.delijn.be/stops/502348", "https://data.delijn.be/stops/505090"], ["https://data.delijn.be/stops/301291", "https://data.delijn.be/stops/304694"], ["https://data.delijn.be/stops/200386", "https://data.delijn.be/stops/203719"], ["https://data.delijn.be/stops/405156", "https://data.delijn.be/stops/405176"], ["https://data.delijn.be/stops/406616", "https://data.delijn.be/stops/406641"], ["https://data.delijn.be/stops/502351", "https://data.delijn.be/stops/502570"], ["https://data.delijn.be/stops/408358", "https://data.delijn.be/stops/408379"], ["https://data.delijn.be/stops/304542", "https://data.delijn.be/stops/307568"], ["https://data.delijn.be/stops/200006", "https://data.delijn.be/stops/210070"], ["https://data.delijn.be/stops/408529", "https://data.delijn.be/stops/408873"], ["https://data.delijn.be/stops/402248", "https://data.delijn.be/stops/402373"], ["https://data.delijn.be/stops/107281", "https://data.delijn.be/stops/107397"], ["https://data.delijn.be/stops/103959", "https://data.delijn.be/stops/109576"], ["https://data.delijn.be/stops/102163", "https://data.delijn.be/stops/104031"], ["https://data.delijn.be/stops/403887", "https://data.delijn.be/stops/403895"], ["https://data.delijn.be/stops/106005", "https://data.delijn.be/stops/106010"], ["https://data.delijn.be/stops/403426", "https://data.delijn.be/stops/410290"], ["https://data.delijn.be/stops/209669", "https://data.delijn.be/stops/209673"], ["https://data.delijn.be/stops/206957", "https://data.delijn.be/stops/217006"], ["https://data.delijn.be/stops/200773", "https://data.delijn.be/stops/505973"], ["https://data.delijn.be/stops/302862", "https://data.delijn.be/stops/306110"], ["https://data.delijn.be/stops/208218", "https://data.delijn.be/stops/208219"], ["https://data.delijn.be/stops/301472", "https://data.delijn.be/stops/305654"], ["https://data.delijn.be/stops/400467", "https://data.delijn.be/stops/400496"], ["https://data.delijn.be/stops/304157", "https://data.delijn.be/stops/307759"], ["https://data.delijn.be/stops/503160", "https://data.delijn.be/stops/508172"], ["https://data.delijn.be/stops/200944", "https://data.delijn.be/stops/202727"], ["https://data.delijn.be/stops/104668", "https://data.delijn.be/stops/108423"], ["https://data.delijn.be/stops/301372", "https://data.delijn.be/stops/304696"], ["https://data.delijn.be/stops/306557", "https://data.delijn.be/stops/306558"], ["https://data.delijn.be/stops/101003", "https://data.delijn.be/stops/107670"], ["https://data.delijn.be/stops/503469", "https://data.delijn.be/stops/508469"], ["https://data.delijn.be/stops/501172", "https://data.delijn.be/stops/506169"], ["https://data.delijn.be/stops/200098", "https://data.delijn.be/stops/200142"], ["https://data.delijn.be/stops/206458", "https://data.delijn.be/stops/206824"], ["https://data.delijn.be/stops/301518", "https://data.delijn.be/stops/301519"], ["https://data.delijn.be/stops/409434", "https://data.delijn.be/stops/409723"], ["https://data.delijn.be/stops/503600", "https://data.delijn.be/stops/505788"], ["https://data.delijn.be/stops/106421", "https://data.delijn.be/stops/106561"], ["https://data.delijn.be/stops/302755", "https://data.delijn.be/stops/302756"], ["https://data.delijn.be/stops/206927", "https://data.delijn.be/stops/207583"], ["https://data.delijn.be/stops/306698", "https://data.delijn.be/stops/308780"], ["https://data.delijn.be/stops/209112", "https://data.delijn.be/stops/209314"], ["https://data.delijn.be/stops/502383", "https://data.delijn.be/stops/507909"], ["https://data.delijn.be/stops/405953", "https://data.delijn.be/stops/405998"], ["https://data.delijn.be/stops/301160", "https://data.delijn.be/stops/301403"], ["https://data.delijn.be/stops/208787", "https://data.delijn.be/stops/209776"], ["https://data.delijn.be/stops/204970", "https://data.delijn.be/stops/216002"], ["https://data.delijn.be/stops/103775", "https://data.delijn.be/stops/104485"], ["https://data.delijn.be/stops/106919", "https://data.delijn.be/stops/106920"], ["https://data.delijn.be/stops/503720", "https://data.delijn.be/stops/509969"], ["https://data.delijn.be/stops/205913", "https://data.delijn.be/stops/205914"], ["https://data.delijn.be/stops/200673", "https://data.delijn.be/stops/201463"], ["https://data.delijn.be/stops/201263", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/504806", "https://data.delijn.be/stops/504807"], ["https://data.delijn.be/stops/202537", "https://data.delijn.be/stops/202730"], ["https://data.delijn.be/stops/204095", "https://data.delijn.be/stops/204250"], ["https://data.delijn.be/stops/400502", "https://data.delijn.be/stops/402637"], ["https://data.delijn.be/stops/409044", "https://data.delijn.be/stops/409470"], ["https://data.delijn.be/stops/204493", "https://data.delijn.be/stops/205265"], ["https://data.delijn.be/stops/403917", "https://data.delijn.be/stops/404004"], ["https://data.delijn.be/stops/211011", "https://data.delijn.be/stops/502274"], ["https://data.delijn.be/stops/401410", "https://data.delijn.be/stops/300992"], ["https://data.delijn.be/stops/504159", "https://data.delijn.be/stops/509056"], ["https://data.delijn.be/stops/501065", "https://data.delijn.be/stops/506064"], ["https://data.delijn.be/stops/400888", "https://data.delijn.be/stops/400976"], ["https://data.delijn.be/stops/300995", "https://data.delijn.be/stops/301082"], ["https://data.delijn.be/stops/502492", "https://data.delijn.be/stops/503334"], ["https://data.delijn.be/stops/308464", "https://data.delijn.be/stops/308513"], ["https://data.delijn.be/stops/304399", "https://data.delijn.be/stops/308827"], ["https://data.delijn.be/stops/202487", "https://data.delijn.be/stops/202488"], ["https://data.delijn.be/stops/206487", "https://data.delijn.be/stops/206861"], ["https://data.delijn.be/stops/504518", "https://data.delijn.be/stops/504521"], ["https://data.delijn.be/stops/103115", "https://data.delijn.be/stops/104126"], ["https://data.delijn.be/stops/102407", "https://data.delijn.be/stops/109008"], ["https://data.delijn.be/stops/204399", "https://data.delijn.be/stops/205772"], ["https://data.delijn.be/stops/203179", "https://data.delijn.be/stops/205792"], ["https://data.delijn.be/stops/504037", "https://data.delijn.be/stops/504040"], ["https://data.delijn.be/stops/106239", "https://data.delijn.be/stops/106240"], ["https://data.delijn.be/stops/202425", "https://data.delijn.be/stops/202426"], ["https://data.delijn.be/stops/504021", "https://data.delijn.be/stops/509087"], ["https://data.delijn.be/stops/302113", "https://data.delijn.be/stops/302121"], ["https://data.delijn.be/stops/402874", "https://data.delijn.be/stops/404353"], ["https://data.delijn.be/stops/303421", "https://data.delijn.be/stops/304986"], ["https://data.delijn.be/stops/405322", "https://data.delijn.be/stops/405323"], ["https://data.delijn.be/stops/505060", "https://data.delijn.be/stops/505647"], ["https://data.delijn.be/stops/101673", "https://data.delijn.be/stops/408809"], ["https://data.delijn.be/stops/407352", "https://data.delijn.be/stops/407446"], ["https://data.delijn.be/stops/407657", "https://data.delijn.be/stops/407714"], ["https://data.delijn.be/stops/300245", "https://data.delijn.be/stops/305394"], ["https://data.delijn.be/stops/403030", "https://data.delijn.be/stops/403162"], ["https://data.delijn.be/stops/300643", "https://data.delijn.be/stops/306746"], ["https://data.delijn.be/stops/107134", "https://data.delijn.be/stops/107136"], ["https://data.delijn.be/stops/308247", "https://data.delijn.be/stops/308248"], ["https://data.delijn.be/stops/107622", "https://data.delijn.be/stops/109761"], ["https://data.delijn.be/stops/503310", "https://data.delijn.be/stops/508310"], ["https://data.delijn.be/stops/508078", "https://data.delijn.be/stops/508594"], ["https://data.delijn.be/stops/202298", "https://data.delijn.be/stops/203326"], ["https://data.delijn.be/stops/205987", "https://data.delijn.be/stops/209285"], ["https://data.delijn.be/stops/503091", "https://data.delijn.be/stops/508102"], ["https://data.delijn.be/stops/105111", "https://data.delijn.be/stops/105113"], ["https://data.delijn.be/stops/204034", "https://data.delijn.be/stops/204558"], ["https://data.delijn.be/stops/408100", "https://data.delijn.be/stops/408420"], ["https://data.delijn.be/stops/206406", "https://data.delijn.be/stops/207406"], ["https://data.delijn.be/stops/502103", "https://data.delijn.be/stops/507090"], ["https://data.delijn.be/stops/300430", "https://data.delijn.be/stops/308062"], ["https://data.delijn.be/stops/300308", "https://data.delijn.be/stops/300525"], ["https://data.delijn.be/stops/200699", "https://data.delijn.be/stops/202790"], ["https://data.delijn.be/stops/101456", "https://data.delijn.be/stops/108214"], ["https://data.delijn.be/stops/108961", "https://data.delijn.be/stops/108963"], ["https://data.delijn.be/stops/401245", "https://data.delijn.be/stops/410171"], ["https://data.delijn.be/stops/203040", "https://data.delijn.be/stops/203686"], ["https://data.delijn.be/stops/104404", "https://data.delijn.be/stops/205336"], ["https://data.delijn.be/stops/302726", "https://data.delijn.be/stops/302769"], ["https://data.delijn.be/stops/503035", "https://data.delijn.be/stops/508035"], ["https://data.delijn.be/stops/402755", "https://data.delijn.be/stops/408275"], ["https://data.delijn.be/stops/300876", "https://data.delijn.be/stops/300884"], ["https://data.delijn.be/stops/504208", "https://data.delijn.be/stops/509215"], ["https://data.delijn.be/stops/400816", "https://data.delijn.be/stops/400876"], ["https://data.delijn.be/stops/504064", "https://data.delijn.be/stops/509067"], ["https://data.delijn.be/stops/304501", "https://data.delijn.be/stops/305602"], ["https://data.delijn.be/stops/206018", "https://data.delijn.be/stops/206078"], ["https://data.delijn.be/stops/105237", "https://data.delijn.be/stops/108000"], ["https://data.delijn.be/stops/409272", "https://data.delijn.be/stops/409273"], ["https://data.delijn.be/stops/300470", "https://data.delijn.be/stops/300475"], ["https://data.delijn.be/stops/501098", "https://data.delijn.be/stops/506098"], ["https://data.delijn.be/stops/307307", "https://data.delijn.be/stops/307308"], ["https://data.delijn.be/stops/509950", "https://data.delijn.be/stops/509975"], ["https://data.delijn.be/stops/505665", "https://data.delijn.be/stops/507482"], ["https://data.delijn.be/stops/211015", "https://data.delijn.be/stops/507277"], ["https://data.delijn.be/stops/300094", "https://data.delijn.be/stops/300095"], ["https://data.delijn.be/stops/207473", "https://data.delijn.be/stops/207495"], ["https://data.delijn.be/stops/205136", "https://data.delijn.be/stops/209912"], ["https://data.delijn.be/stops/201849", "https://data.delijn.be/stops/209640"], ["https://data.delijn.be/stops/208771", "https://data.delijn.be/stops/209771"], ["https://data.delijn.be/stops/400913", "https://data.delijn.be/stops/400917"], ["https://data.delijn.be/stops/402407", "https://data.delijn.be/stops/402463"], ["https://data.delijn.be/stops/202412", "https://data.delijn.be/stops/204943"], ["https://data.delijn.be/stops/306095", "https://data.delijn.be/stops/306096"], ["https://data.delijn.be/stops/407730", "https://data.delijn.be/stops/409782"], ["https://data.delijn.be/stops/503145", "https://data.delijn.be/stops/509631"], ["https://data.delijn.be/stops/102792", "https://data.delijn.be/stops/105177"], ["https://data.delijn.be/stops/207077", "https://data.delijn.be/stops/207877"], ["https://data.delijn.be/stops/206657", "https://data.delijn.be/stops/206658"], ["https://data.delijn.be/stops/404401", "https://data.delijn.be/stops/410102"], ["https://data.delijn.be/stops/410171", "https://data.delijn.be/stops/410172"], ["https://data.delijn.be/stops/409581", "https://data.delijn.be/stops/409587"], ["https://data.delijn.be/stops/503640", "https://data.delijn.be/stops/503981"], ["https://data.delijn.be/stops/407831", "https://data.delijn.be/stops/407943"], ["https://data.delijn.be/stops/305503", "https://data.delijn.be/stops/305559"], ["https://data.delijn.be/stops/200126", "https://data.delijn.be/stops/201129"], ["https://data.delijn.be/stops/204200", "https://data.delijn.be/stops/205235"], ["https://data.delijn.be/stops/304647", "https://data.delijn.be/stops/304677"], ["https://data.delijn.be/stops/407045", "https://data.delijn.be/stops/407078"], ["https://data.delijn.be/stops/501207", "https://data.delijn.be/stops/501426"], ["https://data.delijn.be/stops/204998", "https://data.delijn.be/stops/218008"], ["https://data.delijn.be/stops/301068", "https://data.delijn.be/stops/301070"], ["https://data.delijn.be/stops/304435", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/101459", "https://data.delijn.be/stops/101481"], ["https://data.delijn.be/stops/209387", "https://data.delijn.be/stops/209413"], ["https://data.delijn.be/stops/400919", "https://data.delijn.be/stops/400922"], ["https://data.delijn.be/stops/300208", "https://data.delijn.be/stops/300270"], ["https://data.delijn.be/stops/506240", "https://data.delijn.be/stops/506242"], ["https://data.delijn.be/stops/503361", "https://data.delijn.be/stops/503410"], ["https://data.delijn.be/stops/502757", "https://data.delijn.be/stops/507762"], ["https://data.delijn.be/stops/505725", "https://data.delijn.be/stops/507297"], ["https://data.delijn.be/stops/501114", "https://data.delijn.be/stops/506664"], ["https://data.delijn.be/stops/502066", "https://data.delijn.be/stops/502707"], ["https://data.delijn.be/stops/201227", "https://data.delijn.be/stops/201369"], ["https://data.delijn.be/stops/508662", "https://data.delijn.be/stops/508880"], ["https://data.delijn.be/stops/503669", "https://data.delijn.be/stops/505978"], ["https://data.delijn.be/stops/104118", "https://data.delijn.be/stops/104494"], ["https://data.delijn.be/stops/302148", "https://data.delijn.be/stops/302149"], ["https://data.delijn.be/stops/101131", "https://data.delijn.be/stops/107958"], ["https://data.delijn.be/stops/102985", "https://data.delijn.be/stops/103670"], ["https://data.delijn.be/stops/301537", "https://data.delijn.be/stops/301548"], ["https://data.delijn.be/stops/305243", "https://data.delijn.be/stops/305271"], ["https://data.delijn.be/stops/301700", "https://data.delijn.be/stops/301745"], ["https://data.delijn.be/stops/503962", "https://data.delijn.be/stops/504668"], ["https://data.delijn.be/stops/303742", "https://data.delijn.be/stops/303745"], ["https://data.delijn.be/stops/300269", "https://data.delijn.be/stops/303634"], ["https://data.delijn.be/stops/109345", "https://data.delijn.be/stops/109346"], ["https://data.delijn.be/stops/406070", "https://data.delijn.be/stops/410148"], ["https://data.delijn.be/stops/202182", "https://data.delijn.be/stops/203183"], ["https://data.delijn.be/stops/303800", "https://data.delijn.be/stops/303801"], ["https://data.delijn.be/stops/303933", "https://data.delijn.be/stops/304594"], ["https://data.delijn.be/stops/106732", "https://data.delijn.be/stops/108915"], ["https://data.delijn.be/stops/504240", "https://data.delijn.be/stops/509231"], ["https://data.delijn.be/stops/202128", "https://data.delijn.be/stops/203583"], ["https://data.delijn.be/stops/210124", "https://data.delijn.be/stops/211124"], ["https://data.delijn.be/stops/408197", "https://data.delijn.be/stops/409340"], ["https://data.delijn.be/stops/305170", "https://data.delijn.be/stops/307104"], ["https://data.delijn.be/stops/201861", "https://data.delijn.be/stops/202274"], ["https://data.delijn.be/stops/502547", "https://data.delijn.be/stops/505777"], ["https://data.delijn.be/stops/401076", "https://data.delijn.be/stops/401077"], ["https://data.delijn.be/stops/505372", "https://data.delijn.be/stops/509155"], ["https://data.delijn.be/stops/504406", "https://data.delijn.be/stops/505785"], ["https://data.delijn.be/stops/503413", "https://data.delijn.be/stops/508427"], ["https://data.delijn.be/stops/103128", "https://data.delijn.be/stops/106777"], ["https://data.delijn.be/stops/107662", "https://data.delijn.be/stops/107666"], ["https://data.delijn.be/stops/308146", "https://data.delijn.be/stops/308149"], ["https://data.delijn.be/stops/301615", "https://data.delijn.be/stops/301625"], ["https://data.delijn.be/stops/201488", "https://data.delijn.be/stops/203454"], ["https://data.delijn.be/stops/106005", "https://data.delijn.be/stops/107900"], ["https://data.delijn.be/stops/400454", "https://data.delijn.be/stops/400466"], ["https://data.delijn.be/stops/407018", "https://data.delijn.be/stops/407084"], ["https://data.delijn.be/stops/502911", "https://data.delijn.be/stops/507246"], ["https://data.delijn.be/stops/302849", "https://data.delijn.be/stops/302854"], ["https://data.delijn.be/stops/502167", "https://data.delijn.be/stops/507167"], ["https://data.delijn.be/stops/505269", "https://data.delijn.be/stops/508783"], ["https://data.delijn.be/stops/104742", "https://data.delijn.be/stops/108154"], ["https://data.delijn.be/stops/504787", "https://data.delijn.be/stops/504862"], ["https://data.delijn.be/stops/200108", "https://data.delijn.be/stops/202006"], ["https://data.delijn.be/stops/104588", "https://data.delijn.be/stops/106068"], ["https://data.delijn.be/stops/108074", "https://data.delijn.be/stops/108078"], ["https://data.delijn.be/stops/505317", "https://data.delijn.be/stops/507483"], ["https://data.delijn.be/stops/200448", "https://data.delijn.be/stops/203352"], ["https://data.delijn.be/stops/202220", "https://data.delijn.be/stops/202221"], ["https://data.delijn.be/stops/504007", "https://data.delijn.be/stops/504577"], ["https://data.delijn.be/stops/303954", "https://data.delijn.be/stops/303974"], ["https://data.delijn.be/stops/301948", "https://data.delijn.be/stops/306970"], ["https://data.delijn.be/stops/400576", "https://data.delijn.be/stops/404138"], ["https://data.delijn.be/stops/403284", "https://data.delijn.be/stops/410164"], ["https://data.delijn.be/stops/402388", "https://data.delijn.be/stops/402391"], ["https://data.delijn.be/stops/504753", "https://data.delijn.be/stops/509753"], ["https://data.delijn.be/stops/404534", "https://data.delijn.be/stops/404535"], ["https://data.delijn.be/stops/503885", "https://data.delijn.be/stops/508887"], ["https://data.delijn.be/stops/504551", "https://data.delijn.be/stops/509544"], ["https://data.delijn.be/stops/405165", "https://data.delijn.be/stops/405167"], ["https://data.delijn.be/stops/302264", "https://data.delijn.be/stops/302265"], ["https://data.delijn.be/stops/403156", "https://data.delijn.be/stops/403159"], ["https://data.delijn.be/stops/505503", "https://data.delijn.be/stops/505517"], ["https://data.delijn.be/stops/301190", "https://data.delijn.be/stops/308264"], ["https://data.delijn.be/stops/505644", "https://data.delijn.be/stops/509140"], ["https://data.delijn.be/stops/206945", "https://data.delijn.be/stops/209551"], ["https://data.delijn.be/stops/504274", "https://data.delijn.be/stops/504578"], ["https://data.delijn.be/stops/308741", "https://data.delijn.be/stops/308746"], ["https://data.delijn.be/stops/208468", "https://data.delijn.be/stops/209468"], ["https://data.delijn.be/stops/202038", "https://data.delijn.be/stops/202983"], ["https://data.delijn.be/stops/206755", "https://data.delijn.be/stops/209476"], ["https://data.delijn.be/stops/201378", "https://data.delijn.be/stops/211009"], ["https://data.delijn.be/stops/503529", "https://data.delijn.be/stops/508527"], ["https://data.delijn.be/stops/103219", "https://data.delijn.be/stops/108348"], ["https://data.delijn.be/stops/105006", "https://data.delijn.be/stops/105073"], ["https://data.delijn.be/stops/202338", "https://data.delijn.be/stops/203337"], ["https://data.delijn.be/stops/201762", "https://data.delijn.be/stops/201763"], ["https://data.delijn.be/stops/501636", "https://data.delijn.be/stops/501637"], ["https://data.delijn.be/stops/105586", "https://data.delijn.be/stops/105587"], ["https://data.delijn.be/stops/504151", "https://data.delijn.be/stops/504177"], ["https://data.delijn.be/stops/302621", "https://data.delijn.be/stops/302622"], ["https://data.delijn.be/stops/206627", "https://data.delijn.be/stops/209573"], ["https://data.delijn.be/stops/406849", "https://data.delijn.be/stops/406852"], ["https://data.delijn.be/stops/206596", "https://data.delijn.be/stops/209671"], ["https://data.delijn.be/stops/306167", "https://data.delijn.be/stops/308545"], ["https://data.delijn.be/stops/204772", "https://data.delijn.be/stops/205642"], ["https://data.delijn.be/stops/208789", "https://data.delijn.be/stops/209348"], ["https://data.delijn.be/stops/305082", "https://data.delijn.be/stops/306955"], ["https://data.delijn.be/stops/101765", "https://data.delijn.be/stops/103880"], ["https://data.delijn.be/stops/102423", "https://data.delijn.be/stops/107011"], ["https://data.delijn.be/stops/401199", "https://data.delijn.be/stops/401360"], ["https://data.delijn.be/stops/504029", "https://data.delijn.be/stops/509487"], ["https://data.delijn.be/stops/302289", "https://data.delijn.be/stops/302290"], ["https://data.delijn.be/stops/102658", "https://data.delijn.be/stops/109737"], ["https://data.delijn.be/stops/302014", "https://data.delijn.be/stops/302015"], ["https://data.delijn.be/stops/403054", "https://data.delijn.be/stops/403055"], ["https://data.delijn.be/stops/205064", "https://data.delijn.be/stops/205101"], ["https://data.delijn.be/stops/503122", "https://data.delijn.be/stops/505793"], ["https://data.delijn.be/stops/104378", "https://data.delijn.be/stops/204605"], ["https://data.delijn.be/stops/101485", "https://data.delijn.be/stops/102813"], ["https://data.delijn.be/stops/404967", "https://data.delijn.be/stops/404968"], ["https://data.delijn.be/stops/300076", "https://data.delijn.be/stops/308449"], ["https://data.delijn.be/stops/102185", "https://data.delijn.be/stops/103680"], ["https://data.delijn.be/stops/503186", "https://data.delijn.be/stops/508186"], ["https://data.delijn.be/stops/208163", "https://data.delijn.be/stops/209163"], ["https://data.delijn.be/stops/208167", "https://data.delijn.be/stops/209175"], ["https://data.delijn.be/stops/108036", "https://data.delijn.be/stops/108038"], ["https://data.delijn.be/stops/407497", "https://data.delijn.be/stops/409458"], ["https://data.delijn.be/stops/204365", "https://data.delijn.be/stops/214012"], ["https://data.delijn.be/stops/200711", "https://data.delijn.be/stops/203603"], ["https://data.delijn.be/stops/400801", "https://data.delijn.be/stops/400824"], ["https://data.delijn.be/stops/101565", "https://data.delijn.be/stops/102540"], ["https://data.delijn.be/stops/503494", "https://data.delijn.be/stops/503496"], ["https://data.delijn.be/stops/301835", "https://data.delijn.be/stops/305872"], ["https://data.delijn.be/stops/102748", "https://data.delijn.be/stops/104909"], ["https://data.delijn.be/stops/102272", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/502748", "https://data.delijn.be/stops/509880"], ["https://data.delijn.be/stops/304916", "https://data.delijn.be/stops/304917"], ["https://data.delijn.be/stops/400034", "https://data.delijn.be/stops/400428"], ["https://data.delijn.be/stops/300271", "https://data.delijn.be/stops/302149"], ["https://data.delijn.be/stops/405711", "https://data.delijn.be/stops/407212"], ["https://data.delijn.be/stops/206587", "https://data.delijn.be/stops/206919"], ["https://data.delijn.be/stops/505406", "https://data.delijn.be/stops/509631"], ["https://data.delijn.be/stops/305585", "https://data.delijn.be/stops/305591"], ["https://data.delijn.be/stops/209610", "https://data.delijn.be/stops/504000"], ["https://data.delijn.be/stops/107113", "https://data.delijn.be/stops/107114"], ["https://data.delijn.be/stops/408270", "https://data.delijn.be/stops/408374"], ["https://data.delijn.be/stops/503478", "https://data.delijn.be/stops/508473"], ["https://data.delijn.be/stops/204655", "https://data.delijn.be/stops/204670"], ["https://data.delijn.be/stops/106280", "https://data.delijn.be/stops/106281"], ["https://data.delijn.be/stops/208593", "https://data.delijn.be/stops/208967"], ["https://data.delijn.be/stops/307224", "https://data.delijn.be/stops/307225"], ["https://data.delijn.be/stops/103515", "https://data.delijn.be/stops/103930"], ["https://data.delijn.be/stops/508039", "https://data.delijn.be/stops/508040"], ["https://data.delijn.be/stops/303320", "https://data.delijn.be/stops/303321"], ["https://data.delijn.be/stops/101914", "https://data.delijn.be/stops/104081"], ["https://data.delijn.be/stops/202006", "https://data.delijn.be/stops/209908"], ["https://data.delijn.be/stops/102846", "https://data.delijn.be/stops/103119"], ["https://data.delijn.be/stops/303441", "https://data.delijn.be/stops/306369"], ["https://data.delijn.be/stops/208147", "https://data.delijn.be/stops/209147"], ["https://data.delijn.be/stops/400793", "https://data.delijn.be/stops/400893"], ["https://data.delijn.be/stops/502330", "https://data.delijn.be/stops/507333"], ["https://data.delijn.be/stops/504452", "https://data.delijn.be/stops/504828"], ["https://data.delijn.be/stops/302921", "https://data.delijn.be/stops/306318"], ["https://data.delijn.be/stops/301280", "https://data.delijn.be/stops/306200"], ["https://data.delijn.be/stops/400054", "https://data.delijn.be/stops/401970"], ["https://data.delijn.be/stops/503436", "https://data.delijn.be/stops/508393"], ["https://data.delijn.be/stops/300767", "https://data.delijn.be/stops/300769"], ["https://data.delijn.be/stops/504033", "https://data.delijn.be/stops/505121"], ["https://data.delijn.be/stops/102322", "https://data.delijn.be/stops/106462"], ["https://data.delijn.be/stops/505057", "https://data.delijn.be/stops/505060"], ["https://data.delijn.be/stops/402946", "https://data.delijn.be/stops/306020"], ["https://data.delijn.be/stops/200617", "https://data.delijn.be/stops/200982"], ["https://data.delijn.be/stops/404758", "https://data.delijn.be/stops/404817"], ["https://data.delijn.be/stops/102978", "https://data.delijn.be/stops/109523"], ["https://data.delijn.be/stops/501688", "https://data.delijn.be/stops/506615"], ["https://data.delijn.be/stops/105089", "https://data.delijn.be/stops/105094"], ["https://data.delijn.be/stops/203403", "https://data.delijn.be/stops/211115"], ["https://data.delijn.be/stops/403103", "https://data.delijn.be/stops/403445"], ["https://data.delijn.be/stops/400437", "https://data.delijn.be/stops/406768"], ["https://data.delijn.be/stops/503631", "https://data.delijn.be/stops/505198"], ["https://data.delijn.be/stops/102945", "https://data.delijn.be/stops/104590"], ["https://data.delijn.be/stops/109904", "https://data.delijn.be/stops/109905"], ["https://data.delijn.be/stops/107226", "https://data.delijn.be/stops/107229"], ["https://data.delijn.be/stops/400375", "https://data.delijn.be/stops/408809"], ["https://data.delijn.be/stops/201495", "https://data.delijn.be/stops/203938"], ["https://data.delijn.be/stops/109316", "https://data.delijn.be/stops/109319"], ["https://data.delijn.be/stops/304533", "https://data.delijn.be/stops/304540"], ["https://data.delijn.be/stops/405942", "https://data.delijn.be/stops/405978"], ["https://data.delijn.be/stops/504057", "https://data.delijn.be/stops/509155"], ["https://data.delijn.be/stops/408762", "https://data.delijn.be/stops/408796"], ["https://data.delijn.be/stops/103043", "https://data.delijn.be/stops/103923"], ["https://data.delijn.be/stops/106290", "https://data.delijn.be/stops/106304"], ["https://data.delijn.be/stops/502703", "https://data.delijn.be/stops/507703"], ["https://data.delijn.be/stops/503908", "https://data.delijn.be/stops/505687"], ["https://data.delijn.be/stops/200952", "https://data.delijn.be/stops/202249"], ["https://data.delijn.be/stops/200744", "https://data.delijn.be/stops/202784"], ["https://data.delijn.be/stops/101226", "https://data.delijn.be/stops/102748"], ["https://data.delijn.be/stops/308408", "https://data.delijn.be/stops/308411"], ["https://data.delijn.be/stops/406008", "https://data.delijn.be/stops/406044"], ["https://data.delijn.be/stops/503964", "https://data.delijn.be/stops/504285"], ["https://data.delijn.be/stops/305735", "https://data.delijn.be/stops/306308"], ["https://data.delijn.be/stops/108698", "https://data.delijn.be/stops/108812"], ["https://data.delijn.be/stops/108846", "https://data.delijn.be/stops/108862"], ["https://data.delijn.be/stops/301336", "https://data.delijn.be/stops/306118"], ["https://data.delijn.be/stops/301102", "https://data.delijn.be/stops/301106"], ["https://data.delijn.be/stops/206893", "https://data.delijn.be/stops/207893"], ["https://data.delijn.be/stops/502104", "https://data.delijn.be/stops/502584"], ["https://data.delijn.be/stops/502524", "https://data.delijn.be/stops/505019"], ["https://data.delijn.be/stops/501032", "https://data.delijn.be/stops/506034"], ["https://data.delijn.be/stops/301243", "https://data.delijn.be/stops/308134"], ["https://data.delijn.be/stops/203980", "https://data.delijn.be/stops/203981"], ["https://data.delijn.be/stops/105267", "https://data.delijn.be/stops/105268"], ["https://data.delijn.be/stops/303625", "https://data.delijn.be/stops/305445"], ["https://data.delijn.be/stops/504634", "https://data.delijn.be/stops/509335"], ["https://data.delijn.be/stops/302660", "https://data.delijn.be/stops/306339"], ["https://data.delijn.be/stops/507043", "https://data.delijn.be/stops/507591"], ["https://data.delijn.be/stops/103765", "https://data.delijn.be/stops/105725"], ["https://data.delijn.be/stops/403984", "https://data.delijn.be/stops/404004"], ["https://data.delijn.be/stops/402704", "https://data.delijn.be/stops/402705"], ["https://data.delijn.be/stops/206604", "https://data.delijn.be/stops/207604"], ["https://data.delijn.be/stops/104506", "https://data.delijn.be/stops/107926"], ["https://data.delijn.be/stops/209987", "https://data.delijn.be/stops/210090"], ["https://data.delijn.be/stops/506419", "https://data.delijn.be/stops/506475"], ["https://data.delijn.be/stops/204704", "https://data.delijn.be/stops/204705"], ["https://data.delijn.be/stops/405147", "https://data.delijn.be/stops/405284"], ["https://data.delijn.be/stops/106964", "https://data.delijn.be/stops/106966"], ["https://data.delijn.be/stops/406161", "https://data.delijn.be/stops/409408"], ["https://data.delijn.be/stops/200916", "https://data.delijn.be/stops/202686"], ["https://data.delijn.be/stops/106370", "https://data.delijn.be/stops/106371"], ["https://data.delijn.be/stops/404851", "https://data.delijn.be/stops/404880"], ["https://data.delijn.be/stops/307347", "https://data.delijn.be/stops/307348"], ["https://data.delijn.be/stops/401531", "https://data.delijn.be/stops/401710"], ["https://data.delijn.be/stops/300422", "https://data.delijn.be/stops/300442"], ["https://data.delijn.be/stops/501229", "https://data.delijn.be/stops/506419"], ["https://data.delijn.be/stops/201862", "https://data.delijn.be/stops/202274"], ["https://data.delijn.be/stops/200928", "https://data.delijn.be/stops/202047"], ["https://data.delijn.be/stops/101601", "https://data.delijn.be/stops/106024"], ["https://data.delijn.be/stops/501208", "https://data.delijn.be/stops/506208"], ["https://data.delijn.be/stops/102814", "https://data.delijn.be/stops/102816"], ["https://data.delijn.be/stops/402355", "https://data.delijn.be/stops/402365"], ["https://data.delijn.be/stops/109549", "https://data.delijn.be/stops/109757"], ["https://data.delijn.be/stops/505692", "https://data.delijn.be/stops/507374"], ["https://data.delijn.be/stops/300685", "https://data.delijn.be/stops/305069"], ["https://data.delijn.be/stops/502502", "https://data.delijn.be/stops/507502"], ["https://data.delijn.be/stops/205130", "https://data.delijn.be/stops/205143"], ["https://data.delijn.be/stops/305071", "https://data.delijn.be/stops/306956"], ["https://data.delijn.be/stops/400694", "https://data.delijn.be/stops/409524"], ["https://data.delijn.be/stops/504222", "https://data.delijn.be/stops/509222"], ["https://data.delijn.be/stops/102054", "https://data.delijn.be/stops/103308"], ["https://data.delijn.be/stops/302406", "https://data.delijn.be/stops/302409"], ["https://data.delijn.be/stops/402191", "https://data.delijn.be/stops/402195"], ["https://data.delijn.be/stops/203963", "https://data.delijn.be/stops/203964"], ["https://data.delijn.be/stops/102847", "https://data.delijn.be/stops/102848"], ["https://data.delijn.be/stops/500559", "https://data.delijn.be/stops/500560"], ["https://data.delijn.be/stops/303721", "https://data.delijn.be/stops/303751"], ["https://data.delijn.be/stops/403274", "https://data.delijn.be/stops/403381"], ["https://data.delijn.be/stops/106658", "https://data.delijn.be/stops/106660"], ["https://data.delijn.be/stops/202924", "https://data.delijn.be/stops/202926"], ["https://data.delijn.be/stops/200189", "https://data.delijn.be/stops/200987"], ["https://data.delijn.be/stops/506311", "https://data.delijn.be/stops/509898"], ["https://data.delijn.be/stops/401174", "https://data.delijn.be/stops/406654"], ["https://data.delijn.be/stops/402067", "https://data.delijn.be/stops/402284"], ["https://data.delijn.be/stops/204636", "https://data.delijn.be/stops/205636"], ["https://data.delijn.be/stops/204113", "https://data.delijn.be/stops/205682"], ["https://data.delijn.be/stops/403339", "https://data.delijn.be/stops/403522"], ["https://data.delijn.be/stops/206059", "https://data.delijn.be/stops/206448"], ["https://data.delijn.be/stops/403348", "https://data.delijn.be/stops/403349"], ["https://data.delijn.be/stops/206458", "https://data.delijn.be/stops/206459"], ["https://data.delijn.be/stops/306555", "https://data.delijn.be/stops/306557"], ["https://data.delijn.be/stops/101550", "https://data.delijn.be/stops/103757"], ["https://data.delijn.be/stops/406032", "https://data.delijn.be/stops/406087"], ["https://data.delijn.be/stops/301824", "https://data.delijn.be/stops/301825"], ["https://data.delijn.be/stops/407664", "https://data.delijn.be/stops/407676"], ["https://data.delijn.be/stops/202818", "https://data.delijn.be/stops/202819"], ["https://data.delijn.be/stops/106710", "https://data.delijn.be/stops/106712"], ["https://data.delijn.be/stops/201643", "https://data.delijn.be/stops/201644"], ["https://data.delijn.be/stops/405400", "https://data.delijn.be/stops/405402"], ["https://data.delijn.be/stops/400071", "https://data.delijn.be/stops/410322"], ["https://data.delijn.be/stops/504021", "https://data.delijn.be/stops/504985"], ["https://data.delijn.be/stops/204301", "https://data.delijn.be/stops/205046"], ["https://data.delijn.be/stops/201713", "https://data.delijn.be/stops/202445"], ["https://data.delijn.be/stops/305382", "https://data.delijn.be/stops/333454"], ["https://data.delijn.be/stops/501665", "https://data.delijn.be/stops/506636"], ["https://data.delijn.be/stops/202452", "https://data.delijn.be/stops/210095"], ["https://data.delijn.be/stops/400686", "https://data.delijn.be/stops/404610"], ["https://data.delijn.be/stops/402240", "https://data.delijn.be/stops/404538"], ["https://data.delijn.be/stops/402538", "https://data.delijn.be/stops/402631"], ["https://data.delijn.be/stops/201864", "https://data.delijn.be/stops/202084"], ["https://data.delijn.be/stops/107546", "https://data.delijn.be/stops/109591"], ["https://data.delijn.be/stops/504963", "https://data.delijn.be/stops/509963"], ["https://data.delijn.be/stops/104638", "https://data.delijn.be/stops/109660"], ["https://data.delijn.be/stops/408299", "https://data.delijn.be/stops/408402"], ["https://data.delijn.be/stops/502172", "https://data.delijn.be/stops/507341"], ["https://data.delijn.be/stops/108826", "https://data.delijn.be/stops/108827"], ["https://data.delijn.be/stops/204634", "https://data.delijn.be/stops/205635"], ["https://data.delijn.be/stops/507074", "https://data.delijn.be/stops/507075"], ["https://data.delijn.be/stops/203960", "https://data.delijn.be/stops/203961"], ["https://data.delijn.be/stops/204425", "https://data.delijn.be/stops/205745"], ["https://data.delijn.be/stops/301976", "https://data.delijn.be/stops/301978"], ["https://data.delijn.be/stops/302016", "https://data.delijn.be/stops/303077"], ["https://data.delijn.be/stops/502289", "https://data.delijn.be/stops/507295"], ["https://data.delijn.be/stops/500947", "https://data.delijn.be/stops/509173"], ["https://data.delijn.be/stops/401480", "https://data.delijn.be/stops/401785"], ["https://data.delijn.be/stops/102843", "https://data.delijn.be/stops/102844"], ["https://data.delijn.be/stops/407423", "https://data.delijn.be/stops/407471"], ["https://data.delijn.be/stops/207379", "https://data.delijn.be/stops/207380"], ["https://data.delijn.be/stops/106951", "https://data.delijn.be/stops/106952"], ["https://data.delijn.be/stops/301452", "https://data.delijn.be/stops/302510"], ["https://data.delijn.be/stops/208119", "https://data.delijn.be/stops/209119"], ["https://data.delijn.be/stops/303360", "https://data.delijn.be/stops/307810"], ["https://data.delijn.be/stops/403995", "https://data.delijn.be/stops/410026"], ["https://data.delijn.be/stops/200096", "https://data.delijn.be/stops/203131"], ["https://data.delijn.be/stops/301769", "https://data.delijn.be/stops/301775"], ["https://data.delijn.be/stops/208298", "https://data.delijn.be/stops/209298"], ["https://data.delijn.be/stops/304431", "https://data.delijn.be/stops/306064"], ["https://data.delijn.be/stops/303589", "https://data.delijn.be/stops/306392"], ["https://data.delijn.be/stops/503373", "https://data.delijn.be/stops/508363"], ["https://data.delijn.be/stops/300763", "https://data.delijn.be/stops/300787"], ["https://data.delijn.be/stops/301600", "https://data.delijn.be/stops/304475"], ["https://data.delijn.be/stops/103294", "https://data.delijn.be/stops/105172"], ["https://data.delijn.be/stops/402428", "https://data.delijn.be/stops/402458"], ["https://data.delijn.be/stops/400811", "https://data.delijn.be/stops/403586"], ["https://data.delijn.be/stops/401854", "https://data.delijn.be/stops/401856"], ["https://data.delijn.be/stops/400576", "https://data.delijn.be/stops/400634"], ["https://data.delijn.be/stops/406407", "https://data.delijn.be/stops/409884"], ["https://data.delijn.be/stops/208601", "https://data.delijn.be/stops/307602"], ["https://data.delijn.be/stops/206593", "https://data.delijn.be/stops/206948"], ["https://data.delijn.be/stops/304333", "https://data.delijn.be/stops/304706"], ["https://data.delijn.be/stops/302392", "https://data.delijn.be/stops/302671"], ["https://data.delijn.be/stops/402132", "https://data.delijn.be/stops/410101"], ["https://data.delijn.be/stops/200923", "https://data.delijn.be/stops/201867"], ["https://data.delijn.be/stops/404102", "https://data.delijn.be/stops/409296"], ["https://data.delijn.be/stops/210052", "https://data.delijn.be/stops/210124"], ["https://data.delijn.be/stops/407830", "https://data.delijn.be/stops/407846"], ["https://data.delijn.be/stops/503116", "https://data.delijn.be/stops/508059"], ["https://data.delijn.be/stops/205103", "https://data.delijn.be/stops/205669"], ["https://data.delijn.be/stops/501422", "https://data.delijn.be/stops/506420"], ["https://data.delijn.be/stops/200973", "https://data.delijn.be/stops/206853"], ["https://data.delijn.be/stops/305644", "https://data.delijn.be/stops/308130"], ["https://data.delijn.be/stops/203990", "https://data.delijn.be/stops/210852"], ["https://data.delijn.be/stops/503575", "https://data.delijn.be/stops/504540"], ["https://data.delijn.be/stops/501488", "https://data.delijn.be/stops/501489"], ["https://data.delijn.be/stops/303783", "https://data.delijn.be/stops/303800"], ["https://data.delijn.be/stops/401025", "https://data.delijn.be/stops/401141"], ["https://data.delijn.be/stops/201779", "https://data.delijn.be/stops/209249"], ["https://data.delijn.be/stops/400791", "https://data.delijn.be/stops/409536"], ["https://data.delijn.be/stops/105160", "https://data.delijn.be/stops/105165"], ["https://data.delijn.be/stops/207165", "https://data.delijn.be/stops/308901"], ["https://data.delijn.be/stops/305042", "https://data.delijn.be/stops/307951"], ["https://data.delijn.be/stops/201113", "https://data.delijn.be/stops/201567"], ["https://data.delijn.be/stops/501006", "https://data.delijn.be/stops/501076"], ["https://data.delijn.be/stops/400754", "https://data.delijn.be/stops/400851"], ["https://data.delijn.be/stops/406738", "https://data.delijn.be/stops/407369"], ["https://data.delijn.be/stops/206929", "https://data.delijn.be/stops/207928"], ["https://data.delijn.be/stops/207754", "https://data.delijn.be/stops/207765"], ["https://data.delijn.be/stops/300570", "https://data.delijn.be/stops/301598"], ["https://data.delijn.be/stops/202236", "https://data.delijn.be/stops/203236"], ["https://data.delijn.be/stops/407618", "https://data.delijn.be/stops/408549"], ["https://data.delijn.be/stops/404885", "https://data.delijn.be/stops/404944"], ["https://data.delijn.be/stops/507043", "https://data.delijn.be/stops/507057"], ["https://data.delijn.be/stops/303535", "https://data.delijn.be/stops/308791"], ["https://data.delijn.be/stops/507813", "https://data.delijn.be/stops/508008"], ["https://data.delijn.be/stops/406056", "https://data.delijn.be/stops/406142"], ["https://data.delijn.be/stops/107412", "https://data.delijn.be/stops/107424"], ["https://data.delijn.be/stops/400860", "https://data.delijn.be/stops/406585"], ["https://data.delijn.be/stops/301436", "https://data.delijn.be/stops/301442"], ["https://data.delijn.be/stops/504069", "https://data.delijn.be/stops/504520"], ["https://data.delijn.be/stops/101134", "https://data.delijn.be/stops/102940"], ["https://data.delijn.be/stops/405926", "https://data.delijn.be/stops/405986"], ["https://data.delijn.be/stops/305253", "https://data.delijn.be/stops/305306"], ["https://data.delijn.be/stops/200205", "https://data.delijn.be/stops/201244"], ["https://data.delijn.be/stops/404309", "https://data.delijn.be/stops/404325"], ["https://data.delijn.be/stops/501235", "https://data.delijn.be/stops/501257"], ["https://data.delijn.be/stops/201095", "https://data.delijn.be/stops/204357"], ["https://data.delijn.be/stops/202289", "https://data.delijn.be/stops/202335"], ["https://data.delijn.be/stops/106809", "https://data.delijn.be/stops/106810"], ["https://data.delijn.be/stops/200742", "https://data.delijn.be/stops/203384"], ["https://data.delijn.be/stops/401771", "https://data.delijn.be/stops/401845"], ["https://data.delijn.be/stops/203700", "https://data.delijn.be/stops/211066"], ["https://data.delijn.be/stops/108272", "https://data.delijn.be/stops/108278"], ["https://data.delijn.be/stops/302699", "https://data.delijn.be/stops/302702"], ["https://data.delijn.be/stops/307033", "https://data.delijn.be/stops/307908"], ["https://data.delijn.be/stops/304240", "https://data.delijn.be/stops/304486"], ["https://data.delijn.be/stops/409556", "https://data.delijn.be/stops/409562"], ["https://data.delijn.be/stops/409006", "https://data.delijn.be/stops/409009"], ["https://data.delijn.be/stops/206923", "https://data.delijn.be/stops/207924"], ["https://data.delijn.be/stops/400821", "https://data.delijn.be/stops/400822"], ["https://data.delijn.be/stops/304334", "https://data.delijn.be/stops/305988"], ["https://data.delijn.be/stops/508854", "https://data.delijn.be/stops/508857"], ["https://data.delijn.be/stops/409339", "https://data.delijn.be/stops/409340"], ["https://data.delijn.be/stops/300979", "https://data.delijn.be/stops/300986"], ["https://data.delijn.be/stops/303490", "https://data.delijn.be/stops/308934"], ["https://data.delijn.be/stops/109941", "https://data.delijn.be/stops/109958"], ["https://data.delijn.be/stops/501175", "https://data.delijn.be/stops/506677"], ["https://data.delijn.be/stops/108710", "https://data.delijn.be/stops/108712"], ["https://data.delijn.be/stops/108188", "https://data.delijn.be/stops/108189"], ["https://data.delijn.be/stops/403174", "https://data.delijn.be/stops/403403"], ["https://data.delijn.be/stops/300355", "https://data.delijn.be/stops/304699"], ["https://data.delijn.be/stops/405034", "https://data.delijn.be/stops/405047"], ["https://data.delijn.be/stops/406055", "https://data.delijn.be/stops/406142"], ["https://data.delijn.be/stops/304580", "https://data.delijn.be/stops/308818"], ["https://data.delijn.be/stops/401590", "https://data.delijn.be/stops/408635"], ["https://data.delijn.be/stops/409422", "https://data.delijn.be/stops/409672"], ["https://data.delijn.be/stops/200955", "https://data.delijn.be/stops/203509"], ["https://data.delijn.be/stops/208792", "https://data.delijn.be/stops/209785"], ["https://data.delijn.be/stops/301612", "https://data.delijn.be/stops/301613"], ["https://data.delijn.be/stops/303935", "https://data.delijn.be/stops/303936"], ["https://data.delijn.be/stops/306786", "https://data.delijn.be/stops/307343"], ["https://data.delijn.be/stops/102389", "https://data.delijn.be/stops/107073"], ["https://data.delijn.be/stops/102989", "https://data.delijn.be/stops/106425"], ["https://data.delijn.be/stops/101992", "https://data.delijn.be/stops/102640"], ["https://data.delijn.be/stops/103303", "https://data.delijn.be/stops/406880"], ["https://data.delijn.be/stops/304463", "https://data.delijn.be/stops/307696"], ["https://data.delijn.be/stops/101790", "https://data.delijn.be/stops/103030"], ["https://data.delijn.be/stops/408741", "https://data.delijn.be/stops/408742"], ["https://data.delijn.be/stops/304347", "https://data.delijn.be/stops/304348"], ["https://data.delijn.be/stops/105197", "https://data.delijn.be/stops/105198"], ["https://data.delijn.be/stops/502382", "https://data.delijn.be/stops/507382"], ["https://data.delijn.be/stops/201595", "https://data.delijn.be/stops/210132"], ["https://data.delijn.be/stops/308795", "https://data.delijn.be/stops/308849"], ["https://data.delijn.be/stops/103143", "https://data.delijn.be/stops/103727"], ["https://data.delijn.be/stops/206347", "https://data.delijn.be/stops/207373"], ["https://data.delijn.be/stops/505716", "https://data.delijn.be/stops/505985"], ["https://data.delijn.be/stops/302703", "https://data.delijn.be/stops/302718"], ["https://data.delijn.be/stops/200066", "https://data.delijn.be/stops/201369"], ["https://data.delijn.be/stops/408580", "https://data.delijn.be/stops/408586"], ["https://data.delijn.be/stops/108652", "https://data.delijn.be/stops/108653"], ["https://data.delijn.be/stops/502749", "https://data.delijn.be/stops/507163"], ["https://data.delijn.be/stops/403346", "https://data.delijn.be/stops/403348"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/505785"], ["https://data.delijn.be/stops/209650", "https://data.delijn.be/stops/209651"], ["https://data.delijn.be/stops/503905", "https://data.delijn.be/stops/505443"], ["https://data.delijn.be/stops/108814", "https://data.delijn.be/stops/108818"], ["https://data.delijn.be/stops/405038", "https://data.delijn.be/stops/405039"], ["https://data.delijn.be/stops/501399", "https://data.delijn.be/stops/506401"], ["https://data.delijn.be/stops/407023", "https://data.delijn.be/stops/407035"], ["https://data.delijn.be/stops/303463", "https://data.delijn.be/stops/303464"], ["https://data.delijn.be/stops/302006", "https://data.delijn.be/stops/302007"], ["https://data.delijn.be/stops/108812", "https://data.delijn.be/stops/108816"], ["https://data.delijn.be/stops/400887", "https://data.delijn.be/stops/400976"], ["https://data.delijn.be/stops/405774", "https://data.delijn.be/stops/409759"], ["https://data.delijn.be/stops/502351", "https://data.delijn.be/stops/502363"], ["https://data.delijn.be/stops/200935", "https://data.delijn.be/stops/203712"], ["https://data.delijn.be/stops/408859", "https://data.delijn.be/stops/408863"], ["https://data.delijn.be/stops/504289", "https://data.delijn.be/stops/509278"], ["https://data.delijn.be/stops/405042", "https://data.delijn.be/stops/405118"], ["https://data.delijn.be/stops/504565", "https://data.delijn.be/stops/509565"], ["https://data.delijn.be/stops/300894", "https://data.delijn.be/stops/304580"], ["https://data.delijn.be/stops/101536", "https://data.delijn.be/stops/109018"], ["https://data.delijn.be/stops/508723", "https://data.delijn.be/stops/509938"], ["https://data.delijn.be/stops/103062", "https://data.delijn.be/stops/108974"], ["https://data.delijn.be/stops/400672", "https://data.delijn.be/stops/400673"], ["https://data.delijn.be/stops/503330", "https://data.delijn.be/stops/503332"], ["https://data.delijn.be/stops/210015", "https://data.delijn.be/stops/211015"], ["https://data.delijn.be/stops/502674", "https://data.delijn.be/stops/507674"], ["https://data.delijn.be/stops/200844", "https://data.delijn.be/stops/200846"], ["https://data.delijn.be/stops/208532", "https://data.delijn.be/stops/209456"], ["https://data.delijn.be/stops/408224", "https://data.delijn.be/stops/408366"], ["https://data.delijn.be/stops/200524", "https://data.delijn.be/stops/200595"], ["https://data.delijn.be/stops/106990", "https://data.delijn.be/stops/107313"], ["https://data.delijn.be/stops/202633", "https://data.delijn.be/stops/203630"], ["https://data.delijn.be/stops/202280", "https://data.delijn.be/stops/211104"], ["https://data.delijn.be/stops/201706", "https://data.delijn.be/stops/202444"], ["https://data.delijn.be/stops/107335", "https://data.delijn.be/stops/108410"], ["https://data.delijn.be/stops/300836", "https://data.delijn.be/stops/300880"], ["https://data.delijn.be/stops/102982", "https://data.delijn.be/stops/107413"], ["https://data.delijn.be/stops/409321", "https://data.delijn.be/stops/410067"], ["https://data.delijn.be/stops/300769", "https://data.delijn.be/stops/300770"], ["https://data.delijn.be/stops/202112", "https://data.delijn.be/stops/203112"], ["https://data.delijn.be/stops/107286", "https://data.delijn.be/stops/107288"], ["https://data.delijn.be/stops/307147", "https://data.delijn.be/stops/307160"], ["https://data.delijn.be/stops/409276", "https://data.delijn.be/stops/409330"], ["https://data.delijn.be/stops/502217", "https://data.delijn.be/stops/507219"], ["https://data.delijn.be/stops/502367", "https://data.delijn.be/stops/507768"], ["https://data.delijn.be/stops/408005", "https://data.delijn.be/stops/408139"], ["https://data.delijn.be/stops/304536", "https://data.delijn.be/stops/304537"], ["https://data.delijn.be/stops/303347", "https://data.delijn.be/stops/304713"], ["https://data.delijn.be/stops/406242", "https://data.delijn.be/stops/406249"], ["https://data.delijn.be/stops/504626", "https://data.delijn.be/stops/509617"], ["https://data.delijn.be/stops/406976", "https://data.delijn.be/stops/409464"], ["https://data.delijn.be/stops/502617", "https://data.delijn.be/stops/507616"], ["https://data.delijn.be/stops/403944", "https://data.delijn.be/stops/404089"], ["https://data.delijn.be/stops/305559", "https://data.delijn.be/stops/305560"], ["https://data.delijn.be/stops/206742", "https://data.delijn.be/stops/207979"], ["https://data.delijn.be/stops/308150", "https://data.delijn.be/stops/308174"], ["https://data.delijn.be/stops/209119", "https://data.delijn.be/stops/209120"], ["https://data.delijn.be/stops/302492", "https://data.delijn.be/stops/302493"], ["https://data.delijn.be/stops/306919", "https://data.delijn.be/stops/306920"], ["https://data.delijn.be/stops/404848", "https://data.delijn.be/stops/404928"], ["https://data.delijn.be/stops/505393", "https://data.delijn.be/stops/508276"], ["https://data.delijn.be/stops/301736", "https://data.delijn.be/stops/308420"], ["https://data.delijn.be/stops/203624", "https://data.delijn.be/stops/203626"], ["https://data.delijn.be/stops/406214", "https://data.delijn.be/stops/406233"], ["https://data.delijn.be/stops/507455", "https://data.delijn.be/stops/507662"], ["https://data.delijn.be/stops/509776", "https://data.delijn.be/stops/509783"], ["https://data.delijn.be/stops/305065", "https://data.delijn.be/stops/305126"], ["https://data.delijn.be/stops/204161", "https://data.delijn.be/stops/205592"], ["https://data.delijn.be/stops/300595", "https://data.delijn.be/stops/302960"], ["https://data.delijn.be/stops/505922", "https://data.delijn.be/stops/507195"], ["https://data.delijn.be/stops/505142", "https://data.delijn.be/stops/507240"], ["https://data.delijn.be/stops/302174", "https://data.delijn.be/stops/307186"], ["https://data.delijn.be/stops/200346", "https://data.delijn.be/stops/211528"], ["https://data.delijn.be/stops/300868", "https://data.delijn.be/stops/302240"], ["https://data.delijn.be/stops/402458", "https://data.delijn.be/stops/410094"], ["https://data.delijn.be/stops/307580", "https://data.delijn.be/stops/307581"], ["https://data.delijn.be/stops/106599", "https://data.delijn.be/stops/106600"], ["https://data.delijn.be/stops/407962", "https://data.delijn.be/stops/407965"], ["https://data.delijn.be/stops/504294", "https://data.delijn.be/stops/509861"], ["https://data.delijn.be/stops/301657", "https://data.delijn.be/stops/301893"], ["https://data.delijn.be/stops/101430", "https://data.delijn.be/stops/104123"], ["https://data.delijn.be/stops/304004", "https://data.delijn.be/stops/304076"], ["https://data.delijn.be/stops/102687", "https://data.delijn.be/stops/104640"], ["https://data.delijn.be/stops/103946", "https://data.delijn.be/stops/104630"], ["https://data.delijn.be/stops/404467", "https://data.delijn.be/stops/404507"], ["https://data.delijn.be/stops/503713", "https://data.delijn.be/stops/509963"], ["https://data.delijn.be/stops/401904", "https://data.delijn.be/stops/406256"], ["https://data.delijn.be/stops/502130", "https://data.delijn.be/stops/507149"], ["https://data.delijn.be/stops/200714", "https://data.delijn.be/stops/202123"], ["https://data.delijn.be/stops/506067", "https://data.delijn.be/stops/506073"], ["https://data.delijn.be/stops/103064", "https://data.delijn.be/stops/204609"], ["https://data.delijn.be/stops/204089", "https://data.delijn.be/stops/205089"], ["https://data.delijn.be/stops/204078", "https://data.delijn.be/stops/204197"], ["https://data.delijn.be/stops/200086", "https://data.delijn.be/stops/203749"], ["https://data.delijn.be/stops/101428", "https://data.delijn.be/stops/107299"], ["https://data.delijn.be/stops/106728", "https://data.delijn.be/stops/107709"], ["https://data.delijn.be/stops/502427", "https://data.delijn.be/stops/507427"], ["https://data.delijn.be/stops/403735", "https://data.delijn.be/stops/403737"], ["https://data.delijn.be/stops/105159", "https://data.delijn.be/stops/105161"], ["https://data.delijn.be/stops/501512", "https://data.delijn.be/stops/501698"], ["https://data.delijn.be/stops/503867", "https://data.delijn.be/stops/508873"], ["https://data.delijn.be/stops/305778", "https://data.delijn.be/stops/306879"], ["https://data.delijn.be/stops/102472", "https://data.delijn.be/stops/102473"], ["https://data.delijn.be/stops/109066", "https://data.delijn.be/stops/307361"], ["https://data.delijn.be/stops/502094", "https://data.delijn.be/stops/502106"], ["https://data.delijn.be/stops/102679", "https://data.delijn.be/stops/105223"], ["https://data.delijn.be/stops/402954", "https://data.delijn.be/stops/404898"], ["https://data.delijn.be/stops/202629", "https://data.delijn.be/stops/205068"], ["https://data.delijn.be/stops/303243", "https://data.delijn.be/stops/306671"], ["https://data.delijn.be/stops/108981", "https://data.delijn.be/stops/109567"], ["https://data.delijn.be/stops/406106", "https://data.delijn.be/stops/406114"], ["https://data.delijn.be/stops/400717", "https://data.delijn.be/stops/400873"], ["https://data.delijn.be/stops/503535", "https://data.delijn.be/stops/508966"], ["https://data.delijn.be/stops/501298", "https://data.delijn.be/stops/501360"], ["https://data.delijn.be/stops/400933", "https://data.delijn.be/stops/400942"], ["https://data.delijn.be/stops/204445", "https://data.delijn.be/stops/205672"], ["https://data.delijn.be/stops/208109", "https://data.delijn.be/stops/208112"], ["https://data.delijn.be/stops/307409", "https://data.delijn.be/stops/308053"], ["https://data.delijn.be/stops/300360", "https://data.delijn.be/stops/304714"], ["https://data.delijn.be/stops/200680", "https://data.delijn.be/stops/203320"], ["https://data.delijn.be/stops/205161", "https://data.delijn.be/stops/207397"], ["https://data.delijn.be/stops/201821", "https://data.delijn.be/stops/208284"], ["https://data.delijn.be/stops/307202", "https://data.delijn.be/stops/307599"], ["https://data.delijn.be/stops/404357", "https://data.delijn.be/stops/404864"], ["https://data.delijn.be/stops/300536", "https://data.delijn.be/stops/302367"], ["https://data.delijn.be/stops/503866", "https://data.delijn.be/stops/508563"], ["https://data.delijn.be/stops/510015", "https://data.delijn.be/stops/510020"], ["https://data.delijn.be/stops/407574", "https://data.delijn.be/stops/408981"], ["https://data.delijn.be/stops/301005", "https://data.delijn.be/stops/301012"], ["https://data.delijn.be/stops/402827", "https://data.delijn.be/stops/407487"], ["https://data.delijn.be/stops/302679", "https://data.delijn.be/stops/302689"], ["https://data.delijn.be/stops/107085", "https://data.delijn.be/stops/108740"], ["https://data.delijn.be/stops/208000", "https://data.delijn.be/stops/209015"], ["https://data.delijn.be/stops/308265", "https://data.delijn.be/stops/308267"], ["https://data.delijn.be/stops/101473", "https://data.delijn.be/stops/109616"], ["https://data.delijn.be/stops/301588", "https://data.delijn.be/stops/301589"], ["https://data.delijn.be/stops/403922", "https://data.delijn.be/stops/403923"], ["https://data.delijn.be/stops/102623", "https://data.delijn.be/stops/108219"], ["https://data.delijn.be/stops/107599", "https://data.delijn.be/stops/107602"], ["https://data.delijn.be/stops/109239", "https://data.delijn.be/stops/109241"], ["https://data.delijn.be/stops/304055", "https://data.delijn.be/stops/304078"], ["https://data.delijn.be/stops/304371", "https://data.delijn.be/stops/304373"], ["https://data.delijn.be/stops/204615", "https://data.delijn.be/stops/204656"], ["https://data.delijn.be/stops/208038", "https://data.delijn.be/stops/209037"], ["https://data.delijn.be/stops/300077", "https://data.delijn.be/stops/308451"], ["https://data.delijn.be/stops/101854", "https://data.delijn.be/stops/102997"], ["https://data.delijn.be/stops/210060", "https://data.delijn.be/stops/210061"], ["https://data.delijn.be/stops/107157", "https://data.delijn.be/stops/107159"], ["https://data.delijn.be/stops/301356", "https://data.delijn.be/stops/307158"], ["https://data.delijn.be/stops/204663", "https://data.delijn.be/stops/205663"], ["https://data.delijn.be/stops/504073", "https://data.delijn.be/stops/504332"], ["https://data.delijn.be/stops/301422", "https://data.delijn.be/stops/302141"], ["https://data.delijn.be/stops/502122", "https://data.delijn.be/stops/507109"], ["https://data.delijn.be/stops/202350", "https://data.delijn.be/stops/205914"], ["https://data.delijn.be/stops/202327", "https://data.delijn.be/stops/203326"], ["https://data.delijn.be/stops/503738", "https://data.delijn.be/stops/509969"], ["https://data.delijn.be/stops/305588", "https://data.delijn.be/stops/305593"], ["https://data.delijn.be/stops/102209", "https://data.delijn.be/stops/102604"], ["https://data.delijn.be/stops/104898", "https://data.delijn.be/stops/107614"], ["https://data.delijn.be/stops/206312", "https://data.delijn.be/stops/207311"], ["https://data.delijn.be/stops/201680", "https://data.delijn.be/stops/210121"], ["https://data.delijn.be/stops/407812", "https://data.delijn.be/stops/408148"], ["https://data.delijn.be/stops/308595", "https://data.delijn.be/stops/308860"], ["https://data.delijn.be/stops/503104", "https://data.delijn.be/stops/505385"], ["https://data.delijn.be/stops/106844", "https://data.delijn.be/stops/106846"], ["https://data.delijn.be/stops/300506", "https://data.delijn.be/stops/302419"], ["https://data.delijn.be/stops/405567", "https://data.delijn.be/stops/410098"], ["https://data.delijn.be/stops/101176", "https://data.delijn.be/stops/106789"], ["https://data.delijn.be/stops/102228", "https://data.delijn.be/stops/105523"], ["https://data.delijn.be/stops/405144", "https://data.delijn.be/stops/405166"], ["https://data.delijn.be/stops/509028", "https://data.delijn.be/stops/509036"], ["https://data.delijn.be/stops/407825", "https://data.delijn.be/stops/410190"], ["https://data.delijn.be/stops/202311", "https://data.delijn.be/stops/203312"], ["https://data.delijn.be/stops/500053", "https://data.delijn.be/stops/502079"], ["https://data.delijn.be/stops/202746", "https://data.delijn.be/stops/206594"], ["https://data.delijn.be/stops/504130", "https://data.delijn.be/stops/504740"], ["https://data.delijn.be/stops/505980", "https://data.delijn.be/stops/508898"], ["https://data.delijn.be/stops/201831", "https://data.delijn.be/stops/208254"], ["https://data.delijn.be/stops/405876", "https://data.delijn.be/stops/409413"], ["https://data.delijn.be/stops/301546", "https://data.delijn.be/stops/301547"], ["https://data.delijn.be/stops/101183", "https://data.delijn.be/stops/107872"], ["https://data.delijn.be/stops/302630", "https://data.delijn.be/stops/302644"], ["https://data.delijn.be/stops/104017", "https://data.delijn.be/stops/104023"], ["https://data.delijn.be/stops/403044", "https://data.delijn.be/stops/403289"], ["https://data.delijn.be/stops/204137", "https://data.delijn.be/stops/204147"], ["https://data.delijn.be/stops/204654", "https://data.delijn.be/stops/204830"], ["https://data.delijn.be/stops/105376", "https://data.delijn.be/stops/305785"], ["https://data.delijn.be/stops/403357", "https://data.delijn.be/stops/403673"], ["https://data.delijn.be/stops/204580", "https://data.delijn.be/stops/204595"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/306275"], ["https://data.delijn.be/stops/502193", "https://data.delijn.be/stops/504945"], ["https://data.delijn.be/stops/108123", "https://data.delijn.be/stops/109659"], ["https://data.delijn.be/stops/101394", "https://data.delijn.be/stops/101396"], ["https://data.delijn.be/stops/300987", "https://data.delijn.be/stops/300991"], ["https://data.delijn.be/stops/404519", "https://data.delijn.be/stops/404542"], ["https://data.delijn.be/stops/300008", "https://data.delijn.be/stops/304609"], ["https://data.delijn.be/stops/307202", "https://data.delijn.be/stops/307206"], ["https://data.delijn.be/stops/304260", "https://data.delijn.be/stops/304262"], ["https://data.delijn.be/stops/505638", "https://data.delijn.be/stops/508182"], ["https://data.delijn.be/stops/202138", "https://data.delijn.be/stops/203138"], ["https://data.delijn.be/stops/404146", "https://data.delijn.be/stops/404198"], ["https://data.delijn.be/stops/402554", "https://data.delijn.be/stops/402602"], ["https://data.delijn.be/stops/303110", "https://data.delijn.be/stops/303678"], ["https://data.delijn.be/stops/300719", "https://data.delijn.be/stops/300732"], ["https://data.delijn.be/stops/302268", "https://data.delijn.be/stops/306972"], ["https://data.delijn.be/stops/204472", "https://data.delijn.be/stops/204776"], ["https://data.delijn.be/stops/103354", "https://data.delijn.be/stops/103762"], ["https://data.delijn.be/stops/408295", "https://data.delijn.be/stops/308180"], ["https://data.delijn.be/stops/402784", "https://data.delijn.be/stops/404042"], ["https://data.delijn.be/stops/405146", "https://data.delijn.be/stops/405234"], ["https://data.delijn.be/stops/101497", "https://data.delijn.be/stops/109374"], ["https://data.delijn.be/stops/105033", "https://data.delijn.be/stops/109672"], ["https://data.delijn.be/stops/105013", "https://data.delijn.be/stops/105080"], ["https://data.delijn.be/stops/402808", "https://data.delijn.be/stops/402809"], ["https://data.delijn.be/stops/301849", "https://data.delijn.be/stops/301850"], ["https://data.delijn.be/stops/201546", "https://data.delijn.be/stops/203900"], ["https://data.delijn.be/stops/406322", "https://data.delijn.be/stops/406330"], ["https://data.delijn.be/stops/507207", "https://data.delijn.be/stops/507213"], ["https://data.delijn.be/stops/103545", "https://data.delijn.be/stops/104465"], ["https://data.delijn.be/stops/109003", "https://data.delijn.be/stops/402019"], ["https://data.delijn.be/stops/504452", "https://data.delijn.be/stops/509455"], ["https://data.delijn.be/stops/206390", "https://data.delijn.be/stops/207390"], ["https://data.delijn.be/stops/403778", "https://data.delijn.be/stops/403875"], ["https://data.delijn.be/stops/300363", "https://data.delijn.be/stops/300371"], ["https://data.delijn.be/stops/104946", "https://data.delijn.be/stops/108860"], ["https://data.delijn.be/stops/406467", "https://data.delijn.be/stops/407513"], ["https://data.delijn.be/stops/404130", "https://data.delijn.be/stops/404131"], ["https://data.delijn.be/stops/209779", "https://data.delijn.be/stops/209780"], ["https://data.delijn.be/stops/303262", "https://data.delijn.be/stops/303890"], ["https://data.delijn.be/stops/206020", "https://data.delijn.be/stops/207020"], ["https://data.delijn.be/stops/407819", "https://data.delijn.be/stops/407823"], ["https://data.delijn.be/stops/307568", "https://data.delijn.be/stops/307586"], ["https://data.delijn.be/stops/207250", "https://data.delijn.be/stops/209951"], ["https://data.delijn.be/stops/408897", "https://data.delijn.be/stops/408901"], ["https://data.delijn.be/stops/403158", "https://data.delijn.be/stops/410321"], ["https://data.delijn.be/stops/504022", "https://data.delijn.be/stops/505429"], ["https://data.delijn.be/stops/208236", "https://data.delijn.be/stops/209236"], ["https://data.delijn.be/stops/402408", "https://data.delijn.be/stops/402417"], ["https://data.delijn.be/stops/503529", "https://data.delijn.be/stops/504767"], ["https://data.delijn.be/stops/208616", "https://data.delijn.be/stops/208617"], ["https://data.delijn.be/stops/401411", "https://data.delijn.be/stops/300980"], ["https://data.delijn.be/stops/304169", "https://data.delijn.be/stops/307552"], ["https://data.delijn.be/stops/407628", "https://data.delijn.be/stops/407629"], ["https://data.delijn.be/stops/305173", "https://data.delijn.be/stops/308048"], ["https://data.delijn.be/stops/202029", "https://data.delijn.be/stops/205995"], ["https://data.delijn.be/stops/106655", "https://data.delijn.be/stops/106656"], ["https://data.delijn.be/stops/204754", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/302537", "https://data.delijn.be/stops/302538"], ["https://data.delijn.be/stops/305098", "https://data.delijn.be/stops/305111"], ["https://data.delijn.be/stops/304275", "https://data.delijn.be/stops/304276"], ["https://data.delijn.be/stops/201581", "https://data.delijn.be/stops/210607"], ["https://data.delijn.be/stops/101345", "https://data.delijn.be/stops/103216"], ["https://data.delijn.be/stops/504525", "https://data.delijn.be/stops/509604"], ["https://data.delijn.be/stops/400485", "https://data.delijn.be/stops/400492"], ["https://data.delijn.be/stops/206471", "https://data.delijn.be/stops/207138"], ["https://data.delijn.be/stops/102751", "https://data.delijn.be/stops/103354"], ["https://data.delijn.be/stops/200871", "https://data.delijn.be/stops/201119"], ["https://data.delijn.be/stops/407354", "https://data.delijn.be/stops/407357"], ["https://data.delijn.be/stops/206917", "https://data.delijn.be/stops/207263"], ["https://data.delijn.be/stops/503304", "https://data.delijn.be/stops/508304"], ["https://data.delijn.be/stops/305774", "https://data.delijn.be/stops/305776"], ["https://data.delijn.be/stops/301612", "https://data.delijn.be/stops/303623"], ["https://data.delijn.be/stops/308498", "https://data.delijn.be/stops/308499"], ["https://data.delijn.be/stops/206960", "https://data.delijn.be/stops/306072"], ["https://data.delijn.be/stops/507689", "https://data.delijn.be/stops/509317"], ["https://data.delijn.be/stops/303552", "https://data.delijn.be/stops/307990"], ["https://data.delijn.be/stops/204017", "https://data.delijn.be/stops/205053"], ["https://data.delijn.be/stops/103683", "https://data.delijn.be/stops/106317"], ["https://data.delijn.be/stops/501680", "https://data.delijn.be/stops/509262"], ["https://data.delijn.be/stops/503706", "https://data.delijn.be/stops/503714"], ["https://data.delijn.be/stops/400286", "https://data.delijn.be/stops/400402"], ["https://data.delijn.be/stops/208151", "https://data.delijn.be/stops/209151"], ["https://data.delijn.be/stops/506191", "https://data.delijn.be/stops/506384"], ["https://data.delijn.be/stops/407592", "https://data.delijn.be/stops/408550"], ["https://data.delijn.be/stops/401258", "https://data.delijn.be/stops/406681"], ["https://data.delijn.be/stops/502487", "https://data.delijn.be/stops/507487"], ["https://data.delijn.be/stops/503117", "https://data.delijn.be/stops/505105"], ["https://data.delijn.be/stops/303225", "https://data.delijn.be/stops/304661"], ["https://data.delijn.be/stops/203241", "https://data.delijn.be/stops/203956"], ["https://data.delijn.be/stops/302158", "https://data.delijn.be/stops/308101"], ["https://data.delijn.be/stops/202167", "https://data.delijn.be/stops/205073"], ["https://data.delijn.be/stops/301168", "https://data.delijn.be/stops/303224"], ["https://data.delijn.be/stops/108041", "https://data.delijn.be/stops/108042"], ["https://data.delijn.be/stops/504995", "https://data.delijn.be/stops/505120"], ["https://data.delijn.be/stops/403750", "https://data.delijn.be/stops/403751"], ["https://data.delijn.be/stops/301019", "https://data.delijn.be/stops/301021"], ["https://data.delijn.be/stops/307879", "https://data.delijn.be/stops/307880"], ["https://data.delijn.be/stops/400664", "https://data.delijn.be/stops/400665"], ["https://data.delijn.be/stops/204403", "https://data.delijn.be/stops/204404"], ["https://data.delijn.be/stops/503085", "https://data.delijn.be/stops/505196"], ["https://data.delijn.be/stops/101390", "https://data.delijn.be/stops/107006"], ["https://data.delijn.be/stops/209144", "https://data.delijn.be/stops/209403"], ["https://data.delijn.be/stops/107934", "https://data.delijn.be/stops/303880"], ["https://data.delijn.be/stops/400065", "https://data.delijn.be/stops/400111"], ["https://data.delijn.be/stops/501267", "https://data.delijn.be/stops/501565"], ["https://data.delijn.be/stops/207065", "https://data.delijn.be/stops/207066"], ["https://data.delijn.be/stops/508403", "https://data.delijn.be/stops/509771"], ["https://data.delijn.be/stops/302933", "https://data.delijn.be/stops/303106"], ["https://data.delijn.be/stops/107610", "https://data.delijn.be/stops/107690"], ["https://data.delijn.be/stops/508829", "https://data.delijn.be/stops/508833"], ["https://data.delijn.be/stops/206147", "https://data.delijn.be/stops/207148"], ["https://data.delijn.be/stops/404199", "https://data.delijn.be/stops/404206"], ["https://data.delijn.be/stops/505637", "https://data.delijn.be/stops/508179"], ["https://data.delijn.be/stops/502606", "https://data.delijn.be/stops/507607"], ["https://data.delijn.be/stops/405974", "https://data.delijn.be/stops/405975"], ["https://data.delijn.be/stops/401816", "https://data.delijn.be/stops/406076"], ["https://data.delijn.be/stops/305168", "https://data.delijn.be/stops/306913"], ["https://data.delijn.be/stops/204006", "https://data.delijn.be/stops/205006"], ["https://data.delijn.be/stops/201579", "https://data.delijn.be/stops/210607"], ["https://data.delijn.be/stops/202907", "https://data.delijn.be/stops/203907"], ["https://data.delijn.be/stops/503253", "https://data.delijn.be/stops/503259"], ["https://data.delijn.be/stops/202300", "https://data.delijn.be/stops/203299"], ["https://data.delijn.be/stops/302304", "https://data.delijn.be/stops/302329"], ["https://data.delijn.be/stops/106944", "https://data.delijn.be/stops/108701"], ["https://data.delijn.be/stops/303287", "https://data.delijn.be/stops/304638"], ["https://data.delijn.be/stops/403982", "https://data.delijn.be/stops/404005"], ["https://data.delijn.be/stops/105599", "https://data.delijn.be/stops/105601"], ["https://data.delijn.be/stops/205704", "https://data.delijn.be/stops/205705"], ["https://data.delijn.be/stops/305252", "https://data.delijn.be/stops/305254"], ["https://data.delijn.be/stops/306687", "https://data.delijn.be/stops/306688"], ["https://data.delijn.be/stops/104310", "https://data.delijn.be/stops/105120"], ["https://data.delijn.be/stops/403617", "https://data.delijn.be/stops/406729"], ["https://data.delijn.be/stops/101972", "https://data.delijn.be/stops/109295"], ["https://data.delijn.be/stops/501146", "https://data.delijn.be/stops/509831"], ["https://data.delijn.be/stops/504526", "https://data.delijn.be/stops/509059"], ["https://data.delijn.be/stops/102511", "https://data.delijn.be/stops/406479"], ["https://data.delijn.be/stops/109802", "https://data.delijn.be/stops/109803"], ["https://data.delijn.be/stops/211050", "https://data.delijn.be/stops/211127"], ["https://data.delijn.be/stops/404456", "https://data.delijn.be/stops/404564"], ["https://data.delijn.be/stops/408265", "https://data.delijn.be/stops/408271"], ["https://data.delijn.be/stops/503548", "https://data.delijn.be/stops/508541"], ["https://data.delijn.be/stops/205141", "https://data.delijn.be/stops/205142"], ["https://data.delijn.be/stops/307148", "https://data.delijn.be/stops/307215"], ["https://data.delijn.be/stops/206739", "https://data.delijn.be/stops/207981"], ["https://data.delijn.be/stops/109686", "https://data.delijn.be/stops/109689"], ["https://data.delijn.be/stops/305675", "https://data.delijn.be/stops/305690"], ["https://data.delijn.be/stops/204175", "https://data.delijn.be/stops/204213"], ["https://data.delijn.be/stops/204468", "https://data.delijn.be/stops/214011"], ["https://data.delijn.be/stops/500560", "https://data.delijn.be/stops/500562"], ["https://data.delijn.be/stops/109242", "https://data.delijn.be/stops/109244"], ["https://data.delijn.be/stops/102286", "https://data.delijn.be/stops/105521"], ["https://data.delijn.be/stops/508067", "https://data.delijn.be/stops/508834"], ["https://data.delijn.be/stops/300640", "https://data.delijn.be/stops/300642"], ["https://data.delijn.be/stops/108059", "https://data.delijn.be/stops/108804"], ["https://data.delijn.be/stops/101914", "https://data.delijn.be/stops/101916"], ["https://data.delijn.be/stops/106375", "https://data.delijn.be/stops/106384"], ["https://data.delijn.be/stops/300172", "https://data.delijn.be/stops/306719"], ["https://data.delijn.be/stops/300177", "https://data.delijn.be/stops/300178"], ["https://data.delijn.be/stops/105231", "https://data.delijn.be/stops/109957"], ["https://data.delijn.be/stops/301449", "https://data.delijn.be/stops/306677"], ["https://data.delijn.be/stops/408503", "https://data.delijn.be/stops/408504"], ["https://data.delijn.be/stops/103472", "https://data.delijn.be/stops/109166"], ["https://data.delijn.be/stops/200948", "https://data.delijn.be/stops/203227"], ["https://data.delijn.be/stops/200576", "https://data.delijn.be/stops/202757"], ["https://data.delijn.be/stops/303700", "https://data.delijn.be/stops/305970"], ["https://data.delijn.be/stops/501470", "https://data.delijn.be/stops/501476"], ["https://data.delijn.be/stops/406718", "https://data.delijn.be/stops/408345"], ["https://data.delijn.be/stops/404324", "https://data.delijn.be/stops/404649"], ["https://data.delijn.be/stops/102956", "https://data.delijn.be/stops/102957"], ["https://data.delijn.be/stops/103928", "https://data.delijn.be/stops/106899"], ["https://data.delijn.be/stops/103004", "https://data.delijn.be/stops/108328"], ["https://data.delijn.be/stops/405812", "https://data.delijn.be/stops/405891"], ["https://data.delijn.be/stops/307135", "https://data.delijn.be/stops/308716"], ["https://data.delijn.be/stops/206811", "https://data.delijn.be/stops/207811"], ["https://data.delijn.be/stops/103615", "https://data.delijn.be/stops/108905"], ["https://data.delijn.be/stops/103025", "https://data.delijn.be/stops/103030"], ["https://data.delijn.be/stops/104165", "https://data.delijn.be/stops/108835"], ["https://data.delijn.be/stops/402875", "https://data.delijn.be/stops/402876"], ["https://data.delijn.be/stops/504428", "https://data.delijn.be/stops/505948"], ["https://data.delijn.be/stops/404920", "https://data.delijn.be/stops/404922"], ["https://data.delijn.be/stops/400166", "https://data.delijn.be/stops/400167"], ["https://data.delijn.be/stops/404668", "https://data.delijn.be/stops/404669"], ["https://data.delijn.be/stops/305777", "https://data.delijn.be/stops/305798"], ["https://data.delijn.be/stops/503286", "https://data.delijn.be/stops/503290"], ["https://data.delijn.be/stops/300346", "https://data.delijn.be/stops/303246"], ["https://data.delijn.be/stops/300444", "https://data.delijn.be/stops/301276"], ["https://data.delijn.be/stops/200848", "https://data.delijn.be/stops/209654"], ["https://data.delijn.be/stops/101474", "https://data.delijn.be/stops/109239"], ["https://data.delijn.be/stops/203694", "https://data.delijn.be/stops/211023"], ["https://data.delijn.be/stops/102886", "https://data.delijn.be/stops/102893"], ["https://data.delijn.be/stops/501092", "https://data.delijn.be/stops/505762"], ["https://data.delijn.be/stops/502913", "https://data.delijn.be/stops/507154"], ["https://data.delijn.be/stops/204130", "https://data.delijn.be/stops/207638"], ["https://data.delijn.be/stops/108607", "https://data.delijn.be/stops/307436"], ["https://data.delijn.be/stops/405402", "https://data.delijn.be/stops/405405"], ["https://data.delijn.be/stops/108052", "https://data.delijn.be/stops/108054"], ["https://data.delijn.be/stops/504103", "https://data.delijn.be/stops/509107"], ["https://data.delijn.be/stops/200338", "https://data.delijn.be/stops/200347"], ["https://data.delijn.be/stops/300706", "https://data.delijn.be/stops/308069"], ["https://data.delijn.be/stops/304738", "https://data.delijn.be/stops/305530"], ["https://data.delijn.be/stops/407691", "https://data.delijn.be/stops/410193"], ["https://data.delijn.be/stops/304734", "https://data.delijn.be/stops/304744"], ["https://data.delijn.be/stops/504220", "https://data.delijn.be/stops/509220"], ["https://data.delijn.be/stops/107238", "https://data.delijn.be/stops/107885"], ["https://data.delijn.be/stops/108216", "https://data.delijn.be/stops/108218"], ["https://data.delijn.be/stops/402105", "https://data.delijn.be/stops/402229"], ["https://data.delijn.be/stops/405449", "https://data.delijn.be/stops/302837"], ["https://data.delijn.be/stops/502708", "https://data.delijn.be/stops/507524"], ["https://data.delijn.be/stops/303848", "https://data.delijn.be/stops/303872"], ["https://data.delijn.be/stops/204040", "https://data.delijn.be/stops/205041"], ["https://data.delijn.be/stops/300290", "https://data.delijn.be/stops/301313"], ["https://data.delijn.be/stops/406916", "https://data.delijn.be/stops/406976"], ["https://data.delijn.be/stops/303702", "https://data.delijn.be/stops/305970"], ["https://data.delijn.be/stops/409076", "https://data.delijn.be/stops/409077"], ["https://data.delijn.be/stops/501379", "https://data.delijn.be/stops/506196"], ["https://data.delijn.be/stops/405158", "https://data.delijn.be/stops/405159"], ["https://data.delijn.be/stops/306123", "https://data.delijn.be/stops/307144"], ["https://data.delijn.be/stops/501199", "https://data.delijn.be/stops/501531"], ["https://data.delijn.be/stops/305175", "https://data.delijn.be/stops/306967"], ["https://data.delijn.be/stops/300174", "https://data.delijn.be/stops/301221"], ["https://data.delijn.be/stops/409580", "https://data.delijn.be/stops/409581"], ["https://data.delijn.be/stops/207245", "https://data.delijn.be/stops/207246"], ["https://data.delijn.be/stops/106116", "https://data.delijn.be/stops/106118"], ["https://data.delijn.be/stops/507741", "https://data.delijn.be/stops/507746"], ["https://data.delijn.be/stops/209038", "https://data.delijn.be/stops/209539"], ["https://data.delijn.be/stops/300357", "https://data.delijn.be/stops/304863"], ["https://data.delijn.be/stops/408292", "https://data.delijn.be/stops/408354"], ["https://data.delijn.be/stops/503872", "https://data.delijn.be/stops/508870"], ["https://data.delijn.be/stops/101577", "https://data.delijn.be/stops/105461"], ["https://data.delijn.be/stops/500943", "https://data.delijn.be/stops/508893"], ["https://data.delijn.be/stops/405187", "https://data.delijn.be/stops/405214"], ["https://data.delijn.be/stops/409122", "https://data.delijn.be/stops/409137"], ["https://data.delijn.be/stops/102137", "https://data.delijn.be/stops/103479"], ["https://data.delijn.be/stops/101467", "https://data.delijn.be/stops/109266"], ["https://data.delijn.be/stops/300803", "https://data.delijn.be/stops/308530"], ["https://data.delijn.be/stops/202496", "https://data.delijn.be/stops/203495"], ["https://data.delijn.be/stops/201671", "https://data.delijn.be/stops/203775"], ["https://data.delijn.be/stops/104760", "https://data.delijn.be/stops/105500"], ["https://data.delijn.be/stops/503759", "https://data.delijn.be/stops/508756"], ["https://data.delijn.be/stops/206736", "https://data.delijn.be/stops/207984"], ["https://data.delijn.be/stops/206586", "https://data.delijn.be/stops/207841"], ["https://data.delijn.be/stops/503017", "https://data.delijn.be/stops/504817"], ["https://data.delijn.be/stops/508731", "https://data.delijn.be/stops/508991"], ["https://data.delijn.be/stops/200689", "https://data.delijn.be/stops/203758"], ["https://data.delijn.be/stops/302683", "https://data.delijn.be/stops/302686"], ["https://data.delijn.be/stops/401967", "https://data.delijn.be/stops/408115"], ["https://data.delijn.be/stops/305609", "https://data.delijn.be/stops/307272"], ["https://data.delijn.be/stops/207842", "https://data.delijn.be/stops/208951"], ["https://data.delijn.be/stops/305740", "https://data.delijn.be/stops/307118"], ["https://data.delijn.be/stops/206041", "https://data.delijn.be/stops/216011"], ["https://data.delijn.be/stops/205974", "https://data.delijn.be/stops/208295"], ["https://data.delijn.be/stops/505501", "https://data.delijn.be/stops/505504"], ["https://data.delijn.be/stops/403179", "https://data.delijn.be/stops/403445"], ["https://data.delijn.be/stops/505046", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/108166", "https://data.delijn.be/stops/108167"], ["https://data.delijn.be/stops/302649", "https://data.delijn.be/stops/302650"], ["https://data.delijn.be/stops/507698", "https://data.delijn.be/stops/508921"], ["https://data.delijn.be/stops/207534", "https://data.delijn.be/stops/207648"], ["https://data.delijn.be/stops/204476", "https://data.delijn.be/stops/205463"], ["https://data.delijn.be/stops/201452", "https://data.delijn.be/stops/203654"], ["https://data.delijn.be/stops/406379", "https://data.delijn.be/stops/407862"], ["https://data.delijn.be/stops/507063", "https://data.delijn.be/stops/507316"], ["https://data.delijn.be/stops/503556", "https://data.delijn.be/stops/508556"], ["https://data.delijn.be/stops/402069", "https://data.delijn.be/stops/402080"], ["https://data.delijn.be/stops/204117", "https://data.delijn.be/stops/205115"], ["https://data.delijn.be/stops/207307", "https://data.delijn.be/stops/207308"], ["https://data.delijn.be/stops/401296", "https://data.delijn.be/stops/401351"], ["https://data.delijn.be/stops/504031", "https://data.delijn.be/stops/505837"], ["https://data.delijn.be/stops/303422", "https://data.delijn.be/stops/303423"], ["https://data.delijn.be/stops/109671", "https://data.delijn.be/stops/408449"], ["https://data.delijn.be/stops/502361", "https://data.delijn.be/stops/507361"], ["https://data.delijn.be/stops/207175", "https://data.delijn.be/stops/207478"], ["https://data.delijn.be/stops/500946", "https://data.delijn.be/stops/500947"], ["https://data.delijn.be/stops/206039", "https://data.delijn.be/stops/207039"], ["https://data.delijn.be/stops/406956", "https://data.delijn.be/stops/406960"], ["https://data.delijn.be/stops/104589", "https://data.delijn.be/stops/106415"], ["https://data.delijn.be/stops/200126", "https://data.delijn.be/stops/202000"], ["https://data.delijn.be/stops/305002", "https://data.delijn.be/stops/305022"], ["https://data.delijn.be/stops/400588", "https://data.delijn.be/stops/400589"], ["https://data.delijn.be/stops/400659", "https://data.delijn.be/stops/402533"], ["https://data.delijn.be/stops/206696", "https://data.delijn.be/stops/207743"], ["https://data.delijn.be/stops/408672", "https://data.delijn.be/stops/408674"], ["https://data.delijn.be/stops/305506", "https://data.delijn.be/stops/305507"], ["https://data.delijn.be/stops/505277", "https://data.delijn.be/stops/508818"], ["https://data.delijn.be/stops/200010", "https://data.delijn.be/stops/201011"], ["https://data.delijn.be/stops/502457", "https://data.delijn.be/stops/502657"], ["https://data.delijn.be/stops/505311", "https://data.delijn.be/stops/509060"], ["https://data.delijn.be/stops/503188", "https://data.delijn.be/stops/503208"], ["https://data.delijn.be/stops/101816", "https://data.delijn.be/stops/204142"], ["https://data.delijn.be/stops/304696", "https://data.delijn.be/stops/306683"], ["https://data.delijn.be/stops/204296", "https://data.delijn.be/stops/204497"], ["https://data.delijn.be/stops/409098", "https://data.delijn.be/stops/409099"], ["https://data.delijn.be/stops/407680", "https://data.delijn.be/stops/408707"], ["https://data.delijn.be/stops/504619", "https://data.delijn.be/stops/504685"], ["https://data.delijn.be/stops/204034", "https://data.delijn.be/stops/205033"], ["https://data.delijn.be/stops/304862", "https://data.delijn.be/stops/307647"], ["https://data.delijn.be/stops/208356", "https://data.delijn.be/stops/209499"], ["https://data.delijn.be/stops/404857", "https://data.delijn.be/stops/404869"], ["https://data.delijn.be/stops/101444", "https://data.delijn.be/stops/101664"], ["https://data.delijn.be/stops/503241", "https://data.delijn.be/stops/505371"], ["https://data.delijn.be/stops/303479", "https://data.delijn.be/stops/303480"], ["https://data.delijn.be/stops/407861", "https://data.delijn.be/stops/305731"], ["https://data.delijn.be/stops/207943", "https://data.delijn.be/stops/307744"], ["https://data.delijn.be/stops/206559", "https://data.delijn.be/stops/206560"], ["https://data.delijn.be/stops/307051", "https://data.delijn.be/stops/308544"], ["https://data.delijn.be/stops/502402", "https://data.delijn.be/stops/507382"], ["https://data.delijn.be/stops/207261", "https://data.delijn.be/stops/207903"], ["https://data.delijn.be/stops/403548", "https://data.delijn.be/stops/403625"], ["https://data.delijn.be/stops/408002", "https://data.delijn.be/stops/308199"], ["https://data.delijn.be/stops/200403", "https://data.delijn.be/stops/202983"], ["https://data.delijn.be/stops/300602", "https://data.delijn.be/stops/300622"], ["https://data.delijn.be/stops/502028", "https://data.delijn.be/stops/502391"], ["https://data.delijn.be/stops/200692", "https://data.delijn.be/stops/208647"], ["https://data.delijn.be/stops/307055", "https://data.delijn.be/stops/307056"], ["https://data.delijn.be/stops/202832", "https://data.delijn.be/stops/209638"], ["https://data.delijn.be/stops/304900", "https://data.delijn.be/stops/306406"], ["https://data.delijn.be/stops/300115", "https://data.delijn.be/stops/306842"], ["https://data.delijn.be/stops/200111", "https://data.delijn.be/stops/201021"], ["https://data.delijn.be/stops/402942", "https://data.delijn.be/stops/301273"], ["https://data.delijn.be/stops/400471", "https://data.delijn.be/stops/407638"], ["https://data.delijn.be/stops/200161", "https://data.delijn.be/stops/200536"], ["https://data.delijn.be/stops/505714", "https://data.delijn.be/stops/508491"], ["https://data.delijn.be/stops/304527", "https://data.delijn.be/stops/304678"], ["https://data.delijn.be/stops/301503", "https://data.delijn.be/stops/301523"], ["https://data.delijn.be/stops/400505", "https://data.delijn.be/stops/400517"], ["https://data.delijn.be/stops/101688", "https://data.delijn.be/stops/109604"], ["https://data.delijn.be/stops/109057", "https://data.delijn.be/stops/405050"], ["https://data.delijn.be/stops/505511", "https://data.delijn.be/stops/505512"], ["https://data.delijn.be/stops/409415", "https://data.delijn.be/stops/409663"], ["https://data.delijn.be/stops/208155", "https://data.delijn.be/stops/208156"], ["https://data.delijn.be/stops/306667", "https://data.delijn.be/stops/306668"], ["https://data.delijn.be/stops/303820", "https://data.delijn.be/stops/303846"], ["https://data.delijn.be/stops/404105", "https://data.delijn.be/stops/408738"], ["https://data.delijn.be/stops/201718", "https://data.delijn.be/stops/202376"], ["https://data.delijn.be/stops/402112", "https://data.delijn.be/stops/405555"], ["https://data.delijn.be/stops/305071", "https://data.delijn.be/stops/306950"], ["https://data.delijn.be/stops/501219", "https://data.delijn.be/stops/501223"], ["https://data.delijn.be/stops/302024", "https://data.delijn.be/stops/302047"], ["https://data.delijn.be/stops/103007", "https://data.delijn.be/stops/106511"], ["https://data.delijn.be/stops/302735", "https://data.delijn.be/stops/307522"], ["https://data.delijn.be/stops/205985", "https://data.delijn.be/stops/207836"], ["https://data.delijn.be/stops/300358", "https://data.delijn.be/stops/304863"], ["https://data.delijn.be/stops/501344", "https://data.delijn.be/stops/506294"], ["https://data.delijn.be/stops/103055", "https://data.delijn.be/stops/104785"], ["https://data.delijn.be/stops/206130", "https://data.delijn.be/stops/206131"], ["https://data.delijn.be/stops/503270", "https://data.delijn.be/stops/503271"], ["https://data.delijn.be/stops/400684", "https://data.delijn.be/stops/406683"], ["https://data.delijn.be/stops/404898", "https://data.delijn.be/stops/404952"], ["https://data.delijn.be/stops/505677", "https://data.delijn.be/stops/507310"], ["https://data.delijn.be/stops/402542", "https://data.delijn.be/stops/402567"], ["https://data.delijn.be/stops/401782", "https://data.delijn.be/stops/406443"], ["https://data.delijn.be/stops/206691", "https://data.delijn.be/stops/207718"], ["https://data.delijn.be/stops/200054", "https://data.delijn.be/stops/201797"], ["https://data.delijn.be/stops/408020", "https://data.delijn.be/stops/408063"], ["https://data.delijn.be/stops/200825", "https://data.delijn.be/stops/200837"], ["https://data.delijn.be/stops/501080", "https://data.delijn.be/stops/506059"], ["https://data.delijn.be/stops/300133", "https://data.delijn.be/stops/305025"], ["https://data.delijn.be/stops/304697", "https://data.delijn.be/stops/307154"], ["https://data.delijn.be/stops/300641", "https://data.delijn.be/stops/300656"], ["https://data.delijn.be/stops/407893", "https://data.delijn.be/stops/301846"], ["https://data.delijn.be/stops/200219", "https://data.delijn.be/stops/200266"], ["https://data.delijn.be/stops/300285", "https://data.delijn.be/stops/306285"], ["https://data.delijn.be/stops/107461", "https://data.delijn.be/stops/109201"], ["https://data.delijn.be/stops/304786", "https://data.delijn.be/stops/308786"], ["https://data.delijn.be/stops/401670", "https://data.delijn.be/stops/308272"], ["https://data.delijn.be/stops/201663", "https://data.delijn.be/stops/209640"], ["https://data.delijn.be/stops/101136", "https://data.delijn.be/stops/104860"], ["https://data.delijn.be/stops/502586", "https://data.delijn.be/stops/502679"], ["https://data.delijn.be/stops/408707", "https://data.delijn.be/stops/410091"], ["https://data.delijn.be/stops/507685", "https://data.delijn.be/stops/507812"], ["https://data.delijn.be/stops/301928", "https://data.delijn.be/stops/307877"], ["https://data.delijn.be/stops/402098", "https://data.delijn.be/stops/402159"], ["https://data.delijn.be/stops/206161", "https://data.delijn.be/stops/206495"], ["https://data.delijn.be/stops/401062", "https://data.delijn.be/stops/401086"], ["https://data.delijn.be/stops/106306", "https://data.delijn.be/stops/106309"], ["https://data.delijn.be/stops/504074", "https://data.delijn.be/stops/509271"], ["https://data.delijn.be/stops/304951", "https://data.delijn.be/stops/304989"], ["https://data.delijn.be/stops/403329", "https://data.delijn.be/stops/403333"], ["https://data.delijn.be/stops/302228", "https://data.delijn.be/stops/302232"], ["https://data.delijn.be/stops/404404", "https://data.delijn.be/stops/404417"], ["https://data.delijn.be/stops/107920", "https://data.delijn.be/stops/107925"], ["https://data.delijn.be/stops/101444", "https://data.delijn.be/stops/107064"], ["https://data.delijn.be/stops/204497", "https://data.delijn.be/stops/205496"], ["https://data.delijn.be/stops/405927", "https://data.delijn.be/stops/406030"], ["https://data.delijn.be/stops/505799", "https://data.delijn.be/stops/509620"], ["https://data.delijn.be/stops/102300", "https://data.delijn.be/stops/105135"], ["https://data.delijn.be/stops/406545", "https://data.delijn.be/stops/408386"], ["https://data.delijn.be/stops/101145", "https://data.delijn.be/stops/102515"], ["https://data.delijn.be/stops/406552", "https://data.delijn.be/stops/406560"], ["https://data.delijn.be/stops/203726", "https://data.delijn.be/stops/203727"], ["https://data.delijn.be/stops/102675", "https://data.delijn.be/stops/104220"], ["https://data.delijn.be/stops/103233", "https://data.delijn.be/stops/108921"], ["https://data.delijn.be/stops/306612", "https://data.delijn.be/stops/306616"], ["https://data.delijn.be/stops/300453", "https://data.delijn.be/stops/300454"], ["https://data.delijn.be/stops/206660", "https://data.delijn.be/stops/207418"], ["https://data.delijn.be/stops/105197", "https://data.delijn.be/stops/108882"], ["https://data.delijn.be/stops/302869", "https://data.delijn.be/stops/306098"], ["https://data.delijn.be/stops/103586", "https://data.delijn.be/stops/104890"], ["https://data.delijn.be/stops/305611", "https://data.delijn.be/stops/308945"], ["https://data.delijn.be/stops/301089", "https://data.delijn.be/stops/308870"], ["https://data.delijn.be/stops/301042", "https://data.delijn.be/stops/307252"], ["https://data.delijn.be/stops/401774", "https://data.delijn.be/stops/401870"], ["https://data.delijn.be/stops/405232", "https://data.delijn.be/stops/409347"], ["https://data.delijn.be/stops/507191", "https://data.delijn.be/stops/508338"], ["https://data.delijn.be/stops/208021", "https://data.delijn.be/stops/208026"], ["https://data.delijn.be/stops/402229", "https://data.delijn.be/stops/402423"], ["https://data.delijn.be/stops/403451", "https://data.delijn.be/stops/404553"], ["https://data.delijn.be/stops/104131", "https://data.delijn.be/stops/108433"], ["https://data.delijn.be/stops/404869", "https://data.delijn.be/stops/404913"], ["https://data.delijn.be/stops/502351", "https://data.delijn.be/stops/505171"], ["https://data.delijn.be/stops/406268", "https://data.delijn.be/stops/409404"], ["https://data.delijn.be/stops/108692", "https://data.delijn.be/stops/108693"], ["https://data.delijn.be/stops/503025", "https://data.delijn.be/stops/508025"], ["https://data.delijn.be/stops/505543", "https://data.delijn.be/stops/508804"], ["https://data.delijn.be/stops/403794", "https://data.delijn.be/stops/403795"], ["https://data.delijn.be/stops/209141", "https://data.delijn.be/stops/209851"], ["https://data.delijn.be/stops/405186", "https://data.delijn.be/stops/405190"], ["https://data.delijn.be/stops/502312", "https://data.delijn.be/stops/507312"], ["https://data.delijn.be/stops/202552", "https://data.delijn.be/stops/203564"], ["https://data.delijn.be/stops/504590", "https://data.delijn.be/stops/509346"], ["https://data.delijn.be/stops/503114", "https://data.delijn.be/stops/508114"], ["https://data.delijn.be/stops/101414", "https://data.delijn.be/stops/101431"], ["https://data.delijn.be/stops/108192", "https://data.delijn.be/stops/108193"], ["https://data.delijn.be/stops/203772", "https://data.delijn.be/stops/209641"], ["https://data.delijn.be/stops/200109", "https://data.delijn.be/stops/201386"], ["https://data.delijn.be/stops/208259", "https://data.delijn.be/stops/209259"], ["https://data.delijn.be/stops/508893", "https://data.delijn.be/stops/508969"], ["https://data.delijn.be/stops/206289", "https://data.delijn.be/stops/207257"], ["https://data.delijn.be/stops/502350", "https://data.delijn.be/stops/507233"], ["https://data.delijn.be/stops/504660", "https://data.delijn.be/stops/507946"], ["https://data.delijn.be/stops/206668", "https://data.delijn.be/stops/208481"], ["https://data.delijn.be/stops/302962", "https://data.delijn.be/stops/302993"], ["https://data.delijn.be/stops/305830", "https://data.delijn.be/stops/305962"], ["https://data.delijn.be/stops/403978", "https://data.delijn.be/stops/403979"], ["https://data.delijn.be/stops/407752", "https://data.delijn.be/stops/407754"], ["https://data.delijn.be/stops/301797", "https://data.delijn.be/stops/301799"], ["https://data.delijn.be/stops/403776", "https://data.delijn.be/stops/403817"], ["https://data.delijn.be/stops/101886", "https://data.delijn.be/stops/107531"], ["https://data.delijn.be/stops/403719", "https://data.delijn.be/stops/403722"], ["https://data.delijn.be/stops/400859", "https://data.delijn.be/stops/400861"], ["https://data.delijn.be/stops/201383", "https://data.delijn.be/stops/209730"], ["https://data.delijn.be/stops/502421", "https://data.delijn.be/stops/507421"], ["https://data.delijn.be/stops/300552", "https://data.delijn.be/stops/300563"], ["https://data.delijn.be/stops/501201", "https://data.delijn.be/stops/506201"], ["https://data.delijn.be/stops/207791", "https://data.delijn.be/stops/208764"], ["https://data.delijn.be/stops/204367", "https://data.delijn.be/stops/205217"], ["https://data.delijn.be/stops/201726", "https://data.delijn.be/stops/203977"], ["https://data.delijn.be/stops/104672", "https://data.delijn.be/stops/109660"], ["https://data.delijn.be/stops/502037", "https://data.delijn.be/stops/507041"], ["https://data.delijn.be/stops/304018", "https://data.delijn.be/stops/304090"], ["https://data.delijn.be/stops/400688", "https://data.delijn.be/stops/404252"], ["https://data.delijn.be/stops/104133", "https://data.delijn.be/stops/104592"], ["https://data.delijn.be/stops/206521", "https://data.delijn.be/stops/207064"], ["https://data.delijn.be/stops/106453", "https://data.delijn.be/stops/106454"], ["https://data.delijn.be/stops/208126", "https://data.delijn.be/stops/218015"], ["https://data.delijn.be/stops/302663", "https://data.delijn.be/stops/302673"], ["https://data.delijn.be/stops/503075", "https://data.delijn.be/stops/503265"], ["https://data.delijn.be/stops/402889", "https://data.delijn.be/stops/402897"], ["https://data.delijn.be/stops/402779", "https://data.delijn.be/stops/402798"], ["https://data.delijn.be/stops/106705", "https://data.delijn.be/stops/106706"], ["https://data.delijn.be/stops/308467", "https://data.delijn.be/stops/308468"], ["https://data.delijn.be/stops/204182", "https://data.delijn.be/stops/205355"], ["https://data.delijn.be/stops/206698", "https://data.delijn.be/stops/207698"], ["https://data.delijn.be/stops/504053", "https://data.delijn.be/stops/505144"], ["https://data.delijn.be/stops/508168", "https://data.delijn.be/stops/508945"], ["https://data.delijn.be/stops/402882", "https://data.delijn.be/stops/405536"], ["https://data.delijn.be/stops/204029", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/301808", "https://data.delijn.be/stops/301818"], ["https://data.delijn.be/stops/206330", "https://data.delijn.be/stops/207330"], ["https://data.delijn.be/stops/202817", "https://data.delijn.be/stops/219953"], ["https://data.delijn.be/stops/208010", "https://data.delijn.be/stops/209010"], ["https://data.delijn.be/stops/406073", "https://data.delijn.be/stops/406079"], ["https://data.delijn.be/stops/408820", "https://data.delijn.be/stops/408821"], ["https://data.delijn.be/stops/303280", "https://data.delijn.be/stops/308793"], ["https://data.delijn.be/stops/509169", "https://data.delijn.be/stops/509177"], ["https://data.delijn.be/stops/105508", "https://data.delijn.be/stops/105509"], ["https://data.delijn.be/stops/108644", "https://data.delijn.be/stops/108647"], ["https://data.delijn.be/stops/306904", "https://data.delijn.be/stops/308721"], ["https://data.delijn.be/stops/208181", "https://data.delijn.be/stops/208759"], ["https://data.delijn.be/stops/208107", "https://data.delijn.be/stops/209776"], ["https://data.delijn.be/stops/503054", "https://data.delijn.be/stops/508054"], ["https://data.delijn.be/stops/405626", "https://data.delijn.be/stops/407471"], ["https://data.delijn.be/stops/401459", "https://data.delijn.be/stops/401578"], ["https://data.delijn.be/stops/404781", "https://data.delijn.be/stops/404785"], ["https://data.delijn.be/stops/504664", "https://data.delijn.be/stops/504730"], ["https://data.delijn.be/stops/304203", "https://data.delijn.be/stops/304209"], ["https://data.delijn.be/stops/201605", "https://data.delijn.be/stops/201647"], ["https://data.delijn.be/stops/407589", "https://data.delijn.be/stops/407590"], ["https://data.delijn.be/stops/204416", "https://data.delijn.be/stops/205416"], ["https://data.delijn.be/stops/302240", "https://data.delijn.be/stops/304913"], ["https://data.delijn.be/stops/206089", "https://data.delijn.be/stops/206094"], ["https://data.delijn.be/stops/403119", "https://data.delijn.be/stops/403120"], ["https://data.delijn.be/stops/500018", "https://data.delijn.be/stops/502465"], ["https://data.delijn.be/stops/302515", "https://data.delijn.be/stops/302538"], ["https://data.delijn.be/stops/104046", "https://data.delijn.be/stops/104047"], ["https://data.delijn.be/stops/105754", "https://data.delijn.be/stops/105756"], ["https://data.delijn.be/stops/202410", "https://data.delijn.be/stops/202418"], ["https://data.delijn.be/stops/501059", "https://data.delijn.be/stops/506054"], ["https://data.delijn.be/stops/101403", "https://data.delijn.be/stops/101404"], ["https://data.delijn.be/stops/304090", "https://data.delijn.be/stops/306375"], ["https://data.delijn.be/stops/108915", "https://data.delijn.be/stops/109771"], ["https://data.delijn.be/stops/400406", "https://data.delijn.be/stops/405537"], ["https://data.delijn.be/stops/401145", "https://data.delijn.be/stops/403735"], ["https://data.delijn.be/stops/206432", "https://data.delijn.be/stops/206537"], ["https://data.delijn.be/stops/507430", "https://data.delijn.be/stops/507751"], ["https://data.delijn.be/stops/103235", "https://data.delijn.be/stops/107400"], ["https://data.delijn.be/stops/403230", "https://data.delijn.be/stops/403387"], ["https://data.delijn.be/stops/200903", "https://data.delijn.be/stops/200904"], ["https://data.delijn.be/stops/204342", "https://data.delijn.be/stops/205452"], ["https://data.delijn.be/stops/200031", "https://data.delijn.be/stops/201335"], ["https://data.delijn.be/stops/400496", "https://data.delijn.be/stops/406565"], ["https://data.delijn.be/stops/103216", "https://data.delijn.be/stops/104887"], ["https://data.delijn.be/stops/503206", "https://data.delijn.be/stops/503407"], ["https://data.delijn.be/stops/202921", "https://data.delijn.be/stops/203855"], ["https://data.delijn.be/stops/209598", "https://data.delijn.be/stops/307306"], ["https://data.delijn.be/stops/501463", "https://data.delijn.be/stops/501536"], ["https://data.delijn.be/stops/504551", "https://data.delijn.be/stops/504553"], ["https://data.delijn.be/stops/206882", "https://data.delijn.be/stops/207915"], ["https://data.delijn.be/stops/204740", "https://data.delijn.be/stops/205743"], ["https://data.delijn.be/stops/103712", "https://data.delijn.be/stops/103946"], ["https://data.delijn.be/stops/200856", "https://data.delijn.be/stops/203306"], ["https://data.delijn.be/stops/307412", "https://data.delijn.be/stops/307413"], ["https://data.delijn.be/stops/106019", "https://data.delijn.be/stops/109860"], ["https://data.delijn.be/stops/300492", "https://data.delijn.be/stops/302867"], ["https://data.delijn.be/stops/504139", "https://data.delijn.be/stops/505985"], ["https://data.delijn.be/stops/404286", "https://data.delijn.be/stops/407088"], ["https://data.delijn.be/stops/501163", "https://data.delijn.be/stops/501669"], ["https://data.delijn.be/stops/403086", "https://data.delijn.be/stops/410329"], ["https://data.delijn.be/stops/106753", "https://data.delijn.be/stops/106759"], ["https://data.delijn.be/stops/405786", "https://data.delijn.be/stops/409749"], ["https://data.delijn.be/stops/504402", "https://data.delijn.be/stops/509467"], ["https://data.delijn.be/stops/106345", "https://data.delijn.be/stops/106346"], ["https://data.delijn.be/stops/408530", "https://data.delijn.be/stops/408531"], ["https://data.delijn.be/stops/304690", "https://data.delijn.be/stops/309670"], ["https://data.delijn.be/stops/301495", "https://data.delijn.be/stops/307957"], ["https://data.delijn.be/stops/300894", "https://data.delijn.be/stops/306052"], ["https://data.delijn.be/stops/400661", "https://data.delijn.be/stops/400663"], ["https://data.delijn.be/stops/504150", "https://data.delijn.be/stops/504193"], ["https://data.delijn.be/stops/205250", "https://data.delijn.be/stops/205472"], ["https://data.delijn.be/stops/402386", "https://data.delijn.be/stops/406884"], ["https://data.delijn.be/stops/302870", "https://data.delijn.be/stops/303950"], ["https://data.delijn.be/stops/504289", "https://data.delijn.be/stops/509289"], ["https://data.delijn.be/stops/208131", "https://data.delijn.be/stops/208815"], ["https://data.delijn.be/stops/106644", "https://data.delijn.be/stops/106678"], ["https://data.delijn.be/stops/201166", "https://data.delijn.be/stops/202152"], ["https://data.delijn.be/stops/206815", "https://data.delijn.be/stops/207210"], ["https://data.delijn.be/stops/103059", "https://data.delijn.be/stops/104447"], ["https://data.delijn.be/stops/207376", "https://data.delijn.be/stops/207727"], ["https://data.delijn.be/stops/501129", "https://data.delijn.be/stops/506129"], ["https://data.delijn.be/stops/501770", "https://data.delijn.be/stops/502372"], ["https://data.delijn.be/stops/402726", "https://data.delijn.be/stops/410056"], ["https://data.delijn.be/stops/404335", "https://data.delijn.be/stops/404354"], ["https://data.delijn.be/stops/200893", "https://data.delijn.be/stops/202793"], ["https://data.delijn.be/stops/402231", "https://data.delijn.be/stops/402295"], ["https://data.delijn.be/stops/404150", "https://data.delijn.be/stops/404184"], ["https://data.delijn.be/stops/204524", "https://data.delijn.be/stops/205482"], ["https://data.delijn.be/stops/300576", "https://data.delijn.be/stops/300585"], ["https://data.delijn.be/stops/301192", "https://data.delijn.be/stops/301240"], ["https://data.delijn.be/stops/405030", "https://data.delijn.be/stops/405031"], ["https://data.delijn.be/stops/304882", "https://data.delijn.be/stops/308542"], ["https://data.delijn.be/stops/102089", "https://data.delijn.be/stops/106808"], ["https://data.delijn.be/stops/205999", "https://data.delijn.be/stops/207385"], ["https://data.delijn.be/stops/507319", "https://data.delijn.be/stops/507324"], ["https://data.delijn.be/stops/102730", "https://data.delijn.be/stops/305622"], ["https://data.delijn.be/stops/403884", "https://data.delijn.be/stops/403892"], ["https://data.delijn.be/stops/406881", "https://data.delijn.be/stops/409410"], ["https://data.delijn.be/stops/504706", "https://data.delijn.be/stops/509024"], ["https://data.delijn.be/stops/502467", "https://data.delijn.be/stops/507484"], ["https://data.delijn.be/stops/502225", "https://data.delijn.be/stops/505844"], ["https://data.delijn.be/stops/400069", "https://data.delijn.be/stops/400160"], ["https://data.delijn.be/stops/400429", "https://data.delijn.be/stops/407513"], ["https://data.delijn.be/stops/206873", "https://data.delijn.be/stops/207239"], ["https://data.delijn.be/stops/208023", "https://data.delijn.be/stops/209012"], ["https://data.delijn.be/stops/304788", "https://data.delijn.be/stops/304795"], ["https://data.delijn.be/stops/304216", "https://data.delijn.be/stops/307241"], ["https://data.delijn.be/stops/306561", "https://data.delijn.be/stops/308829"], ["https://data.delijn.be/stops/400708", "https://data.delijn.be/stops/404374"], ["https://data.delijn.be/stops/502150", "https://data.delijn.be/stops/507136"], ["https://data.delijn.be/stops/211073", "https://data.delijn.be/stops/219003"], ["https://data.delijn.be/stops/301029", "https://data.delijn.be/stops/301035"], ["https://data.delijn.be/stops/407712", "https://data.delijn.be/stops/409772"], ["https://data.delijn.be/stops/304954", "https://data.delijn.be/stops/308033"], ["https://data.delijn.be/stops/105877", "https://data.delijn.be/stops/105878"], ["https://data.delijn.be/stops/409681", "https://data.delijn.be/stops/409685"], ["https://data.delijn.be/stops/302060", "https://data.delijn.be/stops/303516"], ["https://data.delijn.be/stops/501295", "https://data.delijn.be/stops/501296"], ["https://data.delijn.be/stops/201928", "https://data.delijn.be/stops/202959"], ["https://data.delijn.be/stops/201105", "https://data.delijn.be/stops/203457"], ["https://data.delijn.be/stops/301318", "https://data.delijn.be/stops/301319"], ["https://data.delijn.be/stops/500008", "https://data.delijn.be/stops/505894"], ["https://data.delijn.be/stops/202698", "https://data.delijn.be/stops/202700"], ["https://data.delijn.be/stops/202746", "https://data.delijn.be/stops/207422"], ["https://data.delijn.be/stops/301531", "https://data.delijn.be/stops/308082"], ["https://data.delijn.be/stops/106094", "https://data.delijn.be/stops/109185"], ["https://data.delijn.be/stops/200889", "https://data.delijn.be/stops/202297"], ["https://data.delijn.be/stops/103025", "https://data.delijn.be/stops/103880"], ["https://data.delijn.be/stops/209588", "https://data.delijn.be/stops/209589"], ["https://data.delijn.be/stops/204066", "https://data.delijn.be/stops/205224"], ["https://data.delijn.be/stops/105198", "https://data.delijn.be/stops/108880"], ["https://data.delijn.be/stops/202062", "https://data.delijn.be/stops/211016"], ["https://data.delijn.be/stops/503118", "https://data.delijn.be/stops/503120"], ["https://data.delijn.be/stops/405364", "https://data.delijn.be/stops/405367"], ["https://data.delijn.be/stops/503800", "https://data.delijn.be/stops/508799"], ["https://data.delijn.be/stops/107593", "https://data.delijn.be/stops/107697"], ["https://data.delijn.be/stops/504348", "https://data.delijn.be/stops/509347"], ["https://data.delijn.be/stops/406986", "https://data.delijn.be/stops/406987"], ["https://data.delijn.be/stops/302511", "https://data.delijn.be/stops/302512"], ["https://data.delijn.be/stops/404309", "https://data.delijn.be/stops/404370"], ["https://data.delijn.be/stops/108027", "https://data.delijn.be/stops/108028"], ["https://data.delijn.be/stops/209948", "https://data.delijn.be/stops/211045"], ["https://data.delijn.be/stops/504332", "https://data.delijn.be/stops/504340"], ["https://data.delijn.be/stops/102614", "https://data.delijn.be/stops/102618"], ["https://data.delijn.be/stops/109657", "https://data.delijn.be/stops/406502"], ["https://data.delijn.be/stops/209447", "https://data.delijn.be/stops/209524"], ["https://data.delijn.be/stops/202988", "https://data.delijn.be/stops/203987"], ["https://data.delijn.be/stops/104220", "https://data.delijn.be/stops/105235"], ["https://data.delijn.be/stops/302126", "https://data.delijn.be/stops/307130"], ["https://data.delijn.be/stops/203710", "https://data.delijn.be/stops/211709"], ["https://data.delijn.be/stops/305948", "https://data.delijn.be/stops/308894"], ["https://data.delijn.be/stops/302425", "https://data.delijn.be/stops/302426"], ["https://data.delijn.be/stops/204140", "https://data.delijn.be/stops/205575"], ["https://data.delijn.be/stops/407150", "https://data.delijn.be/stops/409509"], ["https://data.delijn.be/stops/504253", "https://data.delijn.be/stops/508479"], ["https://data.delijn.be/stops/300992", "https://data.delijn.be/stops/300995"], ["https://data.delijn.be/stops/508817", "https://data.delijn.be/stops/508820"], ["https://data.delijn.be/stops/504730", "https://data.delijn.be/stops/509506"], ["https://data.delijn.be/stops/302183", "https://data.delijn.be/stops/308096"], ["https://data.delijn.be/stops/505112", "https://data.delijn.be/stops/505855"], ["https://data.delijn.be/stops/400513", "https://data.delijn.be/stops/401436"], ["https://data.delijn.be/stops/303492", "https://data.delijn.be/stops/303495"], ["https://data.delijn.be/stops/304526", "https://data.delijn.be/stops/304672"], ["https://data.delijn.be/stops/503730", "https://data.delijn.be/stops/503759"], ["https://data.delijn.be/stops/101525", "https://data.delijn.be/stops/103048"], ["https://data.delijn.be/stops/305508", "https://data.delijn.be/stops/305515"], ["https://data.delijn.be/stops/401036", "https://data.delijn.be/stops/402214"], ["https://data.delijn.be/stops/407331", "https://data.delijn.be/stops/407403"], ["https://data.delijn.be/stops/202077", "https://data.delijn.be/stops/208919"], ["https://data.delijn.be/stops/107343", "https://data.delijn.be/stops/108163"], ["https://data.delijn.be/stops/509504", "https://data.delijn.be/stops/509505"], ["https://data.delijn.be/stops/305292", "https://data.delijn.be/stops/305293"], ["https://data.delijn.be/stops/202003", "https://data.delijn.be/stops/203003"], ["https://data.delijn.be/stops/406642", "https://data.delijn.be/stops/407410"], ["https://data.delijn.be/stops/400700", "https://data.delijn.be/stops/400896"], ["https://data.delijn.be/stops/404095", "https://data.delijn.be/stops/409283"], ["https://data.delijn.be/stops/201163", "https://data.delijn.be/stops/203654"], ["https://data.delijn.be/stops/102875", "https://data.delijn.be/stops/108025"], ["https://data.delijn.be/stops/205296", "https://data.delijn.be/stops/205496"], ["https://data.delijn.be/stops/200428", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/404411", "https://data.delijn.be/stops/404414"], ["https://data.delijn.be/stops/502365", "https://data.delijn.be/stops/507679"], ["https://data.delijn.be/stops/203814", "https://data.delijn.be/stops/205075"], ["https://data.delijn.be/stops/205029", "https://data.delijn.be/stops/205034"], ["https://data.delijn.be/stops/105303", "https://data.delijn.be/stops/105306"], ["https://data.delijn.be/stops/106178", "https://data.delijn.be/stops/109372"], ["https://data.delijn.be/stops/300973", "https://data.delijn.be/stops/306001"], ["https://data.delijn.be/stops/208847", "https://data.delijn.be/stops/209847"], ["https://data.delijn.be/stops/406944", "https://data.delijn.be/stops/406975"], ["https://data.delijn.be/stops/206439", "https://data.delijn.be/stops/206442"], ["https://data.delijn.be/stops/400171", "https://data.delijn.be/stops/400937"], ["https://data.delijn.be/stops/408559", "https://data.delijn.be/stops/408691"], ["https://data.delijn.be/stops/301028", "https://data.delijn.be/stops/301029"], ["https://data.delijn.be/stops/503397", "https://data.delijn.be/stops/504293"], ["https://data.delijn.be/stops/200151", "https://data.delijn.be/stops/201152"], ["https://data.delijn.be/stops/302320", "https://data.delijn.be/stops/303471"], ["https://data.delijn.be/stops/102886", "https://data.delijn.be/stops/102985"], ["https://data.delijn.be/stops/204312", "https://data.delijn.be/stops/204351"], ["https://data.delijn.be/stops/410152", "https://data.delijn.be/stops/300932"], ["https://data.delijn.be/stops/304579", "https://data.delijn.be/stops/305576"], ["https://data.delijn.be/stops/101227", "https://data.delijn.be/stops/107810"], ["https://data.delijn.be/stops/107847", "https://data.delijn.be/stops/107848"], ["https://data.delijn.be/stops/302366", "https://data.delijn.be/stops/302367"], ["https://data.delijn.be/stops/206573", "https://data.delijn.be/stops/206590"], ["https://data.delijn.be/stops/200451", "https://data.delijn.be/stops/201246"], ["https://data.delijn.be/stops/300282", "https://data.delijn.be/stops/303819"], ["https://data.delijn.be/stops/204982", "https://data.delijn.be/stops/209776"], ["https://data.delijn.be/stops/202097", "https://data.delijn.be/stops/203096"], ["https://data.delijn.be/stops/503356", "https://data.delijn.be/stops/503414"], ["https://data.delijn.be/stops/108261", "https://data.delijn.be/stops/108262"], ["https://data.delijn.be/stops/501336", "https://data.delijn.be/stops/506315"], ["https://data.delijn.be/stops/201355", "https://data.delijn.be/stops/208292"], ["https://data.delijn.be/stops/305586", "https://data.delijn.be/stops/308816"], ["https://data.delijn.be/stops/300010", "https://data.delijn.be/stops/304288"], ["https://data.delijn.be/stops/404932", "https://data.delijn.be/stops/404941"], ["https://data.delijn.be/stops/405385", "https://data.delijn.be/stops/405391"], ["https://data.delijn.be/stops/206230", "https://data.delijn.be/stops/207233"], ["https://data.delijn.be/stops/504224", "https://data.delijn.be/stops/509619"], ["https://data.delijn.be/stops/204327", "https://data.delijn.be/stops/205327"], ["https://data.delijn.be/stops/402349", "https://data.delijn.be/stops/410073"], ["https://data.delijn.be/stops/106760", "https://data.delijn.be/stops/107516"], ["https://data.delijn.be/stops/103290", "https://data.delijn.be/stops/107490"], ["https://data.delijn.be/stops/402350", "https://data.delijn.be/stops/402463"], ["https://data.delijn.be/stops/503492", "https://data.delijn.be/stops/503567"], ["https://data.delijn.be/stops/206331", "https://data.delijn.be/stops/308799"], ["https://data.delijn.be/stops/304146", "https://data.delijn.be/stops/304171"], ["https://data.delijn.be/stops/308019", "https://data.delijn.be/stops/308020"], ["https://data.delijn.be/stops/300300", "https://data.delijn.be/stops/301014"], ["https://data.delijn.be/stops/106721", "https://data.delijn.be/stops/109635"], ["https://data.delijn.be/stops/106924", "https://data.delijn.be/stops/106925"], ["https://data.delijn.be/stops/403631", "https://data.delijn.be/stops/403640"], ["https://data.delijn.be/stops/408696", "https://data.delijn.be/stops/408701"], ["https://data.delijn.be/stops/501420", "https://data.delijn.be/stops/501424"], ["https://data.delijn.be/stops/300683", "https://data.delijn.be/stops/305965"], ["https://data.delijn.be/stops/202796", "https://data.delijn.be/stops/203313"], ["https://data.delijn.be/stops/408492", "https://data.delijn.be/stops/408980"], ["https://data.delijn.be/stops/108564", "https://data.delijn.be/stops/109094"], ["https://data.delijn.be/stops/203156", "https://data.delijn.be/stops/203157"], ["https://data.delijn.be/stops/201735", "https://data.delijn.be/stops/210128"], ["https://data.delijn.be/stops/210014", "https://data.delijn.be/stops/507298"], ["https://data.delijn.be/stops/304149", "https://data.delijn.be/stops/307761"], ["https://data.delijn.be/stops/204784", "https://data.delijn.be/stops/204785"], ["https://data.delijn.be/stops/104756", "https://data.delijn.be/stops/104757"], ["https://data.delijn.be/stops/201591", "https://data.delijn.be/stops/201592"], ["https://data.delijn.be/stops/300436", "https://data.delijn.be/stops/300440"], ["https://data.delijn.be/stops/303529", "https://data.delijn.be/stops/303570"], ["https://data.delijn.be/stops/208781", "https://data.delijn.be/stops/209350"], ["https://data.delijn.be/stops/505109", "https://data.delijn.be/stops/505110"], ["https://data.delijn.be/stops/102917", "https://data.delijn.be/stops/103275"], ["https://data.delijn.be/stops/302548", "https://data.delijn.be/stops/302560"], ["https://data.delijn.be/stops/301673", "https://data.delijn.be/stops/301674"], ["https://data.delijn.be/stops/507256", "https://data.delijn.be/stops/507261"], ["https://data.delijn.be/stops/109301", "https://data.delijn.be/stops/109302"], ["https://data.delijn.be/stops/200233", "https://data.delijn.be/stops/201232"], ["https://data.delijn.be/stops/308100", "https://data.delijn.be/stops/308101"], ["https://data.delijn.be/stops/300297", "https://data.delijn.be/stops/301315"], ["https://data.delijn.be/stops/200450", "https://data.delijn.be/stops/209291"], ["https://data.delijn.be/stops/503343", "https://data.delijn.be/stops/504863"], ["https://data.delijn.be/stops/302375", "https://data.delijn.be/stops/304067"], ["https://data.delijn.be/stops/501010", "https://data.delijn.be/stops/507076"], ["https://data.delijn.be/stops/202440", "https://data.delijn.be/stops/202441"], ["https://data.delijn.be/stops/102624", "https://data.delijn.be/stops/108216"], ["https://data.delijn.be/stops/304174", "https://data.delijn.be/stops/304684"], ["https://data.delijn.be/stops/502015", "https://data.delijn.be/stops/507015"], ["https://data.delijn.be/stops/406996", "https://data.delijn.be/stops/407131"], ["https://data.delijn.be/stops/402751", "https://data.delijn.be/stops/402777"], ["https://data.delijn.be/stops/501395", "https://data.delijn.be/stops/501397"], ["https://data.delijn.be/stops/200728", "https://data.delijn.be/stops/200733"], ["https://data.delijn.be/stops/300750", "https://data.delijn.be/stops/300785"], ["https://data.delijn.be/stops/502120", "https://data.delijn.be/stops/507120"], ["https://data.delijn.be/stops/301882", "https://data.delijn.be/stops/302465"], ["https://data.delijn.be/stops/103923", "https://data.delijn.be/stops/106902"], ["https://data.delijn.be/stops/503234", "https://data.delijn.be/stops/503243"], ["https://data.delijn.be/stops/206545", "https://data.delijn.be/stops/207546"], ["https://data.delijn.be/stops/504048", "https://data.delijn.be/stops/504159"], ["https://data.delijn.be/stops/501244", "https://data.delijn.be/stops/506370"], ["https://data.delijn.be/stops/501037", "https://data.delijn.be/stops/506033"], ["https://data.delijn.be/stops/402601", "https://data.delijn.be/stops/404098"], ["https://data.delijn.be/stops/401805", "https://data.delijn.be/stops/401817"], ["https://data.delijn.be/stops/404911", "https://data.delijn.be/stops/404985"], ["https://data.delijn.be/stops/304562", "https://data.delijn.be/stops/304639"], ["https://data.delijn.be/stops/204743", "https://data.delijn.be/stops/205743"], ["https://data.delijn.be/stops/501461", "https://data.delijn.be/stops/506460"], ["https://data.delijn.be/stops/301566", "https://data.delijn.be/stops/301567"], ["https://data.delijn.be/stops/501181", "https://data.delijn.be/stops/506181"], ["https://data.delijn.be/stops/308213", "https://data.delijn.be/stops/308236"], ["https://data.delijn.be/stops/202022", "https://data.delijn.be/stops/203022"], ["https://data.delijn.be/stops/509135", "https://data.delijn.be/stops/509654"], ["https://data.delijn.be/stops/302084", "https://data.delijn.be/stops/302250"], ["https://data.delijn.be/stops/200859", "https://data.delijn.be/stops/505683"], ["https://data.delijn.be/stops/300507", "https://data.delijn.be/stops/302918"], ["https://data.delijn.be/stops/204712", "https://data.delijn.be/stops/204717"], ["https://data.delijn.be/stops/505053", "https://data.delijn.be/stops/507188"], ["https://data.delijn.be/stops/205988", "https://data.delijn.be/stops/208341"], ["https://data.delijn.be/stops/202162", "https://data.delijn.be/stops/203635"], ["https://data.delijn.be/stops/202460", "https://data.delijn.be/stops/202461"], ["https://data.delijn.be/stops/106524", "https://data.delijn.be/stops/106525"], ["https://data.delijn.be/stops/206584", "https://data.delijn.be/stops/207584"], ["https://data.delijn.be/stops/505173", "https://data.delijn.be/stops/505310"], ["https://data.delijn.be/stops/400729", "https://data.delijn.be/stops/409398"], ["https://data.delijn.be/stops/106023", "https://data.delijn.be/stops/109624"], ["https://data.delijn.be/stops/308550", "https://data.delijn.be/stops/308552"], ["https://data.delijn.be/stops/305314", "https://data.delijn.be/stops/305315"], ["https://data.delijn.be/stops/503104", "https://data.delijn.be/stops/504364"], ["https://data.delijn.be/stops/300270", "https://data.delijn.be/stops/302146"], ["https://data.delijn.be/stops/104412", "https://data.delijn.be/stops/104417"], ["https://data.delijn.be/stops/403904", "https://data.delijn.be/stops/404037"], ["https://data.delijn.be/stops/205411", "https://data.delijn.be/stops/205772"], ["https://data.delijn.be/stops/307420", "https://data.delijn.be/stops/307954"], ["https://data.delijn.be/stops/206472", "https://data.delijn.be/stops/207473"], ["https://data.delijn.be/stops/407123", "https://data.delijn.be/stops/407339"], ["https://data.delijn.be/stops/203266", "https://data.delijn.be/stops/210076"], ["https://data.delijn.be/stops/304862", "https://data.delijn.be/stops/304863"], ["https://data.delijn.be/stops/304998", "https://data.delijn.be/stops/305008"], ["https://data.delijn.be/stops/301009", "https://data.delijn.be/stops/301018"], ["https://data.delijn.be/stops/405255", "https://data.delijn.be/stops/405291"], ["https://data.delijn.be/stops/401730", "https://data.delijn.be/stops/401872"], ["https://data.delijn.be/stops/102166", "https://data.delijn.be/stops/104491"], ["https://data.delijn.be/stops/407813", "https://data.delijn.be/stops/407902"], ["https://data.delijn.be/stops/404339", "https://data.delijn.be/stops/404345"], ["https://data.delijn.be/stops/102350", "https://data.delijn.be/stops/102872"], ["https://data.delijn.be/stops/408580", "https://data.delijn.be/stops/408776"], ["https://data.delijn.be/stops/301704", "https://data.delijn.be/stops/305227"], ["https://data.delijn.be/stops/204306", "https://data.delijn.be/stops/205305"], ["https://data.delijn.be/stops/505729", "https://data.delijn.be/stops/506186"], ["https://data.delijn.be/stops/505995", "https://data.delijn.be/stops/509585"], ["https://data.delijn.be/stops/400030", "https://data.delijn.be/stops/400429"], ["https://data.delijn.be/stops/502589", "https://data.delijn.be/stops/507443"], ["https://data.delijn.be/stops/302793", "https://data.delijn.be/stops/302805"], ["https://data.delijn.be/stops/201776", "https://data.delijn.be/stops/208854"], ["https://data.delijn.be/stops/405565", "https://data.delijn.be/stops/405567"], ["https://data.delijn.be/stops/104637", "https://data.delijn.be/stops/108032"], ["https://data.delijn.be/stops/400548", "https://data.delijn.be/stops/406988"], ["https://data.delijn.be/stops/104139", "https://data.delijn.be/stops/109576"], ["https://data.delijn.be/stops/401083", "https://data.delijn.be/stops/402899"], ["https://data.delijn.be/stops/303704", "https://data.delijn.be/stops/307258"], ["https://data.delijn.be/stops/208313", "https://data.delijn.be/stops/208772"], ["https://data.delijn.be/stops/102260", "https://data.delijn.be/stops/107460"], ["https://data.delijn.be/stops/206947", "https://data.delijn.be/stops/208542"], ["https://data.delijn.be/stops/102345", "https://data.delijn.be/stops/102985"], ["https://data.delijn.be/stops/201608", "https://data.delijn.be/stops/202780"], ["https://data.delijn.be/stops/505721", "https://data.delijn.be/stops/507235"], ["https://data.delijn.be/stops/407272", "https://data.delijn.be/stops/407303"], ["https://data.delijn.be/stops/407515", "https://data.delijn.be/stops/410038"], ["https://data.delijn.be/stops/502389", "https://data.delijn.be/stops/502399"], ["https://data.delijn.be/stops/102896", "https://data.delijn.be/stops/109673"], ["https://data.delijn.be/stops/408553", "https://data.delijn.be/stops/409980"], ["https://data.delijn.be/stops/104553", "https://data.delijn.be/stops/104557"], ["https://data.delijn.be/stops/300698", "https://data.delijn.be/stops/306938"], ["https://data.delijn.be/stops/201778", "https://data.delijn.be/stops/201780"], ["https://data.delijn.be/stops/207956", "https://data.delijn.be/stops/308565"], ["https://data.delijn.be/stops/401517", "https://data.delijn.be/stops/401594"], ["https://data.delijn.be/stops/206894", "https://data.delijn.be/stops/207884"], ["https://data.delijn.be/stops/303299", "https://data.delijn.be/stops/308118"], ["https://data.delijn.be/stops/505254", "https://data.delijn.be/stops/505942"], ["https://data.delijn.be/stops/200416", "https://data.delijn.be/stops/201417"], ["https://data.delijn.be/stops/103028", "https://data.delijn.be/stops/104563"], ["https://data.delijn.be/stops/204478", "https://data.delijn.be/stops/205478"], ["https://data.delijn.be/stops/105866", "https://data.delijn.be/stops/105872"], ["https://data.delijn.be/stops/205980", "https://data.delijn.be/stops/206821"], ["https://data.delijn.be/stops/101292", "https://data.delijn.be/stops/105364"], ["https://data.delijn.be/stops/305646", "https://data.delijn.be/stops/305666"], ["https://data.delijn.be/stops/301514", "https://data.delijn.be/stops/308751"], ["https://data.delijn.be/stops/403003", "https://data.delijn.be/stops/405551"], ["https://data.delijn.be/stops/103681", "https://data.delijn.be/stops/107789"], ["https://data.delijn.be/stops/305986", "https://data.delijn.be/stops/305988"], ["https://data.delijn.be/stops/204175", "https://data.delijn.be/stops/205213"], ["https://data.delijn.be/stops/301644", "https://data.delijn.be/stops/301647"], ["https://data.delijn.be/stops/405640", "https://data.delijn.be/stops/405641"], ["https://data.delijn.be/stops/300374", "https://data.delijn.be/stops/300380"], ["https://data.delijn.be/stops/200720", "https://data.delijn.be/stops/203577"], ["https://data.delijn.be/stops/204123", "https://data.delijn.be/stops/205146"], ["https://data.delijn.be/stops/202533", "https://data.delijn.be/stops/203966"], ["https://data.delijn.be/stops/210093", "https://data.delijn.be/stops/211073"], ["https://data.delijn.be/stops/304478", "https://data.delijn.be/stops/304479"], ["https://data.delijn.be/stops/106467", "https://data.delijn.be/stops/107043"], ["https://data.delijn.be/stops/400354", "https://data.delijn.be/stops/400355"], ["https://data.delijn.be/stops/104815", "https://data.delijn.be/stops/105555"], ["https://data.delijn.be/stops/402047", "https://data.delijn.be/stops/402348"], ["https://data.delijn.be/stops/504296", "https://data.delijn.be/stops/504319"], ["https://data.delijn.be/stops/400932", "https://data.delijn.be/stops/402835"], ["https://data.delijn.be/stops/505551", "https://data.delijn.be/stops/505552"], ["https://data.delijn.be/stops/506412", "https://data.delijn.be/stops/506624"], ["https://data.delijn.be/stops/200918", "https://data.delijn.be/stops/202137"], ["https://data.delijn.be/stops/104031", "https://data.delijn.be/stops/104033"], ["https://data.delijn.be/stops/206093", "https://data.delijn.be/stops/206147"], ["https://data.delijn.be/stops/505781", "https://data.delijn.be/stops/506460"], ["https://data.delijn.be/stops/208642", "https://data.delijn.be/stops/209642"], ["https://data.delijn.be/stops/505826", "https://data.delijn.be/stops/505900"], ["https://data.delijn.be/stops/107221", "https://data.delijn.be/stops/107223"], ["https://data.delijn.be/stops/107584", "https://data.delijn.be/stops/107586"], ["https://data.delijn.be/stops/105229", "https://data.delijn.be/stops/107995"], ["https://data.delijn.be/stops/307637", "https://data.delijn.be/stops/307639"], ["https://data.delijn.be/stops/200926", "https://data.delijn.be/stops/202043"], ["https://data.delijn.be/stops/200489", "https://data.delijn.be/stops/201489"], ["https://data.delijn.be/stops/300403", "https://data.delijn.be/stops/308638"], ["https://data.delijn.be/stops/202716", "https://data.delijn.be/stops/203715"], ["https://data.delijn.be/stops/504395", "https://data.delijn.be/stops/509395"], ["https://data.delijn.be/stops/501002", "https://data.delijn.be/stops/506222"], ["https://data.delijn.be/stops/400108", "https://data.delijn.be/stops/400109"], ["https://data.delijn.be/stops/503855", "https://data.delijn.be/stops/508859"], ["https://data.delijn.be/stops/200394", "https://data.delijn.be/stops/201394"], ["https://data.delijn.be/stops/209115", "https://data.delijn.be/stops/218007"], ["https://data.delijn.be/stops/106264", "https://data.delijn.be/stops/106266"], ["https://data.delijn.be/stops/101946", "https://data.delijn.be/stops/102661"], ["https://data.delijn.be/stops/101860", "https://data.delijn.be/stops/109050"], ["https://data.delijn.be/stops/502201", "https://data.delijn.be/stops/507297"], ["https://data.delijn.be/stops/501538", "https://data.delijn.be/stops/506198"], ["https://data.delijn.be/stops/406541", "https://data.delijn.be/stops/407223"], ["https://data.delijn.be/stops/307019", "https://data.delijn.be/stops/307072"], ["https://data.delijn.be/stops/502339", "https://data.delijn.be/stops/507274"], ["https://data.delijn.be/stops/204180", "https://data.delijn.be/stops/205218"], ["https://data.delijn.be/stops/507574", "https://data.delijn.be/stops/507575"], ["https://data.delijn.be/stops/207680", "https://data.delijn.be/stops/209154"], ["https://data.delijn.be/stops/202044", "https://data.delijn.be/stops/202248"], ["https://data.delijn.be/stops/406918", "https://data.delijn.be/stops/409476"], ["https://data.delijn.be/stops/402228", "https://data.delijn.be/stops/402332"], ["https://data.delijn.be/stops/408238", "https://data.delijn.be/stops/408248"], ["https://data.delijn.be/stops/504177", "https://data.delijn.be/stops/509177"], ["https://data.delijn.be/stops/109162", "https://data.delijn.be/stops/109164"], ["https://data.delijn.be/stops/109187", "https://data.delijn.be/stops/109188"], ["https://data.delijn.be/stops/208336", "https://data.delijn.be/stops/209336"], ["https://data.delijn.be/stops/200314", "https://data.delijn.be/stops/210314"], ["https://data.delijn.be/stops/206055", "https://data.delijn.be/stops/206056"], ["https://data.delijn.be/stops/103487", "https://data.delijn.be/stops/109161"], ["https://data.delijn.be/stops/408181", "https://data.delijn.be/stops/408189"], ["https://data.delijn.be/stops/403212", "https://data.delijn.be/stops/403476"], ["https://data.delijn.be/stops/503359", "https://data.delijn.be/stops/508359"], ["https://data.delijn.be/stops/101777", "https://data.delijn.be/stops/107591"], ["https://data.delijn.be/stops/304143", "https://data.delijn.be/stops/304171"], ["https://data.delijn.be/stops/301198", "https://data.delijn.be/stops/301255"], ["https://data.delijn.be/stops/302950", "https://data.delijn.be/stops/302999"], ["https://data.delijn.be/stops/200910", "https://data.delijn.be/stops/200942"], ["https://data.delijn.be/stops/304808", "https://data.delijn.be/stops/307886"], ["https://data.delijn.be/stops/302020", "https://data.delijn.be/stops/302021"], ["https://data.delijn.be/stops/200605", "https://data.delijn.be/stops/200647"], ["https://data.delijn.be/stops/408919", "https://data.delijn.be/stops/408921"], ["https://data.delijn.be/stops/504397", "https://data.delijn.be/stops/509396"], ["https://data.delijn.be/stops/202328", "https://data.delijn.be/stops/210088"], ["https://data.delijn.be/stops/206843", "https://data.delijn.be/stops/207843"], ["https://data.delijn.be/stops/504725", "https://data.delijn.be/stops/509012"], ["https://data.delijn.be/stops/300062", "https://data.delijn.be/stops/306066"], ["https://data.delijn.be/stops/202266", "https://data.delijn.be/stops/203266"], ["https://data.delijn.be/stops/408719", "https://data.delijn.be/stops/408728"], ["https://data.delijn.be/stops/508996", "https://data.delijn.be/stops/509592"], ["https://data.delijn.be/stops/505256", "https://data.delijn.be/stops/505809"], ["https://data.delijn.be/stops/105803", "https://data.delijn.be/stops/305788"], ["https://data.delijn.be/stops/202639", "https://data.delijn.be/stops/203639"], ["https://data.delijn.be/stops/206979", "https://data.delijn.be/stops/207979"], ["https://data.delijn.be/stops/504222", "https://data.delijn.be/stops/504604"], ["https://data.delijn.be/stops/206742", "https://data.delijn.be/stops/206983"], ["https://data.delijn.be/stops/503516", "https://data.delijn.be/stops/505949"], ["https://data.delijn.be/stops/109259", "https://data.delijn.be/stops/109260"], ["https://data.delijn.be/stops/503144", "https://data.delijn.be/stops/503988"], ["https://data.delijn.be/stops/404478", "https://data.delijn.be/stops/406763"], ["https://data.delijn.be/stops/106736", "https://data.delijn.be/stops/107196"], ["https://data.delijn.be/stops/500924", "https://data.delijn.be/stops/503179"], ["https://data.delijn.be/stops/105724", "https://data.delijn.be/stops/105727"], ["https://data.delijn.be/stops/109263", "https://data.delijn.be/stops/109615"], ["https://data.delijn.be/stops/503312", "https://data.delijn.be/stops/508311"], ["https://data.delijn.be/stops/406718", "https://data.delijn.be/stops/408284"], ["https://data.delijn.be/stops/302779", "https://data.delijn.be/stops/302780"], ["https://data.delijn.be/stops/302652", "https://data.delijn.be/stops/302653"], ["https://data.delijn.be/stops/102584", "https://data.delijn.be/stops/109108"], ["https://data.delijn.be/stops/204694", "https://data.delijn.be/stops/205702"], ["https://data.delijn.be/stops/200103", "https://data.delijn.be/stops/200985"], ["https://data.delijn.be/stops/405736", "https://data.delijn.be/stops/405739"], ["https://data.delijn.be/stops/106136", "https://data.delijn.be/stops/106138"], ["https://data.delijn.be/stops/405368", "https://data.delijn.be/stops/405369"], ["https://data.delijn.be/stops/203450", "https://data.delijn.be/stops/209450"], ["https://data.delijn.be/stops/307336", "https://data.delijn.be/stops/307337"], ["https://data.delijn.be/stops/400092", "https://data.delijn.be/stops/409145"], ["https://data.delijn.be/stops/505418", "https://data.delijn.be/stops/507344"], ["https://data.delijn.be/stops/105140", "https://data.delijn.be/stops/105755"], ["https://data.delijn.be/stops/502564", "https://data.delijn.be/stops/505700"], ["https://data.delijn.be/stops/106104", "https://data.delijn.be/stops/106122"], ["https://data.delijn.be/stops/403929", "https://data.delijn.be/stops/405943"], ["https://data.delijn.be/stops/207537", "https://data.delijn.be/stops/209689"], ["https://data.delijn.be/stops/209573", "https://data.delijn.be/stops/307590"], ["https://data.delijn.be/stops/503074", "https://data.delijn.be/stops/508069"], ["https://data.delijn.be/stops/200897", "https://data.delijn.be/stops/203052"], ["https://data.delijn.be/stops/208803", "https://data.delijn.be/stops/208806"], ["https://data.delijn.be/stops/104093", "https://data.delijn.be/stops/107712"], ["https://data.delijn.be/stops/302584", "https://data.delijn.be/stops/302600"], ["https://data.delijn.be/stops/502004", "https://data.delijn.be/stops/505586"], ["https://data.delijn.be/stops/300128", "https://data.delijn.be/stops/300147"], ["https://data.delijn.be/stops/208008", "https://data.delijn.be/stops/209007"], ["https://data.delijn.be/stops/103249", "https://data.delijn.be/stops/108120"], ["https://data.delijn.be/stops/204056", "https://data.delijn.be/stops/204703"], ["https://data.delijn.be/stops/504653", "https://data.delijn.be/stops/504772"], ["https://data.delijn.be/stops/301324", "https://data.delijn.be/stops/301325"], ["https://data.delijn.be/stops/408313", "https://data.delijn.be/stops/409825"], ["https://data.delijn.be/stops/103334", "https://data.delijn.be/stops/106469"], ["https://data.delijn.be/stops/204516", "https://data.delijn.be/stops/205044"], ["https://data.delijn.be/stops/307033", "https://data.delijn.be/stops/307034"], ["https://data.delijn.be/stops/208203", "https://data.delijn.be/stops/208204"], ["https://data.delijn.be/stops/501662", "https://data.delijn.be/stops/501674"], ["https://data.delijn.be/stops/301107", "https://data.delijn.be/stops/301108"], ["https://data.delijn.be/stops/406952", "https://data.delijn.be/stops/409483"], ["https://data.delijn.be/stops/109786", "https://data.delijn.be/stops/109787"], ["https://data.delijn.be/stops/200490", "https://data.delijn.be/stops/203452"], ["https://data.delijn.be/stops/108323", "https://data.delijn.be/stops/109304"], ["https://data.delijn.be/stops/502020", "https://data.delijn.be/stops/507020"], ["https://data.delijn.be/stops/405078", "https://data.delijn.be/stops/405079"], ["https://data.delijn.be/stops/202391", "https://data.delijn.be/stops/203391"], ["https://data.delijn.be/stops/403399", "https://data.delijn.be/stops/404978"], ["https://data.delijn.be/stops/300835", "https://data.delijn.be/stops/302286"], ["https://data.delijn.be/stops/500022", "https://data.delijn.be/stops/506402"], ["https://data.delijn.be/stops/308264", "https://data.delijn.be/stops/308265"], ["https://data.delijn.be/stops/105684", "https://data.delijn.be/stops/105687"], ["https://data.delijn.be/stops/206196", "https://data.delijn.be/stops/207856"], ["https://data.delijn.be/stops/303629", "https://data.delijn.be/stops/306002"], ["https://data.delijn.be/stops/205116", "https://data.delijn.be/stops/205117"], ["https://data.delijn.be/stops/502106", "https://data.delijn.be/stops/502142"], ["https://data.delijn.be/stops/206945", "https://data.delijn.be/stops/208552"], ["https://data.delijn.be/stops/300208", "https://data.delijn.be/stops/300269"], ["https://data.delijn.be/stops/507485", "https://data.delijn.be/stops/509700"], ["https://data.delijn.be/stops/301358", "https://data.delijn.be/stops/308952"], ["https://data.delijn.be/stops/208085", "https://data.delijn.be/stops/208535"], ["https://data.delijn.be/stops/406252", "https://data.delijn.be/stops/406255"], ["https://data.delijn.be/stops/503727", "https://data.delijn.be/stops/508715"], ["https://data.delijn.be/stops/304554", "https://data.delijn.be/stops/308848"], ["https://data.delijn.be/stops/205738", "https://data.delijn.be/stops/205757"], ["https://data.delijn.be/stops/105547", "https://data.delijn.be/stops/105548"], ["https://data.delijn.be/stops/207330", "https://data.delijn.be/stops/308799"], ["https://data.delijn.be/stops/401342", "https://data.delijn.be/stops/401460"], ["https://data.delijn.be/stops/206839", "https://data.delijn.be/stops/207588"], ["https://data.delijn.be/stops/201713", "https://data.delijn.be/stops/202444"], ["https://data.delijn.be/stops/101208", "https://data.delijn.be/stops/109652"], ["https://data.delijn.be/stops/403322", "https://data.delijn.be/stops/403327"], ["https://data.delijn.be/stops/502473", "https://data.delijn.be/stops/505665"], ["https://data.delijn.be/stops/209119", "https://data.delijn.be/stops/209236"], ["https://data.delijn.be/stops/202098", "https://data.delijn.be/stops/202099"], ["https://data.delijn.be/stops/104818", "https://data.delijn.be/stops/109094"], ["https://data.delijn.be/stops/200534", "https://data.delijn.be/stops/211528"], ["https://data.delijn.be/stops/502408", "https://data.delijn.be/stops/507400"], ["https://data.delijn.be/stops/502690", "https://data.delijn.be/stops/507471"], ["https://data.delijn.be/stops/200159", "https://data.delijn.be/stops/205922"], ["https://data.delijn.be/stops/300531", "https://data.delijn.be/stops/307845"], ["https://data.delijn.be/stops/402882", "https://data.delijn.be/stops/402884"], ["https://data.delijn.be/stops/102637", "https://data.delijn.be/stops/107858"], ["https://data.delijn.be/stops/503422", "https://data.delijn.be/stops/508426"], ["https://data.delijn.be/stops/107565", "https://data.delijn.be/stops/108205"], ["https://data.delijn.be/stops/208409", "https://data.delijn.be/stops/209408"], ["https://data.delijn.be/stops/104804", "https://data.delijn.be/stops/108556"], ["https://data.delijn.be/stops/406722", "https://data.delijn.be/stops/408649"], ["https://data.delijn.be/stops/204425", "https://data.delijn.be/stops/205425"], ["https://data.delijn.be/stops/302235", "https://data.delijn.be/stops/302249"], ["https://data.delijn.be/stops/200819", "https://data.delijn.be/stops/200846"], ["https://data.delijn.be/stops/406151", "https://data.delijn.be/stops/406155"], ["https://data.delijn.be/stops/302009", "https://data.delijn.be/stops/304631"], ["https://data.delijn.be/stops/200716", "https://data.delijn.be/stops/201716"], ["https://data.delijn.be/stops/105163", "https://data.delijn.be/stops/107428"], ["https://data.delijn.be/stops/509605", "https://data.delijn.be/stops/509607"], ["https://data.delijn.be/stops/303017", "https://data.delijn.be/stops/303018"], ["https://data.delijn.be/stops/401207", "https://data.delijn.be/stops/401346"], ["https://data.delijn.be/stops/506076", "https://data.delijn.be/stops/506777"], ["https://data.delijn.be/stops/507215", "https://data.delijn.be/stops/507219"], ["https://data.delijn.be/stops/204086", "https://data.delijn.be/stops/205086"], ["https://data.delijn.be/stops/101617", "https://data.delijn.be/stops/106574"], ["https://data.delijn.be/stops/504498", "https://data.delijn.be/stops/509498"], ["https://data.delijn.be/stops/303758", "https://data.delijn.be/stops/303785"], ["https://data.delijn.be/stops/407396", "https://data.delijn.be/stops/407400"], ["https://data.delijn.be/stops/501206", "https://data.delijn.be/stops/506213"], ["https://data.delijn.be/stops/204989", "https://data.delijn.be/stops/209568"], ["https://data.delijn.be/stops/304493", "https://data.delijn.be/stops/304502"], ["https://data.delijn.be/stops/301952", "https://data.delijn.be/stops/307894"], ["https://data.delijn.be/stops/301189", "https://data.delijn.be/stops/301198"], ["https://data.delijn.be/stops/402090", "https://data.delijn.be/stops/402268"], ["https://data.delijn.be/stops/106618", "https://data.delijn.be/stops/106620"], ["https://data.delijn.be/stops/200714", "https://data.delijn.be/stops/203123"], ["https://data.delijn.be/stops/208034", "https://data.delijn.be/stops/209051"], ["https://data.delijn.be/stops/403215", "https://data.delijn.be/stops/403385"], ["https://data.delijn.be/stops/102684", "https://data.delijn.be/stops/108166"], ["https://data.delijn.be/stops/202848", "https://data.delijn.be/stops/202933"], ["https://data.delijn.be/stops/500019", "https://data.delijn.be/stops/502046"], ["https://data.delijn.be/stops/305675", "https://data.delijn.be/stops/305677"], ["https://data.delijn.be/stops/301549", "https://data.delijn.be/stops/301558"], ["https://data.delijn.be/stops/300689", "https://data.delijn.be/stops/300735"], ["https://data.delijn.be/stops/202407", "https://data.delijn.be/stops/211032"], ["https://data.delijn.be/stops/302783", "https://data.delijn.be/stops/307045"], ["https://data.delijn.be/stops/303016", "https://data.delijn.be/stops/303066"], ["https://data.delijn.be/stops/203433", "https://data.delijn.be/stops/203435"], ["https://data.delijn.be/stops/403433", "https://data.delijn.be/stops/403434"], ["https://data.delijn.be/stops/206263", "https://data.delijn.be/stops/207264"], ["https://data.delijn.be/stops/502124", "https://data.delijn.be/stops/502430"], ["https://data.delijn.be/stops/104687", "https://data.delijn.be/stops/107366"], ["https://data.delijn.be/stops/501019", "https://data.delijn.be/stops/501715"], ["https://data.delijn.be/stops/301098", "https://data.delijn.be/stops/307199"], ["https://data.delijn.be/stops/402357", "https://data.delijn.be/stops/410149"], ["https://data.delijn.be/stops/505160", "https://data.delijn.be/stops/508836"], ["https://data.delijn.be/stops/105292", "https://data.delijn.be/stops/105294"], ["https://data.delijn.be/stops/400201", "https://data.delijn.be/stops/400208"], ["https://data.delijn.be/stops/305833", "https://data.delijn.be/stops/305835"], ["https://data.delijn.be/stops/306620", "https://data.delijn.be/stops/306760"], ["https://data.delijn.be/stops/202280", "https://data.delijn.be/stops/203281"], ["https://data.delijn.be/stops/106628", "https://data.delijn.be/stops/106630"], ["https://data.delijn.be/stops/404554", "https://data.delijn.be/stops/404555"], ["https://data.delijn.be/stops/301017", "https://data.delijn.be/stops/301018"], ["https://data.delijn.be/stops/206749", "https://data.delijn.be/stops/207734"], ["https://data.delijn.be/stops/304007", "https://data.delijn.be/stops/304048"], ["https://data.delijn.be/stops/101878", "https://data.delijn.be/stops/106076"], ["https://data.delijn.be/stops/302949", "https://data.delijn.be/stops/302950"], ["https://data.delijn.be/stops/409273", "https://data.delijn.be/stops/409291"], ["https://data.delijn.be/stops/200091", "https://data.delijn.be/stops/202896"], ["https://data.delijn.be/stops/206675", "https://data.delijn.be/stops/209424"], ["https://data.delijn.be/stops/405789", "https://data.delijn.be/stops/409692"], ["https://data.delijn.be/stops/202986", "https://data.delijn.be/stops/202988"], ["https://data.delijn.be/stops/300423", "https://data.delijn.be/stops/300424"], ["https://data.delijn.be/stops/204083", "https://data.delijn.be/stops/205202"], ["https://data.delijn.be/stops/206780", "https://data.delijn.be/stops/208564"], ["https://data.delijn.be/stops/504003", "https://data.delijn.be/stops/509316"], ["https://data.delijn.be/stops/202695", "https://data.delijn.be/stops/203677"], ["https://data.delijn.be/stops/401080", "https://data.delijn.be/stops/401085"], ["https://data.delijn.be/stops/201777", "https://data.delijn.be/stops/218011"], ["https://data.delijn.be/stops/504614", "https://data.delijn.be/stops/509614"], ["https://data.delijn.be/stops/300496", "https://data.delijn.be/stops/300498"], ["https://data.delijn.be/stops/103558", "https://data.delijn.be/stops/109405"], ["https://data.delijn.be/stops/204052", "https://data.delijn.be/stops/205053"], ["https://data.delijn.be/stops/103964", "https://data.delijn.be/stops/104899"], ["https://data.delijn.be/stops/408204", "https://data.delijn.be/stops/408206"], ["https://data.delijn.be/stops/201708", "https://data.delijn.be/stops/201710"], ["https://data.delijn.be/stops/307429", "https://data.delijn.be/stops/307431"], ["https://data.delijn.be/stops/400626", "https://data.delijn.be/stops/408229"], ["https://data.delijn.be/stops/503552", "https://data.delijn.be/stops/508552"], ["https://data.delijn.be/stops/203588", "https://data.delijn.be/stops/205243"], ["https://data.delijn.be/stops/402551", "https://data.delijn.be/stops/408447"], ["https://data.delijn.be/stops/300228", "https://data.delijn.be/stops/300229"], ["https://data.delijn.be/stops/408337", "https://data.delijn.be/stops/408344"], ["https://data.delijn.be/stops/402377", "https://data.delijn.be/stops/405569"], ["https://data.delijn.be/stops/501480", "https://data.delijn.be/stops/506299"], ["https://data.delijn.be/stops/303047", "https://data.delijn.be/stops/305505"], ["https://data.delijn.be/stops/402503", "https://data.delijn.be/stops/402529"], ["https://data.delijn.be/stops/101010", "https://data.delijn.be/stops/102869"], ["https://data.delijn.be/stops/300234", "https://data.delijn.be/stops/300235"], ["https://data.delijn.be/stops/400568", "https://data.delijn.be/stops/403172"], ["https://data.delijn.be/stops/307148", "https://data.delijn.be/stops/307473"], ["https://data.delijn.be/stops/301387", "https://data.delijn.be/stops/301390"], ["https://data.delijn.be/stops/101205", "https://data.delijn.be/stops/103615"], ["https://data.delijn.be/stops/202494", "https://data.delijn.be/stops/203117"], ["https://data.delijn.be/stops/101969", "https://data.delijn.be/stops/109301"], ["https://data.delijn.be/stops/206474", "https://data.delijn.be/stops/207474"], ["https://data.delijn.be/stops/502638", "https://data.delijn.be/stops/505701"], ["https://data.delijn.be/stops/504209", "https://data.delijn.be/stops/509073"], ["https://data.delijn.be/stops/501678", "https://data.delijn.be/stops/506163"], ["https://data.delijn.be/stops/503238", "https://data.delijn.be/stops/509762"], ["https://data.delijn.be/stops/208106", "https://data.delijn.be/stops/209106"], ["https://data.delijn.be/stops/505993", "https://data.delijn.be/stops/508826"], ["https://data.delijn.be/stops/301213", "https://data.delijn.be/stops/306715"], ["https://data.delijn.be/stops/201841", "https://data.delijn.be/stops/505797"], ["https://data.delijn.be/stops/201241", "https://data.delijn.be/stops/201592"], ["https://data.delijn.be/stops/305000", "https://data.delijn.be/stops/305001"], ["https://data.delijn.be/stops/200510", "https://data.delijn.be/stops/211510"], ["https://data.delijn.be/stops/503115", "https://data.delijn.be/stops/508115"], ["https://data.delijn.be/stops/206452", "https://data.delijn.be/stops/206455"], ["https://data.delijn.be/stops/301554", "https://data.delijn.be/stops/308087"], ["https://data.delijn.be/stops/201617", "https://data.delijn.be/stops/203924"], ["https://data.delijn.be/stops/101046", "https://data.delijn.be/stops/101047"], ["https://data.delijn.be/stops/202688", "https://data.delijn.be/stops/203040"], ["https://data.delijn.be/stops/107972", "https://data.delijn.be/stops/107974"], ["https://data.delijn.be/stops/402254", "https://data.delijn.be/stops/402320"], ["https://data.delijn.be/stops/402196", "https://data.delijn.be/stops/402197"], ["https://data.delijn.be/stops/405445", "https://data.delijn.be/stops/408540"], ["https://data.delijn.be/stops/502470", "https://data.delijn.be/stops/502481"], ["https://data.delijn.be/stops/501436", "https://data.delijn.be/stops/506436"], ["https://data.delijn.be/stops/304373", "https://data.delijn.be/stops/307501"], ["https://data.delijn.be/stops/102399", "https://data.delijn.be/stops/102448"], ["https://data.delijn.be/stops/303437", "https://data.delijn.be/stops/303451"], ["https://data.delijn.be/stops/409231", "https://data.delijn.be/stops/409232"], ["https://data.delijn.be/stops/206792", "https://data.delijn.be/stops/207626"], ["https://data.delijn.be/stops/302141", "https://data.delijn.be/stops/307676"], ["https://data.delijn.be/stops/109665", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/307638", "https://data.delijn.be/stops/307686"], ["https://data.delijn.be/stops/104047", "https://data.delijn.be/stops/108394"], ["https://data.delijn.be/stops/502317", "https://data.delijn.be/stops/507317"], ["https://data.delijn.be/stops/102022", "https://data.delijn.be/stops/109960"], ["https://data.delijn.be/stops/300074", "https://data.delijn.be/stops/300075"], ["https://data.delijn.be/stops/404805", "https://data.delijn.be/stops/404833"], ["https://data.delijn.be/stops/401225", "https://data.delijn.be/stops/401378"], ["https://data.delijn.be/stops/502501", "https://data.delijn.be/stops/507501"], ["https://data.delijn.be/stops/203731", "https://data.delijn.be/stops/203910"], ["https://data.delijn.be/stops/303511", "https://data.delijn.be/stops/303514"], ["https://data.delijn.be/stops/305012", "https://data.delijn.be/stops/305033"], ["https://data.delijn.be/stops/208817", "https://data.delijn.be/stops/209141"], ["https://data.delijn.be/stops/203153", "https://data.delijn.be/stops/203174"], ["https://data.delijn.be/stops/103210", "https://data.delijn.be/stops/106302"], ["https://data.delijn.be/stops/305222", "https://data.delijn.be/stops/305267"], ["https://data.delijn.be/stops/200002", "https://data.delijn.be/stops/201002"], ["https://data.delijn.be/stops/204828", "https://data.delijn.be/stops/205017"], ["https://data.delijn.be/stops/409677", "https://data.delijn.be/stops/409683"], ["https://data.delijn.be/stops/410073", "https://data.delijn.be/stops/410074"], ["https://data.delijn.be/stops/109794", "https://data.delijn.be/stops/109892"], ["https://data.delijn.be/stops/505202", "https://data.delijn.be/stops/509563"], ["https://data.delijn.be/stops/209781", "https://data.delijn.be/stops/209784"], ["https://data.delijn.be/stops/409426", "https://data.delijn.be/stops/409427"], ["https://data.delijn.be/stops/508776", "https://data.delijn.be/stops/508780"], ["https://data.delijn.be/stops/407640", "https://data.delijn.be/stops/407764"], ["https://data.delijn.be/stops/103586", "https://data.delijn.be/stops/104255"], ["https://data.delijn.be/stops/108313", "https://data.delijn.be/stops/108316"], ["https://data.delijn.be/stops/204240", "https://data.delijn.be/stops/205667"], ["https://data.delijn.be/stops/101545", "https://data.delijn.be/stops/103795"], ["https://data.delijn.be/stops/400095", "https://data.delijn.be/stops/400100"], ["https://data.delijn.be/stops/106345", "https://data.delijn.be/stops/109634"], ["https://data.delijn.be/stops/104891", "https://data.delijn.be/stops/104892"], ["https://data.delijn.be/stops/308238", "https://data.delijn.be/stops/308239"], ["https://data.delijn.be/stops/503884", "https://data.delijn.be/stops/508884"], ["https://data.delijn.be/stops/304088", "https://data.delijn.be/stops/304089"], ["https://data.delijn.be/stops/301645", "https://data.delijn.be/stops/302106"], ["https://data.delijn.be/stops/503515", "https://data.delijn.be/stops/508515"], ["https://data.delijn.be/stops/206721", "https://data.delijn.be/stops/207849"], ["https://data.delijn.be/stops/400097", "https://data.delijn.be/stops/401970"], ["https://data.delijn.be/stops/406577", "https://data.delijn.be/stops/406586"], ["https://data.delijn.be/stops/204375", "https://data.delijn.be/stops/205375"], ["https://data.delijn.be/stops/108907", "https://data.delijn.be/stops/108911"], ["https://data.delijn.be/stops/103721", "https://data.delijn.be/stops/108617"], ["https://data.delijn.be/stops/208066", "https://data.delijn.be/stops/209150"], ["https://data.delijn.be/stops/407133", "https://data.delijn.be/stops/407305"], ["https://data.delijn.be/stops/401787", "https://data.delijn.be/stops/406014"], ["https://data.delijn.be/stops/409254", "https://data.delijn.be/stops/409262"], ["https://data.delijn.be/stops/206593", "https://data.delijn.be/stops/206870"], ["https://data.delijn.be/stops/308259", "https://data.delijn.be/stops/308671"], ["https://data.delijn.be/stops/108302", "https://data.delijn.be/stops/108326"], ["https://data.delijn.be/stops/306878", "https://data.delijn.be/stops/306879"], ["https://data.delijn.be/stops/106022", "https://data.delijn.be/stops/106023"], ["https://data.delijn.be/stops/202744", "https://data.delijn.be/stops/202745"], ["https://data.delijn.be/stops/102532", "https://data.delijn.be/stops/405713"], ["https://data.delijn.be/stops/206634", "https://data.delijn.be/stops/207635"], ["https://data.delijn.be/stops/300447", "https://data.delijn.be/stops/300451"], ["https://data.delijn.be/stops/105064", "https://data.delijn.be/stops/107412"], ["https://data.delijn.be/stops/500016", "https://data.delijn.be/stops/502450"], ["https://data.delijn.be/stops/400705", "https://data.delijn.be/stops/404374"], ["https://data.delijn.be/stops/101209", "https://data.delijn.be/stops/102748"], ["https://data.delijn.be/stops/505607", "https://data.delijn.be/stops/505615"], ["https://data.delijn.be/stops/300314", "https://data.delijn.be/stops/307976"], ["https://data.delijn.be/stops/504243", "https://data.delijn.be/stops/504249"], ["https://data.delijn.be/stops/107016", "https://data.delijn.be/stops/107112"], ["https://data.delijn.be/stops/104341", "https://data.delijn.be/stops/104343"], ["https://data.delijn.be/stops/509332", "https://data.delijn.be/stops/509337"], ["https://data.delijn.be/stops/401838", "https://data.delijn.be/stops/406031"], ["https://data.delijn.be/stops/107562", "https://data.delijn.be/stops/107563"], ["https://data.delijn.be/stops/300305", "https://data.delijn.be/stops/306248"], ["https://data.delijn.be/stops/504447", "https://data.delijn.be/stops/509447"], ["https://data.delijn.be/stops/305086", "https://data.delijn.be/stops/306955"], ["https://data.delijn.be/stops/202123", "https://data.delijn.be/stops/203123"], ["https://data.delijn.be/stops/307646", "https://data.delijn.be/stops/307689"], ["https://data.delijn.be/stops/405953", "https://data.delijn.be/stops/405955"], ["https://data.delijn.be/stops/200764", "https://data.delijn.be/stops/209381"], ["https://data.delijn.be/stops/204302", "https://data.delijn.be/stops/205705"], ["https://data.delijn.be/stops/303288", "https://data.delijn.be/stops/303300"], ["https://data.delijn.be/stops/106102", "https://data.delijn.be/stops/106157"], ["https://data.delijn.be/stops/304168", "https://data.delijn.be/stops/307539"], ["https://data.delijn.be/stops/200643", "https://data.delijn.be/stops/203777"], ["https://data.delijn.be/stops/200530", "https://data.delijn.be/stops/210091"], ["https://data.delijn.be/stops/103976", "https://data.delijn.be/stops/108355"], ["https://data.delijn.be/stops/502725", "https://data.delijn.be/stops/507725"], ["https://data.delijn.be/stops/403833", "https://data.delijn.be/stops/405636"], ["https://data.delijn.be/stops/101823", "https://data.delijn.be/stops/101824"], ["https://data.delijn.be/stops/201399", "https://data.delijn.be/stops/202361"], ["https://data.delijn.be/stops/300672", "https://data.delijn.be/stops/300675"], ["https://data.delijn.be/stops/103332", "https://data.delijn.be/stops/103333"], ["https://data.delijn.be/stops/303295", "https://data.delijn.be/stops/303296"], ["https://data.delijn.be/stops/206563", "https://data.delijn.be/stops/209125"], ["https://data.delijn.be/stops/303476", "https://data.delijn.be/stops/308069"], ["https://data.delijn.be/stops/405527", "https://data.delijn.be/stops/408130"], ["https://data.delijn.be/stops/302086", "https://data.delijn.be/stops/302089"], ["https://data.delijn.be/stops/401045", "https://data.delijn.be/stops/409816"], ["https://data.delijn.be/stops/505224", "https://data.delijn.be/stops/505424"], ["https://data.delijn.be/stops/205363", "https://data.delijn.be/stops/205686"], ["https://data.delijn.be/stops/203901", "https://data.delijn.be/stops/219953"], ["https://data.delijn.be/stops/410222", "https://data.delijn.be/stops/410293"], ["https://data.delijn.be/stops/407445", "https://data.delijn.be/stops/410254"], ["https://data.delijn.be/stops/202869", "https://data.delijn.be/stops/206938"], ["https://data.delijn.be/stops/201200", "https://data.delijn.be/stops/210128"], ["https://data.delijn.be/stops/306721", "https://data.delijn.be/stops/306724"], ["https://data.delijn.be/stops/202936", "https://data.delijn.be/stops/203936"], ["https://data.delijn.be/stops/308636", "https://data.delijn.be/stops/308934"], ["https://data.delijn.be/stops/206635", "https://data.delijn.be/stops/207635"], ["https://data.delijn.be/stops/409737", "https://data.delijn.be/stops/409739"], ["https://data.delijn.be/stops/503481", "https://data.delijn.be/stops/508488"], ["https://data.delijn.be/stops/101865", "https://data.delijn.be/stops/102565"], ["https://data.delijn.be/stops/202499", "https://data.delijn.be/stops/203499"], ["https://data.delijn.be/stops/405034", "https://data.delijn.be/stops/408259"], ["https://data.delijn.be/stops/509487", "https://data.delijn.be/stops/509488"], ["https://data.delijn.be/stops/404027", "https://data.delijn.be/stops/308749"], ["https://data.delijn.be/stops/105558", "https://data.delijn.be/stops/106034"], ["https://data.delijn.be/stops/404510", "https://data.delijn.be/stops/408163"], ["https://data.delijn.be/stops/203911", "https://data.delijn.be/stops/203917"], ["https://data.delijn.be/stops/103136", "https://data.delijn.be/stops/103140"], ["https://data.delijn.be/stops/400584", "https://data.delijn.be/stops/404294"], ["https://data.delijn.be/stops/102541", "https://data.delijn.be/stops/405103"], ["https://data.delijn.be/stops/108244", "https://data.delijn.be/stops/108248"], ["https://data.delijn.be/stops/106158", "https://data.delijn.be/stops/106444"], ["https://data.delijn.be/stops/201033", "https://data.delijn.be/stops/201446"], ["https://data.delijn.be/stops/501640", "https://data.delijn.be/stops/506148"], ["https://data.delijn.be/stops/102991", "https://data.delijn.be/stops/105602"], ["https://data.delijn.be/stops/504531", "https://data.delijn.be/stops/505372"], ["https://data.delijn.be/stops/401048", "https://data.delijn.be/stops/401131"], ["https://data.delijn.be/stops/204719", "https://data.delijn.be/stops/205719"], ["https://data.delijn.be/stops/102859", "https://data.delijn.be/stops/204627"], ["https://data.delijn.be/stops/403256", "https://data.delijn.be/stops/403872"], ["https://data.delijn.be/stops/501046", "https://data.delijn.be/stops/505030"], ["https://data.delijn.be/stops/400421", "https://data.delijn.be/stops/407928"], ["https://data.delijn.be/stops/101079", "https://data.delijn.be/stops/107153"], ["https://data.delijn.be/stops/208326", "https://data.delijn.be/stops/209309"], ["https://data.delijn.be/stops/407997", "https://data.delijn.be/stops/408020"], ["https://data.delijn.be/stops/205126", "https://data.delijn.be/stops/205138"], ["https://data.delijn.be/stops/106335", "https://data.delijn.be/stops/106338"], ["https://data.delijn.be/stops/202014", "https://data.delijn.be/stops/203014"], ["https://data.delijn.be/stops/404674", "https://data.delijn.be/stops/410138"], ["https://data.delijn.be/stops/303149", "https://data.delijn.be/stops/308661"], ["https://data.delijn.be/stops/203430", "https://data.delijn.be/stops/203431"], ["https://data.delijn.be/stops/308428", "https://data.delijn.be/stops/308429"], ["https://data.delijn.be/stops/504804", "https://data.delijn.be/stops/504805"], ["https://data.delijn.be/stops/106273", "https://data.delijn.be/stops/106275"], ["https://data.delijn.be/stops/207420", "https://data.delijn.be/stops/306732"], ["https://data.delijn.be/stops/203719", "https://data.delijn.be/stops/208333"], ["https://data.delijn.be/stops/200154", "https://data.delijn.be/stops/203359"], ["https://data.delijn.be/stops/405703", "https://data.delijn.be/stops/405706"], ["https://data.delijn.be/stops/104355", "https://data.delijn.be/stops/104365"], ["https://data.delijn.be/stops/500025", "https://data.delijn.be/stops/502478"], ["https://data.delijn.be/stops/403038", "https://data.delijn.be/stops/403257"], ["https://data.delijn.be/stops/304768", "https://data.delijn.be/stops/304771"], ["https://data.delijn.be/stops/204726", "https://data.delijn.be/stops/205726"], ["https://data.delijn.be/stops/204149", "https://data.delijn.be/stops/205581"], ["https://data.delijn.be/stops/307626", "https://data.delijn.be/stops/308261"], ["https://data.delijn.be/stops/501292", "https://data.delijn.be/stops/506292"], ["https://data.delijn.be/stops/204066", "https://data.delijn.be/stops/204098"], ["https://data.delijn.be/stops/504132", "https://data.delijn.be/stops/509257"], ["https://data.delijn.be/stops/409366", "https://data.delijn.be/stops/409501"], ["https://data.delijn.be/stops/400264", "https://data.delijn.be/stops/407487"], ["https://data.delijn.be/stops/205423", "https://data.delijn.be/stops/205765"], ["https://data.delijn.be/stops/301393", "https://data.delijn.be/stops/306137"], ["https://data.delijn.be/stops/405434", "https://data.delijn.be/stops/409293"], ["https://data.delijn.be/stops/304188", "https://data.delijn.be/stops/308876"], ["https://data.delijn.be/stops/501694", "https://data.delijn.be/stops/502586"], ["https://data.delijn.be/stops/501335", "https://data.delijn.be/stops/506357"], ["https://data.delijn.be/stops/106341", "https://data.delijn.be/stops/106342"], ["https://data.delijn.be/stops/506148", "https://data.delijn.be/stops/506149"], ["https://data.delijn.be/stops/207656", "https://data.delijn.be/stops/207657"], ["https://data.delijn.be/stops/206212", "https://data.delijn.be/stops/206213"], ["https://data.delijn.be/stops/404476", "https://data.delijn.be/stops/404481"], ["https://data.delijn.be/stops/102479", "https://data.delijn.be/stops/400179"], ["https://data.delijn.be/stops/106659", "https://data.delijn.be/stops/106661"], ["https://data.delijn.be/stops/104060", "https://data.delijn.be/stops/109709"], ["https://data.delijn.be/stops/503054", "https://data.delijn.be/stops/509846"], ["https://data.delijn.be/stops/409053", "https://data.delijn.be/stops/409066"], ["https://data.delijn.be/stops/409255", "https://data.delijn.be/stops/409273"], ["https://data.delijn.be/stops/101995", "https://data.delijn.be/stops/103550"], ["https://data.delijn.be/stops/400035", "https://data.delijn.be/stops/400315"], ["https://data.delijn.be/stops/305049", "https://data.delijn.be/stops/305084"], ["https://data.delijn.be/stops/108508", "https://data.delijn.be/stops/304920"], ["https://data.delijn.be/stops/107287", "https://data.delijn.be/stops/107291"], ["https://data.delijn.be/stops/300726", "https://data.delijn.be/stops/300736"], ["https://data.delijn.be/stops/101632", "https://data.delijn.be/stops/104343"], ["https://data.delijn.be/stops/207337", "https://data.delijn.be/stops/207741"], ["https://data.delijn.be/stops/204692", "https://data.delijn.be/stops/205099"], ["https://data.delijn.be/stops/200223", "https://data.delijn.be/stops/201137"], ["https://data.delijn.be/stops/201975", "https://data.delijn.be/stops/209846"], ["https://data.delijn.be/stops/501452", "https://data.delijn.be/stops/506448"], ["https://data.delijn.be/stops/307227", "https://data.delijn.be/stops/307912"], ["https://data.delijn.be/stops/406206", "https://data.delijn.be/stops/406269"], ["https://data.delijn.be/stops/107058", "https://data.delijn.be/stops/108226"], ["https://data.delijn.be/stops/408539", "https://data.delijn.be/stops/408688"], ["https://data.delijn.be/stops/203092", "https://data.delijn.be/stops/203093"], ["https://data.delijn.be/stops/107607", "https://data.delijn.be/stops/107726"], ["https://data.delijn.be/stops/206876", "https://data.delijn.be/stops/207079"], ["https://data.delijn.be/stops/303461", "https://data.delijn.be/stops/303462"], ["https://data.delijn.be/stops/105691", "https://data.delijn.be/stops/105692"], ["https://data.delijn.be/stops/201070", "https://data.delijn.be/stops/208849"], ["https://data.delijn.be/stops/507645", "https://data.delijn.be/stops/507646"], ["https://data.delijn.be/stops/106382", "https://data.delijn.be/stops/106385"], ["https://data.delijn.be/stops/200734", "https://data.delijn.be/stops/215018"], ["https://data.delijn.be/stops/401820", "https://data.delijn.be/stops/406893"], ["https://data.delijn.be/stops/104509", "https://data.delijn.be/stops/107799"], ["https://data.delijn.be/stops/301429", "https://data.delijn.be/stops/301437"], ["https://data.delijn.be/stops/407371", "https://data.delijn.be/stops/407393"], ["https://data.delijn.be/stops/201903", "https://data.delijn.be/stops/209852"], ["https://data.delijn.be/stops/201186", "https://data.delijn.be/stops/201195"], ["https://data.delijn.be/stops/101203", "https://data.delijn.be/stops/205098"], ["https://data.delijn.be/stops/500958", "https://data.delijn.be/stops/503289"], ["https://data.delijn.be/stops/103013", "https://data.delijn.be/stops/109022"], ["https://data.delijn.be/stops/407427", "https://data.delijn.be/stops/409873"], ["https://data.delijn.be/stops/102884", "https://data.delijn.be/stops/102893"], ["https://data.delijn.be/stops/203530", "https://data.delijn.be/stops/203965"], ["https://data.delijn.be/stops/107320", "https://data.delijn.be/stops/108815"], ["https://data.delijn.be/stops/308158", "https://data.delijn.be/stops/308159"], ["https://data.delijn.be/stops/304759", "https://data.delijn.be/stops/305250"], ["https://data.delijn.be/stops/201799", "https://data.delijn.be/stops/203124"], ["https://data.delijn.be/stops/102313", "https://data.delijn.be/stops/103377"], ["https://data.delijn.be/stops/304033", "https://data.delijn.be/stops/306375"], ["https://data.delijn.be/stops/207423", "https://data.delijn.be/stops/306078"], ["https://data.delijn.be/stops/402097", "https://data.delijn.be/stops/402300"], ["https://data.delijn.be/stops/205509", "https://data.delijn.be/stops/205510"], ["https://data.delijn.be/stops/200979", "https://data.delijn.be/stops/210314"], ["https://data.delijn.be/stops/206194", "https://data.delijn.be/stops/206222"], ["https://data.delijn.be/stops/200425", "https://data.delijn.be/stops/202011"], ["https://data.delijn.be/stops/406804", "https://data.delijn.be/stops/410100"], ["https://data.delijn.be/stops/302567", "https://data.delijn.be/stops/302568"], ["https://data.delijn.be/stops/303459", "https://data.delijn.be/stops/303481"], ["https://data.delijn.be/stops/300687", "https://data.delijn.be/stops/306935"], ["https://data.delijn.be/stops/200673", "https://data.delijn.be/stops/205997"], ["https://data.delijn.be/stops/106081", "https://data.delijn.be/stops/106082"], ["https://data.delijn.be/stops/305253", "https://data.delijn.be/stops/305268"], ["https://data.delijn.be/stops/301963", "https://data.delijn.be/stops/301964"], ["https://data.delijn.be/stops/504445", "https://data.delijn.be/stops/509445"], ["https://data.delijn.be/stops/106052", "https://data.delijn.be/stops/106057"], ["https://data.delijn.be/stops/206212", "https://data.delijn.be/stops/207213"], ["https://data.delijn.be/stops/505998", "https://data.delijn.be/stops/509430"], ["https://data.delijn.be/stops/508046", "https://data.delijn.be/stops/508047"], ["https://data.delijn.be/stops/104418", "https://data.delijn.be/stops/204450"], ["https://data.delijn.be/stops/504439", "https://data.delijn.be/stops/504445"], ["https://data.delijn.be/stops/204388", "https://data.delijn.be/stops/204418"], ["https://data.delijn.be/stops/305171", "https://data.delijn.be/stops/306880"], ["https://data.delijn.be/stops/508095", "https://data.delijn.be/stops/508974"], ["https://data.delijn.be/stops/103575", "https://data.delijn.be/stops/103585"], ["https://data.delijn.be/stops/505091", "https://data.delijn.be/stops/505092"], ["https://data.delijn.be/stops/300085", "https://data.delijn.be/stops/306812"], ["https://data.delijn.be/stops/101942", "https://data.delijn.be/stops/108794"], ["https://data.delijn.be/stops/103659", "https://data.delijn.be/stops/106322"], ["https://data.delijn.be/stops/202877", "https://data.delijn.be/stops/208534"], ["https://data.delijn.be/stops/301831", "https://data.delijn.be/stops/301845"], ["https://data.delijn.be/stops/101811", "https://data.delijn.be/stops/104687"], ["https://data.delijn.be/stops/407482", "https://data.delijn.be/stops/407483"], ["https://data.delijn.be/stops/408271", "https://data.delijn.be/stops/408374"], ["https://data.delijn.be/stops/200802", "https://data.delijn.be/stops/211852"], ["https://data.delijn.be/stops/500928", "https://data.delijn.be/stops/505401"], ["https://data.delijn.be/stops/401842", "https://data.delijn.be/stops/401855"], ["https://data.delijn.be/stops/307632", "https://data.delijn.be/stops/307833"], ["https://data.delijn.be/stops/206771", "https://data.delijn.be/stops/206784"], ["https://data.delijn.be/stops/400981", "https://data.delijn.be/stops/406702"], ["https://data.delijn.be/stops/504578", "https://data.delijn.be/stops/509274"], ["https://data.delijn.be/stops/501303", "https://data.delijn.be/stops/501346"], ["https://data.delijn.be/stops/102928", "https://data.delijn.be/stops/106240"], ["https://data.delijn.be/stops/108553", "https://data.delijn.be/stops/109593"], ["https://data.delijn.be/stops/203843", "https://data.delijn.be/stops/208426"], ["https://data.delijn.be/stops/204530", "https://data.delijn.be/stops/204532"], ["https://data.delijn.be/stops/107790", "https://data.delijn.be/stops/107880"], ["https://data.delijn.be/stops/107182", "https://data.delijn.be/stops/107184"], ["https://data.delijn.be/stops/304069", "https://data.delijn.be/stops/304107"], ["https://data.delijn.be/stops/504497", "https://data.delijn.be/stops/509490"], ["https://data.delijn.be/stops/502277", "https://data.delijn.be/stops/507277"], ["https://data.delijn.be/stops/101849", "https://data.delijn.be/stops/106850"], ["https://data.delijn.be/stops/504640", "https://data.delijn.be/stops/509640"], ["https://data.delijn.be/stops/205197", "https://data.delijn.be/stops/205198"], ["https://data.delijn.be/stops/204119", "https://data.delijn.be/stops/204689"], ["https://data.delijn.be/stops/205390", "https://data.delijn.be/stops/205391"], ["https://data.delijn.be/stops/200824", "https://data.delijn.be/stops/200866"], ["https://data.delijn.be/stops/502182", "https://data.delijn.be/stops/509975"], ["https://data.delijn.be/stops/409360", "https://data.delijn.be/stops/409398"], ["https://data.delijn.be/stops/103712", "https://data.delijn.be/stops/103753"], ["https://data.delijn.be/stops/208383", "https://data.delijn.be/stops/209384"], ["https://data.delijn.be/stops/505061", "https://data.delijn.be/stops/505063"], ["https://data.delijn.be/stops/400073", "https://data.delijn.be/stops/400120"], ["https://data.delijn.be/stops/302462", "https://data.delijn.be/stops/302463"], ["https://data.delijn.be/stops/308504", "https://data.delijn.be/stops/308505"], ["https://data.delijn.be/stops/501112", "https://data.delijn.be/stops/501503"], ["https://data.delijn.be/stops/204305", "https://data.delijn.be/stops/205352"], ["https://data.delijn.be/stops/304807", "https://data.delijn.be/stops/309671"], ["https://data.delijn.be/stops/404383", "https://data.delijn.be/stops/404396"], ["https://data.delijn.be/stops/407227", "https://data.delijn.be/stops/407488"], ["https://data.delijn.be/stops/503409", "https://data.delijn.be/stops/508409"], ["https://data.delijn.be/stops/202787", "https://data.delijn.be/stops/203787"], ["https://data.delijn.be/stops/505515", "https://data.delijn.be/stops/509780"], ["https://data.delijn.be/stops/405443", "https://data.delijn.be/stops/408704"], ["https://data.delijn.be/stops/300368", "https://data.delijn.be/stops/300369"], ["https://data.delijn.be/stops/206885", "https://data.delijn.be/stops/207914"], ["https://data.delijn.be/stops/305132", "https://data.delijn.be/stops/305133"], ["https://data.delijn.be/stops/105059", "https://data.delijn.be/stops/105825"], ["https://data.delijn.be/stops/303066", "https://data.delijn.be/stops/303182"], ["https://data.delijn.be/stops/404709", "https://data.delijn.be/stops/404728"], ["https://data.delijn.be/stops/204123", "https://data.delijn.be/stops/205123"], ["https://data.delijn.be/stops/202169", "https://data.delijn.be/stops/202640"], ["https://data.delijn.be/stops/202087", "https://data.delijn.be/stops/202089"], ["https://data.delijn.be/stops/206065", "https://data.delijn.be/stops/206066"], ["https://data.delijn.be/stops/306970", "https://data.delijn.be/stops/307080"], ["https://data.delijn.be/stops/405831", "https://data.delijn.be/stops/409695"], ["https://data.delijn.be/stops/202855", "https://data.delijn.be/stops/203855"], ["https://data.delijn.be/stops/400031", "https://data.delijn.be/stops/407101"], ["https://data.delijn.be/stops/208437", "https://data.delijn.be/stops/208438"], ["https://data.delijn.be/stops/200160", "https://data.delijn.be/stops/201161"], ["https://data.delijn.be/stops/401300", "https://data.delijn.be/stops/401306"], ["https://data.delijn.be/stops/200620", "https://data.delijn.be/stops/211118"], ["https://data.delijn.be/stops/108417", "https://data.delijn.be/stops/108421"], ["https://data.delijn.be/stops/200401", "https://data.delijn.be/stops/202363"], ["https://data.delijn.be/stops/206030", "https://data.delijn.be/stops/207029"], ["https://data.delijn.be/stops/504791", "https://data.delijn.be/stops/508513"], ["https://data.delijn.be/stops/508898", "https://data.delijn.be/stops/509140"], ["https://data.delijn.be/stops/202208", "https://data.delijn.be/stops/202770"], ["https://data.delijn.be/stops/202694", "https://data.delijn.be/stops/211023"], ["https://data.delijn.be/stops/302565", "https://data.delijn.be/stops/302589"], ["https://data.delijn.be/stops/208168", "https://data.delijn.be/stops/208424"], ["https://data.delijn.be/stops/405158", "https://data.delijn.be/stops/409375"], ["https://data.delijn.be/stops/205071", "https://data.delijn.be/stops/205072"], ["https://data.delijn.be/stops/503369", "https://data.delijn.be/stops/510025"], ["https://data.delijn.be/stops/107696", "https://data.delijn.be/stops/107719"], ["https://data.delijn.be/stops/508044", "https://data.delijn.be/stops/509887"], ["https://data.delijn.be/stops/302110", "https://data.delijn.be/stops/304140"], ["https://data.delijn.be/stops/108840", "https://data.delijn.be/stops/108853"], ["https://data.delijn.be/stops/408422", "https://data.delijn.be/stops/408491"], ["https://data.delijn.be/stops/504042", "https://data.delijn.be/stops/509042"], ["https://data.delijn.be/stops/300516", "https://data.delijn.be/stops/300533"], ["https://data.delijn.be/stops/103988", "https://data.delijn.be/stops/109459"], ["https://data.delijn.be/stops/308730", "https://data.delijn.be/stops/308734"], ["https://data.delijn.be/stops/207972", "https://data.delijn.be/stops/207990"], ["https://data.delijn.be/stops/400816", "https://data.delijn.be/stops/409646"], ["https://data.delijn.be/stops/302474", "https://data.delijn.be/stops/302476"], ["https://data.delijn.be/stops/101836", "https://data.delijn.be/stops/102632"], ["https://data.delijn.be/stops/402374", "https://data.delijn.be/stops/402375"], ["https://data.delijn.be/stops/105033", "https://data.delijn.be/stops/106710"], ["https://data.delijn.be/stops/200843", "https://data.delijn.be/stops/200889"], ["https://data.delijn.be/stops/504695", "https://data.delijn.be/stops/508854"], ["https://data.delijn.be/stops/306119", "https://data.delijn.be/stops/306121"], ["https://data.delijn.be/stops/407966", "https://data.delijn.be/stops/407969"], ["https://data.delijn.be/stops/200225", "https://data.delijn.be/stops/200445"], ["https://data.delijn.be/stops/101914", "https://data.delijn.be/stops/103208"], ["https://data.delijn.be/stops/300329", "https://data.delijn.be/stops/300335"], ["https://data.delijn.be/stops/207737", "https://data.delijn.be/stops/207861"], ["https://data.delijn.be/stops/204484", "https://data.delijn.be/stops/205735"], ["https://data.delijn.be/stops/201339", "https://data.delijn.be/stops/211085"], ["https://data.delijn.be/stops/302934", "https://data.delijn.be/stops/303044"], ["https://data.delijn.be/stops/108337", "https://data.delijn.be/stops/108339"], ["https://data.delijn.be/stops/200598", "https://data.delijn.be/stops/201594"], ["https://data.delijn.be/stops/300669", "https://data.delijn.be/stops/306744"], ["https://data.delijn.be/stops/101935", "https://data.delijn.be/stops/105830"], ["https://data.delijn.be/stops/201808", "https://data.delijn.be/stops/209262"], ["https://data.delijn.be/stops/206119", "https://data.delijn.be/stops/207118"], ["https://data.delijn.be/stops/206510", "https://data.delijn.be/stops/209666"], ["https://data.delijn.be/stops/206793", "https://data.delijn.be/stops/209040"], ["https://data.delijn.be/stops/504465", "https://data.delijn.be/stops/504574"], ["https://data.delijn.be/stops/502374", "https://data.delijn.be/stops/507280"], ["https://data.delijn.be/stops/504779", "https://data.delijn.be/stops/504981"], ["https://data.delijn.be/stops/301536", "https://data.delijn.be/stops/301552"], ["https://data.delijn.be/stops/503182", "https://data.delijn.be/stops/508182"], ["https://data.delijn.be/stops/206576", "https://data.delijn.be/stops/207576"], ["https://data.delijn.be/stops/401847", "https://data.delijn.be/stops/401853"], ["https://data.delijn.be/stops/501606", "https://data.delijn.be/stops/501715"], ["https://data.delijn.be/stops/301096", "https://data.delijn.be/stops/306668"], ["https://data.delijn.be/stops/405247", "https://data.delijn.be/stops/405248"], ["https://data.delijn.be/stops/305549", "https://data.delijn.be/stops/305550"], ["https://data.delijn.be/stops/109986", "https://data.delijn.be/stops/109987"], ["https://data.delijn.be/stops/501395", "https://data.delijn.be/stops/501403"], ["https://data.delijn.be/stops/202579", "https://data.delijn.be/stops/202580"], ["https://data.delijn.be/stops/302143", "https://data.delijn.be/stops/307528"], ["https://data.delijn.be/stops/301743", "https://data.delijn.be/stops/301823"], ["https://data.delijn.be/stops/207412", "https://data.delijn.be/stops/207419"], ["https://data.delijn.be/stops/102996", "https://data.delijn.be/stops/106838"], ["https://data.delijn.be/stops/101839", "https://data.delijn.be/stops/105430"], ["https://data.delijn.be/stops/404145", "https://data.delijn.be/stops/404174"], ["https://data.delijn.be/stops/101794", "https://data.delijn.be/stops/409531"], ["https://data.delijn.be/stops/304487", "https://data.delijn.be/stops/304491"], ["https://data.delijn.be/stops/202949", "https://data.delijn.be/stops/202950"], ["https://data.delijn.be/stops/207865", "https://data.delijn.be/stops/208386"], ["https://data.delijn.be/stops/208122", "https://data.delijn.be/stops/209123"], ["https://data.delijn.be/stops/301350", "https://data.delijn.be/stops/301351"], ["https://data.delijn.be/stops/404225", "https://data.delijn.be/stops/404226"], ["https://data.delijn.be/stops/407832", "https://data.delijn.be/stops/407836"], ["https://data.delijn.be/stops/504406", "https://data.delijn.be/stops/504434"], ["https://data.delijn.be/stops/304092", "https://data.delijn.be/stops/307506"], ["https://data.delijn.be/stops/308060", "https://data.delijn.be/stops/308297"], ["https://data.delijn.be/stops/507342", "https://data.delijn.be/stops/507467"], ["https://data.delijn.be/stops/503686", "https://data.delijn.be/stops/509453"], ["https://data.delijn.be/stops/409068", "https://data.delijn.be/stops/409086"], ["https://data.delijn.be/stops/305424", "https://data.delijn.be/stops/305518"], ["https://data.delijn.be/stops/206653", "https://data.delijn.be/stops/207653"], ["https://data.delijn.be/stops/300097", "https://data.delijn.be/stops/306849"], ["https://data.delijn.be/stops/407782", "https://data.delijn.be/stops/308274"], ["https://data.delijn.be/stops/109847", "https://data.delijn.be/stops/109849"], ["https://data.delijn.be/stops/201481", "https://data.delijn.be/stops/211059"], ["https://data.delijn.be/stops/301715", "https://data.delijn.be/stops/303467"], ["https://data.delijn.be/stops/401828", "https://data.delijn.be/stops/401829"], ["https://data.delijn.be/stops/202319", "https://data.delijn.be/stops/203319"], ["https://data.delijn.be/stops/507404", "https://data.delijn.be/stops/507581"], ["https://data.delijn.be/stops/103634", "https://data.delijn.be/stops/107167"], ["https://data.delijn.be/stops/101943", "https://data.delijn.be/stops/108317"], ["https://data.delijn.be/stops/303640", "https://data.delijn.be/stops/303642"], ["https://data.delijn.be/stops/405917", "https://data.delijn.be/stops/405971"], ["https://data.delijn.be/stops/401514", "https://data.delijn.be/stops/406878"], ["https://data.delijn.be/stops/209342", "https://data.delijn.be/stops/218028"], ["https://data.delijn.be/stops/403128", "https://data.delijn.be/stops/409278"], ["https://data.delijn.be/stops/406655", "https://data.delijn.be/stops/406693"], ["https://data.delijn.be/stops/109062", "https://data.delijn.be/stops/109063"], ["https://data.delijn.be/stops/107496", "https://data.delijn.be/stops/107499"], ["https://data.delijn.be/stops/302100", "https://data.delijn.be/stops/302103"], ["https://data.delijn.be/stops/300935", "https://data.delijn.be/stops/300983"], ["https://data.delijn.be/stops/200219", "https://data.delijn.be/stops/201219"], ["https://data.delijn.be/stops/206177", "https://data.delijn.be/stops/303843"], ["https://data.delijn.be/stops/406675", "https://data.delijn.be/stops/406676"], ["https://data.delijn.be/stops/306140", "https://data.delijn.be/stops/306142"], ["https://data.delijn.be/stops/104950", "https://data.delijn.be/stops/108570"], ["https://data.delijn.be/stops/104009", "https://data.delijn.be/stops/104010"], ["https://data.delijn.be/stops/507477", "https://data.delijn.be/stops/507753"], ["https://data.delijn.be/stops/101060", "https://data.delijn.be/stops/109528"], ["https://data.delijn.be/stops/401053", "https://data.delijn.be/stops/409814"], ["https://data.delijn.be/stops/202232", "https://data.delijn.be/stops/203231"], ["https://data.delijn.be/stops/208274", "https://data.delijn.be/stops/209273"], ["https://data.delijn.be/stops/305599", "https://data.delijn.be/stops/305605"], ["https://data.delijn.be/stops/405974", "https://data.delijn.be/stops/406134"], ["https://data.delijn.be/stops/407892", "https://data.delijn.be/stops/407893"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/107146"], ["https://data.delijn.be/stops/402807", "https://data.delijn.be/stops/409471"], ["https://data.delijn.be/stops/102423", "https://data.delijn.be/stops/104713"], ["https://data.delijn.be/stops/304873", "https://data.delijn.be/stops/308544"], ["https://data.delijn.be/stops/304296", "https://data.delijn.be/stops/304516"], ["https://data.delijn.be/stops/303336", "https://data.delijn.be/stops/305062"], ["https://data.delijn.be/stops/503728", "https://data.delijn.be/stops/507931"], ["https://data.delijn.be/stops/503560", "https://data.delijn.be/stops/503583"], ["https://data.delijn.be/stops/206600", "https://data.delijn.be/stops/207600"], ["https://data.delijn.be/stops/503866", "https://data.delijn.be/stops/508612"], ["https://data.delijn.be/stops/105357", "https://data.delijn.be/stops/105588"], ["https://data.delijn.be/stops/502489", "https://data.delijn.be/stops/507517"], ["https://data.delijn.be/stops/303374", "https://data.delijn.be/stops/307137"], ["https://data.delijn.be/stops/102665", "https://data.delijn.be/stops/102675"], ["https://data.delijn.be/stops/408206", "https://data.delijn.be/stops/408380"], ["https://data.delijn.be/stops/503685", "https://data.delijn.be/stops/508683"], ["https://data.delijn.be/stops/402121", "https://data.delijn.be/stops/402473"], ["https://data.delijn.be/stops/404891", "https://data.delijn.be/stops/408583"], ["https://data.delijn.be/stops/202524", "https://data.delijn.be/stops/203519"], ["https://data.delijn.be/stops/201957", "https://data.delijn.be/stops/202275"], ["https://data.delijn.be/stops/107995", "https://data.delijn.be/stops/108115"], ["https://data.delijn.be/stops/504077", "https://data.delijn.be/stops/509077"], ["https://data.delijn.be/stops/301600", "https://data.delijn.be/stops/304258"], ["https://data.delijn.be/stops/300261", "https://data.delijn.be/stops/304945"], ["https://data.delijn.be/stops/406668", "https://data.delijn.be/stops/406670"], ["https://data.delijn.be/stops/407018", "https://data.delijn.be/stops/408052"], ["https://data.delijn.be/stops/109492", "https://data.delijn.be/stops/109496"], ["https://data.delijn.be/stops/403528", "https://data.delijn.be/stops/410218"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/501212"], ["https://data.delijn.be/stops/301194", "https://data.delijn.be/stops/307614"], ["https://data.delijn.be/stops/301472", "https://data.delijn.be/stops/305663"], ["https://data.delijn.be/stops/505812", "https://data.delijn.be/stops/507344"], ["https://data.delijn.be/stops/206014", "https://data.delijn.be/stops/207386"], ["https://data.delijn.be/stops/504072", "https://data.delijn.be/stops/504851"], ["https://data.delijn.be/stops/106203", "https://data.delijn.be/stops/106301"], ["https://data.delijn.be/stops/403372", "https://data.delijn.be/stops/403388"], ["https://data.delijn.be/stops/301663", "https://data.delijn.be/stops/301674"], ["https://data.delijn.be/stops/503483", "https://data.delijn.be/stops/503484"], ["https://data.delijn.be/stops/305078", "https://data.delijn.be/stops/308927"], ["https://data.delijn.be/stops/308566", "https://data.delijn.be/stops/308567"], ["https://data.delijn.be/stops/503493", "https://data.delijn.be/stops/505137"], ["https://data.delijn.be/stops/107586", "https://data.delijn.be/stops/107719"], ["https://data.delijn.be/stops/208347", "https://data.delijn.be/stops/208785"], ["https://data.delijn.be/stops/209475", "https://data.delijn.be/stops/209476"], ["https://data.delijn.be/stops/303487", "https://data.delijn.be/stops/303488"], ["https://data.delijn.be/stops/102072", "https://data.delijn.be/stops/102073"], ["https://data.delijn.be/stops/401478", "https://data.delijn.be/stops/410182"], ["https://data.delijn.be/stops/207030", "https://data.delijn.be/stops/207730"], ["https://data.delijn.be/stops/301518", "https://data.delijn.be/stops/301524"], ["https://data.delijn.be/stops/409073", "https://data.delijn.be/stops/409147"], ["https://data.delijn.be/stops/404902", "https://data.delijn.be/stops/406722"], ["https://data.delijn.be/stops/503868", "https://data.delijn.be/stops/503871"], ["https://data.delijn.be/stops/406868", "https://data.delijn.be/stops/406871"], ["https://data.delijn.be/stops/405040", "https://data.delijn.be/stops/405045"], ["https://data.delijn.be/stops/101605", "https://data.delijn.be/stops/104565"], ["https://data.delijn.be/stops/103765", "https://data.delijn.be/stops/108755"], ["https://data.delijn.be/stops/204786", "https://data.delijn.be/stops/205124"], ["https://data.delijn.be/stops/302258", "https://data.delijn.be/stops/302259"], ["https://data.delijn.be/stops/300821", "https://data.delijn.be/stops/300836"], ["https://data.delijn.be/stops/201518", "https://data.delijn.be/stops/204924"], ["https://data.delijn.be/stops/503198", "https://data.delijn.be/stops/508198"], ["https://data.delijn.be/stops/106558", "https://data.delijn.be/stops/106559"], ["https://data.delijn.be/stops/205272", "https://data.delijn.be/stops/205646"], ["https://data.delijn.be/stops/217010", "https://data.delijn.be/stops/217011"], ["https://data.delijn.be/stops/408195", "https://data.delijn.be/stops/408441"], ["https://data.delijn.be/stops/205406", "https://data.delijn.be/stops/205413"], ["https://data.delijn.be/stops/308114", "https://data.delijn.be/stops/308115"], ["https://data.delijn.be/stops/102296", "https://data.delijn.be/stops/103084"], ["https://data.delijn.be/stops/102918", "https://data.delijn.be/stops/103270"], ["https://data.delijn.be/stops/303622", "https://data.delijn.be/stops/303623"], ["https://data.delijn.be/stops/105601", "https://data.delijn.be/stops/109737"], ["https://data.delijn.be/stops/505155", "https://data.delijn.be/stops/507073"], ["https://data.delijn.be/stops/104481", "https://data.delijn.be/stops/104482"], ["https://data.delijn.be/stops/101526", "https://data.delijn.be/stops/108798"], ["https://data.delijn.be/stops/200578", "https://data.delijn.be/stops/200579"], ["https://data.delijn.be/stops/400811", "https://data.delijn.be/stops/405666"], ["https://data.delijn.be/stops/200290", "https://data.delijn.be/stops/210048"], ["https://data.delijn.be/stops/200168", "https://data.delijn.be/stops/200720"], ["https://data.delijn.be/stops/305480", "https://data.delijn.be/stops/305858"], ["https://data.delijn.be/stops/106105", "https://data.delijn.be/stops/106106"], ["https://data.delijn.be/stops/204074", "https://data.delijn.be/stops/204075"], ["https://data.delijn.be/stops/206723", "https://data.delijn.be/stops/206724"], ["https://data.delijn.be/stops/202288", "https://data.delijn.be/stops/202289"], ["https://data.delijn.be/stops/403306", "https://data.delijn.be/stops/405640"], ["https://data.delijn.be/stops/102314", "https://data.delijn.be/stops/108145"], ["https://data.delijn.be/stops/305100", "https://data.delijn.be/stops/305105"], ["https://data.delijn.be/stops/407198", "https://data.delijn.be/stops/407385"], ["https://data.delijn.be/stops/206215", "https://data.delijn.be/stops/207215"], ["https://data.delijn.be/stops/206571", "https://data.delijn.be/stops/207573"], ["https://data.delijn.be/stops/301145", "https://data.delijn.be/stops/307695"], ["https://data.delijn.be/stops/403939", "https://data.delijn.be/stops/403998"], ["https://data.delijn.be/stops/502470", "https://data.delijn.be/stops/507481"], ["https://data.delijn.be/stops/103478", "https://data.delijn.be/stops/108927"], ["https://data.delijn.be/stops/204583", "https://data.delijn.be/stops/205154"], ["https://data.delijn.be/stops/307026", "https://data.delijn.be/stops/307571"], ["https://data.delijn.be/stops/505239", "https://data.delijn.be/stops/505900"], ["https://data.delijn.be/stops/407337", "https://data.delijn.be/stops/407632"], ["https://data.delijn.be/stops/405460", "https://data.delijn.be/stops/405655"], ["https://data.delijn.be/stops/206846", "https://data.delijn.be/stops/207845"], ["https://data.delijn.be/stops/401553", "https://data.delijn.be/stops/402034"], ["https://data.delijn.be/stops/402300", "https://data.delijn.be/stops/402367"], ["https://data.delijn.be/stops/107931", "https://data.delijn.be/stops/107932"], ["https://data.delijn.be/stops/407038", "https://data.delijn.be/stops/407040"], ["https://data.delijn.be/stops/302929", "https://data.delijn.be/stops/303998"], ["https://data.delijn.be/stops/402884", "https://data.delijn.be/stops/405536"], ["https://data.delijn.be/stops/510017", "https://data.delijn.be/stops/510020"], ["https://data.delijn.be/stops/502441", "https://data.delijn.be/stops/502749"], ["https://data.delijn.be/stops/506443", "https://data.delijn.be/stops/590334"], ["https://data.delijn.be/stops/206641", "https://data.delijn.be/stops/207641"], ["https://data.delijn.be/stops/501556", "https://data.delijn.be/stops/506635"], ["https://data.delijn.be/stops/307037", "https://data.delijn.be/stops/308832"], ["https://data.delijn.be/stops/501324", "https://data.delijn.be/stops/501358"], ["https://data.delijn.be/stops/102187", "https://data.delijn.be/stops/102754"], ["https://data.delijn.be/stops/405250", "https://data.delijn.be/stops/409645"], ["https://data.delijn.be/stops/104736", "https://data.delijn.be/stops/107337"], ["https://data.delijn.be/stops/106984", "https://data.delijn.be/stops/106985"], ["https://data.delijn.be/stops/102212", "https://data.delijn.be/stops/102213"], ["https://data.delijn.be/stops/401196", "https://data.delijn.be/stops/401239"], ["https://data.delijn.be/stops/402265", "https://data.delijn.be/stops/402484"], ["https://data.delijn.be/stops/101657", "https://data.delijn.be/stops/107847"], ["https://data.delijn.be/stops/503487", "https://data.delijn.be/stops/505427"], ["https://data.delijn.be/stops/202246", "https://data.delijn.be/stops/203247"], ["https://data.delijn.be/stops/400818", "https://data.delijn.be/stops/409641"], ["https://data.delijn.be/stops/101690", "https://data.delijn.be/stops/105766"], ["https://data.delijn.be/stops/302479", "https://data.delijn.be/stops/306814"], ["https://data.delijn.be/stops/501672", "https://data.delijn.be/stops/506673"], ["https://data.delijn.be/stops/303303", "https://data.delijn.be/stops/308737"], ["https://data.delijn.be/stops/210057", "https://data.delijn.be/stops/210061"], ["https://data.delijn.be/stops/403764", "https://data.delijn.be/stops/403772"], ["https://data.delijn.be/stops/102526", "https://data.delijn.be/stops/408203"], ["https://data.delijn.be/stops/203364", "https://data.delijn.be/stops/211849"], ["https://data.delijn.be/stops/301433", "https://data.delijn.be/stops/301442"], ["https://data.delijn.be/stops/302476", "https://data.delijn.be/stops/304875"], ["https://data.delijn.be/stops/406493", "https://data.delijn.be/stops/407513"], ["https://data.delijn.be/stops/102688", "https://data.delijn.be/stops/103980"], ["https://data.delijn.be/stops/106815", "https://data.delijn.be/stops/106843"], ["https://data.delijn.be/stops/101912", "https://data.delijn.be/stops/103208"], ["https://data.delijn.be/stops/503855", "https://data.delijn.be/stops/507944"], ["https://data.delijn.be/stops/104652", "https://data.delijn.be/stops/107978"], ["https://data.delijn.be/stops/200364", "https://data.delijn.be/stops/201985"], ["https://data.delijn.be/stops/301424", "https://data.delijn.be/stops/304868"], ["https://data.delijn.be/stops/406003", "https://data.delijn.be/stops/406111"], ["https://data.delijn.be/stops/200054", "https://data.delijn.be/stops/200478"], ["https://data.delijn.be/stops/305424", "https://data.delijn.be/stops/307831"], ["https://data.delijn.be/stops/300410", "https://data.delijn.be/stops/307491"], ["https://data.delijn.be/stops/504427", "https://data.delijn.be/stops/509426"], ["https://data.delijn.be/stops/202054", "https://data.delijn.be/stops/203055"], ["https://data.delijn.be/stops/101983", "https://data.delijn.be/stops/109014"], ["https://data.delijn.be/stops/305949", "https://data.delijn.be/stops/308259"], ["https://data.delijn.be/stops/300132", "https://data.delijn.be/stops/300134"], ["https://data.delijn.be/stops/109331", "https://data.delijn.be/stops/109333"], ["https://data.delijn.be/stops/301440", "https://data.delijn.be/stops/301661"], ["https://data.delijn.be/stops/403497", "https://data.delijn.be/stops/403498"], ["https://data.delijn.be/stops/301902", "https://data.delijn.be/stops/301903"], ["https://data.delijn.be/stops/408822", "https://data.delijn.be/stops/408831"], ["https://data.delijn.be/stops/503630", "https://data.delijn.be/stops/508620"], ["https://data.delijn.be/stops/403246", "https://data.delijn.be/stops/403531"], ["https://data.delijn.be/stops/103627", "https://data.delijn.be/stops/107737"], ["https://data.delijn.be/stops/504404", "https://data.delijn.be/stops/504835"], ["https://data.delijn.be/stops/508701", "https://data.delijn.be/stops/509938"], ["https://data.delijn.be/stops/107898", "https://data.delijn.be/stops/107901"], ["https://data.delijn.be/stops/406993", "https://data.delijn.be/stops/409036"], ["https://data.delijn.be/stops/200853", "https://data.delijn.be/stops/202324"], ["https://data.delijn.be/stops/308820", "https://data.delijn.be/stops/308937"], ["https://data.delijn.be/stops/101060", "https://data.delijn.be/stops/106853"], ["https://data.delijn.be/stops/504149", "https://data.delijn.be/stops/509191"], ["https://data.delijn.be/stops/503812", "https://data.delijn.be/stops/508805"], ["https://data.delijn.be/stops/302634", "https://data.delijn.be/stops/302644"], ["https://data.delijn.be/stops/101812", "https://data.delijn.be/stops/107974"], ["https://data.delijn.be/stops/208101", "https://data.delijn.be/stops/209101"], ["https://data.delijn.be/stops/302064", "https://data.delijn.be/stops/302065"], ["https://data.delijn.be/stops/203647", "https://data.delijn.be/stops/210045"], ["https://data.delijn.be/stops/503946", "https://data.delijn.be/stops/508159"], ["https://data.delijn.be/stops/302188", "https://data.delijn.be/stops/302192"], ["https://data.delijn.be/stops/407646", "https://data.delijn.be/stops/407719"], ["https://data.delijn.be/stops/202282", "https://data.delijn.be/stops/202633"], ["https://data.delijn.be/stops/502322", "https://data.delijn.be/stops/502334"], ["https://data.delijn.be/stops/201688", "https://data.delijn.be/stops/209642"], ["https://data.delijn.be/stops/503040", "https://data.delijn.be/stops/503043"], ["https://data.delijn.be/stops/206804", "https://data.delijn.be/stops/208347"], ["https://data.delijn.be/stops/302734", "https://data.delijn.be/stops/308597"], ["https://data.delijn.be/stops/108647", "https://data.delijn.be/stops/109790"], ["https://data.delijn.be/stops/101388", "https://data.delijn.be/stops/101828"], ["https://data.delijn.be/stops/302709", "https://data.delijn.be/stops/308861"], ["https://data.delijn.be/stops/306725", "https://data.delijn.be/stops/306726"], ["https://data.delijn.be/stops/304976", "https://data.delijn.be/stops/304977"], ["https://data.delijn.be/stops/109715", "https://data.delijn.be/stops/109716"], ["https://data.delijn.be/stops/502542", "https://data.delijn.be/stops/507541"], ["https://data.delijn.be/stops/207517", "https://data.delijn.be/stops/207598"], ["https://data.delijn.be/stops/108977", "https://data.delijn.be/stops/109462"], ["https://data.delijn.be/stops/103258", "https://data.delijn.be/stops/105730"], ["https://data.delijn.be/stops/402982", "https://data.delijn.be/stops/405594"], ["https://data.delijn.be/stops/102449", "https://data.delijn.be/stops/107981"], ["https://data.delijn.be/stops/304454", "https://data.delijn.be/stops/307695"], ["https://data.delijn.be/stops/102660", "https://data.delijn.be/stops/109796"], ["https://data.delijn.be/stops/407260", "https://data.delijn.be/stops/407273"], ["https://data.delijn.be/stops/506427", "https://data.delijn.be/stops/506431"], ["https://data.delijn.be/stops/105896", "https://data.delijn.be/stops/105901"], ["https://data.delijn.be/stops/200206", "https://data.delijn.be/stops/201206"], ["https://data.delijn.be/stops/200828", "https://data.delijn.be/stops/200831"], ["https://data.delijn.be/stops/401254", "https://data.delijn.be/stops/401255"], ["https://data.delijn.be/stops/204211", "https://data.delijn.be/stops/206312"], ["https://data.delijn.be/stops/300080", "https://data.delijn.be/stops/307343"], ["https://data.delijn.be/stops/503224", "https://data.delijn.be/stops/508222"], ["https://data.delijn.be/stops/300869", "https://data.delijn.be/stops/302232"], ["https://data.delijn.be/stops/506102", "https://data.delijn.be/stops/506367"], ["https://data.delijn.be/stops/208026", "https://data.delijn.be/stops/209404"], ["https://data.delijn.be/stops/208029", "https://data.delijn.be/stops/209029"], ["https://data.delijn.be/stops/101933", "https://data.delijn.be/stops/107741"], ["https://data.delijn.be/stops/301360", "https://data.delijn.be/stops/305530"], ["https://data.delijn.be/stops/408246", "https://data.delijn.be/stops/408247"], ["https://data.delijn.be/stops/405936", "https://data.delijn.be/stops/405998"], ["https://data.delijn.be/stops/404777", "https://data.delijn.be/stops/404786"], ["https://data.delijn.be/stops/503673", "https://data.delijn.be/stops/508223"], ["https://data.delijn.be/stops/303746", "https://data.delijn.be/stops/303747"], ["https://data.delijn.be/stops/108121", "https://data.delijn.be/stops/109659"], ["https://data.delijn.be/stops/303814", "https://data.delijn.be/stops/303821"], ["https://data.delijn.be/stops/500012", "https://data.delijn.be/stops/507223"], ["https://data.delijn.be/stops/403900", "https://data.delijn.be/stops/403933"], ["https://data.delijn.be/stops/200264", "https://data.delijn.be/stops/204933"], ["https://data.delijn.be/stops/104581", "https://data.delijn.be/stops/104582"], ["https://data.delijn.be/stops/209360", "https://data.delijn.be/stops/209376"], ["https://data.delijn.be/stops/202274", "https://data.delijn.be/stops/202669"], ["https://data.delijn.be/stops/405938", "https://data.delijn.be/stops/405945"], ["https://data.delijn.be/stops/200881", "https://data.delijn.be/stops/200895"], ["https://data.delijn.be/stops/204829", "https://data.delijn.be/stops/205421"], ["https://data.delijn.be/stops/308112", "https://data.delijn.be/stops/308114"], ["https://data.delijn.be/stops/301408", "https://data.delijn.be/stops/307024"], ["https://data.delijn.be/stops/202889", "https://data.delijn.be/stops/203889"], ["https://data.delijn.be/stops/305177", "https://data.delijn.be/stops/305192"], ["https://data.delijn.be/stops/306054", "https://data.delijn.be/stops/306060"], ["https://data.delijn.be/stops/300517", "https://data.delijn.be/stops/306174"], ["https://data.delijn.be/stops/500117", "https://data.delijn.be/stops/502926"], ["https://data.delijn.be/stops/302115", "https://data.delijn.be/stops/307131"], ["https://data.delijn.be/stops/300178", "https://data.delijn.be/stops/300192"], ["https://data.delijn.be/stops/504204", "https://data.delijn.be/stops/504205"], ["https://data.delijn.be/stops/503071", "https://data.delijn.be/stops/508945"], ["https://data.delijn.be/stops/202281", "https://data.delijn.be/stops/203281"], ["https://data.delijn.be/stops/305659", "https://data.delijn.be/stops/305667"], ["https://data.delijn.be/stops/505287", "https://data.delijn.be/stops/508820"], ["https://data.delijn.be/stops/204995", "https://data.delijn.be/stops/305923"], ["https://data.delijn.be/stops/505994", "https://data.delijn.be/stops/509813"], ["https://data.delijn.be/stops/302325", "https://data.delijn.be/stops/302975"], ["https://data.delijn.be/stops/206004", "https://data.delijn.be/stops/207004"], ["https://data.delijn.be/stops/401505", "https://data.delijn.be/stops/401506"], ["https://data.delijn.be/stops/301508", "https://data.delijn.be/stops/301509"], ["https://data.delijn.be/stops/402782", "https://data.delijn.be/stops/402783"], ["https://data.delijn.be/stops/106668", "https://data.delijn.be/stops/106669"], ["https://data.delijn.be/stops/201847", "https://data.delijn.be/stops/203653"], ["https://data.delijn.be/stops/405320", "https://data.delijn.be/stops/405321"], ["https://data.delijn.be/stops/204726", "https://data.delijn.be/stops/204727"], ["https://data.delijn.be/stops/501215", "https://data.delijn.be/stops/501216"], ["https://data.delijn.be/stops/400253", "https://data.delijn.be/stops/400334"], ["https://data.delijn.be/stops/108104", "https://data.delijn.be/stops/108106"], ["https://data.delijn.be/stops/200008", "https://data.delijn.be/stops/201009"], ["https://data.delijn.be/stops/307510", "https://data.delijn.be/stops/307816"], ["https://data.delijn.be/stops/304068", "https://data.delijn.be/stops/304083"], ["https://data.delijn.be/stops/103214", "https://data.delijn.be/stops/103748"], ["https://data.delijn.be/stops/208460", "https://data.delijn.be/stops/208513"], ["https://data.delijn.be/stops/506228", "https://data.delijn.be/stops/506681"], ["https://data.delijn.be/stops/405242", "https://data.delijn.be/stops/407313"], ["https://data.delijn.be/stops/107026", "https://data.delijn.be/stops/107029"], ["https://data.delijn.be/stops/405872", "https://data.delijn.be/stops/409763"], ["https://data.delijn.be/stops/504784", "https://data.delijn.be/stops/508517"], ["https://data.delijn.be/stops/305598", "https://data.delijn.be/stops/305599"], ["https://data.delijn.be/stops/408366", "https://data.delijn.be/stops/308249"], ["https://data.delijn.be/stops/102297", "https://data.delijn.be/stops/103084"], ["https://data.delijn.be/stops/304527", "https://data.delijn.be/stops/304528"], ["https://data.delijn.be/stops/202864", "https://data.delijn.be/stops/202865"], ["https://data.delijn.be/stops/301015", "https://data.delijn.be/stops/301016"], ["https://data.delijn.be/stops/207701", "https://data.delijn.be/stops/207885"], ["https://data.delijn.be/stops/504230", "https://data.delijn.be/stops/504231"], ["https://data.delijn.be/stops/305071", "https://data.delijn.be/stops/308295"], ["https://data.delijn.be/stops/504449", "https://data.delijn.be/stops/505299"], ["https://data.delijn.be/stops/206725", "https://data.delijn.be/stops/207979"], ["https://data.delijn.be/stops/305054", "https://data.delijn.be/stops/306933"], ["https://data.delijn.be/stops/302729", "https://data.delijn.be/stops/305634"], ["https://data.delijn.be/stops/504118", "https://data.delijn.be/stops/509396"], ["https://data.delijn.be/stops/303477", "https://data.delijn.be/stops/303478"], ["https://data.delijn.be/stops/206065", "https://data.delijn.be/stops/207119"], ["https://data.delijn.be/stops/503342", "https://data.delijn.be/stops/504863"], ["https://data.delijn.be/stops/102868", "https://data.delijn.be/stops/106443"], ["https://data.delijn.be/stops/102236", "https://data.delijn.be/stops/102906"], ["https://data.delijn.be/stops/504832", "https://data.delijn.be/stops/505919"], ["https://data.delijn.be/stops/504150", "https://data.delijn.be/stops/509193"], ["https://data.delijn.be/stops/301853", "https://data.delijn.be/stops/302551"], ["https://data.delijn.be/stops/501184", "https://data.delijn.be/stops/506677"], ["https://data.delijn.be/stops/103331", "https://data.delijn.be/stops/104570"], ["https://data.delijn.be/stops/408666", "https://data.delijn.be/stops/408766"], ["https://data.delijn.be/stops/101010", "https://data.delijn.be/stops/102955"], ["https://data.delijn.be/stops/302016", "https://data.delijn.be/stops/308756"], ["https://data.delijn.be/stops/204327", "https://data.delijn.be/stops/205544"], ["https://data.delijn.be/stops/406684", "https://data.delijn.be/stops/406688"], ["https://data.delijn.be/stops/406952", "https://data.delijn.be/stops/406972"], ["https://data.delijn.be/stops/307033", "https://data.delijn.be/stops/307613"], ["https://data.delijn.be/stops/302131", "https://data.delijn.be/stops/302143"], ["https://data.delijn.be/stops/200859", "https://data.delijn.be/stops/507315"], ["https://data.delijn.be/stops/403475", "https://data.delijn.be/stops/410062"], ["https://data.delijn.be/stops/404186", "https://data.delijn.be/stops/404280"], ["https://data.delijn.be/stops/104458", "https://data.delijn.be/stops/105982"], ["https://data.delijn.be/stops/202041", "https://data.delijn.be/stops/203041"], ["https://data.delijn.be/stops/103275", "https://data.delijn.be/stops/107850"], ["https://data.delijn.be/stops/200189", "https://data.delijn.be/stops/201198"], ["https://data.delijn.be/stops/407011", "https://data.delijn.be/stops/407069"], ["https://data.delijn.be/stops/200679", "https://data.delijn.be/stops/201459"], ["https://data.delijn.be/stops/201122", "https://data.delijn.be/stops/505612"], ["https://data.delijn.be/stops/102863", "https://data.delijn.be/stops/105933"], ["https://data.delijn.be/stops/504271", "https://data.delijn.be/stops/509271"], ["https://data.delijn.be/stops/108299", "https://data.delijn.be/stops/109305"], ["https://data.delijn.be/stops/301103", "https://data.delijn.be/stops/303340"], ["https://data.delijn.be/stops/208004", "https://data.delijn.be/stops/208635"], ["https://data.delijn.be/stops/502344", "https://data.delijn.be/stops/505419"], ["https://data.delijn.be/stops/503617", "https://data.delijn.be/stops/508615"], ["https://data.delijn.be/stops/507228", "https://data.delijn.be/stops/507232"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/506182"], ["https://data.delijn.be/stops/200833", "https://data.delijn.be/stops/200855"], ["https://data.delijn.be/stops/509006", "https://data.delijn.be/stops/509532"], ["https://data.delijn.be/stops/200168", "https://data.delijn.be/stops/210043"], ["https://data.delijn.be/stops/204495", "https://data.delijn.be/stops/205495"], ["https://data.delijn.be/stops/102550", "https://data.delijn.be/stops/402283"], ["https://data.delijn.be/stops/205830", "https://data.delijn.be/stops/214001"], ["https://data.delijn.be/stops/204044", "https://data.delijn.be/stops/205516"], ["https://data.delijn.be/stops/300319", "https://data.delijn.be/stops/300624"], ["https://data.delijn.be/stops/202036", "https://data.delijn.be/stops/203037"], ["https://data.delijn.be/stops/107962", "https://data.delijn.be/stops/108031"], ["https://data.delijn.be/stops/508142", "https://data.delijn.be/stops/508144"], ["https://data.delijn.be/stops/503649", "https://data.delijn.be/stops/508375"], ["https://data.delijn.be/stops/405134", "https://data.delijn.be/stops/406797"], ["https://data.delijn.be/stops/403525", "https://data.delijn.be/stops/404581"], ["https://data.delijn.be/stops/303856", "https://data.delijn.be/stops/303962"], ["https://data.delijn.be/stops/503017", "https://data.delijn.be/stops/508557"], ["https://data.delijn.be/stops/205111", "https://data.delijn.be/stops/205113"], ["https://data.delijn.be/stops/507472", "https://data.delijn.be/stops/507759"], ["https://data.delijn.be/stops/501004", "https://data.delijn.be/stops/501006"], ["https://data.delijn.be/stops/105307", "https://data.delijn.be/stops/105309"], ["https://data.delijn.be/stops/102472", "https://data.delijn.be/stops/406853"], ["https://data.delijn.be/stops/505964", "https://data.delijn.be/stops/507484"], ["https://data.delijn.be/stops/206175", "https://data.delijn.be/stops/206478"], ["https://data.delijn.be/stops/509217", "https://data.delijn.be/stops/509222"], ["https://data.delijn.be/stops/104804", "https://data.delijn.be/stops/104972"], ["https://data.delijn.be/stops/407002", "https://data.delijn.be/stops/407005"], ["https://data.delijn.be/stops/308521", "https://data.delijn.be/stops/308523"], ["https://data.delijn.be/stops/303637", "https://data.delijn.be/stops/307884"], ["https://data.delijn.be/stops/106771", "https://data.delijn.be/stops/106772"], ["https://data.delijn.be/stops/202189", "https://data.delijn.be/stops/203188"], ["https://data.delijn.be/stops/400648", "https://data.delijn.be/stops/400652"], ["https://data.delijn.be/stops/504291", "https://data.delijn.be/stops/509290"], ["https://data.delijn.be/stops/404518", "https://data.delijn.be/stops/404519"], ["https://data.delijn.be/stops/109859", "https://data.delijn.be/stops/109892"], ["https://data.delijn.be/stops/201560", "https://data.delijn.be/stops/201662"], ["https://data.delijn.be/stops/400873", "https://data.delijn.be/stops/400897"], ["https://data.delijn.be/stops/208378", "https://data.delijn.be/stops/209378"], ["https://data.delijn.be/stops/206721", "https://data.delijn.be/stops/207658"], ["https://data.delijn.be/stops/400070", "https://data.delijn.be/stops/400071"], ["https://data.delijn.be/stops/105023", "https://data.delijn.be/stops/105828"], ["https://data.delijn.be/stops/204351", "https://data.delijn.be/stops/204708"], ["https://data.delijn.be/stops/301980", "https://data.delijn.be/stops/301988"], ["https://data.delijn.be/stops/401922", "https://data.delijn.be/stops/403781"], ["https://data.delijn.be/stops/107019", "https://data.delijn.be/stops/107023"], ["https://data.delijn.be/stops/205366", "https://data.delijn.be/stops/214012"], ["https://data.delijn.be/stops/408067", "https://data.delijn.be/stops/408085"], ["https://data.delijn.be/stops/104119", "https://data.delijn.be/stops/104126"], ["https://data.delijn.be/stops/301919", "https://data.delijn.be/stops/302007"], ["https://data.delijn.be/stops/403232", "https://data.delijn.be/stops/403251"], ["https://data.delijn.be/stops/505927", "https://data.delijn.be/stops/509087"], ["https://data.delijn.be/stops/205184", "https://data.delijn.be/stops/205185"], ["https://data.delijn.be/stops/103139", "https://data.delijn.be/stops/106427"], ["https://data.delijn.be/stops/405440", "https://data.delijn.be/stops/405449"], ["https://data.delijn.be/stops/207845", "https://data.delijn.be/stops/306677"], ["https://data.delijn.be/stops/101788", "https://data.delijn.be/stops/101789"], ["https://data.delijn.be/stops/408690", "https://data.delijn.be/stops/408691"], ["https://data.delijn.be/stops/301500", "https://data.delijn.be/stops/308075"], ["https://data.delijn.be/stops/300788", "https://data.delijn.be/stops/301301"], ["https://data.delijn.be/stops/402876", "https://data.delijn.be/stops/404353"], ["https://data.delijn.be/stops/109752", "https://data.delijn.be/stops/109753"], ["https://data.delijn.be/stops/508500", "https://data.delijn.be/stops/508501"], ["https://data.delijn.be/stops/408024", "https://data.delijn.be/stops/301519"], ["https://data.delijn.be/stops/406961", "https://data.delijn.be/stops/410125"], ["https://data.delijn.be/stops/306338", "https://data.delijn.be/stops/308112"], ["https://data.delijn.be/stops/502687", "https://data.delijn.be/stops/507197"], ["https://data.delijn.be/stops/105011", "https://data.delijn.be/stops/106832"], ["https://data.delijn.be/stops/503275", "https://data.delijn.be/stops/508268"], ["https://data.delijn.be/stops/202203", "https://data.delijn.be/stops/203203"], ["https://data.delijn.be/stops/200947", "https://data.delijn.be/stops/203229"], ["https://data.delijn.be/stops/106912", "https://data.delijn.be/stops/107259"], ["https://data.delijn.be/stops/207066", "https://data.delijn.be/stops/207174"], ["https://data.delijn.be/stops/406186", "https://data.delijn.be/stops/406187"], ["https://data.delijn.be/stops/508297", "https://data.delijn.be/stops/508309"], ["https://data.delijn.be/stops/404703", "https://data.delijn.be/stops/404718"], ["https://data.delijn.be/stops/507748", "https://data.delijn.be/stops/507767"], ["https://data.delijn.be/stops/206577", "https://data.delijn.be/stops/207564"], ["https://data.delijn.be/stops/108914", "https://data.delijn.be/stops/108917"], ["https://data.delijn.be/stops/507274", "https://data.delijn.be/stops/507339"], ["https://data.delijn.be/stops/102230", "https://data.delijn.be/stops/103030"], ["https://data.delijn.be/stops/408088", "https://data.delijn.be/stops/408375"], ["https://data.delijn.be/stops/401600", "https://data.delijn.be/stops/406858"], ["https://data.delijn.be/stops/305024", "https://data.delijn.be/stops/305041"], ["https://data.delijn.be/stops/308465", "https://data.delijn.be/stops/308467"], ["https://data.delijn.be/stops/505045", "https://data.delijn.be/stops/505046"], ["https://data.delijn.be/stops/300684", "https://data.delijn.be/stops/300699"], ["https://data.delijn.be/stops/206009", "https://data.delijn.be/stops/207264"], ["https://data.delijn.be/stops/504349", "https://data.delijn.be/stops/508996"], ["https://data.delijn.be/stops/303816", "https://data.delijn.be/stops/303821"], ["https://data.delijn.be/stops/206884", "https://data.delijn.be/stops/206915"], ["https://data.delijn.be/stops/401123", "https://data.delijn.be/stops/409817"], ["https://data.delijn.be/stops/200053", "https://data.delijn.be/stops/211002"], ["https://data.delijn.be/stops/504749", "https://data.delijn.be/stops/509749"], ["https://data.delijn.be/stops/204239", "https://data.delijn.be/stops/204248"], ["https://data.delijn.be/stops/304431", "https://data.delijn.be/stops/304432"], ["https://data.delijn.be/stops/308492", "https://data.delijn.be/stops/308501"], ["https://data.delijn.be/stops/302091", "https://data.delijn.be/stops/302277"], ["https://data.delijn.be/stops/300295", "https://data.delijn.be/stops/300333"], ["https://data.delijn.be/stops/209195", "https://data.delijn.be/stops/209370"], ["https://data.delijn.be/stops/109657", "https://data.delijn.be/stops/406503"], ["https://data.delijn.be/stops/302970", "https://data.delijn.be/stops/302984"], ["https://data.delijn.be/stops/406714", "https://data.delijn.be/stops/408710"], ["https://data.delijn.be/stops/407842", "https://data.delijn.be/stops/408168"], ["https://data.delijn.be/stops/200203", "https://data.delijn.be/stops/203554"], ["https://data.delijn.be/stops/106528", "https://data.delijn.be/stops/106529"], ["https://data.delijn.be/stops/200263", "https://data.delijn.be/stops/202546"], ["https://data.delijn.be/stops/301326", "https://data.delijn.be/stops/306653"], ["https://data.delijn.be/stops/108652", "https://data.delijn.be/stops/306596"], ["https://data.delijn.be/stops/205040", "https://data.delijn.be/stops/205818"], ["https://data.delijn.be/stops/206102", "https://data.delijn.be/stops/207101"], ["https://data.delijn.be/stops/504278", "https://data.delijn.be/stops/504286"], ["https://data.delijn.be/stops/109631", "https://data.delijn.be/stops/109632"], ["https://data.delijn.be/stops/402262", "https://data.delijn.be/stops/402473"], ["https://data.delijn.be/stops/300105", "https://data.delijn.be/stops/306843"], ["https://data.delijn.be/stops/408592", "https://data.delijn.be/stops/408593"], ["https://data.delijn.be/stops/302133", "https://data.delijn.be/stops/302141"], ["https://data.delijn.be/stops/201606", "https://data.delijn.be/stops/201643"], ["https://data.delijn.be/stops/204223", "https://data.delijn.be/stops/204246"], ["https://data.delijn.be/stops/301077", "https://data.delijn.be/stops/301080"], ["https://data.delijn.be/stops/301665", "https://data.delijn.be/stops/301666"], ["https://data.delijn.be/stops/300875", "https://data.delijn.be/stops/300881"], ["https://data.delijn.be/stops/104300", "https://data.delijn.be/stops/108375"], ["https://data.delijn.be/stops/102072", "https://data.delijn.be/stops/106930"], ["https://data.delijn.be/stops/408361", "https://data.delijn.be/stops/408366"], ["https://data.delijn.be/stops/105434", "https://data.delijn.be/stops/109854"], ["https://data.delijn.be/stops/503381", "https://data.delijn.be/stops/509787"], ["https://data.delijn.be/stops/408862", "https://data.delijn.be/stops/408863"], ["https://data.delijn.be/stops/208094", "https://data.delijn.be/stops/209404"], ["https://data.delijn.be/stops/504190", "https://data.delijn.be/stops/504474"], ["https://data.delijn.be/stops/501023", "https://data.delijn.be/stops/506632"], ["https://data.delijn.be/stops/503235", "https://data.delijn.be/stops/503365"], ["https://data.delijn.be/stops/201880", "https://data.delijn.be/stops/203991"], ["https://data.delijn.be/stops/501593", "https://data.delijn.be/stops/504061"], ["https://data.delijn.be/stops/400686", "https://data.delijn.be/stops/406831"], ["https://data.delijn.be/stops/403140", "https://data.delijn.be/stops/410272"], ["https://data.delijn.be/stops/102566", "https://data.delijn.be/stops/103101"], ["https://data.delijn.be/stops/200404", "https://data.delijn.be/stops/201404"], ["https://data.delijn.be/stops/409320", "https://data.delijn.be/stops/410067"], ["https://data.delijn.be/stops/204525", "https://data.delijn.be/stops/205729"], ["https://data.delijn.be/stops/400561", "https://data.delijn.be/stops/403820"], ["https://data.delijn.be/stops/504054", "https://data.delijn.be/stops/504079"], ["https://data.delijn.be/stops/101341", "https://data.delijn.be/stops/104137"], ["https://data.delijn.be/stops/102645", "https://data.delijn.be/stops/105457"], ["https://data.delijn.be/stops/407854", "https://data.delijn.be/stops/408023"], ["https://data.delijn.be/stops/504783", "https://data.delijn.be/stops/508231"], ["https://data.delijn.be/stops/301085", "https://data.delijn.be/stops/301086"], ["https://data.delijn.be/stops/304289", "https://data.delijn.be/stops/305870"], ["https://data.delijn.be/stops/106891", "https://data.delijn.be/stops/107220"], ["https://data.delijn.be/stops/106393", "https://data.delijn.be/stops/109133"], ["https://data.delijn.be/stops/407687", "https://data.delijn.be/stops/409797"], ["https://data.delijn.be/stops/407707", "https://data.delijn.be/stops/409810"], ["https://data.delijn.be/stops/202179", "https://data.delijn.be/stops/203155"], ["https://data.delijn.be/stops/408530", "https://data.delijn.be/stops/408735"], ["https://data.delijn.be/stops/401060", "https://data.delijn.be/stops/401062"], ["https://data.delijn.be/stops/101666", "https://data.delijn.be/stops/106491"], ["https://data.delijn.be/stops/102431", "https://data.delijn.be/stops/109096"], ["https://data.delijn.be/stops/307904", "https://data.delijn.be/stops/308297"], ["https://data.delijn.be/stops/103510", "https://data.delijn.be/stops/104250"], ["https://data.delijn.be/stops/208546", "https://data.delijn.be/stops/208613"], ["https://data.delijn.be/stops/200171", "https://data.delijn.be/stops/201171"], ["https://data.delijn.be/stops/206085", "https://data.delijn.be/stops/206722"], ["https://data.delijn.be/stops/303392", "https://data.delijn.be/stops/308850"], ["https://data.delijn.be/stops/201917", "https://data.delijn.be/stops/206835"], ["https://data.delijn.be/stops/503632", "https://data.delijn.be/stops/505526"], ["https://data.delijn.be/stops/509404", "https://data.delijn.be/stops/509416"], ["https://data.delijn.be/stops/306666", "https://data.delijn.be/stops/306680"], ["https://data.delijn.be/stops/105987", "https://data.delijn.be/stops/109870"], ["https://data.delijn.be/stops/206251", "https://data.delijn.be/stops/207252"], ["https://data.delijn.be/stops/302173", "https://data.delijn.be/stops/302180"], ["https://data.delijn.be/stops/302651", "https://data.delijn.be/stops/302653"], ["https://data.delijn.be/stops/200191", "https://data.delijn.be/stops/200987"], ["https://data.delijn.be/stops/502428", "https://data.delijn.be/stops/507428"], ["https://data.delijn.be/stops/503400", "https://data.delijn.be/stops/503440"], ["https://data.delijn.be/stops/402603", "https://data.delijn.be/stops/402649"], ["https://data.delijn.be/stops/104095", "https://data.delijn.be/stops/105160"], ["https://data.delijn.be/stops/106257", "https://data.delijn.be/stops/106258"], ["https://data.delijn.be/stops/306336", "https://data.delijn.be/stops/306337"], ["https://data.delijn.be/stops/208664", "https://data.delijn.be/stops/209128"], ["https://data.delijn.be/stops/305503", "https://data.delijn.be/stops/307821"], ["https://data.delijn.be/stops/206912", "https://data.delijn.be/stops/206913"], ["https://data.delijn.be/stops/403613", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/401830", "https://data.delijn.be/stops/406333"], ["https://data.delijn.be/stops/300460", "https://data.delijn.be/stops/300466"], ["https://data.delijn.be/stops/307241", "https://data.delijn.be/stops/307243"], ["https://data.delijn.be/stops/105864", "https://data.delijn.be/stops/105866"], ["https://data.delijn.be/stops/101554", "https://data.delijn.be/stops/107302"], ["https://data.delijn.be/stops/305510", "https://data.delijn.be/stops/305511"], ["https://data.delijn.be/stops/302518", "https://data.delijn.be/stops/305874"], ["https://data.delijn.be/stops/406115", "https://data.delijn.be/stops/406129"], ["https://data.delijn.be/stops/200710", "https://data.delijn.be/stops/200723"], ["https://data.delijn.be/stops/407785", "https://data.delijn.be/stops/307447"], ["https://data.delijn.be/stops/402173", "https://data.delijn.be/stops/402220"], ["https://data.delijn.be/stops/201162", "https://data.delijn.be/stops/201384"], ["https://data.delijn.be/stops/302776", "https://data.delijn.be/stops/302779"], ["https://data.delijn.be/stops/201416", "https://data.delijn.be/stops/201552"], ["https://data.delijn.be/stops/407830", "https://data.delijn.be/stops/407839"], ["https://data.delijn.be/stops/503351", "https://data.delijn.be/stops/503649"], ["https://data.delijn.be/stops/403920", "https://data.delijn.be/stops/405938"], ["https://data.delijn.be/stops/403176", "https://data.delijn.be/stops/403193"], ["https://data.delijn.be/stops/503255", "https://data.delijn.be/stops/508255"], ["https://data.delijn.be/stops/301145", "https://data.delijn.be/stops/304447"], ["https://data.delijn.be/stops/107607", "https://data.delijn.be/stops/107609"], ["https://data.delijn.be/stops/106585", "https://data.delijn.be/stops/106587"], ["https://data.delijn.be/stops/204422", "https://data.delijn.be/stops/205421"], ["https://data.delijn.be/stops/502758", "https://data.delijn.be/stops/507757"], ["https://data.delijn.be/stops/308015", "https://data.delijn.be/stops/308017"], ["https://data.delijn.be/stops/301429", "https://data.delijn.be/stops/301447"], ["https://data.delijn.be/stops/202613", "https://data.delijn.be/stops/203614"], ["https://data.delijn.be/stops/108233", "https://data.delijn.be/stops/108234"], ["https://data.delijn.be/stops/303580", "https://data.delijn.be/stops/303583"], ["https://data.delijn.be/stops/202720", "https://data.delijn.be/stops/203270"], ["https://data.delijn.be/stops/201275", "https://data.delijn.be/stops/201372"], ["https://data.delijn.be/stops/400091", "https://data.delijn.be/stops/400137"], ["https://data.delijn.be/stops/204030", "https://data.delijn.be/stops/205030"], ["https://data.delijn.be/stops/102458", "https://data.delijn.be/stops/406861"], ["https://data.delijn.be/stops/301793", "https://data.delijn.be/stops/301794"], ["https://data.delijn.be/stops/107820", "https://data.delijn.be/stops/108295"], ["https://data.delijn.be/stops/401979", "https://data.delijn.be/stops/401987"], ["https://data.delijn.be/stops/302832", "https://data.delijn.be/stops/302838"], ["https://data.delijn.be/stops/101770", "https://data.delijn.be/stops/108375"], ["https://data.delijn.be/stops/201827", "https://data.delijn.be/stops/208276"], ["https://data.delijn.be/stops/202502", "https://data.delijn.be/stops/203211"], ["https://data.delijn.be/stops/200931", "https://data.delijn.be/stops/203236"], ["https://data.delijn.be/stops/501402", "https://data.delijn.be/stops/501568"], ["https://data.delijn.be/stops/405517", "https://data.delijn.be/stops/407781"], ["https://data.delijn.be/stops/107538", "https://data.delijn.be/stops/303881"], ["https://data.delijn.be/stops/103596", "https://data.delijn.be/stops/109401"], ["https://data.delijn.be/stops/402419", "https://data.delijn.be/stops/404439"], ["https://data.delijn.be/stops/202727", "https://data.delijn.be/stops/203671"], ["https://data.delijn.be/stops/300720", "https://data.delijn.be/stops/300723"], ["https://data.delijn.be/stops/501310", "https://data.delijn.be/stops/506223"], ["https://data.delijn.be/stops/108261", "https://data.delijn.be/stops/109338"], ["https://data.delijn.be/stops/300410", "https://data.delijn.be/stops/304636"], ["https://data.delijn.be/stops/504867", "https://data.delijn.be/stops/505091"], ["https://data.delijn.be/stops/504095", "https://data.delijn.be/stops/504097"], ["https://data.delijn.be/stops/501681", "https://data.delijn.be/stops/506228"], ["https://data.delijn.be/stops/203180", "https://data.delijn.be/stops/204077"], ["https://data.delijn.be/stops/501483", "https://data.delijn.be/stops/509811"], ["https://data.delijn.be/stops/402262", "https://data.delijn.be/stops/402400"], ["https://data.delijn.be/stops/403430", "https://data.delijn.be/stops/403435"], ["https://data.delijn.be/stops/503447", "https://data.delijn.be/stops/503460"], ["https://data.delijn.be/stops/105204", "https://data.delijn.be/stops/108358"], ["https://data.delijn.be/stops/405640", "https://data.delijn.be/stops/410338"], ["https://data.delijn.be/stops/202622", "https://data.delijn.be/stops/203621"], ["https://data.delijn.be/stops/409446", "https://data.delijn.be/stops/409449"], ["https://data.delijn.be/stops/503313", "https://data.delijn.be/stops/504780"], ["https://data.delijn.be/stops/505283", "https://data.delijn.be/stops/505284"], ["https://data.delijn.be/stops/501142", "https://data.delijn.be/stops/506142"], ["https://data.delijn.be/stops/302798", "https://data.delijn.be/stops/307835"], ["https://data.delijn.be/stops/208206", "https://data.delijn.be/stops/209207"], ["https://data.delijn.be/stops/506270", "https://data.delijn.be/stops/506783"], ["https://data.delijn.be/stops/204693", "https://data.delijn.be/stops/205634"], ["https://data.delijn.be/stops/503204", "https://data.delijn.be/stops/505978"], ["https://data.delijn.be/stops/208067", "https://data.delijn.be/stops/209066"], ["https://data.delijn.be/stops/307146", "https://data.delijn.be/stops/307473"], ["https://data.delijn.be/stops/409080", "https://data.delijn.be/stops/409115"], ["https://data.delijn.be/stops/301844", "https://data.delijn.be/stops/302767"], ["https://data.delijn.be/stops/209201", "https://data.delijn.be/stops/209206"], ["https://data.delijn.be/stops/101888", "https://data.delijn.be/stops/109993"], ["https://data.delijn.be/stops/509736", "https://data.delijn.be/stops/509740"], ["https://data.delijn.be/stops/405956", "https://data.delijn.be/stops/405957"], ["https://data.delijn.be/stops/400400", "https://data.delijn.be/stops/400920"], ["https://data.delijn.be/stops/301757", "https://data.delijn.be/stops/308894"], ["https://data.delijn.be/stops/306775", "https://data.delijn.be/stops/306776"], ["https://data.delijn.be/stops/301799", "https://data.delijn.be/stops/304919"], ["https://data.delijn.be/stops/200347", "https://data.delijn.be/stops/201349"], ["https://data.delijn.be/stops/306797", "https://data.delijn.be/stops/307729"], ["https://data.delijn.be/stops/508880", "https://data.delijn.be/stops/508884"], ["https://data.delijn.be/stops/505256", "https://data.delijn.be/stops/508670"], ["https://data.delijn.be/stops/106267", "https://data.delijn.be/stops/106342"], ["https://data.delijn.be/stops/502089", "https://data.delijn.be/stops/507089"], ["https://data.delijn.be/stops/207799", "https://data.delijn.be/stops/209191"], ["https://data.delijn.be/stops/103205", "https://data.delijn.be/stops/106437"], ["https://data.delijn.be/stops/202345", "https://data.delijn.be/stops/205975"], ["https://data.delijn.be/stops/503808", "https://data.delijn.be/stops/508808"], ["https://data.delijn.be/stops/303105", "https://data.delijn.be/stops/303111"], ["https://data.delijn.be/stops/205243", "https://data.delijn.be/stops/207320"], ["https://data.delijn.be/stops/200677", "https://data.delijn.be/stops/200678"], ["https://data.delijn.be/stops/200823", "https://data.delijn.be/stops/200865"], ["https://data.delijn.be/stops/507570", "https://data.delijn.be/stops/507571"], ["https://data.delijn.be/stops/500001", "https://data.delijn.be/stops/507099"], ["https://data.delijn.be/stops/404253", "https://data.delijn.be/stops/404309"], ["https://data.delijn.be/stops/205820", "https://data.delijn.be/stops/205821"], ["https://data.delijn.be/stops/106088", "https://data.delijn.be/stops/106089"], ["https://data.delijn.be/stops/300828", "https://data.delijn.be/stops/300831"], ["https://data.delijn.be/stops/101211", "https://data.delijn.be/stops/102647"], ["https://data.delijn.be/stops/108527", "https://data.delijn.be/stops/108529"], ["https://data.delijn.be/stops/402266", "https://data.delijn.be/stops/402267"], ["https://data.delijn.be/stops/303066", "https://data.delijn.be/stops/303093"], ["https://data.delijn.be/stops/300002", "https://data.delijn.be/stops/302527"], ["https://data.delijn.be/stops/405209", "https://data.delijn.be/stops/405289"], ["https://data.delijn.be/stops/403103", "https://data.delijn.be/stops/403117"], ["https://data.delijn.be/stops/102865", "https://data.delijn.be/stops/103586"], ["https://data.delijn.be/stops/200397", "https://data.delijn.be/stops/208331"], ["https://data.delijn.be/stops/503789", "https://data.delijn.be/stops/508850"], ["https://data.delijn.be/stops/106141", "https://data.delijn.be/stops/106143"], ["https://data.delijn.be/stops/301990", "https://data.delijn.be/stops/303172"], ["https://data.delijn.be/stops/208453", "https://data.delijn.be/stops/209445"], ["https://data.delijn.be/stops/104466", "https://data.delijn.be/stops/106293"], ["https://data.delijn.be/stops/405118", "https://data.delijn.be/stops/408154"], ["https://data.delijn.be/stops/403986", "https://data.delijn.be/stops/404019"], ["https://data.delijn.be/stops/407455", "https://data.delijn.be/stops/407457"], ["https://data.delijn.be/stops/202723", "https://data.delijn.be/stops/202724"], ["https://data.delijn.be/stops/106580", "https://data.delijn.be/stops/108440"], ["https://data.delijn.be/stops/105193", "https://data.delijn.be/stops/105194"], ["https://data.delijn.be/stops/503116", "https://data.delijn.be/stops/505105"], ["https://data.delijn.be/stops/101344", "https://data.delijn.be/stops/108366"], ["https://data.delijn.be/stops/502044", "https://data.delijn.be/stops/502591"], ["https://data.delijn.be/stops/206490", "https://data.delijn.be/stops/207490"], ["https://data.delijn.be/stops/102251", "https://data.delijn.be/stops/109033"], ["https://data.delijn.be/stops/208192", "https://data.delijn.be/stops/208406"], ["https://data.delijn.be/stops/303573", "https://data.delijn.be/stops/306398"], ["https://data.delijn.be/stops/303995", "https://data.delijn.be/stops/306188"], ["https://data.delijn.be/stops/306614", "https://data.delijn.be/stops/306624"], ["https://data.delijn.be/stops/300514", "https://data.delijn.be/stops/302788"], ["https://data.delijn.be/stops/405531", "https://data.delijn.be/stops/409457"], ["https://data.delijn.be/stops/106200", "https://data.delijn.be/stops/106203"], ["https://data.delijn.be/stops/302996", "https://data.delijn.be/stops/303042"], ["https://data.delijn.be/stops/108516", "https://data.delijn.be/stops/108518"], ["https://data.delijn.be/stops/405910", "https://data.delijn.be/stops/405977"], ["https://data.delijn.be/stops/502397", "https://data.delijn.be/stops/507413"], ["https://data.delijn.be/stops/404249", "https://data.delijn.be/stops/404311"], ["https://data.delijn.be/stops/301310", "https://data.delijn.be/stops/301311"], ["https://data.delijn.be/stops/102935", "https://data.delijn.be/stops/104363"], ["https://data.delijn.be/stops/409089", "https://data.delijn.be/stops/409210"], ["https://data.delijn.be/stops/504025", "https://data.delijn.be/stops/504394"], ["https://data.delijn.be/stops/404612", "https://data.delijn.be/stops/404996"], ["https://data.delijn.be/stops/501264", "https://data.delijn.be/stops/501568"], ["https://data.delijn.be/stops/206284", "https://data.delijn.be/stops/207285"], ["https://data.delijn.be/stops/201840", "https://data.delijn.be/stops/203321"], ["https://data.delijn.be/stops/200436", "https://data.delijn.be/stops/200437"], ["https://data.delijn.be/stops/506284", "https://data.delijn.be/stops/506349"], ["https://data.delijn.be/stops/306699", "https://data.delijn.be/stops/306701"], ["https://data.delijn.be/stops/409509", "https://data.delijn.be/stops/409511"], ["https://data.delijn.be/stops/108415", "https://data.delijn.be/stops/108420"], ["https://data.delijn.be/stops/202751", "https://data.delijn.be/stops/202758"], ["https://data.delijn.be/stops/302874", "https://data.delijn.be/stops/306402"], ["https://data.delijn.be/stops/405737", "https://data.delijn.be/stops/410143"], ["https://data.delijn.be/stops/202788", "https://data.delijn.be/stops/203787"], ["https://data.delijn.be/stops/503219", "https://data.delijn.be/stops/508219"], ["https://data.delijn.be/stops/204026", "https://data.delijn.be/stops/205025"], ["https://data.delijn.be/stops/506435", "https://data.delijn.be/stops/506671"], ["https://data.delijn.be/stops/206742", "https://data.delijn.be/stops/207986"], ["https://data.delijn.be/stops/106649", "https://data.delijn.be/stops/106655"], ["https://data.delijn.be/stops/104422", "https://data.delijn.be/stops/205823"], ["https://data.delijn.be/stops/507019", "https://data.delijn.be/stops/507154"], ["https://data.delijn.be/stops/102166", "https://data.delijn.be/stops/105809"], ["https://data.delijn.be/stops/104338", "https://data.delijn.be/stops/105799"], ["https://data.delijn.be/stops/406128", "https://data.delijn.be/stops/406983"], ["https://data.delijn.be/stops/301445", "https://data.delijn.be/stops/307608"], ["https://data.delijn.be/stops/201034", "https://data.delijn.be/stops/211094"], ["https://data.delijn.be/stops/507244", "https://data.delijn.be/stops/507246"], ["https://data.delijn.be/stops/500943", "https://data.delijn.be/stops/503987"], ["https://data.delijn.be/stops/300019", "https://data.delijn.be/stops/306092"], ["https://data.delijn.be/stops/503363", "https://data.delijn.be/stops/509771"], ["https://data.delijn.be/stops/305499", "https://data.delijn.be/stops/307989"], ["https://data.delijn.be/stops/501551", "https://data.delijn.be/stops/502222"], ["https://data.delijn.be/stops/201523", "https://data.delijn.be/stops/210131"], ["https://data.delijn.be/stops/502607", "https://data.delijn.be/stops/507607"], ["https://data.delijn.be/stops/202639", "https://data.delijn.be/stops/214016"], ["https://data.delijn.be/stops/202951", "https://data.delijn.be/stops/203952"], ["https://data.delijn.be/stops/206061", "https://data.delijn.be/stops/206500"], ["https://data.delijn.be/stops/206204", "https://data.delijn.be/stops/206205"], ["https://data.delijn.be/stops/503612", "https://data.delijn.be/stops/508602"], ["https://data.delijn.be/stops/408195", "https://data.delijn.be/stops/408196"], ["https://data.delijn.be/stops/202923", "https://data.delijn.be/stops/208694"], ["https://data.delijn.be/stops/400648", "https://data.delijn.be/stops/402539"], ["https://data.delijn.be/stops/306632", "https://data.delijn.be/stops/306633"], ["https://data.delijn.be/stops/301522", "https://data.delijn.be/stops/301524"], ["https://data.delijn.be/stops/205134", "https://data.delijn.be/stops/205135"], ["https://data.delijn.be/stops/305304", "https://data.delijn.be/stops/305311"], ["https://data.delijn.be/stops/206091", "https://data.delijn.be/stops/207094"], ["https://data.delijn.be/stops/107274", "https://data.delijn.be/stops/107392"], ["https://data.delijn.be/stops/305424", "https://data.delijn.be/stops/305434"], ["https://data.delijn.be/stops/107823", "https://data.delijn.be/stops/107827"], ["https://data.delijn.be/stops/208395", "https://data.delijn.be/stops/208421"], ["https://data.delijn.be/stops/200338", "https://data.delijn.be/stops/201281"], ["https://data.delijn.be/stops/202714", "https://data.delijn.be/stops/203065"], ["https://data.delijn.be/stops/305743", "https://data.delijn.be/stops/305747"], ["https://data.delijn.be/stops/204055", "https://data.delijn.be/stops/205057"], ["https://data.delijn.be/stops/204351", "https://data.delijn.be/stops/205706"], ["https://data.delijn.be/stops/502190", "https://data.delijn.be/stops/505982"], ["https://data.delijn.be/stops/300759", "https://data.delijn.be/stops/300760"], ["https://data.delijn.be/stops/105374", "https://data.delijn.be/stops/107501"], ["https://data.delijn.be/stops/206984", "https://data.delijn.be/stops/207983"], ["https://data.delijn.be/stops/201774", "https://data.delijn.be/stops/208304"], ["https://data.delijn.be/stops/108810", "https://data.delijn.be/stops/108812"], ["https://data.delijn.be/stops/108268", "https://data.delijn.be/stops/109371"], ["https://data.delijn.be/stops/408922", "https://data.delijn.be/stops/408926"], ["https://data.delijn.be/stops/503670", "https://data.delijn.be/stops/508674"], ["https://data.delijn.be/stops/102834", "https://data.delijn.be/stops/102837"], ["https://data.delijn.be/stops/400855", "https://data.delijn.be/stops/409651"], ["https://data.delijn.be/stops/204073", "https://data.delijn.be/stops/204235"], ["https://data.delijn.be/stops/104866", "https://data.delijn.be/stops/107852"], ["https://data.delijn.be/stops/505254", "https://data.delijn.be/stops/508056"], ["https://data.delijn.be/stops/200156", "https://data.delijn.be/stops/200545"], ["https://data.delijn.be/stops/201569", "https://data.delijn.be/stops/201960"], ["https://data.delijn.be/stops/200007", "https://data.delijn.be/stops/200008"], ["https://data.delijn.be/stops/408004", "https://data.delijn.be/stops/408005"], ["https://data.delijn.be/stops/201239", "https://data.delijn.be/stops/202241"], ["https://data.delijn.be/stops/403297", "https://data.delijn.be/stops/403309"], ["https://data.delijn.be/stops/503608", "https://data.delijn.be/stops/504992"], ["https://data.delijn.be/stops/404380", "https://data.delijn.be/stops/404381"], ["https://data.delijn.be/stops/300499", "https://data.delijn.be/stops/300514"], ["https://data.delijn.be/stops/206436", "https://data.delijn.be/stops/209688"], ["https://data.delijn.be/stops/408095", "https://data.delijn.be/stops/409109"], ["https://data.delijn.be/stops/501031", "https://data.delijn.be/stops/501038"], ["https://data.delijn.be/stops/402330", "https://data.delijn.be/stops/402766"], ["https://data.delijn.be/stops/204433", "https://data.delijn.be/stops/205433"], ["https://data.delijn.be/stops/503778", "https://data.delijn.be/stops/503780"], ["https://data.delijn.be/stops/200443", "https://data.delijn.be/stops/203134"], ["https://data.delijn.be/stops/300656", "https://data.delijn.be/stops/301917"], ["https://data.delijn.be/stops/304400", "https://data.delijn.be/stops/307414"], ["https://data.delijn.be/stops/204429", "https://data.delijn.be/stops/204443"], ["https://data.delijn.be/stops/402765", "https://data.delijn.be/stops/402792"], ["https://data.delijn.be/stops/403296", "https://data.delijn.be/stops/403308"], ["https://data.delijn.be/stops/304976", "https://data.delijn.be/stops/308034"], ["https://data.delijn.be/stops/403714", "https://data.delijn.be/stops/403719"], ["https://data.delijn.be/stops/502554", "https://data.delijn.be/stops/507554"], ["https://data.delijn.be/stops/103688", "https://data.delijn.be/stops/109433"], ["https://data.delijn.be/stops/408684", "https://data.delijn.be/stops/408687"], ["https://data.delijn.be/stops/106108", "https://data.delijn.be/stops/106109"], ["https://data.delijn.be/stops/504632", "https://data.delijn.be/stops/509335"], ["https://data.delijn.be/stops/202292", "https://data.delijn.be/stops/202294"], ["https://data.delijn.be/stops/209082", "https://data.delijn.be/stops/209701"], ["https://data.delijn.be/stops/209199", "https://data.delijn.be/stops/209200"], ["https://data.delijn.be/stops/407624", "https://data.delijn.be/stops/409879"], ["https://data.delijn.be/stops/105665", "https://data.delijn.be/stops/105670"], ["https://data.delijn.be/stops/301953", "https://data.delijn.be/stops/304183"], ["https://data.delijn.be/stops/105664", "https://data.delijn.be/stops/105667"], ["https://data.delijn.be/stops/408228", "https://data.delijn.be/stops/408412"], ["https://data.delijn.be/stops/501140", "https://data.delijn.be/stops/501512"], ["https://data.delijn.be/stops/200902", "https://data.delijn.be/stops/505602"], ["https://data.delijn.be/stops/102062", "https://data.delijn.be/stops/102066"], ["https://data.delijn.be/stops/104307", "https://data.delijn.be/stops/109746"], ["https://data.delijn.be/stops/204150", "https://data.delijn.be/stops/205150"], ["https://data.delijn.be/stops/400254", "https://data.delijn.be/stops/405579"], ["https://data.delijn.be/stops/302204", "https://data.delijn.be/stops/302207"], ["https://data.delijn.be/stops/206920", "https://data.delijn.be/stops/207381"], ["https://data.delijn.be/stops/204919", "https://data.delijn.be/stops/205912"], ["https://data.delijn.be/stops/200618", "https://data.delijn.be/stops/209738"], ["https://data.delijn.be/stops/202086", "https://data.delijn.be/stops/203087"], ["https://data.delijn.be/stops/503435", "https://data.delijn.be/stops/508535"], ["https://data.delijn.be/stops/503003", "https://data.delijn.be/stops/508003"], ["https://data.delijn.be/stops/502288", "https://data.delijn.be/stops/507529"], ["https://data.delijn.be/stops/101173", "https://data.delijn.be/stops/102305"], ["https://data.delijn.be/stops/501238", "https://data.delijn.be/stops/501244"], ["https://data.delijn.be/stops/405465", "https://data.delijn.be/stops/408570"], ["https://data.delijn.be/stops/101066", "https://data.delijn.be/stops/105963"], ["https://data.delijn.be/stops/402206", "https://data.delijn.be/stops/402480"], ["https://data.delijn.be/stops/408672", "https://data.delijn.be/stops/408752"], ["https://data.delijn.be/stops/201948", "https://data.delijn.be/stops/202464"], ["https://data.delijn.be/stops/403532", "https://data.delijn.be/stops/405328"], ["https://data.delijn.be/stops/303168", "https://data.delijn.be/stops/303173"], ["https://data.delijn.be/stops/300179", "https://data.delijn.be/stops/300211"], ["https://data.delijn.be/stops/301848", "https://data.delijn.be/stops/301849"], ["https://data.delijn.be/stops/402469", "https://data.delijn.be/stops/410073"], ["https://data.delijn.be/stops/208014", "https://data.delijn.be/stops/209014"], ["https://data.delijn.be/stops/503898", "https://data.delijn.be/stops/505644"], ["https://data.delijn.be/stops/401827", "https://data.delijn.be/stops/406019"], ["https://data.delijn.be/stops/504155", "https://data.delijn.be/stops/504522"], ["https://data.delijn.be/stops/305236", "https://data.delijn.be/stops/305237"], ["https://data.delijn.be/stops/406210", "https://data.delijn.be/stops/406213"], ["https://data.delijn.be/stops/210054", "https://data.delijn.be/stops/211054"], ["https://data.delijn.be/stops/106268", "https://data.delijn.be/stops/106342"], ["https://data.delijn.be/stops/104365", "https://data.delijn.be/stops/104370"], ["https://data.delijn.be/stops/107695", "https://data.delijn.be/stops/108935"], ["https://data.delijn.be/stops/205070", "https://data.delijn.be/stops/205071"], ["https://data.delijn.be/stops/206218", "https://data.delijn.be/stops/207489"], ["https://data.delijn.be/stops/209211", "https://data.delijn.be/stops/209429"], ["https://data.delijn.be/stops/203052", "https://data.delijn.be/stops/203053"], ["https://data.delijn.be/stops/301956", "https://data.delijn.be/stops/301958"], ["https://data.delijn.be/stops/101831", "https://data.delijn.be/stops/102423"], ["https://data.delijn.be/stops/202746", "https://data.delijn.be/stops/206569"], ["https://data.delijn.be/stops/407160", "https://data.delijn.be/stops/407192"], ["https://data.delijn.be/stops/206628", "https://data.delijn.be/stops/208572"], ["https://data.delijn.be/stops/202596", "https://data.delijn.be/stops/203595"], ["https://data.delijn.be/stops/102594", "https://data.delijn.be/stops/107812"], ["https://data.delijn.be/stops/201847", "https://data.delijn.be/stops/202653"], ["https://data.delijn.be/stops/109054", "https://data.delijn.be/stops/109066"], ["https://data.delijn.be/stops/209278", "https://data.delijn.be/stops/209494"], ["https://data.delijn.be/stops/206726", "https://data.delijn.be/stops/207992"], ["https://data.delijn.be/stops/101804", "https://data.delijn.be/stops/104647"], ["https://data.delijn.be/stops/206125", "https://data.delijn.be/stops/207639"], ["https://data.delijn.be/stops/203112", "https://data.delijn.be/stops/205797"], ["https://data.delijn.be/stops/204137", "https://data.delijn.be/stops/204138"], ["https://data.delijn.be/stops/201109", "https://data.delijn.be/stops/203645"], ["https://data.delijn.be/stops/202065", "https://data.delijn.be/stops/203065"], ["https://data.delijn.be/stops/300565", "https://data.delijn.be/stops/300566"], ["https://data.delijn.be/stops/206861", "https://data.delijn.be/stops/207646"], ["https://data.delijn.be/stops/301443", "https://data.delijn.be/stops/301445"], ["https://data.delijn.be/stops/405298", "https://data.delijn.be/stops/410165"], ["https://data.delijn.be/stops/404782", "https://data.delijn.be/stops/409572"], ["https://data.delijn.be/stops/106495", "https://data.delijn.be/stops/106497"], ["https://data.delijn.be/stops/300424", "https://data.delijn.be/stops/308063"], ["https://data.delijn.be/stops/408387", "https://data.delijn.be/stops/408388"], ["https://data.delijn.be/stops/204242", "https://data.delijn.be/stops/204458"], ["https://data.delijn.be/stops/406555", "https://data.delijn.be/stops/406631"], ["https://data.delijn.be/stops/205564", "https://data.delijn.be/stops/205565"], ["https://data.delijn.be/stops/300414", "https://data.delijn.be/stops/307892"], ["https://data.delijn.be/stops/503865", "https://data.delijn.be/stops/508963"], ["https://data.delijn.be/stops/300575", "https://data.delijn.be/stops/300589"], ["https://data.delijn.be/stops/108371", "https://data.delijn.be/stops/108462"], ["https://data.delijn.be/stops/505591", "https://data.delijn.be/stops/505825"], ["https://data.delijn.be/stops/202744", "https://data.delijn.be/stops/206937"], ["https://data.delijn.be/stops/201374", "https://data.delijn.be/stops/201548"], ["https://data.delijn.be/stops/402369", "https://data.delijn.be/stops/405572"], ["https://data.delijn.be/stops/401150", "https://data.delijn.be/stops/406299"], ["https://data.delijn.be/stops/409287", "https://data.delijn.be/stops/409318"], ["https://data.delijn.be/stops/401769", "https://data.delijn.be/stops/401832"], ["https://data.delijn.be/stops/208089", "https://data.delijn.be/stops/208304"], ["https://data.delijn.be/stops/501552", "https://data.delijn.be/stops/506261"], ["https://data.delijn.be/stops/402510", "https://data.delijn.be/stops/402512"], ["https://data.delijn.be/stops/102842", "https://data.delijn.be/stops/103048"], ["https://data.delijn.be/stops/207176", "https://data.delijn.be/stops/207447"], ["https://data.delijn.be/stops/204370", "https://data.delijn.be/stops/205760"], ["https://data.delijn.be/stops/210092", "https://data.delijn.be/stops/210093"], ["https://data.delijn.be/stops/403939", "https://data.delijn.be/stops/404030"], ["https://data.delijn.be/stops/206526", "https://data.delijn.be/stops/216006"], ["https://data.delijn.be/stops/403946", "https://data.delijn.be/stops/403991"], ["https://data.delijn.be/stops/404592", "https://data.delijn.be/stops/404594"], ["https://data.delijn.be/stops/305646", "https://data.delijn.be/stops/307102"], ["https://data.delijn.be/stops/505935", "https://data.delijn.be/stops/508433"], ["https://data.delijn.be/stops/501627", "https://data.delijn.be/stops/505541"], ["https://data.delijn.be/stops/403521", "https://data.delijn.be/stops/403522"], ["https://data.delijn.be/stops/304994", "https://data.delijn.be/stops/305034"], ["https://data.delijn.be/stops/300430", "https://data.delijn.be/stops/307409"], ["https://data.delijn.be/stops/405530", "https://data.delijn.be/stops/407275"], ["https://data.delijn.be/stops/208777", "https://data.delijn.be/stops/209499"], ["https://data.delijn.be/stops/409045", "https://data.delijn.be/stops/409443"], ["https://data.delijn.be/stops/204558", "https://data.delijn.be/stops/205247"], ["https://data.delijn.be/stops/304116", "https://data.delijn.be/stops/305340"], ["https://data.delijn.be/stops/405683", "https://data.delijn.be/stops/405866"], ["https://data.delijn.be/stops/505416", "https://data.delijn.be/stops/507369"], ["https://data.delijn.be/stops/109998", "https://data.delijn.be/stops/406833"], ["https://data.delijn.be/stops/204132", "https://data.delijn.be/stops/205132"], ["https://data.delijn.be/stops/400654", "https://data.delijn.be/stops/400948"], ["https://data.delijn.be/stops/209838", "https://data.delijn.be/stops/219015"], ["https://data.delijn.be/stops/201136", "https://data.delijn.be/stops/201137"], ["https://data.delijn.be/stops/108744", "https://data.delijn.be/stops/109708"], ["https://data.delijn.be/stops/504642", "https://data.delijn.be/stops/509648"], ["https://data.delijn.be/stops/301930", "https://data.delijn.be/stops/304524"], ["https://data.delijn.be/stops/106248", "https://data.delijn.be/stops/106249"], ["https://data.delijn.be/stops/402408", "https://data.delijn.be/stops/402431"], ["https://data.delijn.be/stops/102738", "https://data.delijn.be/stops/105523"], ["https://data.delijn.be/stops/502640", "https://data.delijn.be/stops/502793"], ["https://data.delijn.be/stops/109501", "https://data.delijn.be/stops/109708"], ["https://data.delijn.be/stops/203744", "https://data.delijn.be/stops/203812"], ["https://data.delijn.be/stops/103600", "https://data.delijn.be/stops/103601"], ["https://data.delijn.be/stops/406361", "https://data.delijn.be/stops/407031"], ["https://data.delijn.be/stops/405678", "https://data.delijn.be/stops/405685"], ["https://data.delijn.be/stops/305687", "https://data.delijn.be/stops/305711"], ["https://data.delijn.be/stops/301827", "https://data.delijn.be/stops/308601"], ["https://data.delijn.be/stops/201692", "https://data.delijn.be/stops/201886"], ["https://data.delijn.be/stops/206675", "https://data.delijn.be/stops/209162"], ["https://data.delijn.be/stops/305445", "https://data.delijn.be/stops/306702"], ["https://data.delijn.be/stops/106518", "https://data.delijn.be/stops/106519"], ["https://data.delijn.be/stops/508302", "https://data.delijn.be/stops/509908"], ["https://data.delijn.be/stops/404702", "https://data.delijn.be/stops/404829"], ["https://data.delijn.be/stops/501166", "https://data.delijn.be/stops/509837"], ["https://data.delijn.be/stops/200638", "https://data.delijn.be/stops/211054"], ["https://data.delijn.be/stops/307650", "https://data.delijn.be/stops/307692"], ["https://data.delijn.be/stops/404262", "https://data.delijn.be/stops/409343"], ["https://data.delijn.be/stops/201936", "https://data.delijn.be/stops/207408"], ["https://data.delijn.be/stops/302689", "https://data.delijn.be/stops/302690"], ["https://data.delijn.be/stops/108465", "https://data.delijn.be/stops/109881"], ["https://data.delijn.be/stops/507372", "https://data.delijn.be/stops/507555"], ["https://data.delijn.be/stops/202835", "https://data.delijn.be/stops/203836"], ["https://data.delijn.be/stops/408519", "https://data.delijn.be/stops/408524"], ["https://data.delijn.be/stops/405101", "https://data.delijn.be/stops/408257"], ["https://data.delijn.be/stops/208581", "https://data.delijn.be/stops/307326"], ["https://data.delijn.be/stops/103528", "https://data.delijn.be/stops/103529"], ["https://data.delijn.be/stops/304635", "https://data.delijn.be/stops/304636"], ["https://data.delijn.be/stops/401870", "https://data.delijn.be/stops/406123"], ["https://data.delijn.be/stops/408529", "https://data.delijn.be/stops/408792"], ["https://data.delijn.be/stops/507050", "https://data.delijn.be/stops/507591"], ["https://data.delijn.be/stops/200867", "https://data.delijn.be/stops/202337"], ["https://data.delijn.be/stops/101970", "https://data.delijn.be/stops/107120"], ["https://data.delijn.be/stops/208479", "https://data.delijn.be/stops/208501"], ["https://data.delijn.be/stops/410256", "https://data.delijn.be/stops/410257"], ["https://data.delijn.be/stops/206026", "https://data.delijn.be/stops/217002"], ["https://data.delijn.be/stops/407190", "https://data.delijn.be/stops/407191"], ["https://data.delijn.be/stops/106991", "https://data.delijn.be/stops/106992"], ["https://data.delijn.be/stops/200578", "https://data.delijn.be/stops/201578"], ["https://data.delijn.be/stops/200374", "https://data.delijn.be/stops/201275"], ["https://data.delijn.be/stops/106637", "https://data.delijn.be/stops/106639"], ["https://data.delijn.be/stops/404772", "https://data.delijn.be/stops/404945"], ["https://data.delijn.be/stops/102131", "https://data.delijn.be/stops/105722"], ["https://data.delijn.be/stops/400037", "https://data.delijn.be/stops/402791"], ["https://data.delijn.be/stops/403085", "https://data.delijn.be/stops/403411"], ["https://data.delijn.be/stops/403073", "https://data.delijn.be/stops/403457"], ["https://data.delijn.be/stops/103185", "https://data.delijn.be/stops/103186"], ["https://data.delijn.be/stops/105742", "https://data.delijn.be/stops/305791"], ["https://data.delijn.be/stops/400259", "https://data.delijn.be/stops/405537"], ["https://data.delijn.be/stops/202170", "https://data.delijn.be/stops/211043"], ["https://data.delijn.be/stops/501108", "https://data.delijn.be/stops/501493"], ["https://data.delijn.be/stops/104698", "https://data.delijn.be/stops/107359"], ["https://data.delijn.be/stops/501187", "https://data.delijn.be/stops/505747"], ["https://data.delijn.be/stops/300351", "https://data.delijn.be/stops/304694"], ["https://data.delijn.be/stops/305426", "https://data.delijn.be/stops/305427"], ["https://data.delijn.be/stops/201255", "https://data.delijn.be/stops/201258"], ["https://data.delijn.be/stops/109871", "https://data.delijn.be/stops/109872"], ["https://data.delijn.be/stops/108300", "https://data.delijn.be/stops/108310"], ["https://data.delijn.be/stops/203220", "https://data.delijn.be/stops/204795"], ["https://data.delijn.be/stops/208430", "https://data.delijn.be/stops/209430"], ["https://data.delijn.be/stops/505428", "https://data.delijn.be/stops/509022"], ["https://data.delijn.be/stops/301814", "https://data.delijn.be/stops/308829"], ["https://data.delijn.be/stops/105277", "https://data.delijn.be/stops/105711"], ["https://data.delijn.be/stops/406295", "https://data.delijn.be/stops/410359"], ["https://data.delijn.be/stops/200921", "https://data.delijn.be/stops/200945"], ["https://data.delijn.be/stops/108967", "https://data.delijn.be/stops/401933"], ["https://data.delijn.be/stops/304135", "https://data.delijn.be/stops/304136"], ["https://data.delijn.be/stops/200002", "https://data.delijn.be/stops/211857"], ["https://data.delijn.be/stops/207796", "https://data.delijn.be/stops/208757"], ["https://data.delijn.be/stops/206495", "https://data.delijn.be/stops/207496"], ["https://data.delijn.be/stops/207776", "https://data.delijn.be/stops/208186"], ["https://data.delijn.be/stops/202866", "https://data.delijn.be/stops/203865"], ["https://data.delijn.be/stops/206290", "https://data.delijn.be/stops/207258"], ["https://data.delijn.be/stops/403148", "https://data.delijn.be/stops/403316"], ["https://data.delijn.be/stops/505672", "https://data.delijn.be/stops/507353"], ["https://data.delijn.be/stops/406623", "https://data.delijn.be/stops/406684"], ["https://data.delijn.be/stops/301909", "https://data.delijn.be/stops/306257"], ["https://data.delijn.be/stops/102932", "https://data.delijn.be/stops/106059"], ["https://data.delijn.be/stops/403458", "https://data.delijn.be/stops/410068"], ["https://data.delijn.be/stops/402433", "https://data.delijn.be/stops/402434"], ["https://data.delijn.be/stops/402076", "https://data.delijn.be/stops/402112"], ["https://data.delijn.be/stops/205306", "https://data.delijn.be/stops/205307"], ["https://data.delijn.be/stops/503187", "https://data.delijn.be/stops/508190"], ["https://data.delijn.be/stops/409696", "https://data.delijn.be/stops/409700"], ["https://data.delijn.be/stops/104005", "https://data.delijn.be/stops/107285"], ["https://data.delijn.be/stops/106483", "https://data.delijn.be/stops/106485"], ["https://data.delijn.be/stops/102513", "https://data.delijn.be/stops/405607"], ["https://data.delijn.be/stops/102662", "https://data.delijn.be/stops/108774"], ["https://data.delijn.be/stops/402738", "https://data.delijn.be/stops/407298"], ["https://data.delijn.be/stops/408239", "https://data.delijn.be/stops/408248"], ["https://data.delijn.be/stops/301718", "https://data.delijn.be/stops/301753"], ["https://data.delijn.be/stops/404972", "https://data.delijn.be/stops/406887"], ["https://data.delijn.be/stops/301659", "https://data.delijn.be/stops/306301"], ["https://data.delijn.be/stops/303552", "https://data.delijn.be/stops/303558"], ["https://data.delijn.be/stops/201282", "https://data.delijn.be/stops/202192"], ["https://data.delijn.be/stops/204639", "https://data.delijn.be/stops/205638"], ["https://data.delijn.be/stops/407145", "https://data.delijn.be/stops/410199"], ["https://data.delijn.be/stops/408325", "https://data.delijn.be/stops/408327"], ["https://data.delijn.be/stops/208661", "https://data.delijn.be/stops/208691"], ["https://data.delijn.be/stops/409062", "https://data.delijn.be/stops/409072"], ["https://data.delijn.be/stops/202130", "https://data.delijn.be/stops/203418"], ["https://data.delijn.be/stops/200923", "https://data.delijn.be/stops/202723"], ["https://data.delijn.be/stops/408028", "https://data.delijn.be/stops/408029"], ["https://data.delijn.be/stops/207878", "https://data.delijn.be/stops/207900"], ["https://data.delijn.be/stops/400511", "https://data.delijn.be/stops/403898"], ["https://data.delijn.be/stops/501630", "https://data.delijn.be/stops/501658"], ["https://data.delijn.be/stops/502115", "https://data.delijn.be/stops/507115"], ["https://data.delijn.be/stops/105290", "https://data.delijn.be/stops/109880"], ["https://data.delijn.be/stops/403212", "https://data.delijn.be/stops/403442"], ["https://data.delijn.be/stops/102310", "https://data.delijn.be/stops/109133"], ["https://data.delijn.be/stops/405556", "https://data.delijn.be/stops/405573"], ["https://data.delijn.be/stops/300417", "https://data.delijn.be/stops/300425"], ["https://data.delijn.be/stops/102581", "https://data.delijn.be/stops/105070"], ["https://data.delijn.be/stops/400240", "https://data.delijn.be/stops/400241"], ["https://data.delijn.be/stops/408650", "https://data.delijn.be/stops/408815"], ["https://data.delijn.be/stops/404360", "https://data.delijn.be/stops/404393"], ["https://data.delijn.be/stops/407644", "https://data.delijn.be/stops/407735"], ["https://data.delijn.be/stops/400605", "https://data.delijn.be/stops/400620"], ["https://data.delijn.be/stops/106638", "https://data.delijn.be/stops/106640"], ["https://data.delijn.be/stops/505954", "https://data.delijn.be/stops/508285"], ["https://data.delijn.be/stops/302494", "https://data.delijn.be/stops/308834"], ["https://data.delijn.be/stops/103068", "https://data.delijn.be/stops/109825"], ["https://data.delijn.be/stops/200387", "https://data.delijn.be/stops/200466"], ["https://data.delijn.be/stops/407838", "https://data.delijn.be/stops/407846"], ["https://data.delijn.be/stops/503055", "https://data.delijn.be/stops/508055"], ["https://data.delijn.be/stops/208410", "https://data.delijn.be/stops/208411"], ["https://data.delijn.be/stops/503999", "https://data.delijn.be/stops/508609"], ["https://data.delijn.be/stops/501416", "https://data.delijn.be/stops/501419"], ["https://data.delijn.be/stops/206022", "https://data.delijn.be/stops/207024"], ["https://data.delijn.be/stops/404909", "https://data.delijn.be/stops/404911"], ["https://data.delijn.be/stops/202679", "https://data.delijn.be/stops/203680"], ["https://data.delijn.be/stops/301599", "https://data.delijn.be/stops/301625"], ["https://data.delijn.be/stops/208399", "https://data.delijn.be/stops/209360"], ["https://data.delijn.be/stops/402207", "https://data.delijn.be/stops/402370"], ["https://data.delijn.be/stops/504495", "https://data.delijn.be/stops/509495"], ["https://data.delijn.be/stops/304543", "https://data.delijn.be/stops/304545"], ["https://data.delijn.be/stops/404006", "https://data.delijn.be/stops/404008"], ["https://data.delijn.be/stops/203365", "https://data.delijn.be/stops/203994"], ["https://data.delijn.be/stops/202037", "https://data.delijn.be/stops/202985"], ["https://data.delijn.be/stops/304869", "https://data.delijn.be/stops/305596"], ["https://data.delijn.be/stops/102937", "https://data.delijn.be/stops/109050"], ["https://data.delijn.be/stops/103673", "https://data.delijn.be/stops/106253"], ["https://data.delijn.be/stops/406075", "https://data.delijn.be/stops/407169"], ["https://data.delijn.be/stops/504723", "https://data.delijn.be/stops/509489"], ["https://data.delijn.be/stops/103963", "https://data.delijn.be/stops/405012"], ["https://data.delijn.be/stops/503613", "https://data.delijn.be/stops/508561"], ["https://data.delijn.be/stops/107570", "https://data.delijn.be/stops/107741"], ["https://data.delijn.be/stops/500956", "https://data.delijn.be/stops/508280"], ["https://data.delijn.be/stops/210116", "https://data.delijn.be/stops/210117"], ["https://data.delijn.be/stops/502548", "https://data.delijn.be/stops/507006"], ["https://data.delijn.be/stops/207139", "https://data.delijn.be/stops/207140"], ["https://data.delijn.be/stops/301679", "https://data.delijn.be/stops/301687"], ["https://data.delijn.be/stops/307296", "https://data.delijn.be/stops/307322"], ["https://data.delijn.be/stops/108402", "https://data.delijn.be/stops/108407"], ["https://data.delijn.be/stops/300328", "https://data.delijn.be/stops/300329"], ["https://data.delijn.be/stops/106689", "https://data.delijn.be/stops/106692"], ["https://data.delijn.be/stops/403633", "https://data.delijn.be/stops/403641"], ["https://data.delijn.be/stops/109179", "https://data.delijn.be/stops/109252"], ["https://data.delijn.be/stops/302490", "https://data.delijn.be/stops/302494"], ["https://data.delijn.be/stops/408098", "https://data.delijn.be/stops/408101"], ["https://data.delijn.be/stops/103234", "https://data.delijn.be/stops/106296"], ["https://data.delijn.be/stops/208329", "https://data.delijn.be/stops/210048"], ["https://data.delijn.be/stops/106104", "https://data.delijn.be/stops/106161"], ["https://data.delijn.be/stops/306798", "https://data.delijn.be/stops/307732"], ["https://data.delijn.be/stops/507942", "https://data.delijn.be/stops/507952"], ["https://data.delijn.be/stops/208392", "https://data.delijn.be/stops/208743"], ["https://data.delijn.be/stops/505101", "https://data.delijn.be/stops/509192"], ["https://data.delijn.be/stops/104854", "https://data.delijn.be/stops/107886"], ["https://data.delijn.be/stops/205728", "https://data.delijn.be/stops/205729"], ["https://data.delijn.be/stops/508914", "https://data.delijn.be/stops/509822"], ["https://data.delijn.be/stops/203740", "https://data.delijn.be/stops/207431"], ["https://data.delijn.be/stops/101533", "https://data.delijn.be/stops/108787"], ["https://data.delijn.be/stops/202673", "https://data.delijn.be/stops/202674"], ["https://data.delijn.be/stops/102651", "https://data.delijn.be/stops/103059"], ["https://data.delijn.be/stops/303269", "https://data.delijn.be/stops/303307"], ["https://data.delijn.be/stops/304781", "https://data.delijn.be/stops/304793"], ["https://data.delijn.be/stops/305714", "https://data.delijn.be/stops/305715"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/501176"], ["https://data.delijn.be/stops/501411", "https://data.delijn.be/stops/501417"], ["https://data.delijn.be/stops/503317", "https://data.delijn.be/stops/508317"], ["https://data.delijn.be/stops/503176", "https://data.delijn.be/stops/508162"], ["https://data.delijn.be/stops/402203", "https://data.delijn.be/stops/402438"], ["https://data.delijn.be/stops/202687", "https://data.delijn.be/stops/203688"], ["https://data.delijn.be/stops/302311", "https://data.delijn.be/stops/304061"], ["https://data.delijn.be/stops/504154", "https://data.delijn.be/stops/504182"], ["https://data.delijn.be/stops/407745", "https://data.delijn.be/stops/409780"], ["https://data.delijn.be/stops/103343", "https://data.delijn.be/stops/103389"], ["https://data.delijn.be/stops/205662", "https://data.delijn.be/stops/205663"], ["https://data.delijn.be/stops/206590", "https://data.delijn.be/stops/207573"], ["https://data.delijn.be/stops/203843", "https://data.delijn.be/stops/218001"], ["https://data.delijn.be/stops/501001", "https://data.delijn.be/stops/501003"], ["https://data.delijn.be/stops/304985", "https://data.delijn.be/stops/308028"], ["https://data.delijn.be/stops/400339", "https://data.delijn.be/stops/400443"], ["https://data.delijn.be/stops/503219", "https://data.delijn.be/stops/505260"], ["https://data.delijn.be/stops/308815", "https://data.delijn.be/stops/308816"], ["https://data.delijn.be/stops/106396", "https://data.delijn.be/stops/106397"], ["https://data.delijn.be/stops/400332", "https://data.delijn.be/stops/400357"], ["https://data.delijn.be/stops/403747", "https://data.delijn.be/stops/403748"], ["https://data.delijn.be/stops/105289", "https://data.delijn.be/stops/106495"], ["https://data.delijn.be/stops/304375", "https://data.delijn.be/stops/305993"], ["https://data.delijn.be/stops/300953", "https://data.delijn.be/stops/305913"], ["https://data.delijn.be/stops/503240", "https://data.delijn.be/stops/503248"], ["https://data.delijn.be/stops/300754", "https://data.delijn.be/stops/307832"], ["https://data.delijn.be/stops/405891", "https://data.delijn.be/stops/407258"], ["https://data.delijn.be/stops/402283", "https://data.delijn.be/stops/405019"], ["https://data.delijn.be/stops/209348", "https://data.delijn.be/stops/209349"], ["https://data.delijn.be/stops/302162", "https://data.delijn.be/stops/302446"], ["https://data.delijn.be/stops/402754", "https://data.delijn.be/stops/402773"], ["https://data.delijn.be/stops/304241", "https://data.delijn.be/stops/306107"], ["https://data.delijn.be/stops/501176", "https://data.delijn.be/stops/501259"], ["https://data.delijn.be/stops/102887", "https://data.delijn.be/stops/103670"], ["https://data.delijn.be/stops/104904", "https://data.delijn.be/stops/106597"], ["https://data.delijn.be/stops/402822", "https://data.delijn.be/stops/402823"], ["https://data.delijn.be/stops/306327", "https://data.delijn.be/stops/307092"], ["https://data.delijn.be/stops/102675", "https://data.delijn.be/stops/102700"], ["https://data.delijn.be/stops/206744", "https://data.delijn.be/stops/207744"], ["https://data.delijn.be/stops/509063", "https://data.delijn.be/stops/509066"], ["https://data.delijn.be/stops/102161", "https://data.delijn.be/stops/108962"], ["https://data.delijn.be/stops/405899", "https://data.delijn.be/stops/409485"], ["https://data.delijn.be/stops/300962", "https://data.delijn.be/stops/307853"], ["https://data.delijn.be/stops/300749", "https://data.delijn.be/stops/300782"], ["https://data.delijn.be/stops/109790", "https://data.delijn.be/stops/401956"], ["https://data.delijn.be/stops/502587", "https://data.delijn.be/stops/505672"], ["https://data.delijn.be/stops/404997", "https://data.delijn.be/stops/409444"], ["https://data.delijn.be/stops/505962", "https://data.delijn.be/stops/508790"], ["https://data.delijn.be/stops/200193", "https://data.delijn.be/stops/201193"], ["https://data.delijn.be/stops/400573", "https://data.delijn.be/stops/403195"], ["https://data.delijn.be/stops/300577", "https://data.delijn.be/stops/300582"], ["https://data.delijn.be/stops/204114", "https://data.delijn.be/stops/205113"], ["https://data.delijn.be/stops/107356", "https://data.delijn.be/stops/107361"], ["https://data.delijn.be/stops/303541", "https://data.delijn.be/stops/303563"], ["https://data.delijn.be/stops/204763", "https://data.delijn.be/stops/205388"], ["https://data.delijn.be/stops/103850", "https://data.delijn.be/stops/105260"], ["https://data.delijn.be/stops/103558", "https://data.delijn.be/stops/103595"], ["https://data.delijn.be/stops/503670", "https://data.delijn.be/stops/505258"], ["https://data.delijn.be/stops/300489", "https://data.delijn.be/stops/300492"], ["https://data.delijn.be/stops/101385", "https://data.delijn.be/stops/105895"], ["https://data.delijn.be/stops/303806", "https://data.delijn.be/stops/307031"], ["https://data.delijn.be/stops/108323", "https://data.delijn.be/stops/108324"], ["https://data.delijn.be/stops/208615", "https://data.delijn.be/stops/307743"], ["https://data.delijn.be/stops/101969", "https://data.delijn.be/stops/108209"], ["https://data.delijn.be/stops/101577", "https://data.delijn.be/stops/103981"], ["https://data.delijn.be/stops/109283", "https://data.delijn.be/stops/109736"], ["https://data.delijn.be/stops/308753", "https://data.delijn.be/stops/308755"], ["https://data.delijn.be/stops/401390", "https://data.delijn.be/stops/401391"], ["https://data.delijn.be/stops/301917", "https://data.delijn.be/stops/306746"], ["https://data.delijn.be/stops/101854", "https://data.delijn.be/stops/109458"], ["https://data.delijn.be/stops/401511", "https://data.delijn.be/stops/402824"], ["https://data.delijn.be/stops/304819", "https://data.delijn.be/stops/304826"], ["https://data.delijn.be/stops/106590", "https://data.delijn.be/stops/107281"], ["https://data.delijn.be/stops/108698", "https://data.delijn.be/stops/108707"], ["https://data.delijn.be/stops/302868", "https://data.delijn.be/stops/302916"], ["https://data.delijn.be/stops/200546", "https://data.delijn.be/stops/209862"], ["https://data.delijn.be/stops/505568", "https://data.delijn.be/stops/508549"], ["https://data.delijn.be/stops/502439", "https://data.delijn.be/stops/505180"], ["https://data.delijn.be/stops/303248", "https://data.delijn.be/stops/307004"], ["https://data.delijn.be/stops/501145", "https://data.delijn.be/stops/506150"], ["https://data.delijn.be/stops/407771", "https://data.delijn.be/stops/307453"], ["https://data.delijn.be/stops/108686", "https://data.delijn.be/stops/108897"], ["https://data.delijn.be/stops/104077", "https://data.delijn.be/stops/105699"], ["https://data.delijn.be/stops/300156", "https://data.delijn.be/stops/306697"], ["https://data.delijn.be/stops/101924", "https://data.delijn.be/stops/107067"], ["https://data.delijn.be/stops/502170", "https://data.delijn.be/stops/506729"], ["https://data.delijn.be/stops/203825", "https://data.delijn.be/stops/208263"], ["https://data.delijn.be/stops/108088", "https://data.delijn.be/stops/108089"], ["https://data.delijn.be/stops/208551", "https://data.delijn.be/stops/209558"], ["https://data.delijn.be/stops/204754", "https://data.delijn.be/stops/205247"], ["https://data.delijn.be/stops/302793", "https://data.delijn.be/stops/305429"], ["https://data.delijn.be/stops/402596", "https://data.delijn.be/stops/402639"], ["https://data.delijn.be/stops/401083", "https://data.delijn.be/stops/401162"], ["https://data.delijn.be/stops/303115", "https://data.delijn.be/stops/304223"], ["https://data.delijn.be/stops/300602", "https://data.delijn.be/stops/300614"], ["https://data.delijn.be/stops/205723", "https://data.delijn.be/stops/205724"], ["https://data.delijn.be/stops/300321", "https://data.delijn.be/stops/308108"], ["https://data.delijn.be/stops/107694", "https://data.delijn.be/stops/400438"], ["https://data.delijn.be/stops/204388", "https://data.delijn.be/stops/205764"], ["https://data.delijn.be/stops/400129", "https://data.delijn.be/stops/403312"], ["https://data.delijn.be/stops/401280", "https://data.delijn.be/stops/406686"], ["https://data.delijn.be/stops/102204", "https://data.delijn.be/stops/105641"], ["https://data.delijn.be/stops/508175", "https://data.delijn.be/stops/508999"], ["https://data.delijn.be/stops/404819", "https://data.delijn.be/stops/406064"], ["https://data.delijn.be/stops/101900", "https://data.delijn.be/stops/107900"], ["https://data.delijn.be/stops/206480", "https://data.delijn.be/stops/207479"], ["https://data.delijn.be/stops/401386", "https://data.delijn.be/stops/410177"], ["https://data.delijn.be/stops/403954", "https://data.delijn.be/stops/403991"], ["https://data.delijn.be/stops/503283", "https://data.delijn.be/stops/508288"], ["https://data.delijn.be/stops/206065", "https://data.delijn.be/stops/207064"], ["https://data.delijn.be/stops/205817", "https://data.delijn.be/stops/205818"], ["https://data.delijn.be/stops/205463", "https://data.delijn.be/stops/215017"], ["https://data.delijn.be/stops/202140", "https://data.delijn.be/stops/203154"], ["https://data.delijn.be/stops/504633", "https://data.delijn.be/stops/509209"], ["https://data.delijn.be/stops/304522", "https://data.delijn.be/stops/305602"], ["https://data.delijn.be/stops/406882", "https://data.delijn.be/stops/409759"], ["https://data.delijn.be/stops/406879", "https://data.delijn.be/stops/409413"], ["https://data.delijn.be/stops/406076", "https://data.delijn.be/stops/406084"], ["https://data.delijn.be/stops/300514", "https://data.delijn.be/stops/308593"], ["https://data.delijn.be/stops/208048", "https://data.delijn.be/stops/209485"], ["https://data.delijn.be/stops/301368", "https://data.delijn.be/stops/303279"], ["https://data.delijn.be/stops/408518", "https://data.delijn.be/stops/408773"], ["https://data.delijn.be/stops/106650", "https://data.delijn.be/stops/109752"], ["https://data.delijn.be/stops/404785", "https://data.delijn.be/stops/410051"], ["https://data.delijn.be/stops/504034", "https://data.delijn.be/stops/509034"], ["https://data.delijn.be/stops/208528", "https://data.delijn.be/stops/209710"], ["https://data.delijn.be/stops/409067", "https://data.delijn.be/stops/409157"], ["https://data.delijn.be/stops/504197", "https://data.delijn.be/stops/508658"], ["https://data.delijn.be/stops/303677", "https://data.delijn.be/stops/307017"], ["https://data.delijn.be/stops/501258", "https://data.delijn.be/stops/506258"], ["https://data.delijn.be/stops/109173", "https://data.delijn.be/stops/109174"], ["https://data.delijn.be/stops/305459", "https://data.delijn.be/stops/305460"], ["https://data.delijn.be/stops/204128", "https://data.delijn.be/stops/205146"], ["https://data.delijn.be/stops/103261", "https://data.delijn.be/stops/105854"], ["https://data.delijn.be/stops/202295", "https://data.delijn.be/stops/202335"], ["https://data.delijn.be/stops/403997", "https://data.delijn.be/stops/404081"], ["https://data.delijn.be/stops/201844", "https://data.delijn.be/stops/209325"], ["https://data.delijn.be/stops/101722", "https://data.delijn.be/stops/109975"], ["https://data.delijn.be/stops/407388", "https://data.delijn.be/stops/407566"], ["https://data.delijn.be/stops/200751", "https://data.delijn.be/stops/209318"], ["https://data.delijn.be/stops/303020", "https://data.delijn.be/stops/303063"], ["https://data.delijn.be/stops/300239", "https://data.delijn.be/stops/302412"], ["https://data.delijn.be/stops/304414", "https://data.delijn.be/stops/307355"], ["https://data.delijn.be/stops/301905", "https://data.delijn.be/stops/301907"], ["https://data.delijn.be/stops/104051", "https://data.delijn.be/stops/108396"], ["https://data.delijn.be/stops/401512", "https://data.delijn.be/stops/401513"], ["https://data.delijn.be/stops/206755", "https://data.delijn.be/stops/208530"], ["https://data.delijn.be/stops/402364", "https://data.delijn.be/stops/402463"], ["https://data.delijn.be/stops/308418", "https://data.delijn.be/stops/308708"], ["https://data.delijn.be/stops/402529", "https://data.delijn.be/stops/408964"], ["https://data.delijn.be/stops/305801", "https://data.delijn.be/stops/305803"], ["https://data.delijn.be/stops/403520", "https://data.delijn.be/stops/403589"], ["https://data.delijn.be/stops/303511", "https://data.delijn.be/stops/307891"], ["https://data.delijn.be/stops/301279", "https://data.delijn.be/stops/301337"], ["https://data.delijn.be/stops/206845", "https://data.delijn.be/stops/207845"], ["https://data.delijn.be/stops/303853", "https://data.delijn.be/stops/307017"], ["https://data.delijn.be/stops/102633", "https://data.delijn.be/stops/107848"], ["https://data.delijn.be/stops/404680", "https://data.delijn.be/stops/404682"], ["https://data.delijn.be/stops/208571", "https://data.delijn.be/stops/209553"], ["https://data.delijn.be/stops/502317", "https://data.delijn.be/stops/507283"], ["https://data.delijn.be/stops/305543", "https://data.delijn.be/stops/307089"], ["https://data.delijn.be/stops/201522", "https://data.delijn.be/stops/211131"], ["https://data.delijn.be/stops/103934", "https://data.delijn.be/stops/107407"], ["https://data.delijn.be/stops/207406", "https://data.delijn.be/stops/207592"], ["https://data.delijn.be/stops/208674", "https://data.delijn.be/stops/209438"], ["https://data.delijn.be/stops/404119", "https://data.delijn.be/stops/404182"], ["https://data.delijn.be/stops/305215", "https://data.delijn.be/stops/305216"], ["https://data.delijn.be/stops/402429", "https://data.delijn.be/stops/402458"], ["https://data.delijn.be/stops/305712", "https://data.delijn.be/stops/306331"], ["https://data.delijn.be/stops/304896", "https://data.delijn.be/stops/304897"], ["https://data.delijn.be/stops/109235", "https://data.delijn.be/stops/109236"], ["https://data.delijn.be/stops/401778", "https://data.delijn.be/stops/406001"], ["https://data.delijn.be/stops/503233", "https://data.delijn.be/stops/503241"], ["https://data.delijn.be/stops/206937", "https://data.delijn.be/stops/208713"], ["https://data.delijn.be/stops/204211", "https://data.delijn.be/stops/207309"], ["https://data.delijn.be/stops/405128", "https://data.delijn.be/stops/405404"], ["https://data.delijn.be/stops/101036", "https://data.delijn.be/stops/204565"], ["https://data.delijn.be/stops/200805", "https://data.delijn.be/stops/200809"], ["https://data.delijn.be/stops/504372", "https://data.delijn.be/stops/509611"], ["https://data.delijn.be/stops/501061", "https://data.delijn.be/stops/507646"], ["https://data.delijn.be/stops/502747", "https://data.delijn.be/stops/505247"], ["https://data.delijn.be/stops/302155", "https://data.delijn.be/stops/302201"], ["https://data.delijn.be/stops/410100", "https://data.delijn.be/stops/410101"], ["https://data.delijn.be/stops/301974", "https://data.delijn.be/stops/304563"], ["https://data.delijn.be/stops/507945", "https://data.delijn.be/stops/507953"], ["https://data.delijn.be/stops/404511", "https://data.delijn.be/stops/406929"], ["https://data.delijn.be/stops/405390", "https://data.delijn.be/stops/405391"], ["https://data.delijn.be/stops/407133", "https://data.delijn.be/stops/407304"], ["https://data.delijn.be/stops/410000", "https://data.delijn.be/stops/410001"], ["https://data.delijn.be/stops/200457", "https://data.delijn.be/stops/200458"], ["https://data.delijn.be/stops/109979", "https://data.delijn.be/stops/109980"], ["https://data.delijn.be/stops/504796", "https://data.delijn.be/stops/504800"], ["https://data.delijn.be/stops/304216", "https://data.delijn.be/stops/306647"], ["https://data.delijn.be/stops/303542", "https://data.delijn.be/stops/303553"], ["https://data.delijn.be/stops/207958", "https://data.delijn.be/stops/308574"], ["https://data.delijn.be/stops/202873", "https://data.delijn.be/stops/209713"], ["https://data.delijn.be/stops/306829", "https://data.delijn.be/stops/306830"], ["https://data.delijn.be/stops/303173", "https://data.delijn.be/stops/303175"], ["https://data.delijn.be/stops/502103", "https://data.delijn.be/stops/507421"], ["https://data.delijn.be/stops/407814", "https://data.delijn.be/stops/407943"], ["https://data.delijn.be/stops/408964", "https://data.delijn.be/stops/408965"], ["https://data.delijn.be/stops/200257", "https://data.delijn.be/stops/200722"], ["https://data.delijn.be/stops/509454", "https://data.delijn.be/stops/509456"], ["https://data.delijn.be/stops/207713", "https://data.delijn.be/stops/207715"], ["https://data.delijn.be/stops/103474", "https://data.delijn.be/stops/109164"], ["https://data.delijn.be/stops/407450", "https://data.delijn.be/stops/407458"], ["https://data.delijn.be/stops/207946", "https://data.delijn.be/stops/209071"], ["https://data.delijn.be/stops/404940", "https://data.delijn.be/stops/405649"], ["https://data.delijn.be/stops/300488", "https://data.delijn.be/stops/300510"], ["https://data.delijn.be/stops/305306", "https://data.delijn.be/stops/306342"], ["https://data.delijn.be/stops/103317", "https://data.delijn.be/stops/105790"], ["https://data.delijn.be/stops/108401", "https://data.delijn.be/stops/108402"], ["https://data.delijn.be/stops/501519", "https://data.delijn.be/stops/501520"], ["https://data.delijn.be/stops/201877", "https://data.delijn.be/stops/202415"], ["https://data.delijn.be/stops/102583", "https://data.delijn.be/stops/109111"], ["https://data.delijn.be/stops/206079", "https://data.delijn.be/stops/207738"], ["https://data.delijn.be/stops/502256", "https://data.delijn.be/stops/507703"], ["https://data.delijn.be/stops/403104", "https://data.delijn.be/stops/403444"], ["https://data.delijn.be/stops/501497", "https://data.delijn.be/stops/501636"], ["https://data.delijn.be/stops/101045", "https://data.delijn.be/stops/102395"], ["https://data.delijn.be/stops/504618", "https://data.delijn.be/stops/504776"], ["https://data.delijn.be/stops/103098", "https://data.delijn.be/stops/104408"], ["https://data.delijn.be/stops/504133", "https://data.delijn.be/stops/509133"], ["https://data.delijn.be/stops/303652", "https://data.delijn.be/stops/304912"], ["https://data.delijn.be/stops/302636", "https://data.delijn.be/stops/308937"], ["https://data.delijn.be/stops/501512", "https://data.delijn.be/stops/506408"], ["https://data.delijn.be/stops/304249", "https://data.delijn.be/stops/304254"], ["https://data.delijn.be/stops/200574", "https://data.delijn.be/stops/201574"], ["https://data.delijn.be/stops/400471", "https://data.delijn.be/stops/407642"], ["https://data.delijn.be/stops/207231", "https://data.delijn.be/stops/300152"], ["https://data.delijn.be/stops/102408", "https://data.delijn.be/stops/109037"], ["https://data.delijn.be/stops/204656", "https://data.delijn.be/stops/205657"], ["https://data.delijn.be/stops/302033", "https://data.delijn.be/stops/306380"], ["https://data.delijn.be/stops/202337", "https://data.delijn.be/stops/203330"], ["https://data.delijn.be/stops/108281", "https://data.delijn.be/stops/109365"], ["https://data.delijn.be/stops/504118", "https://data.delijn.be/stops/509718"], ["https://data.delijn.be/stops/200136", "https://data.delijn.be/stops/200408"], ["https://data.delijn.be/stops/200868", "https://data.delijn.be/stops/200869"], ["https://data.delijn.be/stops/503075", "https://data.delijn.be/stops/508076"], ["https://data.delijn.be/stops/201012", "https://data.delijn.be/stops/201847"], ["https://data.delijn.be/stops/106206", "https://data.delijn.be/stops/109905"], ["https://data.delijn.be/stops/501192", "https://data.delijn.be/stops/501196"], ["https://data.delijn.be/stops/402737", "https://data.delijn.be/stops/405957"], ["https://data.delijn.be/stops/204369", "https://data.delijn.be/stops/205369"], ["https://data.delijn.be/stops/102479", "https://data.delijn.be/stops/400435"], ["https://data.delijn.be/stops/404845", "https://data.delijn.be/stops/407707"], ["https://data.delijn.be/stops/502307", "https://data.delijn.be/stops/502314"], ["https://data.delijn.be/stops/300061", "https://data.delijn.be/stops/300408"], ["https://data.delijn.be/stops/105532", "https://data.delijn.be/stops/106834"], ["https://data.delijn.be/stops/406009", "https://data.delijn.be/stops/406045"], ["https://data.delijn.be/stops/200652", "https://data.delijn.be/stops/201662"], ["https://data.delijn.be/stops/406504", "https://data.delijn.be/stops/406505"], ["https://data.delijn.be/stops/301045", "https://data.delijn.be/stops/304787"], ["https://data.delijn.be/stops/403679", "https://data.delijn.be/stops/403680"], ["https://data.delijn.be/stops/505145", "https://data.delijn.be/stops/505236"], ["https://data.delijn.be/stops/101373", "https://data.delijn.be/stops/101406"], ["https://data.delijn.be/stops/104931", "https://data.delijn.be/stops/205098"], ["https://data.delijn.be/stops/206797", "https://data.delijn.be/stops/208541"], ["https://data.delijn.be/stops/103319", "https://data.delijn.be/stops/105730"], ["https://data.delijn.be/stops/501738", "https://data.delijn.be/stops/506250"], ["https://data.delijn.be/stops/405499", "https://data.delijn.be/stops/407848"], ["https://data.delijn.be/stops/404461", "https://data.delijn.be/stops/409193"], ["https://data.delijn.be/stops/211014", "https://data.delijn.be/stops/502292"], ["https://data.delijn.be/stops/509586", "https://data.delijn.be/stops/509589"], ["https://data.delijn.be/stops/101828", "https://data.delijn.be/stops/107106"], ["https://data.delijn.be/stops/305001", "https://data.delijn.be/stops/305002"], ["https://data.delijn.be/stops/502202", "https://data.delijn.be/stops/508948"], ["https://data.delijn.be/stops/507130", "https://data.delijn.be/stops/507149"], ["https://data.delijn.be/stops/207868", "https://data.delijn.be/stops/209748"], ["https://data.delijn.be/stops/204341", "https://data.delijn.be/stops/205304"], ["https://data.delijn.be/stops/302310", "https://data.delijn.be/stops/302328"], ["https://data.delijn.be/stops/400551", "https://data.delijn.be/stops/406988"], ["https://data.delijn.be/stops/405805", "https://data.delijn.be/stops/409428"], ["https://data.delijn.be/stops/102389", "https://data.delijn.be/stops/107028"], ["https://data.delijn.be/stops/402986", "https://data.delijn.be/stops/410054"], ["https://data.delijn.be/stops/403910", "https://data.delijn.be/stops/403939"], ["https://data.delijn.be/stops/304666", "https://data.delijn.be/stops/304667"], ["https://data.delijn.be/stops/103592", "https://data.delijn.be/stops/103593"], ["https://data.delijn.be/stops/502194", "https://data.delijn.be/stops/507194"], ["https://data.delijn.be/stops/400115", "https://data.delijn.be/stops/407393"], ["https://data.delijn.be/stops/400786", "https://data.delijn.be/stops/410047"], ["https://data.delijn.be/stops/300266", "https://data.delijn.be/stops/300271"], ["https://data.delijn.be/stops/503301", "https://data.delijn.be/stops/505990"], ["https://data.delijn.be/stops/303723", "https://data.delijn.be/stops/303770"], ["https://data.delijn.be/stops/107971", "https://data.delijn.be/stops/108428"], ["https://data.delijn.be/stops/402970", "https://data.delijn.be/stops/402972"], ["https://data.delijn.be/stops/300870", "https://data.delijn.be/stops/300871"], ["https://data.delijn.be/stops/507956", "https://data.delijn.be/stops/507957"], ["https://data.delijn.be/stops/403596", "https://data.delijn.be/stops/403603"], ["https://data.delijn.be/stops/504175", "https://data.delijn.be/stops/509165"], ["https://data.delijn.be/stops/204544", "https://data.delijn.be/stops/205497"], ["https://data.delijn.be/stops/506245", "https://data.delijn.be/stops/506247"], ["https://data.delijn.be/stops/208363", "https://data.delijn.be/stops/208776"], ["https://data.delijn.be/stops/302444", "https://data.delijn.be/stops/308105"], ["https://data.delijn.be/stops/307722", "https://data.delijn.be/stops/307725"], ["https://data.delijn.be/stops/202686", "https://data.delijn.be/stops/203730"], ["https://data.delijn.be/stops/208154", "https://data.delijn.be/stops/209154"], ["https://data.delijn.be/stops/200319", "https://data.delijn.be/stops/201587"], ["https://data.delijn.be/stops/505638", "https://data.delijn.be/stops/505639"], ["https://data.delijn.be/stops/303696", "https://data.delijn.be/stops/303697"], ["https://data.delijn.be/stops/107347", "https://data.delijn.be/stops/107348"], ["https://data.delijn.be/stops/308586", "https://data.delijn.be/stops/308587"], ["https://data.delijn.be/stops/102608", "https://data.delijn.be/stops/105527"], ["https://data.delijn.be/stops/301950", "https://data.delijn.be/stops/307778"], ["https://data.delijn.be/stops/408229", "https://data.delijn.be/stops/408388"], ["https://data.delijn.be/stops/405819", "https://data.delijn.be/stops/409412"], ["https://data.delijn.be/stops/103502", "https://data.delijn.be/stops/106316"], ["https://data.delijn.be/stops/206453", "https://data.delijn.be/stops/207453"], ["https://data.delijn.be/stops/409053", "https://data.delijn.be/stops/409083"], ["https://data.delijn.be/stops/505286", "https://data.delijn.be/stops/505816"], ["https://data.delijn.be/stops/409515", "https://data.delijn.be/stops/409877"], ["https://data.delijn.be/stops/109316", "https://data.delijn.be/stops/109350"], ["https://data.delijn.be/stops/102766", "https://data.delijn.be/stops/107407"], ["https://data.delijn.be/stops/305714", "https://data.delijn.be/stops/307927"], ["https://data.delijn.be/stops/202392", "https://data.delijn.be/stops/203391"], ["https://data.delijn.be/stops/504792", "https://data.delijn.be/stops/508474"], ["https://data.delijn.be/stops/305084", "https://data.delijn.be/stops/305086"], ["https://data.delijn.be/stops/202741", "https://data.delijn.be/stops/204975"], ["https://data.delijn.be/stops/106207", "https://data.delijn.be/stops/106209"], ["https://data.delijn.be/stops/204992", "https://data.delijn.be/stops/208117"], ["https://data.delijn.be/stops/303620", "https://data.delijn.be/stops/306703"], ["https://data.delijn.be/stops/504375", "https://data.delijn.be/stops/508610"], ["https://data.delijn.be/stops/305067", "https://data.delijn.be/stops/306957"], ["https://data.delijn.be/stops/302191", "https://data.delijn.be/stops/305457"], ["https://data.delijn.be/stops/104943", "https://data.delijn.be/stops/106497"], ["https://data.delijn.be/stops/200551", "https://data.delijn.be/stops/200782"], ["https://data.delijn.be/stops/300116", "https://data.delijn.be/stops/307734"], ["https://data.delijn.be/stops/503081", "https://data.delijn.be/stops/508507"], ["https://data.delijn.be/stops/207299", "https://data.delijn.be/stops/207859"], ["https://data.delijn.be/stops/402122", "https://data.delijn.be/stops/402125"], ["https://data.delijn.be/stops/502391", "https://data.delijn.be/stops/507391"], ["https://data.delijn.be/stops/200144", "https://data.delijn.be/stops/201283"], ["https://data.delijn.be/stops/302715", "https://data.delijn.be/stops/302726"], ["https://data.delijn.be/stops/302923", "https://data.delijn.be/stops/307228"], ["https://data.delijn.be/stops/300847", "https://data.delijn.be/stops/300848"], ["https://data.delijn.be/stops/400327", "https://data.delijn.be/stops/400397"], ["https://data.delijn.be/stops/401638", "https://data.delijn.be/stops/308211"], ["https://data.delijn.be/stops/304311", "https://data.delijn.be/stops/304329"], ["https://data.delijn.be/stops/403996", "https://data.delijn.be/stops/405937"], ["https://data.delijn.be/stops/407005", "https://data.delijn.be/stops/407014"], ["https://data.delijn.be/stops/502302", "https://data.delijn.be/stops/502310"], ["https://data.delijn.be/stops/208452", "https://data.delijn.be/stops/209698"], ["https://data.delijn.be/stops/208675", "https://data.delijn.be/stops/208684"], ["https://data.delijn.be/stops/308109", "https://data.delijn.be/stops/308111"], ["https://data.delijn.be/stops/207742", "https://data.delijn.be/stops/308799"], ["https://data.delijn.be/stops/107015", "https://data.delijn.be/stops/107020"], ["https://data.delijn.be/stops/203009", "https://data.delijn.be/stops/203653"], ["https://data.delijn.be/stops/302569", "https://data.delijn.be/stops/303299"], ["https://data.delijn.be/stops/300527", "https://data.delijn.be/stops/302340"], ["https://data.delijn.be/stops/504577", "https://data.delijn.be/stops/509577"], ["https://data.delijn.be/stops/507508", "https://data.delijn.be/stops/507535"], ["https://data.delijn.be/stops/101822", "https://data.delijn.be/stops/107024"], ["https://data.delijn.be/stops/501265", "https://data.delijn.be/stops/501312"], ["https://data.delijn.be/stops/502185", "https://data.delijn.be/stops/502187"], ["https://data.delijn.be/stops/104165", "https://data.delijn.be/stops/108330"], ["https://data.delijn.be/stops/500933", "https://data.delijn.be/stops/505793"], ["https://data.delijn.be/stops/509355", "https://data.delijn.be/stops/509360"], ["https://data.delijn.be/stops/400580", "https://data.delijn.be/stops/400635"], ["https://data.delijn.be/stops/106275", "https://data.delijn.be/stops/109632"], ["https://data.delijn.be/stops/502183", "https://data.delijn.be/stops/502185"], ["https://data.delijn.be/stops/501405", "https://data.delijn.be/stops/501485"], ["https://data.delijn.be/stops/202844", "https://data.delijn.be/stops/211070"], ["https://data.delijn.be/stops/404472", "https://data.delijn.be/stops/404533"], ["https://data.delijn.be/stops/301195", "https://data.delijn.be/stops/307614"], ["https://data.delijn.be/stops/505521", "https://data.delijn.be/stops/505621"], ["https://data.delijn.be/stops/300063", "https://data.delijn.be/stops/300064"], ["https://data.delijn.be/stops/304019", "https://data.delijn.be/stops/304865"], ["https://data.delijn.be/stops/208841", "https://data.delijn.be/stops/209697"], ["https://data.delijn.be/stops/504140", "https://data.delijn.be/stops/509136"], ["https://data.delijn.be/stops/305597", "https://data.delijn.be/stops/306269"], ["https://data.delijn.be/stops/206385", "https://data.delijn.be/stops/207013"], ["https://data.delijn.be/stops/407144", "https://data.delijn.be/stops/407297"], ["https://data.delijn.be/stops/504259", "https://data.delijn.be/stops/504263"], ["https://data.delijn.be/stops/104625", "https://data.delijn.be/stops/105135"], ["https://data.delijn.be/stops/200646", "https://data.delijn.be/stops/201605"], ["https://data.delijn.be/stops/303535", "https://data.delijn.be/stops/303573"], ["https://data.delijn.be/stops/505575", "https://data.delijn.be/stops/507321"], ["https://data.delijn.be/stops/400912", "https://data.delijn.be/stops/400922"], ["https://data.delijn.be/stops/406297", "https://data.delijn.be/stops/406423"], ["https://data.delijn.be/stops/304577", "https://data.delijn.be/stops/304654"], ["https://data.delijn.be/stops/304972", "https://data.delijn.be/stops/304975"], ["https://data.delijn.be/stops/503501", "https://data.delijn.be/stops/508499"], ["https://data.delijn.be/stops/304979", "https://data.delijn.be/stops/305013"], ["https://data.delijn.be/stops/202865", "https://data.delijn.be/stops/203886"], ["https://data.delijn.be/stops/504775", "https://data.delijn.be/stops/509414"], ["https://data.delijn.be/stops/508354", "https://data.delijn.be/stops/508374"], ["https://data.delijn.be/stops/109153", "https://data.delijn.be/stops/109154"], ["https://data.delijn.be/stops/200459", "https://data.delijn.be/stops/201662"], ["https://data.delijn.be/stops/501460", "https://data.delijn.be/stops/506461"], ["https://data.delijn.be/stops/304766", "https://data.delijn.be/stops/308701"], ["https://data.delijn.be/stops/207802", "https://data.delijn.be/stops/300161"], ["https://data.delijn.be/stops/409422", "https://data.delijn.be/stops/409676"], ["https://data.delijn.be/stops/209540", "https://data.delijn.be/stops/218029"], ["https://data.delijn.be/stops/501412", "https://data.delijn.be/stops/506412"], ["https://data.delijn.be/stops/202110", "https://data.delijn.be/stops/205069"], ["https://data.delijn.be/stops/206174", "https://data.delijn.be/stops/207067"], ["https://data.delijn.be/stops/108774", "https://data.delijn.be/stops/108777"], ["https://data.delijn.be/stops/102581", "https://data.delijn.be/stops/105370"], ["https://data.delijn.be/stops/302210", "https://data.delijn.be/stops/302233"], ["https://data.delijn.be/stops/407306", "https://data.delijn.be/stops/409499"], ["https://data.delijn.be/stops/305249", "https://data.delijn.be/stops/305259"], ["https://data.delijn.be/stops/208678", "https://data.delijn.be/stops/208803"], ["https://data.delijn.be/stops/503744", "https://data.delijn.be/stops/508747"], ["https://data.delijn.be/stops/301634", "https://data.delijn.be/stops/301643"], ["https://data.delijn.be/stops/106054", "https://data.delijn.be/stops/109946"], ["https://data.delijn.be/stops/104496", "https://data.delijn.be/stops/107487"], ["https://data.delijn.be/stops/101136", "https://data.delijn.be/stops/105210"], ["https://data.delijn.be/stops/207667", "https://data.delijn.be/stops/209521"], ["https://data.delijn.be/stops/504386", "https://data.delijn.be/stops/505977"], ["https://data.delijn.be/stops/400161", "https://data.delijn.be/stops/403297"], ["https://data.delijn.be/stops/200760", "https://data.delijn.be/stops/208307"], ["https://data.delijn.be/stops/408093", "https://data.delijn.be/stops/408158"], ["https://data.delijn.be/stops/104003", "https://data.delijn.be/stops/106565"], ["https://data.delijn.be/stops/104337", "https://data.delijn.be/stops/104342"], ["https://data.delijn.be/stops/501003", "https://data.delijn.be/stops/506506"], ["https://data.delijn.be/stops/303572", "https://data.delijn.be/stops/303573"], ["https://data.delijn.be/stops/500005", "https://data.delijn.be/stops/505398"], ["https://data.delijn.be/stops/103633", "https://data.delijn.be/stops/107563"], ["https://data.delijn.be/stops/401030", "https://data.delijn.be/stops/409220"], ["https://data.delijn.be/stops/502303", "https://data.delijn.be/stops/507303"], ["https://data.delijn.be/stops/504205", "https://data.delijn.be/stops/509205"], ["https://data.delijn.be/stops/308180", "https://data.delijn.be/stops/308182"], ["https://data.delijn.be/stops/504773", "https://data.delijn.be/stops/508809"], ["https://data.delijn.be/stops/502512", "https://data.delijn.be/stops/505628"], ["https://data.delijn.be/stops/405789", "https://data.delijn.be/stops/409414"], ["https://data.delijn.be/stops/200913", "https://data.delijn.be/stops/203689"], ["https://data.delijn.be/stops/406301", "https://data.delijn.be/stops/406305"], ["https://data.delijn.be/stops/403438", "https://data.delijn.be/stops/403525"], ["https://data.delijn.be/stops/403018", "https://data.delijn.be/stops/403588"], ["https://data.delijn.be/stops/503064", "https://data.delijn.be/stops/509949"], ["https://data.delijn.be/stops/206506", "https://data.delijn.be/stops/207498"], ["https://data.delijn.be/stops/504208", "https://data.delijn.be/stops/504210"], ["https://data.delijn.be/stops/407964", "https://data.delijn.be/stops/407966"], ["https://data.delijn.be/stops/400039", "https://data.delijn.be/stops/400350"], ["https://data.delijn.be/stops/307012", "https://data.delijn.be/stops/307013"], ["https://data.delijn.be/stops/106123", "https://data.delijn.be/stops/106124"], ["https://data.delijn.be/stops/304130", "https://data.delijn.be/stops/305845"], ["https://data.delijn.be/stops/305819", "https://data.delijn.be/stops/305820"], ["https://data.delijn.be/stops/209665", "https://data.delijn.be/stops/209666"], ["https://data.delijn.be/stops/503152", "https://data.delijn.be/stops/504840"], ["https://data.delijn.be/stops/502066", "https://data.delijn.be/stops/507066"], ["https://data.delijn.be/stops/202033", "https://data.delijn.be/stops/203031"], ["https://data.delijn.be/stops/400691", "https://data.delijn.be/stops/400843"], ["https://data.delijn.be/stops/401280", "https://data.delijn.be/stops/404558"], ["https://data.delijn.be/stops/503099", "https://data.delijn.be/stops/504174"], ["https://data.delijn.be/stops/504570", "https://data.delijn.be/stops/509079"], ["https://data.delijn.be/stops/200276", "https://data.delijn.be/stops/201276"], ["https://data.delijn.be/stops/407135", "https://data.delijn.be/stops/407304"], ["https://data.delijn.be/stops/206372", "https://data.delijn.be/stops/207221"], ["https://data.delijn.be/stops/401209", "https://data.delijn.be/stops/401275"], ["https://data.delijn.be/stops/206830", "https://data.delijn.be/stops/207565"], ["https://data.delijn.be/stops/303812", "https://data.delijn.be/stops/303813"], ["https://data.delijn.be/stops/109039", "https://data.delijn.be/stops/300113"], ["https://data.delijn.be/stops/506196", "https://data.delijn.be/stops/506379"], ["https://data.delijn.be/stops/102323", "https://data.delijn.be/stops/105349"], ["https://data.delijn.be/stops/300573", "https://data.delijn.be/stops/300585"], ["https://data.delijn.be/stops/301693", "https://data.delijn.be/stops/301777"], ["https://data.delijn.be/stops/403724", "https://data.delijn.be/stops/406889"], ["https://data.delijn.be/stops/204768", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/304146", "https://data.delijn.be/stops/304147"], ["https://data.delijn.be/stops/200658", "https://data.delijn.be/stops/201658"], ["https://data.delijn.be/stops/407538", "https://data.delijn.be/stops/407544"], ["https://data.delijn.be/stops/108947", "https://data.delijn.be/stops/108949"], ["https://data.delijn.be/stops/201777", "https://data.delijn.be/stops/201820"], ["https://data.delijn.be/stops/400732", "https://data.delijn.be/stops/400735"], ["https://data.delijn.be/stops/504480", "https://data.delijn.be/stops/504725"], ["https://data.delijn.be/stops/105506", "https://data.delijn.be/stops/105783"], ["https://data.delijn.be/stops/210039", "https://data.delijn.be/stops/211038"], ["https://data.delijn.be/stops/300506", "https://data.delijn.be/stops/302335"], ["https://data.delijn.be/stops/404400", "https://data.delijn.be/stops/404401"], ["https://data.delijn.be/stops/206398", "https://data.delijn.be/stops/206399"], ["https://data.delijn.be/stops/304445", "https://data.delijn.be/stops/306409"], ["https://data.delijn.be/stops/504242", "https://data.delijn.be/stops/509639"], ["https://data.delijn.be/stops/503375", "https://data.delijn.be/stops/508375"], ["https://data.delijn.be/stops/104783", "https://data.delijn.be/stops/109620"], ["https://data.delijn.be/stops/507290", "https://data.delijn.be/stops/507293"], ["https://data.delijn.be/stops/304513", "https://data.delijn.be/stops/304520"], ["https://data.delijn.be/stops/203648", "https://data.delijn.be/stops/209948"], ["https://data.delijn.be/stops/403199", "https://data.delijn.be/stops/403200"], ["https://data.delijn.be/stops/205043", "https://data.delijn.be/stops/205408"], ["https://data.delijn.be/stops/306699", "https://data.delijn.be/stops/307933"], ["https://data.delijn.be/stops/300283", "https://data.delijn.be/stops/303893"], ["https://data.delijn.be/stops/505549", "https://data.delijn.be/stops/509943"], ["https://data.delijn.be/stops/405902", "https://data.delijn.be/stops/405992"], ["https://data.delijn.be/stops/403348", "https://data.delijn.be/stops/410276"], ["https://data.delijn.be/stops/107372", "https://data.delijn.be/stops/107376"], ["https://data.delijn.be/stops/400133", "https://data.delijn.be/stops/400152"], ["https://data.delijn.be/stops/501224", "https://data.delijn.be/stops/505330"], ["https://data.delijn.be/stops/203975", "https://data.delijn.be/stops/206398"], ["https://data.delijn.be/stops/200880", "https://data.delijn.be/stops/202060"], ["https://data.delijn.be/stops/504438", "https://data.delijn.be/stops/509438"], ["https://data.delijn.be/stops/200242", "https://data.delijn.be/stops/201615"], ["https://data.delijn.be/stops/108803", "https://data.delijn.be/stops/109899"], ["https://data.delijn.be/stops/202227", "https://data.delijn.be/stops/203051"], ["https://data.delijn.be/stops/302454", "https://data.delijn.be/stops/302455"], ["https://data.delijn.be/stops/201355", "https://data.delijn.be/stops/201501"], ["https://data.delijn.be/stops/508487", "https://data.delijn.be/stops/508490"], ["https://data.delijn.be/stops/401194", "https://data.delijn.be/stops/401196"], ["https://data.delijn.be/stops/405272", "https://data.delijn.be/stops/405273"], ["https://data.delijn.be/stops/408233", "https://data.delijn.be/stops/408308"], ["https://data.delijn.be/stops/401246", "https://data.delijn.be/stops/401270"], ["https://data.delijn.be/stops/202532", "https://data.delijn.be/stops/203532"], ["https://data.delijn.be/stops/103610", "https://data.delijn.be/stops/108490"], ["https://data.delijn.be/stops/201691", "https://data.delijn.be/stops/203139"], ["https://data.delijn.be/stops/503639", "https://data.delijn.be/stops/508639"], ["https://data.delijn.be/stops/203926", "https://data.delijn.be/stops/211022"], ["https://data.delijn.be/stops/408013", "https://data.delijn.be/stops/408149"], ["https://data.delijn.be/stops/303485", "https://data.delijn.be/stops/303486"], ["https://data.delijn.be/stops/404156", "https://data.delijn.be/stops/404157"], ["https://data.delijn.be/stops/303497", "https://data.delijn.be/stops/303504"], ["https://data.delijn.be/stops/303093", "https://data.delijn.be/stops/304244"], ["https://data.delijn.be/stops/101587", "https://data.delijn.be/stops/105448"], ["https://data.delijn.be/stops/406557", "https://data.delijn.be/stops/407380"], ["https://data.delijn.be/stops/407497", "https://data.delijn.be/stops/410255"], ["https://data.delijn.be/stops/403485", "https://data.delijn.be/stops/405633"], ["https://data.delijn.be/stops/208024", "https://data.delijn.be/stops/208759"], ["https://data.delijn.be/stops/207592", "https://data.delijn.be/stops/207949"], ["https://data.delijn.be/stops/306314", "https://data.delijn.be/stops/307193"], ["https://data.delijn.be/stops/504405", "https://data.delijn.be/stops/504835"], ["https://data.delijn.be/stops/402834", "https://data.delijn.be/stops/402838"], ["https://data.delijn.be/stops/300518", "https://data.delijn.be/stops/300526"], ["https://data.delijn.be/stops/107716", "https://data.delijn.be/stops/107738"], ["https://data.delijn.be/stops/101944", "https://data.delijn.be/stops/108788"], ["https://data.delijn.be/stops/408881", "https://data.delijn.be/stops/408922"], ["https://data.delijn.be/stops/301929", "https://data.delijn.be/stops/304530"], ["https://data.delijn.be/stops/308061", "https://data.delijn.be/stops/308297"], ["https://data.delijn.be/stops/300957", "https://data.delijn.be/stops/300969"], ["https://data.delijn.be/stops/107688", "https://data.delijn.be/stops/107689"], ["https://data.delijn.be/stops/405748", "https://data.delijn.be/stops/409422"], ["https://data.delijn.be/stops/301758", "https://data.delijn.be/stops/305947"], ["https://data.delijn.be/stops/203499", "https://data.delijn.be/stops/203500"], ["https://data.delijn.be/stops/206738", "https://data.delijn.be/stops/207991"], ["https://data.delijn.be/stops/409105", "https://data.delijn.be/stops/409109"], ["https://data.delijn.be/stops/107574", "https://data.delijn.be/stops/107746"], ["https://data.delijn.be/stops/106735", "https://data.delijn.be/stops/106774"], ["https://data.delijn.be/stops/405738", "https://data.delijn.be/stops/405739"], ["https://data.delijn.be/stops/502583", "https://data.delijn.be/stops/507212"], ["https://data.delijn.be/stops/406395", "https://data.delijn.be/stops/302827"], ["https://data.delijn.be/stops/202092", "https://data.delijn.be/stops/211291"], ["https://data.delijn.be/stops/203230", "https://data.delijn.be/stops/219505"], ["https://data.delijn.be/stops/505161", "https://data.delijn.be/stops/508643"], ["https://data.delijn.be/stops/107730", "https://data.delijn.be/stops/108555"], ["https://data.delijn.be/stops/104041", "https://data.delijn.be/stops/108521"], ["https://data.delijn.be/stops/304293", "https://data.delijn.be/stops/304297"], ["https://data.delijn.be/stops/505645", "https://data.delijn.be/stops/509172"], ["https://data.delijn.be/stops/200005", "https://data.delijn.be/stops/201994"], ["https://data.delijn.be/stops/208527", "https://data.delijn.be/stops/209527"], ["https://data.delijn.be/stops/300092", "https://data.delijn.be/stops/306862"], ["https://data.delijn.be/stops/200415", "https://data.delijn.be/stops/201415"], ["https://data.delijn.be/stops/208810", "https://data.delijn.be/stops/209197"], ["https://data.delijn.be/stops/302654", "https://data.delijn.be/stops/302656"], ["https://data.delijn.be/stops/504141", "https://data.delijn.be/stops/505980"], ["https://data.delijn.be/stops/405319", "https://data.delijn.be/stops/409320"], ["https://data.delijn.be/stops/201423", "https://data.delijn.be/stops/202826"], ["https://data.delijn.be/stops/204421", "https://data.delijn.be/stops/205421"], ["https://data.delijn.be/stops/103758", "https://data.delijn.be/stops/104210"], ["https://data.delijn.be/stops/202525", "https://data.delijn.be/stops/203520"], ["https://data.delijn.be/stops/202525", "https://data.delijn.be/stops/202526"], ["https://data.delijn.be/stops/503344", "https://data.delijn.be/stops/503345"], ["https://data.delijn.be/stops/404554", "https://data.delijn.be/stops/407237"], ["https://data.delijn.be/stops/403029", "https://data.delijn.be/stops/410329"], ["https://data.delijn.be/stops/102513", "https://data.delijn.be/stops/406515"], ["https://data.delijn.be/stops/507201", "https://data.delijn.be/stops/508338"], ["https://data.delijn.be/stops/200234", "https://data.delijn.be/stops/211051"], ["https://data.delijn.be/stops/105138", "https://data.delijn.be/stops/108804"], ["https://data.delijn.be/stops/200958", "https://data.delijn.be/stops/203469"], ["https://data.delijn.be/stops/201983", "https://data.delijn.be/stops/203850"], ["https://data.delijn.be/stops/503252", "https://data.delijn.be/stops/508255"], ["https://data.delijn.be/stops/304044", "https://data.delijn.be/stops/304046"], ["https://data.delijn.be/stops/504095", "https://data.delijn.be/stops/505194"], ["https://data.delijn.be/stops/204637", "https://data.delijn.be/stops/204638"], ["https://data.delijn.be/stops/302630", "https://data.delijn.be/stops/308114"], ["https://data.delijn.be/stops/102742", "https://data.delijn.be/stops/103039"], ["https://data.delijn.be/stops/101004", "https://data.delijn.be/stops/104881"], ["https://data.delijn.be/stops/409077", "https://data.delijn.be/stops/410049"], ["https://data.delijn.be/stops/101512", "https://data.delijn.be/stops/300109"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/209067"], ["https://data.delijn.be/stops/504015", "https://data.delijn.be/stops/504267"], ["https://data.delijn.be/stops/404242", "https://data.delijn.be/stops/404243"], ["https://data.delijn.be/stops/404136", "https://data.delijn.be/stops/404153"], ["https://data.delijn.be/stops/503512", "https://data.delijn.be/stops/505297"], ["https://data.delijn.be/stops/501170", "https://data.delijn.be/stops/501250"], ["https://data.delijn.be/stops/503902", "https://data.delijn.be/stops/504845"], ["https://data.delijn.be/stops/101136", "https://data.delijn.be/stops/103330"], ["https://data.delijn.be/stops/402755", "https://data.delijn.be/stops/402756"], ["https://data.delijn.be/stops/505979", "https://data.delijn.be/stops/508667"], ["https://data.delijn.be/stops/200198", "https://data.delijn.be/stops/201189"], ["https://data.delijn.be/stops/403214", "https://data.delijn.be/stops/403215"], ["https://data.delijn.be/stops/200444", "https://data.delijn.be/stops/201444"], ["https://data.delijn.be/stops/206719", "https://data.delijn.be/stops/207655"], ["https://data.delijn.be/stops/206954", "https://data.delijn.be/stops/300167"], ["https://data.delijn.be/stops/301325", "https://data.delijn.be/stops/305920"], ["https://data.delijn.be/stops/107036", "https://data.delijn.be/stops/107038"], ["https://data.delijn.be/stops/402587", "https://data.delijn.be/stops/408173"], ["https://data.delijn.be/stops/301870", "https://data.delijn.be/stops/304334"], ["https://data.delijn.be/stops/204683", "https://data.delijn.be/stops/205678"], ["https://data.delijn.be/stops/402150", "https://data.delijn.be/stops/402151"], ["https://data.delijn.be/stops/307775", "https://data.delijn.be/stops/307776"], ["https://data.delijn.be/stops/304886", "https://data.delijn.be/stops/304887"], ["https://data.delijn.be/stops/400065", "https://data.delijn.be/stops/400172"], ["https://data.delijn.be/stops/502014", "https://data.delijn.be/stops/502056"], ["https://data.delijn.be/stops/109844", "https://data.delijn.be/stops/109845"], ["https://data.delijn.be/stops/401303", "https://data.delijn.be/stops/401321"], ["https://data.delijn.be/stops/308449", "https://data.delijn.be/stops/308691"], ["https://data.delijn.be/stops/202976", "https://data.delijn.be/stops/202977"], ["https://data.delijn.be/stops/502296", "https://data.delijn.be/stops/507294"], ["https://data.delijn.be/stops/300353", "https://data.delijn.be/stops/304063"], ["https://data.delijn.be/stops/303383", "https://data.delijn.be/stops/303672"], ["https://data.delijn.be/stops/109309", "https://data.delijn.be/stops/109311"], ["https://data.delijn.be/stops/407669", "https://data.delijn.be/stops/407672"], ["https://data.delijn.be/stops/402973", "https://data.delijn.be/stops/402977"], ["https://data.delijn.be/stops/104514", "https://data.delijn.be/stops/107789"], ["https://data.delijn.be/stops/403711", "https://data.delijn.be/stops/403722"], ["https://data.delijn.be/stops/201157", "https://data.delijn.be/stops/201545"], ["https://data.delijn.be/stops/402106", "https://data.delijn.be/stops/402195"], ["https://data.delijn.be/stops/505667", "https://data.delijn.be/stops/508110"], ["https://data.delijn.be/stops/509738", "https://data.delijn.be/stops/509740"], ["https://data.delijn.be/stops/300108", "https://data.delijn.be/stops/300115"], ["https://data.delijn.be/stops/302187", "https://data.delijn.be/stops/305068"], ["https://data.delijn.be/stops/408316", "https://data.delijn.be/stops/408399"], ["https://data.delijn.be/stops/405838", "https://data.delijn.be/stops/409755"], ["https://data.delijn.be/stops/402709", "https://data.delijn.be/stops/402946"], ["https://data.delijn.be/stops/408428", "https://data.delijn.be/stops/408747"], ["https://data.delijn.be/stops/204062", "https://data.delijn.be/stops/205711"], ["https://data.delijn.be/stops/502466", "https://data.delijn.be/stops/507466"], ["https://data.delijn.be/stops/406733", "https://data.delijn.be/stops/408873"], ["https://data.delijn.be/stops/104343", "https://data.delijn.be/stops/105911"], ["https://data.delijn.be/stops/503455", "https://data.delijn.be/stops/508455"], ["https://data.delijn.be/stops/305149", "https://data.delijn.be/stops/307086"], ["https://data.delijn.be/stops/104280", "https://data.delijn.be/stops/105840"], ["https://data.delijn.be/stops/201877", "https://data.delijn.be/stops/203275"], ["https://data.delijn.be/stops/304405", "https://data.delijn.be/stops/306874"], ["https://data.delijn.be/stops/300023", "https://data.delijn.be/stops/307490"], ["https://data.delijn.be/stops/307596", "https://data.delijn.be/stops/307740"], ["https://data.delijn.be/stops/202700", "https://data.delijn.be/stops/203700"], ["https://data.delijn.be/stops/104699", "https://data.delijn.be/stops/108179"], ["https://data.delijn.be/stops/509532", "https://data.delijn.be/stops/509533"], ["https://data.delijn.be/stops/206410", "https://data.delijn.be/stops/207084"], ["https://data.delijn.be/stops/504692", "https://data.delijn.be/stops/509077"], ["https://data.delijn.be/stops/401039", "https://data.delijn.be/stops/401095"], ["https://data.delijn.be/stops/506448", "https://data.delijn.be/stops/506453"], ["https://data.delijn.be/stops/405761", "https://data.delijn.be/stops/302843"], ["https://data.delijn.be/stops/303310", "https://data.delijn.be/stops/303315"], ["https://data.delijn.be/stops/200390", "https://data.delijn.be/stops/201396"], ["https://data.delijn.be/stops/107841", "https://data.delijn.be/stops/107843"], ["https://data.delijn.be/stops/206942", "https://data.delijn.be/stops/208101"], ["https://data.delijn.be/stops/505173", "https://data.delijn.be/stops/505581"], ["https://data.delijn.be/stops/200988", "https://data.delijn.be/stops/204951"], ["https://data.delijn.be/stops/204231", "https://data.delijn.be/stops/205231"], ["https://data.delijn.be/stops/404715", "https://data.delijn.be/stops/404769"], ["https://data.delijn.be/stops/501769", "https://data.delijn.be/stops/502530"], ["https://data.delijn.be/stops/204215", "https://data.delijn.be/stops/205213"], ["https://data.delijn.be/stops/101150", "https://data.delijn.be/stops/105490"], ["https://data.delijn.be/stops/504783", "https://data.delijn.be/stops/504784"], ["https://data.delijn.be/stops/202821", "https://data.delijn.be/stops/203912"], ["https://data.delijn.be/stops/508253", "https://data.delijn.be/stops/508750"], ["https://data.delijn.be/stops/202042", "https://data.delijn.be/stops/203225"], ["https://data.delijn.be/stops/501450", "https://data.delijn.be/stops/506451"], ["https://data.delijn.be/stops/503154", "https://data.delijn.be/stops/506001"], ["https://data.delijn.be/stops/307645", "https://data.delijn.be/stops/307687"], ["https://data.delijn.be/stops/201459", "https://data.delijn.be/stops/201737"], ["https://data.delijn.be/stops/204539", "https://data.delijn.be/stops/205299"], ["https://data.delijn.be/stops/405740", "https://data.delijn.be/stops/405744"], ["https://data.delijn.be/stops/404407", "https://data.delijn.be/stops/404420"], ["https://data.delijn.be/stops/504598", "https://data.delijn.be/stops/504605"], ["https://data.delijn.be/stops/405073", "https://data.delijn.be/stops/405888"], ["https://data.delijn.be/stops/303959", "https://data.delijn.be/stops/303973"], ["https://data.delijn.be/stops/504033", "https://data.delijn.be/stops/504035"], ["https://data.delijn.be/stops/103259", "https://data.delijn.be/stops/105856"], ["https://data.delijn.be/stops/302294", "https://data.delijn.be/stops/303494"], ["https://data.delijn.be/stops/304954", "https://data.delijn.be/stops/304955"], ["https://data.delijn.be/stops/510026", "https://data.delijn.be/stops/510027"], ["https://data.delijn.be/stops/505659", "https://data.delijn.be/stops/508506"], ["https://data.delijn.be/stops/200841", "https://data.delijn.be/stops/202312"], ["https://data.delijn.be/stops/302238", "https://data.delijn.be/stops/302928"], ["https://data.delijn.be/stops/505074", "https://data.delijn.be/stops/505740"], ["https://data.delijn.be/stops/401814", "https://data.delijn.be/stops/406895"], ["https://data.delijn.be/stops/505665", "https://data.delijn.be/stops/507473"], ["https://data.delijn.be/stops/301154", "https://data.delijn.be/stops/302226"], ["https://data.delijn.be/stops/404960", "https://data.delijn.be/stops/409526"], ["https://data.delijn.be/stops/400668", "https://data.delijn.be/stops/408972"], ["https://data.delijn.be/stops/304147", "https://data.delijn.be/stops/304170"], ["https://data.delijn.be/stops/101938", "https://data.delijn.be/stops/109342"], ["https://data.delijn.be/stops/401160", "https://data.delijn.be/stops/401161"], ["https://data.delijn.be/stops/208175", "https://data.delijn.be/stops/208177"], ["https://data.delijn.be/stops/203981", "https://data.delijn.be/stops/203982"], ["https://data.delijn.be/stops/503551", "https://data.delijn.be/stops/503555"], ["https://data.delijn.be/stops/300085", "https://data.delijn.be/stops/300107"], ["https://data.delijn.be/stops/505398", "https://data.delijn.be/stops/506658"], ["https://data.delijn.be/stops/208568", "https://data.delijn.be/stops/208569"], ["https://data.delijn.be/stops/104393", "https://data.delijn.be/stops/104397"], ["https://data.delijn.be/stops/503234", "https://data.delijn.be/stops/503965"], ["https://data.delijn.be/stops/207111", "https://data.delijn.be/stops/207419"], ["https://data.delijn.be/stops/106494", "https://data.delijn.be/stops/106495"], ["https://data.delijn.be/stops/102061", "https://data.delijn.be/stops/106533"], ["https://data.delijn.be/stops/403766", "https://data.delijn.be/stops/408184"], ["https://data.delijn.be/stops/202367", "https://data.delijn.be/stops/203395"], ["https://data.delijn.be/stops/101983", "https://data.delijn.be/stops/109049"], ["https://data.delijn.be/stops/101414", "https://data.delijn.be/stops/102067"], ["https://data.delijn.be/stops/206904", "https://data.delijn.be/stops/207905"], ["https://data.delijn.be/stops/307967", "https://data.delijn.be/stops/307968"], ["https://data.delijn.be/stops/205247", "https://data.delijn.be/stops/205753"], ["https://data.delijn.be/stops/101460", "https://data.delijn.be/stops/101757"], ["https://data.delijn.be/stops/304978", "https://data.delijn.be/stops/305021"], ["https://data.delijn.be/stops/202180", "https://data.delijn.be/stops/205080"], ["https://data.delijn.be/stops/303439", "https://data.delijn.be/stops/303451"], ["https://data.delijn.be/stops/204099", "https://data.delijn.be/stops/206240"], ["https://data.delijn.be/stops/507369", "https://data.delijn.be/stops/507768"], ["https://data.delijn.be/stops/206965", "https://data.delijn.be/stops/207965"], ["https://data.delijn.be/stops/206691", "https://data.delijn.be/stops/207954"], ["https://data.delijn.be/stops/407351", "https://data.delijn.be/stops/409435"], ["https://data.delijn.be/stops/102019", "https://data.delijn.be/stops/102093"], ["https://data.delijn.be/stops/302184", "https://data.delijn.be/stops/305080"], ["https://data.delijn.be/stops/401448", "https://data.delijn.be/stops/401449"], ["https://data.delijn.be/stops/201699", "https://data.delijn.be/stops/208641"], ["https://data.delijn.be/stops/107841", "https://data.delijn.be/stops/109652"], ["https://data.delijn.be/stops/407608", "https://data.delijn.be/stops/407609"], ["https://data.delijn.be/stops/301234", "https://data.delijn.be/stops/307850"], ["https://data.delijn.be/stops/105085", "https://data.delijn.be/stops/105100"], ["https://data.delijn.be/stops/201684", "https://data.delijn.be/stops/202316"], ["https://data.delijn.be/stops/308750", "https://data.delijn.be/stops/308751"], ["https://data.delijn.be/stops/106454", "https://data.delijn.be/stops/106455"], ["https://data.delijn.be/stops/502505", "https://data.delijn.be/stops/505599"], ["https://data.delijn.be/stops/407866", "https://data.delijn.be/stops/407891"], ["https://data.delijn.be/stops/503703", "https://data.delijn.be/stops/508266"], ["https://data.delijn.be/stops/408603", "https://data.delijn.be/stops/408611"], ["https://data.delijn.be/stops/302200", "https://data.delijn.be/stops/302441"], ["https://data.delijn.be/stops/200585", "https://data.delijn.be/stops/201583"], ["https://data.delijn.be/stops/102917", "https://data.delijn.be/stops/102919"], ["https://data.delijn.be/stops/101704", "https://data.delijn.be/stops/103348"], ["https://data.delijn.be/stops/305928", "https://data.delijn.be/stops/306968"], ["https://data.delijn.be/stops/101223", "https://data.delijn.be/stops/107791"], ["https://data.delijn.be/stops/410003", "https://data.delijn.be/stops/410005"], ["https://data.delijn.be/stops/503730", "https://data.delijn.be/stops/508756"], ["https://data.delijn.be/stops/300409", "https://data.delijn.be/stops/308963"], ["https://data.delijn.be/stops/201005", "https://data.delijn.be/stops/202517"], ["https://data.delijn.be/stops/101888", "https://data.delijn.be/stops/103152"], ["https://data.delijn.be/stops/109280", "https://data.delijn.be/stops/109285"], ["https://data.delijn.be/stops/503766", "https://data.delijn.be/stops/503966"], ["https://data.delijn.be/stops/300323", "https://data.delijn.be/stops/304862"], ["https://data.delijn.be/stops/109795", "https://data.delijn.be/stops/109797"], ["https://data.delijn.be/stops/407972", "https://data.delijn.be/stops/303890"], ["https://data.delijn.be/stops/503636", "https://data.delijn.be/stops/508636"], ["https://data.delijn.be/stops/509598", "https://data.delijn.be/stops/509600"], ["https://data.delijn.be/stops/407627", "https://data.delijn.be/stops/407671"], ["https://data.delijn.be/stops/405456", "https://data.delijn.be/stops/405655"], ["https://data.delijn.be/stops/403645", "https://data.delijn.be/stops/407515"], ["https://data.delijn.be/stops/205049", "https://data.delijn.be/stops/205705"], ["https://data.delijn.be/stops/301392", "https://data.delijn.be/stops/306137"], ["https://data.delijn.be/stops/208305", "https://data.delijn.be/stops/209306"], ["https://data.delijn.be/stops/304191", "https://data.delijn.be/stops/305495"], ["https://data.delijn.be/stops/305150", "https://data.delijn.be/stops/305151"], ["https://data.delijn.be/stops/501157", "https://data.delijn.be/stops/506157"], ["https://data.delijn.be/stops/108853", "https://data.delijn.be/stops/108854"], ["https://data.delijn.be/stops/301080", "https://data.delijn.be/stops/302479"], ["https://data.delijn.be/stops/303695", "https://data.delijn.be/stops/303734"], ["https://data.delijn.be/stops/200777", "https://data.delijn.be/stops/209309"], ["https://data.delijn.be/stops/504831", "https://data.delijn.be/stops/508963"], ["https://data.delijn.be/stops/103128", "https://data.delijn.be/stops/106785"], ["https://data.delijn.be/stops/405540", "https://data.delijn.be/stops/405620"], ["https://data.delijn.be/stops/202016", "https://data.delijn.be/stops/203015"], ["https://data.delijn.be/stops/308146", "https://data.delijn.be/stops/308157"], ["https://data.delijn.be/stops/206970", "https://data.delijn.be/stops/207970"], ["https://data.delijn.be/stops/503556", "https://data.delijn.be/stops/503573"], ["https://data.delijn.be/stops/300567", "https://data.delijn.be/stops/307864"], ["https://data.delijn.be/stops/503933", "https://data.delijn.be/stops/509041"], ["https://data.delijn.be/stops/208474", "https://data.delijn.be/stops/208475"], ["https://data.delijn.be/stops/407224", "https://data.delijn.be/stops/407241"], ["https://data.delijn.be/stops/304510", "https://data.delijn.be/stops/306344"], ["https://data.delijn.be/stops/304473", "https://data.delijn.be/stops/307568"], ["https://data.delijn.be/stops/505951", "https://data.delijn.be/stops/508288"], ["https://data.delijn.be/stops/202721", "https://data.delijn.be/stops/203722"], ["https://data.delijn.be/stops/107346", "https://data.delijn.be/stops/108159"], ["https://data.delijn.be/stops/503830", "https://data.delijn.be/stops/508830"], ["https://data.delijn.be/stops/204419", "https://data.delijn.be/stops/204474"], ["https://data.delijn.be/stops/206766", "https://data.delijn.be/stops/208559"], ["https://data.delijn.be/stops/201083", "https://data.delijn.be/stops/201370"], ["https://data.delijn.be/stops/502444", "https://data.delijn.be/stops/507444"], ["https://data.delijn.be/stops/307356", "https://data.delijn.be/stops/307366"], ["https://data.delijn.be/stops/503372", "https://data.delijn.be/stops/503403"], ["https://data.delijn.be/stops/207440", "https://data.delijn.be/stops/209465"], ["https://data.delijn.be/stops/107822", "https://data.delijn.be/stops/107884"], ["https://data.delijn.be/stops/107549", "https://data.delijn.be/stops/107552"], ["https://data.delijn.be/stops/303189", "https://data.delijn.be/stops/303200"], ["https://data.delijn.be/stops/302272", "https://data.delijn.be/stops/302279"], ["https://data.delijn.be/stops/105635", "https://data.delijn.be/stops/105910"], ["https://data.delijn.be/stops/302570", "https://data.delijn.be/stops/302579"], ["https://data.delijn.be/stops/101378", "https://data.delijn.be/stops/109715"], ["https://data.delijn.be/stops/400594", "https://data.delijn.be/stops/400604"], ["https://data.delijn.be/stops/409350", "https://data.delijn.be/stops/409351"], ["https://data.delijn.be/stops/507607", "https://data.delijn.be/stops/507608"], ["https://data.delijn.be/stops/208699", "https://data.delijn.be/stops/208700"], ["https://data.delijn.be/stops/304303", "https://data.delijn.be/stops/304351"], ["https://data.delijn.be/stops/409431", "https://data.delijn.be/stops/409432"], ["https://data.delijn.be/stops/102577", "https://data.delijn.be/stops/102578"], ["https://data.delijn.be/stops/207888", "https://data.delijn.be/stops/207893"], ["https://data.delijn.be/stops/502173", "https://data.delijn.be/stops/505814"], ["https://data.delijn.be/stops/509829", "https://data.delijn.be/stops/509830"], ["https://data.delijn.be/stops/501305", "https://data.delijn.be/stops/506353"], ["https://data.delijn.be/stops/202823", "https://data.delijn.be/stops/203925"], ["https://data.delijn.be/stops/503223", "https://data.delijn.be/stops/508220"], ["https://data.delijn.be/stops/505586", "https://data.delijn.be/stops/505764"], ["https://data.delijn.be/stops/301439", "https://data.delijn.be/stops/307799"], ["https://data.delijn.be/stops/500116", "https://data.delijn.be/stops/502272"], ["https://data.delijn.be/stops/204546", "https://data.delijn.be/stops/205333"], ["https://data.delijn.be/stops/504820", "https://data.delijn.be/stops/508208"], ["https://data.delijn.be/stops/305408", "https://data.delijn.be/stops/305415"], ["https://data.delijn.be/stops/407627", "https://data.delijn.be/stops/408448"], ["https://data.delijn.be/stops/300745", "https://data.delijn.be/stops/304774"], ["https://data.delijn.be/stops/408776", "https://data.delijn.be/stops/408777"], ["https://data.delijn.be/stops/508647", "https://data.delijn.be/stops/509750"], ["https://data.delijn.be/stops/404562", "https://data.delijn.be/stops/404563"], ["https://data.delijn.be/stops/203862", "https://data.delijn.be/stops/208705"], ["https://data.delijn.be/stops/305216", "https://data.delijn.be/stops/308049"], ["https://data.delijn.be/stops/201751", "https://data.delijn.be/stops/209280"], ["https://data.delijn.be/stops/107110", "https://data.delijn.be/stops/109040"], ["https://data.delijn.be/stops/106365", "https://data.delijn.be/stops/106367"], ["https://data.delijn.be/stops/504434", "https://data.delijn.be/stops/509412"], ["https://data.delijn.be/stops/503494", "https://data.delijn.be/stops/508494"], ["https://data.delijn.be/stops/204225", "https://data.delijn.be/stops/204599"], ["https://data.delijn.be/stops/303792", "https://data.delijn.be/stops/303797"], ["https://data.delijn.be/stops/102458", "https://data.delijn.be/stops/102462"], ["https://data.delijn.be/stops/104042", "https://data.delijn.be/stops/109761"], ["https://data.delijn.be/stops/208351", "https://data.delijn.be/stops/208780"], ["https://data.delijn.be/stops/502682", "https://data.delijn.be/stops/507682"], ["https://data.delijn.be/stops/206482", "https://data.delijn.be/stops/207482"], ["https://data.delijn.be/stops/405220", "https://data.delijn.be/stops/405235"], ["https://data.delijn.be/stops/301440", "https://data.delijn.be/stops/302128"], ["https://data.delijn.be/stops/103114", "https://data.delijn.be/stops/106815"], ["https://data.delijn.be/stops/400403", "https://data.delijn.be/stops/405864"], ["https://data.delijn.be/stops/403283", "https://data.delijn.be/stops/403372"], ["https://data.delijn.be/stops/102293", "https://data.delijn.be/stops/107981"], ["https://data.delijn.be/stops/502083", "https://data.delijn.be/stops/502668"], ["https://data.delijn.be/stops/503829", "https://data.delijn.be/stops/505994"], ["https://data.delijn.be/stops/103169", "https://data.delijn.be/stops/109837"], ["https://data.delijn.be/stops/503517", "https://data.delijn.be/stops/508517"], ["https://data.delijn.be/stops/205258", "https://data.delijn.be/stops/205260"], ["https://data.delijn.be/stops/201139", "https://data.delijn.be/stops/201223"], ["https://data.delijn.be/stops/404200", "https://data.delijn.be/stops/404215"], ["https://data.delijn.be/stops/202776", "https://data.delijn.be/stops/203776"], ["https://data.delijn.be/stops/201511", "https://data.delijn.be/stops/201551"], ["https://data.delijn.be/stops/501678", "https://data.delijn.be/stops/506145"], ["https://data.delijn.be/stops/405304", "https://data.delijn.be/stops/408444"], ["https://data.delijn.be/stops/108238", "https://data.delijn.be/stops/108241"], ["https://data.delijn.be/stops/304956", "https://data.delijn.be/stops/304969"], ["https://data.delijn.be/stops/307351", "https://data.delijn.be/stops/307440"], ["https://data.delijn.be/stops/403613", "https://data.delijn.be/stops/403648"], ["https://data.delijn.be/stops/305162", "https://data.delijn.be/stops/305183"], ["https://data.delijn.be/stops/101203", "https://data.delijn.be/stops/205662"], ["https://data.delijn.be/stops/204170", "https://data.delijn.be/stops/205170"], ["https://data.delijn.be/stops/400295", "https://data.delijn.be/stops/400366"], ["https://data.delijn.be/stops/101076", "https://data.delijn.be/stops/107152"], ["https://data.delijn.be/stops/104696", "https://data.delijn.be/stops/107352"], ["https://data.delijn.be/stops/108198", "https://data.delijn.be/stops/108202"], ["https://data.delijn.be/stops/209081", "https://data.delijn.be/stops/209792"], ["https://data.delijn.be/stops/400076", "https://data.delijn.be/stops/400077"], ["https://data.delijn.be/stops/406466", "https://data.delijn.be/stops/407513"], ["https://data.delijn.be/stops/501520", "https://data.delijn.be/stops/501521"], ["https://data.delijn.be/stops/503877", "https://data.delijn.be/stops/508877"], ["https://data.delijn.be/stops/404317", "https://data.delijn.be/stops/409659"], ["https://data.delijn.be/stops/104904", "https://data.delijn.be/stops/104906"], ["https://data.delijn.be/stops/504981", "https://data.delijn.be/stops/508903"], ["https://data.delijn.be/stops/408569", "https://data.delijn.be/stops/408572"], ["https://data.delijn.be/stops/504236", "https://data.delijn.be/stops/505842"], ["https://data.delijn.be/stops/201455", "https://data.delijn.be/stops/203320"], ["https://data.delijn.be/stops/103003", "https://data.delijn.be/stops/105824"], ["https://data.delijn.be/stops/400761", "https://data.delijn.be/stops/400805"], ["https://data.delijn.be/stops/206764", "https://data.delijn.be/stops/307314"], ["https://data.delijn.be/stops/103481", "https://data.delijn.be/stops/109162"], ["https://data.delijn.be/stops/505981", "https://data.delijn.be/stops/508345"], ["https://data.delijn.be/stops/407833", "https://data.delijn.be/stops/407909"], ["https://data.delijn.be/stops/101394", "https://data.delijn.be/stops/106516"], ["https://data.delijn.be/stops/400785", "https://data.delijn.be/stops/409536"], ["https://data.delijn.be/stops/200001", "https://data.delijn.be/stops/210008"], ["https://data.delijn.be/stops/402323", "https://data.delijn.be/stops/405581"], ["https://data.delijn.be/stops/208446", "https://data.delijn.be/stops/209447"], ["https://data.delijn.be/stops/201918", "https://data.delijn.be/stops/207567"], ["https://data.delijn.be/stops/501299", "https://data.delijn.be/stops/506330"], ["https://data.delijn.be/stops/208158", "https://data.delijn.be/stops/209157"], ["https://data.delijn.be/stops/300156", "https://data.delijn.be/stops/308700"], ["https://data.delijn.be/stops/400532", "https://data.delijn.be/stops/400533"], ["https://data.delijn.be/stops/406929", "https://data.delijn.be/stops/407422"], ["https://data.delijn.be/stops/405646", "https://data.delijn.be/stops/408643"], ["https://data.delijn.be/stops/304151", "https://data.delijn.be/stops/305450"], ["https://data.delijn.be/stops/403908", "https://data.delijn.be/stops/403911"], ["https://data.delijn.be/stops/105194", "https://data.delijn.be/stops/108884"], ["https://data.delijn.be/stops/101982", "https://data.delijn.be/stops/300042"], ["https://data.delijn.be/stops/208525", "https://data.delijn.be/stops/209082"], ["https://data.delijn.be/stops/204387", "https://data.delijn.be/stops/205389"], ["https://data.delijn.be/stops/300352", "https://data.delijn.be/stops/304859"], ["https://data.delijn.be/stops/201938", "https://data.delijn.be/stops/207966"], ["https://data.delijn.be/stops/301046", "https://data.delijn.be/stops/301047"], ["https://data.delijn.be/stops/400264", "https://data.delijn.be/stops/400400"], ["https://data.delijn.be/stops/106401", "https://data.delijn.be/stops/107407"], ["https://data.delijn.be/stops/203331", "https://data.delijn.be/stops/203337"], ["https://data.delijn.be/stops/502080", "https://data.delijn.be/stops/502082"], ["https://data.delijn.be/stops/201667", "https://data.delijn.be/stops/201808"], ["https://data.delijn.be/stops/107379", "https://data.delijn.be/stops/109594"], ["https://data.delijn.be/stops/206007", "https://data.delijn.be/stops/207079"], ["https://data.delijn.be/stops/403481", "https://data.delijn.be/stops/403483"], ["https://data.delijn.be/stops/300462", "https://data.delijn.be/stops/308061"], ["https://data.delijn.be/stops/407633", "https://data.delijn.be/stops/407656"], ["https://data.delijn.be/stops/403509", "https://data.delijn.be/stops/410282"], ["https://data.delijn.be/stops/200696", "https://data.delijn.be/stops/208646"], ["https://data.delijn.be/stops/304999", "https://data.delijn.be/stops/305009"], ["https://data.delijn.be/stops/201314", "https://data.delijn.be/stops/201591"], ["https://data.delijn.be/stops/101584", "https://data.delijn.be/stops/105451"], ["https://data.delijn.be/stops/502744", "https://data.delijn.be/stops/505654"], ["https://data.delijn.be/stops/402336", "https://data.delijn.be/stops/402337"], ["https://data.delijn.be/stops/102427", "https://data.delijn.be/stops/103592"], ["https://data.delijn.be/stops/401426", "https://data.delijn.be/stops/401427"], ["https://data.delijn.be/stops/406212", "https://data.delijn.be/stops/406230"], ["https://data.delijn.be/stops/403096", "https://data.delijn.be/stops/403247"], ["https://data.delijn.be/stops/405447", "https://data.delijn.be/stops/409292"], ["https://data.delijn.be/stops/105414", "https://data.delijn.be/stops/105416"], ["https://data.delijn.be/stops/406642", "https://data.delijn.be/stops/406643"], ["https://data.delijn.be/stops/104954", "https://data.delijn.be/stops/109728"], ["https://data.delijn.be/stops/106698", "https://data.delijn.be/stops/106702"], ["https://data.delijn.be/stops/107881", "https://data.delijn.be/stops/107883"], ["https://data.delijn.be/stops/407330", "https://data.delijn.be/stops/407331"], ["https://data.delijn.be/stops/303077", "https://data.delijn.be/stops/307049"], ["https://data.delijn.be/stops/308772", "https://data.delijn.be/stops/308776"], ["https://data.delijn.be/stops/105014", "https://data.delijn.be/stops/105016"], ["https://data.delijn.be/stops/303347", "https://data.delijn.be/stops/305121"], ["https://data.delijn.be/stops/300725", "https://data.delijn.be/stops/300732"], ["https://data.delijn.be/stops/208248", "https://data.delijn.be/stops/209248"], ["https://data.delijn.be/stops/204252", "https://data.delijn.be/stops/205734"], ["https://data.delijn.be/stops/502576", "https://data.delijn.be/stops/507166"], ["https://data.delijn.be/stops/401765", "https://data.delijn.be/stops/401799"], ["https://data.delijn.be/stops/504109", "https://data.delijn.be/stops/509107"], ["https://data.delijn.be/stops/405258", "https://data.delijn.be/stops/410087"], ["https://data.delijn.be/stops/104794", "https://data.delijn.be/stops/107704"], ["https://data.delijn.be/stops/206041", "https://data.delijn.be/stops/206056"], ["https://data.delijn.be/stops/503517", "https://data.delijn.be/stops/504791"], ["https://data.delijn.be/stops/503473", "https://data.delijn.be/stops/508970"], ["https://data.delijn.be/stops/304024", "https://data.delijn.be/stops/304025"], ["https://data.delijn.be/stops/304997", "https://data.delijn.be/stops/305018"], ["https://data.delijn.be/stops/408568", "https://data.delijn.be/stops/408815"], ["https://data.delijn.be/stops/302320", "https://data.delijn.be/stops/304176"], ["https://data.delijn.be/stops/203870", "https://data.delijn.be/stops/209713"], ["https://data.delijn.be/stops/101452", "https://data.delijn.be/stops/102631"], ["https://data.delijn.be/stops/209046", "https://data.delijn.be/stops/209562"], ["https://data.delijn.be/stops/301677", "https://data.delijn.be/stops/301680"], ["https://data.delijn.be/stops/301925", "https://data.delijn.be/stops/301927"], ["https://data.delijn.be/stops/503751", "https://data.delijn.be/stops/505566"], ["https://data.delijn.be/stops/303576", "https://data.delijn.be/stops/303585"], ["https://data.delijn.be/stops/105290", "https://data.delijn.be/stops/105292"], ["https://data.delijn.be/stops/305831", "https://data.delijn.be/stops/305833"], ["https://data.delijn.be/stops/407295", "https://data.delijn.be/stops/408131"], ["https://data.delijn.be/stops/305077", "https://data.delijn.be/stops/307944"], ["https://data.delijn.be/stops/408972", "https://data.delijn.be/stops/409000"], ["https://data.delijn.be/stops/102555", "https://data.delijn.be/stops/102635"], ["https://data.delijn.be/stops/108832", "https://data.delijn.be/stops/108834"], ["https://data.delijn.be/stops/405549", "https://data.delijn.be/stops/405552"], ["https://data.delijn.be/stops/101995", "https://data.delijn.be/stops/104719"], ["https://data.delijn.be/stops/202137", "https://data.delijn.be/stops/203137"], ["https://data.delijn.be/stops/208007", "https://data.delijn.be/stops/208079"], ["https://data.delijn.be/stops/501086", "https://data.delijn.be/stops/501088"], ["https://data.delijn.be/stops/505690", "https://data.delijn.be/stops/505705"], ["https://data.delijn.be/stops/506102", "https://data.delijn.be/stops/590334"], ["https://data.delijn.be/stops/209585", "https://data.delijn.be/stops/209793"], ["https://data.delijn.be/stops/502910", "https://data.delijn.be/stops/507247"], ["https://data.delijn.be/stops/301962", "https://data.delijn.be/stops/301964"], ["https://data.delijn.be/stops/301287", "https://data.delijn.be/stops/306145"], ["https://data.delijn.be/stops/204693", "https://data.delijn.be/stops/205446"], ["https://data.delijn.be/stops/302705", "https://data.delijn.be/stops/302735"], ["https://data.delijn.be/stops/204978", "https://data.delijn.be/stops/208854"], ["https://data.delijn.be/stops/303892", "https://data.delijn.be/stops/305577"], ["https://data.delijn.be/stops/306072", "https://data.delijn.be/stops/306727"], ["https://data.delijn.be/stops/202817", "https://data.delijn.be/stops/203817"], ["https://data.delijn.be/stops/205208", "https://data.delijn.be/stops/205469"], ["https://data.delijn.be/stops/400742", "https://data.delijn.be/stops/400903"], ["https://data.delijn.be/stops/405780", "https://data.delijn.be/stops/405781"], ["https://data.delijn.be/stops/200456", "https://data.delijn.be/stops/201684"], ["https://data.delijn.be/stops/301146", "https://data.delijn.be/stops/304447"], ["https://data.delijn.be/stops/204698", "https://data.delijn.be/stops/205698"], ["https://data.delijn.be/stops/300728", "https://data.delijn.be/stops/308110"], ["https://data.delijn.be/stops/401798", "https://data.delijn.be/stops/401819"], ["https://data.delijn.be/stops/201873", "https://data.delijn.be/stops/203349"], ["https://data.delijn.be/stops/406285", "https://data.delijn.be/stops/410167"], ["https://data.delijn.be/stops/403241", "https://data.delijn.be/stops/408516"], ["https://data.delijn.be/stops/400785", "https://data.delijn.be/stops/400835"], ["https://data.delijn.be/stops/503547", "https://data.delijn.be/stops/505846"], ["https://data.delijn.be/stops/204983", "https://data.delijn.be/stops/207209"], ["https://data.delijn.be/stops/502351", "https://data.delijn.be/stops/505672"], ["https://data.delijn.be/stops/208451", "https://data.delijn.be/stops/218015"], ["https://data.delijn.be/stops/405171", "https://data.delijn.be/stops/405231"], ["https://data.delijn.be/stops/502326", "https://data.delijn.be/stops/505009"], ["https://data.delijn.be/stops/201288", "https://data.delijn.be/stops/201381"], ["https://data.delijn.be/stops/206941", "https://data.delijn.be/stops/208564"], ["https://data.delijn.be/stops/300297", "https://data.delijn.be/stops/301900"], ["https://data.delijn.be/stops/305894", "https://data.delijn.be/stops/307330"], ["https://data.delijn.be/stops/404497", "https://data.delijn.be/stops/410155"], ["https://data.delijn.be/stops/301238", "https://data.delijn.be/stops/307907"], ["https://data.delijn.be/stops/200386", "https://data.delijn.be/stops/200475"], ["https://data.delijn.be/stops/301098", "https://data.delijn.be/stops/301230"], ["https://data.delijn.be/stops/305541", "https://data.delijn.be/stops/305559"], ["https://data.delijn.be/stops/208002", "https://data.delijn.be/stops/208098"], ["https://data.delijn.be/stops/505734", "https://data.delijn.be/stops/507609"], ["https://data.delijn.be/stops/503731", "https://data.delijn.be/stops/508445"], ["https://data.delijn.be/stops/101375", "https://data.delijn.be/stops/101985"], ["https://data.delijn.be/stops/402805", "https://data.delijn.be/stops/406002"], ["https://data.delijn.be/stops/101162", "https://data.delijn.be/stops/105976"], ["https://data.delijn.be/stops/105518", "https://data.delijn.be/stops/105519"], ["https://data.delijn.be/stops/301659", "https://data.delijn.be/stops/301891"], ["https://data.delijn.be/stops/403067", "https://data.delijn.be/stops/410329"], ["https://data.delijn.be/stops/204739", "https://data.delijn.be/stops/204766"], ["https://data.delijn.be/stops/106797", "https://data.delijn.be/stops/106800"], ["https://data.delijn.be/stops/301452", "https://data.delijn.be/stops/302518"], ["https://data.delijn.be/stops/206346", "https://data.delijn.be/stops/207346"], ["https://data.delijn.be/stops/102174", "https://data.delijn.be/stops/109368"], ["https://data.delijn.be/stops/308519", "https://data.delijn.be/stops/308520"], ["https://data.delijn.be/stops/304831", "https://data.delijn.be/stops/304886"], ["https://data.delijn.be/stops/104880", "https://data.delijn.be/stops/108565"], ["https://data.delijn.be/stops/202854", "https://data.delijn.be/stops/202855"], ["https://data.delijn.be/stops/402503", "https://data.delijn.be/stops/404062"], ["https://data.delijn.be/stops/503686", "https://data.delijn.be/stops/508689"], ["https://data.delijn.be/stops/501006", "https://data.delijn.be/stops/506504"], ["https://data.delijn.be/stops/305087", "https://data.delijn.be/stops/305089"], ["https://data.delijn.be/stops/403730", "https://data.delijn.be/stops/403875"], ["https://data.delijn.be/stops/301830", "https://data.delijn.be/stops/301842"], ["https://data.delijn.be/stops/502323", "https://data.delijn.be/stops/507317"], ["https://data.delijn.be/stops/501467", "https://data.delijn.be/stops/505032"], ["https://data.delijn.be/stops/305743", "https://data.delijn.be/stops/306333"], ["https://data.delijn.be/stops/107290", "https://data.delijn.be/stops/108905"], ["https://data.delijn.be/stops/208483", "https://data.delijn.be/stops/209484"], ["https://data.delijn.be/stops/108838", "https://data.delijn.be/stops/108851"], ["https://data.delijn.be/stops/407258", "https://data.delijn.be/stops/409771"], ["https://data.delijn.be/stops/102766", "https://data.delijn.be/stops/107401"], ["https://data.delijn.be/stops/204979", "https://data.delijn.be/stops/208424"], ["https://data.delijn.be/stops/103623", "https://data.delijn.be/stops/107736"], ["https://data.delijn.be/stops/102500", "https://data.delijn.be/stops/104280"], ["https://data.delijn.be/stops/102247", "https://data.delijn.be/stops/102863"], ["https://data.delijn.be/stops/503746", "https://data.delijn.be/stops/508744"], ["https://data.delijn.be/stops/404883", "https://data.delijn.be/stops/404958"], ["https://data.delijn.be/stops/408002", "https://data.delijn.be/stops/408003"], ["https://data.delijn.be/stops/301623", "https://data.delijn.be/stops/301624"], ["https://data.delijn.be/stops/102741", "https://data.delijn.be/stops/103039"], ["https://data.delijn.be/stops/404738", "https://data.delijn.be/stops/404945"], ["https://data.delijn.be/stops/202611", "https://data.delijn.be/stops/203613"], ["https://data.delijn.be/stops/101515", "https://data.delijn.be/stops/102056"], ["https://data.delijn.be/stops/201638", "https://data.delijn.be/stops/201896"], ["https://data.delijn.be/stops/200009", "https://data.delijn.be/stops/201009"], ["https://data.delijn.be/stops/204788", "https://data.delijn.be/stops/205791"], ["https://data.delijn.be/stops/101685", "https://data.delijn.be/stops/107395"], ["https://data.delijn.be/stops/208032", "https://data.delijn.be/stops/209033"], ["https://data.delijn.be/stops/103995", "https://data.delijn.be/stops/104275"], ["https://data.delijn.be/stops/401900", "https://data.delijn.be/stops/403576"], ["https://data.delijn.be/stops/500028", "https://data.delijn.be/stops/503121"], ["https://data.delijn.be/stops/505036", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/103022", "https://data.delijn.be/stops/109677"], ["https://data.delijn.be/stops/102912", "https://data.delijn.be/stops/106711"], ["https://data.delijn.be/stops/503191", "https://data.delijn.be/stops/508191"], ["https://data.delijn.be/stops/302612", "https://data.delijn.be/stops/302655"], ["https://data.delijn.be/stops/208364", "https://data.delijn.be/stops/208776"], ["https://data.delijn.be/stops/302719", "https://data.delijn.be/stops/308597"], ["https://data.delijn.be/stops/502354", "https://data.delijn.be/stops/505016"], ["https://data.delijn.be/stops/400548", "https://data.delijn.be/stops/404061"], ["https://data.delijn.be/stops/300305", "https://data.delijn.be/stops/301281"], ["https://data.delijn.be/stops/101892", "https://data.delijn.be/stops/103964"], ["https://data.delijn.be/stops/404169", "https://data.delijn.be/stops/410185"], ["https://data.delijn.be/stops/408530", "https://data.delijn.be/stops/408755"], ["https://data.delijn.be/stops/405065", "https://data.delijn.be/stops/406548"], ["https://data.delijn.be/stops/202093", "https://data.delijn.be/stops/202094"], ["https://data.delijn.be/stops/503108", "https://data.delijn.be/stops/509631"], ["https://data.delijn.be/stops/105565", "https://data.delijn.be/stops/105570"], ["https://data.delijn.be/stops/503463", "https://data.delijn.be/stops/508463"], ["https://data.delijn.be/stops/403275", "https://data.delijn.be/stops/403497"], ["https://data.delijn.be/stops/202381", "https://data.delijn.be/stops/202382"], ["https://data.delijn.be/stops/106315", "https://data.delijn.be/stops/109139"], ["https://data.delijn.be/stops/105963", "https://data.delijn.be/stops/105964"], ["https://data.delijn.be/stops/206118", "https://data.delijn.be/stops/207118"], ["https://data.delijn.be/stops/502237", "https://data.delijn.be/stops/505754"], ["https://data.delijn.be/stops/305769", "https://data.delijn.be/stops/305771"], ["https://data.delijn.be/stops/403336", "https://data.delijn.be/stops/403337"], ["https://data.delijn.be/stops/206114", "https://data.delijn.be/stops/206115"], ["https://data.delijn.be/stops/508256", "https://data.delijn.be/stops/508446"], ["https://data.delijn.be/stops/102178", "https://data.delijn.be/stops/103895"], ["https://data.delijn.be/stops/505847", "https://data.delijn.be/stops/508973"], ["https://data.delijn.be/stops/407088", "https://data.delijn.be/stops/409498"], ["https://data.delijn.be/stops/402459", "https://data.delijn.be/stops/402462"], ["https://data.delijn.be/stops/405079", "https://data.delijn.be/stops/405108"], ["https://data.delijn.be/stops/501190", "https://data.delijn.be/stops/506190"], ["https://data.delijn.be/stops/303732", "https://data.delijn.be/stops/303749"], ["https://data.delijn.be/stops/304265", "https://data.delijn.be/stops/304266"], ["https://data.delijn.be/stops/503413", "https://data.delijn.be/stops/505856"], ["https://data.delijn.be/stops/408271", "https://data.delijn.be/stops/408305"], ["https://data.delijn.be/stops/200914", "https://data.delijn.be/stops/202087"], ["https://data.delijn.be/stops/501023", "https://data.delijn.be/stops/501028"], ["https://data.delijn.be/stops/400657", "https://data.delijn.be/stops/401250"], ["https://data.delijn.be/stops/208336", "https://data.delijn.be/stops/208790"], ["https://data.delijn.be/stops/404104", "https://data.delijn.be/stops/408738"], ["https://data.delijn.be/stops/303595", "https://data.delijn.be/stops/308604"], ["https://data.delijn.be/stops/209240", "https://data.delijn.be/stops/209716"], ["https://data.delijn.be/stops/300131", "https://data.delijn.be/stops/306808"], ["https://data.delijn.be/stops/207724", "https://data.delijn.be/stops/207727"], ["https://data.delijn.be/stops/208115", "https://data.delijn.be/stops/208116"], ["https://data.delijn.be/stops/303656", "https://data.delijn.be/stops/307800"], ["https://data.delijn.be/stops/200384", "https://data.delijn.be/stops/204929"], ["https://data.delijn.be/stops/501389", "https://data.delijn.be/stops/505561"], ["https://data.delijn.be/stops/105513", "https://data.delijn.be/stops/105516"], ["https://data.delijn.be/stops/306809", "https://data.delijn.be/stops/306810"], ["https://data.delijn.be/stops/102217", "https://data.delijn.be/stops/105537"], ["https://data.delijn.be/stops/205566", "https://data.delijn.be/stops/303379"], ["https://data.delijn.be/stops/502256", "https://data.delijn.be/stops/502261"], ["https://data.delijn.be/stops/408928", "https://data.delijn.be/stops/408948"], ["https://data.delijn.be/stops/104108", "https://data.delijn.be/stops/205606"], ["https://data.delijn.be/stops/101063", "https://data.delijn.be/stops/106004"], ["https://data.delijn.be/stops/106199", "https://data.delijn.be/stops/106307"], ["https://data.delijn.be/stops/208379", "https://data.delijn.be/stops/209378"], ["https://data.delijn.be/stops/401502", "https://data.delijn.be/stops/401509"], ["https://data.delijn.be/stops/504725", "https://data.delijn.be/stops/509482"], ["https://data.delijn.be/stops/302915", "https://data.delijn.be/stops/302930"], ["https://data.delijn.be/stops/206956", "https://data.delijn.be/stops/207191"], ["https://data.delijn.be/stops/202381", "https://data.delijn.be/stops/203382"], ["https://data.delijn.be/stops/107932", "https://data.delijn.be/stops/204563"], ["https://data.delijn.be/stops/301724", "https://data.delijn.be/stops/301760"], ["https://data.delijn.be/stops/104097", "https://data.delijn.be/stops/107860"], ["https://data.delijn.be/stops/403892", "https://data.delijn.be/stops/405543"], ["https://data.delijn.be/stops/200811", "https://data.delijn.be/stops/200899"], ["https://data.delijn.be/stops/400064", "https://data.delijn.be/stops/409163"], ["https://data.delijn.be/stops/205350", "https://data.delijn.be/stops/205445"], ["https://data.delijn.be/stops/501334", "https://data.delijn.be/stops/506335"], ["https://data.delijn.be/stops/505816", "https://data.delijn.be/stops/508328"], ["https://data.delijn.be/stops/502249", "https://data.delijn.be/stops/509797"], ["https://data.delijn.be/stops/502188", "https://data.delijn.be/stops/505053"], ["https://data.delijn.be/stops/400473", "https://data.delijn.be/stops/400481"], ["https://data.delijn.be/stops/406939", "https://data.delijn.be/stops/407297"], ["https://data.delijn.be/stops/106752", "https://data.delijn.be/stops/109700"], ["https://data.delijn.be/stops/507474", "https://data.delijn.be/stops/507691"], ["https://data.delijn.be/stops/406522", "https://data.delijn.be/stops/406646"], ["https://data.delijn.be/stops/503262", "https://data.delijn.be/stops/508239"], ["https://data.delijn.be/stops/203821", "https://data.delijn.be/stops/203913"], ["https://data.delijn.be/stops/300639", "https://data.delijn.be/stops/300645"], ["https://data.delijn.be/stops/506261", "https://data.delijn.be/stops/506738"], ["https://data.delijn.be/stops/202363", "https://data.delijn.be/stops/202364"], ["https://data.delijn.be/stops/402567", "https://data.delijn.be/stops/407804"], ["https://data.delijn.be/stops/201950", "https://data.delijn.be/stops/202938"], ["https://data.delijn.be/stops/200462", "https://data.delijn.be/stops/201462"], ["https://data.delijn.be/stops/402935", "https://data.delijn.be/stops/403961"], ["https://data.delijn.be/stops/206767", "https://data.delijn.be/stops/206788"], ["https://data.delijn.be/stops/104626", "https://data.delijn.be/stops/105745"], ["https://data.delijn.be/stops/102653", "https://data.delijn.be/stops/107786"], ["https://data.delijn.be/stops/405862", "https://data.delijn.be/stops/408154"], ["https://data.delijn.be/stops/408417", "https://data.delijn.be/stops/409345"], ["https://data.delijn.be/stops/200647", "https://data.delijn.be/stops/202860"], ["https://data.delijn.be/stops/401135", "https://data.delijn.be/stops/401151"], ["https://data.delijn.be/stops/304019", "https://data.delijn.be/stops/304075"], ["https://data.delijn.be/stops/303934", "https://data.delijn.be/stops/304594"], ["https://data.delijn.be/stops/401210", "https://data.delijn.be/stops/401257"], ["https://data.delijn.be/stops/301400", "https://data.delijn.be/stops/303230"], ["https://data.delijn.be/stops/204587", "https://data.delijn.be/stops/204588"], ["https://data.delijn.be/stops/104974", "https://data.delijn.be/stops/109724"], ["https://data.delijn.be/stops/403090", "https://data.delijn.be/stops/409574"], ["https://data.delijn.be/stops/407601", "https://data.delijn.be/stops/407745"], ["https://data.delijn.be/stops/401300", "https://data.delijn.be/stops/401316"], ["https://data.delijn.be/stops/102394", "https://data.delijn.be/stops/108184"], ["https://data.delijn.be/stops/401989", "https://data.delijn.be/stops/404977"], ["https://data.delijn.be/stops/109191", "https://data.delijn.be/stops/109193"], ["https://data.delijn.be/stops/103096", "https://data.delijn.be/stops/109272"], ["https://data.delijn.be/stops/408242", "https://data.delijn.be/stops/308219"], ["https://data.delijn.be/stops/103250", "https://data.delijn.be/stops/103255"], ["https://data.delijn.be/stops/302147", "https://data.delijn.be/stops/303634"], ["https://data.delijn.be/stops/101343", "https://data.delijn.be/stops/108100"], ["https://data.delijn.be/stops/408084", "https://data.delijn.be/stops/408085"], ["https://data.delijn.be/stops/208168", "https://data.delijn.be/stops/208169"], ["https://data.delijn.be/stops/502347", "https://data.delijn.be/stops/505310"], ["https://data.delijn.be/stops/502539", "https://data.delijn.be/stops/502748"], ["https://data.delijn.be/stops/408110", "https://data.delijn.be/stops/408111"], ["https://data.delijn.be/stops/206451", "https://data.delijn.be/stops/206452"], ["https://data.delijn.be/stops/200166", "https://data.delijn.be/stops/202152"], ["https://data.delijn.be/stops/206865", "https://data.delijn.be/stops/209620"], ["https://data.delijn.be/stops/402701", "https://data.delijn.be/stops/405997"], ["https://data.delijn.be/stops/304310", "https://data.delijn.be/stops/304329"], ["https://data.delijn.be/stops/204072", "https://data.delijn.be/stops/204185"], ["https://data.delijn.be/stops/404772", "https://data.delijn.be/stops/408948"], ["https://data.delijn.be/stops/206492", "https://data.delijn.be/stops/207492"], ["https://data.delijn.be/stops/301029", "https://data.delijn.be/stops/301114"], ["https://data.delijn.be/stops/401401", "https://data.delijn.be/stops/300925"], ["https://data.delijn.be/stops/206542", "https://data.delijn.be/stops/206543"], ["https://data.delijn.be/stops/304623", "https://data.delijn.be/stops/304716"], ["https://data.delijn.be/stops/406976", "https://data.delijn.be/stops/409483"], ["https://data.delijn.be/stops/302622", "https://data.delijn.be/stops/302624"], ["https://data.delijn.be/stops/502797", "https://data.delijn.be/stops/507332"], ["https://data.delijn.be/stops/103466", "https://data.delijn.be/stops/106685"], ["https://data.delijn.be/stops/307471", "https://data.delijn.be/stops/307780"], ["https://data.delijn.be/stops/303412", "https://data.delijn.be/stops/303418"], ["https://data.delijn.be/stops/504776", "https://data.delijn.be/stops/509037"], ["https://data.delijn.be/stops/505504", "https://data.delijn.be/stops/505605"], ["https://data.delijn.be/stops/403044", "https://data.delijn.be/stops/403067"], ["https://data.delijn.be/stops/206829", "https://data.delijn.be/stops/207929"], ["https://data.delijn.be/stops/408021", "https://data.delijn.be/stops/408433"], ["https://data.delijn.be/stops/305690", "https://data.delijn.be/stops/305693"], ["https://data.delijn.be/stops/206625", "https://data.delijn.be/stops/206764"], ["https://data.delijn.be/stops/307111", "https://data.delijn.be/stops/308814"], ["https://data.delijn.be/stops/504054", "https://data.delijn.be/stops/509054"], ["https://data.delijn.be/stops/208392", "https://data.delijn.be/stops/209392"], ["https://data.delijn.be/stops/206599", "https://data.delijn.be/stops/207599"], ["https://data.delijn.be/stops/300560", "https://data.delijn.be/stops/307859"], ["https://data.delijn.be/stops/201911", "https://data.delijn.be/stops/203528"], ["https://data.delijn.be/stops/305053", "https://data.delijn.be/stops/307278"], ["https://data.delijn.be/stops/208423", "https://data.delijn.be/stops/209459"], ["https://data.delijn.be/stops/408258", "https://data.delijn.be/stops/408344"], ["https://data.delijn.be/stops/206323", "https://data.delijn.be/stops/206861"], ["https://data.delijn.be/stops/206487", "https://data.delijn.be/stops/206647"], ["https://data.delijn.be/stops/102894", "https://data.delijn.be/stops/103106"], ["https://data.delijn.be/stops/308156", "https://data.delijn.be/stops/308157"], ["https://data.delijn.be/stops/403491", "https://data.delijn.be/stops/403492"], ["https://data.delijn.be/stops/407731", "https://data.delijn.be/stops/407735"], ["https://data.delijn.be/stops/201061", "https://data.delijn.be/stops/211059"], ["https://data.delijn.be/stops/106042", "https://data.delijn.be/stops/106059"], ["https://data.delijn.be/stops/207110", "https://data.delijn.be/stops/207112"], ["https://data.delijn.be/stops/407580", "https://data.delijn.be/stops/409314"], ["https://data.delijn.be/stops/200264", "https://data.delijn.be/stops/201433"], ["https://data.delijn.be/stops/502803", "https://data.delijn.be/stops/507487"], ["https://data.delijn.be/stops/200698", "https://data.delijn.be/stops/210108"], ["https://data.delijn.be/stops/407254", "https://data.delijn.be/stops/407314"], ["https://data.delijn.be/stops/405215", "https://data.delijn.be/stops/405293"], ["https://data.delijn.be/stops/307781", "https://data.delijn.be/stops/308859"], ["https://data.delijn.be/stops/401388", "https://data.delijn.be/stops/401460"], ["https://data.delijn.be/stops/400102", "https://data.delijn.be/stops/404884"], ["https://data.delijn.be/stops/503351", "https://data.delijn.be/stops/508419"], ["https://data.delijn.be/stops/300858", "https://data.delijn.be/stops/305516"], ["https://data.delijn.be/stops/304408", "https://data.delijn.be/stops/307416"], ["https://data.delijn.be/stops/204167", "https://data.delijn.be/stops/204581"], ["https://data.delijn.be/stops/204629", "https://data.delijn.be/stops/205629"], ["https://data.delijn.be/stops/204078", "https://data.delijn.be/stops/204205"], ["https://data.delijn.be/stops/401724", "https://data.delijn.be/stops/405453"], ["https://data.delijn.be/stops/405490", "https://data.delijn.be/stops/409270"], ["https://data.delijn.be/stops/107039", "https://data.delijn.be/stops/108246"], ["https://data.delijn.be/stops/101145", "https://data.delijn.be/stops/105490"], ["https://data.delijn.be/stops/102292", "https://data.delijn.be/stops/109363"], ["https://data.delijn.be/stops/301506", "https://data.delijn.be/stops/301524"], ["https://data.delijn.be/stops/200967", "https://data.delijn.be/stops/208663"], ["https://data.delijn.be/stops/305181", "https://data.delijn.be/stops/305207"], ["https://data.delijn.be/stops/407239", "https://data.delijn.be/stops/407469"], ["https://data.delijn.be/stops/303116", "https://data.delijn.be/stops/306826"], ["https://data.delijn.be/stops/206246", "https://data.delijn.be/stops/206247"], ["https://data.delijn.be/stops/200637", "https://data.delijn.be/stops/201637"], ["https://data.delijn.be/stops/106892", "https://data.delijn.be/stops/107220"], ["https://data.delijn.be/stops/208353", "https://data.delijn.be/stops/209353"], ["https://data.delijn.be/stops/403311", "https://data.delijn.be/stops/403344"], ["https://data.delijn.be/stops/106223", "https://data.delijn.be/stops/106336"], ["https://data.delijn.be/stops/303628", "https://data.delijn.be/stops/303629"], ["https://data.delijn.be/stops/204648", "https://data.delijn.be/stops/205647"], ["https://data.delijn.be/stops/201908", "https://data.delijn.be/stops/201909"], ["https://data.delijn.be/stops/101311", "https://data.delijn.be/stops/101312"], ["https://data.delijn.be/stops/108767", "https://data.delijn.be/stops/109119"], ["https://data.delijn.be/stops/108817", "https://data.delijn.be/stops/108818"], ["https://data.delijn.be/stops/208091", "https://data.delijn.be/stops/209091"], ["https://data.delijn.be/stops/101462", "https://data.delijn.be/stops/101464"], ["https://data.delijn.be/stops/206442", "https://data.delijn.be/stops/207442"], ["https://data.delijn.be/stops/101500", "https://data.delijn.be/stops/104891"], ["https://data.delijn.be/stops/402433", "https://data.delijn.be/stops/404498"], ["https://data.delijn.be/stops/108626", "https://data.delijn.be/stops/301837"], ["https://data.delijn.be/stops/103629", "https://data.delijn.be/stops/107737"], ["https://data.delijn.be/stops/403486", "https://data.delijn.be/stops/409296"], ["https://data.delijn.be/stops/103281", "https://data.delijn.be/stops/105470"], ["https://data.delijn.be/stops/304296", "https://data.delijn.be/stops/304506"], ["https://data.delijn.be/stops/300095", "https://data.delijn.be/stops/300117"], ["https://data.delijn.be/stops/408508", "https://data.delijn.be/stops/408617"], ["https://data.delijn.be/stops/503527", "https://data.delijn.be/stops/503532"], ["https://data.delijn.be/stops/302123", "https://data.delijn.be/stops/302125"], ["https://data.delijn.be/stops/206973", "https://data.delijn.be/stops/207973"], ["https://data.delijn.be/stops/206812", "https://data.delijn.be/stops/207877"], ["https://data.delijn.be/stops/404928", "https://data.delijn.be/stops/409628"], ["https://data.delijn.be/stops/101986", "https://data.delijn.be/stops/107062"], ["https://data.delijn.be/stops/206801", "https://data.delijn.be/stops/209488"], ["https://data.delijn.be/stops/509335", "https://data.delijn.be/stops/509633"], ["https://data.delijn.be/stops/108419", "https://data.delijn.be/stops/109568"], ["https://data.delijn.be/stops/301845", "https://data.delijn.be/stops/306985"], ["https://data.delijn.be/stops/105867", "https://data.delijn.be/stops/105872"], ["https://data.delijn.be/stops/502142", "https://data.delijn.be/stops/507680"], ["https://data.delijn.be/stops/107701", "https://data.delijn.be/stops/107711"], ["https://data.delijn.be/stops/302896", "https://data.delijn.be/stops/302897"], ["https://data.delijn.be/stops/103685", "https://data.delijn.be/stops/109005"], ["https://data.delijn.be/stops/307632", "https://data.delijn.be/stops/308272"], ["https://data.delijn.be/stops/303271", "https://data.delijn.be/stops/305729"], ["https://data.delijn.be/stops/201903", "https://data.delijn.be/stops/203514"], ["https://data.delijn.be/stops/204450", "https://data.delijn.be/stops/205337"], ["https://data.delijn.be/stops/408578", "https://data.delijn.be/stops/408579"], ["https://data.delijn.be/stops/102478", "https://data.delijn.be/stops/400177"], ["https://data.delijn.be/stops/102684", "https://data.delijn.be/stops/107336"], ["https://data.delijn.be/stops/201165", "https://data.delijn.be/stops/202152"], ["https://data.delijn.be/stops/108840", "https://data.delijn.be/stops/108841"], ["https://data.delijn.be/stops/300747", "https://data.delijn.be/stops/300748"], ["https://data.delijn.be/stops/208773", "https://data.delijn.be/stops/209773"], ["https://data.delijn.be/stops/502279", "https://data.delijn.be/stops/507278"], ["https://data.delijn.be/stops/503483", "https://data.delijn.be/stops/503491"], ["https://data.delijn.be/stops/301949", "https://data.delijn.be/stops/303287"], ["https://data.delijn.be/stops/105231", "https://data.delijn.be/stops/105234"], ["https://data.delijn.be/stops/405124", "https://data.delijn.be/stops/405375"], ["https://data.delijn.be/stops/101869", "https://data.delijn.be/stops/101871"], ["https://data.delijn.be/stops/301542", "https://data.delijn.be/stops/301544"], ["https://data.delijn.be/stops/407792", "https://data.delijn.be/stops/307448"], ["https://data.delijn.be/stops/303998", "https://data.delijn.be/stops/304045"], ["https://data.delijn.be/stops/305698", "https://data.delijn.be/stops/305743"], ["https://data.delijn.be/stops/408379", "https://data.delijn.be/stops/408380"], ["https://data.delijn.be/stops/402136", "https://data.delijn.be/stops/402142"], ["https://data.delijn.be/stops/207034", "https://data.delijn.be/stops/207904"], ["https://data.delijn.be/stops/502083", "https://data.delijn.be/stops/507909"], ["https://data.delijn.be/stops/302707", "https://data.delijn.be/stops/302720"], ["https://data.delijn.be/stops/402938", "https://data.delijn.be/stops/404039"], ["https://data.delijn.be/stops/401618", "https://data.delijn.be/stops/308211"], ["https://data.delijn.be/stops/107123", "https://data.delijn.be/stops/109649"], ["https://data.delijn.be/stops/105832", "https://data.delijn.be/stops/107422"], ["https://data.delijn.be/stops/407902", "https://data.delijn.be/stops/407903"], ["https://data.delijn.be/stops/105276", "https://data.delijn.be/stops/109605"], ["https://data.delijn.be/stops/109184", "https://data.delijn.be/stops/109877"], ["https://data.delijn.be/stops/403600", "https://data.delijn.be/stops/410037"], ["https://data.delijn.be/stops/106716", "https://data.delijn.be/stops/106719"], ["https://data.delijn.be/stops/202906", "https://data.delijn.be/stops/202907"], ["https://data.delijn.be/stops/304723", "https://data.delijn.be/stops/304724"], ["https://data.delijn.be/stops/304423", "https://data.delijn.be/stops/307394"], ["https://data.delijn.be/stops/103610", "https://data.delijn.be/stops/104275"], ["https://data.delijn.be/stops/501511", "https://data.delijn.be/stops/506511"], ["https://data.delijn.be/stops/106786", "https://data.delijn.be/stops/106787"], ["https://data.delijn.be/stops/408948", "https://data.delijn.be/stops/409036"], ["https://data.delijn.be/stops/305102", "https://data.delijn.be/stops/305121"], ["https://data.delijn.be/stops/407872", "https://data.delijn.be/stops/408166"], ["https://data.delijn.be/stops/401649", "https://data.delijn.be/stops/401710"], ["https://data.delijn.be/stops/410182", "https://data.delijn.be/stops/410208"], ["https://data.delijn.be/stops/404794", "https://data.delijn.be/stops/404795"], ["https://data.delijn.be/stops/302070", "https://data.delijn.be/stops/305636"], ["https://data.delijn.be/stops/200845", "https://data.delijn.be/stops/211005"], ["https://data.delijn.be/stops/208007", "https://data.delijn.be/stops/209007"], ["https://data.delijn.be/stops/101571", "https://data.delijn.be/stops/105464"], ["https://data.delijn.be/stops/208343", "https://data.delijn.be/stops/208344"], ["https://data.delijn.be/stops/302022", "https://data.delijn.be/stops/306341"], ["https://data.delijn.be/stops/200762", "https://data.delijn.be/stops/200774"], ["https://data.delijn.be/stops/206698", "https://data.delijn.be/stops/207365"], ["https://data.delijn.be/stops/203705", "https://data.delijn.be/stops/203706"], ["https://data.delijn.be/stops/307762", "https://data.delijn.be/stops/307763"], ["https://data.delijn.be/stops/204222", "https://data.delijn.be/stops/205222"], ["https://data.delijn.be/stops/209979", "https://data.delijn.be/stops/211076"], ["https://data.delijn.be/stops/406639", "https://data.delijn.be/stops/406641"], ["https://data.delijn.be/stops/400195", "https://data.delijn.be/stops/401083"], ["https://data.delijn.be/stops/300525", "https://data.delijn.be/stops/300526"], ["https://data.delijn.be/stops/408125", "https://data.delijn.be/stops/408414"], ["https://data.delijn.be/stops/206133", "https://data.delijn.be/stops/206135"], ["https://data.delijn.be/stops/403682", "https://data.delijn.be/stops/403684"], ["https://data.delijn.be/stops/502553", "https://data.delijn.be/stops/507550"], ["https://data.delijn.be/stops/508116", "https://data.delijn.be/stops/508653"], ["https://data.delijn.be/stops/105257", "https://data.delijn.be/stops/105258"], ["https://data.delijn.be/stops/501423", "https://data.delijn.be/stops/505530"], ["https://data.delijn.be/stops/101522", "https://data.delijn.be/stops/109643"], ["https://data.delijn.be/stops/103266", "https://data.delijn.be/stops/104627"], ["https://data.delijn.be/stops/105427", "https://data.delijn.be/stops/105436"], ["https://data.delijn.be/stops/102934", "https://data.delijn.be/stops/106042"], ["https://data.delijn.be/stops/302220", "https://data.delijn.be/stops/302221"], ["https://data.delijn.be/stops/107028", "https://data.delijn.be/stops/107029"], ["https://data.delijn.be/stops/101445", "https://data.delijn.be/stops/104540"], ["https://data.delijn.be/stops/206056", "https://data.delijn.be/stops/216003"], ["https://data.delijn.be/stops/308154", "https://data.delijn.be/stops/308172"], ["https://data.delijn.be/stops/402197", "https://data.delijn.be/stops/402372"], ["https://data.delijn.be/stops/405414", "https://data.delijn.be/stops/306774"], ["https://data.delijn.be/stops/201725", "https://data.delijn.be/stops/203981"], ["https://data.delijn.be/stops/308549", "https://data.delijn.be/stops/308550"], ["https://data.delijn.be/stops/203545", "https://data.delijn.be/stops/203546"], ["https://data.delijn.be/stops/105369", "https://data.delijn.be/stops/107504"], ["https://data.delijn.be/stops/502595", "https://data.delijn.be/stops/502631"], ["https://data.delijn.be/stops/407835", "https://data.delijn.be/stops/407909"], ["https://data.delijn.be/stops/207667", "https://data.delijn.be/stops/208660"], ["https://data.delijn.be/stops/503836", "https://data.delijn.be/stops/505945"], ["https://data.delijn.be/stops/403055", "https://data.delijn.be/stops/407650"], ["https://data.delijn.be/stops/300049", "https://data.delijn.be/stops/300050"], ["https://data.delijn.be/stops/502388", "https://data.delijn.be/stops/507578"], ["https://data.delijn.be/stops/204539", "https://data.delijn.be/stops/205514"], ["https://data.delijn.be/stops/400892", "https://data.delijn.be/stops/402769"], ["https://data.delijn.be/stops/504087", "https://data.delijn.be/stops/508474"], ["https://data.delijn.be/stops/305112", "https://data.delijn.be/stops/307873"], ["https://data.delijn.be/stops/403065", "https://data.delijn.be/stops/403093"], ["https://data.delijn.be/stops/503473", "https://data.delijn.be/stops/507814"], ["https://data.delijn.be/stops/204319", "https://data.delijn.be/stops/204696"], ["https://data.delijn.be/stops/304152", "https://data.delijn.be/stops/304160"], ["https://data.delijn.be/stops/404601", "https://data.delijn.be/stops/406901"], ["https://data.delijn.be/stops/403254", "https://data.delijn.be/stops/403861"], ["https://data.delijn.be/stops/501166", "https://data.delijn.be/stops/506166"], ["https://data.delijn.be/stops/306596", "https://data.delijn.be/stops/306597"], ["https://data.delijn.be/stops/509512", "https://data.delijn.be/stops/509962"], ["https://data.delijn.be/stops/410041", "https://data.delijn.be/stops/410042"], ["https://data.delijn.be/stops/107499", "https://data.delijn.be/stops/107523"], ["https://data.delijn.be/stops/409193", "https://data.delijn.be/stops/410156"], ["https://data.delijn.be/stops/505297", "https://data.delijn.be/stops/508631"], ["https://data.delijn.be/stops/501545", "https://data.delijn.be/stops/505397"], ["https://data.delijn.be/stops/108627", "https://data.delijn.be/stops/301843"], ["https://data.delijn.be/stops/504979", "https://data.delijn.be/stops/509091"], ["https://data.delijn.be/stops/208188", "https://data.delijn.be/stops/208189"], ["https://data.delijn.be/stops/503201", "https://data.delijn.be/stops/508201"], ["https://data.delijn.be/stops/504535", "https://data.delijn.be/stops/508742"], ["https://data.delijn.be/stops/402096", "https://data.delijn.be/stops/402236"], ["https://data.delijn.be/stops/401000", "https://data.delijn.be/stops/401002"], ["https://data.delijn.be/stops/200138", "https://data.delijn.be/stops/201783"], ["https://data.delijn.be/stops/103999", "https://data.delijn.be/stops/106886"], ["https://data.delijn.be/stops/401951", "https://data.delijn.be/stops/407549"], ["https://data.delijn.be/stops/302955", "https://data.delijn.be/stops/302959"], ["https://data.delijn.be/stops/402979", "https://data.delijn.be/stops/404699"], ["https://data.delijn.be/stops/401809", "https://data.delijn.be/stops/406349"], ["https://data.delijn.be/stops/504383", "https://data.delijn.be/stops/509382"], ["https://data.delijn.be/stops/403294", "https://data.delijn.be/stops/403295"], ["https://data.delijn.be/stops/104093", "https://data.delijn.be/stops/109740"], ["https://data.delijn.be/stops/307425", "https://data.delijn.be/stops/307426"], ["https://data.delijn.be/stops/405607", "https://data.delijn.be/stops/405708"], ["https://data.delijn.be/stops/300089", "https://data.delijn.be/stops/300116"], ["https://data.delijn.be/stops/303496", "https://data.delijn.be/stops/303499"], ["https://data.delijn.be/stops/400957", "https://data.delijn.be/stops/407401"], ["https://data.delijn.be/stops/503333", "https://data.delijn.be/stops/508749"], ["https://data.delijn.be/stops/303256", "https://data.delijn.be/stops/303265"], ["https://data.delijn.be/stops/409306", "https://data.delijn.be/stops/409330"], ["https://data.delijn.be/stops/504202", "https://data.delijn.be/stops/505301"], ["https://data.delijn.be/stops/201767", "https://data.delijn.be/stops/201768"], ["https://data.delijn.be/stops/305646", "https://data.delijn.be/stops/305748"], ["https://data.delijn.be/stops/207118", "https://data.delijn.be/stops/207119"], ["https://data.delijn.be/stops/303317", "https://data.delijn.be/stops/307117"], ["https://data.delijn.be/stops/207530", "https://data.delijn.be/stops/207822"], ["https://data.delijn.be/stops/404431", "https://data.delijn.be/stops/404515"], ["https://data.delijn.be/stops/504419", "https://data.delijn.be/stops/509428"], ["https://data.delijn.be/stops/503701", "https://data.delijn.be/stops/508701"], ["https://data.delijn.be/stops/406916", "https://data.delijn.be/stops/409465"], ["https://data.delijn.be/stops/108735", "https://data.delijn.be/stops/109135"], ["https://data.delijn.be/stops/502192", "https://data.delijn.be/stops/507192"], ["https://data.delijn.be/stops/201269", "https://data.delijn.be/stops/203928"], ["https://data.delijn.be/stops/109447", "https://data.delijn.be/stops/109450"], ["https://data.delijn.be/stops/403412", "https://data.delijn.be/stops/410398"], ["https://data.delijn.be/stops/400614", "https://data.delijn.be/stops/404294"], ["https://data.delijn.be/stops/107583", "https://data.delijn.be/stops/107719"], ["https://data.delijn.be/stops/303420", "https://data.delijn.be/stops/308067"], ["https://data.delijn.be/stops/504022", "https://data.delijn.be/stops/509008"], ["https://data.delijn.be/stops/402714", "https://data.delijn.be/stops/301277"], ["https://data.delijn.be/stops/207755", "https://data.delijn.be/stops/207771"], ["https://data.delijn.be/stops/206371", "https://data.delijn.be/stops/207370"], ["https://data.delijn.be/stops/501240", "https://data.delijn.be/stops/501246"], ["https://data.delijn.be/stops/200354", "https://data.delijn.be/stops/201018"], ["https://data.delijn.be/stops/200413", "https://data.delijn.be/stops/201414"], ["https://data.delijn.be/stops/307160", "https://data.delijn.be/stops/307893"], ["https://data.delijn.be/stops/301647", "https://data.delijn.be/stops/302110"], ["https://data.delijn.be/stops/102643", "https://data.delijn.be/stops/107866"], ["https://data.delijn.be/stops/102730", "https://data.delijn.be/stops/109795"], ["https://data.delijn.be/stops/103628", "https://data.delijn.be/stops/103629"], ["https://data.delijn.be/stops/200985", "https://data.delijn.be/stops/201985"], ["https://data.delijn.be/stops/400459", "https://data.delijn.be/stops/400497"], ["https://data.delijn.be/stops/208737", "https://data.delijn.be/stops/208738"], ["https://data.delijn.be/stops/504395", "https://data.delijn.be/stops/509397"], ["https://data.delijn.be/stops/403334", "https://data.delijn.be/stops/407075"], ["https://data.delijn.be/stops/306861", "https://data.delijn.be/stops/306862"], ["https://data.delijn.be/stops/208131", "https://data.delijn.be/stops/209851"], ["https://data.delijn.be/stops/407456", "https://data.delijn.be/stops/407468"], ["https://data.delijn.be/stops/203173", "https://data.delijn.be/stops/203495"], ["https://data.delijn.be/stops/109349", "https://data.delijn.be/stops/109351"], ["https://data.delijn.be/stops/504470", "https://data.delijn.be/stops/505837"], ["https://data.delijn.be/stops/501506", "https://data.delijn.be/stops/506504"], ["https://data.delijn.be/stops/204992", "https://data.delijn.be/stops/208336"], ["https://data.delijn.be/stops/503413", "https://data.delijn.be/stops/508402"], ["https://data.delijn.be/stops/409271", "https://data.delijn.be/stops/409298"], ["https://data.delijn.be/stops/105528", "https://data.delijn.be/stops/105531"], ["https://data.delijn.be/stops/306147", "https://data.delijn.be/stops/306149"], ["https://data.delijn.be/stops/207894", "https://data.delijn.be/stops/209912"], ["https://data.delijn.be/stops/501228", "https://data.delijn.be/stops/506228"], ["https://data.delijn.be/stops/305303", "https://data.delijn.be/stops/306091"], ["https://data.delijn.be/stops/206087", "https://data.delijn.be/stops/206987"], ["https://data.delijn.be/stops/402297", "https://data.delijn.be/stops/405551"], ["https://data.delijn.be/stops/503260", "https://data.delijn.be/stops/503965"], ["https://data.delijn.be/stops/301358", "https://data.delijn.be/stops/301968"], ["https://data.delijn.be/stops/201707", "https://data.delijn.be/stops/202444"], ["https://data.delijn.be/stops/300281", "https://data.delijn.be/stops/300945"], ["https://data.delijn.be/stops/406729", "https://data.delijn.be/stops/407098"], ["https://data.delijn.be/stops/102549", "https://data.delijn.be/stops/408155"], ["https://data.delijn.be/stops/407274", "https://data.delijn.be/stops/407275"], ["https://data.delijn.be/stops/502537", "https://data.delijn.be/stops/502541"], ["https://data.delijn.be/stops/302052", "https://data.delijn.be/stops/302053"], ["https://data.delijn.be/stops/103082", "https://data.delijn.be/stops/104677"], ["https://data.delijn.be/stops/208215", "https://data.delijn.be/stops/209211"], ["https://data.delijn.be/stops/205159", "https://data.delijn.be/stops/205165"], ["https://data.delijn.be/stops/501445", "https://data.delijn.be/stops/501557"], ["https://data.delijn.be/stops/207803", "https://data.delijn.be/stops/207863"], ["https://data.delijn.be/stops/505214", "https://data.delijn.be/stops/590007"], ["https://data.delijn.be/stops/210117", "https://data.delijn.be/stops/210118"], ["https://data.delijn.be/stops/502103", "https://data.delijn.be/stops/507141"], ["https://data.delijn.be/stops/104875", "https://data.delijn.be/stops/108145"], ["https://data.delijn.be/stops/506130", "https://data.delijn.be/stops/506140"], ["https://data.delijn.be/stops/308782", "https://data.delijn.be/stops/308783"], ["https://data.delijn.be/stops/507798", "https://data.delijn.be/stops/508814"], ["https://data.delijn.be/stops/504172", "https://data.delijn.be/stops/505645"], ["https://data.delijn.be/stops/200977", "https://data.delijn.be/stops/203905"], ["https://data.delijn.be/stops/302088", "https://data.delijn.be/stops/302089"], ["https://data.delijn.be/stops/104052", "https://data.delijn.be/stops/104053"], ["https://data.delijn.be/stops/206019", "https://data.delijn.be/stops/207077"], ["https://data.delijn.be/stops/407331", "https://data.delijn.be/stops/408472"], ["https://data.delijn.be/stops/102159", "https://data.delijn.be/stops/108380"], ["https://data.delijn.be/stops/207667", "https://data.delijn.be/stops/208060"], ["https://data.delijn.be/stops/302707", "https://data.delijn.be/stops/308594"], ["https://data.delijn.be/stops/408524", "https://data.delijn.be/stops/410249"], ["https://data.delijn.be/stops/304100", "https://data.delijn.be/stops/304101"], ["https://data.delijn.be/stops/204546", "https://data.delijn.be/stops/205545"], ["https://data.delijn.be/stops/301416", "https://data.delijn.be/stops/301417"], ["https://data.delijn.be/stops/302878", "https://data.delijn.be/stops/303032"], ["https://data.delijn.be/stops/204064", "https://data.delijn.be/stops/205770"], ["https://data.delijn.be/stops/106049", "https://data.delijn.be/stops/109875"], ["https://data.delijn.be/stops/304476", "https://data.delijn.be/stops/304508"], ["https://data.delijn.be/stops/502119", "https://data.delijn.be/stops/502142"], ["https://data.delijn.be/stops/407899", "https://data.delijn.be/stops/407987"], ["https://data.delijn.be/stops/204510", "https://data.delijn.be/stops/204535"], ["https://data.delijn.be/stops/205239", "https://data.delijn.be/stops/207897"], ["https://data.delijn.be/stops/210037", "https://data.delijn.be/stops/211035"], ["https://data.delijn.be/stops/101474", "https://data.delijn.be/stops/109247"], ["https://data.delijn.be/stops/502074", "https://data.delijn.be/stops/505155"], ["https://data.delijn.be/stops/207473", "https://data.delijn.be/stops/207474"], ["https://data.delijn.be/stops/504792", "https://data.delijn.be/stops/505202"], ["https://data.delijn.be/stops/101947", "https://data.delijn.be/stops/108752"], ["https://data.delijn.be/stops/207527", "https://data.delijn.be/stops/216006"], ["https://data.delijn.be/stops/102995", "https://data.delijn.be/stops/103000"], ["https://data.delijn.be/stops/508234", "https://data.delijn.be/stops/508246"], ["https://data.delijn.be/stops/504585", "https://data.delijn.be/stops/504589"], ["https://data.delijn.be/stops/304468", "https://data.delijn.be/stops/304469"], ["https://data.delijn.be/stops/200421", "https://data.delijn.be/stops/201420"], ["https://data.delijn.be/stops/504252", "https://data.delijn.be/stops/509252"], ["https://data.delijn.be/stops/306314", "https://data.delijn.be/stops/306315"], ["https://data.delijn.be/stops/200582", "https://data.delijn.be/stops/200583"], ["https://data.delijn.be/stops/201684", "https://data.delijn.be/stops/203317"], ["https://data.delijn.be/stops/503581", "https://data.delijn.be/stops/508558"], ["https://data.delijn.be/stops/200580", "https://data.delijn.be/stops/200581"], ["https://data.delijn.be/stops/400474", "https://data.delijn.be/stops/408697"], ["https://data.delijn.be/stops/108097", "https://data.delijn.be/stops/108098"], ["https://data.delijn.be/stops/103773", "https://data.delijn.be/stops/106435"], ["https://data.delijn.be/stops/108391", "https://data.delijn.be/stops/108392"], ["https://data.delijn.be/stops/106337", "https://data.delijn.be/stops/106338"], ["https://data.delijn.be/stops/307306", "https://data.delijn.be/stops/307307"], ["https://data.delijn.be/stops/102077", "https://data.delijn.be/stops/105993"], ["https://data.delijn.be/stops/301466", "https://data.delijn.be/stops/308070"], ["https://data.delijn.be/stops/505146", "https://data.delijn.be/stops/507822"], ["https://data.delijn.be/stops/301115", "https://data.delijn.be/stops/301131"], ["https://data.delijn.be/stops/407672", "https://data.delijn.be/stops/407673"], ["https://data.delijn.be/stops/106007", "https://data.delijn.be/stops/106009"], ["https://data.delijn.be/stops/108438", "https://data.delijn.be/stops/108468"], ["https://data.delijn.be/stops/208888", "https://data.delijn.be/stops/211853"], ["https://data.delijn.be/stops/307961", "https://data.delijn.be/stops/308073"], ["https://data.delijn.be/stops/401074", "https://data.delijn.be/stops/401163"], ["https://data.delijn.be/stops/408943", "https://data.delijn.be/stops/409242"], ["https://data.delijn.be/stops/102980", "https://data.delijn.be/stops/104250"], ["https://data.delijn.be/stops/202314", "https://data.delijn.be/stops/203313"], ["https://data.delijn.be/stops/106134", "https://data.delijn.be/stops/109560"], ["https://data.delijn.be/stops/306900", "https://data.delijn.be/stops/307002"], ["https://data.delijn.be/stops/407010", "https://data.delijn.be/stops/407068"], ["https://data.delijn.be/stops/302344", "https://data.delijn.be/stops/306180"], ["https://data.delijn.be/stops/405530", "https://data.delijn.be/stops/407871"], ["https://data.delijn.be/stops/406110", "https://data.delijn.be/stops/406131"], ["https://data.delijn.be/stops/103467", "https://data.delijn.be/stops/106688"], ["https://data.delijn.be/stops/302287", "https://data.delijn.be/stops/306791"], ["https://data.delijn.be/stops/304382", "https://data.delijn.be/stops/304392"], ["https://data.delijn.be/stops/207587", "https://data.delijn.be/stops/216019"], ["https://data.delijn.be/stops/300373", "https://data.delijn.be/stops/300405"], ["https://data.delijn.be/stops/201008", "https://data.delijn.be/stops/201009"], ["https://data.delijn.be/stops/503114", "https://data.delijn.be/stops/504865"], ["https://data.delijn.be/stops/204088", "https://data.delijn.be/stops/205087"], ["https://data.delijn.be/stops/403619", "https://data.delijn.be/stops/403628"], ["https://data.delijn.be/stops/305528", "https://data.delijn.be/stops/305530"], ["https://data.delijn.be/stops/101422", "https://data.delijn.be/stops/106961"], ["https://data.delijn.be/stops/304399", "https://data.delijn.be/stops/307401"], ["https://data.delijn.be/stops/407237", "https://data.delijn.be/stops/407354"], ["https://data.delijn.be/stops/504525", "https://data.delijn.be/stops/504528"], ["https://data.delijn.be/stops/300777", "https://data.delijn.be/stops/301478"], ["https://data.delijn.be/stops/207765", "https://data.delijn.be/stops/209838"], ["https://data.delijn.be/stops/401650", "https://data.delijn.be/stops/405335"], ["https://data.delijn.be/stops/202981", "https://data.delijn.be/stops/203982"], ["https://data.delijn.be/stops/301513", "https://data.delijn.be/stops/301514"], ["https://data.delijn.be/stops/305961", "https://data.delijn.be/stops/306744"], ["https://data.delijn.be/stops/503786", "https://data.delijn.be/stops/505272"], ["https://data.delijn.be/stops/402370", "https://data.delijn.be/stops/402398"], ["https://data.delijn.be/stops/206744", "https://data.delijn.be/stops/207711"], ["https://data.delijn.be/stops/204070", "https://data.delijn.be/stops/204223"], ["https://data.delijn.be/stops/505291", "https://data.delijn.be/stops/509360"], ["https://data.delijn.be/stops/402812", "https://data.delijn.be/stops/407316"], ["https://data.delijn.be/stops/403140", "https://data.delijn.be/stops/403143"], ["https://data.delijn.be/stops/203966", "https://data.delijn.be/stops/205173"], ["https://data.delijn.be/stops/507350", "https://data.delijn.be/stops/507351"], ["https://data.delijn.be/stops/501038", "https://data.delijn.be/stops/506038"], ["https://data.delijn.be/stops/302713", "https://data.delijn.be/stops/302731"], ["https://data.delijn.be/stops/101482", "https://data.delijn.be/stops/101969"], ["https://data.delijn.be/stops/208484", "https://data.delijn.be/stops/209485"], ["https://data.delijn.be/stops/208207", "https://data.delijn.be/stops/209121"], ["https://data.delijn.be/stops/402068", "https://data.delijn.be/stops/402208"], ["https://data.delijn.be/stops/407866", "https://data.delijn.be/stops/408188"], ["https://data.delijn.be/stops/102842", "https://data.delijn.be/stops/106564"], ["https://data.delijn.be/stops/502608", "https://data.delijn.be/stops/507608"], ["https://data.delijn.be/stops/304684", "https://data.delijn.be/stops/304685"], ["https://data.delijn.be/stops/209718", "https://data.delijn.be/stops/209719"], ["https://data.delijn.be/stops/200062", "https://data.delijn.be/stops/201062"], ["https://data.delijn.be/stops/301596", "https://data.delijn.be/stops/301620"], ["https://data.delijn.be/stops/203082", "https://data.delijn.be/stops/211039"], ["https://data.delijn.be/stops/502584", "https://data.delijn.be/stops/507821"], ["https://data.delijn.be/stops/209715", "https://data.delijn.be/stops/211004"], ["https://data.delijn.be/stops/501133", "https://data.delijn.be/stops/506133"], ["https://data.delijn.be/stops/504501", "https://data.delijn.be/stops/509501"], ["https://data.delijn.be/stops/204074", "https://data.delijn.be/stops/205236"], ["https://data.delijn.be/stops/403212", "https://data.delijn.be/stops/403559"], ["https://data.delijn.be/stops/201783", "https://data.delijn.be/stops/209987"], ["https://data.delijn.be/stops/101378", "https://data.delijn.be/stops/106940"], ["https://data.delijn.be/stops/200248", "https://data.delijn.be/stops/201601"], ["https://data.delijn.be/stops/103592", "https://data.delijn.be/stops/109127"], ["https://data.delijn.be/stops/200660", "https://data.delijn.be/stops/211123"], ["https://data.delijn.be/stops/204709", "https://data.delijn.be/stops/205709"], ["https://data.delijn.be/stops/108334", "https://data.delijn.be/stops/109333"], ["https://data.delijn.be/stops/104941", "https://data.delijn.be/stops/400430"], ["https://data.delijn.be/stops/401458", "https://data.delijn.be/stops/401578"], ["https://data.delijn.be/stops/505044", "https://data.delijn.be/stops/509840"], ["https://data.delijn.be/stops/504458", "https://data.delijn.be/stops/504679"], ["https://data.delijn.be/stops/106923", "https://data.delijn.be/stops/106924"], ["https://data.delijn.be/stops/300691", "https://data.delijn.be/stops/302530"], ["https://data.delijn.be/stops/400642", "https://data.delijn.be/stops/400909"], ["https://data.delijn.be/stops/303693", "https://data.delijn.be/stops/303699"], ["https://data.delijn.be/stops/501177", "https://data.delijn.be/stops/501182"], ["https://data.delijn.be/stops/301949", "https://data.delijn.be/stops/308938"], ["https://data.delijn.be/stops/504141", "https://data.delijn.be/stops/509141"], ["https://data.delijn.be/stops/201907", "https://data.delijn.be/stops/209867"], ["https://data.delijn.be/stops/301617", "https://data.delijn.be/stops/307028"], ["https://data.delijn.be/stops/404619", "https://data.delijn.be/stops/410125"], ["https://data.delijn.be/stops/304930", "https://data.delijn.be/stops/304962"], ["https://data.delijn.be/stops/403344", "https://data.delijn.be/stops/403480"], ["https://data.delijn.be/stops/207066", "https://data.delijn.be/stops/207067"], ["https://data.delijn.be/stops/200269", "https://data.delijn.be/stops/201065"], ["https://data.delijn.be/stops/409560", "https://data.delijn.be/stops/409604"], ["https://data.delijn.be/stops/204588", "https://data.delijn.be/stops/205169"], ["https://data.delijn.be/stops/104844", "https://data.delijn.be/stops/105748"], ["https://data.delijn.be/stops/503458", "https://data.delijn.be/stops/508453"], ["https://data.delijn.be/stops/208462", "https://data.delijn.be/stops/209461"], ["https://data.delijn.be/stops/102762", "https://data.delijn.be/stops/105586"], ["https://data.delijn.be/stops/402975", "https://data.delijn.be/stops/405985"], ["https://data.delijn.be/stops/206209", "https://data.delijn.be/stops/207209"], ["https://data.delijn.be/stops/206449", "https://data.delijn.be/stops/207161"], ["https://data.delijn.be/stops/307631", "https://data.delijn.be/stops/307906"], ["https://data.delijn.be/stops/304219", "https://data.delijn.be/stops/304290"], ["https://data.delijn.be/stops/403253", "https://data.delijn.be/stops/408959"], ["https://data.delijn.be/stops/505826", "https://data.delijn.be/stops/508315"], ["https://data.delijn.be/stops/104974", "https://data.delijn.be/stops/109520"], ["https://data.delijn.be/stops/206885", "https://data.delijn.be/stops/207354"], ["https://data.delijn.be/stops/303430", "https://data.delijn.be/stops/303432"], ["https://data.delijn.be/stops/300263", "https://data.delijn.be/stops/300264"], ["https://data.delijn.be/stops/301159", "https://data.delijn.be/stops/301403"], ["https://data.delijn.be/stops/208217", "https://data.delijn.be/stops/209787"], ["https://data.delijn.be/stops/404697", "https://data.delijn.be/stops/405515"], ["https://data.delijn.be/stops/101809", "https://data.delijn.be/stops/102123"], ["https://data.delijn.be/stops/201206", "https://data.delijn.be/stops/201656"], ["https://data.delijn.be/stops/502513", "https://data.delijn.be/stops/509726"], ["https://data.delijn.be/stops/104416", "https://data.delijn.be/stops/104417"], ["https://data.delijn.be/stops/402105", "https://data.delijn.be/stops/402423"], ["https://data.delijn.be/stops/305126", "https://data.delijn.be/stops/305127"], ["https://data.delijn.be/stops/103007", "https://data.delijn.be/stops/106557"], ["https://data.delijn.be/stops/200855", "https://data.delijn.be/stops/505646"], ["https://data.delijn.be/stops/302267", "https://data.delijn.be/stops/303213"], ["https://data.delijn.be/stops/409723", "https://data.delijn.be/stops/409725"], ["https://data.delijn.be/stops/408854", "https://data.delijn.be/stops/408857"], ["https://data.delijn.be/stops/106197", "https://data.delijn.be/stops/109275"], ["https://data.delijn.be/stops/109495", "https://data.delijn.be/stops/305836"], ["https://data.delijn.be/stops/205425", "https://data.delijn.be/stops/205436"], ["https://data.delijn.be/stops/202872", "https://data.delijn.be/stops/202873"], ["https://data.delijn.be/stops/505038", "https://data.delijn.be/stops/505221"], ["https://data.delijn.be/stops/106684", "https://data.delijn.be/stops/106685"], ["https://data.delijn.be/stops/504287", "https://data.delijn.be/stops/504625"], ["https://data.delijn.be/stops/207872", "https://data.delijn.be/stops/209639"], ["https://data.delijn.be/stops/104572", "https://data.delijn.be/stops/107469"], ["https://data.delijn.be/stops/403174", "https://data.delijn.be/stops/403292"], ["https://data.delijn.be/stops/104548", "https://data.delijn.be/stops/104553"], ["https://data.delijn.be/stops/202162", "https://data.delijn.be/stops/204092"], ["https://data.delijn.be/stops/206129", "https://data.delijn.be/stops/207128"], ["https://data.delijn.be/stops/202706", "https://data.delijn.be/stops/203707"], ["https://data.delijn.be/stops/503722", "https://data.delijn.be/stops/503774"], ["https://data.delijn.be/stops/301289", "https://data.delijn.be/stops/307254"], ["https://data.delijn.be/stops/208118", "https://data.delijn.be/stops/209117"], ["https://data.delijn.be/stops/206606", "https://data.delijn.be/stops/207606"], ["https://data.delijn.be/stops/200395", "https://data.delijn.be/stops/208703"], ["https://data.delijn.be/stops/109890", "https://data.delijn.be/stops/109891"], ["https://data.delijn.be/stops/405705", "https://data.delijn.be/stops/405706"], ["https://data.delijn.be/stops/307616", "https://data.delijn.be/stops/307907"], ["https://data.delijn.be/stops/101204", "https://data.delijn.be/stops/205541"], ["https://data.delijn.be/stops/103116", "https://data.delijn.be/stops/107368"], ["https://data.delijn.be/stops/107901", "https://data.delijn.be/stops/107907"], ["https://data.delijn.be/stops/502474", "https://data.delijn.be/stops/505802"], ["https://data.delijn.be/stops/401651", "https://data.delijn.be/stops/305950"], ["https://data.delijn.be/stops/200495", "https://data.delijn.be/stops/201494"], ["https://data.delijn.be/stops/503112", "https://data.delijn.be/stops/503113"], ["https://data.delijn.be/stops/200143", "https://data.delijn.be/stops/200568"], ["https://data.delijn.be/stops/105731", "https://data.delijn.be/stops/105732"], ["https://data.delijn.be/stops/209610", "https://data.delijn.be/stops/305236"], ["https://data.delijn.be/stops/402580", "https://data.delijn.be/stops/402583"], ["https://data.delijn.be/stops/304589", "https://data.delijn.be/stops/304653"], ["https://data.delijn.be/stops/407837", "https://data.delijn.be/stops/409561"], ["https://data.delijn.be/stops/102976", "https://data.delijn.be/stops/106770"], ["https://data.delijn.be/stops/304027", "https://data.delijn.be/stops/304030"], ["https://data.delijn.be/stops/501047", "https://data.delijn.be/stops/507732"], ["https://data.delijn.be/stops/409680", "https://data.delijn.be/stops/409681"], ["https://data.delijn.be/stops/202950", "https://data.delijn.be/stops/202951"], ["https://data.delijn.be/stops/101368", "https://data.delijn.be/stops/101369"], ["https://data.delijn.be/stops/404286", "https://data.delijn.be/stops/407292"], ["https://data.delijn.be/stops/301365", "https://data.delijn.be/stops/304798"], ["https://data.delijn.be/stops/200633", "https://data.delijn.be/stops/201637"], ["https://data.delijn.be/stops/108050", "https://data.delijn.be/stops/307903"], ["https://data.delijn.be/stops/202179", "https://data.delijn.be/stops/203179"], ["https://data.delijn.be/stops/503082", "https://data.delijn.be/stops/508507"], ["https://data.delijn.be/stops/301283", "https://data.delijn.be/stops/306249"], ["https://data.delijn.be/stops/400124", "https://data.delijn.be/stops/403312"], ["https://data.delijn.be/stops/105744", "https://data.delijn.be/stops/109950"], ["https://data.delijn.be/stops/107602", "https://data.delijn.be/stops/107689"], ["https://data.delijn.be/stops/501098", "https://data.delijn.be/stops/507208"], ["https://data.delijn.be/stops/301885", "https://data.delijn.be/stops/301886"], ["https://data.delijn.be/stops/302157", "https://data.delijn.be/stops/302167"], ["https://data.delijn.be/stops/400330", "https://data.delijn.be/stops/400332"], ["https://data.delijn.be/stops/205688", "https://data.delijn.be/stops/205689"], ["https://data.delijn.be/stops/400134", "https://data.delijn.be/stops/400135"], ["https://data.delijn.be/stops/404567", "https://data.delijn.be/stops/404568"], ["https://data.delijn.be/stops/301007", "https://data.delijn.be/stops/301008"], ["https://data.delijn.be/stops/303001", "https://data.delijn.be/stops/306281"], ["https://data.delijn.be/stops/205314", "https://data.delijn.be/stops/205338"], ["https://data.delijn.be/stops/206835", "https://data.delijn.be/stops/207939"], ["https://data.delijn.be/stops/502359", "https://data.delijn.be/stops/502531"], ["https://data.delijn.be/stops/305483", "https://data.delijn.be/stops/308552"], ["https://data.delijn.be/stops/402044", "https://data.delijn.be/stops/402468"], ["https://data.delijn.be/stops/401487", "https://data.delijn.be/stops/401505"], ["https://data.delijn.be/stops/204791", "https://data.delijn.be/stops/205238"], ["https://data.delijn.be/stops/502338", "https://data.delijn.be/stops/507329"], ["https://data.delijn.be/stops/302791", "https://data.delijn.be/stops/307703"], ["https://data.delijn.be/stops/301090", "https://data.delijn.be/stops/304253"], ["https://data.delijn.be/stops/404106", "https://data.delijn.be/stops/404126"], ["https://data.delijn.be/stops/202552", "https://data.delijn.be/stops/203552"], ["https://data.delijn.be/stops/304237", "https://data.delijn.be/stops/304247"], ["https://data.delijn.be/stops/404833", "https://data.delijn.be/stops/408926"], ["https://data.delijn.be/stops/307544", "https://data.delijn.be/stops/307753"], ["https://data.delijn.be/stops/406416", "https://data.delijn.be/stops/409349"], ["https://data.delijn.be/stops/105318", "https://data.delijn.be/stops/105326"], ["https://data.delijn.be/stops/205137", "https://data.delijn.be/stops/207896"], ["https://data.delijn.be/stops/200539", "https://data.delijn.be/stops/201538"], ["https://data.delijn.be/stops/406122", "https://data.delijn.be/stops/406123"], ["https://data.delijn.be/stops/308516", "https://data.delijn.be/stops/308539"], ["https://data.delijn.be/stops/209545", "https://data.delijn.be/stops/209546"], ["https://data.delijn.be/stops/406564", "https://data.delijn.be/stops/406565"], ["https://data.delijn.be/stops/402128", "https://data.delijn.be/stops/410290"], ["https://data.delijn.be/stops/102990", "https://data.delijn.be/stops/102991"], ["https://data.delijn.be/stops/508649", "https://data.delijn.be/stops/508650"], ["https://data.delijn.be/stops/101886", "https://data.delijn.be/stops/104468"], ["https://data.delijn.be/stops/400596", "https://data.delijn.be/stops/400618"], ["https://data.delijn.be/stops/305830", "https://data.delijn.be/stops/305954"], ["https://data.delijn.be/stops/408584", "https://data.delijn.be/stops/408585"], ["https://data.delijn.be/stops/101614", "https://data.delijn.be/stops/101616"], ["https://data.delijn.be/stops/401409", "https://data.delijn.be/stops/305165"], ["https://data.delijn.be/stops/102253", "https://data.delijn.be/stops/108292"], ["https://data.delijn.be/stops/300861", "https://data.delijn.be/stops/301055"], ["https://data.delijn.be/stops/503168", "https://data.delijn.be/stops/508168"], ["https://data.delijn.be/stops/301190", "https://data.delijn.be/stops/308558"], ["https://data.delijn.be/stops/500927", "https://data.delijn.be/stops/504674"], ["https://data.delijn.be/stops/300331", "https://data.delijn.be/stops/304444"], ["https://data.delijn.be/stops/204054", "https://data.delijn.be/stops/204316"], ["https://data.delijn.be/stops/300176", "https://data.delijn.be/stops/300193"], ["https://data.delijn.be/stops/502134", "https://data.delijn.be/stops/507134"], ["https://data.delijn.be/stops/307555", "https://data.delijn.be/stops/307557"], ["https://data.delijn.be/stops/302663", "https://data.delijn.be/stops/302665"], ["https://data.delijn.be/stops/401394", "https://data.delijn.be/stops/408419"], ["https://data.delijn.be/stops/504882", "https://data.delijn.be/stops/505626"], ["https://data.delijn.be/stops/301020", "https://data.delijn.be/stops/305916"], ["https://data.delijn.be/stops/505207", "https://data.delijn.be/stops/509550"], ["https://data.delijn.be/stops/404490", "https://data.delijn.be/stops/404491"], ["https://data.delijn.be/stops/201925", "https://data.delijn.be/stops/216019"], ["https://data.delijn.be/stops/305381", "https://data.delijn.be/stops/305386"], ["https://data.delijn.be/stops/403028", "https://data.delijn.be/stops/403029"], ["https://data.delijn.be/stops/305417", "https://data.delijn.be/stops/305418"], ["https://data.delijn.be/stops/200920", "https://data.delijn.be/stops/202275"], ["https://data.delijn.be/stops/304380", "https://data.delijn.be/stops/307070"], ["https://data.delijn.be/stops/503824", "https://data.delijn.be/stops/505740"], ["https://data.delijn.be/stops/500052", "https://data.delijn.be/stops/501010"], ["https://data.delijn.be/stops/303577", "https://data.delijn.be/stops/305225"], ["https://data.delijn.be/stops/503502", "https://data.delijn.be/stops/508496"], ["https://data.delijn.be/stops/406207", "https://data.delijn.be/stops/406744"], ["https://data.delijn.be/stops/406224", "https://data.delijn.be/stops/406229"], ["https://data.delijn.be/stops/502800", "https://data.delijn.be/stops/504179"], ["https://data.delijn.be/stops/302710", "https://data.delijn.be/stops/302736"], ["https://data.delijn.be/stops/107348", "https://data.delijn.be/stops/108173"], ["https://data.delijn.be/stops/506036", "https://data.delijn.be/stops/506056"], ["https://data.delijn.be/stops/501246", "https://data.delijn.be/stops/501249"], ["https://data.delijn.be/stops/505772", "https://data.delijn.be/stops/507679"], ["https://data.delijn.be/stops/300171", "https://data.delijn.be/stops/300172"], ["https://data.delijn.be/stops/101087", "https://data.delijn.be/stops/101089"], ["https://data.delijn.be/stops/201946", "https://data.delijn.be/stops/201947"], ["https://data.delijn.be/stops/400897", "https://data.delijn.be/stops/409641"], ["https://data.delijn.be/stops/503454", "https://data.delijn.be/stops/503469"], ["https://data.delijn.be/stops/206533", "https://data.delijn.be/stops/207533"], ["https://data.delijn.be/stops/200562", "https://data.delijn.be/stops/201563"], ["https://data.delijn.be/stops/403133", "https://data.delijn.be/stops/410130"], ["https://data.delijn.be/stops/208015", "https://data.delijn.be/stops/208020"], ["https://data.delijn.be/stops/301631", "https://data.delijn.be/stops/303662"], ["https://data.delijn.be/stops/200734", "https://data.delijn.be/stops/202124"], ["https://data.delijn.be/stops/504373", "https://data.delijn.be/stops/504776"], ["https://data.delijn.be/stops/107059", "https://data.delijn.be/stops/108219"], ["https://data.delijn.be/stops/405903", "https://data.delijn.be/stops/405971"], ["https://data.delijn.be/stops/106195", "https://data.delijn.be/stops/106196"], ["https://data.delijn.be/stops/304225", "https://data.delijn.be/stops/304226"], ["https://data.delijn.be/stops/208360", "https://data.delijn.be/stops/209360"], ["https://data.delijn.be/stops/304334", "https://data.delijn.be/stops/305986"], ["https://data.delijn.be/stops/506248", "https://data.delijn.be/stops/506769"], ["https://data.delijn.be/stops/407009", "https://data.delijn.be/stops/407068"], ["https://data.delijn.be/stops/305346", "https://data.delijn.be/stops/305350"], ["https://data.delijn.be/stops/201771", "https://data.delijn.be/stops/208284"], ["https://data.delijn.be/stops/402137", "https://data.delijn.be/stops/402142"], ["https://data.delijn.be/stops/400584", "https://data.delijn.be/stops/400614"], ["https://data.delijn.be/stops/300644", "https://data.delijn.be/stops/300663"], ["https://data.delijn.be/stops/302192", "https://data.delijn.be/stops/308105"], ["https://data.delijn.be/stops/104907", "https://data.delijn.be/stops/107847"], ["https://data.delijn.be/stops/206128", "https://data.delijn.be/stops/206651"], ["https://data.delijn.be/stops/204098", "https://data.delijn.be/stops/205223"], ["https://data.delijn.be/stops/405289", "https://data.delijn.be/stops/405291"], ["https://data.delijn.be/stops/509054", "https://data.delijn.be/stops/509057"], ["https://data.delijn.be/stops/400565", "https://data.delijn.be/stops/403165"], ["https://data.delijn.be/stops/301981", "https://data.delijn.be/stops/303615"], ["https://data.delijn.be/stops/206121", "https://data.delijn.be/stops/207140"], ["https://data.delijn.be/stops/404714", "https://data.delijn.be/stops/404715"], ["https://data.delijn.be/stops/206459", "https://data.delijn.be/stops/207459"], ["https://data.delijn.be/stops/505644", "https://data.delijn.be/stops/509884"], ["https://data.delijn.be/stops/104270", "https://data.delijn.be/stops/104307"], ["https://data.delijn.be/stops/106220", "https://data.delijn.be/stops/106221"], ["https://data.delijn.be/stops/101476", "https://data.delijn.be/stops/108733"], ["https://data.delijn.be/stops/203004", "https://data.delijn.be/stops/203765"], ["https://data.delijn.be/stops/201811", "https://data.delijn.be/stops/201812"], ["https://data.delijn.be/stops/500566", "https://data.delijn.be/stops/500567"], ["https://data.delijn.be/stops/503923", "https://data.delijn.be/stops/508923"], ["https://data.delijn.be/stops/507505", "https://data.delijn.be/stops/507514"], ["https://data.delijn.be/stops/404909", "https://data.delijn.be/stops/404984"], ["https://data.delijn.be/stops/209238", "https://data.delijn.be/stops/209592"], ["https://data.delijn.be/stops/308470", "https://data.delijn.be/stops/308471"], ["https://data.delijn.be/stops/505791", "https://data.delijn.be/stops/505975"], ["https://data.delijn.be/stops/205174", "https://data.delijn.be/stops/205243"], ["https://data.delijn.be/stops/407834", "https://data.delijn.be/stops/407949"], ["https://data.delijn.be/stops/206120", "https://data.delijn.be/stops/207415"], ["https://data.delijn.be/stops/200208", "https://data.delijn.be/stops/203144"], ["https://data.delijn.be/stops/208233", "https://data.delijn.be/stops/208234"], ["https://data.delijn.be/stops/107868", "https://data.delijn.be/stops/107869"], ["https://data.delijn.be/stops/307065", "https://data.delijn.be/stops/307066"], ["https://data.delijn.be/stops/303562", "https://data.delijn.be/stops/303563"], ["https://data.delijn.be/stops/508019", "https://data.delijn.be/stops/508020"], ["https://data.delijn.be/stops/300647", "https://data.delijn.be/stops/300648"], ["https://data.delijn.be/stops/203821", "https://data.delijn.be/stops/203822"], ["https://data.delijn.be/stops/505387", "https://data.delijn.be/stops/505847"], ["https://data.delijn.be/stops/503027", "https://data.delijn.be/stops/503671"], ["https://data.delijn.be/stops/206745", "https://data.delijn.be/stops/207744"], ["https://data.delijn.be/stops/202393", "https://data.delijn.be/stops/203392"], ["https://data.delijn.be/stops/204414", "https://data.delijn.be/stops/205404"], ["https://data.delijn.be/stops/202393", "https://data.delijn.be/stops/202394"], ["https://data.delijn.be/stops/203979", "https://data.delijn.be/stops/203980"], ["https://data.delijn.be/stops/102192", "https://data.delijn.be/stops/105929"], ["https://data.delijn.be/stops/202228", "https://data.delijn.be/stops/203228"], ["https://data.delijn.be/stops/304238", "https://data.delijn.be/stops/304247"], ["https://data.delijn.be/stops/203459", "https://data.delijn.be/stops/203460"], ["https://data.delijn.be/stops/102843", "https://data.delijn.be/stops/106564"], ["https://data.delijn.be/stops/504506", "https://data.delijn.be/stops/509506"], ["https://data.delijn.be/stops/302415", "https://data.delijn.be/stops/302429"], ["https://data.delijn.be/stops/404608", "https://data.delijn.be/stops/404996"], ["https://data.delijn.be/stops/401586", "https://data.delijn.be/stops/402129"], ["https://data.delijn.be/stops/405696", "https://data.delijn.be/stops/405930"], ["https://data.delijn.be/stops/104899", "https://data.delijn.be/stops/109593"], ["https://data.delijn.be/stops/504086", "https://data.delijn.be/stops/505000"], ["https://data.delijn.be/stops/206399", "https://data.delijn.be/stops/207399"], ["https://data.delijn.be/stops/201882", "https://data.delijn.be/stops/202276"], ["https://data.delijn.be/stops/305219", "https://data.delijn.be/stops/305987"], ["https://data.delijn.be/stops/501468", "https://data.delijn.be/stops/505397"], ["https://data.delijn.be/stops/503752", "https://data.delijn.be/stops/504260"], ["https://data.delijn.be/stops/202688", "https://data.delijn.be/stops/203688"], ["https://data.delijn.be/stops/308056", "https://data.delijn.be/stops/308058"], ["https://data.delijn.be/stops/206945", "https://data.delijn.be/stops/207945"], ["https://data.delijn.be/stops/109720", "https://data.delijn.be/stops/109721"], ["https://data.delijn.be/stops/204671", "https://data.delijn.be/stops/205259"], ["https://data.delijn.be/stops/503913", "https://data.delijn.be/stops/503933"], ["https://data.delijn.be/stops/402065", "https://data.delijn.be/stops/405189"], ["https://data.delijn.be/stops/302972", "https://data.delijn.be/stops/302973"], ["https://data.delijn.be/stops/107228", "https://data.delijn.be/stops/107229"], ["https://data.delijn.be/stops/502018", "https://data.delijn.be/stops/507018"], ["https://data.delijn.be/stops/302583", "https://data.delijn.be/stops/302584"], ["https://data.delijn.be/stops/103136", "https://data.delijn.be/stops/106516"], ["https://data.delijn.be/stops/203531", "https://data.delijn.be/stops/206827"], ["https://data.delijn.be/stops/300937", "https://data.delijn.be/stops/301006"], ["https://data.delijn.be/stops/405013", "https://data.delijn.be/stops/408155"], ["https://data.delijn.be/stops/303995", "https://data.delijn.be/stops/306293"], ["https://data.delijn.be/stops/409777", "https://data.delijn.be/stops/409778"], ["https://data.delijn.be/stops/500561", "https://data.delijn.be/stops/500562"], ["https://data.delijn.be/stops/302646", "https://data.delijn.be/stops/302654"], ["https://data.delijn.be/stops/104337", "https://data.delijn.be/stops/105912"], ["https://data.delijn.be/stops/204423", "https://data.delijn.be/stops/204424"], ["https://data.delijn.be/stops/206165", "https://data.delijn.be/stops/308901"], ["https://data.delijn.be/stops/202426", "https://data.delijn.be/stops/203425"], ["https://data.delijn.be/stops/504664", "https://data.delijn.be/stops/509016"], ["https://data.delijn.be/stops/404249", "https://data.delijn.be/stops/404318"], ["https://data.delijn.be/stops/405233", "https://data.delijn.be/stops/405287"], ["https://data.delijn.be/stops/300356", "https://data.delijn.be/stops/300362"], ["https://data.delijn.be/stops/401772", "https://data.delijn.be/stops/406346"], ["https://data.delijn.be/stops/403255", "https://data.delijn.be/stops/403471"], ["https://data.delijn.be/stops/502150", "https://data.delijn.be/stops/507150"], ["https://data.delijn.be/stops/503281", "https://data.delijn.be/stops/504713"], ["https://data.delijn.be/stops/102198", "https://data.delijn.be/stops/105266"], ["https://data.delijn.be/stops/300734", "https://data.delijn.be/stops/302199"], ["https://data.delijn.be/stops/504160", "https://data.delijn.be/stops/509170"], ["https://data.delijn.be/stops/200489", "https://data.delijn.be/stops/203453"], ["https://data.delijn.be/stops/303148", "https://data.delijn.be/stops/307331"], ["https://data.delijn.be/stops/304378", "https://data.delijn.be/stops/304426"], ["https://data.delijn.be/stops/200952", "https://data.delijn.be/stops/203251"], ["https://data.delijn.be/stops/504444", "https://data.delijn.be/stops/509550"], ["https://data.delijn.be/stops/103257", "https://data.delijn.be/stops/105440"], ["https://data.delijn.be/stops/206976", "https://data.delijn.be/stops/207601"], ["https://data.delijn.be/stops/403040", "https://data.delijn.be/stops/403666"], ["https://data.delijn.be/stops/408851", "https://data.delijn.be/stops/408918"], ["https://data.delijn.be/stops/406947", "https://data.delijn.be/stops/406977"], ["https://data.delijn.be/stops/503255", "https://data.delijn.be/stops/503399"], ["https://data.delijn.be/stops/405660", "https://data.delijn.be/stops/302964"], ["https://data.delijn.be/stops/502245", "https://data.delijn.be/stops/507245"], ["https://data.delijn.be/stops/202301", "https://data.delijn.be/stops/203303"], ["https://data.delijn.be/stops/209674", "https://data.delijn.be/stops/209684"], ["https://data.delijn.be/stops/401419", "https://data.delijn.be/stops/305495"], ["https://data.delijn.be/stops/401110", "https://data.delijn.be/stops/410049"], ["https://data.delijn.be/stops/300465", "https://data.delijn.be/stops/300466"], ["https://data.delijn.be/stops/406392", "https://data.delijn.be/stops/406393"], ["https://data.delijn.be/stops/506254", "https://data.delijn.be/stops/506424"], ["https://data.delijn.be/stops/500935", "https://data.delijn.be/stops/500936"], ["https://data.delijn.be/stops/403321", "https://data.delijn.be/stops/403326"], ["https://data.delijn.be/stops/202877", "https://data.delijn.be/stops/203877"], ["https://data.delijn.be/stops/501115", "https://data.delijn.be/stops/506142"], ["https://data.delijn.be/stops/206599", "https://data.delijn.be/stops/207512"], ["https://data.delijn.be/stops/509407", "https://data.delijn.be/stops/509440"], ["https://data.delijn.be/stops/200241", "https://data.delijn.be/stops/201204"], ["https://data.delijn.be/stops/104551", "https://data.delijn.be/stops/108565"], ["https://data.delijn.be/stops/503649", "https://data.delijn.be/stops/508351"], ["https://data.delijn.be/stops/106581", "https://data.delijn.be/stops/107393"], ["https://data.delijn.be/stops/204133", "https://data.delijn.be/stops/205132"], ["https://data.delijn.be/stops/200906", "https://data.delijn.be/stops/202253"], ["https://data.delijn.be/stops/501449", "https://data.delijn.be/stops/506502"], ["https://data.delijn.be/stops/504867", "https://data.delijn.be/stops/504884"], ["https://data.delijn.be/stops/301717", "https://data.delijn.be/stops/301718"], ["https://data.delijn.be/stops/302387", "https://data.delijn.be/stops/304817"], ["https://data.delijn.be/stops/108282", "https://data.delijn.be/stops/109308"], ["https://data.delijn.be/stops/105698", "https://data.delijn.be/stops/105699"], ["https://data.delijn.be/stops/503834", "https://data.delijn.be/stops/508834"], ["https://data.delijn.be/stops/404182", "https://data.delijn.be/stops/404183"], ["https://data.delijn.be/stops/305213", "https://data.delijn.be/stops/305214"], ["https://data.delijn.be/stops/400205", "https://data.delijn.be/stops/400215"], ["https://data.delijn.be/stops/304172", "https://data.delijn.be/stops/304227"], ["https://data.delijn.be/stops/504156", "https://data.delijn.be/stops/509189"], ["https://data.delijn.be/stops/300259", "https://data.delijn.be/stops/300260"], ["https://data.delijn.be/stops/305280", "https://data.delijn.be/stops/305281"], ["https://data.delijn.be/stops/502680", "https://data.delijn.be/stops/507063"], ["https://data.delijn.be/stops/407792", "https://data.delijn.be/stops/308274"], ["https://data.delijn.be/stops/202104", "https://data.delijn.be/stops/203104"], ["https://data.delijn.be/stops/405428", "https://data.delijn.be/stops/302854"], ["https://data.delijn.be/stops/206984", "https://data.delijn.be/stops/207984"], ["https://data.delijn.be/stops/201650", "https://data.delijn.be/stops/211112"], ["https://data.delijn.be/stops/201850", "https://data.delijn.be/stops/201869"], ["https://data.delijn.be/stops/101344", "https://data.delijn.be/stops/108062"], ["https://data.delijn.be/stops/205447", "https://data.delijn.be/stops/205648"], ["https://data.delijn.be/stops/102885", "https://data.delijn.be/stops/104835"], ["https://data.delijn.be/stops/103958", "https://data.delijn.be/stops/105115"], ["https://data.delijn.be/stops/202101", "https://data.delijn.be/stops/203101"], ["https://data.delijn.be/stops/400098", "https://data.delijn.be/stops/403311"], ["https://data.delijn.be/stops/304306", "https://data.delijn.be/stops/304313"], ["https://data.delijn.be/stops/502138", "https://data.delijn.be/stops/507136"], ["https://data.delijn.be/stops/307284", "https://data.delijn.be/stops/307285"], ["https://data.delijn.be/stops/403132", "https://data.delijn.be/stops/403133"], ["https://data.delijn.be/stops/303462", "https://data.delijn.be/stops/304987"], ["https://data.delijn.be/stops/504807", "https://data.delijn.be/stops/504809"], ["https://data.delijn.be/stops/208660", "https://data.delijn.be/stops/209521"], ["https://data.delijn.be/stops/207270", "https://data.delijn.be/stops/207271"], ["https://data.delijn.be/stops/307586", "https://data.delijn.be/stops/307587"], ["https://data.delijn.be/stops/504664", "https://data.delijn.be/stops/509506"], ["https://data.delijn.be/stops/200945", "https://data.delijn.be/stops/202699"], ["https://data.delijn.be/stops/408572", "https://data.delijn.be/stops/408573"], ["https://data.delijn.be/stops/207774", "https://data.delijn.be/stops/207776"], ["https://data.delijn.be/stops/301044", "https://data.delijn.be/stops/304809"], ["https://data.delijn.be/stops/505630", "https://data.delijn.be/stops/508335"], ["https://data.delijn.be/stops/101372", "https://data.delijn.be/stops/101373"], ["https://data.delijn.be/stops/403435", "https://data.delijn.be/stops/403436"], ["https://data.delijn.be/stops/505757", "https://data.delijn.be/stops/509795"], ["https://data.delijn.be/stops/307349", "https://data.delijn.be/stops/307433"], ["https://data.delijn.be/stops/408836", "https://data.delijn.be/stops/408846"], ["https://data.delijn.be/stops/104776", "https://data.delijn.be/stops/104778"], ["https://data.delijn.be/stops/302494", "https://data.delijn.be/stops/302718"], ["https://data.delijn.be/stops/301179", "https://data.delijn.be/stops/305645"], ["https://data.delijn.be/stops/106334", "https://data.delijn.be/stops/106336"], ["https://data.delijn.be/stops/304020", "https://data.delijn.be/stops/304065"], ["https://data.delijn.be/stops/301295", "https://data.delijn.be/stops/308952"], ["https://data.delijn.be/stops/400663", "https://data.delijn.be/stops/400665"], ["https://data.delijn.be/stops/206998", "https://data.delijn.be/stops/207567"], ["https://data.delijn.be/stops/204998", "https://data.delijn.be/stops/208120"], ["https://data.delijn.be/stops/202659", "https://data.delijn.be/stops/211659"], ["https://data.delijn.be/stops/404465", "https://data.delijn.be/stops/404467"], ["https://data.delijn.be/stops/301313", "https://data.delijn.be/stops/306252"], ["https://data.delijn.be/stops/306180", "https://data.delijn.be/stops/306181"], ["https://data.delijn.be/stops/108210", "https://data.delijn.be/stops/109120"], ["https://data.delijn.be/stops/102513", "https://data.delijn.be/stops/406499"], ["https://data.delijn.be/stops/502426", "https://data.delijn.be/stops/507309"], ["https://data.delijn.be/stops/204392", "https://data.delijn.be/stops/204393"], ["https://data.delijn.be/stops/302021", "https://data.delijn.be/stops/307284"], ["https://data.delijn.be/stops/106064", "https://data.delijn.be/stops/109875"], ["https://data.delijn.be/stops/405932", "https://data.delijn.be/stops/405989"], ["https://data.delijn.be/stops/102516", "https://data.delijn.be/stops/405607"], ["https://data.delijn.be/stops/202630", "https://data.delijn.be/stops/203630"], ["https://data.delijn.be/stops/101474", "https://data.delijn.be/stops/109176"], ["https://data.delijn.be/stops/304361", "https://data.delijn.be/stops/304369"], ["https://data.delijn.be/stops/106815", "https://data.delijn.be/stops/106816"], ["https://data.delijn.be/stops/300198", "https://data.delijn.be/stops/300208"], ["https://data.delijn.be/stops/300102", "https://data.delijn.be/stops/306851"], ["https://data.delijn.be/stops/400593", "https://data.delijn.be/stops/405919"], ["https://data.delijn.be/stops/403986", "https://data.delijn.be/stops/403994"], ["https://data.delijn.be/stops/206778", "https://data.delijn.be/stops/206797"], ["https://data.delijn.be/stops/101533", "https://data.delijn.be/stops/109117"], ["https://data.delijn.be/stops/205128", "https://data.delijn.be/stops/205129"], ["https://data.delijn.be/stops/306065", "https://data.delijn.be/stops/306066"], ["https://data.delijn.be/stops/403961", "https://data.delijn.be/stops/403971"], ["https://data.delijn.be/stops/203396", "https://data.delijn.be/stops/211038"], ["https://data.delijn.be/stops/300212", "https://data.delijn.be/stops/303735"], ["https://data.delijn.be/stops/201736", "https://data.delijn.be/stops/203784"], ["https://data.delijn.be/stops/503079", "https://data.delijn.be/stops/508081"], ["https://data.delijn.be/stops/200543", "https://data.delijn.be/stops/205929"], ["https://data.delijn.be/stops/208066", "https://data.delijn.be/stops/209194"], ["https://data.delijn.be/stops/206536", "https://data.delijn.be/stops/209741"], ["https://data.delijn.be/stops/501283", "https://data.delijn.be/stops/506328"], ["https://data.delijn.be/stops/209600", "https://data.delijn.be/stops/307601"], ["https://data.delijn.be/stops/304267", "https://data.delijn.be/stops/304278"], ["https://data.delijn.be/stops/302593", "https://data.delijn.be/stops/302678"], ["https://data.delijn.be/stops/209202", "https://data.delijn.be/stops/209781"], ["https://data.delijn.be/stops/406470", "https://data.delijn.be/stops/406492"], ["https://data.delijn.be/stops/505774", "https://data.delijn.be/stops/509825"], ["https://data.delijn.be/stops/308046", "https://data.delijn.be/stops/308446"], ["https://data.delijn.be/stops/502691", "https://data.delijn.be/stops/507477"], ["https://data.delijn.be/stops/408621", "https://data.delijn.be/stops/408807"], ["https://data.delijn.be/stops/504031", "https://data.delijn.be/stops/504032"], ["https://data.delijn.be/stops/300543", "https://data.delijn.be/stops/303525"], ["https://data.delijn.be/stops/504143", "https://data.delijn.be/stops/509143"], ["https://data.delijn.be/stops/403664", "https://data.delijn.be/stops/409262"], ["https://data.delijn.be/stops/105561", "https://data.delijn.be/stops/106292"], ["https://data.delijn.be/stops/204179", "https://data.delijn.be/stops/207393"], ["https://data.delijn.be/stops/108134", "https://data.delijn.be/stops/108843"], ["https://data.delijn.be/stops/301116", "https://data.delijn.be/stops/302244"], ["https://data.delijn.be/stops/301528", "https://data.delijn.be/stops/308084"], ["https://data.delijn.be/stops/400788", "https://data.delijn.be/stops/409596"], ["https://data.delijn.be/stops/101798", "https://data.delijn.be/stops/300642"], ["https://data.delijn.be/stops/302454", "https://data.delijn.be/stops/302497"], ["https://data.delijn.be/stops/109063", "https://data.delijn.be/stops/307369"], ["https://data.delijn.be/stops/302453", "https://data.delijn.be/stops/302467"], ["https://data.delijn.be/stops/402678", "https://data.delijn.be/stops/402737"], ["https://data.delijn.be/stops/203629", "https://data.delijn.be/stops/205068"], ["https://data.delijn.be/stops/304608", "https://data.delijn.be/stops/304626"], ["https://data.delijn.be/stops/504719", "https://data.delijn.be/stops/508529"], ["https://data.delijn.be/stops/405808", "https://data.delijn.be/stops/409414"], ["https://data.delijn.be/stops/304926", "https://data.delijn.be/stops/306111"], ["https://data.delijn.be/stops/503722", "https://data.delijn.be/stops/509938"], ["https://data.delijn.be/stops/200897", "https://data.delijn.be/stops/202053"], ["https://data.delijn.be/stops/102844", "https://data.delijn.be/stops/107365"], ["https://data.delijn.be/stops/103163", "https://data.delijn.be/stops/109932"], ["https://data.delijn.be/stops/407200", "https://data.delijn.be/stops/407207"], ["https://data.delijn.be/stops/402838", "https://data.delijn.be/stops/409015"], ["https://data.delijn.be/stops/207304", "https://data.delijn.be/stops/207738"], ["https://data.delijn.be/stops/200136", "https://data.delijn.be/stops/201308"], ["https://data.delijn.be/stops/103141", "https://data.delijn.be/stops/106511"], ["https://data.delijn.be/stops/507197", "https://data.delijn.be/stops/507631"], ["https://data.delijn.be/stops/107564", "https://data.delijn.be/stops/107568"], ["https://data.delijn.be/stops/408624", "https://data.delijn.be/stops/408625"], ["https://data.delijn.be/stops/500938", "https://data.delijn.be/stops/509885"], ["https://data.delijn.be/stops/102345", "https://data.delijn.be/stops/103675"], ["https://data.delijn.be/stops/503998", "https://data.delijn.be/stops/508914"], ["https://data.delijn.be/stops/406272", "https://data.delijn.be/stops/406273"], ["https://data.delijn.be/stops/303540", "https://data.delijn.be/stops/303569"], ["https://data.delijn.be/stops/204579", "https://data.delijn.be/stops/204589"], ["https://data.delijn.be/stops/403075", "https://data.delijn.be/stops/410285"], ["https://data.delijn.be/stops/302176", "https://data.delijn.be/stops/308104"], ["https://data.delijn.be/stops/408890", "https://data.delijn.be/stops/408907"], ["https://data.delijn.be/stops/107336", "https://data.delijn.be/stops/107338"], ["https://data.delijn.be/stops/302154", "https://data.delijn.be/stops/302182"], ["https://data.delijn.be/stops/105779", "https://data.delijn.be/stops/105781"], ["https://data.delijn.be/stops/503760", "https://data.delijn.be/stops/508624"], ["https://data.delijn.be/stops/303541", "https://data.delijn.be/stops/305897"], ["https://data.delijn.be/stops/104512", "https://data.delijn.be/stops/107787"], ["https://data.delijn.be/stops/508417", "https://data.delijn.be/stops/508951"], ["https://data.delijn.be/stops/301221", "https://data.delijn.be/stops/301222"], ["https://data.delijn.be/stops/207663", "https://data.delijn.be/stops/207664"], ["https://data.delijn.be/stops/503982", "https://data.delijn.be/stops/508519"], ["https://data.delijn.be/stops/106028", "https://data.delijn.be/stops/106031"], ["https://data.delijn.be/stops/106985", "https://data.delijn.be/stops/106987"], ["https://data.delijn.be/stops/102073", "https://data.delijn.be/stops/107304"], ["https://data.delijn.be/stops/406157", "https://data.delijn.be/stops/406253"], ["https://data.delijn.be/stops/304388", "https://data.delijn.be/stops/306870"], ["https://data.delijn.be/stops/505906", "https://data.delijn.be/stops/508631"], ["https://data.delijn.be/stops/301267", "https://data.delijn.be/stops/305042"], ["https://data.delijn.be/stops/207668", "https://data.delijn.be/stops/208506"], ["https://data.delijn.be/stops/107375", "https://data.delijn.be/stops/107585"], ["https://data.delijn.be/stops/402337", "https://data.delijn.be/stops/402443"], ["https://data.delijn.be/stops/408426", "https://data.delijn.be/stops/408427"], ["https://data.delijn.be/stops/208669", "https://data.delijn.be/stops/208671"], ["https://data.delijn.be/stops/209647", "https://data.delijn.be/stops/211111"], ["https://data.delijn.be/stops/207895", "https://data.delijn.be/stops/207896"], ["https://data.delijn.be/stops/209591", "https://data.delijn.be/stops/307529"], ["https://data.delijn.be/stops/407941", "https://data.delijn.be/stops/408433"], ["https://data.delijn.be/stops/202533", "https://data.delijn.be/stops/205174"], ["https://data.delijn.be/stops/408549", "https://data.delijn.be/stops/408675"], ["https://data.delijn.be/stops/206700", "https://data.delijn.be/stops/207700"], ["https://data.delijn.be/stops/408505", "https://data.delijn.be/stops/408508"], ["https://data.delijn.be/stops/102180", "https://data.delijn.be/stops/102183"], ["https://data.delijn.be/stops/105373", "https://data.delijn.be/stops/105374"], ["https://data.delijn.be/stops/404904", "https://data.delijn.be/stops/405648"], ["https://data.delijn.be/stops/303335", "https://data.delijn.be/stops/307117"], ["https://data.delijn.be/stops/409194", "https://data.delijn.be/stops/409199"], ["https://data.delijn.be/stops/304428", "https://data.delijn.be/stops/304430"], ["https://data.delijn.be/stops/200802", "https://data.delijn.be/stops/202543"], ["https://data.delijn.be/stops/104419", "https://data.delijn.be/stops/205287"], ["https://data.delijn.be/stops/509118", "https://data.delijn.be/stops/509718"], ["https://data.delijn.be/stops/300306", "https://data.delijn.be/stops/300307"], ["https://data.delijn.be/stops/305060", "https://data.delijn.be/stops/306921"], ["https://data.delijn.be/stops/104519", "https://data.delijn.be/stops/107934"], ["https://data.delijn.be/stops/200892", "https://data.delijn.be/stops/505684"], ["https://data.delijn.be/stops/204652", "https://data.delijn.be/stops/205260"], ["https://data.delijn.be/stops/408559", "https://data.delijn.be/stops/408562"], ["https://data.delijn.be/stops/305562", "https://data.delijn.be/stops/308552"], ["https://data.delijn.be/stops/202624", "https://data.delijn.be/stops/203624"], ["https://data.delijn.be/stops/301587", "https://data.delijn.be/stops/304960"], ["https://data.delijn.be/stops/102211", "https://data.delijn.be/stops/106122"], ["https://data.delijn.be/stops/405565", "https://data.delijn.be/stops/405575"], ["https://data.delijn.be/stops/201964", "https://data.delijn.be/stops/209034"], ["https://data.delijn.be/stops/302358", "https://data.delijn.be/stops/302362"], ["https://data.delijn.be/stops/207199", "https://data.delijn.be/stops/207815"], ["https://data.delijn.be/stops/405305", "https://data.delijn.be/stops/302829"], ["https://data.delijn.be/stops/101778", "https://data.delijn.be/stops/104261"], ["https://data.delijn.be/stops/501120", "https://data.delijn.be/stops/501397"], ["https://data.delijn.be/stops/202645", "https://data.delijn.be/stops/211007"], ["https://data.delijn.be/stops/504829", "https://data.delijn.be/stops/509886"], ["https://data.delijn.be/stops/502688", "https://data.delijn.be/stops/502689"], ["https://data.delijn.be/stops/210133", "https://data.delijn.be/stops/211133"], ["https://data.delijn.be/stops/200160", "https://data.delijn.be/stops/200310"], ["https://data.delijn.be/stops/406167", "https://data.delijn.be/stops/406427"], ["https://data.delijn.be/stops/404774", "https://data.delijn.be/stops/410051"], ["https://data.delijn.be/stops/304337", "https://data.delijn.be/stops/304707"], ["https://data.delijn.be/stops/106646", "https://data.delijn.be/stops/106648"], ["https://data.delijn.be/stops/503055", "https://data.delijn.be/stops/503057"], ["https://data.delijn.be/stops/205228", "https://data.delijn.be/stops/205229"], ["https://data.delijn.be/stops/308509", "https://data.delijn.be/stops/308511"], ["https://data.delijn.be/stops/104583", "https://data.delijn.be/stops/104587"], ["https://data.delijn.be/stops/104379", "https://data.delijn.be/stops/104382"], ["https://data.delijn.be/stops/207378", "https://data.delijn.be/stops/207380"], ["https://data.delijn.be/stops/102900", "https://data.delijn.be/stops/102977"], ["https://data.delijn.be/stops/500558", "https://data.delijn.be/stops/501044"], ["https://data.delijn.be/stops/403689", "https://data.delijn.be/stops/409274"], ["https://data.delijn.be/stops/308287", "https://data.delijn.be/stops/308292"], ["https://data.delijn.be/stops/200472", "https://data.delijn.be/stops/201890"], ["https://data.delijn.be/stops/209292", "https://data.delijn.be/stops/211065"], ["https://data.delijn.be/stops/101399", "https://data.delijn.be/stops/101402"], ["https://data.delijn.be/stops/109095", "https://data.delijn.be/stops/109100"], ["https://data.delijn.be/stops/503841", "https://data.delijn.be/stops/503860"], ["https://data.delijn.be/stops/104857", "https://data.delijn.be/stops/107469"], ["https://data.delijn.be/stops/400590", "https://data.delijn.be/stops/404293"], ["https://data.delijn.be/stops/504145", "https://data.delijn.be/stops/504583"], ["https://data.delijn.be/stops/502539", "https://data.delijn.be/stops/508823"], ["https://data.delijn.be/stops/107799", "https://data.delijn.be/stops/107801"], ["https://data.delijn.be/stops/101515", "https://data.delijn.be/stops/101520"], ["https://data.delijn.be/stops/502452", "https://data.delijn.be/stops/502461"], ["https://data.delijn.be/stops/109074", "https://data.delijn.be/stops/300109"], ["https://data.delijn.be/stops/200235", "https://data.delijn.be/stops/200249"], ["https://data.delijn.be/stops/504871", "https://data.delijn.be/stops/509448"], ["https://data.delijn.be/stops/404475", "https://data.delijn.be/stops/407249"], ["https://data.delijn.be/stops/207179", "https://data.delijn.be/stops/207180"], ["https://data.delijn.be/stops/503373", "https://data.delijn.be/stops/503384"], ["https://data.delijn.be/stops/200905", "https://data.delijn.be/stops/210006"], ["https://data.delijn.be/stops/401505", "https://data.delijn.be/stops/401887"], ["https://data.delijn.be/stops/202580", "https://data.delijn.be/stops/203580"], ["https://data.delijn.be/stops/502340", "https://data.delijn.be/stops/502342"], ["https://data.delijn.be/stops/410353", "https://data.delijn.be/stops/410359"], ["https://data.delijn.be/stops/400016", "https://data.delijn.be/stops/400430"], ["https://data.delijn.be/stops/106478", "https://data.delijn.be/stops/106479"], ["https://data.delijn.be/stops/307447", "https://data.delijn.be/stops/307448"], ["https://data.delijn.be/stops/200709", "https://data.delijn.be/stops/200710"], ["https://data.delijn.be/stops/208295", "https://data.delijn.be/stops/208330"], ["https://data.delijn.be/stops/409055", "https://data.delijn.be/stops/409060"], ["https://data.delijn.be/stops/208052", "https://data.delijn.be/stops/208658"], ["https://data.delijn.be/stops/104396", "https://data.delijn.be/stops/104397"], ["https://data.delijn.be/stops/502141", "https://data.delijn.be/stops/507141"], ["https://data.delijn.be/stops/400545", "https://data.delijn.be/stops/404281"], ["https://data.delijn.be/stops/104667", "https://data.delijn.be/stops/205629"], ["https://data.delijn.be/stops/302960", "https://data.delijn.be/stops/302980"], ["https://data.delijn.be/stops/204083", "https://data.delijn.be/stops/205083"], ["https://data.delijn.be/stops/407247", "https://data.delijn.be/stops/407457"], ["https://data.delijn.be/stops/102216", "https://data.delijn.be/stops/106250"], ["https://data.delijn.be/stops/102854", "https://data.delijn.be/stops/104402"], ["https://data.delijn.be/stops/102590", "https://data.delijn.be/stops/104280"], ["https://data.delijn.be/stops/104605", "https://data.delijn.be/stops/109584"], ["https://data.delijn.be/stops/509947", "https://data.delijn.be/stops/509951"], ["https://data.delijn.be/stops/300615", "https://data.delijn.be/stops/307981"], ["https://data.delijn.be/stops/108632", "https://data.delijn.be/stops/108633"], ["https://data.delijn.be/stops/300014", "https://data.delijn.be/stops/300389"], ["https://data.delijn.be/stops/103964", "https://data.delijn.be/stops/107526"], ["https://data.delijn.be/stops/508999", "https://data.delijn.be/stops/509752"], ["https://data.delijn.be/stops/306068", "https://data.delijn.be/stops/307204"], ["https://data.delijn.be/stops/205048", "https://data.delijn.be/stops/205302"], ["https://data.delijn.be/stops/104990", "https://data.delijn.be/stops/105000"], ["https://data.delijn.be/stops/401285", "https://data.delijn.be/stops/401379"], ["https://data.delijn.be/stops/108385", "https://data.delijn.be/stops/108387"], ["https://data.delijn.be/stops/507035", "https://data.delijn.be/stops/507604"], ["https://data.delijn.be/stops/402446", "https://data.delijn.be/stops/402447"], ["https://data.delijn.be/stops/302710", "https://data.delijn.be/stops/302711"], ["https://data.delijn.be/stops/408276", "https://data.delijn.be/stops/408277"], ["https://data.delijn.be/stops/206407", "https://data.delijn.be/stops/207407"], ["https://data.delijn.be/stops/104597", "https://data.delijn.be/stops/105117"], ["https://data.delijn.be/stops/301608", "https://data.delijn.be/stops/301611"], ["https://data.delijn.be/stops/304363", "https://data.delijn.be/stops/304429"], ["https://data.delijn.be/stops/301605", "https://data.delijn.be/stops/301613"], ["https://data.delijn.be/stops/206321", "https://data.delijn.be/stops/206506"], ["https://data.delijn.be/stops/404350", "https://data.delijn.be/stops/404384"], ["https://data.delijn.be/stops/102171", "https://data.delijn.be/stops/102443"], ["https://data.delijn.be/stops/504503", "https://data.delijn.be/stops/504510"], ["https://data.delijn.be/stops/406268", "https://data.delijn.be/stops/406424"], ["https://data.delijn.be/stops/408238", "https://data.delijn.be/stops/408239"], ["https://data.delijn.be/stops/102445", "https://data.delijn.be/stops/107620"], ["https://data.delijn.be/stops/200181", "https://data.delijn.be/stops/200195"], ["https://data.delijn.be/stops/202008", "https://data.delijn.be/stops/203009"], ["https://data.delijn.be/stops/302947", "https://data.delijn.be/stops/302997"], ["https://data.delijn.be/stops/504944", "https://data.delijn.be/stops/505549"], ["https://data.delijn.be/stops/403437", "https://data.delijn.be/stops/410130"], ["https://data.delijn.be/stops/305052", "https://data.delijn.be/stops/307278"], ["https://data.delijn.be/stops/303994", "https://data.delijn.be/stops/307017"], ["https://data.delijn.be/stops/204035", "https://data.delijn.be/stops/205036"], ["https://data.delijn.be/stops/405263", "https://data.delijn.be/stops/405270"], ["https://data.delijn.be/stops/404715", "https://data.delijn.be/stops/404718"], ["https://data.delijn.be/stops/202586", "https://data.delijn.be/stops/203586"], ["https://data.delijn.be/stops/101831", "https://data.delijn.be/stops/107004"], ["https://data.delijn.be/stops/208058", "https://data.delijn.be/stops/217004"], ["https://data.delijn.be/stops/105145", "https://data.delijn.be/stops/105755"], ["https://data.delijn.be/stops/402180", "https://data.delijn.be/stops/402495"], ["https://data.delijn.be/stops/306899", "https://data.delijn.be/stops/308094"], ["https://data.delijn.be/stops/504245", "https://data.delijn.be/stops/504247"], ["https://data.delijn.be/stops/206519", "https://data.delijn.be/stops/207525"], ["https://data.delijn.be/stops/101377", "https://data.delijn.be/stops/101398"], ["https://data.delijn.be/stops/505195", "https://data.delijn.be/stops/508149"], ["https://data.delijn.be/stops/208543", "https://data.delijn.be/stops/209544"], ["https://data.delijn.be/stops/108869", "https://data.delijn.be/stops/109511"], ["https://data.delijn.be/stops/102042", "https://data.delijn.be/stops/206899"], ["https://data.delijn.be/stops/208076", "https://data.delijn.be/stops/209540"], ["https://data.delijn.be/stops/106638", "https://data.delijn.be/stops/106649"], ["https://data.delijn.be/stops/201804", "https://data.delijn.be/stops/201816"], ["https://data.delijn.be/stops/206232", "https://data.delijn.be/stops/300152"], ["https://data.delijn.be/stops/201962", "https://data.delijn.be/stops/202399"], ["https://data.delijn.be/stops/407917", "https://data.delijn.be/stops/407973"], ["https://data.delijn.be/stops/304156", "https://data.delijn.be/stops/307758"], ["https://data.delijn.be/stops/103681", "https://data.delijn.be/stops/104513"], ["https://data.delijn.be/stops/101776", "https://data.delijn.be/stops/107696"], ["https://data.delijn.be/stops/301633", "https://data.delijn.be/stops/301636"], ["https://data.delijn.be/stops/402121", "https://data.delijn.be/stops/402261"], ["https://data.delijn.be/stops/505943", "https://data.delijn.be/stops/508223"], ["https://data.delijn.be/stops/104017", "https://data.delijn.be/stops/109884"], ["https://data.delijn.be/stops/107714", "https://data.delijn.be/stops/107716"], ["https://data.delijn.be/stops/200156", "https://data.delijn.be/stops/203359"], ["https://data.delijn.be/stops/204346", "https://data.delijn.be/stops/205101"], ["https://data.delijn.be/stops/404226", "https://data.delijn.be/stops/404247"], ["https://data.delijn.be/stops/505723", "https://data.delijn.be/stops/507286"], ["https://data.delijn.be/stops/104039", "https://data.delijn.be/stops/108511"], ["https://data.delijn.be/stops/301775", "https://data.delijn.be/stops/301785"], ["https://data.delijn.be/stops/404451", "https://data.delijn.be/stops/406740"], ["https://data.delijn.be/stops/205286", "https://data.delijn.be/stops/205535"], ["https://data.delijn.be/stops/301193", "https://data.delijn.be/stops/307615"], ["https://data.delijn.be/stops/104098", "https://data.delijn.be/stops/104099"], ["https://data.delijn.be/stops/502354", "https://data.delijn.be/stops/505171"], ["https://data.delijn.be/stops/106754", "https://data.delijn.be/stops/109528"], ["https://data.delijn.be/stops/308548", "https://data.delijn.be/stops/308549"], ["https://data.delijn.be/stops/203883", "https://data.delijn.be/stops/207938"], ["https://data.delijn.be/stops/302073", "https://data.delijn.be/stops/305637"], ["https://data.delijn.be/stops/205922", "https://data.delijn.be/stops/205923"], ["https://data.delijn.be/stops/305771", "https://data.delijn.be/stops/305788"], ["https://data.delijn.be/stops/106101", "https://data.delijn.be/stops/106118"], ["https://data.delijn.be/stops/502197", "https://data.delijn.be/stops/505981"], ["https://data.delijn.be/stops/300741", "https://data.delijn.be/stops/300742"], ["https://data.delijn.be/stops/401986", "https://data.delijn.be/stops/402024"], ["https://data.delijn.be/stops/406427", "https://data.delijn.be/stops/406452"], ["https://data.delijn.be/stops/504065", "https://data.delijn.be/stops/504067"], ["https://data.delijn.be/stops/104582", "https://data.delijn.be/stops/308632"], ["https://data.delijn.be/stops/402968", "https://data.delijn.be/stops/402970"], ["https://data.delijn.be/stops/105478", "https://data.delijn.be/stops/109949"], ["https://data.delijn.be/stops/200421", "https://data.delijn.be/stops/202011"], ["https://data.delijn.be/stops/408510", "https://data.delijn.be/stops/408511"], ["https://data.delijn.be/stops/207026", "https://data.delijn.be/stops/217002"], ["https://data.delijn.be/stops/301354", "https://data.delijn.be/stops/306132"], ["https://data.delijn.be/stops/106229", "https://data.delijn.be/stops/106232"], ["https://data.delijn.be/stops/301556", "https://data.delijn.be/stops/308086"], ["https://data.delijn.be/stops/301045", "https://data.delijn.be/stops/306687"], ["https://data.delijn.be/stops/504433", "https://data.delijn.be/stops/509433"], ["https://data.delijn.be/stops/207882", "https://data.delijn.be/stops/207912"], ["https://data.delijn.be/stops/202429", "https://data.delijn.be/stops/203717"], ["https://data.delijn.be/stops/304456", "https://data.delijn.be/stops/304462"], ["https://data.delijn.be/stops/300546", "https://data.delijn.be/stops/307861"], ["https://data.delijn.be/stops/303381", "https://data.delijn.be/stops/303384"], ["https://data.delijn.be/stops/501662", "https://data.delijn.be/stops/501663"], ["https://data.delijn.be/stops/409190", "https://data.delijn.be/stops/409191"], ["https://data.delijn.be/stops/509775", "https://data.delijn.be/stops/509776"], ["https://data.delijn.be/stops/502591", "https://data.delijn.be/stops/507081"], ["https://data.delijn.be/stops/109595", "https://data.delijn.be/stops/109596"], ["https://data.delijn.be/stops/400627", "https://data.delijn.be/stops/407519"], ["https://data.delijn.be/stops/209390", "https://data.delijn.be/stops/503835"], ["https://data.delijn.be/stops/101511", "https://data.delijn.be/stops/300110"], ["https://data.delijn.be/stops/206720", "https://data.delijn.be/stops/207617"], ["https://data.delijn.be/stops/204238", "https://data.delijn.be/stops/205793"], ["https://data.delijn.be/stops/501454", "https://data.delijn.be/stops/506502"], ["https://data.delijn.be/stops/503049", "https://data.delijn.be/stops/508049"], ["https://data.delijn.be/stops/206244", "https://data.delijn.be/stops/207243"], ["https://data.delijn.be/stops/402965", "https://data.delijn.be/stops/410059"], ["https://data.delijn.be/stops/504387", "https://data.delijn.be/stops/505717"], ["https://data.delijn.be/stops/404302", "https://data.delijn.be/stops/410082"], ["https://data.delijn.be/stops/104482", "https://data.delijn.be/stops/307523"], ["https://data.delijn.be/stops/201423", "https://data.delijn.be/stops/203827"], ["https://data.delijn.be/stops/307145", "https://data.delijn.be/stops/307894"], ["https://data.delijn.be/stops/306123", "https://data.delijn.be/stops/307213"], ["https://data.delijn.be/stops/503919", "https://data.delijn.be/stops/505920"], ["https://data.delijn.be/stops/507090", "https://data.delijn.be/stops/507095"], ["https://data.delijn.be/stops/503042", "https://data.delijn.be/stops/504205"], ["https://data.delijn.be/stops/306958", "https://data.delijn.be/stops/306960"], ["https://data.delijn.be/stops/402714", "https://data.delijn.be/stops/402717"], ["https://data.delijn.be/stops/301453", "https://data.delijn.be/stops/307913"], ["https://data.delijn.be/stops/404405", "https://data.delijn.be/stops/404417"], ["https://data.delijn.be/stops/306001", "https://data.delijn.be/stops/307852"], ["https://data.delijn.be/stops/503496", "https://data.delijn.be/stops/508496"], ["https://data.delijn.be/stops/508261", "https://data.delijn.be/stops/509766"], ["https://data.delijn.be/stops/107363", "https://data.delijn.be/stops/107366"], ["https://data.delijn.be/stops/505404", "https://data.delijn.be/stops/506081"], ["https://data.delijn.be/stops/200852", "https://data.delijn.be/stops/202302"], ["https://data.delijn.be/stops/102573", "https://data.delijn.be/stops/109162"], ["https://data.delijn.be/stops/401257", "https://data.delijn.be/stops/401259"], ["https://data.delijn.be/stops/406170", "https://data.delijn.be/stops/406172"], ["https://data.delijn.be/stops/301319", "https://data.delijn.be/stops/301321"], ["https://data.delijn.be/stops/401582", "https://data.delijn.be/stops/401904"], ["https://data.delijn.be/stops/303320", "https://data.delijn.be/stops/307294"], ["https://data.delijn.be/stops/305243", "https://data.delijn.be/stops/308642"], ["https://data.delijn.be/stops/503819", "https://data.delijn.be/stops/503821"], ["https://data.delijn.be/stops/400054", "https://data.delijn.be/stops/400055"], ["https://data.delijn.be/stops/102489", "https://data.delijn.be/stops/400349"], ["https://data.delijn.be/stops/508387", "https://data.delijn.be/stops/508430"], ["https://data.delijn.be/stops/503420", "https://data.delijn.be/stops/508212"], ["https://data.delijn.be/stops/401492", "https://data.delijn.be/stops/401493"], ["https://data.delijn.be/stops/108053", "https://data.delijn.be/stops/307903"], ["https://data.delijn.be/stops/505378", "https://data.delijn.be/stops/508536"], ["https://data.delijn.be/stops/200388", "https://data.delijn.be/stops/209240"], ["https://data.delijn.be/stops/304719", "https://data.delijn.be/stops/304720"], ["https://data.delijn.be/stops/400527", "https://data.delijn.be/stops/405919"], ["https://data.delijn.be/stops/103821", "https://data.delijn.be/stops/104260"], ["https://data.delijn.be/stops/203173", "https://data.delijn.be/stops/203174"], ["https://data.delijn.be/stops/106958", "https://data.delijn.be/stops/106959"], ["https://data.delijn.be/stops/407230", "https://data.delijn.be/stops/408585"], ["https://data.delijn.be/stops/308464", "https://data.delijn.be/stops/308690"], ["https://data.delijn.be/stops/201157", "https://data.delijn.be/stops/201411"], ["https://data.delijn.be/stops/203400", "https://data.delijn.be/stops/203401"], ["https://data.delijn.be/stops/401966", "https://data.delijn.be/stops/409317"], ["https://data.delijn.be/stops/200819", "https://data.delijn.be/stops/200854"], ["https://data.delijn.be/stops/105044", "https://data.delijn.be/stops/105046"], ["https://data.delijn.be/stops/402566", "https://data.delijn.be/stops/402570"], ["https://data.delijn.be/stops/502009", "https://data.delijn.be/stops/507741"], ["https://data.delijn.be/stops/405861", "https://data.delijn.be/stops/409732"], ["https://data.delijn.be/stops/101183", "https://data.delijn.be/stops/205646"], ["https://data.delijn.be/stops/207773", "https://data.delijn.be/stops/208188"], ["https://data.delijn.be/stops/102178", "https://data.delijn.be/stops/102909"], ["https://data.delijn.be/stops/501490", "https://data.delijn.be/stops/506038"], ["https://data.delijn.be/stops/205152", "https://data.delijn.be/stops/205153"], ["https://data.delijn.be/stops/406072", "https://data.delijn.be/stops/407489"], ["https://data.delijn.be/stops/403309", "https://data.delijn.be/stops/410164"], ["https://data.delijn.be/stops/301669", "https://data.delijn.be/stops/304180"], ["https://data.delijn.be/stops/206461", "https://data.delijn.be/stops/207459"], ["https://data.delijn.be/stops/106263", "https://data.delijn.be/stops/106339"], ["https://data.delijn.be/stops/404393", "https://data.delijn.be/stops/408796"], ["https://data.delijn.be/stops/201382", "https://data.delijn.be/stops/203002"], ["https://data.delijn.be/stops/303384", "https://data.delijn.be/stops/303672"], ["https://data.delijn.be/stops/109667", "https://data.delijn.be/stops/401931"], ["https://data.delijn.be/stops/301888", "https://data.delijn.be/stops/301890"], ["https://data.delijn.be/stops/105707", "https://data.delijn.be/stops/105714"], ["https://data.delijn.be/stops/206673", "https://data.delijn.be/stops/208011"], ["https://data.delijn.be/stops/406402", "https://data.delijn.be/stops/406403"], ["https://data.delijn.be/stops/209688", "https://data.delijn.be/stops/209689"], ["https://data.delijn.be/stops/105304", "https://data.delijn.be/stops/105363"], ["https://data.delijn.be/stops/400896", "https://data.delijn.be/stops/400897"], ["https://data.delijn.be/stops/202038", "https://data.delijn.be/stops/203038"], ["https://data.delijn.be/stops/202503", "https://data.delijn.be/stops/203503"], ["https://data.delijn.be/stops/404307", "https://data.delijn.be/stops/404313"], ["https://data.delijn.be/stops/201726", "https://data.delijn.be/stops/202978"], ["https://data.delijn.be/stops/407861", "https://data.delijn.be/stops/305683"], ["https://data.delijn.be/stops/208634", "https://data.delijn.be/stops/209510"], ["https://data.delijn.be/stops/102989", "https://data.delijn.be/stops/103141"], ["https://data.delijn.be/stops/404062", "https://data.delijn.be/stops/405136"], ["https://data.delijn.be/stops/202739", "https://data.delijn.be/stops/203739"], ["https://data.delijn.be/stops/202218", "https://data.delijn.be/stops/203217"], ["https://data.delijn.be/stops/303624", "https://data.delijn.be/stops/306828"], ["https://data.delijn.be/stops/404407", "https://data.delijn.be/stops/404449"], ["https://data.delijn.be/stops/301473", "https://data.delijn.be/stops/301501"], ["https://data.delijn.be/stops/404354", "https://data.delijn.be/stops/404366"], ["https://data.delijn.be/stops/107075", "https://data.delijn.be/stops/107079"], ["https://data.delijn.be/stops/109695", "https://data.delijn.be/stops/109697"], ["https://data.delijn.be/stops/503846", "https://data.delijn.be/stops/508846"], ["https://data.delijn.be/stops/508894", "https://data.delijn.be/stops/509942"], ["https://data.delijn.be/stops/406320", "https://data.delijn.be/stops/406410"], ["https://data.delijn.be/stops/302961", "https://data.delijn.be/stops/306299"], ["https://data.delijn.be/stops/407979", "https://data.delijn.be/stops/408340"], ["https://data.delijn.be/stops/501609", "https://data.delijn.be/stops/506606"], ["https://data.delijn.be/stops/400817", "https://data.delijn.be/stops/403582"], ["https://data.delijn.be/stops/204432", "https://data.delijn.be/stops/205431"], ["https://data.delijn.be/stops/101660", "https://data.delijn.be/stops/107807"], ["https://data.delijn.be/stops/400746", "https://data.delijn.be/stops/407659"], ["https://data.delijn.be/stops/204182", "https://data.delijn.be/stops/205182"], ["https://data.delijn.be/stops/406172", "https://data.delijn.be/stops/406452"], ["https://data.delijn.be/stops/305264", "https://data.delijn.be/stops/305271"], ["https://data.delijn.be/stops/101419", "https://data.delijn.be/stops/106958"], ["https://data.delijn.be/stops/103558", "https://data.delijn.be/stops/109395"], ["https://data.delijn.be/stops/404457", "https://data.delijn.be/stops/404465"], ["https://data.delijn.be/stops/208294", "https://data.delijn.be/stops/209725"], ["https://data.delijn.be/stops/502029", "https://data.delijn.be/stops/502058"], ["https://data.delijn.be/stops/405246", "https://data.delijn.be/stops/405247"], ["https://data.delijn.be/stops/502535", "https://data.delijn.be/stops/507535"], ["https://data.delijn.be/stops/208536", "https://data.delijn.be/stops/209085"], ["https://data.delijn.be/stops/502475", "https://data.delijn.be/stops/508326"], ["https://data.delijn.be/stops/204685", "https://data.delijn.be/stops/204696"], ["https://data.delijn.be/stops/104053", "https://data.delijn.be/stops/108102"], ["https://data.delijn.be/stops/503047", "https://data.delijn.be/stops/508624"], ["https://data.delijn.be/stops/406932", "https://data.delijn.be/stops/406950"], ["https://data.delijn.be/stops/504545", "https://data.delijn.be/stops/504548"], ["https://data.delijn.be/stops/501501", "https://data.delijn.be/stops/506501"], ["https://data.delijn.be/stops/500008", "https://data.delijn.be/stops/502112"], ["https://data.delijn.be/stops/206365", "https://data.delijn.be/stops/207333"], ["https://data.delijn.be/stops/205177", "https://data.delijn.be/stops/205215"], ["https://data.delijn.be/stops/204551", "https://data.delijn.be/stops/205761"], ["https://data.delijn.be/stops/208524", "https://data.delijn.be/stops/209081"], ["https://data.delijn.be/stops/300640", "https://data.delijn.be/stops/305813"], ["https://data.delijn.be/stops/400568", "https://data.delijn.be/stops/403186"], ["https://data.delijn.be/stops/307132", "https://data.delijn.be/stops/308446"], ["https://data.delijn.be/stops/303197", "https://data.delijn.be/stops/303212"], ["https://data.delijn.be/stops/501004", "https://data.delijn.be/stops/506505"], ["https://data.delijn.be/stops/304342", "https://data.delijn.be/stops/304348"], ["https://data.delijn.be/stops/408280", "https://data.delijn.be/stops/408403"], ["https://data.delijn.be/stops/200735", "https://data.delijn.be/stops/202572"], ["https://data.delijn.be/stops/402986", "https://data.delijn.be/stops/402991"], ["https://data.delijn.be/stops/505351", "https://data.delijn.be/stops/505417"], ["https://data.delijn.be/stops/105494", "https://data.delijn.be/stops/105504"], ["https://data.delijn.be/stops/108300", "https://data.delijn.be/stops/108485"], ["https://data.delijn.be/stops/300316", "https://data.delijn.be/stops/300623"], ["https://data.delijn.be/stops/407066", "https://data.delijn.be/stops/407067"], ["https://data.delijn.be/stops/302413", "https://data.delijn.be/stops/302428"], ["https://data.delijn.be/stops/103088", "https://data.delijn.be/stops/107517"], ["https://data.delijn.be/stops/504480", "https://data.delijn.be/stops/505342"], ["https://data.delijn.be/stops/403601", "https://data.delijn.be/stops/407525"], ["https://data.delijn.be/stops/105526", "https://data.delijn.be/stops/105527"], ["https://data.delijn.be/stops/204139", "https://data.delijn.be/stops/207894"], ["https://data.delijn.be/stops/200934", "https://data.delijn.be/stops/203988"], ["https://data.delijn.be/stops/305919", "https://data.delijn.be/stops/305920"], ["https://data.delijn.be/stops/204734", "https://data.delijn.be/stops/205735"], ["https://data.delijn.be/stops/504169", "https://data.delijn.be/stops/509151"], ["https://data.delijn.be/stops/105058", "https://data.delijn.be/stops/105825"], ["https://data.delijn.be/stops/403332", "https://data.delijn.be/stops/403340"], ["https://data.delijn.be/stops/503298", "https://data.delijn.be/stops/505990"], ["https://data.delijn.be/stops/303068", "https://data.delijn.be/stops/303156"], ["https://data.delijn.be/stops/405187", "https://data.delijn.be/stops/405248"], ["https://data.delijn.be/stops/102194", "https://data.delijn.be/stops/104306"], ["https://data.delijn.be/stops/202711", "https://data.delijn.be/stops/203710"], ["https://data.delijn.be/stops/405941", "https://data.delijn.be/stops/405945"], ["https://data.delijn.be/stops/405862", "https://data.delijn.be/stops/405863"], ["https://data.delijn.be/stops/502260", "https://data.delijn.be/stops/507260"], ["https://data.delijn.be/stops/204511", "https://data.delijn.be/stops/205499"], ["https://data.delijn.be/stops/200795", "https://data.delijn.be/stops/210044"], ["https://data.delijn.be/stops/104949", "https://data.delijn.be/stops/406833"], ["https://data.delijn.be/stops/105781", "https://data.delijn.be/stops/105782"], ["https://data.delijn.be/stops/404564", "https://data.delijn.be/stops/410155"], ["https://data.delijn.be/stops/502189", "https://data.delijn.be/stops/502713"], ["https://data.delijn.be/stops/305775", "https://data.delijn.be/stops/305796"], ["https://data.delijn.be/stops/206048", "https://data.delijn.be/stops/207050"], ["https://data.delijn.be/stops/301836", "https://data.delijn.be/stops/301837"], ["https://data.delijn.be/stops/505175", "https://data.delijn.be/stops/509644"], ["https://data.delijn.be/stops/501487", "https://data.delijn.be/stops/501673"], ["https://data.delijn.be/stops/206872", "https://data.delijn.be/stops/208403"], ["https://data.delijn.be/stops/300302", "https://data.delijn.be/stops/307475"], ["https://data.delijn.be/stops/407818", "https://data.delijn.be/stops/407923"], ["https://data.delijn.be/stops/206795", "https://data.delijn.be/stops/209048"], ["https://data.delijn.be/stops/200436", "https://data.delijn.be/stops/201307"], ["https://data.delijn.be/stops/204251", "https://data.delijn.be/stops/204732"], ["https://data.delijn.be/stops/502148", "https://data.delijn.be/stops/507103"], ["https://data.delijn.be/stops/306902", "https://data.delijn.be/stops/306904"], ["https://data.delijn.be/stops/502440", "https://data.delijn.be/stops/507417"], ["https://data.delijn.be/stops/503225", "https://data.delijn.be/stops/503227"], ["https://data.delijn.be/stops/406284", "https://data.delijn.be/stops/406285"], ["https://data.delijn.be/stops/502317", "https://data.delijn.be/stops/507326"], ["https://data.delijn.be/stops/206201", "https://data.delijn.be/stops/207809"], ["https://data.delijn.be/stops/208428", "https://data.delijn.be/stops/208801"], ["https://data.delijn.be/stops/200492", "https://data.delijn.be/stops/201491"], ["https://data.delijn.be/stops/201257", "https://data.delijn.be/stops/203450"], ["https://data.delijn.be/stops/405190", "https://data.delijn.be/stops/406411"], ["https://data.delijn.be/stops/501204", "https://data.delijn.be/stops/501289"], ["https://data.delijn.be/stops/502110", "https://data.delijn.be/stops/507135"], ["https://data.delijn.be/stops/305112", "https://data.delijn.be/stops/306881"], ["https://data.delijn.be/stops/107366", "https://data.delijn.be/stops/107367"], ["https://data.delijn.be/stops/101719", "https://data.delijn.be/stops/109566"], ["https://data.delijn.be/stops/103097", "https://data.delijn.be/stops/103318"], ["https://data.delijn.be/stops/401949", "https://data.delijn.be/stops/403598"], ["https://data.delijn.be/stops/103233", "https://data.delijn.be/stops/107136"], ["https://data.delijn.be/stops/501769", "https://data.delijn.be/stops/507704"], ["https://data.delijn.be/stops/401043", "https://data.delijn.be/stops/409141"], ["https://data.delijn.be/stops/202480", "https://data.delijn.be/stops/203954"], ["https://data.delijn.be/stops/402379", "https://data.delijn.be/stops/402396"], ["https://data.delijn.be/stops/307404", "https://data.delijn.be/stops/307411"], ["https://data.delijn.be/stops/302522", "https://data.delijn.be/stops/307870"], ["https://data.delijn.be/stops/408111", "https://data.delijn.be/stops/408161"], ["https://data.delijn.be/stops/305383", "https://data.delijn.be/stops/305387"], ["https://data.delijn.be/stops/301827", "https://data.delijn.be/stops/301834"], ["https://data.delijn.be/stops/208148", "https://data.delijn.be/stops/209148"], ["https://data.delijn.be/stops/300802", "https://data.delijn.be/stops/302406"], ["https://data.delijn.be/stops/403320", "https://data.delijn.be/stops/403326"], ["https://data.delijn.be/stops/504351", "https://data.delijn.be/stops/509351"], ["https://data.delijn.be/stops/208533", "https://data.delijn.be/stops/209527"], ["https://data.delijn.be/stops/304736", "https://data.delijn.be/stops/304758"], ["https://data.delijn.be/stops/201618", "https://data.delijn.be/stops/209737"], ["https://data.delijn.be/stops/208691", "https://data.delijn.be/stops/208705"], ["https://data.delijn.be/stops/505806", "https://data.delijn.be/stops/508226"], ["https://data.delijn.be/stops/307148", "https://data.delijn.be/stops/307152"], ["https://data.delijn.be/stops/201205", "https://data.delijn.be/stops/201615"], ["https://data.delijn.be/stops/109212", "https://data.delijn.be/stops/109712"], ["https://data.delijn.be/stops/504359", "https://data.delijn.be/stops/504845"], ["https://data.delijn.be/stops/403458", "https://data.delijn.be/stops/403459"], ["https://data.delijn.be/stops/204160", "https://data.delijn.be/stops/204580"], ["https://data.delijn.be/stops/302466", "https://data.delijn.be/stops/302468"], ["https://data.delijn.be/stops/200154", "https://data.delijn.be/stops/202359"], ["https://data.delijn.be/stops/306312", "https://data.delijn.be/stops/307003"], ["https://data.delijn.be/stops/101886", "https://data.delijn.be/stops/107476"], ["https://data.delijn.be/stops/503576", "https://data.delijn.be/stops/505196"], ["https://data.delijn.be/stops/204383", "https://data.delijn.be/stops/205384"], ["https://data.delijn.be/stops/108633", "https://data.delijn.be/stops/109668"], ["https://data.delijn.be/stops/204676", "https://data.delijn.be/stops/205677"], ["https://data.delijn.be/stops/409104", "https://data.delijn.be/stops/409105"], ["https://data.delijn.be/stops/106504", "https://data.delijn.be/stops/106505"], ["https://data.delijn.be/stops/404249", "https://data.delijn.be/stops/406816"], ["https://data.delijn.be/stops/401628", "https://data.delijn.be/stops/308246"], ["https://data.delijn.be/stops/208289", "https://data.delijn.be/stops/209289"], ["https://data.delijn.be/stops/102375", "https://data.delijn.be/stops/104627"], ["https://data.delijn.be/stops/303252", "https://data.delijn.be/stops/303265"], ["https://data.delijn.be/stops/401924", "https://data.delijn.be/stops/405841"], ["https://data.delijn.be/stops/210107", "https://data.delijn.be/stops/211107"], ["https://data.delijn.be/stops/500053", "https://data.delijn.be/stops/502818"], ["https://data.delijn.be/stops/208420", "https://data.delijn.be/stops/209389"], ["https://data.delijn.be/stops/501453", "https://data.delijn.be/stops/506453"], ["https://data.delijn.be/stops/106631", "https://data.delijn.be/stops/106675"], ["https://data.delijn.be/stops/504189", "https://data.delijn.be/stops/509159"], ["https://data.delijn.be/stops/407364", "https://data.delijn.be/stops/407442"], ["https://data.delijn.be/stops/300335", "https://data.delijn.be/stops/304453"], ["https://data.delijn.be/stops/201677", "https://data.delijn.be/stops/203772"], ["https://data.delijn.be/stops/303254", "https://data.delijn.be/stops/303344"], ["https://data.delijn.be/stops/305648", "https://data.delijn.be/stops/305655"], ["https://data.delijn.be/stops/210126", "https://data.delijn.be/stops/211126"], ["https://data.delijn.be/stops/304993", "https://data.delijn.be/stops/305026"], ["https://data.delijn.be/stops/301730", "https://data.delijn.be/stops/301785"], ["https://data.delijn.be/stops/407860", "https://data.delijn.be/stops/407893"], ["https://data.delijn.be/stops/202128", "https://data.delijn.be/stops/202582"], ["https://data.delijn.be/stops/302562", "https://data.delijn.be/stops/302771"], ["https://data.delijn.be/stops/206643", "https://data.delijn.be/stops/207644"], ["https://data.delijn.be/stops/103927", "https://data.delijn.be/stops/107246"], ["https://data.delijn.be/stops/408088", "https://data.delijn.be/stops/408133"], ["https://data.delijn.be/stops/200277", "https://data.delijn.be/stops/201650"], ["https://data.delijn.be/stops/109088", "https://data.delijn.be/stops/109092"], ["https://data.delijn.be/stops/107784", "https://data.delijn.be/stops/207334"], ["https://data.delijn.be/stops/200175", "https://data.delijn.be/stops/201175"], ["https://data.delijn.be/stops/304104", "https://data.delijn.be/stops/304165"], ["https://data.delijn.be/stops/301991", "https://data.delijn.be/stops/307169"], ["https://data.delijn.be/stops/301217", "https://data.delijn.be/stops/301218"], ["https://data.delijn.be/stops/107459", "https://data.delijn.be/stops/107462"], ["https://data.delijn.be/stops/200131", "https://data.delijn.be/stops/200492"], ["https://data.delijn.be/stops/105394", "https://data.delijn.be/stops/105396"], ["https://data.delijn.be/stops/101007", "https://data.delijn.be/stops/107670"], ["https://data.delijn.be/stops/306967", "https://data.delijn.be/stops/308905"], ["https://data.delijn.be/stops/504273", "https://data.delijn.be/stops/509275"], ["https://data.delijn.be/stops/305831", "https://data.delijn.be/stops/305834"], ["https://data.delijn.be/stops/300274", "https://data.delijn.be/stops/306661"], ["https://data.delijn.be/stops/409571", "https://data.delijn.be/stops/409574"], ["https://data.delijn.be/stops/109186", "https://data.delijn.be/stops/109274"], ["https://data.delijn.be/stops/200135", "https://data.delijn.be/stops/200409"], ["https://data.delijn.be/stops/202461", "https://data.delijn.be/stops/202462"], ["https://data.delijn.be/stops/509636", "https://data.delijn.be/stops/509638"], ["https://data.delijn.be/stops/305685", "https://data.delijn.be/stops/305723"], ["https://data.delijn.be/stops/102541", "https://data.delijn.be/stops/405089"], ["https://data.delijn.be/stops/406176", "https://data.delijn.be/stops/406198"], ["https://data.delijn.be/stops/304689", "https://data.delijn.be/stops/309670"], ["https://data.delijn.be/stops/503801", "https://data.delijn.be/stops/505639"], ["https://data.delijn.be/stops/206156", "https://data.delijn.be/stops/206639"], ["https://data.delijn.be/stops/300476", "https://data.delijn.be/stops/306288"], ["https://data.delijn.be/stops/406995", "https://data.delijn.be/stops/409735"], ["https://data.delijn.be/stops/304467", "https://data.delijn.be/stops/304469"], ["https://data.delijn.be/stops/204245", "https://data.delijn.be/stops/204248"], ["https://data.delijn.be/stops/301476", "https://data.delijn.be/stops/301482"], ["https://data.delijn.be/stops/302246", "https://data.delijn.be/stops/303998"], ["https://data.delijn.be/stops/203311", "https://data.delijn.be/stops/203312"], ["https://data.delijn.be/stops/208565", "https://data.delijn.be/stops/208618"], ["https://data.delijn.be/stops/204034", "https://data.delijn.be/stops/204035"], ["https://data.delijn.be/stops/405184", "https://data.delijn.be/stops/405205"], ["https://data.delijn.be/stops/106245", "https://data.delijn.be/stops/106247"], ["https://data.delijn.be/stops/101279", "https://data.delijn.be/stops/205489"], ["https://data.delijn.be/stops/105643", "https://data.delijn.be/stops/105644"], ["https://data.delijn.be/stops/102395", "https://data.delijn.be/stops/105425"], ["https://data.delijn.be/stops/102187", "https://data.delijn.be/stops/104348"], ["https://data.delijn.be/stops/107319", "https://data.delijn.be/stops/108818"], ["https://data.delijn.be/stops/402049", "https://data.delijn.be/stops/402090"], ["https://data.delijn.be/stops/204565", "https://data.delijn.be/stops/205566"], ["https://data.delijn.be/stops/302228", "https://data.delijn.be/stops/302229"], ["https://data.delijn.be/stops/203699", "https://data.delijn.be/stops/203700"], ["https://data.delijn.be/stops/106423", "https://data.delijn.be/stops/106560"], ["https://data.delijn.be/stops/302752", "https://data.delijn.be/stops/302772"], ["https://data.delijn.be/stops/407202", "https://data.delijn.be/stops/407203"], ["https://data.delijn.be/stops/103761", "https://data.delijn.be/stops/105780"], ["https://data.delijn.be/stops/501418", "https://data.delijn.be/stops/501419"], ["https://data.delijn.be/stops/108307", "https://data.delijn.be/stops/108308"], ["https://data.delijn.be/stops/510030", "https://data.delijn.be/stops/590006"], ["https://data.delijn.be/stops/302463", "https://data.delijn.be/stops/302471"], ["https://data.delijn.be/stops/101928", "https://data.delijn.be/stops/108204"], ["https://data.delijn.be/stops/208798", "https://data.delijn.be/stops/208799"], ["https://data.delijn.be/stops/105419", "https://data.delijn.be/stops/109979"], ["https://data.delijn.be/stops/503783", "https://data.delijn.be/stops/508784"], ["https://data.delijn.be/stops/406522", "https://data.delijn.be/stops/406523"], ["https://data.delijn.be/stops/106142", "https://data.delijn.be/stops/106143"], ["https://data.delijn.be/stops/503642", "https://data.delijn.be/stops/508642"], ["https://data.delijn.be/stops/201912", "https://data.delijn.be/stops/204063"], ["https://data.delijn.be/stops/304410", "https://data.delijn.be/stops/304414"], ["https://data.delijn.be/stops/104003", "https://data.delijn.be/stops/107835"], ["https://data.delijn.be/stops/504089", "https://data.delijn.be/stops/509089"], ["https://data.delijn.be/stops/405088", "https://data.delijn.be/stops/406547"], ["https://data.delijn.be/stops/203161", "https://data.delijn.be/stops/203500"], ["https://data.delijn.be/stops/504534", "https://data.delijn.be/stops/509534"], ["https://data.delijn.be/stops/206880", "https://data.delijn.be/stops/207308"], ["https://data.delijn.be/stops/305160", "https://data.delijn.be/stops/305197"], ["https://data.delijn.be/stops/502212", "https://data.delijn.be/stops/507213"], ["https://data.delijn.be/stops/508346", "https://data.delijn.be/stops/508356"], ["https://data.delijn.be/stops/502647", "https://data.delijn.be/stops/509944"], ["https://data.delijn.be/stops/109317", "https://data.delijn.be/stops/109866"], ["https://data.delijn.be/stops/405517", "https://data.delijn.be/stops/407310"], ["https://data.delijn.be/stops/401394", "https://data.delijn.be/stops/401452"], ["https://data.delijn.be/stops/510008", "https://data.delijn.be/stops/510009"], ["https://data.delijn.be/stops/308179", "https://data.delijn.be/stops/308180"], ["https://data.delijn.be/stops/204207", "https://data.delijn.be/stops/205207"], ["https://data.delijn.be/stops/107970", "https://data.delijn.be/stops/107973"], ["https://data.delijn.be/stops/506635", "https://data.delijn.be/stops/506774"], ["https://data.delijn.be/stops/400704", "https://data.delijn.be/stops/400714"], ["https://data.delijn.be/stops/203455", "https://data.delijn.be/stops/203456"], ["https://data.delijn.be/stops/202903", "https://data.delijn.be/stops/202904"], ["https://data.delijn.be/stops/305539", "https://data.delijn.be/stops/307187"], ["https://data.delijn.be/stops/503611", "https://data.delijn.be/stops/505196"], ["https://data.delijn.be/stops/300887", "https://data.delijn.be/stops/308856"], ["https://data.delijn.be/stops/303681", "https://data.delijn.be/stops/308640"], ["https://data.delijn.be/stops/504332", "https://data.delijn.be/stops/509338"], ["https://data.delijn.be/stops/302637", "https://data.delijn.be/stops/302638"], ["https://data.delijn.be/stops/302553", "https://data.delijn.be/stops/302555"], ["https://data.delijn.be/stops/304318", "https://data.delijn.be/stops/304324"], ["https://data.delijn.be/stops/400949", "https://data.delijn.be/stops/400975"], ["https://data.delijn.be/stops/301948", "https://data.delijn.be/stops/307080"], ["https://data.delijn.be/stops/301696", "https://data.delijn.be/stops/301702"], ["https://data.delijn.be/stops/106428", "https://data.delijn.be/stops/106431"], ["https://data.delijn.be/stops/208742", "https://data.delijn.be/stops/208743"], ["https://data.delijn.be/stops/302715", "https://data.delijn.be/stops/302776"], ["https://data.delijn.be/stops/204190", "https://data.delijn.be/stops/205189"], ["https://data.delijn.be/stops/400269", "https://data.delijn.be/stops/400954"], ["https://data.delijn.be/stops/503168", "https://data.delijn.be/stops/508264"], ["https://data.delijn.be/stops/504103", "https://data.delijn.be/stops/504109"], ["https://data.delijn.be/stops/408517", "https://data.delijn.be/stops/408523"], ["https://data.delijn.be/stops/302730", "https://data.delijn.be/stops/305634"], ["https://data.delijn.be/stops/101406", "https://data.delijn.be/stops/106523"], ["https://data.delijn.be/stops/303010", "https://data.delijn.be/stops/306102"], ["https://data.delijn.be/stops/206953", "https://data.delijn.be/stops/300173"], ["https://data.delijn.be/stops/208590", "https://data.delijn.be/stops/307533"], ["https://data.delijn.be/stops/200187", "https://data.delijn.be/stops/200193"], ["https://data.delijn.be/stops/407712", "https://data.delijn.be/stops/409775"], ["https://data.delijn.be/stops/501264", "https://data.delijn.be/stops/506286"], ["https://data.delijn.be/stops/505133", "https://data.delijn.be/stops/505137"], ["https://data.delijn.be/stops/501330", "https://data.delijn.be/stops/506330"], ["https://data.delijn.be/stops/203767", "https://data.delijn.be/stops/203778"], ["https://data.delijn.be/stops/506435", "https://data.delijn.be/stops/506456"], ["https://data.delijn.be/stops/502574", "https://data.delijn.be/stops/505704"], ["https://data.delijn.be/stops/505584", "https://data.delijn.be/stops/505777"], ["https://data.delijn.be/stops/402344", "https://data.delijn.be/stops/402414"], ["https://data.delijn.be/stops/304944", "https://data.delijn.be/stops/308020"], ["https://data.delijn.be/stops/101836", "https://data.delijn.be/stops/108203"], ["https://data.delijn.be/stops/303993", "https://data.delijn.be/stops/304739"], ["https://data.delijn.be/stops/409252", "https://data.delijn.be/stops/409253"], ["https://data.delijn.be/stops/304010", "https://data.delijn.be/stops/304011"], ["https://data.delijn.be/stops/405296", "https://data.delijn.be/stops/410165"], ["https://data.delijn.be/stops/102961", "https://data.delijn.be/stops/106592"], ["https://data.delijn.be/stops/109527", "https://data.delijn.be/stops/109529"], ["https://data.delijn.be/stops/207343", "https://data.delijn.be/stops/207366"], ["https://data.delijn.be/stops/503508", "https://data.delijn.be/stops/508506"], ["https://data.delijn.be/stops/106018", "https://data.delijn.be/stops/107437"], ["https://data.delijn.be/stops/109318", "https://data.delijn.be/stops/109321"], ["https://data.delijn.be/stops/401793", "https://data.delijn.be/stops/401814"], ["https://data.delijn.be/stops/305081", "https://data.delijn.be/stops/307944"], ["https://data.delijn.be/stops/105678", "https://data.delijn.be/stops/106049"], ["https://data.delijn.be/stops/302831", "https://data.delijn.be/stops/302838"], ["https://data.delijn.be/stops/406542", "https://data.delijn.be/stops/407444"], ["https://data.delijn.be/stops/206501", "https://data.delijn.be/stops/207501"], ["https://data.delijn.be/stops/202397", "https://data.delijn.be/stops/203397"], ["https://data.delijn.be/stops/204147", "https://data.delijn.be/stops/205137"], ["https://data.delijn.be/stops/202901", "https://data.delijn.be/stops/219953"], ["https://data.delijn.be/stops/101411", "https://data.delijn.be/stops/106922"], ["https://data.delijn.be/stops/106167", "https://data.delijn.be/stops/106171"], ["https://data.delijn.be/stops/101200", "https://data.delijn.be/stops/101565"], ["https://data.delijn.be/stops/503050", "https://data.delijn.be/stops/508052"], ["https://data.delijn.be/stops/302033", "https://data.delijn.be/stops/304632"], ["https://data.delijn.be/stops/408062", "https://data.delijn.be/stops/408063"], ["https://data.delijn.be/stops/502422", "https://data.delijn.be/stops/502440"], ["https://data.delijn.be/stops/502708", "https://data.delijn.be/stops/507708"], ["https://data.delijn.be/stops/104655", "https://data.delijn.be/stops/104660"], ["https://data.delijn.be/stops/305284", "https://data.delijn.be/stops/305286"], ["https://data.delijn.be/stops/405553", "https://data.delijn.be/stops/410053"], ["https://data.delijn.be/stops/504701", "https://data.delijn.be/stops/509549"], ["https://data.delijn.be/stops/502368", "https://data.delijn.be/stops/507368"], ["https://data.delijn.be/stops/306664", "https://data.delijn.be/stops/306682"], ["https://data.delijn.be/stops/208773", "https://data.delijn.be/stops/209316"], ["https://data.delijn.be/stops/504280", "https://data.delijn.be/stops/509280"], ["https://data.delijn.be/stops/206543", "https://data.delijn.be/stops/206544"], ["https://data.delijn.be/stops/208195", "https://data.delijn.be/stops/208520"], ["https://data.delijn.be/stops/204068", "https://data.delijn.be/stops/205196"], ["https://data.delijn.be/stops/106203", "https://data.delijn.be/stops/107459"], ["https://data.delijn.be/stops/206771", "https://data.delijn.be/stops/208614"], ["https://data.delijn.be/stops/400429", "https://data.delijn.be/stops/406473"], ["https://data.delijn.be/stops/504063", "https://data.delijn.be/stops/504068"], ["https://data.delijn.be/stops/503043", "https://data.delijn.be/stops/503045"], ["https://data.delijn.be/stops/301840", "https://data.delijn.be/stops/308601"], ["https://data.delijn.be/stops/301301", "https://data.delijn.be/stops/308673"], ["https://data.delijn.be/stops/203888", "https://data.delijn.be/stops/206426"], ["https://data.delijn.be/stops/204105", "https://data.delijn.be/stops/205015"], ["https://data.delijn.be/stops/302504", "https://data.delijn.be/stops/302517"], ["https://data.delijn.be/stops/503744", "https://data.delijn.be/stops/508744"], ["https://data.delijn.be/stops/101086", "https://data.delijn.be/stops/105981"], ["https://data.delijn.be/stops/300856", "https://data.delijn.be/stops/300859"], ["https://data.delijn.be/stops/101643", "https://data.delijn.be/stops/109055"], ["https://data.delijn.be/stops/405952", "https://data.delijn.be/stops/405953"], ["https://data.delijn.be/stops/108706", "https://data.delijn.be/stops/108707"], ["https://data.delijn.be/stops/504002", "https://data.delijn.be/stops/508494"], ["https://data.delijn.be/stops/206543", "https://data.delijn.be/stops/209749"], ["https://data.delijn.be/stops/208073", "https://data.delijn.be/stops/209074"], ["https://data.delijn.be/stops/505689", "https://data.delijn.be/stops/507062"], ["https://data.delijn.be/stops/109268", "https://data.delijn.be/stops/109271"], ["https://data.delijn.be/stops/201639", "https://data.delijn.be/stops/203942"], ["https://data.delijn.be/stops/101175", "https://data.delijn.be/stops/102972"], ["https://data.delijn.be/stops/107035", "https://data.delijn.be/stops/107845"], ["https://data.delijn.be/stops/407098", "https://data.delijn.be/stops/407261"], ["https://data.delijn.be/stops/202534", "https://data.delijn.be/stops/205173"], ["https://data.delijn.be/stops/301093", "https://data.delijn.be/stops/304259"], ["https://data.delijn.be/stops/300087", "https://data.delijn.be/stops/307098"], ["https://data.delijn.be/stops/302074", "https://data.delijn.be/stops/302098"], ["https://data.delijn.be/stops/101551", "https://data.delijn.be/stops/107919"], ["https://data.delijn.be/stops/201197", "https://data.delijn.be/stops/201720"], ["https://data.delijn.be/stops/202277", "https://data.delijn.be/stops/203278"], ["https://data.delijn.be/stops/504005", "https://data.delijn.be/stops/509009"], ["https://data.delijn.be/stops/504294", "https://data.delijn.be/stops/504307"], ["https://data.delijn.be/stops/500925", "https://data.delijn.be/stops/503179"], ["https://data.delijn.be/stops/109065", "https://data.delijn.be/stops/307363"], ["https://data.delijn.be/stops/106605", "https://data.delijn.be/stops/106606"], ["https://data.delijn.be/stops/204679", "https://data.delijn.be/stops/205679"], ["https://data.delijn.be/stops/503358", "https://data.delijn.be/stops/503669"], ["https://data.delijn.be/stops/202767", "https://data.delijn.be/stops/202768"], ["https://data.delijn.be/stops/101592", "https://data.delijn.be/stops/101730"], ["https://data.delijn.be/stops/304457", "https://data.delijn.be/stops/306409"], ["https://data.delijn.be/stops/105106", "https://data.delijn.be/stops/109506"], ["https://data.delijn.be/stops/106492", "https://data.delijn.be/stops/106494"], ["https://data.delijn.be/stops/200894", "https://data.delijn.be/stops/202448"], ["https://data.delijn.be/stops/400549", "https://data.delijn.be/stops/400551"], ["https://data.delijn.be/stops/505103", "https://data.delijn.be/stops/509356"], ["https://data.delijn.be/stops/206139", "https://data.delijn.be/stops/207139"], ["https://data.delijn.be/stops/109176", "https://data.delijn.be/stops/109227"], ["https://data.delijn.be/stops/205712", "https://data.delijn.be/stops/205721"], ["https://data.delijn.be/stops/501013", "https://data.delijn.be/stops/506013"], ["https://data.delijn.be/stops/505708", "https://data.delijn.be/stops/509224"], ["https://data.delijn.be/stops/307381", "https://data.delijn.be/stops/308277"], ["https://data.delijn.be/stops/105861", "https://data.delijn.be/stops/105862"], ["https://data.delijn.be/stops/405839", "https://data.delijn.be/stops/409755"], ["https://data.delijn.be/stops/402571", "https://data.delijn.be/stops/408177"], ["https://data.delijn.be/stops/204615", "https://data.delijn.be/stops/204616"], ["https://data.delijn.be/stops/407686", "https://data.delijn.be/stops/407690"], ["https://data.delijn.be/stops/102965", "https://data.delijn.be/stops/104300"], ["https://data.delijn.be/stops/502534", "https://data.delijn.be/stops/505741"], ["https://data.delijn.be/stops/203282", "https://data.delijn.be/stops/205067"], ["https://data.delijn.be/stops/103326", "https://data.delijn.be/stops/105097"], ["https://data.delijn.be/stops/204706", "https://data.delijn.be/stops/205708"], ["https://data.delijn.be/stops/105712", "https://data.delijn.be/stops/106075"], ["https://data.delijn.be/stops/503321", "https://data.delijn.be/stops/508321"], ["https://data.delijn.be/stops/406420", "https://data.delijn.be/stops/407875"], ["https://data.delijn.be/stops/106696", "https://data.delijn.be/stops/106702"], ["https://data.delijn.be/stops/306141", "https://data.delijn.be/stops/306645"], ["https://data.delijn.be/stops/304439", "https://data.delijn.be/stops/304440"], ["https://data.delijn.be/stops/503768", "https://data.delijn.be/stops/503822"], ["https://data.delijn.be/stops/206865", "https://data.delijn.be/stops/208747"], ["https://data.delijn.be/stops/503651", "https://data.delijn.be/stops/504997"], ["https://data.delijn.be/stops/200400", "https://data.delijn.be/stops/201189"], ["https://data.delijn.be/stops/305612", "https://data.delijn.be/stops/305613"], ["https://data.delijn.be/stops/300112", "https://data.delijn.be/stops/306854"], ["https://data.delijn.be/stops/305460", "https://data.delijn.be/stops/307896"], ["https://data.delijn.be/stops/301067", "https://data.delijn.be/stops/301070"], ["https://data.delijn.be/stops/207786", "https://data.delijn.be/stops/209370"], ["https://data.delijn.be/stops/208539", "https://data.delijn.be/stops/209037"], ["https://data.delijn.be/stops/505325", "https://data.delijn.be/stops/505337"], ["https://data.delijn.be/stops/504113", "https://data.delijn.be/stops/504699"], ["https://data.delijn.be/stops/504024", "https://data.delijn.be/stops/504101"], ["https://data.delijn.be/stops/208221", "https://data.delijn.be/stops/209221"], ["https://data.delijn.be/stops/401048", "https://data.delijn.be/stops/406549"], ["https://data.delijn.be/stops/106915", "https://data.delijn.be/stops/107267"], ["https://data.delijn.be/stops/502918", "https://data.delijn.be/stops/507475"], ["https://data.delijn.be/stops/405902", "https://data.delijn.be/stops/405935"], ["https://data.delijn.be/stops/408549", "https://data.delijn.be/stops/410090"], ["https://data.delijn.be/stops/201494", "https://data.delijn.be/stops/203938"], ["https://data.delijn.be/stops/301355", "https://data.delijn.be/stops/304529"], ["https://data.delijn.be/stops/202489", "https://data.delijn.be/stops/203488"], ["https://data.delijn.be/stops/302812", "https://data.delijn.be/stops/305496"], ["https://data.delijn.be/stops/208364", "https://data.delijn.be/stops/209365"], ["https://data.delijn.be/stops/205167", "https://data.delijn.be/stops/205580"], ["https://data.delijn.be/stops/407840", "https://data.delijn.be/stops/407907"], ["https://data.delijn.be/stops/301745", "https://data.delijn.be/stops/305876"], ["https://data.delijn.be/stops/501458", "https://data.delijn.be/stops/506459"], ["https://data.delijn.be/stops/301547", "https://data.delijn.be/stops/301551"], ["https://data.delijn.be/stops/407891", "https://data.delijn.be/stops/408188"], ["https://data.delijn.be/stops/206603", "https://data.delijn.be/stops/207602"], ["https://data.delijn.be/stops/401320", "https://data.delijn.be/stops/406657"], ["https://data.delijn.be/stops/304097", "https://data.delijn.be/stops/305999"], ["https://data.delijn.be/stops/304723", "https://data.delijn.be/stops/305558"], ["https://data.delijn.be/stops/507669", "https://data.delijn.be/stops/507670"], ["https://data.delijn.be/stops/404617", "https://data.delijn.be/stops/409453"], ["https://data.delijn.be/stops/104869", "https://data.delijn.be/stops/107961"], ["https://data.delijn.be/stops/400602", "https://data.delijn.be/stops/400611"], ["https://data.delijn.be/stops/504832", "https://data.delijn.be/stops/509097"], ["https://data.delijn.be/stops/304023", "https://data.delijn.be/stops/304145"], ["https://data.delijn.be/stops/208630", "https://data.delijn.be/stops/208631"], ["https://data.delijn.be/stops/205145", "https://data.delijn.be/stops/207048"], ["https://data.delijn.be/stops/101508", "https://data.delijn.be/stops/101509"], ["https://data.delijn.be/stops/301597", "https://data.delijn.be/stops/301601"], ["https://data.delijn.be/stops/205239", "https://data.delijn.be/stops/206897"], ["https://data.delijn.be/stops/205048", "https://data.delijn.be/stops/205705"], ["https://data.delijn.be/stops/105137", "https://data.delijn.be/stops/105139"], ["https://data.delijn.be/stops/503896", "https://data.delijn.be/stops/505643"], ["https://data.delijn.be/stops/201420", "https://data.delijn.be/stops/203013"], ["https://data.delijn.be/stops/108366", "https://data.delijn.be/stops/304920"], ["https://data.delijn.be/stops/201081", "https://data.delijn.be/stops/211855"], ["https://data.delijn.be/stops/401431", "https://data.delijn.be/stops/402085"], ["https://data.delijn.be/stops/305119", "https://data.delijn.be/stops/305123"], ["https://data.delijn.be/stops/506080", "https://data.delijn.be/stops/506645"], ["https://data.delijn.be/stops/201689", "https://data.delijn.be/stops/201690"], ["https://data.delijn.be/stops/400081", "https://data.delijn.be/stops/403299"], ["https://data.delijn.be/stops/400470", "https://data.delijn.be/stops/400471"], ["https://data.delijn.be/stops/300157", "https://data.delijn.be/stops/300158"], ["https://data.delijn.be/stops/202212", "https://data.delijn.be/stops/202213"], ["https://data.delijn.be/stops/307721", "https://data.delijn.be/stops/307737"], ["https://data.delijn.be/stops/106770", "https://data.delijn.be/stops/106771"], ["https://data.delijn.be/stops/102733", "https://data.delijn.be/stops/103505"], ["https://data.delijn.be/stops/206129", "https://data.delijn.be/stops/206722"], ["https://data.delijn.be/stops/403756", "https://data.delijn.be/stops/403757"], ["https://data.delijn.be/stops/203897", "https://data.delijn.be/stops/211126"], ["https://data.delijn.be/stops/104860", "https://data.delijn.be/stops/105200"], ["https://data.delijn.be/stops/102202", "https://data.delijn.be/stops/105939"], ["https://data.delijn.be/stops/102780", "https://data.delijn.be/stops/104035"], ["https://data.delijn.be/stops/303318", "https://data.delijn.be/stops/303319"], ["https://data.delijn.be/stops/403052", "https://data.delijn.be/stops/403315"], ["https://data.delijn.be/stops/300387", "https://data.delijn.be/stops/307000"], ["https://data.delijn.be/stops/401216", "https://data.delijn.be/stops/401225"], ["https://data.delijn.be/stops/407733", "https://data.delijn.be/stops/409785"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/107031"], ["https://data.delijn.be/stops/501376", "https://data.delijn.be/stops/509203"], ["https://data.delijn.be/stops/206027", "https://data.delijn.be/stops/207206"], ["https://data.delijn.be/stops/505819", "https://data.delijn.be/stops/509267"], ["https://data.delijn.be/stops/503932", "https://data.delijn.be/stops/505920"], ["https://data.delijn.be/stops/103074", "https://data.delijn.be/stops/103076"], ["https://data.delijn.be/stops/403705", "https://data.delijn.be/stops/403731"], ["https://data.delijn.be/stops/203156", "https://data.delijn.be/stops/205068"], ["https://data.delijn.be/stops/403311", "https://data.delijn.be/stops/403463"], ["https://data.delijn.be/stops/106820", "https://data.delijn.be/stops/106822"], ["https://data.delijn.be/stops/509576", "https://data.delijn.be/stops/509577"], ["https://data.delijn.be/stops/203887", "https://data.delijn.be/stops/207938"], ["https://data.delijn.be/stops/102997", "https://data.delijn.be/stops/109447"], ["https://data.delijn.be/stops/403272", "https://data.delijn.be/stops/403398"], ["https://data.delijn.be/stops/206704", "https://data.delijn.be/stops/301665"], ["https://data.delijn.be/stops/101641", "https://data.delijn.be/stops/106199"], ["https://data.delijn.be/stops/407922", "https://data.delijn.be/stops/407923"], ["https://data.delijn.be/stops/501242", "https://data.delijn.be/stops/506246"], ["https://data.delijn.be/stops/102966", "https://data.delijn.be/stops/108642"], ["https://data.delijn.be/stops/108247", "https://data.delijn.be/stops/108248"], ["https://data.delijn.be/stops/201846", "https://data.delijn.be/stops/202305"], ["https://data.delijn.be/stops/101645", "https://data.delijn.be/stops/104258"], ["https://data.delijn.be/stops/109498", "https://data.delijn.be/stops/306810"], ["https://data.delijn.be/stops/400901", "https://data.delijn.be/stops/400961"], ["https://data.delijn.be/stops/101809", "https://data.delijn.be/stops/104139"], ["https://data.delijn.be/stops/303464", "https://data.delijn.be/stops/303465"], ["https://data.delijn.be/stops/102035", "https://data.delijn.be/stops/102040"], ["https://data.delijn.be/stops/403228", "https://data.delijn.be/stops/403270"], ["https://data.delijn.be/stops/504811", "https://data.delijn.be/stops/508970"], ["https://data.delijn.be/stops/403922", "https://data.delijn.be/stops/404433"], ["https://data.delijn.be/stops/505573", "https://data.delijn.be/stops/509483"], ["https://data.delijn.be/stops/406223", "https://data.delijn.be/stops/406238"], ["https://data.delijn.be/stops/202007", "https://data.delijn.be/stops/203007"], ["https://data.delijn.be/stops/503675", "https://data.delijn.be/stops/505260"], ["https://data.delijn.be/stops/204235", "https://data.delijn.be/stops/204237"], ["https://data.delijn.be/stops/216014", "https://data.delijn.be/stops/306729"], ["https://data.delijn.be/stops/108550", "https://data.delijn.be/stops/108555"], ["https://data.delijn.be/stops/103959", "https://data.delijn.be/stops/109578"], ["https://data.delijn.be/stops/202261", "https://data.delijn.be/stops/203260"], ["https://data.delijn.be/stops/202017", "https://data.delijn.be/stops/203656"], ["https://data.delijn.be/stops/305738", "https://data.delijn.be/stops/305744"], ["https://data.delijn.be/stops/507688", "https://data.delijn.be/stops/508520"], ["https://data.delijn.be/stops/405132", "https://data.delijn.be/stops/408809"], ["https://data.delijn.be/stops/503069", "https://data.delijn.be/stops/503530"], ["https://data.delijn.be/stops/508717", "https://data.delijn.be/stops/508720"], ["https://data.delijn.be/stops/102582", "https://data.delijn.be/stops/105835"], ["https://data.delijn.be/stops/200745", "https://data.delijn.be/stops/203004"], ["https://data.delijn.be/stops/502309", "https://data.delijn.be/stops/502815"], ["https://data.delijn.be/stops/502244", "https://data.delijn.be/stops/502911"], ["https://data.delijn.be/stops/305555", "https://data.delijn.be/stops/305562"], ["https://data.delijn.be/stops/202742", "https://data.delijn.be/stops/203865"], ["https://data.delijn.be/stops/108728", "https://data.delijn.be/stops/108732"], ["https://data.delijn.be/stops/505550", "https://data.delijn.be/stops/507686"], ["https://data.delijn.be/stops/306922", "https://data.delijn.be/stops/308728"], ["https://data.delijn.be/stops/101298", "https://data.delijn.be/stops/105503"], ["https://data.delijn.be/stops/403029", "https://data.delijn.be/stops/403569"], ["https://data.delijn.be/stops/300449", "https://data.delijn.be/stops/300450"], ["https://data.delijn.be/stops/206149", "https://data.delijn.be/stops/207908"], ["https://data.delijn.be/stops/402366", "https://data.delijn.be/stops/409599"], ["https://data.delijn.be/stops/206186", "https://data.delijn.be/stops/206692"], ["https://data.delijn.be/stops/504639", "https://data.delijn.be/stops/509639"], ["https://data.delijn.be/stops/107048", "https://data.delijn.be/stops/107049"], ["https://data.delijn.be/stops/202721", "https://data.delijn.be/stops/203087"], ["https://data.delijn.be/stops/305076", "https://data.delijn.be/stops/307944"], ["https://data.delijn.be/stops/104877", "https://data.delijn.be/stops/105310"], ["https://data.delijn.be/stops/400561", "https://data.delijn.be/stops/405151"], ["https://data.delijn.be/stops/102985", "https://data.delijn.be/stops/104685"], ["https://data.delijn.be/stops/303019", "https://data.delijn.be/stops/303108"], ["https://data.delijn.be/stops/200576", "https://data.delijn.be/stops/201601"], ["https://data.delijn.be/stops/400065", "https://data.delijn.be/stops/400144"], ["https://data.delijn.be/stops/202416", "https://data.delijn.be/stops/211033"], ["https://data.delijn.be/stops/106349", "https://data.delijn.be/stops/106350"], ["https://data.delijn.be/stops/402385", "https://data.delijn.be/stops/402455"], ["https://data.delijn.be/stops/505519", "https://data.delijn.be/stops/506436"], ["https://data.delijn.be/stops/505586", "https://data.delijn.be/stops/507741"], ["https://data.delijn.be/stops/102854", "https://data.delijn.be/stops/204622"], ["https://data.delijn.be/stops/406665", "https://data.delijn.be/stops/406683"], ["https://data.delijn.be/stops/504327", "https://data.delijn.be/stops/505375"], ["https://data.delijn.be/stops/301338", "https://data.delijn.be/stops/306119"], ["https://data.delijn.be/stops/200162", "https://data.delijn.be/stops/200979"], ["https://data.delijn.be/stops/402450", "https://data.delijn.be/stops/406884"], ["https://data.delijn.be/stops/503009", "https://data.delijn.be/stops/503015"], ["https://data.delijn.be/stops/402076", "https://data.delijn.be/stops/402210"], ["https://data.delijn.be/stops/503113", "https://data.delijn.be/stops/505945"], ["https://data.delijn.be/stops/306702", "https://data.delijn.be/stops/307933"], ["https://data.delijn.be/stops/408749", "https://data.delijn.be/stops/410150"], ["https://data.delijn.be/stops/401338", "https://data.delijn.be/stops/401339"], ["https://data.delijn.be/stops/203863", "https://data.delijn.be/stops/203879"], ["https://data.delijn.be/stops/201663", "https://data.delijn.be/stops/203322"], ["https://data.delijn.be/stops/103616", "https://data.delijn.be/stops/106309"], ["https://data.delijn.be/stops/305452", "https://data.delijn.be/stops/307776"], ["https://data.delijn.be/stops/504641", "https://data.delijn.be/stops/509641"], ["https://data.delijn.be/stops/206661", "https://data.delijn.be/stops/207662"], ["https://data.delijn.be/stops/302981", "https://data.delijn.be/stops/306296"], ["https://data.delijn.be/stops/301218", "https://data.delijn.be/stops/301222"], ["https://data.delijn.be/stops/200079", "https://data.delijn.be/stops/201546"], ["https://data.delijn.be/stops/300257", "https://data.delijn.be/stops/303826"], ["https://data.delijn.be/stops/403075", "https://data.delijn.be/stops/403457"], ["https://data.delijn.be/stops/401843", "https://data.delijn.be/stops/401855"], ["https://data.delijn.be/stops/302172", "https://data.delijn.be/stops/302174"], ["https://data.delijn.be/stops/202880", "https://data.delijn.be/stops/208528"], ["https://data.delijn.be/stops/200902", "https://data.delijn.be/stops/200904"], ["https://data.delijn.be/stops/104724", "https://data.delijn.be/stops/105405"], ["https://data.delijn.be/stops/101315", "https://data.delijn.be/stops/104111"], ["https://data.delijn.be/stops/508671", "https://data.delijn.be/stops/508673"], ["https://data.delijn.be/stops/502767", "https://data.delijn.be/stops/507143"], ["https://data.delijn.be/stops/406197", "https://data.delijn.be/stops/406899"], ["https://data.delijn.be/stops/104861", "https://data.delijn.be/stops/107883"], ["https://data.delijn.be/stops/102785", "https://data.delijn.be/stops/103125"], ["https://data.delijn.be/stops/103329", "https://data.delijn.be/stops/109294"], ["https://data.delijn.be/stops/400348", "https://data.delijn.be/stops/406866"], ["https://data.delijn.be/stops/506270", "https://data.delijn.be/stops/506317"], ["https://data.delijn.be/stops/300564", "https://data.delijn.be/stops/303525"], ["https://data.delijn.be/stops/408452", "https://data.delijn.be/stops/410062"], ["https://data.delijn.be/stops/305894", "https://data.delijn.be/stops/308156"], ["https://data.delijn.be/stops/201775", "https://data.delijn.be/stops/208123"], ["https://data.delijn.be/stops/407773", "https://data.delijn.be/stops/304368"], ["https://data.delijn.be/stops/204418", "https://data.delijn.be/stops/205387"], ["https://data.delijn.be/stops/408504", "https://data.delijn.be/stops/408505"], ["https://data.delijn.be/stops/202179", "https://data.delijn.be/stops/209867"], ["https://data.delijn.be/stops/501390", "https://data.delijn.be/stops/506391"], ["https://data.delijn.be/stops/202504", "https://data.delijn.be/stops/203504"], ["https://data.delijn.be/stops/102543", "https://data.delijn.be/stops/102544"], ["https://data.delijn.be/stops/108156", "https://data.delijn.be/stops/108904"], ["https://data.delijn.be/stops/408503", "https://data.delijn.be/stops/408547"], ["https://data.delijn.be/stops/403057", "https://data.delijn.be/stops/410361"], ["https://data.delijn.be/stops/204411", "https://data.delijn.be/stops/205769"], ["https://data.delijn.be/stops/403131", "https://data.delijn.be/stops/403147"], ["https://data.delijn.be/stops/407896", "https://data.delijn.be/stops/407941"], ["https://data.delijn.be/stops/307393", "https://data.delijn.be/stops/307395"], ["https://data.delijn.be/stops/302281", "https://data.delijn.be/stops/302291"], ["https://data.delijn.be/stops/501267", "https://data.delijn.be/stops/501315"], ["https://data.delijn.be/stops/508719", "https://data.delijn.be/stops/509968"], ["https://data.delijn.be/stops/103228", "https://data.delijn.be/stops/103604"], ["https://data.delijn.be/stops/404677", "https://data.delijn.be/stops/410136"], ["https://data.delijn.be/stops/206339", "https://data.delijn.be/stops/207340"], ["https://data.delijn.be/stops/205758", "https://data.delijn.be/stops/205759"], ["https://data.delijn.be/stops/300870", "https://data.delijn.be/stops/302217"], ["https://data.delijn.be/stops/301191", "https://data.delijn.be/stops/301254"], ["https://data.delijn.be/stops/204654", "https://data.delijn.be/stops/205670"], ["https://data.delijn.be/stops/106301", "https://data.delijn.be/stops/106303"], ["https://data.delijn.be/stops/302307", "https://data.delijn.be/stops/302316"], ["https://data.delijn.be/stops/303373", "https://data.delijn.be/stops/303381"], ["https://data.delijn.be/stops/104894", "https://data.delijn.be/stops/109617"], ["https://data.delijn.be/stops/406318", "https://data.delijn.be/stops/406350"], ["https://data.delijn.be/stops/303417", "https://data.delijn.be/stops/303421"], ["https://data.delijn.be/stops/202371", "https://data.delijn.be/stops/202372"], ["https://data.delijn.be/stops/401409", "https://data.delijn.be/stops/401411"], ["https://data.delijn.be/stops/505528", "https://data.delijn.be/stops/506423"], ["https://data.delijn.be/stops/408994", "https://data.delijn.be/stops/409001"], ["https://data.delijn.be/stops/105989", "https://data.delijn.be/stops/107957"], ["https://data.delijn.be/stops/206988", "https://data.delijn.be/stops/207988"], ["https://data.delijn.be/stops/302452", "https://data.delijn.be/stops/302497"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/202630"], ["https://data.delijn.be/stops/409571", "https://data.delijn.be/stops/410222"], ["https://data.delijn.be/stops/505814", "https://data.delijn.be/stops/508137"], ["https://data.delijn.be/stops/400684", "https://data.delijn.be/stops/404429"], ["https://data.delijn.be/stops/503228", "https://data.delijn.be/stops/508775"], ["https://data.delijn.be/stops/208425", "https://data.delijn.be/stops/209426"], ["https://data.delijn.be/stops/109394", "https://data.delijn.be/stops/109395"], ["https://data.delijn.be/stops/406066", "https://data.delijn.be/stops/407862"], ["https://data.delijn.be/stops/404406", "https://data.delijn.be/stops/404413"], ["https://data.delijn.be/stops/206776", "https://data.delijn.be/stops/208482"], ["https://data.delijn.be/stops/308415", "https://data.delijn.be/stops/308422"], ["https://data.delijn.be/stops/201601", "https://data.delijn.be/stops/203757"], ["https://data.delijn.be/stops/109846", "https://data.delijn.be/stops/109847"], ["https://data.delijn.be/stops/301697", "https://data.delijn.be/stops/301744"], ["https://data.delijn.be/stops/507054", "https://data.delijn.be/stops/507642"], ["https://data.delijn.be/stops/400964", "https://data.delijn.be/stops/401249"], ["https://data.delijn.be/stops/206689", "https://data.delijn.be/stops/207715"], ["https://data.delijn.be/stops/208402", "https://data.delijn.be/stops/209413"], ["https://data.delijn.be/stops/508235", "https://data.delijn.be/stops/508238"], ["https://data.delijn.be/stops/202667", "https://data.delijn.be/stops/203666"], ["https://data.delijn.be/stops/409092", "https://data.delijn.be/stops/410049"], ["https://data.delijn.be/stops/200319", "https://data.delijn.be/stops/211850"], ["https://data.delijn.be/stops/107487", "https://data.delijn.be/stops/305801"], ["https://data.delijn.be/stops/504665", "https://data.delijn.be/stops/506241"], ["https://data.delijn.be/stops/101435", "https://data.delijn.be/stops/107291"], ["https://data.delijn.be/stops/109028", "https://data.delijn.be/stops/109032"], ["https://data.delijn.be/stops/108858", "https://data.delijn.be/stops/108859"], ["https://data.delijn.be/stops/101483", "https://data.delijn.be/stops/101957"], ["https://data.delijn.be/stops/406083", "https://data.delijn.be/stops/406139"], ["https://data.delijn.be/stops/204175", "https://data.delijn.be/stops/205176"], ["https://data.delijn.be/stops/406896", "https://data.delijn.be/stops/406897"], ["https://data.delijn.be/stops/301381", "https://data.delijn.be/stops/303795"], ["https://data.delijn.be/stops/202912", "https://data.delijn.be/stops/203912"], ["https://data.delijn.be/stops/102980", "https://data.delijn.be/stops/104030"], ["https://data.delijn.be/stops/102617", "https://data.delijn.be/stops/108206"], ["https://data.delijn.be/stops/208770", "https://data.delijn.be/stops/209788"], ["https://data.delijn.be/stops/208692", "https://data.delijn.be/stops/208705"], ["https://data.delijn.be/stops/304605", "https://data.delijn.be/stops/304606"], ["https://data.delijn.be/stops/200689", "https://data.delijn.be/stops/201683"], ["https://data.delijn.be/stops/201726", "https://data.delijn.be/stops/203373"], ["https://data.delijn.be/stops/509765", "https://data.delijn.be/stops/509766"], ["https://data.delijn.be/stops/403501", "https://data.delijn.be/stops/403502"], ["https://data.delijn.be/stops/508597", "https://data.delijn.be/stops/508598"], ["https://data.delijn.be/stops/405515", "https://data.delijn.be/stops/407781"], ["https://data.delijn.be/stops/101522", "https://data.delijn.be/stops/101942"], ["https://data.delijn.be/stops/101788", "https://data.delijn.be/stops/105357"], ["https://data.delijn.be/stops/102280", "https://data.delijn.be/stops/107465"], ["https://data.delijn.be/stops/407646", "https://data.delijn.be/stops/407729"], ["https://data.delijn.be/stops/204362", "https://data.delijn.be/stops/205362"], ["https://data.delijn.be/stops/506777", "https://data.delijn.be/stops/506778"], ["https://data.delijn.be/stops/300737", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/400468", "https://data.delijn.be/stops/404843"], ["https://data.delijn.be/stops/400883", "https://data.delijn.be/stops/403576"], ["https://data.delijn.be/stops/503495", "https://data.delijn.be/stops/508270"], ["https://data.delijn.be/stops/204695", "https://data.delijn.be/stops/205102"], ["https://data.delijn.be/stops/407436", "https://data.delijn.be/stops/407486"], ["https://data.delijn.be/stops/210115", "https://data.delijn.be/stops/210117"], ["https://data.delijn.be/stops/305946", "https://data.delijn.be/stops/308417"], ["https://data.delijn.be/stops/504088", "https://data.delijn.be/stops/504978"], ["https://data.delijn.be/stops/503635", "https://data.delijn.be/stops/505935"], ["https://data.delijn.be/stops/304942", "https://data.delijn.be/stops/308019"], ["https://data.delijn.be/stops/401498", "https://data.delijn.be/stops/408635"], ["https://data.delijn.be/stops/409676", "https://data.delijn.be/stops/409705"], ["https://data.delijn.be/stops/206604", "https://data.delijn.be/stops/217020"], ["https://data.delijn.be/stops/305320", "https://data.delijn.be/stops/305893"], ["https://data.delijn.be/stops/300172", "https://data.delijn.be/stops/301219"], ["https://data.delijn.be/stops/200976", "https://data.delijn.be/stops/206851"], ["https://data.delijn.be/stops/300381", "https://data.delijn.be/stops/300469"], ["https://data.delijn.be/stops/201470", "https://data.delijn.be/stops/201891"], ["https://data.delijn.be/stops/105773", "https://data.delijn.be/stops/105783"], ["https://data.delijn.be/stops/101440", "https://data.delijn.be/stops/102145"], ["https://data.delijn.be/stops/402816", "https://data.delijn.be/stops/409018"], ["https://data.delijn.be/stops/405907", "https://data.delijn.be/stops/405929"], ["https://data.delijn.be/stops/204424", "https://data.delijn.be/stops/205745"], ["https://data.delijn.be/stops/202628", "https://data.delijn.be/stops/203628"], ["https://data.delijn.be/stops/404652", "https://data.delijn.be/stops/404655"], ["https://data.delijn.be/stops/503848", "https://data.delijn.be/stops/504379"], ["https://data.delijn.be/stops/401847", "https://data.delijn.be/stops/406239"], ["https://data.delijn.be/stops/200266", "https://data.delijn.be/stops/203543"], ["https://data.delijn.be/stops/407400", "https://data.delijn.be/stops/407482"], ["https://data.delijn.be/stops/400112", "https://data.delijn.be/stops/409066"], ["https://data.delijn.be/stops/102061", "https://data.delijn.be/stops/102073"], ["https://data.delijn.be/stops/301705", "https://data.delijn.be/stops/301756"], ["https://data.delijn.be/stops/203870", "https://data.delijn.be/stops/203881"], ["https://data.delijn.be/stops/206140", "https://data.delijn.be/stops/207139"], ["https://data.delijn.be/stops/202653", "https://data.delijn.be/stops/203653"], ["https://data.delijn.be/stops/106235", "https://data.delijn.be/stops/106681"], ["https://data.delijn.be/stops/405049", "https://data.delijn.be/stops/405769"], ["https://data.delijn.be/stops/106324", "https://data.delijn.be/stops/106326"], ["https://data.delijn.be/stops/400882", "https://data.delijn.be/stops/409343"], ["https://data.delijn.be/stops/204376", "https://data.delijn.be/stops/205375"], ["https://data.delijn.be/stops/406244", "https://data.delijn.be/stops/406253"], ["https://data.delijn.be/stops/202322", "https://data.delijn.be/stops/203322"], ["https://data.delijn.be/stops/501043", "https://data.delijn.be/stops/506037"], ["https://data.delijn.be/stops/405632", "https://data.delijn.be/stops/407774"], ["https://data.delijn.be/stops/306616", "https://data.delijn.be/stops/306627"], ["https://data.delijn.be/stops/409315", "https://data.delijn.be/stops/410396"], ["https://data.delijn.be/stops/207803", "https://data.delijn.be/stops/300196"], ["https://data.delijn.be/stops/204257", "https://data.delijn.be/stops/205823"], ["https://data.delijn.be/stops/102240", "https://data.delijn.be/stops/104580"], ["https://data.delijn.be/stops/205209", "https://data.delijn.be/stops/205348"], ["https://data.delijn.be/stops/505951", "https://data.delijn.be/stops/505966"], ["https://data.delijn.be/stops/105936", "https://data.delijn.be/stops/105938"], ["https://data.delijn.be/stops/408584", "https://data.delijn.be/stops/408591"], ["https://data.delijn.be/stops/101016", "https://data.delijn.be/stops/102815"], ["https://data.delijn.be/stops/304135", "https://data.delijn.be/stops/307583"], ["https://data.delijn.be/stops/201021", "https://data.delijn.be/stops/201111"], ["https://data.delijn.be/stops/403379", "https://data.delijn.be/stops/410212"], ["https://data.delijn.be/stops/403124", "https://data.delijn.be/stops/403673"], ["https://data.delijn.be/stops/208722", "https://data.delijn.be/stops/209722"], ["https://data.delijn.be/stops/502653", "https://data.delijn.be/stops/505019"], ["https://data.delijn.be/stops/405330", "https://data.delijn.be/stops/409294"], ["https://data.delijn.be/stops/403273", "https://data.delijn.be/stops/403398"], ["https://data.delijn.be/stops/106245", "https://data.delijn.be/stops/106730"], ["https://data.delijn.be/stops/103328", "https://data.delijn.be/stops/105102"], ["https://data.delijn.be/stops/106402", "https://data.delijn.be/stops/106575"], ["https://data.delijn.be/stops/307410", "https://data.delijn.be/stops/307413"], ["https://data.delijn.be/stops/302325", "https://data.delijn.be/stops/302985"], ["https://data.delijn.be/stops/400789", "https://data.delijn.be/stops/409560"], ["https://data.delijn.be/stops/102024", "https://data.delijn.be/stops/105746"], ["https://data.delijn.be/stops/302874", "https://data.delijn.be/stops/307008"], ["https://data.delijn.be/stops/304753", "https://data.delijn.be/stops/304768"], ["https://data.delijn.be/stops/410018", "https://data.delijn.be/stops/306775"], ["https://data.delijn.be/stops/504151", "https://data.delijn.be/stops/504164"], ["https://data.delijn.be/stops/403597", "https://data.delijn.be/stops/403608"], ["https://data.delijn.be/stops/400764", "https://data.delijn.be/stops/400773"], ["https://data.delijn.be/stops/301008", "https://data.delijn.be/stops/301012"], ["https://data.delijn.be/stops/302336", "https://data.delijn.be/stops/306180"], ["https://data.delijn.be/stops/106273", "https://data.delijn.be/stops/109627"], ["https://data.delijn.be/stops/204704", "https://data.delijn.be/stops/205053"], ["https://data.delijn.be/stops/102301", "https://data.delijn.be/stops/105106"], ["https://data.delijn.be/stops/507275", "https://data.delijn.be/stops/507276"], ["https://data.delijn.be/stops/302014", "https://data.delijn.be/stops/302034"], ["https://data.delijn.be/stops/107700", "https://data.delijn.be/stops/107897"], ["https://data.delijn.be/stops/506193", "https://data.delijn.be/stops/506197"], ["https://data.delijn.be/stops/208134", "https://data.delijn.be/stops/209137"], ["https://data.delijn.be/stops/502704", "https://data.delijn.be/stops/507426"], ["https://data.delijn.be/stops/402006", "https://data.delijn.be/stops/405175"], ["https://data.delijn.be/stops/103244", "https://data.delijn.be/stops/108126"], ["https://data.delijn.be/stops/105608", "https://data.delijn.be/stops/105609"], ["https://data.delijn.be/stops/103502", "https://data.delijn.be/stops/103503"], ["https://data.delijn.be/stops/109181", "https://data.delijn.be/stops/109713"], ["https://data.delijn.be/stops/200136", "https://data.delijn.be/stops/200137"], ["https://data.delijn.be/stops/502043", "https://data.delijn.be/stops/507043"], ["https://data.delijn.be/stops/106651", "https://data.delijn.be/stops/109752"], ["https://data.delijn.be/stops/305567", "https://data.delijn.be/stops/305568"], ["https://data.delijn.be/stops/109216", "https://data.delijn.be/stops/109219"], ["https://data.delijn.be/stops/406299", "https://data.delijn.be/stops/409080"], ["https://data.delijn.be/stops/307841", "https://data.delijn.be/stops/307842"], ["https://data.delijn.be/stops/106793", "https://data.delijn.be/stops/106794"], ["https://data.delijn.be/stops/105072", "https://data.delijn.be/stops/108227"], ["https://data.delijn.be/stops/204143", "https://data.delijn.be/stops/205143"], ["https://data.delijn.be/stops/503454", "https://data.delijn.be/stops/508454"], ["https://data.delijn.be/stops/102580", "https://data.delijn.be/stops/108789"], ["https://data.delijn.be/stops/104771", "https://data.delijn.be/stops/108149"], ["https://data.delijn.be/stops/402837", "https://data.delijn.be/stops/409006"], ["https://data.delijn.be/stops/302910", "https://data.delijn.be/stops/303080"], ["https://data.delijn.be/stops/200718", "https://data.delijn.be/stops/215003"], ["https://data.delijn.be/stops/504095", "https://data.delijn.be/stops/509097"], ["https://data.delijn.be/stops/300994", "https://data.delijn.be/stops/308355"], ["https://data.delijn.be/stops/300300", "https://data.delijn.be/stops/301768"], ["https://data.delijn.be/stops/208213", "https://data.delijn.be/stops/208800"], ["https://data.delijn.be/stops/404367", "https://data.delijn.be/stops/404756"], ["https://data.delijn.be/stops/204145", "https://data.delijn.be/stops/206636"], ["https://data.delijn.be/stops/307388", "https://data.delijn.be/stops/307394"], ["https://data.delijn.be/stops/304736", "https://data.delijn.be/stops/305292"], ["https://data.delijn.be/stops/504303", "https://data.delijn.be/stops/509949"], ["https://data.delijn.be/stops/107429", "https://data.delijn.be/stops/107703"], ["https://data.delijn.be/stops/201867", "https://data.delijn.be/stops/203082"], ["https://data.delijn.be/stops/504510", "https://data.delijn.be/stops/505165"], ["https://data.delijn.be/stops/302010", "https://data.delijn.be/stops/302011"], ["https://data.delijn.be/stops/507948", "https://data.delijn.be/stops/507956"], ["https://data.delijn.be/stops/503214", "https://data.delijn.be/stops/508187"], ["https://data.delijn.be/stops/502821", "https://data.delijn.be/stops/507456"], ["https://data.delijn.be/stops/200636", "https://data.delijn.be/stops/200637"], ["https://data.delijn.be/stops/407059", "https://data.delijn.be/stops/407069"], ["https://data.delijn.be/stops/204558", "https://data.delijn.be/stops/205030"], ["https://data.delijn.be/stops/408078", "https://data.delijn.be/stops/305689"], ["https://data.delijn.be/stops/401047", "https://data.delijn.be/stops/401127"], ["https://data.delijn.be/stops/304466", "https://data.delijn.be/stops/304526"], ["https://data.delijn.be/stops/303441", "https://data.delijn.be/stops/306370"], ["https://data.delijn.be/stops/105688", "https://data.delijn.be/stops/105690"], ["https://data.delijn.be/stops/505213", "https://data.delijn.be/stops/509598"], ["https://data.delijn.be/stops/105127", "https://data.delijn.be/stops/105129"], ["https://data.delijn.be/stops/208459", "https://data.delijn.be/stops/209470"], ["https://data.delijn.be/stops/108815", "https://data.delijn.be/stops/109060"], ["https://data.delijn.be/stops/406247", "https://data.delijn.be/stops/406291"], ["https://data.delijn.be/stops/407643", "https://data.delijn.be/stops/410319"], ["https://data.delijn.be/stops/402120", "https://data.delijn.be/stops/402257"], ["https://data.delijn.be/stops/202885", "https://data.delijn.be/stops/202887"], ["https://data.delijn.be/stops/206280", "https://data.delijn.be/stops/206281"], ["https://data.delijn.be/stops/104904", "https://data.delijn.be/stops/106595"], ["https://data.delijn.be/stops/507716", "https://data.delijn.be/stops/508462"], ["https://data.delijn.be/stops/102799", "https://data.delijn.be/stops/103695"], ["https://data.delijn.be/stops/403746", "https://data.delijn.be/stops/403747"], ["https://data.delijn.be/stops/201005", "https://data.delijn.be/stops/201921"], ["https://data.delijn.be/stops/208051", "https://data.delijn.be/stops/208658"], ["https://data.delijn.be/stops/201817", "https://data.delijn.be/stops/208253"], ["https://data.delijn.be/stops/404316", "https://data.delijn.be/stops/409690"], ["https://data.delijn.be/stops/405456", "https://data.delijn.be/stops/405472"], ["https://data.delijn.be/stops/504263", "https://data.delijn.be/stops/504683"], ["https://data.delijn.be/stops/503728", "https://data.delijn.be/stops/508704"], ["https://data.delijn.be/stops/101973", "https://data.delijn.be/stops/109293"], ["https://data.delijn.be/stops/101748", "https://data.delijn.be/stops/101749"], ["https://data.delijn.be/stops/408664", "https://data.delijn.be/stops/408665"], ["https://data.delijn.be/stops/301935", "https://data.delijn.be/stops/302901"], ["https://data.delijn.be/stops/301728", "https://data.delijn.be/stops/301739"], ["https://data.delijn.be/stops/202436", "https://data.delijn.be/stops/210087"], ["https://data.delijn.be/stops/406812", "https://data.delijn.be/stops/406950"], ["https://data.delijn.be/stops/403925", "https://data.delijn.be/stops/410257"], ["https://data.delijn.be/stops/302083", "https://data.delijn.be/stops/306379"], ["https://data.delijn.be/stops/200749", "https://data.delijn.be/stops/202149"], ["https://data.delijn.be/stops/406803", "https://data.delijn.be/stops/407151"], ["https://data.delijn.be/stops/501487", "https://data.delijn.be/stops/506487"], ["https://data.delijn.be/stops/307616", "https://data.delijn.be/stops/308759"], ["https://data.delijn.be/stops/504076", "https://data.delijn.be/stops/504692"], ["https://data.delijn.be/stops/501227", "https://data.delijn.be/stops/506418"], ["https://data.delijn.be/stops/209527", "https://data.delijn.be/stops/219016"], ["https://data.delijn.be/stops/208077", "https://data.delijn.be/stops/209077"], ["https://data.delijn.be/stops/405271", "https://data.delijn.be/stops/405272"], ["https://data.delijn.be/stops/506307", "https://data.delijn.be/stops/510001"], ["https://data.delijn.be/stops/209600", "https://data.delijn.be/stops/306368"], ["https://data.delijn.be/stops/500158", "https://data.delijn.be/stops/504995"], ["https://data.delijn.be/stops/305079", "https://data.delijn.be/stops/306952"], ["https://data.delijn.be/stops/403726", "https://data.delijn.be/stops/403784"], ["https://data.delijn.be/stops/200523", "https://data.delijn.be/stops/201523"], ["https://data.delijn.be/stops/101366", "https://data.delijn.be/stops/101367"], ["https://data.delijn.be/stops/304801", "https://data.delijn.be/stops/304802"], ["https://data.delijn.be/stops/206964", "https://data.delijn.be/stops/207040"], ["https://data.delijn.be/stops/103995", "https://data.delijn.be/stops/107610"], ["https://data.delijn.be/stops/307852", "https://data.delijn.be/stops/307853"], ["https://data.delijn.be/stops/302891", "https://data.delijn.be/stops/302892"], ["https://data.delijn.be/stops/304248", "https://data.delijn.be/stops/304268"], ["https://data.delijn.be/stops/302229", "https://data.delijn.be/stops/302239"], ["https://data.delijn.be/stops/308605", "https://data.delijn.be/stops/308632"], ["https://data.delijn.be/stops/504411", "https://data.delijn.be/stops/509411"], ["https://data.delijn.be/stops/304590", "https://data.delijn.be/stops/304662"], ["https://data.delijn.be/stops/308408", "https://data.delijn.be/stops/308410"], ["https://data.delijn.be/stops/207760", "https://data.delijn.be/stops/207773"], ["https://data.delijn.be/stops/406880", "https://data.delijn.be/stops/409770"], ["https://data.delijn.be/stops/404491", "https://data.delijn.be/stops/404538"], ["https://data.delijn.be/stops/407033", "https://data.delijn.be/stops/407036"], ["https://data.delijn.be/stops/105149", "https://data.delijn.be/stops/109522"], ["https://data.delijn.be/stops/402814", "https://data.delijn.be/stops/402815"], ["https://data.delijn.be/stops/305550", "https://data.delijn.be/stops/305562"], ["https://data.delijn.be/stops/109027", "https://data.delijn.be/stops/109078"], ["https://data.delijn.be/stops/103245", "https://data.delijn.be/stops/103255"], ["https://data.delijn.be/stops/101463", "https://data.delijn.be/stops/101475"], ["https://data.delijn.be/stops/202720", "https://data.delijn.be/stops/203720"], ["https://data.delijn.be/stops/201594", "https://data.delijn.be/stops/210132"], ["https://data.delijn.be/stops/508212", "https://data.delijn.be/stops/508390"], ["https://data.delijn.be/stops/101412", "https://data.delijn.be/stops/101433"], ["https://data.delijn.be/stops/301052", "https://data.delijn.be/stops/301062"], ["https://data.delijn.be/stops/207205", "https://data.delijn.be/stops/207206"], ["https://data.delijn.be/stops/104966", "https://data.delijn.be/stops/109216"], ["https://data.delijn.be/stops/101250", "https://data.delijn.be/stops/101255"], ["https://data.delijn.be/stops/104843", "https://data.delijn.be/stops/109965"], ["https://data.delijn.be/stops/306867", "https://data.delijn.be/stops/307425"], ["https://data.delijn.be/stops/303760", "https://data.delijn.be/stops/303762"], ["https://data.delijn.be/stops/502194", "https://data.delijn.be/stops/509312"], ["https://data.delijn.be/stops/303377", "https://data.delijn.be/stops/303396"], ["https://data.delijn.be/stops/509250", "https://data.delijn.be/stops/509596"], ["https://data.delijn.be/stops/105281", "https://data.delijn.be/stops/105282"], ["https://data.delijn.be/stops/104446", "https://data.delijn.be/stops/303877"], ["https://data.delijn.be/stops/204340", "https://data.delijn.be/stops/205535"], ["https://data.delijn.be/stops/506308", "https://data.delijn.be/stops/506511"], ["https://data.delijn.be/stops/201780", "https://data.delijn.be/stops/208855"], ["https://data.delijn.be/stops/300199", "https://data.delijn.be/stops/302114"], ["https://data.delijn.be/stops/104016", "https://data.delijn.be/stops/104019"], ["https://data.delijn.be/stops/304567", "https://data.delijn.be/stops/304648"], ["https://data.delijn.be/stops/106725", "https://data.delijn.be/stops/106728"], ["https://data.delijn.be/stops/505548", "https://data.delijn.be/stops/505578"], ["https://data.delijn.be/stops/208446", "https://data.delijn.be/stops/208447"], ["https://data.delijn.be/stops/501601", "https://data.delijn.be/stops/505165"], ["https://data.delijn.be/stops/508134", "https://data.delijn.be/stops/508138"], ["https://data.delijn.be/stops/504633", "https://data.delijn.be/stops/509335"], ["https://data.delijn.be/stops/505149", "https://data.delijn.be/stops/505327"], ["https://data.delijn.be/stops/202587", "https://data.delijn.be/stops/203372"], ["https://data.delijn.be/stops/504544", "https://data.delijn.be/stops/505212"], ["https://data.delijn.be/stops/403928", "https://data.delijn.be/stops/405968"], ["https://data.delijn.be/stops/307081", "https://data.delijn.be/stops/307082"], ["https://data.delijn.be/stops/301121", "https://data.delijn.be/stops/301133"], ["https://data.delijn.be/stops/303001", "https://data.delijn.be/stops/303002"], ["https://data.delijn.be/stops/206437", "https://data.delijn.be/stops/207641"], ["https://data.delijn.be/stops/101850", "https://data.delijn.be/stops/102841"], ["https://data.delijn.be/stops/106247", "https://data.delijn.be/stops/106248"], ["https://data.delijn.be/stops/302910", "https://data.delijn.be/stops/302911"], ["https://data.delijn.be/stops/301571", "https://data.delijn.be/stops/301574"], ["https://data.delijn.be/stops/304059", "https://data.delijn.be/stops/304085"], ["https://data.delijn.be/stops/101227", "https://data.delijn.be/stops/101547"], ["https://data.delijn.be/stops/502531", "https://data.delijn.be/stops/507531"], ["https://data.delijn.be/stops/508220", "https://data.delijn.be/stops/508224"], ["https://data.delijn.be/stops/303531", "https://data.delijn.be/stops/303541"], ["https://data.delijn.be/stops/401583", "https://data.delijn.be/stops/406243"], ["https://data.delijn.be/stops/408648", "https://data.delijn.be/stops/410150"], ["https://data.delijn.be/stops/401440", "https://data.delijn.be/stops/408311"], ["https://data.delijn.be/stops/405531", "https://data.delijn.be/stops/406897"], ["https://data.delijn.be/stops/590330", "https://data.delijn.be/stops/590333"], ["https://data.delijn.be/stops/200827", "https://data.delijn.be/stops/502069"], ["https://data.delijn.be/stops/109808", "https://data.delijn.be/stops/109811"], ["https://data.delijn.be/stops/206153", "https://data.delijn.be/stops/207154"], ["https://data.delijn.be/stops/403729", "https://data.delijn.be/stops/403822"], ["https://data.delijn.be/stops/406158", "https://data.delijn.be/stops/406443"], ["https://data.delijn.be/stops/408681", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/307625", "https://data.delijn.be/stops/308265"], ["https://data.delijn.be/stops/301439", "https://data.delijn.be/stops/301674"], ["https://data.delijn.be/stops/506082", "https://data.delijn.be/stops/507731"], ["https://data.delijn.be/stops/101657", "https://data.delijn.be/stops/102748"], ["https://data.delijn.be/stops/201136", "https://data.delijn.be/stops/202134"], ["https://data.delijn.be/stops/201705", "https://data.delijn.be/stops/202381"], ["https://data.delijn.be/stops/302782", "https://data.delijn.be/stops/302783"], ["https://data.delijn.be/stops/304879", "https://data.delijn.be/stops/304885"], ["https://data.delijn.be/stops/208355", "https://data.delijn.be/stops/208357"], ["https://data.delijn.be/stops/502573", "https://data.delijn.be/stops/506729"], ["https://data.delijn.be/stops/202507", "https://data.delijn.be/stops/203507"], ["https://data.delijn.be/stops/407024", "https://data.delijn.be/stops/407025"], ["https://data.delijn.be/stops/306899", "https://data.delijn.be/stops/306901"], ["https://data.delijn.be/stops/400508", "https://data.delijn.be/stops/400510"], ["https://data.delijn.be/stops/106032", "https://data.delijn.be/stops/106034"], ["https://data.delijn.be/stops/307983", "https://data.delijn.be/stops/307984"], ["https://data.delijn.be/stops/300435", "https://data.delijn.be/stops/301276"], ["https://data.delijn.be/stops/106531", "https://data.delijn.be/stops/107306"], ["https://data.delijn.be/stops/206722", "https://data.delijn.be/stops/207088"], ["https://data.delijn.be/stops/504943", "https://data.delijn.be/stops/508657"], ["https://data.delijn.be/stops/206534", "https://data.delijn.be/stops/207645"], ["https://data.delijn.be/stops/303396", "https://data.delijn.be/stops/303672"], ["https://data.delijn.be/stops/403680", "https://data.delijn.be/stops/403682"], ["https://data.delijn.be/stops/102506", "https://data.delijn.be/stops/400022"], ["https://data.delijn.be/stops/507943", "https://data.delijn.be/stops/507955"], ["https://data.delijn.be/stops/407918", "https://data.delijn.be/stops/306059"], ["https://data.delijn.be/stops/400110", "https://data.delijn.be/stops/409199"], ["https://data.delijn.be/stops/200073", "https://data.delijn.be/stops/201073"], ["https://data.delijn.be/stops/503790", "https://data.delijn.be/stops/508790"], ["https://data.delijn.be/stops/201053", "https://data.delijn.be/stops/210086"], ["https://data.delijn.be/stops/505922", "https://data.delijn.be/stops/505981"], ["https://data.delijn.be/stops/502043", "https://data.delijn.be/stops/507642"], ["https://data.delijn.be/stops/405628", "https://data.delijn.be/stops/407799"], ["https://data.delijn.be/stops/404993", "https://data.delijn.be/stops/406969"], ["https://data.delijn.be/stops/301783", "https://data.delijn.be/stops/306879"], ["https://data.delijn.be/stops/303493", "https://data.delijn.be/stops/303495"], ["https://data.delijn.be/stops/503699", "https://data.delijn.be/stops/508916"], ["https://data.delijn.be/stops/303044", "https://data.delijn.be/stops/303999"], ["https://data.delijn.be/stops/506113", "https://data.delijn.be/stops/506641"], ["https://data.delijn.be/stops/105422", "https://data.delijn.be/stops/105426"], ["https://data.delijn.be/stops/207197", "https://data.delijn.be/stops/207856"], ["https://data.delijn.be/stops/410220", "https://data.delijn.be/stops/410338"], ["https://data.delijn.be/stops/504877", "https://data.delijn.be/stops/509927"], ["https://data.delijn.be/stops/301623", "https://data.delijn.be/stops/303662"], ["https://data.delijn.be/stops/201858", "https://data.delijn.be/stops/210025"], ["https://data.delijn.be/stops/102471", "https://data.delijn.be/stops/406849"], ["https://data.delijn.be/stops/505285", "https://data.delijn.be/stops/508544"], ["https://data.delijn.be/stops/103961", "https://data.delijn.be/stops/107339"], ["https://data.delijn.be/stops/504586", "https://data.delijn.be/stops/509586"], ["https://data.delijn.be/stops/508621", "https://data.delijn.be/stops/508624"], ["https://data.delijn.be/stops/501536", "https://data.delijn.be/stops/506658"], ["https://data.delijn.be/stops/407830", "https://data.delijn.be/stops/407831"], ["https://data.delijn.be/stops/301267", "https://data.delijn.be/stops/308027"], ["https://data.delijn.be/stops/403176", "https://data.delijn.be/stops/403177"], ["https://data.delijn.be/stops/208278", "https://data.delijn.be/stops/208280"], ["https://data.delijn.be/stops/405911", "https://data.delijn.be/stops/409700"], ["https://data.delijn.be/stops/300541", "https://data.delijn.be/stops/304908"], ["https://data.delijn.be/stops/206143", "https://data.delijn.be/stops/207143"], ["https://data.delijn.be/stops/405710", "https://data.delijn.be/stops/405713"], ["https://data.delijn.be/stops/205378", "https://data.delijn.be/stops/205764"], ["https://data.delijn.be/stops/101657", "https://data.delijn.be/stops/104907"], ["https://data.delijn.be/stops/208138", "https://data.delijn.be/stops/208815"], ["https://data.delijn.be/stops/206866", "https://data.delijn.be/stops/207866"], ["https://data.delijn.be/stops/504984", "https://data.delijn.be/stops/508906"], ["https://data.delijn.be/stops/303304", "https://data.delijn.be/stops/307294"], ["https://data.delijn.be/stops/207998", "https://data.delijn.be/stops/306679"], ["https://data.delijn.be/stops/106870", "https://data.delijn.be/stops/106871"], ["https://data.delijn.be/stops/505673", "https://data.delijn.be/stops/507300"], ["https://data.delijn.be/stops/302957", "https://data.delijn.be/stops/303443"], ["https://data.delijn.be/stops/200921", "https://data.delijn.be/stops/202699"], ["https://data.delijn.be/stops/204916", "https://data.delijn.be/stops/204919"], ["https://data.delijn.be/stops/503615", "https://data.delijn.be/stops/508615"], ["https://data.delijn.be/stops/501776", "https://data.delijn.be/stops/506427"], ["https://data.delijn.be/stops/206585", "https://data.delijn.be/stops/207585"], ["https://data.delijn.be/stops/406152", "https://data.delijn.be/stops/406210"], ["https://data.delijn.be/stops/502581", "https://data.delijn.be/stops/507581"], ["https://data.delijn.be/stops/303993", "https://data.delijn.be/stops/304850"], ["https://data.delijn.be/stops/503201", "https://data.delijn.be/stops/504946"], ["https://data.delijn.be/stops/202535", "https://data.delijn.be/stops/203535"], ["https://data.delijn.be/stops/401752", "https://data.delijn.be/stops/401753"], ["https://data.delijn.be/stops/206235", "https://data.delijn.be/stops/207234"], ["https://data.delijn.be/stops/409054", "https://data.delijn.be/stops/409071"], ["https://data.delijn.be/stops/101452", "https://data.delijn.be/stops/102618"], ["https://data.delijn.be/stops/204080", "https://data.delijn.be/stops/204201"], ["https://data.delijn.be/stops/211014", "https://data.delijn.be/stops/211015"], ["https://data.delijn.be/stops/305713", "https://data.delijn.be/stops/305715"], ["https://data.delijn.be/stops/301180", "https://data.delijn.be/stops/301259"], ["https://data.delijn.be/stops/108558", "https://data.delijn.be/stops/109094"], ["https://data.delijn.be/stops/402082", "https://data.delijn.be/stops/402083"], ["https://data.delijn.be/stops/204985", "https://data.delijn.be/stops/209350"], ["https://data.delijn.be/stops/305123", "https://data.delijn.be/stops/308093"], ["https://data.delijn.be/stops/200216", "https://data.delijn.be/stops/201216"], ["https://data.delijn.be/stops/109663", "https://data.delijn.be/stops/109669"], ["https://data.delijn.be/stops/400790", "https://data.delijn.be/stops/400888"], ["https://data.delijn.be/stops/301564", "https://data.delijn.be/stops/301568"], ["https://data.delijn.be/stops/402513", "https://data.delijn.be/stops/402630"], ["https://data.delijn.be/stops/401003", "https://data.delijn.be/stops/401086"], ["https://data.delijn.be/stops/504421", "https://data.delijn.be/stops/509421"], ["https://data.delijn.be/stops/202898", "https://data.delijn.be/stops/211125"], ["https://data.delijn.be/stops/208673", "https://data.delijn.be/stops/209445"], ["https://data.delijn.be/stops/202797", "https://data.delijn.be/stops/203797"], ["https://data.delijn.be/stops/200561", "https://data.delijn.be/stops/201561"], ["https://data.delijn.be/stops/402512", "https://data.delijn.be/stops/402513"], ["https://data.delijn.be/stops/400219", "https://data.delijn.be/stops/407193"], ["https://data.delijn.be/stops/502093", "https://data.delijn.be/stops/502168"], ["https://data.delijn.be/stops/401264", "https://data.delijn.be/stops/401267"], ["https://data.delijn.be/stops/409858", "https://data.delijn.be/stops/409859"], ["https://data.delijn.be/stops/503952", "https://data.delijn.be/stops/508128"], ["https://data.delijn.be/stops/504037", "https://data.delijn.be/stops/509044"], ["https://data.delijn.be/stops/101798", "https://data.delijn.be/stops/101799"], ["https://data.delijn.be/stops/503687", "https://data.delijn.be/stops/504453"], ["https://data.delijn.be/stops/500929", "https://data.delijn.be/stops/508132"], ["https://data.delijn.be/stops/104639", "https://data.delijn.be/stops/107973"], ["https://data.delijn.be/stops/103371", "https://data.delijn.be/stops/104990"], ["https://data.delijn.be/stops/302566", "https://data.delijn.be/stops/302771"], ["https://data.delijn.be/stops/203886", "https://data.delijn.be/stops/208712"], ["https://data.delijn.be/stops/401642", "https://data.delijn.be/stops/408652"], ["https://data.delijn.be/stops/106450", "https://data.delijn.be/stops/106451"], ["https://data.delijn.be/stops/503875", "https://data.delijn.be/stops/508878"], ["https://data.delijn.be/stops/208441", "https://data.delijn.be/stops/209441"], ["https://data.delijn.be/stops/504815", "https://data.delijn.be/stops/509815"], ["https://data.delijn.be/stops/306954", "https://data.delijn.be/stops/306955"], ["https://data.delijn.be/stops/102253", "https://data.delijn.be/stops/102409"], ["https://data.delijn.be/stops/103004", "https://data.delijn.be/stops/104936"], ["https://data.delijn.be/stops/404288", "https://data.delijn.be/stops/405786"], ["https://data.delijn.be/stops/402780", "https://data.delijn.be/stops/405581"], ["https://data.delijn.be/stops/202012", "https://data.delijn.be/stops/202013"], ["https://data.delijn.be/stops/200030", "https://data.delijn.be/stops/201030"], ["https://data.delijn.be/stops/204216", "https://data.delijn.be/stops/205215"], ["https://data.delijn.be/stops/204724", "https://data.delijn.be/stops/214013"], ["https://data.delijn.be/stops/406622", "https://data.delijn.be/stops/406699"], ["https://data.delijn.be/stops/204022", "https://data.delijn.be/stops/206282"], ["https://data.delijn.be/stops/206400", "https://data.delijn.be/stops/207400"], ["https://data.delijn.be/stops/407582", "https://data.delijn.be/stops/408885"], ["https://data.delijn.be/stops/306602", "https://data.delijn.be/stops/306603"], ["https://data.delijn.be/stops/200421", "https://data.delijn.be/stops/210405"], ["https://data.delijn.be/stops/105679", "https://data.delijn.be/stops/105682"], ["https://data.delijn.be/stops/501401", "https://data.delijn.be/stops/506083"], ["https://data.delijn.be/stops/105893", "https://data.delijn.be/stops/105894"], ["https://data.delijn.be/stops/508501", "https://data.delijn.be/stops/509454"], ["https://data.delijn.be/stops/502119", "https://data.delijn.be/stops/502627"], ["https://data.delijn.be/stops/503145", "https://data.delijn.be/stops/508145"], ["https://data.delijn.be/stops/201724", "https://data.delijn.be/stops/203378"], ["https://data.delijn.be/stops/204982", "https://data.delijn.be/stops/209166"], ["https://data.delijn.be/stops/303934", "https://data.delijn.be/stops/304573"], ["https://data.delijn.be/stops/106930", "https://data.delijn.be/stops/106931"], ["https://data.delijn.be/stops/207458", "https://data.delijn.be/stops/207824"], ["https://data.delijn.be/stops/506036", "https://data.delijn.be/stops/506323"], ["https://data.delijn.be/stops/303463", "https://data.delijn.be/stops/303510"], ["https://data.delijn.be/stops/402595", "https://data.delijn.be/stops/403263"], ["https://data.delijn.be/stops/405774", "https://data.delijn.be/stops/409737"], ["https://data.delijn.be/stops/207283", "https://data.delijn.be/stops/207284"], ["https://data.delijn.be/stops/208214", "https://data.delijn.be/stops/208215"], ["https://data.delijn.be/stops/101200", "https://data.delijn.be/stops/105840"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/209508"], ["https://data.delijn.be/stops/204480", "https://data.delijn.be/stops/205765"], ["https://data.delijn.be/stops/504680", "https://data.delijn.be/stops/509351"], ["https://data.delijn.be/stops/301535", "https://data.delijn.be/stops/301552"], ["https://data.delijn.be/stops/105488", "https://data.delijn.be/stops/105491"], ["https://data.delijn.be/stops/104908", "https://data.delijn.be/stops/107848"], ["https://data.delijn.be/stops/203810", "https://data.delijn.be/stops/203840"], ["https://data.delijn.be/stops/304442", "https://data.delijn.be/stops/304445"], ["https://data.delijn.be/stops/502078", "https://data.delijn.be/stops/502080"], ["https://data.delijn.be/stops/504456", "https://data.delijn.be/stops/509454"], ["https://data.delijn.be/stops/510007", "https://data.delijn.be/stops/510008"], ["https://data.delijn.be/stops/505806", "https://data.delijn.be/stops/508596"], ["https://data.delijn.be/stops/207721", "https://data.delijn.be/stops/207724"], ["https://data.delijn.be/stops/503624", "https://data.delijn.be/stops/508621"], ["https://data.delijn.be/stops/410163", "https://data.delijn.be/stops/410346"], ["https://data.delijn.be/stops/501179", "https://data.delijn.be/stops/506071"], ["https://data.delijn.be/stops/503758", "https://data.delijn.be/stops/508766"], ["https://data.delijn.be/stops/108962", "https://data.delijn.be/stops/108966"], ["https://data.delijn.be/stops/504851", "https://data.delijn.be/stops/509271"], ["https://data.delijn.be/stops/500940", "https://data.delijn.be/stops/503894"], ["https://data.delijn.be/stops/307205", "https://data.delijn.be/stops/307555"], ["https://data.delijn.be/stops/200054", "https://data.delijn.be/stops/201054"], ["https://data.delijn.be/stops/108733", "https://data.delijn.be/stops/109284"], ["https://data.delijn.be/stops/103354", "https://data.delijn.be/stops/107485"], ["https://data.delijn.be/stops/303851", "https://data.delijn.be/stops/303852"], ["https://data.delijn.be/stops/200166", "https://data.delijn.be/stops/202197"], ["https://data.delijn.be/stops/202633", "https://data.delijn.be/stops/203633"], ["https://data.delijn.be/stops/301236", "https://data.delijn.be/stops/308134"], ["https://data.delijn.be/stops/201367", "https://data.delijn.be/stops/201607"], ["https://data.delijn.be/stops/204307", "https://data.delijn.be/stops/205307"], ["https://data.delijn.be/stops/105544", "https://data.delijn.be/stops/105546"], ["https://data.delijn.be/stops/203309", "https://data.delijn.be/stops/502759"], ["https://data.delijn.be/stops/107569", "https://data.delijn.be/stops/107573"], ["https://data.delijn.be/stops/202860", "https://data.delijn.be/stops/202861"], ["https://data.delijn.be/stops/101075", "https://data.delijn.be/stops/103040"], ["https://data.delijn.be/stops/406194", "https://data.delijn.be/stops/406220"], ["https://data.delijn.be/stops/105885", "https://data.delijn.be/stops/109135"], ["https://data.delijn.be/stops/204732", "https://data.delijn.be/stops/205732"], ["https://data.delijn.be/stops/201960", "https://data.delijn.be/stops/202193"], ["https://data.delijn.be/stops/206113", "https://data.delijn.be/stops/207114"], ["https://data.delijn.be/stops/206209", "https://data.delijn.be/stops/206818"], ["https://data.delijn.be/stops/203703", "https://data.delijn.be/stops/203704"], ["https://data.delijn.be/stops/102566", "https://data.delijn.be/stops/105847"], ["https://data.delijn.be/stops/107905", "https://data.delijn.be/stops/108435"], ["https://data.delijn.be/stops/102166", "https://data.delijn.be/stops/104396"], ["https://data.delijn.be/stops/503711", "https://data.delijn.be/stops/503734"], ["https://data.delijn.be/stops/501004", "https://data.delijn.be/stops/505403"], ["https://data.delijn.be/stops/400040", "https://data.delijn.be/stops/400253"], ["https://data.delijn.be/stops/303094", "https://data.delijn.be/stops/303098"], ["https://data.delijn.be/stops/202861", "https://data.delijn.be/stops/208700"], ["https://data.delijn.be/stops/405022", "https://data.delijn.be/stops/405071"], ["https://data.delijn.be/stops/305544", "https://data.delijn.be/stops/305546"], ["https://data.delijn.be/stops/205989", "https://data.delijn.be/stops/208556"], ["https://data.delijn.be/stops/506010", "https://data.delijn.be/stops/506505"], ["https://data.delijn.be/stops/206061", "https://data.delijn.be/stops/207519"], ["https://data.delijn.be/stops/109510", "https://data.delijn.be/stops/109512"], ["https://data.delijn.be/stops/102470", "https://data.delijn.be/stops/103650"], ["https://data.delijn.be/stops/102945", "https://data.delijn.be/stops/105065"], ["https://data.delijn.be/stops/303242", "https://data.delijn.be/stops/303243"], ["https://data.delijn.be/stops/207515", "https://data.delijn.be/stops/207851"], ["https://data.delijn.be/stops/101860", "https://data.delijn.be/stops/104980"], ["https://data.delijn.be/stops/308223", "https://data.delijn.be/stops/308289"], ["https://data.delijn.be/stops/208273", "https://data.delijn.be/stops/209273"], ["https://data.delijn.be/stops/200554", "https://data.delijn.be/stops/201670"], ["https://data.delijn.be/stops/301346", "https://data.delijn.be/stops/301347"], ["https://data.delijn.be/stops/205319", "https://data.delijn.be/stops/205320"], ["https://data.delijn.be/stops/508650", "https://data.delijn.be/stops/509767"], ["https://data.delijn.be/stops/104559", "https://data.delijn.be/stops/107481"], ["https://data.delijn.be/stops/106105", "https://data.delijn.be/stops/106166"], ["https://data.delijn.be/stops/206897", "https://data.delijn.be/stops/207897"], ["https://data.delijn.be/stops/108972", "https://data.delijn.be/stops/109692"], ["https://data.delijn.be/stops/204730", "https://data.delijn.be/stops/205731"], ["https://data.delijn.be/stops/102725", "https://data.delijn.be/stops/103002"], ["https://data.delijn.be/stops/300673", "https://data.delijn.be/stops/308977"], ["https://data.delijn.be/stops/201747", "https://data.delijn.be/stops/202159"], ["https://data.delijn.be/stops/502068", "https://data.delijn.be/stops/507068"], ["https://data.delijn.be/stops/103718", "https://data.delijn.be/stops/109733"], ["https://data.delijn.be/stops/502736", "https://data.delijn.be/stops/507118"], ["https://data.delijn.be/stops/203949", "https://data.delijn.be/stops/203962"], ["https://data.delijn.be/stops/502369", "https://data.delijn.be/stops/505437"], ["https://data.delijn.be/stops/101722", "https://data.delijn.be/stops/101723"], ["https://data.delijn.be/stops/307316", "https://data.delijn.be/stops/307317"], ["https://data.delijn.be/stops/208792", "https://data.delijn.be/stops/208793"], ["https://data.delijn.be/stops/401724", "https://data.delijn.be/stops/405460"], ["https://data.delijn.be/stops/204734", "https://data.delijn.be/stops/204735"], ["https://data.delijn.be/stops/502427", "https://data.delijn.be/stops/507439"], ["https://data.delijn.be/stops/502127", "https://data.delijn.be/stops/502584"], ["https://data.delijn.be/stops/102235", "https://data.delijn.be/stops/104785"], ["https://data.delijn.be/stops/106329", "https://data.delijn.be/stops/109390"], ["https://data.delijn.be/stops/101372", "https://data.delijn.be/stops/101406"], ["https://data.delijn.be/stops/307939", "https://data.delijn.be/stops/308777"], ["https://data.delijn.be/stops/103223", "https://data.delijn.be/stops/105385"], ["https://data.delijn.be/stops/103715", "https://data.delijn.be/stops/104140"], ["https://data.delijn.be/stops/201509", "https://data.delijn.be/stops/202358"], ["https://data.delijn.be/stops/304689", "https://data.delijn.be/stops/306685"], ["https://data.delijn.be/stops/204241", "https://data.delijn.be/stops/204345"], ["https://data.delijn.be/stops/301282", "https://data.delijn.be/stops/301908"], ["https://data.delijn.be/stops/200345", "https://data.delijn.be/stops/201380"], ["https://data.delijn.be/stops/300797", "https://data.delijn.be/stops/304775"], ["https://data.delijn.be/stops/500601", "https://data.delijn.be/stops/501535"], ["https://data.delijn.be/stops/304020", "https://data.delijn.be/stops/304031"], ["https://data.delijn.be/stops/406571", "https://data.delijn.be/stops/406574"], ["https://data.delijn.be/stops/300421", "https://data.delijn.be/stops/300422"], ["https://data.delijn.be/stops/201704", "https://data.delijn.be/stops/202602"], ["https://data.delijn.be/stops/204066", "https://data.delijn.be/stops/204072"], ["https://data.delijn.be/stops/204769", "https://data.delijn.be/stops/205403"], ["https://data.delijn.be/stops/105380", "https://data.delijn.be/stops/108490"], ["https://data.delijn.be/stops/502074", "https://data.delijn.be/stops/507073"], ["https://data.delijn.be/stops/304619", "https://data.delijn.be/stops/304621"], ["https://data.delijn.be/stops/103130", "https://data.delijn.be/stops/104905"], ["https://data.delijn.be/stops/407234", "https://data.delijn.be/stops/407508"], ["https://data.delijn.be/stops/108087", "https://data.delijn.be/stops/108088"], ["https://data.delijn.be/stops/404653", "https://data.delijn.be/stops/404677"], ["https://data.delijn.be/stops/206646", "https://data.delijn.be/stops/207488"], ["https://data.delijn.be/stops/406904", "https://data.delijn.be/stops/406905"], ["https://data.delijn.be/stops/404465", "https://data.delijn.be/stops/404505"], ["https://data.delijn.be/stops/101851", "https://data.delijn.be/stops/107231"], ["https://data.delijn.be/stops/302296", "https://data.delijn.be/stops/302299"], ["https://data.delijn.be/stops/400304", "https://data.delijn.be/stops/400958"], ["https://data.delijn.be/stops/105496", "https://data.delijn.be/stops/105504"], ["https://data.delijn.be/stops/208419", "https://data.delijn.be/stops/209386"], ["https://data.delijn.be/stops/405808", "https://data.delijn.be/stops/409692"], ["https://data.delijn.be/stops/402173", "https://data.delijn.be/stops/402484"], ["https://data.delijn.be/stops/105357", "https://data.delijn.be/stops/105608"], ["https://data.delijn.be/stops/202575", "https://data.delijn.be/stops/202576"], ["https://data.delijn.be/stops/106379", "https://data.delijn.be/stops/106380"], ["https://data.delijn.be/stops/101939", "https://data.delijn.be/stops/103751"], ["https://data.delijn.be/stops/200408", "https://data.delijn.be/stops/200436"], ["https://data.delijn.be/stops/503190", "https://data.delijn.be/stops/509746"], ["https://data.delijn.be/stops/204014", "https://data.delijn.be/stops/205686"], ["https://data.delijn.be/stops/407256", "https://data.delijn.be/stops/409492"], ["https://data.delijn.be/stops/206855", "https://data.delijn.be/stops/207855"], ["https://data.delijn.be/stops/504841", "https://data.delijn.be/stops/508263"], ["https://data.delijn.be/stops/103731", "https://data.delijn.be/stops/106219"], ["https://data.delijn.be/stops/200433", "https://data.delijn.be/stops/201433"], ["https://data.delijn.be/stops/404762", "https://data.delijn.be/stops/404811"], ["https://data.delijn.be/stops/404118", "https://data.delijn.be/stops/404171"], ["https://data.delijn.be/stops/300811", "https://data.delijn.be/stops/300831"], ["https://data.delijn.be/stops/203362", "https://data.delijn.be/stops/203990"], ["https://data.delijn.be/stops/302199", "https://data.delijn.be/stops/308107"], ["https://data.delijn.be/stops/302885", "https://data.delijn.be/stops/303079"], ["https://data.delijn.be/stops/206420", "https://data.delijn.be/stops/306731"], ["https://data.delijn.be/stops/200272", "https://data.delijn.be/stops/201272"], ["https://data.delijn.be/stops/304549", "https://data.delijn.be/stops/309669"], ["https://data.delijn.be/stops/508717", "https://data.delijn.be/stops/508726"], ["https://data.delijn.be/stops/205367", "https://data.delijn.be/stops/214012"], ["https://data.delijn.be/stops/206430", "https://data.delijn.be/stops/209692"], ["https://data.delijn.be/stops/300525", "https://data.delijn.be/stops/303264"], ["https://data.delijn.be/stops/502596", "https://data.delijn.be/stops/505724"], ["https://data.delijn.be/stops/204409", "https://data.delijn.be/stops/204410"], ["https://data.delijn.be/stops/505285", "https://data.delijn.be/stops/505816"], ["https://data.delijn.be/stops/208368", "https://data.delijn.be/stops/209193"], ["https://data.delijn.be/stops/402002", "https://data.delijn.be/stops/406143"], ["https://data.delijn.be/stops/300862", "https://data.delijn.be/stops/301057"], ["https://data.delijn.be/stops/408492", "https://data.delijn.be/stops/408951"], ["https://data.delijn.be/stops/304352", "https://data.delijn.be/stops/304358"], ["https://data.delijn.be/stops/302822", "https://data.delijn.be/stops/302823"], ["https://data.delijn.be/stops/402888", "https://data.delijn.be/stops/402890"], ["https://data.delijn.be/stops/300748", "https://data.delijn.be/stops/303223"], ["https://data.delijn.be/stops/109391", "https://data.delijn.be/stops/405883"], ["https://data.delijn.be/stops/302400", "https://data.delijn.be/stops/302401"], ["https://data.delijn.be/stops/107224", "https://data.delijn.be/stops/107225"], ["https://data.delijn.be/stops/308450", "https://data.delijn.be/stops/308451"], ["https://data.delijn.be/stops/508191", "https://data.delijn.be/stops/508193"], ["https://data.delijn.be/stops/204111", "https://data.delijn.be/stops/204685"], ["https://data.delijn.be/stops/202872", "https://data.delijn.be/stops/204975"], ["https://data.delijn.be/stops/303668", "https://data.delijn.be/stops/308902"], ["https://data.delijn.be/stops/301725", "https://data.delijn.be/stops/308430"], ["https://data.delijn.be/stops/409416", "https://data.delijn.be/stops/409418"], ["https://data.delijn.be/stops/305220", "https://data.delijn.be/stops/305991"], ["https://data.delijn.be/stops/504025", "https://data.delijn.be/stops/508996"], ["https://data.delijn.be/stops/401287", "https://data.delijn.be/stops/401326"], ["https://data.delijn.be/stops/300815", "https://data.delijn.be/stops/300816"], ["https://data.delijn.be/stops/303645", "https://data.delijn.be/stops/305559"], ["https://data.delijn.be/stops/308214", "https://data.delijn.be/stops/308233"], ["https://data.delijn.be/stops/406578", "https://data.delijn.be/stops/410202"], ["https://data.delijn.be/stops/400718", "https://data.delijn.be/stops/407120"], ["https://data.delijn.be/stops/400705", "https://data.delijn.be/stops/401919"], ["https://data.delijn.be/stops/303273", "https://data.delijn.be/stops/303276"], ["https://data.delijn.be/stops/206323", "https://data.delijn.be/stops/207484"], ["https://data.delijn.be/stops/303638", "https://data.delijn.be/stops/304521"], ["https://data.delijn.be/stops/101047", "https://data.delijn.be/stops/105988"], ["https://data.delijn.be/stops/302303", "https://data.delijn.be/stops/302307"], ["https://data.delijn.be/stops/401432", "https://data.delijn.be/stops/401494"], ["https://data.delijn.be/stops/303546", "https://data.delijn.be/stops/303548"], ["https://data.delijn.be/stops/407588", "https://data.delijn.be/stops/407680"], ["https://data.delijn.be/stops/203085", "https://data.delijn.be/stops/203086"], ["https://data.delijn.be/stops/201412", "https://data.delijn.be/stops/203360"], ["https://data.delijn.be/stops/104884", "https://data.delijn.be/stops/205629"], ["https://data.delijn.be/stops/104625", "https://data.delijn.be/stops/104890"], ["https://data.delijn.be/stops/301971", "https://data.delijn.be/stops/301998"], ["https://data.delijn.be/stops/304173", "https://data.delijn.be/stops/304174"], ["https://data.delijn.be/stops/218008", "https://data.delijn.be/stops/218009"], ["https://data.delijn.be/stops/501487", "https://data.delijn.be/stops/506733"], ["https://data.delijn.be/stops/502140", "https://data.delijn.be/stops/502643"], ["https://data.delijn.be/stops/400267", "https://data.delijn.be/stops/408363"], ["https://data.delijn.be/stops/404642", "https://data.delijn.be/stops/404996"], ["https://data.delijn.be/stops/406668", "https://data.delijn.be/stops/406987"], ["https://data.delijn.be/stops/108301", "https://data.delijn.be/stops/109305"], ["https://data.delijn.be/stops/405146", "https://data.delijn.be/stops/405287"], ["https://data.delijn.be/stops/300006", "https://data.delijn.be/stops/300007"], ["https://data.delijn.be/stops/505640", "https://data.delijn.be/stops/508964"], ["https://data.delijn.be/stops/504018", "https://data.delijn.be/stops/504507"], ["https://data.delijn.be/stops/200062", "https://data.delijn.be/stops/201444"], ["https://data.delijn.be/stops/509484", "https://data.delijn.be/stops/509487"], ["https://data.delijn.be/stops/300962", "https://data.delijn.be/stops/301156"], ["https://data.delijn.be/stops/204292", "https://data.delijn.be/stops/204547"], ["https://data.delijn.be/stops/302379", "https://data.delijn.be/stops/307842"], ["https://data.delijn.be/stops/408497", "https://data.delijn.be/stops/408609"], ["https://data.delijn.be/stops/406033", "https://data.delijn.be/stops/406081"], ["https://data.delijn.be/stops/400036", "https://data.delijn.be/stops/400318"], ["https://data.delijn.be/stops/305226", "https://data.delijn.be/stops/305281"], ["https://data.delijn.be/stops/502282", "https://data.delijn.be/stops/505338"], ["https://data.delijn.be/stops/406046", "https://data.delijn.be/stops/406047"], ["https://data.delijn.be/stops/106139", "https://data.delijn.be/stops/106141"], ["https://data.delijn.be/stops/200512", "https://data.delijn.be/stops/201513"], ["https://data.delijn.be/stops/502681", "https://data.delijn.be/stops/507084"], ["https://data.delijn.be/stops/301368", "https://data.delijn.be/stops/306135"], ["https://data.delijn.be/stops/106022", "https://data.delijn.be/stops/106191"], ["https://data.delijn.be/stops/101061", "https://data.delijn.be/stops/106750"], ["https://data.delijn.be/stops/503995", "https://data.delijn.be/stops/508409"], ["https://data.delijn.be/stops/108071", "https://data.delijn.be/stops/108461"], ["https://data.delijn.be/stops/400792", "https://data.delijn.be/stops/409545"], ["https://data.delijn.be/stops/206756", "https://data.delijn.be/stops/207849"], ["https://data.delijn.be/stops/504584", "https://data.delijn.be/stops/509588"], ["https://data.delijn.be/stops/305773", "https://data.delijn.be/stops/305774"], ["https://data.delijn.be/stops/405372", "https://data.delijn.be/stops/405385"], ["https://data.delijn.be/stops/504422", "https://data.delijn.be/stops/509422"], ["https://data.delijn.be/stops/102491", "https://data.delijn.be/stops/400042"], ["https://data.delijn.be/stops/106083", "https://data.delijn.be/stops/106135"], ["https://data.delijn.be/stops/505338", "https://data.delijn.be/stops/505560"], ["https://data.delijn.be/stops/109108", "https://data.delijn.be/stops/109109"], ["https://data.delijn.be/stops/201933", "https://data.delijn.be/stops/207569"], ["https://data.delijn.be/stops/503985", "https://data.delijn.be/stops/507709"], ["https://data.delijn.be/stops/200842", "https://data.delijn.be/stops/202308"], ["https://data.delijn.be/stops/201670", "https://data.delijn.be/stops/203321"], ["https://data.delijn.be/stops/301716", "https://data.delijn.be/stops/308876"], ["https://data.delijn.be/stops/206048", "https://data.delijn.be/stops/206049"], ["https://data.delijn.be/stops/204595", "https://data.delijn.be/stops/204799"], ["https://data.delijn.be/stops/401085", "https://data.delijn.be/stops/409058"], ["https://data.delijn.be/stops/301842", "https://data.delijn.be/stops/301847"], ["https://data.delijn.be/stops/509512", "https://data.delijn.be/stops/509947"], ["https://data.delijn.be/stops/403134", "https://data.delijn.be/stops/410351"], ["https://data.delijn.be/stops/404767", "https://data.delijn.be/stops/404791"], ["https://data.delijn.be/stops/404729", "https://data.delijn.be/stops/404801"], ["https://data.delijn.be/stops/403599", "https://data.delijn.be/stops/408482"], ["https://data.delijn.be/stops/204681", "https://data.delijn.be/stops/205680"], ["https://data.delijn.be/stops/207710", "https://data.delijn.be/stops/304080"], ["https://data.delijn.be/stops/301462", "https://data.delijn.be/stops/308071"], ["https://data.delijn.be/stops/301027", "https://data.delijn.be/stops/301035"], ["https://data.delijn.be/stops/301502", "https://data.delijn.be/stops/301509"], ["https://data.delijn.be/stops/300366", "https://data.delijn.be/stops/307720"], ["https://data.delijn.be/stops/202588", "https://data.delijn.be/stops/203435"], ["https://data.delijn.be/stops/501119", "https://data.delijn.be/stops/506125"], ["https://data.delijn.be/stops/107229", "https://data.delijn.be/stops/107231"], ["https://data.delijn.be/stops/202743", "https://data.delijn.be/stops/208713"], ["https://data.delijn.be/stops/404227", "https://data.delijn.be/stops/404409"], ["https://data.delijn.be/stops/200433", "https://data.delijn.be/stops/201549"], ["https://data.delijn.be/stops/404081", "https://data.delijn.be/stops/404084"], ["https://data.delijn.be/stops/108650", "https://data.delijn.be/stops/108950"], ["https://data.delijn.be/stops/404494", "https://data.delijn.be/stops/405623"], ["https://data.delijn.be/stops/305654", "https://data.delijn.be/stops/305656"], ["https://data.delijn.be/stops/304226", "https://data.delijn.be/stops/307064"], ["https://data.delijn.be/stops/201850", "https://data.delijn.be/stops/203015"], ["https://data.delijn.be/stops/206616", "https://data.delijn.be/stops/206681"], ["https://data.delijn.be/stops/503374", "https://data.delijn.be/stops/503380"], ["https://data.delijn.be/stops/302313", "https://data.delijn.be/stops/302318"], ["https://data.delijn.be/stops/304070", "https://data.delijn.be/stops/304113"], ["https://data.delijn.be/stops/102648", "https://data.delijn.be/stops/102657"], ["https://data.delijn.be/stops/201165", "https://data.delijn.be/stops/202174"], ["https://data.delijn.be/stops/304248", "https://data.delijn.be/stops/306826"], ["https://data.delijn.be/stops/204585", "https://data.delijn.be/stops/204594"], ["https://data.delijn.be/stops/206429", "https://data.delijn.be/stops/208752"], ["https://data.delijn.be/stops/306707", "https://data.delijn.be/stops/306713"], ["https://data.delijn.be/stops/300134", "https://data.delijn.be/stops/300144"], ["https://data.delijn.be/stops/109576", "https://data.delijn.be/stops/109578"], ["https://data.delijn.be/stops/503118", "https://data.delijn.be/stops/508121"], ["https://data.delijn.be/stops/209085", "https://data.delijn.be/stops/209696"], ["https://data.delijn.be/stops/101292", "https://data.delijn.be/stops/105396"], ["https://data.delijn.be/stops/405158", "https://data.delijn.be/stops/405231"], ["https://data.delijn.be/stops/306371", "https://data.delijn.be/stops/306972"], ["https://data.delijn.be/stops/301271", "https://data.delijn.be/stops/301278"], ["https://data.delijn.be/stops/307724", "https://data.delijn.be/stops/307726"], ["https://data.delijn.be/stops/106699", "https://data.delijn.be/stops/106701"], ["https://data.delijn.be/stops/505568", "https://data.delijn.be/stops/508797"], ["https://data.delijn.be/stops/203003", "https://data.delijn.be/stops/203023"], ["https://data.delijn.be/stops/105481", "https://data.delijn.be/stops/105482"], ["https://data.delijn.be/stops/505996", "https://data.delijn.be/stops/509936"], ["https://data.delijn.be/stops/406527", "https://data.delijn.be/stops/409260"], ["https://data.delijn.be/stops/107173", "https://data.delijn.be/stops/107176"], ["https://data.delijn.be/stops/400765", "https://data.delijn.be/stops/400773"], ["https://data.delijn.be/stops/206005", "https://data.delijn.be/stops/207007"], ["https://data.delijn.be/stops/301944", "https://data.delijn.be/stops/307792"], ["https://data.delijn.be/stops/400093", "https://data.delijn.be/stops/400165"], ["https://data.delijn.be/stops/503907", "https://data.delijn.be/stops/508907"], ["https://data.delijn.be/stops/302995", "https://data.delijn.be/stops/303142"], ["https://data.delijn.be/stops/507385", "https://data.delijn.be/stops/507670"], ["https://data.delijn.be/stops/204449", "https://data.delijn.be/stops/205311"], ["https://data.delijn.be/stops/101001", "https://data.delijn.be/stops/105671"], ["https://data.delijn.be/stops/408612", "https://data.delijn.be/stops/408750"], ["https://data.delijn.be/stops/400583", "https://data.delijn.be/stops/400624"], ["https://data.delijn.be/stops/502485", "https://data.delijn.be/stops/505340"], ["https://data.delijn.be/stops/200026", "https://data.delijn.be/stops/201447"], ["https://data.delijn.be/stops/104018", "https://data.delijn.be/stops/104019"], ["https://data.delijn.be/stops/204641", "https://data.delijn.be/stops/205641"], ["https://data.delijn.be/stops/200214", "https://data.delijn.be/stops/203546"], ["https://data.delijn.be/stops/405458", "https://data.delijn.be/stops/405459"], ["https://data.delijn.be/stops/200507", "https://data.delijn.be/stops/201406"], ["https://data.delijn.be/stops/300821", "https://data.delijn.be/stops/300876"], ["https://data.delijn.be/stops/303021", "https://data.delijn.be/stops/303022"], ["https://data.delijn.be/stops/103267", "https://data.delijn.be/stops/103268"], ["https://data.delijn.be/stops/203451", "https://data.delijn.be/stops/210095"], ["https://data.delijn.be/stops/504864", "https://data.delijn.be/stops/505629"], ["https://data.delijn.be/stops/406204", "https://data.delijn.be/stops/406295"], ["https://data.delijn.be/stops/508648", "https://data.delijn.be/stops/508949"], ["https://data.delijn.be/stops/408973", "https://data.delijn.be/stops/408976"], ["https://data.delijn.be/stops/302346", "https://data.delijn.be/stops/302347"], ["https://data.delijn.be/stops/505438", "https://data.delijn.be/stops/507288"], ["https://data.delijn.be/stops/303652", "https://data.delijn.be/stops/308956"], ["https://data.delijn.be/stops/202531", "https://data.delijn.be/stops/203531"], ["https://data.delijn.be/stops/105236", "https://data.delijn.be/stops/105238"], ["https://data.delijn.be/stops/207680", "https://data.delijn.be/stops/208142"], ["https://data.delijn.be/stops/302846", "https://data.delijn.be/stops/303326"], ["https://data.delijn.be/stops/403109", "https://data.delijn.be/stops/403176"], ["https://data.delijn.be/stops/306900", "https://data.delijn.be/stops/308095"], ["https://data.delijn.be/stops/502643", "https://data.delijn.be/stops/502729"], ["https://data.delijn.be/stops/204609", "https://data.delijn.be/stops/205610"], ["https://data.delijn.be/stops/405208", "https://data.delijn.be/stops/405209"], ["https://data.delijn.be/stops/502565", "https://data.delijn.be/stops/502582"], ["https://data.delijn.be/stops/300367", "https://data.delijn.be/stops/300369"], ["https://data.delijn.be/stops/407802", "https://data.delijn.be/stops/407852"], ["https://data.delijn.be/stops/401345", "https://data.delijn.be/stops/404777"], ["https://data.delijn.be/stops/400577", "https://data.delijn.be/stops/404136"], ["https://data.delijn.be/stops/308213", "https://data.delijn.be/stops/308216"], ["https://data.delijn.be/stops/409264", "https://data.delijn.be/stops/409284"], ["https://data.delijn.be/stops/200103", "https://data.delijn.be/stops/211001"], ["https://data.delijn.be/stops/301675", "https://data.delijn.be/stops/301688"], ["https://data.delijn.be/stops/104898", "https://data.delijn.be/stops/108957"], ["https://data.delijn.be/stops/503929", "https://data.delijn.be/stops/508918"], ["https://data.delijn.be/stops/303136", "https://data.delijn.be/stops/308757"], ["https://data.delijn.be/stops/302467", "https://data.delijn.be/stops/306744"], ["https://data.delijn.be/stops/407724", "https://data.delijn.be/stops/409779"], ["https://data.delijn.be/stops/105689", "https://data.delijn.be/stops/105690"], ["https://data.delijn.be/stops/300780", "https://data.delijn.be/stops/300833"], ["https://data.delijn.be/stops/303428", "https://data.delijn.be/stops/307951"], ["https://data.delijn.be/stops/102818", "https://data.delijn.be/stops/102822"], ["https://data.delijn.be/stops/304481", "https://data.delijn.be/stops/304483"], ["https://data.delijn.be/stops/103545", "https://data.delijn.be/stops/104660"], ["https://data.delijn.be/stops/503372", "https://data.delijn.be/stops/503416"], ["https://data.delijn.be/stops/202419", "https://data.delijn.be/stops/203419"], ["https://data.delijn.be/stops/401845", "https://data.delijn.be/stops/406347"], ["https://data.delijn.be/stops/503362", "https://data.delijn.be/stops/503694"], ["https://data.delijn.be/stops/200114", "https://data.delijn.be/stops/202059"], ["https://data.delijn.be/stops/301459", "https://data.delijn.be/stops/305665"], ["https://data.delijn.be/stops/206241", "https://data.delijn.be/stops/206406"], ["https://data.delijn.be/stops/106629", "https://data.delijn.be/stops/106630"], ["https://data.delijn.be/stops/202792", "https://data.delijn.be/stops/202793"], ["https://data.delijn.be/stops/503886", "https://data.delijn.be/stops/508116"], ["https://data.delijn.be/stops/200246", "https://data.delijn.be/stops/201246"], ["https://data.delijn.be/stops/105433", "https://data.delijn.be/stops/109839"], ["https://data.delijn.be/stops/204061", "https://data.delijn.be/stops/205322"], ["https://data.delijn.be/stops/404636", "https://data.delijn.be/stops/406962"], ["https://data.delijn.be/stops/305722", "https://data.delijn.be/stops/305724"], ["https://data.delijn.be/stops/404108", "https://data.delijn.be/stops/404204"], ["https://data.delijn.be/stops/200093", "https://data.delijn.be/stops/201094"], ["https://data.delijn.be/stops/204752", "https://data.delijn.be/stops/205106"], ["https://data.delijn.be/stops/303536", "https://data.delijn.be/stops/303877"], ["https://data.delijn.be/stops/303653", "https://data.delijn.be/stops/308528"], ["https://data.delijn.be/stops/200873", "https://data.delijn.be/stops/202310"], ["https://data.delijn.be/stops/402080", "https://data.delijn.be/stops/402447"], ["https://data.delijn.be/stops/101683", "https://data.delijn.be/stops/103696"], ["https://data.delijn.be/stops/505558", "https://data.delijn.be/stops/507266"], ["https://data.delijn.be/stops/201863", "https://data.delijn.be/stops/202298"], ["https://data.delijn.be/stops/402577", "https://data.delijn.be/stops/402580"], ["https://data.delijn.be/stops/211011", "https://data.delijn.be/stops/507276"], ["https://data.delijn.be/stops/502721", "https://data.delijn.be/stops/507645"], ["https://data.delijn.be/stops/202267", "https://data.delijn.be/stops/202268"], ["https://data.delijn.be/stops/106085", "https://data.delijn.be/stops/106086"], ["https://data.delijn.be/stops/305594", "https://data.delijn.be/stops/305608"], ["https://data.delijn.be/stops/200661", "https://data.delijn.be/stops/200675"], ["https://data.delijn.be/stops/306154", "https://data.delijn.be/stops/306155"], ["https://data.delijn.be/stops/305104", "https://data.delijn.be/stops/305126"], ["https://data.delijn.be/stops/202044", "https://data.delijn.be/stops/210122"], ["https://data.delijn.be/stops/206043", "https://data.delijn.be/stops/207538"], ["https://data.delijn.be/stops/201412", "https://data.delijn.be/stops/201453"], ["https://data.delijn.be/stops/501538", "https://data.delijn.be/stops/502719"], ["https://data.delijn.be/stops/205654", "https://data.delijn.be/stops/214001"], ["https://data.delijn.be/stops/403064", "https://data.delijn.be/stops/403121"], ["https://data.delijn.be/stops/301919", "https://data.delijn.be/stops/303178"], ["https://data.delijn.be/stops/205708", "https://data.delijn.be/stops/205709"], ["https://data.delijn.be/stops/507942", "https://data.delijn.be/stops/507943"], ["https://data.delijn.be/stops/101933", "https://data.delijn.be/stops/101934"], ["https://data.delijn.be/stops/208625", "https://data.delijn.be/stops/219020"], ["https://data.delijn.be/stops/303385", "https://data.delijn.be/stops/303386"], ["https://data.delijn.be/stops/201352", "https://data.delijn.be/stops/201573"], ["https://data.delijn.be/stops/305305", "https://data.delijn.be/stops/305324"], ["https://data.delijn.be/stops/105552", "https://data.delijn.be/stops/105553"], ["https://data.delijn.be/stops/408710", "https://data.delijn.be/stops/408714"], ["https://data.delijn.be/stops/500874", "https://data.delijn.be/stops/505798"], ["https://data.delijn.be/stops/101783", "https://data.delijn.be/stops/107875"], ["https://data.delijn.be/stops/200047", "https://data.delijn.be/stops/200141"], ["https://data.delijn.be/stops/101865", "https://data.delijn.be/stops/105445"], ["https://data.delijn.be/stops/301045", "https://data.delijn.be/stops/306688"], ["https://data.delijn.be/stops/106456", "https://data.delijn.be/stops/106457"], ["https://data.delijn.be/stops/102725", "https://data.delijn.be/stops/105176"], ["https://data.delijn.be/stops/501662", "https://data.delijn.be/stops/501732"], ["https://data.delijn.be/stops/405025", "https://data.delijn.be/stops/405091"], ["https://data.delijn.be/stops/505937", "https://data.delijn.be/stops/505999"], ["https://data.delijn.be/stops/201757", "https://data.delijn.be/stops/201782"], ["https://data.delijn.be/stops/302162", "https://data.delijn.be/stops/307805"], ["https://data.delijn.be/stops/305426", "https://data.delijn.be/stops/305434"], ["https://data.delijn.be/stops/505157", "https://data.delijn.be/stops/505945"], ["https://data.delijn.be/stops/108297", "https://data.delijn.be/stops/108299"], ["https://data.delijn.be/stops/208554", "https://data.delijn.be/stops/209552"], ["https://data.delijn.be/stops/404918", "https://data.delijn.be/stops/404919"], ["https://data.delijn.be/stops/200645", "https://data.delijn.be/stops/203777"], ["https://data.delijn.be/stops/302080", "https://data.delijn.be/stops/302081"], ["https://data.delijn.be/stops/305118", "https://data.delijn.be/stops/305123"], ["https://data.delijn.be/stops/106280", "https://data.delijn.be/stops/106343"], ["https://data.delijn.be/stops/201584", "https://data.delijn.be/stops/204920"], ["https://data.delijn.be/stops/502411", "https://data.delijn.be/stops/507385"], ["https://data.delijn.be/stops/200188", "https://data.delijn.be/stops/201188"], ["https://data.delijn.be/stops/302890", "https://data.delijn.be/stops/302894"], ["https://data.delijn.be/stops/104466", "https://data.delijn.be/stops/107956"], ["https://data.delijn.be/stops/401766", "https://data.delijn.be/stops/401832"], ["https://data.delijn.be/stops/108242", "https://data.delijn.be/stops/108243"], ["https://data.delijn.be/stops/102832", "https://data.delijn.be/stops/108920"], ["https://data.delijn.be/stops/204057", "https://data.delijn.be/stops/205725"], ["https://data.delijn.be/stops/303619", "https://data.delijn.be/stops/303621"], ["https://data.delijn.be/stops/400352", "https://data.delijn.be/stops/400404"], ["https://data.delijn.be/stops/305066", "https://data.delijn.be/stops/305074"], ["https://data.delijn.be/stops/508192", "https://data.delijn.be/stops/508205"], ["https://data.delijn.be/stops/400934", "https://data.delijn.be/stops/400935"], ["https://data.delijn.be/stops/103737", "https://data.delijn.be/stops/109462"], ["https://data.delijn.be/stops/306729", "https://data.delijn.be/stops/306730"], ["https://data.delijn.be/stops/104469", "https://data.delijn.be/stops/104573"], ["https://data.delijn.be/stops/105897", "https://data.delijn.be/stops/105934"], ["https://data.delijn.be/stops/105592", "https://data.delijn.be/stops/105594"], ["https://data.delijn.be/stops/507036", "https://data.delijn.be/stops/507308"], ["https://data.delijn.be/stops/306254", "https://data.delijn.be/stops/306256"], ["https://data.delijn.be/stops/404101", "https://data.delijn.be/stops/404102"], ["https://data.delijn.be/stops/208343", "https://data.delijn.be/stops/209343"], ["https://data.delijn.be/stops/307255", "https://data.delijn.be/stops/307467"], ["https://data.delijn.be/stops/206041", "https://data.delijn.be/stops/207297"], ["https://data.delijn.be/stops/504718", "https://data.delijn.be/stops/509718"], ["https://data.delijn.be/stops/105744", "https://data.delijn.be/stops/109833"], ["https://data.delijn.be/stops/403140", "https://data.delijn.be/stops/403215"], ["https://data.delijn.be/stops/109143", "https://data.delijn.be/stops/109146"], ["https://data.delijn.be/stops/208152", "https://data.delijn.be/stops/208660"], ["https://data.delijn.be/stops/404524", "https://data.delijn.be/stops/407237"], ["https://data.delijn.be/stops/503302", "https://data.delijn.be/stops/503307"], ["https://data.delijn.be/stops/404708", "https://data.delijn.be/stops/404789"], ["https://data.delijn.be/stops/306260", "https://data.delijn.be/stops/306301"], ["https://data.delijn.be/stops/103238", "https://data.delijn.be/stops/107854"], ["https://data.delijn.be/stops/208584", "https://data.delijn.be/stops/209584"], ["https://data.delijn.be/stops/106266", "https://data.delijn.be/stops/106272"], ["https://data.delijn.be/stops/205999", "https://data.delijn.be/stops/206012"], ["https://data.delijn.be/stops/206858", "https://data.delijn.be/stops/207858"], ["https://data.delijn.be/stops/302297", "https://data.delijn.be/stops/303298"], ["https://data.delijn.be/stops/301596", "https://data.delijn.be/stops/301597"], ["https://data.delijn.be/stops/206702", "https://data.delijn.be/stops/206731"], ["https://data.delijn.be/stops/403912", "https://data.delijn.be/stops/403913"], ["https://data.delijn.be/stops/200142", "https://data.delijn.be/stops/211094"], ["https://data.delijn.be/stops/301189", "https://data.delijn.be/stops/301191"], ["https://data.delijn.be/stops/300631", "https://data.delijn.be/stops/304132"], ["https://data.delijn.be/stops/206276", "https://data.delijn.be/stops/207962"], ["https://data.delijn.be/stops/107887", "https://data.delijn.be/stops/107889"], ["https://data.delijn.be/stops/305688", "https://data.delijn.be/stops/305711"], ["https://data.delijn.be/stops/503021", "https://data.delijn.be/stops/505285"], ["https://data.delijn.be/stops/201279", "https://data.delijn.be/stops/208736"], ["https://data.delijn.be/stops/201489", "https://data.delijn.be/stops/201490"], ["https://data.delijn.be/stops/206606", "https://data.delijn.be/stops/206702"], ["https://data.delijn.be/stops/401112", "https://data.delijn.be/stops/401129"], ["https://data.delijn.be/stops/404861", "https://data.delijn.be/stops/404863"], ["https://data.delijn.be/stops/107907", "https://data.delijn.be/stops/107909"], ["https://data.delijn.be/stops/403932", "https://data.delijn.be/stops/403939"], ["https://data.delijn.be/stops/405706", "https://data.delijn.be/stops/405741"], ["https://data.delijn.be/stops/202188", "https://data.delijn.be/stops/203188"], ["https://data.delijn.be/stops/204755", "https://data.delijn.be/stops/205598"], ["https://data.delijn.be/stops/504654", "https://data.delijn.be/stops/509237"], ["https://data.delijn.be/stops/406231", "https://data.delijn.be/stops/406236"], ["https://data.delijn.be/stops/503836", "https://data.delijn.be/stops/508836"], ["https://data.delijn.be/stops/303878", "https://data.delijn.be/stops/303879"], ["https://data.delijn.be/stops/308236", "https://data.delijn.be/stops/308237"], ["https://data.delijn.be/stops/109083", "https://data.delijn.be/stops/109086"], ["https://data.delijn.be/stops/104284", "https://data.delijn.be/stops/105902"], ["https://data.delijn.be/stops/201518", "https://data.delijn.be/stops/205924"], ["https://data.delijn.be/stops/504299", "https://data.delijn.be/stops/509317"], ["https://data.delijn.be/stops/401373", "https://data.delijn.be/stops/401377"], ["https://data.delijn.be/stops/208393", "https://data.delijn.be/stops/208394"], ["https://data.delijn.be/stops/401401", "https://data.delijn.be/stops/301037"], ["https://data.delijn.be/stops/301097", "https://data.delijn.be/stops/306678"], ["https://data.delijn.be/stops/204031", "https://data.delijn.be/stops/205029"], ["https://data.delijn.be/stops/103318", "https://data.delijn.be/stops/107185"], ["https://data.delijn.be/stops/503925", "https://data.delijn.be/stops/508915"], ["https://data.delijn.be/stops/202369", "https://data.delijn.be/stops/203368"], ["https://data.delijn.be/stops/206381", "https://data.delijn.be/stops/207382"], ["https://data.delijn.be/stops/504244", "https://data.delijn.be/stops/504596"], ["https://data.delijn.be/stops/101456", "https://data.delijn.be/stops/102623"], ["https://data.delijn.be/stops/504546", "https://data.delijn.be/stops/504549"], ["https://data.delijn.be/stops/204519", "https://data.delijn.be/stops/205521"], ["https://data.delijn.be/stops/504875", "https://data.delijn.be/stops/505945"], ["https://data.delijn.be/stops/206864", "https://data.delijn.be/stops/207232"], ["https://data.delijn.be/stops/408502", "https://data.delijn.be/stops/408524"], ["https://data.delijn.be/stops/300602", "https://data.delijn.be/stops/300603"], ["https://data.delijn.be/stops/201226", "https://data.delijn.be/stops/201267"], ["https://data.delijn.be/stops/302378", "https://data.delijn.be/stops/307841"], ["https://data.delijn.be/stops/407399", "https://data.delijn.be/stops/408482"], ["https://data.delijn.be/stops/503101", "https://data.delijn.be/stops/503974"], ["https://data.delijn.be/stops/304838", "https://data.delijn.be/stops/308542"], ["https://data.delijn.be/stops/401549", "https://data.delijn.be/stops/401661"], ["https://data.delijn.be/stops/302396", "https://data.delijn.be/stops/308555"], ["https://data.delijn.be/stops/204365", "https://data.delijn.be/stops/204718"], ["https://data.delijn.be/stops/106648", "https://data.delijn.be/stops/106649"], ["https://data.delijn.be/stops/202825", "https://data.delijn.be/stops/202826"], ["https://data.delijn.be/stops/102778", "https://data.delijn.be/stops/102953"], ["https://data.delijn.be/stops/303809", "https://data.delijn.be/stops/307031"], ["https://data.delijn.be/stops/300646", "https://data.delijn.be/stops/300663"], ["https://data.delijn.be/stops/304371", "https://data.delijn.be/stops/305993"], ["https://data.delijn.be/stops/206205", "https://data.delijn.be/stops/207687"], ["https://data.delijn.be/stops/101506", "https://data.delijn.be/stops/101507"], ["https://data.delijn.be/stops/304395", "https://data.delijn.be/stops/304396"], ["https://data.delijn.be/stops/108988", "https://data.delijn.be/stops/109089"], ["https://data.delijn.be/stops/200144", "https://data.delijn.be/stops/205358"], ["https://data.delijn.be/stops/301915", "https://data.delijn.be/stops/301916"], ["https://data.delijn.be/stops/105825", "https://data.delijn.be/stops/305835"], ["https://data.delijn.be/stops/304369", "https://data.delijn.be/stops/304414"], ["https://data.delijn.be/stops/106886", "https://data.delijn.be/stops/109901"], ["https://data.delijn.be/stops/202279", "https://data.delijn.be/stops/203186"], ["https://data.delijn.be/stops/304783", "https://data.delijn.be/stops/308788"], ["https://data.delijn.be/stops/102742", "https://data.delijn.be/stops/102744"], ["https://data.delijn.be/stops/505845", "https://data.delijn.be/stops/508952"], ["https://data.delijn.be/stops/102894", "https://data.delijn.be/stops/102926"], ["https://data.delijn.be/stops/300246", "https://data.delijn.be/stops/300255"], ["https://data.delijn.be/stops/208381", "https://data.delijn.be/stops/209295"], ["https://data.delijn.be/stops/106027", "https://data.delijn.be/stops/106028"], ["https://data.delijn.be/stops/407229", "https://data.delijn.be/stops/407506"], ["https://data.delijn.be/stops/208369", "https://data.delijn.be/stops/209454"], ["https://data.delijn.be/stops/102289", "https://data.delijn.be/stops/108019"], ["https://data.delijn.be/stops/200726", "https://data.delijn.be/stops/203593"], ["https://data.delijn.be/stops/102407", "https://data.delijn.be/stops/402018"], ["https://data.delijn.be/stops/502183", "https://data.delijn.be/stops/507183"], ["https://data.delijn.be/stops/307536", "https://data.delijn.be/stops/307537"], ["https://data.delijn.be/stops/109151", "https://data.delijn.be/stops/109192"], ["https://data.delijn.be/stops/208403", "https://data.delijn.be/stops/209335"], ["https://data.delijn.be/stops/305268", "https://data.delijn.be/stops/305287"], ["https://data.delijn.be/stops/106183", "https://data.delijn.be/stops/107436"], ["https://data.delijn.be/stops/402578", "https://data.delijn.be/stops/408447"], ["https://data.delijn.be/stops/203049", "https://data.delijn.be/stops/203436"], ["https://data.delijn.be/stops/501011", "https://data.delijn.be/stops/505824"], ["https://data.delijn.be/stops/204670", "https://data.delijn.be/stops/204830"], ["https://data.delijn.be/stops/200226", "https://data.delijn.be/stops/201223"], ["https://data.delijn.be/stops/308067", "https://data.delijn.be/stops/308068"], ["https://data.delijn.be/stops/408096", "https://data.delijn.be/stops/408106"], ["https://data.delijn.be/stops/502362", "https://data.delijn.be/stops/505014"], ["https://data.delijn.be/stops/204714", "https://data.delijn.be/stops/205714"], ["https://data.delijn.be/stops/102229", "https://data.delijn.be/stops/102231"], ["https://data.delijn.be/stops/505825", "https://data.delijn.be/stops/509890"], ["https://data.delijn.be/stops/200834", "https://data.delijn.be/stops/201883"], ["https://data.delijn.be/stops/402170", "https://data.delijn.be/stops/402171"], ["https://data.delijn.be/stops/300955", "https://data.delijn.be/stops/300969"], ["https://data.delijn.be/stops/400769", "https://data.delijn.be/stops/405276"], ["https://data.delijn.be/stops/505526", "https://data.delijn.be/stops/508656"], ["https://data.delijn.be/stops/302804", "https://data.delijn.be/stops/308867"], ["https://data.delijn.be/stops/503412", "https://data.delijn.be/stops/508986"], ["https://data.delijn.be/stops/308080", "https://data.delijn.be/stops/308081"], ["https://data.delijn.be/stops/109391", "https://data.delijn.be/stops/406386"], ["https://data.delijn.be/stops/206398", "https://data.delijn.be/stops/207398"], ["https://data.delijn.be/stops/303565", "https://data.delijn.be/stops/303571"], ["https://data.delijn.be/stops/102072", "https://data.delijn.be/stops/108696"], ["https://data.delijn.be/stops/101189", "https://data.delijn.be/stops/205651"], ["https://data.delijn.be/stops/505912", "https://data.delijn.be/stops/509110"], ["https://data.delijn.be/stops/408852", "https://data.delijn.be/stops/408861"], ["https://data.delijn.be/stops/405131", "https://data.delijn.be/stops/405196"], ["https://data.delijn.be/stops/504783", "https://data.delijn.be/stops/508982"], ["https://data.delijn.be/stops/102169", "https://data.delijn.be/stops/103582"], ["https://data.delijn.be/stops/409769", "https://data.delijn.be/stops/409771"], ["https://data.delijn.be/stops/301723", "https://data.delijn.be/stops/308429"], ["https://data.delijn.be/stops/500604", "https://data.delijn.be/stops/501547"], ["https://data.delijn.be/stops/501068", "https://data.delijn.be/stops/501641"], ["https://data.delijn.be/stops/301389", "https://data.delijn.be/stops/306152"], ["https://data.delijn.be/stops/206685", "https://data.delijn.be/stops/207423"], ["https://data.delijn.be/stops/201880", "https://data.delijn.be/stops/210851"], ["https://data.delijn.be/stops/408694", "https://data.delijn.be/stops/408695"], ["https://data.delijn.be/stops/204832", "https://data.delijn.be/stops/205078"], ["https://data.delijn.be/stops/400547", "https://data.delijn.be/stops/400962"], ["https://data.delijn.be/stops/305153", "https://data.delijn.be/stops/306954"], ["https://data.delijn.be/stops/101596", "https://data.delijn.be/stops/106587"], ["https://data.delijn.be/stops/205925", "https://data.delijn.be/stops/218935"], ["https://data.delijn.be/stops/402115", "https://data.delijn.be/stops/405490"], ["https://data.delijn.be/stops/403388", "https://data.delijn.be/stops/405328"], ["https://data.delijn.be/stops/103033", "https://data.delijn.be/stops/109776"], ["https://data.delijn.be/stops/508279", "https://data.delijn.be/stops/508289"], ["https://data.delijn.be/stops/201259", "https://data.delijn.be/stops/201302"], ["https://data.delijn.be/stops/502655", "https://data.delijn.be/stops/507664"], ["https://data.delijn.be/stops/103490", "https://data.delijn.be/stops/103494"], ["https://data.delijn.be/stops/207977", "https://data.delijn.be/stops/207988"], ["https://data.delijn.be/stops/204102", "https://data.delijn.be/stops/204586"], ["https://data.delijn.be/stops/200867", "https://data.delijn.be/stops/200869"], ["https://data.delijn.be/stops/504666", "https://data.delijn.be/stops/504668"], ["https://data.delijn.be/stops/207946", "https://data.delijn.be/stops/208072"], ["https://data.delijn.be/stops/206111", "https://data.delijn.be/stops/207111"], ["https://data.delijn.be/stops/302209", "https://data.delijn.be/stops/308103"], ["https://data.delijn.be/stops/502025", "https://data.delijn.be/stops/502049"], ["https://data.delijn.be/stops/507383", "https://data.delijn.be/stops/507909"], ["https://data.delijn.be/stops/305356", "https://data.delijn.be/stops/307972"], ["https://data.delijn.be/stops/106745", "https://data.delijn.be/stops/106746"], ["https://data.delijn.be/stops/208498", "https://data.delijn.be/stops/209498"], ["https://data.delijn.be/stops/403794", "https://data.delijn.be/stops/403812"], ["https://data.delijn.be/stops/206188", "https://data.delijn.be/stops/207188"], ["https://data.delijn.be/stops/405607", "https://data.delijn.be/stops/405692"], ["https://data.delijn.be/stops/308219", "https://data.delijn.be/stops/308222"], ["https://data.delijn.be/stops/102058", "https://data.delijn.be/stops/106865"], ["https://data.delijn.be/stops/505339", "https://data.delijn.be/stops/508008"], ["https://data.delijn.be/stops/201850", "https://data.delijn.be/stops/202407"], ["https://data.delijn.be/stops/502707", "https://data.delijn.be/stops/507707"], ["https://data.delijn.be/stops/301282", "https://data.delijn.be/stops/306253"], ["https://data.delijn.be/stops/405796", "https://data.delijn.be/stops/407351"], ["https://data.delijn.be/stops/205159", "https://data.delijn.be/stops/206396"], ["https://data.delijn.be/stops/503524", "https://data.delijn.be/stops/504794"], ["https://data.delijn.be/stops/108849", "https://data.delijn.be/stops/108851"], ["https://data.delijn.be/stops/509115", "https://data.delijn.be/stops/509116"], ["https://data.delijn.be/stops/504074", "https://data.delijn.be/stops/504689"], ["https://data.delijn.be/stops/105797", "https://data.delijn.be/stops/105942"], ["https://data.delijn.be/stops/105012", "https://data.delijn.be/stops/105013"], ["https://data.delijn.be/stops/208494", "https://data.delijn.be/stops/209638"], ["https://data.delijn.be/stops/502451", "https://data.delijn.be/stops/502452"], ["https://data.delijn.be/stops/401018", "https://data.delijn.be/stops/401145"], ["https://data.delijn.be/stops/204447", "https://data.delijn.be/stops/205350"], ["https://data.delijn.be/stops/308515", "https://data.delijn.be/stops/308517"], ["https://data.delijn.be/stops/403418", "https://data.delijn.be/stops/403518"], ["https://data.delijn.be/stops/400146", "https://data.delijn.be/stops/400147"], ["https://data.delijn.be/stops/104667", "https://data.delijn.be/stops/104889"], ["https://data.delijn.be/stops/101658", "https://data.delijn.be/stops/107809"], ["https://data.delijn.be/stops/208610", "https://data.delijn.be/stops/208614"], ["https://data.delijn.be/stops/201909", "https://data.delijn.be/stops/201910"], ["https://data.delijn.be/stops/410183", "https://data.delijn.be/stops/410207"], ["https://data.delijn.be/stops/404768", "https://data.delijn.be/stops/404775"], ["https://data.delijn.be/stops/300193", "https://data.delijn.be/stops/300221"], ["https://data.delijn.be/stops/400353", "https://data.delijn.be/stops/400396"], ["https://data.delijn.be/stops/501387", "https://data.delijn.be/stops/501389"], ["https://data.delijn.be/stops/305286", "https://data.delijn.be/stops/305288"], ["https://data.delijn.be/stops/208616", "https://data.delijn.be/stops/209655"], ["https://data.delijn.be/stops/403292", "https://data.delijn.be/stops/410029"], ["https://data.delijn.be/stops/400482", "https://data.delijn.be/stops/400484"], ["https://data.delijn.be/stops/200164", "https://data.delijn.be/stops/201164"], ["https://data.delijn.be/stops/401226", "https://data.delijn.be/stops/401228"], ["https://data.delijn.be/stops/201044", "https://data.delijn.be/stops/202456"], ["https://data.delijn.be/stops/402779", "https://data.delijn.be/stops/402783"], ["https://data.delijn.be/stops/402157", "https://data.delijn.be/stops/402327"], ["https://data.delijn.be/stops/304119", "https://data.delijn.be/stops/307546"], ["https://data.delijn.be/stops/501469", "https://data.delijn.be/stops/505034"], ["https://data.delijn.be/stops/200726", "https://data.delijn.be/stops/200729"], ["https://data.delijn.be/stops/503856", "https://data.delijn.be/stops/505993"], ["https://data.delijn.be/stops/407226", "https://data.delijn.be/stops/407227"], ["https://data.delijn.be/stops/304549", "https://data.delijn.be/stops/304550"], ["https://data.delijn.be/stops/208582", "https://data.delijn.be/stops/209083"], ["https://data.delijn.be/stops/102955", "https://data.delijn.be/stops/105870"], ["https://data.delijn.be/stops/409410", "https://data.delijn.be/stops/409767"], ["https://data.delijn.be/stops/405783", "https://data.delijn.be/stops/405787"], ["https://data.delijn.be/stops/505900", "https://data.delijn.be/stops/505947"], ["https://data.delijn.be/stops/208001", "https://data.delijn.be/stops/209001"], ["https://data.delijn.be/stops/501742", "https://data.delijn.be/stops/509501"], ["https://data.delijn.be/stops/407986", "https://data.delijn.be/stops/407990"], ["https://data.delijn.be/stops/509872", "https://data.delijn.be/stops/509970"], ["https://data.delijn.be/stops/301487", "https://data.delijn.be/stops/307959"], ["https://data.delijn.be/stops/101677", "https://data.delijn.be/stops/103699"], ["https://data.delijn.be/stops/102171", "https://data.delijn.be/stops/103744"], ["https://data.delijn.be/stops/105536", "https://data.delijn.be/stops/106250"], ["https://data.delijn.be/stops/402468", "https://data.delijn.be/stops/402469"], ["https://data.delijn.be/stops/203161", "https://data.delijn.be/stops/203162"], ["https://data.delijn.be/stops/400132", "https://data.delijn.be/stops/409199"], ["https://data.delijn.be/stops/208007", "https://data.delijn.be/stops/208012"], ["https://data.delijn.be/stops/302931", "https://data.delijn.be/stops/304504"], ["https://data.delijn.be/stops/102420", "https://data.delijn.be/stops/102425"], ["https://data.delijn.be/stops/303790", "https://data.delijn.be/stops/303875"], ["https://data.delijn.be/stops/105305", "https://data.delijn.be/stops/105310"], ["https://data.delijn.be/stops/403048", "https://data.delijn.be/stops/403067"], ["https://data.delijn.be/stops/109038", "https://data.delijn.be/stops/109042"], ["https://data.delijn.be/stops/402242", "https://data.delijn.be/stops/402337"], ["https://data.delijn.be/stops/200090", "https://data.delijn.be/stops/210072"], ["https://data.delijn.be/stops/209699", "https://data.delijn.be/stops/209792"], ["https://data.delijn.be/stops/400499", "https://data.delijn.be/stops/400949"], ["https://data.delijn.be/stops/205404", "https://data.delijn.be/stops/205405"], ["https://data.delijn.be/stops/300592", "https://data.delijn.be/stops/300596"], ["https://data.delijn.be/stops/501127", "https://data.delijn.be/stops/501138"], ["https://data.delijn.be/stops/102927", "https://data.delijn.be/stops/109420"], ["https://data.delijn.be/stops/104554", "https://data.delijn.be/stops/104558"], ["https://data.delijn.be/stops/109368", "https://data.delijn.be/stops/109370"], ["https://data.delijn.be/stops/407245", "https://data.delijn.be/stops/407249"], ["https://data.delijn.be/stops/204341", "https://data.delijn.be/stops/205296"], ["https://data.delijn.be/stops/403588", "https://data.delijn.be/stops/408198"], ["https://data.delijn.be/stops/102989", "https://data.delijn.be/stops/106511"], ["https://data.delijn.be/stops/201676", "https://data.delijn.be/stops/208262"], ["https://data.delijn.be/stops/402299", "https://data.delijn.be/stops/402470"], ["https://data.delijn.be/stops/400622", "https://data.delijn.be/stops/404290"], ["https://data.delijn.be/stops/402713", "https://data.delijn.be/stops/402737"], ["https://data.delijn.be/stops/408533", "https://data.delijn.be/stops/408750"], ["https://data.delijn.be/stops/302438", "https://data.delijn.be/stops/308104"], ["https://data.delijn.be/stops/407670", "https://data.delijn.be/stops/407679"], ["https://data.delijn.be/stops/200054", "https://data.delijn.be/stops/211002"], ["https://data.delijn.be/stops/204229", "https://data.delijn.be/stops/204230"], ["https://data.delijn.be/stops/204118", "https://data.delijn.be/stops/204690"], ["https://data.delijn.be/stops/201202", "https://data.delijn.be/stops/201624"], ["https://data.delijn.be/stops/505838", "https://data.delijn.be/stops/507254"], ["https://data.delijn.be/stops/103235", "https://data.delijn.be/stops/103240"], ["https://data.delijn.be/stops/401301", "https://data.delijn.be/stops/401311"], ["https://data.delijn.be/stops/503625", "https://data.delijn.be/stops/508619"], ["https://data.delijn.be/stops/503015", "https://data.delijn.be/stops/508010"], ["https://data.delijn.be/stops/203092", "https://data.delijn.be/stops/211291"], ["https://data.delijn.be/stops/402260", "https://data.delijn.be/stops/402472"], ["https://data.delijn.be/stops/204414", "https://data.delijn.be/stops/205413"], ["https://data.delijn.be/stops/106845", "https://data.delijn.be/stops/106985"], ["https://data.delijn.be/stops/106319", "https://data.delijn.be/stops/106320"], ["https://data.delijn.be/stops/201932", "https://data.delijn.be/stops/203511"], ["https://data.delijn.be/stops/403525", "https://data.delijn.be/stops/404227"], ["https://data.delijn.be/stops/402159", "https://data.delijn.be/stops/402286"], ["https://data.delijn.be/stops/400199", "https://data.delijn.be/stops/406469"], ["https://data.delijn.be/stops/307778", "https://data.delijn.be/stops/307893"], ["https://data.delijn.be/stops/107699", "https://data.delijn.be/stops/107715"], ["https://data.delijn.be/stops/508629", "https://data.delijn.be/stops/508633"], ["https://data.delijn.be/stops/305789", "https://data.delijn.be/stops/305791"], ["https://data.delijn.be/stops/507736", "https://data.delijn.be/stops/508848"], ["https://data.delijn.be/stops/105909", "https://data.delijn.be/stops/105912"], ["https://data.delijn.be/stops/105258", "https://data.delijn.be/stops/105259"], ["https://data.delijn.be/stops/401507", "https://data.delijn.be/stops/404927"], ["https://data.delijn.be/stops/106174", "https://data.delijn.be/stops/109103"], ["https://data.delijn.be/stops/504426", "https://data.delijn.be/stops/504427"], ["https://data.delijn.be/stops/301730", "https://data.delijn.be/stops/308430"], ["https://data.delijn.be/stops/206372", "https://data.delijn.be/stops/207372"], ["https://data.delijn.be/stops/400555", "https://data.delijn.be/stops/400557"], ["https://data.delijn.be/stops/208017", "https://data.delijn.be/stops/209029"], ["https://data.delijn.be/stops/504461", "https://data.delijn.be/stops/505435"], ["https://data.delijn.be/stops/200518", "https://data.delijn.be/stops/204925"], ["https://data.delijn.be/stops/501082", "https://data.delijn.be/stops/506077"], ["https://data.delijn.be/stops/108074", "https://data.delijn.be/stops/108444"], ["https://data.delijn.be/stops/405615", "https://data.delijn.be/stops/407161"], ["https://data.delijn.be/stops/104992", "https://data.delijn.be/stops/109991"], ["https://data.delijn.be/stops/409373", "https://data.delijn.be/stops/409390"], ["https://data.delijn.be/stops/303484", "https://data.delijn.be/stops/303486"], ["https://data.delijn.be/stops/503692", "https://data.delijn.be/stops/508266"], ["https://data.delijn.be/stops/202421", "https://data.delijn.be/stops/203421"], ["https://data.delijn.be/stops/407815", "https://data.delijn.be/stops/407942"], ["https://data.delijn.be/stops/202965", "https://data.delijn.be/stops/204063"], ["https://data.delijn.be/stops/103156", "https://data.delijn.be/stops/107663"], ["https://data.delijn.be/stops/406712", "https://data.delijn.be/stops/408743"], ["https://data.delijn.be/stops/301213", "https://data.delijn.be/stops/302984"], ["https://data.delijn.be/stops/301511", "https://data.delijn.be/stops/308747"], ["https://data.delijn.be/stops/200691", "https://data.delijn.be/stops/210041"], ["https://data.delijn.be/stops/302342", "https://data.delijn.be/stops/302343"], ["https://data.delijn.be/stops/306726", "https://data.delijn.be/stops/306729"], ["https://data.delijn.be/stops/406281", "https://data.delijn.be/stops/406893"], ["https://data.delijn.be/stops/109697", "https://data.delijn.be/stops/400391"], ["https://data.delijn.be/stops/507227", "https://data.delijn.be/stops/507234"], ["https://data.delijn.be/stops/104497", "https://data.delijn.be/stops/104498"], ["https://data.delijn.be/stops/200803", "https://data.delijn.be/stops/200804"], ["https://data.delijn.be/stops/103074", "https://data.delijn.be/stops/105028"], ["https://data.delijn.be/stops/300746", "https://data.delijn.be/stops/300759"], ["https://data.delijn.be/stops/207685", "https://data.delijn.be/stops/207801"], ["https://data.delijn.be/stops/503154", "https://data.delijn.be/stops/505185"], ["https://data.delijn.be/stops/408263", "https://data.delijn.be/stops/408293"], ["https://data.delijn.be/stops/108456", "https://data.delijn.be/stops/304920"], ["https://data.delijn.be/stops/204345", "https://data.delijn.be/stops/205240"], ["https://data.delijn.be/stops/201954", "https://data.delijn.be/stops/210123"], ["https://data.delijn.be/stops/405787", "https://data.delijn.be/stops/409770"], ["https://data.delijn.be/stops/206997", "https://data.delijn.be/stops/207564"], ["https://data.delijn.be/stops/202537", "https://data.delijn.be/stops/203042"], ["https://data.delijn.be/stops/504977", "https://data.delijn.be/stops/509639"], ["https://data.delijn.be/stops/405814", "https://data.delijn.be/stops/409426"], ["https://data.delijn.be/stops/104347", "https://data.delijn.be/stops/105918"], ["https://data.delijn.be/stops/206664", "https://data.delijn.be/stops/206706"], ["https://data.delijn.be/stops/101946", "https://data.delijn.be/stops/109707"], ["https://data.delijn.be/stops/302599", "https://data.delijn.be/stops/302641"], ["https://data.delijn.be/stops/405449", "https://data.delijn.be/stops/308824"], ["https://data.delijn.be/stops/402652", "https://data.delijn.be/stops/408447"], ["https://data.delijn.be/stops/202882", "https://data.delijn.be/stops/207938"], ["https://data.delijn.be/stops/101655", "https://data.delijn.be/stops/101656"], ["https://data.delijn.be/stops/206949", "https://data.delijn.be/stops/207949"], ["https://data.delijn.be/stops/303178", "https://data.delijn.be/stops/303179"], ["https://data.delijn.be/stops/404661", "https://data.delijn.be/stops/404663"], ["https://data.delijn.be/stops/302926", "https://data.delijn.be/stops/306401"], ["https://data.delijn.be/stops/101007", "https://data.delijn.be/stops/108630"], ["https://data.delijn.be/stops/300061", "https://data.delijn.be/stops/300062"], ["https://data.delijn.be/stops/508038", "https://data.delijn.be/stops/508187"], ["https://data.delijn.be/stops/200019", "https://data.delijn.be/stops/211045"], ["https://data.delijn.be/stops/301665", "https://data.delijn.be/stops/304179"], ["https://data.delijn.be/stops/501016", "https://data.delijn.be/stops/501018"], ["https://data.delijn.be/stops/106137", "https://data.delijn.be/stops/106139"], ["https://data.delijn.be/stops/407548", "https://data.delijn.be/stops/407556"], ["https://data.delijn.be/stops/506645", "https://data.delijn.be/stops/506658"], ["https://data.delijn.be/stops/102473", "https://data.delijn.be/stops/400364"], ["https://data.delijn.be/stops/408564", "https://data.delijn.be/stops/408675"], ["https://data.delijn.be/stops/105969", "https://data.delijn.be/stops/105973"], ["https://data.delijn.be/stops/102323", "https://data.delijn.be/stops/505602"], ["https://data.delijn.be/stops/101188", "https://data.delijn.be/stops/205650"], ["https://data.delijn.be/stops/204551", "https://data.delijn.be/stops/205498"], ["https://data.delijn.be/stops/304004", "https://data.delijn.be/stops/304005"], ["https://data.delijn.be/stops/101064", "https://data.delijn.be/stops/102284"], ["https://data.delijn.be/stops/200736", "https://data.delijn.be/stops/200737"], ["https://data.delijn.be/stops/108850", "https://data.delijn.be/stops/108851"], ["https://data.delijn.be/stops/302424", "https://data.delijn.be/stops/302428"], ["https://data.delijn.be/stops/301314", "https://data.delijn.be/stops/301323"], ["https://data.delijn.be/stops/501385", "https://data.delijn.be/stops/506392"], ["https://data.delijn.be/stops/401635", "https://data.delijn.be/stops/308215"], ["https://data.delijn.be/stops/300669", "https://data.delijn.be/stops/300670"], ["https://data.delijn.be/stops/304815", "https://data.delijn.be/stops/304816"], ["https://data.delijn.be/stops/109164", "https://data.delijn.be/stops/109165"], ["https://data.delijn.be/stops/207038", "https://data.delijn.be/stops/207039"], ["https://data.delijn.be/stops/302573", "https://data.delijn.be/stops/302771"], ["https://data.delijn.be/stops/402525", "https://data.delijn.be/stops/404098"], ["https://data.delijn.be/stops/504236", "https://data.delijn.be/stops/505362"], ["https://data.delijn.be/stops/208120", "https://data.delijn.be/stops/209120"], ["https://data.delijn.be/stops/505630", "https://data.delijn.be/stops/508344"], ["https://data.delijn.be/stops/200557", "https://data.delijn.be/stops/200607"], ["https://data.delijn.be/stops/505357", "https://data.delijn.be/stops/505438"], ["https://data.delijn.be/stops/205971", "https://data.delijn.be/stops/207067"], ["https://data.delijn.be/stops/204477", "https://data.delijn.be/stops/205241"], ["https://data.delijn.be/stops/408038", "https://data.delijn.be/stops/408405"], ["https://data.delijn.be/stops/207763", "https://data.delijn.be/stops/208371"], ["https://data.delijn.be/stops/502303", "https://data.delijn.be/stops/507311"], ["https://data.delijn.be/stops/306705", "https://data.delijn.be/stops/306708"], ["https://data.delijn.be/stops/209735", "https://data.delijn.be/stops/219025"], ["https://data.delijn.be/stops/404003", "https://data.delijn.be/stops/410256"], ["https://data.delijn.be/stops/501682", "https://data.delijn.be/stops/509658"], ["https://data.delijn.be/stops/401436", "https://data.delijn.be/stops/410109"], ["https://data.delijn.be/stops/101597", "https://data.delijn.be/stops/106585"], ["https://data.delijn.be/stops/501560", "https://data.delijn.be/stops/506099"], ["https://data.delijn.be/stops/303617", "https://data.delijn.be/stops/303624"], ["https://data.delijn.be/stops/305799", "https://data.delijn.be/stops/305801"], ["https://data.delijn.be/stops/302733", "https://data.delijn.be/stops/308860"], ["https://data.delijn.be/stops/207086", "https://data.delijn.be/stops/207087"], ["https://data.delijn.be/stops/201030", "https://data.delijn.be/stops/210113"], ["https://data.delijn.be/stops/203339", "https://data.delijn.be/stops/203948"], ["https://data.delijn.be/stops/300125", "https://data.delijn.be/stops/306831"], ["https://data.delijn.be/stops/403964", "https://data.delijn.be/stops/403965"], ["https://data.delijn.be/stops/206506", "https://data.delijn.be/stops/207506"], ["https://data.delijn.be/stops/301558", "https://data.delijn.be/stops/301562"], ["https://data.delijn.be/stops/107542", "https://data.delijn.be/stops/109596"], ["https://data.delijn.be/stops/506636", "https://data.delijn.be/stops/506671"], ["https://data.delijn.be/stops/107814", "https://data.delijn.be/stops/107815"], ["https://data.delijn.be/stops/500563", "https://data.delijn.be/stops/500564"], ["https://data.delijn.be/stops/501483", "https://data.delijn.be/stops/506090"], ["https://data.delijn.be/stops/200685", "https://data.delijn.be/stops/201712"], ["https://data.delijn.be/stops/505369", "https://data.delijn.be/stops/508150"], ["https://data.delijn.be/stops/401059", "https://data.delijn.be/stops/401062"], ["https://data.delijn.be/stops/206602", "https://data.delijn.be/stops/206738"], ["https://data.delijn.be/stops/208057", "https://data.delijn.be/stops/209057"], ["https://data.delijn.be/stops/307844", "https://data.delijn.be/stops/307909"], ["https://data.delijn.be/stops/503183", "https://data.delijn.be/stops/503187"], ["https://data.delijn.be/stops/409232", "https://data.delijn.be/stops/409236"], ["https://data.delijn.be/stops/404874", "https://data.delijn.be/stops/404958"], ["https://data.delijn.be/stops/206418", "https://data.delijn.be/stops/206658"], ["https://data.delijn.be/stops/301498", "https://data.delijn.be/stops/301499"], ["https://data.delijn.be/stops/205376", "https://data.delijn.be/stops/205764"], ["https://data.delijn.be/stops/404957", "https://data.delijn.be/stops/404965"], ["https://data.delijn.be/stops/102256", "https://data.delijn.be/stops/108304"], ["https://data.delijn.be/stops/403956", "https://data.delijn.be/stops/403957"], ["https://data.delijn.be/stops/102131", "https://data.delijn.be/stops/106419"], ["https://data.delijn.be/stops/303812", "https://data.delijn.be/stops/303821"], ["https://data.delijn.be/stops/502798", "https://data.delijn.be/stops/507534"], ["https://data.delijn.be/stops/408652", "https://data.delijn.be/stops/408653"], ["https://data.delijn.be/stops/402354", "https://data.delijn.be/stops/402355"], ["https://data.delijn.be/stops/408153", "https://data.delijn.be/stops/408167"], ["https://data.delijn.be/stops/101591", "https://data.delijn.be/stops/101592"], ["https://data.delijn.be/stops/505154", "https://data.delijn.be/stops/505156"], ["https://data.delijn.be/stops/300573", "https://data.delijn.be/stops/300576"], ["https://data.delijn.be/stops/300581", "https://data.delijn.be/stops/308896"], ["https://data.delijn.be/stops/302742", "https://data.delijn.be/stops/302783"], ["https://data.delijn.be/stops/102610", "https://data.delijn.be/stops/106085"], ["https://data.delijn.be/stops/405304", "https://data.delijn.be/stops/302829"], ["https://data.delijn.be/stops/205546", "https://data.delijn.be/stops/205823"], ["https://data.delijn.be/stops/405525", "https://data.delijn.be/stops/407274"], ["https://data.delijn.be/stops/204068", "https://data.delijn.be/stops/204196"], ["https://data.delijn.be/stops/302428", "https://data.delijn.be/stops/307002"], ["https://data.delijn.be/stops/504543", "https://data.delijn.be/stops/505375"], ["https://data.delijn.be/stops/201777", "https://data.delijn.be/stops/201778"], ["https://data.delijn.be/stops/204073", "https://data.delijn.be/stops/205797"], ["https://data.delijn.be/stops/406054", "https://data.delijn.be/stops/406143"], ["https://data.delijn.be/stops/101992", "https://data.delijn.be/stops/102560"], ["https://data.delijn.be/stops/503398", "https://data.delijn.be/stops/503399"], ["https://data.delijn.be/stops/406623", "https://data.delijn.be/stops/406640"], ["https://data.delijn.be/stops/206191", "https://data.delijn.be/stops/206956"], ["https://data.delijn.be/stops/103074", "https://data.delijn.be/stops/105172"], ["https://data.delijn.be/stops/400171", "https://data.delijn.be/stops/407423"], ["https://data.delijn.be/stops/200233", "https://data.delijn.be/stops/201233"], ["https://data.delijn.be/stops/504838", "https://data.delijn.be/stops/505967"], ["https://data.delijn.be/stops/307642", "https://data.delijn.be/stops/307648"], ["https://data.delijn.be/stops/302988", "https://data.delijn.be/stops/303032"], ["https://data.delijn.be/stops/408058", "https://data.delijn.be/stops/408438"], ["https://data.delijn.be/stops/300328", "https://data.delijn.be/stops/306816"], ["https://data.delijn.be/stops/206145", "https://data.delijn.be/stops/206506"], ["https://data.delijn.be/stops/201929", "https://data.delijn.be/stops/203476"], ["https://data.delijn.be/stops/206628", "https://data.delijn.be/stops/207628"], ["https://data.delijn.be/stops/400491", "https://data.delijn.be/stops/407212"], ["https://data.delijn.be/stops/201319", "https://data.delijn.be/stops/203191"], ["https://data.delijn.be/stops/108571", "https://data.delijn.be/stops/108998"], ["https://data.delijn.be/stops/404144", "https://data.delijn.be/stops/410184"], ["https://data.delijn.be/stops/510003", "https://data.delijn.be/stops/510011"], ["https://data.delijn.be/stops/304936", "https://data.delijn.be/stops/304937"], ["https://data.delijn.be/stops/504330", "https://data.delijn.be/stops/509329"], ["https://data.delijn.be/stops/304877", "https://data.delijn.be/stops/308544"], ["https://data.delijn.be/stops/501091", "https://data.delijn.be/stops/506091"], ["https://data.delijn.be/stops/407538", "https://data.delijn.be/stops/408482"], ["https://data.delijn.be/stops/204424", "https://data.delijn.be/stops/205423"], ["https://data.delijn.be/stops/300231", "https://data.delijn.be/stops/300238"], ["https://data.delijn.be/stops/105811", "https://data.delijn.be/stops/105813"], ["https://data.delijn.be/stops/304795", "https://data.delijn.be/stops/304796"], ["https://data.delijn.be/stops/205513", "https://data.delijn.be/stops/205554"], ["https://data.delijn.be/stops/302359", "https://data.delijn.be/stops/306289"], ["https://data.delijn.be/stops/103575", "https://data.delijn.be/stops/103645"], ["https://data.delijn.be/stops/101665", "https://data.delijn.be/stops/104627"], ["https://data.delijn.be/stops/408823", "https://data.delijn.be/stops/408824"], ["https://data.delijn.be/stops/201877", "https://data.delijn.be/stops/203424"], ["https://data.delijn.be/stops/204650", "https://data.delijn.be/stops/205650"], ["https://data.delijn.be/stops/109043", "https://data.delijn.be/stops/109086"], ["https://data.delijn.be/stops/206434", "https://data.delijn.be/stops/207434"], ["https://data.delijn.be/stops/405146", "https://data.delijn.be/stops/405228"], ["https://data.delijn.be/stops/104476", "https://data.delijn.be/stops/308608"], ["https://data.delijn.be/stops/500126", "https://data.delijn.be/stops/508003"], ["https://data.delijn.be/stops/106770", "https://data.delijn.be/stops/106802"], ["https://data.delijn.be/stops/304326", "https://data.delijn.be/stops/304327"], ["https://data.delijn.be/stops/403679", "https://data.delijn.be/stops/405319"], ["https://data.delijn.be/stops/200776", "https://data.delijn.be/stops/208089"], ["https://data.delijn.be/stops/402551", "https://data.delijn.be/stops/402581"], ["https://data.delijn.be/stops/106351", "https://data.delijn.be/stops/106379"], ["https://data.delijn.be/stops/202233", "https://data.delijn.be/stops/203232"], ["https://data.delijn.be/stops/107464", "https://data.delijn.be/stops/107526"], ["https://data.delijn.be/stops/405767", "https://data.delijn.be/stops/406882"], ["https://data.delijn.be/stops/303281", "https://data.delijn.be/stops/308952"], ["https://data.delijn.be/stops/303180", "https://data.delijn.be/stops/304869"], ["https://data.delijn.be/stops/400727", "https://data.delijn.be/stops/409375"], ["https://data.delijn.be/stops/202113", "https://data.delijn.be/stops/205597"], ["https://data.delijn.be/stops/403904", "https://data.delijn.be/stops/404073"], ["https://data.delijn.be/stops/409586", "https://data.delijn.be/stops/409587"], ["https://data.delijn.be/stops/400767", "https://data.delijn.be/stops/409662"], ["https://data.delijn.be/stops/206023", "https://data.delijn.be/stops/207023"], ["https://data.delijn.be/stops/207146", "https://data.delijn.be/stops/207148"], ["https://data.delijn.be/stops/504667", "https://data.delijn.be/stops/509206"], ["https://data.delijn.be/stops/508626", "https://data.delijn.be/stops/590009"], ["https://data.delijn.be/stops/200418", "https://data.delijn.be/stops/202654"], ["https://data.delijn.be/stops/302097", "https://data.delijn.be/stops/302103"], ["https://data.delijn.be/stops/304732", "https://data.delijn.be/stops/304733"], ["https://data.delijn.be/stops/108755", "https://data.delijn.be/stops/108760"], ["https://data.delijn.be/stops/208561", "https://data.delijn.be/stops/209846"], ["https://data.delijn.be/stops/305802", "https://data.delijn.be/stops/305803"], ["https://data.delijn.be/stops/407760", "https://data.delijn.be/stops/407761"], ["https://data.delijn.be/stops/202120", "https://data.delijn.be/stops/203637"], ["https://data.delijn.be/stops/209613", "https://data.delijn.be/stops/209614"], ["https://data.delijn.be/stops/301444", "https://data.delijn.be/stops/301445"], ["https://data.delijn.be/stops/206774", "https://data.delijn.be/stops/208037"], ["https://data.delijn.be/stops/503583", "https://data.delijn.be/stops/503606"], ["https://data.delijn.be/stops/102517", "https://data.delijn.be/stops/406509"], ["https://data.delijn.be/stops/402855", "https://data.delijn.be/stops/409881"], ["https://data.delijn.be/stops/306035", "https://data.delijn.be/stops/306036"], ["https://data.delijn.be/stops/303619", "https://data.delijn.be/stops/304923"], ["https://data.delijn.be/stops/403145", "https://data.delijn.be/stops/407584"], ["https://data.delijn.be/stops/410002", "https://data.delijn.be/stops/410005"], ["https://data.delijn.be/stops/407523", "https://data.delijn.be/stops/407557"], ["https://data.delijn.be/stops/208016", "https://data.delijn.be/stops/209021"], ["https://data.delijn.be/stops/206768", "https://data.delijn.be/stops/209565"], ["https://data.delijn.be/stops/505596", "https://data.delijn.be/stops/507734"], ["https://data.delijn.be/stops/301703", "https://data.delijn.be/stops/305325"], ["https://data.delijn.be/stops/301448", "https://data.delijn.be/stops/307270"], ["https://data.delijn.be/stops/407464", "https://data.delijn.be/stops/410286"], ["https://data.delijn.be/stops/505768", "https://data.delijn.be/stops/507622"], ["https://data.delijn.be/stops/506301", "https://data.delijn.be/stops/506332"], ["https://data.delijn.be/stops/406903", "https://data.delijn.be/stops/406913"], ["https://data.delijn.be/stops/401477", "https://data.delijn.be/stops/401563"], ["https://data.delijn.be/stops/105734", "https://data.delijn.be/stops/109941"], ["https://data.delijn.be/stops/106632", "https://data.delijn.be/stops/107162"], ["https://data.delijn.be/stops/106896", "https://data.delijn.be/stops/106897"], ["https://data.delijn.be/stops/400205", "https://data.delijn.be/stops/400239"], ["https://data.delijn.be/stops/305400", "https://data.delijn.be/stops/305402"], ["https://data.delijn.be/stops/304917", "https://data.delijn.be/stops/308118"], ["https://data.delijn.be/stops/302885", "https://data.delijn.be/stops/302886"], ["https://data.delijn.be/stops/103593", "https://data.delijn.be/stops/109126"], ["https://data.delijn.be/stops/200098", "https://data.delijn.be/stops/201098"], ["https://data.delijn.be/stops/304945", "https://data.delijn.be/stops/308021"], ["https://data.delijn.be/stops/306665", "https://data.delijn.be/stops/306682"], ["https://data.delijn.be/stops/409296", "https://data.delijn.be/stops/410326"], ["https://data.delijn.be/stops/102283", "https://data.delijn.be/stops/104847"], ["https://data.delijn.be/stops/103185", "https://data.delijn.be/stops/103225"], ["https://data.delijn.be/stops/202822", "https://data.delijn.be/stops/203822"], ["https://data.delijn.be/stops/208213", "https://data.delijn.be/stops/209212"], ["https://data.delijn.be/stops/402410", "https://data.delijn.be/stops/402414"], ["https://data.delijn.be/stops/304348", "https://data.delijn.be/stops/304352"], ["https://data.delijn.be/stops/204128", "https://data.delijn.be/stops/204132"], ["https://data.delijn.be/stops/400551", "https://data.delijn.be/stops/403858"], ["https://data.delijn.be/stops/406064", "https://data.delijn.be/stops/410045"], ["https://data.delijn.be/stops/301540", "https://data.delijn.be/stops/305136"], ["https://data.delijn.be/stops/302495", "https://data.delijn.be/stops/302500"], ["https://data.delijn.be/stops/502101", "https://data.delijn.be/stops/502633"], ["https://data.delijn.be/stops/401045", "https://data.delijn.be/stops/401137"], ["https://data.delijn.be/stops/206787", "https://data.delijn.be/stops/209541"], ["https://data.delijn.be/stops/506184", "https://data.delijn.be/stops/506779"], ["https://data.delijn.be/stops/204241", "https://data.delijn.be/stops/205452"], ["https://data.delijn.be/stops/403966", "https://data.delijn.be/stops/403974"], ["https://data.delijn.be/stops/103467", "https://data.delijn.be/stops/106325"], ["https://data.delijn.be/stops/109887", "https://data.delijn.be/stops/109889"], ["https://data.delijn.be/stops/403412", "https://data.delijn.be/stops/410288"], ["https://data.delijn.be/stops/406141", "https://data.delijn.be/stops/406378"], ["https://data.delijn.be/stops/102752", "https://data.delijn.be/stops/102753"], ["https://data.delijn.be/stops/205013", "https://data.delijn.be/stops/205014"], ["https://data.delijn.be/stops/207674", "https://data.delijn.be/stops/209136"], ["https://data.delijn.be/stops/204970", "https://data.delijn.be/stops/217002"], ["https://data.delijn.be/stops/503303", "https://data.delijn.be/stops/505934"], ["https://data.delijn.be/stops/201132", "https://data.delijn.be/stops/211086"], ["https://data.delijn.be/stops/103610", "https://data.delijn.be/stops/103615"], ["https://data.delijn.be/stops/305282", "https://data.delijn.be/stops/308712"], ["https://data.delijn.be/stops/300946", "https://data.delijn.be/stops/305385"], ["https://data.delijn.be/stops/201065", "https://data.delijn.be/stops/201269"], ["https://data.delijn.be/stops/403930", "https://data.delijn.be/stops/403944"], ["https://data.delijn.be/stops/300511", "https://data.delijn.be/stops/300514"], ["https://data.delijn.be/stops/106751", "https://data.delijn.be/stops/106752"], ["https://data.delijn.be/stops/408740", "https://data.delijn.be/stops/408742"], ["https://data.delijn.be/stops/402887", "https://data.delijn.be/stops/402888"], ["https://data.delijn.be/stops/202817", "https://data.delijn.be/stops/202818"], ["https://data.delijn.be/stops/204022", "https://data.delijn.be/stops/206811"], ["https://data.delijn.be/stops/401338", "https://data.delijn.be/stops/401388"], ["https://data.delijn.be/stops/408898", "https://data.delijn.be/stops/408910"], ["https://data.delijn.be/stops/502027", "https://data.delijn.be/stops/502059"], ["https://data.delijn.be/stops/403084", "https://data.delijn.be/stops/410130"], ["https://data.delijn.be/stops/106240", "https://data.delijn.be/stops/106241"], ["https://data.delijn.be/stops/304450", "https://data.delijn.be/stops/304451"], ["https://data.delijn.be/stops/301410", "https://data.delijn.be/stops/305605"], ["https://data.delijn.be/stops/206260", "https://data.delijn.be/stops/207260"], ["https://data.delijn.be/stops/200185", "https://data.delijn.be/stops/201185"], ["https://data.delijn.be/stops/204242", "https://data.delijn.be/stops/204243"], ["https://data.delijn.be/stops/206231", "https://data.delijn.be/stops/207231"], ["https://data.delijn.be/stops/304464", "https://data.delijn.be/stops/304465"], ["https://data.delijn.be/stops/205970", "https://data.delijn.be/stops/217002"], ["https://data.delijn.be/stops/107275", "https://data.delijn.be/stops/108435"], ["https://data.delijn.be/stops/202517", "https://data.delijn.be/stops/203518"], ["https://data.delijn.be/stops/108445", "https://data.delijn.be/stops/108446"], ["https://data.delijn.be/stops/305591", "https://data.delijn.be/stops/305619"], ["https://data.delijn.be/stops/502173", "https://data.delijn.be/stops/504369"], ["https://data.delijn.be/stops/405796", "https://data.delijn.be/stops/409434"], ["https://data.delijn.be/stops/201907", "https://data.delijn.be/stops/201909"], ["https://data.delijn.be/stops/210124", "https://data.delijn.be/stops/211053"], ["https://data.delijn.be/stops/105517", "https://data.delijn.be/stops/105518"], ["https://data.delijn.be/stops/301461", "https://data.delijn.be/stops/301490"], ["https://data.delijn.be/stops/302347", "https://data.delijn.be/stops/302358"], ["https://data.delijn.be/stops/506149", "https://data.delijn.be/stops/506165"], ["https://data.delijn.be/stops/302064", "https://data.delijn.be/stops/308600"], ["https://data.delijn.be/stops/105306", "https://data.delijn.be/stops/105363"], ["https://data.delijn.be/stops/300274", "https://data.delijn.be/stops/307479"], ["https://data.delijn.be/stops/103659", "https://data.delijn.be/stops/103661"], ["https://data.delijn.be/stops/207586", "https://data.delijn.be/stops/207842"], ["https://data.delijn.be/stops/201717", "https://data.delijn.be/stops/202578"], ["https://data.delijn.be/stops/508357", "https://data.delijn.be/stops/508951"], ["https://data.delijn.be/stops/304983", "https://data.delijn.be/stops/308015"], ["https://data.delijn.be/stops/404637", "https://data.delijn.be/stops/404638"], ["https://data.delijn.be/stops/404456", "https://data.delijn.be/stops/404481"], ["https://data.delijn.be/stops/202660", "https://data.delijn.be/stops/203661"], ["https://data.delijn.be/stops/105739", "https://data.delijn.be/stops/105744"], ["https://data.delijn.be/stops/301421", "https://data.delijn.be/stops/301422"], ["https://data.delijn.be/stops/503496", "https://data.delijn.be/stops/509003"], ["https://data.delijn.be/stops/206655", "https://data.delijn.be/stops/207656"], ["https://data.delijn.be/stops/304818", "https://data.delijn.be/stops/307975"], ["https://data.delijn.be/stops/504613", "https://data.delijn.be/stops/509615"], ["https://data.delijn.be/stops/201383", "https://data.delijn.be/stops/208731"], ["https://data.delijn.be/stops/400720", "https://data.delijn.be/stops/400721"], ["https://data.delijn.be/stops/104988", "https://data.delijn.be/stops/109480"], ["https://data.delijn.be/stops/403143", "https://data.delijn.be/stops/410272"], ["https://data.delijn.be/stops/308237", "https://data.delijn.be/stops/308244"], ["https://data.delijn.be/stops/200163", "https://data.delijn.be/stops/200419"], ["https://data.delijn.be/stops/101631", "https://data.delijn.be/stops/104347"], ["https://data.delijn.be/stops/301239", "https://data.delijn.be/stops/308257"], ["https://data.delijn.be/stops/502664", "https://data.delijn.be/stops/507664"], ["https://data.delijn.be/stops/406083", "https://data.delijn.be/stops/409406"], ["https://data.delijn.be/stops/300448", "https://data.delijn.be/stops/300453"], ["https://data.delijn.be/stops/101660", "https://data.delijn.be/stops/102634"], ["https://data.delijn.be/stops/101250", "https://data.delijn.be/stops/105265"], ["https://data.delijn.be/stops/502573", "https://data.delijn.be/stops/507573"], ["https://data.delijn.be/stops/507061", "https://data.delijn.be/stops/507070"], ["https://data.delijn.be/stops/508066", "https://data.delijn.be/stops/508696"], ["https://data.delijn.be/stops/205136", "https://data.delijn.be/stops/205147"], ["https://data.delijn.be/stops/201771", "https://data.delijn.be/stops/201827"], ["https://data.delijn.be/stops/102186", "https://data.delijn.be/stops/102191"], ["https://data.delijn.be/stops/407242", "https://data.delijn.be/stops/407467"], ["https://data.delijn.be/stops/501620", "https://data.delijn.be/stops/506614"], ["https://data.delijn.be/stops/307365", "https://data.delijn.be/stops/307370"], ["https://data.delijn.be/stops/500158", "https://data.delijn.be/stops/510026"], ["https://data.delijn.be/stops/307324", "https://data.delijn.be/stops/308675"], ["https://data.delijn.be/stops/300590", "https://data.delijn.be/stops/300621"], ["https://data.delijn.be/stops/404106", "https://data.delijn.be/stops/408739"], ["https://data.delijn.be/stops/106645", "https://data.delijn.be/stops/106676"], ["https://data.delijn.be/stops/200176", "https://data.delijn.be/stops/211112"], ["https://data.delijn.be/stops/501490", "https://data.delijn.be/stops/501491"], ["https://data.delijn.be/stops/106274", "https://data.delijn.be/stops/106276"], ["https://data.delijn.be/stops/504496", "https://data.delijn.be/stops/504663"], ["https://data.delijn.be/stops/405197", "https://data.delijn.be/stops/405199"], ["https://data.delijn.be/stops/303835", "https://data.delijn.be/stops/305896"], ["https://data.delijn.be/stops/501051", "https://data.delijn.be/stops/506051"], ["https://data.delijn.be/stops/208457", "https://data.delijn.be/stops/209676"], ["https://data.delijn.be/stops/408187", "https://data.delijn.be/stops/408188"], ["https://data.delijn.be/stops/408036", "https://data.delijn.be/stops/408199"], ["https://data.delijn.be/stops/503444", "https://data.delijn.be/stops/503966"], ["https://data.delijn.be/stops/504644", "https://data.delijn.be/stops/504648"], ["https://data.delijn.be/stops/208764", "https://data.delijn.be/stops/219015"], ["https://data.delijn.be/stops/405038", "https://data.delijn.be/stops/406548"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/208511"], ["https://data.delijn.be/stops/403612", "https://data.delijn.be/stops/406729"], ["https://data.delijn.be/stops/106485", "https://data.delijn.be/stops/106487"], ["https://data.delijn.be/stops/106008", "https://data.delijn.be/stops/106011"], ["https://data.delijn.be/stops/501003", "https://data.delijn.be/stops/505403"], ["https://data.delijn.be/stops/302520", "https://data.delijn.be/stops/302528"], ["https://data.delijn.be/stops/102899", "https://data.delijn.be/stops/107071"], ["https://data.delijn.be/stops/102385", "https://data.delijn.be/stops/102894"], ["https://data.delijn.be/stops/509775", "https://data.delijn.be/stops/509783"], ["https://data.delijn.be/stops/304978", "https://data.delijn.be/stops/305013"], ["https://data.delijn.be/stops/503898", "https://data.delijn.be/stops/505994"], ["https://data.delijn.be/stops/102195", "https://data.delijn.be/stops/102425"], ["https://data.delijn.be/stops/206588", "https://data.delijn.be/stops/207573"], ["https://data.delijn.be/stops/506642", "https://data.delijn.be/stops/506661"], ["https://data.delijn.be/stops/208749", "https://data.delijn.be/stops/209661"], ["https://data.delijn.be/stops/109353", "https://data.delijn.be/stops/307437"], ["https://data.delijn.be/stops/509071", "https://data.delijn.be/stops/509072"], ["https://data.delijn.be/stops/303309", "https://data.delijn.be/stops/303310"], ["https://data.delijn.be/stops/403163", "https://data.delijn.be/stops/403455"], ["https://data.delijn.be/stops/304819", "https://data.delijn.be/stops/306405"], ["https://data.delijn.be/stops/400558", "https://data.delijn.be/stops/403820"], ["https://data.delijn.be/stops/504209", "https://data.delijn.be/stops/509209"], ["https://data.delijn.be/stops/403459", "https://data.delijn.be/stops/410328"], ["https://data.delijn.be/stops/206131", "https://data.delijn.be/stops/206715"], ["https://data.delijn.be/stops/106917", "https://data.delijn.be/stops/106918"], ["https://data.delijn.be/stops/106448", "https://data.delijn.be/stops/106449"], ["https://data.delijn.be/stops/502471", "https://data.delijn.be/stops/507476"], ["https://data.delijn.be/stops/402609", "https://data.delijn.be/stops/402644"], ["https://data.delijn.be/stops/403066", "https://data.delijn.be/stops/403569"], ["https://data.delijn.be/stops/206983", "https://data.delijn.be/stops/207983"], ["https://data.delijn.be/stops/209153", "https://data.delijn.be/stops/209521"], ["https://data.delijn.be/stops/103994", "https://data.delijn.be/stops/108392"], ["https://data.delijn.be/stops/504112", "https://data.delijn.be/stops/509112"], ["https://data.delijn.be/stops/301351", "https://data.delijn.be/stops/303640"], ["https://data.delijn.be/stops/208097", "https://data.delijn.be/stops/208161"], ["https://data.delijn.be/stops/201923", "https://data.delijn.be/stops/206405"], ["https://data.delijn.be/stops/301043", "https://data.delijn.be/stops/307252"], ["https://data.delijn.be/stops/204095", "https://data.delijn.be/stops/204599"], ["https://data.delijn.be/stops/400418", "https://data.delijn.be/stops/406866"], ["https://data.delijn.be/stops/503023", "https://data.delijn.be/stops/508023"], ["https://data.delijn.be/stops/103110", "https://data.delijn.be/stops/104690"], ["https://data.delijn.be/stops/303227", "https://data.delijn.be/stops/307055"], ["https://data.delijn.be/stops/305318", "https://data.delijn.be/stops/305319"], ["https://data.delijn.be/stops/402880", "https://data.delijn.be/stops/402881"], ["https://data.delijn.be/stops/504846", "https://data.delijn.be/stops/509092"], ["https://data.delijn.be/stops/503566", "https://data.delijn.be/stops/508566"], ["https://data.delijn.be/stops/200414", "https://data.delijn.be/stops/201506"], ["https://data.delijn.be/stops/304806", "https://data.delijn.be/stops/307882"], ["https://data.delijn.be/stops/301303", "https://data.delijn.be/stops/306258"], ["https://data.delijn.be/stops/403438", "https://data.delijn.be/stops/403658"], ["https://data.delijn.be/stops/201915", "https://data.delijn.be/stops/207425"], ["https://data.delijn.be/stops/204393", "https://data.delijn.be/stops/205391"], ["https://data.delijn.be/stops/200494", "https://data.delijn.be/stops/201630"], ["https://data.delijn.be/stops/402817", "https://data.delijn.be/stops/402818"], ["https://data.delijn.be/stops/408590", "https://data.delijn.be/stops/408593"], ["https://data.delijn.be/stops/101571", "https://data.delijn.be/stops/101576"], ["https://data.delijn.be/stops/501484", "https://data.delijn.be/stops/501600"], ["https://data.delijn.be/stops/101877", "https://data.delijn.be/stops/104817"], ["https://data.delijn.be/stops/206433", "https://data.delijn.be/stops/209689"], ["https://data.delijn.be/stops/204633", "https://data.delijn.be/stops/205528"], ["https://data.delijn.be/stops/102616", "https://data.delijn.be/stops/102618"], ["https://data.delijn.be/stops/505147", "https://data.delijn.be/stops/505236"], ["https://data.delijn.be/stops/107126", "https://data.delijn.be/stops/107128"], ["https://data.delijn.be/stops/200585", "https://data.delijn.be/stops/211078"], ["https://data.delijn.be/stops/105337", "https://data.delijn.be/stops/105341"], ["https://data.delijn.be/stops/208149", "https://data.delijn.be/stops/208150"], ["https://data.delijn.be/stops/107382", "https://data.delijn.be/stops/109600"], ["https://data.delijn.be/stops/303704", "https://data.delijn.be/stops/303709"], ["https://data.delijn.be/stops/308239", "https://data.delijn.be/stops/308241"], ["https://data.delijn.be/stops/305150", "https://data.delijn.be/stops/305175"], ["https://data.delijn.be/stops/201026", "https://data.delijn.be/stops/201069"], ["https://data.delijn.be/stops/400095", "https://data.delijn.be/stops/401976"], ["https://data.delijn.be/stops/103926", "https://data.delijn.be/stops/106901"], ["https://data.delijn.be/stops/107926", "https://data.delijn.be/stops/107927"], ["https://data.delijn.be/stops/205106", "https://data.delijn.be/stops/205482"], ["https://data.delijn.be/stops/307213", "https://data.delijn.be/stops/307726"], ["https://data.delijn.be/stops/401820", "https://data.delijn.be/stops/410356"], ["https://data.delijn.be/stops/303894", "https://data.delijn.be/stops/308654"], ["https://data.delijn.be/stops/306165", "https://data.delijn.be/stops/308586"], ["https://data.delijn.be/stops/207031", "https://data.delijn.be/stops/207032"], ["https://data.delijn.be/stops/400465", "https://data.delijn.be/stops/408833"], ["https://data.delijn.be/stops/302111", "https://data.delijn.be/stops/304144"], ["https://data.delijn.be/stops/301569", "https://data.delijn.be/stops/306100"], ["https://data.delijn.be/stops/103931", "https://data.delijn.be/stops/103932"], ["https://data.delijn.be/stops/104781", "https://data.delijn.be/stops/109620"], ["https://data.delijn.be/stops/304387", "https://data.delijn.be/stops/306873"], ["https://data.delijn.be/stops/305464", "https://data.delijn.be/stops/305858"], ["https://data.delijn.be/stops/201810", "https://data.delijn.be/stops/208325"], ["https://data.delijn.be/stops/508291", "https://data.delijn.be/stops/509936"], ["https://data.delijn.be/stops/400643", "https://data.delijn.be/stops/400909"], ["https://data.delijn.be/stops/201172", "https://data.delijn.be/stops/201550"], ["https://data.delijn.be/stops/105741", "https://data.delijn.be/stops/109950"], ["https://data.delijn.be/stops/208034", "https://data.delijn.be/stops/209033"], ["https://data.delijn.be/stops/300704", "https://data.delijn.be/stops/308067"], ["https://data.delijn.be/stops/104022", "https://data.delijn.be/stops/107232"], ["https://data.delijn.be/stops/205499", "https://data.delijn.be/stops/205544"], ["https://data.delijn.be/stops/201928", "https://data.delijn.be/stops/203522"], ["https://data.delijn.be/stops/502266", "https://data.delijn.be/stops/507263"], ["https://data.delijn.be/stops/404216", "https://data.delijn.be/stops/404219"], ["https://data.delijn.be/stops/103473", "https://data.delijn.be/stops/108268"], ["https://data.delijn.be/stops/202961", "https://data.delijn.be/stops/206409"], ["https://data.delijn.be/stops/502047", "https://data.delijn.be/stops/502617"], ["https://data.delijn.be/stops/205102", "https://data.delijn.be/stops/205702"], ["https://data.delijn.be/stops/406739", "https://data.delijn.be/stops/407502"], ["https://data.delijn.be/stops/505095", "https://data.delijn.be/stops/505098"], ["https://data.delijn.be/stops/407758", "https://data.delijn.be/stops/409744"], ["https://data.delijn.be/stops/300395", "https://data.delijn.be/stops/301098"], ["https://data.delijn.be/stops/502182", "https://data.delijn.be/stops/507180"], ["https://data.delijn.be/stops/400052", "https://data.delijn.be/stops/409163"], ["https://data.delijn.be/stops/105476", "https://data.delijn.be/stops/105478"], ["https://data.delijn.be/stops/508306", "https://data.delijn.be/stops/508968"], ["https://data.delijn.be/stops/101782", "https://data.delijn.be/stops/103364"], ["https://data.delijn.be/stops/300581", "https://data.delijn.be/stops/300588"], ["https://data.delijn.be/stops/306164", "https://data.delijn.be/stops/306166"], ["https://data.delijn.be/stops/108165", "https://data.delijn.be/stops/108170"], ["https://data.delijn.be/stops/300243", "https://data.delijn.be/stops/304625"], ["https://data.delijn.be/stops/200899", "https://data.delijn.be/stops/202052"], ["https://data.delijn.be/stops/308486", "https://data.delijn.be/stops/308487"], ["https://data.delijn.be/stops/104039", "https://data.delijn.be/stops/108372"], ["https://data.delijn.be/stops/505549", "https://data.delijn.be/stops/509153"], ["https://data.delijn.be/stops/408140", "https://data.delijn.be/stops/408194"], ["https://data.delijn.be/stops/407205", "https://data.delijn.be/stops/408811"], ["https://data.delijn.be/stops/101576", "https://data.delijn.be/stops/105464"], ["https://data.delijn.be/stops/306619", "https://data.delijn.be/stops/308479"], ["https://data.delijn.be/stops/102604", "https://data.delijn.be/stops/105517"], ["https://data.delijn.be/stops/202827", "https://data.delijn.be/stops/203837"], ["https://data.delijn.be/stops/504667", "https://data.delijn.be/stops/508042"], ["https://data.delijn.be/stops/301953", "https://data.delijn.be/stops/301954"], ["https://data.delijn.be/stops/304797", "https://data.delijn.be/stops/306645"], ["https://data.delijn.be/stops/205181", "https://data.delijn.be/stops/205368"], ["https://data.delijn.be/stops/505737", "https://data.delijn.be/stops/507324"], ["https://data.delijn.be/stops/101087", "https://data.delijn.be/stops/105973"], ["https://data.delijn.be/stops/401864", "https://data.delijn.be/stops/401865"], ["https://data.delijn.be/stops/307613", "https://data.delijn.be/stops/307907"], ["https://data.delijn.be/stops/201919", "https://data.delijn.be/stops/206835"], ["https://data.delijn.be/stops/407682", "https://data.delijn.be/stops/407695"], ["https://data.delijn.be/stops/407602", "https://data.delijn.be/stops/407610"], ["https://data.delijn.be/stops/208070", "https://data.delijn.be/stops/208087"], ["https://data.delijn.be/stops/106956", "https://data.delijn.be/stops/109734"], ["https://data.delijn.be/stops/202695", "https://data.delijn.be/stops/203695"], ["https://data.delijn.be/stops/201886", "https://data.delijn.be/stops/203978"], ["https://data.delijn.be/stops/108064", "https://data.delijn.be/stops/108067"], ["https://data.delijn.be/stops/105366", "https://data.delijn.be/stops/105367"], ["https://data.delijn.be/stops/206105", "https://data.delijn.be/stops/306724"], ["https://data.delijn.be/stops/302226", "https://data.delijn.be/stops/307716"], ["https://data.delijn.be/stops/404220", "https://data.delijn.be/stops/405547"], ["https://data.delijn.be/stops/103573", "https://data.delijn.be/stops/103574"], ["https://data.delijn.be/stops/405904", "https://data.delijn.be/stops/405972"], ["https://data.delijn.be/stops/405161", "https://data.delijn.be/stops/405278"], ["https://data.delijn.be/stops/504630", "https://data.delijn.be/stops/509629"], ["https://data.delijn.be/stops/503210", "https://data.delijn.be/stops/507764"], ["https://data.delijn.be/stops/401783", "https://data.delijn.be/stops/401806"], ["https://data.delijn.be/stops/107493", "https://data.delijn.be/stops/305794"], ["https://data.delijn.be/stops/503463", "https://data.delijn.be/stops/508192"], ["https://data.delijn.be/stops/105464", "https://data.delijn.be/stops/105663"], ["https://data.delijn.be/stops/207040", "https://data.delijn.be/stops/207297"], ["https://data.delijn.be/stops/405031", "https://data.delijn.be/stops/405032"], ["https://data.delijn.be/stops/300613", "https://data.delijn.be/stops/300614"], ["https://data.delijn.be/stops/103364", "https://data.delijn.be/stops/103393"], ["https://data.delijn.be/stops/400992", "https://data.delijn.be/stops/401033"], ["https://data.delijn.be/stops/503494", "https://data.delijn.be/stops/508502"], ["https://data.delijn.be/stops/106356", "https://data.delijn.be/stops/106357"], ["https://data.delijn.be/stops/300933", "https://data.delijn.be/stops/305887"], ["https://data.delijn.be/stops/503242", "https://data.delijn.be/stops/503253"], ["https://data.delijn.be/stops/408278", "https://data.delijn.be/stops/408279"], ["https://data.delijn.be/stops/108382", "https://data.delijn.be/stops/108383"], ["https://data.delijn.be/stops/400552", "https://data.delijn.be/stops/403194"], ["https://data.delijn.be/stops/401589", "https://data.delijn.be/stops/402125"], ["https://data.delijn.be/stops/101235", "https://data.delijn.be/stops/101240"], ["https://data.delijn.be/stops/507525", "https://data.delijn.be/stops/507808"], ["https://data.delijn.be/stops/107622", "https://data.delijn.be/stops/107624"], ["https://data.delijn.be/stops/302387", "https://data.delijn.be/stops/302390"], ["https://data.delijn.be/stops/204460", "https://data.delijn.be/stops/205118"], ["https://data.delijn.be/stops/106622", "https://data.delijn.be/stops/108016"], ["https://data.delijn.be/stops/504423", "https://data.delijn.be/stops/504825"], ["https://data.delijn.be/stops/501082", "https://data.delijn.be/stops/501083"], ["https://data.delijn.be/stops/200203", "https://data.delijn.be/stops/202555"], ["https://data.delijn.be/stops/505257", "https://data.delijn.be/stops/505259"], ["https://data.delijn.be/stops/101366", "https://data.delijn.be/stops/103242"], ["https://data.delijn.be/stops/301020", "https://data.delijn.be/stops/301752"], ["https://data.delijn.be/stops/501441", "https://data.delijn.be/stops/590334"], ["https://data.delijn.be/stops/208240", "https://data.delijn.be/stops/208717"], ["https://data.delijn.be/stops/501197", "https://data.delijn.be/stops/506197"], ["https://data.delijn.be/stops/300515", "https://data.delijn.be/stops/300518"], ["https://data.delijn.be/stops/300541", "https://data.delijn.be/stops/303220"], ["https://data.delijn.be/stops/201068", "https://data.delijn.be/stops/201189"], ["https://data.delijn.be/stops/410132", "https://data.delijn.be/stops/410340"], ["https://data.delijn.be/stops/206867", "https://data.delijn.be/stops/208811"], ["https://data.delijn.be/stops/403997", "https://data.delijn.be/stops/404010"], ["https://data.delijn.be/stops/400339", "https://data.delijn.be/stops/400400"], ["https://data.delijn.be/stops/205664", "https://data.delijn.be/stops/205687"], ["https://data.delijn.be/stops/104706", "https://data.delijn.be/stops/108173"], ["https://data.delijn.be/stops/503179", "https://data.delijn.be/stops/505637"], ["https://data.delijn.be/stops/304279", "https://data.delijn.be/stops/304280"], ["https://data.delijn.be/stops/305000", "https://data.delijn.be/stops/305020"], ["https://data.delijn.be/stops/204061", "https://data.delijn.be/stops/204062"], ["https://data.delijn.be/stops/206460", "https://data.delijn.be/stops/206861"], ["https://data.delijn.be/stops/101082", "https://data.delijn.be/stops/101084"], ["https://data.delijn.be/stops/108937", "https://data.delijn.be/stops/108938"], ["https://data.delijn.be/stops/202961", "https://data.delijn.be/stops/203961"], ["https://data.delijn.be/stops/205695", "https://data.delijn.be/stops/205730"], ["https://data.delijn.be/stops/407841", "https://data.delijn.be/stops/407993"], ["https://data.delijn.be/stops/501381", "https://data.delijn.be/stops/506381"], ["https://data.delijn.be/stops/403270", "https://data.delijn.be/stops/410325"], ["https://data.delijn.be/stops/206077", "https://data.delijn.be/stops/207077"], ["https://data.delijn.be/stops/305527", "https://data.delijn.be/stops/305528"], ["https://data.delijn.be/stops/108647", "https://data.delijn.be/stops/109677"], ["https://data.delijn.be/stops/302720", "https://data.delijn.be/stops/308835"], ["https://data.delijn.be/stops/503756", "https://data.delijn.be/stops/508322"], ["https://data.delijn.be/stops/502343", "https://data.delijn.be/stops/507343"], ["https://data.delijn.be/stops/503437", "https://data.delijn.be/stops/508100"], ["https://data.delijn.be/stops/403421", "https://data.delijn.be/stops/409147"], ["https://data.delijn.be/stops/303285", "https://data.delijn.be/stops/303310"], ["https://data.delijn.be/stops/504249", "https://data.delijn.be/stops/504449"], ["https://data.delijn.be/stops/202258", "https://data.delijn.be/stops/203100"], ["https://data.delijn.be/stops/404758", "https://data.delijn.be/stops/404791"], ["https://data.delijn.be/stops/504718", "https://data.delijn.be/stops/505841"], ["https://data.delijn.be/stops/103210", "https://data.delijn.be/stops/106285"], ["https://data.delijn.be/stops/403853", "https://data.delijn.be/stops/403858"], ["https://data.delijn.be/stops/404168", "https://data.delijn.be/stops/410185"], ["https://data.delijn.be/stops/403049", "https://data.delijn.be/stops/403067"], ["https://data.delijn.be/stops/208414", "https://data.delijn.be/stops/208748"], ["https://data.delijn.be/stops/507688", "https://data.delijn.be/stops/508764"], ["https://data.delijn.be/stops/200593", "https://data.delijn.be/stops/201592"], ["https://data.delijn.be/stops/403820", "https://data.delijn.be/stops/407042"], ["https://data.delijn.be/stops/400965", "https://data.delijn.be/stops/401249"], ["https://data.delijn.be/stops/505327", "https://data.delijn.be/stops/505721"], ["https://data.delijn.be/stops/405823", "https://data.delijn.be/stops/409416"], ["https://data.delijn.be/stops/503837", "https://data.delijn.be/stops/508779"], ["https://data.delijn.be/stops/401561", "https://data.delijn.be/stops/401741"], ["https://data.delijn.be/stops/301359", "https://data.delijn.be/stops/301397"], ["https://data.delijn.be/stops/507689", "https://data.delijn.be/stops/509740"], ["https://data.delijn.be/stops/102203", "https://data.delijn.be/stops/102204"], ["https://data.delijn.be/stops/402495", "https://data.delijn.be/stops/402497"], ["https://data.delijn.be/stops/206863", "https://data.delijn.be/stops/206923"], ["https://data.delijn.be/stops/101672", "https://data.delijn.be/stops/103156"], ["https://data.delijn.be/stops/300007", "https://data.delijn.be/stops/304682"], ["https://data.delijn.be/stops/108907", "https://data.delijn.be/stops/108909"], ["https://data.delijn.be/stops/106764", "https://data.delijn.be/stops/106765"], ["https://data.delijn.be/stops/305439", "https://data.delijn.be/stops/305506"], ["https://data.delijn.be/stops/502734", "https://data.delijn.be/stops/507734"], ["https://data.delijn.be/stops/406955", "https://data.delijn.be/stops/406959"], ["https://data.delijn.be/stops/102399", "https://data.delijn.be/stops/108140"], ["https://data.delijn.be/stops/200094", "https://data.delijn.be/stops/202132"], ["https://data.delijn.be/stops/204662", "https://data.delijn.be/stops/205661"], ["https://data.delijn.be/stops/206772", "https://data.delijn.be/stops/209031"], ["https://data.delijn.be/stops/107004", "https://data.delijn.be/stops/107006"], ["https://data.delijn.be/stops/106887", "https://data.delijn.be/stops/106888"], ["https://data.delijn.be/stops/201233", "https://data.delijn.be/stops/203353"], ["https://data.delijn.be/stops/506682", "https://data.delijn.be/stops/509658"], ["https://data.delijn.be/stops/301582", "https://data.delijn.be/stops/304960"], ["https://data.delijn.be/stops/206779", "https://data.delijn.be/stops/209046"], ["https://data.delijn.be/stops/207676", "https://data.delijn.be/stops/209134"], ["https://data.delijn.be/stops/504418", "https://data.delijn.be/stops/509418"], ["https://data.delijn.be/stops/200334", "https://data.delijn.be/stops/202399"], ["https://data.delijn.be/stops/200239", "https://data.delijn.be/stops/200275"], ["https://data.delijn.be/stops/401828", "https://data.delijn.be/stops/406031"], ["https://data.delijn.be/stops/506771", "https://data.delijn.be/stops/506774"], ["https://data.delijn.be/stops/402855", "https://data.delijn.be/stops/408970"], ["https://data.delijn.be/stops/402313", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/400091", "https://data.delijn.be/stops/400104"], ["https://data.delijn.be/stops/304480", "https://data.delijn.be/stops/304483"], ["https://data.delijn.be/stops/400582", "https://data.delijn.be/stops/400600"], ["https://data.delijn.be/stops/107358", "https://data.delijn.be/stops/107359"], ["https://data.delijn.be/stops/501462", "https://data.delijn.be/stops/501536"], ["https://data.delijn.be/stops/200449", "https://data.delijn.be/stops/201450"], ["https://data.delijn.be/stops/200137", "https://data.delijn.be/stops/201137"], ["https://data.delijn.be/stops/303623", "https://data.delijn.be/stops/304272"], ["https://data.delijn.be/stops/302376", "https://data.delijn.be/stops/302383"], ["https://data.delijn.be/stops/400052", "https://data.delijn.be/stops/400064"], ["https://data.delijn.be/stops/400737", "https://data.delijn.be/stops/405667"], ["https://data.delijn.be/stops/200357", "https://data.delijn.be/stops/203651"], ["https://data.delijn.be/stops/108193", "https://data.delijn.be/stops/108196"], ["https://data.delijn.be/stops/406160", "https://data.delijn.be/stops/406161"], ["https://data.delijn.be/stops/301876", "https://data.delijn.be/stops/304326"], ["https://data.delijn.be/stops/101367", "https://data.delijn.be/stops/102746"], ["https://data.delijn.be/stops/109893", "https://data.delijn.be/stops/109895"], ["https://data.delijn.be/stops/400165", "https://data.delijn.be/stops/400169"], ["https://data.delijn.be/stops/201916", "https://data.delijn.be/stops/201917"], ["https://data.delijn.be/stops/218021", "https://data.delijn.be/stops/219021"], ["https://data.delijn.be/stops/504179", "https://data.delijn.be/stops/504182"], ["https://data.delijn.be/stops/403025", "https://data.delijn.be/stops/403410"], ["https://data.delijn.be/stops/206617", "https://data.delijn.be/stops/206619"], ["https://data.delijn.be/stops/201213", "https://data.delijn.be/stops/203554"], ["https://data.delijn.be/stops/105415", "https://data.delijn.be/stops/105435"], ["https://data.delijn.be/stops/507176", "https://data.delijn.be/stops/508699"], ["https://data.delijn.be/stops/400410", "https://data.delijn.be/stops/406858"], ["https://data.delijn.be/stops/502034", "https://data.delijn.be/stops/507029"], ["https://data.delijn.be/stops/400028", "https://data.delijn.be/stops/400429"], ["https://data.delijn.be/stops/302004", "https://data.delijn.be/stops/302053"], ["https://data.delijn.be/stops/504704", "https://data.delijn.be/stops/509026"], ["https://data.delijn.be/stops/101722", "https://data.delijn.be/stops/105261"], ["https://data.delijn.be/stops/106633", "https://data.delijn.be/stops/106634"], ["https://data.delijn.be/stops/206479", "https://data.delijn.be/stops/206480"], ["https://data.delijn.be/stops/402800", "https://data.delijn.be/stops/409048"], ["https://data.delijn.be/stops/402842", "https://data.delijn.be/stops/409228"], ["https://data.delijn.be/stops/101494", "https://data.delijn.be/stops/108304"], ["https://data.delijn.be/stops/101022", "https://data.delijn.be/stops/105130"], ["https://data.delijn.be/stops/204363", "https://data.delijn.be/stops/205015"], ["https://data.delijn.be/stops/200060", "https://data.delijn.be/stops/201060"], ["https://data.delijn.be/stops/308776", "https://data.delijn.be/stops/308779"], ["https://data.delijn.be/stops/405449", "https://data.delijn.be/stops/407901"], ["https://data.delijn.be/stops/503908", "https://data.delijn.be/stops/507068"], ["https://data.delijn.be/stops/204124", "https://data.delijn.be/stops/205127"], ["https://data.delijn.be/stops/509381", "https://data.delijn.be/stops/509534"], ["https://data.delijn.be/stops/307695", "https://data.delijn.be/stops/307698"], ["https://data.delijn.be/stops/504123", "https://data.delijn.be/stops/509123"], ["https://data.delijn.be/stops/401239", "https://data.delijn.be/stops/401267"], ["https://data.delijn.be/stops/301830", "https://data.delijn.be/stops/305860"], ["https://data.delijn.be/stops/404710", "https://data.delijn.be/stops/404711"], ["https://data.delijn.be/stops/200225", "https://data.delijn.be/stops/201225"], ["https://data.delijn.be/stops/204983", "https://data.delijn.be/stops/207199"], ["https://data.delijn.be/stops/101019", "https://data.delijn.be/stops/105635"], ["https://data.delijn.be/stops/202921", "https://data.delijn.be/stops/203922"], ["https://data.delijn.be/stops/106762", "https://data.delijn.be/stops/106857"], ["https://data.delijn.be/stops/203906", "https://data.delijn.be/stops/203907"], ["https://data.delijn.be/stops/207518", "https://data.delijn.be/stops/209686"], ["https://data.delijn.be/stops/300669", "https://data.delijn.be/stops/305964"], ["https://data.delijn.be/stops/201923", "https://data.delijn.be/stops/205979"], ["https://data.delijn.be/stops/502931", "https://data.delijn.be/stops/502932"], ["https://data.delijn.be/stops/201578", "https://data.delijn.be/stops/202756"], ["https://data.delijn.be/stops/305261", "https://data.delijn.be/stops/305298"], ["https://data.delijn.be/stops/104964", "https://data.delijn.be/stops/109460"], ["https://data.delijn.be/stops/107654", "https://data.delijn.be/stops/406770"], ["https://data.delijn.be/stops/501665", "https://data.delijn.be/stops/506671"], ["https://data.delijn.be/stops/104540", "https://data.delijn.be/stops/109005"], ["https://data.delijn.be/stops/407854", "https://data.delijn.be/stops/407856"], ["https://data.delijn.be/stops/206839", "https://data.delijn.be/stops/206840"], ["https://data.delijn.be/stops/207750", "https://data.delijn.be/stops/207929"], ["https://data.delijn.be/stops/402264", "https://data.delijn.be/stops/402422"], ["https://data.delijn.be/stops/302733", "https://data.delijn.be/stops/308594"], ["https://data.delijn.be/stops/205990", "https://data.delijn.be/stops/208778"], ["https://data.delijn.be/stops/503363", "https://data.delijn.be/stops/508363"], ["https://data.delijn.be/stops/101752", "https://data.delijn.be/stops/105753"], ["https://data.delijn.be/stops/302073", "https://data.delijn.be/stops/306350"], ["https://data.delijn.be/stops/109461", "https://data.delijn.be/stops/109462"], ["https://data.delijn.be/stops/503994", "https://data.delijn.be/stops/505832"], ["https://data.delijn.be/stops/400106", "https://data.delijn.be/stops/410339"], ["https://data.delijn.be/stops/300012", "https://data.delijn.be/stops/300758"], ["https://data.delijn.be/stops/101641", "https://data.delijn.be/stops/109755"], ["https://data.delijn.be/stops/300761", "https://data.delijn.be/stops/300783"], ["https://data.delijn.be/stops/404285", "https://data.delijn.be/stops/407260"], ["https://data.delijn.be/stops/103121", "https://data.delijn.be/stops/103127"], ["https://data.delijn.be/stops/502352", "https://data.delijn.be/stops/505054"], ["https://data.delijn.be/stops/401765", "https://data.delijn.be/stops/406319"], ["https://data.delijn.be/stops/200809", "https://data.delijn.be/stops/200888"], ["https://data.delijn.be/stops/503331", "https://data.delijn.be/stops/505268"], ["https://data.delijn.be/stops/407537", "https://data.delijn.be/stops/409109"], ["https://data.delijn.be/stops/501413", "https://data.delijn.be/stops/506414"], ["https://data.delijn.be/stops/303284", "https://data.delijn.be/stops/303317"], ["https://data.delijn.be/stops/502452", "https://data.delijn.be/stops/507451"], ["https://data.delijn.be/stops/401243", "https://data.delijn.be/stops/401268"], ["https://data.delijn.be/stops/106295", "https://data.delijn.be/stops/106296"], ["https://data.delijn.be/stops/309670", "https://data.delijn.be/stops/309671"], ["https://data.delijn.be/stops/109087", "https://data.delijn.be/stops/109315"], ["https://data.delijn.be/stops/200817", "https://data.delijn.be/stops/201734"], ["https://data.delijn.be/stops/200204", "https://data.delijn.be/stops/202555"], ["https://data.delijn.be/stops/402245", "https://data.delijn.be/stops/402255"], ["https://data.delijn.be/stops/305623", "https://data.delijn.be/stops/308377"], ["https://data.delijn.be/stops/104683", "https://data.delijn.be/stops/104696"], ["https://data.delijn.be/stops/406116", "https://data.delijn.be/stops/406117"], ["https://data.delijn.be/stops/206898", "https://data.delijn.be/stops/206899"], ["https://data.delijn.be/stops/403772", "https://data.delijn.be/stops/403775"], ["https://data.delijn.be/stops/208279", "https://data.delijn.be/stops/208398"], ["https://data.delijn.be/stops/301261", "https://data.delijn.be/stops/307409"], ["https://data.delijn.be/stops/101951", "https://data.delijn.be/stops/108797"], ["https://data.delijn.be/stops/107378", "https://data.delijn.be/stops/107379"], ["https://data.delijn.be/stops/301771", "https://data.delijn.be/stops/301772"], ["https://data.delijn.be/stops/508634", "https://data.delijn.be/stops/508981"], ["https://data.delijn.be/stops/202158", "https://data.delijn.be/stops/202159"], ["https://data.delijn.be/stops/105569", "https://data.delijn.be/stops/105571"], ["https://data.delijn.be/stops/304725", "https://data.delijn.be/stops/305558"], ["https://data.delijn.be/stops/201957", "https://data.delijn.be/stops/203261"], ["https://data.delijn.be/stops/202730", "https://data.delijn.be/stops/203225"], ["https://data.delijn.be/stops/401776", "https://data.delijn.be/stops/406144"], ["https://data.delijn.be/stops/106347", "https://data.delijn.be/stops/106349"], ["https://data.delijn.be/stops/204230", "https://data.delijn.be/stops/204232"], ["https://data.delijn.be/stops/300123", "https://data.delijn.be/stops/306868"], ["https://data.delijn.be/stops/505588", "https://data.delijn.be/stops/507501"], ["https://data.delijn.be/stops/503532", "https://data.delijn.be/stops/504760"], ["https://data.delijn.be/stops/400032", "https://data.delijn.be/stops/400045"], ["https://data.delijn.be/stops/101590", "https://data.delijn.be/stops/109135"], ["https://data.delijn.be/stops/101856", "https://data.delijn.be/stops/102950"], ["https://data.delijn.be/stops/403874", "https://data.delijn.be/stops/408184"], ["https://data.delijn.be/stops/102912", "https://data.delijn.be/stops/106703"], ["https://data.delijn.be/stops/502599", "https://data.delijn.be/stops/507769"], ["https://data.delijn.be/stops/101195", "https://data.delijn.be/stops/103357"], ["https://data.delijn.be/stops/506945", "https://data.delijn.be/stops/508135"], ["https://data.delijn.be/stops/208426", "https://data.delijn.be/stops/208680"], ["https://data.delijn.be/stops/106222", "https://data.delijn.be/stops/106336"], ["https://data.delijn.be/stops/103532", "https://data.delijn.be/stops/106337"], ["https://data.delijn.be/stops/202065", "https://data.delijn.be/stops/202729"], ["https://data.delijn.be/stops/107122", "https://data.delijn.be/stops/107126"], ["https://data.delijn.be/stops/308235", "https://data.delijn.be/stops/308239"], ["https://data.delijn.be/stops/206664", "https://data.delijn.be/stops/206712"], ["https://data.delijn.be/stops/503629", "https://data.delijn.be/stops/590009"], ["https://data.delijn.be/stops/108094", "https://data.delijn.be/stops/108095"], ["https://data.delijn.be/stops/104054", "https://data.delijn.be/stops/108141"], ["https://data.delijn.be/stops/400955", "https://data.delijn.be/stops/407487"], ["https://data.delijn.be/stops/303867", "https://data.delijn.be/stops/303868"], ["https://data.delijn.be/stops/402118", "https://data.delijn.be/stops/402126"], ["https://data.delijn.be/stops/501016", "https://data.delijn.be/stops/501534"], ["https://data.delijn.be/stops/102947", "https://data.delijn.be/stops/106239"], ["https://data.delijn.be/stops/306815", "https://data.delijn.be/stops/308505"], ["https://data.delijn.be/stops/503177", "https://data.delijn.be/stops/508177"], ["https://data.delijn.be/stops/208369", "https://data.delijn.be/stops/209195"], ["https://data.delijn.be/stops/201673", "https://data.delijn.be/stops/203206"], ["https://data.delijn.be/stops/204501", "https://data.delijn.be/stops/205531"], ["https://data.delijn.be/stops/501355", "https://data.delijn.be/stops/501546"], ["https://data.delijn.be/stops/404522", "https://data.delijn.be/stops/404538"], ["https://data.delijn.be/stops/206006", "https://data.delijn.be/stops/207006"], ["https://data.delijn.be/stops/302790", "https://data.delijn.be/stops/307455"], ["https://data.delijn.be/stops/201229", "https://data.delijn.be/stops/211047"], ["https://data.delijn.be/stops/204069", "https://data.delijn.be/stops/204187"], ["https://data.delijn.be/stops/106166", "https://data.delijn.be/stops/106170"], ["https://data.delijn.be/stops/302764", "https://data.delijn.be/stops/307471"], ["https://data.delijn.be/stops/202343", "https://data.delijn.be/stops/203951"], ["https://data.delijn.be/stops/505078", "https://data.delijn.be/stops/505802"], ["https://data.delijn.be/stops/207680", "https://data.delijn.be/stops/208194"], ["https://data.delijn.be/stops/202234", "https://data.delijn.be/stops/203235"], ["https://data.delijn.be/stops/300608", "https://data.delijn.be/stops/300611"], ["https://data.delijn.be/stops/106874", "https://data.delijn.be/stops/106876"], ["https://data.delijn.be/stops/204471", "https://data.delijn.be/stops/205472"], ["https://data.delijn.be/stops/102208", "https://data.delijn.be/stops/106124"], ["https://data.delijn.be/stops/108952", "https://data.delijn.be/stops/109218"], ["https://data.delijn.be/stops/202949", "https://data.delijn.be/stops/203950"], ["https://data.delijn.be/stops/201696", "https://data.delijn.be/stops/203384"], ["https://data.delijn.be/stops/406827", "https://data.delijn.be/stops/409688"], ["https://data.delijn.be/stops/409263", "https://data.delijn.be/stops/409309"], ["https://data.delijn.be/stops/505289", "https://data.delijn.be/stops/505926"], ["https://data.delijn.be/stops/502814", "https://data.delijn.be/stops/505931"], ["https://data.delijn.be/stops/501744", "https://data.delijn.be/stops/504128"], ["https://data.delijn.be/stops/105452", "https://data.delijn.be/stops/109936"], ["https://data.delijn.be/stops/507200", "https://data.delijn.be/stops/509312"], ["https://data.delijn.be/stops/504668", "https://data.delijn.be/stops/508316"], ["https://data.delijn.be/stops/102011", "https://data.delijn.be/stops/109869"], ["https://data.delijn.be/stops/503032", "https://data.delijn.be/stops/507767"], ["https://data.delijn.be/stops/510004", "https://data.delijn.be/stops/510005"], ["https://data.delijn.be/stops/107512", "https://data.delijn.be/stops/107513"], ["https://data.delijn.be/stops/502550", "https://data.delijn.be/stops/507655"], ["https://data.delijn.be/stops/502590", "https://data.delijn.be/stops/507595"], ["https://data.delijn.be/stops/109578", "https://data.delijn.be/stops/109579"], ["https://data.delijn.be/stops/200688", "https://data.delijn.be/stops/200693"], ["https://data.delijn.be/stops/108218", "https://data.delijn.be/stops/108223"], ["https://data.delijn.be/stops/200860", "https://data.delijn.be/stops/202286"], ["https://data.delijn.be/stops/300613", "https://data.delijn.be/stops/307864"], ["https://data.delijn.be/stops/301337", "https://data.delijn.be/stops/301339"], ["https://data.delijn.be/stops/201582", "https://data.delijn.be/stops/211078"], ["https://data.delijn.be/stops/108296", "https://data.delijn.be/stops/109735"], ["https://data.delijn.be/stops/509139", "https://data.delijn.be/stops/509685"], ["https://data.delijn.be/stops/407369", "https://data.delijn.be/stops/407407"], ["https://data.delijn.be/stops/304851", "https://data.delijn.be/stops/308649"], ["https://data.delijn.be/stops/302074", "https://data.delijn.be/stops/302075"], ["https://data.delijn.be/stops/203345", "https://data.delijn.be/stops/205975"], ["https://data.delijn.be/stops/401135", "https://data.delijn.be/stops/401138"], ["https://data.delijn.be/stops/303692", "https://data.delijn.be/stops/303695"], ["https://data.delijn.be/stops/503354", "https://data.delijn.be/stops/508420"], ["https://data.delijn.be/stops/105413", "https://data.delijn.be/stops/109849"], ["https://data.delijn.be/stops/400611", "https://data.delijn.be/stops/400627"], ["https://data.delijn.be/stops/505424", "https://data.delijn.be/stops/505787"], ["https://data.delijn.be/stops/208136", "https://data.delijn.be/stops/208137"], ["https://data.delijn.be/stops/204522", "https://data.delijn.be/stops/205726"], ["https://data.delijn.be/stops/303185", "https://data.delijn.be/stops/307074"], ["https://data.delijn.be/stops/104584", "https://data.delijn.be/stops/104586"], ["https://data.delijn.be/stops/502387", "https://data.delijn.be/stops/502389"], ["https://data.delijn.be/stops/502692", "https://data.delijn.be/stops/505318"], ["https://data.delijn.be/stops/501002", "https://data.delijn.be/stops/501216"], ["https://data.delijn.be/stops/207424", "https://data.delijn.be/stops/207568"], ["https://data.delijn.be/stops/405783", "https://data.delijn.be/stops/409764"], ["https://data.delijn.be/stops/101870", "https://data.delijn.be/stops/102930"], ["https://data.delijn.be/stops/200168", "https://data.delijn.be/stops/202623"], ["https://data.delijn.be/stops/403739", "https://data.delijn.be/stops/403815"], ["https://data.delijn.be/stops/107537", "https://data.delijn.be/stops/303881"], ["https://data.delijn.be/stops/107454", "https://data.delijn.be/stops/107455"], ["https://data.delijn.be/stops/301258", "https://data.delijn.be/stops/301260"], ["https://data.delijn.be/stops/202538", "https://data.delijn.be/stops/209722"], ["https://data.delijn.be/stops/405385", "https://data.delijn.be/stops/405496"], ["https://data.delijn.be/stops/101468", "https://data.delijn.be/stops/109266"], ["https://data.delijn.be/stops/403804", "https://data.delijn.be/stops/403805"], ["https://data.delijn.be/stops/208075", "https://data.delijn.be/stops/208076"], ["https://data.delijn.be/stops/403652", "https://data.delijn.be/stops/407344"], ["https://data.delijn.be/stops/101658", "https://data.delijn.be/stops/104449"], ["https://data.delijn.be/stops/207872", "https://data.delijn.be/stops/208403"], ["https://data.delijn.be/stops/103334", "https://data.delijn.be/stops/103337"], ["https://data.delijn.be/stops/200062", "https://data.delijn.be/stops/200064"], ["https://data.delijn.be/stops/200068", "https://data.delijn.be/stops/200186"], ["https://data.delijn.be/stops/502472", "https://data.delijn.be/stops/507479"], ["https://data.delijn.be/stops/102610", "https://data.delijn.be/stops/106100"], ["https://data.delijn.be/stops/207941", "https://data.delijn.be/stops/219012"], ["https://data.delijn.be/stops/200720", "https://data.delijn.be/stops/210043"], ["https://data.delijn.be/stops/302225", "https://data.delijn.be/stops/304912"], ["https://data.delijn.be/stops/103042", "https://data.delijn.be/stops/107522"], ["https://data.delijn.be/stops/408059", "https://data.delijn.be/stops/303263"], ["https://data.delijn.be/stops/202197", "https://data.delijn.be/stops/203169"], ["https://data.delijn.be/stops/300525", "https://data.delijn.be/stops/302788"], ["https://data.delijn.be/stops/404795", "https://data.delijn.be/stops/404812"], ["https://data.delijn.be/stops/507113", "https://data.delijn.be/stops/507164"], ["https://data.delijn.be/stops/400901", "https://data.delijn.be/stops/408473"], ["https://data.delijn.be/stops/305612", "https://data.delijn.be/stops/305618"], ["https://data.delijn.be/stops/101953", "https://data.delijn.be/stops/108793"], ["https://data.delijn.be/stops/302669", "https://data.delijn.be/stops/307905"], ["https://data.delijn.be/stops/108949", "https://data.delijn.be/stops/108952"], ["https://data.delijn.be/stops/201851", "https://data.delijn.be/stops/201874"], ["https://data.delijn.be/stops/405614", "https://data.delijn.be/stops/407161"], ["https://data.delijn.be/stops/403250", "https://data.delijn.be/stops/403290"], ["https://data.delijn.be/stops/504412", "https://data.delijn.be/stops/509412"], ["https://data.delijn.be/stops/407623", "https://data.delijn.be/stops/407706"], ["https://data.delijn.be/stops/400063", "https://data.delijn.be/stops/400138"], ["https://data.delijn.be/stops/304306", "https://data.delijn.be/stops/307006"], ["https://data.delijn.be/stops/109058", "https://data.delijn.be/stops/405050"], ["https://data.delijn.be/stops/503597", "https://data.delijn.be/stops/508596"], ["https://data.delijn.be/stops/303839", "https://data.delijn.be/stops/303862"], ["https://data.delijn.be/stops/208657", "https://data.delijn.be/stops/209657"], ["https://data.delijn.be/stops/503428", "https://data.delijn.be/stops/505369"], ["https://data.delijn.be/stops/503368", "https://data.delijn.be/stops/508438"], ["https://data.delijn.be/stops/505338", "https://data.delijn.be/stops/507334"], ["https://data.delijn.be/stops/204229", "https://data.delijn.be/stops/205228"], ["https://data.delijn.be/stops/406998", "https://data.delijn.be/stops/407144"], ["https://data.delijn.be/stops/307158", "https://data.delijn.be/stops/307162"], ["https://data.delijn.be/stops/302324", "https://data.delijn.be/stops/303447"], ["https://data.delijn.be/stops/102722", "https://data.delijn.be/stops/108309"], ["https://data.delijn.be/stops/303745", "https://data.delijn.be/stops/303752"], ["https://data.delijn.be/stops/402547", "https://data.delijn.be/stops/402588"], ["https://data.delijn.be/stops/401637", "https://data.delijn.be/stops/308208"], ["https://data.delijn.be/stops/303243", "https://data.delijn.be/stops/304650"], ["https://data.delijn.be/stops/508808", "https://data.delijn.be/stops/508810"], ["https://data.delijn.be/stops/404156", "https://data.delijn.be/stops/404177"], ["https://data.delijn.be/stops/400039", "https://data.delijn.be/stops/400041"], ["https://data.delijn.be/stops/500948", "https://data.delijn.be/stops/509207"], ["https://data.delijn.be/stops/308464", "https://data.delijn.be/stops/308466"], ["https://data.delijn.be/stops/302709", "https://data.delijn.be/stops/302747"], ["https://data.delijn.be/stops/508040", "https://data.delijn.be/stops/508045"], ["https://data.delijn.be/stops/505076", "https://data.delijn.be/stops/507478"], ["https://data.delijn.be/stops/103993", "https://data.delijn.be/stops/105317"], ["https://data.delijn.be/stops/206566", "https://data.delijn.be/stops/207997"], ["https://data.delijn.be/stops/400942", "https://data.delijn.be/stops/400943"], ["https://data.delijn.be/stops/307972", "https://data.delijn.be/stops/307973"], ["https://data.delijn.be/stops/101148", "https://data.delijn.be/stops/106857"], ["https://data.delijn.be/stops/106899", "https://data.delijn.be/stops/106900"], ["https://data.delijn.be/stops/200422", "https://data.delijn.be/stops/200451"], ["https://data.delijn.be/stops/407055", "https://data.delijn.be/stops/410015"], ["https://data.delijn.be/stops/507211", "https://data.delijn.be/stops/507212"], ["https://data.delijn.be/stops/501409", "https://data.delijn.be/stops/501413"], ["https://data.delijn.be/stops/204918", "https://data.delijn.be/stops/205910"], ["https://data.delijn.be/stops/407298", "https://data.delijn.be/stops/303647"], ["https://data.delijn.be/stops/409068", "https://data.delijn.be/stops/409069"], ["https://data.delijn.be/stops/206030", "https://data.delijn.be/stops/207901"], ["https://data.delijn.be/stops/503141", "https://data.delijn.be/stops/509884"], ["https://data.delijn.be/stops/102922", "https://data.delijn.be/stops/104492"], ["https://data.delijn.be/stops/501298", "https://data.delijn.be/stops/506298"], ["https://data.delijn.be/stops/501324", "https://data.delijn.be/stops/506294"], ["https://data.delijn.be/stops/206479", "https://data.delijn.be/stops/207479"], ["https://data.delijn.be/stops/208281", "https://data.delijn.be/stops/209280"], ["https://data.delijn.be/stops/404103", "https://data.delijn.be/stops/404126"], ["https://data.delijn.be/stops/202927", "https://data.delijn.be/stops/203927"], ["https://data.delijn.be/stops/304866", "https://data.delijn.be/stops/306224"], ["https://data.delijn.be/stops/302203", "https://data.delijn.be/stops/308645"], ["https://data.delijn.be/stops/200459", "https://data.delijn.be/stops/201459"], ["https://data.delijn.be/stops/202637", "https://data.delijn.be/stops/203120"], ["https://data.delijn.be/stops/208240", "https://data.delijn.be/stops/209240"], ["https://data.delijn.be/stops/207275", "https://data.delijn.be/stops/207968"], ["https://data.delijn.be/stops/502229", "https://data.delijn.be/stops/507240"], ["https://data.delijn.be/stops/205997", "https://data.delijn.be/stops/508642"], ["https://data.delijn.be/stops/301274", "https://data.delijn.be/stops/307614"], ["https://data.delijn.be/stops/400757", "https://data.delijn.be/stops/407663"], ["https://data.delijn.be/stops/305698", "https://data.delijn.be/stops/305752"], ["https://data.delijn.be/stops/304460", "https://data.delijn.be/stops/304461"], ["https://data.delijn.be/stops/206341", "https://data.delijn.be/stops/207713"], ["https://data.delijn.be/stops/403257", "https://data.delijn.be/stops/410212"], ["https://data.delijn.be/stops/205523", "https://data.delijn.be/stops/205727"], ["https://data.delijn.be/stops/302667", "https://data.delijn.be/stops/302684"], ["https://data.delijn.be/stops/103945", "https://data.delijn.be/stops/109709"], ["https://data.delijn.be/stops/204171", "https://data.delijn.be/stops/205170"], ["https://data.delijn.be/stops/202888", "https://data.delijn.be/stops/203889"], ["https://data.delijn.be/stops/505187", "https://data.delijn.be/stops/509560"], ["https://data.delijn.be/stops/502918", "https://data.delijn.be/stops/505316"], ["https://data.delijn.be/stops/305915", "https://data.delijn.be/stops/305916"], ["https://data.delijn.be/stops/202827", "https://data.delijn.be/stops/202835"], ["https://data.delijn.be/stops/105350", "https://data.delijn.be/stops/105351"], ["https://data.delijn.be/stops/107247", "https://data.delijn.be/stops/107248"], ["https://data.delijn.be/stops/503261", "https://data.delijn.be/stops/508261"], ["https://data.delijn.be/stops/405852", "https://data.delijn.be/stops/405853"], ["https://data.delijn.be/stops/408475", "https://data.delijn.be/stops/410070"], ["https://data.delijn.be/stops/509233", "https://data.delijn.be/stops/509240"], ["https://data.delijn.be/stops/301586", "https://data.delijn.be/stops/308084"], ["https://data.delijn.be/stops/301495", "https://data.delijn.be/stops/301496"], ["https://data.delijn.be/stops/504135", "https://data.delijn.be/stops/509653"], ["https://data.delijn.be/stops/206628", "https://data.delijn.be/stops/209573"], ["https://data.delijn.be/stops/308471", "https://data.delijn.be/stops/308472"], ["https://data.delijn.be/stops/108706", "https://data.delijn.be/stops/108855"], ["https://data.delijn.be/stops/305083", "https://data.delijn.be/stops/306955"], ["https://data.delijn.be/stops/503229", "https://data.delijn.be/stops/505272"], ["https://data.delijn.be/stops/408538", "https://data.delijn.be/stops/408564"], ["https://data.delijn.be/stops/200725", "https://data.delijn.be/stops/210256"], ["https://data.delijn.be/stops/300977", "https://data.delijn.be/stops/300981"], ["https://data.delijn.be/stops/507310", "https://data.delijn.be/stops/507311"], ["https://data.delijn.be/stops/401095", "https://data.delijn.be/stops/401097"], ["https://data.delijn.be/stops/208607", "https://data.delijn.be/stops/209607"], ["https://data.delijn.be/stops/300708", "https://data.delijn.be/stops/303422"], ["https://data.delijn.be/stops/204503", "https://data.delijn.be/stops/205502"], ["https://data.delijn.be/stops/102501", "https://data.delijn.be/stops/400020"], ["https://data.delijn.be/stops/407641", "https://data.delijn.be/stops/407764"], ["https://data.delijn.be/stops/409355", "https://data.delijn.be/stops/409375"], ["https://data.delijn.be/stops/409427", "https://data.delijn.be/stops/409438"], ["https://data.delijn.be/stops/404995", "https://data.delijn.be/stops/404996"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/504418"], ["https://data.delijn.be/stops/208585", "https://data.delijn.be/stops/208586"], ["https://data.delijn.be/stops/502038", "https://data.delijn.be/stops/507049"], ["https://data.delijn.be/stops/106756", "https://data.delijn.be/stops/106759"], ["https://data.delijn.be/stops/504008", "https://data.delijn.be/stops/509008"], ["https://data.delijn.be/stops/102966", "https://data.delijn.be/stops/103737"], ["https://data.delijn.be/stops/505268", "https://data.delijn.be/stops/508048"], ["https://data.delijn.be/stops/503623", "https://data.delijn.be/stops/505291"], ["https://data.delijn.be/stops/402821", "https://data.delijn.be/stops/406568"], ["https://data.delijn.be/stops/103963", "https://data.delijn.be/stops/108999"], ["https://data.delijn.be/stops/400673", "https://data.delijn.be/stops/410264"], ["https://data.delijn.be/stops/404183", "https://data.delijn.be/stops/404281"], ["https://data.delijn.be/stops/200306", "https://data.delijn.be/stops/203199"], ["https://data.delijn.be/stops/405623", "https://data.delijn.be/stops/405624"], ["https://data.delijn.be/stops/107539", "https://data.delijn.be/stops/109613"], ["https://data.delijn.be/stops/202587", "https://data.delijn.be/stops/203587"], ["https://data.delijn.be/stops/201696", "https://data.delijn.be/stops/202391"], ["https://data.delijn.be/stops/102247", "https://data.delijn.be/stops/105865"], ["https://data.delijn.be/stops/402421", "https://data.delijn.be/stops/404498"], ["https://data.delijn.be/stops/302457", "https://data.delijn.be/stops/302458"], ["https://data.delijn.be/stops/403298", "https://data.delijn.be/stops/403544"], ["https://data.delijn.be/stops/404469", "https://data.delijn.be/stops/404533"], ["https://data.delijn.be/stops/302896", "https://data.delijn.be/stops/302905"], ["https://data.delijn.be/stops/404493", "https://data.delijn.be/stops/406979"], ["https://data.delijn.be/stops/403925", "https://data.delijn.be/stops/403960"], ["https://data.delijn.be/stops/503362", "https://data.delijn.be/stops/508362"], ["https://data.delijn.be/stops/409215", "https://data.delijn.be/stops/409224"], ["https://data.delijn.be/stops/502178", "https://data.delijn.be/stops/507921"], ["https://data.delijn.be/stops/406460", "https://data.delijn.be/stops/410246"], ["https://data.delijn.be/stops/205430", "https://data.delijn.be/stops/205766"], ["https://data.delijn.be/stops/403960", "https://data.delijn.be/stops/403966"], ["https://data.delijn.be/stops/503268", "https://data.delijn.be/stops/503275"], ["https://data.delijn.be/stops/407909", "https://data.delijn.be/stops/407949"], ["https://data.delijn.be/stops/502390", "https://data.delijn.be/stops/507909"], ["https://data.delijn.be/stops/403243", "https://data.delijn.be/stops/403861"], ["https://data.delijn.be/stops/404355", "https://data.delijn.be/stops/404899"], ["https://data.delijn.be/stops/405144", "https://data.delijn.be/stops/405217"], ["https://data.delijn.be/stops/204139", "https://data.delijn.be/stops/209912"], ["https://data.delijn.be/stops/300409", "https://data.delijn.be/stops/304636"], ["https://data.delijn.be/stops/505970", "https://data.delijn.be/stops/509408"], ["https://data.delijn.be/stops/402587", "https://data.delijn.be/stops/408126"], ["https://data.delijn.be/stops/301049", "https://data.delijn.be/stops/305916"], ["https://data.delijn.be/stops/506299", "https://data.delijn.be/stops/506353"], ["https://data.delijn.be/stops/509245", "https://data.delijn.be/stops/509247"], ["https://data.delijn.be/stops/502344", "https://data.delijn.be/stops/502345"], ["https://data.delijn.be/stops/404848", "https://data.delijn.be/stops/409628"], ["https://data.delijn.be/stops/408920", "https://data.delijn.be/stops/408921"], ["https://data.delijn.be/stops/302804", "https://data.delijn.be/stops/302805"], ["https://data.delijn.be/stops/104939", "https://data.delijn.be/stops/107852"], ["https://data.delijn.be/stops/502634", "https://data.delijn.be/stops/507067"], ["https://data.delijn.be/stops/305880", "https://data.delijn.be/stops/307276"], ["https://data.delijn.be/stops/202085", "https://data.delijn.be/stops/203086"], ["https://data.delijn.be/stops/107857", "https://data.delijn.be/stops/107858"], ["https://data.delijn.be/stops/102646", "https://data.delijn.be/stops/205799"], ["https://data.delijn.be/stops/200132", "https://data.delijn.be/stops/200133"], ["https://data.delijn.be/stops/403409", "https://data.delijn.be/stops/405127"], ["https://data.delijn.be/stops/101078", "https://data.delijn.be/stops/101082"], ["https://data.delijn.be/stops/406797", "https://data.delijn.be/stops/410101"], ["https://data.delijn.be/stops/300435", "https://data.delijn.be/stops/300436"], ["https://data.delijn.be/stops/502109", "https://data.delijn.be/stops/507109"], ["https://data.delijn.be/stops/106803", "https://data.delijn.be/stops/106870"], ["https://data.delijn.be/stops/305797", "https://data.delijn.be/stops/305798"], ["https://data.delijn.be/stops/503788", "https://data.delijn.be/stops/508777"], ["https://data.delijn.be/stops/208020", "https://data.delijn.be/stops/209015"], ["https://data.delijn.be/stops/304803", "https://data.delijn.be/stops/304810"], ["https://data.delijn.be/stops/200632", "https://data.delijn.be/stops/201632"], ["https://data.delijn.be/stops/406101", "https://data.delijn.be/stops/407145"], ["https://data.delijn.be/stops/400716", "https://data.delijn.be/stops/400774"], ["https://data.delijn.be/stops/106743", "https://data.delijn.be/stops/106744"], ["https://data.delijn.be/stops/200087", "https://data.delijn.be/stops/202209"], ["https://data.delijn.be/stops/304233", "https://data.delijn.be/stops/304290"], ["https://data.delijn.be/stops/106074", "https://data.delijn.be/stops/106075"], ["https://data.delijn.be/stops/504509", "https://data.delijn.be/stops/509500"], ["https://data.delijn.be/stops/206199", "https://data.delijn.be/stops/207199"], ["https://data.delijn.be/stops/303819", "https://data.delijn.be/stops/307496"], ["https://data.delijn.be/stops/409190", "https://data.delijn.be/stops/410259"], ["https://data.delijn.be/stops/502008", "https://data.delijn.be/stops/505771"], ["https://data.delijn.be/stops/303082", "https://data.delijn.be/stops/308757"], ["https://data.delijn.be/stops/204521", "https://data.delijn.be/stops/205521"], ["https://data.delijn.be/stops/503660", "https://data.delijn.be/stops/503666"], ["https://data.delijn.be/stops/503034", "https://data.delijn.be/stops/503037"], ["https://data.delijn.be/stops/206337", "https://data.delijn.be/stops/206361"], ["https://data.delijn.be/stops/201577", "https://data.delijn.be/stops/201578"], ["https://data.delijn.be/stops/105427", "https://data.delijn.be/stops/105428"], ["https://data.delijn.be/stops/407302", "https://data.delijn.be/stops/407303"], ["https://data.delijn.be/stops/200500", "https://data.delijn.be/stops/201651"], ["https://data.delijn.be/stops/200977", "https://data.delijn.be/stops/202907"], ["https://data.delijn.be/stops/304038", "https://data.delijn.be/stops/304039"], ["https://data.delijn.be/stops/102672", "https://data.delijn.be/stops/102673"], ["https://data.delijn.be/stops/304994", "https://data.delijn.be/stops/304995"], ["https://data.delijn.be/stops/204631", "https://data.delijn.be/stops/205632"], ["https://data.delijn.be/stops/206870", "https://data.delijn.be/stops/206939"], ["https://data.delijn.be/stops/408333", "https://data.delijn.be/stops/408340"], ["https://data.delijn.be/stops/204688", "https://data.delijn.be/stops/204689"], ["https://data.delijn.be/stops/404882", "https://data.delijn.be/stops/404883"], ["https://data.delijn.be/stops/201701", "https://data.delijn.be/stops/203559"], ["https://data.delijn.be/stops/103771", "https://data.delijn.be/stops/106507"], ["https://data.delijn.be/stops/305048", "https://data.delijn.be/stops/305051"], ["https://data.delijn.be/stops/204288", "https://data.delijn.be/stops/205546"], ["https://data.delijn.be/stops/302336", "https://data.delijn.be/stops/304895"], ["https://data.delijn.be/stops/300956", "https://data.delijn.be/stops/300962"], ["https://data.delijn.be/stops/204506", "https://data.delijn.be/stops/205821"], ["https://data.delijn.be/stops/503277", "https://data.delijn.be/stops/503587"], ["https://data.delijn.be/stops/101046", "https://data.delijn.be/stops/105978"], ["https://data.delijn.be/stops/402506", "https://data.delijn.be/stops/402628"], ["https://data.delijn.be/stops/206421", "https://data.delijn.be/stops/207965"], ["https://data.delijn.be/stops/503835", "https://data.delijn.be/stops/509816"], ["https://data.delijn.be/stops/305098", "https://data.delijn.be/stops/305127"], ["https://data.delijn.be/stops/204503", "https://data.delijn.be/stops/205332"], ["https://data.delijn.be/stops/105154", "https://data.delijn.be/stops/105157"], ["https://data.delijn.be/stops/301854", "https://data.delijn.be/stops/302097"], ["https://data.delijn.be/stops/303616", "https://data.delijn.be/stops/304651"], ["https://data.delijn.be/stops/104893", "https://data.delijn.be/stops/105444"], ["https://data.delijn.be/stops/308161", "https://data.delijn.be/stops/308195"], ["https://data.delijn.be/stops/301984", "https://data.delijn.be/stops/306314"], ["https://data.delijn.be/stops/201712", "https://data.delijn.be/stops/201723"], ["https://data.delijn.be/stops/208471", "https://data.delijn.be/stops/209673"], ["https://data.delijn.be/stops/400444", "https://data.delijn.be/stops/401264"], ["https://data.delijn.be/stops/101800", "https://data.delijn.be/stops/101806"], ["https://data.delijn.be/stops/300079", "https://data.delijn.be/stops/307344"], ["https://data.delijn.be/stops/203397", "https://data.delijn.be/stops/203610"], ["https://data.delijn.be/stops/406222", "https://data.delijn.be/stops/406223"], ["https://data.delijn.be/stops/101151", "https://data.delijn.be/stops/101152"], ["https://data.delijn.be/stops/408206", "https://data.delijn.be/stops/408207"], ["https://data.delijn.be/stops/302263", "https://data.delijn.be/stops/302969"], ["https://data.delijn.be/stops/505949", "https://data.delijn.be/stops/508314"], ["https://data.delijn.be/stops/405894", "https://data.delijn.be/stops/308277"], ["https://data.delijn.be/stops/200488", "https://data.delijn.be/stops/201488"], ["https://data.delijn.be/stops/401346", "https://data.delijn.be/stops/401347"], ["https://data.delijn.be/stops/504559", "https://data.delijn.be/stops/509558"], ["https://data.delijn.be/stops/304157", "https://data.delijn.be/stops/307543"], ["https://data.delijn.be/stops/502506", "https://data.delijn.be/stops/505630"], ["https://data.delijn.be/stops/200996", "https://data.delijn.be/stops/201996"], ["https://data.delijn.be/stops/206060", "https://data.delijn.be/stops/206446"], ["https://data.delijn.be/stops/503365", "https://data.delijn.be/stops/508365"], ["https://data.delijn.be/stops/303256", "https://data.delijn.be/stops/303257"], ["https://data.delijn.be/stops/403977", "https://data.delijn.be/stops/408709"], ["https://data.delijn.be/stops/402544", "https://data.delijn.be/stops/402545"], ["https://data.delijn.be/stops/206594", "https://data.delijn.be/stops/207594"], ["https://data.delijn.be/stops/408901", "https://data.delijn.be/stops/408903"], ["https://data.delijn.be/stops/407630", "https://data.delijn.be/stops/407657"], ["https://data.delijn.be/stops/102655", "https://data.delijn.be/stops/107900"], ["https://data.delijn.be/stops/402644", "https://data.delijn.be/stops/402645"], ["https://data.delijn.be/stops/504403", "https://data.delijn.be/stops/504415"], ["https://data.delijn.be/stops/402310", "https://data.delijn.be/stops/402311"], ["https://data.delijn.be/stops/400176", "https://data.delijn.be/stops/400276"], ["https://data.delijn.be/stops/105574", "https://data.delijn.be/stops/106358"], ["https://data.delijn.be/stops/504419", "https://data.delijn.be/stops/509401"], ["https://data.delijn.be/stops/405033", "https://data.delijn.be/stops/405118"], ["https://data.delijn.be/stops/501292", "https://data.delijn.be/stops/501323"], ["https://data.delijn.be/stops/106427", "https://data.delijn.be/stops/106558"], ["https://data.delijn.be/stops/203225", "https://data.delijn.be/stops/203730"], ["https://data.delijn.be/stops/408804", "https://data.delijn.be/stops/408810"], ["https://data.delijn.be/stops/202733", "https://data.delijn.be/stops/203733"], ["https://data.delijn.be/stops/206078", "https://data.delijn.be/stops/207078"], ["https://data.delijn.be/stops/204341", "https://data.delijn.be/stops/205449"], ["https://data.delijn.be/stops/104044", "https://data.delijn.be/stops/104046"], ["https://data.delijn.be/stops/503907", "https://data.delijn.be/stops/504981"], ["https://data.delijn.be/stops/306873", "https://data.delijn.be/stops/307954"], ["https://data.delijn.be/stops/106727", "https://data.delijn.be/stops/107747"], ["https://data.delijn.be/stops/400044", "https://data.delijn.be/stops/400325"], ["https://data.delijn.be/stops/102292", "https://data.delijn.be/stops/108293"], ["https://data.delijn.be/stops/207959", "https://data.delijn.be/stops/216016"], ["https://data.delijn.be/stops/503946", "https://data.delijn.be/stops/508160"], ["https://data.delijn.be/stops/300969", "https://data.delijn.be/stops/301102"], ["https://data.delijn.be/stops/209073", "https://data.delijn.be/stops/209074"], ["https://data.delijn.be/stops/301995", "https://data.delijn.be/stops/306315"], ["https://data.delijn.be/stops/407622", "https://data.delijn.be/stops/407623"], ["https://data.delijn.be/stops/307935", "https://data.delijn.be/stops/307936"], ["https://data.delijn.be/stops/208461", "https://data.delijn.be/stops/209467"], ["https://data.delijn.be/stops/400473", "https://data.delijn.be/stops/404663"], ["https://data.delijn.be/stops/206517", "https://data.delijn.be/stops/207517"], ["https://data.delijn.be/stops/503263", "https://data.delijn.be/stops/509867"], ["https://data.delijn.be/stops/106738", "https://data.delijn.be/stops/107197"], ["https://data.delijn.be/stops/504992", "https://data.delijn.be/stops/505120"], ["https://data.delijn.be/stops/204393", "https://data.delijn.be/stops/205393"], ["https://data.delijn.be/stops/102949", "https://data.delijn.be/stops/102961"], ["https://data.delijn.be/stops/501695", "https://data.delijn.be/stops/505675"], ["https://data.delijn.be/stops/504574", "https://data.delijn.be/stops/509463"], ["https://data.delijn.be/stops/401523", "https://data.delijn.be/stops/401744"], ["https://data.delijn.be/stops/202848", "https://data.delijn.be/stops/211022"], ["https://data.delijn.be/stops/200402", "https://data.delijn.be/stops/202365"], ["https://data.delijn.be/stops/408543", "https://data.delijn.be/stops/408614"], ["https://data.delijn.be/stops/502414", "https://data.delijn.be/stops/507431"], ["https://data.delijn.be/stops/200079", "https://data.delijn.be/stops/201079"], ["https://data.delijn.be/stops/202237", "https://data.delijn.be/stops/203238"], ["https://data.delijn.be/stops/501506", "https://data.delijn.be/stops/506513"], ["https://data.delijn.be/stops/401015", "https://data.delijn.be/stops/401149"], ["https://data.delijn.be/stops/500138", "https://data.delijn.be/stops/590332"], ["https://data.delijn.be/stops/108843", "https://data.delijn.be/stops/108845"], ["https://data.delijn.be/stops/404364", "https://data.delijn.be/stops/404369"], ["https://data.delijn.be/stops/407290", "https://data.delijn.be/stops/407311"], ["https://data.delijn.be/stops/200374", "https://data.delijn.be/stops/201374"], ["https://data.delijn.be/stops/102467", "https://data.delijn.be/stops/400145"], ["https://data.delijn.be/stops/505929", "https://data.delijn.be/stops/508294"], ["https://data.delijn.be/stops/208375", "https://data.delijn.be/stops/209375"], ["https://data.delijn.be/stops/305894", "https://data.delijn.be/stops/308136"], ["https://data.delijn.be/stops/302157", "https://data.delijn.be/stops/307114"], ["https://data.delijn.be/stops/208127", "https://data.delijn.be/stops/209128"], ["https://data.delijn.be/stops/307373", "https://data.delijn.be/stops/307374"], ["https://data.delijn.be/stops/403474", "https://data.delijn.be/stops/403475"], ["https://data.delijn.be/stops/501247", "https://data.delijn.be/stops/501254"], ["https://data.delijn.be/stops/302036", "https://data.delijn.be/stops/303894"], ["https://data.delijn.be/stops/505089", "https://data.delijn.be/stops/507344"], ["https://data.delijn.be/stops/500120", "https://data.delijn.be/stops/509830"], ["https://data.delijn.be/stops/207832", "https://data.delijn.be/stops/207833"], ["https://data.delijn.be/stops/204002", "https://data.delijn.be/stops/205002"], ["https://data.delijn.be/stops/401290", "https://data.delijn.be/stops/401315"], ["https://data.delijn.be/stops/407644", "https://data.delijn.be/stops/407656"], ["https://data.delijn.be/stops/502060", "https://data.delijn.be/stops/507060"], ["https://data.delijn.be/stops/202652", "https://data.delijn.be/stops/203652"], ["https://data.delijn.be/stops/503964", "https://data.delijn.be/stops/504626"], ["https://data.delijn.be/stops/107620", "https://data.delijn.be/stops/107625"], ["https://data.delijn.be/stops/408517", "https://data.delijn.be/stops/408788"], ["https://data.delijn.be/stops/305103", "https://data.delijn.be/stops/305129"], ["https://data.delijn.be/stops/300006", "https://data.delijn.be/stops/306201"], ["https://data.delijn.be/stops/502448", "https://data.delijn.be/stops/502466"], ["https://data.delijn.be/stops/208459", "https://data.delijn.be/stops/208513"], ["https://data.delijn.be/stops/103541", "https://data.delijn.be/stops/106727"], ["https://data.delijn.be/stops/203277", "https://data.delijn.be/stops/203662"], ["https://data.delijn.be/stops/405308", "https://data.delijn.be/stops/405474"], ["https://data.delijn.be/stops/200442", "https://data.delijn.be/stops/201443"], ["https://data.delijn.be/stops/105431", "https://data.delijn.be/stops/105433"], ["https://data.delijn.be/stops/304373", "https://data.delijn.be/stops/305992"], ["https://data.delijn.be/stops/402306", "https://data.delijn.be/stops/406535"], ["https://data.delijn.be/stops/503497", "https://data.delijn.be/stops/503503"], ["https://data.delijn.be/stops/107026", "https://data.delijn.be/stops/107028"], ["https://data.delijn.be/stops/403962", "https://data.delijn.be/stops/403973"], ["https://data.delijn.be/stops/403145", "https://data.delijn.be/stops/403156"], ["https://data.delijn.be/stops/200196", "https://data.delijn.be/stops/201429"], ["https://data.delijn.be/stops/408252", "https://data.delijn.be/stops/408352"], ["https://data.delijn.be/stops/105106", "https://data.delijn.be/stops/106969"], ["https://data.delijn.be/stops/305777", "https://data.delijn.be/stops/305780"], ["https://data.delijn.be/stops/305856", "https://data.delijn.be/stops/305857"], ["https://data.delijn.be/stops/108538", "https://data.delijn.be/stops/108616"], ["https://data.delijn.be/stops/107427", "https://data.delijn.be/stops/107503"], ["https://data.delijn.be/stops/405904", "https://data.delijn.be/stops/405905"], ["https://data.delijn.be/stops/107258", "https://data.delijn.be/stops/107261"], ["https://data.delijn.be/stops/305514", "https://data.delijn.be/stops/305518"], ["https://data.delijn.be/stops/401783", "https://data.delijn.be/stops/401874"], ["https://data.delijn.be/stops/404810", "https://data.delijn.be/stops/406109"], ["https://data.delijn.be/stops/208575", "https://data.delijn.be/stops/306270"], ["https://data.delijn.be/stops/101870", "https://data.delijn.be/stops/103520"], ["https://data.delijn.be/stops/101374", "https://data.delijn.be/stops/101378"], ["https://data.delijn.be/stops/103085", "https://data.delijn.be/stops/104256"], ["https://data.delijn.be/stops/303396", "https://data.delijn.be/stops/307137"], ["https://data.delijn.be/stops/400446", "https://data.delijn.be/stops/401270"], ["https://data.delijn.be/stops/507422", "https://data.delijn.be/stops/507440"], ["https://data.delijn.be/stops/101922", "https://data.delijn.be/stops/109946"], ["https://data.delijn.be/stops/200368", "https://data.delijn.be/stops/209265"], ["https://data.delijn.be/stops/202290", "https://data.delijn.be/stops/203292"], ["https://data.delijn.be/stops/201769", "https://data.delijn.be/stops/201770"], ["https://data.delijn.be/stops/505967", "https://data.delijn.be/stops/509008"], ["https://data.delijn.be/stops/204384", "https://data.delijn.be/stops/205186"], ["https://data.delijn.be/stops/504691", "https://data.delijn.be/stops/504868"], ["https://data.delijn.be/stops/200233", "https://data.delijn.be/stops/210051"], ["https://data.delijn.be/stops/200145", "https://data.delijn.be/stops/201023"], ["https://data.delijn.be/stops/304565", "https://data.delijn.be/stops/304601"], ["https://data.delijn.be/stops/405894", "https://data.delijn.be/stops/405895"], ["https://data.delijn.be/stops/208227", "https://data.delijn.be/stops/209796"], ["https://data.delijn.be/stops/301424", "https://data.delijn.be/stops/306267"], ["https://data.delijn.be/stops/206362", "https://data.delijn.be/stops/207376"], ["https://data.delijn.be/stops/408222", "https://data.delijn.be/stops/408223"], ["https://data.delijn.be/stops/304893", "https://data.delijn.be/stops/304904"], ["https://data.delijn.be/stops/402525", "https://data.delijn.be/stops/402643"], ["https://data.delijn.be/stops/503164", "https://data.delijn.be/stops/508609"], ["https://data.delijn.be/stops/208534", "https://data.delijn.be/stops/209517"], ["https://data.delijn.be/stops/305169", "https://data.delijn.be/stops/305188"], ["https://data.delijn.be/stops/103059", "https://data.delijn.be/stops/303877"], ["https://data.delijn.be/stops/509774", "https://data.delijn.be/stops/509784"], ["https://data.delijn.be/stops/500136", "https://data.delijn.be/stops/502074"], ["https://data.delijn.be/stops/201752", "https://data.delijn.be/stops/201753"], ["https://data.delijn.be/stops/108453", "https://data.delijn.be/stops/304920"], ["https://data.delijn.be/stops/102913", "https://data.delijn.be/stops/106703"], ["https://data.delijn.be/stops/500041", "https://data.delijn.be/stops/500048"], ["https://data.delijn.be/stops/206737", "https://data.delijn.be/stops/207991"], ["https://data.delijn.be/stops/104995", "https://data.delijn.be/stops/105395"], ["https://data.delijn.be/stops/205418", "https://data.delijn.be/stops/205429"], ["https://data.delijn.be/stops/203092", "https://data.delijn.be/stops/203720"], ["https://data.delijn.be/stops/300320", "https://data.delijn.be/stops/300872"], ["https://data.delijn.be/stops/403040", "https://data.delijn.be/stops/403430"], ["https://data.delijn.be/stops/303370", "https://data.delijn.be/stops/303371"], ["https://data.delijn.be/stops/206627", "https://data.delijn.be/stops/208573"], ["https://data.delijn.be/stops/201079", "https://data.delijn.be/stops/203895"], ["https://data.delijn.be/stops/508865", "https://data.delijn.be/stops/508963"], ["https://data.delijn.be/stops/505515", "https://data.delijn.be/stops/505612"], ["https://data.delijn.be/stops/106804", "https://data.delijn.be/stops/106870"], ["https://data.delijn.be/stops/301339", "https://data.delijn.be/stops/301345"], ["https://data.delijn.be/stops/502510", "https://data.delijn.be/stops/507506"], ["https://data.delijn.be/stops/108336", "https://data.delijn.be/stops/109334"], ["https://data.delijn.be/stops/407984", "https://data.delijn.be/stops/408020"], ["https://data.delijn.be/stops/300847", "https://data.delijn.be/stops/308926"], ["https://data.delijn.be/stops/208815", "https://data.delijn.be/stops/209131"], ["https://data.delijn.be/stops/106016", "https://data.delijn.be/stops/106854"], ["https://data.delijn.be/stops/208314", "https://data.delijn.be/stops/209769"], ["https://data.delijn.be/stops/206412", "https://data.delijn.be/stops/206455"], ["https://data.delijn.be/stops/105674", "https://data.delijn.be/stops/106755"], ["https://data.delijn.be/stops/407581", "https://data.delijn.be/stops/408911"], ["https://data.delijn.be/stops/206519", "https://data.delijn.be/stops/216006"], ["https://data.delijn.be/stops/302348", "https://data.delijn.be/stops/302365"], ["https://data.delijn.be/stops/403209", "https://data.delijn.be/stops/403220"], ["https://data.delijn.be/stops/406127", "https://data.delijn.be/stops/408926"], ["https://data.delijn.be/stops/301379", "https://data.delijn.be/stops/306150"], ["https://data.delijn.be/stops/205985", "https://data.delijn.be/stops/207564"], ["https://data.delijn.be/stops/200694", "https://data.delijn.be/stops/203788"], ["https://data.delijn.be/stops/207519", "https://data.delijn.be/stops/216008"], ["https://data.delijn.be/stops/307870", "https://data.delijn.be/stops/307871"], ["https://data.delijn.be/stops/501338", "https://data.delijn.be/stops/501772"], ["https://data.delijn.be/stops/303206", "https://data.delijn.be/stops/304323"], ["https://data.delijn.be/stops/200937", "https://data.delijn.be/stops/202435"], ["https://data.delijn.be/stops/304545", "https://data.delijn.be/stops/304546"], ["https://data.delijn.be/stops/408067", "https://data.delijn.be/stops/408069"], ["https://data.delijn.be/stops/501309", "https://data.delijn.be/stops/506345"], ["https://data.delijn.be/stops/508033", "https://data.delijn.be/stops/508372"], ["https://data.delijn.be/stops/106676", "https://data.delijn.be/stops/106679"], ["https://data.delijn.be/stops/402116", "https://data.delijn.be/stops/402139"], ["https://data.delijn.be/stops/506332", "https://data.delijn.be/stops/506474"], ["https://data.delijn.be/stops/407216", "https://data.delijn.be/stops/407217"], ["https://data.delijn.be/stops/201115", "https://data.delijn.be/stops/201116"], ["https://data.delijn.be/stops/400033", "https://data.delijn.be/stops/400035"], ["https://data.delijn.be/stops/105137", "https://data.delijn.be/stops/305826"], ["https://data.delijn.be/stops/504619", "https://data.delijn.be/stops/504627"], ["https://data.delijn.be/stops/408255", "https://data.delijn.be/stops/408393"], ["https://data.delijn.be/stops/101908", "https://data.delijn.be/stops/101917"], ["https://data.delijn.be/stops/408552", "https://data.delijn.be/stops/408660"], ["https://data.delijn.be/stops/401892", "https://data.delijn.be/stops/402030"], ["https://data.delijn.be/stops/207766", "https://data.delijn.be/stops/208191"], ["https://data.delijn.be/stops/401919", "https://data.delijn.be/stops/404374"], ["https://data.delijn.be/stops/302868", "https://data.delijn.be/stops/302893"], ["https://data.delijn.be/stops/401380", "https://data.delijn.be/stops/410175"], ["https://data.delijn.be/stops/106914", "https://data.delijn.be/stops/106916"], ["https://data.delijn.be/stops/103493", "https://data.delijn.be/stops/109143"], ["https://data.delijn.be/stops/501291", "https://data.delijn.be/stops/501546"], ["https://data.delijn.be/stops/106182", "https://data.delijn.be/stops/106187"], ["https://data.delijn.be/stops/206489", "https://data.delijn.be/stops/206490"], ["https://data.delijn.be/stops/201922", "https://data.delijn.be/stops/203240"], ["https://data.delijn.be/stops/303362", "https://data.delijn.be/stops/303397"], ["https://data.delijn.be/stops/201060", "https://data.delijn.be/stops/210059"], ["https://data.delijn.be/stops/302609", "https://data.delijn.be/stops/308820"], ["https://data.delijn.be/stops/301091", "https://data.delijn.be/stops/306173"], ["https://data.delijn.be/stops/409560", "https://data.delijn.be/stops/409592"], ["https://data.delijn.be/stops/502100", "https://data.delijn.be/stops/502633"], ["https://data.delijn.be/stops/401832", "https://data.delijn.be/stops/401841"], ["https://data.delijn.be/stops/503629", "https://data.delijn.be/stops/508629"], ["https://data.delijn.be/stops/303170", "https://data.delijn.be/stops/303173"], ["https://data.delijn.be/stops/503839", "https://data.delijn.be/stops/505378"], ["https://data.delijn.be/stops/505981", "https://data.delijn.be/stops/507199"], ["https://data.delijn.be/stops/307437", "https://data.delijn.be/stops/307439"], ["https://data.delijn.be/stops/102330", "https://data.delijn.be/stops/103341"], ["https://data.delijn.be/stops/204575", "https://data.delijn.be/stops/205129"], ["https://data.delijn.be/stops/503181", "https://data.delijn.be/stops/505640"], ["https://data.delijn.be/stops/300692", "https://data.delijn.be/stops/308133"], ["https://data.delijn.be/stops/504969", "https://data.delijn.be/stops/508445"], ["https://data.delijn.be/stops/505826", "https://data.delijn.be/stops/508307"], ["https://data.delijn.be/stops/504263", "https://data.delijn.be/stops/505113"], ["https://data.delijn.be/stops/101872", "https://data.delijn.be/stops/106875"], ["https://data.delijn.be/stops/105553", "https://data.delijn.be/stops/106028"], ["https://data.delijn.be/stops/108277", "https://data.delijn.be/stops/108278"], ["https://data.delijn.be/stops/204177", "https://data.delijn.be/stops/205178"], ["https://data.delijn.be/stops/402690", "https://data.delijn.be/stops/402867"], ["https://data.delijn.be/stops/207536", "https://data.delijn.be/stops/209689"], ["https://data.delijn.be/stops/401509", "https://data.delijn.be/stops/401559"], ["https://data.delijn.be/stops/301492", "https://data.delijn.be/stops/301493"], ["https://data.delijn.be/stops/408596", "https://data.delijn.be/stops/408745"], ["https://data.delijn.be/stops/305857", "https://data.delijn.be/stops/305858"], ["https://data.delijn.be/stops/400348", "https://data.delijn.be/stops/400349"], ["https://data.delijn.be/stops/502222", "https://data.delijn.be/stops/507222"], ["https://data.delijn.be/stops/300675", "https://data.delijn.be/stops/300676"], ["https://data.delijn.be/stops/400591", "https://data.delijn.be/stops/404293"], ["https://data.delijn.be/stops/503006", "https://data.delijn.be/stops/507685"], ["https://data.delijn.be/stops/206117", "https://data.delijn.be/stops/206120"], ["https://data.delijn.be/stops/205025", "https://data.delijn.be/stops/205819"], ["https://data.delijn.be/stops/307755", "https://data.delijn.be/stops/307756"], ["https://data.delijn.be/stops/402854", "https://data.delijn.be/stops/402855"], ["https://data.delijn.be/stops/304447", "https://data.delijn.be/stops/307714"], ["https://data.delijn.be/stops/204174", "https://data.delijn.be/stops/205389"], ["https://data.delijn.be/stops/200071", "https://data.delijn.be/stops/208842"], ["https://data.delijn.be/stops/504635", "https://data.delijn.be/stops/509514"], ["https://data.delijn.be/stops/209442", "https://data.delijn.be/stops/209516"], ["https://data.delijn.be/stops/103146", "https://data.delijn.be/stops/109441"], ["https://data.delijn.be/stops/107280", "https://data.delijn.be/stops/108435"], ["https://data.delijn.be/stops/205929", "https://data.delijn.be/stops/205931"], ["https://data.delijn.be/stops/304978", "https://data.delijn.be/stops/304979"], ["https://data.delijn.be/stops/205398", "https://data.delijn.be/stops/205443"], ["https://data.delijn.be/stops/106658", "https://data.delijn.be/stops/106662"], ["https://data.delijn.be/stops/402749", "https://data.delijn.be/stops/405180"], ["https://data.delijn.be/stops/206154", "https://data.delijn.be/stops/207118"], ["https://data.delijn.be/stops/204303", "https://data.delijn.be/stops/205303"], ["https://data.delijn.be/stops/408096", "https://data.delijn.be/stops/408141"], ["https://data.delijn.be/stops/208528", "https://data.delijn.be/stops/209533"], ["https://data.delijn.be/stops/404008", "https://data.delijn.be/stops/404010"], ["https://data.delijn.be/stops/208658", "https://data.delijn.be/stops/209658"], ["https://data.delijn.be/stops/302283", "https://data.delijn.be/stops/302298"], ["https://data.delijn.be/stops/408255", "https://data.delijn.be/stops/409644"], ["https://data.delijn.be/stops/209150", "https://data.delijn.be/stops/209194"], ["https://data.delijn.be/stops/504156", "https://data.delijn.be/stops/504189"], ["https://data.delijn.be/stops/403886", "https://data.delijn.be/stops/406856"], ["https://data.delijn.be/stops/404538", "https://data.delijn.be/stops/404539"], ["https://data.delijn.be/stops/105297", "https://data.delijn.be/stops/105298"], ["https://data.delijn.be/stops/403920", "https://data.delijn.be/stops/403922"], ["https://data.delijn.be/stops/200909", "https://data.delijn.be/stops/202228"], ["https://data.delijn.be/stops/505281", "https://data.delijn.be/stops/509936"], ["https://data.delijn.be/stops/304424", "https://data.delijn.be/stops/307394"], ["https://data.delijn.be/stops/306697", "https://data.delijn.be/stops/308700"], ["https://data.delijn.be/stops/208002", "https://data.delijn.be/stops/209098"], ["https://data.delijn.be/stops/400575", "https://data.delijn.be/stops/403005"], ["https://data.delijn.be/stops/505586", "https://data.delijn.be/stops/507536"], ["https://data.delijn.be/stops/400718", "https://data.delijn.be/stops/401919"], ["https://data.delijn.be/stops/504396", "https://data.delijn.be/stops/509396"], ["https://data.delijn.be/stops/206335", "https://data.delijn.be/stops/207335"], ["https://data.delijn.be/stops/504645", "https://data.delijn.be/stops/509190"], ["https://data.delijn.be/stops/204071", "https://data.delijn.be/stops/205184"], ["https://data.delijn.be/stops/106736", "https://data.delijn.be/stops/106738"], ["https://data.delijn.be/stops/401794", "https://data.delijn.be/stops/401808"], ["https://data.delijn.be/stops/101081", "https://data.delijn.be/stops/101082"], ["https://data.delijn.be/stops/200325", "https://data.delijn.be/stops/200339"], ["https://data.delijn.be/stops/104338", "https://data.delijn.be/stops/104341"], ["https://data.delijn.be/stops/200665", "https://data.delijn.be/stops/200667"], ["https://data.delijn.be/stops/104403", "https://data.delijn.be/stops/204493"], ["https://data.delijn.be/stops/406127", "https://data.delijn.be/stops/406806"], ["https://data.delijn.be/stops/300371", "https://data.delijn.be/stops/307723"], ["https://data.delijn.be/stops/202361", "https://data.delijn.be/stops/203360"], ["https://data.delijn.be/stops/504029", "https://data.delijn.be/stops/504102"], ["https://data.delijn.be/stops/304535", "https://data.delijn.be/stops/306001"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/208154"], ["https://data.delijn.be/stops/106037", "https://data.delijn.be/stops/106052"], ["https://data.delijn.be/stops/204483", "https://data.delijn.be/stops/204516"], ["https://data.delijn.be/stops/400329", "https://data.delijn.be/stops/400356"], ["https://data.delijn.be/stops/402159", "https://data.delijn.be/stops/402167"], ["https://data.delijn.be/stops/209076", "https://data.delijn.be/stops/209540"], ["https://data.delijn.be/stops/302810", "https://data.delijn.be/stops/306176"], ["https://data.delijn.be/stops/102807", "https://data.delijn.be/stops/103900"], ["https://data.delijn.be/stops/107288", "https://data.delijn.be/stops/107291"], ["https://data.delijn.be/stops/300579", "https://data.delijn.be/stops/307043"], ["https://data.delijn.be/stops/500138", "https://data.delijn.be/stops/507739"], ["https://data.delijn.be/stops/304039", "https://data.delijn.be/stops/305437"], ["https://data.delijn.be/stops/208282", "https://data.delijn.be/stops/209281"], ["https://data.delijn.be/stops/301324", "https://data.delijn.be/stops/301913"], ["https://data.delijn.be/stops/304237", "https://data.delijn.be/stops/304238"], ["https://data.delijn.be/stops/302084", "https://data.delijn.be/stops/302087"], ["https://data.delijn.be/stops/503863", "https://data.delijn.be/stops/590007"], ["https://data.delijn.be/stops/505376", "https://data.delijn.be/stops/508949"], ["https://data.delijn.be/stops/203531", "https://data.delijn.be/stops/203532"], ["https://data.delijn.be/stops/207835", "https://data.delijn.be/stops/207939"], ["https://data.delijn.be/stops/208488", "https://data.delijn.be/stops/208621"], ["https://data.delijn.be/stops/402494", "https://data.delijn.be/stops/402495"], ["https://data.delijn.be/stops/501312", "https://data.delijn.be/stops/501322"], ["https://data.delijn.be/stops/508316", "https://data.delijn.be/stops/508676"], ["https://data.delijn.be/stops/208852", "https://data.delijn.be/stops/505623"], ["https://data.delijn.be/stops/103246", "https://data.delijn.be/stops/109771"], ["https://data.delijn.be/stops/102856", "https://data.delijn.be/stops/104402"], ["https://data.delijn.be/stops/307267", "https://data.delijn.be/stops/307767"], ["https://data.delijn.be/stops/403398", "https://data.delijn.be/stops/404976"], ["https://data.delijn.be/stops/508927", "https://data.delijn.be/stops/508931"], ["https://data.delijn.be/stops/407210", "https://data.delijn.be/stops/407211"], ["https://data.delijn.be/stops/203323", "https://data.delijn.be/stops/210044"], ["https://data.delijn.be/stops/108902", "https://data.delijn.be/stops/108903"], ["https://data.delijn.be/stops/406649", "https://data.delijn.be/stops/406654"], ["https://data.delijn.be/stops/200849", "https://data.delijn.be/stops/209656"], ["https://data.delijn.be/stops/206155", "https://data.delijn.be/stops/207737"], ["https://data.delijn.be/stops/306869", "https://data.delijn.be/stops/306870"], ["https://data.delijn.be/stops/104335", "https://data.delijn.be/stops/105565"], ["https://data.delijn.be/stops/301233", "https://data.delijn.be/stops/307850"], ["https://data.delijn.be/stops/502485", "https://data.delijn.be/stops/502803"], ["https://data.delijn.be/stops/304509", "https://data.delijn.be/stops/304517"], ["https://data.delijn.be/stops/300983", "https://data.delijn.be/stops/300996"], ["https://data.delijn.be/stops/106706", "https://data.delijn.be/stops/106708"], ["https://data.delijn.be/stops/204777", "https://data.delijn.be/stops/205583"], ["https://data.delijn.be/stops/501345", "https://data.delijn.be/stops/506348"], ["https://data.delijn.be/stops/203991", "https://data.delijn.be/stops/210850"], ["https://data.delijn.be/stops/308484", "https://data.delijn.be/stops/308491"], ["https://data.delijn.be/stops/301290", "https://data.delijn.be/stops/301294"], ["https://data.delijn.be/stops/402528", "https://data.delijn.be/stops/404092"], ["https://data.delijn.be/stops/505118", "https://data.delijn.be/stops/509477"], ["https://data.delijn.be/stops/200242", "https://data.delijn.be/stops/201298"], ["https://data.delijn.be/stops/208387", "https://data.delijn.be/stops/209110"], ["https://data.delijn.be/stops/503772", "https://data.delijn.be/stops/503775"], ["https://data.delijn.be/stops/405147", "https://data.delijn.be/stops/405193"], ["https://data.delijn.be/stops/200466", "https://data.delijn.be/stops/209956"], ["https://data.delijn.be/stops/201698", "https://data.delijn.be/stops/202387"], ["https://data.delijn.be/stops/302743", "https://data.delijn.be/stops/307846"], ["https://data.delijn.be/stops/303133", "https://data.delijn.be/stops/303245"], ["https://data.delijn.be/stops/303251", "https://data.delijn.be/stops/303295"], ["https://data.delijn.be/stops/106580", "https://data.delijn.be/stops/106581"], ["https://data.delijn.be/stops/208342", "https://data.delijn.be/stops/209342"], ["https://data.delijn.be/stops/104368", "https://data.delijn.be/stops/205602"], ["https://data.delijn.be/stops/502020", "https://data.delijn.be/stops/502914"], ["https://data.delijn.be/stops/500935", "https://data.delijn.be/stops/503123"], ["https://data.delijn.be/stops/101527", "https://data.delijn.be/stops/102287"], ["https://data.delijn.be/stops/408087", "https://data.delijn.be/stops/408120"], ["https://data.delijn.be/stops/107624", "https://data.delijn.be/stops/108526"], ["https://data.delijn.be/stops/300247", "https://data.delijn.be/stops/300256"], ["https://data.delijn.be/stops/104757", "https://data.delijn.be/stops/104759"], ["https://data.delijn.be/stops/503451", "https://data.delijn.be/stops/508469"], ["https://data.delijn.be/stops/104113", "https://data.delijn.be/stops/107879"], ["https://data.delijn.be/stops/208598", "https://data.delijn.be/stops/307600"], ["https://data.delijn.be/stops/102427", "https://data.delijn.be/stops/109128"], ["https://data.delijn.be/stops/204431", "https://data.delijn.be/stops/204443"], ["https://data.delijn.be/stops/201229", "https://data.delijn.be/stops/210119"], ["https://data.delijn.be/stops/107878", "https://data.delijn.be/stops/107883"], ["https://data.delijn.be/stops/202249", "https://data.delijn.be/stops/203248"], ["https://data.delijn.be/stops/501261", "https://data.delijn.be/stops/506253"], ["https://data.delijn.be/stops/305691", "https://data.delijn.be/stops/305704"], ["https://data.delijn.be/stops/302096", "https://data.delijn.be/stops/308600"], ["https://data.delijn.be/stops/401504", "https://data.delijn.be/stops/401505"], ["https://data.delijn.be/stops/302361", "https://data.delijn.be/stops/302364"], ["https://data.delijn.be/stops/307566", "https://data.delijn.be/stops/307567"], ["https://data.delijn.be/stops/305580", "https://data.delijn.be/stops/308548"], ["https://data.delijn.be/stops/202722", "https://data.delijn.be/stops/203086"], ["https://data.delijn.be/stops/201495", "https://data.delijn.be/stops/210052"], ["https://data.delijn.be/stops/303371", "https://data.delijn.be/stops/303802"], ["https://data.delijn.be/stops/500119", "https://data.delijn.be/stops/502270"], ["https://data.delijn.be/stops/400266", "https://data.delijn.be/stops/405537"], ["https://data.delijn.be/stops/505039", "https://data.delijn.be/stops/506119"], ["https://data.delijn.be/stops/304971", "https://data.delijn.be/stops/304973"], ["https://data.delijn.be/stops/204760", "https://data.delijn.be/stops/205759"], ["https://data.delijn.be/stops/209215", "https://data.delijn.be/stops/209785"], ["https://data.delijn.be/stops/300556", "https://data.delijn.be/stops/307859"], ["https://data.delijn.be/stops/103729", "https://data.delijn.be/stops/108533"], ["https://data.delijn.be/stops/106893", "https://data.delijn.be/stops/106894"], ["https://data.delijn.be/stops/401160", "https://data.delijn.be/stops/408107"], ["https://data.delijn.be/stops/504559", "https://data.delijn.be/stops/505185"], ["https://data.delijn.be/stops/505535", "https://data.delijn.be/stops/509586"], ["https://data.delijn.be/stops/503203", "https://data.delijn.be/stops/508199"], ["https://data.delijn.be/stops/503206", "https://data.delijn.be/stops/508206"], ["https://data.delijn.be/stops/104596", "https://data.delijn.be/stops/106840"], ["https://data.delijn.be/stops/200870", "https://data.delijn.be/stops/203287"], ["https://data.delijn.be/stops/101872", "https://data.delijn.be/stops/101873"], ["https://data.delijn.be/stops/101589", "https://data.delijn.be/stops/102600"], ["https://data.delijn.be/stops/204467", "https://data.delijn.be/stops/204782"], ["https://data.delijn.be/stops/403958", "https://data.delijn.be/stops/403959"], ["https://data.delijn.be/stops/105421", "https://data.delijn.be/stops/105851"], ["https://data.delijn.be/stops/210090", "https://data.delijn.be/stops/211090"], ["https://data.delijn.be/stops/505502", "https://data.delijn.be/stops/505505"], ["https://data.delijn.be/stops/301947", "https://data.delijn.be/stops/303322"], ["https://data.delijn.be/stops/501123", "https://data.delijn.be/stops/506126"], ["https://data.delijn.be/stops/402947", "https://data.delijn.be/stops/306020"], ["https://data.delijn.be/stops/501308", "https://data.delijn.be/stops/501334"], ["https://data.delijn.be/stops/404888", "https://data.delijn.be/stops/404901"], ["https://data.delijn.be/stops/504266", "https://data.delijn.be/stops/509268"], ["https://data.delijn.be/stops/200717", "https://data.delijn.be/stops/202126"], ["https://data.delijn.be/stops/405702", "https://data.delijn.be/stops/405740"], ["https://data.delijn.be/stops/301181", "https://data.delijn.be/stops/301255"], ["https://data.delijn.be/stops/308085", "https://data.delijn.be/stops/308106"], ["https://data.delijn.be/stops/201775", "https://data.delijn.be/stops/209225"], ["https://data.delijn.be/stops/104742", "https://data.delijn.be/stops/104759"], ["https://data.delijn.be/stops/502196", "https://data.delijn.be/stops/502198"], ["https://data.delijn.be/stops/303762", "https://data.delijn.be/stops/303765"], ["https://data.delijn.be/stops/207887", "https://data.delijn.be/stops/207895"], ["https://data.delijn.be/stops/401086", "https://data.delijn.be/stops/409980"], ["https://data.delijn.be/stops/202772", "https://data.delijn.be/stops/203772"], ["https://data.delijn.be/stops/201262", "https://data.delijn.be/stops/203547"], ["https://data.delijn.be/stops/504259", "https://data.delijn.be/stops/505301"], ["https://data.delijn.be/stops/503374", "https://data.delijn.be/stops/505856"], ["https://data.delijn.be/stops/502478", "https://data.delijn.be/stops/505319"], ["https://data.delijn.be/stops/302610", "https://data.delijn.be/stops/302617"], ["https://data.delijn.be/stops/101500", "https://data.delijn.be/stops/109349"], ["https://data.delijn.be/stops/504091", "https://data.delijn.be/stops/505915"], ["https://data.delijn.be/stops/404928", "https://data.delijn.be/stops/409774"], ["https://data.delijn.be/stops/302317", "https://data.delijn.be/stops/302329"], ["https://data.delijn.be/stops/503114", "https://data.delijn.be/stops/505962"], ["https://data.delijn.be/stops/101832", "https://data.delijn.be/stops/108183"], ["https://data.delijn.be/stops/404762", "https://data.delijn.be/stops/404763"], ["https://data.delijn.be/stops/307381", "https://data.delijn.be/stops/308203"], ["https://data.delijn.be/stops/208350", "https://data.delijn.be/stops/209348"], ["https://data.delijn.be/stops/302905", "https://data.delijn.be/stops/303228"], ["https://data.delijn.be/stops/402487", "https://data.delijn.be/stops/402488"], ["https://data.delijn.be/stops/500944", "https://data.delijn.be/stops/504619"], ["https://data.delijn.be/stops/402235", "https://data.delijn.be/stops/407328"], ["https://data.delijn.be/stops/501680", "https://data.delijn.be/stops/504126"], ["https://data.delijn.be/stops/203869", "https://data.delijn.be/stops/206968"], ["https://data.delijn.be/stops/502406", "https://data.delijn.be/stops/507406"], ["https://data.delijn.be/stops/407000", "https://data.delijn.be/stops/301519"], ["https://data.delijn.be/stops/301831", "https://data.delijn.be/stops/306984"], ["https://data.delijn.be/stops/502397", "https://data.delijn.be/stops/507386"], ["https://data.delijn.be/stops/208052", "https://data.delijn.be/stops/208053"], ["https://data.delijn.be/stops/505565", "https://data.delijn.be/stops/508616"], ["https://data.delijn.be/stops/109719", "https://data.delijn.be/stops/109995"], ["https://data.delijn.be/stops/204295", "https://data.delijn.be/stops/204495"], ["https://data.delijn.be/stops/404261", "https://data.delijn.be/stops/405667"], ["https://data.delijn.be/stops/305513", "https://data.delijn.be/stops/305514"], ["https://data.delijn.be/stops/204676", "https://data.delijn.be/stops/204677"], ["https://data.delijn.be/stops/501094", "https://data.delijn.be/stops/501560"], ["https://data.delijn.be/stops/406339", "https://data.delijn.be/stops/406403"], ["https://data.delijn.be/stops/405856", "https://data.delijn.be/stops/409423"], ["https://data.delijn.be/stops/400409", "https://data.delijn.be/stops/400423"], ["https://data.delijn.be/stops/102321", "https://data.delijn.be/stops/107525"], ["https://data.delijn.be/stops/305747", "https://data.delijn.be/stops/305749"], ["https://data.delijn.be/stops/504954", "https://data.delijn.be/stops/509976"], ["https://data.delijn.be/stops/501349", "https://data.delijn.be/stops/506335"], ["https://data.delijn.be/stops/207668", "https://data.delijn.be/stops/208056"], ["https://data.delijn.be/stops/400991", "https://data.delijn.be/stops/409059"], ["https://data.delijn.be/stops/301030", "https://data.delijn.be/stops/301033"], ["https://data.delijn.be/stops/502586", "https://data.delijn.be/stops/505054"], ["https://data.delijn.be/stops/306152", "https://data.delijn.be/stops/306153"], ["https://data.delijn.be/stops/307024", "https://data.delijn.be/stops/307533"], ["https://data.delijn.be/stops/202977", "https://data.delijn.be/stops/203976"], ["https://data.delijn.be/stops/205738", "https://data.delijn.be/stops/205747"], ["https://data.delijn.be/stops/206417", "https://data.delijn.be/stops/206517"], ["https://data.delijn.be/stops/502690", "https://data.delijn.be/stops/508822"], ["https://data.delijn.be/stops/509716", "https://data.delijn.be/stops/509747"], ["https://data.delijn.be/stops/400682", "https://data.delijn.be/stops/408972"], ["https://data.delijn.be/stops/402834", "https://data.delijn.be/stops/409026"], ["https://data.delijn.be/stops/308052", "https://data.delijn.be/stops/308053"], ["https://data.delijn.be/stops/408004", "https://data.delijn.be/stops/408285"], ["https://data.delijn.be/stops/504110", "https://data.delijn.be/stops/504113"], ["https://data.delijn.be/stops/401349", "https://data.delijn.be/stops/401366"], ["https://data.delijn.be/stops/101482", "https://data.delijn.be/stops/109291"], ["https://data.delijn.be/stops/400085", "https://data.delijn.be/stops/400119"], ["https://data.delijn.be/stops/503378", "https://data.delijn.be/stops/508378"], ["https://data.delijn.be/stops/402047", "https://data.delijn.be/stops/410073"], ["https://data.delijn.be/stops/106957", "https://data.delijn.be/stops/106958"], ["https://data.delijn.be/stops/205046", "https://data.delijn.be/stops/205301"], ["https://data.delijn.be/stops/101523", "https://data.delijn.be/stops/109643"], ["https://data.delijn.be/stops/501213", "https://data.delijn.be/stops/501220"], ["https://data.delijn.be/stops/304493", "https://data.delijn.be/stops/307564"], ["https://data.delijn.be/stops/408827", "https://data.delijn.be/stops/408871"], ["https://data.delijn.be/stops/202875", "https://data.delijn.be/stops/202877"], ["https://data.delijn.be/stops/504945", "https://data.delijn.be/stops/509945"], ["https://data.delijn.be/stops/405929", "https://data.delijn.be/stops/405932"], ["https://data.delijn.be/stops/404667", "https://data.delijn.be/stops/404671"], ["https://data.delijn.be/stops/306000", "https://data.delijn.be/stops/308046"], ["https://data.delijn.be/stops/300922", "https://data.delijn.be/stops/300923"], ["https://data.delijn.be/stops/105901", "https://data.delijn.be/stops/105903"], ["https://data.delijn.be/stops/302015", "https://data.delijn.be/stops/308753"], ["https://data.delijn.be/stops/104029", "https://data.delijn.be/stops/106939"], ["https://data.delijn.be/stops/507540", "https://data.delijn.be/stops/507582"], ["https://data.delijn.be/stops/400828", "https://data.delijn.be/stops/400829"], ["https://data.delijn.be/stops/501095", "https://data.delijn.be/stops/505528"], ["https://data.delijn.be/stops/101534", "https://data.delijn.be/stops/108774"], ["https://data.delijn.be/stops/501015", "https://data.delijn.be/stops/506015"], ["https://data.delijn.be/stops/201530", "https://data.delijn.be/stops/210079"], ["https://data.delijn.be/stops/501687", "https://data.delijn.be/stops/506612"], ["https://data.delijn.be/stops/400423", "https://data.delijn.be/stops/409724"], ["https://data.delijn.be/stops/108694", "https://data.delijn.be/stops/108697"], ["https://data.delijn.be/stops/201643", "https://data.delijn.be/stops/203777"], ["https://data.delijn.be/stops/407123", "https://data.delijn.be/stops/407127"], ["https://data.delijn.be/stops/105567", "https://data.delijn.be/stops/105568"], ["https://data.delijn.be/stops/501403", "https://data.delijn.be/stops/506418"], ["https://data.delijn.be/stops/508270", "https://data.delijn.be/stops/508495"], ["https://data.delijn.be/stops/408512", "https://data.delijn.be/stops/408675"], ["https://data.delijn.be/stops/207388", "https://data.delijn.be/stops/207723"], ["https://data.delijn.be/stops/400495", "https://data.delijn.be/stops/407213"], ["https://data.delijn.be/stops/204299", "https://data.delijn.be/stops/205299"], ["https://data.delijn.be/stops/300977", "https://data.delijn.be/stops/301082"], ["https://data.delijn.be/stops/101110", "https://data.delijn.be/stops/102911"], ["https://data.delijn.be/stops/402400", "https://data.delijn.be/stops/402489"], ["https://data.delijn.be/stops/300707", "https://data.delijn.be/stops/306946"], ["https://data.delijn.be/stops/102040", "https://data.delijn.be/stops/103630"], ["https://data.delijn.be/stops/504475", "https://data.delijn.be/stops/505118"], ["https://data.delijn.be/stops/504192", "https://data.delijn.be/stops/509167"], ["https://data.delijn.be/stops/206417", "https://data.delijn.be/stops/207418"], ["https://data.delijn.be/stops/505440", "https://data.delijn.be/stops/505634"], ["https://data.delijn.be/stops/504659", "https://data.delijn.be/stops/509044"], ["https://data.delijn.be/stops/206831", "https://data.delijn.be/stops/207425"], ["https://data.delijn.be/stops/406215", "https://data.delijn.be/stops/406223"], ["https://data.delijn.be/stops/204591", "https://data.delijn.be/stops/211067"], ["https://data.delijn.be/stops/107959", "https://data.delijn.be/stops/109584"], ["https://data.delijn.be/stops/404192", "https://data.delijn.be/stops/405933"], ["https://data.delijn.be/stops/201904", "https://data.delijn.be/stops/201905"], ["https://data.delijn.be/stops/204392", "https://data.delijn.be/stops/204401"], ["https://data.delijn.be/stops/200515", "https://data.delijn.be/stops/201515"], ["https://data.delijn.be/stops/208570", "https://data.delijn.be/stops/209552"], ["https://data.delijn.be/stops/103097", "https://data.delijn.be/stops/103973"], ["https://data.delijn.be/stops/504078", "https://data.delijn.be/stops/509608"], ["https://data.delijn.be/stops/504555", "https://data.delijn.be/stops/504561"], ["https://data.delijn.be/stops/504137", "https://data.delijn.be/stops/504143"], ["https://data.delijn.be/stops/405247", "https://data.delijn.be/stops/407313"], ["https://data.delijn.be/stops/209492", "https://data.delijn.be/stops/209736"], ["https://data.delijn.be/stops/108917", "https://data.delijn.be/stops/108918"], ["https://data.delijn.be/stops/504086", "https://data.delijn.be/stops/504978"], ["https://data.delijn.be/stops/403804", "https://data.delijn.be/stops/406302"], ["https://data.delijn.be/stops/208292", "https://data.delijn.be/stops/209790"], ["https://data.delijn.be/stops/502608", "https://data.delijn.be/stops/504881"], ["https://data.delijn.be/stops/102468", "https://data.delijn.be/stops/400413"], ["https://data.delijn.be/stops/206653", "https://data.delijn.be/stops/206715"], ["https://data.delijn.be/stops/407108", "https://data.delijn.be/stops/409780"], ["https://data.delijn.be/stops/401476", "https://data.delijn.be/stops/401749"], ["https://data.delijn.be/stops/301084", "https://data.delijn.be/stops/307877"], ["https://data.delijn.be/stops/505274", "https://data.delijn.be/stops/508013"], ["https://data.delijn.be/stops/101995", "https://data.delijn.be/stops/103725"], ["https://data.delijn.be/stops/204673", "https://data.delijn.be/stops/205676"], ["https://data.delijn.be/stops/200072", "https://data.delijn.be/stops/201233"], ["https://data.delijn.be/stops/502500", "https://data.delijn.be/stops/507515"], ["https://data.delijn.be/stops/504335", "https://data.delijn.be/stops/509335"], ["https://data.delijn.be/stops/300269", "https://data.delijn.be/stops/302148"], ["https://data.delijn.be/stops/209600", "https://data.delijn.be/stops/307591"], ["https://data.delijn.be/stops/507431", "https://data.delijn.be/stops/507432"], ["https://data.delijn.be/stops/508561", "https://data.delijn.be/stops/508607"], ["https://data.delijn.be/stops/206300", "https://data.delijn.be/stops/206465"], ["https://data.delijn.be/stops/106882", "https://data.delijn.be/stops/106884"], ["https://data.delijn.be/stops/300066", "https://data.delijn.be/stops/300069"], ["https://data.delijn.be/stops/300691", "https://data.delijn.be/stops/303517"], ["https://data.delijn.be/stops/106225", "https://data.delijn.be/stops/106334"], ["https://data.delijn.be/stops/407761", "https://data.delijn.be/stops/409744"], ["https://data.delijn.be/stops/303270", "https://data.delijn.be/stops/303272"], ["https://data.delijn.be/stops/204152", "https://data.delijn.be/stops/205145"], ["https://data.delijn.be/stops/502444", "https://data.delijn.be/stops/502461"], ["https://data.delijn.be/stops/301622", "https://data.delijn.be/stops/301672"], ["https://data.delijn.be/stops/102289", "https://data.delijn.be/stops/103528"], ["https://data.delijn.be/stops/303694", "https://data.delijn.be/stops/303697"], ["https://data.delijn.be/stops/507057", "https://data.delijn.be/stops/507642"], ["https://data.delijn.be/stops/102717", "https://data.delijn.be/stops/103001"], ["https://data.delijn.be/stops/101701", "https://data.delijn.be/stops/103690"], ["https://data.delijn.be/stops/502383", "https://data.delijn.be/stops/507621"], ["https://data.delijn.be/stops/505510", "https://data.delijn.be/stops/509702"], ["https://data.delijn.be/stops/204759", "https://data.delijn.be/stops/204798"], ["https://data.delijn.be/stops/400335", "https://data.delijn.be/stops/400385"], ["https://data.delijn.be/stops/403664", "https://data.delijn.be/stops/409254"], ["https://data.delijn.be/stops/101517", "https://data.delijn.be/stops/109026"], ["https://data.delijn.be/stops/105268", "https://data.delijn.be/stops/109956"], ["https://data.delijn.be/stops/208275", "https://data.delijn.be/stops/208276"], ["https://data.delijn.be/stops/405671", "https://data.delijn.be/stops/406968"], ["https://data.delijn.be/stops/306089", "https://data.delijn.be/stops/306156"], ["https://data.delijn.be/stops/401479", "https://data.delijn.be/stops/401515"], ["https://data.delijn.be/stops/305494", "https://data.delijn.be/stops/307987"], ["https://data.delijn.be/stops/109163", "https://data.delijn.be/stops/109165"], ["https://data.delijn.be/stops/400289", "https://data.delijn.be/stops/400332"], ["https://data.delijn.be/stops/305106", "https://data.delijn.be/stops/308122"], ["https://data.delijn.be/stops/302453", "https://data.delijn.be/stops/302459"], ["https://data.delijn.be/stops/301679", "https://data.delijn.be/stops/302387"], ["https://data.delijn.be/stops/105124", "https://data.delijn.be/stops/105193"], ["https://data.delijn.be/stops/105132", "https://data.delijn.be/stops/105133"], ["https://data.delijn.be/stops/304501", "https://data.delijn.be/stops/307466"], ["https://data.delijn.be/stops/105232", "https://data.delijn.be/stops/109956"], ["https://data.delijn.be/stops/201274", "https://data.delijn.be/stops/201275"], ["https://data.delijn.be/stops/301613", "https://data.delijn.be/stops/303622"], ["https://data.delijn.be/stops/501332", "https://data.delijn.be/stops/506332"], ["https://data.delijn.be/stops/404365", "https://data.delijn.be/stops/404367"], ["https://data.delijn.be/stops/304496", "https://data.delijn.be/stops/304497"], ["https://data.delijn.be/stops/506289", "https://data.delijn.be/stops/506290"], ["https://data.delijn.be/stops/305409", "https://data.delijn.be/stops/305414"], ["https://data.delijn.be/stops/307377", "https://data.delijn.be/stops/307384"], ["https://data.delijn.be/stops/106131", "https://data.delijn.be/stops/109372"], ["https://data.delijn.be/stops/504526", "https://data.delijn.be/stops/504530"], ["https://data.delijn.be/stops/204312", "https://data.delijn.be/stops/204708"], ["https://data.delijn.be/stops/504985", "https://data.delijn.be/stops/509022"], ["https://data.delijn.be/stops/403334", "https://data.delijn.be/stops/403346"], ["https://data.delijn.be/stops/202042", "https://data.delijn.be/stops/203042"], ["https://data.delijn.be/stops/505543", "https://data.delijn.be/stops/509581"], ["https://data.delijn.be/stops/105019", "https://data.delijn.be/stops/105086"], ["https://data.delijn.be/stops/201380", "https://data.delijn.be/stops/208829"], ["https://data.delijn.be/stops/101036", "https://data.delijn.be/stops/205563"], ["https://data.delijn.be/stops/206439", "https://data.delijn.be/stops/209560"], ["https://data.delijn.be/stops/308452", "https://data.delijn.be/stops/308692"], ["https://data.delijn.be/stops/303702", "https://data.delijn.be/stops/305377"], ["https://data.delijn.be/stops/500115", "https://data.delijn.be/stops/500119"], ["https://data.delijn.be/stops/106016", "https://data.delijn.be/stops/107910"], ["https://data.delijn.be/stops/203036", "https://data.delijn.be/stops/203985"], ["https://data.delijn.be/stops/207443", "https://data.delijn.be/stops/207444"], ["https://data.delijn.be/stops/303225", "https://data.delijn.be/stops/303226"], ["https://data.delijn.be/stops/300451", "https://data.delijn.be/stops/308055"], ["https://data.delijn.be/stops/505562", "https://data.delijn.be/stops/505567"], ["https://data.delijn.be/stops/202574", "https://data.delijn.be/stops/203573"], ["https://data.delijn.be/stops/301550", "https://data.delijn.be/stops/306963"], ["https://data.delijn.be/stops/206046", "https://data.delijn.be/stops/207880"], ["https://data.delijn.be/stops/101845", "https://data.delijn.be/stops/103131"], ["https://data.delijn.be/stops/401922", "https://data.delijn.be/stops/407230"], ["https://data.delijn.be/stops/101753", "https://data.delijn.be/stops/109820"], ["https://data.delijn.be/stops/404130", "https://data.delijn.be/stops/404195"], ["https://data.delijn.be/stops/202396", "https://data.delijn.be/stops/202730"], ["https://data.delijn.be/stops/103618", "https://data.delijn.be/stops/106306"], ["https://data.delijn.be/stops/105568", "https://data.delijn.be/stops/105572"], ["https://data.delijn.be/stops/102295", "https://data.delijn.be/stops/107445"], ["https://data.delijn.be/stops/102073", "https://data.delijn.be/stops/109716"], ["https://data.delijn.be/stops/206513", "https://data.delijn.be/stops/206718"], ["https://data.delijn.be/stops/404326", "https://data.delijn.be/stops/408668"], ["https://data.delijn.be/stops/300972", "https://data.delijn.be/stops/300973"], ["https://data.delijn.be/stops/301454", "https://data.delijn.be/stops/301467"], ["https://data.delijn.be/stops/402579", "https://data.delijn.be/stops/410390"], ["https://data.delijn.be/stops/402064", "https://data.delijn.be/stops/405554"], ["https://data.delijn.be/stops/400826", "https://data.delijn.be/stops/401900"], ["https://data.delijn.be/stops/505905", "https://data.delijn.be/stops/508959"], ["https://data.delijn.be/stops/501699", "https://data.delijn.be/stops/506194"], ["https://data.delijn.be/stops/404439", "https://data.delijn.be/stops/404569"], ["https://data.delijn.be/stops/503109", "https://data.delijn.be/stops/508376"], ["https://data.delijn.be/stops/206009", "https://data.delijn.be/stops/207010"], ["https://data.delijn.be/stops/102715", "https://data.delijn.be/stops/102874"], ["https://data.delijn.be/stops/105472", "https://data.delijn.be/stops/105669"], ["https://data.delijn.be/stops/300060", "https://data.delijn.be/stops/306801"], ["https://data.delijn.be/stops/201895", "https://data.delijn.be/stops/201983"], ["https://data.delijn.be/stops/401587", "https://data.delijn.be/stops/401589"], ["https://data.delijn.be/stops/105029", "https://data.delijn.be/stops/105172"], ["https://data.delijn.be/stops/504395", "https://data.delijn.be/stops/509119"], ["https://data.delijn.be/stops/105151", "https://data.delijn.be/stops/105154"], ["https://data.delijn.be/stops/101778", "https://data.delijn.be/stops/104246"], ["https://data.delijn.be/stops/502351", "https://data.delijn.be/stops/502587"], ["https://data.delijn.be/stops/206943", "https://data.delijn.be/stops/207944"], ["https://data.delijn.be/stops/304127", "https://data.delijn.be/stops/308819"], ["https://data.delijn.be/stops/502192", "https://data.delijn.be/stops/502198"], ["https://data.delijn.be/stops/500159", "https://data.delijn.be/stops/503541"], ["https://data.delijn.be/stops/503803", "https://data.delijn.be/stops/505537"], ["https://data.delijn.be/stops/302212", "https://data.delijn.be/stops/302214"], ["https://data.delijn.be/stops/502591", "https://data.delijn.be/stops/502751"], ["https://data.delijn.be/stops/302352", "https://data.delijn.be/stops/307521"], ["https://data.delijn.be/stops/209104", "https://data.delijn.be/stops/209105"], ["https://data.delijn.be/stops/300840", "https://data.delijn.be/stops/300842"], ["https://data.delijn.be/stops/505147", "https://data.delijn.be/stops/507917"], ["https://data.delijn.be/stops/105076", "https://data.delijn.be/stops/108881"], ["https://data.delijn.be/stops/504877", "https://data.delijn.be/stops/509700"], ["https://data.delijn.be/stops/101197", "https://data.delijn.be/stops/204614"], ["https://data.delijn.be/stops/203869", "https://data.delijn.be/stops/203878"], ["https://data.delijn.be/stops/307629", "https://data.delijn.be/stops/308262"], ["https://data.delijn.be/stops/300426", "https://data.delijn.be/stops/300445"], ["https://data.delijn.be/stops/206565", "https://data.delijn.be/stops/207837"], ["https://data.delijn.be/stops/202465", "https://data.delijn.be/stops/203462"], ["https://data.delijn.be/stops/407262", "https://data.delijn.be/stops/409496"], ["https://data.delijn.be/stops/406097", "https://data.delijn.be/stops/406807"], ["https://data.delijn.be/stops/304595", "https://data.delijn.be/stops/304637"], ["https://data.delijn.be/stops/406332", "https://data.delijn.be/stops/406363"], ["https://data.delijn.be/stops/200341", "https://data.delijn.be/stops/201335"], ["https://data.delijn.be/stops/108236", "https://data.delijn.be/stops/108238"], ["https://data.delijn.be/stops/403487", "https://data.delijn.be/stops/403489"], ["https://data.delijn.be/stops/308195", "https://data.delijn.be/stops/308227"], ["https://data.delijn.be/stops/301031", "https://data.delijn.be/stops/305466"], ["https://data.delijn.be/stops/301025", "https://data.delijn.be/stops/306647"], ["https://data.delijn.be/stops/206341", "https://data.delijn.be/stops/207341"], ["https://data.delijn.be/stops/202030", "https://data.delijn.be/stops/203028"], ["https://data.delijn.be/stops/301625", "https://data.delijn.be/stops/301633"], ["https://data.delijn.be/stops/202490", "https://data.delijn.be/stops/203001"], ["https://data.delijn.be/stops/102586", "https://data.delijn.be/stops/108562"], ["https://data.delijn.be/stops/109132", "https://data.delijn.be/stops/109134"], ["https://data.delijn.be/stops/208156", "https://data.delijn.be/stops/209156"], ["https://data.delijn.be/stops/105061", "https://data.delijn.be/stops/105824"], ["https://data.delijn.be/stops/202376", "https://data.delijn.be/stops/203376"], ["https://data.delijn.be/stops/200920", "https://data.delijn.be/stops/203261"], ["https://data.delijn.be/stops/206473", "https://data.delijn.be/stops/207477"], ["https://data.delijn.be/stops/306334", "https://data.delijn.be/stops/306337"], ["https://data.delijn.be/stops/303288", "https://data.delijn.be/stops/303343"], ["https://data.delijn.be/stops/200518", "https://data.delijn.be/stops/201533"], ["https://data.delijn.be/stops/505660", "https://data.delijn.be/stops/508047"], ["https://data.delijn.be/stops/200709", "https://data.delijn.be/stops/200718"], ["https://data.delijn.be/stops/109124", "https://data.delijn.be/stops/109395"], ["https://data.delijn.be/stops/404197", "https://data.delijn.be/stops/404199"], ["https://data.delijn.be/stops/408611", "https://data.delijn.be/stops/408692"], ["https://data.delijn.be/stops/404313", "https://data.delijn.be/stops/404648"], ["https://data.delijn.be/stops/201780", "https://data.delijn.be/stops/208247"], ["https://data.delijn.be/stops/301832", "https://data.delijn.be/stops/301873"], ["https://data.delijn.be/stops/402303", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/102321", "https://data.delijn.be/stops/104128"], ["https://data.delijn.be/stops/502668", "https://data.delijn.be/stops/502669"], ["https://data.delijn.be/stops/401221", "https://data.delijn.be/stops/410124"], ["https://data.delijn.be/stops/103964", "https://data.delijn.be/stops/107545"], ["https://data.delijn.be/stops/301699", "https://data.delijn.be/stops/301741"], ["https://data.delijn.be/stops/505972", "https://data.delijn.be/stops/507736"], ["https://data.delijn.be/stops/106382", "https://data.delijn.be/stops/107708"], ["https://data.delijn.be/stops/401878", "https://data.delijn.be/stops/402280"], ["https://data.delijn.be/stops/404429", "https://data.delijn.be/stops/404524"], ["https://data.delijn.be/stops/502655", "https://data.delijn.be/stops/502665"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/201716"], ["https://data.delijn.be/stops/208109", "https://data.delijn.be/stops/208342"], ["https://data.delijn.be/stops/300138", "https://data.delijn.be/stops/306807"], ["https://data.delijn.be/stops/102578", "https://data.delijn.be/stops/107712"], ["https://data.delijn.be/stops/109044", "https://data.delijn.be/stops/307947"], ["https://data.delijn.be/stops/206114", "https://data.delijn.be/stops/207115"], ["https://data.delijn.be/stops/104861", "https://data.delijn.be/stops/107819"], ["https://data.delijn.be/stops/202631", "https://data.delijn.be/stops/202632"], ["https://data.delijn.be/stops/108379", "https://data.delijn.be/stops/109764"], ["https://data.delijn.be/stops/201548", "https://data.delijn.be/stops/203002"], ["https://data.delijn.be/stops/403991", "https://data.delijn.be/stops/407054"], ["https://data.delijn.be/stops/404511", "https://data.delijn.be/stops/407423"], ["https://data.delijn.be/stops/302898", "https://data.delijn.be/stops/302899"], ["https://data.delijn.be/stops/409413", "https://data.delijn.be/stops/409666"], ["https://data.delijn.be/stops/501508", "https://data.delijn.be/stops/505824"], ["https://data.delijn.be/stops/306821", "https://data.delijn.be/stops/306822"], ["https://data.delijn.be/stops/306686", "https://data.delijn.be/stops/306688"], ["https://data.delijn.be/stops/301457", "https://data.delijn.be/stops/307956"], ["https://data.delijn.be/stops/404298", "https://data.delijn.be/stops/308077"], ["https://data.delijn.be/stops/102126", "https://data.delijn.be/stops/105059"], ["https://data.delijn.be/stops/503969", "https://data.delijn.be/stops/509813"], ["https://data.delijn.be/stops/406262", "https://data.delijn.be/stops/407307"], ["https://data.delijn.be/stops/103945", "https://data.delijn.be/stops/104050"], ["https://data.delijn.be/stops/208389", "https://data.delijn.be/stops/208745"], ["https://data.delijn.be/stops/200450", "https://data.delijn.be/stops/203947"], ["https://data.delijn.be/stops/308517", "https://data.delijn.be/stops/308539"], ["https://data.delijn.be/stops/106265", "https://data.delijn.be/stops/106266"], ["https://data.delijn.be/stops/206887", "https://data.delijn.be/stops/206888"], ["https://data.delijn.be/stops/301661", "https://data.delijn.be/stops/301664"], ["https://data.delijn.be/stops/101365", "https://data.delijn.be/stops/104075"], ["https://data.delijn.be/stops/505348", "https://data.delijn.be/stops/507368"], ["https://data.delijn.be/stops/405738", "https://data.delijn.be/stops/410137"], ["https://data.delijn.be/stops/505358", "https://data.delijn.be/stops/505438"], ["https://data.delijn.be/stops/107975", "https://data.delijn.be/stops/107980"], ["https://data.delijn.be/stops/206737", "https://data.delijn.be/stops/207602"], ["https://data.delijn.be/stops/306911", "https://data.delijn.be/stops/308875"], ["https://data.delijn.be/stops/301092", "https://data.delijn.be/stops/304259"], ["https://data.delijn.be/stops/101383", "https://data.delijn.be/stops/106996"], ["https://data.delijn.be/stops/404889", "https://data.delijn.be/stops/404904"], ["https://data.delijn.be/stops/105329", "https://data.delijn.be/stops/204023"], ["https://data.delijn.be/stops/504875", "https://data.delijn.be/stops/509875"], ["https://data.delijn.be/stops/201928", "https://data.delijn.be/stops/202477"], ["https://data.delijn.be/stops/305602", "https://data.delijn.be/stops/305603"], ["https://data.delijn.be/stops/405723", "https://data.delijn.be/stops/405750"], ["https://data.delijn.be/stops/102762", "https://data.delijn.be/stops/102763"], ["https://data.delijn.be/stops/108316", "https://data.delijn.be/stops/108756"], ["https://data.delijn.be/stops/108845", "https://data.delijn.be/stops/108859"], ["https://data.delijn.be/stops/207816", "https://data.delijn.be/stops/207817"], ["https://data.delijn.be/stops/204915", "https://data.delijn.be/stops/204917"], ["https://data.delijn.be/stops/200581", "https://data.delijn.be/stops/210607"], ["https://data.delijn.be/stops/406051", "https://data.delijn.be/stops/407779"], ["https://data.delijn.be/stops/202046", "https://data.delijn.be/stops/202137"], ["https://data.delijn.be/stops/304147", "https://data.delijn.be/stops/304171"], ["https://data.delijn.be/stops/107083", "https://data.delijn.be/stops/107086"], ["https://data.delijn.be/stops/300741", "https://data.delijn.be/stops/300750"], ["https://data.delijn.be/stops/206118", "https://data.delijn.be/stops/206119"], ["https://data.delijn.be/stops/302131", "https://data.delijn.be/stops/307527"], ["https://data.delijn.be/stops/104719", "https://data.delijn.be/stops/104722"], ["https://data.delijn.be/stops/107213", "https://data.delijn.be/stops/107217"], ["https://data.delijn.be/stops/207761", "https://data.delijn.be/stops/208189"], ["https://data.delijn.be/stops/101565", "https://data.delijn.be/stops/102505"], ["https://data.delijn.be/stops/204318", "https://data.delijn.be/stops/204321"], ["https://data.delijn.be/stops/205700", "https://data.delijn.be/stops/205701"], ["https://data.delijn.be/stops/108654", "https://data.delijn.be/stops/304303"], ["https://data.delijn.be/stops/107163", "https://data.delijn.be/stops/107164"], ["https://data.delijn.be/stops/203486", "https://data.delijn.be/stops/203489"], ["https://data.delijn.be/stops/404231", "https://data.delijn.be/stops/404243"], ["https://data.delijn.be/stops/304126", "https://data.delijn.be/stops/304151"], ["https://data.delijn.be/stops/503980", "https://data.delijn.be/stops/508328"], ["https://data.delijn.be/stops/406748", "https://data.delijn.be/stops/409454"], ["https://data.delijn.be/stops/501209", "https://data.delijn.be/stops/505038"], ["https://data.delijn.be/stops/503285", "https://data.delijn.be/stops/508285"], ["https://data.delijn.be/stops/503162", "https://data.delijn.be/stops/503174"], ["https://data.delijn.be/stops/206104", "https://data.delijn.be/stops/306724"], ["https://data.delijn.be/stops/408205", "https://data.delijn.be/stops/408310"], ["https://data.delijn.be/stops/401846", "https://data.delijn.be/stops/406232"], ["https://data.delijn.be/stops/207010", "https://data.delijn.be/stops/207174"], ["https://data.delijn.be/stops/306849", "https://data.delijn.be/stops/306852"], ["https://data.delijn.be/stops/501684", "https://data.delijn.be/stops/506684"], ["https://data.delijn.be/stops/503970", "https://data.delijn.be/stops/504811"], ["https://data.delijn.be/stops/104946", "https://data.delijn.be/stops/107310"], ["https://data.delijn.be/stops/102804", "https://data.delijn.be/stops/103143"], ["https://data.delijn.be/stops/105547", "https://data.delijn.be/stops/109624"], ["https://data.delijn.be/stops/201350", "https://data.delijn.be/stops/201392"], ["https://data.delijn.be/stops/200422", "https://data.delijn.be/stops/211405"], ["https://data.delijn.be/stops/303024", "https://data.delijn.be/stops/308655"], ["https://data.delijn.be/stops/206750", "https://data.delijn.be/stops/209475"], ["https://data.delijn.be/stops/200690", "https://data.delijn.be/stops/210081"], ["https://data.delijn.be/stops/102253", "https://data.delijn.be/stops/109654"], ["https://data.delijn.be/stops/405524", "https://data.delijn.be/stops/407311"], ["https://data.delijn.be/stops/408220", "https://data.delijn.be/stops/408224"], ["https://data.delijn.be/stops/200188", "https://data.delijn.be/stops/201068"], ["https://data.delijn.be/stops/504472", "https://data.delijn.be/stops/509472"], ["https://data.delijn.be/stops/300018", "https://data.delijn.be/stops/307636"], ["https://data.delijn.be/stops/302189", "https://data.delijn.be/stops/305457"], ["https://data.delijn.be/stops/207689", "https://data.delijn.be/stops/207727"], ["https://data.delijn.be/stops/204111", "https://data.delijn.be/stops/205111"], ["https://data.delijn.be/stops/400876", "https://data.delijn.be/stops/403582"], ["https://data.delijn.be/stops/404488", "https://data.delijn.be/stops/404528"], ["https://data.delijn.be/stops/209092", "https://data.delijn.be/stops/209629"], ["https://data.delijn.be/stops/206539", "https://data.delijn.be/stops/206559"], ["https://data.delijn.be/stops/503864", "https://data.delijn.be/stops/507949"], ["https://data.delijn.be/stops/402727", "https://data.delijn.be/stops/402737"], ["https://data.delijn.be/stops/304495", "https://data.delijn.be/stops/304499"], ["https://data.delijn.be/stops/300686", "https://data.delijn.be/stops/300687"], ["https://data.delijn.be/stops/301649", "https://data.delijn.be/stops/307766"], ["https://data.delijn.be/stops/301706", "https://data.delijn.be/stops/301714"], ["https://data.delijn.be/stops/301521", "https://data.delijn.be/stops/308740"], ["https://data.delijn.be/stops/404443", "https://data.delijn.be/stops/409663"], ["https://data.delijn.be/stops/402086", "https://data.delijn.be/stops/402088"], ["https://data.delijn.be/stops/505151", "https://data.delijn.be/stops/505153"], ["https://data.delijn.be/stops/301065", "https://data.delijn.be/stops/307789"], ["https://data.delijn.be/stops/304289", "https://data.delijn.be/stops/304296"], ["https://data.delijn.be/stops/208304", "https://data.delijn.be/stops/209304"], ["https://data.delijn.be/stops/503918", "https://data.delijn.be/stops/505254"], ["https://data.delijn.be/stops/105038", "https://data.delijn.be/stops/105124"], ["https://data.delijn.be/stops/504347", "https://data.delijn.be/stops/509351"], ["https://data.delijn.be/stops/204032", "https://data.delijn.be/stops/204557"], ["https://data.delijn.be/stops/405282", "https://data.delijn.be/stops/405283"], ["https://data.delijn.be/stops/507230", "https://data.delijn.be/stops/507699"], ["https://data.delijn.be/stops/503625", "https://data.delijn.be/stops/505526"], ["https://data.delijn.be/stops/400816", "https://data.delijn.be/stops/406836"], ["https://data.delijn.be/stops/208271", "https://data.delijn.be/stops/219006"], ["https://data.delijn.be/stops/503880", "https://data.delijn.be/stops/508662"], ["https://data.delijn.be/stops/108489", "https://data.delijn.be/stops/306593"], ["https://data.delijn.be/stops/401431", "https://data.delijn.be/stops/402216"], ["https://data.delijn.be/stops/408632", "https://data.delijn.be/stops/410192"], ["https://data.delijn.be/stops/304000", "https://data.delijn.be/stops/304001"], ["https://data.delijn.be/stops/504741", "https://data.delijn.be/stops/509741"], ["https://data.delijn.be/stops/302153", "https://data.delijn.be/stops/308573"], ["https://data.delijn.be/stops/502767", "https://data.delijn.be/stops/507383"], ["https://data.delijn.be/stops/504596", "https://data.delijn.be/stops/509250"], ["https://data.delijn.be/stops/208273", "https://data.delijn.be/stops/208738"], ["https://data.delijn.be/stops/403678", "https://data.delijn.be/stops/409320"], ["https://data.delijn.be/stops/303190", "https://data.delijn.be/stops/303191"], ["https://data.delijn.be/stops/403908", "https://data.delijn.be/stops/403973"], ["https://data.delijn.be/stops/103604", "https://data.delijn.be/stops/103605"], ["https://data.delijn.be/stops/204109", "https://data.delijn.be/stops/205108"], ["https://data.delijn.be/stops/103152", "https://data.delijn.be/stops/410162"], ["https://data.delijn.be/stops/407120", "https://data.delijn.be/stops/409509"], ["https://data.delijn.be/stops/204194", "https://data.delijn.be/stops/205194"], ["https://data.delijn.be/stops/404304", "https://data.delijn.be/stops/404305"], ["https://data.delijn.be/stops/201828", "https://data.delijn.be/stops/208282"], ["https://data.delijn.be/stops/206103", "https://data.delijn.be/stops/206123"], ["https://data.delijn.be/stops/400548", "https://data.delijn.be/stops/400549"], ["https://data.delijn.be/stops/405048", "https://data.delijn.be/stops/405066"], ["https://data.delijn.be/stops/504316", "https://data.delijn.be/stops/509451"], ["https://data.delijn.be/stops/503969", "https://data.delijn.be/stops/505640"], ["https://data.delijn.be/stops/104607", "https://data.delijn.be/stops/108841"], ["https://data.delijn.be/stops/408275", "https://data.delijn.be/stops/408397"], ["https://data.delijn.be/stops/208056", "https://data.delijn.be/stops/209056"], ["https://data.delijn.be/stops/400587", "https://data.delijn.be/stops/400607"], ["https://data.delijn.be/stops/300490", "https://data.delijn.be/stops/300498"], ["https://data.delijn.be/stops/502046", "https://data.delijn.be/stops/507046"], ["https://data.delijn.be/stops/301332", "https://data.delijn.be/stops/301335"], ["https://data.delijn.be/stops/406561", "https://data.delijn.be/stops/406563"], ["https://data.delijn.be/stops/503707", "https://data.delijn.be/stops/508707"], ["https://data.delijn.be/stops/504115", "https://data.delijn.be/stops/504643"], ["https://data.delijn.be/stops/407680", "https://data.delijn.be/stops/408699"], ["https://data.delijn.be/stops/205987", "https://data.delijn.be/stops/208222"], ["https://data.delijn.be/stops/403927", "https://data.delijn.be/stops/404030"], ["https://data.delijn.be/stops/105874", "https://data.delijn.be/stops/105886"], ["https://data.delijn.be/stops/406739", "https://data.delijn.be/stops/407564"], ["https://data.delijn.be/stops/204983", "https://data.delijn.be/stops/206210"], ["https://data.delijn.be/stops/206983", "https://data.delijn.be/stops/206984"], ["https://data.delijn.be/stops/502032", "https://data.delijn.be/stops/507447"], ["https://data.delijn.be/stops/106303", "https://data.delijn.be/stops/106305"], ["https://data.delijn.be/stops/407397", "https://data.delijn.be/stops/407547"], ["https://data.delijn.be/stops/304250", "https://data.delijn.be/stops/304254"], ["https://data.delijn.be/stops/303625", "https://data.delijn.be/stops/304924"], ["https://data.delijn.be/stops/203184", "https://data.delijn.be/stops/204235"], ["https://data.delijn.be/stops/105076", "https://data.delijn.be/stops/105191"], ["https://data.delijn.be/stops/403052", "https://data.delijn.be/stops/409571"], ["https://data.delijn.be/stops/208334", "https://data.delijn.be/stops/208335"], ["https://data.delijn.be/stops/300777", "https://data.delijn.be/stops/302409"], ["https://data.delijn.be/stops/201379", "https://data.delijn.be/stops/201538"], ["https://data.delijn.be/stops/306149", "https://data.delijn.be/stops/306151"], ["https://data.delijn.be/stops/101923", "https://data.delijn.be/stops/107023"], ["https://data.delijn.be/stops/408625", "https://data.delijn.be/stops/408780"], ["https://data.delijn.be/stops/407839", "https://data.delijn.be/stops/407904"], ["https://data.delijn.be/stops/305264", "https://data.delijn.be/stops/305280"], ["https://data.delijn.be/stops/402096", "https://data.delijn.be/stops/402317"], ["https://data.delijn.be/stops/106557", "https://data.delijn.be/stops/106559"], ["https://data.delijn.be/stops/204406", "https://data.delijn.be/stops/205205"], ["https://data.delijn.be/stops/101516", "https://data.delijn.be/stops/109021"], ["https://data.delijn.be/stops/206308", "https://data.delijn.be/stops/207309"], ["https://data.delijn.be/stops/102868", "https://data.delijn.be/stops/106508"], ["https://data.delijn.be/stops/107712", "https://data.delijn.be/stops/107713"], ["https://data.delijn.be/stops/300781", "https://data.delijn.be/stops/301048"], ["https://data.delijn.be/stops/303820", "https://data.delijn.be/stops/303823"], ["https://data.delijn.be/stops/505649", "https://data.delijn.be/stops/507754"], ["https://data.delijn.be/stops/502400", "https://data.delijn.be/stops/507393"], ["https://data.delijn.be/stops/200974", "https://data.delijn.be/stops/206760"], ["https://data.delijn.be/stops/108730", "https://data.delijn.be/stops/109725"], ["https://data.delijn.be/stops/503099", "https://data.delijn.be/stops/505260"], ["https://data.delijn.be/stops/104662", "https://data.delijn.be/stops/306606"], ["https://data.delijn.be/stops/200262", "https://data.delijn.be/stops/202546"], ["https://data.delijn.be/stops/304482", "https://data.delijn.be/stops/304517"], ["https://data.delijn.be/stops/506767", "https://data.delijn.be/stops/506768"], ["https://data.delijn.be/stops/101055", "https://data.delijn.be/stops/108550"], ["https://data.delijn.be/stops/308742", "https://data.delijn.be/stops/308747"], ["https://data.delijn.be/stops/400533", "https://data.delijn.be/stops/405328"], ["https://data.delijn.be/stops/102494", "https://data.delijn.be/stops/400300"], ["https://data.delijn.be/stops/200180", "https://data.delijn.be/stops/201186"], ["https://data.delijn.be/stops/108472", "https://data.delijn.be/stops/108803"], ["https://data.delijn.be/stops/304573", "https://data.delijn.be/stops/304575"], ["https://data.delijn.be/stops/300478", "https://data.delijn.be/stops/302082"], ["https://data.delijn.be/stops/400403", "https://data.delijn.be/stops/405834"], ["https://data.delijn.be/stops/204693", "https://data.delijn.be/stops/205350"], ["https://data.delijn.be/stops/105494", "https://data.delijn.be/stops/105496"], ["https://data.delijn.be/stops/404258", "https://data.delijn.be/stops/405389"], ["https://data.delijn.be/stops/300332", "https://data.delijn.be/stops/307479"], ["https://data.delijn.be/stops/502555", "https://data.delijn.be/stops/505345"], ["https://data.delijn.be/stops/200547", "https://data.delijn.be/stops/208682"], ["https://data.delijn.be/stops/102700", "https://data.delijn.be/stops/104220"], ["https://data.delijn.be/stops/104723", "https://data.delijn.be/stops/105405"], ["https://data.delijn.be/stops/504962", "https://data.delijn.be/stops/505368"], ["https://data.delijn.be/stops/508713", "https://data.delijn.be/stops/508755"], ["https://data.delijn.be/stops/206388", "https://data.delijn.be/stops/207387"], ["https://data.delijn.be/stops/208117", "https://data.delijn.be/stops/209797"], ["https://data.delijn.be/stops/503220", "https://data.delijn.be/stops/508220"], ["https://data.delijn.be/stops/403662", "https://data.delijn.be/stops/403708"], ["https://data.delijn.be/stops/101906", "https://data.delijn.be/stops/107111"], ["https://data.delijn.be/stops/101788", "https://data.delijn.be/stops/105611"], ["https://data.delijn.be/stops/201475", "https://data.delijn.be/stops/210061"], ["https://data.delijn.be/stops/105003", "https://data.delijn.be/stops/105192"], ["https://data.delijn.be/stops/501150", "https://data.delijn.be/stops/506150"], ["https://data.delijn.be/stops/204408", "https://data.delijn.be/stops/205408"], ["https://data.delijn.be/stops/208209", "https://data.delijn.be/stops/209209"], ["https://data.delijn.be/stops/503658", "https://data.delijn.be/stops/508697"], ["https://data.delijn.be/stops/304934", "https://data.delijn.be/stops/304935"], ["https://data.delijn.be/stops/109270", "https://data.delijn.be/stops/109271"], ["https://data.delijn.be/stops/102592", "https://data.delijn.be/stops/109001"], ["https://data.delijn.be/stops/406674", "https://data.delijn.be/stops/406675"], ["https://data.delijn.be/stops/107202", "https://data.delijn.be/stops/406792"], ["https://data.delijn.be/stops/405265", "https://data.delijn.be/stops/408367"], ["https://data.delijn.be/stops/404934", "https://data.delijn.be/stops/404966"], ["https://data.delijn.be/stops/505355", "https://data.delijn.be/stops/506222"], ["https://data.delijn.be/stops/300764", "https://data.delijn.be/stops/300787"], ["https://data.delijn.be/stops/503301", "https://data.delijn.be/stops/508309"], ["https://data.delijn.be/stops/206443", "https://data.delijn.be/stops/209682"], ["https://data.delijn.be/stops/202236", "https://data.delijn.be/stops/202237"], ["https://data.delijn.be/stops/207928", "https://data.delijn.be/stops/207929"], ["https://data.delijn.be/stops/400492", "https://data.delijn.be/stops/400493"], ["https://data.delijn.be/stops/108436", "https://data.delijn.be/stops/108438"], ["https://data.delijn.be/stops/400931", "https://data.delijn.be/stops/406977"], ["https://data.delijn.be/stops/504266", "https://data.delijn.be/stops/505829"], ["https://data.delijn.be/stops/204757", "https://data.delijn.be/stops/205756"], ["https://data.delijn.be/stops/504058", "https://data.delijn.be/stops/504638"], ["https://data.delijn.be/stops/300459", "https://data.delijn.be/stops/304979"], ["https://data.delijn.be/stops/503283", "https://data.delijn.be/stops/505951"], ["https://data.delijn.be/stops/200548", "https://data.delijn.be/stops/210528"], ["https://data.delijn.be/stops/301153", "https://data.delijn.be/stops/301154"], ["https://data.delijn.be/stops/208009", "https://data.delijn.be/stops/209009"], ["https://data.delijn.be/stops/103622", "https://data.delijn.be/stops/106198"], ["https://data.delijn.be/stops/108636", "https://data.delijn.be/stops/406505"], ["https://data.delijn.be/stops/410221", "https://data.delijn.be/stops/410338"], ["https://data.delijn.be/stops/403564", "https://data.delijn.be/stops/410287"], ["https://data.delijn.be/stops/200504", "https://data.delijn.be/stops/201155"], ["https://data.delijn.be/stops/206575", "https://data.delijn.be/stops/207561"], ["https://data.delijn.be/stops/404128", "https://data.delijn.be/stops/404131"], ["https://data.delijn.be/stops/102178", "https://data.delijn.be/stops/102799"], ["https://data.delijn.be/stops/405267", "https://data.delijn.be/stops/405273"], ["https://data.delijn.be/stops/304657", "https://data.delijn.be/stops/306170"], ["https://data.delijn.be/stops/304529", "https://data.delijn.be/stops/304531"], ["https://data.delijn.be/stops/401764", "https://data.delijn.be/stops/406343"], ["https://data.delijn.be/stops/108562", "https://data.delijn.be/stops/409531"], ["https://data.delijn.be/stops/106919", "https://data.delijn.be/stops/107282"], ["https://data.delijn.be/stops/104813", "https://data.delijn.be/stops/104814"], ["https://data.delijn.be/stops/305383", "https://data.delijn.be/stops/305397"], ["https://data.delijn.be/stops/506035", "https://data.delijn.be/stops/506632"], ["https://data.delijn.be/stops/109206", "https://data.delijn.be/stops/109207"], ["https://data.delijn.be/stops/503536", "https://data.delijn.be/stops/505159"], ["https://data.delijn.be/stops/202270", "https://data.delijn.be/stops/203270"], ["https://data.delijn.be/stops/502557", "https://data.delijn.be/stops/507673"], ["https://data.delijn.be/stops/501013", "https://data.delijn.be/stops/501607"], ["https://data.delijn.be/stops/305583", "https://data.delijn.be/stops/307824"], ["https://data.delijn.be/stops/106764", "https://data.delijn.be/stops/106865"], ["https://data.delijn.be/stops/102721", "https://data.delijn.be/stops/102735"], ["https://data.delijn.be/stops/204165", "https://data.delijn.be/stops/204166"], ["https://data.delijn.be/stops/300127", "https://data.delijn.be/stops/300128"], ["https://data.delijn.be/stops/405624", "https://data.delijn.be/stops/405754"], ["https://data.delijn.be/stops/103675", "https://data.delijn.be/stops/103680"], ["https://data.delijn.be/stops/504479", "https://data.delijn.be/stops/509157"], ["https://data.delijn.be/stops/402562", "https://data.delijn.be/stops/402571"], ["https://data.delijn.be/stops/104383", "https://data.delijn.be/stops/104387"], ["https://data.delijn.be/stops/101724", "https://data.delijn.be/stops/106806"], ["https://data.delijn.be/stops/504113", "https://data.delijn.be/stops/504469"], ["https://data.delijn.be/stops/304235", "https://data.delijn.be/stops/304686"], ["https://data.delijn.be/stops/207732", "https://data.delijn.be/stops/303872"], ["https://data.delijn.be/stops/301701", "https://data.delijn.be/stops/301702"], ["https://data.delijn.be/stops/107342", "https://data.delijn.be/stops/108163"], ["https://data.delijn.be/stops/400763", "https://data.delijn.be/stops/405269"], ["https://data.delijn.be/stops/306951", "https://data.delijn.be/stops/306952"], ["https://data.delijn.be/stops/304544", "https://data.delijn.be/stops/304545"], ["https://data.delijn.be/stops/305522", "https://data.delijn.be/stops/305571"], ["https://data.delijn.be/stops/301837", "https://data.delijn.be/stops/301853"], ["https://data.delijn.be/stops/504430", "https://data.delijn.be/stops/504438"], ["https://data.delijn.be/stops/503777", "https://data.delijn.be/stops/503788"], ["https://data.delijn.be/stops/409742", "https://data.delijn.be/stops/409747"], ["https://data.delijn.be/stops/103147", "https://data.delijn.be/stops/103287"], ["https://data.delijn.be/stops/201714", "https://data.delijn.be/stops/203380"], ["https://data.delijn.be/stops/301591", "https://data.delijn.be/stops/308088"], ["https://data.delijn.be/stops/200534", "https://data.delijn.be/stops/211091"], ["https://data.delijn.be/stops/500195", "https://data.delijn.be/stops/509794"], ["https://data.delijn.be/stops/102093", "https://data.delijn.be/stops/109813"], ["https://data.delijn.be/stops/103610", "https://data.delijn.be/stops/108905"], ["https://data.delijn.be/stops/200339", "https://data.delijn.be/stops/200544"], ["https://data.delijn.be/stops/105391", "https://data.delijn.be/stops/105393"], ["https://data.delijn.be/stops/305961", "https://data.delijn.be/stops/305963"], ["https://data.delijn.be/stops/400589", "https://data.delijn.be/stops/400611"], ["https://data.delijn.be/stops/502165", "https://data.delijn.be/stops/507165"], ["https://data.delijn.be/stops/101887", "https://data.delijn.be/stops/101888"], ["https://data.delijn.be/stops/207653", "https://data.delijn.be/stops/207654"], ["https://data.delijn.be/stops/505017", "https://data.delijn.be/stops/505021"], ["https://data.delijn.be/stops/504343", "https://data.delijn.be/stops/509342"], ["https://data.delijn.be/stops/209046", "https://data.delijn.be/stops/209596"], ["https://data.delijn.be/stops/302946", "https://data.delijn.be/stops/308656"], ["https://data.delijn.be/stops/505018", "https://data.delijn.be/stops/507666"], ["https://data.delijn.be/stops/305183", "https://data.delijn.be/stops/305184"], ["https://data.delijn.be/stops/503984", "https://data.delijn.be/stops/508213"], ["https://data.delijn.be/stops/503750", "https://data.delijn.be/stops/508155"], ["https://data.delijn.be/stops/206182", "https://data.delijn.be/stops/206219"], ["https://data.delijn.be/stops/502732", "https://data.delijn.be/stops/507732"], ["https://data.delijn.be/stops/401814", "https://data.delijn.be/stops/401816"], ["https://data.delijn.be/stops/407700", "https://data.delijn.be/stops/407701"], ["https://data.delijn.be/stops/406364", "https://data.delijn.be/stops/406410"], ["https://data.delijn.be/stops/503475", "https://data.delijn.be/stops/504808"], ["https://data.delijn.be/stops/109855", "https://data.delijn.be/stops/109953"], ["https://data.delijn.be/stops/208080", "https://data.delijn.be/stops/208125"], ["https://data.delijn.be/stops/400815", "https://data.delijn.be/stops/403570"], ["https://data.delijn.be/stops/408493", "https://data.delijn.be/stops/408950"], ["https://data.delijn.be/stops/202573", "https://data.delijn.be/stops/202607"], ["https://data.delijn.be/stops/402502", "https://data.delijn.be/stops/402504"], ["https://data.delijn.be/stops/507627", "https://data.delijn.be/stops/507680"], ["https://data.delijn.be/stops/503766", "https://data.delijn.be/stops/508766"], ["https://data.delijn.be/stops/505157", "https://data.delijn.be/stops/508113"], ["https://data.delijn.be/stops/306689", "https://data.delijn.be/stops/308784"], ["https://data.delijn.be/stops/300167", "https://data.delijn.be/stops/300173"], ["https://data.delijn.be/stops/103740", "https://data.delijn.be/stops/105595"], ["https://data.delijn.be/stops/406209", "https://data.delijn.be/stops/406213"], ["https://data.delijn.be/stops/400915", "https://data.delijn.be/stops/406875"], ["https://data.delijn.be/stops/200900", "https://data.delijn.be/stops/204994"], ["https://data.delijn.be/stops/107393", "https://data.delijn.be/stops/107396"], ["https://data.delijn.be/stops/500047", "https://data.delijn.be/stops/500050"], ["https://data.delijn.be/stops/405684", "https://data.delijn.be/stops/406476"], ["https://data.delijn.be/stops/107975", "https://data.delijn.be/stops/109095"], ["https://data.delijn.be/stops/107819", "https://data.delijn.be/stops/107821"], ["https://data.delijn.be/stops/300349", "https://data.delijn.be/stops/308991"], ["https://data.delijn.be/stops/502357", "https://data.delijn.be/stops/502531"], ["https://data.delijn.be/stops/503471", "https://data.delijn.be/stops/504795"], ["https://data.delijn.be/stops/106109", "https://data.delijn.be/stops/106110"], ["https://data.delijn.be/stops/304857", "https://data.delijn.be/stops/307831"], ["https://data.delijn.be/stops/509204", "https://data.delijn.be/stops/509206"], ["https://data.delijn.be/stops/403910", "https://data.delijn.be/stops/403958"], ["https://data.delijn.be/stops/303070", "https://data.delijn.be/stops/303134"], ["https://data.delijn.be/stops/108187", "https://data.delijn.be/stops/108356"], ["https://data.delijn.be/stops/105214", "https://data.delijn.be/stops/107234"], ["https://data.delijn.be/stops/206907", "https://data.delijn.be/stops/207907"], ["https://data.delijn.be/stops/407450", "https://data.delijn.be/stops/407466"], ["https://data.delijn.be/stops/302653", "https://data.delijn.be/stops/302656"], ["https://data.delijn.be/stops/504981", "https://data.delijn.be/stops/509092"], ["https://data.delijn.be/stops/206995", "https://data.delijn.be/stops/207977"], ["https://data.delijn.be/stops/108752", "https://data.delijn.be/stops/108753"], ["https://data.delijn.be/stops/104677", "https://data.delijn.be/stops/104681"], ["https://data.delijn.be/stops/503562", "https://data.delijn.be/stops/503569"], ["https://data.delijn.be/stops/503036", "https://data.delijn.be/stops/508036"], ["https://data.delijn.be/stops/503820", "https://data.delijn.be/stops/508820"], ["https://data.delijn.be/stops/403056", "https://data.delijn.be/stops/410360"], ["https://data.delijn.be/stops/300628", "https://data.delijn.be/stops/307860"], ["https://data.delijn.be/stops/105139", "https://data.delijn.be/stops/108504"], ["https://data.delijn.be/stops/502526", "https://data.delijn.be/stops/505019"], ["https://data.delijn.be/stops/403104", "https://data.delijn.be/stops/403113"], ["https://data.delijn.be/stops/105203", "https://data.delijn.be/stops/105205"], ["https://data.delijn.be/stops/108037", "https://data.delijn.be/stops/108039"], ["https://data.delijn.be/stops/407167", "https://data.delijn.be/stops/407171"], ["https://data.delijn.be/stops/400121", "https://data.delijn.be/stops/400167"], ["https://data.delijn.be/stops/303300", "https://data.delijn.be/stops/304713"], ["https://data.delijn.be/stops/503015", "https://data.delijn.be/stops/508015"], ["https://data.delijn.be/stops/101000", "https://data.delijn.be/stops/101005"], ["https://data.delijn.be/stops/101055", "https://data.delijn.be/stops/103047"], ["https://data.delijn.be/stops/201776", "https://data.delijn.be/stops/209854"], ["https://data.delijn.be/stops/504355", "https://data.delijn.be/stops/504356"], ["https://data.delijn.be/stops/204070", "https://data.delijn.be/stops/204180"], ["https://data.delijn.be/stops/206252", "https://data.delijn.be/stops/207252"], ["https://data.delijn.be/stops/101011", "https://data.delijn.be/stops/101649"], ["https://data.delijn.be/stops/400098", "https://data.delijn.be/stops/400126"], ["https://data.delijn.be/stops/501003", "https://data.delijn.be/stops/501011"], ["https://data.delijn.be/stops/204427", "https://data.delijn.be/stops/205427"], ["https://data.delijn.be/stops/208650", "https://data.delijn.be/stops/209651"], ["https://data.delijn.be/stops/503068", "https://data.delijn.be/stops/503076"], ["https://data.delijn.be/stops/204028", "https://data.delijn.be/stops/205028"], ["https://data.delijn.be/stops/208121", "https://data.delijn.be/stops/208206"], ["https://data.delijn.be/stops/509642", "https://data.delijn.be/stops/509648"], ["https://data.delijn.be/stops/409053", "https://data.delijn.be/stops/409082"], ["https://data.delijn.be/stops/105673", "https://data.delijn.be/stops/105676"], ["https://data.delijn.be/stops/408323", "https://data.delijn.be/stops/408350"], ["https://data.delijn.be/stops/105715", "https://data.delijn.be/stops/105730"], ["https://data.delijn.be/stops/407564", "https://data.delijn.be/stops/407565"], ["https://data.delijn.be/stops/204750", "https://data.delijn.be/stops/205750"], ["https://data.delijn.be/stops/401308", "https://data.delijn.be/stops/401309"], ["https://data.delijn.be/stops/400514", "https://data.delijn.be/stops/400515"], ["https://data.delijn.be/stops/206157", "https://data.delijn.be/stops/206158"], ["https://data.delijn.be/stops/103341", "https://data.delijn.be/stops/104363"], ["https://data.delijn.be/stops/107331", "https://data.delijn.be/stops/107334"], ["https://data.delijn.be/stops/404059", "https://data.delijn.be/stops/404543"], ["https://data.delijn.be/stops/504423", "https://data.delijn.be/stops/509423"], ["https://data.delijn.be/stops/202099", "https://data.delijn.be/stops/203257"], ["https://data.delijn.be/stops/109112", "https://data.delijn.be/stops/109116"], ["https://data.delijn.be/stops/102201", "https://data.delijn.be/stops/105939"], ["https://data.delijn.be/stops/504838", "https://data.delijn.be/stops/504984"], ["https://data.delijn.be/stops/505703", "https://data.delijn.be/stops/507537"], ["https://data.delijn.be/stops/107322", "https://data.delijn.be/stops/108821"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/505362"], ["https://data.delijn.be/stops/109027", "https://data.delijn.be/stops/109029"], ["https://data.delijn.be/stops/305944", "https://data.delijn.be/stops/305945"], ["https://data.delijn.be/stops/206540", "https://data.delijn.be/stops/207533"], ["https://data.delijn.be/stops/108786", "https://data.delijn.be/stops/108787"], ["https://data.delijn.be/stops/109071", "https://data.delijn.be/stops/109073"], ["https://data.delijn.be/stops/301304", "https://data.delijn.be/stops/306007"], ["https://data.delijn.be/stops/407141", "https://data.delijn.be/stops/407296"], ["https://data.delijn.be/stops/502558", "https://data.delijn.be/stops/507557"], ["https://data.delijn.be/stops/101046", "https://data.delijn.be/stops/102011"], ["https://data.delijn.be/stops/303170", "https://data.delijn.be/stops/305526"], ["https://data.delijn.be/stops/403318", "https://data.delijn.be/stops/403325"], ["https://data.delijn.be/stops/210048", "https://data.delijn.be/stops/210107"], ["https://data.delijn.be/stops/400314", "https://data.delijn.be/stops/402791"], ["https://data.delijn.be/stops/405282", "https://data.delijn.be/stops/409662"], ["https://data.delijn.be/stops/104476", "https://data.delijn.be/stops/109751"], ["https://data.delijn.be/stops/107579", "https://data.delijn.be/stops/109430"], ["https://data.delijn.be/stops/402087", "https://data.delijn.be/stops/402089"], ["https://data.delijn.be/stops/106598", "https://data.delijn.be/stops/107208"], ["https://data.delijn.be/stops/202025", "https://data.delijn.be/stops/203026"], ["https://data.delijn.be/stops/400631", "https://data.delijn.be/stops/400634"], ["https://data.delijn.be/stops/202146", "https://data.delijn.be/stops/203188"], ["https://data.delijn.be/stops/308474", "https://data.delijn.be/stops/308486"], ["https://data.delijn.be/stops/504025", "https://data.delijn.be/stops/509025"], ["https://data.delijn.be/stops/301634", "https://data.delijn.be/stops/306154"], ["https://data.delijn.be/stops/205107", "https://data.delijn.be/stops/205115"], ["https://data.delijn.be/stops/403328", "https://data.delijn.be/stops/403347"], ["https://data.delijn.be/stops/202856", "https://data.delijn.be/stops/203922"], ["https://data.delijn.be/stops/204580", "https://data.delijn.be/stops/204774"], ["https://data.delijn.be/stops/401592", "https://data.delijn.be/stops/401593"], ["https://data.delijn.be/stops/404067", "https://data.delijn.be/stops/408447"], ["https://data.delijn.be/stops/102408", "https://data.delijn.be/stops/109081"], ["https://data.delijn.be/stops/406912", "https://data.delijn.be/stops/406913"], ["https://data.delijn.be/stops/201698", "https://data.delijn.be/stops/203447"], ["https://data.delijn.be/stops/218017", "https://data.delijn.be/stops/219017"], ["https://data.delijn.be/stops/502481", "https://data.delijn.be/stops/507470"], ["https://data.delijn.be/stops/404773", "https://data.delijn.be/stops/404776"], ["https://data.delijn.be/stops/206800", "https://data.delijn.be/stops/209553"], ["https://data.delijn.be/stops/102090", "https://data.delijn.be/stops/104480"], ["https://data.delijn.be/stops/103011", "https://data.delijn.be/stops/104094"], ["https://data.delijn.be/stops/302955", "https://data.delijn.be/stops/307077"], ["https://data.delijn.be/stops/202459", "https://data.delijn.be/stops/203506"], ["https://data.delijn.be/stops/406069", "https://data.delijn.be/stops/406378"], ["https://data.delijn.be/stops/107105", "https://data.delijn.be/stops/107590"], ["https://data.delijn.be/stops/305065", "https://data.delijn.be/stops/306918"], ["https://data.delijn.be/stops/504622", "https://data.delijn.be/stops/509621"], ["https://data.delijn.be/stops/404507", "https://data.delijn.be/stops/404545"], ["https://data.delijn.be/stops/501628", "https://data.delijn.be/stops/505714"], ["https://data.delijn.be/stops/404638", "https://data.delijn.be/stops/406956"], ["https://data.delijn.be/stops/405033", "https://data.delijn.be/stops/408147"], ["https://data.delijn.be/stops/106829", "https://data.delijn.be/stops/107408"], ["https://data.delijn.be/stops/109552", "https://data.delijn.be/stops/300052"], ["https://data.delijn.be/stops/109931", "https://data.delijn.be/stops/109952"], ["https://data.delijn.be/stops/304982", "https://data.delijn.be/stops/308029"], ["https://data.delijn.be/stops/406427", "https://data.delijn.be/stops/409396"], ["https://data.delijn.be/stops/404349", "https://data.delijn.be/stops/404949"], ["https://data.delijn.be/stops/503453", "https://data.delijn.be/stops/503475"], ["https://data.delijn.be/stops/501460", "https://data.delijn.be/stops/506460"], ["https://data.delijn.be/stops/401825", "https://data.delijn.be/stops/401830"], ["https://data.delijn.be/stops/300345", "https://data.delijn.be/stops/300346"], ["https://data.delijn.be/stops/505190", "https://data.delijn.be/stops/509097"], ["https://data.delijn.be/stops/404109", "https://data.delijn.be/stops/404112"], ["https://data.delijn.be/stops/207528", "https://data.delijn.be/stops/207556"], ["https://data.delijn.be/stops/307211", "https://data.delijn.be/stops/307212"], ["https://data.delijn.be/stops/200549", "https://data.delijn.be/stops/200985"], ["https://data.delijn.be/stops/204655", "https://data.delijn.be/stops/205655"], ["https://data.delijn.be/stops/204245", "https://data.delijn.be/stops/205244"], ["https://data.delijn.be/stops/302504", "https://data.delijn.be/stops/302509"], ["https://data.delijn.be/stops/203864", "https://data.delijn.be/stops/208712"], ["https://data.delijn.be/stops/400840", "https://data.delijn.be/stops/400841"], ["https://data.delijn.be/stops/502260", "https://data.delijn.be/stops/505704"], ["https://data.delijn.be/stops/109807", "https://data.delijn.be/stops/109809"], ["https://data.delijn.be/stops/303030", "https://data.delijn.be/stops/307725"], ["https://data.delijn.be/stops/103205", "https://data.delijn.be/stops/106508"], ["https://data.delijn.be/stops/104301", "https://data.delijn.be/stops/105928"], ["https://data.delijn.be/stops/206597", "https://data.delijn.be/stops/206661"], ["https://data.delijn.be/stops/304642", "https://data.delijn.be/stops/307792"], ["https://data.delijn.be/stops/201930", "https://data.delijn.be/stops/202470"], ["https://data.delijn.be/stops/302004", "https://data.delijn.be/stops/308959"], ["https://data.delijn.be/stops/202952", "https://data.delijn.be/stops/203951"], ["https://data.delijn.be/stops/304879", "https://data.delijn.be/stops/306178"], ["https://data.delijn.be/stops/400226", "https://data.delijn.be/stops/400235"], ["https://data.delijn.be/stops/400696", "https://data.delijn.be/stops/409536"], ["https://data.delijn.be/stops/200604", "https://data.delijn.be/stops/201940"], ["https://data.delijn.be/stops/505817", "https://data.delijn.be/stops/505911"], ["https://data.delijn.be/stops/401848", "https://data.delijn.be/stops/406230"], ["https://data.delijn.be/stops/403094", "https://data.delijn.be/stops/403095"], ["https://data.delijn.be/stops/200953", "https://data.delijn.be/stops/203436"], ["https://data.delijn.be/stops/402307", "https://data.delijn.be/stops/402308"], ["https://data.delijn.be/stops/303272", "https://data.delijn.be/stops/305725"], ["https://data.delijn.be/stops/304398", "https://data.delijn.be/stops/307409"], ["https://data.delijn.be/stops/107164", "https://data.delijn.be/stops/107165"], ["https://data.delijn.be/stops/302914", "https://data.delijn.be/stops/302915"], ["https://data.delijn.be/stops/507306", "https://data.delijn.be/stops/507598"], ["https://data.delijn.be/stops/103262", "https://data.delijn.be/stops/103263"], ["https://data.delijn.be/stops/202412", "https://data.delijn.be/stops/203420"], ["https://data.delijn.be/stops/103036", "https://data.delijn.be/stops/106403"], ["https://data.delijn.be/stops/204312", "https://data.delijn.be/stops/204313"], ["https://data.delijn.be/stops/304126", "https://data.delijn.be/stops/305450"], ["https://data.delijn.be/stops/107457", "https://data.delijn.be/stops/107459"], ["https://data.delijn.be/stops/301595", "https://data.delijn.be/stops/308093"], ["https://data.delijn.be/stops/107244", "https://data.delijn.be/stops/107246"], ["https://data.delijn.be/stops/402809", "https://data.delijn.be/stops/404619"], ["https://data.delijn.be/stops/204593", "https://data.delijn.be/stops/205162"], ["https://data.delijn.be/stops/304542", "https://data.delijn.be/stops/307764"], ["https://data.delijn.be/stops/200012", "https://data.delijn.be/stops/201013"], ["https://data.delijn.be/stops/502544", "https://data.delijn.be/stops/502638"], ["https://data.delijn.be/stops/104867", "https://data.delijn.be/stops/107856"], ["https://data.delijn.be/stops/102915", "https://data.delijn.be/stops/103389"], ["https://data.delijn.be/stops/305707", "https://data.delijn.be/stops/307927"], ["https://data.delijn.be/stops/206001", "https://data.delijn.be/stops/207062"], ["https://data.delijn.be/stops/408614", "https://data.delijn.be/stops/410191"], ["https://data.delijn.be/stops/101305", "https://data.delijn.be/stops/101310"], ["https://data.delijn.be/stops/208084", "https://data.delijn.be/stops/209700"], ["https://data.delijn.be/stops/408581", "https://data.delijn.be/stops/307055"], ["https://data.delijn.be/stops/509223", "https://data.delijn.be/stops/509523"], ["https://data.delijn.be/stops/106228", "https://data.delijn.be/stops/106326"], ["https://data.delijn.be/stops/103682", "https://data.delijn.be/stops/106196"], ["https://data.delijn.be/stops/103679", "https://data.delijn.be/stops/106198"], ["https://data.delijn.be/stops/504562", "https://data.delijn.be/stops/509562"], ["https://data.delijn.be/stops/502239", "https://data.delijn.be/stops/507239"], ["https://data.delijn.be/stops/102313", "https://data.delijn.be/stops/107490"], ["https://data.delijn.be/stops/200777", "https://data.delijn.be/stops/201806"], ["https://data.delijn.be/stops/203560", "https://data.delijn.be/stops/203608"], ["https://data.delijn.be/stops/300421", "https://data.delijn.be/stops/307100"], ["https://data.delijn.be/stops/109435", "https://data.delijn.be/stops/109436"], ["https://data.delijn.be/stops/502817", "https://data.delijn.be/stops/502818"], ["https://data.delijn.be/stops/101049", "https://data.delijn.be/stops/104368"], ["https://data.delijn.be/stops/207797", "https://data.delijn.be/stops/208767"], ["https://data.delijn.be/stops/103634", "https://data.delijn.be/stops/103638"], ["https://data.delijn.be/stops/302679", "https://data.delijn.be/stops/303611"], ["https://data.delijn.be/stops/201047", "https://data.delijn.be/stops/201930"], ["https://data.delijn.be/stops/109433", "https://data.delijn.be/stops/109434"], ["https://data.delijn.be/stops/501268", "https://data.delijn.be/stops/501511"], ["https://data.delijn.be/stops/102924", "https://data.delijn.be/stops/108974"], ["https://data.delijn.be/stops/402793", "https://data.delijn.be/stops/402794"], ["https://data.delijn.be/stops/202296", "https://data.delijn.be/stops/211298"], ["https://data.delijn.be/stops/203182", "https://data.delijn.be/stops/205235"], ["https://data.delijn.be/stops/501009", "https://data.delijn.be/stops/501467"], ["https://data.delijn.be/stops/304089", "https://data.delijn.be/stops/308529"], ["https://data.delijn.be/stops/401776", "https://data.delijn.be/stops/401789"], ["https://data.delijn.be/stops/304338", "https://data.delijn.be/stops/304707"], ["https://data.delijn.be/stops/201664", "https://data.delijn.be/stops/201688"], ["https://data.delijn.be/stops/108761", "https://data.delijn.be/stops/305784"], ["https://data.delijn.be/stops/200466", "https://data.delijn.be/stops/208955"], ["https://data.delijn.be/stops/304470", "https://data.delijn.be/stops/304672"], ["https://data.delijn.be/stops/206793", "https://data.delijn.be/stops/209091"], ["https://data.delijn.be/stops/404100", "https://data.delijn.be/stops/409296"], ["https://data.delijn.be/stops/305235", "https://data.delijn.be/stops/305311"], ["https://data.delijn.be/stops/300040", "https://data.delijn.be/stops/300042"], ["https://data.delijn.be/stops/105036", "https://data.delijn.be/stops/105169"], ["https://data.delijn.be/stops/201154", "https://data.delijn.be/stops/201175"], ["https://data.delijn.be/stops/104488", "https://data.delijn.be/stops/104558"], ["https://data.delijn.be/stops/105395", "https://data.delijn.be/stops/105400"], ["https://data.delijn.be/stops/204323", "https://data.delijn.be/stops/205062"], ["https://data.delijn.be/stops/200390", "https://data.delijn.be/stops/208720"], ["https://data.delijn.be/stops/308079", "https://data.delijn.be/stops/308742"], ["https://data.delijn.be/stops/501636", "https://data.delijn.be/stops/506374"], ["https://data.delijn.be/stops/209520", "https://data.delijn.be/stops/218017"], ["https://data.delijn.be/stops/109023", "https://data.delijn.be/stops/109077"], ["https://data.delijn.be/stops/503163", "https://data.delijn.be/stops/504293"], ["https://data.delijn.be/stops/204168", "https://data.delijn.be/stops/204588"], ["https://data.delijn.be/stops/402837", "https://data.delijn.be/stops/402845"], ["https://data.delijn.be/stops/109257", "https://data.delijn.be/stops/109259"], ["https://data.delijn.be/stops/302279", "https://data.delijn.be/stops/302296"], ["https://data.delijn.be/stops/404009", "https://data.delijn.be/stops/404013"], ["https://data.delijn.be/stops/200140", "https://data.delijn.be/stops/201140"], ["https://data.delijn.be/stops/305530", "https://data.delijn.be/stops/308980"], ["https://data.delijn.be/stops/504141", "https://data.delijn.be/stops/504942"], ["https://data.delijn.be/stops/106652", "https://data.delijn.be/stops/109753"], ["https://data.delijn.be/stops/207920", "https://data.delijn.be/stops/207921"], ["https://data.delijn.be/stops/504081", "https://data.delijn.be/stops/509084"], ["https://data.delijn.be/stops/507342", "https://data.delijn.be/stops/507484"], ["https://data.delijn.be/stops/208059", "https://data.delijn.be/stops/209058"], ["https://data.delijn.be/stops/200106", "https://data.delijn.be/stops/201106"], ["https://data.delijn.be/stops/302021", "https://data.delijn.be/stops/302055"], ["https://data.delijn.be/stops/104987", "https://data.delijn.be/stops/104988"], ["https://data.delijn.be/stops/204120", "https://data.delijn.be/stops/205119"], ["https://data.delijn.be/stops/202044", "https://data.delijn.be/stops/202045"], ["https://data.delijn.be/stops/102687", "https://data.delijn.be/stops/104805"], ["https://data.delijn.be/stops/106486", "https://data.delijn.be/stops/109212"], ["https://data.delijn.be/stops/300491", "https://data.delijn.be/stops/300495"], ["https://data.delijn.be/stops/400128", "https://data.delijn.be/stops/400129"], ["https://data.delijn.be/stops/407354", "https://data.delijn.be/stops/409858"], ["https://data.delijn.be/stops/407271", "https://data.delijn.be/stops/407515"], ["https://data.delijn.be/stops/206433", "https://data.delijn.be/stops/206537"], ["https://data.delijn.be/stops/202680", "https://data.delijn.be/stops/203693"], ["https://data.delijn.be/stops/502269", "https://data.delijn.be/stops/507655"], ["https://data.delijn.be/stops/200224", "https://data.delijn.be/stops/200444"], ["https://data.delijn.be/stops/103326", "https://data.delijn.be/stops/107704"], ["https://data.delijn.be/stops/500025", "https://data.delijn.be/stops/507342"], ["https://data.delijn.be/stops/504221", "https://data.delijn.be/stops/509217"], ["https://data.delijn.be/stops/405270", "https://data.delijn.be/stops/405271"], ["https://data.delijn.be/stops/206853", "https://data.delijn.be/stops/207853"], ["https://data.delijn.be/stops/502208", "https://data.delijn.be/stops/505244"], ["https://data.delijn.be/stops/407615", "https://data.delijn.be/stops/410090"], ["https://data.delijn.be/stops/300934", "https://data.delijn.be/stops/300996"], ["https://data.delijn.be/stops/206997", "https://data.delijn.be/stops/209749"], ["https://data.delijn.be/stops/101819", "https://data.delijn.be/stops/107023"], ["https://data.delijn.be/stops/206555", "https://data.delijn.be/stops/207526"], ["https://data.delijn.be/stops/501346", "https://data.delijn.be/stops/506402"], ["https://data.delijn.be/stops/208658", "https://data.delijn.be/stops/208659"], ["https://data.delijn.be/stops/209124", "https://data.delijn.be/stops/209540"], ["https://data.delijn.be/stops/102411", "https://data.delijn.be/stops/103254"], ["https://data.delijn.be/stops/101538", "https://data.delijn.be/stops/104602"], ["https://data.delijn.be/stops/406108", "https://data.delijn.be/stops/406117"], ["https://data.delijn.be/stops/206886", "https://data.delijn.be/stops/206916"], ["https://data.delijn.be/stops/202154", "https://data.delijn.be/stops/203153"], ["https://data.delijn.be/stops/204166", "https://data.delijn.be/stops/204589"], ["https://data.delijn.be/stops/206149", "https://data.delijn.be/stops/206907"], ["https://data.delijn.be/stops/307303", "https://data.delijn.be/stops/307315"], ["https://data.delijn.be/stops/404949", "https://data.delijn.be/stops/404953"], ["https://data.delijn.be/stops/501410", "https://data.delijn.be/stops/506416"], ["https://data.delijn.be/stops/303757", "https://data.delijn.be/stops/303876"], ["https://data.delijn.be/stops/308793", "https://data.delijn.be/stops/308965"], ["https://data.delijn.be/stops/103475", "https://data.delijn.be/stops/103500"], ["https://data.delijn.be/stops/400212", "https://data.delijn.be/stops/400219"], ["https://data.delijn.be/stops/409130", "https://data.delijn.be/stops/409137"], ["https://data.delijn.be/stops/204337", "https://data.delijn.be/stops/205337"], ["https://data.delijn.be/stops/304268", "https://data.delijn.be/stops/304271"], ["https://data.delijn.be/stops/407361", "https://data.delijn.be/stops/409423"], ["https://data.delijn.be/stops/101904", "https://data.delijn.be/stops/103322"], ["https://data.delijn.be/stops/504749", "https://data.delijn.be/stops/508661"], ["https://data.delijn.be/stops/505058", "https://data.delijn.be/stops/505238"], ["https://data.delijn.be/stops/402440", "https://data.delijn.be/stops/402441"], ["https://data.delijn.be/stops/201419", "https://data.delijn.be/stops/203012"], ["https://data.delijn.be/stops/300086", "https://data.delijn.be/stops/306855"], ["https://data.delijn.be/stops/200425", "https://data.delijn.be/stops/201246"], ["https://data.delijn.be/stops/204032", "https://data.delijn.be/stops/205247"], ["https://data.delijn.be/stops/203314", "https://data.delijn.be/stops/203315"], ["https://data.delijn.be/stops/200306", "https://data.delijn.be/stops/201843"], ["https://data.delijn.be/stops/502749", "https://data.delijn.be/stops/507749"], ["https://data.delijn.be/stops/214010", "https://data.delijn.be/stops/215011"], ["https://data.delijn.be/stops/305215", "https://data.delijn.be/stops/308049"], ["https://data.delijn.be/stops/204228", "https://data.delijn.be/stops/205227"], ["https://data.delijn.be/stops/302427", "https://data.delijn.be/stops/302443"], ["https://data.delijn.be/stops/303443", "https://data.delijn.be/stops/304226"], ["https://data.delijn.be/stops/207444", "https://data.delijn.be/stops/209681"], ["https://data.delijn.be/stops/509196", "https://data.delijn.be/stops/509529"], ["https://data.delijn.be/stops/307086", "https://data.delijn.be/stops/308050"], ["https://data.delijn.be/stops/404464", "https://data.delijn.be/stops/404482"], ["https://data.delijn.be/stops/103648", "https://data.delijn.be/stops/107174"], ["https://data.delijn.be/stops/103069", "https://data.delijn.be/stops/105757"], ["https://data.delijn.be/stops/407120", "https://data.delijn.be/stops/407328"], ["https://data.delijn.be/stops/201317", "https://data.delijn.be/stops/201585"], ["https://data.delijn.be/stops/401508", "https://data.delijn.be/stops/401509"], ["https://data.delijn.be/stops/206802", "https://data.delijn.be/stops/208034"], ["https://data.delijn.be/stops/101524", "https://data.delijn.be/stops/101943"], ["https://data.delijn.be/stops/303584", "https://data.delijn.be/stops/305893"], ["https://data.delijn.be/stops/502747", "https://data.delijn.be/stops/505056"], ["https://data.delijn.be/stops/204047", "https://data.delijn.be/stops/205047"], ["https://data.delijn.be/stops/202785", "https://data.delijn.be/stops/203784"], ["https://data.delijn.be/stops/403250", "https://data.delijn.be/stops/410326"], ["https://data.delijn.be/stops/402525", "https://data.delijn.be/stops/402601"], ["https://data.delijn.be/stops/401102", "https://data.delijn.be/stops/401151"], ["https://data.delijn.be/stops/102529", "https://data.delijn.be/stops/102531"], ["https://data.delijn.be/stops/404897", "https://data.delijn.be/stops/404901"], ["https://data.delijn.be/stops/202853", "https://data.delijn.be/stops/203858"], ["https://data.delijn.be/stops/505231", "https://data.delijn.be/stops/505561"], ["https://data.delijn.be/stops/406615", "https://data.delijn.be/stops/406640"], ["https://data.delijn.be/stops/509527", "https://data.delijn.be/stops/509599"], ["https://data.delijn.be/stops/300611", "https://data.delijn.be/stops/307892"], ["https://data.delijn.be/stops/204192", "https://data.delijn.be/stops/205195"], ["https://data.delijn.be/stops/504205", "https://data.delijn.be/stops/508041"], ["https://data.delijn.be/stops/303708", "https://data.delijn.be/stops/303709"], ["https://data.delijn.be/stops/204635", "https://data.delijn.be/stops/204636"], ["https://data.delijn.be/stops/504663", "https://data.delijn.be/stops/504724"], ["https://data.delijn.be/stops/405032", "https://data.delijn.be/stops/405050"], ["https://data.delijn.be/stops/508073", "https://data.delijn.be/stops/508074"], ["https://data.delijn.be/stops/302360", "https://data.delijn.be/stops/302364"], ["https://data.delijn.be/stops/106175", "https://data.delijn.be/stops/106179"], ["https://data.delijn.be/stops/304006", "https://data.delijn.be/stops/304007"], ["https://data.delijn.be/stops/503007", "https://data.delijn.be/stops/505316"], ["https://data.delijn.be/stops/503779", "https://data.delijn.be/stops/508778"], ["https://data.delijn.be/stops/308222", "https://data.delijn.be/stops/308289"], ["https://data.delijn.be/stops/206120", "https://data.delijn.be/stops/206810"], ["https://data.delijn.be/stops/208768", "https://data.delijn.be/stops/209121"], ["https://data.delijn.be/stops/208872", "https://data.delijn.be/stops/218014"], ["https://data.delijn.be/stops/202439", "https://data.delijn.be/stops/203439"], ["https://data.delijn.be/stops/501210", "https://data.delijn.be/stops/506210"], ["https://data.delijn.be/stops/304608", "https://data.delijn.be/stops/304657"], ["https://data.delijn.be/stops/402176", "https://data.delijn.be/stops/402243"], ["https://data.delijn.be/stops/105117", "https://data.delijn.be/stops/105827"], ["https://data.delijn.be/stops/300432", "https://data.delijn.be/stops/302696"], ["https://data.delijn.be/stops/303250", "https://data.delijn.be/stops/303258"], ["https://data.delijn.be/stops/400387", "https://data.delijn.be/stops/400398"], ["https://data.delijn.be/stops/305712", "https://data.delijn.be/stops/305713"], ["https://data.delijn.be/stops/200011", "https://data.delijn.be/stops/201011"], ["https://data.delijn.be/stops/503782", "https://data.delijn.be/stops/505271"], ["https://data.delijn.be/stops/307550", "https://data.delijn.be/stops/307554"], ["https://data.delijn.be/stops/203153", "https://data.delijn.be/stops/203190"], ["https://data.delijn.be/stops/204971", "https://data.delijn.be/stops/204972"], ["https://data.delijn.be/stops/303394", "https://data.delijn.be/stops/308893"], ["https://data.delijn.be/stops/402390", "https://data.delijn.be/stops/402391"], ["https://data.delijn.be/stops/300032", "https://data.delijn.be/stops/303323"], ["https://data.delijn.be/stops/504225", "https://data.delijn.be/stops/509225"], ["https://data.delijn.be/stops/105469", "https://data.delijn.be/stops/105669"], ["https://data.delijn.be/stops/503108", "https://data.delijn.be/stops/503963"], ["https://data.delijn.be/stops/107708", "https://data.delijn.be/stops/109752"], ["https://data.delijn.be/stops/101342", "https://data.delijn.be/stops/108141"], ["https://data.delijn.be/stops/502240", "https://data.delijn.be/stops/507645"], ["https://data.delijn.be/stops/206497", "https://data.delijn.be/stops/207497"], ["https://data.delijn.be/stops/208224", "https://data.delijn.be/stops/209223"], ["https://data.delijn.be/stops/308822", "https://data.delijn.be/stops/308823"], ["https://data.delijn.be/stops/107576", "https://data.delijn.be/stops/107577"], ["https://data.delijn.be/stops/502612", "https://data.delijn.be/stops/502623"], ["https://data.delijn.be/stops/302923", "https://data.delijn.be/stops/303042"], ["https://data.delijn.be/stops/504303", "https://data.delijn.be/stops/509303"], ["https://data.delijn.be/stops/200094", "https://data.delijn.be/stops/201094"], ["https://data.delijn.be/stops/106233", "https://data.delijn.be/stops/109396"], ["https://data.delijn.be/stops/306300", "https://data.delijn.be/stops/306373"], ["https://data.delijn.be/stops/503800", "https://data.delijn.be/stops/505389"], ["https://data.delijn.be/stops/401326", "https://data.delijn.be/stops/401328"], ["https://data.delijn.be/stops/406972", "https://data.delijn.be/stops/409471"], ["https://data.delijn.be/stops/107192", "https://data.delijn.be/stops/107734"], ["https://data.delijn.be/stops/503530", "https://data.delijn.be/stops/503531"], ["https://data.delijn.be/stops/502451", "https://data.delijn.be/stops/502634"], ["https://data.delijn.be/stops/206217", "https://data.delijn.be/stops/207314"], ["https://data.delijn.be/stops/106433", "https://data.delijn.be/stops/106434"], ["https://data.delijn.be/stops/206687", "https://data.delijn.be/stops/207378"], ["https://data.delijn.be/stops/200376", "https://data.delijn.be/stops/210089"], ["https://data.delijn.be/stops/403263", "https://data.delijn.be/stops/410212"], ["https://data.delijn.be/stops/202499", "https://data.delijn.be/stops/202500"], ["https://data.delijn.be/stops/107725", "https://data.delijn.be/stops/109040"], ["https://data.delijn.be/stops/202969", "https://data.delijn.be/stops/203968"], ["https://data.delijn.be/stops/401841", "https://data.delijn.be/stops/406019"], ["https://data.delijn.be/stops/509367", "https://data.delijn.be/stops/509371"], ["https://data.delijn.be/stops/407078", "https://data.delijn.be/stops/407084"], ["https://data.delijn.be/stops/302088", "https://data.delijn.be/stops/302093"], ["https://data.delijn.be/stops/502524", "https://data.delijn.be/stops/507526"], ["https://data.delijn.be/stops/302726", "https://data.delijn.be/stops/302778"], ["https://data.delijn.be/stops/106413", "https://data.delijn.be/stops/109876"], ["https://data.delijn.be/stops/507406", "https://data.delijn.be/stops/507725"], ["https://data.delijn.be/stops/109632", "https://data.delijn.be/stops/109634"], ["https://data.delijn.be/stops/501267", "https://data.delijn.be/stops/501325"], ["https://data.delijn.be/stops/202644", "https://data.delijn.be/stops/202690"], ["https://data.delijn.be/stops/503585", "https://data.delijn.be/stops/507916"], ["https://data.delijn.be/stops/302887", "https://data.delijn.be/stops/302888"], ["https://data.delijn.be/stops/202724", "https://data.delijn.be/stops/203675"], ["https://data.delijn.be/stops/106589", "https://data.delijn.be/stops/106591"], ["https://data.delijn.be/stops/302932", "https://data.delijn.be/stops/308439"], ["https://data.delijn.be/stops/505104", "https://data.delijn.be/stops/508879"], ["https://data.delijn.be/stops/401524", "https://data.delijn.be/stops/402514"], ["https://data.delijn.be/stops/104382", "https://data.delijn.be/stops/105415"], ["https://data.delijn.be/stops/206296", "https://data.delijn.be/stops/206447"], ["https://data.delijn.be/stops/206334", "https://data.delijn.be/stops/207334"], ["https://data.delijn.be/stops/503559", "https://data.delijn.be/stops/508553"], ["https://data.delijn.be/stops/505694", "https://data.delijn.be/stops/507539"], ["https://data.delijn.be/stops/106460", "https://data.delijn.be/stops/106461"], ["https://data.delijn.be/stops/200355", "https://data.delijn.be/stops/203647"], ["https://data.delijn.be/stops/502302", "https://data.delijn.be/stops/507302"], ["https://data.delijn.be/stops/206275", "https://data.delijn.be/stops/207274"], ["https://data.delijn.be/stops/202189", "https://data.delijn.be/stops/202242"], ["https://data.delijn.be/stops/301697", "https://data.delijn.be/stops/304571"], ["https://data.delijn.be/stops/201857", "https://data.delijn.be/stops/203664"], ["https://data.delijn.be/stops/304787", "https://data.delijn.be/stops/306689"], ["https://data.delijn.be/stops/304928", "https://data.delijn.be/stops/306109"], ["https://data.delijn.be/stops/101071", "https://data.delijn.be/stops/109773"], ["https://data.delijn.be/stops/407379", "https://data.delijn.be/stops/407411"], ["https://data.delijn.be/stops/102442", "https://data.delijn.be/stops/102639"], ["https://data.delijn.be/stops/504105", "https://data.delijn.be/stops/509546"], ["https://data.delijn.be/stops/206152", "https://data.delijn.be/stops/207151"], ["https://data.delijn.be/stops/204640", "https://data.delijn.be/stops/204731"], ["https://data.delijn.be/stops/208337", "https://data.delijn.be/stops/209336"], ["https://data.delijn.be/stops/407913", "https://data.delijn.be/stops/408052"], ["https://data.delijn.be/stops/103227", "https://data.delijn.be/stops/108914"], ["https://data.delijn.be/stops/202484", "https://data.delijn.be/stops/203484"], ["https://data.delijn.be/stops/102907", "https://data.delijn.be/stops/109748"], ["https://data.delijn.be/stops/201906", "https://data.delijn.be/stops/203516"], ["https://data.delijn.be/stops/401154", "https://data.delijn.be/stops/401155"], ["https://data.delijn.be/stops/204756", "https://data.delijn.be/stops/204757"], ["https://data.delijn.be/stops/302418", "https://data.delijn.be/stops/308814"], ["https://data.delijn.be/stops/400856", "https://data.delijn.be/stops/409526"], ["https://data.delijn.be/stops/108351", "https://data.delijn.be/stops/108352"], ["https://data.delijn.be/stops/108971", "https://data.delijn.be/stops/401936"], ["https://data.delijn.be/stops/208192", "https://data.delijn.be/stops/218013"], ["https://data.delijn.be/stops/410180", "https://data.delijn.be/stops/410181"], ["https://data.delijn.be/stops/200054", "https://data.delijn.be/stops/201478"], ["https://data.delijn.be/stops/501302", "https://data.delijn.be/stops/506302"], ["https://data.delijn.be/stops/404008", "https://data.delijn.be/stops/404353"], ["https://data.delijn.be/stops/206630", "https://data.delijn.be/stops/206792"], ["https://data.delijn.be/stops/301721", "https://data.delijn.be/stops/304188"], ["https://data.delijn.be/stops/308149", "https://data.delijn.be/stops/308174"], ["https://data.delijn.be/stops/304042", "https://data.delijn.be/stops/306810"], ["https://data.delijn.be/stops/209509", "https://data.delijn.be/stops/209633"], ["https://data.delijn.be/stops/507170", "https://data.delijn.be/stops/507248"], ["https://data.delijn.be/stops/200271", "https://data.delijn.be/stops/201272"], ["https://data.delijn.be/stops/200797", "https://data.delijn.be/stops/211063"], ["https://data.delijn.be/stops/503299", "https://data.delijn.be/stops/505949"], ["https://data.delijn.be/stops/102381", "https://data.delijn.be/stops/106355"], ["https://data.delijn.be/stops/503361", "https://data.delijn.be/stops/503405"], ["https://data.delijn.be/stops/203554", "https://data.delijn.be/stops/203556"], ["https://data.delijn.be/stops/201843", "https://data.delijn.be/stops/203194"], ["https://data.delijn.be/stops/300735", "https://data.delijn.be/stops/302187"], ["https://data.delijn.be/stops/402724", "https://data.delijn.be/stops/405941"], ["https://data.delijn.be/stops/508416", "https://data.delijn.be/stops/509920"], ["https://data.delijn.be/stops/506734", "https://data.delijn.be/stops/509897"], ["https://data.delijn.be/stops/204163", "https://data.delijn.be/stops/206274"], ["https://data.delijn.be/stops/102528", "https://data.delijn.be/stops/405083"], ["https://data.delijn.be/stops/301031", "https://data.delijn.be/stops/301034"], ["https://data.delijn.be/stops/204213", "https://data.delijn.be/stops/205002"], ["https://data.delijn.be/stops/103971", "https://data.delijn.be/stops/106444"], ["https://data.delijn.be/stops/501392", "https://data.delijn.be/stops/506464"], ["https://data.delijn.be/stops/401214", "https://data.delijn.be/stops/401270"], ["https://data.delijn.be/stops/404864", "https://data.delijn.be/stops/404893"], ["https://data.delijn.be/stops/407436", "https://data.delijn.be/stops/407469"], ["https://data.delijn.be/stops/409210", "https://data.delijn.be/stops/409211"], ["https://data.delijn.be/stops/404726", "https://data.delijn.be/stops/408948"], ["https://data.delijn.be/stops/405558", "https://data.delijn.be/stops/405561"], ["https://data.delijn.be/stops/201181", "https://data.delijn.be/stops/201187"], ["https://data.delijn.be/stops/505683", "https://data.delijn.be/stops/505684"], ["https://data.delijn.be/stops/303012", "https://data.delijn.be/stops/303141"], ["https://data.delijn.be/stops/106603", "https://data.delijn.be/stops/107208"], ["https://data.delijn.be/stops/301600", "https://data.delijn.be/stops/301610"], ["https://data.delijn.be/stops/206667", "https://data.delijn.be/stops/206730"], ["https://data.delijn.be/stops/306842", "https://data.delijn.be/stops/307354"], ["https://data.delijn.be/stops/504106", "https://data.delijn.be/stops/504107"], ["https://data.delijn.be/stops/208537", "https://data.delijn.be/stops/208752"], ["https://data.delijn.be/stops/208582", "https://data.delijn.be/stops/209700"], ["https://data.delijn.be/stops/304046", "https://data.delijn.be/stops/304800"], ["https://data.delijn.be/stops/305108", "https://data.delijn.be/stops/305110"], ["https://data.delijn.be/stops/206955", "https://data.delijn.be/stops/207368"], ["https://data.delijn.be/stops/501456", "https://data.delijn.be/stops/506457"], ["https://data.delijn.be/stops/502430", "https://data.delijn.be/stops/507124"], ["https://data.delijn.be/stops/205348", "https://data.delijn.be/stops/205707"], ["https://data.delijn.be/stops/402827", "https://data.delijn.be/stops/409011"], ["https://data.delijn.be/stops/504240", "https://data.delijn.be/stops/509240"], ["https://data.delijn.be/stops/501433", "https://data.delijn.be/stops/501644"], ["https://data.delijn.be/stops/103023", "https://data.delijn.be/stops/109669"], ["https://data.delijn.be/stops/101820", "https://data.delijn.be/stops/103339"], ["https://data.delijn.be/stops/101871", "https://data.delijn.be/stops/105256"], ["https://data.delijn.be/stops/208521", "https://data.delijn.be/stops/209521"], ["https://data.delijn.be/stops/506249", "https://data.delijn.be/stops/506767"], ["https://data.delijn.be/stops/308057", "https://data.delijn.be/stops/308758"], ["https://data.delijn.be/stops/206140", "https://data.delijn.be/stops/207130"], ["https://data.delijn.be/stops/304102", "https://data.delijn.be/stops/308046"], ["https://data.delijn.be/stops/206592", "https://data.delijn.be/stops/206948"], ["https://data.delijn.be/stops/202930", "https://data.delijn.be/stops/203490"], ["https://data.delijn.be/stops/502084", "https://data.delijn.be/stops/507084"], ["https://data.delijn.be/stops/500011", "https://data.delijn.be/stops/502332"], ["https://data.delijn.be/stops/304667", "https://data.delijn.be/stops/304685"], ["https://data.delijn.be/stops/402956", "https://data.delijn.be/stops/408440"], ["https://data.delijn.be/stops/206591", "https://data.delijn.be/stops/206930"], ["https://data.delijn.be/stops/304442", "https://data.delijn.be/stops/307213"], ["https://data.delijn.be/stops/108074", "https://data.delijn.be/stops/108077"], ["https://data.delijn.be/stops/400266", "https://data.delijn.be/stops/408363"], ["https://data.delijn.be/stops/502436", "https://data.delijn.be/stops/507025"], ["https://data.delijn.be/stops/404266", "https://data.delijn.be/stops/405604"], ["https://data.delijn.be/stops/405290", "https://data.delijn.be/stops/406312"], ["https://data.delijn.be/stops/504650", "https://data.delijn.be/stops/509044"], ["https://data.delijn.be/stops/504753", "https://data.delijn.be/stops/509754"], ["https://data.delijn.be/stops/403089", "https://data.delijn.be/stops/403507"], ["https://data.delijn.be/stops/303174", "https://data.delijn.be/stops/303189"], ["https://data.delijn.be/stops/101845", "https://data.delijn.be/stops/102837"], ["https://data.delijn.be/stops/305502", "https://data.delijn.be/stops/307820"], ["https://data.delijn.be/stops/401201", "https://data.delijn.be/stops/401266"], ["https://data.delijn.be/stops/507105", "https://data.delijn.be/stops/507680"], ["https://data.delijn.be/stops/306703", "https://data.delijn.be/stops/306704"], ["https://data.delijn.be/stops/218003", "https://data.delijn.be/stops/219003"], ["https://data.delijn.be/stops/206674", "https://data.delijn.be/stops/209171"], ["https://data.delijn.be/stops/503071", "https://data.delijn.be/stops/508877"], ["https://data.delijn.be/stops/503764", "https://data.delijn.be/stops/509364"], ["https://data.delijn.be/stops/202231", "https://data.delijn.be/stops/202232"], ["https://data.delijn.be/stops/107518", "https://data.delijn.be/stops/107521"], ["https://data.delijn.be/stops/207250", "https://data.delijn.be/stops/217019"], ["https://data.delijn.be/stops/207734", "https://data.delijn.be/stops/207748"], ["https://data.delijn.be/stops/204484", "https://data.delijn.be/stops/204739"], ["https://data.delijn.be/stops/502692", "https://data.delijn.be/stops/507339"], ["https://data.delijn.be/stops/303346", "https://data.delijn.be/stops/304712"], ["https://data.delijn.be/stops/302158", "https://data.delijn.be/stops/302162"], ["https://data.delijn.be/stops/500002", "https://data.delijn.be/stops/503668"], ["https://data.delijn.be/stops/504341", "https://data.delijn.be/stops/504633"], ["https://data.delijn.be/stops/209539", "https://data.delijn.be/stops/209543"], ["https://data.delijn.be/stops/503080", "https://data.delijn.be/stops/504873"], ["https://data.delijn.be/stops/106171", "https://data.delijn.be/stops/106464"], ["https://data.delijn.be/stops/302949", "https://data.delijn.be/stops/302994"], ["https://data.delijn.be/stops/200442", "https://data.delijn.be/stops/202134"], ["https://data.delijn.be/stops/504455", "https://data.delijn.be/stops/504561"], ["https://data.delijn.be/stops/406968", "https://data.delijn.be/stops/406969"], ["https://data.delijn.be/stops/503828", "https://data.delijn.be/stops/504201"], ["https://data.delijn.be/stops/208061", "https://data.delijn.be/stops/208062"], ["https://data.delijn.be/stops/101400", "https://data.delijn.be/stops/106530"], ["https://data.delijn.be/stops/506238", "https://data.delijn.be/stops/506242"], ["https://data.delijn.be/stops/405190", "https://data.delijn.be/stops/405191"], ["https://data.delijn.be/stops/407316", "https://data.delijn.be/stops/409041"], ["https://data.delijn.be/stops/404586", "https://data.delijn.be/stops/406903"], ["https://data.delijn.be/stops/302978", "https://data.delijn.be/stops/302988"], ["https://data.delijn.be/stops/405720", "https://data.delijn.be/stops/405741"], ["https://data.delijn.be/stops/102386", "https://data.delijn.be/stops/103502"], ["https://data.delijn.be/stops/105093", "https://data.delijn.be/stops/109505"], ["https://data.delijn.be/stops/101374", "https://data.delijn.be/stops/101398"], ["https://data.delijn.be/stops/205421", "https://data.delijn.be/stops/205422"], ["https://data.delijn.be/stops/109798", "https://data.delijn.be/stops/305765"], ["https://data.delijn.be/stops/206392", "https://data.delijn.be/stops/207392"], ["https://data.delijn.be/stops/202923", "https://data.delijn.be/stops/203922"], ["https://data.delijn.be/stops/209267", "https://data.delijn.be/stops/209268"], ["https://data.delijn.be/stops/106486", "https://data.delijn.be/stops/109712"], ["https://data.delijn.be/stops/206922", "https://data.delijn.be/stops/207213"], ["https://data.delijn.be/stops/405220", "https://data.delijn.be/stops/405286"], ["https://data.delijn.be/stops/503958", "https://data.delijn.be/stops/503959"], ["https://data.delijn.be/stops/204639", "https://data.delijn.be/stops/204640"], ["https://data.delijn.be/stops/200763", "https://data.delijn.be/stops/208301"], ["https://data.delijn.be/stops/304750", "https://data.delijn.be/stops/304751"], ["https://data.delijn.be/stops/101526", "https://data.delijn.be/stops/101941"], ["https://data.delijn.be/stops/105034", "https://data.delijn.be/stops/105036"], ["https://data.delijn.be/stops/501357", "https://data.delijn.be/stops/506357"], ["https://data.delijn.be/stops/302836", "https://data.delijn.be/stops/308825"], ["https://data.delijn.be/stops/302617", "https://data.delijn.be/stops/302618"], ["https://data.delijn.be/stops/202173", "https://data.delijn.be/stops/203173"], ["https://data.delijn.be/stops/401647", "https://data.delijn.be/stops/408722"], ["https://data.delijn.be/stops/403415", "https://data.delijn.be/stops/410164"], ["https://data.delijn.be/stops/505063", "https://data.delijn.be/stops/505064"], ["https://data.delijn.be/stops/305325", "https://data.delijn.be/stops/305891"], ["https://data.delijn.be/stops/300140", "https://data.delijn.be/stops/300146"], ["https://data.delijn.be/stops/505342", "https://data.delijn.be/stops/509515"], ["https://data.delijn.be/stops/403022", "https://data.delijn.be/stops/404229"], ["https://data.delijn.be/stops/300515", "https://data.delijn.be/stops/300527"], ["https://data.delijn.be/stops/201894", "https://data.delijn.be/stops/211127"], ["https://data.delijn.be/stops/102253", "https://data.delijn.be/stops/109082"], ["https://data.delijn.be/stops/205739", "https://data.delijn.be/stops/205746"], ["https://data.delijn.be/stops/208541", "https://data.delijn.be/stops/209541"], ["https://data.delijn.be/stops/200895", "https://data.delijn.be/stops/203336"], ["https://data.delijn.be/stops/407153", "https://data.delijn.be/stops/407183"], ["https://data.delijn.be/stops/201135", "https://data.delijn.be/stops/201231"], ["https://data.delijn.be/stops/200954", "https://data.delijn.be/stops/201202"], ["https://data.delijn.be/stops/408581", "https://data.delijn.be/stops/408638"], ["https://data.delijn.be/stops/304811", "https://data.delijn.be/stops/307885"], ["https://data.delijn.be/stops/201311", "https://data.delijn.be/stops/201537"], ["https://data.delijn.be/stops/102072", "https://data.delijn.be/stops/108694"], ["https://data.delijn.be/stops/107703", "https://data.delijn.be/stops/109239"], ["https://data.delijn.be/stops/502929", "https://data.delijn.be/stops/507015"], ["https://data.delijn.be/stops/106412", "https://data.delijn.be/stops/109876"], ["https://data.delijn.be/stops/303475", "https://data.delijn.be/stops/308132"], ["https://data.delijn.be/stops/206045", "https://data.delijn.be/stops/207920"], ["https://data.delijn.be/stops/500874", "https://data.delijn.be/stops/503934"], ["https://data.delijn.be/stops/302707", "https://data.delijn.be/stops/308835"], ["https://data.delijn.be/stops/204157", "https://data.delijn.be/stops/211067"], ["https://data.delijn.be/stops/504074", "https://data.delijn.be/stops/505573"], ["https://data.delijn.be/stops/401110", "https://data.delijn.be/stops/406719"], ["https://data.delijn.be/stops/507753", "https://data.delijn.be/stops/508822"], ["https://data.delijn.be/stops/204233", "https://data.delijn.be/stops/205233"], ["https://data.delijn.be/stops/504752", "https://data.delijn.be/stops/509753"], ["https://data.delijn.be/stops/505074", "https://data.delijn.be/stops/507476"], ["https://data.delijn.be/stops/201689", "https://data.delijn.be/stops/203998"], ["https://data.delijn.be/stops/408963", "https://data.delijn.be/stops/408982"], ["https://data.delijn.be/stops/502372", "https://data.delijn.be/stops/507372"], ["https://data.delijn.be/stops/202910", "https://data.delijn.be/stops/203916"], ["https://data.delijn.be/stops/301935", "https://data.delijn.be/stops/302909"], ["https://data.delijn.be/stops/107581", "https://data.delijn.be/stops/107582"], ["https://data.delijn.be/stops/307338", "https://data.delijn.be/stops/307339"], ["https://data.delijn.be/stops/405646", "https://data.delijn.be/stops/408621"], ["https://data.delijn.be/stops/404409", "https://data.delijn.be/stops/404414"], ["https://data.delijn.be/stops/204736", "https://data.delijn.be/stops/205737"], ["https://data.delijn.be/stops/207156", "https://data.delijn.be/stops/207229"], ["https://data.delijn.be/stops/404374", "https://data.delijn.be/stops/404383"], ["https://data.delijn.be/stops/504988", "https://data.delijn.be/stops/505118"], ["https://data.delijn.be/stops/402735", "https://data.delijn.be/stops/410056"], ["https://data.delijn.be/stops/103310", "https://data.delijn.be/stops/103340"], ["https://data.delijn.be/stops/106060", "https://data.delijn.be/stops/205611"], ["https://data.delijn.be/stops/300096", "https://data.delijn.be/stops/306852"], ["https://data.delijn.be/stops/206289", "https://data.delijn.be/stops/207289"], ["https://data.delijn.be/stops/303500", "https://data.delijn.be/stops/303503"], ["https://data.delijn.be/stops/501432", "https://data.delijn.be/stops/501678"], ["https://data.delijn.be/stops/202824", "https://data.delijn.be/stops/203823"], ["https://data.delijn.be/stops/505743", "https://data.delijn.be/stops/505749"], ["https://data.delijn.be/stops/300611", "https://data.delijn.be/stops/303517"], ["https://data.delijn.be/stops/207792", "https://data.delijn.be/stops/218014"], ["https://data.delijn.be/stops/206550", "https://data.delijn.be/stops/206551"], ["https://data.delijn.be/stops/503417", "https://data.delijn.be/stops/508951"], ["https://data.delijn.be/stops/401516", "https://data.delijn.be/stops/401738"], ["https://data.delijn.be/stops/400315", "https://data.delijn.be/stops/402791"], ["https://data.delijn.be/stops/207854", "https://data.delijn.be/stops/207855"], ["https://data.delijn.be/stops/505560", "https://data.delijn.be/stops/507282"], ["https://data.delijn.be/stops/305664", "https://data.delijn.be/stops/305667"], ["https://data.delijn.be/stops/403778", "https://data.delijn.be/stops/404264"], ["https://data.delijn.be/stops/505381", "https://data.delijn.be/stops/508103"], ["https://data.delijn.be/stops/501329", "https://data.delijn.be/stops/506329"], ["https://data.delijn.be/stops/501113", "https://data.delijn.be/stops/506638"], ["https://data.delijn.be/stops/505348", "https://data.delijn.be/stops/505416"], ["https://data.delijn.be/stops/407296", "https://data.delijn.be/stops/407325"], ["https://data.delijn.be/stops/200362", "https://data.delijn.be/stops/211006"], ["https://data.delijn.be/stops/101589", "https://data.delijn.be/stops/101593"], ["https://data.delijn.be/stops/202147", "https://data.delijn.be/stops/203189"], ["https://data.delijn.be/stops/102957", "https://data.delijn.be/stops/106884"], ["https://data.delijn.be/stops/406948", "https://data.delijn.be/stops/407306"], ["https://data.delijn.be/stops/304530", "https://data.delijn.be/stops/305603"], ["https://data.delijn.be/stops/405855", "https://data.delijn.be/stops/409705"], ["https://data.delijn.be/stops/200720", "https://data.delijn.be/stops/201168"], ["https://data.delijn.be/stops/407860", "https://data.delijn.be/stops/407861"], ["https://data.delijn.be/stops/208110", "https://data.delijn.be/stops/209111"], ["https://data.delijn.be/stops/204704", "https://data.delijn.be/stops/204710"], ["https://data.delijn.be/stops/104747", "https://data.delijn.be/stops/107331"], ["https://data.delijn.be/stops/406786", "https://data.delijn.be/stops/406805"], ["https://data.delijn.be/stops/101975", "https://data.delijn.be/stops/103775"], ["https://data.delijn.be/stops/103632", "https://data.delijn.be/stops/107171"], ["https://data.delijn.be/stops/401775", "https://data.delijn.be/stops/401870"], ["https://data.delijn.be/stops/202488", "https://data.delijn.be/stops/203488"], ["https://data.delijn.be/stops/505659", "https://data.delijn.be/stops/505660"], ["https://data.delijn.be/stops/104974", "https://data.delijn.be/stops/109444"], ["https://data.delijn.be/stops/300474", "https://data.delijn.be/stops/300475"], ["https://data.delijn.be/stops/200695", "https://data.delijn.be/stops/203788"], ["https://data.delijn.be/stops/208363", "https://data.delijn.be/stops/208366"], ["https://data.delijn.be/stops/106104", "https://data.delijn.be/stops/106106"], ["https://data.delijn.be/stops/504881", "https://data.delijn.be/stops/505748"], ["https://data.delijn.be/stops/103021", "https://data.delijn.be/stops/109889"], ["https://data.delijn.be/stops/406735", "https://data.delijn.be/stops/407623"], ["https://data.delijn.be/stops/304159", "https://data.delijn.be/stops/307542"], ["https://data.delijn.be/stops/501221", "https://data.delijn.be/stops/506221"], ["https://data.delijn.be/stops/301677", "https://data.delijn.be/stops/301679"], ["https://data.delijn.be/stops/303035", "https://data.delijn.be/stops/303101"], ["https://data.delijn.be/stops/102291", "https://data.delijn.be/stops/106345"], ["https://data.delijn.be/stops/503882", "https://data.delijn.be/stops/504999"], ["https://data.delijn.be/stops/304431", "https://data.delijn.be/stops/304449"], ["https://data.delijn.be/stops/101680", "https://data.delijn.be/stops/102520"], ["https://data.delijn.be/stops/208659", "https://data.delijn.be/stops/209659"], ["https://data.delijn.be/stops/106358", "https://data.delijn.be/stops/109639"], ["https://data.delijn.be/stops/103279", "https://data.delijn.be/stops/109040"], ["https://data.delijn.be/stops/206961", "https://data.delijn.be/stops/306072"], ["https://data.delijn.be/stops/200310", "https://data.delijn.be/stops/201378"], ["https://data.delijn.be/stops/101489", "https://data.delijn.be/stops/101947"], ["https://data.delijn.be/stops/200957", "https://data.delijn.be/stops/202683"], ["https://data.delijn.be/stops/405361", "https://data.delijn.be/stops/406298"], ["https://data.delijn.be/stops/102693", "https://data.delijn.be/stops/102890"], ["https://data.delijn.be/stops/201055", "https://data.delijn.be/stops/201183"], ["https://data.delijn.be/stops/307742", "https://data.delijn.be/stops/307744"], ["https://data.delijn.be/stops/105048", "https://data.delijn.be/stops/106702"], ["https://data.delijn.be/stops/401895", "https://data.delijn.be/stops/401897"], ["https://data.delijn.be/stops/305706", "https://data.delijn.be/stops/305752"], ["https://data.delijn.be/stops/208359", "https://data.delijn.be/stops/208955"], ["https://data.delijn.be/stops/503228", "https://data.delijn.be/stops/508229"], ["https://data.delijn.be/stops/505153", "https://data.delijn.be/stops/506085"], ["https://data.delijn.be/stops/506674", "https://data.delijn.be/stops/506675"], ["https://data.delijn.be/stops/102416", "https://data.delijn.be/stops/108423"], ["https://data.delijn.be/stops/208206", "https://data.delijn.be/stops/209121"], ["https://data.delijn.be/stops/405626", "https://data.delijn.be/stops/407389"], ["https://data.delijn.be/stops/300281", "https://data.delijn.be/stops/300282"], ["https://data.delijn.be/stops/504508", "https://data.delijn.be/stops/504733"], ["https://data.delijn.be/stops/101312", "https://data.delijn.be/stops/106046"], ["https://data.delijn.be/stops/408575", "https://data.delijn.be/stops/408815"], ["https://data.delijn.be/stops/105049", "https://data.delijn.be/stops/304042"], ["https://data.delijn.be/stops/202335", "https://data.delijn.be/stops/203295"], ["https://data.delijn.be/stops/401905", "https://data.delijn.be/stops/408329"], ["https://data.delijn.be/stops/300289", "https://data.delijn.be/stops/306285"], ["https://data.delijn.be/stops/103095", "https://data.delijn.be/stops/103357"], ["https://data.delijn.be/stops/302079", "https://data.delijn.be/stops/302090"], ["https://data.delijn.be/stops/504114", "https://data.delijn.be/stops/505912"], ["https://data.delijn.be/stops/108573", "https://data.delijn.be/stops/109686"], ["https://data.delijn.be/stops/304726", "https://data.delijn.be/stops/308649"], ["https://data.delijn.be/stops/207427", "https://data.delijn.be/stops/209536"], ["https://data.delijn.be/stops/304393", "https://data.delijn.be/stops/307398"], ["https://data.delijn.be/stops/206957", "https://data.delijn.be/stops/207696"], ["https://data.delijn.be/stops/106179", "https://data.delijn.be/stops/107442"], ["https://data.delijn.be/stops/403885", "https://data.delijn.be/stops/403887"], ["https://data.delijn.be/stops/400473", "https://data.delijn.be/stops/407647"], ["https://data.delijn.be/stops/301411", "https://data.delijn.be/stops/307207"], ["https://data.delijn.be/stops/504733", "https://data.delijn.be/stops/509508"], ["https://data.delijn.be/stops/505281", "https://data.delijn.be/stops/509982"], ["https://data.delijn.be/stops/505227", "https://data.delijn.be/stops/505577"], ["https://data.delijn.be/stops/504035", "https://data.delijn.be/stops/509035"], ["https://data.delijn.be/stops/108165", "https://data.delijn.be/stops/108330"], ["https://data.delijn.be/stops/408315", "https://data.delijn.be/stops/408355"], ["https://data.delijn.be/stops/308180", "https://data.delijn.be/stops/308291"], ["https://data.delijn.be/stops/106279", "https://data.delijn.be/stops/106343"], ["https://data.delijn.be/stops/209854", "https://data.delijn.be/stops/209855"], ["https://data.delijn.be/stops/204495", "https://data.delijn.be/stops/205327"], ["https://data.delijn.be/stops/107594", "https://data.delijn.be/stops/107691"], ["https://data.delijn.be/stops/200557", "https://data.delijn.be/stops/504771"], ["https://data.delijn.be/stops/102179", "https://data.delijn.be/stops/102938"], ["https://data.delijn.be/stops/409304", "https://data.delijn.be/stops/409305"], ["https://data.delijn.be/stops/502755", "https://data.delijn.be/stops/505649"], ["https://data.delijn.be/stops/403104", "https://data.delijn.be/stops/403187"], ["https://data.delijn.be/stops/101240", "https://data.delijn.be/stops/105800"], ["https://data.delijn.be/stops/102180", "https://data.delijn.be/stops/107131"], ["https://data.delijn.be/stops/405922", "https://data.delijn.be/stops/405923"], ["https://data.delijn.be/stops/504532", "https://data.delijn.be/stops/509290"], ["https://data.delijn.be/stops/106522", "https://data.delijn.be/stops/107098"], ["https://data.delijn.be/stops/200277", "https://data.delijn.be/stops/201277"], ["https://data.delijn.be/stops/502453", "https://data.delijn.be/stops/507660"], ["https://data.delijn.be/stops/405676", "https://data.delijn.be/stops/406989"], ["https://data.delijn.be/stops/107916", "https://data.delijn.be/stops/308799"], ["https://data.delijn.be/stops/407464", "https://data.delijn.be/stops/409309"], ["https://data.delijn.be/stops/504881", "https://data.delijn.be/stops/507062"], ["https://data.delijn.be/stops/308199", "https://data.delijn.be/stops/308222"], ["https://data.delijn.be/stops/201180", "https://data.delijn.be/stops/201195"], ["https://data.delijn.be/stops/104039", "https://data.delijn.be/stops/304920"], ["https://data.delijn.be/stops/403573", "https://data.delijn.be/stops/403574"], ["https://data.delijn.be/stops/204286", "https://data.delijn.be/stops/204287"], ["https://data.delijn.be/stops/404960", "https://data.delijn.be/stops/406836"], ["https://data.delijn.be/stops/407725", "https://data.delijn.be/stops/407726"], ["https://data.delijn.be/stops/505143", "https://data.delijn.be/stops/507229"], ["https://data.delijn.be/stops/406253", "https://data.delijn.be/stops/406254"], ["https://data.delijn.be/stops/301698", "https://data.delijn.be/stops/301722"], ["https://data.delijn.be/stops/102283", "https://data.delijn.be/stops/102284"], ["https://data.delijn.be/stops/501212", "https://data.delijn.be/stops/501633"], ["https://data.delijn.be/stops/207681", "https://data.delijn.be/stops/209241"], ["https://data.delijn.be/stops/501467", "https://data.delijn.be/stops/505036"], ["https://data.delijn.be/stops/205379", "https://data.delijn.be/stops/205418"], ["https://data.delijn.be/stops/503795", "https://data.delijn.be/stops/508795"], ["https://data.delijn.be/stops/405615", "https://data.delijn.be/stops/407191"], ["https://data.delijn.be/stops/105977", "https://data.delijn.be/stops/105981"], ["https://data.delijn.be/stops/102081", "https://data.delijn.be/stops/105412"], ["https://data.delijn.be/stops/401988", "https://data.delijn.be/stops/403274"], ["https://data.delijn.be/stops/507535", "https://data.delijn.be/stops/507746"], ["https://data.delijn.be/stops/300279", "https://data.delijn.be/stops/300282"], ["https://data.delijn.be/stops/202342", "https://data.delijn.be/stops/203342"], ["https://data.delijn.be/stops/508893", "https://data.delijn.be/stops/508895"], ["https://data.delijn.be/stops/505316", "https://data.delijn.be/stops/508007"], ["https://data.delijn.be/stops/201405", "https://data.delijn.be/stops/201742"], ["https://data.delijn.be/stops/304474", "https://data.delijn.be/stops/304475"], ["https://data.delijn.be/stops/107659", "https://data.delijn.be/stops/107661"], ["https://data.delijn.be/stops/407849", "https://data.delijn.be/stops/408064"], ["https://data.delijn.be/stops/108428", "https://data.delijn.be/stops/108429"], ["https://data.delijn.be/stops/405322", "https://data.delijn.be/stops/305058"], ["https://data.delijn.be/stops/405976", "https://data.delijn.be/stops/405990"], ["https://data.delijn.be/stops/401187", "https://data.delijn.be/stops/401287"], ["https://data.delijn.be/stops/304569", "https://data.delijn.be/stops/304622"], ["https://data.delijn.be/stops/101950", "https://data.delijn.be/stops/104135"], ["https://data.delijn.be/stops/400042", "https://data.delijn.be/stops/400382"], ["https://data.delijn.be/stops/302755", "https://data.delijn.be/stops/307046"], ["https://data.delijn.be/stops/407825", "https://data.delijn.be/stops/408172"], ["https://data.delijn.be/stops/503573", "https://data.delijn.be/stops/503574"], ["https://data.delijn.be/stops/408685", "https://data.delijn.be/stops/410083"], ["https://data.delijn.be/stops/403817", "https://data.delijn.be/stops/403818"], ["https://data.delijn.be/stops/301825", "https://data.delijn.be/stops/301829"], ["https://data.delijn.be/stops/204289", "https://data.delijn.be/stops/205498"], ["https://data.delijn.be/stops/105480", "https://data.delijn.be/stops/105481"], ["https://data.delijn.be/stops/404320", "https://data.delijn.be/stops/404323"], ["https://data.delijn.be/stops/408318", "https://data.delijn.be/stops/408320"], ["https://data.delijn.be/stops/208087", "https://data.delijn.be/stops/209087"], ["https://data.delijn.be/stops/202762", "https://data.delijn.be/stops/203751"], ["https://data.delijn.be/stops/410214", "https://data.delijn.be/stops/410282"], ["https://data.delijn.be/stops/501733", "https://data.delijn.be/stops/506599"], ["https://data.delijn.be/stops/400602", "https://data.delijn.be/stops/405950"], ["https://data.delijn.be/stops/200812", "https://data.delijn.be/stops/200883"], ["https://data.delijn.be/stops/504223", "https://data.delijn.be/stops/509223"], ["https://data.delijn.be/stops/307564", "https://data.delijn.be/stops/307566"], ["https://data.delijn.be/stops/501120", "https://data.delijn.be/stops/509796"], ["https://data.delijn.be/stops/301985", "https://data.delijn.be/stops/306314"], ["https://data.delijn.be/stops/406680", "https://data.delijn.be/stops/406681"], ["https://data.delijn.be/stops/206421", "https://data.delijn.be/stops/206567"], ["https://data.delijn.be/stops/402608", "https://data.delijn.be/stops/405474"], ["https://data.delijn.be/stops/501433", "https://data.delijn.be/stops/506433"], ["https://data.delijn.be/stops/305537", "https://data.delijn.be/stops/305562"], ["https://data.delijn.be/stops/301084", "https://data.delijn.be/stops/301928"], ["https://data.delijn.be/stops/102231", "https://data.delijn.be/stops/102738"], ["https://data.delijn.be/stops/408076", "https://data.delijn.be/stops/408080"], ["https://data.delijn.be/stops/200859", "https://data.delijn.be/stops/200860"], ["https://data.delijn.be/stops/204738", "https://data.delijn.be/stops/205738"], ["https://data.delijn.be/stops/206323", "https://data.delijn.be/stops/206485"], ["https://data.delijn.be/stops/301641", "https://data.delijn.be/stops/307546"], ["https://data.delijn.be/stops/503704", "https://data.delijn.be/stops/508704"], ["https://data.delijn.be/stops/200310", "https://data.delijn.be/stops/201537"], ["https://data.delijn.be/stops/206064", "https://data.delijn.be/stops/207119"], ["https://data.delijn.be/stops/105625", "https://data.delijn.be/stops/108355"], ["https://data.delijn.be/stops/404750", "https://data.delijn.be/stops/404945"], ["https://data.delijn.be/stops/305188", "https://data.delijn.be/stops/307104"], ["https://data.delijn.be/stops/303414", "https://data.delijn.be/stops/303428"], ["https://data.delijn.be/stops/305263", "https://data.delijn.be/stops/305314"], ["https://data.delijn.be/stops/101676", "https://data.delijn.be/stops/103133"], ["https://data.delijn.be/stops/501424", "https://data.delijn.be/stops/505530"], ["https://data.delijn.be/stops/408968", "https://data.delijn.be/stops/408979"], ["https://data.delijn.be/stops/409861", "https://data.delijn.be/stops/409873"], ["https://data.delijn.be/stops/505846", "https://data.delijn.be/stops/509277"], ["https://data.delijn.be/stops/302262", "https://data.delijn.be/stops/302267"], ["https://data.delijn.be/stops/503860", "https://data.delijn.be/stops/508856"], ["https://data.delijn.be/stops/204317", "https://data.delijn.be/stops/205362"], ["https://data.delijn.be/stops/200556", "https://data.delijn.be/stops/505668"], ["https://data.delijn.be/stops/503319", "https://data.delijn.be/stops/503321"], ["https://data.delijn.be/stops/304345", "https://data.delijn.be/stops/304357"], ["https://data.delijn.be/stops/405873", "https://data.delijn.be/stops/409426"], ["https://data.delijn.be/stops/208753", "https://data.delijn.be/stops/209383"], ["https://data.delijn.be/stops/101135", "https://data.delijn.be/stops/103353"], ["https://data.delijn.be/stops/102748", "https://data.delijn.be/stops/107801"], ["https://data.delijn.be/stops/103969", "https://data.delijn.be/stops/106756"], ["https://data.delijn.be/stops/102389", "https://data.delijn.be/stops/107082"], ["https://data.delijn.be/stops/201674", "https://data.delijn.be/stops/202205"], ["https://data.delijn.be/stops/210014", "https://data.delijn.be/stops/507277"], ["https://data.delijn.be/stops/308413", "https://data.delijn.be/stops/308414"], ["https://data.delijn.be/stops/202377", "https://data.delijn.be/stops/202378"], ["https://data.delijn.be/stops/104463", "https://data.delijn.be/stops/107187"], ["https://data.delijn.be/stops/202366", "https://data.delijn.be/stops/203366"], ["https://data.delijn.be/stops/206582", "https://data.delijn.be/stops/207530"], ["https://data.delijn.be/stops/303877", "https://data.delijn.be/stops/303878"], ["https://data.delijn.be/stops/300591", "https://data.delijn.be/stops/300592"], ["https://data.delijn.be/stops/204045", "https://data.delijn.be/stops/205517"], ["https://data.delijn.be/stops/407582", "https://data.delijn.be/stops/408875"], ["https://data.delijn.be/stops/409275", "https://data.delijn.be/stops/409310"], ["https://data.delijn.be/stops/207766", "https://data.delijn.be/stops/207782"], ["https://data.delijn.be/stops/502310", "https://data.delijn.be/stops/505677"], ["https://data.delijn.be/stops/302462", "https://data.delijn.be/stops/302473"], ["https://data.delijn.be/stops/103073", "https://data.delijn.be/stops/106924"], ["https://data.delijn.be/stops/202689", "https://data.delijn.be/stops/203689"], ["https://data.delijn.be/stops/306770", "https://data.delijn.be/stops/306822"], ["https://data.delijn.be/stops/403969", "https://data.delijn.be/stops/403975"], ["https://data.delijn.be/stops/206281", "https://data.delijn.be/stops/207398"], ["https://data.delijn.be/stops/406464", "https://data.delijn.be/stops/406498"], ["https://data.delijn.be/stops/203219", "https://data.delijn.be/stops/205795"], ["https://data.delijn.be/stops/501542", "https://data.delijn.be/stops/505404"], ["https://data.delijn.be/stops/206725", "https://data.delijn.be/stops/206994"], ["https://data.delijn.be/stops/301618", "https://data.delijn.be/stops/301619"], ["https://data.delijn.be/stops/401435", "https://data.delijn.be/stops/410291"], ["https://data.delijn.be/stops/400880", "https://data.delijn.be/stops/409609"], ["https://data.delijn.be/stops/101387", "https://data.delijn.be/stops/101388"], ["https://data.delijn.be/stops/303463", "https://data.delijn.be/stops/303469"], ["https://data.delijn.be/stops/201690", "https://data.delijn.be/stops/201720"], ["https://data.delijn.be/stops/107787", "https://data.delijn.be/stops/207706"], ["https://data.delijn.be/stops/408859", "https://data.delijn.be/stops/408862"], ["https://data.delijn.be/stops/107161", "https://data.delijn.be/stops/107162"], ["https://data.delijn.be/stops/301934", "https://data.delijn.be/stops/302953"], ["https://data.delijn.be/stops/204107", "https://data.delijn.be/stops/204108"], ["https://data.delijn.be/stops/207021", "https://data.delijn.be/stops/207162"], ["https://data.delijn.be/stops/403956", "https://data.delijn.be/stops/407778"], ["https://data.delijn.be/stops/404012", "https://data.delijn.be/stops/404015"], ["https://data.delijn.be/stops/101838", "https://data.delijn.be/stops/101839"], ["https://data.delijn.be/stops/308770", "https://data.delijn.be/stops/308781"], ["https://data.delijn.be/stops/502063", "https://data.delijn.be/stops/505783"], ["https://data.delijn.be/stops/305260", "https://data.delijn.be/stops/305278"], ["https://data.delijn.be/stops/200391", "https://data.delijn.be/stops/201395"], ["https://data.delijn.be/stops/302124", "https://data.delijn.be/stops/304034"], ["https://data.delijn.be/stops/202541", "https://data.delijn.be/stops/203136"], ["https://data.delijn.be/stops/105324", "https://data.delijn.be/stops/105326"], ["https://data.delijn.be/stops/201070", "https://data.delijn.be/stops/201145"], ["https://data.delijn.be/stops/301349", "https://data.delijn.be/stops/306135"], ["https://data.delijn.be/stops/104497", "https://data.delijn.be/stops/107491"], ["https://data.delijn.be/stops/300290", "https://data.delijn.be/stops/300305"], ["https://data.delijn.be/stops/202389", "https://data.delijn.be/stops/203389"], ["https://data.delijn.be/stops/302595", "https://data.delijn.be/stops/302602"], ["https://data.delijn.be/stops/201415", "https://data.delijn.be/stops/201506"], ["https://data.delijn.be/stops/106697", "https://data.delijn.be/stops/109390"], ["https://data.delijn.be/stops/203677", "https://data.delijn.be/stops/203678"], ["https://data.delijn.be/stops/307495", "https://data.delijn.be/stops/307497"], ["https://data.delijn.be/stops/204350", "https://data.delijn.be/stops/205015"], ["https://data.delijn.be/stops/106333", "https://data.delijn.be/stops/106699"], ["https://data.delijn.be/stops/503624", "https://data.delijn.be/stops/508629"], ["https://data.delijn.be/stops/501633", "https://data.delijn.be/stops/506773"], ["https://data.delijn.be/stops/403052", "https://data.delijn.be/stops/403053"], ["https://data.delijn.be/stops/106196", "https://data.delijn.be/stops/109186"], ["https://data.delijn.be/stops/403407", "https://data.delijn.be/stops/403409"], ["https://data.delijn.be/stops/201931", "https://data.delijn.be/stops/207966"], ["https://data.delijn.be/stops/405711", "https://data.delijn.be/stops/410145"], ["https://data.delijn.be/stops/404765", "https://data.delijn.be/stops/404786"], ["https://data.delijn.be/stops/206368", "https://data.delijn.be/stops/206955"], ["https://data.delijn.be/stops/208345", "https://data.delijn.be/stops/209344"], ["https://data.delijn.be/stops/502439", "https://data.delijn.be/stops/502653"], ["https://data.delijn.be/stops/301501", "https://data.delijn.be/stops/308074"], ["https://data.delijn.be/stops/402202", "https://data.delijn.be/stops/402437"], ["https://data.delijn.be/stops/301834", "https://data.delijn.be/stops/308603"], ["https://data.delijn.be/stops/205605", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/105746", "https://data.delijn.be/stops/109828"], ["https://data.delijn.be/stops/409305", "https://data.delijn.be/stops/409331"], ["https://data.delijn.be/stops/305255", "https://data.delijn.be/stops/305273"], ["https://data.delijn.be/stops/504456", "https://data.delijn.be/stops/504828"], ["https://data.delijn.be/stops/109243", "https://data.delijn.be/stops/109257"], ["https://data.delijn.be/stops/401427", "https://data.delijn.be/stops/410290"], ["https://data.delijn.be/stops/502113", "https://data.delijn.be/stops/507113"], ["https://data.delijn.be/stops/505338", "https://data.delijn.be/stops/507327"], ["https://data.delijn.be/stops/202987", "https://data.delijn.be/stops/203034"], ["https://data.delijn.be/stops/301284", "https://data.delijn.be/stops/304692"], ["https://data.delijn.be/stops/400648", "https://data.delijn.be/stops/410264"], ["https://data.delijn.be/stops/504542", "https://data.delijn.be/stops/509345"], ["https://data.delijn.be/stops/306281", "https://data.delijn.be/stops/306282"], ["https://data.delijn.be/stops/304385", "https://data.delijn.be/stops/304388"], ["https://data.delijn.be/stops/204976", "https://data.delijn.be/stops/209246"], ["https://data.delijn.be/stops/503473", "https://data.delijn.be/stops/508473"], ["https://data.delijn.be/stops/405960", "https://data.delijn.be/stops/308169"], ["https://data.delijn.be/stops/208023", "https://data.delijn.be/stops/208024"], ["https://data.delijn.be/stops/303149", "https://data.delijn.be/stops/303150"], ["https://data.delijn.be/stops/504429", "https://data.delijn.be/stops/509429"], ["https://data.delijn.be/stops/505278", "https://data.delijn.be/stops/508015"], ["https://data.delijn.be/stops/104947", "https://data.delijn.be/stops/406504"], ["https://data.delijn.be/stops/101678", "https://data.delijn.be/stops/101679"], ["https://data.delijn.be/stops/107275", "https://data.delijn.be/stops/107280"], ["https://data.delijn.be/stops/102579", "https://data.delijn.be/stops/109111"], ["https://data.delijn.be/stops/101821", "https://data.delijn.be/stops/107023"], ["https://data.delijn.be/stops/200703", "https://data.delijn.be/stops/203429"], ["https://data.delijn.be/stops/501271", "https://data.delijn.be/stops/506271"], ["https://data.delijn.be/stops/307142", "https://data.delijn.be/stops/307251"], ["https://data.delijn.be/stops/206813", "https://data.delijn.be/stops/207813"], ["https://data.delijn.be/stops/301410", "https://data.delijn.be/stops/308410"], ["https://data.delijn.be/stops/403525", "https://data.delijn.be/stops/403630"], ["https://data.delijn.be/stops/502012", "https://data.delijn.be/stops/502345"], ["https://data.delijn.be/stops/505692", "https://data.delijn.be/stops/507623"], ["https://data.delijn.be/stops/304693", "https://data.delijn.be/stops/306249"], ["https://data.delijn.be/stops/502095", "https://data.delijn.be/stops/507167"], ["https://data.delijn.be/stops/503296", "https://data.delijn.be/stops/508323"], ["https://data.delijn.be/stops/303980", "https://data.delijn.be/stops/305220"], ["https://data.delijn.be/stops/108419", "https://data.delijn.be/stops/108421"], ["https://data.delijn.be/stops/101079", "https://data.delijn.be/stops/102718"], ["https://data.delijn.be/stops/406806", "https://data.delijn.be/stops/406807"], ["https://data.delijn.be/stops/201282", "https://data.delijn.be/stops/203192"], ["https://data.delijn.be/stops/404727", "https://data.delijn.be/stops/404834"], ["https://data.delijn.be/stops/300517", "https://data.delijn.be/stops/300527"], ["https://data.delijn.be/stops/307552", "https://data.delijn.be/stops/307553"], ["https://data.delijn.be/stops/106568", "https://data.delijn.be/stops/106569"], ["https://data.delijn.be/stops/202349", "https://data.delijn.be/stops/203349"], ["https://data.delijn.be/stops/207699", "https://data.delijn.be/stops/207748"], ["https://data.delijn.be/stops/502369", "https://data.delijn.be/stops/502370"], ["https://data.delijn.be/stops/103590", "https://data.delijn.be/stops/108918"], ["https://data.delijn.be/stops/109016", "https://data.delijn.be/stops/109017"], ["https://data.delijn.be/stops/308755", "https://data.delijn.be/stops/308756"], ["https://data.delijn.be/stops/203716", "https://data.delijn.be/stops/203717"], ["https://data.delijn.be/stops/303087", "https://data.delijn.be/stops/303088"], ["https://data.delijn.be/stops/504956", "https://data.delijn.be/stops/509979"], ["https://data.delijn.be/stops/407127", "https://data.delijn.be/stops/407277"], ["https://data.delijn.be/stops/502203", "https://data.delijn.be/stops/507203"], ["https://data.delijn.be/stops/109681", "https://data.delijn.be/stops/109686"], ["https://data.delijn.be/stops/406157", "https://data.delijn.be/stops/406229"], ["https://data.delijn.be/stops/202739", "https://data.delijn.be/stops/207431"], ["https://data.delijn.be/stops/502273", "https://data.delijn.be/stops/507518"], ["https://data.delijn.be/stops/405258", "https://data.delijn.be/stops/405264"], ["https://data.delijn.be/stops/501103", "https://data.delijn.be/stops/501368"], ["https://data.delijn.be/stops/303377", "https://data.delijn.be/stops/308715"], ["https://data.delijn.be/stops/301547", "https://data.delijn.be/stops/305133"], ["https://data.delijn.be/stops/206687", "https://data.delijn.be/stops/207722"], ["https://data.delijn.be/stops/507619", "https://data.delijn.be/stops/507740"], ["https://data.delijn.be/stops/302036", "https://data.delijn.be/stops/308755"], ["https://data.delijn.be/stops/403664", "https://data.delijn.be/stops/408198"], ["https://data.delijn.be/stops/104028", "https://data.delijn.be/stops/106990"], ["https://data.delijn.be/stops/305339", "https://data.delijn.be/stops/305353"], ["https://data.delijn.be/stops/401890", "https://data.delijn.be/stops/401892"], ["https://data.delijn.be/stops/101424", "https://data.delijn.be/stops/109723"], ["https://data.delijn.be/stops/505519", "https://data.delijn.be/stops/506156"], ["https://data.delijn.be/stops/206523", "https://data.delijn.be/stops/216008"], ["https://data.delijn.be/stops/504022", "https://data.delijn.be/stops/504985"], ["https://data.delijn.be/stops/504519", "https://data.delijn.be/stops/509519"], ["https://data.delijn.be/stops/206705", "https://data.delijn.be/stops/207972"], ["https://data.delijn.be/stops/402954", "https://data.delijn.be/stops/404901"], ["https://data.delijn.be/stops/503593", "https://data.delijn.be/stops/508593"], ["https://data.delijn.be/stops/208123", "https://data.delijn.be/stops/209123"], ["https://data.delijn.be/stops/502524", "https://data.delijn.be/stops/507808"], ["https://data.delijn.be/stops/402528", "https://data.delijn.be/stops/402539"], ["https://data.delijn.be/stops/203348", "https://data.delijn.be/stops/208443"], ["https://data.delijn.be/stops/301764", "https://data.delijn.be/stops/306878"], ["https://data.delijn.be/stops/405168", "https://data.delijn.be/stops/405169"], ["https://data.delijn.be/stops/204189", "https://data.delijn.be/stops/205188"], ["https://data.delijn.be/stops/209462", "https://data.delijn.be/stops/209463"], ["https://data.delijn.be/stops/305092", "https://data.delijn.be/stops/308100"], ["https://data.delijn.be/stops/406106", "https://data.delijn.be/stops/406107"], ["https://data.delijn.be/stops/501050", "https://data.delijn.be/stops/505030"], ["https://data.delijn.be/stops/401497", "https://data.delijn.be/stops/403885"], ["https://data.delijn.be/stops/408034", "https://data.delijn.be/stops/408062"], ["https://data.delijn.be/stops/200396", "https://data.delijn.be/stops/201389"], ["https://data.delijn.be/stops/402662", "https://data.delijn.be/stops/402734"], ["https://data.delijn.be/stops/502703", "https://data.delijn.be/stops/502807"], ["https://data.delijn.be/stops/101918", "https://data.delijn.be/stops/107001"], ["https://data.delijn.be/stops/107927", "https://data.delijn.be/stops/107928"], ["https://data.delijn.be/stops/200088", "https://data.delijn.be/stops/203961"], ["https://data.delijn.be/stops/108196", "https://data.delijn.be/stops/108202"], ["https://data.delijn.be/stops/108383", "https://data.delijn.be/stops/108384"], ["https://data.delijn.be/stops/407460", "https://data.delijn.be/stops/407466"], ["https://data.delijn.be/stops/204114", "https://data.delijn.be/stops/205690"], ["https://data.delijn.be/stops/407042", "https://data.delijn.be/stops/407043"], ["https://data.delijn.be/stops/503080", "https://data.delijn.be/stops/508701"], ["https://data.delijn.be/stops/406426", "https://data.delijn.be/stops/409396"], ["https://data.delijn.be/stops/203098", "https://data.delijn.be/stops/203259"], ["https://data.delijn.be/stops/401130", "https://data.delijn.be/stops/401132"], ["https://data.delijn.be/stops/104103", "https://data.delijn.be/stops/104107"], ["https://data.delijn.be/stops/202346", "https://data.delijn.be/stops/202737"], ["https://data.delijn.be/stops/208351", "https://data.delijn.be/stops/209351"], ["https://data.delijn.be/stops/204771", "https://data.delijn.be/stops/205771"], ["https://data.delijn.be/stops/200096", "https://data.delijn.be/stops/201062"], ["https://data.delijn.be/stops/406313", "https://data.delijn.be/stops/406407"], ["https://data.delijn.be/stops/201595", "https://data.delijn.be/stops/205922"], ["https://data.delijn.be/stops/208193", "https://data.delijn.be/stops/209147"], ["https://data.delijn.be/stops/301504", "https://data.delijn.be/stops/305668"], ["https://data.delijn.be/stops/200460", "https://data.delijn.be/stops/201460"], ["https://data.delijn.be/stops/302537", "https://data.delijn.be/stops/308714"], ["https://data.delijn.be/stops/403786", "https://data.delijn.be/stops/403787"], ["https://data.delijn.be/stops/208146", "https://data.delijn.be/stops/208147"], ["https://data.delijn.be/stops/308101", "https://data.delijn.be/stops/308102"], ["https://data.delijn.be/stops/206312", "https://data.delijn.be/stops/207312"], ["https://data.delijn.be/stops/108069", "https://data.delijn.be/stops/108458"], ["https://data.delijn.be/stops/204780", "https://data.delijn.be/stops/204785"], ["https://data.delijn.be/stops/204464", "https://data.delijn.be/stops/205464"], ["https://data.delijn.be/stops/504398", "https://data.delijn.be/stops/509550"], ["https://data.delijn.be/stops/209602", "https://data.delijn.be/stops/306367"], ["https://data.delijn.be/stops/501742", "https://data.delijn.be/stops/504492"], ["https://data.delijn.be/stops/501468", "https://data.delijn.be/stops/506198"], ["https://data.delijn.be/stops/202275", "https://data.delijn.be/stops/211023"], ["https://data.delijn.be/stops/402692", "https://data.delijn.be/stops/402875"], ["https://data.delijn.be/stops/502394", "https://data.delijn.be/stops/507394"], ["https://data.delijn.be/stops/503450", "https://data.delijn.be/stops/503975"], ["https://data.delijn.be/stops/302258", "https://data.delijn.be/stops/302270"], ["https://data.delijn.be/stops/107154", "https://data.delijn.be/stops/107187"], ["https://data.delijn.be/stops/508754", "https://data.delijn.be/stops/508762"], ["https://data.delijn.be/stops/405792", "https://data.delijn.be/stops/405867"], ["https://data.delijn.be/stops/301271", "https://data.delijn.be/stops/307034"], ["https://data.delijn.be/stops/200011", "https://data.delijn.be/stops/211021"], ["https://data.delijn.be/stops/506077", "https://data.delijn.be/stops/507731"], ["https://data.delijn.be/stops/409234", "https://data.delijn.be/stops/409239"], ["https://data.delijn.be/stops/504703", "https://data.delijn.be/stops/509595"], ["https://data.delijn.be/stops/301331", "https://data.delijn.be/stops/301387"], ["https://data.delijn.be/stops/301452", "https://data.delijn.be/stops/305874"], ["https://data.delijn.be/stops/407169", "https://data.delijn.be/stops/407489"], ["https://data.delijn.be/stops/400349", "https://data.delijn.be/stops/400383"], ["https://data.delijn.be/stops/403087", "https://data.delijn.be/stops/403684"], ["https://data.delijn.be/stops/102158", "https://data.delijn.be/stops/107429"], ["https://data.delijn.be/stops/204580", "https://data.delijn.be/stops/204596"], ["https://data.delijn.be/stops/503269", "https://data.delijn.be/stops/508269"], ["https://data.delijn.be/stops/501065", "https://data.delijn.be/stops/506133"], ["https://data.delijn.be/stops/104880", "https://data.delijn.be/stops/205528"], ["https://data.delijn.be/stops/402304", "https://data.delijn.be/stops/402306"], ["https://data.delijn.be/stops/105802", "https://data.delijn.be/stops/107499"], ["https://data.delijn.be/stops/303947", "https://data.delijn.be/stops/303956"], ["https://data.delijn.be/stops/300349", "https://data.delijn.be/stops/300367"], ["https://data.delijn.be/stops/102296", "https://data.delijn.be/stops/106581"], ["https://data.delijn.be/stops/205199", "https://data.delijn.be/stops/205205"], ["https://data.delijn.be/stops/504220", "https://data.delijn.be/stops/504633"], ["https://data.delijn.be/stops/107879", "https://data.delijn.be/stops/107883"], ["https://data.delijn.be/stops/202386", "https://data.delijn.be/stops/203386"], ["https://data.delijn.be/stops/206619", "https://data.delijn.be/stops/207619"], ["https://data.delijn.be/stops/502324", "https://data.delijn.be/stops/507319"], ["https://data.delijn.be/stops/202473", "https://data.delijn.be/stops/203473"], ["https://data.delijn.be/stops/200938", "https://data.delijn.be/stops/202041"], ["https://data.delijn.be/stops/308215", "https://data.delijn.be/stops/308247"], ["https://data.delijn.be/stops/404421", "https://data.delijn.be/stops/407245"], ["https://data.delijn.be/stops/305403", "https://data.delijn.be/stops/305422"], ["https://data.delijn.be/stops/108255", "https://data.delijn.be/stops/108730"], ["https://data.delijn.be/stops/109911", "https://data.delijn.be/stops/109913"], ["https://data.delijn.be/stops/201806", "https://data.delijn.be/stops/208326"], ["https://data.delijn.be/stops/400038", "https://data.delijn.be/stops/400175"], ["https://data.delijn.be/stops/206504", "https://data.delijn.be/stops/206505"], ["https://data.delijn.be/stops/201818", "https://data.delijn.be/stops/204987"], ["https://data.delijn.be/stops/105843", "https://data.delijn.be/stops/105844"], ["https://data.delijn.be/stops/403175", "https://data.delijn.be/stops/403397"], ["https://data.delijn.be/stops/202094", "https://data.delijn.be/stops/203094"], ["https://data.delijn.be/stops/106964", "https://data.delijn.be/stops/109508"], ["https://data.delijn.be/stops/409119", "https://data.delijn.be/stops/409215"], ["https://data.delijn.be/stops/503484", "https://data.delijn.be/stops/503489"], ["https://data.delijn.be/stops/505312", "https://data.delijn.be/stops/507917"], ["https://data.delijn.be/stops/406197", "https://data.delijn.be/stops/406818"], ["https://data.delijn.be/stops/102607", "https://data.delijn.be/stops/105529"], ["https://data.delijn.be/stops/303632", "https://data.delijn.be/stops/307241"], ["https://data.delijn.be/stops/206891", "https://data.delijn.be/stops/207892"], ["https://data.delijn.be/stops/106962", "https://data.delijn.be/stops/109510"], ["https://data.delijn.be/stops/401063", "https://data.delijn.be/stops/407103"], ["https://data.delijn.be/stops/502311", "https://data.delijn.be/stops/505678"], ["https://data.delijn.be/stops/206593", "https://data.delijn.be/stops/207593"], ["https://data.delijn.be/stops/107124", "https://data.delijn.be/stops/109122"], ["https://data.delijn.be/stops/401462", "https://data.delijn.be/stops/401463"], ["https://data.delijn.be/stops/300026", "https://data.delijn.be/stops/300050"], ["https://data.delijn.be/stops/503091", "https://data.delijn.be/stops/508091"], ["https://data.delijn.be/stops/402160", "https://data.delijn.be/stops/410041"], ["https://data.delijn.be/stops/408003", "https://data.delijn.be/stops/308199"], ["https://data.delijn.be/stops/303262", "https://data.delijn.be/stops/303889"], ["https://data.delijn.be/stops/503023", "https://data.delijn.be/stops/503679"], ["https://data.delijn.be/stops/400914", "https://data.delijn.be/stops/406876"], ["https://data.delijn.be/stops/402860", "https://data.delijn.be/stops/406578"], ["https://data.delijn.be/stops/202451", "https://data.delijn.be/stops/211108"], ["https://data.delijn.be/stops/408521", "https://data.delijn.be/stops/408795"], ["https://data.delijn.be/stops/307743", "https://data.delijn.be/stops/307745"], ["https://data.delijn.be/stops/401666", "https://data.delijn.be/stops/308278"], ["https://data.delijn.be/stops/408897", "https://data.delijn.be/stops/408900"], ["https://data.delijn.be/stops/202215", "https://data.delijn.be/stops/203215"], ["https://data.delijn.be/stops/206213", "https://data.delijn.be/stops/207818"], ["https://data.delijn.be/stops/402408", "https://data.delijn.be/stops/402412"], ["https://data.delijn.be/stops/102302", "https://data.delijn.be/stops/109508"], ["https://data.delijn.be/stops/503111", "https://data.delijn.be/stops/505084"], ["https://data.delijn.be/stops/301041", "https://data.delijn.be/stops/301057"], ["https://data.delijn.be/stops/106275", "https://data.delijn.be/stops/106276"], ["https://data.delijn.be/stops/210013", "https://data.delijn.be/stops/211012"], ["https://data.delijn.be/stops/102301", "https://data.delijn.be/stops/106967"], ["https://data.delijn.be/stops/206194", "https://data.delijn.be/stops/207809"], ["https://data.delijn.be/stops/302779", "https://data.delijn.be/stops/302784"], ["https://data.delijn.be/stops/206888", "https://data.delijn.be/stops/206892"], ["https://data.delijn.be/stops/106961", "https://data.delijn.be/stops/106964"], ["https://data.delijn.be/stops/408376", "https://data.delijn.be/stops/308208"], ["https://data.delijn.be/stops/200912", "https://data.delijn.be/stops/203259"], ["https://data.delijn.be/stops/403275", "https://data.delijn.be/stops/410336"], ["https://data.delijn.be/stops/101409", "https://data.delijn.be/stops/107289"], ["https://data.delijn.be/stops/208317", "https://data.delijn.be/stops/208318"], ["https://data.delijn.be/stops/108703", "https://data.delijn.be/stops/108704"], ["https://data.delijn.be/stops/106660", "https://data.delijn.be/stops/106662"], ["https://data.delijn.be/stops/101355", "https://data.delijn.be/stops/101360"], ["https://data.delijn.be/stops/304849", "https://data.delijn.be/stops/304864"], ["https://data.delijn.be/stops/208478", "https://data.delijn.be/stops/208480"], ["https://data.delijn.be/stops/401533", "https://data.delijn.be/stops/406014"], ["https://data.delijn.be/stops/101472", "https://data.delijn.be/stops/109612"], ["https://data.delijn.be/stops/404114", "https://data.delijn.be/stops/404117"], ["https://data.delijn.be/stops/202663", "https://data.delijn.be/stops/203278"], ["https://data.delijn.be/stops/508145", "https://data.delijn.be/stops/509885"], ["https://data.delijn.be/stops/410246", "https://data.delijn.be/stops/410251"], ["https://data.delijn.be/stops/206348", "https://data.delijn.be/stops/207349"], ["https://data.delijn.be/stops/200864", "https://data.delijn.be/stops/210017"], ["https://data.delijn.be/stops/204292", "https://data.delijn.be/stops/205761"], ["https://data.delijn.be/stops/400563", "https://data.delijn.be/stops/403853"], ["https://data.delijn.be/stops/402717", "https://data.delijn.be/stops/402721"], ["https://data.delijn.be/stops/403042", "https://data.delijn.be/stops/403091"], ["https://data.delijn.be/stops/102857", "https://data.delijn.be/stops/204625"], ["https://data.delijn.be/stops/303225", "https://data.delijn.be/stops/304660"], ["https://data.delijn.be/stops/402420", "https://data.delijn.be/stops/402421"], ["https://data.delijn.be/stops/308493", "https://data.delijn.be/stops/308495"], ["https://data.delijn.be/stops/102860", "https://data.delijn.be/stops/104575"], ["https://data.delijn.be/stops/508357", "https://data.delijn.be/stops/509939"], ["https://data.delijn.be/stops/106037", "https://data.delijn.be/stops/107735"], ["https://data.delijn.be/stops/400259", "https://data.delijn.be/stops/405557"], ["https://data.delijn.be/stops/101669", "https://data.delijn.be/stops/101671"], ["https://data.delijn.be/stops/409288", "https://data.delijn.be/stops/409289"], ["https://data.delijn.be/stops/401839", "https://data.delijn.be/stops/406031"], ["https://data.delijn.be/stops/303084", "https://data.delijn.be/stops/305159"], ["https://data.delijn.be/stops/305840", "https://data.delijn.be/stops/308620"], ["https://data.delijn.be/stops/404734", "https://data.delijn.be/stops/404750"], ["https://data.delijn.be/stops/206584", "https://data.delijn.be/stops/207927"], ["https://data.delijn.be/stops/201147", "https://data.delijn.be/stops/210119"], ["https://data.delijn.be/stops/304605", "https://data.delijn.be/stops/304660"], ["https://data.delijn.be/stops/206191", "https://data.delijn.be/stops/207222"], ["https://data.delijn.be/stops/301699", "https://data.delijn.be/stops/305876"], ["https://data.delijn.be/stops/102414", "https://data.delijn.be/stops/103895"], ["https://data.delijn.be/stops/201397", "https://data.delijn.be/stops/209702"], ["https://data.delijn.be/stops/201497", "https://data.delijn.be/stops/201954"], ["https://data.delijn.be/stops/304941", "https://data.delijn.be/stops/304991"], ["https://data.delijn.be/stops/501627", "https://data.delijn.be/stops/504847"], ["https://data.delijn.be/stops/502114", "https://data.delijn.be/stops/502122"], ["https://data.delijn.be/stops/301383", "https://data.delijn.be/stops/304797"], ["https://data.delijn.be/stops/401816", "https://data.delijn.be/stops/406073"], ["https://data.delijn.be/stops/205554", "https://data.delijn.be/stops/205619"], ["https://data.delijn.be/stops/206307", "https://data.delijn.be/stops/207390"], ["https://data.delijn.be/stops/103924", "https://data.delijn.be/stops/107246"], ["https://data.delijn.be/stops/200925", "https://data.delijn.be/stops/200942"], ["https://data.delijn.be/stops/403805", "https://data.delijn.be/stops/407230"], ["https://data.delijn.be/stops/503570", "https://data.delijn.be/stops/508559"], ["https://data.delijn.be/stops/302346", "https://data.delijn.be/stops/302355"], ["https://data.delijn.be/stops/200027", "https://data.delijn.be/stops/201027"], ["https://data.delijn.be/stops/407665", "https://data.delijn.be/stops/407679"], ["https://data.delijn.be/stops/205348", "https://data.delijn.be/stops/205667"], ["https://data.delijn.be/stops/206085", "https://data.delijn.be/stops/207085"], ["https://data.delijn.be/stops/201304", "https://data.delijn.be/stops/201600"], ["https://data.delijn.be/stops/207761", "https://data.delijn.be/stops/209190"], ["https://data.delijn.be/stops/301600", "https://data.delijn.be/stops/305492"], ["https://data.delijn.be/stops/503039", "https://data.delijn.be/stops/503043"], ["https://data.delijn.be/stops/403819", "https://data.delijn.be/stops/403877"], ["https://data.delijn.be/stops/202943", "https://data.delijn.be/stops/203943"], ["https://data.delijn.be/stops/104289", "https://data.delijn.be/stops/105859"], ["https://data.delijn.be/stops/205099", "https://data.delijn.be/stops/205896"], ["https://data.delijn.be/stops/305379", "https://data.delijn.be/stops/305417"], ["https://data.delijn.be/stops/101221", "https://data.delijn.be/stops/107826"], ["https://data.delijn.be/stops/402659", "https://data.delijn.be/stops/407298"], ["https://data.delijn.be/stops/304443", "https://data.delijn.be/stops/304462"], ["https://data.delijn.be/stops/206461", "https://data.delijn.be/stops/206861"], ["https://data.delijn.be/stops/401930", "https://data.delijn.be/stops/401958"], ["https://data.delijn.be/stops/103046", "https://data.delijn.be/stops/107730"], ["https://data.delijn.be/stops/503065", "https://data.delijn.be/stops/509948"], ["https://data.delijn.be/stops/406043", "https://data.delijn.be/stops/406062"], ["https://data.delijn.be/stops/103743", "https://data.delijn.be/stops/105635"], ["https://data.delijn.be/stops/302545", "https://data.delijn.be/stops/305855"], ["https://data.delijn.be/stops/201718", "https://data.delijn.be/stops/203375"], ["https://data.delijn.be/stops/102247", "https://data.delijn.be/stops/103259"], ["https://data.delijn.be/stops/409052", "https://data.delijn.be/stops/409098"], ["https://data.delijn.be/stops/105591", "https://data.delijn.be/stops/105593"], ["https://data.delijn.be/stops/304822", "https://data.delijn.be/stops/304826"], ["https://data.delijn.be/stops/109194", "https://data.delijn.be/stops/109196"], ["https://data.delijn.be/stops/407037", "https://data.delijn.be/stops/408000"], ["https://data.delijn.be/stops/509290", "https://data.delijn.be/stops/509532"], ["https://data.delijn.be/stops/407021", "https://data.delijn.be/stops/308741"], ["https://data.delijn.be/stops/106883", "https://data.delijn.be/stops/109750"], ["https://data.delijn.be/stops/200813", "https://data.delijn.be/stops/200882"], ["https://data.delijn.be/stops/404360", "https://data.delijn.be/stops/404366"], ["https://data.delijn.be/stops/503680", "https://data.delijn.be/stops/508680"], ["https://data.delijn.be/stops/304471", "https://data.delijn.be/stops/304673"], ["https://data.delijn.be/stops/306695", "https://data.delijn.be/stops/308782"], ["https://data.delijn.be/stops/502746", "https://data.delijn.be/stops/505070"], ["https://data.delijn.be/stops/408828", "https://data.delijn.be/stops/408830"], ["https://data.delijn.be/stops/403292", "https://data.delijn.be/stops/403406"], ["https://data.delijn.be/stops/504382", "https://data.delijn.be/stops/509382"], ["https://data.delijn.be/stops/409361", "https://data.delijn.be/stops/409441"], ["https://data.delijn.be/stops/301022", "https://data.delijn.be/stops/301048"], ["https://data.delijn.be/stops/103284", "https://data.delijn.be/stops/106128"], ["https://data.delijn.be/stops/301459", "https://data.delijn.be/stops/305657"], ["https://data.delijn.be/stops/307041", "https://data.delijn.be/stops/307042"], ["https://data.delijn.be/stops/300645", "https://data.delijn.be/stops/306747"], ["https://data.delijn.be/stops/208243", "https://data.delijn.be/stops/208244"], ["https://data.delijn.be/stops/301328", "https://data.delijn.be/stops/301329"], ["https://data.delijn.be/stops/409309", "https://data.delijn.be/stops/410286"], ["https://data.delijn.be/stops/502252", "https://data.delijn.be/stops/507250"], ["https://data.delijn.be/stops/201327", "https://data.delijn.be/stops/202201"], ["https://data.delijn.be/stops/101186", "https://data.delijn.be/stops/103763"], ["https://data.delijn.be/stops/202636", "https://data.delijn.be/stops/203636"], ["https://data.delijn.be/stops/401676", "https://data.delijn.be/stops/308168"], ["https://data.delijn.be/stops/104369", "https://data.delijn.be/stops/204604"], ["https://data.delijn.be/stops/406523", "https://data.delijn.be/stops/406629"], ["https://data.delijn.be/stops/207667", "https://data.delijn.be/stops/208063"], ["https://data.delijn.be/stops/401967", "https://data.delijn.be/stops/409160"], ["https://data.delijn.be/stops/504612", "https://data.delijn.be/stops/505422"], ["https://data.delijn.be/stops/206026", "https://data.delijn.be/stops/207026"], ["https://data.delijn.be/stops/408602", "https://data.delijn.be/stops/408769"], ["https://data.delijn.be/stops/202664", "https://data.delijn.be/stops/203664"], ["https://data.delijn.be/stops/200103", "https://data.delijn.be/stops/201103"], ["https://data.delijn.be/stops/208265", "https://data.delijn.be/stops/209265"], ["https://data.delijn.be/stops/506103", "https://data.delijn.be/stops/506225"], ["https://data.delijn.be/stops/400809", "https://data.delijn.be/stops/409621"], ["https://data.delijn.be/stops/208467", "https://data.delijn.be/stops/209467"], ["https://data.delijn.be/stops/403957", "https://data.delijn.be/stops/407775"], ["https://data.delijn.be/stops/304372", "https://data.delijn.be/stops/306870"], ["https://data.delijn.be/stops/304916", "https://data.delijn.be/stops/308121"], ["https://data.delijn.be/stops/204771", "https://data.delijn.be/stops/205170"], ["https://data.delijn.be/stops/109138", "https://data.delijn.be/stops/109139"], ["https://data.delijn.be/stops/206993", "https://data.delijn.be/stops/207607"], ["https://data.delijn.be/stops/302977", "https://data.delijn.be/stops/303004"], ["https://data.delijn.be/stops/102897", "https://data.delijn.be/stops/109002"], ["https://data.delijn.be/stops/405628", "https://data.delijn.be/stops/407381"], ["https://data.delijn.be/stops/200227", "https://data.delijn.be/stops/201140"], ["https://data.delijn.be/stops/108922", "https://data.delijn.be/stops/108924"], ["https://data.delijn.be/stops/200087", "https://data.delijn.be/stops/201087"], ["https://data.delijn.be/stops/101865", "https://data.delijn.be/stops/105455"], ["https://data.delijn.be/stops/106161", "https://data.delijn.be/stops/106162"], ["https://data.delijn.be/stops/308489", "https://data.delijn.be/stops/308523"], ["https://data.delijn.be/stops/401996", "https://data.delijn.be/stops/401997"], ["https://data.delijn.be/stops/104947", "https://data.delijn.be/stops/401956"], ["https://data.delijn.be/stops/505933", "https://data.delijn.be/stops/507916"], ["https://data.delijn.be/stops/502435", "https://data.delijn.be/stops/502721"], ["https://data.delijn.be/stops/502033", "https://data.delijn.be/stops/507033"], ["https://data.delijn.be/stops/404766", "https://data.delijn.be/stops/404791"], ["https://data.delijn.be/stops/206469", "https://data.delijn.be/stops/206510"], ["https://data.delijn.be/stops/300880", "https://data.delijn.be/stops/301812"], ["https://data.delijn.be/stops/502292", "https://data.delijn.be/stops/507292"], ["https://data.delijn.be/stops/204768", "https://data.delijn.be/stops/205399"], ["https://data.delijn.be/stops/108654", "https://data.delijn.be/stops/108657"], ["https://data.delijn.be/stops/509395", "https://data.delijn.be/stops/509397"], ["https://data.delijn.be/stops/101083", "https://data.delijn.be/stops/101086"], ["https://data.delijn.be/stops/303358", "https://data.delijn.be/stops/307136"], ["https://data.delijn.be/stops/406792", "https://data.delijn.be/stops/406795"], ["https://data.delijn.be/stops/503496", "https://data.delijn.be/stops/509451"], ["https://data.delijn.be/stops/502447", "https://data.delijn.be/stops/507662"], ["https://data.delijn.be/stops/107129", "https://data.delijn.be/stops/107132"], ["https://data.delijn.be/stops/202208", "https://data.delijn.be/stops/203504"], ["https://data.delijn.be/stops/406274", "https://data.delijn.be/stops/406275"], ["https://data.delijn.be/stops/204590", "https://data.delijn.be/stops/204591"], ["https://data.delijn.be/stops/501416", "https://data.delijn.be/stops/506415"], ["https://data.delijn.be/stops/206644", "https://data.delijn.be/stops/207644"], ["https://data.delijn.be/stops/106520", "https://data.delijn.be/stops/106522"], ["https://data.delijn.be/stops/401766", "https://data.delijn.be/stops/401824"], ["https://data.delijn.be/stops/105001", "https://data.delijn.be/stops/106837"], ["https://data.delijn.be/stops/303396", "https://data.delijn.be/stops/308716"], ["https://data.delijn.be/stops/507555", "https://data.delijn.be/stops/509892"], ["https://data.delijn.be/stops/503166", "https://data.delijn.be/stops/503946"], ["https://data.delijn.be/stops/105170", "https://data.delijn.be/stops/107215"], ["https://data.delijn.be/stops/503720", "https://data.delijn.be/stops/508766"], ["https://data.delijn.be/stops/108366", "https://data.delijn.be/stops/108368"], ["https://data.delijn.be/stops/200739", "https://data.delijn.be/stops/202601"], ["https://data.delijn.be/stops/200820", "https://data.delijn.be/stops/200854"], ["https://data.delijn.be/stops/109572", "https://data.delijn.be/stops/109576"], ["https://data.delijn.be/stops/200325", "https://data.delijn.be/stops/200543"], ["https://data.delijn.be/stops/406457", "https://data.delijn.be/stops/406479"], ["https://data.delijn.be/stops/200647", "https://data.delijn.be/stops/201972"], ["https://data.delijn.be/stops/507698", "https://data.delijn.be/stops/508914"], ["https://data.delijn.be/stops/207666", "https://data.delijn.be/stops/209055"], ["https://data.delijn.be/stops/203831", "https://data.delijn.be/stops/203832"], ["https://data.delijn.be/stops/304040", "https://data.delijn.be/stops/304041"], ["https://data.delijn.be/stops/503082", "https://data.delijn.be/stops/508079"], ["https://data.delijn.be/stops/107556", "https://data.delijn.be/stops/109380"], ["https://data.delijn.be/stops/307732", "https://data.delijn.be/stops/307812"], ["https://data.delijn.be/stops/302670", "https://data.delijn.be/stops/302673"], ["https://data.delijn.be/stops/206900", "https://data.delijn.be/stops/207423"], ["https://data.delijn.be/stops/400856", "https://data.delijn.be/stops/403572"], ["https://data.delijn.be/stops/102224", "https://data.delijn.be/stops/102227"], ["https://data.delijn.be/stops/108625", "https://data.delijn.be/stops/108630"], ["https://data.delijn.be/stops/200778", "https://data.delijn.be/stops/203235"], ["https://data.delijn.be/stops/305116", "https://data.delijn.be/stops/305120"], ["https://data.delijn.be/stops/402309", "https://data.delijn.be/stops/402485"], ["https://data.delijn.be/stops/307922", "https://data.delijn.be/stops/308854"], ["https://data.delijn.be/stops/504065", "https://data.delijn.be/stops/505109"], ["https://data.delijn.be/stops/105533", "https://data.delijn.be/stops/106731"], ["https://data.delijn.be/stops/503296", "https://data.delijn.be/stops/505239"], ["https://data.delijn.be/stops/303133", "https://data.delijn.be/stops/306749"], ["https://data.delijn.be/stops/305115", "https://data.delijn.be/stops/305128"], ["https://data.delijn.be/stops/201924", "https://data.delijn.be/stops/207591"], ["https://data.delijn.be/stops/203493", "https://data.delijn.be/stops/203607"], ["https://data.delijn.be/stops/106099", "https://data.delijn.be/stops/106148"], ["https://data.delijn.be/stops/108074", "https://data.delijn.be/stops/108841"], ["https://data.delijn.be/stops/200272", "https://data.delijn.be/stops/202002"], ["https://data.delijn.be/stops/204670", "https://data.delijn.be/stops/205259"], ["https://data.delijn.be/stops/107587", "https://data.delijn.be/stops/109430"], ["https://data.delijn.be/stops/301426", "https://data.delijn.be/stops/308935"], ["https://data.delijn.be/stops/406740", "https://data.delijn.be/stops/406742"], ["https://data.delijn.be/stops/404886", "https://data.delijn.be/stops/408647"], ["https://data.delijn.be/stops/406694", "https://data.delijn.be/stops/409762"], ["https://data.delijn.be/stops/204905", "https://data.delijn.be/stops/205242"], ["https://data.delijn.be/stops/302969", "https://data.delijn.be/stops/307096"], ["https://data.delijn.be/stops/200019", "https://data.delijn.be/stops/201021"], ["https://data.delijn.be/stops/402706", "https://data.delijn.be/stops/306021"], ["https://data.delijn.be/stops/504544", "https://data.delijn.be/stops/509551"], ["https://data.delijn.be/stops/104691", "https://data.delijn.be/stops/108131"], ["https://data.delijn.be/stops/101086", "https://data.delijn.be/stops/104459"], ["https://data.delijn.be/stops/304106", "https://data.delijn.be/stops/307050"], ["https://data.delijn.be/stops/204041", "https://data.delijn.be/stops/205041"], ["https://data.delijn.be/stops/304885", "https://data.delijn.be/stops/306160"], ["https://data.delijn.be/stops/105885", "https://data.delijn.be/stops/108135"], ["https://data.delijn.be/stops/208012", "https://data.delijn.be/stops/209010"], ["https://data.delijn.be/stops/503178", "https://data.delijn.be/stops/508265"], ["https://data.delijn.be/stops/204432", "https://data.delijn.be/stops/205767"], ["https://data.delijn.be/stops/307981", "https://data.delijn.be/stops/307983"], ["https://data.delijn.be/stops/300324", "https://data.delijn.be/stops/300325"], ["https://data.delijn.be/stops/105334", "https://data.delijn.be/stops/105336"], ["https://data.delijn.be/stops/504056", "https://data.delijn.be/stops/509055"], ["https://data.delijn.be/stops/103496", "https://data.delijn.be/stops/103501"], ["https://data.delijn.be/stops/202467", "https://data.delijn.be/stops/202468"], ["https://data.delijn.be/stops/504368", "https://data.delijn.be/stops/505131"], ["https://data.delijn.be/stops/101602", "https://data.delijn.be/stops/106028"], ["https://data.delijn.be/stops/105608", "https://data.delijn.be/stops/109737"], ["https://data.delijn.be/stops/403456", "https://data.delijn.be/stops/403457"], ["https://data.delijn.be/stops/502933", "https://data.delijn.be/stops/507014"], ["https://data.delijn.be/stops/504367", "https://data.delijn.be/stops/509366"], ["https://data.delijn.be/stops/503431", "https://data.delijn.be/stops/508420"], ["https://data.delijn.be/stops/300415", "https://data.delijn.be/stops/300438"], ["https://data.delijn.be/stops/201111", "https://data.delijn.be/stops/203647"], ["https://data.delijn.be/stops/105061", "https://data.delijn.be/stops/109516"], ["https://data.delijn.be/stops/208630", "https://data.delijn.be/stops/209631"], ["https://data.delijn.be/stops/204202", "https://data.delijn.be/stops/204203"], ["https://data.delijn.be/stops/405319", "https://data.delijn.be/stops/405375"], ["https://data.delijn.be/stops/508287", "https://data.delijn.be/stops/508606"], ["https://data.delijn.be/stops/206333", "https://data.delijn.be/stops/207333"], ["https://data.delijn.be/stops/404176", "https://data.delijn.be/stops/404177"], ["https://data.delijn.be/stops/504657", "https://data.delijn.be/stops/505916"], ["https://data.delijn.be/stops/500195", "https://data.delijn.be/stops/505047"], ["https://data.delijn.be/stops/207670", "https://data.delijn.be/stops/209481"], ["https://data.delijn.be/stops/304051", "https://data.delijn.be/stops/304115"], ["https://data.delijn.be/stops/301424", "https://data.delijn.be/stops/301434"], ["https://data.delijn.be/stops/200631", "https://data.delijn.be/stops/203850"], ["https://data.delijn.be/stops/204150", "https://data.delijn.be/stops/204151"], ["https://data.delijn.be/stops/400504", "https://data.delijn.be/stops/400517"], ["https://data.delijn.be/stops/102851", "https://data.delijn.be/stops/106775"], ["https://data.delijn.be/stops/308263", "https://data.delijn.be/stops/308264"], ["https://data.delijn.be/stops/405701", "https://data.delijn.be/stops/405705"], ["https://data.delijn.be/stops/307207", "https://data.delijn.be/stops/307210"], ["https://data.delijn.be/stops/201906", "https://data.delijn.be/stops/202517"], ["https://data.delijn.be/stops/206001", "https://data.delijn.be/stops/206521"], ["https://data.delijn.be/stops/502587", "https://data.delijn.be/stops/507574"], ["https://data.delijn.be/stops/400218", "https://data.delijn.be/stops/400219"], ["https://data.delijn.be/stops/305744", "https://data.delijn.be/stops/305745"], ["https://data.delijn.be/stops/204304", "https://data.delijn.be/stops/204552"], ["https://data.delijn.be/stops/405091", "https://data.delijn.be/stops/405092"], ["https://data.delijn.be/stops/304342", "https://data.delijn.be/stops/306882"], ["https://data.delijn.be/stops/403967", "https://data.delijn.be/stops/403974"], ["https://data.delijn.be/stops/206612", "https://data.delijn.be/stops/207612"], ["https://data.delijn.be/stops/301635", "https://data.delijn.be/stops/301638"], ["https://data.delijn.be/stops/400053", "https://data.delijn.be/stops/409158"], ["https://data.delijn.be/stops/404914", "https://data.delijn.be/stops/404926"], ["https://data.delijn.be/stops/405132", "https://data.delijn.be/stops/407109"], ["https://data.delijn.be/stops/101360", "https://data.delijn.be/stops/106332"], ["https://data.delijn.be/stops/403161", "https://data.delijn.be/stops/403407"], ["https://data.delijn.be/stops/502362", "https://data.delijn.be/stops/507362"], ["https://data.delijn.be/stops/301585", "https://data.delijn.be/stops/301590"], ["https://data.delijn.be/stops/206266", "https://data.delijn.be/stops/209080"], ["https://data.delijn.be/stops/404838", "https://data.delijn.be/stops/409348"], ["https://data.delijn.be/stops/304697", "https://data.delijn.be/stops/307155"], ["https://data.delijn.be/stops/103152", "https://data.delijn.be/stops/103272"], ["https://data.delijn.be/stops/501680", "https://data.delijn.be/stops/505363"], ["https://data.delijn.be/stops/105198", "https://data.delijn.be/stops/105199"], ["https://data.delijn.be/stops/201090", "https://data.delijn.be/stops/203888"], ["https://data.delijn.be/stops/102632", "https://data.delijn.be/stops/107048"], ["https://data.delijn.be/stops/204705", "https://data.delijn.be/stops/205706"], ["https://data.delijn.be/stops/303764", "https://data.delijn.be/stops/303765"], ["https://data.delijn.be/stops/404772", "https://data.delijn.be/stops/410051"], ["https://data.delijn.be/stops/306367", "https://data.delijn.be/stops/307591"], ["https://data.delijn.be/stops/203748", "https://data.delijn.be/stops/207424"], ["https://data.delijn.be/stops/105978", "https://data.delijn.be/stops/105981"], ["https://data.delijn.be/stops/204260", "https://data.delijn.be/stops/205476"], ["https://data.delijn.be/stops/303460", "https://data.delijn.be/stops/303487"], ["https://data.delijn.be/stops/307200", "https://data.delijn.be/stops/307599"], ["https://data.delijn.be/stops/406170", "https://data.delijn.be/stops/406452"], ["https://data.delijn.be/stops/406692", "https://data.delijn.be/stops/406693"], ["https://data.delijn.be/stops/504021", "https://data.delijn.be/stops/504838"], ["https://data.delijn.be/stops/407916", "https://data.delijn.be/stops/306061"], ["https://data.delijn.be/stops/504054", "https://data.delijn.be/stops/504057"], ["https://data.delijn.be/stops/204243", "https://data.delijn.be/stops/205458"], ["https://data.delijn.be/stops/201342", "https://data.delijn.be/stops/201343"], ["https://data.delijn.be/stops/400915", "https://data.delijn.be/stops/400965"], ["https://data.delijn.be/stops/106058", "https://data.delijn.be/stops/106059"], ["https://data.delijn.be/stops/208462", "https://data.delijn.be/stops/208463"], ["https://data.delijn.be/stops/503687", "https://data.delijn.be/stops/508685"], ["https://data.delijn.be/stops/204082", "https://data.delijn.be/stops/205082"], ["https://data.delijn.be/stops/103251", "https://data.delijn.be/stops/103252"], ["https://data.delijn.be/stops/504575", "https://data.delijn.be/stops/509575"], ["https://data.delijn.be/stops/405885", "https://data.delijn.be/stops/409688"], ["https://data.delijn.be/stops/201573", "https://data.delijn.be/stops/202399"], ["https://data.delijn.be/stops/301089", "https://data.delijn.be/stops/308871"], ["https://data.delijn.be/stops/400330", "https://data.delijn.be/stops/400356"], ["https://data.delijn.be/stops/103056", "https://data.delijn.be/stops/103644"], ["https://data.delijn.be/stops/304383", "https://data.delijn.be/stops/304389"], ["https://data.delijn.be/stops/200265", "https://data.delijn.be/stops/201434"], ["https://data.delijn.be/stops/107459", "https://data.delijn.be/stops/109195"], ["https://data.delijn.be/stops/101200", "https://data.delijn.be/stops/102590"], ["https://data.delijn.be/stops/107564", "https://data.delijn.be/stops/109434"], ["https://data.delijn.be/stops/401012", "https://data.delijn.be/stops/401013"], ["https://data.delijn.be/stops/306820", "https://data.delijn.be/stops/306821"], ["https://data.delijn.be/stops/301190", "https://data.delijn.be/stops/301252"], ["https://data.delijn.be/stops/304995", "https://data.delijn.be/stops/305024"], ["https://data.delijn.be/stops/410117", "https://data.delijn.be/stops/410327"], ["https://data.delijn.be/stops/306387", "https://data.delijn.be/stops/307198"], ["https://data.delijn.be/stops/101414", "https://data.delijn.be/stops/101428"], ["https://data.delijn.be/stops/301014", "https://data.delijn.be/stops/301019"], ["https://data.delijn.be/stops/109077", "https://data.delijn.be/stops/109078"], ["https://data.delijn.be/stops/303354", "https://data.delijn.be/stops/303355"], ["https://data.delijn.be/stops/106117", "https://data.delijn.be/stops/106119"], ["https://data.delijn.be/stops/501054", "https://data.delijn.be/stops/507646"], ["https://data.delijn.be/stops/202303", "https://data.delijn.be/stops/203303"], ["https://data.delijn.be/stops/502494", "https://data.delijn.be/stops/507490"], ["https://data.delijn.be/stops/200755", "https://data.delijn.be/stops/505278"], ["https://data.delijn.be/stops/300552", "https://data.delijn.be/stops/300562"], ["https://data.delijn.be/stops/200236", "https://data.delijn.be/stops/205924"], ["https://data.delijn.be/stops/103471", "https://data.delijn.be/stops/103571"], ["https://data.delijn.be/stops/301098", "https://data.delijn.be/stops/306065"], ["https://data.delijn.be/stops/108029", "https://data.delijn.be/stops/108032"], ["https://data.delijn.be/stops/201746", "https://data.delijn.be/stops/208253"], ["https://data.delijn.be/stops/206426", "https://data.delijn.be/stops/207426"], ["https://data.delijn.be/stops/304359", "https://data.delijn.be/stops/304360"], ["https://data.delijn.be/stops/504424", "https://data.delijn.be/stops/509424"], ["https://data.delijn.be/stops/106656", "https://data.delijn.be/stops/106658"], ["https://data.delijn.be/stops/307646", "https://data.delijn.be/stops/307648"], ["https://data.delijn.be/stops/201124", "https://data.delijn.be/stops/509781"], ["https://data.delijn.be/stops/400195", "https://data.delijn.be/stops/408186"], ["https://data.delijn.be/stops/104847", "https://data.delijn.be/stops/106794"], ["https://data.delijn.be/stops/208634", "https://data.delijn.be/stops/209635"], ["https://data.delijn.be/stops/301607", "https://data.delijn.be/stops/307675"], ["https://data.delijn.be/stops/204134", "https://data.delijn.be/stops/205133"], ["https://data.delijn.be/stops/302620", "https://data.delijn.be/stops/303261"], ["https://data.delijn.be/stops/402337", "https://data.delijn.be/stops/410078"], ["https://data.delijn.be/stops/108009", "https://data.delijn.be/stops/109330"], ["https://data.delijn.be/stops/402818", "https://data.delijn.be/stops/402819"], ["https://data.delijn.be/stops/207341", "https://data.delijn.be/stops/207342"], ["https://data.delijn.be/stops/402377", "https://data.delijn.be/stops/410098"], ["https://data.delijn.be/stops/509386", "https://data.delijn.be/stops/509391"], ["https://data.delijn.be/stops/104953", "https://data.delijn.be/stops/109721"], ["https://data.delijn.be/stops/207435", "https://data.delijn.be/stops/209691"], ["https://data.delijn.be/stops/502354", "https://data.delijn.be/stops/504879"], ["https://data.delijn.be/stops/303676", "https://data.delijn.be/stops/306023"], ["https://data.delijn.be/stops/502151", "https://data.delijn.be/stops/507165"], ["https://data.delijn.be/stops/103609", "https://data.delijn.be/stops/103614"], ["https://data.delijn.be/stops/300120", "https://data.delijn.be/stops/300133"], ["https://data.delijn.be/stops/206673", "https://data.delijn.be/stops/208172"], ["https://data.delijn.be/stops/302710", "https://data.delijn.be/stops/302721"], ["https://data.delijn.be/stops/201897", "https://data.delijn.be/stops/203150"], ["https://data.delijn.be/stops/505101", "https://data.delijn.be/stops/505916"], ["https://data.delijn.be/stops/301056", "https://data.delijn.be/stops/303832"], ["https://data.delijn.be/stops/103286", "https://data.delijn.be/stops/106124"], ["https://data.delijn.be/stops/201719", "https://data.delijn.be/stops/203994"], ["https://data.delijn.be/stops/108565", "https://data.delijn.be/stops/205528"], ["https://data.delijn.be/stops/206881", "https://data.delijn.be/stops/207738"], ["https://data.delijn.be/stops/206572", "https://data.delijn.be/stops/207839"], ["https://data.delijn.be/stops/202572", "https://data.delijn.be/stops/211033"], ["https://data.delijn.be/stops/106607", "https://data.delijn.be/stops/107123"], ["https://data.delijn.be/stops/104280", "https://data.delijn.be/stops/104940"], ["https://data.delijn.be/stops/203109", "https://data.delijn.be/stops/204079"], ["https://data.delijn.be/stops/502365", "https://data.delijn.be/stops/503979"], ["https://data.delijn.be/stops/503928", "https://data.delijn.be/stops/508918"], ["https://data.delijn.be/stops/206866", "https://data.delijn.be/stops/208747"], ["https://data.delijn.be/stops/401749", "https://data.delijn.be/stops/401751"], ["https://data.delijn.be/stops/208475", "https://data.delijn.be/stops/209474"], ["https://data.delijn.be/stops/200249", "https://data.delijn.be/stops/201522"], ["https://data.delijn.be/stops/303415", "https://data.delijn.be/stops/303428"], ["https://data.delijn.be/stops/407959", "https://data.delijn.be/stops/408014"], ["https://data.delijn.be/stops/302133", "https://data.delijn.be/stops/307082"], ["https://data.delijn.be/stops/300476", "https://data.delijn.be/stops/305032"], ["https://data.delijn.be/stops/405179", "https://data.delijn.be/stops/409375"], ["https://data.delijn.be/stops/405903", "https://data.delijn.be/stops/405970"], ["https://data.delijn.be/stops/406940", "https://data.delijn.be/stops/409483"], ["https://data.delijn.be/stops/102580", "https://data.delijn.be/stops/109110"], ["https://data.delijn.be/stops/303983", "https://data.delijn.be/stops/304297"], ["https://data.delijn.be/stops/203963", "https://data.delijn.be/stops/204164"], ["https://data.delijn.be/stops/200540", "https://data.delijn.be/stops/201527"], ["https://data.delijn.be/stops/400378", "https://data.delijn.be/stops/406774"], ["https://data.delijn.be/stops/400808", "https://data.delijn.be/stops/400809"], ["https://data.delijn.be/stops/301528", "https://data.delijn.be/stops/301556"], ["https://data.delijn.be/stops/301541", "https://data.delijn.be/stops/301543"], ["https://data.delijn.be/stops/200955", "https://data.delijn.be/stops/201948"], ["https://data.delijn.be/stops/105388", "https://data.delijn.be/stops/105389"], ["https://data.delijn.be/stops/301378", "https://data.delijn.be/stops/306138"], ["https://data.delijn.be/stops/403371", "https://data.delijn.be/stops/410281"], ["https://data.delijn.be/stops/109579", "https://data.delijn.be/stops/109583"], ["https://data.delijn.be/stops/403141", "https://data.delijn.be/stops/410010"], ["https://data.delijn.be/stops/403831", "https://data.delijn.be/stops/410116"], ["https://data.delijn.be/stops/103486", "https://data.delijn.be/stops/109143"], ["https://data.delijn.be/stops/101365", "https://data.delijn.be/stops/102585"], ["https://data.delijn.be/stops/102245", "https://data.delijn.be/stops/105809"], ["https://data.delijn.be/stops/301592", "https://data.delijn.be/stops/305046"], ["https://data.delijn.be/stops/107481", "https://data.delijn.be/stops/107482"], ["https://data.delijn.be/stops/204983", "https://data.delijn.be/stops/206815"], ["https://data.delijn.be/stops/401484", "https://data.delijn.be/stops/403895"], ["https://data.delijn.be/stops/501768", "https://data.delijn.be/stops/505317"], ["https://data.delijn.be/stops/302310", "https://data.delijn.be/stops/302311"], ["https://data.delijn.be/stops/401648", "https://data.delijn.be/stops/408798"], ["https://data.delijn.be/stops/404440", "https://data.delijn.be/stops/404465"], ["https://data.delijn.be/stops/202921", "https://data.delijn.be/stops/203854"], ["https://data.delijn.be/stops/508252", "https://data.delijn.be/stops/508430"], ["https://data.delijn.be/stops/204986", "https://data.delijn.be/stops/209390"], ["https://data.delijn.be/stops/103678", "https://data.delijn.be/stops/107953"], ["https://data.delijn.be/stops/305553", "https://data.delijn.be/stops/305554"], ["https://data.delijn.be/stops/302794", "https://data.delijn.be/stops/306560"], ["https://data.delijn.be/stops/409300", "https://data.delijn.be/stops/409311"], ["https://data.delijn.be/stops/105367", "https://data.delijn.be/stops/105394"], ["https://data.delijn.be/stops/501218", "https://data.delijn.be/stops/506422"], ["https://data.delijn.be/stops/109136", "https://data.delijn.be/stops/109139"], ["https://data.delijn.be/stops/400032", "https://data.delijn.be/stops/400316"], ["https://data.delijn.be/stops/502533", "https://data.delijn.be/stops/502534"], ["https://data.delijn.be/stops/503297", "https://data.delijn.be/stops/505946"], ["https://data.delijn.be/stops/202428", "https://data.delijn.be/stops/211018"], ["https://data.delijn.be/stops/301555", "https://data.delijn.be/stops/301577"], ["https://data.delijn.be/stops/300215", "https://data.delijn.be/stops/303795"], ["https://data.delijn.be/stops/404358", "https://data.delijn.be/stops/404359"], ["https://data.delijn.be/stops/303165", "https://data.delijn.be/stops/303179"], ["https://data.delijn.be/stops/405828", "https://data.delijn.be/stops/405830"], ["https://data.delijn.be/stops/201603", "https://data.delijn.be/stops/201605"], ["https://data.delijn.be/stops/204395", "https://data.delijn.be/stops/205394"], ["https://data.delijn.be/stops/305271", "https://data.delijn.be/stops/308642"], ["https://data.delijn.be/stops/206447", "https://data.delijn.be/stops/207176"], ["https://data.delijn.be/stops/502796", "https://data.delijn.be/stops/503344"], ["https://data.delijn.be/stops/101423", "https://data.delijn.be/stops/109723"], ["https://data.delijn.be/stops/109286", "https://data.delijn.be/stops/109287"], ["https://data.delijn.be/stops/500195", "https://data.delijn.be/stops/500196"], ["https://data.delijn.be/stops/401576", "https://data.delijn.be/stops/402216"], ["https://data.delijn.be/stops/504129", "https://data.delijn.be/stops/509257"], ["https://data.delijn.be/stops/307952", "https://data.delijn.be/stops/307953"], ["https://data.delijn.be/stops/308422", "https://data.delijn.be/stops/308423"], ["https://data.delijn.be/stops/107037", "https://data.delijn.be/stops/107038"], ["https://data.delijn.be/stops/208217", "https://data.delijn.be/stops/208592"], ["https://data.delijn.be/stops/300318", "https://data.delijn.be/stops/300730"], ["https://data.delijn.be/stops/206185", "https://data.delijn.be/stops/206700"], ["https://data.delijn.be/stops/501051", "https://data.delijn.be/stops/507239"], ["https://data.delijn.be/stops/405552", "https://data.delijn.be/stops/405553"], ["https://data.delijn.be/stops/303648", "https://data.delijn.be/stops/306968"], ["https://data.delijn.be/stops/301711", "https://data.delijn.be/stops/305228"], ["https://data.delijn.be/stops/402718", "https://data.delijn.be/stops/402724"], ["https://data.delijn.be/stops/505128", "https://data.delijn.be/stops/505292"], ["https://data.delijn.be/stops/402616", "https://data.delijn.be/stops/402654"], ["https://data.delijn.be/stops/403739", "https://data.delijn.be/stops/403742"], ["https://data.delijn.be/stops/200149", "https://data.delijn.be/stops/201149"], ["https://data.delijn.be/stops/304125", "https://data.delijn.be/stops/305879"], ["https://data.delijn.be/stops/407658", "https://data.delijn.be/stops/407661"], ["https://data.delijn.be/stops/408640", "https://data.delijn.be/stops/408641"], ["https://data.delijn.be/stops/105882", "https://data.delijn.be/stops/105884"], ["https://data.delijn.be/stops/207641", "https://data.delijn.be/stops/209688"], ["https://data.delijn.be/stops/106593", "https://data.delijn.be/stops/106594"], ["https://data.delijn.be/stops/107741", "https://data.delijn.be/stops/107742"], ["https://data.delijn.be/stops/101331", "https://data.delijn.be/stops/106633"], ["https://data.delijn.be/stops/301730", "https://data.delijn.be/stops/308422"], ["https://data.delijn.be/stops/302063", "https://data.delijn.be/stops/308813"], ["https://data.delijn.be/stops/302517", "https://data.delijn.be/stops/305803"], ["https://data.delijn.be/stops/101484", "https://data.delijn.be/stops/101487"], ["https://data.delijn.be/stops/404118", "https://data.delijn.be/stops/404119"], ["https://data.delijn.be/stops/202740", "https://data.delijn.be/stops/206432"], ["https://data.delijn.be/stops/108065", "https://data.delijn.be/stops/108870"], ["https://data.delijn.be/stops/107174", "https://data.delijn.be/stops/107181"], ["https://data.delijn.be/stops/301192", "https://data.delijn.be/stops/301251"], ["https://data.delijn.be/stops/400206", "https://data.delijn.be/stops/400207"], ["https://data.delijn.be/stops/103319", "https://data.delijn.be/stops/103958"], ["https://data.delijn.be/stops/406599", "https://data.delijn.be/stops/406608"], ["https://data.delijn.be/stops/504799", "https://data.delijn.be/stops/504800"], ["https://data.delijn.be/stops/502588", "https://data.delijn.be/stops/502589"], ["https://data.delijn.be/stops/502246", "https://data.delijn.be/stops/507910"], ["https://data.delijn.be/stops/109295", "https://data.delijn.be/stops/109296"], ["https://data.delijn.be/stops/408329", "https://data.delijn.be/stops/408337"], ["https://data.delijn.be/stops/302303", "https://data.delijn.be/stops/303468"], ["https://data.delijn.be/stops/409373", "https://data.delijn.be/stops/409378"], ["https://data.delijn.be/stops/401528", "https://data.delijn.be/stops/401529"], ["https://data.delijn.be/stops/109194", "https://data.delijn.be/stops/109227"], ["https://data.delijn.be/stops/407197", "https://data.delijn.be/stops/407250"], ["https://data.delijn.be/stops/204572", "https://data.delijn.be/stops/303393"], ["https://data.delijn.be/stops/106614", "https://data.delijn.be/stops/106692"], ["https://data.delijn.be/stops/104578", "https://data.delijn.be/stops/107893"], ["https://data.delijn.be/stops/304756", "https://data.delijn.be/stops/305588"], ["https://data.delijn.be/stops/501683", "https://data.delijn.be/stops/506256"], ["https://data.delijn.be/stops/504949", "https://data.delijn.be/stops/505558"], ["https://data.delijn.be/stops/103158", "https://data.delijn.be/stops/109045"], ["https://data.delijn.be/stops/301168", "https://data.delijn.be/stops/307681"], ["https://data.delijn.be/stops/208023", "https://data.delijn.be/stops/209018"], ["https://data.delijn.be/stops/108079", "https://data.delijn.be/stops/108450"], ["https://data.delijn.be/stops/506779", "https://data.delijn.be/stops/506780"], ["https://data.delijn.be/stops/400604", "https://data.delijn.be/stops/400605"], ["https://data.delijn.be/stops/200246", "https://data.delijn.be/stops/200425"], ["https://data.delijn.be/stops/203999", "https://data.delijn.be/stops/210104"], ["https://data.delijn.be/stops/205385", "https://data.delijn.be/stops/205762"], ["https://data.delijn.be/stops/405856", "https://data.delijn.be/stops/409433"], ["https://data.delijn.be/stops/300904", "https://data.delijn.be/stops/308819"], ["https://data.delijn.be/stops/505192", "https://data.delijn.be/stops/505919"], ["https://data.delijn.be/stops/204007", "https://data.delijn.be/stops/204692"], ["https://data.delijn.be/stops/105638", "https://data.delijn.be/stops/105815"], ["https://data.delijn.be/stops/108613", "https://data.delijn.be/stops/108614"], ["https://data.delijn.be/stops/102757", "https://data.delijn.be/stops/109665"], ["https://data.delijn.be/stops/101781", "https://data.delijn.be/stops/105435"], ["https://data.delijn.be/stops/106231", "https://data.delijn.be/stops/109801"], ["https://data.delijn.be/stops/508526", "https://data.delijn.be/stops/509774"], ["https://data.delijn.be/stops/405386", "https://data.delijn.be/stops/405390"], ["https://data.delijn.be/stops/105849", "https://data.delijn.be/stops/105851"], ["https://data.delijn.be/stops/102139", "https://data.delijn.be/stops/108055"], ["https://data.delijn.be/stops/101952", "https://data.delijn.be/stops/108792"], ["https://data.delijn.be/stops/305745", "https://data.delijn.be/stops/306330"], ["https://data.delijn.be/stops/302464", "https://data.delijn.be/stops/308600"], ["https://data.delijn.be/stops/300612", "https://data.delijn.be/stops/300620"], ["https://data.delijn.be/stops/503595", "https://data.delijn.be/stops/505806"], ["https://data.delijn.be/stops/504066", "https://data.delijn.be/stops/509066"], ["https://data.delijn.be/stops/203787", "https://data.delijn.be/stops/203788"], ["https://data.delijn.be/stops/302793", "https://data.delijn.be/stops/304030"], ["https://data.delijn.be/stops/505314", "https://data.delijn.be/stops/507225"], ["https://data.delijn.be/stops/105580", "https://data.delijn.be/stops/105582"], ["https://data.delijn.be/stops/102417", "https://data.delijn.be/stops/105589"], ["https://data.delijn.be/stops/204458", "https://data.delijn.be/stops/205477"], ["https://data.delijn.be/stops/101004", "https://data.delijn.be/stops/103491"], ["https://data.delijn.be/stops/202235", "https://data.delijn.be/stops/203235"], ["https://data.delijn.be/stops/200060", "https://data.delijn.be/stops/211086"], ["https://data.delijn.be/stops/302511", "https://data.delijn.be/stops/302517"], ["https://data.delijn.be/stops/101141", "https://data.delijn.be/stops/103625"], ["https://data.delijn.be/stops/304940", "https://data.delijn.be/stops/304998"], ["https://data.delijn.be/stops/204336", "https://data.delijn.be/stops/205336"], ["https://data.delijn.be/stops/505059", "https://data.delijn.be/stops/505071"], ["https://data.delijn.be/stops/306858", "https://data.delijn.be/stops/307355"], ["https://data.delijn.be/stops/303268", "https://data.delijn.be/stops/308920"], ["https://data.delijn.be/stops/306921", "https://data.delijn.be/stops/306924"], ["https://data.delijn.be/stops/401931", "https://data.delijn.be/stops/401934"], ["https://data.delijn.be/stops/400735", "https://data.delijn.be/stops/400872"], ["https://data.delijn.be/stops/404741", "https://data.delijn.be/stops/404749"], ["https://data.delijn.be/stops/508749", "https://data.delijn.be/stops/509735"], ["https://data.delijn.be/stops/503382", "https://data.delijn.be/stops/508429"], ["https://data.delijn.be/stops/408842", "https://data.delijn.be/stops/408926"], ["https://data.delijn.be/stops/400529", "https://data.delijn.be/stops/400574"], ["https://data.delijn.be/stops/504086", "https://data.delijn.be/stops/504088"], ["https://data.delijn.be/stops/400552", "https://data.delijn.be/stops/403425"], ["https://data.delijn.be/stops/300583", "https://data.delijn.be/stops/300584"], ["https://data.delijn.be/stops/206874", "https://data.delijn.be/stops/206904"], ["https://data.delijn.be/stops/201238", "https://data.delijn.be/stops/218935"], ["https://data.delijn.be/stops/108137", "https://data.delijn.be/stops/108842"], ["https://data.delijn.be/stops/106515", "https://data.delijn.be/stops/106518"], ["https://data.delijn.be/stops/506181", "https://data.delijn.be/stops/506782"], ["https://data.delijn.be/stops/200338", "https://data.delijn.be/stops/201336"], ["https://data.delijn.be/stops/301296", "https://data.delijn.be/stops/304694"], ["https://data.delijn.be/stops/507464", "https://data.delijn.be/stops/507660"], ["https://data.delijn.be/stops/504237", "https://data.delijn.be/stops/504239"], ["https://data.delijn.be/stops/404315", "https://data.delijn.be/stops/404352"], ["https://data.delijn.be/stops/105476", "https://data.delijn.be/stops/109949"], ["https://data.delijn.be/stops/201861", "https://data.delijn.be/stops/203891"], ["https://data.delijn.be/stops/409092", "https://data.delijn.be/stops/409094"], ["https://data.delijn.be/stops/304266", "https://data.delijn.be/stops/304285"], ["https://data.delijn.be/stops/406595", "https://data.delijn.be/stops/406639"], ["https://data.delijn.be/stops/201951", "https://data.delijn.be/stops/203463"], ["https://data.delijn.be/stops/502470", "https://data.delijn.be/stops/507757"], ["https://data.delijn.be/stops/408613", "https://data.delijn.be/stops/408783"], ["https://data.delijn.be/stops/409266", "https://data.delijn.be/stops/409282"], ["https://data.delijn.be/stops/304606", "https://data.delijn.be/stops/304663"], ["https://data.delijn.be/stops/509401", "https://data.delijn.be/stops/509719"], ["https://data.delijn.be/stops/505839", "https://data.delijn.be/stops/506047"], ["https://data.delijn.be/stops/509200", "https://data.delijn.be/stops/509347"], ["https://data.delijn.be/stops/200337", "https://data.delijn.be/stops/203196"], ["https://data.delijn.be/stops/503434", "https://data.delijn.be/stops/508411"], ["https://data.delijn.be/stops/405258", "https://data.delijn.be/stops/405274"], ["https://data.delijn.be/stops/401825", "https://data.delijn.be/stops/406333"], ["https://data.delijn.be/stops/104784", "https://data.delijn.be/stops/109584"], ["https://data.delijn.be/stops/408136", "https://data.delijn.be/stops/408166"], ["https://data.delijn.be/stops/206398", "https://data.delijn.be/stops/207280"], ["https://data.delijn.be/stops/202677", "https://data.delijn.be/stops/203722"], ["https://data.delijn.be/stops/404838", "https://data.delijn.be/stops/405235"], ["https://data.delijn.be/stops/502457", "https://data.delijn.be/stops/507466"], ["https://data.delijn.be/stops/406707", "https://data.delijn.be/stops/407911"], ["https://data.delijn.be/stops/405343", "https://data.delijn.be/stops/405345"], ["https://data.delijn.be/stops/102517", "https://data.delijn.be/stops/406498"], ["https://data.delijn.be/stops/102387", "https://data.delijn.be/stops/102388"], ["https://data.delijn.be/stops/202227", "https://data.delijn.be/stops/202228"], ["https://data.delijn.be/stops/303590", "https://data.delijn.be/stops/305895"], ["https://data.delijn.be/stops/301363", "https://data.delijn.be/stops/306127"], ["https://data.delijn.be/stops/502132", "https://data.delijn.be/stops/507113"], ["https://data.delijn.be/stops/504576", "https://data.delijn.be/stops/509572"], ["https://data.delijn.be/stops/408620", "https://data.delijn.be/stops/408748"], ["https://data.delijn.be/stops/501401", "https://data.delijn.be/stops/506198"], ["https://data.delijn.be/stops/403478", "https://data.delijn.be/stops/403481"], ["https://data.delijn.be/stops/108266", "https://data.delijn.be/stops/109337"], ["https://data.delijn.be/stops/409069", "https://data.delijn.be/stops/409081"], ["https://data.delijn.be/stops/306326", "https://data.delijn.be/stops/307625"], ["https://data.delijn.be/stops/200251", "https://data.delijn.be/stops/200577"], ["https://data.delijn.be/stops/101174", "https://data.delijn.be/stops/104030"], ["https://data.delijn.be/stops/506636", "https://data.delijn.be/stops/506646"], ["https://data.delijn.be/stops/501353", "https://data.delijn.be/stops/506353"], ["https://data.delijn.be/stops/400244", "https://data.delijn.be/stops/400946"], ["https://data.delijn.be/stops/102189", "https://data.delijn.be/stops/105917"], ["https://data.delijn.be/stops/201766", "https://data.delijn.be/stops/209265"], ["https://data.delijn.be/stops/200685", "https://data.delijn.be/stops/201723"], ["https://data.delijn.be/stops/501100", "https://data.delijn.be/stops/505244"], ["https://data.delijn.be/stops/308179", "https://data.delijn.be/stops/308291"], ["https://data.delijn.be/stops/201674", "https://data.delijn.be/stops/208662"], ["https://data.delijn.be/stops/403043", "https://data.delijn.be/stops/403289"], ["https://data.delijn.be/stops/300198", "https://data.delijn.be/stops/300225"], ["https://data.delijn.be/stops/503664", "https://data.delijn.be/stops/508664"], ["https://data.delijn.be/stops/206524", "https://data.delijn.be/stops/206525"], ["https://data.delijn.be/stops/404298", "https://data.delijn.be/stops/301469"], ["https://data.delijn.be/stops/503190", "https://data.delijn.be/stops/503196"], ["https://data.delijn.be/stops/204394", "https://data.delijn.be/stops/204769"], ["https://data.delijn.be/stops/302134", "https://data.delijn.be/stops/302135"], ["https://data.delijn.be/stops/402354", "https://data.delijn.be/stops/402365"], ["https://data.delijn.be/stops/302944", "https://data.delijn.be/stops/303130"], ["https://data.delijn.be/stops/505113", "https://data.delijn.be/stops/505121"], ["https://data.delijn.be/stops/301356", "https://data.delijn.be/stops/307264"], ["https://data.delijn.be/stops/403912", "https://data.delijn.be/stops/403980"], ["https://data.delijn.be/stops/302971", "https://data.delijn.be/stops/306281"], ["https://data.delijn.be/stops/206300", "https://data.delijn.be/stops/206458"], ["https://data.delijn.be/stops/505774", "https://data.delijn.be/stops/505924"], ["https://data.delijn.be/stops/101746", "https://data.delijn.be/stops/101748"], ["https://data.delijn.be/stops/302213", "https://data.delijn.be/stops/302226"], ["https://data.delijn.be/stops/407761", "https://data.delijn.be/stops/409793"], ["https://data.delijn.be/stops/308506", "https://data.delijn.be/stops/308509"], ["https://data.delijn.be/stops/207254", "https://data.delijn.be/stops/207828"], ["https://data.delijn.be/stops/301610", "https://data.delijn.be/stops/304258"], ["https://data.delijn.be/stops/102169", "https://data.delijn.be/stops/108913"], ["https://data.delijn.be/stops/204607", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/302352", "https://data.delijn.be/stops/302369"], ["https://data.delijn.be/stops/502643", "https://data.delijn.be/stops/507140"], ["https://data.delijn.be/stops/408492", "https://data.delijn.be/stops/408979"], ["https://data.delijn.be/stops/308567", "https://data.delijn.be/stops/308569"], ["https://data.delijn.be/stops/404021", "https://data.delijn.be/stops/404022"], ["https://data.delijn.be/stops/300037", "https://data.delijn.be/stops/306838"], ["https://data.delijn.be/stops/301570", "https://data.delijn.be/stops/301574"], ["https://data.delijn.be/stops/402358", "https://data.delijn.be/stops/402461"], ["https://data.delijn.be/stops/300235", "https://data.delijn.be/stops/306654"], ["https://data.delijn.be/stops/202211", "https://data.delijn.be/stops/203774"], ["https://data.delijn.be/stops/204208", "https://data.delijn.be/stops/204471"], ["https://data.delijn.be/stops/108734", "https://data.delijn.be/stops/109282"], ["https://data.delijn.be/stops/303317", "https://data.delijn.be/stops/303318"], ["https://data.delijn.be/stops/200443", "https://data.delijn.be/stops/201444"], ["https://data.delijn.be/stops/201137", "https://data.delijn.be/stops/201223"], ["https://data.delijn.be/stops/208612", "https://data.delijn.be/stops/208613"], ["https://data.delijn.be/stops/405902", "https://data.delijn.be/stops/405975"], ["https://data.delijn.be/stops/103283", "https://data.delijn.be/stops/205607"], ["https://data.delijn.be/stops/504340", "https://data.delijn.be/stops/509076"], ["https://data.delijn.be/stops/503318", "https://data.delijn.be/stops/503962"], ["https://data.delijn.be/stops/303964", "https://data.delijn.be/stops/303972"], ["https://data.delijn.be/stops/401424", "https://data.delijn.be/stops/401576"], ["https://data.delijn.be/stops/304155", "https://data.delijn.be/stops/304537"], ["https://data.delijn.be/stops/101364", "https://data.delijn.be/stops/101397"], ["https://data.delijn.be/stops/306917", "https://data.delijn.be/stops/306920"], ["https://data.delijn.be/stops/206589", "https://data.delijn.be/stops/206590"], ["https://data.delijn.be/stops/410274", "https://data.delijn.be/stops/410275"], ["https://data.delijn.be/stops/103167", "https://data.delijn.be/stops/103168"], ["https://data.delijn.be/stops/303585", "https://data.delijn.be/stops/305280"], ["https://data.delijn.be/stops/505158", "https://data.delijn.be/stops/505296"], ["https://data.delijn.be/stops/302453", "https://data.delijn.be/stops/302493"], ["https://data.delijn.be/stops/502122", "https://data.delijn.be/stops/502129"], ["https://data.delijn.be/stops/307855", "https://data.delijn.be/stops/307857"], ["https://data.delijn.be/stops/300951", "https://data.delijn.be/stops/301944"], ["https://data.delijn.be/stops/301991", "https://data.delijn.be/stops/305977"], ["https://data.delijn.be/stops/104893", "https://data.delijn.be/stops/104896"], ["https://data.delijn.be/stops/501426", "https://data.delijn.be/stops/505032"], ["https://data.delijn.be/stops/102136", "https://data.delijn.be/stops/103481"], ["https://data.delijn.be/stops/304372", "https://data.delijn.be/stops/305993"], ["https://data.delijn.be/stops/406222", "https://data.delijn.be/stops/409407"], ["https://data.delijn.be/stops/500001", "https://data.delijn.be/stops/505358"], ["https://data.delijn.be/stops/503344", "https://data.delijn.be/stops/508344"], ["https://data.delijn.be/stops/102697", "https://data.delijn.be/stops/105910"], ["https://data.delijn.be/stops/403114", "https://data.delijn.be/stops/403116"], ["https://data.delijn.be/stops/206572", "https://data.delijn.be/stops/207573"], ["https://data.delijn.be/stops/105205", "https://data.delijn.be/stops/108061"], ["https://data.delijn.be/stops/501384", "https://data.delijn.be/stops/506380"], ["https://data.delijn.be/stops/406214", "https://data.delijn.be/stops/406215"], ["https://data.delijn.be/stops/504071", "https://data.delijn.be/stops/509071"], ["https://data.delijn.be/stops/106684", "https://data.delijn.be/stops/107122"], ["https://data.delijn.be/stops/202439", "https://data.delijn.be/stops/202482"], ["https://data.delijn.be/stops/403901", "https://data.delijn.be/stops/404027"], ["https://data.delijn.be/stops/300033", "https://data.delijn.be/stops/300379"], ["https://data.delijn.be/stops/304925", "https://data.delijn.be/stops/304926"], ["https://data.delijn.be/stops/109803", "https://data.delijn.be/stops/109804"], ["https://data.delijn.be/stops/403334", "https://data.delijn.be/stops/403335"], ["https://data.delijn.be/stops/202167", "https://data.delijn.be/stops/203167"], ["https://data.delijn.be/stops/504269", "https://data.delijn.be/stops/504273"], ["https://data.delijn.be/stops/201250", "https://data.delijn.be/stops/208939"], ["https://data.delijn.be/stops/208566", "https://data.delijn.be/stops/209566"], ["https://data.delijn.be/stops/408858", "https://data.delijn.be/stops/408859"], ["https://data.delijn.be/stops/208378", "https://data.delijn.be/stops/208794"], ["https://data.delijn.be/stops/404168", "https://data.delijn.be/stops/404239"], ["https://data.delijn.be/stops/102474", "https://data.delijn.be/stops/406835"], ["https://data.delijn.be/stops/303082", "https://data.delijn.be/stops/308660"], ["https://data.delijn.be/stops/503745", "https://data.delijn.be/stops/509782"], ["https://data.delijn.be/stops/102340", "https://data.delijn.be/stops/104255"], ["https://data.delijn.be/stops/507099", "https://data.delijn.be/stops/507299"], ["https://data.delijn.be/stops/407254", "https://data.delijn.be/stops/407255"], ["https://data.delijn.be/stops/200389", "https://data.delijn.be/stops/201389"], ["https://data.delijn.be/stops/407213", "https://data.delijn.be/stops/407217"], ["https://data.delijn.be/stops/204099", "https://data.delijn.be/stops/210009"], ["https://data.delijn.be/stops/105323", "https://data.delijn.be/stops/105324"], ["https://data.delijn.be/stops/109247", "https://data.delijn.be/stops/109266"], ["https://data.delijn.be/stops/200532", "https://data.delijn.be/stops/211109"], ["https://data.delijn.be/stops/505173", "https://data.delijn.be/stops/505240"], ["https://data.delijn.be/stops/206841", "https://data.delijn.be/stops/207841"], ["https://data.delijn.be/stops/501535", "https://data.delijn.be/stops/501536"], ["https://data.delijn.be/stops/405916", "https://data.delijn.be/stops/405971"], ["https://data.delijn.be/stops/404321", "https://data.delijn.be/stops/404352"], ["https://data.delijn.be/stops/404466", "https://data.delijn.be/stops/404508"], ["https://data.delijn.be/stops/505673", "https://data.delijn.be/stops/505676"], ["https://data.delijn.be/stops/409801", "https://data.delijn.be/stops/409802"], ["https://data.delijn.be/stops/300835", "https://data.delijn.be/stops/304937"], ["https://data.delijn.be/stops/104412", "https://data.delijn.be/stops/204489"], ["https://data.delijn.be/stops/202637", "https://data.delijn.be/stops/203637"], ["https://data.delijn.be/stops/101006", "https://data.delijn.be/stops/101007"], ["https://data.delijn.be/stops/400466", "https://data.delijn.be/stops/400468"], ["https://data.delijn.be/stops/506183", "https://data.delijn.be/stops/509495"], ["https://data.delijn.be/stops/206886", "https://data.delijn.be/stops/206887"], ["https://data.delijn.be/stops/204313", "https://data.delijn.be/stops/205314"], ["https://data.delijn.be/stops/503179", "https://data.delijn.be/stops/590010"], ["https://data.delijn.be/stops/101921", "https://data.delijn.be/stops/101922"], ["https://data.delijn.be/stops/403996", "https://data.delijn.be/stops/403997"], ["https://data.delijn.be/stops/403767", "https://data.delijn.be/stops/406973"], ["https://data.delijn.be/stops/401800", "https://data.delijn.be/stops/402004"], ["https://data.delijn.be/stops/506108", "https://data.delijn.be/stops/506109"], ["https://data.delijn.be/stops/204741", "https://data.delijn.be/stops/205741"], ["https://data.delijn.be/stops/107442", "https://data.delijn.be/stops/107443"], ["https://data.delijn.be/stops/109829", "https://data.delijn.be/stops/109831"], ["https://data.delijn.be/stops/208666", "https://data.delijn.be/stops/208668"], ["https://data.delijn.be/stops/102652", "https://data.delijn.be/stops/104582"], ["https://data.delijn.be/stops/308245", "https://data.delijn.be/stops/308247"], ["https://data.delijn.be/stops/305037", "https://data.delijn.be/stops/308034"], ["https://data.delijn.be/stops/301985", "https://data.delijn.be/stops/307194"], ["https://data.delijn.be/stops/209090", "https://data.delijn.be/stops/209568"], ["https://data.delijn.be/stops/505995", "https://data.delijn.be/stops/509580"], ["https://data.delijn.be/stops/405213", "https://data.delijn.be/stops/405218"], ["https://data.delijn.be/stops/401820", "https://data.delijn.be/stops/401821"], ["https://data.delijn.be/stops/106971", "https://data.delijn.be/stops/107633"], ["https://data.delijn.be/stops/307211", "https://data.delijn.be/stops/308984"], ["https://data.delijn.be/stops/101976", "https://data.delijn.be/stops/109062"], ["https://data.delijn.be/stops/300101", "https://data.delijn.be/stops/300102"], ["https://data.delijn.be/stops/207170", "https://data.delijn.be/stops/303850"], ["https://data.delijn.be/stops/305578", "https://data.delijn.be/stops/307824"], ["https://data.delijn.be/stops/405344", "https://data.delijn.be/stops/307002"], ["https://data.delijn.be/stops/208596", "https://data.delijn.be/stops/209596"], ["https://data.delijn.be/stops/304104", "https://data.delijn.be/stops/304793"], ["https://data.delijn.be/stops/102799", "https://data.delijn.be/stops/105765"], ["https://data.delijn.be/stops/201671", "https://data.delijn.be/stops/201677"], ["https://data.delijn.be/stops/504233", "https://data.delijn.be/stops/509233"], ["https://data.delijn.be/stops/502278", "https://data.delijn.be/stops/502332"], ["https://data.delijn.be/stops/200234", "https://data.delijn.be/stops/203353"], ["https://data.delijn.be/stops/409559", "https://data.delijn.be/stops/409570"], ["https://data.delijn.be/stops/302076", "https://data.delijn.be/stops/302099"], ["https://data.delijn.be/stops/404227", "https://data.delijn.be/stops/404504"], ["https://data.delijn.be/stops/402859", "https://data.delijn.be/stops/410203"], ["https://data.delijn.be/stops/504067", "https://data.delijn.be/stops/509067"], ["https://data.delijn.be/stops/200660", "https://data.delijn.be/stops/201940"], ["https://data.delijn.be/stops/305400", "https://data.delijn.be/stops/305413"], ["https://data.delijn.be/stops/306637", "https://data.delijn.be/stops/306638"], ["https://data.delijn.be/stops/403297", "https://data.delijn.be/stops/409173"], ["https://data.delijn.be/stops/107120", "https://data.delijn.be/stops/108865"], ["https://data.delijn.be/stops/401026", "https://data.delijn.be/stops/404964"], ["https://data.delijn.be/stops/406634", "https://data.delijn.be/stops/407442"], ["https://data.delijn.be/stops/303355", "https://data.delijn.be/stops/303359"], ["https://data.delijn.be/stops/504104", "https://data.delijn.be/stops/504446"], ["https://data.delijn.be/stops/201382", "https://data.delijn.be/stops/201548"], ["https://data.delijn.be/stops/400725", "https://data.delijn.be/stops/400846"], ["https://data.delijn.be/stops/207945", "https://data.delijn.be/stops/208552"], ["https://data.delijn.be/stops/304376", "https://data.delijn.be/stops/306870"], ["https://data.delijn.be/stops/403681", "https://data.delijn.be/stops/403683"], ["https://data.delijn.be/stops/406897", "https://data.delijn.be/stops/408475"], ["https://data.delijn.be/stops/404612", "https://data.delijn.be/stops/406831"], ["https://data.delijn.be/stops/302937", "https://data.delijn.be/stops/303146"], ["https://data.delijn.be/stops/501389", "https://data.delijn.be/stops/506389"], ["https://data.delijn.be/stops/308778", "https://data.delijn.be/stops/308779"], ["https://data.delijn.be/stops/404230", "https://data.delijn.be/stops/404231"], ["https://data.delijn.be/stops/403590", "https://data.delijn.be/stops/410012"], ["https://data.delijn.be/stops/200720", "https://data.delijn.be/stops/203576"], ["https://data.delijn.be/stops/505703", "https://data.delijn.be/stops/507638"], ["https://data.delijn.be/stops/302318", "https://data.delijn.be/stops/306693"], ["https://data.delijn.be/stops/400142", "https://data.delijn.be/stops/410220"], ["https://data.delijn.be/stops/102063", "https://data.delijn.be/stops/109532"], ["https://data.delijn.be/stops/102756", "https://data.delijn.be/stops/102915"], ["https://data.delijn.be/stops/504149", "https://data.delijn.be/stops/509149"], ["https://data.delijn.be/stops/507200", "https://data.delijn.be/stops/509944"], ["https://data.delijn.be/stops/208781", "https://data.delijn.be/stops/208789"], ["https://data.delijn.be/stops/302064", "https://data.delijn.be/stops/302096"], ["https://data.delijn.be/stops/504663", "https://data.delijn.be/stops/504682"], ["https://data.delijn.be/stops/505578", "https://data.delijn.be/stops/508634"], ["https://data.delijn.be/stops/200885", "https://data.delijn.be/stops/505684"], ["https://data.delijn.be/stops/204112", "https://data.delijn.be/stops/205684"], ["https://data.delijn.be/stops/200545", "https://data.delijn.be/stops/201411"], ["https://data.delijn.be/stops/102862", "https://data.delijn.be/stops/103650"], ["https://data.delijn.be/stops/502180", "https://data.delijn.be/stops/507182"], ["https://data.delijn.be/stops/109451", "https://data.delijn.be/stops/109452"], ["https://data.delijn.be/stops/405800", "https://data.delijn.be/stops/405801"], ["https://data.delijn.be/stops/203211", "https://data.delijn.be/stops/203502"], ["https://data.delijn.be/stops/508502", "https://data.delijn.be/stops/508868"], ["https://data.delijn.be/stops/406585", "https://data.delijn.be/stops/406589"], ["https://data.delijn.be/stops/403398", "https://data.delijn.be/stops/410294"], ["https://data.delijn.be/stops/306140", "https://data.delijn.be/stops/308766"], ["https://data.delijn.be/stops/218002", "https://data.delijn.be/stops/219002"], ["https://data.delijn.be/stops/201307", "https://data.delijn.be/stops/201308"], ["https://data.delijn.be/stops/201959", "https://data.delijn.be/stops/202195"], ["https://data.delijn.be/stops/102540", "https://data.delijn.be/stops/105800"], ["https://data.delijn.be/stops/300615", "https://data.delijn.be/stops/307982"], ["https://data.delijn.be/stops/503358", "https://data.delijn.be/stops/505135"], ["https://data.delijn.be/stops/105603", "https://data.delijn.be/stops/109737"], ["https://data.delijn.be/stops/504486", "https://data.delijn.be/stops/509489"], ["https://data.delijn.be/stops/206098", "https://data.delijn.be/stops/207998"], ["https://data.delijn.be/stops/206238", "https://data.delijn.be/stops/207238"], ["https://data.delijn.be/stops/407505", "https://data.delijn.be/stops/409858"], ["https://data.delijn.be/stops/109158", "https://data.delijn.be/stops/109159"], ["https://data.delijn.be/stops/106496", "https://data.delijn.be/stops/109666"], ["https://data.delijn.be/stops/301968", "https://data.delijn.be/stops/303281"], ["https://data.delijn.be/stops/200049", "https://data.delijn.be/stops/201192"], ["https://data.delijn.be/stops/503927", "https://data.delijn.be/stops/508916"], ["https://data.delijn.be/stops/406646", "https://data.delijn.be/stops/406647"], ["https://data.delijn.be/stops/209487", "https://data.delijn.be/stops/209488"], ["https://data.delijn.be/stops/101930", "https://data.delijn.be/stops/101989"], ["https://data.delijn.be/stops/107828", "https://data.delijn.be/stops/107831"], ["https://data.delijn.be/stops/202958", "https://data.delijn.be/stops/203958"], ["https://data.delijn.be/stops/104416", "https://data.delijn.be/stops/205337"], ["https://data.delijn.be/stops/305094", "https://data.delijn.be/stops/305095"], ["https://data.delijn.be/stops/307636", "https://data.delijn.be/stops/307637"], ["https://data.delijn.be/stops/503584", "https://data.delijn.be/stops/508584"], ["https://data.delijn.be/stops/402792", "https://data.delijn.be/stops/408262"], ["https://data.delijn.be/stops/209313", "https://data.delijn.be/stops/209787"], ["https://data.delijn.be/stops/205691", "https://data.delijn.be/stops/205699"], ["https://data.delijn.be/stops/305019", "https://data.delijn.be/stops/305020"], ["https://data.delijn.be/stops/202853", "https://data.delijn.be/stops/202858"], ["https://data.delijn.be/stops/200062", "https://data.delijn.be/stops/201272"], ["https://data.delijn.be/stops/407280", "https://data.delijn.be/stops/407781"], ["https://data.delijn.be/stops/206727", "https://data.delijn.be/stops/206984"], ["https://data.delijn.be/stops/305894", "https://data.delijn.be/stops/308179"], ["https://data.delijn.be/stops/403085", "https://data.delijn.be/stops/403131"], ["https://data.delijn.be/stops/500928", "https://data.delijn.be/stops/501686"], ["https://data.delijn.be/stops/409061", "https://data.delijn.be/stops/409137"], ["https://data.delijn.be/stops/402701", "https://data.delijn.be/stops/402719"], ["https://data.delijn.be/stops/504084", "https://data.delijn.be/stops/505424"], ["https://data.delijn.be/stops/308163", "https://data.delijn.be/stops/308195"], ["https://data.delijn.be/stops/201764", "https://data.delijn.be/stops/208274"], ["https://data.delijn.be/stops/205759", "https://data.delijn.be/stops/205760"], ["https://data.delijn.be/stops/101179", "https://data.delijn.be/stops/106789"], ["https://data.delijn.be/stops/403041", "https://data.delijn.be/stops/403404"], ["https://data.delijn.be/stops/303960", "https://data.delijn.be/stops/304927"], ["https://data.delijn.be/stops/503325", "https://data.delijn.be/stops/508325"], ["https://data.delijn.be/stops/108388", "https://data.delijn.be/stops/108389"], ["https://data.delijn.be/stops/204404", "https://data.delijn.be/stops/205404"], ["https://data.delijn.be/stops/408525", "https://data.delijn.be/stops/410249"], ["https://data.delijn.be/stops/206928", "https://data.delijn.be/stops/206939"], ["https://data.delijn.be/stops/501253", "https://data.delijn.be/stops/501256"], ["https://data.delijn.be/stops/306786", "https://data.delijn.be/stops/306791"], ["https://data.delijn.be/stops/200053", "https://data.delijn.be/stops/200477"], ["https://data.delijn.be/stops/501164", "https://data.delijn.be/stops/506164"], ["https://data.delijn.be/stops/105356", "https://data.delijn.be/stops/108908"], ["https://data.delijn.be/stops/101529", "https://data.delijn.be/stops/101953"], ["https://data.delijn.be/stops/202212", "https://data.delijn.be/stops/211117"], ["https://data.delijn.be/stops/503952", "https://data.delijn.be/stops/509277"], ["https://data.delijn.be/stops/200009", "https://data.delijn.be/stops/200417"], ["https://data.delijn.be/stops/501443", "https://data.delijn.be/stops/506442"], ["https://data.delijn.be/stops/502550", "https://data.delijn.be/stops/507550"], ["https://data.delijn.be/stops/306608", "https://data.delijn.be/stops/306619"], ["https://data.delijn.be/stops/103244", "https://data.delijn.be/stops/104784"], ["https://data.delijn.be/stops/501048", "https://data.delijn.be/stops/506198"], ["https://data.delijn.be/stops/106285", "https://data.delijn.be/stops/106288"], ["https://data.delijn.be/stops/402700", "https://data.delijn.be/stops/405997"], ["https://data.delijn.be/stops/408668", "https://data.delijn.be/stops/408669"], ["https://data.delijn.be/stops/106260", "https://data.delijn.be/stops/106262"], ["https://data.delijn.be/stops/105158", "https://data.delijn.be/stops/105161"], ["https://data.delijn.be/stops/201447", "https://data.delijn.be/stops/210113"], ["https://data.delijn.be/stops/304202", "https://data.delijn.be/stops/306003"], ["https://data.delijn.be/stops/105724", "https://data.delijn.be/stops/105726"], ["https://data.delijn.be/stops/104814", "https://data.delijn.be/stops/104816"], ["https://data.delijn.be/stops/308482", "https://data.delijn.be/stops/308483"], ["https://data.delijn.be/stops/107259", "https://data.delijn.be/stops/107261"], ["https://data.delijn.be/stops/200450", "https://data.delijn.be/stops/211065"], ["https://data.delijn.be/stops/206517", "https://data.delijn.be/stops/206718"], ["https://data.delijn.be/stops/503613", "https://data.delijn.be/stops/508615"], ["https://data.delijn.be/stops/101138", "https://data.delijn.be/stops/108420"], ["https://data.delijn.be/stops/302230", "https://data.delijn.be/stops/302237"], ["https://data.delijn.be/stops/207322", "https://data.delijn.be/stops/207882"], ["https://data.delijn.be/stops/200926", "https://data.delijn.be/stops/203047"], ["https://data.delijn.be/stops/206183", "https://data.delijn.be/stops/207690"], ["https://data.delijn.be/stops/200013", "https://data.delijn.be/stops/201013"], ["https://data.delijn.be/stops/202572", "https://data.delijn.be/stops/203570"], ["https://data.delijn.be/stops/200733", "https://data.delijn.be/stops/203572"], ["https://data.delijn.be/stops/204354", "https://data.delijn.be/stops/205312"], ["https://data.delijn.be/stops/106298", "https://data.delijn.be/stops/106470"], ["https://data.delijn.be/stops/302321", "https://data.delijn.be/stops/303451"], ["https://data.delijn.be/stops/404010", "https://data.delijn.be/stops/404081"], ["https://data.delijn.be/stops/202985", "https://data.delijn.be/stops/202988"], ["https://data.delijn.be/stops/204312", "https://data.delijn.be/stops/205351"], ["https://data.delijn.be/stops/400979", "https://data.delijn.be/stops/404845"], ["https://data.delijn.be/stops/108761", "https://data.delijn.be/stops/109795"], ["https://data.delijn.be/stops/402800", "https://data.delijn.be/stops/402801"], ["https://data.delijn.be/stops/502756", "https://data.delijn.be/stops/505648"], ["https://data.delijn.be/stops/502669", "https://data.delijn.be/stops/502670"], ["https://data.delijn.be/stops/200982", "https://data.delijn.be/stops/202921"], ["https://data.delijn.be/stops/103529", "https://data.delijn.be/stops/109636"], ["https://data.delijn.be/stops/504990", "https://data.delijn.be/stops/505108"], ["https://data.delijn.be/stops/203739", "https://data.delijn.be/stops/207430"], ["https://data.delijn.be/stops/301636", "https://data.delijn.be/stops/301637"], ["https://data.delijn.be/stops/107686", "https://data.delijn.be/stops/107689"], ["https://data.delijn.be/stops/107082", "https://data.delijn.be/stops/107084"], ["https://data.delijn.be/stops/402722", "https://data.delijn.be/stops/402724"], ["https://data.delijn.be/stops/106991", "https://data.delijn.be/stops/107098"], ["https://data.delijn.be/stops/206222", "https://data.delijn.be/stops/207193"], ["https://data.delijn.be/stops/303125", "https://data.delijn.be/stops/304656"], ["https://data.delijn.be/stops/506463", "https://data.delijn.be/stops/506659"], ["https://data.delijn.be/stops/206193", "https://data.delijn.be/stops/207193"], ["https://data.delijn.be/stops/301107", "https://data.delijn.be/stops/301117"], ["https://data.delijn.be/stops/209444", "https://data.delijn.be/stops/209453"], ["https://data.delijn.be/stops/409364", "https://data.delijn.be/stops/409388"], ["https://data.delijn.be/stops/202388", "https://data.delijn.be/stops/203078"], ["https://data.delijn.be/stops/304402", "https://data.delijn.be/stops/308058"], ["https://data.delijn.be/stops/206770", "https://data.delijn.be/stops/206787"], ["https://data.delijn.be/stops/304110", "https://data.delijn.be/stops/304819"], ["https://data.delijn.be/stops/108330", "https://data.delijn.be/stops/108335"], ["https://data.delijn.be/stops/206649", "https://data.delijn.be/stops/206681"], ["https://data.delijn.be/stops/407011", "https://data.delijn.be/stops/407037"], ["https://data.delijn.be/stops/305532", "https://data.delijn.be/stops/305539"], ["https://data.delijn.be/stops/203145", "https://data.delijn.be/stops/203187"], ["https://data.delijn.be/stops/102607", "https://data.delijn.be/stops/106973"], ["https://data.delijn.be/stops/305298", "https://data.delijn.be/stops/305334"], ["https://data.delijn.be/stops/403830", "https://data.delijn.be/stops/403831"], ["https://data.delijn.be/stops/501530", "https://data.delijn.be/stops/506199"], ["https://data.delijn.be/stops/403786", "https://data.delijn.be/stops/406709"], ["https://data.delijn.be/stops/506166", "https://data.delijn.be/stops/509836"], ["https://data.delijn.be/stops/503499", "https://data.delijn.be/stops/508878"], ["https://data.delijn.be/stops/405611", "https://data.delijn.be/stops/407179"], ["https://data.delijn.be/stops/202559", "https://data.delijn.be/stops/203560"], ["https://data.delijn.be/stops/200978", "https://data.delijn.be/stops/208045"], ["https://data.delijn.be/stops/102474", "https://data.delijn.be/stops/400178"], ["https://data.delijn.be/stops/102551", "https://data.delijn.be/stops/102552"], ["https://data.delijn.be/stops/107661", "https://data.delijn.be/stops/109861"], ["https://data.delijn.be/stops/303465", "https://data.delijn.be/stops/303469"], ["https://data.delijn.be/stops/500005", "https://data.delijn.be/stops/500006"], ["https://data.delijn.be/stops/102713", "https://data.delijn.be/stops/109588"], ["https://data.delijn.be/stops/304071", "https://data.delijn.be/stops/304072"], ["https://data.delijn.be/stops/405346", "https://data.delijn.be/stops/405347"], ["https://data.delijn.be/stops/504971", "https://data.delijn.be/stops/508635"], ["https://data.delijn.be/stops/201803", "https://data.delijn.be/stops/204987"], ["https://data.delijn.be/stops/503730", "https://data.delijn.be/stops/508739"], ["https://data.delijn.be/stops/206357", "https://data.delijn.be/stops/207688"], ["https://data.delijn.be/stops/101834", "https://data.delijn.be/stops/108236"], ["https://data.delijn.be/stops/300107", "https://data.delijn.be/stops/300108"], ["https://data.delijn.be/stops/303351", "https://data.delijn.be/stops/303367"], ["https://data.delijn.be/stops/200330", "https://data.delijn.be/stops/203196"], ["https://data.delijn.be/stops/105897", "https://data.delijn.be/stops/105898"], ["https://data.delijn.be/stops/102525", "https://data.delijn.be/stops/102526"], ["https://data.delijn.be/stops/105990", "https://data.delijn.be/stops/107957"], ["https://data.delijn.be/stops/502220", "https://data.delijn.be/stops/507221"], ["https://data.delijn.be/stops/102186", "https://data.delijn.be/stops/104291"], ["https://data.delijn.be/stops/502690", "https://data.delijn.be/stops/507476"], ["https://data.delijn.be/stops/109552", "https://data.delijn.be/stops/307435"], ["https://data.delijn.be/stops/200972", "https://data.delijn.be/stops/202862"], ["https://data.delijn.be/stops/101424", "https://data.delijn.be/stops/106965"], ["https://data.delijn.be/stops/503810", "https://data.delijn.be/stops/505540"], ["https://data.delijn.be/stops/404588", "https://data.delijn.be/stops/404644"], ["https://data.delijn.be/stops/302900", "https://data.delijn.be/stops/302901"], ["https://data.delijn.be/stops/409357", "https://data.delijn.be/stops/409440"], ["https://data.delijn.be/stops/204103", "https://data.delijn.be/stops/204583"], ["https://data.delijn.be/stops/402513", "https://data.delijn.be/stops/405663"], ["https://data.delijn.be/stops/502329", "https://data.delijn.be/stops/502338"], ["https://data.delijn.be/stops/201859", "https://data.delijn.be/stops/211035"], ["https://data.delijn.be/stops/200619", "https://data.delijn.be/stops/201516"], ["https://data.delijn.be/stops/200819", "https://data.delijn.be/stops/200853"], ["https://data.delijn.be/stops/201867", "https://data.delijn.be/stops/211038"], ["https://data.delijn.be/stops/304230", "https://data.delijn.be/stops/308772"], ["https://data.delijn.be/stops/507186", "https://data.delijn.be/stops/507187"], ["https://data.delijn.be/stops/408103", "https://data.delijn.be/stops/408141"], ["https://data.delijn.be/stops/509065", "https://data.delijn.be/stops/509067"], ["https://data.delijn.be/stops/404833", "https://data.delijn.be/stops/404834"], ["https://data.delijn.be/stops/300775", "https://data.delijn.be/stops/300776"], ["https://data.delijn.be/stops/508520", "https://data.delijn.be/stops/508774"], ["https://data.delijn.be/stops/200699", "https://data.delijn.be/stops/203788"], ["https://data.delijn.be/stops/308096", "https://data.delijn.be/stops/308097"], ["https://data.delijn.be/stops/301307", "https://data.delijn.be/stops/306648"], ["https://data.delijn.be/stops/303826", "https://data.delijn.be/stops/303829"], ["https://data.delijn.be/stops/405127", "https://data.delijn.be/stops/410215"], ["https://data.delijn.be/stops/204322", "https://data.delijn.be/stops/205322"], ["https://data.delijn.be/stops/502102", "https://data.delijn.be/stops/507101"], ["https://data.delijn.be/stops/508032", "https://data.delijn.be/stops/508679"], ["https://data.delijn.be/stops/506241", "https://data.delijn.be/stops/506371"], ["https://data.delijn.be/stops/505933", "https://data.delijn.be/stops/508134"], ["https://data.delijn.be/stops/306940", "https://data.delijn.be/stops/308064"], ["https://data.delijn.be/stops/406797", "https://data.delijn.be/stops/406804"], ["https://data.delijn.be/stops/208424", "https://data.delijn.be/stops/209424"], ["https://data.delijn.be/stops/304880", "https://data.delijn.be/stops/304881"], ["https://data.delijn.be/stops/503676", "https://data.delijn.be/stops/508654"], ["https://data.delijn.be/stops/202005", "https://data.delijn.be/stops/203005"], ["https://data.delijn.be/stops/105016", "https://data.delijn.be/stops/105113"], ["https://data.delijn.be/stops/503212", "https://data.delijn.be/stops/503420"], ["https://data.delijn.be/stops/503780", "https://data.delijn.be/stops/503837"], ["https://data.delijn.be/stops/505921", "https://data.delijn.be/stops/509115"], ["https://data.delijn.be/stops/302685", "https://data.delijn.be/stops/302691"], ["https://data.delijn.be/stops/508291", "https://data.delijn.be/stops/508294"], ["https://data.delijn.be/stops/102162", "https://data.delijn.be/stops/102163"], ["https://data.delijn.be/stops/501409", "https://data.delijn.be/stops/506410"], ["https://data.delijn.be/stops/202986", "https://data.delijn.be/stops/203987"], ["https://data.delijn.be/stops/502485", "https://data.delijn.be/stops/509700"], ["https://data.delijn.be/stops/500942", "https://data.delijn.be/stops/508179"], ["https://data.delijn.be/stops/409350", "https://data.delijn.be/stops/409371"], ["https://data.delijn.be/stops/303089", "https://data.delijn.be/stops/308655"], ["https://data.delijn.be/stops/208355", "https://data.delijn.be/stops/209184"], ["https://data.delijn.be/stops/408140", "https://data.delijn.be/stops/408166"], ["https://data.delijn.be/stops/107548", "https://data.delijn.be/stops/107613"], ["https://data.delijn.be/stops/403655", "https://data.delijn.be/stops/407344"], ["https://data.delijn.be/stops/304007", "https://data.delijn.be/stops/304049"], ["https://data.delijn.be/stops/200082", "https://data.delijn.be/stops/205804"], ["https://data.delijn.be/stops/104575", "https://data.delijn.be/stops/105180"], ["https://data.delijn.be/stops/401933", "https://data.delijn.be/stops/401935"], ["https://data.delijn.be/stops/208481", "https://data.delijn.be/stops/209480"], ["https://data.delijn.be/stops/305652", "https://data.delijn.be/stops/308130"], ["https://data.delijn.be/stops/503046", "https://data.delijn.be/stops/503763"], ["https://data.delijn.be/stops/505063", "https://data.delijn.be/stops/505652"], ["https://data.delijn.be/stops/102216", "https://data.delijn.be/stops/105537"], ["https://data.delijn.be/stops/201929", "https://data.delijn.be/stops/202482"], ["https://data.delijn.be/stops/507193", "https://data.delijn.be/stops/507631"], ["https://data.delijn.be/stops/308406", "https://data.delijn.be/stops/308408"], ["https://data.delijn.be/stops/207364", "https://data.delijn.be/stops/207708"], ["https://data.delijn.be/stops/208267", "https://data.delijn.be/stops/209266"], ["https://data.delijn.be/stops/406067", "https://data.delijn.be/stops/406071"], ["https://data.delijn.be/stops/201775", "https://data.delijn.be/stops/219004"], ["https://data.delijn.be/stops/208161", "https://data.delijn.be/stops/209008"], ["https://data.delijn.be/stops/502072", "https://data.delijn.be/stops/507072"], ["https://data.delijn.be/stops/406246", "https://data.delijn.be/stops/406255"], ["https://data.delijn.be/stops/504630", "https://data.delijn.be/stops/509621"], ["https://data.delijn.be/stops/402812", "https://data.delijn.be/stops/402813"], ["https://data.delijn.be/stops/106478", "https://data.delijn.be/stops/107456"], ["https://data.delijn.be/stops/304295", "https://data.delijn.be/stops/304474"], ["https://data.delijn.be/stops/105153", "https://data.delijn.be/stops/105157"], ["https://data.delijn.be/stops/207046", "https://data.delijn.be/stops/207999"], ["https://data.delijn.be/stops/401132", "https://data.delijn.be/stops/406549"], ["https://data.delijn.be/stops/407067", "https://data.delijn.be/stops/410014"], ["https://data.delijn.be/stops/505318", "https://data.delijn.be/stops/505802"], ["https://data.delijn.be/stops/202547", "https://data.delijn.be/stops/203547"], ["https://data.delijn.be/stops/202045", "https://data.delijn.be/stops/202249"], ["https://data.delijn.be/stops/304519", "https://data.delijn.be/stops/304520"], ["https://data.delijn.be/stops/301025", "https://data.delijn.be/stops/301026"], ["https://data.delijn.be/stops/200193", "https://data.delijn.be/stops/202756"], ["https://data.delijn.be/stops/102171", "https://data.delijn.be/stops/104117"], ["https://data.delijn.be/stops/200567", "https://data.delijn.be/stops/201567"], ["https://data.delijn.be/stops/207533", "https://data.delijn.be/stops/207540"], ["https://data.delijn.be/stops/305681", "https://data.delijn.be/stops/305697"], ["https://data.delijn.be/stops/106894", "https://data.delijn.be/stops/107219"], ["https://data.delijn.be/stops/101664", "https://data.delijn.be/stops/106487"], ["https://data.delijn.be/stops/106885", "https://data.delijn.be/stops/109750"], ["https://data.delijn.be/stops/204376", "https://data.delijn.be/stops/205762"], ["https://data.delijn.be/stops/306881", "https://data.delijn.be/stops/307873"], ["https://data.delijn.be/stops/109052", "https://data.delijn.be/stops/109070"], ["https://data.delijn.be/stops/507518", "https://data.delijn.be/stops/509795"], ["https://data.delijn.be/stops/400208", "https://data.delijn.be/stops/400239"], ["https://data.delijn.be/stops/208688", "https://data.delijn.be/stops/208710"], ["https://data.delijn.be/stops/302542", "https://data.delijn.be/stops/307810"], ["https://data.delijn.be/stops/300344", "https://data.delijn.be/stops/304860"], ["https://data.delijn.be/stops/107180", "https://data.delijn.be/stops/107185"], ["https://data.delijn.be/stops/503616", "https://data.delijn.be/stops/508752"], ["https://data.delijn.be/stops/104784", "https://data.delijn.be/stops/108123"], ["https://data.delijn.be/stops/400992", "https://data.delijn.be/stops/406589"], ["https://data.delijn.be/stops/300825", "https://data.delijn.be/stops/301055"], ["https://data.delijn.be/stops/504012", "https://data.delijn.be/stops/505817"], ["https://data.delijn.be/stops/504214", "https://data.delijn.be/stops/504217"], ["https://data.delijn.be/stops/102194", "https://data.delijn.be/stops/104271"], ["https://data.delijn.be/stops/200538", "https://data.delijn.be/stops/201538"], ["https://data.delijn.be/stops/104470", "https://data.delijn.be/stops/104719"], ["https://data.delijn.be/stops/201730", "https://data.delijn.be/stops/210855"], ["https://data.delijn.be/stops/301446", "https://data.delijn.be/stops/301447"], ["https://data.delijn.be/stops/105195", "https://data.delijn.be/stops/105200"], ["https://data.delijn.be/stops/405805", "https://data.delijn.be/stops/409735"], ["https://data.delijn.be/stops/405489", "https://data.delijn.be/stops/409287"], ["https://data.delijn.be/stops/206708", "https://data.delijn.be/stops/207606"], ["https://data.delijn.be/stops/505834", "https://data.delijn.be/stops/505835"], ["https://data.delijn.be/stops/200925", "https://data.delijn.be/stops/203247"], ["https://data.delijn.be/stops/503547", "https://data.delijn.be/stops/509277"], ["https://data.delijn.be/stops/208353", "https://data.delijn.be/stops/208799"], ["https://data.delijn.be/stops/300679", "https://data.delijn.be/stops/305965"], ["https://data.delijn.be/stops/106112", "https://data.delijn.be/stops/106113"], ["https://data.delijn.be/stops/204751", "https://data.delijn.be/stops/205247"], ["https://data.delijn.be/stops/300232", "https://data.delijn.be/stops/300233"], ["https://data.delijn.be/stops/204162", "https://data.delijn.be/stops/206399"], ["https://data.delijn.be/stops/402807", "https://data.delijn.be/stops/406972"], ["https://data.delijn.be/stops/303076", "https://data.delijn.be/stops/303077"], ["https://data.delijn.be/stops/109071", "https://data.delijn.be/stops/109559"], ["https://data.delijn.be/stops/207988", "https://data.delijn.be/stops/217011"], ["https://data.delijn.be/stops/503553", "https://data.delijn.be/stops/503993"], ["https://data.delijn.be/stops/400150", "https://data.delijn.be/stops/410031"], ["https://data.delijn.be/stops/504290", "https://data.delijn.be/stops/509290"], ["https://data.delijn.be/stops/405282", "https://data.delijn.be/stops/407742"], ["https://data.delijn.be/stops/503823", "https://data.delijn.be/stops/508823"], ["https://data.delijn.be/stops/502432", "https://data.delijn.be/stops/507697"], ["https://data.delijn.be/stops/501210", "https://data.delijn.be/stops/505757"], ["https://data.delijn.be/stops/200910", "https://data.delijn.be/stops/203253"], ["https://data.delijn.be/stops/503897", "https://data.delijn.be/stops/504146"], ["https://data.delijn.be/stops/501130", "https://data.delijn.be/stops/506133"], ["https://data.delijn.be/stops/107829", "https://data.delijn.be/stops/107831"], ["https://data.delijn.be/stops/300009", "https://data.delijn.be/stops/304682"], ["https://data.delijn.be/stops/206252", "https://data.delijn.be/stops/207583"], ["https://data.delijn.be/stops/501431", "https://data.delijn.be/stops/506432"], ["https://data.delijn.be/stops/209120", "https://data.delijn.be/stops/218009"], ["https://data.delijn.be/stops/501149", "https://data.delijn.be/stops/506156"], ["https://data.delijn.be/stops/407895", "https://data.delijn.be/stops/301841"], ["https://data.delijn.be/stops/207157", "https://data.delijn.be/stops/207673"], ["https://data.delijn.be/stops/406844", "https://data.delijn.be/stops/408629"], ["https://data.delijn.be/stops/300018", "https://data.delijn.be/stops/301133"], ["https://data.delijn.be/stops/202900", "https://data.delijn.be/stops/202903"], ["https://data.delijn.be/stops/407873", "https://data.delijn.be/stops/408055"], ["https://data.delijn.be/stops/403572", "https://data.delijn.be/stops/404960"], ["https://data.delijn.be/stops/106109", "https://data.delijn.be/stops/109183"], ["https://data.delijn.be/stops/204917", "https://data.delijn.be/stops/204919"], ["https://data.delijn.be/stops/407978", "https://data.delijn.be/stops/407995"], ["https://data.delijn.be/stops/400374", "https://data.delijn.be/stops/406843"], ["https://data.delijn.be/stops/105276", "https://data.delijn.be/stops/105296"], ["https://data.delijn.be/stops/106290", "https://data.delijn.be/stops/106312"], ["https://data.delijn.be/stops/501617", "https://data.delijn.be/stops/501618"], ["https://data.delijn.be/stops/503301", "https://data.delijn.be/stops/503302"], ["https://data.delijn.be/stops/503948", "https://data.delijn.be/stops/505541"], ["https://data.delijn.be/stops/206337", "https://data.delijn.be/stops/207336"], ["https://data.delijn.be/stops/105738", "https://data.delijn.be/stops/109857"], ["https://data.delijn.be/stops/105997", "https://data.delijn.be/stops/105998"], ["https://data.delijn.be/stops/209318", "https://data.delijn.be/stops/209319"], ["https://data.delijn.be/stops/405832", "https://data.delijn.be/stops/405867"], ["https://data.delijn.be/stops/408235", "https://data.delijn.be/stops/408376"], ["https://data.delijn.be/stops/502436", "https://data.delijn.be/stops/507429"], ["https://data.delijn.be/stops/303427", "https://data.delijn.be/stops/303430"], ["https://data.delijn.be/stops/204383", "https://data.delijn.be/stops/205383"], ["https://data.delijn.be/stops/304307", "https://data.delijn.be/stops/304308"], ["https://data.delijn.be/stops/502452", "https://data.delijn.be/stops/502634"], ["https://data.delijn.be/stops/104383", "https://data.delijn.be/stops/104399"], ["https://data.delijn.be/stops/303881", "https://data.delijn.be/stops/303882"], ["https://data.delijn.be/stops/200590", "https://data.delijn.be/stops/201241"], ["https://data.delijn.be/stops/302269", "https://data.delijn.be/stops/302270"], ["https://data.delijn.be/stops/502816", "https://data.delijn.be/stops/502818"], ["https://data.delijn.be/stops/305633", "https://data.delijn.be/stops/308407"], ["https://data.delijn.be/stops/408886", "https://data.delijn.be/stops/408918"], ["https://data.delijn.be/stops/501209", "https://data.delijn.be/stops/506209"], ["https://data.delijn.be/stops/402219", "https://data.delijn.be/stops/410052"], ["https://data.delijn.be/stops/201378", "https://data.delijn.be/stops/210049"], ["https://data.delijn.be/stops/106656", "https://data.delijn.be/stops/106664"], ["https://data.delijn.be/stops/300414", "https://data.delijn.be/stops/300611"], ["https://data.delijn.be/stops/401179", "https://data.delijn.be/stops/401189"], ["https://data.delijn.be/stops/203967", "https://data.delijn.be/stops/205092"], ["https://data.delijn.be/stops/106589", "https://data.delijn.be/stops/107387"], ["https://data.delijn.be/stops/208234", "https://data.delijn.be/stops/209234"], ["https://data.delijn.be/stops/306704", "https://data.delijn.be/stops/307933"], ["https://data.delijn.be/stops/402572", "https://data.delijn.be/stops/402655"], ["https://data.delijn.be/stops/109291", "https://data.delijn.be/stops/109292"], ["https://data.delijn.be/stops/504327", "https://data.delijn.be/stops/504694"], ["https://data.delijn.be/stops/400536", "https://data.delijn.be/stops/400554"], ["https://data.delijn.be/stops/205181", "https://data.delijn.be/stops/205217"], ["https://data.delijn.be/stops/510002", "https://data.delijn.be/stops/510003"], ["https://data.delijn.be/stops/205581", "https://data.delijn.be/stops/214007"], ["https://data.delijn.be/stops/408526", "https://data.delijn.be/stops/408527"], ["https://data.delijn.be/stops/407000", "https://data.delijn.be/stops/407001"], ["https://data.delijn.be/stops/302475", "https://data.delijn.be/stops/302476"], ["https://data.delijn.be/stops/303425", "https://data.delijn.be/stops/305042"], ["https://data.delijn.be/stops/407662", "https://data.delijn.be/stops/407663"], ["https://data.delijn.be/stops/203284", "https://data.delijn.be/stops/203285"], ["https://data.delijn.be/stops/401094", "https://data.delijn.be/stops/401095"], ["https://data.delijn.be/stops/400052", "https://data.delijn.be/stops/400096"], ["https://data.delijn.be/stops/404448", "https://data.delijn.be/stops/404449"], ["https://data.delijn.be/stops/404793", "https://data.delijn.be/stops/404794"], ["https://data.delijn.be/stops/207954", "https://data.delijn.be/stops/207955"], ["https://data.delijn.be/stops/208392", "https://data.delijn.be/stops/208393"], ["https://data.delijn.be/stops/200412", "https://data.delijn.be/stops/201410"], ["https://data.delijn.be/stops/106513", "https://data.delijn.be/stops/106515"], ["https://data.delijn.be/stops/502631", "https://data.delijn.be/stops/507410"], ["https://data.delijn.be/stops/503715", "https://data.delijn.be/stops/508713"], ["https://data.delijn.be/stops/201138", "https://data.delijn.be/stops/209450"], ["https://data.delijn.be/stops/206342", "https://data.delijn.be/stops/207343"], ["https://data.delijn.be/stops/308500", "https://data.delijn.be/stops/308502"], ["https://data.delijn.be/stops/302072", "https://data.delijn.be/stops/303515"], ["https://data.delijn.be/stops/505833", "https://data.delijn.be/stops/507223"], ["https://data.delijn.be/stops/407959", "https://data.delijn.be/stops/408070"], ["https://data.delijn.be/stops/109350", "https://data.delijn.be/stops/109357"], ["https://data.delijn.be/stops/300235", "https://data.delijn.be/stops/300293"], ["https://data.delijn.be/stops/103752", "https://data.delijn.be/stops/103925"], ["https://data.delijn.be/stops/200434", "https://data.delijn.be/stops/200435"], ["https://data.delijn.be/stops/205380", "https://data.delijn.be/stops/205391"], ["https://data.delijn.be/stops/406719", "https://data.delijn.be/stops/410049"], ["https://data.delijn.be/stops/304116", "https://data.delijn.be/stops/308447"], ["https://data.delijn.be/stops/402656", "https://data.delijn.be/stops/306391"], ["https://data.delijn.be/stops/208395", "https://data.delijn.be/stops/208742"], ["https://data.delijn.be/stops/202620", "https://data.delijn.be/stops/203620"], ["https://data.delijn.be/stops/203714", "https://data.delijn.be/stops/203729"], ["https://data.delijn.be/stops/105444", "https://data.delijn.be/stops/109617"], ["https://data.delijn.be/stops/403953", "https://data.delijn.be/stops/403954"], ["https://data.delijn.be/stops/305070", "https://data.delijn.be/stops/307295"], ["https://data.delijn.be/stops/303326", "https://data.delijn.be/stops/303327"], ["https://data.delijn.be/stops/502612", "https://data.delijn.be/stops/507623"], ["https://data.delijn.be/stops/302121", "https://data.delijn.be/stops/302141"], ["https://data.delijn.be/stops/107587", "https://data.delijn.be/stops/107588"], ["https://data.delijn.be/stops/502910", "https://data.delijn.be/stops/507154"], ["https://data.delijn.be/stops/207535", "https://data.delijn.be/stops/209739"], ["https://data.delijn.be/stops/206301", "https://data.delijn.be/stops/207302"], ["https://data.delijn.be/stops/403521", "https://data.delijn.be/stops/410276"], ["https://data.delijn.be/stops/106470", "https://data.delijn.be/stops/106472"], ["https://data.delijn.be/stops/308732", "https://data.delijn.be/stops/308734"], ["https://data.delijn.be/stops/506109", "https://data.delijn.be/stops/506111"], ["https://data.delijn.be/stops/408523", "https://data.delijn.be/stops/408571"], ["https://data.delijn.be/stops/501428", "https://data.delijn.be/stops/501671"], ["https://data.delijn.be/stops/502731", "https://data.delijn.be/stops/507730"], ["https://data.delijn.be/stops/300286", "https://data.delijn.be/stops/300289"], ["https://data.delijn.be/stops/504479", "https://data.delijn.be/stops/509479"], ["https://data.delijn.be/stops/504231", "https://data.delijn.be/stops/509231"], ["https://data.delijn.be/stops/109854", "https://data.delijn.be/stops/109981"], ["https://data.delijn.be/stops/205095", "https://data.delijn.be/stops/205467"], ["https://data.delijn.be/stops/300251", "https://data.delijn.be/stops/304656"], ["https://data.delijn.be/stops/102926", "https://data.delijn.be/stops/103105"], ["https://data.delijn.be/stops/505651", "https://data.delijn.be/stops/507918"], ["https://data.delijn.be/stops/102150", "https://data.delijn.be/stops/102446"], ["https://data.delijn.be/stops/502642", "https://data.delijn.be/stops/507642"], ["https://data.delijn.be/stops/408770", "https://data.delijn.be/stops/408771"], ["https://data.delijn.be/stops/106251", "https://data.delijn.be/stops/106680"], ["https://data.delijn.be/stops/401525", "https://data.delijn.be/stops/403814"], ["https://data.delijn.be/stops/303796", "https://data.delijn.be/stops/308900"], ["https://data.delijn.be/stops/106282", "https://data.delijn.be/stops/106284"], ["https://data.delijn.be/stops/407403", "https://data.delijn.be/stops/409496"], ["https://data.delijn.be/stops/203748", "https://data.delijn.be/stops/207594"], ["https://data.delijn.be/stops/103101", "https://data.delijn.be/stops/105851"], ["https://data.delijn.be/stops/109241", "https://data.delijn.be/stops/109246"], ["https://data.delijn.be/stops/507685", "https://data.delijn.be/stops/508002"], ["https://data.delijn.be/stops/200157", "https://data.delijn.be/stops/206243"], ["https://data.delijn.be/stops/407944", "https://data.delijn.be/stops/408065"], ["https://data.delijn.be/stops/201065", "https://data.delijn.be/stops/201393"], ["https://data.delijn.be/stops/302368", "https://data.delijn.be/stops/306195"], ["https://data.delijn.be/stops/301795", "https://data.delijn.be/stops/301802"], ["https://data.delijn.be/stops/402240", "https://data.delijn.be/stops/404568"], ["https://data.delijn.be/stops/307856", "https://data.delijn.be/stops/307858"], ["https://data.delijn.be/stops/108933", "https://data.delijn.be/stops/108936"], ["https://data.delijn.be/stops/207751", "https://data.delijn.be/stops/207769"], ["https://data.delijn.be/stops/107603", "https://data.delijn.be/stops/406792"], ["https://data.delijn.be/stops/205189", "https://data.delijn.be/stops/205230"], ["https://data.delijn.be/stops/403337", "https://data.delijn.be/stops/403349"], ["https://data.delijn.be/stops/400729", "https://data.delijn.be/stops/400938"], ["https://data.delijn.be/stops/407396", "https://data.delijn.be/stops/408482"], ["https://data.delijn.be/stops/105989", "https://data.delijn.be/stops/109870"], ["https://data.delijn.be/stops/301760", "https://data.delijn.be/stops/304572"], ["https://data.delijn.be/stops/402345", "https://data.delijn.be/stops/402416"], ["https://data.delijn.be/stops/109061", "https://data.delijn.be/stops/405804"], ["https://data.delijn.be/stops/504239", "https://data.delijn.be/stops/504654"], ["https://data.delijn.be/stops/501732", "https://data.delijn.be/stops/506662"], ["https://data.delijn.be/stops/201776", "https://data.delijn.be/stops/209855"], ["https://data.delijn.be/stops/106082", "https://data.delijn.be/stops/108729"], ["https://data.delijn.be/stops/404336", "https://data.delijn.be/stops/404341"], ["https://data.delijn.be/stops/201305", "https://data.delijn.be/stops/202762"], ["https://data.delijn.be/stops/504388", "https://data.delijn.be/stops/509712"], ["https://data.delijn.be/stops/211078", "https://data.delijn.be/stops/211200"], ["https://data.delijn.be/stops/401774", "https://data.delijn.be/stops/401775"], ["https://data.delijn.be/stops/208159", "https://data.delijn.be/stops/209001"], ["https://data.delijn.be/stops/405701", "https://data.delijn.be/stops/407201"], ["https://data.delijn.be/stops/505945", "https://data.delijn.be/stops/508836"], ["https://data.delijn.be/stops/200877", "https://data.delijn.be/stops/203062"], ["https://data.delijn.be/stops/200691", "https://data.delijn.be/stops/201681"], ["https://data.delijn.be/stops/301727", "https://data.delijn.be/stops/301728"], ["https://data.delijn.be/stops/304403", "https://data.delijn.be/stops/308827"], ["https://data.delijn.be/stops/208598", "https://data.delijn.be/stops/307335"], ["https://data.delijn.be/stops/405375", "https://data.delijn.be/stops/409285"], ["https://data.delijn.be/stops/204318", "https://data.delijn.be/stops/205059"], ["https://data.delijn.be/stops/404971", "https://data.delijn.be/stops/404973"], ["https://data.delijn.be/stops/405014", "https://data.delijn.be/stops/408155"], ["https://data.delijn.be/stops/105743", "https://data.delijn.be/stops/109953"], ["https://data.delijn.be/stops/401507", "https://data.delijn.be/stops/404949"], ["https://data.delijn.be/stops/503382", "https://data.delijn.be/stops/509907"], ["https://data.delijn.be/stops/204466", "https://data.delijn.be/stops/204474"], ["https://data.delijn.be/stops/402363", "https://data.delijn.be/stops/410072"], ["https://data.delijn.be/stops/301293", "https://data.delijn.be/stops/307324"], ["https://data.delijn.be/stops/304486", "https://data.delijn.be/stops/304516"], ["https://data.delijn.be/stops/107434", "https://data.delijn.be/stops/107539"], ["https://data.delijn.be/stops/304022", "https://data.delijn.be/stops/305443"], ["https://data.delijn.be/stops/401046", "https://data.delijn.be/stops/401131"], ["https://data.delijn.be/stops/502674", "https://data.delijn.be/stops/507655"], ["https://data.delijn.be/stops/404975", "https://data.delijn.be/stops/404977"], ["https://data.delijn.be/stops/400781", "https://data.delijn.be/stops/409343"], ["https://data.delijn.be/stops/208601", "https://data.delijn.be/stops/307592"], ["https://data.delijn.be/stops/206059", "https://data.delijn.be/stops/207059"], ["https://data.delijn.be/stops/204530", "https://data.delijn.be/stops/205536"], ["https://data.delijn.be/stops/407830", "https://data.delijn.be/stops/407903"], ["https://data.delijn.be/stops/206496", "https://data.delijn.be/stops/207507"], ["https://data.delijn.be/stops/401801", "https://data.delijn.be/stops/401804"], ["https://data.delijn.be/stops/302282", "https://data.delijn.be/stops/302298"], ["https://data.delijn.be/stops/403863", "https://data.delijn.be/stops/403866"], ["https://data.delijn.be/stops/502149", "https://data.delijn.be/stops/507138"], ["https://data.delijn.be/stops/500958", "https://data.delijn.be/stops/503286"], ["https://data.delijn.be/stops/201941", "https://data.delijn.be/stops/202943"], ["https://data.delijn.be/stops/508560", "https://data.delijn.be/stops/509891"], ["https://data.delijn.be/stops/504133", "https://data.delijn.be/stops/504976"], ["https://data.delijn.be/stops/303656", "https://data.delijn.be/stops/308611"], ["https://data.delijn.be/stops/300945", "https://data.delijn.be/stops/301015"], ["https://data.delijn.be/stops/400782", "https://data.delijn.be/stops/409647"], ["https://data.delijn.be/stops/501256", "https://data.delijn.be/stops/506250"], ["https://data.delijn.be/stops/501388", "https://data.delijn.be/stops/506500"], ["https://data.delijn.be/stops/304423", "https://data.delijn.be/stops/304424"], ["https://data.delijn.be/stops/502757", "https://data.delijn.be/stops/503326"], ["https://data.delijn.be/stops/400032", "https://data.delijn.be/stops/400037"], ["https://data.delijn.be/stops/501050", "https://data.delijn.be/stops/502728"], ["https://data.delijn.be/stops/407514", "https://data.delijn.be/stops/407515"], ["https://data.delijn.be/stops/106733", "https://data.delijn.be/stops/106773"], ["https://data.delijn.be/stops/106858", "https://data.delijn.be/stops/109621"], ["https://data.delijn.be/stops/503440", "https://data.delijn.be/stops/503442"], ["https://data.delijn.be/stops/101856", "https://data.delijn.be/stops/101860"], ["https://data.delijn.be/stops/201874", "https://data.delijn.be/stops/201876"], ["https://data.delijn.be/stops/401270", "https://data.delijn.be/stops/401273"], ["https://data.delijn.be/stops/210116", "https://data.delijn.be/stops/211115"], ["https://data.delijn.be/stops/105687", "https://data.delijn.be/stops/105689"], ["https://data.delijn.be/stops/200851", "https://data.delijn.be/stops/200893"], ["https://data.delijn.be/stops/503541", "https://data.delijn.be/stops/503580"], ["https://data.delijn.be/stops/503170", "https://data.delijn.be/stops/508172"], ["https://data.delijn.be/stops/508402", "https://data.delijn.be/stops/510019"], ["https://data.delijn.be/stops/105668", "https://data.delijn.be/stops/106044"], ["https://data.delijn.be/stops/108753", "https://data.delijn.be/stops/108754"], ["https://data.delijn.be/stops/104046", "https://data.delijn.be/stops/306589"], ["https://data.delijn.be/stops/503120", "https://data.delijn.be/stops/504996"], ["https://data.delijn.be/stops/306201", "https://data.delijn.be/stops/306202"], ["https://data.delijn.be/stops/202843", "https://data.delijn.be/stops/208425"], ["https://data.delijn.be/stops/200205", "https://data.delijn.be/stops/201255"], ["https://data.delijn.be/stops/204452", "https://data.delijn.be/stops/205344"], ["https://data.delijn.be/stops/308108", "https://data.delijn.be/stops/308111"], ["https://data.delijn.be/stops/204399", "https://data.delijn.be/stops/204768"], ["https://data.delijn.be/stops/300596", "https://data.delijn.be/stops/303021"], ["https://data.delijn.be/stops/106106", "https://data.delijn.be/stops/106124"], ["https://data.delijn.be/stops/301231", "https://data.delijn.be/stops/306325"], ["https://data.delijn.be/stops/302798", "https://data.delijn.be/stops/302799"], ["https://data.delijn.be/stops/302214", "https://data.delijn.be/stops/302245"], ["https://data.delijn.be/stops/307651", "https://data.delijn.be/stops/307694"], ["https://data.delijn.be/stops/408800", "https://data.delijn.be/stops/408829"], ["https://data.delijn.be/stops/408073", "https://data.delijn.be/stops/410129"], ["https://data.delijn.be/stops/302462", "https://data.delijn.be/stops/308830"], ["https://data.delijn.be/stops/207585", "https://data.delijn.be/stops/207841"], ["https://data.delijn.be/stops/200214", "https://data.delijn.be/stops/201266"], ["https://data.delijn.be/stops/209585", "https://data.delijn.be/stops/209677"], ["https://data.delijn.be/stops/106152", "https://data.delijn.be/stops/106153"], ["https://data.delijn.be/stops/103727", "https://data.delijn.be/stops/103728"], ["https://data.delijn.be/stops/109038", "https://data.delijn.be/stops/109079"], ["https://data.delijn.be/stops/304164", "https://data.delijn.be/stops/307558"], ["https://data.delijn.be/stops/101877", "https://data.delijn.be/stops/305624"], ["https://data.delijn.be/stops/405037", "https://data.delijn.be/stops/405055"], ["https://data.delijn.be/stops/504333", "https://data.delijn.be/stops/504341"], ["https://data.delijn.be/stops/201477", "https://data.delijn.be/stops/210057"], ["https://data.delijn.be/stops/104588", "https://data.delijn.be/stops/106413"], ["https://data.delijn.be/stops/505550", "https://data.delijn.be/stops/507175"], ["https://data.delijn.be/stops/502796", "https://data.delijn.be/stops/508344"], ["https://data.delijn.be/stops/401166", "https://data.delijn.be/stops/401167"], ["https://data.delijn.be/stops/205986", "https://data.delijn.be/stops/206003"], ["https://data.delijn.be/stops/302142", "https://data.delijn.be/stops/306272"], ["https://data.delijn.be/stops/108982", "https://data.delijn.be/stops/109689"], ["https://data.delijn.be/stops/405323", "https://data.delijn.be/stops/405325"], ["https://data.delijn.be/stops/305197", "https://data.delijn.be/stops/308048"], ["https://data.delijn.be/stops/101828", "https://data.delijn.be/stops/106997"], ["https://data.delijn.be/stops/202755", "https://data.delijn.be/stops/203311"], ["https://data.delijn.be/stops/301978", "https://data.delijn.be/stops/301979"], ["https://data.delijn.be/stops/204722", "https://data.delijn.be/stops/205721"], ["https://data.delijn.be/stops/307622", "https://data.delijn.be/stops/307623"], ["https://data.delijn.be/stops/108333", "https://data.delijn.be/stops/109333"], ["https://data.delijn.be/stops/508259", "https://data.delijn.be/stops/508749"], ["https://data.delijn.be/stops/104713", "https://data.delijn.be/stops/108168"], ["https://data.delijn.be/stops/504276", "https://data.delijn.be/stops/508952"], ["https://data.delijn.be/stops/406576", "https://data.delijn.be/stops/406577"], ["https://data.delijn.be/stops/209552", "https://data.delijn.be/stops/209553"], ["https://data.delijn.be/stops/209116", "https://data.delijn.be/stops/209336"], ["https://data.delijn.be/stops/404141", "https://data.delijn.be/stops/405915"], ["https://data.delijn.be/stops/509121", "https://data.delijn.be/stops/509124"], ["https://data.delijn.be/stops/303719", "https://data.delijn.be/stops/303721"], ["https://data.delijn.be/stops/207985", "https://data.delijn.be/stops/207986"], ["https://data.delijn.be/stops/208526", "https://data.delijn.be/stops/209082"], ["https://data.delijn.be/stops/204436", "https://data.delijn.be/stops/205439"], ["https://data.delijn.be/stops/207671", "https://data.delijn.be/stops/209618"], ["https://data.delijn.be/stops/202468", "https://data.delijn.be/stops/203468"], ["https://data.delijn.be/stops/207212", "https://data.delijn.be/stops/207213"], ["https://data.delijn.be/stops/409387", "https://data.delijn.be/stops/410167"], ["https://data.delijn.be/stops/206209", "https://data.delijn.be/stops/207818"], ["https://data.delijn.be/stops/403964", "https://data.delijn.be/stops/403979"], ["https://data.delijn.be/stops/201088", "https://data.delijn.be/stops/203961"], ["https://data.delijn.be/stops/204920", "https://data.delijn.be/stops/205920"], ["https://data.delijn.be/stops/208040", "https://data.delijn.be/stops/208046"], ["https://data.delijn.be/stops/105971", "https://data.delijn.be/stops/107140"], ["https://data.delijn.be/stops/506088", "https://data.delijn.be/stops/507739"], ["https://data.delijn.be/stops/406270", "https://data.delijn.be/stops/406271"], ["https://data.delijn.be/stops/404330", "https://data.delijn.be/stops/404331"], ["https://data.delijn.be/stops/301456", "https://data.delijn.be/stops/308076"], ["https://data.delijn.be/stops/302810", "https://data.delijn.be/stops/304030"], ["https://data.delijn.be/stops/109005", "https://data.delijn.be/stops/109010"], ["https://data.delijn.be/stops/502493", "https://data.delijn.be/stops/505744"], ["https://data.delijn.be/stops/204388", "https://data.delijn.be/stops/205388"], ["https://data.delijn.be/stops/502271", "https://data.delijn.be/stops/507271"], ["https://data.delijn.be/stops/106188", "https://data.delijn.be/stops/107439"], ["https://data.delijn.be/stops/406964", "https://data.delijn.be/stops/406966"], ["https://data.delijn.be/stops/301684", "https://data.delijn.be/stops/306294"], ["https://data.delijn.be/stops/108667", "https://data.delijn.be/stops/306631"], ["https://data.delijn.be/stops/504245", "https://data.delijn.be/stops/509245"], ["https://data.delijn.be/stops/502057", "https://data.delijn.be/stops/507050"], ["https://data.delijn.be/stops/202115", "https://data.delijn.be/stops/204773"], ["https://data.delijn.be/stops/208583", "https://data.delijn.be/stops/208841"], ["https://data.delijn.be/stops/300954", "https://data.delijn.be/stops/308854"], ["https://data.delijn.be/stops/202176", "https://data.delijn.be/stops/202179"], ["https://data.delijn.be/stops/504664", "https://data.delijn.be/stops/505307"], ["https://data.delijn.be/stops/204541", "https://data.delijn.be/stops/205668"], ["https://data.delijn.be/stops/106428", "https://data.delijn.be/stops/106562"], ["https://data.delijn.be/stops/301351", "https://data.delijn.be/stops/307886"], ["https://data.delijn.be/stops/402260", "https://data.delijn.be/stops/402261"], ["https://data.delijn.be/stops/102441", "https://data.delijn.be/stops/102601"], ["https://data.delijn.be/stops/102399", "https://data.delijn.be/stops/107855"], ["https://data.delijn.be/stops/201893", "https://data.delijn.be/stops/211113"], ["https://data.delijn.be/stops/106191", "https://data.delijn.be/stops/107441"], ["https://data.delijn.be/stops/103677", "https://data.delijn.be/stops/103731"], ["https://data.delijn.be/stops/105041", "https://data.delijn.be/stops/105042"], ["https://data.delijn.be/stops/503764", "https://data.delijn.be/stops/508774"], ["https://data.delijn.be/stops/201104", "https://data.delijn.be/stops/201360"], ["https://data.delijn.be/stops/202341", "https://data.delijn.be/stops/203448"], ["https://data.delijn.be/stops/305547", "https://data.delijn.be/stops/307184"], ["https://data.delijn.be/stops/102071", "https://data.delijn.be/stops/106535"], ["https://data.delijn.be/stops/406186", "https://data.delijn.be/stops/406452"], ["https://data.delijn.be/stops/307833", "https://data.delijn.be/stops/308278"], ["https://data.delijn.be/stops/202420", "https://data.delijn.be/stops/203418"], ["https://data.delijn.be/stops/101177", "https://data.delijn.be/stops/106784"], ["https://data.delijn.be/stops/504752", "https://data.delijn.be/stops/508171"], ["https://data.delijn.be/stops/101932", "https://data.delijn.be/stops/106252"], ["https://data.delijn.be/stops/201925", "https://data.delijn.be/stops/206589"], ["https://data.delijn.be/stops/101528", "https://data.delijn.be/stops/101953"], ["https://data.delijn.be/stops/401899", "https://data.delijn.be/stops/401904"], ["https://data.delijn.be/stops/506411", "https://data.delijn.be/stops/506416"], ["https://data.delijn.be/stops/404586", "https://data.delijn.be/stops/407869"], ["https://data.delijn.be/stops/505845", "https://data.delijn.be/stops/505846"], ["https://data.delijn.be/stops/404145", "https://data.delijn.be/stops/404169"], ["https://data.delijn.be/stops/504644", "https://data.delijn.be/stops/509644"], ["https://data.delijn.be/stops/308513", "https://data.delijn.be/stops/308690"], ["https://data.delijn.be/stops/404225", "https://data.delijn.be/stops/404231"], ["https://data.delijn.be/stops/106942", "https://data.delijn.be/stops/108697"], ["https://data.delijn.be/stops/107222", "https://data.delijn.be/stops/107223"], ["https://data.delijn.be/stops/200451", "https://data.delijn.be/stops/201451"], ["https://data.delijn.be/stops/308448", "https://data.delijn.be/stops/308449"], ["https://data.delijn.be/stops/306717", "https://data.delijn.be/stops/306719"], ["https://data.delijn.be/stops/205586", "https://data.delijn.be/stops/205597"], ["https://data.delijn.be/stops/506329", "https://data.delijn.be/stops/506351"], ["https://data.delijn.be/stops/305424", "https://data.delijn.be/stops/305508"], ["https://data.delijn.be/stops/403025", "https://data.delijn.be/stops/403133"], ["https://data.delijn.be/stops/204912", "https://data.delijn.be/stops/205912"], ["https://data.delijn.be/stops/206462", "https://data.delijn.be/stops/207462"], ["https://data.delijn.be/stops/209118", "https://data.delijn.be/stops/218008"], ["https://data.delijn.be/stops/502404", "https://data.delijn.be/stops/507404"], ["https://data.delijn.be/stops/507620", "https://data.delijn.be/stops/508089"], ["https://data.delijn.be/stops/202722", "https://data.delijn.be/stops/203722"], ["https://data.delijn.be/stops/300314", "https://data.delijn.be/stops/301689"], ["https://data.delijn.be/stops/401049", "https://data.delijn.be/stops/401134"], ["https://data.delijn.be/stops/400489", "https://data.delijn.be/stops/400948"], ["https://data.delijn.be/stops/406719", "https://data.delijn.be/stops/407796"], ["https://data.delijn.be/stops/405826", "https://data.delijn.be/stops/409422"], ["https://data.delijn.be/stops/210092", "https://data.delijn.be/stops/211092"], ["https://data.delijn.be/stops/304488", "https://data.delijn.be/stops/304491"], ["https://data.delijn.be/stops/504168", "https://data.delijn.be/stops/509194"], ["https://data.delijn.be/stops/405801", "https://data.delijn.be/stops/406995"], ["https://data.delijn.be/stops/205334", "https://data.delijn.be/stops/205817"], ["https://data.delijn.be/stops/106768", "https://data.delijn.be/stops/107519"], ["https://data.delijn.be/stops/407337", "https://data.delijn.be/stops/407761"], ["https://data.delijn.be/stops/102411", "https://data.delijn.be/stops/103304"], ["https://data.delijn.be/stops/106689", "https://data.delijn.be/stops/109390"], ["https://data.delijn.be/stops/504690", "https://data.delijn.be/stops/504692"], ["https://data.delijn.be/stops/301506", "https://data.delijn.be/stops/301508"], ["https://data.delijn.be/stops/301547", "https://data.delijn.be/stops/305166"], ["https://data.delijn.be/stops/402938", "https://data.delijn.be/stops/405905"], ["https://data.delijn.be/stops/103298", "https://data.delijn.be/stops/105086"], ["https://data.delijn.be/stops/200014", "https://data.delijn.be/stops/201016"], ["https://data.delijn.be/stops/304637", "https://data.delijn.be/stops/305978"], ["https://data.delijn.be/stops/109934", "https://data.delijn.be/stops/109935"], ["https://data.delijn.be/stops/302878", "https://data.delijn.be/stops/307056"], ["https://data.delijn.be/stops/302895", "https://data.delijn.be/stops/306098"], ["https://data.delijn.be/stops/200385", "https://data.delijn.be/stops/209958"], ["https://data.delijn.be/stops/206829", "https://data.delijn.be/stops/207250"], ["https://data.delijn.be/stops/502524", "https://data.delijn.be/stops/502526"], ["https://data.delijn.be/stops/105966", "https://data.delijn.be/stops/105968"], ["https://data.delijn.be/stops/405775", "https://data.delijn.be/stops/409735"], ["https://data.delijn.be/stops/104502", "https://data.delijn.be/stops/107931"], ["https://data.delijn.be/stops/208299", "https://data.delijn.be/stops/208317"], ["https://data.delijn.be/stops/208091", "https://data.delijn.be/stops/209040"], ["https://data.delijn.be/stops/200368", "https://data.delijn.be/stops/200452"], ["https://data.delijn.be/stops/300125", "https://data.delijn.be/stops/306867"], ["https://data.delijn.be/stops/206680", "https://data.delijn.be/stops/208102"], ["https://data.delijn.be/stops/103263", "https://data.delijn.be/stops/205631"], ["https://data.delijn.be/stops/502079", "https://data.delijn.be/stops/507076"], ["https://data.delijn.be/stops/108831", "https://data.delijn.be/stops/108832"], ["https://data.delijn.be/stops/101080", "https://data.delijn.be/stops/105105"], ["https://data.delijn.be/stops/502426", "https://data.delijn.be/stops/507367"], ["https://data.delijn.be/stops/401441", "https://data.delijn.be/stops/404282"], ["https://data.delijn.be/stops/408586", "https://data.delijn.be/stops/408587"], ["https://data.delijn.be/stops/302427", "https://data.delijn.be/stops/302451"], ["https://data.delijn.be/stops/201693", "https://data.delijn.be/stops/203980"], ["https://data.delijn.be/stops/104936", "https://data.delijn.be/stops/104937"], ["https://data.delijn.be/stops/502417", "https://data.delijn.be/stops/502418"], ["https://data.delijn.be/stops/102898", "https://data.delijn.be/stops/106758"], ["https://data.delijn.be/stops/208184", "https://data.delijn.be/stops/209184"], ["https://data.delijn.be/stops/407746", "https://data.delijn.be/stops/407757"], ["https://data.delijn.be/stops/108807", "https://data.delijn.be/stops/109664"], ["https://data.delijn.be/stops/505385", "https://data.delijn.be/stops/505847"], ["https://data.delijn.be/stops/104741", "https://data.delijn.be/stops/104759"], ["https://data.delijn.be/stops/201868", "https://data.delijn.be/stops/202016"], ["https://data.delijn.be/stops/505786", "https://data.delijn.be/stops/509458"], ["https://data.delijn.be/stops/407130", "https://data.delijn.be/stops/407327"], ["https://data.delijn.be/stops/202915", "https://data.delijn.be/stops/218503"], ["https://data.delijn.be/stops/102412", "https://data.delijn.be/stops/104129"], ["https://data.delijn.be/stops/501028", "https://data.delijn.be/stops/506058"], ["https://data.delijn.be/stops/400743", "https://data.delijn.be/stops/400938"], ["https://data.delijn.be/stops/405531", "https://data.delijn.be/stops/405534"], ["https://data.delijn.be/stops/303613", "https://data.delijn.be/stops/307194"], ["https://data.delijn.be/stops/504158", "https://data.delijn.be/stops/504180"], ["https://data.delijn.be/stops/408108", "https://data.delijn.be/stops/408109"], ["https://data.delijn.be/stops/305736", "https://data.delijn.be/stops/306329"], ["https://data.delijn.be/stops/201762", "https://data.delijn.be/stops/208847"], ["https://data.delijn.be/stops/103145", "https://data.delijn.be/stops/109442"], ["https://data.delijn.be/stops/503057", "https://data.delijn.be/stops/509846"], ["https://data.delijn.be/stops/207756", "https://data.delijn.be/stops/207795"], ["https://data.delijn.be/stops/505284", "https://data.delijn.be/stops/508436"], ["https://data.delijn.be/stops/502656", "https://data.delijn.be/stops/507663"], ["https://data.delijn.be/stops/105001", "https://data.delijn.be/stops/105057"], ["https://data.delijn.be/stops/406063", "https://data.delijn.be/stops/406089"], ["https://data.delijn.be/stops/304763", "https://data.delijn.be/stops/305250"], ["https://data.delijn.be/stops/508601", "https://data.delijn.be/stops/508864"], ["https://data.delijn.be/stops/102201", "https://data.delijn.be/stops/102248"], ["https://data.delijn.be/stops/102528", "https://data.delijn.be/stops/405710"], ["https://data.delijn.be/stops/105162", "https://data.delijn.be/stops/105163"], ["https://data.delijn.be/stops/103340", "https://data.delijn.be/stops/105809"], ["https://data.delijn.be/stops/507421", "https://data.delijn.be/stops/507644"], ["https://data.delijn.be/stops/400768", "https://data.delijn.be/stops/405258"], ["https://data.delijn.be/stops/405142", "https://data.delijn.be/stops/410165"], ["https://data.delijn.be/stops/200965", "https://data.delijn.be/stops/201269"], ["https://data.delijn.be/stops/208209", "https://data.delijn.be/stops/208838"], ["https://data.delijn.be/stops/404164", "https://data.delijn.be/stops/404172"], ["https://data.delijn.be/stops/209077", "https://data.delijn.be/stops/218029"], ["https://data.delijn.be/stops/502219", "https://data.delijn.be/stops/507216"], ["https://data.delijn.be/stops/106143", "https://data.delijn.be/stops/106145"], ["https://data.delijn.be/stops/501068", "https://data.delijn.be/stops/505355"], ["https://data.delijn.be/stops/304588", "https://data.delijn.be/stops/304613"], ["https://data.delijn.be/stops/204095", "https://data.delijn.be/stops/204208"], ["https://data.delijn.be/stops/307012", "https://data.delijn.be/stops/308358"], ["https://data.delijn.be/stops/504075", "https://data.delijn.be/stops/505573"], ["https://data.delijn.be/stops/201964", "https://data.delijn.be/stops/206787"], ["https://data.delijn.be/stops/305154", "https://data.delijn.be/stops/306881"], ["https://data.delijn.be/stops/108023", "https://data.delijn.be/stops/108024"], ["https://data.delijn.be/stops/205748", "https://data.delijn.be/stops/205757"], ["https://data.delijn.be/stops/502461", "https://data.delijn.be/stops/507461"], ["https://data.delijn.be/stops/408537", "https://data.delijn.be/stops/408817"], ["https://data.delijn.be/stops/101833", "https://data.delijn.be/stops/107089"], ["https://data.delijn.be/stops/201522", "https://data.delijn.be/stops/210131"], ["https://data.delijn.be/stops/400387", "https://data.delijn.be/stops/400404"], ["https://data.delijn.be/stops/507357", "https://data.delijn.be/stops/507675"], ["https://data.delijn.be/stops/502270", "https://data.delijn.be/stops/507270"], ["https://data.delijn.be/stops/201343", "https://data.delijn.be/stops/210106"], ["https://data.delijn.be/stops/504509", "https://data.delijn.be/stops/509509"], ["https://data.delijn.be/stops/304968", "https://data.delijn.be/stops/304973"], ["https://data.delijn.be/stops/204338", "https://data.delijn.be/stops/205300"], ["https://data.delijn.be/stops/503404", "https://data.delijn.be/stops/503534"], ["https://data.delijn.be/stops/508293", "https://data.delijn.be/stops/508436"], ["https://data.delijn.be/stops/105557", "https://data.delijn.be/stops/105559"], ["https://data.delijn.be/stops/405201", "https://data.delijn.be/stops/405221"], ["https://data.delijn.be/stops/407612", "https://data.delijn.be/stops/407689"], ["https://data.delijn.be/stops/207441", "https://data.delijn.be/stops/207442"], ["https://data.delijn.be/stops/305423", "https://data.delijn.be/stops/305434"], ["https://data.delijn.be/stops/402171", "https://data.delijn.be/stops/402224"], ["https://data.delijn.be/stops/301676", "https://data.delijn.be/stops/303994"], ["https://data.delijn.be/stops/502301", "https://data.delijn.be/stops/505680"], ["https://data.delijn.be/stops/401507", "https://data.delijn.be/stops/401893"], ["https://data.delijn.be/stops/105327", "https://data.delijn.be/stops/105328"], ["https://data.delijn.be/stops/407694", "https://data.delijn.be/stops/407695"], ["https://data.delijn.be/stops/302626", "https://data.delijn.be/stops/302632"], ["https://data.delijn.be/stops/202240", "https://data.delijn.be/stops/206870"], ["https://data.delijn.be/stops/300563", "https://data.delijn.be/stops/307857"], ["https://data.delijn.be/stops/503833", "https://data.delijn.be/stops/508830"], ["https://data.delijn.be/stops/402759", "https://data.delijn.be/stops/402768"], ["https://data.delijn.be/stops/201862", "https://data.delijn.be/stops/210034"], ["https://data.delijn.be/stops/207010", "https://data.delijn.be/stops/216001"], ["https://data.delijn.be/stops/105739", "https://data.delijn.be/stops/109835"], ["https://data.delijn.be/stops/204631", "https://data.delijn.be/stops/205614"], ["https://data.delijn.be/stops/106526", "https://data.delijn.be/stops/107098"], ["https://data.delijn.be/stops/207776", "https://data.delijn.be/stops/207778"], ["https://data.delijn.be/stops/200683", "https://data.delijn.be/stops/209651"], ["https://data.delijn.be/stops/205597", "https://data.delijn.be/stops/205797"], ["https://data.delijn.be/stops/206379", "https://data.delijn.be/stops/207380"], ["https://data.delijn.be/stops/105476", "https://data.delijn.be/stops/105682"], ["https://data.delijn.be/stops/108338", "https://data.delijn.be/stops/108341"], ["https://data.delijn.be/stops/501450", "https://data.delijn.be/stops/501452"], ["https://data.delijn.be/stops/101652", "https://data.delijn.be/stops/105501"], ["https://data.delijn.be/stops/407112", "https://data.delijn.be/stops/407277"], ["https://data.delijn.be/stops/301654", "https://data.delijn.be/stops/307754"], ["https://data.delijn.be/stops/206242", "https://data.delijn.be/stops/207405"], ["https://data.delijn.be/stops/404418", "https://data.delijn.be/stops/404419"], ["https://data.delijn.be/stops/102212", "https://data.delijn.be/stops/102224"], ["https://data.delijn.be/stops/408668", "https://data.delijn.be/stops/408762"], ["https://data.delijn.be/stops/206146", "https://data.delijn.be/stops/207092"], ["https://data.delijn.be/stops/206127", "https://data.delijn.be/stops/207084"], ["https://data.delijn.be/stops/201625", "https://data.delijn.be/stops/204984"], ["https://data.delijn.be/stops/206120", "https://data.delijn.be/stops/207068"], ["https://data.delijn.be/stops/502816", "https://data.delijn.be/stops/507681"], ["https://data.delijn.be/stops/401578", "https://data.delijn.be/stops/402280"], ["https://data.delijn.be/stops/502199", "https://data.delijn.be/stops/507199"], ["https://data.delijn.be/stops/402894", "https://data.delijn.be/stops/402896"], ["https://data.delijn.be/stops/504546", "https://data.delijn.be/stops/504701"], ["https://data.delijn.be/stops/300033", "https://data.delijn.be/stops/306089"], ["https://data.delijn.be/stops/301191", "https://data.delijn.be/stops/301265"], ["https://data.delijn.be/stops/301871", "https://data.delijn.be/stops/301875"], ["https://data.delijn.be/stops/401423", "https://data.delijn.be/stops/401596"], ["https://data.delijn.be/stops/504846", "https://data.delijn.be/stops/505107"], ["https://data.delijn.be/stops/106176", "https://data.delijn.be/stops/106178"], ["https://data.delijn.be/stops/505427", "https://data.delijn.be/stops/509474"], ["https://data.delijn.be/stops/403571", "https://data.delijn.be/stops/403572"], ["https://data.delijn.be/stops/402208", "https://data.delijn.be/stops/402331"], ["https://data.delijn.be/stops/101797", "https://data.delijn.be/stops/301915"], ["https://data.delijn.be/stops/303200", "https://data.delijn.be/stops/303202"], ["https://data.delijn.be/stops/300380", "https://data.delijn.be/stops/300381"], ["https://data.delijn.be/stops/405274", "https://data.delijn.be/stops/405275"], ["https://data.delijn.be/stops/206704", "https://data.delijn.be/stops/206993"], ["https://data.delijn.be/stops/102760", "https://data.delijn.be/stops/102813"], ["https://data.delijn.be/stops/304992", "https://data.delijn.be/stops/305008"], ["https://data.delijn.be/stops/203859", "https://data.delijn.be/stops/208714"], ["https://data.delijn.be/stops/303560", "https://data.delijn.be/stops/308618"], ["https://data.delijn.be/stops/302104", "https://data.delijn.be/stops/303515"], ["https://data.delijn.be/stops/200460", "https://data.delijn.be/stops/200678"], ["https://data.delijn.be/stops/405564", "https://data.delijn.be/stops/405566"], ["https://data.delijn.be/stops/102643", "https://data.delijn.be/stops/205650"], ["https://data.delijn.be/stops/404316", "https://data.delijn.be/stops/404317"], ["https://data.delijn.be/stops/103757", "https://data.delijn.be/stops/109673"], ["https://data.delijn.be/stops/206366", "https://data.delijn.be/stops/207338"], ["https://data.delijn.be/stops/104346", "https://data.delijn.be/stops/105800"], ["https://data.delijn.be/stops/301697", "https://data.delijn.be/stops/301722"], ["https://data.delijn.be/stops/400369", "https://data.delijn.be/stops/400416"], ["https://data.delijn.be/stops/400094", "https://data.delijn.be/stops/401976"], ["https://data.delijn.be/stops/300661", "https://data.delijn.be/stops/301917"], ["https://data.delijn.be/stops/201182", "https://data.delijn.be/stops/203323"], ["https://data.delijn.be/stops/103493", "https://data.delijn.be/stops/103499"], ["https://data.delijn.be/stops/503989", "https://data.delijn.be/stops/505713"], ["https://data.delijn.be/stops/307521", "https://data.delijn.be/stops/307854"], ["https://data.delijn.be/stops/105128", "https://data.delijn.be/stops/105196"], ["https://data.delijn.be/stops/104601", "https://data.delijn.be/stops/106823"], ["https://data.delijn.be/stops/400256", "https://data.delijn.be/stops/404827"], ["https://data.delijn.be/stops/502312", "https://data.delijn.be/stops/502316"], ["https://data.delijn.be/stops/300890", "https://data.delijn.be/stops/303648"], ["https://data.delijn.be/stops/406993", "https://data.delijn.be/stops/409024"], ["https://data.delijn.be/stops/501684", "https://data.delijn.be/stops/509499"], ["https://data.delijn.be/stops/502670", "https://data.delijn.be/stops/507385"], ["https://data.delijn.be/stops/208180", "https://data.delijn.be/stops/209180"], ["https://data.delijn.be/stops/307939", "https://data.delijn.be/stops/307940"], ["https://data.delijn.be/stops/406153", "https://data.delijn.be/stops/406270"], ["https://data.delijn.be/stops/202435", "https://data.delijn.be/stops/210434"], ["https://data.delijn.be/stops/103041", "https://data.delijn.be/stops/107070"], ["https://data.delijn.be/stops/200927", "https://data.delijn.be/stops/219505"], ["https://data.delijn.be/stops/302309", "https://data.delijn.be/stops/302331"], ["https://data.delijn.be/stops/502136", "https://data.delijn.be/stops/507136"], ["https://data.delijn.be/stops/303536", "https://data.delijn.be/stops/307800"], ["https://data.delijn.be/stops/208325", "https://data.delijn.be/stops/507949"], ["https://data.delijn.be/stops/401540", "https://data.delijn.be/stops/407150"], ["https://data.delijn.be/stops/400650", "https://data.delijn.be/stops/400652"], ["https://data.delijn.be/stops/206996", "https://data.delijn.be/stops/207255"], ["https://data.delijn.be/stops/501006", "https://data.delijn.be/stops/501505"], ["https://data.delijn.be/stops/101920", "https://data.delijn.be/stops/102125"], ["https://data.delijn.be/stops/101048", "https://data.delijn.be/stops/205606"], ["https://data.delijn.be/stops/206344", "https://data.delijn.be/stops/207366"], ["https://data.delijn.be/stops/105891", "https://data.delijn.be/stops/105907"], ["https://data.delijn.be/stops/302018", "https://data.delijn.be/stops/302023"], ["https://data.delijn.be/stops/201663", "https://data.delijn.be/stops/202319"], ["https://data.delijn.be/stops/303344", "https://data.delijn.be/stops/303345"], ["https://data.delijn.be/stops/204393", "https://data.delijn.be/stops/205401"], ["https://data.delijn.be/stops/503248", "https://data.delijn.be/stops/503518"], ["https://data.delijn.be/stops/201734", "https://data.delijn.be/stops/210103"], ["https://data.delijn.be/stops/504436", "https://data.delijn.be/stops/505791"], ["https://data.delijn.be/stops/103142", "https://data.delijn.be/stops/103728"], ["https://data.delijn.be/stops/302921", "https://data.delijn.be/stops/304563"], ["https://data.delijn.be/stops/301898", "https://data.delijn.be/stops/301899"], ["https://data.delijn.be/stops/103146", "https://data.delijn.be/stops/106295"], ["https://data.delijn.be/stops/506017", "https://data.delijn.be/stops/506625"], ["https://data.delijn.be/stops/405264", "https://data.delijn.be/stops/410087"], ["https://data.delijn.be/stops/403909", "https://data.delijn.be/stops/403973"], ["https://data.delijn.be/stops/501530", "https://data.delijn.be/stops/501545"], ["https://data.delijn.be/stops/102660", "https://data.delijn.be/stops/109795"], ["https://data.delijn.be/stops/402114", "https://data.delijn.be/stops/406810"], ["https://data.delijn.be/stops/305726", "https://data.delijn.be/stops/305728"], ["https://data.delijn.be/stops/206306", "https://data.delijn.be/stops/206880"], ["https://data.delijn.be/stops/508427", "https://data.delijn.be/stops/509939"], ["https://data.delijn.be/stops/400076", "https://data.delijn.be/stops/408423"], ["https://data.delijn.be/stops/208370", "https://data.delijn.be/stops/209369"], ["https://data.delijn.be/stops/401467", "https://data.delijn.be/stops/401487"], ["https://data.delijn.be/stops/407400", "https://data.delijn.be/stops/407499"], ["https://data.delijn.be/stops/301868", "https://data.delijn.be/stops/301876"], ["https://data.delijn.be/stops/305242", "https://data.delijn.be/stops/305609"], ["https://data.delijn.be/stops/500117", "https://data.delijn.be/stops/505671"], ["https://data.delijn.be/stops/404649", "https://data.delijn.be/stops/409556"], ["https://data.delijn.be/stops/300869", "https://data.delijn.be/stops/302241"], ["https://data.delijn.be/stops/301658", "https://data.delijn.be/stops/306260"], ["https://data.delijn.be/stops/403831", "https://data.delijn.be/stops/403844"], ["https://data.delijn.be/stops/207680", "https://data.delijn.be/stops/208817"], ["https://data.delijn.be/stops/407458", "https://data.delijn.be/stops/407460"], ["https://data.delijn.be/stops/108250", "https://data.delijn.be/stops/108255"], ["https://data.delijn.be/stops/405870", "https://data.delijn.be/stops/409423"], ["https://data.delijn.be/stops/504406", "https://data.delijn.be/stops/509434"], ["https://data.delijn.be/stops/106099", "https://data.delijn.be/stops/106112"], ["https://data.delijn.be/stops/306665", "https://data.delijn.be/stops/306666"], ["https://data.delijn.be/stops/400930", "https://data.delijn.be/stops/400931"], ["https://data.delijn.be/stops/405048", "https://data.delijn.be/stops/405049"], ["https://data.delijn.be/stops/202979", "https://data.delijn.be/stops/203979"], ["https://data.delijn.be/stops/302971", "https://data.delijn.be/stops/307096"], ["https://data.delijn.be/stops/101519", "https://data.delijn.be/stops/109053"], ["https://data.delijn.be/stops/304667", "https://data.delijn.be/stops/304676"], ["https://data.delijn.be/stops/503655", "https://data.delijn.be/stops/508953"], ["https://data.delijn.be/stops/204335", "https://data.delijn.be/stops/204446"], ["https://data.delijn.be/stops/101191", "https://data.delijn.be/stops/205651"], ["https://data.delijn.be/stops/208583", "https://data.delijn.be/stops/209583"], ["https://data.delijn.be/stops/105983", "https://data.delijn.be/stops/105985"], ["https://data.delijn.be/stops/502278", "https://data.delijn.be/stops/507281"], ["https://data.delijn.be/stops/201896", "https://data.delijn.be/stops/211018"], ["https://data.delijn.be/stops/101076", "https://data.delijn.be/stops/101077"], ["https://data.delijn.be/stops/304481", "https://data.delijn.be/stops/304517"], ["https://data.delijn.be/stops/404861", "https://data.delijn.be/stops/404913"], ["https://data.delijn.be/stops/502454", "https://data.delijn.be/stops/509829"], ["https://data.delijn.be/stops/104093", "https://data.delijn.be/stops/406386"], ["https://data.delijn.be/stops/401290", "https://data.delijn.be/stops/401328"], ["https://data.delijn.be/stops/502746", "https://data.delijn.be/stops/505064"], ["https://data.delijn.be/stops/305652", "https://data.delijn.be/stops/307103"], ["https://data.delijn.be/stops/106629", "https://data.delijn.be/stops/106671"], ["https://data.delijn.be/stops/400700", "https://data.delijn.be/stops/400724"], ["https://data.delijn.be/stops/106967", "https://data.delijn.be/stops/106981"], ["https://data.delijn.be/stops/206737", "https://data.delijn.be/stops/207082"], ["https://data.delijn.be/stops/106604", "https://data.delijn.be/stops/106684"], ["https://data.delijn.be/stops/505296", "https://data.delijn.be/stops/505378"], ["https://data.delijn.be/stops/403834", "https://data.delijn.be/stops/405633"], ["https://data.delijn.be/stops/504786", "https://data.delijn.be/stops/505966"], ["https://data.delijn.be/stops/108562", "https://data.delijn.be/stops/109094"], ["https://data.delijn.be/stops/106468", "https://data.delijn.be/stops/106471"], ["https://data.delijn.be/stops/301283", "https://data.delijn.be/stops/301291"], ["https://data.delijn.be/stops/105709", "https://data.delijn.be/stops/105714"], ["https://data.delijn.be/stops/306764", "https://data.delijn.be/stops/306765"], ["https://data.delijn.be/stops/105703", "https://data.delijn.be/stops/106073"], ["https://data.delijn.be/stops/205634", "https://data.delijn.be/stops/205635"], ["https://data.delijn.be/stops/402596", "https://data.delijn.be/stops/402597"], ["https://data.delijn.be/stops/204572", "https://data.delijn.be/stops/205572"], ["https://data.delijn.be/stops/103068", "https://data.delijn.be/stops/105758"], ["https://data.delijn.be/stops/200217", "https://data.delijn.be/stops/201302"], ["https://data.delijn.be/stops/202306", "https://data.delijn.be/stops/203307"], ["https://data.delijn.be/stops/501368", "https://data.delijn.be/stops/506438"], ["https://data.delijn.be/stops/407979", "https://data.delijn.be/stops/408242"], ["https://data.delijn.be/stops/404106", "https://data.delijn.be/stops/408554"], ["https://data.delijn.be/stops/109675", "https://data.delijn.be/stops/109677"], ["https://data.delijn.be/stops/101427", "https://data.delijn.be/stops/101554"], ["https://data.delijn.be/stops/108264", "https://data.delijn.be/stops/108268"], ["https://data.delijn.be/stops/408577", "https://data.delijn.be/stops/408747"], ["https://data.delijn.be/stops/300729", "https://data.delijn.be/stops/302293"], ["https://data.delijn.be/stops/407967", "https://data.delijn.be/stops/408424"], ["https://data.delijn.be/stops/108654", "https://data.delijn.be/stops/306630"], ["https://data.delijn.be/stops/409764", "https://data.delijn.be/stops/409766"], ["https://data.delijn.be/stops/208391", "https://data.delijn.be/stops/208392"], ["https://data.delijn.be/stops/101686", "https://data.delijn.be/stops/101689"], ["https://data.delijn.be/stops/501387", "https://data.delijn.be/stops/506390"], ["https://data.delijn.be/stops/207090", "https://data.delijn.be/stops/207091"], ["https://data.delijn.be/stops/503148", "https://data.delijn.be/stops/504770"], ["https://data.delijn.be/stops/200497", "https://data.delijn.be/stops/211055"], ["https://data.delijn.be/stops/301801", "https://data.delijn.be/stops/301807"], ["https://data.delijn.be/stops/303724", "https://data.delijn.be/stops/303732"], ["https://data.delijn.be/stops/105028", "https://data.delijn.be/stops/105172"], ["https://data.delijn.be/stops/504394", "https://data.delijn.be/stops/509119"], ["https://data.delijn.be/stops/204327", "https://data.delijn.be/stops/205533"], ["https://data.delijn.be/stops/202367", "https://data.delijn.be/stops/203366"], ["https://data.delijn.be/stops/201385", "https://data.delijn.be/stops/202007"], ["https://data.delijn.be/stops/102725", "https://data.delijn.be/stops/105149"], ["https://data.delijn.be/stops/105216", "https://data.delijn.be/stops/109395"], ["https://data.delijn.be/stops/301325", "https://data.delijn.be/stops/301911"], ["https://data.delijn.be/stops/401988", "https://data.delijn.be/stops/403081"], ["https://data.delijn.be/stops/505356", "https://data.delijn.be/stops/507646"], ["https://data.delijn.be/stops/509380", "https://data.delijn.be/stops/509383"], ["https://data.delijn.be/stops/109084", "https://data.delijn.be/stops/109086"], ["https://data.delijn.be/stops/306714", "https://data.delijn.be/stops/306715"], ["https://data.delijn.be/stops/101298", "https://data.delijn.be/stops/105773"], ["https://data.delijn.be/stops/209416", "https://data.delijn.be/stops/209417"], ["https://data.delijn.be/stops/101187", "https://data.delijn.be/stops/102848"], ["https://data.delijn.be/stops/208534", "https://data.delijn.be/stops/209534"], ["https://data.delijn.be/stops/406624", "https://data.delijn.be/stops/406683"], ["https://data.delijn.be/stops/503879", "https://data.delijn.be/stops/508879"], ["https://data.delijn.be/stops/204084", "https://data.delijn.be/stops/205084"], ["https://data.delijn.be/stops/200388", "https://data.delijn.be/stops/201397"], ["https://data.delijn.be/stops/408232", "https://data.delijn.be/stops/408234"], ["https://data.delijn.be/stops/101176", "https://data.delijn.be/stops/101178"], ["https://data.delijn.be/stops/402876", "https://data.delijn.be/stops/306306"], ["https://data.delijn.be/stops/308261", "https://data.delijn.be/stops/308262"], ["https://data.delijn.be/stops/405154", "https://data.delijn.be/stops/405155"], ["https://data.delijn.be/stops/300088", "https://data.delijn.be/stops/306837"], ["https://data.delijn.be/stops/305722", "https://data.delijn.be/stops/305755"], ["https://data.delijn.be/stops/208590", "https://data.delijn.be/stops/305223"], ["https://data.delijn.be/stops/503921", "https://data.delijn.be/stops/508933"], ["https://data.delijn.be/stops/301538", "https://data.delijn.be/stops/301545"], ["https://data.delijn.be/stops/400111", "https://data.delijn.be/stops/400172"], ["https://data.delijn.be/stops/104760", "https://data.delijn.be/stops/105460"], ["https://data.delijn.be/stops/504238", "https://data.delijn.be/stops/508092"], ["https://data.delijn.be/stops/508996", "https://data.delijn.be/stops/509029"], ["https://data.delijn.be/stops/401321", "https://data.delijn.be/stops/406657"], ["https://data.delijn.be/stops/505778", "https://data.delijn.be/stops/508181"], ["https://data.delijn.be/stops/401593", "https://data.delijn.be/stops/401594"], ["https://data.delijn.be/stops/504780", "https://data.delijn.be/stops/504783"], ["https://data.delijn.be/stops/201982", "https://data.delijn.be/stops/202929"], ["https://data.delijn.be/stops/303308", "https://data.delijn.be/stops/303309"], ["https://data.delijn.be/stops/308728", "https://data.delijn.be/stops/308730"], ["https://data.delijn.be/stops/207943", "https://data.delijn.be/stops/208554"], ["https://data.delijn.be/stops/301692", "https://data.delijn.be/stops/303715"], ["https://data.delijn.be/stops/401837", "https://data.delijn.be/stops/406018"], ["https://data.delijn.be/stops/107784", "https://data.delijn.be/stops/207706"], ["https://data.delijn.be/stops/300634", "https://data.delijn.be/stops/306625"], ["https://data.delijn.be/stops/105261", "https://data.delijn.be/stops/105262"], ["https://data.delijn.be/stops/408749", "https://data.delijn.be/stops/408792"], ["https://data.delijn.be/stops/106189", "https://data.delijn.be/stops/107438"], ["https://data.delijn.be/stops/301322", "https://data.delijn.be/stops/306189"], ["https://data.delijn.be/stops/501051", "https://data.delijn.be/stops/507654"], ["https://data.delijn.be/stops/200185", "https://data.delijn.be/stops/201193"], ["https://data.delijn.be/stops/207804", "https://data.delijn.be/stops/208348"], ["https://data.delijn.be/stops/403039", "https://data.delijn.be/stops/404755"], ["https://data.delijn.be/stops/106920", "https://data.delijn.be/stops/107284"], ["https://data.delijn.be/stops/305623", "https://data.delijn.be/stops/305641"], ["https://data.delijn.be/stops/108986", "https://data.delijn.be/stops/108988"], ["https://data.delijn.be/stops/200928", "https://data.delijn.be/stops/203138"], ["https://data.delijn.be/stops/106956", "https://data.delijn.be/stops/107270"], ["https://data.delijn.be/stops/206175", "https://data.delijn.be/stops/206481"], ["https://data.delijn.be/stops/200110", "https://data.delijn.be/stops/202647"], ["https://data.delijn.be/stops/202858", "https://data.delijn.be/stops/208714"], ["https://data.delijn.be/stops/505528", "https://data.delijn.be/stops/505530"], ["https://data.delijn.be/stops/207310", "https://data.delijn.be/stops/207311"], ["https://data.delijn.be/stops/400648", "https://data.delijn.be/stops/400660"], ["https://data.delijn.be/stops/404374", "https://data.delijn.be/stops/404396"], ["https://data.delijn.be/stops/306326", "https://data.delijn.be/stops/308671"], ["https://data.delijn.be/stops/400697", "https://data.delijn.be/stops/409536"], ["https://data.delijn.be/stops/102390", "https://data.delijn.be/stops/103875"], ["https://data.delijn.be/stops/209606", "https://data.delijn.be/stops/209609"], ["https://data.delijn.be/stops/207542", "https://data.delijn.be/stops/209756"], ["https://data.delijn.be/stops/208811", "https://data.delijn.be/stops/208954"], ["https://data.delijn.be/stops/104121", "https://data.delijn.be/stops/106394"], ["https://data.delijn.be/stops/405860", "https://data.delijn.be/stops/409735"], ["https://data.delijn.be/stops/408518", "https://data.delijn.be/stops/408519"], ["https://data.delijn.be/stops/109196", "https://data.delijn.be/stops/109208"], ["https://data.delijn.be/stops/504448", "https://data.delijn.be/stops/504967"], ["https://data.delijn.be/stops/404356", "https://data.delijn.be/stops/404357"], ["https://data.delijn.be/stops/400500", "https://data.delijn.be/stops/400501"], ["https://data.delijn.be/stops/200223", "https://data.delijn.be/stops/201224"], ["https://data.delijn.be/stops/208192", "https://data.delijn.be/stops/208740"], ["https://data.delijn.be/stops/208667", "https://data.delijn.be/stops/209445"], ["https://data.delijn.be/stops/302142", "https://data.delijn.be/stops/305597"], ["https://data.delijn.be/stops/503081", "https://data.delijn.be/stops/508081"], ["https://data.delijn.be/stops/204657", "https://data.delijn.be/stops/204679"], ["https://data.delijn.be/stops/203521", "https://data.delijn.be/stops/203526"], ["https://data.delijn.be/stops/404813", "https://data.delijn.be/stops/404836"], ["https://data.delijn.be/stops/400752", "https://data.delijn.be/stops/400757"], ["https://data.delijn.be/stops/509565", "https://data.delijn.be/stops/509978"], ["https://data.delijn.be/stops/409084", "https://data.delijn.be/stops/409087"], ["https://data.delijn.be/stops/106596", "https://data.delijn.be/stops/107246"], ["https://data.delijn.be/stops/306164", "https://data.delijn.be/stops/307046"], ["https://data.delijn.be/stops/207300", "https://data.delijn.be/stops/207860"], ["https://data.delijn.be/stops/301091", "https://data.delijn.be/stops/306163"], ["https://data.delijn.be/stops/105892", "https://data.delijn.be/stops/105894"], ["https://data.delijn.be/stops/506217", "https://data.delijn.be/stops/506219"], ["https://data.delijn.be/stops/200371", "https://data.delijn.be/stops/201371"], ["https://data.delijn.be/stops/102979", "https://data.delijn.be/stops/106831"], ["https://data.delijn.be/stops/301241", "https://data.delijn.be/stops/301243"], ["https://data.delijn.be/stops/206381", "https://data.delijn.be/stops/207356"], ["https://data.delijn.be/stops/407742", "https://data.delijn.be/stops/407743"], ["https://data.delijn.be/stops/106783", "https://data.delijn.be/stops/106784"], ["https://data.delijn.be/stops/403548", "https://data.delijn.be/stops/403662"], ["https://data.delijn.be/stops/202156", "https://data.delijn.be/stops/203643"], ["https://data.delijn.be/stops/407713", "https://data.delijn.be/stops/407743"], ["https://data.delijn.be/stops/108353", "https://data.delijn.be/stops/108354"], ["https://data.delijn.be/stops/501460", "https://data.delijn.be/stops/501461"], ["https://data.delijn.be/stops/403754", "https://data.delijn.be/stops/403757"], ["https://data.delijn.be/stops/303377", "https://data.delijn.be/stops/303378"], ["https://data.delijn.be/stops/108316", "https://data.delijn.be/stops/108317"], ["https://data.delijn.be/stops/301086", "https://data.delijn.be/stops/306159"], ["https://data.delijn.be/stops/300264", "https://data.delijn.be/stops/303816"], ["https://data.delijn.be/stops/201434", "https://data.delijn.be/stops/201435"], ["https://data.delijn.be/stops/107649", "https://data.delijn.be/stops/108956"], ["https://data.delijn.be/stops/101641", "https://data.delijn.be/stops/107444"], ["https://data.delijn.be/stops/201871", "https://data.delijn.be/stops/203666"], ["https://data.delijn.be/stops/304607", "https://data.delijn.be/stops/304608"], ["https://data.delijn.be/stops/201595", "https://data.delijn.be/stops/201598"], ["https://data.delijn.be/stops/303334", "https://data.delijn.be/stops/307117"], ["https://data.delijn.be/stops/406316", "https://data.delijn.be/stops/406392"], ["https://data.delijn.be/stops/102555", "https://data.delijn.be/stops/104690"], ["https://data.delijn.be/stops/203894", "https://data.delijn.be/stops/208284"], ["https://data.delijn.be/stops/307845", "https://data.delijn.be/stops/307846"], ["https://data.delijn.be/stops/404845", "https://data.delijn.be/stops/409626"], ["https://data.delijn.be/stops/102687", "https://data.delijn.be/stops/102688"], ["https://data.delijn.be/stops/407616", "https://data.delijn.be/stops/407680"], ["https://data.delijn.be/stops/103865", "https://data.delijn.be/stops/105525"], ["https://data.delijn.be/stops/409552", "https://data.delijn.be/stops/409606"], ["https://data.delijn.be/stops/502231", "https://data.delijn.be/stops/505088"], ["https://data.delijn.be/stops/104386", "https://data.delijn.be/stops/104388"], ["https://data.delijn.be/stops/501490", "https://data.delijn.be/stops/506490"], ["https://data.delijn.be/stops/304802", "https://data.delijn.be/stops/307882"], ["https://data.delijn.be/stops/302931", "https://data.delijn.be/stops/304476"], ["https://data.delijn.be/stops/400684", "https://data.delijn.be/stops/406634"], ["https://data.delijn.be/stops/304252", "https://data.delijn.be/stops/304475"], ["https://data.delijn.be/stops/405394", "https://data.delijn.be/stops/409036"], ["https://data.delijn.be/stops/503362", "https://data.delijn.be/stops/508347"], ["https://data.delijn.be/stops/102599", "https://data.delijn.be/stops/109918"], ["https://data.delijn.be/stops/503504", "https://data.delijn.be/stops/508511"], ["https://data.delijn.be/stops/106853", "https://data.delijn.be/stops/109527"], ["https://data.delijn.be/stops/505517", "https://data.delijn.be/stops/505618"], ["https://data.delijn.be/stops/502368", "https://data.delijn.be/stops/502370"], ["https://data.delijn.be/stops/206215", "https://data.delijn.be/stops/207821"], ["https://data.delijn.be/stops/504316", "https://data.delijn.be/stops/509003"], ["https://data.delijn.be/stops/304066", "https://data.delijn.be/stops/308529"], ["https://data.delijn.be/stops/406606", "https://data.delijn.be/stops/406619"], ["https://data.delijn.be/stops/501097", "https://data.delijn.be/stops/502218"], ["https://data.delijn.be/stops/502273", "https://data.delijn.be/stops/507272"], ["https://data.delijn.be/stops/505695", "https://data.delijn.be/stops/505696"], ["https://data.delijn.be/stops/200372", "https://data.delijn.be/stops/201446"], ["https://data.delijn.be/stops/204506", "https://data.delijn.be/stops/205506"], ["https://data.delijn.be/stops/107831", "https://data.delijn.be/stops/107832"], ["https://data.delijn.be/stops/303513", "https://data.delijn.be/stops/303514"], ["https://data.delijn.be/stops/500042", "https://data.delijn.be/stops/502662"], ["https://data.delijn.be/stops/404104", "https://data.delijn.be/stops/404105"], ["https://data.delijn.be/stops/405257", "https://data.delijn.be/stops/408367"], ["https://data.delijn.be/stops/500926", "https://data.delijn.be/stops/504558"], ["https://data.delijn.be/stops/208244", "https://data.delijn.be/stops/208854"], ["https://data.delijn.be/stops/107728", "https://data.delijn.be/stops/107729"], ["https://data.delijn.be/stops/404435", "https://data.delijn.be/stops/404552"], ["https://data.delijn.be/stops/406621", "https://data.delijn.be/stops/406631"], ["https://data.delijn.be/stops/200881", "https://data.delijn.be/stops/203284"], ["https://data.delijn.be/stops/301504", "https://data.delijn.be/stops/301507"], ["https://data.delijn.be/stops/503648", "https://data.delijn.be/stops/503665"], ["https://data.delijn.be/stops/507206", "https://data.delijn.be/stops/507208"], ["https://data.delijn.be/stops/405445", "https://data.delijn.be/stops/408705"], ["https://data.delijn.be/stops/204025", "https://data.delijn.be/stops/205025"], ["https://data.delijn.be/stops/202507", "https://data.delijn.be/stops/203490"], ["https://data.delijn.be/stops/104338", "https://data.delijn.be/stops/105909"], ["https://data.delijn.be/stops/208472", "https://data.delijn.be/stops/209471"], ["https://data.delijn.be/stops/503727", "https://data.delijn.be/stops/504873"], ["https://data.delijn.be/stops/206304", "https://data.delijn.be/stops/207305"], ["https://data.delijn.be/stops/503060", "https://data.delijn.be/stops/509957"], ["https://data.delijn.be/stops/200503", "https://data.delijn.be/stops/201453"], ["https://data.delijn.be/stops/202900", "https://data.delijn.be/stops/203903"], ["https://data.delijn.be/stops/203431", "https://data.delijn.be/stops/204559"], ["https://data.delijn.be/stops/501255", "https://data.delijn.be/stops/506255"], ["https://data.delijn.be/stops/209536", "https://data.delijn.be/stops/209537"], ["https://data.delijn.be/stops/301887", "https://data.delijn.be/stops/305973"], ["https://data.delijn.be/stops/102625", "https://data.delijn.be/stops/102909"], ["https://data.delijn.be/stops/105804", "https://data.delijn.be/stops/107424"], ["https://data.delijn.be/stops/104418", "https://data.delijn.be/stops/205337"], ["https://data.delijn.be/stops/300012", "https://data.delijn.be/stops/300739"], ["https://data.delijn.be/stops/307156", "https://data.delijn.be/stops/307158"], ["https://data.delijn.be/stops/400599", "https://data.delijn.be/stops/404543"], ["https://data.delijn.be/stops/402758", "https://data.delijn.be/stops/402764"], ["https://data.delijn.be/stops/502215", "https://data.delijn.be/stops/502508"], ["https://data.delijn.be/stops/101719", "https://data.delijn.be/stops/108971"], ["https://data.delijn.be/stops/503463", "https://data.delijn.be/stops/508970"], ["https://data.delijn.be/stops/401451", "https://data.delijn.be/stops/402038"], ["https://data.delijn.be/stops/405759", "https://data.delijn.be/stops/302842"], ["https://data.delijn.be/stops/207833", "https://data.delijn.be/stops/207965"], ["https://data.delijn.be/stops/501770", "https://data.delijn.be/stops/502222"], ["https://data.delijn.be/stops/407328", "https://data.delijn.be/stops/409512"], ["https://data.delijn.be/stops/204227", "https://data.delijn.be/stops/205227"], ["https://data.delijn.be/stops/504047", "https://data.delijn.be/stops/509049"], ["https://data.delijn.be/stops/208664", "https://data.delijn.be/stops/209129"], ["https://data.delijn.be/stops/201117", "https://data.delijn.be/stops/201118"], ["https://data.delijn.be/stops/505426", "https://data.delijn.be/stops/508150"], ["https://data.delijn.be/stops/103731", "https://data.delijn.be/stops/103732"], ["https://data.delijn.be/stops/504774", "https://data.delijn.be/stops/508566"], ["https://data.delijn.be/stops/308516", "https://data.delijn.be/stops/308520"], ["https://data.delijn.be/stops/200715", "https://data.delijn.be/stops/204089"], ["https://data.delijn.be/stops/307225", "https://data.delijn.be/stops/307226"], ["https://data.delijn.be/stops/401768", "https://data.delijn.be/stops/401834"], ["https://data.delijn.be/stops/107093", "https://data.delijn.be/stops/108184"], ["https://data.delijn.be/stops/306781", "https://data.delijn.be/stops/306782"], ["https://data.delijn.be/stops/504646", "https://data.delijn.be/stops/509645"], ["https://data.delijn.be/stops/102169", "https://data.delijn.be/stops/107124"], ["https://data.delijn.be/stops/106636", "https://data.delijn.be/stops/106661"], ["https://data.delijn.be/stops/502578", "https://data.delijn.be/stops/507578"], ["https://data.delijn.be/stops/405288", "https://data.delijn.be/stops/406277"], ["https://data.delijn.be/stops/403920", "https://data.delijn.be/stops/405947"], ["https://data.delijn.be/stops/209298", "https://data.delijn.be/stops/209299"], ["https://data.delijn.be/stops/207190", "https://data.delijn.be/stops/207693"], ["https://data.delijn.be/stops/501220", "https://data.delijn.be/stops/506221"], ["https://data.delijn.be/stops/305298", "https://data.delijn.be/stops/307605"], ["https://data.delijn.be/stops/503681", "https://data.delijn.be/stops/504453"], ["https://data.delijn.be/stops/102109", "https://data.delijn.be/stops/106682"], ["https://data.delijn.be/stops/301740", "https://data.delijn.be/stops/305907"], ["https://data.delijn.be/stops/204422", "https://data.delijn.be/stops/205422"], ["https://data.delijn.be/stops/406498", "https://data.delijn.be/stops/406499"], ["https://data.delijn.be/stops/401025", "https://data.delijn.be/stops/401102"], ["https://data.delijn.be/stops/209260", "https://data.delijn.be/stops/209261"], ["https://data.delijn.be/stops/400807", "https://data.delijn.be/stops/400872"], ["https://data.delijn.be/stops/102463", "https://data.delijn.be/stops/405537"], ["https://data.delijn.be/stops/102502", "https://data.delijn.be/stops/400010"], ["https://data.delijn.be/stops/404904", "https://data.delijn.be/stops/404906"], ["https://data.delijn.be/stops/405568", "https://data.delijn.be/stops/405569"], ["https://data.delijn.be/stops/506284", "https://data.delijn.be/stops/506490"], ["https://data.delijn.be/stops/303032", "https://data.delijn.be/stops/303894"], ["https://data.delijn.be/stops/502256", "https://data.delijn.be/stops/507261"], ["https://data.delijn.be/stops/206210", "https://data.delijn.be/stops/206814"], ["https://data.delijn.be/stops/500568", "https://data.delijn.be/stops/506031"], ["https://data.delijn.be/stops/403926", "https://data.delijn.be/stops/404030"], ["https://data.delijn.be/stops/304056", "https://data.delijn.be/stops/304085"], ["https://data.delijn.be/stops/503597", "https://data.delijn.be/stops/505806"], ["https://data.delijn.be/stops/405835", "https://data.delijn.be/stops/409425"], ["https://data.delijn.be/stops/201656", "https://data.delijn.be/stops/203614"], ["https://data.delijn.be/stops/301474", "https://data.delijn.be/stops/301475"], ["https://data.delijn.be/stops/201261", "https://data.delijn.be/stops/201947"], ["https://data.delijn.be/stops/505325", "https://data.delijn.be/stops/505599"], ["https://data.delijn.be/stops/402210", "https://data.delijn.be/stops/405189"], ["https://data.delijn.be/stops/505668", "https://data.delijn.be/stops/509878"], ["https://data.delijn.be/stops/304484", "https://data.delijn.be/stops/304531"], ["https://data.delijn.be/stops/206998", "https://data.delijn.be/stops/207997"], ["https://data.delijn.be/stops/202759", "https://data.delijn.be/stops/203759"], ["https://data.delijn.be/stops/407966", "https://data.delijn.be/stops/408424"], ["https://data.delijn.be/stops/200481", "https://data.delijn.be/stops/203132"], ["https://data.delijn.be/stops/202284", "https://data.delijn.be/stops/208964"], ["https://data.delijn.be/stops/307928", "https://data.delijn.be/stops/307929"], ["https://data.delijn.be/stops/302442", "https://data.delijn.be/stops/302450"], ["https://data.delijn.be/stops/307221", "https://data.delijn.be/stops/307223"], ["https://data.delijn.be/stops/407038", "https://data.delijn.be/stops/410033"], ["https://data.delijn.be/stops/201827", "https://data.delijn.be/stops/208275"], ["https://data.delijn.be/stops/304140", "https://data.delijn.be/stops/304144"], ["https://data.delijn.be/stops/203681", "https://data.delijn.be/stops/203693"], ["https://data.delijn.be/stops/406159", "https://data.delijn.be/stops/409409"], ["https://data.delijn.be/stops/509285", "https://data.delijn.be/stops/509343"], ["https://data.delijn.be/stops/301719", "https://data.delijn.be/stops/301823"], ["https://data.delijn.be/stops/102852", "https://data.delijn.be/stops/104416"], ["https://data.delijn.be/stops/401989", "https://data.delijn.be/stops/403384"], ["https://data.delijn.be/stops/101502", "https://data.delijn.be/stops/109345"], ["https://data.delijn.be/stops/109306", "https://data.delijn.be/stops/109307"], ["https://data.delijn.be/stops/501012", "https://data.delijn.be/stops/506012"], ["https://data.delijn.be/stops/105787", "https://data.delijn.be/stops/105788"], ["https://data.delijn.be/stops/401600", "https://data.delijn.be/stops/409434"], ["https://data.delijn.be/stops/303095", "https://data.delijn.be/stops/303113"], ["https://data.delijn.be/stops/500023", "https://data.delijn.be/stops/501197"], ["https://data.delijn.be/stops/101132", "https://data.delijn.be/stops/104459"], ["https://data.delijn.be/stops/200956", "https://data.delijn.be/stops/202395"], ["https://data.delijn.be/stops/308747", "https://data.delijn.be/stops/308750"], ["https://data.delijn.be/stops/406294", "https://data.delijn.be/stops/406448"], ["https://data.delijn.be/stops/405335", "https://data.delijn.be/stops/405430"], ["https://data.delijn.be/stops/407618", "https://data.delijn.be/stops/407619"], ["https://data.delijn.be/stops/302274", "https://data.delijn.be/stops/303436"], ["https://data.delijn.be/stops/405676", "https://data.delijn.be/stops/408206"], ["https://data.delijn.be/stops/201982", "https://data.delijn.be/stops/203917"], ["https://data.delijn.be/stops/302437", "https://data.delijn.be/stops/302445"], ["https://data.delijn.be/stops/409080", "https://data.delijn.be/stops/409123"], ["https://data.delijn.be/stops/207663", "https://data.delijn.be/stops/208506"], ["https://data.delijn.be/stops/104886", "https://data.delijn.be/stops/104887"], ["https://data.delijn.be/stops/200399", "https://data.delijn.be/stops/201399"], ["https://data.delijn.be/stops/505550", "https://data.delijn.be/stops/507177"], ["https://data.delijn.be/stops/106963", "https://data.delijn.be/stops/106977"], ["https://data.delijn.be/stops/210065", "https://data.delijn.be/stops/211048"], ["https://data.delijn.be/stops/103043", "https://data.delijn.be/stops/106905"], ["https://data.delijn.be/stops/301309", "https://data.delijn.be/stops/301337"], ["https://data.delijn.be/stops/302833", "https://data.delijn.be/stops/306778"], ["https://data.delijn.be/stops/503821", "https://data.delijn.be/stops/508819"], ["https://data.delijn.be/stops/303051", "https://data.delijn.be/stops/304532"], ["https://data.delijn.be/stops/407604", "https://data.delijn.be/stops/407606"], ["https://data.delijn.be/stops/400324", "https://data.delijn.be/stops/400439"], ["https://data.delijn.be/stops/508101", "https://data.delijn.be/stops/508882"], ["https://data.delijn.be/stops/505256", "https://data.delijn.be/stops/508675"], ["https://data.delijn.be/stops/300557", "https://data.delijn.be/stops/307864"], ["https://data.delijn.be/stops/401642", "https://data.delijn.be/stops/408657"], ["https://data.delijn.be/stops/102378", "https://data.delijn.be/stops/109391"], ["https://data.delijn.be/stops/407177", "https://data.delijn.be/stops/409857"], ["https://data.delijn.be/stops/503900", "https://data.delijn.be/stops/504982"], ["https://data.delijn.be/stops/503056", "https://data.delijn.be/stops/508056"], ["https://data.delijn.be/stops/200657", "https://data.delijn.be/stops/201527"], ["https://data.delijn.be/stops/302570", "https://data.delijn.be/stops/305102"], ["https://data.delijn.be/stops/102136", "https://data.delijn.be/stops/109164"], ["https://data.delijn.be/stops/103161", "https://data.delijn.be/stops/103163"], ["https://data.delijn.be/stops/400561", "https://data.delijn.be/stops/403638"], ["https://data.delijn.be/stops/201472", "https://data.delijn.be/stops/201890"], ["https://data.delijn.be/stops/304152", "https://data.delijn.be/stops/307539"], ["https://data.delijn.be/stops/108337", "https://data.delijn.be/stops/109334"], ["https://data.delijn.be/stops/306186", "https://data.delijn.be/stops/306289"], ["https://data.delijn.be/stops/103033", "https://data.delijn.be/stops/106749"], ["https://data.delijn.be/stops/208100", "https://data.delijn.be/stops/209100"], ["https://data.delijn.be/stops/502224", "https://data.delijn.be/stops/507224"], ["https://data.delijn.be/stops/409366", "https://data.delijn.be/stops/409369"], ["https://data.delijn.be/stops/102499", "https://data.delijn.be/stops/102502"], ["https://data.delijn.be/stops/206373", "https://data.delijn.be/stops/207373"], ["https://data.delijn.be/stops/201011", "https://data.delijn.be/stops/211021"], ["https://data.delijn.be/stops/206698", "https://data.delijn.be/stops/206699"], ["https://data.delijn.be/stops/106079", "https://data.delijn.be/stops/106080"], ["https://data.delijn.be/stops/503876", "https://data.delijn.be/stops/508689"], ["https://data.delijn.be/stops/101955", "https://data.delijn.be/stops/103055"], ["https://data.delijn.be/stops/503059", "https://data.delijn.be/stops/508119"], ["https://data.delijn.be/stops/304883", "https://data.delijn.be/stops/308525"], ["https://data.delijn.be/stops/204048", "https://data.delijn.be/stops/205049"], ["https://data.delijn.be/stops/200385", "https://data.delijn.be/stops/201081"], ["https://data.delijn.be/stops/104974", "https://data.delijn.be/stops/109784"], ["https://data.delijn.be/stops/401139", "https://data.delijn.be/stops/410049"], ["https://data.delijn.be/stops/402069", "https://data.delijn.be/stops/402374"], ["https://data.delijn.be/stops/505540", "https://data.delijn.be/stops/508808"], ["https://data.delijn.be/stops/505226", "https://data.delijn.be/stops/508856"], ["https://data.delijn.be/stops/302610", "https://data.delijn.be/stops/302625"], ["https://data.delijn.be/stops/204746", "https://data.delijn.be/stops/205741"], ["https://data.delijn.be/stops/204338", "https://data.delijn.be/stops/204449"], ["https://data.delijn.be/stops/404792", "https://data.delijn.be/stops/404798"], ["https://data.delijn.be/stops/302938", "https://data.delijn.be/stops/302957"], ["https://data.delijn.be/stops/504758", "https://data.delijn.be/stops/507017"], ["https://data.delijn.be/stops/304534", "https://data.delijn.be/stops/307576"], ["https://data.delijn.be/stops/105882", "https://data.delijn.be/stops/105934"], ["https://data.delijn.be/stops/202832", "https://data.delijn.be/stops/203831"], ["https://data.delijn.be/stops/408616", "https://data.delijn.be/stops/408770"], ["https://data.delijn.be/stops/504265", "https://data.delijn.be/stops/505829"], ["https://data.delijn.be/stops/304795", "https://data.delijn.be/stops/306687"], ["https://data.delijn.be/stops/404706", "https://data.delijn.be/stops/404714"], ["https://data.delijn.be/stops/201665", "https://data.delijn.be/stops/210121"], ["https://data.delijn.be/stops/208270", "https://data.delijn.be/stops/209270"], ["https://data.delijn.be/stops/104352", "https://data.delijn.be/stops/104353"], ["https://data.delijn.be/stops/407399", "https://data.delijn.be/stops/407426"], ["https://data.delijn.be/stops/204218", "https://data.delijn.be/stops/205218"], ["https://data.delijn.be/stops/404788", "https://data.delijn.be/stops/404811"], ["https://data.delijn.be/stops/409468", "https://data.delijn.be/stops/409471"], ["https://data.delijn.be/stops/102936", "https://data.delijn.be/stops/103130"], ["https://data.delijn.be/stops/502171", "https://data.delijn.be/stops/505418"], ["https://data.delijn.be/stops/504865", "https://data.delijn.be/stops/505379"], ["https://data.delijn.be/stops/505290", "https://data.delijn.be/stops/508902"], ["https://data.delijn.be/stops/104781", "https://data.delijn.be/stops/108121"], ["https://data.delijn.be/stops/106403", "https://data.delijn.be/stops/106405"], ["https://data.delijn.be/stops/203297", "https://data.delijn.be/stops/210856"], ["https://data.delijn.be/stops/101779", "https://data.delijn.be/stops/107747"], ["https://data.delijn.be/stops/503525", "https://data.delijn.be/stops/508072"], ["https://data.delijn.be/stops/407060", "https://data.delijn.be/stops/407075"], ["https://data.delijn.be/stops/301865", "https://data.delijn.be/stops/306989"], ["https://data.delijn.be/stops/409796", "https://data.delijn.be/stops/409797"], ["https://data.delijn.be/stops/200973", "https://data.delijn.be/stops/206760"], ["https://data.delijn.be/stops/501109", "https://data.delijn.be/stops/506225"], ["https://data.delijn.be/stops/108867", "https://data.delijn.be/stops/108869"], ["https://data.delijn.be/stops/502397", "https://data.delijn.be/stops/507397"], ["https://data.delijn.be/stops/101226", "https://data.delijn.be/stops/101657"], ["https://data.delijn.be/stops/406954", "https://data.delijn.be/stops/406955"], ["https://data.delijn.be/stops/201478", "https://data.delijn.be/stops/210069"], ["https://data.delijn.be/stops/405414", "https://data.delijn.be/stops/302834"], ["https://data.delijn.be/stops/503981", "https://data.delijn.be/stops/505935"], ["https://data.delijn.be/stops/301421", "https://data.delijn.be/stops/307081"], ["https://data.delijn.be/stops/503756", "https://data.delijn.be/stops/508730"], ["https://data.delijn.be/stops/205613", "https://data.delijn.be/stops/205695"], ["https://data.delijn.be/stops/206901", "https://data.delijn.be/stops/207874"], ["https://data.delijn.be/stops/202118", "https://data.delijn.be/stops/204171"], ["https://data.delijn.be/stops/208280", "https://data.delijn.be/stops/209278"], ["https://data.delijn.be/stops/504626", "https://data.delijn.be/stops/509623"], ["https://data.delijn.be/stops/503398", "https://data.delijn.be/stops/508387"], ["https://data.delijn.be/stops/408574", "https://data.delijn.be/stops/408575"], ["https://data.delijn.be/stops/107734", "https://data.delijn.be/stops/107737"], ["https://data.delijn.be/stops/106834", "https://data.delijn.be/stops/106972"], ["https://data.delijn.be/stops/102566", "https://data.delijn.be/stops/104334"], ["https://data.delijn.be/stops/410173", "https://data.delijn.be/stops/410176"], ["https://data.delijn.be/stops/502010", "https://data.delijn.be/stops/505222"], ["https://data.delijn.be/stops/205738", "https://data.delijn.be/stops/205739"], ["https://data.delijn.be/stops/401183", "https://data.delijn.be/stops/401220"], ["https://data.delijn.be/stops/101822", "https://data.delijn.be/stops/107069"], ["https://data.delijn.be/stops/107642", "https://data.delijn.be/stops/308377"], ["https://data.delijn.be/stops/301666", "https://data.delijn.be/stops/304180"], ["https://data.delijn.be/stops/503154", "https://data.delijn.be/stops/503421"], ["https://data.delijn.be/stops/504211", "https://data.delijn.be/stops/504223"], ["https://data.delijn.be/stops/102566", "https://data.delijn.be/stops/105848"], ["https://data.delijn.be/stops/101383", "https://data.delijn.be/stops/102422"], ["https://data.delijn.be/stops/408582", "https://data.delijn.be/stops/408591"], ["https://data.delijn.be/stops/400580", "https://data.delijn.be/stops/400581"], ["https://data.delijn.be/stops/204413", "https://data.delijn.be/stops/204441"], ["https://data.delijn.be/stops/108642", "https://data.delijn.be/stops/109686"], ["https://data.delijn.be/stops/401349", "https://data.delijn.be/stops/401355"], ["https://data.delijn.be/stops/102204", "https://data.delijn.be/stops/102671"], ["https://data.delijn.be/stops/108372", "https://data.delijn.be/stops/108518"], ["https://data.delijn.be/stops/301170", "https://data.delijn.be/stops/303194"], ["https://data.delijn.be/stops/303069", "https://data.delijn.be/stops/303156"], ["https://data.delijn.be/stops/503896", "https://data.delijn.be/stops/505540"], ["https://data.delijn.be/stops/200858", "https://data.delijn.be/stops/202305"], ["https://data.delijn.be/stops/102394", "https://data.delijn.be/stops/107093"], ["https://data.delijn.be/stops/402447", "https://data.delijn.be/stops/409359"], ["https://data.delijn.be/stops/102827", "https://data.delijn.be/stops/106233"], ["https://data.delijn.be/stops/106926", "https://data.delijn.be/stops/106942"], ["https://data.delijn.be/stops/206733", "https://data.delijn.be/stops/306679"], ["https://data.delijn.be/stops/402803", "https://data.delijn.be/stops/407316"], ["https://data.delijn.be/stops/505410", "https://data.delijn.be/stops/505994"], ["https://data.delijn.be/stops/405028", "https://data.delijn.be/stops/405029"], ["https://data.delijn.be/stops/207260", "https://data.delijn.be/stops/207261"], ["https://data.delijn.be/stops/503184", "https://data.delijn.be/stops/509820"], ["https://data.delijn.be/stops/202336", "https://data.delijn.be/stops/203330"], ["https://data.delijn.be/stops/503662", "https://data.delijn.be/stops/503880"], ["https://data.delijn.be/stops/410338", "https://data.delijn.be/stops/410339"], ["https://data.delijn.be/stops/103923", "https://data.delijn.be/stops/107250"], ["https://data.delijn.be/stops/305509", "https://data.delijn.be/stops/305520"], ["https://data.delijn.be/stops/501079", "https://data.delijn.be/stops/504371"], ["https://data.delijn.be/stops/103251", "https://data.delijn.be/stops/107705"], ["https://data.delijn.be/stops/107251", "https://data.delijn.be/stops/107282"], ["https://data.delijn.be/stops/200923", "https://data.delijn.be/stops/203084"], ["https://data.delijn.be/stops/108469", "https://data.delijn.be/stops/108483"], ["https://data.delijn.be/stops/402235", "https://data.delijn.be/stops/407533"], ["https://data.delijn.be/stops/301044", "https://data.delijn.be/stops/301045"], ["https://data.delijn.be/stops/300143", "https://data.delijn.be/stops/300146"], ["https://data.delijn.be/stops/500120", "https://data.delijn.be/stops/507446"], ["https://data.delijn.be/stops/502138", "https://data.delijn.be/stops/507110"], ["https://data.delijn.be/stops/200179", "https://data.delijn.be/stops/201337"], ["https://data.delijn.be/stops/104457", "https://data.delijn.be/stops/106742"], ["https://data.delijn.be/stops/400592", "https://data.delijn.be/stops/400594"], ["https://data.delijn.be/stops/108501", "https://data.delijn.be/stops/108502"], ["https://data.delijn.be/stops/204077", "https://data.delijn.be/stops/205080"], ["https://data.delijn.be/stops/204507", "https://data.delijn.be/stops/205820"], ["https://data.delijn.be/stops/508404", "https://data.delijn.be/stops/508405"], ["https://data.delijn.be/stops/208559", "https://data.delijn.be/stops/209544"], ["https://data.delijn.be/stops/200803", "https://data.delijn.be/stops/201885"], ["https://data.delijn.be/stops/508362", "https://data.delijn.be/stops/508405"], ["https://data.delijn.be/stops/501069", "https://data.delijn.be/stops/501381"], ["https://data.delijn.be/stops/408900", "https://data.delijn.be/stops/408901"], ["https://data.delijn.be/stops/404850", "https://data.delijn.be/stops/405546"]] \ No newline at end of file diff --git a/src/analytics/footpaths/mivb_pairs.json b/src/analytics/footpaths/mivb_pairs.json deleted file mode 100644 index 229b6777..00000000 --- a/src/analytics/footpaths/mivb_pairs.json +++ /dev/null @@ -1 +0,0 @@ -[["https://mivb.openplanner.team/stops/4165", "https://mivb.openplanner.team/stops/4168"], ["https://mivb.openplanner.team/stops/0900268", "https://mivb.openplanner.team/stops/9996"], ["https://mivb.openplanner.team/stops/1935", "https://mivb.openplanner.team/stops/1955"], ["https://mivb.openplanner.team/stops/1919", "https://mivb.openplanner.team/stops/5255F"], ["https://mivb.openplanner.team/stops/1570", "https://mivb.openplanner.team/stops/6017"], ["https://mivb.openplanner.team/stops/1814B", "https://mivb.openplanner.team/stops/1815"], ["https://mivb.openplanner.team/stops/0610363", "https://mivb.openplanner.team/stops/0626"], ["https://mivb.openplanner.team/stops/3404", "https://mivb.openplanner.team/stops/3458"], ["https://mivb.openplanner.team/stops/2828", "https://mivb.openplanner.team/stops/2838"], ["https://mivb.openplanner.team/stops/3459", "https://mivb.openplanner.team/stops/3766"], ["https://mivb.openplanner.team/stops/1125", "https://mivb.openplanner.team/stops/3006"], ["https://mivb.openplanner.team/stops/2522", "https://mivb.openplanner.team/stops/2579"], ["https://mivb.openplanner.team/stops/8042", "https://mivb.openplanner.team/stops/0040418"], ["https://mivb.openplanner.team/stops/1453", "https://mivb.openplanner.team/stops/5420F"], ["https://mivb.openplanner.team/stops/2117B", "https://mivb.openplanner.team/stops/2144"], ["https://mivb.openplanner.team/stops/4318", "https://mivb.openplanner.team/stops/4345"], ["https://mivb.openplanner.team/stops/1753", "https://mivb.openplanner.team/stops/37"], ["https://mivb.openplanner.team/stops/6202", "https://mivb.openplanner.team/stops/6418F"], ["https://mivb.openplanner.team/stops/0511", "https://mivb.openplanner.team/stops/1988"], ["https://mivb.openplanner.team/stops/1883", "https://mivb.openplanner.team/stops/3120"], ["https://mivb.openplanner.team/stops/2604F", "https://mivb.openplanner.team/stops/2667F"], ["https://mivb.openplanner.team/stops/5426", "https://mivb.openplanner.team/stops/5427"], ["https://mivb.openplanner.team/stops/5027", "https://mivb.openplanner.team/stops/5028"], ["https://mivb.openplanner.team/stops/3114", "https://mivb.openplanner.team/stops/6017"], ["https://mivb.openplanner.team/stops/2869", "https://mivb.openplanner.team/stops/6501"], ["https://mivb.openplanner.team/stops/2038", "https://mivb.openplanner.team/stops/2042"], ["https://mivb.openplanner.team/stops/4264B", "https://mivb.openplanner.team/stops/7820353"], ["https://mivb.openplanner.team/stops/2872", "https://mivb.openplanner.team/stops/4250"], ["https://mivb.openplanner.team/stops/2566B", "https://mivb.openplanner.team/stops/3239"], ["https://mivb.openplanner.team/stops/7650210", "https://mivb.openplanner.team/stops/9655"], ["https://mivb.openplanner.team/stops/4228", "https://mivb.openplanner.team/stops/8833"], ["https://mivb.openplanner.team/stops/1801", "https://mivb.openplanner.team/stops/2418"], ["https://mivb.openplanner.team/stops/1302", "https://mivb.openplanner.team/stops/5512"], ["https://mivb.openplanner.team/stops/4957", "https://mivb.openplanner.team/stops/5082"], ["https://mivb.openplanner.team/stops/5220F", "https://mivb.openplanner.team/stops/9986F"], ["https://mivb.openplanner.team/stops/2217", "https://mivb.openplanner.team/stops/2260"], ["https://mivb.openplanner.team/stops/1250", "https://mivb.openplanner.team/stops/1920"], ["https://mivb.openplanner.team/stops/2504", "https://mivb.openplanner.team/stops/2586"], ["https://mivb.openplanner.team/stops/8692", "https://mivb.openplanner.team/stops/6"], ["https://mivb.openplanner.team/stops/3549", "https://mivb.openplanner.team/stops/8251"], ["https://mivb.openplanner.team/stops/5735", "https://mivb.openplanner.team/stops/6359"], ["https://mivb.openplanner.team/stops/1851", "https://mivb.openplanner.team/stops/5553"], ["https://mivb.openplanner.team/stops/5270F", "https://mivb.openplanner.team/stops/5283F"], ["https://mivb.openplanner.team/stops/1172", "https://mivb.openplanner.team/stops/7750260"], ["https://mivb.openplanner.team/stops/5849", "https://mivb.openplanner.team/stops/5857F"], ["https://mivb.openplanner.team/stops/4116", "https://mivb.openplanner.team/stops/0470251"], ["https://mivb.openplanner.team/stops/0616", "https://mivb.openplanner.team/stops/2181"], ["https://mivb.openplanner.team/stops/1493", "https://mivb.openplanner.team/stops/1541"], ["https://mivb.openplanner.team/stops/0526", "https://mivb.openplanner.team/stops/1646F"], ["https://mivb.openplanner.team/stops/2323", "https://mivb.openplanner.team/stops/6857"], ["https://mivb.openplanner.team/stops/1931", "https://mivb.openplanner.team/stops/1937"], ["https://mivb.openplanner.team/stops/5210", "https://mivb.openplanner.team/stops/5255F"], ["https://mivb.openplanner.team/stops/0707", "https://mivb.openplanner.team/stops/2957"], ["https://mivb.openplanner.team/stops/3261", "https://mivb.openplanner.team/stops/0270414"], ["https://mivb.openplanner.team/stops/2137", "https://mivb.openplanner.team/stops/2717"], ["https://mivb.openplanner.team/stops/2553", "https://mivb.openplanner.team/stops/5757"], ["https://mivb.openplanner.team/stops/6481", "https://mivb.openplanner.team/stops/53"], ["https://mivb.openplanner.team/stops/5414F", "https://mivb.openplanner.team/stops/6550"], ["https://mivb.openplanner.team/stops/5860", "https://mivb.openplanner.team/stops/5916F"], ["https://mivb.openplanner.team/stops/1684F", "https://mivb.openplanner.team/stops/1722"], ["https://mivb.openplanner.team/stops/2411B", "https://mivb.openplanner.team/stops/2954B"], ["https://mivb.openplanner.team/stops/1242", "https://mivb.openplanner.team/stops/3228"], ["https://mivb.openplanner.team/stops/1938", "https://mivb.openplanner.team/stops/2168"], ["https://mivb.openplanner.team/stops/0230334", "https://mivb.openplanner.team/stops/0230434"], ["https://mivb.openplanner.team/stops/1857", "https://mivb.openplanner.team/stops/5272F"], ["https://mivb.openplanner.team/stops/5350G", "https://mivb.openplanner.team/stops/7246"], ["https://mivb.openplanner.team/stops/1964", "https://mivb.openplanner.team/stops/2770"], ["https://mivb.openplanner.team/stops/2352", "https://mivb.openplanner.team/stops/3001B"], ["https://mivb.openplanner.team/stops/5413F", "https://mivb.openplanner.team/stops/5458"], ["https://mivb.openplanner.team/stops/3808", "https://mivb.openplanner.team/stops/3856"], ["https://mivb.openplanner.team/stops/2326", "https://mivb.openplanner.team/stops/6103F"], ["https://mivb.openplanner.team/stops/5025", "https://mivb.openplanner.team/stops/5059"], ["https://mivb.openplanner.team/stops/3802", "https://mivb.openplanner.team/stops/6808G"], ["https://mivb.openplanner.team/stops/6024", "https://mivb.openplanner.team/stops/0070121"], ["https://mivb.openplanner.team/stops/3921", "https://mivb.openplanner.team/stops/3922"], ["https://mivb.openplanner.team/stops/1534", "https://mivb.openplanner.team/stops/3661"], ["https://mivb.openplanner.team/stops/4348", "https://mivb.openplanner.team/stops/5420F"], ["https://mivb.openplanner.team/stops/1096", "https://mivb.openplanner.team/stops/2568"], ["https://mivb.openplanner.team/stops/1148C", "https://mivb.openplanner.team/stops/3399"], ["https://mivb.openplanner.team/stops/2314", "https://mivb.openplanner.team/stops/2827"], ["https://mivb.openplanner.team/stops/0670167", "https://mivb.openplanner.team/stops/5859"], ["https://mivb.openplanner.team/stops/2237", "https://mivb.openplanner.team/stops/6103"], ["https://mivb.openplanner.team/stops/1639", "https://mivb.openplanner.team/stops/0130127"], ["https://mivb.openplanner.team/stops/1544", "https://mivb.openplanner.team/stops/5562"], ["https://mivb.openplanner.team/stops/1116", "https://mivb.openplanner.team/stops/1194"], ["https://mivb.openplanner.team/stops/2311", "https://mivb.openplanner.team/stops/2364"], ["https://mivb.openplanner.team/stops/1384", "https://mivb.openplanner.team/stops/0120226"], ["https://mivb.openplanner.team/stops/4122", "https://mivb.openplanner.team/stops/7790356"], ["https://mivb.openplanner.team/stops/2104", "https://mivb.openplanner.team/stops/2156"], ["https://mivb.openplanner.team/stops/2463F", "https://mivb.openplanner.team/stops/6165"], ["https://mivb.openplanner.team/stops/2209", "https://mivb.openplanner.team/stops/2837"], ["https://mivb.openplanner.team/stops/0826", "https://mivb.openplanner.team/stops/0820170"], ["https://mivb.openplanner.team/stops/1824", "https://mivb.openplanner.team/stops/6433"], ["https://mivb.openplanner.team/stops/3899", "https://mivb.openplanner.team/stops/3900"], ["https://mivb.openplanner.team/stops/7720403", "https://mivb.openplanner.team/stops/8722"], ["https://mivb.openplanner.team/stops/3468", "https://mivb.openplanner.team/stops/3762"], ["https://mivb.openplanner.team/stops/1182", "https://mivb.openplanner.team/stops/5165"], ["https://mivb.openplanner.team/stops/1910", "https://mivb.openplanner.team/stops/3121"], ["https://mivb.openplanner.team/stops/1682F", "https://mivb.openplanner.team/stops/1743"], ["https://mivb.openplanner.team/stops/9727", "https://mivb.openplanner.team/stops/9728"], ["https://mivb.openplanner.team/stops/3129", "https://mivb.openplanner.team/stops/3279"], ["https://mivb.openplanner.team/stops/4271", "https://mivb.openplanner.team/stops/7780157"], ["https://mivb.openplanner.team/stops/2050", "https://mivb.openplanner.team/stops/0260137"], ["https://mivb.openplanner.team/stops/1626", "https://mivb.openplanner.team/stops/1792"], ["https://mivb.openplanner.team/stops/2522", "https://mivb.openplanner.team/stops/4601"], ["https://mivb.openplanner.team/stops/1962F", "https://mivb.openplanner.team/stops/2701"], ["https://mivb.openplanner.team/stops/1211B", "https://mivb.openplanner.team/stops/7720403"], ["https://mivb.openplanner.team/stops/5611", "https://mivb.openplanner.team/stops/6120"], ["https://mivb.openplanner.team/stops/3514", "https://mivb.openplanner.team/stops/4307"], ["https://mivb.openplanner.team/stops/1339", "https://mivb.openplanner.team/stops/2041"], ["https://mivb.openplanner.team/stops/1811", "https://mivb.openplanner.team/stops/1864"], ["https://mivb.openplanner.team/stops/4502F", "https://mivb.openplanner.team/stops/5724"], ["https://mivb.openplanner.team/stops/1676F", "https://mivb.openplanner.team/stops/1747"], ["https://mivb.openplanner.team/stops/2460", "https://mivb.openplanner.team/stops/2935"], ["https://mivb.openplanner.team/stops/1679F", "https://mivb.openplanner.team/stops/1681F"], ["https://mivb.openplanner.team/stops/5021", "https://mivb.openplanner.team/stops/5063"], ["https://mivb.openplanner.team/stops/8642", "https://mivb.openplanner.team/stops/7640311"], ["https://mivb.openplanner.team/stops/4213", "https://mivb.openplanner.team/stops/8461"], ["https://mivb.openplanner.team/stops/5740", "https://mivb.openplanner.team/stops/6461"], ["https://mivb.openplanner.team/stops/4319", "https://mivb.openplanner.team/stops/9059"], ["https://mivb.openplanner.team/stops/2376", "https://mivb.openplanner.team/stops/5705"], ["https://mivb.openplanner.team/stops/2511", "https://mivb.openplanner.team/stops/2568"], ["https://mivb.openplanner.team/stops/0610463", "https://mivb.openplanner.team/stops/6602P"], ["https://mivb.openplanner.team/stops/1490", "https://mivb.openplanner.team/stops/8682"], ["https://mivb.openplanner.team/stops/2813", "https://mivb.openplanner.team/stops/2857B"], ["https://mivb.openplanner.team/stops/0270314", "https://mivb.openplanner.team/stops/0270414"], ["https://mivb.openplanner.team/stops/1515", "https://mivb.openplanner.team/stops/6056"], ["https://mivb.openplanner.team/stops/1835", "https://mivb.openplanner.team/stops/5532"], ["https://mivb.openplanner.team/stops/0270514", "https://mivb.openplanner.team/stops/0270614"], ["https://mivb.openplanner.team/stops/6652", "https://mivb.openplanner.team/stops/0270514"], ["https://mivb.openplanner.team/stops/1124", "https://mivb.openplanner.team/stops/8302"], ["https://mivb.openplanner.team/stops/6860G", "https://mivb.openplanner.team/stops/0360139"], ["https://mivb.openplanner.team/stops/2667", "https://mivb.openplanner.team/stops/2667F"], ["https://mivb.openplanner.team/stops/1931", "https://mivb.openplanner.team/stops/1932"], ["https://mivb.openplanner.team/stops/2801", "https://mivb.openplanner.team/stops/6800F"], ["https://mivb.openplanner.team/stops/6443", "https://mivb.openplanner.team/stops/6444"], ["https://mivb.openplanner.team/stops/1467", "https://mivb.openplanner.team/stops/4250"], ["https://mivb.openplanner.team/stops/1938", "https://mivb.openplanner.team/stops/1958B"], ["https://mivb.openplanner.team/stops/5712F", "https://mivb.openplanner.team/stops/6363"], ["https://mivb.openplanner.team/stops/3961", "https://mivb.openplanner.team/stops/4505"], ["https://mivb.openplanner.team/stops/2759", "https://mivb.openplanner.team/stops/5459F"], ["https://mivb.openplanner.team/stops/0660266", "https://mivb.openplanner.team/stops/2336G"], ["https://mivb.openplanner.team/stops/3113", "https://mivb.openplanner.team/stops/3163"], ["https://mivb.openplanner.team/stops/0330242", "https://mivb.openplanner.team/stops/0330342"], ["https://mivb.openplanner.team/stops/1640B", "https://mivb.openplanner.team/stops/0130227"], ["https://mivb.openplanner.team/stops/3562", "https://mivb.openplanner.team/stops/5208"], ["https://mivb.openplanner.team/stops/4005F", "https://mivb.openplanner.team/stops/4602"], ["https://mivb.openplanner.team/stops/1510", "https://mivb.openplanner.team/stops/1569B"], ["https://mivb.openplanner.team/stops/3911", "https://mivb.openplanner.team/stops/4550"], ["https://mivb.openplanner.team/stops/2498", "https://mivb.openplanner.team/stops/2805F"], ["https://mivb.openplanner.team/stops/3449", "https://mivb.openplanner.team/stops/3470"], ["https://mivb.openplanner.team/stops/1964", "https://mivb.openplanner.team/stops/2709F"], ["https://mivb.openplanner.team/stops/1736", "https://mivb.openplanner.team/stops/5029"], ["https://mivb.openplanner.team/stops/1406", "https://mivb.openplanner.team/stops/0070521"], ["https://mivb.openplanner.team/stops/1043", "https://mivb.openplanner.team/stops/9853"], ["https://mivb.openplanner.team/stops/4308", "https://mivb.openplanner.team/stops/6550"], ["https://mivb.openplanner.team/stops/5041F", "https://mivb.openplanner.team/stops/5042"], ["https://mivb.openplanner.team/stops/8251", "https://mivb.openplanner.team/stops/8252"], ["https://mivb.openplanner.team/stops/2604", "https://mivb.openplanner.team/stops/2604F"], ["https://mivb.openplanner.team/stops/3005", "https://mivb.openplanner.team/stops/3061"], ["https://mivb.openplanner.team/stops/1090", "https://mivb.openplanner.team/stops/5908"], ["https://mivb.openplanner.team/stops/1884", "https://mivb.openplanner.team/stops/1909"], ["https://mivb.openplanner.team/stops/4357", "https://mivb.openplanner.team/stops/4402"], ["https://mivb.openplanner.team/stops/1824", "https://mivb.openplanner.team/stops/0300145"], ["https://mivb.openplanner.team/stops/0725", "https://mivb.openplanner.team/stops/0340341"], ["https://mivb.openplanner.team/stops/5415F", "https://mivb.openplanner.team/stops/5459F"], ["https://mivb.openplanner.team/stops/6482", "https://mivb.openplanner.team/stops/8823"], ["https://mivb.openplanner.team/stops/6253", "https://mivb.openplanner.team/stops/6424F"], ["https://mivb.openplanner.team/stops/3104", "https://mivb.openplanner.team/stops/5913"], ["https://mivb.openplanner.team/stops/1116", "https://mivb.openplanner.team/stops/4599"], ["https://mivb.openplanner.team/stops/2928", "https://mivb.openplanner.team/stops/5610"], ["https://mivb.openplanner.team/stops/1831", "https://mivb.openplanner.team/stops/8131"], ["https://mivb.openplanner.team/stops/3174", "https://mivb.openplanner.team/stops/5872"], ["https://mivb.openplanner.team/stops/1931", "https://mivb.openplanner.team/stops/5823"], ["https://mivb.openplanner.team/stops/1304", "https://mivb.openplanner.team/stops/4153"], ["https://mivb.openplanner.team/stops/1798", "https://mivb.openplanner.team/stops/5469"], ["https://mivb.openplanner.team/stops/2567", "https://mivb.openplanner.team/stops/4054G"], ["https://mivb.openplanner.team/stops/1131B", "https://mivb.openplanner.team/stops/1162C"], ["https://mivb.openplanner.team/stops/2316", "https://mivb.openplanner.team/stops/2359"], ["https://mivb.openplanner.team/stops/1685F", "https://mivb.openplanner.team/stops/1744"], ["https://mivb.openplanner.team/stops/3313", "https://mivb.openplanner.team/stops/0420147"], ["https://mivb.openplanner.team/stops/1528", "https://mivb.openplanner.team/stops/2015"], ["https://mivb.openplanner.team/stops/1455", "https://mivb.openplanner.team/stops/5419"], ["https://mivb.openplanner.team/stops/7640111", "https://mivb.openplanner.team/stops/7640211"], ["https://mivb.openplanner.team/stops/1958B", "https://mivb.openplanner.team/stops/1959"], ["https://mivb.openplanner.team/stops/1317", "https://mivb.openplanner.team/stops/1402B"], ["https://mivb.openplanner.team/stops/2567", "https://mivb.openplanner.team/stops/3232"], ["https://mivb.openplanner.team/stops/5100B", "https://mivb.openplanner.team/stops/5159"], ["https://mivb.openplanner.team/stops/1840", "https://mivb.openplanner.team/stops/6475F"], ["https://mivb.openplanner.team/stops/1614B", "https://mivb.openplanner.team/stops/5516"], ["https://mivb.openplanner.team/stops/5264F", "https://mivb.openplanner.team/stops/5468"], ["https://mivb.openplanner.team/stops/1642F", "https://mivb.openplanner.team/stops/2238"], ["https://mivb.openplanner.team/stops/6806F", "https://mivb.openplanner.team/stops/9979B"], ["https://mivb.openplanner.team/stops/2803", "https://mivb.openplanner.team/stops/2873"], ["https://mivb.openplanner.team/stops/2903", "https://mivb.openplanner.team/stops/2903F"], ["https://mivb.openplanner.team/stops/1616", "https://mivb.openplanner.team/stops/1635"], ["https://mivb.openplanner.team/stops/1138", "https://mivb.openplanner.team/stops/1458"], ["https://mivb.openplanner.team/stops/1631", "https://mivb.openplanner.team/stops/5518"], ["https://mivb.openplanner.team/stops/7740201", "https://mivb.openplanner.team/stops/60"], ["https://mivb.openplanner.team/stops/2319", "https://mivb.openplanner.team/stops/6811"], ["https://mivb.openplanner.team/stops/1159", "https://mivb.openplanner.team/stops/1402B"], ["https://mivb.openplanner.team/stops/6502", "https://mivb.openplanner.team/stops/6869G"], ["https://mivb.openplanner.team/stops/8753", "https://mivb.openplanner.team/stops/7750260"], ["https://mivb.openplanner.team/stops/1910", "https://mivb.openplanner.team/stops/1980"], ["https://mivb.openplanner.team/stops/1968", "https://mivb.openplanner.team/stops/4856B"], ["https://mivb.openplanner.team/stops/7670108", "https://mivb.openplanner.team/stops/8672"], ["https://mivb.openplanner.team/stops/2327", "https://mivb.openplanner.team/stops/5959"], ["https://mivb.openplanner.team/stops/2086", "https://mivb.openplanner.team/stops/6469"], ["https://mivb.openplanner.team/stops/5082", "https://mivb.openplanner.team/stops/8814"], ["https://mivb.openplanner.team/stops/1539", "https://mivb.openplanner.team/stops/1558"], ["https://mivb.openplanner.team/stops/2532", "https://mivb.openplanner.team/stops/8702"], ["https://mivb.openplanner.team/stops/2762", "https://mivb.openplanner.team/stops/6440"], ["https://mivb.openplanner.team/stops/3165", "https://mivb.openplanner.team/stops/6363"], ["https://mivb.openplanner.team/stops/1673", "https://mivb.openplanner.team/stops/2078"], ["https://mivb.openplanner.team/stops/2867", "https://mivb.openplanner.team/stops/5403"], ["https://mivb.openplanner.team/stops/4308", "https://mivb.openplanner.team/stops/4359"], ["https://mivb.openplanner.team/stops/3214", "https://mivb.openplanner.team/stops/5042"], ["https://mivb.openplanner.team/stops/1421", "https://mivb.openplanner.team/stops/1529"], ["https://mivb.openplanner.team/stops/2548", "https://mivb.openplanner.team/stops/5757F"], ["https://mivb.openplanner.team/stops/2859", "https://mivb.openplanner.team/stops/2877"], ["https://mivb.openplanner.team/stops/5312", "https://mivb.openplanner.team/stops/5352"], ["https://mivb.openplanner.team/stops/0621", "https://mivb.openplanner.team/stops/1225"], ["https://mivb.openplanner.team/stops/2665F", "https://mivb.openplanner.team/stops/5720F"], ["https://mivb.openplanner.team/stops/6008", "https://mivb.openplanner.team/stops/6153"], ["https://mivb.openplanner.team/stops/1857", "https://mivb.openplanner.team/stops/5281"], ["https://mivb.openplanner.team/stops/4221", "https://mivb.openplanner.team/stops/4260"], ["https://mivb.openplanner.team/stops/1629", "https://mivb.openplanner.team/stops/9578"], ["https://mivb.openplanner.team/stops/8051", "https://mivb.openplanner.team/stops/0050419"], ["https://mivb.openplanner.team/stops/3450", "https://mivb.openplanner.team/stops/3458"], ["https://mivb.openplanner.team/stops/7780157", "https://mivb.openplanner.team/stops/58"], ["https://mivb.openplanner.team/stops/3177", "https://mivb.openplanner.team/stops/5359"], ["https://mivb.openplanner.team/stops/1315", "https://mivb.openplanner.team/stops/3280"], ["https://mivb.openplanner.team/stops/2665F", "https://mivb.openplanner.team/stops/9920F"], ["https://mivb.openplanner.team/stops/1290", "https://mivb.openplanner.team/stops/5400"], ["https://mivb.openplanner.team/stops/1259", "https://mivb.openplanner.team/stops/1482"], ["https://mivb.openplanner.team/stops/1334", "https://mivb.openplanner.team/stops/1687F"], ["https://mivb.openplanner.team/stops/1918", "https://mivb.openplanner.team/stops/5211"], ["https://mivb.openplanner.team/stops/1826", "https://mivb.openplanner.team/stops/5655"], ["https://mivb.openplanner.team/stops/2138B", "https://mivb.openplanner.team/stops/2760B"], ["https://mivb.openplanner.team/stops/2869", "https://mivb.openplanner.team/stops/5080"], ["https://mivb.openplanner.team/stops/1258G", "https://mivb.openplanner.team/stops/5953F"], ["https://mivb.openplanner.team/stops/4313", "https://mivb.openplanner.team/stops/4355"], ["https://mivb.openplanner.team/stops/6421F", "https://mivb.openplanner.team/stops/6423F"], ["https://mivb.openplanner.team/stops/2545", "https://mivb.openplanner.team/stops/2811"], ["https://mivb.openplanner.team/stops/1657", "https://mivb.openplanner.team/stops/5518"], ["https://mivb.openplanner.team/stops/5605", "https://mivb.openplanner.team/stops/5655"], ["https://mivb.openplanner.team/stops/1707", "https://mivb.openplanner.team/stops/2264"], ["https://mivb.openplanner.team/stops/2221", "https://mivb.openplanner.team/stops/3351"], ["https://mivb.openplanner.team/stops/2916", "https://mivb.openplanner.team/stops/5306G"], ["https://mivb.openplanner.team/stops/2299", "https://mivb.openplanner.team/stops/2377"], ["https://mivb.openplanner.team/stops/2470", "https://mivb.openplanner.team/stops/7369"], ["https://mivb.openplanner.team/stops/5856", "https://mivb.openplanner.team/stops/5856F"], ["https://mivb.openplanner.team/stops/2296", "https://mivb.openplanner.team/stops/4324"], ["https://mivb.openplanner.team/stops/2971F", "https://mivb.openplanner.team/stops/5404"], ["https://mivb.openplanner.team/stops/3362", "https://mivb.openplanner.team/stops/5045"], ["https://mivb.openplanner.team/stops/5009", "https://mivb.openplanner.team/stops/5076F"], ["https://mivb.openplanner.team/stops/6465", "https://mivb.openplanner.team/stops/19"], ["https://mivb.openplanner.team/stops/2283", "https://mivb.openplanner.team/stops/0080122"], ["https://mivb.openplanner.team/stops/1527", "https://mivb.openplanner.team/stops/1531"], ["https://mivb.openplanner.team/stops/6800", "https://mivb.openplanner.team/stops/6803F"], ["https://mivb.openplanner.team/stops/1456", "https://mivb.openplanner.team/stops/1546"], ["https://mivb.openplanner.team/stops/3004", "https://mivb.openplanner.team/stops/6657"], ["https://mivb.openplanner.team/stops/2355", "https://mivb.openplanner.team/stops/4076"], ["https://mivb.openplanner.team/stops/0620164", "https://mivb.openplanner.team/stops/0626"], ["https://mivb.openplanner.team/stops/4290", "https://mivb.openplanner.team/stops/9059"], ["https://mivb.openplanner.team/stops/2769", "https://mivb.openplanner.team/stops/5027"], ["https://mivb.openplanner.team/stops/5758F", "https://mivb.openplanner.team/stops/5761"], ["https://mivb.openplanner.team/stops/1970", "https://mivb.openplanner.team/stops/4854C"], ["https://mivb.openplanner.team/stops/2528", "https://mivb.openplanner.team/stops/3800"], ["https://mivb.openplanner.team/stops/9754B", "https://mivb.openplanner.team/stops/9755"], ["https://mivb.openplanner.team/stops/2216", "https://mivb.openplanner.team/stops/2260F"], ["https://mivb.openplanner.team/stops/3201", "https://mivb.openplanner.team/stops/9725"], ["https://mivb.openplanner.team/stops/0506", "https://mivb.openplanner.team/stops/0010315"], ["https://mivb.openplanner.team/stops/3609F", "https://mivb.openplanner.team/stops/3612F"], ["https://mivb.openplanner.team/stops/3624B", "https://mivb.openplanner.team/stops/5068F"], ["https://mivb.openplanner.team/stops/5062", "https://mivb.openplanner.team/stops/5219F"], ["https://mivb.openplanner.team/stops/0670267", "https://mivb.openplanner.team/stops/2334F"], ["https://mivb.openplanner.team/stops/1855", "https://mivb.openplanner.team/stops/6602P"], ["https://mivb.openplanner.team/stops/6811", "https://mivb.openplanner.team/stops/6856"], ["https://mivb.openplanner.team/stops/1115", "https://mivb.openplanner.team/stops/1244"], ["https://mivb.openplanner.team/stops/0470251", "https://mivb.openplanner.team/stops/7770258"], ["https://mivb.openplanner.team/stops/3562", "https://mivb.openplanner.team/stops/3570"], ["https://mivb.openplanner.team/stops/4213", "https://mivb.openplanner.team/stops/6755"], ["https://mivb.openplanner.team/stops/2018", "https://mivb.openplanner.team/stops/5424"], ["https://mivb.openplanner.team/stops/5967", "https://mivb.openplanner.team/stops/5968"], ["https://mivb.openplanner.team/stops/6353F", "https://mivb.openplanner.team/stops/0320443"], ["https://mivb.openplanner.team/stops/3553", "https://mivb.openplanner.team/stops/4296"], ["https://mivb.openplanner.team/stops/1094F", "https://mivb.openplanner.team/stops/1236"], ["https://mivb.openplanner.team/stops/2256F", "https://mivb.openplanner.team/stops/2550"], ["https://mivb.openplanner.team/stops/1289", "https://mivb.openplanner.team/stops/7830252"], ["https://mivb.openplanner.team/stops/3760", "https://mivb.openplanner.team/stops/7720203"], ["https://mivb.openplanner.team/stops/2912", "https://mivb.openplanner.team/stops/7268"], ["https://mivb.openplanner.team/stops/4014", "https://mivb.openplanner.team/stops/60"], ["https://mivb.openplanner.team/stops/3906", "https://mivb.openplanner.team/stops/3952"], ["https://mivb.openplanner.team/stops/8372", "https://mivb.openplanner.team/stops/0370338"], ["https://mivb.openplanner.team/stops/0650265", "https://mivb.openplanner.team/stops/6428"], ["https://mivb.openplanner.team/stops/1935", "https://mivb.openplanner.team/stops/1954"], ["https://mivb.openplanner.team/stops/2243F", "https://mivb.openplanner.team/stops/2244F"], ["https://mivb.openplanner.team/stops/4106", "https://mivb.openplanner.team/stops/5172F"], ["https://mivb.openplanner.team/stops/1230", "https://mivb.openplanner.team/stops/2546"], ["https://mivb.openplanner.team/stops/2828", "https://mivb.openplanner.team/stops/2830"], ["https://mivb.openplanner.team/stops/6014", "https://mivb.openplanner.team/stops/6359"], ["https://mivb.openplanner.team/stops/2117B", "https://mivb.openplanner.team/stops/2143B"], ["https://mivb.openplanner.team/stops/1196", "https://mivb.openplanner.team/stops/4002G"], ["https://mivb.openplanner.team/stops/1095", "https://mivb.openplanner.team/stops/4656"], ["https://mivb.openplanner.team/stops/6202", "https://mivb.openplanner.team/stops/6419F"], ["https://mivb.openplanner.team/stops/1683F", "https://mivb.openplanner.team/stops/1684F"], ["https://mivb.openplanner.team/stops/1073", "https://mivb.openplanner.team/stops/6124"], ["https://mivb.openplanner.team/stops/0810169", "https://mivb.openplanner.team/stops/0810269"], ["https://mivb.openplanner.team/stops/1741", "https://mivb.openplanner.team/stops/5031F"], ["https://mivb.openplanner.team/stops/5018F", "https://mivb.openplanner.team/stops/5469"], ["https://mivb.openplanner.team/stops/8311", "https://mivb.openplanner.team/stops/44"], ["https://mivb.openplanner.team/stops/1734", "https://mivb.openplanner.team/stops/1824"], ["https://mivb.openplanner.team/stops/2702", "https://mivb.openplanner.team/stops/2771"], ["https://mivb.openplanner.team/stops/6606", "https://mivb.openplanner.team/stops/6651"], ["https://mivb.openplanner.team/stops/3321", "https://mivb.openplanner.team/stops/9311"], ["https://mivb.openplanner.team/stops/2261", "https://mivb.openplanner.team/stops/4595"], ["https://mivb.openplanner.team/stops/1403", "https://mivb.openplanner.team/stops/6055"], ["https://mivb.openplanner.team/stops/8342", "https://mivb.openplanner.team/stops/0340241"], ["https://mivb.openplanner.team/stops/1733", "https://mivb.openplanner.team/stops/1880"], ["https://mivb.openplanner.team/stops/1754", "https://mivb.openplanner.team/stops/2046"], ["https://mivb.openplanner.team/stops/2509", "https://mivb.openplanner.team/stops/5108"], ["https://mivb.openplanner.team/stops/3233", "https://mivb.openplanner.team/stops/3238"], ["https://mivb.openplanner.team/stops/2903", "https://mivb.openplanner.team/stops/3420"], ["https://mivb.openplanner.team/stops/2728", "https://mivb.openplanner.team/stops/5507"], ["https://mivb.openplanner.team/stops/4071", "https://mivb.openplanner.team/stops/4223"], ["https://mivb.openplanner.team/stops/3285", "https://mivb.openplanner.team/stops/3286B"], ["https://mivb.openplanner.team/stops/6806", "https://mivb.openplanner.team/stops/0350640"], ["https://mivb.openplanner.team/stops/2308", "https://mivb.openplanner.team/stops/5707"], ["https://mivb.openplanner.team/stops/3505", "https://mivb.openplanner.team/stops/0310444"], ["https://mivb.openplanner.team/stops/3176", "https://mivb.openplanner.team/stops/3182"], ["https://mivb.openplanner.team/stops/2138B", "https://mivb.openplanner.team/stops/6440"], ["https://mivb.openplanner.team/stops/2217", "https://mivb.openplanner.team/stops/2259F"], ["https://mivb.openplanner.team/stops/3506", "https://mivb.openplanner.team/stops/5469"], ["https://mivb.openplanner.team/stops/1639", "https://mivb.openplanner.team/stops/2039"], ["https://mivb.openplanner.team/stops/3355", "https://mivb.openplanner.team/stops/46"], ["https://mivb.openplanner.team/stops/1846", "https://mivb.openplanner.team/stops/5553"], ["https://mivb.openplanner.team/stops/5102F", "https://mivb.openplanner.team/stops/5174"], ["https://mivb.openplanner.team/stops/1516", "https://mivb.openplanner.team/stops/3251"], ["https://mivb.openplanner.team/stops/5735", "https://mivb.openplanner.team/stops/6359F"], ["https://mivb.openplanner.team/stops/3325", "https://mivb.openplanner.team/stops/6412F"], ["https://mivb.openplanner.team/stops/1736", "https://mivb.openplanner.team/stops/2153"], ["https://mivb.openplanner.team/stops/2835", "https://mivb.openplanner.team/stops/0440249"], ["https://mivb.openplanner.team/stops/3351", "https://mivb.openplanner.team/stops/3353"], ["https://mivb.openplanner.team/stops/5270F", "https://mivb.openplanner.team/stops/5282F"], ["https://mivb.openplanner.team/stops/3313", "https://mivb.openplanner.team/stops/9023"], ["https://mivb.openplanner.team/stops/3532", "https://mivb.openplanner.team/stops/6355"], ["https://mivb.openplanner.team/stops/1209", "https://mivb.openplanner.team/stops/5105"], ["https://mivb.openplanner.team/stops/5509", "https://mivb.openplanner.team/stops/5554"], ["https://mivb.openplanner.team/stops/1985G", "https://mivb.openplanner.team/stops/5816G"], ["https://mivb.openplanner.team/stops/1983", "https://mivb.openplanner.team/stops/2928"], ["https://mivb.openplanner.team/stops/2715", "https://mivb.openplanner.team/stops/6439"], ["https://mivb.openplanner.team/stops/5210", "https://mivb.openplanner.team/stops/5256"], ["https://mivb.openplanner.team/stops/1855", "https://mivb.openplanner.team/stops/2263"], ["https://mivb.openplanner.team/stops/3261", "https://mivb.openplanner.team/stops/0270314"], ["https://mivb.openplanner.team/stops/1747", "https://mivb.openplanner.team/stops/2507"], ["https://mivb.openplanner.team/stops/1962F", "https://mivb.openplanner.team/stops/5817F"], ["https://mivb.openplanner.team/stops/2237", "https://mivb.openplanner.team/stops/5288"], ["https://mivb.openplanner.team/stops/2503", "https://mivb.openplanner.team/stops/7780157"], ["https://mivb.openplanner.team/stops/1758B", "https://mivb.openplanner.team/stops/3547"], ["https://mivb.openplanner.team/stops/1820", "https://mivb.openplanner.team/stops/0010415"], ["https://mivb.openplanner.team/stops/1382", "https://mivb.openplanner.team/stops/0120626"], ["https://mivb.openplanner.team/stops/1500", "https://mivb.openplanner.team/stops/5287"], ["https://mivb.openplanner.team/stops/1497B", "https://mivb.openplanner.team/stops/0050219"], ["https://mivb.openplanner.team/stops/1242", "https://mivb.openplanner.team/stops/3228F"], ["https://mivb.openplanner.team/stops/2015", "https://mivb.openplanner.team/stops/9876"], ["https://mivb.openplanner.team/stops/1421", "https://mivb.openplanner.team/stops/1449"], ["https://mivb.openplanner.team/stops/5350G", "https://mivb.openplanner.team/stops/7252B"], ["https://mivb.openplanner.team/stops/5281", "https://mivb.openplanner.team/stops/5281G"], ["https://mivb.openplanner.team/stops/1964", "https://mivb.openplanner.team/stops/2771"], ["https://mivb.openplanner.team/stops/1322", "https://mivb.openplanner.team/stops/5222F"], ["https://mivb.openplanner.team/stops/6808G", "https://mivb.openplanner.team/stops/6860G"], ["https://mivb.openplanner.team/stops/1260", "https://mivb.openplanner.team/stops/1261"], ["https://mivb.openplanner.team/stops/2376", "https://mivb.openplanner.team/stops/2377"], ["https://mivb.openplanner.team/stops/1089", "https://mivb.openplanner.team/stops/2361"], ["https://mivb.openplanner.team/stops/3230", "https://mivb.openplanner.team/stops/3230F"], ["https://mivb.openplanner.team/stops/6361", "https://mivb.openplanner.team/stops/0370543"], ["https://mivb.openplanner.team/stops/0725", "https://mivb.openplanner.team/stops/8342"], ["https://mivb.openplanner.team/stops/1211B", "https://mivb.openplanner.team/stops/6005"], ["https://mivb.openplanner.team/stops/6416F", "https://mivb.openplanner.team/stops/6418"], ["https://mivb.openplanner.team/stops/1516", "https://mivb.openplanner.team/stops/6454"], ["https://mivb.openplanner.team/stops/2917", "https://mivb.openplanner.team/stops/6204"], ["https://mivb.openplanner.team/stops/2997", "https://mivb.openplanner.team/stops/3470"], ["https://mivb.openplanner.team/stops/5076", "https://mivb.openplanner.team/stops/5076F"], ["https://mivb.openplanner.team/stops/2508", "https://mivb.openplanner.team/stops/5166"], ["https://mivb.openplanner.team/stops/0430448", "https://mivb.openplanner.team/stops/0430648"], ["https://mivb.openplanner.team/stops/0330142", "https://mivb.openplanner.team/stops/0330242"], ["https://mivb.openplanner.team/stops/2215", "https://mivb.openplanner.team/stops/2262"], ["https://mivb.openplanner.team/stops/0631", "https://mivb.openplanner.team/stops/0726"], ["https://mivb.openplanner.team/stops/5720", "https://mivb.openplanner.team/stops/5720F"], ["https://mivb.openplanner.team/stops/1116", "https://mivb.openplanner.team/stops/1195"], ["https://mivb.openplanner.team/stops/8112", "https://mivb.openplanner.team/stops/0110325"], ["https://mivb.openplanner.team/stops/3101", "https://mivb.openplanner.team/stops/9292"], ["https://mivb.openplanner.team/stops/2252", "https://mivb.openplanner.team/stops/6483B"], ["https://mivb.openplanner.team/stops/2574", "https://mivb.openplanner.team/stops/2586"], ["https://mivb.openplanner.team/stops/2414", "https://mivb.openplanner.team/stops/2415"], ["https://mivb.openplanner.team/stops/2548F", "https://mivb.openplanner.team/stops/5116"], ["https://mivb.openplanner.team/stops/1626", "https://mivb.openplanner.team/stops/7770258"], ["https://mivb.openplanner.team/stops/4122", "https://mivb.openplanner.team/stops/7790256"], ["https://mivb.openplanner.team/stops/2513", "https://mivb.openplanner.team/stops/3239"], ["https://mivb.openplanner.team/stops/2218F", "https://mivb.openplanner.team/stops/6858C"], ["https://mivb.openplanner.team/stops/1348", "https://mivb.openplanner.team/stops/4217"], ["https://mivb.openplanner.team/stops/5213", "https://mivb.openplanner.team/stops/5222F"], ["https://mivb.openplanner.team/stops/1739", "https://mivb.openplanner.team/stops/2153"], ["https://mivb.openplanner.team/stops/1202", "https://mivb.openplanner.team/stops/1244"], ["https://mivb.openplanner.team/stops/1818", "https://mivb.openplanner.team/stops/5507"], ["https://mivb.openplanner.team/stops/5916F", "https://mivb.openplanner.team/stops/5953"], ["https://mivb.openplanner.team/stops/5087", "https://mivb.openplanner.team/stops/9052"], ["https://mivb.openplanner.team/stops/4273F", "https://mivb.openplanner.team/stops/9802"], ["https://mivb.openplanner.team/stops/1779", "https://mivb.openplanner.team/stops/5267"], ["https://mivb.openplanner.team/stops/0070221", "https://mivb.openplanner.team/stops/0070521"], ["https://mivb.openplanner.team/stops/1560", "https://mivb.openplanner.team/stops/3904"], ["https://mivb.openplanner.team/stops/0626", "https://mivb.openplanner.team/stops/1168"], ["https://mivb.openplanner.team/stops/0521", "https://mivb.openplanner.team/stops/1900"], ["https://mivb.openplanner.team/stops/1718B", "https://mivb.openplanner.team/stops/3551"], ["https://mivb.openplanner.team/stops/8742", "https://mivb.openplanner.team/stops/8743"], ["https://mivb.openplanner.team/stops/1211B", "https://mivb.openplanner.team/stops/7720303"], ["https://mivb.openplanner.team/stops/2608F", "https://mivb.openplanner.team/stops/2663"], ["https://mivb.openplanner.team/stops/1933B", "https://mivb.openplanner.team/stops/1963"], ["https://mivb.openplanner.team/stops/2962", "https://mivb.openplanner.team/stops/5610"], ["https://mivb.openplanner.team/stops/1729", "https://mivb.openplanner.team/stops/1983"], ["https://mivb.openplanner.team/stops/4502F", "https://mivb.openplanner.team/stops/5725"], ["https://mivb.openplanner.team/stops/1962F", "https://mivb.openplanner.team/stops/1965"], ["https://mivb.openplanner.team/stops/2940F", "https://mivb.openplanner.team/stops/5610"], ["https://mivb.openplanner.team/stops/1679F", "https://mivb.openplanner.team/stops/1682F"], ["https://mivb.openplanner.team/stops/0704", "https://mivb.openplanner.team/stops/0724"], ["https://mivb.openplanner.team/stops/1463", "https://mivb.openplanner.team/stops/6022B"], ["https://mivb.openplanner.team/stops/8261", "https://mivb.openplanner.team/stops/0260137"], ["https://mivb.openplanner.team/stops/1613", "https://mivb.openplanner.team/stops/1616"], ["https://mivb.openplanner.team/stops/2511", "https://mivb.openplanner.team/stops/2567"], ["https://mivb.openplanner.team/stops/2926", "https://mivb.openplanner.team/stops/2990"], ["https://mivb.openplanner.team/stops/2813", "https://mivb.openplanner.team/stops/2856B"], ["https://mivb.openplanner.team/stops/1206", "https://mivb.openplanner.team/stops/1207"], ["https://mivb.openplanner.team/stops/5121F", "https://mivb.openplanner.team/stops/5915"], ["https://mivb.openplanner.team/stops/4266", "https://mivb.openplanner.team/stops/4267"], ["https://mivb.openplanner.team/stops/9959F", "https://mivb.openplanner.team/stops/9986F"], ["https://mivb.openplanner.team/stops/5604", "https://mivb.openplanner.team/stops/9551"], ["https://mivb.openplanner.team/stops/2109B", "https://mivb.openplanner.team/stops/6440"], ["https://mivb.openplanner.team/stops/2365", "https://mivb.openplanner.team/stops/2822"], ["https://mivb.openplanner.team/stops/4599", "https://mivb.openplanner.team/stops/9801"], ["https://mivb.openplanner.team/stops/3058", "https://mivb.openplanner.team/stops/5958C"], ["https://mivb.openplanner.team/stops/5525", "https://mivb.openplanner.team/stops/5532"], ["https://mivb.openplanner.team/stops/1965", "https://mivb.openplanner.team/stops/5860"], ["https://mivb.openplanner.team/stops/1985G", "https://mivb.openplanner.team/stops/5815"], ["https://mivb.openplanner.team/stops/4253", "https://mivb.openplanner.team/stops/8281"], ["https://mivb.openplanner.team/stops/3713", "https://mivb.openplanner.team/stops/3755"], ["https://mivb.openplanner.team/stops/5221F", "https://mivb.openplanner.team/stops/9986F"], ["https://mivb.openplanner.team/stops/1467", "https://mivb.openplanner.team/stops/4251"], ["https://mivb.openplanner.team/stops/2463", "https://mivb.openplanner.team/stops/2463F"], ["https://mivb.openplanner.team/stops/3014", "https://mivb.openplanner.team/stops/5965"], ["https://mivb.openplanner.team/stops/8783", "https://mivb.openplanner.team/stops/9027"], ["https://mivb.openplanner.team/stops/4125", "https://mivb.openplanner.team/stops/4130F"], ["https://mivb.openplanner.team/stops/1598", "https://mivb.openplanner.team/stops/1716"], ["https://mivb.openplanner.team/stops/1599", "https://mivb.openplanner.team/stops/4072"], ["https://mivb.openplanner.team/stops/2216", "https://mivb.openplanner.team/stops/6808G"], ["https://mivb.openplanner.team/stops/9702", "https://mivb.openplanner.team/stops/9778"], ["https://mivb.openplanner.team/stops/1938", "https://mivb.openplanner.team/stops/1944"], ["https://mivb.openplanner.team/stops/4205", "https://mivb.openplanner.team/stops/4228"], ["https://mivb.openplanner.team/stops/8271", "https://mivb.openplanner.team/stops/0270114"], ["https://mivb.openplanner.team/stops/1085", "https://mivb.openplanner.team/stops/2523"], ["https://mivb.openplanner.team/stops/2289", "https://mivb.openplanner.team/stops/8081"], ["https://mivb.openplanner.team/stops/2108", "https://mivb.openplanner.team/stops/6931B"], ["https://mivb.openplanner.team/stops/2352", "https://mivb.openplanner.team/stops/2856B"], ["https://mivb.openplanner.team/stops/1640B", "https://mivb.openplanner.team/stops/0130127"], ["https://mivb.openplanner.team/stops/5520F", "https://mivb.openplanner.team/stops/7501"], ["https://mivb.openplanner.team/stops/1626", "https://mivb.openplanner.team/stops/5074"], ["https://mivb.openplanner.team/stops/2586", "https://mivb.openplanner.team/stops/6800"], ["https://mivb.openplanner.team/stops/6608G", "https://mivb.openplanner.team/stops/6650G"], ["https://mivb.openplanner.team/stops/0636", "https://mivb.openplanner.team/stops/0726"], ["https://mivb.openplanner.team/stops/1043", "https://mivb.openplanner.team/stops/9851"], ["https://mivb.openplanner.team/stops/1380", "https://mivb.openplanner.team/stops/1381"], ["https://mivb.openplanner.team/stops/6014", "https://mivb.openplanner.team/stops/8421"], ["https://mivb.openplanner.team/stops/2824", "https://mivb.openplanner.team/stops/5700G"], ["https://mivb.openplanner.team/stops/1915", "https://mivb.openplanner.team/stops/5210"], ["https://mivb.openplanner.team/stops/1236", "https://mivb.openplanner.team/stops/4055G"], ["https://mivb.openplanner.team/stops/4230", "https://mivb.openplanner.team/stops/7810254"], ["https://mivb.openplanner.team/stops/0725", "https://mivb.openplanner.team/stops/0340441"], ["https://mivb.openplanner.team/stops/5415F", "https://mivb.openplanner.team/stops/5459"], ["https://mivb.openplanner.team/stops/3100", "https://mivb.openplanner.team/stops/6018"], ["https://mivb.openplanner.team/stops/4294", "https://mivb.openplanner.team/stops/4456"], ["https://mivb.openplanner.team/stops/6411", "https://mivb.openplanner.team/stops/6412F"], ["https://mivb.openplanner.team/stops/1683F", "https://mivb.openplanner.team/stops/1743"], ["https://mivb.openplanner.team/stops/4217", "https://mivb.openplanner.team/stops/4258"], ["https://mivb.openplanner.team/stops/4116", "https://mivb.openplanner.team/stops/0470659"], ["https://mivb.openplanner.team/stops/3309F", "https://mivb.openplanner.team/stops/3414"], ["https://mivb.openplanner.team/stops/6061", "https://mivb.openplanner.team/stops/6369"], ["https://mivb.openplanner.team/stops/6705F", "https://mivb.openplanner.team/stops/6806"], ["https://mivb.openplanner.team/stops/1642F", "https://mivb.openplanner.team/stops/5762"], ["https://mivb.openplanner.team/stops/1719", "https://mivb.openplanner.team/stops/1812"], ["https://mivb.openplanner.team/stops/8794", "https://mivb.openplanner.team/stops/7790156"], ["https://mivb.openplanner.team/stops/1723B", "https://mivb.openplanner.team/stops/1725"], ["https://mivb.openplanner.team/stops/2316", "https://mivb.openplanner.team/stops/2358"], ["https://mivb.openplanner.team/stops/5223F", "https://mivb.openplanner.team/stops/5226F"], ["https://mivb.openplanner.team/stops/8062", "https://mivb.openplanner.team/stops/0060420"], ["https://mivb.openplanner.team/stops/1678F", "https://mivb.openplanner.team/stops/4159"], ["https://mivb.openplanner.team/stops/1917", "https://mivb.openplanner.team/stops/1973"], ["https://mivb.openplanner.team/stops/7529", "https://mivb.openplanner.team/stops/0310244"], ["https://mivb.openplanner.team/stops/1901", "https://mivb.openplanner.team/stops/2221"], ["https://mivb.openplanner.team/stops/6204", "https://mivb.openplanner.team/stops/6258"], ["https://mivb.openplanner.team/stops/5100B", "https://mivb.openplanner.team/stops/5159F"], ["https://mivb.openplanner.team/stops/1929", "https://mivb.openplanner.team/stops/1949"], ["https://mivb.openplanner.team/stops/2252", "https://mivb.openplanner.team/stops/7690206"], ["https://mivb.openplanner.team/stops/1422", "https://mivb.openplanner.team/stops/5223F"], ["https://mivb.openplanner.team/stops/2291B", "https://mivb.openplanner.team/stops/8221"], ["https://mivb.openplanner.team/stops/4274", "https://mivb.openplanner.team/stops/55"], ["https://mivb.openplanner.team/stops/2803", "https://mivb.openplanner.team/stops/2872"], ["https://mivb.openplanner.team/stops/1064", "https://mivb.openplanner.team/stops/5172F"], ["https://mivb.openplanner.team/stops/1781", "https://mivb.openplanner.team/stops/4323"], ["https://mivb.openplanner.team/stops/3608", "https://mivb.openplanner.team/stops/3756"], ["https://mivb.openplanner.team/stops/2817", "https://mivb.openplanner.team/stops/2827"], ["https://mivb.openplanner.team/stops/3099", "https://mivb.openplanner.team/stops/3171"], ["https://mivb.openplanner.team/stops/8041", "https://mivb.openplanner.team/stops/8402"], ["https://mivb.openplanner.team/stops/1713", "https://mivb.openplanner.team/stops/6155F"], ["https://mivb.openplanner.team/stops/2954B", "https://mivb.openplanner.team/stops/5814"], ["https://mivb.openplanner.team/stops/3203", "https://mivb.openplanner.team/stops/3204"], ["https://mivb.openplanner.team/stops/1776", "https://mivb.openplanner.team/stops/8042"], ["https://mivb.openplanner.team/stops/1703", "https://mivb.openplanner.team/stops/1800"], ["https://mivb.openplanner.team/stops/2828", "https://mivb.openplanner.team/stops/0430348"], ["https://mivb.openplanner.team/stops/1010", "https://mivb.openplanner.team/stops/6867F"], ["https://mivb.openplanner.team/stops/6171", "https://mivb.openplanner.team/stops/8794"], ["https://mivb.openplanner.team/stops/5554", "https://mivb.openplanner.team/stops/5659"], ["https://mivb.openplanner.team/stops/1278", "https://mivb.openplanner.team/stops/5261"], ["https://mivb.openplanner.team/stops/5813", "https://mivb.openplanner.team/stops/5814"], ["https://mivb.openplanner.team/stops/1910", "https://mivb.openplanner.team/stops/1981"], ["https://mivb.openplanner.team/stops/3904", "https://mivb.openplanner.team/stops/3961"], ["https://mivb.openplanner.team/stops/7660109", "https://mivb.openplanner.team/stops/8662"], ["https://mivb.openplanner.team/stops/1008", "https://mivb.openplanner.team/stops/1067"], ["https://mivb.openplanner.team/stops/2875", "https://mivb.openplanner.team/stops/5087"], ["https://mivb.openplanner.team/stops/4005F", "https://mivb.openplanner.team/stops/4055G"], ["https://mivb.openplanner.team/stops/2805F", "https://mivb.openplanner.team/stops/6502"], ["https://mivb.openplanner.team/stops/2528", "https://mivb.openplanner.team/stops/2544"], ["https://mivb.openplanner.team/stops/0040218", "https://mivb.openplanner.team/stops/0040518"], ["https://mivb.openplanner.team/stops/3200", "https://mivb.openplanner.team/stops/3207"], ["https://mivb.openplanner.team/stops/1466", "https://mivb.openplanner.team/stops/1768"], ["https://mivb.openplanner.team/stops/2408", "https://mivb.openplanner.team/stops/2463"], ["https://mivb.openplanner.team/stops/1765", "https://mivb.openplanner.team/stops/4158"], ["https://mivb.openplanner.team/stops/2661", "https://mivb.openplanner.team/stops/5922"], ["https://mivb.openplanner.team/stops/2148", "https://mivb.openplanner.team/stops/2150"], ["https://mivb.openplanner.team/stops/2762", "https://mivb.openplanner.team/stops/6439"], ["https://mivb.openplanner.team/stops/3448B", "https://mivb.openplanner.team/stops/4556"], ["https://mivb.openplanner.team/stops/3506", "https://mivb.openplanner.team/stops/3518B"], ["https://mivb.openplanner.team/stops/3800", "https://mivb.openplanner.team/stops/0360139"], ["https://mivb.openplanner.team/stops/1809", "https://mivb.openplanner.team/stops/1810"], ["https://mivb.openplanner.team/stops/2143B", "https://mivb.openplanner.team/stops/2718"], ["https://mivb.openplanner.team/stops/6436", "https://mivb.openplanner.team/stops/6437F"], ["https://mivb.openplanner.team/stops/1077", "https://mivb.openplanner.team/stops/2810"], ["https://mivb.openplanner.team/stops/2548", "https://mivb.openplanner.team/stops/5757"], ["https://mivb.openplanner.team/stops/1169", "https://mivb.openplanner.team/stops/3006"], ["https://mivb.openplanner.team/stops/1099", "https://mivb.openplanner.team/stops/1142"], ["https://mivb.openplanner.team/stops/0811", "https://mivb.openplanner.team/stops/69"], ["https://mivb.openplanner.team/stops/6022B", "https://mivb.openplanner.team/stops/6054B"], ["https://mivb.openplanner.team/stops/1706", "https://mivb.openplanner.team/stops/1983"], ["https://mivb.openplanner.team/stops/0600462", "https://mivb.openplanner.team/stops/0600962"], ["https://mivb.openplanner.team/stops/1866", "https://mivb.openplanner.team/stops/0200231"], ["https://mivb.openplanner.team/stops/3802", "https://mivb.openplanner.team/stops/3804B"], ["https://mivb.openplanner.team/stops/1995", "https://mivb.openplanner.team/stops/2702"], ["https://mivb.openplanner.team/stops/3123", "https://mivb.openplanner.team/stops/4366"], ["https://mivb.openplanner.team/stops/9052", "https://mivb.openplanner.team/stops/9056F"], ["https://mivb.openplanner.team/stops/8051", "https://mivb.openplanner.team/stops/0050319"], ["https://mivb.openplanner.team/stops/2924", "https://mivb.openplanner.team/stops/3306"], ["https://mivb.openplanner.team/stops/9164", "https://mivb.openplanner.team/stops/9553"], ["https://mivb.openplanner.team/stops/3109", "https://mivb.openplanner.team/stops/7484"], ["https://mivb.openplanner.team/stops/1056", "https://mivb.openplanner.team/stops/5072"], ["https://mivb.openplanner.team/stops/8022", "https://mivb.openplanner.team/stops/0020616"], ["https://mivb.openplanner.team/stops/0650265", "https://mivb.openplanner.team/stops/6162"], ["https://mivb.openplanner.team/stops/1646F", "https://mivb.openplanner.team/stops/6201F"], ["https://mivb.openplanner.team/stops/4074B", "https://mivb.openplanner.team/stops/8292"], ["https://mivb.openplanner.team/stops/1904", "https://mivb.openplanner.team/stops/8432"], ["https://mivb.openplanner.team/stops/6359F", "https://mivb.openplanner.team/stops/6411"], ["https://mivb.openplanner.team/stops/1018", "https://mivb.openplanner.team/stops/3610G"], ["https://mivb.openplanner.team/stops/1334", "https://mivb.openplanner.team/stops/1686F"], ["https://mivb.openplanner.team/stops/2835", "https://mivb.openplanner.team/stops/2837"], ["https://mivb.openplanner.team/stops/2248", "https://mivb.openplanner.team/stops/2250"], ["https://mivb.openplanner.team/stops/6421F", "https://mivb.openplanner.team/stops/6422F"], ["https://mivb.openplanner.team/stops/2916", "https://mivb.openplanner.team/stops/5307G"], ["https://mivb.openplanner.team/stops/2299", "https://mivb.openplanner.team/stops/2376"], ["https://mivb.openplanner.team/stops/6214", "https://mivb.openplanner.team/stops/6258"], ["https://mivb.openplanner.team/stops/1951", "https://mivb.openplanner.team/stops/4075"], ["https://mivb.openplanner.team/stops/1479", "https://mivb.openplanner.team/stops/1498"], ["https://mivb.openplanner.team/stops/1103", "https://mivb.openplanner.team/stops/1680F"], ["https://mivb.openplanner.team/stops/1731", "https://mivb.openplanner.team/stops/5284F"], ["https://mivb.openplanner.team/stops/2234", "https://mivb.openplanner.team/stops/3630"], ["https://mivb.openplanner.team/stops/5107B", "https://mivb.openplanner.team/stops/5116"], ["https://mivb.openplanner.team/stops/2283", "https://mivb.openplanner.team/stops/8082"], ["https://mivb.openplanner.team/stops/3613F", "https://mivb.openplanner.team/stops/8"], ["https://mivb.openplanner.team/stops/3409", "https://mivb.openplanner.team/stops/5357"], ["https://mivb.openplanner.team/stops/4254B", "https://mivb.openplanner.team/stops/4271"], ["https://mivb.openplanner.team/stops/0040318", "https://mivb.openplanner.team/stops/8402"], ["https://mivb.openplanner.team/stops/3905", "https://mivb.openplanner.team/stops/3961"], ["https://mivb.openplanner.team/stops/1376B", "https://mivb.openplanner.team/stops/1703"], ["https://mivb.openplanner.team/stops/1201", "https://mivb.openplanner.team/stops/1260"], ["https://mivb.openplanner.team/stops/0010215", "https://mivb.openplanner.team/stops/0010415"], ["https://mivb.openplanner.team/stops/0826", "https://mivb.openplanner.team/stops/6448"], ["https://mivb.openplanner.team/stops/1520", "https://mivb.openplanner.team/stops/3908"], ["https://mivb.openplanner.team/stops/2216", "https://mivb.openplanner.team/stops/2261"], ["https://mivb.openplanner.team/stops/1141", "https://mivb.openplanner.team/stops/1152"], ["https://mivb.openplanner.team/stops/1578", "https://mivb.openplanner.team/stops/3899"], ["https://mivb.openplanner.team/stops/1928", "https://mivb.openplanner.team/stops/2771"], ["https://mivb.openplanner.team/stops/0820270", "https://mivb.openplanner.team/stops/1563"], ["https://mivb.openplanner.team/stops/1855", "https://mivb.openplanner.team/stops/6603"], ["https://mivb.openplanner.team/stops/6811", "https://mivb.openplanner.team/stops/6812"], ["https://mivb.openplanner.team/stops/1712", "https://mivb.openplanner.team/stops/6113F"], ["https://mivb.openplanner.team/stops/1066", "https://mivb.openplanner.team/stops/6800F"], ["https://mivb.openplanner.team/stops/0470F", "https://mivb.openplanner.team/stops/0470751"], ["https://mivb.openplanner.team/stops/1042", "https://mivb.openplanner.team/stops/0080522"], ["https://mivb.openplanner.team/stops/2152", "https://mivb.openplanner.team/stops/2714"], ["https://mivb.openplanner.team/stops/1102", "https://mivb.openplanner.team/stops/4599"], ["https://mivb.openplanner.team/stops/2546", "https://mivb.openplanner.team/stops/5123"], ["https://mivb.openplanner.team/stops/6799F", "https://mivb.openplanner.team/stops/7670208"], ["https://mivb.openplanner.team/stops/2910", "https://mivb.openplanner.team/stops/2982"], ["https://mivb.openplanner.team/stops/2029", "https://mivb.openplanner.team/stops/2087"], ["https://mivb.openplanner.team/stops/2014", "https://mivb.openplanner.team/stops/2086"], ["https://mivb.openplanner.team/stops/0670267", "https://mivb.openplanner.team/stops/1220"], ["https://mivb.openplanner.team/stops/1479", "https://mivb.openplanner.team/stops/3853"], ["https://mivb.openplanner.team/stops/1752", "https://mivb.openplanner.team/stops/3530"], ["https://mivb.openplanner.team/stops/6166", "https://mivb.openplanner.team/stops/0350740"], ["https://mivb.openplanner.team/stops/1726", "https://mivb.openplanner.team/stops/0320443"], ["https://mivb.openplanner.team/stops/1801", "https://mivb.openplanner.team/stops/0340141"], ["https://mivb.openplanner.team/stops/2824", "https://mivb.openplanner.team/stops/2857B"], ["https://mivb.openplanner.team/stops/1714", "https://mivb.openplanner.team/stops/5267"], ["https://mivb.openplanner.team/stops/2407", "https://mivb.openplanner.team/stops/5151"], ["https://mivb.openplanner.team/stops/8372", "https://mivb.openplanner.team/stops/0370138"], ["https://mivb.openplanner.team/stops/3682", "https://mivb.openplanner.team/stops/3856"], ["https://mivb.openplanner.team/stops/2037", "https://mivb.openplanner.team/stops/0130127"], ["https://mivb.openplanner.team/stops/1280B", "https://mivb.openplanner.team/stops/3508F"], ["https://mivb.openplanner.team/stops/1077", "https://mivb.openplanner.team/stops/6174F"], ["https://mivb.openplanner.team/stops/2672", "https://mivb.openplanner.team/stops/5115F"], ["https://mivb.openplanner.team/stops/2117B", "https://mivb.openplanner.team/stops/2146"], ["https://mivb.openplanner.team/stops/5560", "https://mivb.openplanner.team/stops/0100324"], ["https://mivb.openplanner.team/stops/1723B", "https://mivb.openplanner.team/stops/2086"], ["https://mivb.openplanner.team/stops/6016", "https://mivb.openplanner.team/stops/9023"], ["https://mivb.openplanner.team/stops/1099", "https://mivb.openplanner.team/stops/4011"], ["https://mivb.openplanner.team/stops/4010", "https://mivb.openplanner.team/stops/4165"], ["https://mivb.openplanner.team/stops/1511", "https://mivb.openplanner.team/stops/6082"], ["https://mivb.openplanner.team/stops/2609", "https://mivb.openplanner.team/stops/5963"], ["https://mivb.openplanner.team/stops/2314", "https://mivb.openplanner.team/stops/2329"], ["https://mivb.openplanner.team/stops/2859", "https://mivb.openplanner.team/stops/5010"], ["https://mivb.openplanner.team/stops/1321", "https://mivb.openplanner.team/stops/1528"], ["https://mivb.openplanner.team/stops/1489", "https://mivb.openplanner.team/stops/2319"], ["https://mivb.openplanner.team/stops/8342", "https://mivb.openplanner.team/stops/0340141"], ["https://mivb.openplanner.team/stops/0040418", "https://mivb.openplanner.team/stops/0300245"], ["https://mivb.openplanner.team/stops/3233", "https://mivb.openplanner.team/stops/3239"], ["https://mivb.openplanner.team/stops/2214", "https://mivb.openplanner.team/stops/6655"], ["https://mivb.openplanner.team/stops/4264B", "https://mivb.openplanner.team/stops/7820153"], ["https://mivb.openplanner.team/stops/4111", "https://mivb.openplanner.team/stops/0290112"], ["https://mivb.openplanner.team/stops/1376B", "https://mivb.openplanner.team/stops/1800"], ["https://mivb.openplanner.team/stops/2837", "https://mivb.openplanner.team/stops/0430348"], ["https://mivb.openplanner.team/stops/1815", "https://mivb.openplanner.team/stops/5271F"], ["https://mivb.openplanner.team/stops/1598", "https://mivb.openplanner.team/stops/3515"], ["https://mivb.openplanner.team/stops/2138B", "https://mivb.openplanner.team/stops/6439"], ["https://mivb.openplanner.team/stops/6484B", "https://mivb.openplanner.team/stops/6811"], ["https://mivb.openplanner.team/stops/2456", "https://mivb.openplanner.team/stops/5813"], ["https://mivb.openplanner.team/stops/6433", "https://mivb.openplanner.team/stops/0300245"], ["https://mivb.openplanner.team/stops/2217", "https://mivb.openplanner.team/stops/2259"], ["https://mivb.openplanner.team/stops/9729", "https://mivb.openplanner.team/stops/9753"], ["https://mivb.openplanner.team/stops/2256B", "https://mivb.openplanner.team/stops/7700205"], ["https://mivb.openplanner.team/stops/3761", "https://mivb.openplanner.team/stops/5307G"], ["https://mivb.openplanner.team/stops/1348", "https://mivb.openplanner.team/stops/1356"], ["https://mivb.openplanner.team/stops/0240135", "https://mivb.openplanner.team/stops/0240235"], ["https://mivb.openplanner.team/stops/1782", "https://mivb.openplanner.team/stops/4116"], ["https://mivb.openplanner.team/stops/1818", "https://mivb.openplanner.team/stops/1819"], ["https://mivb.openplanner.team/stops/3114", "https://mivb.openplanner.team/stops/6061"], ["https://mivb.openplanner.team/stops/1138", "https://mivb.openplanner.team/stops/1521"], ["https://mivb.openplanner.team/stops/1206", "https://mivb.openplanner.team/stops/1257"], ["https://mivb.openplanner.team/stops/3549", "https://mivb.openplanner.team/stops/0250136"], ["https://mivb.openplanner.team/stops/5040", "https://mivb.openplanner.team/stops/6081"], ["https://mivb.openplanner.team/stops/1077", "https://mivb.openplanner.team/stops/2200F"], ["https://mivb.openplanner.team/stops/1209", "https://mivb.openplanner.team/stops/5105F"], ["https://mivb.openplanner.team/stops/6314", "https://mivb.openplanner.team/stops/0370543"], ["https://mivb.openplanner.team/stops/1920", "https://mivb.openplanner.team/stops/1970"], ["https://mivb.openplanner.team/stops/6437F", "https://mivb.openplanner.team/stops/6438"], ["https://mivb.openplanner.team/stops/8241", "https://mivb.openplanner.team/stops/35"], ["https://mivb.openplanner.team/stops/3957", "https://mivb.openplanner.team/stops/4505"], ["https://mivb.openplanner.team/stops/1855", "https://mivb.openplanner.team/stops/2264"], ["https://mivb.openplanner.team/stops/2137", "https://mivb.openplanner.team/stops/6934F"], ["https://mivb.openplanner.team/stops/1134", "https://mivb.openplanner.team/stops/1159"], ["https://mivb.openplanner.team/stops/1938", "https://mivb.openplanner.team/stops/1963"], ["https://mivb.openplanner.team/stops/1758B", "https://mivb.openplanner.team/stops/3546"], ["https://mivb.openplanner.team/stops/2167", "https://mivb.openplanner.team/stops/2704"], ["https://mivb.openplanner.team/stops/1482", "https://mivb.openplanner.team/stops/2319"], ["https://mivb.openplanner.team/stops/2260", "https://mivb.openplanner.team/stops/2260F"], ["https://mivb.openplanner.team/stops/2760B", "https://mivb.openplanner.team/stops/6439"], ["https://mivb.openplanner.team/stops/4293", "https://mivb.openplanner.team/stops/4299"], ["https://mivb.openplanner.team/stops/4152", "https://mivb.openplanner.team/stops/0470659"], ["https://mivb.openplanner.team/stops/1964", "https://mivb.openplanner.team/stops/2765"], ["https://mivb.openplanner.team/stops/2296", "https://mivb.openplanner.team/stops/3347"], ["https://mivb.openplanner.team/stops/5826", "https://mivb.openplanner.team/stops/5860"], ["https://mivb.openplanner.team/stops/1674F", "https://mivb.openplanner.team/stops/1747"], ["https://mivb.openplanner.team/stops/1089", "https://mivb.openplanner.team/stops/2360"], ["https://mivb.openplanner.team/stops/9551", "https://mivb.openplanner.team/stops/9578"], ["https://mivb.openplanner.team/stops/6313", "https://mivb.openplanner.team/stops/8321"], ["https://mivb.openplanner.team/stops/4857B", "https://mivb.openplanner.team/stops/6931B"], ["https://mivb.openplanner.team/stops/5724", "https://mivb.openplanner.team/stops/5725"], ["https://mivb.openplanner.team/stops/2996", "https://mivb.openplanner.team/stops/3470"], ["https://mivb.openplanner.team/stops/6172", "https://mivb.openplanner.team/stops/9027"], ["https://mivb.openplanner.team/stops/0430448", "https://mivb.openplanner.team/stops/0430548"], ["https://mivb.openplanner.team/stops/5700G", "https://mivb.openplanner.team/stops/5806"], ["https://mivb.openplanner.team/stops/2462", "https://mivb.openplanner.team/stops/6106"], ["https://mivb.openplanner.team/stops/1381", "https://mivb.openplanner.team/stops/9561"], ["https://mivb.openplanner.team/stops/2215", "https://mivb.openplanner.team/stops/2261"], ["https://mivb.openplanner.team/stops/1640B", "https://mivb.openplanner.team/stops/27"], ["https://mivb.openplanner.team/stops/8071", "https://mivb.openplanner.team/stops/0070421"], ["https://mivb.openplanner.team/stops/2263", "https://mivb.openplanner.team/stops/6655"], ["https://mivb.openplanner.team/stops/2548F", "https://mivb.openplanner.team/stops/5111B"], ["https://mivb.openplanner.team/stops/2872", "https://mivb.openplanner.team/stops/2873"], ["https://mivb.openplanner.team/stops/2513", "https://mivb.openplanner.team/stops/3238"], ["https://mivb.openplanner.team/stops/1327", "https://mivb.openplanner.team/stops/2550"], ["https://mivb.openplanner.team/stops/0070421", "https://mivb.openplanner.team/stops/21"], ["https://mivb.openplanner.team/stops/1160", "https://mivb.openplanner.team/stops/0050419"], ["https://mivb.openplanner.team/stops/9682", "https://mivb.openplanner.team/stops/9685"], ["https://mivb.openplanner.team/stops/1167", "https://mivb.openplanner.team/stops/2245"], ["https://mivb.openplanner.team/stops/0230434", "https://mivb.openplanner.team/stops/34"], ["https://mivb.openplanner.team/stops/1874", "https://mivb.openplanner.team/stops/8102"], ["https://mivb.openplanner.team/stops/5916F", "https://mivb.openplanner.team/stops/5952F"], ["https://mivb.openplanner.team/stops/6806F", "https://mivb.openplanner.team/stops/0350640"], ["https://mivb.openplanner.team/stops/1521", "https://mivb.openplanner.team/stops/1558"], ["https://mivb.openplanner.team/stops/1620B", "https://mivb.openplanner.team/stops/5518"], ["https://mivb.openplanner.team/stops/4273F", "https://mivb.openplanner.team/stops/9825F"], ["https://mivb.openplanner.team/stops/5963", "https://mivb.openplanner.team/stops/9686"], ["https://mivb.openplanner.team/stops/4344", "https://mivb.openplanner.team/stops/4408"], ["https://mivb.openplanner.team/stops/3608", "https://mivb.openplanner.team/stops/7670108"], ["https://mivb.openplanner.team/stops/5519", "https://mivb.openplanner.team/stops/5528F"], ["https://mivb.openplanner.team/stops/2314", "https://mivb.openplanner.team/stops/3005"], ["https://mivb.openplanner.team/stops/3158B", "https://mivb.openplanner.team/stops/3921"], ["https://mivb.openplanner.team/stops/2938", "https://mivb.openplanner.team/stops/2953"], ["https://mivb.openplanner.team/stops/2608F", "https://mivb.openplanner.team/stops/2663G"], ["https://mivb.openplanner.team/stops/1734", "https://mivb.openplanner.team/stops/0300145"], ["https://mivb.openplanner.team/stops/2801", "https://mivb.openplanner.team/stops/2803"], ["https://mivb.openplanner.team/stops/4260", "https://mivb.openplanner.team/stops/4261"], ["https://mivb.openplanner.team/stops/3210B", "https://mivb.openplanner.team/stops/3765"], ["https://mivb.openplanner.team/stops/1239", "https://mivb.openplanner.team/stops/2604F"], ["https://mivb.openplanner.team/stops/2301", "https://mivb.openplanner.team/stops/8012"], ["https://mivb.openplanner.team/stops/8642", "https://mivb.openplanner.team/stops/7640111"], ["https://mivb.openplanner.team/stops/2503", "https://mivb.openplanner.team/stops/2577"], ["https://mivb.openplanner.team/stops/1463", "https://mivb.openplanner.team/stops/6023"], ["https://mivb.openplanner.team/stops/2221", "https://mivb.openplanner.team/stops/0430548"], ["https://mivb.openplanner.team/stops/2535B", "https://mivb.openplanner.team/stops/8702"], ["https://mivb.openplanner.team/stops/2262", "https://mivb.openplanner.team/stops/6068"], ["https://mivb.openplanner.team/stops/4598", "https://mivb.openplanner.team/stops/5102F"], ["https://mivb.openplanner.team/stops/5404", "https://mivb.openplanner.team/stops/5467"], ["https://mivb.openplanner.team/stops/1125", "https://mivb.openplanner.team/stops/2470"], ["https://mivb.openplanner.team/stops/4075", "https://mivb.openplanner.team/stops/4076"], ["https://mivb.openplanner.team/stops/0600962", "https://mivb.openplanner.team/stops/0606"], ["https://mivb.openplanner.team/stops/0470F", "https://mivb.openplanner.team/stops/0473F"], ["https://mivb.openplanner.team/stops/6474F", "https://mivb.openplanner.team/stops/8161"], ["https://mivb.openplanner.team/stops/1206", "https://mivb.openplanner.team/stops/2536"], ["https://mivb.openplanner.team/stops/1541", "https://mivb.openplanner.team/stops/7670108"], ["https://mivb.openplanner.team/stops/8221", "https://mivb.openplanner.team/stops/0220233"], ["https://mivb.openplanner.team/stops/8271", "https://mivb.openplanner.team/stops/0270314"], ["https://mivb.openplanner.team/stops/2991", "https://mivb.openplanner.team/stops/9777"], ["https://mivb.openplanner.team/stops/5028", "https://mivb.openplanner.team/stops/5057"], ["https://mivb.openplanner.team/stops/2710G", "https://mivb.openplanner.team/stops/2764G"], ["https://mivb.openplanner.team/stops/1056", "https://mivb.openplanner.team/stops/5089"], ["https://mivb.openplanner.team/stops/5041F", "https://mivb.openplanner.team/stops/5045"], ["https://mivb.openplanner.team/stops/1024", "https://mivb.openplanner.team/stops/1082"], ["https://mivb.openplanner.team/stops/8251", "https://mivb.openplanner.team/stops/0250236"], ["https://mivb.openplanner.team/stops/1707", "https://mivb.openplanner.team/stops/2245"], ["https://mivb.openplanner.team/stops/1320", "https://mivb.openplanner.team/stops/3284"], ["https://mivb.openplanner.team/stops/1915", "https://mivb.openplanner.team/stops/5211"], ["https://mivb.openplanner.team/stops/0703", "https://mivb.openplanner.team/stops/0340441"], ["https://mivb.openplanner.team/stops/5551", "https://mivb.openplanner.team/stops/5553"], ["https://mivb.openplanner.team/stops/2124", "https://mivb.openplanner.team/stops/2133"], ["https://mivb.openplanner.team/stops/3410", "https://mivb.openplanner.team/stops/3451"], ["https://mivb.openplanner.team/stops/4232", "https://mivb.openplanner.team/stops/7790456"], ["https://mivb.openplanner.team/stops/1099", "https://mivb.openplanner.team/stops/4273F"], ["https://mivb.openplanner.team/stops/6008", "https://mivb.openplanner.team/stops/6009"], ["https://mivb.openplanner.team/stops/3129", "https://mivb.openplanner.team/stops/5038"], ["https://mivb.openplanner.team/stops/3552", "https://mivb.openplanner.team/stops/4296"], ["https://mivb.openplanner.team/stops/1110", "https://mivb.openplanner.team/stops/1955"], ["https://mivb.openplanner.team/stops/1509", "https://mivb.openplanner.team/stops/1582"], ["https://mivb.openplanner.team/stops/1538B", "https://mivb.openplanner.team/stops/3273"], ["https://mivb.openplanner.team/stops/3504", "https://mivb.openplanner.team/stops/3505"], ["https://mivb.openplanner.team/stops/8062", "https://mivb.openplanner.team/stops/0060120"], ["https://mivb.openplanner.team/stops/3125", "https://mivb.openplanner.team/stops/3480"], ["https://mivb.openplanner.team/stops/4126", "https://mivb.openplanner.team/stops/4126F"], ["https://mivb.openplanner.team/stops/1467", "https://mivb.openplanner.team/stops/9047"], ["https://mivb.openplanner.team/stops/6309F", "https://mivb.openplanner.team/stops/6356F"], ["https://mivb.openplanner.team/stops/1816", "https://mivb.openplanner.team/stops/1859"], ["https://mivb.openplanner.team/stops/1408", "https://mivb.openplanner.team/stops/1458"], ["https://mivb.openplanner.team/stops/0600262", "https://mivb.openplanner.team/stops/8012"], ["https://mivb.openplanner.team/stops/2567", "https://mivb.openplanner.team/stops/3239"], ["https://mivb.openplanner.team/stops/9626", "https://mivb.openplanner.team/stops/9707"], ["https://mivb.openplanner.team/stops/4344", "https://mivb.openplanner.team/stops/4348"], ["https://mivb.openplanner.team/stops/1826", "https://mivb.openplanner.team/stops/1851"], ["https://mivb.openplanner.team/stops/1727", "https://mivb.openplanner.team/stops/4160"], ["https://mivb.openplanner.team/stops/1736", "https://mivb.openplanner.team/stops/1739"], ["https://mivb.openplanner.team/stops/1747", "https://mivb.openplanner.team/stops/9103"], ["https://mivb.openplanner.team/stops/2803", "https://mivb.openplanner.team/stops/2871"], ["https://mivb.openplanner.team/stops/5822F", "https://mivb.openplanner.team/stops/5823"], ["https://mivb.openplanner.team/stops/1822", "https://mivb.openplanner.team/stops/1823"], ["https://mivb.openplanner.team/stops/3709", "https://mivb.openplanner.team/stops/8711"], ["https://mivb.openplanner.team/stops/2218F", "https://mivb.openplanner.team/stops/3805"], ["https://mivb.openplanner.team/stops/2319", "https://mivb.openplanner.team/stops/6856"], ["https://mivb.openplanner.team/stops/2671", "https://mivb.openplanner.team/stops/6106"], ["https://mivb.openplanner.team/stops/2831", "https://mivb.openplanner.team/stops/2835"], ["https://mivb.openplanner.team/stops/1402B", "https://mivb.openplanner.team/stops/3218"], ["https://mivb.openplanner.team/stops/5813", "https://mivb.openplanner.team/stops/5813F"], ["https://mivb.openplanner.team/stops/1710", "https://mivb.openplanner.team/stops/4158"], ["https://mivb.openplanner.team/stops/3904", "https://mivb.openplanner.team/stops/3957"], ["https://mivb.openplanner.team/stops/3232", "https://mivb.openplanner.team/stops/6004"], ["https://mivb.openplanner.team/stops/2927", "https://mivb.openplanner.team/stops/0050119"], ["https://mivb.openplanner.team/stops/4601", "https://mivb.openplanner.team/stops/4653"], ["https://mivb.openplanner.team/stops/2528", "https://mivb.openplanner.team/stops/2541"], ["https://mivb.openplanner.team/stops/0040218", "https://mivb.openplanner.team/stops/0040618"], ["https://mivb.openplanner.team/stops/1765", "https://mivb.openplanner.team/stops/4157"], ["https://mivb.openplanner.team/stops/1043", "https://mivb.openplanner.team/stops/2028"], ["https://mivb.openplanner.team/stops/5905", "https://mivb.openplanner.team/stops/5906"], ["https://mivb.openplanner.team/stops/2608", "https://mivb.openplanner.team/stops/2952B"], ["https://mivb.openplanner.team/stops/9851", "https://mivb.openplanner.team/stops/9853"], ["https://mivb.openplanner.team/stops/4308", "https://mivb.openplanner.team/stops/4362"], ["https://mivb.openplanner.team/stops/9607", "https://mivb.openplanner.team/stops/9631"], ["https://mivb.openplanner.team/stops/3199", "https://mivb.openplanner.team/stops/3201"], ["https://mivb.openplanner.team/stops/1995", "https://mivb.openplanner.team/stops/2701"], ["https://mivb.openplanner.team/stops/8051", "https://mivb.openplanner.team/stops/0050219"], ["https://mivb.openplanner.team/stops/3226F", "https://mivb.openplanner.team/stops/3263F"], ["https://mivb.openplanner.team/stops/0470151", "https://mivb.openplanner.team/stops/0470251"], ["https://mivb.openplanner.team/stops/2721", "https://mivb.openplanner.team/stops/2759"], ["https://mivb.openplanner.team/stops/3313", "https://mivb.openplanner.team/stops/3332"], ["https://mivb.openplanner.team/stops/2397", "https://mivb.openplanner.team/stops/5200F"], ["https://mivb.openplanner.team/stops/2218F", "https://mivb.openplanner.team/stops/7710104"], ["https://mivb.openplanner.team/stops/6359F", "https://mivb.openplanner.team/stops/6412F"], ["https://mivb.openplanner.team/stops/1098", "https://mivb.openplanner.team/stops/1182"], ["https://mivb.openplanner.team/stops/3240", "https://mivb.openplanner.team/stops/3459"], ["https://mivb.openplanner.team/stops/3403", "https://mivb.openplanner.team/stops/3450"], ["https://mivb.openplanner.team/stops/6365", "https://mivb.openplanner.team/stops/7762"], ["https://mivb.openplanner.team/stops/2412", "https://mivb.openplanner.team/stops/5855F"], ["https://mivb.openplanner.team/stops/5228F", "https://mivb.openplanner.team/stops/5229F"], ["https://mivb.openplanner.team/stops/3546", "https://mivb.openplanner.team/stops/33"], ["https://mivb.openplanner.team/stops/1567", "https://mivb.openplanner.team/stops/6059"], ["https://mivb.openplanner.team/stops/3403", "https://mivb.openplanner.team/stops/3404"], ["https://mivb.openplanner.team/stops/8641", "https://mivb.openplanner.team/stops/7640311"], ["https://mivb.openplanner.team/stops/2248", "https://mivb.openplanner.team/stops/2249"], ["https://mivb.openplanner.team/stops/0610163", "https://mivb.openplanner.team/stops/0610663"], ["https://mivb.openplanner.team/stops/5076", "https://mivb.openplanner.team/stops/8773"], ["https://mivb.openplanner.team/stops/1703", "https://mivb.openplanner.team/stops/3630"], ["https://mivb.openplanner.team/stops/1479", "https://mivb.openplanner.team/stops/1499"], ["https://mivb.openplanner.team/stops/5911", "https://mivb.openplanner.team/stops/5958C"], ["https://mivb.openplanner.team/stops/1132", "https://mivb.openplanner.team/stops/1262B"], ["https://mivb.openplanner.team/stops/1138", "https://mivb.openplanner.team/stops/1141"], ["https://mivb.openplanner.team/stops/1201", "https://mivb.openplanner.team/stops/2579"], ["https://mivb.openplanner.team/stops/7650110", "https://mivb.openplanner.team/stops/8652"], ["https://mivb.openplanner.team/stops/6463F", "https://mivb.openplanner.team/stops/0070621"], ["https://mivb.openplanner.team/stops/1913", "https://mivb.openplanner.team/stops/5466"], ["https://mivb.openplanner.team/stops/1046G", "https://mivb.openplanner.team/stops/5208"], ["https://mivb.openplanner.team/stops/6409F", "https://mivb.openplanner.team/stops/6419F"], ["https://mivb.openplanner.team/stops/4305", "https://mivb.openplanner.team/stops/5205"], ["https://mivb.openplanner.team/stops/3629", "https://mivb.openplanner.team/stops/6313"], ["https://mivb.openplanner.team/stops/1232", "https://mivb.openplanner.team/stops/2936"], ["https://mivb.openplanner.team/stops/3409", "https://mivb.openplanner.team/stops/5356"], ["https://mivb.openplanner.team/stops/0670167", "https://mivb.openplanner.team/stops/2408"], ["https://mivb.openplanner.team/stops/1098", "https://mivb.openplanner.team/stops/7750160"], ["https://mivb.openplanner.team/stops/3232", "https://mivb.openplanner.team/stops/3252"], ["https://mivb.openplanner.team/stops/1201", "https://mivb.openplanner.team/stops/1261"], ["https://mivb.openplanner.team/stops/1970", "https://mivb.openplanner.team/stops/4857B"], ["https://mivb.openplanner.team/stops/2220", "https://mivb.openplanner.team/stops/2220F"], ["https://mivb.openplanner.team/stops/2545", "https://mivb.openplanner.team/stops/2861"], ["https://mivb.openplanner.team/stops/3218", "https://mivb.openplanner.team/stops/6056"], ["https://mivb.openplanner.team/stops/1252", "https://mivb.openplanner.team/stops/5551"], ["https://mivb.openplanner.team/stops/5009", "https://mivb.openplanner.team/stops/7770158"], ["https://mivb.openplanner.team/stops/1105", "https://mivb.openplanner.team/stops/4066F"], ["https://mivb.openplanner.team/stops/7640211", "https://mivb.openplanner.team/stops/9655"], ["https://mivb.openplanner.team/stops/1465", "https://mivb.openplanner.team/stops/2282"], ["https://mivb.openplanner.team/stops/0810369", "https://mivb.openplanner.team/stops/1561"], ["https://mivb.openplanner.team/stops/4003G", "https://mivb.openplanner.team/stops/4058F"], ["https://mivb.openplanner.team/stops/3107", "https://mivb.openplanner.team/stops/5315"], ["https://mivb.openplanner.team/stops/1822", "https://mivb.openplanner.team/stops/5659"], ["https://mivb.openplanner.team/stops/1111", "https://mivb.openplanner.team/stops/4110"], ["https://mivb.openplanner.team/stops/2152", "https://mivb.openplanner.team/stops/2715"], ["https://mivb.openplanner.team/stops/4402", "https://mivb.openplanner.team/stops/4454"], ["https://mivb.openplanner.team/stops/1227", "https://mivb.openplanner.team/stops/6656"], ["https://mivb.openplanner.team/stops/1841", "https://mivb.openplanner.team/stops/1856"], ["https://mivb.openplanner.team/stops/1479", "https://mivb.openplanner.team/stops/3850"], ["https://mivb.openplanner.team/stops/3334F", "https://mivb.openplanner.team/stops/9600B"], ["https://mivb.openplanner.team/stops/2402", "https://mivb.openplanner.team/stops/2467"], ["https://mivb.openplanner.team/stops/6809", "https://mivb.openplanner.team/stops/7710104"], ["https://mivb.openplanner.team/stops/1030", "https://mivb.openplanner.team/stops/1083"], ["https://mivb.openplanner.team/stops/5306G", "https://mivb.openplanner.team/stops/5356"], ["https://mivb.openplanner.team/stops/3064", "https://mivb.openplanner.team/stops/9634"], ["https://mivb.openplanner.team/stops/1714", "https://mivb.openplanner.team/stops/5266F"], ["https://mivb.openplanner.team/stops/1326", "https://mivb.openplanner.team/stops/2556"], ["https://mivb.openplanner.team/stops/5362", "https://mivb.openplanner.team/stops/5362F"], ["https://mivb.openplanner.team/stops/1935", "https://mivb.openplanner.team/stops/1936"], ["https://mivb.openplanner.team/stops/5908", "https://mivb.openplanner.team/stops/5910"], ["https://mivb.openplanner.team/stops/0100224", "https://mivb.openplanner.team/stops/0100324"], ["https://mivb.openplanner.team/stops/3459", "https://mivb.openplanner.team/stops/3460"], ["https://mivb.openplanner.team/stops/4277", "https://mivb.openplanner.team/stops/6482"], ["https://mivb.openplanner.team/stops/2221", "https://mivb.openplanner.team/stops/2301"], ["https://mivb.openplanner.team/stops/2828", "https://mivb.openplanner.team/stops/2833"], ["https://mivb.openplanner.team/stops/1683F", "https://mivb.openplanner.team/stops/1722"], ["https://mivb.openplanner.team/stops/6469", "https://mivb.openplanner.team/stops/0250536"], ["https://mivb.openplanner.team/stops/5003", "https://mivb.openplanner.team/stops/5082"], ["https://mivb.openplanner.team/stops/5001F", "https://mivb.openplanner.team/stops/5701"], ["https://mivb.openplanner.team/stops/2109B", "https://mivb.openplanner.team/stops/2152"], ["https://mivb.openplanner.team/stops/8042", "https://mivb.openplanner.team/stops/0040318"], ["https://mivb.openplanner.team/stops/1196", "https://mivb.openplanner.team/stops/4004"], ["https://mivb.openplanner.team/stops/3410", "https://mivb.openplanner.team/stops/7484"], ["https://mivb.openplanner.team/stops/4212B", "https://mivb.openplanner.team/stops/5011"], ["https://mivb.openplanner.team/stops/1869", "https://mivb.openplanner.team/stops/5267"], ["https://mivb.openplanner.team/stops/2503", "https://mivb.openplanner.team/stops/6552"], ["https://mivb.openplanner.team/stops/6012G", "https://mivb.openplanner.team/stops/6413F"], ["https://mivb.openplanner.team/stops/1131B", "https://mivb.openplanner.team/stops/1262B"], ["https://mivb.openplanner.team/stops/1402B", "https://mivb.openplanner.team/stops/1417B"], ["https://mivb.openplanner.team/stops/8342", "https://mivb.openplanner.team/stops/0340441"], ["https://mivb.openplanner.team/stops/3853", "https://mivb.openplanner.team/stops/3860"], ["https://mivb.openplanner.team/stops/2728", "https://mivb.openplanner.team/stops/5556"], ["https://mivb.openplanner.team/stops/2566B", "https://mivb.openplanner.team/stops/3235"], ["https://mivb.openplanner.team/stops/6310F", "https://mivb.openplanner.team/stops/0310444"], ["https://mivb.openplanner.team/stops/4501F", "https://mivb.openplanner.team/stops/5920H"], ["https://mivb.openplanner.team/stops/1089", "https://mivb.openplanner.team/stops/1090"], ["https://mivb.openplanner.team/stops/4106", "https://mivb.openplanner.team/stops/4107"], ["https://mivb.openplanner.team/stops/4309", "https://mivb.openplanner.team/stops/4359"], ["https://mivb.openplanner.team/stops/2124", "https://mivb.openplanner.team/stops/5222F"], ["https://mivb.openplanner.team/stops/1984G", "https://mivb.openplanner.team/stops/5816G"], ["https://mivb.openplanner.team/stops/1159", "https://mivb.openplanner.team/stops/6009"], ["https://mivb.openplanner.team/stops/9729", "https://mivb.openplanner.team/stops/9751"], ["https://mivb.openplanner.team/stops/1944", "https://mivb.openplanner.team/stops/2168"], ["https://mivb.openplanner.team/stops/1178", "https://mivb.openplanner.team/stops/8371"], ["https://mivb.openplanner.team/stops/5315", "https://mivb.openplanner.team/stops/5320"], ["https://mivb.openplanner.team/stops/3761", "https://mivb.openplanner.team/stops/5308"], ["https://mivb.openplanner.team/stops/6806", "https://mivb.openplanner.team/stops/6806F"], ["https://mivb.openplanner.team/stops/1713", "https://mivb.openplanner.team/stops/6114F"], ["https://mivb.openplanner.team/stops/0621", "https://mivb.openplanner.team/stops/3004"], ["https://mivb.openplanner.team/stops/1197", "https://mivb.openplanner.team/stops/2510"], ["https://mivb.openplanner.team/stops/3114", "https://mivb.openplanner.team/stops/6060"], ["https://mivb.openplanner.team/stops/1138", "https://mivb.openplanner.team/stops/1520"], ["https://mivb.openplanner.team/stops/5517", "https://mivb.openplanner.team/stops/5522"], ["https://mivb.openplanner.team/stops/1788", "https://mivb.openplanner.team/stops/6552"], ["https://mivb.openplanner.team/stops/1314", "https://mivb.openplanner.team/stops/5109"], ["https://mivb.openplanner.team/stops/1510", "https://mivb.openplanner.team/stops/2970"], ["https://mivb.openplanner.team/stops/3549", "https://mivb.openplanner.team/stops/0250236"], ["https://mivb.openplanner.team/stops/2992", "https://mivb.openplanner.team/stops/3182"], ["https://mivb.openplanner.team/stops/6117", "https://mivb.openplanner.team/stops/6153"], ["https://mivb.openplanner.team/stops/0601262", "https://mivb.openplanner.team/stops/2303"], ["https://mivb.openplanner.team/stops/5504", "https://mivb.openplanner.team/stops/5559"], ["https://mivb.openplanner.team/stops/4705", "https://mivb.openplanner.team/stops/6453"], ["https://mivb.openplanner.team/stops/2262", "https://mivb.openplanner.team/stops/6650G"], ["https://mivb.openplanner.team/stops/1678F", "https://mivb.openplanner.team/stops/1710"], ["https://mivb.openplanner.team/stops/6314", "https://mivb.openplanner.team/stops/0320243"], ["https://mivb.openplanner.team/stops/2546", "https://mivb.openplanner.team/stops/5718"], ["https://mivb.openplanner.team/stops/2769", "https://mivb.openplanner.team/stops/9972F"], ["https://mivb.openplanner.team/stops/2577", "https://mivb.openplanner.team/stops/6504"], ["https://mivb.openplanner.team/stops/1712", "https://mivb.openplanner.team/stops/1871B"], ["https://mivb.openplanner.team/stops/1162C", "https://mivb.openplanner.team/stops/4367B"], ["https://mivb.openplanner.team/stops/2207", "https://mivb.openplanner.team/stops/9025"], ["https://mivb.openplanner.team/stops/5813F", "https://mivb.openplanner.team/stops/5856"], ["https://mivb.openplanner.team/stops/2167", "https://mivb.openplanner.team/stops/2703"], ["https://mivb.openplanner.team/stops/1497B", "https://mivb.openplanner.team/stops/0050419"], ["https://mivb.openplanner.team/stops/3177", "https://mivb.openplanner.team/stops/5315"], ["https://mivb.openplanner.team/stops/4293", "https://mivb.openplanner.team/stops/4298"], ["https://mivb.openplanner.team/stops/2214", "https://mivb.openplanner.team/stops/2263"], ["https://mivb.openplanner.team/stops/0900268", "https://mivb.openplanner.team/stops/0900368"], ["https://mivb.openplanner.team/stops/1085", "https://mivb.openplanner.team/stops/2551"], ["https://mivb.openplanner.team/stops/3113", "https://mivb.openplanner.team/stops/3309F"], ["https://mivb.openplanner.team/stops/1251", "https://mivb.openplanner.team/stops/1969"], ["https://mivb.openplanner.team/stops/0089", "https://mivb.openplanner.team/stops/0080122"], ["https://mivb.openplanner.team/stops/1793", "https://mivb.openplanner.team/stops/0290212"], ["https://mivb.openplanner.team/stops/2971", "https://mivb.openplanner.team/stops/2972"], ["https://mivb.openplanner.team/stops/9631", "https://mivb.openplanner.team/stops/9756"], ["https://mivb.openplanner.team/stops/1770", "https://mivb.openplanner.team/stops/0310544"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/1725"], ["https://mivb.openplanner.team/stops/1090", "https://mivb.openplanner.team/stops/3005"], ["https://mivb.openplanner.team/stops/5413F", "https://mivb.openplanner.team/stops/5460F"], ["https://mivb.openplanner.team/stops/1162C", "https://mivb.openplanner.team/stops/1233"], ["https://mivb.openplanner.team/stops/3126", "https://mivb.openplanner.team/stops/3176"], ["https://mivb.openplanner.team/stops/1587", "https://mivb.openplanner.team/stops/1846"], ["https://mivb.openplanner.team/stops/6361", "https://mivb.openplanner.team/stops/0320343"], ["https://mivb.openplanner.team/stops/3403", "https://mivb.openplanner.team/stops/3702"], ["https://mivb.openplanner.team/stops/0350240", "https://mivb.openplanner.team/stops/9979B"], ["https://mivb.openplanner.team/stops/1098", "https://mivb.openplanner.team/stops/1314"], ["https://mivb.openplanner.team/stops/5751", "https://mivb.openplanner.team/stops/5922"], ["https://mivb.openplanner.team/stops/4265", "https://mivb.openplanner.team/stops/8823"], ["https://mivb.openplanner.team/stops/2414", "https://mivb.openplanner.team/stops/2452"], ["https://mivb.openplanner.team/stops/2022", "https://mivb.openplanner.team/stops/2028"], ["https://mivb.openplanner.team/stops/2823B", "https://mivb.openplanner.team/stops/2827"], ["https://mivb.openplanner.team/stops/2513", "https://mivb.openplanner.team/stops/3236"], ["https://mivb.openplanner.team/stops/3102", "https://mivb.openplanner.team/stops/3173"], ["https://mivb.openplanner.team/stops/2672", "https://mivb.openplanner.team/stops/6099"], ["https://mivb.openplanner.team/stops/5757", "https://mivb.openplanner.team/stops/5757F"], ["https://mivb.openplanner.team/stops/1782", "https://mivb.openplanner.team/stops/5008F"], ["https://mivb.openplanner.team/stops/1725", "https://mivb.openplanner.team/stops/1752"], ["https://mivb.openplanner.team/stops/2905", "https://mivb.openplanner.team/stops/2986B"], ["https://mivb.openplanner.team/stops/1739", "https://mivb.openplanner.team/stops/6956B"], ["https://mivb.openplanner.team/stops/1306F", "https://mivb.openplanner.team/stops/1307"], ["https://mivb.openplanner.team/stops/2268", "https://mivb.openplanner.team/stops/3012"], ["https://mivb.openplanner.team/stops/3158B", "https://mivb.openplanner.team/stops/3953"], ["https://mivb.openplanner.team/stops/2938", "https://mivb.openplanner.team/stops/2952B"], ["https://mivb.openplanner.team/stops/1901", "https://mivb.openplanner.team/stops/6308F"], ["https://mivb.openplanner.team/stops/8712", "https://mivb.openplanner.team/stops/7720203"], ["https://mivb.openplanner.team/stops/0600262", "https://mivb.openplanner.team/stops/1820"], ["https://mivb.openplanner.team/stops/4804B", "https://mivb.openplanner.team/stops/4853"], ["https://mivb.openplanner.team/stops/1679F", "https://mivb.openplanner.team/stops/1680F"], ["https://mivb.openplanner.team/stops/1165", "https://mivb.openplanner.team/stops/2268"], ["https://mivb.openplanner.team/stops/5081F", "https://mivb.openplanner.team/stops/5471"], ["https://mivb.openplanner.team/stops/3203", "https://mivb.openplanner.team/stops/3280"], ["https://mivb.openplanner.team/stops/1095", "https://mivb.openplanner.team/stops/1307F"], ["https://mivb.openplanner.team/stops/3317", "https://mivb.openplanner.team/stops/5038"], ["https://mivb.openplanner.team/stops/2518", "https://mivb.openplanner.team/stops/2532"], ["https://mivb.openplanner.team/stops/2504", "https://mivb.openplanner.team/stops/2515B"], ["https://mivb.openplanner.team/stops/5078F", "https://mivb.openplanner.team/stops/6501"], ["https://mivb.openplanner.team/stops/1463", "https://mivb.openplanner.team/stops/6024"], ["https://mivb.openplanner.team/stops/2292B", "https://mivb.openplanner.team/stops/3130"], ["https://mivb.openplanner.team/stops/6020", "https://mivb.openplanner.team/stops/6210"], ["https://mivb.openplanner.team/stops/2325", "https://mivb.openplanner.team/stops/5291F"], ["https://mivb.openplanner.team/stops/5101B", "https://mivb.openplanner.team/stops/5123"], ["https://mivb.openplanner.team/stops/0610163", "https://mivb.openplanner.team/stops/2245"], ["https://mivb.openplanner.team/stops/3130", "https://mivb.openplanner.team/stops/3179"], ["https://mivb.openplanner.team/stops/3252", "https://mivb.openplanner.team/stops/3281"], ["https://mivb.openplanner.team/stops/1852", "https://mivb.openplanner.team/stops/5603"], ["https://mivb.openplanner.team/stops/3800", "https://mivb.openplanner.team/stops/6860G"], ["https://mivb.openplanner.team/stops/2132", "https://mivb.openplanner.team/stops/5253"], ["https://mivb.openplanner.team/stops/8662", "https://mivb.openplanner.team/stops/9"], ["https://mivb.openplanner.team/stops/2365", "https://mivb.openplanner.team/stops/2817"], ["https://mivb.openplanner.team/stops/0820270", "https://mivb.openplanner.team/stops/1516"], ["https://mivb.openplanner.team/stops/5510", "https://mivb.openplanner.team/stops/5553"], ["https://mivb.openplanner.team/stops/5532", "https://mivb.openplanner.team/stops/5533"], ["https://mivb.openplanner.team/stops/2103", "https://mivb.openplanner.team/stops/2156"], ["https://mivb.openplanner.team/stops/3502", "https://mivb.openplanner.team/stops/3567"], ["https://mivb.openplanner.team/stops/6474F", "https://mivb.openplanner.team/stops/0160130"], ["https://mivb.openplanner.team/stops/6359F", "https://mivb.openplanner.team/stops/9064"], ["https://mivb.openplanner.team/stops/3014", "https://mivb.openplanner.team/stops/5913"], ["https://mivb.openplanner.team/stops/2203", "https://mivb.openplanner.team/stops/6103F"], ["https://mivb.openplanner.team/stops/1415", "https://mivb.openplanner.team/stops/1423"], ["https://mivb.openplanner.team/stops/0020316", "https://mivb.openplanner.team/stops/0020516"], ["https://mivb.openplanner.team/stops/3961", "https://mivb.openplanner.team/stops/4500"], ["https://mivb.openplanner.team/stops/2239", "https://mivb.openplanner.team/stops/5765F"], ["https://mivb.openplanner.team/stops/1804", "https://mivb.openplanner.team/stops/1871B"], ["https://mivb.openplanner.team/stops/1955", "https://mivb.openplanner.team/stops/1963"], ["https://mivb.openplanner.team/stops/0270614", "https://mivb.openplanner.team/stops/0440449"], ["https://mivb.openplanner.team/stops/2586", "https://mivb.openplanner.team/stops/6803F"], ["https://mivb.openplanner.team/stops/2181", "https://mivb.openplanner.team/stops/63"], ["https://mivb.openplanner.team/stops/6354B", "https://mivb.openplanner.team/stops/0310344"], ["https://mivb.openplanner.team/stops/7720303", "https://mivb.openplanner.team/stops/7730602"], ["https://mivb.openplanner.team/stops/1884", "https://mivb.openplanner.team/stops/1910"], ["https://mivb.openplanner.team/stops/1313", "https://mivb.openplanner.team/stops/2570"], ["https://mivb.openplanner.team/stops/0703", "https://mivb.openplanner.team/stops/0340341"], ["https://mivb.openplanner.team/stops/2124", "https://mivb.openplanner.team/stops/2132"], ["https://mivb.openplanner.team/stops/2810", "https://mivb.openplanner.team/stops/2875"], ["https://mivb.openplanner.team/stops/2237", "https://mivb.openplanner.team/stops/6178"], ["https://mivb.openplanner.team/stops/5916", "https://mivb.openplanner.team/stops/5953"], ["https://mivb.openplanner.team/stops/5707", "https://mivb.openplanner.team/stops/5770F"], ["https://mivb.openplanner.team/stops/3525", "https://mivb.openplanner.team/stops/3558"], ["https://mivb.openplanner.team/stops/1354", "https://mivb.openplanner.team/stops/3572"], ["https://mivb.openplanner.team/stops/1368", "https://mivb.openplanner.team/stops/1679F"], ["https://mivb.openplanner.team/stops/1875", "https://mivb.openplanner.team/stops/5502"], ["https://mivb.openplanner.team/stops/0726", "https://mivb.openplanner.team/stops/2531"], ["https://mivb.openplanner.team/stops/8743", "https://mivb.openplanner.team/stops/7740101"], ["https://mivb.openplanner.team/stops/2996", "https://mivb.openplanner.team/stops/3411"], ["https://mivb.openplanner.team/stops/1135", "https://mivb.openplanner.team/stops/6024"], ["https://mivb.openplanner.team/stops/2319", "https://mivb.openplanner.team/stops/2375"], ["https://mivb.openplanner.team/stops/1208", "https://mivb.openplanner.team/stops/2534"], ["https://mivb.openplanner.team/stops/1046G", "https://mivb.openplanner.team/stops/1059"], ["https://mivb.openplanner.team/stops/2504", "https://mivb.openplanner.team/stops/5077"], ["https://mivb.openplanner.team/stops/5917", "https://mivb.openplanner.team/stops/5952"], ["https://mivb.openplanner.team/stops/6204", "https://mivb.openplanner.team/stops/6214"], ["https://mivb.openplanner.team/stops/3017", "https://mivb.openplanner.team/stops/3321"], ["https://mivb.openplanner.team/stops/2861", "https://mivb.openplanner.team/stops/2875"], ["https://mivb.openplanner.team/stops/2507", "https://mivb.openplanner.team/stops/2519"], ["https://mivb.openplanner.team/stops/3681", "https://mivb.openplanner.team/stops/3859"], ["https://mivb.openplanner.team/stops/0670267", "https://mivb.openplanner.team/stops/2957"], ["https://mivb.openplanner.team/stops/2318G", "https://mivb.openplanner.team/stops/5772"], ["https://mivb.openplanner.team/stops/2260", "https://mivb.openplanner.team/stops/8371"], ["https://mivb.openplanner.team/stops/1826", "https://mivb.openplanner.team/stops/1850"], ["https://mivb.openplanner.team/stops/2291B", "https://mivb.openplanner.team/stops/0220133"], ["https://mivb.openplanner.team/stops/0250336", "https://mivb.openplanner.team/stops/0250436"], ["https://mivb.openplanner.team/stops/1644F", "https://mivb.openplanner.team/stops/5714"], ["https://mivb.openplanner.team/stops/2257B", "https://mivb.openplanner.team/stops/3709"], ["https://mivb.openplanner.team/stops/2312", "https://mivb.openplanner.team/stops/2363"], ["https://mivb.openplanner.team/stops/3709", "https://mivb.openplanner.team/stops/7710104"], ["https://mivb.openplanner.team/stops/2817", "https://mivb.openplanner.team/stops/2823B"], ["https://mivb.openplanner.team/stops/3099", "https://mivb.openplanner.team/stops/3177"], ["https://mivb.openplanner.team/stops/0703", "https://mivb.openplanner.team/stops/2402"], ["https://mivb.openplanner.team/stops/2828", "https://mivb.openplanner.team/stops/0430548"], ["https://mivb.openplanner.team/stops/3228F", "https://mivb.openplanner.team/stops/6648"], ["https://mivb.openplanner.team/stops/8311", "https://mivb.openplanner.team/stops/0310344"], ["https://mivb.openplanner.team/stops/8111", "https://mivb.openplanner.team/stops/0110325"], ["https://mivb.openplanner.team/stops/1918", "https://mivb.openplanner.team/stops/1919"], ["https://mivb.openplanner.team/stops/2831", "https://mivb.openplanner.team/stops/2837"], ["https://mivb.openplanner.team/stops/2042", "https://mivb.openplanner.team/stops/8142"], ["https://mivb.openplanner.team/stops/4116", "https://mivb.openplanner.team/stops/0470751"], ["https://mivb.openplanner.team/stops/4131B", "https://mivb.openplanner.team/stops/7790556"], ["https://mivb.openplanner.team/stops/7660109", "https://mivb.openplanner.team/stops/7670108"], ["https://mivb.openplanner.team/stops/3207", "https://mivb.openplanner.team/stops/3274"], ["https://mivb.openplanner.team/stops/1835", "https://mivb.openplanner.team/stops/5515"], ["https://mivb.openplanner.team/stops/4601", "https://mivb.openplanner.team/stops/4655"], ["https://mivb.openplanner.team/stops/3860", "https://mivb.openplanner.team/stops/5719"], ["https://mivb.openplanner.team/stops/5854", "https://mivb.openplanner.team/stops/5855"], ["https://mivb.openplanner.team/stops/2900F", "https://mivb.openplanner.team/stops/7271"], ["https://mivb.openplanner.team/stops/1511", "https://mivb.openplanner.team/stops/1568"], ["https://mivb.openplanner.team/stops/1375", "https://mivb.openplanner.team/stops/1659"], ["https://mivb.openplanner.team/stops/1528", "https://mivb.openplanner.team/stops/1552"], ["https://mivb.openplanner.team/stops/1687F", "https://mivb.openplanner.team/stops/1745"], ["https://mivb.openplanner.team/stops/1942", "https://mivb.openplanner.team/stops/5059"], ["https://mivb.openplanner.team/stops/3112", "https://mivb.openplanner.team/stops/6418F"], ["https://mivb.openplanner.team/stops/0900468", "https://mivb.openplanner.team/stops/5501"], ["https://mivb.openplanner.team/stops/1914", "https://mivb.openplanner.team/stops/5212"], ["https://mivb.openplanner.team/stops/9607", "https://mivb.openplanner.team/stops/9632"], ["https://mivb.openplanner.team/stops/7501", "https://mivb.openplanner.team/stops/9557"], ["https://mivb.openplanner.team/stops/1207", "https://mivb.openplanner.team/stops/2564"], ["https://mivb.openplanner.team/stops/0440449", "https://mivb.openplanner.team/stops/0440649"], ["https://mivb.openplanner.team/stops/3167", "https://mivb.openplanner.team/stops/5303"], ["https://mivb.openplanner.team/stops/9751", "https://mivb.openplanner.team/stops/9753"], ["https://mivb.openplanner.team/stops/3001B", "https://mivb.openplanner.team/stops/9635"], ["https://mivb.openplanner.team/stops/3226F", "https://mivb.openplanner.team/stops/3263B"], ["https://mivb.openplanner.team/stops/1412", "https://mivb.openplanner.team/stops/5228F"], ["https://mivb.openplanner.team/stops/1525", "https://mivb.openplanner.team/stops/1551"], ["https://mivb.openplanner.team/stops/5408", "https://mivb.openplanner.team/stops/5466"], ["https://mivb.openplanner.team/stops/6856", "https://mivb.openplanner.team/stops/8682"], ["https://mivb.openplanner.team/stops/2509", "https://mivb.openplanner.team/stops/2570"], ["https://mivb.openplanner.team/stops/1626", "https://mivb.openplanner.team/stops/0460150"], ["https://mivb.openplanner.team/stops/2358", "https://mivb.openplanner.team/stops/9608"], ["https://mivb.openplanner.team/stops/5865", "https://mivb.openplanner.team/stops/7484"], ["https://mivb.openplanner.team/stops/3402", "https://mivb.openplanner.team/stops/3459"], ["https://mivb.openplanner.team/stops/4115", "https://mivb.openplanner.team/stops/4168"], ["https://mivb.openplanner.team/stops/3358", "https://mivb.openplanner.team/stops/6308F"], ["https://mivb.openplanner.team/stops/3522", "https://mivb.openplanner.team/stops/5602"], ["https://mivb.openplanner.team/stops/0706", "https://mivb.openplanner.team/stops/0722"], ["https://mivb.openplanner.team/stops/1567", "https://mivb.openplanner.team/stops/6058"], ["https://mivb.openplanner.team/stops/1410", "https://mivb.openplanner.team/stops/1449"], ["https://mivb.openplanner.team/stops/4500", "https://mivb.openplanner.team/stops/4550"], ["https://mivb.openplanner.team/stops/0610163", "https://mivb.openplanner.team/stops/0616"], ["https://mivb.openplanner.team/stops/6421F", "https://mivb.openplanner.team/stops/6424F"], ["https://mivb.openplanner.team/stops/2221", "https://mivb.openplanner.team/stops/3353"], ["https://mivb.openplanner.team/stops/4010", "https://mivb.openplanner.team/stops/4059F"], ["https://mivb.openplanner.team/stops/4655", "https://mivb.openplanner.team/stops/4656"], ["https://mivb.openplanner.team/stops/2895", "https://mivb.openplanner.team/stops/3199"], ["https://mivb.openplanner.team/stops/1203", "https://mivb.openplanner.team/stops/1483"], ["https://mivb.openplanner.team/stops/1599", "https://mivb.openplanner.team/stops/1711"], ["https://mivb.openplanner.team/stops/1804", "https://mivb.openplanner.team/stops/6009"], ["https://mivb.openplanner.team/stops/3125", "https://mivb.openplanner.team/stops/3131"], ["https://mivb.openplanner.team/stops/5296B", "https://mivb.openplanner.team/stops/8682"], ["https://mivb.openplanner.team/stops/6800", "https://mivb.openplanner.team/stops/6800F"], ["https://mivb.openplanner.team/stops/3681", "https://mivb.openplanner.team/stops/3682"], ["https://mivb.openplanner.team/stops/3223B", "https://mivb.openplanner.team/stops/6653F"], ["https://mivb.openplanner.team/stops/0050319", "https://mivb.openplanner.team/stops/19"], ["https://mivb.openplanner.team/stops/8321", "https://mivb.openplanner.team/stops/0330242"], ["https://mivb.openplanner.team/stops/1236", "https://mivb.openplanner.team/stops/1236F"], ["https://mivb.openplanner.team/stops/2152", "https://mivb.openplanner.team/stops/5054F"], ["https://mivb.openplanner.team/stops/5952", "https://mivb.openplanner.team/stops/5952F"], ["https://mivb.openplanner.team/stops/1455", "https://mivb.openplanner.team/stops/4357"], ["https://mivb.openplanner.team/stops/1520", "https://mivb.openplanner.team/stops/3954"], ["https://mivb.openplanner.team/stops/4804B", "https://mivb.openplanner.team/stops/5056"], ["https://mivb.openplanner.team/stops/1942", "https://mivb.openplanner.team/stops/1951"], ["https://mivb.openplanner.team/stops/1098", "https://mivb.openplanner.team/stops/7750260"], ["https://mivb.openplanner.team/stops/1686F", "https://mivb.openplanner.team/stops/4071"], ["https://mivb.openplanner.team/stops/2545", "https://mivb.openplanner.team/stops/2860"], ["https://mivb.openplanner.team/stops/4006G", "https://mivb.openplanner.team/stops/4055G"], ["https://mivb.openplanner.team/stops/0472", "https://mivb.openplanner.team/stops/0470659"], ["https://mivb.openplanner.team/stops/3905", "https://mivb.openplanner.team/stops/3906"], ["https://mivb.openplanner.team/stops/1199F", "https://mivb.openplanner.team/stops/4055G"], ["https://mivb.openplanner.team/stops/3612F", "https://mivb.openplanner.team/stops/3712"], ["https://mivb.openplanner.team/stops/2835", "https://mivb.openplanner.team/stops/0440149"], ["https://mivb.openplanner.team/stops/1048F", "https://mivb.openplanner.team/stops/1049F"], ["https://mivb.openplanner.team/stops/1142", "https://mivb.openplanner.team/stops/5170"], ["https://mivb.openplanner.team/stops/1077", "https://mivb.openplanner.team/stops/2318G"], ["https://mivb.openplanner.team/stops/1042", "https://mivb.openplanner.team/stops/8081"], ["https://mivb.openplanner.team/stops/1139", "https://mivb.openplanner.team/stops/1153"], ["https://mivb.openplanner.team/stops/1490", "https://mivb.openplanner.team/stops/6856"], ["https://mivb.openplanner.team/stops/8332", "https://mivb.openplanner.team/stops/0330442"], ["https://mivb.openplanner.team/stops/3760", "https://mivb.openplanner.team/stops/8712"], ["https://mivb.openplanner.team/stops/3504", "https://mivb.openplanner.team/stops/4952"], ["https://mivb.openplanner.team/stops/2402", "https://mivb.openplanner.team/stops/2470"], ["https://mivb.openplanner.team/stops/3353", "https://mivb.openplanner.team/stops/0040218"], ["https://mivb.openplanner.team/stops/4998", "https://mivb.openplanner.team/stops/7800455"], ["https://mivb.openplanner.team/stops/5306G", "https://mivb.openplanner.team/stops/5355"], ["https://mivb.openplanner.team/stops/6018", "https://mivb.openplanner.team/stops/6060"], ["https://mivb.openplanner.team/stops/2902", "https://mivb.openplanner.team/stops/7271"], ["https://mivb.openplanner.team/stops/1554", "https://mivb.openplanner.team/stops/0120426"], ["https://mivb.openplanner.team/stops/8372", "https://mivb.openplanner.team/stops/0370438"], ["https://mivb.openplanner.team/stops/3682", "https://mivb.openplanner.team/stops/3859"], ["https://mivb.openplanner.team/stops/1758B", "https://mivb.openplanner.team/stops/0220133"], ["https://mivb.openplanner.team/stops/1108", "https://mivb.openplanner.team/stops/4107"], ["https://mivb.openplanner.team/stops/2140", "https://mivb.openplanner.team/stops/2150"], ["https://mivb.openplanner.team/stops/5471", "https://mivb.openplanner.team/stops/8813"], ["https://mivb.openplanner.team/stops/9291", "https://mivb.openplanner.team/stops/9296"], ["https://mivb.openplanner.team/stops/1551", "https://mivb.openplanner.team/stops/1553"], ["https://mivb.openplanner.team/stops/6310F", "https://mivb.openplanner.team/stops/6355F"], ["https://mivb.openplanner.team/stops/1453", "https://mivb.openplanner.team/stops/1455"], ["https://mivb.openplanner.team/stops/2576", "https://mivb.openplanner.team/stops/5077"], ["https://mivb.openplanner.team/stops/0702", "https://mivb.openplanner.team/stops/40"], ["https://mivb.openplanner.team/stops/1321", "https://mivb.openplanner.team/stops/1531"], ["https://mivb.openplanner.team/stops/1402B", "https://mivb.openplanner.team/stops/1418B"], ["https://mivb.openplanner.team/stops/0040418", "https://mivb.openplanner.team/stops/8402"], ["https://mivb.openplanner.team/stops/1486B", "https://mivb.openplanner.team/stops/1487"], ["https://mivb.openplanner.team/stops/2863", "https://mivb.openplanner.team/stops/9027"], ["https://mivb.openplanner.team/stops/2345", "https://mivb.openplanner.team/stops/5305G"], ["https://mivb.openplanner.team/stops/4111", "https://mivb.openplanner.team/stops/8291"], ["https://mivb.openplanner.team/stops/5917", "https://mivb.openplanner.team/stops/5917F"], ["https://mivb.openplanner.team/stops/2292B", "https://mivb.openplanner.team/stops/2294B"], ["https://mivb.openplanner.team/stops/2610", "https://mivb.openplanner.team/stops/5729"], ["https://mivb.openplanner.team/stops/5121F", "https://mivb.openplanner.team/stops/5161F"], ["https://mivb.openplanner.team/stops/1906", "https://mivb.openplanner.team/stops/1981"], ["https://mivb.openplanner.team/stops/2410", "https://mivb.openplanner.team/stops/5812"], ["https://mivb.openplanner.team/stops/5705", "https://mivb.openplanner.team/stops/5772"], ["https://mivb.openplanner.team/stops/1903", "https://mivb.openplanner.team/stops/7604"], ["https://mivb.openplanner.team/stops/3257", "https://mivb.openplanner.team/stops/0370438"], ["https://mivb.openplanner.team/stops/3280", "https://mivb.openplanner.team/stops/3321"], ["https://mivb.openplanner.team/stops/1915", "https://mivb.openplanner.team/stops/1916"], ["https://mivb.openplanner.team/stops/1713", "https://mivb.openplanner.team/stops/6115F"], ["https://mivb.openplanner.team/stops/1558", "https://mivb.openplanner.team/stops/3902"], ["https://mivb.openplanner.team/stops/6312", "https://mivb.openplanner.team/stops/6353F"], ["https://mivb.openplanner.team/stops/1639", "https://mivb.openplanner.team/stops/2038"], ["https://mivb.openplanner.team/stops/1616", "https://mivb.openplanner.team/stops/1625"], ["https://mivb.openplanner.team/stops/1278", "https://mivb.openplanner.team/stops/4305"], ["https://mivb.openplanner.team/stops/6303", "https://mivb.openplanner.team/stops/6365"], ["https://mivb.openplanner.team/stops/0350240", "https://mivb.openplanner.team/stops/0350640"], ["https://mivb.openplanner.team/stops/1535", "https://mivb.openplanner.team/stops/3460"], ["https://mivb.openplanner.team/stops/9969F", "https://mivb.openplanner.team/stops/9986F"], ["https://mivb.openplanner.team/stops/8231", "https://mivb.openplanner.team/stops/34"], ["https://mivb.openplanner.team/stops/1415", "https://mivb.openplanner.team/stops/1841"], ["https://mivb.openplanner.team/stops/6314", "https://mivb.openplanner.team/stops/0320343"], ["https://mivb.openplanner.team/stops/3121", "https://mivb.openplanner.team/stops/3123"], ["https://mivb.openplanner.team/stops/2577", "https://mivb.openplanner.team/stops/6505"], ["https://mivb.openplanner.team/stops/1869", "https://mivb.openplanner.team/stops/6153"], ["https://mivb.openplanner.team/stops/1861", "https://mivb.openplanner.team/stops/1862"], ["https://mivb.openplanner.team/stops/4257", "https://mivb.openplanner.team/stops/5402"], ["https://mivb.openplanner.team/stops/1868", "https://mivb.openplanner.team/stops/8201"], ["https://mivb.openplanner.team/stops/5813F", "https://mivb.openplanner.team/stops/5856F"], ["https://mivb.openplanner.team/stops/2167", "https://mivb.openplanner.team/stops/2702"], ["https://mivb.openplanner.team/stops/6450", "https://mivb.openplanner.team/stops/6451"], ["https://mivb.openplanner.team/stops/3354", "https://mivb.openplanner.team/stops/6357"], ["https://mivb.openplanner.team/stops/2577", "https://mivb.openplanner.team/stops/2863"], ["https://mivb.openplanner.team/stops/1322", "https://mivb.openplanner.team/stops/5212"], ["https://mivb.openplanner.team/stops/0626", "https://mivb.openplanner.team/stops/3004"], ["https://mivb.openplanner.team/stops/4306", "https://mivb.openplanner.team/stops/4307"], ["https://mivb.openplanner.team/stops/5413F", "https://mivb.openplanner.team/stops/5461F"], ["https://mivb.openplanner.team/stops/4165", "https://mivb.openplanner.team/stops/4270F"], ["https://mivb.openplanner.team/stops/2971F", "https://mivb.openplanner.team/stops/7527"], ["https://mivb.openplanner.team/stops/1816", "https://mivb.openplanner.team/stops/5504"], ["https://mivb.openplanner.team/stops/1512", "https://mivb.openplanner.team/stops/6082"], ["https://mivb.openplanner.team/stops/0516", "https://mivb.openplanner.team/stops/1988"], ["https://mivb.openplanner.team/stops/3503", "https://mivb.openplanner.team/stops/6310F"], ["https://mivb.openplanner.team/stops/6313", "https://mivb.openplanner.team/stops/0370543"], ["https://mivb.openplanner.team/stops/5415F", "https://mivb.openplanner.team/stops/5451F"], ["https://mivb.openplanner.team/stops/1859", "https://mivb.openplanner.team/stops/5224F"], ["https://mivb.openplanner.team/stops/4006G", "https://mivb.openplanner.team/stops/4659"], ["https://mivb.openplanner.team/stops/1076", "https://mivb.openplanner.team/stops/1077"], ["https://mivb.openplanner.team/stops/0801", "https://mivb.openplanner.team/stops/0806"], ["https://mivb.openplanner.team/stops/3125", "https://mivb.openplanner.team/stops/4364"], ["https://mivb.openplanner.team/stops/2455", "https://mivb.openplanner.team/stops/2953"], ["https://mivb.openplanner.team/stops/2314", "https://mivb.openplanner.team/stops/2359"], ["https://mivb.openplanner.team/stops/2801", "https://mivb.openplanner.team/stops/4250"], ["https://mivb.openplanner.team/stops/2513", "https://mivb.openplanner.team/stops/3235"], ["https://mivb.openplanner.team/stops/4956", "https://mivb.openplanner.team/stops/5082"], ["https://mivb.openplanner.team/stops/5120", "https://mivb.openplanner.team/stops/5155"], ["https://mivb.openplanner.team/stops/1713", "https://mivb.openplanner.team/stops/5480"], ["https://mivb.openplanner.team/stops/1566", "https://mivb.openplanner.team/stops/6190"], ["https://mivb.openplanner.team/stops/5721", "https://mivb.openplanner.team/stops/5721G"], ["https://mivb.openplanner.team/stops/2860", "https://mivb.openplanner.team/stops/6122"], ["https://mivb.openplanner.team/stops/5291F", "https://mivb.openplanner.team/stops/6168"], ["https://mivb.openplanner.team/stops/2965", "https://mivb.openplanner.team/stops/5021"], ["https://mivb.openplanner.team/stops/2977", "https://mivb.openplanner.team/stops/5307G"], ["https://mivb.openplanner.team/stops/5804G", "https://mivb.openplanner.team/stops/7998"], ["https://mivb.openplanner.team/stops/2962", "https://mivb.openplanner.team/stops/5406"], ["https://mivb.openplanner.team/stops/8742", "https://mivb.openplanner.team/stops/8744"], ["https://mivb.openplanner.team/stops/6119F", "https://mivb.openplanner.team/stops/6120"], ["https://mivb.openplanner.team/stops/4289", "https://mivb.openplanner.team/stops/4340"], ["https://mivb.openplanner.team/stops/5508", "https://mivb.openplanner.team/stops/5555"], ["https://mivb.openplanner.team/stops/1919", "https://mivb.openplanner.team/stops/1970"], ["https://mivb.openplanner.team/stops/1239", "https://mivb.openplanner.team/stops/2603"], ["https://mivb.openplanner.team/stops/4298", "https://mivb.openplanner.team/stops/4299"], ["https://mivb.openplanner.team/stops/0080322", "https://mivb.openplanner.team/stops/0080422"], ["https://mivb.openplanner.team/stops/0620164", "https://mivb.openplanner.team/stops/6601"], ["https://mivb.openplanner.team/stops/2805F", "https://mivb.openplanner.team/stops/5079"], ["https://mivb.openplanner.team/stops/3230F", "https://mivb.openplanner.team/stops/8382"], ["https://mivb.openplanner.team/stops/3130", "https://mivb.openplanner.team/stops/3203"], ["https://mivb.openplanner.team/stops/4069", "https://mivb.openplanner.team/stops/4261"], ["https://mivb.openplanner.team/stops/1544", "https://mivb.openplanner.team/stops/1865"], ["https://mivb.openplanner.team/stops/1852", "https://mivb.openplanner.team/stops/5602"], ["https://mivb.openplanner.team/stops/5284F", "https://mivb.openplanner.team/stops/5426"], ["https://mivb.openplanner.team/stops/2046", "https://mivb.openplanner.team/stops/0260237"], ["https://mivb.openplanner.team/stops/2025", "https://mivb.openplanner.team/stops/2029"], ["https://mivb.openplanner.team/stops/2103", "https://mivb.openplanner.team/stops/2157"], ["https://mivb.openplanner.team/stops/3567", "https://mivb.openplanner.team/stops/6354"], ["https://mivb.openplanner.team/stops/2108", "https://mivb.openplanner.team/stops/2152"], ["https://mivb.openplanner.team/stops/1533", "https://mivb.openplanner.team/stops/3284"], ["https://mivb.openplanner.team/stops/1127", "https://mivb.openplanner.team/stops/3629"], ["https://mivb.openplanner.team/stops/4292", "https://mivb.openplanner.team/stops/4342"], ["https://mivb.openplanner.team/stops/6654F", "https://mivb.openplanner.team/stops/13"], ["https://mivb.openplanner.team/stops/2358", "https://mivb.openplanner.team/stops/3002"], ["https://mivb.openplanner.team/stops/6607", "https://mivb.openplanner.team/stops/0440649"], ["https://mivb.openplanner.team/stops/1733", "https://mivb.openplanner.team/stops/3953"], ["https://mivb.openplanner.team/stops/3610G", "https://mivb.openplanner.team/stops/3611F"], ["https://mivb.openplanner.team/stops/4599", "https://mivb.openplanner.team/stops/4600"], ["https://mivb.openplanner.team/stops/3014", "https://mivb.openplanner.team/stops/3059"], ["https://mivb.openplanner.team/stops/2871", "https://mivb.openplanner.team/stops/6800F"], ["https://mivb.openplanner.team/stops/1935", "https://mivb.openplanner.team/stops/2146"], ["https://mivb.openplanner.team/stops/1804", "https://mivb.openplanner.team/stops/1870"], ["https://mivb.openplanner.team/stops/1486B", "https://mivb.openplanner.team/stops/3610G"], ["https://mivb.openplanner.team/stops/3412", "https://mivb.openplanner.team/stops/7484"], ["https://mivb.openplanner.team/stops/1546", "https://mivb.openplanner.team/stops/1815"], ["https://mivb.openplanner.team/stops/1654", "https://mivb.openplanner.team/stops/1734"], ["https://mivb.openplanner.team/stops/1513", "https://mivb.openplanner.team/stops/6021"], ["https://mivb.openplanner.team/stops/5225F", "https://mivb.openplanner.team/stops/5228F"], ["https://mivb.openplanner.team/stops/1943", "https://mivb.openplanner.team/stops/4804B"], ["https://mivb.openplanner.team/stops/2138B", "https://mivb.openplanner.team/stops/2140"], ["https://mivb.openplanner.team/stops/6354B", "https://mivb.openplanner.team/stops/0310444"], ["https://mivb.openplanner.team/stops/2404", "https://mivb.openplanner.team/stops/2404F"], ["https://mivb.openplanner.team/stops/5062", "https://mivb.openplanner.team/stops/6253"], ["https://mivb.openplanner.team/stops/4230", "https://mivb.openplanner.team/stops/7810154"], ["https://mivb.openplanner.team/stops/4232", "https://mivb.openplanner.team/stops/8803"], ["https://mivb.openplanner.team/stops/4307", "https://mivb.openplanner.team/stops/5261"], ["https://mivb.openplanner.team/stops/2539F", "https://mivb.openplanner.team/stops/6099"], ["https://mivb.openplanner.team/stops/0901", "https://mivb.openplanner.team/stops/1866"], ["https://mivb.openplanner.team/stops/3402", "https://mivb.openplanner.team/stops/3765"], ["https://mivb.openplanner.team/stops/2237", "https://mivb.openplanner.team/stops/6177"], ["https://mivb.openplanner.team/stops/0636", "https://mivb.openplanner.team/stops/2500"], ["https://mivb.openplanner.team/stops/4250", "https://mivb.openplanner.team/stops/4251"], ["https://mivb.openplanner.team/stops/2661", "https://mivb.openplanner.team/stops/2664"], ["https://mivb.openplanner.team/stops/1252", "https://mivb.openplanner.team/stops/1847"], ["https://mivb.openplanner.team/stops/1368", "https://mivb.openplanner.team/stops/1680F"], ["https://mivb.openplanner.team/stops/2939B", "https://mivb.openplanner.team/stops/5719H"], ["https://mivb.openplanner.team/stops/2311", "https://mivb.openplanner.team/stops/2852"], ["https://mivb.openplanner.team/stops/5811", "https://mivb.openplanner.team/stops/5849"], ["https://mivb.openplanner.team/stops/6435", "https://mivb.openplanner.team/stops/0420147"], ["https://mivb.openplanner.team/stops/1962", "https://mivb.openplanner.team/stops/2701"], ["https://mivb.openplanner.team/stops/6004", "https://mivb.openplanner.team/stops/8743"], ["https://mivb.openplanner.team/stops/2209", "https://mivb.openplanner.team/stops/2269"], ["https://mivb.openplanner.team/stops/7640111", "https://mivb.openplanner.team/stops/7650210"], ["https://mivb.openplanner.team/stops/1208", "https://mivb.openplanner.team/stops/2533"], ["https://mivb.openplanner.team/stops/2076", "https://mivb.openplanner.team/stops/2107"], ["https://mivb.openplanner.team/stops/2909", "https://mivb.openplanner.team/stops/7271"], ["https://mivb.openplanner.team/stops/5917", "https://mivb.openplanner.team/stops/5952F"], ["https://mivb.openplanner.team/stops/2935", "https://mivb.openplanner.team/stops/2951"], ["https://mivb.openplanner.team/stops/7660209", "https://mivb.openplanner.team/stops/9651"], ["https://mivb.openplanner.team/stops/2134", "https://mivb.openplanner.team/stops/5219F"], ["https://mivb.openplanner.team/stops/4007G", "https://mivb.openplanner.team/stops/4053G"], ["https://mivb.openplanner.team/stops/2262", "https://mivb.openplanner.team/stops/9979B"], ["https://mivb.openplanner.team/stops/1944", "https://mivb.openplanner.team/stops/1963"], ["https://mivb.openplanner.team/stops/0810469", "https://mivb.openplanner.team/stops/1459"], ["https://mivb.openplanner.team/stops/2899", "https://mivb.openplanner.team/stops/5968"], ["https://mivb.openplanner.team/stops/2551", "https://mivb.openplanner.team/stops/3805"], ["https://mivb.openplanner.team/stops/9651", "https://mivb.openplanner.team/stops/9682"], ["https://mivb.openplanner.team/stops/1160", "https://mivb.openplanner.team/stops/1497B"], ["https://mivb.openplanner.team/stops/8471", "https://mivb.openplanner.team/stops/0470251"], ["https://mivb.openplanner.team/stops/2803", "https://mivb.openplanner.team/stops/2867"], ["https://mivb.openplanner.team/stops/2312", "https://mivb.openplanner.team/stops/2362B"], ["https://mivb.openplanner.team/stops/2869", "https://mivb.openplanner.team/stops/2877"], ["https://mivb.openplanner.team/stops/5740", "https://mivb.openplanner.team/stops/6365"], ["https://mivb.openplanner.team/stops/5230F", "https://mivb.openplanner.team/stops/0120226"], ["https://mivb.openplanner.team/stops/2264", "https://mivb.openplanner.team/stops/63"], ["https://mivb.openplanner.team/stops/3228F", "https://mivb.openplanner.team/stops/6608G"], ["https://mivb.openplanner.team/stops/8311", "https://mivb.openplanner.team/stops/0310244"], ["https://mivb.openplanner.team/stops/2960F", "https://mivb.openplanner.team/stops/7520"], ["https://mivb.openplanner.team/stops/1417B", "https://mivb.openplanner.team/stops/1873"], ["https://mivb.openplanner.team/stops/8111", "https://mivb.openplanner.team/stops/0110425"], ["https://mivb.openplanner.team/stops/4598", "https://mivb.openplanner.team/stops/4661B"], ["https://mivb.openplanner.team/stops/5303", "https://mivb.openplanner.team/stops/5865"], ["https://mivb.openplanner.team/stops/1008", "https://mivb.openplanner.team/stops/1066"], ["https://mivb.openplanner.team/stops/5854", "https://mivb.openplanner.team/stops/5855F"], ["https://mivb.openplanner.team/stops/2986B", "https://mivb.openplanner.team/stops/9946"], ["https://mivb.openplanner.team/stops/1765", "https://mivb.openplanner.team/stops/4153"], ["https://mivb.openplanner.team/stops/2334F", "https://mivb.openplanner.team/stops/2336G"], ["https://mivb.openplanner.team/stops/4011", "https://mivb.openplanner.team/stops/4273F"], ["https://mivb.openplanner.team/stops/0473F", "https://mivb.openplanner.team/stops/8763"], ["https://mivb.openplanner.team/stops/1135", "https://mivb.openplanner.team/stops/1157"], ["https://mivb.openplanner.team/stops/6706", "https://mivb.openplanner.team/stops/0290212"], ["https://mivb.openplanner.team/stops/3059", "https://mivb.openplanner.team/stops/5911"], ["https://mivb.openplanner.team/stops/1302", "https://mivb.openplanner.team/stops/6475F"], ["https://mivb.openplanner.team/stops/3508F", "https://mivb.openplanner.team/stops/6112"], ["https://mivb.openplanner.team/stops/1942", "https://mivb.openplanner.team/stops/5060"], ["https://mivb.openplanner.team/stops/5727F", "https://mivb.openplanner.team/stops/9685"], ["https://mivb.openplanner.team/stops/1714", "https://mivb.openplanner.team/stops/1715"], ["https://mivb.openplanner.team/stops/5735", "https://mivb.openplanner.team/stops/47"], ["https://mivb.openplanner.team/stops/1606", "https://mivb.openplanner.team/stops/1680F"], ["https://mivb.openplanner.team/stops/2912", "https://mivb.openplanner.team/stops/5872"], ["https://mivb.openplanner.team/stops/4348", "https://mivb.openplanner.team/stops/4355"], ["https://mivb.openplanner.team/stops/3132", "https://mivb.openplanner.team/stops/3176"], ["https://mivb.openplanner.team/stops/1733", "https://mivb.openplanner.team/stops/3160"], ["https://mivb.openplanner.team/stops/2663", "https://mivb.openplanner.team/stops/5756"], ["https://mivb.openplanner.team/stops/1716", "https://mivb.openplanner.team/stops/5267"], ["https://mivb.openplanner.team/stops/9164", "https://mivb.openplanner.team/stops/9552"], ["https://mivb.openplanner.team/stops/1587", "https://mivb.openplanner.team/stops/1829"], ["https://mivb.openplanner.team/stops/6856", "https://mivb.openplanner.team/stops/7690206"], ["https://mivb.openplanner.team/stops/2509", "https://mivb.openplanner.team/stops/2569"], ["https://mivb.openplanner.team/stops/2375", "https://mivb.openplanner.team/stops/6811"], ["https://mivb.openplanner.team/stops/2292B", "https://mivb.openplanner.team/stops/5961"], ["https://mivb.openplanner.team/stops/1098", "https://mivb.openplanner.team/stops/1184"], ["https://mivb.openplanner.team/stops/2315", "https://mivb.openplanner.team/stops/2316"], ["https://mivb.openplanner.team/stops/3402", "https://mivb.openplanner.team/stops/3460"], ["https://mivb.openplanner.team/stops/6436", "https://mivb.openplanner.team/stops/0410346"], ["https://mivb.openplanner.team/stops/5722", "https://mivb.openplanner.team/stops/5722F"], ["https://mivb.openplanner.team/stops/4228", "https://mivb.openplanner.team/stops/4268"], ["https://mivb.openplanner.team/stops/3522", "https://mivb.openplanner.team/stops/5601"], ["https://mivb.openplanner.team/stops/2670F", "https://mivb.openplanner.team/stops/6175"], ["https://mivb.openplanner.team/stops/8302", "https://mivb.openplanner.team/stops/0300145"], ["https://mivb.openplanner.team/stops/1480", "https://mivb.openplanner.team/stops/7"], ["https://mivb.openplanner.team/stops/1860", "https://mivb.openplanner.team/stops/5503"], ["https://mivb.openplanner.team/stops/0610163", "https://mivb.openplanner.team/stops/0610263"], ["https://mivb.openplanner.team/stops/1657", "https://mivb.openplanner.team/stops/5522"], ["https://mivb.openplanner.team/stops/4212B", "https://mivb.openplanner.team/stops/5074F"], ["https://mivb.openplanner.team/stops/0516", "https://mivb.openplanner.team/stops/0539"], ["https://mivb.openplanner.team/stops/2322", "https://mivb.openplanner.team/stops/2413"], ["https://mivb.openplanner.team/stops/5060", "https://mivb.openplanner.team/stops/5858"], ["https://mivb.openplanner.team/stops/6468", "https://mivb.openplanner.team/stops/8252"], ["https://mivb.openplanner.team/stops/3132", "https://mivb.openplanner.team/stops/5039"], ["https://mivb.openplanner.team/stops/1377", "https://mivb.openplanner.team/stops/1381"], ["https://mivb.openplanner.team/stops/2221", "https://mivb.openplanner.team/stops/6308F"], ["https://mivb.openplanner.team/stops/0340341", "https://mivb.openplanner.team/stops/0350740"], ["https://mivb.openplanner.team/stops/1854", "https://mivb.openplanner.team/stops/5509"], ["https://mivb.openplanner.team/stops/9651", "https://mivb.openplanner.team/stops/9652"], ["https://mivb.openplanner.team/stops/4804B", "https://mivb.openplanner.team/stops/5057"], ["https://mivb.openplanner.team/stops/2997", "https://mivb.openplanner.team/stops/5274F"], ["https://mivb.openplanner.team/stops/1056", "https://mivb.openplanner.team/stops/4212B"], ["https://mivb.openplanner.team/stops/5531", "https://mivb.openplanner.team/stops/5562"], ["https://mivb.openplanner.team/stops/1095", "https://mivb.openplanner.team/stops/1190"], ["https://mivb.openplanner.team/stops/2325", "https://mivb.openplanner.team/stops/6097B"], ["https://mivb.openplanner.team/stops/1767", "https://mivb.openplanner.team/stops/2574"], ["https://mivb.openplanner.team/stops/1586", "https://mivb.openplanner.team/stops/1638B"], ["https://mivb.openplanner.team/stops/2725", "https://mivb.openplanner.team/stops/0260237"], ["https://mivb.openplanner.team/stops/3414", "https://mivb.openplanner.team/stops/3451"], ["https://mivb.openplanner.team/stops/2142", "https://mivb.openplanner.team/stops/2717"], ["https://mivb.openplanner.team/stops/3612F", "https://mivb.openplanner.team/stops/9"], ["https://mivb.openplanner.team/stops/2285G", "https://mivb.openplanner.team/stops/9996"], ["https://mivb.openplanner.team/stops/1142", "https://mivb.openplanner.team/stops/5174F"], ["https://mivb.openplanner.team/stops/6476", "https://mivb.openplanner.team/stops/0110125"], ["https://mivb.openplanner.team/stops/2147B", "https://mivb.openplanner.team/stops/2157"], ["https://mivb.openplanner.team/stops/1283", "https://mivb.openplanner.team/stops/2908"], ["https://mivb.openplanner.team/stops/1134", "https://mivb.openplanner.team/stops/1402B"], ["https://mivb.openplanner.team/stops/1159", "https://mivb.openplanner.team/stops/1871B"], ["https://mivb.openplanner.team/stops/1139", "https://mivb.openplanner.team/stops/1154"], ["https://mivb.openplanner.team/stops/4105", "https://mivb.openplanner.team/stops/4157"], ["https://mivb.openplanner.team/stops/1042", "https://mivb.openplanner.team/stops/8082"], ["https://mivb.openplanner.team/stops/1975", "https://mivb.openplanner.team/stops/5210"], ["https://mivb.openplanner.team/stops/1508", "https://mivb.openplanner.team/stops/1571"], ["https://mivb.openplanner.team/stops/2553", "https://mivb.openplanner.team/stops/5718"], ["https://mivb.openplanner.team/stops/8332", "https://mivb.openplanner.team/stops/0330342"], ["https://mivb.openplanner.team/stops/1042", "https://mivb.openplanner.team/stops/1113"], ["https://mivb.openplanner.team/stops/0350140", "https://mivb.openplanner.team/stops/0350240"], ["https://mivb.openplanner.team/stops/0724", "https://mivb.openplanner.team/stops/2331F"], ["https://mivb.openplanner.team/stops/1270B", "https://mivb.openplanner.team/stops/1318"], ["https://mivb.openplanner.team/stops/1861", "https://mivb.openplanner.team/stops/1875"], ["https://mivb.openplanner.team/stops/6100", "https://mivb.openplanner.team/stops/6122"], ["https://mivb.openplanner.team/stops/2023", "https://mivb.openplanner.team/stops/5115F"], ["https://mivb.openplanner.team/stops/1289", "https://mivb.openplanner.team/stops/5472"], ["https://mivb.openplanner.team/stops/3611F", "https://mivb.openplanner.team/stops/3751"], ["https://mivb.openplanner.team/stops/5418", "https://mivb.openplanner.team/stops/5424"], ["https://mivb.openplanner.team/stops/5858", "https://mivb.openplanner.team/stops/6424F"], ["https://mivb.openplanner.team/stops/3064", "https://mivb.openplanner.team/stops/9608"], ["https://mivb.openplanner.team/stops/6018", "https://mivb.openplanner.team/stops/6059"], ["https://mivb.openplanner.team/stops/3712", "https://mivb.openplanner.team/stops/3756"], ["https://mivb.openplanner.team/stops/1767", "https://mivb.openplanner.team/stops/6864F"], ["https://mivb.openplanner.team/stops/2524", "https://mivb.openplanner.team/stops/5151"], ["https://mivb.openplanner.team/stops/0100224", "https://mivb.openplanner.team/stops/0100524"], ["https://mivb.openplanner.team/stops/1830", "https://mivb.openplanner.team/stops/1831"], ["https://mivb.openplanner.team/stops/1203", "https://mivb.openplanner.team/stops/1261"], ["https://mivb.openplanner.team/stops/2924", "https://mivb.openplanner.team/stops/2982"], ["https://mivb.openplanner.team/stops/2203", "https://mivb.openplanner.team/stops/2207"], ["https://mivb.openplanner.team/stops/3526", "https://mivb.openplanner.team/stops/3530"], ["https://mivb.openplanner.team/stops/4007G", "https://mivb.openplanner.team/stops/6071"], ["https://mivb.openplanner.team/stops/1985G", "https://mivb.openplanner.team/stops/2764G"], ["https://mivb.openplanner.team/stops/1598", "https://mivb.openplanner.team/stops/0230234"], ["https://mivb.openplanner.team/stops/2015", "https://mivb.openplanner.team/stops/2025"], ["https://mivb.openplanner.team/stops/3177", "https://mivb.openplanner.team/stops/3180"], ["https://mivb.openplanner.team/stops/3156", "https://mivb.openplanner.team/stops/4303"], ["https://mivb.openplanner.team/stops/2988", "https://mivb.openplanner.team/stops/5967"], ["https://mivb.openplanner.team/stops/1760", "https://mivb.openplanner.team/stops/32"], ["https://mivb.openplanner.team/stops/0230234", "https://mivb.openplanner.team/stops/0230434"], ["https://mivb.openplanner.team/stops/6097B", "https://mivb.openplanner.team/stops/6100"], ["https://mivb.openplanner.team/stops/1356", "https://mivb.openplanner.team/stops/2304"], ["https://mivb.openplanner.team/stops/1720B", "https://mivb.openplanner.team/stops/2009"], ["https://mivb.openplanner.team/stops/3552", "https://mivb.openplanner.team/stops/3553"], ["https://mivb.openplanner.team/stops/3920", "https://mivb.openplanner.team/stops/3959"], ["https://mivb.openplanner.team/stops/1198", "https://mivb.openplanner.team/stops/1304"], ["https://mivb.openplanner.team/stops/8281", "https://mivb.openplanner.team/stops/0280113"], ["https://mivb.openplanner.team/stops/8814", "https://mivb.openplanner.team/stops/9052"], ["https://mivb.openplanner.team/stops/6354", "https://mivb.openplanner.team/stops/6354B"], ["https://mivb.openplanner.team/stops/3233", "https://mivb.openplanner.team/stops/3252"], ["https://mivb.openplanner.team/stops/2810", "https://mivb.openplanner.team/stops/6174B"], ["https://mivb.openplanner.team/stops/1682F", "https://mivb.openplanner.team/stops/1732"], ["https://mivb.openplanner.team/stops/0821", "https://mivb.openplanner.team/stops/6449"], ["https://mivb.openplanner.team/stops/1204", "https://mivb.openplanner.team/stops/2319"], ["https://mivb.openplanner.team/stops/2214", "https://mivb.openplanner.team/stops/6650G"], ["https://mivb.openplanner.team/stops/4364", "https://mivb.openplanner.team/stops/6114F"], ["https://mivb.openplanner.team/stops/5121F", "https://mivb.openplanner.team/stops/5161"], ["https://mivb.openplanner.team/stops/2410", "https://mivb.openplanner.team/stops/5812F"], ["https://mivb.openplanner.team/stops/1828", "https://mivb.openplanner.team/stops/5530"], ["https://mivb.openplanner.team/stops/1094F", "https://mivb.openplanner.team/stops/4055G"], ["https://mivb.openplanner.team/stops/1125", "https://mivb.openplanner.team/stops/1126"], ["https://mivb.openplanner.team/stops/3257", "https://mivb.openplanner.team/stops/0370338"], ["https://mivb.openplanner.team/stops/1538B", "https://mivb.openplanner.team/stops/3661"], ["https://mivb.openplanner.team/stops/1334", "https://mivb.openplanner.team/stops/4071"], ["https://mivb.openplanner.team/stops/3317", "https://mivb.openplanner.team/stops/5044"], ["https://mivb.openplanner.team/stops/4127", "https://mivb.openplanner.team/stops/4252"], ["https://mivb.openplanner.team/stops/2119", "https://mivb.openplanner.team/stops/2145"], ["https://mivb.openplanner.team/stops/3101", "https://mivb.openplanner.team/stops/5872"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/9553"], ["https://mivb.openplanner.team/stops/1988", "https://mivb.openplanner.team/stops/0430648"], ["https://mivb.openplanner.team/stops/2407", "https://mivb.openplanner.team/stops/2460"], ["https://mivb.openplanner.team/stops/1975", "https://mivb.openplanner.team/stops/5409"], ["https://mivb.openplanner.team/stops/4104", "https://mivb.openplanner.team/stops/4109"], ["https://mivb.openplanner.team/stops/1463", "https://mivb.openplanner.team/stops/3217"], ["https://mivb.openplanner.team/stops/1869", "https://mivb.openplanner.team/stops/6117"], ["https://mivb.openplanner.team/stops/2853", "https://mivb.openplanner.team/stops/5771"], ["https://mivb.openplanner.team/stops/1570", "https://mivb.openplanner.team/stops/1582"], ["https://mivb.openplanner.team/stops/0220233", "https://mivb.openplanner.team/stops/33"], ["https://mivb.openplanner.team/stops/4257", "https://mivb.openplanner.team/stops/5400"], ["https://mivb.openplanner.team/stops/1938", "https://mivb.openplanner.team/stops/1959"], ["https://mivb.openplanner.team/stops/4854C", "https://mivb.openplanner.team/stops/4856B"], ["https://mivb.openplanner.team/stops/3419", "https://mivb.openplanner.team/stops/3448B"], ["https://mivb.openplanner.team/stops/1500", "https://mivb.openplanner.team/stops/5273F"], ["https://mivb.openplanner.team/stops/2727", "https://mivb.openplanner.team/stops/3526"], ["https://mivb.openplanner.team/stops/1085", "https://mivb.openplanner.team/stops/2555"], ["https://mivb.openplanner.team/stops/1654", "https://mivb.openplanner.team/stops/1770"], ["https://mivb.openplanner.team/stops/6359", "https://mivb.openplanner.team/stops/9023"], ["https://mivb.openplanner.team/stops/2586", "https://mivb.openplanner.team/stops/6867F"], ["https://mivb.openplanner.team/stops/2816", "https://mivb.openplanner.team/stops/2853"], ["https://mivb.openplanner.team/stops/0516", "https://mivb.openplanner.team/stops/0430748"], ["https://mivb.openplanner.team/stops/1322", "https://mivb.openplanner.team/stops/5213"], ["https://mivb.openplanner.team/stops/5413F", "https://mivb.openplanner.team/stops/5462F"], ["https://mivb.openplanner.team/stops/3562", "https://mivb.openplanner.team/stops/5409"], ["https://mivb.openplanner.team/stops/9552", "https://mivb.openplanner.team/stops/9575"], ["https://mivb.openplanner.team/stops/1257", "https://mivb.openplanner.team/stops/2564"], ["https://mivb.openplanner.team/stops/5706", "https://mivb.openplanner.team/stops/5707"], ["https://mivb.openplanner.team/stops/6024", "https://mivb.openplanner.team/stops/0070421"], ["https://mivb.openplanner.team/stops/6014", "https://mivb.openplanner.team/stops/6434F"], ["https://mivb.openplanner.team/stops/1076", "https://mivb.openplanner.team/stops/1076B"], ["https://mivb.openplanner.team/stops/5040", "https://mivb.openplanner.team/stops/5048"], ["https://mivb.openplanner.team/stops/3125", "https://mivb.openplanner.team/stops/4365"], ["https://mivb.openplanner.team/stops/5059", "https://mivb.openplanner.team/stops/5813F"], ["https://mivb.openplanner.team/stops/3121", "https://mivb.openplanner.team/stops/6158"], ["https://mivb.openplanner.team/stops/6177", "https://mivb.openplanner.team/stops/6179"], ["https://mivb.openplanner.team/stops/2263", "https://mivb.openplanner.team/stops/6659F"], ["https://mivb.openplanner.team/stops/2801", "https://mivb.openplanner.team/stops/4251"], ["https://mivb.openplanner.team/stops/1821", "https://mivb.openplanner.team/stops/1853"], ["https://mivb.openplanner.team/stops/1211B", "https://mivb.openplanner.team/stops/3760"], ["https://mivb.openplanner.team/stops/3260", "https://mivb.openplanner.team/stops/3633B"], ["https://mivb.openplanner.team/stops/1715", "https://mivb.openplanner.team/stops/1779"], ["https://mivb.openplanner.team/stops/1327", "https://mivb.openplanner.team/stops/3856"], ["https://mivb.openplanner.team/stops/1065", "https://mivb.openplanner.team/stops/6803F"], ["https://mivb.openplanner.team/stops/3611F", "https://mivb.openplanner.team/stops/8651"], ["https://mivb.openplanner.team/stops/2337F", "https://mivb.openplanner.team/stops/2338F"], ["https://mivb.openplanner.team/stops/2370", "https://mivb.openplanner.team/stops/4252"], ["https://mivb.openplanner.team/stops/4295", "https://mivb.openplanner.team/stops/4402"], ["https://mivb.openplanner.team/stops/8011", "https://mivb.openplanner.team/stops/8012"], ["https://mivb.openplanner.team/stops/3462", "https://mivb.openplanner.team/stops/3920"], ["https://mivb.openplanner.team/stops/3012", "https://mivb.openplanner.team/stops/6447"], ["https://mivb.openplanner.team/stops/2718", "https://mivb.openplanner.team/stops/5415F"], ["https://mivb.openplanner.team/stops/6804F", "https://mivb.openplanner.team/stops/6866F"], ["https://mivb.openplanner.team/stops/1019", "https://mivb.openplanner.team/stops/1350"], ["https://mivb.openplanner.team/stops/1961B", "https://mivb.openplanner.team/stops/5825"], ["https://mivb.openplanner.team/stops/2977", "https://mivb.openplanner.team/stops/5306G"], ["https://mivb.openplanner.team/stops/5519", "https://mivb.openplanner.team/stops/5521"], ["https://mivb.openplanner.team/stops/3810", "https://mivb.openplanner.team/stops/3815"], ["https://mivb.openplanner.team/stops/1830", "https://mivb.openplanner.team/stops/5510"], ["https://mivb.openplanner.team/stops/0660166", "https://mivb.openplanner.team/stops/0660266"], ["https://mivb.openplanner.team/stops/4223", "https://mivb.openplanner.team/stops/7830352"], ["https://mivb.openplanner.team/stops/1289", "https://mivb.openplanner.team/stops/4229"], ["https://mivb.openplanner.team/stops/3118", "https://mivb.openplanner.team/stops/6060"], ["https://mivb.openplanner.team/stops/1479", "https://mivb.openplanner.team/stops/7670208"], ["https://mivb.openplanner.team/stops/1821", "https://mivb.openplanner.team/stops/5509"], ["https://mivb.openplanner.team/stops/1049F", "https://mivb.openplanner.team/stops/1059"], ["https://mivb.openplanner.team/stops/4207", "https://mivb.openplanner.team/stops/9047"], ["https://mivb.openplanner.team/stops/2243F", "https://mivb.openplanner.team/stops/5308F"], ["https://mivb.openplanner.team/stops/0100524", "https://mivb.openplanner.team/stops/9983"], ["https://mivb.openplanner.team/stops/4069", "https://mivb.openplanner.team/stops/4260"], ["https://mivb.openplanner.team/stops/0089", "https://mivb.openplanner.team/stops/5531"], ["https://mivb.openplanner.team/stops/2046", "https://mivb.openplanner.team/stops/8261"], ["https://mivb.openplanner.team/stops/2927", "https://mivb.openplanner.team/stops/0060120"], ["https://mivb.openplanner.team/stops/1835", "https://mivb.openplanner.team/stops/5525"], ["https://mivb.openplanner.team/stops/1706", "https://mivb.openplanner.team/stops/1769"], ["https://mivb.openplanner.team/stops/1456", "https://mivb.openplanner.team/stops/6477"], ["https://mivb.openplanner.team/stops/2900", "https://mivb.openplanner.team/stops/3304"], ["https://mivb.openplanner.team/stops/3158", "https://mivb.openplanner.team/stops/3953"], ["https://mivb.openplanner.team/stops/3334F", "https://mivb.openplanner.team/stops/9727"], ["https://mivb.openplanner.team/stops/1352", "https://mivb.openplanner.team/stops/3562"], ["https://mivb.openplanner.team/stops/2910", "https://mivb.openplanner.team/stops/5801"], ["https://mivb.openplanner.team/stops/6607", "https://mivb.openplanner.team/stops/0440549"], ["https://mivb.openplanner.team/stops/8271", "https://mivb.openplanner.team/stops/0270614"], ["https://mivb.openplanner.team/stops/2916", "https://mivb.openplanner.team/stops/2976"], ["https://mivb.openplanner.team/stops/1513", "https://mivb.openplanner.team/stops/6190"], ["https://mivb.openplanner.team/stops/1288", "https://mivb.openplanner.team/stops/8472"], ["https://mivb.openplanner.team/stops/1348", "https://mivb.openplanner.team/stops/2371"], ["https://mivb.openplanner.team/stops/2148", "https://mivb.openplanner.team/stops/6934F"], ["https://mivb.openplanner.team/stops/3223B", "https://mivb.openplanner.team/stops/3259B"], ["https://mivb.openplanner.team/stops/2928", "https://mivb.openplanner.team/stops/2962"], ["https://mivb.openplanner.team/stops/4351", "https://mivb.openplanner.team/stops/5452"], ["https://mivb.openplanner.team/stops/2079", "https://mivb.openplanner.team/stops/4309"], ["https://mivb.openplanner.team/stops/1307F", "https://mivb.openplanner.team/stops/4003G"], ["https://mivb.openplanner.team/stops/2415", "https://mivb.openplanner.team/stops/5855F"], ["https://mivb.openplanner.team/stops/1914", "https://mivb.openplanner.team/stops/5409"], ["https://mivb.openplanner.team/stops/2856B", "https://mivb.openplanner.team/stops/2857B"], ["https://mivb.openplanner.team/stops/5299", "https://mivb.openplanner.team/stops/5363"], ["https://mivb.openplanner.team/stops/8211", "https://mivb.openplanner.team/stops/0210232"], ["https://mivb.openplanner.team/stops/2522", "https://mivb.openplanner.team/stops/2564"], ["https://mivb.openplanner.team/stops/1642F", "https://mivb.openplanner.team/stops/6419F"], ["https://mivb.openplanner.team/stops/1140", "https://mivb.openplanner.team/stops/23"], ["https://mivb.openplanner.team/stops/0501", "https://mivb.openplanner.team/stops/0506"], ["https://mivb.openplanner.team/stops/2457", "https://mivb.openplanner.team/stops/5812F"], ["https://mivb.openplanner.team/stops/4129", "https://mivb.openplanner.team/stops/7790356"], ["https://mivb.openplanner.team/stops/4452", "https://mivb.openplanner.team/stops/0250136"], ["https://mivb.openplanner.team/stops/2218", "https://mivb.openplanner.team/stops/3858"], ["https://mivb.openplanner.team/stops/1831", "https://mivb.openplanner.team/stops/0130227"], ["https://mivb.openplanner.team/stops/7830152", "https://mivb.openplanner.team/stops/7830252"], ["https://mivb.openplanner.team/stops/6445", "https://mivb.openplanner.team/stops/6447"], ["https://mivb.openplanner.team/stops/1928F", "https://mivb.openplanner.team/stops/1995"], ["https://mivb.openplanner.team/stops/3221", "https://mivb.openplanner.team/stops/6604F"], ["https://mivb.openplanner.team/stops/1599", "https://mivb.openplanner.team/stops/1755"], ["https://mivb.openplanner.team/stops/1737", "https://mivb.openplanner.team/stops/5028"], ["https://mivb.openplanner.team/stops/2721", "https://mivb.openplanner.team/stops/5414F"], ["https://mivb.openplanner.team/stops/1014F", "https://mivb.openplanner.team/stops/6864F"], ["https://mivb.openplanner.team/stops/7252B", "https://mivb.openplanner.team/stops/7998"], ["https://mivb.openplanner.team/stops/2935", "https://mivb.openplanner.team/stops/2956"], ["https://mivb.openplanner.team/stops/2351", "https://mivb.openplanner.team/stops/2351F"], ["https://mivb.openplanner.team/stops/2856B", "https://mivb.openplanner.team/stops/5001F"], ["https://mivb.openplanner.team/stops/3681", "https://mivb.openplanner.team/stops/3856"], ["https://mivb.openplanner.team/stops/3106", "https://mivb.openplanner.team/stops/6456F"], ["https://mivb.openplanner.team/stops/3550", "https://mivb.openplanner.team/stops/4296"], ["https://mivb.openplanner.team/stops/1802", "https://mivb.openplanner.team/stops/3158B"], ["https://mivb.openplanner.team/stops/4290", "https://mivb.openplanner.team/stops/5453"], ["https://mivb.openplanner.team/stops/3164", "https://mivb.openplanner.team/stops/6203"], ["https://mivb.openplanner.team/stops/1917", "https://mivb.openplanner.team/stops/5254"], ["https://mivb.openplanner.team/stops/2608", "https://mivb.openplanner.team/stops/2663"], ["https://mivb.openplanner.team/stops/2831", "https://mivb.openplanner.team/stops/2833"], ["https://mivb.openplanner.team/stops/0660166", "https://mivb.openplanner.team/stops/2336G"], ["https://mivb.openplanner.team/stops/1932", "https://mivb.openplanner.team/stops/1958B"], ["https://mivb.openplanner.team/stops/3299", "https://mivb.openplanner.team/stops/3360F"], ["https://mivb.openplanner.team/stops/1828", "https://mivb.openplanner.team/stops/1847"], ["https://mivb.openplanner.team/stops/3214", "https://mivb.openplanner.team/stops/5362F"], ["https://mivb.openplanner.team/stops/4952", "https://mivb.openplanner.team/stops/0310544"], ["https://mivb.openplanner.team/stops/3628", "https://mivb.openplanner.team/stops/0320143"], ["https://mivb.openplanner.team/stops/5082", "https://mivb.openplanner.team/stops/7800355"], ["https://mivb.openplanner.team/stops/0610563", "https://mivb.openplanner.team/stops/0610663"], ["https://mivb.openplanner.team/stops/5103", "https://mivb.openplanner.team/stops/5170"], ["https://mivb.openplanner.team/stops/1539", "https://mivb.openplanner.team/stops/1557"], ["https://mivb.openplanner.team/stops/1288", "https://mivb.openplanner.team/stops/8764"], ["https://mivb.openplanner.team/stops/2252", "https://mivb.openplanner.team/stops/2254"], ["https://mivb.openplanner.team/stops/3408", "https://mivb.openplanner.team/stops/3409"], ["https://mivb.openplanner.team/stops/1977", "https://mivb.openplanner.team/stops/7604"], ["https://mivb.openplanner.team/stops/0621", "https://mivb.openplanner.team/stops/6657"], ["https://mivb.openplanner.team/stops/6428F", "https://mivb.openplanner.team/stops/6430"], ["https://mivb.openplanner.team/stops/6706", "https://mivb.openplanner.team/stops/0290112"], ["https://mivb.openplanner.team/stops/1232", "https://mivb.openplanner.team/stops/5155"], ["https://mivb.openplanner.team/stops/1493", "https://mivb.openplanner.team/stops/8672"], ["https://mivb.openplanner.team/stops/5295", "https://mivb.openplanner.team/stops/6173"], ["https://mivb.openplanner.team/stops/3412", "https://mivb.openplanner.team/stops/3414"], ["https://mivb.openplanner.team/stops/2257B", "https://mivb.openplanner.team/stops/2257G"], ["https://mivb.openplanner.team/stops/2313", "https://mivb.openplanner.team/stops/2365"], ["https://mivb.openplanner.team/stops/1738", "https://mivb.openplanner.team/stops/2104"], ["https://mivb.openplanner.team/stops/4998", "https://mivb.openplanner.team/stops/9052"], ["https://mivb.openplanner.team/stops/8711", "https://mivb.openplanner.team/stops/7710204"], ["https://mivb.openplanner.team/stops/1475", "https://mivb.openplanner.team/stops/7660109"], ["https://mivb.openplanner.team/stops/2515B", "https://mivb.openplanner.team/stops/5006"], ["https://mivb.openplanner.team/stops/4124", "https://mivb.openplanner.team/stops/7790256"], ["https://mivb.openplanner.team/stops/1207", "https://mivb.openplanner.team/stops/2561"], ["https://mivb.openplanner.team/stops/3228", "https://mivb.openplanner.team/stops/6648"], ["https://mivb.openplanner.team/stops/6313", "https://mivb.openplanner.team/stops/6352"], ["https://mivb.openplanner.team/stops/4306", "https://mivb.openplanner.team/stops/5264F"], ["https://mivb.openplanner.team/stops/2560", "https://mivb.openplanner.team/stops/2562B"], ["https://mivb.openplanner.team/stops/9164", "https://mivb.openplanner.team/stops/9575"], ["https://mivb.openplanner.team/stops/3633B", "https://mivb.openplanner.team/stops/6649F"], ["https://mivb.openplanner.team/stops/1587", "https://mivb.openplanner.team/stops/1828"], ["https://mivb.openplanner.team/stops/1983", "https://mivb.openplanner.team/stops/4367B"], ["https://mivb.openplanner.team/stops/2971", "https://mivb.openplanner.team/stops/5475"], ["https://mivb.openplanner.team/stops/1605", "https://mivb.openplanner.team/stops/5516"], ["https://mivb.openplanner.team/stops/2225", "https://mivb.openplanner.team/stops/2226"], ["https://mivb.openplanner.team/stops/1354", "https://mivb.openplanner.team/stops/3122"], ["https://mivb.openplanner.team/stops/1584", "https://mivb.openplanner.team/stops/1833B"], ["https://mivb.openplanner.team/stops/3274", "https://mivb.openplanner.team/stops/3661"], ["https://mivb.openplanner.team/stops/2225", "https://mivb.openplanner.team/stops/2550"], ["https://mivb.openplanner.team/stops/3299", "https://mivb.openplanner.team/stops/5356"], ["https://mivb.openplanner.team/stops/1321", "https://mivb.openplanner.team/stops/1540"], ["https://mivb.openplanner.team/stops/2322", "https://mivb.openplanner.team/stops/2412"], ["https://mivb.openplanner.team/stops/6468", "https://mivb.openplanner.team/stops/0250336"], ["https://mivb.openplanner.team/stops/2854", "https://mivb.openplanner.team/stops/2856B"], ["https://mivb.openplanner.team/stops/3309", "https://mivb.openplanner.team/stops/3309F"], ["https://mivb.openplanner.team/stops/6023", "https://mivb.openplanner.team/stops/6055"], ["https://mivb.openplanner.team/stops/2927", "https://mivb.openplanner.team/stops/6465"], ["https://mivb.openplanner.team/stops/5016F", "https://mivb.openplanner.team/stops/5017"], ["https://mivb.openplanner.team/stops/1253B", "https://mivb.openplanner.team/stops/8722"], ["https://mivb.openplanner.team/stops/2023", "https://mivb.openplanner.team/stops/2459"], ["https://mivb.openplanner.team/stops/3508F", "https://mivb.openplanner.team/stops/9952G"], ["https://mivb.openplanner.team/stops/5071", "https://mivb.openplanner.team/stops/0280213"], ["https://mivb.openplanner.team/stops/3232", "https://mivb.openplanner.team/stops/3239"], ["https://mivb.openplanner.team/stops/1951", "https://mivb.openplanner.team/stops/5025"], ["https://mivb.openplanner.team/stops/0601262", "https://mivb.openplanner.team/stops/1820"], ["https://mivb.openplanner.team/stops/3218", "https://mivb.openplanner.team/stops/6021"], ["https://mivb.openplanner.team/stops/0040318", "https://mivb.openplanner.team/stops/0040518"], ["https://mivb.openplanner.team/stops/1802", "https://mivb.openplanner.team/stops/1872B"], ["https://mivb.openplanner.team/stops/1510", "https://mivb.openplanner.team/stops/3100"], ["https://mivb.openplanner.team/stops/1586", "https://mivb.openplanner.team/stops/1639"], ["https://mivb.openplanner.team/stops/3284", "https://mivb.openplanner.team/stops/3286B"], ["https://mivb.openplanner.team/stops/3518B", "https://mivb.openplanner.team/stops/7529"], ["https://mivb.openplanner.team/stops/3219", "https://mivb.openplanner.team/stops/8061"], ["https://mivb.openplanner.team/stops/3309", "https://mivb.openplanner.team/stops/3414"], ["https://mivb.openplanner.team/stops/5406", "https://mivb.openplanner.team/stops/7520"], ["https://mivb.openplanner.team/stops/5119", "https://mivb.openplanner.team/stops/5155"], ["https://mivb.openplanner.team/stops/2334F", "https://mivb.openplanner.team/stops/2463"], ["https://mivb.openplanner.team/stops/2900", "https://mivb.openplanner.team/stops/2903"], ["https://mivb.openplanner.team/stops/8012", "https://mivb.openplanner.team/stops/0010115"], ["https://mivb.openplanner.team/stops/4105", "https://mivb.openplanner.team/stops/4158"], ["https://mivb.openplanner.team/stops/2017", "https://mivb.openplanner.team/stops/2025"], ["https://mivb.openplanner.team/stops/1508", "https://mivb.openplanner.team/stops/1570"], ["https://mivb.openplanner.team/stops/1406", "https://mivb.openplanner.team/stops/1462"], ["https://mivb.openplanner.team/stops/5361", "https://mivb.openplanner.team/stops/5362F"], ["https://mivb.openplanner.team/stops/1111", "https://mivb.openplanner.team/stops/4153"], ["https://mivb.openplanner.team/stops/2539F", "https://mivb.openplanner.team/stops/2671"], ["https://mivb.openplanner.team/stops/1510", "https://mivb.openplanner.team/stops/0050419"], ["https://mivb.openplanner.team/stops/1205", "https://mivb.openplanner.team/stops/1259"], ["https://mivb.openplanner.team/stops/1289", "https://mivb.openplanner.team/stops/5474"], ["https://mivb.openplanner.team/stops/1133", "https://mivb.openplanner.team/stops/1728"], ["https://mivb.openplanner.team/stops/2912", "https://mivb.openplanner.team/stops/5801"], ["https://mivb.openplanner.team/stops/2402", "https://mivb.openplanner.team/stops/2465"], ["https://mivb.openplanner.team/stops/1467", "https://mivb.openplanner.team/stops/2801"], ["https://mivb.openplanner.team/stops/5116", "https://mivb.openplanner.team/stops/5175"], ["https://mivb.openplanner.team/stops/1099", "https://mivb.openplanner.team/stops/1196"], ["https://mivb.openplanner.team/stops/0470351", "https://mivb.openplanner.team/stops/0470659"], ["https://mivb.openplanner.team/stops/2287", "https://mivb.openplanner.team/stops/9996"], ["https://mivb.openplanner.team/stops/1554", "https://mivb.openplanner.team/stops/0120226"], ["https://mivb.openplanner.team/stops/5038", "https://mivb.openplanner.team/stops/5044"], ["https://mivb.openplanner.team/stops/2143B", "https://mivb.openplanner.team/stops/2148"], ["https://mivb.openplanner.team/stops/2960", "https://mivb.openplanner.team/stops/5469"], ["https://mivb.openplanner.team/stops/1716", "https://mivb.openplanner.team/stops/5312"], ["https://mivb.openplanner.team/stops/4340", "https://mivb.openplanner.team/stops/5422"], ["https://mivb.openplanner.team/stops/1257", "https://mivb.openplanner.team/stops/2522"], ["https://mivb.openplanner.team/stops/1830", "https://mivb.openplanner.team/stops/1832"], ["https://mivb.openplanner.team/stops/3103", "https://mivb.openplanner.team/stops/5802"], ["https://mivb.openplanner.team/stops/0050219", "https://mivb.openplanner.team/stops/0050419"], ["https://mivb.openplanner.team/stops/0610363", "https://mivb.openplanner.team/stops/0610563"], ["https://mivb.openplanner.team/stops/2203", "https://mivb.openplanner.team/stops/2204"], ["https://mivb.openplanner.team/stops/5003", "https://mivb.openplanner.team/stops/5081F"], ["https://mivb.openplanner.team/stops/2669", "https://mivb.openplanner.team/stops/2669F"], ["https://mivb.openplanner.team/stops/5258", "https://mivb.openplanner.team/stops/5407"], ["https://mivb.openplanner.team/stops/1514", "https://mivb.openplanner.team/stops/2974"], ["https://mivb.openplanner.team/stops/3306", "https://mivb.openplanner.team/stops/3420"], ["https://mivb.openplanner.team/stops/6005", "https://mivb.openplanner.team/stops/7720303"], ["https://mivb.openplanner.team/stops/2932", "https://mivb.openplanner.team/stops/6408"], ["https://mivb.openplanner.team/stops/1711", "https://mivb.openplanner.team/stops/4259"], ["https://mivb.openplanner.team/stops/1968", "https://mivb.openplanner.team/stops/2125"], ["https://mivb.openplanner.team/stops/1805", "https://mivb.openplanner.team/stops/1870"], ["https://mivb.openplanner.team/stops/1201", "https://mivb.openplanner.team/stops/2536"], ["https://mivb.openplanner.team/stops/4059F", "https://mivb.openplanner.team/stops/4165"], ["https://mivb.openplanner.team/stops/6418", "https://mivb.openplanner.team/stops/6419F"], ["https://mivb.openplanner.team/stops/3132", "https://mivb.openplanner.team/stops/5038"], ["https://mivb.openplanner.team/stops/8071", "https://mivb.openplanner.team/stops/21"], ["https://mivb.openplanner.team/stops/1080", "https://mivb.openplanner.team/stops/1103"], ["https://mivb.openplanner.team/stops/2903F", "https://mivb.openplanner.team/stops/3420"], ["https://mivb.openplanner.team/stops/8091", "https://mivb.openplanner.team/stops/23"], ["https://mivb.openplanner.team/stops/1957B", "https://mivb.openplanner.team/stops/1963"], ["https://mivb.openplanner.team/stops/3222", "https://mivb.openplanner.team/stops/6654F"], ["https://mivb.openplanner.team/stops/1067", "https://mivb.openplanner.team/stops/2801"], ["https://mivb.openplanner.team/stops/1933B", "https://mivb.openplanner.team/stops/1957B"], ["https://mivb.openplanner.team/stops/3257", "https://mivb.openplanner.team/stops/0370138"], ["https://mivb.openplanner.team/stops/1024", "https://mivb.openplanner.team/stops/9026"], ["https://mivb.openplanner.team/stops/1912", "https://mivb.openplanner.team/stops/7604"], ["https://mivb.openplanner.team/stops/3399", "https://mivb.openplanner.team/stops/0060420"], ["https://mivb.openplanner.team/stops/5823", "https://mivb.openplanner.team/stops/5824"], ["https://mivb.openplanner.team/stops/2119", "https://mivb.openplanner.team/stops/2144"], ["https://mivb.openplanner.team/stops/1308G", "https://mivb.openplanner.team/stops/4066F"], ["https://mivb.openplanner.team/stops/3524", "https://mivb.openplanner.team/stops/37"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/9552"], ["https://mivb.openplanner.team/stops/1184", "https://mivb.openplanner.team/stops/7750260"], ["https://mivb.openplanner.team/stops/6314", "https://mivb.openplanner.team/stops/0320143"], ["https://mivb.openplanner.team/stops/1202", "https://mivb.openplanner.team/stops/8753"], ["https://mivb.openplanner.team/stops/1463", "https://mivb.openplanner.team/stops/3218"], ["https://mivb.openplanner.team/stops/3401", "https://mivb.openplanner.team/stops/3661"], ["https://mivb.openplanner.team/stops/2926", "https://mivb.openplanner.team/stops/3470"], ["https://mivb.openplanner.team/stops/4854C", "https://mivb.openplanner.team/stops/4857B"], ["https://mivb.openplanner.team/stops/1868", "https://mivb.openplanner.team/stops/0200131"], ["https://mivb.openplanner.team/stops/3804B", "https://mivb.openplanner.team/stops/3852"], ["https://mivb.openplanner.team/stops/1733", "https://mivb.openplanner.team/stops/6113F"], ["https://mivb.openplanner.team/stops/2214", "https://mivb.openplanner.team/stops/2262"], ["https://mivb.openplanner.team/stops/2377", "https://mivb.openplanner.team/stops/5771"], ["https://mivb.openplanner.team/stops/3408", "https://mivb.openplanner.team/stops/3454"], ["https://mivb.openplanner.team/stops/5405", "https://mivb.openplanner.team/stops/5470"], ["https://mivb.openplanner.team/stops/2816", "https://mivb.openplanner.team/stops/2854"], ["https://mivb.openplanner.team/stops/2971", "https://mivb.openplanner.team/stops/2971F"], ["https://mivb.openplanner.team/stops/3231", "https://mivb.openplanner.team/stops/3281"], ["https://mivb.openplanner.team/stops/2303", "https://mivb.openplanner.team/stops/0270114"], ["https://mivb.openplanner.team/stops/6313", "https://mivb.openplanner.team/stops/0320343"], ["https://mivb.openplanner.team/stops/1326", "https://mivb.openplanner.team/stops/2257G"], ["https://mivb.openplanner.team/stops/1144", "https://mivb.openplanner.team/stops/0020616"], ["https://mivb.openplanner.team/stops/1327", "https://mivb.openplanner.team/stops/2220"], ["https://mivb.openplanner.team/stops/1381", "https://mivb.openplanner.team/stops/9600B"], ["https://mivb.openplanner.team/stops/2109B", "https://mivb.openplanner.team/stops/2110B"], ["https://mivb.openplanner.team/stops/3481", "https://mivb.openplanner.team/stops/3510"], ["https://mivb.openplanner.team/stops/2960", "https://mivb.openplanner.team/stops/2960F"], ["https://mivb.openplanner.team/stops/8382", "https://mivb.openplanner.team/stops/8732"], ["https://mivb.openplanner.team/stops/6012G", "https://mivb.openplanner.team/stops/6066G"], ["https://mivb.openplanner.team/stops/1953", "https://mivb.openplanner.team/stops/2099"], ["https://mivb.openplanner.team/stops/2833", "https://mivb.openplanner.team/stops/0440149"], ["https://mivb.openplanner.team/stops/5024", "https://mivb.openplanner.team/stops/5059"], ["https://mivb.openplanner.team/stops/1821", "https://mivb.openplanner.team/stops/1854"], ["https://mivb.openplanner.team/stops/1781", "https://mivb.openplanner.team/stops/2279"], ["https://mivb.openplanner.team/stops/2217", "https://mivb.openplanner.team/stops/3852"], ["https://mivb.openplanner.team/stops/0660166", "https://mivb.openplanner.team/stops/6109"], ["https://mivb.openplanner.team/stops/3611F", "https://mivb.openplanner.team/stops/7650110"], ["https://mivb.openplanner.team/stops/6410", "https://mivb.openplanner.team/stops/6412F"], ["https://mivb.openplanner.team/stops/2512", "https://mivb.openplanner.team/stops/2566B"], ["https://mivb.openplanner.team/stops/8011", "https://mivb.openplanner.team/stops/0010115"], ["https://mivb.openplanner.team/stops/2221", "https://mivb.openplanner.team/stops/6442"], ["https://mivb.openplanner.team/stops/2038", "https://mivb.openplanner.team/stops/2039"], ["https://mivb.openplanner.team/stops/6804F", "https://mivb.openplanner.team/stops/6865F"], ["https://mivb.openplanner.team/stops/2728", "https://mivb.openplanner.team/stops/5601"], ["https://mivb.openplanner.team/stops/2976", "https://mivb.openplanner.team/stops/5355"], ["https://mivb.openplanner.team/stops/1121", "https://mivb.openplanner.team/stops/9753"], ["https://mivb.openplanner.team/stops/1466", "https://mivb.openplanner.team/stops/9047"], ["https://mivb.openplanner.team/stops/2579", "https://mivb.openplanner.team/stops/4600"], ["https://mivb.openplanner.team/stops/5530", "https://mivb.openplanner.team/stops/0160230"], ["https://mivb.openplanner.team/stops/8742", "https://mivb.openplanner.team/stops/7740101"], ["https://mivb.openplanner.team/stops/3810", "https://mivb.openplanner.team/stops/3850"], ["https://mivb.openplanner.team/stops/1111", "https://mivb.openplanner.team/stops/2569"], ["https://mivb.openplanner.team/stops/1776", "https://mivb.openplanner.team/stops/0300245"], ["https://mivb.openplanner.team/stops/1145", "https://mivb.openplanner.team/stops/3253"], ["https://mivb.openplanner.team/stops/1861", "https://mivb.openplanner.team/stops/5561F"], ["https://mivb.openplanner.team/stops/1983", "https://mivb.openplanner.team/stops/3620B"], ["https://mivb.openplanner.team/stops/1821", "https://mivb.openplanner.team/stops/5510"], ["https://mivb.openplanner.team/stops/3532", "https://mivb.openplanner.team/stops/0310444"], ["https://mivb.openplanner.team/stops/1571", "https://mivb.openplanner.team/stops/0410446"], ["https://mivb.openplanner.team/stops/5102F", "https://mivb.openplanner.team/stops/5105"], ["https://mivb.openplanner.team/stops/1231", "https://mivb.openplanner.team/stops/5119"], ["https://mivb.openplanner.team/stops/8141", "https://mivb.openplanner.team/stops/8142"], ["https://mivb.openplanner.team/stops/3354", "https://mivb.openplanner.team/stops/8411"], ["https://mivb.openplanner.team/stops/5658", "https://mivb.openplanner.team/stops/5659"], ["https://mivb.openplanner.team/stops/5813", "https://mivb.openplanner.team/stops/5856F"], ["https://mivb.openplanner.team/stops/2365", "https://mivb.openplanner.team/stops/2827"], ["https://mivb.openplanner.team/stops/2209", "https://mivb.openplanner.team/stops/0440249"], ["https://mivb.openplanner.team/stops/1456", "https://mivb.openplanner.team/stops/6476"], ["https://mivb.openplanner.team/stops/2250", "https://mivb.openplanner.team/stops/3216"], ["https://mivb.openplanner.team/stops/3713", "https://mivb.openplanner.team/stops/3756"], ["https://mivb.openplanner.team/stops/1928", "https://mivb.openplanner.team/stops/1928F"], ["https://mivb.openplanner.team/stops/3105", "https://mivb.openplanner.team/stops/3171"], ["https://mivb.openplanner.team/stops/3158", "https://mivb.openplanner.team/stops/3921"], ["https://mivb.openplanner.team/stops/2217", "https://mivb.openplanner.team/stops/2217F"], ["https://mivb.openplanner.team/stops/2928", "https://mivb.openplanner.team/stops/3506"], ["https://mivb.openplanner.team/stops/5512", "https://mivb.openplanner.team/stops/6475F"], ["https://mivb.openplanner.team/stops/9702", "https://mivb.openplanner.team/stops/9726"], ["https://mivb.openplanner.team/stops/4109", "https://mivb.openplanner.team/stops/4115"], ["https://mivb.openplanner.team/stops/1193", "https://mivb.openplanner.team/stops/5103"], ["https://mivb.openplanner.team/stops/1482", "https://mivb.openplanner.team/stops/2373"], ["https://mivb.openplanner.team/stops/4014", "https://mivb.openplanner.team/stops/7740101"], ["https://mivb.openplanner.team/stops/2329", "https://mivb.openplanner.team/stops/3064"], ["https://mivb.openplanner.team/stops/2050", "https://mivb.openplanner.team/stops/5427"], ["https://mivb.openplanner.team/stops/1018", "https://mivb.openplanner.team/stops/9801"], ["https://mivb.openplanner.team/stops/5225F", "https://mivb.openplanner.team/stops/5226F"], ["https://mivb.openplanner.team/stops/0110125", "https://mivb.openplanner.team/stops/0110225"], ["https://mivb.openplanner.team/stops/3763", "https://mivb.openplanner.team/stops/4555"], ["https://mivb.openplanner.team/stops/5416", "https://mivb.openplanner.team/stops/5451F"], ["https://mivb.openplanner.team/stops/2076", "https://mivb.openplanner.team/stops/5419"], ["https://mivb.openplanner.team/stops/1716", "https://mivb.openplanner.team/stops/1760"], ["https://mivb.openplanner.team/stops/4230", "https://mivb.openplanner.team/stops/8813"], ["https://mivb.openplanner.team/stops/1108", "https://mivb.openplanner.team/stops/4006G"], ["https://mivb.openplanner.team/stops/4156", "https://mivb.openplanner.team/stops/5172F"], ["https://mivb.openplanner.team/stops/2247", "https://mivb.openplanner.team/stops/3266"], ["https://mivb.openplanner.team/stops/4129", "https://mivb.openplanner.team/stops/7790456"], ["https://mivb.openplanner.team/stops/5910", "https://mivb.openplanner.team/stops/5959"], ["https://mivb.openplanner.team/stops/1208", "https://mivb.openplanner.team/stops/7710204"], ["https://mivb.openplanner.team/stops/2237", "https://mivb.openplanner.team/stops/6179"], ["https://mivb.openplanner.team/stops/1776", "https://mivb.openplanner.team/stops/3620B"], ["https://mivb.openplanner.team/stops/8131", "https://mivb.openplanner.team/stops/27"], ["https://mivb.openplanner.team/stops/2122", "https://mivb.openplanner.team/stops/5021"], ["https://mivb.openplanner.team/stops/1875", "https://mivb.openplanner.team/stops/5560"], ["https://mivb.openplanner.team/stops/2809", "https://mivb.openplanner.team/stops/4232"], ["https://mivb.openplanner.team/stops/1320", "https://mivb.openplanner.team/stops/3463"], ["https://mivb.openplanner.team/stops/3549", "https://mivb.openplanner.team/stops/4407"], ["https://mivb.openplanner.team/stops/3171", "https://mivb.openplanner.team/stops/5958C"], ["https://mivb.openplanner.team/stops/4126", "https://mivb.openplanner.team/stops/4130F"], ["https://mivb.openplanner.team/stops/5042", "https://mivb.openplanner.team/stops/5048"], ["https://mivb.openplanner.team/stops/2977", "https://mivb.openplanner.team/stops/3454"], ["https://mivb.openplanner.team/stops/1129", "https://mivb.openplanner.team/stops/6354"], ["https://mivb.openplanner.team/stops/3017", "https://mivb.openplanner.team/stops/3328"], ["https://mivb.openplanner.team/stops/0040518", "https://mivb.openplanner.team/stops/8401"], ["https://mivb.openplanner.team/stops/1515", "https://mivb.openplanner.team/stops/1565"], ["https://mivb.openplanner.team/stops/1614B", "https://mivb.openplanner.team/stops/1615"], ["https://mivb.openplanner.team/stops/3106", "https://mivb.openplanner.team/stops/6457F"], ["https://mivb.openplanner.team/stops/5761", "https://mivb.openplanner.team/stops/5770F"], ["https://mivb.openplanner.team/stops/2760B", "https://mivb.openplanner.team/stops/5458"], ["https://mivb.openplanner.team/stops/5812", "https://mivb.openplanner.team/stops/5813"], ["https://mivb.openplanner.team/stops/5074", "https://mivb.openplanner.team/stops/7770258"], ["https://mivb.openplanner.team/stops/3609F", "https://mivb.openplanner.team/stops/3712"], ["https://mivb.openplanner.team/stops/5610", "https://mivb.openplanner.team/stops/5611"], ["https://mivb.openplanner.team/stops/2608", "https://mivb.openplanner.team/stops/2665"], ["https://mivb.openplanner.team/stops/1932", "https://mivb.openplanner.team/stops/1957B"], ["https://mivb.openplanner.team/stops/2080", "https://mivb.openplanner.team/stops/2115"], ["https://mivb.openplanner.team/stops/8121", "https://mivb.openplanner.team/stops/0120126"], ["https://mivb.openplanner.team/stops/3214", "https://mivb.openplanner.team/stops/5363"], ["https://mivb.openplanner.team/stops/1857", "https://mivb.openplanner.team/stops/5556"], ["https://mivb.openplanner.team/stops/1620B", "https://mivb.openplanner.team/stops/1629"], ["https://mivb.openplanner.team/stops/2514", "https://mivb.openplanner.team/stops/4653"], ["https://mivb.openplanner.team/stops/4252", "https://mivb.openplanner.team/stops/6097B"], ["https://mivb.openplanner.team/stops/1912", "https://mivb.openplanner.team/stops/5467"], ["https://mivb.openplanner.team/stops/1511", "https://mivb.openplanner.team/stops/1567"], ["https://mivb.openplanner.team/stops/2337F", "https://mivb.openplanner.team/stops/5740"], ["https://mivb.openplanner.team/stops/1049F", "https://mivb.openplanner.team/stops/5255F"], ["https://mivb.openplanner.team/stops/2608", "https://mivb.openplanner.team/stops/2939B"], ["https://mivb.openplanner.team/stops/1493", "https://mivb.openplanner.team/stops/7670208"], ["https://mivb.openplanner.team/stops/3236", "https://mivb.openplanner.team/stops/4055G"], ["https://mivb.openplanner.team/stops/1712", "https://mivb.openplanner.team/stops/3953"], ["https://mivb.openplanner.team/stops/4365", "https://mivb.openplanner.team/stops/6156F"], ["https://mivb.openplanner.team/stops/8711", "https://mivb.openplanner.team/stops/7710104"], ["https://mivb.openplanner.team/stops/3214", "https://mivb.openplanner.team/stops/5041B"], ["https://mivb.openplanner.team/stops/4124", "https://mivb.openplanner.team/stops/7790156"], ["https://mivb.openplanner.team/stops/7501", "https://mivb.openplanner.team/stops/9600B"], ["https://mivb.openplanner.team/stops/3331", "https://mivb.openplanner.team/stops/6356F"], ["https://mivb.openplanner.team/stops/0440449", "https://mivb.openplanner.team/stops/0440549"], ["https://mivb.openplanner.team/stops/1758B", "https://mivb.openplanner.team/stops/2291B"], ["https://mivb.openplanner.team/stops/1881", "https://mivb.openplanner.team/stops/1981"], ["https://mivb.openplanner.team/stops/1326", "https://mivb.openplanner.team/stops/6858G"], ["https://mivb.openplanner.team/stops/3132", "https://mivb.openplanner.team/stops/3179"], ["https://mivb.openplanner.team/stops/0090123", "https://mivb.openplanner.team/stops/0090323"], ["https://mivb.openplanner.team/stops/2285G", "https://mivb.openplanner.team/stops/6463F"], ["https://mivb.openplanner.team/stops/2877", "https://mivb.openplanner.team/stops/6501"], ["https://mivb.openplanner.team/stops/5529", "https://mivb.openplanner.team/stops/8161"], ["https://mivb.openplanner.team/stops/8472", "https://mivb.openplanner.team/stops/8764"], ["https://mivb.openplanner.team/stops/5067", "https://mivb.openplanner.team/stops/5405"], ["https://mivb.openplanner.team/stops/3403", "https://mivb.openplanner.team/stops/3459"], ["https://mivb.openplanner.team/stops/0020316", "https://mivb.openplanner.team/stops/0020416"], ["https://mivb.openplanner.team/stops/1117", "https://mivb.openplanner.team/stops/1178"], ["https://mivb.openplanner.team/stops/3625B", "https://mivb.openplanner.team/stops/6427F"], ["https://mivb.openplanner.team/stops/1910", "https://mivb.openplanner.team/stops/5611"], ["https://mivb.openplanner.team/stops/4500", "https://mivb.openplanner.team/stops/4558"], ["https://mivb.openplanner.team/stops/6209", "https://mivb.openplanner.team/stops/6253"], ["https://mivb.openplanner.team/stops/3279", "https://mivb.openplanner.team/stops/5038"], ["https://mivb.openplanner.team/stops/1578", "https://mivb.openplanner.team/stops/8112"], ["https://mivb.openplanner.team/stops/5521", "https://mivb.openplanner.team/stops/9561"], ["https://mivb.openplanner.team/stops/2545", "https://mivb.openplanner.team/stops/2809"], ["https://mivb.openplanner.team/stops/5802", "https://mivb.openplanner.team/stops/7268"], ["https://mivb.openplanner.team/stops/1237", "https://mivb.openplanner.team/stops/1242"], ["https://mivb.openplanner.team/stops/6103", "https://mivb.openplanner.team/stops/6178"], ["https://mivb.openplanner.team/stops/2009", "https://mivb.openplanner.team/stops/5269F"], ["https://mivb.openplanner.team/stops/5501", "https://mivb.openplanner.team/stops/0080222"], ["https://mivb.openplanner.team/stops/5060", "https://mivb.openplanner.team/stops/5857"], ["https://mivb.openplanner.team/stops/3132", "https://mivb.openplanner.team/stops/5041B"], ["https://mivb.openplanner.team/stops/2452", "https://mivb.openplanner.team/stops/5916F"], ["https://mivb.openplanner.team/stops/2902", "https://mivb.openplanner.team/stops/5362F"], ["https://mivb.openplanner.team/stops/3502", "https://mivb.openplanner.team/stops/0020516"], ["https://mivb.openplanner.team/stops/1377", "https://mivb.openplanner.team/stops/1387"], ["https://mivb.openplanner.team/stops/0601162", "https://mivb.openplanner.team/stops/0606"], ["https://mivb.openplanner.team/stops/1782", "https://mivb.openplanner.team/stops/5077"], ["https://mivb.openplanner.team/stops/8361", "https://mivb.openplanner.team/stops/39"], ["https://mivb.openplanner.team/stops/1614B", "https://mivb.openplanner.team/stops/1669"], ["https://mivb.openplanner.team/stops/1668", "https://mivb.openplanner.team/stops/9578"], ["https://mivb.openplanner.team/stops/4254B", "https://mivb.openplanner.team/stops/4258"], ["https://mivb.openplanner.team/stops/2765", "https://mivb.openplanner.team/stops/2770"], ["https://mivb.openplanner.team/stops/0040318", "https://mivb.openplanner.team/stops/0410146"], ["https://mivb.openplanner.team/stops/1756B", "https://mivb.openplanner.team/stops/1813"], ["https://mivb.openplanner.team/stops/2912", "https://mivb.openplanner.team/stops/2924"], ["https://mivb.openplanner.team/stops/3624B", "https://mivb.openplanner.team/stops/5017"], ["https://mivb.openplanner.team/stops/2301", "https://mivb.openplanner.team/stops/2838"], ["https://mivb.openplanner.team/stops/1788", "https://mivb.openplanner.team/stops/5295"], ["https://mivb.openplanner.team/stops/1841", "https://mivb.openplanner.team/stops/5508"], ["https://mivb.openplanner.team/stops/5801", "https://mivb.openplanner.team/stops/5872"], ["https://mivb.openplanner.team/stops/6357", "https://mivb.openplanner.team/stops/6437F"], ["https://mivb.openplanner.team/stops/2299", "https://mivb.openplanner.team/stops/5771"], ["https://mivb.openplanner.team/stops/4058F", "https://mivb.openplanner.team/stops/4162"], ["https://mivb.openplanner.team/stops/0600762", "https://mivb.openplanner.team/stops/62"], ["https://mivb.openplanner.team/stops/5406", "https://mivb.openplanner.team/stops/7544"], ["https://mivb.openplanner.team/stops/8834", "https://mivb.openplanner.team/stops/9707"], ["https://mivb.openplanner.team/stops/3460", "https://mivb.openplanner.team/stops/4558"], ["https://mivb.openplanner.team/stops/1835", "https://mivb.openplanner.team/stops/5655"], ["https://mivb.openplanner.team/stops/2900", "https://mivb.openplanner.team/stops/2903F"], ["https://mivb.openplanner.team/stops/5603", "https://mivb.openplanner.team/stops/5604"], ["https://mivb.openplanner.team/stops/1920", "https://mivb.openplanner.team/stops/2131"], ["https://mivb.openplanner.team/stops/1526", "https://mivb.openplanner.team/stops/1551"], ["https://mivb.openplanner.team/stops/4506", "https://mivb.openplanner.team/stops/5923"], ["https://mivb.openplanner.team/stops/1406", "https://mivb.openplanner.team/stops/1460"], ["https://mivb.openplanner.team/stops/2505", "https://mivb.openplanner.team/stops/2586"], ["https://mivb.openplanner.team/stops/0820170", "https://mivb.openplanner.team/stops/1460"], ["https://mivb.openplanner.team/stops/0470351", "https://mivb.openplanner.team/stops/0470459"], ["https://mivb.openplanner.team/stops/2824", "https://mivb.openplanner.team/stops/2875"], ["https://mivb.openplanner.team/stops/3712", "https://mivb.openplanner.team/stops/3752"], ["https://mivb.openplanner.team/stops/2608F", "https://mivb.openplanner.team/stops/5721G"], ["https://mivb.openplanner.team/stops/7700105", "https://mivb.openplanner.team/stops/8702"], ["https://mivb.openplanner.team/stops/9649", "https://mivb.openplanner.team/stops/9651"], ["https://mivb.openplanner.team/stops/3176", "https://mivb.openplanner.team/stops/7271"], ["https://mivb.openplanner.team/stops/4340", "https://mivb.openplanner.team/stops/5423"], ["https://mivb.openplanner.team/stops/1370", "https://mivb.openplanner.team/stops/40"], ["https://mivb.openplanner.team/stops/0050219", "https://mivb.openplanner.team/stops/0050519"], ["https://mivb.openplanner.team/stops/4958F", "https://mivb.openplanner.team/stops/7800155"], ["https://mivb.openplanner.team/stops/0610363", "https://mivb.openplanner.team/stops/0610463"], ["https://mivb.openplanner.team/stops/2026", "https://mivb.openplanner.team/stops/4408"], ["https://mivb.openplanner.team/stops/1321", "https://mivb.openplanner.team/stops/3288"], ["https://mivb.openplanner.team/stops/5008F", "https://mivb.openplanner.team/stops/7770258"], ["https://mivb.openplanner.team/stops/1242", "https://mivb.openplanner.team/stops/6648"], ["https://mivb.openplanner.team/stops/4341", "https://mivb.openplanner.team/stops/4342"], ["https://mivb.openplanner.team/stops/1150", "https://mivb.openplanner.team/stops/0110125"], ["https://mivb.openplanner.team/stops/1099", "https://mivb.openplanner.team/stops/4004"], ["https://mivb.openplanner.team/stops/1179", "https://mivb.openplanner.team/stops/1793"], ["https://mivb.openplanner.team/stops/9656", "https://mivb.openplanner.team/stops/9677"], ["https://mivb.openplanner.team/stops/5414F", "https://mivb.openplanner.team/stops/5458"], ["https://mivb.openplanner.team/stops/6310F", "https://mivb.openplanner.team/stops/6355"], ["https://mivb.openplanner.team/stops/8421", "https://mivb.openplanner.team/stops/47"], ["https://mivb.openplanner.team/stops/3920", "https://mivb.openplanner.team/stops/3962"], ["https://mivb.openplanner.team/stops/1326", "https://mivb.openplanner.team/stops/3805"], ["https://mivb.openplanner.team/stops/5467", "https://mivb.openplanner.team/stops/6120"], ["https://mivb.openplanner.team/stops/5087", "https://mivb.openplanner.team/stops/5701"], ["https://mivb.openplanner.team/stops/6103", "https://mivb.openplanner.team/stops/6123"], ["https://mivb.openplanner.team/stops/0040418", "https://mivb.openplanner.team/stops/8401"], ["https://mivb.openplanner.team/stops/1968", "https://mivb.openplanner.team/stops/2124"], ["https://mivb.openplanner.team/stops/4022", "https://mivb.openplanner.team/stops/8743"], ["https://mivb.openplanner.team/stops/3313", "https://mivb.openplanner.team/stops/6436"], ["https://mivb.openplanner.team/stops/6418", "https://mivb.openplanner.team/stops/6418F"], ["https://mivb.openplanner.team/stops/1141", "https://mivb.openplanner.team/stops/1559"], ["https://mivb.openplanner.team/stops/3410", "https://mivb.openplanner.team/stops/5350G"], ["https://mivb.openplanner.team/stops/2226", "https://mivb.openplanner.team/stops/2252"], ["https://mivb.openplanner.team/stops/6754", "https://mivb.openplanner.team/stops/6755"], ["https://mivb.openplanner.team/stops/1854", "https://mivb.openplanner.team/stops/5554"], ["https://mivb.openplanner.team/stops/0821", "https://mivb.openplanner.team/stops/0820170"], ["https://mivb.openplanner.team/stops/2940F", "https://mivb.openplanner.team/stops/5404"], ["https://mivb.openplanner.team/stops/1090", "https://mivb.openplanner.team/stops/2360"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/9551"], ["https://mivb.openplanner.team/stops/1810", "https://mivb.openplanner.team/stops/0220333"], ["https://mivb.openplanner.team/stops/2262", "https://mivb.openplanner.team/stops/6608G"], ["https://mivb.openplanner.team/stops/2830", "https://mivb.openplanner.team/stops/0431148"], ["https://mivb.openplanner.team/stops/1182", "https://mivb.openplanner.team/stops/2569"], ["https://mivb.openplanner.team/stops/1043", "https://mivb.openplanner.team/stops/2084"], ["https://mivb.openplanner.team/stops/2661", "https://mivb.openplanner.team/stops/5963"], ["https://mivb.openplanner.team/stops/1675F", "https://mivb.openplanner.team/stops/1747"], ["https://mivb.openplanner.team/stops/2317", "https://mivb.openplanner.team/stops/3003"], ["https://mivb.openplanner.team/stops/1462", "https://mivb.openplanner.team/stops/1516"], ["https://mivb.openplanner.team/stops/1204", "https://mivb.openplanner.team/stops/1260"], ["https://mivb.openplanner.team/stops/2409", "https://mivb.openplanner.team/stops/5810"], ["https://mivb.openplanner.team/stops/0670267", "https://mivb.openplanner.team/stops/0707"], ["https://mivb.openplanner.team/stops/9702", "https://mivb.openplanner.team/stops/9703"], ["https://mivb.openplanner.team/stops/2714", "https://mivb.openplanner.team/stops/2763"], ["https://mivb.openplanner.team/stops/1165", "https://mivb.openplanner.team/stops/6312"], ["https://mivb.openplanner.team/stops/2970", "https://mivb.openplanner.team/stops/0050319"], ["https://mivb.openplanner.team/stops/2076", "https://mivb.openplanner.team/stops/4311"], ["https://mivb.openplanner.team/stops/7770158", "https://mivb.openplanner.team/stops/58"], ["https://mivb.openplanner.team/stops/4293", "https://mivb.openplanner.team/stops/4294"], ["https://mivb.openplanner.team/stops/3171", "https://mivb.openplanner.team/stops/3172"], ["https://mivb.openplanner.team/stops/8351", "https://mivb.openplanner.team/stops/0350740"], ["https://mivb.openplanner.team/stops/2586", "https://mivb.openplanner.team/stops/6869G"], ["https://mivb.openplanner.team/stops/0516", "https://mivb.openplanner.team/stops/0430948"], ["https://mivb.openplanner.team/stops/0089", "https://mivb.openplanner.team/stops/0080522"], ["https://mivb.openplanner.team/stops/4127", "https://mivb.openplanner.team/stops/6097B"], ["https://mivb.openplanner.team/stops/4341", "https://mivb.openplanner.team/stops/5421"], ["https://mivb.openplanner.team/stops/1816", "https://mivb.openplanner.team/stops/5271F"], ["https://mivb.openplanner.team/stops/2079", "https://mivb.openplanner.team/stops/4359"], ["https://mivb.openplanner.team/stops/1066", "https://mivb.openplanner.team/stops/1368"], ["https://mivb.openplanner.team/stops/1350", "https://mivb.openplanner.team/stops/5071"], ["https://mivb.openplanner.team/stops/9552", "https://mivb.openplanner.team/stops/9557"], ["https://mivb.openplanner.team/stops/6172", "https://mivb.openplanner.team/stops/7790456"], ["https://mivb.openplanner.team/stops/1641", "https://mivb.openplanner.team/stops/2028"], ["https://mivb.openplanner.team/stops/2997", "https://mivb.openplanner.team/stops/3467B"], ["https://mivb.openplanner.team/stops/1133", "https://mivb.openplanner.team/stops/0060120"], ["https://mivb.openplanner.team/stops/1566", "https://mivb.openplanner.team/stops/2918"], ["https://mivb.openplanner.team/stops/4600", "https://mivb.openplanner.team/stops/4655"], ["https://mivb.openplanner.team/stops/1829", "https://mivb.openplanner.team/stops/1830"], ["https://mivb.openplanner.team/stops/2362B", "https://mivb.openplanner.team/stops/3059"], ["https://mivb.openplanner.team/stops/5759F", "https://mivb.openplanner.team/stops/5770F"], ["https://mivb.openplanner.team/stops/5024", "https://mivb.openplanner.team/stops/5812"], ["https://mivb.openplanner.team/stops/5407", "https://mivb.openplanner.team/stops/5462F"], ["https://mivb.openplanner.team/stops/1806", "https://mivb.openplanner.team/stops/1869"], ["https://mivb.openplanner.team/stops/1766", "https://mivb.openplanner.team/stops/2574"], ["https://mivb.openplanner.team/stops/2147B", "https://mivb.openplanner.team/stops/5053G"], ["https://mivb.openplanner.team/stops/4010", "https://mivb.openplanner.team/stops/4270F"], ["https://mivb.openplanner.team/stops/5920H", "https://mivb.openplanner.team/stops/5925"], ["https://mivb.openplanner.team/stops/1926B", "https://mivb.openplanner.team/stops/2415"], ["https://mivb.openplanner.team/stops/5024", "https://mivb.openplanner.team/stops/5060"], ["https://mivb.openplanner.team/stops/1781", "https://mivb.openplanner.team/stops/2278"], ["https://mivb.openplanner.team/stops/9776", "https://mivb.openplanner.team/stops/9777"], ["https://mivb.openplanner.team/stops/1179", "https://mivb.openplanner.team/stops/0470351"], ["https://mivb.openplanner.team/stops/3125", "https://mivb.openplanner.team/stops/4304"], ["https://mivb.openplanner.team/stops/2523", "https://mivb.openplanner.team/stops/2551"], ["https://mivb.openplanner.team/stops/5120", "https://mivb.openplanner.team/stops/5151"], ["https://mivb.openplanner.team/stops/1538B", "https://mivb.openplanner.team/stops/3210B"], ["https://mivb.openplanner.team/stops/8731", "https://mivb.openplanner.team/stops/7730502"], ["https://mivb.openplanner.team/stops/6410", "https://mivb.openplanner.team/stops/6411"], ["https://mivb.openplanner.team/stops/2512", "https://mivb.openplanner.team/stops/2567"], ["https://mivb.openplanner.team/stops/1971", "https://mivb.openplanner.team/stops/2714"], ["https://mivb.openplanner.team/stops/4014", "https://mivb.openplanner.team/stops/4022"], ["https://mivb.openplanner.team/stops/1560", "https://mivb.openplanner.team/stops/3906"], ["https://mivb.openplanner.team/stops/5013B", "https://mivb.openplanner.team/stops/5072"], ["https://mivb.openplanner.team/stops/9728", "https://mivb.openplanner.team/stops/9784B"], ["https://mivb.openplanner.team/stops/1928F", "https://mivb.openplanner.team/stops/5917F"], ["https://mivb.openplanner.team/stops/3810", "https://mivb.openplanner.team/stops/3851"], ["https://mivb.openplanner.team/stops/3222", "https://mivb.openplanner.team/stops/6604F"], ["https://mivb.openplanner.team/stops/1870", "https://mivb.openplanner.team/stops/5480"], ["https://mivb.openplanner.team/stops/3514", "https://mivb.openplanner.team/stops/4360"], ["https://mivb.openplanner.team/stops/0529", "https://mivb.openplanner.team/stops/1901"], ["https://mivb.openplanner.team/stops/2363", "https://mivb.openplanner.team/stops/2822"], ["https://mivb.openplanner.team/stops/2502", "https://mivb.openplanner.team/stops/2503"], ["https://mivb.openplanner.team/stops/2950", "https://mivb.openplanner.team/stops/6209"], ["https://mivb.openplanner.team/stops/1983", "https://mivb.openplanner.team/stops/3623B"], ["https://mivb.openplanner.team/stops/0670167", "https://mivb.openplanner.team/stops/2957"], ["https://mivb.openplanner.team/stops/1195", "https://mivb.openplanner.team/stops/5103"], ["https://mivb.openplanner.team/stops/2805F", "https://mivb.openplanner.team/stops/5080"], ["https://mivb.openplanner.team/stops/8361", "https://mivb.openplanner.team/stops/0360139"], ["https://mivb.openplanner.team/stops/2226", "https://mivb.openplanner.team/stops/2550"], ["https://mivb.openplanner.team/stops/2110B", "https://mivb.openplanner.team/stops/5032B"], ["https://mivb.openplanner.team/stops/2814", "https://mivb.openplanner.team/stops/2855"], ["https://mivb.openplanner.team/stops/5076F", "https://mivb.openplanner.team/stops/7770258"], ["https://mivb.openplanner.team/stops/5284F", "https://mivb.openplanner.team/stops/5427"], ["https://mivb.openplanner.team/stops/4003G", "https://mivb.openplanner.team/stops/4162"], ["https://mivb.openplanner.team/stops/1019", "https://mivb.openplanner.team/stops/4217"], ["https://mivb.openplanner.team/stops/1352", "https://mivb.openplanner.team/stops/3570"], ["https://mivb.openplanner.team/stops/1375", "https://mivb.openplanner.team/stops/1615"], ["https://mivb.openplanner.team/stops/1085", "https://mivb.openplanner.team/stops/1239"], ["https://mivb.openplanner.team/stops/1289", "https://mivb.openplanner.team/stops/7830152"], ["https://mivb.openplanner.team/stops/6014", "https://mivb.openplanner.team/stops/9023"], ["https://mivb.openplanner.team/stops/1382", "https://mivb.openplanner.team/stops/0120126"], ["https://mivb.openplanner.team/stops/1482", "https://mivb.openplanner.team/stops/2375"], ["https://mivb.openplanner.team/stops/4014", "https://mivb.openplanner.team/stops/7740201"], ["https://mivb.openplanner.team/stops/2950", "https://mivb.openplanner.team/stops/2965"], ["https://mivb.openplanner.team/stops/4005F", "https://mivb.openplanner.team/stops/4658"], ["https://mivb.openplanner.team/stops/2415", "https://mivb.openplanner.team/stops/5815F"], ["https://mivb.openplanner.team/stops/2397", "https://mivb.openplanner.team/stops/5258"], ["https://mivb.openplanner.team/stops/5299", "https://mivb.openplanner.team/stops/5362"], ["https://mivb.openplanner.team/stops/2553", "https://mivb.openplanner.team/stops/3858"], ["https://mivb.openplanner.team/stops/8813", "https://mivb.openplanner.team/stops/7810154"], ["https://mivb.openplanner.team/stops/6021", "https://mivb.openplanner.team/stops/6190"], ["https://mivb.openplanner.team/stops/0801", "https://mivb.openplanner.team/stops/0900468"], ["https://mivb.openplanner.team/stops/4265", "https://mivb.openplanner.team/stops/53"], ["https://mivb.openplanner.team/stops/2728", "https://mivb.openplanner.team/stops/5270F"], ["https://mivb.openplanner.team/stops/4661B", "https://mivb.openplanner.team/stops/5102F"], ["https://mivb.openplanner.team/stops/2110B", "https://mivb.openplanner.team/stops/2138B"], ["https://mivb.openplanner.team/stops/5910", "https://mivb.openplanner.team/stops/5961"], ["https://mivb.openplanner.team/stops/1597", "https://mivb.openplanner.team/stops/0230234"], ["https://mivb.openplanner.team/stops/0080122", "https://mivb.openplanner.team/stops/0080522"], ["https://mivb.openplanner.team/stops/1776", "https://mivb.openplanner.team/stops/3623B"], ["https://mivb.openplanner.team/stops/3530", "https://mivb.openplanner.team/stops/5601"], ["https://mivb.openplanner.team/stops/1710", "https://mivb.openplanner.team/stops/1765"], ["https://mivb.openplanner.team/stops/4058F", "https://mivb.openplanner.team/stops/5105"], ["https://mivb.openplanner.team/stops/4405", "https://mivb.openplanner.team/stops/4452"], ["https://mivb.openplanner.team/stops/2568", "https://mivb.openplanner.team/stops/4054G"], ["https://mivb.openplanner.team/stops/3506", "https://mivb.openplanner.team/stops/7529"], ["https://mivb.openplanner.team/stops/1229", "https://mivb.openplanner.team/stops/5120"], ["https://mivb.openplanner.team/stops/1410", "https://mivb.openplanner.team/stops/0110325"], ["https://mivb.openplanner.team/stops/4305", "https://mivb.openplanner.team/stops/5261"], ["https://mivb.openplanner.team/stops/9626", "https://mivb.openplanner.team/stops/9631"], ["https://mivb.openplanner.team/stops/1833B", "https://mivb.openplanner.team/stops/8131"], ["https://mivb.openplanner.team/stops/3129", "https://mivb.openplanner.team/stops/3204"], ["https://mivb.openplanner.team/stops/0901", "https://mivb.openplanner.team/stops/0900168"], ["https://mivb.openplanner.team/stops/3702", "https://mivb.openplanner.team/stops/5046"], ["https://mivb.openplanner.team/stops/9651", "https://mivb.openplanner.team/stops/9660"], ["https://mivb.openplanner.team/stops/5308", "https://mivb.openplanner.team/stops/5354H"], ["https://mivb.openplanner.team/stops/1094", "https://mivb.openplanner.team/stops/4169"], ["https://mivb.openplanner.team/stops/5812", "https://mivb.openplanner.team/stops/5812F"], ["https://mivb.openplanner.team/stops/0536", "https://mivb.openplanner.team/stops/1900"], ["https://mivb.openplanner.team/stops/1727", "https://mivb.openplanner.team/stops/4115"], ["https://mivb.openplanner.team/stops/2903F", "https://mivb.openplanner.team/stops/2910"], ["https://mivb.openplanner.team/stops/9754B", "https://mivb.openplanner.team/stops/9788"], ["https://mivb.openplanner.team/stops/5230F", "https://mivb.openplanner.team/stops/0120326"], ["https://mivb.openplanner.team/stops/2856B", "https://mivb.openplanner.team/stops/5776"], ["https://mivb.openplanner.team/stops/0821", "https://mivb.openplanner.team/stops/1406"], ["https://mivb.openplanner.team/stops/0471", "https://mivb.openplanner.team/stops/0472"], ["https://mivb.openplanner.team/stops/3361", "https://mivb.openplanner.team/stops/3425"], ["https://mivb.openplanner.team/stops/2917", "https://mivb.openplanner.team/stops/2975"], ["https://mivb.openplanner.team/stops/3910", "https://mivb.openplanner.team/stops/8112"], ["https://mivb.openplanner.team/stops/3521", "https://mivb.openplanner.team/stops/3546"], ["https://mivb.openplanner.team/stops/1498", "https://mivb.openplanner.team/stops/2226"], ["https://mivb.openplanner.team/stops/1303", "https://mivb.openplanner.team/stops/6805F"], ["https://mivb.openplanner.team/stops/9627", "https://mivb.openplanner.team/stops/9788"], ["https://mivb.openplanner.team/stops/2863", "https://mivb.openplanner.team/stops/6172"], ["https://mivb.openplanner.team/stops/1620B", "https://mivb.openplanner.team/stops/1631"], ["https://mivb.openplanner.team/stops/5766", "https://mivb.openplanner.team/stops/6461"], ["https://mivb.openplanner.team/stops/4005F", "https://mivb.openplanner.team/stops/4066F"], ["https://mivb.openplanner.team/stops/2544", "https://mivb.openplanner.team/stops/2672F"], ["https://mivb.openplanner.team/stops/1586", "https://mivb.openplanner.team/stops/2039"], ["https://mivb.openplanner.team/stops/5082", "https://mivb.openplanner.team/stops/8813"], ["https://mivb.openplanner.team/stops/0610563", "https://mivb.openplanner.team/stops/0610263"], ["https://mivb.openplanner.team/stops/2609", "https://mivb.openplanner.team/stops/2611"], ["https://mivb.openplanner.team/stops/1043", "https://mivb.openplanner.team/stops/2022"], ["https://mivb.openplanner.team/stops/1793", "https://mivb.openplanner.team/stops/6471"], ["https://mivb.openplanner.team/stops/2029", "https://mivb.openplanner.team/stops/2078"], ["https://mivb.openplanner.team/stops/3460", "https://mivb.openplanner.team/stops/3898"], ["https://mivb.openplanner.team/stops/1475", "https://mivb.openplanner.team/stops/8662"], ["https://mivb.openplanner.team/stops/9678", "https://mivb.openplanner.team/stops/9679"], ["https://mivb.openplanner.team/stops/1726", "https://mivb.openplanner.team/stops/0310244"], ["https://mivb.openplanner.team/stops/6357F", "https://mivb.openplanner.team/stops/6437F"], ["https://mivb.openplanner.team/stops/3331", "https://mivb.openplanner.team/stops/6356"], ["https://mivb.openplanner.team/stops/2665F", "https://mivb.openplanner.team/stops/5720"], ["https://mivb.openplanner.team/stops/2753", "https://mivb.openplanner.team/stops/0260237"], ["https://mivb.openplanner.team/stops/5857", "https://mivb.openplanner.team/stops/5857F"], ["https://mivb.openplanner.team/stops/9164", "https://mivb.openplanner.team/stops/9557"], ["https://mivb.openplanner.team/stops/2877", "https://mivb.openplanner.team/stops/6502"], ["https://mivb.openplanner.team/stops/5451F", "https://mivb.openplanner.team/stops/5459"], ["https://mivb.openplanner.team/stops/3177", "https://mivb.openplanner.team/stops/5320"], ["https://mivb.openplanner.team/stops/1646F", "https://mivb.openplanner.team/stops/6260F"], ["https://mivb.openplanner.team/stops/1244", "https://mivb.openplanner.team/stops/6706"], ["https://mivb.openplanner.team/stops/1421", "https://mivb.openplanner.team/stops/0120626"], ["https://mivb.openplanner.team/stops/1112", "https://mivb.openplanner.team/stops/1286"], ["https://mivb.openplanner.team/stops/5105F", "https://mivb.openplanner.team/stops/5168"], ["https://mivb.openplanner.team/stops/5848", "https://mivb.openplanner.team/stops/5849"], ["https://mivb.openplanner.team/stops/0220233", "https://mivb.openplanner.team/stops/0230234"], ["https://mivb.openplanner.team/stops/0240235", "https://mivb.openplanner.team/stops/0240535"], ["https://mivb.openplanner.team/stops/3410", "https://mivb.openplanner.team/stops/7998"], ["https://mivb.openplanner.team/stops/1552", "https://mivb.openplanner.team/stops/9851"], ["https://mivb.openplanner.team/stops/4207", "https://mivb.openplanner.team/stops/4261"], ["https://mivb.openplanner.team/stops/2244F", "https://mivb.openplanner.team/stops/2247"], ["https://mivb.openplanner.team/stops/6202", "https://mivb.openplanner.team/stops/6203"], ["https://mivb.openplanner.team/stops/1661", "https://mivb.openplanner.team/stops/2078"], ["https://mivb.openplanner.team/stops/2807", "https://mivb.openplanner.team/stops/6172"], ["https://mivb.openplanner.team/stops/1133", "https://mivb.openplanner.team/stops/3921"], ["https://mivb.openplanner.team/stops/5802", "https://mivb.openplanner.team/stops/7269"], ["https://mivb.openplanner.team/stops/5066F", "https://mivb.openplanner.team/stops/8321"], ["https://mivb.openplanner.team/stops/5923", "https://mivb.openplanner.team/stops/5925"], ["https://mivb.openplanner.team/stops/3006", "https://mivb.openplanner.team/stops/7369"], ["https://mivb.openplanner.team/stops/2452", "https://mivb.openplanner.team/stops/5916"], ["https://mivb.openplanner.team/stops/1483", "https://mivb.openplanner.team/stops/1486B"], ["https://mivb.openplanner.team/stops/3502", "https://mivb.openplanner.team/stops/0020616"], ["https://mivb.openplanner.team/stops/0601162", "https://mivb.openplanner.team/stops/0601262"], ["https://mivb.openplanner.team/stops/2283", "https://mivb.openplanner.team/stops/0080222"], ["https://mivb.openplanner.team/stops/5082", "https://mivb.openplanner.team/stops/6173"], ["https://mivb.openplanner.team/stops/1614B", "https://mivb.openplanner.team/stops/1660B"], ["https://mivb.openplanner.team/stops/0520161", "https://mivb.openplanner.team/stops/1083"], ["https://mivb.openplanner.team/stops/1015", "https://mivb.openplanner.team/stops/5121"], ["https://mivb.openplanner.team/stops/2278", "https://mivb.openplanner.team/stops/2279"], ["https://mivb.openplanner.team/stops/1253B", "https://mivb.openplanner.team/stops/7720303"], ["https://mivb.openplanner.team/stops/0820270", "https://mivb.openplanner.team/stops/4550"], ["https://mivb.openplanner.team/stops/1676F", "https://mivb.openplanner.team/stops/1677F"], ["https://mivb.openplanner.team/stops/1926B", "https://mivb.openplanner.team/stops/5853G"], ["https://mivb.openplanner.team/stops/3505", "https://mivb.openplanner.team/stops/44"], ["https://mivb.openplanner.team/stops/2528", "https://mivb.openplanner.team/stops/3802"], ["https://mivb.openplanner.team/stops/3305", "https://mivb.openplanner.team/stops/5277F"], ["https://mivb.openplanner.team/stops/2397", "https://mivb.openplanner.team/stops/3480"], ["https://mivb.openplanner.team/stops/2292B", "https://mivb.openplanner.team/stops/2988"], ["https://mivb.openplanner.team/stops/3521", "https://mivb.openplanner.team/stops/4297"], ["https://mivb.openplanner.team/stops/0089", "https://mivb.openplanner.team/stops/5562"], ["https://mivb.openplanner.team/stops/6357", "https://mivb.openplanner.team/stops/6436"], ["https://mivb.openplanner.team/stops/3612F", "https://mivb.openplanner.team/stops/3751"], ["https://mivb.openplanner.team/stops/5714", "https://mivb.openplanner.team/stops/6177"], ["https://mivb.openplanner.team/stops/5074", "https://mivb.openplanner.team/stops/5089"], ["https://mivb.openplanner.team/stops/5815", "https://mivb.openplanner.team/stops/5816G"], ["https://mivb.openplanner.team/stops/5208", "https://mivb.openplanner.team/stops/5258"], ["https://mivb.openplanner.team/stops/4132B", "https://mivb.openplanner.team/stops/8793"], ["https://mivb.openplanner.team/stops/1256", "https://mivb.openplanner.team/stops/2561"], ["https://mivb.openplanner.team/stops/3210B", "https://mivb.openplanner.team/stops/3401"], ["https://mivb.openplanner.team/stops/2017", "https://mivb.openplanner.team/stops/2027"], ["https://mivb.openplanner.team/stops/2145", "https://mivb.openplanner.team/stops/5420F"], ["https://mivb.openplanner.team/stops/1599", "https://mivb.openplanner.team/stops/4259"], ["https://mivb.openplanner.team/stops/2313", "https://mivb.openplanner.team/stops/3014"], ["https://mivb.openplanner.team/stops/1980", "https://mivb.openplanner.team/stops/6112"], ["https://mivb.openplanner.team/stops/1237", "https://mivb.openplanner.team/stops/3228F"], ["https://mivb.openplanner.team/stops/1499", "https://mivb.openplanner.team/stops/3850"], ["https://mivb.openplanner.team/stops/6356", "https://mivb.openplanner.team/stops/6356F"], ["https://mivb.openplanner.team/stops/3064", "https://mivb.openplanner.team/stops/9609"], ["https://mivb.openplanner.team/stops/1462", "https://mivb.openplanner.team/stops/3251"], ["https://mivb.openplanner.team/stops/5817F", "https://mivb.openplanner.team/stops/5860"], ["https://mivb.openplanner.team/stops/2940F", "https://mivb.openplanner.team/stops/2962"], ["https://mivb.openplanner.team/stops/1707", "https://mivb.openplanner.team/stops/3261"], ["https://mivb.openplanner.team/stops/0526", "https://mivb.openplanner.team/stops/6012G"], ["https://mivb.openplanner.team/stops/1552", "https://mivb.openplanner.team/stops/2015"], ["https://mivb.openplanner.team/stops/1534", "https://mivb.openplanner.team/stops/3285"], ["https://mivb.openplanner.team/stops/1203", "https://mivb.openplanner.team/stops/1260"], ["https://mivb.openplanner.team/stops/3216", "https://mivb.openplanner.team/stops/3266"], ["https://mivb.openplanner.team/stops/3559", "https://mivb.openplanner.team/stops/5407"], ["https://mivb.openplanner.team/stops/5920C", "https://mivb.openplanner.team/stops/5921B"], ["https://mivb.openplanner.team/stops/6858C", "https://mivb.openplanner.team/stops/6858G"], ["https://mivb.openplanner.team/stops/0900168", "https://mivb.openplanner.team/stops/0900568"], ["https://mivb.openplanner.team/stops/4341", "https://mivb.openplanner.team/stops/4347"], ["https://mivb.openplanner.team/stops/2541", "https://mivb.openplanner.team/stops/3800"], ["https://mivb.openplanner.team/stops/1150", "https://mivb.openplanner.team/stops/0110225"], ["https://mivb.openplanner.team/stops/2931", "https://mivb.openplanner.team/stops/6408"], ["https://mivb.openplanner.team/stops/6005", "https://mivb.openplanner.team/stops/7730602"], ["https://mivb.openplanner.team/stops/2915", "https://mivb.openplanner.team/stops/5355"], ["https://mivb.openplanner.team/stops/1953", "https://mivb.openplanner.team/stops/2157"], ["https://mivb.openplanner.team/stops/3504", "https://mivb.openplanner.team/stops/3532"], ["https://mivb.openplanner.team/stops/1942", "https://mivb.openplanner.team/stops/2709F"], ["https://mivb.openplanner.team/stops/2151", "https://mivb.openplanner.team/stops/2153"], ["https://mivb.openplanner.team/stops/2498", "https://mivb.openplanner.team/stops/6502"], ["https://mivb.openplanner.team/stops/2810", "https://mivb.openplanner.team/stops/6174F"], ["https://mivb.openplanner.team/stops/1903", "https://mivb.openplanner.team/stops/6120"], ["https://mivb.openplanner.team/stops/3853", "https://mivb.openplanner.team/stops/3859"], ["https://mivb.openplanner.team/stops/3762", "https://mivb.openplanner.team/stops/5279F"], ["https://mivb.openplanner.team/stops/1488", "https://mivb.openplanner.team/stops/3717"], ["https://mivb.openplanner.team/stops/3167", "https://mivb.openplanner.team/stops/7484"], ["https://mivb.openplanner.team/stops/3263F", "https://mivb.openplanner.team/stops/0370438"], ["https://mivb.openplanner.team/stops/1602", "https://mivb.openplanner.team/stops/5523"], ["https://mivb.openplanner.team/stops/1051", "https://mivb.openplanner.team/stops/9025"], ["https://mivb.openplanner.team/stops/0310144", "https://mivb.openplanner.team/stops/0310644"], ["https://mivb.openplanner.team/stops/2855", "https://mivb.openplanner.team/stops/5773"], ["https://mivb.openplanner.team/stops/6304", "https://mivb.openplanner.team/stops/6419F"], ["https://mivb.openplanner.team/stops/3451", "https://mivb.openplanner.team/stops/5356"], ["https://mivb.openplanner.team/stops/6122", "https://mivb.openplanner.team/stops/6174B"], ["https://mivb.openplanner.team/stops/4296", "https://mivb.openplanner.team/stops/4405"], ["https://mivb.openplanner.team/stops/3201", "https://mivb.openplanner.team/stops/3334F"], ["https://mivb.openplanner.team/stops/1303", "https://mivb.openplanner.team/stops/5165"], ["https://mivb.openplanner.team/stops/4595", "https://mivb.openplanner.team/stops/6706"], ["https://mivb.openplanner.team/stops/4123", "https://mivb.openplanner.team/stops/4127"], ["https://mivb.openplanner.team/stops/2562B", "https://mivb.openplanner.team/stops/8702"], ["https://mivb.openplanner.team/stops/1753", "https://mivb.openplanner.team/stops/3524"], ["https://mivb.openplanner.team/stops/1415", "https://mivb.openplanner.team/stops/1833B"], ["https://mivb.openplanner.team/stops/1965", "https://mivb.openplanner.team/stops/5817F"], ["https://mivb.openplanner.team/stops/4366", "https://mivb.openplanner.team/stops/6113F"], ["https://mivb.openplanner.team/stops/4229", "https://mivb.openplanner.team/stops/4277"], ["https://mivb.openplanner.team/stops/3207", "https://mivb.openplanner.team/stops/3401"], ["https://mivb.openplanner.team/stops/2360", "https://mivb.openplanner.team/stops/2361"], ["https://mivb.openplanner.team/stops/6017", "https://mivb.openplanner.team/stops/6060"], ["https://mivb.openplanner.team/stops/1182", "https://mivb.openplanner.team/stops/2570"], ["https://mivb.openplanner.team/stops/1202", "https://mivb.openplanner.team/stops/7740201"], ["https://mivb.openplanner.team/stops/3002", "https://mivb.openplanner.team/stops/3064"], ["https://mivb.openplanner.team/stops/1204", "https://mivb.openplanner.team/stops/1259"], ["https://mivb.openplanner.team/stops/1548B", "https://mivb.openplanner.team/stops/0060520"], ["https://mivb.openplanner.team/stops/0670267", "https://mivb.openplanner.team/stops/0722"], ["https://mivb.openplanner.team/stops/3281", "https://mivb.openplanner.team/stops/6004"], ["https://mivb.openplanner.team/stops/1404", "https://mivb.openplanner.team/stops/6053"], ["https://mivb.openplanner.team/stops/0600762", "https://mivb.openplanner.team/stops/2245"], ["https://mivb.openplanner.team/stops/1820", "https://mivb.openplanner.team/stops/0010115"], ["https://mivb.openplanner.team/stops/1486B", "https://mivb.openplanner.team/stops/3751"], ["https://mivb.openplanner.team/stops/4229", "https://mivb.openplanner.team/stops/5474"], ["https://mivb.openplanner.team/stops/6651", "https://mivb.openplanner.team/stops/0270614"], ["https://mivb.openplanner.team/stops/4130", "https://mivb.openplanner.team/stops/4130F"], ["https://mivb.openplanner.team/stops/2115", "https://mivb.openplanner.team/stops/4357"], ["https://mivb.openplanner.team/stops/2110B", "https://mivb.openplanner.team/stops/6440"], ["https://mivb.openplanner.team/stops/1823", "https://mivb.openplanner.team/stops/1825"], ["https://mivb.openplanner.team/stops/5121", "https://mivb.openplanner.team/stops/5121F"], ["https://mivb.openplanner.team/stops/1261", "https://mivb.openplanner.team/stops/4215"], ["https://mivb.openplanner.team/stops/1152", "https://mivb.openplanner.team/stops/0100524"], ["https://mivb.openplanner.team/stops/3808", "https://mivb.openplanner.team/stops/3812"], ["https://mivb.openplanner.team/stops/1512", "https://mivb.openplanner.team/stops/6058"], ["https://mivb.openplanner.team/stops/4293", "https://mivb.openplanner.team/stops/4358"], ["https://mivb.openplanner.team/stops/3900", "https://mivb.openplanner.team/stops/3909"], ["https://mivb.openplanner.team/stops/6313", "https://mivb.openplanner.team/stops/0330242"], ["https://mivb.openplanner.team/stops/9703", "https://mivb.openplanner.team/stops/9778"], ["https://mivb.openplanner.team/stops/1286", "https://mivb.openplanner.team/stops/8472"], ["https://mivb.openplanner.team/stops/2544F", "https://mivb.openplanner.team/stops/6099"], ["https://mivb.openplanner.team/stops/3513", "https://mivb.openplanner.team/stops/3525"], ["https://mivb.openplanner.team/stops/3168", "https://mivb.openplanner.team/stops/5766"], ["https://mivb.openplanner.team/stops/1833B", "https://mivb.openplanner.team/stops/1834"], ["https://mivb.openplanner.team/stops/1152", "https://mivb.openplanner.team/stops/1519"], ["https://mivb.openplanner.team/stops/2285G", "https://mivb.openplanner.team/stops/2287"], ["https://mivb.openplanner.team/stops/8021", "https://mivb.openplanner.team/stops/0020116"], ["https://mivb.openplanner.team/stops/3174", "https://mivb.openplanner.team/stops/5802"], ["https://mivb.openplanner.team/stops/2026", "https://mivb.openplanner.team/stops/5423"], ["https://mivb.openplanner.team/stops/3323", "https://mivb.openplanner.team/stops/3347"], ["https://mivb.openplanner.team/stops/1256", "https://mivb.openplanner.team/stops/3252"], ["https://mivb.openplanner.team/stops/5961", "https://mivb.openplanner.team/stops/5967"], ["https://mivb.openplanner.team/stops/2009", "https://mivb.openplanner.team/stops/5283F"], ["https://mivb.openplanner.team/stops/5076", "https://mivb.openplanner.team/stops/7770258"], ["https://mivb.openplanner.team/stops/1913", "https://mivb.openplanner.team/stops/4705"], ["https://mivb.openplanner.team/stops/3112", "https://mivb.openplanner.team/stops/3113"], ["https://mivb.openplanner.team/stops/1278", "https://mivb.openplanner.team/stops/6115F"], ["https://mivb.openplanner.team/stops/4297", "https://mivb.openplanner.team/stops/0240535"], ["https://mivb.openplanner.team/stops/2523", "https://mivb.openplanner.team/stops/2556"], ["https://mivb.openplanner.team/stops/2259", "https://mivb.openplanner.team/stops/3852"], ["https://mivb.openplanner.team/stops/6114F", "https://mivb.openplanner.team/stops/6155F"], ["https://mivb.openplanner.team/stops/1560", "https://mivb.openplanner.team/stops/3908"], ["https://mivb.openplanner.team/stops/5422", "https://mivb.openplanner.team/stops/5452"], ["https://mivb.openplanner.team/stops/7730102", "https://mivb.openplanner.team/stops/7730502"], ["https://mivb.openplanner.team/stops/3261", "https://mivb.openplanner.team/stops/3320B"], ["https://mivb.openplanner.team/stops/4267", "https://mivb.openplanner.team/stops/9027"], ["https://mivb.openplanner.team/stops/1121", "https://mivb.openplanner.team/stops/9729"], ["https://mivb.openplanner.team/stops/5501", "https://mivb.openplanner.team/stops/5562"], ["https://mivb.openplanner.team/stops/2150", "https://mivb.openplanner.team/stops/5032B"], ["https://mivb.openplanner.team/stops/5074", "https://mivb.openplanner.team/stops/58"], ["https://mivb.openplanner.team/stops/5474", "https://mivb.openplanner.team/stops/6482"], ["https://mivb.openplanner.team/stops/0529", "https://mivb.openplanner.team/stops/1900"], ["https://mivb.openplanner.team/stops/2363", "https://mivb.openplanner.team/stops/2819"], ["https://mivb.openplanner.team/stops/1133", "https://mivb.openplanner.team/stops/3117"], ["https://mivb.openplanner.team/stops/2905", "https://mivb.openplanner.team/stops/9946"], ["https://mivb.openplanner.team/stops/8361", "https://mivb.openplanner.team/stops/0360239"], ["https://mivb.openplanner.team/stops/7820253", "https://mivb.openplanner.team/stops/7820453"], ["https://mivb.openplanner.team/stops/1203", "https://mivb.openplanner.team/stops/4215"], ["https://mivb.openplanner.team/stops/1307F", "https://mivb.openplanner.team/stops/1310"], ["https://mivb.openplanner.team/stops/2814", "https://mivb.openplanner.team/stops/2856B"], ["https://mivb.openplanner.team/stops/1544", "https://mivb.openplanner.team/stops/1861"], ["https://mivb.openplanner.team/stops/4598", "https://mivb.openplanner.team/stops/5105"], ["https://mivb.openplanner.team/stops/1102", "https://mivb.openplanner.team/stops/5102"], ["https://mivb.openplanner.team/stops/4268", "https://mivb.openplanner.team/stops/8834"], ["https://mivb.openplanner.team/stops/1909", "https://mivb.openplanner.team/stops/1910"], ["https://mivb.openplanner.team/stops/1493", "https://mivb.openplanner.team/stops/1499"], ["https://mivb.openplanner.team/stops/4268", "https://mivb.openplanner.team/stops/7830352"], ["https://mivb.openplanner.team/stops/1758B", "https://mivb.openplanner.team/stops/1811"], ["https://mivb.openplanner.team/stops/4109", "https://mivb.openplanner.team/stops/4169"], ["https://mivb.openplanner.team/stops/1096", "https://mivb.openplanner.team/stops/4006G"], ["https://mivb.openplanner.team/stops/1307F", "https://mivb.openplanner.team/stops/5168"], ["https://mivb.openplanner.team/stops/2544F", "https://mivb.openplanner.team/stops/2670"], ["https://mivb.openplanner.team/stops/6053", "https://mivb.openplanner.team/stops/0070521"], ["https://mivb.openplanner.team/stops/4014", "https://mivb.openplanner.team/stops/8744"], ["https://mivb.openplanner.team/stops/8151", "https://mivb.openplanner.team/stops/0150129"], ["https://mivb.openplanner.team/stops/3274", "https://mivb.openplanner.team/stops/3401"], ["https://mivb.openplanner.team/stops/2415", "https://mivb.openplanner.team/stops/5815"], ["https://mivb.openplanner.team/stops/6608G", "https://mivb.openplanner.team/stops/6653F"], ["https://mivb.openplanner.team/stops/1018", "https://mivb.openplanner.team/stops/9825F"], ["https://mivb.openplanner.team/stops/2325", "https://mivb.openplanner.team/stops/2326"], ["https://mivb.openplanner.team/stops/1233", "https://mivb.openplanner.team/stops/4367B"], ["https://mivb.openplanner.team/stops/3763", "https://mivb.openplanner.team/stops/4558"], ["https://mivb.openplanner.team/stops/4289", "https://mivb.openplanner.team/stops/4292"], ["https://mivb.openplanner.team/stops/0410446", "https://mivb.openplanner.team/stops/9060"], ["https://mivb.openplanner.team/stops/8091", "https://mivb.openplanner.team/stops/0090223"], ["https://mivb.openplanner.team/stops/5299", "https://mivb.openplanner.team/stops/5361F"], ["https://mivb.openplanner.team/stops/4357", "https://mivb.openplanner.team/stops/4455"], ["https://mivb.openplanner.team/stops/8813", "https://mivb.openplanner.team/stops/8814"], ["https://mivb.openplanner.team/stops/6021", "https://mivb.openplanner.team/stops/6191"], ["https://mivb.openplanner.team/stops/2038", "https://mivb.openplanner.team/stops/0140128"], ["https://mivb.openplanner.team/stops/2901", "https://mivb.openplanner.team/stops/3176"], ["https://mivb.openplanner.team/stops/1356", "https://mivb.openplanner.team/stops/2371"], ["https://mivb.openplanner.team/stops/5916", "https://mivb.openplanner.team/stops/5953F"], ["https://mivb.openplanner.team/stops/0650165", "https://mivb.openplanner.team/stops/2465"], ["https://mivb.openplanner.team/stops/0906", "https://mivb.openplanner.team/stops/0900568"], ["https://mivb.openplanner.team/stops/3347", "https://mivb.openplanner.team/stops/4324"], ["https://mivb.openplanner.team/stops/1242", "https://mivb.openplanner.team/stops/1245"], ["https://mivb.openplanner.team/stops/4022", "https://mivb.openplanner.team/stops/6004"], ["https://mivb.openplanner.team/stops/3506", "https://mivb.openplanner.team/stops/7544"], ["https://mivb.openplanner.team/stops/2932", "https://mivb.openplanner.team/stops/5064"], ["https://mivb.openplanner.team/stops/2971F", "https://mivb.openplanner.team/stops/5475"], ["https://mivb.openplanner.team/stops/2829B", "https://mivb.openplanner.team/stops/3001B"], ["https://mivb.openplanner.team/stops/2304", "https://mivb.openplanner.team/stops/2305"], ["https://mivb.openplanner.team/stops/4126", "https://mivb.openplanner.team/stops/4129"], ["https://mivb.openplanner.team/stops/2259", "https://mivb.openplanner.team/stops/3858"], ["https://mivb.openplanner.team/stops/1076", "https://mivb.openplanner.team/stops/6174F"], ["https://mivb.openplanner.team/stops/2935", "https://mivb.openplanner.team/stops/2955"], ["https://mivb.openplanner.team/stops/0722", "https://mivb.openplanner.team/stops/2950"], ["https://mivb.openplanner.team/stops/1706", "https://mivb.openplanner.team/stops/4367B"], ["https://mivb.openplanner.team/stops/5721", "https://mivb.openplanner.team/stops/5756"], ["https://mivb.openplanner.team/stops/9626", "https://mivb.openplanner.team/stops/9627"], ["https://mivb.openplanner.team/stops/1462", "https://mivb.openplanner.team/stops/6053"], ["https://mivb.openplanner.team/stops/1826", "https://mivb.openplanner.team/stops/1840"], ["https://mivb.openplanner.team/stops/1831", "https://mivb.openplanner.team/stops/1833B"], ["https://mivb.openplanner.team/stops/2152", "https://mivb.openplanner.team/stops/5031F"], ["https://mivb.openplanner.team/stops/2548", "https://mivb.openplanner.team/stops/2672F"], ["https://mivb.openplanner.team/stops/0901", "https://mivb.openplanner.team/stops/0900268"], ["https://mivb.openplanner.team/stops/1352", "https://mivb.openplanner.team/stops/5466"], ["https://mivb.openplanner.team/stops/1080", "https://mivb.openplanner.team/stops/1328"], ["https://mivb.openplanner.team/stops/2901", "https://mivb.openplanner.team/stops/7271"], ["https://mivb.openplanner.team/stops/3760", "https://mivb.openplanner.team/stops/6005"], ["https://mivb.openplanner.team/stops/3351", "https://mivb.openplanner.team/stops/6356F"], ["https://mivb.openplanner.team/stops/8732", "https://mivb.openplanner.team/stops/8733"], ["https://mivb.openplanner.team/stops/1376B", "https://mivb.openplanner.team/stops/6353"], ["https://mivb.openplanner.team/stops/3099", "https://mivb.openplanner.team/stops/3181"], ["https://mivb.openplanner.team/stops/1568", "https://mivb.openplanner.team/stops/3100"], ["https://mivb.openplanner.team/stops/2408", "https://mivb.openplanner.team/stops/2934"], ["https://mivb.openplanner.team/stops/1746", "https://mivb.openplanner.team/stops/1768"], ["https://mivb.openplanner.team/stops/1102", "https://mivb.openplanner.team/stops/1116"], ["https://mivb.openplanner.team/stops/2917", "https://mivb.openplanner.team/stops/2974"], ["https://mivb.openplanner.team/stops/3521", "https://mivb.openplanner.team/stops/3547"], ["https://mivb.openplanner.team/stops/1528", "https://mivb.openplanner.team/stops/3328"], ["https://mivb.openplanner.team/stops/4131B", "https://mivb.openplanner.team/stops/7790456"], ["https://mivb.openplanner.team/stops/3201", "https://mivb.openplanner.team/stops/9946"], ["https://mivb.openplanner.team/stops/4103", "https://mivb.openplanner.team/stops/4104"], ["https://mivb.openplanner.team/stops/8834", "https://mivb.openplanner.team/stops/7830252"], ["https://mivb.openplanner.team/stops/9959F", "https://mivb.openplanner.team/stops/9963F"], ["https://mivb.openplanner.team/stops/4705", "https://mivb.openplanner.team/stops/5404"], ["https://mivb.openplanner.team/stops/1685F", "https://mivb.openplanner.team/stops/4115"], ["https://mivb.openplanner.team/stops/1828", "https://mivb.openplanner.team/stops/1846"], ["https://mivb.openplanner.team/stops/2514", "https://mivb.openplanner.team/stops/4601"], ["https://mivb.openplanner.team/stops/2544", "https://mivb.openplanner.team/stops/2672"], ["https://mivb.openplanner.team/stops/0430348", "https://mivb.openplanner.team/stops/0431148"], ["https://mivb.openplanner.team/stops/5103", "https://mivb.openplanner.team/stops/5174F"], ["https://mivb.openplanner.team/stops/1094F", "https://mivb.openplanner.team/stops/1199F"], ["https://mivb.openplanner.team/stops/2609", "https://mivb.openplanner.team/stops/2610"], ["https://mivb.openplanner.team/stops/2931", "https://mivb.openplanner.team/stops/2960F"], ["https://mivb.openplanner.team/stops/6437F", "https://mivb.openplanner.team/stops/8421"], ["https://mivb.openplanner.team/stops/3225F", "https://mivb.openplanner.team/stops/0370138"], ["https://mivb.openplanner.team/stops/8803", "https://mivb.openplanner.team/stops/7800255"], ["https://mivb.openplanner.team/stops/0501", "https://mivb.openplanner.team/stops/0010215"], ["https://mivb.openplanner.team/stops/3259B", "https://mivb.openplanner.team/stops/6649F"], ["https://mivb.openplanner.team/stops/3305", "https://mivb.openplanner.team/stops/3361"], ["https://mivb.openplanner.team/stops/9678", "https://mivb.openplanner.team/stops/9680"], ["https://mivb.openplanner.team/stops/4205", "https://mivb.openplanner.team/stops/9047"], ["https://mivb.openplanner.team/stops/2123", "https://mivb.openplanner.team/stops/2133"], ["https://mivb.openplanner.team/stops/1733", "https://mivb.openplanner.team/stops/3156"], ["https://mivb.openplanner.team/stops/5857", "https://mivb.openplanner.team/stops/5858"], ["https://mivb.openplanner.team/stops/1014F", "https://mivb.openplanner.team/stops/1767"], ["https://mivb.openplanner.team/stops/5115F", "https://mivb.openplanner.team/stops/6099"], ["https://mivb.openplanner.team/stops/2311", "https://mivb.openplanner.team/stops/3007"], ["https://mivb.openplanner.team/stops/3012", "https://mivb.openplanner.team/stops/3630"], ["https://mivb.openplanner.team/stops/1319", "https://mivb.openplanner.team/stops/3159"], ["https://mivb.openplanner.team/stops/1869", "https://mivb.openplanner.team/stops/6008"], ["https://mivb.openplanner.team/stops/5529", "https://mivb.openplanner.team/stops/0160230"], ["https://mivb.openplanner.team/stops/2292B", "https://mivb.openplanner.team/stops/5967"], ["https://mivb.openplanner.team/stops/1260", "https://mivb.openplanner.team/stops/2536"], ["https://mivb.openplanner.team/stops/0070321", "https://mivb.openplanner.team/stops/21"], ["https://mivb.openplanner.team/stops/1724", "https://mivb.openplanner.team/stops/3530"], ["https://mivb.openplanner.team/stops/3361", "https://mivb.openplanner.team/stops/5275F"], ["https://mivb.openplanner.team/stops/6436", "https://mivb.openplanner.team/stops/0420147"], ["https://mivb.openplanner.team/stops/3111", "https://mivb.openplanner.team/stops/6304"], ["https://mivb.openplanner.team/stops/3403", "https://mivb.openplanner.team/stops/3467B"], ["https://mivb.openplanner.team/stops/5105F", "https://mivb.openplanner.team/stops/5168F"], ["https://mivb.openplanner.team/stops/3263B", "https://mivb.openplanner.team/stops/3263F"], ["https://mivb.openplanner.team/stops/2807", "https://mivb.openplanner.team/stops/6173"], ["https://mivb.openplanner.team/stops/2221", "https://mivb.openplanner.team/stops/3331"], ["https://mivb.openplanner.team/stops/1354", "https://mivb.openplanner.team/stops/3508"], ["https://mivb.openplanner.team/stops/2705", "https://mivb.openplanner.team/stops/5027"], ["https://mivb.openplanner.team/stops/1290", "https://mivb.openplanner.team/stops/4277"], ["https://mivb.openplanner.team/stops/3704", "https://mivb.openplanner.team/stops/3762"], ["https://mivb.openplanner.team/stops/1483", "https://mivb.openplanner.team/stops/1484"], ["https://mivb.openplanner.team/stops/3709", "https://mivb.openplanner.team/stops/6809"], ["https://mivb.openplanner.team/stops/2214", "https://mivb.openplanner.team/stops/6603"], ["https://mivb.openplanner.team/stops/5107B", "https://mivb.openplanner.team/stops/5111B"], ["https://mivb.openplanner.team/stops/2099", "https://mivb.openplanner.team/stops/2168"], ["https://mivb.openplanner.team/stops/5723B", "https://mivb.openplanner.team/stops/5921G"], ["https://mivb.openplanner.team/stops/6800", "https://mivb.openplanner.team/stops/6869G"], ["https://mivb.openplanner.team/stops/2708G", "https://mivb.openplanner.team/stops/2709F"], ["https://mivb.openplanner.team/stops/1417B", "https://mivb.openplanner.team/stops/1548B"], ["https://mivb.openplanner.team/stops/2671F", "https://mivb.openplanner.team/stops/6106"], ["https://mivb.openplanner.team/stops/1253B", "https://mivb.openplanner.team/stops/7720403"], ["https://mivb.openplanner.team/stops/8122", "https://mivb.openplanner.team/stops/0120126"], ["https://mivb.openplanner.team/stops/1926B", "https://mivb.openplanner.team/stops/5853B"], ["https://mivb.openplanner.team/stops/3231", "https://mivb.openplanner.team/stops/6004"], ["https://mivb.openplanner.team/stops/2727", "https://mivb.openplanner.team/stops/2728"], ["https://mivb.openplanner.team/stops/2397", "https://mivb.openplanner.team/stops/3481"], ["https://mivb.openplanner.team/stops/4059", "https://mivb.openplanner.team/stops/4165"], ["https://mivb.openplanner.team/stops/4276", "https://mivb.openplanner.team/stops/7810154"], ["https://mivb.openplanner.team/stops/1168", "https://mivb.openplanner.team/stops/1169"], ["https://mivb.openplanner.team/stops/3521", "https://mivb.openplanner.team/stops/4294"], ["https://mivb.openplanner.team/stops/1110", "https://mivb.openplanner.team/stops/5727F"], ["https://mivb.openplanner.team/stops/3612F", "https://mivb.openplanner.team/stops/3718"], ["https://mivb.openplanner.team/stops/2290B", "https://mivb.openplanner.team/stops/8221"], ["https://mivb.openplanner.team/stops/1769", "https://mivb.openplanner.team/stops/1881"], ["https://mivb.openplanner.team/stops/5815", "https://mivb.openplanner.team/stops/5816B"], ["https://mivb.openplanner.team/stops/4132B", "https://mivb.openplanner.team/stops/8794"], ["https://mivb.openplanner.team/stops/1066", "https://mivb.openplanner.team/stops/6803F"], ["https://mivb.openplanner.team/stops/2704", "https://mivb.openplanner.team/stops/2708G"], ["https://mivb.openplanner.team/stops/2972", "https://mivb.openplanner.team/stops/6453"], ["https://mivb.openplanner.team/stops/5817", "https://mivb.openplanner.team/stops/5917F"], ["https://mivb.openplanner.team/stops/1776", "https://mivb.openplanner.team/stops/6433"], ["https://mivb.openplanner.team/stops/2959", "https://mivb.openplanner.team/stops/5020"], ["https://mivb.openplanner.team/stops/1728", "https://mivb.openplanner.team/stops/3921"], ["https://mivb.openplanner.team/stops/4122", "https://mivb.openplanner.team/stops/4130F"], ["https://mivb.openplanner.team/stops/8381", "https://mivb.openplanner.team/stops/8382"], ["https://mivb.openplanner.team/stops/9787", "https://mivb.openplanner.team/stops/9788"], ["https://mivb.openplanner.team/stops/4405", "https://mivb.openplanner.team/stops/0250136"], ["https://mivb.openplanner.team/stops/4955F", "https://mivb.openplanner.team/stops/7800255"], ["https://mivb.openplanner.team/stops/3712", "https://mivb.openplanner.team/stops/3718"], ["https://mivb.openplanner.team/stops/1569B", "https://mivb.openplanner.team/stops/1582"], ["https://mivb.openplanner.team/stops/1084", "https://mivb.openplanner.team/stops/5291F"], ["https://mivb.openplanner.team/stops/1116", "https://mivb.openplanner.team/stops/5103"], ["https://mivb.openplanner.team/stops/6862", "https://mivb.openplanner.team/stops/7621"], ["https://mivb.openplanner.team/stops/9600B", "https://mivb.openplanner.team/stops/9784B"], ["https://mivb.openplanner.team/stops/3111", "https://mivb.openplanner.team/stops/6203"], ["https://mivb.openplanner.team/stops/2909", "https://mivb.openplanner.team/stops/2992"], ["https://mivb.openplanner.team/stops/5027", "https://mivb.openplanner.team/stops/9972F"], ["https://mivb.openplanner.team/stops/6016", "https://mivb.openplanner.team/stops/9060"], ["https://mivb.openplanner.team/stops/5059", "https://mivb.openplanner.team/stops/5856"], ["https://mivb.openplanner.team/stops/1450", "https://mivb.openplanner.team/stops/5225F"], ["https://mivb.openplanner.team/stops/3230", "https://mivb.openplanner.team/stops/8733"], ["https://mivb.openplanner.team/stops/2503", "https://mivb.openplanner.team/stops/6505"], ["https://mivb.openplanner.team/stops/2506B", "https://mivb.openplanner.team/stops/6804F"], ["https://mivb.openplanner.team/stops/3180", "https://mivb.openplanner.team/stops/5804G"], ["https://mivb.openplanner.team/stops/3286B", "https://mivb.openplanner.team/stops/3288"], ["https://mivb.openplanner.team/stops/1121", "https://mivb.openplanner.team/stops/3042"], ["https://mivb.openplanner.team/stops/1720B", "https://mivb.openplanner.team/stops/1813"], ["https://mivb.openplanner.team/stops/5710F", "https://mivb.openplanner.team/stops/5766"], ["https://mivb.openplanner.team/stops/5811", "https://mivb.openplanner.team/stops/5858"], ["https://mivb.openplanner.team/stops/1455", "https://mivb.openplanner.team/stops/5454F"], ["https://mivb.openplanner.team/stops/0636", "https://mivb.openplanner.team/stops/3211"], ["https://mivb.openplanner.team/stops/3100", "https://mivb.openplanner.team/stops/3118"], ["https://mivb.openplanner.team/stops/8331", "https://mivb.openplanner.team/stops/8332"], ["https://mivb.openplanner.team/stops/4111", "https://mivb.openplanner.team/stops/0290212"], ["https://mivb.openplanner.team/stops/1674F", "https://mivb.openplanner.team/stops/2507"], ["https://mivb.openplanner.team/stops/1488", "https://mivb.openplanner.team/stops/3713"], ["https://mivb.openplanner.team/stops/1602", "https://mivb.openplanner.team/stops/5524"], ["https://mivb.openplanner.team/stops/1913", "https://mivb.openplanner.team/stops/5409"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/3522"], ["https://mivb.openplanner.team/stops/1756B", "https://mivb.openplanner.team/stops/1863"], ["https://mivb.openplanner.team/stops/0610663", "https://mivb.openplanner.team/stops/63"], ["https://mivb.openplanner.team/stops/3286B", "https://mivb.openplanner.team/stops/3462"], ["https://mivb.openplanner.team/stops/1722", "https://mivb.openplanner.team/stops/1732"], ["https://mivb.openplanner.team/stops/1024", "https://mivb.openplanner.team/stops/9025"], ["https://mivb.openplanner.team/stops/3006", "https://mivb.openplanner.team/stops/8342"], ["https://mivb.openplanner.team/stops/1499", "https://mivb.openplanner.team/stops/5964"], ["https://mivb.openplanner.team/stops/6122", "https://mivb.openplanner.team/stops/6174F"], ["https://mivb.openplanner.team/stops/2535F", "https://mivb.openplanner.team/stops/6857"], ["https://mivb.openplanner.team/stops/4123", "https://mivb.openplanner.team/stops/4125"], ["https://mivb.openplanner.team/stops/5610", "https://mivb.openplanner.team/stops/6120"], ["https://mivb.openplanner.team/stops/6165", "https://mivb.openplanner.team/stops/0340341"], ["https://mivb.openplanner.team/stops/2404F", "https://mivb.openplanner.team/stops/6165"], ["https://mivb.openplanner.team/stops/2262", "https://mivb.openplanner.team/stops/6602"], ["https://mivb.openplanner.team/stops/3163", "https://mivb.openplanner.team/stops/6061"], ["https://mivb.openplanner.team/stops/2667", "https://mivb.openplanner.team/stops/2952B"], ["https://mivb.openplanner.team/stops/6604F", "https://mivb.openplanner.team/stops/6652"], ["https://mivb.openplanner.team/stops/5810", "https://mivb.openplanner.team/stops/6253"], ["https://mivb.openplanner.team/stops/9702", "https://mivb.openplanner.team/stops/9725"], ["https://mivb.openplanner.team/stops/1404", "https://mivb.openplanner.team/stops/6054B"], ["https://mivb.openplanner.team/stops/2965", "https://mivb.openplanner.team/stops/6209"], ["https://mivb.openplanner.team/stops/6014", "https://mivb.openplanner.team/stops/47"], ["https://mivb.openplanner.team/stops/4292", "https://mivb.openplanner.team/stops/5453"], ["https://mivb.openplanner.team/stops/2037", "https://mivb.openplanner.team/stops/2084"], ["https://mivb.openplanner.team/stops/0511", "https://mivb.openplanner.team/stops/0430848"], ["https://mivb.openplanner.team/stops/2217F", "https://mivb.openplanner.team/stops/8371"], ["https://mivb.openplanner.team/stops/0100124", "https://mivb.openplanner.team/stops/0100324"], ["https://mivb.openplanner.team/stops/1124", "https://mivb.openplanner.team/stops/6355"], ["https://mivb.openplanner.team/stops/4127", "https://mivb.openplanner.team/stops/6100"], ["https://mivb.openplanner.team/stops/2854", "https://mivb.openplanner.team/stops/5705"], ["https://mivb.openplanner.team/stops/6099", "https://mivb.openplanner.team/stops/6175"], ["https://mivb.openplanner.team/stops/1082", "https://mivb.openplanner.team/stops/2271"], ["https://mivb.openplanner.team/stops/9551", "https://mivb.openplanner.team/stops/9577"], ["https://mivb.openplanner.team/stops/2331F", "https://mivb.openplanner.team/stops/2333F"], ["https://mivb.openplanner.team/stops/1477B", "https://mivb.openplanner.team/stops/3854B"], ["https://mivb.openplanner.team/stops/5724", "https://mivb.openplanner.team/stops/5753F"], ["https://mivb.openplanner.team/stops/1141", "https://mivb.openplanner.team/stops/9983"], ["https://mivb.openplanner.team/stops/9703", "https://mivb.openplanner.team/stops/9777"], ["https://mivb.openplanner.team/stops/1912", "https://mivb.openplanner.team/stops/1977"], ["https://mivb.openplanner.team/stops/1286", "https://mivb.openplanner.team/stops/0470151"], ["https://mivb.openplanner.team/stops/4294", "https://mivb.openplanner.team/stops/4358"], ["https://mivb.openplanner.team/stops/3306", "https://mivb.openplanner.team/stops/3361"], ["https://mivb.openplanner.team/stops/2810", "https://mivb.openplanner.team/stops/2824"], ["https://mivb.openplanner.team/stops/1833B", "https://mivb.openplanner.team/stops/1841"], ["https://mivb.openplanner.team/stops/2107", "https://mivb.openplanner.team/stops/4309"], ["https://mivb.openplanner.team/stops/5258", "https://mivb.openplanner.team/stops/5468"], ["https://mivb.openplanner.team/stops/8021", "https://mivb.openplanner.team/stops/0020216"], ["https://mivb.openplanner.team/stops/5507", "https://mivb.openplanner.team/stops/5556"], ["https://mivb.openplanner.team/stops/2813", "https://mivb.openplanner.team/stops/5086F"], ["https://mivb.openplanner.team/stops/4594", "https://mivb.openplanner.team/stops/0370438"], ["https://mivb.openplanner.team/stops/5076", "https://mivb.openplanner.team/stops/7770158"], ["https://mivb.openplanner.team/stops/6754", "https://mivb.openplanner.team/stops/0280113"], ["https://mivb.openplanner.team/stops/1198", "https://mivb.openplanner.team/stops/5172F"], ["https://mivb.openplanner.team/stops/2123", "https://mivb.openplanner.team/stops/5213"], ["https://mivb.openplanner.team/stops/6114F", "https://mivb.openplanner.team/stops/6156F"], ["https://mivb.openplanner.team/stops/1828", "https://mivb.openplanner.team/stops/0160230"], ["https://mivb.openplanner.team/stops/7730102", "https://mivb.openplanner.team/stops/7730602"], ["https://mivb.openplanner.team/stops/5805", "https://mivb.openplanner.team/stops/5865"], ["https://mivb.openplanner.team/stops/4360", "https://mivb.openplanner.team/stops/6550"], ["https://mivb.openplanner.team/stops/3810", "https://mivb.openplanner.team/stops/3853"], ["https://mivb.openplanner.team/stops/2715", "https://mivb.openplanner.team/stops/5458"], ["https://mivb.openplanner.team/stops/2271", "https://mivb.openplanner.team/stops/5714"], ["https://mivb.openplanner.team/stops/2014", "https://mivb.openplanner.team/stops/4408"], ["https://mivb.openplanner.team/stops/2995", "https://mivb.openplanner.team/stops/3420"], ["https://mivb.openplanner.team/stops/4205", "https://mivb.openplanner.team/stops/5472"], ["https://mivb.openplanner.team/stops/1919", "https://mivb.openplanner.team/stops/1971"], ["https://mivb.openplanner.team/stops/1613", "https://mivb.openplanner.team/stops/1635"], ["https://mivb.openplanner.team/stops/2352", "https://mivb.openplanner.team/stops/2823B"], ["https://mivb.openplanner.team/stops/1425", "https://mivb.openplanner.team/stops/1464"], ["https://mivb.openplanner.team/stops/2838", "https://mivb.openplanner.team/stops/0010215"], ["https://mivb.openplanner.team/stops/2757C", "https://mivb.openplanner.team/stops/5451F"], ["https://mivb.openplanner.team/stops/1571", "https://mivb.openplanner.team/stops/0410146"], ["https://mivb.openplanner.team/stops/4209", "https://mivb.openplanner.team/stops/8813"], ["https://mivb.openplanner.team/stops/3410", "https://mivb.openplanner.team/stops/5305G"], ["https://mivb.openplanner.team/stops/1102", "https://mivb.openplanner.team/stops/5102F"], ["https://mivb.openplanner.team/stops/3424", "https://mivb.openplanner.team/stops/3425"], ["https://mivb.openplanner.team/stops/1758B", "https://mivb.openplanner.team/stops/1810"], ["https://mivb.openplanner.team/stops/1085", "https://mivb.openplanner.team/stops/1231"], ["https://mivb.openplanner.team/stops/1096", "https://mivb.openplanner.team/stops/4007G"], ["https://mivb.openplanner.team/stops/1382", "https://mivb.openplanner.team/stops/8121"], ["https://mivb.openplanner.team/stops/2544F", "https://mivb.openplanner.team/stops/2670F"], ["https://mivb.openplanner.team/stops/2584", "https://mivb.openplanner.team/stops/6869G"], ["https://mivb.openplanner.team/stops/2764G", "https://mivb.openplanner.team/stops/4076"], ["https://mivb.openplanner.team/stops/5406", "https://mivb.openplanner.team/stops/5475"], ["https://mivb.openplanner.team/stops/1860", "https://mivb.openplanner.team/stops/1875"], ["https://mivb.openplanner.team/stops/1339", "https://mivb.openplanner.team/stops/1587"], ["https://mivb.openplanner.team/stops/2575", "https://mivb.openplanner.team/stops/5007F"], ["https://mivb.openplanner.team/stops/3008", "https://mivb.openplanner.team/stops/5770F"], ["https://mivb.openplanner.team/stops/1943", "https://mivb.openplanner.team/stops/5057"], ["https://mivb.openplanner.team/stops/1475", "https://mivb.openplanner.team/stops/1477B"], ["https://mivb.openplanner.team/stops/5416", "https://mivb.openplanner.team/stops/5424"], ["https://mivb.openplanner.team/stops/8091", "https://mivb.openplanner.team/stops/0090323"], ["https://mivb.openplanner.team/stops/5959", "https://mivb.openplanner.team/stops/5965"], ["https://mivb.openplanner.team/stops/3459", "https://mivb.openplanner.team/stops/3702"], ["https://mivb.openplanner.team/stops/4357", "https://mivb.openplanner.team/stops/4456"], ["https://mivb.openplanner.team/stops/3240", "https://mivb.openplanner.team/stops/3763"], ["https://mivb.openplanner.team/stops/3612F", "https://mivb.openplanner.team/stops/7650110"], ["https://mivb.openplanner.team/stops/2315", "https://mivb.openplanner.team/stops/3063"], ["https://mivb.openplanner.team/stops/1516", "https://mivb.openplanner.team/stops/1563"], ["https://mivb.openplanner.team/stops/2807", "https://mivb.openplanner.team/stops/6504"], ["https://mivb.openplanner.team/stops/1937", "https://mivb.openplanner.team/stops/5860"], ["https://mivb.openplanner.team/stops/3166", "https://mivb.openplanner.team/stops/3412"], ["https://mivb.openplanner.team/stops/1584", "https://mivb.openplanner.team/stops/2028"], ["https://mivb.openplanner.team/stops/2249", "https://mivb.openplanner.team/stops/2250"], ["https://mivb.openplanner.team/stops/5722F", "https://mivb.openplanner.team/stops/5756"], ["https://mivb.openplanner.team/stops/1719", "https://mivb.openplanner.team/stops/3553"], ["https://mivb.openplanner.team/stops/3298", "https://mivb.openplanner.team/stops/6258"], ["https://mivb.openplanner.team/stops/2076", "https://mivb.openplanner.team/stops/2115"], ["https://mivb.openplanner.team/stops/1208", "https://mivb.openplanner.team/stops/2532"], ["https://mivb.openplanner.team/stops/1404", "https://mivb.openplanner.team/stops/3251"], ["https://mivb.openplanner.team/stops/1169", "https://mivb.openplanner.team/stops/8341"], ["https://mivb.openplanner.team/stops/1328", "https://mivb.openplanner.team/stops/1685F"], ["https://mivb.openplanner.team/stops/0040518", "https://mivb.openplanner.team/stops/8402"], ["https://mivb.openplanner.team/stops/3181", "https://mivb.openplanner.team/stops/5867F"], ["https://mivb.openplanner.team/stops/1826", "https://mivb.openplanner.team/stops/1835"], ["https://mivb.openplanner.team/stops/1831", "https://mivb.openplanner.team/stops/1832"], ["https://mivb.openplanner.team/stops/1080", "https://mivb.openplanner.team/stops/1334"], ["https://mivb.openplanner.team/stops/3122", "https://mivb.openplanner.team/stops/3572"], ["https://mivb.openplanner.team/stops/1714", "https://mivb.openplanner.team/stops/1869"], ["https://mivb.openplanner.team/stops/0230234", "https://mivb.openplanner.team/stops/33"], ["https://mivb.openplanner.team/stops/5812", "https://mivb.openplanner.team/stops/5813F"], ["https://mivb.openplanner.team/stops/3608", "https://mivb.openplanner.team/stops/3613F"], ["https://mivb.openplanner.team/stops/3099", "https://mivb.openplanner.team/stops/3180"], ["https://mivb.openplanner.team/stops/1009", "https://mivb.openplanner.team/stops/1066"], ["https://mivb.openplanner.team/stops/1230", "https://mivb.openplanner.team/stops/5175"], ["https://mivb.openplanner.team/stops/2508", "https://mivb.openplanner.team/stops/2519"], ["https://mivb.openplanner.team/stops/1383", "https://mivb.openplanner.team/stops/0120126"], ["https://mivb.openplanner.team/stops/2016", "https://mivb.openplanner.team/stops/2107"], ["https://mivb.openplanner.team/stops/4131B", "https://mivb.openplanner.team/stops/7790356"], ["https://mivb.openplanner.team/stops/1278", "https://mivb.openplanner.team/stops/1762"], ["https://mivb.openplanner.team/stops/8834", "https://mivb.openplanner.team/stops/7830352"], ["https://mivb.openplanner.team/stops/2080", "https://mivb.openplanner.team/stops/2107"], ["https://mivb.openplanner.team/stops/8121", "https://mivb.openplanner.team/stops/8122"], ["https://mivb.openplanner.team/stops/9959F", "https://mivb.openplanner.team/stops/9969F"], ["https://mivb.openplanner.team/stops/2514", "https://mivb.openplanner.team/stops/4602"], ["https://mivb.openplanner.team/stops/4123", "https://mivb.openplanner.team/stops/6171"], ["https://mivb.openplanner.team/stops/1954", "https://mivb.openplanner.team/stops/1963"], ["https://mivb.openplanner.team/stops/0473F", "https://mivb.openplanner.team/stops/0470459"], ["https://mivb.openplanner.team/stops/2337F", "https://mivb.openplanner.team/stops/5759F"], ["https://mivb.openplanner.team/stops/1002", "https://mivb.openplanner.team/stops/0300145"], ["https://mivb.openplanner.team/stops/1616", "https://mivb.openplanner.team/stops/5524"], ["https://mivb.openplanner.team/stops/8803", "https://mivb.openplanner.team/stops/7800155"], ["https://mivb.openplanner.team/stops/1487", "https://mivb.openplanner.team/stops/3751"], ["https://mivb.openplanner.team/stops/2974", "https://mivb.openplanner.team/stops/6204"], ["https://mivb.openplanner.team/stops/1731", "https://mivb.openplanner.team/stops/1751"], ["https://mivb.openplanner.team/stops/1193", "https://mivb.openplanner.team/stops/5174F"], ["https://mivb.openplanner.team/stops/2407", "https://mivb.openplanner.team/stops/5107B"], ["https://mivb.openplanner.team/stops/0810169", "https://mivb.openplanner.team/stops/1406"], ["https://mivb.openplanner.team/stops/1339", "https://mivb.openplanner.team/stops/1638B"], ["https://mivb.openplanner.team/stops/2136", "https://mivb.openplanner.team/stops/2148"], ["https://mivb.openplanner.team/stops/2112", "https://mivb.openplanner.team/stops/2156"], ["https://mivb.openplanner.team/stops/6606", "https://mivb.openplanner.team/stops/0270614"], ["https://mivb.openplanner.team/stops/1404", "https://mivb.openplanner.team/stops/1462"], ["https://mivb.openplanner.team/stops/1733", "https://mivb.openplanner.team/stops/3158"], ["https://mivb.openplanner.team/stops/2415", "https://mivb.openplanner.team/stops/5816B"], ["https://mivb.openplanner.team/stops/0090123", "https://mivb.openplanner.team/stops/0090223"], ["https://mivb.openplanner.team/stops/1720B", "https://mivb.openplanner.team/stops/1751"], ["https://mivb.openplanner.team/stops/4403", "https://mivb.openplanner.team/stops/4454"], ["https://mivb.openplanner.team/stops/1384", "https://mivb.openplanner.team/stops/1385"], ["https://mivb.openplanner.team/stops/5013F", "https://mivb.openplanner.team/stops/5072"], ["https://mivb.openplanner.team/stops/2955", "https://mivb.openplanner.team/stops/5848"], ["https://mivb.openplanner.team/stops/1732", "https://mivb.openplanner.team/stops/4159"], ["https://mivb.openplanner.team/stops/1030", "https://mivb.openplanner.team/stops/2271"], ["https://mivb.openplanner.team/stops/1674F", "https://mivb.openplanner.team/stops/6804F"], ["https://mivb.openplanner.team/stops/2705", "https://mivb.openplanner.team/stops/2769"], ["https://mivb.openplanner.team/stops/2518", "https://mivb.openplanner.team/stops/8702"], ["https://mivb.openplanner.team/stops/1766", "https://mivb.openplanner.team/stops/2504"], ["https://mivb.openplanner.team/stops/2539F", "https://mivb.openplanner.team/stops/6175"], ["https://mivb.openplanner.team/stops/1552", "https://mivb.openplanner.team/stops/9876"], ["https://mivb.openplanner.team/stops/1641", "https://mivb.openplanner.team/stops/1833B"], ["https://mivb.openplanner.team/stops/2936", "https://mivb.openplanner.team/stops/2937B"], ["https://mivb.openplanner.team/stops/4071", "https://mivb.openplanner.team/stops/8834"], ["https://mivb.openplanner.team/stops/1578", "https://mivb.openplanner.team/stops/0110325"], ["https://mivb.openplanner.team/stops/1862", "https://mivb.openplanner.team/stops/1864"], ["https://mivb.openplanner.team/stops/1354", "https://mivb.openplanner.team/stops/3508F"], ["https://mivb.openplanner.team/stops/5200F", "https://mivb.openplanner.team/stops/5264F"], ["https://mivb.openplanner.team/stops/2705", "https://mivb.openplanner.team/stops/5028"], ["https://mivb.openplanner.team/stops/2965", "https://mivb.openplanner.team/stops/5063"], ["https://mivb.openplanner.team/stops/1290", "https://mivb.openplanner.team/stops/4276"], ["https://mivb.openplanner.team/stops/1738", "https://mivb.openplanner.team/stops/5056"], ["https://mivb.openplanner.team/stops/2902", "https://mivb.openplanner.team/stops/5361"], ["https://mivb.openplanner.team/stops/2099", "https://mivb.openplanner.team/stops/2167"], ["https://mivb.openplanner.team/stops/5723B", "https://mivb.openplanner.team/stops/5921B"], ["https://mivb.openplanner.team/stops/0150129", "https://mivb.openplanner.team/stops/29"], ["https://mivb.openplanner.team/stops/1916", "https://mivb.openplanner.team/stops/5255F"], ["https://mivb.openplanner.team/stops/1302", "https://mivb.openplanner.team/stops/5551"], ["https://mivb.openplanner.team/stops/1083", "https://mivb.openplanner.team/stops/2269"], ["https://mivb.openplanner.team/stops/1550", "https://mivb.openplanner.team/stops/1554"], ["https://mivb.openplanner.team/stops/2940F", "https://mivb.openplanner.team/stops/5467"], ["https://mivb.openplanner.team/stops/2355", "https://mivb.openplanner.team/stops/4075"], ["https://mivb.openplanner.team/stops/0610663", "https://mivb.openplanner.team/stops/0610263"], ["https://mivb.openplanner.team/stops/4276", "https://mivb.openplanner.team/stops/7810254"], ["https://mivb.openplanner.team/stops/1726", "https://mivb.openplanner.team/stops/3624B"], ["https://mivb.openplanner.team/stops/1456", "https://mivb.openplanner.team/stops/0110425"], ["https://mivb.openplanner.team/stops/1829", "https://mivb.openplanner.team/stops/5510"], ["https://mivb.openplanner.team/stops/0130127", "https://mivb.openplanner.team/stops/0130227"], ["https://mivb.openplanner.team/stops/1019", "https://mivb.openplanner.team/stops/4258"], ["https://mivb.openplanner.team/stops/2704", "https://mivb.openplanner.team/stops/2705"], ["https://mivb.openplanner.team/stops/3331", "https://mivb.openplanner.team/stops/8031"], ["https://mivb.openplanner.team/stops/6021", "https://mivb.openplanner.team/stops/6056"], ["https://mivb.openplanner.team/stops/2018", "https://mivb.openplanner.team/stops/5455"], ["https://mivb.openplanner.team/stops/1256", "https://mivb.openplanner.team/stops/2564"], ["https://mivb.openplanner.team/stops/2665", "https://mivb.openplanner.team/stops/5720"], ["https://mivb.openplanner.team/stops/1765", "https://mivb.openplanner.team/stops/4063"], ["https://mivb.openplanner.team/stops/1526", "https://mivb.openplanner.team/stops/1531"], ["https://mivb.openplanner.team/stops/1728", "https://mivb.openplanner.team/stops/3922"], ["https://mivb.openplanner.team/stops/2017", "https://mivb.openplanner.team/stops/2029"], ["https://mivb.openplanner.team/stops/0704", "https://mivb.openplanner.team/stops/8331"], ["https://mivb.openplanner.team/stops/4122", "https://mivb.openplanner.team/stops/4130"], ["https://mivb.openplanner.team/stops/1492", "https://mivb.openplanner.team/stops/1498"], ["https://mivb.openplanner.team/stops/6302", "https://mivb.openplanner.team/stops/6364"], ["https://mivb.openplanner.team/stops/2939B", "https://mivb.openplanner.team/stops/9920F"], ["https://mivb.openplanner.team/stops/1160", "https://mivb.openplanner.team/stops/2927"], ["https://mivb.openplanner.team/stops/4955F", "https://mivb.openplanner.team/stops/7800355"], ["https://mivb.openplanner.team/stops/0900368", "https://mivb.openplanner.team/stops/9996"], ["https://mivb.openplanner.team/stops/2919", "https://mivb.openplanner.team/stops/6021"], ["https://mivb.openplanner.team/stops/0706", "https://mivb.openplanner.team/stops/6209"], ["https://mivb.openplanner.team/stops/7700105", "https://mivb.openplanner.team/stops/7700205"], ["https://mivb.openplanner.team/stops/2143B", "https://mivb.openplanner.team/stops/2144"], ["https://mivb.openplanner.team/stops/5529", "https://mivb.openplanner.team/stops/5530"], ["https://mivb.openplanner.team/stops/1758B", "https://mivb.openplanner.team/stops/0220333"], ["https://mivb.openplanner.team/stops/1453", "https://mivb.openplanner.team/stops/4348"], ["https://mivb.openplanner.team/stops/2247", "https://mivb.openplanner.team/stops/2248"], ["https://mivb.openplanner.team/stops/1859", "https://mivb.openplanner.team/stops/5504"], ["https://mivb.openplanner.team/stops/1726", "https://mivb.openplanner.team/stops/5068F"], ["https://mivb.openplanner.team/stops/2507", "https://mivb.openplanner.team/stops/4063"], ["https://mivb.openplanner.team/stops/1512", "https://mivb.openplanner.team/stops/1567"], ["https://mivb.openplanner.team/stops/0521", "https://mivb.openplanner.team/stops/0536"], ["https://mivb.openplanner.team/stops/1094", "https://mivb.openplanner.team/stops/1199F"], ["https://mivb.openplanner.team/stops/3207", "https://mivb.openplanner.team/stops/5046"], ["https://mivb.openplanner.team/stops/3556", "https://mivb.openplanner.team/stops/34"], ["https://mivb.openplanner.team/stops/2988", "https://mivb.openplanner.team/stops/5968"], ["https://mivb.openplanner.team/stops/0600962", "https://mivb.openplanner.team/stops/3320B"], ["https://mivb.openplanner.team/stops/1450", "https://mivb.openplanner.team/stops/5226F"], ["https://mivb.openplanner.team/stops/6005", "https://mivb.openplanner.team/stops/7730102"], ["https://mivb.openplanner.team/stops/2670F", "https://mivb.openplanner.team/stops/6099"], ["https://mivb.openplanner.team/stops/6191", "https://mivb.openplanner.team/stops/9291"], ["https://mivb.openplanner.team/stops/3625B", "https://mivb.openplanner.team/stops/6425F"], ["https://mivb.openplanner.team/stops/6432", "https://mivb.openplanner.team/stops/6433"], ["https://mivb.openplanner.team/stops/0536", "https://mivb.openplanner.team/stops/1030"], ["https://mivb.openplanner.team/stops/3180", "https://mivb.openplanner.team/stops/5803G"], ["https://mivb.openplanner.team/stops/1125", "https://mivb.openplanner.team/stops/7369"], ["https://mivb.openplanner.team/stops/1328", "https://mivb.openplanner.team/stops/1334"], ["https://mivb.openplanner.team/stops/1205", "https://mivb.openplanner.team/stops/2373"], ["https://mivb.openplanner.team/stops/1674F", "https://mivb.openplanner.team/stops/2506B"], ["https://mivb.openplanner.team/stops/1739", "https://mivb.openplanner.team/stops/6931G"], ["https://mivb.openplanner.team/stops/1519", "https://mivb.openplanner.team/stops/1561"], ["https://mivb.openplanner.team/stops/4501F", "https://mivb.openplanner.team/stops/5925"], ["https://mivb.openplanner.team/stops/3810", "https://mivb.openplanner.team/stops/3860"], ["https://mivb.openplanner.team/stops/5022", "https://mivb.openplanner.team/stops/6424F"], ["https://mivb.openplanner.team/stops/2351", "https://mivb.openplanner.team/stops/3480"], ["https://mivb.openplanner.team/stops/1010", "https://mivb.openplanner.team/stops/1065"], ["https://mivb.openplanner.team/stops/5045", "https://mivb.openplanner.team/stops/6081"], ["https://mivb.openplanner.team/stops/4126F", "https://mivb.openplanner.team/stops/7790356"], ["https://mivb.openplanner.team/stops/3236", "https://mivb.openplanner.team/stops/4659"], ["https://mivb.openplanner.team/stops/3280", "https://mivb.openplanner.team/stops/3338F"], ["https://mivb.openplanner.team/stops/1304", "https://mivb.openplanner.team/stops/2510"], ["https://mivb.openplanner.team/stops/9609", "https://mivb.openplanner.team/stops/9635"], ["https://mivb.openplanner.team/stops/3761", "https://mivb.openplanner.team/stops/5274F"], ["https://mivb.openplanner.team/stops/3109", "https://mivb.openplanner.team/stops/3166"], ["https://mivb.openplanner.team/stops/8211", "https://mivb.openplanner.team/stops/32"], ["https://mivb.openplanner.team/stops/4296", "https://mivb.openplanner.team/stops/4402"], ["https://mivb.openplanner.team/stops/1140", "https://mivb.openplanner.team/stops/1153"], ["https://mivb.openplanner.team/stops/3403", "https://mivb.openplanner.team/stops/4556"], ["https://mivb.openplanner.team/stops/3814", "https://mivb.openplanner.team/stops/5720F"], ["https://mivb.openplanner.team/stops/5776", "https://mivb.openplanner.team/stops/7820253"], ["https://mivb.openplanner.team/stops/2504", "https://mivb.openplanner.team/stops/2574"], ["https://mivb.openplanner.team/stops/4209", "https://mivb.openplanner.team/stops/4276"], ["https://mivb.openplanner.team/stops/4127", "https://mivb.openplanner.team/stops/4217"], ["https://mivb.openplanner.team/stops/1544", "https://mivb.openplanner.team/stops/1811"], ["https://mivb.openplanner.team/stops/6353", "https://mivb.openplanner.team/stops/6353F"], ["https://mivb.openplanner.team/stops/1710", "https://mivb.openplanner.team/stops/9103"], ["https://mivb.openplanner.team/stops/2002", "https://mivb.openplanner.team/stops/5053G"], ["https://mivb.openplanner.team/stops/2718", "https://mivb.openplanner.team/stops/2759"], ["https://mivb.openplanner.team/stops/2161", "https://mivb.openplanner.team/stops/2167"], ["https://mivb.openplanner.team/stops/3313", "https://mivb.openplanner.team/stops/9060"], ["https://mivb.openplanner.team/stops/2404F", "https://mivb.openplanner.team/stops/6166"], ["https://mivb.openplanner.team/stops/2819", "https://mivb.openplanner.team/stops/2852"], ["https://mivb.openplanner.team/stops/5803G", "https://mivb.openplanner.team/stops/5867F"], ["https://mivb.openplanner.team/stops/6443", "https://mivb.openplanner.team/stops/0020616"], ["https://mivb.openplanner.team/stops/1387", "https://mivb.openplanner.team/stops/9600B"], ["https://mivb.openplanner.team/stops/2215", "https://mivb.openplanner.team/stops/9979B"], ["https://mivb.openplanner.team/stops/3163", "https://mivb.openplanner.team/stops/6060"], ["https://mivb.openplanner.team/stops/8441", "https://mivb.openplanner.team/stops/0440349"], ["https://mivb.openplanner.team/stops/1273", "https://mivb.openplanner.team/stops/1318"], ["https://mivb.openplanner.team/stops/2714", "https://mivb.openplanner.team/stops/2715"], ["https://mivb.openplanner.team/stops/0270114", "https://mivb.openplanner.team/stops/0270314"], ["https://mivb.openplanner.team/stops/2260F", "https://mivb.openplanner.team/stops/6808G"], ["https://mivb.openplanner.team/stops/4341", "https://mivb.openplanner.team/stops/5422"], ["https://mivb.openplanner.team/stops/0089", "https://mivb.openplanner.team/stops/1113"], ["https://mivb.openplanner.team/stops/0420147", "https://mivb.openplanner.team/stops/9023"], ["https://mivb.openplanner.team/stops/5048", "https://mivb.openplanner.team/stops/5362F"], ["https://mivb.openplanner.team/stops/5515", "https://mivb.openplanner.team/stops/5524"], ["https://mivb.openplanner.team/stops/4107", "https://mivb.openplanner.team/stops/4156"], ["https://mivb.openplanner.team/stops/1082", "https://mivb.openplanner.team/stops/2269"], ["https://mivb.openplanner.team/stops/1165", "https://mivb.openplanner.team/stops/1166"], ["https://mivb.openplanner.team/stops/2331F", "https://mivb.openplanner.team/stops/6121F"], ["https://mivb.openplanner.team/stops/3517", "https://mivb.openplanner.team/stops/6158"], ["https://mivb.openplanner.team/stops/3113", "https://mivb.openplanner.team/stops/6019"], ["https://mivb.openplanner.team/stops/1912", "https://mivb.openplanner.team/stops/1976"], ["https://mivb.openplanner.team/stops/2309C", "https://mivb.openplanner.team/stops/3008"], ["https://mivb.openplanner.team/stops/3558", "https://mivb.openplanner.team/stops/4306"], ["https://mivb.openplanner.team/stops/5258", "https://mivb.openplanner.team/stops/5462F"], ["https://mivb.openplanner.team/stops/5407", "https://mivb.openplanner.team/stops/5468"], ["https://mivb.openplanner.team/stops/6202", "https://mivb.openplanner.team/stops/6304"], ["https://mivb.openplanner.team/stops/5040", "https://mivb.openplanner.team/stops/5041F"], ["https://mivb.openplanner.team/stops/1424", "https://mivb.openplanner.team/stops/1459"], ["https://mivb.openplanner.team/stops/6097B", "https://mivb.openplanner.team/stops/6174F"], ["https://mivb.openplanner.team/stops/1929", "https://mivb.openplanner.team/stops/2702"], ["https://mivb.openplanner.team/stops/5066", "https://mivb.openplanner.team/stops/5066F"], ["https://mivb.openplanner.team/stops/4004", "https://mivb.openplanner.team/stops/4273F"], ["https://mivb.openplanner.team/stops/4058F", "https://mivb.openplanner.team/stops/5168"], ["https://mivb.openplanner.team/stops/2080", "https://mivb.openplanner.team/stops/4309"], ["https://mivb.openplanner.team/stops/5507", "https://mivb.openplanner.team/stops/5555"], ["https://mivb.openplanner.team/stops/0070521", "https://mivb.openplanner.team/stops/0070621"], ["https://mivb.openplanner.team/stops/0473F", "https://mivb.openplanner.team/stops/0470351"], ["https://mivb.openplanner.team/stops/6602", "https://mivb.openplanner.team/stops/6656"], ["https://mivb.openplanner.team/stops/0410246", "https://mivb.openplanner.team/stops/0410346"], ["https://mivb.openplanner.team/stops/1245", "https://mivb.openplanner.team/stops/6608G"], ["https://mivb.openplanner.team/stops/1654", "https://mivb.openplanner.team/stops/3532"], ["https://mivb.openplanner.team/stops/6649F", "https://mivb.openplanner.team/stops/6754"], ["https://mivb.openplanner.team/stops/0240435", "https://mivb.openplanner.team/stops/35"], ["https://mivb.openplanner.team/stops/1316", "https://mivb.openplanner.team/stops/3317"], ["https://mivb.openplanner.team/stops/8731", "https://mivb.openplanner.team/stops/7730602"], ["https://mivb.openplanner.team/stops/4213", "https://mivb.openplanner.team/stops/4253"], ["https://mivb.openplanner.team/stops/1064", "https://mivb.openplanner.team/stops/4107"], ["https://mivb.openplanner.team/stops/6442", "https://mivb.openplanner.team/stops/8021"], ["https://mivb.openplanner.team/stops/0610663", "https://mivb.openplanner.team/stops/2264"], ["https://mivb.openplanner.team/stops/0620164", "https://mivb.openplanner.team/stops/1225"], ["https://mivb.openplanner.team/stops/3572", "https://mivb.openplanner.team/stops/3572F"], ["https://mivb.openplanner.team/stops/3226B", "https://mivb.openplanner.team/stops/3263F"], ["https://mivb.openplanner.team/stops/6465", "https://mivb.openplanner.team/stops/0050319"], ["https://mivb.openplanner.team/stops/5227F", "https://mivb.openplanner.team/stops/0120326"], ["https://mivb.openplanner.team/stops/2579", "https://mivb.openplanner.team/stops/4655"], ["https://mivb.openplanner.team/stops/3156", "https://mivb.openplanner.team/stops/6157F"], ["https://mivb.openplanner.team/stops/5762", "https://mivb.openplanner.team/stops/6177"], ["https://mivb.openplanner.team/stops/1125", "https://mivb.openplanner.team/stops/1168"], ["https://mivb.openplanner.team/stops/6474F", "https://mivb.openplanner.team/stops/6475F"], ["https://mivb.openplanner.team/stops/1919", "https://mivb.openplanner.team/stops/1972"], ["https://mivb.openplanner.team/stops/2895", "https://mivb.openplanner.team/stops/9946"], ["https://mivb.openplanner.team/stops/6308F", "https://mivb.openplanner.team/stops/6357"], ["https://mivb.openplanner.team/stops/0821", "https://mivb.openplanner.team/stops/1460"], ["https://mivb.openplanner.team/stops/1535", "https://mivb.openplanner.team/stops/3273"], ["https://mivb.openplanner.team/stops/1818", "https://mivb.openplanner.team/stops/1857"], ["https://mivb.openplanner.team/stops/1492", "https://mivb.openplanner.team/stops/7"], ["https://mivb.openplanner.team/stops/3908", "https://mivb.openplanner.team/stops/3954"], ["https://mivb.openplanner.team/stops/1972", "https://mivb.openplanner.team/stops/1973"], ["https://mivb.openplanner.team/stops/0810369", "https://mivb.openplanner.team/stops/1424"], ["https://mivb.openplanner.team/stops/5405", "https://mivb.openplanner.team/stops/7529"], ["https://mivb.openplanner.team/stops/9652", "https://mivb.openplanner.team/stops/9682"], ["https://mivb.openplanner.team/stops/5076F", "https://mivb.openplanner.team/stops/7770158"], ["https://mivb.openplanner.team/stops/2250", "https://mivb.openplanner.team/stops/3266"], ["https://mivb.openplanner.team/stops/9655", "https://mivb.openplanner.team/stops/9679"], ["https://mivb.openplanner.team/stops/8102", "https://mivb.openplanner.team/stops/0100224"], ["https://mivb.openplanner.team/stops/2209", "https://mivb.openplanner.team/stops/0440649"], ["https://mivb.openplanner.team/stops/2935", "https://mivb.openplanner.team/stops/5848"], ["https://mivb.openplanner.team/stops/1260", "https://mivb.openplanner.team/stops/1488"], ["https://mivb.openplanner.team/stops/3210B", "https://mivb.openplanner.team/stops/3273"], ["https://mivb.openplanner.team/stops/0636", "https://mivb.openplanner.team/stops/6862"], ["https://mivb.openplanner.team/stops/1197", "https://mivb.openplanner.team/stops/4053G"], ["https://mivb.openplanner.team/stops/2145", "https://mivb.openplanner.team/stops/5418"], ["https://mivb.openplanner.team/stops/5815F", "https://mivb.openplanner.team/stops/5854"], ["https://mivb.openplanner.team/stops/4205", "https://mivb.openplanner.team/stops/4207"], ["https://mivb.openplanner.team/stops/7820353", "https://mivb.openplanner.team/stops/9051F"], ["https://mivb.openplanner.team/stops/0539", "https://mivb.openplanner.team/stops/0430748"], ["https://mivb.openplanner.team/stops/2122", "https://mivb.openplanner.team/stops/6408"], ["https://mivb.openplanner.team/stops/5711F", "https://mivb.openplanner.team/stops/5765F"], ["https://mivb.openplanner.team/stops/4212B", "https://mivb.openplanner.team/stops/7780157"], ["https://mivb.openplanner.team/stops/4127", "https://mivb.openplanner.team/stops/6171"], ["https://mivb.openplanner.team/stops/6062", "https://mivb.openplanner.team/stops/6359"], ["https://mivb.openplanner.team/stops/2900", "https://mivb.openplanner.team/stops/7271"], ["https://mivb.openplanner.team/stops/5968", "https://mivb.openplanner.team/stops/9776"], ["https://mivb.openplanner.team/stops/3164", "https://mivb.openplanner.team/stops/3414"], ["https://mivb.openplanner.team/stops/2279", "https://mivb.openplanner.team/stops/8012"], ["https://mivb.openplanner.team/stops/0070621", "https://mivb.openplanner.team/stops/8201"], ["https://mivb.openplanner.team/stops/8813", "https://mivb.openplanner.team/stops/7810254"], ["https://mivb.openplanner.team/stops/0600762", "https://mivb.openplanner.team/stops/4323"], ["https://mivb.openplanner.team/stops/2927", "https://mivb.openplanner.team/stops/19"], ["https://mivb.openplanner.team/stops/3513", "https://mivb.openplanner.team/stops/3558"], ["https://mivb.openplanner.team/stops/5152", "https://mivb.openplanner.team/stops/5915"], ["https://mivb.openplanner.team/stops/2807", "https://mivb.openplanner.team/stops/6505"], ["https://mivb.openplanner.team/stops/2752", "https://mivb.openplanner.team/stops/3524"], ["https://mivb.openplanner.team/stops/2728", "https://mivb.openplanner.team/stops/5271F"], ["https://mivb.openplanner.team/stops/2110B", "https://mivb.openplanner.team/stops/2140"], ["https://mivb.openplanner.team/stops/1132", "https://mivb.openplanner.team/stops/1729"], ["https://mivb.openplanner.team/stops/4253", "https://mivb.openplanner.team/stops/13"], ["https://mivb.openplanner.team/stops/6808G", "https://mivb.openplanner.team/stops/8361"], ["https://mivb.openplanner.team/stops/4217", "https://mivb.openplanner.team/stops/4267"], ["https://mivb.openplanner.team/stops/0650165", "https://mivb.openplanner.team/stops/2470"], ["https://mivb.openplanner.team/stops/2267", "https://mivb.openplanner.team/stops/8442"], ["https://mivb.openplanner.team/stops/2725", "https://mivb.openplanner.team/stops/37"], ["https://mivb.openplanner.team/stops/3253", "https://mivb.openplanner.team/stops/8382"], ["https://mivb.openplanner.team/stops/1110", "https://mivb.openplanner.team/stops/1939"], ["https://mivb.openplanner.team/stops/0230134", "https://mivb.openplanner.team/stops/0230334"], ["https://mivb.openplanner.team/stops/1527", "https://mivb.openplanner.team/stops/2028"], ["https://mivb.openplanner.team/stops/6078", "https://mivb.openplanner.team/stops/6109"], ["https://mivb.openplanner.team/stops/2244F", "https://mivb.openplanner.team/stops/3762"], ["https://mivb.openplanner.team/stops/1465", "https://mivb.openplanner.team/stops/0010415"], ["https://mivb.openplanner.team/stops/1317", "https://mivb.openplanner.team/stops/1418B"], ["https://mivb.openplanner.team/stops/2294B", "https://mivb.openplanner.team/stops/2895"], ["https://mivb.openplanner.team/stops/2359", "https://mivb.openplanner.team/stops/3002"], ["https://mivb.openplanner.team/stops/0160130", "https://mivb.openplanner.team/stops/8162"], ["https://mivb.openplanner.team/stops/1328", "https://mivb.openplanner.team/stops/1686F"], ["https://mivb.openplanner.team/stops/5727F", "https://mivb.openplanner.team/stops/5731F"], ["https://mivb.openplanner.team/stops/1527", "https://mivb.openplanner.team/stops/1552"], ["https://mivb.openplanner.team/stops/4315", "https://mivb.openplanner.team/stops/5423"], ["https://mivb.openplanner.team/stops/1601", "https://mivb.openplanner.team/stops/5533"], ["https://mivb.openplanner.team/stops/1598", "https://mivb.openplanner.team/stops/4299"], ["https://mivb.openplanner.team/stops/0702", "https://mivb.openplanner.team/stops/8351"], ["https://mivb.openplanner.team/stops/2962", "https://mivb.openplanner.team/stops/5475"], ["https://mivb.openplanner.team/stops/0901", "https://mivb.openplanner.team/stops/0906"], ["https://mivb.openplanner.team/stops/8833", "https://mivb.openplanner.team/stops/8834"], ["https://mivb.openplanner.team/stops/3122", "https://mivb.openplanner.team/stops/3572F"], ["https://mivb.openplanner.team/stops/1514", "https://mivb.openplanner.team/stops/6056"], ["https://mivb.openplanner.team/stops/0650265", "https://mivb.openplanner.team/stops/5018F"], ["https://mivb.openplanner.team/stops/5018F", "https://mivb.openplanner.team/stops/6430F"], ["https://mivb.openplanner.team/stops/1153", "https://mivb.openplanner.team/stops/0090123"], ["https://mivb.openplanner.team/stops/1625", "https://mivb.openplanner.team/stops/1660B"], ["https://mivb.openplanner.team/stops/1841", "https://mivb.openplanner.team/stops/5555"], ["https://mivb.openplanner.team/stops/9754B", "https://mivb.openplanner.team/stops/9787"], ["https://mivb.openplanner.team/stops/1009", "https://mivb.openplanner.team/stops/1065"], ["https://mivb.openplanner.team/stops/8651", "https://mivb.openplanner.team/stops/7650210"], ["https://mivb.openplanner.team/stops/1861", "https://mivb.openplanner.team/stops/5502"], ["https://mivb.openplanner.team/stops/6312", "https://mivb.openplanner.team/stops/0310244"], ["https://mivb.openplanner.team/stops/8221", "https://mivb.openplanner.team/stops/33"], ["https://mivb.openplanner.team/stops/6171", "https://mivb.openplanner.team/stops/7790556"], ["https://mivb.openplanner.team/stops/2079", "https://mivb.openplanner.team/stops/4299"], ["https://mivb.openplanner.team/stops/2539", "https://mivb.openplanner.team/stops/2540"], ["https://mivb.openplanner.team/stops/1271B", "https://mivb.openplanner.team/stops/1476"], ["https://mivb.openplanner.team/stops/1255", "https://mivb.openplanner.team/stops/3760"], ["https://mivb.openplanner.team/stops/4003G", "https://mivb.openplanner.team/stops/4101"], ["https://mivb.openplanner.team/stops/3207", "https://mivb.openplanner.team/stops/3276"], ["https://mivb.openplanner.team/stops/3628", "https://mivb.openplanner.team/stops/0320443"], ["https://mivb.openplanner.team/stops/9169", "https://mivb.openplanner.team/stops/9600B"], ["https://mivb.openplanner.team/stops/5058", "https://mivb.openplanner.team/stops/5058F"], ["https://mivb.openplanner.team/stops/2715", "https://mivb.openplanner.team/stops/5258"], ["https://mivb.openplanner.team/stops/4110", "https://mivb.openplanner.team/stops/5166"], ["https://mivb.openplanner.team/stops/2910", "https://mivb.openplanner.team/stops/5872"], ["https://mivb.openplanner.team/stops/1871B", "https://mivb.openplanner.team/stops/6009"], ["https://mivb.openplanner.team/stops/2313", "https://mivb.openplanner.team/stops/2822"], ["https://mivb.openplanner.team/stops/0010115", "https://mivb.openplanner.team/stops/0010415"], ["https://mivb.openplanner.team/stops/1002", "https://mivb.openplanner.team/stops/8302"], ["https://mivb.openplanner.team/stops/1487", "https://mivb.openplanner.team/stops/3752"], ["https://mivb.openplanner.team/stops/1270B", "https://mivb.openplanner.team/stops/1418B"], ["https://mivb.openplanner.team/stops/4308", "https://mivb.openplanner.team/stops/4309"], ["https://mivb.openplanner.team/stops/6464", "https://mivb.openplanner.team/stops/0050319"], ["https://mivb.openplanner.team/stops/1546", "https://mivb.openplanner.team/stops/6476"], ["https://mivb.openplanner.team/stops/0350640", "https://mivb.openplanner.team/stops/9979B"], ["https://mivb.openplanner.team/stops/4311", "https://mivb.openplanner.team/stops/4357"], ["https://mivb.openplanner.team/stops/2112", "https://mivb.openplanner.team/stops/2157"], ["https://mivb.openplanner.team/stops/1757", "https://mivb.openplanner.team/stops/3550"], ["https://mivb.openplanner.team/stops/5102", "https://mivb.openplanner.team/stops/5174"], ["https://mivb.openplanner.team/stops/1534", "https://mivb.openplanner.team/stops/3902"], ["https://mivb.openplanner.team/stops/3558", "https://mivb.openplanner.team/stops/5264F"], ["https://mivb.openplanner.team/stops/1729", "https://mivb.openplanner.team/stops/1776"], ["https://mivb.openplanner.team/stops/2939B", "https://mivb.openplanner.team/stops/2952B"], ["https://mivb.openplanner.team/stops/1258G", "https://mivb.openplanner.team/stops/5723B"], ["https://mivb.openplanner.team/stops/1328", "https://mivb.openplanner.team/stops/9825F"], ["https://mivb.openplanner.team/stops/4314", "https://mivb.openplanner.team/stops/5452"], ["https://mivb.openplanner.team/stops/4126F", "https://mivb.openplanner.team/stops/4129"], ["https://mivb.openplanner.team/stops/0040618", "https://mivb.openplanner.team/stops/8401"], ["https://mivb.openplanner.team/stops/8411", "https://mivb.openplanner.team/stops/0410446"], ["https://mivb.openplanner.team/stops/5220F", "https://mivb.openplanner.team/stops/5222F"], ["https://mivb.openplanner.team/stops/1553", "https://mivb.openplanner.team/stops/1554"], ["https://mivb.openplanner.team/stops/1258G", "https://mivb.openplanner.team/stops/5722"], ["https://mivb.openplanner.team/stops/1114B", "https://mivb.openplanner.team/stops/8471"], ["https://mivb.openplanner.team/stops/2217F", "https://mivb.openplanner.team/stops/7720103"], ["https://mivb.openplanner.team/stops/1738", "https://mivb.openplanner.team/stops/5057"], ["https://mivb.openplanner.team/stops/1370", "https://mivb.openplanner.team/stops/6862"], ["https://mivb.openplanner.team/stops/3112", "https://mivb.openplanner.team/stops/3309F"], ["https://mivb.openplanner.team/stops/2099", "https://mivb.openplanner.team/stops/2161"], ["https://mivb.openplanner.team/stops/6201F", "https://mivb.openplanner.team/stops/6413F"], ["https://mivb.openplanner.team/stops/2329", "https://mivb.openplanner.team/stops/9635"], ["https://mivb.openplanner.team/stops/2181", "https://mivb.openplanner.team/stops/2264"], ["https://mivb.openplanner.team/stops/6409F", "https://mivb.openplanner.team/stops/6410"], ["https://mivb.openplanner.team/stops/2023", "https://mivb.openplanner.team/stops/2460"], ["https://mivb.openplanner.team/stops/1095", "https://mivb.openplanner.team/stops/1209"], ["https://mivb.openplanner.team/stops/1995", "https://mivb.openplanner.team/stops/5917F"], ["https://mivb.openplanner.team/stops/1056", "https://mivb.openplanner.team/stops/4253"], ["https://mivb.openplanner.team/stops/4006G", "https://mivb.openplanner.team/stops/4054G"], ["https://mivb.openplanner.team/stops/9801", "https://mivb.openplanner.team/stops/9825F"], ["https://mivb.openplanner.team/stops/1154", "https://mivb.openplanner.team/stops/1424"], ["https://mivb.openplanner.team/stops/3328", "https://mivb.openplanner.team/stops/3334F"], ["https://mivb.openplanner.team/stops/5816G", "https://mivb.openplanner.team/stops/5853G"], ["https://mivb.openplanner.team/stops/1578", "https://mivb.openplanner.team/stops/3910"], ["https://mivb.openplanner.team/stops/6484B", "https://mivb.openplanner.team/stops/7690106"], ["https://mivb.openplanner.team/stops/2937B", "https://mivb.openplanner.team/stops/2954B"], ["https://mivb.openplanner.team/stops/1456", "https://mivb.openplanner.team/stops/0110325"], ["https://mivb.openplanner.team/stops/3347", "https://mivb.openplanner.team/stops/6445"], ["https://mivb.openplanner.team/stops/1909", "https://mivb.openplanner.team/stops/1981"], ["https://mivb.openplanner.team/stops/5815", "https://mivb.openplanner.team/stops/5815F"], ["https://mivb.openplanner.team/stops/1710", "https://mivb.openplanner.team/stops/4063"], ["https://mivb.openplanner.team/stops/3467B", "https://mivb.openplanner.team/stops/3763"], ["https://mivb.openplanner.team/stops/2960F", "https://mivb.openplanner.team/stops/2972"], ["https://mivb.openplanner.team/stops/4007G", "https://mivb.openplanner.team/stops/6004"], ["https://mivb.openplanner.team/stops/2018", "https://mivb.openplanner.team/stops/5456"], ["https://mivb.openplanner.team/stops/1912", "https://mivb.openplanner.team/stops/5408"], ["https://mivb.openplanner.team/stops/4506", "https://mivb.openplanner.team/stops/5920H"], ["https://mivb.openplanner.team/stops/8252", "https://mivb.openplanner.team/stops/0250436"], ["https://mivb.openplanner.team/stops/2014", "https://mivb.openplanner.team/stops/2026"], ["https://mivb.openplanner.team/stops/1500", "https://mivb.openplanner.team/stops/5272F"], ["https://mivb.openplanner.team/stops/6302", "https://mivb.openplanner.team/stops/6365"], ["https://mivb.openplanner.team/stops/2146", "https://mivb.openplanner.team/stops/2157"], ["https://mivb.openplanner.team/stops/5418", "https://mivb.openplanner.team/stops/5456"], ["https://mivb.openplanner.team/stops/3524", "https://mivb.openplanner.team/stops/3526"], ["https://mivb.openplanner.team/stops/4955F", "https://mivb.openplanner.team/stops/7800455"], ["https://mivb.openplanner.team/stops/5111B", "https://mivb.openplanner.team/stops/5158"], ["https://mivb.openplanner.team/stops/9607", "https://mivb.openplanner.team/stops/9756"], ["https://mivb.openplanner.team/stops/5038", "https://mivb.openplanner.team/stops/5039"], ["https://mivb.openplanner.team/stops/1766", "https://mivb.openplanner.team/stops/1782"], ["https://mivb.openplanner.team/stops/5013B", "https://mivb.openplanner.team/stops/0460250"], ["https://mivb.openplanner.team/stops/4340", "https://mivb.openplanner.team/stops/5430"], ["https://mivb.openplanner.team/stops/0610363", "https://mivb.openplanner.team/stops/0610263"], ["https://mivb.openplanner.team/stops/1713", "https://mivb.openplanner.team/stops/1870"], ["https://mivb.openplanner.team/stops/1972", "https://mivb.openplanner.team/stops/5254"], ["https://mivb.openplanner.team/stops/0521", "https://mivb.openplanner.team/stops/0520161"], ["https://mivb.openplanner.team/stops/2226", "https://mivb.openplanner.team/stops/7690206"], ["https://mivb.openplanner.team/stops/5920C", "https://mivb.openplanner.team/stops/5920H"], ["https://mivb.openplanner.team/stops/2362B", "https://mivb.openplanner.team/stops/2364"], ["https://mivb.openplanner.team/stops/8461", "https://mivb.openplanner.team/stops/8462"], ["https://mivb.openplanner.team/stops/0080422", "https://mivb.openplanner.team/stops/9996"], ["https://mivb.openplanner.team/stops/1458", "https://mivb.openplanner.team/stops/8102"], ["https://mivb.openplanner.team/stops/6202", "https://mivb.openplanner.team/stops/6418"], ["https://mivb.openplanner.team/stops/1450", "https://mivb.openplanner.team/stops/5223F"], ["https://mivb.openplanner.team/stops/1105", "https://mivb.openplanner.team/stops/4601"], ["https://mivb.openplanner.team/stops/1095", "https://mivb.openplanner.team/stops/4655"], ["https://mivb.openplanner.team/stops/0601262", "https://mivb.openplanner.team/stops/0606"], ["https://mivb.openplanner.team/stops/5026", "https://mivb.openplanner.team/stops/5854"], ["https://mivb.openplanner.team/stops/1942", "https://mivb.openplanner.team/stops/2708G"], ["https://mivb.openplanner.team/stops/6173", "https://mivb.openplanner.team/stops/7800255"], ["https://mivb.openplanner.team/stops/2564", "https://mivb.openplanner.team/stops/4601"], ["https://mivb.openplanner.team/stops/6103", "https://mivb.openplanner.team/stops/6103F"], ["https://mivb.openplanner.team/stops/5811", "https://mivb.openplanner.team/stops/5857"], ["https://mivb.openplanner.team/stops/1514", "https://mivb.openplanner.team/stops/6214"], ["https://mivb.openplanner.team/stops/1539", "https://mivb.openplanner.team/stops/3920"], ["https://mivb.openplanner.team/stops/1370", "https://mivb.openplanner.team/stops/7621"], ["https://mivb.openplanner.team/stops/4349", "https://mivb.openplanner.team/stops/5422"], ["https://mivb.openplanner.team/stops/1903", "https://mivb.openplanner.team/stops/6119F"], ["https://mivb.openplanner.team/stops/1812", "https://mivb.openplanner.team/stops/1863"], ["https://mivb.openplanner.team/stops/1131B", "https://mivb.openplanner.team/stops/1769"], ["https://mivb.openplanner.team/stops/1322", "https://mivb.openplanner.team/stops/9986F"], ["https://mivb.openplanner.team/stops/1519", "https://mivb.openplanner.team/stops/1560"], ["https://mivb.openplanner.team/stops/3410", "https://mivb.openplanner.team/stops/5356"], ["https://mivb.openplanner.team/stops/1815", "https://mivb.openplanner.team/stops/5282F"], ["https://mivb.openplanner.team/stops/2333F", "https://mivb.openplanner.team/stops/2334F"], ["https://mivb.openplanner.team/stops/2351", "https://mivb.openplanner.team/stops/3481"], ["https://mivb.openplanner.team/stops/6055", "https://mivb.openplanner.team/stops/6056"], ["https://mivb.openplanner.team/stops/1531", "https://mivb.openplanner.team/stops/1551"], ["https://mivb.openplanner.team/stops/3236", "https://mivb.openplanner.team/stops/4658"], ["https://mivb.openplanner.team/stops/6434F", "https://mivb.openplanner.team/stops/6435"], ["https://mivb.openplanner.team/stops/1386", "https://mivb.openplanner.team/stops/0120526"], ["https://mivb.openplanner.team/stops/3109", "https://mivb.openplanner.team/stops/3167"], ["https://mivb.openplanner.team/stops/7810154", "https://mivb.openplanner.team/stops/7810254"], ["https://mivb.openplanner.team/stops/2990", "https://mivb.openplanner.team/stops/3454"], ["https://mivb.openplanner.team/stops/1140", "https://mivb.openplanner.team/stops/1152"], ["https://mivb.openplanner.team/stops/6604F", "https://mivb.openplanner.team/stops/0270514"], ["https://mivb.openplanner.team/stops/4958F", "https://mivb.openplanner.team/stops/4998"], ["https://mivb.openplanner.team/stops/4069", "https://mivb.openplanner.team/stops/4206"], ["https://mivb.openplanner.team/stops/4123", "https://mivb.openplanner.team/stops/4130F"], ["https://mivb.openplanner.team/stops/2504", "https://mivb.openplanner.team/stops/2575"], ["https://mivb.openplanner.team/stops/1252", "https://mivb.openplanner.team/stops/1302"], ["https://mivb.openplanner.team/stops/2562B", "https://mivb.openplanner.team/stops/7700205"], ["https://mivb.openplanner.team/stops/1258B", "https://mivb.openplanner.team/stops/5921B"], ["https://mivb.openplanner.team/stops/8041", "https://mivb.openplanner.team/stops/8042"], ["https://mivb.openplanner.team/stops/2002", "https://mivb.openplanner.team/stops/5053B"], ["https://mivb.openplanner.team/stops/2718", "https://mivb.openplanner.team/stops/2757C"], ["https://mivb.openplanner.team/stops/2671F", "https://mivb.openplanner.team/stops/0350240"], ["https://mivb.openplanner.team/stops/1988", "https://mivb.openplanner.team/stops/8432"], ["https://mivb.openplanner.team/stops/2573B", "https://mivb.openplanner.team/stops/6865F"], ["https://mivb.openplanner.team/stops/5803G", "https://mivb.openplanner.team/stops/5866"], ["https://mivb.openplanner.team/stops/2209", "https://mivb.openplanner.team/stops/0430848"], ["https://mivb.openplanner.team/stops/8322", "https://mivb.openplanner.team/stops/0370543"], ["https://mivb.openplanner.team/stops/1202", "https://mivb.openplanner.team/stops/7750260"], ["https://mivb.openplanner.team/stops/1352", "https://mivb.openplanner.team/stops/3517"], ["https://mivb.openplanner.team/stops/8441", "https://mivb.openplanner.team/stops/0440249"], ["https://mivb.openplanner.team/stops/6604F", "https://mivb.openplanner.team/stops/6654F"], ["https://mivb.openplanner.team/stops/1148C", "https://mivb.openplanner.team/stops/1474B"], ["https://mivb.openplanner.team/stops/3281", "https://mivb.openplanner.team/stops/6005"], ["https://mivb.openplanner.team/stops/5858", "https://mivb.openplanner.team/stops/6253"], ["https://mivb.openplanner.team/stops/1205", "https://mivb.openplanner.team/stops/1206"], ["https://mivb.openplanner.team/stops/2727", "https://mivb.openplanner.team/stops/3530"], ["https://mivb.openplanner.team/stops/2871", "https://mivb.openplanner.team/stops/6869G"], ["https://mivb.openplanner.team/stops/1251", "https://mivb.openplanner.team/stops/2131"], ["https://mivb.openplanner.team/stops/3008", "https://mivb.openplanner.team/stops/5320"], ["https://mivb.openplanner.team/stops/1775", "https://mivb.openplanner.team/stops/6804F"], ["https://mivb.openplanner.team/stops/0511", "https://mivb.openplanner.team/stops/0431048"], ["https://mivb.openplanner.team/stops/0100124", "https://mivb.openplanner.team/stops/0100524"], ["https://mivb.openplanner.team/stops/0440149", "https://mivb.openplanner.team/stops/0440349"], ["https://mivb.openplanner.team/stops/5855", "https://mivb.openplanner.team/stops/5855F"], ["https://mivb.openplanner.team/stops/1477B", "https://mivb.openplanner.team/stops/9"], ["https://mivb.openplanner.team/stops/1881", "https://mivb.openplanner.team/stops/1884"], ["https://mivb.openplanner.team/stops/1024", "https://mivb.openplanner.team/stops/1051"], ["https://mivb.openplanner.team/stops/0631", "https://mivb.openplanner.team/stops/6862"], ["https://mivb.openplanner.team/stops/1318", "https://mivb.openplanner.team/stops/1425"], ["https://mivb.openplanner.team/stops/5515", "https://mivb.openplanner.team/stops/5525"], ["https://mivb.openplanner.team/stops/3503", "https://mivb.openplanner.team/stops/6354"], ["https://mivb.openplanner.team/stops/1152", "https://mivb.openplanner.team/stops/9983"], ["https://mivb.openplanner.team/stops/2540", "https://mivb.openplanner.team/stops/0350240"], ["https://mivb.openplanner.team/stops/2026", "https://mivb.openplanner.team/stops/4314"], ["https://mivb.openplanner.team/stops/0600462", "https://mivb.openplanner.team/stops/5286"], ["https://mivb.openplanner.team/stops/1286", "https://mivb.openplanner.team/stops/8471"], ["https://mivb.openplanner.team/stops/4348", "https://mivb.openplanner.team/stops/5453"], ["https://mivb.openplanner.team/stops/5922", "https://mivb.openplanner.team/stops/5923"], ["https://mivb.openplanner.team/stops/2285G", "https://mivb.openplanner.team/stops/2286G"], ["https://mivb.openplanner.team/stops/2510", "https://mivb.openplanner.team/stops/2569"], ["https://mivb.openplanner.team/stops/0722", "https://mivb.openplanner.team/stops/6077F"], ["https://mivb.openplanner.team/stops/1921", "https://mivb.openplanner.team/stops/4856B"], ["https://mivb.openplanner.team/stops/8021", "https://mivb.openplanner.team/stops/8022"], ["https://mivb.openplanner.team/stops/1929", "https://mivb.openplanner.team/stops/2701"], ["https://mivb.openplanner.team/stops/0529", "https://mivb.openplanner.team/stops/0430748"], ["https://mivb.openplanner.team/stops/2215", "https://mivb.openplanner.team/stops/8361"], ["https://mivb.openplanner.team/stops/3360F", "https://mivb.openplanner.team/stops/6210"], ["https://mivb.openplanner.team/stops/2080", "https://mivb.openplanner.team/stops/4310"], ["https://mivb.openplanner.team/stops/3123", "https://mivb.openplanner.team/stops/6158"], ["https://mivb.openplanner.team/stops/3466", "https://mivb.openplanner.team/stops/4556"], ["https://mivb.openplanner.team/stops/2009", "https://mivb.openplanner.team/stops/5282F"], ["https://mivb.openplanner.team/stops/1245", "https://mivb.openplanner.team/stops/6648"], ["https://mivb.openplanner.team/stops/1135", "https://mivb.openplanner.team/stops/6008"], ["https://mivb.openplanner.team/stops/2303", "https://mivb.openplanner.team/stops/3320B"], ["https://mivb.openplanner.team/stops/6425F", "https://mivb.openplanner.team/stops/6430F"], ["https://mivb.openplanner.team/stops/1208", "https://mivb.openplanner.team/stops/2561"], ["https://mivb.openplanner.team/stops/2028", "https://mivb.openplanner.team/stops/8131"], ["https://mivb.openplanner.team/stops/2717", "https://mivb.openplanner.team/stops/2760B"], ["https://mivb.openplanner.team/stops/1221", "https://mivb.openplanner.team/stops/5859"], ["https://mivb.openplanner.team/stops/1716", "https://mivb.openplanner.team/stops/32"], ["https://mivb.openplanner.team/stops/0620164", "https://mivb.openplanner.team/stops/1227"], ["https://mivb.openplanner.team/stops/2319", "https://mivb.openplanner.team/stops/3755"], ["https://mivb.openplanner.team/stops/7730102", "https://mivb.openplanner.team/stops/8733"], ["https://mivb.openplanner.team/stops/3276", "https://mivb.openplanner.team/stops/9311"], ["https://mivb.openplanner.team/stops/3911", "https://mivb.openplanner.team/stops/3952"], ["https://mivb.openplanner.team/stops/5227F", "https://mivb.openplanner.team/stops/0120426"], ["https://mivb.openplanner.team/stops/8432", "https://mivb.openplanner.team/stops/0430648"], ["https://mivb.openplanner.team/stops/5041B", "https://mivb.openplanner.team/stops/5042"], ["https://mivb.openplanner.team/stops/8351", "https://mivb.openplanner.team/stops/40"], ["https://mivb.openplanner.team/stops/0470151", "https://mivb.openplanner.team/stops/8763"], ["https://mivb.openplanner.team/stops/1125", "https://mivb.openplanner.team/stops/1169"], ["https://mivb.openplanner.team/stops/0100324", "https://mivb.openplanner.team/stops/0100524"], ["https://mivb.openplanner.team/stops/1408", "https://mivb.openplanner.team/stops/8102"], ["https://mivb.openplanner.team/stops/5508", "https://mivb.openplanner.team/stops/5554"], ["https://mivb.openplanner.team/stops/1095", "https://mivb.openplanner.team/stops/1105"], ["https://mivb.openplanner.team/stops/6800F", "https://mivb.openplanner.team/stops/6869G"], ["https://mivb.openplanner.team/stops/6308F", "https://mivb.openplanner.team/stops/6357F"], ["https://mivb.openplanner.team/stops/1124", "https://mivb.openplanner.team/stops/17"], ["https://mivb.openplanner.team/stops/1475", "https://mivb.openplanner.team/stops/3854B"], ["https://mivb.openplanner.team/stops/2898", "https://mivb.openplanner.team/stops/7762"], ["https://mivb.openplanner.team/stops/1535", "https://mivb.openplanner.team/stops/3272"], ["https://mivb.openplanner.team/stops/1818", "https://mivb.openplanner.team/stops/1856"], ["https://mivb.openplanner.team/stops/2248", "https://mivb.openplanner.team/stops/5308F"], ["https://mivb.openplanner.team/stops/2215", "https://mivb.openplanner.team/stops/4595"], ["https://mivb.openplanner.team/stops/4957", "https://mivb.openplanner.team/stops/7800355"], ["https://mivb.openplanner.team/stops/1064", "https://mivb.openplanner.team/stops/1108"], ["https://mivb.openplanner.team/stops/6124", "https://mivb.openplanner.team/stops/6174F"], ["https://mivb.openplanner.team/stops/1024", "https://mivb.openplanner.team/stops/2209"], ["https://mivb.openplanner.team/stops/5298F", "https://mivb.openplanner.team/stops/5299"], ["https://mivb.openplanner.team/stops/9780", "https://mivb.openplanner.team/stops/9786"], ["https://mivb.openplanner.team/stops/4209", "https://mivb.openplanner.team/stops/7810154"], ["https://mivb.openplanner.team/stops/1476", "https://mivb.openplanner.team/stops/8062"], ["https://mivb.openplanner.team/stops/4268", "https://mivb.openplanner.team/stops/8833"], ["https://mivb.openplanner.team/stops/5859", "https://mivb.openplanner.team/stops/6253"], ["https://mivb.openplanner.team/stops/8102", "https://mivb.openplanner.team/stops/0100324"], ["https://mivb.openplanner.team/stops/1236F", "https://mivb.openplanner.team/stops/4066F"], ["https://mivb.openplanner.team/stops/6603", "https://mivb.openplanner.team/stops/6655"], ["https://mivb.openplanner.team/stops/9051F", "https://mivb.openplanner.team/stops/9056F"], ["https://mivb.openplanner.team/stops/1204", "https://mivb.openplanner.team/stops/1206"], ["https://mivb.openplanner.team/stops/2857B", "https://mivb.openplanner.team/stops/5773"], ["https://mivb.openplanner.team/stops/1097", "https://mivb.openplanner.team/stops/4053G"], ["https://mivb.openplanner.team/stops/5068F", "https://mivb.openplanner.team/stops/5470"], ["https://mivb.openplanner.team/stops/2145", "https://mivb.openplanner.team/stops/5419"], ["https://mivb.openplanner.team/stops/2313", "https://mivb.openplanner.team/stops/2314"], ["https://mivb.openplanner.team/stops/2514", "https://mivb.openplanner.team/stops/2565"], ["https://mivb.openplanner.team/stops/1172", "https://mivb.openplanner.team/stops/1184"], ["https://mivb.openplanner.team/stops/0820170", "https://mivb.openplanner.team/stops/4550"], ["https://mivb.openplanner.team/stops/5296B", "https://mivb.openplanner.team/stops/7"], ["https://mivb.openplanner.team/stops/1515", "https://mivb.openplanner.team/stops/2241G"], ["https://mivb.openplanner.team/stops/4014", "https://mivb.openplanner.team/stops/7750160"], ["https://mivb.openplanner.team/stops/3008", "https://mivb.openplanner.team/stops/5958C"], ["https://mivb.openplanner.team/stops/1464", "https://mivb.openplanner.team/stops/3218"], ["https://mivb.openplanner.team/stops/4221", "https://mivb.openplanner.team/stops/4223"], ["https://mivb.openplanner.team/stops/7790356", "https://mivb.openplanner.team/stops/7790456"], ["https://mivb.openplanner.team/stops/5168", "https://mivb.openplanner.team/stops/5168F"], ["https://mivb.openplanner.team/stops/1302", "https://mivb.openplanner.team/stops/0160130"], ["https://mivb.openplanner.team/stops/1718B", "https://mivb.openplanner.team/stops/1811"], ["https://mivb.openplanner.team/stops/3562", "https://mivb.openplanner.team/stops/5466"], ["https://mivb.openplanner.team/stops/0707", "https://mivb.openplanner.team/stops/1220"], ["https://mivb.openplanner.team/stops/6178", "https://mivb.openplanner.team/stops/6179"], ["https://mivb.openplanner.team/stops/4958F", "https://mivb.openplanner.team/stops/55"], ["https://mivb.openplanner.team/stops/2326", "https://mivb.openplanner.team/stops/6168"], ["https://mivb.openplanner.team/stops/6435", "https://mivb.openplanner.team/stops/6436"], ["https://mivb.openplanner.team/stops/3240", "https://mivb.openplanner.team/stops/3766"], ["https://mivb.openplanner.team/stops/2710G", "https://mivb.openplanner.team/stops/4076"], ["https://mivb.openplanner.team/stops/1167", "https://mivb.openplanner.team/stops/3629"], ["https://mivb.openplanner.team/stops/1734", "https://mivb.openplanner.team/stops/1842"], ["https://mivb.openplanner.team/stops/4217", "https://mivb.openplanner.team/stops/4266"], ["https://mivb.openplanner.team/stops/4297", "https://mivb.openplanner.team/stops/4456"], ["https://mivb.openplanner.team/stops/1775", "https://mivb.openplanner.team/stops/2505"], ["https://mivb.openplanner.team/stops/0600262", "https://mivb.openplanner.team/stops/0601262"], ["https://mivb.openplanner.team/stops/2122", "https://mivb.openplanner.team/stops/5020"], ["https://mivb.openplanner.team/stops/0230134", "https://mivb.openplanner.team/stops/0230434"], ["https://mivb.openplanner.team/stops/2659", "https://mivb.openplanner.team/stops/9686"], ["https://mivb.openplanner.team/stops/1720B", "https://mivb.openplanner.team/stops/0250436"], ["https://mivb.openplanner.team/stops/2317", "https://mivb.openplanner.team/stops/5905"], ["https://mivb.openplanner.team/stops/3125", "https://mivb.openplanner.team/stops/3510"], ["https://mivb.openplanner.team/stops/1150", "https://mivb.openplanner.team/stops/1408"], ["https://mivb.openplanner.team/stops/1522", "https://mivb.openplanner.team/stops/8112"], ["https://mivb.openplanner.team/stops/1454", "https://mivb.openplanner.team/stops/5228F"], ["https://mivb.openplanner.team/stops/1229", "https://mivb.openplanner.team/stops/5151"], ["https://mivb.openplanner.team/stops/1779", "https://mivb.openplanner.team/stops/5311"], ["https://mivb.openplanner.team/stops/2294B", "https://mivb.openplanner.team/stops/3130"], ["https://mivb.openplanner.team/stops/2364", "https://mivb.openplanner.team/stops/3059"], ["https://mivb.openplanner.team/stops/1133", "https://mivb.openplanner.team/stops/2927"], ["https://mivb.openplanner.team/stops/5502", "https://mivb.openplanner.team/stops/5561F"], ["https://mivb.openplanner.team/stops/2042", "https://mivb.openplanner.team/stops/2084"], ["https://mivb.openplanner.team/stops/5029", "https://mivb.openplanner.team/stops/6956B"], ["https://mivb.openplanner.team/stops/1135", "https://mivb.openplanner.team/stops/6153"], ["https://mivb.openplanner.team/stops/1538B", "https://mivb.openplanner.team/stops/3461"], ["https://mivb.openplanner.team/stops/3063", "https://mivb.openplanner.team/stops/5908"], ["https://mivb.openplanner.team/stops/1375", "https://mivb.openplanner.team/stops/5522"], ["https://mivb.openplanner.team/stops/2660", "https://mivb.openplanner.team/stops/9683"], ["https://mivb.openplanner.team/stops/2050", "https://mivb.openplanner.team/stops/2086"], ["https://mivb.openplanner.team/stops/2218F", "https://mivb.openplanner.team/stops/7720203"], ["https://mivb.openplanner.team/stops/8651", "https://mivb.openplanner.team/stops/8652"], ["https://mivb.openplanner.team/stops/1250", "https://mivb.openplanner.team/stops/1970"], ["https://mivb.openplanner.team/stops/2319", "https://mivb.openplanner.team/stops/6792F"], ["https://mivb.openplanner.team/stops/4253", "https://mivb.openplanner.team/stops/5071"], ["https://mivb.openplanner.team/stops/2970", "https://mivb.openplanner.team/stops/6464"], ["https://mivb.openplanner.team/stops/5271F", "https://mivb.openplanner.team/stops/5556"], ["https://mivb.openplanner.team/stops/2539", "https://mivb.openplanner.team/stops/2539F"], ["https://mivb.openplanner.team/stops/1569B", "https://mivb.openplanner.team/stops/3118"], ["https://mivb.openplanner.team/stops/5426", "https://mivb.openplanner.team/stops/0260237"], ["https://mivb.openplanner.team/stops/1528", "https://mivb.openplanner.team/stops/3334F"], ["https://mivb.openplanner.team/stops/5058F", "https://mivb.openplanner.team/stops/5855"], ["https://mivb.openplanner.team/stops/0431048", "https://mivb.openplanner.team/stops/0431148"], ["https://mivb.openplanner.team/stops/3228", "https://mivb.openplanner.team/stops/3228F"], ["https://mivb.openplanner.team/stops/6355", "https://mivb.openplanner.team/stops/6355F"], ["https://mivb.openplanner.team/stops/2500", "https://mivb.openplanner.team/stops/3211"], ["https://mivb.openplanner.team/stops/3628", "https://mivb.openplanner.team/stops/0320343"], ["https://mivb.openplanner.team/stops/1668", "https://mivb.openplanner.team/stops/1835"], ["https://mivb.openplanner.team/stops/5502", "https://mivb.openplanner.team/stops/0090323"], ["https://mivb.openplanner.team/stops/1551", "https://mivb.openplanner.team/stops/2028"], ["https://mivb.openplanner.team/stops/2226", "https://mivb.openplanner.team/stops/3812"], ["https://mivb.openplanner.team/stops/2931", "https://mivb.openplanner.team/stops/2960"], ["https://mivb.openplanner.team/stops/1975", "https://mivb.openplanner.team/stops/5256F"], ["https://mivb.openplanner.team/stops/1148C", "https://mivb.openplanner.team/stops/1548B"], ["https://mivb.openplanner.team/stops/2203", "https://mivb.openplanner.team/stops/2326"], ["https://mivb.openplanner.team/stops/1381", "https://mivb.openplanner.team/stops/1387"], ["https://mivb.openplanner.team/stops/3259B", "https://mivb.openplanner.team/stops/6650G"], ["https://mivb.openplanner.team/stops/3766", "https://mivb.openplanner.team/stops/4558"], ["https://mivb.openplanner.team/stops/4153", "https://mivb.openplanner.team/stops/5172F"], ["https://mivb.openplanner.team/stops/4124", "https://mivb.openplanner.team/stops/8794"], ["https://mivb.openplanner.team/stops/1183", "https://mivb.openplanner.team/stops/1288"], ["https://mivb.openplanner.team/stops/1168", "https://mivb.openplanner.team/stops/3004"], ["https://mivb.openplanner.team/stops/9751", "https://mivb.openplanner.team/stops/9780"], ["https://mivb.openplanner.team/stops/2112", "https://mivb.openplanner.team/stops/2161"], ["https://mivb.openplanner.team/stops/1732", "https://mivb.openplanner.team/stops/4104"], ["https://mivb.openplanner.team/stops/3682", "https://mivb.openplanner.team/stops/3808"], ["https://mivb.openplanner.team/stops/4403", "https://mivb.openplanner.team/stops/4449"], ["https://mivb.openplanner.team/stops/5102", "https://mivb.openplanner.team/stops/5174F"], ["https://mivb.openplanner.team/stops/5724", "https://mivb.openplanner.team/stops/5824"], ["https://mivb.openplanner.team/stops/3061", "https://mivb.openplanner.team/stops/5959"], ["https://mivb.openplanner.team/stops/7800155", "https://mivb.openplanner.team/stops/55"], ["https://mivb.openplanner.team/stops/3529", "https://mivb.openplanner.team/stops/5601"], ["https://mivb.openplanner.team/stops/1810", "https://mivb.openplanner.team/stops/1811"], ["https://mivb.openplanner.team/stops/1850", "https://mivb.openplanner.team/stops/5551"], ["https://mivb.openplanner.team/stops/4288", "https://mivb.openplanner.team/stops/5453"], ["https://mivb.openplanner.team/stops/1777B", "https://mivb.openplanner.team/stops/3922"], ["https://mivb.openplanner.team/stops/2117B", "https://mivb.openplanner.team/stops/2119"], ["https://mivb.openplanner.team/stops/7670208", "https://mivb.openplanner.team/stops/8672"], ["https://mivb.openplanner.team/stops/1339", "https://mivb.openplanner.team/stops/0150129"], ["https://mivb.openplanner.team/stops/1540", "https://mivb.openplanner.team/stops/1550"], ["https://mivb.openplanner.team/stops/1748", "https://mivb.openplanner.team/stops/4159"], ["https://mivb.openplanner.team/stops/1410", "https://mivb.openplanner.team/stops/5559"], ["https://mivb.openplanner.team/stops/2532", "https://mivb.openplanner.team/stops/2561"], ["https://mivb.openplanner.team/stops/1321", "https://mivb.openplanner.team/stops/1550"], ["https://mivb.openplanner.team/stops/2285G", "https://mivb.openplanner.team/stops/8201"], ["https://mivb.openplanner.team/stops/2504", "https://mivb.openplanner.team/stops/5007F"], ["https://mivb.openplanner.team/stops/1568", "https://mivb.openplanner.team/stops/6018"], ["https://mivb.openplanner.team/stops/2940F", "https://mivb.openplanner.team/stops/7527"], ["https://mivb.openplanner.team/stops/3125", "https://mivb.openplanner.team/stops/3570"], ["https://mivb.openplanner.team/stops/1617", "https://mivb.openplanner.team/stops/5517"], ["https://mivb.openplanner.team/stops/1980", "https://mivb.openplanner.team/stops/5611"], ["https://mivb.openplanner.team/stops/2940F", "https://mivb.openplanner.team/stops/6120"], ["https://mivb.openplanner.team/stops/5107B", "https://mivb.openplanner.team/stops/5158"], ["https://mivb.openplanner.team/stops/1141", "https://mivb.openplanner.team/stops/1520"], ["https://mivb.openplanner.team/stops/0610163", "https://mivb.openplanner.team/stops/63"], ["https://mivb.openplanner.team/stops/2116B", "https://mivb.openplanner.team/stops/2156"], ["https://mivb.openplanner.team/stops/2023", "https://mivb.openplanner.team/stops/2462"], ["https://mivb.openplanner.team/stops/2241G", "https://mivb.openplanner.team/stops/2249"], ["https://mivb.openplanner.team/stops/4345", "https://mivb.openplanner.team/stops/5430"], ["https://mivb.openplanner.team/stops/1211B", "https://mivb.openplanner.team/stops/3"], ["https://mivb.openplanner.team/stops/2418", "https://mivb.openplanner.team/stops/7621"], ["https://mivb.openplanner.team/stops/3624B", "https://mivb.openplanner.team/stops/5016F"], ["https://mivb.openplanner.team/stops/9801", "https://mivb.openplanner.team/stops/9802"], ["https://mivb.openplanner.team/stops/3425", "https://mivb.openplanner.team/stops/5874F"], ["https://mivb.openplanner.team/stops/0811", "https://mivb.openplanner.team/stops/1459"], ["https://mivb.openplanner.team/stops/5517", "https://mivb.openplanner.team/stops/5523"], ["https://mivb.openplanner.team/stops/0430148", "https://mivb.openplanner.team/stops/0431048"], ["https://mivb.openplanner.team/stops/0506", "https://mivb.openplanner.team/stops/0010215"], ["https://mivb.openplanner.team/stops/5740", "https://mivb.openplanner.team/stops/7762"], ["https://mivb.openplanner.team/stops/2290B", "https://mivb.openplanner.team/stops/0220233"], ["https://mivb.openplanner.team/stops/5317G", "https://mivb.openplanner.team/stops/5350G"], ["https://mivb.openplanner.team/stops/0810369", "https://mivb.openplanner.team/stops/1518"], ["https://mivb.openplanner.team/stops/3347", "https://mivb.openplanner.team/stops/6447"], ["https://mivb.openplanner.team/stops/1283", "https://mivb.openplanner.team/stops/3132"], ["https://mivb.openplanner.team/stops/2418", "https://mivb.openplanner.team/stops/0340341"], ["https://mivb.openplanner.team/stops/1019", "https://mivb.openplanner.team/stops/4254B"], ["https://mivb.openplanner.team/stops/1629", "https://mivb.openplanner.team/stops/1631"], ["https://mivb.openplanner.team/stops/3331", "https://mivb.openplanner.team/stops/0020516"], ["https://mivb.openplanner.team/stops/1406", "https://mivb.openplanner.team/stops/6449"], ["https://mivb.openplanner.team/stops/2459", "https://mivb.openplanner.team/stops/2462"], ["https://mivb.openplanner.team/stops/6443", "https://mivb.openplanner.team/stops/0020116"], ["https://mivb.openplanner.team/stops/1721", "https://mivb.openplanner.team/stops/1744"], ["https://mivb.openplanner.team/stops/2513", "https://mivb.openplanner.team/stops/2566B"], ["https://mivb.openplanner.team/stops/2358", "https://mivb.openplanner.team/stops/3063"], ["https://mivb.openplanner.team/stops/3532", "https://mivb.openplanner.team/stops/4952"], ["https://mivb.openplanner.team/stops/1764", "https://mivb.openplanner.team/stops/6114F"], ["https://mivb.openplanner.team/stops/2900", "https://mivb.openplanner.team/stops/3175B"], ["https://mivb.openplanner.team/stops/2145", "https://mivb.openplanner.team/stops/5424"], ["https://mivb.openplanner.team/stops/1706", "https://mivb.openplanner.team/stops/1906"], ["https://mivb.openplanner.team/stops/1712", "https://mivb.openplanner.team/stops/1804"], ["https://mivb.openplanner.team/stops/1259", "https://mivb.openplanner.team/stops/2373"], ["https://mivb.openplanner.team/stops/8252", "https://mivb.openplanner.team/stops/0250536"], ["https://mivb.openplanner.team/stops/8202", "https://mivb.openplanner.team/stops/0200231"], ["https://mivb.openplanner.team/stops/3259B", "https://mivb.openplanner.team/stops/6608G"], ["https://mivb.openplanner.team/stops/0600762", "https://mivb.openplanner.team/stops/3320B"], ["https://mivb.openplanner.team/stops/2518", "https://mivb.openplanner.team/stops/6811"], ["https://mivb.openplanner.team/stops/1926B", "https://mivb.openplanner.team/stops/1985G"], ["https://mivb.openplanner.team/stops/1552", "https://mivb.openplanner.team/stops/2022"], ["https://mivb.openplanner.team/stops/9726", "https://mivb.openplanner.team/stops/9727"], ["https://mivb.openplanner.team/stops/2143B", "https://mivb.openplanner.team/stops/2146"], ["https://mivb.openplanner.team/stops/2243F", "https://mivb.openplanner.team/stops/2247"], ["https://mivb.openplanner.team/stops/1162C", "https://mivb.openplanner.team/stops/1262B"], ["https://mivb.openplanner.team/stops/2247", "https://mivb.openplanner.team/stops/2250"], ["https://mivb.openplanner.team/stops/2463", "https://mivb.openplanner.team/stops/2934"], ["https://mivb.openplanner.team/stops/2996", "https://mivb.openplanner.team/stops/3419"], ["https://mivb.openplanner.team/stops/1985B", "https://mivb.openplanner.team/stops/1985G"], ["https://mivb.openplanner.team/stops/0521", "https://mivb.openplanner.team/stops/0531"], ["https://mivb.openplanner.team/stops/2919", "https://mivb.openplanner.team/stops/6082"], ["https://mivb.openplanner.team/stops/6016", "https://mivb.openplanner.team/stops/9064"], ["https://mivb.openplanner.team/stops/9656", "https://mivb.openplanner.team/stops/9678"], ["https://mivb.openplanner.team/stops/3480", "https://mivb.openplanner.team/stops/3510"], ["https://mivb.openplanner.team/stops/1105", "https://mivb.openplanner.team/stops/4602"], ["https://mivb.openplanner.team/stops/3230", "https://mivb.openplanner.team/stops/8732"], ["https://mivb.openplanner.team/stops/1010", "https://mivb.openplanner.team/stops/1675F"], ["https://mivb.openplanner.team/stops/3003", "https://mivb.openplanner.team/stops/5908"], ["https://mivb.openplanner.team/stops/5414F", "https://mivb.openplanner.team/stops/5460F"], ["https://mivb.openplanner.team/stops/1190", "https://mivb.openplanner.team/stops/4066F"], ["https://mivb.openplanner.team/stops/6173", "https://mivb.openplanner.team/stops/7800355"], ["https://mivb.openplanner.team/stops/6657", "https://mivb.openplanner.team/stops/6862"], ["https://mivb.openplanner.team/stops/5811", "https://mivb.openplanner.team/stops/5857F"], ["https://mivb.openplanner.team/stops/6416", "https://mivb.openplanner.team/stops/6419F"], ["https://mivb.openplanner.team/stops/1669", "https://mivb.openplanner.team/stops/5516"], ["https://mivb.openplanner.team/stops/2509", "https://mivb.openplanner.team/stops/5166"], ["https://mivb.openplanner.team/stops/1661", "https://mivb.openplanner.team/stops/1673"], ["https://mivb.openplanner.team/stops/3217", "https://mivb.openplanner.team/stops/6055"], ["https://mivb.openplanner.team/stops/3273", "https://mivb.openplanner.team/stops/3461"], ["https://mivb.openplanner.team/stops/1807", "https://mivb.openplanner.team/stops/1869"], ["https://mivb.openplanner.team/stops/1638B", "https://mivb.openplanner.team/stops/29"], ["https://mivb.openplanner.team/stops/2359", "https://mivb.openplanner.team/stops/2361"], ["https://mivb.openplanner.team/stops/0370138", "https://mivb.openplanner.team/stops/0370338"], ["https://mivb.openplanner.team/stops/1129", "https://mivb.openplanner.team/stops/0310244"], ["https://mivb.openplanner.team/stops/2333F", "https://mivb.openplanner.team/stops/2336G"], ["https://mivb.openplanner.team/stops/3004", "https://mivb.openplanner.team/stops/7621"], ["https://mivb.openplanner.team/stops/5022", "https://mivb.openplanner.team/stops/6422F"], ["https://mivb.openplanner.team/stops/1183", "https://mivb.openplanner.team/stops/8763"], ["https://mivb.openplanner.team/stops/2456", "https://mivb.openplanner.team/stops/5812"], ["https://mivb.openplanner.team/stops/6433", "https://mivb.openplanner.team/stops/8302"], ["https://mivb.openplanner.team/stops/1819", "https://mivb.openplanner.team/stops/5555"], ["https://mivb.openplanner.team/stops/6434F", "https://mivb.openplanner.team/stops/6438"], ["https://mivb.openplanner.team/stops/5754", "https://mivb.openplanner.team/stops/5916F"], ["https://mivb.openplanner.team/stops/9729", "https://mivb.openplanner.team/stops/9784B"], ["https://mivb.openplanner.team/stops/1386", "https://mivb.openplanner.team/stops/0120626"], ["https://mivb.openplanner.team/stops/4274", "https://mivb.openplanner.team/stops/8803"], ["https://mivb.openplanner.team/stops/1919", "https://mivb.openplanner.team/stops/1920"], ["https://mivb.openplanner.team/stops/6477", "https://mivb.openplanner.team/stops/0110425"], ["https://mivb.openplanner.team/stops/2204", "https://mivb.openplanner.team/stops/5714"], ["https://mivb.openplanner.team/stops/3201", "https://mivb.openplanner.team/stops/3338F"], ["https://mivb.openplanner.team/stops/2325", "https://mivb.openplanner.team/stops/6174F"], ["https://mivb.openplanner.team/stops/1535", "https://mivb.openplanner.team/stops/3898"], ["https://mivb.openplanner.team/stops/3226B", "https://mivb.openplanner.team/stops/6706"], ["https://mivb.openplanner.team/stops/1209", "https://mivb.openplanner.team/stops/4598"], ["https://mivb.openplanner.team/stops/2671F", "https://mivb.openplanner.team/stops/0350140"], ["https://mivb.openplanner.team/stops/5115F", "https://mivb.openplanner.team/stops/5158"], ["https://mivb.openplanner.team/stops/3532", "https://mivb.openplanner.team/stops/6310F"], ["https://mivb.openplanner.team/stops/8431", "https://mivb.openplanner.team/stops/0431048"], ["https://mivb.openplanner.team/stops/3121", "https://mivb.openplanner.team/stops/3155"], ["https://mivb.openplanner.team/stops/1965", "https://mivb.openplanner.team/stops/5825"], ["https://mivb.openplanner.team/stops/1985G", "https://mivb.openplanner.team/stops/5853B"], ["https://mivb.openplanner.team/stops/2418", "https://mivb.openplanner.team/stops/8341"], ["https://mivb.openplanner.team/stops/4062", "https://mivb.openplanner.team/stops/4162"], ["https://mivb.openplanner.team/stops/1142", "https://mivb.openplanner.team/stops/5103"], ["https://mivb.openplanner.team/stops/2877", "https://mivb.openplanner.team/stops/5080"], ["https://mivb.openplanner.team/stops/1928", "https://mivb.openplanner.team/stops/1964"], ["https://mivb.openplanner.team/stops/8322", "https://mivb.openplanner.team/stops/0320243"], ["https://mivb.openplanner.team/stops/1661", "https://mivb.openplanner.team/stops/5525"], ["https://mivb.openplanner.team/stops/1112", "https://mivb.openplanner.team/stops/0470459"], ["https://mivb.openplanner.team/stops/1731", "https://mivb.openplanner.team/stops/2009"], ["https://mivb.openplanner.team/stops/1052", "https://mivb.openplanner.team/stops/9025"], ["https://mivb.openplanner.team/stops/6053", "https://mivb.openplanner.team/stops/6054B"], ["https://mivb.openplanner.team/stops/0600662", "https://mivb.openplanner.team/stops/5286"], ["https://mivb.openplanner.team/stops/1465", "https://mivb.openplanner.team/stops/1820"], ["https://mivb.openplanner.team/stops/3007", "https://mivb.openplanner.team/stops/5911"], ["https://mivb.openplanner.team/stops/5116", "https://mivb.openplanner.team/stops/5718"], ["https://mivb.openplanner.team/stops/2103", "https://mivb.openplanner.team/stops/2116B"], ["https://mivb.openplanner.team/stops/1066", "https://mivb.openplanner.team/stops/1067"], ["https://mivb.openplanner.team/stops/1726", "https://mivb.openplanner.team/stops/7529"], ["https://mivb.openplanner.team/stops/3276", "https://mivb.openplanner.team/stops/3285"], ["https://mivb.openplanner.team/stops/1598", "https://mivb.openplanner.team/stops/1760"], ["https://mivb.openplanner.team/stops/1805", "https://mivb.openplanner.team/stops/6115F"], ["https://mivb.openplanner.team/stops/1165", "https://mivb.openplanner.team/stops/6354"], ["https://mivb.openplanner.team/stops/0724", "https://mivb.openplanner.team/stops/2465"], ["https://mivb.openplanner.team/stops/2970", "https://mivb.openplanner.team/stops/8061"], ["https://mivb.openplanner.team/stops/2133", "https://mivb.openplanner.team/stops/5213"], ["https://mivb.openplanner.team/stops/1792", "https://mivb.openplanner.team/stops/4214"], ["https://mivb.openplanner.team/stops/1205", "https://mivb.openplanner.team/stops/1207"], ["https://mivb.openplanner.team/stops/0610463", "https://mivb.openplanner.team/stops/0626"], ["https://mivb.openplanner.team/stops/4101", "https://mivb.openplanner.team/stops/4162"], ["https://mivb.openplanner.team/stops/0526", "https://mivb.openplanner.team/stops/0536"], ["https://mivb.openplanner.team/stops/3263B", "https://mivb.openplanner.team/stops/4594"], ["https://mivb.openplanner.team/stops/0511", "https://mivb.openplanner.team/stops/0430948"], ["https://mivb.openplanner.team/stops/0100124", "https://mivb.openplanner.team/stops/0100424"], ["https://mivb.openplanner.team/stops/0440149", "https://mivb.openplanner.team/stops/0440249"], ["https://mivb.openplanner.team/stops/5855", "https://mivb.openplanner.team/stops/5856"], ["https://mivb.openplanner.team/stops/6602P", "https://mivb.openplanner.team/stops/6659F"], ["https://mivb.openplanner.team/stops/5046", "https://mivb.openplanner.team/stops/9311"], ["https://mivb.openplanner.team/stops/3504", "https://mivb.openplanner.team/stops/0310444"], ["https://mivb.openplanner.team/stops/2326", "https://mivb.openplanner.team/stops/2370"], ["https://mivb.openplanner.team/stops/5765F", "https://mivb.openplanner.team/stops/6365"], ["https://mivb.openplanner.team/stops/1881", "https://mivb.openplanner.team/stops/1883"], ["https://mivb.openplanner.team/stops/5014", "https://mivb.openplanner.team/stops/6652"], ["https://mivb.openplanner.team/stops/1024", "https://mivb.openplanner.team/stops/1052"], ["https://mivb.openplanner.team/stops/2456", "https://mivb.openplanner.team/stops/2936"], ["https://mivb.openplanner.team/stops/2604", "https://mivb.openplanner.team/stops/2667F"], ["https://mivb.openplanner.team/stops/2326", "https://mivb.openplanner.team/stops/6097B"], ["https://mivb.openplanner.team/stops/5724", "https://mivb.openplanner.team/stops/5754"], ["https://mivb.openplanner.team/stops/3559", "https://mivb.openplanner.team/stops/5462F"], ["https://mivb.openplanner.team/stops/2026", "https://mivb.openplanner.team/stops/4315"], ["https://mivb.openplanner.team/stops/1820", "https://mivb.openplanner.team/stops/2303"], ["https://mivb.openplanner.team/stops/1605", "https://mivb.openplanner.team/stops/1669"], ["https://mivb.openplanner.team/stops/2539F", "https://mivb.openplanner.team/stops/6106"], ["https://mivb.openplanner.team/stops/0610263", "https://mivb.openplanner.team/stops/1167"], ["https://mivb.openplanner.team/stops/1307", "https://mivb.openplanner.team/stops/1308G"], ["https://mivb.openplanner.team/stops/2215", "https://mivb.openplanner.team/stops/0360239"], ["https://mivb.openplanner.team/stops/6012G", "https://mivb.openplanner.team/stops/6260F"], ["https://mivb.openplanner.team/stops/3272", "https://mivb.openplanner.team/stops/3273"], ["https://mivb.openplanner.team/stops/5032G", "https://mivb.openplanner.team/stops/5053G"], ["https://mivb.openplanner.team/stops/1103", "https://mivb.openplanner.team/stops/1606"], ["https://mivb.openplanner.team/stops/6602", "https://mivb.openplanner.team/stops/6659F"], ["https://mivb.openplanner.team/stops/6058", "https://mivb.openplanner.team/stops/6210"], ["https://mivb.openplanner.team/stops/1096", "https://mivb.openplanner.team/stops/1304"], ["https://mivb.openplanner.team/stops/6657", "https://mivb.openplanner.team/stops/7621"], ["https://mivb.openplanner.team/stops/7621", "https://mivb.openplanner.team/stops/0350740"], ["https://mivb.openplanner.team/stops/8301", "https://mivb.openplanner.team/stops/0300145"], ["https://mivb.openplanner.team/stops/1208", "https://mivb.openplanner.team/stops/2560"], ["https://mivb.openplanner.team/stops/1317", "https://mivb.openplanner.team/stops/1425"], ["https://mivb.openplanner.team/stops/3800", "https://mivb.openplanner.team/stops/39"], ["https://mivb.openplanner.team/stops/3805", "https://mivb.openplanner.team/stops/3858"], ["https://mivb.openplanner.team/stops/6465", "https://mivb.openplanner.team/stops/0050119"], ["https://mivb.openplanner.team/stops/5921B", "https://mivb.openplanner.team/stops/5921G"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/2117B"], ["https://mivb.openplanner.team/stops/5205", "https://mivb.openplanner.team/stops/5261"], ["https://mivb.openplanner.team/stops/5017", "https://mivb.openplanner.team/stops/8321"], ["https://mivb.openplanner.team/stops/3226F", "https://mivb.openplanner.team/stops/6706"], ["https://mivb.openplanner.team/stops/1271B", "https://mivb.openplanner.team/stops/0060520"], ["https://mivb.openplanner.team/stops/7710204", "https://mivb.openplanner.team/stops/8712"], ["https://mivb.openplanner.team/stops/0100324", "https://mivb.openplanner.team/stops/0100424"], ["https://mivb.openplanner.team/stops/1727", "https://mivb.openplanner.team/stops/4103"], ["https://mivb.openplanner.team/stops/2292B", "https://mivb.openplanner.team/stops/2908"], ["https://mivb.openplanner.team/stops/2922", "https://mivb.openplanner.team/stops/8051"], ["https://mivb.openplanner.team/stops/7820253", "https://mivb.openplanner.team/stops/9056F"], ["https://mivb.openplanner.team/stops/0531", "https://mivb.openplanner.team/stops/1083"], ["https://mivb.openplanner.team/stops/1770", "https://mivb.openplanner.team/stops/4952"], ["https://mivb.openplanner.team/stops/1230", "https://mivb.openplanner.team/stops/5116"], ["https://mivb.openplanner.team/stops/2243F", "https://mivb.openplanner.team/stops/5308"], ["https://mivb.openplanner.team/stops/5101B", "https://mivb.openplanner.team/stops/5159F"], ["https://mivb.openplanner.team/stops/9780", "https://mivb.openplanner.team/stops/9784B"], ["https://mivb.openplanner.team/stops/4103", "https://mivb.openplanner.team/stops/4115"], ["https://mivb.openplanner.team/stops/1932", "https://mivb.openplanner.team/stops/1959"], ["https://mivb.openplanner.team/stops/8291", "https://mivb.openplanner.team/stops/0290212"], ["https://mivb.openplanner.team/stops/1866", "https://mivb.openplanner.team/stops/5352"], ["https://mivb.openplanner.team/stops/1476", "https://mivb.openplanner.team/stops/0060120"], ["https://mivb.openplanner.team/stops/1770", "https://mivb.openplanner.team/stops/3532"], ["https://mivb.openplanner.team/stops/3529", "https://mivb.openplanner.team/stops/3530"], ["https://mivb.openplanner.team/stops/5079", "https://mivb.openplanner.team/stops/5080"], ["https://mivb.openplanner.team/stops/5308F", "https://mivb.openplanner.team/stops/5354H"], ["https://mivb.openplanner.team/stops/3200", "https://mivb.openplanner.team/stops/3285"], ["https://mivb.openplanner.team/stops/1900", "https://mivb.openplanner.team/stops/6411"], ["https://mivb.openplanner.team/stops/0810269", "https://mivb.openplanner.team/stops/1518"], ["https://mivb.openplanner.team/stops/1584", "https://mivb.openplanner.team/stops/5227F"], ["https://mivb.openplanner.team/stops/3214", "https://mivb.openplanner.team/stops/5299"], ["https://mivb.openplanner.team/stops/3359", "https://mivb.openplanner.team/stops/17"], ["https://mivb.openplanner.team/stops/3460", "https://mivb.openplanner.team/stops/3766"], ["https://mivb.openplanner.team/stops/1903", "https://mivb.openplanner.team/stops/3517"], ["https://mivb.openplanner.team/stops/4506", "https://mivb.openplanner.team/stops/5925"], ["https://mivb.openplanner.team/stops/8271", "https://mivb.openplanner.team/stops/8272"], ["https://mivb.openplanner.team/stops/6481", "https://mivb.openplanner.team/stops/8834"], ["https://mivb.openplanner.team/stops/0539", "https://mivb.openplanner.team/stops/0430948"], ["https://mivb.openplanner.team/stops/2544F", "https://mivb.openplanner.team/stops/2672"], ["https://mivb.openplanner.team/stops/2241G", "https://mivb.openplanner.team/stops/5308F"], ["https://mivb.openplanner.team/stops/6053", "https://mivb.openplanner.team/stops/0070121"], ["https://mivb.openplanner.team/stops/4365", "https://mivb.openplanner.team/stops/4366"], ["https://mivb.openplanner.team/stops/1251", "https://mivb.openplanner.team/stops/1920"], ["https://mivb.openplanner.team/stops/1139", "https://mivb.openplanner.team/stops/1424"], ["https://mivb.openplanner.team/stops/3008", "https://mivb.openplanner.team/stops/5760"], ["https://mivb.openplanner.team/stops/1172", "https://mivb.openplanner.team/stops/5109"], ["https://mivb.openplanner.team/stops/5959", "https://mivb.openplanner.team/stops/9292"], ["https://mivb.openplanner.team/stops/2512", "https://mivb.openplanner.team/stops/4006G"], ["https://mivb.openplanner.team/stops/1476", "https://mivb.openplanner.team/stops/3159"], ["https://mivb.openplanner.team/stops/5853B", "https://mivb.openplanner.team/stops/5853G"], ["https://mivb.openplanner.team/stops/2523", "https://mivb.openplanner.team/stops/3859"], ["https://mivb.openplanner.team/stops/1901", "https://mivb.openplanner.team/stops/5735"], ["https://mivb.openplanner.team/stops/1865", "https://mivb.openplanner.team/stops/5501"], ["https://mivb.openplanner.team/stops/6435", "https://mivb.openplanner.team/stops/6437F"], ["https://mivb.openplanner.team/stops/1615", "https://mivb.openplanner.team/stops/1659"], ["https://mivb.openplanner.team/stops/3355", "https://mivb.openplanner.team/stops/0410246"], ["https://mivb.openplanner.team/stops/9605", "https://mivb.openplanner.team/stops/9707"], ["https://mivb.openplanner.team/stops/3018", "https://mivb.openplanner.team/stops/3338F"], ["https://mivb.openplanner.team/stops/2752", "https://mivb.openplanner.team/stops/3526"], ["https://mivb.openplanner.team/stops/2810", "https://mivb.openplanner.team/stops/2860"], ["https://mivb.openplanner.team/stops/1237", "https://mivb.openplanner.team/stops/4595"], ["https://mivb.openplanner.team/stops/2824", "https://mivb.openplanner.team/stops/5086F"], ["https://mivb.openplanner.team/stops/1112", "https://mivb.openplanner.team/stops/1114B"], ["https://mivb.openplanner.team/stops/2562B", "https://mivb.openplanner.team/stops/3709"], ["https://mivb.openplanner.team/stops/4349", "https://mivb.openplanner.team/stops/4351"], ["https://mivb.openplanner.team/stops/0600262", "https://mivb.openplanner.team/stops/0606"], ["https://mivb.openplanner.team/stops/0600762", "https://mivb.openplanner.team/stops/5286"], ["https://mivb.openplanner.team/stops/2976", "https://mivb.openplanner.team/stops/5307G"], ["https://mivb.openplanner.team/stops/0473F", "https://mivb.openplanner.team/stops/1288"], ["https://mivb.openplanner.team/stops/2046", "https://mivb.openplanner.team/stops/2050"], ["https://mivb.openplanner.team/stops/3180", "https://mivb.openplanner.team/stops/5359"], ["https://mivb.openplanner.team/stops/4456", "https://mivb.openplanner.team/stops/0240535"], ["https://mivb.openplanner.team/stops/1096", "https://mivb.openplanner.team/stops/1097"], ["https://mivb.openplanner.team/stops/5100B", "https://mivb.openplanner.team/stops/5175"], ["https://mivb.openplanner.team/stops/1959", "https://mivb.openplanner.team/stops/2702"], ["https://mivb.openplanner.team/stops/2239", "https://mivb.openplanner.team/stops/2318G"], ["https://mivb.openplanner.team/stops/2608F", "https://mivb.openplanner.team/stops/2669"], ["https://mivb.openplanner.team/stops/3518B", "https://mivb.openplanner.team/stops/0310244"], ["https://mivb.openplanner.team/stops/5502", "https://mivb.openplanner.team/stops/5562"], ["https://mivb.openplanner.team/stops/3360F", "https://mivb.openplanner.team/stops/9296"], ["https://mivb.openplanner.team/stops/2042", "https://mivb.openplanner.team/stops/2085"], ["https://mivb.openplanner.team/stops/1741", "https://mivb.openplanner.team/stops/6931G"], ["https://mivb.openplanner.team/stops/9654", "https://mivb.openplanner.team/stops/9685"], ["https://mivb.openplanner.team/stops/3006", "https://mivb.openplanner.team/stops/0340441"], ["https://mivb.openplanner.team/stops/9677", "https://mivb.openplanner.team/stops/9678"], ["https://mivb.openplanner.team/stops/1250", "https://mivb.openplanner.team/stops/1969"], ["https://mivb.openplanner.team/stops/3860", "https://mivb.openplanner.team/stops/5152"], ["https://mivb.openplanner.team/stops/9679", "https://mivb.openplanner.team/stops/9680"], ["https://mivb.openplanner.team/stops/5009F", "https://mivb.openplanner.team/stops/5074"], ["https://mivb.openplanner.team/stops/4303", "https://mivb.openplanner.team/stops/6157F"], ["https://mivb.openplanner.team/stops/5426", "https://mivb.openplanner.team/stops/0260137"], ["https://mivb.openplanner.team/stops/3106", "https://mivb.openplanner.team/stops/5760"], ["https://mivb.openplanner.team/stops/1711", "https://mivb.openplanner.team/stops/1746"], ["https://mivb.openplanner.team/stops/4853", "https://mivb.openplanner.team/stops/5029"], ["https://mivb.openplanner.team/stops/3214", "https://mivb.openplanner.team/stops/5362"], ["https://mivb.openplanner.team/stops/0020416", "https://mivb.openplanner.team/stops/0020616"], ["https://mivb.openplanner.team/stops/2544", "https://mivb.openplanner.team/stops/2670"], ["https://mivb.openplanner.team/stops/3114", "https://mivb.openplanner.team/stops/3163"], ["https://mivb.openplanner.team/stops/1968", "https://mivb.openplanner.team/stops/5221F"], ["https://mivb.openplanner.team/stops/3334G", "https://mivb.openplanner.team/stops/3335F"], ["https://mivb.openplanner.team/stops/2609", "https://mivb.openplanner.team/stops/2661"], ["https://mivb.openplanner.team/stops/1813", "https://mivb.openplanner.team/stops/1863"], ["https://mivb.openplanner.team/stops/1975", "https://mivb.openplanner.team/stops/5256"], ["https://mivb.openplanner.team/stops/2337F", "https://mivb.openplanner.team/stops/5758F"], ["https://mivb.openplanner.team/stops/0631", "https://mivb.openplanner.team/stops/2531"], ["https://mivb.openplanner.team/stops/1868", "https://mivb.openplanner.team/stops/0070621"], ["https://mivb.openplanner.team/stops/1049F", "https://mivb.openplanner.team/stops/5256F"], ["https://mivb.openplanner.team/stops/1232", "https://mivb.openplanner.team/stops/5120"], ["https://mivb.openplanner.team/stops/4506", "https://mivb.openplanner.team/stops/5725"], ["https://mivb.openplanner.team/stops/3259B", "https://mivb.openplanner.team/stops/6653F"], ["https://mivb.openplanner.team/stops/2854", "https://mivb.openplanner.team/stops/5772"], ["https://mivb.openplanner.team/stops/3103", "https://mivb.openplanner.team/stops/3173"], ["https://mivb.openplanner.team/stops/1008", "https://mivb.openplanner.team/stops/1368"], ["https://mivb.openplanner.team/stops/3214", "https://mivb.openplanner.team/stops/5048"], ["https://mivb.openplanner.team/stops/4124", "https://mivb.openplanner.team/stops/8793"], ["https://mivb.openplanner.team/stops/0616", "https://mivb.openplanner.team/stops/63"], ["https://mivb.openplanner.team/stops/2015", "https://mivb.openplanner.team/stops/9600B"], ["https://mivb.openplanner.team/stops/3610G", "https://mivb.openplanner.team/stops/7650210"], ["https://mivb.openplanner.team/stops/1732", "https://mivb.openplanner.team/stops/4103"], ["https://mivb.openplanner.team/stops/1757", "https://mivb.openplanner.team/stops/3552"], ["https://mivb.openplanner.team/stops/4403", "https://mivb.openplanner.team/stops/4408"], ["https://mivb.openplanner.team/stops/1806", "https://mivb.openplanner.team/stops/6009"], ["https://mivb.openplanner.team/stops/8042", "https://mivb.openplanner.team/stops/0300245"], ["https://mivb.openplanner.team/stops/1230", "https://mivb.openplanner.team/stops/2524"], ["https://mivb.openplanner.team/stops/1063", "https://mivb.openplanner.team/stops/3012"], ["https://mivb.openplanner.team/stops/1094", "https://mivb.openplanner.team/stops/1236F"], ["https://mivb.openplanner.team/stops/1350", "https://mivb.openplanner.team/stops/5014"], ["https://mivb.openplanner.team/stops/2117B", "https://mivb.openplanner.team/stops/2118"], ["https://mivb.openplanner.team/stops/1615", "https://mivb.openplanner.team/stops/1669"], ["https://mivb.openplanner.team/stops/0810169", "https://mivb.openplanner.team/stops/0070521"], ["https://mivb.openplanner.team/stops/4296", "https://mivb.openplanner.team/stops/0240435"], ["https://mivb.openplanner.team/stops/3168", "https://mivb.openplanner.team/stops/5710F"], ["https://mivb.openplanner.team/stops/1748", "https://mivb.openplanner.team/stops/4158"], ["https://mivb.openplanner.team/stops/3131", "https://mivb.openplanner.team/stops/3570"], ["https://mivb.openplanner.team/stops/1512", "https://mivb.openplanner.team/stops/2919"], ["https://mivb.openplanner.team/stops/3180", "https://mivb.openplanner.team/stops/5866"], ["https://mivb.openplanner.team/stops/1321", "https://mivb.openplanner.team/stops/1553"], ["https://mivb.openplanner.team/stops/1096", "https://mivb.openplanner.team/stops/1198"], ["https://mivb.openplanner.team/stops/0610163", "https://mivb.openplanner.team/stops/1167"], ["https://mivb.openplanner.team/stops/4314", "https://mivb.openplanner.team/stops/4318"], ["https://mivb.openplanner.team/stops/1042", "https://mivb.openplanner.team/stops/2289"], ["https://mivb.openplanner.team/stops/2664", "https://mivb.openplanner.team/stops/5963"], ["https://mivb.openplanner.team/stops/1970", "https://mivb.openplanner.team/stops/6931B"], ["https://mivb.openplanner.team/stops/1642F", "https://mivb.openplanner.team/stops/1643F"], ["https://mivb.openplanner.team/stops/2022", "https://mivb.openplanner.team/stops/9853"], ["https://mivb.openplanner.team/stops/1768", "https://mivb.openplanner.team/stops/2801"], ["https://mivb.openplanner.team/stops/2855", "https://mivb.openplanner.team/stops/2856B"], ["https://mivb.openplanner.team/stops/5461F", "https://mivb.openplanner.team/stops/5462F"], ["https://mivb.openplanner.team/stops/2079", "https://mivb.openplanner.team/stops/2080"], ["https://mivb.openplanner.team/stops/1913", "https://mivb.openplanner.team/stops/6453"], ["https://mivb.openplanner.team/stops/2294B", "https://mivb.openplanner.team/stops/3199"], ["https://mivb.openplanner.team/stops/3129", "https://mivb.openplanner.team/stops/3130"], ["https://mivb.openplanner.team/stops/8321", "https://mivb.openplanner.team/stops/8322"], ["https://mivb.openplanner.team/stops/9783", "https://mivb.openplanner.team/stops/9786"], ["https://mivb.openplanner.team/stops/2116B", "https://mivb.openplanner.team/stops/2157"], ["https://mivb.openplanner.team/stops/1639", "https://mivb.openplanner.team/stops/1829"], ["https://mivb.openplanner.team/stops/1673", "https://mivb.openplanner.team/stops/5529"], ["https://mivb.openplanner.team/stops/2241G", "https://mivb.openplanner.team/stops/2250"], ["https://mivb.openplanner.team/stops/8833", "https://mivb.openplanner.team/stops/7830252"], ["https://mivb.openplanner.team/stops/3905", "https://mivb.openplanner.team/stops/3952"], ["https://mivb.openplanner.team/stops/3912", "https://mivb.openplanner.team/stops/3953"], ["https://mivb.openplanner.team/stops/1964", "https://mivb.openplanner.team/stops/5917F"], ["https://mivb.openplanner.team/stops/0801", "https://mivb.openplanner.team/stops/2289"], ["https://mivb.openplanner.team/stops/6656", "https://mivb.openplanner.team/stops/6705F"], ["https://mivb.openplanner.team/stops/2311", "https://mivb.openplanner.team/stops/5706"], ["https://mivb.openplanner.team/stops/3284", "https://mivb.openplanner.team/stops/3288"], ["https://mivb.openplanner.team/stops/2237", "https://mivb.openplanner.team/stops/5742B"], ["https://mivb.openplanner.team/stops/2290B", "https://mivb.openplanner.team/stops/0220333"], ["https://mivb.openplanner.team/stops/1465", "https://mivb.openplanner.team/stops/2303"], ["https://mivb.openplanner.team/stops/1156T", "https://mivb.openplanner.team/stops/21"], ["https://mivb.openplanner.team/stops/2167", "https://mivb.openplanner.team/stops/2168"], ["https://mivb.openplanner.team/stops/4310", "https://mivb.openplanner.team/stops/4358"], ["https://mivb.openplanner.team/stops/2260F", "https://mivb.openplanner.team/stops/8372"], ["https://mivb.openplanner.team/stops/1931", "https://mivb.openplanner.team/stops/1959"], ["https://mivb.openplanner.team/stops/2459", "https://mivb.openplanner.team/stops/2460"], ["https://mivb.openplanner.team/stops/2513", "https://mivb.openplanner.team/stops/2565"], ["https://mivb.openplanner.team/stops/2811", "https://mivb.openplanner.team/stops/2875"], ["https://mivb.openplanner.team/stops/1813", "https://mivb.openplanner.team/stops/1815"], ["https://mivb.openplanner.team/stops/4122", "https://mivb.openplanner.team/stops/4126F"], ["https://mivb.openplanner.team/stops/2256F", "https://mivb.openplanner.team/stops/2535F"], ["https://mivb.openplanner.team/stops/3860", "https://mivb.openplanner.team/stops/5915"], ["https://mivb.openplanner.team/stops/0900168", "https://mivb.openplanner.team/stops/1866"], ["https://mivb.openplanner.team/stops/1715", "https://mivb.openplanner.team/stops/5265F"], ["https://mivb.openplanner.team/stops/1675F", "https://mivb.openplanner.team/stops/6804F"], ["https://mivb.openplanner.team/stops/5320", "https://mivb.openplanner.team/stops/5958C"], ["https://mivb.openplanner.team/stops/2411B", "https://mivb.openplanner.team/stops/2936"], ["https://mivb.openplanner.team/stops/6166", "https://mivb.openplanner.team/stops/0340341"], ["https://mivb.openplanner.team/stops/2146", "https://mivb.openplanner.team/stops/2148"], ["https://mivb.openplanner.team/stops/2329", "https://mivb.openplanner.team/stops/3002"], ["https://mivb.openplanner.team/stops/3852", "https://mivb.openplanner.team/stops/3858"], ["https://mivb.openplanner.team/stops/3557", "https://mivb.openplanner.team/stops/5266F"], ["https://mivb.openplanner.team/stops/2241G", "https://mivb.openplanner.team/stops/5354H"], ["https://mivb.openplanner.team/stops/1483", "https://mivb.openplanner.team/stops/3717"], ["https://mivb.openplanner.team/stops/2518", "https://mivb.openplanner.team/stops/6812"], ["https://mivb.openplanner.team/stops/5121", "https://mivb.openplanner.team/stops/5161"], ["https://mivb.openplanner.team/stops/1166", "https://mivb.openplanner.team/stops/2268"], ["https://mivb.openplanner.team/stops/1475", "https://mivb.openplanner.team/stops/1541"], ["https://mivb.openplanner.team/stops/0670167", "https://mivb.openplanner.team/stops/0707"], ["https://mivb.openplanner.team/stops/1453", "https://mivb.openplanner.team/stops/4355"], ["https://mivb.openplanner.team/stops/2243F", "https://mivb.openplanner.team/stops/2248"], ["https://mivb.openplanner.team/stops/9606", "https://mivb.openplanner.team/stops/9631"], ["https://mivb.openplanner.team/stops/5152", "https://mivb.openplanner.team/stops/5719"], ["https://mivb.openplanner.team/stops/7720103", "https://mivb.openplanner.team/stops/3"], ["https://mivb.openplanner.team/stops/2701", "https://mivb.openplanner.team/stops/2702"], ["https://mivb.openplanner.team/stops/0370338", "https://mivb.openplanner.team/stops/0370438"], ["https://mivb.openplanner.team/stops/1466", "https://mivb.openplanner.team/stops/4207"], ["https://mivb.openplanner.team/stops/2412", "https://mivb.openplanner.team/stops/5814"], ["https://mivb.openplanner.team/stops/9656", "https://mivb.openplanner.team/stops/9679"], ["https://mivb.openplanner.team/stops/1105", "https://mivb.openplanner.team/stops/4653"], ["https://mivb.openplanner.team/stops/3230", "https://mivb.openplanner.team/stops/7730102"], ["https://mivb.openplanner.team/stops/5115", "https://mivb.openplanner.team/stops/5115F"], ["https://mivb.openplanner.team/stops/1874", "https://mivb.openplanner.team/stops/5503"], ["https://mivb.openplanner.team/stops/2131", "https://mivb.openplanner.team/stops/5212"], ["https://mivb.openplanner.team/stops/5722F", "https://mivb.openplanner.team/stops/5920H"], ["https://mivb.openplanner.team/stops/3003", "https://mivb.openplanner.team/stops/5906"], ["https://mivb.openplanner.team/stops/5414F", "https://mivb.openplanner.team/stops/5459F"], ["https://mivb.openplanner.team/stops/6459F", "https://mivb.openplanner.team/stops/6461F"], ["https://mivb.openplanner.team/stops/1010", "https://mivb.openplanner.team/stops/1676F"], ["https://mivb.openplanner.team/stops/1942", "https://mivb.openplanner.team/stops/9972F"], ["https://mivb.openplanner.team/stops/4002B", "https://mivb.openplanner.team/stops/5105"], ["https://mivb.openplanner.team/stops/1455", "https://mivb.openplanner.team/stops/5420F"], ["https://mivb.openplanner.team/stops/5108", "https://mivb.openplanner.team/stops/5166"], ["https://mivb.openplanner.team/stops/8331", "https://mivb.openplanner.team/stops/0330442"], ["https://mivb.openplanner.team/stops/3272", "https://mivb.openplanner.team/stops/3461"], ["https://mivb.openplanner.team/stops/8401", "https://mivb.openplanner.team/stops/8402"], ["https://mivb.openplanner.team/stops/3217", "https://mivb.openplanner.team/stops/6056"], ["https://mivb.openplanner.team/stops/0210132", "https://mivb.openplanner.team/stops/32"], ["https://mivb.openplanner.team/stops/8051", "https://mivb.openplanner.team/stops/19"], ["https://mivb.openplanner.team/stops/1073", "https://mivb.openplanner.team/stops/1084"], ["https://mivb.openplanner.team/stops/2359", "https://mivb.openplanner.team/stops/2360"], ["https://mivb.openplanner.team/stops/5804G", "https://mivb.openplanner.team/stops/7246"], ["https://mivb.openplanner.team/stops/2301", "https://mivb.openplanner.team/stops/0430548"], ["https://mivb.openplanner.team/stops/1129", "https://mivb.openplanner.team/stops/0310344"], ["https://mivb.openplanner.team/stops/3222", "https://mivb.openplanner.team/stops/6649F"], ["https://mivb.openplanner.team/stops/1901", "https://mivb.openplanner.team/stops/6357F"], ["https://mivb.openplanner.team/stops/5060", "https://mivb.openplanner.team/stops/5219F"], ["https://mivb.openplanner.team/stops/6017", "https://mivb.openplanner.team/stops/9060"], ["https://mivb.openplanner.team/stops/1933B", "https://mivb.openplanner.team/stops/1939"], ["https://mivb.openplanner.team/stops/5656", "https://mivb.openplanner.team/stops/9551"], ["https://mivb.openplanner.team/stops/6434F", "https://mivb.openplanner.team/stops/6437F"], ["https://mivb.openplanner.team/stops/3956", "https://mivb.openplanner.team/stops/4550"], ["https://mivb.openplanner.team/stops/9609", "https://mivb.openplanner.team/stops/9634"], ["https://mivb.openplanner.team/stops/1722", "https://mivb.openplanner.team/stops/1727"], ["https://mivb.openplanner.team/stops/3106", "https://mivb.openplanner.team/stops/5315"], ["https://mivb.openplanner.team/stops/3201", "https://mivb.openplanner.team/stops/3334G"], ["https://mivb.openplanner.team/stops/1943", "https://mivb.openplanner.team/stops/9972F"], ["https://mivb.openplanner.team/stops/1846", "https://mivb.openplanner.team/stops/5510"], ["https://mivb.openplanner.team/stops/1258B", "https://mivb.openplanner.team/stops/5920C"], ["https://mivb.openplanner.team/stops/8764", "https://mivb.openplanner.team/stops/0470459"], ["https://mivb.openplanner.team/stops/4360", "https://mivb.openplanner.team/stops/5413F"], ["https://mivb.openplanner.team/stops/2577", "https://mivb.openplanner.team/stops/2808"], ["https://mivb.openplanner.team/stops/2917", "https://mivb.openplanner.team/stops/3360F"], ["https://mivb.openplanner.team/stops/4213", "https://mivb.openplanner.team/stops/5013F"], ["https://mivb.openplanner.team/stops/3515", "https://mivb.openplanner.team/stops/4307"], ["https://mivb.openplanner.team/stops/1725", "https://mivb.openplanner.team/stops/3522"], ["https://mivb.openplanner.team/stops/2151", "https://mivb.openplanner.team/stops/5056"], ["https://mivb.openplanner.team/stops/8441", "https://mivb.openplanner.team/stops/8442"], ["https://mivb.openplanner.team/stops/4258", "https://mivb.openplanner.team/stops/4271"], ["https://mivb.openplanner.team/stops/1404", "https://mivb.openplanner.team/stops/6022B"], ["https://mivb.openplanner.team/stops/6601", "https://mivb.openplanner.team/stops/6705F"], ["https://mivb.openplanner.team/stops/1715", "https://mivb.openplanner.team/stops/5311"], ["https://mivb.openplanner.team/stops/7820353", "https://mivb.openplanner.team/stops/7820453"], ["https://mivb.openplanner.team/stops/1063", "https://mivb.openplanner.team/stops/2278"], ["https://mivb.openplanner.team/stops/1167", "https://mivb.openplanner.team/stops/6352"], ["https://mivb.openplanner.team/stops/8462", "https://mivb.openplanner.team/stops/0460150"], ["https://mivb.openplanner.team/stops/0270114", "https://mivb.openplanner.team/stops/0270614"], ["https://mivb.openplanner.team/stops/2550", "https://mivb.openplanner.team/stops/3808"], ["https://mivb.openplanner.team/stops/3112", "https://mivb.openplanner.team/stops/6203"], ["https://mivb.openplanner.team/stops/1419", "https://mivb.openplanner.team/stops/6023"], ["https://mivb.openplanner.team/stops/5921G", "https://mivb.openplanner.team/stops/5953"], ["https://mivb.openplanner.team/stops/2200F", "https://mivb.openplanner.team/stops/5742B"], ["https://mivb.openplanner.team/stops/5014", "https://mivb.openplanner.team/stops/6651"], ["https://mivb.openplanner.team/stops/1194", "https://mivb.openplanner.team/stops/5170"], ["https://mivb.openplanner.team/stops/4107", "https://mivb.openplanner.team/stops/4159"], ["https://mivb.openplanner.team/stops/2604", "https://mivb.openplanner.team/stops/2667"], ["https://mivb.openplanner.team/stops/2267", "https://mivb.openplanner.team/stops/0010215"], ["https://mivb.openplanner.team/stops/0650265", "https://mivb.openplanner.team/stops/8331"], ["https://mivb.openplanner.team/stops/3180", "https://mivb.openplanner.team/stops/5303"], ["https://mivb.openplanner.team/stops/5255F", "https://mivb.openplanner.team/stops/5256F"], ["https://mivb.openplanner.team/stops/5014", "https://mivb.openplanner.team/stops/5071"], ["https://mivb.openplanner.team/stops/4124", "https://mivb.openplanner.team/stops/4130"], ["https://mivb.openplanner.team/stops/3558", "https://mivb.openplanner.team/stops/4307"], ["https://mivb.openplanner.team/stops/1310", "https://mivb.openplanner.team/stops/4101"], ["https://mivb.openplanner.team/stops/1846", "https://mivb.openplanner.team/stops/1847"], ["https://mivb.openplanner.team/stops/2212", "https://mivb.openplanner.team/stops/3261"], ["https://mivb.openplanner.team/stops/5282F", "https://mivb.openplanner.team/stops/5283F"], ["https://mivb.openplanner.team/stops/7790456", "https://mivb.openplanner.team/stops/7790556"], ["https://mivb.openplanner.team/stops/1258G", "https://mivb.openplanner.team/stops/5920H"], ["https://mivb.openplanner.team/stops/1307", "https://mivb.openplanner.team/stops/1307F"], ["https://mivb.openplanner.team/stops/1959", "https://mivb.openplanner.team/stops/1961B"], ["https://mivb.openplanner.team/stops/3106", "https://mivb.openplanner.team/stops/3107"], ["https://mivb.openplanner.team/stops/0529", "https://mivb.openplanner.team/stops/0430948"], ["https://mivb.openplanner.team/stops/2584", "https://mivb.openplanner.team/stops/2805F"], ["https://mivb.openplanner.team/stops/0610563", "https://mivb.openplanner.team/stops/2264"], ["https://mivb.openplanner.team/stops/5072", "https://mivb.openplanner.team/stops/8462"], ["https://mivb.openplanner.team/stops/0660166", "https://mivb.openplanner.team/stops/6078"], ["https://mivb.openplanner.team/stops/2304", "https://mivb.openplanner.team/stops/2371"], ["https://mivb.openplanner.team/stops/1449", "https://mivb.openplanner.team/stops/1859"], ["https://mivb.openplanner.team/stops/5020", "https://mivb.openplanner.team/stops/5063"], ["https://mivb.openplanner.team/stops/8301", "https://mivb.openplanner.team/stops/8302"], ["https://mivb.openplanner.team/stops/4295", "https://mivb.openplanner.team/stops/4455"], ["https://mivb.openplanner.team/stops/6410", "https://mivb.openplanner.team/stops/6413F"], ["https://mivb.openplanner.team/stops/1540", "https://mivb.openplanner.team/stops/0120626"], ["https://mivb.openplanner.team/stops/1830", "https://mivb.openplanner.team/stops/0130127"], ["https://mivb.openplanner.team/stops/4344", "https://mivb.openplanner.team/stops/4403"], ["https://mivb.openplanner.team/stops/1529", "https://mivb.openplanner.team/stops/0120626"], ["https://mivb.openplanner.team/stops/1792", "https://mivb.openplanner.team/stops/6755"], ["https://mivb.openplanner.team/stops/2986B", "https://mivb.openplanner.team/stops/5968"], ["https://mivb.openplanner.team/stops/1121", "https://mivb.openplanner.team/stops/9779"], ["https://mivb.openplanner.team/stops/0811", "https://mivb.openplanner.team/stops/0810369"], ["https://mivb.openplanner.team/stops/5562", "https://mivb.openplanner.team/stops/0090123"], ["https://mivb.openplanner.team/stops/3175B", "https://mivb.openplanner.team/stops/9292"], ["https://mivb.openplanner.team/stops/9577", "https://mivb.openplanner.team/stops/9578"], ["https://mivb.openplanner.team/stops/2010", "https://mivb.openplanner.team/stops/5053G"], ["https://mivb.openplanner.team/stops/2502", "https://mivb.openplanner.team/stops/9027"], ["https://mivb.openplanner.team/stops/6649F", "https://mivb.openplanner.team/stops/0280113"], ["https://mivb.openplanner.team/stops/3608", "https://mivb.openplanner.team/stops/3609F"], ["https://mivb.openplanner.team/stops/1252", "https://mivb.openplanner.team/stops/0160230"], ["https://mivb.openplanner.team/stops/2548", "https://mivb.openplanner.team/stops/3804B"], ["https://mivb.openplanner.team/stops/2814", "https://mivb.openplanner.team/stops/2857B"], ["https://mivb.openplanner.team/stops/5312", "https://mivb.openplanner.team/stops/0200231"], ["https://mivb.openplanner.team/stops/2728", "https://mivb.openplanner.team/stops/3530"], ["https://mivb.openplanner.team/stops/1678F", "https://mivb.openplanner.team/stops/1748"], ["https://mivb.openplanner.team/stops/1466", "https://mivb.openplanner.team/stops/1711"], ["https://mivb.openplanner.team/stops/2408", "https://mivb.openplanner.team/stops/2409"], ["https://mivb.openplanner.team/stops/3713", "https://mivb.openplanner.team/stops/3717"], ["https://mivb.openplanner.team/stops/1019", "https://mivb.openplanner.team/stops/4253"], ["https://mivb.openplanner.team/stops/1495", "https://mivb.openplanner.team/stops/6856"], ["https://mivb.openplanner.team/stops/0636", "https://mivb.openplanner.team/stops/6862F"], ["https://mivb.openplanner.team/stops/5221F", "https://mivb.openplanner.team/stops/9969F"], ["https://mivb.openplanner.team/stops/4109", "https://mivb.openplanner.team/stops/4168"], ["https://mivb.openplanner.team/stops/1150", "https://mivb.openplanner.team/stops/3919"], ["https://mivb.openplanner.team/stops/3257F", "https://mivb.openplanner.team/stops/7740201"], ["https://mivb.openplanner.team/stops/1913", "https://mivb.openplanner.team/stops/1914"], ["https://mivb.openplanner.team/stops/6481", "https://mivb.openplanner.team/stops/7830152"], ["https://mivb.openplanner.team/stops/3610G", "https://mivb.openplanner.team/stops/3751"], ["https://mivb.openplanner.team/stops/1145", "https://mivb.openplanner.team/stops/8382"], ["https://mivb.openplanner.team/stops/1684F", "https://mivb.openplanner.team/stops/1744"], ["https://mivb.openplanner.team/stops/1015", "https://mivb.openplanner.team/stops/3859"], ["https://mivb.openplanner.team/stops/3411", "https://mivb.openplanner.team/stops/3470"], ["https://mivb.openplanner.team/stops/2545", "https://mivb.openplanner.team/stops/6100"], ["https://mivb.openplanner.team/stops/2604F", "https://mivb.openplanner.team/stops/5121"], ["https://mivb.openplanner.team/stops/1117", "https://mivb.openplanner.team/stops/8731"], ["https://mivb.openplanner.team/stops/3207", "https://mivb.openplanner.team/stops/3765"], ["https://mivb.openplanner.team/stops/1834", "https://mivb.openplanner.team/stops/1841"], ["https://mivb.openplanner.team/stops/4212B", "https://mivb.openplanner.team/stops/58"], ["https://mivb.openplanner.team/stops/3008", "https://mivb.openplanner.team/stops/5761"], ["https://mivb.openplanner.team/stops/6931B", "https://mivb.openplanner.team/stops/6956B"], ["https://mivb.openplanner.team/stops/2415", "https://mivb.openplanner.team/stops/5917F"], ["https://mivb.openplanner.team/stops/1584", "https://mivb.openplanner.team/stops/1641"], ["https://mivb.openplanner.team/stops/5731F", "https://mivb.openplanner.team/stops/5753F"], ["https://mivb.openplanner.team/stops/3612F", "https://mivb.openplanner.team/stops/7660109"], ["https://mivb.openplanner.team/stops/2909", "https://mivb.openplanner.team/stops/3175B"], ["https://mivb.openplanner.team/stops/1117", "https://mivb.openplanner.team/stops/1145"], ["https://mivb.openplanner.team/stops/2305", "https://mivb.openplanner.team/stops/2370"], ["https://mivb.openplanner.team/stops/3018", "https://mivb.openplanner.team/stops/3337F"], ["https://mivb.openplanner.team/stops/2922", "https://mivb.openplanner.team/stops/2970"], ["https://mivb.openplanner.team/stops/1015", "https://mivb.openplanner.team/stops/1072"], ["https://mivb.openplanner.team/stops/2990", "https://mivb.openplanner.team/stops/5307G"], ["https://mivb.openplanner.team/stops/1425", "https://mivb.openplanner.team/stops/2920"], ["https://mivb.openplanner.team/stops/2267", "https://mivb.openplanner.team/stops/8441"], ["https://mivb.openplanner.team/stops/4129", "https://mivb.openplanner.team/stops/4266"], ["https://mivb.openplanner.team/stops/1110", "https://mivb.openplanner.team/stops/1933B"], ["https://mivb.openplanner.team/stops/1635", "https://mivb.openplanner.team/stops/9600B"], ["https://mivb.openplanner.team/stops/2373", "https://mivb.openplanner.team/stops/6811"], ["https://mivb.openplanner.team/stops/4002G", "https://mivb.openplanner.team/stops/5105"], ["https://mivb.openplanner.team/stops/3814", "https://mivb.openplanner.team/stops/3850"], ["https://mivb.openplanner.team/stops/1262B", "https://mivb.openplanner.team/stops/1729"], ["https://mivb.openplanner.team/stops/1522", "https://mivb.openplanner.team/stops/0110225"], ["https://mivb.openplanner.team/stops/1842", "https://mivb.openplanner.team/stops/3506"], ["https://mivb.openplanner.team/stops/0900568", "https://mivb.openplanner.team/stops/1809"], ["https://mivb.openplanner.team/stops/0650165", "https://mivb.openplanner.team/stops/0724"], ["https://mivb.openplanner.team/stops/2608F", "https://mivb.openplanner.team/stops/2669F"], ["https://mivb.openplanner.team/stops/4267", "https://mivb.openplanner.team/stops/8784"], ["https://mivb.openplanner.team/stops/1323", "https://mivb.openplanner.team/stops/9986F"], ["https://mivb.openplanner.team/stops/2217", "https://mivb.openplanner.team/stops/7720103"], ["https://mivb.openplanner.team/stops/2987", "https://mivb.openplanner.team/stops/2988"], ["https://mivb.openplanner.team/stops/1134", "https://mivb.openplanner.team/stops/1873"], ["https://mivb.openplanner.team/stops/3228F", "https://mivb.openplanner.team/stops/4595"], ["https://mivb.openplanner.team/stops/3760", "https://mivb.openplanner.team/stops/7710204"], ["https://mivb.openplanner.team/stops/5015", "https://mivb.openplanner.team/stops/8462"], ["https://mivb.openplanner.team/stops/1855", "https://mivb.openplanner.team/stops/6659F"], ["https://mivb.openplanner.team/stops/0020416", "https://mivb.openplanner.team/stops/0020516"], ["https://mivb.openplanner.team/stops/1102", "https://mivb.openplanner.team/stops/5174F"], ["https://mivb.openplanner.team/stops/0430348", "https://mivb.openplanner.team/stops/0430848"], ["https://mivb.openplanner.team/stops/3114", "https://mivb.openplanner.team/stops/3162"], ["https://mivb.openplanner.team/stops/2226", "https://mivb.openplanner.team/stops/3808"], ["https://mivb.openplanner.team/stops/5080", "https://mivb.openplanner.team/stops/6553"], ["https://mivb.openplanner.team/stops/1813", "https://mivb.openplanner.team/stops/1862"], ["https://mivb.openplanner.team/stops/2313", "https://mivb.openplanner.team/stops/2827"], ["https://mivb.openplanner.team/stops/5009F", "https://mivb.openplanner.team/stops/7770158"], ["https://mivb.openplanner.team/stops/0473F", "https://mivb.openplanner.team/stops/8764"], ["https://mivb.openplanner.team/stops/1652", "https://mivb.openplanner.team/stops/1741"], ["https://mivb.openplanner.team/stops/1232", "https://mivb.openplanner.team/stops/5119"], ["https://mivb.openplanner.team/stops/2665", "https://mivb.openplanner.team/stops/9920F"], ["https://mivb.openplanner.team/stops/6464", "https://mivb.openplanner.team/stops/0060120"], ["https://mivb.openplanner.team/stops/3221", "https://mivb.openplanner.team/stops/3261"], ["https://mivb.openplanner.team/stops/1866", "https://mivb.openplanner.team/stops/0210232"], ["https://mivb.openplanner.team/stops/9680", "https://mivb.openplanner.team/stops/9685"], ["https://mivb.openplanner.team/stops/9751", "https://mivb.openplanner.team/stops/9784B"], ["https://mivb.openplanner.team/stops/1326", "https://mivb.openplanner.team/stops/6809"], ["https://mivb.openplanner.team/stops/3558", "https://mivb.openplanner.team/stops/5468"], ["https://mivb.openplanner.team/stops/3042", "https://mivb.openplanner.team/stops/9779"], ["https://mivb.openplanner.team/stops/1757", "https://mivb.openplanner.team/stops/3553"], ["https://mivb.openplanner.team/stops/1059", "https://mivb.openplanner.team/stops/5409"], ["https://mivb.openplanner.team/stops/5756", "https://mivb.openplanner.team/stops/5756F"], ["https://mivb.openplanner.team/stops/5724", "https://mivb.openplanner.team/stops/5826"], ["https://mivb.openplanner.team/stops/5361F", "https://mivb.openplanner.team/stops/5362"], ["https://mivb.openplanner.team/stops/3251", "https://mivb.openplanner.team/stops/3266"], ["https://mivb.openplanner.team/stops/1419", "https://mivb.openplanner.team/stops/1463"], ["https://mivb.openplanner.team/stops/6203", "https://mivb.openplanner.team/stops/6304"], ["https://mivb.openplanner.team/stops/1642F", "https://mivb.openplanner.team/stops/6201F"], ["https://mivb.openplanner.team/stops/1380", "https://mivb.openplanner.team/stops/5518"], ["https://mivb.openplanner.team/stops/6505", "https://mivb.openplanner.team/stops/6552"], ["https://mivb.openplanner.team/stops/1339", "https://mivb.openplanner.team/stops/8151"], ["https://mivb.openplanner.team/stops/0260137", "https://mivb.openplanner.team/stops/0260237"], ["https://mivb.openplanner.team/stops/4207", "https://mivb.openplanner.team/stops/4259"], ["https://mivb.openplanner.team/stops/1729", "https://mivb.openplanner.team/stops/8042"], ["https://mivb.openplanner.team/stops/2237", "https://mivb.openplanner.team/stops/2238"], ["https://mivb.openplanner.team/stops/1368", "https://mivb.openplanner.team/stops/1606"], ["https://mivb.openplanner.team/stops/1410", "https://mivb.openplanner.team/stops/1578"], ["https://mivb.openplanner.team/stops/1711", "https://mivb.openplanner.team/stops/4207"], ["https://mivb.openplanner.team/stops/8411", "https://mivb.openplanner.team/stops/0410146"], ["https://mivb.openplanner.team/stops/2360", "https://mivb.openplanner.team/stops/3063"], ["https://mivb.openplanner.team/stops/2518", "https://mivb.openplanner.team/stops/5"], ["https://mivb.openplanner.team/stops/2132", "https://mivb.openplanner.team/stops/2133"], ["https://mivb.openplanner.team/stops/2664", "https://mivb.openplanner.team/stops/5964"], ["https://mivb.openplanner.team/stops/2038", "https://mivb.openplanner.team/stops/2085"], ["https://mivb.openplanner.team/stops/3125", "https://mivb.openplanner.team/stops/3562"], ["https://mivb.openplanner.team/stops/1483", "https://mivb.openplanner.team/stops/1488"], ["https://mivb.openplanner.team/stops/2296", "https://mivb.openplanner.team/stops/8012"], ["https://mivb.openplanner.team/stops/2022", "https://mivb.openplanner.team/stops/9851"], ["https://mivb.openplanner.team/stops/1477B", "https://mivb.openplanner.team/stops/8662"], ["https://mivb.openplanner.team/stops/5100B", "https://mivb.openplanner.team/stops/5101B"], ["https://mivb.openplanner.team/stops/6409F", "https://mivb.openplanner.team/stops/6413F"], ["https://mivb.openplanner.team/stops/1582", "https://mivb.openplanner.team/stops/3118"], ["https://mivb.openplanner.team/stops/2125", "https://mivb.openplanner.team/stops/2132"], ["https://mivb.openplanner.team/stops/1419", "https://mivb.openplanner.team/stops/3217"], ["https://mivb.openplanner.team/stops/9783", "https://mivb.openplanner.team/stops/9787"], ["https://mivb.openplanner.team/stops/6481", "https://mivb.openplanner.team/stops/6482"], ["https://mivb.openplanner.team/stops/1673", "https://mivb.openplanner.team/stops/5530"], ["https://mivb.openplanner.team/stops/2264", "https://mivb.openplanner.team/stops/3259B"], ["https://mivb.openplanner.team/stops/4408", "https://mivb.openplanner.team/stops/4449"], ["https://mivb.openplanner.team/stops/3210B", "https://mivb.openplanner.team/stops/3661"], ["https://mivb.openplanner.team/stops/1984B", "https://mivb.openplanner.team/stops/1985G"], ["https://mivb.openplanner.team/stops/5041B", "https://mivb.openplanner.team/stops/5363"], ["https://mivb.openplanner.team/stops/1724", "https://mivb.openplanner.team/stops/1725"], ["https://mivb.openplanner.team/stops/2312", "https://mivb.openplanner.team/stops/2819"], ["https://mivb.openplanner.team/stops/0705", "https://mivb.openplanner.team/stops/0723"], ["https://mivb.openplanner.team/stops/2572", "https://mivb.openplanner.team/stops/2573B"], ["https://mivb.openplanner.team/stops/2016", "https://mivb.openplanner.team/stops/2018"], ["https://mivb.openplanner.team/stops/3407", "https://mivb.openplanner.team/stops/5803G"], ["https://mivb.openplanner.team/stops/2917", "https://mivb.openplanner.team/stops/3299"], ["https://mivb.openplanner.team/stops/2418", "https://mivb.openplanner.team/stops/0340141"], ["https://mivb.openplanner.team/stops/0526", "https://mivb.openplanner.team/stops/1644F"], ["https://mivb.openplanner.team/stops/6162", "https://mivb.openplanner.team/stops/6428"], ["https://mivb.openplanner.team/stops/4310", "https://mivb.openplanner.team/stops/4357"], ["https://mivb.openplanner.team/stops/2260F", "https://mivb.openplanner.team/stops/8371"], ["https://mivb.openplanner.team/stops/1931", "https://mivb.openplanner.team/stops/1961B"], ["https://mivb.openplanner.team/stops/5359", "https://mivb.openplanner.team/stops/7762"], ["https://mivb.openplanner.team/stops/3204", "https://mivb.openplanner.team/stops/3317"], ["https://mivb.openplanner.team/stops/1415", "https://mivb.openplanner.team/stops/1584"], ["https://mivb.openplanner.team/stops/2603", "https://mivb.openplanner.team/stops/2667"], ["https://mivb.openplanner.team/stops/2459", "https://mivb.openplanner.team/stops/2463"], ["https://mivb.openplanner.team/stops/3401", "https://mivb.openplanner.team/stops/3765"], ["https://mivb.openplanner.team/stops/2308", "https://mivb.openplanner.team/stops/2337F"], ["https://mivb.openplanner.team/stops/2017", "https://mivb.openplanner.team/stops/2041"], ["https://mivb.openplanner.team/stops/4122", "https://mivb.openplanner.team/stops/4126"], ["https://mivb.openplanner.team/stops/1675F", "https://mivb.openplanner.team/stops/6867F"], ["https://mivb.openplanner.team/stops/1002", "https://mivb.openplanner.team/stops/1124"], ["https://mivb.openplanner.team/stops/5271F", "https://mivb.openplanner.team/stops/5281G"], ["https://mivb.openplanner.team/stops/2410", "https://mivb.openplanner.team/stops/2936"], ["https://mivb.openplanner.team/stops/6314", "https://mivb.openplanner.team/stops/6361"], ["https://mivb.openplanner.team/stops/0020116", "https://mivb.openplanner.team/stops/0020616"], ["https://mivb.openplanner.team/stops/1673", "https://mivb.openplanner.team/stops/2017"], ["https://mivb.openplanner.team/stops/3282", "https://mivb.openplanner.team/stops/6005"], ["https://mivb.openplanner.team/stops/2146", "https://mivb.openplanner.team/stops/2147B"], ["https://mivb.openplanner.team/stops/5418", "https://mivb.openplanner.team/stops/5455"], ["https://mivb.openplanner.team/stops/7750160", "https://mivb.openplanner.team/stops/60"], ["https://mivb.openplanner.team/stops/2115", "https://mivb.openplanner.team/stops/4311"], ["https://mivb.openplanner.team/stops/1853", "https://mivb.openplanner.team/stops/5659"], ["https://mivb.openplanner.team/stops/1322", "https://mivb.openplanner.team/stops/5253"], ["https://mivb.openplanner.team/stops/2575", "https://mivb.openplanner.team/stops/5078F"], ["https://mivb.openplanner.team/stops/1906", "https://mivb.openplanner.team/stops/5611"], ["https://mivb.openplanner.team/stops/4318", "https://mivb.openplanner.team/stops/5422"], ["https://mivb.openplanner.team/stops/2531", "https://mivb.openplanner.team/stops/0350140"], ["https://mivb.openplanner.team/stops/1943", "https://mivb.openplanner.team/stops/5060"], ["https://mivb.openplanner.team/stops/3218", "https://mivb.openplanner.team/stops/6082"], ["https://mivb.openplanner.team/stops/5152", "https://mivb.openplanner.team/stops/5719H"], ["https://mivb.openplanner.team/stops/1627", "https://mivb.openplanner.team/stops/1631"], ["https://mivb.openplanner.team/stops/0900268", "https://mivb.openplanner.team/stops/2285G"], ["https://mivb.openplanner.team/stops/3613F", "https://mivb.openplanner.team/stops/6799F"], ["https://mivb.openplanner.team/stops/3763", "https://mivb.openplanner.team/stops/3766"], ["https://mivb.openplanner.team/stops/1097", "https://mivb.openplanner.team/stops/1197"], ["https://mivb.openplanner.team/stops/1465", "https://mivb.openplanner.team/stops/0270114"], ["https://mivb.openplanner.team/stops/1937", "https://mivb.openplanner.team/stops/5825"], ["https://mivb.openplanner.team/stops/3450", "https://mivb.openplanner.team/stops/4556"], ["https://mivb.openplanner.team/stops/8112", "https://mivb.openplanner.team/stops/0110225"], ["https://mivb.openplanner.team/stops/3263F", "https://mivb.openplanner.team/stops/4595"], ["https://mivb.openplanner.team/stops/6005", "https://mivb.openplanner.team/stops/8733"], ["https://mivb.openplanner.team/stops/3235", "https://mivb.openplanner.team/stops/4659"], ["https://mivb.openplanner.team/stops/1105", "https://mivb.openplanner.team/stops/4655"], ["https://mivb.openplanner.team/stops/2144", "https://mivb.openplanner.team/stops/2718"], ["https://mivb.openplanner.team/stops/1303", "https://mivb.openplanner.team/stops/2508"], ["https://mivb.openplanner.team/stops/2285G", "https://mivb.openplanner.team/stops/0070621"], ["https://mivb.openplanner.team/stops/5414F", "https://mivb.openplanner.team/stops/5459"], ["https://mivb.openplanner.team/stops/1180", "https://mivb.openplanner.team/stops/1626"], ["https://mivb.openplanner.team/stops/1777B", "https://mivb.openplanner.team/stops/3160"], ["https://mivb.openplanner.team/stops/4257", "https://mivb.openplanner.team/stops/4276"], ["https://mivb.openplanner.team/stops/1514", "https://mivb.openplanner.team/stops/6204"], ["https://mivb.openplanner.team/stops/3240", "https://mivb.openplanner.team/stops/3403"], ["https://mivb.openplanner.team/stops/0040118", "https://mivb.openplanner.team/stops/0300245"], ["https://mivb.openplanner.team/stops/1539", "https://mivb.openplanner.team/stops/3959"], ["https://mivb.openplanner.team/stops/4022", "https://mivb.openplanner.team/stops/7740101"], ["https://mivb.openplanner.team/stops/1682F", "https://mivb.openplanner.team/stops/1722"], ["https://mivb.openplanner.team/stops/3233", "https://mivb.openplanner.team/stops/3234"], ["https://mivb.openplanner.team/stops/4602", "https://mivb.openplanner.team/stops/4653"], ["https://mivb.openplanner.team/stops/2664", "https://mivb.openplanner.team/stops/5720F"], ["https://mivb.openplanner.team/stops/2294B", "https://mivb.openplanner.team/stops/3280"], ["https://mivb.openplanner.team/stops/1258B", "https://mivb.openplanner.team/stops/1258G"], ["https://mivb.openplanner.team/stops/3226B", "https://mivb.openplanner.team/stops/3226F"], ["https://mivb.openplanner.team/stops/5804G", "https://mivb.openplanner.team/stops/7252B"], ["https://mivb.openplanner.team/stops/1018", "https://mivb.openplanner.team/stops/1201"], ["https://mivb.openplanner.team/stops/1387", "https://mivb.openplanner.team/stops/1635"], ["https://mivb.openplanner.team/stops/1602", "https://mivb.openplanner.team/stops/5517"], ["https://mivb.openplanner.team/stops/1598", "https://mivb.openplanner.team/stops/3557"], ["https://mivb.openplanner.team/stops/5022", "https://mivb.openplanner.team/stops/6420G"], ["https://mivb.openplanner.team/stops/1751", "https://mivb.openplanner.team/stops/6468"], ["https://mivb.openplanner.team/stops/4053G", "https://mivb.openplanner.team/stops/6071"], ["https://mivb.openplanner.team/stops/1639", "https://mivb.openplanner.team/stops/1830"], ["https://mivb.openplanner.team/stops/6456F", "https://mivb.openplanner.team/stops/6459"], ["https://mivb.openplanner.team/stops/1822", "https://mivb.openplanner.team/stops/1853"], ["https://mivb.openplanner.team/stops/1159", "https://mivb.openplanner.team/stops/6024"], ["https://mivb.openplanner.team/stops/3814", "https://mivb.openplanner.team/stops/5964"], ["https://mivb.openplanner.team/stops/1348", "https://mivb.openplanner.team/stops/1350"], ["https://mivb.openplanner.team/stops/2898", "https://mivb.openplanner.team/stops/6461"], ["https://mivb.openplanner.team/stops/1725", "https://mivb.openplanner.team/stops/2086"], ["https://mivb.openplanner.team/stops/3201", "https://mivb.openplanner.team/stops/3335F"], ["https://mivb.openplanner.team/stops/1314", "https://mivb.openplanner.team/stops/5165"], ["https://mivb.openplanner.team/stops/2325", "https://mivb.openplanner.team/stops/6168"], ["https://mivb.openplanner.team/stops/4123", "https://mivb.openplanner.team/stops/4130"], ["https://mivb.openplanner.team/stops/2373", "https://mivb.openplanner.team/stops/2518"], ["https://mivb.openplanner.team/stops/1258B", "https://mivb.openplanner.team/stops/5920H"], ["https://mivb.openplanner.team/stops/1166", "https://mivb.openplanner.team/stops/1376B"], ["https://mivb.openplanner.team/stops/1620B", "https://mivb.openplanner.team/stops/1657"], ["https://mivb.openplanner.team/stops/1124", "https://mivb.openplanner.team/stops/0300245"], ["https://mivb.openplanner.team/stops/5776", "https://mivb.openplanner.team/stops/9056F"], ["https://mivb.openplanner.team/stops/3200", "https://mivb.openplanner.team/stops/3276"], ["https://mivb.openplanner.team/stops/3515", "https://mivb.openplanner.team/stops/4308"], ["https://mivb.openplanner.team/stops/4062", "https://mivb.openplanner.team/stops/4165"], ["https://mivb.openplanner.team/stops/0160230", "https://mivb.openplanner.team/stops/8162"], ["https://mivb.openplanner.team/stops/5905", "https://mivb.openplanner.team/stops/5968"], ["https://mivb.openplanner.team/stops/2667", "https://mivb.openplanner.team/stops/2938"], ["https://mivb.openplanner.team/stops/5011", "https://mivb.openplanner.team/stops/5074"], ["https://mivb.openplanner.team/stops/6019", "https://mivb.openplanner.team/stops/6060"], ["https://mivb.openplanner.team/stops/2103", "https://mivb.openplanner.team/stops/2112"], ["https://mivb.openplanner.team/stops/2074", "https://mivb.openplanner.team/stops/4309"], ["https://mivb.openplanner.team/stops/8101", "https://mivb.openplanner.team/stops/0100324"], ["https://mivb.openplanner.team/stops/0724", "https://mivb.openplanner.team/stops/2470"], ["https://mivb.openplanner.team/stops/4347", "https://mivb.openplanner.team/stops/5421"], ["https://mivb.openplanner.team/stops/1063", "https://mivb.openplanner.team/stops/2279"], ["https://mivb.openplanner.team/stops/2926", "https://mivb.openplanner.team/stops/5274F"], ["https://mivb.openplanner.team/stops/8783", "https://mivb.openplanner.team/stops/7780157"], ["https://mivb.openplanner.team/stops/1753", "https://mivb.openplanner.team/stops/2086"], ["https://mivb.openplanner.team/stops/2534", "https://mivb.openplanner.team/stops/7710204"], ["https://mivb.openplanner.team/stops/1144", "https://mivb.openplanner.team/stops/1165"], ["https://mivb.openplanner.team/stops/2920", "https://mivb.openplanner.team/stops/6082"], ["https://mivb.openplanner.team/stops/1534", "https://mivb.openplanner.team/stops/3200"], ["https://mivb.openplanner.team/stops/6602P", "https://mivb.openplanner.team/stops/6656"], ["https://mivb.openplanner.team/stops/1449", "https://mivb.openplanner.team/stops/5224F"], ["https://mivb.openplanner.team/stops/0610463", "https://mivb.openplanner.team/stops/2264"], ["https://mivb.openplanner.team/stops/4287", "https://mivb.openplanner.team/stops/4340"], ["https://mivb.openplanner.team/stops/1563", "https://mivb.openplanner.team/stops/2247"], ["https://mivb.openplanner.team/stops/2824", "https://mivb.openplanner.team/stops/5773"], ["https://mivb.openplanner.team/stops/1915", "https://mivb.openplanner.team/stops/5254"], ["https://mivb.openplanner.team/stops/1113", "https://mivb.openplanner.team/stops/0080522"], ["https://mivb.openplanner.team/stops/3126", "https://mivb.openplanner.team/stops/3182"], ["https://mivb.openplanner.team/stops/1016", "https://mivb.openplanner.team/stops/1349"], ["https://mivb.openplanner.team/stops/0650265", "https://mivb.openplanner.team/stops/8332"], ["https://mivb.openplanner.team/stops/9556", "https://mivb.openplanner.team/stops/9557"], ["https://mivb.openplanner.team/stops/5255F", "https://mivb.openplanner.team/stops/5256"], ["https://mivb.openplanner.team/stops/1829", "https://mivb.openplanner.team/stops/1846"], ["https://mivb.openplanner.team/stops/2813", "https://mivb.openplanner.team/stops/5700G"], ["https://mivb.openplanner.team/stops/2362B", "https://mivb.openplanner.team/stops/3014"], ["https://mivb.openplanner.team/stops/5519", "https://mivb.openplanner.team/stops/7501"], ["https://mivb.openplanner.team/stops/5459", "https://mivb.openplanner.team/stops/6550"], ["https://mivb.openplanner.team/stops/1318", "https://mivb.openplanner.team/stops/8061"], ["https://mivb.openplanner.team/stops/1132", "https://mivb.openplanner.team/stops/1133"], ["https://mivb.openplanner.team/stops/4152", "https://mivb.openplanner.team/stops/6805F"], ["https://mivb.openplanner.team/stops/3017", "https://mivb.openplanner.team/stops/3018"], ["https://mivb.openplanner.team/stops/2717", "https://mivb.openplanner.team/stops/2759"], ["https://mivb.openplanner.team/stops/1349", "https://mivb.openplanner.team/stops/1356"], ["https://mivb.openplanner.team/stops/1830", "https://mivb.openplanner.team/stops/0130227"], ["https://mivb.openplanner.team/stops/4602", "https://mivb.openplanner.team/stops/4658"], ["https://mivb.openplanner.team/stops/6442", "https://mivb.openplanner.team/stops/0020316"], ["https://mivb.openplanner.team/stops/4212B", "https://mivb.openplanner.team/stops/4271"], ["https://mivb.openplanner.team/stops/5022", "https://mivb.openplanner.team/stops/6253"], ["https://mivb.openplanner.team/stops/0600762", "https://mivb.openplanner.team/stops/0600962"], ["https://mivb.openplanner.team/stops/3172", "https://mivb.openplanner.team/stops/5911"], ["https://mivb.openplanner.team/stops/5041B", "https://mivb.openplanner.team/stops/5041F"], ["https://mivb.openplanner.team/stops/3514", "https://mivb.openplanner.team/stops/4362"], ["https://mivb.openplanner.team/stops/0811", "https://mivb.openplanner.team/stops/0810469"], ["https://mivb.openplanner.team/stops/0801", "https://mivb.openplanner.team/stops/0080222"], ["https://mivb.openplanner.team/stops/1018", "https://mivb.openplanner.team/stops/1486B"], ["https://mivb.openplanner.team/stops/1098", "https://mivb.openplanner.team/stops/4022"], ["https://mivb.openplanner.team/stops/0100424", "https://mivb.openplanner.team/stops/23"], ["https://mivb.openplanner.team/stops/4289", "https://mivb.openplanner.team/stops/4342"], ["https://mivb.openplanner.team/stops/3956", "https://mivb.openplanner.team/stops/4500"], ["https://mivb.openplanner.team/stops/1167", "https://mivb.openplanner.team/stops/1168"], ["https://mivb.openplanner.team/stops/4063", "https://mivb.openplanner.team/stops/4110"], ["https://mivb.openplanner.team/stops/1781", "https://mivb.openplanner.team/stops/5286"], ["https://mivb.openplanner.team/stops/1540", "https://mivb.openplanner.team/stops/3899"], ["https://mivb.openplanner.team/stops/2402", "https://mivb.openplanner.team/stops/6165"], ["https://mivb.openplanner.team/stops/2709F", "https://mivb.openplanner.team/stops/2765"], ["https://mivb.openplanner.team/stops/1252", "https://mivb.openplanner.team/stops/0160130"], ["https://mivb.openplanner.team/stops/7820253", "https://mivb.openplanner.team/stops/53"], ["https://mivb.openplanner.team/stops/0430648", "https://mivb.openplanner.team/stops/0430748"], ["https://mivb.openplanner.team/stops/3629", "https://mivb.openplanner.team/stops/0320443"], ["https://mivb.openplanner.team/stops/2548", "https://mivb.openplanner.team/stops/3802"], ["https://mivb.openplanner.team/stops/5312", "https://mivb.openplanner.team/stops/8211"], ["https://mivb.openplanner.team/stops/3765", "https://mivb.openplanner.team/stops/5046"], ["https://mivb.openplanner.team/stops/3572F", "https://mivb.openplanner.team/stops/6112"], ["https://mivb.openplanner.team/stops/6172", "https://mivb.openplanner.team/stops/6504"], ["https://mivb.openplanner.team/stops/3919", "https://mivb.openplanner.team/stops/0110225"], ["https://mivb.openplanner.team/stops/4076", "https://mivb.openplanner.team/stops/5058"], ["https://mivb.openplanner.team/stops/5058F", "https://mivb.openplanner.team/stops/5854"], ["https://mivb.openplanner.team/stops/1900", "https://mivb.openplanner.team/stops/6413F"], ["https://mivb.openplanner.team/stops/8733", "https://mivb.openplanner.team/stops/8741"], ["https://mivb.openplanner.team/stops/5359", "https://mivb.openplanner.team/stops/6457F"], ["https://mivb.openplanner.team/stops/4109", "https://mivb.openplanner.team/stops/4165"], ["https://mivb.openplanner.team/stops/6603", "https://mivb.openplanner.team/stops/6650G"], ["https://mivb.openplanner.team/stops/5281", "https://mivb.openplanner.team/stops/5556"], ["https://mivb.openplanner.team/stops/1250", "https://mivb.openplanner.team/stops/1251"], ["https://mivb.openplanner.team/stops/1970", "https://mivb.openplanner.team/stops/2152"], ["https://mivb.openplanner.team/stops/2514", "https://mivb.openplanner.team/stops/2564"], ["https://mivb.openplanner.team/stops/6016", "https://mivb.openplanner.team/stops/6369"], ["https://mivb.openplanner.team/stops/1684F", "https://mivb.openplanner.team/stops/1743"], ["https://mivb.openplanner.team/stops/0130227", "https://mivb.openplanner.team/stops/27"], ["https://mivb.openplanner.team/stops/2241G", "https://mivb.openplanner.team/stops/5307G"], ["https://mivb.openplanner.team/stops/5159", "https://mivb.openplanner.team/stops/5175"], ["https://mivb.openplanner.team/stops/1113", "https://mivb.openplanner.team/stops/2289"], ["https://mivb.openplanner.team/stops/1587", "https://mivb.openplanner.team/stops/29"], ["https://mivb.openplanner.team/stops/1117", "https://mivb.openplanner.team/stops/8722"], ["https://mivb.openplanner.team/stops/1807", "https://mivb.openplanner.team/stops/6472"], ["https://mivb.openplanner.team/stops/8793", "https://mivb.openplanner.team/stops/7790356"], ["https://mivb.openplanner.team/stops/1115", "https://mivb.openplanner.team/stops/0290212"], ["https://mivb.openplanner.team/stops/5413F", "https://mivb.openplanner.team/stops/5414F"], ["https://mivb.openplanner.team/stops/4209", "https://mivb.openplanner.team/stops/5471"], ["https://mivb.openplanner.team/stops/2415", "https://mivb.openplanner.team/stops/5917"], ["https://mivb.openplanner.team/stops/1534", "https://mivb.openplanner.team/stops/3462"], ["https://mivb.openplanner.team/stops/1679F", "https://mivb.openplanner.team/stops/4159"], ["https://mivb.openplanner.team/stops/7640211", "https://mivb.openplanner.team/stops/7640311"], ["https://mivb.openplanner.team/stops/5731F", "https://mivb.openplanner.team/stops/5751"], ["https://mivb.openplanner.team/stops/3355", "https://mivb.openplanner.team/stops/0410446"], ["https://mivb.openplanner.team/stops/2305", "https://mivb.openplanner.team/stops/2371"], ["https://mivb.openplanner.team/stops/8371", "https://mivb.openplanner.team/stops/8372"], ["https://mivb.openplanner.team/stops/3018", "https://mivb.openplanner.team/stops/3335F"], ["https://mivb.openplanner.team/stops/2138B", "https://mivb.openplanner.team/stops/2717"], ["https://mivb.openplanner.team/stops/2212", "https://mivb.openplanner.team/stops/3320B"], ["https://mivb.openplanner.team/stops/1158", "https://mivb.openplanner.team/stops/1417B"], ["https://mivb.openplanner.team/stops/3125", "https://mivb.openplanner.team/stops/4366"], ["https://mivb.openplanner.team/stops/4129", "https://mivb.openplanner.team/stops/4267"], ["https://mivb.openplanner.team/stops/1110", "https://mivb.openplanner.team/stops/1935"], ["https://mivb.openplanner.team/stops/3101", "https://mivb.openplanner.team/stops/3175B"], ["https://mivb.openplanner.team/stops/4214", "https://mivb.openplanner.team/stops/8461"], ["https://mivb.openplanner.team/stops/3298", "https://mivb.openplanner.team/stops/6204"], ["https://mivb.openplanner.team/stops/1128", "https://mivb.openplanner.team/stops/6353"], ["https://mivb.openplanner.team/stops/3272", "https://mivb.openplanner.team/stops/3898"], ["https://mivb.openplanner.team/stops/1728", "https://mivb.openplanner.team/stops/1769"], ["https://mivb.openplanner.team/stops/1229", "https://mivb.openplanner.team/stops/5155"], ["https://mivb.openplanner.team/stops/0900568", "https://mivb.openplanner.team/stops/1810"], ["https://mivb.openplanner.team/stops/1129", "https://mivb.openplanner.team/stops/6311"], ["https://mivb.openplanner.team/stops/4315", "https://mivb.openplanner.team/stops/5430"], ["https://mivb.openplanner.team/stops/1712", "https://mivb.openplanner.team/stops/1764"], ["https://mivb.openplanner.team/stops/1614B", "https://mivb.openplanner.team/stops/1659"], ["https://mivb.openplanner.team/stops/2725", "https://mivb.openplanner.team/stops/5270F"], ["https://mivb.openplanner.team/stops/6420G", "https://mivb.openplanner.team/stops/6424F"], ["https://mivb.openplanner.team/stops/0810469", "https://mivb.openplanner.team/stops/1424"], ["https://mivb.openplanner.team/stops/1072", "https://mivb.openplanner.team/stops/1085"], ["https://mivb.openplanner.team/stops/6428", "https://mivb.openplanner.team/stops/6430"], ["https://mivb.openplanner.team/stops/1766", "https://mivb.openplanner.team/stops/1767"], ["https://mivb.openplanner.team/stops/3006", "https://mivb.openplanner.team/stops/0340241"], ["https://mivb.openplanner.team/stops/5298", "https://mivb.openplanner.team/stops/5361F"], ["https://mivb.openplanner.team/stops/1143", "https://mivb.openplanner.team/stops/9779"], ["https://mivb.openplanner.team/stops/6171", "https://mivb.openplanner.team/stops/7790156"], ["https://mivb.openplanner.team/stops/5015", "https://mivb.openplanner.team/stops/0460150"], ["https://mivb.openplanner.team/stops/1197", "https://mivb.openplanner.team/stops/2569"], ["https://mivb.openplanner.team/stops/6406", "https://mivb.openplanner.team/stops/6453"], ["https://mivb.openplanner.team/stops/9169", "https://mivb.openplanner.team/stops/9561"], ["https://mivb.openplanner.team/stops/2972", "https://mivb.openplanner.team/stops/4705"], ["https://mivb.openplanner.team/stops/1008", "https://mivb.openplanner.team/stops/1755"], ["https://mivb.openplanner.team/stops/5810", "https://mivb.openplanner.team/stops/5859"], ["https://mivb.openplanner.team/stops/1067", "https://mivb.openplanner.team/stops/1768"], ["https://mivb.openplanner.team/stops/1202", "https://mivb.openplanner.team/stops/60"], ["https://mivb.openplanner.team/stops/5082", "https://mivb.openplanner.team/stops/5295"], ["https://mivb.openplanner.team/stops/5866", "https://mivb.openplanner.team/stops/7246"], ["https://mivb.openplanner.team/stops/2313", "https://mivb.openplanner.team/stops/2362B"], ["https://mivb.openplanner.team/stops/2078", "https://mivb.openplanner.team/stops/2087"], ["https://mivb.openplanner.team/stops/1056", "https://mivb.openplanner.team/stops/5011"], ["https://mivb.openplanner.team/stops/2498", "https://mivb.openplanner.team/stops/2584"], ["https://mivb.openplanner.team/stops/4205", "https://mivb.openplanner.team/stops/7830252"], ["https://mivb.openplanner.team/stops/1767", "https://mivb.openplanner.team/stops/6804F"], ["https://mivb.openplanner.team/stops/3411", "https://mivb.openplanner.team/stops/3449"], ["https://mivb.openplanner.team/stops/2975", "https://mivb.openplanner.team/stops/3298"], ["https://mivb.openplanner.team/stops/1629", "https://mivb.openplanner.team/stops/9164"], ["https://mivb.openplanner.team/stops/3514", "https://mivb.openplanner.team/stops/3558"], ["https://mivb.openplanner.team/stops/4306", "https://mivb.openplanner.team/stops/5261"], ["https://mivb.openplanner.team/stops/1166", "https://mivb.openplanner.team/stops/6353"], ["https://mivb.openplanner.team/stops/0330342", "https://mivb.openplanner.team/stops/0330442"], ["https://mivb.openplanner.team/stops/1720B", "https://mivb.openplanner.team/stops/1756B"], ["https://mivb.openplanner.team/stops/5028", "https://mivb.openplanner.team/stops/9972F"], ["https://mivb.openplanner.team/stops/5531", "https://mivb.openplanner.team/stops/0080122"], ["https://mivb.openplanner.team/stops/4305", "https://mivb.openplanner.team/stops/6155F"], ["https://mivb.openplanner.team/stops/3042", "https://mivb.openplanner.team/stops/9702"], ["https://mivb.openplanner.team/stops/6408", "https://mivb.openplanner.team/stops/6453"], ["https://mivb.openplanner.team/stops/1643F", "https://mivb.openplanner.team/stops/1645F"], ["https://mivb.openplanner.team/stops/1605", "https://mivb.openplanner.team/stops/5523"], ["https://mivb.openplanner.team/stops/1850", "https://mivb.openplanner.team/stops/5553"], ["https://mivb.openplanner.team/stops/1918", "https://mivb.openplanner.team/stops/5255F"], ["https://mivb.openplanner.team/stops/2362B", "https://mivb.openplanner.team/stops/2822"], ["https://mivb.openplanner.team/stops/1015", "https://mivb.openplanner.team/stops/1085"], ["https://mivb.openplanner.team/stops/7720103", "https://mivb.openplanner.team/stops/8722"], ["https://mivb.openplanner.team/stops/2116B", "https://mivb.openplanner.team/stops/5053G"], ["https://mivb.openplanner.team/stops/8231", "https://mivb.openplanner.team/stops/0230334"], ["https://mivb.openplanner.team/stops/1935", "https://mivb.openplanner.team/stops/9659"], ["https://mivb.openplanner.team/stops/2408", "https://mivb.openplanner.team/stops/5810"], ["https://mivb.openplanner.team/stops/4298", "https://mivb.openplanner.team/stops/0230234"], ["https://mivb.openplanner.team/stops/1114B", "https://mivb.openplanner.team/stops/0470351"], ["https://mivb.openplanner.team/stops/2217F", "https://mivb.openplanner.team/stops/8722"], ["https://mivb.openplanner.team/stops/6103", "https://mivb.openplanner.team/stops/6168F"], ["https://mivb.openplanner.team/stops/2982", "https://mivb.openplanner.team/stops/5801"], ["https://mivb.openplanner.team/stops/1779", "https://mivb.openplanner.team/stops/4369"], ["https://mivb.openplanner.team/stops/6355", "https://mivb.openplanner.team/stops/17"], ["https://mivb.openplanner.team/stops/1617", "https://mivb.openplanner.team/stops/5522"], ["https://mivb.openplanner.team/stops/1483", "https://mivb.openplanner.team/stops/1487"], ["https://mivb.openplanner.team/stops/3299", "https://mivb.openplanner.team/stops/5306G"], ["https://mivb.openplanner.team/stops/3550", "https://mivb.openplanner.team/stops/3552"], ["https://mivb.openplanner.team/stops/6472", "https://mivb.openplanner.team/stops/6473"], ["https://mivb.openplanner.team/stops/4364", "https://mivb.openplanner.team/stops/6155F"], ["https://mivb.openplanner.team/stops/6201F", "https://mivb.openplanner.team/stops/6409F"], ["https://mivb.openplanner.team/stops/1144", "https://mivb.openplanner.team/stops/3012"], ["https://mivb.openplanner.team/stops/3503", "https://mivb.openplanner.team/stops/3567"], ["https://mivb.openplanner.team/stops/5501", "https://mivb.openplanner.team/stops/5531"], ["https://mivb.openplanner.team/stops/6409F", "https://mivb.openplanner.team/stops/6416"], ["https://mivb.openplanner.team/stops/3129", "https://mivb.openplanner.team/stops/3132"], ["https://mivb.openplanner.team/stops/2116B", "https://mivb.openplanner.team/stops/2153"], ["https://mivb.openplanner.team/stops/1559", "https://mivb.openplanner.team/stops/3908"], ["https://mivb.openplanner.team/stops/2241G", "https://mivb.openplanner.team/stops/2248"], ["https://mivb.openplanner.team/stops/8241", "https://mivb.openplanner.team/stops/0240135"], ["https://mivb.openplanner.team/stops/4408", "https://mivb.openplanner.team/stops/4452"], ["https://mivb.openplanner.team/stops/1094", "https://mivb.openplanner.team/stops/4101"], ["https://mivb.openplanner.team/stops/1124", "https://mivb.openplanner.team/stops/1734"], ["https://mivb.openplanner.team/stops/3231", "https://mivb.openplanner.team/stops/6070"], ["https://mivb.openplanner.team/stops/0430148", "https://mivb.openplanner.team/stops/0430548"], ["https://mivb.openplanner.team/stops/2974", "https://mivb.openplanner.team/stops/9296"], ["https://mivb.openplanner.team/stops/4069", "https://mivb.openplanner.team/stops/4221"], ["https://mivb.openplanner.team/stops/1143", "https://mivb.openplanner.team/stops/9786"], ["https://mivb.openplanner.team/stops/1250", "https://mivb.openplanner.team/stops/1921"], ["https://mivb.openplanner.team/stops/0703", "https://mivb.openplanner.team/stops/0725"], ["https://mivb.openplanner.team/stops/1382", "https://mivb.openplanner.team/stops/1386"], ["https://mivb.openplanner.team/stops/1148C", "https://mivb.openplanner.team/stops/0060520"], ["https://mivb.openplanner.team/stops/0705", "https://mivb.openplanner.team/stops/0722"], ["https://mivb.openplanner.team/stops/5074", "https://mivb.openplanner.team/stops/5074F"], ["https://mivb.openplanner.team/stops/5303", "https://mivb.openplanner.team/stops/7998"], ["https://mivb.openplanner.team/stops/2917", "https://mivb.openplanner.team/stops/3298"], ["https://mivb.openplanner.team/stops/4062", "https://mivb.openplanner.team/stops/4109"], ["https://mivb.openplanner.team/stops/6162", "https://mivb.openplanner.team/stops/6427F"], ["https://mivb.openplanner.team/stops/1529", "https://mivb.openplanner.team/stops/1578"], ["https://mivb.openplanner.team/stops/6121F", "https://mivb.openplanner.team/stops/6165"], ["https://mivb.openplanner.team/stops/1737", "https://mivb.openplanner.team/stops/2112"], ["https://mivb.openplanner.team/stops/3113", "https://mivb.openplanner.team/stops/6418F"], ["https://mivb.openplanner.team/stops/2603", "https://mivb.openplanner.team/stops/2667F"], ["https://mivb.openplanner.team/stops/0810269", "https://mivb.openplanner.team/stops/1460"], ["https://mivb.openplanner.team/stops/1675F", "https://mivb.openplanner.team/stops/1676F"], ["https://mivb.openplanner.team/stops/1715", "https://mivb.openplanner.team/stops/5267"], ["https://mivb.openplanner.team/stops/5271F", "https://mivb.openplanner.team/stops/5282F"], ["https://mivb.openplanner.team/stops/3461", "https://mivb.openplanner.team/stops/3898"], ["https://mivb.openplanner.team/stops/3110", "https://mivb.openplanner.team/stops/6364"], ["https://mivb.openplanner.team/stops/3419", "https://mivb.openplanner.team/stops/3470"], ["https://mivb.openplanner.team/stops/8202", "https://mivb.openplanner.team/stops/0200131"], ["https://mivb.openplanner.team/stops/1782", "https://mivb.openplanner.team/stops/6864F"], ["https://mivb.openplanner.team/stops/5018F", "https://mivb.openplanner.team/stops/5066F"], ["https://mivb.openplanner.team/stops/3411", "https://mivb.openplanner.team/stops/7269"], ["https://mivb.openplanner.team/stops/2115", "https://mivb.openplanner.team/stops/4310"], ["https://mivb.openplanner.team/stops/5711F", "https://mivb.openplanner.team/stops/6365"], ["https://mivb.openplanner.team/stops/5014", "https://mivb.openplanner.team/stops/6607"], ["https://mivb.openplanner.team/stops/1777B", "https://mivb.openplanner.team/stops/1880"], ["https://mivb.openplanner.team/stops/1568", "https://mivb.openplanner.team/stops/6059"], ["https://mivb.openplanner.team/stops/3570", "https://mivb.openplanner.team/stops/6158"], ["https://mivb.openplanner.team/stops/1627", "https://mivb.openplanner.team/stops/1629"], ["https://mivb.openplanner.team/stops/4355", "https://mivb.openplanner.team/stops/4454"], ["https://mivb.openplanner.team/stops/1134", "https://mivb.openplanner.team/stops/3912"], ["https://mivb.openplanner.team/stops/2997", "https://mivb.openplanner.team/stops/3448B"], ["https://mivb.openplanner.team/stops/6651", "https://mivb.openplanner.team/stops/6652"], ["https://mivb.openplanner.team/stops/1937", "https://mivb.openplanner.team/stops/5824"], ["https://mivb.openplanner.team/stops/2604F", "https://mivb.openplanner.team/stops/2939B"], ["https://mivb.openplanner.team/stops/0810469", "https://mivb.openplanner.team/stops/2285G"], ["https://mivb.openplanner.team/stops/2524", "https://mivb.openplanner.team/stops/3858"], ["https://mivb.openplanner.team/stops/8741", "https://mivb.openplanner.team/stops/8744"], ["https://mivb.openplanner.team/stops/5025", "https://mivb.openplanner.team/stops/5855"], ["https://mivb.openplanner.team/stops/3502", "https://mivb.openplanner.team/stops/6310F"], ["https://mivb.openplanner.team/stops/1278", "https://mivb.openplanner.team/stops/6155F"], ["https://mivb.openplanner.team/stops/1751", "https://mivb.openplanner.team/stops/0250336"], ["https://mivb.openplanner.team/stops/5725", "https://mivb.openplanner.team/stops/5751"], ["https://mivb.openplanner.team/stops/4314", "https://mivb.openplanner.team/stops/4408"], ["https://mivb.openplanner.team/stops/1769", "https://mivb.openplanner.team/stops/4367B"], ["https://mivb.openplanner.team/stops/2662B", "https://mivb.openplanner.team/stops/2664"], ["https://mivb.openplanner.team/stops/1462", "https://mivb.openplanner.team/stops/6454"], ["https://mivb.openplanner.team/stops/1669", "https://mivb.openplanner.team/stops/5517"], ["https://mivb.openplanner.team/stops/8082", "https://mivb.openplanner.team/stops/0080522"], ["https://mivb.openplanner.team/stops/3238", "https://mivb.openplanner.team/stops/3239"], ["https://mivb.openplanner.team/stops/1073", "https://mivb.openplanner.team/stops/1076"], ["https://mivb.openplanner.team/stops/0040418", "https://mivb.openplanner.team/stops/0040618"], ["https://mivb.openplanner.team/stops/1126", "https://mivb.openplanner.team/stops/0330442"], ["https://mivb.openplanner.team/stops/4288", "https://mivb.openplanner.team/stops/4290"], ["https://mivb.openplanner.team/stops/6353", "https://mivb.openplanner.team/stops/0320443"], ["https://mivb.openplanner.team/stops/0626", "https://mivb.openplanner.team/stops/1227"], ["https://mivb.openplanner.team/stops/2306", "https://mivb.openplanner.team/stops/2413"], ["https://mivb.openplanner.team/stops/7484", "https://mivb.openplanner.team/stops/7998"], ["https://mivb.openplanner.team/stops/5044", "https://mivb.openplanner.team/stops/5046"], ["https://mivb.openplanner.team/stops/1811", "https://mivb.openplanner.team/stops/1861"], ["https://mivb.openplanner.team/stops/6433", "https://mivb.openplanner.team/stops/8301"], ["https://mivb.openplanner.team/stops/6456F", "https://mivb.openplanner.team/stops/6457F"], ["https://mivb.openplanner.team/stops/1511", "https://mivb.openplanner.team/stops/3219"], ["https://mivb.openplanner.team/stops/1822", "https://mivb.openplanner.team/stops/1852"], ["https://mivb.openplanner.team/stops/2460", "https://mivb.openplanner.team/stops/2955"], ["https://mivb.openplanner.team/stops/1408", "https://mivb.openplanner.team/stops/0110125"], ["https://mivb.openplanner.team/stops/1348", "https://mivb.openplanner.team/stops/1349"], ["https://mivb.openplanner.team/stops/3467B", "https://mivb.openplanner.team/stops/4556"], ["https://mivb.openplanner.team/stops/2898", "https://mivb.openplanner.team/stops/6457F"], ["https://mivb.openplanner.team/stops/3624B", "https://mivb.openplanner.team/stops/0320243"], ["https://mivb.openplanner.team/stops/3805", "https://mivb.openplanner.team/stops/6858C"], ["https://mivb.openplanner.team/stops/6068", "https://mivb.openplanner.team/stops/6705F"], ["https://mivb.openplanner.team/stops/3166", "https://mivb.openplanner.team/stops/6364"], ["https://mivb.openplanner.team/stops/6803F", "https://mivb.openplanner.team/stops/6867F"], ["https://mivb.openplanner.team/stops/0670267", "https://mivb.openplanner.team/stops/2463"], ["https://mivb.openplanner.team/stops/4127", "https://mivb.openplanner.team/stops/4266"], ["https://mivb.openplanner.team/stops/3522", "https://mivb.openplanner.team/stops/9551"], ["https://mivb.openplanner.team/stops/1136", "https://mivb.openplanner.team/stops/21"], ["https://mivb.openplanner.team/stops/0820270", "https://mivb.openplanner.team/stops/6448"], ["https://mivb.openplanner.team/stops/2991", "https://mivb.openplanner.team/stops/9703"], ["https://mivb.openplanner.team/stops/3200", "https://mivb.openplanner.team/stops/3274"], ["https://mivb.openplanner.team/stops/6406", "https://mivb.openplanner.team/stops/6408"], ["https://mivb.openplanner.team/stops/8652", "https://mivb.openplanner.team/stops/9660"], ["https://mivb.openplanner.team/stops/1570", "https://mivb.openplanner.team/stops/1571"], ["https://mivb.openplanner.team/stops/2463", "https://mivb.openplanner.team/stops/6165"], ["https://mivb.openplanner.team/stops/8101", "https://mivb.openplanner.team/stops/0100224"], ["https://mivb.openplanner.team/stops/2960", "https://mivb.openplanner.team/stops/7520"], ["https://mivb.openplanner.team/stops/1526", "https://mivb.openplanner.team/stops/2028"], ["https://mivb.openplanner.team/stops/8783", "https://mivb.openplanner.team/stops/8784"], ["https://mivb.openplanner.team/stops/1813", "https://mivb.openplanner.team/stops/2009"], ["https://mivb.openplanner.team/stops/2467", "https://mivb.openplanner.team/stops/7369"], ["https://mivb.openplanner.team/stops/1323", "https://mivb.openplanner.team/stops/6408"], ["https://mivb.openplanner.team/stops/1775", "https://mivb.openplanner.team/stops/6866F"], ["https://mivb.openplanner.team/stops/0270414", "https://mivb.openplanner.team/stops/0270614"], ["https://mivb.openplanner.team/stops/2252", "https://mivb.openplanner.team/stops/6"], ["https://mivb.openplanner.team/stops/4408", "https://mivb.openplanner.team/stops/6469"], ["https://mivb.openplanner.team/stops/3103", "https://mivb.openplanner.team/stops/5965"], ["https://mivb.openplanner.team/stops/3231", "https://mivb.openplanner.team/stops/3282"], ["https://mivb.openplanner.team/stops/4276", "https://mivb.openplanner.team/stops/4277"], ["https://mivb.openplanner.team/stops/8251", "https://mivb.openplanner.team/stops/0250536"], ["https://mivb.openplanner.team/stops/1113", "https://mivb.openplanner.team/stops/0080422"], ["https://mivb.openplanner.team/stops/2824", "https://mivb.openplanner.team/stops/5772"], ["https://mivb.openplanner.team/stops/5872", "https://mivb.openplanner.team/stops/7268"], ["https://mivb.openplanner.team/stops/4159", "https://mivb.openplanner.team/stops/4163"], ["https://mivb.openplanner.team/stops/1059", "https://mivb.openplanner.team/stops/5208"], ["https://mivb.openplanner.team/stops/6103F", "https://mivb.openplanner.team/stops/6123"], ["https://mivb.openplanner.team/stops/3402", "https://mivb.openplanner.team/stops/3702"], ["https://mivb.openplanner.team/stops/2506B", "https://mivb.openplanner.team/stops/2573B"], ["https://mivb.openplanner.team/stops/5040", "https://mivb.openplanner.team/stops/5045"], ["https://mivb.openplanner.team/stops/1307", "https://mivb.openplanner.team/stops/1310"], ["https://mivb.openplanner.team/stops/1423", "https://mivb.openplanner.team/stops/1818"], ["https://mivb.openplanner.team/stops/0650165", "https://mivb.openplanner.team/stops/2402"], ["https://mivb.openplanner.team/stops/8823", "https://mivb.openplanner.team/stops/53"], ["https://mivb.openplanner.team/stops/4004", "https://mivb.openplanner.team/stops/4270F"], ["https://mivb.openplanner.team/stops/2665", "https://mivb.openplanner.team/stops/2669F"], ["https://mivb.openplanner.team/stops/1318", "https://mivb.openplanner.team/stops/8062"], ["https://mivb.openplanner.team/stops/9660", "https://mivb.openplanner.team/stops/9685"], ["https://mivb.openplanner.team/stops/5032G", "https://mivb.openplanner.team/stops/5053B"], ["https://mivb.openplanner.team/stops/2535F", "https://mivb.openplanner.team/stops/5"], ["https://mivb.openplanner.team/stops/2351F", "https://mivb.openplanner.team/stops/3481"], ["https://mivb.openplanner.team/stops/1642F", "https://mivb.openplanner.team/stops/5712F"], ["https://mivb.openplanner.team/stops/0030117", "https://mivb.openplanner.team/stops/17"], ["https://mivb.openplanner.team/stops/6425F", "https://mivb.openplanner.team/stops/6427F"], ["https://mivb.openplanner.team/stops/1317", "https://mivb.openplanner.team/stops/1464"], ["https://mivb.openplanner.team/stops/8814", "https://mivb.openplanner.team/stops/7810254"], ["https://mivb.openplanner.team/stops/4130", "https://mivb.openplanner.team/stops/7790256"], ["https://mivb.openplanner.team/stops/2200F", "https://mivb.openplanner.team/stops/2237"], ["https://mivb.openplanner.team/stops/1098", "https://mivb.openplanner.team/stops/5165"], ["https://mivb.openplanner.team/stops/1751", "https://mivb.openplanner.team/stops/2009"], ["https://mivb.openplanner.team/stops/4550", "https://mivb.openplanner.team/stops/6448"], ["https://mivb.openplanner.team/stops/2905", "https://mivb.openplanner.team/stops/2991"], ["https://mivb.openplanner.team/stops/8142", "https://mivb.openplanner.team/stops/0140228"], ["https://mivb.openplanner.team/stops/6444", "https://mivb.openplanner.team/stops/0020616"], ["https://mivb.openplanner.team/stops/0901", "https://mivb.openplanner.team/stops/0900568"], ["https://mivb.openplanner.team/stops/0801", "https://mivb.openplanner.team/stops/0080322"], ["https://mivb.openplanner.team/stops/5469", "https://mivb.openplanner.team/stops/7520"], ["https://mivb.openplanner.team/stops/6755", "https://mivb.openplanner.team/stops/0280113"], ["https://mivb.openplanner.team/stops/1136", "https://mivb.openplanner.team/stops/0070621"], ["https://mivb.openplanner.team/stops/2972", "https://mivb.openplanner.team/stops/5475"], ["https://mivb.openplanner.team/stops/6649F", "https://mivb.openplanner.team/stops/8281"], ["https://mivb.openplanner.team/stops/3852", "https://mivb.openplanner.team/stops/5757F"], ["https://mivb.openplanner.team/stops/1540", "https://mivb.openplanner.team/stops/3900"], ["https://mivb.openplanner.team/stops/2220F", "https://mivb.openplanner.team/stops/2257B"], ["https://mivb.openplanner.team/stops/1064", "https://mivb.openplanner.team/stops/1198"], ["https://mivb.openplanner.team/stops/1571", "https://mivb.openplanner.team/stops/8411"], ["https://mivb.openplanner.team/stops/3354", "https://mivb.openplanner.team/stops/3358"], ["https://mivb.openplanner.team/stops/5735", "https://mivb.openplanner.team/stops/6411"], ["https://mivb.openplanner.team/stops/4076", "https://mivb.openplanner.team/stops/5058F"], ["https://mivb.openplanner.team/stops/2867", "https://mivb.openplanner.team/stops/2871"], ["https://mivb.openplanner.team/stops/9963F", "https://mivb.openplanner.team/stops/9986F"], ["https://mivb.openplanner.team/stops/6484B", "https://mivb.openplanner.team/stops/6"], ["https://mivb.openplanner.team/stops/5221F", "https://mivb.openplanner.team/stops/9959F"], ["https://mivb.openplanner.team/stops/3331", "https://mivb.openplanner.team/stops/3351"], ["https://mivb.openplanner.team/stops/2519", "https://mivb.openplanner.team/stops/2571"], ["https://mivb.openplanner.team/stops/3468", "https://mivb.openplanner.team/stops/5279F"], ["https://mivb.openplanner.team/stops/3506", "https://mivb.openplanner.team/stops/3620B"], ["https://mivb.openplanner.team/stops/5860", "https://mivb.openplanner.team/stops/5952F"], ["https://mivb.openplanner.team/stops/1270B", "https://mivb.openplanner.team/stops/1474B"], ["https://mivb.openplanner.team/stops/0310344", "https://mivb.openplanner.team/stops/44"], ["https://mivb.openplanner.team/stops/2541", "https://mivb.openplanner.team/stops/0350240"], ["https://mivb.openplanner.team/stops/5420F", "https://mivb.openplanner.team/stops/5453"], ["https://mivb.openplanner.team/stops/3448B", "https://mivb.openplanner.team/stops/5278F"], ["https://mivb.openplanner.team/stops/1807", "https://mivb.openplanner.team/stops/6473"], ["https://mivb.openplanner.team/stops/1196", "https://mivb.openplanner.team/stops/5102F"], ["https://mivb.openplanner.team/stops/3017", "https://mivb.openplanner.team/stops/9311"], ["https://mivb.openplanner.team/stops/2016", "https://mivb.openplanner.team/stops/4309"], ["https://mivb.openplanner.team/stops/2908", "https://mivb.openplanner.team/stops/5961"], ["https://mivb.openplanner.team/stops/2824", "https://mivb.openplanner.team/stops/5704F"], ["https://mivb.openplanner.team/stops/1926B", "https://mivb.openplanner.team/stops/1964"], ["https://mivb.openplanner.team/stops/3450", "https://mivb.openplanner.team/stops/5275F"], ["https://mivb.openplanner.team/stops/3306", "https://mivb.openplanner.team/stops/3307"], ["https://mivb.openplanner.team/stops/3547", "https://mivb.openplanner.team/stops/8241"], ["https://mivb.openplanner.team/stops/4261", "https://mivb.openplanner.team/stops/7830352"], ["https://mivb.openplanner.team/stops/5048", "https://mivb.openplanner.team/stops/6081"], ["https://mivb.openplanner.team/stops/1571", "https://mivb.openplanner.team/stops/6017"], ["https://mivb.openplanner.team/stops/6808G", "https://mivb.openplanner.team/stops/0360239"], ["https://mivb.openplanner.team/stops/1423", "https://mivb.openplanner.team/stops/1856"], ["https://mivb.openplanner.team/stops/3253", "https://mivb.openplanner.team/stops/8381"], ["https://mivb.openplanner.team/stops/6705F", "https://mivb.openplanner.team/stops/6862"], ["https://mivb.openplanner.team/stops/3101", "https://mivb.openplanner.team/stops/3174"], ["https://mivb.openplanner.team/stops/1719", "https://mivb.openplanner.team/stops/3551"], ["https://mivb.openplanner.team/stops/2500", "https://mivb.openplanner.team/stops/0350640"], ["https://mivb.openplanner.team/stops/4314", "https://mivb.openplanner.team/stops/4344"], ["https://mivb.openplanner.team/stops/1587", "https://mivb.openplanner.team/stops/1673"], ["https://mivb.openplanner.team/stops/5911", "https://mivb.openplanner.team/stops/5913"], ["https://mivb.openplanner.team/stops/2286G", "https://mivb.openplanner.team/stops/2287"], ["https://mivb.openplanner.team/stops/1150", "https://mivb.openplanner.team/stops/1458"], ["https://mivb.openplanner.team/stops/2014", "https://mivb.openplanner.team/stops/6469"], ["https://mivb.openplanner.team/stops/2404F", "https://mivb.openplanner.team/stops/2462"], ["https://mivb.openplanner.team/stops/2513", "https://mivb.openplanner.team/stops/4659"], ["https://mivb.openplanner.team/stops/3952", "https://mivb.openplanner.team/stops/3956"], ["https://mivb.openplanner.team/stops/6123", "https://mivb.openplanner.team/stops/6179"], ["https://mivb.openplanner.team/stops/3518B", "https://mivb.openplanner.team/stops/0310544"], ["https://mivb.openplanner.team/stops/2671F", "https://mivb.openplanner.team/stops/6166"], ["https://mivb.openplanner.team/stops/1831", "https://mivb.openplanner.team/stops/1834"], ["https://mivb.openplanner.team/stops/1915", "https://mivb.openplanner.team/stops/1975"], ["https://mivb.openplanner.team/stops/5754", "https://mivb.openplanner.team/stops/5953"], ["https://mivb.openplanner.team/stops/5018F", "https://mivb.openplanner.team/stops/6428"], ["https://mivb.openplanner.team/stops/6428", "https://mivb.openplanner.team/stops/6428F"], ["https://mivb.openplanner.team/stops/1741", "https://mivb.openplanner.team/stops/6931B"], ["https://mivb.openplanner.team/stops/1313", "https://mivb.openplanner.team/stops/5165"], ["https://mivb.openplanner.team/stops/5016F", "https://mivb.openplanner.team/stops/5067"], ["https://mivb.openplanner.team/stops/5256", "https://mivb.openplanner.team/stops/5256F"], ["https://mivb.openplanner.team/stops/2990", "https://mivb.openplanner.team/stops/3761"], ["https://mivb.openplanner.team/stops/2972", "https://mivb.openplanner.team/stops/5404"], ["https://mivb.openplanner.team/stops/1143", "https://mivb.openplanner.team/stops/9780"], ["https://mivb.openplanner.team/stops/3609F", "https://mivb.openplanner.team/stops/3756"], ["https://mivb.openplanner.team/stops/1195", "https://mivb.openplanner.team/stops/5170"], ["https://mivb.openplanner.team/stops/3325", "https://mivb.openplanner.team/stops/6359F"], ["https://mivb.openplanner.team/stops/5460F", "https://mivb.openplanner.team/stops/6550"], ["https://mivb.openplanner.team/stops/1283", "https://mivb.openplanner.team/stops/3182"], ["https://mivb.openplanner.team/stops/2269", "https://mivb.openplanner.team/stops/0430848"], ["https://mivb.openplanner.team/stops/2519", "https://mivb.openplanner.team/stops/4110"], ["https://mivb.openplanner.team/stops/2863", "https://mivb.openplanner.team/stops/6504"], ["https://mivb.openplanner.team/stops/3103", "https://mivb.openplanner.team/stops/3104"], ["https://mivb.openplanner.team/stops/5810", "https://mivb.openplanner.team/stops/5858"], ["https://mivb.openplanner.team/stops/1975", "https://mivb.openplanner.team/stops/5254"], ["https://mivb.openplanner.team/stops/1519", "https://mivb.openplanner.team/stops/3906"], ["https://mivb.openplanner.team/stops/3547", "https://mivb.openplanner.team/stops/3551"], ["https://mivb.openplanner.team/stops/0726", "https://mivb.openplanner.team/stops/3211"], ["https://mivb.openplanner.team/stops/1487", "https://mivb.openplanner.team/stops/3717"], ["https://mivb.openplanner.team/stops/0806", "https://mivb.openplanner.team/stops/2289"], ["https://mivb.openplanner.team/stops/0650265", "https://mivb.openplanner.team/stops/0660166"], ["https://mivb.openplanner.team/stops/1493", "https://mivb.openplanner.team/stops/7670108"], ["https://mivb.openplanner.team/stops/6464", "https://mivb.openplanner.team/stops/8061"], ["https://mivb.openplanner.team/stops/7640311", "https://mivb.openplanner.team/stops/9657"], ["https://mivb.openplanner.team/stops/1903", "https://mivb.openplanner.team/stops/1977"], ["https://mivb.openplanner.team/stops/1823", "https://mivb.openplanner.team/stops/1851"], ["https://mivb.openplanner.team/stops/2217F", "https://mivb.openplanner.team/stops/2260"], ["https://mivb.openplanner.team/stops/2808", "https://mivb.openplanner.team/stops/6504"], ["https://mivb.openplanner.team/stops/1225", "https://mivb.openplanner.team/stops/6601"], ["https://mivb.openplanner.team/stops/3633B", "https://mivb.openplanner.team/stops/6604F"], ["https://mivb.openplanner.team/stops/3851", "https://mivb.openplanner.team/stops/3860"], ["https://mivb.openplanner.team/stops/2982", "https://mivb.openplanner.team/stops/2995"], ["https://mivb.openplanner.team/stops/1513", "https://mivb.openplanner.team/stops/2974"], ["https://mivb.openplanner.team/stops/2813", "https://mivb.openplanner.team/stops/5806"], ["https://mivb.openplanner.team/stops/4594", "https://mivb.openplanner.team/stops/6706"], ["https://mivb.openplanner.team/stops/1315", "https://mivb.openplanner.team/stops/3317"], ["https://mivb.openplanner.team/stops/1724", "https://mivb.openplanner.team/stops/3529"], ["https://mivb.openplanner.team/stops/1260", "https://mivb.openplanner.team/stops/3713"], ["https://mivb.openplanner.team/stops/1125", "https://mivb.openplanner.team/stops/0330442"], ["https://mivb.openplanner.team/stops/2540", "https://mivb.openplanner.team/stops/2541"], ["https://mivb.openplanner.team/stops/4274", "https://mivb.openplanner.team/stops/4958F"], ["https://mivb.openplanner.team/stops/2924", "https://mivb.openplanner.team/stops/3420"], ["https://mivb.openplanner.team/stops/8682", "https://mivb.openplanner.team/stops/7"], ["https://mivb.openplanner.team/stops/1567", "https://mivb.openplanner.team/stops/6082"], ["https://mivb.openplanner.team/stops/2506B", "https://mivb.openplanner.team/stops/6865F"], ["https://mivb.openplanner.team/stops/1935", "https://mivb.openplanner.team/stops/9658"], ["https://mivb.openplanner.team/stops/2122", "https://mivb.openplanner.team/stops/5063"], ["https://mivb.openplanner.team/stops/1321", "https://mivb.openplanner.team/stops/1554"], ["https://mivb.openplanner.team/stops/2603", "https://mivb.openplanner.team/stops/2953"], ["https://mivb.openplanner.team/stops/2604", "https://mivb.openplanner.team/stops/2952B"], ["https://mivb.openplanner.team/stops/5068F", "https://mivb.openplanner.team/stops/7529"], ["https://mivb.openplanner.team/stops/7246", "https://mivb.openplanner.team/stops/7252B"], ["https://mivb.openplanner.team/stops/6473", "https://mivb.openplanner.team/stops/0200231"], ["https://mivb.openplanner.team/stops/2039", "https://mivb.openplanner.team/stops/2041"], ["https://mivb.openplanner.team/stops/2364", "https://mivb.openplanner.team/stops/2819"], ["https://mivb.openplanner.team/stops/5107B", "https://mivb.openplanner.team/stops/5151"], ["https://mivb.openplanner.team/stops/4364", "https://mivb.openplanner.team/stops/6156F"], ["https://mivb.openplanner.team/stops/3513", "https://mivb.openplanner.team/stops/5407"], ["https://mivb.openplanner.team/stops/1018", "https://mivb.openplanner.team/stops/1261"], ["https://mivb.openplanner.team/stops/3180", "https://mivb.openplanner.team/stops/3181"], ["https://mivb.openplanner.team/stops/6409F", "https://mivb.openplanner.team/stops/6416F"], ["https://mivb.openplanner.team/stops/3305", "https://mivb.openplanner.team/stops/5874F"], ["https://mivb.openplanner.team/stops/8321", "https://mivb.openplanner.team/stops/0370543"], ["https://mivb.openplanner.team/stops/1815", "https://mivb.openplanner.team/stops/5503"], ["https://mivb.openplanner.team/stops/4214", "https://mivb.openplanner.team/stops/6755"], ["https://mivb.openplanner.team/stops/0040118", "https://mivb.openplanner.team/stops/17"], ["https://mivb.openplanner.team/stops/2301", "https://mivb.openplanner.team/stops/2828"], ["https://mivb.openplanner.team/stops/3174", "https://mivb.openplanner.team/stops/9292"], ["https://mivb.openplanner.team/stops/0430148", "https://mivb.openplanner.team/stops/0430648"], ["https://mivb.openplanner.team/stops/1143", "https://mivb.openplanner.team/stops/9787"], ["https://mivb.openplanner.team/stops/3510", "https://mivb.openplanner.team/stops/5258"], ["https://mivb.openplanner.team/stops/1184", "https://mivb.openplanner.team/stops/1314"], ["https://mivb.openplanner.team/stops/1283", "https://mivb.openplanner.team/stops/3126"], ["https://mivb.openplanner.team/stops/6483B", "https://mivb.openplanner.team/stops/6812"], ["https://mivb.openplanner.team/stops/5057", "https://mivb.openplanner.team/stops/9972F"], ["https://mivb.openplanner.team/stops/2603", "https://mivb.openplanner.team/stops/2668"], ["https://mivb.openplanner.team/stops/2318G", "https://mivb.openplanner.team/stops/2338F"], ["https://mivb.openplanner.team/stops/2146", "https://mivb.openplanner.team/stops/2150"], ["https://mivb.openplanner.team/stops/3098", "https://mivb.openplanner.team/stops/3171"], ["https://mivb.openplanner.team/stops/2329", "https://mivb.openplanner.team/stops/3001B"], ["https://mivb.openplanner.team/stops/1422", "https://mivb.openplanner.team/stops/1818"], ["https://mivb.openplanner.team/stops/3411", "https://mivb.openplanner.team/stops/7268"], ["https://mivb.openplanner.team/stops/2908", "https://mivb.openplanner.team/stops/3130"], ["https://mivb.openplanner.team/stops/1798", "https://mivb.openplanner.team/stops/3506"], ["https://mivb.openplanner.team/stops/4955F", "https://mivb.openplanner.team/stops/7800155"], ["https://mivb.openplanner.team/stops/3557", "https://mivb.openplanner.team/stops/5265F"], ["https://mivb.openplanner.team/stops/3550", "https://mivb.openplanner.team/stops/4407"], ["https://mivb.openplanner.team/stops/9631", "https://mivb.openplanner.team/stops/9755"], ["https://mivb.openplanner.team/stops/1152", "https://mivb.openplanner.team/stops/0100124"], ["https://mivb.openplanner.team/stops/5729", "https://mivb.openplanner.team/stops/5751"], ["https://mivb.openplanner.team/stops/2531", "https://mivb.openplanner.team/stops/8351"], ["https://mivb.openplanner.team/stops/5102", "https://mivb.openplanner.team/stops/5102F"], ["https://mivb.openplanner.team/stops/2996", "https://mivb.openplanner.team/stops/3448B"], ["https://mivb.openplanner.team/stops/2508", "https://mivb.openplanner.team/stops/5108"], ["https://mivb.openplanner.team/stops/3903", "https://mivb.openplanner.team/stops/3904"], ["https://mivb.openplanner.team/stops/1327", "https://mivb.openplanner.team/stops/2256F"], ["https://mivb.openplanner.team/stops/1615", "https://mivb.openplanner.team/stops/5522"], ["https://mivb.openplanner.team/stops/0470F", "https://mivb.openplanner.team/stops/4116"], ["https://mivb.openplanner.team/stops/1492", "https://mivb.openplanner.team/stops/5296B"], ["https://mivb.openplanner.team/stops/1370", "https://mivb.openplanner.team/stops/0350740"], ["https://mivb.openplanner.team/stops/1926B", "https://mivb.openplanner.team/stops/2764G"], ["https://mivb.openplanner.team/stops/0220233", "https://mivb.openplanner.team/stops/0220333"], ["https://mivb.openplanner.team/stops/1529", "https://mivb.openplanner.team/stops/3899"], ["https://mivb.openplanner.team/stops/8741", "https://mivb.openplanner.team/stops/7740201"], ["https://mivb.openplanner.team/stops/4122", "https://mivb.openplanner.team/stops/8793"], ["https://mivb.openplanner.team/stops/3409", "https://mivb.openplanner.team/stops/5306G"], ["https://mivb.openplanner.team/stops/1157", "https://mivb.openplanner.team/stops/1159"], ["https://mivb.openplanner.team/stops/6173", "https://mivb.openplanner.team/stops/8803"], ["https://mivb.openplanner.team/stops/1984B", "https://mivb.openplanner.team/stops/5816G"], ["https://mivb.openplanner.team/stops/2238", "https://mivb.openplanner.team/stops/5762"], ["https://mivb.openplanner.team/stops/5003", "https://mivb.openplanner.team/stops/5471"], ["https://mivb.openplanner.team/stops/5725", "https://mivb.openplanner.team/stops/5753F"], ["https://mivb.openplanner.team/stops/3902", "https://mivb.openplanner.team/stops/3958"], ["https://mivb.openplanner.team/stops/1539", "https://mivb.openplanner.team/stops/3962"], ["https://mivb.openplanner.team/stops/4250", "https://mivb.openplanner.team/stops/9047"], ["https://mivb.openplanner.team/stops/2974", "https://mivb.openplanner.team/stops/3360F"], ["https://mivb.openplanner.team/stops/2545", "https://mivb.openplanner.team/stops/4232"], ["https://mivb.openplanner.team/stops/1073", "https://mivb.openplanner.team/stops/1076B"], ["https://mivb.openplanner.team/stops/1016", "https://mivb.openplanner.team/stops/2304"], ["https://mivb.openplanner.team/stops/5272F", "https://mivb.openplanner.team/stops/5281"], ["https://mivb.openplanner.team/stops/2145", "https://mivb.openplanner.team/stops/2718"], ["https://mivb.openplanner.team/stops/1943", "https://mivb.openplanner.team/stops/1968"], ["https://mivb.openplanner.team/stops/2238", "https://mivb.openplanner.team/stops/5711F"], ["https://mivb.openplanner.team/stops/2701", "https://mivb.openplanner.team/stops/5817"], ["https://mivb.openplanner.team/stops/3167", "https://mivb.openplanner.team/stops/7762"], ["https://mivb.openplanner.team/stops/5758F", "https://mivb.openplanner.team/stops/6461"], ["https://mivb.openplanner.team/stops/1602", "https://mivb.openplanner.team/stops/5515"], ["https://mivb.openplanner.team/stops/3321", "https://mivb.openplanner.team/stops/3338F"], ["https://mivb.openplanner.team/stops/4288", "https://mivb.openplanner.team/stops/4289"], ["https://mivb.openplanner.team/stops/2207", "https://mivb.openplanner.team/stops/2305"], ["https://mivb.openplanner.team/stops/3282", "https://mivb.openplanner.team/stops/6070"], ["https://mivb.openplanner.team/stops/6702", "https://mivb.openplanner.team/stops/6706"], ["https://mivb.openplanner.team/stops/0626", "https://mivb.openplanner.team/stops/1225"], ["https://mivb.openplanner.team/stops/2899", "https://mivb.openplanner.team/stops/9776"], ["https://mivb.openplanner.team/stops/1386", "https://mivb.openplanner.team/stops/8121"], ["https://mivb.openplanner.team/stops/0120226", "https://mivb.openplanner.team/stops/0120426"], ["https://mivb.openplanner.team/stops/1822", "https://mivb.openplanner.team/stops/1851"], ["https://mivb.openplanner.team/stops/3525", "https://mivb.openplanner.team/stops/5468"], ["https://mivb.openplanner.team/stops/0601162", "https://mivb.openplanner.team/stops/2303"], ["https://mivb.openplanner.team/stops/3713", "https://mivb.openplanner.team/stops/6799F"], ["https://mivb.openplanner.team/stops/1558", "https://mivb.openplanner.team/stops/3959"], ["https://mivb.openplanner.team/stops/3467B", "https://mivb.openplanner.team/stops/4555"], ["https://mivb.openplanner.team/stops/3279", "https://mivb.openplanner.team/stops/3317"], ["https://mivb.openplanner.team/stops/2898", "https://mivb.openplanner.team/stops/6459"], ["https://mivb.openplanner.team/stops/3805", "https://mivb.openplanner.team/stops/6858G"], ["https://mivb.openplanner.team/stops/2026", "https://mivb.openplanner.team/stops/2077"], ["https://mivb.openplanner.team/stops/0600662", "https://mivb.openplanner.team/stops/0600762"], ["https://mivb.openplanner.team/stops/1724", "https://mivb.openplanner.team/stops/1752"], ["https://mivb.openplanner.team/stops/2992", "https://mivb.openplanner.team/stops/3176"], ["https://mivb.openplanner.team/stops/4299", "https://mivb.openplanner.team/stops/4359"], ["https://mivb.openplanner.team/stops/1988", "https://mivb.openplanner.team/stops/0430948"], ["https://mivb.openplanner.team/stops/2209", "https://mivb.openplanner.team/stops/8442"], ["https://mivb.openplanner.team/stops/6809", "https://mivb.openplanner.team/stops/6858C"], ["https://mivb.openplanner.team/stops/4062", "https://mivb.openplanner.team/stops/4169"], ["https://mivb.openplanner.team/stops/0090323", "https://mivb.openplanner.team/stops/23"], ["https://mivb.openplanner.team/stops/4290", "https://mivb.openplanner.team/stops/4319"], ["https://mivb.openplanner.team/stops/1112", "https://mivb.openplanner.team/stops/8764"], ["https://mivb.openplanner.team/stops/2528", "https://mivb.openplanner.team/stops/2672F"], ["https://mivb.openplanner.team/stops/4152", "https://mivb.openplanner.team/stops/5165"], ["https://mivb.openplanner.team/stops/2323", "https://mivb.openplanner.team/stops/2518"], ["https://mivb.openplanner.team/stops/5910", "https://mivb.openplanner.team/stops/9292"], ["https://mivb.openplanner.team/stops/3305", "https://mivb.openplanner.team/stops/3420"], ["https://mivb.openplanner.team/stops/6601", "https://mivb.openplanner.team/stops/6657"], ["https://mivb.openplanner.team/stops/0060420", "https://mivb.openplanner.team/stops/0060520"], ["https://mivb.openplanner.team/stops/2338F", "https://mivb.openplanner.team/stops/5772"], ["https://mivb.openplanner.team/stops/4101", "https://mivb.openplanner.team/stops/4169"], ["https://mivb.openplanner.team/stops/2534", "https://mivb.openplanner.team/stops/8711"], ["https://mivb.openplanner.team/stops/1323", "https://mivb.openplanner.team/stops/6406"], ["https://mivb.openplanner.team/stops/2898", "https://mivb.openplanner.team/stops/5766"], ["https://mivb.openplanner.team/stops/4319", "https://mivb.openplanner.team/stops/5420F"], ["https://mivb.openplanner.team/stops/2916", "https://mivb.openplanner.team/stops/5355"], ["https://mivb.openplanner.team/stops/1416", "https://mivb.openplanner.team/stops/3158B"], ["https://mivb.openplanner.team/stops/1350", "https://mivb.openplanner.team/stops/0440649"], ["https://mivb.openplanner.team/stops/1152", "https://mivb.openplanner.team/stops/23"], ["https://mivb.openplanner.team/stops/3304", "https://mivb.openplanner.team/stops/5048"], ["https://mivb.openplanner.team/stops/8251", "https://mivb.openplanner.team/stops/0250436"], ["https://mivb.openplanner.team/stops/1566", "https://mivb.openplanner.team/stops/9291"], ["https://mivb.openplanner.team/stops/2076", "https://mivb.openplanner.team/stops/5455"], ["https://mivb.openplanner.team/stops/2027", "https://mivb.openplanner.team/stops/2041"], ["https://mivb.openplanner.team/stops/1825", "https://mivb.openplanner.team/stops/1826"], ["https://mivb.openplanner.team/stops/2345", "https://mivb.openplanner.team/stops/3409"], ["https://mivb.openplanner.team/stops/3253F", "https://mivb.openplanner.team/stops/8381"], ["https://mivb.openplanner.team/stops/1016", "https://mivb.openplanner.team/stops/1351"], ["https://mivb.openplanner.team/stops/0430448", "https://mivb.openplanner.team/stops/0430748"], ["https://mivb.openplanner.team/stops/4363", "https://mivb.openplanner.team/stops/5205"], ["https://mivb.openplanner.team/stops/0722", "https://mivb.openplanner.team/stops/2334F"], ["https://mivb.openplanner.team/stops/0631", "https://mivb.openplanner.team/stops/0702"], ["https://mivb.openplanner.team/stops/1162C", "https://mivb.openplanner.team/stops/1769"], ["https://mivb.openplanner.team/stops/2665", "https://mivb.openplanner.team/stops/2669"], ["https://mivb.openplanner.team/stops/1256", "https://mivb.openplanner.team/stops/3233"], ["https://mivb.openplanner.team/stops/1096", "https://mivb.openplanner.team/stops/1108"], ["https://mivb.openplanner.team/stops/6352", "https://mivb.openplanner.team/stops/0330242"], ["https://mivb.openplanner.team/stops/2351F", "https://mivb.openplanner.team/stops/3480"], ["https://mivb.openplanner.team/stops/5072", "https://mivb.openplanner.team/stops/8461"], ["https://mivb.openplanner.team/stops/3503", "https://mivb.openplanner.team/stops/0310444"], ["https://mivb.openplanner.team/stops/0660166", "https://mivb.openplanner.team/stops/6077F"], ["https://mivb.openplanner.team/stops/6425F", "https://mivb.openplanner.team/stops/6430"], ["https://mivb.openplanner.team/stops/5020", "https://mivb.openplanner.team/stops/5064"], ["https://mivb.openplanner.team/stops/1402B", "https://mivb.openplanner.team/stops/1474B"], ["https://mivb.openplanner.team/stops/1986", "https://mivb.openplanner.team/stops/9952G"], ["https://mivb.openplanner.team/stops/2504", "https://mivb.openplanner.team/stops/5078F"], ["https://mivb.openplanner.team/stops/3257", "https://mivb.openplanner.team/stops/4594"], ["https://mivb.openplanner.team/stops/3017", "https://mivb.openplanner.team/stops/3285"], ["https://mivb.openplanner.team/stops/1131B", "https://mivb.openplanner.team/stops/1728"], ["https://mivb.openplanner.team/stops/4002B", "https://mivb.openplanner.team/stops/4002G"], ["https://mivb.openplanner.team/stops/3517", "https://mivb.openplanner.team/stops/3570"], ["https://mivb.openplanner.team/stops/8142", "https://mivb.openplanner.team/stops/0140128"], ["https://mivb.openplanner.team/stops/2608F", "https://mivb.openplanner.team/stops/2662B"], ["https://mivb.openplanner.team/stops/3234", "https://mivb.openplanner.team/stops/3238"], ["https://mivb.openplanner.team/stops/4277", "https://mivb.openplanner.team/stops/5474"], ["https://mivb.openplanner.team/stops/3182", "https://mivb.openplanner.team/stops/5910"], ["https://mivb.openplanner.team/stops/1080", "https://mivb.openplanner.team/stops/1687F"], ["https://mivb.openplanner.team/stops/2534", "https://mivb.openplanner.team/stops/3709"], ["https://mivb.openplanner.team/stops/2220F", "https://mivb.openplanner.team/stops/2257G"], ["https://mivb.openplanner.team/stops/2042", "https://mivb.openplanner.team/stops/0140128"], ["https://mivb.openplanner.team/stops/3284", "https://mivb.openplanner.team/stops/3463"], ["https://mivb.openplanner.team/stops/0670367", "https://mivb.openplanner.team/stops/0722"], ["https://mivb.openplanner.team/stops/5520F", "https://mivb.openplanner.team/stops/9557"], ["https://mivb.openplanner.team/stops/3354", "https://mivb.openplanner.team/stops/0410146"], ["https://mivb.openplanner.team/stops/2327", "https://mivb.openplanner.team/stops/5965"], ["https://mivb.openplanner.team/stops/2306", "https://mivb.openplanner.team/stops/2938"], ["https://mivb.openplanner.team/stops/8834", "https://mivb.openplanner.team/stops/7830152"], ["https://mivb.openplanner.team/stops/0529", "https://mivb.openplanner.team/stops/0531"], ["https://mivb.openplanner.team/stops/1124", "https://mivb.openplanner.team/stops/0040118"], ["https://mivb.openplanner.team/stops/2084", "https://mivb.openplanner.team/stops/9876"], ["https://mivb.openplanner.team/stops/3098", "https://mivb.openplanner.team/stops/5867F"], ["https://mivb.openplanner.team/stops/2809", "https://mivb.openplanner.team/stops/7790556"], ["https://mivb.openplanner.team/stops/1138", "https://mivb.openplanner.team/stops/9983"], ["https://mivb.openplanner.team/stops/1914", "https://mivb.openplanner.team/stops/5254"], ["https://mivb.openplanner.team/stops/5228F", "https://mivb.openplanner.team/stops/0120526"], ["https://mivb.openplanner.team/stops/3008", "https://mivb.openplanner.team/stops/5707"], ["https://mivb.openplanner.team/stops/7780157", "https://mivb.openplanner.team/stops/9027"], ["https://mivb.openplanner.team/stops/1809", "https://mivb.openplanner.team/stops/0210232"], ["https://mivb.openplanner.team/stops/1559", "https://mivb.openplanner.team/stops/1560"], ["https://mivb.openplanner.team/stops/9553", "https://mivb.openplanner.team/stops/9575"], ["https://mivb.openplanner.team/stops/2239", "https://mivb.openplanner.team/stops/5742B"], ["https://mivb.openplanner.team/stops/5420F", "https://mivb.openplanner.team/stops/5454F"], ["https://mivb.openplanner.team/stops/1339", "https://mivb.openplanner.team/stops/1673"], ["https://mivb.openplanner.team/stops/1117", "https://mivb.openplanner.team/stops/7720303"], ["https://mivb.openplanner.team/stops/1986", "https://mivb.openplanner.team/stops/6119F"], ["https://mivb.openplanner.team/stops/1043", "https://mivb.openplanner.team/stops/27"], ["https://mivb.openplanner.team/stops/1718B", "https://mivb.openplanner.team/stops/1812"], ["https://mivb.openplanner.team/stops/5115F", "https://mivb.openplanner.team/stops/6106"], ["https://mivb.openplanner.team/stops/4063", "https://mivb.openplanner.team/stops/9103"], ["https://mivb.openplanner.team/stops/6099", "https://mivb.openplanner.team/stops/6106"], ["https://mivb.openplanner.team/stops/1270B", "https://mivb.openplanner.team/stops/8062"], ["https://mivb.openplanner.team/stops/2216", "https://mivb.openplanner.team/stops/0360239"], ["https://mivb.openplanner.team/stops/2225", "https://mivb.openplanner.team/stops/2252"], ["https://mivb.openplanner.team/stops/0310144", "https://mivb.openplanner.team/stops/44"], ["https://mivb.openplanner.team/stops/5212", "https://mivb.openplanner.team/stops/5253"], ["https://mivb.openplanner.team/stops/3612F", "https://mivb.openplanner.team/stops/7660209"], ["https://mivb.openplanner.team/stops/9605", "https://mivb.openplanner.team/stops/9609"], ["https://mivb.openplanner.team/stops/5722", "https://mivb.openplanner.team/stops/5756F"], ["https://mivb.openplanner.team/stops/1936", "https://mivb.openplanner.team/stops/1954"], ["https://mivb.openplanner.team/stops/3547", "https://mivb.openplanner.team/stops/0240235"], ["https://mivb.openplanner.team/stops/1824", "https://mivb.openplanner.team/stops/1842"], ["https://mivb.openplanner.team/stops/6432", "https://mivb.openplanner.team/stops/0300145"], ["https://mivb.openplanner.team/stops/6808G", "https://mivb.openplanner.team/stops/0360139"], ["https://mivb.openplanner.team/stops/1180", "https://mivb.openplanner.team/stops/6471"], ["https://mivb.openplanner.team/stops/5021", "https://mivb.openplanner.team/stops/6253"], ["https://mivb.openplanner.team/stops/2752", "https://mivb.openplanner.team/stops/5270F"], ["https://mivb.openplanner.team/stops/5720F", "https://mivb.openplanner.team/stops/5964"], ["https://mivb.openplanner.team/stops/6705F", "https://mivb.openplanner.team/stops/6862F"], ["https://mivb.openplanner.team/stops/0900268", "https://mivb.openplanner.team/stops/1866"], ["https://mivb.openplanner.team/stops/2500", "https://mivb.openplanner.team/stops/0350240"], ["https://mivb.openplanner.team/stops/4314", "https://mivb.openplanner.team/stops/4345"], ["https://mivb.openplanner.team/stops/2317", "https://mivb.openplanner.team/stops/9607"], ["https://mivb.openplanner.team/stops/4214", "https://mivb.openplanner.team/stops/0460150"], ["https://mivb.openplanner.team/stops/3281", "https://mivb.openplanner.team/stops/3282"], ["https://mivb.openplanner.team/stops/8062", "https://mivb.openplanner.team/stops/0060520"], ["https://mivb.openplanner.team/stops/6812", "https://mivb.openplanner.team/stops/7690106"], ["https://mivb.openplanner.team/stops/1327", "https://mivb.openplanner.team/stops/3681"], ["https://mivb.openplanner.team/stops/3171", "https://mivb.openplanner.team/stops/5911"], ["https://mivb.openplanner.team/stops/3814", "https://mivb.openplanner.team/stops/3815"], ["https://mivb.openplanner.team/stops/2267", "https://mivb.openplanner.team/stops/2838"], ["https://mivb.openplanner.team/stops/2467", "https://mivb.openplanner.team/stops/2470"], ["https://mivb.openplanner.team/stops/0806", "https://mivb.openplanner.team/stops/0080222"], ["https://mivb.openplanner.team/stops/1454", "https://mivb.openplanner.team/stops/5223F"], ["https://mivb.openplanner.team/stops/2962", "https://mivb.openplanner.team/stops/7527"], ["https://mivb.openplanner.team/stops/3353", "https://mivb.openplanner.team/stops/17"], ["https://mivb.openplanner.team/stops/2513", "https://mivb.openplanner.team/stops/4658"], ["https://mivb.openplanner.team/stops/1601", "https://mivb.openplanner.team/stops/5525"], ["https://mivb.openplanner.team/stops/8773", "https://mivb.openplanner.team/stops/58"], ["https://mivb.openplanner.team/stops/6123", "https://mivb.openplanner.team/stops/6178"], ["https://mivb.openplanner.team/stops/2216", "https://mivb.openplanner.team/stops/3263F"], ["https://mivb.openplanner.team/stops/2318G", "https://mivb.openplanner.team/stops/5742B"], ["https://mivb.openplanner.team/stops/6420G", "https://mivb.openplanner.team/stops/6422F"], ["https://mivb.openplanner.team/stops/1518", "https://mivb.openplanner.team/stops/1561"], ["https://mivb.openplanner.team/stops/2939B", "https://mivb.openplanner.team/stops/5161"], ["https://mivb.openplanner.team/stops/2959", "https://mivb.openplanner.team/stops/6109"], ["https://mivb.openplanner.team/stops/9654", "https://mivb.openplanner.team/stops/9679"], ["https://mivb.openplanner.team/stops/1906", "https://mivb.openplanner.team/stops/1910"], ["https://mivb.openplanner.team/stops/9754B", "https://mivb.openplanner.team/stops/9778"], ["https://mivb.openplanner.team/stops/1616", "https://mivb.openplanner.team/stops/1660B"], ["https://mivb.openplanner.team/stops/1926B", "https://mivb.openplanner.team/stops/5917F"], ["https://mivb.openplanner.team/stops/1144", "https://mivb.openplanner.team/stops/2268"], ["https://mivb.openplanner.team/stops/1529", "https://mivb.openplanner.team/stops/1540"], ["https://mivb.openplanner.team/stops/1143", "https://mivb.openplanner.team/stops/9783"], ["https://mivb.openplanner.team/stops/2903F", "https://mivb.openplanner.team/stops/3175B"], ["https://mivb.openplanner.team/stops/1739", "https://mivb.openplanner.team/stops/5029"], ["https://mivb.openplanner.team/stops/1252", "https://mivb.openplanner.team/stops/8162"], ["https://mivb.openplanner.team/stops/2412", "https://mivb.openplanner.team/stops/2413"], ["https://mivb.openplanner.team/stops/1258B", "https://mivb.openplanner.team/stops/5723B"], ["https://mivb.openplanner.team/stops/2715", "https://mivb.openplanner.team/stops/5208"], ["https://mivb.openplanner.team/stops/6471", "https://mivb.openplanner.team/stops/0290112"], ["https://mivb.openplanner.team/stops/0810369", "https://mivb.openplanner.team/stops/1139"], ["https://mivb.openplanner.team/stops/1244", "https://mivb.openplanner.team/stops/3257F"], ["https://mivb.openplanner.team/stops/2269", "https://mivb.openplanner.team/stops/0430948"], ["https://mivb.openplanner.team/stops/1715", "https://mivb.openplanner.team/stops/4369"], ["https://mivb.openplanner.team/stops/2924", "https://mivb.openplanner.team/stops/5801"], ["https://mivb.openplanner.team/stops/5009F", "https://mivb.openplanner.team/stops/7770258"], ["https://mivb.openplanner.team/stops/2936", "https://mivb.openplanner.team/stops/5120"], ["https://mivb.openplanner.team/stops/1652", "https://mivb.openplanner.team/stops/1739"], ["https://mivb.openplanner.team/stops/3110", "https://mivb.openplanner.team/stops/6303"], ["https://mivb.openplanner.team/stops/2413", "https://mivb.openplanner.team/stops/2415"], ["https://mivb.openplanner.team/stops/1983", "https://mivb.openplanner.team/stops/5610"], ["https://mivb.openplanner.team/stops/1803B", "https://mivb.openplanner.team/stops/3912"], ["https://mivb.openplanner.team/stops/4116", "https://mivb.openplanner.team/stops/4152"], ["https://mivb.openplanner.team/stops/1056", "https://mivb.openplanner.team/stops/5013B"], ["https://mivb.openplanner.team/stops/7640311", "https://mivb.openplanner.team/stops/9656"], ["https://mivb.openplanner.team/stops/5731F", "https://mivb.openplanner.team/stops/9652"], ["https://mivb.openplanner.team/stops/1823", "https://mivb.openplanner.team/stops/1852"], ["https://mivb.openplanner.team/stops/1824", "https://mivb.openplanner.team/stops/3506"], ["https://mivb.openplanner.team/stops/0810169", "https://mivb.openplanner.team/stops/1460"], ["https://mivb.openplanner.team/stops/6369", "https://mivb.openplanner.team/stops/6416F"], ["https://mivb.openplanner.team/stops/5521", "https://mivb.openplanner.team/stops/7501"], ["https://mivb.openplanner.team/stops/6606", "https://mivb.openplanner.team/stops/0270514"], ["https://mivb.openplanner.team/stops/5105", "https://mivb.openplanner.team/stops/5105F"], ["https://mivb.openplanner.team/stops/3042", "https://mivb.openplanner.team/stops/9778"], ["https://mivb.openplanner.team/stops/2027", "https://mivb.openplanner.team/stops/2071"], ["https://mivb.openplanner.team/stops/1970", "https://mivb.openplanner.team/stops/2714"], ["https://mivb.openplanner.team/stops/1525", "https://mivb.openplanner.team/stops/1554"], ["https://mivb.openplanner.team/stops/1871B", "https://mivb.openplanner.team/stops/3912"], ["https://mivb.openplanner.team/stops/5816B", "https://mivb.openplanner.team/stops/5853G"], ["https://mivb.openplanner.team/stops/1818", "https://mivb.openplanner.team/stops/5223F"], ["https://mivb.openplanner.team/stops/1380", "https://mivb.openplanner.team/stops/5521"], ["https://mivb.openplanner.team/stops/5419", "https://mivb.openplanner.team/stops/5455"], ["https://mivb.openplanner.team/stops/4221", "https://mivb.openplanner.team/stops/7830352"], ["https://mivb.openplanner.team/stops/1810", "https://mivb.openplanner.team/stops/32"], ["https://mivb.openplanner.team/stops/1182", "https://mivb.openplanner.team/stops/1313"], ["https://mivb.openplanner.team/stops/1917", "https://mivb.openplanner.team/stops/2131"], ["https://mivb.openplanner.team/stops/2936", "https://mivb.openplanner.team/stops/2955"], ["https://mivb.openplanner.team/stops/1748", "https://mivb.openplanner.team/stops/4163"], ["https://mivb.openplanner.team/stops/4298", "https://mivb.openplanner.team/stops/0230434"], ["https://mivb.openplanner.team/stops/2122", "https://mivb.openplanner.team/stops/5062"], ["https://mivb.openplanner.team/stops/8411", "https://mivb.openplanner.team/stops/0410246"], ["https://mivb.openplanner.team/stops/1144", "https://mivb.openplanner.team/stops/3567"], ["https://mivb.openplanner.team/stops/6657", "https://mivb.openplanner.team/stops/6705F"], ["https://mivb.openplanner.team/stops/1479", "https://mivb.openplanner.team/stops/1480"], ["https://mivb.openplanner.team/stops/5719", "https://mivb.openplanner.team/stops/9920F"], ["https://mivb.openplanner.team/stops/0110325", "https://mivb.openplanner.team/stops/0110425"], ["https://mivb.openplanner.team/stops/1059", "https://mivb.openplanner.team/stops/3562"], ["https://mivb.openplanner.team/stops/1685F", "https://mivb.openplanner.team/stops/1721"], ["https://mivb.openplanner.team/stops/5013B", "https://mivb.openplanner.team/stops/5013F"], ["https://mivb.openplanner.team/stops/4305", "https://mivb.openplanner.team/stops/4363"], ["https://mivb.openplanner.team/stops/2125", "https://mivb.openplanner.team/stops/2131"], ["https://mivb.openplanner.team/stops/3522", "https://mivb.openplanner.team/stops/3529"], ["https://mivb.openplanner.team/stops/2346", "https://mivb.openplanner.team/stops/5357"], ["https://mivb.openplanner.team/stops/1942", "https://mivb.openplanner.team/stops/1943"], ["https://mivb.openplanner.team/stops/5081F", "https://mivb.openplanner.team/stops/5403"], ["https://mivb.openplanner.team/stops/1094", "https://mivb.openplanner.team/stops/4104"], ["https://mivb.openplanner.team/stops/0240135", "https://mivb.openplanner.team/stops/0240535"], ["https://mivb.openplanner.team/stops/1099", "https://mivb.openplanner.team/stops/5102F"], ["https://mivb.openplanner.team/stops/1456", "https://mivb.openplanner.team/stops/5559"], ["https://mivb.openplanner.team/stops/3158", "https://mivb.openplanner.team/stops/3160"], ["https://mivb.openplanner.team/stops/1048F", "https://mivb.openplanner.team/stops/5255F"], ["https://mivb.openplanner.team/stops/2323", "https://mivb.openplanner.team/stops/2535F"], ["https://mivb.openplanner.team/stops/1918", "https://mivb.openplanner.team/stops/1972"], ["https://mivb.openplanner.team/stops/5317G", "https://mivb.openplanner.team/stops/5357"], ["https://mivb.openplanner.team/stops/1382", "https://mivb.openplanner.team/stops/1384"], ["https://mivb.openplanner.team/stops/2137", "https://mivb.openplanner.team/stops/2138B"], ["https://mivb.openplanner.team/stops/1533", "https://mivb.openplanner.team/stops/3900"], ["https://mivb.openplanner.team/stops/2975", "https://mivb.openplanner.team/stops/6258"], ["https://mivb.openplanner.team/stops/6504", "https://mivb.openplanner.team/stops/6505"], ["https://mivb.openplanner.team/stops/2262", "https://mivb.openplanner.team/stops/6705F"], ["https://mivb.openplanner.team/stops/6062", "https://mivb.openplanner.team/stops/9023"], ["https://mivb.openplanner.team/stops/8231", "https://mivb.openplanner.team/stops/33"], ["https://mivb.openplanner.team/stops/1166", "https://mivb.openplanner.team/stops/1703"], ["https://mivb.openplanner.team/stops/9657", "https://mivb.openplanner.team/stops/9659"], ["https://mivb.openplanner.team/stops/2569", "https://mivb.openplanner.team/stops/2570"], ["https://mivb.openplanner.team/stops/2959", "https://mivb.openplanner.team/stops/5064"], ["https://mivb.openplanner.team/stops/2459", "https://mivb.openplanner.team/stops/2463F"], ["https://mivb.openplanner.team/stops/2898", "https://mivb.openplanner.team/stops/3168"], ["https://mivb.openplanner.team/stops/2200F", "https://mivb.openplanner.team/stops/5288"], ["https://mivb.openplanner.team/stops/2546", "https://mivb.openplanner.team/stops/5101B"], ["https://mivb.openplanner.team/stops/2815B", "https://mivb.openplanner.team/stops/5704F"], ["https://mivb.openplanner.team/stops/4104", "https://mivb.openplanner.team/stops/4169"], ["https://mivb.openplanner.team/stops/1675F", "https://mivb.openplanner.team/stops/6866F"], ["https://mivb.openplanner.team/stops/5824", "https://mivb.openplanner.team/stops/5826"], ["https://mivb.openplanner.team/stops/3098", "https://mivb.openplanner.team/stops/3172"], ["https://mivb.openplanner.team/stops/3162", "https://mivb.openplanner.team/stops/6017"], ["https://mivb.openplanner.team/stops/3354", "https://mivb.openplanner.team/stops/6308F"], ["https://mivb.openplanner.team/stops/2511", "https://mivb.openplanner.team/stops/4054G"], ["https://mivb.openplanner.team/stops/4304", "https://mivb.openplanner.team/stops/4365"], ["https://mivb.openplanner.team/stops/3012", "https://mivb.openplanner.team/stops/4324"], ["https://mivb.openplanner.team/stops/3331", "https://mivb.openplanner.team/stops/6442"], ["https://mivb.openplanner.team/stops/5711F", "https://mivb.openplanner.team/stops/6363"], ["https://mivb.openplanner.team/stops/3550", "https://mivb.openplanner.team/stops/4405"], ["https://mivb.openplanner.team/stops/2084", "https://mivb.openplanner.team/stops/2085"], ["https://mivb.openplanner.team/stops/1552", "https://mivb.openplanner.team/stops/2028"], ["https://mivb.openplanner.team/stops/9725", "https://mivb.openplanner.team/stops/9946"], ["https://mivb.openplanner.team/stops/5014", "https://mivb.openplanner.team/stops/6604F"], ["https://mivb.openplanner.team/stops/1318", "https://mivb.openplanner.team/stops/1418B"], ["https://mivb.openplanner.team/stops/2455", "https://mivb.openplanner.team/stops/2668"], ["https://mivb.openplanner.team/stops/0810469", "https://mivb.openplanner.team/stops/69"], ["https://mivb.openplanner.team/stops/5267", "https://mivb.openplanner.team/stops/5311"], ["https://mivb.openplanner.team/stops/1654", "https://mivb.openplanner.team/stops/1842"], ["https://mivb.openplanner.team/stops/4355", "https://mivb.openplanner.team/stops/4403"], ["https://mivb.openplanner.team/stops/5604", "https://mivb.openplanner.team/stops/5657"], ["https://mivb.openplanner.team/stops/4294", "https://mivb.openplanner.team/stops/4310"], ["https://mivb.openplanner.team/stops/5029", "https://mivb.openplanner.team/stops/5056"], ["https://mivb.openplanner.team/stops/5722", "https://mivb.openplanner.team/stops/5920H"], ["https://mivb.openplanner.team/stops/1327", "https://mivb.openplanner.team/stops/2256B"], ["https://mivb.openplanner.team/stops/4956", "https://mivb.openplanner.team/stops/9052"], ["https://mivb.openplanner.team/stops/1310", "https://mivb.openplanner.team/stops/4003G"], ["https://mivb.openplanner.team/stops/1937", "https://mivb.openplanner.team/stops/5826"], ["https://mivb.openplanner.team/stops/7660109", "https://mivb.openplanner.team/stops/9"], ["https://mivb.openplanner.team/stops/2455", "https://mivb.openplanner.team/stops/2954B"], ["https://mivb.openplanner.team/stops/8442", "https://mivb.openplanner.team/stops/0440449"], ["https://mivb.openplanner.team/stops/2408", "https://mivb.openplanner.team/stops/5859"], ["https://mivb.openplanner.team/stops/5017", "https://mivb.openplanner.team/stops/5066"], ["https://mivb.openplanner.team/stops/5722F", "https://mivb.openplanner.team/stops/5923"], ["https://mivb.openplanner.team/stops/3409", "https://mivb.openplanner.team/stops/5305G"], ["https://mivb.openplanner.team/stops/4074B", "https://mivb.openplanner.team/stops/6702"], ["https://mivb.openplanner.team/stops/1166", "https://mivb.openplanner.team/stops/3630"], ["https://mivb.openplanner.team/stops/1498", "https://mivb.openplanner.team/stops/5296B"], ["https://mivb.openplanner.team/stops/5025", "https://mivb.openplanner.team/stops/5856"], ["https://mivb.openplanner.team/stops/3902", "https://mivb.openplanner.team/stops/3959"], ["https://mivb.openplanner.team/stops/0900568", "https://mivb.openplanner.team/stops/1865"], ["https://mivb.openplanner.team/stops/4022", "https://mivb.openplanner.team/stops/7750160"], ["https://mivb.openplanner.team/stops/6468", "https://mivb.openplanner.team/stops/6469"], ["https://mivb.openplanner.team/stops/5352", "https://mivb.openplanner.team/stops/0200231"], ["https://mivb.openplanner.team/stops/8711", "https://mivb.openplanner.team/stops/8712"], ["https://mivb.openplanner.team/stops/1126", "https://mivb.openplanner.team/stops/0330242"], ["https://mivb.openplanner.team/stops/2238", "https://mivb.openplanner.team/stops/5712F"], ["https://mivb.openplanner.team/stops/1602", "https://mivb.openplanner.team/stops/5516"], ["https://mivb.openplanner.team/stops/6117", "https://mivb.openplanner.team/stops/0070621"], ["https://mivb.openplanner.team/stops/1762", "https://mivb.openplanner.team/stops/1806"], ["https://mivb.openplanner.team/stops/1386", "https://mivb.openplanner.team/stops/8122"], ["https://mivb.openplanner.team/stops/0120226", "https://mivb.openplanner.team/stops/0120326"], ["https://mivb.openplanner.team/stops/4205", "https://mivb.openplanner.team/stops/5402"], ["https://mivb.openplanner.team/stops/5508", "https://mivb.openplanner.team/stops/5659"], ["https://mivb.openplanner.team/stops/4059", "https://mivb.openplanner.team/stops/4059F"], ["https://mivb.openplanner.team/stops/2567", "https://mivb.openplanner.team/stops/2568"], ["https://mivb.openplanner.team/stops/1348", "https://mivb.openplanner.team/stops/1351"], ["https://mivb.openplanner.team/stops/0670167", "https://mivb.openplanner.team/stops/2934"], ["https://mivb.openplanner.team/stops/4276", "https://mivb.openplanner.team/stops/9056F"], ["https://mivb.openplanner.team/stops/2412", "https://mivb.openplanner.team/stops/2455"], ["https://mivb.openplanner.team/stops/1271B", "https://mivb.openplanner.team/stops/1548B"], ["https://mivb.openplanner.team/stops/2992", "https://mivb.openplanner.team/stops/3175B"], ["https://mivb.openplanner.team/stops/2299", "https://mivb.openplanner.team/stops/5705"], ["https://mivb.openplanner.team/stops/3449", "https://mivb.openplanner.team/stops/7269"], ["https://mivb.openplanner.team/stops/2977", "https://mivb.openplanner.team/stops/5355"], ["https://mivb.openplanner.team/stops/1620B", "https://mivb.openplanner.team/stops/1656B"], ["https://mivb.openplanner.team/stops/1382", "https://mivb.openplanner.team/stops/1540"], ["https://mivb.openplanner.team/stops/2539", "https://mivb.openplanner.team/stops/2671F"], ["https://mivb.openplanner.team/stops/4299", "https://mivb.openplanner.team/stops/4358"], ["https://mivb.openplanner.team/stops/3177", "https://mivb.openplanner.team/stops/6457F"], ["https://mivb.openplanner.team/stops/2991", "https://mivb.openplanner.team/stops/9725"], ["https://mivb.openplanner.team/stops/1323", "https://mivb.openplanner.team/stops/2134"], ["https://mivb.openplanner.team/stops/3309", "https://mivb.openplanner.team/stops/6203"], ["https://mivb.openplanner.team/stops/3414", "https://mivb.openplanner.team/stops/6210"], ["https://mivb.openplanner.team/stops/6809", "https://mivb.openplanner.team/stops/6858G"], ["https://mivb.openplanner.team/stops/2704", "https://mivb.openplanner.team/stops/2769"], ["https://mivb.openplanner.team/stops/0470F", "https://mivb.openplanner.team/stops/0470351"], ["https://mivb.openplanner.team/stops/6019", "https://mivb.openplanner.team/stops/6059"], ["https://mivb.openplanner.team/stops/2833", "https://mivb.openplanner.team/stops/2837"], ["https://mivb.openplanner.team/stops/4258", "https://mivb.openplanner.team/stops/4267"], ["https://mivb.openplanner.team/stops/8101", "https://mivb.openplanner.team/stops/8102"], ["https://mivb.openplanner.team/stops/6601", "https://mivb.openplanner.team/stops/6656"], ["https://mivb.openplanner.team/stops/1303", "https://mivb.openplanner.team/stops/1313"], ["https://mivb.openplanner.team/stops/2397", "https://mivb.openplanner.team/stops/5468"], ["https://mivb.openplanner.team/stops/1515", "https://mivb.openplanner.team/stops/3251"], ["https://mivb.openplanner.team/stops/1727", "https://mivb.openplanner.team/stops/1732"], ["https://mivb.openplanner.team/stops/5077", "https://mivb.openplanner.team/stops/7780157"], ["https://mivb.openplanner.team/stops/1419", "https://mivb.openplanner.team/stops/6055"], ["https://mivb.openplanner.team/stops/5729", "https://mivb.openplanner.team/stops/5922"], ["https://mivb.openplanner.team/stops/2576", "https://mivb.openplanner.team/stops/7780157"], ["https://mivb.openplanner.team/stops/5826", "https://mivb.openplanner.team/stops/5916F"], ["https://mivb.openplanner.team/stops/4306", "https://mivb.openplanner.team/stops/4363"], ["https://mivb.openplanner.team/stops/8131", "https://mivb.openplanner.team/stops/0130227"], ["https://mivb.openplanner.team/stops/1942", "https://mivb.openplanner.team/stops/4075"], ["https://mivb.openplanner.team/stops/2027", "https://mivb.openplanner.team/stops/2039"], ["https://mivb.openplanner.team/stops/2345", "https://mivb.openplanner.team/stops/3410"], ["https://mivb.openplanner.team/stops/1569B", "https://mivb.openplanner.team/stops/0050419"], ["https://mivb.openplanner.team/stops/0650265", "https://mivb.openplanner.team/stops/0330342"], ["https://mivb.openplanner.team/stops/6866F", "https://mivb.openplanner.team/stops/6867F"], ["https://mivb.openplanner.team/stops/1884", "https://mivb.openplanner.team/stops/3155"], ["https://mivb.openplanner.team/stops/1544", "https://mivb.openplanner.team/stops/5501"], ["https://mivb.openplanner.team/stops/2901", "https://mivb.openplanner.team/stops/3132"], ["https://mivb.openplanner.team/stops/1208", "https://mivb.openplanner.team/stops/1256"], ["https://mivb.openplanner.team/stops/2990", "https://mivb.openplanner.team/stops/5274F"], ["https://mivb.openplanner.team/stops/5040", "https://mivb.openplanner.team/stops/5042"], ["https://mivb.openplanner.team/stops/4217", "https://mivb.openplanner.team/stops/4252"], ["https://mivb.openplanner.team/stops/1256", "https://mivb.openplanner.team/stops/3234"], ["https://mivb.openplanner.team/stops/1418B", "https://mivb.openplanner.team/stops/1474B"], ["https://mivb.openplanner.team/stops/9660", "https://mivb.openplanner.team/stops/9682"], ["https://mivb.openplanner.team/stops/1126", "https://mivb.openplanner.team/stops/6352"], ["https://mivb.openplanner.team/stops/2805", "https://mivb.openplanner.team/stops/2805F"], ["https://mivb.openplanner.team/stops/5277F", "https://mivb.openplanner.team/stops/5874F"], ["https://mivb.openplanner.team/stops/6425F", "https://mivb.openplanner.team/stops/6428F"], ["https://mivb.openplanner.team/stops/4276", "https://mivb.openplanner.team/stops/5400"], ["https://mivb.openplanner.team/stops/2302", "https://mivb.openplanner.team/stops/0010415"], ["https://mivb.openplanner.team/stops/5009", "https://mivb.openplanner.team/stops/5009F"], ["https://mivb.openplanner.team/stops/3017", "https://mivb.openplanner.team/stops/3286B"], ["https://mivb.openplanner.team/stops/2900F", "https://mivb.openplanner.team/stops/2909"], ["https://mivb.openplanner.team/stops/6442", "https://mivb.openplanner.team/stops/0020216"], ["https://mivb.openplanner.team/stops/5963", "https://mivb.openplanner.team/stops/9649"], ["https://mivb.openplanner.team/stops/5814", "https://mivb.openplanner.team/stops/5855F"], ["https://mivb.openplanner.team/stops/1110", "https://mivb.openplanner.team/stops/9685"], ["https://mivb.openplanner.team/stops/5261", "https://mivb.openplanner.team/stops/5266F"], ["https://mivb.openplanner.team/stops/1792", "https://mivb.openplanner.team/stops/6702"], ["https://mivb.openplanner.team/stops/1538B", "https://mivb.openplanner.team/stops/3957"], ["https://mivb.openplanner.team/stops/1656B", "https://mivb.openplanner.team/stops/9578"], ["https://mivb.openplanner.team/stops/3332", "https://mivb.openplanner.team/stops/3355"], ["https://mivb.openplanner.team/stops/3309F", "https://mivb.openplanner.team/stops/6210"], ["https://mivb.openplanner.team/stops/3304", "https://mivb.openplanner.team/stops/3420"], ["https://mivb.openplanner.team/stops/3625B", "https://mivb.openplanner.team/stops/5064"], ["https://mivb.openplanner.team/stops/1825", "https://mivb.openplanner.team/stops/5655"], ["https://mivb.openplanner.team/stops/5480", "https://mivb.openplanner.team/stops/6115F"], ["https://mivb.openplanner.team/stops/3629", "https://mivb.openplanner.team/stops/0320343"], ["https://mivb.openplanner.team/stops/3304", "https://mivb.openplanner.team/stops/3362"], ["https://mivb.openplanner.team/stops/0220133", "https://mivb.openplanner.team/stops/33"], ["https://mivb.openplanner.team/stops/2042", "https://mivb.openplanner.team/stops/0140228"], ["https://mivb.openplanner.team/stops/3284", "https://mivb.openplanner.team/stops/3462"], ["https://mivb.openplanner.team/stops/3332", "https://mivb.openplanner.team/stops/0410246"], ["https://mivb.openplanner.team/stops/5312", "https://mivb.openplanner.team/stops/0210232"], ["https://mivb.openplanner.team/stops/1937", "https://mivb.openplanner.team/stops/1965"], ["https://mivb.openplanner.team/stops/9655", "https://mivb.openplanner.team/stops/9656"], ["https://mivb.openplanner.team/stops/2009", "https://mivb.openplanner.team/stops/2058"], ["https://mivb.openplanner.team/stops/0529", "https://mivb.openplanner.team/stops/0539"], ["https://mivb.openplanner.team/stops/2565", "https://mivb.openplanner.team/stops/3238"], ["https://mivb.openplanner.team/stops/8652", "https://mivb.openplanner.team/stops/9654"], ["https://mivb.openplanner.team/stops/1652", "https://mivb.openplanner.team/stops/6931G"], ["https://mivb.openplanner.team/stops/2318G", "https://mivb.openplanner.team/stops/2824"], ["https://mivb.openplanner.team/stops/3850", "https://mivb.openplanner.team/stops/5964"], ["https://mivb.openplanner.team/stops/1073", "https://mivb.openplanner.team/stops/2325"], ["https://mivb.openplanner.team/stops/2672", "https://mivb.openplanner.team/stops/2672F"], ["https://mivb.openplanner.team/stops/9553", "https://mivb.openplanner.team/stops/9577"], ["https://mivb.openplanner.team/stops/2239", "https://mivb.openplanner.team/stops/5741"], ["https://mivb.openplanner.team/stops/1762", "https://mivb.openplanner.team/stops/5266F"], ["https://mivb.openplanner.team/stops/2109B", "https://mivb.openplanner.team/stops/2762"], ["https://mivb.openplanner.team/stops/5007F", "https://mivb.openplanner.team/stops/5077"], ["https://mivb.openplanner.team/stops/1453", "https://mivb.openplanner.team/stops/4402"], ["https://mivb.openplanner.team/stops/1964", "https://mivb.openplanner.team/stops/2764G"], ["https://mivb.openplanner.team/stops/1196", "https://mivb.openplanner.team/stops/5105"], ["https://mivb.openplanner.team/stops/3103", "https://mivb.openplanner.team/stops/5868"], ["https://mivb.openplanner.team/stops/2610", "https://mivb.openplanner.team/stops/2661"], ["https://mivb.openplanner.team/stops/8793", "https://mivb.openplanner.team/stops/7790256"], ["https://mivb.openplanner.team/stops/1707", "https://mivb.openplanner.team/stops/2212"], ["https://mivb.openplanner.team/stops/3120", "https://mivb.openplanner.team/stops/3156"], ["https://mivb.openplanner.team/stops/2404", "https://mivb.openplanner.team/stops/2459"], ["https://mivb.openplanner.team/stops/1403", "https://mivb.openplanner.team/stops/1515"], ["https://mivb.openplanner.team/stops/5212", "https://mivb.openplanner.team/stops/5254"], ["https://mivb.openplanner.team/stops/3612F", "https://mivb.openplanner.team/stops/7670108"], ["https://mivb.openplanner.team/stops/2322", "https://mivb.openplanner.team/stops/2953"], ["https://mivb.openplanner.team/stops/9605", "https://mivb.openplanner.team/stops/9626"], ["https://mivb.openplanner.team/stops/2218", "https://mivb.openplanner.team/stops/3805"], ["https://mivb.openplanner.team/stops/3547", "https://mivb.openplanner.team/stops/0240135"], ["https://mivb.openplanner.team/stops/1179", "https://mivb.openplanner.team/stops/6471"], ["https://mivb.openplanner.team/stops/4265", "https://mivb.openplanner.team/stops/9056F"], ["https://mivb.openplanner.team/stops/2803", "https://mivb.openplanner.team/stops/6800F"], ["https://mivb.openplanner.team/stops/0040618", "https://mivb.openplanner.team/stops/0300245"], ["https://mivb.openplanner.team/stops/5512", "https://mivb.openplanner.team/stops/5551"], ["https://mivb.openplanner.team/stops/1016", "https://mivb.openplanner.team/stops/2209"], ["https://mivb.openplanner.team/stops/2317", "https://mivb.openplanner.team/stops/9608"], ["https://mivb.openplanner.team/stops/4214", "https://mivb.openplanner.team/stops/8462"], ["https://mivb.openplanner.team/stops/1128", "https://mivb.openplanner.team/stops/6353F"], ["https://mivb.openplanner.team/stops/1545", "https://mivb.openplanner.team/stops/5503"], ["https://mivb.openplanner.team/stops/5741", "https://mivb.openplanner.team/stops/6365"], ["https://mivb.openplanner.team/stops/1205", "https://mivb.openplanner.team/stops/2518"], ["https://mivb.openplanner.team/stops/1142", "https://mivb.openplanner.team/stops/9802"], ["https://mivb.openplanner.team/stops/1240", "https://mivb.openplanner.team/stops/2937B"], ["https://mivb.openplanner.team/stops/2452", "https://mivb.openplanner.team/stops/5953F"], ["https://mivb.openplanner.team/stops/2536", "https://mivb.openplanner.team/stops/2579"], ["https://mivb.openplanner.team/stops/1512", "https://mivb.openplanner.team/stops/9291"], ["https://mivb.openplanner.team/stops/1205", "https://mivb.openplanner.team/stops/2532"], ["https://mivb.openplanner.team/stops/3110", "https://mivb.openplanner.team/stops/3165"], ["https://mivb.openplanner.team/stops/6123", "https://mivb.openplanner.team/stops/6177"], ["https://mivb.openplanner.team/stops/3518B", "https://mivb.openplanner.team/stops/8311"], ["https://mivb.openplanner.team/stops/3005", "https://mivb.openplanner.team/stops/5910"], ["https://mivb.openplanner.team/stops/2282", "https://mivb.openplanner.team/stops/2303"], ["https://mivb.openplanner.team/stops/2566B", "https://mivb.openplanner.team/stops/2567"], ["https://mivb.openplanner.team/stops/6005", "https://mivb.openplanner.team/stops/6070"], ["https://mivb.openplanner.team/stops/9651", "https://mivb.openplanner.team/stops/9683"], ["https://mivb.openplanner.team/stops/0360139", "https://mivb.openplanner.team/stops/39"], ["https://mivb.openplanner.team/stops/8292", "https://mivb.openplanner.team/stops/0290112"], ["https://mivb.openplanner.team/stops/1514", "https://mivb.openplanner.team/stops/6021"], ["https://mivb.openplanner.team/stops/1995", "https://mivb.openplanner.team/stops/5817"], ["https://mivb.openplanner.team/stops/2161", "https://mivb.openplanner.team/stops/2704"], ["https://mivb.openplanner.team/stops/1094", "https://mivb.openplanner.team/stops/4159"], ["https://mivb.openplanner.team/stops/9654", "https://mivb.openplanner.team/stops/9680"], ["https://mivb.openplanner.team/stops/5812F", "https://mivb.openplanner.team/stops/5857"], ["https://mivb.openplanner.team/stops/2972", "https://mivb.openplanner.team/stops/5406"], ["https://mivb.openplanner.team/stops/1051", "https://mivb.openplanner.team/stops/2207"], ["https://mivb.openplanner.team/stops/0070321", "https://mivb.openplanner.team/stops/0070621"], ["https://mivb.openplanner.team/stops/1211B", "https://mivb.openplanner.team/stops/1253B"], ["https://mivb.openplanner.team/stops/1760", "https://mivb.openplanner.team/stops/0220233"], ["https://mivb.openplanner.team/stops/2131", "https://mivb.openplanner.team/stops/2132"], ["https://mivb.openplanner.team/stops/6311", "https://mivb.openplanner.team/stops/6312"], ["https://mivb.openplanner.team/stops/1063", "https://mivb.openplanner.team/stops/1127"], ["https://mivb.openplanner.team/stops/2118", "https://mivb.openplanner.team/stops/4319"], ["https://mivb.openplanner.team/stops/2370", "https://mivb.openplanner.team/stops/6097B"], ["https://mivb.openplanner.team/stops/6471", "https://mivb.openplanner.team/stops/8292"], ["https://mivb.openplanner.team/stops/0702", "https://mivb.openplanner.team/stops/1370"], ["https://mivb.openplanner.team/stops/1190", "https://mivb.openplanner.team/stops/1307F"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/5423"], ["https://mivb.openplanner.team/stops/1954", "https://mivb.openplanner.team/stops/1955"], ["https://mivb.openplanner.team/stops/1273", "https://mivb.openplanner.team/stops/1425"], ["https://mivb.openplanner.team/stops/1067", "https://mivb.openplanner.team/stops/1746"], ["https://mivb.openplanner.team/stops/2463", "https://mivb.openplanner.team/stops/6121F"], ["https://mivb.openplanner.team/stops/4232", "https://mivb.openplanner.team/stops/6172"], ["https://mivb.openplanner.team/stops/4277", "https://mivb.openplanner.team/stops/8823"], ["https://mivb.openplanner.team/stops/2167", "https://mivb.openplanner.team/stops/2771"], ["https://mivb.openplanner.team/stops/2413", "https://mivb.openplanner.team/stops/2414"], ["https://mivb.openplanner.team/stops/6311", "https://mivb.openplanner.team/stops/0310244"], ["https://mivb.openplanner.team/stops/7640311", "https://mivb.openplanner.team/stops/9655"], ["https://mivb.openplanner.team/stops/1016", "https://mivb.openplanner.team/stops/1051"], ["https://mivb.openplanner.team/stops/3628", "https://mivb.openplanner.team/stops/6314"], ["https://mivb.openplanner.team/stops/5211", "https://mivb.openplanner.team/stops/5255F"], ["https://mivb.openplanner.team/stops/2975", "https://mivb.openplanner.team/stops/3299"], ["https://mivb.openplanner.team/stops/1121", "https://mivb.openplanner.team/stops/1143"], ["https://mivb.openplanner.team/stops/1166", "https://mivb.openplanner.team/stops/6312"], ["https://mivb.openplanner.team/stops/3558", "https://mivb.openplanner.team/stops/5461F"], ["https://mivb.openplanner.team/stops/3610G", "https://mivb.openplanner.team/stops/7640111"], ["https://mivb.openplanner.team/stops/6476", "https://mivb.openplanner.team/stops/6477"], ["https://mivb.openplanner.team/stops/5908", "https://mivb.openplanner.team/stops/5961"], ["https://mivb.openplanner.team/stops/3251", "https://mivb.openplanner.team/stops/3707"], ["https://mivb.openplanner.team/stops/5413F", "https://mivb.openplanner.team/stops/6550"], ["https://mivb.openplanner.team/stops/1525", "https://mivb.openplanner.team/stops/1553"], ["https://mivb.openplanner.team/stops/1319", "https://mivb.openplanner.team/stops/3158B"], ["https://mivb.openplanner.team/stops/3164", "https://mivb.openplanner.team/stops/3309"], ["https://mivb.openplanner.team/stops/3042", "https://mivb.openplanner.team/stops/9701"], ["https://mivb.openplanner.team/stops/3404", "https://mivb.openplanner.team/stops/3425"], ["https://mivb.openplanner.team/stops/1094", "https://mivb.openplanner.team/stops/1236"], ["https://mivb.openplanner.team/stops/6469", "https://mivb.openplanner.team/stops/8252"], ["https://mivb.openplanner.team/stops/2015", "https://mivb.openplanner.team/stops/2071"], ["https://mivb.openplanner.team/stops/1386", "https://mivb.openplanner.team/stops/5229F"], ["https://mivb.openplanner.team/stops/5419", "https://mivb.openplanner.team/stops/5454F"], ["https://mivb.openplanner.team/stops/9605", "https://mivb.openplanner.team/stops/9606"], ["https://mivb.openplanner.team/stops/3167", "https://mivb.openplanner.team/stops/5359"], ["https://mivb.openplanner.team/stops/3313", "https://mivb.openplanner.team/stops/6016"], ["https://mivb.openplanner.team/stops/1178", "https://mivb.openplanner.team/stops/3225F"], ["https://mivb.openplanner.team/stops/4956", "https://mivb.openplanner.team/stops/8814"], ["https://mivb.openplanner.team/stops/1498", "https://mivb.openplanner.team/stops/3853"], ["https://mivb.openplanner.team/stops/1563", "https://mivb.openplanner.team/stops/3251"], ["https://mivb.openplanner.team/stops/2932", "https://mivb.openplanner.team/stops/6425F"], ["https://mivb.openplanner.team/stops/8231", "https://mivb.openplanner.team/stops/0230234"], ["https://mivb.openplanner.team/stops/2535B", "https://mivb.openplanner.team/stops/2535F"], ["https://mivb.openplanner.team/stops/2225", "https://mivb.openplanner.team/stops/2535F"], ["https://mivb.openplanner.team/stops/1368", "https://mivb.openplanner.team/stops/1599"], ["https://mivb.openplanner.team/stops/2603", "https://mivb.openplanner.team/stops/2938"], ["https://mivb.openplanner.team/stops/2267", "https://mivb.openplanner.team/stops/0270614"], ["https://mivb.openplanner.team/stops/2308", "https://mivb.openplanner.team/stops/5770F"], ["https://mivb.openplanner.team/stops/2551", "https://mivb.openplanner.team/stops/2555"], ["https://mivb.openplanner.team/stops/2915", "https://mivb.openplanner.team/stops/2977"], ["https://mivb.openplanner.team/stops/1635", "https://mivb.openplanner.team/stops/2087"], ["https://mivb.openplanner.team/stops/2452", "https://mivb.openplanner.team/stops/5917"], ["https://mivb.openplanner.team/stops/2662B", "https://mivb.openplanner.team/stops/2669"], ["https://mivb.openplanner.team/stops/4305", "https://mivb.openplanner.team/stops/4364"], ["https://mivb.openplanner.team/stops/7680107", "https://mivb.openplanner.team/stops/8682"], ["https://mivb.openplanner.team/stops/1328", "https://mivb.openplanner.team/stops/1743"], ["https://mivb.openplanner.team/stops/0020516", "https://mivb.openplanner.team/stops/0020616"], ["https://mivb.openplanner.team/stops/5402", "https://mivb.openplanner.team/stops/5472"], ["https://mivb.openplanner.team/stops/6463F", "https://mivb.openplanner.team/stops/0070521"], ["https://mivb.openplanner.team/stops/1986", "https://mivb.openplanner.team/stops/3517"], ["https://mivb.openplanner.team/stops/2116B", "https://mivb.openplanner.team/stops/2147B"], ["https://mivb.openplanner.team/stops/1280B", "https://mivb.openplanner.team/stops/6158"], ["https://mivb.openplanner.team/stops/4059", "https://mivb.openplanner.team/stops/4062"], ["https://mivb.openplanner.team/stops/1856", "https://mivb.openplanner.team/stops/5555"], ["https://mivb.openplanner.team/stops/2306", "https://mivb.openplanner.team/stops/2322"], ["https://mivb.openplanner.team/stops/0430148", "https://mivb.openplanner.team/stops/0430448"], ["https://mivb.openplanner.team/stops/2279", "https://mivb.openplanner.team/stops/2296"], ["https://mivb.openplanner.team/stops/3549", "https://mivb.openplanner.team/stops/0250536"], ["https://mivb.openplanner.team/stops/1140", "https://mivb.openplanner.team/stops/0090223"], ["https://mivb.openplanner.team/stops/2709F", "https://mivb.openplanner.team/stops/2764G"], ["https://mivb.openplanner.team/stops/1230", "https://mivb.openplanner.team/stops/5100B"], ["https://mivb.openplanner.team/stops/1802", "https://mivb.openplanner.team/stops/1873"], ["https://mivb.openplanner.team/stops/2254", "https://mivb.openplanner.team/stops/6483B"], ["https://mivb.openplanner.team/stops/4360", "https://mivb.openplanner.team/stops/5461F"], ["https://mivb.openplanner.team/stops/1769", "https://mivb.openplanner.team/stops/1906"], ["https://mivb.openplanner.team/stops/2137", "https://mivb.openplanner.team/stops/2140"], ["https://mivb.openplanner.team/stops/1271B", "https://mivb.openplanner.team/stops/1417B"], ["https://mivb.openplanner.team/stops/1245", "https://mivb.openplanner.team/stops/3223B"], ["https://mivb.openplanner.team/stops/4853", "https://mivb.openplanner.team/stops/4857B"], ["https://mivb.openplanner.team/stops/1415", "https://mivb.openplanner.team/stops/1856"], ["https://mivb.openplanner.team/stops/1255", "https://mivb.openplanner.team/stops/3252"], ["https://mivb.openplanner.team/stops/2317", "https://mivb.openplanner.team/stops/3063"], ["https://mivb.openplanner.team/stops/1255", "https://mivb.openplanner.team/stops/3281"], ["https://mivb.openplanner.team/stops/0430848", "https://mivb.openplanner.team/stops/0430948"], ["https://mivb.openplanner.team/stops/1227", "https://mivb.openplanner.team/stops/6602P"], ["https://mivb.openplanner.team/stops/2120", "https://mivb.openplanner.team/stops/2136"], ["https://mivb.openplanner.team/stops/0320143", "https://mivb.openplanner.team/stops/0320243"], ["https://mivb.openplanner.team/stops/1229", "https://mivb.openplanner.team/stops/2555"], ["https://mivb.openplanner.team/stops/8252", "https://mivb.openplanner.team/stops/0250336"], ["https://mivb.openplanner.team/stops/1673", "https://mivb.openplanner.team/stops/2041"], ["https://mivb.openplanner.team/stops/3305", "https://mivb.openplanner.team/stops/3306"], ["https://mivb.openplanner.team/stops/1063", "https://mivb.openplanner.team/stops/2245"], ["https://mivb.openplanner.team/stops/1668", "https://mivb.openplanner.team/stops/5515"], ["https://mivb.openplanner.team/stops/4304", "https://mivb.openplanner.team/stops/4364"], ["https://mivb.openplanner.team/stops/5018F", "https://mivb.openplanner.team/stops/5066"], ["https://mivb.openplanner.team/stops/3317", "https://mivb.openplanner.team/stops/9311"], ["https://mivb.openplanner.team/stops/2287", "https://mivb.openplanner.team/stops/0080422"], ["https://mivb.openplanner.team/stops/9606", "https://mivb.openplanner.team/stops/9607"], ["https://mivb.openplanner.team/stops/1204", "https://mivb.openplanner.team/stops/1489"], ["https://mivb.openplanner.team/stops/4355", "https://mivb.openplanner.team/stops/4402"], ["https://mivb.openplanner.team/stops/5604", "https://mivb.openplanner.team/stops/5656"], ["https://mivb.openplanner.team/stops/5121", "https://mivb.openplanner.team/stops/5915"], ["https://mivb.openplanner.team/stops/2409", "https://mivb.openplanner.team/stops/2459"], ["https://mivb.openplanner.team/stops/1315", "https://mivb.openplanner.team/stops/3321"], ["https://mivb.openplanner.team/stops/4363", "https://mivb.openplanner.team/stops/5264F"], ["https://mivb.openplanner.team/stops/6444", "https://mivb.openplanner.team/stops/0020116"], ["https://mivb.openplanner.team/stops/8741", "https://mivb.openplanner.team/stops/8743"], ["https://mivb.openplanner.team/stops/5017", "https://mivb.openplanner.team/stops/5066F"], ["https://mivb.openplanner.team/stops/1959", "https://mivb.openplanner.team/stops/2167"], ["https://mivb.openplanner.team/stops/1498", "https://mivb.openplanner.team/stops/5297B"], ["https://mivb.openplanner.team/stops/1416", "https://mivb.openplanner.team/stops/1476"], ["https://mivb.openplanner.team/stops/1917", "https://mivb.openplanner.team/stops/1920"], ["https://mivb.openplanner.team/stops/3304", "https://mivb.openplanner.team/stops/6081"], ["https://mivb.openplanner.team/stops/1643F", "https://mivb.openplanner.team/stops/5762"], ["https://mivb.openplanner.team/stops/2086", "https://mivb.openplanner.team/stops/37"], ["https://mivb.openplanner.team/stops/0430248", "https://mivb.openplanner.team/stops/0430348"], ["https://mivb.openplanner.team/stops/5272F", "https://mivb.openplanner.team/stops/5273F"], ["https://mivb.openplanner.team/stops/1133", "https://mivb.openplanner.team/stops/3159"], ["https://mivb.openplanner.team/stops/1840", "https://mivb.openplanner.team/stops/5512"], ["https://mivb.openplanner.team/stops/5031F", "https://mivb.openplanner.team/stops/5054F"], ["https://mivb.openplanner.team/stops/1126", "https://mivb.openplanner.team/stops/0330142"], ["https://mivb.openplanner.team/stops/2856B", "https://mivb.openplanner.team/stops/5086F"], ["https://mivb.openplanner.team/stops/4288", "https://mivb.openplanner.team/stops/4292"], ["https://mivb.openplanner.team/stops/0080322", "https://mivb.openplanner.team/stops/9996"], ["https://mivb.openplanner.team/stops/1811", "https://mivb.openplanner.team/stops/1862"], ["https://mivb.openplanner.team/stops/0821", "https://mivb.openplanner.team/stops/0826"], ["https://mivb.openplanner.team/stops/4804B", "https://mivb.openplanner.team/stops/4857B"], ["https://mivb.openplanner.team/stops/3253F", "https://mivb.openplanner.team/stops/8741"], ["https://mivb.openplanner.team/stops/1929", "https://mivb.openplanner.team/stops/5825"], ["https://mivb.openplanner.team/stops/3624B", "https://mivb.openplanner.team/stops/8321"], ["https://mivb.openplanner.team/stops/2763", "https://mivb.openplanner.team/stops/5255F"], ["https://mivb.openplanner.team/stops/3424", "https://mivb.openplanner.team/stops/5046"], ["https://mivb.openplanner.team/stops/5602", "https://mivb.openplanner.team/stops/5603"], ["https://mivb.openplanner.team/stops/9627", "https://mivb.openplanner.team/stops/9707"], ["https://mivb.openplanner.team/stops/6755", "https://mivb.openplanner.team/stops/8461"], ["https://mivb.openplanner.team/stops/1180", "https://mivb.openplanner.team/stops/4074B"], ["https://mivb.openplanner.team/stops/1127", "https://mivb.openplanner.team/stops/3012"], ["https://mivb.openplanner.team/stops/7730502", "https://mivb.openplanner.team/stops/7730602"], ["https://mivb.openplanner.team/stops/2670", "https://mivb.openplanner.team/stops/2670F"], ["https://mivb.openplanner.team/stops/2539", "https://mivb.openplanner.team/stops/2671"], ["https://mivb.openplanner.team/stops/3467B", "https://mivb.openplanner.team/stops/3468"], ["https://mivb.openplanner.team/stops/2467", "https://mivb.openplanner.team/stops/0340441"], ["https://mivb.openplanner.team/stops/8431", "https://mivb.openplanner.team/stops/8432"], ["https://mivb.openplanner.team/stops/1988", "https://mivb.openplanner.team/stops/0430748"], ["https://mivb.openplanner.team/stops/1229", "https://mivb.openplanner.team/stops/1231"], ["https://mivb.openplanner.team/stops/1712", "https://mivb.openplanner.team/stops/6156F"], ["https://mivb.openplanner.team/stops/5116", "https://mivb.openplanner.team/stops/5757"], ["https://mivb.openplanner.team/stops/0470251", "https://mivb.openplanner.team/stops/8763"], ["https://mivb.openplanner.team/stops/2704", "https://mivb.openplanner.team/stops/2765"], ["https://mivb.openplanner.team/stops/1822", "https://mivb.openplanner.team/stops/5553"], ["https://mivb.openplanner.team/stops/2972", "https://mivb.openplanner.team/stops/7520"], ["https://mivb.openplanner.team/stops/2833", "https://mivb.openplanner.team/stops/2835"], ["https://mivb.openplanner.team/stops/2541", "https://mivb.openplanner.team/stops/6175"], ["https://mivb.openplanner.team/stops/0670267", "https://mivb.openplanner.team/stops/0670367"], ["https://mivb.openplanner.team/stops/3305", "https://mivb.openplanner.team/stops/3425"], ["https://mivb.openplanner.team/stops/1949", "https://mivb.openplanner.team/stops/2702"], ["https://mivb.openplanner.team/stops/2725", "https://mivb.openplanner.team/stops/3524"], ["https://mivb.openplanner.team/stops/6168", "https://mivb.openplanner.team/stops/6168F"], ["https://mivb.openplanner.team/stops/0610463", "https://mivb.openplanner.team/stops/0610563"], ["https://mivb.openplanner.team/stops/6450", "https://mivb.openplanner.team/stops/6454"], ["https://mivb.openplanner.team/stops/1775", "https://mivb.openplanner.team/stops/6867F"], ["https://mivb.openplanner.team/stops/0270414", "https://mivb.openplanner.team/stops/0270514"], ["https://mivb.openplanner.team/stops/1127", "https://mivb.openplanner.team/stops/1800"], ["https://mivb.openplanner.team/stops/2015", "https://mivb.openplanner.team/stops/3334F"], ["https://mivb.openplanner.team/stops/4341", "https://mivb.openplanner.team/stops/5452"], ["https://mivb.openplanner.team/stops/1737", "https://mivb.openplanner.team/stops/2705"], ["https://mivb.openplanner.team/stops/6459", "https://mivb.openplanner.team/stops/6461"], ["https://mivb.openplanner.team/stops/2027", "https://mivb.openplanner.team/stops/2038"], ["https://mivb.openplanner.team/stops/3503", "https://mivb.openplanner.team/stops/6354B"], ["https://mivb.openplanner.team/stops/1236", "https://mivb.openplanner.team/stops/4005F"], ["https://mivb.openplanner.team/stops/1936", "https://mivb.openplanner.team/stops/2157"], ["https://mivb.openplanner.team/stops/1756B", "https://mivb.openplanner.team/stops/4407"], ["https://mivb.openplanner.team/stops/0511", "https://mivb.openplanner.team/stops/1904"], ["https://mivb.openplanner.team/stops/2810", "https://mivb.openplanner.team/stops/2811"], ["https://mivb.openplanner.team/stops/3221", "https://mivb.openplanner.team/stops/3633B"], ["https://mivb.openplanner.team/stops/5086F", "https://mivb.openplanner.team/stops/5700G"], ["https://mivb.openplanner.team/stops/1319", "https://mivb.openplanner.team/stops/3117"], ["https://mivb.openplanner.team/stops/2506B", "https://mivb.openplanner.team/stops/2572"], ["https://mivb.openplanner.team/stops/1415", "https://mivb.openplanner.team/stops/5227F"], ["https://mivb.openplanner.team/stops/5059", "https://mivb.openplanner.team/stops/5812"], ["https://mivb.openplanner.team/stops/2267", "https://mivb.openplanner.team/stops/0440449"], ["https://mivb.openplanner.team/stops/3273", "https://mivb.openplanner.team/stops/3402"], ["https://mivb.openplanner.team/stops/1182", "https://mivb.openplanner.team/stops/1197"], ["https://mivb.openplanner.team/stops/3360F", "https://mivb.openplanner.team/stops/6058"], ["https://mivb.openplanner.team/stops/5507", "https://mivb.openplanner.team/stops/5508"], ["https://mivb.openplanner.team/stops/4071", "https://mivb.openplanner.team/stops/9707"], ["https://mivb.openplanner.team/stops/3308F", "https://mivb.openplanner.team/stops/6210"], ["https://mivb.openplanner.team/stops/6442", "https://mivb.openplanner.team/stops/0020516"], ["https://mivb.openplanner.team/stops/6355F", "https://mivb.openplanner.team/stops/8031"], ["https://mivb.openplanner.team/stops/3762", "https://mivb.openplanner.team/stops/4500"], ["https://mivb.openplanner.team/stops/2823B", "https://mivb.openplanner.team/stops/2853"], ["https://mivb.openplanner.team/stops/3417", "https://mivb.openplanner.team/stops/3458"], ["https://mivb.openplanner.team/stops/2302", "https://mivb.openplanner.team/stops/0010315"], ["https://mivb.openplanner.team/stops/5723B", "https://mivb.openplanner.team/stops/5953"], ["https://mivb.openplanner.team/stops/3017", "https://mivb.openplanner.team/stops/3288"], ["https://mivb.openplanner.team/stops/5963", "https://mivb.openplanner.team/stops/9651"], ["https://mivb.openplanner.team/stops/1712", "https://mivb.openplanner.team/stops/1733"], ["https://mivb.openplanner.team/stops/5814", "https://mivb.openplanner.team/stops/5855"], ["https://mivb.openplanner.team/stops/1110", "https://mivb.openplanner.team/stops/9680"], ["https://mivb.openplanner.team/stops/1823", "https://mivb.openplanner.team/stops/5657"], ["https://mivb.openplanner.team/stops/6472", "https://mivb.openplanner.team/stops/8202"], ["https://mivb.openplanner.team/stops/1538B", "https://mivb.openplanner.team/stops/3958"], ["https://mivb.openplanner.team/stops/9561", "https://mivb.openplanner.team/stops/9600B"], ["https://mivb.openplanner.team/stops/2912", "https://mivb.openplanner.team/stops/3307"], ["https://mivb.openplanner.team/stops/1679F", "https://mivb.openplanner.team/stops/1732"], ["https://mivb.openplanner.team/stops/1714", "https://mivb.openplanner.team/stops/1806"], ["https://mivb.openplanner.team/stops/0230234", "https://mivb.openplanner.team/stops/34"], ["https://mivb.openplanner.team/stops/5469", "https://mivb.openplanner.team/stops/7544"], ["https://mivb.openplanner.team/stops/1719", "https://mivb.openplanner.team/stops/1757"], ["https://mivb.openplanner.team/stops/1239", "https://mivb.openplanner.team/stops/2667F"], ["https://mivb.openplanner.team/stops/0090223", "https://mivb.openplanner.team/stops/23"], ["https://mivb.openplanner.team/stops/6357", "https://mivb.openplanner.team/stops/6357F"], ["https://mivb.openplanner.team/stops/1825", "https://mivb.openplanner.team/stops/5656"], ["https://mivb.openplanner.team/stops/1917", "https://mivb.openplanner.team/stops/5212"], ["https://mivb.openplanner.team/stops/4598", "https://mivb.openplanner.team/stops/4599"], ["https://mivb.openplanner.team/stops/1278", "https://mivb.openplanner.team/stops/5266F"], ["https://mivb.openplanner.team/stops/3332", "https://mivb.openplanner.team/stops/0410346"], ["https://mivb.openplanner.team/stops/3354", "https://mivb.openplanner.team/stops/0410346"], ["https://mivb.openplanner.team/stops/5859", "https://mivb.openplanner.team/stops/6209"], ["https://mivb.openplanner.team/stops/8784", "https://mivb.openplanner.team/stops/7780157"], ["https://mivb.openplanner.team/stops/1315", "https://mivb.openplanner.team/stops/1316"], ["https://mivb.openplanner.team/stops/1408", "https://mivb.openplanner.team/stops/6476"], ["https://mivb.openplanner.team/stops/1236F", "https://mivb.openplanner.team/stops/4101"], ["https://mivb.openplanner.team/stops/2919", "https://mivb.openplanner.team/stops/9291"], ["https://mivb.openplanner.team/stops/2084", "https://mivb.openplanner.team/stops/9851"], ["https://mivb.openplanner.team/stops/3107", "https://mivb.openplanner.team/stops/5320"], ["https://mivb.openplanner.team/stops/6100", "https://mivb.openplanner.team/stops/6171"], ["https://mivb.openplanner.team/stops/1980", "https://mivb.openplanner.team/stops/6158"], ["https://mivb.openplanner.team/stops/5760", "https://mivb.openplanner.team/stops/6459F"], ["https://mivb.openplanner.team/stops/5727F", "https://mivb.openplanner.team/stops/9682"], ["https://mivb.openplanner.team/stops/2611", "https://mivb.openplanner.team/stops/5963"], ["https://mivb.openplanner.team/stops/1015", "https://mivb.openplanner.team/stops/3860"], ["https://mivb.openplanner.team/stops/0600462", "https://mivb.openplanner.team/stops/0600662"], ["https://mivb.openplanner.team/stops/1942", "https://mivb.openplanner.team/stops/5024"], ["https://mivb.openplanner.team/stops/6449", "https://mivb.openplanner.team/stops/6450"], ["https://mivb.openplanner.team/stops/1629", "https://mivb.openplanner.team/stops/9553"], ["https://mivb.openplanner.team/stops/2996", "https://mivb.openplanner.team/stops/5275F"], ["https://mivb.openplanner.team/stops/1124", "https://mivb.openplanner.team/stops/3532"], ["https://mivb.openplanner.team/stops/1814B", "https://mivb.openplanner.team/stops/1862"], ["https://mivb.openplanner.team/stops/6651", "https://mivb.openplanner.team/stops/0440549"], ["https://mivb.openplanner.team/stops/1270B", "https://mivb.openplanner.team/stops/0060420"], ["https://mivb.openplanner.team/stops/6174B", "https://mivb.openplanner.team/stops/6174F"], ["https://mivb.openplanner.team/stops/3508", "https://mivb.openplanner.team/stops/6112"], ["https://mivb.openplanner.team/stops/4857B", "https://mivb.openplanner.team/stops/6956B"], ["https://mivb.openplanner.team/stops/3104", "https://mivb.openplanner.team/stops/5965"], ["https://mivb.openplanner.team/stops/9605", "https://mivb.openplanner.team/stops/9607"], ["https://mivb.openplanner.team/stops/1166", "https://mivb.openplanner.team/stops/2234"], ["https://mivb.openplanner.team/stops/3522", "https://mivb.openplanner.team/stops/5658"], ["https://mivb.openplanner.team/stops/1172", "https://mivb.openplanner.team/stops/0470351"], ["https://mivb.openplanner.team/stops/6115F", "https://mivb.openplanner.team/stops/6155F"], ["https://mivb.openplanner.team/stops/6432", "https://mivb.openplanner.team/stops/8301"], ["https://mivb.openplanner.team/stops/2660", "https://mivb.openplanner.team/stops/5731F"], ["https://mivb.openplanner.team/stops/3132", "https://mivb.openplanner.team/stops/5299"], ["https://mivb.openplanner.team/stops/2664", "https://mivb.openplanner.team/stops/5922"], ["https://mivb.openplanner.team/stops/2118", "https://mivb.openplanner.team/stops/2145"], ["https://mivb.openplanner.team/stops/2218", "https://mivb.openplanner.team/stops/2218F"], ["https://mivb.openplanner.team/stops/1728", "https://mivb.openplanner.team/stops/1777B"], ["https://mivb.openplanner.team/stops/2861", "https://mivb.openplanner.team/stops/4274"], ["https://mivb.openplanner.team/stops/3181", "https://mivb.openplanner.team/stops/5803G"], ["https://mivb.openplanner.team/stops/3117", "https://mivb.openplanner.team/stops/3158B"], ["https://mivb.openplanner.team/stops/2118", "https://mivb.openplanner.team/stops/2119"], ["https://mivb.openplanner.team/stops/2962", "https://mivb.openplanner.team/stops/7544"], ["https://mivb.openplanner.team/stops/1169", "https://mivb.openplanner.team/stops/0340241"], ["https://mivb.openplanner.team/stops/1172", "https://mivb.openplanner.team/stops/4152"], ["https://mivb.openplanner.team/stops/1767", "https://mivb.openplanner.team/stops/1782"], ["https://mivb.openplanner.team/stops/1009", "https://mivb.openplanner.team/stops/1368"], ["https://mivb.openplanner.team/stops/1497B", "https://mivb.openplanner.team/stops/19"], ["https://mivb.openplanner.team/stops/2122", "https://mivb.openplanner.team/stops/2932"], ["https://mivb.openplanner.team/stops/2220", "https://mivb.openplanner.team/stops/2256B"], ["https://mivb.openplanner.team/stops/2161", "https://mivb.openplanner.team/stops/2705"], ["https://mivb.openplanner.team/stops/5812F", "https://mivb.openplanner.team/stops/5857F"], ["https://mivb.openplanner.team/stops/2312", "https://mivb.openplanner.team/stops/2364"], ["https://mivb.openplanner.team/stops/1135", "https://mivb.openplanner.team/stops/6117"], ["https://mivb.openplanner.team/stops/6811", "https://mivb.openplanner.team/stops/7690206"], ["https://mivb.openplanner.team/stops/1760", "https://mivb.openplanner.team/stops/0220333"], ["https://mivb.openplanner.team/stops/3325", "https://mivb.openplanner.team/stops/6369"], ["https://mivb.openplanner.team/stops/3201", "https://mivb.openplanner.team/stops/9726"], ["https://mivb.openplanner.team/stops/1283", "https://mivb.openplanner.team/stops/3179"], ["https://mivb.openplanner.team/stops/6471", "https://mivb.openplanner.team/stops/8291"], ["https://mivb.openplanner.team/stops/5761", "https://mivb.openplanner.team/stops/6461F"], ["https://mivb.openplanner.team/stops/2514", "https://mivb.openplanner.team/stops/4658"], ["https://mivb.openplanner.team/stops/2058", "https://mivb.openplanner.team/stops/2753"], ["https://mivb.openplanner.team/stops/2462", "https://mivb.openplanner.team/stops/5115F"], ["https://mivb.openplanner.team/stops/3904", "https://mivb.openplanner.team/stops/3906"], ["https://mivb.openplanner.team/stops/1135", "https://mivb.openplanner.team/stops/1159"], ["https://mivb.openplanner.team/stops/5655", "https://mivb.openplanner.team/stops/5656"], ["https://mivb.openplanner.team/stops/2257B", "https://mivb.openplanner.team/stops/6809"], ["https://mivb.openplanner.team/stops/1921", "https://mivb.openplanner.team/stops/2125"], ["https://mivb.openplanner.team/stops/2167", "https://mivb.openplanner.team/stops/2770"], ["https://mivb.openplanner.team/stops/4365", "https://mivb.openplanner.team/stops/6113F"], ["https://mivb.openplanner.team/stops/2122", "https://mivb.openplanner.team/stops/2134"], ["https://mivb.openplanner.team/stops/1233", "https://mivb.openplanner.team/stops/1729"], ["https://mivb.openplanner.team/stops/5727F", "https://mivb.openplanner.team/stops/9652"], ["https://mivb.openplanner.team/stops/1853", "https://mivb.openplanner.team/stops/5553"], ["https://mivb.openplanner.team/stops/9649", "https://mivb.openplanner.team/stops/9686"], ["https://mivb.openplanner.team/stops/1128", "https://mivb.openplanner.team/stops/1166"], ["https://mivb.openplanner.team/stops/1002", "https://mivb.openplanner.team/stops/1734"], ["https://mivb.openplanner.team/stops/3358", "https://mivb.openplanner.team/stops/0040518"], ["https://mivb.openplanner.team/stops/1015", "https://mivb.openplanner.team/stops/2604F"], ["https://mivb.openplanner.team/stops/1480", "https://mivb.openplanner.team/stops/1492"], ["https://mivb.openplanner.team/stops/1545", "https://mivb.openplanner.team/stops/1860"], ["https://mivb.openplanner.team/stops/1871B", "https://mivb.openplanner.team/stops/3953"], ["https://mivb.openplanner.team/stops/2327", "https://mivb.openplanner.team/stops/3014"], ["https://mivb.openplanner.team/stops/1125", "https://mivb.openplanner.team/stops/8331"], ["https://mivb.openplanner.team/stops/4004", "https://mivb.openplanner.team/stops/4059F"], ["https://mivb.openplanner.team/stops/5953", "https://mivb.openplanner.team/stops/5953F"], ["https://mivb.openplanner.team/stops/3466", "https://mivb.openplanner.team/stops/5278F"], ["https://mivb.openplanner.team/stops/5714", "https://mivb.openplanner.team/stops/5762"], ["https://mivb.openplanner.team/stops/3707", "https://mivb.openplanner.team/stops/6022B"], ["https://mivb.openplanner.team/stops/2515B", "https://mivb.openplanner.team/stops/6869G"], ["https://mivb.openplanner.team/stops/2915", "https://mivb.openplanner.team/stops/2976"], ["https://mivb.openplanner.team/stops/1539", "https://mivb.openplanner.team/stops/3900"], ["https://mivb.openplanner.team/stops/4956", "https://mivb.openplanner.team/stops/4957"], ["https://mivb.openplanner.team/stops/1500", "https://mivb.openplanner.team/stops/1859"], ["https://mivb.openplanner.team/stops/1328", "https://mivb.openplanner.team/stops/1744"], ["https://mivb.openplanner.team/stops/3551", "https://mivb.openplanner.team/stops/3553"], ["https://mivb.openplanner.team/stops/0020516", "https://mivb.openplanner.team/stops/8031"], ["https://mivb.openplanner.team/stops/5170", "https://mivb.openplanner.team/stops/9802"], ["https://mivb.openplanner.team/stops/6357", "https://mivb.openplanner.team/stops/0410346"], ["https://mivb.openplanner.team/stops/2709F", "https://mivb.openplanner.team/stops/4075"], ["https://mivb.openplanner.team/stops/6109", "https://mivb.openplanner.team/stops/6162"], ["https://mivb.openplanner.team/stops/8341", "https://mivb.openplanner.team/stops/8342"], ["https://mivb.openplanner.team/stops/1565", "https://mivb.openplanner.team/stops/6214"], ["https://mivb.openplanner.team/stops/1236F", "https://mivb.openplanner.team/stops/1308G"], ["https://mivb.openplanner.team/stops/1080", "https://mivb.openplanner.team/stops/1682F"], ["https://mivb.openplanner.team/stops/1484", "https://mivb.openplanner.team/stops/1487"], ["https://mivb.openplanner.team/stops/1111", "https://mivb.openplanner.team/stops/2509"], ["https://mivb.openplanner.team/stops/3131", "https://mivb.openplanner.team/stops/6158"], ["https://mivb.openplanner.team/stops/3130", "https://mivb.openplanner.team/stops/3204"], ["https://mivb.openplanner.team/stops/1140", "https://mivb.openplanner.team/stops/0090123"], ["https://mivb.openplanner.team/stops/1385", "https://mivb.openplanner.team/stops/0120226"], ["https://mivb.openplanner.team/stops/2137", "https://mivb.openplanner.team/stops/2142"], ["https://mivb.openplanner.team/stops/1271B", "https://mivb.openplanner.team/stops/1416"], ["https://mivb.openplanner.team/stops/1172", "https://mivb.openplanner.team/stops/0470659"], ["https://mivb.openplanner.team/stops/3425", "https://mivb.openplanner.team/stops/5275F"], ["https://mivb.openplanner.team/stops/5303", "https://mivb.openplanner.team/stops/5805"], ["https://mivb.openplanner.team/stops/2815B", "https://mivb.openplanner.team/stops/5772"], ["https://mivb.openplanner.team/stops/6062", "https://mivb.openplanner.team/stops/9064"], ["https://mivb.openplanner.team/stops/1320", "https://mivb.openplanner.team/stops/1321"], ["https://mivb.openplanner.team/stops/1135", "https://mivb.openplanner.team/stops/0070421"], ["https://mivb.openplanner.team/stops/2286G", "https://mivb.openplanner.team/stops/9996"], ["https://mivb.openplanner.team/stops/9657", "https://mivb.openplanner.team/stops/9677"], ["https://mivb.openplanner.team/stops/3003", "https://mivb.openplanner.team/stops/3063"], ["https://mivb.openplanner.team/stops/6019", "https://mivb.openplanner.team/stops/6210"], ["https://mivb.openplanner.team/stops/3159", "https://mivb.openplanner.team/stops/0060120"], ["https://mivb.openplanner.team/stops/9755", "https://mivb.openplanner.team/stops/9756"], ["https://mivb.openplanner.team/stops/5271F", "https://mivb.openplanner.team/stops/5287"], ["https://mivb.openplanner.team/stops/0601162", "https://mivb.openplanner.team/stops/3320B"], ["https://mivb.openplanner.team/stops/2279", "https://mivb.openplanner.team/stops/4324"], ["https://mivb.openplanner.team/stops/1976", "https://mivb.openplanner.team/stops/5466"], ["https://mivb.openplanner.team/stops/1354", "https://mivb.openplanner.team/stops/1986"], ["https://mivb.openplanner.team/stops/5006", "https://mivb.openplanner.team/stops/5079"], ["https://mivb.openplanner.team/stops/6359", "https://mivb.openplanner.team/stops/9064"], ["https://mivb.openplanner.team/stops/5159", "https://mivb.openplanner.team/stops/5718"], ["https://mivb.openplanner.team/stops/1114B", "https://mivb.openplanner.team/stops/1179"], ["https://mivb.openplanner.team/stops/1677F", "https://mivb.openplanner.team/stops/1678F"], ["https://mivb.openplanner.team/stops/0526", "https://mivb.openplanner.team/stops/5714"], ["https://mivb.openplanner.team/stops/1384", "https://mivb.openplanner.team/stops/1554"], ["https://mivb.openplanner.team/stops/2997", "https://mivb.openplanner.team/stops/3419"], ["https://mivb.openplanner.team/stops/4363", "https://mivb.openplanner.team/stops/5261"], ["https://mivb.openplanner.team/stops/5735", "https://mivb.openplanner.team/stops/6014"], ["https://mivb.openplanner.team/stops/1652", "https://mivb.openplanner.team/stops/5053G"], ["https://mivb.openplanner.team/stops/1316", "https://mivb.openplanner.team/stops/9311"], ["https://mivb.openplanner.team/stops/8442", "https://mivb.openplanner.team/stops/0440249"], ["https://mivb.openplanner.team/stops/8741", "https://mivb.openplanner.team/stops/8742"], ["https://mivb.openplanner.team/stops/2080", "https://mivb.openplanner.team/stops/4358"], ["https://mivb.openplanner.team/stops/5017", "https://mivb.openplanner.team/stops/5067"], ["https://mivb.openplanner.team/stops/2975", "https://mivb.openplanner.team/stops/5306G"], ["https://mivb.openplanner.team/stops/5704F", "https://mivb.openplanner.team/stops/5772"], ["https://mivb.openplanner.team/stops/1599", "https://mivb.openplanner.team/stops/1606"], ["https://mivb.openplanner.team/stops/5219F", "https://mivb.openplanner.team/stops/9986F"], ["https://mivb.openplanner.team/stops/3899", "https://mivb.openplanner.team/stops/3909"], ["https://mivb.openplanner.team/stops/2900F", "https://mivb.openplanner.team/stops/3175B"], ["https://mivb.openplanner.team/stops/6434F", "https://mivb.openplanner.team/stops/8421"], ["https://mivb.openplanner.team/stops/1731", "https://mivb.openplanner.team/stops/5269F"], ["https://mivb.openplanner.team/stops/1645F", "https://mivb.openplanner.team/stops/1646F"], ["https://mivb.openplanner.team/stops/2576", "https://mivb.openplanner.team/stops/6552"], ["https://mivb.openplanner.team/stops/4349", "https://mivb.openplanner.team/stops/5452"], ["https://mivb.openplanner.team/stops/2220F", "https://mivb.openplanner.team/stops/3709"], ["https://mivb.openplanner.team/stops/8082", "https://mivb.openplanner.team/stops/0080122"], ["https://mivb.openplanner.team/stops/1150", "https://mivb.openplanner.team/stops/1521"], ["https://mivb.openplanner.team/stops/2728", "https://mivb.openplanner.team/stops/5659"], ["https://mivb.openplanner.team/stops/2710G", "https://mivb.openplanner.team/stops/5815"], ["https://mivb.openplanner.team/stops/1807", "https://mivb.openplanner.team/stops/1868"], ["https://mivb.openplanner.team/stops/3513", "https://mivb.openplanner.team/stops/5461F"], ["https://mivb.openplanner.team/stops/5758F", "https://mivb.openplanner.team/stops/6461F"], ["https://mivb.openplanner.team/stops/2912", "https://mivb.openplanner.team/stops/3411"], ["https://mivb.openplanner.team/stops/6702", "https://mivb.openplanner.team/stops/6754"], ["https://mivb.openplanner.team/stops/2899", "https://mivb.openplanner.team/stops/9777"], ["https://mivb.openplanner.team/stops/1383", "https://mivb.openplanner.team/stops/1384"], ["https://mivb.openplanner.team/stops/2306", "https://mivb.openplanner.team/stops/2452"], ["https://mivb.openplanner.team/stops/2010", "https://mivb.openplanner.team/stops/5031F"], ["https://mivb.openplanner.team/stops/2922", "https://mivb.openplanner.team/stops/0050419"], ["https://mivb.openplanner.team/stops/7820153", "https://mivb.openplanner.team/stops/7820353"], ["https://mivb.openplanner.team/stops/5470", "https://mivb.openplanner.team/stops/7529"], ["https://mivb.openplanner.team/stops/2503", "https://mivb.openplanner.team/stops/2576"], ["https://mivb.openplanner.team/stops/2261", "https://mivb.openplanner.team/stops/0360239"], ["https://mivb.openplanner.team/stops/5072", "https://mivb.openplanner.team/stops/5089"], ["https://mivb.openplanner.team/stops/1870", "https://mivb.openplanner.team/stops/6009"], ["https://mivb.openplanner.team/stops/1204", "https://mivb.openplanner.team/stops/3713"], ["https://mivb.openplanner.team/stops/4058F", "https://mivb.openplanner.team/stops/4062"], ["https://mivb.openplanner.team/stops/0506", "https://mivb.openplanner.team/stops/2838"], ["https://mivb.openplanner.team/stops/6604F", "https://mivb.openplanner.team/stops/0280213"], ["https://mivb.openplanner.team/stops/9025", "https://mivb.openplanner.team/stops/9026"], ["https://mivb.openplanner.team/stops/4287", "https://mivb.openplanner.team/stops/4289"], ["https://mivb.openplanner.team/stops/5284F", "https://mivb.openplanner.team/stops/6468"], ["https://mivb.openplanner.team/stops/8431", "https://mivb.openplanner.team/stops/0430148"], ["https://mivb.openplanner.team/stops/3515", "https://mivb.openplanner.team/stops/4362"], ["https://mivb.openplanner.team/stops/1169", "https://mivb.openplanner.team/stops/2418"], ["https://mivb.openplanner.team/stops/1043", "https://mivb.openplanner.team/stops/2043"], ["https://mivb.openplanner.team/stops/3285", "https://mivb.openplanner.team/stops/9311"], ["https://mivb.openplanner.team/stops/0529", "https://mivb.openplanner.team/stops/1083"], ["https://mivb.openplanner.team/stops/2926", "https://mivb.openplanner.team/stops/3449"], ["https://mivb.openplanner.team/stops/2203", "https://mivb.openplanner.team/stops/6123"], ["https://mivb.openplanner.team/stops/3705", "https://mivb.openplanner.team/stops/5279F"], ["https://mivb.openplanner.team/stops/5711F", "https://mivb.openplanner.team/stops/5742B"], ["https://mivb.openplanner.team/stops/4292", "https://mivb.openplanner.team/stops/5421"], ["https://mivb.openplanner.team/stops/8381", "https://mivb.openplanner.team/stops/8732"], ["https://mivb.openplanner.team/stops/1971", "https://mivb.openplanner.team/stops/5255F"], ["https://mivb.openplanner.team/stops/0511", "https://mivb.openplanner.team/stops/0430248"], ["https://mivb.openplanner.team/stops/5350G", "https://mivb.openplanner.team/stops/7998"], ["https://mivb.openplanner.team/stops/2986B", "https://mivb.openplanner.team/stops/2988"], ["https://mivb.openplanner.team/stops/0600262", "https://mivb.openplanner.team/stops/1781"], ["https://mivb.openplanner.team/stops/4287", "https://mivb.openplanner.team/stops/4319"], ["https://mivb.openplanner.team/stops/5022", "https://mivb.openplanner.team/stops/5062"], ["https://mivb.openplanner.team/stops/3122", "https://mivb.openplanner.team/stops/6119F"], ["https://mivb.openplanner.team/stops/6459", "https://mivb.openplanner.team/stops/6459F"], ["https://mivb.openplanner.team/stops/2331F", "https://mivb.openplanner.team/stops/2334F"], ["https://mivb.openplanner.team/stops/4323", "https://mivb.openplanner.team/stops/5286"], ["https://mivb.openplanner.team/stops/5067", "https://mivb.openplanner.team/stops/5470"], ["https://mivb.openplanner.team/stops/4295", "https://mivb.openplanner.team/stops/4296"], ["https://mivb.openplanner.team/stops/3403", "https://mivb.openplanner.team/stops/3763"], ["https://mivb.openplanner.team/stops/1152", "https://mivb.openplanner.team/stops/1560"], ["https://mivb.openplanner.team/stops/3625B", "https://mivb.openplanner.team/stops/6162"], ["https://mivb.openplanner.team/stops/1410", "https://mivb.openplanner.team/stops/1529"], ["https://mivb.openplanner.team/stops/5916", "https://mivb.openplanner.team/stops/5916F"], ["https://mivb.openplanner.team/stops/0631", "https://mivb.openplanner.team/stops/0636"], ["https://mivb.openplanner.team/stops/1901", "https://mivb.openplanner.team/stops/47"], ["https://mivb.openplanner.team/stops/2104", "https://mivb.openplanner.team/stops/2116B"], ["https://mivb.openplanner.team/stops/1387", "https://mivb.openplanner.team/stops/5522"], ["https://mivb.openplanner.team/stops/3407", "https://mivb.openplanner.team/stops/7246"], ["https://mivb.openplanner.team/stops/9701", "https://mivb.openplanner.team/stops/9727"], ["https://mivb.openplanner.team/stops/2122", "https://mivb.openplanner.team/stops/5219F"], ["https://mivb.openplanner.team/stops/2665", "https://mivb.openplanner.team/stops/2939B"], ["https://mivb.openplanner.team/stops/3549", "https://mivb.openplanner.team/stops/4408"], ["https://mivb.openplanner.team/stops/2823B", "https://mivb.openplanner.team/stops/2854"], ["https://mivb.openplanner.team/stops/3008", "https://mivb.openplanner.team/stops/3058"], ["https://mivb.openplanner.team/stops/4297", "https://mivb.openplanner.team/stops/0240235"], ["https://mivb.openplanner.team/stops/1014F", "https://mivb.openplanner.team/stops/6804F"], ["https://mivb.openplanner.team/stops/2860", "https://mivb.openplanner.team/stops/6100"], ["https://mivb.openplanner.team/stops/2717", "https://mivb.openplanner.team/stops/2721"], ["https://mivb.openplanner.team/stops/3461", "https://mivb.openplanner.team/stops/4505"], ["https://mivb.openplanner.team/stops/1129", "https://mivb.openplanner.team/stops/6354B"], ["https://mivb.openplanner.team/stops/1349", "https://mivb.openplanner.team/stops/1351"], ["https://mivb.openplanner.team/stops/1627", "https://mivb.openplanner.team/stops/5528F"], ["https://mivb.openplanner.team/stops/4212B", "https://mivb.openplanner.team/stops/4254B"], ["https://mivb.openplanner.team/stops/3481", "https://mivb.openplanner.team/stops/5258"], ["https://mivb.openplanner.team/stops/5814", "https://mivb.openplanner.team/stops/5856F"], ["https://mivb.openplanner.team/stops/6472", "https://mivb.openplanner.team/stops/0200131"], ["https://mivb.openplanner.team/stops/2221", "https://mivb.openplanner.team/stops/8021"], ["https://mivb.openplanner.team/stops/4002B", "https://mivb.openplanner.team/stops/4058F"], ["https://mivb.openplanner.team/stops/9728", "https://mivb.openplanner.team/stops/9729"], ["https://mivb.openplanner.team/stops/3909", "https://mivb.openplanner.team/stops/3910"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/2118"], ["https://mivb.openplanner.team/stops/0090223", "https://mivb.openplanner.team/stops/0090323"], ["https://mivb.openplanner.team/stops/2932", "https://mivb.openplanner.team/stops/3625B"], ["https://mivb.openplanner.team/stops/3172", "https://mivb.openplanner.team/stops/5868"], ["https://mivb.openplanner.team/stops/2220", "https://mivb.openplanner.team/stops/2257G"], ["https://mivb.openplanner.team/stops/5562", "https://mivb.openplanner.team/stops/0090323"], ["https://mivb.openplanner.team/stops/1261", "https://mivb.openplanner.team/stops/1486B"], ["https://mivb.openplanner.team/stops/3717", "https://mivb.openplanner.team/stops/3756"], ["https://mivb.openplanner.team/stops/1625", "https://mivb.openplanner.team/stops/1659"], ["https://mivb.openplanner.team/stops/3167", "https://mivb.openplanner.team/stops/6302"], ["https://mivb.openplanner.team/stops/2867", "https://mivb.openplanner.team/stops/4250"], ["https://mivb.openplanner.team/stops/1156", "https://mivb.openplanner.team/stops/8071"], ["https://mivb.openplanner.team/stops/1901", "https://mivb.openplanner.team/stops/0430448"], ["https://mivb.openplanner.team/stops/9784B", "https://mivb.openplanner.team/stops/9786"], ["https://mivb.openplanner.team/stops/6800F", "https://mivb.openplanner.team/stops/6803F"], ["https://mivb.openplanner.team/stops/1239", "https://mivb.openplanner.team/stops/2668"], ["https://mivb.openplanner.team/stops/1638B", "https://mivb.openplanner.team/stops/2041"], ["https://mivb.openplanner.team/stops/1404", "https://mivb.openplanner.team/stops/3707"], ["https://mivb.openplanner.team/stops/1825", "https://mivb.openplanner.team/stops/5657"], ["https://mivb.openplanner.team/stops/3201", "https://mivb.openplanner.team/stops/3280"], ["https://mivb.openplanner.team/stops/2120", "https://mivb.openplanner.team/stops/2718"], ["https://mivb.openplanner.team/stops/4853", "https://mivb.openplanner.team/stops/5056"], ["https://mivb.openplanner.team/stops/4131B", "https://mivb.openplanner.team/stops/4132B"], ["https://mivb.openplanner.team/stops/0470751", "https://mivb.openplanner.team/stops/0470659"], ["https://mivb.openplanner.team/stops/3354", "https://mivb.openplanner.team/stops/0410246"], ["https://mivb.openplanner.team/stops/2306", "https://mivb.openplanner.team/stops/2952B"], ["https://mivb.openplanner.team/stops/4303", "https://mivb.openplanner.team/stops/4366"], ["https://mivb.openplanner.team/stops/8161", "https://mivb.openplanner.team/stops/8162"], ["https://mivb.openplanner.team/stops/1014F", "https://mivb.openplanner.team/stops/2573B"], ["https://mivb.openplanner.team/stops/3898", "https://mivb.openplanner.team/stops/4505"], ["https://mivb.openplanner.team/stops/1375", "https://mivb.openplanner.team/stops/1625"], ["https://mivb.openplanner.team/stops/2809", "https://mivb.openplanner.team/stops/7790456"], ["https://mivb.openplanner.team/stops/9851", "https://mivb.openplanner.team/stops/9876"], ["https://mivb.openplanner.team/stops/1142", "https://mivb.openplanner.team/stops/4273F"], ["https://mivb.openplanner.team/stops/1096", "https://mivb.openplanner.team/stops/4054G"], ["https://mivb.openplanner.team/stops/6190", "https://mivb.openplanner.team/stops/9291"], ["https://mivb.openplanner.team/stops/3468", "https://mivb.openplanner.team/stops/5274F"], ["https://mivb.openplanner.team/stops/3236", "https://mivb.openplanner.team/stops/4005F"], ["https://mivb.openplanner.team/stops/1815", "https://mivb.openplanner.team/stops/1816"], ["https://mivb.openplanner.team/stops/1809", "https://mivb.openplanner.team/stops/8211"], ["https://mivb.openplanner.team/stops/6792F", "https://mivb.openplanner.team/stops/6799F"], ["https://mivb.openplanner.team/stops/5159", "https://mivb.openplanner.team/stops/5159F"], ["https://mivb.openplanner.team/stops/1942", "https://mivb.openplanner.team/stops/5025"], ["https://mivb.openplanner.team/stops/3099", "https://mivb.openplanner.team/stops/5320"], ["https://mivb.openplanner.team/stops/6449", "https://mivb.openplanner.team/stops/6451"], ["https://mivb.openplanner.team/stops/8803", "https://mivb.openplanner.team/stops/55"], ["https://mivb.openplanner.team/stops/7750160", "https://mivb.openplanner.team/stops/7750260"], ["https://mivb.openplanner.team/stops/5039", "https://mivb.openplanner.team/stops/5041B"], ["https://mivb.openplanner.team/stops/6651", "https://mivb.openplanner.team/stops/0440449"], ["https://mivb.openplanner.team/stops/2512", "https://mivb.openplanner.team/stops/4054G"], ["https://mivb.openplanner.team/stops/2296", "https://mivb.openplanner.team/stops/2301"], ["https://mivb.openplanner.team/stops/2404", "https://mivb.openplanner.team/stops/2462"], ["https://mivb.openplanner.team/stops/1943", "https://mivb.openplanner.team/stops/5219F"], ["https://mivb.openplanner.team/stops/2225", "https://mivb.openplanner.team/stops/2256F"], ["https://mivb.openplanner.team/stops/1349", "https://mivb.openplanner.team/stops/2304"], ["https://mivb.openplanner.team/stops/3761", "https://mivb.openplanner.team/stops/3762"], ["https://mivb.openplanner.team/stops/2457", "https://mivb.openplanner.team/stops/5849"], ["https://mivb.openplanner.team/stops/2309C", "https://mivb.openplanner.team/stops/3058"], ["https://mivb.openplanner.team/stops/8371", "https://mivb.openplanner.team/stops/0370138"], ["https://mivb.openplanner.team/stops/1936", "https://mivb.openplanner.team/stops/1953"], ["https://mivb.openplanner.team/stops/2660", "https://mivb.openplanner.team/stops/5729"], ["https://mivb.openplanner.team/stops/2309C", "https://mivb.openplanner.team/stops/2311"], ["https://mivb.openplanner.team/stops/1710", "https://mivb.openplanner.team/stops/1748"], ["https://mivb.openplanner.team/stops/0906", "https://mivb.openplanner.team/stops/0900268"], ["https://mivb.openplanner.team/stops/2920", "https://mivb.openplanner.team/stops/3219"], ["https://mivb.openplanner.team/stops/5060", "https://mivb.openplanner.team/stops/6424F"], ["https://mivb.openplanner.team/stops/2519", "https://mivb.openplanner.team/stops/5166"], ["https://mivb.openplanner.team/stops/3132", "https://mivb.openplanner.team/stops/5298F"], ["https://mivb.openplanner.team/stops/2028", "https://mivb.openplanner.team/stops/0120426"], ["https://mivb.openplanner.team/stops/1128", "https://mivb.openplanner.team/stops/6312"], ["https://mivb.openplanner.team/stops/1738", "https://mivb.openplanner.team/stops/5028"], ["https://mivb.openplanner.team/stops/2721", "https://mivb.openplanner.team/stops/5458"], ["https://mivb.openplanner.team/stops/2498", "https://mivb.openplanner.team/stops/6869G"], ["https://mivb.openplanner.team/stops/2545", "https://mivb.openplanner.team/stops/4274"], ["https://mivb.openplanner.team/stops/1587", "https://mivb.openplanner.team/stops/5530"], ["https://mivb.openplanner.team/stops/0806", "https://mivb.openplanner.team/stops/8081"], ["https://mivb.openplanner.team/stops/1500", "https://mivb.openplanner.team/stops/1816"], ["https://mivb.openplanner.team/stops/3117", "https://mivb.openplanner.team/stops/3159"], ["https://mivb.openplanner.team/stops/1602", "https://mivb.openplanner.team/stops/1617"], ["https://mivb.openplanner.team/stops/2859", "https://mivb.openplanner.team/stops/5403"], ["https://mivb.openplanner.team/stops/1512", "https://mivb.openplanner.team/stops/9296"], ["https://mivb.openplanner.team/stops/2134", "https://mivb.openplanner.team/stops/6408"], ["https://mivb.openplanner.team/stops/1745", "https://mivb.openplanner.team/stops/4223"], ["https://mivb.openplanner.team/stops/4501F", "https://mivb.openplanner.team/stops/4506"], ["https://mivb.openplanner.team/stops/1601", "https://mivb.openplanner.team/stops/5532"], ["https://mivb.openplanner.team/stops/2859", "https://mivb.openplanner.team/stops/6502"], ["https://mivb.openplanner.team/stops/1916", "https://mivb.openplanner.team/stops/5211"], ["https://mivb.openplanner.team/stops/1567", "https://mivb.openplanner.team/stops/1568"], ["https://mivb.openplanner.team/stops/3518B", "https://mivb.openplanner.team/stops/0310144"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/2026"], ["https://mivb.openplanner.team/stops/6420G", "https://mivb.openplanner.team/stops/6421F"], ["https://mivb.openplanner.team/stops/8341", "https://mivb.openplanner.team/stops/0340141"], ["https://mivb.openplanner.team/stops/8773", "https://mivb.openplanner.team/stops/7780157"], ["https://mivb.openplanner.team/stops/5475", "https://mivb.openplanner.team/stops/7527"], ["https://mivb.openplanner.team/stops/6811", "https://mivb.openplanner.team/stops/7690106"], ["https://mivb.openplanner.team/stops/0531", "https://mivb.openplanner.team/stops/0520161"], ["https://mivb.openplanner.team/stops/1110", "https://mivb.openplanner.team/stops/5822F"], ["https://mivb.openplanner.team/stops/1015", "https://mivb.openplanner.team/stops/5915"], ["https://mivb.openplanner.team/stops/1711", "https://mivb.openplanner.team/stops/1755"], ["https://mivb.openplanner.team/stops/3201", "https://mivb.openplanner.team/stops/9727"], ["https://mivb.openplanner.team/stops/1304", "https://mivb.openplanner.team/stops/5172F"], ["https://mivb.openplanner.team/stops/9627", "https://mivb.openplanner.team/stops/9754B"], ["https://mivb.openplanner.team/stops/5303", "https://mivb.openplanner.team/stops/7484"], ["https://mivb.openplanner.team/stops/1158", "https://mivb.openplanner.team/stops/1873"], ["https://mivb.openplanner.team/stops/1546", "https://mivb.openplanner.team/stops/5559"], ["https://mivb.openplanner.team/stops/3284", "https://mivb.openplanner.team/stops/3920"], ["https://mivb.openplanner.team/stops/2861", "https://mivb.openplanner.team/stops/4998"], ["https://mivb.openplanner.team/stops/2462", "https://mivb.openplanner.team/stops/5115"], ["https://mivb.openplanner.team/stops/3109", "https://mivb.openplanner.team/stops/3412"], ["https://mivb.openplanner.team/stops/0900168", "https://mivb.openplanner.team/stops/1809"], ["https://mivb.openplanner.team/stops/3904", "https://mivb.openplanner.team/stops/3908"], ["https://mivb.openplanner.team/stops/0724", "https://mivb.openplanner.team/stops/2336G"], ["https://mivb.openplanner.team/stops/0806", "https://mivb.openplanner.team/stops/2283"], ["https://mivb.openplanner.team/stops/1921", "https://mivb.openplanner.team/stops/2131"], ["https://mivb.openplanner.team/stops/2226", "https://mivb.openplanner.team/stops/5297B"], ["https://mivb.openplanner.team/stops/1289", "https://mivb.openplanner.team/stops/5400"], ["https://mivb.openplanner.team/stops/1868", "https://mivb.openplanner.team/stops/6472"], ["https://mivb.openplanner.team/stops/2244F", "https://mivb.openplanner.team/stops/4550"], ["https://mivb.openplanner.team/stops/5721G", "https://mivb.openplanner.team/stops/5722F"], ["https://mivb.openplanner.team/stops/1570", "https://mivb.openplanner.team/stops/8042"], ["https://mivb.openplanner.team/stops/5211", "https://mivb.openplanner.team/stops/5254"], ["https://mivb.openplanner.team/stops/5077", "https://mivb.openplanner.team/stops/8773"], ["https://mivb.openplanner.team/stops/1853", "https://mivb.openplanner.team/stops/5554"], ["https://mivb.openplanner.team/stops/3358", "https://mivb.openplanner.team/stops/0410146"], ["https://mivb.openplanner.team/stops/4112", "https://mivb.openplanner.team/stops/4163"], ["https://mivb.openplanner.team/stops/1090", "https://mivb.openplanner.team/stops/3063"], ["https://mivb.openplanner.team/stops/6369", "https://mivb.openplanner.team/stops/6412F"], ["https://mivb.openplanner.team/stops/3551", "https://mivb.openplanner.team/stops/0240335"], ["https://mivb.openplanner.team/stops/2136", "https://mivb.openplanner.team/stops/2142"], ["https://mivb.openplanner.team/stops/2074", "https://mivb.openplanner.team/stops/5451F"], ["https://mivb.openplanner.team/stops/6482", "https://mivb.openplanner.team/stops/53"], ["https://mivb.openplanner.team/stops/2584", "https://mivb.openplanner.team/stops/5079"], ["https://mivb.openplanner.team/stops/4022", "https://mivb.openplanner.team/stops/4053G"], ["https://mivb.openplanner.team/stops/5531", "https://mivb.openplanner.team/stops/0080222"], ["https://mivb.openplanner.team/stops/5403", "https://mivb.openplanner.team/stops/5471"], ["https://mivb.openplanner.team/stops/1490", "https://mivb.openplanner.team/stops/7"], ["https://mivb.openplanner.team/stops/8042", "https://mivb.openplanner.team/stops/0050419"], ["https://mivb.openplanner.team/stops/8201", "https://mivb.openplanner.team/stops/0200131"], ["https://mivb.openplanner.team/stops/2245", "https://mivb.openplanner.team/stops/4323"], ["https://mivb.openplanner.team/stops/1237", "https://mivb.openplanner.team/stops/6706"], ["https://mivb.openplanner.team/stops/2931", "https://mivb.openplanner.team/stops/6425F"], ["https://mivb.openplanner.team/stops/6097B", "https://mivb.openplanner.team/stops/6122"], ["https://mivb.openplanner.team/stops/1498", "https://mivb.openplanner.team/stops/3812"], ["https://mivb.openplanner.team/stops/7720103", "https://mivb.openplanner.team/stops/7720203"], ["https://mivb.openplanner.team/stops/4956", "https://mivb.openplanner.team/stops/7800455"], ["https://mivb.openplanner.team/stops/1169", "https://mivb.openplanner.team/stops/7621"], ["https://mivb.openplanner.team/stops/6444", "https://mivb.openplanner.team/stops/6445"], ["https://mivb.openplanner.team/stops/0724", "https://mivb.openplanner.team/stops/8331"], ["https://mivb.openplanner.team/stops/4110", "https://mivb.openplanner.team/stops/4153"], ["https://mivb.openplanner.team/stops/1613", "https://mivb.openplanner.team/stops/5515"], ["https://mivb.openplanner.team/stops/4157", "https://mivb.openplanner.team/stops/5172F"], ["https://mivb.openplanner.team/stops/2604", "https://mivb.openplanner.team/stops/2939B"], ["https://mivb.openplanner.team/stops/1951", "https://mivb.openplanner.team/stops/2355"], ["https://mivb.openplanner.team/stops/3898", "https://mivb.openplanner.team/stops/3961"], ["https://mivb.openplanner.team/stops/2932", "https://mivb.openplanner.team/stops/5020"], ["https://mivb.openplanner.team/stops/1545", "https://mivb.openplanner.team/stops/5560"], ["https://mivb.openplanner.team/stops/1805", "https://mivb.openplanner.team/stops/1806"], ["https://mivb.openplanner.team/stops/1423", "https://mivb.openplanner.team/stops/1451"], ["https://mivb.openplanner.team/stops/1840", "https://mivb.openplanner.team/stops/5551"], ["https://mivb.openplanner.team/stops/3905", "https://mivb.openplanner.team/stops/4500"], ["https://mivb.openplanner.team/stops/3129", "https://mivb.openplanner.team/stops/3179"], ["https://mivb.openplanner.team/stops/1063", "https://mivb.openplanner.team/stops/1781"], ["https://mivb.openplanner.team/stops/1522", "https://mivb.openplanner.team/stops/3909"], ["https://mivb.openplanner.team/stops/1236F", "https://mivb.openplanner.team/stops/1310"], ["https://mivb.openplanner.team/stops/1535", "https://mivb.openplanner.team/stops/3402"], ["https://mivb.openplanner.team/stops/6106", "https://mivb.openplanner.team/stops/6166"], ["https://mivb.openplanner.team/stops/6862F", "https://mivb.openplanner.team/stops/0350640"], ["https://mivb.openplanner.team/stops/5520F", "https://mivb.openplanner.team/stops/5528F"], ["https://mivb.openplanner.team/stops/3553", "https://mivb.openplanner.team/stops/0240335"], ["https://mivb.openplanner.team/stops/0440549", "https://mivb.openplanner.team/stops/0440649"], ["https://mivb.openplanner.team/stops/2352", "https://mivb.openplanner.team/stops/9609"], ["https://mivb.openplanner.team/stops/2317", "https://mivb.openplanner.team/stops/2358"], ["https://mivb.openplanner.team/stops/7520", "https://mivb.openplanner.team/stops/7544"], ["https://mivb.openplanner.team/stops/1382", "https://mivb.openplanner.team/stops/1383"], ["https://mivb.openplanner.team/stops/2544", "https://mivb.openplanner.team/stops/2544F"], ["https://mivb.openplanner.team/stops/4407", "https://mivb.openplanner.team/stops/0250136"], ["https://mivb.openplanner.team/stops/5303", "https://mivb.openplanner.team/stops/5804G"], ["https://mivb.openplanner.team/stops/1678F", "https://mivb.openplanner.team/stops/1679F"], ["https://mivb.openplanner.team/stops/9707", "https://mivb.openplanner.team/stops/9788"], ["https://mivb.openplanner.team/stops/7700205", "https://mivb.openplanner.team/stops/8702"], ["https://mivb.openplanner.team/stops/8012", "https://mivb.openplanner.team/stops/0010315"], ["https://mivb.openplanner.team/stops/2962", "https://mivb.openplanner.team/stops/3506"], ["https://mivb.openplanner.team/stops/2811", "https://mivb.openplanner.team/stops/2860"], ["https://mivb.openplanner.team/stops/2145", "https://mivb.openplanner.team/stops/5454F"], ["https://mivb.openplanner.team/stops/2970", "https://mivb.openplanner.team/stops/3219"], ["https://mivb.openplanner.team/stops/2548F", "https://mivb.openplanner.team/stops/2672"], ["https://mivb.openplanner.team/stops/1154", "https://mivb.openplanner.team/stops/2285G"], ["https://mivb.openplanner.team/stops/1227", "https://mivb.openplanner.team/stops/6601"], ["https://mivb.openplanner.team/stops/6356", "https://mivb.openplanner.team/stops/8031"], ["https://mivb.openplanner.team/stops/9755", "https://mivb.openplanner.team/stops/9778"], ["https://mivb.openplanner.team/stops/1976", "https://mivb.openplanner.team/stops/5467"], ["https://mivb.openplanner.team/stops/2411B", "https://mivb.openplanner.team/stops/2937B"], ["https://mivb.openplanner.team/stops/3557", "https://mivb.openplanner.team/stops/4369"], ["https://mivb.openplanner.team/stops/1875", "https://mivb.openplanner.team/stops/0100424"], ["https://mivb.openplanner.team/stops/5006", "https://mivb.openplanner.team/stops/5078F"], ["https://mivb.openplanner.team/stops/4340", "https://mivb.openplanner.team/stops/4345"], ["https://mivb.openplanner.team/stops/3162", "https://mivb.openplanner.team/stops/6016"], ["https://mivb.openplanner.team/stops/2899", "https://mivb.openplanner.team/stops/2986B"], ["https://mivb.openplanner.team/stops/1499", "https://mivb.openplanner.team/stops/3854B"], ["https://mivb.openplanner.team/stops/1114B", "https://mivb.openplanner.team/stops/1180"], ["https://mivb.openplanner.team/stops/3520", "https://mivb.openplanner.team/stops/3521"], ["https://mivb.openplanner.team/stops/9552", "https://mivb.openplanner.team/stops/9556"], ["https://mivb.openplanner.team/stops/1412", "https://mivb.openplanner.team/stops/1454"], ["https://mivb.openplanner.team/stops/4342", "https://mivb.openplanner.team/stops/5421"], ["https://mivb.openplanner.team/stops/1807", "https://mivb.openplanner.team/stops/5312"], ["https://mivb.openplanner.team/stops/5267", "https://mivb.openplanner.team/stops/5312"], ["https://mivb.openplanner.team/stops/4958F", "https://mivb.openplanner.team/stops/7800455"], ["https://mivb.openplanner.team/stops/1642F", "https://mivb.openplanner.team/stops/6304"], ["https://mivb.openplanner.team/stops/1601", "https://mivb.openplanner.team/stops/1661"], ["https://mivb.openplanner.team/stops/5219F", "https://mivb.openplanner.team/stops/5221F"], ["https://mivb.openplanner.team/stops/2346", "https://mivb.openplanner.team/stops/3409"], ["https://mivb.openplanner.team/stops/4311", "https://mivb.openplanner.team/stops/5419"], ["https://mivb.openplanner.team/stops/2919", "https://mivb.openplanner.team/stops/6191"], ["https://mivb.openplanner.team/stops/0610363", "https://mivb.openplanner.team/stops/1168"], ["https://mivb.openplanner.team/stops/4318", "https://mivb.openplanner.team/stops/4340"], ["https://mivb.openplanner.team/stops/2470", "https://mivb.openplanner.team/stops/8331"], ["https://mivb.openplanner.team/stops/2046", "https://mivb.openplanner.team/stops/37"], ["https://mivb.openplanner.team/stops/2895", "https://mivb.openplanner.team/stops/2988"], ["https://mivb.openplanner.team/stops/1741", "https://mivb.openplanner.team/stops/5054F"], ["https://mivb.openplanner.team/stops/0610463", "https://mivb.openplanner.team/stops/1855"], ["https://mivb.openplanner.team/stops/3480", "https://mivb.openplanner.team/stops/3481"], ["https://mivb.openplanner.team/stops/2290B", "https://mivb.openplanner.team/stops/2291B"], ["https://mivb.openplanner.team/stops/5704F", "https://mivb.openplanner.team/stops/5773"], ["https://mivb.openplanner.team/stops/0100124", "https://mivb.openplanner.team/stops/23"], ["https://mivb.openplanner.team/stops/3362", "https://mivb.openplanner.team/stops/3424"], ["https://mivb.openplanner.team/stops/1132", "https://mivb.openplanner.team/stops/1160"], ["https://mivb.openplanner.team/stops/1821", "https://mivb.openplanner.team/stops/1831"], ["https://mivb.openplanner.team/stops/3899", "https://mivb.openplanner.team/stops/3910"], ["https://mivb.openplanner.team/stops/3854B", "https://mivb.openplanner.team/stops/7660209"], ["https://mivb.openplanner.team/stops/1095", "https://mivb.openplanner.team/stops/5168F"], ["https://mivb.openplanner.team/stops/2002", "https://mivb.openplanner.team/stops/2109B"], ["https://mivb.openplanner.team/stops/2238", "https://mivb.openplanner.team/stops/5742B"], ["https://mivb.openplanner.team/stops/5727F", "https://mivb.openplanner.team/stops/5823"], ["https://mivb.openplanner.team/stops/1627", "https://mivb.openplanner.team/stops/5521"], ["https://mivb.openplanner.team/stops/2355", "https://mivb.openplanner.team/stops/5058F"], ["https://mivb.openplanner.team/stops/1306F", "https://mivb.openplanner.team/stops/1307F"], ["https://mivb.openplanner.team/stops/3513", "https://mivb.openplanner.team/stops/5462F"], ["https://mivb.openplanner.team/stops/0210132", "https://mivb.openplanner.team/stops/0220333"], ["https://mivb.openplanner.team/stops/3424", "https://mivb.openplanner.team/stops/5277F"], ["https://mivb.openplanner.team/stops/2922", "https://mivb.openplanner.team/stops/0050319"], ["https://mivb.openplanner.team/stops/1009", "https://mivb.openplanner.team/stops/1679F"], ["https://mivb.openplanner.team/stops/0704", "https://mivb.openplanner.team/stops/0660166"], ["https://mivb.openplanner.team/stops/3320B", "https://mivb.openplanner.team/stops/0270114"], ["https://mivb.openplanner.team/stops/1558", "https://mivb.openplanner.team/stops/3954"], ["https://mivb.openplanner.team/stops/7820153", "https://mivb.openplanner.team/stops/7820253"], ["https://mivb.openplanner.team/stops/5427", "https://mivb.openplanner.team/stops/0260137"], ["https://mivb.openplanner.team/stops/1725", "https://mivb.openplanner.team/stops/2077"], ["https://mivb.openplanner.team/stops/3624B", "https://mivb.openplanner.team/stops/0320143"], ["https://mivb.openplanner.team/stops/1511", "https://mivb.openplanner.team/stops/2920"], ["https://mivb.openplanner.team/stops/3480", "https://mivb.openplanner.team/stops/5200F"], ["https://mivb.openplanner.team/stops/4296", "https://mivb.openplanner.team/stops/4452"], ["https://mivb.openplanner.team/stops/2926", "https://mivb.openplanner.team/stops/2997"], ["https://mivb.openplanner.team/stops/2306", "https://mivb.openplanner.team/stops/2663"], ["https://mivb.openplanner.team/stops/1788", "https://mivb.openplanner.team/stops/5010"], ["https://mivb.openplanner.team/stops/4309", "https://mivb.openplanner.team/stops/5451F"], ["https://mivb.openplanner.team/stops/4123", "https://mivb.openplanner.team/stops/4124"], ["https://mivb.openplanner.team/stops/4103", "https://mivb.openplanner.team/stops/4160"], ["https://mivb.openplanner.team/stops/1976", "https://mivb.openplanner.team/stops/4705"], ["https://mivb.openplanner.team/stops/1339", "https://mivb.openplanner.team/stops/29"], ["https://mivb.openplanner.team/stops/4287", "https://mivb.openplanner.team/stops/4290"], ["https://mivb.openplanner.team/stops/0820270", "https://mivb.openplanner.team/stops/6451"], ["https://mivb.openplanner.team/stops/2704", "https://mivb.openplanner.team/stops/2770"], ["https://mivb.openplanner.team/stops/4599", "https://mivb.openplanner.team/stops/4661B"], ["https://mivb.openplanner.team/stops/2833", "https://mivb.openplanner.team/stops/2838"], ["https://mivb.openplanner.team/stops/1102", "https://mivb.openplanner.team/stops/4661B"], ["https://mivb.openplanner.team/stops/2926", "https://mivb.openplanner.team/stops/3454"], ["https://mivb.openplanner.team/stops/1105", "https://mivb.openplanner.team/stops/1190"], ["https://mivb.openplanner.team/stops/1165", "https://mivb.openplanner.team/stops/6311"], ["https://mivb.openplanner.team/stops/5712F", "https://mivb.openplanner.team/stops/6304"], ["https://mivb.openplanner.team/stops/0430548", "https://mivb.openplanner.team/stops/0431048"], ["https://mivb.openplanner.team/stops/2037", "https://mivb.openplanner.team/stops/2042"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/4319"], ["https://mivb.openplanner.team/stops/8022", "https://mivb.openplanner.team/stops/0020216"], ["https://mivb.openplanner.team/stops/9658", "https://mivb.openplanner.team/stops/9659"], ["https://mivb.openplanner.team/stops/2662B", "https://mivb.openplanner.team/stops/5923"], ["https://mivb.openplanner.team/stops/8641", "https://mivb.openplanner.team/stops/9658"], ["https://mivb.openplanner.team/stops/1518", "https://mivb.openplanner.team/stops/4550"], ["https://mivb.openplanner.team/stops/1718B", "https://mivb.openplanner.team/stops/1864"], ["https://mivb.openplanner.team/stops/5420F", "https://mivb.openplanner.team/stops/9059"], ["https://mivb.openplanner.team/stops/5222F", "https://mivb.openplanner.team/stops/9959F"], ["https://mivb.openplanner.team/stops/7720303", "https://mivb.openplanner.team/stops/8731"], ["https://mivb.openplanner.team/stops/2331F", "https://mivb.openplanner.team/stops/2336G"], ["https://mivb.openplanner.team/stops/6482", "https://mivb.openplanner.team/stops/7830152"], ["https://mivb.openplanner.team/stops/3104", "https://mivb.openplanner.team/stops/5868"], ["https://mivb.openplanner.team/stops/3558", "https://mivb.openplanner.team/stops/4360"], ["https://mivb.openplanner.team/stops/1152", "https://mivb.openplanner.team/stops/1559"], ["https://mivb.openplanner.team/stops/1563", "https://mivb.openplanner.team/stops/3266"], ["https://mivb.openplanner.team/stops/3903", "https://mivb.openplanner.team/stops/3958"], ["https://mivb.openplanner.team/stops/5174", "https://mivb.openplanner.team/stops/5174F"], ["https://mivb.openplanner.team/stops/1518", "https://mivb.openplanner.team/stops/3911"], ["https://mivb.openplanner.team/stops/3102", "https://mivb.openplanner.team/stops/3103"], ["https://mivb.openplanner.team/stops/5805", "https://mivb.openplanner.team/stops/7484"], ["https://mivb.openplanner.team/stops/3407", "https://mivb.openplanner.team/stops/7269"], ["https://mivb.openplanner.team/stops/5725", "https://mivb.openplanner.team/stops/5922"], ["https://mivb.openplanner.team/stops/9701", "https://mivb.openplanner.team/stops/9726"], ["https://mivb.openplanner.team/stops/6355F", "https://mivb.openplanner.team/stops/0020516"], ["https://mivb.openplanner.team/stops/1159", "https://mivb.openplanner.team/stops/3912"], ["https://mivb.openplanner.team/stops/2317", "https://mivb.openplanner.team/stops/5906"], ["https://mivb.openplanner.team/stops/2302", "https://mivb.openplanner.team/stops/0010115"], ["https://mivb.openplanner.team/stops/3851", "https://mivb.openplanner.team/stops/5720F"], ["https://mivb.openplanner.team/stops/0120326", "https://mivb.openplanner.team/stops/0120426"], ["https://mivb.openplanner.team/stops/1602", "https://mivb.openplanner.team/stops/1668"], ["https://mivb.openplanner.team/stops/5867F", "https://mivb.openplanner.team/stops/5868"], ["https://mivb.openplanner.team/stops/3546", "https://mivb.openplanner.team/stops/8231"], ["https://mivb.openplanner.team/stops/2535F", "https://mivb.openplanner.team/stops/7700205"], ["https://mivb.openplanner.team/stops/5814", "https://mivb.openplanner.team/stops/5856"], ["https://mivb.openplanner.team/stops/4305", "https://mivb.openplanner.team/stops/5264F"], ["https://mivb.openplanner.team/stops/1110", "https://mivb.openplanner.team/stops/9678"], ["https://mivb.openplanner.team/stops/3518B", "https://mivb.openplanner.team/stops/0310644"], ["https://mivb.openplanner.team/stops/2411B", "https://mivb.openplanner.team/stops/2456"], ["https://mivb.openplanner.team/stops/4153", "https://mivb.openplanner.team/stops/4157"], ["https://mivb.openplanner.team/stops/5256F", "https://mivb.openplanner.team/stops/5409"], ["https://mivb.openplanner.team/stops/1538B", "https://mivb.openplanner.team/stops/3902"], ["https://mivb.openplanner.team/stops/2817", "https://mivb.openplanner.team/stops/2852"], ["https://mivb.openplanner.team/stops/6475F", "https://mivb.openplanner.team/stops/0160130"], ["https://mivb.openplanner.team/stops/2660", "https://mivb.openplanner.team/stops/9652"], ["https://mivb.openplanner.team/stops/1638B", "https://mivb.openplanner.team/stops/8151"], ["https://mivb.openplanner.team/stops/1638B", "https://mivb.openplanner.team/stops/2039"], ["https://mivb.openplanner.team/stops/2703", "https://mivb.openplanner.team/stops/2770"], ["https://mivb.openplanner.team/stops/4259", "https://mivb.openplanner.team/stops/4261"], ["https://mivb.openplanner.team/stops/5227F", "https://mivb.openplanner.team/stops/5228F"], ["https://mivb.openplanner.team/stops/8111", "https://mivb.openplanner.team/stops/8112"], ["https://mivb.openplanner.team/stops/6357F", "https://mivb.openplanner.team/stops/47"], ["https://mivb.openplanner.team/stops/2242F", "https://mivb.openplanner.team/stops/2248"], ["https://mivb.openplanner.team/stops/2533", "https://mivb.openplanner.team/stops/2560"], ["https://mivb.openplanner.team/stops/2807", "https://mivb.openplanner.team/stops/5295"], ["https://mivb.openplanner.team/stops/4952", "https://mivb.openplanner.team/stops/0310644"], ["https://mivb.openplanner.team/stops/1962", "https://mivb.openplanner.team/stops/5817F"], ["https://mivb.openplanner.team/stops/0900368", "https://mivb.openplanner.team/stops/0080322"], ["https://mivb.openplanner.team/stops/8161", "https://mivb.openplanner.team/stops/0160230"], ["https://mivb.openplanner.team/stops/1014F", "https://mivb.openplanner.team/stops/2572"], ["https://mivb.openplanner.team/stops/1921", "https://mivb.openplanner.team/stops/1968"], ["https://mivb.openplanner.team/stops/2663", "https://mivb.openplanner.team/stops/2952B"], ["https://mivb.openplanner.team/stops/1584", "https://mivb.openplanner.team/stops/0120426"], ["https://mivb.openplanner.team/stops/1306F", "https://mivb.openplanner.team/stops/4066F"], ["https://mivb.openplanner.team/stops/1977", "https://mivb.openplanner.team/stops/5408"], ["https://mivb.openplanner.team/stops/1097", "https://mivb.openplanner.team/stops/4007G"], ["https://mivb.openplanner.team/stops/1148C", "https://mivb.openplanner.team/stops/1417B"], ["https://mivb.openplanner.team/stops/4257", "https://mivb.openplanner.team/stops/5472"], ["https://mivb.openplanner.team/stops/1875", "https://mivb.openplanner.team/stops/23"], ["https://mivb.openplanner.team/stops/2916", "https://mivb.openplanner.team/stops/2975"], ["https://mivb.openplanner.team/stops/1515", "https://mivb.openplanner.team/stops/2250"], ["https://mivb.openplanner.team/stops/3325", "https://mivb.openplanner.team/stops/9064"], ["https://mivb.openplanner.team/stops/5105", "https://mivb.openplanner.team/stops/5168"], ["https://mivb.openplanner.team/stops/4308", "https://mivb.openplanner.team/stops/5459"], ["https://mivb.openplanner.team/stops/2898", "https://mivb.openplanner.team/stops/5359"], ["https://mivb.openplanner.team/stops/2610", "https://mivb.openplanner.team/stops/2660"], ["https://mivb.openplanner.team/stops/5039", "https://mivb.openplanner.team/stops/5041F"], ["https://mivb.openplanner.team/stops/1814B", "https://mivb.openplanner.team/stops/1860"], ["https://mivb.openplanner.team/stops/2330", "https://mivb.openplanner.team/stops/3001B"], ["https://mivb.openplanner.team/stops/1626", "https://mivb.openplanner.team/stops/0470251"], ["https://mivb.openplanner.team/stops/9605", "https://mivb.openplanner.team/stops/9632"], ["https://mivb.openplanner.team/stops/1798", "https://mivb.openplanner.team/stops/5066"], ["https://mivb.openplanner.team/stops/1936", "https://mivb.openplanner.team/stops/1944"], ["https://mivb.openplanner.team/stops/1162C", "https://mivb.openplanner.team/stops/1729"], ["https://mivb.openplanner.team/stops/1935", "https://mivb.openplanner.team/stops/9657"], ["https://mivb.openplanner.team/stops/5521", "https://mivb.openplanner.team/stops/9169"], ["https://mivb.openplanner.team/stops/1829", "https://mivb.openplanner.team/stops/29"], ["https://mivb.openplanner.team/stops/1571", "https://mivb.openplanner.team/stops/9060"], ["https://mivb.openplanner.team/stops/1980", "https://mivb.openplanner.team/stops/3121"], ["https://mivb.openplanner.team/stops/7670208", "https://mivb.openplanner.team/stops/7"], ["https://mivb.openplanner.team/stops/3608", "https://mivb.openplanner.team/stops/8"], ["https://mivb.openplanner.team/stops/4405", "https://mivb.openplanner.team/stops/4407"], ["https://mivb.openplanner.team/stops/8472", "https://mivb.openplanner.team/stops/0470151"], ["https://mivb.openplanner.team/stops/5060", "https://mivb.openplanner.team/stops/6423F"], ["https://mivb.openplanner.team/stops/4314", "https://mivb.openplanner.team/stops/4351"], ["https://mivb.openplanner.team/stops/1014F", "https://mivb.openplanner.team/stops/6865F"], ["https://mivb.openplanner.team/stops/2452", "https://mivb.openplanner.team/stops/5952"], ["https://mivb.openplanner.team/stops/1316", "https://mivb.openplanner.team/stops/3321"], ["https://mivb.openplanner.team/stops/5727F", "https://mivb.openplanner.team/stops/5753F"], ["https://mivb.openplanner.team/stops/3110", "https://mivb.openplanner.team/stops/3166"], ["https://mivb.openplanner.team/stops/8672", "https://mivb.openplanner.team/stops/8"], ["https://mivb.openplanner.team/stops/2505", "https://mivb.openplanner.team/stops/6867F"], ["https://mivb.openplanner.team/stops/1916", "https://mivb.openplanner.team/stops/5210"], ["https://mivb.openplanner.team/stops/8341", "https://mivb.openplanner.team/stops/0340241"], ["https://mivb.openplanner.team/stops/8031", "https://mivb.openplanner.team/stops/17"], ["https://mivb.openplanner.team/stops/1557", "https://mivb.openplanner.team/stops/3909"], ["https://mivb.openplanner.team/stops/0900468", "https://mivb.openplanner.team/stops/0080322"], ["https://mivb.openplanner.team/stops/0050119", "https://mivb.openplanner.team/stops/0060120"], ["https://mivb.openplanner.team/stops/2817", "https://mivb.openplanner.team/stops/2853"], ["https://mivb.openplanner.team/stops/1957B", "https://mivb.openplanner.team/stops/5822F"], ["https://mivb.openplanner.team/stops/3105", "https://mivb.openplanner.team/stops/5958C"], ["https://mivb.openplanner.team/stops/1283", "https://mivb.openplanner.team/stops/3176"], ["https://mivb.openplanner.team/stops/9627", "https://mivb.openplanner.team/stops/9755"], ["https://mivb.openplanner.team/stops/5761", "https://mivb.openplanner.team/stops/6459F"], ["https://mivb.openplanner.team/stops/4310", "https://mivb.openplanner.team/stops/4456"], ["https://mivb.openplanner.team/stops/2018", "https://mivb.openplanner.team/stops/5416"], ["https://mivb.openplanner.team/stops/1646F", "https://mivb.openplanner.team/stops/6012G"], ["https://mivb.openplanner.team/stops/1416", "https://mivb.openplanner.team/stops/1802"], ["https://mivb.openplanner.team/stops/5518", "https://mivb.openplanner.team/stops/5522"], ["https://mivb.openplanner.team/stops/2546", "https://mivb.openplanner.team/stops/5159F"], ["https://mivb.openplanner.team/stops/1738", "https://mivb.openplanner.team/stops/2151"], ["https://mivb.openplanner.team/stops/4232", "https://mivb.openplanner.team/stops/6173"], ["https://mivb.openplanner.team/stops/1500", "https://mivb.openplanner.team/stops/5224F"], ["https://mivb.openplanner.team/stops/3253", "https://mivb.openplanner.team/stops/3253F"], ["https://mivb.openplanner.team/stops/1085", "https://mivb.openplanner.team/stops/2604F"], ["https://mivb.openplanner.team/stops/6464", "https://mivb.openplanner.team/stops/0050119"], ["https://mivb.openplanner.team/stops/4112", "https://mivb.openplanner.team/stops/4159"], ["https://mivb.openplanner.team/stops/9649", "https://mivb.openplanner.team/stops/9683"], ["https://mivb.openplanner.team/stops/3800", "https://mivb.openplanner.team/stops/3802"], ["https://mivb.openplanner.team/stops/1322", "https://mivb.openplanner.team/stops/6406"], ["https://mivb.openplanner.team/stops/1807", "https://mivb.openplanner.team/stops/5267"], ["https://mivb.openplanner.team/stops/6931B", "https://mivb.openplanner.team/stops/6931G"], ["https://mivb.openplanner.team/stops/0600662", "https://mivb.openplanner.team/stops/62"], ["https://mivb.openplanner.team/stops/3404", "https://mivb.openplanner.team/stops/3424"], ["https://mivb.openplanner.team/stops/2015", "https://mivb.openplanner.team/stops/2029"], ["https://mivb.openplanner.team/stops/3018", "https://mivb.openplanner.team/stops/3201"], ["https://mivb.openplanner.team/stops/2672", "https://mivb.openplanner.team/stops/5158"], ["https://mivb.openplanner.team/stops/1386", "https://mivb.openplanner.team/stops/5228F"], ["https://mivb.openplanner.team/stops/5816B", "https://mivb.openplanner.team/stops/5816G"], ["https://mivb.openplanner.team/stops/8201", "https://mivb.openplanner.team/stops/8202"], ["https://mivb.openplanner.team/stops/7268", "https://mivb.openplanner.team/stops/7269"], ["https://mivb.openplanner.team/stops/3359", "https://mivb.openplanner.team/stops/0030117"], ["https://mivb.openplanner.team/stops/5086F", "https://mivb.openplanner.team/stops/5806"], ["https://mivb.openplanner.team/stops/5006", "https://mivb.openplanner.team/stops/6501"], ["https://mivb.openplanner.team/stops/1048F", "https://mivb.openplanner.team/stops/2763"], ["https://mivb.openplanner.team/stops/2545", "https://mivb.openplanner.team/stops/7790556"], ["https://mivb.openplanner.team/stops/1065", "https://mivb.openplanner.team/stops/1678F"], ["https://mivb.openplanner.team/stops/6309F", "https://mivb.openplanner.team/stops/0030117"], ["https://mivb.openplanner.team/stops/2252", "https://mivb.openplanner.team/stops/6857"], ["https://mivb.openplanner.team/stops/3466", "https://mivb.openplanner.team/stops/5275F"], ["https://mivb.openplanner.team/stops/1862", "https://mivb.openplanner.team/stops/1863"], ["https://mivb.openplanner.team/stops/0040118", "https://mivb.openplanner.team/stops/0040618"], ["https://mivb.openplanner.team/stops/1252", "https://mivb.openplanner.team/stops/1828"], ["https://mivb.openplanner.team/stops/1047F", "https://mivb.openplanner.team/stops/1059"], ["https://mivb.openplanner.team/stops/5710F", "https://mivb.openplanner.team/stops/5740"], ["https://mivb.openplanner.team/stops/2346", "https://mivb.openplanner.team/stops/7246"], ["https://mivb.openplanner.team/stops/1617", "https://mivb.openplanner.team/stops/1657"], ["https://mivb.openplanner.team/stops/4265", "https://mivb.openplanner.team/stops/4277"], ["https://mivb.openplanner.team/stops/5741", "https://mivb.openplanner.team/stops/5765F"], ["https://mivb.openplanner.team/stops/2241G", "https://mivb.openplanner.team/stops/2242F"], ["https://mivb.openplanner.team/stops/1178", "https://mivb.openplanner.team/stops/0370138"], ["https://mivb.openplanner.team/stops/1522", "https://mivb.openplanner.team/stops/3910"], ["https://mivb.openplanner.team/stops/6806", "https://mivb.openplanner.team/stops/6862F"], ["https://mivb.openplanner.team/stops/2539", "https://mivb.openplanner.team/stops/0350240"], ["https://mivb.openplanner.team/stops/7740201", "https://mivb.openplanner.team/stops/8744"], ["https://mivb.openplanner.team/stops/3328", "https://mivb.openplanner.team/stops/3335F"], ["https://mivb.openplanner.team/stops/4295", "https://mivb.openplanner.team/stops/8241"], ["https://mivb.openplanner.team/stops/5032B", "https://mivb.openplanner.team/stops/5032G"], ["https://mivb.openplanner.team/stops/0706", "https://mivb.openplanner.team/stops/5859"], ["https://mivb.openplanner.team/stops/6484B", "https://mivb.openplanner.team/stops/8692"], ["https://mivb.openplanner.team/stops/3553", "https://mivb.openplanner.team/stops/0240435"], ["https://mivb.openplanner.team/stops/4253", "https://mivb.openplanner.team/stops/0280213"], ["https://mivb.openplanner.team/stops/1385", "https://mivb.openplanner.team/stops/8122"], ["https://mivb.openplanner.team/stops/0705", "https://mivb.openplanner.team/stops/0660266"], ["https://mivb.openplanner.team/stops/1381", "https://mivb.openplanner.team/stops/5518"], ["https://mivb.openplanner.team/stops/2262", "https://mivb.openplanner.team/stops/6656"], ["https://mivb.openplanner.team/stops/1685F", "https://mivb.openplanner.team/stops/4270F"], ["https://mivb.openplanner.team/stops/3613F", "https://mivb.openplanner.team/stops/3713"], ["https://mivb.openplanner.team/stops/2323", "https://mivb.openplanner.team/stops/6812"], ["https://mivb.openplanner.team/stops/4104", "https://mivb.openplanner.team/stops/4115"], ["https://mivb.openplanner.team/stops/5603", "https://mivb.openplanner.team/stops/5657"], ["https://mivb.openplanner.team/stops/3102", "https://mivb.openplanner.team/stops/5802"], ["https://mivb.openplanner.team/stops/2811", "https://mivb.openplanner.team/stops/2861"], ["https://mivb.openplanner.team/stops/3468", "https://mivb.openplanner.team/stops/4555"], ["https://mivb.openplanner.team/stops/2145", "https://mivb.openplanner.team/stops/5455"], ["https://mivb.openplanner.team/stops/2548F", "https://mivb.openplanner.team/stops/2672F"], ["https://mivb.openplanner.team/stops/1134", "https://mivb.openplanner.team/stops/1158"], ["https://mivb.openplanner.team/stops/9755", "https://mivb.openplanner.team/stops/9777"], ["https://mivb.openplanner.team/stops/0600762", "https://mivb.openplanner.team/stops/2212"], ["https://mivb.openplanner.team/stops/1019", "https://mivb.openplanner.team/stops/5071"], ["https://mivb.openplanner.team/stops/2505", "https://mivb.openplanner.team/stops/2574"], ["https://mivb.openplanner.team/stops/6481", "https://mivb.openplanner.team/stops/9707"], ["https://mivb.openplanner.team/stops/7690106", "https://mivb.openplanner.team/stops/8692"], ["https://mivb.openplanner.team/stops/2611", "https://mivb.openplanner.team/stops/9686"], ["https://mivb.openplanner.team/stops/4069", "https://mivb.openplanner.team/stops/7830352"], ["https://mivb.openplanner.team/stops/5111B", "https://mivb.openplanner.team/stops/5116"], ["https://mivb.openplanner.team/stops/1421", "https://mivb.openplanner.team/stops/5223F"], ["https://mivb.openplanner.team/stops/1240", "https://mivb.openplanner.team/stops/2668"], ["https://mivb.openplanner.team/stops/5529", "https://mivb.openplanner.team/stops/5533"], ["https://mivb.openplanner.team/stops/9552", "https://mivb.openplanner.team/stops/9553"], ["https://mivb.openplanner.team/stops/1906", "https://mivb.openplanner.team/stops/5610"], ["https://mivb.openplanner.team/stops/1819", "https://mivb.openplanner.team/stops/1856"], ["https://mivb.openplanner.team/stops/4107", "https://mivb.openplanner.team/stops/4112"], ["https://mivb.openplanner.team/stops/4342", "https://mivb.openplanner.team/stops/5422"], ["https://mivb.openplanner.team/stops/0631", "https://mivb.openplanner.team/stops/1370"], ["https://mivb.openplanner.team/stops/1474B", "https://mivb.openplanner.team/stops/0060420"], ["https://mivb.openplanner.team/stops/2311", "https://mivb.openplanner.team/stops/3058"], ["https://mivb.openplanner.team/stops/1985G", "https://mivb.openplanner.team/stops/2710G"], ["https://mivb.openplanner.team/stops/3903", "https://mivb.openplanner.team/stops/3908"], ["https://mivb.openplanner.team/stops/2346", "https://mivb.openplanner.team/stops/3408"], ["https://mivb.openplanner.team/stops/1242", "https://mivb.openplanner.team/stops/6706"], ["https://mivb.openplanner.team/stops/1615", "https://mivb.openplanner.team/stops/5517"], ["https://mivb.openplanner.team/stops/0610363", "https://mivb.openplanner.team/stops/1167"], ["https://mivb.openplanner.team/stops/2859", "https://mivb.openplanner.team/stops/5081F"], ["https://mivb.openplanner.team/stops/2873", "https://mivb.openplanner.team/stops/4250"], ["https://mivb.openplanner.team/stops/1520", "https://mivb.openplanner.team/stops/1521"], ["https://mivb.openplanner.team/stops/3546", "https://mivb.openplanner.team/stops/3547"], ["https://mivb.openplanner.team/stops/2980", "https://mivb.openplanner.team/stops/3307"], ["https://mivb.openplanner.team/stops/2895", "https://mivb.openplanner.team/stops/2987"], ["https://mivb.openplanner.team/stops/1303", "https://mivb.openplanner.team/stops/2519"], ["https://mivb.openplanner.team/stops/5297B", "https://mivb.openplanner.team/stops/6856"], ["https://mivb.openplanner.team/stops/5507", "https://mivb.openplanner.team/stops/5659"], ["https://mivb.openplanner.team/stops/3261", "https://mivb.openplanner.team/stops/3633B"], ["https://mivb.openplanner.team/stops/1096", "https://mivb.openplanner.team/stops/2510"], ["https://mivb.openplanner.team/stops/5066", "https://mivb.openplanner.team/stops/5469"], ["https://mivb.openplanner.team/stops/3556", "https://mivb.openplanner.team/stops/8231"], ["https://mivb.openplanner.team/stops/5159F", "https://mivb.openplanner.team/stops/5718"], ["https://mivb.openplanner.team/stops/3362", "https://mivb.openplanner.team/stops/3420"], ["https://mivb.openplanner.team/stops/5905", "https://mivb.openplanner.team/stops/9776"], ["https://mivb.openplanner.team/stops/3462", "https://mivb.openplanner.team/stops/3902"], ["https://mivb.openplanner.team/stops/1095", "https://mivb.openplanner.team/stops/5168"], ["https://mivb.openplanner.team/stops/1244", "https://mivb.openplanner.team/stops/4594"], ["https://mivb.openplanner.team/stops/2058", "https://mivb.openplanner.team/stops/5283F"], ["https://mivb.openplanner.team/stops/6434F", "https://mivb.openplanner.team/stops/0420147"], ["https://mivb.openplanner.team/stops/1669", "https://mivb.openplanner.team/stops/5523"], ["https://mivb.openplanner.team/stops/0320343", "https://mivb.openplanner.team/stops/0370543"], ["https://mivb.openplanner.team/stops/1939", "https://mivb.openplanner.team/stops/1955"], ["https://mivb.openplanner.team/stops/3308F", "https://mivb.openplanner.team/stops/5356"], ["https://mivb.openplanner.team/stops/1835", "https://mivb.openplanner.team/stops/6475F"], ["https://mivb.openplanner.team/stops/5727F", "https://mivb.openplanner.team/stops/5822F"], ["https://mivb.openplanner.team/stops/0430248", "https://mivb.openplanner.team/stops/0430848"], ["https://mivb.openplanner.team/stops/5352", "https://mivb.openplanner.team/stops/0210232"], ["https://mivb.openplanner.team/stops/2220", "https://mivb.openplanner.team/stops/2562B"], ["https://mivb.openplanner.team/stops/1306F", "https://mivb.openplanner.team/stops/1308G"], ["https://mivb.openplanner.team/stops/2701", "https://mivb.openplanner.team/stops/5825"], ["https://mivb.openplanner.team/stops/6070", "https://mivb.openplanner.team/stops/8741"], ["https://mivb.openplanner.team/stops/5656", "https://mivb.openplanner.team/stops/9578"], ["https://mivb.openplanner.team/stops/6456F", "https://mivb.openplanner.team/stops/6459F"], ["https://mivb.openplanner.team/stops/5220F", "https://mivb.openplanner.team/stops/9963F"], ["https://mivb.openplanner.team/stops/4804B", "https://mivb.openplanner.team/stops/4856B"], ["https://mivb.openplanner.team/stops/9777", "https://mivb.openplanner.team/stops/9778"], ["https://mivb.openplanner.team/stops/8281", "https://mivb.openplanner.team/stops/13"], ["https://mivb.openplanner.team/stops/3123", "https://mivb.openplanner.team/stops/4303"], ["https://mivb.openplanner.team/stops/3320B", "https://mivb.openplanner.team/stops/0270314"], ["https://mivb.openplanner.team/stops/0706", "https://mivb.openplanner.team/stops/2950"], ["https://mivb.openplanner.team/stops/7650110", "https://mivb.openplanner.team/stops/9660"], ["https://mivb.openplanner.team/stops/3624B", "https://mivb.openplanner.team/stops/8322"], ["https://mivb.openplanner.team/stops/1134", "https://mivb.openplanner.team/stops/1802"], ["https://mivb.openplanner.team/stops/4296", "https://mivb.openplanner.team/stops/4454"], ["https://mivb.openplanner.team/stops/2254", "https://mivb.openplanner.team/stops/6812"], ["https://mivb.openplanner.team/stops/1099", "https://mivb.openplanner.team/stops/5174F"], ["https://mivb.openplanner.team/stops/3299", "https://mivb.openplanner.team/stops/3308F"], ["https://mivb.openplanner.team/stops/0616", "https://mivb.openplanner.team/stops/2245"], ["https://mivb.openplanner.team/stops/4366", "https://mivb.openplanner.team/stops/6157F"], ["https://mivb.openplanner.team/stops/3515", "https://mivb.openplanner.team/stops/4359"], ["https://mivb.openplanner.team/stops/8753", "https://mivb.openplanner.team/stops/60"], ["https://mivb.openplanner.team/stops/1914", "https://mivb.openplanner.team/stops/6453"], ["https://mivb.openplanner.team/stops/5011", "https://mivb.openplanner.team/stops/5074F"], ["https://mivb.openplanner.team/stops/2313", "https://mivb.openplanner.team/stops/2327"], ["https://mivb.openplanner.team/stops/2299", "https://mivb.openplanner.team/stops/2853"], ["https://mivb.openplanner.team/stops/3353", "https://mivb.openplanner.team/stops/3359"], ["https://mivb.openplanner.team/stops/1194", "https://mivb.openplanner.team/stops/1195"], ["https://mivb.openplanner.team/stops/1513", "https://mivb.openplanner.team/stops/1566"], ["https://mivb.openplanner.team/stops/2037", "https://mivb.openplanner.team/stops/2043"], ["https://mivb.openplanner.team/stops/1677F", "https://mivb.openplanner.team/stops/9103"], ["https://mivb.openplanner.team/stops/8381", "https://mivb.openplanner.team/stops/8741"], ["https://mivb.openplanner.team/stops/1857", "https://mivb.openplanner.team/stops/5223F"], ["https://mivb.openplanner.team/stops/4072", "https://mivb.openplanner.team/stops/4223"], ["https://mivb.openplanner.team/stops/1557", "https://mivb.openplanner.team/stops/1558"], ["https://mivb.openplanner.team/stops/8022", "https://mivb.openplanner.team/stops/0020116"], ["https://mivb.openplanner.team/stops/1425", "https://mivb.openplanner.team/stops/6082"], ["https://mivb.openplanner.team/stops/2662B", "https://mivb.openplanner.team/stops/5922"], ["https://mivb.openplanner.team/stops/1677F", "https://mivb.openplanner.team/stops/1747"], ["https://mivb.openplanner.team/stops/6706", "https://mivb.openplanner.team/stops/6754"], ["https://mivb.openplanner.team/stops/1881", "https://mivb.openplanner.team/stops/1909"], ["https://mivb.openplanner.team/stops/3309F", "https://mivb.openplanner.team/stops/6019"], ["https://mivb.openplanner.team/stops/8042", "https://mivb.openplanner.team/stops/0410146"], ["https://mivb.openplanner.team/stops/2338F", "https://mivb.openplanner.team/stops/5705"], ["https://mivb.openplanner.team/stops/1076B", "https://mivb.openplanner.team/stops/1077"], ["https://mivb.openplanner.team/stops/6459", "https://mivb.openplanner.team/stops/6461F"], ["https://mivb.openplanner.team/stops/1377", "https://mivb.openplanner.team/stops/5518"], ["https://mivb.openplanner.team/stops/4022", "https://mivb.openplanner.team/stops/6071"], ["https://mivb.openplanner.team/stops/2397", "https://mivb.openplanner.team/stops/5264F"], ["https://mivb.openplanner.team/stops/1545", "https://mivb.openplanner.team/stops/1874"], ["https://mivb.openplanner.team/stops/2315", "https://mivb.openplanner.team/stops/2358"], ["https://mivb.openplanner.team/stops/2026", "https://mivb.openplanner.team/stops/4345"], ["https://mivb.openplanner.team/stops/3903", "https://mivb.openplanner.team/stops/3957"], ["https://mivb.openplanner.team/stops/2327", "https://mivb.openplanner.team/stops/3061"], ["https://mivb.openplanner.team/stops/1585", "https://mivb.openplanner.team/stops/27"], ["https://mivb.openplanner.team/stops/2267", "https://mivb.openplanner.team/stops/0440349"], ["https://mivb.openplanner.team/stops/3132", "https://mivb.openplanner.team/stops/5363"], ["https://mivb.openplanner.team/stops/1835", "https://mivb.openplanner.team/stops/1840"], ["https://mivb.openplanner.team/stops/3122", "https://mivb.openplanner.team/stops/5611"], ["https://mivb.openplanner.team/stops/5725", "https://mivb.openplanner.team/stops/5923"], ["https://mivb.openplanner.team/stops/2568", "https://mivb.openplanner.team/stops/4007G"], ["https://mivb.openplanner.team/stops/9701", "https://mivb.openplanner.team/stops/9729"], ["https://mivb.openplanner.team/stops/1289", "https://mivb.openplanner.team/stops/1290"], ["https://mivb.openplanner.team/stops/1245", "https://mivb.openplanner.team/stops/6653F"], ["https://mivb.openplanner.team/stops/5467", "https://mivb.openplanner.team/stops/7604"], ["https://mivb.openplanner.team/stops/2302", "https://mivb.openplanner.team/stops/8012"], ["https://mivb.openplanner.team/stops/0810169", "https://mivb.openplanner.team/stops/6463F"], ["https://mivb.openplanner.team/stops/0670267", "https://mivb.openplanner.team/stops/2934"], ["https://mivb.openplanner.team/stops/1328", "https://mivb.openplanner.team/stops/1684F"], ["https://mivb.openplanner.team/stops/2524", "https://mivb.openplanner.team/stops/2546"], ["https://mivb.openplanner.team/stops/1261", "https://mivb.openplanner.team/stops/1483"], ["https://mivb.openplanner.team/stops/0820170", "https://mivb.openplanner.team/stops/6448"], ["https://mivb.openplanner.team/stops/3221", "https://mivb.openplanner.team/stops/0270514"], ["https://mivb.openplanner.team/stops/1538B", "https://mivb.openplanner.team/stops/3903"], ["https://mivb.openplanner.team/stops/5754", "https://mivb.openplanner.team/stops/5826"], ["https://mivb.openplanner.team/stops/1156", "https://mivb.openplanner.team/stops/0070121"], ["https://mivb.openplanner.team/stops/5802", "https://mivb.openplanner.team/stops/5868"], ["https://mivb.openplanner.team/stops/3309F", "https://mivb.openplanner.team/stops/6203"], ["https://mivb.openplanner.team/stops/2134", "https://mivb.openplanner.team/stops/9986F"], ["https://mivb.openplanner.team/stops/5003", "https://mivb.openplanner.team/stops/8813"], ["https://mivb.openplanner.team/stops/5516", "https://mivb.openplanner.team/stops/5524"], ["https://mivb.openplanner.team/stops/5010", "https://mivb.openplanner.team/stops/6501"], ["https://mivb.openplanner.team/stops/2703", "https://mivb.openplanner.team/stops/2771"], ["https://mivb.openplanner.team/stops/4259", "https://mivb.openplanner.team/stops/4260"], ["https://mivb.openplanner.team/stops/2814", "https://mivb.openplanner.team/stops/5773"], ["https://mivb.openplanner.team/stops/8272", "https://mivb.openplanner.team/stops/0270314"], ["https://mivb.openplanner.team/stops/1825", "https://mivb.openplanner.team/stops/5604"], ["https://mivb.openplanner.team/stops/2951", "https://mivb.openplanner.team/stops/2956"], ["https://mivb.openplanner.team/stops/5227F", "https://mivb.openplanner.team/stops/5229F"], ["https://mivb.openplanner.team/stops/8111", "https://mivb.openplanner.team/stops/0110125"], ["https://mivb.openplanner.team/stops/7820153", "https://mivb.openplanner.team/stops/53"], ["https://mivb.openplanner.team/stops/4253", "https://mivb.openplanner.team/stops/0460250"], ["https://mivb.openplanner.team/stops/2132", "https://mivb.openplanner.team/stops/5212"], ["https://mivb.openplanner.team/stops/2877", "https://mivb.openplanner.team/stops/5010"], ["https://mivb.openplanner.team/stops/2728", "https://mivb.openplanner.team/stops/2752"], ["https://mivb.openplanner.team/stops/1962", "https://mivb.openplanner.team/stops/5817"], ["https://mivb.openplanner.team/stops/1280B", "https://mivb.openplanner.team/stops/9952G"], ["https://mivb.openplanner.team/stops/8161", "https://mivb.openplanner.team/stops/0160130"], ["https://mivb.openplanner.team/stops/7720203", "https://mivb.openplanner.team/stops/3"], ["https://mivb.openplanner.team/stops/1921", "https://mivb.openplanner.team/stops/1969"], ["https://mivb.openplanner.team/stops/4998", "https://mivb.openplanner.team/stops/5087"], ["https://mivb.openplanner.team/stops/1680F", "https://mivb.openplanner.team/stops/1681F"], ["https://mivb.openplanner.team/stops/2901", "https://mivb.openplanner.team/stops/5298F"], ["https://mivb.openplanner.team/stops/0705", "https://mivb.openplanner.team/stops/6077F"], ["https://mivb.openplanner.team/stops/4257", "https://mivb.openplanner.team/stops/5471"], ["https://mivb.openplanner.team/stops/5760", "https://mivb.openplanner.team/stops/6456F"], ["https://mivb.openplanner.team/stops/1016", "https://mivb.openplanner.team/stops/1024"], ["https://mivb.openplanner.team/stops/3458", "https://mivb.openplanner.team/stops/5275F"], ["https://mivb.openplanner.team/stops/3448B", "https://mivb.openplanner.team/stops/5275F"], ["https://mivb.openplanner.team/stops/2109B", "https://mivb.openplanner.team/stops/2715"], ["https://mivb.openplanner.team/stops/1626", "https://mivb.openplanner.team/stops/5089"], ["https://mivb.openplanner.team/stops/3001B", "https://mivb.openplanner.team/stops/9609"], ["https://mivb.openplanner.team/stops/0820170", "https://mivb.openplanner.team/stops/1518"], ["https://mivb.openplanner.team/stops/1814B", "https://mivb.openplanner.team/stops/1861"], ["https://mivb.openplanner.team/stops/1798", "https://mivb.openplanner.team/stops/5017"], ["https://mivb.openplanner.team/stops/1943", "https://mivb.openplanner.team/stops/5221F"], ["https://mivb.openplanner.team/stops/1810", "https://mivb.openplanner.team/stops/1865"], ["https://mivb.openplanner.team/stops/0410446", "https://mivb.openplanner.team/stops/46"], ["https://mivb.openplanner.team/stops/3403", "https://mivb.openplanner.team/stops/3417"], ["https://mivb.openplanner.team/stops/9605", "https://mivb.openplanner.team/stops/9634"], ["https://mivb.openplanner.team/stops/3125", "https://mivb.openplanner.team/stops/5264F"], ["https://mivb.openplanner.team/stops/1094", "https://mivb.openplanner.team/stops/1094F"], ["https://mivb.openplanner.team/stops/5013F", "https://mivb.openplanner.team/stops/0460250"], ["https://mivb.openplanner.team/stops/1904", "https://mivb.openplanner.team/stops/1988"], ["https://mivb.openplanner.team/stops/0706", "https://mivb.openplanner.team/stops/0670367"], ["https://mivb.openplanner.team/stops/8302", "https://mivb.openplanner.team/stops/0300245"], ["https://mivb.openplanner.team/stops/2715", "https://mivb.openplanner.team/stops/2763"], ["https://mivb.openplanner.team/stops/5021", "https://mivb.openplanner.team/stops/6209"], ["https://mivb.openplanner.team/stops/0906", "https://mivb.openplanner.team/stops/0900468"], ["https://mivb.openplanner.team/stops/5060", "https://mivb.openplanner.team/stops/6422F"], ["https://mivb.openplanner.team/stops/2956", "https://mivb.openplanner.team/stops/5849"], ["https://mivb.openplanner.team/stops/1303", "https://mivb.openplanner.team/stops/2571"], ["https://mivb.openplanner.team/stops/2267", "https://mivb.openplanner.team/stops/2833"], ["https://mivb.openplanner.team/stops/1499", "https://mivb.openplanner.team/stops/1541"], ["https://mivb.openplanner.team/stops/0726", "https://mivb.openplanner.team/stops/0350140"], ["https://mivb.openplanner.team/stops/1156T", "https://mivb.openplanner.team/stops/0070521"], ["https://mivb.openplanner.team/stops/3232", "https://mivb.openplanner.team/stops/4007G"], ["https://mivb.openplanner.team/stops/1582", "https://mivb.openplanner.team/stops/6017"], ["https://mivb.openplanner.team/stops/2541", "https://mivb.openplanner.team/stops/2544"], ["https://mivb.openplanner.team/stops/1201", "https://mivb.openplanner.team/stops/9801"], ["https://mivb.openplanner.team/stops/2043", "https://mivb.openplanner.team/stops/0130127"], ["https://mivb.openplanner.team/stops/2663", "https://mivb.openplanner.team/stops/2663G"], ["https://mivb.openplanner.team/stops/1627", "https://mivb.openplanner.team/stops/9164"], ["https://mivb.openplanner.team/stops/1232", "https://mivb.openplanner.team/stops/2937B"], ["https://mivb.openplanner.team/stops/5298", "https://mivb.openplanner.team/stops/5299"], ["https://mivb.openplanner.team/stops/3009", "https://mivb.openplanner.team/stops/6755"], ["https://mivb.openplanner.team/stops/1379", "https://mivb.openplanner.team/stops/1385"], ["https://mivb.openplanner.team/stops/6428", "https://mivb.openplanner.team/stops/6430F"], ["https://mivb.openplanner.team/stops/9654", "https://mivb.openplanner.team/stops/9660"], ["https://mivb.openplanner.team/stops/0900468", "https://mivb.openplanner.team/stops/0080222"], ["https://mivb.openplanner.team/stops/9754B", "https://mivb.openplanner.team/stops/9779"], ["https://mivb.openplanner.team/stops/0050119", "https://mivb.openplanner.team/stops/0050319"], ["https://mivb.openplanner.team/stops/3263B", "https://mivb.openplanner.team/stops/0370438"], ["https://mivb.openplanner.team/stops/8651", "https://mivb.openplanner.team/stops/7650110"], ["https://mivb.openplanner.team/stops/1134", "https://mivb.openplanner.team/stops/1872B"], ["https://mivb.openplanner.team/stops/3308F", "https://mivb.openplanner.team/stops/3451"], ["https://mivb.openplanner.team/stops/1656B", "https://mivb.openplanner.team/stops/1668"], ["https://mivb.openplanner.team/stops/2137", "https://mivb.openplanner.team/stops/2150"], ["https://mivb.openplanner.team/stops/1533", "https://mivb.openplanner.team/stops/3962"], ["https://mivb.openplanner.team/stops/2016", "https://mivb.openplanner.team/stops/2076"], ["https://mivb.openplanner.team/stops/1855", "https://mivb.openplanner.team/stops/6650G"], ["https://mivb.openplanner.team/stops/4295", "https://mivb.openplanner.team/stops/35"], ["https://mivb.openplanner.team/stops/1201", "https://mivb.openplanner.team/stops/4599"], ["https://mivb.openplanner.team/stops/1379", "https://mivb.openplanner.team/stops/0120126"], ["https://mivb.openplanner.team/stops/2260F", "https://mivb.openplanner.team/stops/0370438"], ["https://mivb.openplanner.team/stops/2528", "https://mivb.openplanner.team/stops/2548"], ["https://mivb.openplanner.team/stops/5518", "https://mivb.openplanner.team/stops/5521"], ["https://mivb.openplanner.team/stops/3007", "https://mivb.openplanner.team/stops/5958C"], ["https://mivb.openplanner.team/stops/1351", "https://mivb.openplanner.team/stops/0440649"], ["https://mivb.openplanner.team/stops/2330", "https://mivb.openplanner.team/stops/2823B"], ["https://mivb.openplanner.team/stops/1626", "https://mivb.openplanner.team/stops/4074B"], ["https://mivb.openplanner.team/stops/1112", "https://mivb.openplanner.team/stops/0470351"], ["https://mivb.openplanner.team/stops/3904", "https://mivb.openplanner.team/stops/3905"], ["https://mivb.openplanner.team/stops/1984G", "https://mivb.openplanner.team/stops/1985B"], ["https://mivb.openplanner.team/stops/4129", "https://mivb.openplanner.team/stops/6172"], ["https://mivb.openplanner.team/stops/5529", "https://mivb.openplanner.team/stops/6474F"], ["https://mivb.openplanner.team/stops/1051", "https://mivb.openplanner.team/stops/2304"], ["https://mivb.openplanner.team/stops/3323", "https://mivb.openplanner.team/stops/0020116"], ["https://mivb.openplanner.team/stops/1809", "https://mivb.openplanner.team/stops/1866"], ["https://mivb.openplanner.team/stops/1528", "https://mivb.openplanner.team/stops/1531"], ["https://mivb.openplanner.team/stops/6483B", "https://mivb.openplanner.team/stops/7690106"], ["https://mivb.openplanner.team/stops/1875", "https://mivb.openplanner.team/stops/0090323"], ["https://mivb.openplanner.team/stops/1117", "https://mivb.openplanner.team/stops/2217F"], ["https://mivb.openplanner.team/stops/2859", "https://mivb.openplanner.team/stops/2871"], ["https://mivb.openplanner.team/stops/5711F", "https://mivb.openplanner.team/stops/6303"], ["https://mivb.openplanner.team/stops/3712", "https://mivb.openplanner.team/stops/3717"], ["https://mivb.openplanner.team/stops/2910", "https://mivb.openplanner.team/stops/3175B"], ["https://mivb.openplanner.team/stops/6369", "https://mivb.openplanner.team/stops/6410"], ["https://mivb.openplanner.team/stops/5409", "https://mivb.openplanner.team/stops/5466"], ["https://mivb.openplanner.team/stops/3682", "https://mivb.openplanner.team/stops/3812"], ["https://mivb.openplanner.team/stops/3358", "https://mivb.openplanner.team/stops/0040218"], ["https://mivb.openplanner.team/stops/2323", "https://mivb.openplanner.team/stops/5"], ["https://mivb.openplanner.team/stops/3404", "https://mivb.openplanner.team/stops/3417"], ["https://mivb.openplanner.team/stops/5008F", "https://mivb.openplanner.team/stops/8773"], ["https://mivb.openplanner.team/stops/1881", "https://mivb.openplanner.team/stops/3120"], ["https://mivb.openplanner.team/stops/1077", "https://mivb.openplanner.team/stops/5291F"], ["https://mivb.openplanner.team/stops/5258", "https://mivb.openplanner.team/stops/5413F"], ["https://mivb.openplanner.team/stops/7690206", "https://mivb.openplanner.team/stops/6"], ["https://mivb.openplanner.team/stops/2955", "https://mivb.openplanner.team/stops/5120"], ["https://mivb.openplanner.team/stops/1065", "https://mivb.openplanner.team/stops/1679F"], ["https://mivb.openplanner.team/stops/6606", "https://mivb.openplanner.team/stops/6652"], ["https://mivb.openplanner.team/stops/3225F", "https://mivb.openplanner.team/stops/3257F"], ["https://mivb.openplanner.team/stops/4344", "https://mivb.openplanner.team/stops/5452"], ["https://mivb.openplanner.team/stops/2869", "https://mivb.openplanner.team/stops/6553"], ["https://mivb.openplanner.team/stops/1788", "https://mivb.openplanner.team/stops/2859"], ["https://mivb.openplanner.team/stops/2267", "https://mivb.openplanner.team/stops/0270114"], ["https://mivb.openplanner.team/stops/6473", "https://mivb.openplanner.team/stops/8202"], ["https://mivb.openplanner.team/stops/2050", "https://mivb.openplanner.team/stops/37"], ["https://mivb.openplanner.team/stops/6201F", "https://mivb.openplanner.team/stops/6419F"], ["https://mivb.openplanner.team/stops/2329", "https://mivb.openplanner.team/stops/2330"], ["https://mivb.openplanner.team/stops/4265", "https://mivb.openplanner.team/stops/4276"], ["https://mivb.openplanner.team/stops/9778", "https://mivb.openplanner.team/stops/9779"], ["https://mivb.openplanner.team/stops/3117", "https://mivb.openplanner.team/stops/3921"], ["https://mivb.openplanner.team/stops/2960F", "https://mivb.openplanner.team/stops/6408"], ["https://mivb.openplanner.team/stops/2346", "https://mivb.openplanner.team/stops/5350G"], ["https://mivb.openplanner.team/stops/1508", "https://mivb.openplanner.team/stops/8042"], ["https://mivb.openplanner.team/stops/5288", "https://mivb.openplanner.team/stops/6168"], ["https://mivb.openplanner.team/stops/3328", "https://mivb.openplanner.team/stops/3337F"], ["https://mivb.openplanner.team/stops/1280B", "https://mivb.openplanner.team/stops/1980"], ["https://mivb.openplanner.team/stops/3111", "https://mivb.openplanner.team/stops/3164"], ["https://mivb.openplanner.team/stops/1484", "https://mivb.openplanner.team/stops/1486B"], ["https://mivb.openplanner.team/stops/1872B", "https://mivb.openplanner.team/stops/3953"], ["https://mivb.openplanner.team/stops/1111", "https://mivb.openplanner.team/stops/2510"], ["https://mivb.openplanner.team/stops/3104", "https://mivb.openplanner.team/stops/3172"], ["https://mivb.openplanner.team/stops/1973", "https://mivb.openplanner.team/stops/5254"], ["https://mivb.openplanner.team/stops/1043", "https://mivb.openplanner.team/stops/0130127"], ["https://mivb.openplanner.team/stops/1781", "https://mivb.openplanner.team/stops/8012"], ["https://mivb.openplanner.team/stops/2875", "https://mivb.openplanner.team/stops/5001F"], ["https://mivb.openplanner.team/stops/0130127", "https://mivb.openplanner.team/stops/0140228"], ["https://mivb.openplanner.team/stops/5305G", "https://mivb.openplanner.team/stops/5356"], ["https://mivb.openplanner.team/stops/2151", "https://mivb.openplanner.team/stops/5029"], ["https://mivb.openplanner.team/stops/6439", "https://mivb.openplanner.team/stops/6440"], ["https://mivb.openplanner.team/stops/3155", "https://mivb.openplanner.team/stops/3156"], ["https://mivb.openplanner.team/stops/1154", "https://mivb.openplanner.team/stops/2287"], ["https://mivb.openplanner.team/stops/6356", "https://mivb.openplanner.team/stops/0030117"], ["https://mivb.openplanner.team/stops/3323", "https://mivb.openplanner.team/stops/6444"], ["https://mivb.openplanner.team/stops/3304", "https://mivb.openplanner.team/stops/5362F"], ["https://mivb.openplanner.team/stops/2928", "https://mivb.openplanner.team/stops/3620B"], ["https://mivb.openplanner.team/stops/5006", "https://mivb.openplanner.team/stops/5080"], ["https://mivb.openplanner.team/stops/0600962", "https://mivb.openplanner.team/stops/62"], ["https://mivb.openplanner.team/stops/4340", "https://mivb.openplanner.team/stops/4342"], ["https://mivb.openplanner.team/stops/0089", "https://mivb.openplanner.team/stops/0090123"], ["https://mivb.openplanner.team/stops/1421", "https://mivb.openplanner.team/stops/5224F"], ["https://mivb.openplanner.team/stops/1453", "https://mivb.openplanner.team/stops/4357"], ["https://mivb.openplanner.team/stops/1454", "https://mivb.openplanner.team/stops/0120626"], ["https://mivb.openplanner.team/stops/1065", "https://mivb.openplanner.team/stops/1066"], ["https://mivb.openplanner.team/stops/5003", "https://mivb.openplanner.team/stops/5295"], ["https://mivb.openplanner.team/stops/2901", "https://mivb.openplanner.team/stops/5361"], ["https://mivb.openplanner.team/stops/9600B", "https://mivb.openplanner.team/stops/9728"], ["https://mivb.openplanner.team/stops/1936", "https://mivb.openplanner.team/stops/2146"], ["https://mivb.openplanner.team/stops/1646F", "https://mivb.openplanner.team/stops/6066G"], ["https://mivb.openplanner.team/stops/1754", "https://mivb.openplanner.team/stops/0260237"], ["https://mivb.openplanner.team/stops/2971", "https://mivb.openplanner.team/stops/5404"], ["https://mivb.openplanner.team/stops/2346", "https://mivb.openplanner.team/stops/3407"], ["https://mivb.openplanner.team/stops/3854B", "https://mivb.openplanner.team/stops/9"], ["https://mivb.openplanner.team/stops/1242", "https://mivb.openplanner.team/stops/6754"], ["https://mivb.openplanner.team/stops/2362B", "https://mivb.openplanner.team/stops/2363"], ["https://mivb.openplanner.team/stops/6422F", "https://mivb.openplanner.team/stops/6423F"], ["https://mivb.openplanner.team/stops/1117", "https://mivb.openplanner.team/stops/1253B"], ["https://mivb.openplanner.team/stops/2895", "https://mivb.openplanner.team/stops/2986B"], ["https://mivb.openplanner.team/stops/1968", "https://mivb.openplanner.team/stops/9959F"], ["https://mivb.openplanner.team/stops/7670108", "https://mivb.openplanner.team/stops/8"], ["https://mivb.openplanner.team/stops/1719", "https://mivb.openplanner.team/stops/1863"], ["https://mivb.openplanner.team/stops/1495", "https://mivb.openplanner.team/stops/2319"], ["https://mivb.openplanner.team/stops/1010", "https://mivb.openplanner.team/stops/1677F"], ["https://mivb.openplanner.team/stops/3003", "https://mivb.openplanner.team/stops/5967"], ["https://mivb.openplanner.team/stops/5740", "https://mivb.openplanner.team/stops/5741"], ["https://mivb.openplanner.team/stops/3762", "https://mivb.openplanner.team/stops/4558"], ["https://mivb.openplanner.team/stops/5905", "https://mivb.openplanner.team/stops/9756"], ["https://mivb.openplanner.team/stops/2241G", "https://mivb.openplanner.team/stops/6214"], ["https://mivb.openplanner.team/stops/3468", "https://mivb.openplanner.team/stops/3704"], ["https://mivb.openplanner.team/stops/0040518", "https://mivb.openplanner.team/stops/0040618"], ["https://mivb.openplanner.team/stops/1402B", "https://mivb.openplanner.team/stops/1463"], ["https://mivb.openplanner.team/stops/0320343", "https://mivb.openplanner.team/stops/0320443"], ["https://mivb.openplanner.team/stops/2810", "https://mivb.openplanner.team/stops/6122"], ["https://mivb.openplanner.team/stops/5015", "https://mivb.openplanner.team/stops/5089"], ["https://mivb.openplanner.team/stops/1835", "https://mivb.openplanner.team/stops/6474F"], ["https://mivb.openplanner.team/stops/1627", "https://mivb.openplanner.team/stops/5519"], ["https://mivb.openplanner.team/stops/5272F", "https://mivb.openplanner.team/stops/5287"], ["https://mivb.openplanner.team/stops/5308", "https://mivb.openplanner.team/stops/5308F"], ["https://mivb.openplanner.team/stops/5274F", "https://mivb.openplanner.team/stops/5279F"], ["https://mivb.openplanner.team/stops/6070", "https://mivb.openplanner.team/stops/8733"], ["https://mivb.openplanner.team/stops/1156", "https://mivb.openplanner.team/stops/1156T"], ["https://mivb.openplanner.team/stops/1211B", "https://mivb.openplanner.team/stops/7720203"], ["https://mivb.openplanner.team/stops/5611", "https://mivb.openplanner.team/stops/6112"], ["https://mivb.openplanner.team/stops/2410", "https://mivb.openplanner.team/stops/5848"], ["https://mivb.openplanner.team/stops/2306", "https://mivb.openplanner.team/stops/2414"], ["https://mivb.openplanner.team/stops/1145", "https://mivb.openplanner.team/stops/3230F"], ["https://mivb.openplanner.team/stops/5220F", "https://mivb.openplanner.team/stops/9959F"], ["https://mivb.openplanner.team/stops/1136", "https://mivb.openplanner.team/stops/0070521"], ["https://mivb.openplanner.team/stops/5754", "https://mivb.openplanner.team/stops/5921G"], ["https://mivb.openplanner.team/stops/0704", "https://mivb.openplanner.team/stops/0650265"], ["https://mivb.openplanner.team/stops/1510", "https://mivb.openplanner.team/stops/2922"], ["https://mivb.openplanner.team/stops/1514", "https://mivb.openplanner.team/stops/1565"], ["https://mivb.openplanner.team/stops/1949", "https://mivb.openplanner.team/stops/1961B"], ["https://mivb.openplanner.team/stops/1769", "https://mivb.openplanner.team/stops/1981"], ["https://mivb.openplanner.team/stops/1099", "https://mivb.openplanner.team/stops/5174"], ["https://mivb.openplanner.team/stops/1204", "https://mivb.openplanner.team/stops/3755"], ["https://mivb.openplanner.team/stops/1852", "https://mivb.openplanner.team/stops/5659"], ["https://mivb.openplanner.team/stops/2002", "https://mivb.openplanner.team/stops/5032G"], ["https://mivb.openplanner.team/stops/4287", "https://mivb.openplanner.team/stops/4288"], ["https://mivb.openplanner.team/stops/5284F", "https://mivb.openplanner.team/stops/6469"], ["https://mivb.openplanner.team/stops/5711F", "https://mivb.openplanner.team/stops/5712F"], ["https://mivb.openplanner.team/stops/2409", "https://mivb.openplanner.team/stops/5849"], ["https://mivb.openplanner.team/stops/9979B", "https://mivb.openplanner.team/stops/39"], ["https://mivb.openplanner.team/stops/1319", "https://mivb.openplanner.team/stops/1476"], ["https://mivb.openplanner.team/stops/2556", "https://mivb.openplanner.team/stops/3681"], ["https://mivb.openplanner.team/stops/8381", "https://mivb.openplanner.team/stops/8733"], ["https://mivb.openplanner.team/stops/1857", "https://mivb.openplanner.team/stops/5224F"], ["https://mivb.openplanner.team/stops/4072", "https://mivb.openplanner.team/stops/4221"], ["https://mivb.openplanner.team/stops/8022", "https://mivb.openplanner.team/stops/0020416"], ["https://mivb.openplanner.team/stops/1816", "https://mivb.openplanner.team/stops/5287"], ["https://mivb.openplanner.team/stops/2259F", "https://mivb.openplanner.team/stops/7720203"], ["https://mivb.openplanner.team/stops/3304", "https://mivb.openplanner.team/stops/5045"], ["https://mivb.openplanner.team/stops/0704", "https://mivb.openplanner.team/stops/2336G"], ["https://mivb.openplanner.team/stops/5001F", "https://mivb.openplanner.team/stops/5776"], ["https://mivb.openplanner.team/stops/5776", "https://mivb.openplanner.team/stops/6481"], ["https://mivb.openplanner.team/stops/3122", "https://mivb.openplanner.team/stops/6112"], ["https://mivb.openplanner.team/stops/1515", "https://mivb.openplanner.team/stops/3707"], ["https://mivb.openplanner.team/stops/3408", "https://mivb.openplanner.team/stops/5306G"], ["https://mivb.openplanner.team/stops/5315", "https://mivb.openplanner.team/stops/6457F"], ["https://mivb.openplanner.team/stops/2315", "https://mivb.openplanner.team/stops/2359"], ["https://mivb.openplanner.team/stops/1820", "https://mivb.openplanner.team/stops/2282"], ["https://mivb.openplanner.team/stops/2371", "https://mivb.openplanner.team/stops/4252"], ["https://mivb.openplanner.team/stops/3125", "https://mivb.openplanner.team/stops/5200F"], ["https://mivb.openplanner.team/stops/1522", "https://mivb.openplanner.team/stops/1557"], ["https://mivb.openplanner.team/stops/6805F", "https://mivb.openplanner.team/stops/6864F"], ["https://mivb.openplanner.team/stops/1208", "https://mivb.openplanner.team/stops/1255"], ["https://mivb.openplanner.team/stops/1144", "https://mivb.openplanner.team/stops/6447"], ["https://mivb.openplanner.team/stops/1707", "https://mivb.openplanner.team/stops/3633B"], ["https://mivb.openplanner.team/stops/5421", "https://mivb.openplanner.team/stops/5453"], ["https://mivb.openplanner.team/stops/3520", "https://mivb.openplanner.team/stops/0230434"], ["https://mivb.openplanner.team/stops/2980", "https://mivb.openplanner.team/stops/3411"], ["https://mivb.openplanner.team/stops/2725", "https://mivb.openplanner.team/stops/2753"], ["https://mivb.openplanner.team/stops/1117", "https://mivb.openplanner.team/stops/8371"], ["https://mivb.openplanner.team/stops/1278", "https://mivb.openplanner.team/stops/1806"], ["https://mivb.openplanner.team/stops/6705F", "https://mivb.openplanner.team/stops/6806F"], ["https://mivb.openplanner.team/stops/6012G", "https://mivb.openplanner.team/stops/6201F"], ["https://mivb.openplanner.team/stops/2659", "https://mivb.openplanner.team/stops/9649"], ["https://mivb.openplanner.team/stops/1533", "https://mivb.openplanner.team/stops/1539"], ["https://mivb.openplanner.team/stops/9701", "https://mivb.openplanner.team/stops/9728"], ["https://mivb.openplanner.team/stops/1160", "https://mivb.openplanner.team/stops/8042"], ["https://mivb.openplanner.team/stops/0660266", "https://mivb.openplanner.team/stops/0723"], ["https://mivb.openplanner.team/stops/2302", "https://mivb.openplanner.team/stops/8011"], ["https://mivb.openplanner.team/stops/2452", "https://mivb.openplanner.team/stops/5756"], ["https://mivb.openplanner.team/stops/2123", "https://mivb.openplanner.team/stops/5253"], ["https://mivb.openplanner.team/stops/1853", "https://mivb.openplanner.team/stops/1854"], ["https://mivb.openplanner.team/stops/1051", "https://mivb.openplanner.team/stops/1052"], ["https://mivb.openplanner.team/stops/1018", "https://mivb.openplanner.team/stops/8641"], ["https://mivb.openplanner.team/stops/0040518", "https://mivb.openplanner.team/stops/0410146"], ["https://mivb.openplanner.team/stops/1687F", "https://mivb.openplanner.team/stops/4071"], ["https://mivb.openplanner.team/stops/5100B", "https://mivb.openplanner.team/stops/5123"], ["https://mivb.openplanner.team/stops/2252", "https://mivb.openplanner.team/stops/8692"], ["https://mivb.openplanner.team/stops/0440249", "https://mivb.openplanner.team/stops/0440349"], ["https://mivb.openplanner.team/stops/4002B", "https://mivb.openplanner.team/stops/4059"], ["https://mivb.openplanner.team/stops/0520161", "https://mivb.openplanner.team/stops/1030"], ["https://mivb.openplanner.team/stops/1687F", "https://mivb.openplanner.team/stops/4223"], ["https://mivb.openplanner.team/stops/4502F", "https://mivb.openplanner.team/stops/5920C"], ["https://mivb.openplanner.team/stops/3172", "https://mivb.openplanner.team/stops/5867F"], ["https://mivb.openplanner.team/stops/1625", "https://mivb.openplanner.team/stops/1635"], ["https://mivb.openplanner.team/stops/3221", "https://mivb.openplanner.team/stops/0270414"], ["https://mivb.openplanner.team/stops/2243F", "https://mivb.openplanner.team/stops/3761"], ["https://mivb.openplanner.team/stops/2660", "https://mivb.openplanner.team/stops/9649"], ["https://mivb.openplanner.team/stops/5516", "https://mivb.openplanner.team/stops/5523"], ["https://mivb.openplanner.team/stops/2256B", "https://mivb.openplanner.team/stops/2256F"], ["https://mivb.openplanner.team/stops/2309C", "https://mivb.openplanner.team/stops/5707"], ["https://mivb.openplanner.team/stops/2950", "https://mivb.openplanner.team/stops/6077F"], ["https://mivb.openplanner.team/stops/5016F", "https://mivb.openplanner.team/stops/5470"], ["https://mivb.openplanner.team/stops/8272", "https://mivb.openplanner.team/stops/0270114"], ["https://mivb.openplanner.team/stops/6024", "https://mivb.openplanner.team/stops/6054B"], ["https://mivb.openplanner.team/stops/2254", "https://mivb.openplanner.team/stops/6857"], ["https://mivb.openplanner.team/stops/5227F", "https://mivb.openplanner.team/stops/5230F"], ["https://mivb.openplanner.team/stops/8111", "https://mivb.openplanner.team/stops/0110225"], ["https://mivb.openplanner.team/stops/2153", "https://mivb.openplanner.team/stops/5053G"], ["https://mivb.openplanner.team/stops/1199F", "https://mivb.openplanner.team/stops/4159"], ["https://mivb.openplanner.team/stops/2533", "https://mivb.openplanner.team/stops/2562B"], ["https://mivb.openplanner.team/stops/1652", "https://mivb.openplanner.team/stops/2153"], ["https://mivb.openplanner.team/stops/1476", "https://mivb.openplanner.team/stops/0060520"], ["https://mivb.openplanner.team/stops/2220F", "https://mivb.openplanner.team/stops/2562B"], ["https://mivb.openplanner.team/stops/0810369", "https://mivb.openplanner.team/stops/1153"], ["https://mivb.openplanner.team/stops/2867", "https://mivb.openplanner.team/stops/2872"], ["https://mivb.openplanner.team/stops/2043", "https://mivb.openplanner.team/stops/2084"], ["https://mivb.openplanner.team/stops/2565", "https://mivb.openplanner.team/stops/3234"], ["https://mivb.openplanner.team/stops/1764", "https://mivb.openplanner.team/stops/6156F"], ["https://mivb.openplanner.team/stops/1585", "https://mivb.openplanner.team/stops/1640B"], ["https://mivb.openplanner.team/stops/3118", "https://mivb.openplanner.team/stops/6018"], ["https://mivb.openplanner.team/stops/1466", "https://mivb.openplanner.team/stops/1467"], ["https://mivb.openplanner.team/stops/3222", "https://mivb.openplanner.team/stops/3260"], ["https://mivb.openplanner.team/stops/2965", "https://mivb.openplanner.team/stops/6109"], ["https://mivb.openplanner.team/stops/1738", "https://mivb.openplanner.team/stops/2112"], ["https://mivb.openplanner.team/stops/2539F", "https://mivb.openplanner.team/stops/2541"], ["https://mivb.openplanner.team/stops/3751", "https://mivb.openplanner.team/stops/3752"], ["https://mivb.openplanner.team/stops/5402", "https://mivb.openplanner.team/stops/9047"], ["https://mivb.openplanner.team/stops/1756B", "https://mivb.openplanner.team/stops/1757"], ["https://mivb.openplanner.team/stops/3449", "https://mivb.openplanner.team/stops/3454"], ["https://mivb.openplanner.team/stops/2610", "https://mivb.openplanner.team/stops/2611"], ["https://mivb.openplanner.team/stops/5039", "https://mivb.openplanner.team/stops/5044"], ["https://mivb.openplanner.team/stops/3211", "https://mivb.openplanner.team/stops/0350240"], ["https://mivb.openplanner.team/stops/3520", "https://mivb.openplanner.team/stops/4298"], ["https://mivb.openplanner.team/stops/2822", "https://mivb.openplanner.team/stops/2852"], ["https://mivb.openplanner.team/stops/1881", "https://mivb.openplanner.team/stops/3156"], ["https://mivb.openplanner.team/stops/1928F", "https://mivb.openplanner.team/stops/1964"], ["https://mivb.openplanner.team/stops/5053B", "https://mivb.openplanner.team/stops/5053G"], ["https://mivb.openplanner.team/stops/2457", "https://mivb.openplanner.team/stops/5848"], ["https://mivb.openplanner.team/stops/3235", "https://mivb.openplanner.team/stops/4006G"], ["https://mivb.openplanner.team/stops/1798", "https://mivb.openplanner.team/stops/5067"], ["https://mivb.openplanner.team/stops/2715", "https://mivb.openplanner.team/stops/2762"], ["https://mivb.openplanner.team/stops/5701", "https://mivb.openplanner.team/stops/5776"], ["https://mivb.openplanner.team/stops/1467", "https://mivb.openplanner.team/stops/1768"], ["https://mivb.openplanner.team/stops/1900", "https://mivb.openplanner.team/stops/1901"], ["https://mivb.openplanner.team/stops/2204", "https://mivb.openplanner.team/stops/2207"], ["https://mivb.openplanner.team/stops/0906", "https://mivb.openplanner.team/stops/0900368"], ["https://mivb.openplanner.team/stops/1737", "https://mivb.openplanner.team/stops/1738"], ["https://mivb.openplanner.team/stops/2058", "https://mivb.openplanner.team/stops/5269F"], ["https://mivb.openplanner.team/stops/6068", "https://mivb.openplanner.team/stops/9979B"], ["https://mivb.openplanner.team/stops/5528F", "https://mivb.openplanner.team/stops/9164"], ["https://mivb.openplanner.team/stops/3239", "https://mivb.openplanner.team/stops/3252"], ["https://mivb.openplanner.team/stops/0806", "https://mivb.openplanner.team/stops/8082"], ["https://mivb.openplanner.team/stops/2271", "https://mivb.openplanner.team/stops/9026"], ["https://mivb.openplanner.team/stops/3182", "https://mivb.openplanner.team/stops/9292"], ["https://mivb.openplanner.team/stops/1422", "https://mivb.openplanner.team/stops/1451"], ["https://mivb.openplanner.team/stops/1863", "https://mivb.openplanner.team/stops/1864"], ["https://mivb.openplanner.team/stops/5298", "https://mivb.openplanner.team/stops/5298F"], ["https://mivb.openplanner.team/stops/1745", "https://mivb.openplanner.team/stops/4072"], ["https://mivb.openplanner.team/stops/6117", "https://mivb.openplanner.team/stops/0070321"], ["https://mivb.openplanner.team/stops/2939B", "https://mivb.openplanner.team/stops/5152"], ["https://mivb.openplanner.team/stops/6423F", "https://mivb.openplanner.team/stops/6424F"], ["https://mivb.openplanner.team/stops/3009", "https://mivb.openplanner.team/stops/6754"], ["https://mivb.openplanner.team/stops/1379", "https://mivb.openplanner.team/stops/1384"], ["https://mivb.openplanner.team/stops/1834", "https://mivb.openplanner.team/stops/5554"], ["https://mivb.openplanner.team/stops/3105", "https://mivb.openplanner.team/stops/5320"], ["https://mivb.openplanner.team/stops/2345", "https://mivb.openplanner.team/stops/5357"], ["https://mivb.openplanner.team/stops/1746", "https://mivb.openplanner.team/stops/1755"], ["https://mivb.openplanner.team/stops/1143", "https://mivb.openplanner.team/stops/9751"], ["https://mivb.openplanner.team/stops/1080", "https://mivb.openplanner.team/stops/1743"], ["https://mivb.openplanner.team/stops/5776", "https://mivb.openplanner.team/stops/9707"], ["https://mivb.openplanner.team/stops/1303", "https://mivb.openplanner.team/stops/6864F"], ["https://mivb.openplanner.team/stops/1201", "https://mivb.openplanner.team/stops/4600"], ["https://mivb.openplanner.team/stops/2918", "https://mivb.openplanner.team/stops/2974"], ["https://mivb.openplanner.team/stops/4857B", "https://mivb.openplanner.team/stops/5029"], ["https://mivb.openplanner.team/stops/8784", "https://mivb.openplanner.team/stops/9027"], ["https://mivb.openplanner.team/stops/2900", "https://mivb.openplanner.team/stops/2900F"], ["https://mivb.openplanner.team/stops/2018", "https://mivb.openplanner.team/stops/5418"], ["https://mivb.openplanner.team/stops/3225F", "https://mivb.openplanner.team/stops/7740201"], ["https://mivb.openplanner.team/stops/4449", "https://mivb.openplanner.team/stops/4454"], ["https://mivb.openplanner.team/stops/1108", "https://mivb.openplanner.team/stops/1199F"], ["https://mivb.openplanner.team/stops/0350140", "https://mivb.openplanner.team/stops/0350740"], ["https://mivb.openplanner.team/stops/0501", "https://mivb.openplanner.team/stops/0010415"], ["https://mivb.openplanner.team/stops/3611F", "https://mivb.openplanner.team/stops/3612F"], ["https://mivb.openplanner.team/stops/1606", "https://mivb.openplanner.team/stops/1745"], ["https://mivb.openplanner.team/stops/1803B", "https://mivb.openplanner.team/stops/3953"], ["https://mivb.openplanner.team/stops/5175", "https://mivb.openplanner.team/stops/5718"], ["https://mivb.openplanner.team/stops/1561", "https://mivb.openplanner.team/stops/3952"], ["https://mivb.openplanner.team/stops/1868", "https://mivb.openplanner.team/stops/6117"], ["https://mivb.openplanner.team/stops/4112", "https://mivb.openplanner.team/stops/4157"], ["https://mivb.openplanner.team/stops/6369", "https://mivb.openplanner.team/stops/6409F"], ["https://mivb.openplanner.team/stops/3610G", "https://mivb.openplanner.team/stops/8651"], ["https://mivb.openplanner.team/stops/1825", "https://mivb.openplanner.team/stops/1851"], ["https://mivb.openplanner.team/stops/4258", "https://mivb.openplanner.team/stops/8784"], ["https://mivb.openplanner.team/stops/1239", "https://mivb.openplanner.team/stops/1240"], ["https://mivb.openplanner.team/stops/3163", "https://mivb.openplanner.team/stops/6019"], ["https://mivb.openplanner.team/stops/1972", "https://mivb.openplanner.team/stops/5211"], ["https://mivb.openplanner.team/stops/1180", "https://mivb.openplanner.team/stops/8471"], ["https://mivb.openplanner.team/stops/4408", "https://mivb.openplanner.team/stops/0250536"], ["https://mivb.openplanner.team/stops/1077", "https://mivb.openplanner.team/stops/5288"], ["https://mivb.openplanner.team/stops/3705", "https://mivb.openplanner.team/stops/3761"], ["https://mivb.openplanner.team/stops/3334F", "https://mivb.openplanner.team/stops/3335F"], ["https://mivb.openplanner.team/stops/1544", "https://mivb.openplanner.team/stops/5502"], ["https://mivb.openplanner.team/stops/1734", "https://mivb.openplanner.team/stops/3532"], ["https://mivb.openplanner.team/stops/1953", "https://mivb.openplanner.team/stops/2161"], ["https://mivb.openplanner.team/stops/7820453", "https://mivb.openplanner.team/stops/9051F"], ["https://mivb.openplanner.team/stops/1659", "https://mivb.openplanner.team/stops/1660B"], ["https://mivb.openplanner.team/stops/2181", "https://mivb.openplanner.team/stops/2245"], ["https://mivb.openplanner.team/stops/3225F", "https://mivb.openplanner.team/stops/3257"], ["https://mivb.openplanner.team/stops/5056", "https://mivb.openplanner.team/stops/5057"], ["https://mivb.openplanner.team/stops/2002", "https://mivb.openplanner.team/stops/2010"], ["https://mivb.openplanner.team/stops/5165", "https://mivb.openplanner.team/stops/6805F"], ["https://mivb.openplanner.team/stops/0473F", "https://mivb.openplanner.team/stops/1183"], ["https://mivb.openplanner.team/stops/3288", "https://mivb.openplanner.team/stops/3328"], ["https://mivb.openplanner.team/stops/1685F", "https://mivb.openplanner.team/stops/1727"], ["https://mivb.openplanner.team/stops/6451", "https://mivb.openplanner.team/stops/6454"], ["https://mivb.openplanner.team/stops/2296", "https://mivb.openplanner.team/stops/8021"], ["https://mivb.openplanner.team/stops/6018", "https://mivb.openplanner.team/stops/6019"], ["https://mivb.openplanner.team/stops/1733", "https://mivb.openplanner.team/stops/1777B"], ["https://mivb.openplanner.team/stops/2402", "https://mivb.openplanner.team/stops/0340341"], ["https://mivb.openplanner.team/stops/3273", "https://mivb.openplanner.team/stops/3765"], ["https://mivb.openplanner.team/stops/8031", "https://mivb.openplanner.team/stops/0030117"], ["https://mivb.openplanner.team/stops/1115", "https://mivb.openplanner.team/stops/1793"], ["https://mivb.openplanner.team/stops/1126", "https://mivb.openplanner.team/stops/1168"], ["https://mivb.openplanner.team/stops/0471", "https://mivb.openplanner.team/stops/0470751"], ["https://mivb.openplanner.team/stops/5288", "https://mivb.openplanner.team/stops/6168F"], ["https://mivb.openplanner.team/stops/1240", "https://mivb.openplanner.team/stops/5119"], ["https://mivb.openplanner.team/stops/3111", "https://mivb.openplanner.team/stops/3165"], ["https://mivb.openplanner.team/stops/4295", "https://mivb.openplanner.team/stops/0240535"], ["https://mivb.openplanner.team/stops/3399", "https://mivb.openplanner.team/stops/0060520"], ["https://mivb.openplanner.team/stops/6068", "https://mivb.openplanner.team/stops/6806F"], ["https://mivb.openplanner.team/stops/9802", "https://mivb.openplanner.team/stops/9825F"], ["https://mivb.openplanner.team/stops/4309", "https://mivb.openplanner.team/stops/5459"], ["https://mivb.openplanner.team/stops/3407", "https://mivb.openplanner.team/stops/5867F"], ["https://mivb.openplanner.team/stops/1736", "https://mivb.openplanner.team/stops/2151"], ["https://mivb.openplanner.team/stops/2234", "https://mivb.openplanner.team/stops/2268"], ["https://mivb.openplanner.team/stops/2753", "https://mivb.openplanner.team/stops/5270F"], ["https://mivb.openplanner.team/stops/4407", "https://mivb.openplanner.team/stops/0250236"], ["https://mivb.openplanner.team/stops/2262", "https://mivb.openplanner.team/stops/6659F"], ["https://mivb.openplanner.team/stops/2418", "https://mivb.openplanner.team/stops/0350740"], ["https://mivb.openplanner.team/stops/9707", "https://mivb.openplanner.team/stops/9787"], ["https://mivb.openplanner.team/stops/4152", "https://mivb.openplanner.team/stops/5109"], ["https://mivb.openplanner.team/stops/1723B", "https://mivb.openplanner.team/stops/3524"], ["https://mivb.openplanner.team/stops/2856B", "https://mivb.openplanner.team/stops/9609"], ["https://mivb.openplanner.team/stops/1526", "https://mivb.openplanner.team/stops/1527"], ["https://mivb.openplanner.team/stops/1449", "https://mivb.openplanner.team/stops/1529"], ["https://mivb.openplanner.team/stops/2017", "https://mivb.openplanner.team/stops/2071"], ["https://mivb.openplanner.team/stops/3323", "https://mivb.openplanner.team/stops/6445"], ["https://mivb.openplanner.team/stops/5913", "https://mivb.openplanner.team/stops/5965"], ["https://mivb.openplanner.team/stops/1051", "https://mivb.openplanner.team/stops/2305"], ["https://mivb.openplanner.team/stops/2515B", "https://mivb.openplanner.team/stops/5079"], ["https://mivb.openplanner.team/stops/1726", "https://mivb.openplanner.team/stops/6312"], ["https://mivb.openplanner.team/stops/1684F", "https://mivb.openplanner.team/stops/1727"], ["https://mivb.openplanner.team/stops/2330", "https://mivb.openplanner.team/stops/2352"], ["https://mivb.openplanner.team/stops/2338F", "https://mivb.openplanner.team/stops/5740"], ["https://mivb.openplanner.team/stops/1875", "https://mivb.openplanner.team/stops/0100324"], ["https://mivb.openplanner.team/stops/1089", "https://mivb.openplanner.team/stops/3005"], ["https://mivb.openplanner.team/stops/5116", "https://mivb.openplanner.team/stops/5151"], ["https://mivb.openplanner.team/stops/2514", "https://mivb.openplanner.team/stops/3234"], ["https://mivb.openplanner.team/stops/5706", "https://mivb.openplanner.team/stops/5771"], ["https://mivb.openplanner.team/stops/5817F", "https://mivb.openplanner.team/stops/5917F"], ["https://mivb.openplanner.team/stops/3199", "https://mivb.openplanner.team/stops/3280"], ["https://mivb.openplanner.team/stops/9725", "https://mivb.openplanner.team/stops/9726"], ["https://mivb.openplanner.team/stops/5729", "https://mivb.openplanner.team/stops/5731F"], ["https://mivb.openplanner.team/stops/1454", "https://mivb.openplanner.team/stops/0120526"], ["https://mivb.openplanner.team/stops/1384", "https://mivb.openplanner.team/stops/1550"], ["https://mivb.openplanner.team/stops/9600B", "https://mivb.openplanner.team/stops/9727"], ["https://mivb.openplanner.team/stops/1754", "https://mivb.openplanner.team/stops/0260137"], ["https://mivb.openplanner.team/stops/4408", "https://mivb.openplanner.team/stops/0250136"], ["https://mivb.openplanner.team/stops/5759F", "https://mivb.openplanner.team/stops/5761"], ["https://mivb.openplanner.team/stops/6103F", "https://mivb.openplanner.team/stops/6168F"], ["https://mivb.openplanner.team/stops/1874", "https://mivb.openplanner.team/stops/6476"], ["https://mivb.openplanner.team/stops/1113", "https://mivb.openplanner.team/stops/1139"], ["https://mivb.openplanner.team/stops/5805", "https://mivb.openplanner.team/stops/7998"], ["https://mivb.openplanner.team/stops/5601", "https://mivb.openplanner.team/stops/5658"], ["https://mivb.openplanner.team/stops/8442", "https://mivb.openplanner.team/stops/0440649"], ["https://mivb.openplanner.team/stops/1250", "https://mivb.openplanner.team/stops/4856B"], ["https://mivb.openplanner.team/stops/1962", "https://mivb.openplanner.team/stops/1962F"], ["https://mivb.openplanner.team/stops/1874", "https://mivb.openplanner.team/stops/5560"], ["https://mivb.openplanner.team/stops/1010", "https://mivb.openplanner.team/stops/1678F"], ["https://mivb.openplanner.team/stops/4307", "https://mivb.openplanner.team/stops/4362"], ["https://mivb.openplanner.team/stops/1244", "https://mivb.openplanner.team/stops/0290212"], ["https://mivb.openplanner.team/stops/2104", "https://mivb.openplanner.team/stops/2151"], ["https://mivb.openplanner.team/stops/1821", "https://mivb.openplanner.team/stops/1834"], ["https://mivb.openplanner.team/stops/1674F", "https://mivb.openplanner.team/stops/2572"], ["https://mivb.openplanner.team/stops/1144", "https://mivb.openplanner.team/stops/3502"], ["https://mivb.openplanner.team/stops/1402B", "https://mivb.openplanner.team/stops/1464"], ["https://mivb.openplanner.team/stops/1065", "https://mivb.openplanner.team/stops/6867F"], ["https://mivb.openplanner.team/stops/0430248", "https://mivb.openplanner.team/stops/0431048"], ["https://mivb.openplanner.team/stops/2145", "https://mivb.openplanner.team/stops/2757C"], ["https://mivb.openplanner.team/stops/1110", "https://mivb.openplanner.team/stops/9657"], ["https://mivb.openplanner.team/stops/1129", "https://mivb.openplanner.team/stops/1165"], ["https://mivb.openplanner.team/stops/6070", "https://mivb.openplanner.team/stops/8743"], ["https://mivb.openplanner.team/stops/8061", "https://mivb.openplanner.team/stops/8062"], ["https://mivb.openplanner.team/stops/1403", "https://mivb.openplanner.team/stops/3707"], ["https://mivb.openplanner.team/stops/2363", "https://mivb.openplanner.team/stops/2852"], ["https://mivb.openplanner.team/stops/0472", "https://mivb.openplanner.team/stops/0470351"], ["https://mivb.openplanner.team/stops/4502F", "https://mivb.openplanner.team/stops/5754"], ["https://mivb.openplanner.team/stops/1136", "https://mivb.openplanner.team/stops/0070221"], ["https://mivb.openplanner.team/stops/1586", "https://mivb.openplanner.team/stops/29"], ["https://mivb.openplanner.team/stops/2109B", "https://mivb.openplanner.team/stops/5032B"], ["https://mivb.openplanner.team/stops/1558", "https://mivb.openplanner.team/stops/3958"], ["https://mivb.openplanner.team/stops/4213", "https://mivb.openplanner.team/stops/0460250"], ["https://mivb.openplanner.team/stops/3954", "https://mivb.openplanner.team/stops/3958"], ["https://mivb.openplanner.team/stops/5312", "https://mivb.openplanner.team/stops/32"], ["https://mivb.openplanner.team/stops/3257F", "https://mivb.openplanner.team/stops/4594"], ["https://mivb.openplanner.team/stops/1949", "https://mivb.openplanner.team/stops/1959"], ["https://mivb.openplanner.team/stops/3515", "https://mivb.openplanner.team/stops/3557"], ["https://mivb.openplanner.team/stops/1273", "https://mivb.openplanner.team/stops/8061"], ["https://mivb.openplanner.team/stops/1760", "https://mivb.openplanner.team/stops/0230234"], ["https://mivb.openplanner.team/stops/1320", "https://mivb.openplanner.team/stops/1540"], ["https://mivb.openplanner.team/stops/1852", "https://mivb.openplanner.team/stops/5658"], ["https://mivb.openplanner.team/stops/0320243", "https://mivb.openplanner.team/stops/0370543"], ["https://mivb.openplanner.team/stops/8041", "https://mivb.openplanner.team/stops/0040418"], ["https://mivb.openplanner.team/stops/2002", "https://mivb.openplanner.team/stops/5032B"], ["https://mivb.openplanner.team/stops/8141", "https://mivb.openplanner.team/stops/0140128"], ["https://mivb.openplanner.team/stops/1585", "https://mivb.openplanner.team/stops/0130227"], ["https://mivb.openplanner.team/stops/2140", "https://mivb.openplanner.team/stops/5032B"], ["https://mivb.openplanner.team/stops/4253", "https://mivb.openplanner.team/stops/5013B"], ["https://mivb.openplanner.team/stops/5074F", "https://mivb.openplanner.team/stops/58"], ["https://mivb.openplanner.team/stops/3567", "https://mivb.openplanner.team/stops/6310F"], ["https://mivb.openplanner.team/stops/0470F", "https://mivb.openplanner.team/stops/0472"], ["https://mivb.openplanner.team/stops/0506", "https://mivb.openplanner.team/stops/2301"], ["https://mivb.openplanner.team/stops/3460", "https://mivb.openplanner.team/stops/3961"], ["https://mivb.openplanner.team/stops/0610463", "https://mivb.openplanner.team/stops/1227"], ["https://mivb.openplanner.team/stops/8221", "https://mivb.openplanner.team/stops/0220133"], ["https://mivb.openplanner.team/stops/3961", "https://mivb.openplanner.team/stops/4558"], ["https://mivb.openplanner.team/stops/1792", "https://mivb.openplanner.team/stops/4074B"], ["https://mivb.openplanner.team/stops/3705", "https://mivb.openplanner.team/stops/5274F"], ["https://mivb.openplanner.team/stops/2550", "https://mivb.openplanner.team/stops/3856"], ["https://mivb.openplanner.team/stops/5721G", "https://mivb.openplanner.team/stops/5923"], ["https://mivb.openplanner.team/stops/1668", "https://mivb.openplanner.team/stops/5655"], ["https://mivb.openplanner.team/stops/3173", "https://mivb.openplanner.team/stops/5802"], ["https://mivb.openplanner.team/stops/2817", "https://mivb.openplanner.team/stops/5771"], ["https://mivb.openplanner.team/stops/2259F", "https://mivb.openplanner.team/stops/7720103"], ["https://mivb.openplanner.team/stops/3755", "https://mivb.openplanner.team/stops/6799F"], ["https://mivb.openplanner.team/stops/3230F", "https://mivb.openplanner.team/stops/8731"], ["https://mivb.openplanner.team/stops/3061", "https://mivb.openplanner.team/stops/5910"], ["https://mivb.openplanner.team/stops/1410", "https://mivb.openplanner.team/stops/1859"], ["https://mivb.openplanner.team/stops/1257", "https://mivb.openplanner.team/stops/2579"], ["https://mivb.openplanner.team/stops/3463", "https://mivb.openplanner.team/stops/3900"], ["https://mivb.openplanner.team/stops/0536", "https://mivb.openplanner.team/stops/5714"], ["https://mivb.openplanner.team/stops/6158", "https://mivb.openplanner.team/stops/9952G"], ["https://mivb.openplanner.team/stops/6190", "https://mivb.openplanner.team/stops/6191"], ["https://mivb.openplanner.team/stops/2315", "https://mivb.openplanner.team/stops/2360"], ["https://mivb.openplanner.team/stops/2071", "https://mivb.openplanner.team/stops/2085"], ["https://mivb.openplanner.team/stops/5024", "https://mivb.openplanner.team/stops/5857"], ["https://mivb.openplanner.team/stops/2553", "https://mivb.openplanner.team/stops/3852"], ["https://mivb.openplanner.team/stops/3104", "https://mivb.openplanner.team/stops/5911"], ["https://mivb.openplanner.team/stops/3513", "https://mivb.openplanner.team/stops/3559"], ["https://mivb.openplanner.team/stops/1144", "https://mivb.openplanner.team/stops/6445"], ["https://mivb.openplanner.team/stops/3903", "https://mivb.openplanner.team/stops/3954"], ["https://mivb.openplanner.team/stops/0310544", "https://mivb.openplanner.team/stops/0310644"], ["https://mivb.openplanner.team/stops/2725", "https://mivb.openplanner.team/stops/2752"], ["https://mivb.openplanner.team/stops/1387", "https://mivb.openplanner.team/stops/5518"], ["https://mivb.openplanner.team/stops/4116", "https://mivb.openplanner.team/stops/8763"], ["https://mivb.openplanner.team/stops/1278", "https://mivb.openplanner.team/stops/1805"], ["https://mivb.openplanner.team/stops/2283", "https://mivb.openplanner.team/stops/5531"], ["https://mivb.openplanner.team/stops/6702", "https://mivb.openplanner.team/stops/0290112"], ["https://mivb.openplanner.team/stops/2351F", "https://mivb.openplanner.team/stops/3510"], ["https://mivb.openplanner.team/stops/3417", "https://mivb.openplanner.team/stops/3450"], ["https://mivb.openplanner.team/stops/0310244", "https://mivb.openplanner.team/stops/0310344"], ["https://mivb.openplanner.team/stops/3851", "https://mivb.openplanner.team/stops/5719"], ["https://mivb.openplanner.team/stops/3111", "https://mivb.openplanner.team/stops/3414"], ["https://mivb.openplanner.team/stops/2902", "https://mivb.openplanner.team/stops/3304"], ["https://mivb.openplanner.team/stops/1818", "https://mivb.openplanner.team/stops/5556"], ["https://mivb.openplanner.team/stops/1874", "https://mivb.openplanner.team/stops/0100324"], ["https://mivb.openplanner.team/stops/5265F", "https://mivb.openplanner.team/stops/5266F"], ["https://mivb.openplanner.team/stops/6201F", "https://mivb.openplanner.team/stops/6260F"], ["https://mivb.openplanner.team/stops/9608", "https://mivb.openplanner.team/stops/9634"], ["https://mivb.openplanner.team/stops/4228", "https://mivb.openplanner.team/stops/7830352"], ["https://mivb.openplanner.team/stops/4344", "https://mivb.openplanner.team/stops/4347"], ["https://mivb.openplanner.team/stops/1110", "https://mivb.openplanner.team/stops/9677"], ["https://mivb.openplanner.team/stops/1614B", "https://mivb.openplanner.team/stops/1616"], ["https://mivb.openplanner.team/stops/0280213", "https://mivb.openplanner.team/stops/13"], ["https://mivb.openplanner.team/stops/6077F", "https://mivb.openplanner.team/stops/6078"], ["https://mivb.openplanner.team/stops/4502F", "https://mivb.openplanner.team/stops/5920H"], ["https://mivb.openplanner.team/stops/2207", "https://mivb.openplanner.team/stops/2271"], ["https://mivb.openplanner.team/stops/3156", "https://mivb.openplanner.team/stops/6113F"], ["https://mivb.openplanner.team/stops/1313", "https://mivb.openplanner.team/stops/5108"], ["https://mivb.openplanner.team/stops/2855", "https://mivb.openplanner.team/stops/5704F"], ["https://mivb.openplanner.team/stops/2142", "https://mivb.openplanner.team/stops/2148"], ["https://mivb.openplanner.team/stops/3525", "https://mivb.openplanner.team/stops/5407"], ["https://mivb.openplanner.team/stops/2243F", "https://mivb.openplanner.team/stops/3762"], ["https://mivb.openplanner.team/stops/2608", "https://mivb.openplanner.team/stops/2669F"], ["https://mivb.openplanner.team/stops/2950", "https://mivb.openplanner.team/stops/6078"], ["https://mivb.openplanner.team/stops/2309C", "https://mivb.openplanner.team/stops/5706"], ["https://mivb.openplanner.team/stops/6024", "https://mivb.openplanner.team/stops/6053"], ["https://mivb.openplanner.team/stops/2200F", "https://mivb.openplanner.team/stops/2318G"], ["https://mivb.openplanner.team/stops/3332", "https://mivb.openplanner.team/stops/0410446"], ["https://mivb.openplanner.team/stops/2242F", "https://mivb.openplanner.team/stops/2249"], ["https://mivb.openplanner.team/stops/1209", "https://mivb.openplanner.team/stops/4656"], ["https://mivb.openplanner.team/stops/1968", "https://mivb.openplanner.team/stops/4804B"], ["https://mivb.openplanner.team/stops/2204", "https://mivb.openplanner.team/stops/6123"], ["https://mivb.openplanner.team/stops/1803B", "https://mivb.openplanner.team/stops/1872B"], ["https://mivb.openplanner.team/stops/0050419", "https://mivb.openplanner.team/stops/0050519"], ["https://mivb.openplanner.team/stops/5288", "https://mivb.openplanner.team/stops/5291F"], ["https://mivb.openplanner.team/stops/1326", "https://mivb.openplanner.team/stops/1327"], ["https://mivb.openplanner.team/stops/5295", "https://mivb.openplanner.team/stops/6505"], ["https://mivb.openplanner.team/stops/3854B", "https://mivb.openplanner.team/stops/5963"], ["https://mivb.openplanner.team/stops/6302", "https://mivb.openplanner.team/stops/7762"], ["https://mivb.openplanner.team/stops/2203", "https://mivb.openplanner.team/stops/2305"], ["https://mivb.openplanner.team/stops/3163", "https://mivb.openplanner.team/stops/6369"], ["https://mivb.openplanner.team/stops/0100224", "https://mivb.openplanner.team/stops/9983"], ["https://mivb.openplanner.team/stops/3118", "https://mivb.openplanner.team/stops/6017"], ["https://mivb.openplanner.team/stops/3102", "https://mivb.openplanner.team/stops/5965"], ["https://mivb.openplanner.team/stops/4360", "https://mivb.openplanner.team/stops/4362"], ["https://mivb.openplanner.team/stops/2318G", "https://mivb.openplanner.team/stops/2810"], ["https://mivb.openplanner.team/stops/4002G", "https://mivb.openplanner.team/stops/4059"], ["https://mivb.openplanner.team/stops/7640311", "https://mivb.openplanner.team/stops/9677"], ["https://mivb.openplanner.team/stops/3107", "https://mivb.openplanner.team/stops/5760"], ["https://mivb.openplanner.team/stops/6022B", "https://mivb.openplanner.team/stops/6024"], ["https://mivb.openplanner.team/stops/5281G", "https://mivb.openplanner.team/stops/5556"], ["https://mivb.openplanner.team/stops/1629", "https://mivb.openplanner.team/stops/9577"], ["https://mivb.openplanner.team/stops/4221", "https://mivb.openplanner.team/stops/4259"], ["https://mivb.openplanner.team/stops/2415", "https://mivb.openplanner.team/stops/5854"], ["https://mivb.openplanner.team/stops/1674F", "https://mivb.openplanner.team/stops/1675F"], ["https://mivb.openplanner.team/stops/8722", "https://mivb.openplanner.team/stops/3"], ["https://mivb.openplanner.team/stops/0723", "https://mivb.openplanner.team/stops/6077F"], ["https://mivb.openplanner.team/stops/5039", "https://mivb.openplanner.team/stops/5045"], ["https://mivb.openplanner.team/stops/2721", "https://mivb.openplanner.team/stops/2760B"], ["https://mivb.openplanner.team/stops/2331F", "https://mivb.openplanner.team/stops/2465"], ["https://mivb.openplanner.team/stops/3211", "https://mivb.openplanner.team/stops/0350140"], ["https://mivb.openplanner.team/stops/1707", "https://mivb.openplanner.team/stops/2181"], ["https://mivb.openplanner.team/stops/2992", "https://mivb.openplanner.team/stops/9292"], ["https://mivb.openplanner.team/stops/4129", "https://mivb.openplanner.team/stops/9027"], ["https://mivb.openplanner.team/stops/1881", "https://mivb.openplanner.team/stops/3155"], ["https://mivb.openplanner.team/stops/1904", "https://mivb.openplanner.team/stops/0431048"], ["https://mivb.openplanner.team/stops/2535B", "https://mivb.openplanner.team/stops/5"], ["https://mivb.openplanner.team/stops/2322", "https://mivb.openplanner.team/stops/2938"], ["https://mivb.openplanner.team/stops/9605", "https://mivb.openplanner.team/stops/9631"], ["https://mivb.openplanner.team/stops/1258G", "https://mivb.openplanner.team/stops/5756F"], ["https://mivb.openplanner.team/stops/1158", "https://mivb.openplanner.team/stops/1402B"], ["https://mivb.openplanner.team/stops/2977", "https://mivb.openplanner.team/stops/2990"], ["https://mivb.openplanner.team/stops/3304", "https://mivb.openplanner.team/stops/7271"], ["https://mivb.openplanner.team/stops/3556", "https://mivb.openplanner.team/stops/0230434"], ["https://mivb.openplanner.team/stops/2018", "https://mivb.openplanner.team/stops/2074"], ["https://mivb.openplanner.team/stops/2071", "https://mivb.openplanner.team/stops/9876"], ["https://mivb.openplanner.team/stops/6120", "https://mivb.openplanner.team/stops/7604"], ["https://mivb.openplanner.team/stops/1723B", "https://mivb.openplanner.team/stops/1752"], ["https://mivb.openplanner.team/stops/2611", "https://mivb.openplanner.team/stops/2660"], ["https://mivb.openplanner.team/stops/1103", "https://mivb.openplanner.team/stops/1682F"], ["https://mivb.openplanner.team/stops/1131B", "https://mivb.openplanner.team/stops/1133"], ["https://mivb.openplanner.team/stops/1255", "https://mivb.openplanner.team/stops/6005"], ["https://mivb.openplanner.team/stops/5229F", "https://mivb.openplanner.team/stops/5230F"], ["https://mivb.openplanner.team/stops/1635", "https://mivb.openplanner.team/stops/2078"], ["https://mivb.openplanner.team/stops/5297B", "https://mivb.openplanner.team/stops/7690206"], ["https://mivb.openplanner.team/stops/2108", "https://mivb.openplanner.team/stops/5054F"], ["https://mivb.openplanner.team/stops/4206", "https://mivb.openplanner.team/stops/4260"], ["https://mivb.openplanner.team/stops/5721", "https://mivb.openplanner.team/stops/5722F"], ["https://mivb.openplanner.team/stops/1525", "https://mivb.openplanner.team/stops/2028"], ["https://mivb.openplanner.team/stops/1422", "https://mivb.openplanner.team/stops/1450"], ["https://mivb.openplanner.team/stops/1557", "https://mivb.openplanner.team/stops/3919"], ["https://mivb.openplanner.team/stops/1868", "https://mivb.openplanner.team/stops/1869"], ["https://mivb.openplanner.team/stops/2502", "https://mivb.openplanner.team/stops/2577"], ["https://mivb.openplanner.team/stops/2023", "https://mivb.openplanner.team/stops/2407"], ["https://mivb.openplanner.team/stops/8773", "https://mivb.openplanner.team/stops/7770158"], ["https://mivb.openplanner.team/stops/6117", "https://mivb.openplanner.team/stops/0070421"], ["https://mivb.openplanner.team/stops/1834", "https://mivb.openplanner.team/stops/5508"], ["https://mivb.openplanner.team/stops/3351", "https://mivb.openplanner.team/stops/6309F"], ["https://mivb.openplanner.team/stops/2912", "https://mivb.openplanner.team/stops/2980"], ["https://mivb.openplanner.team/stops/2345", "https://mivb.openplanner.team/stops/5317G"], ["https://mivb.openplanner.team/stops/1199F", "https://mivb.openplanner.team/stops/4006G"], ["https://mivb.openplanner.team/stops/3155", "https://mivb.openplanner.team/stops/4303"], ["https://mivb.openplanner.team/stops/1097", "https://mivb.openplanner.team/stops/2510"], ["https://mivb.openplanner.team/stops/1143", "https://mivb.openplanner.team/stops/9753"], ["https://mivb.openplanner.team/stops/1482", "https://mivb.openplanner.team/stops/1489"], ["https://mivb.openplanner.team/stops/5089", "https://mivb.openplanner.team/stops/0460150"], ["https://mivb.openplanner.team/stops/3467B", "https://mivb.openplanner.team/stops/5274F"], ["https://mivb.openplanner.team/stops/9779", "https://mivb.openplanner.team/stops/9787"], ["https://mivb.openplanner.team/stops/2142", "https://mivb.openplanner.team/stops/2759"], ["https://mivb.openplanner.team/stops/4132B", "https://mivb.openplanner.team/stops/7790356"], ["https://mivb.openplanner.team/stops/1354", "https://mivb.openplanner.team/stops/6119F"], ["https://mivb.openplanner.team/stops/1533", "https://mivb.openplanner.team/stops/3463"], ["https://mivb.openplanner.team/stops/1190", "https://mivb.openplanner.team/stops/1306F"], ["https://mivb.openplanner.team/stops/3204", "https://mivb.openplanner.team/stops/3279"], ["https://mivb.openplanner.team/stops/3222", "https://mivb.openplanner.team/stops/13"], ["https://mivb.openplanner.team/stops/4449", "https://mivb.openplanner.team/stops/4452"], ["https://mivb.openplanner.team/stops/4402", "https://mivb.openplanner.team/stops/4455"], ["https://mivb.openplanner.team/stops/1928", "https://mivb.openplanner.team/stops/1995"], ["https://mivb.openplanner.team/stops/2330", "https://mivb.openplanner.team/stops/2827"], ["https://mivb.openplanner.team/stops/1156T", "https://mivb.openplanner.team/stops/6053"], ["https://mivb.openplanner.team/stops/1850", "https://mivb.openplanner.team/stops/1851"], ["https://mivb.openplanner.team/stops/3323", "https://mivb.openplanner.team/stops/8021"], ["https://mivb.openplanner.team/stops/1738", "https://mivb.openplanner.team/stops/2156"], ["https://mivb.openplanner.team/stops/2014", "https://mivb.openplanner.team/stops/2077"], ["https://mivb.openplanner.team/stops/2023", "https://mivb.openplanner.team/stops/5158"], ["https://mivb.openplanner.team/stops/1914", "https://mivb.openplanner.team/stops/6406"], ["https://mivb.openplanner.team/stops/0501", "https://mivb.openplanner.team/stops/0010315"], ["https://mivb.openplanner.team/stops/1815", "https://mivb.openplanner.team/stops/1860"], ["https://mivb.openplanner.team/stops/1024", "https://mivb.openplanner.team/stops/2269"], ["https://mivb.openplanner.team/stops/1903", "https://mivb.openplanner.team/stops/1986"], ["https://mivb.openplanner.team/stops/1083", "https://mivb.openplanner.team/stops/0430948"], ["https://mivb.openplanner.team/stops/2859", "https://mivb.openplanner.team/stops/2867"], ["https://mivb.openplanner.team/stops/3551", "https://mivb.openplanner.team/stops/8241"], ["https://mivb.openplanner.team/stops/1728", "https://mivb.openplanner.team/stops/1880"], ["https://mivb.openplanner.team/stops/1406", "https://mivb.openplanner.team/stops/6053"], ["https://mivb.openplanner.team/stops/4258", "https://mivb.openplanner.team/stops/7780157"], ["https://mivb.openplanner.team/stops/2910", "https://mivb.openplanner.team/stops/3420"], ["https://mivb.openplanner.team/stops/2924", "https://mivb.openplanner.team/stops/2995"], ["https://mivb.openplanner.team/stops/2672", "https://mivb.openplanner.team/stops/5111B"], ["https://mivb.openplanner.team/stops/0670167", "https://mivb.openplanner.team/stops/1221"], ["https://mivb.openplanner.team/stops/3705", "https://mivb.openplanner.team/stops/3762"], ["https://mivb.openplanner.team/stops/4318", "https://mivb.openplanner.team/stops/4351"], ["https://mivb.openplanner.team/stops/3334F", "https://mivb.openplanner.team/stops/3334G"], ["https://mivb.openplanner.team/stops/1113", "https://mivb.openplanner.team/stops/1154"], ["https://mivb.openplanner.team/stops/1048F", "https://mivb.openplanner.team/stops/2715"], ["https://mivb.openplanner.team/stops/2225", "https://mivb.openplanner.team/stops/6857"], ["https://mivb.openplanner.team/stops/0705", "https://mivb.openplanner.team/stops/2336G"], ["https://mivb.openplanner.team/stops/1748", "https://mivb.openplanner.team/stops/4112"], ["https://mivb.openplanner.team/stops/1410", "https://mivb.openplanner.team/stops/5504"], ["https://mivb.openplanner.team/stops/3225F", "https://mivb.openplanner.team/stops/3253F"], ["https://mivb.openplanner.team/stops/2916", "https://mivb.openplanner.team/stops/6214"], ["https://mivb.openplanner.team/stops/2992", "https://mivb.openplanner.team/stops/7271"], ["https://mivb.openplanner.team/stops/9632", "https://mivb.openplanner.team/stops/9634"], ["https://mivb.openplanner.team/stops/4162", "https://mivb.openplanner.team/stops/4169"], ["https://mivb.openplanner.team/stops/3165", "https://mivb.openplanner.team/stops/3166"], ["https://mivb.openplanner.team/stops/1751", "https://mivb.openplanner.team/stops/0250436"], ["https://mivb.openplanner.team/stops/2308", "https://mivb.openplanner.team/stops/5759F"], ["https://mivb.openplanner.team/stops/1127", "https://mivb.openplanner.team/stops/1167"], ["https://mivb.openplanner.team/stops/2815B", "https://mivb.openplanner.team/stops/2854"], ["https://mivb.openplanner.team/stops/5719", "https://mivb.openplanner.team/stops/5719H"], ["https://mivb.openplanner.team/stops/1157", "https://mivb.openplanner.team/stops/6024"], ["https://mivb.openplanner.team/stops/1812", "https://mivb.openplanner.team/stops/1864"], ["https://mivb.openplanner.team/stops/1220", "https://mivb.openplanner.team/stops/1221"], ["https://mivb.openplanner.team/stops/2402", "https://mivb.openplanner.team/stops/0340441"], ["https://mivb.openplanner.team/stops/4002B", "https://mivb.openplanner.team/stops/4062"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/2146"], ["https://mivb.openplanner.team/stops/1957B", "https://mivb.openplanner.team/stops/1958B"], ["https://mivb.openplanner.team/stops/2571", "https://mivb.openplanner.team/stops/2572"], ["https://mivb.openplanner.team/stops/4369", "https://mivb.openplanner.team/stops/5267"], ["https://mivb.openplanner.team/stops/4304", "https://mivb.openplanner.team/stops/6156F"], ["https://mivb.openplanner.team/stops/1182", "https://mivb.openplanner.team/stops/4022"], ["https://mivb.openplanner.team/stops/1126", "https://mivb.openplanner.team/stops/1167"], ["https://mivb.openplanner.team/stops/0472", "https://mivb.openplanner.team/stops/0470751"], ["https://mivb.openplanner.team/stops/6113F", "https://mivb.openplanner.team/stops/6157F"], ["https://mivb.openplanner.team/stops/2346", "https://mivb.openplanner.team/stops/5317G"], ["https://mivb.openplanner.team/stops/0900268", "https://mivb.openplanner.team/stops/0200231"], ["https://mivb.openplanner.team/stops/4295", "https://mivb.openplanner.team/stops/0240435"], ["https://mivb.openplanner.team/stops/1872B", "https://mivb.openplanner.team/stops/3912"], ["https://mivb.openplanner.team/stops/5018F", "https://mivb.openplanner.team/stops/0330342"], ["https://mivb.openplanner.team/stops/0070321", "https://mivb.openplanner.team/stops/0070421"], ["https://mivb.openplanner.team/stops/2325", "https://mivb.openplanner.team/stops/6124"], ["https://mivb.openplanner.team/stops/3702", "https://mivb.openplanner.team/stops/3765"], ["https://mivb.openplanner.team/stops/2852", "https://mivb.openplanner.team/stops/5771"], ["https://mivb.openplanner.team/stops/1043", "https://mivb.openplanner.team/stops/8131"], ["https://mivb.openplanner.team/stops/3200", "https://mivb.openplanner.team/stops/3661"], ["https://mivb.openplanner.team/stops/1741", "https://mivb.openplanner.team/stops/2010"], ["https://mivb.openplanner.team/stops/1928", "https://mivb.openplanner.team/stops/2702"], ["https://mivb.openplanner.team/stops/6016", "https://mivb.openplanner.team/stops/6017"], ["https://mivb.openplanner.team/stops/3517", "https://mivb.openplanner.team/stops/9952G"], ["https://mivb.openplanner.team/stops/2753", "https://mivb.openplanner.team/stops/5269F"], ["https://mivb.openplanner.team/stops/1685F", "https://mivb.openplanner.team/stops/4273F"], ["https://mivb.openplanner.team/stops/1920", "https://mivb.openplanner.team/stops/1972"], ["https://mivb.openplanner.team/stops/2215", "https://mivb.openplanner.team/stops/39"], ["https://mivb.openplanner.team/stops/3704", "https://mivb.openplanner.team/stops/4558"], ["https://mivb.openplanner.team/stops/2377", "https://mivb.openplanner.team/stops/5707"], ["https://mivb.openplanner.team/stops/1800", "https://mivb.openplanner.team/stops/3630"], ["https://mivb.openplanner.team/stops/5307G", "https://mivb.openplanner.team/stops/6214"], ["https://mivb.openplanner.team/stops/2515B", "https://mivb.openplanner.team/stops/5078F"], ["https://mivb.openplanner.team/stops/2410", "https://mivb.openplanner.team/stops/2955"], ["https://mivb.openplanner.team/stops/5001F", "https://mivb.openplanner.team/stops/5087"], ["https://mivb.openplanner.team/stops/6501", "https://mivb.openplanner.team/stops/6552"], ["https://mivb.openplanner.team/stops/1497B", "https://mivb.openplanner.team/stops/8051"], ["https://mivb.openplanner.team/stops/3002", "https://mivb.openplanner.team/stops/9608"], ["https://mivb.openplanner.team/stops/5161F", "https://mivb.openplanner.team/stops/5915"], ["https://mivb.openplanner.team/stops/1644F", "https://mivb.openplanner.team/stops/1646F"], ["https://mivb.openplanner.team/stops/0600462", "https://mivb.openplanner.team/stops/62"], ["https://mivb.openplanner.team/stops/8351", "https://mivb.openplanner.team/stops/0350140"], ["https://mivb.openplanner.team/stops/2899", "https://mivb.openplanner.team/stops/2991"], ["https://mivb.openplanner.team/stops/1884", "https://mivb.openplanner.team/stops/3121"], ["https://mivb.openplanner.team/stops/5281", "https://mivb.openplanner.team/stops/5287"], ["https://mivb.openplanner.team/stops/2296", "https://mivb.openplanner.team/stops/3323"], ["https://mivb.openplanner.team/stops/9551", "https://mivb.openplanner.team/stops/9553"], ["https://mivb.openplanner.team/stops/3359", "https://mivb.openplanner.team/stops/6309F"], ["https://mivb.openplanner.team/stops/0706", "https://mivb.openplanner.team/stops/1221"], ["https://mivb.openplanner.team/stops/5026", "https://mivb.openplanner.team/stops/5058"], ["https://mivb.openplanner.team/stops/1513", "https://mivb.openplanner.team/stops/2918"], ["https://mivb.openplanner.team/stops/6021", "https://mivb.openplanner.team/stops/6082"], ["https://mivb.openplanner.team/stops/6103F", "https://mivb.openplanner.team/stops/6168"], ["https://mivb.openplanner.team/stops/2533", "https://mivb.openplanner.team/stops/8702"], ["https://mivb.openplanner.team/stops/1567", "https://mivb.openplanner.team/stops/6020"], ["https://mivb.openplanner.team/stops/1639", "https://mivb.openplanner.team/stops/0140128"], ["https://mivb.openplanner.team/stops/5601", "https://mivb.openplanner.team/stops/5659"], ["https://mivb.openplanner.team/stops/1250", "https://mivb.openplanner.team/stops/4854C"], ["https://mivb.openplanner.team/stops/3812", "https://mivb.openplanner.team/stops/3859"], ["https://mivb.openplanner.team/stops/2665", "https://mivb.openplanner.team/stops/2665F"], ["https://mivb.openplanner.team/stops/3102", "https://mivb.openplanner.team/stops/3174"], ["https://mivb.openplanner.team/stops/2238", "https://mivb.openplanner.team/stops/6177"], ["https://mivb.openplanner.team/stops/1348", "https://mivb.openplanner.team/stops/4252"], ["https://mivb.openplanner.team/stops/1019", "https://mivb.openplanner.team/stops/1056"], ["https://mivb.openplanner.team/stops/2996", "https://mivb.openplanner.team/stops/3307"], ["https://mivb.openplanner.team/stops/1368", "https://mivb.openplanner.team/stops/1755"], ["https://mivb.openplanner.team/stops/2515B", "https://mivb.openplanner.team/stops/2586"], ["https://mivb.openplanner.team/stops/2670", "https://mivb.openplanner.team/stops/6175"], ["https://mivb.openplanner.team/stops/1317", "https://mivb.openplanner.team/stops/1318"], ["https://mivb.openplanner.team/stops/1598", "https://mivb.openplanner.team/stops/4359"], ["https://mivb.openplanner.team/stops/2576", "https://mivb.openplanner.team/stops/6501"], ["https://mivb.openplanner.team/stops/0810469", "https://mivb.openplanner.team/stops/6463F"], ["https://mivb.openplanner.team/stops/1207", "https://mivb.openplanner.team/stops/1256"], ["https://mivb.openplanner.team/stops/3424", "https://mivb.openplanner.team/stops/5874F"], ["https://mivb.openplanner.team/stops/1380", "https://mivb.openplanner.team/stops/9561"], ["https://mivb.openplanner.team/stops/1063", "https://mivb.openplanner.team/stops/4323"], ["https://mivb.openplanner.team/stops/8061", "https://mivb.openplanner.team/stops/0060120"], ["https://mivb.openplanner.team/stops/3508", "https://mivb.openplanner.team/stops/3572F"], ["https://mivb.openplanner.team/stops/1417B", "https://mivb.openplanner.team/stops/1474B"], ["https://mivb.openplanner.team/stops/0660166", "https://mivb.openplanner.team/stops/0723"], ["https://mivb.openplanner.team/stops/2259", "https://mivb.openplanner.team/stops/2259F"], ["https://mivb.openplanner.team/stops/1136", "https://mivb.openplanner.team/stops/0070321"], ["https://mivb.openplanner.team/stops/5917F", "https://mivb.openplanner.team/stops/5952F"], ["https://mivb.openplanner.team/stops/1541", "https://mivb.openplanner.team/stops/3854B"], ["https://mivb.openplanner.team/stops/1782", "https://mivb.openplanner.team/stops/7770258"], ["https://mivb.openplanner.team/stops/3007", "https://mivb.openplanner.team/stops/3058"], ["https://mivb.openplanner.team/stops/1056", "https://mivb.openplanner.team/stops/4254B"], ["https://mivb.openplanner.team/stops/1073", "https://mivb.openplanner.team/stops/5291F"], ["https://mivb.openplanner.team/stops/1145", "https://mivb.openplanner.team/stops/3253F"], ["https://mivb.openplanner.team/stops/0636", "https://mivb.openplanner.team/stops/0350640"], ["https://mivb.openplanner.team/stops/1105", "https://mivb.openplanner.team/stops/4005F"], ["https://mivb.openplanner.team/stops/1798", "https://mivb.openplanner.team/stops/7529"], ["https://mivb.openplanner.team/stops/0810369", "https://mivb.openplanner.team/stops/1459"], ["https://mivb.openplanner.team/stops/2757C", "https://mivb.openplanner.team/stops/5424"], ["https://mivb.openplanner.team/stops/6004", "https://mivb.openplanner.team/stops/6071"], ["https://mivb.openplanner.team/stops/2903", "https://mivb.openplanner.team/stops/3304"], ["https://mivb.openplanner.team/stops/7800455", "https://mivb.openplanner.team/stops/9052"], ["https://mivb.openplanner.team/stops/2535B", "https://mivb.openplanner.team/stops/7700105"], ["https://mivb.openplanner.team/stops/6356F", "https://mivb.openplanner.team/stops/0030117"], ["https://mivb.openplanner.team/stops/1852", "https://mivb.openplanner.team/stops/5657"], ["https://mivb.openplanner.team/stops/8041", "https://mivb.openplanner.team/stops/0040318"], ["https://mivb.openplanner.team/stops/8141", "https://mivb.openplanner.team/stops/0140228"], ["https://mivb.openplanner.team/stops/2002", "https://mivb.openplanner.team/stops/5031F"], ["https://mivb.openplanner.team/stops/8431", "https://mivb.openplanner.team/stops/0430648"], ["https://mivb.openplanner.team/stops/9756", "https://mivb.openplanner.team/stops/9776"], ["https://mivb.openplanner.team/stops/0600962", "https://mivb.openplanner.team/stops/0601162"], ["https://mivb.openplanner.team/stops/1685F", "https://mivb.openplanner.team/stops/4165"], ["https://mivb.openplanner.team/stops/1236F", "https://mivb.openplanner.team/stops/4005F"], ["https://mivb.openplanner.team/stops/5776", "https://mivb.openplanner.team/stops/53"], ["https://mivb.openplanner.team/stops/0470F", "https://mivb.openplanner.team/stops/0471"], ["https://mivb.openplanner.team/stops/4599", "https://mivb.openplanner.team/stops/4656"], ["https://mivb.openplanner.team/stops/4125", "https://mivb.openplanner.team/stops/4126"], ["https://mivb.openplanner.team/stops/2216", "https://mivb.openplanner.team/stops/4595"], ["https://mivb.openplanner.team/stops/2289", "https://mivb.openplanner.team/stops/0080422"], ["https://mivb.openplanner.team/stops/7820353", "https://mivb.openplanner.team/stops/9056F"], ["https://mivb.openplanner.team/stops/4347", "https://mivb.openplanner.team/stops/5453"], ["https://mivb.openplanner.team/stops/1720B", "https://mivb.openplanner.team/stops/4407"], ["https://mivb.openplanner.team/stops/1976", "https://mivb.openplanner.team/stops/5408"], ["https://mivb.openplanner.team/stops/3353", "https://mivb.openplanner.team/stops/3358"], ["https://mivb.openplanner.team/stops/3557", "https://mivb.openplanner.team/stops/4307"], ["https://mivb.openplanner.team/stops/0810269", "https://mivb.openplanner.team/stops/69"], ["https://mivb.openplanner.team/stops/0631", "https://mivb.openplanner.team/stops/8351"], ["https://mivb.openplanner.team/stops/1016", "https://mivb.openplanner.team/stops/0440649"], ["https://mivb.openplanner.team/stops/1668", "https://mivb.openplanner.team/stops/5605"], ["https://mivb.openplanner.team/stops/7810254", "https://mivb.openplanner.team/stops/9052"], ["https://mivb.openplanner.team/stops/2074", "https://mivb.openplanner.team/stops/5416"], ["https://mivb.openplanner.team/stops/1964", "https://mivb.openplanner.team/stops/2703"], ["https://mivb.openplanner.team/stops/3755", "https://mivb.openplanner.team/stops/6792F"], ["https://mivb.openplanner.team/stops/0110125", "https://mivb.openplanner.team/stops/0110425"], ["https://mivb.openplanner.team/stops/0310344", "https://mivb.openplanner.team/stops/0310444"], ["https://mivb.openplanner.team/stops/1816", "https://mivb.openplanner.team/stops/5559"], ["https://mivb.openplanner.team/stops/1545", "https://mivb.openplanner.team/stops/1875"], ["https://mivb.openplanner.team/stops/3410", "https://mivb.openplanner.team/stops/3412"], ["https://mivb.openplanner.team/stops/3517", "https://mivb.openplanner.team/stops/5408"], ["https://mivb.openplanner.team/stops/3168", "https://mivb.openplanner.team/stops/5740"], ["https://mivb.openplanner.team/stops/1315", "https://mivb.openplanner.team/stops/3203"], ["https://mivb.openplanner.team/stops/1144", "https://mivb.openplanner.team/stops/6444"], ["https://mivb.openplanner.team/stops/5008F", "https://mivb.openplanner.team/stops/5077"], ["https://mivb.openplanner.team/stops/2663G", "https://mivb.openplanner.team/stops/5721G"], ["https://mivb.openplanner.team/stops/3812", "https://mivb.openplanner.team/stops/3853"], ["https://mivb.openplanner.team/stops/5804G", "https://mivb.openplanner.team/stops/5866"], ["https://mivb.openplanner.team/stops/2833", "https://mivb.openplanner.team/stops/0440349"], ["https://mivb.openplanner.team/stops/1290", "https://mivb.openplanner.team/stops/4229"], ["https://mivb.openplanner.team/stops/6702", "https://mivb.openplanner.team/stops/8292"], ["https://mivb.openplanner.team/stops/3313", "https://mivb.openplanner.team/stops/0410346"], ["https://mivb.openplanner.team/stops/2413", "https://mivb.openplanner.team/stops/5855F"], ["https://mivb.openplanner.team/stops/8702", "https://mivb.openplanner.team/stops/5"], ["https://mivb.openplanner.team/stops/1602", "https://mivb.openplanner.team/stops/1657"], ["https://mivb.openplanner.team/stops/1111", "https://mivb.openplanner.team/stops/1304"], ["https://mivb.openplanner.team/stops/3420", "https://mivb.openplanner.team/stops/5277F"], ["https://mivb.openplanner.team/stops/1156", "https://mivb.openplanner.team/stops/21"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/4287"], ["https://mivb.openplanner.team/stops/7660209", "https://mivb.openplanner.team/stops/9660"], ["https://mivb.openplanner.team/stops/1018", "https://mivb.openplanner.team/stops/7640111"], ["https://mivb.openplanner.team/stops/9608", "https://mivb.openplanner.team/stops/9632"], ["https://mivb.openplanner.team/stops/3017", "https://mivb.openplanner.team/stops/3337F"], ["https://mivb.openplanner.team/stops/2239", "https://mivb.openplanner.team/stops/2338F"], ["https://mivb.openplanner.team/stops/3859", "https://mivb.openplanner.team/stops/3860"], ["https://mivb.openplanner.team/stops/3546", "https://mivb.openplanner.team/stops/0230334"], ["https://mivb.openplanner.team/stops/1716", "https://mivb.openplanner.team/stops/3557"], ["https://mivb.openplanner.team/stops/0020216", "https://mivb.openplanner.team/stops/0020416"], ["https://mivb.openplanner.team/stops/4502F", "https://mivb.openplanner.team/stops/5921B"], ["https://mivb.openplanner.team/stops/2715", "https://mivb.openplanner.team/stops/5413F"], ["https://mivb.openplanner.team/stops/1145", "https://mivb.openplanner.team/stops/3225F"], ["https://mivb.openplanner.team/stops/1540", "https://mivb.openplanner.team/stops/3463"], ["https://mivb.openplanner.team/stops/2817", "https://mivb.openplanner.team/stops/2822"], ["https://mivb.openplanner.team/stops/2997", "https://mivb.openplanner.team/stops/4556"], ["https://mivb.openplanner.team/stops/1901", "https://mivb.openplanner.team/stops/0430748"], ["https://mivb.openplanner.team/stops/5427", "https://mivb.openplanner.team/stops/6469"], ["https://mivb.openplanner.team/stops/1159", "https://mivb.openplanner.team/stops/1463"], ["https://mivb.openplanner.team/stops/1985B", "https://mivb.openplanner.team/stops/5853B"], ["https://mivb.openplanner.team/stops/1613", "https://mivb.openplanner.team/stops/1661"], ["https://mivb.openplanner.team/stops/1508", "https://mivb.openplanner.team/stops/0410146"], ["https://mivb.openplanner.team/stops/2753", "https://mivb.openplanner.team/stops/5284F"], ["https://mivb.openplanner.team/stops/1209", "https://mivb.openplanner.team/stops/4657"], ["https://mivb.openplanner.team/stops/4076", "https://mivb.openplanner.team/stops/5026"], ["https://mivb.openplanner.team/stops/0810169", "https://mivb.openplanner.team/stops/69"], ["https://mivb.openplanner.team/stops/2264", "https://mivb.openplanner.team/stops/3633B"], ["https://mivb.openplanner.team/stops/2407", "https://mivb.openplanner.team/stops/2955"], ["https://mivb.openplanner.team/stops/3854B", "https://mivb.openplanner.team/stops/5964"], ["https://mivb.openplanner.team/stops/1375", "https://mivb.openplanner.team/stops/1635"], ["https://mivb.openplanner.team/stops/5810", "https://mivb.openplanner.team/stops/5849"], ["https://mivb.openplanner.team/stops/3174", "https://mivb.openplanner.team/stops/7268"], ["https://mivb.openplanner.team/stops/1718B", "https://mivb.openplanner.team/stops/1719"], ["https://mivb.openplanner.team/stops/5224F", "https://mivb.openplanner.team/stops/5272F"], ["https://mivb.openplanner.team/stops/3761", "https://mivb.openplanner.team/stops/5354H"], ["https://mivb.openplanner.team/stops/2816", "https://mivb.openplanner.team/stops/5705"], ["https://mivb.openplanner.team/stops/2759", "https://mivb.openplanner.team/stops/5414F"], ["https://mivb.openplanner.team/stops/6022B", "https://mivb.openplanner.team/stops/6023"], ["https://mivb.openplanner.team/stops/2370", "https://mivb.openplanner.team/stops/2371"], ["https://mivb.openplanner.team/stops/2415", "https://mivb.openplanner.team/stops/5853G"], ["https://mivb.openplanner.team/stops/6799F", "https://mivb.openplanner.team/stops/7"], ["https://mivb.openplanner.team/stops/1183", "https://mivb.openplanner.team/stops/0470151"], ["https://mivb.openplanner.team/stops/5281G", "https://mivb.openplanner.team/stops/5287"], ["https://mivb.openplanner.team/stops/1412", "https://mivb.openplanner.team/stops/5225F"], ["https://mivb.openplanner.team/stops/5039", "https://mivb.openplanner.team/stops/5046"], ["https://mivb.openplanner.team/stops/1240", "https://mivb.openplanner.team/stops/2455"], ["https://mivb.openplanner.team/stops/5025", "https://mivb.openplanner.team/stops/5058F"], ["https://mivb.openplanner.team/stops/5296B", "https://mivb.openplanner.team/stops/5297B"], ["https://mivb.openplanner.team/stops/3109", "https://mivb.openplanner.team/stops/6302"], ["https://mivb.openplanner.team/stops/2404", "https://mivb.openplanner.team/stops/2463F"], ["https://mivb.openplanner.team/stops/2564", "https://mivb.openplanner.team/stops/3234"], ["https://mivb.openplanner.team/stops/0526", "https://mivb.openplanner.team/stops/6413F"], ["https://mivb.openplanner.team/stops/2931", "https://mivb.openplanner.team/stops/6430F"], ["https://mivb.openplanner.team/stops/7800155", "https://mivb.openplanner.team/stops/7800255"], ["https://mivb.openplanner.team/stops/8641", "https://mivb.openplanner.team/stops/7640111"], ["https://mivb.openplanner.team/stops/5269F", "https://mivb.openplanner.team/stops/5284F"], ["https://mivb.openplanner.team/stops/2046", "https://mivb.openplanner.team/stops/2725"], ["https://mivb.openplanner.team/stops/3556", "https://mivb.openplanner.team/stops/0230334"], ["https://mivb.openplanner.team/stops/1132", "https://mivb.openplanner.team/stops/8042"], ["https://mivb.openplanner.team/stops/2611", "https://mivb.openplanner.team/stops/2659"], ["https://mivb.openplanner.team/stops/2956", "https://mivb.openplanner.team/stops/5848"], ["https://mivb.openplanner.team/stops/1103", "https://mivb.openplanner.team/stops/1681F"], ["https://mivb.openplanner.team/stops/0900468", "https://mivb.openplanner.team/stops/1865"], ["https://mivb.openplanner.team/stops/0660166", "https://mivb.openplanner.team/stops/6162"], ["https://mivb.openplanner.team/stops/2507", "https://mivb.openplanner.team/stops/2572"], ["https://mivb.openplanner.team/stops/1076", "https://mivb.openplanner.team/stops/6124"], ["https://mivb.openplanner.team/stops/0600762", "https://mivb.openplanner.team/stops/1707"], ["https://mivb.openplanner.team/stops/1156T", "https://mivb.openplanner.team/stops/0070221"], ["https://mivb.openplanner.team/stops/1145", "https://mivb.openplanner.team/stops/8731"], ["https://mivb.openplanner.team/stops/5297B", "https://mivb.openplanner.team/stops/8682"], ["https://mivb.openplanner.team/stops/6462F", "https://mivb.openplanner.team/stops/6463F"], ["https://mivb.openplanner.team/stops/5296B", "https://mivb.openplanner.team/stops/7680107"], ["https://mivb.openplanner.team/stops/1813", "https://mivb.openplanner.team/stops/5282F"], ["https://mivb.openplanner.team/stops/4206", "https://mivb.openplanner.team/stops/4261"], ["https://mivb.openplanner.team/stops/1614B", "https://mivb.openplanner.team/stops/5524"], ["https://mivb.openplanner.team/stops/4213", "https://mivb.openplanner.team/stops/0280113"], ["https://mivb.openplanner.team/stops/2551", "https://mivb.openplanner.team/stops/3858"], ["https://mivb.openplanner.team/stops/2805", "https://mivb.openplanner.team/stops/5080"], ["https://mivb.openplanner.team/stops/9654", "https://mivb.openplanner.team/stops/9655"], ["https://mivb.openplanner.team/stops/1834", "https://mivb.openplanner.team/stops/5509"], ["https://mivb.openplanner.team/stops/0826", "https://mivb.openplanner.team/stops/6449"], ["https://mivb.openplanner.team/stops/1102", "https://mivb.openplanner.team/stops/1193"], ["https://mivb.openplanner.team/stops/1760", "https://mivb.openplanner.team/stops/0210132"], ["https://mivb.openplanner.team/stops/1080", "https://mivb.openplanner.team/stops/1745"], ["https://mivb.openplanner.team/stops/2260F", "https://mivb.openplanner.team/stops/3804B"], ["https://mivb.openplanner.team/stops/1681F", "https://mivb.openplanner.team/stops/1682F"], ["https://mivb.openplanner.team/stops/5089", "https://mivb.openplanner.team/stops/8462"], ["https://mivb.openplanner.team/stops/2757C", "https://mivb.openplanner.team/stops/5416"], ["https://mivb.openplanner.team/stops/1533", "https://mivb.openplanner.team/stops/3920"], ["https://mivb.openplanner.team/stops/1528", "https://mivb.openplanner.team/stops/3288"], ["https://mivb.openplanner.team/stops/2016", "https://mivb.openplanner.team/stops/2074"], ["https://mivb.openplanner.team/stops/4347", "https://mivb.openplanner.team/stops/4348"], ["https://mivb.openplanner.team/stops/6476", "https://mivb.openplanner.team/stops/8102"], ["https://mivb.openplanner.team/stops/1067", "https://mivb.openplanner.team/stops/1755"], ["https://mivb.openplanner.team/stops/1847", "https://mivb.openplanner.team/stops/5553"], ["https://mivb.openplanner.team/stops/1108", "https://mivb.openplanner.team/stops/1198"], ["https://mivb.openplanner.team/stops/1565", "https://mivb.openplanner.team/stops/6056"], ["https://mivb.openplanner.team/stops/5320", "https://mivb.openplanner.team/stops/5760"], ["https://mivb.openplanner.team/stops/5453", "https://mivb.openplanner.team/stops/9059"], ["https://mivb.openplanner.team/stops/3165", "https://mivb.openplanner.team/stops/6304"], ["https://mivb.openplanner.team/stops/5009F", "https://mivb.openplanner.team/stops/58"], ["https://mivb.openplanner.team/stops/4205", "https://mivb.openplanner.team/stops/4261"], ["https://mivb.openplanner.team/stops/1764", "https://mivb.openplanner.team/stops/1804"], ["https://mivb.openplanner.team/stops/6016", "https://mivb.openplanner.team/stops/6061"], ["https://mivb.openplanner.team/stops/3620B", "https://mivb.openplanner.team/stops/6433"], ["https://mivb.openplanner.team/stops/7501", "https://mivb.openplanner.team/stops/9169"], ["https://mivb.openplanner.team/stops/1385", "https://mivb.openplanner.team/stops/5230F"], ["https://mivb.openplanner.team/stops/3162", "https://mivb.openplanner.team/stops/6061"], ["https://mivb.openplanner.team/stops/1561", "https://mivb.openplanner.team/stops/3911"], ["https://mivb.openplanner.team/stops/1860", "https://mivb.openplanner.team/stops/1861"], ["https://mivb.openplanner.team/stops/1728", "https://mivb.openplanner.team/stops/1881"], ["https://mivb.openplanner.team/stops/0010315", "https://mivb.openplanner.team/stops/0010415"], ["https://mivb.openplanner.team/stops/1453", "https://mivb.openplanner.team/stops/4313"], ["https://mivb.openplanner.team/stops/3042", "https://mivb.openplanner.team/stops/9729"], ["https://mivb.openplanner.team/stops/2027", "https://mivb.openplanner.team/stops/2085"], ["https://mivb.openplanner.team/stops/0600262", "https://mivb.openplanner.team/stops/5286"], ["https://mivb.openplanner.team/stops/1322", "https://mivb.openplanner.team/stops/1323"], ["https://mivb.openplanner.team/stops/2828", "https://mivb.openplanner.team/stops/2837"], ["https://mivb.openplanner.team/stops/2980", "https://mivb.openplanner.team/stops/2996"], ["https://mivb.openplanner.team/stops/3521", "https://mivb.openplanner.team/stops/0230134"], ["https://mivb.openplanner.team/stops/1597", "https://mivb.openplanner.team/stops/1598"], ["https://mivb.openplanner.team/stops/0670167", "https://mivb.openplanner.team/stops/1220"], ["https://mivb.openplanner.team/stops/1113", "https://mivb.openplanner.team/stops/1153"], ["https://mivb.openplanner.team/stops/2805", "https://mivb.openplanner.team/stops/2877"], ["https://mivb.openplanner.team/stops/1258G", "https://mivb.openplanner.team/stops/5756"], ["https://mivb.openplanner.team/stops/5963", "https://mivb.openplanner.team/stops/7660209"], ["https://mivb.openplanner.team/stops/1111", "https://mivb.openplanner.team/stops/5166"], ["https://mivb.openplanner.team/stops/1953", "https://mivb.openplanner.team/stops/2168"], ["https://mivb.openplanner.team/stops/0705", "https://mivb.openplanner.team/stops/2334F"], ["https://mivb.openplanner.team/stops/3551", "https://mivb.openplanner.team/stops/35"], ["https://mivb.openplanner.team/stops/1932", "https://mivb.openplanner.team/stops/5823"], ["https://mivb.openplanner.team/stops/2532", "https://mivb.openplanner.team/stops/2533"], ["https://mivb.openplanner.team/stops/0040118", "https://mivb.openplanner.team/stops/0040218"], ["https://mivb.openplanner.team/stops/5740", "https://mivb.openplanner.team/stops/5758F"], ["https://mivb.openplanner.team/stops/1047F", "https://mivb.openplanner.team/stops/1049F"], ["https://mivb.openplanner.team/stops/6858C", "https://mivb.openplanner.team/stops/7710104"], ["https://mivb.openplanner.team/stops/7670208", "https://mivb.openplanner.team/stops/8"], ["https://mivb.openplanner.team/stops/0350740", "https://mivb.openplanner.team/stops/40"], ["https://mivb.openplanner.team/stops/1403", "https://mivb.openplanner.team/stops/6023"], ["https://mivb.openplanner.team/stops/0040218", "https://mivb.openplanner.team/stops/17"], ["https://mivb.openplanner.team/stops/2294B", "https://mivb.openplanner.team/stops/2988"], ["https://mivb.openplanner.team/stops/1939", "https://mivb.openplanner.team/stops/1963"], ["https://mivb.openplanner.team/stops/1138", "https://mivb.openplanner.team/stops/1150"], ["https://mivb.openplanner.team/stops/1451", "https://mivb.openplanner.team/stops/5225F"], ["https://mivb.openplanner.team/stops/2214", "https://mivb.openplanner.team/stops/6659F"], ["https://mivb.openplanner.team/stops/2837", "https://mivb.openplanner.team/stops/0430848"], ["https://mivb.openplanner.team/stops/1906", "https://mivb.openplanner.team/stops/1983"], ["https://mivb.openplanner.team/stops/1067", "https://mivb.openplanner.team/stops/6800F"], ["https://mivb.openplanner.team/stops/1182", "https://mivb.openplanner.team/stops/4053G"], ["https://mivb.openplanner.team/stops/1673", "https://mivb.openplanner.team/stops/5533"], ["https://mivb.openplanner.team/stops/6113F", "https://mivb.openplanner.team/stops/6156F"], ["https://mivb.openplanner.team/stops/1725", "https://mivb.openplanner.team/stops/2014"], ["https://mivb.openplanner.team/stops/1644F", "https://mivb.openplanner.team/stops/5762"], ["https://mivb.openplanner.team/stops/5109", "https://mivb.openplanner.team/stops/5165"], ["https://mivb.openplanner.team/stops/1417B", "https://mivb.openplanner.team/stops/1802"], ["https://mivb.openplanner.team/stops/3504", "https://mivb.openplanner.team/stops/44"], ["https://mivb.openplanner.team/stops/0526", "https://mivb.openplanner.team/stops/1900"], ["https://mivb.openplanner.team/stops/6165", "https://mivb.openplanner.team/stops/6166"], ["https://mivb.openplanner.team/stops/2918", "https://mivb.openplanner.team/stops/9296"], ["https://mivb.openplanner.team/stops/6303", "https://mivb.openplanner.team/stops/6364"], ["https://mivb.openplanner.team/stops/1729", "https://mivb.openplanner.team/stops/3623B"], ["https://mivb.openplanner.team/stops/5303", "https://mivb.openplanner.team/stops/5359"], ["https://mivb.openplanner.team/stops/1465", "https://mivb.openplanner.team/stops/2267"], ["https://mivb.openplanner.team/stops/1115", "https://mivb.openplanner.team/stops/1172"], ["https://mivb.openplanner.team/stops/1831", "https://mivb.openplanner.team/stops/5510"], ["https://mivb.openplanner.team/stops/1063", "https://mivb.openplanner.team/stops/1167"], ["https://mivb.openplanner.team/stops/3351", "https://mivb.openplanner.team/stops/3359"], ["https://mivb.openplanner.team/stops/2404F", "https://mivb.openplanner.team/stops/6106"], ["https://mivb.openplanner.team/stops/5849", "https://mivb.openplanner.team/stops/5858"], ["https://mivb.openplanner.team/stops/1810", "https://mivb.openplanner.team/stops/0210132"], ["https://mivb.openplanner.team/stops/3547", "https://mivb.openplanner.team/stops/4297"], ["https://mivb.openplanner.team/stops/1115", "https://mivb.openplanner.team/stops/1202"], ["https://mivb.openplanner.team/stops/2830", "https://mivb.openplanner.team/stops/0430548"], ["https://mivb.openplanner.team/stops/1153", "https://mivb.openplanner.team/stops/1519"], ["https://mivb.openplanner.team/stops/1208", "https://mivb.openplanner.team/stops/3252"], ["https://mivb.openplanner.team/stops/2534", "https://mivb.openplanner.team/stops/2562B"], ["https://mivb.openplanner.team/stops/1194", "https://mivb.openplanner.team/stops/9802"], ["https://mivb.openplanner.team/stops/3113", "https://mivb.openplanner.team/stops/6416F"], ["https://mivb.openplanner.team/stops/2377", "https://mivb.openplanner.team/stops/5706"], ["https://mivb.openplanner.team/stops/1723B", "https://mivb.openplanner.team/stops/3526"], ["https://mivb.openplanner.team/stops/1206", "https://mivb.openplanner.team/stops/2579"], ["https://mivb.openplanner.team/stops/5605", "https://mivb.openplanner.team/stops/9578"], ["https://mivb.openplanner.team/stops/1684F", "https://mivb.openplanner.team/stops/1721"], ["https://mivb.openplanner.team/stops/1726", "https://mivb.openplanner.team/stops/6353F"], ["https://mivb.openplanner.team/stops/5001F", "https://mivb.openplanner.team/stops/5086F"], ["https://mivb.openplanner.team/stops/6501", "https://mivb.openplanner.team/stops/6553"], ["https://mivb.openplanner.team/stops/5307G", "https://mivb.openplanner.team/stops/5354H"], ["https://mivb.openplanner.team/stops/2264", "https://mivb.openplanner.team/stops/6650G"], ["https://mivb.openplanner.team/stops/1644F", "https://mivb.openplanner.team/stops/1645F"], ["https://mivb.openplanner.team/stops/3098", "https://mivb.openplanner.team/stops/3181"], ["https://mivb.openplanner.team/stops/1421", "https://mivb.openplanner.team/stops/1454"], ["https://mivb.openplanner.team/stops/2908", "https://mivb.openplanner.team/stops/3179"], ["https://mivb.openplanner.team/stops/1384", "https://mivb.openplanner.team/stops/1540"], ["https://mivb.openplanner.team/stops/5026", "https://mivb.openplanner.team/stops/5058F"], ["https://mivb.openplanner.team/stops/1601", "https://mivb.openplanner.team/stops/1673"], ["https://mivb.openplanner.team/stops/1754", "https://mivb.openplanner.team/stops/8261"], ["https://mivb.openplanner.team/stops/0310644", "https://mivb.openplanner.team/stops/44"], ["https://mivb.openplanner.team/stops/2576", "https://mivb.openplanner.team/stops/5007F"], ["https://mivb.openplanner.team/stops/1639", "https://mivb.openplanner.team/stops/0140228"], ["https://mivb.openplanner.team/stops/1114B", "https://mivb.openplanner.team/stops/6471"], ["https://mivb.openplanner.team/stops/4265", "https://mivb.openplanner.team/stops/7820153"], ["https://mivb.openplanner.team/stops/2455", "https://mivb.openplanner.team/stops/2937B"], ["https://mivb.openplanner.team/stops/8071", "https://mivb.openplanner.team/stops/0070121"], ["https://mivb.openplanner.team/stops/2824", "https://mivb.openplanner.team/stops/5001F"], ["https://mivb.openplanner.team/stops/4071", "https://mivb.openplanner.team/stops/7830352"], ["https://mivb.openplanner.team/stops/2104", "https://mivb.openplanner.team/stops/2153"], ["https://mivb.openplanner.team/stops/1824", "https://mivb.openplanner.team/stops/6432"], ["https://mivb.openplanner.team/stops/3762", "https://mivb.openplanner.team/stops/4550"], ["https://mivb.openplanner.team/stops/2256F", "https://mivb.openplanner.team/stops/7700205"], ["https://mivb.openplanner.team/stops/2515B", "https://mivb.openplanner.team/stops/2584"], ["https://mivb.openplanner.team/stops/2329", "https://mivb.openplanner.team/stops/2359"], ["https://mivb.openplanner.team/stops/1971", "https://mivb.openplanner.team/stops/2763"], ["https://mivb.openplanner.team/stops/2671", "https://mivb.openplanner.team/stops/2671F"], ["https://mivb.openplanner.team/stops/1207", "https://mivb.openplanner.team/stops/1257"], ["https://mivb.openplanner.team/stops/1063", "https://mivb.openplanner.team/stops/4324"], ["https://mivb.openplanner.team/stops/2669", "https://mivb.openplanner.team/stops/5720"], ["https://mivb.openplanner.team/stops/3508", "https://mivb.openplanner.team/stops/3572"], ["https://mivb.openplanner.team/stops/4264B", "https://mivb.openplanner.team/stops/4265"], ["https://mivb.openplanner.team/stops/1531", "https://mivb.openplanner.team/stops/1553"], ["https://mivb.openplanner.team/stops/4556", "https://mivb.openplanner.team/stops/5278F"], ["https://mivb.openplanner.team/stops/2301", "https://mivb.openplanner.team/stops/0010315"], ["https://mivb.openplanner.team/stops/2338F", "https://mivb.openplanner.team/stops/2376"], ["https://mivb.openplanner.team/stops/9627", "https://mivb.openplanner.team/stops/9631"], ["https://mivb.openplanner.team/stops/2352", "https://mivb.openplanner.team/stops/2829B"], ["https://mivb.openplanner.team/stops/6462F", "https://mivb.openplanner.team/stops/0070521"], ["https://mivb.openplanner.team/stops/6004", "https://mivb.openplanner.team/stops/6070"], ["https://mivb.openplanner.team/stops/9652", "https://mivb.openplanner.team/stops/9683"], ["https://mivb.openplanner.team/stops/2535B", "https://mivb.openplanner.team/stops/7700205"], ["https://mivb.openplanner.team/stops/2671F", "https://mivb.openplanner.team/stops/0350740"], ["https://mivb.openplanner.team/stops/2659", "https://mivb.openplanner.team/stops/2660"], ["https://mivb.openplanner.team/stops/2412", "https://mivb.openplanner.team/stops/2953"], ["https://mivb.openplanner.team/stops/9756", "https://mivb.openplanner.team/stops/9777"], ["https://mivb.openplanner.team/stops/1652", "https://mivb.openplanner.team/stops/2010"], ["https://mivb.openplanner.team/stops/1685F", "https://mivb.openplanner.team/stops/4168"], ["https://mivb.openplanner.team/stops/1725", "https://mivb.openplanner.team/stops/3529"], ["https://mivb.openplanner.team/stops/4599", "https://mivb.openplanner.team/stops/4657"], ["https://mivb.openplanner.team/stops/2136", "https://mivb.openplanner.team/stops/2759"], ["https://mivb.openplanner.team/stops/1319", "https://mivb.openplanner.team/stops/1416"], ["https://mivb.openplanner.team/stops/2965", "https://mivb.openplanner.team/stops/6078"], ["https://mivb.openplanner.team/stops/1515", "https://mivb.openplanner.team/stops/3216"], ["https://mivb.openplanner.team/stops/2289", "https://mivb.openplanner.team/stops/0080322"], ["https://mivb.openplanner.team/stops/0430548", "https://mivb.openplanner.team/stops/0431148"], ["https://mivb.openplanner.team/stops/4347", "https://mivb.openplanner.team/stops/5452"], ["https://mivb.openplanner.team/stops/0810369", "https://mivb.openplanner.team/stops/69"], ["https://mivb.openplanner.team/stops/3168", "https://mivb.openplanner.team/stops/7762"], ["https://mivb.openplanner.team/stops/8081", "https://mivb.openplanner.team/stops/8082"], ["https://mivb.openplanner.team/stops/4287", "https://mivb.openplanner.team/stops/5423"], ["https://mivb.openplanner.team/stops/2663", "https://mivb.openplanner.team/stops/5721"], ["https://mivb.openplanner.team/stops/1546", "https://mivb.openplanner.team/stops/1816"], ["https://mivb.openplanner.team/stops/7810254", "https://mivb.openplanner.team/stops/9056F"], ["https://mivb.openplanner.team/stops/2124", "https://mivb.openplanner.team/stops/9959F"], ["https://mivb.openplanner.team/stops/2257G", "https://mivb.openplanner.team/stops/6809"], ["https://mivb.openplanner.team/stops/2577", "https://mivb.openplanner.team/stops/9027"], ["https://mivb.openplanner.team/stops/3230F", "https://mivb.openplanner.team/stops/7730502"], ["https://mivb.openplanner.team/stops/1076B", "https://mivb.openplanner.team/stops/1084"], ["https://mivb.openplanner.team/stops/1133", "https://mivb.openplanner.team/stops/1262B"], ["https://mivb.openplanner.team/stops/2216", "https://mivb.openplanner.team/stops/0370438"], ["https://mivb.openplanner.team/stops/1320", "https://mivb.openplanner.team/stops/3288"], ["https://mivb.openplanner.team/stops/3226B", "https://mivb.openplanner.team/stops/4595"], ["https://mivb.openplanner.team/stops/1090", "https://mivb.openplanner.team/stops/5910"], ["https://mivb.openplanner.team/stops/2546", "https://mivb.openplanner.team/stops/2553"], ["https://mivb.openplanner.team/stops/5701", "https://mivb.openplanner.team/stops/9056F"], ["https://mivb.openplanner.team/stops/5532", "https://mivb.openplanner.team/stops/6474F"], ["https://mivb.openplanner.team/stops/3257", "https://mivb.openplanner.team/stops/3257F"], ["https://mivb.openplanner.team/stops/2124", "https://mivb.openplanner.team/stops/2125"], ["https://mivb.openplanner.team/stops/1350", "https://mivb.openplanner.team/stops/6607"], ["https://mivb.openplanner.team/stops/1931", "https://mivb.openplanner.team/stops/5824"], ["https://mivb.openplanner.team/stops/1376B", "https://mivb.openplanner.team/stops/3629"], ["https://mivb.openplanner.team/stops/3520", "https://mivb.openplanner.team/stops/0230134"], ["https://mivb.openplanner.team/stops/2467", "https://mivb.openplanner.team/stops/3006"], ["https://mivb.openplanner.team/stops/2663G", "https://mivb.openplanner.team/stops/5721"], ["https://mivb.openplanner.team/stops/8794", "https://mivb.openplanner.team/stops/7790556"], ["https://mivb.openplanner.team/stops/3362", "https://mivb.openplanner.team/stops/5277F"], ["https://mivb.openplanner.team/stops/1245", "https://mivb.openplanner.team/stops/6649F"], ["https://mivb.openplanner.team/stops/2262", "https://mivb.openplanner.team/stops/3228F"], ["https://mivb.openplanner.team/stops/1654", "https://mivb.openplanner.team/stops/3506"], ["https://mivb.openplanner.team/stops/5723B", "https://mivb.openplanner.team/stops/5953F"], ["https://mivb.openplanner.team/stops/1308G", "https://mivb.openplanner.team/stops/1310"], ["https://mivb.openplanner.team/stops/3017", "https://mivb.openplanner.team/stops/3338F"], ["https://mivb.openplanner.team/stops/1127", "https://mivb.openplanner.team/stops/1376B"], ["https://mivb.openplanner.team/stops/5719H", "https://mivb.openplanner.team/stops/9920F"], ["https://mivb.openplanner.team/stops/2329", "https://mivb.openplanner.team/stops/2827"], ["https://mivb.openplanner.team/stops/2524", "https://mivb.openplanner.team/stops/2551"], ["https://mivb.openplanner.team/stops/2541", "https://mivb.openplanner.team/stops/9979B"], ["https://mivb.openplanner.team/stops/0020216", "https://mivb.openplanner.team/stops/0020316"], ["https://mivb.openplanner.team/stops/2291B", "https://mivb.openplanner.team/stops/0220333"], ["https://mivb.openplanner.team/stops/4502F", "https://mivb.openplanner.team/stops/5921G"], ["https://mivb.openplanner.team/stops/2801", "https://mivb.openplanner.team/stops/2873"], ["https://mivb.openplanner.team/stops/8471", "https://mivb.openplanner.team/stops/0470151"], ["https://mivb.openplanner.team/stops/3717", "https://mivb.openplanner.team/stops/3752"], ["https://mivb.openplanner.team/stops/4315", "https://mivb.openplanner.team/stops/4345"], ["https://mivb.openplanner.team/stops/1289", "https://mivb.openplanner.team/stops/4205"], ["https://mivb.openplanner.team/stops/6304", "https://mivb.openplanner.team/stops/6363"], ["https://mivb.openplanner.team/stops/2572", "https://mivb.openplanner.team/stops/6864F"], ["https://mivb.openplanner.team/stops/1631", "https://mivb.openplanner.team/stops/5521"], ["https://mivb.openplanner.team/stops/8311", "https://mivb.openplanner.team/stops/0310144"], ["https://mivb.openplanner.team/stops/6020", "https://mivb.openplanner.team/stops/6059"], ["https://mivb.openplanner.team/stops/1522", "https://mivb.openplanner.team/stops/3919"], ["https://mivb.openplanner.team/stops/2608", "https://mivb.openplanner.team/stops/2608F"], ["https://mivb.openplanner.team/stops/8753", "https://mivb.openplanner.team/stops/7750160"], ["https://mivb.openplanner.team/stops/2753", "https://mivb.openplanner.team/stops/5283F"], ["https://mivb.openplanner.team/stops/1711", "https://mivb.openplanner.team/stops/1768"], ["https://mivb.openplanner.team/stops/0470F", "https://mivb.openplanner.team/stops/8763"], ["https://mivb.openplanner.team/stops/5503", "https://mivb.openplanner.team/stops/6476"], ["https://mivb.openplanner.team/stops/1969", "https://mivb.openplanner.team/stops/2131"], ["https://mivb.openplanner.team/stops/5284F", "https://mivb.openplanner.team/stops/0260237"], ["https://mivb.openplanner.team/stops/2025", "https://mivb.openplanner.team/stops/2071"], ["https://mivb.openplanner.team/stops/6172", "https://mivb.openplanner.team/stops/6173"], ["https://mivb.openplanner.team/stops/1782", "https://mivb.openplanner.team/stops/0470251"], ["https://mivb.openplanner.team/stops/2408", "https://mivb.openplanner.team/stops/2459"], ["https://mivb.openplanner.team/stops/6427F", "https://mivb.openplanner.team/stops/6428"], ["https://mivb.openplanner.team/stops/5295", "https://mivb.openplanner.team/stops/6552"], ["https://mivb.openplanner.team/stops/2346", "https://mivb.openplanner.team/stops/3454"], ["https://mivb.openplanner.team/stops/5458", "https://mivb.openplanner.team/stops/6439"], ["https://mivb.openplanner.team/stops/2910", "https://mivb.openplanner.team/stops/3101"], ["https://mivb.openplanner.team/stops/6355", "https://mivb.openplanner.team/stops/8031"], ["https://mivb.openplanner.team/stops/3059", "https://mivb.openplanner.team/stops/5913"], ["https://mivb.openplanner.team/stops/3260", "https://mivb.openplanner.team/stops/6604F"], ["https://mivb.openplanner.team/stops/2539F", "https://mivb.openplanner.team/stops/2540"], ["https://mivb.openplanner.team/stops/7640311", "https://mivb.openplanner.team/stops/9659"], ["https://mivb.openplanner.team/stops/2899", "https://mivb.openplanner.team/stops/2905"], ["https://mivb.openplanner.team/stops/0600462", "https://mivb.openplanner.team/stops/0606"], ["https://mivb.openplanner.team/stops/5817F", "https://mivb.openplanner.team/stops/5952F"], ["https://mivb.openplanner.team/stops/4270F", "https://mivb.openplanner.team/stops/4273F"], ["https://mivb.openplanner.team/stops/2410", "https://mivb.openplanner.team/stops/2456"], ["https://mivb.openplanner.team/stops/2145", "https://mivb.openplanner.team/stops/4319"], ["https://mivb.openplanner.team/stops/1561", "https://mivb.openplanner.team/stops/3906"], ["https://mivb.openplanner.team/stops/1716", "https://mivb.openplanner.team/stops/4369"], ["https://mivb.openplanner.team/stops/1183", "https://mivb.openplanner.team/stops/8472"], ["https://mivb.openplanner.team/stops/1049F", "https://mivb.openplanner.team/stops/5409"], ["https://mivb.openplanner.team/stops/1412", "https://mivb.openplanner.team/stops/5226F"], ["https://mivb.openplanner.team/stops/3353", "https://mivb.openplanner.team/stops/6308F"], ["https://mivb.openplanner.team/stops/2457", "https://mivb.openplanner.team/stops/5857F"], ["https://mivb.openplanner.team/stops/1626", "https://mivb.openplanner.team/stops/8471"], ["https://mivb.openplanner.team/stops/3815", "https://mivb.openplanner.team/stops/3851"], ["https://mivb.openplanner.team/stops/2523", "https://mivb.openplanner.team/stops/3805"], ["https://mivb.openplanner.team/stops/1792", "https://mivb.openplanner.team/stops/3009"], ["https://mivb.openplanner.team/stops/2465", "https://mivb.openplanner.team/stops/6121F"], ["https://mivb.openplanner.team/stops/7640211", "https://mivb.openplanner.team/stops/7650210"], ["https://mivb.openplanner.team/stops/2977", "https://mivb.openplanner.team/stops/3408"], ["https://mivb.openplanner.team/stops/3517", "https://mivb.openplanner.team/stops/5466"], ["https://mivb.openplanner.team/stops/3522", "https://mivb.openplanner.team/stops/5604"], ["https://mivb.openplanner.team/stops/3174", "https://mivb.openplanner.team/stops/5959"], ["https://mivb.openplanner.team/stops/1410", "https://mivb.openplanner.team/stops/1456"], ["https://mivb.openplanner.team/stops/0725", "https://mivb.openplanner.team/stops/1801"], ["https://mivb.openplanner.team/stops/8641", "https://mivb.openplanner.team/stops/8642"], ["https://mivb.openplanner.team/stops/2218", "https://mivb.openplanner.team/stops/2259F"], ["https://mivb.openplanner.team/stops/5722F", "https://mivb.openplanner.team/stops/5925"], ["https://mivb.openplanner.team/stops/5760", "https://mivb.openplanner.team/stops/5761"], ["https://mivb.openplanner.team/stops/1350", "https://mivb.openplanner.team/stops/1351"], ["https://mivb.openplanner.team/stops/6461", "https://mivb.openplanner.team/stops/6461F"], ["https://mivb.openplanner.team/stops/5605", "https://mivb.openplanner.team/stops/5656"], ["https://mivb.openplanner.team/stops/7660209", "https://mivb.openplanner.team/stops/9"], ["https://mivb.openplanner.team/stops/5066F", "https://mivb.openplanner.team/stops/0330242"], ["https://mivb.openplanner.team/stops/1767", "https://mivb.openplanner.team/stops/1775"], ["https://mivb.openplanner.team/stops/1720B", "https://mivb.openplanner.team/stops/0250236"], ["https://mivb.openplanner.team/stops/4364", "https://mivb.openplanner.team/stops/5264F"], ["https://mivb.openplanner.team/stops/1479", "https://mivb.openplanner.team/stops/1492"], ["https://mivb.openplanner.team/stops/1682F", "https://mivb.openplanner.team/stops/1683F"], ["https://mivb.openplanner.team/stops/2087", "https://mivb.openplanner.team/stops/9600B"], ["https://mivb.openplanner.team/stops/2507", "https://mivb.openplanner.team/stops/2571"], ["https://mivb.openplanner.team/stops/1046G", "https://mivb.openplanner.team/stops/1047F"], ["https://mivb.openplanner.team/stops/1156T", "https://mivb.openplanner.team/stops/0070121"], ["https://mivb.openplanner.team/stops/2080", "https://mivb.openplanner.team/stops/4299"], ["https://mivb.openplanner.team/stops/1064", "https://mivb.openplanner.team/stops/4156"], ["https://mivb.openplanner.team/stops/1929", "https://mivb.openplanner.team/stops/1961B"], ["https://mivb.openplanner.team/stops/3099", "https://mivb.openplanner.team/stops/3105"], ["https://mivb.openplanner.team/stops/1766", "https://mivb.openplanner.team/stops/5077"], ["https://mivb.openplanner.team/stops/3308F", "https://mivb.openplanner.team/stops/3360F"], ["https://mivb.openplanner.team/stops/3629", "https://mivb.openplanner.team/stops/6352"], ["https://mivb.openplanner.team/stops/1455", "https://mivb.openplanner.team/stops/4311"], ["https://mivb.openplanner.team/stops/3905", "https://mivb.openplanner.team/stops/3956"], ["https://mivb.openplanner.team/stops/3009", "https://mivb.openplanner.team/stops/6702"], ["https://mivb.openplanner.team/stops/1951", "https://mivb.openplanner.team/stops/5058F"], ["https://mivb.openplanner.team/stops/5288", "https://mivb.openplanner.team/stops/6103"], ["https://mivb.openplanner.team/stops/2727", "https://mivb.openplanner.team/stops/2752"], ["https://mivb.openplanner.team/stops/1563", "https://mivb.openplanner.team/stops/4550"], ["https://mivb.openplanner.team/stops/1757", "https://mivb.openplanner.team/stops/1863"], ["https://mivb.openplanner.team/stops/2345", "https://mivb.openplanner.team/stops/5350G"], ["https://mivb.openplanner.team/stops/2260F", "https://mivb.openplanner.team/stops/3802"], ["https://mivb.openplanner.team/stops/1880", "https://mivb.openplanner.team/stops/1883"], ["https://mivb.openplanner.team/stops/1656B", "https://mivb.openplanner.team/stops/1657"], ["https://mivb.openplanner.team/stops/3130", "https://mivb.openplanner.team/stops/3280"], ["https://mivb.openplanner.team/stops/4132B", "https://mivb.openplanner.team/stops/7790556"], ["https://mivb.openplanner.team/stops/1048F", "https://mivb.openplanner.team/stops/5208"], ["https://mivb.openplanner.team/stops/3123", "https://mivb.openplanner.team/stops/3155"], ["https://mivb.openplanner.team/stops/1629", "https://mivb.openplanner.team/stops/1656B"], ["https://mivb.openplanner.team/stops/4401", "https://mivb.openplanner.team/stops/4456"], ["https://mivb.openplanner.team/stops/3815", "https://mivb.openplanner.team/stops/5720F"], ["https://mivb.openplanner.team/stops/1490", "https://mivb.openplanner.team/stops/6799F"], ["https://mivb.openplanner.team/stops/7650210", "https://mivb.openplanner.team/stops/8652"], ["https://mivb.openplanner.team/stops/2330", "https://mivb.openplanner.team/stops/2829B"], ["https://mivb.openplanner.team/stops/1586", "https://mivb.openplanner.team/stops/1829"], ["https://mivb.openplanner.team/stops/1112", "https://mivb.openplanner.team/stops/8471"], ["https://mivb.openplanner.team/stops/2215", "https://mivb.openplanner.team/stops/3228F"], ["https://mivb.openplanner.team/stops/2867", "https://mivb.openplanner.team/stops/9047"], ["https://mivb.openplanner.team/stops/5710F", "https://mivb.openplanner.team/stops/6461"], ["https://mivb.openplanner.team/stops/3165", "https://mivb.openplanner.team/stops/6303"], ["https://mivb.openplanner.team/stops/2016", "https://mivb.openplanner.team/stops/5455"], ["https://mivb.openplanner.team/stops/2867", "https://mivb.openplanner.team/stops/5402"], ["https://mivb.openplanner.team/stops/2664", "https://mivb.openplanner.team/stops/2669"], ["https://mivb.openplanner.team/stops/1782", "https://mivb.openplanner.team/stops/6805F"], ["https://mivb.openplanner.team/stops/2086", "https://mivb.openplanner.team/stops/5427"], ["https://mivb.openplanner.team/stops/1815", "https://mivb.openplanner.team/stops/1862"], ["https://mivb.openplanner.team/stops/1385", "https://mivb.openplanner.team/stops/5229F"], ["https://mivb.openplanner.team/stops/3064", "https://mivb.openplanner.team/stops/9635"], ["https://mivb.openplanner.team/stops/1714", "https://mivb.openplanner.team/stops/1762"], ["https://mivb.openplanner.team/stops/2556", "https://mivb.openplanner.team/stops/3859"], ["https://mivb.openplanner.team/stops/2407", "https://mivb.openplanner.team/stops/5158"], ["https://mivb.openplanner.team/stops/1728", "https://mivb.openplanner.team/stops/1883"], ["https://mivb.openplanner.team/stops/5803G", "https://mivb.openplanner.team/stops/7246"], ["https://mivb.openplanner.team/stops/2455", "https://mivb.openplanner.team/stops/2603"], ["https://mivb.openplanner.team/stops/4856B", "https://mivb.openplanner.team/stops/4857B"], ["https://mivb.openplanner.team/stops/3042", "https://mivb.openplanner.team/stops/9726"], ["https://mivb.openplanner.team/stops/5756", "https://mivb.openplanner.team/stops/5953F"], ["https://mivb.openplanner.team/stops/5423", "https://mivb.openplanner.team/stops/5430"], ["https://mivb.openplanner.team/stops/1806", "https://mivb.openplanner.team/stops/6008"], ["https://mivb.openplanner.team/stops/1115", "https://mivb.openplanner.team/stops/0470351"], ["https://mivb.openplanner.team/stops/1686F", "https://mivb.openplanner.team/stops/9707"], ["https://mivb.openplanner.team/stops/2546", "https://mivb.openplanner.team/stops/3858"], ["https://mivb.openplanner.team/stops/2204", "https://mivb.openplanner.team/stops/2271"], ["https://mivb.openplanner.team/stops/5022", "https://mivb.openplanner.team/stops/5219F"], ["https://mivb.openplanner.team/stops/1643F", "https://mivb.openplanner.team/stops/1644F"], ["https://mivb.openplanner.team/stops/3506", "https://mivb.openplanner.team/stops/0310544"], ["https://mivb.openplanner.team/stops/1196", "https://mivb.openplanner.team/stops/4059F"], ["https://mivb.openplanner.team/stops/1654", "https://mivb.openplanner.team/stops/0310544"], ["https://mivb.openplanner.team/stops/4004", "https://mivb.openplanner.team/stops/4010"], ["https://mivb.openplanner.team/stops/1525", "https://mivb.openplanner.team/stops/0120426"], ["https://mivb.openplanner.team/stops/2955", "https://mivb.openplanner.team/stops/5151"], ["https://mivb.openplanner.team/stops/1932", "https://mivb.openplanner.team/stops/5822F"], ["https://mivb.openplanner.team/stops/2916", "https://mivb.openplanner.team/stops/6258"], ["https://mivb.openplanner.team/stops/1613", "https://mivb.openplanner.team/stops/5525"], ["https://mivb.openplanner.team/stops/1047F", "https://mivb.openplanner.team/stops/1048F"], ["https://mivb.openplanner.team/stops/1403", "https://mivb.openplanner.team/stops/6022B"], ["https://mivb.openplanner.team/stops/2815B", "https://mivb.openplanner.team/stops/2856B"], ["https://mivb.openplanner.team/stops/6416", "https://mivb.openplanner.team/stops/6418"], ["https://mivb.openplanner.team/stops/1914", "https://mivb.openplanner.team/stops/1975"], ["https://mivb.openplanner.team/stops/2294B", "https://mivb.openplanner.team/stops/2987"], ["https://mivb.openplanner.team/stops/5020", "https://mivb.openplanner.team/stops/6109"], ["https://mivb.openplanner.team/stops/1451", "https://mivb.openplanner.team/stops/5228F"], ["https://mivb.openplanner.team/stops/1642F", "https://mivb.openplanner.team/stops/1646F"], ["https://mivb.openplanner.team/stops/3505", "https://mivb.openplanner.team/stops/0310344"], ["https://mivb.openplanner.team/stops/4369", "https://mivb.openplanner.team/stops/5265F"], ["https://mivb.openplanner.team/stops/2548", "https://mivb.openplanner.team/stops/2548F"], ["https://mivb.openplanner.team/stops/2119", "https://mivb.openplanner.team/stops/2718"], ["https://mivb.openplanner.team/stops/1568", "https://mivb.openplanner.team/stops/3219"], ["https://mivb.openplanner.team/stops/1984G", "https://mivb.openplanner.team/stops/5853B"], ["https://mivb.openplanner.team/stops/4106", "https://mivb.openplanner.team/stops/4157"], ["https://mivb.openplanner.team/stops/4294", "https://mivb.openplanner.team/stops/4297"], ["https://mivb.openplanner.team/stops/0900268", "https://mivb.openplanner.team/stops/8202"], ["https://mivb.openplanner.team/stops/0900468", "https://mivb.openplanner.team/stops/0900568"], ["https://mivb.openplanner.team/stops/6649F", "https://mivb.openplanner.team/stops/13"], ["https://mivb.openplanner.team/stops/2107", "https://mivb.openplanner.team/stops/2115"], ["https://mivb.openplanner.team/stops/1206", "https://mivb.openplanner.team/stops/1260"], ["https://mivb.openplanner.team/stops/6303", "https://mivb.openplanner.team/stops/6363"], ["https://mivb.openplanner.team/stops/1840", "https://mivb.openplanner.team/stops/1850"], ["https://mivb.openplanner.team/stops/0670367", "https://mivb.openplanner.team/stops/1221"], ["https://mivb.openplanner.team/stops/3407", "https://mivb.openplanner.team/stops/5868"], ["https://mivb.openplanner.team/stops/1136", "https://mivb.openplanner.team/stops/1156T"], ["https://mivb.openplanner.team/stops/2459", "https://mivb.openplanner.team/stops/2935"], ["https://mivb.openplanner.team/stops/1244", "https://mivb.openplanner.team/stops/7740201"], ["https://mivb.openplanner.team/stops/3704", "https://mivb.openplanner.team/stops/4555"], ["https://mivb.openplanner.team/stops/3113", "https://mivb.openplanner.team/stops/6418"], ["https://mivb.openplanner.team/stops/1140", "https://mivb.openplanner.team/stops/1519"], ["https://mivb.openplanner.team/stops/1721", "https://mivb.openplanner.team/stops/1727"], ["https://mivb.openplanner.team/stops/2308", "https://mivb.openplanner.team/stops/2376"], ["https://mivb.openplanner.team/stops/2207", "https://mivb.openplanner.team/stops/9026"], ["https://mivb.openplanner.team/stops/5014", "https://mivb.openplanner.team/stops/0280213"], ["https://mivb.openplanner.team/stops/2338F", "https://mivb.openplanner.team/stops/5741"], ["https://mivb.openplanner.team/stops/2871", "https://mivb.openplanner.team/stops/6502"], ["https://mivb.openplanner.team/stops/2960", "https://mivb.openplanner.team/stops/5018F"], ["https://mivb.openplanner.team/stops/2264", "https://mivb.openplanner.team/stops/6649F"], ["https://mivb.openplanner.team/stops/3407", "https://mivb.openplanner.team/stops/3449"], ["https://mivb.openplanner.team/stops/5044", "https://mivb.openplanner.team/stops/9311"], ["https://mivb.openplanner.team/stops/4656", "https://mivb.openplanner.team/stops/4657"], ["https://mivb.openplanner.team/stops/1685F", "https://mivb.openplanner.team/stops/9825F"], ["https://mivb.openplanner.team/stops/2908", "https://mivb.openplanner.team/stops/3182"], ["https://mivb.openplanner.team/stops/1793", "https://mivb.openplanner.team/stops/8291"], ["https://mivb.openplanner.team/stops/3718", "https://mivb.openplanner.team/stops/3751"], ["https://mivb.openplanner.team/stops/1733", "https://mivb.openplanner.team/stops/3120"], ["https://mivb.openplanner.team/stops/1184", "https://mivb.openplanner.team/stops/5109"], ["https://mivb.openplanner.team/stops/1082", "https://mivb.openplanner.team/stops/9026"], ["https://mivb.openplanner.team/stops/1273", "https://mivb.openplanner.team/stops/2920"], ["https://mivb.openplanner.team/stops/6024", "https://mivb.openplanner.team/stops/8071"], ["https://mivb.openplanner.team/stops/0330142", "https://mivb.openplanner.team/stops/0330342"], ["https://mivb.openplanner.team/stops/5400", "https://mivb.openplanner.team/stops/5472"], ["https://mivb.openplanner.team/stops/1565", "https://mivb.openplanner.team/stops/2241G"], ["https://mivb.openplanner.team/stops/1082", "https://mivb.openplanner.team/stops/1083"], ["https://mivb.openplanner.team/stops/6931G", "https://mivb.openplanner.team/stops/6956B"], ["https://mivb.openplanner.team/stops/1639", "https://mivb.openplanner.team/stops/8141"], ["https://mivb.openplanner.team/stops/1520", "https://mivb.openplanner.team/stops/1558"], ["https://mivb.openplanner.team/stops/4955F", "https://mivb.openplanner.team/stops/4956"], ["https://mivb.openplanner.team/stops/2306", "https://mivb.openplanner.team/stops/5756"], ["https://mivb.openplanner.team/stops/2314", "https://mivb.openplanner.team/stops/2361"], ["https://mivb.openplanner.team/stops/3904", "https://mivb.openplanner.team/stops/4505"], ["https://mivb.openplanner.team/stops/2665F", "https://mivb.openplanner.team/stops/3851"], ["https://mivb.openplanner.team/stops/1327", "https://mivb.openplanner.team/stops/2556"], ["https://mivb.openplanner.team/stops/3003", "https://mivb.openplanner.team/stops/5961"], ["https://mivb.openplanner.team/stops/1748", "https://mivb.openplanner.team/stops/4105"], ["https://mivb.openplanner.team/stops/1103", "https://mivb.openplanner.team/stops/1745"], ["https://mivb.openplanner.team/stops/5026", "https://mivb.openplanner.team/stops/5815"], ["https://mivb.openplanner.team/stops/5152", "https://mivb.openplanner.team/stops/5161"], ["https://mivb.openplanner.team/stops/1043", "https://mivb.openplanner.team/stops/1640B"], ["https://mivb.openplanner.team/stops/1462", "https://mivb.openplanner.team/stops/6450"], ["https://mivb.openplanner.team/stops/4295", "https://mivb.openplanner.team/stops/4401"], ["https://mivb.openplanner.team/stops/3462", "https://mivb.openplanner.team/stops/3959"], ["https://mivb.openplanner.team/stops/3165", "https://mivb.openplanner.team/stops/3414"], ["https://mivb.openplanner.team/stops/2541", "https://mivb.openplanner.team/stops/2670"], ["https://mivb.openplanner.team/stops/2256B", "https://mivb.openplanner.team/stops/2562B"], ["https://mivb.openplanner.team/stops/0430248", "https://mivb.openplanner.team/stops/0431148"], ["https://mivb.openplanner.team/stops/3332", "https://mivb.openplanner.team/stops/9060"], ["https://mivb.openplanner.team/stops/2050", "https://mivb.openplanner.team/stops/8261"], ["https://mivb.openplanner.team/stops/1718B", "https://mivb.openplanner.team/stops/3547"], ["https://mivb.openplanner.team/stops/1472", "https://mivb.openplanner.team/stops/2077"], ["https://mivb.openplanner.team/stops/3911", "https://mivb.openplanner.team/stops/3956"], ["https://mivb.openplanner.team/stops/2364", "https://mivb.openplanner.team/stops/3007"], ["https://mivb.openplanner.team/stops/4502F", "https://mivb.openplanner.team/stops/4506"], ["https://mivb.openplanner.team/stops/2669", "https://mivb.openplanner.team/stops/5720F"], ["https://mivb.openplanner.team/stops/2708G", "https://mivb.openplanner.team/stops/2769"], ["https://mivb.openplanner.team/stops/6812", "https://mivb.openplanner.team/stops/6857"], ["https://mivb.openplanner.team/stops/3620B", "https://mivb.openplanner.team/stops/3623B"], ["https://mivb.openplanner.team/stops/4111", "https://mivb.openplanner.team/stops/6471"], ["https://mivb.openplanner.team/stops/7820253", "https://mivb.openplanner.team/stops/9051F"], ["https://mivb.openplanner.team/stops/7820153", "https://mivb.openplanner.team/stops/7820453"], ["https://mivb.openplanner.team/stops/5602", "https://mivb.openplanner.team/stops/5658"], ["https://mivb.openplanner.team/stops/2502", "https://mivb.openplanner.team/stops/7780157"], ["https://mivb.openplanner.team/stops/2376", "https://mivb.openplanner.team/stops/5707"], ["https://mivb.openplanner.team/stops/1199F", "https://mivb.openplanner.team/stops/4107"], ["https://mivb.openplanner.team/stops/2311", "https://mivb.openplanner.team/stops/5771"], ["https://mivb.openplanner.team/stops/1116", "https://mivb.openplanner.team/stops/9802"], ["https://mivb.openplanner.team/stops/1788", "https://mivb.openplanner.team/stops/5003"], ["https://mivb.openplanner.team/stops/1231", "https://mivb.openplanner.team/stops/5155"], ["https://mivb.openplanner.team/stops/4599", "https://mivb.openplanner.team/stops/9802"], ["https://mivb.openplanner.team/stops/1375", "https://mivb.openplanner.team/stops/1387"], ["https://mivb.openplanner.team/stops/0820270", "https://mivb.openplanner.team/stops/6454"], ["https://mivb.openplanner.team/stops/5229F", "https://mivb.openplanner.team/stops/8122"], ["https://mivb.openplanner.team/stops/2861", "https://mivb.openplanner.team/stops/5087"], ["https://mivb.openplanner.team/stops/5011", "https://mivb.openplanner.team/stops/5089"], ["https://mivb.openplanner.team/stops/1718B", "https://mivb.openplanner.team/stops/1758B"], ["https://mivb.openplanner.team/stops/4125", "https://mivb.openplanner.team/stops/4127"], ["https://mivb.openplanner.team/stops/1541", "https://mivb.openplanner.team/stops/7660109"], ["https://mivb.openplanner.team/stops/2203", "https://mivb.openplanner.team/stops/2370"], ["https://mivb.openplanner.team/stops/2316", "https://mivb.openplanner.team/stops/3002"], ["https://mivb.openplanner.team/stops/1415", "https://mivb.openplanner.team/stops/1451"], ["https://mivb.openplanner.team/stops/5404", "https://mivb.openplanner.team/stops/7527"], ["https://mivb.openplanner.team/stops/2764G", "https://mivb.openplanner.team/stops/4075"], ["https://mivb.openplanner.team/stops/1970", "https://mivb.openplanner.team/stops/2108"], ["https://mivb.openplanner.team/stops/1913", "https://mivb.openplanner.team/stops/1976"], ["https://mivb.openplanner.team/stops/6608G", "https://mivb.openplanner.team/stops/6648"], ["https://mivb.openplanner.team/stops/4205", "https://mivb.openplanner.team/stops/8833"], ["https://mivb.openplanner.team/stops/3450", "https://mivb.openplanner.team/stops/3466"], ["https://mivb.openplanner.team/stops/3504", "https://mivb.openplanner.team/stops/0310644"], ["https://mivb.openplanner.team/stops/6438", "https://mivb.openplanner.team/stops/8421"], ["https://mivb.openplanner.team/stops/3230F", "https://mivb.openplanner.team/stops/7730102"], ["https://mivb.openplanner.team/stops/5701", "https://mivb.openplanner.team/stops/9052"], ["https://mivb.openplanner.team/stops/2071", "https://mivb.openplanner.team/stops/2084"], ["https://mivb.openplanner.team/stops/0725", "https://mivb.openplanner.team/stops/0340141"], ["https://mivb.openplanner.team/stops/5528F", "https://mivb.openplanner.team/stops/7501"], ["https://mivb.openplanner.team/stops/6411", "https://mivb.openplanner.team/stops/6413F"], ["https://mivb.openplanner.team/stops/4600", "https://mivb.openplanner.team/stops/4656"], ["https://mivb.openplanner.team/stops/1931", "https://mivb.openplanner.team/stops/5825"], ["https://mivb.openplanner.team/stops/2299", "https://mivb.openplanner.team/stops/2816"], ["https://mivb.openplanner.team/stops/0606", "https://mivb.openplanner.team/stops/5286"], ["https://mivb.openplanner.team/stops/2147B", "https://mivb.openplanner.team/stops/5032B"], ["https://mivb.openplanner.team/stops/5008F", "https://mivb.openplanner.team/stops/5076"], ["https://mivb.openplanner.team/stops/3100", "https://mivb.openplanner.team/stops/3219"], ["https://mivb.openplanner.team/stops/2567", "https://mivb.openplanner.team/stops/4007G"], ["https://mivb.openplanner.team/stops/7710104", "https://mivb.openplanner.team/stops/7720203"], ["https://mivb.openplanner.team/stops/1509", "https://mivb.openplanner.team/stops/1569B"], ["https://mivb.openplanner.team/stops/2934", "https://mivb.openplanner.team/stops/2957"], ["https://mivb.openplanner.team/stops/1245", "https://mivb.openplanner.team/stops/6754"], ["https://mivb.openplanner.team/stops/2710G", "https://mivb.openplanner.team/stops/5026"], ["https://mivb.openplanner.team/stops/1480", "https://mivb.openplanner.team/stops/7670208"], ["https://mivb.openplanner.team/stops/1135", "https://mivb.openplanner.team/stops/6009"], ["https://mivb.openplanner.team/stops/2002", "https://mivb.openplanner.team/stops/2152"], ["https://mivb.openplanner.team/stops/6457F", "https://mivb.openplanner.team/stops/6459"], ["https://mivb.openplanner.team/stops/1046G", "https://mivb.openplanner.team/stops/1048F"], ["https://mivb.openplanner.team/stops/3800", "https://mivb.openplanner.team/stops/9979B"], ["https://mivb.openplanner.team/stops/3546", "https://mivb.openplanner.team/stops/0230134"], ["https://mivb.openplanner.team/stops/5906", "https://mivb.openplanner.team/stops/5967"], ["https://mivb.openplanner.team/stops/3232", "https://mivb.openplanner.team/stops/3281"], ["https://mivb.openplanner.team/stops/1638B", "https://mivb.openplanner.team/stops/0150129"], ["https://mivb.openplanner.team/stops/5010", "https://mivb.openplanner.team/stops/6552"], ["https://mivb.openplanner.team/stops/1230", "https://mivb.openplanner.team/stops/5151"], ["https://mivb.openplanner.team/stops/5161", "https://mivb.openplanner.team/stops/5161F"], ["https://mivb.openplanner.team/stops/6020", "https://mivb.openplanner.team/stops/6058"], ["https://mivb.openplanner.team/stops/1115", "https://mivb.openplanner.team/stops/7750260"], ["https://mivb.openplanner.team/stops/6359", "https://mivb.openplanner.team/stops/6359F"], ["https://mivb.openplanner.team/stops/5459", "https://mivb.openplanner.team/stops/5459F"], ["https://mivb.openplanner.team/stops/0120526", "https://mivb.openplanner.team/stops/0120626"], ["https://mivb.openplanner.team/stops/1597", "https://mivb.openplanner.team/stops/4298"], ["https://mivb.openplanner.team/stops/1800", "https://mivb.openplanner.team/stops/3012"], ["https://mivb.openplanner.team/stops/2150", "https://mivb.openplanner.team/stops/6934F"], ["https://mivb.openplanner.team/stops/5520F", "https://mivb.openplanner.team/stops/9164"], ["https://mivb.openplanner.team/stops/1741", "https://mivb.openplanner.team/stops/2108"], ["https://mivb.openplanner.team/stops/1546", "https://mivb.openplanner.team/stops/5503"], ["https://mivb.openplanner.team/stops/2857B", "https://mivb.openplanner.team/stops/5700G"], ["https://mivb.openplanner.team/stops/1154", "https://mivb.openplanner.team/stops/0080422"], ["https://mivb.openplanner.team/stops/6427F", "https://mivb.openplanner.team/stops/6428F"], ["https://mivb.openplanner.team/stops/1495", "https://mivb.openplanner.team/stops/6792F"], ["https://mivb.openplanner.team/stops/4125", "https://mivb.openplanner.team/stops/4266"], ["https://mivb.openplanner.team/stops/1513", "https://mivb.openplanner.team/stops/1514"], ["https://mivb.openplanner.team/stops/2571", "https://mivb.openplanner.team/stops/6864F"], ["https://mivb.openplanner.team/stops/5298F", "https://mivb.openplanner.team/stops/5361"], ["https://mivb.openplanner.team/stops/3412", "https://mivb.openplanner.team/stops/3451"], ["https://mivb.openplanner.team/stops/3236", "https://mivb.openplanner.team/stops/4006G"], ["https://mivb.openplanner.team/stops/2970", "https://mivb.openplanner.team/stops/3100"], ["https://mivb.openplanner.team/stops/9607", "https://mivb.openplanner.team/stops/9608"], ["https://mivb.openplanner.team/stops/7640311", "https://mivb.openplanner.team/stops/9658"], ["https://mivb.openplanner.team/stops/1072", "https://mivb.openplanner.team/stops/2523"], ["https://mivb.openplanner.team/stops/2915", "https://mivb.openplanner.team/stops/5307G"], ["https://mivb.openplanner.team/stops/1853", "https://mivb.openplanner.team/stops/5510"], ["https://mivb.openplanner.team/stops/1231", "https://mivb.openplanner.team/stops/1239"], ["https://mivb.openplanner.team/stops/2410", "https://mivb.openplanner.team/stops/2457"], ["https://mivb.openplanner.team/stops/2924", "https://mivb.openplanner.team/stops/3307"], ["https://mivb.openplanner.team/stops/5007F", "https://mivb.openplanner.team/stops/5078F"], ["https://mivb.openplanner.team/stops/1412", "https://mivb.openplanner.team/stops/5223F"], ["https://mivb.openplanner.team/stops/2334F", "https://mivb.openplanner.team/stops/6121F"], ["https://mivb.openplanner.team/stops/3520", "https://mivb.openplanner.team/stops/4294"], ["https://mivb.openplanner.team/stops/1678F", "https://mivb.openplanner.team/stops/9103"], ["https://mivb.openplanner.team/stops/3815", "https://mivb.openplanner.team/stops/3850"], ["https://mivb.openplanner.team/stops/3012", "https://mivb.openplanner.team/stops/3347"], ["https://mivb.openplanner.team/stops/3403", "https://mivb.openplanner.team/stops/3424"], ["https://mivb.openplanner.team/stops/1259", "https://mivb.openplanner.team/stops/1489"], ["https://mivb.openplanner.team/stops/3522", "https://mivb.openplanner.team/stops/5603"], ["https://mivb.openplanner.team/stops/5013F", "https://mivb.openplanner.team/stops/8461"], ["https://mivb.openplanner.team/stops/7800155", "https://mivb.openplanner.team/stops/7800455"], ["https://mivb.openplanner.team/stops/0290112", "https://mivb.openplanner.team/stops/0290212"], ["https://mivb.openplanner.team/stops/2218", "https://mivb.openplanner.team/stops/2259"], ["https://mivb.openplanner.team/stops/2901", "https://mivb.openplanner.team/stops/2902"], ["https://mivb.openplanner.team/stops/1798", "https://mivb.openplanner.team/stops/5405"], ["https://mivb.openplanner.team/stops/5963", "https://mivb.openplanner.team/stops/5964"], ["https://mivb.openplanner.team/stops/5722F", "https://mivb.openplanner.team/stops/5756F"], ["https://mivb.openplanner.team/stops/1723B", "https://mivb.openplanner.team/stops/1753"], ["https://mivb.openplanner.team/stops/1479", "https://mivb.openplanner.team/stops/1493"], ["https://mivb.openplanner.team/stops/5753F", "https://mivb.openplanner.team/stops/5824"], ["https://mivb.openplanner.team/stops/1965", "https://mivb.openplanner.team/stops/2701"], ["https://mivb.openplanner.team/stops/1490", "https://mivb.openplanner.team/stops/1495"], ["https://mivb.openplanner.team/stops/2404F", "https://mivb.openplanner.team/stops/2463F"], ["https://mivb.openplanner.team/stops/1527", "https://mivb.openplanner.team/stops/1528"], ["https://mivb.openplanner.team/stops/2317", "https://mivb.openplanner.team/stops/9756"], ["https://mivb.openplanner.team/stops/1944", "https://mivb.openplanner.team/stops/1953"], ["https://mivb.openplanner.team/stops/3629", "https://mivb.openplanner.team/stops/6353"], ["https://mivb.openplanner.team/stops/5812", "https://mivb.openplanner.team/stops/5857"], ["https://mivb.openplanner.team/stops/4213", "https://mivb.openplanner.team/stops/8281"], ["https://mivb.openplanner.team/stops/2314", "https://mivb.openplanner.team/stops/3061"], ["https://mivb.openplanner.team/stops/2939B", "https://mivb.openplanner.team/stops/5121"], ["https://mivb.openplanner.team/stops/5758F", "https://mivb.openplanner.team/stops/5759F"], ["https://mivb.openplanner.team/stops/2959", "https://mivb.openplanner.team/stops/6162"], ["https://mivb.openplanner.team/stops/2218", "https://mivb.openplanner.team/stops/7720203"], ["https://mivb.openplanner.team/stops/5016F", "https://mivb.openplanner.team/stops/5068F"], ["https://mivb.openplanner.team/stops/2867", "https://mivb.openplanner.team/stops/4257"], ["https://mivb.openplanner.team/stops/0826", "https://mivb.openplanner.team/stops/6451"], ["https://mivb.openplanner.team/stops/1984B", "https://mivb.openplanner.team/stops/1985B"], ["https://mivb.openplanner.team/stops/2565", "https://mivb.openplanner.team/stops/4658"], ["https://mivb.openplanner.team/stops/2409", "https://mivb.openplanner.team/stops/2956"], ["https://mivb.openplanner.team/stops/3160", "https://mivb.openplanner.team/stops/3922"], ["https://mivb.openplanner.team/stops/3308F", "https://mivb.openplanner.team/stops/3414"], ["https://mivb.openplanner.team/stops/1569B", "https://mivb.openplanner.team/stops/3100"], ["https://mivb.openplanner.team/stops/5776", "https://mivb.openplanner.team/stops/9609"], ["https://mivb.openplanner.team/stops/1855", "https://mivb.openplanner.team/stops/6655"], ["https://mivb.openplanner.team/stops/2459", "https://mivb.openplanner.team/stops/2951"], ["https://mivb.openplanner.team/stops/2905", "https://mivb.openplanner.team/stops/9725"], ["https://mivb.openplanner.team/stops/1379", "https://mivb.openplanner.team/stops/8122"], ["https://mivb.openplanner.team/stops/4401", "https://mivb.openplanner.team/stops/4455"], ["https://mivb.openplanner.team/stops/3225F", "https://mivb.openplanner.team/stops/8741"], ["https://mivb.openplanner.team/stops/1490", "https://mivb.openplanner.team/stops/6792F"], ["https://mivb.openplanner.team/stops/2931", "https://mivb.openplanner.team/stops/2932"], ["https://mivb.openplanner.team/stops/1112", "https://mivb.openplanner.team/stops/8472"], ["https://mivb.openplanner.team/stops/5361", "https://mivb.openplanner.team/stops/5362"], ["https://mivb.openplanner.team/stops/1641", "https://mivb.openplanner.team/stops/8131"], ["https://mivb.openplanner.team/stops/0531", "https://mivb.openplanner.team/stops/1900"], ["https://mivb.openplanner.team/stops/1479", "https://mivb.openplanner.team/stops/3810"], ["https://mivb.openplanner.team/stops/1483", "https://mivb.openplanner.team/stops/4215"], ["https://mivb.openplanner.team/stops/1460", "https://mivb.openplanner.team/stops/1518"], ["https://mivb.openplanner.team/stops/3461", "https://mivb.openplanner.team/stops/3957"], ["https://mivb.openplanner.team/stops/1726", "https://mivb.openplanner.team/stops/0320143"], ["https://mivb.openplanner.team/stops/1145", "https://mivb.openplanner.team/stops/1178"], ["https://mivb.openplanner.team/stops/5063", "https://mivb.openplanner.team/stops/6109"], ["https://mivb.openplanner.team/stops/6607", "https://mivb.openplanner.team/stops/6651"], ["https://mivb.openplanner.team/stops/1077", "https://mivb.openplanner.team/stops/1084"], ["https://mivb.openplanner.team/stops/1497B", "https://mivb.openplanner.team/stops/2927"], ["https://mivb.openplanner.team/stops/1313", "https://mivb.openplanner.team/stops/2508"], ["https://mivb.openplanner.team/stops/9703", "https://mivb.openplanner.team/stops/9725"], ["https://mivb.openplanner.team/stops/2037", "https://mivb.openplanner.team/stops/0140228"], ["https://mivb.openplanner.team/stops/1832", "https://mivb.openplanner.team/stops/0130227"], ["https://mivb.openplanner.team/stops/3802", "https://mivb.openplanner.team/stops/6860G"], ["https://mivb.openplanner.team/stops/1713", "https://mivb.openplanner.team/stops/1804"], ["https://mivb.openplanner.team/stops/0410246", "https://mivb.openplanner.team/stops/46"], ["https://mivb.openplanner.team/stops/4318", "https://mivb.openplanner.team/stops/4349"], ["https://mivb.openplanner.team/stops/1196", "https://mivb.openplanner.team/stops/4059"], ["https://mivb.openplanner.team/stops/0810169", "https://mivb.openplanner.team/stops/0810469"], ["https://mivb.openplanner.team/stops/4274", "https://mivb.openplanner.team/stops/4998"], ["https://mivb.openplanner.team/stops/4004", "https://mivb.openplanner.team/stops/4011"], ["https://mivb.openplanner.team/stops/5006", "https://mivb.openplanner.team/stops/6553"], ["https://mivb.openplanner.team/stops/5751", "https://mivb.openplanner.team/stops/5753F"], ["https://mivb.openplanner.team/stops/4074B", "https://mivb.openplanner.team/stops/6471"], ["https://mivb.openplanner.team/stops/3613F", "https://mivb.openplanner.team/stops/7670208"], ["https://mivb.openplanner.team/stops/2361", "https://mivb.openplanner.team/stops/3005"], ["https://mivb.openplanner.team/stops/2576", "https://mivb.openplanner.team/stops/5078F"], ["https://mivb.openplanner.team/stops/2314", "https://mivb.openplanner.team/stops/2327"], ["https://mivb.openplanner.team/stops/1613", "https://mivb.openplanner.team/stops/5524"], ["https://mivb.openplanner.team/stops/2815B", "https://mivb.openplanner.team/stops/2855"], ["https://mivb.openplanner.team/stops/6416", "https://mivb.openplanner.team/stops/6416F"], ["https://mivb.openplanner.team/stops/1451", "https://mivb.openplanner.team/stops/5227F"], ["https://mivb.openplanner.team/stops/3425", "https://mivb.openplanner.team/stops/3458"], ["https://mivb.openplanner.team/stops/1642F", "https://mivb.openplanner.team/stops/1645F"], ["https://mivb.openplanner.team/stops/7800255", "https://mivb.openplanner.team/stops/7800355"], ["https://mivb.openplanner.team/stops/7650210", "https://mivb.openplanner.team/stops/9654"], ["https://mivb.openplanner.team/stops/0520161", "https://mivb.openplanner.team/stops/0536"], ["https://mivb.openplanner.team/stops/4232", "https://mivb.openplanner.team/stops/4274"], ["https://mivb.openplanner.team/stops/2142", "https://mivb.openplanner.team/stops/6934F"], ["https://mivb.openplanner.team/stops/4106", "https://mivb.openplanner.team/stops/4112"], ["https://mivb.openplanner.team/stops/4123", "https://mivb.openplanner.team/stops/7790156"], ["https://mivb.openplanner.team/stops/1758B", "https://mivb.openplanner.team/stops/33"], ["https://mivb.openplanner.team/stops/1819", "https://mivb.openplanner.team/stops/5507"], ["https://mivb.openplanner.team/stops/8241", "https://mivb.openplanner.team/stops/0240535"], ["https://mivb.openplanner.team/stops/1280B", "https://mivb.openplanner.team/stops/6112"], ["https://mivb.openplanner.team/stops/2124", "https://mivb.openplanner.team/stops/5213"], ["https://mivb.openplanner.team/stops/2217", "https://mivb.openplanner.team/stops/2260F"], ["https://mivb.openplanner.team/stops/1984G", "https://mivb.openplanner.team/stops/5853G"], ["https://mivb.openplanner.team/stops/4106", "https://mivb.openplanner.team/stops/4156"], ["https://mivb.openplanner.team/stops/4294", "https://mivb.openplanner.team/stops/4298"], ["https://mivb.openplanner.team/stops/3851", "https://mivb.openplanner.team/stops/9920F"], ["https://mivb.openplanner.team/stops/3182", "https://mivb.openplanner.team/stops/5961"], ["https://mivb.openplanner.team/stops/0900268", "https://mivb.openplanner.team/stops/8201"], ["https://mivb.openplanner.team/stops/5533", "https://mivb.openplanner.team/stops/6474F"], ["https://mivb.openplanner.team/stops/5018F", "https://mivb.openplanner.team/stops/0330242"], ["https://mivb.openplanner.team/stops/5275F", "https://mivb.openplanner.team/stops/5278F"], ["https://mivb.openplanner.team/stops/9786", "https://mivb.openplanner.team/stops/9787"], ["https://mivb.openplanner.team/stops/2918", "https://mivb.openplanner.team/stops/9291"], ["https://mivb.openplanner.team/stops/1206", "https://mivb.openplanner.team/stops/1259"], ["https://mivb.openplanner.team/stops/3158", "https://mivb.openplanner.team/stops/3158B"], ["https://mivb.openplanner.team/stops/0670367", "https://mivb.openplanner.team/stops/1220"], ["https://mivb.openplanner.team/stops/2373", "https://mivb.openplanner.team/stops/2375"], ["https://mivb.openplanner.team/stops/5714", "https://mivb.openplanner.team/stops/6123"], ["https://mivb.openplanner.team/stops/5212", "https://mivb.openplanner.team/stops/6406"], ["https://mivb.openplanner.team/stops/1115", "https://mivb.openplanner.team/stops/1179"], ["https://mivb.openplanner.team/stops/3207", "https://mivb.openplanner.team/stops/9311"], ["https://mivb.openplanner.team/stops/1810", "https://mivb.openplanner.team/stops/8211"], ["https://mivb.openplanner.team/stops/5776", "https://mivb.openplanner.team/stops/9605"], ["https://mivb.openplanner.team/stops/1920", "https://mivb.openplanner.team/stops/1973"], ["https://mivb.openplanner.team/stops/3613F", "https://mivb.openplanner.team/stops/3756"], ["https://mivb.openplanner.team/stops/2830", "https://mivb.openplanner.team/stops/0430348"], ["https://mivb.openplanner.team/stops/1153", "https://mivb.openplanner.team/stops/1561"], ["https://mivb.openplanner.team/stops/2534", "https://mivb.openplanner.team/stops/2560"], ["https://mivb.openplanner.team/stops/4105", "https://mivb.openplanner.team/stops/4112"], ["https://mivb.openplanner.team/stops/1765", "https://mivb.openplanner.team/stops/4110"], ["https://mivb.openplanner.team/stops/2017", "https://mivb.openplanner.team/stops/2078"], ["https://mivb.openplanner.team/stops/2553", "https://mivb.openplanner.team/stops/5757F"], ["https://mivb.openplanner.team/stops/1255", "https://mivb.openplanner.team/stops/7710204"], ["https://mivb.openplanner.team/stops/3163", "https://mivb.openplanner.team/stops/6416F"], ["https://mivb.openplanner.team/stops/4104", "https://mivb.openplanner.team/stops/4159"], ["https://mivb.openplanner.team/stops/2120", "https://mivb.openplanner.team/stops/2143B"], ["https://mivb.openplanner.team/stops/6066G", "https://mivb.openplanner.team/stops/6260F"], ["https://mivb.openplanner.team/stops/2910", "https://mivb.openplanner.team/stops/2995"], ["https://mivb.openplanner.team/stops/2133", "https://mivb.openplanner.team/stops/5253"], ["https://mivb.openplanner.team/stops/1599", "https://mivb.openplanner.team/stops/4221"], ["https://mivb.openplanner.team/stops/1938", "https://mivb.openplanner.team/stops/2167"], ["https://mivb.openplanner.team/stops/3407", "https://mivb.openplanner.team/stops/3454"], ["https://mivb.openplanner.team/stops/1824", "https://mivb.openplanner.team/stops/3620B"], ["https://mivb.openplanner.team/stops/3171", "https://mivb.openplanner.team/stops/3181"], ["https://mivb.openplanner.team/stops/0810269", "https://mivb.openplanner.team/stops/0810369"], ["https://mivb.openplanner.team/stops/1322", "https://mivb.openplanner.team/stops/5220F"], ["https://mivb.openplanner.team/stops/1326", "https://mivb.openplanner.team/stops/2523"], ["https://mivb.openplanner.team/stops/5424", "https://mivb.openplanner.team/stops/5456"], ["https://mivb.openplanner.team/stops/3718", "https://mivb.openplanner.team/stops/3752"], ["https://mivb.openplanner.team/stops/3307", "https://mivb.openplanner.team/stops/5275F"], ["https://mivb.openplanner.team/stops/2507", "https://mivb.openplanner.team/stops/4110"], ["https://mivb.openplanner.team/stops/0330142", "https://mivb.openplanner.team/stops/0330442"], ["https://mivb.openplanner.team/stops/2708G", "https://mivb.openplanner.team/stops/9972F"], ["https://mivb.openplanner.team/stops/1520", "https://mivb.openplanner.team/stops/1559"], ["https://mivb.openplanner.team/stops/1116", "https://mivb.openplanner.team/stops/1193"], ["https://mivb.openplanner.team/stops/4955F", "https://mivb.openplanner.team/stops/4957"], ["https://mivb.openplanner.team/stops/1327", "https://mivb.openplanner.team/stops/2257G"], ["https://mivb.openplanner.team/stops/4265", "https://mivb.openplanner.team/stops/7820353"], ["https://mivb.openplanner.team/stops/1875", "https://mivb.openplanner.team/stops/5561F"], ["https://mivb.openplanner.team/stops/1165", "https://mivb.openplanner.team/stops/3567"], ["https://mivb.openplanner.team/stops/2512", "https://mivb.openplanner.team/stops/3235"], ["https://mivb.openplanner.team/stops/1953", "https://mivb.openplanner.team/stops/2112"], ["https://mivb.openplanner.team/stops/2209", "https://mivb.openplanner.team/stops/2835"], ["https://mivb.openplanner.team/stops/0826", "https://mivb.openplanner.team/stops/0820270"], ["https://mivb.openplanner.team/stops/5026", "https://mivb.openplanner.team/stops/5815F"], ["https://mivb.openplanner.team/stops/2337F", "https://mivb.openplanner.team/stops/2376"], ["https://mivb.openplanner.team/stops/2217", "https://mivb.openplanner.team/stops/3804B"], ["https://mivb.openplanner.team/stops/3226F", "https://mivb.openplanner.team/stops/4594"], ["https://mivb.openplanner.team/stops/3502", "https://mivb.openplanner.team/stops/6355F"], ["https://mivb.openplanner.team/stops/5868", "https://mivb.openplanner.team/stops/7269"], ["https://mivb.openplanner.team/stops/2808", "https://mivb.openplanner.team/stops/2863"], ["https://mivb.openplanner.team/stops/5152", "https://mivb.openplanner.team/stops/5161F"], ["https://mivb.openplanner.team/stops/1462", "https://mivb.openplanner.team/stops/6449"], ["https://mivb.openplanner.team/stops/5916F", "https://mivb.openplanner.team/stops/5952"], ["https://mivb.openplanner.team/stops/2610", "https://mivb.openplanner.team/stops/5922"], ["https://mivb.openplanner.team/stops/1521", "https://mivb.openplanner.team/stops/1557"], ["https://mivb.openplanner.team/stops/3165", "https://mivb.openplanner.team/stops/3412"], ["https://mivb.openplanner.team/stops/1150", "https://mivb.openplanner.team/stops/1557"], ["https://mivb.openplanner.team/stops/1019", "https://mivb.openplanner.team/stops/1348"], ["https://mivb.openplanner.team/stops/4452", "https://mivb.openplanner.team/stops/4454"], ["https://mivb.openplanner.team/stops/1289", "https://mivb.openplanner.team/stops/6482"], ["https://mivb.openplanner.team/stops/1802", "https://mivb.openplanner.team/stops/3953"], ["https://mivb.openplanner.team/stops/3804B", "https://mivb.openplanner.team/stops/5757F"], ["https://mivb.openplanner.team/stops/2522", "https://mivb.openplanner.team/stops/4655"], ["https://mivb.openplanner.team/stops/3199", "https://mivb.openplanner.team/stops/9946"], ["https://mivb.openplanner.team/stops/8432", "https://mivb.openplanner.team/stops/0431048"], ["https://mivb.openplanner.team/stops/1211B", "https://mivb.openplanner.team/stops/8722"], ["https://mivb.openplanner.team/stops/2708G", "https://mivb.openplanner.team/stops/2765"], ["https://mivb.openplanner.team/stops/5611", "https://mivb.openplanner.team/stops/6119F"], ["https://mivb.openplanner.team/stops/0250236", "https://mivb.openplanner.team/stops/0250436"], ["https://mivb.openplanner.team/stops/1811", "https://mivb.openplanner.team/stops/1865"], ["https://mivb.openplanner.team/stops/1767", "https://mivb.openplanner.team/stops/2505"], ["https://mivb.openplanner.team/stops/2234", "https://mivb.openplanner.team/stops/3012"], ["https://mivb.openplanner.team/stops/2415", "https://mivb.openplanner.team/stops/2452"], ["https://mivb.openplanner.team/stops/3007", "https://mivb.openplanner.team/stops/3059"], ["https://mivb.openplanner.team/stops/4003G", "https://mivb.openplanner.team/stops/5168"], ["https://mivb.openplanner.team/stops/5021", "https://mivb.openplanner.team/stops/5062"], ["https://mivb.openplanner.team/stops/2301", "https://mivb.openplanner.team/stops/8021"], ["https://mivb.openplanner.team/stops/8642", "https://mivb.openplanner.team/stops/7640211"], ["https://mivb.openplanner.team/stops/6477", "https://mivb.openplanner.team/stops/0110125"], ["https://mivb.openplanner.team/stops/1463", "https://mivb.openplanner.team/stops/6056"], ["https://mivb.openplanner.team/stops/1805", "https://mivb.openplanner.team/stops/5480"], ["https://mivb.openplanner.team/stops/2221", "https://mivb.openplanner.team/stops/0430448"], ["https://mivb.openplanner.team/stops/4209", "https://mivb.openplanner.team/stops/4257"], ["https://mivb.openplanner.team/stops/1515", "https://mivb.openplanner.team/stops/6055"], ["https://mivb.openplanner.team/stops/4705", "https://mivb.openplanner.team/stops/5467"], ["https://mivb.openplanner.team/stops/3510", "https://mivb.openplanner.team/stops/5208"], ["https://mivb.openplanner.team/stops/1209", "https://mivb.openplanner.team/stops/5168F"], ["https://mivb.openplanner.team/stops/1474B", "https://mivb.openplanner.team/stops/3399"], ["https://mivb.openplanner.team/stops/1132", "https://mivb.openplanner.team/stops/2927"], ["https://mivb.openplanner.team/stops/1085", "https://mivb.openplanner.team/stops/1229"], ["https://mivb.openplanner.team/stops/5045", "https://mivb.openplanner.team/stops/5046"], ["https://mivb.openplanner.team/stops/1751", "https://mivb.openplanner.team/stops/5284F"], ["https://mivb.openplanner.team/stops/4125", "https://mivb.openplanner.team/stops/4129"], ["https://mivb.openplanner.team/stops/4257", "https://mivb.openplanner.team/stops/5403"], ["https://mivb.openplanner.team/stops/8271", "https://mivb.openplanner.team/stops/0270414"], ["https://mivb.openplanner.team/stops/3260", "https://mivb.openplanner.team/stops/6649F"], ["https://mivb.openplanner.team/stops/1938", "https://mivb.openplanner.team/stops/1957B"], ["https://mivb.openplanner.team/stops/5312", "https://mivb.openplanner.team/stops/6473"], ["https://mivb.openplanner.team/stops/2570", "https://mivb.openplanner.team/stops/5108"], ["https://mivb.openplanner.team/stops/2352", "https://mivb.openplanner.team/stops/2854"], ["https://mivb.openplanner.team/stops/2239", "https://mivb.openplanner.team/stops/5711F"], ["https://mivb.openplanner.team/stops/1232", "https://mivb.openplanner.team/stops/1240"], ["https://mivb.openplanner.team/stops/6014", "https://mivb.openplanner.team/stops/0420147"], ["https://mivb.openplanner.team/stops/1015", "https://mivb.openplanner.team/stops/2523"], ["https://mivb.openplanner.team/stops/3230F", "https://mivb.openplanner.team/stops/8732"], ["https://mivb.openplanner.team/stops/2456", "https://mivb.openplanner.team/stops/2954B"], ["https://mivb.openplanner.team/stops/1563", "https://mivb.openplanner.team/stops/2244F"], ["https://mivb.openplanner.team/stops/1113", "https://mivb.openplanner.team/stops/0090123"], ["https://mivb.openplanner.team/stops/6203", "https://mivb.openplanner.team/stops/6418F"], ["https://mivb.openplanner.team/stops/3109", "https://mivb.openplanner.team/stops/6364"], ["https://mivb.openplanner.team/stops/2267", "https://mivb.openplanner.team/stops/0010415"], ["https://mivb.openplanner.team/stops/0240335", "https://mivb.openplanner.team/stops/35"], ["https://mivb.openplanner.team/stops/3131", "https://mivb.openplanner.team/stops/4366"], ["https://mivb.openplanner.team/stops/4357", "https://mivb.openplanner.team/stops/4401"], ["https://mivb.openplanner.team/stops/1425", "https://mivb.openplanner.team/stops/3218"], ["https://mivb.openplanner.team/stops/4307", "https://mivb.openplanner.team/stops/5266F"], ["https://mivb.openplanner.team/stops/1273", "https://mivb.openplanner.team/stops/3219"], ["https://mivb.openplanner.team/stops/5718", "https://mivb.openplanner.team/stops/5757"], ["https://mivb.openplanner.team/stops/2147B", "https://mivb.openplanner.team/stops/5032G"], ["https://mivb.openplanner.team/stops/1110", "https://mivb.openplanner.team/stops/1957B"], ["https://mivb.openplanner.team/stops/7710104", "https://mivb.openplanner.team/stops/8712"], ["https://mivb.openplanner.team/stops/2311", "https://mivb.openplanner.team/stops/2819"], ["https://mivb.openplanner.team/stops/1509", "https://mivb.openplanner.team/stops/1570"], ["https://mivb.openplanner.team/stops/5273F", "https://mivb.openplanner.team/stops/5287"], ["https://mivb.openplanner.team/stops/5223F", "https://mivb.openplanner.team/stops/5224F"], ["https://mivb.openplanner.team/stops/1416", "https://mivb.openplanner.team/stops/1417B"], ["https://mivb.openplanner.team/stops/6602", "https://mivb.openplanner.team/stops/6602P"], ["https://mivb.openplanner.team/stops/3510", "https://mivb.openplanner.team/stops/3562"], ["https://mivb.openplanner.team/stops/6437F", "https://mivb.openplanner.team/stops/47"], ["https://mivb.openplanner.team/stops/1602", "https://mivb.openplanner.team/stops/1656B"], ["https://mivb.openplanner.team/stops/0600262", "https://mivb.openplanner.team/stops/0010115"], ["https://mivb.openplanner.team/stops/2718", "https://mivb.openplanner.team/stops/5459F"], ["https://mivb.openplanner.team/stops/2455", "https://mivb.openplanner.team/stops/5814"], ["https://mivb.openplanner.team/stops/6811", "https://mivb.openplanner.team/stops/6"], ["https://mivb.openplanner.team/stops/4344", "https://mivb.openplanner.team/stops/4355"], ["https://mivb.openplanner.team/stops/1422", "https://mivb.openplanner.team/stops/5225F"], ["https://mivb.openplanner.team/stops/5906", "https://mivb.openplanner.team/stops/5968"], ["https://mivb.openplanner.team/stops/2931", "https://mivb.openplanner.team/stops/5018F"], ["https://mivb.openplanner.team/stops/2524", "https://mivb.openplanner.team/stops/2555"], ["https://mivb.openplanner.team/stops/1534", "https://mivb.openplanner.team/stops/1538B"], ["https://mivb.openplanner.team/stops/3508", "https://mivb.openplanner.team/stops/3508F"], ["https://mivb.openplanner.team/stops/1805", "https://mivb.openplanner.team/stops/6009"], ["https://mivb.openplanner.team/stops/1233", "https://mivb.openplanner.team/stops/1983"], ["https://mivb.openplanner.team/stops/1880", "https://mivb.openplanner.team/stops/3120"], ["https://mivb.openplanner.team/stops/1788", "https://mivb.openplanner.team/stops/5081F"], ["https://mivb.openplanner.team/stops/4116", "https://mivb.openplanner.team/stops/6805F"], ["https://mivb.openplanner.team/stops/6430", "https://mivb.openplanner.team/stops/6430F"], ["https://mivb.openplanner.team/stops/3403", "https://mivb.openplanner.team/stops/5046"], ["https://mivb.openplanner.team/stops/2954B", "https://mivb.openplanner.team/stops/5813"], ["https://mivb.openplanner.team/stops/1322", "https://mivb.openplanner.team/stops/2123"], ["https://mivb.openplanner.team/stops/1756B", "https://mivb.openplanner.team/stops/3550"], ["https://mivb.openplanner.team/stops/2853", "https://mivb.openplanner.team/stops/2854"], ["https://mivb.openplanner.team/stops/1747", "https://mivb.openplanner.team/stops/4063"], ["https://mivb.openplanner.team/stops/2402", "https://mivb.openplanner.team/stops/6121F"], ["https://mivb.openplanner.team/stops/1230", "https://mivb.openplanner.team/stops/5123"], ["https://mivb.openplanner.team/stops/4598", "https://mivb.openplanner.team/stops/4657"], ["https://mivb.openplanner.team/stops/1597", "https://mivb.openplanner.team/stops/4299"], ["https://mivb.openplanner.team/stops/2120", "https://mivb.openplanner.team/stops/2759"], ["https://mivb.openplanner.team/stops/3307", "https://mivb.openplanner.team/stops/3361"], ["https://mivb.openplanner.team/stops/0536", "https://mivb.openplanner.team/stops/2271"], ["https://mivb.openplanner.team/stops/8411", "https://mivb.openplanner.team/stops/46"], ["https://mivb.openplanner.team/stops/3102", "https://mivb.openplanner.team/stops/5959"], ["https://mivb.openplanner.team/stops/5298F", "https://mivb.openplanner.team/stops/5361F"], ["https://mivb.openplanner.team/stops/1900", "https://mivb.openplanner.team/stops/5735"], ["https://mivb.openplanner.team/stops/4308", "https://mivb.openplanner.team/stops/4360"], ["https://mivb.openplanner.team/stops/1570", "https://mivb.openplanner.team/stops/0050419"], ["https://mivb.openplanner.team/stops/1169", "https://mivb.openplanner.team/stops/3004"], ["https://mivb.openplanner.team/stops/1231", "https://mivb.openplanner.team/stops/1240"], ["https://mivb.openplanner.team/stops/8051", "https://mivb.openplanner.team/stops/0050519"], ["https://mivb.openplanner.team/stops/8641", "https://mivb.openplanner.team/stops/9825F"], ["https://mivb.openplanner.team/stops/8793", "https://mivb.openplanner.team/stops/8794"], ["https://mivb.openplanner.team/stops/1509", "https://mivb.openplanner.team/stops/0050419"], ["https://mivb.openplanner.team/stops/6862", "https://mivb.openplanner.team/stops/6862F"], ["https://mivb.openplanner.team/stops/2805", "https://mivb.openplanner.team/stops/6502"], ["https://mivb.openplanner.team/stops/1354", "https://mivb.openplanner.team/stops/9952G"], ["https://mivb.openplanner.team/stops/2015", "https://mivb.openplanner.team/stops/2087"], ["https://mivb.openplanner.team/stops/1903", "https://mivb.openplanner.team/stops/5408"], ["https://mivb.openplanner.team/stops/3216", "https://mivb.openplanner.team/stops/3251"], ["https://mivb.openplanner.team/stops/4115", "https://mivb.openplanner.team/stops/4160"], ["https://mivb.openplanner.team/stops/4228", "https://mivb.openplanner.team/stops/4261"], ["https://mivb.openplanner.team/stops/3018", "https://mivb.openplanner.team/stops/3328"], ["https://mivb.openplanner.team/stops/1315", "https://mivb.openplanner.team/stops/3204"], ["https://mivb.openplanner.team/stops/2728", "https://mivb.openplanner.team/stops/5282F"], ["https://mivb.openplanner.team/stops/1713", "https://mivb.openplanner.team/stops/1764"], ["https://mivb.openplanner.team/stops/4313", "https://mivb.openplanner.team/stops/4348"], ["https://mivb.openplanner.team/stops/1203", "https://mivb.openplanner.team/stops/1488"], ["https://mivb.openplanner.team/stops/6369", "https://mivb.openplanner.team/stops/9064"], ["https://mivb.openplanner.team/stops/5753F", "https://mivb.openplanner.team/stops/5823"], ["https://mivb.openplanner.team/stops/7650110", "https://mivb.openplanner.team/stops/7660209"], ["https://mivb.openplanner.team/stops/3704", "https://mivb.openplanner.team/stops/3763"], ["https://mivb.openplanner.team/stops/3362", "https://mivb.openplanner.team/stops/5046"], ["https://mivb.openplanner.team/stops/2548F", "https://mivb.openplanner.team/stops/5757"], ["https://mivb.openplanner.team/stops/5297B", "https://mivb.openplanner.team/stops/7680107"], ["https://mivb.openplanner.team/stops/3223B", "https://mivb.openplanner.team/stops/6649F"], ["https://mivb.openplanner.team/stops/1944", "https://mivb.openplanner.team/stops/1954"], ["https://mivb.openplanner.team/stops/1422", "https://mivb.openplanner.team/stops/1423"], ["https://mivb.openplanner.team/stops/3285", "https://mivb.openplanner.team/stops/3462"], ["https://mivb.openplanner.team/stops/8102", "https://mivb.openplanner.team/stops/9983"], ["https://mivb.openplanner.team/stops/1458", "https://mivb.openplanner.team/stops/9983"], ["https://mivb.openplanner.team/stops/1606", "https://mivb.openplanner.team/stops/4072"], ["https://mivb.openplanner.team/stops/1379", "https://mivb.openplanner.team/stops/1383"], ["https://mivb.openplanner.team/stops/0810469", "https://mivb.openplanner.team/stops/1154"], ["https://mivb.openplanner.team/stops/6100", "https://mivb.openplanner.team/stops/7790556"], ["https://mivb.openplanner.team/stops/1557", "https://mivb.openplanner.team/stops/3900"], ["https://mivb.openplanner.team/stops/5009", "https://mivb.openplanner.team/stops/7770258"], ["https://mivb.openplanner.team/stops/6019", "https://mivb.openplanner.team/stops/6020"], ["https://mivb.openplanner.team/stops/1984B", "https://mivb.openplanner.team/stops/1984G"], ["https://mivb.openplanner.team/stops/6462F", "https://mivb.openplanner.team/stops/0070621"], ["https://mivb.openplanner.team/stops/6058", "https://mivb.openplanner.team/stops/9296"], ["https://mivb.openplanner.team/stops/0240335", "https://mivb.openplanner.team/stops/0240435"], ["https://mivb.openplanner.team/stops/1726", "https://mivb.openplanner.team/stops/3628"], ["https://mivb.openplanner.team/stops/2409", "https://mivb.openplanner.team/stops/2951"], ["https://mivb.openplanner.team/stops/3160", "https://mivb.openplanner.team/stops/3921"], ["https://mivb.openplanner.team/stops/2960F", "https://mivb.openplanner.team/stops/6453"], ["https://mivb.openplanner.team/stops/2757C", "https://mivb.openplanner.team/stops/5415F"], ["https://mivb.openplanner.team/stops/4401", "https://mivb.openplanner.team/stops/0240535"], ["https://mivb.openplanner.team/stops/1225", "https://mivb.openplanner.team/stops/3004"], ["https://mivb.openplanner.team/stops/3123", "https://mivb.openplanner.team/stops/3131"], ["https://mivb.openplanner.team/stops/7740101", "https://mivb.openplanner.team/stops/8744"], ["https://mivb.openplanner.team/stops/2147B", "https://mivb.openplanner.team/stops/2150"], ["https://mivb.openplanner.team/stops/4157", "https://mivb.openplanner.team/stops/4158"], ["https://mivb.openplanner.team/stops/3609F", "https://mivb.openplanner.team/stops/7670108"], ["https://mivb.openplanner.team/stops/1847", "https://mivb.openplanner.team/stops/5551"], ["https://mivb.openplanner.team/stops/0621", "https://mivb.openplanner.team/stops/6601"], ["https://mivb.openplanner.team/stops/5361", "https://mivb.openplanner.team/stops/5361F"], ["https://mivb.openplanner.team/stops/2120", "https://mivb.openplanner.team/stops/2148"], ["https://mivb.openplanner.team/stops/1737", "https://mivb.openplanner.team/stops/2161"], ["https://mivb.openplanner.team/stops/5817", "https://mivb.openplanner.team/stops/5817F"], ["https://mivb.openplanner.team/stops/1229", "https://mivb.openplanner.team/stops/2524"], ["https://mivb.openplanner.team/stops/0900368", "https://mivb.openplanner.team/stops/0900468"], ["https://mivb.openplanner.team/stops/6483B", "https://mivb.openplanner.team/stops/8692"], ["https://mivb.openplanner.team/stops/1626", "https://mivb.openplanner.team/stops/4214"], ["https://mivb.openplanner.team/stops/6302", "https://mivb.openplanner.team/stops/6303"], ["https://mivb.openplanner.team/stops/2023", "https://mivb.openplanner.team/stops/5115"], ["https://mivb.openplanner.team/stops/2662B", "https://mivb.openplanner.team/stops/5721G"], ["https://mivb.openplanner.team/stops/1752", "https://mivb.openplanner.team/stops/3526"], ["https://mivb.openplanner.team/stops/6016", "https://mivb.openplanner.team/stops/6062"], ["https://mivb.openplanner.team/stops/2959", "https://mivb.openplanner.team/stops/3625B"], ["https://mivb.openplanner.team/stops/1635", "https://mivb.openplanner.team/stops/1661"], ["https://mivb.openplanner.team/stops/1207", "https://mivb.openplanner.team/stops/2532"], ["https://mivb.openplanner.team/stops/5219F", "https://mivb.openplanner.team/stops/6422F"], ["https://mivb.openplanner.team/stops/1030", "https://mivb.openplanner.team/stops/1082"], ["https://mivb.openplanner.team/stops/1801", "https://mivb.openplanner.team/stops/0340341"], ["https://mivb.openplanner.team/stops/1714", "https://mivb.openplanner.team/stops/5265F"], ["https://mivb.openplanner.team/stops/1970", "https://mivb.openplanner.team/stops/1971"], ["https://mivb.openplanner.team/stops/6654F", "https://mivb.openplanner.team/stops/0280213"]] \ No newline at end of file diff --git a/src/analytics/footpaths/nmbs_pairs.json b/src/analytics/footpaths/nmbs_pairs.json deleted file mode 100644 index 0f423df7..00000000 --- a/src/analytics/footpaths/nmbs_pairs.json +++ /dev/null @@ -1 +0,0 @@ -[["http://irail.be/stations/NMBS/008892205", "http://irail.be/stations/NMBS/008892254"], ["http://irail.be/stations/NMBS/008811155", "http://irail.be/stations/NMBS/008811213"], ["http://irail.be/stations/NMBS/008010316", "http://irail.be/stations/NMBS/008832664"], ["http://irail.be/stations/NMBS/008811205", "http://irail.be/stations/NMBS/008811437"], ["http://irail.be/stations/NMBS/008895208", "http://irail.be/stations/NMBS/008895570"], ["http://irail.be/stations/NMBS/008811254", "http://irail.be/stations/NMBS/008811510"], ["http://irail.be/stations/NMBS/008886041", "http://irail.be/stations/NMBS/008886058"], ["http://irail.be/stations/NMBS/008881463", "http://irail.be/stations/NMBS/008883220"], ["http://irail.be/stations/NMBS/007015440", "http://irail.be/stations/NMBS/008731388"], ["http://irail.be/stations/NMBS/008200130", "http://irail.be/stations/NMBS/008866001"], ["http://irail.be/stations/NMBS/008895778", "http://irail.be/stations/NMBS/008895844"], ["http://irail.be/stations/NMBS/008844321", "http://irail.be/stations/NMBS/008844339"], ["http://irail.be/stations/NMBS/008832433", "http://irail.be/stations/NMBS/008833274"], ["http://irail.be/stations/NMBS/008842051", "http://irail.be/stations/NMBS/008842648"], ["http://irail.be/stations/NMBS/008814456", "http://irail.be/stations/NMBS/008814472"], ["http://irail.be/stations/NMBS/008864501", "http://irail.be/stations/NMBS/008864915"], ["http://irail.be/stations/NMBS/008891702", "http://irail.be/stations/NMBS/008892338"], ["http://irail.be/stations/NMBS/008811304", "http://irail.be/stations/NMBS/008813037"], ["http://irail.be/stations/NMBS/008200134", "http://irail.be/stations/NMBS/008844628"], ["http://irail.be/stations/NMBS/008864337", "http://irail.be/stations/NMBS/008865227"], ["http://irail.be/stations/NMBS/008821824", "http://irail.be/stations/NMBS/008822475"], ["http://irail.be/stations/NMBS/008777320", "http://irail.be/stations/NMBS/008778100"], ["http://irail.be/stations/NMBS/008863354", "http://irail.be/stations/NMBS/008863461"], ["http://irail.be/stations/NMBS/008728671", "http://irail.be/stations/NMBS/008728683"], ["http://irail.be/stations/NMBS/008811544", "http://irail.be/stations/NMBS/008811817"], ["http://irail.be/stations/NMBS/008895208", "http://irail.be/stations/NMBS/008895232"], ["http://irail.be/stations/NMBS/008886009", "http://irail.be/stations/NMBS/008886041"], ["http://irail.be/stations/NMBS/008842663", "http://irail.be/stations/NMBS/008843224"], ["http://irail.be/stations/NMBS/008892403", "http://irail.be/stations/NMBS/008896396"], ["http://irail.be/stations/NMBS/008728686", "http://irail.be/stations/NMBS/008728710"], ["http://irail.be/stations/NMBS/008811247", "http://irail.be/stations/NMBS/008811510"], ["http://irail.be/stations/NMBS/008841467", "http://irail.be/stations/NMBS/008843240"], ["http://irail.be/stations/NMBS/008831039", "http://irail.be/stations/NMBS/008841442"], ["http://irail.be/stations/NMBS/008821022", "http://irail.be/stations/NMBS/008821246"], ["http://irail.be/stations/NMBS/008010053", "http://irail.be/stations/NMBS/008032572"], ["http://irail.be/stations/NMBS/008864436", "http://irail.be/stations/NMBS/008865003"], ["http://irail.be/stations/NMBS/008728671", "http://irail.be/stations/NMBS/008728685"], ["http://irail.be/stations/NMBS/008811205", "http://irail.be/stations/NMBS/008811221"], ["http://irail.be/stations/NMBS/008822533", "http://irail.be/stations/NMBS/008833175"], ["http://irail.be/stations/NMBS/008774176", "http://irail.be/stations/NMBS/008774179"], ["http://irail.be/stations/NMBS/008892007", "http://irail.be/stations/NMBS/008893179"], ["http://irail.be/stations/NMBS/008811247", "http://irail.be/stations/NMBS/008811254"], ["http://irail.be/stations/NMBS/008891173", "http://irail.be/stations/NMBS/008891405"], ["http://irail.be/stations/NMBS/008844008", "http://irail.be/stations/NMBS/008849064"], ["http://irail.be/stations/NMBS/008821717", "http://irail.be/stations/NMBS/008832458"], ["http://irail.be/stations/NMBS/008812062", "http://irail.be/stations/NMBS/008812120"], ["http://irail.be/stations/NMBS/008883006", "http://irail.be/stations/NMBS/008883113"], ["http://irail.be/stations/NMBS/008814134", "http://irail.be/stations/NMBS/008814431"], ["http://irail.be/stations/NMBS/008814167", "http://irail.be/stations/NMBS/008814423"], ["http://irail.be/stations/NMBS/008841202", "http://irail.be/stations/NMBS/008841731"], ["http://irail.be/stations/NMBS/008871415", "http://irail.be/stations/NMBS/008871829"], ["http://irail.be/stations/NMBS/008863818", "http://irail.be/stations/NMBS/008875002"], ["http://irail.be/stations/NMBS/008893518", "http://irail.be/stations/NMBS/008893526"], ["http://irail.be/stations/NMBS/008777320", "http://irail.be/stations/NMBS/008778127"], ["http://irail.be/stations/NMBS/008774164", "http://irail.be/stations/NMBS/008774176"], ["http://irail.be/stations/NMBS/008883311", "http://irail.be/stations/NMBS/008883808"], ["http://irail.be/stations/NMBS/008812260", "http://irail.be/stations/NMBS/008895778"], ["http://irail.be/stations/NMBS/008814340", "http://irail.be/stations/NMBS/008814415"], ["http://irail.be/stations/NMBS/008841525", "http://irail.be/stations/NMBS/008841673"], ["http://irail.be/stations/NMBS/008881570", "http://irail.be/stations/NMBS/008884004"], ["http://irail.be/stations/NMBS/008822137", "http://irail.be/stations/NMBS/008822715"], ["http://irail.be/stations/NMBS/008892007", "http://irail.be/stations/NMBS/008893013"], ["http://irail.be/stations/NMBS/008881158", "http://irail.be/stations/NMBS/008886058"], ["http://irail.be/stations/NMBS/008871688", "http://irail.be/stations/NMBS/008873320"], ["http://irail.be/stations/NMBS/008874609", "http://irail.be/stations/NMBS/008874724"], ["http://irail.be/stations/NMBS/008861119", "http://irail.be/stations/NMBS/008861127"], ["http://irail.be/stations/NMBS/008822269", "http://irail.be/stations/NMBS/008822277"], ["http://irail.be/stations/NMBS/008200940", "http://irail.be/stations/NMBS/008869054"], ["http://irail.be/stations/NMBS/008865649", "http://irail.be/stations/NMBS/008875002"], ["http://irail.be/stations/NMBS/008812229", "http://irail.be/stations/NMBS/008815040"], ["http://irail.be/stations/NMBS/008811304", "http://irail.be/stations/NMBS/008811916"], ["http://irail.be/stations/NMBS/008811007", "http://irail.be/stations/NMBS/008811130"], ["http://irail.be/stations/NMBS/008811536", "http://irail.be/stations/NMBS/008811726"], ["http://irail.be/stations/NMBS/008831112", "http://irail.be/stations/NMBS/008832375"], ["http://irail.be/stations/NMBS/007015440", "http://irail.be/stations/NMBS/008727100"], ["http://irail.be/stations/NMBS/008812245", "http://irail.be/stations/NMBS/008814340"], ["http://irail.be/stations/NMBS/008873320", "http://irail.be/stations/NMBS/008873387"], ["http://irail.be/stations/NMBS/008814209", "http://irail.be/stations/NMBS/008883022"], ["http://irail.be/stations/NMBS/008774177", "http://irail.be/stations/NMBS/008775605"], ["http://irail.be/stations/NMBS/008822772", "http://irail.be/stations/NMBS/008894672"], ["http://irail.be/stations/NMBS/008895836", "http://irail.be/stations/NMBS/008895844"], ["http://irail.be/stations/NMBS/008822228", "http://irail.be/stations/NMBS/008822814"], ["http://irail.be/stations/NMBS/008893401", "http://irail.be/stations/NMBS/008894433"], ["http://irail.be/stations/NMBS/008811916", "http://irail.be/stations/NMBS/008813045"], ["http://irail.be/stations/NMBS/008871605", "http://irail.be/stations/NMBS/008882362"], ["http://irail.be/stations/NMBS/008895737", "http://irail.be/stations/NMBS/008895745"], ["http://irail.be/stations/NMBS/008011068", "http://irail.be/stations/NMBS/008775605"], ["http://irail.be/stations/NMBS/008883006", "http://irail.be/stations/NMBS/008883212"], ["http://irail.be/stations/NMBS/008842002", "http://irail.be/stations/NMBS/008842630"], ["http://irail.be/stations/NMBS/008812229", "http://irail.be/stations/NMBS/008814373"], ["http://irail.be/stations/NMBS/008844628", "http://irail.be/stations/NMBS/008845229"], ["http://irail.be/stations/NMBS/008833050", "http://irail.be/stations/NMBS/008833233"], ["http://irail.be/stations/NMBS/008871514", "http://irail.be/stations/NMBS/008871829"], ["http://irail.be/stations/NMBS/008841665", "http://irail.be/stations/NMBS/008846201"], ["http://irail.be/stations/NMBS/008811262", "http://irail.be/stations/NMBS/008833159"], ["http://irail.be/stations/NMBS/008811759", "http://irail.be/stations/NMBS/008833159"], ["http://irail.be/stations/NMBS/008774172", "http://irail.be/stations/NMBS/008774176"], ["http://irail.be/stations/NMBS/008812211", "http://irail.be/stations/NMBS/008812229"], ["http://irail.be/stations/NMBS/008863545", "http://irail.be/stations/NMBS/008863818"], ["http://irail.be/stations/NMBS/008841608", "http://irail.be/stations/NMBS/008844271"], ["http://irail.be/stations/NMBS/008896115", "http://irail.be/stations/NMBS/008896149"], ["http://irail.be/stations/NMBS/008811197", "http://irail.be/stations/NMBS/008811916"], ["http://irail.be/stations/NMBS/008822228", "http://irail.be/stations/NMBS/008822426"], ["http://irail.be/stations/NMBS/008200136", "http://irail.be/stations/NMBS/008865128"], ["http://irail.be/stations/NMBS/008871688", "http://irail.be/stations/NMBS/008871712"], ["http://irail.be/stations/NMBS/008400280", "http://irail.be/stations/NMBS/008400561"], ["http://irail.be/stations/NMBS/008895760", "http://irail.be/stations/NMBS/008895778"], ["http://irail.be/stations/NMBS/008872413", "http://irail.be/stations/NMBS/008874567"], ["http://irail.be/stations/NMBS/008812252", "http://irail.be/stations/NMBS/008883311"], ["http://irail.be/stations/NMBS/008864931", "http://irail.be/stations/NMBS/008864949"], ["http://irail.be/stations/NMBS/008861119", "http://irail.be/stations/NMBS/008863115"], ["http://irail.be/stations/NMBS/007015440", "http://irail.be/stations/NMBS/008891405"], ["http://irail.be/stations/NMBS/008400526", "http://irail.be/stations/NMBS/008821105"], ["http://irail.be/stations/NMBS/008722326", "http://irail.be/stations/NMBS/008728600"], ["http://irail.be/stations/NMBS/008843307", "http://irail.be/stations/NMBS/008843406"], ["http://irail.be/stations/NMBS/008200101", "http://irail.be/stations/NMBS/008721222"], ["http://irail.be/stations/NMBS/008896008", "http://irail.be/stations/NMBS/008896115"], ["http://irail.be/stations/NMBS/008821311", "http://irail.be/stations/NMBS/008821337"], ["http://irail.be/stations/NMBS/008811734", "http://irail.be/stations/NMBS/008811775"], ["http://irail.be/stations/NMBS/008200130", "http://irail.be/stations/NMBS/008200132"], ["http://irail.be/stations/NMBS/008893401", "http://irail.be/stations/NMBS/008893443"], ["http://irail.be/stations/NMBS/008884632", "http://irail.be/stations/NMBS/008886058"], ["http://irail.be/stations/NMBS/008814126", "http://irail.be/stations/NMBS/008814134"], ["http://irail.be/stations/NMBS/008891033", "http://irail.be/stations/NMBS/008891405"], ["http://irail.be/stations/NMBS/008892338", "http://irail.be/stations/NMBS/008896735"], ["http://irail.be/stations/NMBS/008821022", "http://irail.be/stations/NMBS/008821147"], ["http://irail.be/stations/NMBS/008842853", "http://irail.be/stations/NMBS/008843331"], ["http://irail.be/stations/NMBS/008821071", "http://irail.be/stations/NMBS/008821089"], ["http://irail.be/stations/NMBS/008821600", "http://irail.be/stations/NMBS/008822228"], ["http://irail.be/stations/NMBS/008718201", "http://irail.be/stations/NMBS/008719203"], ["http://irail.be/stations/NMBS/008895000", "http://irail.be/stations/NMBS/008895125"], ["http://irail.be/stations/NMBS/008822277", "http://irail.be/stations/NMBS/008822459"], ["http://irail.be/stations/NMBS/008831088", "http://irail.be/stations/NMBS/008831401"], ["http://irail.be/stations/NMBS/008861143", "http://irail.be/stations/NMBS/008874724"], ["http://irail.be/stations/NMBS/008812146", "http://irail.be/stations/NMBS/008822137"], ["http://irail.be/stations/NMBS/008863446", "http://irail.be/stations/NMBS/008863453"], ["http://irail.be/stations/NMBS/008861333", "http://irail.be/stations/NMBS/008874724"], ["http://irail.be/stations/NMBS/008400280", "http://irail.be/stations/NMBS/008893708"], ["http://irail.be/stations/NMBS/008814308", "http://irail.be/stations/NMBS/008814415"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821667"], ["http://irail.be/stations/NMBS/008821147", "http://irail.be/stations/NMBS/008821154"], ["http://irail.be/stations/NMBS/008861333", "http://irail.be/stations/NMBS/008861515"], ["http://irail.be/stations/NMBS/008894235", "http://irail.be/stations/NMBS/008894425"], ["http://irail.be/stations/NMBS/008832045", "http://irail.be/stations/NMBS/008832565"], ["http://irail.be/stations/NMBS/008812245", "http://irail.be/stations/NMBS/008812252"], ["http://irail.be/stations/NMBS/008861515", "http://irail.be/stations/NMBS/008872520"], ["http://irail.be/stations/NMBS/008811528", "http://irail.be/stations/NMBS/008833159"], ["http://irail.be/stations/NMBS/008718206", "http://irail.be/stations/NMBS/008776290"], ["http://irail.be/stations/NMBS/008811759", "http://irail.be/stations/NMBS/008861515"], ["http://irail.be/stations/NMBS/008831112", "http://irail.be/stations/NMBS/008831138"], ["http://irail.be/stations/NMBS/008871183", "http://irail.be/stations/NMBS/008874054"], ["http://irail.be/stations/NMBS/008865300", "http://irail.be/stations/NMBS/008866845"], ["http://irail.be/stations/NMBS/008831765", "http://irail.be/stations/NMBS/008831781"], ["http://irail.be/stations/NMBS/008821006", "http://irail.be/stations/NMBS/008821196"], ["http://irail.be/stations/NMBS/007015440", "http://irail.be/stations/NMBS/008892338"], ["http://irail.be/stations/NMBS/008821063", "http://irail.be/stations/NMBS/008821089"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821451"], ["http://irail.be/stations/NMBS/008731388", "http://irail.be/stations/NMBS/008884889"], ["http://irail.be/stations/NMBS/008893815", "http://irail.be/stations/NMBS/008894425"], ["http://irail.be/stations/NMBS/008861416", "http://irail.be/stations/NMBS/008861424"], ["http://irail.be/stations/NMBS/008883436", "http://irail.be/stations/NMBS/008895646"], ["http://irail.be/stations/NMBS/008832045", "http://irail.be/stations/NMBS/008832227"], ["http://irail.be/stations/NMBS/008824158", "http://irail.be/stations/NMBS/008824224"], ["http://irail.be/stations/NMBS/008895620", "http://irail.be/stations/NMBS/008895737"], ["http://irail.be/stations/NMBS/008821121", "http://irail.be/stations/NMBS/008821154"], ["http://irail.be/stations/NMBS/008719203", "http://irail.be/stations/NMBS/008772319"], ["http://irail.be/stations/NMBS/008896388", "http://irail.be/stations/NMBS/008896909"], ["http://irail.be/stations/NMBS/008893039", "http://irail.be/stations/NMBS/008893179"], ["http://irail.be/stations/NMBS/008893260", "http://irail.be/stations/NMBS/008893815"], ["http://irail.be/stations/NMBS/008814357", "http://irail.be/stations/NMBS/008814415"], ["http://irail.be/stations/NMBS/008841558", "http://irail.be/stations/NMBS/008841673"], ["http://irail.be/stations/NMBS/008812070", "http://irail.be/stations/NMBS/008812252"], ["http://irail.be/stations/NMBS/008832409", "http://irail.be/stations/NMBS/008832433"], ["http://irail.be/stations/NMBS/008842648", "http://irail.be/stations/NMBS/008842663"], ["http://irail.be/stations/NMBS/008400526", "http://irail.be/stations/NMBS/008821436"], ["http://irail.be/stations/NMBS/008728606", "http://irail.be/stations/NMBS/008728710"], ["http://irail.be/stations/NMBS/008822517", "http://irail.be/stations/NMBS/008822525"], ["http://irail.be/stations/NMBS/008871225", "http://irail.be/stations/NMBS/008871365"], ["http://irail.be/stations/NMBS/008895091", "http://irail.be/stations/NMBS/008895869"], ["http://irail.be/stations/NMBS/008731896", "http://irail.be/stations/NMBS/008731901"], ["http://irail.be/stations/NMBS/008822715", "http://irail.be/stations/NMBS/008822772"], ["http://irail.be/stations/NMBS/008895422", "http://irail.be/stations/NMBS/008895430"], ["http://irail.be/stations/NMBS/008822111", "http://irail.be/stations/NMBS/008822137"], ["http://irail.be/stations/NMBS/008842754", "http://irail.be/stations/NMBS/008844347"], ["http://irail.be/stations/NMBS/008811544", "http://irail.be/stations/NMBS/008811635"], ["http://irail.be/stations/NMBS/008863156", "http://irail.be/stations/NMBS/008864956"], ["http://irail.be/stations/NMBS/008872520", "http://irail.be/stations/NMBS/008872553"], ["http://irail.be/stations/NMBS/008882107", "http://irail.be/stations/NMBS/008883220"], ["http://irail.be/stations/NMBS/008811221", "http://irail.be/stations/NMBS/008811445"], ["http://irail.be/stations/NMBS/008861333", "http://irail.be/stations/NMBS/008872520"], ["http://irail.be/stations/NMBS/008400530", "http://irail.be/stations/NMBS/008400561"], ["http://irail.be/stations/NMBS/008871415", "http://irail.be/stations/NMBS/008882248"], ["http://irail.be/stations/NMBS/008844255", "http://irail.be/stations/NMBS/008844271"], ["http://irail.be/stations/NMBS/008885704", "http://irail.be/stations/NMBS/008889011"], ["http://irail.be/stations/NMBS/008862018", "http://irail.be/stations/NMBS/008866662"], ["http://irail.be/stations/NMBS/008871605", "http://irail.be/stations/NMBS/008871647"], ["http://irail.be/stations/NMBS/008892031", "http://irail.be/stations/NMBS/008892080"], ["http://irail.be/stations/NMBS/008863115", "http://irail.be/stations/NMBS/008863362"], ["http://irail.be/stations/NMBS/008843208", "http://irail.be/stations/NMBS/008843240"], ["http://irail.be/stations/NMBS/008885522", "http://irail.be/stations/NMBS/008886348"], ["http://irail.be/stations/NMBS/008811759", "http://irail.be/stations/NMBS/008811775"], ["http://irail.be/stations/NMBS/008842754", "http://irail.be/stations/NMBS/008845203"], ["http://irail.be/stations/NMBS/008841459", "http://irail.be/stations/NMBS/008841467"], ["http://irail.be/stations/NMBS/008008094", "http://irail.be/stations/NMBS/008015345"], ["http://irail.be/stations/NMBS/008822137", "http://irail.be/stations/NMBS/008822145"], ["http://irail.be/stations/NMBS/008400058", "http://irail.be/stations/NMBS/008400131"], ["http://irail.be/stations/NMBS/008894425", "http://irail.be/stations/NMBS/008894433"], ["http://irail.be/stations/NMBS/008881000", "http://irail.be/stations/NMBS/008881125"], ["http://irail.be/stations/NMBS/008775100", "http://irail.be/stations/NMBS/008777500"], ["http://irail.be/stations/NMBS/008811445", "http://irail.be/stations/NMBS/008814175"], ["http://irail.be/stations/NMBS/008883022", "http://irail.be/stations/NMBS/008883311"], ["http://irail.be/stations/NMBS/008892452", "http://irail.be/stations/NMBS/008896503"], ["http://irail.be/stations/NMBS/008015345", "http://irail.be/stations/NMBS/008844628"], ["http://irail.be/stations/NMBS/008871712", "http://irail.be/stations/NMBS/008882362"], ["http://irail.be/stations/NMBS/008844008", "http://irail.be/stations/NMBS/008844321"], ["http://irail.be/stations/NMBS/008811601", "http://irail.be/stations/NMBS/008811635"], ["http://irail.be/stations/NMBS/008892601", "http://irail.be/stations/NMBS/008892692"], ["http://irail.be/stations/NMBS/008895000", "http://irail.be/stations/NMBS/008895869"], ["http://irail.be/stations/NMBS/008728687", "http://irail.be/stations/NMBS/008889045"], ["http://irail.be/stations/NMBS/008891132", "http://irail.be/stations/NMBS/008892254"], ["http://irail.be/stations/NMBS/008831310", "http://irail.be/stations/NMBS/008841467"], ["http://irail.be/stations/NMBS/008886504", "http://irail.be/stations/NMBS/008886587"], ["http://irail.be/stations/NMBS/008832243", "http://irail.be/stations/NMBS/008832250"], ["http://irail.be/stations/NMBS/008863834", "http://irail.be/stations/NMBS/008863867"], ["http://irail.be/stations/NMBS/008893252", "http://irail.be/stations/NMBS/008893260"], ["http://irail.be/stations/NMBS/008863867", "http://irail.be/stations/NMBS/008865649"], ["http://irail.be/stations/NMBS/008832565", "http://irail.be/stations/NMBS/008832573"], ["http://irail.be/stations/NMBS/008881430", "http://irail.be/stations/NMBS/008883113"], ["http://irail.be/stations/NMBS/008400424", "http://irail.be/stations/NMBS/008849064"], ["http://irail.be/stations/NMBS/008400219", "http://irail.be/stations/NMBS/008844057"], ["http://irail.be/stations/NMBS/008866142", "http://irail.be/stations/NMBS/008866258"], ["http://irail.be/stations/NMBS/008832227", "http://irail.be/stations/NMBS/008832235"], ["http://irail.be/stations/NMBS/008822160", "http://irail.be/stations/NMBS/008894508"], ["http://irail.be/stations/NMBS/008895612", "http://irail.be/stations/NMBS/008895729"], ["http://irail.be/stations/NMBS/008893013", "http://irail.be/stations/NMBS/008893062"], ["http://irail.be/stations/NMBS/008861523", "http://irail.be/stations/NMBS/008872553"], ["http://irail.be/stations/NMBS/008875002", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008728685", "http://irail.be/stations/NMBS/008728686"], ["http://irail.be/stations/NMBS/008892031", "http://irail.be/stations/NMBS/008893211"], ["http://irail.be/stations/NMBS/008831401", "http://irail.be/stations/NMBS/008832409"], ["http://irail.be/stations/NMBS/008883436", "http://irail.be/stations/NMBS/008886546"], ["http://irail.be/stations/NMBS/008892692", "http://irail.be/stations/NMBS/008892908"], ["http://irail.be/stations/NMBS/008721222", "http://irail.be/stations/NMBS/008721405"], ["http://irail.be/stations/NMBS/008871712", "http://irail.be/stations/NMBS/008871811"], ["http://irail.be/stations/NMBS/008881315", "http://irail.be/stations/NMBS/008881406"], ["http://irail.be/stations/NMBS/008728654", "http://irail.be/stations/NMBS/008889011"], ["http://irail.be/stations/NMBS/008884004", "http://irail.be/stations/NMBS/008886058"], ["http://irail.be/stations/NMBS/008893013", "http://irail.be/stations/NMBS/008893179"], ["http://irail.be/stations/NMBS/008861168", "http://irail.be/stations/NMBS/008861333"], ["http://irail.be/stations/NMBS/008863842", "http://irail.be/stations/NMBS/008864816"], ["http://irail.be/stations/NMBS/008885001", "http://irail.be/stations/NMBS/008892734"], ["http://irail.be/stations/NMBS/008891124", "http://irail.be/stations/NMBS/008892254"], ["http://irail.be/stations/NMBS/008865300", "http://irail.be/stations/NMBS/008865540"], ["http://irail.be/stations/NMBS/008812252", "http://irail.be/stations/NMBS/008814332"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008829009"], ["http://irail.be/stations/NMBS/008811510", "http://irail.be/stations/NMBS/008814258"], ["http://irail.be/stations/NMBS/008875127", "http://irail.be/stations/NMBS/008879004"], ["http://irail.be/stations/NMBS/008831401", "http://irail.be/stations/NMBS/008833670"], ["http://irail.be/stations/NMBS/008895448", "http://irail.be/stations/NMBS/008895455"], ["http://irail.be/stations/NMBS/008895851", "http://irail.be/stations/NMBS/008895869"], ["http://irail.be/stations/NMBS/008861200", "http://irail.be/stations/NMBS/008861333"], ["http://irail.be/stations/NMBS/008895455", "http://irail.be/stations/NMBS/008895729"], ["http://irail.be/stations/NMBS/008844008", "http://irail.be/stations/NMBS/008844206"], ["http://irail.be/stations/NMBS/008842853", "http://irail.be/stations/NMBS/008864469"], ["http://irail.be/stations/NMBS/008882230", "http://irail.be/stations/NMBS/008882701"], ["http://irail.be/stations/NMBS/008865110", "http://irail.be/stations/NMBS/008866142"], ["http://irail.be/stations/NMBS/008200520", "http://irail.be/stations/NMBS/008200940"], ["http://irail.be/stations/NMBS/008812062", "http://irail.be/stations/NMBS/008812229"], ["http://irail.be/stations/NMBS/008812161", "http://irail.be/stations/NMBS/008893401"], ["http://irail.be/stations/NMBS/008884335", "http://irail.be/stations/NMBS/008884632"], ["http://irail.be/stations/NMBS/008811288", "http://irail.be/stations/NMBS/008833134"], ["http://irail.be/stations/NMBS/008863503", "http://irail.be/stations/NMBS/008864949"], ["http://irail.be/stations/NMBS/008884541", "http://irail.be/stations/NMBS/008884566"], ["http://irail.be/stations/NMBS/008896370", "http://irail.be/stations/NMBS/008896388"], ["http://irail.be/stations/NMBS/008872306", "http://irail.be/stations/NMBS/008874054"], ["http://irail.be/stations/NMBS/008711184", "http://irail.be/stations/NMBS/008866407"], ["http://irail.be/stations/NMBS/008871373", "http://irail.be/stations/NMBS/008871381"], ["http://irail.be/stations/NMBS/008843307", "http://irail.be/stations/NMBS/008864352"], ["http://irail.be/stations/NMBS/008822004", "http://irail.be/stations/NMBS/008822426"], ["http://irail.be/stations/NMBS/008844206", "http://irail.be/stations/NMBS/008846201"], ["http://irail.be/stations/NMBS/008884889", "http://irail.be/stations/NMBS/008885530"], ["http://irail.be/stations/NMBS/008831765", "http://irail.be/stations/NMBS/008832615"], ["http://irail.be/stations/NMBS/008891264", "http://irail.be/stations/NMBS/008892254"], ["http://irail.be/stations/NMBS/008711184", "http://irail.be/stations/NMBS/008731388"], ["http://irail.be/stations/NMBS/008833258", "http://irail.be/stations/NMBS/008833266"], ["http://irail.be/stations/NMBS/008814258", "http://irail.be/stations/NMBS/008814415"], ["http://irail.be/stations/NMBS/008811163", "http://irail.be/stations/NMBS/008811213"], ["http://irail.be/stations/NMBS/008863156", "http://irail.be/stations/NMBS/008863545"], ["http://irail.be/stations/NMBS/008892320", "http://irail.be/stations/NMBS/008892338"], ["http://irail.be/stations/NMBS/008872066", "http://irail.be/stations/NMBS/008872306"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008821543"], ["http://irail.be/stations/NMBS/008873239", "http://irail.be/stations/NMBS/008875002"], ["http://irail.be/stations/NMBS/008811205", "http://irail.be/stations/NMBS/008811445"], ["http://irail.be/stations/NMBS/008896305", "http://irail.be/stations/NMBS/008896396"], ["http://irail.be/stations/NMBS/008811254", "http://irail.be/stations/NMBS/008811528"], ["http://irail.be/stations/NMBS/008886546", "http://irail.be/stations/NMBS/008895505"], ["http://irail.be/stations/NMBS/008831765", "http://irail.be/stations/NMBS/008832573"], ["http://irail.be/stations/NMBS/008891702", "http://irail.be/stations/NMBS/008892403"], ["http://irail.be/stations/NMBS/008871670", "http://irail.be/stations/NMBS/008871688"], ["http://irail.be/stations/NMBS/008772202", "http://irail.be/stations/NMBS/008776302"], ["http://irail.be/stations/NMBS/008811254", "http://irail.be/stations/NMBS/008833159"], ["http://irail.be/stations/NMBS/008811304", "http://irail.be/stations/NMBS/008813045"], ["http://irail.be/stations/NMBS/008728671", "http://irail.be/stations/NMBS/008728673"], ["http://irail.be/stations/NMBS/008814001", "http://irail.be/stations/NMBS/008814449"], ["http://irail.be/stations/NMBS/008811197", "http://irail.be/stations/NMBS/008811221"], ["http://irail.be/stations/NMBS/008895208", "http://irail.be/stations/NMBS/008895422"], ["http://irail.be/stations/NMBS/008891132", "http://irail.be/stations/NMBS/008893708"], ["http://irail.be/stations/NMBS/008892403", "http://irail.be/stations/NMBS/008896412"], ["http://irail.be/stations/NMBS/008891553", "http://irail.be/stations/NMBS/008891611"], ["http://irail.be/stations/NMBS/008871365", "http://irail.be/stations/NMBS/008871373"], ["http://irail.be/stations/NMBS/008728686", "http://irail.be/stations/NMBS/008728687"], ["http://irail.be/stations/NMBS/008871662", "http://irail.be/stations/NMBS/008879004"], ["http://irail.be/stations/NMBS/008811247", "http://irail.be/stations/NMBS/008811460"], ["http://irail.be/stations/NMBS/008728600", "http://irail.be/stations/NMBS/008896503"], ["http://irail.be/stations/NMBS/008861119", "http://irail.be/stations/NMBS/008861440"], ["http://irail.be/stations/NMBS/008892643", "http://irail.be/stations/NMBS/008893070"], ["http://irail.be/stations/NMBS/008010053", "http://irail.be/stations/NMBS/008015588"], ["http://irail.be/stations/NMBS/008015458", "http://irail.be/stations/NMBS/008844628"], ["http://irail.be/stations/NMBS/008811635", "http://irail.be/stations/NMBS/008811676"], ["http://irail.be/stations/NMBS/008864352", "http://irail.be/stations/NMBS/008864436"], ["http://irail.be/stations/NMBS/008863545", "http://irail.be/stations/NMBS/008864949"], ["http://irail.be/stations/NMBS/008812260", "http://irail.be/stations/NMBS/008895836"], ["http://irail.be/stations/NMBS/008811189", "http://irail.be/stations/NMBS/008822053"], ["http://irail.be/stations/NMBS/008865540", "http://irail.be/stations/NMBS/008865565"], ["http://irail.be/stations/NMBS/008811734", "http://irail.be/stations/NMBS/008811742"], ["http://irail.be/stations/NMBS/008822111", "http://irail.be/stations/NMBS/008822715"], ["http://irail.be/stations/NMBS/008811775", "http://irail.be/stations/NMBS/008833159"], ["http://irail.be/stations/NMBS/008892007", "http://irail.be/stations/NMBS/008893120"], ["http://irail.be/stations/NMBS/008871670", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008400219", "http://irail.be/stations/NMBS/008849064"], ["http://irail.be/stations/NMBS/008891173", "http://irail.be/stations/NMBS/008891652"], ["http://irail.be/stations/NMBS/008811437", "http://irail.be/stations/NMBS/008811445"], ["http://irail.be/stations/NMBS/008775500", "http://irail.be/stations/NMBS/008775752"], ["http://irail.be/stations/NMBS/008200510", "http://irail.be/stations/NMBS/008210014"], ["http://irail.be/stations/NMBS/008719100", "http://irail.be/stations/NMBS/008719203"], ["http://irail.be/stations/NMBS/008883006", "http://irail.be/stations/NMBS/008883022"], ["http://irail.be/stations/NMBS/008842002", "http://irail.be/stations/NMBS/008843133"], ["http://irail.be/stations/NMBS/008812021", "http://irail.be/stations/NMBS/008815016"], ["http://irail.be/stations/NMBS/008864337", "http://irail.be/stations/NMBS/008864345"], ["http://irail.be/stations/NMBS/008894235", "http://irail.be/stations/NMBS/008894433"], ["http://irail.be/stations/NMBS/008896008", "http://irail.be/stations/NMBS/008896925"], ["http://irail.be/stations/NMBS/008811205", "http://irail.be/stations/NMBS/008811411"], ["http://irail.be/stations/NMBS/008873312", "http://irail.be/stations/NMBS/008873387"], ["http://irail.be/stations/NMBS/008811254", "http://irail.be/stations/NMBS/008811262"], ["http://irail.be/stations/NMBS/008841327", "http://irail.be/stations/NMBS/008841467"], ["http://irail.be/stations/NMBS/008822137", "http://irail.be/stations/NMBS/008822772"], ["http://irail.be/stations/NMBS/008871829", "http://irail.be/stations/NMBS/008873379"], ["http://irail.be/stations/NMBS/008811304", "http://irail.be/stations/NMBS/008811403"], ["http://irail.be/stations/NMBS/008775544", "http://irail.be/stations/NMBS/008775762"], ["http://irail.be/stations/NMBS/008200940", "http://irail.be/stations/NMBS/008869088"], ["http://irail.be/stations/NMBS/008865649", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008811007", "http://irail.be/stations/NMBS/008811106"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008821071"], ["http://irail.be/stations/NMBS/008811536", "http://irail.be/stations/NMBS/008811718"], ["http://irail.be/stations/NMBS/008893559", "http://irail.be/stations/NMBS/008895448"], ["http://irail.be/stations/NMBS/008822426", "http://irail.be/stations/NMBS/008822459"], ["http://irail.be/stations/NMBS/008821907", "http://irail.be/stations/NMBS/008832433"], ["http://irail.be/stations/NMBS/008812245", "http://irail.be/stations/NMBS/008814357"], ["http://irail.be/stations/NMBS/008812252", "http://irail.be/stations/NMBS/008895778"], ["http://irail.be/stations/NMBS/008841608", "http://irail.be/stations/NMBS/008843901"], ["http://irail.be/stations/NMBS/008832573", "http://irail.be/stations/NMBS/008832615"], ["http://irail.be/stations/NMBS/008863438", "http://irail.be/stations/NMBS/008864923"], ["http://irail.be/stations/NMBS/008866605", "http://irail.be/stations/NMBS/008869047"], ["http://irail.be/stations/NMBS/008864949", "http://irail.be/stations/NMBS/008864956"], ["http://irail.be/stations/NMBS/008778110", "http://irail.be/stations/NMBS/008778127"], ["http://irail.be/stations/NMBS/008895760", "http://irail.be/stations/NMBS/008895877"], ["http://irail.be/stations/NMBS/008831039", "http://irail.be/stations/NMBS/008831807"], ["http://irail.be/stations/NMBS/008844545", "http://irail.be/stations/NMBS/008844628"], ["http://irail.be/stations/NMBS/008833050", "http://irail.be/stations/NMBS/008833209"], ["http://irail.be/stations/NMBS/008814308", "http://irail.be/stations/NMBS/008814332"], ["http://irail.be/stations/NMBS/008871514", "http://irail.be/stations/NMBS/008871837"], ["http://irail.be/stations/NMBS/008811262", "http://irail.be/stations/NMBS/008833134"], ["http://irail.be/stations/NMBS/008863545", "http://irail.be/stations/NMBS/008863560"], ["http://irail.be/stations/NMBS/008775762", "http://irail.be/stations/NMBS/008775767"], ["http://irail.be/stations/NMBS/008895638", "http://irail.be/stations/NMBS/008895646"], ["http://irail.be/stations/NMBS/008719203", "http://irail.be/stations/NMBS/008721222"], ["http://irail.be/stations/NMBS/008864311", "http://irail.be/stations/NMBS/008864337"], ["http://irail.be/stations/NMBS/008822228", "http://irail.be/stations/NMBS/008822459"], ["http://irail.be/stations/NMBS/008841558", "http://irail.be/stations/NMBS/008843174"], ["http://irail.be/stations/NMBS/008811601", "http://irail.be/stations/NMBS/008811817"], ["http://irail.be/stations/NMBS/008871670", "http://irail.be/stations/NMBS/008882362"], ["http://irail.be/stations/NMBS/008811254", "http://irail.be/stations/NMBS/008822459"], ["http://irail.be/stations/NMBS/008891140", "http://irail.be/stations/NMBS/008891157"], ["http://irail.be/stations/NMBS/008874559", "http://irail.be/stations/NMBS/008874583"], ["http://irail.be/stations/NMBS/008872413", "http://irail.be/stations/NMBS/008874583"], ["http://irail.be/stations/NMBS/008893211", "http://irail.be/stations/NMBS/008894151"], ["http://irail.be/stations/NMBS/008833449", "http://irail.be/stations/NMBS/008863461"], ["http://irail.be/stations/NMBS/008833605", "http://irail.be/stations/NMBS/008863404"], ["http://irail.be/stations/NMBS/008812120", "http://irail.be/stations/NMBS/008822137"], ["http://irail.be/stations/NMBS/008891165", "http://irail.be/stations/NMBS/008892056"], ["http://irail.be/stations/NMBS/008895430", "http://irail.be/stations/NMBS/008895711"], ["http://irail.be/stations/NMBS/008871217", "http://irail.be/stations/NMBS/008871514"], ["http://irail.be/stations/NMBS/008893179", "http://irail.be/stations/NMBS/008894151"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821519"], ["http://irail.be/stations/NMBS/008844230", "http://irail.be/stations/NMBS/008846201"], ["http://irail.be/stations/NMBS/008893518", "http://irail.be/stations/NMBS/008895125"], ["http://irail.be/stations/NMBS/008885001", "http://irail.be/stations/NMBS/008896230"], ["http://irail.be/stations/NMBS/008722326", "http://irail.be/stations/NMBS/008728606"], ["http://irail.be/stations/NMBS/008884319", "http://irail.be/stations/NMBS/008884327"], ["http://irail.be/stations/NMBS/008843307", "http://irail.be/stations/NMBS/008843430"], ["http://irail.be/stations/NMBS/008844420", "http://irail.be/stations/NMBS/008845229"], ["http://irail.be/stations/NMBS/008833001", "http://irail.be/stations/NMBS/008833233"], ["http://irail.be/stations/NMBS/008884640", "http://irail.be/stations/NMBS/008884715"], ["http://irail.be/stations/NMBS/008811916", "http://irail.be/stations/NMBS/008812005"], ["http://irail.be/stations/NMBS/008400058", "http://irail.be/stations/NMBS/008400180"], ["http://irail.be/stations/NMBS/008821436", "http://irail.be/stations/NMBS/008821444"], ["http://irail.be/stations/NMBS/008821022", "http://irail.be/stations/NMBS/008821121"], ["http://irail.be/stations/NMBS/008842853", "http://irail.be/stations/NMBS/008843349"], ["http://irail.be/stations/NMBS/008884715", "http://irail.be/stations/NMBS/008884855"], ["http://irail.be/stations/NMBS/008881125", "http://irail.be/stations/NMBS/008884566"], ["http://irail.be/stations/NMBS/008812146", "http://irail.be/stations/NMBS/008822145"], ["http://irail.be/stations/NMBS/008842655", "http://irail.be/stations/NMBS/008843174"], ["http://irail.be/stations/NMBS/008861333", "http://irail.be/stations/NMBS/008861424"], ["http://irail.be/stations/NMBS/008893526", "http://irail.be/stations/NMBS/008895067"], ["http://irail.be/stations/NMBS/008841327", "http://irail.be/stations/NMBS/008843240"], ["http://irail.be/stations/NMBS/008892205", "http://irail.be/stations/NMBS/008896800"], ["http://irail.be/stations/NMBS/008866662", "http://irail.be/stations/NMBS/008869054"], ["http://irail.be/stations/NMBS/008831005", "http://irail.be/stations/NMBS/008831088"], ["http://irail.be/stations/NMBS/008831112", "http://irail.be/stations/NMBS/008831310"], ["http://irail.be/stations/NMBS/008893054", "http://irail.be/stations/NMBS/008893062"], ["http://irail.be/stations/NMBS/008400131", "http://irail.be/stations/NMBS/008821105"], ["http://irail.be/stations/NMBS/008893708", "http://irail.be/stations/NMBS/008893815"], ["http://irail.be/stations/NMBS/008821006", "http://irail.be/stations/NMBS/008821063"], ["http://irail.be/stations/NMBS/008871381", "http://irail.be/stations/NMBS/008882230"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821444"], ["http://irail.be/stations/NMBS/008833274", "http://irail.be/stations/NMBS/008833308"], ["http://irail.be/stations/NMBS/008821725", "http://irail.be/stations/NMBS/008821857"], ["http://irail.be/stations/NMBS/008893567", "http://irail.be/stations/NMBS/008895240"], ["http://irail.be/stations/NMBS/008822608", "http://irail.be/stations/NMBS/008822848"], ["http://irail.be/stations/NMBS/008883436", "http://irail.be/stations/NMBS/008895638"], ["http://irail.be/stations/NMBS/008718206", "http://irail.be/stations/NMBS/008774179"], ["http://irail.be/stations/NMBS/008821121", "http://irail.be/stations/NMBS/008821196"], ["http://irail.be/stations/NMBS/008772319", "http://irail.be/stations/NMBS/008776290"], ["http://irail.be/stations/NMBS/008845146", "http://irail.be/stations/NMBS/008845229"], ["http://irail.be/stations/NMBS/008893260", "http://irail.be/stations/NMBS/008894151"], ["http://irail.be/stations/NMBS/008891652", "http://irail.be/stations/NMBS/008891660"], ["http://irail.be/stations/NMBS/008812070", "http://irail.be/stations/NMBS/008812245"], ["http://irail.be/stations/NMBS/008842648", "http://irail.be/stations/NMBS/008842689"], ["http://irail.be/stations/NMBS/008821436", "http://irail.be/stations/NMBS/008821519"], ["http://irail.be/stations/NMBS/008833126", "http://irail.be/stations/NMBS/008833134"], ["http://irail.be/stations/NMBS/008400526", "http://irail.be/stations/NMBS/008821402"], ["http://irail.be/stations/NMBS/008824158", "http://irail.be/stations/NMBS/008894755"], ["http://irail.be/stations/NMBS/008731388", "http://irail.be/stations/NMBS/008896735"], ["http://irail.be/stations/NMBS/008892080", "http://irail.be/stations/NMBS/008892643"], ["http://irail.be/stations/NMBS/008895091", "http://irail.be/stations/NMBS/008895851"], ["http://irail.be/stations/NMBS/008731388", "http://irail.be/stations/NMBS/008884335"], ["http://irail.be/stations/NMBS/008844347", "http://irail.be/stations/NMBS/008844420"], ["http://irail.be/stations/NMBS/008811759", "http://irail.be/stations/NMBS/008833050"], ["http://irail.be/stations/NMBS/008814365", "http://irail.be/stations/NMBS/008814423"], ["http://irail.be/stations/NMBS/008813003", "http://irail.be/stations/NMBS/008813045"], ["http://irail.be/stations/NMBS/008811254", "http://irail.be/stations/NMBS/008819406"], ["http://irail.be/stations/NMBS/008841400", "http://irail.be/stations/NMBS/008843430"], ["http://irail.be/stations/NMBS/008842754", "http://irail.be/stations/NMBS/008844339"], ["http://irail.be/stations/NMBS/008814332", "http://irail.be/stations/NMBS/008883311"], ["http://irail.be/stations/NMBS/008863156", "http://irail.be/stations/NMBS/008864964"], ["http://irail.be/stations/NMBS/008811270", "http://irail.be/stations/NMBS/008822533"], ["http://irail.be/stations/NMBS/007015400", "http://irail.be/stations/NMBS/008778110"], ["http://irail.be/stations/NMBS/008821071", "http://irail.be/stations/NMBS/008821634"], ["http://irail.be/stations/NMBS/008882107", "http://irail.be/stations/NMBS/008883238"], ["http://irail.be/stations/NMBS/008500010", "http://irail.be/stations/NMBS/008775605"], ["http://irail.be/stations/NMBS/008883022", "http://irail.be/stations/NMBS/008883220"], ["http://irail.be/stations/NMBS/008822772", "http://irail.be/stations/NMBS/008824224"], ["http://irail.be/stations/NMBS/008821196", "http://irail.be/stations/NMBS/008821238"], ["http://irail.be/stations/NMBS/008843208", "http://irail.be/stations/NMBS/008843224"], ["http://irail.be/stations/NMBS/008008094", "http://irail.be/stations/NMBS/008015458"], ["http://irail.be/stations/NMBS/008010316", "http://irail.be/stations/NMBS/008039904"], ["http://irail.be/stations/NMBS/008811247", "http://irail.be/stations/NMBS/008819406"], ["http://irail.be/stations/NMBS/008871217", "http://irail.be/stations/NMBS/008872066"], ["http://irail.be/stations/NMBS/008895802", "http://irail.be/stations/NMBS/008895851"], ["http://irail.be/stations/NMBS/008843430", "http://irail.be/stations/NMBS/008864832"], ["http://irail.be/stations/NMBS/008894714", "http://irail.be/stations/NMBS/008894748"], ["http://irail.be/stations/NMBS/008882206", "http://irail.be/stations/NMBS/008882230"], ["http://irail.be/stations/NMBS/008871852", "http://irail.be/stations/NMBS/008872009"], ["http://irail.be/stations/NMBS/008871332", "http://irail.be/stations/NMBS/008871373"], ["http://irail.be/stations/NMBS/008875127", "http://irail.be/stations/NMBS/008881505"], ["http://irail.be/stations/NMBS/008821147", "http://irail.be/stations/NMBS/008821246"], ["http://irail.be/stations/NMBS/008731896", "http://irail.be/stations/NMBS/008776302"], ["http://irail.be/stations/NMBS/008831401", "http://irail.be/stations/NMBS/008832433"], ["http://irail.be/stations/NMBS/008865615", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008892635", "http://irail.be/stations/NMBS/008892643"], ["http://irail.be/stations/NMBS/008015345", "http://irail.be/stations/NMBS/008844644"], ["http://irail.be/stations/NMBS/008200518", "http://irail.be/stations/NMBS/008200520"], ["http://irail.be/stations/NMBS/008873007", "http://irail.be/stations/NMBS/008873239"], ["http://irail.be/stations/NMBS/008885522", "http://irail.be/stations/NMBS/008885530"], ["http://irail.be/stations/NMBS/008774100", "http://irail.be/stations/NMBS/008774172"], ["http://irail.be/stations/NMBS/008881406", "http://irail.be/stations/NMBS/008883121"], ["http://irail.be/stations/NMBS/008200510", "http://irail.be/stations/NMBS/008719100"], ["http://irail.be/stations/NMBS/008831005", "http://irail.be/stations/NMBS/008832375"], ["http://irail.be/stations/NMBS/008811726", "http://irail.be/stations/NMBS/008811734"], ["http://irail.be/stations/NMBS/008872553", "http://irail.be/stations/NMBS/008872579"], ["http://irail.be/stations/NMBS/008893047", "http://irail.be/stations/NMBS/008893054"], ["http://irail.be/stations/NMBS/008200128", "http://irail.be/stations/NMBS/008200130"], ["http://irail.be/stations/NMBS/008841434", "http://irail.be/stations/NMBS/008841442"], ["http://irail.be/stations/NMBS/008886504", "http://irail.be/stations/NMBS/008886561"], ["http://irail.be/stations/NMBS/008811007", "http://irail.be/stations/NMBS/008812005"], ["http://irail.be/stations/NMBS/008032572", "http://irail.be/stations/NMBS/008721222"], ["http://irail.be/stations/NMBS/008831401", "http://irail.be/stations/NMBS/008832227"], ["http://irail.be/stations/NMBS/008881430", "http://irail.be/stations/NMBS/008883121"], ["http://irail.be/stations/NMBS/008871308", "http://irail.be/stations/NMBS/008871332"], ["http://irail.be/stations/NMBS/008893120", "http://irail.be/stations/NMBS/008893179"], ["http://irail.be/stations/NMBS/008200136", "http://irail.be/stations/NMBS/008844628"], ["http://irail.be/stations/NMBS/008015345", "http://irail.be/stations/NMBS/008849023"], ["http://irail.be/stations/NMBS/008833308", "http://irail.be/stations/NMBS/008833449"], ["http://irail.be/stations/NMBS/008400219", "http://irail.be/stations/NMBS/008844008"], ["http://irail.be/stations/NMBS/008881190", "http://irail.be/stations/NMBS/008886074"], ["http://irail.be/stations/NMBS/008866142", "http://irail.be/stations/NMBS/008866175"], ["http://irail.be/stations/NMBS/008864915", "http://irail.be/stations/NMBS/008864931"], ["http://irail.be/stations/NMBS/008895612", "http://irail.be/stations/NMBS/008895737"], ["http://irail.be/stations/NMBS/008892254", "http://irail.be/stations/NMBS/008896149"], ["http://irail.be/stations/NMBS/008728654", "http://irail.be/stations/NMBS/008728673"], ["http://irail.be/stations/NMBS/008881125", "http://irail.be/stations/NMBS/008881315"], ["http://irail.be/stations/NMBS/008892254", "http://irail.be/stations/NMBS/008892288"], ["http://irail.be/stations/NMBS/008833134", "http://irail.be/stations/NMBS/008833159"], ["http://irail.be/stations/NMBS/008015345", "http://irail.be/stations/NMBS/008039904"], ["http://irail.be/stations/NMBS/008879004", "http://irail.be/stations/NMBS/008881455"], ["http://irail.be/stations/NMBS/008892031", "http://irail.be/stations/NMBS/008893252"], ["http://irail.be/stations/NMBS/008821238", "http://irail.be/stations/NMBS/008822814"], ["http://irail.be/stations/NMBS/008881455", "http://irail.be/stations/NMBS/008883113"], ["http://irail.be/stations/NMBS/008844057", "http://irail.be/stations/NMBS/008844420"], ["http://irail.be/stations/NMBS/008873122", "http://irail.be/stations/NMBS/008873239"], ["http://irail.be/stations/NMBS/008871712", "http://irail.be/stations/NMBS/008871829"], ["http://irail.be/stations/NMBS/008400424", "http://irail.be/stations/NMBS/008831138"], ["http://irail.be/stations/NMBS/008812013", "http://irail.be/stations/NMBS/008815040"], ["http://irail.be/stations/NMBS/008842689", "http://irail.be/stations/NMBS/008842838"], ["http://irail.be/stations/NMBS/008811437", "http://irail.be/stations/NMBS/008814456"], ["http://irail.be/stations/NMBS/008863842", "http://irail.be/stations/NMBS/008864501"], ["http://irail.be/stations/NMBS/008728687", "http://irail.be/stations/NMBS/008885068"], ["http://irail.be/stations/NMBS/008833605", "http://irail.be/stations/NMBS/008841400"], ["http://irail.be/stations/NMBS/008883121", "http://irail.be/stations/NMBS/008883436"], ["http://irail.be/stations/NMBS/008822004", "http://irail.be/stations/NMBS/008822277"], ["http://irail.be/stations/NMBS/008728600", "http://irail.be/stations/NMBS/008731388"], ["http://irail.be/stations/NMBS/008891611", "http://irail.be/stations/NMBS/008891645"], ["http://irail.be/stations/NMBS/008873122", "http://irail.be/stations/NMBS/008874583"], ["http://irail.be/stations/NMBS/008861200", "http://irail.be/stations/NMBS/008861416"], ["http://irail.be/stations/NMBS/008821535", "http://irail.be/stations/NMBS/008821543"], ["http://irail.be/stations/NMBS/008844008", "http://irail.be/stations/NMBS/008844057"], ["http://irail.be/stations/NMBS/008885068", "http://irail.be/stations/NMBS/008889045"], ["http://irail.be/stations/NMBS/008865110", "http://irail.be/stations/NMBS/008866118"], ["http://irail.be/stations/NMBS/008812062", "http://irail.be/stations/NMBS/008812237"], ["http://irail.be/stations/NMBS/008812120", "http://irail.be/stations/NMBS/008812146"], ["http://irail.be/stations/NMBS/008844404", "http://irail.be/stations/NMBS/008844420"], ["http://irail.be/stations/NMBS/008884335", "http://irail.be/stations/NMBS/008884640"], ["http://irail.be/stations/NMBS/008811288", "http://irail.be/stations/NMBS/008833126"], ["http://irail.be/stations/NMBS/008821659", "http://irail.be/stations/NMBS/008821667"], ["http://irail.be/stations/NMBS/008864006", "http://irail.be/stations/NMBS/008864337"], ["http://irail.be/stations/NMBS/008883212", "http://irail.be/stations/NMBS/008883220"], ["http://irail.be/stations/NMBS/008843141", "http://irail.be/stations/NMBS/008843158"], ["http://irail.be/stations/NMBS/008895125", "http://irail.be/stations/NMBS/008895877"], ["http://irail.be/stations/NMBS/008822004", "http://irail.be/stations/NMBS/008822343"], ["http://irail.be/stations/NMBS/008845146", "http://irail.be/stations/NMBS/008865128"], ["http://irail.be/stations/NMBS/008200130", "http://irail.be/stations/NMBS/008865128"], ["http://irail.be/stations/NMBS/008814126", "http://irail.be/stations/NMBS/008814365"], ["http://irail.be/stations/NMBS/008842051", "http://irail.be/stations/NMBS/008842630"], ["http://irail.be/stations/NMBS/008814456", "http://irail.be/stations/NMBS/008814464"], ["http://irail.be/stations/NMBS/008831765", "http://irail.be/stations/NMBS/008832664"], ["http://irail.be/stations/NMBS/008891264", "http://irail.be/stations/NMBS/008892205"], ["http://irail.be/stations/NMBS/008884004", "http://irail.be/stations/NMBS/008884319"], ["http://irail.be/stations/NMBS/008841459", "http://irail.be/stations/NMBS/008843240"], ["http://irail.be/stations/NMBS/008861440", "http://irail.be/stations/NMBS/008863461"], ["http://irail.be/stations/NMBS/008882248", "http://irail.be/stations/NMBS/008882339"], ["http://irail.be/stations/NMBS/008200520", "http://irail.be/stations/NMBS/008866001"], ["http://irail.be/stations/NMBS/008895646", "http://irail.be/stations/NMBS/008895760"], ["http://irail.be/stations/NMBS/008892254", "http://irail.be/stations/NMBS/008896925"], ["http://irail.be/stations/NMBS/008894201", "http://irail.be/stations/NMBS/008894425"], ["http://irail.be/stations/NMBS/008814258", "http://irail.be/stations/NMBS/008814423"], ["http://irail.be/stations/NMBS/008811106", "http://irail.be/stations/NMBS/008811197"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008821436"], ["http://irail.be/stations/NMBS/008894508", "http://irail.be/stations/NMBS/008894714"], ["http://irail.be/stations/NMBS/008873239", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008892056", "http://irail.be/stations/NMBS/008893815"], ["http://irail.be/stations/NMBS/008861143", "http://irail.be/stations/NMBS/008861432"], ["http://irail.be/stations/NMBS/008881455", "http://irail.be/stations/NMBS/008881463"], ["http://irail.be/stations/NMBS/008863503", "http://irail.be/stations/NMBS/008863545"], ["http://irail.be/stations/NMBS/008886546", "http://irail.be/stations/NMBS/008895570"], ["http://irail.be/stations/NMBS/008871605", "http://irail.be/stations/NMBS/008881455"], ["http://irail.be/stations/NMBS/008881158", "http://irail.be/stations/NMBS/008884541"], ["http://irail.be/stations/NMBS/008896412", "http://irail.be/stations/NMBS/008896503"], ["http://irail.be/stations/NMBS/008400219", "http://irail.be/stations/NMBS/008844503"], ["http://irail.be/stations/NMBS/008831765", "http://irail.be/stations/NMBS/008832250"], ["http://irail.be/stations/NMBS/008200102", "http://irail.be/stations/NMBS/008200510"], ["http://irail.be/stations/NMBS/008864501", "http://irail.be/stations/NMBS/008864824"], ["http://irail.be/stations/NMBS/008775500", "http://irail.be/stations/NMBS/008778400"], ["http://irail.be/stations/NMBS/008891702", "http://irail.be/stations/NMBS/008892452"], ["http://irail.be/stations/NMBS/008843166", "http://irail.be/stations/NMBS/008843224"], ["http://irail.be/stations/NMBS/008772202", "http://irail.be/stations/NMBS/008776290"], ["http://irail.be/stations/NMBS/008811288", "http://irail.be/stations/NMBS/008833001"], ["http://irail.be/stations/NMBS/008883311", "http://irail.be/stations/NMBS/008895646"], ["http://irail.be/stations/NMBS/008010053", "http://irail.be/stations/NMBS/008010184"], ["http://irail.be/stations/NMBS/008864006", "http://irail.be/stations/NMBS/008864352"], ["http://irail.be/stations/NMBS/008821824", "http://irail.be/stations/NMBS/008822525"], ["http://irail.be/stations/NMBS/008812112", "http://irail.be/stations/NMBS/008812120"], ["http://irail.be/stations/NMBS/008866001", "http://irail.be/stations/NMBS/008869054"], ["http://irail.be/stations/NMBS/008811403", "http://irail.be/stations/NMBS/008814464"], ["http://irail.be/stations/NMBS/008873239", "http://irail.be/stations/NMBS/008874005"], ["http://irail.be/stations/NMBS/008863362", "http://irail.be/stations/NMBS/008864964"], ["http://irail.be/stations/NMBS/008861150", "http://irail.be/stations/NMBS/008861424"], ["http://irail.be/stations/NMBS/008200110", "http://irail.be/stations/NMBS/008200510"], ["http://irail.be/stations/NMBS/008865615", "http://irail.be/stations/NMBS/008865649"], ["http://irail.be/stations/NMBS/008811817", "http://irail.be/stations/NMBS/008811825"], ["http://irail.be/stations/NMBS/008892403", "http://irail.be/stations/NMBS/008896503"], ["http://irail.be/stations/NMBS/008811189", "http://irail.be/stations/NMBS/008819406"], ["http://irail.be/stations/NMBS/008871662", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008892007", "http://irail.be/stations/NMBS/008893062"], ["http://irail.be/stations/NMBS/008728600", "http://irail.be/stations/NMBS/008896735"], ["http://irail.be/stations/NMBS/008874583", "http://irail.be/stations/NMBS/008874609"], ["http://irail.be/stations/NMBS/008812013", "http://irail.be/stations/NMBS/008813037"], ["http://irail.be/stations/NMBS/008831039", "http://irail.be/stations/NMBS/008841400"], ["http://irail.be/stations/NMBS/008015588", "http://irail.be/stations/NMBS/008200134"], ["http://irail.be/stations/NMBS/008811635", "http://irail.be/stations/NMBS/008811718"], ["http://irail.be/stations/NMBS/008864352", "http://irail.be/stations/NMBS/008864410"], ["http://irail.be/stations/NMBS/008864436", "http://irail.be/stations/NMBS/008865128"], ["http://irail.be/stations/NMBS/008811197", "http://irail.be/stations/NMBS/008811411"], ["http://irail.be/stations/NMBS/008873312", "http://irail.be/stations/NMBS/008873320"], ["http://irail.be/stations/NMBS/008821238", "http://irail.be/stations/NMBS/008821246"], ["http://irail.be/stations/NMBS/008893542", "http://irail.be/stations/NMBS/008893583"], ["http://irail.be/stations/NMBS/008861150", "http://irail.be/stations/NMBS/008861168"], ["http://irail.be/stations/NMBS/008400424", "http://irail.be/stations/NMBS/008832664"], ["http://irail.be/stations/NMBS/008822111", "http://irail.be/stations/NMBS/008822848"], ["http://irail.be/stations/NMBS/008822814", "http://irail.be/stations/NMBS/008824232"], ["http://irail.be/stations/NMBS/008865003", "http://irail.be/stations/NMBS/008865110"], ["http://irail.be/stations/NMBS/008896396", "http://irail.be/stations/NMBS/008896800"], ["http://irail.be/stations/NMBS/008727100", "http://irail.be/stations/NMBS/008731388"], ["http://irail.be/stations/NMBS/008866530", "http://irail.be/stations/NMBS/008869088"], ["http://irail.be/stations/NMBS/008892643", "http://irail.be/stations/NMBS/008892692"], ["http://irail.be/stations/NMBS/008015588", "http://irail.be/stations/NMBS/008200120"], ["http://irail.be/stations/NMBS/008871415", "http://irail.be/stations/NMBS/008871712"], ["http://irail.be/stations/NMBS/008895745", "http://irail.be/stations/NMBS/008895752"], ["http://irail.be/stations/NMBS/008894433", "http://irail.be/stations/NMBS/008894508"], ["http://irail.be/stations/NMBS/008864824", "http://irail.be/stations/NMBS/008864832"], ["http://irail.be/stations/NMBS/008872587", "http://irail.be/stations/NMBS/008872611"], ["http://irail.be/stations/NMBS/008893526", "http://irail.be/stations/NMBS/008893534"], ["http://irail.be/stations/NMBS/008811205", "http://irail.be/stations/NMBS/008811429"], ["http://irail.be/stations/NMBS/008400526", "http://irail.be/stations/NMBS/008400530"], ["http://irail.be/stations/NMBS/008775544", "http://irail.be/stations/NMBS/008775752"], ["http://irail.be/stations/NMBS/008812005", "http://irail.be/stations/NMBS/008815016"], ["http://irail.be/stations/NMBS/008812013", "http://irail.be/stations/NMBS/008814001"], ["http://irail.be/stations/NMBS/007015400", "http://irail.be/stations/NMBS/008400058"], ["http://irail.be/stations/NMBS/008895463", "http://irail.be/stations/NMBS/008895471"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008821063"], ["http://irail.be/stations/NMBS/008842846", "http://irail.be/stations/NMBS/008842853"], ["http://irail.be/stations/NMBS/008893559", "http://irail.be/stations/NMBS/008895430"], ["http://irail.be/stations/NMBS/008774172", "http://irail.be/stations/NMBS/008775544"], ["http://irail.be/stations/NMBS/008812245", "http://irail.be/stations/NMBS/008814308"], ["http://irail.be/stations/NMBS/008893070", "http://irail.be/stations/NMBS/008895232"], ["http://irail.be/stations/NMBS/008832003", "http://irail.be/stations/NMBS/008832227"], ["http://irail.be/stations/NMBS/008824224", "http://irail.be/stations/NMBS/008894755"], ["http://irail.be/stations/NMBS/008200134", "http://irail.be/stations/NMBS/008200136"], ["http://irail.be/stations/NMBS/008863404", "http://irail.be/stations/NMBS/008864923"], ["http://irail.be/stations/NMBS/008778110", "http://irail.be/stations/NMBS/008778400"], ["http://irail.be/stations/NMBS/008727149", "http://irail.be/stations/NMBS/008731388"], ["http://irail.be/stations/NMBS/008861119", "http://irail.be/stations/NMBS/008863362"], ["http://irail.be/stations/NMBS/008842630", "http://irail.be/stations/NMBS/008842655"], ["http://irail.be/stations/NMBS/008814308", "http://irail.be/stations/NMBS/008814340"], ["http://irail.be/stations/NMBS/008842838", "http://irail.be/stations/NMBS/008864469"], ["http://irail.be/stations/NMBS/008833209", "http://irail.be/stations/NMBS/008833233"], ["http://irail.be/stations/NMBS/008821667", "http://irail.be/stations/NMBS/008821816"], ["http://irail.be/stations/NMBS/008811759", "http://irail.be/stations/NMBS/008833126"], ["http://irail.be/stations/NMBS/008884350", "http://irail.be/stations/NMBS/008884632"], ["http://irail.be/stations/NMBS/008728673", "http://irail.be/stations/NMBS/008885753"], ["http://irail.be/stations/NMBS/008844420", "http://irail.be/stations/NMBS/008844545"], ["http://irail.be/stations/NMBS/008833001", "http://irail.be/stations/NMBS/008833175"], ["http://irail.be/stations/NMBS/008884640", "http://irail.be/stations/NMBS/008886041"], ["http://irail.be/stations/NMBS/008811254", "http://irail.be/stations/NMBS/008822475"], ["http://irail.be/stations/NMBS/008727100", "http://irail.be/stations/NMBS/008778100"], ["http://irail.be/stations/NMBS/008400280", "http://irail.be/stations/NMBS/008400526"], ["http://irail.be/stations/NMBS/008200120", "http://irail.be/stations/NMBS/008200520"], ["http://irail.be/stations/NMBS/008874559", "http://irail.be/stations/NMBS/008874567"], ["http://irail.be/stations/NMBS/008400526", "http://irail.be/stations/NMBS/008894714"], ["http://irail.be/stations/NMBS/008886587", "http://irail.be/stations/NMBS/008895570"], ["http://irail.be/stations/NMBS/008842630", "http://irail.be/stations/NMBS/008843174"], ["http://irail.be/stations/NMBS/008895430", "http://irail.be/stations/NMBS/008895729"], ["http://irail.be/stations/NMBS/008811825", "http://irail.be/stations/NMBS/008872611"], ["http://irail.be/stations/NMBS/008200130", "http://irail.be/stations/NMBS/008200134"], ["http://irail.be/stations/NMBS/008871647", "http://irail.be/stations/NMBS/008882362"], ["http://irail.be/stations/NMBS/008871183", "http://irail.be/stations/NMBS/008873379"], ["http://irail.be/stations/NMBS/008811437", "http://irail.be/stations/NMBS/008814167"], ["http://irail.be/stations/NMBS/008718201", "http://irail.be/stations/NMBS/008718213"], ["http://irail.be/stations/NMBS/008865110", "http://irail.be/stations/NMBS/008865128"], ["http://irail.be/stations/NMBS/008861143", "http://irail.be/stations/NMBS/008874609"], ["http://irail.be/stations/NMBS/008831401", "http://irail.be/stations/NMBS/008831807"], ["http://irail.be/stations/NMBS/008891157", "http://irail.be/stations/NMBS/008892106"], ["http://irail.be/stations/NMBS/008200516", "http://irail.be/stations/NMBS/008210014"], ["http://irail.be/stations/NMBS/008821709", "http://irail.be/stations/NMBS/008821865"], ["http://irail.be/stations/NMBS/008821725", "http://irail.be/stations/NMBS/008821824"], ["http://irail.be/stations/NMBS/008871308", "http://irail.be/stations/NMBS/008872579"], ["http://irail.be/stations/NMBS/008727100", "http://irail.be/stations/NMBS/008727149"], ["http://irail.be/stations/NMBS/008892205", "http://irail.be/stations/NMBS/008896909"], ["http://irail.be/stations/NMBS/008864832", "http://irail.be/stations/NMBS/008864915"], ["http://irail.be/stations/NMBS/008842754", "http://irail.be/stations/NMBS/008844271"], ["http://irail.be/stations/NMBS/008843067", "http://irail.be/stations/NMBS/008843174"], ["http://irail.be/stations/NMBS/008831005", "http://irail.be/stations/NMBS/008831039"], ["http://irail.be/stations/NMBS/008871183", "http://irail.be/stations/NMBS/008873387"], ["http://irail.be/stations/NMBS/008886587", "http://irail.be/stations/NMBS/008892908"], ["http://irail.be/stations/NMBS/008812005", "http://irail.be/stations/NMBS/008813003"], ["http://irail.be/stations/NMBS/008812047", "http://irail.be/stations/NMBS/008812062"], ["http://irail.be/stations/NMBS/008865300", "http://irail.be/stations/NMBS/008866258"], ["http://irail.be/stations/NMBS/008871381", "http://irail.be/stations/NMBS/008882248"], ["http://irail.be/stations/NMBS/008821725", "http://irail.be/stations/NMBS/008821832"], ["http://irail.be/stations/NMBS/008893567", "http://irail.be/stations/NMBS/008895257"], ["http://irail.be/stations/NMBS/008822608", "http://irail.be/stations/NMBS/008822814"], ["http://irail.be/stations/NMBS/008883436", "http://irail.be/stations/NMBS/008895620"], ["http://irail.be/stations/NMBS/008864451", "http://irail.be/stations/NMBS/008864469"], ["http://irail.be/stations/NMBS/008893260", "http://irail.be/stations/NMBS/008894201"], ["http://irail.be/stations/NMBS/008812070", "http://irail.be/stations/NMBS/008812237"], ["http://irail.be/stations/NMBS/008832409", "http://irail.be/stations/NMBS/008832565"], ["http://irail.be/stations/NMBS/008812161", "http://irail.be/stations/NMBS/008895091"], ["http://irail.be/stations/NMBS/008833126", "http://irail.be/stations/NMBS/008833159"], ["http://irail.be/stations/NMBS/008821071", "http://irail.be/stations/NMBS/008821543"], ["http://irail.be/stations/NMBS/008824158", "http://irail.be/stations/NMBS/008894821"], ["http://irail.be/stations/NMBS/008011068", "http://irail.be/stations/NMBS/008500010"], ["http://irail.be/stations/NMBS/008811213", "http://irail.be/stations/NMBS/008811221"], ["http://irail.be/stations/NMBS/008892080", "http://irail.be/stations/NMBS/008892650"], ["http://irail.be/stations/NMBS/008895240", "http://irail.be/stations/NMBS/008895422"], ["http://irail.be/stations/NMBS/008833050", "http://irail.be/stations/NMBS/008861416"], ["http://irail.be/stations/NMBS/008775100", "http://irail.be/stations/NMBS/008778400"], ["http://irail.be/stations/NMBS/008892601", "http://irail.be/stations/NMBS/008892627"], ["http://irail.be/stations/NMBS/008873379", "http://irail.be/stations/NMBS/008873387"], ["http://irail.be/stations/NMBS/008843323", "http://irail.be/stations/NMBS/008843349"], ["http://irail.be/stations/NMBS/008812237", "http://irail.be/stations/NMBS/008814365"], ["http://irail.be/stations/NMBS/008822715", "http://irail.be/stations/NMBS/008822848"], ["http://irail.be/stations/NMBS/008814365", "http://irail.be/stations/NMBS/008814431"], ["http://irail.be/stations/NMBS/008813003", "http://irail.be/stations/NMBS/008813037"], ["http://irail.be/stations/NMBS/008862018", "http://irail.be/stations/NMBS/008866530"], ["http://irail.be/stations/NMBS/008841400", "http://irail.be/stations/NMBS/008843406"], ["http://irail.be/stations/NMBS/008831005", "http://irail.be/stations/NMBS/008831112"], ["http://irail.be/stations/NMBS/008863446", "http://irail.be/stations/NMBS/008864931"], ["http://irail.be/stations/NMBS/008881000", "http://irail.be/stations/NMBS/008881562"], ["http://irail.be/stations/NMBS/008891132", "http://irail.be/stations/NMBS/008891140"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821907"], ["http://irail.be/stations/NMBS/008812021", "http://irail.be/stations/NMBS/008812047"], ["http://irail.be/stations/NMBS/008883022", "http://irail.be/stations/NMBS/008883238"], ["http://irail.be/stations/NMBS/008821832", "http://irail.be/stations/NMBS/008821857"], ["http://irail.be/stations/NMBS/008886553", "http://irail.be/stations/NMBS/008886561"], ["http://irail.be/stations/NMBS/008893583", "http://irail.be/stations/NMBS/008895489"], ["http://irail.be/stations/NMBS/008885704", "http://irail.be/stations/NMBS/008896388"], ["http://irail.be/stations/NMBS/008882206", "http://irail.be/stations/NMBS/008882362"], ["http://irail.be/stations/NMBS/008891009", "http://irail.be/stations/NMBS/008891264"], ["http://irail.be/stations/NMBS/008885753", "http://irail.be/stations/NMBS/008896230"], ["http://irail.be/stations/NMBS/008891124", "http://irail.be/stations/NMBS/008891132"], ["http://irail.be/stations/NMBS/008871332", "http://irail.be/stations/NMBS/008871365"], ["http://irail.be/stations/NMBS/008861432", "http://irail.be/stations/NMBS/008861440"], ["http://irail.be/stations/NMBS/008821147", "http://irail.be/stations/NMBS/008821238"], ["http://irail.be/stations/NMBS/008831088", "http://irail.be/stations/NMBS/008832243"], ["http://irail.be/stations/NMBS/008873007", "http://irail.be/stations/NMBS/008873312"], ["http://irail.be/stations/NMBS/008774100", "http://irail.be/stations/NMBS/008774164"], ["http://irail.be/stations/NMBS/008831005", "http://irail.be/stations/NMBS/008832334"], ["http://irail.be/stations/NMBS/008811742", "http://irail.be/stations/NMBS/008861515"], ["http://irail.be/stations/NMBS/008831310", "http://irail.be/stations/NMBS/008841442"], ["http://irail.be/stations/NMBS/008883113", "http://irail.be/stations/NMBS/008883212"], ["http://irail.be/stations/NMBS/008831401", "http://irail.be/stations/NMBS/008832045"], ["http://irail.be/stations/NMBS/008871308", "http://irail.be/stations/NMBS/008871365"], ["http://irail.be/stations/NMBS/008893120", "http://irail.be/stations/NMBS/008893211"], ["http://irail.be/stations/NMBS/008892007", "http://irail.be/stations/NMBS/008892080"], ["http://irail.be/stations/NMBS/008821196", "http://irail.be/stations/NMBS/008824224"], ["http://irail.be/stations/NMBS/008842663", "http://irail.be/stations/NMBS/008842689"], ["http://irail.be/stations/NMBS/008866142", "http://irail.be/stations/NMBS/008866530"], ["http://irail.be/stations/NMBS/008844271", "http://irail.be/stations/NMBS/008846201"], ["http://irail.be/stations/NMBS/008893534", "http://irail.be/stations/NMBS/008893583"], ["http://irail.be/stations/NMBS/008893054", "http://irail.be/stations/NMBS/008895257"], ["http://irail.be/stations/NMBS/008892254", "http://irail.be/stations/NMBS/008896115"], ["http://irail.be/stations/NMBS/008846201", "http://irail.be/stations/NMBS/008849064"], ["http://irail.be/stations/NMBS/008728687", "http://irail.be/stations/NMBS/008884889"], ["http://irail.be/stations/NMBS/008892288", "http://irail.be/stations/NMBS/008896149"], ["http://irail.be/stations/NMBS/008841673", "http://irail.be/stations/NMBS/008841731"], ["http://irail.be/stations/NMBS/008011090", "http://irail.be/stations/NMBS/008721202"], ["http://irail.be/stations/NMBS/008879004", "http://irail.be/stations/NMBS/008881430"], ["http://irail.be/stations/NMBS/008821154", "http://irail.be/stations/NMBS/008821238"], ["http://irail.be/stations/NMBS/008895125", "http://irail.be/stations/NMBS/008895869"], ["http://irail.be/stations/NMBS/008831401", "http://irail.be/stations/NMBS/008833308"], ["http://irail.be/stations/NMBS/008844057", "http://irail.be/stations/NMBS/008844503"], ["http://irail.be/stations/NMBS/008841004", "http://irail.be/stations/NMBS/008843133"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008894755"], ["http://irail.be/stations/NMBS/008812013", "http://irail.be/stations/NMBS/008815016"], ["http://irail.be/stations/NMBS/008863453", "http://irail.be/stations/NMBS/008864931"], ["http://irail.be/stations/NMBS/008811437", "http://irail.be/stations/NMBS/008814464"], ["http://irail.be/stations/NMBS/008895505", "http://irail.be/stations/NMBS/008895711"], ["http://irail.be/stations/NMBS/008728687", "http://irail.be/stations/NMBS/008885522"], ["http://irail.be/stations/NMBS/008821964", "http://irail.be/stations/NMBS/008832433"], ["http://irail.be/stations/NMBS/008500010", "http://irail.be/stations/NMBS/008718206"], ["http://irail.be/stations/NMBS/008200133", "http://irail.be/stations/NMBS/008200136"], ["http://irail.be/stations/NMBS/008863834", "http://irail.be/stations/NMBS/008864931"], ["http://irail.be/stations/NMBS/008821832", "http://irail.be/stations/NMBS/008822525"], ["http://irail.be/stations/NMBS/008881463", "http://irail.be/stations/NMBS/008883113"], ["http://irail.be/stations/NMBS/008891611", "http://irail.be/stations/NMBS/008891629"], ["http://irail.be/stations/NMBS/008718213", "http://irail.be/stations/NMBS/008721202"], ["http://irail.be/stations/NMBS/008871100", "http://irail.be/stations/NMBS/008872009"], ["http://irail.be/stations/NMBS/008811288", "http://irail.be/stations/NMBS/008833175"], ["http://irail.be/stations/NMBS/008895505", "http://irail.be/stations/NMBS/008895570"], ["http://irail.be/stations/NMBS/008864006", "http://irail.be/stations/NMBS/008864311"], ["http://irail.be/stations/NMBS/008881158", "http://irail.be/stations/NMBS/008884004"], ["http://irail.be/stations/NMBS/008812047", "http://irail.be/stations/NMBS/008822111"], ["http://irail.be/stations/NMBS/008831807", "http://irail.be/stations/NMBS/008833670"], ["http://irail.be/stations/NMBS/008881505", "http://irail.be/stations/NMBS/008884327"], ["http://irail.be/stations/NMBS/008871373", "http://irail.be/stations/NMBS/008871514"], ["http://irail.be/stations/NMBS/008863867", "http://irail.be/stations/NMBS/008865615"], ["http://irail.be/stations/NMBS/008728710", "http://irail.be/stations/NMBS/008731388"], ["http://irail.be/stations/NMBS/008865227", "http://irail.be/stations/NMBS/008865540"], ["http://irail.be/stations/NMBS/008822004", "http://irail.be/stations/NMBS/008822608"], ["http://irail.be/stations/NMBS/008843406", "http://irail.be/stations/NMBS/008843430"], ["http://irail.be/stations/NMBS/008814126", "http://irail.be/stations/NMBS/008814373"], ["http://irail.be/stations/NMBS/008892106", "http://irail.be/stations/NMBS/008892734"], ["http://irail.be/stations/NMBS/008861317", "http://irail.be/stations/NMBS/008861416"], ["http://irail.be/stations/NMBS/008821600", "http://irail.be/stations/NMBS/008821816"], ["http://irail.be/stations/NMBS/008895646", "http://irail.be/stations/NMBS/008895752"], ["http://irail.be/stations/NMBS/008844404", "http://irail.be/stations/NMBS/008845229"], ["http://irail.be/stations/NMBS/008200100", "http://irail.be/stations/NMBS/008200510"], ["http://irail.be/stations/NMBS/008894201", "http://irail.be/stations/NMBS/008894235"], ["http://irail.be/stations/NMBS/008843331", "http://irail.be/stations/NMBS/008843349"], ["http://irail.be/stations/NMBS/007015400", "http://irail.be/stations/NMBS/008727100"], ["http://irail.be/stations/NMBS/008863503", "http://irail.be/stations/NMBS/008863834"], ["http://irail.be/stations/NMBS/008010053", "http://irail.be/stations/NMBS/008400058"], ["http://irail.be/stations/NMBS/008863818", "http://irail.be/stations/NMBS/008873122"], ["http://irail.be/stations/NMBS/008864337", "http://irail.be/stations/NMBS/008865615"], ["http://irail.be/stations/NMBS/008896370", "http://irail.be/stations/NMBS/008896800"], ["http://irail.be/stations/NMBS/008895752", "http://irail.be/stations/NMBS/008895877"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008821402"], ["http://irail.be/stations/NMBS/008894508", "http://irail.be/stations/NMBS/008894672"], ["http://irail.be/stations/NMBS/008893443", "http://irail.be/stations/NMBS/008894433"], ["http://irail.be/stations/NMBS/008861549", "http://irail.be/stations/NMBS/008872611"], ["http://irail.be/stations/NMBS/008891116", "http://irail.be/stations/NMBS/008891660"], ["http://irail.be/stations/NMBS/008896305", "http://irail.be/stations/NMBS/008896370"], ["http://irail.be/stations/NMBS/008861143", "http://irail.be/stations/NMBS/008861424"], ["http://irail.be/stations/NMBS/008861150", "http://irail.be/stations/NMBS/008861333"], ["http://irail.be/stations/NMBS/008881463", "http://irail.be/stations/NMBS/008883212"], ["http://irail.be/stations/NMBS/008822053", "http://irail.be/stations/NMBS/008822269"], ["http://irail.be/stations/NMBS/008200130", "http://irail.be/stations/NMBS/008866118"], ["http://irail.be/stations/NMBS/008892403", "http://irail.be/stations/NMBS/008896800"], ["http://irail.be/stations/NMBS/008886546", "http://irail.be/stations/NMBS/008895612"], ["http://irail.be/stations/NMBS/008881158", "http://irail.be/stations/NMBS/008884566"], ["http://irail.be/stations/NMBS/008814142", "http://irail.be/stations/NMBS/008814431"], ["http://irail.be/stations/NMBS/008864501", "http://irail.be/stations/NMBS/008864832"], ["http://irail.be/stations/NMBS/008842838", "http://irail.be/stations/NMBS/008842846"], ["http://irail.be/stations/NMBS/008866258", "http://irail.be/stations/NMBS/008866845"], ["http://irail.be/stations/NMBS/008833449", "http://irail.be/stations/NMBS/008833670"], ["http://irail.be/stations/NMBS/008841202", "http://irail.be/stations/NMBS/008843158"], ["http://irail.be/stations/NMBS/008896503", "http://irail.be/stations/NMBS/008896735"], ["http://irail.be/stations/NMBS/008884327", "http://irail.be/stations/NMBS/008884632"], ["http://irail.be/stations/NMBS/008814258", "http://irail.be/stations/NMBS/008814266"], ["http://irail.be/stations/NMBS/008864006", "http://irail.be/stations/NMBS/008864345"], ["http://irail.be/stations/NMBS/008881166", "http://irail.be/stations/NMBS/008881190"], ["http://irail.be/stations/NMBS/008821824", "http://irail.be/stations/NMBS/008822517"], ["http://irail.be/stations/NMBS/008881174", "http://irail.be/stations/NMBS/008883436"], ["http://irail.be/stations/NMBS/008812146", "http://irail.be/stations/NMBS/008812260"], ["http://irail.be/stations/NMBS/008883220", "http://irail.be/stations/NMBS/008883238"], ["http://irail.be/stations/NMBS/008728105", "http://irail.be/stations/NMBS/008728683"], ["http://irail.be/stations/NMBS/008842705", "http://irail.be/stations/NMBS/008842754"], ["http://irail.be/stations/NMBS/008873239", "http://irail.be/stations/NMBS/008874054"], ["http://irail.be/stations/NMBS/008200110", "http://irail.be/stations/NMBS/008200516"], ["http://irail.be/stations/NMBS/008841442", "http://irail.be/stations/NMBS/008841459"], ["http://irail.be/stations/NMBS/008832250", "http://irail.be/stations/NMBS/008832565"], ["http://irail.be/stations/NMBS/008814142", "http://irail.be/stations/NMBS/008814423"], ["http://irail.be/stations/NMBS/008892304", "http://irail.be/stations/NMBS/008896735"], ["http://irail.be/stations/NMBS/008874005", "http://irail.be/stations/NMBS/008874559"], ["http://irail.be/stations/NMBS/008882339", "http://irail.be/stations/NMBS/008882362"], ["http://irail.be/stations/NMBS/008843174", "http://irail.be/stations/NMBS/008847258"], ["http://irail.be/stations/NMBS/008812047", "http://irail.be/stations/NMBS/008815016"], ["http://irail.be/stations/NMBS/008841202", "http://irail.be/stations/NMBS/008841558"], ["http://irail.be/stations/NMBS/007015400", "http://irail.be/stations/NMBS/007015440"], ["http://irail.be/stations/NMBS/008811460", "http://irail.be/stations/NMBS/008814266"], ["http://irail.be/stations/NMBS/008811536", "http://irail.be/stations/NMBS/008811544"], ["http://irail.be/stations/NMBS/008812146", "http://irail.be/stations/NMBS/008812252"], ["http://irail.be/stations/NMBS/008863461", "http://irail.be/stations/NMBS/008864964"], ["http://irail.be/stations/NMBS/008814209", "http://irail.be/stations/NMBS/008883238"], ["http://irail.be/stations/NMBS/008811734", "http://irail.be/stations/NMBS/008811767"], ["http://irail.be/stations/NMBS/008822814", "http://irail.be/stations/NMBS/008824240"], ["http://irail.be/stations/NMBS/008832433", "http://irail.be/stations/NMBS/008832458"], ["http://irail.be/stations/NMBS/008895125", "http://irail.be/stations/NMBS/008895489"], ["http://irail.be/stations/NMBS/008814209", "http://irail.be/stations/NMBS/008814332"], ["http://irail.be/stations/NMBS/008727100", "http://irail.be/stations/NMBS/008772202"], ["http://irail.be/stations/NMBS/008866530", "http://irail.be/stations/NMBS/008866654"], ["http://irail.be/stations/NMBS/008892643", "http://irail.be/stations/NMBS/008892650"], ["http://irail.be/stations/NMBS/008833449", "http://irail.be/stations/NMBS/008861440"], ["http://irail.be/stations/NMBS/008731901", "http://irail.be/stations/NMBS/008776302"], ["http://irail.be/stations/NMBS/008821865", "http://irail.be/stations/NMBS/008833258"], ["http://irail.be/stations/NMBS/008886348", "http://irail.be/stations/NMBS/008892908"], ["http://irail.be/stations/NMBS/008864337", "http://irail.be/stations/NMBS/008864410"], ["http://irail.be/stations/NMBS/008841442", "http://irail.be/stations/NMBS/008843349"], ["http://irail.be/stations/NMBS/008841525", "http://irail.be/stations/NMBS/008841665"], ["http://irail.be/stations/NMBS/008866654", "http://irail.be/stations/NMBS/008869088"], ["http://irail.be/stations/NMBS/008774177", "http://irail.be/stations/NMBS/008774179"], ["http://irail.be/stations/NMBS/008891140", "http://irail.be/stations/NMBS/008892288"], ["http://irail.be/stations/NMBS/008874005", "http://irail.be/stations/NMBS/008874583"], ["http://irail.be/stations/NMBS/008874609", "http://irail.be/stations/NMBS/008874716"], ["http://irail.be/stations/NMBS/008718201", "http://irail.be/stations/NMBS/008721222"], ["http://irail.be/stations/NMBS/008884715", "http://irail.be/stations/NMBS/008886348"], ["http://irail.be/stations/NMBS/008813037", "http://irail.be/stations/NMBS/008815016"], ["http://irail.be/stations/NMBS/008812013", "http://irail.be/stations/NMBS/008812047"], ["http://irail.be/stations/NMBS/008832458", "http://irail.be/stations/NMBS/008833266"], ["http://irail.be/stations/NMBS/008200940", "http://irail.be/stations/NMBS/008866605"], ["http://irail.be/stations/NMBS/008865128", "http://irail.be/stations/NMBS/008866118"], ["http://irail.be/stations/NMBS/008811007", "http://irail.be/stations/NMBS/008811148"], ["http://irail.be/stations/NMBS/008893518", "http://irail.be/stations/NMBS/008894235"], ["http://irail.be/stations/NMBS/008811676", "http://irail.be/stations/NMBS/008811742"], ["http://irail.be/stations/NMBS/008895745", "http://irail.be/stations/NMBS/008895877"], ["http://irail.be/stations/NMBS/008821907", "http://irail.be/stations/NMBS/008832565"], ["http://irail.be/stations/NMBS/008871225", "http://irail.be/stations/NMBS/008872306"], ["http://irail.be/stations/NMBS/008812245", "http://irail.be/stations/NMBS/008814332"], ["http://irail.be/stations/NMBS/008893526", "http://irail.be/stations/NMBS/008894201"], ["http://irail.be/stations/NMBS/008731388", "http://irail.be/stations/NMBS/008881505"], ["http://irail.be/stations/NMBS/008873320", "http://irail.be/stations/NMBS/008873379"], ["http://irail.be/stations/NMBS/008821311", "http://irail.be/stations/NMBS/008821634"], ["http://irail.be/stations/NMBS/008728600", "http://irail.be/stations/NMBS/008728710"], ["http://irail.be/stations/NMBS/008832003", "http://irail.be/stations/NMBS/008832045"], ["http://irail.be/stations/NMBS/008824224", "http://irail.be/stations/NMBS/008894748"], ["http://irail.be/stations/NMBS/008811148", "http://irail.be/stations/NMBS/008812021"], ["http://irail.be/stations/NMBS/008866605", "http://irail.be/stations/NMBS/008869088"], ["http://irail.be/stations/NMBS/008861127", "http://irail.be/stations/NMBS/008863156"], ["http://irail.be/stations/NMBS/008814159", "http://irail.be/stations/NMBS/008814464"], ["http://irail.be/stations/NMBS/008842630", "http://irail.be/stations/NMBS/008842648"], ["http://irail.be/stations/NMBS/008831781", "http://irail.be/stations/NMBS/008832375"], ["http://irail.be/stations/NMBS/008833050", "http://irail.be/stations/NMBS/008833258"], ["http://irail.be/stations/NMBS/008833209", "http://irail.be/stations/NMBS/008833258"], ["http://irail.be/stations/NMBS/008821667", "http://irail.be/stations/NMBS/008821824"], ["http://irail.be/stations/NMBS/008893518", "http://irail.be/stations/NMBS/008895000"], ["http://irail.be/stations/NMBS/008814423", "http://irail.be/stations/NMBS/008814431"], ["http://irail.be/stations/NMBS/008844420", "http://irail.be/stations/NMBS/008844628"], ["http://irail.be/stations/NMBS/008833001", "http://irail.be/stations/NMBS/008833126"], ["http://irail.be/stations/NMBS/008728673", "http://irail.be/stations/NMBS/008728686"], ["http://irail.be/stations/NMBS/008893401", "http://irail.be/stations/NMBS/008894235"], ["http://irail.be/stations/NMBS/008891033", "http://irail.be/stations/NMBS/008891645"], ["http://irail.be/stations/NMBS/008895760", "http://irail.be/stations/NMBS/008895869"], ["http://irail.be/stations/NMBS/008200120", "http://irail.be/stations/NMBS/008200518"], ["http://irail.be/stations/NMBS/008822160", "http://irail.be/stations/NMBS/008822772"], ["http://irail.be/stations/NMBS/008015588", "http://irail.be/stations/NMBS/008032572"], ["http://irail.be/stations/NMBS/008831039", "http://irail.be/stations/NMBS/008831088"], ["http://irail.be/stations/NMBS/008833449", "http://irail.be/stations/NMBS/008863446"], ["http://irail.be/stations/NMBS/008833605", "http://irail.be/stations/NMBS/008863446"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821543"], ["http://irail.be/stations/NMBS/008200516", "http://irail.be/stations/NMBS/008200520"], ["http://irail.be/stations/NMBS/008722326", "http://irail.be/stations/NMBS/008728105"], ["http://irail.be/stations/NMBS/008841319", "http://irail.be/stations/NMBS/008841327"], ["http://irail.be/stations/NMBS/008010184", "http://irail.be/stations/NMBS/008015458"], ["http://irail.be/stations/NMBS/008896008", "http://irail.be/stations/NMBS/008896388"], ["http://irail.be/stations/NMBS/008863008", "http://irail.be/stations/NMBS/008863115"], ["http://irail.be/stations/NMBS/008893039", "http://irail.be/stations/NMBS/008893567"], ["http://irail.be/stations/NMBS/008811759", "http://irail.be/stations/NMBS/008861416"], ["http://irail.be/stations/NMBS/008845005", "http://irail.be/stations/NMBS/008845146"], ["http://irail.be/stations/NMBS/008822004", "http://irail.be/stations/NMBS/008822053"], ["http://irail.be/stations/NMBS/008812062", "http://irail.be/stations/NMBS/008822111"], ["http://irail.be/stations/NMBS/008861127", "http://irail.be/stations/NMBS/008861135"], ["http://irail.be/stations/NMBS/008863156", "http://irail.be/stations/NMBS/008863560"], ["http://irail.be/stations/NMBS/008811262", "http://irail.be/stations/NMBS/008822475"], ["http://irail.be/stations/NMBS/008200120", "http://irail.be/stations/NMBS/008200130"], ["http://irail.be/stations/NMBS/008821022", "http://irail.be/stations/NMBS/008821089"], ["http://irail.be/stations/NMBS/008811437", "http://irail.be/stations/NMBS/008814175"], ["http://irail.be/stations/NMBS/008892403", "http://irail.be/stations/NMBS/008892452"], ["http://irail.be/stations/NMBS/008822145", "http://irail.be/stations/NMBS/008822160"], ["http://irail.be/stations/NMBS/008822210", "http://irail.be/stations/NMBS/008822814"], ["http://irail.be/stations/NMBS/008871217", "http://irail.be/stations/NMBS/008871225"], ["http://irail.be/stations/NMBS/008861333", "http://irail.be/stations/NMBS/008874716"], ["http://irail.be/stations/NMBS/008400426", "http://irail.be/stations/NMBS/008844503"], ["http://irail.be/stations/NMBS/008811429", "http://irail.be/stations/NMBS/008814456"], ["http://irail.be/stations/NMBS/008200516", "http://irail.be/stations/NMBS/008200940"], ["http://irail.be/stations/NMBS/008821709", "http://irail.be/stations/NMBS/008821725"], ["http://irail.be/stations/NMBS/008844339", "http://irail.be/stations/NMBS/008844347"], ["http://irail.be/stations/NMBS/008822459", "http://irail.be/stations/NMBS/008822475"], ["http://irail.be/stations/NMBS/008861515", "http://irail.be/stations/NMBS/008872553"], ["http://irail.be/stations/NMBS/008895620", "http://irail.be/stations/NMBS/008895638"], ["http://irail.be/stations/NMBS/008893526", "http://irail.be/stations/NMBS/008895125"], ["http://irail.be/stations/NMBS/008814001", "http://irail.be/stations/NMBS/008814118"], ["http://irail.be/stations/NMBS/008811676", "http://irail.be/stations/NMBS/008811817"], ["http://irail.be/stations/NMBS/008842754", "http://irail.be/stations/NMBS/008844255"], ["http://irail.be/stations/NMBS/008843067", "http://irail.be/stations/NMBS/008843166"], ["http://irail.be/stations/NMBS/008015345", "http://irail.be/stations/NMBS/008832664"], ["http://irail.be/stations/NMBS/008728687", "http://irail.be/stations/NMBS/008731388"], ["http://irail.be/stations/NMBS/008831112", "http://irail.be/stations/NMBS/008831765"], ["http://irail.be/stations/NMBS/008811676", "http://irail.be/stations/NMBS/008861549"], ["http://irail.be/stations/NMBS/008871688", "http://irail.be/stations/NMBS/008882362"], ["http://irail.be/stations/NMBS/008871175", "http://irail.be/stations/NMBS/008871837"], ["http://irail.be/stations/NMBS/008861135", "http://irail.be/stations/NMBS/008861143"], ["http://irail.be/stations/NMBS/008812161", "http://irail.be/stations/NMBS/008895000"], ["http://irail.be/stations/NMBS/008871662", "http://irail.be/stations/NMBS/008882362"], ["http://irail.be/stations/NMBS/008811262", "http://irail.be/stations/NMBS/008822517"], ["http://irail.be/stations/NMBS/008895729", "http://irail.be/stations/NMBS/008895737"], ["http://irail.be/stations/NMBS/008872413", "http://irail.be/stations/NMBS/008872520"], ["http://irail.be/stations/NMBS/008842630", "http://irail.be/stations/NMBS/008847258"], ["http://irail.be/stations/NMBS/008882107", "http://irail.be/stations/NMBS/008882206"], ["http://irail.be/stations/NMBS/008812005", "http://irail.be/stations/NMBS/008813037"], ["http://irail.be/stations/NMBS/008812229", "http://irail.be/stations/NMBS/008812237"], ["http://irail.be/stations/NMBS/008891629", "http://irail.be/stations/NMBS/008891645"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821964"], ["http://irail.be/stations/NMBS/008844230", "http://irail.be/stations/NMBS/008844255"], ["http://irail.be/stations/NMBS/008895091", "http://irail.be/stations/NMBS/008895802"], ["http://irail.be/stations/NMBS/008811528", "http://irail.be/stations/NMBS/008814258"], ["http://irail.be/stations/NMBS/008893567", "http://irail.be/stations/NMBS/008895422"], ["http://irail.be/stations/NMBS/008728654", "http://irail.be/stations/NMBS/008896305"], ["http://irail.be/stations/NMBS/008822715", "http://irail.be/stations/NMBS/008824224"], ["http://irail.be/stations/NMBS/008883436", "http://irail.be/stations/NMBS/008895612"], ["http://irail.be/stations/NMBS/008871332", "http://irail.be/stations/NMBS/008872579"], ["http://irail.be/stations/NMBS/008896388", "http://irail.be/stations/NMBS/008896925"], ["http://irail.be/stations/NMBS/008811148", "http://irail.be/stations/NMBS/008811189"], ["http://irail.be/stations/NMBS/008842648", "http://irail.be/stations/NMBS/008842754"], ["http://irail.be/stations/NMBS/008891165", "http://irail.be/stations/NMBS/008893815"], ["http://irail.be/stations/NMBS/008728683", "http://irail.be/stations/NMBS/008728686"], ["http://irail.be/stations/NMBS/008895240", "http://irail.be/stations/NMBS/008895257"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821725"], ["http://irail.be/stations/NMBS/008895091", "http://irail.be/stations/NMBS/008895836"], ["http://irail.be/stations/NMBS/008885704", "http://irail.be/stations/NMBS/008885753"], ["http://irail.be/stations/NMBS/008843323", "http://irail.be/stations/NMBS/008843331"], ["http://irail.be/stations/NMBS/008824224", "http://irail.be/stations/NMBS/008824240"], ["http://irail.be/stations/NMBS/008841608", "http://irail.be/stations/NMBS/008842036"], ["http://irail.be/stations/NMBS/008811148", "http://irail.be/stations/NMBS/008822053"], ["http://irail.be/stations/NMBS/008718206", "http://irail.be/stations/NMBS/008774100"], ["http://irail.be/stations/NMBS/008719203", "http://irail.be/stations/NMBS/008776290"], ["http://irail.be/stations/NMBS/008893583", "http://irail.be/stations/NMBS/008895463"], ["http://irail.be/stations/NMBS/008774100", "http://irail.be/stations/NMBS/008776302"], ["http://irail.be/stations/NMBS/008008094", "http://irail.be/stations/NMBS/008039904"], ["http://irail.be/stations/NMBS/008811148", "http://irail.be/stations/NMBS/008811213"], ["http://irail.be/stations/NMBS/008831138", "http://irail.be/stations/NMBS/008831765"], ["http://irail.be/stations/NMBS/008721202", "http://irail.be/stations/NMBS/008721405"], ["http://irail.be/stations/NMBS/008811270", "http://irail.be/stations/NMBS/008822517"], ["http://irail.be/stations/NMBS/008811288", "http://irail.be/stations/NMBS/008822533"], ["http://irail.be/stations/NMBS/008821444", "http://irail.be/stations/NMBS/008821451"], ["http://irail.be/stations/NMBS/007015400", "http://irail.be/stations/NMBS/008778400"], ["http://irail.be/stations/NMBS/008200132", "http://irail.be/stations/NMBS/008200133"], ["http://irail.be/stations/NMBS/008881000", "http://irail.be/stations/NMBS/008881570"], ["http://irail.be/stations/NMBS/008833605", "http://irail.be/stations/NMBS/008843430"], ["http://irail.be/stations/NMBS/008892080", "http://irail.be/stations/NMBS/008893062"], ["http://irail.be/stations/NMBS/008872009", "http://irail.be/stations/NMBS/008874054"], ["http://irail.be/stations/NMBS/008861515", "http://irail.be/stations/NMBS/008861523"], ["http://irail.be/stations/NMBS/008886504", "http://irail.be/stations/NMBS/008895570"], ["http://irail.be/stations/NMBS/008892031", "http://irail.be/stations/NMBS/008892056"], ["http://irail.be/stations/NMBS/008821154", "http://irail.be/stations/NMBS/008821196"], ["http://irail.be/stations/NMBS/008893583", "http://irail.be/stations/NMBS/008895471"], ["http://irail.be/stations/NMBS/008885704", "http://irail.be/stations/NMBS/008896370"], ["http://irail.be/stations/NMBS/008861127", "http://irail.be/stations/NMBS/008863560"], ["http://irail.be/stations/NMBS/008893534", "http://irail.be/stations/NMBS/008893542"], ["http://irail.be/stations/NMBS/008886058", "http://irail.be/stations/NMBS/008886587"], ["http://irail.be/stations/NMBS/008843430", "http://irail.be/stations/NMBS/008864923"], ["http://irail.be/stations/NMBS/008400526", "http://irail.be/stations/NMBS/008829009"], ["http://irail.be/stations/NMBS/008882206", "http://irail.be/stations/NMBS/008882339"], ["http://irail.be/stations/NMBS/008200128", "http://irail.be/stations/NMBS/008200134"], ["http://irail.be/stations/NMBS/008831088", "http://irail.be/stations/NMBS/008832235"], ["http://irail.be/stations/NMBS/008892635", "http://irail.be/stations/NMBS/008892692"], ["http://irail.be/stations/NMBS/008892007", "http://irail.be/stations/NMBS/008892031"], ["http://irail.be/stations/NMBS/008841004", "http://irail.be/stations/NMBS/008841558"], ["http://irail.be/stations/NMBS/008842663", "http://irail.be/stations/NMBS/008843067"], ["http://irail.be/stations/NMBS/008811130", "http://irail.be/stations/NMBS/008811155"], ["http://irail.be/stations/NMBS/008814118", "http://irail.be/stations/NMBS/008814126"], ["http://irail.be/stations/NMBS/008895612", "http://irail.be/stations/NMBS/008895620"], ["http://irail.be/stations/NMBS/008894672", "http://irail.be/stations/NMBS/008894748"], ["http://irail.be/stations/NMBS/008882206", "http://irail.be/stations/NMBS/008883238"], ["http://irail.be/stations/NMBS/008881125", "http://irail.be/stations/NMBS/008881166"], ["http://irail.be/stations/NMBS/008891009", "http://irail.be/stations/NMBS/008891660"], ["http://irail.be/stations/NMBS/008895711", "http://irail.be/stations/NMBS/008895729"], ["http://irail.be/stations/NMBS/008831310", "http://irail.be/stations/NMBS/008841327"], ["http://irail.be/stations/NMBS/008814159", "http://irail.be/stations/NMBS/008814167"], ["http://irail.be/stations/NMBS/008811007", "http://irail.be/stations/NMBS/008812021"], ["http://irail.be/stations/NMBS/008863834", "http://irail.be/stations/NMBS/008863842"], ["http://irail.be/stations/NMBS/008883113", "http://irail.be/stations/NMBS/008883121"], ["http://irail.be/stations/NMBS/008812237", "http://irail.be/stations/NMBS/008812245"], ["http://irail.be/stations/NMBS/008891645", "http://irail.be/stations/NMBS/008891652"], ["http://irail.be/stations/NMBS/008821196", "http://irail.be/stations/NMBS/008824158"], ["http://irail.be/stations/NMBS/008866142", "http://irail.be/stations/NMBS/008866407"], ["http://irail.be/stations/NMBS/008844313", "http://irail.be/stations/NMBS/008844321"], ["http://irail.be/stations/NMBS/008812070", "http://irail.be/stations/NMBS/008812146"], ["http://irail.be/stations/NMBS/008893013", "http://irail.be/stations/NMBS/008893054"], ["http://irail.be/stations/NMBS/008728687", "http://irail.be/stations/NMBS/008885001"], ["http://irail.be/stations/NMBS/008864345", "http://irail.be/stations/NMBS/008864352"], ["http://irail.be/stations/NMBS/008400180", "http://irail.be/stations/NMBS/008400526"], ["http://irail.be/stations/NMBS/008831310", "http://irail.be/stations/NMBS/008841731"], ["http://irail.be/stations/NMBS/008879004", "http://irail.be/stations/NMBS/008881505"], ["http://irail.be/stations/NMBS/008831401", "http://irail.be/stations/NMBS/008833274"], ["http://irail.be/stations/NMBS/008895232", "http://irail.be/stations/NMBS/008895240"], ["http://irail.be/stations/NMBS/008883436", "http://irail.be/stations/NMBS/008886074"], ["http://irail.be/stations/NMBS/008718213", "http://irail.be/stations/NMBS/008721405"], ["http://irail.be/stations/NMBS/008821402", "http://irail.be/stations/NMBS/008829009"], ["http://irail.be/stations/NMBS/008881406", "http://irail.be/stations/NMBS/008881430"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008894748"], ["http://irail.be/stations/NMBS/008813037", "http://irail.be/stations/NMBS/008814001"], ["http://irail.be/stations/NMBS/008892734", "http://irail.be/stations/NMBS/008892908"], ["http://irail.be/stations/NMBS/008871647", "http://irail.be/stations/NMBS/008871662"], ["http://irail.be/stations/NMBS/008884335", "http://irail.be/stations/NMBS/008884889"], ["http://irail.be/stations/NMBS/008863453", "http://irail.be/stations/NMBS/008864949"], ["http://irail.be/stations/NMBS/008881158", "http://irail.be/stations/NMBS/008881190"], ["http://irail.be/stations/NMBS/008821824", "http://irail.be/stations/NMBS/008821832"], ["http://irail.be/stations/NMBS/008893559", "http://irail.be/stations/NMBS/008893567"], ["http://irail.be/stations/NMBS/008821964", "http://irail.be/stations/NMBS/008832458"], ["http://irail.be/stations/NMBS/008811411", "http://irail.be/stations/NMBS/008814472"], ["http://irail.be/stations/NMBS/008500010", "http://irail.be/stations/NMBS/008718213"], ["http://irail.be/stations/NMBS/008200133", "http://irail.be/stations/NMBS/008200134"], ["http://irail.be/stations/NMBS/008861531", "http://irail.be/stations/NMBS/008872553"], ["http://irail.be/stations/NMBS/008863404", "http://irail.be/stations/NMBS/008863438"], ["http://irail.be/stations/NMBS/008821832", "http://irail.be/stations/NMBS/008822533"], ["http://irail.be/stations/NMBS/008883311", "http://irail.be/stations/NMBS/008895760"], ["http://irail.be/stations/NMBS/008822004", "http://irail.be/stations/NMBS/008822251"], ["http://irail.be/stations/NMBS/008814258", "http://irail.be/stations/NMBS/008872587"], ["http://irail.be/stations/NMBS/008845005", "http://irail.be/stations/NMBS/008849072"], ["http://irail.be/stations/NMBS/008711184", "http://irail.be/stations/NMBS/008727100"], ["http://irail.be/stations/NMBS/008894151", "http://irail.be/stations/NMBS/008894201"], ["http://irail.be/stations/NMBS/008731901", "http://irail.be/stations/NMBS/008775500"], ["http://irail.be/stations/NMBS/008861143", "http://irail.be/stations/NMBS/008863560"], ["http://irail.be/stations/NMBS/008871100", "http://irail.be/stations/NMBS/008871852"], ["http://irail.be/stations/NMBS/008400280", "http://irail.be/stations/NMBS/008891652"], ["http://irail.be/stations/NMBS/008811767", "http://irail.be/stations/NMBS/008811775"], ["http://irail.be/stations/NMBS/008861531", "http://irail.be/stations/NMBS/008861549"], ["http://irail.be/stations/NMBS/008011068", "http://irail.be/stations/NMBS/008011090"], ["http://irail.be/stations/NMBS/008812047", "http://irail.be/stations/NMBS/008822053"], ["http://irail.be/stations/NMBS/008777300", "http://irail.be/stations/NMBS/008777320"], ["http://irail.be/stations/NMBS/008881505", "http://irail.be/stations/NMBS/008884319"], ["http://irail.be/stations/NMBS/008711184", "http://irail.be/stations/NMBS/008866845"], ["http://irail.be/stations/NMBS/008843141", "http://irail.be/stations/NMBS/008843174"], ["http://irail.be/stations/NMBS/008873239", "http://irail.be/stations/NMBS/008874583"], ["http://irail.be/stations/NMBS/008896305", "http://irail.be/stations/NMBS/008896800"], ["http://irail.be/stations/NMBS/008821311", "http://irail.be/stations/NMBS/008822814"], ["http://irail.be/stations/NMBS/008865227", "http://irail.be/stations/NMBS/008865300"], ["http://irail.be/stations/NMBS/008895778", "http://irail.be/stations/NMBS/008895851"], ["http://irail.be/stations/NMBS/008711184", "http://irail.be/stations/NMBS/008727149"], ["http://irail.be/stations/NMBS/008832250", "http://irail.be/stations/NMBS/008832334"], ["http://irail.be/stations/NMBS/008884889", "http://irail.be/stations/NMBS/008885522"], ["http://irail.be/stations/NMBS/008861317", "http://irail.be/stations/NMBS/008861333"], ["http://irail.be/stations/NMBS/008722326", "http://irail.be/stations/NMBS/008896396"], ["http://irail.be/stations/NMBS/008891264", "http://irail.be/stations/NMBS/008891702"], ["http://irail.be/stations/NMBS/008864501", "http://irail.be/stations/NMBS/008864816"], ["http://irail.be/stations/NMBS/008895455", "http://irail.be/stations/NMBS/008895463"], ["http://irail.be/stations/NMBS/008842002", "http://irail.be/stations/NMBS/008843901"], ["http://irail.be/stations/NMBS/008811221", "http://irail.be/stations/NMBS/008819406"], ["http://irail.be/stations/NMBS/008400280", "http://irail.be/stations/NMBS/008891405"], ["http://irail.be/stations/NMBS/008864337", "http://irail.be/stations/NMBS/008865565"], ["http://irail.be/stations/NMBS/008896370", "http://irail.be/stations/NMBS/008896909"], ["http://irail.be/stations/NMBS/008871100", "http://irail.be/stations/NMBS/008871217"], ["http://irail.be/stations/NMBS/008866001", "http://irail.be/stations/NMBS/008866662"], ["http://irail.be/stations/NMBS/008841434", "http://irail.be/stations/NMBS/008843349"], ["http://irail.be/stations/NMBS/008872306", "http://irail.be/stations/NMBS/008872413"], ["http://irail.be/stations/NMBS/008861549", "http://irail.be/stations/NMBS/008872553"], ["http://irail.be/stations/NMBS/008811544", "http://irail.be/stations/NMBS/008811825"], ["http://irail.be/stations/NMBS/008845203", "http://irail.be/stations/NMBS/008864469"], ["http://irail.be/stations/NMBS/008862018", "http://irail.be/stations/NMBS/008865110"], ["http://irail.be/stations/NMBS/008814142", "http://irail.be/stations/NMBS/008814449"], ["http://irail.be/stations/NMBS/008891264", "http://irail.be/stations/NMBS/008891405"], ["http://irail.be/stations/NMBS/008813037", "http://irail.be/stations/NMBS/008814449"], ["http://irail.be/stations/NMBS/008895638", "http://irail.be/stations/NMBS/008895752"], ["http://irail.be/stations/NMBS/008772202", "http://irail.be/stations/NMBS/008777300"], ["http://irail.be/stations/NMBS/008010053", "http://irail.be/stations/NMBS/008011068"], ["http://irail.be/stations/NMBS/008881166", "http://irail.be/stations/NMBS/008881174"], ["http://irail.be/stations/NMBS/008892056", "http://irail.be/stations/NMBS/008892106"], ["http://irail.be/stations/NMBS/008893047", "http://irail.be/stations/NMBS/008895257"], ["http://irail.be/stations/NMBS/008728105", "http://irail.be/stations/NMBS/008728673"], ["http://irail.be/stations/NMBS/008842705", "http://irail.be/stations/NMBS/008842838"], ["http://irail.be/stations/NMBS/008811403", "http://irail.be/stations/NMBS/008814449"], ["http://irail.be/stations/NMBS/008891116", "http://irail.be/stations/NMBS/008891264"], ["http://irail.be/stations/NMBS/008886009", "http://irail.be/stations/NMBS/008886348"], ["http://irail.be/stations/NMBS/008200110", "http://irail.be/stations/NMBS/008200518"], ["http://irail.be/stations/NMBS/008864923", "http://irail.be/stations/NMBS/008864931"], ["http://irail.be/stations/NMBS/008844206", "http://irail.be/stations/NMBS/008844230"], ["http://irail.be/stations/NMBS/008832250", "http://irail.be/stations/NMBS/008832573"], ["http://irail.be/stations/NMBS/008775752", "http://irail.be/stations/NMBS/008775767"], ["http://irail.be/stations/NMBS/008874005", "http://irail.be/stations/NMBS/008874054"], ["http://irail.be/stations/NMBS/008728600", "http://irail.be/stations/NMBS/008896412"], ["http://irail.be/stations/NMBS/008891173", "http://irail.be/stations/NMBS/008891553"], ["http://irail.be/stations/NMBS/008200510", "http://irail.be/stations/NMBS/008200516"], ["http://irail.be/stations/NMBS/008821717", "http://irail.be/stations/NMBS/008833258"], ["http://irail.be/stations/NMBS/008200940", "http://irail.be/stations/NMBS/008210014"], ["http://irail.be/stations/NMBS/008881174", "http://irail.be/stations/NMBS/008881190"], ["http://irail.be/stations/NMBS/008892908", "http://irail.be/stations/NMBS/008895232"], ["http://irail.be/stations/NMBS/008863461", "http://irail.be/stations/NMBS/008864956"], ["http://irail.be/stations/NMBS/008863545", "http://irail.be/stations/NMBS/008864956"], ["http://irail.be/stations/NMBS/008811445", "http://irail.be/stations/NMBS/008814266"], ["http://irail.be/stations/NMBS/008841608", "http://irail.be/stations/NMBS/008846201"], ["http://irail.be/stations/NMBS/008011090", "http://irail.be/stations/NMBS/008032572"], ["http://irail.be/stations/NMBS/008821238", "http://irail.be/stations/NMBS/008821337"], ["http://irail.be/stations/NMBS/008873320", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008400058", "http://irail.be/stations/NMBS/008832664"], ["http://irail.be/stations/NMBS/008843307", "http://irail.be/stations/NMBS/008864832"], ["http://irail.be/stations/NMBS/008200110", "http://irail.be/stations/NMBS/008200120"], ["http://irail.be/stations/NMBS/008865003", "http://irail.be/stations/NMBS/008865227"], ["http://irail.be/stations/NMBS/008881158", "http://irail.be/stations/NMBS/008886066"], ["http://irail.be/stations/NMBS/008891173", "http://irail.be/stations/NMBS/008891645"], ["http://irail.be/stations/NMBS/008728105", "http://irail.be/stations/NMBS/008896396"], ["http://irail.be/stations/NMBS/008882701", "http://irail.be/stations/NMBS/008883238"], ["http://irail.be/stations/NMBS/008885001", "http://irail.be/stations/NMBS/008885522"], ["http://irail.be/stations/NMBS/008812062", "http://irail.be/stations/NMBS/008812211"], ["http://irail.be/stations/NMBS/008814167", "http://irail.be/stations/NMBS/008814464"], ["http://irail.be/stations/NMBS/008811676", "http://irail.be/stations/NMBS/008811726"], ["http://irail.be/stations/NMBS/008812153", "http://irail.be/stations/NMBS/008822160"], ["http://irail.be/stations/NMBS/008812153", "http://irail.be/stations/NMBS/008895091"], ["http://irail.be/stations/NMBS/008864311", "http://irail.be/stations/NMBS/008864345"], ["http://irail.be/stations/NMBS/008821246", "http://irail.be/stations/NMBS/008821634"], ["http://irail.be/stations/NMBS/008811742", "http://irail.be/stations/NMBS/008811767"], ["http://irail.be/stations/NMBS/008824224", "http://irail.be/stations/NMBS/008894672"], ["http://irail.be/stations/NMBS/008822228", "http://irail.be/stations/NMBS/008822608"], ["http://irail.be/stations/NMBS/008871688", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008871837", "http://irail.be/stations/NMBS/008871852"], ["http://irail.be/stations/NMBS/008874005", "http://irail.be/stations/NMBS/008874567"], ["http://irail.be/stations/NMBS/008718201", "http://irail.be/stations/NMBS/008721405"], ["http://irail.be/stations/NMBS/008832334", "http://irail.be/stations/NMBS/008832375"], ["http://irail.be/stations/NMBS/008811544", "http://irail.be/stations/NMBS/008872587"], ["http://irail.be/stations/NMBS/008883006", "http://irail.be/stations/NMBS/008883311"], ["http://irail.be/stations/NMBS/008831039", "http://irail.be/stations/NMBS/008831310"], ["http://irail.be/stations/NMBS/008832458", "http://irail.be/stations/NMBS/008833258"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008821089"], ["http://irail.be/stations/NMBS/008814373", "http://irail.be/stations/NMBS/008815040"], ["http://irail.be/stations/NMBS/008893559", "http://irail.be/stations/NMBS/008895455"], ["http://irail.be/stations/NMBS/008811676", "http://irail.be/stations/NMBS/008811734"], ["http://irail.be/stations/NMBS/008841319", "http://irail.be/stations/NMBS/008843166"], ["http://irail.be/stations/NMBS/008774164", "http://irail.be/stations/NMBS/008774172"], ["http://irail.be/stations/NMBS/008871225", "http://irail.be/stations/NMBS/008872066"], ["http://irail.be/stations/NMBS/008895471", "http://irail.be/stations/NMBS/008895489"], ["http://irail.be/stations/NMBS/008896115", "http://irail.be/stations/NMBS/008896230"], ["http://irail.be/stations/NMBS/008893526", "http://irail.be/stations/NMBS/008894235"], ["http://irail.be/stations/NMBS/008895638", "http://irail.be/stations/NMBS/008895745"], ["http://irail.be/stations/NMBS/008843240", "http://irail.be/stations/NMBS/008843349"], ["http://irail.be/stations/NMBS/008892106", "http://irail.be/stations/NMBS/008892627"], ["http://irail.be/stations/NMBS/008864410", "http://irail.be/stations/NMBS/008865227"], ["http://irail.be/stations/NMBS/008893070", "http://irail.be/stations/NMBS/008895257"], ["http://irail.be/stations/NMBS/008841327", "http://irail.be/stations/NMBS/008843208"], ["http://irail.be/stations/NMBS/008832003", "http://irail.be/stations/NMBS/008832243"], ["http://irail.be/stations/NMBS/008891033", "http://irail.be/stations/NMBS/008891264"], ["http://irail.be/stations/NMBS/008821402", "http://irail.be/stations/NMBS/008821436"], ["http://irail.be/stations/NMBS/008872413", "http://irail.be/stations/NMBS/008874005"], ["http://irail.be/stations/NMBS/008884855", "http://irail.be/stations/NMBS/008884889"], ["http://irail.be/stations/NMBS/008861119", "http://irail.be/stations/NMBS/008863156"], ["http://irail.be/stations/NMBS/008728687", "http://irail.be/stations/NMBS/008728710"], ["http://irail.be/stations/NMBS/008812013", "http://irail.be/stations/NMBS/008812211"], ["http://irail.be/stations/NMBS/008844628", "http://irail.be/stations/NMBS/008844644"], ["http://irail.be/stations/NMBS/008831781", "http://irail.be/stations/NMBS/008832334"], ["http://irail.be/stations/NMBS/008895463", "http://irail.be/stations/NMBS/008895745"], ["http://irail.be/stations/NMBS/008811171", "http://irail.be/stations/NMBS/008811916"], ["http://irail.be/stations/NMBS/008886561", "http://irail.be/stations/NMBS/008886587"], ["http://irail.be/stations/NMBS/008200101", "http://irail.be/stations/NMBS/008719100"], ["http://irail.be/stations/NMBS/008871308", "http://irail.be/stations/NMBS/008872306"], ["http://irail.be/stations/NMBS/008811189", "http://irail.be/stations/NMBS/008822269"], ["http://irail.be/stations/NMBS/008892106", "http://irail.be/stations/NMBS/008892288"], ["http://irail.be/stations/NMBS/008821337", "http://irail.be/stations/NMBS/008822814"], ["http://irail.be/stations/NMBS/008892304", "http://irail.be/stations/NMBS/008892452"], ["http://irail.be/stations/NMBS/008728600", "http://irail.be/stations/NMBS/008728606"], ["http://irail.be/stations/NMBS/008894748", "http://irail.be/stations/NMBS/008894755"], ["http://irail.be/stations/NMBS/008841558", "http://irail.be/stations/NMBS/008843141"], ["http://irail.be/stations/NMBS/008885753", "http://irail.be/stations/NMBS/008889011"], ["http://irail.be/stations/NMBS/008719203", "http://irail.be/stations/NMBS/008866407"], ["http://irail.be/stations/NMBS/008891033", "http://irail.be/stations/NMBS/008891629"], ["http://irail.be/stations/NMBS/008871175", "http://irail.be/stations/NMBS/008874054"], ["http://irail.be/stations/NMBS/008400131", "http://irail.be/stations/NMBS/008832664"], ["http://irail.be/stations/NMBS/008843323", "http://irail.be/stations/NMBS/008864352"], ["http://irail.be/stations/NMBS/008891314", "http://irail.be/stations/NMBS/008892403"], ["http://irail.be/stations/NMBS/008842853", "http://irail.be/stations/NMBS/008843240"], ["http://irail.be/stations/NMBS/008400526", "http://irail.be/stations/NMBS/008894508"], ["http://irail.be/stations/NMBS/008822210", "http://irail.be/stations/NMBS/008822228"], ["http://irail.be/stations/NMBS/008895000", "http://irail.be/stations/NMBS/008895091"], ["http://irail.be/stations/NMBS/008822277", "http://irail.be/stations/NMBS/008822426"], ["http://irail.be/stations/NMBS/008831088", "http://irail.be/stations/NMBS/008831807"], ["http://irail.be/stations/NMBS/008833605", "http://irail.be/stations/NMBS/008863438"], ["http://irail.be/stations/NMBS/008863438", "http://irail.be/stations/NMBS/008863446"], ["http://irail.be/stations/NMBS/008200100", "http://irail.be/stations/NMBS/008719100"], ["http://irail.be/stations/NMBS/008400280", "http://irail.be/stations/NMBS/008894425"], ["http://irail.be/stations/NMBS/008821006", "http://irail.be/stations/NMBS/008821022"], ["http://irail.be/stations/NMBS/008811171", "http://irail.be/stations/NMBS/008812005"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821659"], ["http://irail.be/stations/NMBS/008200516", "http://irail.be/stations/NMBS/008200518"], ["http://irail.be/stations/NMBS/008821816", "http://irail.be/stations/NMBS/008822459"], ["http://irail.be/stations/NMBS/008814175", "http://irail.be/stations/NMBS/008814266"], ["http://irail.be/stations/NMBS/008010184", "http://irail.be/stations/NMBS/008015588"], ["http://irail.be/stations/NMBS/008821311", "http://irail.be/stations/NMBS/008822210"], ["http://irail.be/stations/NMBS/008811726", "http://irail.be/stations/NMBS/008833159"], ["http://irail.be/stations/NMBS/008844503", "http://irail.be/stations/NMBS/008844628"], ["http://irail.be/stations/NMBS/008400424", "http://irail.be/stations/NMBS/008841731"], ["http://irail.be/stations/NMBS/008811759", "http://irail.be/stations/NMBS/008861200"], ["http://irail.be/stations/NMBS/008843067", "http://irail.be/stations/NMBS/008843141"], ["http://irail.be/stations/NMBS/008824232", "http://irail.be/stations/NMBS/008824240"], ["http://irail.be/stations/NMBS/008889011", "http://irail.be/stations/NMBS/008896370"], ["http://irail.be/stations/NMBS/008400058", "http://irail.be/stations/NMBS/008400561"], ["http://irail.be/stations/NMBS/008871183", "http://irail.be/stations/NMBS/008873312"], ["http://irail.be/stations/NMBS/008400131", "http://irail.be/stations/NMBS/008832565"], ["http://irail.be/stations/NMBS/008200120", "http://irail.be/stations/NMBS/008200128"], ["http://irail.be/stations/NMBS/008821022", "http://irail.be/stations/NMBS/008821071"], ["http://irail.be/stations/NMBS/008841400", "http://irail.be/stations/NMBS/008841434"], ["http://irail.be/stations/NMBS/008872520", "http://irail.be/stations/NMBS/008874716"], ["http://irail.be/stations/NMBS/008893708", "http://irail.be/stations/NMBS/008894425"], ["http://irail.be/stations/NMBS/008814241", "http://irail.be/stations/NMBS/008814332"], ["http://irail.be/stations/NMBS/008821006", "http://irail.be/stations/NMBS/008821121"], ["http://irail.be/stations/NMBS/008821709", "http://irail.be/stations/NMBS/008821717"], ["http://irail.be/stations/NMBS/008891660", "http://irail.be/stations/NMBS/008893708"], ["http://irail.be/stations/NMBS/008861333", "http://irail.be/stations/NMBS/008861416"], ["http://irail.be/stations/NMBS/008811403", "http://irail.be/stations/NMBS/008811916"], ["http://irail.be/stations/NMBS/008814001", "http://irail.be/stations/NMBS/008814126"], ["http://irail.be/stations/NMBS/008863008", "http://irail.be/stations/NMBS/008863461"], ["http://irail.be/stations/NMBS/008893542", "http://irail.be/stations/NMBS/008895455"], ["http://irail.be/stations/NMBS/008843067", "http://irail.be/stations/NMBS/008843158"], ["http://irail.be/stations/NMBS/008010316", "http://irail.be/stations/NMBS/008400058"], ["http://irail.be/stations/NMBS/008831112", "http://irail.be/stations/NMBS/008831781"], ["http://irail.be/stations/NMBS/008811676", "http://irail.be/stations/NMBS/008861531"], ["http://irail.be/stations/NMBS/008814142", "http://irail.be/stations/NMBS/008814167"], ["http://irail.be/stations/NMBS/008871175", "http://irail.be/stations/NMBS/008871852"], ["http://irail.be/stations/NMBS/008832615", "http://irail.be/stations/NMBS/008832664"], ["http://irail.be/stations/NMBS/008872413", "http://irail.be/stations/NMBS/008872553"], ["http://irail.be/stations/NMBS/008812005", "http://irail.be/stations/NMBS/008813045"], ["http://irail.be/stations/NMBS/008841665", "http://irail.be/stations/NMBS/008841731"], ["http://irail.be/stations/NMBS/008881000", "http://irail.be/stations/NMBS/008884566"], ["http://irail.be/stations/NMBS/008891132", "http://irail.be/stations/NMBS/008891660"], ["http://irail.be/stations/NMBS/008833050", "http://irail.be/stations/NMBS/008861424"], ["http://irail.be/stations/NMBS/008844230", "http://irail.be/stations/NMBS/008844271"], ["http://irail.be/stations/NMBS/008893567", "http://irail.be/stations/NMBS/008895430"], ["http://irail.be/stations/NMBS/008728654", "http://irail.be/stations/NMBS/008896370"], ["http://irail.be/stations/NMBS/008776302", "http://irail.be/stations/NMBS/008777300"], ["http://irail.be/stations/NMBS/008896149", "http://irail.be/stations/NMBS/008896230"], ["http://irail.be/stations/NMBS/008893039", "http://irail.be/stations/NMBS/008893054"], ["http://irail.be/stations/NMBS/008841400", "http://irail.be/stations/NMBS/008843323"], ["http://irail.be/stations/NMBS/008845146", "http://irail.be/stations/NMBS/008845203"], ["http://irail.be/stations/NMBS/008895422", "http://irail.be/stations/NMBS/008895570"], ["http://irail.be/stations/NMBS/008893260", "http://irail.be/stations/NMBS/008894425"], ["http://irail.be/stations/NMBS/008822053", "http://irail.be/stations/NMBS/008822111"], ["http://irail.be/stations/NMBS/008831138", "http://irail.be/stations/NMBS/008831310"], ["http://irail.be/stations/NMBS/008861135", "http://irail.be/stations/NMBS/008861432"], ["http://irail.be/stations/NMBS/008871183", "http://irail.be/stations/NMBS/008871837"], ["http://irail.be/stations/NMBS/008891165", "http://irail.be/stations/NMBS/008893708"], ["http://irail.be/stations/NMBS/008819406", "http://irail.be/stations/NMBS/008822277"], ["http://irail.be/stations/NMBS/008728606", "http://irail.be/stations/NMBS/008728683"], ["http://irail.be/stations/NMBS/008728683", "http://irail.be/stations/NMBS/008728685"], ["http://irail.be/stations/NMBS/008892627", "http://irail.be/stations/NMBS/008892643"], ["http://irail.be/stations/NMBS/008811221", "http://irail.be/stations/NMBS/008811460"], ["http://irail.be/stations/NMBS/008891157", "http://irail.be/stations/NMBS/008891165"], ["http://irail.be/stations/NMBS/007015440", "http://irail.be/stations/NMBS/008891702"], ["http://irail.be/stations/NMBS/008821030", "http://irail.be/stations/NMBS/008821089"], ["http://irail.be/stations/NMBS/008500010", "http://irail.be/stations/NMBS/008774179"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821717"], ["http://irail.be/stations/NMBS/008844255", "http://irail.be/stations/NMBS/008844339"], ["http://irail.be/stations/NMBS/008821816", "http://irail.be/stations/NMBS/008821824"], ["http://irail.be/stations/NMBS/008844347", "http://irail.be/stations/NMBS/008844404"], ["http://irail.be/stations/NMBS/008824224", "http://irail.be/stations/NMBS/008824232"], ["http://irail.be/stations/NMBS/008841608", "http://irail.be/stations/NMBS/008842051"], ["http://irail.be/stations/NMBS/008774100", "http://irail.be/stations/NMBS/008776290"], ["http://irail.be/stations/NMBS/008895422", "http://irail.be/stations/NMBS/008895711"], ["http://irail.be/stations/NMBS/008721202", "http://irail.be/stations/NMBS/008721222"], ["http://irail.be/stations/NMBS/008811270", "http://irail.be/stations/NMBS/008822525"], ["http://irail.be/stations/NMBS/008778100", "http://irail.be/stations/NMBS/008778127"], ["http://irail.be/stations/NMBS/008882206", "http://irail.be/stations/NMBS/008882701"], ["http://irail.be/stations/NMBS/008895067", "http://irail.be/stations/NMBS/008895489"], ["http://irail.be/stations/NMBS/008892080", "http://irail.be/stations/NMBS/008893070"], ["http://irail.be/stations/NMBS/008891124", "http://irail.be/stations/NMBS/008891660"], ["http://irail.be/stations/NMBS/008831310", "http://irail.be/stations/NMBS/008841319"], ["http://irail.be/stations/NMBS/008822525", "http://irail.be/stations/NMBS/008822533"], ["http://irail.be/stations/NMBS/008811759", "http://irail.be/stations/NMBS/008811767"], ["http://irail.be/stations/NMBS/008775100", "http://irail.be/stations/NMBS/008777320"], ["http://irail.be/stations/NMBS/008863834", "http://irail.be/stations/NMBS/008864501"], ["http://irail.be/stations/NMBS/008718206", "http://irail.be/stations/NMBS/008718213"], ["http://irail.be/stations/NMBS/008883022", "http://irail.be/stations/NMBS/008883212"], ["http://irail.be/stations/NMBS/008814209", "http://irail.be/stations/NMBS/008871332"], ["http://irail.be/stations/NMBS/008200101", "http://irail.be/stations/NMBS/008200110"], ["http://irail.be/stations/NMBS/008812237", "http://irail.be/stations/NMBS/008814357"], ["http://irail.be/stations/NMBS/008842754", "http://irail.be/stations/NMBS/008842838"], ["http://irail.be/stations/NMBS/008885704", "http://irail.be/stations/NMBS/008896008"], ["http://irail.be/stations/NMBS/008842663", "http://irail.be/stations/NMBS/008843208"], ["http://irail.be/stations/NMBS/008008094", "http://irail.be/stations/NMBS/008010184"], ["http://irail.be/stations/NMBS/008811544", "http://irail.be/stations/NMBS/008811601"], ["http://irail.be/stations/NMBS/008886058", "http://irail.be/stations/NMBS/008886561"], ["http://irail.be/stations/NMBS/008843430", "http://irail.be/stations/NMBS/008864915"], ["http://irail.be/stations/NMBS/008843133", "http://irail.be/stations/NMBS/008843174"], ["http://irail.be/stations/NMBS/008200940", "http://irail.be/stations/NMBS/008719100"], ["http://irail.be/stations/NMBS/008891132", "http://irail.be/stations/NMBS/008892288"], ["http://irail.be/stations/NMBS/008400131", "http://irail.be/stations/NMBS/008400180"], ["http://irail.be/stations/NMBS/008832565", "http://irail.be/stations/NMBS/008832615"], ["http://irail.be/stations/NMBS/008865540", "http://irail.be/stations/NMBS/008866845"], ["http://irail.be/stations/NMBS/008778127", "http://irail.be/stations/NMBS/008778400"], ["http://irail.be/stations/NMBS/008884889", "http://irail.be/stations/NMBS/008886348"], ["http://irail.be/stations/NMBS/008841004", "http://irail.be/stations/NMBS/008841525"], ["http://irail.be/stations/NMBS/008811726", "http://irail.be/stations/NMBS/008811775"], ["http://irail.be/stations/NMBS/008842663", "http://irail.be/stations/NMBS/008842838"], ["http://irail.be/stations/NMBS/008844008", "http://irail.be/stations/NMBS/008844420"], ["http://irail.be/stations/NMBS/008811130", "http://irail.be/stations/NMBS/008811148"], ["http://irail.be/stations/NMBS/008822160", "http://irail.be/stations/NMBS/008894672"], ["http://irail.be/stations/NMBS/008841731", "http://irail.be/stations/NMBS/008846201"], ["http://irail.be/stations/NMBS/008831005", "http://irail.be/stations/NMBS/008832243"], ["http://irail.be/stations/NMBS/008812070", "http://irail.be/stations/NMBS/008812112"], ["http://irail.be/stations/NMBS/008811205", "http://irail.be/stations/NMBS/008814472"], ["http://irail.be/stations/NMBS/008872579", "http://irail.be/stations/NMBS/008872587"], ["http://irail.be/stations/NMBS/008863842", "http://irail.be/stations/NMBS/008864006"], ["http://irail.be/stations/NMBS/008881125", "http://irail.be/stations/NMBS/008881158"], ["http://irail.be/stations/NMBS/008811221", "http://irail.be/stations/NMBS/008811247"], ["http://irail.be/stations/NMBS/008812153", "http://irail.be/stations/NMBS/008812161"], ["http://irail.be/stations/NMBS/008872009", "http://irail.be/stations/NMBS/008872306"], ["http://irail.be/stations/NMBS/008863545", "http://irail.be/stations/NMBS/008873122"], ["http://irail.be/stations/NMBS/008893252", "http://irail.be/stations/NMBS/008894151"], ["http://irail.be/stations/NMBS/008011090", "http://irail.be/stations/NMBS/008721222"], ["http://irail.be/stations/NMBS/008833308", "http://irail.be/stations/NMBS/008861440"], ["http://irail.be/stations/NMBS/008842036", "http://irail.be/stations/NMBS/008843901"], ["http://irail.be/stations/NMBS/008895232", "http://irail.be/stations/NMBS/008895570"], ["http://irail.be/stations/NMBS/008814241", "http://irail.be/stations/NMBS/008872579"], ["http://irail.be/stations/NMBS/008881455", "http://irail.be/stations/NMBS/008882362"], ["http://irail.be/stations/NMBS/008831401", "http://irail.be/stations/NMBS/008832235"], ["http://irail.be/stations/NMBS/008845146", "http://irail.be/stations/NMBS/008864451"], ["http://irail.be/stations/NMBS/008814415", "http://irail.be/stations/NMBS/008814423"], ["http://irail.be/stations/NMBS/008873007", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008871662", "http://irail.be/stations/NMBS/008871670"], ["http://irail.be/stations/NMBS/008774100", "http://irail.be/stations/NMBS/008775544"], ["http://irail.be/stations/NMBS/008821519", "http://irail.be/stations/NMBS/008821535"], ["http://irail.be/stations/NMBS/008844008", "http://irail.be/stations/NMBS/008846201"], ["http://irail.be/stations/NMBS/008864915", "http://irail.be/stations/NMBS/008864923"], ["http://irail.be/stations/NMBS/008811148", "http://irail.be/stations/NMBS/008811155"], ["http://irail.be/stations/NMBS/008811007", "http://irail.be/stations/NMBS/008811171"], ["http://irail.be/stations/NMBS/008821634", "http://irail.be/stations/NMBS/008821659"], ["http://irail.be/stations/NMBS/008895067", "http://irail.be/stations/NMBS/008895125"], ["http://irail.be/stations/NMBS/008864345", "http://irail.be/stations/NMBS/008864410"], ["http://irail.be/stations/NMBS/008400180", "http://irail.be/stations/NMBS/008400530"], ["http://irail.be/stations/NMBS/008811411", "http://irail.be/stations/NMBS/008814456"], ["http://irail.be/stations/NMBS/008833266", "http://irail.be/stations/NMBS/008833308"], ["http://irail.be/stations/NMBS/008861143", "http://irail.be/stations/NMBS/008863545"], ["http://irail.be/stations/NMBS/008895232", "http://irail.be/stations/NMBS/008895257"], ["http://irail.be/stations/NMBS/008814241", "http://irail.be/stations/NMBS/008872587"], ["http://irail.be/stations/NMBS/008812161", "http://irail.be/stations/NMBS/008822160"], ["http://irail.be/stations/NMBS/008895448", "http://irail.be/stations/NMBS/008895729"], ["http://irail.be/stations/NMBS/008883436", "http://irail.be/stations/NMBS/008886066"], ["http://irail.be/stations/NMBS/008873122", "http://irail.be/stations/NMBS/008875002"], ["http://irail.be/stations/NMBS/008881406", "http://irail.be/stations/NMBS/008881505"], ["http://irail.be/stations/NMBS/008895455", "http://irail.be/stations/NMBS/008895737"], ["http://irail.be/stations/NMBS/008882230", "http://irail.be/stations/NMBS/008882248"], ["http://irail.be/stations/NMBS/008833258", "http://irail.be/stations/NMBS/008833308"], ["http://irail.be/stations/NMBS/008812161", "http://irail.be/stations/NMBS/008893443"], ["http://irail.be/stations/NMBS/008863453", "http://irail.be/stations/NMBS/008864956"], ["http://irail.be/stations/NMBS/007015400", "http://irail.be/stations/NMBS/008400561"], ["http://irail.be/stations/NMBS/008821659", "http://irail.be/stations/NMBS/008821816"], ["http://irail.be/stations/NMBS/008831807", "http://irail.be/stations/NMBS/008833605"], ["http://irail.be/stations/NMBS/008872306", "http://irail.be/stations/NMBS/008874005"], ["http://irail.be/stations/NMBS/008863834", "http://irail.be/stations/NMBS/008864915"], ["http://irail.be/stations/NMBS/008881430", "http://irail.be/stations/NMBS/008881455"], ["http://irail.be/stations/NMBS/008883311", "http://irail.be/stations/NMBS/008895778"], ["http://irail.be/stations/NMBS/008814126", "http://irail.be/stations/NMBS/008814431"], ["http://irail.be/stations/NMBS/008873122", "http://irail.be/stations/NMBS/008874609"], ["http://irail.be/stations/NMBS/008885530", "http://irail.be/stations/NMBS/008886348"], ["http://irail.be/stations/NMBS/008871811", "http://irail.be/stations/NMBS/008871829"], ["http://irail.be/stations/NMBS/008841459", "http://irail.be/stations/NMBS/008843349"], ["http://irail.be/stations/NMBS/008821600", "http://irail.be/stations/NMBS/008822210"], ["http://irail.be/stations/NMBS/008884004", "http://irail.be/stations/NMBS/008884541"], ["http://irail.be/stations/NMBS/008711184", "http://irail.be/stations/NMBS/008772202"], ["http://irail.be/stations/NMBS/008200520", "http://irail.be/stations/NMBS/008869054"], ["http://irail.be/stations/NMBS/008731901", "http://irail.be/stations/NMBS/008775544"], ["http://irail.be/stations/NMBS/008400280", "http://irail.be/stations/NMBS/008891660"], ["http://irail.be/stations/NMBS/008811429", "http://irail.be/stations/NMBS/008811437"], ["http://irail.be/stations/NMBS/008777300", "http://irail.be/stations/NMBS/008777500"], ["http://irail.be/stations/NMBS/008863156", "http://irail.be/stations/NMBS/008863362"], ["http://irail.be/stations/NMBS/008869047", "http://irail.be/stations/NMBS/008869088"], ["http://irail.be/stations/NMBS/008728105", "http://irail.be/stations/NMBS/008728606"], ["http://irail.be/stations/NMBS/008881505", "http://irail.be/stations/NMBS/008884350"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008821535"], ["http://irail.be/stations/NMBS/008886009", "http://irail.be/stations/NMBS/008886587"], ["http://irail.be/stations/NMBS/008821907", "http://irail.be/stations/NMBS/008821964"], ["http://irail.be/stations/NMBS/008895778", "http://irail.be/stations/NMBS/008895869"], ["http://irail.be/stations/NMBS/008866407", "http://irail.be/stations/NMBS/008866530"], ["http://irail.be/stations/NMBS/008775605", "http://irail.be/stations/NMBS/008775762"], ["http://irail.be/stations/NMBS/008821196", "http://irail.be/stations/NMBS/008822814"], ["http://irail.be/stations/NMBS/008892106", "http://irail.be/stations/NMBS/008892650"], ["http://irail.be/stations/NMBS/008722326", "http://irail.be/stations/NMBS/008896412"], ["http://irail.be/stations/NMBS/008874567", "http://irail.be/stations/NMBS/008874583"], ["http://irail.be/stations/NMBS/008822145", "http://irail.be/stations/NMBS/008822772"], ["http://irail.be/stations/NMBS/008711184", "http://irail.be/stations/NMBS/008772319"], ["http://irail.be/stations/NMBS/008891702", "http://irail.be/stations/NMBS/008892304"], ["http://irail.be/stations/NMBS/008841202", "http://irail.be/stations/NMBS/008843141"], ["http://irail.be/stations/NMBS/008400280", "http://irail.be/stations/NMBS/008891173"], ["http://irail.be/stations/NMBS/008884327", "http://irail.be/stations/NMBS/008884350"], ["http://irail.be/stations/NMBS/008865565", "http://irail.be/stations/NMBS/008865615"], ["http://irail.be/stations/NMBS/008812211", "http://irail.be/stations/NMBS/008815040"], ["http://irail.be/stations/NMBS/008811155", "http://irail.be/stations/NMBS/008811163"], ["http://irail.be/stations/NMBS/008015345", "http://irail.be/stations/NMBS/008400426"], ["http://irail.be/stations/NMBS/008891116", "http://irail.be/stations/NMBS/008891124"], ["http://irail.be/stations/NMBS/008873239", "http://irail.be/stations/NMBS/008873312"], ["http://irail.be/stations/NMBS/008811197", "http://irail.be/stations/NMBS/008811213"], ["http://irail.be/stations/NMBS/008881505", "http://irail.be/stations/NMBS/008884004"], ["http://irail.be/stations/NMBS/008842051", "http://irail.be/stations/NMBS/008842754"], ["http://irail.be/stations/NMBS/008891264", "http://irail.be/stations/NMBS/008891314"], ["http://irail.be/stations/NMBS/008842754", "http://irail.be/stations/NMBS/008864469"], ["http://irail.be/stations/NMBS/008821600", "http://irail.be/stations/NMBS/008821659"], ["http://irail.be/stations/NMBS/008833175", "http://irail.be/stations/NMBS/008833233"], ["http://irail.be/stations/NMBS/008822251", "http://irail.be/stations/NMBS/008822277"], ["http://irail.be/stations/NMBS/008811528", "http://irail.be/stations/NMBS/008872587"], ["http://irail.be/stations/NMBS/008772202", "http://irail.be/stations/NMBS/008778100"], ["http://irail.be/stations/NMBS/008200100", "http://irail.be/stations/NMBS/008200102"], ["http://irail.be/stations/NMBS/008814167", "http://irail.be/stations/NMBS/008814258"], ["http://irail.be/stations/NMBS/008400426", "http://irail.be/stations/NMBS/008832664"], ["http://irail.be/stations/NMBS/008832235", "http://irail.be/stations/NMBS/008832243"], ["http://irail.be/stations/NMBS/008863354", "http://irail.be/stations/NMBS/008863362"], ["http://irail.be/stations/NMBS/008892056", "http://irail.be/stations/NMBS/008892080"], ["http://irail.be/stations/NMBS/008871100", "http://irail.be/stations/NMBS/008871514"], ["http://irail.be/stations/NMBS/008866001", "http://irail.be/stations/NMBS/008866118"], ["http://irail.be/stations/NMBS/008728105", "http://irail.be/stations/NMBS/008728671"], ["http://irail.be/stations/NMBS/008895752", "http://irail.be/stations/NMBS/008895760"], ["http://irail.be/stations/NMBS/008849072", "http://irail.be/stations/NMBS/008865128"], ["http://irail.be/stations/NMBS/008822533", "http://irail.be/stations/NMBS/008833233"], ["http://irail.be/stations/NMBS/008881463", "http://irail.be/stations/NMBS/008882107"], ["http://irail.be/stations/NMBS/008822053", "http://irail.be/stations/NMBS/008822608"], ["http://irail.be/stations/NMBS/008822111", "http://irail.be/stations/NMBS/008822608"], ["http://irail.be/stations/NMBS/008895471", "http://irail.be/stations/NMBS/008895877"], ["http://irail.be/stations/NMBS/008844206", "http://irail.be/stations/NMBS/008844313"], ["http://irail.be/stations/NMBS/008775752", "http://irail.be/stations/NMBS/008775762"], ["http://irail.be/stations/NMBS/008895869", "http://irail.be/stations/NMBS/008895877"], ["http://irail.be/stations/NMBS/008891173", "http://irail.be/stations/NMBS/008891611"], ["http://irail.be/stations/NMBS/008884855", "http://irail.be/stations/NMBS/008886348"], ["http://irail.be/stations/NMBS/008886587", "http://irail.be/stations/NMBS/008895232"], ["http://irail.be/stations/NMBS/008812062", "http://irail.be/stations/NMBS/008812070"], ["http://irail.be/stations/NMBS/008731901", "http://irail.be/stations/NMBS/008777500"], ["http://irail.be/stations/NMBS/008821022", "http://irail.be/stations/NMBS/008821634"], ["http://irail.be/stations/NMBS/008881174", "http://irail.be/stations/NMBS/008881315"], ["http://irail.be/stations/NMBS/008812146", "http://irail.be/stations/NMBS/008812153"], ["http://irail.be/stations/NMBS/008774164", "http://irail.be/stations/NMBS/008774179"], ["http://irail.be/stations/NMBS/008871381", "http://irail.be/stations/NMBS/008871415"], ["http://irail.be/stations/NMBS/008893542", "http://irail.be/stations/NMBS/008894151"], ["http://irail.be/stations/NMBS/008200133", "http://irail.be/stations/NMBS/008865128"], ["http://irail.be/stations/NMBS/008865003", "http://irail.be/stations/NMBS/008865300"], ["http://irail.be/stations/NMBS/008894755", "http://irail.be/stations/NMBS/008894821"], ["http://irail.be/stations/NMBS/008843158", "http://irail.be/stations/NMBS/008843166"], ["http://irail.be/stations/NMBS/008881158", "http://irail.be/stations/NMBS/008886074"], ["http://irail.be/stations/NMBS/008891405", "http://irail.be/stations/NMBS/008891702"], ["http://irail.be/stations/NMBS/008893211", "http://irail.be/stations/NMBS/008893252"], ["http://irail.be/stations/NMBS/008775544", "http://irail.be/stations/NMBS/008776302"], ["http://irail.be/stations/NMBS/008884715", "http://irail.be/stations/NMBS/008886009"], ["http://irail.be/stations/NMBS/008811536", "http://irail.be/stations/NMBS/008872587"], ["http://irail.be/stations/NMBS/008885001", "http://irail.be/stations/NMBS/008885068"], ["http://irail.be/stations/NMBS/008871175", "http://irail.be/stations/NMBS/008871183"], ["http://irail.be/stations/NMBS/008821865", "http://irail.be/stations/NMBS/008833209"], ["http://irail.be/stations/NMBS/008896909", "http://irail.be/stations/NMBS/008896925"], ["http://irail.be/stations/NMBS/008811676", "http://irail.be/stations/NMBS/008811718"], ["http://irail.be/stations/NMBS/008812153", "http://irail.be/stations/NMBS/008822145"], ["http://irail.be/stations/NMBS/008010184", "http://irail.be/stations/NMBS/008400058"], ["http://irail.be/stations/NMBS/008866654", "http://irail.be/stations/NMBS/008869047"], ["http://irail.be/stations/NMBS/008728686", "http://irail.be/stations/NMBS/008885753"], ["http://irail.be/stations/NMBS/008821246", "http://irail.be/stations/NMBS/008821337"], ["http://irail.be/stations/NMBS/008893542", "http://irail.be/stations/NMBS/008893559"], ["http://irail.be/stations/NMBS/008772319", "http://irail.be/stations/NMBS/008866407"], ["http://irail.be/stations/NMBS/008863438", "http://irail.be/stations/NMBS/008864931"], ["http://irail.be/stations/NMBS/008814209", "http://irail.be/stations/NMBS/008882701"], ["http://irail.be/stations/NMBS/008811742", "http://irail.be/stations/NMBS/008811759"], ["http://irail.be/stations/NMBS/008866605", "http://irail.be/stations/NMBS/008866654"], ["http://irail.be/stations/NMBS/008842051", "http://irail.be/stations/NMBS/008844271"], ["http://irail.be/stations/NMBS/008811445", "http://irail.be/stations/NMBS/008811460"], ["http://irail.be/stations/NMBS/008200132", "http://irail.be/stations/NMBS/008865128"], ["http://irail.be/stations/NMBS/008811544", "http://irail.be/stations/NMBS/008872611"], ["http://irail.be/stations/NMBS/008842002", "http://irail.be/stations/NMBS/008842036"], ["http://irail.be/stations/NMBS/008200940", "http://irail.be/stations/NMBS/008866662"], ["http://irail.be/stations/NMBS/008871514", "http://irail.be/stations/NMBS/008871852"], ["http://irail.be/stations/NMBS/008833605", "http://irail.be/stations/NMBS/008833670"], ["http://irail.be/stations/NMBS/008841319", "http://irail.be/stations/NMBS/008843158"], ["http://irail.be/stations/NMBS/008774172", "http://irail.be/stations/NMBS/008775605"], ["http://irail.be/stations/NMBS/008831807", "http://irail.be/stations/NMBS/008841400"], ["http://irail.be/stations/NMBS/008010184", "http://irail.be/stations/NMBS/008010316"], ["http://irail.be/stations/NMBS/008892106", "http://irail.be/stations/NMBS/008892601"], ["http://irail.be/stations/NMBS/008864410", "http://irail.be/stations/NMBS/008865003"], ["http://irail.be/stations/NMBS/008811262", "http://irail.be/stations/NMBS/008811270"], ["http://irail.be/stations/NMBS/008892304", "http://irail.be/stations/NMBS/008892338"], ["http://irail.be/stations/NMBS/008833001", "http://irail.be/stations/NMBS/008833050"], ["http://irail.be/stations/NMBS/008843331", "http://irail.be/stations/NMBS/008864451"], ["http://irail.be/stations/NMBS/008822848", "http://irail.be/stations/NMBS/008824240"], ["http://irail.be/stations/NMBS/008814118", "http://irail.be/stations/NMBS/008814373"], ["http://irail.be/stations/NMBS/008811254", "http://irail.be/stations/NMBS/008822277"], ["http://irail.be/stations/NMBS/008821022", "http://irail.be/stations/NMBS/008821030"], ["http://irail.be/stations/NMBS/008891314", "http://irail.be/stations/NMBS/008892205"], ["http://irail.be/stations/NMBS/008811403", "http://irail.be/stations/NMBS/008811411"], ["http://irail.be/stations/NMBS/008015588", "http://irail.be/stations/NMBS/008200101"], ["http://irail.be/stations/NMBS/008812120", "http://irail.be/stations/NMBS/008822111"], ["http://irail.be/stations/NMBS/008814159", "http://irail.be/stations/NMBS/008814449"], ["http://irail.be/stations/NMBS/008814241", "http://irail.be/stations/NMBS/008814415"], ["http://irail.be/stations/NMBS/008831781", "http://irail.be/stations/NMBS/008832250"], ["http://irail.be/stations/NMBS/008833050", "http://irail.be/stations/NMBS/008833126"], ["http://irail.be/stations/NMBS/008821667", "http://irail.be/stations/NMBS/008821725"], ["http://irail.be/stations/NMBS/008866118", "http://irail.be/stations/NMBS/008866662"], ["http://irail.be/stations/NMBS/008010184", "http://irail.be/stations/NMBS/008039904"], ["http://irail.be/stations/NMBS/008843331", "http://irail.be/stations/NMBS/008864436"], ["http://irail.be/stations/NMBS/008886066", "http://irail.be/stations/NMBS/008886561"], ["http://irail.be/stations/NMBS/008841558", "http://irail.be/stations/NMBS/008843133"], ["http://irail.be/stations/NMBS/008814118", "http://irail.be/stations/NMBS/008815040"], ["http://irail.be/stations/NMBS/008719203", "http://irail.be/stations/NMBS/008866530"], ["http://irail.be/stations/NMBS/008885522", "http://irail.be/stations/NMBS/008892908"], ["http://irail.be/stations/NMBS/008891033", "http://irail.be/stations/NMBS/008891660"], ["http://irail.be/stations/NMBS/008885753", "http://irail.be/stations/NMBS/008889045"], ["http://irail.be/stations/NMBS/008727100", "http://irail.be/stations/NMBS/008778110"], ["http://irail.be/stations/NMBS/008400131", "http://irail.be/stations/NMBS/008832615"], ["http://irail.be/stations/NMBS/008891405", "http://irail.be/stations/NMBS/008891611"], ["http://irail.be/stations/NMBS/008821006", "http://irail.be/stations/NMBS/008821030"], ["http://irail.be/stations/NMBS/008833050", "http://irail.be/stations/NMBS/008833308"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821634"], ["http://irail.be/stations/NMBS/008821816", "http://irail.be/stations/NMBS/008822475"], ["http://irail.be/stations/NMBS/008843307", "http://irail.be/stations/NMBS/008843323"], ["http://irail.be/stations/NMBS/008842655", "http://irail.be/stations/NMBS/008843067"], ["http://irail.be/stations/NMBS/008814175", "http://irail.be/stations/NMBS/008814258"], ["http://irail.be/stations/NMBS/008400424", "http://irail.be/stations/NMBS/008846201"], ["http://irail.be/stations/NMBS/008863008", "http://irail.be/stations/NMBS/008863354"], ["http://irail.be/stations/NMBS/008844503", "http://irail.be/stations/NMBS/008844545"], ["http://irail.be/stations/NMBS/008864451", "http://irail.be/stations/NMBS/008865128"], ["http://irail.be/stations/NMBS/008200130", "http://irail.be/stations/NMBS/008200520"], ["http://irail.be/stations/NMBS/008811130", "http://irail.be/stations/NMBS/008811163"], ["http://irail.be/stations/NMBS/008719203", "http://irail.be/stations/NMBS/008869088"], ["http://irail.be/stations/NMBS/008891405", "http://irail.be/stations/NMBS/008891629"], ["http://irail.be/stations/NMBS/008872520", "http://irail.be/stations/NMBS/008874609"], ["http://irail.be/stations/NMBS/008718201", "http://irail.be/stations/NMBS/008718206"], ["http://irail.be/stations/NMBS/008822343", "http://irail.be/stations/NMBS/008822426"], ["http://irail.be/stations/NMBS/008015588", "http://irail.be/stations/NMBS/008721222"], ["http://irail.be/stations/NMBS/008814241", "http://irail.be/stations/NMBS/008814308"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821436"], ["http://irail.be/stations/NMBS/008844230", "http://irail.be/stations/NMBS/008844321"], ["http://irail.be/stations/NMBS/008842655", "http://irail.be/stations/NMBS/008842663"], ["http://irail.be/stations/NMBS/008841319", "http://irail.be/stations/NMBS/008841731"], ["http://irail.be/stations/NMBS/008893542", "http://irail.be/stations/NMBS/008895463"], ["http://irail.be/stations/NMBS/008844503", "http://irail.be/stations/NMBS/008849023"], ["http://irail.be/stations/NMBS/008814357", "http://irail.be/stations/NMBS/008814365"], ["http://irail.be/stations/NMBS/008811676", "http://irail.be/stations/NMBS/008861523"], ["http://irail.be/stations/NMBS/008871175", "http://irail.be/stations/NMBS/008872009"], ["http://irail.be/stations/NMBS/008863453", "http://irail.be/stations/NMBS/008863461"], ["http://irail.be/stations/NMBS/008872413", "http://irail.be/stations/NMBS/008872579"], ["http://irail.be/stations/NMBS/008881570", "http://irail.be/stations/NMBS/008884566"], ["http://irail.be/stations/NMBS/008863818", "http://irail.be/stations/NMBS/008863867"], ["http://irail.be/stations/NMBS/008841665", "http://irail.be/stations/NMBS/008841673"], ["http://irail.be/stations/NMBS/008861168", "http://irail.be/stations/NMBS/008874724"], ["http://irail.be/stations/NMBS/008871225", "http://irail.be/stations/NMBS/008871308"], ["http://irail.be/stations/NMBS/008821063", "http://irail.be/stations/NMBS/008821196"], ["http://irail.be/stations/NMBS/008871381", "http://irail.be/stations/NMBS/008882701"], ["http://irail.be/stations/NMBS/008844230", "http://irail.be/stations/NMBS/008844313"], ["http://irail.be/stations/NMBS/008821832", "http://irail.be/stations/NMBS/008833233"], ["http://irail.be/stations/NMBS/008814209", "http://irail.be/stations/NMBS/008871381"], ["http://irail.be/stations/NMBS/008822715", "http://irail.be/stations/NMBS/008824240"], ["http://irail.be/stations/NMBS/008843430", "http://irail.be/stations/NMBS/008863404"], ["http://irail.be/stations/NMBS/008862018", "http://irail.be/stations/NMBS/008866142"], ["http://irail.be/stations/NMBS/008893583", "http://irail.be/stations/NMBS/008895067"], ["http://irail.be/stations/NMBS/008893039", "http://irail.be/stations/NMBS/008893047"], ["http://irail.be/stations/NMBS/008881190", "http://irail.be/stations/NMBS/008883436"], ["http://irail.be/stations/NMBS/008844503", "http://irail.be/stations/NMBS/008844644"], ["http://irail.be/stations/NMBS/008841400", "http://irail.be/stations/NMBS/008843307"], ["http://irail.be/stations/NMBS/008811544", "http://irail.be/stations/NMBS/008811718"], ["http://irail.be/stations/NMBS/008861135", "http://irail.be/stations/NMBS/008861440"], ["http://irail.be/stations/NMBS/008819406", "http://irail.be/stations/NMBS/008822269"], ["http://irail.be/stations/NMBS/008893062", "http://irail.be/stations/NMBS/008895257"], ["http://irail.be/stations/NMBS/008728683", "http://irail.be/stations/NMBS/008728710"], ["http://irail.be/stations/NMBS/008821717", "http://irail.be/stations/NMBS/008821964"], ["http://irail.be/stations/NMBS/008011068", "http://irail.be/stations/NMBS/008721202"], ["http://irail.be/stations/NMBS/008892627", "http://irail.be/stations/NMBS/008892635"], ["http://irail.be/stations/NMBS/008822343", "http://irail.be/stations/NMBS/008822608"], ["http://irail.be/stations/NMBS/008893047", "http://irail.be/stations/NMBS/008893567"], ["http://irail.be/stations/NMBS/008896800", "http://irail.be/stations/NMBS/008896909"], ["http://irail.be/stations/NMBS/008861424", "http://irail.be/stations/NMBS/008861432"], ["http://irail.be/stations/NMBS/008844255", "http://irail.be/stations/NMBS/008844321"], ["http://irail.be/stations/NMBS/008865565", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008893120", "http://irail.be/stations/NMBS/008894151"], ["http://irail.be/stations/NMBS/008845203", "http://irail.be/stations/NMBS/008845229"], ["http://irail.be/stations/NMBS/008892692", "http://irail.be/stations/NMBS/008895232"], ["http://irail.be/stations/NMBS/008778100", "http://irail.be/stations/NMBS/008778110"], ["http://irail.be/stations/NMBS/008886058", "http://irail.be/stations/NMBS/008886066"], ["http://irail.be/stations/NMBS/008895802", "http://irail.be/stations/NMBS/008895844"], ["http://irail.be/stations/NMBS/008812005", "http://irail.be/stations/NMBS/008812021"], ["http://irail.be/stations/NMBS/008845005", "http://irail.be/stations/NMBS/008865128"], ["http://irail.be/stations/NMBS/008400280", "http://irail.be/stations/NMBS/008894433"], ["http://irail.be/stations/NMBS/008774179", "http://irail.be/stations/NMBS/008775605"], ["http://irail.be/stations/NMBS/008775100", "http://irail.be/stations/NMBS/008777300"], ["http://irail.be/stations/NMBS/008883022", "http://irail.be/stations/NMBS/008883808"], ["http://irail.be/stations/NMBS/008886009", "http://irail.be/stations/NMBS/008892908"], ["http://irail.be/stations/NMBS/008200101", "http://irail.be/stations/NMBS/008200120"], ["http://irail.be/stations/NMBS/008866175", "http://irail.be/stations/NMBS/008866258"], ["http://irail.be/stations/NMBS/008865003", "http://irail.be/stations/NMBS/008866258"], ["http://irail.be/stations/NMBS/008811213", "http://irail.be/stations/NMBS/008819406"], ["http://irail.be/stations/NMBS/008871712", "http://irail.be/stations/NMBS/008882248"], ["http://irail.be/stations/NMBS/008841004", "http://irail.be/stations/NMBS/008842002"], ["http://irail.be/stations/NMBS/008844008", "http://irail.be/stations/NMBS/008844347"], ["http://irail.be/stations/NMBS/008010316", "http://irail.be/stations/NMBS/008015345"], ["http://irail.be/stations/NMBS/008811718", "http://irail.be/stations/NMBS/008811726"], ["http://irail.be/stations/NMBS/008872553", "http://irail.be/stations/NMBS/008872587"], ["http://irail.be/stations/NMBS/008863842", "http://irail.be/stations/NMBS/008865615"], ["http://irail.be/stations/NMBS/008821717", "http://irail.be/stations/NMBS/008821865"], ["http://irail.be/stations/NMBS/008881000", "http://irail.be/stations/NMBS/008881315"], ["http://irail.be/stations/NMBS/008200940", "http://irail.be/stations/NMBS/008719203"], ["http://irail.be/stations/NMBS/008812153", "http://irail.be/stations/NMBS/008812260"], ["http://irail.be/stations/NMBS/008400424", "http://irail.be/stations/NMBS/008400426"], ["http://irail.be/stations/NMBS/008886504", "http://irail.be/stations/NMBS/008886553"], ["http://irail.be/stations/NMBS/008879004", "http://irail.be/stations/NMBS/008881406"], ["http://irail.be/stations/NMBS/008883113", "http://irail.be/stations/NMBS/008883436"], ["http://irail.be/stations/NMBS/008200101", "http://irail.be/stations/NMBS/008200510"], ["http://irail.be/stations/NMBS/008711184", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008811460", "http://irail.be/stations/NMBS/008811510"], ["http://irail.be/stations/NMBS/008731388", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008842663", "http://irail.be/stations/NMBS/008842846"], ["http://irail.be/stations/NMBS/008893534", "http://irail.be/stations/NMBS/008894201"], ["http://irail.be/stations/NMBS/008892601", "http://irail.be/stations/NMBS/008892734"], ["http://irail.be/stations/NMBS/008863842", "http://irail.be/stations/NMBS/008863867"], ["http://irail.be/stations/NMBS/008811270", "http://irail.be/stations/NMBS/008811288"], ["http://irail.be/stations/NMBS/008872009", "http://irail.be/stations/NMBS/008872066"], ["http://irail.be/stations/NMBS/008895489", "http://irail.be/stations/NMBS/008895877"], ["http://irail.be/stations/NMBS/008015345", "http://irail.be/stations/NMBS/008015458"], ["http://irail.be/stations/NMBS/008833308", "http://irail.be/stations/NMBS/008861432"], ["http://irail.be/stations/NMBS/008892031", "http://irail.be/stations/NMBS/008893260"], ["http://irail.be/stations/NMBS/008845146", "http://irail.be/stations/NMBS/008864469"], ["http://irail.be/stations/NMBS/008883436", "http://irail.be/stations/NMBS/008886561"], ["http://irail.be/stations/NMBS/008866175", "http://irail.be/stations/NMBS/008866845"], ["http://irail.be/stations/NMBS/008821196", "http://irail.be/stations/NMBS/008824232"], ["http://irail.be/stations/NMBS/008821519", "http://irail.be/stations/NMBS/008821543"], ["http://irail.be/stations/NMBS/008843133", "http://irail.be/stations/NMBS/008847258"], ["http://irail.be/stations/NMBS/008842689", "http://irail.be/stations/NMBS/008842754"], ["http://irail.be/stations/NMBS/008811007", "http://irail.be/stations/NMBS/008811163"], ["http://irail.be/stations/NMBS/008895505", "http://irail.be/stations/NMBS/008895612"], ["http://irail.be/stations/NMBS/008011068", "http://irail.be/stations/NMBS/008032572"], ["http://irail.be/stations/NMBS/008864006", "http://irail.be/stations/NMBS/008864832"], ["http://irail.be/stations/NMBS/008842036", "http://irail.be/stations/NMBS/008842630"], ["http://irail.be/stations/NMBS/008863354", "http://irail.be/stations/NMBS/008864964"], ["http://irail.be/stations/NMBS/008400180", "http://irail.be/stations/NMBS/008400561"], ["http://irail.be/stations/NMBS/008865565", "http://irail.be/stations/NMBS/008866845"], ["http://irail.be/stations/NMBS/008891157", "http://irail.be/stations/NMBS/008893708"], ["http://irail.be/stations/NMBS/008811411", "http://irail.be/stations/NMBS/008814464"], ["http://irail.be/stations/NMBS/008833266", "http://irail.be/stations/NMBS/008833274"], ["http://irail.be/stations/NMBS/008831401", "http://irail.be/stations/NMBS/008833449"], ["http://irail.be/stations/NMBS/008895455", "http://irail.be/stations/NMBS/008895745"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008894821"], ["http://irail.be/stations/NMBS/008882230", "http://irail.be/stations/NMBS/008882339"], ["http://irail.be/stations/NMBS/008812161", "http://irail.be/stations/NMBS/008893518"], ["http://irail.be/stations/NMBS/008884335", "http://irail.be/stations/NMBS/008884715"], ["http://irail.be/stations/NMBS/008776290", "http://irail.be/stations/NMBS/008776302"], ["http://irail.be/stations/NMBS/008891009", "http://irail.be/stations/NMBS/008891033"], ["http://irail.be/stations/NMBS/008881158", "http://irail.be/stations/NMBS/008881166"], ["http://irail.be/stations/NMBS/008886041", "http://irail.be/stations/NMBS/008886587"], ["http://irail.be/stations/NMBS/008200136", "http://irail.be/stations/NMBS/008849072"], ["http://irail.be/stations/NMBS/008871605", "http://irail.be/stations/NMBS/008879004"], ["http://irail.be/stations/NMBS/008814126", "http://irail.be/stations/NMBS/008814449"], ["http://irail.be/stations/NMBS/008861200", "http://irail.be/stations/NMBS/008861515"], ["http://irail.be/stations/NMBS/008814241", "http://irail.be/stations/NMBS/008871332"], ["http://irail.be/stations/NMBS/008842838", "http://irail.be/stations/NMBS/008842853"], ["http://irail.be/stations/NMBS/008893534", "http://irail.be/stations/NMBS/008895067"], ["http://irail.be/stations/NMBS/008871100", "http://irail.be/stations/NMBS/008872066"], ["http://irail.be/stations/NMBS/008892254", "http://irail.be/stations/NMBS/008896909"], ["http://irail.be/stations/NMBS/008884335", "http://irail.be/stations/NMBS/008884350"], ["http://irail.be/stations/NMBS/008811106", "http://irail.be/stations/NMBS/008811163"], ["http://irail.be/stations/NMBS/008811163", "http://irail.be/stations/NMBS/008811197"], ["http://irail.be/stations/NMBS/008777300", "http://irail.be/stations/NMBS/008778100"], ["http://irail.be/stations/NMBS/008881505", "http://irail.be/stations/NMBS/008884335"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008821519"], ["http://irail.be/stations/NMBS/008210014", "http://irail.be/stations/NMBS/008719100"], ["http://irail.be/stations/NMBS/008865227", "http://irail.be/stations/NMBS/008865565"], ["http://irail.be/stations/NMBS/008864816", "http://irail.be/stations/NMBS/008864824"], ["http://irail.be/stations/NMBS/008895778", "http://irail.be/stations/NMBS/008895836"], ["http://irail.be/stations/NMBS/008844206", "http://irail.be/stations/NMBS/008844321"], ["http://irail.be/stations/NMBS/008775605", "http://irail.be/stations/NMBS/008775767"], ["http://irail.be/stations/NMBS/008832433", "http://irail.be/stations/NMBS/008833266"], ["http://irail.be/stations/NMBS/008892106", "http://irail.be/stations/NMBS/008892643"], ["http://irail.be/stations/NMBS/008811817", "http://irail.be/stations/NMBS/008861549"], ["http://irail.be/stations/NMBS/008891702", "http://irail.be/stations/NMBS/008892320"], ["http://irail.be/stations/NMBS/008885068", "http://irail.be/stations/NMBS/008885753"], ["http://irail.be/stations/NMBS/008844644", "http://irail.be/stations/NMBS/008849023"], ["http://irail.be/stations/NMBS/008811742", "http://irail.be/stations/NMBS/008861523"], ["http://irail.be/stations/NMBS/008811304", "http://irail.be/stations/NMBS/008813003"], ["http://irail.be/stations/NMBS/008863503", "http://irail.be/stations/NMBS/008863818"], ["http://irail.be/stations/NMBS/008811528", "http://irail.be/stations/NMBS/008811536"], ["http://irail.be/stations/NMBS/008814142", "http://irail.be/stations/NMBS/008814159"], ["http://irail.be/stations/NMBS/008812112", "http://irail.be/stations/NMBS/008812146"], ["http://irail.be/stations/NMBS/008841434", "http://irail.be/stations/NMBS/008843323"], ["http://irail.be/stations/NMBS/008842846", "http://irail.be/stations/NMBS/008843240"], ["http://irail.be/stations/NMBS/008896115", "http://irail.be/stations/NMBS/008896925"], ["http://irail.be/stations/NMBS/008811197", "http://irail.be/stations/NMBS/008811205"], ["http://irail.be/stations/NMBS/008895208", "http://irail.be/stations/NMBS/008895240"], ["http://irail.be/stations/NMBS/008400219", "http://irail.be/stations/NMBS/008400424"], ["http://irail.be/stations/NMBS/008845146", "http://irail.be/stations/NMBS/008849072"], ["http://irail.be/stations/NMBS/008822053", "http://irail.be/stations/NMBS/008822251"], ["http://irail.be/stations/NMBS/008891553", "http://irail.be/stations/NMBS/008891645"], ["http://irail.be/stations/NMBS/008015458", "http://irail.be/stations/NMBS/008015588"], ["http://irail.be/stations/NMBS/008871811", "http://irail.be/stations/NMBS/008873379"], ["http://irail.be/stations/NMBS/008871829", "http://irail.be/stations/NMBS/008871837"], ["http://irail.be/stations/NMBS/008400131", "http://irail.be/stations/NMBS/008821907"], ["http://irail.be/stations/NMBS/008871837", "http://irail.be/stations/NMBS/008873379"], ["http://irail.be/stations/NMBS/008821600", "http://irail.be/stations/NMBS/008821634"], ["http://irail.be/stations/NMBS/008822251", "http://irail.be/stations/NMBS/008822269"], ["http://irail.be/stations/NMBS/008831039", "http://irail.be/stations/NMBS/008841434"], ["http://irail.be/stations/NMBS/008200100", "http://irail.be/stations/NMBS/008200101"], ["http://irail.be/stations/NMBS/008871415", "http://irail.be/stations/NMBS/008871514"], ["http://irail.be/stations/NMBS/008881166", "http://irail.be/stations/NMBS/008881315"], ["http://irail.be/stations/NMBS/008881174", "http://irail.be/stations/NMBS/008883121"], ["http://irail.be/stations/NMBS/008864436", "http://irail.be/stations/NMBS/008865110"], ["http://irail.be/stations/NMBS/008841319", "http://irail.be/stations/NMBS/008843224"], ["http://irail.be/stations/NMBS/008728105", "http://irail.be/stations/NMBS/008728654"], ["http://irail.be/stations/NMBS/007015440", "http://irail.be/stations/NMBS/008400280"], ["http://irail.be/stations/NMBS/008728671", "http://irail.be/stations/NMBS/008728686"], ["http://irail.be/stations/NMBS/008728686", "http://irail.be/stations/NMBS/008889045"], ["http://irail.be/stations/NMBS/008814001", "http://irail.be/stations/NMBS/008815040"], ["http://irail.be/stations/NMBS/008811197", "http://irail.be/stations/NMBS/008811403"], ["http://irail.be/stations/NMBS/008400219", "http://irail.be/stations/NMBS/008400426"], ["http://irail.be/stations/NMBS/008774176", "http://irail.be/stations/NMBS/008774177"], ["http://irail.be/stations/NMBS/008881463", "http://irail.be/stations/NMBS/008882206"], ["http://irail.be/stations/NMBS/008881562", "http://irail.be/stations/NMBS/008884004"], ["http://irail.be/stations/NMBS/008812260", "http://irail.be/stations/NMBS/008895091"], ["http://irail.be/stations/NMBS/008822814", "http://irail.be/stations/NMBS/008822848"], ["http://irail.be/stations/NMBS/008892007", "http://irail.be/stations/NMBS/008893211"], ["http://irail.be/stations/NMBS/008896396", "http://irail.be/stations/NMBS/008896412"], ["http://irail.be/stations/NMBS/008814209", "http://irail.be/stations/NMBS/008814241"], ["http://irail.be/stations/NMBS/008811825", "http://irail.be/stations/NMBS/008861549"], ["http://irail.be/stations/NMBS/008775500", "http://irail.be/stations/NMBS/008775544"], ["http://irail.be/stations/NMBS/008812062", "http://irail.be/stations/NMBS/008812112"], ["http://irail.be/stations/NMBS/008719100", "http://irail.be/stations/NMBS/008721222"], ["http://irail.be/stations/NMBS/008015588", "http://irail.be/stations/NMBS/008200128"], ["http://irail.be/stations/NMBS/008814134", "http://irail.be/stations/NMBS/008814449"], ["http://irail.be/stations/NMBS/008841202", "http://irail.be/stations/NMBS/008841673"], ["http://irail.be/stations/NMBS/008811528", "http://irail.be/stations/NMBS/008811726"], ["http://irail.be/stations/NMBS/008881174", "http://irail.be/stations/NMBS/008881406"], ["http://irail.be/stations/NMBS/008777320", "http://irail.be/stations/NMBS/008778400"], ["http://irail.be/stations/NMBS/008883311", "http://irail.be/stations/NMBS/008883436"], ["http://irail.be/stations/NMBS/008871381", "http://irail.be/stations/NMBS/008871514"], ["http://irail.be/stations/NMBS/008866654", "http://irail.be/stations/NMBS/008866662"], ["http://irail.be/stations/NMBS/008892734", "http://irail.be/stations/NMBS/008896230"], ["http://irail.be/stations/NMBS/008873312", "http://irail.be/stations/NMBS/008874054"], ["http://irail.be/stations/NMBS/008893542", "http://irail.be/stations/NMBS/008894201"], ["http://irail.be/stations/NMBS/008833670", "http://irail.be/stations/NMBS/008863446"], ["http://irail.be/stations/NMBS/008814209", "http://irail.be/stations/NMBS/008883808"], ["http://irail.be/stations/NMBS/008881505", "http://irail.be/stations/NMBS/008881562"], ["http://irail.be/stations/NMBS/008871688", "http://irail.be/stations/NMBS/008873379"], ["http://irail.be/stations/NMBS/008866530", "http://irail.be/stations/NMBS/008866662"], ["http://irail.be/stations/NMBS/008772202", "http://irail.be/stations/NMBS/008772319"], ["http://irail.be/stations/NMBS/008821865", "http://irail.be/stations/NMBS/008833233"], ["http://irail.be/stations/NMBS/008821048", "http://irail.be/stations/NMBS/008821196"], ["http://irail.be/stations/NMBS/008842846", "http://irail.be/stations/NMBS/008843208"], ["http://irail.be/stations/NMBS/008885068", "http://irail.be/stations/NMBS/008896230"], ["http://irail.be/stations/NMBS/008774172", "http://irail.be/stations/NMBS/008775762"], ["http://irail.be/stations/NMBS/008841525", "http://irail.be/stations/NMBS/008842002"], ["http://irail.be/stations/NMBS/008891116", "http://irail.be/stations/NMBS/008892254"], ["http://irail.be/stations/NMBS/008892734", "http://irail.be/stations/NMBS/008896149"], ["http://irail.be/stations/NMBS/008832003", "http://irail.be/stations/NMBS/008832250"], ["http://irail.be/stations/NMBS/008881562", "http://irail.be/stations/NMBS/008881570"], ["http://irail.be/stations/NMBS/008886066", "http://irail.be/stations/NMBS/008886074"], ["http://irail.be/stations/NMBS/008866605", "http://irail.be/stations/NMBS/008866662"], ["http://irail.be/stations/NMBS/008891314", "http://irail.be/stations/NMBS/008891702"], ["http://irail.be/stations/NMBS/008874716", "http://irail.be/stations/NMBS/008874724"], ["http://irail.be/stations/NMBS/008831039", "http://irail.be/stations/NMBS/008831112"], ["http://irail.be/stations/NMBS/008812229", "http://irail.be/stations/NMBS/008814365"], ["http://irail.be/stations/NMBS/008864436", "http://irail.be/stations/NMBS/008864451"], ["http://irail.be/stations/NMBS/008821907", "http://irail.be/stations/NMBS/008832409"], ["http://irail.be/stations/NMBS/008841319", "http://irail.be/stations/NMBS/008843208"], ["http://irail.be/stations/NMBS/008774172", "http://irail.be/stations/NMBS/008774177"], ["http://irail.be/stations/NMBS/008811403", "http://irail.be/stations/NMBS/008813037"], ["http://irail.be/stations/NMBS/008814340", "http://irail.be/stations/NMBS/008814357"], ["http://irail.be/stations/NMBS/008841525", "http://irail.be/stations/NMBS/008841558"], ["http://irail.be/stations/NMBS/008895570", "http://irail.be/stations/NMBS/008895711"], ["http://irail.be/stations/NMBS/008821311", "http://irail.be/stations/NMBS/008821600"], ["http://irail.be/stations/NMBS/008892304", "http://irail.be/stations/NMBS/008892320"], ["http://irail.be/stations/NMBS/008884640", "http://irail.be/stations/NMBS/008886009"], ["http://irail.be/stations/NMBS/008822228", "http://irail.be/stations/NMBS/008822343"], ["http://irail.be/stations/NMBS/008871688", "http://irail.be/stations/NMBS/008871811"], ["http://irail.be/stations/NMBS/008400280", "http://irail.be/stations/NMBS/008400530"], ["http://irail.be/stations/NMBS/008893062", "http://irail.be/stations/NMBS/008893070"], ["http://irail.be/stations/NMBS/008861119", "http://irail.be/stations/NMBS/008863008"], ["http://irail.be/stations/NMBS/008841202", "http://irail.be/stations/NMBS/008841319"], ["http://irail.be/stations/NMBS/008891165", "http://irail.be/stations/NMBS/008892106"], ["http://irail.be/stations/NMBS/008844628", "http://irail.be/stations/NMBS/008845146"], ["http://irail.be/stations/NMBS/008814167", "http://irail.be/stations/NMBS/008814175"], ["http://irail.be/stations/NMBS/008863867", "http://irail.be/stations/NMBS/008875002"], ["http://irail.be/stations/NMBS/008731388", "http://irail.be/stations/NMBS/008892338"], ["http://irail.be/stations/NMBS/008728673", "http://irail.be/stations/NMBS/008889011"], ["http://irail.be/stations/NMBS/008893039", "http://irail.be/stations/NMBS/008894151"], ["http://irail.be/stations/NMBS/008891140", "http://irail.be/stations/NMBS/008893708"], ["http://irail.be/stations/NMBS/008832003", "http://irail.be/stations/NMBS/008832565"], ["http://irail.be/stations/NMBS/008200130", "http://irail.be/stations/NMBS/008200133"], ["http://irail.be/stations/NMBS/008893401", "http://irail.be/stations/NMBS/008893518"], ["http://irail.be/stations/NMBS/008884632", "http://irail.be/stations/NMBS/008886041"], ["http://irail.be/stations/NMBS/008811171", "http://irail.be/stations/NMBS/008811197"], ["http://irail.be/stations/NMBS/008891033", "http://irail.be/stations/NMBS/008891652"], ["http://irail.be/stations/NMBS/008843323", "http://irail.be/stations/NMBS/008864436"], ["http://irail.be/stations/NMBS/008821022", "http://irail.be/stations/NMBS/008821154"], ["http://irail.be/stations/NMBS/008821071", "http://irail.be/stations/NMBS/008821105"], ["http://irail.be/stations/NMBS/008863446", "http://irail.be/stations/NMBS/008863461"], ["http://irail.be/stations/NMBS/008895430", "http://irail.be/stations/NMBS/008895448"], ["http://irail.be/stations/NMBS/008871217", "http://irail.be/stations/NMBS/008871373"], ["http://irail.be/stations/NMBS/008814241", "http://irail.be/stations/NMBS/008814258"], ["http://irail.be/stations/NMBS/008821105", "http://irail.be/stations/NMBS/008821709"], ["http://irail.be/stations/NMBS/008841665", "http://irail.be/stations/NMBS/008843901"], ["http://irail.be/stations/NMBS/008821709", "http://irail.be/stations/NMBS/008821857"], ["http://irail.be/stations/NMBS/008884319", "http://irail.be/stations/NMBS/008884632"], ["http://irail.be/stations/NMBS/008871308", "http://irail.be/stations/NMBS/008872413"], ["http://irail.be/stations/NMBS/008896008", "http://irail.be/stations/NMBS/008896230"], ["http://irail.be/stations/NMBS/008821196", "http://irail.be/stations/NMBS/008894821"], ["http://irail.be/stations/NMBS/008864410", "http://irail.be/stations/NMBS/008864436"], ["http://irail.be/stations/NMBS/008872520", "http://irail.be/stations/NMBS/008874583"], ["http://irail.be/stations/NMBS/008821600", "http://irail.be/stations/NMBS/008822459"], ["http://irail.be/stations/NMBS/008863818", "http://irail.be/stations/NMBS/008863834"], ["http://irail.be/stations/NMBS/008812047", "http://irail.be/stations/NMBS/008812211"], ["http://irail.be/stations/NMBS/008866845", "http://irail.be/stations/NMBS/008875127"], ["http://irail.be/stations/NMBS/008861150", "http://irail.be/stations/NMBS/008874724"], ["http://irail.be/stations/NMBS/008822475", "http://irail.be/stations/NMBS/008822517"], ["http://irail.be/stations/NMBS/008841525", "http://irail.be/stations/NMBS/008843901"], ["http://irail.be/stations/NMBS/008895620", "http://irail.be/stations/NMBS/008895745"], ["http://irail.be/stations/NMBS/008863115", "http://irail.be/stations/NMBS/008863354"], ["http://irail.be/stations/NMBS/008814449", "http://irail.be/stations/NMBS/008814464"], ["http://irail.be/stations/NMBS/008814357", "http://irail.be/stations/NMBS/008814423"], ["http://irail.be/stations/NMBS/008811189", "http://irail.be/stations/NMBS/008811213"], ["http://irail.be/stations/NMBS/008861127", "http://irail.be/stations/NMBS/008861440"], ["http://irail.be/stations/NMBS/008842648", "http://irail.be/stations/NMBS/008842655"], ["http://irail.be/stations/NMBS/008821444", "http://irail.be/stations/NMBS/008821519"], ["http://irail.be/stations/NMBS/008881570", "http://irail.be/stations/NMBS/008884541"], ["http://irail.be/stations/NMBS/008861143", "http://irail.be/stations/NMBS/008873122"], ["http://irail.be/stations/NMBS/008891157", "http://irail.be/stations/NMBS/008892288"], ["http://irail.be/stations/NMBS/008844628", "http://irail.be/stations/NMBS/008849072"], ["http://irail.be/stations/NMBS/008871225", "http://irail.be/stations/NMBS/008871373"], ["http://irail.be/stations/NMBS/008400426", "http://irail.be/stations/NMBS/008849023"], ["http://irail.be/stations/NMBS/008811429", "http://irail.be/stations/NMBS/008814472"], ["http://irail.be/stations/NMBS/008728654", "http://irail.be/stations/NMBS/008896396"], ["http://irail.be/stations/NMBS/008832045", "http://irail.be/stations/NMBS/008832409"], ["http://irail.be/stations/NMBS/008814365", "http://irail.be/stations/NMBS/008814373"], ["http://irail.be/stations/NMBS/008841608", "http://irail.be/stations/NMBS/008841665"], ["http://irail.be/stations/NMBS/008862018", "http://irail.be/stations/NMBS/008866118"], ["http://irail.be/stations/NMBS/008776302", "http://irail.be/stations/NMBS/008777500"], ["http://irail.be/stations/NMBS/008842754", "http://irail.be/stations/NMBS/008844404"], ["http://irail.be/stations/NMBS/008814332", "http://irail.be/stations/NMBS/008883808"], ["http://irail.be/stations/NMBS/008884632", "http://irail.be/stations/NMBS/008884640"], ["http://irail.be/stations/NMBS/008863842", "http://irail.be/stations/NMBS/008864824"], ["http://irail.be/stations/NMBS/008892627", "http://irail.be/stations/NMBS/008892692"], ["http://irail.be/stations/NMBS/008814134", "http://irail.be/stations/NMBS/008814142"], ["http://irail.be/stations/NMBS/008821030", "http://irail.be/stations/NMBS/008821063"], ["http://irail.be/stations/NMBS/008200101", "http://irail.be/stations/NMBS/008200102"], ["http://irail.be/stations/NMBS/008811510", "http://irail.be/stations/NMBS/008811528"], ["http://irail.be/stations/NMBS/008718206", "http://irail.be/stations/NMBS/008774164"], ["http://irail.be/stations/NMBS/008871605", "http://irail.be/stations/NMBS/008871662"], ["http://irail.be/stations/NMBS/008821337", "http://irail.be/stations/NMBS/008821634"], ["http://irail.be/stations/NMBS/008811270", "http://irail.be/stations/NMBS/008833134"], ["http://irail.be/stations/NMBS/008842754", "http://irail.be/stations/NMBS/008845229"], ["http://irail.be/stations/NMBS/008892106", "http://irail.be/stations/NMBS/008896149"], ["http://irail.be/stations/NMBS/008821451", "http://irail.be/stations/NMBS/008821519"], ["http://irail.be/stations/NMBS/008895802", "http://irail.be/stations/NMBS/008895836"], ["http://irail.be/stations/NMBS/008864956", "http://irail.be/stations/NMBS/008864964"], ["http://irail.be/stations/NMBS/008891009", "http://irail.be/stations/NMBS/008891116"], ["http://irail.be/stations/NMBS/008885753", "http://irail.be/stations/NMBS/008896008"], ["http://irail.be/stations/NMBS/008400131", "http://irail.be/stations/NMBS/008400526"], ["http://irail.be/stations/NMBS/008400280", "http://irail.be/stations/NMBS/008894508"], ["http://irail.be/stations/NMBS/008718206", "http://irail.be/stations/NMBS/008719203"], ["http://irail.be/stations/NMBS/008814209", "http://irail.be/stations/NMBS/008871373"], ["http://irail.be/stations/NMBS/008866175", "http://irail.be/stations/NMBS/008866407"], ["http://irail.be/stations/NMBS/008892452", "http://irail.be/stations/NMBS/008896735"], ["http://irail.be/stations/NMBS/008873007", "http://irail.be/stations/NMBS/008873320"], ["http://irail.be/stations/NMBS/008871712", "http://irail.be/stations/NMBS/008882339"], ["http://irail.be/stations/NMBS/008842663", "http://irail.be/stations/NMBS/008843166"], ["http://irail.be/stations/NMBS/008844008", "http://irail.be/stations/NMBS/008844339"], ["http://irail.be/stations/NMBS/008829009", "http://irail.be/stations/NMBS/008894748"], ["http://irail.be/stations/NMBS/008811601", "http://irail.be/stations/NMBS/008811676"], ["http://irail.be/stations/NMBS/008872553", "http://irail.be/stations/NMBS/008872611"], ["http://irail.be/stations/NMBS/008881000", "http://irail.be/stations/NMBS/008881406"], ["http://irail.be/stations/NMBS/008831310", "http://irail.be/stations/NMBS/008841459"], ["http://irail.be/stations/NMBS/008775100", "http://irail.be/stations/NMBS/008775500"], ["http://irail.be/stations/NMBS/008812252", "http://irail.be/stations/NMBS/008812260"], ["http://irail.be/stations/NMBS/008886504", "http://irail.be/stations/NMBS/008886546"], ["http://irail.be/stations/NMBS/008832243", "http://irail.be/stations/NMBS/008832334"], ["http://irail.be/stations/NMBS/008731896", "http://irail.be/stations/NMBS/008777500"], ["http://irail.be/stations/NMBS/008821857", "http://irail.be/stations/NMBS/008821865"], ["http://irail.be/stations/NMBS/008883113", "http://irail.be/stations/NMBS/008883311"], ["http://irail.be/stations/NMBS/008886546", "http://irail.be/stations/NMBS/008886553"], ["http://irail.be/stations/NMBS/008832227", "http://irail.be/stations/NMBS/008832243"], ["http://irail.be/stations/NMBS/008822160", "http://irail.be/stations/NMBS/008894433"], ["http://irail.be/stations/NMBS/008829009", "http://irail.be/stations/NMBS/008894714"], ["http://irail.be/stations/NMBS/008895612", "http://irail.be/stations/NMBS/008895711"], ["http://irail.be/stations/NMBS/008894672", "http://irail.be/stations/NMBS/008894714"], ["http://irail.be/stations/NMBS/008892601", "http://irail.be/stations/NMBS/008892908"], ["http://irail.be/stations/NMBS/008863842", "http://irail.be/stations/NMBS/008864337"], ["http://irail.be/stations/NMBS/008812021", "http://irail.be/stations/NMBS/008822053"], ["http://irail.be/stations/NMBS/008833308", "http://irail.be/stations/NMBS/008861424"], ["http://irail.be/stations/NMBS/008892056", "http://irail.be/stations/NMBS/008892650"], ["http://irail.be/stations/NMBS/008883436", "http://irail.be/stations/NMBS/008886553"], ["http://irail.be/stations/NMBS/008844057", "http://irail.be/stations/NMBS/008844545"], ["http://irail.be/stations/NMBS/008831138", "http://irail.be/stations/NMBS/008841731"], ["http://irail.be/stations/NMBS/008821857", "http://irail.be/stations/NMBS/008833233"], ["http://irail.be/stations/NMBS/008881406", "http://irail.be/stations/NMBS/008881562"], ["http://irail.be/stations/NMBS/008842002", "http://irail.be/stations/NMBS/008847258"], ["http://irail.be/stations/NMBS/008842689", "http://irail.be/stations/NMBS/008842705"], ["http://irail.be/stations/NMBS/007015400", "http://irail.be/stations/NMBS/008400280"], ["http://irail.be/stations/NMBS/008895463", "http://irail.be/stations/NMBS/008895877"], ["http://irail.be/stations/NMBS/008861523", "http://irail.be/stations/NMBS/008861531"], ["http://irail.be/stations/NMBS/008864006", "http://irail.be/stations/NMBS/008864824"], ["http://irail.be/stations/NMBS/008885001", "http://irail.be/stations/NMBS/008892908"], ["http://irail.be/stations/NMBS/008893559", "http://irail.be/stations/NMBS/008894151"], ["http://irail.be/stations/NMBS/008842036", "http://irail.be/stations/NMBS/008842051"], ["http://irail.be/stations/NMBS/008811510", "http://irail.be/stations/NMBS/008814266"], ["http://irail.be/stations/NMBS/008866407", "http://irail.be/stations/NMBS/008866845"], ["http://irail.be/stations/NMBS/008895844", "http://irail.be/stations/NMBS/008895851"], ["http://irail.be/stations/NMBS/008015458", "http://irail.be/stations/NMBS/008200134"], ["http://irail.be/stations/NMBS/008892692", "http://irail.be/stations/NMBS/008893070"], ["http://irail.be/stations/NMBS/008861200", "http://irail.be/stations/NMBS/008861317"], ["http://irail.be/stations/NMBS/008400424", "http://irail.be/stations/NMBS/008831765"], ["http://irail.be/stations/NMBS/008842853", "http://irail.be/stations/NMBS/008864451"], ["http://irail.be/stations/NMBS/008861440", "http://irail.be/stations/NMBS/008863008"], ["http://irail.be/stations/NMBS/008822160", "http://irail.be/stations/NMBS/008893443"], ["http://irail.be/stations/NMBS/008893013", "http://irail.be/stations/NMBS/008893039"], ["http://irail.be/stations/NMBS/008884335", "http://irail.be/stations/NMBS/008884855"], ["http://irail.be/stations/NMBS/008863503", "http://irail.be/stations/NMBS/008864931"], ["http://irail.be/stations/NMBS/008864352", "http://irail.be/stations/NMBS/008864832"], ["http://irail.be/stations/NMBS/008892205", "http://irail.be/stations/NMBS/008892403"], ["http://irail.be/stations/NMBS/008500010", "http://irail.be/stations/NMBS/008721202"], ["http://irail.be/stations/NMBS/008893567", "http://irail.be/stations/NMBS/008894151"], ["http://irail.be/stations/NMBS/008892056", "http://irail.be/stations/NMBS/008893260"], ["http://irail.be/stations/NMBS/008861143", "http://irail.be/stations/NMBS/008861150"], ["http://irail.be/stations/NMBS/008881463", "http://irail.be/stations/NMBS/008882362"], ["http://irail.be/stations/NMBS/008884004", "http://irail.be/stations/NMBS/008884632"], ["http://irail.be/stations/NMBS/008865110", "http://irail.be/stations/NMBS/008866258"], ["http://irail.be/stations/NMBS/008731901", "http://irail.be/stations/NMBS/008775100"], ["http://irail.be/stations/NMBS/008811106", "http://irail.be/stations/NMBS/008811171"], ["http://irail.be/stations/NMBS/008861135", "http://irail.be/stations/NMBS/008863560"]] \ No newline at end of file diff --git a/src/analytics/footpaths/tec_pairs.json b/src/analytics/footpaths/tec_pairs.json deleted file mode 100644 index 0a4576a1..00000000 --- a/src/analytics/footpaths/tec_pairs.json +++ /dev/null @@ -1 +0,0 @@ -[["https://tec.openplanner.team/stops/Lgrbonn3", "https://tec.openplanner.team/stops/Lgrlimi4"], ["https://tec.openplanner.team/stops/LFEmala2", "https://tec.openplanner.team/stops/X597amb"], ["https://tec.openplanner.team/stops/Bosqgar2", "https://tec.openplanner.team/stops/Bosqsam2"], ["https://tec.openplanner.team/stops/LMApape1", "https://tec.openplanner.team/stops/LMAroch4"], ["https://tec.openplanner.team/stops/X793aka", "https://tec.openplanner.team/stops/X793aoa"], ["https://tec.openplanner.team/stops/Ltibord1", "https://tec.openplanner.team/stops/Ltimarr2"], ["https://tec.openplanner.team/stops/H3so166a", "https://tec.openplanner.team/stops/H3so166d"], ["https://tec.openplanner.team/stops/N517add", "https://tec.openplanner.team/stops/NR30aab"], ["https://tec.openplanner.team/stops/Cfmcoro2", "https://tec.openplanner.team/stops/Cfojoli1"], ["https://tec.openplanner.team/stops/Cfoermi1", "https://tec.openplanner.team/stops/Cfometr2"], ["https://tec.openplanner.team/stops/Cmazone1", "https://tec.openplanner.team/stops/Cmmplac3"], ["https://tec.openplanner.team/stops/Ldihusq2", "https://tec.openplanner.team/stops/Ldipl--5"], ["https://tec.openplanner.team/stops/Llgandr2", "https://tec.openplanner.team/stops/Llgbavr1"], ["https://tec.openplanner.team/stops/Bborche1", "https://tec.openplanner.team/stops/Bitrfsc1"], ["https://tec.openplanner.team/stops/N118aia", "https://tec.openplanner.team/stops/N118aib"], ["https://tec.openplanner.team/stops/LESmagr1", "https://tec.openplanner.team/stops/LESmart2"], ["https://tec.openplanner.team/stops/N553aac", "https://tec.openplanner.team/stops/N553aka"], ["https://tec.openplanner.team/stops/LhPhale1", "https://tec.openplanner.team/stops/LhPhale2"], ["https://tec.openplanner.team/stops/Bwavbva1", "https://tec.openplanner.team/stops/Bwavlon1"], ["https://tec.openplanner.team/stops/LVBmonu2", "https://tec.openplanner.team/stops/LVBvill1"], ["https://tec.openplanner.team/stops/Ccppn2", "https://tec.openplanner.team/stops/H2ch110b"], ["https://tec.openplanner.team/stops/H1br123b", "https://tec.openplanner.team/stops/H1vg358b"], ["https://tec.openplanner.team/stops/LEMfort1", "https://tec.openplanner.team/stops/LEMfort2"], ["https://tec.openplanner.team/stops/Lghpero2", "https://tec.openplanner.team/stops/Lghsimo1"], ["https://tec.openplanner.team/stops/LLbvith2", "https://tec.openplanner.team/stops/LrEkais2"], ["https://tec.openplanner.team/stops/LPTgran1", "https://tec.openplanner.team/stops/LPTgran2"], ["https://tec.openplanner.team/stops/X602ara", "https://tec.openplanner.team/stops/X653abb"], ["https://tec.openplanner.team/stops/Lemlacr2", "https://tec.openplanner.team/stops/Lemparc2"], ["https://tec.openplanner.team/stops/LbTkran1", "https://tec.openplanner.team/stops/LbTmons1"], ["https://tec.openplanner.team/stops/LMOchen1", "https://tec.openplanner.team/stops/LMOcorn1"], ["https://tec.openplanner.team/stops/X791aca", "https://tec.openplanner.team/stops/X791acb"], ["https://tec.openplanner.team/stops/H2tr245a", "https://tec.openplanner.team/stops/H2tr247b"], ["https://tec.openplanner.team/stops/N511aaa", "https://tec.openplanner.team/stops/N511aha"], ["https://tec.openplanner.team/stops/X354aia", "https://tec.openplanner.team/stops/X858agb"], ["https://tec.openplanner.team/stops/H2ha129b", "https://tec.openplanner.team/stops/H2ha129c"], ["https://tec.openplanner.team/stops/Cmltemp1", "https://tec.openplanner.team/stops/Cmlvpla1"], ["https://tec.openplanner.team/stops/X727aea", "https://tec.openplanner.team/stops/X746aab"], ["https://tec.openplanner.team/stops/H4bf108a", "https://tec.openplanner.team/stops/H4bn173a"], ["https://tec.openplanner.team/stops/Cctkais1", "https://tec.openplanner.team/stops/Ccurtra1"], ["https://tec.openplanner.team/stops/Crofrio2", "https://tec.openplanner.team/stops/Crorpai1"], ["https://tec.openplanner.team/stops/N152aba", "https://tec.openplanner.team/stops/N152ade"], ["https://tec.openplanner.team/stops/Lcebail2", "https://tec.openplanner.team/stops/Lceembo2"], ["https://tec.openplanner.team/stops/H2fa101b", "https://tec.openplanner.team/stops/H2fa103a"], ["https://tec.openplanner.team/stops/LHMhind1", "https://tec.openplanner.team/stops/LHMhind2"], ["https://tec.openplanner.team/stops/H4va233b", "https://tec.openplanner.team/stops/H4va234b"], ["https://tec.openplanner.team/stops/Cpcathe1", "https://tec.openplanner.team/stops/Cpcathe2"], ["https://tec.openplanner.team/stops/Lagpass1", "https://tec.openplanner.team/stops/Lempass1"], ["https://tec.openplanner.team/stops/X758abb", "https://tec.openplanner.team/stops/X758ajb"], ["https://tec.openplanner.team/stops/H1ms942a", "https://tec.openplanner.team/stops/H1ni321b"], ["https://tec.openplanner.team/stops/LFmlens2", "https://tec.openplanner.team/stops/LTyhapp2"], ["https://tec.openplanner.team/stops/X397aba", "https://tec.openplanner.team/stops/X901aya"], ["https://tec.openplanner.team/stops/N309aab", "https://tec.openplanner.team/stops/N365aca"], ["https://tec.openplanner.team/stops/N127afa", "https://tec.openplanner.team/stops/N134aga"], ["https://tec.openplanner.team/stops/H1gc123b", "https://tec.openplanner.team/stops/H1go174a"], ["https://tec.openplanner.team/stops/Lgrchar2", "https://tec.openplanner.team/stops/Lgrramp1"], ["https://tec.openplanner.team/stops/X547abb", "https://tec.openplanner.team/stops/X547atb"], ["https://tec.openplanner.team/stops/LARauto2", "https://tec.openplanner.team/stops/LRItour1"], ["https://tec.openplanner.team/stops/H5ma181a", "https://tec.openplanner.team/stops/H5ma181b"], ["https://tec.openplanner.team/stops/X734aob", "https://tec.openplanner.team/stops/X734apb"], ["https://tec.openplanner.team/stops/Bbstcoi2", "https://tec.openplanner.team/stops/Bbsthpl1"], ["https://tec.openplanner.team/stops/Lmoboeu4", "https://tec.openplanner.team/stops/Lmogoff2"], ["https://tec.openplanner.team/stops/H4er122a", "https://tec.openplanner.team/stops/H4er123a"], ["https://tec.openplanner.team/stops/LmNha222", "https://tec.openplanner.team/stops/LmNstaa2"], ["https://tec.openplanner.team/stops/LDLheid1", "https://tec.openplanner.team/stops/LLNogne1"], ["https://tec.openplanner.team/stops/X822aab", "https://tec.openplanner.team/stops/X822apb"], ["https://tec.openplanner.team/stops/Bniv4co1", "https://tec.openplanner.team/stops/Bniv4co2"], ["https://tec.openplanner.team/stops/LPbchat2", "https://tec.openplanner.team/stops/LPbover2"], ["https://tec.openplanner.team/stops/N545aaa", "https://tec.openplanner.team/stops/N553ana"], ["https://tec.openplanner.team/stops/X850ada", "https://tec.openplanner.team/stops/X850adb"], ["https://tec.openplanner.team/stops/LSGfoua1", "https://tec.openplanner.team/stops/LSGfoua2"], ["https://tec.openplanner.team/stops/Ccypn1", "https://tec.openplanner.team/stops/Ccypn2"], ["https://tec.openplanner.team/stops/Cmlsana1", "https://tec.openplanner.team/stops/Cmlsana2"], ["https://tec.openplanner.team/stops/Llieg--3", "https://tec.openplanner.team/stops/Lligare1"], ["https://tec.openplanner.team/stops/Llgatla1", "https://tec.openplanner.team/stops/Llgbaya2"], ["https://tec.openplanner.team/stops/Blhufro2", "https://tec.openplanner.team/stops/Blhunys3"], ["https://tec.openplanner.team/stops/Cladura4", "https://tec.openplanner.team/stops/NC23aba"], ["https://tec.openplanner.team/stops/LHGbeur1", "https://tec.openplanner.team/stops/LHGbeur2"], ["https://tec.openplanner.team/stops/H2mg150a", "https://tec.openplanner.team/stops/H2mg151a"], ["https://tec.openplanner.team/stops/LREelse1", "https://tec.openplanner.team/stops/LREsech1"], ["https://tec.openplanner.team/stops/N145aeb", "https://tec.openplanner.team/stops/N145aec"], ["https://tec.openplanner.team/stops/Lflmaxi2", "https://tec.openplanner.team/stops/Lrecroi2"], ["https://tec.openplanner.team/stops/Lrcprin6", "https://tec.openplanner.team/stops/Lvopaqu1"], ["https://tec.openplanner.team/stops/N551ana", "https://tec.openplanner.team/stops/N551apa"], ["https://tec.openplanner.team/stops/Lagrask2", "https://tec.openplanner.team/stops/Lagstre1"], ["https://tec.openplanner.team/stops/N204aja", "https://tec.openplanner.team/stops/N204ajb"], ["https://tec.openplanner.team/stops/H4ae102b", "https://tec.openplanner.team/stops/H4po127a"], ["https://tec.openplanner.team/stops/X911ada", "https://tec.openplanner.team/stops/X911adb"], ["https://tec.openplanner.team/stops/LFMstat1", "https://tec.openplanner.team/stops/LFMstat2"], ["https://tec.openplanner.team/stops/Bnivpso1", "https://tec.openplanner.team/stops/Bnivpso2"], ["https://tec.openplanner.team/stops/X727aba", "https://tec.openplanner.team/stops/X767aga"], ["https://tec.openplanner.team/stops/LeLgrie2", "https://tec.openplanner.team/stops/LkAbahn*"], ["https://tec.openplanner.team/stops/Llgform2", "https://tec.openplanner.team/stops/Llggill2"], ["https://tec.openplanner.team/stops/N218abb", "https://tec.openplanner.team/stops/N331aea"], ["https://tec.openplanner.team/stops/Bgdhcsh2", "https://tec.openplanner.team/stops/Blineco1"], ["https://tec.openplanner.team/stops/X766afa", "https://tec.openplanner.team/stops/X766afb"], ["https://tec.openplanner.team/stops/H1te185a", "https://tec.openplanner.team/stops/H1te185b"], ["https://tec.openplanner.team/stops/LHXmonu2", "https://tec.openplanner.team/stops/LTPcamp2"], ["https://tec.openplanner.team/stops/Ccoconf1", "https://tec.openplanner.team/stops/Ccoconf2"], ["https://tec.openplanner.team/stops/N529abc", "https://tec.openplanner.team/stops/N529abd"], ["https://tec.openplanner.team/stops/LBY4che2", "https://tec.openplanner.team/stops/LHEelva2"], ["https://tec.openplanner.team/stops/LAUbour3", "https://tec.openplanner.team/stops/LAUbour4"], ["https://tec.openplanner.team/stops/LbO52--2", "https://tec.openplanner.team/stops/LdEschw1"], ["https://tec.openplanner.team/stops/LORpave2", "https://tec.openplanner.team/stops/LTychev1"], ["https://tec.openplanner.team/stops/X614aaa", "https://tec.openplanner.team/stops/X614ala"], ["https://tec.openplanner.team/stops/LESchpl1", "https://tec.openplanner.team/stops/LPOeg--2"], ["https://tec.openplanner.team/stops/Baudhde2", "https://tec.openplanner.team/stops/Bwbfeta1"], ["https://tec.openplanner.team/stops/X636aba", "https://tec.openplanner.team/stops/X636aca"], ["https://tec.openplanner.team/stops/H1fr123a", "https://tec.openplanner.team/stops/H1fr128b"], ["https://tec.openplanner.team/stops/H1hh110a", "https://tec.openplanner.team/stops/H1hh113a"], ["https://tec.openplanner.team/stops/H4ve134a", "https://tec.openplanner.team/stops/H4ve136b"], ["https://tec.openplanner.team/stops/X775ahb", "https://tec.openplanner.team/stops/X775aib"], ["https://tec.openplanner.team/stops/LSEcent1", "https://tec.openplanner.team/stops/LSEvill1"], ["https://tec.openplanner.team/stops/LGetroi2", "https://tec.openplanner.team/stops/LVkchap2"], ["https://tec.openplanner.team/stops/Cmehame1", "https://tec.openplanner.team/stops/Cmehame2"], ["https://tec.openplanner.team/stops/X721aoa", "https://tec.openplanner.team/stops/X786aaa"], ["https://tec.openplanner.team/stops/N501dva", "https://tec.openplanner.team/stops/N501kpa"], ["https://tec.openplanner.team/stops/N510aea", "https://tec.openplanner.team/stops/N510aeb"], ["https://tec.openplanner.team/stops/Buccobs2", "https://tec.openplanner.team/stops/Buccptj1"], ["https://tec.openplanner.team/stops/NL76ajb", "https://tec.openplanner.team/stops/NL76ala"], ["https://tec.openplanner.team/stops/LCnvill1", "https://tec.openplanner.team/stops/LLUgend1"], ["https://tec.openplanner.team/stops/X741anb", "https://tec.openplanner.team/stops/X741aoa"], ["https://tec.openplanner.team/stops/LBichen2", "https://tec.openplanner.team/stops/LBivill1"], ["https://tec.openplanner.team/stops/N337afb", "https://tec.openplanner.team/stops/N337aga"], ["https://tec.openplanner.team/stops/LFMvoge*", "https://tec.openplanner.team/stops/LFPho8a1"], ["https://tec.openplanner.team/stops/H2ll192a", "https://tec.openplanner.team/stops/H2ll192b"], ["https://tec.openplanner.team/stops/Llgcfra1", "https://tec.openplanner.team/stops/Llglaur1"], ["https://tec.openplanner.team/stops/Cbctile", "https://tec.openplanner.team/stops/Clfmonu3"], ["https://tec.openplanner.team/stops/N232ayb", "https://tec.openplanner.team/stops/N232boa"], ["https://tec.openplanner.team/stops/Lbhhomv2", "https://tec.openplanner.team/stops/Lbhsion1"], ["https://tec.openplanner.team/stops/LCAeg--1", "https://tec.openplanner.team/stops/LCAwals1"], ["https://tec.openplanner.team/stops/N207aaa", "https://tec.openplanner.team/stops/N207aab"], ["https://tec.openplanner.team/stops/N132aea", "https://tec.openplanner.team/stops/N132aga"], ["https://tec.openplanner.team/stops/LeUbahn2", "https://tec.openplanner.team/stops/LeUbahn5"], ["https://tec.openplanner.team/stops/H1je222a", "https://tec.openplanner.team/stops/H1je222b"], ["https://tec.openplanner.team/stops/N501jca", "https://tec.openplanner.team/stops/N501jcb"], ["https://tec.openplanner.team/stops/Cmlbeau4", "https://tec.openplanner.team/stops/Cmlbrac2"], ["https://tec.openplanner.team/stops/H4ce108b", "https://tec.openplanner.team/stops/H4or115a"], ["https://tec.openplanner.team/stops/X359adb", "https://tec.openplanner.team/stops/X359agb"], ["https://tec.openplanner.team/stops/X619ada", "https://tec.openplanner.team/stops/X619adb"], ["https://tec.openplanner.team/stops/N242aea", "https://tec.openplanner.team/stops/N242aga"], ["https://tec.openplanner.team/stops/X621aab", "https://tec.openplanner.team/stops/X622afb"], ["https://tec.openplanner.team/stops/X879aia", "https://tec.openplanner.team/stops/X879aib"], ["https://tec.openplanner.team/stops/N236aib", "https://tec.openplanner.team/stops/N236ama"], ["https://tec.openplanner.team/stops/X601cna", "https://tec.openplanner.team/stops/X601cub"], ["https://tec.openplanner.team/stops/X725ama", "https://tec.openplanner.team/stops/X725arb"], ["https://tec.openplanner.team/stops/LJedonc3", "https://tec.openplanner.team/stops/LJetrih2"], ["https://tec.openplanner.team/stops/Lmleg--1", "https://tec.openplanner.team/stops/Lmlpech2"], ["https://tec.openplanner.team/stops/Ccopeti2", "https://tec.openplanner.team/stops/Ccostan2"], ["https://tec.openplanner.team/stops/LHEgare1", "https://tec.openplanner.team/stops/LHEhv--2"], ["https://tec.openplanner.team/stops/H1hr121d", "https://tec.openplanner.team/stops/H1hr125a"], ["https://tec.openplanner.team/stops/N519akb", "https://tec.openplanner.team/stops/N519alb"], ["https://tec.openplanner.team/stops/H1ms245a", "https://tec.openplanner.team/stops/H1ms245b"], ["https://tec.openplanner.team/stops/LHApthe1", "https://tec.openplanner.team/stops/LHApthe2"], ["https://tec.openplanner.team/stops/Lansarm2", "https://tec.openplanner.team/stops/Lmomarr1"], ["https://tec.openplanner.team/stops/H4mo164a", "https://tec.openplanner.team/stops/H4mo181b"], ["https://tec.openplanner.team/stops/Lchplai1", "https://tec.openplanner.team/stops/Lchplai2"], ["https://tec.openplanner.team/stops/Bborppa2", "https://tec.openplanner.team/stops/Bfelpmo1"], ["https://tec.openplanner.team/stops/LBaeg--1", "https://tec.openplanner.team/stops/LNEgare*"], ["https://tec.openplanner.team/stops/H4fo116b", "https://tec.openplanner.team/stops/H4fo117b"], ["https://tec.openplanner.team/stops/Bnvmfba1", "https://tec.openplanner.team/stops/N515arb"], ["https://tec.openplanner.team/stops/Lmnrame1", "https://tec.openplanner.team/stops/Lmnrame2"], ["https://tec.openplanner.team/stops/LSNecol3", "https://tec.openplanner.team/stops/LSNmoul1"], ["https://tec.openplanner.team/stops/N155aca", "https://tec.openplanner.team/stops/N155ada"], ["https://tec.openplanner.team/stops/LWeec--1", "https://tec.openplanner.team/stops/LWepost4"], ["https://tec.openplanner.team/stops/Baegegl2", "https://tec.openplanner.team/stops/NR38abb"], ["https://tec.openplanner.team/stops/H1cu120a", "https://tec.openplanner.team/stops/H1cu120b"], ["https://tec.openplanner.team/stops/H4be102a", "https://tec.openplanner.team/stops/H4be102b"], ["https://tec.openplanner.team/stops/X898ada", "https://tec.openplanner.team/stops/X898aob"], ["https://tec.openplanner.team/stops/LAMhopi2", "https://tec.openplanner.team/stops/LAMhopi3"], ["https://tec.openplanner.team/stops/Bleugar1", "https://tec.openplanner.team/stops/Btiegar2"], ["https://tec.openplanner.team/stops/N524aka", "https://tec.openplanner.team/stops/N524ama"], ["https://tec.openplanner.team/stops/LRObarr2", "https://tec.openplanner.team/stops/LWLeg--1"], ["https://tec.openplanner.team/stops/X618aia", "https://tec.openplanner.team/stops/X618akb"], ["https://tec.openplanner.team/stops/Llgvero1", "https://tec.openplanner.team/stops/Llgvero2"], ["https://tec.openplanner.team/stops/Cjucpui1", "https://tec.openplanner.team/stops/Cjucpui2"], ["https://tec.openplanner.team/stops/LHVeg--1", "https://tec.openplanner.team/stops/LHVeg--2"], ["https://tec.openplanner.team/stops/Bwavlav1", "https://tec.openplanner.team/stops/Bwavlav2"], ["https://tec.openplanner.team/stops/LFPloob1", "https://tec.openplanner.team/stops/LSJgrae1"], ["https://tec.openplanner.team/stops/X725afc", "https://tec.openplanner.team/stops/X725bcb"], ["https://tec.openplanner.team/stops/X657afa", "https://tec.openplanner.team/stops/X657alb"], ["https://tec.openplanner.team/stops/X801aha", "https://tec.openplanner.team/stops/X801bpa"], ["https://tec.openplanner.team/stops/Cmygrbr2", "https://tec.openplanner.team/stops/Cmygrbr3"], ["https://tec.openplanner.team/stops/LAnvien2", "https://tec.openplanner.team/stops/LCF2spa1"], ["https://tec.openplanner.team/stops/X728ada", "https://tec.openplanner.team/stops/X729aac"], ["https://tec.openplanner.team/stops/X890aca", "https://tec.openplanner.team/stops/X890aea"], ["https://tec.openplanner.team/stops/LhSheid1", "https://tec.openplanner.team/stops/LhSheid2"], ["https://tec.openplanner.team/stops/N501eea", "https://tec.openplanner.team/stops/N501kjb"], ["https://tec.openplanner.team/stops/LbTgeme2", "https://tec.openplanner.team/stops/LnIschw1"], ["https://tec.openplanner.team/stops/LMOecsp2", "https://tec.openplanner.team/stops/LMOecsp3"], ["https://tec.openplanner.team/stops/H4fr390a", "https://tec.openplanner.team/stops/H4ty348a"], ["https://tec.openplanner.team/stops/X608aya", "https://tec.openplanner.team/stops/X608ayb"], ["https://tec.openplanner.team/stops/Bottgar2", "https://tec.openplanner.team/stops/Bottgar3"], ["https://tec.openplanner.team/stops/Lghmaha2", "https://tec.openplanner.team/stops/Lghmaha3"], ["https://tec.openplanner.team/stops/X954aeb", "https://tec.openplanner.team/stops/X954aha"], ["https://tec.openplanner.team/stops/X741abd", "https://tec.openplanner.team/stops/X758aka"], ["https://tec.openplanner.team/stops/Bjauwar2", "https://tec.openplanner.team/stops/NR21aja"], ["https://tec.openplanner.team/stops/N232aqa", "https://tec.openplanner.team/stops/N232bna"], ["https://tec.openplanner.team/stops/LcRmuhl1", "https://tec.openplanner.team/stops/LwTkabi4"], ["https://tec.openplanner.team/stops/N232asa", "https://tec.openplanner.team/stops/N232asb"], ["https://tec.openplanner.team/stops/X870aga", "https://tec.openplanner.team/stops/X870aha"], ["https://tec.openplanner.team/stops/LVLgotr1", "https://tec.openplanner.team/stops/LVLmart1"], ["https://tec.openplanner.team/stops/Bolgeva1", "https://tec.openplanner.team/stops/Bolgfon2"], ["https://tec.openplanner.team/stops/Blindel3", "https://tec.openplanner.team/stops/Blindel5"], ["https://tec.openplanner.team/stops/N232bxb", "https://tec.openplanner.team/stops/N232byb"], ["https://tec.openplanner.team/stops/H4lp120a", "https://tec.openplanner.team/stops/H4lp120b"], ["https://tec.openplanner.team/stops/H1mv238a", "https://tec.openplanner.team/stops/H1mv240a"], ["https://tec.openplanner.team/stops/H4og213b", "https://tec.openplanner.team/stops/H4og215a"], ["https://tec.openplanner.team/stops/H1do116a", "https://tec.openplanner.team/stops/H1do126a"], ["https://tec.openplanner.team/stops/LSPclai2", "https://tec.openplanner.team/stops/LSPgend1"], ["https://tec.openplanner.team/stops/Cmmcomb1", "https://tec.openplanner.team/stops/Cmmcomb2"], ["https://tec.openplanner.team/stops/LHMhof-1", "https://tec.openplanner.team/stops/LMNswar1"], ["https://tec.openplanner.team/stops/H1hm174a", "https://tec.openplanner.team/stops/H1hm174b"], ["https://tec.openplanner.team/stops/Bsaucre2", "https://tec.openplanner.team/stops/N541aaa"], ["https://tec.openplanner.team/stops/LDAalbe2", "https://tec.openplanner.team/stops/LFethie2"], ["https://tec.openplanner.team/stops/Crsprai4", "https://tec.openplanner.team/stops/Crsrose2"], ["https://tec.openplanner.team/stops/X576aca", "https://tec.openplanner.team/stops/X576ada"], ["https://tec.openplanner.team/stops/N531aka", "https://tec.openplanner.team/stops/N531ana"], ["https://tec.openplanner.team/stops/Bgnvgir1", "https://tec.openplanner.team/stops/Blasren2"], ["https://tec.openplanner.team/stops/Crccarr1", "https://tec.openplanner.team/stops/NH03ada"], ["https://tec.openplanner.team/stops/H1hw125a", "https://tec.openplanner.team/stops/H1ls109b"], ["https://tec.openplanner.team/stops/Clsstpi1", "https://tec.openplanner.team/stops/H1ls107b"], ["https://tec.openplanner.team/stops/N131afb", "https://tec.openplanner.team/stops/N132aab"], ["https://tec.openplanner.team/stops/H5qu139a", "https://tec.openplanner.team/stops/H5qu145b"], ["https://tec.openplanner.team/stops/H1fr127a", "https://tec.openplanner.team/stops/H1fr127b"], ["https://tec.openplanner.team/stops/H5pe131a", "https://tec.openplanner.team/stops/H5pe131b"], ["https://tec.openplanner.team/stops/H1hc150b", "https://tec.openplanner.team/stops/H1hc151b"], ["https://tec.openplanner.team/stops/N501joa", "https://tec.openplanner.team/stops/N521adb"], ["https://tec.openplanner.team/stops/LVbpave1", "https://tec.openplanner.team/stops/NL77ana"], ["https://tec.openplanner.team/stops/X619aaa", "https://tec.openplanner.team/stops/X619amb"], ["https://tec.openplanner.team/stops/Cflecep1", "https://tec.openplanner.team/stops/NC23aab"], ["https://tec.openplanner.team/stops/LMTdeho1", "https://tec.openplanner.team/stops/LXftche1"], ["https://tec.openplanner.team/stops/H3bo103a", "https://tec.openplanner.team/stops/H3th130a"], ["https://tec.openplanner.team/stops/X991ada", "https://tec.openplanner.team/stops/X993aab"], ["https://tec.openplanner.team/stops/H4ty283b", "https://tec.openplanner.team/stops/H4ty312b"], ["https://tec.openplanner.team/stops/Bauddel2", "https://tec.openplanner.team/stops/Bwbfgar1"], ["https://tec.openplanner.team/stops/LMffoot1", "https://tec.openplanner.team/stops/LOtthie2"], ["https://tec.openplanner.team/stops/Bhenfla2", "https://tec.openplanner.team/stops/Brebrha2"], ["https://tec.openplanner.team/stops/X725avb", "https://tec.openplanner.team/stops/X725bba"], ["https://tec.openplanner.team/stops/Bdlmgla2", "https://tec.openplanner.team/stops/Bdlmgla4"], ["https://tec.openplanner.team/stops/H1te175b", "https://tec.openplanner.team/stops/H1te178a"], ["https://tec.openplanner.team/stops/H1cu114a", "https://tec.openplanner.team/stops/H1cu131b"], ["https://tec.openplanner.team/stops/X626agb", "https://tec.openplanner.team/stops/X626aha"], ["https://tec.openplanner.team/stops/Bwspmon4", "https://tec.openplanner.team/stops/Bwsppos1"], ["https://tec.openplanner.team/stops/H1al105a", "https://tec.openplanner.team/stops/H1al107a"], ["https://tec.openplanner.team/stops/Llgauxc2", "https://tec.openplanner.team/stops/Llgtir-1"], ["https://tec.openplanner.team/stops/N533ala", "https://tec.openplanner.team/stops/N533alf"], ["https://tec.openplanner.team/stops/Bbbksth1", "https://tec.openplanner.team/stops/Bhaawdr1"], ["https://tec.openplanner.team/stops/Lmnsech1", "https://tec.openplanner.team/stops/Lsmsech4"], ["https://tec.openplanner.team/stops/Bchgcha1", "https://tec.openplanner.team/stops/Bchgqve4"], ["https://tec.openplanner.team/stops/N501aob", "https://tec.openplanner.team/stops/N501bdb"], ["https://tec.openplanner.team/stops/LmHflor2", "https://tec.openplanner.team/stops/LmHumge1"], ["https://tec.openplanner.team/stops/LMfange1", "https://tec.openplanner.team/stops/LMfange2"], ["https://tec.openplanner.team/stops/Bbealou2", "https://tec.openplanner.team/stops/Bleugar1"], ["https://tec.openplanner.team/stops/N151aaa", "https://tec.openplanner.team/stops/N153aaa"], ["https://tec.openplanner.team/stops/LDpulve1", "https://tec.openplanner.team/stops/LDpzol-1"], ["https://tec.openplanner.team/stops/N539afa", "https://tec.openplanner.team/stops/N539afc"], ["https://tec.openplanner.team/stops/H4ga165b", "https://tec.openplanner.team/stops/H4ga171b"], ["https://tec.openplanner.team/stops/LAibego1", "https://tec.openplanner.team/stops/Lccuner2"], ["https://tec.openplanner.team/stops/LMAcite1", "https://tec.openplanner.team/stops/LMAroch3"], ["https://tec.openplanner.team/stops/Lfhpass2", "https://tec.openplanner.team/stops/Lsemany2"], ["https://tec.openplanner.team/stops/X840acb", "https://tec.openplanner.team/stops/X840ada"], ["https://tec.openplanner.team/stops/LaR1G--1", "https://tec.openplanner.team/stops/LmSluxh1"], ["https://tec.openplanner.team/stops/X982apb", "https://tec.openplanner.team/stops/X982bca"], ["https://tec.openplanner.team/stops/Croheig2", "https://tec.openplanner.team/stops/Crolach1"], ["https://tec.openplanner.team/stops/Cblbaiv1", "https://tec.openplanner.team/stops/Cmcegli1"], ["https://tec.openplanner.team/stops/N206aca", "https://tec.openplanner.team/stops/N206acb"], ["https://tec.openplanner.team/stops/LLagert*", "https://tec.openplanner.team/stops/LWscona1"], ["https://tec.openplanner.team/stops/Bwagpco1", "https://tec.openplanner.team/stops/Bwagpco2"], ["https://tec.openplanner.team/stops/Crolema1", "https://tec.openplanner.team/stops/Crolema2"], ["https://tec.openplanner.team/stops/LATcorn1", "https://tec.openplanner.team/stops/LATcorn2"], ["https://tec.openplanner.team/stops/Cfcbobr2", "https://tec.openplanner.team/stops/Cvrfema1"], ["https://tec.openplanner.team/stops/H2ca106b", "https://tec.openplanner.team/stops/H2ca111a"], ["https://tec.openplanner.team/stops/Brebrog2", "https://tec.openplanner.team/stops/H2pr117b"], ["https://tec.openplanner.team/stops/LsTgren1", "https://tec.openplanner.team/stops/LsTgren2"], ["https://tec.openplanner.team/stops/N124acb", "https://tec.openplanner.team/stops/N149ala"], ["https://tec.openplanner.team/stops/Llgbass2", "https://tec.openplanner.team/stops/Llgomal1"], ["https://tec.openplanner.team/stops/N501hba", "https://tec.openplanner.team/stops/N501hly"], ["https://tec.openplanner.team/stops/Cmastfi1", "https://tec.openplanner.team/stops/Cmocalv4"], ["https://tec.openplanner.team/stops/LAWlonc1", "https://tec.openplanner.team/stops/LAWxhen1"], ["https://tec.openplanner.team/stops/X908aib", "https://tec.openplanner.team/stops/X908aja"], ["https://tec.openplanner.team/stops/X903aea", "https://tec.openplanner.team/stops/X903aeb"], ["https://tec.openplanner.team/stops/LRemorr2", "https://tec.openplanner.team/stops/LRemorr3"], ["https://tec.openplanner.team/stops/Cctbois1", "https://tec.openplanner.team/stops/Cctlimi1"], ["https://tec.openplanner.team/stops/Bjaugar3", "https://tec.openplanner.team/stops/Bjauwar1"], ["https://tec.openplanner.team/stops/LWZeg--2", "https://tec.openplanner.team/stops/X261aab"], ["https://tec.openplanner.team/stops/X640ada", "https://tec.openplanner.team/stops/X640aoa"], ["https://tec.openplanner.team/stops/N101arb", "https://tec.openplanner.team/stops/N153aab"], ["https://tec.openplanner.team/stops/Btlbtbe1", "https://tec.openplanner.team/stops/Btlbtbe3"], ["https://tec.openplanner.team/stops/N201aca", "https://tec.openplanner.team/stops/N201asa"], ["https://tec.openplanner.team/stops/Blingar4", "https://tec.openplanner.team/stops/Bracrpe2"], ["https://tec.openplanner.team/stops/N160acb", "https://tec.openplanner.team/stops/N160aha"], ["https://tec.openplanner.team/stops/H4ir161b", "https://tec.openplanner.team/stops/H4og209a"], ["https://tec.openplanner.team/stops/Balswwe2", "https://tec.openplanner.team/stops/Bwaunou1"], ["https://tec.openplanner.team/stops/Bbldass2", "https://tec.openplanner.team/stops/Bbldmun1"], ["https://tec.openplanner.team/stops/H1do129a", "https://tec.openplanner.team/stops/H1wi153b"], ["https://tec.openplanner.team/stops/Cfmwaut2", "https://tec.openplanner.team/stops/Ctrpn2"], ["https://tec.openplanner.team/stops/LLrlour2", "https://tec.openplanner.team/stops/LLrquar2"], ["https://tec.openplanner.team/stops/H1er105a", "https://tec.openplanner.team/stops/H1er106a"], ["https://tec.openplanner.team/stops/X640aga", "https://tec.openplanner.team/stops/X640ahb"], ["https://tec.openplanner.team/stops/Lceavia2", "https://tec.openplanner.team/stops/Lcebarr1"], ["https://tec.openplanner.team/stops/LCHrhou1", "https://tec.openplanner.team/stops/Ldicorb1"], ["https://tec.openplanner.team/stops/N548afa", "https://tec.openplanner.team/stops/N548aka"], ["https://tec.openplanner.team/stops/H1po137a", "https://tec.openplanner.team/stops/H5gr137b"], ["https://tec.openplanner.team/stops/H4ce104b", "https://tec.openplanner.team/stops/H4ce108a"], ["https://tec.openplanner.team/stops/Lmnfawe2", "https://tec.openplanner.team/stops/Lmnsech1"], ["https://tec.openplanner.team/stops/X345aaa", "https://tec.openplanner.team/stops/X345aab"], ["https://tec.openplanner.team/stops/X822ana", "https://tec.openplanner.team/stops/X822aqa"], ["https://tec.openplanner.team/stops/X850aha", "https://tec.openplanner.team/stops/X850aoa"], ["https://tec.openplanner.team/stops/X608aka", "https://tec.openplanner.team/stops/X608ana"], ["https://tec.openplanner.team/stops/X908ama", "https://tec.openplanner.team/stops/X908anb"], ["https://tec.openplanner.team/stops/LCOcarr2", "https://tec.openplanner.team/stops/LCOcrom2"], ["https://tec.openplanner.team/stops/Cgxdeba1", "https://tec.openplanner.team/stops/Cgxwaut1"], ["https://tec.openplanner.team/stops/N357afa", "https://tec.openplanner.team/stops/X351acb"], ["https://tec.openplanner.team/stops/H1hr118a", "https://tec.openplanner.team/stops/H1hr118d"], ["https://tec.openplanner.team/stops/LCShoux1", "https://tec.openplanner.team/stops/LENengi2"], ["https://tec.openplanner.team/stops/LAMecse*", "https://tec.openplanner.team/stops/LAMpirk1"], ["https://tec.openplanner.team/stops/N323aab", "https://tec.openplanner.team/stops/N323abb"], ["https://tec.openplanner.team/stops/Cgdfoca1", "https://tec.openplanner.team/stops/Cgdrhau2"], ["https://tec.openplanner.team/stops/Bgnpjbe2", "https://tec.openplanner.team/stops/Bvxgegl2"], ["https://tec.openplanner.team/stops/Bbeaap11", "https://tec.openplanner.team/stops/Bmlnpab1"], ["https://tec.openplanner.team/stops/Lfhhosp1", "https://tec.openplanner.team/stops/Ljemeca1"], ["https://tec.openplanner.team/stops/LBlplac1", "https://tec.openplanner.team/stops/LCn4---1"], ["https://tec.openplanner.team/stops/Lpejonc2", "https://tec.openplanner.team/stops/Lpevesd2"], ["https://tec.openplanner.team/stops/N103aea", "https://tec.openplanner.team/stops/N103aeb"], ["https://tec.openplanner.team/stops/Bjodcad1", "https://tec.openplanner.team/stops/NR10aca"], ["https://tec.openplanner.team/stops/N340acb", "https://tec.openplanner.team/stops/N340aeb"], ["https://tec.openplanner.team/stops/Csecroi1", "https://tec.openplanner.team/stops/Csequew2"], ["https://tec.openplanner.team/stops/Llgguer1", "https://tec.openplanner.team/stops/Llgvinc2"], ["https://tec.openplanner.team/stops/LBDcarr1", "https://tec.openplanner.team/stops/LJEchat2"], ["https://tec.openplanner.team/stops/NL77aca", "https://tec.openplanner.team/stops/NL77adb"], ["https://tec.openplanner.team/stops/LSU50--2", "https://tec.openplanner.team/stops/LSUvill2"], ["https://tec.openplanner.team/stops/N534axa", "https://tec.openplanner.team/stops/N534bba"], ["https://tec.openplanner.team/stops/Llgongr1", "https://tec.openplanner.team/stops/Llgoutr1"], ["https://tec.openplanner.team/stops/LSXvill2", "https://tec.openplanner.team/stops/LTHroch1"], ["https://tec.openplanner.team/stops/Bvirbru2", "https://tec.openplanner.team/stops/Bvirpos1"], ["https://tec.openplanner.team/stops/N160aca", "https://tec.openplanner.team/stops/N160aga"], ["https://tec.openplanner.team/stops/Lagcler1", "https://tec.openplanner.team/stops/Lagjado1"], ["https://tec.openplanner.team/stops/Lverogi2", "https://tec.openplanner.team/stops/Lveyser1"], ["https://tec.openplanner.team/stops/LCschen2", "https://tec.openplanner.team/stops/LVBneuv2"], ["https://tec.openplanner.team/stops/NL72aaa", "https://tec.openplanner.team/stops/NL72abb"], ["https://tec.openplanner.team/stops/N214afb", "https://tec.openplanner.team/stops/N225aaa"], ["https://tec.openplanner.team/stops/LSBrouf2", "https://tec.openplanner.team/stops/LSktinc2"], ["https://tec.openplanner.team/stops/H1gi120c", "https://tec.openplanner.team/stops/H1gi120d"], ["https://tec.openplanner.team/stops/X954aea", "https://tec.openplanner.team/stops/X954afa"], ["https://tec.openplanner.team/stops/Csuegli", "https://tec.openplanner.team/stops/Csufrom5"], ["https://tec.openplanner.team/stops/N543bdb", "https://tec.openplanner.team/stops/N543bgc"], ["https://tec.openplanner.team/stops/Bucccal3", "https://tec.openplanner.team/stops/Buccdch2"], ["https://tec.openplanner.team/stops/N538adb", "https://tec.openplanner.team/stops/N542aib"], ["https://tec.openplanner.team/stops/NC14aga", "https://tec.openplanner.team/stops/NC14agb"], ["https://tec.openplanner.team/stops/Bnivrwi1", "https://tec.openplanner.team/stops/Bnivrwi2"], ["https://tec.openplanner.team/stops/X749adb", "https://tec.openplanner.team/stops/X749afb"], ["https://tec.openplanner.team/stops/N539aua", "https://tec.openplanner.team/stops/N539bfb"], ["https://tec.openplanner.team/stops/Ccpbrun2", "https://tec.openplanner.team/stops/H2ch110b"], ["https://tec.openplanner.team/stops/X917aab", "https://tec.openplanner.team/stops/X919aoa"], ["https://tec.openplanner.team/stops/X637aob", "https://tec.openplanner.team/stops/X652aab"], ["https://tec.openplanner.team/stops/LHNcoll2", "https://tec.openplanner.team/stops/LHNcreh1"], ["https://tec.openplanner.team/stops/Cgzcorn2", "https://tec.openplanner.team/stops/Cgzcour1"], ["https://tec.openplanner.team/stops/X342ahb", "https://tec.openplanner.team/stops/X354aab"], ["https://tec.openplanner.team/stops/H1ms270a", "https://tec.openplanner.team/stops/H1ob334a"], ["https://tec.openplanner.team/stops/LsHkirc2", "https://tec.openplanner.team/stops/LsHkreu4"], ["https://tec.openplanner.team/stops/H1qu100c", "https://tec.openplanner.team/stops/H1qu120b"], ["https://tec.openplanner.team/stops/Bbbksth1", "https://tec.openplanner.team/stops/Bhmmcsc1"], ["https://tec.openplanner.team/stops/LHGleje2", "https://tec.openplanner.team/stops/LHGtige1"], ["https://tec.openplanner.team/stops/N351ata", "https://tec.openplanner.team/stops/X351aba"], ["https://tec.openplanner.team/stops/LMschap2", "https://tec.openplanner.team/stops/LMspont1"], ["https://tec.openplanner.team/stops/Cjuecho1", "https://tec.openplanner.team/stops/Cjuhden1"], ["https://tec.openplanner.team/stops/H1he103b", "https://tec.openplanner.team/stops/H1he105a"], ["https://tec.openplanner.team/stops/N121adb", "https://tec.openplanner.team/stops/N121afb"], ["https://tec.openplanner.team/stops/Bgdhbvu2", "https://tec.openplanner.team/stops/LBegare2"], ["https://tec.openplanner.team/stops/X717aba", "https://tec.openplanner.team/stops/X718aab"], ["https://tec.openplanner.team/stops/Bnilcab1", "https://tec.openplanner.team/stops/Bnilpie1"], ["https://tec.openplanner.team/stops/Blimegl1", "https://tec.openplanner.team/stops/Blmlgar2"], ["https://tec.openplanner.team/stops/LTPcarr1", "https://tec.openplanner.team/stops/LTPgare*"], ["https://tec.openplanner.team/stops/X715aqa", "https://tec.openplanner.team/stops/X781aeb"], ["https://tec.openplanner.team/stops/Bmanfbg1", "https://tec.openplanner.team/stops/Bmanfbg2"], ["https://tec.openplanner.team/stops/Bbldvaa2", "https://tec.openplanner.team/stops/Bleugar1"], ["https://tec.openplanner.team/stops/X342acb", "https://tec.openplanner.team/stops/X342ada"], ["https://tec.openplanner.team/stops/Lsnfont2", "https://tec.openplanner.team/stops/Ltithie2"], ["https://tec.openplanner.team/stops/Lcebarr1", "https://tec.openplanner.team/stops/Lceconf2"], ["https://tec.openplanner.team/stops/X614ama", "https://tec.openplanner.team/stops/X614ana"], ["https://tec.openplanner.team/stops/LTowijk1", "https://tec.openplanner.team/stops/LTowijk2"], ["https://tec.openplanner.team/stops/Bsomtnd1", "https://tec.openplanner.team/stops/Bsomtnd2"], ["https://tec.openplanner.team/stops/Bbgelre1", "https://tec.openplanner.team/stops/Bwavbpi1"], ["https://tec.openplanner.team/stops/H4wu420a", "https://tec.openplanner.team/stops/H4wu420b"], ["https://tec.openplanner.team/stops/H4te256a", "https://tec.openplanner.team/stops/H4te256b"], ["https://tec.openplanner.team/stops/Cfcleco2", "https://tec.openplanner.team/stops/Cfcrdpr2"], ["https://tec.openplanner.team/stops/Brebgar2", "https://tec.openplanner.team/stops/Brebhos1"], ["https://tec.openplanner.team/stops/Btsleco1", "https://tec.openplanner.team/stops/Btsllnd2"], ["https://tec.openplanner.team/stops/X721ana", "https://tec.openplanner.team/stops/X721aqb"], ["https://tec.openplanner.team/stops/LATgill1", "https://tec.openplanner.team/stops/LHUmari1"], ["https://tec.openplanner.team/stops/N201aab", "https://tec.openplanner.team/stops/N201aqb"], ["https://tec.openplanner.team/stops/N573apb", "https://tec.openplanner.team/stops/N573ara"], ["https://tec.openplanner.team/stops/H4ag106a", "https://tec.openplanner.team/stops/H4ag107b"], ["https://tec.openplanner.team/stops/Clodrio1", "https://tec.openplanner.team/stops/Clodrio4"], ["https://tec.openplanner.team/stops/X833abb", "https://tec.openplanner.team/stops/X833acb"], ["https://tec.openplanner.team/stops/N308apa", "https://tec.openplanner.team/stops/N308apb"], ["https://tec.openplanner.team/stops/X752aaa", "https://tec.openplanner.team/stops/X752acb"], ["https://tec.openplanner.team/stops/X636ada", "https://tec.openplanner.team/stops/X636bia"], ["https://tec.openplanner.team/stops/X638aab", "https://tec.openplanner.team/stops/X638ajb"], ["https://tec.openplanner.team/stops/H2ll197b", "https://tec.openplanner.team/stops/H2ll267b"], ["https://tec.openplanner.team/stops/Livmoul2", "https://tec.openplanner.team/stops/LRachen2"], ["https://tec.openplanner.team/stops/N513bbc", "https://tec.openplanner.team/stops/N513bbd"], ["https://tec.openplanner.team/stops/X638aha", "https://tec.openplanner.team/stops/X638apb"], ["https://tec.openplanner.team/stops/LJEpaqu1", "https://tec.openplanner.team/stops/LJEverd1"], ["https://tec.openplanner.team/stops/X991aca", "https://tec.openplanner.team/stops/X991acb"], ["https://tec.openplanner.team/stops/H1je220c", "https://tec.openplanner.team/stops/H1je220d"], ["https://tec.openplanner.team/stops/LLbcafe2", "https://tec.openplanner.team/stops/LLbpt--1"], ["https://tec.openplanner.team/stops/X801ahb", "https://tec.openplanner.team/stops/X801bpa"], ["https://tec.openplanner.team/stops/N535aba", "https://tec.openplanner.team/stops/N535abb"], ["https://tec.openplanner.team/stops/Cgyobse1", "https://tec.openplanner.team/stops/Cgyobse2"], ["https://tec.openplanner.team/stops/N585aha", "https://tec.openplanner.team/stops/N585akb"], ["https://tec.openplanner.team/stops/Bbghepi2", "https://tec.openplanner.team/stops/Bbghsar2"], ["https://tec.openplanner.team/stops/X601dca", "https://tec.openplanner.team/stops/X612afb"], ["https://tec.openplanner.team/stops/LoUober2", "https://tec.openplanner.team/stops/LsBzent1"], ["https://tec.openplanner.team/stops/LLRrape2", "https://tec.openplanner.team/stops/LLRvill2"], ["https://tec.openplanner.team/stops/Lhrherm2", "https://tec.openplanner.team/stops/Lmigare1"], ["https://tec.openplanner.team/stops/Lhrbell2", "https://tec.openplanner.team/stops/Lhrpost1"], ["https://tec.openplanner.team/stops/Caiegli1", "https://tec.openplanner.team/stops/Cprcits1"], ["https://tec.openplanner.team/stops/LSLeg--2", "https://tec.openplanner.team/stops/LSLstra2"], ["https://tec.openplanner.team/stops/N531aja", "https://tec.openplanner.team/stops/N531asa"], ["https://tec.openplanner.team/stops/N111adb", "https://tec.openplanner.team/stops/N127aha"], ["https://tec.openplanner.team/stops/Lan14ve1", "https://tec.openplanner.team/stops/Lan14ve2"], ["https://tec.openplanner.team/stops/Lboeg--2", "https://tec.openplanner.team/stops/Lbosart1"], ["https://tec.openplanner.team/stops/H3bi112a", "https://tec.openplanner.team/stops/H3bi118b"], ["https://tec.openplanner.team/stops/LTPplco2", "https://tec.openplanner.team/stops/LTPsalm2"], ["https://tec.openplanner.team/stops/Lbrfune*", "https://tec.openplanner.team/stops/Lbrrobe2"], ["https://tec.openplanner.team/stops/X879aga", "https://tec.openplanner.team/stops/X879aka"], ["https://tec.openplanner.team/stops/X927acb", "https://tec.openplanner.team/stops/X986afa"], ["https://tec.openplanner.team/stops/N501iga", "https://tec.openplanner.team/stops/N501jab"], ["https://tec.openplanner.team/stops/Bhaleur2", "https://tec.openplanner.team/stops/Bhalrat1"], ["https://tec.openplanner.team/stops/LmIvale3", "https://tec.openplanner.team/stops/LmIvale4"], ["https://tec.openplanner.team/stops/H4ka180a", "https://tec.openplanner.team/stops/H4ka195a"], ["https://tec.openplanner.team/stops/X747aha", "https://tec.openplanner.team/stops/X749aaa"], ["https://tec.openplanner.team/stops/LVIacac1", "https://tec.openplanner.team/stops/LVItroi*"], ["https://tec.openplanner.team/stops/N150agb", "https://tec.openplanner.team/stops/N168aab"], ["https://tec.openplanner.team/stops/Lgrcrac2", "https://tec.openplanner.team/stops/Lgrmagd1"], ["https://tec.openplanner.team/stops/X806afb", "https://tec.openplanner.team/stops/X873acb"], ["https://tec.openplanner.team/stops/H1hl122b", "https://tec.openplanner.team/stops/H1ry137b"], ["https://tec.openplanner.team/stops/LOReg--1", "https://tec.openplanner.team/stops/LORlieg1"], ["https://tec.openplanner.team/stops/Bgzdegl4", "https://tec.openplanner.team/stops/Bgzdfpo2"], ["https://tec.openplanner.team/stops/H4hx112a", "https://tec.openplanner.team/stops/H4hx124a"], ["https://tec.openplanner.team/stops/H1ba100b", "https://tec.openplanner.team/stops/H1ba103b"], ["https://tec.openplanner.team/stops/Cbckios2", "https://tec.openplanner.team/stops/H1lo119a"], ["https://tec.openplanner.team/stops/Brebcha1", "https://tec.openplanner.team/stops/Brebraf1"], ["https://tec.openplanner.team/stops/LLebrux1", "https://tec.openplanner.team/stops/LODarbr1"], ["https://tec.openplanner.team/stops/LHoetie2", "https://tec.openplanner.team/stops/LHovill1"], ["https://tec.openplanner.team/stops/Lvearle1", "https://tec.openplanner.team/stops/Lvearle2"], ["https://tec.openplanner.team/stops/LLeec--1", "https://tec.openplanner.team/stops/X547atb"], ["https://tec.openplanner.team/stops/N534aba", "https://tec.openplanner.team/stops/N534caa"], ["https://tec.openplanner.team/stops/X617ada", "https://tec.openplanner.team/stops/X617adb"], ["https://tec.openplanner.team/stops/H4pq114a", "https://tec.openplanner.team/stops/H4pq118a"], ["https://tec.openplanner.team/stops/H4te253a", "https://tec.openplanner.team/stops/H4te253b"], ["https://tec.openplanner.team/stops/Cctberg1", "https://tec.openplanner.team/stops/Cctvill2"], ["https://tec.openplanner.team/stops/H1sd346a", "https://tec.openplanner.team/stops/H1sd347a"], ["https://tec.openplanner.team/stops/N134aac", "https://tec.openplanner.team/stops/N134abb"], ["https://tec.openplanner.team/stops/Lbocime2", "https://tec.openplanner.team/stops/Lboeg--1"], ["https://tec.openplanner.team/stops/Cmmpjou1", "https://tec.openplanner.team/stops/Cmmpjou2"], ["https://tec.openplanner.team/stops/LJSeg--1", "https://tec.openplanner.team/stops/LJSforg2"], ["https://tec.openplanner.team/stops/LAWaube1", "https://tec.openplanner.team/stops/LAWaube2"], ["https://tec.openplanner.team/stops/H1ho123a", "https://tec.openplanner.team/stops/H1wa157a"], ["https://tec.openplanner.team/stops/H1eu102a", "https://tec.openplanner.team/stops/H1eu104b"], ["https://tec.openplanner.team/stops/Cmgpthi1", "https://tec.openplanner.team/stops/Cmgtour2"], ["https://tec.openplanner.team/stops/LPbhaut2", "https://tec.openplanner.team/stops/LPbpeti2"], ["https://tec.openplanner.team/stops/X733aea", "https://tec.openplanner.team/stops/X733afb"], ["https://tec.openplanner.team/stops/Cfmgara1", "https://tec.openplanner.team/stops/Csoforc2"], ["https://tec.openplanner.team/stops/N521agb", "https://tec.openplanner.team/stops/N521aha"], ["https://tec.openplanner.team/stops/Claptcf1", "https://tec.openplanner.team/stops/NC23abb"], ["https://tec.openplanner.team/stops/LMIpatr3", "https://tec.openplanner.team/stops/LMIpatr4"], ["https://tec.openplanner.team/stops/H4ag101a", "https://tec.openplanner.team/stops/H4ag101b"], ["https://tec.openplanner.team/stops/X982aya", "https://tec.openplanner.team/stops/X982azb"], ["https://tec.openplanner.team/stops/NL37aja", "https://tec.openplanner.team/stops/NL37ajb"], ["https://tec.openplanner.team/stops/Bnilhau1", "https://tec.openplanner.team/stops/Bnilhau2"], ["https://tec.openplanner.team/stops/LFsec--2", "https://tec.openplanner.team/stops/LFsguil1"], ["https://tec.openplanner.team/stops/Bitrecu1", "https://tec.openplanner.team/stops/Bitrecu2"], ["https://tec.openplanner.team/stops/Cwfghis2", "https://tec.openplanner.team/stops/Cwfreta1"], ["https://tec.openplanner.team/stops/Ccigill2", "https://tec.openplanner.team/stops/NC02aub"], ["https://tec.openplanner.team/stops/H4ty336a", "https://tec.openplanner.team/stops/H4ty336b"], ["https://tec.openplanner.team/stops/Cgochfe1", "https://tec.openplanner.team/stops/CMfbru2"], ["https://tec.openplanner.team/stops/Csycant1", "https://tec.openplanner.team/stops/Csytouq2"], ["https://tec.openplanner.team/stops/LREaube2", "https://tec.openplanner.team/stops/LREheyd2"], ["https://tec.openplanner.team/stops/Bhakmkr2", "https://tec.openplanner.team/stops/Bneersa2"], ["https://tec.openplanner.team/stops/X901aha", "https://tec.openplanner.team/stops/X901bnb"], ["https://tec.openplanner.team/stops/N501jrb", "https://tec.openplanner.team/stops/N501lmb"], ["https://tec.openplanner.team/stops/Bcrbgro1", "https://tec.openplanner.team/stops/Bcrbtho2"], ["https://tec.openplanner.team/stops/LFTneur*", "https://tec.openplanner.team/stops/LNAbass2"], ["https://tec.openplanner.team/stops/Bcsgcou1", "https://tec.openplanner.team/stops/Bcsgcou2"], ["https://tec.openplanner.team/stops/N543bab", "https://tec.openplanner.team/stops/N543bib"], ["https://tec.openplanner.team/stops/Cmacoll1", "https://tec.openplanner.team/stops/Cmaroya2"], ["https://tec.openplanner.team/stops/N558ama", "https://tec.openplanner.team/stops/N558amc"], ["https://tec.openplanner.team/stops/LWZdtec2", "https://tec.openplanner.team/stops/LWZponh1"], ["https://tec.openplanner.team/stops/LXhmara1", "https://tec.openplanner.team/stops/LXhmara2"], ["https://tec.openplanner.team/stops/X739aha", "https://tec.openplanner.team/stops/X739ahb"], ["https://tec.openplanner.team/stops/H1ba117b", "https://tec.openplanner.team/stops/H1wl126a"], ["https://tec.openplanner.team/stops/Bhancom1", "https://tec.openplanner.team/stops/LHNgend1"], ["https://tec.openplanner.team/stops/X804aua", "https://tec.openplanner.team/stops/X804bgb"], ["https://tec.openplanner.team/stops/LFPdeme2", "https://tec.openplanner.team/stops/LFPzwaa2"], ["https://tec.openplanner.team/stops/X623acb", "https://tec.openplanner.team/stops/X623ajb"], ["https://tec.openplanner.team/stops/N117bab", "https://tec.openplanner.team/stops/N147aca"], ["https://tec.openplanner.team/stops/LlChebs1", "https://tec.openplanner.team/stops/LlChebs2"], ["https://tec.openplanner.team/stops/X739afa", "https://tec.openplanner.team/stops/X739afb"], ["https://tec.openplanner.team/stops/H1wi153a", "https://tec.openplanner.team/stops/H1wi153b"], ["https://tec.openplanner.team/stops/Ccyga3", "https://tec.openplanner.team/stops/Ccyga4"], ["https://tec.openplanner.team/stops/X750aab", "https://tec.openplanner.team/stops/X750aba"], ["https://tec.openplanner.team/stops/Lvefanc1", "https://tec.openplanner.team/stops/Lvehodi4"], ["https://tec.openplanner.team/stops/X986aea", "https://tec.openplanner.team/stops/X986ala"], ["https://tec.openplanner.team/stops/H1fr118a", "https://tec.openplanner.team/stops/H1no141a"], ["https://tec.openplanner.team/stops/N117ajb", "https://tec.openplanner.team/stops/N117akb"], ["https://tec.openplanner.team/stops/Bbstchv1", "https://tec.openplanner.team/stops/Bsmgmas2"], ["https://tec.openplanner.team/stops/Lfhrogn1", "https://tec.openplanner.team/stops/Ljerose4"], ["https://tec.openplanner.team/stops/Cjuheig4", "https://tec.openplanner.team/stops/Cjupier2"], ["https://tec.openplanner.team/stops/Cmofosb2", "https://tec.openplanner.team/stops/Croball2"], ["https://tec.openplanner.team/stops/Llggill3", "https://tec.openplanner.team/stops/Llghaye1"], ["https://tec.openplanner.team/stops/N244adb", "https://tec.openplanner.team/stops/N244aob"], ["https://tec.openplanner.team/stops/H1fr128a", "https://tec.openplanner.team/stops/H1fr128b"], ["https://tec.openplanner.team/stops/H4ru242b", "https://tec.openplanner.team/stops/H4wc373b"], ["https://tec.openplanner.team/stops/Cjuloos2", "https://tec.openplanner.team/stops/Cjumest1"], ["https://tec.openplanner.team/stops/LJAdeho3", "https://tec.openplanner.team/stops/LJAhanq2"], ["https://tec.openplanner.team/stops/Bbchcab1", "https://tec.openplanner.team/stops/Bbchrra2"], ["https://tec.openplanner.team/stops/H2sv212a", "https://tec.openplanner.team/stops/H2sv219b"], ["https://tec.openplanner.team/stops/X757aja", "https://tec.openplanner.team/stops/X757anb"], ["https://tec.openplanner.team/stops/LmTreic2", "https://tec.openplanner.team/stops/LmTzoll2"], ["https://tec.openplanner.team/stops/N569aba", "https://tec.openplanner.team/stops/N569aeb"], ["https://tec.openplanner.team/stops/Bthspha1", "https://tec.openplanner.team/stops/Bwancal2"], ["https://tec.openplanner.team/stops/N254aaa", "https://tec.openplanner.team/stops/N254aab"], ["https://tec.openplanner.team/stops/X658aab", "https://tec.openplanner.team/stops/X659aeb"], ["https://tec.openplanner.team/stops/Lalmitt2", "https://tec.openplanner.team/stops/LAWhein4"], ["https://tec.openplanner.team/stops/LWbboeg1", "https://tec.openplanner.team/stops/LWbboeg2"], ["https://tec.openplanner.team/stops/LaNmuhl2", "https://tec.openplanner.team/stops/LaNmuhl3"], ["https://tec.openplanner.team/stops/N111aea", "https://tec.openplanner.team/stops/N113aba"], ["https://tec.openplanner.team/stops/Lpedeta1", "https://tec.openplanner.team/stops/Lpedeta2"], ["https://tec.openplanner.team/stops/X750aka", "https://tec.openplanner.team/stops/X780aib"], ["https://tec.openplanner.team/stops/LHCbran1", "https://tec.openplanner.team/stops/LHCcroy1"], ["https://tec.openplanner.team/stops/LLncime1", "https://tec.openplanner.team/stops/LPUmer-1"], ["https://tec.openplanner.team/stops/LsVeite1", "https://tec.openplanner.team/stops/LsVprum4"], ["https://tec.openplanner.team/stops/Bwatrte1", "https://tec.openplanner.team/stops/Bwatrte2"], ["https://tec.openplanner.team/stops/H1cu119b", "https://tec.openplanner.team/stops/H1cu128a"], ["https://tec.openplanner.team/stops/Lkiblan1", "https://tec.openplanner.team/stops/Llgstev2"], ["https://tec.openplanner.team/stops/LAieg--3", "https://tec.openplanner.team/stops/LAigrim1"], ["https://tec.openplanner.team/stops/N534aca", "https://tec.openplanner.team/stops/N566ada"], ["https://tec.openplanner.team/stops/H4ty283a", "https://tec.openplanner.team/stops/H4ty283b"], ["https://tec.openplanner.team/stops/X817aeb", "https://tec.openplanner.team/stops/X820aha"], ["https://tec.openplanner.team/stops/Lsnhoco2", "https://tec.openplanner.team/stops/Ltithie2"], ["https://tec.openplanner.team/stops/X601azb", "https://tec.openplanner.team/stops/X601baa"], ["https://tec.openplanner.team/stops/X801asa", "https://tec.openplanner.team/stops/X801cob"], ["https://tec.openplanner.team/stops/LRArami1", "https://tec.openplanner.team/stops/LRArami2"], ["https://tec.openplanner.team/stops/LHrlorc1", "https://tec.openplanner.team/stops/LWbburn2"], ["https://tec.openplanner.team/stops/Lsecris2", "https://tec.openplanner.team/stops/Lsecris3"], ["https://tec.openplanner.team/stops/NL78abb", "https://tec.openplanner.team/stops/NL78acb"], ["https://tec.openplanner.team/stops/LARgare2", "https://tec.openplanner.team/stops/LARgare4"], ["https://tec.openplanner.team/stops/H4mx114a", "https://tec.openplanner.team/stops/H4mx116a"], ["https://tec.openplanner.team/stops/Lagbeno5", "https://tec.openplanner.team/stops/Llgrome1"], ["https://tec.openplanner.team/stops/X672aaa", "https://tec.openplanner.team/stops/X672adb"], ["https://tec.openplanner.team/stops/LrGzent1", "https://tec.openplanner.team/stops/LrGzent2"], ["https://tec.openplanner.team/stops/N260ada", "https://tec.openplanner.team/stops/N260adb"], ["https://tec.openplanner.team/stops/H1cd111b", "https://tec.openplanner.team/stops/H1cd112b"], ["https://tec.openplanner.team/stops/X910aha", "https://tec.openplanner.team/stops/X911akb"], ["https://tec.openplanner.team/stops/Lseaite1", "https://tec.openplanner.team/stops/Lsehaut2"], ["https://tec.openplanner.team/stops/Cctjoue1", "https://tec.openplanner.team/stops/Cctjoue4"], ["https://tec.openplanner.team/stops/Lvtfrai1", "https://tec.openplanner.team/stops/Lvtnico*"], ["https://tec.openplanner.team/stops/N542afb", "https://tec.openplanner.team/stops/N542asa"], ["https://tec.openplanner.team/stops/Cfcecol1", "https://tec.openplanner.team/stops/Cfcrdpr1"], ["https://tec.openplanner.team/stops/LBAcent2", "https://tec.openplanner.team/stops/LBAcere1"], ["https://tec.openplanner.team/stops/H2mm136b", "https://tec.openplanner.team/stops/H2mo131a"], ["https://tec.openplanner.team/stops/X770aca", "https://tec.openplanner.team/stops/X770agb"], ["https://tec.openplanner.team/stops/H4ar103a", "https://tec.openplanner.team/stops/H4ar103b"], ["https://tec.openplanner.team/stops/X318aca", "https://tec.openplanner.team/stops/X361afa"], ["https://tec.openplanner.team/stops/Bhengou2", "https://tec.openplanner.team/stops/Bhenmal2"], ["https://tec.openplanner.team/stops/Bmouegl1", "https://tec.openplanner.team/stops/Bmouegl2"], ["https://tec.openplanner.team/stops/LREairp1", "https://tec.openplanner.team/stops/LREsaul2"], ["https://tec.openplanner.team/stops/LeYloos1", "https://tec.openplanner.team/stops/LeYloos2"], ["https://tec.openplanner.team/stops/NL37aba", "https://tec.openplanner.team/stops/NL37abb"], ["https://tec.openplanner.team/stops/Cmmmarl1", "https://tec.openplanner.team/stops/Cmmmarl2"], ["https://tec.openplanner.team/stops/LSNecol3", "https://tec.openplanner.team/stops/LSNness1"], ["https://tec.openplanner.team/stops/LMIbois1", "https://tec.openplanner.team/stops/LMImc--1"], ["https://tec.openplanner.team/stops/N117aaa", "https://tec.openplanner.team/stops/N117anb"], ["https://tec.openplanner.team/stops/X346afb", "https://tec.openplanner.team/stops/X892aga"], ["https://tec.openplanner.team/stops/X954aba", "https://tec.openplanner.team/stops/X955agb"], ["https://tec.openplanner.team/stops/N202afb", "https://tec.openplanner.team/stops/N202aha"], ["https://tec.openplanner.team/stops/H4bf107a", "https://tec.openplanner.team/stops/H4bn174a"], ["https://tec.openplanner.team/stops/X870adb", "https://tec.openplanner.team/stops/X871aeb"], ["https://tec.openplanner.team/stops/H4fg116a", "https://tec.openplanner.team/stops/H4wn125a"], ["https://tec.openplanner.team/stops/LPLmonu1", "https://tec.openplanner.team/stops/LPLmonu2"], ["https://tec.openplanner.team/stops/LCRabbe2", "https://tec.openplanner.team/stops/LCReg--2"], ["https://tec.openplanner.team/stops/Bbeaap51", "https://tec.openplanner.team/stops/Bbeaegl1"], ["https://tec.openplanner.team/stops/Lenvale1", "https://tec.openplanner.team/stops/Lenvale2"], ["https://tec.openplanner.team/stops/Bnivfle2", "https://tec.openplanner.team/stops/Bnivrec2"], ["https://tec.openplanner.team/stops/Bbchboi1", "https://tec.openplanner.team/stops/Bhtibru2"], ["https://tec.openplanner.team/stops/Blonegl2", "https://tec.openplanner.team/stops/Bptblma2"], ["https://tec.openplanner.team/stops/LEntrix1", "https://tec.openplanner.team/stops/LEntrix2"], ["https://tec.openplanner.team/stops/Bjancha1", "https://tec.openplanner.team/stops/Bolphgr1"], ["https://tec.openplanner.team/stops/LCsfize1", "https://tec.openplanner.team/stops/LCsgend1"], ["https://tec.openplanner.team/stops/LLWcarr2", "https://tec.openplanner.team/stops/LLWmonu1"], ["https://tec.openplanner.team/stops/N501bib", "https://tec.openplanner.team/stops/N501btb"], ["https://tec.openplanner.team/stops/LCIpiet1", "https://tec.openplanner.team/stops/LMXroye1"], ["https://tec.openplanner.team/stops/Lagbeno2", "https://tec.openplanner.team/stops/Lagchen1"], ["https://tec.openplanner.team/stops/LMAhall1", "https://tec.openplanner.team/stops/LMAroch3"], ["https://tec.openplanner.team/stops/Ljugode1", "https://tec.openplanner.team/stops/Ljuplpr2"], ["https://tec.openplanner.team/stops/H4ld129a", "https://tec.openplanner.team/stops/H4ld129b"], ["https://tec.openplanner.team/stops/Lpomart1", "https://tec.openplanner.team/stops/Lpomart2"], ["https://tec.openplanner.team/stops/X925ahb", "https://tec.openplanner.team/stops/X925ata"], ["https://tec.openplanner.team/stops/N501lib", "https://tec.openplanner.team/stops/N501llb"], ["https://tec.openplanner.team/stops/H4bo121a", "https://tec.openplanner.team/stops/H4bo121b"], ["https://tec.openplanner.team/stops/N234abb", "https://tec.openplanner.team/stops/N243adb"], ["https://tec.openplanner.team/stops/H4au144b", "https://tec.openplanner.team/stops/H4og216a"], ["https://tec.openplanner.team/stops/LHUetie*", "https://tec.openplanner.team/stops/LWNwavr2"], ["https://tec.openplanner.team/stops/N165aaa", "https://tec.openplanner.team/stops/N165abb"], ["https://tec.openplanner.team/stops/X601aaa", "https://tec.openplanner.team/stops/X601aca"], ["https://tec.openplanner.team/stops/LBNgarn1", "https://tec.openplanner.team/stops/LMedoum2"], ["https://tec.openplanner.team/stops/N543bfa", "https://tec.openplanner.team/stops/N554afa"], ["https://tec.openplanner.team/stops/LOMtomb2", "https://tec.openplanner.team/stops/LOMware1"], ["https://tec.openplanner.team/stops/LCUthie2", "https://tec.openplanner.team/stops/LSzcoop2"], ["https://tec.openplanner.team/stops/Cgpmoul1", "https://tec.openplanner.team/stops/Cpcha431"], ["https://tec.openplanner.team/stops/X948afb", "https://tec.openplanner.team/stops/X948awa"], ["https://tec.openplanner.team/stops/N209afb", "https://tec.openplanner.team/stops/N209ama"], ["https://tec.openplanner.team/stops/X608aoa", "https://tec.openplanner.team/stops/X608aob"], ["https://tec.openplanner.team/stops/Cmmcver2", "https://tec.openplanner.team/stops/Cmmtomb2"], ["https://tec.openplanner.team/stops/LEN101-1", "https://tec.openplanner.team/stops/LENtour1"], ["https://tec.openplanner.team/stops/Bnivcol1", "https://tec.openplanner.team/stops/Bnivgpl3"], ["https://tec.openplanner.team/stops/Blsmcha3", "https://tec.openplanner.team/stops/Braclin2"], ["https://tec.openplanner.team/stops/Llgcond2", "https://tec.openplanner.team/stops/Llgdesa1"], ["https://tec.openplanner.team/stops/X782ala", "https://tec.openplanner.team/stops/X784aea"], ["https://tec.openplanner.team/stops/H4mo159a", "https://tec.openplanner.team/stops/H4mo192a"], ["https://tec.openplanner.team/stops/Llmbell1", "https://tec.openplanner.team/stops/Lprcite1"], ["https://tec.openplanner.team/stops/X617aeb", "https://tec.openplanner.team/stops/X695aca"], ["https://tec.openplanner.team/stops/Btlbcul2", "https://tec.openplanner.team/stops/Btlbmel1"], ["https://tec.openplanner.team/stops/N120aba", "https://tec.openplanner.team/stops/N120abd"], ["https://tec.openplanner.team/stops/X687aaa", "https://tec.openplanner.team/stops/X687aba"], ["https://tec.openplanner.team/stops/H4mv192a", "https://tec.openplanner.team/stops/H4mv196a"], ["https://tec.openplanner.team/stops/Ctaphaz1", "https://tec.openplanner.team/stops/N543cba"], ["https://tec.openplanner.team/stops/LCelabi1", "https://tec.openplanner.team/stops/LFabraa2"], ["https://tec.openplanner.team/stops/Cjudest3", "https://tec.openplanner.team/stops/Cjudest4"], ["https://tec.openplanner.team/stops/LeLdorf1", "https://tec.openplanner.team/stops/LeLherz2"], ["https://tec.openplanner.team/stops/N241afa", "https://tec.openplanner.team/stops/N585ala"], ["https://tec.openplanner.team/stops/Bnilspe3", "https://tec.openplanner.team/stops/Btsllib1"], ["https://tec.openplanner.team/stops/N501idb", "https://tec.openplanner.team/stops/N501nba"], ["https://tec.openplanner.team/stops/H1mr122a", "https://tec.openplanner.team/stops/H1wi151b"], ["https://tec.openplanner.team/stops/Cplcafp2", "https://tec.openplanner.team/stops/Cplcite2"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X770adb"], ["https://tec.openplanner.team/stops/Llgatel1", "https://tec.openplanner.team/stops/Llggeer3"], ["https://tec.openplanner.team/stops/Cfocorn2", "https://tec.openplanner.team/stops/Cfovent2"], ["https://tec.openplanner.team/stops/H4fr394a", "https://tec.openplanner.team/stops/H4ty325a"], ["https://tec.openplanner.team/stops/N576adb", "https://tec.openplanner.team/stops/N576anb"], ["https://tec.openplanner.team/stops/N501dtb", "https://tec.openplanner.team/stops/N501dza"], ["https://tec.openplanner.team/stops/H4ty327b", "https://tec.openplanner.team/stops/H4ty358b"], ["https://tec.openplanner.team/stops/LPLcent1", "https://tec.openplanner.team/stops/LPLruis2"], ["https://tec.openplanner.team/stops/X659awa", "https://tec.openplanner.team/stops/X659baa"], ["https://tec.openplanner.team/stops/LJEmalg2", "https://tec.openplanner.team/stops/LSkkeri1"], ["https://tec.openplanner.team/stops/X768amb", "https://tec.openplanner.team/stops/X769ajb"], ["https://tec.openplanner.team/stops/H4ce107a", "https://tec.openplanner.team/stops/H4mx115a"], ["https://tec.openplanner.team/stops/N355aca", "https://tec.openplanner.team/stops/N874agb"], ["https://tec.openplanner.team/stops/X542adb", "https://tec.openplanner.team/stops/X542aib"], ["https://tec.openplanner.team/stops/H4he101a", "https://tec.openplanner.team/stops/H4mx116b"], ["https://tec.openplanner.team/stops/H4au144a", "https://tec.openplanner.team/stops/H4og216b"], ["https://tec.openplanner.team/stops/LrAeife2", "https://tec.openplanner.team/stops/LrAwald1"], ["https://tec.openplanner.team/stops/LFsconc1", "https://tec.openplanner.team/stops/LFsherm1"], ["https://tec.openplanner.team/stops/Lagcolo1", "https://tec.openplanner.team/stops/Lagcolo2"], ["https://tec.openplanner.team/stops/X949ahb", "https://tec.openplanner.team/stops/X949ama"], ["https://tec.openplanner.team/stops/N236ama", "https://tec.openplanner.team/stops/N236aob"], ["https://tec.openplanner.team/stops/LVllieg1", "https://tec.openplanner.team/stops/LVlplan1"], ["https://tec.openplanner.team/stops/LVLf10-2", "https://tec.openplanner.team/stops/LVLruis2"], ["https://tec.openplanner.team/stops/Cgzha622", "https://tec.openplanner.team/stops/Ctucamb1"], ["https://tec.openplanner.team/stops/H1lm106a", "https://tec.openplanner.team/stops/H1to155a"], ["https://tec.openplanner.team/stops/LVleg--1", "https://tec.openplanner.team/stops/LVlleme2"], ["https://tec.openplanner.team/stops/LHrchez2", "https://tec.openplanner.team/stops/LHreg--2"], ["https://tec.openplanner.team/stops/N532amb", "https://tec.openplanner.team/stops/N574aga"], ["https://tec.openplanner.team/stops/Lverdep1", "https://tec.openplanner.team/stops/Lverogi2"], ["https://tec.openplanner.team/stops/Bzlufbo2", "https://tec.openplanner.team/stops/Bzluvil2"], ["https://tec.openplanner.team/stops/Lemmusc2", "https://tec.openplanner.team/stops/Lvchaus1"], ["https://tec.openplanner.team/stops/Blincal2", "https://tec.openplanner.team/stops/Blingar3"], ["https://tec.openplanner.team/stops/Ladgron2", "https://tec.openplanner.team/stops/LELhard2"], ["https://tec.openplanner.team/stops/Cctbinc1", "https://tec.openplanner.team/stops/NC44aea"], ["https://tec.openplanner.team/stops/H2ca106a", "https://tec.openplanner.team/stops/H2ml114a"], ["https://tec.openplanner.team/stops/H5pe126a", "https://tec.openplanner.team/stops/H5pe147b"], ["https://tec.openplanner.team/stops/X824aac", "https://tec.openplanner.team/stops/X824aca"], ["https://tec.openplanner.team/stops/LSNbouh3", "https://tec.openplanner.team/stops/LSNfays1"], ["https://tec.openplanner.team/stops/Lmnjeha1", "https://tec.openplanner.team/stops/Lmnjeha2"], ["https://tec.openplanner.team/stops/H1mm122a", "https://tec.openplanner.team/stops/H1mm125c"], ["https://tec.openplanner.team/stops/N526adb", "https://tec.openplanner.team/stops/N574aeb"], ["https://tec.openplanner.team/stops/Cnapair2", "https://tec.openplanner.team/stops/N160afa"], ["https://tec.openplanner.team/stops/H4mo138b", "https://tec.openplanner.team/stops/H4mo169a"], ["https://tec.openplanner.team/stops/LoUpete2", "https://tec.openplanner.team/stops/LsC216-2"], ["https://tec.openplanner.team/stops/Bnivpgr1", "https://tec.openplanner.team/stops/Bnivtra1"], ["https://tec.openplanner.team/stops/H5at116a", "https://tec.openplanner.team/stops/H5at119a"], ["https://tec.openplanner.team/stops/LSPchap2", "https://tec.openplanner.team/stops/LSProya1"], ["https://tec.openplanner.team/stops/H5qu142a", "https://tec.openplanner.team/stops/H5qu146a"], ["https://tec.openplanner.team/stops/LRmrode1", "https://tec.openplanner.team/stops/LRmsmvo2"], ["https://tec.openplanner.team/stops/LCPbell1", "https://tec.openplanner.team/stops/LPOchan2"], ["https://tec.openplanner.team/stops/Bmsgpfo2", "https://tec.openplanner.team/stops/Bmsgstj1"], ["https://tec.openplanner.team/stops/N576ahb", "https://tec.openplanner.team/stops/N576aja"], ["https://tec.openplanner.team/stops/LSzetoi2", "https://tec.openplanner.team/stops/LSznoel2"], ["https://tec.openplanner.team/stops/H2na134a", "https://tec.openplanner.team/stops/H3so185b"], ["https://tec.openplanner.team/stops/H1ba102a", "https://tec.openplanner.team/stops/H1ba114b"], ["https://tec.openplanner.team/stops/X796aab", "https://tec.openplanner.team/stops/X982bna"], ["https://tec.openplanner.team/stops/N501kvb", "https://tec.openplanner.team/stops/N501mfa"], ["https://tec.openplanner.team/stops/Brixcme2", "https://tec.openplanner.team/stops/Brixga11"], ["https://tec.openplanner.team/stops/Bblarbe2", "https://tec.openplanner.team/stops/Bblasse1"], ["https://tec.openplanner.team/stops/H1ho131a", "https://tec.openplanner.team/stops/H1ho143b"], ["https://tec.openplanner.team/stops/Cnacroc2", "https://tec.openplanner.team/stops/Cnaferr2"], ["https://tec.openplanner.team/stops/Cslegli1", "https://tec.openplanner.team/stops/Cvtchap2"], ["https://tec.openplanner.team/stops/LRRemul1", "https://tec.openplanner.team/stops/LRRlimi2"], ["https://tec.openplanner.team/stops/LLYpeup1", "https://tec.openplanner.team/stops/LLYplac1"], ["https://tec.openplanner.team/stops/LGLgare*", "https://tec.openplanner.team/stops/LPAeg--1"], ["https://tec.openplanner.team/stops/X901amb", "https://tec.openplanner.team/stops/X999aqb"], ["https://tec.openplanner.team/stops/LCn4---1", "https://tec.openplanner.team/stops/LCnvill1"], ["https://tec.openplanner.team/stops/LLOchpl1", "https://tec.openplanner.team/stops/LLOcreu2"], ["https://tec.openplanner.team/stops/LBLcalv2", "https://tec.openplanner.team/stops/LBLvici2"], ["https://tec.openplanner.team/stops/Lseivoz1", "https://tec.openplanner.team/stops/Lseivoz2"], ["https://tec.openplanner.team/stops/LETtemp1", "https://tec.openplanner.team/stops/LETtemp2"], ["https://tec.openplanner.team/stops/X801ava", "https://tec.openplanner.team/stops/X801awb"], ["https://tec.openplanner.team/stops/H4he103b", "https://tec.openplanner.team/stops/H4he105b"], ["https://tec.openplanner.team/stops/X948aba", "https://tec.openplanner.team/stops/X948aca"], ["https://tec.openplanner.team/stops/Bitrnus2", "https://tec.openplanner.team/stops/Bosqpco2"], ["https://tec.openplanner.team/stops/H1bb115a", "https://tec.openplanner.team/stops/H1bb119b"], ["https://tec.openplanner.team/stops/X793aia", "https://tec.openplanner.team/stops/X793aib"], ["https://tec.openplanner.team/stops/N585aba", "https://tec.openplanner.team/stops/N585aia"], ["https://tec.openplanner.team/stops/X624aba", "https://tec.openplanner.team/stops/X624ada"], ["https://tec.openplanner.team/stops/Ccpetan2", "https://tec.openplanner.team/stops/Cptccas2"], ["https://tec.openplanner.team/stops/Cjxpris1", "https://tec.openplanner.team/stops/Cjxpris2"], ["https://tec.openplanner.team/stops/X657aeb", "https://tec.openplanner.team/stops/X671aba"], ["https://tec.openplanner.team/stops/Clrmarl2", "https://tec.openplanner.team/stops/Clrmarl3"], ["https://tec.openplanner.team/stops/N501fwa", "https://tec.openplanner.team/stops/N501fwb"], ["https://tec.openplanner.team/stops/H4ta135a", "https://tec.openplanner.team/stops/H4ta135b"], ["https://tec.openplanner.team/stops/LAUpind2", "https://tec.openplanner.team/stops/LAUross1"], ["https://tec.openplanner.team/stops/LLAbure1", "https://tec.openplanner.team/stops/LLAchpl2"], ["https://tec.openplanner.team/stops/H1wa142a", "https://tec.openplanner.team/stops/H1wa147a"], ["https://tec.openplanner.team/stops/LMAgare*", "https://tec.openplanner.team/stops/LMAgare0"], ["https://tec.openplanner.team/stops/H2sb259a", "https://tec.openplanner.team/stops/H3lr132a"], ["https://tec.openplanner.team/stops/Cfocobe2", "https://tec.openplanner.team/stops/Cptberg1"], ["https://tec.openplanner.team/stops/Bborppa2", "https://tec.openplanner.team/stops/Bitrpar1"], ["https://tec.openplanner.team/stops/Cjuphil1", "https://tec.openplanner.team/stops/Cjuphil2"], ["https://tec.openplanner.team/stops/Lvehodi4", "https://tec.openplanner.team/stops/Lveveou1"], ["https://tec.openplanner.team/stops/X879ara", "https://tec.openplanner.team/stops/X879arb"], ["https://tec.openplanner.team/stops/N501hxz", "https://tec.openplanner.team/stops/N501lzy"], ["https://tec.openplanner.team/stops/LVIjacq2", "https://tec.openplanner.team/stops/LVIsacr1"], ["https://tec.openplanner.team/stops/Lprmc--3", "https://tec.openplanner.team/stops/Lprmc--4"], ["https://tec.openplanner.team/stops/X982bea", "https://tec.openplanner.team/stops/X982beb"], ["https://tec.openplanner.team/stops/Blanraa1", "https://tec.openplanner.team/stops/Blanraa2"], ["https://tec.openplanner.team/stops/LHVetoi1", "https://tec.openplanner.team/stops/LHVetoi2"], ["https://tec.openplanner.team/stops/H2ha127a", "https://tec.openplanner.team/stops/H2ha143b"], ["https://tec.openplanner.team/stops/Cjxetri1", "https://tec.openplanner.team/stops/Cjxthom1"], ["https://tec.openplanner.team/stops/N554ada", "https://tec.openplanner.team/stops/N554aeb"], ["https://tec.openplanner.team/stops/Bdonlat2", "https://tec.openplanner.team/stops/Blthbss1"], ["https://tec.openplanner.team/stops/Ljuchap3", "https://tec.openplanner.team/stops/Ljujaur1"], ["https://tec.openplanner.team/stops/H2ch102a", "https://tec.openplanner.team/stops/H2ch112a"], ["https://tec.openplanner.team/stops/LRRbuta2", "https://tec.openplanner.team/stops/LRRrimi2"], ["https://tec.openplanner.team/stops/LEShony1", "https://tec.openplanner.team/stops/LTIptme1"], ["https://tec.openplanner.team/stops/LBSnouw1", "https://tec.openplanner.team/stops/LBSnouw2"], ["https://tec.openplanner.team/stops/Bgnvpap1", "https://tec.openplanner.team/stops/Brixala1"], ["https://tec.openplanner.team/stops/NL57afa", "https://tec.openplanner.team/stops/NL57agb"], ["https://tec.openplanner.team/stops/LGEpt--1", "https://tec.openplanner.team/stops/LGEpt--2"], ["https://tec.openplanner.team/stops/Cdaptca1", "https://tec.openplanner.team/stops/Cdaptca4"], ["https://tec.openplanner.team/stops/LBveg--2", "https://tec.openplanner.team/stops/LBvviem1"], ["https://tec.openplanner.team/stops/LaUkirc*", "https://tec.openplanner.team/stops/LsTgren2"], ["https://tec.openplanner.team/stops/H5bs102b", "https://tec.openplanner.team/stops/H5bs104b"], ["https://tec.openplanner.team/stops/X614aha", "https://tec.openplanner.team/stops/X615anb"], ["https://tec.openplanner.team/stops/H2ec104b", "https://tec.openplanner.team/stops/H2me116a"], ["https://tec.openplanner.team/stops/Clddeve1", "https://tec.openplanner.team/stops/Cmymarb2"], ["https://tec.openplanner.team/stops/LVHtill2", "https://tec.openplanner.team/stops/LVsboug1"], ["https://tec.openplanner.team/stops/Bnetrbr1", "https://tec.openplanner.team/stops/Bnetrbr2"], ["https://tec.openplanner.team/stops/LrApont2", "https://tec.openplanner.team/stops/LrAtitf2"], ["https://tec.openplanner.team/stops/X615ada", "https://tec.openplanner.team/stops/X681aga"], ["https://tec.openplanner.team/stops/X661aoa", "https://tec.openplanner.team/stops/X661bcb"], ["https://tec.openplanner.team/stops/Lseathe2", "https://tec.openplanner.team/stops/Lsebeau2"], ["https://tec.openplanner.team/stops/Bobacar2", "https://tec.openplanner.team/stops/Broscha1"], ["https://tec.openplanner.team/stops/N118aqa", "https://tec.openplanner.team/stops/N118aub"], ["https://tec.openplanner.team/stops/Bgemga12", "https://tec.openplanner.team/stops/N522aja"], ["https://tec.openplanner.team/stops/LrUgeme1", "https://tec.openplanner.team/stops/LrUkult1"], ["https://tec.openplanner.team/stops/X901ama", "https://tec.openplanner.team/stops/X901amb"], ["https://tec.openplanner.team/stops/LkEgds-1", "https://tec.openplanner.team/stops/LkEspor1"], ["https://tec.openplanner.team/stops/LNAdemo2", "https://tec.openplanner.team/stops/LSSfont1"], ["https://tec.openplanner.team/stops/X733aja", "https://tec.openplanner.team/stops/X734aqa"], ["https://tec.openplanner.team/stops/LCsange2", "https://tec.openplanner.team/stops/LCsjone2"], ["https://tec.openplanner.team/stops/X801ajb", "https://tec.openplanner.team/stops/X801alb"], ["https://tec.openplanner.team/stops/X907afa", "https://tec.openplanner.team/stops/X907aha"], ["https://tec.openplanner.team/stops/X601aqa", "https://tec.openplanner.team/stops/X601btb"], ["https://tec.openplanner.team/stops/N501hjb", "https://tec.openplanner.team/stops/N501lcb"], ["https://tec.openplanner.team/stops/N163aaa", "https://tec.openplanner.team/stops/N163abb"], ["https://tec.openplanner.team/stops/N550afb", "https://tec.openplanner.team/stops/N550agb"], ["https://tec.openplanner.team/stops/Lvtchpl1", "https://tec.openplanner.team/stops/Lvtchpl3"], ["https://tec.openplanner.team/stops/H1br123a", "https://tec.openplanner.team/stops/H1vg358b"], ["https://tec.openplanner.team/stops/LAWhein2", "https://tec.openplanner.team/stops/LAWxhen1"], ["https://tec.openplanner.team/stops/LCvneuv4", "https://tec.openplanner.team/stops/LHrlorc1"], ["https://tec.openplanner.team/stops/H1gy113a", "https://tec.openplanner.team/stops/H1og131a"], ["https://tec.openplanner.team/stops/Lvieg--2", "https://tec.openplanner.team/stops/Lvitour2"], ["https://tec.openplanner.team/stops/Bbsivi11", "https://tec.openplanner.team/stops/Bbsivil2"], ["https://tec.openplanner.team/stops/Lmolagu1", "https://tec.openplanner.team/stops/Lmopech1"], ["https://tec.openplanner.team/stops/LLrelec1", "https://tec.openplanner.team/stops/LLrrmaq1"], ["https://tec.openplanner.team/stops/Cchtiro4", "https://tec.openplanner.team/stops/NC01ahb"], ["https://tec.openplanner.team/stops/H4mo164a", "https://tec.openplanner.team/stops/H4rk101a"], ["https://tec.openplanner.team/stops/LeLkalt1", "https://tec.openplanner.team/stops/LwYsour4"], ["https://tec.openplanner.team/stops/H1do109b", "https://tec.openplanner.team/stops/H1do111b"], ["https://tec.openplanner.team/stops/N507aha", "https://tec.openplanner.team/stops/N507amb"], ["https://tec.openplanner.team/stops/Lpeptra2", "https://tec.openplanner.team/stops/LWenouv2"], ["https://tec.openplanner.team/stops/H1be101b", "https://tec.openplanner.team/stops/H1be103a"], ["https://tec.openplanner.team/stops/N515aga", "https://tec.openplanner.team/stops/N515ajb"], ["https://tec.openplanner.team/stops/Bsmgegl1", "https://tec.openplanner.team/stops/Bsmgmar1"], ["https://tec.openplanner.team/stops/Ljhsart4", "https://tec.openplanner.team/stops/Lmnjeha1"], ["https://tec.openplanner.team/stops/N511aqa", "https://tec.openplanner.team/stops/N511ava"], ["https://tec.openplanner.team/stops/Cbwegl1", "https://tec.openplanner.team/stops/Cmg4bra1"], ["https://tec.openplanner.team/stops/X604aba", "https://tec.openplanner.team/stops/X618aab"], ["https://tec.openplanner.team/stops/N219aea", "https://tec.openplanner.team/stops/N219afa"], ["https://tec.openplanner.team/stops/N509awa", "https://tec.openplanner.team/stops/N509bgb"], ["https://tec.openplanner.team/stops/Cmlmatc1", "https://tec.openplanner.team/stops/Cmltomb1"], ["https://tec.openplanner.team/stops/LbOhoff1", "https://tec.openplanner.team/stops/LbOre151"], ["https://tec.openplanner.team/stops/X609aia", "https://tec.openplanner.team/stops/X609ajb"], ["https://tec.openplanner.team/stops/LWechea2", "https://tec.openplanner.team/stops/LWetrib1"], ["https://tec.openplanner.team/stops/H4hx116b", "https://tec.openplanner.team/stops/H4lu126b"], ["https://tec.openplanner.team/stops/Cmygbbo2", "https://tec.openplanner.team/stops/Cmyvert2"], ["https://tec.openplanner.team/stops/Bcbqegl1", "https://tec.openplanner.team/stops/Bcbqgar1"], ["https://tec.openplanner.team/stops/N310abb", "https://tec.openplanner.team/stops/N312aca"], ["https://tec.openplanner.team/stops/X670asa", "https://tec.openplanner.team/stops/X670asb"], ["https://tec.openplanner.team/stops/X766ada", "https://tec.openplanner.team/stops/X766afb"], ["https://tec.openplanner.team/stops/Cselait1", "https://tec.openplanner.team/stops/Csequew2"], ["https://tec.openplanner.team/stops/X354aha", "https://tec.openplanner.team/stops/X354aib"], ["https://tec.openplanner.team/stops/Blhueca2", "https://tec.openplanner.team/stops/Blhutco2"], ["https://tec.openplanner.team/stops/LnIfrie1", "https://tec.openplanner.team/stops/LnIkirc1"], ["https://tec.openplanner.team/stops/H4bo118b", "https://tec.openplanner.team/stops/H4bo122a"], ["https://tec.openplanner.team/stops/Bblamsp2", "https://tec.openplanner.team/stops/Bblamsp3"], ["https://tec.openplanner.team/stops/H1po139a", "https://tec.openplanner.team/stops/H1po154a"], ["https://tec.openplanner.team/stops/H4lz161a", "https://tec.openplanner.team/stops/H4lz161b"], ["https://tec.openplanner.team/stops/NC11anb", "https://tec.openplanner.team/stops/NC11aoa"], ["https://tec.openplanner.team/stops/LMici092", "https://tec.openplanner.team/stops/LMipoti2"], ["https://tec.openplanner.team/stops/H4te248a", "https://tec.openplanner.team/stops/H4te248b"], ["https://tec.openplanner.team/stops/N201aeb", "https://tec.openplanner.team/stops/N201aec"], ["https://tec.openplanner.team/stops/N571aca", "https://tec.openplanner.team/stops/N571aja"], ["https://tec.openplanner.team/stops/LBLgobc2", "https://tec.openplanner.team/stops/LCEeg--2"], ["https://tec.openplanner.team/stops/Bgerd321", "https://tec.openplanner.team/stops/Bgerd322"], ["https://tec.openplanner.team/stops/Bbxltrv2", "https://tec.openplanner.team/stops/Bixlqll1"], ["https://tec.openplanner.team/stops/H2sb223b", "https://tec.openplanner.team/stops/H2sb239c"], ["https://tec.openplanner.team/stops/Bquepos2", "https://tec.openplanner.team/stops/Btubren2"], ["https://tec.openplanner.team/stops/Bronpfe1", "https://tec.openplanner.team/stops/Bronpfe2"], ["https://tec.openplanner.team/stops/X542ahb", "https://tec.openplanner.team/stops/X542aib"], ["https://tec.openplanner.team/stops/Blsmcha3", "https://tec.openplanner.team/stops/Blsmvan2"], ["https://tec.openplanner.team/stops/X811afa", "https://tec.openplanner.team/stops/X811aga"], ["https://tec.openplanner.team/stops/N509asa", "https://tec.openplanner.team/stops/N509ata"], ["https://tec.openplanner.team/stops/H4de112a", "https://tec.openplanner.team/stops/H4ss154b"], ["https://tec.openplanner.team/stops/H4lz124b", "https://tec.openplanner.team/stops/H4lz164a"], ["https://tec.openplanner.team/stops/X872aca", "https://tec.openplanner.team/stops/X872adb"], ["https://tec.openplanner.team/stops/LPUalbe1", "https://tec.openplanner.team/stops/LPUalbe2"], ["https://tec.openplanner.team/stops/LXhcite1", "https://tec.openplanner.team/stops/LXhmara1"], ["https://tec.openplanner.team/stops/Llgbobu6", "https://tec.openplanner.team/stops/Llgdelc2"], ["https://tec.openplanner.team/stops/LTiespe1", "https://tec.openplanner.team/stops/LTiespe4"], ["https://tec.openplanner.team/stops/H4fo117a", "https://tec.openplanner.team/stops/H4fo119b"], ["https://tec.openplanner.team/stops/X607acb", "https://tec.openplanner.team/stops/X621aba"], ["https://tec.openplanner.team/stops/X670adb", "https://tec.openplanner.team/stops/X670aha"], ["https://tec.openplanner.team/stops/LHecime2", "https://tec.openplanner.team/stops/LHSvina1"], ["https://tec.openplanner.team/stops/N222aca", "https://tec.openplanner.team/stops/X222add"], ["https://tec.openplanner.team/stops/H5gr137a", "https://tec.openplanner.team/stops/H5st168a"], ["https://tec.openplanner.team/stops/Bllnein3", "https://tec.openplanner.team/stops/Bllnpsc2"], ["https://tec.openplanner.team/stops/Lmidarc2", "https://tec.openplanner.team/stops/Lmihale2"], ["https://tec.openplanner.team/stops/H2ll260a", "https://tec.openplanner.team/stops/H2ll260b"], ["https://tec.openplanner.team/stops/X723aka", "https://tec.openplanner.team/stops/X723akb"], ["https://tec.openplanner.team/stops/H5qu140a", "https://tec.openplanner.team/stops/H5qu144a"], ["https://tec.openplanner.team/stops/LvA12--3", "https://tec.openplanner.team/stops/LvAkirc3"], ["https://tec.openplanner.team/stops/Cjudelv4", "https://tec.openplanner.team/stops/Cjuepee2"], ["https://tec.openplanner.team/stops/N501dba", "https://tec.openplanner.team/stops/N533aoa"], ["https://tec.openplanner.team/stops/Bbauham2", "https://tec.openplanner.team/stops/Bnivpal1"], ["https://tec.openplanner.team/stops/LCOcrom1", "https://tec.openplanner.team/stops/LSNchen2"], ["https://tec.openplanner.team/stops/Bfelbri3", "https://tec.openplanner.team/stops/Bfelrav1"], ["https://tec.openplanner.team/stops/N571agb", "https://tec.openplanner.team/stops/N571akb"], ["https://tec.openplanner.team/stops/H2le153a", "https://tec.openplanner.team/stops/H2mo122d"], ["https://tec.openplanner.team/stops/LAWdefr1", "https://tec.openplanner.team/stops/LAWhein3"], ["https://tec.openplanner.team/stops/LAIchpl2", "https://tec.openplanner.team/stops/LBzec--2"], ["https://tec.openplanner.team/stops/N501jda", "https://tec.openplanner.team/stops/N501jfb"], ["https://tec.openplanner.team/stops/X363aaa", "https://tec.openplanner.team/stops/X363aab"], ["https://tec.openplanner.team/stops/N355ada", "https://tec.openplanner.team/stops/N874aab"], ["https://tec.openplanner.team/stops/H1fa118b", "https://tec.openplanner.team/stops/H1fa121b"], ["https://tec.openplanner.team/stops/LSMgare2", "https://tec.openplanner.team/stops/LSMlier2"], ["https://tec.openplanner.team/stops/LwAprei2", "https://tec.openplanner.team/stops/LwArabo1"], ["https://tec.openplanner.team/stops/N501fty", "https://tec.openplanner.team/stops/N501fya"], ["https://tec.openplanner.team/stops/X926aba", "https://tec.openplanner.team/stops/X926afa"], ["https://tec.openplanner.team/stops/LCleg--2", "https://tec.openplanner.team/stops/LCltrib2"], ["https://tec.openplanner.team/stops/N561ada", "https://tec.openplanner.team/stops/N561aga"], ["https://tec.openplanner.team/stops/Btubhoq2", "https://tec.openplanner.team/stops/Btubmar2"], ["https://tec.openplanner.team/stops/Cdagoss1", "https://tec.openplanner.team/stops/Cmabegh1"], ["https://tec.openplanner.team/stops/H5rx115a", "https://tec.openplanner.team/stops/H5rx115d"], ["https://tec.openplanner.team/stops/H2hg268c", "https://tec.openplanner.team/stops/H2hg269b"], ["https://tec.openplanner.team/stops/H2hp118a", "https://tec.openplanner.team/stops/H2hp262b"], ["https://tec.openplanner.team/stops/LCSgend2", "https://tec.openplanner.team/stops/LSGmall2"], ["https://tec.openplanner.team/stops/Bbstegl1", "https://tec.openplanner.team/stops/Csdetan1"], ["https://tec.openplanner.team/stops/X877aga", "https://tec.openplanner.team/stops/X995aga"], ["https://tec.openplanner.team/stops/Bgntcbo1", "https://tec.openplanner.team/stops/Bgntcom2"], ["https://tec.openplanner.team/stops/X638aka", "https://tec.openplanner.team/stops/X638akb"], ["https://tec.openplanner.team/stops/X614ala", "https://tec.openplanner.team/stops/X623aab"], ["https://tec.openplanner.team/stops/Lghprea1", "https://tec.openplanner.team/stops/Lghprea3"], ["https://tec.openplanner.team/stops/Cfamonu2", "https://tec.openplanner.team/stops/Cfasamb2"], ["https://tec.openplanner.team/stops/X986adb", "https://tec.openplanner.team/stops/X986ata"], ["https://tec.openplanner.team/stops/H1si164b", "https://tec.openplanner.team/stops/H1si167b"], ["https://tec.openplanner.team/stops/LeUwetz1", "https://tec.openplanner.team/stops/LeUwetz2"], ["https://tec.openplanner.team/stops/LRGchap1", "https://tec.openplanner.team/stops/LRGeg--2"], ["https://tec.openplanner.team/stops/Cchjaur1", "https://tec.openplanner.team/stops/Cchjaur2"], ["https://tec.openplanner.team/stops/Llgcite2", "https://tec.openplanner.team/stops/Llgphol2"], ["https://tec.openplanner.team/stops/H1mm131a", "https://tec.openplanner.team/stops/H1mm131b"], ["https://tec.openplanner.team/stops/LARauto4", "https://tec.openplanner.team/stops/LARgare4"], ["https://tec.openplanner.team/stops/N118afa", "https://tec.openplanner.team/stops/N155aka"], ["https://tec.openplanner.team/stops/H2mg135b", "https://tec.openplanner.team/stops/H2mg144a"], ["https://tec.openplanner.team/stops/LESfoot1", "https://tec.openplanner.team/stops/LESgare1"], ["https://tec.openplanner.team/stops/H4to135a", "https://tec.openplanner.team/stops/H4to137a"], ["https://tec.openplanner.team/stops/H4do108b", "https://tec.openplanner.team/stops/H4do202a"], ["https://tec.openplanner.team/stops/Lveanne1", "https://tec.openplanner.team/stops/Lvecite2"], ["https://tec.openplanner.team/stops/N506bia", "https://tec.openplanner.team/stops/N506blb"], ["https://tec.openplanner.team/stops/Ldifoye2", "https://tec.openplanner.team/stops/Lprorph2"], ["https://tec.openplanner.team/stops/H4oq226b", "https://tec.openplanner.team/stops/H4oq229a"], ["https://tec.openplanner.team/stops/LwYbrkr1", "https://tec.openplanner.team/stops/LwYbruc1"], ["https://tec.openplanner.team/stops/H4er123a", "https://tec.openplanner.team/stops/H4ty331b"], ["https://tec.openplanner.team/stops/H1mk112a", "https://tec.openplanner.team/stops/H1mk112b"], ["https://tec.openplanner.team/stops/X979aea", "https://tec.openplanner.team/stops/X979aeb"], ["https://tec.openplanner.team/stops/Csbsart1", "https://tec.openplanner.team/stops/H1sa114a"], ["https://tec.openplanner.team/stops/Brsgfso1", "https://tec.openplanner.team/stops/Brsgleq1"], ["https://tec.openplanner.team/stops/X345abb", "https://tec.openplanner.team/stops/X363ada"], ["https://tec.openplanner.team/stops/N505aeb", "https://tec.openplanner.team/stops/N505afb"], ["https://tec.openplanner.team/stops/N236ada", "https://tec.openplanner.team/stops/N254aeb"], ["https://tec.openplanner.team/stops/LLmcarr2", "https://tec.openplanner.team/stops/LLmetat1"], ["https://tec.openplanner.team/stops/LFEmala1", "https://tec.openplanner.team/stops/X597amb"], ["https://tec.openplanner.team/stops/N562bka", "https://tec.openplanner.team/stops/N562bkb"], ["https://tec.openplanner.team/stops/N352adb", "https://tec.openplanner.team/stops/N352aeb"], ["https://tec.openplanner.team/stops/Lghgros2", "https://tec.openplanner.team/stops/Lghraul1"], ["https://tec.openplanner.team/stops/LAYambl1", "https://tec.openplanner.team/stops/LAYnias1"], ["https://tec.openplanner.team/stops/H4ty270a", "https://tec.openplanner.team/stops/H4ty290a"], ["https://tec.openplanner.team/stops/N514afb", "https://tec.openplanner.team/stops/N514agb"], ["https://tec.openplanner.team/stops/LGLspor2", "https://tec.openplanner.team/stops/LTolijn*"], ["https://tec.openplanner.team/stops/LmAgruf2", "https://tec.openplanner.team/stops/LtH37c-1"], ["https://tec.openplanner.team/stops/N514ana", "https://tec.openplanner.team/stops/N514aob"], ["https://tec.openplanner.team/stops/X695aaa", "https://tec.openplanner.team/stops/X695aia"], ["https://tec.openplanner.team/stops/N204agb", "https://tec.openplanner.team/stops/N204aka"], ["https://tec.openplanner.team/stops/LFyec--2", "https://tec.openplanner.team/stops/LFyWarc2"], ["https://tec.openplanner.team/stops/LBajean1", "https://tec.openplanner.team/stops/LBajean2"], ["https://tec.openplanner.team/stops/LeUkabe2", "https://tec.openplanner.team/stops/LeUnopr2"], ["https://tec.openplanner.team/stops/X612abb", "https://tec.openplanner.team/stops/X612acb"], ["https://tec.openplanner.team/stops/LVLgotr1", "https://tec.openplanner.team/stops/LVLgrum2"], ["https://tec.openplanner.team/stops/H1ch100a", "https://tec.openplanner.team/stops/H1ch106a"], ["https://tec.openplanner.team/stops/H4ra159b", "https://tec.openplanner.team/stops/H4tp146a"], ["https://tec.openplanner.team/stops/LAMfrai1", "https://tec.openplanner.team/stops/LAMrich1"], ["https://tec.openplanner.team/stops/LSIespe2", "https://tec.openplanner.team/stops/LSInd--2"], ["https://tec.openplanner.team/stops/N521ara", "https://tec.openplanner.team/stops/N521ava"], ["https://tec.openplanner.team/stops/Ccymabo1", "https://tec.openplanner.team/stops/Csrcant1"], ["https://tec.openplanner.team/stops/LCTgare3", "https://tec.openplanner.team/stops/LCTpt--1"], ["https://tec.openplanner.team/stops/X784ada", "https://tec.openplanner.team/stops/X784afa"], ["https://tec.openplanner.team/stops/NR21ahb", "https://tec.openplanner.team/stops/NR21aia"], ["https://tec.openplanner.team/stops/Lflcle-1", "https://tec.openplanner.team/stops/Lflcle-3"], ["https://tec.openplanner.team/stops/H4wa156a", "https://tec.openplanner.team/stops/H4wa156b"], ["https://tec.openplanner.team/stops/LHCandr1", "https://tec.openplanner.team/stops/LHCmonu3"], ["https://tec.openplanner.team/stops/N135bga", "https://tec.openplanner.team/stops/N135bgb"], ["https://tec.openplanner.team/stops/N209ada", "https://tec.openplanner.team/stops/N209aha"], ["https://tec.openplanner.team/stops/X744aab", "https://tec.openplanner.team/stops/X746ahd"], ["https://tec.openplanner.team/stops/H1eo108b", "https://tec.openplanner.team/stops/H1mj128b"], ["https://tec.openplanner.team/stops/Btstbbu1", "https://tec.openplanner.team/stops/N524acb"], ["https://tec.openplanner.team/stops/LMnlogi2", "https://tec.openplanner.team/stops/N222aeb"], ["https://tec.openplanner.team/stops/Cgyrrep2", "https://tec.openplanner.team/stops/Cgystbe2"], ["https://tec.openplanner.team/stops/Llgavoc1", "https://tec.openplanner.team/stops/Llgrame2"], ["https://tec.openplanner.team/stops/Lvegc-1*", "https://tec.openplanner.team/stops/Lvegc--6"], ["https://tec.openplanner.team/stops/LOL6che2", "https://tec.openplanner.team/stops/LOLfoss1"], ["https://tec.openplanner.team/stops/Cchblne1", "https://tec.openplanner.team/stops/Cchplan2"], ["https://tec.openplanner.team/stops/N212aea", "https://tec.openplanner.team/stops/N212akb"], ["https://tec.openplanner.team/stops/X615akb", "https://tec.openplanner.team/stops/X615ana"], ["https://tec.openplanner.team/stops/N534aeb", "https://tec.openplanner.team/stops/N534agb"], ["https://tec.openplanner.team/stops/Cmaprov1", "https://tec.openplanner.team/stops/Cmareun1"], ["https://tec.openplanner.team/stops/Bhaawdr1", "https://tec.openplanner.team/stops/Bhaawdr2"], ["https://tec.openplanner.team/stops/NC02aaa", "https://tec.openplanner.team/stops/NC02aab"], ["https://tec.openplanner.team/stops/LhIfrie1", "https://tec.openplanner.team/stops/LhIkirc*"], ["https://tec.openplanner.team/stops/H1do121a", "https://tec.openplanner.team/stops/H1do124a"], ["https://tec.openplanner.team/stops/N559acb", "https://tec.openplanner.team/stops/NL77aaa"], ["https://tec.openplanner.team/stops/H4ty283b", "https://tec.openplanner.team/stops/H4ty308e"], ["https://tec.openplanner.team/stops/N525ata", "https://tec.openplanner.team/stops/N526aaa"], ["https://tec.openplanner.team/stops/X877acb", "https://tec.openplanner.team/stops/X877aia"], ["https://tec.openplanner.team/stops/X889aab", "https://tec.openplanner.team/stops/X899aja"], ["https://tec.openplanner.team/stops/X672aba", "https://tec.openplanner.team/stops/X672abb"], ["https://tec.openplanner.team/stops/X834aab", "https://tec.openplanner.team/stops/X834abb"], ["https://tec.openplanner.team/stops/Cci22ao1", "https://tec.openplanner.team/stops/Ccicloc1"], ["https://tec.openplanner.team/stops/LSkcomb1", "https://tec.openplanner.team/stops/LSkdouf1"], ["https://tec.openplanner.team/stops/Lthfren2", "https://tec.openplanner.team/stops/LWahott1"], ["https://tec.openplanner.team/stops/X746aea", "https://tec.openplanner.team/stops/X746afa"], ["https://tec.openplanner.team/stops/LFR201-2", "https://tec.openplanner.team/stops/LFRspa-2"], ["https://tec.openplanner.team/stops/H4ma202b", "https://tec.openplanner.team/stops/H4ma398a"], ["https://tec.openplanner.team/stops/LBpcren1", "https://tec.openplanner.team/stops/LLagert*"], ["https://tec.openplanner.team/stops/Llgfoss2", "https://tec.openplanner.team/stops/Llghec-1"], ["https://tec.openplanner.team/stops/Cgyhaie1", "https://tec.openplanner.team/stops/Cmtdepo2"], ["https://tec.openplanner.team/stops/Bhenfer1", "https://tec.openplanner.team/stops/Bhenfla1"], ["https://tec.openplanner.team/stops/N120aaa", "https://tec.openplanner.team/stops/N120abc"], ["https://tec.openplanner.team/stops/N385aca", "https://tec.openplanner.team/stops/N385adb"], ["https://tec.openplanner.team/stops/Cchdagn1", "https://tec.openplanner.team/stops/Ccheden1"], ["https://tec.openplanner.team/stops/H4he104b", "https://tec.openplanner.team/stops/H4he107b"], ["https://tec.openplanner.team/stops/Lsmjalh1", "https://tec.openplanner.team/stops/Lsmjalh2"], ["https://tec.openplanner.team/stops/H1vh136a", "https://tec.openplanner.team/stops/H1vh136c"], ["https://tec.openplanner.team/stops/Blkbbeu1", "https://tec.openplanner.team/stops/Blkbbeu2"], ["https://tec.openplanner.team/stops/LAVcime2", "https://tec.openplanner.team/stops/LAVstat2"], ["https://tec.openplanner.team/stops/H4ab103a", "https://tec.openplanner.team/stops/H5ma180b"], ["https://tec.openplanner.team/stops/Bitrcha2", "https://tec.openplanner.team/stops/Bitreco2"], ["https://tec.openplanner.team/stops/X716aca", "https://tec.openplanner.team/stops/X717agd"], ["https://tec.openplanner.team/stops/H1hq129a", "https://tec.openplanner.team/stops/H1sy148a"], ["https://tec.openplanner.team/stops/X811aca", "https://tec.openplanner.team/stops/X811acb"], ["https://tec.openplanner.team/stops/X727aga", "https://tec.openplanner.team/stops/X747aaa"], ["https://tec.openplanner.team/stops/H4to136a", "https://tec.openplanner.team/stops/H5at135a"], ["https://tec.openplanner.team/stops/Cradest2", "https://tec.openplanner.team/stops/Crajasm3"], ["https://tec.openplanner.team/stops/LsVprum1", "https://tec.openplanner.team/stops/LwSbrei2"], ["https://tec.openplanner.team/stops/LESmich1", "https://tec.openplanner.team/stops/LESmich2"], ["https://tec.openplanner.team/stops/Clgrsoc2", "https://tec.openplanner.team/stops/H1tt106b"], ["https://tec.openplanner.team/stops/Ccogrha2", "https://tec.openplanner.team/stops/Cpceclu1"], ["https://tec.openplanner.team/stops/H4ir166b", "https://tec.openplanner.team/stops/H5at139a"], ["https://tec.openplanner.team/stops/X638aib", "https://tec.openplanner.team/stops/X638aja"], ["https://tec.openplanner.team/stops/H4wu376a", "https://tec.openplanner.team/stops/H4wu376b"], ["https://tec.openplanner.team/stops/H1do131a", "https://tec.openplanner.team/stops/H1do131c"], ["https://tec.openplanner.team/stops/Cjucar02", "https://tec.openplanner.team/stops/CMcarr2"], ["https://tec.openplanner.team/stops/N101ajb", "https://tec.openplanner.team/stops/N151aha"], ["https://tec.openplanner.team/stops/H4wi164a", "https://tec.openplanner.team/stops/H4wi175a"], ["https://tec.openplanner.team/stops/Lbocruc2", "https://tec.openplanner.team/stops/Lbopote1"], ["https://tec.openplanner.team/stops/Bcbqh451", "https://tec.openplanner.team/stops/Bcbqhai1"], ["https://tec.openplanner.team/stops/LBslama1", "https://tec.openplanner.team/stops/LBsoha-2"], ["https://tec.openplanner.team/stops/Loucent1", "https://tec.openplanner.team/stops/Lousite4"], ["https://tec.openplanner.team/stops/N154aaa", "https://tec.openplanner.team/stops/N154acb"], ["https://tec.openplanner.team/stops/Cwgmart2", "https://tec.openplanner.team/stops/Cwgplac2"], ["https://tec.openplanner.team/stops/Cgzdeve1", "https://tec.openplanner.team/stops/Clrwesp1"], ["https://tec.openplanner.team/stops/Bramgar1", "https://tec.openplanner.team/stops/NB33aja"], ["https://tec.openplanner.team/stops/H4bf106a", "https://tec.openplanner.team/stops/H4bf106b"], ["https://tec.openplanner.team/stops/N584awb", "https://tec.openplanner.team/stops/N584axb"], ["https://tec.openplanner.team/stops/N224agc", "https://tec.openplanner.team/stops/X224agb"], ["https://tec.openplanner.team/stops/Bgnvcom1", "https://tec.openplanner.team/stops/Bgnvcom2"], ["https://tec.openplanner.team/stops/Bgemibb2", "https://tec.openplanner.team/stops/Bgemkal2"], ["https://tec.openplanner.team/stops/LBachpl2", "https://tec.openplanner.team/stops/LNEgare*"], ["https://tec.openplanner.team/stops/H4fa126a", "https://tec.openplanner.team/stops/H4fa126c"], ["https://tec.openplanner.team/stops/N501hka", "https://tec.openplanner.team/stops/N501mib"], ["https://tec.openplanner.team/stops/N153aaa", "https://tec.openplanner.team/stops/N153abb"], ["https://tec.openplanner.team/stops/LAVpequ1", "https://tec.openplanner.team/stops/LAVpequ2"], ["https://tec.openplanner.team/stops/Lagcile1", "https://tec.openplanner.team/stops/Lagcile2"], ["https://tec.openplanner.team/stops/Bwavche1", "https://tec.openplanner.team/stops/Bwavche2"], ["https://tec.openplanner.team/stops/Llghaut1", "https://tec.openplanner.team/stops/Llghaut2"], ["https://tec.openplanner.team/stops/Borbode1", "https://tec.openplanner.team/stops/Borborb2"], ["https://tec.openplanner.team/stops/Brixchw1", "https://tec.openplanner.team/stops/Brixwav2"], ["https://tec.openplanner.team/stops/X362aba", "https://tec.openplanner.team/stops/X362aca"], ["https://tec.openplanner.team/stops/LFHjamo1", "https://tec.openplanner.team/stops/LMOfrel2"], ["https://tec.openplanner.team/stops/X801amb", "https://tec.openplanner.team/stops/X899ahb"], ["https://tec.openplanner.team/stops/LJAbois1", "https://tec.openplanner.team/stops/LJAroue1"], ["https://tec.openplanner.team/stops/Bbiepon1", "https://tec.openplanner.team/stops/Bgzdpco2"], ["https://tec.openplanner.team/stops/H1wa162b", "https://tec.openplanner.team/stops/H1wg125a"], ["https://tec.openplanner.team/stops/Ccupomp2", "https://tec.openplanner.team/stops/Cpipost1"], ["https://tec.openplanner.team/stops/LSJ38--1", "https://tec.openplanner.team/stops/LWRferm2"], ["https://tec.openplanner.team/stops/NR21aca", "https://tec.openplanner.team/stops/NR21aga"], ["https://tec.openplanner.team/stops/Llgherm1", "https://tec.openplanner.team/stops/Llgthie1"], ["https://tec.openplanner.team/stops/N357aea", "https://tec.openplanner.team/stops/N357aeb"], ["https://tec.openplanner.team/stops/H1mb131a", "https://tec.openplanner.team/stops/H1mb135a"], ["https://tec.openplanner.team/stops/N136aab", "https://tec.openplanner.team/stops/N138aea"], ["https://tec.openplanner.team/stops/N516aba", "https://tec.openplanner.team/stops/N516amb"], ["https://tec.openplanner.team/stops/X801cha", "https://tec.openplanner.team/stops/X836ahb"], ["https://tec.openplanner.team/stops/X780aha", "https://tec.openplanner.team/stops/X780atb"], ["https://tec.openplanner.team/stops/Buccplj2", "https://tec.openplanner.team/stops/Buccrac1"], ["https://tec.openplanner.team/stops/H2bh107b", "https://tec.openplanner.team/stops/H2jo162b"], ["https://tec.openplanner.team/stops/X394aeb", "https://tec.openplanner.team/stops/X397aac"], ["https://tec.openplanner.team/stops/LkRrauw1", "https://tec.openplanner.team/stops/LmUzent2"], ["https://tec.openplanner.team/stops/X595aia", "https://tec.openplanner.team/stops/X595aib"], ["https://tec.openplanner.team/stops/Bincfer2", "https://tec.openplanner.team/stops/Binclon2"], ["https://tec.openplanner.team/stops/LcRmich1", "https://tec.openplanner.team/stops/LrDkirc2"], ["https://tec.openplanner.team/stops/X673aba", "https://tec.openplanner.team/stops/X673adb"], ["https://tec.openplanner.team/stops/X696aaa", "https://tec.openplanner.team/stops/X696aga"], ["https://tec.openplanner.team/stops/N580aab", "https://tec.openplanner.team/stops/N580adb"], ["https://tec.openplanner.team/stops/X750asa", "https://tec.openplanner.team/stops/X750bab"], ["https://tec.openplanner.team/stops/H4fl179a", "https://tec.openplanner.team/stops/H4mg139a"], ["https://tec.openplanner.team/stops/LEMeg--1", "https://tec.openplanner.team/stops/LEMfort2"], ["https://tec.openplanner.team/stops/LWacime2", "https://tec.openplanner.team/stops/LWacime3"], ["https://tec.openplanner.team/stops/Lvecrot1", "https://tec.openplanner.team/stops/Lveinva1"], ["https://tec.openplanner.team/stops/X561aab", "https://tec.openplanner.team/stops/X576afb"], ["https://tec.openplanner.team/stops/LFOchab2", "https://tec.openplanner.team/stops/LKmmelo2"], ["https://tec.openplanner.team/stops/N351ava", "https://tec.openplanner.team/stops/N351avb"], ["https://tec.openplanner.team/stops/LMNcite2", "https://tec.openplanner.team/stops/LMNheme2"], ["https://tec.openplanner.team/stops/Bnivind1", "https://tec.openplanner.team/stops/Bnivind2"], ["https://tec.openplanner.team/stops/Bbiemse1", "https://tec.openplanner.team/stops/Bgzdcen2"], ["https://tec.openplanner.team/stops/LeYheid2", "https://tec.openplanner.team/stops/LhSheid1"], ["https://tec.openplanner.team/stops/H4ro157b", "https://tec.openplanner.team/stops/H5pe135b"], ["https://tec.openplanner.team/stops/LTieg--2", "https://tec.openplanner.team/stops/LTiforg2"], ["https://tec.openplanner.team/stops/Cauushm1", "https://tec.openplanner.team/stops/N543aza"], ["https://tec.openplanner.team/stops/Cfmchap1", "https://tec.openplanner.team/stops/Cfmgrmo1"], ["https://tec.openplanner.team/stops/LMedoum2", "https://tec.openplanner.team/stops/LMemora2"], ["https://tec.openplanner.team/stops/Lvcreve1", "https://tec.openplanner.team/stops/Lvcvand1"], ["https://tec.openplanner.team/stops/X773aib", "https://tec.openplanner.team/stops/X954ahb"], ["https://tec.openplanner.team/stops/N236ana", "https://tec.openplanner.team/stops/N236aob"], ["https://tec.openplanner.team/stops/N569aab", "https://tec.openplanner.team/stops/N569abb"], ["https://tec.openplanner.team/stops/X362aca", "https://tec.openplanner.team/stops/X362acb"], ["https://tec.openplanner.team/stops/Bwagsta1", "https://tec.openplanner.team/stops/Cwgmell3"], ["https://tec.openplanner.team/stops/X940aba", "https://tec.openplanner.team/stops/X940abb"], ["https://tec.openplanner.team/stops/Bmlncle1", "https://tec.openplanner.team/stops/Bmlncle2"], ["https://tec.openplanner.team/stops/N539ama", "https://tec.openplanner.team/stops/N539amb"], ["https://tec.openplanner.team/stops/LBSvi321", "https://tec.openplanner.team/stops/LBSvi521"], ["https://tec.openplanner.team/stops/LPRmc--1", "https://tec.openplanner.team/stops/LPRmc--4"], ["https://tec.openplanner.team/stops/LRRbonr1", "https://tec.openplanner.team/stops/LRRpost1"], ["https://tec.openplanner.team/stops/Bopplon1", "https://tec.openplanner.team/stops/Bopplon2"], ["https://tec.openplanner.team/stops/X757aia", "https://tec.openplanner.team/stops/X757aib"], ["https://tec.openplanner.team/stops/N135aka", "https://tec.openplanner.team/stops/N135akb"], ["https://tec.openplanner.team/stops/LVLf37-1", "https://tec.openplanner.team/stops/LVLf37-2"], ["https://tec.openplanner.team/stops/Bsdampe1", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/N501ihy", "https://tec.openplanner.team/stops/N501ilb"], ["https://tec.openplanner.team/stops/N136aaa", "https://tec.openplanner.team/stops/N138aja"], ["https://tec.openplanner.team/stops/Lmojans1", "https://tec.openplanner.team/stops/Lmopast1"], ["https://tec.openplanner.team/stops/Cloauln1", "https://tec.openplanner.team/stops/Clooues2"], ["https://tec.openplanner.team/stops/LVBvill1", "https://tec.openplanner.team/stops/LVBvill2"], ["https://tec.openplanner.team/stops/H1fr124a", "https://tec.openplanner.team/stops/H1fr130b"], ["https://tec.openplanner.team/stops/X939aaa", "https://tec.openplanner.team/stops/X939acb"], ["https://tec.openplanner.team/stops/H1ho147a", "https://tec.openplanner.team/stops/H1pd141b"], ["https://tec.openplanner.team/stops/X982aga", "https://tec.openplanner.team/stops/X982bub"], ["https://tec.openplanner.team/stops/H4ld126a", "https://tec.openplanner.team/stops/H4ld128a"], ["https://tec.openplanner.team/stops/N988aaa", "https://tec.openplanner.team/stops/X989aea"], ["https://tec.openplanner.team/stops/X921alb", "https://tec.openplanner.team/stops/X921aoa"], ["https://tec.openplanner.team/stops/H4ln155a", "https://tec.openplanner.team/stops/H4ne148a"], ["https://tec.openplanner.team/stops/Lmaetan*", "https://tec.openplanner.team/stops/Lmapomm2"], ["https://tec.openplanner.team/stops/Bvirpos1", "https://tec.openplanner.team/stops/Bvirpos2"], ["https://tec.openplanner.team/stops/X547acb", "https://tec.openplanner.team/stops/X547adb"], ["https://tec.openplanner.team/stops/Bneesj32", "https://tec.openplanner.team/stops/Bneesjo1"], ["https://tec.openplanner.team/stops/H4ef113b", "https://tec.openplanner.team/stops/H4or114b"], ["https://tec.openplanner.team/stops/LVsboug2", "https://tec.openplanner.team/stops/NL57ajb"], ["https://tec.openplanner.team/stops/Cmlange1", "https://tec.openplanner.team/stops/Cmldeto1"], ["https://tec.openplanner.team/stops/Bolpmre2", "https://tec.openplanner.team/stops/Bpthcai2"], ["https://tec.openplanner.team/stops/X925aga", "https://tec.openplanner.team/stops/X925ala"], ["https://tec.openplanner.team/stops/Cctrjus1", "https://tec.openplanner.team/stops/Cctrjus2"], ["https://tec.openplanner.team/stops/X738aeb", "https://tec.openplanner.team/stops/X754aja"], ["https://tec.openplanner.team/stops/LBachpl1", "https://tec.openplanner.team/stops/LBapeup1"], ["https://tec.openplanner.team/stops/Blemsta2", "https://tec.openplanner.team/stops/Btubcal1"], ["https://tec.openplanner.team/stops/LTEkerk1", "https://tec.openplanner.team/stops/LTEkerk2"], ["https://tec.openplanner.team/stops/X666ala", "https://tec.openplanner.team/stops/X729aca"], ["https://tec.openplanner.team/stops/X911aaa", "https://tec.openplanner.team/stops/X911aab"], ["https://tec.openplanner.team/stops/LAmcorn1", "https://tec.openplanner.team/stops/LAmeg--1"], ["https://tec.openplanner.team/stops/Cfccabi1", "https://tec.openplanner.team/stops/Cfcecol1"], ["https://tec.openplanner.team/stops/Cgrflac1", "https://tec.openplanner.team/stops/NC14aib"], ["https://tec.openplanner.team/stops/X896agb", "https://tec.openplanner.team/stops/X898agb"], ["https://tec.openplanner.team/stops/X811alb", "https://tec.openplanner.team/stops/X811aoa"], ["https://tec.openplanner.team/stops/Bchgrco1", "https://tec.openplanner.team/stops/Bchgvil2"], ["https://tec.openplanner.team/stops/Lanadmi2", "https://tec.openplanner.team/stops/Lloretr1"], ["https://tec.openplanner.team/stops/NH01apa", "https://tec.openplanner.team/stops/NH01aqa"], ["https://tec.openplanner.team/stops/LFCscho1", "https://tec.openplanner.team/stops/LWRvert2"], ["https://tec.openplanner.team/stops/Bniveco1", "https://tec.openplanner.team/stops/Bnivlde1"], ["https://tec.openplanner.team/stops/Caistro1", "https://tec.openplanner.team/stops/Crsrose1"], ["https://tec.openplanner.team/stops/Bolgcsa2", "https://tec.openplanner.team/stops/Bolgrsa1"], ["https://tec.openplanner.team/stops/Blhunys1", "https://tec.openplanner.team/stops/Blhunys3"], ["https://tec.openplanner.team/stops/Ccypetv2", "https://tec.openplanner.team/stops/NH01aha"], ["https://tec.openplanner.team/stops/X801ata", "https://tec.openplanner.team/stops/X836aaa"], ["https://tec.openplanner.team/stops/Cgofleu2", "https://tec.openplanner.team/stops/CMchfl1"], ["https://tec.openplanner.team/stops/H1mj123b", "https://tec.openplanner.team/stops/H1ni316a"], ["https://tec.openplanner.team/stops/H1gr112b", "https://tec.openplanner.team/stops/H1gr123b"], ["https://tec.openplanner.team/stops/Lmncasi2", "https://tec.openplanner.team/stops/Lsmjalh1"], ["https://tec.openplanner.team/stops/LAyfren2", "https://tec.openplanner.team/stops/Lflrhot2"], ["https://tec.openplanner.team/stops/H4ce103b", "https://tec.openplanner.team/stops/H4ce108b"], ["https://tec.openplanner.team/stops/H4ta124a", "https://tec.openplanner.team/stops/H4ta135b"], ["https://tec.openplanner.team/stops/N536aeb", "https://tec.openplanner.team/stops/N580agb"], ["https://tec.openplanner.team/stops/LWRbois1", "https://tec.openplanner.team/stops/LWRchem1"], ["https://tec.openplanner.team/stops/N221abb", "https://tec.openplanner.team/stops/X221aad"], ["https://tec.openplanner.team/stops/Lvehomb2", "https://tec.openplanner.team/stops/Lvesomm1"], ["https://tec.openplanner.team/stops/X636aub", "https://tec.openplanner.team/stops/X636axa"], ["https://tec.openplanner.team/stops/N536aba", "https://tec.openplanner.team/stops/N563aab"], ["https://tec.openplanner.team/stops/N512aia", "https://tec.openplanner.team/stops/N512apb"], ["https://tec.openplanner.team/stops/Cctgaux2", "https://tec.openplanner.team/stops/Cctstro3"], ["https://tec.openplanner.team/stops/LJUmc--2", "https://tec.openplanner.team/stops/LVSpota2"], ["https://tec.openplanner.team/stops/LMsalen2", "https://tec.openplanner.team/stops/LMsviad1"], ["https://tec.openplanner.team/stops/Ljudeme2", "https://tec.openplanner.team/stops/Ljuhava2"], ["https://tec.openplanner.team/stops/X781acb", "https://tec.openplanner.team/stops/X781aeb"], ["https://tec.openplanner.team/stops/H2mi122b", "https://tec.openplanner.team/stops/H2mi125b"], ["https://tec.openplanner.team/stops/H1hl127b", "https://tec.openplanner.team/stops/H1hl128a"], ["https://tec.openplanner.team/stops/N577afa", "https://tec.openplanner.team/stops/N577afb"], ["https://tec.openplanner.team/stops/X662asa", "https://tec.openplanner.team/stops/X662asb"], ["https://tec.openplanner.team/stops/Clrwesp1", "https://tec.openplanner.team/stops/Clrwesp2"], ["https://tec.openplanner.team/stops/H4ft134b", "https://tec.openplanner.team/stops/H4ft136a"], ["https://tec.openplanner.team/stops/H1ro131b", "https://tec.openplanner.team/stops/H1ro134b"], ["https://tec.openplanner.team/stops/H4cr111b", "https://tec.openplanner.team/stops/H4ff120b"], ["https://tec.openplanner.team/stops/H4ma411a", "https://tec.openplanner.team/stops/H4ma417b"], ["https://tec.openplanner.team/stops/LBjflor1", "https://tec.openplanner.team/stops/X575afb"], ["https://tec.openplanner.team/stops/LFmbure1", "https://tec.openplanner.team/stops/LKmdrie1"], ["https://tec.openplanner.team/stops/H1mb166a", "https://tec.openplanner.team/stops/H1mb168b"], ["https://tec.openplanner.team/stops/Ljubois1", "https://tec.openplanner.team/stops/Ljuprev3"], ["https://tec.openplanner.team/stops/N226aaa", "https://tec.openplanner.team/stops/N226aba"], ["https://tec.openplanner.team/stops/Ldichat1", "https://tec.openplanner.team/stops/Ldifoye1"], ["https://tec.openplanner.team/stops/X985afb", "https://tec.openplanner.team/stops/X985aha"], ["https://tec.openplanner.team/stops/Clfpomm1", "https://tec.openplanner.team/stops/Crglyre1"], ["https://tec.openplanner.team/stops/Bpthfus1", "https://tec.openplanner.team/stops/Bwancal3"], ["https://tec.openplanner.team/stops/H1ht128b", "https://tec.openplanner.team/stops/H1vt195b"], ["https://tec.openplanner.team/stops/N509bga", "https://tec.openplanner.team/stops/N509bgb"], ["https://tec.openplanner.team/stops/Bwavlep1", "https://tec.openplanner.team/stops/Bwavlep2"], ["https://tec.openplanner.team/stops/LkTgutl2", "https://tec.openplanner.team/stops/LkTlibe1"], ["https://tec.openplanner.team/stops/LPTblan1", "https://tec.openplanner.team/stops/X750asa"], ["https://tec.openplanner.team/stops/N201aja", "https://tec.openplanner.team/stops/N201ajb"], ["https://tec.openplanner.team/stops/Ccubric1", "https://tec.openplanner.team/stops/Ccuseba2"], ["https://tec.openplanner.team/stops/X609aka", "https://tec.openplanner.team/stops/X609amb"], ["https://tec.openplanner.team/stops/X870adb", "https://tec.openplanner.team/stops/X870ajb"], ["https://tec.openplanner.team/stops/Cjuhame2", "https://tec.openplanner.team/stops/Cjulamb4"], ["https://tec.openplanner.team/stops/Lhr2ave1", "https://tec.openplanner.team/stops/Lhrdelv1"], ["https://tec.openplanner.team/stops/X649abb", "https://tec.openplanner.team/stops/X671aca"], ["https://tec.openplanner.team/stops/N513adb", "https://tec.openplanner.team/stops/N513ala"], ["https://tec.openplanner.team/stops/LrEkirc2", "https://tec.openplanner.team/stops/LrEkreu2"], ["https://tec.openplanner.team/stops/LXoeg--4", "https://tec.openplanner.team/stops/LXomc--3"], ["https://tec.openplanner.team/stops/X908aba", "https://tec.openplanner.team/stops/X908aca"], ["https://tec.openplanner.team/stops/LNHbarr2", "https://tec.openplanner.team/stops/LSeaque1"], ["https://tec.openplanner.team/stops/X633abb", "https://tec.openplanner.team/stops/X633acb"], ["https://tec.openplanner.team/stops/X901aoa", "https://tec.openplanner.team/stops/X901bnb"], ["https://tec.openplanner.team/stops/Cplbbro1", "https://tec.openplanner.team/stops/Cplrmon1"], ["https://tec.openplanner.team/stops/Bcercsa1", "https://tec.openplanner.team/stops/Bcsempl1"], ["https://tec.openplanner.team/stops/N252acd", "https://tec.openplanner.team/stops/N252ada"], ["https://tec.openplanner.team/stops/Louairl2", "https://tec.openplanner.team/stops/Lousite6"], ["https://tec.openplanner.team/stops/LPLheid1", "https://tec.openplanner.team/stops/LPLheid2"], ["https://tec.openplanner.team/stops/Cmgbrou1", "https://tec.openplanner.team/stops/Cmgcabi1"], ["https://tec.openplanner.team/stops/Cgzcorn1", "https://tec.openplanner.team/stops/Cgzplac6"], ["https://tec.openplanner.team/stops/H1qy133a", "https://tec.openplanner.team/stops/H1qy136a"], ["https://tec.openplanner.team/stops/LBNforg2", "https://tec.openplanner.team/stops/LWEbr051"], ["https://tec.openplanner.team/stops/X824agb", "https://tec.openplanner.team/stops/X824aka"], ["https://tec.openplanner.team/stops/N234abb", "https://tec.openplanner.team/stops/N234adb"], ["https://tec.openplanner.team/stops/Baegm501", "https://tec.openplanner.team/stops/NR38adb"], ["https://tec.openplanner.team/stops/LBEabbe2", "https://tec.openplanner.team/stops/LBEnina4"], ["https://tec.openplanner.team/stops/N501bhb", "https://tec.openplanner.team/stops/N501bib"], ["https://tec.openplanner.team/stops/N506atb", "https://tec.openplanner.team/stops/N506ava"], ["https://tec.openplanner.team/stops/X771acb", "https://tec.openplanner.team/stops/X773ala"], ["https://tec.openplanner.team/stops/H2ha135c", "https://tec.openplanner.team/stops/H2ha136a"], ["https://tec.openplanner.team/stops/X992abb", "https://tec.openplanner.team/stops/X992afa"], ["https://tec.openplanner.team/stops/LsVgrun1", "https://tec.openplanner.team/stops/LsVlind*"], ["https://tec.openplanner.team/stops/H5at111b", "https://tec.openplanner.team/stops/H5at141a"], ["https://tec.openplanner.team/stops/Lfhcoop2", "https://tec.openplanner.team/stops/Ljerose3"], ["https://tec.openplanner.team/stops/Cbmvalt2", "https://tec.openplanner.team/stops/H1tt109b"], ["https://tec.openplanner.team/stops/LaHzoll*", "https://tec.openplanner.team/stops/LhBdorf2"], ["https://tec.openplanner.team/stops/LWZdtec1", "https://tec.openplanner.team/stops/LWZeg--1"], ["https://tec.openplanner.team/stops/LAUberg2", "https://tec.openplanner.team/stops/LFdbagu2"], ["https://tec.openplanner.team/stops/H4ma162a", "https://tec.openplanner.team/stops/H4ry129b"], ["https://tec.openplanner.team/stops/Cfbcal1", "https://tec.openplanner.team/stops/Cfcrdpr2"], ["https://tec.openplanner.team/stops/H5el112a", "https://tec.openplanner.team/stops/H5el112b"], ["https://tec.openplanner.team/stops/Cflchap1", "https://tec.openplanner.team/stops/Cflchap3"], ["https://tec.openplanner.team/stops/LFMkrut2", "https://tec.openplanner.team/stops/LFPkerk2"], ["https://tec.openplanner.team/stops/H1he105a", "https://tec.openplanner.team/stops/H1he105b"], ["https://tec.openplanner.team/stops/X877aga", "https://tec.openplanner.team/stops/X878aaa"], ["https://tec.openplanner.team/stops/Chhverr1", "https://tec.openplanner.team/stops/Cmx3arb2"], ["https://tec.openplanner.team/stops/Ccoforr2", "https://tec.openplanner.team/stops/Csoperi1"], ["https://tec.openplanner.team/stops/Lflpaeu1", "https://tec.openplanner.team/stops/Lrecroi2"], ["https://tec.openplanner.team/stops/Cmlcons2", "https://tec.openplanner.team/stops/Cmmbsit2"], ["https://tec.openplanner.team/stops/N125acb", "https://tec.openplanner.team/stops/N149ala"], ["https://tec.openplanner.team/stops/Ldijean2", "https://tec.openplanner.team/stops/Ldipiss2"], ["https://tec.openplanner.team/stops/Bixlaca1", "https://tec.openplanner.team/stops/Bixlozo2"], ["https://tec.openplanner.team/stops/H5el105a", "https://tec.openplanner.team/stops/H5el105b"], ["https://tec.openplanner.team/stops/LHaodei2", "https://tec.openplanner.team/stops/LHarenn1"], ["https://tec.openplanner.team/stops/Lanfran2", "https://tec.openplanner.team/stops/Lanpisc1"], ["https://tec.openplanner.team/stops/X636aza", "https://tec.openplanner.team/stops/X636bcb"], ["https://tec.openplanner.team/stops/Cmcbriq2", "https://tec.openplanner.team/stops/Cmcbriq3"], ["https://tec.openplanner.team/stops/X804ara", "https://tec.openplanner.team/stops/X804arb"], ["https://tec.openplanner.team/stops/N232bna", "https://tec.openplanner.team/stops/N232bnb"], ["https://tec.openplanner.team/stops/H2gy108a", "https://tec.openplanner.team/stops/H2gy108b"], ["https://tec.openplanner.team/stops/H1em110a", "https://tec.openplanner.team/stops/H1em111b"], ["https://tec.openplanner.team/stops/N110aga", "https://tec.openplanner.team/stops/N125aab"], ["https://tec.openplanner.team/stops/LDmdomm1", "https://tec.openplanner.team/stops/LDmdomm2"], ["https://tec.openplanner.team/stops/N537abb", "https://tec.openplanner.team/stops/N537akb"], ["https://tec.openplanner.team/stops/X992aab", "https://tec.openplanner.team/stops/X993aea"], ["https://tec.openplanner.team/stops/N139abb", "https://tec.openplanner.team/stops/N139acb"], ["https://tec.openplanner.team/stops/H4fr140b", "https://tec.openplanner.team/stops/H4ma419a"], ["https://tec.openplanner.team/stops/X788aga", "https://tec.openplanner.team/stops/X788agb"], ["https://tec.openplanner.team/stops/H4ga149b", "https://tec.openplanner.team/stops/H4ga167b"], ["https://tec.openplanner.team/stops/X602aha", "https://tec.openplanner.team/stops/X602aob"], ["https://tec.openplanner.team/stops/Cgxchea1", "https://tec.openplanner.team/stops/Cgxcime2"], ["https://tec.openplanner.team/stops/Bperpla1", "https://tec.openplanner.team/stops/Bperrcr1"], ["https://tec.openplanner.team/stops/H4to137a", "https://tec.openplanner.team/stops/H4to137b"], ["https://tec.openplanner.team/stops/LCvneuf2", "https://tec.openplanner.team/stops/LTBeg--2"], ["https://tec.openplanner.team/stops/H4ty300b", "https://tec.openplanner.team/stops/H4ty350a"], ["https://tec.openplanner.team/stops/X761acb", "https://tec.openplanner.team/stops/X761adb"], ["https://tec.openplanner.team/stops/H4lg103a", "https://tec.openplanner.team/stops/H4rm112b"], ["https://tec.openplanner.team/stops/X669aca", "https://tec.openplanner.team/stops/X669acb"], ["https://tec.openplanner.team/stops/X837aib", "https://tec.openplanner.team/stops/X837alb"], ["https://tec.openplanner.team/stops/LEBmoul1", "https://tec.openplanner.team/stops/LLxnive2"], ["https://tec.openplanner.team/stops/LWabela1", "https://tec.openplanner.team/stops/LWacime1"], ["https://tec.openplanner.team/stops/Cvrchap2", "https://tec.openplanner.team/stops/Cvregl1"], ["https://tec.openplanner.team/stops/LBBcarr2", "https://tec.openplanner.team/stops/LOccarr2"], ["https://tec.openplanner.team/stops/H1mh115b", "https://tec.openplanner.team/stops/H1tl122a"], ["https://tec.openplanner.team/stops/NL76aea", "https://tec.openplanner.team/stops/NL77abb"], ["https://tec.openplanner.team/stops/H2ch106a", "https://tec.openplanner.team/stops/H2ch106b"], ["https://tec.openplanner.team/stops/Bsomtce1", "https://tec.openplanner.team/stops/N584aea"], ["https://tec.openplanner.team/stops/X669aha", "https://tec.openplanner.team/stops/X669ahb"], ["https://tec.openplanner.team/stops/H1ms308c", "https://tec.openplanner.team/stops/H1ms308d"], ["https://tec.openplanner.team/stops/Canjonc1", "https://tec.openplanner.team/stops/Canjonc2"], ["https://tec.openplanner.team/stops/Baudwav1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/N538aya", "https://tec.openplanner.team/stops/N538bab"], ["https://tec.openplanner.team/stops/N121ada", "https://tec.openplanner.team/stops/N121adb"], ["https://tec.openplanner.team/stops/H4ty290b", "https://tec.openplanner.team/stops/H4ty302b"], ["https://tec.openplanner.team/stops/LMXaven1", "https://tec.openplanner.team/stops/LMXempe2"], ["https://tec.openplanner.team/stops/X808aia", "https://tec.openplanner.team/stops/X808ajb"], ["https://tec.openplanner.team/stops/N161aaa", "https://tec.openplanner.team/stops/N161aab"], ["https://tec.openplanner.team/stops/X731ada", "https://tec.openplanner.team/stops/X731aea"], ["https://tec.openplanner.team/stops/Cgycorv1", "https://tec.openplanner.team/stops/Cgycorv4"], ["https://tec.openplanner.team/stops/Bhmmlad2", "https://tec.openplanner.team/stops/Bnetace2"], ["https://tec.openplanner.team/stops/LORpave1", "https://tec.openplanner.team/stops/LORthie1"], ["https://tec.openplanner.team/stops/Lhrpaix2", "https://tec.openplanner.team/stops/Llgcoro4"], ["https://tec.openplanner.team/stops/N383aca", "https://tec.openplanner.team/stops/N383ada"], ["https://tec.openplanner.team/stops/LORgend1", "https://tec.openplanner.team/stops/LORhorp1"], ["https://tec.openplanner.team/stops/Cgomerm1", "https://tec.openplanner.team/stops/Cgomerm4"], ["https://tec.openplanner.team/stops/Bottbou1", "https://tec.openplanner.team/stops/Bottcbp1"], ["https://tec.openplanner.team/stops/N117aba", "https://tec.openplanner.team/stops/N117bdd"], ["https://tec.openplanner.team/stops/LnDkreu1", "https://tec.openplanner.team/stops/LwSbrei1"], ["https://tec.openplanner.team/stops/X358acd", "https://tec.openplanner.team/stops/X993aca"], ["https://tec.openplanner.team/stops/LPlchpl1", "https://tec.openplanner.team/stops/LPldoua4"], ["https://tec.openplanner.team/stops/Csepier1", "https://tec.openplanner.team/stops/N425abb"], ["https://tec.openplanner.team/stops/X982boa", "https://tec.openplanner.team/stops/X982bob"], ["https://tec.openplanner.team/stops/Blhupa11", "https://tec.openplanner.team/stops/Blhupa12"], ["https://tec.openplanner.team/stops/H5rx138a", "https://tec.openplanner.team/stops/H5rx145b"], ["https://tec.openplanner.team/stops/Lhrpont1", "https://tec.openplanner.team/stops/Lhrstev2"], ["https://tec.openplanner.team/stops/N538agb", "https://tec.openplanner.team/stops/N538ajd"], ["https://tec.openplanner.team/stops/Lscgare2", "https://tec.openplanner.team/stops/Lscpamp1"], ["https://tec.openplanner.team/stops/H1ca105a", "https://tec.openplanner.team/stops/H1ne140a"], ["https://tec.openplanner.team/stops/X979ajb", "https://tec.openplanner.team/stops/X979akb"], ["https://tec.openplanner.team/stops/Bgliron1", "https://tec.openplanner.team/stops/Bglitro3"], ["https://tec.openplanner.team/stops/LVPduvi1", "https://tec.openplanner.team/stops/LVPeg--1"], ["https://tec.openplanner.team/stops/X955aba", "https://tec.openplanner.team/stops/X955abb"], ["https://tec.openplanner.team/stops/Bwlhpma2", "https://tec.openplanner.team/stops/Bwlhppg4"], ["https://tec.openplanner.team/stops/LLrdigu1", "https://tec.openplanner.team/stops/LLrgara2"], ["https://tec.openplanner.team/stops/X764aea", "https://tec.openplanner.team/stops/X765aba"], ["https://tec.openplanner.team/stops/X644aab", "https://tec.openplanner.team/stops/X644abb"], ["https://tec.openplanner.team/stops/LPOeg--1", "https://tec.openplanner.team/stops/LPOthom1"], ["https://tec.openplanner.team/stops/N501hqb", "https://tec.openplanner.team/stops/N501ila"], ["https://tec.openplanner.team/stops/H3bi101a", "https://tec.openplanner.team/stops/H3bi101b"], ["https://tec.openplanner.team/stops/LLelava1", "https://tec.openplanner.team/stops/X547aab"], ["https://tec.openplanner.team/stops/LCxcouv1", "https://tec.openplanner.team/stops/LCxfawe1"], ["https://tec.openplanner.team/stops/NC23aaa", "https://tec.openplanner.team/stops/NC23aba"], ["https://tec.openplanner.team/stops/N245acb", "https://tec.openplanner.team/stops/N340aib"], ["https://tec.openplanner.team/stops/Lhrmare1", "https://tec.openplanner.team/stops/Lhrmare4"], ["https://tec.openplanner.team/stops/LeUhaas2", "https://tec.openplanner.team/stops/LeUjuge2"], ["https://tec.openplanner.team/stops/H4os217a", "https://tec.openplanner.team/stops/H4os221a"], ["https://tec.openplanner.team/stops/Lagpn6-1", "https://tec.openplanner.team/stops/LTIpres1"], ["https://tec.openplanner.team/stops/LrDschl2", "https://tec.openplanner.team/stops/LrEdic71"], ["https://tec.openplanner.team/stops/H1mq198b", "https://tec.openplanner.team/stops/H5is170a"], ["https://tec.openplanner.team/stops/X623abb", "https://tec.openplanner.team/stops/X623acb"], ["https://tec.openplanner.team/stops/N540aca", "https://tec.openplanner.team/stops/N540aha"], ["https://tec.openplanner.team/stops/LVPbleh2", "https://tec.openplanner.team/stops/LVPcrok1"], ["https://tec.openplanner.team/stops/H2me115b", "https://tec.openplanner.team/stops/H2me117a"], ["https://tec.openplanner.team/stops/Bettars1", "https://tec.openplanner.team/stops/Bettbue1"], ["https://tec.openplanner.team/stops/X788aha", "https://tec.openplanner.team/stops/X790abb"], ["https://tec.openplanner.team/stops/N538aob", "https://tec.openplanner.team/stops/N538apa"], ["https://tec.openplanner.team/stops/LESgran1", "https://tec.openplanner.team/stops/LESvign1"], ["https://tec.openplanner.team/stops/N351akb", "https://tec.openplanner.team/stops/N351akd"], ["https://tec.openplanner.team/stops/X818asc", "https://tec.openplanner.team/stops/X818awb"], ["https://tec.openplanner.team/stops/Cgogrco2", "https://tec.openplanner.team/stops/Ctmmana1"], ["https://tec.openplanner.team/stops/Lagcile1", "https://tec.openplanner.team/stops/Llgdesa1"], ["https://tec.openplanner.team/stops/LAIrout1", "https://tec.openplanner.team/stops/LVMborl1"], ["https://tec.openplanner.team/stops/Bohnbra2", "https://tec.openplanner.team/stops/Bohnrsc1"], ["https://tec.openplanner.team/stops/LLM4rou1", "https://tec.openplanner.team/stops/LLMeg--2"], ["https://tec.openplanner.team/stops/N136ada", "https://tec.openplanner.team/stops/N136adb"], ["https://tec.openplanner.team/stops/H4wa150a", "https://tec.openplanner.team/stops/H4wa150b"], ["https://tec.openplanner.team/stops/Bblaeur1", "https://tec.openplanner.team/stops/Bblarbe2"], ["https://tec.openplanner.team/stops/NL80ahb", "https://tec.openplanner.team/stops/NL80aia"], ["https://tec.openplanner.team/stops/X759ada", "https://tec.openplanner.team/stops/X759adb"], ["https://tec.openplanner.team/stops/H1as101a", "https://tec.openplanner.team/stops/H1as104a"], ["https://tec.openplanner.team/stops/LVTeg--1", "https://tec.openplanner.team/stops/LVTforg2"], ["https://tec.openplanner.team/stops/H1te184a", "https://tec.openplanner.team/stops/H1te184b"], ["https://tec.openplanner.team/stops/Bneesj31", "https://tec.openplanner.team/stops/Bneesj32"], ["https://tec.openplanner.team/stops/LrAplat2", "https://tec.openplanner.team/stops/LrAputz2"], ["https://tec.openplanner.team/stops/Cchalou1", "https://tec.openplanner.team/stops/Cmtdepo1"], ["https://tec.openplanner.team/stops/NR21aha", "https://tec.openplanner.team/stops/NR38afb"], ["https://tec.openplanner.team/stops/N155aha", "https://tec.openplanner.team/stops/N160aab"], ["https://tec.openplanner.team/stops/Cluberl1", "https://tec.openplanner.team/stops/Clulidl2"], ["https://tec.openplanner.team/stops/Ljubeyn2", "https://tec.openplanner.team/stops/Ljuroch2"], ["https://tec.openplanner.team/stops/H4wn123b", "https://tec.openplanner.team/stops/H4wn138b"], ["https://tec.openplanner.team/stops/Bnivga32", "https://tec.openplanner.team/stops/Bnivga61"], ["https://tec.openplanner.team/stops/LaAburt1", "https://tec.openplanner.team/stops/LaAseba1"], ["https://tec.openplanner.team/stops/N584aub", "https://tec.openplanner.team/stops/N584ayb"], ["https://tec.openplanner.team/stops/LAuchau2", "https://tec.openplanner.team/stops/LBOande1"], ["https://tec.openplanner.team/stops/Bnivmon1", "https://tec.openplanner.team/stops/Bnivsho2"], ["https://tec.openplanner.team/stops/Cmlbeau4", "https://tec.openplanner.team/stops/Cmlcons1"], ["https://tec.openplanner.team/stops/LgRhouf2", "https://tec.openplanner.team/stops/LnUhohe1"], ["https://tec.openplanner.team/stops/LOUchen1", "https://tec.openplanner.team/stops/Lvitomb2"], ["https://tec.openplanner.team/stops/LHNgare1", "https://tec.openplanner.team/stops/LHNwaut1"], ["https://tec.openplanner.team/stops/LAUcarr1", "https://tec.openplanner.team/stops/LFdeg--4"], ["https://tec.openplanner.team/stops/N209aea", "https://tec.openplanner.team/stops/N209aha"], ["https://tec.openplanner.team/stops/X651abb", "https://tec.openplanner.team/stops/X651aca"], ["https://tec.openplanner.team/stops/X761aca", "https://tec.openplanner.team/stops/X762aga"], ["https://tec.openplanner.team/stops/Bvirfpo1", "https://tec.openplanner.team/stops/Bvirfpo2"], ["https://tec.openplanner.team/stops/X754aza", "https://tec.openplanner.team/stops/X754azb"], ["https://tec.openplanner.team/stops/Cfrempe1", "https://tec.openplanner.team/stops/Cfrempe2"], ["https://tec.openplanner.team/stops/LmAgruf2", "https://tec.openplanner.team/stops/LmAkirc2"], ["https://tec.openplanner.team/stops/Brxmcha1", "https://tec.openplanner.team/stops/Brxmhai3"], ["https://tec.openplanner.team/stops/H4bo111b", "https://tec.openplanner.team/stops/H4bo119a"], ["https://tec.openplanner.team/stops/Lseconc1", "https://tec.openplanner.team/stops/Lsecroi2"], ["https://tec.openplanner.team/stops/LVthest1", "https://tec.openplanner.team/stops/LVttarg2"], ["https://tec.openplanner.team/stops/Cdapige2", "https://tec.openplanner.team/stops/CMpige1"], ["https://tec.openplanner.team/stops/LHGtong2", "https://tec.openplanner.team/stops/LHGzoni2"], ["https://tec.openplanner.team/stops/LRRchen1", "https://tec.openplanner.team/stops/LRRroth1"], ["https://tec.openplanner.team/stops/H4ty295d", "https://tec.openplanner.team/stops/H4ty305d"], ["https://tec.openplanner.team/stops/Cdacolu1", "https://tec.openplanner.team/stops/Cdacolu2"], ["https://tec.openplanner.team/stops/H1ms267a", "https://tec.openplanner.team/stops/H1ni322b"], ["https://tec.openplanner.team/stops/Lchsa631", "https://tec.openplanner.team/stops/Lchsaec1"], ["https://tec.openplanner.team/stops/LJUmc--1", "https://tec.openplanner.team/stops/LJUxhen3"], ["https://tec.openplanner.team/stops/Ladhomb1", "https://tec.openplanner.team/stops/Ladhomb2"], ["https://tec.openplanner.team/stops/LBAcarr1", "https://tec.openplanner.team/stops/LBAfort1"], ["https://tec.openplanner.team/stops/Beclbse1", "https://tec.openplanner.team/stops/Beclesp2"], ["https://tec.openplanner.team/stops/LMOford1", "https://tec.openplanner.team/stops/LMOlens3"], ["https://tec.openplanner.team/stops/LBEpier1", "https://tec.openplanner.team/stops/LBEtroo2"], ["https://tec.openplanner.team/stops/LkEbruc1", "https://tec.openplanner.team/stops/LkEsada2"], ["https://tec.openplanner.team/stops/N528ala", "https://tec.openplanner.team/stops/N528alb"], ["https://tec.openplanner.team/stops/Cmlphai1", "https://tec.openplanner.team/stops/Cmlpomm2"], ["https://tec.openplanner.team/stops/N202aaa", "https://tec.openplanner.team/stops/N203adb"], ["https://tec.openplanner.team/stops/H4mo138b", "https://tec.openplanner.team/stops/H4mo140b"], ["https://tec.openplanner.team/stops/X979agb", "https://tec.openplanner.team/stops/X982bwa"], ["https://tec.openplanner.team/stops/Bosqcar1", "https://tec.openplanner.team/stops/Btubren1"], ["https://tec.openplanner.team/stops/H1ms281b", "https://tec.openplanner.team/stops/H1ni322a"], ["https://tec.openplanner.team/stops/LWOruis1", "https://tec.openplanner.team/stops/LWOsass1"], ["https://tec.openplanner.team/stops/N368aeb", "https://tec.openplanner.team/stops/N368afa"], ["https://tec.openplanner.team/stops/Bbghsta1", "https://tec.openplanner.team/stops/Bbghsta2"], ["https://tec.openplanner.team/stops/N501bkb", "https://tec.openplanner.team/stops/N501bma"], ["https://tec.openplanner.team/stops/Brixbai2", "https://tec.openplanner.team/stops/Brixeur5"], ["https://tec.openplanner.team/stops/Cgochfe1", "https://tec.openplanner.team/stops/Cgoetun4"], ["https://tec.openplanner.team/stops/LLrcomb1", "https://tec.openplanner.team/stops/LLrmc--2"], ["https://tec.openplanner.team/stops/X878aba", "https://tec.openplanner.team/stops/X995aga"], ["https://tec.openplanner.team/stops/Bnivbpe2", "https://tec.openplanner.team/stops/Bnivplt1"], ["https://tec.openplanner.team/stops/X730afa", "https://tec.openplanner.team/stops/X730afb"], ["https://tec.openplanner.team/stops/H1mx122a", "https://tec.openplanner.team/stops/H1mx122b"], ["https://tec.openplanner.team/stops/H1bb116b", "https://tec.openplanner.team/stops/H1ho123b"], ["https://tec.openplanner.team/stops/H4do100a", "https://tec.openplanner.team/stops/H4do105a"], ["https://tec.openplanner.team/stops/H1cu127a", "https://tec.openplanner.team/stops/H1cu127b"], ["https://tec.openplanner.team/stops/Llgcour2", "https://tec.openplanner.team/stops/Llgtcha2"], ["https://tec.openplanner.team/stops/Bolgrga1", "https://tec.openplanner.team/stops/Bpelf962"], ["https://tec.openplanner.team/stops/X670aqa", "https://tec.openplanner.team/stops/X670aqb"], ["https://tec.openplanner.team/stops/X938acb", "https://tec.openplanner.team/stops/X938aeb"], ["https://tec.openplanner.team/stops/LSdbote1", "https://tec.openplanner.team/stops/LSdcarr1"], ["https://tec.openplanner.team/stops/N529aaa", "https://tec.openplanner.team/stops/N529aab"], ["https://tec.openplanner.team/stops/LbTathe2", "https://tec.openplanner.team/stops/LbTmuhl2"], ["https://tec.openplanner.team/stops/H1em102b", "https://tec.openplanner.team/stops/H1em111d"], ["https://tec.openplanner.team/stops/LMsalen2", "https://tec.openplanner.team/stops/LPbtene1"], ["https://tec.openplanner.team/stops/N135aeb", "https://tec.openplanner.team/stops/N135aed"], ["https://tec.openplanner.team/stops/LMOc50-1", "https://tec.openplanner.team/stops/LMOeg--1"], ["https://tec.openplanner.team/stops/LrDhind1", "https://tec.openplanner.team/stops/LrDkirc2"], ["https://tec.openplanner.team/stops/LCObouh2", "https://tec.openplanner.team/stops/LCOdrol1"], ["https://tec.openplanner.team/stops/LMgberw2", "https://tec.openplanner.team/stops/LVIferm2"], ["https://tec.openplanner.team/stops/LMAptne2", "https://tec.openplanner.team/stops/LMArave1"], ["https://tec.openplanner.team/stops/H4ta128b", "https://tec.openplanner.team/stops/H4ta130b"], ["https://tec.openplanner.team/stops/X771aca", "https://tec.openplanner.team/stops/X771acb"], ["https://tec.openplanner.team/stops/X898aca", "https://tec.openplanner.team/stops/X898aoa"], ["https://tec.openplanner.team/stops/Lcceclu1", "https://tec.openplanner.team/stops/LRarami2"], ["https://tec.openplanner.team/stops/H1bi103b", "https://tec.openplanner.team/stops/H1lo120b"], ["https://tec.openplanner.team/stops/H4er121b", "https://tec.openplanner.team/stops/H4wu376b"], ["https://tec.openplanner.team/stops/N557aaa", "https://tec.openplanner.team/stops/N557aha"], ["https://tec.openplanner.team/stops/H5pe131b", "https://tec.openplanner.team/stops/H5pe150a"], ["https://tec.openplanner.team/stops/Cfrcoop1", "https://tec.openplanner.team/stops/Cfrplac6"], ["https://tec.openplanner.team/stops/H1pa106a", "https://tec.openplanner.team/stops/H1pa166b"], ["https://tec.openplanner.team/stops/Lgrecpe1", "https://tec.openplanner.team/stops/Lgrlabo2"], ["https://tec.openplanner.team/stops/X654ada", "https://tec.openplanner.team/stops/X654aka"], ["https://tec.openplanner.team/stops/LaMbrei2", "https://tec.openplanner.team/stops/LaMbull1"], ["https://tec.openplanner.team/stops/H4lg101a", "https://tec.openplanner.team/stops/H4ta115b"], ["https://tec.openplanner.team/stops/X731aeb", "https://tec.openplanner.team/stops/X731aka"], ["https://tec.openplanner.team/stops/LkEherg2", "https://tec.openplanner.team/stops/LVAbuss1"], ["https://tec.openplanner.team/stops/LaHzoll*", "https://tec.openplanner.team/stops/LlSzoll2"], ["https://tec.openplanner.team/stops/Lmobrac1", "https://tec.openplanner.team/stops/Lmopans4"], ["https://tec.openplanner.team/stops/H1qu105b", "https://tec.openplanner.team/stops/H1qu111b"], ["https://tec.openplanner.team/stops/LXHbell2", "https://tec.openplanner.team/stops/LXHbois2"], ["https://tec.openplanner.team/stops/H2sv211b", "https://tec.openplanner.team/stops/H2sv215a"], ["https://tec.openplanner.team/stops/Cgrgrce1", "https://tec.openplanner.team/stops/N160afa"], ["https://tec.openplanner.team/stops/H1by101a", "https://tec.openplanner.team/stops/H1by101b"], ["https://tec.openplanner.team/stops/Cjualtr2", "https://tec.openplanner.team/stops/Cjudevo1"], ["https://tec.openplanner.team/stops/LSPcomm2", "https://tec.openplanner.team/stops/LSPtonn2"], ["https://tec.openplanner.team/stops/H1mr125b", "https://tec.openplanner.team/stops/H1mr126a"], ["https://tec.openplanner.team/stops/H1pa105a", "https://tec.openplanner.team/stops/H1pa109a"], ["https://tec.openplanner.team/stops/Cpiegli2", "https://tec.openplanner.team/stops/Cpipost2"], ["https://tec.openplanner.team/stops/H1fr114a", "https://tec.openplanner.team/stops/H1fr114b"], ["https://tec.openplanner.team/stops/NH01aib", "https://tec.openplanner.team/stops/NH01aja"], ["https://tec.openplanner.team/stops/Cgoboll4", "https://tec.openplanner.team/stops/Cgogare1"], ["https://tec.openplanner.team/stops/LPtchpl1", "https://tec.openplanner.team/stops/LPtchpl2"], ["https://tec.openplanner.team/stops/Bblabfo1", "https://tec.openplanner.team/stops/Bblamer1"], ["https://tec.openplanner.team/stops/H1fv101b", "https://tec.openplanner.team/stops/H1fv103b"], ["https://tec.openplanner.team/stops/N351atd", "https://tec.openplanner.team/stops/N390amb"], ["https://tec.openplanner.team/stops/Cfmtrie2", "https://tec.openplanner.team/stops/Cfoperz2"], ["https://tec.openplanner.team/stops/N127bja", "https://tec.openplanner.team/stops/N134aha"], ["https://tec.openplanner.team/stops/H4bn173b", "https://tec.openplanner.team/stops/H4pi136b"], ["https://tec.openplanner.team/stops/Cmyquen2", "https://tec.openplanner.team/stops/Cmysncb2"], ["https://tec.openplanner.team/stops/X626aia", "https://tec.openplanner.team/stops/X626aib"], ["https://tec.openplanner.team/stops/Lagrask1", "https://tec.openplanner.team/stops/Lagrask2"], ["https://tec.openplanner.team/stops/Bsambra1", "https://tec.openplanner.team/stops/Bsambra2"], ["https://tec.openplanner.team/stops/Lpecime1", "https://tec.openplanner.team/stops/Lpetenn2"], ["https://tec.openplanner.team/stops/Blnzcar2", "https://tec.openplanner.team/stops/N576acb"], ["https://tec.openplanner.team/stops/Bbstbxl2", "https://tec.openplanner.team/stops/Bbstpan2"], ["https://tec.openplanner.team/stops/Llgbene1", "https://tec.openplanner.team/stops/Llgtcha1"], ["https://tec.openplanner.team/stops/N110ada", "https://tec.openplanner.team/stops/N123adb"], ["https://tec.openplanner.team/stops/X605afa", "https://tec.openplanner.team/stops/X605agb"], ["https://tec.openplanner.team/stops/Cmmadma2", "https://tec.openplanner.team/stops/Cmmceri1"], ["https://tec.openplanner.team/stops/N540ala", "https://tec.openplanner.team/stops/N540alb"], ["https://tec.openplanner.team/stops/Bixlozo1", "https://tec.openplanner.team/stops/Bixlozo2"], ["https://tec.openplanner.team/stops/Cblcent1", "https://tec.openplanner.team/stops/Cblcent4"], ["https://tec.openplanner.team/stops/Ccyfede2", "https://tec.openplanner.team/stops/Crbegli1"], ["https://tec.openplanner.team/stops/LFRsp1-1", "https://tec.openplanner.team/stops/LWycarr1"], ["https://tec.openplanner.team/stops/LHUdeni1", "https://tec.openplanner.team/stops/LHUpsar1"], ["https://tec.openplanner.team/stops/LBNforg1", "https://tec.openplanner.team/stops/LBNvilv1"], ["https://tec.openplanner.team/stops/LwR140-2", "https://tec.openplanner.team/stops/LwRkirc2"], ["https://tec.openplanner.team/stops/Cgomerm1", "https://tec.openplanner.team/stops/Crachap2"], ["https://tec.openplanner.team/stops/LeYauss1", "https://tec.openplanner.team/stops/LeYfeld2"], ["https://tec.openplanner.team/stops/X661aia", "https://tec.openplanner.team/stops/X661aib"], ["https://tec.openplanner.team/stops/Clrmarl1", "https://tec.openplanner.team/stops/Clrmarl3"], ["https://tec.openplanner.team/stops/N574adb", "https://tec.openplanner.team/stops/N576adb"], ["https://tec.openplanner.team/stops/X804ana", "https://tec.openplanner.team/stops/X804bra"], ["https://tec.openplanner.team/stops/N141ada", "https://tec.openplanner.team/stops/N141aea"], ["https://tec.openplanner.team/stops/Cjugill3", "https://tec.openplanner.team/stops/CMpuis1"], ["https://tec.openplanner.team/stops/LENaout1", "https://tec.openplanner.team/stops/LGlwarf2"], ["https://tec.openplanner.team/stops/LlgPTAV1", "https://tec.openplanner.team/stops/LlgPTAV6"], ["https://tec.openplanner.team/stops/Cfrmoul1", "https://tec.openplanner.team/stops/Cfrmoul2"], ["https://tec.openplanner.team/stops/H5st163b", "https://tec.openplanner.team/stops/H5st166b"], ["https://tec.openplanner.team/stops/X937aab", "https://tec.openplanner.team/stops/X946agb"], ["https://tec.openplanner.team/stops/X641akb", "https://tec.openplanner.team/stops/X641axb"], ["https://tec.openplanner.team/stops/H1fr115a", "https://tec.openplanner.team/stops/H1fr117b"], ["https://tec.openplanner.team/stops/LHUgdpl1", "https://tec.openplanner.team/stops/NL80aha"], ["https://tec.openplanner.team/stops/Bhoemel2", "https://tec.openplanner.team/stops/Blhuibm1"], ["https://tec.openplanner.team/stops/Lemarde1", "https://tec.openplanner.team/stops/Lemfort1"], ["https://tec.openplanner.team/stops/LaAnorm1", "https://tec.openplanner.team/stops/LaAnorm2"], ["https://tec.openplanner.team/stops/H4ty341a", "https://tec.openplanner.team/stops/H4ty341b"], ["https://tec.openplanner.team/stops/N211awa", "https://tec.openplanner.team/stops/N212ada"], ["https://tec.openplanner.team/stops/Cmoecol1", "https://tec.openplanner.team/stops/Cmohame2"], ["https://tec.openplanner.team/stops/LSypesy2", "https://tec.openplanner.team/stops/LWZbeem2"], ["https://tec.openplanner.team/stops/H1br122a", "https://tec.openplanner.team/stops/H1br124a"], ["https://tec.openplanner.team/stops/H4oe150b", "https://tec.openplanner.team/stops/H4oe152b"], ["https://tec.openplanner.team/stops/H4ty268b", "https://tec.openplanner.team/stops/H4ty328b"], ["https://tec.openplanner.team/stops/LTrchar1", "https://tec.openplanner.team/stops/LTrrich2"], ["https://tec.openplanner.team/stops/LPbpl--1", "https://tec.openplanner.team/stops/LPbtene2"], ["https://tec.openplanner.team/stops/Bgnpegl1", "https://tec.openplanner.team/stops/Bgnpegl3"], ["https://tec.openplanner.team/stops/X892aea", "https://tec.openplanner.team/stops/X892agb"], ["https://tec.openplanner.team/stops/Bbeamon1", "https://tec.openplanner.team/stops/Bbeamon2"], ["https://tec.openplanner.team/stops/H1bo101b", "https://tec.openplanner.team/stops/H1bo102b"], ["https://tec.openplanner.team/stops/Bgnvcom2", "https://tec.openplanner.team/stops/Bgnvpco3"], ["https://tec.openplanner.team/stops/LmD181-1", "https://tec.openplanner.team/stops/LmD181-2"], ["https://tec.openplanner.team/stops/Cgrgend1", "https://tec.openplanner.team/stops/NC14amb"], ["https://tec.openplanner.team/stops/N505afa", "https://tec.openplanner.team/stops/N505afb"], ["https://tec.openplanner.team/stops/X947aea", "https://tec.openplanner.team/stops/X947afa"], ["https://tec.openplanner.team/stops/Cmlstgi2", "https://tec.openplanner.team/stops/Cmlvesp2"], ["https://tec.openplanner.team/stops/Cfmchau1", "https://tec.openplanner.team/stops/Cfmcoro1"], ["https://tec.openplanner.team/stops/X658acb", "https://tec.openplanner.team/stops/X658aeb"], ["https://tec.openplanner.team/stops/Bpthcgo1", "https://tec.openplanner.team/stops/Bwanwar2"], ["https://tec.openplanner.team/stops/N120aib", "https://tec.openplanner.team/stops/N120ajb"], ["https://tec.openplanner.team/stops/X986aga", "https://tec.openplanner.team/stops/X986agb"], ["https://tec.openplanner.team/stops/Lsnhoco1", "https://tec.openplanner.team/stops/Lsnhoco2"], ["https://tec.openplanner.team/stops/H2ca112b", "https://tec.openplanner.team/stops/H2ca115b"], ["https://tec.openplanner.team/stops/X822ajb", "https://tec.openplanner.team/stops/X822ara"], ["https://tec.openplanner.team/stops/LOUvign2", "https://tec.openplanner.team/stops/Lvitour2"], ["https://tec.openplanner.team/stops/LhSkape1", "https://tec.openplanner.team/stops/LwAlont1"], ["https://tec.openplanner.team/stops/LChxhav2", "https://tec.openplanner.team/stops/LJA65h-1"], ["https://tec.openplanner.team/stops/LHGtong1", "https://tec.openplanner.team/stops/LXhvina2"], ["https://tec.openplanner.team/stops/LGObeth1", "https://tec.openplanner.team/stops/LGOmonu1"], ["https://tec.openplanner.team/stops/N135aeb", "https://tec.openplanner.team/stops/N143aaa"], ["https://tec.openplanner.team/stops/LBIcarg1", "https://tec.openplanner.team/stops/LBIhann2"], ["https://tec.openplanner.team/stops/N562aga", "https://tec.openplanner.team/stops/N562agb"], ["https://tec.openplanner.team/stops/H2hp119d", "https://tec.openplanner.team/stops/H2jo163c"], ["https://tec.openplanner.team/stops/Cjuhden2", "https://tec.openplanner.team/stops/Cjuhden3"], ["https://tec.openplanner.team/stops/H1hg181a", "https://tec.openplanner.team/stops/H1nv324a"], ["https://tec.openplanner.team/stops/X796aia", "https://tec.openplanner.team/stops/X796aib"], ["https://tec.openplanner.team/stops/LGrfont2", "https://tec.openplanner.team/stops/LLGcarr1"], ["https://tec.openplanner.team/stops/Livcoll1", "https://tec.openplanner.team/stops/Livpost1"], ["https://tec.openplanner.team/stops/Craappa1", "https://tec.openplanner.team/stops/Craappa2"], ["https://tec.openplanner.team/stops/H4ty310b", "https://tec.openplanner.team/stops/H4ty324a"], ["https://tec.openplanner.team/stops/LSeec--2", "https://tec.openplanner.team/stops/LSetrix2"], ["https://tec.openplanner.team/stops/X786acb", "https://tec.openplanner.team/stops/X786aea"], ["https://tec.openplanner.team/stops/X897avb", "https://tec.openplanner.team/stops/X897awa"], ["https://tec.openplanner.team/stops/Crowall1", "https://tec.openplanner.team/stops/Crowall2"], ["https://tec.openplanner.team/stops/H4hx110a", "https://tec.openplanner.team/stops/H4hx117b"], ["https://tec.openplanner.team/stops/LHCandr1", "https://tec.openplanner.team/stops/LHChomb1"], ["https://tec.openplanner.team/stops/Bjodfco1", "https://tec.openplanner.team/stops/Bpiehvi1"], ["https://tec.openplanner.team/stops/LBVplan2", "https://tec.openplanner.team/stops/LRffroi1"], ["https://tec.openplanner.team/stops/X773aia", "https://tec.openplanner.team/stops/X773aoa"], ["https://tec.openplanner.team/stops/Cmlbevu2", "https://tec.openplanner.team/stops/Cmlgoff1"], ["https://tec.openplanner.team/stops/X801bka", "https://tec.openplanner.team/stops/X801cga"], ["https://tec.openplanner.team/stops/Ctrleju2", "https://tec.openplanner.team/stops/Ctrplac1"], ["https://tec.openplanner.team/stops/LHFappe4", "https://tec.openplanner.team/stops/LHFec--1"], ["https://tec.openplanner.team/stops/LRUhama2", "https://tec.openplanner.team/stops/LVleg--1"], ["https://tec.openplanner.team/stops/Ljeegli3", "https://tec.openplanner.team/stops/Ljelamb2"], ["https://tec.openplanner.team/stops/Lagcolo1", "https://tec.openplanner.team/stops/Lemsart1"], ["https://tec.openplanner.team/stops/Bjdscnd2", "https://tec.openplanner.team/stops/Bjodmal1"], ["https://tec.openplanner.team/stops/X922aga", "https://tec.openplanner.team/stops/X922aib"], ["https://tec.openplanner.team/stops/LBrmeiz1", "https://tec.openplanner.team/stops/LBrmeiz2"], ["https://tec.openplanner.team/stops/LAMec--1", "https://tec.openplanner.team/stops/LAMgare2"], ["https://tec.openplanner.team/stops/LHTbonn1", "https://tec.openplanner.team/stops/LHThall2"], ["https://tec.openplanner.team/stops/Cmgarsi1", "https://tec.openplanner.team/stops/Cmghay1"], ["https://tec.openplanner.team/stops/X673abb", "https://tec.openplanner.team/stops/X821aab"], ["https://tec.openplanner.team/stops/N513ata", "https://tec.openplanner.team/stops/N513axb"], ["https://tec.openplanner.team/stops/Bwatali1", "https://tec.openplanner.team/stops/Bwatcrf1"], ["https://tec.openplanner.team/stops/N349aab", "https://tec.openplanner.team/stops/N349aca"], ["https://tec.openplanner.team/stops/LaSneuh1", "https://tec.openplanner.team/stops/LhGlang2"], ["https://tec.openplanner.team/stops/H1ag106a", "https://tec.openplanner.team/stops/H1ag107a"], ["https://tec.openplanner.team/stops/Canpeup1", "https://tec.openplanner.team/stops/Canresi1"], ["https://tec.openplanner.team/stops/N534bya", "https://tec.openplanner.team/stops/N534byb"], ["https://tec.openplanner.team/stops/X714aea", "https://tec.openplanner.team/stops/X715aha"], ["https://tec.openplanner.team/stops/Cmecime1", "https://tec.openplanner.team/stops/Cmecime2"], ["https://tec.openplanner.team/stops/X769aia", "https://tec.openplanner.team/stops/X769alb"], ["https://tec.openplanner.team/stops/LMOlens3", "https://tec.openplanner.team/stops/LTychev2"], ["https://tec.openplanner.team/stops/N501fba", "https://tec.openplanner.team/stops/N501fbb"], ["https://tec.openplanner.team/stops/H4ch120c", "https://tec.openplanner.team/stops/H4ch120d"], ["https://tec.openplanner.team/stops/Bohnpla1", "https://tec.openplanner.team/stops/Bohnpla2"], ["https://tec.openplanner.team/stops/X608agb", "https://tec.openplanner.team/stops/X608ara"], ["https://tec.openplanner.team/stops/H2ca108b", "https://tec.openplanner.team/stops/H2mo127c"], ["https://tec.openplanner.team/stops/Bnstmig2", "https://tec.openplanner.team/stops/H3so187b"], ["https://tec.openplanner.team/stops/LROcham2", "https://tec.openplanner.team/stops/LROmons2"], ["https://tec.openplanner.team/stops/LCPcomb2", "https://tec.openplanner.team/stops/LCPcomp2"], ["https://tec.openplanner.team/stops/LXoharz4", "https://tec.openplanner.team/stops/X599agb"], ["https://tec.openplanner.team/stops/LHrlorc1", "https://tec.openplanner.team/stops/LHseg--3"], ["https://tec.openplanner.team/stops/H1mq200a", "https://tec.openplanner.team/stops/H5me106a"], ["https://tec.openplanner.team/stops/X829aab", "https://tec.openplanner.team/stops/X829aba"], ["https://tec.openplanner.team/stops/LSMcles1", "https://tec.openplanner.team/stops/LSMcles2"], ["https://tec.openplanner.team/stops/X982bkb", "https://tec.openplanner.team/stops/X982bla"], ["https://tec.openplanner.team/stops/NL76akb", "https://tec.openplanner.team/stops/NL76bca"], ["https://tec.openplanner.team/stops/Cctbois2", "https://tec.openplanner.team/stops/Cctgiss2"], ["https://tec.openplanner.team/stops/Cciethi2", "https://tec.openplanner.team/stops/Ccimont1"], ["https://tec.openplanner.team/stops/Crccamp2", "https://tec.openplanner.team/stops/Crclorc1"], ["https://tec.openplanner.team/stops/N248acb", "https://tec.openplanner.team/stops/N248ada"], ["https://tec.openplanner.team/stops/NL80aua", "https://tec.openplanner.team/stops/NL80aub"], ["https://tec.openplanner.team/stops/X718aka", "https://tec.openplanner.team/stops/X719afb"], ["https://tec.openplanner.team/stops/H3bi100a", "https://tec.openplanner.team/stops/H3bi101a"], ["https://tec.openplanner.team/stops/LRRchea3", "https://tec.openplanner.team/stops/LRRmanc2"], ["https://tec.openplanner.team/stops/Bnivjli1", "https://tec.openplanner.team/stops/Bnivjli2"], ["https://tec.openplanner.team/stops/H4hu120a", "https://tec.openplanner.team/stops/H4hu120b"], ["https://tec.openplanner.team/stops/Cgofbru1", "https://tec.openplanner.team/stops/Ctmmath2"], ["https://tec.openplanner.team/stops/H1fr107e", "https://tec.openplanner.team/stops/H1fr152a"], ["https://tec.openplanner.team/stops/Lgrchar1", "https://tec.openplanner.team/stops/Lgrcoll2"], ["https://tec.openplanner.team/stops/Llmcoop1", "https://tec.openplanner.team/stops/Llmeg--*"], ["https://tec.openplanner.team/stops/Broneco1", "https://tec.openplanner.team/stops/Bronrch1"], ["https://tec.openplanner.team/stops/N160aaa", "https://tec.openplanner.team/stops/N160aeb"], ["https://tec.openplanner.team/stops/Llgnaes1", "https://tec.openplanner.team/stops/Llgwesp1"], ["https://tec.openplanner.team/stops/LMAgdfa1", "https://tec.openplanner.team/stops/LMApl--2"], ["https://tec.openplanner.team/stops/N531aja", "https://tec.openplanner.team/stops/N534blg"], ["https://tec.openplanner.team/stops/Ljubrec2", "https://tec.openplanner.team/stops/Ljucano2"], ["https://tec.openplanner.team/stops/LBUmara1", "https://tec.openplanner.team/stops/LHhmohe2"], ["https://tec.openplanner.team/stops/Lsn184-2", "https://tec.openplanner.team/stops/Lsnagne2"], ["https://tec.openplanner.team/stops/X823abb", "https://tec.openplanner.team/stops/X823aga"], ["https://tec.openplanner.team/stops/X818aca", "https://tec.openplanner.team/stops/X818acb"], ["https://tec.openplanner.team/stops/H2bh114b", "https://tec.openplanner.team/stops/H2bh119b"], ["https://tec.openplanner.team/stops/LnEfrie1", "https://tec.openplanner.team/stops/LnEfrie2"], ["https://tec.openplanner.team/stops/X917aaa", "https://tec.openplanner.team/stops/X919aoa"], ["https://tec.openplanner.team/stops/Bvirhsa2", "https://tec.openplanner.team/stops/Bvirpla1"], ["https://tec.openplanner.team/stops/LON21--1", "https://tec.openplanner.team/stops/LONcroi1"], ["https://tec.openplanner.team/stops/Bjodcad2", "https://tec.openplanner.team/stops/NR10acb"], ["https://tec.openplanner.team/stops/X625aab", "https://tec.openplanner.team/stops/X625aba"], ["https://tec.openplanner.team/stops/X398aga", "https://tec.openplanner.team/stops/X398agb"], ["https://tec.openplanner.team/stops/H2ec104a", "https://tec.openplanner.team/stops/H2me116a"], ["https://tec.openplanner.team/stops/LOTsav-1", "https://tec.openplanner.team/stops/LTolijn*"], ["https://tec.openplanner.team/stops/Cbicamp1", "https://tec.openplanner.team/stops/Cbiseur2"], ["https://tec.openplanner.team/stops/X618ajb", "https://tec.openplanner.team/stops/X618aka"], ["https://tec.openplanner.team/stops/X902aea", "https://tec.openplanner.team/stops/X902aeb"], ["https://tec.openplanner.team/stops/X359afa", "https://tec.openplanner.team/stops/X359aha"], ["https://tec.openplanner.team/stops/N207aeb", "https://tec.openplanner.team/stops/N209aaa"], ["https://tec.openplanner.team/stops/N150agb", "https://tec.openplanner.team/stops/N150ajb"], ["https://tec.openplanner.team/stops/Canboni2", "https://tec.openplanner.team/stops/Canplch3"], ["https://tec.openplanner.team/stops/LmTgers1", "https://tec.openplanner.team/stops/LmTschi2"], ["https://tec.openplanner.team/stops/Loucent2", "https://tec.openplanner.team/stops/Lougoff1"], ["https://tec.openplanner.team/stops/Lvcbasi*", "https://tec.openplanner.team/stops/Lvcsapi1"], ["https://tec.openplanner.team/stops/Llxec--2", "https://tec.openplanner.team/stops/Lwakipe1"], ["https://tec.openplanner.team/stops/X685acb", "https://tec.openplanner.team/stops/X685aib"], ["https://tec.openplanner.team/stops/X796ahb", "https://tec.openplanner.team/stops/X986ama"], ["https://tec.openplanner.team/stops/Bplnbal1", "https://tec.openplanner.team/stops/Clpalli2"], ["https://tec.openplanner.team/stops/LSpfond2", "https://tec.openplanner.team/stops/LSpunio1"], ["https://tec.openplanner.team/stops/LLUdeig1", "https://tec.openplanner.team/stops/LLUhotc1"], ["https://tec.openplanner.team/stops/Bohnman1", "https://tec.openplanner.team/stops/Bohnmes2"], ["https://tec.openplanner.team/stops/LJveg--1", "https://tec.openplanner.team/stops/LLLvill1"], ["https://tec.openplanner.team/stops/Cmahotv1", "https://tec.openplanner.team/stops/Cmazsnc1"], ["https://tec.openplanner.team/stops/X660aeb", "https://tec.openplanner.team/stops/X660afb"], ["https://tec.openplanner.team/stops/LLR4bra2", "https://tec.openplanner.team/stops/LLRptma2"], ["https://tec.openplanner.team/stops/H2gy105a", "https://tec.openplanner.team/stops/H2gy107b"], ["https://tec.openplanner.team/stops/X790adb", "https://tec.openplanner.team/stops/X790afb"], ["https://tec.openplanner.team/stops/X896aeb", "https://tec.openplanner.team/stops/X995aca"], ["https://tec.openplanner.team/stops/Lfhtrca2", "https://tec.openplanner.team/stops/Lfhtrxc1"], ["https://tec.openplanner.team/stops/NH01aeb", "https://tec.openplanner.team/stops/NH01ala"], ["https://tec.openplanner.team/stops/X822aca", "https://tec.openplanner.team/stops/X822apb"], ["https://tec.openplanner.team/stops/X620aca", "https://tec.openplanner.team/stops/X620adb"], ["https://tec.openplanner.team/stops/LJelava1", "https://tec.openplanner.team/stops/LReeg--1"], ["https://tec.openplanner.team/stops/LMibouv4", "https://tec.openplanner.team/stops/LMipoti2"], ["https://tec.openplanner.team/stops/H1er106a", "https://tec.openplanner.team/stops/H1er106b"], ["https://tec.openplanner.team/stops/X991agb", "https://tec.openplanner.team/stops/X991agc"], ["https://tec.openplanner.team/stops/Cmggthi1", "https://tec.openplanner.team/stops/Cmgtour1"], ["https://tec.openplanner.team/stops/Bincbbo1", "https://tec.openplanner.team/stops/Bincbbo4"], ["https://tec.openplanner.team/stops/Bblager1", "https://tec.openplanner.team/stops/Bblaniv2"], ["https://tec.openplanner.team/stops/X650aoa", "https://tec.openplanner.team/stops/X650aob"], ["https://tec.openplanner.team/stops/N111aca", "https://tec.openplanner.team/stops/N111afa"], ["https://tec.openplanner.team/stops/X982bda", "https://tec.openplanner.team/stops/X982bjb"], ["https://tec.openplanner.team/stops/N536apa", "https://tec.openplanner.team/stops/N536apb"], ["https://tec.openplanner.team/stops/LFtn6--2", "https://tec.openplanner.team/stops/LRMn58-2"], ["https://tec.openplanner.team/stops/H1qu100c", "https://tec.openplanner.team/stops/H1qu100d"], ["https://tec.openplanner.team/stops/NL76afa", "https://tec.openplanner.team/stops/NL76arb"], ["https://tec.openplanner.team/stops/N501hjd", "https://tec.openplanner.team/stops/N501hlz"], ["https://tec.openplanner.team/stops/Bhevgro1", "https://tec.openplanner.team/stops/Bleunaa1"], ["https://tec.openplanner.team/stops/LSceg--2", "https://tec.openplanner.team/stops/LVTeg--2"], ["https://tec.openplanner.team/stops/LESathe2", "https://tec.openplanner.team/stops/LESmich1"], ["https://tec.openplanner.team/stops/LeYgros2", "https://tec.openplanner.team/stops/LeYmuhl2"], ["https://tec.openplanner.team/stops/Bniltri2", "https://tec.openplanner.team/stops/Bnilwal2"], ["https://tec.openplanner.team/stops/NC14ama", "https://tec.openplanner.team/stops/NC14anb"], ["https://tec.openplanner.team/stops/Btgrpla1", "https://tec.openplanner.team/stops/N584aha"], ["https://tec.openplanner.team/stops/LLM4rou4", "https://tec.openplanner.team/stops/LLMeg--2"], ["https://tec.openplanner.team/stops/H1wa157a", "https://tec.openplanner.team/stops/H1wg125a"], ["https://tec.openplanner.team/stops/LeYberl1", "https://tec.openplanner.team/stops/LlChebs1"], ["https://tec.openplanner.team/stops/N502acb", "https://tec.openplanner.team/stops/N502ada"], ["https://tec.openplanner.team/stops/Bbchdra1", "https://tec.openplanner.team/stops/Bwaucan1"], ["https://tec.openplanner.team/stops/Ljufore1", "https://tec.openplanner.team/stops/Ljufore2"], ["https://tec.openplanner.team/stops/Lcacasi2", "https://tec.openplanner.team/stops/LNipla3"], ["https://tec.openplanner.team/stops/LSeaque2", "https://tec.openplanner.team/stops/LSetrix2"], ["https://tec.openplanner.team/stops/Causncb2", "https://tec.openplanner.team/stops/N543awg"], ["https://tec.openplanner.team/stops/H2na132a", "https://tec.openplanner.team/stops/H2na133b"], ["https://tec.openplanner.team/stops/H1mr122b", "https://tec.openplanner.team/stops/H1mr123b"], ["https://tec.openplanner.team/stops/X721ahb", "https://tec.openplanner.team/stops/X721aib"], ["https://tec.openplanner.team/stops/H3bi102a", "https://tec.openplanner.team/stops/H3bi116b"], ["https://tec.openplanner.team/stops/N503adb", "https://tec.openplanner.team/stops/N503agb"], ["https://tec.openplanner.team/stops/H4eg101c", "https://tec.openplanner.team/stops/H4eg101d"], ["https://tec.openplanner.team/stops/X650afc", "https://tec.openplanner.team/stops/X650ahb"], ["https://tec.openplanner.team/stops/N521aoa", "https://tec.openplanner.team/stops/N521apb"], ["https://tec.openplanner.team/stops/N229asa", "https://tec.openplanner.team/stops/N540ama"], ["https://tec.openplanner.team/stops/Lsebegu1", "https://tec.openplanner.team/stops/Lsebelv1"], ["https://tec.openplanner.team/stops/X991adb", "https://tec.openplanner.team/stops/X993aab"], ["https://tec.openplanner.team/stops/Lhrlalo1", "https://tec.openplanner.team/stops/Lhrlamb2"], ["https://tec.openplanner.team/stops/N351aaa", "https://tec.openplanner.team/stops/N351ajb"], ["https://tec.openplanner.team/stops/Lsepaqu2", "https://tec.openplanner.team/stops/Lseserv4"], ["https://tec.openplanner.team/stops/LSeec--2", "https://tec.openplanner.team/stops/LSeec--3"], ["https://tec.openplanner.team/stops/X641asa", "https://tec.openplanner.team/stops/X641ata"], ["https://tec.openplanner.team/stops/N232bsb", "https://tec.openplanner.team/stops/N232btb"], ["https://tec.openplanner.team/stops/Lkiecol1", "https://tec.openplanner.team/stops/Llgtunn2"], ["https://tec.openplanner.team/stops/N244ana", "https://tec.openplanner.team/stops/N244aoa"], ["https://tec.openplanner.team/stops/X670aaa", "https://tec.openplanner.team/stops/X670aba"], ["https://tec.openplanner.team/stops/LHNhall3", "https://tec.openplanner.team/stops/LHNwaut1"], ["https://tec.openplanner.team/stops/X804afa", "https://tec.openplanner.team/stops/X804baa"], ["https://tec.openplanner.team/stops/N501hxb", "https://tec.openplanner.team/stops/N501hxz"], ["https://tec.openplanner.team/stops/N501ica", "https://tec.openplanner.team/stops/N501ipb"], ["https://tec.openplanner.team/stops/X626aha", "https://tec.openplanner.team/stops/X626aia"], ["https://tec.openplanner.team/stops/H4og213a", "https://tec.openplanner.team/stops/H4og213b"], ["https://tec.openplanner.team/stops/Cgy4bra1", "https://tec.openplanner.team/stops/Cgymetr1"], ["https://tec.openplanner.team/stops/X921acb", "https://tec.openplanner.team/stops/X923aoa"], ["https://tec.openplanner.team/stops/Bhlvvil1", "https://tec.openplanner.team/stops/Bhlvvil3"], ["https://tec.openplanner.team/stops/H1eu102a", "https://tec.openplanner.team/stops/H1pa106a"], ["https://tec.openplanner.team/stops/LOucarr1", "https://tec.openplanner.team/stops/LOucarr4"], ["https://tec.openplanner.team/stops/Llgverg2", "https://tec.openplanner.team/stops/Lrcvill1"], ["https://tec.openplanner.team/stops/H1bi100a", "https://tec.openplanner.team/stops/H1bu143a"], ["https://tec.openplanner.team/stops/LhSschn1", "https://tec.openplanner.team/stops/LhSwind1"], ["https://tec.openplanner.team/stops/H1bl101a", "https://tec.openplanner.team/stops/H1eq116a"], ["https://tec.openplanner.team/stops/LHUgole1", "https://tec.openplanner.team/stops/LHUsauv1"], ["https://tec.openplanner.team/stops/Lghencl2", "https://tec.openplanner.team/stops/Lghflot2"], ["https://tec.openplanner.team/stops/LJAhanq1", "https://tec.openplanner.team/stops/LJAhanq4"], ["https://tec.openplanner.team/stops/X948aic", "https://tec.openplanner.team/stops/X948asb"], ["https://tec.openplanner.team/stops/N110afb", "https://tec.openplanner.team/stops/N113afa"], ["https://tec.openplanner.team/stops/Cgochfe1", "https://tec.openplanner.team/stops/Cgocnor1"], ["https://tec.openplanner.team/stops/Cmybefe2", "https://tec.openplanner.team/stops/Cmyquen2"], ["https://tec.openplanner.team/stops/Candett2", "https://tec.openplanner.team/stops/H1lo120b"], ["https://tec.openplanner.team/stops/X672aca", "https://tec.openplanner.team/stops/X672aga"], ["https://tec.openplanner.team/stops/H4bo120a", "https://tec.openplanner.team/stops/H4bo178a"], ["https://tec.openplanner.team/stops/LCsbors2", "https://tec.openplanner.team/stops/LVBneuv2"], ["https://tec.openplanner.team/stops/H2pr118a", "https://tec.openplanner.team/stops/H3so174a"], ["https://tec.openplanner.team/stops/Llgmart1", "https://tec.openplanner.team/stops/Llgsevr4"], ["https://tec.openplanner.team/stops/Bsdapir2", "https://tec.openplanner.team/stops/Csdpira1"], ["https://tec.openplanner.team/stops/X604aaa", "https://tec.openplanner.team/stops/X605agb"], ["https://tec.openplanner.team/stops/N343aaa", "https://tec.openplanner.team/stops/X344acb"], ["https://tec.openplanner.team/stops/N158aab", "https://tec.openplanner.team/stops/N158abb"], ["https://tec.openplanner.team/stops/Cgpauln2", "https://tec.openplanner.team/stops/H2gy113a"], ["https://tec.openplanner.team/stops/NC24afa", "https://tec.openplanner.team/stops/NC24afb"], ["https://tec.openplanner.team/stops/Cmcegli1", "https://tec.openplanner.team/stops/Cmcegli3"], ["https://tec.openplanner.team/stops/Cfanvmo1", "https://tec.openplanner.team/stops/Cfawain4"], ["https://tec.openplanner.team/stops/Bhensei1", "https://tec.openplanner.team/stops/Bhensei2"], ["https://tec.openplanner.team/stops/X615aza", "https://tec.openplanner.team/stops/X616ajb"], ["https://tec.openplanner.team/stops/Bwavbpi1", "https://tec.openplanner.team/stops/Bwavcui2"], ["https://tec.openplanner.team/stops/H4te254b", "https://tec.openplanner.team/stops/H4te257a"], ["https://tec.openplanner.team/stops/Cjudefi2", "https://tec.openplanner.team/stops/Cjurevo2"], ["https://tec.openplanner.team/stops/LCPlebl*", "https://tec.openplanner.team/stops/LCPlebl1"], ["https://tec.openplanner.team/stops/H4wi166b", "https://tec.openplanner.team/stops/H4wi170a"], ["https://tec.openplanner.team/stops/Brixpje1", "https://tec.openplanner.team/stops/Brsrcha2"], ["https://tec.openplanner.team/stops/LCpegli2", "https://tec.openplanner.team/stops/LCpvill2"], ["https://tec.openplanner.team/stops/Lbhmc--1", "https://tec.openplanner.team/stops/Ljupiet1"], ["https://tec.openplanner.team/stops/LCschri2", "https://tec.openplanner.team/stops/LCsgend2"], ["https://tec.openplanner.team/stops/Cgrflac1", "https://tec.openplanner.team/stops/Cgrflac2"], ["https://tec.openplanner.team/stops/Cvrchap1", "https://tec.openplanner.team/stops/Cvrhab21"], ["https://tec.openplanner.team/stops/N229ajb", "https://tec.openplanner.team/stops/N229akb"], ["https://tec.openplanner.team/stops/X902aoa", "https://tec.openplanner.team/stops/X902aob"], ["https://tec.openplanner.team/stops/LREsech1", "https://tec.openplanner.team/stops/LREsech2"], ["https://tec.openplanner.team/stops/H1gi122b", "https://tec.openplanner.team/stops/H1gi154a"], ["https://tec.openplanner.team/stops/H2ma209a", "https://tec.openplanner.team/stops/H2ma209b"], ["https://tec.openplanner.team/stops/LRRecdu1", "https://tec.openplanner.team/stops/LRReg--2"], ["https://tec.openplanner.team/stops/LHtdros1", "https://tec.openplanner.team/stops/LJAbell1"], ["https://tec.openplanner.team/stops/Bgliopp2", "https://tec.openplanner.team/stops/Bincbbo3"], ["https://tec.openplanner.team/stops/LBIfore1", "https://tec.openplanner.team/stops/Lghfore2"], ["https://tec.openplanner.team/stops/H1bl102a", "https://tec.openplanner.team/stops/H1bl105b"], ["https://tec.openplanner.team/stops/Btancnd1", "https://tec.openplanner.team/stops/Bvlvbth2"], ["https://tec.openplanner.team/stops/Cchriga2", "https://tec.openplanner.team/stops/Cchsud01"], ["https://tec.openplanner.team/stops/N110aab", "https://tec.openplanner.team/stops/N110acb"], ["https://tec.openplanner.team/stops/H1qu100b", "https://tec.openplanner.team/stops/H1qu129b"], ["https://tec.openplanner.team/stops/Bnivga51", "https://tec.openplanner.team/stops/Bnivga61"], ["https://tec.openplanner.team/stops/N117baa", "https://tec.openplanner.team/stops/N147ada"], ["https://tec.openplanner.team/stops/Bove4ko2", "https://tec.openplanner.team/stops/Bovetwe1"], ["https://tec.openplanner.team/stops/H1do115b", "https://tec.openplanner.team/stops/H1do121a"], ["https://tec.openplanner.team/stops/X634aaa", "https://tec.openplanner.team/stops/X654aab"], ["https://tec.openplanner.team/stops/X601ajb", "https://tec.openplanner.team/stops/X601aka"], ["https://tec.openplanner.team/stops/X604ajb", "https://tec.openplanner.team/stops/X604aka"], ["https://tec.openplanner.team/stops/Blhulil2", "https://tec.openplanner.team/stops/Blhuone2"], ["https://tec.openplanner.team/stops/Llgauxc1", "https://tec.openplanner.team/stops/Llgbaya2"], ["https://tec.openplanner.team/stops/N534bub", "https://tec.openplanner.team/stops/N534bva"], ["https://tec.openplanner.team/stops/Bezebru2", "https://tec.openplanner.team/stops/Blanath2"], ["https://tec.openplanner.team/stops/LRRcarr1", "https://tec.openplanner.team/stops/LRRchen1"], ["https://tec.openplanner.team/stops/Cgnpass1", "https://tec.openplanner.team/stops/Clproi1"], ["https://tec.openplanner.team/stops/H1ro133a", "https://tec.openplanner.team/stops/H4ma162a"], ["https://tec.openplanner.team/stops/Canecbr2", "https://tec.openplanner.team/stops/Canmonu5"], ["https://tec.openplanner.team/stops/LGlwarf1", "https://tec.openplanner.team/stops/LSBsere2"], ["https://tec.openplanner.team/stops/X601bya", "https://tec.openplanner.team/stops/X601coa"], ["https://tec.openplanner.team/stops/X663ada", "https://tec.openplanner.team/stops/X663ama"], ["https://tec.openplanner.team/stops/X736aab", "https://tec.openplanner.team/stops/X937aha"], ["https://tec.openplanner.team/stops/X743agb", "https://tec.openplanner.team/stops/X756agb"], ["https://tec.openplanner.team/stops/Bohnrph1", "https://tec.openplanner.team/stops/Bohnrph2"], ["https://tec.openplanner.team/stops/Cgdberl2", "https://tec.openplanner.team/stops/Cgdrhau1"], ["https://tec.openplanner.team/stops/LAWchpl2", "https://tec.openplanner.team/stops/LAWdefu3"], ["https://tec.openplanner.team/stops/H1je218b", "https://tec.openplanner.team/stops/H1ms929a"], ["https://tec.openplanner.team/stops/LLirout2", "https://tec.openplanner.team/stops/LPUlecl2"], ["https://tec.openplanner.team/stops/LWaanto2", "https://tec.openplanner.team/stops/LWagare*"], ["https://tec.openplanner.team/stops/Cjudaxi2", "https://tec.openplanner.team/stops/Cjufrat2"], ["https://tec.openplanner.team/stops/LODarbr1", "https://tec.openplanner.team/stops/X547aaa"], ["https://tec.openplanner.team/stops/Buccbas1", "https://tec.openplanner.team/stops/Buccdho2"], ["https://tec.openplanner.team/stops/H1bu138b", "https://tec.openplanner.team/stops/H1bu139a"], ["https://tec.openplanner.team/stops/H1mj123a", "https://tec.openplanner.team/stops/H1mj129a"], ["https://tec.openplanner.team/stops/X744aca", "https://tec.openplanner.team/stops/X746aha"], ["https://tec.openplanner.team/stops/N229asb", "https://tec.openplanner.team/stops/N230abb"], ["https://tec.openplanner.team/stops/Bspkbeu1", "https://tec.openplanner.team/stops/H1bd102a"], ["https://tec.openplanner.team/stops/Brsgera2", "https://tec.openplanner.team/stops/Buccpes2"], ["https://tec.openplanner.team/stops/Cmlceri1", "https://tec.openplanner.team/stops/Cmlfeba2"], ["https://tec.openplanner.team/stops/LHUgare*", "https://tec.openplanner.team/stops/LHUlieg2"], ["https://tec.openplanner.team/stops/H4bh103a", "https://tec.openplanner.team/stops/H4bh103b"], ["https://tec.openplanner.team/stops/Lflmaxi1", "https://tec.openplanner.team/stops/Lrecroi2"], ["https://tec.openplanner.team/stops/H1vh136c", "https://tec.openplanner.team/stops/H1vh137a"], ["https://tec.openplanner.team/stops/N551aeb", "https://tec.openplanner.team/stops/N551aiy"], ["https://tec.openplanner.team/stops/H5bl115a", "https://tec.openplanner.team/stops/H5bl124b"], ["https://tec.openplanner.team/stops/X346akb", "https://tec.openplanner.team/stops/X369acb"], ["https://tec.openplanner.team/stops/Cmychau1", "https://tec.openplanner.team/stops/Cmypast2"], ["https://tec.openplanner.team/stops/Baudsju2", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/Llgavoc2", "https://tec.openplanner.team/stops/Llgnico5"], ["https://tec.openplanner.team/stops/X919ajc", "https://tec.openplanner.team/stops/X919ala"], ["https://tec.openplanner.team/stops/H4ga153a", "https://tec.openplanner.team/stops/H4ga170b"], ["https://tec.openplanner.team/stops/Lgrbill1", "https://tec.openplanner.team/stops/Lgrclas1"], ["https://tec.openplanner.team/stops/Lsehya-1", "https://tec.openplanner.team/stops/Lsepapi1"], ["https://tec.openplanner.team/stops/LMHcant1", "https://tec.openplanner.team/stops/LMHec--1"], ["https://tec.openplanner.team/stops/Bwaanwi1", "https://tec.openplanner.team/stops/Bwaanwi2"], ["https://tec.openplanner.team/stops/Cctsold1", "https://tec.openplanner.team/stops/Cctsold2"], ["https://tec.openplanner.team/stops/Llgcoro1", "https://tec.openplanner.team/stops/Llgcoro2"], ["https://tec.openplanner.team/stops/X903afb", "https://tec.openplanner.team/stops/X904abb"], ["https://tec.openplanner.team/stops/Bcrnsge1", "https://tec.openplanner.team/stops/Bsgeegl4"], ["https://tec.openplanner.team/stops/X831abb", "https://tec.openplanner.team/stops/X833aca"], ["https://tec.openplanner.team/stops/X725aba", "https://tec.openplanner.team/stops/X725acb"], ["https://tec.openplanner.team/stops/Lhufays1", "https://tec.openplanner.team/stops/LSPcomm1"], ["https://tec.openplanner.team/stops/Ladloup2", "https://tec.openplanner.team/stops/Lvelimi2"], ["https://tec.openplanner.team/stops/LETsaiv1", "https://tec.openplanner.team/stops/LETsaiv2"], ["https://tec.openplanner.team/stops/H4bx108b", "https://tec.openplanner.team/stops/H4ht173b"], ["https://tec.openplanner.team/stops/Csefour1", "https://tec.openplanner.team/stops/Cvtndam3"], ["https://tec.openplanner.team/stops/Bmalwop1", "https://tec.openplanner.team/stops/Boppcen4"], ["https://tec.openplanner.team/stops/Bwatgla1", "https://tec.openplanner.team/stops/Bwatprp2"], ["https://tec.openplanner.team/stops/X724aia", "https://tec.openplanner.team/stops/X768aaa"], ["https://tec.openplanner.team/stops/N522aeb", "https://tec.openplanner.team/stops/N522apb"], ["https://tec.openplanner.team/stops/LENindu1", "https://tec.openplanner.team/stops/LENindu2"], ["https://tec.openplanner.team/stops/X606aba", "https://tec.openplanner.team/stops/X648aaa"], ["https://tec.openplanner.team/stops/N549agb", "https://tec.openplanner.team/stops/N549ahb"], ["https://tec.openplanner.team/stops/Cgualno1", "https://tec.openplanner.team/stops/Cnalava3"], ["https://tec.openplanner.team/stops/H4bl104b", "https://tec.openplanner.team/stops/H4bl106b"], ["https://tec.openplanner.team/stops/Ctuyser1", "https://tec.openplanner.team/stops/NC28aha"], ["https://tec.openplanner.team/stops/Bmrsayw1", "https://tec.openplanner.team/stops/Bmrscsp1"], ["https://tec.openplanner.team/stops/Lrcarse2", "https://tec.openplanner.team/stops/Lrcprin6"], ["https://tec.openplanner.team/stops/X641aoa", "https://tec.openplanner.team/stops/X641aob"], ["https://tec.openplanner.team/stops/H1fa121a", "https://tec.openplanner.team/stops/H1fa121b"], ["https://tec.openplanner.team/stops/NL37aca", "https://tec.openplanner.team/stops/NL37acb"], ["https://tec.openplanner.team/stops/H4he104b", "https://tec.openplanner.team/stops/H4wg121a"], ["https://tec.openplanner.team/stops/H1gi120d", "https://tec.openplanner.team/stops/H1gi154b"], ["https://tec.openplanner.team/stops/Ladlaur1", "https://tec.openplanner.team/stops/Ladlaur2"], ["https://tec.openplanner.team/stops/LMAgare0", "https://tec.openplanner.team/stops/LMAptne2"], ["https://tec.openplanner.team/stops/Lcacasi2", "https://tec.openplanner.team/stops/Lcapisc2"], ["https://tec.openplanner.team/stops/H1qu107b", "https://tec.openplanner.team/stops/H1wl121b"], ["https://tec.openplanner.team/stops/Lbbviad4", "https://tec.openplanner.team/stops/Lgrwill2"], ["https://tec.openplanner.team/stops/X805adb", "https://tec.openplanner.team/stops/X805aeb"], ["https://tec.openplanner.team/stops/LBkcare*", "https://tec.openplanner.team/stops/LBkcarr3"], ["https://tec.openplanner.team/stops/H1hy127a", "https://tec.openplanner.team/stops/H1hy127b"], ["https://tec.openplanner.team/stops/X641atb", "https://tec.openplanner.team/stops/X641aua"], ["https://tec.openplanner.team/stops/N232ana", "https://tec.openplanner.team/stops/N286aab"], ["https://tec.openplanner.team/stops/Cbfchla1", "https://tec.openplanner.team/stops/NC24aja"], ["https://tec.openplanner.team/stops/N214aja", "https://tec.openplanner.team/stops/N214ajb"], ["https://tec.openplanner.team/stops/Btubren1", "https://tec.openplanner.team/stops/Btubren2"], ["https://tec.openplanner.team/stops/LSx309-1", "https://tec.openplanner.team/stops/LSxeg--1"], ["https://tec.openplanner.team/stops/N539aoa", "https://tec.openplanner.team/stops/N539ava"], ["https://tec.openplanner.team/stops/X802abb", "https://tec.openplanner.team/stops/X818ajb"], ["https://tec.openplanner.team/stops/Btlbche1", "https://tec.openplanner.team/stops/Btlbegl2"], ["https://tec.openplanner.team/stops/X637aja", "https://tec.openplanner.team/stops/X637aob"], ["https://tec.openplanner.team/stops/X994aga", "https://tec.openplanner.team/stops/X995afa"], ["https://tec.openplanner.team/stops/Lagcolo1", "https://tec.openplanner.team/stops/Lagpn6-1"], ["https://tec.openplanner.team/stops/X897aga", "https://tec.openplanner.team/stops/X897ara"], ["https://tec.openplanner.team/stops/H1ne142b", "https://tec.openplanner.team/stops/H1ne147a"], ["https://tec.openplanner.team/stops/Bjodcsb1", "https://tec.openplanner.team/stops/Bsrgegl1"], ["https://tec.openplanner.team/stops/LmDgeme1", "https://tec.openplanner.team/stops/LmYeich2"], ["https://tec.openplanner.team/stops/Loujouh1", "https://tec.openplanner.team/stops/Loujouh2"], ["https://tec.openplanner.team/stops/H1bo100b", "https://tec.openplanner.team/stops/H1bo112b"], ["https://tec.openplanner.team/stops/X718aca", "https://tec.openplanner.team/stops/X719ada"], ["https://tec.openplanner.team/stops/LSznoel2", "https://tec.openplanner.team/stops/N506bva"], ["https://tec.openplanner.team/stops/H1qu108a", "https://tec.openplanner.team/stops/H1qu114b"], ["https://tec.openplanner.team/stops/N501ama", "https://tec.openplanner.team/stops/N501bba"], ["https://tec.openplanner.team/stops/X786ada", "https://tec.openplanner.team/stops/X786aja"], ["https://tec.openplanner.team/stops/H4er124b", "https://tec.openplanner.team/stops/H4ty339b"], ["https://tec.openplanner.team/stops/Lhrathe*", "https://tec.openplanner.team/stops/Lhrathe1"], ["https://tec.openplanner.team/stops/N254aab", "https://tec.openplanner.team/stops/N570aca"], ["https://tec.openplanner.team/stops/X829aba", "https://tec.openplanner.team/stops/X829aca"], ["https://tec.openplanner.team/stops/LAo161-2", "https://tec.openplanner.team/stops/LWn24--1"], ["https://tec.openplanner.team/stops/LON02--1", "https://tec.openplanner.team/stops/LON21--1"], ["https://tec.openplanner.team/stops/H1hc125a", "https://tec.openplanner.team/stops/H1hc152b"], ["https://tec.openplanner.team/stops/H1fl136a", "https://tec.openplanner.team/stops/H1fl140b"], ["https://tec.openplanner.team/stops/Lanc14v1", "https://tec.openplanner.team/stops/Lrcvill1"], ["https://tec.openplanner.team/stops/X901aka", "https://tec.openplanner.team/stops/X901apb"], ["https://tec.openplanner.team/stops/H4cw104b", "https://tec.openplanner.team/stops/H4cw107b"], ["https://tec.openplanner.team/stops/LSSfrai2", "https://tec.openplanner.team/stops/LSSjeun1"], ["https://tec.openplanner.team/stops/Cciferr2", "https://tec.openplanner.team/stops/Ccircar2"], ["https://tec.openplanner.team/stops/LFOchab1", "https://tec.openplanner.team/stops/LFOcomb3"], ["https://tec.openplanner.team/stops/X739ada", "https://tec.openplanner.team/stops/X739adb"], ["https://tec.openplanner.team/stops/H1gq153a", "https://tec.openplanner.team/stops/H1sy137c"], ["https://tec.openplanner.team/stops/LLC170-1", "https://tec.openplanner.team/stops/LLCeg--1"], ["https://tec.openplanner.team/stops/X733aha", "https://tec.openplanner.team/stops/X734ara"], ["https://tec.openplanner.team/stops/X812ana", "https://tec.openplanner.team/stops/X812anb"], ["https://tec.openplanner.team/stops/NC02abb", "https://tec.openplanner.team/stops/NC14ahb"], ["https://tec.openplanner.team/stops/LNCmc--1", "https://tec.openplanner.team/stops/LNCmc--2"], ["https://tec.openplanner.team/stops/N501hna", "https://tec.openplanner.team/stops/N521amb"], ["https://tec.openplanner.team/stops/N134afa", "https://tec.openplanner.team/stops/N154aba"], ["https://tec.openplanner.team/stops/H4ty351b", "https://tec.openplanner.team/stops/H4ty416a"], ["https://tec.openplanner.team/stops/H4wn125b", "https://tec.openplanner.team/stops/H4wn127a"], ["https://tec.openplanner.team/stops/H4ty309a", "https://tec.openplanner.team/stops/H4ty332b"], ["https://tec.openplanner.team/stops/H1ht128a", "https://tec.openplanner.team/stops/H1vt193b"], ["https://tec.openplanner.team/stops/H1ma231b", "https://tec.openplanner.team/stops/H1mj124a"], ["https://tec.openplanner.team/stops/N135aba", "https://tec.openplanner.team/stops/N135adc"], ["https://tec.openplanner.team/stops/N165aab", "https://tec.openplanner.team/stops/N165aca"], ["https://tec.openplanner.team/stops/X911aea", "https://tec.openplanner.team/stops/X911afb"], ["https://tec.openplanner.team/stops/X937ala", "https://tec.openplanner.team/stops/X945aea"], ["https://tec.openplanner.team/stops/H4do102a", "https://tec.openplanner.team/stops/H4do107b"], ["https://tec.openplanner.team/stops/N149ala", "https://tec.openplanner.team/stops/N149alb"], ["https://tec.openplanner.team/stops/N506bmb", "https://tec.openplanner.team/stops/N506bqb"], ["https://tec.openplanner.team/stops/Cjurevo1", "https://tec.openplanner.team/stops/Clocroi2"], ["https://tec.openplanner.team/stops/N528agb", "https://tec.openplanner.team/stops/N528ara"], ["https://tec.openplanner.team/stops/LAYcont2", "https://tec.openplanner.team/stops/LAYecol2"], ["https://tec.openplanner.team/stops/X614ada", "https://tec.openplanner.team/stops/X614azb"], ["https://tec.openplanner.team/stops/X996agb", "https://tec.openplanner.team/stops/X996ahb"], ["https://tec.openplanner.team/stops/LFAwale1", "https://tec.openplanner.team/stops/LVBbvin"], ["https://tec.openplanner.team/stops/H1ch105b", "https://tec.openplanner.team/stops/H1ch106b"], ["https://tec.openplanner.team/stops/LNEbo471", "https://tec.openplanner.team/stops/LOLcroi1"], ["https://tec.openplanner.team/stops/Bjodath3", "https://tec.openplanner.team/stops/Bjodcar1"], ["https://tec.openplanner.team/stops/LDoeg--2", "https://tec.openplanner.team/stops/LDomoul2"], ["https://tec.openplanner.team/stops/Cfmcent2", "https://tec.openplanner.team/stops/Cfmsncb2"], ["https://tec.openplanner.team/stops/Bcsgcou1", "https://tec.openplanner.team/stops/Blasbgc2"], ["https://tec.openplanner.team/stops/H1gr118a", "https://tec.openplanner.team/stops/H1to153d"], ["https://tec.openplanner.team/stops/H4do105a", "https://tec.openplanner.team/stops/H4mo192a"], ["https://tec.openplanner.team/stops/Llgcong1", "https://tec.openplanner.team/stops/Llgterr1"], ["https://tec.openplanner.team/stops/Ladchat1", "https://tec.openplanner.team/stops/Ladhomb2"], ["https://tec.openplanner.team/stops/Cli4bra2", "https://tec.openplanner.team/stops/Crebien2"], ["https://tec.openplanner.team/stops/H4fr142a", "https://tec.openplanner.team/stops/H4fr142b"], ["https://tec.openplanner.team/stops/H1ba114c", "https://tec.openplanner.team/stops/H1ba118b"], ["https://tec.openplanner.team/stops/X742aga", "https://tec.openplanner.team/stops/X744aaa"], ["https://tec.openplanner.team/stops/LSkchwa2", "https://tec.openplanner.team/stops/LSkoran2"], ["https://tec.openplanner.team/stops/Bbcocvb2", "https://tec.openplanner.team/stops/Bhptegl1"], ["https://tec.openplanner.team/stops/Lvtcalv1", "https://tec.openplanner.team/stops/Lvtchpl4"], ["https://tec.openplanner.team/stops/Bbsggot1", "https://tec.openplanner.team/stops/Bhmmlad2"], ["https://tec.openplanner.team/stops/Bmrqgar1", "https://tec.openplanner.team/stops/Bspkdon1"], ["https://tec.openplanner.team/stops/X607aaa", "https://tec.openplanner.team/stops/X607abb"], ["https://tec.openplanner.team/stops/H1ms910a", "https://tec.openplanner.team/stops/H1ms911a"], ["https://tec.openplanner.team/stops/N562blb", "https://tec.openplanner.team/stops/N562bra"], ["https://tec.openplanner.team/stops/LWastei1", "https://tec.openplanner.team/stops/LWastei2"], ["https://tec.openplanner.team/stops/LOTmonu2", "https://tec.openplanner.team/stops/LOTtong1"], ["https://tec.openplanner.team/stops/H1fv103a", "https://tec.openplanner.team/stops/H1fv103b"], ["https://tec.openplanner.team/stops/NL74aia", "https://tec.openplanner.team/stops/NL74aib"], ["https://tec.openplanner.team/stops/N131afa", "https://tec.openplanner.team/stops/N131afb"], ["https://tec.openplanner.team/stops/Broncli1", "https://tec.openplanner.team/stops/Bvirmbr2"], ["https://tec.openplanner.team/stops/Bdvmc431", "https://tec.openplanner.team/stops/Bdvmc432"], ["https://tec.openplanner.team/stops/LHFcaqu2", "https://tec.openplanner.team/stops/LHFec--4"], ["https://tec.openplanner.team/stops/Bgzddge1", "https://tec.openplanner.team/stops/Bgzddmo2"], ["https://tec.openplanner.team/stops/Bbalvil1", "https://tec.openplanner.team/stops/Btgrpla1"], ["https://tec.openplanner.team/stops/H1hc125b", "https://tec.openplanner.team/stops/H1hc126a"], ["https://tec.openplanner.team/stops/X999asa", "https://tec.openplanner.team/stops/X999asb"], ["https://tec.openplanner.team/stops/H1fl133a", "https://tec.openplanner.team/stops/H1fl135b"], ["https://tec.openplanner.team/stops/Cdamarc2", "https://tec.openplanner.team/stops/Cdametr1"], ["https://tec.openplanner.team/stops/H1ca100a", "https://tec.openplanner.team/stops/H1th183b"], ["https://tec.openplanner.team/stops/Cmyboci1", "https://tec.openplanner.team/stops/Cmyvesa3"], ["https://tec.openplanner.team/stops/LOReg--2", "https://tec.openplanner.team/stops/LORvill1"], ["https://tec.openplanner.team/stops/X770aaa", "https://tec.openplanner.team/stops/X771ala"], ["https://tec.openplanner.team/stops/N204ada", "https://tec.openplanner.team/stops/N204agb"], ["https://tec.openplanner.team/stops/LbUbutg1", "https://tec.openplanner.team/stops/LbUgend1"], ["https://tec.openplanner.team/stops/LDmhave1", "https://tec.openplanner.team/stops/LSGcarr1"], ["https://tec.openplanner.team/stops/LLMfond1", "https://tec.openplanner.team/stops/LLMfond2"], ["https://tec.openplanner.team/stops/H3br122a", "https://tec.openplanner.team/stops/H3br122b"], ["https://tec.openplanner.team/stops/N501ioa", "https://tec.openplanner.team/stops/N501iob"], ["https://tec.openplanner.team/stops/H1sb146a", "https://tec.openplanner.team/stops/H1sb150a"], ["https://tec.openplanner.team/stops/X757aca", "https://tec.openplanner.team/stops/X757acb"], ["https://tec.openplanner.team/stops/Cfrtry1", "https://tec.openplanner.team/stops/Cfrtry2"], ["https://tec.openplanner.team/stops/Cgyhaie1", "https://tec.openplanner.team/stops/Cgylouv1"], ["https://tec.openplanner.team/stops/N545aaa", "https://tec.openplanner.team/stops/N545aab"], ["https://tec.openplanner.team/stops/X620acb", "https://tec.openplanner.team/stops/X620ada"], ["https://tec.openplanner.team/stops/N501gva", "https://tec.openplanner.team/stops/N501lba"], ["https://tec.openplanner.team/stops/Blhueca1", "https://tec.openplanner.team/stops/Blhupa11"], ["https://tec.openplanner.team/stops/X836aea", "https://tec.openplanner.team/stops/X836aeb"], ["https://tec.openplanner.team/stops/Bsoigar1", "https://tec.openplanner.team/stops/Bsoigar2"], ["https://tec.openplanner.team/stops/Ctm4che2", "https://tec.openplanner.team/stops/Ctmazeb2"], ["https://tec.openplanner.team/stops/H4fo115a", "https://tec.openplanner.team/stops/H4fo115b"], ["https://tec.openplanner.team/stops/LAuchau2", "https://tec.openplanner.team/stops/LAugara1"], ["https://tec.openplanner.team/stops/H4fa125b", "https://tec.openplanner.team/stops/H4hq129b"], ["https://tec.openplanner.team/stops/LFsconc1", "https://tec.openplanner.team/stops/LFsguil2"], ["https://tec.openplanner.team/stops/Bvilcoq1", "https://tec.openplanner.team/stops/Bvilpar1"], ["https://tec.openplanner.team/stops/LeUkehr4", "https://tec.openplanner.team/stops/LeUstad2"], ["https://tec.openplanner.team/stops/N501ahb", "https://tec.openplanner.team/stops/N501mda"], ["https://tec.openplanner.team/stops/X617agb", "https://tec.openplanner.team/stops/X696ala"], ["https://tec.openplanner.team/stops/N501cmc", "https://tec.openplanner.team/stops/N501cua"], ["https://tec.openplanner.team/stops/Cjxvalh1", "https://tec.openplanner.team/stops/Cmyboci1"], ["https://tec.openplanner.team/stops/H4ty301b", "https://tec.openplanner.team/stops/H4ty340a"], ["https://tec.openplanner.team/stops/LbUjost3", "https://tec.openplanner.team/stops/LhUrich1"], ["https://tec.openplanner.team/stops/N202aab", "https://tec.openplanner.team/stops/N204alb"], ["https://tec.openplanner.team/stops/Livjeu-1", "https://tec.openplanner.team/stops/Lseivoz1"], ["https://tec.openplanner.team/stops/LhEbruc1", "https://tec.openplanner.team/stops/LhEbruc2"], ["https://tec.openplanner.team/stops/LkEneus1", "https://tec.openplanner.team/stops/LkEneus2"], ["https://tec.openplanner.team/stops/X805acb", "https://tec.openplanner.team/stops/X805ajb"], ["https://tec.openplanner.team/stops/Lgrbell1", "https://tec.openplanner.team/stops/Lgrspir1"], ["https://tec.openplanner.team/stops/N155aia", "https://tec.openplanner.team/stops/N155aib"], ["https://tec.openplanner.team/stops/LeLkalt2", "https://tec.openplanner.team/stops/LeLsied2"], ["https://tec.openplanner.team/stops/LBNforg2", "https://tec.openplanner.team/stops/LBNhegg2"], ["https://tec.openplanner.team/stops/LmTkirc2", "https://tec.openplanner.team/stops/LmTreic2"], ["https://tec.openplanner.team/stops/N348adb", "https://tec.openplanner.team/stops/N352ajb"], ["https://tec.openplanner.team/stops/LAWchpl1", "https://tec.openplanner.team/stops/LAWcite6"], ["https://tec.openplanner.team/stops/LOUbarr2", "https://tec.openplanner.team/stops/LOUpres2"], ["https://tec.openplanner.team/stops/N554aeb", "https://tec.openplanner.team/stops/N566afa"], ["https://tec.openplanner.team/stops/LVnflox2", "https://tec.openplanner.team/stops/LVnvieg2"], ["https://tec.openplanner.team/stops/LBpecco1", "https://tec.openplanner.team/stops/LGEhosp1"], ["https://tec.openplanner.team/stops/LYegeor3", "https://tec.openplanner.team/stops/LYegeor4"], ["https://tec.openplanner.team/stops/X639aob", "https://tec.openplanner.team/stops/X639ata"], ["https://tec.openplanner.team/stops/X806aga", "https://tec.openplanner.team/stops/X806ahb"], ["https://tec.openplanner.team/stops/N531adb", "https://tec.openplanner.team/stops/N534bra"], ["https://tec.openplanner.team/stops/Cmecime1", "https://tec.openplanner.team/stops/Cvpcour1"], ["https://tec.openplanner.team/stops/X643aba", "https://tec.openplanner.team/stops/X643abb"], ["https://tec.openplanner.team/stops/LLAcalv1", "https://tec.openplanner.team/stops/LLApavi1"], ["https://tec.openplanner.team/stops/Lfhsoux1", "https://tec.openplanner.team/stops/Lpocent2"], ["https://tec.openplanner.team/stops/N118ada", "https://tec.openplanner.team/stops/N118aea"], ["https://tec.openplanner.team/stops/H1mr123a", "https://tec.openplanner.team/stops/H1mr125a"], ["https://tec.openplanner.team/stops/H3so184b", "https://tec.openplanner.team/stops/H3so185b"], ["https://tec.openplanner.team/stops/H4ea131a", "https://tec.openplanner.team/stops/H4wr175b"], ["https://tec.openplanner.team/stops/LBSgeer2", "https://tec.openplanner.team/stops/LBStong2"], ["https://tec.openplanner.team/stops/H1fr113a", "https://tec.openplanner.team/stops/H1lb138b"], ["https://tec.openplanner.team/stops/H4ga153b", "https://tec.openplanner.team/stops/H4ga170b"], ["https://tec.openplanner.team/stops/X813abb", "https://tec.openplanner.team/stops/X813aca"], ["https://tec.openplanner.team/stops/LNCvill1", "https://tec.openplanner.team/stops/LNCvill2"], ["https://tec.openplanner.team/stops/Lsecris1", "https://tec.openplanner.team/stops/Lsecris4"], ["https://tec.openplanner.team/stops/H1mb125a", "https://tec.openplanner.team/stops/H1mb128a"], ["https://tec.openplanner.team/stops/X982bsa", "https://tec.openplanner.team/stops/X982byb"], ["https://tec.openplanner.team/stops/N343ana", "https://tec.openplanner.team/stops/X343aha"], ["https://tec.openplanner.team/stops/LeUgend1", "https://tec.openplanner.team/stops/LeUgend2"], ["https://tec.openplanner.team/stops/LWaatel2", "https://tec.openplanner.team/stops/LWLhagi1"], ["https://tec.openplanner.team/stops/X769ala", "https://tec.openplanner.team/stops/X769alb"], ["https://tec.openplanner.team/stops/Llgstvi1", "https://tec.openplanner.team/stops/Llgstvi3"], ["https://tec.openplanner.team/stops/N101aka", "https://tec.openplanner.team/stops/N101akb"], ["https://tec.openplanner.team/stops/H4lz156b", "https://tec.openplanner.team/stops/H4lz160a"], ["https://tec.openplanner.team/stops/N221aba", "https://tec.openplanner.team/stops/X221aad"], ["https://tec.openplanner.team/stops/LDppana1", "https://tec.openplanner.team/stops/LDpulve1"], ["https://tec.openplanner.team/stops/X644aba", "https://tec.openplanner.team/stops/X644adb"], ["https://tec.openplanner.team/stops/H1bl105a", "https://tec.openplanner.team/stops/H1pd141a"], ["https://tec.openplanner.team/stops/LBRpier1", "https://tec.openplanner.team/stops/LLReg--2"], ["https://tec.openplanner.team/stops/N137aaa", "https://tec.openplanner.team/stops/N137aca"], ["https://tec.openplanner.team/stops/Canbruy2", "https://tec.openplanner.team/stops/Canecbr2"], ["https://tec.openplanner.team/stops/Bwavlep2", "https://tec.openplanner.team/stops/Bwavtpi2"], ["https://tec.openplanner.team/stops/Bobacou1", "https://tec.openplanner.team/stops/Bobacou2"], ["https://tec.openplanner.team/stops/N501dqb", "https://tec.openplanner.team/stops/N501kga"], ["https://tec.openplanner.team/stops/LaAgold1", "https://tec.openplanner.team/stops/LaAjahn2"], ["https://tec.openplanner.team/stops/X638aoa", "https://tec.openplanner.team/stops/X638apa"], ["https://tec.openplanner.team/stops/Bsomjon1", "https://tec.openplanner.team/stops/Bsomwav2"], ["https://tec.openplanner.team/stops/N310aea", "https://tec.openplanner.team/stops/N343aea"], ["https://tec.openplanner.team/stops/Lgrfass1", "https://tec.openplanner.team/stops/Lgrspir2"], ["https://tec.openplanner.team/stops/X839aab", "https://tec.openplanner.team/stops/X839aga"], ["https://tec.openplanner.team/stops/Cmygrbr1", "https://tec.openplanner.team/stops/Cmygrbr4"], ["https://tec.openplanner.team/stops/Cgzoctr2", "https://tec.openplanner.team/stops/Cthrpoi1"], ["https://tec.openplanner.team/stops/Bnivbxl2", "https://tec.openplanner.team/stops/Bnivgpl3"], ["https://tec.openplanner.team/stops/X771aha", "https://tec.openplanner.team/stops/X771ahb"], ["https://tec.openplanner.team/stops/H1mc126b", "https://tec.openplanner.team/stops/H1mc127b"], ["https://tec.openplanner.team/stops/N519aad", "https://tec.openplanner.team/stops/N519ada"], ["https://tec.openplanner.team/stops/X731acc", "https://tec.openplanner.team/stops/X731ama"], ["https://tec.openplanner.team/stops/H1ho143b", "https://tec.openplanner.team/stops/H1sg147a"], ["https://tec.openplanner.team/stops/Cbfbies1", "https://tec.openplanner.team/stops/Cbfbies2"], ["https://tec.openplanner.team/stops/LeUjuge1", "https://tec.openplanner.team/stops/LeUwert2"], ["https://tec.openplanner.team/stops/Louencl2", "https://tec.openplanner.team/stops/Louroos2"], ["https://tec.openplanner.team/stops/LWEfati2", "https://tec.openplanner.team/stops/LWEhosp1"], ["https://tec.openplanner.team/stops/X784aha", "https://tec.openplanner.team/stops/X784aka"], ["https://tec.openplanner.team/stops/H1sp353a", "https://tec.openplanner.team/stops/H1sp357c"], ["https://tec.openplanner.team/stops/LSerout2", "https://tec.openplanner.team/stops/LSetrix1"], ["https://tec.openplanner.team/stops/X779aaa", "https://tec.openplanner.team/stops/X779aab"], ["https://tec.openplanner.team/stops/Chpchea1", "https://tec.openplanner.team/stops/Chpchea2"], ["https://tec.openplanner.team/stops/N538aoa", "https://tec.openplanner.team/stops/N538asb"], ["https://tec.openplanner.team/stops/N501eoa", "https://tec.openplanner.team/stops/N501lqa"], ["https://tec.openplanner.team/stops/LBichen2", "https://tec.openplanner.team/stops/LBieg--4"], ["https://tec.openplanner.team/stops/H4ae100b", "https://tec.openplanner.team/stops/H4ae101b"], ["https://tec.openplanner.team/stops/LDAchau1", "https://tec.openplanner.team/stops/LDArich1"], ["https://tec.openplanner.team/stops/Llgbass2", "https://tec.openplanner.team/stops/Llgwall1"], ["https://tec.openplanner.team/stops/NL68aea", "https://tec.openplanner.team/stops/NL68afb"], ["https://tec.openplanner.team/stops/N501kuc", "https://tec.openplanner.team/stops/N501ljb"], ["https://tec.openplanner.team/stops/LHMsipp2", "https://tec.openplanner.team/stops/LSIroch1"], ["https://tec.openplanner.team/stops/H1to153c", "https://tec.openplanner.team/stops/H1to153d"], ["https://tec.openplanner.team/stops/LLUdeig2", "https://tec.openplanner.team/stops/LREhaut2"], ["https://tec.openplanner.team/stops/Cthathe1", "https://tec.openplanner.team/stops/Cthhvil1"], ["https://tec.openplanner.team/stops/H1mj129b", "https://tec.openplanner.team/stops/H1ml112a"], ["https://tec.openplanner.team/stops/LCHeg--2", "https://tec.openplanner.team/stops/LCHsaul1"], ["https://tec.openplanner.team/stops/N528ajb", "https://tec.openplanner.team/stops/N528aka"], ["https://tec.openplanner.team/stops/Bnivga71", "https://tec.openplanner.team/stops/Bnivrwi2"], ["https://tec.openplanner.team/stops/H4wn131a", "https://tec.openplanner.team/stops/H4wn131b"], ["https://tec.openplanner.team/stops/N534aqa", "https://tec.openplanner.team/stops/N534aqb"], ["https://tec.openplanner.team/stops/H1ms254a", "https://tec.openplanner.team/stops/H1ms254b"], ["https://tec.openplanner.team/stops/Ljhmany1", "https://tec.openplanner.team/stops/Ljhmany2"], ["https://tec.openplanner.team/stops/LeUbahn2", "https://tec.openplanner.team/stops/LeUhook2"], ["https://tec.openplanner.team/stops/LSXbecc1", "https://tec.openplanner.team/stops/LTHchiv2"], ["https://tec.openplanner.team/stops/H4eh104b", "https://tec.openplanner.team/stops/H4po126a"], ["https://tec.openplanner.team/stops/LFPstro2", "https://tec.openplanner.team/stops/LRmsmvo4"], ["https://tec.openplanner.team/stops/X870aab", "https://tec.openplanner.team/stops/X880afb"], ["https://tec.openplanner.team/stops/Lhrcols1", "https://tec.openplanner.team/stops/Lvtauna1"], ["https://tec.openplanner.team/stops/H1je223a", "https://tec.openplanner.team/stops/H1je366b"], ["https://tec.openplanner.team/stops/LHAheml2", "https://tec.openplanner.team/stops/Lvicitw1"], ["https://tec.openplanner.team/stops/X637agc", "https://tec.openplanner.team/stops/X637akb"], ["https://tec.openplanner.team/stops/LRRchea1", "https://tec.openplanner.team/stops/LRRchea2"], ["https://tec.openplanner.team/stops/Cravign2", "https://tec.openplanner.team/stops/Cravign4"], ["https://tec.openplanner.team/stops/H1he100a", "https://tec.openplanner.team/stops/H1qv116b"], ["https://tec.openplanner.team/stops/H4eh101a", "https://tec.openplanner.team/stops/H4wg122b"], ["https://tec.openplanner.team/stops/H4ff118b", "https://tec.openplanner.team/stops/H4ff120b"], ["https://tec.openplanner.team/stops/Bbcoeco1", "https://tec.openplanner.team/stops/Bbcoeco2"], ["https://tec.openplanner.team/stops/Balssvi1", "https://tec.openplanner.team/stops/Brsgfon2"], ["https://tec.openplanner.team/stops/LGegrun1", "https://tec.openplanner.team/stops/LGetroi2"], ["https://tec.openplanner.team/stops/H1ms282a", "https://tec.openplanner.team/stops/H1ss350b"], ["https://tec.openplanner.team/stops/N102abb", "https://tec.openplanner.team/stops/N102acb"], ["https://tec.openplanner.team/stops/X681afa", "https://tec.openplanner.team/stops/X687akb"], ["https://tec.openplanner.team/stops/H1mh112a", "https://tec.openplanner.team/stops/H1tl122a"], ["https://tec.openplanner.team/stops/X982aia", "https://tec.openplanner.team/stops/X982bua"], ["https://tec.openplanner.team/stops/N423aaa", "https://tec.openplanner.team/stops/N423aca"], ["https://tec.openplanner.team/stops/X830aaa", "https://tec.openplanner.team/stops/X830aab"], ["https://tec.openplanner.team/stops/H1nm141b", "https://tec.openplanner.team/stops/H4gr108b"], ["https://tec.openplanner.team/stops/LLrjeho1", "https://tec.openplanner.team/stops/LLrjeho2"], ["https://tec.openplanner.team/stops/LhEauto1", "https://tec.openplanner.team/stops/LhEklos1"], ["https://tec.openplanner.team/stops/N542aab", "https://tec.openplanner.team/stops/N542aoa"], ["https://tec.openplanner.team/stops/Bgoekaz1", "https://tec.openplanner.team/stops/Bgoevli1"], ["https://tec.openplanner.team/stops/N517afa", "https://tec.openplanner.team/stops/N517afb"], ["https://tec.openplanner.team/stops/Chhbiet1", "https://tec.openplanner.team/stops/Chhbiet2"], ["https://tec.openplanner.team/stops/H4ef165a", "https://tec.openplanner.team/stops/H4ef165b"], ["https://tec.openplanner.team/stops/X725asa", "https://tec.openplanner.team/stops/X725asb"], ["https://tec.openplanner.team/stops/LNEec--1", "https://tec.openplanner.team/stops/LNEvand2"], ["https://tec.openplanner.team/stops/LVBcarr1", "https://tec.openplanner.team/stops/LVBeg--2"], ["https://tec.openplanner.team/stops/LAOeg--1", "https://tec.openplanner.team/stops/LCAcruc2"], ["https://tec.openplanner.team/stops/LElgerd4", "https://tec.openplanner.team/stops/LElverl2"], ["https://tec.openplanner.team/stops/Clbbonn2", "https://tec.openplanner.team/stops/H1lo120a"], ["https://tec.openplanner.team/stops/H4pi134b", "https://tec.openplanner.team/stops/H4th141a"], ["https://tec.openplanner.team/stops/H1ms282b", "https://tec.openplanner.team/stops/H1ms302b"], ["https://tec.openplanner.team/stops/N229ana", "https://tec.openplanner.team/stops/N540aqa"], ["https://tec.openplanner.team/stops/Bhlvgar1", "https://tec.openplanner.team/stops/Bhlvvil1"], ["https://tec.openplanner.team/stops/Candett2", "https://tec.openplanner.team/stops/Clbhour2"], ["https://tec.openplanner.team/stops/LHEcruc4", "https://tec.openplanner.team/stops/LHEhv--2"], ["https://tec.openplanner.team/stops/LCsjone2", "https://tec.openplanner.team/stops/LFFcouv2"], ["https://tec.openplanner.team/stops/LWinavi1", "https://tec.openplanner.team/stops/LXhcite1"], ["https://tec.openplanner.team/stops/LSpbawe1", "https://tec.openplanner.team/stops/LSpxhig1"], ["https://tec.openplanner.team/stops/X754aaa", "https://tec.openplanner.team/stops/X754aab"], ["https://tec.openplanner.team/stops/LSyec--1", "https://tec.openplanner.team/stops/LSygerm1"], ["https://tec.openplanner.team/stops/Csecarr1", "https://tec.openplanner.team/stops/Csesabo1"], ["https://tec.openplanner.team/stops/N261aab", "https://tec.openplanner.team/stops/N261ahb"], ["https://tec.openplanner.team/stops/N547aaa", "https://tec.openplanner.team/stops/N547anb"], ["https://tec.openplanner.team/stops/X926ada", "https://tec.openplanner.team/stops/X926adb"], ["https://tec.openplanner.team/stops/Clupcfe2", "https://tec.openplanner.team/stops/Cpcndce2"], ["https://tec.openplanner.team/stops/Creespi1", "https://tec.openplanner.team/stops/Creespi2"], ["https://tec.openplanner.team/stops/X891acb", "https://tec.openplanner.team/stops/X891ada"], ["https://tec.openplanner.team/stops/N207aab", "https://tec.openplanner.team/stops/N207aba"], ["https://tec.openplanner.team/stops/N243aab", "https://tec.openplanner.team/stops/N251ada"], ["https://tec.openplanner.team/stops/Bmrlsau1", "https://tec.openplanner.team/stops/NR21aib"], ["https://tec.openplanner.team/stops/LHrcarr1", "https://tec.openplanner.team/stops/LLEfagn1"], ["https://tec.openplanner.team/stops/LDOprev1", "https://tec.openplanner.team/stops/LDOviad1"], ["https://tec.openplanner.team/stops/LLrlour1", "https://tec.openplanner.team/stops/LLrquar2"], ["https://tec.openplanner.team/stops/Lveyser1", "https://tec.openplanner.team/stops/Lveyser2"], ["https://tec.openplanner.team/stops/Becepon2", "https://tec.openplanner.team/stops/Becepri1"], ["https://tec.openplanner.team/stops/Baudulb1", "https://tec.openplanner.team/stops/Baudwav2"], ["https://tec.openplanner.team/stops/LbTmuhl1", "https://tec.openplanner.team/stops/LbTmuhl2"], ["https://tec.openplanner.team/stops/X547aab", "https://tec.openplanner.team/stops/X547asa"], ["https://tec.openplanner.team/stops/N509aua", "https://tec.openplanner.team/stops/N511anb"], ["https://tec.openplanner.team/stops/NL57agb", "https://tec.openplanner.team/stops/NL57aka"], ["https://tec.openplanner.team/stops/Cflecga2", "https://tec.openplanner.team/stops/Cflspir2"], ["https://tec.openplanner.team/stops/NL74aaa", "https://tec.openplanner.team/stops/NL74abb"], ["https://tec.openplanner.team/stops/Bgntcoo2", "https://tec.openplanner.team/stops/Bgnttma2"], ["https://tec.openplanner.team/stops/LFmceli2", "https://tec.openplanner.team/stops/LFmecli3"], ["https://tec.openplanner.team/stops/Cgpchgo1", "https://tec.openplanner.team/stops/Ctrstro1"], ["https://tec.openplanner.team/stops/N505akb", "https://tec.openplanner.team/stops/N505alb"], ["https://tec.openplanner.team/stops/Clbentr2", "https://tec.openplanner.team/stops/H1lo119a"], ["https://tec.openplanner.team/stops/LLrcour1", "https://tec.openplanner.team/stops/LLrpape2"], ["https://tec.openplanner.team/stops/X608ajb", "https://tec.openplanner.team/stops/X608aka"], ["https://tec.openplanner.team/stops/Ccogera1", "https://tec.openplanner.team/stops/Ccogrbu1"], ["https://tec.openplanner.team/stops/Lvieg--1", "https://tec.openplanner.team/stops/Lvieg--2"], ["https://tec.openplanner.team/stops/H4ga166b", "https://tec.openplanner.team/stops/H4ha168a"], ["https://tec.openplanner.team/stops/LBDfran2", "https://tec.openplanner.team/stops/LBDtill2"], ["https://tec.openplanner.team/stops/X614aua", "https://tec.openplanner.team/stops/X614aub"], ["https://tec.openplanner.team/stops/Bjausan2", "https://tec.openplanner.team/stops/Bjauvch1"], ["https://tec.openplanner.team/stops/N894ada", "https://tec.openplanner.team/stops/N894agc"], ["https://tec.openplanner.team/stops/NL72afa", "https://tec.openplanner.team/stops/NL72afb"], ["https://tec.openplanner.team/stops/Lmagara1", "https://tec.openplanner.team/stops/Lrofont*"], ["https://tec.openplanner.team/stops/X613aaa", "https://tec.openplanner.team/stops/X613aba"], ["https://tec.openplanner.team/stops/Crsprai3", "https://tec.openplanner.team/stops/Crsrose1"], ["https://tec.openplanner.team/stops/LbAhull1", "https://tec.openplanner.team/stops/LbAhull2"], ["https://tec.openplanner.team/stops/N507aaa", "https://tec.openplanner.team/stops/N507aab"], ["https://tec.openplanner.team/stops/X822alb", "https://tec.openplanner.team/stops/X822ara"], ["https://tec.openplanner.team/stops/N539aba", "https://tec.openplanner.team/stops/N539abb"], ["https://tec.openplanner.team/stops/Bbchdev1", "https://tec.openplanner.team/stops/Bbchdev2"], ["https://tec.openplanner.team/stops/N501dpa", "https://tec.openplanner.team/stops/N501klb"], ["https://tec.openplanner.team/stops/X921ada", "https://tec.openplanner.team/stops/X921afb"], ["https://tec.openplanner.team/stops/N521abb", "https://tec.openplanner.team/stops/N521arb"], ["https://tec.openplanner.team/stops/LTPbode1", "https://tec.openplanner.team/stops/LTPhenr1"], ["https://tec.openplanner.team/stops/LeYberl1", "https://tec.openplanner.team/stops/LrAalte1"], ["https://tec.openplanner.team/stops/Caih1631", "https://tec.openplanner.team/stops/Caih1632"], ["https://tec.openplanner.team/stops/H1ho124b", "https://tec.openplanner.team/stops/H1ho139b"], ["https://tec.openplanner.team/stops/X636ana", "https://tec.openplanner.team/stops/X636aob"], ["https://tec.openplanner.team/stops/H4ne136b", "https://tec.openplanner.team/stops/H4te250a"], ["https://tec.openplanner.team/stops/LlgLAMB2", "https://tec.openplanner.team/stops/Llgrege2"], ["https://tec.openplanner.team/stops/LESmecp*", "https://tec.openplanner.team/stops/LSdcent2"], ["https://tec.openplanner.team/stops/LMNgend1", "https://tec.openplanner.team/stops/LMNgend2"], ["https://tec.openplanner.team/stops/LiVdorf1", "https://tec.openplanner.team/stops/LiVdorf2"], ["https://tec.openplanner.team/stops/LWLhagi1", "https://tec.openplanner.team/stops/LWLtamb2"], ["https://tec.openplanner.team/stops/Cctpche1", "https://tec.openplanner.team/stops/Cctpche2"], ["https://tec.openplanner.team/stops/H1by104a", "https://tec.openplanner.team/stops/H1by107b"], ["https://tec.openplanner.team/stops/H1qu108b", "https://tec.openplanner.team/stops/H1qu119b"], ["https://tec.openplanner.team/stops/LMemora1", "https://tec.openplanner.team/stops/LMemora2"], ["https://tec.openplanner.team/stops/X982apb", "https://tec.openplanner.team/stops/X982bra"], ["https://tec.openplanner.team/stops/X897agb", "https://tec.openplanner.team/stops/X897ava"], ["https://tec.openplanner.team/stops/Cbfgare2", "https://tec.openplanner.team/stops/Cctberg2"], ["https://tec.openplanner.team/stops/Cmlcpar2", "https://tec.openplanner.team/stops/Cmlpche1"], ["https://tec.openplanner.team/stops/Blasbh51", "https://tec.openplanner.team/stops/Blasbpr2"], ["https://tec.openplanner.team/stops/Lvicitw1", "https://tec.openplanner.team/stops/Lviweri2"], ["https://tec.openplanner.team/stops/X921ara", "https://tec.openplanner.team/stops/X921arb"], ["https://tec.openplanner.team/stops/Lhrlamb1", "https://tec.openplanner.team/stops/Lhrmine2"], ["https://tec.openplanner.team/stops/X609apa", "https://tec.openplanner.team/stops/X609ara"], ["https://tec.openplanner.team/stops/X877aga", "https://tec.openplanner.team/stops/X989afa"], ["https://tec.openplanner.team/stops/N104aad", "https://tec.openplanner.team/stops/N116abb"], ["https://tec.openplanner.team/stops/X897aja", "https://tec.openplanner.team/stops/X897anb"], ["https://tec.openplanner.team/stops/X911ana", "https://tec.openplanner.team/stops/X911ata"], ["https://tec.openplanner.team/stops/H4ch119b", "https://tec.openplanner.team/stops/H4vx365a"], ["https://tec.openplanner.team/stops/N387abb", "https://tec.openplanner.team/stops/N387acc"], ["https://tec.openplanner.team/stops/H1le118b", "https://tec.openplanner.team/stops/H1ol137a"], ["https://tec.openplanner.team/stops/H1wa137a", "https://tec.openplanner.team/stops/H1wa137b"], ["https://tec.openplanner.team/stops/N141aca", "https://tec.openplanner.team/stops/N141ahb"], ["https://tec.openplanner.team/stops/N534ata", "https://tec.openplanner.team/stops/N534bea"], ["https://tec.openplanner.team/stops/Lbobuil1", "https://tec.openplanner.team/stops/Lbosart2"], ["https://tec.openplanner.team/stops/Bptrpla2", "https://tec.openplanner.team/stops/Brosegl2"], ["https://tec.openplanner.team/stops/LHUtrin1", "https://tec.openplanner.team/stops/NL77aia"], ["https://tec.openplanner.team/stops/Cfrchro2", "https://tec.openplanner.team/stops/Cfrptfe2"], ["https://tec.openplanner.team/stops/LlE02--1", "https://tec.openplanner.team/stops/LlEzoll2"], ["https://tec.openplanner.team/stops/Cbugara1", "https://tec.openplanner.team/stops/Csiegli2"], ["https://tec.openplanner.team/stops/N528aeb", "https://tec.openplanner.team/stops/N528arc"], ["https://tec.openplanner.team/stops/Bfelrav1", "https://tec.openplanner.team/stops/Bfelrav2"], ["https://tec.openplanner.team/stops/LhEtivo1", "https://tec.openplanner.team/stops/LlNsc652"], ["https://tec.openplanner.team/stops/LCFchir2", "https://tec.openplanner.team/stops/LCFeg--2"], ["https://tec.openplanner.team/stops/LkEcoop1", "https://tec.openplanner.team/stops/LkEgend2"], ["https://tec.openplanner.team/stops/N149aga", "https://tec.openplanner.team/stops/N149agb"], ["https://tec.openplanner.team/stops/X654abb", "https://tec.openplanner.team/stops/X654ada"], ["https://tec.openplanner.team/stops/H1ch103b", "https://tec.openplanner.team/stops/H1ch104b"], ["https://tec.openplanner.team/stops/X663asa", "https://tec.openplanner.team/stops/X664arb"], ["https://tec.openplanner.team/stops/H2go116b", "https://tec.openplanner.team/stops/H2go118b"], ["https://tec.openplanner.team/stops/N501hmb", "https://tec.openplanner.team/stops/N501hna"], ["https://tec.openplanner.team/stops/N531aoa", "https://tec.openplanner.team/stops/N531apb"], ["https://tec.openplanner.team/stops/LHUgole1", "https://tec.openplanner.team/stops/LHUhaut1"], ["https://tec.openplanner.team/stops/N515aid", "https://tec.openplanner.team/stops/N515asb"], ["https://tec.openplanner.team/stops/H1vt196a", "https://tec.openplanner.team/stops/H1vt196b"], ["https://tec.openplanner.team/stops/N584bqb", "https://tec.openplanner.team/stops/NC12aab"], ["https://tec.openplanner.team/stops/Bmelmqu2", "https://tec.openplanner.team/stops/Bvilpar1"], ["https://tec.openplanner.team/stops/Bbcopre1", "https://tec.openplanner.team/stops/Bbcoroy2"], ["https://tec.openplanner.team/stops/N244apa", "https://tec.openplanner.team/stops/N244axa"], ["https://tec.openplanner.team/stops/LVIferm1", "https://tec.openplanner.team/stops/LVImons1"], ["https://tec.openplanner.team/stops/Lbhbalt2", "https://tec.openplanner.team/stops/Lroeg--1"], ["https://tec.openplanner.team/stops/H2ha134a", "https://tec.openplanner.team/stops/H2tr247b"], ["https://tec.openplanner.team/stops/LWRbois2", "https://tec.openplanner.team/stops/LWRvert2"], ["https://tec.openplanner.team/stops/X618aka", "https://tec.openplanner.team/stops/X618ana"], ["https://tec.openplanner.team/stops/Lfllapi2", "https://tec.openplanner.team/stops/Lflterm2"], ["https://tec.openplanner.team/stops/LBVplan1", "https://tec.openplanner.team/stops/LBVzand3"], ["https://tec.openplanner.team/stops/LHEecmo1", "https://tec.openplanner.team/stops/LHEepur2"], ["https://tec.openplanner.team/stops/Lfhcoop1", "https://tec.openplanner.team/stops/Ljeheur1"], ["https://tec.openplanner.team/stops/X652aha", "https://tec.openplanner.team/stops/X675aba"], ["https://tec.openplanner.team/stops/Clb4bra1", "https://tec.openplanner.team/stops/Clbecol2"], ["https://tec.openplanner.team/stops/Bblaadm2", "https://tec.openplanner.team/stops/Bblasol1"], ["https://tec.openplanner.team/stops/Bwspcar2", "https://tec.openplanner.team/stops/Bwspmon4"], ["https://tec.openplanner.team/stops/X636arb", "https://tec.openplanner.team/stops/X636ata"], ["https://tec.openplanner.team/stops/Cjubien2", "https://tec.openplanner.team/stops/Cjuplco2"], ["https://tec.openplanner.team/stops/N211ada", "https://tec.openplanner.team/stops/N211adb"], ["https://tec.openplanner.team/stops/H4ty314e", "https://tec.openplanner.team/stops/H4ty379a"], ["https://tec.openplanner.team/stops/LLxcana2", "https://tec.openplanner.team/stops/LLxmonu2"], ["https://tec.openplanner.team/stops/LWEcool1", "https://tec.openplanner.team/stops/LWEpl--1"], ["https://tec.openplanner.team/stops/N501epd", "https://tec.openplanner.team/stops/N501etb"], ["https://tec.openplanner.team/stops/X634aia", "https://tec.openplanner.team/stops/X634ajb"], ["https://tec.openplanner.team/stops/LaSbahn2", "https://tec.openplanner.team/stops/LwAprei2"], ["https://tec.openplanner.team/stops/LHChomb1", "https://tec.openplanner.team/stops/LHCmonu1"], ["https://tec.openplanner.team/stops/Bovesnh1", "https://tec.openplanner.team/stops/Bovesol1"], ["https://tec.openplanner.team/stops/LeUbahn4", "https://tec.openplanner.team/stops/LeUschn2"], ["https://tec.openplanner.team/stops/X850aga", "https://tec.openplanner.team/stops/X850ahb"], ["https://tec.openplanner.team/stops/H1em108a", "https://tec.openplanner.team/stops/H1hl128b"], ["https://tec.openplanner.team/stops/LLNbeau1", "https://tec.openplanner.team/stops/LSpbawe2"], ["https://tec.openplanner.team/stops/H4bi156b", "https://tec.openplanner.team/stops/H4te256a"], ["https://tec.openplanner.team/stops/LVIlore1", "https://tec.openplanner.team/stops/LVIpneu1"], ["https://tec.openplanner.team/stops/H4ty275a", "https://tec.openplanner.team/stops/H4ty276b"], ["https://tec.openplanner.team/stops/Bhoegbr1", "https://tec.openplanner.team/stops/Blhugai1"], ["https://tec.openplanner.team/stops/Lrapays1", "https://tec.openplanner.team/stops/Lrapays2"], ["https://tec.openplanner.team/stops/Bbstmco1", "https://tec.openplanner.team/stops/Cbtlong1"], ["https://tec.openplanner.team/stops/Bhevcur1", "https://tec.openplanner.team/stops/Bvilcha1"], ["https://tec.openplanner.team/stops/NC14aea", "https://tec.openplanner.team/stops/NC14aga"], ["https://tec.openplanner.team/stops/Lceludg1", "https://tec.openplanner.team/stops/Lcesart2"], ["https://tec.openplanner.team/stops/Lsemaqu1", "https://tec.openplanner.team/stops/Lsemyrt1"], ["https://tec.openplanner.team/stops/H1sa113a", "https://tec.openplanner.team/stops/H1sa115a"], ["https://tec.openplanner.team/stops/X633agb", "https://tec.openplanner.team/stops/X633agc"], ["https://tec.openplanner.team/stops/Bsencen1", "https://tec.openplanner.team/stops/Bsencen2"], ["https://tec.openplanner.team/stops/H1ag104a", "https://tec.openplanner.team/stops/H1ag106b"], ["https://tec.openplanner.team/stops/Bottgar4", "https://tec.openplanner.team/stops/Bottgar5"], ["https://tec.openplanner.team/stops/Beclaub2", "https://tec.openplanner.team/stops/Becltri2"], ["https://tec.openplanner.team/stops/X767aac", "https://tec.openplanner.team/stops/X767aba"], ["https://tec.openplanner.team/stops/LMNcite2", "https://tec.openplanner.team/stops/LMNentr2"], ["https://tec.openplanner.team/stops/LAWcite1", "https://tec.openplanner.team/stops/LAWcite6"], ["https://tec.openplanner.team/stops/X912adb", "https://tec.openplanner.team/stops/X912akb"], ["https://tec.openplanner.team/stops/Btslenf1", "https://tec.openplanner.team/stops/Btslpbr2"], ["https://tec.openplanner.team/stops/LsVsage2", "https://tec.openplanner.team/stops/LwSschw2"], ["https://tec.openplanner.team/stops/LAChann2", "https://tec.openplanner.team/stops/N507aeb"], ["https://tec.openplanner.team/stops/N232bjb", "https://tec.openplanner.team/stops/N261afb"], ["https://tec.openplanner.team/stops/Cbblacb1", "https://tec.openplanner.team/stops/Cclbarb1"], ["https://tec.openplanner.team/stops/LHUcomp2", "https://tec.openplanner.team/stops/LHUlebe0"], ["https://tec.openplanner.team/stops/Llggill1", "https://tec.openplanner.team/stops/Llggill2"], ["https://tec.openplanner.team/stops/N532ada", "https://tec.openplanner.team/stops/N532aea"], ["https://tec.openplanner.team/stops/H1mm127a", "https://tec.openplanner.team/stops/H1vb141a"], ["https://tec.openplanner.team/stops/LWapl--2", "https://tec.openplanner.team/stops/LWapl--3"], ["https://tec.openplanner.team/stops/N331aaa", "https://tec.openplanner.team/stops/N331aca"], ["https://tec.openplanner.team/stops/H2mg150b", "https://tec.openplanner.team/stops/H2se113a"], ["https://tec.openplanner.team/stops/X886aga", "https://tec.openplanner.team/stops/X886agb"], ["https://tec.openplanner.team/stops/H1ms278a", "https://tec.openplanner.team/stops/H1ms907a"], ["https://tec.openplanner.team/stops/Brixaug1", "https://tec.openplanner.team/stops/Brixpla1"], ["https://tec.openplanner.team/stops/X902axa", "https://tec.openplanner.team/stops/X943aaa"], ["https://tec.openplanner.team/stops/Bblacar2", "https://tec.openplanner.team/stops/Bwaunop2"], ["https://tec.openplanner.team/stops/X669abc", "https://tec.openplanner.team/stops/X669agb"], ["https://tec.openplanner.team/stops/H2sb224b", "https://tec.openplanner.team/stops/H2sb234a"], ["https://tec.openplanner.team/stops/LAWhein1", "https://tec.openplanner.team/stops/LAWhein2"], ["https://tec.openplanner.team/stops/N166adb", "https://tec.openplanner.team/stops/N166aea"], ["https://tec.openplanner.team/stops/N554ahb", "https://tec.openplanner.team/stops/N573aqa"], ["https://tec.openplanner.team/stops/LOrchau1", "https://tec.openplanner.team/stops/LOrchau2"], ["https://tec.openplanner.team/stops/LHEbeau2", "https://tec.openplanner.team/stops/LHEches2"], ["https://tec.openplanner.team/stops/LHHplac1", "https://tec.openplanner.team/stops/LHHplac2"], ["https://tec.openplanner.team/stops/H1he101a", "https://tec.openplanner.team/stops/H1he105a"], ["https://tec.openplanner.team/stops/Bbchcbl1", "https://tec.openplanner.team/stops/Bbchrra2"], ["https://tec.openplanner.team/stops/LMYlieg1", "https://tec.openplanner.team/stops/X597alb"], ["https://tec.openplanner.team/stops/N390amb", "https://tec.openplanner.team/stops/X358aca"], ["https://tec.openplanner.team/stops/X882aka", "https://tec.openplanner.team/stops/X882amb"], ["https://tec.openplanner.team/stops/X767aca", "https://tec.openplanner.team/stops/X767afa"], ["https://tec.openplanner.team/stops/Bbstmco2", "https://tec.openplanner.team/stops/Bbstrpo2"], ["https://tec.openplanner.team/stops/H4bh101b", "https://tec.openplanner.team/stops/H4bh102b"], ["https://tec.openplanner.team/stops/LOLvill2", "https://tec.openplanner.team/stops/LOLvill4"], ["https://tec.openplanner.team/stops/H4he103a", "https://tec.openplanner.team/stops/H4he103b"], ["https://tec.openplanner.team/stops/LCOdrol1", "https://tec.openplanner.team/stops/LWerola1"], ["https://tec.openplanner.team/stops/Bbsggot1", "https://tec.openplanner.team/stops/Bbsggot2"], ["https://tec.openplanner.team/stops/NL76apb", "https://tec.openplanner.team/stops/NL76aqa"], ["https://tec.openplanner.team/stops/N543bpa", "https://tec.openplanner.team/stops/N543cmb"], ["https://tec.openplanner.team/stops/Bixllep2", "https://tec.openplanner.team/stops/Buccdho2"], ["https://tec.openplanner.team/stops/N170aea", "https://tec.openplanner.team/stops/N170agb"], ["https://tec.openplanner.team/stops/X621abb", "https://tec.openplanner.team/stops/X621acb"], ["https://tec.openplanner.team/stops/N501mxa", "https://tec.openplanner.team/stops/N501mxb"], ["https://tec.openplanner.team/stops/H2mo129a", "https://tec.openplanner.team/stops/H2mo135b"], ["https://tec.openplanner.team/stops/Cflecep1", "https://tec.openplanner.team/stops/Cflecep2"], ["https://tec.openplanner.team/stops/X750aea", "https://tec.openplanner.team/stops/X750aeb"], ["https://tec.openplanner.team/stops/LDoeg--2", "https://tec.openplanner.team/stops/LSChane2"], ["https://tec.openplanner.team/stops/N515agb", "https://tec.openplanner.team/stops/NR27aaa"], ["https://tec.openplanner.team/stops/LLSba4-2", "https://tec.openplanner.team/stops/LLStrid2"], ["https://tec.openplanner.team/stops/N501amb", "https://tec.openplanner.team/stops/N501apa"], ["https://tec.openplanner.team/stops/Canresi1", "https://tec.openplanner.team/stops/H2an104b"], ["https://tec.openplanner.team/stops/H4an107a", "https://tec.openplanner.team/stops/H4ce103a"], ["https://tec.openplanner.team/stops/Canjon2", "https://tec.openplanner.team/stops/Canrobe2"], ["https://tec.openplanner.team/stops/Bboueta2", "https://tec.openplanner.team/stops/Bbougar2"], ["https://tec.openplanner.team/stops/LAMfrai2", "https://tec.openplanner.team/stops/LAMmc--2"], ["https://tec.openplanner.team/stops/LJAmari1", "https://tec.openplanner.team/stops/LJAmari2"], ["https://tec.openplanner.team/stops/LBzec--2", "https://tec.openplanner.team/stops/LBzvill2"], ["https://tec.openplanner.team/stops/LFmeg--2", "https://tec.openplanner.team/stops/LFmroye2"], ["https://tec.openplanner.team/stops/H1ne141a", "https://tec.openplanner.team/stops/H1ne147b"], ["https://tec.openplanner.team/stops/N534awb", "https://tec.openplanner.team/stops/N534caa"], ["https://tec.openplanner.team/stops/N232bfa", "https://tec.openplanner.team/stops/N232bwa"], ["https://tec.openplanner.team/stops/H3so173a", "https://tec.openplanner.team/stops/H3so174a"], ["https://tec.openplanner.team/stops/X725asb", "https://tec.openplanner.team/stops/X725bia"], ["https://tec.openplanner.team/stops/X641aua", "https://tec.openplanner.team/stops/X673aab"], ["https://tec.openplanner.team/stops/X671aab", "https://tec.openplanner.team/stops/X671ada"], ["https://tec.openplanner.team/stops/Ljucomb1", "https://tec.openplanner.team/stops/Ljuhava1"], ["https://tec.openplanner.team/stops/N501cna", "https://tec.openplanner.team/stops/N501mdb"], ["https://tec.openplanner.team/stops/LLUreut1", "https://tec.openplanner.team/stops/LLUvent6"], ["https://tec.openplanner.team/stops/N201atb", "https://tec.openplanner.team/stops/N201aua"], ["https://tec.openplanner.team/stops/X733aga", "https://tec.openplanner.team/stops/X733akb"], ["https://tec.openplanner.team/stops/X804aea", "https://tec.openplanner.team/stops/X804azb"], ["https://tec.openplanner.team/stops/X879aga", "https://tec.openplanner.team/stops/X879asb"], ["https://tec.openplanner.team/stops/N321ada", "https://tec.openplanner.team/stops/N321adb"], ["https://tec.openplanner.team/stops/X601aza", "https://tec.openplanner.team/stops/X601azb"], ["https://tec.openplanner.team/stops/H1me116b", "https://tec.openplanner.team/stops/H1mm127b"], ["https://tec.openplanner.team/stops/LHUdeni3", "https://tec.openplanner.team/stops/LHUdeni4"], ["https://tec.openplanner.team/stops/Clsferr1", "https://tec.openplanner.team/stops/H1ls110b"], ["https://tec.openplanner.team/stops/LeUmeye1", "https://tec.openplanner.team/stops/LHtdros2"], ["https://tec.openplanner.team/stops/X904aaa", "https://tec.openplanner.team/stops/X904aab"], ["https://tec.openplanner.team/stops/H4ta126a", "https://tec.openplanner.team/stops/H4ta126b"], ["https://tec.openplanner.team/stops/Bgliaau1", "https://tec.openplanner.team/stops/Bglitro2"], ["https://tec.openplanner.team/stops/X638amb", "https://tec.openplanner.team/stops/X638ara"], ["https://tec.openplanner.team/stops/X605agb", "https://tec.openplanner.team/stops/X618aab"], ["https://tec.openplanner.team/stops/X945aea", "https://tec.openplanner.team/stops/X946aia"], ["https://tec.openplanner.team/stops/Btubbsc1", "https://tec.openplanner.team/stops/Btubdeh1"], ["https://tec.openplanner.team/stops/Ccunove2", "https://tec.openplanner.team/stops/Ccuplai1"], ["https://tec.openplanner.team/stops/LFmecli3", "https://tec.openplanner.team/stops/LFmeg--2"], ["https://tec.openplanner.team/stops/LVAmaas1", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://tec.openplanner.team/stops/Cmmmarl2", "https://tec.openplanner.team/stops/Cmmramb1"], ["https://tec.openplanner.team/stops/Bgembsg2", "https://tec.openplanner.team/stops/Bgemga07"], ["https://tec.openplanner.team/stops/Lpechin2", "https://tec.openplanner.team/stops/Lpevove2"], ["https://tec.openplanner.team/stops/X886ahb", "https://tec.openplanner.team/stops/X889aaa"], ["https://tec.openplanner.team/stops/N121ada", "https://tec.openplanner.team/stops/N121aia"], ["https://tec.openplanner.team/stops/X763aaa", "https://tec.openplanner.team/stops/X765afb"], ["https://tec.openplanner.team/stops/N565afa", "https://tec.openplanner.team/stops/N565akb"], ["https://tec.openplanner.team/stops/H4ch120b", "https://tec.openplanner.team/stops/H4ch120d"], ["https://tec.openplanner.team/stops/N538aea", "https://tec.openplanner.team/stops/N538ahb"], ["https://tec.openplanner.team/stops/X740aea", "https://tec.openplanner.team/stops/X740afa"], ["https://tec.openplanner.team/stops/LkAsonn1", "https://tec.openplanner.team/stops/LmHperl2"], ["https://tec.openplanner.team/stops/N513awa", "https://tec.openplanner.team/stops/N513axa"], ["https://tec.openplanner.team/stops/N501dqb", "https://tec.openplanner.team/stops/N501drb"], ["https://tec.openplanner.team/stops/Lfhbail1", "https://tec.openplanner.team/stops/Lfhxhor2"], ["https://tec.openplanner.team/stops/Lbrbass1", "https://tec.openplanner.team/stops/Lbrdepo2"], ["https://tec.openplanner.team/stops/Bcsecar2", "https://tec.openplanner.team/stops/Bmoufil1"], ["https://tec.openplanner.team/stops/LMomonc1", "https://tec.openplanner.team/stops/LMomonc2"], ["https://tec.openplanner.team/stops/X804aqa", "https://tec.openplanner.team/stops/X804aqb"], ["https://tec.openplanner.team/stops/Bmarcat1", "https://tec.openplanner.team/stops/Bmaregl2"], ["https://tec.openplanner.team/stops/Cctcoll2", "https://tec.openplanner.team/stops/Cctgaux2"], ["https://tec.openplanner.team/stops/X613aca", "https://tec.openplanner.team/stops/X614bda"], ["https://tec.openplanner.team/stops/H4ne144a", "https://tec.openplanner.team/stops/H4ne144b"], ["https://tec.openplanner.team/stops/Caibino2", "https://tec.openplanner.team/stops/Caiegli1"], ["https://tec.openplanner.team/stops/Lfhrogn1", "https://tec.openplanner.team/stops/Lfhrogn2"], ["https://tec.openplanner.team/stops/N505afb", "https://tec.openplanner.team/stops/N505aib"], ["https://tec.openplanner.team/stops/X911ama", "https://tec.openplanner.team/stops/X911amb"], ["https://tec.openplanner.team/stops/LAnchat1", "https://tec.openplanner.team/stops/LVnroch2"], ["https://tec.openplanner.team/stops/Bnivpeu1", "https://tec.openplanner.team/stops/Bnivpeu2"], ["https://tec.openplanner.team/stops/X601bbb", "https://tec.openplanner.team/stops/X601bqa"], ["https://tec.openplanner.team/stops/N513aua", "https://tec.openplanner.team/stops/N518acd"], ["https://tec.openplanner.team/stops/H1eo103a", "https://tec.openplanner.team/stops/H1eo104b"], ["https://tec.openplanner.team/stops/H1eu101b", "https://tec.openplanner.team/stops/H1eu105a"], ["https://tec.openplanner.team/stops/LLOberl1", "https://tec.openplanner.team/stops/LRRecdu2"], ["https://tec.openplanner.team/stops/N134aea", "https://tec.openplanner.team/stops/N134afb"], ["https://tec.openplanner.team/stops/H1do113a", "https://tec.openplanner.team/stops/H1do124a"], ["https://tec.openplanner.team/stops/NL76aoa", "https://tec.openplanner.team/stops/NL76apb"], ["https://tec.openplanner.team/stops/LFHjamo2", "https://tec.openplanner.team/stops/LFHsucr2"], ["https://tec.openplanner.team/stops/Ccu6bra5", "https://tec.openplanner.team/stops/Ccutrav1"], ["https://tec.openplanner.team/stops/X261aca", "https://tec.openplanner.team/stops/X261ada"], ["https://tec.openplanner.team/stops/Bjodcoi1", "https://tec.openplanner.team/stops/Bjodtpo1"], ["https://tec.openplanner.team/stops/LnN02--1", "https://tec.openplanner.team/stops/LnN02--2"], ["https://tec.openplanner.team/stops/Bohnmon1", "https://tec.openplanner.team/stops/Bohnpla2"], ["https://tec.openplanner.team/stops/H1bl107a", "https://tec.openplanner.team/stops/H1pd143a"], ["https://tec.openplanner.team/stops/H1ms265a", "https://tec.openplanner.team/stops/H1ms272c"], ["https://tec.openplanner.team/stops/Brsgm302", "https://tec.openplanner.team/stops/Bwatcha1"], ["https://tec.openplanner.team/stops/Bjodath1", "https://tec.openplanner.team/stops/NR10aba"], ["https://tec.openplanner.team/stops/Lmovand2", "https://tec.openplanner.team/stops/Lmovand4"], ["https://tec.openplanner.team/stops/LHUcomp1", "https://tec.openplanner.team/stops/LHUcomp2"], ["https://tec.openplanner.team/stops/LCxeg--2", "https://tec.openplanner.team/stops/LCxhame2"], ["https://tec.openplanner.team/stops/Cauglac1", "https://tec.openplanner.team/stops/N530aca"], ["https://tec.openplanner.team/stops/Cwfaldi1", "https://tec.openplanner.team/stops/Cwfghis2"], ["https://tec.openplanner.team/stops/LBbbac-2", "https://tec.openplanner.team/stops/LTPcamp2"], ["https://tec.openplanner.team/stops/X801bza", "https://tec.openplanner.team/stops/X801cba"], ["https://tec.openplanner.team/stops/N536aab", "https://tec.openplanner.team/stops/N536apa"], ["https://tec.openplanner.team/stops/N553ajb", "https://tec.openplanner.team/stops/N553aoa"], ["https://tec.openplanner.team/stops/Ccybouc3", "https://tec.openplanner.team/stops/Ccygara1"], ["https://tec.openplanner.team/stops/H3so171a", "https://tec.openplanner.team/stops/H3so174a"], ["https://tec.openplanner.team/stops/LkRrauw1", "https://tec.openplanner.team/stops/LrOkirc2"], ["https://tec.openplanner.team/stops/Bllnmet1", "https://tec.openplanner.team/stops/Bllnpaf1"], ["https://tec.openplanner.team/stops/X754afb", "https://tec.openplanner.team/stops/X754ana"], ["https://tec.openplanner.team/stops/Lrcprin6", "https://tec.openplanner.team/stops/Lrcvinc1"], ["https://tec.openplanner.team/stops/Llaflot2", "https://tec.openplanner.team/stops/LXhcite1"], ["https://tec.openplanner.team/stops/Lalmitt1", "https://tec.openplanner.team/stops/LXhjupr3"], ["https://tec.openplanner.team/stops/H1bu137b", "https://tec.openplanner.team/stops/H1bu138a"], ["https://tec.openplanner.team/stops/X949ajb", "https://tec.openplanner.team/stops/X949aka"], ["https://tec.openplanner.team/stops/Lhubouq1", "https://tec.openplanner.team/stops/Lhubouq2"], ["https://tec.openplanner.team/stops/N244ada", "https://tec.openplanner.team/stops/N244aob"], ["https://tec.openplanner.team/stops/X818apa", "https://tec.openplanner.team/stops/X820acb"], ["https://tec.openplanner.team/stops/X911ara", "https://tec.openplanner.team/stops/X911asb"], ["https://tec.openplanner.team/stops/Bmonbri2", "https://tec.openplanner.team/stops/Bnivsho2"], ["https://tec.openplanner.team/stops/Lhutill1", "https://tec.openplanner.team/stops/Lvehauz2"], ["https://tec.openplanner.team/stops/Boffegl2", "https://tec.openplanner.team/stops/NR27abb"], ["https://tec.openplanner.team/stops/X822aea", "https://tec.openplanner.team/stops/X822aeb"], ["https://tec.openplanner.team/stops/X660aaa", "https://tec.openplanner.team/stops/X661akb"], ["https://tec.openplanner.team/stops/H2mo125b", "https://tec.openplanner.team/stops/H2mo138b"], ["https://tec.openplanner.team/stops/Lbrrobe1", "https://tec.openplanner.team/stops/Lbrrobe3"], ["https://tec.openplanner.team/stops/X925aga", "https://tec.openplanner.team/stops/X925ahb"], ["https://tec.openplanner.team/stops/H5rx103b", "https://tec.openplanner.team/stops/H5rx110b"], ["https://tec.openplanner.team/stops/H3th134a", "https://tec.openplanner.team/stops/H3th134b"], ["https://tec.openplanner.team/stops/X396adb", "https://tec.openplanner.team/stops/X396aeb"], ["https://tec.openplanner.team/stops/LoEauto2", "https://tec.openplanner.team/stops/LrDhund1"], ["https://tec.openplanner.team/stops/LmIzent1", "https://tec.openplanner.team/stops/LmIzent2"], ["https://tec.openplanner.team/stops/H4wg122a", "https://tec.openplanner.team/stops/H4wg122b"], ["https://tec.openplanner.team/stops/H2ep145b", "https://tec.openplanner.team/stops/H2re168b"], ["https://tec.openplanner.team/stops/Llmvill2", "https://tec.openplanner.team/stops/Lprcite1"], ["https://tec.openplanner.team/stops/X608aia", "https://tec.openplanner.team/stops/X627aab"], ["https://tec.openplanner.team/stops/Lsecris3", "https://tec.openplanner.team/stops/Lseegva1"], ["https://tec.openplanner.team/stops/Lmlbaro1", "https://tec.openplanner.team/stops/Lmlpech1"], ["https://tec.openplanner.team/stops/LaM266-1", "https://tec.openplanner.team/stops/LaMschw1"], ["https://tec.openplanner.team/stops/LGLcour4", "https://tec.openplanner.team/stops/LGLspor1"], ["https://tec.openplanner.team/stops/H4ep130b", "https://tec.openplanner.team/stops/H4la197a"], ["https://tec.openplanner.team/stops/N509aka", "https://tec.openplanner.team/stops/N509akb"], ["https://tec.openplanner.team/stops/X768ada", "https://tec.openplanner.team/stops/X768aeb"], ["https://tec.openplanner.team/stops/H4ty272a", "https://tec.openplanner.team/stops/H4ty344b"], ["https://tec.openplanner.team/stops/H1gy111a", "https://tec.openplanner.team/stops/H1le127a"], ["https://tec.openplanner.team/stops/Lmolama1", "https://tec.openplanner.team/stops/Lmolama2"], ["https://tec.openplanner.team/stops/LhRkirc1", "https://tec.openplanner.team/stops/LsCkirc1"], ["https://tec.openplanner.team/stops/X775ala", "https://tec.openplanner.team/stops/X775ama"], ["https://tec.openplanner.team/stops/X723ahb", "https://tec.openplanner.team/stops/X723aib"], ["https://tec.openplanner.team/stops/X601aab", "https://tec.openplanner.team/stops/X601bga"], ["https://tec.openplanner.team/stops/Cjugend4", "https://tec.openplanner.team/stops/Cjumall2"], ["https://tec.openplanner.team/stops/Cgxprad4", "https://tec.openplanner.team/stops/Cmoecol2"], ["https://tec.openplanner.team/stops/Bchacen2", "https://tec.openplanner.team/stops/Bcrnnca2"], ["https://tec.openplanner.team/stops/X999ajb", "https://tec.openplanner.team/stops/X999aub"], ["https://tec.openplanner.team/stops/H4tp146b", "https://tec.openplanner.team/stops/H4wp148a"], ["https://tec.openplanner.team/stops/N134aja", "https://tec.openplanner.team/stops/N134ajb"], ["https://tec.openplanner.team/stops/Cgyrdid1", "https://tec.openplanner.team/stops/Clojone1"], ["https://tec.openplanner.team/stops/H1bx105a", "https://tec.openplanner.team/stops/H1bx106a"], ["https://tec.openplanner.team/stops/H5at119a", "https://tec.openplanner.team/stops/H5at139a"], ["https://tec.openplanner.team/stops/LrAiter1", "https://tec.openplanner.team/stops/LrAiter2"], ["https://tec.openplanner.team/stops/LeUhook2", "https://tec.openplanner.team/stops/LeUmoor1"], ["https://tec.openplanner.team/stops/H1fr107a", "https://tec.openplanner.team/stops/H1fr107b"], ["https://tec.openplanner.team/stops/Ccogrha2", "https://tec.openplanner.team/stops/Ccoh1212"], ["https://tec.openplanner.team/stops/H4mx114a", "https://tec.openplanner.team/stops/H4mx120a"], ["https://tec.openplanner.team/stops/Livroch1", "https://tec.openplanner.team/stops/LRachen2"], ["https://tec.openplanner.team/stops/Lhrmare3", "https://tec.openplanner.team/stops/Llgchan2"], ["https://tec.openplanner.team/stops/Bohnhan1", "https://tec.openplanner.team/stops/Bohnhan2"], ["https://tec.openplanner.team/stops/N518aaa", "https://tec.openplanner.team/stops/N518aba"], ["https://tec.openplanner.team/stops/Bgoegma1", "https://tec.openplanner.team/stops/Bgoegma2"], ["https://tec.openplanner.team/stops/NC12aaa", "https://tec.openplanner.team/stops/NC12aab"], ["https://tec.openplanner.team/stops/LSeaque2", "https://tec.openplanner.team/stops/LSeaque3"], ["https://tec.openplanner.team/stops/N213aaa", "https://tec.openplanner.team/stops/N348adb"], ["https://tec.openplanner.team/stops/LBEtrix1", "https://tec.openplanner.team/stops/LBEtrix2"], ["https://tec.openplanner.team/stops/X609aaa", "https://tec.openplanner.team/stops/X627aca"], ["https://tec.openplanner.team/stops/LMipoti1", "https://tec.openplanner.team/stops/LMipoti2"], ["https://tec.openplanner.team/stops/N509bea", "https://tec.openplanner.team/stops/N509beb"], ["https://tec.openplanner.team/stops/N543cbb", "https://tec.openplanner.team/stops/N543cca"], ["https://tec.openplanner.team/stops/N229aaa", "https://tec.openplanner.team/stops/N229afb"], ["https://tec.openplanner.team/stops/H4ht173a", "https://tec.openplanner.team/stops/H4te253b"], ["https://tec.openplanner.team/stops/Cgzclef2", "https://tec.openplanner.team/stops/Cgzmarb1"], ["https://tec.openplanner.team/stops/N109aca", "https://tec.openplanner.team/stops/N109aia"], ["https://tec.openplanner.team/stops/H1sp356b", "https://tec.openplanner.team/stops/H1ss352a"], ["https://tec.openplanner.team/stops/H4ta116b", "https://tec.openplanner.team/stops/H4ta119a"], ["https://tec.openplanner.team/stops/Lsnecco3", "https://tec.openplanner.team/stops/Lsnpaqu2"], ["https://tec.openplanner.team/stops/LLrhaut4", "https://tec.openplanner.team/stops/LREhaut2"], ["https://tec.openplanner.team/stops/Bhevcur1", "https://tec.openplanner.team/stops/Bhvltol2"], ["https://tec.openplanner.team/stops/H1ba104a", "https://tec.openplanner.team/stops/H1ba119b"], ["https://tec.openplanner.team/stops/Cbupla2", "https://tec.openplanner.team/stops/Cfnsenz1"], ["https://tec.openplanner.team/stops/Bhalpar2", "https://tec.openplanner.team/stops/Bhalpar3"], ["https://tec.openplanner.team/stops/LVSeg--1", "https://tec.openplanner.team/stops/LVSeg--2"], ["https://tec.openplanner.team/stops/X758aga", "https://tec.openplanner.team/stops/X758agb"], ["https://tec.openplanner.team/stops/H1vb142a", "https://tec.openplanner.team/stops/H1vb142b"], ["https://tec.openplanner.team/stops/N528ada", "https://tec.openplanner.team/stops/N528adb"], ["https://tec.openplanner.team/stops/Cctsncb1", "https://tec.openplanner.team/stops/Cctsncb2"], ["https://tec.openplanner.team/stops/X750aqa", "https://tec.openplanner.team/stops/X750ara"], ["https://tec.openplanner.team/stops/X609aqa", "https://tec.openplanner.team/stops/X609aqb"], ["https://tec.openplanner.team/stops/Brsgepr1", "https://tec.openplanner.team/stops/Brsggol2"], ["https://tec.openplanner.team/stops/H4er124a", "https://tec.openplanner.team/stops/H4er124b"], ["https://tec.openplanner.team/stops/X812axa", "https://tec.openplanner.team/stops/X812aya"], ["https://tec.openplanner.team/stops/Buccpes1", "https://tec.openplanner.team/stops/Buccpes2"], ["https://tec.openplanner.team/stops/N351akc", "https://tec.openplanner.team/stops/N351akd"], ["https://tec.openplanner.team/stops/X625aca", "https://tec.openplanner.team/stops/X625aeb"], ["https://tec.openplanner.team/stops/X801awa", "https://tec.openplanner.team/stops/X801awb"], ["https://tec.openplanner.team/stops/N534brb", "https://tec.openplanner.team/stops/N534bta"], ["https://tec.openplanner.team/stops/H4lz158b", "https://tec.openplanner.team/stops/H4lz160a"], ["https://tec.openplanner.team/stops/Cchalou2", "https://tec.openplanner.team/stops/Cgyrdid1"], ["https://tec.openplanner.team/stops/N207aba", "https://tec.openplanner.team/stops/X210azb"], ["https://tec.openplanner.team/stops/LNCecdo1", "https://tec.openplanner.team/stops/LNCgene2"], ["https://tec.openplanner.team/stops/Ldifoye1", "https://tec.openplanner.team/stops/Lprthie1"], ["https://tec.openplanner.team/stops/H2mo120b", "https://tec.openplanner.team/stops/H2mo138b"], ["https://tec.openplanner.team/stops/Bcseeco1", "https://tec.openplanner.team/stops/Bcsegar2"], ["https://tec.openplanner.team/stops/Ccimont2", "https://tec.openplanner.team/stops/Cmtpblo1"], ["https://tec.openplanner.team/stops/H1ro133a", "https://tec.openplanner.team/stops/H4lg100a"], ["https://tec.openplanner.team/stops/Cgzlera1", "https://tec.openplanner.team/stops/Cmygrbr1"], ["https://tec.openplanner.team/stops/N203aea", "https://tec.openplanner.team/stops/N203aeb"], ["https://tec.openplanner.team/stops/N505adb", "https://tec.openplanner.team/stops/N505anb"], ["https://tec.openplanner.team/stops/N132acb", "https://tec.openplanner.team/stops/N135ata"], ["https://tec.openplanner.team/stops/LTEcamp1", "https://tec.openplanner.team/stops/LTEkl121"], ["https://tec.openplanner.team/stops/X359aia", "https://tec.openplanner.team/stops/X359ala"], ["https://tec.openplanner.team/stops/Bnivlai2", "https://tec.openplanner.team/stops/Bnivpve2"], ["https://tec.openplanner.team/stops/Cflathe2", "https://tec.openplanner.team/stops/Cflfaub1"], ["https://tec.openplanner.team/stops/Llglimb1", "https://tec.openplanner.team/stops/Llglimb2"], ["https://tec.openplanner.team/stops/H2hg267a", "https://tec.openplanner.team/stops/H2ll198b"], ["https://tec.openplanner.team/stops/LsVhunn1", "https://tec.openplanner.team/stops/LsVhunn2"], ["https://tec.openplanner.team/stops/N536aoa", "https://tec.openplanner.team/stops/N536apb"], ["https://tec.openplanner.team/stops/LeYberl1", "https://tec.openplanner.team/stops/LeYraaf2"], ["https://tec.openplanner.team/stops/N308anb", "https://tec.openplanner.team/stops/N312abb"], ["https://tec.openplanner.team/stops/N539bgb", "https://tec.openplanner.team/stops/N540aka"], ["https://tec.openplanner.team/stops/Clbchlo2", "https://tec.openplanner.team/stops/Cthrlef1"], ["https://tec.openplanner.team/stops/H5gr135a", "https://tec.openplanner.team/stops/H5qu143b"], ["https://tec.openplanner.team/stops/N315aaa", "https://tec.openplanner.team/stops/X318aca"], ["https://tec.openplanner.team/stops/LSPec--2", "https://tec.openplanner.team/stops/LSPther2"], ["https://tec.openplanner.team/stops/Loubour1", "https://tec.openplanner.team/stops/Louhauf1"], ["https://tec.openplanner.team/stops/X992adb", "https://tec.openplanner.team/stops/X992akb"], ["https://tec.openplanner.team/stops/N506bla", "https://tec.openplanner.team/stops/N512axa"], ["https://tec.openplanner.team/stops/LaAbush*", "https://tec.openplanner.team/stops/LrTpost2"], ["https://tec.openplanner.team/stops/X720aab", "https://tec.openplanner.team/stops/X721ara"], ["https://tec.openplanner.team/stops/Bitrcan1", "https://tec.openplanner.team/stops/Bvirgar2"], ["https://tec.openplanner.team/stops/Bnivbau2", "https://tec.openplanner.team/stops/Bniveco1"], ["https://tec.openplanner.team/stops/H4mx116b", "https://tec.openplanner.team/stops/H4po129b"], ["https://tec.openplanner.team/stops/H4tu172a", "https://tec.openplanner.team/stops/H4tu172b"], ["https://tec.openplanner.team/stops/LCUmonu1", "https://tec.openplanner.team/stops/LCUmonu2"], ["https://tec.openplanner.team/stops/Cjumest1", "https://tec.openplanner.team/stops/Cjumest2"], ["https://tec.openplanner.team/stops/X576ahb", "https://tec.openplanner.team/stops/X576aib"], ["https://tec.openplanner.team/stops/X784ajb", "https://tec.openplanner.team/stops/X784aka"], ["https://tec.openplanner.team/stops/Cctchea2", "https://tec.openplanner.team/stops/NC11akb"], ["https://tec.openplanner.team/stops/Cgyruis1", "https://tec.openplanner.team/stops/CMsolei2"], ["https://tec.openplanner.team/stops/Bbstbxl2", "https://tec.openplanner.team/stops/Cgnbast2"], ["https://tec.openplanner.team/stops/X949ada", "https://tec.openplanner.team/stops/X949ala"], ["https://tec.openplanner.team/stops/H4ty285b", "https://tec.openplanner.team/stops/H4ty287a"], ["https://tec.openplanner.team/stops/X784aca", "https://tec.openplanner.team/stops/X784ala"], ["https://tec.openplanner.team/stops/Lheloti2", "https://tec.openplanner.team/stops/Lhr4ave2"], ["https://tec.openplanner.team/stops/H2hp119c", "https://tec.openplanner.team/stops/H2hp119d"], ["https://tec.openplanner.team/stops/LNCmele1", "https://tec.openplanner.team/stops/LNCpi331"], ["https://tec.openplanner.team/stops/H2bh109b", "https://tec.openplanner.team/stops/H2lc172a"], ["https://tec.openplanner.team/stops/Crodrai2", "https://tec.openplanner.team/stops/Crolema2"], ["https://tec.openplanner.team/stops/LBNhegg1", "https://tec.openplanner.team/stops/LBNplei1"], ["https://tec.openplanner.team/stops/H4ht172b", "https://tec.openplanner.team/stops/H4la198b"], ["https://tec.openplanner.team/stops/LlgOPER2", "https://tec.openplanner.team/stops/LlgOPER4"], ["https://tec.openplanner.team/stops/Cflpost1", "https://tec.openplanner.team/stops/Cwgrabi2"], ["https://tec.openplanner.team/stops/Bgnvpap1", "https://tec.openplanner.team/stops/Brixpro2"], ["https://tec.openplanner.team/stops/X820aea", "https://tec.openplanner.team/stops/X820amb"], ["https://tec.openplanner.team/stops/LeLdorf1", "https://tec.openplanner.team/stops/LeLherz1"], ["https://tec.openplanner.team/stops/N573aca", "https://tec.openplanner.team/stops/N573aib"], ["https://tec.openplanner.team/stops/LoUober2", "https://tec.openplanner.team/stops/LoUwelc2"], ["https://tec.openplanner.team/stops/H4ft136a", "https://tec.openplanner.team/stops/H4oq229b"], ["https://tec.openplanner.team/stops/LSZchpl1", "https://tec.openplanner.team/stops/LSZeg--1"], ["https://tec.openplanner.team/stops/LBBcamp1", "https://tec.openplanner.team/stops/LBBcamp2"], ["https://tec.openplanner.team/stops/N209aid", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/X801boa", "https://tec.openplanner.team/stops/X801caa"], ["https://tec.openplanner.team/stops/N505aba", "https://tec.openplanner.team/stops/N505abb"], ["https://tec.openplanner.team/stops/Cerrver3", "https://tec.openplanner.team/stops/Cvrhab21"], ["https://tec.openplanner.team/stops/N530aca", "https://tec.openplanner.team/stops/N530aia"], ["https://tec.openplanner.team/stops/LBRbriv2", "https://tec.openplanner.team/stops/LBRgare1"], ["https://tec.openplanner.team/stops/LESpaix1", "https://tec.openplanner.team/stops/LFNhame1"], ["https://tec.openplanner.team/stops/H4ar172b", "https://tec.openplanner.team/stops/H4ar173b"], ["https://tec.openplanner.team/stops/H4ch115b", "https://tec.openplanner.team/stops/H4ty353a"], ["https://tec.openplanner.team/stops/N229aeb", "https://tec.openplanner.team/stops/N539aya"], ["https://tec.openplanner.team/stops/Bbcogar2", "https://tec.openplanner.team/stops/Bbcogpl2"], ["https://tec.openplanner.team/stops/LLreque1", "https://tec.openplanner.team/stops/LLreque2"], ["https://tec.openplanner.team/stops/NL77aaa", "https://tec.openplanner.team/stops/NL77afa"], ["https://tec.openplanner.team/stops/N304abb", "https://tec.openplanner.team/stops/N305aab"], ["https://tec.openplanner.team/stops/X649aba", "https://tec.openplanner.team/stops/X649adb"], ["https://tec.openplanner.team/stops/Bbstcha1", "https://tec.openplanner.team/stops/Bbstcha2"], ["https://tec.openplanner.team/stops/X602aka", "https://tec.openplanner.team/stops/X602ala"], ["https://tec.openplanner.team/stops/LSoeg--1", "https://tec.openplanner.team/stops/LSorobe1"], ["https://tec.openplanner.team/stops/N141aba", "https://tec.openplanner.team/stops/N141ada"], ["https://tec.openplanner.team/stops/H1gh173a", "https://tec.openplanner.team/stops/H1ms936a"], ["https://tec.openplanner.team/stops/LmIkirc1", "https://tec.openplanner.team/stops/LmIvale1"], ["https://tec.openplanner.team/stops/X640asa", "https://tec.openplanner.team/stops/X640atb"], ["https://tec.openplanner.team/stops/LMXaven2", "https://tec.openplanner.team/stops/LMXroye1"], ["https://tec.openplanner.team/stops/X808aib", "https://tec.openplanner.team/stops/X808aka"], ["https://tec.openplanner.team/stops/N213aaa", "https://tec.openplanner.team/stops/N213aab"], ["https://tec.openplanner.team/stops/H1lb137b", "https://tec.openplanner.team/stops/H1pa111b"], ["https://tec.openplanner.team/stops/N501cra", "https://tec.openplanner.team/stops/N501crb"], ["https://tec.openplanner.team/stops/X812asa", "https://tec.openplanner.team/stops/X812aua"], ["https://tec.openplanner.team/stops/X773aca", "https://tec.openplanner.team/stops/X773acb"], ["https://tec.openplanner.team/stops/Cchoues2", "https://tec.openplanner.team/stops/Cchoues3"], ["https://tec.openplanner.team/stops/Cchparc2", "https://tec.openplanner.team/stops/Cchparc3"], ["https://tec.openplanner.team/stops/X616adb", "https://tec.openplanner.team/stops/X624aba"], ["https://tec.openplanner.team/stops/N511aea", "https://tec.openplanner.team/stops/N511ajb"], ["https://tec.openplanner.team/stops/X994afa", "https://tec.openplanner.team/stops/X994aia"], ["https://tec.openplanner.team/stops/N355aca", "https://tec.openplanner.team/stops/N874aab"], ["https://tec.openplanner.team/stops/H1hn205b", "https://tec.openplanner.team/stops/H1hn208b"], ["https://tec.openplanner.team/stops/Lhrmine1", "https://tec.openplanner.team/stops/Lhrpepi1"], ["https://tec.openplanner.team/stops/Bbstchv2", "https://tec.openplanner.team/stops/Btanpla1"], ["https://tec.openplanner.team/stops/X989aeb", "https://tec.openplanner.team/stops/X994ada"], ["https://tec.openplanner.team/stops/LLOnand1", "https://tec.openplanner.team/stops/LTaeg--1"], ["https://tec.openplanner.team/stops/H4va234a", "https://tec.openplanner.team/stops/H4va234b"], ["https://tec.openplanner.team/stops/Bjodrdp2", "https://tec.openplanner.team/stops/Bjodsje2"], ["https://tec.openplanner.team/stops/LGLchap2", "https://tec.openplanner.team/stops/LGLobor1"], ["https://tec.openplanner.team/stops/Lveensi2", "https://tec.openplanner.team/stops/Lverdep2"], ["https://tec.openplanner.team/stops/LBItnt-*", "https://tec.openplanner.team/stops/LVevill2"], ["https://tec.openplanner.team/stops/N501cwb", "https://tec.openplanner.team/stops/N501cxb"], ["https://tec.openplanner.team/stops/H4mx116a", "https://tec.openplanner.team/stops/H4mx120a"], ["https://tec.openplanner.team/stops/Brsrabe2", "https://tec.openplanner.team/stops/Brsrpmo1"], ["https://tec.openplanner.team/stops/Bhmmtou2", "https://tec.openplanner.team/stops/Btlgbro1"], ["https://tec.openplanner.team/stops/Bottbou1", "https://tec.openplanner.team/stops/Bottppa2"], ["https://tec.openplanner.team/stops/LROandr1", "https://tec.openplanner.team/stops/LSoprom1"], ["https://tec.openplanner.team/stops/X639ada", "https://tec.openplanner.team/stops/X639adb"], ["https://tec.openplanner.team/stops/N550ala", "https://tec.openplanner.team/stops/N565ada"], ["https://tec.openplanner.team/stops/X754acb", "https://tec.openplanner.team/stops/X754ada"], ["https://tec.openplanner.team/stops/Ccyga05", "https://tec.openplanner.team/stops/Ccyga1"], ["https://tec.openplanner.team/stops/LhGknip2", "https://tec.openplanner.team/stops/LhGlang1"], ["https://tec.openplanner.team/stops/LScchpl1", "https://tec.openplanner.team/stops/LScdina1"], ["https://tec.openplanner.team/stops/N531asb", "https://tec.openplanner.team/stops/N561aic"], ["https://tec.openplanner.team/stops/LLrfagn2", "https://tec.openplanner.team/stops/LLrpape2"], ["https://tec.openplanner.team/stops/N212adb", "https://tec.openplanner.team/stops/N213abb"], ["https://tec.openplanner.team/stops/Cnaplha1", "https://tec.openplanner.team/stops/Cnathib2"], ["https://tec.openplanner.team/stops/H1si156d", "https://tec.openplanner.team/stops/H4bo179b"], ["https://tec.openplanner.team/stops/Bgligra1", "https://tec.openplanner.team/stops/Bmalwvi2"], ["https://tec.openplanner.team/stops/H4ka178b", "https://tec.openplanner.team/stops/H4mt218a"], ["https://tec.openplanner.team/stops/H5rx100a", "https://tec.openplanner.team/stops/H5rx122b"], ["https://tec.openplanner.team/stops/LBspiet2", "https://tec.openplanner.team/stops/NL72aba"], ["https://tec.openplanner.team/stops/Cbetrie1", "https://tec.openplanner.team/stops/N161abd"], ["https://tec.openplanner.team/stops/X921ana", "https://tec.openplanner.team/stops/X922ahb"], ["https://tec.openplanner.team/stops/LRRchea5", "https://tec.openplanner.team/stops/LRRrimi1"], ["https://tec.openplanner.team/stops/X609aga", "https://tec.openplanner.team/stops/X609aob"], ["https://tec.openplanner.team/stops/NL78aca", "https://tec.openplanner.team/stops/NL78acb"], ["https://tec.openplanner.team/stops/X982caa", "https://tec.openplanner.team/stops/X982cea"], ["https://tec.openplanner.team/stops/Llgbour2", "https://tec.openplanner.team/stops/Lscbour1"], ["https://tec.openplanner.team/stops/Brixcme2", "https://tec.openplanner.team/stops/Brixpje1"], ["https://tec.openplanner.team/stops/Lstphys2", "https://tec.openplanner.team/stops/Lstpoly1"], ["https://tec.openplanner.team/stops/LSNgerm1", "https://tec.openplanner.team/stops/LSNmoul2"], ["https://tec.openplanner.team/stops/Lcceg--1", "https://tec.openplanner.team/stops/LRarami1"], ["https://tec.openplanner.team/stops/LMOf35-1", "https://tec.openplanner.team/stops/LNveg--2"], ["https://tec.openplanner.team/stops/H1vb141a", "https://tec.openplanner.team/stops/H1vb148b"], ["https://tec.openplanner.team/stops/H1bu140b", "https://tec.openplanner.team/stops/H1bu143b"], ["https://tec.openplanner.team/stops/H1wi148a", "https://tec.openplanner.team/stops/H1wi153a"], ["https://tec.openplanner.team/stops/H4ty291a", "https://tec.openplanner.team/stops/H4ty291b"], ["https://tec.openplanner.team/stops/N521aib", "https://tec.openplanner.team/stops/N521aka"], ["https://tec.openplanner.team/stops/LHGbeur1", "https://tec.openplanner.team/stops/LHGtron2"], ["https://tec.openplanner.team/stops/N539bea", "https://tec.openplanner.team/stops/N539bfa"], ["https://tec.openplanner.team/stops/LRUhama1", "https://tec.openplanner.team/stops/LTowijk1"], ["https://tec.openplanner.team/stops/Cwfmoul1", "https://tec.openplanner.team/stops/Cwfmoul2"], ["https://tec.openplanner.team/stops/Lhr1ave2", "https://tec.openplanner.team/stops/Lhrhosp1"], ["https://tec.openplanner.team/stops/LSBdelc2", "https://tec.openplanner.team/stops/LSGfoua2"], ["https://tec.openplanner.team/stops/N351ata", "https://tec.openplanner.team/stops/N390ama"], ["https://tec.openplanner.team/stops/H4mo140a", "https://tec.openplanner.team/stops/H4mo165a"], ["https://tec.openplanner.team/stops/LWEmerm1", "https://tec.openplanner.team/stops/LWEmerm2"], ["https://tec.openplanner.team/stops/H2ll191a", "https://tec.openplanner.team/stops/H2ll193b"], ["https://tec.openplanner.team/stops/N101aka", "https://tec.openplanner.team/stops/N101aqa"], ["https://tec.openplanner.team/stops/LGAbois2", "https://tec.openplanner.team/stops/LWAaxhe2"], ["https://tec.openplanner.team/stops/Lligare2", "https://tec.openplanner.team/stops/Llithon1"], ["https://tec.openplanner.team/stops/H4mo132a", "https://tec.openplanner.team/stops/H4mo157b"], ["https://tec.openplanner.team/stops/N571aga", "https://tec.openplanner.team/stops/N571agb"], ["https://tec.openplanner.team/stops/Lceegli*", "https://tec.openplanner.team/stops/Lceludg1"], ["https://tec.openplanner.team/stops/X601cca", "https://tec.openplanner.team/stops/X601ccc"], ["https://tec.openplanner.team/stops/LVlleme3", "https://tec.openplanner.team/stops/LVlleme4"], ["https://tec.openplanner.team/stops/N534bog", "https://tec.openplanner.team/stops/N534boh"], ["https://tec.openplanner.team/stops/N232aqb", "https://tec.openplanner.team/stops/N232baa"], ["https://tec.openplanner.team/stops/H4be109a", "https://tec.openplanner.team/stops/H4be109b"], ["https://tec.openplanner.team/stops/LVIjacq2", "https://tec.openplanner.team/stops/LVItroi*"], ["https://tec.openplanner.team/stops/Cctbois2", "https://tec.openplanner.team/stops/Cctlimi2"], ["https://tec.openplanner.team/stops/Cbfbies2", "https://tec.openplanner.team/stops/Cbfpoti1"], ["https://tec.openplanner.team/stops/Lpocent1", "https://tec.openplanner.team/stops/Lpocent2"], ["https://tec.openplanner.team/stops/Llgbour2", "https://tec.openplanner.team/stops/Llgcbat1"], ["https://tec.openplanner.team/stops/LTaabba2", "https://tec.openplanner.team/stops/LTatult4"], ["https://tec.openplanner.team/stops/X620aab", "https://tec.openplanner.team/stops/X620ada"], ["https://tec.openplanner.team/stops/Bbcogar1", "https://tec.openplanner.team/stops/H3br110a"], ["https://tec.openplanner.team/stops/N351ala", "https://tec.openplanner.team/stops/N351avb"], ["https://tec.openplanner.team/stops/N390aca", "https://tec.openplanner.team/stops/N390adb"], ["https://tec.openplanner.team/stops/X889ada", "https://tec.openplanner.team/stops/X889adb"], ["https://tec.openplanner.team/stops/X937adb", "https://tec.openplanner.team/stops/X937aeb"], ["https://tec.openplanner.team/stops/H4ft133b", "https://tec.openplanner.team/stops/H4ta118a"], ["https://tec.openplanner.team/stops/Bmargve1", "https://tec.openplanner.team/stops/Bmarmpr2"], ["https://tec.openplanner.team/stops/X919ana", "https://tec.openplanner.team/stops/X919anb"], ["https://tec.openplanner.team/stops/H1cu110a", "https://tec.openplanner.team/stops/H1fr114b"], ["https://tec.openplanner.team/stops/X889aca", "https://tec.openplanner.team/stops/X889acb"], ["https://tec.openplanner.team/stops/X750aya", "https://tec.openplanner.team/stops/X750azb"], ["https://tec.openplanner.team/stops/N501hra", "https://tec.openplanner.team/stops/N501ioa"], ["https://tec.openplanner.team/stops/H1cu123a", "https://tec.openplanner.team/stops/H1cu125b"], ["https://tec.openplanner.team/stops/Cglbras2", "https://tec.openplanner.team/stops/Cglfrom2"], ["https://tec.openplanner.team/stops/X781aaa", "https://tec.openplanner.team/stops/X781aab"], ["https://tec.openplanner.team/stops/H1ls109a", "https://tec.openplanner.team/stops/H1me118a"], ["https://tec.openplanner.team/stops/N508abb", "https://tec.openplanner.team/stops/N508acb"], ["https://tec.openplanner.team/stops/Cgregli2", "https://tec.openplanner.team/stops/NC14aia"], ["https://tec.openplanner.team/stops/Cmlcons1", "https://tec.openplanner.team/stops/Cmlcons2"], ["https://tec.openplanner.team/stops/LSZheid2", "https://tec.openplanner.team/stops/LSZpont1"], ["https://tec.openplanner.team/stops/Bhmmmon2", "https://tec.openplanner.team/stops/Bhmmtou1"], ["https://tec.openplanner.team/stops/N562akb", "https://tec.openplanner.team/stops/N562bma"], ["https://tec.openplanner.team/stops/H1mb127a", "https://tec.openplanner.team/stops/H1mb136a"], ["https://tec.openplanner.team/stops/X548aaa", "https://tec.openplanner.team/stops/X548afa"], ["https://tec.openplanner.team/stops/X390aka", "https://tec.openplanner.team/stops/X998aaa"], ["https://tec.openplanner.team/stops/Bptrmar2", "https://tec.openplanner.team/stops/Bptrpla1"], ["https://tec.openplanner.team/stops/N141aeb", "https://tec.openplanner.team/stops/N141afb"], ["https://tec.openplanner.team/stops/LBSchar3", "https://tec.openplanner.team/stops/LBStec-2"], ["https://tec.openplanner.team/stops/H1ms296c", "https://tec.openplanner.team/stops/H1ms903a"], ["https://tec.openplanner.team/stops/N515alb", "https://tec.openplanner.team/stops/N515asa"], ["https://tec.openplanner.team/stops/NL76aga", "https://tec.openplanner.team/stops/NL77abb"], ["https://tec.openplanner.team/stops/LHDpota2", "https://tec.openplanner.team/stops/LLmetat2"], ["https://tec.openplanner.team/stops/X892aaa", "https://tec.openplanner.team/stops/X892ada"], ["https://tec.openplanner.team/stops/H1ms272a", "https://tec.openplanner.team/stops/H1ss349a"], ["https://tec.openplanner.team/stops/X912afa", "https://tec.openplanner.team/stops/X912afb"], ["https://tec.openplanner.team/stops/H4ty338a", "https://tec.openplanner.team/stops/H4ty338b"], ["https://tec.openplanner.team/stops/H4hu117a", "https://tec.openplanner.team/stops/H4hu117b"], ["https://tec.openplanner.team/stops/LATcorp1", "https://tec.openplanner.team/stops/LHUsaul2"], ["https://tec.openplanner.team/stops/N553aja", "https://tec.openplanner.team/stops/N553aoa"], ["https://tec.openplanner.team/stops/Bhlvgar2", "https://tec.openplanner.team/stops/Bhlvvil1"], ["https://tec.openplanner.team/stops/Lvegc--5", "https://tec.openplanner.team/stops/Lveherl1"], ["https://tec.openplanner.team/stops/H2ha132a", "https://tec.openplanner.team/stops/H2ha139a"], ["https://tec.openplanner.team/stops/Cmaduna2", "https://tec.openplanner.team/stops/Cmmptno1"], ["https://tec.openplanner.team/stops/Cjulamb1", "https://tec.openplanner.team/stops/Cjulamb2"], ["https://tec.openplanner.team/stops/Lsmecol2", "https://tec.openplanner.team/stops/Lsmnico2"], ["https://tec.openplanner.team/stops/Brsrabe2", "https://tec.openplanner.team/stops/Brsrmon3"], ["https://tec.openplanner.team/stops/X358aeb", "https://tec.openplanner.team/stops/X994adb"], ["https://tec.openplanner.team/stops/LMici091", "https://tec.openplanner.team/stops/LMici092"], ["https://tec.openplanner.team/stops/H4bs110b", "https://tec.openplanner.team/stops/H4ca122b"], ["https://tec.openplanner.team/stops/X908aja", "https://tec.openplanner.team/stops/X908ana"], ["https://tec.openplanner.team/stops/X660abb", "https://tec.openplanner.team/stops/X660aea"], ["https://tec.openplanner.team/stops/LCvmonu1", "https://tec.openplanner.team/stops/LHXfont2"], ["https://tec.openplanner.team/stops/Bwatceg1", "https://tec.openplanner.team/stops/Bwatcli2"], ["https://tec.openplanner.team/stops/H4gu110b", "https://tec.openplanner.team/stops/H4gu112a"], ["https://tec.openplanner.team/stops/LFyWarc1", "https://tec.openplanner.team/stops/LWaruth1"], ["https://tec.openplanner.team/stops/LMAalli1", "https://tec.openplanner.team/stops/LMAcomm1"], ["https://tec.openplanner.team/stops/LGAholl2", "https://tec.openplanner.team/stops/LHgeg--1"], ["https://tec.openplanner.team/stops/LEMec--2", "https://tec.openplanner.team/stops/LEMeg--2"], ["https://tec.openplanner.team/stops/N501kwb", "https://tec.openplanner.team/stops/N501lwb"], ["https://tec.openplanner.team/stops/LWAclos2", "https://tec.openplanner.team/stops/LWAmois2"], ["https://tec.openplanner.team/stops/Lalecmo1", "https://tec.openplanner.team/stops/Laltrav2"], ["https://tec.openplanner.team/stops/Bnodeco2", "https://tec.openplanner.team/stops/Bolgcsa1"], ["https://tec.openplanner.team/stops/H1at108b", "https://tec.openplanner.team/stops/H1eq115a"], ["https://tec.openplanner.team/stops/Bnivcom1", "https://tec.openplanner.team/stops/Bnivcom2"], ["https://tec.openplanner.team/stops/Bmrqpla1", "https://tec.openplanner.team/stops/H1mk115a"], ["https://tec.openplanner.team/stops/N230ada", "https://tec.openplanner.team/stops/N230aea"], ["https://tec.openplanner.team/stops/N501daa", "https://tec.openplanner.team/stops/N501deb"], ["https://tec.openplanner.team/stops/X601cwa", "https://tec.openplanner.team/stops/X626aea"], ["https://tec.openplanner.team/stops/LWarema2", "https://tec.openplanner.team/stops/LWathir2"], ["https://tec.openplanner.team/stops/LBgbaga4", "https://tec.openplanner.team/stops/LWahott2"], ["https://tec.openplanner.team/stops/H4ty273a", "https://tec.openplanner.team/stops/H4ty305d"], ["https://tec.openplanner.team/stops/Bblaall1", "https://tec.openplanner.team/stops/Bblagar8"], ["https://tec.openplanner.team/stops/N501atb", "https://tec.openplanner.team/stops/N501beb"], ["https://tec.openplanner.team/stops/Bbrycar2", "https://tec.openplanner.team/stops/Bbryvil2"], ["https://tec.openplanner.team/stops/H1gn147a", "https://tec.openplanner.team/stops/H1gq153a"], ["https://tec.openplanner.team/stops/LChxhav1", "https://tec.openplanner.team/stops/LJAgoff1"], ["https://tec.openplanner.team/stops/X624ada", "https://tec.openplanner.team/stops/X624aka"], ["https://tec.openplanner.team/stops/LmOkape1", "https://tec.openplanner.team/stops/LONcroi2"], ["https://tec.openplanner.team/stops/Cgpplac2", "https://tec.openplanner.team/stops/H2gy109b"], ["https://tec.openplanner.team/stops/N552aba", "https://tec.openplanner.team/stops/N552adb"], ["https://tec.openplanner.team/stops/Lsecroi2", "https://tec.openplanner.team/stops/Lseecol1"], ["https://tec.openplanner.team/stops/H2ec108a", "https://tec.openplanner.team/stops/H2ec108b"], ["https://tec.openplanner.team/stops/N562alc", "https://tec.openplanner.team/stops/N562bfb"], ["https://tec.openplanner.team/stops/H4lp120b", "https://tec.openplanner.team/stops/H4lp122b"], ["https://tec.openplanner.team/stops/N508afb", "https://tec.openplanner.team/stops/N516aab"], ["https://tec.openplanner.team/stops/H1ju119a", "https://tec.openplanner.team/stops/H1mj126b"], ["https://tec.openplanner.team/stops/N145aea", "https://tec.openplanner.team/stops/N153aab"], ["https://tec.openplanner.team/stops/Cfmchap2", "https://tec.openplanner.team/stops/Cfmgrmo2"], ["https://tec.openplanner.team/stops/Cmmecol1", "https://tec.openplanner.team/stops/Cmmecol2"], ["https://tec.openplanner.team/stops/X601cya", "https://tec.openplanner.team/stops/X601dcb"], ["https://tec.openplanner.team/stops/X995aaa", "https://tec.openplanner.team/stops/X995aba"], ["https://tec.openplanner.team/stops/LBAfort1", "https://tec.openplanner.team/stops/LHOgymn2"], ["https://tec.openplanner.team/stops/H4lg103b", "https://tec.openplanner.team/stops/H4rm110a"], ["https://tec.openplanner.team/stops/X921aob", "https://tec.openplanner.team/stops/X979aob"], ["https://tec.openplanner.team/stops/H1ca107b", "https://tec.openplanner.team/stops/H1ca186a"], ["https://tec.openplanner.team/stops/X661asa", "https://tec.openplanner.team/stops/X661bba"], ["https://tec.openplanner.team/stops/Lflfort*", "https://tec.openplanner.team/stops/Lflmaxi3"], ["https://tec.openplanner.team/stops/LOcgdro1", "https://tec.openplanner.team/stops/LOcgdro2"], ["https://tec.openplanner.team/stops/H1mq198b", "https://tec.openplanner.team/stops/H5ar127b"], ["https://tec.openplanner.team/stops/N501gaa", "https://tec.openplanner.team/stops/N501grg"], ["https://tec.openplanner.team/stops/Bnivbos2", "https://tec.openplanner.team/stops/Bnivmat1"], ["https://tec.openplanner.team/stops/LMIeg--1", "https://tec.openplanner.team/stops/LSOgott1"], ["https://tec.openplanner.team/stops/X801aab", "https://tec.openplanner.team/stops/X802aub"], ["https://tec.openplanner.team/stops/Bnilpco2", "https://tec.openplanner.team/stops/Bnilwal2"], ["https://tec.openplanner.team/stops/X768afb", "https://tec.openplanner.team/stops/X769apa"], ["https://tec.openplanner.team/stops/Bwatpro1", "https://tec.openplanner.team/stops/Bwatrte1"], ["https://tec.openplanner.team/stops/LPUalbe1", "https://tec.openplanner.team/stops/LPUmer-1"], ["https://tec.openplanner.team/stops/X923ajb", "https://tec.openplanner.team/stops/X923anb"], ["https://tec.openplanner.team/stops/NL74aga", "https://tec.openplanner.team/stops/NL75aba"], ["https://tec.openplanner.team/stops/LhOholz1", "https://tec.openplanner.team/stops/LhOukat1"], ["https://tec.openplanner.team/stops/X790aia", "https://tec.openplanner.team/stops/X790aja"], ["https://tec.openplanner.team/stops/LJUxhen1", "https://tec.openplanner.team/stops/LJUxhen3"], ["https://tec.openplanner.team/stops/X608ada", "https://tec.openplanner.team/stops/X608aeb"], ["https://tec.openplanner.team/stops/H1hr124b", "https://tec.openplanner.team/stops/H1hr129b"], ["https://tec.openplanner.team/stops/N562asa", "https://tec.openplanner.team/stops/N562bwb"], ["https://tec.openplanner.team/stops/Beclron2", "https://tec.openplanner.team/stops/Becltri2"], ["https://tec.openplanner.team/stops/Bosqcim1", "https://tec.openplanner.team/stops/Bosqgar2"], ["https://tec.openplanner.team/stops/Llgjenn3", "https://tec.openplanner.team/stops/Llgmass1"], ["https://tec.openplanner.team/stops/X768afa", "https://tec.openplanner.team/stops/X768ajb"], ["https://tec.openplanner.team/stops/Berneco1", "https://tec.openplanner.team/stops/Berngrt2"], ["https://tec.openplanner.team/stops/N117agb", "https://tec.openplanner.team/stops/N117ara"], ["https://tec.openplanner.team/stops/Clomari4", "https://tec.openplanner.team/stops/CMmari1"], ["https://tec.openplanner.team/stops/H4bo112b", "https://tec.openplanner.team/stops/H4bo182b"], ["https://tec.openplanner.team/stops/LWAcham1", "https://tec.openplanner.team/stops/LWAlieg1"], ["https://tec.openplanner.team/stops/LFPdeme2", "https://tec.openplanner.team/stops/LVukabi1"], ["https://tec.openplanner.team/stops/LlNlont1", "https://tec.openplanner.team/stops/LlNm%C3%BChl2"], ["https://tec.openplanner.team/stops/Cctsold1", "https://tec.openplanner.team/stops/NC11aib"], ["https://tec.openplanner.team/stops/Bhmmcsc1", "https://tec.openplanner.team/stops/Bhmmvdu2"], ["https://tec.openplanner.team/stops/Crodebr2", "https://tec.openplanner.team/stops/Crodrai1"], ["https://tec.openplanner.team/stops/N874ama", "https://tec.openplanner.team/stops/N874amc"], ["https://tec.openplanner.team/stops/LHFwaut2", "https://tec.openplanner.team/stops/LSChane2"], ["https://tec.openplanner.team/stops/X901afb", "https://tec.openplanner.team/stops/X902baa"], ["https://tec.openplanner.team/stops/Lvehv--1", "https://tec.openplanner.team/stops/Lvehv--2"], ["https://tec.openplanner.team/stops/X766aja", "https://tec.openplanner.team/stops/X766ajb"], ["https://tec.openplanner.team/stops/LrGzent1", "https://tec.openplanner.team/stops/LsEdorf2"], ["https://tec.openplanner.team/stops/N547aeb", "https://tec.openplanner.team/stops/N550ala"], ["https://tec.openplanner.team/stops/LMEwerg2", "https://tec.openplanner.team/stops/LMIterr2"], ["https://tec.openplanner.team/stops/Cstbasc1", "https://tec.openplanner.team/stops/Cstgare1"], ["https://tec.openplanner.team/stops/LGEbern1", "https://tec.openplanner.team/stops/LGEpt--1"], ["https://tec.openplanner.team/stops/N501awa", "https://tec.openplanner.team/stops/N501azb"], ["https://tec.openplanner.team/stops/N241aba", "https://tec.openplanner.team/stops/N241abb"], ["https://tec.openplanner.team/stops/N534abb", "https://tec.openplanner.team/stops/N534caa"], ["https://tec.openplanner.team/stops/N501lca", "https://tec.openplanner.team/stops/N501lcz"], ["https://tec.openplanner.team/stops/LlgPTAV2", "https://tec.openplanner.team/stops/LlgPTAV4"], ["https://tec.openplanner.team/stops/Btubga05", "https://tec.openplanner.team/stops/Btubga06"], ["https://tec.openplanner.team/stops/LOLrafh2", "https://tec.openplanner.team/stops/LSOboeu2"], ["https://tec.openplanner.team/stops/N510aca", "https://tec.openplanner.team/stops/N510acf"], ["https://tec.openplanner.team/stops/LHHecol1", "https://tec.openplanner.team/stops/LHHecol2"], ["https://tec.openplanner.team/stops/H1th181a", "https://tec.openplanner.team/stops/H3so164a"], ["https://tec.openplanner.team/stops/Btsllfp2", "https://tec.openplanner.team/stops/Btstpch1"], ["https://tec.openplanner.team/stops/H2hp118a", "https://tec.openplanner.team/stops/H2hp124b"], ["https://tec.openplanner.team/stops/LNCmada2", "https://tec.openplanner.team/stops/LNCsart1"], ["https://tec.openplanner.team/stops/Cfrtill1", "https://tec.openplanner.team/stops/Cliegli2"], ["https://tec.openplanner.team/stops/LmD163-1", "https://tec.openplanner.team/stops/LmDhoch2"], ["https://tec.openplanner.team/stops/X791aab", "https://tec.openplanner.team/stops/X791aba"], ["https://tec.openplanner.team/stops/LSZcock2", "https://tec.openplanner.team/stops/LSZpiro2"], ["https://tec.openplanner.team/stops/LSOferr3", "https://tec.openplanner.team/stops/LSOferr6"], ["https://tec.openplanner.team/stops/LBvviem3", "https://tec.openplanner.team/stops/LVMchpl2"], ["https://tec.openplanner.team/stops/Clbhour1", "https://tec.openplanner.team/stops/Clbhour2"], ["https://tec.openplanner.team/stops/Cfbcabi2", "https://tec.openplanner.team/stops/Cfbcal2"], ["https://tec.openplanner.team/stops/X801aqa", "https://tec.openplanner.team/stops/X801ckb"], ["https://tec.openplanner.team/stops/X669adb", "https://tec.openplanner.team/stops/X669ahb"], ["https://tec.openplanner.team/stops/N501crd", "https://tec.openplanner.team/stops/N501cub"], ["https://tec.openplanner.team/stops/H4bx167a", "https://tec.openplanner.team/stops/H4te249b"], ["https://tec.openplanner.team/stops/LbUwirt2", "https://tec.openplanner.team/stops/LwR140-2"], ["https://tec.openplanner.team/stops/LMNgare1", "https://tec.openplanner.team/stops/LMsheid2"], ["https://tec.openplanner.team/stops/LmDbw--*", "https://tec.openplanner.team/stops/LsVfeye1"], ["https://tec.openplanner.team/stops/LVLgrum1", "https://tec.openplanner.team/stops/LVLhalb2"], ["https://tec.openplanner.team/stops/N540aoa", "https://tec.openplanner.team/stops/N540arb"], ["https://tec.openplanner.team/stops/Bgoevli1", "https://tec.openplanner.team/stops/Bgoewat1"], ["https://tec.openplanner.team/stops/LOMcabi1", "https://tec.openplanner.team/stops/LOMtomb2"], ["https://tec.openplanner.team/stops/N511alc", "https://tec.openplanner.team/stops/N511asa"], ["https://tec.openplanner.team/stops/LhP25--1", "https://tec.openplanner.team/stops/LmRkreu4"], ["https://tec.openplanner.team/stops/H1ch103b", "https://tec.openplanner.team/stops/H1ch107b"], ["https://tec.openplanner.team/stops/X724aab", "https://tec.openplanner.team/stops/X724aba"], ["https://tec.openplanner.team/stops/H1ms272a", "https://tec.openplanner.team/stops/H1ms272b"], ["https://tec.openplanner.team/stops/N211asa", "https://tec.openplanner.team/stops/N211bba"], ["https://tec.openplanner.team/stops/Lra4bra2", "https://tec.openplanner.team/stops/Lrapays1"], ["https://tec.openplanner.team/stops/Clcfall4", "https://tec.openplanner.team/stops/H1tt106b"], ["https://tec.openplanner.team/stops/H1ch103a", "https://tec.openplanner.team/stops/H1ch107a"], ["https://tec.openplanner.team/stops/LLegern1", "https://tec.openplanner.team/stops/LVRchpl1"], ["https://tec.openplanner.team/stops/Cvlgrta2", "https://tec.openplanner.team/stops/Cvllerm2"], ["https://tec.openplanner.team/stops/H1le124b", "https://tec.openplanner.team/stops/H1le127a"], ["https://tec.openplanner.team/stops/N117bdd", "https://tec.openplanner.team/stops/N145agb"], ["https://tec.openplanner.team/stops/H1ht124a", "https://tec.openplanner.team/stops/H1ht129b"], ["https://tec.openplanner.team/stops/N109adc", "https://tec.openplanner.team/stops/N109aia"], ["https://tec.openplanner.team/stops/LBCtros1", "https://tec.openplanner.team/stops/LMTvill2"], ["https://tec.openplanner.team/stops/X364aaa", "https://tec.openplanner.team/stops/X364aab"], ["https://tec.openplanner.team/stops/Bmlnpab1", "https://tec.openplanner.team/stops/Bmlnpab2"], ["https://tec.openplanner.team/stops/Bmarcha2", "https://tec.openplanner.team/stops/Bwagsta2"], ["https://tec.openplanner.team/stops/H5pe147a", "https://tec.openplanner.team/stops/H5pe147c"], ["https://tec.openplanner.team/stops/H4pe124a", "https://tec.openplanner.team/stops/H4pe124b"], ["https://tec.openplanner.team/stops/Cnacent3", "https://tec.openplanner.team/stops/Cnacent4"], ["https://tec.openplanner.team/stops/X612aab", "https://tec.openplanner.team/stops/X612aea"], ["https://tec.openplanner.team/stops/Bfelfde1", "https://tec.openplanner.team/stops/Bfelfde2"], ["https://tec.openplanner.team/stops/LBVzand2", "https://tec.openplanner.team/stops/LBVzand3"], ["https://tec.openplanner.team/stops/LSHmais2", "https://tec.openplanner.team/stops/LSHries1"], ["https://tec.openplanner.team/stops/LHegame1", "https://tec.openplanner.team/stops/LHegame2"], ["https://tec.openplanner.team/stops/Cbbcrbo1", "https://tec.openplanner.team/stops/Cbmclar1"], ["https://tec.openplanner.team/stops/Bgntcbo2", "https://tec.openplanner.team/stops/Bsomjon2"], ["https://tec.openplanner.team/stops/H4ta117b", "https://tec.openplanner.team/stops/H4ta124a"], ["https://tec.openplanner.team/stops/Llgandr1", "https://tec.openplanner.team/stops/Llgandr2"], ["https://tec.openplanner.team/stops/H5rx114a", "https://tec.openplanner.team/stops/H5rx136b"], ["https://tec.openplanner.team/stops/Bvirdco2", "https://tec.openplanner.team/stops/Bvirduj2"], ["https://tec.openplanner.team/stops/Cgyrdid1", "https://tec.openplanner.team/stops/Cjuecha1"], ["https://tec.openplanner.team/stops/Bcsebea3", "https://tec.openplanner.team/stops/Bcsen252"], ["https://tec.openplanner.team/stops/Crs74em1", "https://tec.openplanner.team/stops/Crseuro1"], ["https://tec.openplanner.team/stops/X725aob", "https://tec.openplanner.team/stops/X725apb"], ["https://tec.openplanner.team/stops/Cgyduss4", "https://tec.openplanner.team/stops/Cgymast2"], ["https://tec.openplanner.team/stops/LAbbass2", "https://tec.openplanner.team/stops/LSevitu2"], ["https://tec.openplanner.team/stops/H1do121b", "https://tec.openplanner.team/stops/H1wi147b"], ["https://tec.openplanner.team/stops/N513axa", "https://tec.openplanner.team/stops/N513axb"], ["https://tec.openplanner.team/stops/N539bab", "https://tec.openplanner.team/stops/N539bbb"], ["https://tec.openplanner.team/stops/LkOzoll1", "https://tec.openplanner.team/stops/LlCauto2"], ["https://tec.openplanner.team/stops/H4ka185a", "https://tec.openplanner.team/stops/H4ka186a"], ["https://tec.openplanner.team/stops/Bfledpi1", "https://tec.openplanner.team/stops/Cflcarr1"], ["https://tec.openplanner.team/stops/N501hrb", "https://tec.openplanner.team/stops/N501ifa"], ["https://tec.openplanner.team/stops/LKmdani1", "https://tec.openplanner.team/stops/LKmdani2"], ["https://tec.openplanner.team/stops/N562aga", "https://tec.openplanner.team/stops/N562bkb"], ["https://tec.openplanner.team/stops/LLmcarr1", "https://tec.openplanner.team/stops/LLmwaut1"], ["https://tec.openplanner.team/stops/X824aed", "https://tec.openplanner.team/stops/X824ahb"], ["https://tec.openplanner.team/stops/X921aka", "https://tec.openplanner.team/stops/X979aab"], ["https://tec.openplanner.team/stops/LWZponb1", "https://tec.openplanner.team/stops/X261aba"], ["https://tec.openplanner.team/stops/Blsmvan2", "https://tec.openplanner.team/stops/Bpelegl2"], ["https://tec.openplanner.team/stops/LTreg--1", "https://tec.openplanner.team/stops/LTrmaro1"], ["https://tec.openplanner.team/stops/N506azb", "https://tec.openplanner.team/stops/N506bma"], ["https://tec.openplanner.team/stops/H1lm105a", "https://tec.openplanner.team/stops/H1lm107b"], ["https://tec.openplanner.team/stops/Llgptlo3", "https://tec.openplanner.team/stops/Llgptlo4"], ["https://tec.openplanner.team/stops/X359aaa", "https://tec.openplanner.team/stops/X359aab"], ["https://tec.openplanner.team/stops/Ccocorb1", "https://tec.openplanner.team/stops/Ccoha601"], ["https://tec.openplanner.team/stops/N209ada", "https://tec.openplanner.team/stops/N209aka"], ["https://tec.openplanner.team/stops/Boffegl1", "https://tec.openplanner.team/stops/NR27abb"], ["https://tec.openplanner.team/stops/LJA65h-2", "https://tec.openplanner.team/stops/LJAfawe2"], ["https://tec.openplanner.team/stops/X659aua", "https://tec.openplanner.team/stops/X741aid"], ["https://tec.openplanner.team/stops/H2fa101a", "https://tec.openplanner.team/stops/H2fa112a"], ["https://tec.openplanner.team/stops/H4ss155a", "https://tec.openplanner.team/stops/H5rx115a"], ["https://tec.openplanner.team/stops/N103aia", "https://tec.openplanner.team/stops/N104aba"], ["https://tec.openplanner.team/stops/Brebrog1", "https://tec.openplanner.team/stops/H2pr115a"], ["https://tec.openplanner.team/stops/Lkiecol1", "https://tec.openplanner.team/stops/Lkiecol2"], ["https://tec.openplanner.team/stops/H1ls106b", "https://tec.openplanner.team/stops/H1ls107b"], ["https://tec.openplanner.team/stops/LPOpass1", "https://tec.openplanner.team/stops/LPOthom2"], ["https://tec.openplanner.team/stops/LkEhatt1", "https://tec.openplanner.team/stops/LkEsouf1"], ["https://tec.openplanner.team/stops/X818asb", "https://tec.openplanner.team/stops/X818ava"], ["https://tec.openplanner.team/stops/H1ba117a", "https://tec.openplanner.team/stops/H1ba119d"], ["https://tec.openplanner.team/stops/N501dtc", "https://tec.openplanner.team/stops/N501kjb"], ["https://tec.openplanner.team/stops/Bnivga21", "https://tec.openplanner.team/stops/Bnivsse1"], ["https://tec.openplanner.team/stops/Cbmmafr2", "https://tec.openplanner.team/stops/Cbmpopr1"], ["https://tec.openplanner.team/stops/X663aab", "https://tec.openplanner.team/stops/X663abb"], ["https://tec.openplanner.team/stops/LLbmalm1", "https://tec.openplanner.team/stops/LLbvith1"], ["https://tec.openplanner.team/stops/Bfelpla2", "https://tec.openplanner.team/stops/Bfelpmo2"], ["https://tec.openplanner.team/stops/Lgrlimi2", "https://tec.openplanner.team/stops/Llgguer1"], ["https://tec.openplanner.team/stops/Bjdscnd2", "https://tec.openplanner.team/stops/Bjdssta2"], ["https://tec.openplanner.team/stops/N122acb", "https://tec.openplanner.team/stops/N122ada"], ["https://tec.openplanner.team/stops/Cchoues4", "https://tec.openplanner.team/stops/CMpige2"], ["https://tec.openplanner.team/stops/H1gh150b", "https://tec.openplanner.team/stops/H1gh151b"], ["https://tec.openplanner.team/stops/X750ara", "https://tec.openplanner.team/stops/X750beb"], ["https://tec.openplanner.team/stops/Ctisar1", "https://tec.openplanner.team/stops/Ctisart1"], ["https://tec.openplanner.team/stops/H1br120b", "https://tec.openplanner.team/stops/H1ev112a"], ["https://tec.openplanner.team/stops/Bbsiabb1", "https://tec.openplanner.team/stops/Bbsimpl2"], ["https://tec.openplanner.team/stops/LSXbecc2", "https://tec.openplanner.team/stops/LTHturo2"], ["https://tec.openplanner.team/stops/X989aba", "https://tec.openplanner.team/stops/X994aga"], ["https://tec.openplanner.team/stops/Cmohame2", "https://tec.openplanner.team/stops/Cmychau2"], ["https://tec.openplanner.team/stops/X725bda", "https://tec.openplanner.team/stops/X725bdb"], ["https://tec.openplanner.team/stops/N562ayb", "https://tec.openplanner.team/stops/N562azb"], ["https://tec.openplanner.team/stops/X808aaa", "https://tec.openplanner.team/stops/X808aac"], ["https://tec.openplanner.team/stops/H3so161b", "https://tec.openplanner.team/stops/H3so163b"], ["https://tec.openplanner.team/stops/LWRferm1", "https://tec.openplanner.team/stops/LWRheyd1"], ["https://tec.openplanner.team/stops/X923agb", "https://tec.openplanner.team/stops/X923aia"], ["https://tec.openplanner.team/stops/Lsecroi2", "https://tec.openplanner.team/stops/Lsetroq1"], ["https://tec.openplanner.team/stops/Bwav4sa1", "https://tec.openplanner.team/stops/Bwavbva2"], ["https://tec.openplanner.team/stops/Lpebier2", "https://tec.openplanner.team/stops/Lpepano1"], ["https://tec.openplanner.team/stops/Cfcbosq2", "https://tec.openplanner.team/stops/Cfcchen1"], ["https://tec.openplanner.team/stops/LCxross1", "https://tec.openplanner.team/stops/LCxross2"], ["https://tec.openplanner.team/stops/H4oq225b", "https://tec.openplanner.team/stops/H4wu375a"], ["https://tec.openplanner.team/stops/Cluchbl4", "https://tec.openplanner.team/stops/Cpccoss2"], ["https://tec.openplanner.team/stops/Bkrabhu1", "https://tec.openplanner.team/stops/Bkrabhu2"], ["https://tec.openplanner.team/stops/Ljuauto2", "https://tec.openplanner.team/stops/Ljufore2"], ["https://tec.openplanner.team/stops/N145ada", "https://tec.openplanner.team/stops/N149aba"], ["https://tec.openplanner.team/stops/N543boa", "https://tec.openplanner.team/stops/N543cmb"], ["https://tec.openplanner.team/stops/LLUhotc1", "https://tec.openplanner.team/stops/LREfloh1"], ["https://tec.openplanner.team/stops/LENcroi1", "https://tec.openplanner.team/stops/LENgend2"], ["https://tec.openplanner.team/stops/X858aea", "https://tec.openplanner.team/stops/X858afb"], ["https://tec.openplanner.team/stops/X926aca", "https://tec.openplanner.team/stops/X926aea"], ["https://tec.openplanner.team/stops/H2pe162b", "https://tec.openplanner.team/stops/H3bi115b"], ["https://tec.openplanner.team/stops/X943abb", "https://tec.openplanner.team/stops/X943aha"], ["https://tec.openplanner.team/stops/X604aka", "https://tec.openplanner.team/stops/X604alb"], ["https://tec.openplanner.team/stops/X652aaa", "https://tec.openplanner.team/stops/X652aab"], ["https://tec.openplanner.team/stops/X820aba", "https://tec.openplanner.team/stops/X820afa"], ["https://tec.openplanner.team/stops/LBdmarr2", "https://tec.openplanner.team/stops/LLrcour1"], ["https://tec.openplanner.team/stops/X871aaa", "https://tec.openplanner.team/stops/X876afa"], ["https://tec.openplanner.team/stops/Cwgdeba1", "https://tec.openplanner.team/stops/Cwgpatr2"], ["https://tec.openplanner.team/stops/H5at129a", "https://tec.openplanner.team/stops/H5at141a"], ["https://tec.openplanner.team/stops/LCxcham1", "https://tec.openplanner.team/stops/LCxcham2"], ["https://tec.openplanner.team/stops/X877afb", "https://tec.openplanner.team/stops/X878aaa"], ["https://tec.openplanner.team/stops/LHmcite1", "https://tec.openplanner.team/stops/LMAgare0"], ["https://tec.openplanner.team/stops/Bwategl2", "https://tec.openplanner.team/stops/Bwatras1"], ["https://tec.openplanner.team/stops/N224agc", "https://tec.openplanner.team/stops/X224aab"], ["https://tec.openplanner.team/stops/H1mb137a", "https://tec.openplanner.team/stops/H1mb166b"], ["https://tec.openplanner.team/stops/N383aba", "https://tec.openplanner.team/stops/N383afa"], ["https://tec.openplanner.team/stops/N331aib", "https://tec.openplanner.team/stops/N331ajb"], ["https://tec.openplanner.team/stops/LMEeg--1", "https://tec.openplanner.team/stops/LMEpech2"], ["https://tec.openplanner.team/stops/LMastat3", "https://tec.openplanner.team/stops/LMastat4"], ["https://tec.openplanner.team/stops/X779aea", "https://tec.openplanner.team/stops/X779aeb"], ["https://tec.openplanner.team/stops/Ljubrec2", "https://tec.openplanner.team/stops/Ljujaur2"], ["https://tec.openplanner.team/stops/X609aoa", "https://tec.openplanner.team/stops/X609aob"], ["https://tec.openplanner.team/stops/X672ala", "https://tec.openplanner.team/stops/X672alb"], ["https://tec.openplanner.team/stops/LCPconf1", "https://tec.openplanner.team/stops/LCPvign2"], ["https://tec.openplanner.team/stops/X941aga", "https://tec.openplanner.team/stops/X948aoa"], ["https://tec.openplanner.team/stops/LmNelis2", "https://tec.openplanner.team/stops/LmNkirc2"], ["https://tec.openplanner.team/stops/Bsomh671", "https://tec.openplanner.team/stops/Bsomh672"], ["https://tec.openplanner.team/stops/LGecime2", "https://tec.openplanner.team/stops/LVkinst1"], ["https://tec.openplanner.team/stops/N501bwa", "https://tec.openplanner.team/stops/N501hka"], ["https://tec.openplanner.team/stops/H1eu101a", "https://tec.openplanner.team/stops/H1eu101b"], ["https://tec.openplanner.team/stops/Louroos2", "https://tec.openplanner.team/stops/Louroos3"], ["https://tec.openplanner.team/stops/H4co103a", "https://tec.openplanner.team/stops/H4co105a"], ["https://tec.openplanner.team/stops/X664aoa", "https://tec.openplanner.team/stops/X664apb"], ["https://tec.openplanner.team/stops/LHFec--4", "https://tec.openplanner.team/stops/LHFwaut1"], ["https://tec.openplanner.team/stops/X730adb", "https://tec.openplanner.team/stops/X730aeb"], ["https://tec.openplanner.team/stops/X877aha", "https://tec.openplanner.team/stops/X880acb"], ["https://tec.openplanner.team/stops/H1bo101a", "https://tec.openplanner.team/stops/H1bo102a"], ["https://tec.openplanner.team/stops/Cmlbruy1", "https://tec.openplanner.team/stops/Cmymoha2"], ["https://tec.openplanner.team/stops/H4ld127a", "https://tec.openplanner.team/stops/H4to138a"], ["https://tec.openplanner.team/stops/X626aaa", "https://tec.openplanner.team/stops/X626anb"], ["https://tec.openplanner.team/stops/LSMpoin1", "https://tec.openplanner.team/stops/LSMpoin2"], ["https://tec.openplanner.team/stops/Lalparc2", "https://tec.openplanner.team/stops/Laltrap2"], ["https://tec.openplanner.team/stops/X921akb", "https://tec.openplanner.team/stops/X979aaa"], ["https://tec.openplanner.team/stops/H4wi166a", "https://tec.openplanner.team/stops/H4wi166b"], ["https://tec.openplanner.team/stops/H4mx116b", "https://tec.openplanner.team/stops/H4mx120b"], ["https://tec.openplanner.team/stops/LwYboui1", "https://tec.openplanner.team/stops/LwYcafe2"], ["https://tec.openplanner.team/stops/N117arb", "https://tec.openplanner.team/stops/N117asa"], ["https://tec.openplanner.team/stops/N511aia", "https://tec.openplanner.team/stops/N512awb"], ["https://tec.openplanner.team/stops/X773ala", "https://tec.openplanner.team/stops/X773ana"], ["https://tec.openplanner.team/stops/H1gq153b", "https://tec.openplanner.team/stops/H1mq200a"], ["https://tec.openplanner.team/stops/H1og132b", "https://tec.openplanner.team/stops/H1og135b"], ["https://tec.openplanner.team/stops/Bfelequ1", "https://tec.openplanner.team/stops/Bfelpmo1"], ["https://tec.openplanner.team/stops/N554acb", "https://tec.openplanner.team/stops/N554acc"], ["https://tec.openplanner.team/stops/N521aba", "https://tec.openplanner.team/stops/N521abb"], ["https://tec.openplanner.team/stops/LWAaxhe2", "https://tec.openplanner.team/stops/LWAlong1"], ["https://tec.openplanner.team/stops/LPbpeti2", "https://tec.openplanner.team/stops/LPbtene2"], ["https://tec.openplanner.team/stops/H4do101a", "https://tec.openplanner.team/stops/H4do107c"], ["https://tec.openplanner.team/stops/X926aaa", "https://tec.openplanner.team/stops/X926aba"], ["https://tec.openplanner.team/stops/X650aba", "https://tec.openplanner.team/stops/X650ahb"], ["https://tec.openplanner.team/stops/H3br103a", "https://tec.openplanner.team/stops/H3br122a"], ["https://tec.openplanner.team/stops/Bronfou1", "https://tec.openplanner.team/stops/Bvirvol1"], ["https://tec.openplanner.team/stops/X605aab", "https://tec.openplanner.team/stops/X605acb"], ["https://tec.openplanner.team/stops/LTicime1", "https://tec.openplanner.team/stops/LTicime2"], ["https://tec.openplanner.team/stops/Bmlngch1", "https://tec.openplanner.team/stops/Bmlngvi1"], ["https://tec.openplanner.team/stops/N501coa", "https://tec.openplanner.team/stops/N501cob"], ["https://tec.openplanner.team/stops/Llghaye2", "https://tec.openplanner.team/stops/Llgsnap5"], ["https://tec.openplanner.team/stops/H4er122b", "https://tec.openplanner.team/stops/H4ty300a"], ["https://tec.openplanner.team/stops/LHMec--2", "https://tec.openplanner.team/stops/LRmkast*"], ["https://tec.openplanner.team/stops/X811adb", "https://tec.openplanner.team/stops/X811aja"], ["https://tec.openplanner.team/stops/Btubfab1", "https://tec.openplanner.team/stops/Btubnco1"], ["https://tec.openplanner.team/stops/H2hg271a", "https://tec.openplanner.team/stops/H2hg271b"], ["https://tec.openplanner.team/stops/LHumoul1", "https://tec.openplanner.team/stops/LMfange2"], ["https://tec.openplanner.team/stops/N511aub", "https://tec.openplanner.team/stops/N511ava"], ["https://tec.openplanner.team/stops/X734abb", "https://tec.openplanner.team/stops/X734adb"], ["https://tec.openplanner.team/stops/N557abb", "https://tec.openplanner.team/stops/N557aga"], ["https://tec.openplanner.team/stops/X369aca", "https://tec.openplanner.team/stops/X370ada"], ["https://tec.openplanner.team/stops/H4bc102a", "https://tec.openplanner.team/stops/H4wr174b"], ["https://tec.openplanner.team/stops/N874ana", "https://tec.openplanner.team/stops/N874anb"], ["https://tec.openplanner.team/stops/Cthbeff1", "https://tec.openplanner.team/stops/Cthvbas1"], ["https://tec.openplanner.team/stops/X758aja", "https://tec.openplanner.team/stops/X758akb"], ["https://tec.openplanner.team/stops/LeUmeye2", "https://tec.openplanner.team/stops/LrApark1"], ["https://tec.openplanner.team/stops/LBEhaye2", "https://tec.openplanner.team/stops/LBEtrix1"], ["https://tec.openplanner.team/stops/Ctipoui2", "https://tec.openplanner.team/stops/Ctisart2"], ["https://tec.openplanner.team/stops/N514aga", "https://tec.openplanner.team/stops/N514ajb"], ["https://tec.openplanner.team/stops/X601aqb", "https://tec.openplanner.team/stops/X601bgb"], ["https://tec.openplanner.team/stops/NL67aaa", "https://tec.openplanner.team/stops/NL67aca"], ["https://tec.openplanner.team/stops/N528alb", "https://tec.openplanner.team/stops/N577aha"], ["https://tec.openplanner.team/stops/N308acb", "https://tec.openplanner.team/stops/N308bab"], ["https://tec.openplanner.team/stops/N584aea", "https://tec.openplanner.team/stops/N584ana"], ["https://tec.openplanner.team/stops/Blemkap2", "https://tec.openplanner.team/stops/Blemmar2"], ["https://tec.openplanner.team/stops/Bmoucnd2", "https://tec.openplanner.team/stops/Bmouegl1"], ["https://tec.openplanner.team/stops/LSG111-1", "https://tec.openplanner.team/stops/LSkrena2"], ["https://tec.openplanner.team/stops/Bwavnam2", "https://tec.openplanner.team/stops/Bwavpao2"], ["https://tec.openplanner.team/stops/Lsehya-2", "https://tec.openplanner.team/stops/Lsehya-4"], ["https://tec.openplanner.team/stops/X614apb", "https://tec.openplanner.team/stops/X614asa"], ["https://tec.openplanner.team/stops/LGEcent1", "https://tec.openplanner.team/stops/LGEvill2"], ["https://tec.openplanner.team/stops/N513alb", "https://tec.openplanner.team/stops/N516aob"], ["https://tec.openplanner.team/stops/X738aba", "https://tec.openplanner.team/stops/X738abb"], ["https://tec.openplanner.team/stops/Ccybouc1", "https://tec.openplanner.team/stops/Ccybouc2"], ["https://tec.openplanner.team/stops/X754alb", "https://tec.openplanner.team/stops/X754ama"], ["https://tec.openplanner.team/stops/Cforpet1", "https://tec.openplanner.team/stops/Cforpet2"], ["https://tec.openplanner.team/stops/N531ada", "https://tec.openplanner.team/stops/N531amb"], ["https://tec.openplanner.team/stops/H2sb224a", "https://tec.openplanner.team/stops/H2sb236c"], ["https://tec.openplanner.team/stops/X354aca", "https://tec.openplanner.team/stops/X354ada"], ["https://tec.openplanner.team/stops/H1ca102a", "https://tec.openplanner.team/stops/H1ca102b"], ["https://tec.openplanner.team/stops/N232aib", "https://tec.openplanner.team/stops/N232anb"], ["https://tec.openplanner.team/stops/LTRfend1", "https://tec.openplanner.team/stops/LTRgare0"], ["https://tec.openplanner.team/stops/N542ala", "https://tec.openplanner.team/stops/N542ara"], ["https://tec.openplanner.team/stops/Bzluvil1", "https://tec.openplanner.team/stops/Bzluvil2"], ["https://tec.openplanner.team/stops/X663ava", "https://tec.openplanner.team/stops/X663aya"], ["https://tec.openplanner.team/stops/LSNbouh4", "https://tec.openplanner.team/stops/LSNmoul3"], ["https://tec.openplanner.team/stops/X633ala", "https://tec.openplanner.team/stops/X633ama"], ["https://tec.openplanner.team/stops/LeUclou2", "https://tec.openplanner.team/stops/LeUmeye1"], ["https://tec.openplanner.team/stops/X721apa", "https://tec.openplanner.team/stops/X786aab"], ["https://tec.openplanner.team/stops/X991adb", "https://tec.openplanner.team/stops/X991agb"], ["https://tec.openplanner.team/stops/LbUbisc1", "https://tec.openplanner.team/stops/LbUhons2"], ["https://tec.openplanner.team/stops/Ctrecol1", "https://tec.openplanner.team/stops/Ctrecol5"], ["https://tec.openplanner.team/stops/Bsmgegl2", "https://tec.openplanner.team/stops/Bsmgpla1"], ["https://tec.openplanner.team/stops/H1mj122a", "https://tec.openplanner.team/stops/H1mj123a"], ["https://tec.openplanner.team/stops/N564aaa", "https://tec.openplanner.team/stops/N564aeb"], ["https://tec.openplanner.team/stops/X919abb", "https://tec.openplanner.team/stops/X919acb"], ["https://tec.openplanner.team/stops/N425aea", "https://tec.openplanner.team/stops/N425afa"], ["https://tec.openplanner.team/stops/X664afa", "https://tec.openplanner.team/stops/X667aab"], ["https://tec.openplanner.team/stops/Cvpcime2", "https://tec.openplanner.team/stops/Cvpcour2"], ["https://tec.openplanner.team/stops/Cjuspin1", "https://tec.openplanner.team/stops/Cjuvign2"], ["https://tec.openplanner.team/stops/N558adb", "https://tec.openplanner.team/stops/N558aeb"], ["https://tec.openplanner.team/stops/Bplncsd1", "https://tec.openplanner.team/stops/Clpnapo2"], ["https://tec.openplanner.team/stops/X818atb", "https://tec.openplanner.team/stops/X827aab"], ["https://tec.openplanner.team/stops/Lsehosp2", "https://tec.openplanner.team/stops/Lselibe2"], ["https://tec.openplanner.team/stops/H2ca106a", "https://tec.openplanner.team/stops/H2ca109a"], ["https://tec.openplanner.team/stops/Lbhhomv1", "https://tec.openplanner.team/stops/Lvcchev2"], ["https://tec.openplanner.team/stops/LFEland2", "https://tec.openplanner.team/stops/LMYlieg2"], ["https://tec.openplanner.team/stops/Bleunaa1", "https://tec.openplanner.team/stops/Bleunaa2"], ["https://tec.openplanner.team/stops/NL78ahb", "https://tec.openplanner.team/stops/NL78ahc"], ["https://tec.openplanner.team/stops/Lhrhome1", "https://tec.openplanner.team/stops/Lhrhosp2"], ["https://tec.openplanner.team/stops/Bwavbmo1", "https://tec.openplanner.team/stops/Bwavnam4"], ["https://tec.openplanner.team/stops/Becesbo2", "https://tec.openplanner.team/stops/H2ec100b"], ["https://tec.openplanner.team/stops/LHZbren2", "https://tec.openplanner.team/stops/LHZcime1"], ["https://tec.openplanner.team/stops/X767aab", "https://tec.openplanner.team/stops/X767aac"], ["https://tec.openplanner.team/stops/N506bpa", "https://tec.openplanner.team/stops/N537aka"], ["https://tec.openplanner.team/stops/H4mo145b", "https://tec.openplanner.team/stops/H4mo165a"], ["https://tec.openplanner.team/stops/Cgxcime1", "https://tec.openplanner.team/stops/Cgxcime2"], ["https://tec.openplanner.team/stops/X595ada", "https://tec.openplanner.team/stops/X595aga"], ["https://tec.openplanner.team/stops/X608afb", "https://tec.openplanner.team/stops/X608avb"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Lanpast1"], ["https://tec.openplanner.team/stops/LDLgran1", "https://tec.openplanner.team/stops/LHYnoid2"], ["https://tec.openplanner.team/stops/X730aea", "https://tec.openplanner.team/stops/X730aeb"], ["https://tec.openplanner.team/stops/Ctynamu2", "https://tec.openplanner.team/stops/N137aha"], ["https://tec.openplanner.team/stops/Bniveco1", "https://tec.openplanner.team/stops/Bnivpar1"], ["https://tec.openplanner.team/stops/X955aaa", "https://tec.openplanner.team/stops/X955ada"], ["https://tec.openplanner.team/stops/LHUhsar1", "https://tec.openplanner.team/stops/LTiespe4"], ["https://tec.openplanner.team/stops/N244aka", "https://tec.openplanner.team/stops/N252acd"], ["https://tec.openplanner.team/stops/Cmqchap1", "https://tec.openplanner.team/stops/Cmqegl2"], ["https://tec.openplanner.team/stops/N534bda", "https://tec.openplanner.team/stops/N534bdb"], ["https://tec.openplanner.team/stops/LCFmoul1", "https://tec.openplanner.team/stops/LCFmoul2"], ["https://tec.openplanner.team/stops/Ctrrpla2", "https://tec.openplanner.team/stops/Ctrvert2"], ["https://tec.openplanner.team/stops/X659agb", "https://tec.openplanner.team/stops/X659aza"], ["https://tec.openplanner.team/stops/X904afa", "https://tec.openplanner.team/stops/X904aib"], ["https://tec.openplanner.team/stops/H4bq100a", "https://tec.openplanner.team/stops/H4bq100b"], ["https://tec.openplanner.team/stops/Cfcecol2", "https://tec.openplanner.team/stops/Cfcpla1"], ["https://tec.openplanner.team/stops/N565ajb", "https://tec.openplanner.team/stops/N565alb"], ["https://tec.openplanner.team/stops/Bbiehpo1", "https://tec.openplanner.team/stops/Bbiesbi2"], ["https://tec.openplanner.team/stops/H3lr109b", "https://tec.openplanner.team/stops/H3lr121a"], ["https://tec.openplanner.team/stops/X804acb", "https://tec.openplanner.team/stops/X804apa"], ["https://tec.openplanner.team/stops/X613ada", "https://tec.openplanner.team/stops/X626akb"], ["https://tec.openplanner.team/stops/LMedoum1", "https://tec.openplanner.team/stops/LMemora1"], ["https://tec.openplanner.team/stops/Bblafra3", "https://tec.openplanner.team/stops/Bblapet1"], ["https://tec.openplanner.team/stops/X945aea", "https://tec.openplanner.team/stops/X948aqa"], ["https://tec.openplanner.team/stops/Lmlchev2", "https://tec.openplanner.team/stops/Lpoprie2"], ["https://tec.openplanner.team/stops/Cgorobe2", "https://tec.openplanner.team/stops/Ctmmonu2"], ["https://tec.openplanner.team/stops/LHUchin*", "https://tec.openplanner.team/stops/LHUloui1"], ["https://tec.openplanner.team/stops/Lghbonn1", "https://tec.openplanner.team/stops/Lghflot4"], ["https://tec.openplanner.team/stops/H2ca108b", "https://tec.openplanner.team/stops/H2ca116b"], ["https://tec.openplanner.team/stops/X619ajb", "https://tec.openplanner.team/stops/X620aba"], ["https://tec.openplanner.team/stops/X820acb", "https://tec.openplanner.team/stops/X820amb"], ["https://tec.openplanner.team/stops/N501arc", "https://tec.openplanner.team/stops/N501bab"], ["https://tec.openplanner.team/stops/LAMcloc1", "https://tec.openplanner.team/stops/LAMec--2"], ["https://tec.openplanner.team/stops/H2sb243a", "https://tec.openplanner.team/stops/H2sb243d"], ["https://tec.openplanner.team/stops/N511ata", "https://tec.openplanner.team/stops/N511atb"], ["https://tec.openplanner.team/stops/X807aaa", "https://tec.openplanner.team/stops/X807aca"], ["https://tec.openplanner.team/stops/H2mi124b", "https://tec.openplanner.team/stops/H2mi125b"], ["https://tec.openplanner.team/stops/X730aca", "https://tec.openplanner.team/stops/X730ada"], ["https://tec.openplanner.team/stops/N525aec", "https://tec.openplanner.team/stops/N525aga"], ["https://tec.openplanner.team/stops/X744aba", "https://tec.openplanner.team/stops/X744abb"], ["https://tec.openplanner.team/stops/X756aha", "https://tec.openplanner.team/stops/X757ama"], ["https://tec.openplanner.team/stops/X948anb", "https://tec.openplanner.team/stops/X948bba"], ["https://tec.openplanner.team/stops/LbUhons1", "https://tec.openplanner.team/stops/LbUpost1"], ["https://tec.openplanner.team/stops/Ltibure1", "https://tec.openplanner.team/stops/Lticime1"], ["https://tec.openplanner.team/stops/N535amc", "https://tec.openplanner.team/stops/N535anb"], ["https://tec.openplanner.team/stops/H1ne143a", "https://tec.openplanner.team/stops/H1ne143b"], ["https://tec.openplanner.team/stops/X766aaa", "https://tec.openplanner.team/stops/X768akb"], ["https://tec.openplanner.team/stops/H1au101b", "https://tec.openplanner.team/stops/H1bx108a"], ["https://tec.openplanner.team/stops/LLrgara2", "https://tec.openplanner.team/stops/LSPmart4"], ["https://tec.openplanner.team/stops/H1cu112a", "https://tec.openplanner.team/stops/H1cu121a"], ["https://tec.openplanner.team/stops/Bhaltre1", "https://tec.openplanner.team/stops/Bhalvla2"], ["https://tec.openplanner.team/stops/Cgocalv4", "https://tec.openplanner.team/stops/Cgocitn1"], ["https://tec.openplanner.team/stops/H3so155b", "https://tec.openplanner.team/stops/H3so175b"], ["https://tec.openplanner.team/stops/N110aab", "https://tec.openplanner.team/stops/N114aab"], ["https://tec.openplanner.team/stops/N101akb", "https://tec.openplanner.team/stops/N101aqb"], ["https://tec.openplanner.team/stops/LBBpech1", "https://tec.openplanner.team/stops/LBBpech2"], ["https://tec.openplanner.team/stops/Ccubric1", "https://tec.openplanner.team/stops/Ccubric2"], ["https://tec.openplanner.team/stops/X801ama", "https://tec.openplanner.team/stops/X889aab"], ["https://tec.openplanner.team/stops/H4co104a", "https://tec.openplanner.team/stops/H4co157b"], ["https://tec.openplanner.team/stops/N118aqb", "https://tec.openplanner.team/stops/N118bab"], ["https://tec.openplanner.team/stops/N224aba", "https://tec.openplanner.team/stops/N349aea"], ["https://tec.openplanner.team/stops/H4mo153d", "https://tec.openplanner.team/stops/H4mo178a"], ["https://tec.openplanner.team/stops/N521aka", "https://tec.openplanner.team/stops/N521akb"], ["https://tec.openplanner.team/stops/Bbealon3", "https://tec.openplanner.team/stops/Bbeardu1"], ["https://tec.openplanner.team/stops/X745adb", "https://tec.openplanner.team/stops/X745aea"], ["https://tec.openplanner.team/stops/LWargeu1", "https://tec.openplanner.team/stops/LWaruth2"], ["https://tec.openplanner.team/stops/Lbrfusi1", "https://tec.openplanner.team/stops/Lbrrobe3"], ["https://tec.openplanner.team/stops/H1ba103b", "https://tec.openplanner.team/stops/H1ba118a"], ["https://tec.openplanner.team/stops/Clupcfe1", "https://tec.openplanner.team/stops/Cvvpotv1"], ["https://tec.openplanner.team/stops/Cflbrun1", "https://tec.openplanner.team/stops/Cflbrun2"], ["https://tec.openplanner.team/stops/H1ms304a", "https://tec.openplanner.team/stops/H1ms309a"], ["https://tec.openplanner.team/stops/LESgare*", "https://tec.openplanner.team/stops/LESgare1"], ["https://tec.openplanner.team/stops/N301aha", "https://tec.openplanner.team/stops/N301aia"], ["https://tec.openplanner.team/stops/LrAbotz2", "https://tec.openplanner.team/stops/LrAmuhl2"], ["https://tec.openplanner.team/stops/X804bea", "https://tec.openplanner.team/stops/X804bzb"], ["https://tec.openplanner.team/stops/Lcceg--2", "https://tec.openplanner.team/stops/Lfhhoul1"], ["https://tec.openplanner.team/stops/LwMzoll1", "https://tec.openplanner.team/stops/X761aab"], ["https://tec.openplanner.team/stops/X654aia", "https://tec.openplanner.team/stops/X670arb"], ["https://tec.openplanner.team/stops/Bitrcro2", "https://tec.openplanner.team/stops/Bitrh%C3%BBl2"], ["https://tec.openplanner.team/stops/LJueg--1", "https://tec.openplanner.team/stops/LMolone2"], ["https://tec.openplanner.team/stops/LSSvill1", "https://tec.openplanner.team/stops/LSSvill2"], ["https://tec.openplanner.team/stops/N520aba", "https://tec.openplanner.team/stops/N520aja"], ["https://tec.openplanner.team/stops/Bsamlon1", "https://tec.openplanner.team/stops/Bwagmco2"], ["https://tec.openplanner.team/stops/H4ka187b", "https://tec.openplanner.team/stops/H4ty349b"], ["https://tec.openplanner.team/stops/X788adb", "https://tec.openplanner.team/stops/X789ahb"], ["https://tec.openplanner.team/stops/LBGcent1", "https://tec.openplanner.team/stops/LBGgeer2"], ["https://tec.openplanner.team/stops/Llgpbay1", "https://tec.openplanner.team/stops/Llgpbay2"], ["https://tec.openplanner.team/stops/X880ada", "https://tec.openplanner.team/stops/X880aeb"], ["https://tec.openplanner.team/stops/X650afe", "https://tec.openplanner.team/stops/X671afa"], ["https://tec.openplanner.team/stops/N155aec", "https://tec.openplanner.team/stops/N155ahb"], ["https://tec.openplanner.team/stops/N513bfa", "https://tec.openplanner.team/stops/N513bfb"], ["https://tec.openplanner.team/stops/Lmobras1", "https://tec.openplanner.team/stops/Lmobras2"], ["https://tec.openplanner.team/stops/Cgymara1", "https://tec.openplanner.team/stops/Cgymara2"], ["https://tec.openplanner.team/stops/Cblcent4", "https://tec.openplanner.team/stops/Cmbcime4"], ["https://tec.openplanner.team/stops/H4au144a", "https://tec.openplanner.team/stops/H4og210a"], ["https://tec.openplanner.team/stops/H1nm139a", "https://tec.openplanner.team/stops/H1si164a"], ["https://tec.openplanner.team/stops/LHUanth1", "https://tec.openplanner.team/stops/LHUtfal2"], ["https://tec.openplanner.team/stops/H1eo104b", "https://tec.openplanner.team/stops/H1eo107b"], ["https://tec.openplanner.team/stops/Lprsher1", "https://tec.openplanner.team/stops/Lprthie1"], ["https://tec.openplanner.team/stops/Bmartil2", "https://tec.openplanner.team/stops/Bsdabja2"], ["https://tec.openplanner.team/stops/H4lg102a", "https://tec.openplanner.team/stops/H4lg105a"], ["https://tec.openplanner.team/stops/Lglmoul2", "https://tec.openplanner.team/stops/Lmochar1"], ["https://tec.openplanner.team/stops/X757alb", "https://tec.openplanner.team/stops/X779aaa"], ["https://tec.openplanner.team/stops/H1ho129a", "https://tec.openplanner.team/stops/H1ho137a"], ["https://tec.openplanner.team/stops/Lbocime2", "https://tec.openplanner.team/stops/Lbomc--6"], ["https://tec.openplanner.team/stops/N261aea", "https://tec.openplanner.team/stops/N261aha"], ["https://tec.openplanner.team/stops/N501eib", "https://tec.openplanner.team/stops/N501jrb"], ["https://tec.openplanner.team/stops/Cluchbl1", "https://tec.openplanner.team/stops/Cluplve4"], ["https://tec.openplanner.team/stops/X804aaa", "https://tec.openplanner.team/stops/X804cbb"], ["https://tec.openplanner.team/stops/H1vg358a", "https://tec.openplanner.team/stops/H1vg359a"], ["https://tec.openplanner.team/stops/LSNchen2", "https://tec.openplanner.team/stops/LSNfays2"], ["https://tec.openplanner.team/stops/X601dcb", "https://tec.openplanner.team/stops/X612afa"], ["https://tec.openplanner.team/stops/Csabrun1", "https://tec.openplanner.team/stops/Cvpcime1"], ["https://tec.openplanner.team/stops/LVNcoop1", "https://tec.openplanner.team/stops/LVNwanz1"], ["https://tec.openplanner.team/stops/X717abb", "https://tec.openplanner.team/stops/X782apb"], ["https://tec.openplanner.team/stops/Cgrchas1", "https://tec.openplanner.team/stops/Cgrflac1"], ["https://tec.openplanner.team/stops/Bborppa1", "https://tec.openplanner.team/stops/Bitrmon1"], ["https://tec.openplanner.team/stops/N135aza", "https://tec.openplanner.team/stops/N135azb"], ["https://tec.openplanner.team/stops/X836aia", "https://tec.openplanner.team/stops/X836aib"], ["https://tec.openplanner.team/stops/H4mt214a", "https://tec.openplanner.team/stops/H4mt216b"], ["https://tec.openplanner.team/stops/LSkchwa1", "https://tec.openplanner.team/stops/LSkchwa2"], ["https://tec.openplanner.team/stops/Bobacar3", "https://tec.openplanner.team/stops/Bptrmar1"], ["https://tec.openplanner.team/stops/LAieg--2", "https://tec.openplanner.team/stops/LENparc1"], ["https://tec.openplanner.team/stops/LVMfoli2", "https://tec.openplanner.team/stops/LVMrout1"], ["https://tec.openplanner.team/stops/Clgpavi1", "https://tec.openplanner.team/stops/Clgrsoc1"], ["https://tec.openplanner.team/stops/X664aea", "https://tec.openplanner.team/stops/X664afa"], ["https://tec.openplanner.team/stops/Cjuaero1", "https://tec.openplanner.team/stops/Cjuaero4"], ["https://tec.openplanner.team/stops/LLnec--2", "https://tec.openplanner.team/stops/LOeelbe1"], ["https://tec.openplanner.team/stops/N204ada", "https://tec.openplanner.team/stops/N205abb"], ["https://tec.openplanner.team/stops/H3lr121a", "https://tec.openplanner.team/stops/H3lr121b"], ["https://tec.openplanner.team/stops/H1cu108b", "https://tec.openplanner.team/stops/H1cu126b"], ["https://tec.openplanner.team/stops/X747aca", "https://tec.openplanner.team/stops/X747adb"], ["https://tec.openplanner.team/stops/X608ama", "https://tec.openplanner.team/stops/X608aoa"], ["https://tec.openplanner.team/stops/LGAholl1", "https://tec.openplanner.team/stops/LGAholl2"], ["https://tec.openplanner.team/stops/H4lp121b", "https://tec.openplanner.team/stops/H4mg139b"], ["https://tec.openplanner.team/stops/Lstchu-*", "https://tec.openplanner.team/stops/Lstchu-1"], ["https://tec.openplanner.team/stops/H4bu108a", "https://tec.openplanner.team/stops/H4hg158a"], ["https://tec.openplanner.team/stops/LHocroi1", "https://tec.openplanner.team/stops/LHoetie1"], ["https://tec.openplanner.team/stops/Cnating2", "https://tec.openplanner.team/stops/N160afa"], ["https://tec.openplanner.team/stops/Ljecocc1", "https://tec.openplanner.team/stops/Ljecoqu2"], ["https://tec.openplanner.team/stops/H4oe148a", "https://tec.openplanner.team/stops/H4oe148b"], ["https://tec.openplanner.team/stops/X738aca", "https://tec.openplanner.team/stops/X739alb"], ["https://tec.openplanner.team/stops/Caccera2", "https://tec.openplanner.team/stops/Cbfchla2"], ["https://tec.openplanner.team/stops/X869ada", "https://tec.openplanner.team/stops/X870adb"], ["https://tec.openplanner.team/stops/Broncan1", "https://tec.openplanner.team/stops/Bronrch2"], ["https://tec.openplanner.team/stops/N113abb", "https://tec.openplanner.team/stops/N139abb"], ["https://tec.openplanner.team/stops/LMfeg--2", "https://tec.openplanner.team/stops/LMfsart1"], ["https://tec.openplanner.team/stops/H1ht124b", "https://tec.openplanner.team/stops/H1ht132b"], ["https://tec.openplanner.team/stops/H4mo192a", "https://tec.openplanner.team/stops/H4mo195a"], ["https://tec.openplanner.team/stops/LSCeg--1", "https://tec.openplanner.team/stops/LSCeg--3"], ["https://tec.openplanner.team/stops/LAWjaur1", "https://tec.openplanner.team/stops/LAWmc--4"], ["https://tec.openplanner.team/stops/H5rx132a", "https://tec.openplanner.team/stops/H5rx132b"], ["https://tec.openplanner.team/stops/Bwatcha1", "https://tec.openplanner.team/stops/Bwatcha2"], ["https://tec.openplanner.team/stops/N569ama", "https://tec.openplanner.team/stops/N569anb"], ["https://tec.openplanner.team/stops/Berncim1", "https://tec.openplanner.team/stops/Berncim4"], ["https://tec.openplanner.team/stops/X999agb", "https://tec.openplanner.team/stops/X999aja"], ["https://tec.openplanner.team/stops/LREsp302", "https://tec.openplanner.team/stops/LREsp901"], ["https://tec.openplanner.team/stops/Crcgare2", "https://tec.openplanner.team/stops/NH03afa"], ["https://tec.openplanner.team/stops/H5at118b", "https://tec.openplanner.team/stops/H5at134a"], ["https://tec.openplanner.team/stops/LnDrund2", "https://tec.openplanner.team/stops/LnDthel2"], ["https://tec.openplanner.team/stops/Lghfore1", "https://tec.openplanner.team/stops/Lghfore3"], ["https://tec.openplanner.team/stops/H1ha195a", "https://tec.openplanner.team/stops/H1ha195b"], ["https://tec.openplanner.team/stops/Bbchgod1", "https://tec.openplanner.team/stops/Bbchume2"], ["https://tec.openplanner.team/stops/H2hg147a", "https://tec.openplanner.team/stops/H2hg156b"], ["https://tec.openplanner.team/stops/X601bea", "https://tec.openplanner.team/stops/X601cza"], ["https://tec.openplanner.team/stops/X820afa", "https://tec.openplanner.team/stops/X820afb"], ["https://tec.openplanner.team/stops/Cmmplac2", "https://tec.openplanner.team/stops/Cmmplac3"], ["https://tec.openplanner.team/stops/X725aba", "https://tec.openplanner.team/stops/X754axb"], ["https://tec.openplanner.team/stops/LCxcham2", "https://tec.openplanner.team/stops/LCxhall1"], ["https://tec.openplanner.team/stops/Cstmarz2", "https://tec.openplanner.team/stops/H1tt104b"], ["https://tec.openplanner.team/stops/Lvtbocl1", "https://tec.openplanner.team/stops/Lvtlomb4"], ["https://tec.openplanner.team/stops/LHUmess1", "https://tec.openplanner.team/stops/LTicime1"], ["https://tec.openplanner.team/stops/N118anb", "https://tec.openplanner.team/stops/N118aob"], ["https://tec.openplanner.team/stops/NC14aaa", "https://tec.openplanner.team/stops/NC44aha"], ["https://tec.openplanner.team/stops/Lbopote2", "https://tec.openplanner.team/stops/Lsefore2"], ["https://tec.openplanner.team/stops/H1ro131a", "https://tec.openplanner.team/stops/H1ro131b"], ["https://tec.openplanner.team/stops/X659aaa", "https://tec.openplanner.team/stops/X659aab"], ["https://tec.openplanner.team/stops/NH01akb", "https://tec.openplanner.team/stops/NH01alb"], ["https://tec.openplanner.team/stops/LNCloui1", "https://tec.openplanner.team/stops/LNCneuv1"], ["https://tec.openplanner.team/stops/Lhr2ave2", "https://tec.openplanner.team/stops/Lhr4ave1"], ["https://tec.openplanner.team/stops/Lligare1", "https://tec.openplanner.team/stops/Llivina1"], ["https://tec.openplanner.team/stops/NL76aib", "https://tec.openplanner.team/stops/NL76ala"], ["https://tec.openplanner.team/stops/X762aea", "https://tec.openplanner.team/stops/X762aeb"], ["https://tec.openplanner.team/stops/Cdacolu2", "https://tec.openplanner.team/stops/Cdamare2"], ["https://tec.openplanner.team/stops/Llgnico1", "https://tec.openplanner.team/stops/Llgsnap1"], ["https://tec.openplanner.team/stops/H1bn113b", "https://tec.openplanner.team/stops/H1qy133b"], ["https://tec.openplanner.team/stops/X601cgb", "https://tec.openplanner.team/stops/X662aia"], ["https://tec.openplanner.team/stops/LTHroch1", "https://tec.openplanner.team/stops/LTHroch2"], ["https://tec.openplanner.team/stops/LBVcent1", "https://tec.openplanner.team/stops/LBVcent2"], ["https://tec.openplanner.team/stops/H5rx138a", "https://tec.openplanner.team/stops/H5rx151a"], ["https://tec.openplanner.team/stops/Bettlha1", "https://tec.openplanner.team/stops/Bettlha2"], ["https://tec.openplanner.team/stops/N135aed", "https://tec.openplanner.team/stops/N135aoa"], ["https://tec.openplanner.team/stops/N225aeb", "https://tec.openplanner.team/stops/N225aha"], ["https://tec.openplanner.team/stops/LMfeg--1", "https://tec.openplanner.team/stops/LMfsart1"], ["https://tec.openplanner.team/stops/Cfanvmo2", "https://tec.openplanner.team/stops/Cpibois2"], ["https://tec.openplanner.team/stops/N209aic", "https://tec.openplanner.team/stops/N209aid"], ["https://tec.openplanner.team/stops/X837afa", "https://tec.openplanner.team/stops/X837ala"], ["https://tec.openplanner.team/stops/N151abb", "https://tec.openplanner.team/stops/N151aka"], ["https://tec.openplanner.team/stops/Ccycont1", "https://tec.openplanner.team/stops/Cfcchas2"], ["https://tec.openplanner.team/stops/Lvecote2", "https://tec.openplanner.team/stops/Lvepris1"], ["https://tec.openplanner.team/stops/N501lpa", "https://tec.openplanner.team/stops/N501lqb"], ["https://tec.openplanner.team/stops/N204aea", "https://tec.openplanner.team/stops/N204afa"], ["https://tec.openplanner.team/stops/N337aia", "https://tec.openplanner.team/stops/N337aib"], ["https://tec.openplanner.team/stops/H4ff115a", "https://tec.openplanner.team/stops/H4ff121b"], ["https://tec.openplanner.team/stops/X724aea", "https://tec.openplanner.team/stops/X724aib"], ["https://tec.openplanner.team/stops/LAIrout1", "https://tec.openplanner.team/stops/LAIrout2"], ["https://tec.openplanner.team/stops/Becepon1", "https://tec.openplanner.team/stops/H2ec112a"], ["https://tec.openplanner.team/stops/Canecbr1", "https://tec.openplanner.team/stops/Canvane2"], ["https://tec.openplanner.team/stops/X663aub", "https://tec.openplanner.team/stops/X664asa"], ["https://tec.openplanner.team/stops/H1ba105b", "https://tec.openplanner.team/stops/H1ba118a"], ["https://tec.openplanner.team/stops/N543baa", "https://tec.openplanner.team/stops/N543bia"], ["https://tec.openplanner.team/stops/X788aaa", "https://tec.openplanner.team/stops/X788abc"], ["https://tec.openplanner.team/stops/Lanhoud2", "https://tec.openplanner.team/stops/Lannico2"], ["https://tec.openplanner.team/stops/LVSpn--2", "https://tec.openplanner.team/stops/LVStige2"], ["https://tec.openplanner.team/stops/LeUmalm1", "https://tec.openplanner.team/stops/LeUwais1"], ["https://tec.openplanner.team/stops/X769apb", "https://tec.openplanner.team/stops/X769aqb"], ["https://tec.openplanner.team/stops/Loubiez1", "https://tec.openplanner.team/stops/Louvira1"], ["https://tec.openplanner.team/stops/Lsecris1", "https://tec.openplanner.team/stops/Lsepudd2"], ["https://tec.openplanner.team/stops/Lalbout2", "https://tec.openplanner.team/stops/Lalhomb1"], ["https://tec.openplanner.team/stops/N368aea", "https://tec.openplanner.team/stops/N368afa"], ["https://tec.openplanner.team/stops/N101aab", "https://tec.openplanner.team/stops/N101aba"], ["https://tec.openplanner.team/stops/CMmoul1", "https://tec.openplanner.team/stops/Cmomoul6"], ["https://tec.openplanner.team/stops/Lsnlhon1", "https://tec.openplanner.team/stops/Lsnlhon2"], ["https://tec.openplanner.team/stops/LPOeg--2", "https://tec.openplanner.team/stops/LPOthom1"], ["https://tec.openplanner.team/stops/LHVetoi2", "https://tec.openplanner.team/stops/LHVgoro2"], ["https://tec.openplanner.team/stops/LLrchat2", "https://tec.openplanner.team/stops/LLrmeno2"], ["https://tec.openplanner.team/stops/LCUjonc2", "https://tec.openplanner.team/stops/LCUmora2"], ["https://tec.openplanner.team/stops/X633ajc", "https://tec.openplanner.team/stops/X654aib"], ["https://tec.openplanner.team/stops/LPAmosa1", "https://tec.openplanner.team/stops/LPAvill1"], ["https://tec.openplanner.team/stops/H4rx175a", "https://tec.openplanner.team/stops/H4rx175b"], ["https://tec.openplanner.team/stops/Cnanoir2", "https://tec.openplanner.team/stops/Cnaplha1"], ["https://tec.openplanner.team/stops/X899aea", "https://tec.openplanner.team/stops/X899aeb"], ["https://tec.openplanner.team/stops/N229ala", "https://tec.openplanner.team/stops/N229ama"], ["https://tec.openplanner.team/stops/H4ro154b", "https://tec.openplanner.team/stops/H4ro155a"], ["https://tec.openplanner.team/stops/H1pa104a", "https://tec.openplanner.team/stops/H1pa116b"], ["https://tec.openplanner.team/stops/Cgzchen2", "https://tec.openplanner.team/stops/Cthha502"], ["https://tec.openplanner.team/stops/N301ajb", "https://tec.openplanner.team/stops/N302aba"], ["https://tec.openplanner.team/stops/H4mv192a", "https://tec.openplanner.team/stops/H4oe150a"], ["https://tec.openplanner.team/stops/X993aaa", "https://tec.openplanner.team/stops/X993aha"], ["https://tec.openplanner.team/stops/Cbmpopr1", "https://tec.openplanner.team/stops/H1bt100a"], ["https://tec.openplanner.team/stops/Bboseco1", "https://tec.openplanner.team/stops/Bbosgar2"], ["https://tec.openplanner.team/stops/LTPabat2", "https://tec.openplanner.team/stops/LTPbode1"], ["https://tec.openplanner.team/stops/Cmypela2", "https://tec.openplanner.team/stops/Cmyvesa3"], ["https://tec.openplanner.team/stops/Bgdhlai2", "https://tec.openplanner.team/stops/Bthspha1"], ["https://tec.openplanner.team/stops/Bcrbgro2", "https://tec.openplanner.team/stops/Bcrbros1"], ["https://tec.openplanner.team/stops/N501dhb", "https://tec.openplanner.team/stops/N501leb"], ["https://tec.openplanner.team/stops/N514aaa", "https://tec.openplanner.team/stops/N514aoa"], ["https://tec.openplanner.team/stops/H1ma234a", "https://tec.openplanner.team/stops/H1mj124b"], ["https://tec.openplanner.team/stops/N260aba", "https://tec.openplanner.team/stops/N270aaa"], ["https://tec.openplanner.team/stops/Bzluegl2", "https://tec.openplanner.team/stops/Bzluqga2"], ["https://tec.openplanner.team/stops/N507afb", "https://tec.openplanner.team/stops/N507ajb"], ["https://tec.openplanner.team/stops/LBNplei1", "https://tec.openplanner.team/stops/LBNvill1"], ["https://tec.openplanner.team/stops/N548amb", "https://tec.openplanner.team/stops/N548asb"], ["https://tec.openplanner.team/stops/N537aia", "https://tec.openplanner.team/stops/N537ala"], ["https://tec.openplanner.team/stops/LWabela2", "https://tec.openplanner.team/stops/LWargeu2"], ["https://tec.openplanner.team/stops/X618aaa", "https://tec.openplanner.team/stops/X625afb"], ["https://tec.openplanner.team/stops/X770aaa", "https://tec.openplanner.team/stops/X770aab"], ["https://tec.openplanner.team/stops/Cfoermi1", "https://tec.openplanner.team/stops/Cfogaul1"], ["https://tec.openplanner.team/stops/N351aka", "https://tec.openplanner.team/stops/N351ala"], ["https://tec.openplanner.team/stops/LMgbatt2", "https://tec.openplanner.team/stops/LMgkrui1"], ["https://tec.openplanner.team/stops/X639abb", "https://tec.openplanner.team/stops/X639aca"], ["https://tec.openplanner.team/stops/Bthsset1", "https://tec.openplanner.team/stops/NL37aja"], ["https://tec.openplanner.team/stops/Btlbgla1", "https://tec.openplanner.team/stops/Btlbgla2"], ["https://tec.openplanner.team/stops/LBrneli1", "https://tec.openplanner.team/stops/LMApape2"], ["https://tec.openplanner.team/stops/H1ob330b", "https://tec.openplanner.team/stops/H1ob339b"], ["https://tec.openplanner.team/stops/N232ceb", "https://tec.openplanner.team/stops/N260acb"], ["https://tec.openplanner.team/stops/Cfmchap1", "https://tec.openplanner.team/stops/Cptberg1"], ["https://tec.openplanner.team/stops/Bmrlhan3", "https://tec.openplanner.team/stops/Bmrlnce1"], ["https://tec.openplanner.team/stops/N235adb", "https://tec.openplanner.team/stops/N235afb"], ["https://tec.openplanner.team/stops/N512aea", "https://tec.openplanner.team/stops/N512afb"], ["https://tec.openplanner.team/stops/LPUchpl2", "https://tec.openplanner.team/stops/LPUmang2"], ["https://tec.openplanner.team/stops/H1sb149b", "https://tec.openplanner.team/stops/H1sb151b"], ["https://tec.openplanner.team/stops/Beclpla2", "https://tec.openplanner.team/stops/H2ec102a"], ["https://tec.openplanner.team/stops/Ccppn2", "https://tec.openplanner.team/stops/H2ch125a"], ["https://tec.openplanner.team/stops/Cmmami1", "https://tec.openplanner.team/stops/Cmmn1171"], ["https://tec.openplanner.team/stops/N569aia", "https://tec.openplanner.team/stops/N571afb"], ["https://tec.openplanner.team/stops/LWDbure1", "https://tec.openplanner.team/stops/LWDbure2"], ["https://tec.openplanner.team/stops/X802aqa", "https://tec.openplanner.team/stops/X802aub"], ["https://tec.openplanner.team/stops/Bcbqcoi2", "https://tec.openplanner.team/stops/Bcbqrog1"], ["https://tec.openplanner.team/stops/LWalyce2", "https://tec.openplanner.team/stops/LWapl--1"], ["https://tec.openplanner.team/stops/N308aba", "https://tec.openplanner.team/stops/N308bfb"], ["https://tec.openplanner.team/stops/LHMbami1", "https://tec.openplanner.team/stops/LSIespe1"], ["https://tec.openplanner.team/stops/LNEolne1", "https://tec.openplanner.team/stops/LNEtonv2"], ["https://tec.openplanner.team/stops/Bboupde1", "https://tec.openplanner.team/stops/Bcsemar2"], ["https://tec.openplanner.team/stops/H1be102a", "https://tec.openplanner.team/stops/H1be103a"], ["https://tec.openplanner.team/stops/N331ada", "https://tec.openplanner.team/stops/N331adb"], ["https://tec.openplanner.team/stops/H4ga165a", "https://tec.openplanner.team/stops/H4ga165b"], ["https://tec.openplanner.team/stops/LLGramk1", "https://tec.openplanner.team/stops/LLGramk2"], ["https://tec.openplanner.team/stops/LPLg90-2", "https://tec.openplanner.team/stops/LPLroth2"], ["https://tec.openplanner.team/stops/N202aab", "https://tec.openplanner.team/stops/N203ada"], ["https://tec.openplanner.team/stops/H1ho142a", "https://tec.openplanner.team/stops/H1wg127a"], ["https://tec.openplanner.team/stops/H1fl136b", "https://tec.openplanner.team/stops/H1fl142b"], ["https://tec.openplanner.team/stops/H4mx116a", "https://tec.openplanner.team/stops/H4po129b"], ["https://tec.openplanner.team/stops/X602abb", "https://tec.openplanner.team/stops/X602adb"], ["https://tec.openplanner.team/stops/X768aea", "https://tec.openplanner.team/stops/X768aeb"], ["https://tec.openplanner.team/stops/Cfcrerp1", "https://tec.openplanner.team/stops/N103aeb"], ["https://tec.openplanner.team/stops/Lvegc--6", "https://tec.openplanner.team/stops/Lvegc--7"], ["https://tec.openplanner.team/stops/N562afb", "https://tec.openplanner.team/stops/N562bha"], ["https://tec.openplanner.team/stops/LRuegli1", "https://tec.openplanner.team/stops/LRuegli2"], ["https://tec.openplanner.team/stops/X666aka", "https://tec.openplanner.team/stops/X729aab"], ["https://tec.openplanner.team/stops/N531ala", "https://tec.openplanner.team/stops/N531arb"], ["https://tec.openplanner.team/stops/H2ha129e", "https://tec.openplanner.team/stops/H2ha137b"], ["https://tec.openplanner.team/stops/Bincfer2", "https://tec.openplanner.team/stops/Bptbmco2"], ["https://tec.openplanner.team/stops/Lbrbass1", "https://tec.openplanner.team/stops/Lgrspir1"], ["https://tec.openplanner.team/stops/LkEherg1", "https://tec.openplanner.team/stops/LVAgemm1"], ["https://tec.openplanner.team/stops/X820aaa", "https://tec.openplanner.team/stops/X822ama"], ["https://tec.openplanner.team/stops/LeYdepo2", "https://tec.openplanner.team/stops/LeYfeld1"], ["https://tec.openplanner.team/stops/Bbougbl1", "https://tec.openplanner.team/stops/Bbougbl2"], ["https://tec.openplanner.team/stops/Lvoeg--1", "https://tec.openplanner.team/stops/Lvoeg--2"], ["https://tec.openplanner.team/stops/NL77alb", "https://tec.openplanner.team/stops/NL78akb"], ["https://tec.openplanner.team/stops/LThbatt1", "https://tec.openplanner.team/stops/LThchar2"], ["https://tec.openplanner.team/stops/X773aka", "https://tec.openplanner.team/stops/X773alb"], ["https://tec.openplanner.team/stops/Cfcecol4", "https://tec.openplanner.team/stops/Cvretan2"], ["https://tec.openplanner.team/stops/N230aga", "https://tec.openplanner.team/stops/N230aja"], ["https://tec.openplanner.team/stops/Bnivn971", "https://tec.openplanner.team/stops/Bnivn972"], ["https://tec.openplanner.team/stops/X601bca", "https://tec.openplanner.team/stops/X601bcb"], ["https://tec.openplanner.team/stops/N132aaa", "https://tec.openplanner.team/stops/N132aab"], ["https://tec.openplanner.team/stops/X813aca", "https://tec.openplanner.team/stops/X813acb"], ["https://tec.openplanner.team/stops/LNCvill2", "https://tec.openplanner.team/stops/LNCvill3"], ["https://tec.openplanner.team/stops/LkAbahn*", "https://tec.openplanner.team/stops/LkAmess1"], ["https://tec.openplanner.team/stops/Llgbavi4", "https://tec.openplanner.team/stops/Llgphol3"], ["https://tec.openplanner.team/stops/N501bkb", "https://tec.openplanner.team/stops/N501bqb"], ["https://tec.openplanner.team/stops/Cci28ju1", "https://tec.openplanner.team/stops/Cci28ju2"], ["https://tec.openplanner.team/stops/N512anb", "https://tec.openplanner.team/stops/N512aob"], ["https://tec.openplanner.team/stops/Lbrboul1", "https://tec.openplanner.team/stops/Lbrcard1"], ["https://tec.openplanner.team/stops/H1fr113b", "https://tec.openplanner.team/stops/H1fr130a"], ["https://tec.openplanner.team/stops/Llieg--3", "https://tec.openplanner.team/stops/Llivina1"], ["https://tec.openplanner.team/stops/H4co106a", "https://tec.openplanner.team/stops/H4co106d"], ["https://tec.openplanner.team/stops/LtH28a-1", "https://tec.openplanner.team/stops/LtH28a-2"], ["https://tec.openplanner.team/stops/H1sg142a", "https://tec.openplanner.team/stops/H1sg150a"], ["https://tec.openplanner.team/stops/Bhmmhde1", "https://tec.openplanner.team/stops/Bhmmjco1"], ["https://tec.openplanner.team/stops/X818agb", "https://tec.openplanner.team/stops/X818aha"], ["https://tec.openplanner.team/stops/N515aia", "https://tec.openplanner.team/stops/N515aib"], ["https://tec.openplanner.team/stops/N150afa", "https://tec.openplanner.team/stops/N150aja"], ["https://tec.openplanner.team/stops/Llgjoie3", "https://tec.openplanner.team/stops/Llgjoie4"], ["https://tec.openplanner.team/stops/Ceqmeti1", "https://tec.openplanner.team/stops/H1er105a"], ["https://tec.openplanner.team/stops/X824ajb", "https://tec.openplanner.team/stops/X825aga"], ["https://tec.openplanner.team/stops/N528ara", "https://tec.openplanner.team/stops/N528arb"], ["https://tec.openplanner.team/stops/H1fl138a", "https://tec.openplanner.team/stops/H1fl142a"], ["https://tec.openplanner.team/stops/X991aea", "https://tec.openplanner.team/stops/X991aka"], ["https://tec.openplanner.team/stops/LLrscie1", "https://tec.openplanner.team/stops/LLrscie2"], ["https://tec.openplanner.team/stops/LAUbour3", "https://tec.openplanner.team/stops/LAUcose2"], ["https://tec.openplanner.team/stops/X801agb", "https://tec.openplanner.team/stops/X801aha"], ["https://tec.openplanner.team/stops/Bmlnbpr1", "https://tec.openplanner.team/stops/Bmlnsmv1"], ["https://tec.openplanner.team/stops/H4bi100a", "https://tec.openplanner.team/stops/H4bi100b"], ["https://tec.openplanner.team/stops/H3so168a", "https://tec.openplanner.team/stops/H3so174b"], ["https://tec.openplanner.team/stops/Cdapige1", "https://tec.openplanner.team/stops/Cdapige2"], ["https://tec.openplanner.team/stops/H2mm136a", "https://tec.openplanner.team/stops/H2mo123a"], ["https://tec.openplanner.team/stops/H4te254a", "https://tec.openplanner.team/stops/H4te254b"], ["https://tec.openplanner.team/stops/Btgrdoc1", "https://tec.openplanner.team/stops/N584caa"], ["https://tec.openplanner.team/stops/LVRchpl1", "https://tec.openplanner.team/stops/X782afa"], ["https://tec.openplanner.team/stops/LaAmise2", "https://tec.openplanner.team/stops/LVAbuss1"], ["https://tec.openplanner.team/stops/N509aca", "https://tec.openplanner.team/stops/N509aqb"], ["https://tec.openplanner.team/stops/LOmmer-1", "https://tec.openplanner.team/stops/LOmrela1"], ["https://tec.openplanner.team/stops/Cjugill6", "https://tec.openplanner.team/stops/Cjupui02"], ["https://tec.openplanner.team/stops/Bhoealt1", "https://tec.openplanner.team/stops/Bpiesta2"], ["https://tec.openplanner.team/stops/Bclgbvi1", "https://tec.openplanner.team/stops/Bwavdmo1"], ["https://tec.openplanner.team/stops/H4mt214a", "https://tec.openplanner.team/stops/H4ru235a"], ["https://tec.openplanner.team/stops/N229aha", "https://tec.openplanner.team/stops/N229aob"], ["https://tec.openplanner.team/stops/Lfhbott2", "https://tec.openplanner.team/stops/Lfhcime1"], ["https://tec.openplanner.team/stops/Benimar2", "https://tec.openplanner.team/stops/Bmrlsau1"], ["https://tec.openplanner.team/stops/NL78adb", "https://tec.openplanner.team/stops/NL78aeb"], ["https://tec.openplanner.team/stops/Lseresi1", "https://tec.openplanner.team/stops/Lseresi2"], ["https://tec.openplanner.team/stops/Cjualtr2", "https://tec.openplanner.team/stops/Cjutrou1"], ["https://tec.openplanner.team/stops/LLevaux2", "https://tec.openplanner.team/stops/X547adb"], ["https://tec.openplanner.team/stops/LWEfati2", "https://tec.openplanner.team/stops/LWEwilc2"], ["https://tec.openplanner.team/stops/LCFeg--1", "https://tec.openplanner.team/stops/LHaxhig1"], ["https://tec.openplanner.team/stops/LkEgss-2", "https://tec.openplanner.team/stops/LkEsada1"], ["https://tec.openplanner.team/stops/H1gh149b", "https://tec.openplanner.team/stops/H1gh365a"], ["https://tec.openplanner.team/stops/X734aka", "https://tec.openplanner.team/stops/X734anc"], ["https://tec.openplanner.team/stops/Lalverr1", "https://tec.openplanner.team/stops/Llabrou1"], ["https://tec.openplanner.team/stops/X736abb", "https://tec.openplanner.team/stops/X952acb"], ["https://tec.openplanner.team/stops/H1qu100a", "https://tec.openplanner.team/stops/H1qu100c"], ["https://tec.openplanner.team/stops/X725aaa", "https://tec.openplanner.team/stops/X725aab"], ["https://tec.openplanner.team/stops/X877aaa", "https://tec.openplanner.team/stops/X877aea"], ["https://tec.openplanner.team/stops/Bqueblo1", "https://tec.openplanner.team/stops/Bquepos1"], ["https://tec.openplanner.team/stops/X788abe", "https://tec.openplanner.team/stops/X789ahd"], ["https://tec.openplanner.team/stops/H2pr114b", "https://tec.openplanner.team/stops/H2pr118b"], ["https://tec.openplanner.team/stops/Lpeprev1", "https://tec.openplanner.team/stops/Lpesart1"], ["https://tec.openplanner.team/stops/Lbhhomv2", "https://tec.openplanner.team/stops/Lbhmc--1"], ["https://tec.openplanner.team/stops/X633acb", "https://tec.openplanner.team/stops/X633akb"], ["https://tec.openplanner.team/stops/H1mj132b", "https://tec.openplanner.team/stops/H1ni319a"], ["https://tec.openplanner.team/stops/LLVfour1", "https://tec.openplanner.team/stops/X575afb"], ["https://tec.openplanner.team/stops/X371aaa", "https://tec.openplanner.team/stops/X371aba"], ["https://tec.openplanner.team/stops/NH01aia", "https://tec.openplanner.team/stops/NH01aua"], ["https://tec.openplanner.team/stops/X725ama", "https://tec.openplanner.team/stops/X725ana"], ["https://tec.openplanner.team/stops/Lsetrav1", "https://tec.openplanner.team/stops/Lsetrav2"], ["https://tec.openplanner.team/stops/X858aaa", "https://tec.openplanner.team/stops/X858aab"], ["https://tec.openplanner.team/stops/LHEgare1", "https://tec.openplanner.team/stops/LHEgare2"], ["https://tec.openplanner.team/stops/H2le146a", "https://tec.openplanner.team/stops/H2le148a"], ["https://tec.openplanner.team/stops/X760aeb", "https://tec.openplanner.team/stops/X762ada"], ["https://tec.openplanner.team/stops/N529ada", "https://tec.openplanner.team/stops/N529aia"], ["https://tec.openplanner.team/stops/X857aba", "https://tec.openplanner.team/stops/X857abb"], ["https://tec.openplanner.team/stops/LBNgarn1", "https://tec.openplanner.team/stops/LeUcamp2"], ["https://tec.openplanner.team/stops/H4ne132a", "https://tec.openplanner.team/stops/H4ne132b"], ["https://tec.openplanner.team/stops/LFMveur1", "https://tec.openplanner.team/stops/LFPkape4"], ["https://tec.openplanner.team/stops/Cplcite2", "https://tec.openplanner.team/stops/Cpllimi5"], ["https://tec.openplanner.team/stops/N230alb", "https://tec.openplanner.team/stops/N549aib"], ["https://tec.openplanner.team/stops/LPctrog1", "https://tec.openplanner.team/stops/LVPbleh2"], ["https://tec.openplanner.team/stops/LBNruns1", "https://tec.openplanner.team/stops/LMemaza2"], ["https://tec.openplanner.team/stops/H1ms257b", "https://tec.openplanner.team/stops/H1ms279b"], ["https://tec.openplanner.team/stops/N309aac", "https://tec.openplanner.team/stops/N309abb"], ["https://tec.openplanner.team/stops/Cnadepo1", "https://tec.openplanner.team/stops/Cnafont1"], ["https://tec.openplanner.team/stops/LAascie2", "https://tec.openplanner.team/stops/LBoegli1"], ["https://tec.openplanner.team/stops/N348ada", "https://tec.openplanner.team/stops/N352abb"], ["https://tec.openplanner.team/stops/Bgemgjo1", "https://tec.openplanner.team/stops/N522bvc"], ["https://tec.openplanner.team/stops/X754afa", "https://tec.openplanner.team/stops/X754aga"], ["https://tec.openplanner.team/stops/Blhumpo3", "https://tec.openplanner.team/stops/Blhumpo4"], ["https://tec.openplanner.team/stops/Bbiefon1", "https://tec.openplanner.team/stops/Bbsggot2"], ["https://tec.openplanner.team/stops/LPRbayb1", "https://tec.openplanner.team/stops/LPRbayb2"], ["https://tec.openplanner.team/stops/Bmlncle2", "https://tec.openplanner.team/stops/Bmlnsms1"], ["https://tec.openplanner.team/stops/H4mo138a", "https://tec.openplanner.team/stops/H4mo169a"], ["https://tec.openplanner.team/stops/H1ca102a", "https://tec.openplanner.team/stops/H3so153a"], ["https://tec.openplanner.team/stops/H1bi104b", "https://tec.openplanner.team/stops/H1bu139a"], ["https://tec.openplanner.team/stops/LVlleme2", "https://tec.openplanner.team/stops/LVlroua4"], ["https://tec.openplanner.team/stops/N501cza", "https://tec.openplanner.team/stops/N528aga"], ["https://tec.openplanner.team/stops/Bllngar2", "https://tec.openplanner.team/stops/Bllngar6"], ["https://tec.openplanner.team/stops/LaAmise2", "https://tec.openplanner.team/stops/LaAseba2"], ["https://tec.openplanner.team/stops/Cclchap1", "https://tec.openplanner.team/stops/Ctuplac2"], ["https://tec.openplanner.team/stops/Cnacroc1", "https://tec.openplanner.team/stops/Cnacroc2"], ["https://tec.openplanner.team/stops/X942aaa", "https://tec.openplanner.team/stops/X943aeb"], ["https://tec.openplanner.team/stops/Cmyedpa1", "https://tec.openplanner.team/stops/Cmyland4"], ["https://tec.openplanner.team/stops/N532aaa", "https://tec.openplanner.team/stops/N532aba"], ["https://tec.openplanner.team/stops/LbUwhon2", "https://tec.openplanner.team/stops/LhDkreu4"], ["https://tec.openplanner.team/stops/H1hl126a", "https://tec.openplanner.team/stops/H1vs146b"], ["https://tec.openplanner.team/stops/H4mo148a", "https://tec.openplanner.team/stops/H4mo205a"], ["https://tec.openplanner.team/stops/Crajasm2", "https://tec.openplanner.team/stops/Crapaep1"], ["https://tec.openplanner.team/stops/LHYdogn2", "https://tec.openplanner.team/stops/LSEquar1"], ["https://tec.openplanner.team/stops/H4ca121a", "https://tec.openplanner.team/stops/H4ca121b"], ["https://tec.openplanner.team/stops/H4ch120c", "https://tec.openplanner.team/stops/H4vx364c"], ["https://tec.openplanner.team/stops/LeLbutg1", "https://tec.openplanner.team/stops/LeLbutg3"], ["https://tec.openplanner.team/stops/N506bja", "https://tec.openplanner.team/stops/N506bka"], ["https://tec.openplanner.team/stops/X982cea", "https://tec.openplanner.team/stops/X996ada"], ["https://tec.openplanner.team/stops/X605aba", "https://tec.openplanner.team/stops/X605ala"], ["https://tec.openplanner.team/stops/N531agb", "https://tec.openplanner.team/stops/N531aia"], ["https://tec.openplanner.team/stops/H1mh115b", "https://tec.openplanner.team/stops/H1po132b"], ["https://tec.openplanner.team/stops/Bflcneu1", "https://tec.openplanner.team/stops/N515afa"], ["https://tec.openplanner.team/stops/Llgbavr1", "https://tec.openplanner.team/stops/Llgbruy1"], ["https://tec.openplanner.team/stops/Blasbpr2", "https://tec.openplanner.team/stops/Blasvil1"], ["https://tec.openplanner.team/stops/N121aga", "https://tec.openplanner.team/stops/N121agb"], ["https://tec.openplanner.team/stops/Bhptcha1", "https://tec.openplanner.team/stops/Broncli1"], ["https://tec.openplanner.team/stops/X725awa", "https://tec.openplanner.team/stops/X725aza"], ["https://tec.openplanner.team/stops/H4ft132a", "https://tec.openplanner.team/stops/H4ft133b"], ["https://tec.openplanner.team/stops/X542aha", "https://tec.openplanner.team/stops/X777abb"], ["https://tec.openplanner.team/stops/X609aqa", "https://tec.openplanner.team/stops/X631aca"], ["https://tec.openplanner.team/stops/LNCsera2", "https://tec.openplanner.team/stops/LNCspor2"], ["https://tec.openplanner.team/stops/N143aaa", "https://tec.openplanner.team/stops/N143aab"], ["https://tec.openplanner.team/stops/Cgzabau3", "https://tec.openplanner.team/stops/Cgzoctr1"], ["https://tec.openplanner.team/stops/X750axa", "https://tec.openplanner.team/stops/X750bia"], ["https://tec.openplanner.team/stops/Lengran1", "https://tec.openplanner.team/stops/Lveoctr1"], ["https://tec.openplanner.team/stops/Lcalaro1", "https://tec.openplanner.team/stops/Lrofont1"], ["https://tec.openplanner.team/stops/X641ama", "https://tec.openplanner.team/stops/X641amb"], ["https://tec.openplanner.team/stops/N506agb", "https://tec.openplanner.team/stops/N506ala"], ["https://tec.openplanner.team/stops/H4os223a", "https://tec.openplanner.team/stops/H5at129b"], ["https://tec.openplanner.team/stops/H1hr118b", "https://tec.openplanner.team/stops/H3so156a"], ["https://tec.openplanner.team/stops/LCocasc2", "https://tec.openplanner.team/stops/LTPlegr2"], ["https://tec.openplanner.team/stops/N501iua", "https://tec.openplanner.team/stops/N501iub"], ["https://tec.openplanner.team/stops/H4to134b", "https://tec.openplanner.team/stops/H4to138b"], ["https://tec.openplanner.team/stops/Cfabaty4", "https://tec.openplanner.team/stops/Cflmart2"], ["https://tec.openplanner.team/stops/H4ga147a", "https://tec.openplanner.team/stops/H4ga152a"], ["https://tec.openplanner.team/stops/X602aia", "https://tec.openplanner.team/stops/X602ajb"], ["https://tec.openplanner.team/stops/NL74aac", "https://tec.openplanner.team/stops/NL74aad"], ["https://tec.openplanner.team/stops/H1cu126b", "https://tec.openplanner.team/stops/H1cu131a"], ["https://tec.openplanner.team/stops/LaSkape2", "https://tec.openplanner.team/stops/LlNm%C3%BChl1"], ["https://tec.openplanner.team/stops/LFTec--1", "https://tec.openplanner.team/stops/LFTec--3"], ["https://tec.openplanner.team/stops/LCTmonu1", "https://tec.openplanner.team/stops/LCTmonu2"], ["https://tec.openplanner.team/stops/Cjxdesc2", "https://tec.openplanner.team/stops/Cnapetr1"], ["https://tec.openplanner.team/stops/N207aea", "https://tec.openplanner.team/stops/N207aeb"], ["https://tec.openplanner.team/stops/N229atb", "https://tec.openplanner.team/stops/N540apb"], ["https://tec.openplanner.team/stops/Canchbr2", "https://tec.openplanner.team/stops/Canjonc1"], ["https://tec.openplanner.team/stops/Bcrbbou2", "https://tec.openplanner.team/stops/Bcrbhir1"], ["https://tec.openplanner.team/stops/LbTcarm2", "https://tec.openplanner.team/stops/LbTdoma2"], ["https://tec.openplanner.team/stops/X390aib", "https://tec.openplanner.team/stops/X390apa"], ["https://tec.openplanner.team/stops/X624aea", "https://tec.openplanner.team/stops/X624afa"], ["https://tec.openplanner.team/stops/LSSeg--2", "https://tec.openplanner.team/stops/LYEphar2"], ["https://tec.openplanner.team/stops/X982apb", "https://tec.openplanner.team/stops/X982axb"], ["https://tec.openplanner.team/stops/N201aha", "https://tec.openplanner.team/stops/N201aqb"], ["https://tec.openplanner.team/stops/H5wo134a", "https://tec.openplanner.team/stops/H5wo134b"], ["https://tec.openplanner.team/stops/LFPkast1", "https://tec.openplanner.team/stops/LFPkast2"], ["https://tec.openplanner.team/stops/Cgyruis1", "https://tec.openplanner.team/stops/Cgyruis2"], ["https://tec.openplanner.team/stops/Chhplbe1", "https://tec.openplanner.team/stops/Chhthui1"], ["https://tec.openplanner.team/stops/X902ana", "https://tec.openplanner.team/stops/X902apa"], ["https://tec.openplanner.team/stops/Bvlvbth1", "https://tec.openplanner.team/stops/Bvlvpco1"], ["https://tec.openplanner.team/stops/Bbosdra1", "https://tec.openplanner.team/stops/Btiegoo1"], ["https://tec.openplanner.team/stops/LbUhons2", "https://tec.openplanner.team/stops/LbUkrei*"], ["https://tec.openplanner.team/stops/N505aha", "https://tec.openplanner.team/stops/N505ahb"], ["https://tec.openplanner.team/stops/LThhoul2", "https://tec.openplanner.team/stops/LThsere1"], ["https://tec.openplanner.team/stops/H4ty322a", "https://tec.openplanner.team/stops/H4ty322b"], ["https://tec.openplanner.team/stops/N301abd", "https://tec.openplanner.team/stops/N301aca"], ["https://tec.openplanner.team/stops/Cjubert1", "https://tec.openplanner.team/stops/Cjubert2"], ["https://tec.openplanner.team/stops/H1gr122a", "https://tec.openplanner.team/stops/H1mk116b"], ["https://tec.openplanner.team/stops/X994ama", "https://tec.openplanner.team/stops/X994amb"], ["https://tec.openplanner.team/stops/H1fl137a", "https://tec.openplanner.team/stops/H1fl137b"], ["https://tec.openplanner.team/stops/Bbiehss2", "https://tec.openplanner.team/stops/Bptbsar2"], ["https://tec.openplanner.team/stops/X618afb", "https://tec.openplanner.team/stops/X696ada"], ["https://tec.openplanner.team/stops/Cfocobe1", "https://tec.openplanner.team/stops/Cfocobe2"], ["https://tec.openplanner.team/stops/X921afb", "https://tec.openplanner.team/stops/X921agb"], ["https://tec.openplanner.team/stops/N524aab", "https://tec.openplanner.team/stops/N525ajb"], ["https://tec.openplanner.team/stops/LBiberg1", "https://tec.openplanner.team/stops/LDOgare1"], ["https://tec.openplanner.team/stops/H1mk113a", "https://tec.openplanner.team/stops/H1mk113b"], ["https://tec.openplanner.team/stops/X979afa", "https://tec.openplanner.team/stops/X979afb"], ["https://tec.openplanner.team/stops/LtEnach1", "https://tec.openplanner.team/stops/LtEnach2"], ["https://tec.openplanner.team/stops/H1cu129a", "https://tec.openplanner.team/stops/H1fr151b"], ["https://tec.openplanner.team/stops/X822aib", "https://tec.openplanner.team/stops/X836afb"], ["https://tec.openplanner.team/stops/Bucccre1", "https://tec.openplanner.team/stops/Bucccre2"], ["https://tec.openplanner.team/stops/H1ro133a", "https://tec.openplanner.team/stops/H1ro140a"], ["https://tec.openplanner.team/stops/Lbrchur1", "https://tec.openplanner.team/stops/Lbrchur2"], ["https://tec.openplanner.team/stops/H3lr111a", "https://tec.openplanner.team/stops/H3lr117a"], ["https://tec.openplanner.team/stops/Bwatmch2", "https://tec.openplanner.team/stops/Bwatpct1"], ["https://tec.openplanner.team/stops/LVlfooz1", "https://tec.openplanner.team/stops/LVlledo2"], ["https://tec.openplanner.team/stops/H4tp145a", "https://tec.openplanner.team/stops/H4tp145b"], ["https://tec.openplanner.team/stops/N530aga", "https://tec.openplanner.team/stops/N561aea"], ["https://tec.openplanner.team/stops/Llgdoth2", "https://tec.openplanner.team/stops/Llghopo1"], ["https://tec.openplanner.team/stops/X982bub", "https://tec.openplanner.team/stops/X982bxb"], ["https://tec.openplanner.team/stops/X777acb", "https://tec.openplanner.team/stops/X784aab"], ["https://tec.openplanner.team/stops/X715adb", "https://tec.openplanner.team/stops/X715ala"], ["https://tec.openplanner.team/stops/LOmlime1", "https://tec.openplanner.team/stops/LOmvill3"], ["https://tec.openplanner.team/stops/H4cr110a", "https://tec.openplanner.team/stops/H4ff120a"], ["https://tec.openplanner.team/stops/X889acb", "https://tec.openplanner.team/stops/X889adb"], ["https://tec.openplanner.team/stops/N166aba", "https://tec.openplanner.team/stops/N166acb"], ["https://tec.openplanner.team/stops/Lsedavy1", "https://tec.openplanner.team/stops/Lsevico2"], ["https://tec.openplanner.team/stops/Lstchim2", "https://tec.openplanner.team/stops/Lstphys1"], ["https://tec.openplanner.team/stops/LAUcarr2", "https://tec.openplanner.team/stops/LAUross1"], ["https://tec.openplanner.team/stops/Ladfoot1", "https://tec.openplanner.team/stops/Ladhomb2"], ["https://tec.openplanner.team/stops/LSNnoul1", "https://tec.openplanner.team/stops/LSNretr1"], ["https://tec.openplanner.team/stops/Btlbtho2", "https://tec.openplanner.team/stops/NB33aeb"], ["https://tec.openplanner.team/stops/N205ada", "https://tec.openplanner.team/stops/N219aba"], ["https://tec.openplanner.team/stops/H4lz118b", "https://tec.openplanner.team/stops/H4lz157a"], ["https://tec.openplanner.team/stops/Cdahtvi2", "https://tec.openplanner.team/stops/Clolidl1"], ["https://tec.openplanner.team/stops/LHUneuv1", "https://tec.openplanner.team/stops/LHUneuv2"], ["https://tec.openplanner.team/stops/LFRhock3", "https://tec.openplanner.team/stops/LHcbaro1"], ["https://tec.openplanner.team/stops/H1ni318a", "https://tec.openplanner.team/stops/H1ni321a"], ["https://tec.openplanner.team/stops/N235aaa", "https://tec.openplanner.team/stops/N235aab"], ["https://tec.openplanner.team/stops/LAx17--1", "https://tec.openplanner.team/stops/LAx17--2"], ["https://tec.openplanner.team/stops/N501gma", "https://tec.openplanner.team/stops/N501gva"], ["https://tec.openplanner.team/stops/N423aea", "https://tec.openplanner.team/stops/NH01abc"], ["https://tec.openplanner.team/stops/X824adb", "https://tec.openplanner.team/stops/X824aed"], ["https://tec.openplanner.team/stops/H1ev114b", "https://tec.openplanner.team/stops/H1ev115b"], ["https://tec.openplanner.team/stops/N122aab", "https://tec.openplanner.team/stops/N122acb"], ["https://tec.openplanner.team/stops/Barqbar1", "https://tec.openplanner.team/stops/Barqbco2"], ["https://tec.openplanner.team/stops/Clbhvil1", "https://tec.openplanner.team/stops/H1lo119a"], ["https://tec.openplanner.team/stops/H4mo151a", "https://tec.openplanner.team/stops/H4mo190b"], ["https://tec.openplanner.team/stops/Cfrbrin1", "https://tec.openplanner.team/stops/Cfrcoop4"], ["https://tec.openplanner.team/stops/Llgongr1", "https://tec.openplanner.team/stops/Llgongr3"], ["https://tec.openplanner.team/stops/Cfcbobr2", "https://tec.openplanner.team/stops/Cfcbosq2"], ["https://tec.openplanner.team/stops/H4bf107b", "https://tec.openplanner.team/stops/H4bs114a"], ["https://tec.openplanner.team/stops/Ccybeau1", "https://tec.openplanner.team/stops/Ccyrmon1"], ["https://tec.openplanner.team/stops/H1pd145a", "https://tec.openplanner.team/stops/H1wa159a"], ["https://tec.openplanner.team/stops/H1ha184a", "https://tec.openplanner.team/stops/H1ha187a"], ["https://tec.openplanner.team/stops/Bhalath1", "https://tec.openplanner.team/stops/Blkbavo2"], ["https://tec.openplanner.team/stops/Lstbold1", "https://tec.openplanner.team/stops/Lstvill2"], ["https://tec.openplanner.team/stops/LrApley1", "https://tec.openplanner.team/stops/LrAtitf1"], ["https://tec.openplanner.team/stops/H1ca106b", "https://tec.openplanner.team/stops/H1th183a"], ["https://tec.openplanner.team/stops/H5is169b", "https://tec.openplanner.team/stops/H5la177a"], ["https://tec.openplanner.team/stops/Cmcgoch2", "https://tec.openplanner.team/stops/Cmgpla2"], ["https://tec.openplanner.team/stops/LLR4bra2", "https://tec.openplanner.team/stops/LLRvill2"], ["https://tec.openplanner.team/stops/H4ne143b", "https://tec.openplanner.team/stops/H4wa159b"], ["https://tec.openplanner.team/stops/Cctpche1", "https://tec.openplanner.team/stops/NC44aea"], ["https://tec.openplanner.team/stops/H4er122b", "https://tec.openplanner.team/stops/H4ty329a"], ["https://tec.openplanner.team/stops/Bhercsj1", "https://tec.openplanner.team/stops/Bpiesta1"], ["https://tec.openplanner.team/stops/H2be101a", "https://tec.openplanner.team/stops/H2fy122a"], ["https://tec.openplanner.team/stops/X888aba", "https://tec.openplanner.team/stops/X888aga"], ["https://tec.openplanner.team/stops/LTPbode2", "https://tec.openplanner.team/stops/LTPhenr2"], ["https://tec.openplanner.team/stops/H4pp122a", "https://tec.openplanner.team/stops/H4pp122b"], ["https://tec.openplanner.team/stops/Cvp3til1", "https://tec.openplanner.team/stops/Cvpplan1"], ["https://tec.openplanner.team/stops/H1me112b", "https://tec.openplanner.team/stops/H1me113b"], ["https://tec.openplanner.team/stops/LiVkreu2", "https://tec.openplanner.team/stops/LiVkreu4"], ["https://tec.openplanner.team/stops/LhGfrie1", "https://tec.openplanner.team/stops/LkEhatt2"], ["https://tec.openplanner.team/stops/LaAburt2", "https://tec.openplanner.team/stops/LaAkapi1"], ["https://tec.openplanner.team/stops/LHAclin2", "https://tec.openplanner.team/stops/LVIvert1"], ["https://tec.openplanner.team/stops/LLrpape3", "https://tec.openplanner.team/stops/LLrpape4"], ["https://tec.openplanner.team/stops/H1hn207b", "https://tec.openplanner.team/stops/H1sp355a"], ["https://tec.openplanner.team/stops/X901beb", "https://tec.openplanner.team/stops/X901bja"], ["https://tec.openplanner.team/stops/H4ty265a", "https://tec.openplanner.team/stops/H4ty354a"], ["https://tec.openplanner.team/stops/LMschap2", "https://tec.openplanner.team/stops/LMsgara1"], ["https://tec.openplanner.team/stops/Lenclar1", "https://tec.openplanner.team/stops/Llmbell1"], ["https://tec.openplanner.team/stops/X614aba", "https://tec.openplanner.team/stops/X614amb"], ["https://tec.openplanner.team/stops/LaMades2", "https://tec.openplanner.team/stops/LmYeich1"], ["https://tec.openplanner.team/stops/X673ada", "https://tec.openplanner.team/stops/X673aea"], ["https://tec.openplanner.team/stops/Cplrond2", "https://tec.openplanner.team/stops/Cplstfa2"], ["https://tec.openplanner.team/stops/H1fr119a", "https://tec.openplanner.team/stops/H1fr131a"], ["https://tec.openplanner.team/stops/X908aha", "https://tec.openplanner.team/stops/X908apb"], ["https://tec.openplanner.team/stops/Bbsifmo2", "https://tec.openplanner.team/stops/Bbsihau2"], ["https://tec.openplanner.team/stops/H4mo156a", "https://tec.openplanner.team/stops/H4mo156b"], ["https://tec.openplanner.team/stops/Lflmc--1", "https://tec.openplanner.team/stops/Lflterm1"], ["https://tec.openplanner.team/stops/H4bh103a", "https://tec.openplanner.team/stops/H4ry141b"], ["https://tec.openplanner.team/stops/LMOpiss1", "https://tec.openplanner.team/stops/LMOpiss2"], ["https://tec.openplanner.team/stops/X804aza", "https://tec.openplanner.team/stops/X804azb"], ["https://tec.openplanner.team/stops/LHUeuro2", "https://tec.openplanner.team/stops/LHUeuro4"], ["https://tec.openplanner.team/stops/Bwatlbr1", "https://tec.openplanner.team/stops/Bwatlbr2"], ["https://tec.openplanner.team/stops/H5el112b", "https://tec.openplanner.team/stops/H5el116a"], ["https://tec.openplanner.team/stops/LThchar1", "https://tec.openplanner.team/stops/LThnouv1"], ["https://tec.openplanner.team/stops/LBUmara3", "https://tec.openplanner.team/stops/LBUrout1"], ["https://tec.openplanner.team/stops/Clbchar1", "https://tec.openplanner.team/stops/Clbhour2"], ["https://tec.openplanner.team/stops/LBvviem2", "https://tec.openplanner.team/stops/LBvviem3"], ["https://tec.openplanner.team/stops/LtHkirc3", "https://tec.openplanner.team/stops/LtHkirc4"], ["https://tec.openplanner.team/stops/H1mb130a", "https://tec.openplanner.team/stops/H1mb136a"], ["https://tec.openplanner.team/stops/LHDchar4", "https://tec.openplanner.team/stops/LLmeg--1"], ["https://tec.openplanner.team/stops/LBoegli1", "https://tec.openplanner.team/stops/X223acb"], ["https://tec.openplanner.team/stops/LWRcruc2", "https://tec.openplanner.team/stops/LWRpl--2"], ["https://tec.openplanner.team/stops/N103adb", "https://tec.openplanner.team/stops/N106afa"], ["https://tec.openplanner.team/stops/H1wa154a", "https://tec.openplanner.team/stops/H1wa158a"], ["https://tec.openplanner.team/stops/LPLcarr3", "https://tec.openplanner.team/stops/LPLcroi2"], ["https://tec.openplanner.team/stops/LBKmoes1", "https://tec.openplanner.team/stops/LOehart1"], ["https://tec.openplanner.team/stops/N243aaa", "https://tec.openplanner.team/stops/N243aea"], ["https://tec.openplanner.team/stops/LSCc39-2", "https://tec.openplanner.team/stops/LSCeg--2"], ["https://tec.openplanner.team/stops/LEMgren*", "https://tec.openplanner.team/stops/LPleclu2"], ["https://tec.openplanner.team/stops/X638aha", "https://tec.openplanner.team/stops/X638akb"], ["https://tec.openplanner.team/stops/LMAcime1", "https://tec.openplanner.team/stops/LMAptne2"], ["https://tec.openplanner.team/stops/N510ada", "https://tec.openplanner.team/stops/N510adb"], ["https://tec.openplanner.team/stops/Bsenbmc1", "https://tec.openplanner.team/stops/H2mg135a"], ["https://tec.openplanner.team/stops/H1eu102a", "https://tec.openplanner.team/stops/H1pa166b"], ["https://tec.openplanner.team/stops/Bplnfpa1", "https://tec.openplanner.team/stops/Clpalli1"], ["https://tec.openplanner.team/stops/H1bn113b", "https://tec.openplanner.team/stops/H1qg138c"], ["https://tec.openplanner.team/stops/Cbiferm2", "https://tec.openplanner.team/stops/Cbimonu2"], ["https://tec.openplanner.team/stops/LTEkl122", "https://tec.openplanner.team/stops/LTEziho1"], ["https://tec.openplanner.team/stops/Cjxegli2", "https://tec.openplanner.team/stops/Cjxthom2"], ["https://tec.openplanner.team/stops/X673aaa", "https://tec.openplanner.team/stops/X673abb"], ["https://tec.openplanner.team/stops/Bolgegl1", "https://tec.openplanner.team/stops/Bolgsha1"], ["https://tec.openplanner.team/stops/X773aja", "https://tec.openplanner.team/stops/X773ajb"], ["https://tec.openplanner.team/stops/N530ahb", "https://tec.openplanner.team/stops/N561aea"], ["https://tec.openplanner.team/stops/Cbfchla1", "https://tec.openplanner.team/stops/Cbfchla2"], ["https://tec.openplanner.team/stops/Llxec--1", "https://tec.openplanner.team/stops/LSAvieu1"], ["https://tec.openplanner.team/stops/N513atb", "https://tec.openplanner.team/stops/N513avb"], ["https://tec.openplanner.team/stops/Cctptsa1", "https://tec.openplanner.team/stops/Ccu6bra5"], ["https://tec.openplanner.team/stops/H1je216a", "https://tec.openplanner.team/stops/H1qu112b"], ["https://tec.openplanner.team/stops/H1je213b", "https://tec.openplanner.team/stops/H1je222b"], ["https://tec.openplanner.team/stops/H1og135a", "https://tec.openplanner.team/stops/H5wo124a"], ["https://tec.openplanner.team/stops/N531aja", "https://tec.openplanner.team/stops/N531aoa"], ["https://tec.openplanner.team/stops/H2sv215a", "https://tec.openplanner.team/stops/H2sv220b"], ["https://tec.openplanner.team/stops/LPReg--1", "https://tec.openplanner.team/stops/Lrofont*"], ["https://tec.openplanner.team/stops/N528acb", "https://tec.openplanner.team/stops/N528ada"], ["https://tec.openplanner.team/stops/H4am113a", "https://tec.openplanner.team/stops/H4an112b"], ["https://tec.openplanner.team/stops/Cmadeli2", "https://tec.openplanner.team/stops/Cmastfi2"], ["https://tec.openplanner.team/stops/Lchpniv1", "https://tec.openplanner.team/stops/Lchstat*"], ["https://tec.openplanner.team/stops/N535apa", "https://tec.openplanner.team/stops/N535apb"], ["https://tec.openplanner.team/stops/X801aya", "https://tec.openplanner.team/stops/X801ayb"], ["https://tec.openplanner.team/stops/Lpeprev2", "https://tec.openplanner.team/stops/Lpesart1"], ["https://tec.openplanner.team/stops/H1so135b", "https://tec.openplanner.team/stops/H1so135c"], ["https://tec.openplanner.team/stops/Ccivill1", "https://tec.openplanner.team/stops/Ccivill2"], ["https://tec.openplanner.team/stops/LHUdeni3", "https://tec.openplanner.team/stops/LHUfonc2"], ["https://tec.openplanner.team/stops/N510abb", "https://tec.openplanner.team/stops/N510acb"], ["https://tec.openplanner.team/stops/Bhengri2", "https://tec.openplanner.team/stops/Bvircsj1"], ["https://tec.openplanner.team/stops/Cgonvro1", "https://tec.openplanner.team/stops/Cgonvro3"], ["https://tec.openplanner.team/stops/X801cgb", "https://tec.openplanner.team/stops/X801cja"], ["https://tec.openplanner.team/stops/X747acb", "https://tec.openplanner.team/stops/X747afb"], ["https://tec.openplanner.team/stops/LOReg--1", "https://tec.openplanner.team/stops/LOReg--2"], ["https://tec.openplanner.team/stops/LaFbruc1", "https://tec.openplanner.team/stops/LhMwing2"], ["https://tec.openplanner.team/stops/H4pl117a", "https://tec.openplanner.team/stops/H4pl135a"], ["https://tec.openplanner.team/stops/Bbstfch1", "https://tec.openplanner.team/stops/Bbstfch2"], ["https://tec.openplanner.team/stops/X663ara", "https://tec.openplanner.team/stops/X664arb"], ["https://tec.openplanner.team/stops/X623aib", "https://tec.openplanner.team/stops/X624aab"], ["https://tec.openplanner.team/stops/Bgrmfga2", "https://tec.openplanner.team/stops/Bgrmpsn2"], ["https://tec.openplanner.team/stops/Cfaterg3", "https://tec.openplanner.team/stops/Crs74em4"], ["https://tec.openplanner.team/stops/N565afa", "https://tec.openplanner.team/stops/N565aka"], ["https://tec.openplanner.team/stops/Cpibois1", "https://tec.openplanner.team/stops/Cpictra1"], ["https://tec.openplanner.team/stops/LNEtonv1", "https://tec.openplanner.team/stops/LOLfoss2"], ["https://tec.openplanner.team/stops/N573acb", "https://tec.openplanner.team/stops/N573adb"], ["https://tec.openplanner.team/stops/Bjcljau1", "https://tec.openplanner.team/stops/Bjdsbro1"], ["https://tec.openplanner.team/stops/N543cqa", "https://tec.openplanner.team/stops/N543cqb"], ["https://tec.openplanner.team/stops/X608arb", "https://tec.openplanner.team/stops/X608asb"], ["https://tec.openplanner.team/stops/Lghberl1", "https://tec.openplanner.team/stops/Ljecocc1"], ["https://tec.openplanner.team/stops/H4ar100b", "https://tec.openplanner.team/stops/H4ar173a"], ["https://tec.openplanner.team/stops/LbTaral2", "https://tec.openplanner.team/stops/LbTgeme2"], ["https://tec.openplanner.team/stops/LAumari1", "https://tec.openplanner.team/stops/LWRtroi1"], ["https://tec.openplanner.team/stops/LSZclem1", "https://tec.openplanner.team/stops/LSZnive2"], ["https://tec.openplanner.team/stops/LAWaube1", "https://tec.openplanner.team/stops/LAWcite2"], ["https://tec.openplanner.team/stops/LkAsonn2", "https://tec.openplanner.team/stops/LmHperl2"], ["https://tec.openplanner.team/stops/H3so159a", "https://tec.openplanner.team/stops/H3so159b"], ["https://tec.openplanner.team/stops/H1bo108a", "https://tec.openplanner.team/stops/H1bo112a"], ["https://tec.openplanner.team/stops/LVEdTEC1", "https://tec.openplanner.team/stops/LVEdTEC2"], ["https://tec.openplanner.team/stops/Becepon1", "https://tec.openplanner.team/stops/Becepon2"], ["https://tec.openplanner.team/stops/H2ca101a", "https://tec.openplanner.team/stops/H2ca101b"], ["https://tec.openplanner.team/stops/N515akb", "https://tec.openplanner.team/stops/N515akc"], ["https://tec.openplanner.team/stops/LHrbast2", "https://tec.openplanner.team/stops/LHrchez2"], ["https://tec.openplanner.team/stops/X775aia", "https://tec.openplanner.team/stops/X775aib"], ["https://tec.openplanner.team/stops/N162aab", "https://tec.openplanner.team/stops/NC28agb"], ["https://tec.openplanner.team/stops/H4co110b", "https://tec.openplanner.team/stops/H4co141a"], ["https://tec.openplanner.team/stops/LSoeg--2", "https://tec.openplanner.team/stops/LtEnach1"], ["https://tec.openplanner.team/stops/LbThau11", "https://tec.openplanner.team/stops/LsHfrie2"], ["https://tec.openplanner.team/stops/Bmsgaxp2", "https://tec.openplanner.team/stops/Bmsgrco1"], ["https://tec.openplanner.team/stops/H4do106a", "https://tec.openplanner.team/stops/H4mo195b"], ["https://tec.openplanner.team/stops/Cgocalv1", "https://tec.openplanner.team/stops/Cgocalv6"], ["https://tec.openplanner.team/stops/LlgCATH1", "https://tec.openplanner.team/stops/LlgPTAV4"], ["https://tec.openplanner.team/stops/Llgbois2", "https://tec.openplanner.team/stops/Llgverg1"], ["https://tec.openplanner.team/stops/LRRcarr1", "https://tec.openplanner.team/stops/LRRlimi2"], ["https://tec.openplanner.team/stops/H4bc102a", "https://tec.openplanner.team/stops/H4wr175a"], ["https://tec.openplanner.team/stops/Cwfghis2", "https://tec.openplanner.team/stops/Cwfmonu2"], ["https://tec.openplanner.team/stops/LMOcorn4", "https://tec.openplanner.team/stops/LMOf35-1"], ["https://tec.openplanner.team/stops/Cmgbrou2", "https://tec.openplanner.team/stops/Cmghay1"], ["https://tec.openplanner.team/stops/N230aba", "https://tec.openplanner.team/stops/N230abb"], ["https://tec.openplanner.team/stops/LCSfagn1", "https://tec.openplanner.team/stops/LCShoux1"], ["https://tec.openplanner.team/stops/Cobcent1", "https://tec.openplanner.team/stops/Cobmven1"], ["https://tec.openplanner.team/stops/Ltichif2", "https://tec.openplanner.team/stops/Ltipass1"], ["https://tec.openplanner.team/stops/H4er122a", "https://tec.openplanner.team/stops/H4gu109a"], ["https://tec.openplanner.team/stops/LMYchpl2", "https://tec.openplanner.team/stops/LMYlieg2"], ["https://tec.openplanner.team/stops/Bcrbgro1", "https://tec.openplanner.team/stops/Bcrbgro2"], ["https://tec.openplanner.team/stops/N543bab", "https://tec.openplanner.team/stops/N543bbc"], ["https://tec.openplanner.team/stops/Cmacoll1", "https://tec.openplanner.team/stops/Cmapeet1"], ["https://tec.openplanner.team/stops/Bvirfpo2", "https://tec.openplanner.team/stops/Bvirgar1"], ["https://tec.openplanner.team/stops/Cjudaxi2", "https://tec.openplanner.team/stops/Cjudefi2"], ["https://tec.openplanner.team/stops/N521asd", "https://tec.openplanner.team/stops/N521ava"], ["https://tec.openplanner.team/stops/Bmrshan2", "https://tec.openplanner.team/stops/Bmrswag2"], ["https://tec.openplanner.team/stops/LOltill1", "https://tec.openplanner.team/stops/LOlvill2"], ["https://tec.openplanner.team/stops/N509aja", "https://tec.openplanner.team/stops/N509bda"], ["https://tec.openplanner.team/stops/Bsrgm101", "https://tec.openplanner.team/stops/Bsrgm102"], ["https://tec.openplanner.team/stops/LFslign1", "https://tec.openplanner.team/stops/LFsphar1"], ["https://tec.openplanner.team/stops/LSLhale1", "https://tec.openplanner.team/stops/LSLvaux1"], ["https://tec.openplanner.team/stops/N524aaa", "https://tec.openplanner.team/stops/N525aja"], ["https://tec.openplanner.team/stops/H1gh148a", "https://tec.openplanner.team/stops/H1gh165c"], ["https://tec.openplanner.team/stops/X636aia", "https://tec.openplanner.team/stops/X636bab"], ["https://tec.openplanner.team/stops/N519ala", "https://tec.openplanner.team/stops/N519alb"], ["https://tec.openplanner.team/stops/LmDkirc1", "https://tec.openplanner.team/stops/LmDwei32"], ["https://tec.openplanner.team/stops/Bwavfol1", "https://tec.openplanner.team/stops/Bwavlep1"], ["https://tec.openplanner.team/stops/Cflchap2", "https://tec.openplanner.team/stops/Cflchap3"], ["https://tec.openplanner.team/stops/Ccpblpo2", "https://tec.openplanner.team/stops/H2ch112b"], ["https://tec.openplanner.team/stops/X999ama", "https://tec.openplanner.team/stops/X999amb"], ["https://tec.openplanner.team/stops/Cjuchli1", "https://tec.openplanner.team/stops/Cjumall2"], ["https://tec.openplanner.team/stops/N511aib", "https://tec.openplanner.team/stops/N511alc"], ["https://tec.openplanner.team/stops/LWAor--2", "https://tec.openplanner.team/stops/LWAvand1"], ["https://tec.openplanner.team/stops/H1bo145b", "https://tec.openplanner.team/stops/H1ho123b"], ["https://tec.openplanner.team/stops/Bjodppe1", "https://tec.openplanner.team/stops/Bjodpvi1"], ["https://tec.openplanner.team/stops/LEHhaut1", "https://tec.openplanner.team/stops/LEHmarc1"], ["https://tec.openplanner.team/stops/LOdcris1", "https://tec.openplanner.team/stops/LVleg--1"], ["https://tec.openplanner.team/stops/H1mv241a", "https://tec.openplanner.team/stops/H1nv325b"], ["https://tec.openplanner.team/stops/H1nm138b", "https://tec.openplanner.team/stops/H1si157b"], ["https://tec.openplanner.team/stops/Bitrcha1", "https://tec.openplanner.team/stops/Bitrgnt1"], ["https://tec.openplanner.team/stops/Cbupla2", "https://tec.openplanner.team/stops/Cbuplac3"], ["https://tec.openplanner.team/stops/LSTcomm1", "https://tec.openplanner.team/stops/LSTcomm2"], ["https://tec.openplanner.team/stops/X601dba", "https://tec.openplanner.team/stops/X626abb"], ["https://tec.openplanner.team/stops/X911aia", "https://tec.openplanner.team/stops/X911arb"], ["https://tec.openplanner.team/stops/Crewaba2", "https://tec.openplanner.team/stops/Crewaha2"], ["https://tec.openplanner.team/stops/Lmogerm1", "https://tec.openplanner.team/stops/Lmolama1"], ["https://tec.openplanner.team/stops/Ljuplpr1", "https://tec.openplanner.team/stops/Ljuplpr2"], ["https://tec.openplanner.team/stops/X774ahb", "https://tec.openplanner.team/stops/X775aia"], ["https://tec.openplanner.team/stops/N501kba", "https://tec.openplanner.team/stops/N501kbb"], ["https://tec.openplanner.team/stops/Crchutt2", "https://tec.openplanner.team/stops/Crcrwas2"], ["https://tec.openplanner.team/stops/LATlena1", "https://tec.openplanner.team/stops/LATlena2"], ["https://tec.openplanner.team/stops/X615awb", "https://tec.openplanner.team/stops/X615bgb"], ["https://tec.openplanner.team/stops/LeI39--3", "https://tec.openplanner.team/stops/LeIkirr1"], ["https://tec.openplanner.team/stops/Canfief2", "https://tec.openplanner.team/stops/Canjonc1"], ["https://tec.openplanner.team/stops/Borbode1", "https://tec.openplanner.team/stops/Btslpic5"], ["https://tec.openplanner.team/stops/X615aha", "https://tec.openplanner.team/stops/X615aib"], ["https://tec.openplanner.team/stops/Bwatbce2", "https://tec.openplanner.team/stops/Bwatclo1"], ["https://tec.openplanner.team/stops/Lbrfune*", "https://tec.openplanner.team/stops/Ljulieg1"], ["https://tec.openplanner.team/stops/Bgercen2", "https://tec.openplanner.team/stops/NB33afa"], ["https://tec.openplanner.team/stops/Ctrstro1", "https://tec.openplanner.team/stops/Ctrterm2"], ["https://tec.openplanner.team/stops/X601bcb", "https://tec.openplanner.team/stops/X601bea"], ["https://tec.openplanner.team/stops/N340acc", "https://tec.openplanner.team/stops/N340adb"], ["https://tec.openplanner.team/stops/H2ha136a", "https://tec.openplanner.team/stops/H2ha136c"], ["https://tec.openplanner.team/stops/N522aha", "https://tec.openplanner.team/stops/N522aia"], ["https://tec.openplanner.team/stops/X765afa", "https://tec.openplanner.team/stops/X765aga"], ["https://tec.openplanner.team/stops/H4fl113a", "https://tec.openplanner.team/stops/H4fl114a"], ["https://tec.openplanner.team/stops/NL78abb", "https://tec.openplanner.team/stops/NL78ahb"], ["https://tec.openplanner.team/stops/LSOcime1", "https://tec.openplanner.team/stops/LSOferr6"], ["https://tec.openplanner.team/stops/X634aca", "https://tec.openplanner.team/stops/X634ala"], ["https://tec.openplanner.team/stops/Bbeabme2", "https://tec.openplanner.team/stops/Bbeaneu4"], ["https://tec.openplanner.team/stops/LaAbush*", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://tec.openplanner.team/stops/LGMvoue1", "https://tec.openplanner.team/stops/LGMvoue2"], ["https://tec.openplanner.team/stops/N232afa", "https://tec.openplanner.team/stops/N232aga"], ["https://tec.openplanner.team/stops/X818aga", "https://tec.openplanner.team/stops/X822ama"], ["https://tec.openplanner.team/stops/Canrtth1", "https://tec.openplanner.team/stops/Canrtth2"], ["https://tec.openplanner.team/stops/H1mb130b", "https://tec.openplanner.team/stops/H1mb136a"], ["https://tec.openplanner.team/stops/X768aba", "https://tec.openplanner.team/stops/X768acb"], ["https://tec.openplanner.team/stops/LPLc49-1", "https://tec.openplanner.team/stops/LPLc65-1"], ["https://tec.openplanner.team/stops/Llmdeba1", "https://tec.openplanner.team/stops/Lpecroi1"], ["https://tec.openplanner.team/stops/H2an109a", "https://tec.openplanner.team/stops/H2ml110a"], ["https://tec.openplanner.team/stops/Bbsicul1", "https://tec.openplanner.team/stops/Bbsihau2"], ["https://tec.openplanner.team/stops/Ljerobi1", "https://tec.openplanner.team/stops/Ljerobi2"], ["https://tec.openplanner.team/stops/Louhauf1", "https://tec.openplanner.team/stops/Louhauf2"], ["https://tec.openplanner.team/stops/H4av103a", "https://tec.openplanner.team/stops/H4av105b"], ["https://tec.openplanner.team/stops/Llglefe2", "https://tec.openplanner.team/stops/Llgwild6"], ["https://tec.openplanner.team/stops/Blanath1", "https://tec.openplanner.team/stops/Btiegma1"], ["https://tec.openplanner.team/stops/Blsmvan1", "https://tec.openplanner.team/stops/Bracrpe2"], ["https://tec.openplanner.team/stops/LHChoek4", "https://tec.openplanner.team/stops/LHChoof3"], ["https://tec.openplanner.team/stops/H1hc126b", "https://tec.openplanner.team/stops/H1po137a"], ["https://tec.openplanner.team/stops/H5rx114b", "https://tec.openplanner.team/stops/H5rx115a"], ["https://tec.openplanner.team/stops/N106aga", "https://tec.openplanner.team/stops/N106agb"], ["https://tec.openplanner.team/stops/X806aha", "https://tec.openplanner.team/stops/X806ahb"], ["https://tec.openplanner.team/stops/LrEkreu1", "https://tec.openplanner.team/stops/LrErauw2"], ["https://tec.openplanner.team/stops/LREairp1", "https://tec.openplanner.team/stops/LREraph1"], ["https://tec.openplanner.team/stops/H1by101b", "https://tec.openplanner.team/stops/H1by102a"], ["https://tec.openplanner.team/stops/X948apa", "https://tec.openplanner.team/stops/X948apb"], ["https://tec.openplanner.team/stops/Bhaless2", "https://tec.openplanner.team/stops/Bhalomo2"], ["https://tec.openplanner.team/stops/LSHfief2", "https://tec.openplanner.team/stops/LTRcarr1"], ["https://tec.openplanner.team/stops/H4ch113a", "https://tec.openplanner.team/stops/H4vx363b"], ["https://tec.openplanner.team/stops/H1pa105b", "https://tec.openplanner.team/stops/H1qu108b"], ["https://tec.openplanner.team/stops/LHTeg--1", "https://tec.openplanner.team/stops/LHTeg--2"], ["https://tec.openplanner.team/stops/X903aea", "https://tec.openplanner.team/stops/X943aaa"], ["https://tec.openplanner.team/stops/Bhalkrk1", "https://tec.openplanner.team/stops/Blkbbeu2"], ["https://tec.openplanner.team/stops/LBVclig2", "https://tec.openplanner.team/stops/LBVronx2"], ["https://tec.openplanner.team/stops/H4ss155a", "https://tec.openplanner.team/stops/H4ss158a"], ["https://tec.openplanner.team/stops/H4ga156a", "https://tec.openplanner.team/stops/H4ga414a"], ["https://tec.openplanner.team/stops/X652afb", "https://tec.openplanner.team/stops/X652aja"], ["https://tec.openplanner.team/stops/N141ahb", "https://tec.openplanner.team/stops/N141aib"], ["https://tec.openplanner.team/stops/Cflchel3", "https://tec.openplanner.team/stops/Cflchel5"], ["https://tec.openplanner.team/stops/N501ixd", "https://tec.openplanner.team/stops/N501jfa"], ["https://tec.openplanner.team/stops/NC02abb", "https://tec.openplanner.team/stops/NC24aib"], ["https://tec.openplanner.team/stops/Ldicorb2", "https://tec.openplanner.team/stops/Ldidefo2"], ["https://tec.openplanner.team/stops/H1pe130b", "https://tec.openplanner.team/stops/H1ry134b"], ["https://tec.openplanner.team/stops/LlNkirc1", "https://tec.openplanner.team/stops/LlNlont2"], ["https://tec.openplanner.team/stops/Bbonbcr2", "https://tec.openplanner.team/stops/Bboncha1"], ["https://tec.openplanner.team/stops/H4mt221a", "https://tec.openplanner.team/stops/H4mt222a"], ["https://tec.openplanner.team/stops/Bjancha1", "https://tec.openplanner.team/stops/Bolppsn1"], ["https://tec.openplanner.team/stops/LBoegli1", "https://tec.openplanner.team/stops/LOCerzy2"], ["https://tec.openplanner.team/stops/X636aoa", "https://tec.openplanner.team/stops/X636apa"], ["https://tec.openplanner.team/stops/N232cab", "https://tec.openplanner.team/stops/N232cda"], ["https://tec.openplanner.team/stops/X633ada", "https://tec.openplanner.team/stops/X633ala"], ["https://tec.openplanner.team/stops/Bglicsm1", "https://tec.openplanner.team/stops/Bglicsm2"], ["https://tec.openplanner.team/stops/X754abb", "https://tec.openplanner.team/stops/X754aca"], ["https://tec.openplanner.team/stops/LTB105-1", "https://tec.openplanner.team/stops/X714acb"], ["https://tec.openplanner.team/stops/H1ha190a", "https://tec.openplanner.team/stops/H1ha192b"], ["https://tec.openplanner.team/stops/LAYathe1", "https://tec.openplanner.team/stops/LAYpl--3"], ["https://tec.openplanner.team/stops/X783aba", "https://tec.openplanner.team/stops/X783aca"], ["https://tec.openplanner.team/stops/X925ahb", "https://tec.openplanner.team/stops/X925ala"], ["https://tec.openplanner.team/stops/Bbaucba2", "https://tec.openplanner.team/stops/Bnivpri2"], ["https://tec.openplanner.team/stops/Caih1632", "https://tec.openplanner.team/stops/Cairous1"], ["https://tec.openplanner.team/stops/H4do105a", "https://tec.openplanner.team/stops/H4do106b"], ["https://tec.openplanner.team/stops/N538acb", "https://tec.openplanner.team/stops/N538apb"], ["https://tec.openplanner.team/stops/X880aga", "https://tec.openplanner.team/stops/X880aha"], ["https://tec.openplanner.team/stops/Lprmoin2", "https://tec.openplanner.team/stops/Lprorem1"], ["https://tec.openplanner.team/stops/H1ch107a", "https://tec.openplanner.team/stops/H4ld123a"], ["https://tec.openplanner.team/stops/Crebien1", "https://tec.openplanner.team/stops/Crebien3"], ["https://tec.openplanner.team/stops/Bpercsp2", "https://tec.openplanner.team/stops/Bpermon4"], ["https://tec.openplanner.team/stops/LOnec--2", "https://tec.openplanner.team/stops/LXopier2"], ["https://tec.openplanner.team/stops/Blthbss2", "https://tec.openplanner.team/stops/Bmlnmbo1"], ["https://tec.openplanner.team/stops/N507aac", "https://tec.openplanner.team/stops/N507abb"], ["https://tec.openplanner.team/stops/LMgberw2", "https://tec.openplanner.team/stops/LVItcm-1"], ["https://tec.openplanner.team/stops/LJedonc2", "https://tec.openplanner.team/stops/LJedonc4"], ["https://tec.openplanner.team/stops/Blhusor1", "https://tec.openplanner.team/stops/Brsrfen2"], ["https://tec.openplanner.team/stops/X608aoa", "https://tec.openplanner.team/stops/X608ata"], ["https://tec.openplanner.team/stops/NC14ana", "https://tec.openplanner.team/stops/NC14anb"], ["https://tec.openplanner.team/stops/Cmlcazi1", "https://tec.openplanner.team/stops/Cmlcazi2"], ["https://tec.openplanner.team/stops/Cpthaud1", "https://tec.openplanner.team/stops/Cpthaud2"], ["https://tec.openplanner.team/stops/LBPunic2", "https://tec.openplanner.team/stops/LGLc12-3"], ["https://tec.openplanner.team/stops/N125aaa", "https://tec.openplanner.team/stops/N125aac"], ["https://tec.openplanner.team/stops/N505amb", "https://tec.openplanner.team/stops/N512aua"], ["https://tec.openplanner.team/stops/Ccurtra1", "https://tec.openplanner.team/stops/Ccurtra2"], ["https://tec.openplanner.team/stops/Cgrchea2", "https://tec.openplanner.team/stops/Cjochap1"], ["https://tec.openplanner.team/stops/N501aay", "https://tec.openplanner.team/stops/N501esb"], ["https://tec.openplanner.team/stops/X937aeb", "https://tec.openplanner.team/stops/X937akb"], ["https://tec.openplanner.team/stops/H1hr121b", "https://tec.openplanner.team/stops/H1hr121d"], ["https://tec.openplanner.team/stops/X730aaa", "https://tec.openplanner.team/stops/X731aia"], ["https://tec.openplanner.team/stops/Chhlori1", "https://tec.openplanner.team/stops/Cmx3arb1"], ["https://tec.openplanner.team/stops/X659ada", "https://tec.openplanner.team/stops/X659adc"], ["https://tec.openplanner.team/stops/X943ada", "https://tec.openplanner.team/stops/X943aea"], ["https://tec.openplanner.team/stops/LRGchap2", "https://tec.openplanner.team/stops/LRGmoul1"], ["https://tec.openplanner.team/stops/X750bja", "https://tec.openplanner.team/stops/X750bkb"], ["https://tec.openplanner.team/stops/Bgnvpap1", "https://tec.openplanner.team/stops/Brsrpar1"], ["https://tec.openplanner.team/stops/N534awc", "https://tec.openplanner.team/stops/N534cbh"], ["https://tec.openplanner.team/stops/X630abb", "https://tec.openplanner.team/stops/X631ada"], ["https://tec.openplanner.team/stops/N343aoa", "https://tec.openplanner.team/stops/N343aob"], ["https://tec.openplanner.team/stops/Bblaeur1", "https://tec.openplanner.team/stops/Bblamsj3"], ["https://tec.openplanner.team/stops/Bbougbl2", "https://tec.openplanner.team/stops/Btancre2"], ["https://tec.openplanner.team/stops/LBHhuyn1", "https://tec.openplanner.team/stops/LBHinva1"], ["https://tec.openplanner.team/stops/N553aka", "https://tec.openplanner.team/stops/N553ala"], ["https://tec.openplanner.team/stops/Bmlnegl4", "https://tec.openplanner.team/stops/Bmlngvi2"], ["https://tec.openplanner.team/stops/N141aha", "https://tec.openplanner.team/stops/N141ama"], ["https://tec.openplanner.team/stops/H2hp123d", "https://tec.openplanner.team/stops/H2hp261a"], ["https://tec.openplanner.team/stops/X801apb", "https://tec.openplanner.team/stops/X801avb"], ["https://tec.openplanner.team/stops/Cgxmorg1", "https://tec.openplanner.team/stops/Cgxptt1"], ["https://tec.openplanner.team/stops/Cgyhaie1", "https://tec.openplanner.team/stops/Cgymest2"], ["https://tec.openplanner.team/stops/LSGcolo2", "https://tec.openplanner.team/stops/LSkwarf4"], ["https://tec.openplanner.team/stops/H3bo101a", "https://tec.openplanner.team/stops/H3bo102b"], ["https://tec.openplanner.team/stops/LmD27--2", "https://tec.openplanner.team/stops/LwLkirc2"], ["https://tec.openplanner.team/stops/LaMhe421", "https://tec.openplanner.team/stops/LaMpost1"], ["https://tec.openplanner.team/stops/Lgrclas2", "https://tec.openplanner.team/stops/Lgrlimi4"], ["https://tec.openplanner.team/stops/LeUoe542", "https://tec.openplanner.team/stops/LeUwais2"], ["https://tec.openplanner.team/stops/H4ep130a", "https://tec.openplanner.team/stops/H4ep130b"], ["https://tec.openplanner.team/stops/N106aja", "https://tec.openplanner.team/stops/N106ajb"], ["https://tec.openplanner.team/stops/X713aha", "https://tec.openplanner.team/stops/X713ahb"], ["https://tec.openplanner.team/stops/N501lzb", "https://tec.openplanner.team/stops/N501lzy"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lhubouq1"], ["https://tec.openplanner.team/stops/X937abb", "https://tec.openplanner.team/stops/X938ada"], ["https://tec.openplanner.team/stops/LLrhest2", "https://tec.openplanner.team/stops/LTHturo4"], ["https://tec.openplanner.team/stops/H3th130b", "https://tec.openplanner.team/stops/H3th133a"], ["https://tec.openplanner.team/stops/H4mo146b", "https://tec.openplanner.team/stops/H4mo157a"], ["https://tec.openplanner.team/stops/Bmrleco1", "https://tec.openplanner.team/stops/Bmrlhan1"], ["https://tec.openplanner.team/stops/H1po154a", "https://tec.openplanner.team/stops/H1tl120b"], ["https://tec.openplanner.team/stops/H4hx115a", "https://tec.openplanner.team/stops/H4wa155a"], ["https://tec.openplanner.team/stops/N343acb", "https://tec.openplanner.team/stops/N343ala"], ["https://tec.openplanner.team/stops/N501ihb", "https://tec.openplanner.team/stops/N501ihy"], ["https://tec.openplanner.team/stops/N524abb", "https://tec.openplanner.team/stops/N524afb"], ["https://tec.openplanner.team/stops/LaUkirc*", "https://tec.openplanner.team/stops/LaUn1--3"], ["https://tec.openplanner.team/stops/H4og208a", "https://tec.openplanner.team/stops/H4og213a"], ["https://tec.openplanner.team/stops/Clb4bra2", "https://tec.openplanner.team/stops/Clbecol2"], ["https://tec.openplanner.team/stops/X664aia", "https://tec.openplanner.team/stops/X664akb"], ["https://tec.openplanner.team/stops/LAUvdab1", "https://tec.openplanner.team/stops/LWRtroi1"], ["https://tec.openplanner.team/stops/X318aca", "https://tec.openplanner.team/stops/X318ada"], ["https://tec.openplanner.team/stops/LBImili2", "https://tec.openplanner.team/stops/LBItnt-*"], ["https://tec.openplanner.team/stops/Cgdcent2", "https://tec.openplanner.team/stops/H1be103a"], ["https://tec.openplanner.team/stops/X721anb", "https://tec.openplanner.team/stops/X721atb"], ["https://tec.openplanner.team/stops/LVleg--1", "https://tec.openplanner.team/stops/LVleg--3"], ["https://tec.openplanner.team/stops/Lpeeg--1", "https://tec.openplanner.team/stops/Lpevesd2"], ["https://tec.openplanner.team/stops/Cgycorv1", "https://tec.openplanner.team/stops/Cgywaut2"], ["https://tec.openplanner.team/stops/X882aba", "https://tec.openplanner.team/stops/X882amd"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LCxchal1"], ["https://tec.openplanner.team/stops/Bhmmtou1", "https://tec.openplanner.team/stops/Btlgbro1"], ["https://tec.openplanner.team/stops/X811amb", "https://tec.openplanner.team/stops/X811aqb"], ["https://tec.openplanner.team/stops/LBPboir1", "https://tec.openplanner.team/stops/LBPboir2"], ["https://tec.openplanner.team/stops/H4av107b", "https://tec.openplanner.team/stops/H4ss154a"], ["https://tec.openplanner.team/stops/Bcerpco1", "https://tec.openplanner.team/stops/Bcerpco2"], ["https://tec.openplanner.team/stops/LeLzost1", "https://tec.openplanner.team/stops/LnIfrie1"], ["https://tec.openplanner.team/stops/H2bh109a", "https://tec.openplanner.team/stops/H2bh109b"], ["https://tec.openplanner.team/stops/LtHfrie2", "https://tec.openplanner.team/stops/LtHkreu4"], ["https://tec.openplanner.team/stops/Louduna*", "https://tec.openplanner.team/stops/Louhauf1"], ["https://tec.openplanner.team/stops/Cgxcite1", "https://tec.openplanner.team/stops/Cgxcite2"], ["https://tec.openplanner.team/stops/X912abb", "https://tec.openplanner.team/stops/X912akb"], ["https://tec.openplanner.team/stops/Blingar1", "https://tec.openplanner.team/stops/Bracrpe1"], ["https://tec.openplanner.team/stops/H1tt106a", "https://tec.openplanner.team/stops/H1tt109a"], ["https://tec.openplanner.team/stops/LOuouff1", "https://tec.openplanner.team/stops/X982ada"], ["https://tec.openplanner.team/stops/LBTxhen4", "https://tec.openplanner.team/stops/LHEelva2"], ["https://tec.openplanner.team/stops/Btslpbr1", "https://tec.openplanner.team/stops/Btslpbr2"], ["https://tec.openplanner.team/stops/LnUhohe1", "https://tec.openplanner.team/stops/LnUhohe2"], ["https://tec.openplanner.team/stops/H4ty274a", "https://tec.openplanner.team/stops/H4ty306a"], ["https://tec.openplanner.team/stops/Baudvdr1", "https://tec.openplanner.team/stops/Baudvdr2"], ["https://tec.openplanner.team/stops/X951acb", "https://tec.openplanner.team/stops/X985aab"], ["https://tec.openplanner.team/stops/LHdfays2", "https://tec.openplanner.team/stops/LVthest4"], ["https://tec.openplanner.team/stops/H2le151a", "https://tec.openplanner.team/stops/H2le176b"], ["https://tec.openplanner.team/stops/N338aab", "https://tec.openplanner.team/stops/N338aeb"], ["https://tec.openplanner.team/stops/H4ty272b", "https://tec.openplanner.team/stops/H4ty313b"], ["https://tec.openplanner.team/stops/N501izb", "https://tec.openplanner.team/stops/N501jca"], ["https://tec.openplanner.team/stops/LHUdeni4", "https://tec.openplanner.team/stops/LHUgodi1"], ["https://tec.openplanner.team/stops/LFocent2", "https://tec.openplanner.team/stops/LJAverv2"], ["https://tec.openplanner.team/stops/H1au100a", "https://tec.openplanner.team/stops/H1au100b"], ["https://tec.openplanner.team/stops/Lra4bra1", "https://tec.openplanner.team/stops/Lra4bra2"], ["https://tec.openplanner.team/stops/N368aab", "https://tec.openplanner.team/stops/N368afb"], ["https://tec.openplanner.team/stops/LMOchpl1", "https://tec.openplanner.team/stops/LMOcorn1"], ["https://tec.openplanner.team/stops/Lalmakr1", "https://tec.openplanner.team/stops/Lanyser1"], ["https://tec.openplanner.team/stops/LVLchem1", "https://tec.openplanner.team/stops/LVLhalb3"], ["https://tec.openplanner.team/stops/LATdieu1", "https://tec.openplanner.team/stops/LHUfali4"], ["https://tec.openplanner.team/stops/Bcharce1", "https://tec.openplanner.team/stops/Bvilcim1"], ["https://tec.openplanner.team/stops/H5pe153b", "https://tec.openplanner.team/stops/H5pe176a"], ["https://tec.openplanner.team/stops/Ccyga4", "https://tec.openplanner.team/stops/Ccygara1"], ["https://tec.openplanner.team/stops/Bitreco1", "https://tec.openplanner.team/stops/Bitrmon2"], ["https://tec.openplanner.team/stops/Ljumesa1", "https://tec.openplanner.team/stops/Ljupiet2"], ["https://tec.openplanner.team/stops/LbTgeme2", "https://tec.openplanner.team/stops/LwYboui2"], ["https://tec.openplanner.team/stops/Ladjaur1", "https://tec.openplanner.team/stops/Ladpire2"], ["https://tec.openplanner.team/stops/N529aja", "https://tec.openplanner.team/stops/N529aka"], ["https://tec.openplanner.team/stops/H1wa145b", "https://tec.openplanner.team/stops/H1wa153a"], ["https://tec.openplanner.team/stops/LoDmuhl1", "https://tec.openplanner.team/stops/LoDschu1"], ["https://tec.openplanner.team/stops/Brebblo2", "https://tec.openplanner.team/stops/Brebpca2"], ["https://tec.openplanner.team/stops/LSGec--2", "https://tec.openplanner.team/stops/LSGeg--2"], ["https://tec.openplanner.team/stops/LHNland2", "https://tec.openplanner.team/stops/LHNtonn1"], ["https://tec.openplanner.team/stops/LBNeu711", "https://tec.openplanner.team/stops/LBNover1"], ["https://tec.openplanner.team/stops/N538aca", "https://tec.openplanner.team/stops/N538aia"], ["https://tec.openplanner.team/stops/N519acb", "https://tec.openplanner.team/stops/N519agb"], ["https://tec.openplanner.team/stops/N353afb", "https://tec.openplanner.team/stops/N353afc"], ["https://tec.openplanner.team/stops/H1ho122b", "https://tec.openplanner.team/stops/H1ho136b"], ["https://tec.openplanner.team/stops/Cctbois3", "https://tec.openplanner.team/stops/Cctlimi1"], ["https://tec.openplanner.team/stops/Llgjoie3", "https://tec.openplanner.team/stops/Llgrain2"], ["https://tec.openplanner.team/stops/LgRha212", "https://tec.openplanner.team/stops/LgRzent2"], ["https://tec.openplanner.team/stops/Lhrgall1", "https://tec.openplanner.team/stops/Lhrgall2"], ["https://tec.openplanner.team/stops/X910acb", "https://tec.openplanner.team/stops/X910aeb"], ["https://tec.openplanner.team/stops/Bmlnbpr1", "https://tec.openplanner.team/stops/Bmlnmbo1"], ["https://tec.openplanner.team/stops/Cdacolu1", "https://tec.openplanner.team/stops/CMsacm1"], ["https://tec.openplanner.team/stops/Cctbinc2", "https://tec.openplanner.team/stops/NC44aea"], ["https://tec.openplanner.team/stops/X718agb", "https://tec.openplanner.team/stops/X718aha"], ["https://tec.openplanner.team/stops/LmNha151", "https://tec.openplanner.team/stops/LmNha222"], ["https://tec.openplanner.team/stops/N527afa", "https://tec.openplanner.team/stops/N527afb"], ["https://tec.openplanner.team/stops/X822aia", "https://tec.openplanner.team/stops/X822aib"], ["https://tec.openplanner.team/stops/X757aic", "https://tec.openplanner.team/stops/X757akb"], ["https://tec.openplanner.team/stops/H1si169b", "https://tec.openplanner.team/stops/H1vt196a"], ["https://tec.openplanner.team/stops/Clbbonn3", "https://tec.openplanner.team/stops/Clbbonn4"], ["https://tec.openplanner.team/stops/Canegbr1", "https://tec.openplanner.team/stops/Canlemo1"], ["https://tec.openplanner.team/stops/LjeGRPMA", "https://tec.openplanner.team/stops/Ljelamb2"], ["https://tec.openplanner.team/stops/Brixaug2", "https://tec.openplanner.team/stops/Brixwav3"], ["https://tec.openplanner.team/stops/LAmsart2", "https://tec.openplanner.team/stops/LAmvent2"], ["https://tec.openplanner.team/stops/X681aca", "https://tec.openplanner.team/stops/X695aea"], ["https://tec.openplanner.team/stops/N529afb", "https://tec.openplanner.team/stops/N576amb"], ["https://tec.openplanner.team/stops/Btubind2", "https://tec.openplanner.team/stops/Btubmon1"], ["https://tec.openplanner.team/stops/Brsrber2", "https://tec.openplanner.team/stops/Brsrpch2"], ["https://tec.openplanner.team/stops/X897aab", "https://tec.openplanner.team/stops/X898ahb"], ["https://tec.openplanner.team/stops/Cculgeo1", "https://tec.openplanner.team/stops/Ccuwil1"], ["https://tec.openplanner.team/stops/LLMcouv2", "https://tec.openplanner.team/stops/LThpoli2"], ["https://tec.openplanner.team/stops/X882aab", "https://tec.openplanner.team/stops/X882adb"], ["https://tec.openplanner.team/stops/Cragill1", "https://tec.openplanner.team/stops/Crajasm2"], ["https://tec.openplanner.team/stops/H1ro130a", "https://tec.openplanner.team/stops/H1ro135b"], ["https://tec.openplanner.team/stops/Bhalvel1", "https://tec.openplanner.team/stops/Bhalvel2"], ["https://tec.openplanner.team/stops/N505aja", "https://tec.openplanner.team/stops/N505aka"], ["https://tec.openplanner.team/stops/X728adb", "https://tec.openplanner.team/stops/X729ada"], ["https://tec.openplanner.team/stops/N521ajb", "https://tec.openplanner.team/stops/N521akb"], ["https://tec.openplanner.team/stops/N147aca", "https://tec.openplanner.team/stops/N147ada"], ["https://tec.openplanner.team/stops/X654akb", "https://tec.openplanner.team/stops/X654alb"], ["https://tec.openplanner.team/stops/H4rm111a", "https://tec.openplanner.team/stops/H4rm111b"], ["https://tec.openplanner.team/stops/Cfaecmo2", "https://tec.openplanner.team/stops/Cfaetoi1"], ["https://tec.openplanner.team/stops/LhGkirc1", "https://tec.openplanner.team/stops/LhGkirc4"], ["https://tec.openplanner.team/stops/LCsange2", "https://tec.openplanner.team/stops/LCsfize1"], ["https://tec.openplanner.team/stops/X922aka", "https://tec.openplanner.team/stops/X942afb"], ["https://tec.openplanner.team/stops/Cbfcham2", "https://tec.openplanner.team/stops/Cbfcham4"], ["https://tec.openplanner.team/stops/X724afa", "https://tec.openplanner.team/stops/X724afb"], ["https://tec.openplanner.team/stops/NL37aka", "https://tec.openplanner.team/stops/NL37alb"], ["https://tec.openplanner.team/stops/H1og130b", "https://tec.openplanner.team/stops/H4os217a"], ["https://tec.openplanner.team/stops/LLOnand1", "https://tec.openplanner.team/stops/LTatult3"], ["https://tec.openplanner.team/stops/Ljucano2", "https://tec.openplanner.team/stops/Ljujaur2"], ["https://tec.openplanner.team/stops/Bitregl2", "https://tec.openplanner.team/stops/Bitrgnt1"], ["https://tec.openplanner.team/stops/H1gn149b", "https://tec.openplanner.team/stops/H1gn152a"], ["https://tec.openplanner.team/stops/N562bfa", "https://tec.openplanner.team/stops/N570aab"], ["https://tec.openplanner.team/stops/LFLcent2", "https://tec.openplanner.team/stops/LFLcher2"], ["https://tec.openplanner.team/stops/LbOkalv1", "https://tec.openplanner.team/stops/LbOlier1"], ["https://tec.openplanner.team/stops/X674aab", "https://tec.openplanner.team/stops/X675aaa"], ["https://tec.openplanner.team/stops/Cbfplch1", "https://tec.openplanner.team/stops/Cbfplch2"], ["https://tec.openplanner.team/stops/Lsebrun3", "https://tec.openplanner.team/stops/Lseruis1"], ["https://tec.openplanner.team/stops/N310acb", "https://tec.openplanner.team/stops/N350ada"], ["https://tec.openplanner.team/stops/Cacscav1", "https://tec.openplanner.team/stops/NC24aab"], ["https://tec.openplanner.team/stops/N207add", "https://tec.openplanner.team/stops/N210aab"], ["https://tec.openplanner.team/stops/LBItnt-*", "https://tec.openplanner.team/stops/Lmlcrot1"], ["https://tec.openplanner.team/stops/Bgntcbo1", "https://tec.openplanner.team/stops/Bsomh671"], ["https://tec.openplanner.team/stops/Lghgend1", "https://tec.openplanner.team/stops/Ljerose3"], ["https://tec.openplanner.team/stops/X982afa", "https://tec.openplanner.team/stops/X982bxa"], ["https://tec.openplanner.team/stops/Btslcel2", "https://tec.openplanner.team/stops/Btsllfp1"], ["https://tec.openplanner.team/stops/H1by108b", "https://tec.openplanner.team/stops/H1sy143d"], ["https://tec.openplanner.team/stops/LHUecte2", "https://tec.openplanner.team/stops/NL80ahb"], ["https://tec.openplanner.team/stops/LBTwauc1", "https://tec.openplanner.team/stops/LCHeg--2"], ["https://tec.openplanner.team/stops/H2hl112a", "https://tec.openplanner.team/stops/H2hl112b"], ["https://tec.openplanner.team/stops/H1ht128a", "https://tec.openplanner.team/stops/H1ht135b"], ["https://tec.openplanner.team/stops/LmS11--1", "https://tec.openplanner.team/stops/LmSluxh1"], ["https://tec.openplanner.team/stops/N152aaf", "https://tec.openplanner.team/stops/N152aba"], ["https://tec.openplanner.team/stops/X634aaa", "https://tec.openplanner.team/stops/X634abb"], ["https://tec.openplanner.team/stops/LCF2spa1", "https://tec.openplanner.team/stops/LCFmoul1"], ["https://tec.openplanner.team/stops/LWalibo1", "https://tec.openplanner.team/stops/LWapl--4"], ["https://tec.openplanner.team/stops/X902afb", "https://tec.openplanner.team/stops/X999aia"], ["https://tec.openplanner.team/stops/Lghhaut1", "https://tec.openplanner.team/stops/Lghpara1"], ["https://tec.openplanner.team/stops/Cmlceri2", "https://tec.openplanner.team/stops/Cmmami2"], ["https://tec.openplanner.team/stops/X888ada", "https://tec.openplanner.team/stops/X888adb"], ["https://tec.openplanner.team/stops/X780aba", "https://tec.openplanner.team/stops/X790aaa"], ["https://tec.openplanner.team/stops/NL77aia", "https://tec.openplanner.team/stops/NL77aja"], ["https://tec.openplanner.team/stops/Crcegli1", "https://tec.openplanner.team/stops/Crcegli2"], ["https://tec.openplanner.team/stops/Bcbqegl1", "https://tec.openplanner.team/stops/Bcbqpon1"], ["https://tec.openplanner.team/stops/H4ld127b", "https://tec.openplanner.team/stops/H4ld130a"], ["https://tec.openplanner.team/stops/Lcceg--1", "https://tec.openplanner.team/stops/LRaplac1"], ["https://tec.openplanner.team/stops/Cslbhau2", "https://tec.openplanner.team/stops/Cvtegli1"], ["https://tec.openplanner.team/stops/LFethie1", "https://tec.openplanner.team/stops/LFethie2"], ["https://tec.openplanner.team/stops/Lfllapi5", "https://tec.openplanner.team/stops/Lflterm2"], ["https://tec.openplanner.team/stops/H4bo118b", "https://tec.openplanner.team/stops/H4bo118c"], ["https://tec.openplanner.team/stops/Crebien3", "https://tec.openplanner.team/stops/Crewath2"], ["https://tec.openplanner.team/stops/LNAanne2", "https://tec.openplanner.team/stops/LNAbois1"], ["https://tec.openplanner.team/stops/Cmlsart1", "https://tec.openplanner.team/stops/Cmlsart2"], ["https://tec.openplanner.team/stops/N106aaa", "https://tec.openplanner.team/stops/N137adb"], ["https://tec.openplanner.team/stops/Llgchar1", "https://tec.openplanner.team/stops/Llgfusc1"], ["https://tec.openplanner.team/stops/X784aeb", "https://tec.openplanner.team/stops/X784afa"], ["https://tec.openplanner.team/stops/H4hx115b", "https://tec.openplanner.team/stops/H4wa161a"], ["https://tec.openplanner.team/stops/N139aba", "https://tec.openplanner.team/stops/X317aba"], ["https://tec.openplanner.team/stops/N121aca", "https://tec.openplanner.team/stops/N121ajc"], ["https://tec.openplanner.team/stops/LHvvill*", "https://tec.openplanner.team/stops/LPT97--2"], ["https://tec.openplanner.team/stops/H1je211b", "https://tec.openplanner.team/stops/H1je225b"], ["https://tec.openplanner.team/stops/H2mg141a", "https://tec.openplanner.team/stops/H2mg141b"], ["https://tec.openplanner.team/stops/Bhtihau2", "https://tec.openplanner.team/stops/Bhtipir3"], ["https://tec.openplanner.team/stops/Lougoff1", "https://tec.openplanner.team/stops/Louwuid2"], ["https://tec.openplanner.team/stops/Cjuvpla1", "https://tec.openplanner.team/stops/Cjuvpla2"], ["https://tec.openplanner.team/stops/H1do116b", "https://tec.openplanner.team/stops/H1ho144a"], ["https://tec.openplanner.team/stops/Bblagar9", "https://tec.openplanner.team/stops/Bblapje2"], ["https://tec.openplanner.team/stops/LCAcruc2", "https://tec.openplanner.team/stops/LCAeg--1"], ["https://tec.openplanner.team/stops/LTEzinn1", "https://tec.openplanner.team/stops/LTEzinn2"], ["https://tec.openplanner.team/stops/H4al100a", "https://tec.openplanner.team/stops/H4al100b"], ["https://tec.openplanner.team/stops/N501fqa", "https://tec.openplanner.team/stops/N501fqb"], ["https://tec.openplanner.team/stops/H1sp354a", "https://tec.openplanner.team/stops/H1sp354b"], ["https://tec.openplanner.team/stops/X897axa", "https://tec.openplanner.team/stops/X904afb"], ["https://tec.openplanner.team/stops/Cgoetun1", "https://tec.openplanner.team/stops/Cgoetun4"], ["https://tec.openplanner.team/stops/Bllnjpa2", "https://tec.openplanner.team/stops/Bllnlb11"], ["https://tec.openplanner.team/stops/Cjuapca2", "https://tec.openplanner.team/stops/Cjudefi2"], ["https://tec.openplanner.team/stops/Cgoobse1", "https://tec.openplanner.team/stops/CMleop2"], ["https://tec.openplanner.team/stops/H4bq102b", "https://tec.openplanner.team/stops/H4bq154a"], ["https://tec.openplanner.team/stops/H1em111c", "https://tec.openplanner.team/stops/H1em111d"], ["https://tec.openplanner.team/stops/Bwatms10", "https://tec.openplanner.team/stops/Bwatmsj5"], ["https://tec.openplanner.team/stops/Lsnfont1", "https://tec.openplanner.team/stops/Lsnvand1"], ["https://tec.openplanner.team/stops/Bwatath3", "https://tec.openplanner.team/stops/Bwatfia1"], ["https://tec.openplanner.team/stops/H4ga154b", "https://tec.openplanner.team/stops/H4ty311a"], ["https://tec.openplanner.team/stops/H4mo155a", "https://tec.openplanner.team/stops/H4rx142a"], ["https://tec.openplanner.team/stops/Cmcgoch2", "https://tec.openplanner.team/stops/Csyplac1"], ["https://tec.openplanner.team/stops/H4mo133a", "https://tec.openplanner.team/stops/H4mo133b"], ["https://tec.openplanner.team/stops/Bbea3he1", "https://tec.openplanner.team/stops/Bbeagae1"], ["https://tec.openplanner.team/stops/X996aab", "https://tec.openplanner.team/stops/X996aba"], ["https://tec.openplanner.team/stops/N103aca", "https://tec.openplanner.team/stops/N103acc"], ["https://tec.openplanner.team/stops/Becepco2", "https://tec.openplanner.team/stops/Becesbo2"], ["https://tec.openplanner.team/stops/H4ty319a", "https://tec.openplanner.team/stops/H4ty345b"], ["https://tec.openplanner.team/stops/LFAplan2", "https://tec.openplanner.team/stops/LFAscie1"], ["https://tec.openplanner.team/stops/Crecouc1", "https://tec.openplanner.team/stops/Creshau2"], ["https://tec.openplanner.team/stops/H2bh106b", "https://tec.openplanner.team/stops/H2bh110b"], ["https://tec.openplanner.team/stops/X986ada", "https://tec.openplanner.team/stops/X986adb"], ["https://tec.openplanner.team/stops/LTaabba1", "https://tec.openplanner.team/stops/LTaabba2"], ["https://tec.openplanner.team/stops/N988aab", "https://tec.openplanner.team/stops/N988aba"], ["https://tec.openplanner.team/stops/H4lz125a", "https://tec.openplanner.team/stops/H4lz161a"], ["https://tec.openplanner.team/stops/N212aba", "https://tec.openplanner.team/stops/N213aba"], ["https://tec.openplanner.team/stops/LLVerri1", "https://tec.openplanner.team/stops/X575adb"], ["https://tec.openplanner.team/stops/LLrgobe2", "https://tec.openplanner.team/stops/LLrjeho1"], ["https://tec.openplanner.team/stops/H1gc122b", "https://tec.openplanner.team/stops/H1go118a"], ["https://tec.openplanner.team/stops/N534aub", "https://tec.openplanner.team/stops/N534bya"], ["https://tec.openplanner.team/stops/N501kuc", "https://tec.openplanner.team/stops/N501kvb"], ["https://tec.openplanner.team/stops/Lvehauz3", "https://tec.openplanner.team/stops/Lvehopi5"], ["https://tec.openplanner.team/stops/X818ara", "https://tec.openplanner.team/stops/X818arb"], ["https://tec.openplanner.team/stops/LeUolen1", "https://tec.openplanner.team/stops/LeUolen2"], ["https://tec.openplanner.team/stops/X948aea", "https://tec.openplanner.team/stops/X948afb"], ["https://tec.openplanner.team/stops/H2ll181b", "https://tec.openplanner.team/stops/H2ll189c"], ["https://tec.openplanner.team/stops/N230aha", "https://tec.openplanner.team/stops/N231adb"], ["https://tec.openplanner.team/stops/Cbflong2", "https://tec.openplanner.team/stops/NC02aaa"], ["https://tec.openplanner.team/stops/LHCauwe4", "https://tec.openplanner.team/stops/LHCponc4"], ["https://tec.openplanner.team/stops/LVEhali1", "https://tec.openplanner.team/stops/LVEtomb1"], ["https://tec.openplanner.team/stops/Csoperi2", "https://tec.openplanner.team/stops/Csoplac2"], ["https://tec.openplanner.team/stops/Bwagsta1", "https://tec.openplanner.team/stops/Csachas1"], ["https://tec.openplanner.team/stops/Llgbago1", "https://tec.openplanner.team/stops/Llgbert2"], ["https://tec.openplanner.team/stops/X729aca", "https://tec.openplanner.team/stops/X769arb"], ["https://tec.openplanner.team/stops/N424aaa", "https://tec.openplanner.team/stops/N424aba"], ["https://tec.openplanner.team/stops/Ljuinte1", "https://tec.openplanner.team/stops/Ljuprev2"], ["https://tec.openplanner.team/stops/Bblabos2", "https://tec.openplanner.team/stops/Bbsivi11"], ["https://tec.openplanner.team/stops/X659afa", "https://tec.openplanner.team/stops/X659ata"], ["https://tec.openplanner.team/stops/N106aea", "https://tec.openplanner.team/stops/N137aga"], ["https://tec.openplanner.team/stops/Brsga151", "https://tec.openplanner.team/stops/Brsgfbl1"], ["https://tec.openplanner.team/stops/X902ada", "https://tec.openplanner.team/stops/X999aga"], ["https://tec.openplanner.team/stops/Ccuoise1", "https://tec.openplanner.team/stops/Ccurtra1"], ["https://tec.openplanner.team/stops/LNIdoma2", "https://tec.openplanner.team/stops/LSPmari1"], ["https://tec.openplanner.team/stops/H4ry140a", "https://tec.openplanner.team/stops/H4ry140b"], ["https://tec.openplanner.team/stops/Bgdhmet1", "https://tec.openplanner.team/stops/Blinhue2"], ["https://tec.openplanner.team/stops/X771aea", "https://tec.openplanner.team/stops/X771afa"], ["https://tec.openplanner.team/stops/N510afa", "https://tec.openplanner.team/stops/N513acb"], ["https://tec.openplanner.team/stops/H4es108b", "https://tec.openplanner.team/stops/H4ev125b"], ["https://tec.openplanner.team/stops/LGogare2", "https://tec.openplanner.team/stops/LGorysa2"], ["https://tec.openplanner.team/stops/LSZcock1", "https://tec.openplanner.team/stops/LSZcock2"], ["https://tec.openplanner.team/stops/Baudwav1", "https://tec.openplanner.team/stops/Baudwav2"], ["https://tec.openplanner.team/stops/H1le118b", "https://tec.openplanner.team/stops/H1ol143b"], ["https://tec.openplanner.team/stops/N301adb", "https://tec.openplanner.team/stops/N302aab"], ["https://tec.openplanner.team/stops/LMIlac-1", "https://tec.openplanner.team/stops/LMIlac-2"], ["https://tec.openplanner.team/stops/LdE179-1", "https://tec.openplanner.team/stops/LdE179-2"], ["https://tec.openplanner.team/stops/Lsehya-3", "https://tec.openplanner.team/stops/Lsemaqu1"], ["https://tec.openplanner.team/stops/Cfrchro2", "https://tec.openplanner.team/stops/Cfrmonu2"], ["https://tec.openplanner.team/stops/Bitrgnt1", "https://tec.openplanner.team/stops/Bitrgnt2"], ["https://tec.openplanner.team/stops/N564abb", "https://tec.openplanner.team/stops/N564ada"], ["https://tec.openplanner.team/stops/N321aea", "https://tec.openplanner.team/stops/N321afb"], ["https://tec.openplanner.team/stops/LbO52--1", "https://tec.openplanner.team/stops/LbO52--2"], ["https://tec.openplanner.team/stops/LSsaxhe1", "https://tec.openplanner.team/stops/N512agc"], ["https://tec.openplanner.team/stops/LDAwich1", "https://tec.openplanner.team/stops/LDAwich2"], ["https://tec.openplanner.team/stops/Ccicent3", "https://tec.openplanner.team/stops/Cmtstan2"], ["https://tec.openplanner.team/stops/X663asa", "https://tec.openplanner.team/stops/X663axa"], ["https://tec.openplanner.team/stops/H2ha139b", "https://tec.openplanner.team/stops/H2sb235b"], ["https://tec.openplanner.team/stops/Cvtegli1", "https://tec.openplanner.team/stops/Cvtegli2"], ["https://tec.openplanner.team/stops/X921ajc", "https://tec.openplanner.team/stops/X921ajd"], ["https://tec.openplanner.team/stops/LNCfawe1", "https://tec.openplanner.team/stops/LRRchea2"], ["https://tec.openplanner.team/stops/X901asb", "https://tec.openplanner.team/stops/X902bfa"], ["https://tec.openplanner.team/stops/X636aqb", "https://tec.openplanner.team/stops/X636aqd"], ["https://tec.openplanner.team/stops/X662abb", "https://tec.openplanner.team/stops/X662arb"], ["https://tec.openplanner.team/stops/X891aaa", "https://tec.openplanner.team/stops/X891aba"], ["https://tec.openplanner.team/stops/H1do129a", "https://tec.openplanner.team/stops/H1wi147a"], ["https://tec.openplanner.team/stops/Caih1631", "https://tec.openplanner.team/stops/Ctafran2"], ["https://tec.openplanner.team/stops/N501gbb", "https://tec.openplanner.team/stops/N501lxb"], ["https://tec.openplanner.team/stops/LaAgold2", "https://tec.openplanner.team/stops/LhGscha*"], ["https://tec.openplanner.team/stops/H1mj123b", "https://tec.openplanner.team/stops/H1mj132b"], ["https://tec.openplanner.team/stops/H2sb242a", "https://tec.openplanner.team/stops/H2sb242b"], ["https://tec.openplanner.team/stops/N501lqa", "https://tec.openplanner.team/stops/N501lqb"], ["https://tec.openplanner.team/stops/Ctipoui2", "https://tec.openplanner.team/stops/H1tt107b"], ["https://tec.openplanner.team/stops/LAYambl1", "https://tec.openplanner.team/stops/LAYthir2"], ["https://tec.openplanner.team/stops/LJveg--1", "https://tec.openplanner.team/stops/X576aca"], ["https://tec.openplanner.team/stops/Bnivbne1", "https://tec.openplanner.team/stops/Bnivhut1"], ["https://tec.openplanner.team/stops/Bitrfsc1", "https://tec.openplanner.team/stops/Bitrmon1"], ["https://tec.openplanner.team/stops/N118aoa", "https://tec.openplanner.team/stops/N118ata"], ["https://tec.openplanner.team/stops/Caircen2", "https://tec.openplanner.team/stops/Crsrose1"], ["https://tec.openplanner.team/stops/LSochal2", "https://tec.openplanner.team/stops/LSogite2"], ["https://tec.openplanner.team/stops/Cfrbrin2", "https://tec.openplanner.team/stops/Cfrmoul2"], ["https://tec.openplanner.team/stops/LJAcham1", "https://tec.openplanner.team/stops/LSUvill2"], ["https://tec.openplanner.team/stops/N503ada", "https://tec.openplanner.team/stops/N503adb"], ["https://tec.openplanner.team/stops/LVsboug1", "https://tec.openplanner.team/stops/LVsbrux2"], ["https://tec.openplanner.team/stops/Bgnvbsi2", "https://tec.openplanner.team/stops/Bgnvcom1"], ["https://tec.openplanner.team/stops/LeUbahn4", "https://tec.openplanner.team/stops/LeUwert1"], ["https://tec.openplanner.team/stops/N167add", "https://tec.openplanner.team/stops/N167aga"], ["https://tec.openplanner.team/stops/Bwlhpmt2", "https://tec.openplanner.team/stops/Bwspbbo2"], ["https://tec.openplanner.team/stops/LAMfrai1", "https://tec.openplanner.team/stops/LAMmc--1"], ["https://tec.openplanner.team/stops/Ccobinc2", "https://tec.openplanner.team/stops/Ccopeti1"], ["https://tec.openplanner.team/stops/Lousite3", "https://tec.openplanner.team/stops/Lousite7"], ["https://tec.openplanner.team/stops/H4hx111b", "https://tec.openplanner.team/stops/H4wa150a"], ["https://tec.openplanner.team/stops/X638aca", "https://tec.openplanner.team/stops/X638afa"], ["https://tec.openplanner.team/stops/X766aca", "https://tec.openplanner.team/stops/X766aea"], ["https://tec.openplanner.team/stops/N352afb", "https://tec.openplanner.team/stops/N367adb"], ["https://tec.openplanner.team/stops/LDoeg--2", "https://tec.openplanner.team/stops/LLiforg1"], ["https://tec.openplanner.team/stops/X344aea", "https://tec.openplanner.team/stops/X344aeb"], ["https://tec.openplanner.team/stops/N120agb", "https://tec.openplanner.team/stops/N248aea"], ["https://tec.openplanner.team/stops/Bmrlcch2", "https://tec.openplanner.team/stops/Bmrllgr2"], ["https://tec.openplanner.team/stops/N507ala", "https://tec.openplanner.team/stops/N507ald"], ["https://tec.openplanner.team/stops/X886acb", "https://tec.openplanner.team/stops/X886afb"], ["https://tec.openplanner.team/stops/N244abb", "https://tec.openplanner.team/stops/N244afb"], ["https://tec.openplanner.team/stops/LAYcher2", "https://tec.openplanner.team/stops/LAYecol2"], ["https://tec.openplanner.team/stops/LPLphar1", "https://tec.openplanner.team/stops/LPLruis1"], ["https://tec.openplanner.team/stops/Cgzgrru1", "https://tec.openplanner.team/stops/Cgzgrru2"], ["https://tec.openplanner.team/stops/Bmrlhan1", "https://tec.openplanner.team/stops/Bmrlnce1"], ["https://tec.openplanner.team/stops/H1so143a", "https://tec.openplanner.team/stops/H1so146b"], ["https://tec.openplanner.team/stops/X623ajb", "https://tec.openplanner.team/stops/X624ajb"], ["https://tec.openplanner.team/stops/N533ana", "https://tec.openplanner.team/stops/N533apa"], ["https://tec.openplanner.team/stops/Ckevela1", "https://tec.openplanner.team/stops/Cwfronc1"], ["https://tec.openplanner.team/stops/N571aba", "https://tec.openplanner.team/stops/N571abb"], ["https://tec.openplanner.team/stops/LCRecmo1", "https://tec.openplanner.team/stops/LCRecmo2"], ["https://tec.openplanner.team/stops/N224agc", "https://tec.openplanner.team/stops/X398aha"], ["https://tec.openplanner.team/stops/LHXn47-4", "https://tec.openplanner.team/stops/LSMcles1"], ["https://tec.openplanner.team/stops/LeUhaag2", "https://tec.openplanner.team/stops/LeUschu1"], ["https://tec.openplanner.team/stops/N512aba", "https://tec.openplanner.team/stops/N512afa"], ["https://tec.openplanner.team/stops/X714aca", "https://tec.openplanner.team/stops/X714adb"], ["https://tec.openplanner.team/stops/H1mc127b", "https://tec.openplanner.team/stops/H1mc129a"], ["https://tec.openplanner.team/stops/LCFcafe1", "https://tec.openplanner.team/stops/LCFcarr2"], ["https://tec.openplanner.team/stops/Llggill1", "https://tec.openplanner.team/stops/Llghenr1"], ["https://tec.openplanner.team/stops/Lbemc--1", "https://tec.openplanner.team/stops/Llxeg--1"], ["https://tec.openplanner.team/stops/X877acb", "https://tec.openplanner.team/stops/X877ada"], ["https://tec.openplanner.team/stops/Cwfcast1", "https://tec.openplanner.team/stops/NC23aaa"], ["https://tec.openplanner.team/stops/Lsehcoc1", "https://tec.openplanner.team/stops/Lsehcoc2"], ["https://tec.openplanner.team/stops/LwYsour1", "https://tec.openplanner.team/stops/LwYsour3"], ["https://tec.openplanner.team/stops/H4fr146b", "https://tec.openplanner.team/stops/H4ty327a"], ["https://tec.openplanner.team/stops/N501hwb", "https://tec.openplanner.team/stops/N501iaa"], ["https://tec.openplanner.team/stops/H1te179a", "https://tec.openplanner.team/stops/H1te179b"], ["https://tec.openplanner.team/stops/LSGmall1", "https://tec.openplanner.team/stops/LSGmall2"], ["https://tec.openplanner.team/stops/Bbcoben1", "https://tec.openplanner.team/stops/Bbcocou2"], ["https://tec.openplanner.team/stops/N539akb", "https://tec.openplanner.team/stops/N539ama"], ["https://tec.openplanner.team/stops/Cjxdesc1", "https://tec.openplanner.team/stops/Cjxplac2"], ["https://tec.openplanner.team/stops/Bmalcar1", "https://tec.openplanner.team/stops/Bmalsme1"], ["https://tec.openplanner.team/stops/LTNcarr4", "https://tec.openplanner.team/stops/LTNcarr6"], ["https://tec.openplanner.team/stops/Loudela1", "https://tec.openplanner.team/stops/Lseserv1"], ["https://tec.openplanner.team/stops/H4ff117b", "https://tec.openplanner.team/stops/H4ff121b"], ["https://tec.openplanner.team/stops/LCn4---2", "https://tec.openplanner.team/stops/LSpshin2"], ["https://tec.openplanner.team/stops/H1hr127b", "https://tec.openplanner.team/stops/H1to153d"], ["https://tec.openplanner.team/stops/LaNdord1", "https://tec.openplanner.team/stops/LeMnr11"], ["https://tec.openplanner.team/stops/LPT97--1", "https://tec.openplanner.team/stops/X792aba"], ["https://tec.openplanner.team/stops/N534aya", "https://tec.openplanner.team/stops/N534bda"], ["https://tec.openplanner.team/stops/N425aca", "https://tec.openplanner.team/stops/N425acb"], ["https://tec.openplanner.team/stops/LPOleli2", "https://tec.openplanner.team/stops/LSdbvue2"], ["https://tec.openplanner.team/stops/X626afb", "https://tec.openplanner.team/stops/X688abb"], ["https://tec.openplanner.team/stops/H1gr119a", "https://tec.openplanner.team/stops/H1to153d"], ["https://tec.openplanner.team/stops/Ccuoise2", "https://tec.openplanner.team/stops/Ccurtra2"], ["https://tec.openplanner.team/stops/H1po139a", "https://tec.openplanner.team/stops/H1si151b"], ["https://tec.openplanner.team/stops/X661axa", "https://tec.openplanner.team/stops/X822ala"], ["https://tec.openplanner.team/stops/X949aia", "https://tec.openplanner.team/stops/X949ama"], ["https://tec.openplanner.team/stops/N117abb", "https://tec.openplanner.team/stops/N117aca"], ["https://tec.openplanner.team/stops/H2tr247a", "https://tec.openplanner.team/stops/H2tr255b"], ["https://tec.openplanner.team/stops/LSTchal1", "https://tec.openplanner.team/stops/LSTrema2"], ["https://tec.openplanner.team/stops/N551aba", "https://tec.openplanner.team/stops/N551akb"], ["https://tec.openplanner.team/stops/X825adb", "https://tec.openplanner.team/stops/X825aeb"], ["https://tec.openplanner.team/stops/N232ava", "https://tec.openplanner.team/stops/N232cbb"], ["https://tec.openplanner.team/stops/LwYcafe1", "https://tec.openplanner.team/stops/LwYcafe2"], ["https://tec.openplanner.team/stops/LHUlebe0", "https://tec.openplanner.team/stops/LHUlieg1"], ["https://tec.openplanner.team/stops/Bbea3he2", "https://tec.openplanner.team/stops/Bmlnmbo2"], ["https://tec.openplanner.team/stops/N549aea", "https://tec.openplanner.team/stops/N577aab"], ["https://tec.openplanner.team/stops/LARparc1", "https://tec.openplanner.team/stops/LRIcent1"], ["https://tec.openplanner.team/stops/LSZnive2", "https://tec.openplanner.team/stops/LSZpont2"], ["https://tec.openplanner.team/stops/H1ms902a", "https://tec.openplanner.team/stops/H1ms915b"], ["https://tec.openplanner.team/stops/H4pq112a", "https://tec.openplanner.team/stops/H4pq118a"], ["https://tec.openplanner.team/stops/N509asb", "https://tec.openplanner.team/stops/N509aub"], ["https://tec.openplanner.team/stops/N501jba", "https://tec.openplanner.team/stops/N501jma"], ["https://tec.openplanner.team/stops/Cpcbrig1", "https://tec.openplanner.team/stops/Cpceclu2"], ["https://tec.openplanner.team/stops/X870afb", "https://tec.openplanner.team/stops/X870ajb"], ["https://tec.openplanner.team/stops/NL57adc", "https://tec.openplanner.team/stops/NL57ajb"], ["https://tec.openplanner.team/stops/X947aab", "https://tec.openplanner.team/stops/X947aeb"], ["https://tec.openplanner.team/stops/LHmcite1", "https://tec.openplanner.team/stops/LMAgdfa1"], ["https://tec.openplanner.team/stops/N515aqc", "https://tec.openplanner.team/stops/N515ara"], ["https://tec.openplanner.team/stops/H4ne131b", "https://tec.openplanner.team/stops/H4ne142a"], ["https://tec.openplanner.team/stops/Bbautri2", "https://tec.openplanner.team/stops/Bnivpri2"], ["https://tec.openplanner.team/stops/LBNvilv1", "https://tec.openplanner.team/stops/LGOmous1"], ["https://tec.openplanner.team/stops/H1ha186b", "https://tec.openplanner.team/stops/H1ha198a"], ["https://tec.openplanner.team/stops/LHgpost1", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://tec.openplanner.team/stops/LSPbass1", "https://tec.openplanner.team/stops/LSPcomm2"], ["https://tec.openplanner.team/stops/LeUhutt1", "https://tec.openplanner.team/stops/LHthest2"], ["https://tec.openplanner.team/stops/N573aha", "https://tec.openplanner.team/stops/N573ahb"], ["https://tec.openplanner.team/stops/Baudsta2", "https://tec.openplanner.team/stops/Bhoegbr2"], ["https://tec.openplanner.team/stops/Llgdoth2", "https://tec.openplanner.team/stops/Llgfred1"], ["https://tec.openplanner.team/stops/LBWbatt1", "https://tec.openplanner.team/stops/LBWbatt2"], ["https://tec.openplanner.team/stops/Ccupomp2", "https://tec.openplanner.team/stops/Cpibois1"], ["https://tec.openplanner.team/stops/H1ch107a", "https://tec.openplanner.team/stops/H1ch141b"], ["https://tec.openplanner.team/stops/LBEmich2", "https://tec.openplanner.team/stops/LGMhadr2"], ["https://tec.openplanner.team/stops/Cgxprad4", "https://tec.openplanner.team/stops/CMleer2"], ["https://tec.openplanner.team/stops/H1gi120a", "https://tec.openplanner.team/stops/H1gi122a"], ["https://tec.openplanner.team/stops/H2na132b", "https://tec.openplanner.team/stops/H2na135b"], ["https://tec.openplanner.team/stops/H1bu137a", "https://tec.openplanner.team/stops/H3bi113a"], ["https://tec.openplanner.team/stops/N149acb", "https://tec.openplanner.team/stops/N149ada"], ["https://tec.openplanner.team/stops/X713ahb", "https://tec.openplanner.team/stops/X713amb"], ["https://tec.openplanner.team/stops/X982bta", "https://tec.openplanner.team/stops/X982btb"], ["https://tec.openplanner.team/stops/LwR140-1", "https://tec.openplanner.team/stops/LwRkirc1"], ["https://tec.openplanner.team/stops/Lenabat2", "https://tec.openplanner.team/stops/Lengran2"], ["https://tec.openplanner.team/stops/H1bo101a", "https://tec.openplanner.team/stops/H1bo102b"], ["https://tec.openplanner.team/stops/H4to134a", "https://tec.openplanner.team/stops/H4to139b"], ["https://tec.openplanner.team/stops/LGLobor2", "https://tec.openplanner.team/stops/LWidepo2"], ["https://tec.openplanner.team/stops/H4oq225b", "https://tec.openplanner.team/stops/H4oq228b"], ["https://tec.openplanner.team/stops/Bmrqgar2", "https://tec.openplanner.team/stops/Bspkdon2"], ["https://tec.openplanner.team/stops/X667abb", "https://tec.openplanner.team/stops/X667acb"], ["https://tec.openplanner.team/stops/H1qu107a", "https://tec.openplanner.team/stops/H1qu109b"], ["https://tec.openplanner.team/stops/LORec--*", "https://tec.openplanner.team/stops/LORroma1"], ["https://tec.openplanner.team/stops/LMastat4", "https://tec.openplanner.team/stops/LTEnuro1"], ["https://tec.openplanner.team/stops/N874aab", "https://tec.openplanner.team/stops/N894age"], ["https://tec.openplanner.team/stops/X394aeb", "https://tec.openplanner.team/stops/X398acb"], ["https://tec.openplanner.team/stops/LMEense2", "https://tec.openplanner.team/stops/LMIpast2"], ["https://tec.openplanner.team/stops/Bwavcar1", "https://tec.openplanner.team/stops/Bwavrij2"], ["https://tec.openplanner.team/stops/LOCloup1", "https://tec.openplanner.team/stops/NL35aga"], ["https://tec.openplanner.team/stops/Btsllfp1", "https://tec.openplanner.team/stops/Btsllfp2"], ["https://tec.openplanner.team/stops/N230aia", "https://tec.openplanner.team/stops/N230aja"], ["https://tec.openplanner.team/stops/Bhenasc1", "https://tec.openplanner.team/stops/Bhenpla2"], ["https://tec.openplanner.team/stops/H2tr257a", "https://tec.openplanner.team/stops/H2tr257b"], ["https://tec.openplanner.team/stops/X664aob", "https://tec.openplanner.team/stops/X664apb"], ["https://tec.openplanner.team/stops/LAncoup2", "https://tec.openplanner.team/stops/LVncarr1"], ["https://tec.openplanner.team/stops/LFFeg--2", "https://tec.openplanner.team/stops/LFFruel2"], ["https://tec.openplanner.team/stops/X888afb", "https://tec.openplanner.team/stops/X897aga"], ["https://tec.openplanner.team/stops/Lsemaha1", "https://tec.openplanner.team/stops/Lseverh2"], ["https://tec.openplanner.team/stops/X604acb", "https://tec.openplanner.team/stops/X604aeb"], ["https://tec.openplanner.team/stops/Cthalli1", "https://tec.openplanner.team/stops/Cthathe1"], ["https://tec.openplanner.team/stops/LBNpleg1", "https://tec.openplanner.team/stops/LBNpleg2"], ["https://tec.openplanner.team/stops/Brsg7fo2", "https://tec.openplanner.team/stops/Brsgfon2"], ["https://tec.openplanner.team/stops/LFEague1", "https://tec.openplanner.team/stops/X597aob"], ["https://tec.openplanner.team/stops/Bcbqcha1", "https://tec.openplanner.team/stops/Bhalomo2"], ["https://tec.openplanner.team/stops/Ladneuv1", "https://tec.openplanner.team/stops/Ladwooz2"], ["https://tec.openplanner.team/stops/Lpecime2", "https://tec.openplanner.team/stops/Lpetenn1"], ["https://tec.openplanner.team/stops/Lflcle-*", "https://tec.openplanner.team/stops/Lflfort*"], ["https://tec.openplanner.team/stops/H1ms256a", "https://tec.openplanner.team/stops/H1ms921a"], ["https://tec.openplanner.team/stops/Lcejobe2", "https://tec.openplanner.team/stops/Lgrgoff1"], ["https://tec.openplanner.team/stops/LHAprei1", "https://tec.openplanner.team/stops/LVIpneu2"], ["https://tec.openplanner.team/stops/Lemacac2", "https://tec.openplanner.team/stops/Lemdupo2"], ["https://tec.openplanner.team/stops/X662afb", "https://tec.openplanner.team/stops/X662aoa"], ["https://tec.openplanner.team/stops/Bchgflo2", "https://tec.openplanner.team/stops/Btslpic5"], ["https://tec.openplanner.team/stops/N511ala", "https://tec.openplanner.team/stops/N511alb"], ["https://tec.openplanner.team/stops/H1gr116b", "https://tec.openplanner.team/stops/H1gr122b"], ["https://tec.openplanner.team/stops/H1po133a", "https://tec.openplanner.team/stops/H1po133b"], ["https://tec.openplanner.team/stops/H5bl115b", "https://tec.openplanner.team/stops/H5bl124b"], ["https://tec.openplanner.team/stops/Cfrcoop3", "https://tec.openplanner.team/stops/Cfrsour2"], ["https://tec.openplanner.team/stops/Lalmakr1", "https://tec.openplanner.team/stops/Lalmakr2"], ["https://tec.openplanner.team/stops/X633afa", "https://tec.openplanner.team/stops/X633afb"], ["https://tec.openplanner.team/stops/Bsenbmc1", "https://tec.openplanner.team/stops/Bsenbmc2"], ["https://tec.openplanner.team/stops/N232bya", "https://tec.openplanner.team/stops/N232caa"], ["https://tec.openplanner.team/stops/Clfbarr1", "https://tec.openplanner.team/stops/Crglyre1"], ["https://tec.openplanner.team/stops/H1gh171b", "https://tec.openplanner.team/stops/H1je225a"], ["https://tec.openplanner.team/stops/H1si155b", "https://tec.openplanner.team/stops/H1si157a"], ["https://tec.openplanner.team/stops/LBPrueg1", "https://tec.openplanner.team/stops/LBPrueg2"], ["https://tec.openplanner.team/stops/N509ana", "https://tec.openplanner.team/stops/N510aca"], ["https://tec.openplanner.team/stops/Lprcite2", "https://tec.openplanner.team/stops/Lprdavi2"], ["https://tec.openplanner.team/stops/Cci4bra1", "https://tec.openplanner.team/stops/Cci4bra3"], ["https://tec.openplanner.team/stops/N313abb", "https://tec.openplanner.team/stops/N350adb"], ["https://tec.openplanner.team/stops/LMOcorn1", "https://tec.openplanner.team/stops/LMOcorn3"], ["https://tec.openplanner.team/stops/LrcarsT1", "https://tec.openplanner.team/stops/Lrclant1"], ["https://tec.openplanner.team/stops/Bquevel2", "https://tec.openplanner.team/stops/Btubren1"], ["https://tec.openplanner.team/stops/Clbhvil1", "https://tec.openplanner.team/stops/Cthpano1"], ["https://tec.openplanner.team/stops/X773afa", "https://tec.openplanner.team/stops/X773aga"], ["https://tec.openplanner.team/stops/X809aca", "https://tec.openplanner.team/stops/X811aaa"], ["https://tec.openplanner.team/stops/H4ir165a", "https://tec.openplanner.team/stops/H4ir166a"], ["https://tec.openplanner.team/stops/Bjodrrg2", "https://tec.openplanner.team/stops/Bsrgm101"], ["https://tec.openplanner.team/stops/X614ahb", "https://tec.openplanner.team/stops/X614aya"], ["https://tec.openplanner.team/stops/LSEvill1", "https://tec.openplanner.team/stops/LSEvill2"], ["https://tec.openplanner.team/stops/Blhusor1", "https://tec.openplanner.team/stops/Bovevri2"], ["https://tec.openplanner.team/stops/N521acb", "https://tec.openplanner.team/stops/N523aab"], ["https://tec.openplanner.team/stops/Blhucmo2", "https://tec.openplanner.team/stops/Blhunys2"], ["https://tec.openplanner.team/stops/Lmodeja1", "https://tec.openplanner.team/stops/Lmomarr2"], ["https://tec.openplanner.team/stops/LLEfagn1", "https://tec.openplanner.team/stops/LLEfagn2"], ["https://tec.openplanner.team/stops/LLTther1", "https://tec.openplanner.team/stops/LLTther2"], ["https://tec.openplanner.team/stops/X903aab", "https://tec.openplanner.team/stops/X903acb"], ["https://tec.openplanner.team/stops/H1cu115a", "https://tec.openplanner.team/stops/H1je360b"], ["https://tec.openplanner.team/stops/LAmeclu1", "https://tec.openplanner.team/stops/LAmeclu2"], ["https://tec.openplanner.team/stops/X902aaa", "https://tec.openplanner.team/stops/X902aeb"], ["https://tec.openplanner.team/stops/Cjugill1", "https://tec.openplanner.team/stops/CMchag1"], ["https://tec.openplanner.team/stops/N545aab", "https://tec.openplanner.team/stops/N552aba"], ["https://tec.openplanner.team/stops/X982ara", "https://tec.openplanner.team/stops/X982asa"], ["https://tec.openplanner.team/stops/X993aea", "https://tec.openplanner.team/stops/X993ahb"], ["https://tec.openplanner.team/stops/H5qu148b", "https://tec.openplanner.team/stops/H5qu149b"], ["https://tec.openplanner.team/stops/LaMahof1", "https://tec.openplanner.team/stops/LeIjoha1"], ["https://tec.openplanner.team/stops/LaTcolo2", "https://tec.openplanner.team/stops/LsEdorf2"], ["https://tec.openplanner.team/stops/Lmlbaro1", "https://tec.openplanner.team/stops/Lmlchev2"], ["https://tec.openplanner.team/stops/N511ava", "https://tec.openplanner.team/stops/N511avb"], ["https://tec.openplanner.team/stops/LBYwez-2", "https://tec.openplanner.team/stops/LHEvign1"], ["https://tec.openplanner.team/stops/Lousite6", "https://tec.openplanner.team/stops/Lsttech1"], ["https://tec.openplanner.team/stops/X661abb", "https://tec.openplanner.team/stops/X661acb"], ["https://tec.openplanner.team/stops/LkTraer1", "https://tec.openplanner.team/stops/LkTweih2"], ["https://tec.openplanner.team/stops/Loudela1", "https://tec.openplanner.team/stops/Louoran2"], ["https://tec.openplanner.team/stops/N551aia", "https://tec.openplanner.team/stops/N551aiz"], ["https://tec.openplanner.team/stops/X721aab", "https://tec.openplanner.team/stops/X723aka"], ["https://tec.openplanner.team/stops/H1mr125a", "https://tec.openplanner.team/stops/H1mr125b"], ["https://tec.openplanner.team/stops/Bbougbl2", "https://tec.openplanner.team/stops/Bbounci1"], ["https://tec.openplanner.team/stops/N547ana", "https://tec.openplanner.team/stops/N547anb"], ["https://tec.openplanner.team/stops/Caimeno3", "https://tec.openplanner.team/stops/N543cnb"], ["https://tec.openplanner.team/stops/LHUfali1", "https://tec.openplanner.team/stops/LHUsaul1"], ["https://tec.openplanner.team/stops/N534blg", "https://tec.openplanner.team/stops/N534brb"], ["https://tec.openplanner.team/stops/H5at115b", "https://tec.openplanner.team/stops/H5at141a"], ["https://tec.openplanner.team/stops/LTB105-1", "https://tec.openplanner.team/stops/X715aka"], ["https://tec.openplanner.team/stops/Bperqui1", "https://tec.openplanner.team/stops/N519aba"], ["https://tec.openplanner.team/stops/Bnivhut1", "https://tec.openplanner.team/stops/Bnivsci2"], ["https://tec.openplanner.team/stops/N579aab", "https://tec.openplanner.team/stops/N580aab"], ["https://tec.openplanner.team/stops/Lcacris2", "https://tec.openplanner.team/stops/Lemboul2"], ["https://tec.openplanner.team/stops/X347aab", "https://tec.openplanner.team/stops/X370ada"], ["https://tec.openplanner.team/stops/Lvehomb2", "https://tec.openplanner.team/stops/Lverema2"], ["https://tec.openplanner.team/stops/LAYcorn2", "https://tec.openplanner.team/stops/LFLcarr1"], ["https://tec.openplanner.team/stops/X601cpa", "https://tec.openplanner.team/stops/X601cqa"], ["https://tec.openplanner.team/stops/X615ata", "https://tec.openplanner.team/stops/X681aga"], ["https://tec.openplanner.team/stops/Lhr4ave1", "https://tec.openplanner.team/stops/Lhrmeta1"], ["https://tec.openplanner.team/stops/LhZkape1", "https://tec.openplanner.team/stops/LwEdorf1"], ["https://tec.openplanner.team/stops/LHHcite1", "https://tec.openplanner.team/stops/LSG172-2"], ["https://tec.openplanner.team/stops/Lceprog2", "https://tec.openplanner.team/stops/Lgrbell1"], ["https://tec.openplanner.team/stops/N205abb", "https://tec.openplanner.team/stops/N205adb"], ["https://tec.openplanner.team/stops/H4bc101b", "https://tec.openplanner.team/stops/H5bs103b"], ["https://tec.openplanner.team/stops/X919acb", "https://tec.openplanner.team/stops/X919adb"], ["https://tec.openplanner.team/stops/X719aaa", "https://tec.openplanner.team/stops/X719aab"], ["https://tec.openplanner.team/stops/X993aca", "https://tec.openplanner.team/stops/X994ala"], ["https://tec.openplanner.team/stops/N506aob", "https://tec.openplanner.team/stops/N506apb"], ["https://tec.openplanner.team/stops/X725aca", "https://tec.openplanner.team/stops/X725ada"], ["https://tec.openplanner.team/stops/H4mv194a", "https://tec.openplanner.team/stops/H4mv197b"], ["https://tec.openplanner.team/stops/Ltigare2", "https://tec.openplanner.team/stops/Ltinico2"], ["https://tec.openplanner.team/stops/X908afa", "https://tec.openplanner.team/stops/X908ala"], ["https://tec.openplanner.team/stops/X619ajb", "https://tec.openplanner.team/stops/X622aea"], ["https://tec.openplanner.team/stops/LHUlebe3", "https://tec.openplanner.team/stops/LHUlebe8"], ["https://tec.openplanner.team/stops/H1gq153b", "https://tec.openplanner.team/stops/H1lm105b"], ["https://tec.openplanner.team/stops/Bgnpjbe2", "https://tec.openplanner.team/stops/Blpgvil1"], ["https://tec.openplanner.team/stops/H1bo112b", "https://tec.openplanner.team/stops/H1ho128b"], ["https://tec.openplanner.team/stops/N501mha", "https://tec.openplanner.team/stops/N501msa"], ["https://tec.openplanner.team/stops/LAMcloc1", "https://tec.openplanner.team/stops/LAMmc--2"], ["https://tec.openplanner.team/stops/Bglarha1", "https://tec.openplanner.team/stops/Bmrswag1"], ["https://tec.openplanner.team/stops/Bcbqgar2", "https://tec.openplanner.team/stops/Btubdeh2"], ["https://tec.openplanner.team/stops/Bhoegbr1", "https://tec.openplanner.team/stops/Bhoegbr2"], ["https://tec.openplanner.team/stops/NH01aob", "https://tec.openplanner.team/stops/NH01aod"], ["https://tec.openplanner.team/stops/Lcebarr2", "https://tec.openplanner.team/stops/Lceviei2"], ["https://tec.openplanner.team/stops/Ldichat1", "https://tec.openplanner.team/stops/Ldilyce*"], ["https://tec.openplanner.team/stops/LPUalbe2", "https://tec.openplanner.team/stops/LPUlecl2"], ["https://tec.openplanner.team/stops/LVSeg--1", "https://tec.openplanner.team/stops/LVStige1"], ["https://tec.openplanner.team/stops/LHUpala1", "https://tec.openplanner.team/stops/LHUresi3"], ["https://tec.openplanner.team/stops/H1cd112b", "https://tec.openplanner.team/stops/H1hr127b"], ["https://tec.openplanner.team/stops/H2bh111b", "https://tec.openplanner.team/stops/H2mg135b"], ["https://tec.openplanner.team/stops/Cculpre1", "https://tec.openplanner.team/stops/Ccuphai4"], ["https://tec.openplanner.team/stops/Cjupn3", "https://tec.openplanner.team/stops/Cjupn4"], ["https://tec.openplanner.team/stops/Bbsgfva1", "https://tec.openplanner.team/stops/Bgzdsta2"], ["https://tec.openplanner.team/stops/H4og206b", "https://tec.openplanner.team/stops/H4og213b"], ["https://tec.openplanner.team/stops/Btubbot1", "https://tec.openplanner.team/stops/Btubpir2"], ["https://tec.openplanner.team/stops/H3bo103a", "https://tec.openplanner.team/stops/H3bo103b"], ["https://tec.openplanner.team/stops/Bottcco1", "https://tec.openplanner.team/stops/Bottcco2"], ["https://tec.openplanner.team/stops/Bblavhu2", "https://tec.openplanner.team/stops/Bwateco1"], ["https://tec.openplanner.team/stops/Baudsta2", "https://tec.openplanner.team/stops/Bovejei1"], ["https://tec.openplanner.team/stops/X879ada", "https://tec.openplanner.team/stops/X879adb"], ["https://tec.openplanner.team/stops/X804aga", "https://tec.openplanner.team/stops/X804bga"], ["https://tec.openplanner.team/stops/X903aeb", "https://tec.openplanner.team/stops/X903afb"], ["https://tec.openplanner.team/stops/X948afa", "https://tec.openplanner.team/stops/X948awa"], ["https://tec.openplanner.team/stops/LREfloh1", "https://tec.openplanner.team/stops/LREfloh2"], ["https://tec.openplanner.team/stops/X897ara", "https://tec.openplanner.team/stops/X897aua"], ["https://tec.openplanner.team/stops/H4we136a", "https://tec.openplanner.team/stops/H4we136b"], ["https://tec.openplanner.team/stops/X739aaa", "https://tec.openplanner.team/stops/X739acb"], ["https://tec.openplanner.team/stops/Lpegole2", "https://tec.openplanner.team/stops/Lpeprev2"], ["https://tec.openplanner.team/stops/X982awa", "https://tec.openplanner.team/stops/X982ayb"], ["https://tec.openplanner.team/stops/LTIcime2", "https://tec.openplanner.team/stops/LTIsupe2"], ["https://tec.openplanner.team/stops/Cmlhaie1", "https://tec.openplanner.team/stops/Cmlrang1"], ["https://tec.openplanner.team/stops/Llghugo1", "https://tec.openplanner.team/stops/Llgplat2"], ["https://tec.openplanner.team/stops/X615bda", "https://tec.openplanner.team/stops/X615beb"], ["https://tec.openplanner.team/stops/LBVzand3", "https://tec.openplanner.team/stops/LLscent1"], ["https://tec.openplanner.team/stops/Cpclarm2", "https://tec.openplanner.team/stops/Cpcndce2"], ["https://tec.openplanner.team/stops/H4ty268a", "https://tec.openplanner.team/stops/H4ty327a"], ["https://tec.openplanner.team/stops/N524aca", "https://tec.openplanner.team/stops/N524acb"], ["https://tec.openplanner.team/stops/LbOre152", "https://tec.openplanner.team/stops/LbOre3b2"], ["https://tec.openplanner.team/stops/X952aaa", "https://tec.openplanner.team/stops/X952ajb"], ["https://tec.openplanner.team/stops/LCRabbe1", "https://tec.openplanner.team/stops/LCRchpl1"], ["https://tec.openplanner.team/stops/LMNjard1", "https://tec.openplanner.team/stops/LPbtene1"], ["https://tec.openplanner.team/stops/X897aca", "https://tec.openplanner.team/stops/X897aeb"], ["https://tec.openplanner.team/stops/Bwaunce2", "https://tec.openplanner.team/stops/Bwaunop2"], ["https://tec.openplanner.team/stops/Lourose3", "https://tec.openplanner.team/stops/Lousite3"], ["https://tec.openplanner.team/stops/LAOeg--1", "https://tec.openplanner.team/stops/LLRgdma1"], ["https://tec.openplanner.team/stops/Bneeblo1", "https://tec.openplanner.team/stops/Bneeblo2"], ["https://tec.openplanner.team/stops/LGlwarf1", "https://tec.openplanner.team/stops/LGlwarf2"], ["https://tec.openplanner.team/stops/Cladura3", "https://tec.openplanner.team/stops/Cladura5"], ["https://tec.openplanner.team/stops/LVEhali2", "https://tec.openplanner.team/stops/LVErtt-1"], ["https://tec.openplanner.team/stops/X921aib", "https://tec.openplanner.team/stops/X921ajb"], ["https://tec.openplanner.team/stops/Bbonbcr1", "https://tec.openplanner.team/stops/Bbonbcr2"], ["https://tec.openplanner.team/stops/H1fa120b", "https://tec.openplanner.team/stops/H1hl128b"], ["https://tec.openplanner.team/stops/N543baa", "https://tec.openplanner.team/stops/N543cpa"], ["https://tec.openplanner.team/stops/H1gh155b", "https://tec.openplanner.team/stops/H1gh159b"], ["https://tec.openplanner.team/stops/Cvregl1", "https://tec.openplanner.team/stops/Cvrhaie2"], ["https://tec.openplanner.team/stops/LBVlamo1", "https://tec.openplanner.team/stops/LLocruc2"], ["https://tec.openplanner.team/stops/LFehaut1", "https://tec.openplanner.team/stops/LFehaut2"], ["https://tec.openplanner.team/stops/Bneecha3", "https://tec.openplanner.team/stops/Bneedia1"], ["https://tec.openplanner.team/stops/H4pi132a", "https://tec.openplanner.team/stops/H4wp153a"], ["https://tec.openplanner.team/stops/Boveker2", "https://tec.openplanner.team/stops/Bovesnh1"], ["https://tec.openplanner.team/stops/H2mo119a", "https://tec.openplanner.team/stops/H2mo126a"], ["https://tec.openplanner.team/stops/X741aja", "https://tec.openplanner.team/stops/X741aoa"], ["https://tec.openplanner.team/stops/N117aka", "https://tec.openplanner.team/stops/N117ara"], ["https://tec.openplanner.team/stops/N579ada", "https://tec.openplanner.team/stops/N579aea"], ["https://tec.openplanner.team/stops/X719aea", "https://tec.openplanner.team/stops/X719afb"], ["https://tec.openplanner.team/stops/Lrapays1", "https://tec.openplanner.team/stops/LSAchef2"], ["https://tec.openplanner.team/stops/LTRferm1", "https://tec.openplanner.team/stops/LTRthie2"], ["https://tec.openplanner.team/stops/N503agb", "https://tec.openplanner.team/stops/N535ada"], ["https://tec.openplanner.team/stops/H2ch100a", "https://tec.openplanner.team/stops/H2ch107a"], ["https://tec.openplanner.team/stops/X653aca", "https://tec.openplanner.team/stops/X663axb"], ["https://tec.openplanner.team/stops/LHCcoul1", "https://tec.openplanner.team/stops/LSubass1"], ["https://tec.openplanner.team/stops/N512aka", "https://tec.openplanner.team/stops/N512asb"], ["https://tec.openplanner.team/stops/H1do108c", "https://tec.openplanner.team/stops/H1do109a"], ["https://tec.openplanner.team/stops/Cgzhour3", "https://tec.openplanner.team/stops/Cgzoctr1"], ["https://tec.openplanner.team/stops/N553aib", "https://tec.openplanner.team/stops/N553aja"], ["https://tec.openplanner.team/stops/Bixlaca1", "https://tec.openplanner.team/stops/Bixlaca2"], ["https://tec.openplanner.team/stops/LHGbeur3", "https://tec.openplanner.team/stops/LHGtong1"], ["https://tec.openplanner.team/stops/H1do108a", "https://tec.openplanner.team/stops/H1do111a"], ["https://tec.openplanner.team/stops/H2ca111a", "https://tec.openplanner.team/stops/H2ca111b"], ["https://tec.openplanner.team/stops/X636aza", "https://tec.openplanner.team/stops/X636bgb"], ["https://tec.openplanner.team/stops/N423afb", "https://tec.openplanner.team/stops/N423agb"], ["https://tec.openplanner.team/stops/Llgandr2", "https://tec.openplanner.team/stops/Llgbruy1"], ["https://tec.openplanner.team/stops/LSoeg--1", "https://tec.openplanner.team/stops/LSokrin2"], ["https://tec.openplanner.team/stops/LTychev1", "https://tec.openplanner.team/stops/LTyhall2"], ["https://tec.openplanner.team/stops/N221aaa", "https://tec.openplanner.team/stops/X394aca"], ["https://tec.openplanner.team/stops/LDOchev1", "https://tec.openplanner.team/stops/LHVetoi1"], ["https://tec.openplanner.team/stops/H5st161a", "https://tec.openplanner.team/stops/H5st164b"], ["https://tec.openplanner.team/stops/Bottath1", "https://tec.openplanner.team/stops/Bottcli2"], ["https://tec.openplanner.team/stops/Lvtlomb2", "https://tec.openplanner.team/stops/Lvtlomb4"], ["https://tec.openplanner.team/stops/Bbrlpar1", "https://tec.openplanner.team/stops/Bbrlpar2"], ["https://tec.openplanner.team/stops/N539afb", "https://tec.openplanner.team/stops/N540agb"], ["https://tec.openplanner.team/stops/H4ga149b", "https://tec.openplanner.team/stops/H4ga171b"], ["https://tec.openplanner.team/stops/H4ho119a", "https://tec.openplanner.team/stops/H4ho119b"], ["https://tec.openplanner.team/stops/X801ata", "https://tec.openplanner.team/stops/X801aua"], ["https://tec.openplanner.team/stops/X616aab", "https://tec.openplanner.team/stops/X695aia"], ["https://tec.openplanner.team/stops/H2hl111a", "https://tec.openplanner.team/stops/H2pe155a"], ["https://tec.openplanner.team/stops/Lfh-sci1", "https://tec.openplanner.team/stops/Lfh-sci2"], ["https://tec.openplanner.team/stops/Llghenr2", "https://tec.openplanner.team/stops/Llgrosa2"], ["https://tec.openplanner.team/stops/H1et101a", "https://tec.openplanner.team/stops/H1ju119a"], ["https://tec.openplanner.team/stops/N531aha", "https://tec.openplanner.team/stops/N576aja"], ["https://tec.openplanner.team/stops/Lagjado5", "https://tec.openplanner.team/stops/Lagjado6"], ["https://tec.openplanner.team/stops/Blhugai1", "https://tec.openplanner.team/stops/Bohngai2"], ["https://tec.openplanner.team/stops/N537aba", "https://tec.openplanner.team/stops/N537abb"], ["https://tec.openplanner.team/stops/Barcast2", "https://tec.openplanner.team/stops/Barcbav1"], ["https://tec.openplanner.team/stops/LGecite2", "https://tec.openplanner.team/stops/LGegrun1"], ["https://tec.openplanner.team/stops/X670aca", "https://tec.openplanner.team/stops/X670aib"], ["https://tec.openplanner.team/stops/Ljemont2", "https://tec.openplanner.team/stops/Lmomine1"], ["https://tec.openplanner.team/stops/N230adb", "https://tec.openplanner.team/stops/N233aab"], ["https://tec.openplanner.team/stops/LBPxhav1", "https://tec.openplanner.team/stops/LRGmoul2"], ["https://tec.openplanner.team/stops/X804bja", "https://tec.openplanner.team/stops/X804bjb"], ["https://tec.openplanner.team/stops/H4ae102b", "https://tec.openplanner.team/stops/H5rx136a"], ["https://tec.openplanner.team/stops/Lmochpl2", "https://tec.openplanner.team/stops/Lmogoff1"], ["https://tec.openplanner.team/stops/X764abb", "https://tec.openplanner.team/stops/X764ada"], ["https://tec.openplanner.team/stops/LbThau11", "https://tec.openplanner.team/stops/LbTkreu1"], ["https://tec.openplanner.team/stops/LBgbaga1", "https://tec.openplanner.team/stops/LBgbaga2"], ["https://tec.openplanner.team/stops/Bblafra2", "https://tec.openplanner.team/stops/Bblafra3"], ["https://tec.openplanner.team/stops/LFsherm1", "https://tec.openplanner.team/stops/LFsherm2"], ["https://tec.openplanner.team/stops/Bohnmes2", "https://tec.openplanner.team/stops/Bohnmes3"], ["https://tec.openplanner.team/stops/X643aaa", "https://tec.openplanner.team/stops/X644aab"], ["https://tec.openplanner.team/stops/X358acd", "https://tec.openplanner.team/stops/X358adb"], ["https://tec.openplanner.team/stops/Llgbatt2", "https://tec.openplanner.team/stops/Llghoch1"], ["https://tec.openplanner.team/stops/LvAkirc2", "https://tec.openplanner.team/stops/LvAkirc4"], ["https://tec.openplanner.team/stops/H1ms267a", "https://tec.openplanner.team/stops/H1ms290a"], ["https://tec.openplanner.team/stops/N211agb", "https://tec.openplanner.team/stops/N211ava"], ["https://tec.openplanner.team/stops/Brixpla1", "https://tec.openplanner.team/stops/Brixpro2"], ["https://tec.openplanner.team/stops/Bottcro1", "https://tec.openplanner.team/stops/Bottvtc2"], ["https://tec.openplanner.team/stops/Cjufour3", "https://tec.openplanner.team/stops/CMchag1"], ["https://tec.openplanner.team/stops/X607adb", "https://tec.openplanner.team/stops/X607aeb"], ["https://tec.openplanner.team/stops/LbUhons1", "https://tec.openplanner.team/stops/LbUhuge1"], ["https://tec.openplanner.team/stops/Bllnchv1", "https://tec.openplanner.team/stops/Bllnfeq1"], ["https://tec.openplanner.team/stops/Lenptsa1", "https://tec.openplanner.team/stops/Lenvale1"], ["https://tec.openplanner.team/stops/LFochap1", "https://tec.openplanner.team/stops/LGOdelv2"], ["https://tec.openplanner.team/stops/LBahome1", "https://tec.openplanner.team/stops/LBalacr1"], ["https://tec.openplanner.team/stops/LeYteeh2", "https://tec.openplanner.team/stops/LhSwind2"], ["https://tec.openplanner.team/stops/LOTawan1", "https://tec.openplanner.team/stops/LOTjacq1"], ["https://tec.openplanner.team/stops/X390anb", "https://tec.openplanner.team/stops/X991aeb"], ["https://tec.openplanner.team/stops/LSMlier1", "https://tec.openplanner.team/stops/LSMtarg2"], ["https://tec.openplanner.team/stops/X949aha", "https://tec.openplanner.team/stops/X949ama"], ["https://tec.openplanner.team/stops/N323aaa", "https://tec.openplanner.team/stops/N368afa"], ["https://tec.openplanner.team/stops/Cgregli2", "https://tec.openplanner.team/stops/Cgrflac2"], ["https://tec.openplanner.team/stops/H5rx106b", "https://tec.openplanner.team/stops/H5rx122a"], ["https://tec.openplanner.team/stops/N534aga", "https://tec.openplanner.team/stops/N534agb"], ["https://tec.openplanner.team/stops/Lhrlaix1", "https://tec.openplanner.team/stops/Lhrlalo2"], ["https://tec.openplanner.team/stops/H2ll196a", "https://tec.openplanner.team/stops/H2ll257b"], ["https://tec.openplanner.team/stops/LSOvoie4", "https://tec.openplanner.team/stops/LXHbell2"], ["https://tec.openplanner.team/stops/LFRspa-1", "https://tec.openplanner.team/stops/LFRspa-2"], ["https://tec.openplanner.team/stops/LMEeg--2", "https://tec.openplanner.team/stops/LMEgare1"], ["https://tec.openplanner.team/stops/X994aka", "https://tec.openplanner.team/stops/X995ade"], ["https://tec.openplanner.team/stops/N251ada", "https://tec.openplanner.team/stops/N251adb"], ["https://tec.openplanner.team/stops/Lhehoux1", "https://tec.openplanner.team/stops/Lheneuv2"], ["https://tec.openplanner.team/stops/X811ada", "https://tec.openplanner.team/stops/X811afb"], ["https://tec.openplanner.team/stops/H1cu108b", "https://tec.openplanner.team/stops/H1ms922a"], ["https://tec.openplanner.team/stops/H1ca105a", "https://tec.openplanner.team/stops/H1ne144a"], ["https://tec.openplanner.team/stops/Lvoeg--2", "https://tec.openplanner.team/stops/Lvopaqu2"], ["https://tec.openplanner.team/stops/Blpgeco2", "https://tec.openplanner.team/stops/Blpgvil1"], ["https://tec.openplanner.team/stops/Cchjaur2", "https://tec.openplanner.team/stops/Cchplan2"], ["https://tec.openplanner.team/stops/X342aaa", "https://tec.openplanner.team/stops/X342abb"], ["https://tec.openplanner.team/stops/H1fr113b", "https://tec.openplanner.team/stops/H1lb136b"], ["https://tec.openplanner.team/stops/Bitrbvo2", "https://tec.openplanner.team/stops/Bosqpqu1"], ["https://tec.openplanner.team/stops/N235abb", "https://tec.openplanner.team/stops/N235ahb"], ["https://tec.openplanner.team/stops/LWHwaas1", "https://tec.openplanner.team/stops/LWHwaas4"], ["https://tec.openplanner.team/stops/LSAmous1", "https://tec.openplanner.team/stops/LSAtrih1"], ["https://tec.openplanner.team/stops/Bgrhcen2", "https://tec.openplanner.team/stops/Bgrhpos1"], ["https://tec.openplanner.team/stops/LAx17--2", "https://tec.openplanner.team/stops/LFsbasc1"], ["https://tec.openplanner.team/stops/H2jo162b", "https://tec.openplanner.team/stops/H2jo163b"], ["https://tec.openplanner.team/stops/LSPjoli2", "https://tec.openplanner.team/stops/LSZdepo1"], ["https://tec.openplanner.team/stops/Bhen5ma1", "https://tec.openplanner.team/stops/Bhenfla1"], ["https://tec.openplanner.team/stops/X624aba", "https://tec.openplanner.team/stops/X624aka"], ["https://tec.openplanner.team/stops/Cmmlong2", "https://tec.openplanner.team/stops/Cmmphai2"], ["https://tec.openplanner.team/stops/N351ajb", "https://tec.openplanner.team/stops/N351ajc"], ["https://tec.openplanner.team/stops/X669aaa", "https://tec.openplanner.team/stops/X669ada"], ["https://tec.openplanner.team/stops/Bosqsam2", "https://tec.openplanner.team/stops/Bvirdco1"], ["https://tec.openplanner.team/stops/X354ada", "https://tec.openplanner.team/stops/X354aga"], ["https://tec.openplanner.team/stops/X650aaa", "https://tec.openplanner.team/stops/X650aab"], ["https://tec.openplanner.team/stops/N101ala", "https://tec.openplanner.team/stops/N153aaa"], ["https://tec.openplanner.team/stops/H1gi123a", "https://tec.openplanner.team/stops/H1hy128a"], ["https://tec.openplanner.team/stops/N501jjb", "https://tec.openplanner.team/stops/N501jpa"], ["https://tec.openplanner.team/stops/LBrneli1", "https://tec.openplanner.team/stops/LBrneli2"], ["https://tec.openplanner.team/stops/X721aea", "https://tec.openplanner.team/stops/X721ala"], ["https://tec.openplanner.team/stops/LCaalou2", "https://tec.openplanner.team/stops/Lfhmarn2"], ["https://tec.openplanner.team/stops/LLrchat2", "https://tec.openplanner.team/stops/LLreque2"], ["https://tec.openplanner.team/stops/Cgpchen1", "https://tec.openplanner.team/stops/Cgplhoi1"], ["https://tec.openplanner.team/stops/Buccvoi1", "https://tec.openplanner.team/stops/Buccvoi2"], ["https://tec.openplanner.team/stops/X804adb", "https://tec.openplanner.team/stops/X804bzb"], ["https://tec.openplanner.team/stops/Bchgegl2", "https://tec.openplanner.team/stops/Bchgrco2"], ["https://tec.openplanner.team/stops/H1ms253a", "https://tec.openplanner.team/stops/H1ms907a"], ["https://tec.openplanner.team/stops/Bquebth1", "https://tec.openplanner.team/stops/Bquecar2"], ["https://tec.openplanner.team/stops/X902ada", "https://tec.openplanner.team/stops/X902ala"], ["https://tec.openplanner.team/stops/H1gr123b", "https://tec.openplanner.team/stops/H1gr123d"], ["https://tec.openplanner.team/stops/Lbbviad1", "https://tec.openplanner.team/stops/Lbbviad3"], ["https://tec.openplanner.team/stops/X822ala", "https://tec.openplanner.team/stops/X822aqa"], ["https://tec.openplanner.team/stops/N531aab", "https://tec.openplanner.team/stops/N531aba"], ["https://tec.openplanner.team/stops/LVPbleh2", "https://tec.openplanner.team/stops/LVPgrot3"], ["https://tec.openplanner.team/stops/Lfhcime1", "https://tec.openplanner.team/stops/Lfhncha2"], ["https://tec.openplanner.team/stops/Bettars1", "https://tec.openplanner.team/stops/Bettlha1"], ["https://tec.openplanner.team/stops/H2ch123c", "https://tec.openplanner.team/stops/H2ch125a"], ["https://tec.openplanner.team/stops/X982bea", "https://tec.openplanner.team/stops/X982bqa"], ["https://tec.openplanner.team/stops/H5at112a", "https://tec.openplanner.team/stops/H5at137b"], ["https://tec.openplanner.team/stops/Bbounci2", "https://tec.openplanner.team/stops/Bsmgpon1"], ["https://tec.openplanner.team/stops/Bsmgmou2", "https://tec.openplanner.team/stops/Bsmgsuz2"], ["https://tec.openplanner.team/stops/Bsmgmou1", "https://tec.openplanner.team/stops/Bsmgsuz1"], ["https://tec.openplanner.team/stops/X818asc", "https://tec.openplanner.team/stops/X818asd"], ["https://tec.openplanner.team/stops/X829ada", "https://tec.openplanner.team/stops/X829adb"], ["https://tec.openplanner.team/stops/Lprceri2", "https://tec.openplanner.team/stops/Lprspra2"], ["https://tec.openplanner.team/stops/LDObell2", "https://tec.openplanner.team/stops/LSubass2"], ["https://tec.openplanner.team/stops/X780aga", "https://tec.openplanner.team/stops/X780aha"], ["https://tec.openplanner.team/stops/X767aaa", "https://tec.openplanner.team/stops/X768aab"], ["https://tec.openplanner.team/stops/X942afb", "https://tec.openplanner.team/stops/X943afb"], ["https://tec.openplanner.team/stops/X661abb", "https://tec.openplanner.team/stops/X822aja"], ["https://tec.openplanner.team/stops/LLGec--*", "https://tec.openplanner.team/stops/LORthie1"], ["https://tec.openplanner.team/stops/Bbeaech2", "https://tec.openplanner.team/stops/Bbeagae2"], ["https://tec.openplanner.team/stops/Ccogrbu2", "https://tec.openplanner.team/stops/Csoforr3"], ["https://tec.openplanner.team/stops/Lhrmeta2", "https://tec.openplanner.team/stops/Lhrspi-1"], ["https://tec.openplanner.team/stops/X954afa", "https://tec.openplanner.team/stops/X954aha"], ["https://tec.openplanner.team/stops/N509aab", "https://tec.openplanner.team/stops/N510adb"], ["https://tec.openplanner.team/stops/X681aca", "https://tec.openplanner.team/stops/X696aga"], ["https://tec.openplanner.team/stops/H1ha186a", "https://tec.openplanner.team/stops/H1ha186b"], ["https://tec.openplanner.team/stops/Bhandub1", "https://tec.openplanner.team/stops/LHNtonn2"], ["https://tec.openplanner.team/stops/X941aca", "https://tec.openplanner.team/stops/X941aeb"], ["https://tec.openplanner.team/stops/H1mb127a", "https://tec.openplanner.team/stops/H1mb128b"], ["https://tec.openplanner.team/stops/X606aaa", "https://tec.openplanner.team/stops/X648abb"], ["https://tec.openplanner.team/stops/LWRbomb3", "https://tec.openplanner.team/stops/LWRgare2"], ["https://tec.openplanner.team/stops/N562akb", "https://tec.openplanner.team/stops/N562bra"], ["https://tec.openplanner.team/stops/Cwfdame2", "https://tec.openplanner.team/stops/Cwfdupo1"], ["https://tec.openplanner.team/stops/X917adb", "https://tec.openplanner.team/stops/X917afb"], ["https://tec.openplanner.team/stops/N501gpa", "https://tec.openplanner.team/stops/N501mtd"], ["https://tec.openplanner.team/stops/LVLpane1", "https://tec.openplanner.team/stops/LVLpane2"], ["https://tec.openplanner.team/stops/N230afb", "https://tec.openplanner.team/stops/N242agb"], ["https://tec.openplanner.team/stops/H1fl134b", "https://tec.openplanner.team/stops/H1qu112b"], ["https://tec.openplanner.team/stops/LSkbo831", "https://tec.openplanner.team/stops/LSkmarq1"], ["https://tec.openplanner.team/stops/X818asa", "https://tec.openplanner.team/stops/X818asc"], ["https://tec.openplanner.team/stops/N513awb", "https://tec.openplanner.team/stops/N513axb"], ["https://tec.openplanner.team/stops/LAUcarr1", "https://tec.openplanner.team/stops/LFdbruy2"], ["https://tec.openplanner.team/stops/Bbcopre2", "https://tec.openplanner.team/stops/H3br107b"], ["https://tec.openplanner.team/stops/LMgkrui1", "https://tec.openplanner.team/stops/LMgwith1"], ["https://tec.openplanner.team/stops/LBivill1", "https://tec.openplanner.team/stops/LBivill2"], ["https://tec.openplanner.team/stops/X912acb", "https://tec.openplanner.team/stops/X912afb"], ["https://tec.openplanner.team/stops/Lcefoxh1", "https://tec.openplanner.team/stops/Lceleje2"], ["https://tec.openplanner.team/stops/Louense1", "https://tec.openplanner.team/stops/Loutras1"], ["https://tec.openplanner.team/stops/LATdame2", "https://tec.openplanner.team/stops/LWzeg--*"], ["https://tec.openplanner.team/stops/Cbtlong1", "https://tec.openplanner.team/stops/Cwsegli1"], ["https://tec.openplanner.team/stops/LSeaque1", "https://tec.openplanner.team/stops/LSeec--1"], ["https://tec.openplanner.team/stops/LEMfort1", "https://tec.openplanner.team/stops/LPleclu2"], ["https://tec.openplanner.team/stops/Cgocalv6", "https://tec.openplanner.team/stops/Cgocapu2"], ["https://tec.openplanner.team/stops/LHCmonu4", "https://tec.openplanner.team/stops/LHMhof-1"], ["https://tec.openplanner.team/stops/H1gi119b", "https://tec.openplanner.team/stops/H1gi119c"], ["https://tec.openplanner.team/stops/X793aoa", "https://tec.openplanner.team/stops/X793aob"], ["https://tec.openplanner.team/stops/H4wp151a", "https://tec.openplanner.team/stops/H4wp153a"], ["https://tec.openplanner.team/stops/Crbreve2", "https://tec.openplanner.team/stops/Cslbhau2"], ["https://tec.openplanner.team/stops/N535ajb", "https://tec.openplanner.team/stops/N535asb"], ["https://tec.openplanner.team/stops/LmD27--1", "https://tec.openplanner.team/stops/LmDwei32"], ["https://tec.openplanner.team/stops/H1br124b", "https://tec.openplanner.team/stops/H2ma202a"], ["https://tec.openplanner.team/stops/X756agd", "https://tec.openplanner.team/stops/X756aka"], ["https://tec.openplanner.team/stops/X808ama", "https://tec.openplanner.team/stops/X808amb"], ["https://tec.openplanner.team/stops/X734aga", "https://tec.openplanner.team/stops/X734agb"], ["https://tec.openplanner.team/stops/Llglaha2", "https://tec.openplanner.team/stops/Llgpere2"], ["https://tec.openplanner.team/stops/Cbwmato1", "https://tec.openplanner.team/stops/Cmqcend2"], ["https://tec.openplanner.team/stops/N557ahb", "https://tec.openplanner.team/stops/N557ajb"], ["https://tec.openplanner.team/stops/X604afc", "https://tec.openplanner.team/stops/X633acb"], ["https://tec.openplanner.team/stops/H1ms271a", "https://tec.openplanner.team/stops/H1ms271b"], ["https://tec.openplanner.team/stops/H1sg144b", "https://tec.openplanner.team/stops/H1te177a"], ["https://tec.openplanner.team/stops/Btlbmel1", "https://tec.openplanner.team/stops/Btlbtbe4"], ["https://tec.openplanner.team/stops/LWecorn2", "https://tec.openplanner.team/stops/LWerola1"], ["https://tec.openplanner.team/stops/LBscasi2", "https://tec.openplanner.team/stops/LBsfer-2"], ["https://tec.openplanner.team/stops/Cmasncb2", "https://tec.openplanner.team/stops/Cmastfi1"], ["https://tec.openplanner.team/stops/N547aba", "https://tec.openplanner.team/stops/N565alb"], ["https://tec.openplanner.team/stops/X605aca", "https://tec.openplanner.team/stops/X605adb"], ["https://tec.openplanner.team/stops/LLOhest1", "https://tec.openplanner.team/stops/LVtvalu1"], ["https://tec.openplanner.team/stops/Lcacasi1", "https://tec.openplanner.team/stops/Lcacasi2"], ["https://tec.openplanner.team/stops/H4wa155a", "https://tec.openplanner.team/stops/H4wa161a"], ["https://tec.openplanner.team/stops/Bcercsa2", "https://tec.openplanner.team/stops/Bcsempl1"], ["https://tec.openplanner.team/stops/Cnacent1", "https://tec.openplanner.team/stops/Cnacent2"], ["https://tec.openplanner.team/stops/LWechea2", "https://tec.openplanner.team/stops/LWechpl2"], ["https://tec.openplanner.team/stops/X921aia", "https://tec.openplanner.team/stops/X921arb"], ["https://tec.openplanner.team/stops/LhGfrie2", "https://tec.openplanner.team/stops/LhGlang2"], ["https://tec.openplanner.team/stops/LSTchen1", "https://tec.openplanner.team/stops/LSTdero2"], ["https://tec.openplanner.team/stops/N525aca", "https://tec.openplanner.team/stops/N525aob"], ["https://tec.openplanner.team/stops/LhPhale1", "https://tec.openplanner.team/stops/LmImirf2"], ["https://tec.openplanner.team/stops/Bstecal1", "https://tec.openplanner.team/stops/Bstetre1"], ["https://tec.openplanner.team/stops/N137aca", "https://tec.openplanner.team/stops/N137adb"], ["https://tec.openplanner.team/stops/H4do100a", "https://tec.openplanner.team/stops/H4do101a"], ["https://tec.openplanner.team/stops/Cvregl2", "https://tec.openplanner.team/stops/NH03ada"], ["https://tec.openplanner.team/stops/Bbghepi1", "https://tec.openplanner.team/stops/Bquebre2"], ["https://tec.openplanner.team/stops/Livjeu-2", "https://tec.openplanner.team/stops/Livmoul2"], ["https://tec.openplanner.team/stops/LRRecsc*", "https://tec.openplanner.team/stops/LRRelec1"], ["https://tec.openplanner.team/stops/H2ll257a", "https://tec.openplanner.team/stops/H2ll257b"], ["https://tec.openplanner.team/stops/Lsmrwan1", "https://tec.openplanner.team/stops/Lsmrwan2"], ["https://tec.openplanner.team/stops/N311aaa", "https://tec.openplanner.team/stops/N311aab"], ["https://tec.openplanner.team/stops/H1vb143a", "https://tec.openplanner.team/stops/H1wz173a"], ["https://tec.openplanner.team/stops/Cctecol2", "https://tec.openplanner.team/stops/Cctptsa1"], ["https://tec.openplanner.team/stops/H4bd107b", "https://tec.openplanner.team/stops/H4bd112b"], ["https://tec.openplanner.team/stops/LSInd--1", "https://tec.openplanner.team/stops/LSIvieu1"], ["https://tec.openplanner.team/stops/N222ada", "https://tec.openplanner.team/stops/X222aza"], ["https://tec.openplanner.team/stops/Cmabegh1", "https://tec.openplanner.team/stops/Cmachau2"], ["https://tec.openplanner.team/stops/Csecout1", "https://tec.openplanner.team/stops/Csepost1"], ["https://tec.openplanner.team/stops/Cgrchfe1", "https://tec.openplanner.team/stops/Clvmesa2"], ["https://tec.openplanner.team/stops/LGAbois1", "https://tec.openplanner.team/stops/LGAbois2"], ["https://tec.openplanner.team/stops/X746afa", "https://tec.openplanner.team/stops/X746agb"], ["https://tec.openplanner.team/stops/Cpclarm1", "https://tec.openplanner.team/stops/Cpclibe3"], ["https://tec.openplanner.team/stops/H4bc101b", "https://tec.openplanner.team/stops/H4bc102b"], ["https://tec.openplanner.team/stops/Bbstbou2", "https://tec.openplanner.team/stops/Bbstfch1"], ["https://tec.openplanner.team/stops/N215abb", "https://tec.openplanner.team/stops/N261agb"], ["https://tec.openplanner.team/stops/Blmlcar1", "https://tec.openplanner.team/stops/Blmlcim1"], ["https://tec.openplanner.team/stops/H2an100b", "https://tec.openplanner.team/stops/H2an104b"], ["https://tec.openplanner.team/stops/H4hx121a", "https://tec.openplanner.team/stops/H4hx124a"], ["https://tec.openplanner.team/stops/X758ada", "https://tec.openplanner.team/stops/X758afb"], ["https://tec.openplanner.team/stops/N501gaa", "https://tec.openplanner.team/stops/N501gfb"], ["https://tec.openplanner.team/stops/LTymahr1", "https://tec.openplanner.team/stops/LTymahr2"], ["https://tec.openplanner.team/stops/H4ry131a", "https://tec.openplanner.team/stops/H4ry140b"], ["https://tec.openplanner.team/stops/Cwfnamu2", "https://tec.openplanner.team/stops/N543bma"], ["https://tec.openplanner.team/stops/X624aab", "https://tec.openplanner.team/stops/X624abb"], ["https://tec.openplanner.team/stops/X765aea", "https://tec.openplanner.team/stops/X765aeb"], ["https://tec.openplanner.team/stops/H1bo145b", "https://tec.openplanner.team/stops/H1bo150b"], ["https://tec.openplanner.team/stops/X601bub", "https://tec.openplanner.team/stops/X601ceb"], ["https://tec.openplanner.team/stops/H2sb258b", "https://tec.openplanner.team/stops/H3lr108a"], ["https://tec.openplanner.team/stops/Barcsta2", "https://tec.openplanner.team/stops/Bgzddge1"], ["https://tec.openplanner.team/stops/H4ir163b", "https://tec.openplanner.team/stops/H4ir163c"], ["https://tec.openplanner.team/stops/X608ada", "https://tec.openplanner.team/stops/X608aob"], ["https://tec.openplanner.team/stops/X640aha", "https://tec.openplanner.team/stops/X640ajb"], ["https://tec.openplanner.team/stops/N538alb", "https://tec.openplanner.team/stops/N538ara"], ["https://tec.openplanner.team/stops/NL76aob", "https://tec.openplanner.team/stops/NL76asa"], ["https://tec.openplanner.team/stops/NL78adb", "https://tec.openplanner.team/stops/NL81aeb"], ["https://tec.openplanner.team/stops/LAUnico2", "https://tec.openplanner.team/stops/LAUvict3"], ["https://tec.openplanner.team/stops/N507aga", "https://tec.openplanner.team/stops/N508aca"], ["https://tec.openplanner.team/stops/X602afa", "https://tec.openplanner.team/stops/X602aha"], ["https://tec.openplanner.team/stops/Lpefler2", "https://tec.openplanner.team/stops/Lpelouh2"], ["https://tec.openplanner.team/stops/NH01aib", "https://tec.openplanner.team/stops/NH01ana"], ["https://tec.openplanner.team/stops/N501hra", "https://tec.openplanner.team/stops/N501hrb"], ["https://tec.openplanner.team/stops/X608aaa", "https://tec.openplanner.team/stops/X608abb"], ["https://tec.openplanner.team/stops/LCUgale1", "https://tec.openplanner.team/stops/NL57ala"], ["https://tec.openplanner.team/stops/Bnivga41", "https://tec.openplanner.team/stops/Bnivga51"], ["https://tec.openplanner.team/stops/H1ms276a", "https://tec.openplanner.team/stops/H1ms912a"], ["https://tec.openplanner.team/stops/LCOcarr2", "https://tec.openplanner.team/stops/Lpelouh2"], ["https://tec.openplanner.team/stops/X912aab", "https://tec.openplanner.team/stops/X912aka"], ["https://tec.openplanner.team/stops/LHAclin2", "https://tec.openplanner.team/stops/LVIdeva1"], ["https://tec.openplanner.team/stops/LTaouch1", "https://tec.openplanner.team/stops/LTaouch2"], ["https://tec.openplanner.team/stops/N539aia", "https://tec.openplanner.team/stops/N539aib"], ["https://tec.openplanner.team/stops/X604ala", "https://tec.openplanner.team/stops/X604alb"], ["https://tec.openplanner.team/stops/LRRbuta1", "https://tec.openplanner.team/stops/LRRrimi1"], ["https://tec.openplanner.team/stops/N201ama", "https://tec.openplanner.team/stops/N201amb"], ["https://tec.openplanner.team/stops/X733agb", "https://tec.openplanner.team/stops/X733akb"], ["https://tec.openplanner.team/stops/Bsambra1", "https://tec.openplanner.team/stops/Bsamlon2"], ["https://tec.openplanner.team/stops/X747afa", "https://tec.openplanner.team/stops/X747aha"], ["https://tec.openplanner.team/stops/Lvecite2", "https://tec.openplanner.team/stops/Lvewall2"], ["https://tec.openplanner.team/stops/X917afb", "https://tec.openplanner.team/stops/X917ahb"], ["https://tec.openplanner.team/stops/LsVgore2", "https://tec.openplanner.team/stops/LsVlind*"], ["https://tec.openplanner.team/stops/N155aed", "https://tec.openplanner.team/stops/N155ahb"], ["https://tec.openplanner.team/stops/N167abb", "https://tec.openplanner.team/stops/N244axa"], ["https://tec.openplanner.team/stops/Cvssncv2", "https://tec.openplanner.team/stops/N530ada"], ["https://tec.openplanner.team/stops/N501jga", "https://tec.openplanner.team/stops/N501jja"], ["https://tec.openplanner.team/stops/Llgfred1", "https://tec.openplanner.team/stops/Llgqmar2"], ["https://tec.openplanner.team/stops/N308aba", "https://tec.openplanner.team/stops/N385adb"], ["https://tec.openplanner.team/stops/LGeduc-2", "https://tec.openplanner.team/stops/LGepeck2"], ["https://tec.openplanner.team/stops/LTAbran1", "https://tec.openplanner.team/stops/LTAbran2"], ["https://tec.openplanner.team/stops/LHEgare1", "https://tec.openplanner.team/stops/LHEoutr2"], ["https://tec.openplanner.team/stops/LJvmart1", "https://tec.openplanner.team/stops/X576ahb"], ["https://tec.openplanner.team/stops/H4ka187a", "https://tec.openplanner.team/stops/H4ka399a"], ["https://tec.openplanner.team/stops/X948aia", "https://tec.openplanner.team/stops/X948aja"], ["https://tec.openplanner.team/stops/Lfllapi3", "https://tec.openplanner.team/stops/Lfllapi4"], ["https://tec.openplanner.team/stops/H1mq199a", "https://tec.openplanner.team/stops/H5is170a"], ["https://tec.openplanner.team/stops/H4ar103a", "https://tec.openplanner.team/stops/H4ho120a"], ["https://tec.openplanner.team/stops/H5pe132a", "https://tec.openplanner.team/stops/H5pe149b"], ["https://tec.openplanner.team/stops/LlEzoll2", "https://tec.openplanner.team/stops/LmLbeil1"], ["https://tec.openplanner.team/stops/X801bfa", "https://tec.openplanner.team/stops/X801cfb"], ["https://tec.openplanner.team/stops/Lcegare1", "https://tec.openplanner.team/stops/Lcegare2"], ["https://tec.openplanner.team/stops/X660adb", "https://tec.openplanner.team/stops/X660afb"], ["https://tec.openplanner.team/stops/LMHeg--2", "https://tec.openplanner.team/stops/LMHtill1"], ["https://tec.openplanner.team/stops/X769aea", "https://tec.openplanner.team/stops/X769asa"], ["https://tec.openplanner.team/stops/NC14apb", "https://tec.openplanner.team/stops/NC14aua"], ["https://tec.openplanner.team/stops/Bbsimpl1", "https://tec.openplanner.team/stops/Bnivlpa1"], ["https://tec.openplanner.team/stops/H1hn203a", "https://tec.openplanner.team/stops/H1ms312b"], ["https://tec.openplanner.team/stops/H1bl103a", "https://tec.openplanner.team/stops/H1pd146a"], ["https://tec.openplanner.team/stops/Cfaamio4", "https://tec.openplanner.team/stops/Cfasamb2"], ["https://tec.openplanner.team/stops/H4be145a", "https://tec.openplanner.team/stops/H5bl122b"], ["https://tec.openplanner.team/stops/Lseblan*", "https://tec.openplanner.team/stops/Lsemyrt2"], ["https://tec.openplanner.team/stops/Bhenpla1", "https://tec.openplanner.team/stops/Bhenpla2"], ["https://tec.openplanner.team/stops/LHUfonc2", "https://tec.openplanner.team/stops/LTimalv2"], ["https://tec.openplanner.team/stops/LcRkirc1", "https://tec.openplanner.team/stops/LcRkirc2"], ["https://tec.openplanner.team/stops/X948aaa", "https://tec.openplanner.team/stops/X948arb"], ["https://tec.openplanner.team/stops/LnDkreu2", "https://tec.openplanner.team/stops/LnDthel2"], ["https://tec.openplanner.team/stops/X741afb", "https://tec.openplanner.team/stops/X741aib"], ["https://tec.openplanner.team/stops/X789aba", "https://tec.openplanner.team/stops/X789aja"], ["https://tec.openplanner.team/stops/H4tf147a", "https://tec.openplanner.team/stops/H4wa155b"], ["https://tec.openplanner.team/stops/H2ll179a", "https://tec.openplanner.team/stops/H2ll197b"], ["https://tec.openplanner.team/stops/Bnivall1", "https://tec.openplanner.team/stops/Bnivite2"], ["https://tec.openplanner.team/stops/Llgbour1", "https://tec.openplanner.team/stops/Llgjasm2"], ["https://tec.openplanner.team/stops/X802ara", "https://tec.openplanner.team/stops/X802aub"], ["https://tec.openplanner.team/stops/Cvsduve1", "https://tec.openplanner.team/stops/Cvsduve2"], ["https://tec.openplanner.team/stops/X993aga", "https://tec.openplanner.team/stops/X993agb"], ["https://tec.openplanner.team/stops/H4ru243a", "https://tec.openplanner.team/stops/H4ru243b"], ["https://tec.openplanner.team/stops/LnEkirc1", "https://tec.openplanner.team/stops/LnEkirc2"], ["https://tec.openplanner.team/stops/Lflcime1", "https://tec.openplanner.team/stops/Lflterm1"], ["https://tec.openplanner.team/stops/LLbrecu1", "https://tec.openplanner.team/stops/LLbrecu2"], ["https://tec.openplanner.team/stops/LLUmc--1", "https://tec.openplanner.team/stops/LLUmc--2"], ["https://tec.openplanner.team/stops/H3so167a", "https://tec.openplanner.team/stops/H3so175b"], ["https://tec.openplanner.team/stops/Cflcarr1", "https://tec.openplanner.team/stops/Cflchmo2"], ["https://tec.openplanner.team/stops/H4ty335a", "https://tec.openplanner.team/stops/H4ty340a"], ["https://tec.openplanner.team/stops/Ccabois1", "https://tec.openplanner.team/stops/N162abb"], ["https://tec.openplanner.team/stops/N308adb", "https://tec.openplanner.team/stops/N308ayb"], ["https://tec.openplanner.team/stops/N894aea", "https://tec.openplanner.team/stops/X891aaa"], ["https://tec.openplanner.team/stops/N103aeb", "https://tec.openplanner.team/stops/N103agb"], ["https://tec.openplanner.team/stops/LMgbatt1", "https://tec.openplanner.team/stops/LMgbern2"], ["https://tec.openplanner.team/stops/Cbbcrbo1", "https://tec.openplanner.team/stops/Cbmviv1"], ["https://tec.openplanner.team/stops/X610adb", "https://tec.openplanner.team/stops/X610aea"], ["https://tec.openplanner.team/stops/Bbcocou1", "https://tec.openplanner.team/stops/H3br108d"], ["https://tec.openplanner.team/stops/Csdfboi1", "https://tec.openplanner.team/stops/Csdfboi2"], ["https://tec.openplanner.team/stops/N152abc", "https://tec.openplanner.team/stops/N152abd"], ["https://tec.openplanner.team/stops/Lghgros2", "https://tec.openplanner.team/stops/Lghhaut1"], ["https://tec.openplanner.team/stops/X756abb", "https://tec.openplanner.team/stops/X756akb"], ["https://tec.openplanner.team/stops/LYechpl1", "https://tec.openplanner.team/stops/LYechpl2"], ["https://tec.openplanner.team/stops/LFsgend1", "https://tec.openplanner.team/stops/Llithon1"], ["https://tec.openplanner.team/stops/Lougros2", "https://tec.openplanner.team/stops/Lstvill2"], ["https://tec.openplanner.team/stops/LFCkett1", "https://tec.openplanner.team/stops/LFCvoge3"], ["https://tec.openplanner.team/stops/Lstchim1", "https://tec.openplanner.team/stops/Lstpoly1"], ["https://tec.openplanner.team/stops/LElcent1", "https://tec.openplanner.team/stops/LFTeg--1"], ["https://tec.openplanner.team/stops/LmHflor2", "https://tec.openplanner.team/stops/LrTpost2"], ["https://tec.openplanner.team/stops/H4lg103a", "https://tec.openplanner.team/stops/H4lg106a"], ["https://tec.openplanner.team/stops/Cfrbrin2", "https://tec.openplanner.team/stops/Cfrtry2"], ["https://tec.openplanner.team/stops/LkEherg2", "https://tec.openplanner.team/stops/LkEschi1"], ["https://tec.openplanner.team/stops/Bbsgbos2", "https://tec.openplanner.team/stops/Bbsgbos3"], ["https://tec.openplanner.team/stops/H5fl102b", "https://tec.openplanner.team/stops/H5fl102c"], ["https://tec.openplanner.team/stops/Bixlozo1", "https://tec.openplanner.team/stops/Buccham2"], ["https://tec.openplanner.team/stops/Laltrap2", "https://tec.openplanner.team/stops/Llaeg--1"], ["https://tec.openplanner.team/stops/LNOpt--2", "https://tec.openplanner.team/stops/LREchif1"], ["https://tec.openplanner.team/stops/X746abb", "https://tec.openplanner.team/stops/X747ajb"], ["https://tec.openplanner.team/stops/LLrdrev1", "https://tec.openplanner.team/stops/LREhaut2"], ["https://tec.openplanner.team/stops/H1gh153b", "https://tec.openplanner.team/stops/H1gh163a"], ["https://tec.openplanner.team/stops/X850aba", "https://tec.openplanner.team/stops/X850ajb"], ["https://tec.openplanner.team/stops/Cmacart1", "https://tec.openplanner.team/stops/Cmamarc2"], ["https://tec.openplanner.team/stops/LMXempe1", "https://tec.openplanner.team/stops/NL37aob"], ["https://tec.openplanner.team/stops/X872aab", "https://tec.openplanner.team/stops/X872acb"], ["https://tec.openplanner.team/stops/Lsefoot2", "https://tec.openplanner.team/stops/Lsestap4"], ["https://tec.openplanner.team/stops/H2pe157b", "https://tec.openplanner.team/stops/H2pe158b"], ["https://tec.openplanner.team/stops/X923aaa", "https://tec.openplanner.team/stops/X923aha"], ["https://tec.openplanner.team/stops/X542aha", "https://tec.openplanner.team/stops/X542aib"], ["https://tec.openplanner.team/stops/N132adb", "https://tec.openplanner.team/stops/N132aeb"], ["https://tec.openplanner.team/stops/H4ka193b", "https://tec.openplanner.team/stops/H4ty270a"], ["https://tec.openplanner.team/stops/LFLcent1", "https://tec.openplanner.team/stops/LFLcent2"], ["https://tec.openplanner.team/stops/LTRchpl1", "https://tec.openplanner.team/stops/LTRfend2"], ["https://tec.openplanner.team/stops/H4er121a", "https://tec.openplanner.team/stops/H4oq223a"], ["https://tec.openplanner.team/stops/X773aia", "https://tec.openplanner.team/stops/X773aka"], ["https://tec.openplanner.team/stops/Bdoncen2", "https://tec.openplanner.team/stops/Bdonlat1"], ["https://tec.openplanner.team/stops/LVBchau1", "https://tec.openplanner.team/stops/LVBchau2"], ["https://tec.openplanner.team/stops/N514ajb", "https://tec.openplanner.team/stops/N514akb"], ["https://tec.openplanner.team/stops/LHUremy1", "https://tec.openplanner.team/stops/LHUremy2"], ["https://tec.openplanner.team/stops/LlCgren1", "https://tec.openplanner.team/stops/LpEzoll*"], ["https://tec.openplanner.team/stops/N244alb", "https://tec.openplanner.team/stops/N244arb"], ["https://tec.openplanner.team/stops/X911aua", "https://tec.openplanner.team/stops/X985aac"], ["https://tec.openplanner.team/stops/H1ms292a", "https://tec.openplanner.team/stops/H1ms912a"], ["https://tec.openplanner.team/stops/Btanbth2", "https://tec.openplanner.team/stops/Btanpla3"], ["https://tec.openplanner.team/stops/Cwfcast2", "https://tec.openplanner.team/stops/NC23agb"], ["https://tec.openplanner.team/stops/LGmloti1", "https://tec.openplanner.team/stops/LMAbijo1"], ["https://tec.openplanner.team/stops/N113adb", "https://tec.openplanner.team/stops/N113afb"], ["https://tec.openplanner.team/stops/N506aza", "https://tec.openplanner.team/stops/N506azb"], ["https://tec.openplanner.team/stops/X659abb", "https://tec.openplanner.team/stops/X659acb"], ["https://tec.openplanner.team/stops/N557adb", "https://tec.openplanner.team/stops/N557aja"], ["https://tec.openplanner.team/stops/Bwatgar3", "https://tec.openplanner.team/stops/Bwatgar5"], ["https://tec.openplanner.team/stops/N525anb", "https://tec.openplanner.team/stops/N525aoa"], ["https://tec.openplanner.team/stops/Cbfdufa2", "https://tec.openplanner.team/stops/Cbfstry2"], ["https://tec.openplanner.team/stops/N501aqa", "https://tec.openplanner.team/stops/N501aqb"], ["https://tec.openplanner.team/stops/Lansarm1", "https://tec.openplanner.team/stops/Lanyser2"], ["https://tec.openplanner.team/stops/LHTbonn1", "https://tec.openplanner.team/stops/LHTmc--1"], ["https://tec.openplanner.team/stops/LRmha262", "https://tec.openplanner.team/stops/LRmsmvo1"], ["https://tec.openplanner.team/stops/X636ava", "https://tec.openplanner.team/stops/X636bha"], ["https://tec.openplanner.team/stops/Chpplac2", "https://tec.openplanner.team/stops/Cmesafi1"], ["https://tec.openplanner.team/stops/LwYkirc1", "https://tec.openplanner.team/stops/LwYneue1"], ["https://tec.openplanner.team/stops/X817aaa", "https://tec.openplanner.team/stops/X822aca"], ["https://tec.openplanner.team/stops/LeUarno2", "https://tec.openplanner.team/stops/LeUvoss1"], ["https://tec.openplanner.team/stops/Crcrlf1", "https://tec.openplanner.team/stops/Csufrom5"], ["https://tec.openplanner.team/stops/X901awb", "https://tec.openplanner.team/stops/X902bfa"], ["https://tec.openplanner.team/stops/Ccabois1", "https://tec.openplanner.team/stops/NC28agb"], ["https://tec.openplanner.team/stops/H4ct111a", "https://tec.openplanner.team/stops/H5pe151a"], ["https://tec.openplanner.team/stops/X361aab", "https://tec.openplanner.team/stops/X371afb"], ["https://tec.openplanner.team/stops/LBWviad2", "https://tec.openplanner.team/stops/LMgbern2"], ["https://tec.openplanner.team/stops/Bbstpan1", "https://tec.openplanner.team/stops/Cbtstac1"], ["https://tec.openplanner.team/stops/LVHcent1", "https://tec.openplanner.team/stops/LVHcent2"], ["https://tec.openplanner.team/stops/LaMfuss1", "https://tec.openplanner.team/stops/LaMhe421"], ["https://tec.openplanner.team/stops/H4bd110b", "https://tec.openplanner.team/stops/H4te255b"], ["https://tec.openplanner.team/stops/Cbwdoua1", "https://tec.openplanner.team/stops/Cbweco1"], ["https://tec.openplanner.team/stops/X696aia", "https://tec.openplanner.team/stops/X696aka"], ["https://tec.openplanner.team/stops/N150acb", "https://tec.openplanner.team/stops/N150adb"], ["https://tec.openplanner.team/stops/N117aza", "https://tec.openplanner.team/stops/N147adb"], ["https://tec.openplanner.team/stops/LBQmaye2", "https://tec.openplanner.team/stops/LBQplac2"], ["https://tec.openplanner.team/stops/N520ahb", "https://tec.openplanner.team/stops/N520aib"], ["https://tec.openplanner.team/stops/N351akd", "https://tec.openplanner.team/stops/N351asa"], ["https://tec.openplanner.team/stops/LJOchar1", "https://tec.openplanner.team/stops/LMEgare2"], ["https://tec.openplanner.team/stops/X662aca", "https://tec.openplanner.team/stops/X662acb"], ["https://tec.openplanner.team/stops/X659afb", "https://tec.openplanner.team/stops/X659ata"], ["https://tec.openplanner.team/stops/Brixpje2", "https://tec.openplanner.team/stops/Brsrcha2"], ["https://tec.openplanner.team/stops/Bwavgar2", "https://tec.openplanner.team/stops/Bwavgar3"], ["https://tec.openplanner.team/stops/Beclbar1", "https://tec.openplanner.team/stops/Beclfde2"], ["https://tec.openplanner.team/stops/Bnodlce2", "https://tec.openplanner.team/stops/Bolgmpl1"], ["https://tec.openplanner.team/stops/Lagtenn1", "https://tec.openplanner.team/stops/Lagtenn2"], ["https://tec.openplanner.team/stops/LGDgdou1", "https://tec.openplanner.team/stops/LWahott2"], ["https://tec.openplanner.team/stops/LWNberg1", "https://tec.openplanner.team/stops/NL72afa"], ["https://tec.openplanner.team/stops/LBVcent2", "https://tec.openplanner.team/stops/LBVronx2"], ["https://tec.openplanner.team/stops/H1bo145a", "https://tec.openplanner.team/stops/H1bo145b"], ["https://tec.openplanner.team/stops/X757ada", "https://tec.openplanner.team/stops/X757afa"], ["https://tec.openplanner.team/stops/LGmeg--1", "https://tec.openplanner.team/stops/LGmloti2"], ["https://tec.openplanner.team/stops/H3bi100a", "https://tec.openplanner.team/stops/H3bi106b"], ["https://tec.openplanner.team/stops/X718aka", "https://tec.openplanner.team/stops/X719aaa"], ["https://tec.openplanner.team/stops/H1ml109b", "https://tec.openplanner.team/stops/H1ml110b"], ["https://tec.openplanner.team/stops/H1sb144b", "https://tec.openplanner.team/stops/H1sb145b"], ["https://tec.openplanner.team/stops/Bettlha2", "https://tec.openplanner.team/stops/Bixlfla2"], ["https://tec.openplanner.team/stops/LGLecol2", "https://tec.openplanner.team/stops/LGLeg--2"], ["https://tec.openplanner.team/stops/Bquepla2", "https://tec.openplanner.team/stops/Bquereb1"], ["https://tec.openplanner.team/stops/LHUdelc3", "https://tec.openplanner.team/stops/LHUgdpl1"], ["https://tec.openplanner.team/stops/Btubga03", "https://tec.openplanner.team/stops/Btubga04"], ["https://tec.openplanner.team/stops/LgRha211", "https://tec.openplanner.team/stops/LgRhouf1"], ["https://tec.openplanner.team/stops/H4rx143b", "https://tec.openplanner.team/stops/H4rx176b"], ["https://tec.openplanner.team/stops/N508apb", "https://tec.openplanner.team/stops/N516aba"], ["https://tec.openplanner.team/stops/X897ada", "https://tec.openplanner.team/stops/X897aeb"], ["https://tec.openplanner.team/stops/Ccigene1", "https://tec.openplanner.team/stops/Cciqueu2"], ["https://tec.openplanner.team/stops/N501hmb", "https://tec.openplanner.team/stops/N501ima"], ["https://tec.openplanner.team/stops/Bgemgjo2", "https://tec.openplanner.team/stops/N522bvf"], ["https://tec.openplanner.team/stops/H1qu119b", "https://tec.openplanner.team/stops/H1wa142a"], ["https://tec.openplanner.team/stops/Cmosaba1", "https://tec.openplanner.team/stops/Cmosaba2"], ["https://tec.openplanner.team/stops/H1by107b", "https://tec.openplanner.team/stops/H1by109a"], ["https://tec.openplanner.team/stops/X950adb", "https://tec.openplanner.team/stops/X955abb"], ["https://tec.openplanner.team/stops/LHUneuv2", "https://tec.openplanner.team/stops/LHUpost4"], ["https://tec.openplanner.team/stops/LJAbois1", "https://tec.openplanner.team/stops/Ljhsart4"], ["https://tec.openplanner.team/stops/X601cia", "https://tec.openplanner.team/stops/X662aja"], ["https://tec.openplanner.team/stops/X636bba", "https://tec.openplanner.team/stops/X636bea"], ["https://tec.openplanner.team/stops/H1by103a", "https://tec.openplanner.team/stops/H1sy143d"], ["https://tec.openplanner.team/stops/H4jm117b", "https://tec.openplanner.team/stops/H4we139a"], ["https://tec.openplanner.team/stops/N501dfa", "https://tec.openplanner.team/stops/N501myb"], ["https://tec.openplanner.team/stops/Cgncail2", "https://tec.openplanner.team/stops/Cgnpass2"], ["https://tec.openplanner.team/stops/X625aab", "https://tec.openplanner.team/stops/X625afb"], ["https://tec.openplanner.team/stops/N516alb", "https://tec.openplanner.team/stops/N516amb"], ["https://tec.openplanner.team/stops/LbUkrin2", "https://tec.openplanner.team/stops/LlSzoll2"], ["https://tec.openplanner.team/stops/LTheg--1", "https://tec.openplanner.team/stops/LThelse2"], ["https://tec.openplanner.team/stops/H3br100b", "https://tec.openplanner.team/stops/H3br101b"], ["https://tec.openplanner.team/stops/X622acb", "https://tec.openplanner.team/stops/X622adb"], ["https://tec.openplanner.team/stops/LWn24--1", "https://tec.openplanner.team/stops/LWn24--2"], ["https://tec.openplanner.team/stops/N134ada", "https://tec.openplanner.team/stops/N134aeb"], ["https://tec.openplanner.team/stops/LWecarr2", "https://tec.openplanner.team/stops/LWegdry2"], ["https://tec.openplanner.team/stops/H4ne137b", "https://tec.openplanner.team/stops/H4ne145b"], ["https://tec.openplanner.team/stops/Cluchbl2", "https://tec.openplanner.team/stops/Cluplve4"], ["https://tec.openplanner.team/stops/LPLecco2", "https://tec.openplanner.team/stops/LPLg90-1"], ["https://tec.openplanner.team/stops/LaHzoll*", "https://tec.openplanner.team/stops/X685aib"], ["https://tec.openplanner.team/stops/H1by103a", "https://tec.openplanner.team/stops/H1by108b"], ["https://tec.openplanner.team/stops/LSdbvue1", "https://tec.openplanner.team/stops/LSdcent1"], ["https://tec.openplanner.team/stops/N501ebb", "https://tec.openplanner.team/stops/N501eby"], ["https://tec.openplanner.team/stops/H4ef111a", "https://tec.openplanner.team/stops/H4po127a"], ["https://tec.openplanner.team/stops/X886ada", "https://tec.openplanner.team/stops/X897afa"], ["https://tec.openplanner.team/stops/X640aia", "https://tec.openplanner.team/stops/X640aja"], ["https://tec.openplanner.team/stops/Cfanvmo2", "https://tec.openplanner.team/stops/Cfapiro2"], ["https://tec.openplanner.team/stops/LENarde2", "https://tec.openplanner.team/stops/LENecol1"], ["https://tec.openplanner.team/stops/X661aya", "https://tec.openplanner.team/stops/X661ayb"], ["https://tec.openplanner.team/stops/H1og136a", "https://tec.openplanner.team/stops/H5fl101a"], ["https://tec.openplanner.team/stops/Lhrbrou1", "https://tec.openplanner.team/stops/Lhrlaix2"], ["https://tec.openplanner.team/stops/N506aab", "https://tec.openplanner.team/stops/N506bob"], ["https://tec.openplanner.team/stops/Clusncb1", "https://tec.openplanner.team/stops/Clusncb4"], ["https://tec.openplanner.team/stops/X801bxa", "https://tec.openplanner.team/stops/X801bzb"], ["https://tec.openplanner.team/stops/H4mo158a", "https://tec.openplanner.team/stops/H4mo158b"], ["https://tec.openplanner.team/stops/Bniv4co2", "https://tec.openplanner.team/stops/Bnivcma1"], ["https://tec.openplanner.team/stops/Lghalli2", "https://tec.openplanner.team/stops/Lghremy1"], ["https://tec.openplanner.team/stops/LMforba1", "https://tec.openplanner.team/stops/LMfsart1"], ["https://tec.openplanner.team/stops/LmImirf1", "https://tec.openplanner.team/stops/LmRh%C3%B6811"], ["https://tec.openplanner.team/stops/Cchlamb1", "https://tec.openplanner.team/stops/Clodupr1"], ["https://tec.openplanner.team/stops/Bblaall2", "https://tec.openplanner.team/stops/Bblasse1"], ["https://tec.openplanner.team/stops/X601bda", "https://tec.openplanner.team/stops/X601bhb"], ["https://tec.openplanner.team/stops/LHrprie1", "https://tec.openplanner.team/stops/LHseg--3"], ["https://tec.openplanner.team/stops/X681agb", "https://tec.openplanner.team/stops/X687aka"], ["https://tec.openplanner.team/stops/X946ada", "https://tec.openplanner.team/stops/X948ada"], ["https://tec.openplanner.team/stops/X629abb", "https://tec.openplanner.team/stops/X629acb"], ["https://tec.openplanner.team/stops/N308bcb", "https://tec.openplanner.team/stops/N308bia"], ["https://tec.openplanner.team/stops/LdUespe2", "https://tec.openplanner.team/stops/LoDulf-1"], ["https://tec.openplanner.team/stops/LESgare*", "https://tec.openplanner.team/stops/LFNhame1"], ["https://tec.openplanner.team/stops/Bquegen1", "https://tec.openplanner.team/stops/Bquegen2"], ["https://tec.openplanner.team/stops/LSPchap3", "https://tec.openplanner.team/stops/LSPClem1"], ["https://tec.openplanner.team/stops/X622aaa", "https://tec.openplanner.team/stops/X622aba"], ["https://tec.openplanner.team/stops/LVIcarm1", "https://tec.openplanner.team/stops/LVIdepo2"], ["https://tec.openplanner.team/stops/LFAwale1", "https://tec.openplanner.team/stops/LLWcarr2"], ["https://tec.openplanner.team/stops/Lbrdepo1", "https://tec.openplanner.team/stops/Lbrdepo2"], ["https://tec.openplanner.team/stops/X897aia", "https://tec.openplanner.team/stops/X897aib"], ["https://tec.openplanner.team/stops/LMOelva4", "https://tec.openplanner.team/stops/LMOs45-2"], ["https://tec.openplanner.team/stops/Bmrsmco1", "https://tec.openplanner.team/stops/Bmrspel1"], ["https://tec.openplanner.team/stops/LeUath2", "https://tec.openplanner.team/stops/LeUath%C3%A41"], ["https://tec.openplanner.team/stops/LWapl--1", "https://tec.openplanner.team/stops/LWapl--3"], ["https://tec.openplanner.team/stops/LAnfall1", "https://tec.openplanner.team/stops/LVthest4"], ["https://tec.openplanner.team/stops/LSG111-1", "https://tec.openplanner.team/stops/LSkdouf2"], ["https://tec.openplanner.team/stops/Bhen5ma2", "https://tec.openplanner.team/stops/Bhenfer1"], ["https://tec.openplanner.team/stops/X982aac", "https://tec.openplanner.team/stops/X982byb"], ["https://tec.openplanner.team/stops/Bgzddub1", "https://tec.openplanner.team/stops/Bgzdpco1"], ["https://tec.openplanner.team/stops/LLecarr3", "https://tec.openplanner.team/stops/X547anb"], ["https://tec.openplanner.team/stops/Bbchndb1", "https://tec.openplanner.team/stops/Bbchndb2"], ["https://tec.openplanner.team/stops/LAYchal1", "https://tec.openplanner.team/stops/LAYchal2"], ["https://tec.openplanner.team/stops/Llgbonn2", "https://tec.openplanner.team/stops/Llggosw1"], ["https://tec.openplanner.team/stops/X638apa", "https://tec.openplanner.team/stops/X638aqb"], ["https://tec.openplanner.team/stops/H4bv145a", "https://tec.openplanner.team/stops/H4os222b"], ["https://tec.openplanner.team/stops/N543bxb", "https://tec.openplanner.team/stops/N543byb"], ["https://tec.openplanner.team/stops/N531ada", "https://tec.openplanner.team/stops/N531aea"], ["https://tec.openplanner.team/stops/X608awa", "https://tec.openplanner.team/stops/X608axa"], ["https://tec.openplanner.team/stops/Bwatgib2", "https://tec.openplanner.team/stops/Bwatnrs2"], ["https://tec.openplanner.team/stops/Lcheg--2", "https://tec.openplanner.team/stops/Lchpniv2"], ["https://tec.openplanner.team/stops/H1ho123a", "https://tec.openplanner.team/stops/H1ho141a"], ["https://tec.openplanner.team/stops/LBRmc--3", "https://tec.openplanner.team/stops/LBRpt--1"], ["https://tec.openplanner.team/stops/LSNbouh4", "https://tec.openplanner.team/stops/LSNecol4"], ["https://tec.openplanner.team/stops/H3bi113b", "https://tec.openplanner.team/stops/H3bi119b"], ["https://tec.openplanner.team/stops/Bclglbu1", "https://tec.openplanner.team/stops/Bclgvmo1"], ["https://tec.openplanner.team/stops/LeUroll1", "https://tec.openplanner.team/stops/LeUvoul1"], ["https://tec.openplanner.team/stops/H1si155a", "https://tec.openplanner.team/stops/H1si155b"], ["https://tec.openplanner.team/stops/N558aea", "https://tec.openplanner.team/stops/N558ama"], ["https://tec.openplanner.team/stops/Caccent1", "https://tec.openplanner.team/stops/Cacragu2"], ["https://tec.openplanner.team/stops/H4mo188a", "https://tec.openplanner.team/stops/H4mo208b"], ["https://tec.openplanner.team/stops/Cbtgemi2", "https://tec.openplanner.team/stops/Cfrfede1"], ["https://tec.openplanner.team/stops/X616aaa", "https://tec.openplanner.team/stops/X617aeb"], ["https://tec.openplanner.team/stops/LHHronh1", "https://tec.openplanner.team/stops/LHHronh2"], ["https://tec.openplanner.team/stops/H4to131b", "https://tec.openplanner.team/stops/H4to138b"], ["https://tec.openplanner.team/stops/H4or114b", "https://tec.openplanner.team/stops/H4or116a"], ["https://tec.openplanner.team/stops/H4ty275a", "https://tec.openplanner.team/stops/H4wc372a"], ["https://tec.openplanner.team/stops/LSIcour2", "https://tec.openplanner.team/stops/LSIters1"], ["https://tec.openplanner.team/stops/LkAbahn*", "https://tec.openplanner.team/stops/LSogare2"], ["https://tec.openplanner.team/stops/H4mv187b", "https://tec.openplanner.team/stops/H4mv188b"], ["https://tec.openplanner.team/stops/H1mv240b", "https://tec.openplanner.team/stops/H1mv242b"], ["https://tec.openplanner.team/stops/Cdostco2", "https://tec.openplanner.team/stops/Ctuecol1"], ["https://tec.openplanner.team/stops/Bjodint2", "https://tec.openplanner.team/stops/NR10aab"], ["https://tec.openplanner.team/stops/LhSfrep1", "https://tec.openplanner.team/stops/LhSgete1"], ["https://tec.openplanner.team/stops/H1si151a", "https://tec.openplanner.team/stops/H1si151b"], ["https://tec.openplanner.team/stops/LFRfagn2", "https://tec.openplanner.team/stops/LSxeg--2"], ["https://tec.openplanner.team/stops/X999acb", "https://tec.openplanner.team/stops/X999amb"], ["https://tec.openplanner.team/stops/H4av100b", "https://tec.openplanner.team/stops/H4av103a"], ["https://tec.openplanner.team/stops/LFdbagu2", "https://tec.openplanner.team/stops/LFdbruy1"], ["https://tec.openplanner.team/stops/H4my123a", "https://tec.openplanner.team/stops/H4pe126b"], ["https://tec.openplanner.team/stops/LSBrouf1", "https://tec.openplanner.team/stops/LSBrouf2"], ["https://tec.openplanner.team/stops/Bgnvdep1", "https://tec.openplanner.team/stops/Bgnvvol2"], ["https://tec.openplanner.team/stops/Cgzhour3", "https://tec.openplanner.team/stops/Cthrlef2"], ["https://tec.openplanner.team/stops/LFAec--2", "https://tec.openplanner.team/stops/LFAscie2"], ["https://tec.openplanner.team/stops/X639ama", "https://tec.openplanner.team/stops/X675aba"], ["https://tec.openplanner.team/stops/H1th183a", "https://tec.openplanner.team/stops/H1th183b"], ["https://tec.openplanner.team/stops/X805agb", "https://tec.openplanner.team/stops/X807aba"], ["https://tec.openplanner.team/stops/Lagmair5", "https://tec.openplanner.team/stops/Lagpera1"], ["https://tec.openplanner.team/stops/X633aea", "https://tec.openplanner.team/stops/X633afa"], ["https://tec.openplanner.team/stops/X901ata", "https://tec.openplanner.team/stops/X901bpa"], ["https://tec.openplanner.team/stops/LHOmc--1", "https://tec.openplanner.team/stops/LSRbouh1"], ["https://tec.openplanner.team/stops/LGLc12-3", "https://tec.openplanner.team/stops/LGLlaur2"], ["https://tec.openplanner.team/stops/Ladclem1", "https://tec.openplanner.team/stops/Ldipost1"], ["https://tec.openplanner.team/stops/LCUgale2", "https://tec.openplanner.team/stops/LCUmars2"], ["https://tec.openplanner.team/stops/Lmlboul1", "https://tec.openplanner.team/stops/Lmlcite*"], ["https://tec.openplanner.team/stops/LVIpneu1", "https://tec.openplanner.team/stops/LVIsouv3"], ["https://tec.openplanner.team/stops/H1bb120b", "https://tec.openplanner.team/stops/H1do127a"], ["https://tec.openplanner.team/stops/LNCneuv1", "https://tec.openplanner.team/stops/LRachen2"], ["https://tec.openplanner.team/stops/Lrcvill1", "https://tec.openplanner.team/stops/Lrcvill4"], ["https://tec.openplanner.team/stops/LVLmabi2", "https://tec.openplanner.team/stops/LVLpane1"], ["https://tec.openplanner.team/stops/H1ca184a", "https://tec.openplanner.team/stops/H1ca184b"], ["https://tec.openplanner.team/stops/X672aca", "https://tec.openplanner.team/stops/X672aka"], ["https://tec.openplanner.team/stops/H1ni320a", "https://tec.openplanner.team/stops/H1ni321a"], ["https://tec.openplanner.team/stops/H1bd102a", "https://tec.openplanner.team/stops/H1by109b"], ["https://tec.openplanner.team/stops/N205ada", "https://tec.openplanner.team/stops/N205adb"], ["https://tec.openplanner.team/stops/Lrcchpl1", "https://tec.openplanner.team/stops/Lvtpepi2"], ["https://tec.openplanner.team/stops/Bnivite2", "https://tec.openplanner.team/stops/Bnivspi1"], ["https://tec.openplanner.team/stops/Lceprog2", "https://tec.openplanner.team/stops/Lgrjobe2"], ["https://tec.openplanner.team/stops/LLUdoya2", "https://tec.openplanner.team/stops/LLUtill4"], ["https://tec.openplanner.team/stops/X548abb", "https://tec.openplanner.team/stops/X784aga"], ["https://tec.openplanner.team/stops/LTaeg--2", "https://tec.openplanner.team/stops/LTatult4"], ["https://tec.openplanner.team/stops/N235acb", "https://tec.openplanner.team/stops/N235afa"], ["https://tec.openplanner.team/stops/N501dga", "https://tec.openplanner.team/stops/N501dja"], ["https://tec.openplanner.team/stops/Cflgazo1", "https://tec.openplanner.team/stops/Cflgazo2"], ["https://tec.openplanner.team/stops/X750aha", "https://tec.openplanner.team/stops/X750ahb"], ["https://tec.openplanner.team/stops/X636aka", "https://tec.openplanner.team/stops/X636beb"], ["https://tec.openplanner.team/stops/X604ahb", "https://tec.openplanner.team/stops/X618aaa"], ["https://tec.openplanner.team/stops/LBbbac-1", "https://tec.openplanner.team/stops/LLVfoss1"], ["https://tec.openplanner.team/stops/Bwavbpi1", "https://tec.openplanner.team/stops/Bwavlca2"], ["https://tec.openplanner.team/stops/Cbuplac3", "https://tec.openplanner.team/stops/Cfnsenz1"], ["https://tec.openplanner.team/stops/Cradado2", "https://tec.openplanner.team/stops/Craferr1"], ["https://tec.openplanner.team/stops/Beclesp2", "https://tec.openplanner.team/stops/H2ec105a"], ["https://tec.openplanner.team/stops/Bwspcar1", "https://tec.openplanner.team/stops/Bwspcar2"], ["https://tec.openplanner.team/stops/H4wi161a", "https://tec.openplanner.team/stops/H4wi170a"], ["https://tec.openplanner.team/stops/Cvrchap1", "https://tec.openplanner.team/stops/Cvregl1"], ["https://tec.openplanner.team/stops/LHHcite2", "https://tec.openplanner.team/stops/LHHtill2"], ["https://tec.openplanner.team/stops/Ljubois1", "https://tec.openplanner.team/stops/Ljujaur1"], ["https://tec.openplanner.team/stops/H4ty293a", "https://tec.openplanner.team/stops/H4ty303a"], ["https://tec.openplanner.team/stops/N502aab", "https://tec.openplanner.team/stops/N502acb"], ["https://tec.openplanner.team/stops/X902aza", "https://tec.openplanner.team/stops/X902azb"], ["https://tec.openplanner.team/stops/N155aib", "https://tec.openplanner.team/stops/N170acb"], ["https://tec.openplanner.team/stops/LSZdepo1", "https://tec.openplanner.team/stops/LTgsous1"], ["https://tec.openplanner.team/stops/Lagfour1", "https://tec.openplanner.team/stops/Llgpont2"], ["https://tec.openplanner.team/stops/LrDneun2", "https://tec.openplanner.team/stops/LrDrose3"], ["https://tec.openplanner.team/stops/LeUnisp1", "https://tec.openplanner.team/stops/LkTtal-1"], ["https://tec.openplanner.team/stops/N138aha", "https://tec.openplanner.team/stops/N426afb"], ["https://tec.openplanner.team/stops/LmSkape2", "https://tec.openplanner.team/stops/LnDdorf1"], ["https://tec.openplanner.team/stops/Bgnpgen1", "https://tec.openplanner.team/stops/Bgnpjbe1"], ["https://tec.openplanner.team/stops/Berneco2", "https://tec.openplanner.team/stops/Bgemibb1"], ["https://tec.openplanner.team/stops/Bbgnpla1", "https://tec.openplanner.team/stops/N584alb"], ["https://tec.openplanner.team/stops/Bblmcel2", "https://tec.openplanner.team/stops/Bchamco1"], ["https://tec.openplanner.team/stops/H4bv146b", "https://tec.openplanner.team/stops/H4os223a"], ["https://tec.openplanner.team/stops/N534bma", "https://tec.openplanner.team/stops/N534bmb"], ["https://tec.openplanner.team/stops/Cmlgche1", "https://tec.openplanner.team/stops/Cmltemp3"], ["https://tec.openplanner.team/stops/Bspkdon2", "https://tec.openplanner.team/stops/H1mk115a"], ["https://tec.openplanner.team/stops/LSceg--3", "https://tec.openplanner.team/stops/LTNegli1"], ["https://tec.openplanner.team/stops/N234aea", "https://tec.openplanner.team/stops/N234afb"], ["https://tec.openplanner.team/stops/Bgzdgpa1", "https://tec.openplanner.team/stops/Bwavlon1"], ["https://tec.openplanner.team/stops/H4mo153d", "https://tec.openplanner.team/stops/H4mo169a"], ["https://tec.openplanner.team/stops/Blemmar2", "https://tec.openplanner.team/stops/Btubhoq2"], ["https://tec.openplanner.team/stops/N106anb", "https://tec.openplanner.team/stops/N106apa"], ["https://tec.openplanner.team/stops/Bsamlon1", "https://tec.openplanner.team/stops/Cwgmell4"], ["https://tec.openplanner.team/stops/Csyjumo1", "https://tec.openplanner.team/stops/Csyjumo2"], ["https://tec.openplanner.team/stops/Cgnquer1", "https://tec.openplanner.team/stops/Cgnquer2"], ["https://tec.openplanner.team/stops/X731aia", "https://tec.openplanner.team/stops/X731aib"], ["https://tec.openplanner.team/stops/N508aja", "https://tec.openplanner.team/stops/N508ajb"], ["https://tec.openplanner.team/stops/X983aab", "https://tec.openplanner.team/stops/X986abb"], ["https://tec.openplanner.team/stops/H1bg110b", "https://tec.openplanner.team/stops/H1hy130a"], ["https://tec.openplanner.team/stops/H1be104a", "https://tec.openplanner.team/stops/H1er108a"], ["https://tec.openplanner.team/stops/Llmbell2", "https://tec.openplanner.team/stops/Llmdavi1"], ["https://tec.openplanner.team/stops/LHaeg--1", "https://tec.openplanner.team/stops/X982aha"], ["https://tec.openplanner.team/stops/X261acb", "https://tec.openplanner.team/stops/X982aad"], ["https://tec.openplanner.team/stops/Bgoegma2", "https://tec.openplanner.team/stops/Bgoesch4"], ["https://tec.openplanner.team/stops/H1fr125a", "https://tec.openplanner.team/stops/H1lb138b"], ["https://tec.openplanner.team/stops/H2me116b", "https://tec.openplanner.team/stops/H2me117b"], ["https://tec.openplanner.team/stops/LBLplas1", "https://tec.openplanner.team/stops/LMotrem1"], ["https://tec.openplanner.team/stops/LOunebl2", "https://tec.openplanner.team/stops/LOuplac3"], ["https://tec.openplanner.team/stops/Buccbas1", "https://tec.openplanner.team/stops/Buccchu2"], ["https://tec.openplanner.team/stops/X636akb", "https://tec.openplanner.team/stops/X636beb"], ["https://tec.openplanner.team/stops/H4wa149a", "https://tec.openplanner.team/stops/H4wa153a"], ["https://tec.openplanner.team/stops/X653adb", "https://tec.openplanner.team/stops/X653add"], ["https://tec.openplanner.team/stops/X601bna", "https://tec.openplanner.team/stops/X601cab"], ["https://tec.openplanner.team/stops/N513ara", "https://tec.openplanner.team/stops/N513asa"], ["https://tec.openplanner.team/stops/Btlgast2", "https://tec.openplanner.team/stops/Btlgreg2"], ["https://tec.openplanner.team/stops/X713aib", "https://tec.openplanner.team/stops/X713ajb"], ["https://tec.openplanner.team/stops/H4te253b", "https://tec.openplanner.team/stops/H4te260b"], ["https://tec.openplanner.team/stops/H2jo164a", "https://tec.openplanner.team/stops/H2ll260b"], ["https://tec.openplanner.team/stops/X613aba", "https://tec.openplanner.team/stops/X613adb"], ["https://tec.openplanner.team/stops/LAWbrou1", "https://tec.openplanner.team/stops/Lghlogi2"], ["https://tec.openplanner.team/stops/N522asb", "https://tec.openplanner.team/stops/N522ata"], ["https://tec.openplanner.team/stops/Llgcrgu2", "https://tec.openplanner.team/stops/Llghopo1"], ["https://tec.openplanner.team/stops/H1gr115b", "https://tec.openplanner.team/stops/H1mk111a"], ["https://tec.openplanner.team/stops/Lhurfay2", "https://tec.openplanner.team/stops/LSXvill2"], ["https://tec.openplanner.team/stops/LeYroth2", "https://tec.openplanner.team/stops/LhSwind1"], ["https://tec.openplanner.team/stops/Lgrbill1", "https://tec.openplanner.team/stops/Lgrbill2"], ["https://tec.openplanner.team/stops/Buccpes2", "https://tec.openplanner.team/stops/Buccpin2"], ["https://tec.openplanner.team/stops/Bsmgpon2", "https://tec.openplanner.team/stops/Btanpla3"], ["https://tec.openplanner.team/stops/LeUbael1", "https://tec.openplanner.team/stops/LhEtivo1"], ["https://tec.openplanner.team/stops/LOTjacq2", "https://tec.openplanner.team/stops/LOTmonu2"], ["https://tec.openplanner.team/stops/N519ara", "https://tec.openplanner.team/stops/N519arb"], ["https://tec.openplanner.team/stops/X601cfa", "https://tec.openplanner.team/stops/X601cpa"], ["https://tec.openplanner.team/stops/N542aha", "https://tec.openplanner.team/stops/N542akb"], ["https://tec.openplanner.team/stops/N532aeb", "https://tec.openplanner.team/stops/N532ana"], ["https://tec.openplanner.team/stops/Bwatdmo1", "https://tec.openplanner.team/stops/Bwategl1"], ["https://tec.openplanner.team/stops/H4bd107a", "https://tec.openplanner.team/stops/H4bd110b"], ["https://tec.openplanner.team/stops/N425afa", "https://tec.openplanner.team/stops/N426aca"], ["https://tec.openplanner.team/stops/Bbst4br4", "https://tec.openplanner.team/stops/Cbtbras2"], ["https://tec.openplanner.team/stops/Bquecja1", "https://tec.openplanner.team/stops/Bquepbr1"], ["https://tec.openplanner.team/stops/LaSkape1", "https://tec.openplanner.team/stops/LaSneuh2"], ["https://tec.openplanner.team/stops/Bblamsj2", "https://tec.openplanner.team/stops/Bblavba1"], ["https://tec.openplanner.team/stops/LWAalou1", "https://tec.openplanner.team/stops/LWAwegg1"], ["https://tec.openplanner.team/stops/N232acb", "https://tec.openplanner.team/stops/N287aaa"], ["https://tec.openplanner.team/stops/X982bca", "https://tec.openplanner.team/stops/X982cab"], ["https://tec.openplanner.team/stops/N578abb", "https://tec.openplanner.team/stops/N578acb"], ["https://tec.openplanner.team/stops/Lemboul2", "https://tec.openplanner.team/stops/Lemmusc1"], ["https://tec.openplanner.team/stops/Chhdubr1", "https://tec.openplanner.team/stops/Chhegli2"], ["https://tec.openplanner.team/stops/H4eg101b", "https://tec.openplanner.team/stops/H4eg102a"], ["https://tec.openplanner.team/stops/Cfocmed1", "https://tec.openplanner.team/stops/Cforepo2"], ["https://tec.openplanner.team/stops/LmSdorf1", "https://tec.openplanner.team/stops/LmSluxh1"], ["https://tec.openplanner.team/stops/H1bb120b", "https://tec.openplanner.team/stops/H1ho133a"], ["https://tec.openplanner.team/stops/Ctrepin1", "https://tec.openplanner.team/stops/Ctrepin2"], ["https://tec.openplanner.team/stops/LMNcite1", "https://tec.openplanner.team/stops/LMNentr2"], ["https://tec.openplanner.team/stops/Bwatric1", "https://tec.openplanner.team/stops/Bwatvco2"], ["https://tec.openplanner.team/stops/Cgocat2", "https://tec.openplanner.team/stops/Cgosoux1"], ["https://tec.openplanner.team/stops/LCOdrol2", "https://tec.openplanner.team/stops/Lpevesd1"], ["https://tec.openplanner.team/stops/LREairp2", "https://tec.openplanner.team/stops/LREprea2"], ["https://tec.openplanner.team/stops/N343aeb", "https://tec.openplanner.team/stops/N343aia"], ["https://tec.openplanner.team/stops/X637aja", "https://tec.openplanner.team/stops/X637ajb"], ["https://tec.openplanner.team/stops/X746adb", "https://tec.openplanner.team/stops/X746afa"], ["https://tec.openplanner.team/stops/Cbbcent2", "https://tec.openplanner.team/stops/Cbbcrbo1"], ["https://tec.openplanner.team/stops/X725ala", "https://tec.openplanner.team/stops/X725ana"], ["https://tec.openplanner.team/stops/LSParca1", "https://tec.openplanner.team/stops/LSPxhou2"], ["https://tec.openplanner.team/stops/Bllnpsc2", "https://tec.openplanner.team/stops/Bllnrge2"], ["https://tec.openplanner.team/stops/N166aaa", "https://tec.openplanner.team/stops/N166aab"], ["https://tec.openplanner.team/stops/H1bo104b", "https://tec.openplanner.team/stops/H1bo150a"], ["https://tec.openplanner.team/stops/H2fy121a", "https://tec.openplanner.team/stops/H2lh131b"], ["https://tec.openplanner.team/stops/LGlbour1", "https://tec.openplanner.team/stops/LGlwarf2"], ["https://tec.openplanner.team/stops/LSUroyo1", "https://tec.openplanner.team/stops/LTgcime2"], ["https://tec.openplanner.team/stops/LAMfroi2", "https://tec.openplanner.team/stops/LAMjaur1"], ["https://tec.openplanner.team/stops/N554acb", "https://tec.openplanner.team/stops/N573aoa"], ["https://tec.openplanner.team/stops/Cmchai1", "https://tec.openplanner.team/stops/Cmcwir2"], ["https://tec.openplanner.team/stops/N161aaa", "https://tec.openplanner.team/stops/N162afb"], ["https://tec.openplanner.team/stops/N123abb", "https://tec.openplanner.team/stops/N123acb"], ["https://tec.openplanner.team/stops/X922aib", "https://tec.openplanner.team/stops/X942afb"], ["https://tec.openplanner.team/stops/X947abb", "https://tec.openplanner.team/stops/X948agb"], ["https://tec.openplanner.team/stops/Bottcco2", "https://tec.openplanner.team/stops/Bottpma2"], ["https://tec.openplanner.team/stops/Cmmmarl1", "https://tec.openplanner.team/stops/Cmmramb1"], ["https://tec.openplanner.team/stops/N501aqb", "https://tec.openplanner.team/stops/N501mbb"], ["https://tec.openplanner.team/stops/Ladabot1", "https://tec.openplanner.team/stops/Ladgron2"], ["https://tec.openplanner.team/stops/Bgrmver1", "https://tec.openplanner.team/stops/Bgrmver3"], ["https://tec.openplanner.team/stops/Cmyedpa2", "https://tec.openplanner.team/stops/Cmyedpa4"], ["https://tec.openplanner.team/stops/LrAneus1", "https://tec.openplanner.team/stops/LrAneus2"], ["https://tec.openplanner.team/stops/X753abd", "https://tec.openplanner.team/stops/X753aca"], ["https://tec.openplanner.team/stops/LLiforg1", "https://tec.openplanner.team/stops/LLiforg2"], ["https://tec.openplanner.team/stops/LLmpt--1", "https://tec.openplanner.team/stops/LLmwaut1"], ["https://tec.openplanner.team/stops/Lvoec--3", "https://tec.openplanner.team/stops/Lvoeg--1"], ["https://tec.openplanner.team/stops/N291aca", "https://tec.openplanner.team/stops/N291acb"], ["https://tec.openplanner.team/stops/H4ir164a", "https://tec.openplanner.team/stops/H4ir164b"], ["https://tec.openplanner.team/stops/H1ms261a", "https://tec.openplanner.team/stops/H1ms265a"], ["https://tec.openplanner.team/stops/LOTcloe1", "https://tec.openplanner.team/stops/LOTferm1"], ["https://tec.openplanner.team/stops/N153aba", "https://tec.openplanner.team/stops/N153afb"], ["https://tec.openplanner.team/stops/H4ne140b", "https://tec.openplanner.team/stops/H4ne148a"], ["https://tec.openplanner.team/stops/LHUlebo1", "https://tec.openplanner.team/stops/NL80afa"], ["https://tec.openplanner.team/stops/LMalune4", "https://tec.openplanner.team/stops/LMapark3"], ["https://tec.openplanner.team/stops/N203aca", "https://tec.openplanner.team/stops/N203afa"], ["https://tec.openplanner.team/stops/Lhr2ave1", "https://tec.openplanner.team/stops/Lhr2ave2"], ["https://tec.openplanner.team/stops/N134afa", "https://tec.openplanner.team/stops/N153ada"], ["https://tec.openplanner.team/stops/N347aea", "https://tec.openplanner.team/stops/N347afa"], ["https://tec.openplanner.team/stops/H1qu103b", "https://tec.openplanner.team/stops/H1qu112a"], ["https://tec.openplanner.team/stops/X788afb", "https://tec.openplanner.team/stops/X788agb"], ["https://tec.openplanner.team/stops/Cplbbro2", "https://tec.openplanner.team/stops/Crspair2"], ["https://tec.openplanner.team/stops/LHXn47-3", "https://tec.openplanner.team/stops/LLVfoss1"], ["https://tec.openplanner.team/stops/LCxhall1", "https://tec.openplanner.team/stops/LCxhame1"], ["https://tec.openplanner.team/stops/Lghmeun3", "https://tec.openplanner.team/stops/Lghmeun4"], ["https://tec.openplanner.team/stops/X773aha", "https://tec.openplanner.team/stops/X773aib"], ["https://tec.openplanner.team/stops/Cgonvro2", "https://tec.openplanner.team/stops/Cgorobe1"], ["https://tec.openplanner.team/stops/X659aja", "https://tec.openplanner.team/stops/X659aza"], ["https://tec.openplanner.team/stops/H1ba105b", "https://tec.openplanner.team/stops/H1ba111b"], ["https://tec.openplanner.team/stops/Cmadeli1", "https://tec.openplanner.team/stops/Cmamons1"], ["https://tec.openplanner.team/stops/Cfmcent2", "https://tec.openplanner.team/stops/Cfmmart2"], ["https://tec.openplanner.team/stops/N242aeb", "https://tec.openplanner.team/stops/N251aba"], ["https://tec.openplanner.team/stops/H1hr117a", "https://tec.openplanner.team/stops/H1hr117b"], ["https://tec.openplanner.team/stops/X824aga", "https://tec.openplanner.team/stops/X824aha"], ["https://tec.openplanner.team/stops/LSzetoi1", "https://tec.openplanner.team/stops/LSznoel2"], ["https://tec.openplanner.team/stops/Bhaldbo1", "https://tec.openplanner.team/stops/Bstecal2"], ["https://tec.openplanner.team/stops/Bmarlor2", "https://tec.openplanner.team/stops/Bmarvil2"], ["https://tec.openplanner.team/stops/H4br108b", "https://tec.openplanner.team/stops/H4cl113a"], ["https://tec.openplanner.team/stops/X696aba", "https://tec.openplanner.team/stops/X696aca"], ["https://tec.openplanner.team/stops/H2bh117a", "https://tec.openplanner.team/stops/H2bh117b"], ["https://tec.openplanner.team/stops/N101aab", "https://tec.openplanner.team/stops/N101ama"], ["https://tec.openplanner.team/stops/H4be109b", "https://tec.openplanner.team/stops/H4be112b"], ["https://tec.openplanner.team/stops/H1by102a", "https://tec.openplanner.team/stops/H1by106a"], ["https://tec.openplanner.team/stops/N501edb", "https://tec.openplanner.team/stops/N501gta"], ["https://tec.openplanner.team/stops/LLOnand1", "https://tec.openplanner.team/stops/LRRandr2"], ["https://tec.openplanner.team/stops/Bcrntru1", "https://tec.openplanner.team/stops/Bernpla1"], ["https://tec.openplanner.team/stops/LVlfooz4", "https://tec.openplanner.team/stops/LVlleno1"], ["https://tec.openplanner.team/stops/NL57aka", "https://tec.openplanner.team/stops/NL57akb"], ["https://tec.openplanner.team/stops/N501hcb", "https://tec.openplanner.team/stops/N501hcc"], ["https://tec.openplanner.team/stops/Bblacea1", "https://tec.openplanner.team/stops/Bwatali1"], ["https://tec.openplanner.team/stops/X733afa", "https://tec.openplanner.team/stops/X733agb"], ["https://tec.openplanner.team/stops/Lmaelhe1", "https://tec.openplanner.team/stops/Lrofont*"], ["https://tec.openplanner.team/stops/LOLbout1", "https://tec.openplanner.team/stops/LOLbout4"], ["https://tec.openplanner.team/stops/Lbbviad1", "https://tec.openplanner.team/stops/Lbhfaye2"], ["https://tec.openplanner.team/stops/LFyanto2", "https://tec.openplanner.team/stops/LFypfei2"], ["https://tec.openplanner.team/stops/Ladchat2", "https://tec.openplanner.team/stops/Ladstat2"], ["https://tec.openplanner.team/stops/Cjuplho1", "https://tec.openplanner.team/stops/Cjurevo1"], ["https://tec.openplanner.team/stops/X982bla", "https://tec.openplanner.team/stops/X982blc"], ["https://tec.openplanner.team/stops/X796ahb", "https://tec.openplanner.team/stops/X796aib"], ["https://tec.openplanner.team/stops/H2hg266a", "https://tec.openplanner.team/stops/H2hg267a"], ["https://tec.openplanner.team/stops/Llggram2", "https://tec.openplanner.team/stops/Llgrome2"], ["https://tec.openplanner.team/stops/Bgntalt2", "https://tec.openplanner.team/stops/Bgnttma2"], ["https://tec.openplanner.team/stops/LMEense1", "https://tec.openplanner.team/stops/LMIpast2"], ["https://tec.openplanner.team/stops/Bpergar2", "https://tec.openplanner.team/stops/Bpermon3"], ["https://tec.openplanner.team/stops/X782aga", "https://tec.openplanner.team/stops/X782aia"], ["https://tec.openplanner.team/stops/Ccoacar1", "https://tec.openplanner.team/stops/Ccotrie1"], ["https://tec.openplanner.team/stops/LLbbons1", "https://tec.openplanner.team/stops/LPtchpl2"], ["https://tec.openplanner.team/stops/H4te250a", "https://tec.openplanner.team/stops/H4te255a"], ["https://tec.openplanner.team/stops/X641apa", "https://tec.openplanner.team/stops/X641apb"], ["https://tec.openplanner.team/stops/N260aba", "https://tec.openplanner.team/stops/N260abb"], ["https://tec.openplanner.team/stops/H1fl133a", "https://tec.openplanner.team/stops/H1fl133b"], ["https://tec.openplanner.team/stops/X639ara", "https://tec.openplanner.team/stops/X639asa"], ["https://tec.openplanner.team/stops/Cmyboci1", "https://tec.openplanner.team/stops/Cmyrens2"], ["https://tec.openplanner.team/stops/H4be108a", "https://tec.openplanner.team/stops/H4be110a"], ["https://tec.openplanner.team/stops/H2hp123d", "https://tec.openplanner.team/stops/H2le153b"], ["https://tec.openplanner.team/stops/H2an110a", "https://tec.openplanner.team/stops/H2ca101b"], ["https://tec.openplanner.team/stops/H5rx103a", "https://tec.openplanner.team/stops/H5rx103b"], ["https://tec.openplanner.team/stops/X653aea", "https://tec.openplanner.team/stops/X653aeb"], ["https://tec.openplanner.team/stops/LOuhalb1", "https://tec.openplanner.team/stops/LOuilc-*"], ["https://tec.openplanner.team/stops/Bcsebea4", "https://tec.openplanner.team/stops/Bcsen251"], ["https://tec.openplanner.team/stops/X995aab", "https://tec.openplanner.team/stops/X995aca"], ["https://tec.openplanner.team/stops/H1ho142a", "https://tec.openplanner.team/stops/H1ho144b"], ["https://tec.openplanner.team/stops/X982aca", "https://tec.openplanner.team/stops/X982btb"], ["https://tec.openplanner.team/stops/H1gh173a", "https://tec.openplanner.team/stops/H1ms297b"], ["https://tec.openplanner.team/stops/LSGcarr2", "https://tec.openplanner.team/stops/LYegeor4"], ["https://tec.openplanner.team/stops/H4hx114b", "https://tec.openplanner.team/stops/H4wa153b"], ["https://tec.openplanner.team/stops/Bwolrod1", "https://tec.openplanner.team/stops/Bwolvan1"], ["https://tec.openplanner.team/stops/LCdchod1", "https://tec.openplanner.team/stops/LMAbijo2"], ["https://tec.openplanner.team/stops/Lagtenn2", "https://tec.openplanner.team/stops/Lkigare2"], ["https://tec.openplanner.team/stops/LNEgaul2", "https://tec.openplanner.team/stops/LNEolne1"], ["https://tec.openplanner.team/stops/Ccuseba2", "https://tec.openplanner.team/stops/Ccuwain2"], ["https://tec.openplanner.team/stops/H3lr107a", "https://tec.openplanner.team/stops/H3lr116b"], ["https://tec.openplanner.team/stops/LaTcolo1", "https://tec.openplanner.team/stops/LsEdorf2"], ["https://tec.openplanner.team/stops/X789abb", "https://tec.openplanner.team/stops/X789aja"], ["https://tec.openplanner.team/stops/Cjxcoll2", "https://tec.openplanner.team/stops/Cjxvalh2"], ["https://tec.openplanner.team/stops/H1ms264b", "https://tec.openplanner.team/stops/H1ms269a"], ["https://tec.openplanner.team/stops/N121agb", "https://tec.openplanner.team/stops/N121aha"], ["https://tec.openplanner.team/stops/N505aea", "https://tec.openplanner.team/stops/N505aha"], ["https://tec.openplanner.team/stops/X750aaa", "https://tec.openplanner.team/stops/X780ata"], ["https://tec.openplanner.team/stops/Lsmdepo1", "https://tec.openplanner.team/stops/Lveinva2"], ["https://tec.openplanner.team/stops/N513arb", "https://tec.openplanner.team/stops/N513ata"], ["https://tec.openplanner.team/stops/Bnivjli2", "https://tec.openplanner.team/stops/Bnivrsh1"], ["https://tec.openplanner.team/stops/LCPcomb1", "https://tec.openplanner.team/stops/LCPcomm1"], ["https://tec.openplanner.team/stops/LLUhotc1", "https://tec.openplanner.team/stops/LREhaut2"], ["https://tec.openplanner.team/stops/X897abb", "https://tec.openplanner.team/stops/X897anb"], ["https://tec.openplanner.team/stops/H1em102a", "https://tec.openplanner.team/stops/H1em110b"], ["https://tec.openplanner.team/stops/H4ty301b", "https://tec.openplanner.team/stops/H4ty335a"], ["https://tec.openplanner.team/stops/LRuegli2", "https://tec.openplanner.team/stops/LSegott2"], ["https://tec.openplanner.team/stops/Lghmeun1", "https://tec.openplanner.team/stops/Ljerouy2"], ["https://tec.openplanner.team/stops/Cfabnat2", "https://tec.openplanner.team/stops/Cfarcam1"], ["https://tec.openplanner.team/stops/H1fl136c", "https://tec.openplanner.team/stops/H1fl137b"], ["https://tec.openplanner.team/stops/H3lr112b", "https://tec.openplanner.team/stops/H3lr117a"], ["https://tec.openplanner.team/stops/X640acb", "https://tec.openplanner.team/stops/X640aha"], ["https://tec.openplanner.team/stops/Ladandr2", "https://tec.openplanner.team/stops/Ladboti2"], ["https://tec.openplanner.team/stops/Cgxcite2", "https://tec.openplanner.team/stops/Cgxptt2"], ["https://tec.openplanner.team/stops/N424aab", "https://tec.openplanner.team/stops/N424aba"], ["https://tec.openplanner.team/stops/X805acb", "https://tec.openplanner.team/stops/X805aea"], ["https://tec.openplanner.team/stops/Cchblne2", "https://tec.openplanner.team/stops/Cchdrai2"], ["https://tec.openplanner.team/stops/N549aea", "https://tec.openplanner.team/stops/N550anb"], ["https://tec.openplanner.team/stops/LAUjean1", "https://tec.openplanner.team/stops/LAUscha1"], ["https://tec.openplanner.team/stops/LeUcamp1", "https://tec.openplanner.team/stops/LHthest1"], ["https://tec.openplanner.team/stops/N558ana", "https://tec.openplanner.team/stops/NL72aca"], ["https://tec.openplanner.team/stops/Cldplac1", "https://tec.openplanner.team/stops/Cmyjaci2"], ["https://tec.openplanner.team/stops/H1ha193a", "https://tec.openplanner.team/stops/H1ha201a"], ["https://tec.openplanner.team/stops/NC14aaa", "https://tec.openplanner.team/stops/NC14aab"], ["https://tec.openplanner.team/stops/LOmmer-2", "https://tec.openplanner.team/stops/LRuegli1"], ["https://tec.openplanner.team/stops/X619ahb", "https://tec.openplanner.team/stops/X619aia"], ["https://tec.openplanner.team/stops/X760abb", "https://tec.openplanner.team/stops/X789aga"], ["https://tec.openplanner.team/stops/Cgzclef1", "https://tec.openplanner.team/stops/Cgzmarb1"], ["https://tec.openplanner.team/stops/Bhmmcge1", "https://tec.openplanner.team/stops/Bhmmcge2"], ["https://tec.openplanner.team/stops/Lbbgare2", "https://tec.openplanner.team/stops/Lbbremy2"], ["https://tec.openplanner.team/stops/H1eu107b", "https://tec.openplanner.team/stops/H1lb152b"], ["https://tec.openplanner.team/stops/Cmaduna1", "https://tec.openplanner.team/stops/Cmysncb2"], ["https://tec.openplanner.team/stops/X793akb", "https://tec.openplanner.team/stops/X793anb"], ["https://tec.openplanner.team/stops/H1sg144b", "https://tec.openplanner.team/stops/H1te198b"], ["https://tec.openplanner.team/stops/Lrogene2", "https://tec.openplanner.team/stops/Lromerl1"], ["https://tec.openplanner.team/stops/X768ala", "https://tec.openplanner.team/stops/X768alb"], ["https://tec.openplanner.team/stops/Cjupui02", "https://tec.openplanner.team/stops/CMpuis1"], ["https://tec.openplanner.team/stops/Cnaplbu2", "https://tec.openplanner.team/stops/NC14aeb"], ["https://tec.openplanner.team/stops/X925ada", "https://tec.openplanner.team/stops/X925afa"], ["https://tec.openplanner.team/stops/Brsga811", "https://tec.openplanner.team/stops/Brsggea2"], ["https://tec.openplanner.team/stops/Lsnlibe1", "https://tec.openplanner.team/stops/Lsnlibe2"], ["https://tec.openplanner.team/stops/H4fr144a", "https://tec.openplanner.team/stops/H4fr386a"], ["https://tec.openplanner.team/stops/Bblmcel1", "https://tec.openplanner.team/stops/Bmsgrco2"], ["https://tec.openplanner.team/stops/LkEbran1", "https://tec.openplanner.team/stops/LkEwolf1"], ["https://tec.openplanner.team/stops/LHCkoul2", "https://tec.openplanner.team/stops/LHCmonu4"], ["https://tec.openplanner.team/stops/LpEbins1", "https://tec.openplanner.team/stops/LpEzoll*"], ["https://tec.openplanner.team/stops/NL37aib", "https://tec.openplanner.team/stops/NL37aka"], ["https://tec.openplanner.team/stops/N101ama", "https://tec.openplanner.team/stops/N101apb"], ["https://tec.openplanner.team/stops/Bpielon1", "https://tec.openplanner.team/stops/Bpiepla1"], ["https://tec.openplanner.team/stops/X614aqb", "https://tec.openplanner.team/stops/X614asb"], ["https://tec.openplanner.team/stops/Bjanfer1", "https://tec.openplanner.team/stops/Bjanfer2"], ["https://tec.openplanner.team/stops/LDLboul1", "https://tec.openplanner.team/stops/LDLboul2"], ["https://tec.openplanner.team/stops/LFRfagn1", "https://tec.openplanner.team/stops/LFRrohe2"], ["https://tec.openplanner.team/stops/H4hq131b", "https://tec.openplanner.team/stops/H4th141a"], ["https://tec.openplanner.team/stops/N543aea", "https://tec.openplanner.team/stops/N543bxb"], ["https://tec.openplanner.team/stops/Cgzmira1", "https://tec.openplanner.team/stops/Cgzoctr3"], ["https://tec.openplanner.team/stops/Bhmmhde1", "https://tec.openplanner.team/stops/Bhmmsca1"], ["https://tec.openplanner.team/stops/H4li179c", "https://tec.openplanner.team/stops/H4mb202a"], ["https://tec.openplanner.team/stops/N166aba", "https://tec.openplanner.team/stops/N565afb"], ["https://tec.openplanner.team/stops/X995add", "https://tec.openplanner.team/stops/X995ade"], ["https://tec.openplanner.team/stops/X615aca", "https://tec.openplanner.team/stops/X681aca"], ["https://tec.openplanner.team/stops/X723aea", "https://tec.openplanner.team/stops/X766afb"], ["https://tec.openplanner.team/stops/N501lsb", "https://tec.openplanner.team/stops/N501maa"], ["https://tec.openplanner.team/stops/Cnaha562", "https://tec.openplanner.team/stops/Cnating2"], ["https://tec.openplanner.team/stops/LSoboul2", "https://tec.openplanner.team/stops/LSopost2"], ["https://tec.openplanner.team/stops/Chppack1", "https://tec.openplanner.team/stops/Cwgtill1"], ["https://tec.openplanner.team/stops/Cdaptca2", "https://tec.openplanner.team/stops/Cmlthym1"], ["https://tec.openplanner.team/stops/Craappa1", "https://tec.openplanner.team/stops/Cravold1"], ["https://tec.openplanner.team/stops/H4ty312a", "https://tec.openplanner.team/stops/H4ty312b"], ["https://tec.openplanner.team/stops/Lemeg--1", "https://tec.openplanner.team/stops/Lemparc1"], ["https://tec.openplanner.team/stops/X857aab", "https://tec.openplanner.team/stops/X858aea"], ["https://tec.openplanner.team/stops/H4wu375a", "https://tec.openplanner.team/stops/H4wu376a"], ["https://tec.openplanner.team/stops/H1do126a", "https://tec.openplanner.team/stops/H1do129a"], ["https://tec.openplanner.team/stops/H1bu141b", "https://tec.openplanner.team/stops/H2le147b"], ["https://tec.openplanner.team/stops/N217aca", "https://tec.openplanner.team/stops/N218afb"], ["https://tec.openplanner.team/stops/Btilgar1", "https://tec.openplanner.team/stops/Btilhti1"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Lghsimo3"], ["https://tec.openplanner.team/stops/LXopier1", "https://tec.openplanner.team/stops/LXopier2"], ["https://tec.openplanner.team/stops/LkEbruc1", "https://tec.openplanner.team/stops/LkEkric2"], ["https://tec.openplanner.team/stops/LFFmagr2", "https://tec.openplanner.team/stops/LFFruel1"], ["https://tec.openplanner.team/stops/X659aqa", "https://tec.openplanner.team/stops/X659arb"], ["https://tec.openplanner.team/stops/X839aab", "https://tec.openplanner.team/stops/X839aca"], ["https://tec.openplanner.team/stops/LAWdefu3", "https://tec.openplanner.team/stops/LAWvold1"], ["https://tec.openplanner.team/stops/Llgbatt1", "https://tec.openplanner.team/stops/Llghoch1"], ["https://tec.openplanner.team/stops/Bvirhsa1", "https://tec.openplanner.team/stops/Bvirpla2"], ["https://tec.openplanner.team/stops/Cmldupu1", "https://tec.openplanner.team/stops/Cmldupu2"], ["https://tec.openplanner.team/stops/Cmxpleg1", "https://tec.openplanner.team/stops/Cmxpleg2"], ["https://tec.openplanner.team/stops/NL77ama", "https://tec.openplanner.team/stops/NL77amb"], ["https://tec.openplanner.team/stops/LPbhaut1", "https://tec.openplanner.team/stops/LPbpeti1"], ["https://tec.openplanner.team/stops/LDLbeau2", "https://tec.openplanner.team/stops/LHYdogn1"], ["https://tec.openplanner.team/stops/LAuvici1", "https://tec.openplanner.team/stops/LAuvill1"], ["https://tec.openplanner.team/stops/Cssgare1", "https://tec.openplanner.team/stops/Cssgare2"], ["https://tec.openplanner.team/stops/X607acb", "https://tec.openplanner.team/stops/X607ada"], ["https://tec.openplanner.team/stops/N287abb", "https://tec.openplanner.team/stops/N287adb"], ["https://tec.openplanner.team/stops/LHNgend3", "https://tec.openplanner.team/stops/LVPcoeu2"], ["https://tec.openplanner.team/stops/Cgy3012", "https://tec.openplanner.team/stops/Cmtstth2"], ["https://tec.openplanner.team/stops/Ljhjeha*", "https://tec.openplanner.team/stops/Ljhmany2"], ["https://tec.openplanner.team/stops/H1sp353a", "https://tec.openplanner.team/stops/H1sp353b"], ["https://tec.openplanner.team/stops/X949aga", "https://tec.openplanner.team/stops/X949aja"], ["https://tec.openplanner.team/stops/X371aba", "https://tec.openplanner.team/stops/X371aca"], ["https://tec.openplanner.team/stops/N538aoa", "https://tec.openplanner.team/stops/N538aob"], ["https://tec.openplanner.team/stops/X804akb", "https://tec.openplanner.team/stops/X804aqb"], ["https://tec.openplanner.team/stops/N549ada", "https://tec.openplanner.team/stops/N577aab"], ["https://tec.openplanner.team/stops/Cgoboll4", "https://tec.openplanner.team/stops/Craplac3"], ["https://tec.openplanner.team/stops/Bwancal1", "https://tec.openplanner.team/stops/Bwanwar2"], ["https://tec.openplanner.team/stops/H1by100c", "https://tec.openplanner.team/stops/H1by100d"], ["https://tec.openplanner.team/stops/N136aea", "https://tec.openplanner.team/stops/N138aea"], ["https://tec.openplanner.team/stops/Bmsgbur1", "https://tec.openplanner.team/stops/Bmsgcap2"], ["https://tec.openplanner.team/stops/Ccofayt2", "https://tec.openplanner.team/stops/Ccomiau1"], ["https://tec.openplanner.team/stops/H1ch101a", "https://tec.openplanner.team/stops/H1ch102a"], ["https://tec.openplanner.team/stops/X661ata", "https://tec.openplanner.team/stops/X672abb"], ["https://tec.openplanner.team/stops/N343aab", "https://tec.openplanner.team/stops/X343ahb"], ["https://tec.openplanner.team/stops/LAWeg--1", "https://tec.openplanner.team/stops/LAWmc--2"], ["https://tec.openplanner.team/stops/N222ada", "https://tec.openplanner.team/stops/X919ana"], ["https://tec.openplanner.team/stops/Cchdrai2", "https://tec.openplanner.team/stops/CMwate1"], ["https://tec.openplanner.team/stops/N321aba", "https://tec.openplanner.team/stops/N321afa"], ["https://tec.openplanner.team/stops/Ltiecch1", "https://tec.openplanner.team/stops/Ltiecch2"], ["https://tec.openplanner.team/stops/LnUcamp2", "https://tec.openplanner.team/stops/LnUneun2"], ["https://tec.openplanner.team/stops/N308aba", "https://tec.openplanner.team/stops/N339acb"], ["https://tec.openplanner.team/stops/LFPho8a1", "https://tec.openplanner.team/stops/LWRferm2"], ["https://tec.openplanner.team/stops/Lbrcygn1", "https://tec.openplanner.team/stops/Lbrfune*"], ["https://tec.openplanner.team/stops/X857aba", "https://tec.openplanner.team/stops/X858afb"], ["https://tec.openplanner.team/stops/LCEhayo2", "https://tec.openplanner.team/stops/LETmagn1"], ["https://tec.openplanner.team/stops/H4bl105b", "https://tec.openplanner.team/stops/H4ha169b"], ["https://tec.openplanner.team/stops/H1sb145a", "https://tec.openplanner.team/stops/H1sb145b"], ["https://tec.openplanner.team/stops/Bneesan2", "https://tec.openplanner.team/stops/Bneesj31"], ["https://tec.openplanner.team/stops/LFFchal1", "https://tec.openplanner.team/stops/LFFchal2"], ["https://tec.openplanner.team/stops/Bquepos1", "https://tec.openplanner.team/stops/Bquesta1"], ["https://tec.openplanner.team/stops/Bsdacab1", "https://tec.openplanner.team/stops/Bsdafra1"], ["https://tec.openplanner.team/stops/X996aba", "https://tec.openplanner.team/stops/X996abb"], ["https://tec.openplanner.team/stops/Crolema2", "https://tec.openplanner.team/stops/Crowilb2"], ["https://tec.openplanner.team/stops/LHTcarr2", "https://tec.openplanner.team/stops/LHTmonu1"], ["https://tec.openplanner.team/stops/Cplcite2", "https://tec.openplanner.team/stops/Cplstfa3"], ["https://tec.openplanner.team/stops/Bnivind2", "https://tec.openplanner.team/stops/Bnivtra1"], ["https://tec.openplanner.team/stops/Bincfer1", "https://tec.openplanner.team/stops/Brxmcha2"], ["https://tec.openplanner.team/stops/Lghjans2", "https://tec.openplanner.team/stops/Lghviad2"], ["https://tec.openplanner.team/stops/Ljecoqu2", "https://tec.openplanner.team/stops/Ljehotv1"], ["https://tec.openplanner.team/stops/H1bd100a", "https://tec.openplanner.team/stops/H1le121b"], ["https://tec.openplanner.team/stops/X639aoc", "https://tec.openplanner.team/stops/X639aqa"], ["https://tec.openplanner.team/stops/LENchem1", "https://tec.openplanner.team/stops/LENecol1"], ["https://tec.openplanner.team/stops/Lhrferr1", "https://tec.openplanner.team/stops/Lhrjaur2"], ["https://tec.openplanner.team/stops/Lghfors1", "https://tec.openplanner.team/stops/Lghgend1"], ["https://tec.openplanner.team/stops/X719ada", "https://tec.openplanner.team/stops/X719aeb"], ["https://tec.openplanner.team/stops/Cgzrust1", "https://tec.openplanner.team/stops/Cmx3arb1"], ["https://tec.openplanner.team/stops/H4bn101b", "https://tec.openplanner.team/stops/H4pi133a"], ["https://tec.openplanner.team/stops/LhEauto1", "https://tec.openplanner.team/stops/LhEherb1"], ["https://tec.openplanner.team/stops/N501fra", "https://tec.openplanner.team/stops/N501lcb"], ["https://tec.openplanner.team/stops/X639ana", "https://tec.openplanner.team/stops/X640abb"], ["https://tec.openplanner.team/stops/LERboss2", "https://tec.openplanner.team/stops/LERdeho2"], ["https://tec.openplanner.team/stops/LLUmc--1", "https://tec.openplanner.team/stops/LLUreut2"], ["https://tec.openplanner.team/stops/X542aeb", "https://tec.openplanner.team/stops/X542ahb"], ["https://tec.openplanner.team/stops/LHrchat2", "https://tec.openplanner.team/stops/LHreg--2"], ["https://tec.openplanner.team/stops/N120afb", "https://tec.openplanner.team/stops/N120anb"], ["https://tec.openplanner.team/stops/LSTchen1", "https://tec.openplanner.team/stops/LSTchen2"], ["https://tec.openplanner.team/stops/Llgdelc*", "https://tec.openplanner.team/stops/Llgdelc1"], ["https://tec.openplanner.team/stops/LCPoneu2", "https://tec.openplanner.team/stops/LCPpech2"], ["https://tec.openplanner.team/stops/H4mo138a", "https://tec.openplanner.team/stops/H4mo178a"], ["https://tec.openplanner.team/stops/N553aca", "https://tec.openplanner.team/stops/N553ada"], ["https://tec.openplanner.team/stops/Bracgar1", "https://tec.openplanner.team/stops/Brach121"], ["https://tec.openplanner.team/stops/X826aea", "https://tec.openplanner.team/stops/X826afa"], ["https://tec.openplanner.team/stops/X618aka", "https://tec.openplanner.team/stops/X625adb"], ["https://tec.openplanner.team/stops/Cmllait2", "https://tec.openplanner.team/stops/Cmlm2412"], ["https://tec.openplanner.team/stops/Bgnpgar1", "https://tec.openplanner.team/stops/Bgnpjbe2"], ["https://tec.openplanner.team/stops/H1qv113b", "https://tec.openplanner.team/stops/H1qv114b"], ["https://tec.openplanner.team/stops/N535amb", "https://tec.openplanner.team/stops/N535amd"], ["https://tec.openplanner.team/stops/X615asa", "https://tec.openplanner.team/stops/X615asb"], ["https://tec.openplanner.team/stops/X899afa", "https://tec.openplanner.team/stops/X899afb"], ["https://tec.openplanner.team/stops/X907aba", "https://tec.openplanner.team/stops/X908asa"], ["https://tec.openplanner.team/stops/H4ne138a", "https://tec.openplanner.team/stops/H4ne138b"], ["https://tec.openplanner.team/stops/LBGcent1", "https://tec.openplanner.team/stops/LGrchpl2"], ["https://tec.openplanner.team/stops/Bmangar1", "https://tec.openplanner.team/stops/H2mg140b"], ["https://tec.openplanner.team/stops/LScd45-2", "https://tec.openplanner.team/stops/LSevitu4"], ["https://tec.openplanner.team/stops/Cwgcamp1", "https://tec.openplanner.team/stops/Cwgdeba1"], ["https://tec.openplanner.team/stops/LSPentr1", "https://tec.openplanner.team/stops/LSPpomp1"], ["https://tec.openplanner.team/stops/X659ava", "https://tec.openplanner.team/stops/X659awb"], ["https://tec.openplanner.team/stops/LAMceri2", "https://tec.openplanner.team/stops/LOmpont1"], ["https://tec.openplanner.team/stops/N558aaa", "https://tec.openplanner.team/stops/N558aab"], ["https://tec.openplanner.team/stops/Bclgegl1", "https://tec.openplanner.team/stops/Bclgegl2"], ["https://tec.openplanner.team/stops/LTyhall2", "https://tec.openplanner.team/stops/LTywaut2"], ["https://tec.openplanner.team/stops/H5at130a", "https://tec.openplanner.team/stops/H5at131a"], ["https://tec.openplanner.team/stops/LeUhaas4", "https://tec.openplanner.team/stops/LeUkehr4"], ["https://tec.openplanner.team/stops/Cbfusin1", "https://tec.openplanner.team/stops/NC11aka"], ["https://tec.openplanner.team/stops/N141aib", "https://tec.openplanner.team/stops/N141amc"], ["https://tec.openplanner.team/stops/X804asa", "https://tec.openplanner.team/stops/X828aab"], ["https://tec.openplanner.team/stops/H2hp119d", "https://tec.openplanner.team/stops/H2lh126b"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N312adb"], ["https://tec.openplanner.team/stops/Llmdeba1", "https://tec.openplanner.team/stops/Llmdeba2"], ["https://tec.openplanner.team/stops/H4eh101a", "https://tec.openplanner.team/stops/H4eh101b"], ["https://tec.openplanner.team/stops/Llgparc1", "https://tec.openplanner.team/stops/Llgrome2"], ["https://tec.openplanner.team/stops/H4ch114a", "https://tec.openplanner.team/stops/H4ch116a"], ["https://tec.openplanner.team/stops/LmNha152", "https://tec.openplanner.team/stops/LmNpost2"], ["https://tec.openplanner.team/stops/LGMforg2", "https://tec.openplanner.team/stops/LTRryta2"], ["https://tec.openplanner.team/stops/X640arb", "https://tec.openplanner.team/stops/X640aub"], ["https://tec.openplanner.team/stops/Bmoucnd1", "https://tec.openplanner.team/stops/Bmoufil1"], ["https://tec.openplanner.team/stops/H4ty267a", "https://tec.openplanner.team/stops/H4ty285a"], ["https://tec.openplanner.team/stops/H4ef110b", "https://tec.openplanner.team/stops/H4or114a"], ["https://tec.openplanner.team/stops/LFAec--2", "https://tec.openplanner.team/stops/LLTfall2"], ["https://tec.openplanner.team/stops/LLUtill1", "https://tec.openplanner.team/stops/LLUvent6"], ["https://tec.openplanner.team/stops/NC44abb", "https://tec.openplanner.team/stops/NC44aga"], ["https://tec.openplanner.team/stops/N562bja", "https://tec.openplanner.team/stops/N562bjb"], ["https://tec.openplanner.team/stops/X897arb", "https://tec.openplanner.team/stops/X897aua"], ["https://tec.openplanner.team/stops/LPtrefa1", "https://tec.openplanner.team/stops/LPtrefa2"], ["https://tec.openplanner.team/stops/N536afb", "https://tec.openplanner.team/stops/N536agb"], ["https://tec.openplanner.team/stops/H4eg102b", "https://tec.openplanner.team/stops/H4eg103b"], ["https://tec.openplanner.team/stops/H4bf106a", "https://tec.openplanner.team/stops/H4by119a"], ["https://tec.openplanner.team/stops/X601dga", "https://tec.openplanner.team/stops/X602aha"], ["https://tec.openplanner.team/stops/Lmohomv1", "https://tec.openplanner.team/stops/Lmopast1"], ["https://tec.openplanner.team/stops/X717agc", "https://tec.openplanner.team/stops/X717agd"], ["https://tec.openplanner.team/stops/N234aab", "https://tec.openplanner.team/stops/N252acd"], ["https://tec.openplanner.team/stops/Cchparc1", "https://tec.openplanner.team/stops/Cchparc2"], ["https://tec.openplanner.team/stops/LJOvill1", "https://tec.openplanner.team/stops/LXHbois1"], ["https://tec.openplanner.team/stops/H2lh125b", "https://tec.openplanner.team/stops/H2lh129a"], ["https://tec.openplanner.team/stops/LHurobi1", "https://tec.openplanner.team/stops/LHurobi2"], ["https://tec.openplanner.team/stops/X982aja", "https://tec.openplanner.team/stops/X982bzb"], ["https://tec.openplanner.team/stops/Bnivfhu2", "https://tec.openplanner.team/stops/Bnivfra2"], ["https://tec.openplanner.team/stops/LFRgode1", "https://tec.openplanner.team/stops/LFRspa-1"], ["https://tec.openplanner.team/stops/LNAbras5", "https://tec.openplanner.team/stops/LTNsarl1"], ["https://tec.openplanner.team/stops/Bbiemse1", "https://tec.openplanner.team/stops/Bbiemse2"], ["https://tec.openplanner.team/stops/LBEairp2", "https://tec.openplanner.team/stops/LBEairp3"], ["https://tec.openplanner.team/stops/Llgauxc1", "https://tec.openplanner.team/stops/Llginte2"], ["https://tec.openplanner.team/stops/LTPbode1", "https://tec.openplanner.team/stops/LTPbode2"], ["https://tec.openplanner.team/stops/N533adb", "https://tec.openplanner.team/stops/N551ajb"], ["https://tec.openplanner.team/stops/N145akb", "https://tec.openplanner.team/stops/N150aka"], ["https://tec.openplanner.team/stops/Bbeardu2", "https://tec.openplanner.team/stops/Bbearwa2"], ["https://tec.openplanner.team/stops/H1te175b", "https://tec.openplanner.team/stops/H1te186a"], ["https://tec.openplanner.team/stops/X926abb", "https://tec.openplanner.team/stops/X927ada"], ["https://tec.openplanner.team/stops/H1wz169a", "https://tec.openplanner.team/stops/H1wz171b"], ["https://tec.openplanner.team/stops/LGEcent2", "https://tec.openplanner.team/stops/LGEhosp1"], ["https://tec.openplanner.team/stops/LGrfont2", "https://tec.openplanner.team/stops/LORherl1"], ["https://tec.openplanner.team/stops/Bengvma2", "https://tec.openplanner.team/stops/Bptemch1"], ["https://tec.openplanner.team/stops/H1ju120a", "https://tec.openplanner.team/stops/H1ju120b"], ["https://tec.openplanner.team/stops/X999aia", "https://tec.openplanner.team/stops/X999aib"], ["https://tec.openplanner.team/stops/X836afb", "https://tec.openplanner.team/stops/X836aia"], ["https://tec.openplanner.team/stops/Cvlgrta1", "https://tec.openplanner.team/stops/Cvllerm1"], ["https://tec.openplanner.team/stops/Cmychpl2", "https://tec.openplanner.team/stops/Cmycime2"], ["https://tec.openplanner.team/stops/X626ada", "https://tec.openplanner.team/stops/X626afa"], ["https://tec.openplanner.team/stops/LeUath2", "https://tec.openplanner.team/stops/LeUnopr2"], ["https://tec.openplanner.team/stops/N231ada", "https://tec.openplanner.team/stops/N231adb"], ["https://tec.openplanner.team/stops/H4ka175b", "https://tec.openplanner.team/stops/H4ka195a"], ["https://tec.openplanner.team/stops/X939ada", "https://tec.openplanner.team/stops/X939afb"], ["https://tec.openplanner.team/stops/Bbcogar1", "https://tec.openplanner.team/stops/Bbcoubo2"], ["https://tec.openplanner.team/stops/Csemacq4", "https://tec.openplanner.team/stops/Csepote1"], ["https://tec.openplanner.team/stops/X750bha", "https://tec.openplanner.team/stops/X750bib"], ["https://tec.openplanner.team/stops/LsVprum2", "https://tec.openplanner.team/stops/LwSbrei2"], ["https://tec.openplanner.team/stops/Landolh2", "https://tec.openplanner.team/stops/Lanlona2"], ["https://tec.openplanner.team/stops/Lghcoqs2", "https://tec.openplanner.team/stops/Lghleon1"], ["https://tec.openplanner.team/stops/LhUdenk2", "https://tec.openplanner.team/stops/LhUkape1"], ["https://tec.openplanner.team/stops/H4ta115b", "https://tec.openplanner.team/stops/H4ta120b"], ["https://tec.openplanner.team/stops/X760acb", "https://tec.openplanner.team/stops/X760aeb"], ["https://tec.openplanner.team/stops/Bmarcha1", "https://tec.openplanner.team/stops/Bwagsta1"], ["https://tec.openplanner.team/stops/Creha762", "https://tec.openplanner.team/stops/Crerevi1"], ["https://tec.openplanner.team/stops/H4bv145c", "https://tec.openplanner.team/stops/H4re225b"], ["https://tec.openplanner.team/stops/Cjxcoll2", "https://tec.openplanner.team/stops/Cmyboci1"], ["https://tec.openplanner.team/stops/X661axa", "https://tec.openplanner.team/stops/X822aja"], ["https://tec.openplanner.team/stops/Bgoemgr2", "https://tec.openplanner.team/stops/Boplsma4"], ["https://tec.openplanner.team/stops/H1ci106a", "https://tec.openplanner.team/stops/H1mv240b"], ["https://tec.openplanner.team/stops/H4lz126b", "https://tec.openplanner.team/stops/H4th140b"], ["https://tec.openplanner.team/stops/X807acb", "https://tec.openplanner.team/stops/X808afa"], ["https://tec.openplanner.team/stops/N525aga", "https://tec.openplanner.team/stops/N525agb"], ["https://tec.openplanner.team/stops/Bsgihmo1", "https://tec.openplanner.team/stops/Bsgihmo2"], ["https://tec.openplanner.team/stops/Brsga151", "https://tec.openplanner.team/stops/Brsgman2"], ["https://tec.openplanner.team/stops/Blmlfau1", "https://tec.openplanner.team/stops/Blmlvex1"], ["https://tec.openplanner.team/stops/N505aha", "https://tec.openplanner.team/stops/N506aoa"], ["https://tec.openplanner.team/stops/N534bmb", "https://tec.openplanner.team/stops/N534bra"], ["https://tec.openplanner.team/stops/LaNmuhl1", "https://tec.openplanner.team/stops/LeMnr11"], ["https://tec.openplanner.team/stops/X921ajd", "https://tec.openplanner.team/stops/X921aka"], ["https://tec.openplanner.team/stops/Bnivaba1", "https://tec.openplanner.team/stops/Bnivaba2"], ["https://tec.openplanner.team/stops/LFsherm2", "https://tec.openplanner.team/stops/LSLabba1"], ["https://tec.openplanner.team/stops/X663aba", "https://tec.openplanner.team/stops/X663aca"], ["https://tec.openplanner.team/stops/LSkyern1", "https://tec.openplanner.team/stops/LYegeor2"], ["https://tec.openplanner.team/stops/Lsccdor1", "https://tec.openplanner.team/stops/Lsccime1"], ["https://tec.openplanner.team/stops/H2go114b", "https://tec.openplanner.team/stops/H2go119a"], ["https://tec.openplanner.team/stops/H4av102a", "https://tec.openplanner.team/stops/H4av107b"], ["https://tec.openplanner.team/stops/Lbrmour2", "https://tec.openplanner.team/stops/Llgplai2"], ["https://tec.openplanner.team/stops/Cbfegch2", "https://tec.openplanner.team/stops/Cbfgare2"], ["https://tec.openplanner.team/stops/N525aka", "https://tec.openplanner.team/stops/N525akb"], ["https://tec.openplanner.team/stops/X999afb", "https://tec.openplanner.team/stops/X999aga"], ["https://tec.openplanner.team/stops/Lcegeor2", "https://tec.openplanner.team/stops/Lvc4bra1"], ["https://tec.openplanner.team/stops/H1hr120a", "https://tec.openplanner.team/stops/H1hr120b"], ["https://tec.openplanner.team/stops/H4ne140b", "https://tec.openplanner.team/stops/H4te413a"], ["https://tec.openplanner.team/stops/N501hfa", "https://tec.openplanner.team/stops/N501hfb"], ["https://tec.openplanner.team/stops/Ccychba2", "https://tec.openplanner.team/stops/Crbecol1"], ["https://tec.openplanner.team/stops/LJEniho2", "https://tec.openplanner.team/stops/LVLsabl4"], ["https://tec.openplanner.team/stops/X982bva", "https://tec.openplanner.team/stops/X982bvb"], ["https://tec.openplanner.team/stops/Lsmh3021", "https://tec.openplanner.team/stops/Lsmh3022"], ["https://tec.openplanner.team/stops/Bsmgmar2", "https://tec.openplanner.team/stops/Bsmgpla1"], ["https://tec.openplanner.team/stops/Lgrchar1", "https://tec.openplanner.team/stops/Lgrrein1"], ["https://tec.openplanner.team/stops/H4ty295b", "https://tec.openplanner.team/stops/H4ty359a"], ["https://tec.openplanner.team/stops/X659axb", "https://tec.openplanner.team/stops/X659ayb"], ["https://tec.openplanner.team/stops/Cfaplma2", "https://tec.openplanner.team/stops/Cfaysle2"], ["https://tec.openplanner.team/stops/X925apa", "https://tec.openplanner.team/stops/X926aaa"], ["https://tec.openplanner.team/stops/X939acb", "https://tec.openplanner.team/stops/X940aea"], ["https://tec.openplanner.team/stops/Cfrcoqu2", "https://tec.openplanner.team/stops/Cfrcoqu3"], ["https://tec.openplanner.team/stops/Lsccdor2", "https://tec.openplanner.team/stops/Lscpamp2"], ["https://tec.openplanner.team/stops/X911afa", "https://tec.openplanner.team/stops/X911arb"], ["https://tec.openplanner.team/stops/Bcer4br1", "https://tec.openplanner.team/stops/Bottpin2"], ["https://tec.openplanner.team/stops/LrOn14-1", "https://tec.openplanner.team/stops/LrOtria2"], ["https://tec.openplanner.team/stops/LETsaiv1", "https://tec.openplanner.team/stops/LSAmous1"], ["https://tec.openplanner.team/stops/LBseg--1", "https://tec.openplanner.team/stops/NL72aab"], ["https://tec.openplanner.team/stops/H4ty291b", "https://tec.openplanner.team/stops/H4ty317b"], ["https://tec.openplanner.team/stops/N501fby", "https://tec.openplanner.team/stops/N501fmb"], ["https://tec.openplanner.team/stops/LWRbois2", "https://tec.openplanner.team/stops/LWRheyd2"], ["https://tec.openplanner.team/stops/LHEecmo1", "https://tec.openplanner.team/stops/LHEecmo2"], ["https://tec.openplanner.team/stops/Lve-isi1", "https://tec.openplanner.team/stops/Lvepris1"], ["https://tec.openplanner.team/stops/LBichen1", "https://tec.openplanner.team/stops/LDOprev2"], ["https://tec.openplanner.team/stops/N501dzb", "https://tec.openplanner.team/stops/N501kqb"], ["https://tec.openplanner.team/stops/NL75aaa", "https://tec.openplanner.team/stops/NL75aab"], ["https://tec.openplanner.team/stops/Bjodeco1", "https://tec.openplanner.team/stops/Bjodeco2"], ["https://tec.openplanner.team/stops/Clrpast1", "https://tec.openplanner.team/stops/Clrpast2"], ["https://tec.openplanner.team/stops/N538abb", "https://tec.openplanner.team/stops/N538aeb"], ["https://tec.openplanner.team/stops/N120aaa", "https://tec.openplanner.team/stops/N302ada"], ["https://tec.openplanner.team/stops/LAicarr1", "https://tec.openplanner.team/stops/LAigrim1"], ["https://tec.openplanner.team/stops/H4lz118b", "https://tec.openplanner.team/stops/H4lz126b"], ["https://tec.openplanner.team/stops/N501bsb", "https://tec.openplanner.team/stops/N999aab"], ["https://tec.openplanner.team/stops/Cbfpauc1", "https://tec.openplanner.team/stops/Cbfusin1"], ["https://tec.openplanner.team/stops/X822aaa", "https://tec.openplanner.team/stops/X822aob"], ["https://tec.openplanner.team/stops/N506bla", "https://tec.openplanner.team/stops/N506blb"], ["https://tec.openplanner.team/stops/N513abb", "https://tec.openplanner.team/stops/N513bfa"], ["https://tec.openplanner.team/stops/Bcbqa361", "https://tec.openplanner.team/stops/Bcbqtub1"], ["https://tec.openplanner.team/stops/H4es111a", "https://tec.openplanner.team/stops/H4ln128b"], ["https://tec.openplanner.team/stops/X756aeb", "https://tec.openplanner.team/stops/X756aed"], ["https://tec.openplanner.team/stops/X824adb", "https://tec.openplanner.team/stops/X824aia"], ["https://tec.openplanner.team/stops/LNCmoul1", "https://tec.openplanner.team/stops/LNCsart1"], ["https://tec.openplanner.team/stops/X986aja", "https://tec.openplanner.team/stops/X986alc"], ["https://tec.openplanner.team/stops/N122aab", "https://tec.openplanner.team/stops/N122aia"], ["https://tec.openplanner.team/stops/X637adb", "https://tec.openplanner.team/stops/X637aea"], ["https://tec.openplanner.team/stops/Cfccol1", "https://tec.openplanner.team/stops/Cvlstan1"], ["https://tec.openplanner.team/stops/Cjuhopi1", "https://tec.openplanner.team/stops/CMcarr1"], ["https://tec.openplanner.team/stops/N553aaa", "https://tec.openplanner.team/stops/N553ajb"], ["https://tec.openplanner.team/stops/Cfnsenz1", "https://tec.openplanner.team/stops/Cfnsenz2"], ["https://tec.openplanner.team/stops/LbUjost4", "https://tec.openplanner.team/stops/LhUrich1"], ["https://tec.openplanner.team/stops/H1hm174b", "https://tec.openplanner.team/stops/H1vg359b"], ["https://tec.openplanner.team/stops/X721aqa", "https://tec.openplanner.team/stops/X721asa"], ["https://tec.openplanner.team/stops/X948akb", "https://tec.openplanner.team/stops/X948baa"], ["https://tec.openplanner.team/stops/Bclglbu1", "https://tec.openplanner.team/stops/Bmsggra2"], ["https://tec.openplanner.team/stops/H2ca104a", "https://tec.openplanner.team/stops/H2ca112a"], ["https://tec.openplanner.team/stops/Bvirbru2", "https://tec.openplanner.team/stops/Bvirpos2"], ["https://tec.openplanner.team/stops/H1cd114b", "https://tec.openplanner.team/stops/H1ml112a"], ["https://tec.openplanner.team/stops/X911abb", "https://tec.openplanner.team/stops/X911aoa"], ["https://tec.openplanner.team/stops/H4ws159b", "https://tec.openplanner.team/stops/H4ws160a"], ["https://tec.openplanner.team/stops/X615bgb", "https://tec.openplanner.team/stops/X615bhb"], ["https://tec.openplanner.team/stops/X602alb", "https://tec.openplanner.team/stops/X602ama"], ["https://tec.openplanner.team/stops/Bohngai1", "https://tec.openplanner.team/stops/Bohngai2"], ["https://tec.openplanner.team/stops/Lceludg1", "https://tec.openplanner.team/stops/Lcewilm2"], ["https://tec.openplanner.team/stops/H1pw121b", "https://tec.openplanner.team/stops/H1pw123b"], ["https://tec.openplanner.team/stops/Lheloti2", "https://tec.openplanner.team/stops/LOUsorb1"], ["https://tec.openplanner.team/stops/X642aac", "https://tec.openplanner.team/stops/X646ada"], ["https://tec.openplanner.team/stops/Cptberg2", "https://tec.openplanner.team/stops/Cptcamb1"], ["https://tec.openplanner.team/stops/H5qu139a", "https://tec.openplanner.team/stops/H5qu154a"], ["https://tec.openplanner.team/stops/LLR4bra2", "https://tec.openplanner.team/stops/LLReg--1"], ["https://tec.openplanner.team/stops/H1qu102b", "https://tec.openplanner.team/stops/H1wl125a"], ["https://tec.openplanner.team/stops/H1fy118a", "https://tec.openplanner.team/stops/H1fy120a"], ["https://tec.openplanner.team/stops/LBCaube2", "https://tec.openplanner.team/stops/LBJchau*"], ["https://tec.openplanner.team/stops/X634ala", "https://tec.openplanner.team/stops/X654aeb"], ["https://tec.openplanner.team/stops/N501dva", "https://tec.openplanner.team/stops/N501exa"], ["https://tec.openplanner.team/stops/H2gy107a", "https://tec.openplanner.team/stops/H2tz117a"], ["https://tec.openplanner.team/stops/LBLghuy2", "https://tec.openplanner.team/stops/LBLgobc1"], ["https://tec.openplanner.team/stops/LmD27--2", "https://tec.openplanner.team/stops/LmDkirc2"], ["https://tec.openplanner.team/stops/H4hx116a", "https://tec.openplanner.team/stops/H4hx117b"], ["https://tec.openplanner.team/stops/LrEgend1", "https://tec.openplanner.team/stops/LrEmeil1"], ["https://tec.openplanner.team/stops/Btslpbr1", "https://tec.openplanner.team/stops/Bwspspa1"], ["https://tec.openplanner.team/stops/H1ma231b", "https://tec.openplanner.team/stops/H1ma234b"], ["https://tec.openplanner.team/stops/Bglache1", "https://tec.openplanner.team/stops/Bglarha1"], ["https://tec.openplanner.team/stops/X804aeb", "https://tec.openplanner.team/stops/X804baa"], ["https://tec.openplanner.team/stops/X773ahb", "https://tec.openplanner.team/stops/X773aob"], ["https://tec.openplanner.team/stops/Llgbruy1", "https://tec.openplanner.team/stops/Llgcmes2"], ["https://tec.openplanner.team/stops/Lagorch1", "https://tec.openplanner.team/stops/Lsteg--1"], ["https://tec.openplanner.team/stops/N501mba", "https://tec.openplanner.team/stops/N501mbb"], ["https://tec.openplanner.team/stops/H4be103b", "https://tec.openplanner.team/stops/H4be109a"], ["https://tec.openplanner.team/stops/X669abc", "https://tec.openplanner.team/stops/X669acb"], ["https://tec.openplanner.team/stops/LATmale1", "https://tec.openplanner.team/stops/LWNfani1"], ["https://tec.openplanner.team/stops/H4hg157a", "https://tec.openplanner.team/stops/H4hg158a"], ["https://tec.openplanner.team/stops/Borbtre2", "https://tec.openplanner.team/stops/Btstpch1"], ["https://tec.openplanner.team/stops/Bbgelre2", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://tec.openplanner.team/stops/LTPcarr1", "https://tec.openplanner.team/stops/LTPsalm1"], ["https://tec.openplanner.team/stops/LBHgile1", "https://tec.openplanner.team/stops/LGObeth1"], ["https://tec.openplanner.team/stops/N539aaa", "https://tec.openplanner.team/stops/N539aeb"], ["https://tec.openplanner.team/stops/X604aha", "https://tec.openplanner.team/stops/X604aja"], ["https://tec.openplanner.team/stops/H1gy115b", "https://tec.openplanner.team/stops/H5el100a"], ["https://tec.openplanner.team/stops/X759afa", "https://tec.openplanner.team/stops/X759aga"], ["https://tec.openplanner.team/stops/H4bo115a", "https://tec.openplanner.team/stops/H4bo115b"], ["https://tec.openplanner.team/stops/N424aab", "https://tec.openplanner.team/stops/NH01atb"], ["https://tec.openplanner.team/stops/H3lr109a", "https://tec.openplanner.team/stops/H3lr110b"], ["https://tec.openplanner.team/stops/Lghviad1", "https://tec.openplanner.team/stops/Lghviad2"], ["https://tec.openplanner.team/stops/N501bhb", "https://tec.openplanner.team/stops/N501hka"], ["https://tec.openplanner.team/stops/Csubosa1", "https://tec.openplanner.team/stops/Csurela4"], ["https://tec.openplanner.team/stops/N106aea", "https://tec.openplanner.team/stops/N106aeb"], ["https://tec.openplanner.team/stops/Ccoha602", "https://tec.openplanner.team/stops/H2tz120a"], ["https://tec.openplanner.team/stops/H1ag105b", "https://tec.openplanner.team/stops/H1an100b"], ["https://tec.openplanner.team/stops/H1mk110b", "https://tec.openplanner.team/stops/H1mk113b"], ["https://tec.openplanner.team/stops/H1hr116a", "https://tec.openplanner.team/stops/H1hr129a"], ["https://tec.openplanner.team/stops/N209aha", "https://tec.openplanner.team/stops/N209aja"], ["https://tec.openplanner.team/stops/H4wr173a", "https://tec.openplanner.team/stops/H4wr173b"], ["https://tec.openplanner.team/stops/Cmmadma1", "https://tec.openplanner.team/stops/Cmmegli1"], ["https://tec.openplanner.team/stops/Cobbuze1", "https://tec.openplanner.team/stops/Cobbuze2"], ["https://tec.openplanner.team/stops/H1bd100b", "https://tec.openplanner.team/stops/H1le121b"], ["https://tec.openplanner.team/stops/X720aea", "https://tec.openplanner.team/stops/X721aea"], ["https://tec.openplanner.team/stops/Ltibord2", "https://tec.openplanner.team/stops/Ltithie1"], ["https://tec.openplanner.team/stops/LsVhupp1", "https://tec.openplanner.team/stops/LsVthom2"], ["https://tec.openplanner.team/stops/Bincfer2", "https://tec.openplanner.team/stops/Bsrbbas1"], ["https://tec.openplanner.team/stops/H4hq130b", "https://tec.openplanner.team/stops/H4hs137b"], ["https://tec.openplanner.team/stops/Bdlmflo1", "https://tec.openplanner.team/stops/Bdlmgla3"], ["https://tec.openplanner.team/stops/LLSba4-2", "https://tec.openplanner.team/stops/LLSbajo2"], ["https://tec.openplanner.team/stops/N540aob", "https://tec.openplanner.team/stops/N540ara"], ["https://tec.openplanner.team/stops/H1hm175b", "https://tec.openplanner.team/stops/H1hm177a"], ["https://tec.openplanner.team/stops/LENalun2", "https://tec.openplanner.team/stops/LENparc2"], ["https://tec.openplanner.team/stops/X923apa", "https://tec.openplanner.team/stops/X923apb"], ["https://tec.openplanner.team/stops/LSWscie2", "https://tec.openplanner.team/stops/LSZroqu2"], ["https://tec.openplanner.team/stops/LSAeg--1", "https://tec.openplanner.team/stops/LSAeg--2"], ["https://tec.openplanner.team/stops/X743afa", "https://tec.openplanner.team/stops/X743afb"], ["https://tec.openplanner.team/stops/NL57aga", "https://tec.openplanner.team/stops/NL57agb"], ["https://tec.openplanner.team/stops/H5el100a", "https://tec.openplanner.team/stops/H5rx131a"], ["https://tec.openplanner.team/stops/N343ada", "https://tec.openplanner.team/stops/X344aca"], ["https://tec.openplanner.team/stops/Bnodlce1", "https://tec.openplanner.team/stops/Bolgmpl1"], ["https://tec.openplanner.team/stops/LaAhaup1", "https://tec.openplanner.team/stops/LaAnorm1"], ["https://tec.openplanner.team/stops/X811aga", "https://tec.openplanner.team/stops/X811ahb"], ["https://tec.openplanner.team/stops/N508ala", "https://tec.openplanner.team/stops/N508ama"], ["https://tec.openplanner.team/stops/NC28aea", "https://tec.openplanner.team/stops/NC28aha"], ["https://tec.openplanner.team/stops/LBBpech2", "https://tec.openplanner.team/stops/X222azb"], ["https://tec.openplanner.team/stops/LAxchpl1", "https://tec.openplanner.team/stops/Llianix3"], ["https://tec.openplanner.team/stops/Bllncbr2", "https://tec.openplanner.team/stops/Bmsgbur2"], ["https://tec.openplanner.team/stops/N561aba", "https://tec.openplanner.team/stops/N561aga"], ["https://tec.openplanner.team/stops/X773aja", "https://tec.openplanner.team/stops/X773ana"], ["https://tec.openplanner.team/stops/X879ahb", "https://tec.openplanner.team/stops/X879ana"], ["https://tec.openplanner.team/stops/LMucarr1", "https://tec.openplanner.team/stops/LMuvill2"], ["https://tec.openplanner.team/stops/H4ft136a", "https://tec.openplanner.team/stops/H4ma204b"], ["https://tec.openplanner.team/stops/Cmbcime3", "https://tec.openplanner.team/stops/Csysans2"], ["https://tec.openplanner.team/stops/X663aca", "https://tec.openplanner.team/stops/X663acb"], ["https://tec.openplanner.team/stops/LTyh24-2", "https://tec.openplanner.team/stops/LTyh51-2"], ["https://tec.openplanner.team/stops/N507aeb", "https://tec.openplanner.team/stops/NL74aea"], ["https://tec.openplanner.team/stops/Barqhpe2", "https://tec.openplanner.team/stops/Barqres2"], ["https://tec.openplanner.team/stops/LHHplac2", "https://tec.openplanner.team/stops/LHHronh1"], ["https://tec.openplanner.team/stops/Btlbegl2", "https://tec.openplanner.team/stops/Btlbegl4"], ["https://tec.openplanner.team/stops/LSPClem2", "https://tec.openplanner.team/stops/LSPvigi2"], ["https://tec.openplanner.team/stops/LHUmala1", "https://tec.openplanner.team/stops/LHUtfal1"], ["https://tec.openplanner.team/stops/Bcrncen1", "https://tec.openplanner.team/stops/Bcrnpla3"], ["https://tec.openplanner.team/stops/LeYauto1", "https://tec.openplanner.team/stops/LeYmosc2"], ["https://tec.openplanner.team/stops/LnDkreu2", "https://tec.openplanner.team/stops/LwSbrei2"], ["https://tec.openplanner.team/stops/LaNdorf2", "https://tec.openplanner.team/stops/LhRandl2"], ["https://tec.openplanner.team/stops/LHbcent1", "https://tec.openplanner.team/stops/LJAherb3"], ["https://tec.openplanner.team/stops/LTPtroi1", "https://tec.openplanner.team/stops/LWn24--2"], ["https://tec.openplanner.team/stops/LLUreut1", "https://tec.openplanner.team/stops/LLUtill2"], ["https://tec.openplanner.team/stops/X937aja", "https://tec.openplanner.team/stops/X952adb"], ["https://tec.openplanner.team/stops/H1pa109b", "https://tec.openplanner.team/stops/H1pa109c"], ["https://tec.openplanner.team/stops/LTPwann1", "https://tec.openplanner.team/stops/LTPwann2"], ["https://tec.openplanner.team/stops/LSkcoin1", "https://tec.openplanner.team/stops/LSkdouf1"], ["https://tec.openplanner.team/stops/X733aga", "https://tec.openplanner.team/stops/X733agb"], ["https://tec.openplanner.team/stops/LDOchev1", "https://tec.openplanner.team/stops/LDOviad1"], ["https://tec.openplanner.team/stops/H4ne141b", "https://tec.openplanner.team/stops/H4te260a"], ["https://tec.openplanner.team/stops/H4hq129b", "https://tec.openplanner.team/stops/H4hs135a"], ["https://tec.openplanner.team/stops/X754aub", "https://tec.openplanner.team/stops/X779ada"], ["https://tec.openplanner.team/stops/LMoelno1", "https://tec.openplanner.team/stops/LMovich1"], ["https://tec.openplanner.team/stops/H2bh120b", "https://tec.openplanner.team/stops/H2mg142a"], ["https://tec.openplanner.team/stops/X614aeb", "https://tec.openplanner.team/stops/X614aga"], ["https://tec.openplanner.team/stops/N508adb", "https://tec.openplanner.team/stops/N508aeb"], ["https://tec.openplanner.team/stops/H2go115b", "https://tec.openplanner.team/stops/H2go118a"], ["https://tec.openplanner.team/stops/LAtaube1", "https://tec.openplanner.team/stops/LOcchat1"], ["https://tec.openplanner.team/stops/X989aga", "https://tec.openplanner.team/stops/X989agb"], ["https://tec.openplanner.team/stops/N217acd", "https://tec.openplanner.team/stops/N337aea"], ["https://tec.openplanner.team/stops/X364acb", "https://tec.openplanner.team/stops/X371aaa"], ["https://tec.openplanner.team/stops/N115acb", "https://tec.openplanner.team/stops/N155aib"], ["https://tec.openplanner.team/stops/X390alb", "https://tec.openplanner.team/stops/X991aea"], ["https://tec.openplanner.team/stops/X671afa", "https://tec.openplanner.team/stops/X671agb"], ["https://tec.openplanner.team/stops/X618aca", "https://tec.openplanner.team/stops/X618acb"], ["https://tec.openplanner.team/stops/Cradest1", "https://tec.openplanner.team/stops/Cradest2"], ["https://tec.openplanner.team/stops/LSIgera1", "https://tec.openplanner.team/stops/LSIters2"], ["https://tec.openplanner.team/stops/LEScarr1", "https://tec.openplanner.team/stops/LEScham1"], ["https://tec.openplanner.team/stops/X638aaa", "https://tec.openplanner.team/stops/X638aab"], ["https://tec.openplanner.team/stops/H4wr174b", "https://tec.openplanner.team/stops/H4wr175a"], ["https://tec.openplanner.team/stops/LSTec--1", "https://tec.openplanner.team/stops/LSTrema1"], ["https://tec.openplanner.team/stops/N501cpa", "https://tec.openplanner.team/stops/N501cpb"], ["https://tec.openplanner.team/stops/Bjodath1", "https://tec.openplanner.team/stops/Bjodath3"], ["https://tec.openplanner.team/stops/X938aaa", "https://tec.openplanner.team/stops/X939acb"], ["https://tec.openplanner.team/stops/N501hfb", "https://tec.openplanner.team/stops/N501mwb"], ["https://tec.openplanner.team/stops/X618aja", "https://tec.openplanner.team/stops/X618ajb"], ["https://tec.openplanner.team/stops/Cpcchau", "https://tec.openplanner.team/stops/Cpceclu2"], ["https://tec.openplanner.team/stops/NL76aqb", "https://tec.openplanner.team/stops/NL80ava"], ["https://tec.openplanner.team/stops/N360aab", "https://tec.openplanner.team/stops/N368ada"], ["https://tec.openplanner.team/stops/LSJ38--1", "https://tec.openplanner.team/stops/LSJeg--2"], ["https://tec.openplanner.team/stops/LTHcent1", "https://tec.openplanner.team/stops/LTHcime1"], ["https://tec.openplanner.team/stops/H4by117a", "https://tec.openplanner.team/stops/H4by119a"], ["https://tec.openplanner.team/stops/Blanmde1", "https://tec.openplanner.team/stops/Bwaanwi1"], ["https://tec.openplanner.team/stops/X342aea", "https://tec.openplanner.team/stops/X342aga"], ["https://tec.openplanner.team/stops/LBJapol1", "https://tec.openplanner.team/stops/LBJlieg1"], ["https://tec.openplanner.team/stops/H4pi135a", "https://tec.openplanner.team/stops/H4pi135b"], ["https://tec.openplanner.team/stops/LlCgren1", "https://tec.openplanner.team/stops/LrAgier2"], ["https://tec.openplanner.team/stops/H2mo133a", "https://tec.openplanner.team/stops/H2mo135a"], ["https://tec.openplanner.team/stops/Bnivpeu1", "https://tec.openplanner.team/stops/Bnivzep2"], ["https://tec.openplanner.team/stops/N511alb", "https://tec.openplanner.team/stops/N511alc"], ["https://tec.openplanner.team/stops/Llgdfra1", "https://tec.openplanner.team/stops/Llgschm1"], ["https://tec.openplanner.team/stops/LFNecpr*", "https://tec.openplanner.team/stops/LFNmonu2"], ["https://tec.openplanner.team/stops/H1eo103a", "https://tec.openplanner.team/stops/H1eo108b"], ["https://tec.openplanner.team/stops/N516amb", "https://tec.openplanner.team/stops/N516apa"], ["https://tec.openplanner.team/stops/Lligare*", "https://tec.openplanner.team/stops/Lmitech2"], ["https://tec.openplanner.team/stops/Bjodtpo1", "https://tec.openplanner.team/stops/Bjodtpo2"], ["https://tec.openplanner.team/stops/Ldihote2", "https://tec.openplanner.team/stops/Ldimeun2"], ["https://tec.openplanner.team/stops/N120aab", "https://tec.openplanner.team/stops/N121ahb"], ["https://tec.openplanner.team/stops/Lgrgoff1", "https://tec.openplanner.team/stops/Lgrgoff2"], ["https://tec.openplanner.team/stops/LWEcomp2", "https://tec.openplanner.team/stops/LWEfati1"], ["https://tec.openplanner.team/stops/H4ar172a", "https://tec.openplanner.team/stops/H4ar178b"], ["https://tec.openplanner.team/stops/Bcrncce2", "https://tec.openplanner.team/stops/Bsgeqpb1"], ["https://tec.openplanner.team/stops/H1ca103a", "https://tec.openplanner.team/stops/H1ca103b"], ["https://tec.openplanner.team/stops/Cacecol2", "https://tec.openplanner.team/stops/Cacgare2"], ["https://tec.openplanner.team/stops/N214aca", "https://tec.openplanner.team/stops/N236aib"], ["https://tec.openplanner.team/stops/X761aba", "https://tec.openplanner.team/stops/X762aga"], ["https://tec.openplanner.team/stops/Bblaniv2", "https://tec.openplanner.team/stops/Bwatmgo4"], ["https://tec.openplanner.team/stops/H4te251a", "https://tec.openplanner.team/stops/H4te251b"], ["https://tec.openplanner.team/stops/Bsamc7d1", "https://tec.openplanner.team/stops/Bsammon1"], ["https://tec.openplanner.team/stops/Llgdepo5", "https://tec.openplanner.team/stops/Llgkurt1"], ["https://tec.openplanner.team/stops/Cjualed1", "https://tec.openplanner.team/stops/Cjuregi2"], ["https://tec.openplanner.team/stops/LRGgend2", "https://tec.openplanner.team/stops/LRGpt5-3"], ["https://tec.openplanner.team/stops/X601bna", "https://tec.openplanner.team/stops/X601bnb"], ["https://tec.openplanner.team/stops/N535ahb", "https://tec.openplanner.team/stops/N535amd"], ["https://tec.openplanner.team/stops/N552aca", "https://tec.openplanner.team/stops/N568adb"], ["https://tec.openplanner.team/stops/H1gh148a", "https://tec.openplanner.team/stops/H1gh365a"], ["https://tec.openplanner.team/stops/X823aab", "https://tec.openplanner.team/stops/X824aka"], ["https://tec.openplanner.team/stops/Bdoncar1", "https://tec.openplanner.team/stops/Bdoncar2"], ["https://tec.openplanner.team/stops/Ltiplat1", "https://tec.openplanner.team/stops/Ltiplat2"], ["https://tec.openplanner.team/stops/LbTathe1", "https://tec.openplanner.team/stops/LbTathe2"], ["https://tec.openplanner.team/stops/Lmlprie1", "https://tec.openplanner.team/stops/Lmlprie2"], ["https://tec.openplanner.team/stops/Bgembhe2", "https://tec.openplanner.team/stops/N576anb"], ["https://tec.openplanner.team/stops/NL80aub", "https://tec.openplanner.team/stops/NL80ava"], ["https://tec.openplanner.team/stops/X784ahb", "https://tec.openplanner.team/stops/X784aib"], ["https://tec.openplanner.team/stops/LLegern1", "https://tec.openplanner.team/stops/X548abb"], ["https://tec.openplanner.team/stops/N540aeb", "https://tec.openplanner.team/stops/N542alb"], ["https://tec.openplanner.team/stops/H2sb234a", "https://tec.openplanner.team/stops/H2sb242a"], ["https://tec.openplanner.team/stops/N548ada", "https://tec.openplanner.team/stops/N548asb"], ["https://tec.openplanner.team/stops/H1ho140b", "https://tec.openplanner.team/stops/H1wa157a"], ["https://tec.openplanner.team/stops/Cjupui01", "https://tec.openplanner.team/stops/Cjurogi1"], ["https://tec.openplanner.team/stops/LTIdjal1", "https://tec.openplanner.team/stops/LTIp%C3%A9pi1"], ["https://tec.openplanner.team/stops/LTychev2", "https://tec.openplanner.team/stops/LTyhapp4"], ["https://tec.openplanner.team/stops/X645aaa", "https://tec.openplanner.team/stops/X645aab"], ["https://tec.openplanner.team/stops/X874apb", "https://tec.openplanner.team/stops/X876aaa"], ["https://tec.openplanner.team/stops/Cbckios2", "https://tec.openplanner.team/stops/Cbctile"], ["https://tec.openplanner.team/stops/N118aua", "https://tec.openplanner.team/stops/N118axb"], ["https://tec.openplanner.team/stops/X604afc", "https://tec.openplanner.team/stops/X604afd"], ["https://tec.openplanner.team/stops/Bgnvpap1", "https://tec.openplanner.team/stops/Bgnvpos2"], ["https://tec.openplanner.team/stops/X396aba", "https://tec.openplanner.team/stops/X397aba"], ["https://tec.openplanner.team/stops/Bbeaneu4", "https://tec.openplanner.team/stops/Btlgmee2"], ["https://tec.openplanner.team/stops/LGAholl2", "https://tec.openplanner.team/stops/LGAnovi2"], ["https://tec.openplanner.team/stops/Cmldeto1", "https://tec.openplanner.team/stops/NC01afb"], ["https://tec.openplanner.team/stops/N501hna", "https://tec.openplanner.team/stops/N501jua"], ["https://tec.openplanner.team/stops/LATcham*", "https://tec.openplanner.team/stops/LVLpane2"], ["https://tec.openplanner.team/stops/Cmlaili2", "https://tec.openplanner.team/stops/Cmlange2"], ["https://tec.openplanner.team/stops/Cmycime2", "https://tec.openplanner.team/stops/Cmypost2"], ["https://tec.openplanner.team/stops/LPtrefa2", "https://tec.openplanner.team/stops/LRfcent1"], ["https://tec.openplanner.team/stops/N509aka", "https://tec.openplanner.team/stops/N509bea"], ["https://tec.openplanner.team/stops/LHhmohe1", "https://tec.openplanner.team/stops/NL68afb"], ["https://tec.openplanner.team/stops/X896adb", "https://tec.openplanner.team/stops/X995acb"], ["https://tec.openplanner.team/stops/Blasclo1", "https://tec.openplanner.team/stops/Blascsl2"], ["https://tec.openplanner.team/stops/N501bxb", "https://tec.openplanner.team/stops/N501mwa"], ["https://tec.openplanner.team/stops/Lsebico1", "https://tec.openplanner.team/stops/Lseptsa1"], ["https://tec.openplanner.team/stops/LCLgend2", "https://tec.openplanner.team/stops/LCLstat2"], ["https://tec.openplanner.team/stops/LFyec--1", "https://tec.openplanner.team/stops/LFymare3"], ["https://tec.openplanner.team/stops/Baudhan2", "https://tec.openplanner.team/stops/Baudsju1"], ["https://tec.openplanner.team/stops/H2ll189c", "https://tec.openplanner.team/stops/H2ll197a"], ["https://tec.openplanner.team/stops/N101aha", "https://tec.openplanner.team/stops/N101apb"], ["https://tec.openplanner.team/stops/X769afa", "https://tec.openplanner.team/stops/X769ahb"], ["https://tec.openplanner.team/stops/X801asa", "https://tec.openplanner.team/stops/X801coa"], ["https://tec.openplanner.team/stops/LBEcomm2", "https://tec.openplanner.team/stops/LBEnina6"], ["https://tec.openplanner.team/stops/Lflprev1", "https://tec.openplanner.team/stops/Lrovand1"], ["https://tec.openplanner.team/stops/N353afd", "https://tec.openplanner.team/stops/N357ada"], ["https://tec.openplanner.team/stops/N343acb", "https://tec.openplanner.team/stops/X343ama"], ["https://tec.openplanner.team/stops/X607aea", "https://tec.openplanner.team/stops/X607aib"], ["https://tec.openplanner.team/stops/Bvirduj2", "https://tec.openplanner.team/stops/Bvirhsa2"], ["https://tec.openplanner.team/stops/H4eh101b", "https://tec.openplanner.team/stops/H4eh102a"], ["https://tec.openplanner.team/stops/N534aua", "https://tec.openplanner.team/stops/N534auc"], ["https://tec.openplanner.team/stops/Lvtlomb4", "https://tec.openplanner.team/stops/Lvtnico1"], ["https://tec.openplanner.team/stops/LAVeg--1", "https://tec.openplanner.team/stops/LAVpequ2"], ["https://tec.openplanner.team/stops/N229aaa", "https://tec.openplanner.team/stops/N229aab"], ["https://tec.openplanner.team/stops/Bhlvgar2", "https://tec.openplanner.team/stops/Bnivfdu2"], ["https://tec.openplanner.team/stops/Cvlcen2", "https://tec.openplanner.team/stops/NH21aca"], ["https://tec.openplanner.team/stops/X615bga", "https://tec.openplanner.team/stops/X615bhb"], ["https://tec.openplanner.team/stops/H5fl102a", "https://tec.openplanner.team/stops/H5fl102b"], ["https://tec.openplanner.team/stops/N254afa", "https://tec.openplanner.team/stops/N254afb"], ["https://tec.openplanner.team/stops/H1si162b", "https://tec.openplanner.team/stops/H1si169a"], ["https://tec.openplanner.team/stops/LAmbach1", "https://tec.openplanner.team/stops/LAmvent2"], ["https://tec.openplanner.team/stops/Lrocort2", "https://tec.openplanner.team/stops/Lroeg--3"], ["https://tec.openplanner.team/stops/Clrrhau2", "https://tec.openplanner.team/stops/CMpetr1"], ["https://tec.openplanner.team/stops/N103aha", "https://tec.openplanner.team/stops/N103aia"], ["https://tec.openplanner.team/stops/X618aja", "https://tec.openplanner.team/stops/X625ada"], ["https://tec.openplanner.team/stops/Llglonh2", "https://tec.openplanner.team/stops/LlgPTAV1"], ["https://tec.openplanner.team/stops/Bnivga12", "https://tec.openplanner.team/stops/Bnivga41"], ["https://tec.openplanner.team/stops/X880aca", "https://tec.openplanner.team/stops/X880adb"], ["https://tec.openplanner.team/stops/H2re168a", "https://tec.openplanner.team/stops/H2re168b"], ["https://tec.openplanner.team/stops/LSOtrou1", "https://tec.openplanner.team/stops/LSOtrou2"], ["https://tec.openplanner.team/stops/X746aia", "https://tec.openplanner.team/stops/X746aib"], ["https://tec.openplanner.team/stops/Cbflong1", "https://tec.openplanner.team/stops/NC02aab"], ["https://tec.openplanner.team/stops/N123aaa", "https://tec.openplanner.team/stops/N150aca"], ["https://tec.openplanner.team/stops/X659aaa", "https://tec.openplanner.team/stops/X659axb"], ["https://tec.openplanner.team/stops/LMheg--1", "https://tec.openplanner.team/stops/LMhvina2"], ["https://tec.openplanner.team/stops/H2ll190b", "https://tec.openplanner.team/stops/H2ll257d"], ["https://tec.openplanner.team/stops/LBJapol1", "https://tec.openplanner.team/stops/LBJplan2"], ["https://tec.openplanner.team/stops/LCHfond2", "https://tec.openplanner.team/stops/Lprmerc*"], ["https://tec.openplanner.team/stops/H4ka179a", "https://tec.openplanner.team/stops/H4ka179b"], ["https://tec.openplanner.team/stops/Blemmar2", "https://tec.openplanner.team/stops/Blemwob2"], ["https://tec.openplanner.team/stops/Lvcchev2", "https://tec.openplanner.team/stops/Lvcsapi1"], ["https://tec.openplanner.team/stops/N542aac", "https://tec.openplanner.team/stops/N542aqa"], ["https://tec.openplanner.team/stops/Cflchel3", "https://tec.openplanner.team/stops/Cflecep2"], ["https://tec.openplanner.team/stops/LENarde1", "https://tec.openplanner.team/stops/LENecol2"], ["https://tec.openplanner.team/stops/X669afa", "https://tec.openplanner.team/stops/X669afb"], ["https://tec.openplanner.team/stops/Llgcouv1", "https://tec.openplanner.team/stops/Llgcouv2"], ["https://tec.openplanner.team/stops/Brsrpar2", "https://tec.openplanner.team/stops/Brsrrcu1"], ["https://tec.openplanner.team/stops/Cthegli1", "https://tec.openplanner.team/stops/Cthegli2"], ["https://tec.openplanner.team/stops/X661aaa", "https://tec.openplanner.team/stops/X661aba"], ["https://tec.openplanner.team/stops/H4he105a", "https://tec.openplanner.team/stops/H4pq118a"], ["https://tec.openplanner.team/stops/X826abb", "https://tec.openplanner.team/stops/X826aha"], ["https://tec.openplanner.team/stops/LMAgb--1", "https://tec.openplanner.team/stops/LMArave2"], ["https://tec.openplanner.team/stops/Bnivbpe2", "https://tec.openplanner.team/stops/Bptrvil1"], ["https://tec.openplanner.team/stops/N254aea", "https://tec.openplanner.team/stops/N254afa"], ["https://tec.openplanner.team/stops/Bcercsa1", "https://tec.openplanner.team/stops/Bcsegal2"], ["https://tec.openplanner.team/stops/Ccosart1", "https://tec.openplanner.team/stops/Crocpai2"], ["https://tec.openplanner.team/stops/H2sb224b", "https://tec.openplanner.team/stops/H3th134a"], ["https://tec.openplanner.team/stops/Llgdelb2", "https://tec.openplanner.team/stops/Llgnati1"], ["https://tec.openplanner.team/stops/LSOgott1", "https://tec.openplanner.team/stops/LSOgott2"], ["https://tec.openplanner.team/stops/Canecbr1", "https://tec.openplanner.team/stops/Canecbr2"], ["https://tec.openplanner.team/stops/X992ada", "https://tec.openplanner.team/stops/X992adb"], ["https://tec.openplanner.team/stops/N508aoa", "https://tec.openplanner.team/stops/N513bib"], ["https://tec.openplanner.team/stops/H2ll195a", "https://tec.openplanner.team/stops/H2sv218b"], ["https://tec.openplanner.team/stops/X982bga", "https://tec.openplanner.team/stops/X982bka"], ["https://tec.openplanner.team/stops/LvAschw1", "https://tec.openplanner.team/stops/LvAschw2"], ["https://tec.openplanner.team/stops/LARauto3", "https://tec.openplanner.team/stops/LARgare3"], ["https://tec.openplanner.team/stops/LGMstin1", "https://tec.openplanner.team/stops/LLUlieg2"], ["https://tec.openplanner.team/stops/Lcavign1", "https://tec.openplanner.team/stops/Lvchenn2"], ["https://tec.openplanner.team/stops/Lghgoll2", "https://tec.openplanner.team/stops/Lghprea2"], ["https://tec.openplanner.team/stops/Lendonh2", "https://tec.openplanner.team/stops/Lenhouc1"], ["https://tec.openplanner.team/stops/Bsauvmo1", "https://tec.openplanner.team/stops/N541aea"], ["https://tec.openplanner.team/stops/X224ada", "https://tec.openplanner.team/stops/X224ahb"], ["https://tec.openplanner.team/stops/Bwatric2", "https://tec.openplanner.team/stops/Bwatzod1"], ["https://tec.openplanner.team/stops/H4ga148d", "https://tec.openplanner.team/stops/H4ga171a"], ["https://tec.openplanner.team/stops/N149ahc", "https://tec.openplanner.team/stops/N154aca"], ["https://tec.openplanner.team/stops/NR21aaa", "https://tec.openplanner.team/stops/NR21aea"], ["https://tec.openplanner.team/stops/X831aaa", "https://tec.openplanner.team/stops/X831adb"], ["https://tec.openplanner.team/stops/X907ada", "https://tec.openplanner.team/stops/X907aeb"], ["https://tec.openplanner.team/stops/NL77aib", "https://tec.openplanner.team/stops/NL77aja"], ["https://tec.openplanner.team/stops/LhOholz2", "https://tec.openplanner.team/stops/LhUkape1"], ["https://tec.openplanner.team/stops/LeMdorf1", "https://tec.openplanner.team/stops/LeMdorf2"], ["https://tec.openplanner.team/stops/X837aaa", "https://tec.openplanner.team/stops/X839agb"], ["https://tec.openplanner.team/stops/X601dfa", "https://tec.openplanner.team/stops/X623aaa"], ["https://tec.openplanner.team/stops/Blmldmi1", "https://tec.openplanner.team/stops/Bottbou2"], ["https://tec.openplanner.team/stops/X730aaa", "https://tec.openplanner.team/stops/X736afa"], ["https://tec.openplanner.team/stops/Cfoermi2", "https://tec.openplanner.team/stops/Cfomays1"], ["https://tec.openplanner.team/stops/LLUgend1", "https://tec.openplanner.team/stops/LLUgend2"], ["https://tec.openplanner.team/stops/X730afb", "https://tec.openplanner.team/stops/X730agb"], ["https://tec.openplanner.team/stops/LESamos1", "https://tec.openplanner.team/stops/LEScham1"], ["https://tec.openplanner.team/stops/H4pq114b", "https://tec.openplanner.team/stops/H4pq120a"], ["https://tec.openplanner.team/stops/H4ty302b", "https://tec.openplanner.team/stops/H4ty330b"], ["https://tec.openplanner.team/stops/LSPcomm2", "https://tec.openplanner.team/stops/LSPpomp1"], ["https://tec.openplanner.team/stops/X601acb", "https://tec.openplanner.team/stops/X601aqa"], ["https://tec.openplanner.team/stops/H1an100b", "https://tec.openplanner.team/stops/H1on128d"], ["https://tec.openplanner.team/stops/Bgzdast2", "https://tec.openplanner.team/stops/Bgzdpos3"], ["https://tec.openplanner.team/stops/Ladpire1", "https://tec.openplanner.team/stops/Ladpire3"], ["https://tec.openplanner.team/stops/N542agb", "https://tec.openplanner.team/stops/N542ara"], ["https://tec.openplanner.team/stops/Brixeur5", "https://tec.openplanner.team/stops/Brixpla1"], ["https://tec.openplanner.team/stops/X840aba", "https://tec.openplanner.team/stops/X840abb"], ["https://tec.openplanner.team/stops/H4mo145a", "https://tec.openplanner.team/stops/H4mo165a"], ["https://tec.openplanner.team/stops/NL75adb", "https://tec.openplanner.team/stops/NR30aba"], ["https://tec.openplanner.team/stops/LWabela2", "https://tec.openplanner.team/stops/LWacime4"], ["https://tec.openplanner.team/stops/N214ajb", "https://tec.openplanner.team/stops/N236abb"], ["https://tec.openplanner.team/stops/Bsdapir1", "https://tec.openplanner.team/stops/Csdpira1"], ["https://tec.openplanner.team/stops/N562aoa", "https://tec.openplanner.team/stops/N562aob"], ["https://tec.openplanner.team/stops/N540aba", "https://tec.openplanner.team/stops/N540aea"], ["https://tec.openplanner.team/stops/LTPbeau2", "https://tec.openplanner.team/stops/LTPpreh2"], ["https://tec.openplanner.team/stops/H5st162b", "https://tec.openplanner.team/stops/H5st168a"], ["https://tec.openplanner.team/stops/H1ca104b", "https://tec.openplanner.team/stops/H1ca109b"], ["https://tec.openplanner.team/stops/H5rx149a", "https://tec.openplanner.team/stops/H5rx150a"], ["https://tec.openplanner.team/stops/X660aia", "https://tec.openplanner.team/stops/X660aib"], ["https://tec.openplanner.team/stops/X390alb", "https://tec.openplanner.team/stops/X390anb"], ["https://tec.openplanner.team/stops/X805ajb", "https://tec.openplanner.team/stops/X831aab"], ["https://tec.openplanner.team/stops/Bottgar6", "https://tec.openplanner.team/stops/Bottgar8"], ["https://tec.openplanner.team/stops/X986aeb", "https://tec.openplanner.team/stops/X986agb"], ["https://tec.openplanner.team/stops/H1sy138b", "https://tec.openplanner.team/stops/H1sy144d"], ["https://tec.openplanner.team/stops/X879ana", "https://tec.openplanner.team/stops/X879aqa"], ["https://tec.openplanner.team/stops/X818aha", "https://tec.openplanner.team/stops/X818aja"], ["https://tec.openplanner.team/stops/Bwatlbr2", "https://tec.openplanner.team/stops/Bwatle32"], ["https://tec.openplanner.team/stops/H1ba119c", "https://tec.openplanner.team/stops/H1ba119d"], ["https://tec.openplanner.team/stops/LNCdoma2", "https://tec.openplanner.team/stops/LNCdoma4"], ["https://tec.openplanner.team/stops/N584abb", "https://tec.openplanner.team/stops/N584cac"], ["https://tec.openplanner.team/stops/X941afa", "https://tec.openplanner.team/stops/X941afb"], ["https://tec.openplanner.team/stops/N101aab", "https://tec.openplanner.team/stops/N147aba"], ["https://tec.openplanner.team/stops/Bitrnus2", "https://tec.openplanner.team/stops/Bitrpri2"], ["https://tec.openplanner.team/stops/N343acb", "https://tec.openplanner.team/stops/N343ada"], ["https://tec.openplanner.team/stops/LhSgete1", "https://tec.openplanner.team/stops/LhSkirc1"], ["https://tec.openplanner.team/stops/Lsesabl1", "https://tec.openplanner.team/stops/Lsevill2"], ["https://tec.openplanner.team/stops/LLSba6-2", "https://tec.openplanner.team/stops/LTOplac1"], ["https://tec.openplanner.team/stops/LNIdoma1", "https://tec.openplanner.team/stops/LSPmari1"], ["https://tec.openplanner.team/stops/N501jsa", "https://tec.openplanner.team/stops/N501jsb"], ["https://tec.openplanner.team/stops/Bblafra2", "https://tec.openplanner.team/stops/Bblapet1"], ["https://tec.openplanner.team/stops/X879aeb", "https://tec.openplanner.team/stops/X879apb"], ["https://tec.openplanner.team/stops/LAMdelh*", "https://tec.openplanner.team/stops/LAMdelh3"], ["https://tec.openplanner.team/stops/X757alb", "https://tec.openplanner.team/stops/X758aha"], ["https://tec.openplanner.team/stops/H4mx116a", "https://tec.openplanner.team/stops/H4mx116b"], ["https://tec.openplanner.team/stops/LSXvill1", "https://tec.openplanner.team/stops/LSXvill2"], ["https://tec.openplanner.team/stops/NL81aeb", "https://tec.openplanner.team/stops/NL81ahb"], ["https://tec.openplanner.team/stops/Cnachcu1", "https://tec.openplanner.team/stops/Cnachcu2"], ["https://tec.openplanner.team/stops/Cgycorv1", "https://tec.openplanner.team/stops/Cgyplst2"], ["https://tec.openplanner.team/stops/Barcsta2", "https://tec.openplanner.team/stops/Bpecvme2"], ["https://tec.openplanner.team/stops/X739aca", "https://tec.openplanner.team/stops/X739alb"], ["https://tec.openplanner.team/stops/X902atb", "https://tec.openplanner.team/stops/X902bbb"], ["https://tec.openplanner.team/stops/Bclgeco2", "https://tec.openplanner.team/stops/Bclgegl2"], ["https://tec.openplanner.team/stops/LWahetr2", "https://tec.openplanner.team/stops/LWalibo2"], ["https://tec.openplanner.team/stops/Llgcham4", "https://tec.openplanner.team/stops/Llgmulh1"], ["https://tec.openplanner.team/stops/X512aia", "https://tec.openplanner.team/stops/X595aab"], ["https://tec.openplanner.team/stops/H1ms294c", "https://tec.openplanner.team/stops/H1ms308b"], ["https://tec.openplanner.team/stops/X754acb", "https://tec.openplanner.team/stops/X754aqa"], ["https://tec.openplanner.team/stops/Cprvsar1", "https://tec.openplanner.team/stops/NC11arb"], ["https://tec.openplanner.team/stops/H4bn101b", "https://tec.openplanner.team/stops/H4ws158a"], ["https://tec.openplanner.team/stops/X790aca", "https://tec.openplanner.team/stops/X790ada"], ["https://tec.openplanner.team/stops/N501bza", "https://tec.openplanner.team/stops/N501bzb"], ["https://tec.openplanner.team/stops/H1gy112a", "https://tec.openplanner.team/stops/H1gy112b"], ["https://tec.openplanner.team/stops/LHrbast1", "https://tec.openplanner.team/stops/X512aib"], ["https://tec.openplanner.team/stops/LElgerd5", "https://tec.openplanner.team/stops/LElgerd6"], ["https://tec.openplanner.team/stops/X773acb", "https://tec.openplanner.team/stops/X773afa"], ["https://tec.openplanner.team/stops/X754axa", "https://tec.openplanner.team/stops/X754axb"], ["https://tec.openplanner.team/stops/Cfrcoqu3", "https://tec.openplanner.team/stops/Cfrcoqu4"], ["https://tec.openplanner.team/stops/H4co149a", "https://tec.openplanner.team/stops/H4co149b"], ["https://tec.openplanner.team/stops/Cgocalv3", "https://tec.openplanner.team/stops/Cgocalv4"], ["https://tec.openplanner.team/stops/Cfrcoop4", "https://tec.openplanner.team/stops/Cfrtry2"], ["https://tec.openplanner.team/stops/X661ara", "https://tec.openplanner.team/stops/X661ata"], ["https://tec.openplanner.team/stops/X657ada", "https://tec.openplanner.team/stops/X657ala"], ["https://tec.openplanner.team/stops/H3bi112b", "https://tec.openplanner.team/stops/H3bi118b"], ["https://tec.openplanner.team/stops/N547aab", "https://tec.openplanner.team/stops/N547aba"], ["https://tec.openplanner.team/stops/LCeterm1", "https://tec.openplanner.team/stops/LCeterm2"], ["https://tec.openplanner.team/stops/X989abb", "https://tec.openplanner.team/stops/X994adb"], ["https://tec.openplanner.team/stops/Louazot1", "https://tec.openplanner.team/stops/Loureno1"], ["https://tec.openplanner.team/stops/LAVpequ1", "https://tec.openplanner.team/stops/LBRbriv1"], ["https://tec.openplanner.team/stops/N235aba", "https://tec.openplanner.team/stops/N235ahb"], ["https://tec.openplanner.team/stops/Ladverv2", "https://tec.openplanner.team/stops/Ldipiss1"], ["https://tec.openplanner.team/stops/LHaeg--1", "https://tec.openplanner.team/stops/LHanest1"], ["https://tec.openplanner.team/stops/X937aga", "https://tec.openplanner.team/stops/X937akb"], ["https://tec.openplanner.team/stops/H1bn113a", "https://tec.openplanner.team/stops/H1qy131a"], ["https://tec.openplanner.team/stops/LFTec--1", "https://tec.openplanner.team/stops/LSygerm1"], ["https://tec.openplanner.team/stops/LXhhaka1", "https://tec.openplanner.team/stops/LXhjupr3"], ["https://tec.openplanner.team/stops/LXoeg--3", "https://tec.openplanner.team/stops/LXopier1"], ["https://tec.openplanner.team/stops/LHCmonu3", "https://tec.openplanner.team/stops/LHCmonu4"], ["https://tec.openplanner.team/stops/Bbalvil1", "https://tec.openplanner.team/stops/N530aga"], ["https://tec.openplanner.team/stops/N501zba", "https://tec.openplanner.team/stops/N501zea"], ["https://tec.openplanner.team/stops/Brsgfbl1", "https://tec.openplanner.team/stops/Brsgfbl2"], ["https://tec.openplanner.team/stops/Bgzddfh2", "https://tec.openplanner.team/stops/Bgzdegl3"], ["https://tec.openplanner.team/stops/Ccoha602", "https://tec.openplanner.team/stops/Cgpchgo1"], ["https://tec.openplanner.team/stops/LrAgier2", "https://tec.openplanner.team/stops/LrAputz2"], ["https://tec.openplanner.team/stops/N302aab", "https://tec.openplanner.team/stops/N302aea"], ["https://tec.openplanner.team/stops/Bbstasa1", "https://tec.openplanner.team/stops/Bbstcha1"], ["https://tec.openplanner.team/stops/X718aea", "https://tec.openplanner.team/stops/X718aib"], ["https://tec.openplanner.team/stops/H4do108a", "https://tec.openplanner.team/stops/H4eh100a"], ["https://tec.openplanner.team/stops/X601cba", "https://tec.openplanner.team/stops/X601cbb"], ["https://tec.openplanner.team/stops/H2hg147b", "https://tec.openplanner.team/stops/H2hg157c"], ["https://tec.openplanner.team/stops/N543bbc", "https://tec.openplanner.team/stops/N554afa"], ["https://tec.openplanner.team/stops/Braccen1", "https://tec.openplanner.team/stops/Bracrpe1"], ["https://tec.openplanner.team/stops/LBNauto1", "https://tec.openplanner.team/stops/LWElanc1"], ["https://tec.openplanner.team/stops/LRIhous1", "https://tec.openplanner.team/stops/LVIpneu1"], ["https://tec.openplanner.team/stops/LCPecli2", "https://tec.openplanner.team/stops/LMttrou1"], ["https://tec.openplanner.team/stops/LSBdelc2", "https://tec.openplanner.team/stops/LSGcolo2"], ["https://tec.openplanner.team/stops/Brsreco2", "https://tec.openplanner.team/stops/Brsregl2"], ["https://tec.openplanner.team/stops/LESflag1", "https://tec.openplanner.team/stops/LESfont2"], ["https://tec.openplanner.team/stops/Bmrllgr2", "https://tec.openplanner.team/stops/Bpiehte1"], ["https://tec.openplanner.team/stops/Brebblo2", "https://tec.openplanner.team/stops/Brebras1"], ["https://tec.openplanner.team/stops/X347aja", "https://tec.openplanner.team/stops/X890aeb"], ["https://tec.openplanner.team/stops/N535alb", "https://tec.openplanner.team/stops/N538aza"], ["https://tec.openplanner.team/stops/LkRrauw2", "https://tec.openplanner.team/stops/LwR129-1"], ["https://tec.openplanner.team/stops/N150akb", "https://tec.openplanner.team/stops/N165acb"], ["https://tec.openplanner.team/stops/H1ms254b", "https://tec.openplanner.team/stops/H1ms260b"], ["https://tec.openplanner.team/stops/N232bja", "https://tec.openplanner.team/stops/N261adb"], ["https://tec.openplanner.team/stops/Bbghsar1", "https://tec.openplanner.team/stops/Bbghsar2"], ["https://tec.openplanner.team/stops/LmDkoel1", "https://tec.openplanner.team/stops/LmDwei31"], ["https://tec.openplanner.team/stops/Bboutry1", "https://tec.openplanner.team/stops/Bbstchn2"], ["https://tec.openplanner.team/stops/Llgbrab2", "https://tec.openplanner.team/stops/Llghoub2"], ["https://tec.openplanner.team/stops/Brsgleq2", "https://tec.openplanner.team/stops/Buccpes2"], ["https://tec.openplanner.team/stops/N501jba", "https://tec.openplanner.team/stops/N999aab"], ["https://tec.openplanner.team/stops/N581aab", "https://tec.openplanner.team/stops/NL74ahd"], ["https://tec.openplanner.team/stops/LSGeg--4", "https://tec.openplanner.team/stops/LYechpl1"], ["https://tec.openplanner.team/stops/N539acb", "https://tec.openplanner.team/stops/N539ajb"], ["https://tec.openplanner.team/stops/NL74aca", "https://tec.openplanner.team/stops/NL74aea"], ["https://tec.openplanner.team/stops/LBkbamb1", "https://tec.openplanner.team/stops/LkEl3252"], ["https://tec.openplanner.team/stops/Chpatel1", "https://tec.openplanner.team/stops/Chpfoli5"], ["https://tec.openplanner.team/stops/Bjodrrg1", "https://tec.openplanner.team/stops/Bjodrrg2"], ["https://tec.openplanner.team/stops/NL76aha", "https://tec.openplanner.team/stops/NL76ahb"], ["https://tec.openplanner.team/stops/X659aea", "https://tec.openplanner.team/stops/X659afb"], ["https://tec.openplanner.team/stops/Lticoq-1", "https://tec.openplanner.team/stops/Ltiplat2"], ["https://tec.openplanner.team/stops/Cmonvci1", "https://tec.openplanner.team/stops/Cmoprov1"], ["https://tec.openplanner.team/stops/H1au113a", "https://tec.openplanner.team/stops/H1au113b"], ["https://tec.openplanner.team/stops/H4hn113b", "https://tec.openplanner.team/stops/H4hn114a"], ["https://tec.openplanner.team/stops/Cjufauv2", "https://tec.openplanner.team/stops/Cjuheig4"], ["https://tec.openplanner.team/stops/LAmarbo1", "https://tec.openplanner.team/stops/LAmcorn1"], ["https://tec.openplanner.team/stops/N501cxb", "https://tec.openplanner.team/stops/N528aia"], ["https://tec.openplanner.team/stops/Bnetrbr2", "https://tec.openplanner.team/stops/Bnettir1"], ["https://tec.openplanner.team/stops/N513atb", "https://tec.openplanner.team/stops/N520ahb"], ["https://tec.openplanner.team/stops/H1ca100a", "https://tec.openplanner.team/stops/H1sd342a"], ["https://tec.openplanner.team/stops/H1cu123a", "https://tec.openplanner.team/stops/H1cu129a"], ["https://tec.openplanner.team/stops/LhOokat2", "https://tec.openplanner.team/stops/LhZkape2"], ["https://tec.openplanner.team/stops/X808aab", "https://tec.openplanner.team/stops/X808ama"], ["https://tec.openplanner.team/stops/H4oe147a", "https://tec.openplanner.team/stops/H4oe147b"], ["https://tec.openplanner.team/stops/N118aya", "https://tec.openplanner.team/stops/N155aka"], ["https://tec.openplanner.team/stops/N337aeb", "https://tec.openplanner.team/stops/N385ada"], ["https://tec.openplanner.team/stops/X919aab", "https://tec.openplanner.team/stops/X921adb"], ["https://tec.openplanner.team/stops/H4hq130a", "https://tec.openplanner.team/stops/H4hq130b"], ["https://tec.openplanner.team/stops/X878aba", "https://tec.openplanner.team/stops/X878abb"], ["https://tec.openplanner.team/stops/H4be145b", "https://tec.openplanner.team/stops/H5bl124a"], ["https://tec.openplanner.team/stops/N331adb", "https://tec.openplanner.team/stops/N331afd"], ["https://tec.openplanner.team/stops/Bgnppra1", "https://tec.openplanner.team/stops/Bwaypon1"], ["https://tec.openplanner.team/stops/N562akb", "https://tec.openplanner.team/stops/N562ama"], ["https://tec.openplanner.team/stops/H4fl114b", "https://tec.openplanner.team/stops/H4fl179b"], ["https://tec.openplanner.team/stops/Bcrnrpc2", "https://tec.openplanner.team/stops/Bcrntru2"], ["https://tec.openplanner.team/stops/N528aka", "https://tec.openplanner.team/stops/N528akb"], ["https://tec.openplanner.team/stops/H1hr118c", "https://tec.openplanner.team/stops/H1hr122a"], ["https://tec.openplanner.team/stops/Llgcorn2", "https://tec.openplanner.team/stops/Llgnyst2"], ["https://tec.openplanner.team/stops/N509aoa", "https://tec.openplanner.team/stops/N512ama"], ["https://tec.openplanner.team/stops/H4be107b", "https://tec.openplanner.team/stops/H4be145a"], ["https://tec.openplanner.team/stops/H4ga162a", "https://tec.openplanner.team/stops/H4ga165a"], ["https://tec.openplanner.team/stops/Bwatfia2", "https://tec.openplanner.team/stops/Bwattri1"], ["https://tec.openplanner.team/stops/N573aba", "https://tec.openplanner.team/stops/N573aca"], ["https://tec.openplanner.team/stops/LBAtign1", "https://tec.openplanner.team/stops/LSAchef1"], ["https://tec.openplanner.team/stops/LnUcamp2", "https://tec.openplanner.team/stops/LoDscha2"], ["https://tec.openplanner.team/stops/H4oe147b", "https://tec.openplanner.team/stops/H4oe151b"], ["https://tec.openplanner.team/stops/Bbxlmid4", "https://tec.openplanner.team/stops/Bspkbeu2"], ["https://tec.openplanner.team/stops/Bgdhbvu2", "https://tec.openplanner.team/stops/Bhantui2"], ["https://tec.openplanner.team/stops/N501dsa", "https://tec.openplanner.team/stops/N501dza"], ["https://tec.openplanner.team/stops/LCx728-1", "https://tec.openplanner.team/stops/LCxcham1"], ["https://tec.openplanner.team/stops/LDpzol-2", "https://tec.openplanner.team/stops/LFMrijk2"], ["https://tec.openplanner.team/stops/N501hpa", "https://tec.openplanner.team/stops/N501ima"], ["https://tec.openplanner.team/stops/N387aca", "https://tec.openplanner.team/stops/N387aha"], ["https://tec.openplanner.team/stops/Bwateco1", "https://tec.openplanner.team/stops/Bwatpai1"], ["https://tec.openplanner.team/stops/Bhevhha2", "https://tec.openplanner.team/stops/Bleugar1"], ["https://tec.openplanner.team/stops/LBItnt-*", "https://tec.openplanner.team/stops/Lmlrosa2"], ["https://tec.openplanner.team/stops/Cmehame2", "https://tec.openplanner.team/stops/Cmeloti2"], ["https://tec.openplanner.team/stops/Cflsncb2", "https://tec.openplanner.team/stops/Cflstan1"], ["https://tec.openplanner.team/stops/N211aga", "https://tec.openplanner.team/stops/N212aeb"], ["https://tec.openplanner.team/stops/Bmsgbay1", "https://tec.openplanner.team/stops/Bmsgmon1"], ["https://tec.openplanner.team/stops/Cmmplac1", "https://tec.openplanner.team/stops/Cmmplac3"], ["https://tec.openplanner.team/stops/H1bb118b", "https://tec.openplanner.team/stops/H1bo107b"], ["https://tec.openplanner.team/stops/H4bq100c", "https://tec.openplanner.team/stops/H4og211a"], ["https://tec.openplanner.team/stops/Ljekess1", "https://tec.openplanner.team/stops/Ljelexh2"], ["https://tec.openplanner.team/stops/H1gr112a", "https://tec.openplanner.team/stops/H1gr123a"], ["https://tec.openplanner.team/stops/X760aaa", "https://tec.openplanner.team/stops/X786ajb"], ["https://tec.openplanner.team/stops/H4ga147b", "https://tec.openplanner.team/stops/H4ga161a"], ["https://tec.openplanner.team/stops/Llghenr1", "https://tec.openplanner.team/stops/Llgrain1"], ["https://tec.openplanner.team/stops/NH01aja", "https://tec.openplanner.team/stops/NH01ana"], ["https://tec.openplanner.team/stops/H1so135c", "https://tec.openplanner.team/stops/H1so146b"], ["https://tec.openplanner.team/stops/LCOeg--2", "https://tec.openplanner.team/stops/Lpebier2"], ["https://tec.openplanner.team/stops/X825ada", "https://tec.openplanner.team/stops/X826afa"], ["https://tec.openplanner.team/stops/H4lz121a", "https://tec.openplanner.team/stops/H4lz123a"], ["https://tec.openplanner.team/stops/Cmazone1", "https://tec.openplanner.team/stops/Cmazone2"], ["https://tec.openplanner.team/stops/X811apa", "https://tec.openplanner.team/stops/X811aqa"], ["https://tec.openplanner.team/stops/N509aob", "https://tec.openplanner.team/stops/N509ara"], ["https://tec.openplanner.team/stops/H4ty335a", "https://tec.openplanner.team/stops/H4ty384b"], ["https://tec.openplanner.team/stops/Cbecarr2", "https://tec.openplanner.team/stops/N161afa"], ["https://tec.openplanner.team/stops/LNClila2", "https://tec.openplanner.team/stops/LNCspor1"], ["https://tec.openplanner.team/stops/N501atb", "https://tec.openplanner.team/stops/N501baa"], ["https://tec.openplanner.team/stops/Blhueca2", "https://tec.openplanner.team/stops/Blhuone1"], ["https://tec.openplanner.team/stops/H4an105a", "https://tec.openplanner.team/stops/H4rs117b"], ["https://tec.openplanner.team/stops/LWNwavr1", "https://tec.openplanner.team/stops/LWNwavr3"], ["https://tec.openplanner.team/stops/NL80aaa", "https://tec.openplanner.team/stops/NL80aba"], ["https://tec.openplanner.team/stops/Bettcha1", "https://tec.openplanner.team/stops/Bettgar1"], ["https://tec.openplanner.team/stops/LrEborn2", "https://tec.openplanner.team/stops/LrEkais2"], ["https://tec.openplanner.team/stops/N517aea", "https://tec.openplanner.team/stops/N517aeb"], ["https://tec.openplanner.team/stops/H4ar107b", "https://tec.openplanner.team/stops/H4ar177b"], ["https://tec.openplanner.team/stops/H4tp146a", "https://tec.openplanner.team/stops/H4tp147b"], ["https://tec.openplanner.team/stops/H4fg116b", "https://tec.openplanner.team/stops/H4wn123b"], ["https://tec.openplanner.team/stops/H2lh128b", "https://tec.openplanner.team/stops/H2mm140a"], ["https://tec.openplanner.team/stops/N145aea", "https://tec.openplanner.team/stops/N153aeb"], ["https://tec.openplanner.team/stops/LBahaut2", "https://tec.openplanner.team/stops/LBavive1"], ["https://tec.openplanner.team/stops/Cgyrjau1", "https://tec.openplanner.team/stops/Cgyrjau2"], ["https://tec.openplanner.team/stops/LCxbeau2", "https://tec.openplanner.team/stops/LCxhame2"], ["https://tec.openplanner.team/stops/LLNcruc2", "https://tec.openplanner.team/stops/LLNeg--2"], ["https://tec.openplanner.team/stops/H1ms258b", "https://tec.openplanner.team/stops/H1ms288b"], ["https://tec.openplanner.team/stops/H1ci104b", "https://tec.openplanner.team/stops/H1mv243b"], ["https://tec.openplanner.team/stops/LmDgeme1", "https://tec.openplanner.team/stops/LmDkape2"], ["https://tec.openplanner.team/stops/Lhrecol1", "https://tec.openplanner.team/stops/Lhrtunn2"], ["https://tec.openplanner.team/stops/H1et100a", "https://tec.openplanner.team/stops/H1hh116a"], ["https://tec.openplanner.team/stops/X639apa", "https://tec.openplanner.team/stops/X639asa"], ["https://tec.openplanner.team/stops/Lgdhura1", "https://tec.openplanner.team/stops/Lprtour2"], ["https://tec.openplanner.team/stops/LHNvill1", "https://tec.openplanner.team/stops/LMXempe1"], ["https://tec.openplanner.team/stops/Crspair2", "https://tec.openplanner.team/stops/Crsstem2"], ["https://tec.openplanner.team/stops/Bohnrpl2", "https://tec.openplanner.team/stops/Bwatric2"], ["https://tec.openplanner.team/stops/LFPdeme1", "https://tec.openplanner.team/stops/LFPzwaa1"], ["https://tec.openplanner.team/stops/X659aqa", "https://tec.openplanner.team/stops/X660aga"], ["https://tec.openplanner.team/stops/LBTchai1", "https://tec.openplanner.team/stops/LBTxhen4"], ["https://tec.openplanner.team/stops/Ladandr1", "https://tec.openplanner.team/stops/Ladandr2"], ["https://tec.openplanner.team/stops/N210aaa", "https://tec.openplanner.team/stops/N210aab"], ["https://tec.openplanner.team/stops/LhOholz1", "https://tec.openplanner.team/stops/LhOholz2"], ["https://tec.openplanner.team/stops/Cstcent1", "https://tec.openplanner.team/stops/Cstdona6"], ["https://tec.openplanner.team/stops/LLUtrol1", "https://tec.openplanner.team/stops/LLUvent2"], ["https://tec.openplanner.team/stops/X604alb", "https://tec.openplanner.team/stops/X604ama"], ["https://tec.openplanner.team/stops/Lsebove1", "https://tec.openplanner.team/stops/Lseecol1"], ["https://tec.openplanner.team/stops/N529aea", "https://tec.openplanner.team/stops/N576amb"], ["https://tec.openplanner.team/stops/X716afa", "https://tec.openplanner.team/stops/X716afb"], ["https://tec.openplanner.team/stops/LDmhave2", "https://tec.openplanner.team/stops/LSGcarr1"], ["https://tec.openplanner.team/stops/N501grf", "https://tec.openplanner.team/stops/N501zaa"], ["https://tec.openplanner.team/stops/Bpiehvi1", "https://tec.openplanner.team/stops/Bpielon2"], ["https://tec.openplanner.team/stops/X720ada", "https://tec.openplanner.team/stops/X720aea"], ["https://tec.openplanner.team/stops/N521abb", "https://tec.openplanner.team/stops/N521asb"], ["https://tec.openplanner.team/stops/Lgrramp1", "https://tec.openplanner.team/stops/Llgdelb1"], ["https://tec.openplanner.team/stops/LAwec--1", "https://tec.openplanner.team/stops/LMvgare1"], ["https://tec.openplanner.team/stops/LFTec--2", "https://tec.openplanner.team/stops/LFTec--3"], ["https://tec.openplanner.team/stops/Bosqpco2", "https://tec.openplanner.team/stops/Btubois2"], ["https://tec.openplanner.team/stops/Bwaakap1", "https://tec.openplanner.team/stops/Bwaanwi1"], ["https://tec.openplanner.team/stops/X901aja", "https://tec.openplanner.team/stops/X901aqb"], ["https://tec.openplanner.team/stops/X687ada", "https://tec.openplanner.team/stops/X687aea"], ["https://tec.openplanner.team/stops/N117agb", "https://tec.openplanner.team/stops/N117akb"], ["https://tec.openplanner.team/stops/Cbmind2", "https://tec.openplanner.team/stops/Cbmind3"], ["https://tec.openplanner.team/stops/NC44afc", "https://tec.openplanner.team/stops/NC44ahb"], ["https://tec.openplanner.team/stops/Ldineuf1", "https://tec.openplanner.team/stops/Ldineuf2"], ["https://tec.openplanner.team/stops/H4ta129a", "https://tec.openplanner.team/stops/H4ta129b"], ["https://tec.openplanner.team/stops/X888acb", "https://tec.openplanner.team/stops/X899ajb"], ["https://tec.openplanner.team/stops/X784afa", "https://tec.openplanner.team/stops/X784aga"], ["https://tec.openplanner.team/stops/Cgrbert1", "https://tec.openplanner.team/stops/Cnaplan2"], ["https://tec.openplanner.team/stops/Bquecro1", "https://tec.openplanner.team/stops/Bquereb2"], ["https://tec.openplanner.team/stops/X840aea", "https://tec.openplanner.team/stops/X840afa"], ["https://tec.openplanner.team/stops/X948asa", "https://tec.openplanner.team/stops/X948aua"], ["https://tec.openplanner.team/stops/X644aca", "https://tec.openplanner.team/stops/X644acb"], ["https://tec.openplanner.team/stops/Bnivari1", "https://tec.openplanner.team/stops/Bnivpgr2"], ["https://tec.openplanner.team/stops/N145ahb", "https://tec.openplanner.team/stops/N145aib"], ["https://tec.openplanner.team/stops/LAMcloc2", "https://tec.openplanner.team/stops/LAMwall1"], ["https://tec.openplanner.team/stops/H5el105b", "https://tec.openplanner.team/stops/H5el112c"], ["https://tec.openplanner.team/stops/N528aba", "https://tec.openplanner.team/stops/N528abb"], ["https://tec.openplanner.team/stops/Bgoemgr1", "https://tec.openplanner.team/stops/Bhakmkr1"], ["https://tec.openplanner.team/stops/Bsgihmo1", "https://tec.openplanner.team/stops/Bsgipha2"], ["https://tec.openplanner.team/stops/H1pa103a", "https://tec.openplanner.team/stops/H1wa151a"], ["https://tec.openplanner.team/stops/LnDrund1", "https://tec.openplanner.team/stops/LnDthel1"], ["https://tec.openplanner.team/stops/Ccychap1", "https://tec.openplanner.team/stops/Cvlcalv2"], ["https://tec.openplanner.team/stops/Csochea1", "https://tec.openplanner.team/stops/Csoforc1"], ["https://tec.openplanner.team/stops/X911anb", "https://tec.openplanner.team/stops/X912aka"], ["https://tec.openplanner.team/stops/H1bl104b", "https://tec.openplanner.team/stops/H1bl105a"], ["https://tec.openplanner.team/stops/H1ms262a", "https://tec.openplanner.team/stops/H1ms302a"], ["https://tec.openplanner.team/stops/Cobmven2", "https://tec.openplanner.team/stops/Cpcarse2"], ["https://tec.openplanner.team/stops/Llgpire2", "https://tec.openplanner.team/stops/Llgwesp1"], ["https://tec.openplanner.team/stops/Cchcase2", "https://tec.openplanner.team/stops/Cchparc4"], ["https://tec.openplanner.team/stops/X750ala", "https://tec.openplanner.team/stops/X750ava"], ["https://tec.openplanner.team/stops/H4wi168a", "https://tec.openplanner.team/stops/H4wi175a"], ["https://tec.openplanner.team/stops/N543bkb", "https://tec.openplanner.team/stops/N543cbc"], ["https://tec.openplanner.team/stops/Lmoboeu3", "https://tec.openplanner.team/stops/Lmochpl2"], ["https://tec.openplanner.team/stops/H2lc145b", "https://tec.openplanner.team/stops/H2lc168b"], ["https://tec.openplanner.team/stops/H1vt193a", "https://tec.openplanner.team/stops/H1vt194a"], ["https://tec.openplanner.team/stops/H1ms308a", "https://tec.openplanner.team/stops/H1ms308d"], ["https://tec.openplanner.team/stops/X872afb", "https://tec.openplanner.team/stops/X872agb"], ["https://tec.openplanner.team/stops/N501cfb", "https://tec.openplanner.team/stops/N501ckz"], ["https://tec.openplanner.team/stops/LHegame2", "https://tec.openplanner.team/stops/LHexhav1"], ["https://tec.openplanner.team/stops/LLTtour2", "https://tec.openplanner.team/stops/LTOplac1"], ["https://tec.openplanner.team/stops/H1be100b", "https://tec.openplanner.team/stops/H1hw118a"], ["https://tec.openplanner.team/stops/LeYloos1", "https://tec.openplanner.team/stops/LrAbe962"], ["https://tec.openplanner.team/stops/Cflglav1", "https://tec.openplanner.team/stops/Cflvxca2"], ["https://tec.openplanner.team/stops/LFUgare2", "https://tec.openplanner.team/stops/LHurobi1"], ["https://tec.openplanner.team/stops/Csbsart1", "https://tec.openplanner.team/stops/H1ls129a"], ["https://tec.openplanner.team/stops/H1hc127c", "https://tec.openplanner.team/stops/H5bl120b"], ["https://tec.openplanner.team/stops/N577aca", "https://tec.openplanner.team/stops/N577acb"], ["https://tec.openplanner.team/stops/Bgemibb1", "https://tec.openplanner.team/stops/Bgemibb2"], ["https://tec.openplanner.team/stops/N117bdd", "https://tec.openplanner.team/stops/N145acb"], ["https://tec.openplanner.team/stops/LmI36--1", "https://tec.openplanner.team/stops/LmImirf2"], ["https://tec.openplanner.team/stops/X773acb", "https://tec.openplanner.team/stops/X954acb"], ["https://tec.openplanner.team/stops/Lsccdor2", "https://tec.openplanner.team/stops/Lscferr1"], ["https://tec.openplanner.team/stops/Bcseaba1", "https://tec.openplanner.team/stops/Bcseche1"], ["https://tec.openplanner.team/stops/H1hn207b", "https://tec.openplanner.team/stops/H1mv241b"], ["https://tec.openplanner.team/stops/H1ma233c", "https://tec.openplanner.team/stops/H1mj125b"], ["https://tec.openplanner.team/stops/X630aaa", "https://tec.openplanner.team/stops/X638aab"], ["https://tec.openplanner.team/stops/H4oe149b", "https://tec.openplanner.team/stops/H4os223b"], ["https://tec.openplanner.team/stops/LHaxhig2", "https://tec.openplanner.team/stops/LHaxhor2"], ["https://tec.openplanner.team/stops/Cml5ave1", "https://tec.openplanner.team/stops/Cnachcu1"], ["https://tec.openplanner.team/stops/LWRvert1", "https://tec.openplanner.team/stops/LWRvert2"], ["https://tec.openplanner.team/stops/H4ty268a", "https://tec.openplanner.team/stops/H4ty348a"], ["https://tec.openplanner.team/stops/Lghgros2", "https://tec.openplanner.team/stops/Lghpier2"], ["https://tec.openplanner.team/stops/Crs74em1", "https://tec.openplanner.team/stops/Crsprai4"], ["https://tec.openplanner.team/stops/X652aeb", "https://tec.openplanner.team/stops/X652aga"], ["https://tec.openplanner.team/stops/X750ata", "https://tec.openplanner.team/stops/X750avb"], ["https://tec.openplanner.team/stops/Cchbrou2", "https://tec.openplanner.team/stops/Cchmamb2"], ["https://tec.openplanner.team/stops/Ljeespe1", "https://tec.openplanner.team/stops/Ljemeca1"], ["https://tec.openplanner.team/stops/N513axa", "https://tec.openplanner.team/stops/N513bfb"], ["https://tec.openplanner.team/stops/N116aad", "https://tec.openplanner.team/stops/N116abb"], ["https://tec.openplanner.team/stops/Lhrjaur1", "https://tec.openplanner.team/stops/Lhrpepi2"], ["https://tec.openplanner.team/stops/N214adb", "https://tec.openplanner.team/stops/N228aeb"], ["https://tec.openplanner.team/stops/LElgerd2", "https://tec.openplanner.team/stops/LWZponb2"], ["https://tec.openplanner.team/stops/X886abc", "https://tec.openplanner.team/stops/X886aha"], ["https://tec.openplanner.team/stops/LESchac1", "https://tec.openplanner.team/stops/LFNlato1"], ["https://tec.openplanner.team/stops/H2ch106a", "https://tec.openplanner.team/stops/H2go115b"], ["https://tec.openplanner.team/stops/Loufleu1", "https://tec.openplanner.team/stops/Lourose3"], ["https://tec.openplanner.team/stops/Clvchen2", "https://tec.openplanner.team/stops/Clvndam2"], ["https://tec.openplanner.team/stops/Bbgever1", "https://tec.openplanner.team/stops/Bwavbar2"], ["https://tec.openplanner.team/stops/N167ahb", "https://tec.openplanner.team/stops/N244aqa"], ["https://tec.openplanner.team/stops/LMOelva3", "https://tec.openplanner.team/stops/LMOf21-2"], ["https://tec.openplanner.team/stops/H1og136b", "https://tec.openplanner.team/stops/H5wo124a"], ["https://tec.openplanner.team/stops/H4ty267a", "https://tec.openplanner.team/stops/H4ty335b"], ["https://tec.openplanner.team/stops/LFebas-2", "https://tec.openplanner.team/stops/LFemoul1"], ["https://tec.openplanner.team/stops/Cgoathe1", "https://tec.openplanner.team/stops/Cgofabr2"], ["https://tec.openplanner.team/stops/N506azb", "https://tec.openplanner.team/stops/N506baa"], ["https://tec.openplanner.team/stops/N102aba", "https://tec.openplanner.team/stops/N102acb"], ["https://tec.openplanner.team/stops/LSW26--1", "https://tec.openplanner.team/stops/LSWeg--3"], ["https://tec.openplanner.team/stops/N310abb", "https://tec.openplanner.team/stops/X892agb"], ["https://tec.openplanner.team/stops/Bovetwe1", "https://tec.openplanner.team/stops/Bovetwe2"], ["https://tec.openplanner.team/stops/X713aeb", "https://tec.openplanner.team/stops/X713aga"], ["https://tec.openplanner.team/stops/LBSchpl1", "https://tec.openplanner.team/stops/LRGcana2"], ["https://tec.openplanner.team/stops/H4te255b", "https://tec.openplanner.team/stops/H4te258b"], ["https://tec.openplanner.team/stops/H4mo155a", "https://tec.openplanner.team/stops/H4tg163a"], ["https://tec.openplanner.team/stops/LdE179-2", "https://tec.openplanner.team/stops/LdEschw1"], ["https://tec.openplanner.team/stops/X398agb", "https://tec.openplanner.team/stops/X999acb"], ["https://tec.openplanner.team/stops/X940acb", "https://tec.openplanner.team/stops/X940afa"], ["https://tec.openplanner.team/stops/X774aac", "https://tec.openplanner.team/stops/X774aad"], ["https://tec.openplanner.team/stops/H1ro140b", "https://tec.openplanner.team/stops/H1ro141a"], ["https://tec.openplanner.team/stops/LMAbell2", "https://tec.openplanner.team/stops/LMAbijo1"], ["https://tec.openplanner.team/stops/Lpebeco2", "https://tec.openplanner.team/stops/Lpedeta2"], ["https://tec.openplanner.team/stops/N503aga", "https://tec.openplanner.team/stops/N503agb"], ["https://tec.openplanner.team/stops/LMIgare2", "https://tec.openplanner.team/stops/LMImc--1"], ["https://tec.openplanner.team/stops/Cgymest2", "https://tec.openplanner.team/stops/Cgyralb1"], ["https://tec.openplanner.team/stops/H1wl123a", "https://tec.openplanner.team/stops/H1wl126a"], ["https://tec.openplanner.team/stops/Bcrnpla2", "https://tec.openplanner.team/stops/Bcrnpla4"], ["https://tec.openplanner.team/stops/N579acb", "https://tec.openplanner.team/stops/N579adb"], ["https://tec.openplanner.team/stops/Cvretan2", "https://tec.openplanner.team/stops/Cvrhab21"], ["https://tec.openplanner.team/stops/H4wp150a", "https://tec.openplanner.team/stops/H4wp152b"], ["https://tec.openplanner.team/stops/Chthttr2", "https://tec.openplanner.team/stops/Cthbifu2"], ["https://tec.openplanner.team/stops/X903ada", "https://tec.openplanner.team/stops/X903afb"], ["https://tec.openplanner.team/stops/H4bn100b", "https://tec.openplanner.team/stops/H4pi135b"], ["https://tec.openplanner.team/stops/Caujonc1", "https://tec.openplanner.team/stops/Cauushm1"], ["https://tec.openplanner.team/stops/H4ga163a", "https://tec.openplanner.team/stops/H4ga163b"], ["https://tec.openplanner.team/stops/LLscent2", "https://tec.openplanner.team/stops/LRffroi1"], ["https://tec.openplanner.team/stops/X993aja", "https://tec.openplanner.team/stops/X993ajb"], ["https://tec.openplanner.team/stops/Loucorn2", "https://tec.openplanner.team/stops/Lousimo2"], ["https://tec.openplanner.team/stops/H1si152b", "https://tec.openplanner.team/stops/H1si152c"], ["https://tec.openplanner.team/stops/X662acb", "https://tec.openplanner.team/stops/X662aea"], ["https://tec.openplanner.team/stops/LFPzwaa1", "https://tec.openplanner.team/stops/LWRferm2"], ["https://tec.openplanner.team/stops/X780aea", "https://tec.openplanner.team/stops/X780aga"], ["https://tec.openplanner.team/stops/H4pl120a", "https://tec.openplanner.team/stops/H4pl132a"], ["https://tec.openplanner.team/stops/H1br130b", "https://tec.openplanner.team/stops/H2ma202a"], ["https://tec.openplanner.team/stops/H4ct111a", "https://tec.openplanner.team/stops/H5pe130b"], ["https://tec.openplanner.team/stops/X398aaa", "https://tec.openplanner.team/stops/X398aab"], ["https://tec.openplanner.team/stops/Bbchume2", "https://tec.openplanner.team/stops/Bcbqa361"], ["https://tec.openplanner.team/stops/N313aca", "https://tec.openplanner.team/stops/N313acb"], ["https://tec.openplanner.team/stops/LROchap1", "https://tec.openplanner.team/stops/LROchap2"], ["https://tec.openplanner.team/stops/X811ahb", "https://tec.openplanner.team/stops/X811aob"], ["https://tec.openplanner.team/stops/LENcroi1", "https://tec.openplanner.team/stops/LENcroi2"], ["https://tec.openplanner.team/stops/N214aga", "https://tec.openplanner.team/stops/N214aha"], ["https://tec.openplanner.team/stops/X811aca", "https://tec.openplanner.team/stops/X811akb"], ["https://tec.openplanner.team/stops/X714aaa", "https://tec.openplanner.team/stops/X714abb"], ["https://tec.openplanner.team/stops/LESmich1", "https://tec.openplanner.team/stops/LESslmo1"], ["https://tec.openplanner.team/stops/X663aqa", "https://tec.openplanner.team/stops/X663aqc"], ["https://tec.openplanner.team/stops/X769ama", "https://tec.openplanner.team/stops/X769aoa"], ["https://tec.openplanner.team/stops/LFFchab1", "https://tec.openplanner.team/stops/LFFchab2"], ["https://tec.openplanner.team/stops/Lcehipp2", "https://tec.openplanner.team/stops/Lcemalv3"], ["https://tec.openplanner.team/stops/LHUchh-2", "https://tec.openplanner.team/stops/LHUloui1"], ["https://tec.openplanner.team/stops/Ccutrav4", "https://tec.openplanner.team/stops/Ccuwil1"], ["https://tec.openplanner.team/stops/LBdmarr2", "https://tec.openplanner.team/stops/LLrc1651"], ["https://tec.openplanner.team/stops/LBveg--1", "https://tec.openplanner.team/stops/LBvviem1"], ["https://tec.openplanner.team/stops/X757ada", "https://tec.openplanner.team/stops/X757aoa"], ["https://tec.openplanner.team/stops/X896aea", "https://tec.openplanner.team/stops/X896aeb"], ["https://tec.openplanner.team/stops/X939aea", "https://tec.openplanner.team/stops/X939aeb"], ["https://tec.openplanner.team/stops/H5el100a", "https://tec.openplanner.team/stops/H5el100b"], ["https://tec.openplanner.team/stops/X641aea", "https://tec.openplanner.team/stops/X641afa"], ["https://tec.openplanner.team/stops/Lghgend2", "https://tec.openplanner.team/stops/Ljerose3"], ["https://tec.openplanner.team/stops/Brsgcfl1", "https://tec.openplanner.team/stops/Brsgcfl2"], ["https://tec.openplanner.team/stops/Bbsifml2", "https://tec.openplanner.team/stops/Bnivlpa1"], ["https://tec.openplanner.team/stops/LeUmeie1", "https://tec.openplanner.team/stops/LeUwetz2"], ["https://tec.openplanner.team/stops/LSdsa451", "https://tec.openplanner.team/stops/LSdsa452"], ["https://tec.openplanner.team/stops/X802ata", "https://tec.openplanner.team/stops/X802aua"], ["https://tec.openplanner.team/stops/X627aba", "https://tec.openplanner.team/stops/X627aca"], ["https://tec.openplanner.team/stops/Bsammon2", "https://tec.openplanner.team/stops/Bsammon4"], ["https://tec.openplanner.team/stops/Llgglai2", "https://tec.openplanner.team/stops/Llgpere1"], ["https://tec.openplanner.team/stops/X637ada", "https://tec.openplanner.team/stops/X637adb"], ["https://tec.openplanner.team/stops/Bclgapi2", "https://tec.openplanner.team/stops/Bdlmflo1"], ["https://tec.openplanner.team/stops/Bstmpla1", "https://tec.openplanner.team/stops/Bstmpla2"], ["https://tec.openplanner.team/stops/X620aea", "https://tec.openplanner.team/stops/X620aha"], ["https://tec.openplanner.team/stops/H1bi100a", "https://tec.openplanner.team/stops/H1bi104a"], ["https://tec.openplanner.team/stops/H1bb121b", "https://tec.openplanner.team/stops/H1hi124b"], ["https://tec.openplanner.team/stops/X639aea", "https://tec.openplanner.team/stops/X644acb"], ["https://tec.openplanner.team/stops/Ccucorb2", "https://tec.openplanner.team/stops/Cgycorv1"], ["https://tec.openplanner.team/stops/N533aca", "https://tec.openplanner.team/stops/N533acb"], ["https://tec.openplanner.team/stops/Cgxvkho1", "https://tec.openplanner.team/stops/Cgxvkho2"], ["https://tec.openplanner.team/stops/LBjvill2", "https://tec.openplanner.team/stops/LBjvill3"], ["https://tec.openplanner.team/stops/Lveharm1", "https://tec.openplanner.team/stops/Lveharm2"], ["https://tec.openplanner.team/stops/LBRpt--1", "https://tec.openplanner.team/stops/LBRpt--2"], ["https://tec.openplanner.team/stops/LTPec--1", "https://tec.openplanner.team/stops/LTPec--2"], ["https://tec.openplanner.team/stops/N365aaa", "https://tec.openplanner.team/stops/N365aab"], ["https://tec.openplanner.team/stops/Bcrnnpl1", "https://tec.openplanner.team/stops/Bcrnnpl2"], ["https://tec.openplanner.team/stops/Cfrcham1", "https://tec.openplanner.team/stops/Cvpplan1"], ["https://tec.openplanner.team/stops/Bndbpco1", "https://tec.openplanner.team/stops/Bndbpco2"], ["https://tec.openplanner.team/stops/Cgogb2", "https://tec.openplanner.team/stops/CMcarr2"], ["https://tec.openplanner.team/stops/N506aha", "https://tec.openplanner.team/stops/N506asb"], ["https://tec.openplanner.team/stops/LWEchat1", "https://tec.openplanner.team/stops/LWEfati2"], ["https://tec.openplanner.team/stops/N147aaa", "https://tec.openplanner.team/stops/N147aeb"], ["https://tec.openplanner.team/stops/N230aeb", "https://tec.openplanner.team/stops/N233aab"], ["https://tec.openplanner.team/stops/N506bhb", "https://tec.openplanner.team/stops/N506bla"], ["https://tec.openplanner.team/stops/LVParal2", "https://tec.openplanner.team/stops/LVPcoeu1"], ["https://tec.openplanner.team/stops/LHEelva1", "https://tec.openplanner.team/stops/LHEepur1"], ["https://tec.openplanner.team/stops/H5ar100a", "https://tec.openplanner.team/stops/H5ar103a"], ["https://tec.openplanner.team/stops/Bnivpri2", "https://tec.openplanner.team/stops/Bnivros1"], ["https://tec.openplanner.team/stops/X790aba", "https://tec.openplanner.team/stops/X790agb"], ["https://tec.openplanner.team/stops/Lmihale2", "https://tec.openplanner.team/stops/Lmimili4"], ["https://tec.openplanner.team/stops/Bgrhcro2", "https://tec.openplanner.team/stops/N519ahb"], ["https://tec.openplanner.team/stops/Lhr2ave1", "https://tec.openplanner.team/stops/Lvitomb2"], ["https://tec.openplanner.team/stops/N243ada", "https://tec.openplanner.team/stops/N243adb"], ["https://tec.openplanner.team/stops/LLrbecc1", "https://tec.openplanner.team/stops/LTHmont1"], ["https://tec.openplanner.team/stops/X901ana", "https://tec.openplanner.team/stops/X901anb"], ["https://tec.openplanner.team/stops/Csemacq2", "https://tec.openplanner.team/stops/Csemacq4"], ["https://tec.openplanner.team/stops/X994afb", "https://tec.openplanner.team/stops/X994amb"], ["https://tec.openplanner.team/stops/H4po124a", "https://tec.openplanner.team/stops/H4po126a"], ["https://tec.openplanner.team/stops/H1lb139b", "https://tec.openplanner.team/stops/H1lb152a"], ["https://tec.openplanner.team/stops/X757aab", "https://tec.openplanner.team/stops/X757aba"], ["https://tec.openplanner.team/stops/LgRhouf1", "https://tec.openplanner.team/stops/LtH28a-1"], ["https://tec.openplanner.team/stops/N502abb", "https://tec.openplanner.team/stops/N510aba"], ["https://tec.openplanner.team/stops/LClberw2", "https://tec.openplanner.team/stops/LLC170-1"], ["https://tec.openplanner.team/stops/Bmrlhan1", "https://tec.openplanner.team/stops/Bmrlhau1"], ["https://tec.openplanner.team/stops/Llojeme1", "https://tec.openplanner.team/stops/Llojeme4"], ["https://tec.openplanner.team/stops/LBiberg1", "https://tec.openplanner.team/stops/LBiroch2"], ["https://tec.openplanner.team/stops/H4pl112b", "https://tec.openplanner.team/stops/H4pl121b"], ["https://tec.openplanner.team/stops/LBBmc--2", "https://tec.openplanner.team/stops/X222azb"], ["https://tec.openplanner.team/stops/H4tp143b", "https://tec.openplanner.team/stops/H4tp147a"], ["https://tec.openplanner.team/stops/LkTdorf1", "https://tec.openplanner.team/stops/LkTtal-1"], ["https://tec.openplanner.team/stops/H4fo116a", "https://tec.openplanner.team/stops/H4fo117d"], ["https://tec.openplanner.team/stops/X940afb", "https://tec.openplanner.team/stops/X940agb"], ["https://tec.openplanner.team/stops/Lsebeau*", "https://tec.openplanner.team/stops/Lsebeau2"], ["https://tec.openplanner.team/stops/Cmygrbr3", "https://tec.openplanner.team/stops/Cmyoasi2"], ["https://tec.openplanner.team/stops/X601aeb", "https://tec.openplanner.team/stops/X601ala"], ["https://tec.openplanner.team/stops/H2na131a", "https://tec.openplanner.team/stops/H3go101a"], ["https://tec.openplanner.team/stops/Llojeme3", "https://tec.openplanner.team/stops/Lloretr2"], ["https://tec.openplanner.team/stops/N578aab", "https://tec.openplanner.team/stops/N578aba"], ["https://tec.openplanner.team/stops/Blasbpr1", "https://tec.openplanner.team/stops/Blaspch1"], ["https://tec.openplanner.team/stops/Barqpwa2", "https://tec.openplanner.team/stops/Barqres2"], ["https://tec.openplanner.team/stops/H4fl115a", "https://tec.openplanner.team/stops/H4lp119b"], ["https://tec.openplanner.team/stops/LXHeg--1", "https://tec.openplanner.team/stops/LXHfalh1"], ["https://tec.openplanner.team/stops/X908ahb", "https://tec.openplanner.team/stops/X910aab"], ["https://tec.openplanner.team/stops/N251abb", "https://tec.openplanner.team/stops/N251adb"], ["https://tec.openplanner.team/stops/X878aca", "https://tec.openplanner.team/stops/X878ada"], ["https://tec.openplanner.team/stops/N526adb", "https://tec.openplanner.team/stops/N532ada"], ["https://tec.openplanner.team/stops/N323acb", "https://tec.openplanner.team/stops/N355ada"], ["https://tec.openplanner.team/stops/Bgnpgen2", "https://tec.openplanner.team/stops/Bgnppem1"], ["https://tec.openplanner.team/stops/Cmmgadi2", "https://tec.openplanner.team/stops/Cmmmarl2"], ["https://tec.openplanner.team/stops/H1ms256a", "https://tec.openplanner.team/stops/H1ms360a"], ["https://tec.openplanner.team/stops/LSTgran2", "https://tec.openplanner.team/stops/LTPtroi2"], ["https://tec.openplanner.team/stops/X606aaa", "https://tec.openplanner.team/stops/X606abb"], ["https://tec.openplanner.team/stops/H4co142a", "https://tec.openplanner.team/stops/H4rx142a"], ["https://tec.openplanner.team/stops/Cclrgiv1", "https://tec.openplanner.team/stops/NC28agb"], ["https://tec.openplanner.team/stops/H1qy137a", "https://tec.openplanner.team/stops/H1qy137b"], ["https://tec.openplanner.team/stops/X769aca", "https://tec.openplanner.team/stops/X769aeb"], ["https://tec.openplanner.team/stops/X660aga", "https://tec.openplanner.team/stops/X672ahb"], ["https://tec.openplanner.team/stops/Lagbeno5", "https://tec.openplanner.team/stops/Lkiecol1"], ["https://tec.openplanner.team/stops/LESathe2", "https://tec.openplanner.team/stops/LESpont3"], ["https://tec.openplanner.team/stops/H2fa100a", "https://tec.openplanner.team/stops/H2fa108b"], ["https://tec.openplanner.team/stops/N120aea", "https://tec.openplanner.team/stops/N120agb"], ["https://tec.openplanner.team/stops/Cna6che2", "https://tec.openplanner.team/stops/Cnapetr2"], ["https://tec.openplanner.team/stops/X925aoa", "https://tec.openplanner.team/stops/X925aob"], ["https://tec.openplanner.team/stops/X663avb", "https://tec.openplanner.team/stops/X663axb"], ["https://tec.openplanner.team/stops/X783aab", "https://tec.openplanner.team/stops/X789aia"], ["https://tec.openplanner.team/stops/X670aab", "https://tec.openplanner.team/stops/X670acb"], ["https://tec.openplanner.team/stops/N501dta", "https://tec.openplanner.team/stops/N501dza"], ["https://tec.openplanner.team/stops/Csochea2", "https://tec.openplanner.team/stops/Csograf1"], ["https://tec.openplanner.team/stops/LaMades1", "https://tec.openplanner.team/stops/LmYeich1"], ["https://tec.openplanner.team/stops/H4lu128a", "https://tec.openplanner.team/stops/H4mo206b"], ["https://tec.openplanner.team/stops/LMheg--2", "https://tec.openplanner.team/stops/LMhvina2"], ["https://tec.openplanner.team/stops/N501mtb", "https://tec.openplanner.team/stops/N501mtc"], ["https://tec.openplanner.team/stops/N232aib", "https://tec.openplanner.team/stops/N232arb"], ["https://tec.openplanner.team/stops/H1vg358b", "https://tec.openplanner.team/stops/H1vs146a"], ["https://tec.openplanner.team/stops/N528aea", "https://tec.openplanner.team/stops/N551aaa"], ["https://tec.openplanner.team/stops/LPLec131", "https://tec.openplanner.team/stops/LPLstri2"], ["https://tec.openplanner.team/stops/LwAlont4", "https://tec.openplanner.team/stops/LwAschu1"], ["https://tec.openplanner.team/stops/LbUbisc1", "https://tec.openplanner.team/stops/LbUbisc2"], ["https://tec.openplanner.team/stops/X948ahb", "https://tec.openplanner.team/stops/X948aia"], ["https://tec.openplanner.team/stops/LhSfrep2", "https://tec.openplanner.team/stops/LkOaugu2"], ["https://tec.openplanner.team/stops/LBPboir2", "https://tec.openplanner.team/stops/LBPeg--1"], ["https://tec.openplanner.team/stops/Cgygazo1", "https://tec.openplanner.team/stops/Cgyhaie1"], ["https://tec.openplanner.team/stops/Cgynoir1", "https://tec.openplanner.team/stops/Cgyplst1"], ["https://tec.openplanner.team/stops/Llgform1", "https://tec.openplanner.team/stops/Llggill1"], ["https://tec.openplanner.team/stops/Cjucpui2", "https://tec.openplanner.team/stops/Cjumarc1"], ["https://tec.openplanner.team/stops/X952alb", "https://tec.openplanner.team/stops/X952ama"], ["https://tec.openplanner.team/stops/LlNlimb1", "https://tec.openplanner.team/stops/LlNlimb2"], ["https://tec.openplanner.team/stops/H1by107a", "https://tec.openplanner.team/stops/H1by107b"], ["https://tec.openplanner.team/stops/H4mo145b", "https://tec.openplanner.team/stops/H4mo158b"], ["https://tec.openplanner.team/stops/N536aob", "https://tec.openplanner.team/stops/N562bnb"], ["https://tec.openplanner.team/stops/H1en102a", "https://tec.openplanner.team/stops/H1en103a"], ["https://tec.openplanner.team/stops/X760adb", "https://tec.openplanner.team/stops/X788aea"], ["https://tec.openplanner.team/stops/Lsntvbi3", "https://tec.openplanner.team/stops/Ltibalt2"], ["https://tec.openplanner.team/stops/Lsecast1", "https://tec.openplanner.team/stops/Lseconc2"], ["https://tec.openplanner.team/stops/Lfhbail2", "https://tec.openplanner.team/stops/Lsecris3"], ["https://tec.openplanner.team/stops/Cctptsa1", "https://tec.openplanner.team/stops/Cctvict1"], ["https://tec.openplanner.team/stops/X663aac", "https://tec.openplanner.team/stops/X663aca"], ["https://tec.openplanner.team/stops/Lqbchat1", "https://tec.openplanner.team/stops/LSAhaye1"], ["https://tec.openplanner.team/stops/X983aba", "https://tec.openplanner.team/stops/X983acb"], ["https://tec.openplanner.team/stops/H4mo147a", "https://tec.openplanner.team/stops/H4mo188b"], ["https://tec.openplanner.team/stops/H1mc126a", "https://tec.openplanner.team/stops/H1mc126b"], ["https://tec.openplanner.team/stops/X902axa", "https://tec.openplanner.team/stops/X903aaa"], ["https://tec.openplanner.team/stops/X839aaa", "https://tec.openplanner.team/stops/X839agb"], ["https://tec.openplanner.team/stops/LHdkenn3", "https://tec.openplanner.team/stops/LVnetan1"], ["https://tec.openplanner.team/stops/Lbobuil2", "https://tec.openplanner.team/stops/Lbocorn2"], ["https://tec.openplanner.team/stops/H1lb138a", "https://tec.openplanner.team/stops/H1lb152a"], ["https://tec.openplanner.team/stops/X615acb", "https://tec.openplanner.team/stops/X615anb"], ["https://tec.openplanner.team/stops/H2ll201a", "https://tec.openplanner.team/stops/H2ll201b"], ["https://tec.openplanner.team/stops/X812ata", "https://tec.openplanner.team/stops/X812ava"], ["https://tec.openplanner.team/stops/X947adb", "https://tec.openplanner.team/stops/X948ama"], ["https://tec.openplanner.team/stops/Cgzhour2", "https://tec.openplanner.team/stops/Cthrlef2"], ["https://tec.openplanner.team/stops/LAascie2", "https://tec.openplanner.team/stops/LOCerzy2"], ["https://tec.openplanner.team/stops/Bbougar1", "https://tec.openplanner.team/stops/Bbstbou2"], ["https://tec.openplanner.team/stops/Bblmwma1", "https://tec.openplanner.team/stops/Bwlhpec2"], ["https://tec.openplanner.team/stops/X804aoa", "https://tec.openplanner.team/stops/X804bua"], ["https://tec.openplanner.team/stops/Cmgpla1", "https://tec.openplanner.team/stops/Cmgpn1"], ["https://tec.openplanner.team/stops/LLgcent2", "https://tec.openplanner.team/stops/LLgmini1"], ["https://tec.openplanner.team/stops/H2hg145a", "https://tec.openplanner.team/stops/H2hg160b"], ["https://tec.openplanner.team/stops/N536aba", "https://tec.openplanner.team/stops/N564afa"], ["https://tec.openplanner.team/stops/Bclgvmo1", "https://tec.openplanner.team/stops/Bnilcim1"], ["https://tec.openplanner.team/stops/N562bma", "https://tec.openplanner.team/stops/N562bmb"], ["https://tec.openplanner.team/stops/LlNbruc1", "https://tec.openplanner.team/stops/LlNbruc2"], ["https://tec.openplanner.team/stops/Cmlvpla1", "https://tec.openplanner.team/stops/Cmlvpla2"], ["https://tec.openplanner.team/stops/X756aib", "https://tec.openplanner.team/stops/X756aja"], ["https://tec.openplanner.team/stops/N522aub", "https://tec.openplanner.team/stops/N529aea"], ["https://tec.openplanner.team/stops/LTrgibe2", "https://tec.openplanner.team/stops/LTrmaro1"], ["https://tec.openplanner.team/stops/Bcsgres1", "https://tec.openplanner.team/stops/Bmrsefr1"], ["https://tec.openplanner.team/stops/X942abe", "https://tec.openplanner.team/stops/X942agb"], ["https://tec.openplanner.team/stops/Cgysarr2", "https://tec.openplanner.team/stops/Cracave1"], ["https://tec.openplanner.team/stops/H4to136b", "https://tec.openplanner.team/stops/H4to139b"], ["https://tec.openplanner.team/stops/LAibego2", "https://tec.openplanner.team/stops/LGlcarr1"], ["https://tec.openplanner.team/stops/H2mg136b", "https://tec.openplanner.team/stops/H2mg137a"], ["https://tec.openplanner.team/stops/Bwatle31", "https://tec.openplanner.team/stops/Bwatmlo2"], ["https://tec.openplanner.team/stops/N149aab", "https://tec.openplanner.team/stops/N149abb"], ["https://tec.openplanner.team/stops/H1so135a", "https://tec.openplanner.team/stops/H1so145a"], ["https://tec.openplanner.team/stops/H4po127a", "https://tec.openplanner.team/stops/H4po129b"], ["https://tec.openplanner.team/stops/Bhancre1", "https://tec.openplanner.team/stops/NL37aca"], ["https://tec.openplanner.team/stops/LmI82--1", "https://tec.openplanner.team/stops/LmIcafe1"], ["https://tec.openplanner.team/stops/H1gg145a", "https://tec.openplanner.team/stops/H1gg146a"], ["https://tec.openplanner.team/stops/N311aea", "https://tec.openplanner.team/stops/N368abb"], ["https://tec.openplanner.team/stops/Croheig1", "https://tec.openplanner.team/stops/Crojume1"], ["https://tec.openplanner.team/stops/H1el134b", "https://tec.openplanner.team/stops/H1el137b"], ["https://tec.openplanner.team/stops/Lvepala7", "https://tec.openplanner.team/stops/Lvevert1"], ["https://tec.openplanner.team/stops/N534aba", "https://tec.openplanner.team/stops/N534ada"], ["https://tec.openplanner.team/stops/LRIcite1", "https://tec.openplanner.team/stops/LVIlore2"], ["https://tec.openplanner.team/stops/X742aca", "https://tec.openplanner.team/stops/X742aea"], ["https://tec.openplanner.team/stops/Crolach1", "https://tec.openplanner.team/stops/Crowall2"], ["https://tec.openplanner.team/stops/LBVlamo1", "https://tec.openplanner.team/stops/LBVzand4"], ["https://tec.openplanner.team/stops/LaMahof1", "https://tec.openplanner.team/stops/LaMahof2"], ["https://tec.openplanner.team/stops/Bbeaap52", "https://tec.openplanner.team/stops/Bbeacha1"], ["https://tec.openplanner.team/stops/X731aca", "https://tec.openplanner.team/stops/X731acc"], ["https://tec.openplanner.team/stops/LHexhav1", "https://tec.openplanner.team/stops/LHexhav2"], ["https://tec.openplanner.team/stops/Loucent1", "https://tec.openplanner.team/stops/Loucent2"], ["https://tec.openplanner.team/stops/LeUgeme1", "https://tec.openplanner.team/stops/LeUindu1"], ["https://tec.openplanner.team/stops/X796aba", "https://tec.openplanner.team/stops/X796abb"], ["https://tec.openplanner.team/stops/Cliegli1", "https://tec.openplanner.team/stops/Cliegli2"], ["https://tec.openplanner.team/stops/Cgythio1", "https://tec.openplanner.team/stops/Cgytrie1"], ["https://tec.openplanner.team/stops/Lseecol1", "https://tec.openplanner.team/stops/Lsevecq1"], ["https://tec.openplanner.team/stops/Cculpre1", "https://tec.openplanner.team/stops/Ccupbro1"], ["https://tec.openplanner.team/stops/Cfamate2", "https://tec.openplanner.team/stops/Cpictra2"], ["https://tec.openplanner.team/stops/Cfaamio1", "https://tec.openplanner.team/stops/Cfachap2"], ["https://tec.openplanner.team/stops/X982acb", "https://tec.openplanner.team/stops/X982bza"], ["https://tec.openplanner.team/stops/LTIsain1", "https://tec.openplanner.team/stops/LTIsain2"], ["https://tec.openplanner.team/stops/H4mb202b", "https://tec.openplanner.team/stops/H4va231b"], ["https://tec.openplanner.team/stops/X721aaa", "https://tec.openplanner.team/stops/X723aka"], ["https://tec.openplanner.team/stops/LVNbale2", "https://tec.openplanner.team/stops/LVNcoop1"], ["https://tec.openplanner.team/stops/X601ama", "https://tec.openplanner.team/stops/X601cda"], ["https://tec.openplanner.team/stops/Llghugo2", "https://tec.openplanner.team/stops/Llglimb1"], ["https://tec.openplanner.team/stops/LGevygh1", "https://tec.openplanner.team/stops/LGevygh2"], ["https://tec.openplanner.team/stops/Bbealon3", "https://tec.openplanner.team/stops/Bbealou1"], ["https://tec.openplanner.team/stops/Lrccime3", "https://tec.openplanner.team/stops/Lvoec--3"], ["https://tec.openplanner.team/stops/N115abb", "https://tec.openplanner.team/stops/N115adb"], ["https://tec.openplanner.team/stops/N101acb", "https://tec.openplanner.team/stops/N101ada"], ["https://tec.openplanner.team/stops/Lhrchar3", "https://tec.openplanner.team/stops/Llghori2"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X775aia"], ["https://tec.openplanner.team/stops/Bjodcoi1", "https://tec.openplanner.team/stops/Bjodint1"], ["https://tec.openplanner.team/stops/NL81aea", "https://tec.openplanner.team/stops/NL81aeb"], ["https://tec.openplanner.team/stops/Cmypast1", "https://tec.openplanner.team/stops/Cmypast2"], ["https://tec.openplanner.team/stops/X746aeb", "https://tec.openplanner.team/stops/X746afa"], ["https://tec.openplanner.team/stops/N524aja", "https://tec.openplanner.team/stops/N525aka"], ["https://tec.openplanner.team/stops/LLEgare2", "https://tec.openplanner.team/stops/LQacabi2"], ["https://tec.openplanner.team/stops/Ccumasu1", "https://tec.openplanner.team/stops/Cpicite2"], ["https://tec.openplanner.team/stops/LGemari1", "https://tec.openplanner.team/stops/LGesent1"], ["https://tec.openplanner.team/stops/N501aja", "https://tec.openplanner.team/stops/N501aka"], ["https://tec.openplanner.team/stops/Lgdblom1", "https://tec.openplanner.team/stops/LSNgerm2"], ["https://tec.openplanner.team/stops/H1el133a", "https://tec.openplanner.team/stops/H1el133b"], ["https://tec.openplanner.team/stops/X927acb", "https://tec.openplanner.team/stops/X927ada"], ["https://tec.openplanner.team/stops/X983aga", "https://tec.openplanner.team/stops/X983agb"], ["https://tec.openplanner.team/stops/Bettbue1", "https://tec.openplanner.team/stops/Bettcha3"], ["https://tec.openplanner.team/stops/LDmcruc2", "https://tec.openplanner.team/stops/LDmhave2"], ["https://tec.openplanner.team/stops/N520aba", "https://tec.openplanner.team/stops/N520ada"], ["https://tec.openplanner.team/stops/N507ada", "https://tec.openplanner.team/stops/N507aeb"], ["https://tec.openplanner.team/stops/X725bfb", "https://tec.openplanner.team/stops/X768aab"], ["https://tec.openplanner.team/stops/LHUgare*", "https://tec.openplanner.team/stops/LHUmala1"], ["https://tec.openplanner.team/stops/X823aab", "https://tec.openplanner.team/stops/X830aaa"], ["https://tec.openplanner.team/stops/Lcebarr1", "https://tec.openplanner.team/stops/Lcepont2"], ["https://tec.openplanner.team/stops/Cptrebe1", "https://tec.openplanner.team/stops/Cptsncb1"], ["https://tec.openplanner.team/stops/LLOnand1", "https://tec.openplanner.team/stops/LRRoser2"], ["https://tec.openplanner.team/stops/X804asa", "https://tec.openplanner.team/stops/X804bea"], ["https://tec.openplanner.team/stops/LLTgole2", "https://tec.openplanner.team/stops/LTOplac2"], ["https://tec.openplanner.team/stops/H4ga153a", "https://tec.openplanner.team/stops/H4ga153b"], ["https://tec.openplanner.team/stops/N528afb", "https://tec.openplanner.team/stops/N528afc"], ["https://tec.openplanner.team/stops/H1hr121c", "https://tec.openplanner.team/stops/H1hr121d"], ["https://tec.openplanner.team/stops/LsVgrun1", "https://tec.openplanner.team/stops/LsVviel1"], ["https://tec.openplanner.team/stops/X636ama", "https://tec.openplanner.team/stops/X636bda"], ["https://tec.openplanner.team/stops/Lghmeun1", "https://tec.openplanner.team/stops/Lghmeun2"], ["https://tec.openplanner.team/stops/Lmocalv1", "https://tec.openplanner.team/stops/Lmopeup2"], ["https://tec.openplanner.team/stops/N146ada", "https://tec.openplanner.team/stops/N146afa"], ["https://tec.openplanner.team/stops/X638akb", "https://tec.openplanner.team/stops/X638apb"], ["https://tec.openplanner.team/stops/Bovecha2", "https://tec.openplanner.team/stops/Bovetsa1"], ["https://tec.openplanner.team/stops/LaAdiep1", "https://tec.openplanner.team/stops/LaAdiep2"], ["https://tec.openplanner.team/stops/LDmeg--1", "https://tec.openplanner.team/stops/LDmeg--2"], ["https://tec.openplanner.team/stops/LROandr1", "https://tec.openplanner.team/stops/LROhaie1"], ["https://tec.openplanner.team/stops/X786ahb", "https://tec.openplanner.team/stops/X789afa"], ["https://tec.openplanner.team/stops/X811aga", "https://tec.openplanner.team/stops/X834acb"], ["https://tec.openplanner.team/stops/H2ll176c", "https://tec.openplanner.team/stops/H2ll195a"], ["https://tec.openplanner.team/stops/Blhurcl1", "https://tec.openplanner.team/stops/Bovehst2"], ["https://tec.openplanner.team/stops/LMisour2", "https://tec.openplanner.team/stops/LSTmeiz2"], ["https://tec.openplanner.team/stops/H4mt214a", "https://tec.openplanner.team/stops/H4mt220b"], ["https://tec.openplanner.team/stops/X805aea", "https://tec.openplanner.team/stops/X805ajb"], ["https://tec.openplanner.team/stops/Ladplen*", "https://tec.openplanner.team/stops/Ladstat1"], ["https://tec.openplanner.team/stops/H4bc104b", "https://tec.openplanner.team/stops/H5bl142a"], ["https://tec.openplanner.team/stops/H2hg267b", "https://tec.openplanner.team/stops/H2hg271b"], ["https://tec.openplanner.team/stops/LLUadze1", "https://tec.openplanner.team/stops/LLUdeig1"], ["https://tec.openplanner.team/stops/Llgoeil1", "https://tec.openplanner.team/stops/Llgpere1"], ["https://tec.openplanner.team/stops/LODamco1", "https://tec.openplanner.team/stops/LODvill1"], ["https://tec.openplanner.team/stops/H1mq199b", "https://tec.openplanner.team/stops/H4ab100b"], ["https://tec.openplanner.team/stops/X660aab", "https://tec.openplanner.team/stops/X660abb"], ["https://tec.openplanner.team/stops/LMNentr1", "https://tec.openplanner.team/stops/LMNjard1"], ["https://tec.openplanner.team/stops/Bbghepi1", "https://tec.openplanner.team/stops/Bbghsar2"], ["https://tec.openplanner.team/stops/N558aab", "https://tec.openplanner.team/stops/N558aga"], ["https://tec.openplanner.team/stops/Bgoesch1", "https://tec.openplanner.team/stops/Bgoewat1"], ["https://tec.openplanner.team/stops/LBBlaga1", "https://tec.openplanner.team/stops/LBBpech1"], ["https://tec.openplanner.team/stops/Caccent1", "https://tec.openplanner.team/stops/NC24afa"], ["https://tec.openplanner.team/stops/Lfhgara1", "https://tec.openplanner.team/stops/Lmlguis1"], ["https://tec.openplanner.team/stops/N235aca", "https://tec.openplanner.team/stops/N235ada"], ["https://tec.openplanner.team/stops/X614awa", "https://tec.openplanner.team/stops/X614axa"], ["https://tec.openplanner.team/stops/Lsebico1", "https://tec.openplanner.team/stops/Lsehaut1"], ["https://tec.openplanner.team/stops/Lroeg--2", "https://tec.openplanner.team/stops/Lromc--1"], ["https://tec.openplanner.team/stops/LLelava3", "https://tec.openplanner.team/stops/X547aaa"], ["https://tec.openplanner.team/stops/N261ada", "https://tec.openplanner.team/stops/N261afb"], ["https://tec.openplanner.team/stops/LWAcost2", "https://tec.openplanner.team/stops/LWAperv1"], ["https://tec.openplanner.team/stops/N540amb", "https://tec.openplanner.team/stops/N540ana"], ["https://tec.openplanner.team/stops/N301asa", "https://tec.openplanner.team/stops/X301ara"], ["https://tec.openplanner.team/stops/Cbfstry1", "https://tec.openplanner.team/stops/NC02abb"], ["https://tec.openplanner.team/stops/LBTcarr2", "https://tec.openplanner.team/stops/LHEbeau1"], ["https://tec.openplanner.team/stops/H5el110a", "https://tec.openplanner.team/stops/H5el110b"], ["https://tec.openplanner.team/stops/LBEssab1", "https://tec.openplanner.team/stops/LBEtroo2"], ["https://tec.openplanner.team/stops/H1cr100a", "https://tec.openplanner.team/stops/H1hl124b"], ["https://tec.openplanner.team/stops/LHumoul2", "https://tec.openplanner.team/stops/LMfbacu1"], ["https://tec.openplanner.team/stops/N503aka", "https://tec.openplanner.team/stops/N580afb"], ["https://tec.openplanner.team/stops/Cflcent2", "https://tec.openplanner.team/stops/Cflstan1"], ["https://tec.openplanner.team/stops/LWabela1", "https://tec.openplanner.team/stops/LWamass2"], ["https://tec.openplanner.team/stops/Bnivcol3", "https://tec.openplanner.team/stops/Bnivh%C3%B4p1"], ["https://tec.openplanner.team/stops/X657aka", "https://tec.openplanner.team/stops/X657ana"], ["https://tec.openplanner.team/stops/X826aha", "https://tec.openplanner.team/stops/X826ahb"], ["https://tec.openplanner.team/stops/Lseivoz2", "https://tec.openplanner.team/stops/Lsevico1"], ["https://tec.openplanner.team/stops/Lfhborg2", "https://tec.openplanner.team/stops/Lfhdone2"], ["https://tec.openplanner.team/stops/Bnil3fo2", "https://tec.openplanner.team/stops/Bnilpie1"], ["https://tec.openplanner.team/stops/N204aia", "https://tec.openplanner.team/stops/N204aib"], ["https://tec.openplanner.team/stops/X949afa", "https://tec.openplanner.team/stops/X949afb"], ["https://tec.openplanner.team/stops/N874aba", "https://tec.openplanner.team/stops/N874aha"], ["https://tec.openplanner.team/stops/N229aaa", "https://tec.openplanner.team/stops/N232asb"], ["https://tec.openplanner.team/stops/H4my120a", "https://tec.openplanner.team/stops/H4my122a"], ["https://tec.openplanner.team/stops/Bnivbpe1", "https://tec.openplanner.team/stops/Bnivfle1"], ["https://tec.openplanner.team/stops/N149aaa", "https://tec.openplanner.team/stops/N149akb"], ["https://tec.openplanner.team/stops/Bbch4br2", "https://tec.openplanner.team/stops/Bbchpil1"], ["https://tec.openplanner.team/stops/N311acb", "https://tec.openplanner.team/stops/N368ada"], ["https://tec.openplanner.team/stops/H2hg147a", "https://tec.openplanner.team/stops/H2hg153b"], ["https://tec.openplanner.team/stops/X684aab", "https://tec.openplanner.team/stops/X685afb"], ["https://tec.openplanner.team/stops/LAYsupe2", "https://tec.openplanner.team/stops/LREraph3"], ["https://tec.openplanner.team/stops/Bwagmco2", "https://tec.openplanner.team/stops/Bwagpco1"], ["https://tec.openplanner.team/stops/X653aeb", "https://tec.openplanner.team/stops/X653afa"], ["https://tec.openplanner.team/stops/Lfhrogn1", "https://tec.openplanner.team/stops/Lghfors2"], ["https://tec.openplanner.team/stops/Lsephar2", "https://tec.openplanner.team/stops/Lsepuit1"], ["https://tec.openplanner.team/stops/LCsange1", "https://tec.openplanner.team/stops/LCseg--1"], ["https://tec.openplanner.team/stops/Bsoigar1", "https://tec.openplanner.team/stops/H3so172a"], ["https://tec.openplanner.team/stops/LBSneuv1", "https://tec.openplanner.team/stops/LBSneuv2"], ["https://tec.openplanner.team/stops/N537acb", "https://tec.openplanner.team/stops/N562bia"], ["https://tec.openplanner.team/stops/N521aca", "https://tec.openplanner.team/stops/N521aeb"], ["https://tec.openplanner.team/stops/N228aba", "https://tec.openplanner.team/stops/N228aea"], ["https://tec.openplanner.team/stops/H4bo116b", "https://tec.openplanner.team/stops/H4bo118d"], ["https://tec.openplanner.team/stops/H4mo135a", "https://tec.openplanner.team/stops/H4tg163a"], ["https://tec.openplanner.team/stops/N101ajb", "https://tec.openplanner.team/stops/N116aac"], ["https://tec.openplanner.team/stops/Lanlona1", "https://tec.openplanner.team/stops/Lantonn2"], ["https://tec.openplanner.team/stops/X354aga", "https://tec.openplanner.team/stops/X354aha"], ["https://tec.openplanner.team/stops/Bmalsmc2", "https://tec.openplanner.team/stops/Bmalsme2"], ["https://tec.openplanner.team/stops/H1ms293a", "https://tec.openplanner.team/stops/H1ms312a"], ["https://tec.openplanner.team/stops/N522ajb", "https://tec.openplanner.team/stops/N522apb"], ["https://tec.openplanner.team/stops/LLrscie1", "https://tec.openplanner.team/stops/LTHturo2"], ["https://tec.openplanner.team/stops/LHUchin*", "https://tec.openplanner.team/stops/NL80apa"], ["https://tec.openplanner.team/stops/Buccdho2", "https://tec.openplanner.team/stops/Buccplj2"], ["https://tec.openplanner.team/stops/LHEcoll2", "https://tec.openplanner.team/stops/LHEepur1"], ["https://tec.openplanner.team/stops/Bblager1", "https://tec.openplanner.team/stops/Clpsola1"], ["https://tec.openplanner.team/stops/X672ada", "https://tec.openplanner.team/stops/X672apa"], ["https://tec.openplanner.team/stops/Brixga13", "https://tec.openplanner.team/stops/Brixpje2"], ["https://tec.openplanner.team/stops/LOehart1", "https://tec.openplanner.team/stops/LOehart2"], ["https://tec.openplanner.team/stops/X824acb", "https://tec.openplanner.team/stops/X824ada"], ["https://tec.openplanner.team/stops/H1el140c", "https://tec.openplanner.team/stops/H1wi151a"], ["https://tec.openplanner.team/stops/Brsgtou1", "https://tec.openplanner.team/stops/Brsgtou2"], ["https://tec.openplanner.team/stops/Lfhchaf1", "https://tec.openplanner.team/stops/Lfhchaf2"], ["https://tec.openplanner.team/stops/N516ada", "https://tec.openplanner.team/stops/N516aoa"], ["https://tec.openplanner.team/stops/H4vx362b", "https://tec.openplanner.team/stops/H4vx365a"], ["https://tec.openplanner.team/stops/N501fwz", "https://tec.openplanner.team/stops/N501giy"], ["https://tec.openplanner.team/stops/H4ty273a", "https://tec.openplanner.team/stops/H4ty273c"], ["https://tec.openplanner.team/stops/Cflchel2", "https://tec.openplanner.team/stops/Cflhano2"], ["https://tec.openplanner.team/stops/Cchalou1", "https://tec.openplanner.team/stops/Cgystbe1"], ["https://tec.openplanner.team/stops/LAwec--2", "https://tec.openplanner.team/stops/LAwfans2"], ["https://tec.openplanner.team/stops/X616afa", "https://tec.openplanner.team/stops/X616ahb"], ["https://tec.openplanner.team/stops/H2mg137a", "https://tec.openplanner.team/stops/H2mg151a"], ["https://tec.openplanner.team/stops/X317aba", "https://tec.openplanner.team/stops/X611aca"], ["https://tec.openplanner.team/stops/LEnchan2", "https://tec.openplanner.team/stops/LEntrix1"], ["https://tec.openplanner.team/stops/N558amd", "https://tec.openplanner.team/stops/N559aaa"], ["https://tec.openplanner.team/stops/H2tr249a", "https://tec.openplanner.team/stops/H2tr251b"], ["https://tec.openplanner.team/stops/X901bcb", "https://tec.openplanner.team/stops/X943aba"], ["https://tec.openplanner.team/stops/H2hg150a", "https://tec.openplanner.team/stops/H2hg150b"], ["https://tec.openplanner.team/stops/H1gr116b", "https://tec.openplanner.team/stops/H1hr126a"], ["https://tec.openplanner.team/stops/X754aoa", "https://tec.openplanner.team/stops/X754avb"], ["https://tec.openplanner.team/stops/N874ana", "https://tec.openplanner.team/stops/X874apa"], ["https://tec.openplanner.team/stops/X637agd", "https://tec.openplanner.team/stops/X637amb"], ["https://tec.openplanner.team/stops/H4wi167b", "https://tec.openplanner.team/stops/H5pe146b"], ["https://tec.openplanner.team/stops/X762adb", "https://tec.openplanner.team/stops/X764aga"], ["https://tec.openplanner.team/stops/Cthathe1", "https://tec.openplanner.team/stops/Cthathe2"], ["https://tec.openplanner.team/stops/LmNkirc2", "https://tec.openplanner.team/stops/LmNpost2"], ["https://tec.openplanner.team/stops/LHUzoni3", "https://tec.openplanner.team/stops/LTieg--1"], ["https://tec.openplanner.team/stops/X576acb", "https://tec.openplanner.team/stops/X576aga"], ["https://tec.openplanner.team/stops/N501grd", "https://tec.openplanner.team/stops/N501zda"], ["https://tec.openplanner.team/stops/X725aee", "https://tec.openplanner.team/stops/X725aza"], ["https://tec.openplanner.team/stops/H2hp123c", "https://tec.openplanner.team/stops/H2hp262b"], ["https://tec.openplanner.team/stops/X608ahb", "https://tec.openplanner.team/stops/X608aza"], ["https://tec.openplanner.team/stops/NL37aia", "https://tec.openplanner.team/stops/NL74ajb"], ["https://tec.openplanner.team/stops/X882acb", "https://tec.openplanner.team/stops/X882ada"], ["https://tec.openplanner.team/stops/LkTraer2", "https://tec.openplanner.team/stops/LwAstum1"], ["https://tec.openplanner.team/stops/Bosqgar1", "https://tec.openplanner.team/stops/Bosqpco1"], ["https://tec.openplanner.team/stops/LAUbirv1", "https://tec.openplanner.team/stops/LHCcroy2"], ["https://tec.openplanner.team/stops/X717aha", "https://tec.openplanner.team/stops/X782afa"], ["https://tec.openplanner.team/stops/LCvmonu1", "https://tec.openplanner.team/stops/LLVcent1"], ["https://tec.openplanner.team/stops/LmHbahn2", "https://tec.openplanner.team/stops/LmHflor1"], ["https://tec.openplanner.team/stops/H1ht121b", "https://tec.openplanner.team/stops/H1po154a"], ["https://tec.openplanner.team/stops/N232bxb", "https://tec.openplanner.team/stops/N291acb"], ["https://tec.openplanner.team/stops/Bbchume1", "https://tec.openplanner.team/stops/Bbchume2"], ["https://tec.openplanner.team/stops/LHTbaud2", "https://tec.openplanner.team/stops/LHTmala4"], ["https://tec.openplanner.team/stops/Bbaualz1", "https://tec.openplanner.team/stops/Bbautri2"], ["https://tec.openplanner.team/stops/N235aea", "https://tec.openplanner.team/stops/N270aab"], ["https://tec.openplanner.team/stops/N132ada", "https://tec.openplanner.team/stops/N132aga"], ["https://tec.openplanner.team/stops/H1em111a", "https://tec.openplanner.team/stops/H1hl128b"], ["https://tec.openplanner.team/stops/LWAalou2", "https://tec.openplanner.team/stops/LWAwila1"], ["https://tec.openplanner.team/stops/X804bob", "https://tec.openplanner.team/stops/X804bpa"], ["https://tec.openplanner.team/stops/N155aaa", "https://tec.openplanner.team/stops/N155aca"], ["https://tec.openplanner.team/stops/X223acb", "https://tec.openplanner.team/stops/X919ada"], ["https://tec.openplanner.team/stops/Llglibo3", "https://tec.openplanner.team/stops/Llgm%C3%A9di1"], ["https://tec.openplanner.team/stops/N115aca", "https://tec.openplanner.team/stops/N118akb"], ["https://tec.openplanner.team/stops/H1er108a", "https://tec.openplanner.team/stops/H1gg117b"], ["https://tec.openplanner.team/stops/H1ms312a", "https://tec.openplanner.team/stops/H1ms921a"], ["https://tec.openplanner.team/stops/H4be146a", "https://tec.openplanner.team/stops/H5bl117c"], ["https://tec.openplanner.team/stops/LTPabat2", "https://tec.openplanner.team/stops/LTPreco2"], ["https://tec.openplanner.team/stops/Cjugill4", "https://tec.openplanner.team/stops/CMchag2"], ["https://tec.openplanner.team/stops/N146aaa", "https://tec.openplanner.team/stops/N146aea"], ["https://tec.openplanner.team/stops/X354aea", "https://tec.openplanner.team/stops/X354aeb"], ["https://tec.openplanner.team/stops/N562acb", "https://tec.openplanner.team/stops/N562azb"], ["https://tec.openplanner.team/stops/H1do114a", "https://tec.openplanner.team/stops/H1do121b"], ["https://tec.openplanner.team/stops/LBapepi5", "https://tec.openplanner.team/stops/LBapepi6"], ["https://tec.openplanner.team/stops/Louazot1", "https://tec.openplanner.team/stops/Lscgare1"], ["https://tec.openplanner.team/stops/X837aka", "https://tec.openplanner.team/stops/X886abb"], ["https://tec.openplanner.team/stops/H4wg121b", "https://tec.openplanner.team/stops/H4wg122b"], ["https://tec.openplanner.team/stops/H1wz173b", "https://tec.openplanner.team/stops/H2pe161b"], ["https://tec.openplanner.team/stops/H4ss153a", "https://tec.openplanner.team/stops/H5rx104b"], ["https://tec.openplanner.team/stops/N512aua", "https://tec.openplanner.team/stops/N512aub"], ["https://tec.openplanner.team/stops/N525ana", "https://tec.openplanner.team/stops/N527aaa"], ["https://tec.openplanner.team/stops/N301aca", "https://tec.openplanner.team/stops/N301apa"], ["https://tec.openplanner.team/stops/N528asa", "https://tec.openplanner.team/stops/N542apa"], ["https://tec.openplanner.team/stops/N233aaa", "https://tec.openplanner.team/stops/N233abb"], ["https://tec.openplanner.team/stops/H1ob330b", "https://tec.openplanner.team/stops/H1ob333b"], ["https://tec.openplanner.team/stops/H4lz122b", "https://tec.openplanner.team/stops/H4lz160a"], ["https://tec.openplanner.team/stops/Clrmarl3", "https://tec.openplanner.team/stops/Clrplac1"], ["https://tec.openplanner.team/stops/Llgamer4", "https://tec.openplanner.team/stops/Llgoutr3"], ["https://tec.openplanner.team/stops/X617aea", "https://tec.openplanner.team/stops/X617aeb"], ["https://tec.openplanner.team/stops/H1ms254a", "https://tec.openplanner.team/stops/H1ms367a"], ["https://tec.openplanner.team/stops/X904afb", "https://tec.openplanner.team/stops/X904aja"], ["https://tec.openplanner.team/stops/LFyanto2", "https://tec.openplanner.team/stops/LwYsarl1"], ["https://tec.openplanner.team/stops/H1bd102a", "https://tec.openplanner.team/stops/H1hq127b"], ["https://tec.openplanner.team/stops/Bhancom2", "https://tec.openplanner.team/stops/LVPcoeu1"], ["https://tec.openplanner.team/stops/LCschri1", "https://tec.openplanner.team/stops/LCseg--1"], ["https://tec.openplanner.team/stops/Lanclon1", "https://tec.openplanner.team/stops/Lanclon2"], ["https://tec.openplanner.team/stops/Cprgran2", "https://tec.openplanner.team/stops/NC11aob"], ["https://tec.openplanner.team/stops/Cgylouv1", "https://tec.openplanner.team/stops/Cgymest1"], ["https://tec.openplanner.team/stops/Ljeespe2", "https://tec.openplanner.team/stops/Lsetroq2"], ["https://tec.openplanner.team/stops/H1fr117a", "https://tec.openplanner.team/stops/H1fr119b"], ["https://tec.openplanner.team/stops/X358aca", "https://tec.openplanner.team/stops/X358adb"], ["https://tec.openplanner.team/stops/Bmanati2", "https://tec.openplanner.team/stops/Bmangen2"], ["https://tec.openplanner.team/stops/N225aba", "https://tec.openplanner.team/stops/N225aha"], ["https://tec.openplanner.team/stops/H1ms280a", "https://tec.openplanner.team/stops/H1ms936a"], ["https://tec.openplanner.team/stops/Crofrio2", "https://tec.openplanner.team/stops/Crolema3"], ["https://tec.openplanner.team/stops/Cgyhstj2", "https://tec.openplanner.team/stops/Cgystjo3"], ["https://tec.openplanner.team/stops/N232aia", "https://tec.openplanner.team/stops/N232aob"], ["https://tec.openplanner.team/stops/H1fr129b", "https://tec.openplanner.team/stops/H1fr152a"], ["https://tec.openplanner.team/stops/LmNelis1", "https://tec.openplanner.team/stops/LmNkess2"], ["https://tec.openplanner.team/stops/H2sb231d", "https://tec.openplanner.team/stops/H2sb266a"], ["https://tec.openplanner.team/stops/LSPmart2", "https://tec.openplanner.team/stops/LWMchpl1"], ["https://tec.openplanner.team/stops/H3th130a", "https://tec.openplanner.team/stops/H3th130b"], ["https://tec.openplanner.team/stops/H4mx116a", "https://tec.openplanner.team/stops/H4po125b"], ["https://tec.openplanner.team/stops/Bwavlav2", "https://tec.openplanner.team/stops/Bwavnep1"], ["https://tec.openplanner.team/stops/H4ty350b", "https://tec.openplanner.team/stops/H4ty358b"], ["https://tec.openplanner.team/stops/Btstcar1", "https://tec.openplanner.team/stops/Btstw752"], ["https://tec.openplanner.team/stops/LTNsarl1", "https://tec.openplanner.team/stops/LTNsarl2"], ["https://tec.openplanner.team/stops/H1wa136a", "https://tec.openplanner.team/stops/H1wa136b"], ["https://tec.openplanner.team/stops/X652acb", "https://tec.openplanner.team/stops/X652acd"], ["https://tec.openplanner.team/stops/NL76amb", "https://tec.openplanner.team/stops/NL76apa"], ["https://tec.openplanner.team/stops/Cmtpblo2", "https://tec.openplanner.team/stops/Cmtplac4"], ["https://tec.openplanner.team/stops/X715aea", "https://tec.openplanner.team/stops/X715afb"], ["https://tec.openplanner.team/stops/N229asa", "https://tec.openplanner.team/stops/N230abb"], ["https://tec.openplanner.team/stops/LFsec--1", "https://tec.openplanner.team/stops/LSLhale1"], ["https://tec.openplanner.team/stops/NL75aab", "https://tec.openplanner.team/stops/NR30aaa"], ["https://tec.openplanner.team/stops/Lchchau1", "https://tec.openplanner.team/stops/Lchchau2"], ["https://tec.openplanner.team/stops/Lalecmo1", "https://tec.openplanner.team/stops/Laleg--1"], ["https://tec.openplanner.team/stops/Lhehoux2", "https://tec.openplanner.team/stops/Lheterm*"], ["https://tec.openplanner.team/stops/X811apb", "https://tec.openplanner.team/stops/X811aqa"], ["https://tec.openplanner.team/stops/X741acb", "https://tec.openplanner.team/stops/X741aeb"], ["https://tec.openplanner.team/stops/Cmlhauc2", "https://tec.openplanner.team/stops/Cmlhauc3"], ["https://tec.openplanner.team/stops/LLelans2", "https://tec.openplanner.team/stops/X576afa"], ["https://tec.openplanner.team/stops/Bblacha2", "https://tec.openplanner.team/stops/Bblavol2"], ["https://tec.openplanner.team/stops/Cnacent1", "https://tec.openplanner.team/stops/Cnaha561"], ["https://tec.openplanner.team/stops/H4hg154b", "https://tec.openplanner.team/stops/H4mv189a"], ["https://tec.openplanner.team/stops/X633aja", "https://tec.openplanner.team/stops/X654aab"], ["https://tec.openplanner.team/stops/LCsraws1", "https://tec.openplanner.team/stops/LFFmagr2"], ["https://tec.openplanner.team/stops/LlgLAMB3", "https://tec.openplanner.team/stops/LlgLAMB7"], ["https://tec.openplanner.team/stops/Bblacha1", "https://tec.openplanner.team/stops/Bblacha2"], ["https://tec.openplanner.team/stops/Cchba04", "https://tec.openplanner.team/stops/Cchfort1"], ["https://tec.openplanner.team/stops/H4mo142d", "https://tec.openplanner.team/stops/H4mo160a"], ["https://tec.openplanner.team/stops/N206aab", "https://tec.openplanner.team/stops/N206abb"], ["https://tec.openplanner.team/stops/Lhrbass1", "https://tec.openplanner.team/stops/Lhrpaix1"], ["https://tec.openplanner.team/stops/N522agb", "https://tec.openplanner.team/stops/N522ama"], ["https://tec.openplanner.team/stops/Lchplai2", "https://tec.openplanner.team/stops/Lchsaeg2"], ["https://tec.openplanner.team/stops/LRtmame2", "https://tec.openplanner.team/stops/LSebott2"], ["https://tec.openplanner.team/stops/H1mb127b", "https://tec.openplanner.team/stops/H1mb168a"], ["https://tec.openplanner.team/stops/X896abb", "https://tec.openplanner.team/stops/X995acb"], ["https://tec.openplanner.team/stops/N117aab", "https://tec.openplanner.team/stops/N117abb"], ["https://tec.openplanner.team/stops/H4mo177a", "https://tec.openplanner.team/stops/H4mo179a"], ["https://tec.openplanner.team/stops/X836afa", "https://tec.openplanner.team/stops/X836ahb"], ["https://tec.openplanner.team/stops/H1qg138a", "https://tec.openplanner.team/stops/H1qg138d"], ["https://tec.openplanner.team/stops/Cmlthym2", "https://tec.openplanner.team/stops/Cmmbsit2"], ["https://tec.openplanner.team/stops/Craferr1", "https://tec.openplanner.team/stops/Crajasm4"], ["https://tec.openplanner.team/stops/Lcepass2", "https://tec.openplanner.team/stops/Lvc4bra1"], ["https://tec.openplanner.team/stops/LsC216-1", "https://tec.openplanner.team/stops/LsC216-2"], ["https://tec.openplanner.team/stops/X802aga", "https://tec.openplanner.team/stops/X818aia"], ["https://tec.openplanner.team/stops/LWDfuma1", "https://tec.openplanner.team/stops/LWDmass2"], ["https://tec.openplanner.team/stops/Llg20ao1", "https://tec.openplanner.team/stops/Llgcock2"], ["https://tec.openplanner.team/stops/LlCauto2", "https://tec.openplanner.team/stops/LlCgren1"], ["https://tec.openplanner.team/stops/X870aeb", "https://tec.openplanner.team/stops/X879apb"], ["https://tec.openplanner.team/stops/Bnivmfr1", "https://tec.openplanner.team/stops/Bptrlux1"], ["https://tec.openplanner.team/stops/Cbfegch2", "https://tec.openplanner.team/stops/Cctlimi2"], ["https://tec.openplanner.team/stops/H4fa126b", "https://tec.openplanner.team/stops/H4fa167b"], ["https://tec.openplanner.team/stops/Cmygrbr1", "https://tec.openplanner.team/stops/Cmyrays2"], ["https://tec.openplanner.team/stops/H1hg180a", "https://tec.openplanner.team/stops/H1hg181a"], ["https://tec.openplanner.team/stops/H2fy122b", "https://tec.openplanner.team/stops/H2lh131b"], ["https://tec.openplanner.team/stops/H4ce102a", "https://tec.openplanner.team/stops/H4ce105b"], ["https://tec.openplanner.team/stops/LNCmada1", "https://tec.openplanner.team/stops/LNCmoul1"], ["https://tec.openplanner.team/stops/X639aeb", "https://tec.openplanner.team/stops/X643aaa"], ["https://tec.openplanner.team/stops/N580aca", "https://tec.openplanner.team/stops/N580afa"], ["https://tec.openplanner.team/stops/Balssvi1", "https://tec.openplanner.team/stops/Balswin3"], ["https://tec.openplanner.team/stops/Cjualtr2", "https://tec.openplanner.team/stops/Cjucopp1"], ["https://tec.openplanner.team/stops/Bflccav1", "https://tec.openplanner.team/stops/NR21aja"], ["https://tec.openplanner.team/stops/H2be101a", "https://tec.openplanner.team/stops/H2lh128b"], ["https://tec.openplanner.team/stops/LmDelek2", "https://tec.openplanner.team/stops/LmYkirc2"], ["https://tec.openplanner.team/stops/X979aaa", "https://tec.openplanner.team/stops/X979aka"], ["https://tec.openplanner.team/stops/Cthvbas1", "https://tec.openplanner.team/stops/Cthvbas4"], ["https://tec.openplanner.team/stops/LkEgss-2", "https://tec.openplanner.team/stops/LkEwolf2"], ["https://tec.openplanner.team/stops/N528acb", "https://tec.openplanner.team/stops/N528arc"], ["https://tec.openplanner.team/stops/H4br107a", "https://tec.openplanner.team/stops/H4br111b"], ["https://tec.openplanner.team/stops/N248abb", "https://tec.openplanner.team/stops/N248aea"], ["https://tec.openplanner.team/stops/X823aba", "https://tec.openplanner.team/stops/X823aga"], ["https://tec.openplanner.team/stops/N506ala", "https://tec.openplanner.team/stops/N506awa"], ["https://tec.openplanner.team/stops/Creluth2", "https://tec.openplanner.team/stops/Crestan2"], ["https://tec.openplanner.team/stops/Bpermon4", "https://tec.openplanner.team/stops/Bperrcr1"], ["https://tec.openplanner.team/stops/Bblacar1", "https://tec.openplanner.team/stops/Bblapin2"], ["https://tec.openplanner.team/stops/Bcrnncb2", "https://tec.openplanner.team/stops/Bcrnnpl2"], ["https://tec.openplanner.team/stops/H1wa138a", "https://tec.openplanner.team/stops/H1wa163a"], ["https://tec.openplanner.team/stops/N531aca", "https://tec.openplanner.team/stops/N531amb"], ["https://tec.openplanner.team/stops/H2tr253b", "https://tec.openplanner.team/stops/H2tr255a"], ["https://tec.openplanner.team/stops/X801aeb", "https://tec.openplanner.team/stops/X801afb"], ["https://tec.openplanner.team/stops/Clomari2", "https://tec.openplanner.team/stops/Clomari4"], ["https://tec.openplanner.team/stops/H1lb137a", "https://tec.openplanner.team/stops/H1lb137b"], ["https://tec.openplanner.team/stops/Bbiemor1", "https://tec.openplanner.team/stops/Bbiemor2"], ["https://tec.openplanner.team/stops/LBEabbe2", "https://tec.openplanner.team/stops/LBEairp1"], ["https://tec.openplanner.team/stops/H2le146a", "https://tec.openplanner.team/stops/H2le152a"], ["https://tec.openplanner.team/stops/Btsllfp2", "https://tec.openplanner.team/stops/Btsllsc1"], ["https://tec.openplanner.team/stops/LHGtron1", "https://tec.openplanner.team/stops/LHGvill1"], ["https://tec.openplanner.team/stops/LFFcouv2", "https://tec.openplanner.team/stops/LFFruel2"], ["https://tec.openplanner.team/stops/N232bha", "https://tec.openplanner.team/stops/N232blb"], ["https://tec.openplanner.team/stops/Ljuargi1", "https://tec.openplanner.team/stops/Ljucomb1"], ["https://tec.openplanner.team/stops/H4bo113b", "https://tec.openplanner.team/stops/H4bo117a"], ["https://tec.openplanner.team/stops/X342aga", "https://tec.openplanner.team/stops/X354aca"], ["https://tec.openplanner.team/stops/LClsacr1", "https://tec.openplanner.team/stops/LThnouv2"], ["https://tec.openplanner.team/stops/X609ada", "https://tec.openplanner.team/stops/X609ana"], ["https://tec.openplanner.team/stops/Ccabois2", "https://tec.openplanner.team/stops/Cclrgiv2"], ["https://tec.openplanner.team/stops/LBEoblu1", "https://tec.openplanner.team/stops/LTIsain2"], ["https://tec.openplanner.team/stops/LlE02--1", "https://tec.openplanner.team/stops/LlE02--2"], ["https://tec.openplanner.team/stops/N501hfa", "https://tec.openplanner.team/stops/N501lcb"], ["https://tec.openplanner.team/stops/LkEbran2", "https://tec.openplanner.team/stops/LMspont1"], ["https://tec.openplanner.team/stops/H4lz164a", "https://tec.openplanner.team/stops/H4tp147a"], ["https://tec.openplanner.team/stops/LeUmeye2", "https://tec.openplanner.team/stops/LtEnatu2"], ["https://tec.openplanner.team/stops/X858abb", "https://tec.openplanner.team/stops/X858agb"], ["https://tec.openplanner.team/stops/X342abb", "https://tec.openplanner.team/stops/X342acb"], ["https://tec.openplanner.team/stops/X833aba", "https://tec.openplanner.team/stops/X833aca"], ["https://tec.openplanner.team/stops/H2le148a", "https://tec.openplanner.team/stops/H2le149a"], ["https://tec.openplanner.team/stops/H2ch101b", "https://tec.openplanner.team/stops/H2ch103a"], ["https://tec.openplanner.team/stops/LBHhuyn2", "https://tec.openplanner.team/stops/LMemaza2"], ["https://tec.openplanner.team/stops/Cgycvie1", "https://tec.openplanner.team/stops/Cgyduss1"], ["https://tec.openplanner.team/stops/X788aea", "https://tec.openplanner.team/stops/X788afa"], ["https://tec.openplanner.team/stops/N562atb", "https://tec.openplanner.team/stops/N562bsa"], ["https://tec.openplanner.team/stops/N505afa", "https://tec.openplanner.team/stops/N505ama"], ["https://tec.openplanner.team/stops/H5pe147a", "https://tec.openplanner.team/stops/H5pe176a"], ["https://tec.openplanner.team/stops/LAUhost1", "https://tec.openplanner.team/stops/LAUhost2"], ["https://tec.openplanner.team/stops/N101aia", "https://tec.openplanner.team/stops/N101aib"], ["https://tec.openplanner.team/stops/H1hw119a", "https://tec.openplanner.team/stops/H1ls108a"], ["https://tec.openplanner.team/stops/LBJapol1", "https://tec.openplanner.team/stops/LMAstei1"], ["https://tec.openplanner.team/stops/LVLmabi1", "https://tec.openplanner.team/stops/LVLpane1"], ["https://tec.openplanner.team/stops/H4lh161a", "https://tec.openplanner.team/stops/H5wo127b"], ["https://tec.openplanner.team/stops/H4bs114a", "https://tec.openplanner.team/stops/H5pe139b"], ["https://tec.openplanner.team/stops/LCLstat1", "https://tec.openplanner.team/stops/LCLstat2"], ["https://tec.openplanner.team/stops/N134ala", "https://tec.openplanner.team/stops/N135azb"], ["https://tec.openplanner.team/stops/H1br129a", "https://tec.openplanner.team/stops/H3bo100d"], ["https://tec.openplanner.team/stops/Lprhodi2", "https://tec.openplanner.team/stops/Lprorem1"], ["https://tec.openplanner.team/stops/NL77ana", "https://tec.openplanner.team/stops/NL78aha"], ["https://tec.openplanner.team/stops/N304aba", "https://tec.openplanner.team/stops/N304abb"], ["https://tec.openplanner.team/stops/Binclib1", "https://tec.openplanner.team/stops/Binclon1"], ["https://tec.openplanner.team/stops/LEScham1", "https://tec.openplanner.team/stops/LESsouv1"], ["https://tec.openplanner.team/stops/LAMcime2", "https://tec.openplanner.team/stops/LAMjaur1"], ["https://tec.openplanner.team/stops/LRcjard1", "https://tec.openplanner.team/stops/LRcjard2"], ["https://tec.openplanner.team/stops/Borborb1", "https://tec.openplanner.team/stops/Borborb2"], ["https://tec.openplanner.team/stops/X902aca", "https://tec.openplanner.team/stops/X902acb"], ["https://tec.openplanner.team/stops/X608aha", "https://tec.openplanner.team/stops/X608ahb"], ["https://tec.openplanner.team/stops/Ljuathe1", "https://tec.openplanner.team/stops/Ljujaur1"], ["https://tec.openplanner.team/stops/Bneesjo1", "https://tec.openplanner.team/stops/Bneesjo2"], ["https://tec.openplanner.team/stops/X923afa", "https://tec.openplanner.team/stops/X923afb"], ["https://tec.openplanner.team/stops/Bnetegl1", "https://tec.openplanner.team/stops/Bnetegl4"], ["https://tec.openplanner.team/stops/Bneecha2", "https://tec.openplanner.team/stops/Boplham1"], ["https://tec.openplanner.team/stops/X547aja", "https://tec.openplanner.team/stops/X547anb"], ["https://tec.openplanner.team/stops/H1hg181a", "https://tec.openplanner.team/stops/H1nv324b"], ["https://tec.openplanner.team/stops/N223aaa", "https://tec.openplanner.team/stops/X222adc"], ["https://tec.openplanner.team/stops/Cmacart1", "https://tec.openplanner.team/stops/Cmadeli1"], ["https://tec.openplanner.team/stops/LEntrix2", "https://tec.openplanner.team/stops/NL67aca"], ["https://tec.openplanner.team/stops/Bgliopp3", "https://tec.openplanner.team/stops/Bgliopp4"], ["https://tec.openplanner.team/stops/LTatult3", "https://tec.openplanner.team/stops/LTatult4"], ["https://tec.openplanner.team/stops/H4ty267a", "https://tec.openplanner.team/stops/H4ty301a"], ["https://tec.openplanner.team/stops/X994aeb", "https://tec.openplanner.team/stops/X994afa"], ["https://tec.openplanner.team/stops/N270adb", "https://tec.openplanner.team/stops/N270aec"], ["https://tec.openplanner.team/stops/Blasbpr2", "https://tec.openplanner.team/stops/Blascsl1"], ["https://tec.openplanner.team/stops/LKmcite1", "https://tec.openplanner.team/stops/LKmcite2"], ["https://tec.openplanner.team/stops/Bnivlde1", "https://tec.openplanner.team/stops/Bnivsse1"], ["https://tec.openplanner.team/stops/X812aka", "https://tec.openplanner.team/stops/X812aoa"], ["https://tec.openplanner.team/stops/X624aga", "https://tec.openplanner.team/stops/X624ahb"], ["https://tec.openplanner.team/stops/Cpcgout1", "https://tec.openplanner.team/stops/Cpcha432"], ["https://tec.openplanner.team/stops/X808aac", "https://tec.openplanner.team/stops/X808ajb"], ["https://tec.openplanner.team/stops/Llgplop1", "https://tec.openplanner.team/stops/Lvtfrai1"], ["https://tec.openplanner.team/stops/Ccymabo2", "https://tec.openplanner.team/stops/Csrcarr2"], ["https://tec.openplanner.team/stops/H4gu112a", "https://tec.openplanner.team/stops/H4gu112b"], ["https://tec.openplanner.team/stops/N534blh", "https://tec.openplanner.team/stops/N534boh"], ["https://tec.openplanner.team/stops/Bincfer1", "https://tec.openplanner.team/stops/Binclon2"], ["https://tec.openplanner.team/stops/N543bba", "https://tec.openplanner.team/stops/N554aab"], ["https://tec.openplanner.team/stops/X750axa", "https://tec.openplanner.team/stops/X750bea"], ["https://tec.openplanner.team/stops/LhEauto1", "https://tec.openplanner.team/stops/LhEauto2"], ["https://tec.openplanner.team/stops/LMsviad1", "https://tec.openplanner.team/stops/LMsviad2"], ["https://tec.openplanner.team/stops/LHVgoro1", "https://tec.openplanner.team/stops/Lsmh3022"], ["https://tec.openplanner.team/stops/N236aeb", "https://tec.openplanner.team/stops/N254aeb"], ["https://tec.openplanner.team/stops/LXomc--3", "https://tec.openplanner.team/stops/LXomc--4"], ["https://tec.openplanner.team/stops/Lenclar2", "https://tec.openplanner.team/stops/Lvehout2"], ["https://tec.openplanner.team/stops/Lbhsion1", "https://tec.openplanner.team/stops/Lvcdumo2"], ["https://tec.openplanner.team/stops/Bnstgar1", "https://tec.openplanner.team/stops/H2na133a"], ["https://tec.openplanner.team/stops/Bviravi1", "https://tec.openplanner.team/stops/Bvircen2"], ["https://tec.openplanner.team/stops/X641aka", "https://tec.openplanner.team/stops/X641akb"], ["https://tec.openplanner.team/stops/Cfabaty4", "https://tec.openplanner.team/stops/Cflspir1"], ["https://tec.openplanner.team/stops/Lhuwaid1", "https://tec.openplanner.team/stops/Lhuwaid2"], ["https://tec.openplanner.team/stops/X817aaa", "https://tec.openplanner.team/stops/X817abb"], ["https://tec.openplanner.team/stops/Cmecime1", "https://tec.openplanner.team/stops/Cmerdby2"], ["https://tec.openplanner.team/stops/LBRgare2", "https://tec.openplanner.team/stops/LBRpt--1"], ["https://tec.openplanner.team/stops/Llgdfra1", "https://tec.openplanner.team/stops/Llgmass2"], ["https://tec.openplanner.team/stops/LbTcarm2", "https://tec.openplanner.team/stops/LbTschw2"], ["https://tec.openplanner.team/stops/Cprsapv2", "https://tec.openplanner.team/stops/NC11ana"], ["https://tec.openplanner.team/stops/X870aha", "https://tec.openplanner.team/stops/X870ahb"], ["https://tec.openplanner.team/stops/X912aaa", "https://tec.openplanner.team/stops/X912aba"], ["https://tec.openplanner.team/stops/Cmqcend1", "https://tec.openplanner.team/stops/Cmqchap1"], ["https://tec.openplanner.team/stops/Lhuferm2", "https://tec.openplanner.team/stops/Lhujonc2"], ["https://tec.openplanner.team/stops/Blmlcim2", "https://tec.openplanner.team/stops/Blmlqlo1"], ["https://tec.openplanner.team/stops/X902agb", "https://tec.openplanner.team/stops/X902aka"], ["https://tec.openplanner.team/stops/X561aba", "https://tec.openplanner.team/stops/X561abc"], ["https://tec.openplanner.team/stops/LHEches2", "https://tec.openplanner.team/stops/LHEches4"], ["https://tec.openplanner.team/stops/X777aaa", "https://tec.openplanner.team/stops/X784aib"], ["https://tec.openplanner.team/stops/H4am101a", "https://tec.openplanner.team/stops/H4am102c"], ["https://tec.openplanner.team/stops/LBLvici1", "https://tec.openplanner.team/stops/LBLvici3"], ["https://tec.openplanner.team/stops/LCPcomb2", "https://tec.openplanner.team/stops/LCPlebl2"], ["https://tec.openplanner.team/stops/Lrcarse1", "https://tec.openplanner.team/stops/Lrcastr1"], ["https://tec.openplanner.team/stops/LkTkabi1", "https://tec.openplanner.team/stops/LkTlibe2"], ["https://tec.openplanner.team/stops/Cgyhstj1", "https://tec.openplanner.team/stops/Cgyobse1"], ["https://tec.openplanner.team/stops/N539awa", "https://tec.openplanner.team/stops/N539axb"], ["https://tec.openplanner.team/stops/H1bb113a", "https://tec.openplanner.team/stops/H1ho133b"], ["https://tec.openplanner.team/stops/X717adb", "https://tec.openplanner.team/stops/X782afb"], ["https://tec.openplanner.team/stops/Btlbcha1", "https://tec.openplanner.team/stops/Btlbcha2"], ["https://tec.openplanner.team/stops/LOLbout4", "https://tec.openplanner.team/stops/LXHadam2"], ["https://tec.openplanner.team/stops/LCPaube1", "https://tec.openplanner.team/stops/LLNcruc2"], ["https://tec.openplanner.team/stops/Lvecite1", "https://tec.openplanner.team/stops/Lvemahe2"], ["https://tec.openplanner.team/stops/LMAcomm1", "https://tec.openplanner.team/stops/LMAgdfa1"], ["https://tec.openplanner.team/stops/X739adb", "https://tec.openplanner.team/stops/X739afa"], ["https://tec.openplanner.team/stops/Lalchar2", "https://tec.openplanner.team/stops/Lloauto2"], ["https://tec.openplanner.team/stops/N570aaa", "https://tec.openplanner.team/stops/N570aab"], ["https://tec.openplanner.team/stops/H1qp141a", "https://tec.openplanner.team/stops/H1qp150a"], ["https://tec.openplanner.team/stops/N537aga", "https://tec.openplanner.team/stops/N537aia"], ["https://tec.openplanner.team/stops/N110abb", "https://tec.openplanner.team/stops/N110aca"], ["https://tec.openplanner.team/stops/Cflpost2", "https://tec.openplanner.team/stops/Cwgcamp2"], ["https://tec.openplanner.team/stops/Btubga02", "https://tec.openplanner.team/stops/Btubga05"], ["https://tec.openplanner.team/stops/Llglema3", "https://tec.openplanner.team/stops/Llgtill1"], ["https://tec.openplanner.team/stops/Cauglac2", "https://tec.openplanner.team/stops/N530aca"], ["https://tec.openplanner.team/stops/Lsepair2", "https://tec.openplanner.team/stops/Lsepair3"], ["https://tec.openplanner.team/stops/N532aja", "https://tec.openplanner.team/stops/N533ada"], ["https://tec.openplanner.team/stops/X948amb", "https://tec.openplanner.team/stops/X948amc"], ["https://tec.openplanner.team/stops/N141aga", "https://tec.openplanner.team/stops/N141aha"], ["https://tec.openplanner.team/stops/X659asa", "https://tec.openplanner.team/stops/X742aab"], ["https://tec.openplanner.team/stops/LAMdelh2", "https://tec.openplanner.team/stops/LAMweha2"], ["https://tec.openplanner.team/stops/LFPkape1", "https://tec.openplanner.team/stops/LFPkape3"], ["https://tec.openplanner.team/stops/LjedTEC1", "https://tec.openplanner.team/stops/LjedTEC2"], ["https://tec.openplanner.team/stops/X618acb", "https://tec.openplanner.team/stops/X618alb"], ["https://tec.openplanner.team/stops/Blaneli1", "https://tec.openplanner.team/stops/Blangar1"], ["https://tec.openplanner.team/stops/X801bha", "https://tec.openplanner.team/stops/X801bja"], ["https://tec.openplanner.team/stops/X601bma", "https://tec.openplanner.team/stops/X601caa"], ["https://tec.openplanner.team/stops/Bwatfon1", "https://tec.openplanner.team/stops/Bwatmlo2"], ["https://tec.openplanner.team/stops/Bhlvvil3", "https://tec.openplanner.team/stops/Blpghou2"], ["https://tec.openplanner.team/stops/X879aca", "https://tec.openplanner.team/stops/X879afb"], ["https://tec.openplanner.team/stops/N521aja", "https://tec.openplanner.team/stops/N521ama"], ["https://tec.openplanner.team/stops/X685aia", "https://tec.openplanner.team/stops/X687aba"], ["https://tec.openplanner.team/stops/Lsebrun1", "https://tec.openplanner.team/stops/Lseruis1"], ["https://tec.openplanner.team/stops/H4ga149a", "https://tec.openplanner.team/stops/H4ha170b"], ["https://tec.openplanner.team/stops/Blthvil1", "https://tec.openplanner.team/stops/Blthwav2"], ["https://tec.openplanner.team/stops/Llgddef2", "https://tec.openplanner.team/stops/Llgrass2"], ["https://tec.openplanner.team/stops/X917aca", "https://tec.openplanner.team/stops/X917acb"], ["https://tec.openplanner.team/stops/LRObruy2", "https://tec.openplanner.team/stops/LRObruy3"], ["https://tec.openplanner.team/stops/Bnivga61", "https://tec.openplanner.team/stops/Bnivga62"], ["https://tec.openplanner.team/stops/LhGgeme2", "https://tec.openplanner.team/stops/LhGkirc2"], ["https://tec.openplanner.team/stops/Bottpar2", "https://tec.openplanner.team/stops/Bottvtc1"], ["https://tec.openplanner.team/stops/N228aeb", "https://tec.openplanner.team/stops/N235aea"], ["https://tec.openplanner.team/stops/N106aob", "https://tec.openplanner.team/stops/N106apa"], ["https://tec.openplanner.team/stops/Cml3fon1", "https://tec.openplanner.team/stops/Cml3fon2"], ["https://tec.openplanner.team/stops/H4do107c", "https://tec.openplanner.team/stops/H4do107d"], ["https://tec.openplanner.team/stops/Btubga04", "https://tec.openplanner.team/stops/Btubnav2"], ["https://tec.openplanner.team/stops/X653aaa", "https://tec.openplanner.team/stops/X667ada"], ["https://tec.openplanner.team/stops/H1ho134a", "https://tec.openplanner.team/stops/H1ho138a"], ["https://tec.openplanner.team/stops/Bboseco2", "https://tec.openplanner.team/stops/Bhoealt1"], ["https://tec.openplanner.team/stops/X926aaa", "https://tec.openplanner.team/stops/X927aaa"], ["https://tec.openplanner.team/stops/Blpglon1", "https://tec.openplanner.team/stops/Bvxgpro2"], ["https://tec.openplanner.team/stops/LFCotte2", "https://tec.openplanner.team/stops/LFCvoer2"], ["https://tec.openplanner.team/stops/H1so133b", "https://tec.openplanner.team/stops/H1so139c"], ["https://tec.openplanner.team/stops/N543bqb", "https://tec.openplanner.team/stops/N543cia"], ["https://tec.openplanner.team/stops/Baisbar1", "https://tec.openplanner.team/stops/N519asb"], ["https://tec.openplanner.team/stops/Bgnvgir1", "https://tec.openplanner.team/stops/Bgnvoha4"], ["https://tec.openplanner.team/stops/LVSslin1", "https://tec.openplanner.team/stops/LVStige2"], ["https://tec.openplanner.team/stops/X224ahb", "https://tec.openplanner.team/stops/X394aaa"], ["https://tec.openplanner.team/stops/H4ne143b", "https://tec.openplanner.team/stops/H4wa151b"], ["https://tec.openplanner.team/stops/H1ms252c", "https://tec.openplanner.team/stops/H1ms294c"], ["https://tec.openplanner.team/stops/Buccpes1", "https://tec.openplanner.team/stops/Buccvbe1"], ["https://tec.openplanner.team/stops/LBkcarr2", "https://tec.openplanner.team/stops/LWEcomp1"], ["https://tec.openplanner.team/stops/LREfloh2", "https://tec.openplanner.team/stops/LREsech2"], ["https://tec.openplanner.team/stops/Lwakipe1", "https://tec.openplanner.team/stops/Lwapont2"], ["https://tec.openplanner.team/stops/LMolone1", "https://tec.openplanner.team/stops/LMolone2"], ["https://tec.openplanner.team/stops/X804alc", "https://tec.openplanner.team/stops/X804ald"], ["https://tec.openplanner.team/stops/X979akb", "https://tec.openplanner.team/stops/X982bsb"], ["https://tec.openplanner.team/stops/X921aja", "https://tec.openplanner.team/stops/X921ajd"], ["https://tec.openplanner.team/stops/H4mo157b", "https://tec.openplanner.team/stops/H4mo187a"], ["https://tec.openplanner.team/stops/Bfelrav1", "https://tec.openplanner.team/stops/Bsengma2"], ["https://tec.openplanner.team/stops/Cvp3til1", "https://tec.openplanner.team/stops/Cvpcdec1"], ["https://tec.openplanner.team/stops/N532adb", "https://tec.openplanner.team/stops/N532aea"], ["https://tec.openplanner.team/stops/H1ss348b", "https://tec.openplanner.team/stops/H1vg359b"], ["https://tec.openplanner.team/stops/H2hp261b", "https://tec.openplanner.team/stops/H2mo122d"], ["https://tec.openplanner.team/stops/Louencl1", "https://tec.openplanner.team/stops/Louroos3"], ["https://tec.openplanner.team/stops/LeYteeh1", "https://tec.openplanner.team/stops/LeYteeh2"], ["https://tec.openplanner.team/stops/X342ahb", "https://tec.openplanner.team/stops/X346alb"], ["https://tec.openplanner.team/stops/X896aca", "https://tec.openplanner.team/stops/X898aga"], ["https://tec.openplanner.team/stops/LSzeg--2", "https://tec.openplanner.team/stops/N506bvb"], ["https://tec.openplanner.team/stops/LLNbeau2", "https://tec.openplanner.team/stops/LSpcarr1"], ["https://tec.openplanner.team/stops/X670agb", "https://tec.openplanner.team/stops/X670ana"], ["https://tec.openplanner.team/stops/N201ana", "https://tec.openplanner.team/stops/N202aib"], ["https://tec.openplanner.team/stops/X804bma", "https://tec.openplanner.team/stops/X804bpb"], ["https://tec.openplanner.team/stops/H1ma231a", "https://tec.openplanner.team/stops/H1ni323a"], ["https://tec.openplanner.team/stops/Ccicent3", "https://tec.openplanner.team/stops/Ccivill1"], ["https://tec.openplanner.team/stops/LcRmich1", "https://tec.openplanner.team/stops/LcRmich2"], ["https://tec.openplanner.team/stops/Bhenpln1", "https://tec.openplanner.team/stops/Bhenpln2"], ["https://tec.openplanner.team/stops/Bwavcen1", "https://tec.openplanner.team/stops/Bwavfbe1"], ["https://tec.openplanner.team/stops/X651acd", "https://tec.openplanner.team/stops/X651adb"], ["https://tec.openplanner.team/stops/H4bq100a", "https://tec.openplanner.team/stops/H4ea132c"], ["https://tec.openplanner.team/stops/H4wp148b", "https://tec.openplanner.team/stops/H4wp150c"], ["https://tec.openplanner.team/stops/N232baa", "https://tec.openplanner.team/stops/N232bra"], ["https://tec.openplanner.team/stops/LWRferm1", "https://tec.openplanner.team/stops/LWRferm2"], ["https://tec.openplanner.team/stops/LElverl2", "https://tec.openplanner.team/stops/LTaxhos1"], ["https://tec.openplanner.team/stops/N565abb", "https://tec.openplanner.team/stops/N565aca"], ["https://tec.openplanner.team/stops/N501hza", "https://tec.openplanner.team/stops/N501ipa"], ["https://tec.openplanner.team/stops/Bwavnep1", "https://tec.openplanner.team/stops/Bwavpar1"], ["https://tec.openplanner.team/stops/LJEchat4", "https://tec.openplanner.team/stops/LJEverd1"], ["https://tec.openplanner.team/stops/Lsecoop1", "https://tec.openplanner.team/stops/Lsecoop2"], ["https://tec.openplanner.team/stops/LFR201-1", "https://tec.openplanner.team/stops/LFRspa-1"], ["https://tec.openplanner.team/stops/N217aea", "https://tec.openplanner.team/stops/N217aeb"], ["https://tec.openplanner.team/stops/LCEboll2", "https://tec.openplanner.team/stops/LCEec--2"], ["https://tec.openplanner.team/stops/X660ahb", "https://tec.openplanner.team/stops/X660aja"], ["https://tec.openplanner.team/stops/H4ba103a", "https://tec.openplanner.team/stops/H4pi136b"], ["https://tec.openplanner.team/stops/Causncb2", "https://tec.openplanner.team/stops/N543aja"], ["https://tec.openplanner.team/stops/Laghetr2", "https://tec.openplanner.team/stops/Lkigare2"], ["https://tec.openplanner.team/stops/LLagert*", "https://tec.openplanner.team/stops/LWHzave1"], ["https://tec.openplanner.team/stops/LEHmarc2", "https://tec.openplanner.team/stops/LNCvill1"], ["https://tec.openplanner.team/stops/N229asa", "https://tec.openplanner.team/stops/N540alb"], ["https://tec.openplanner.team/stops/N570aba", "https://tec.openplanner.team/stops/N570abb"], ["https://tec.openplanner.team/stops/Bernegl3", "https://tec.openplanner.team/stops/Bernegl4"], ["https://tec.openplanner.team/stops/LnErech1", "https://tec.openplanner.team/stops/LoEauto1"], ["https://tec.openplanner.team/stops/LWerola1", "https://tec.openplanner.team/stops/LWerola2"], ["https://tec.openplanner.team/stops/H1ba105a", "https://tec.openplanner.team/stops/H1te173b"], ["https://tec.openplanner.team/stops/Bnivpro2", "https://tec.openplanner.team/stops/Bnivsho1"], ["https://tec.openplanner.team/stops/LBThaut1", "https://tec.openplanner.team/stops/LBThaut2"], ["https://tec.openplanner.team/stops/Bdvminc1", "https://tec.openplanner.team/stops/Bdvminc2"], ["https://tec.openplanner.team/stops/X650ama", "https://tec.openplanner.team/stops/X650amb"], ["https://tec.openplanner.team/stops/LPLcarr3", "https://tec.openplanner.team/stops/LPLcent2"], ["https://tec.openplanner.team/stops/H4te249b", "https://tec.openplanner.team/stops/H4te413b"], ["https://tec.openplanner.team/stops/H4ty327a", "https://tec.openplanner.team/stops/H4ty348b"], ["https://tec.openplanner.team/stops/H1ha199a", "https://tec.openplanner.team/stops/H1ha199b"], ["https://tec.openplanner.team/stops/Bfelcsa2", "https://tec.openplanner.team/stops/H2fa103b"], ["https://tec.openplanner.team/stops/X979aca", "https://tec.openplanner.team/stops/X979acb"], ["https://tec.openplanner.team/stops/LNAbass1", "https://tec.openplanner.team/stops/LNAmart1"], ["https://tec.openplanner.team/stops/N568aab", "https://tec.openplanner.team/stops/N568ada"], ["https://tec.openplanner.team/stops/Lstpole1", "https://tec.openplanner.team/stops/Lstscie2"], ["https://tec.openplanner.team/stops/Cci4bra4", "https://tec.openplanner.team/stops/NC02apa"], ["https://tec.openplanner.team/stops/N219afa", "https://tec.openplanner.team/stops/N219afb"], ["https://tec.openplanner.team/stops/Lbofrai2", "https://tec.openplanner.team/stops/Lbotige2"], ["https://tec.openplanner.team/stops/Bllncyc1", "https://tec.openplanner.team/stops/Bllnfla3"], ["https://tec.openplanner.team/stops/Bbeubos1", "https://tec.openplanner.team/stops/N524adb"], ["https://tec.openplanner.team/stops/Llxec--1", "https://tec.openplanner.team/stops/LSAeg--2"], ["https://tec.openplanner.team/stops/Cgyhaie2", "https://tec.openplanner.team/stops/Cgystbe2"], ["https://tec.openplanner.team/stops/LJesole1", "https://tec.openplanner.team/stops/LMOstat1"], ["https://tec.openplanner.team/stops/N543bgd", "https://tec.openplanner.team/stops/N543bta"], ["https://tec.openplanner.team/stops/N531aja", "https://tec.openplanner.team/stops/N531aka"], ["https://tec.openplanner.team/stops/Lmnchal1", "https://tec.openplanner.team/stops/Lmnsech2"], ["https://tec.openplanner.team/stops/Bmarmpr1", "https://tec.openplanner.team/stops/Bvlvmar2"], ["https://tec.openplanner.team/stops/H1br131b", "https://tec.openplanner.team/stops/H1br132a"], ["https://tec.openplanner.team/stops/X747ada", "https://tec.openplanner.team/stops/X747akb"], ["https://tec.openplanner.team/stops/Baudvdr1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/X746agc", "https://tec.openplanner.team/stops/X746agd"], ["https://tec.openplanner.team/stops/LPOchan1", "https://tec.openplanner.team/stops/LPOecol1"], ["https://tec.openplanner.team/stops/LGesent1", "https://tec.openplanner.team/stops/LGesent2"], ["https://tec.openplanner.team/stops/LMHtill1", "https://tec.openplanner.team/stops/LMHtill2"], ["https://tec.openplanner.team/stops/H2pr118a", "https://tec.openplanner.team/stops/H3so187a"], ["https://tec.openplanner.team/stops/LeUhook2", "https://tec.openplanner.team/stops/LeUwert2"], ["https://tec.openplanner.team/stops/Cchsud04", "https://tec.openplanner.team/stops/Cchsud13"], ["https://tec.openplanner.team/stops/Lbocond2", "https://tec.openplanner.team/stops/LPLcite2"], ["https://tec.openplanner.team/stops/Lcehipp1", "https://tec.openplanner.team/stops/Lcesart1"], ["https://tec.openplanner.team/stops/X636ata", "https://tec.openplanner.team/stops/X636atb"], ["https://tec.openplanner.team/stops/X733ahb", "https://tec.openplanner.team/stops/X733aib"], ["https://tec.openplanner.team/stops/H1cu117b", "https://tec.openplanner.team/stops/H1cu117c"], ["https://tec.openplanner.team/stops/X638adb", "https://tec.openplanner.team/stops/X638afa"], ["https://tec.openplanner.team/stops/H1hn210a", "https://tec.openplanner.team/stops/H1hn210b"], ["https://tec.openplanner.team/stops/N501fna", "https://tec.openplanner.team/stops/N501fpa"], ["https://tec.openplanner.team/stops/N539aeb", "https://tec.openplanner.team/stops/N539ana"], ["https://tec.openplanner.team/stops/H4ir165b", "https://tec.openplanner.team/stops/H5at139a"], ["https://tec.openplanner.team/stops/Cjudefi2", "https://tec.openplanner.team/stops/Cjuplho1"], ["https://tec.openplanner.team/stops/H4wi166b", "https://tec.openplanner.team/stops/H4wi170b"], ["https://tec.openplanner.team/stops/X820abb", "https://tec.openplanner.team/stops/X820afa"], ["https://tec.openplanner.team/stops/Bpieh171", "https://tec.openplanner.team/stops/Bpiehvi2"], ["https://tec.openplanner.team/stops/LBUvall1", "https://tec.openplanner.team/stops/NL30afa"], ["https://tec.openplanner.team/stops/H1wa145a", "https://tec.openplanner.team/stops/H1wa149b"], ["https://tec.openplanner.team/stops/LhGkirc6", "https://tec.openplanner.team/stops/LhGrote1"], ["https://tec.openplanner.team/stops/N508ama", "https://tec.openplanner.team/stops/N508aoa"], ["https://tec.openplanner.team/stops/LAWaube1", "https://tec.openplanner.team/stops/LAWdefr2"], ["https://tec.openplanner.team/stops/Bbwacol1", "https://tec.openplanner.team/stops/Bwavbwa1"], ["https://tec.openplanner.team/stops/X663adb", "https://tec.openplanner.team/stops/X663afb"], ["https://tec.openplanner.team/stops/H3so159a", "https://tec.openplanner.team/stops/H3so163b"], ["https://tec.openplanner.team/stops/H1bo108a", "https://tec.openplanner.team/stops/H1bo108c"], ["https://tec.openplanner.team/stops/Cfcchen2", "https://tec.openplanner.team/stops/Cfccuch2"], ["https://tec.openplanner.team/stops/LHUchin*", "https://tec.openplanner.team/stops/NL76aqb"], ["https://tec.openplanner.team/stops/X760aba", "https://tec.openplanner.team/stops/X789aga"], ["https://tec.openplanner.team/stops/Chhegli3", "https://tec.openplanner.team/stops/Cmx4che1"], ["https://tec.openplanner.team/stops/H1mj124b", "https://tec.openplanner.team/stops/H1mj130a"], ["https://tec.openplanner.team/stops/H4bs112a", "https://tec.openplanner.team/stops/H4ca122b"], ["https://tec.openplanner.team/stops/X609aib", "https://tec.openplanner.team/stops/X609aja"], ["https://tec.openplanner.team/stops/N229ana", "https://tec.openplanner.team/stops/N229anb"], ["https://tec.openplanner.team/stops/Blascim2", "https://tec.openplanner.team/stops/Blasvil1"], ["https://tec.openplanner.team/stops/Bottrfa1", "https://tec.openplanner.team/stops/Bottrfa4"], ["https://tec.openplanner.team/stops/Llgauxc1", "https://tec.openplanner.team/stops/Llgborg2"], ["https://tec.openplanner.team/stops/Cfbcabi1", "https://tec.openplanner.team/stops/Cvrfcho2"], ["https://tec.openplanner.team/stops/N539aab", "https://tec.openplanner.team/stops/N539aca"], ["https://tec.openplanner.team/stops/N531ahb", "https://tec.openplanner.team/stops/N576aja"], ["https://tec.openplanner.team/stops/Crcgmah1", "https://tec.openplanner.team/stops/NH03aea"], ["https://tec.openplanner.team/stops/LESfont2", "https://tec.openplanner.team/stops/LESvign1"], ["https://tec.openplanner.team/stops/LLz21--1", "https://tec.openplanner.team/stops/LRfbeau2"], ["https://tec.openplanner.team/stops/N236ala", "https://tec.openplanner.team/stops/N236apa"], ["https://tec.openplanner.team/stops/Bjodeco2", "https://tec.openplanner.team/stops/Bjodgar1"], ["https://tec.openplanner.team/stops/H4ab100b", "https://tec.openplanner.team/stops/H5ar100a"], ["https://tec.openplanner.team/stops/H4mx118a", "https://tec.openplanner.team/stops/H4mx120b"], ["https://tec.openplanner.team/stops/X394adb", "https://tec.openplanner.team/stops/X394afb"], ["https://tec.openplanner.team/stops/N138aea", "https://tec.openplanner.team/stops/N138afa"], ["https://tec.openplanner.team/stops/Ctyhame1", "https://tec.openplanner.team/stops/Ctynamu2"], ["https://tec.openplanner.team/stops/N383aeb", "https://tec.openplanner.team/stops/N874aga"], ["https://tec.openplanner.team/stops/H4mo152a", "https://tec.openplanner.team/stops/H4mo177a"], ["https://tec.openplanner.team/stops/X662afb", "https://tec.openplanner.team/stops/X662ana"], ["https://tec.openplanner.team/stops/H4mo157a", "https://tec.openplanner.team/stops/H4mo157b"], ["https://tec.openplanner.team/stops/Buccrac2", "https://tec.openplanner.team/stops/Buccvoi2"], ["https://tec.openplanner.team/stops/Lanplat1", "https://tec.openplanner.team/stops/Lanpont2"], ["https://tec.openplanner.team/stops/LODarbr1", "https://tec.openplanner.team/stops/X547ara"], ["https://tec.openplanner.team/stops/X937aca", "https://tec.openplanner.team/stops/X945aeb"], ["https://tec.openplanner.team/stops/Lbrcygn2", "https://tec.openplanner.team/stops/Lbrmour2"], ["https://tec.openplanner.team/stops/N509aja", "https://tec.openplanner.team/stops/N509ajb"], ["https://tec.openplanner.team/stops/X804aua", "https://tec.openplanner.team/stops/X804avb"], ["https://tec.openplanner.team/stops/N261ahb", "https://tec.openplanner.team/stops/N338aia"], ["https://tec.openplanner.team/stops/Clb4bra2", "https://tec.openplanner.team/stops/H1lo120b"], ["https://tec.openplanner.team/stops/Bgisber2", "https://tec.openplanner.team/stops/Bgisman2"], ["https://tec.openplanner.team/stops/N515ara", "https://tec.openplanner.team/stops/N515asa"], ["https://tec.openplanner.team/stops/LHFec--2", "https://tec.openplanner.team/stops/LHFec--4"], ["https://tec.openplanner.team/stops/N519ala", "https://tec.openplanner.team/stops/N519arb"], ["https://tec.openplanner.team/stops/H1gh147b", "https://tec.openplanner.team/stops/H1gh167b"], ["https://tec.openplanner.team/stops/NH01ana", "https://tec.openplanner.team/stops/NH01asb"], ["https://tec.openplanner.team/stops/Bsrgm101", "https://tec.openplanner.team/stops/Bzlucam2"], ["https://tec.openplanner.team/stops/H1fl133c", "https://tec.openplanner.team/stops/H1fl135b"], ["https://tec.openplanner.team/stops/LwPdorf1", "https://tec.openplanner.team/stops/LwPdorf2"], ["https://tec.openplanner.team/stops/Lalmitt1", "https://tec.openplanner.team/stops/LXhnouv1"], ["https://tec.openplanner.team/stops/Llgcadr3", "https://tec.openplanner.team/stops/Llgcadr6"], ["https://tec.openplanner.team/stops/X925alb", "https://tec.openplanner.team/stops/X925amb"], ["https://tec.openplanner.team/stops/H4lz126a", "https://tec.openplanner.team/stops/H4lz158a"], ["https://tec.openplanner.team/stops/N138aac", "https://tec.openplanner.team/stops/N138aea"], ["https://tec.openplanner.team/stops/LBUrout1", "https://tec.openplanner.team/stops/LBUrout2"], ["https://tec.openplanner.team/stops/H1nm138b", "https://tec.openplanner.team/stops/H1si167b"], ["https://tec.openplanner.team/stops/LAufech1", "https://tec.openplanner.team/stops/LSDgris1"], ["https://tec.openplanner.team/stops/Csrcarr1", "https://tec.openplanner.team/stops/Csregli2"], ["https://tec.openplanner.team/stops/X804aaa", "https://tec.openplanner.team/stops/X804aba"], ["https://tec.openplanner.team/stops/H5pe125a", "https://tec.openplanner.team/stops/H5pe125b"], ["https://tec.openplanner.team/stops/N141aob", "https://tec.openplanner.team/stops/N146aea"], ["https://tec.openplanner.team/stops/Lronamo1", "https://tec.openplanner.team/stops/Lronamo2"], ["https://tec.openplanner.team/stops/Bbchcab1", "https://tec.openplanner.team/stops/Bbchdev1"], ["https://tec.openplanner.team/stops/H1bl104c", "https://tec.openplanner.team/stops/H1pd144b"], ["https://tec.openplanner.team/stops/LCaalou1", "https://tec.openplanner.team/stops/LCaresi1"], ["https://tec.openplanner.team/stops/Cfmgara1", "https://tec.openplanner.team/stops/Cfmrrou1"], ["https://tec.openplanner.team/stops/Lemcort1", "https://tec.openplanner.team/stops/Lemeg--1"], ["https://tec.openplanner.team/stops/N229agb", "https://tec.openplanner.team/stops/N229aoa"], ["https://tec.openplanner.team/stops/H1he104b", "https://tec.openplanner.team/stops/H1he111b"], ["https://tec.openplanner.team/stops/LPLc65-1", "https://tec.openplanner.team/stops/LPLc65-2"], ["https://tec.openplanner.team/stops/N542ama", "https://tec.openplanner.team/stops/N542amb"], ["https://tec.openplanner.team/stops/H4by119b", "https://tec.openplanner.team/stops/H4ro154a"], ["https://tec.openplanner.team/stops/LBY4che2", "https://tec.openplanner.team/stops/LMhvina1"], ["https://tec.openplanner.team/stops/Lagvern1", "https://tec.openplanner.team/stops/Llgcond2"], ["https://tec.openplanner.team/stops/X750ada", "https://tec.openplanner.team/stops/X750aeb"], ["https://tec.openplanner.team/stops/X762aba", "https://tec.openplanner.team/stops/X762abb"], ["https://tec.openplanner.team/stops/H4hu116b", "https://tec.openplanner.team/stops/H4ld127b"], ["https://tec.openplanner.team/stops/Ccodubo2", "https://tec.openplanner.team/stops/Ccovies1"], ["https://tec.openplanner.team/stops/Bclgpch2", "https://tec.openplanner.team/stops/Bwavvpr1"], ["https://tec.openplanner.team/stops/Cbmclar1", "https://tec.openplanner.team/stops/Cbmgrav2"], ["https://tec.openplanner.team/stops/X746ama", "https://tec.openplanner.team/stops/X746amb"], ["https://tec.openplanner.team/stops/N516aib", "https://tec.openplanner.team/stops/N581abb"], ["https://tec.openplanner.team/stops/LHMsipp1", "https://tec.openplanner.team/stops/LSIroch1"], ["https://tec.openplanner.team/stops/Blascvi1", "https://tec.openplanner.team/stops/Bohnpla2"], ["https://tec.openplanner.team/stops/Bohncha2", "https://tec.openplanner.team/stops/Bohngen1"], ["https://tec.openplanner.team/stops/LHThall2", "https://tec.openplanner.team/stops/LHThall4"], ["https://tec.openplanner.team/stops/LNAanne1", "https://tec.openplanner.team/stops/LNAbouh1"], ["https://tec.openplanner.team/stops/LlNbusc2", "https://tec.openplanner.team/stops/LlNsc652"], ["https://tec.openplanner.team/stops/N557aba", "https://tec.openplanner.team/stops/N557abb"], ["https://tec.openplanner.team/stops/Cjuaero2", "https://tec.openplanner.team/stops/Cjuaero4"], ["https://tec.openplanner.team/stops/Bgoestu1", "https://tec.openplanner.team/stops/Bgoewat2"], ["https://tec.openplanner.team/stops/LTyh24-1", "https://tec.openplanner.team/stops/LTywaut2"], ["https://tec.openplanner.team/stops/Bcsebea1", "https://tec.openplanner.team/stops/Bottbru2"], ["https://tec.openplanner.team/stops/X986afa", "https://tec.openplanner.team/stops/X986afb"], ["https://tec.openplanner.team/stops/X796adb", "https://tec.openplanner.team/stops/X796aeb"], ["https://tec.openplanner.team/stops/Bvirduj2", "https://tec.openplanner.team/stops/Bvirhsa1"], ["https://tec.openplanner.team/stops/Blhutco1", "https://tec.openplanner.team/stops/Blhutco3"], ["https://tec.openplanner.team/stops/X941afa", "https://tec.openplanner.team/stops/X941ahb"], ["https://tec.openplanner.team/stops/LBgbaga2", "https://tec.openplanner.team/stops/LBgbaga4"], ["https://tec.openplanner.team/stops/LFsherm2", "https://tec.openplanner.team/stops/LFslign2"], ["https://tec.openplanner.team/stops/Lagindu2", "https://tec.openplanner.team/stops/Lagorch2"], ["https://tec.openplanner.team/stops/X614aca", "https://tec.openplanner.team/stops/X614aob"], ["https://tec.openplanner.team/stops/Bmarfjo1", "https://tec.openplanner.team/stops/Bmargve2"], ["https://tec.openplanner.team/stops/X654adb", "https://tec.openplanner.team/stops/X654aka"], ["https://tec.openplanner.team/stops/X850agb", "https://tec.openplanner.team/stops/X850ala"], ["https://tec.openplanner.team/stops/Louhauf1", "https://tec.openplanner.team/stops/Loumair1"], ["https://tec.openplanner.team/stops/LBLtroi1", "https://tec.openplanner.team/stops/LBLtroi2"], ["https://tec.openplanner.team/stops/Bbsicul1", "https://tec.openplanner.team/stops/Bbsicul2"], ["https://tec.openplanner.team/stops/LBAbooz1", "https://tec.openplanner.team/stops/LCEplac2"], ["https://tec.openplanner.team/stops/X947ada", "https://tec.openplanner.team/stops/X947afa"], ["https://tec.openplanner.team/stops/N562bia", "https://tec.openplanner.team/stops/N562bib"], ["https://tec.openplanner.team/stops/Lgrbell2", "https://tec.openplanner.team/stops/Lgrdefr2"], ["https://tec.openplanner.team/stops/Lqbecco1", "https://tec.openplanner.team/stops/LSAtrih2"], ["https://tec.openplanner.team/stops/LaMbull1", "https://tec.openplanner.team/stops/LaMbull2"], ["https://tec.openplanner.team/stops/Lvcfogu1", "https://tec.openplanner.team/stops/Lvcreve2"], ["https://tec.openplanner.team/stops/Cgoathe1", "https://tec.openplanner.team/stops/Cgoathe2"], ["https://tec.openplanner.team/stops/Cctchav1", "https://tec.openplanner.team/stops/Cctjoue5"], ["https://tec.openplanner.team/stops/X982aka", "https://tec.openplanner.team/stops/X982akb"], ["https://tec.openplanner.team/stops/LOVhetr1", "https://tec.openplanner.team/stops/LSopost1"], ["https://tec.openplanner.team/stops/Louaout1", "https://tec.openplanner.team/stops/Loufleu1"], ["https://tec.openplanner.team/stops/Bbstegl2", "https://tec.openplanner.team/stops/Bbstpan2"], ["https://tec.openplanner.team/stops/Bhaless2", "https://tec.openplanner.team/stops/Bhalvel1"], ["https://tec.openplanner.team/stops/H2bh103b", "https://tec.openplanner.team/stops/H2bh103c"], ["https://tec.openplanner.team/stops/Ctrchat2", "https://tec.openplanner.team/stops/Ctrterm2"], ["https://tec.openplanner.team/stops/Balsbeg1", "https://tec.openplanner.team/stops/Brsgrol1"], ["https://tec.openplanner.team/stops/LWNbeto2", "https://tec.openplanner.team/stops/LWNcime1"], ["https://tec.openplanner.team/stops/Lvealbe1", "https://tec.openplanner.team/stops/Lvevert4"], ["https://tec.openplanner.team/stops/H1le118a", "https://tec.openplanner.team/stops/H1ol140a"], ["https://tec.openplanner.team/stops/H4eg104b", "https://tec.openplanner.team/stops/H4eg106a"], ["https://tec.openplanner.team/stops/H4sl154a", "https://tec.openplanner.team/stops/H4sl154b"], ["https://tec.openplanner.team/stops/NR38aeb", "https://tec.openplanner.team/stops/NR38afb"], ["https://tec.openplanner.team/stops/Blineco2", "https://tec.openplanner.team/stops/Blingar2"], ["https://tec.openplanner.team/stops/H1wa136b", "https://tec.openplanner.team/stops/H1wa140a"], ["https://tec.openplanner.team/stops/H4pe126a", "https://tec.openplanner.team/stops/H4pe126b"], ["https://tec.openplanner.team/stops/Brixfro3", "https://tec.openplanner.team/stops/Brixmar3"], ["https://tec.openplanner.team/stops/LBLfoxh2", "https://tec.openplanner.team/stops/LMEeg--1"], ["https://tec.openplanner.team/stops/LSJeg--1", "https://tec.openplanner.team/stops/LWRtroi2"], ["https://tec.openplanner.team/stops/H4do102a", "https://tec.openplanner.team/stops/H4do107a"], ["https://tec.openplanner.team/stops/LwL100-2", "https://tec.openplanner.team/stops/LwLfuss2"], ["https://tec.openplanner.team/stops/LFLcarr2", "https://tec.openplanner.team/stops/LFLgara1"], ["https://tec.openplanner.team/stops/LeUfuss1", "https://tec.openplanner.team/stops/LeUkehr3"], ["https://tec.openplanner.team/stops/N134aaa", "https://tec.openplanner.team/stops/N134aac"], ["https://tec.openplanner.team/stops/N501iwb", "https://tec.openplanner.team/stops/N521ahb"], ["https://tec.openplanner.team/stops/N548aca", "https://tec.openplanner.team/stops/N548acc"], ["https://tec.openplanner.team/stops/Crspana3", "https://tec.openplanner.team/stops/Crsstem2"], ["https://tec.openplanner.team/stops/Blemsta1", "https://tec.openplanner.team/stops/Blemwro1"], ["https://tec.openplanner.team/stops/H4by115a", "https://tec.openplanner.team/stops/H4by115d"], ["https://tec.openplanner.team/stops/X663ana", "https://tec.openplanner.team/stops/X663arb"], ["https://tec.openplanner.team/stops/Lseaven1", "https://tec.openplanner.team/stops/Lsecoll2"], ["https://tec.openplanner.team/stops/Lcejobe1", "https://tec.openplanner.team/stops/Lgrgoff1"], ["https://tec.openplanner.team/stops/Bcsgcou1", "https://tec.openplanner.team/stops/Blaspch1"], ["https://tec.openplanner.team/stops/LSZsolw1", "https://tec.openplanner.team/stops/LSZsolw2"], ["https://tec.openplanner.team/stops/H1gr123c", "https://tec.openplanner.team/stops/H1gr123d"], ["https://tec.openplanner.team/stops/LSPmalc1", "https://tec.openplanner.team/stops/LWycarr1"], ["https://tec.openplanner.team/stops/H4fr142a", "https://tec.openplanner.team/stops/H4fr390a"], ["https://tec.openplanner.team/stops/N562bna", "https://tec.openplanner.team/stops/N562bwb"], ["https://tec.openplanner.team/stops/Caibino1", "https://tec.openplanner.team/stops/N543bba"], ["https://tec.openplanner.team/stops/X601ayb", "https://tec.openplanner.team/stops/X601dfa"], ["https://tec.openplanner.team/stops/H4rx141b", "https://tec.openplanner.team/stops/H4rx143a"], ["https://tec.openplanner.team/stops/LPclaro2", "https://tec.openplanner.team/stops/LPctrog1"], ["https://tec.openplanner.team/stops/LBjpech2", "https://tec.openplanner.team/stops/X575aea"], ["https://tec.openplanner.team/stops/Bclgmev1", "https://tec.openplanner.team/stops/Bclgpla2"], ["https://tec.openplanner.team/stops/LOdcris1", "https://tec.openplanner.team/stops/LOdmonu3"], ["https://tec.openplanner.team/stops/H1ha188a", "https://tec.openplanner.team/stops/H1ha188b"], ["https://tec.openplanner.team/stops/Brsggde2", "https://tec.openplanner.team/stops/Brsgpbo2"], ["https://tec.openplanner.team/stops/X811aoa", "https://tec.openplanner.team/stops/X811aob"], ["https://tec.openplanner.team/stops/LeYraaf1", "https://tec.openplanner.team/stops/LeYvoge2"], ["https://tec.openplanner.team/stops/H3so184a", "https://tec.openplanner.team/stops/H3so185a"], ["https://tec.openplanner.team/stops/H4wn124a", "https://tec.openplanner.team/stops/H4wn128b"], ["https://tec.openplanner.team/stops/N525aeb", "https://tec.openplanner.team/stops/N525aed"], ["https://tec.openplanner.team/stops/Bsaumlk2", "https://tec.openplanner.team/stops/Bsaumlp1"], ["https://tec.openplanner.team/stops/X601acb", "https://tec.openplanner.team/stops/X601bga"], ["https://tec.openplanner.team/stops/X812aza", "https://tec.openplanner.team/stops/X812bba"], ["https://tec.openplanner.team/stops/X625abb", "https://tec.openplanner.team/stops/X625acb"], ["https://tec.openplanner.team/stops/Bptemch1", "https://tec.openplanner.team/stops/H1hv135a"], ["https://tec.openplanner.team/stops/LlSzoll1", "https://tec.openplanner.team/stops/LlZkirc2"], ["https://tec.openplanner.team/stops/Lmlprie2", "https://tec.openplanner.team/stops/Lmlscie2"], ["https://tec.openplanner.team/stops/LhZkape1", "https://tec.openplanner.team/stops/LhZkape2"], ["https://tec.openplanner.team/stops/Bnivfhu1", "https://tec.openplanner.team/stops/Bnivzon1"], ["https://tec.openplanner.team/stops/Bwaypon1", "https://tec.openplanner.team/stops/Bwaypon2"], ["https://tec.openplanner.team/stops/X801apb", "https://tec.openplanner.team/stops/X801aqa"], ["https://tec.openplanner.team/stops/Lmnhorl1", "https://tec.openplanner.team/stops/Lmnhorl2"], ["https://tec.openplanner.team/stops/Ccosart4", "https://tec.openplanner.team/stops/Csograf1"], ["https://tec.openplanner.team/stops/NL74adb", "https://tec.openplanner.team/stops/NL74aga"], ["https://tec.openplanner.team/stops/Cgzcour2", "https://tec.openplanner.team/stops/Cgzpjeu1"], ["https://tec.openplanner.team/stops/LaMhe421", "https://tec.openplanner.team/stops/LaMmark1"], ["https://tec.openplanner.team/stops/LBzvill1", "https://tec.openplanner.team/stops/LBzvill2"], ["https://tec.openplanner.team/stops/N530aia", "https://tec.openplanner.team/stops/N530aja"], ["https://tec.openplanner.team/stops/H1fl133e", "https://tec.openplanner.team/stops/H1je369b"], ["https://tec.openplanner.team/stops/X663aaa", "https://tec.openplanner.team/stops/X664aoa"], ["https://tec.openplanner.team/stops/Clrcomb1", "https://tec.openplanner.team/stops/Clrcomb2"], ["https://tec.openplanner.team/stops/H4pl122a", "https://tec.openplanner.team/stops/H4pl136a"], ["https://tec.openplanner.team/stops/X736agb", "https://tec.openplanner.team/stops/X753aab"], ["https://tec.openplanner.team/stops/Bitrcan2", "https://tec.openplanner.team/stops/Bitrsar2"], ["https://tec.openplanner.team/stops/X817afa", "https://tec.openplanner.team/stops/X817agb"], ["https://tec.openplanner.team/stops/X948alb", "https://tec.openplanner.team/stops/X948amb"], ["https://tec.openplanner.team/stops/H4hg158b", "https://tec.openplanner.team/stops/H4hg160b"], ["https://tec.openplanner.team/stops/H2ll187c", "https://tec.openplanner.team/stops/H2ll199a"], ["https://tec.openplanner.team/stops/H2lc169d", "https://tec.openplanner.team/stops/H2lc170b"], ["https://tec.openplanner.team/stops/H4ta115a", "https://tec.openplanner.team/stops/H4ta115b"], ["https://tec.openplanner.team/stops/LBImili2", "https://tec.openplanner.team/stops/LBIvill4"], ["https://tec.openplanner.team/stops/X595aba", "https://tec.openplanner.team/stops/X713anb"], ["https://tec.openplanner.team/stops/Blsmvan1", "https://tec.openplanner.team/stops/Bpelegl3"], ["https://tec.openplanner.team/stops/LBStec-2", "https://tec.openplanner.team/stops/LHSheur1"], ["https://tec.openplanner.team/stops/LBSgeer1", "https://tec.openplanner.team/stops/LBSkann2"], ["https://tec.openplanner.team/stops/Ljucaba2", "https://tec.openplanner.team/stops/Ljuroch1"], ["https://tec.openplanner.team/stops/Cmggthi2", "https://tec.openplanner.team/stops/Cmgtour1"], ["https://tec.openplanner.team/stops/X609aba", "https://tec.openplanner.team/stops/X609aea"], ["https://tec.openplanner.team/stops/Bhalgja1", "https://tec.openplanner.team/stops/Blemwro1"], ["https://tec.openplanner.team/stops/H4or113a", "https://tec.openplanner.team/stops/H4or115b"], ["https://tec.openplanner.team/stops/LDLbois1", "https://tec.openplanner.team/stops/LDLheid1"], ["https://tec.openplanner.team/stops/LVvboma2", "https://tec.openplanner.team/stops/X982bfb"], ["https://tec.openplanner.team/stops/Bdvmccu2", "https://tec.openplanner.team/stops/Bdvmsar2"], ["https://tec.openplanner.team/stops/N539aya", "https://tec.openplanner.team/stops/N539ayb"], ["https://tec.openplanner.team/stops/N501eaa", "https://tec.openplanner.team/stops/N501eab"], ["https://tec.openplanner.team/stops/LBNforg2", "https://tec.openplanner.team/stops/LBNvilv1"], ["https://tec.openplanner.team/stops/Lveherl1", "https://tec.openplanner.team/stops/Lveherl2"], ["https://tec.openplanner.team/stops/H1pa117b", "https://tec.openplanner.team/stops/H1pa120b"], ["https://tec.openplanner.team/stops/N501kwb", "https://tec.openplanner.team/stops/N501kxb"], ["https://tec.openplanner.team/stops/Lanrois1", "https://tec.openplanner.team/stops/Lantonn1"], ["https://tec.openplanner.team/stops/Cgrgend2", "https://tec.openplanner.team/stops/Cjojonc1"], ["https://tec.openplanner.team/stops/LBRruel1", "https://tec.openplanner.team/stops/LBRtrag1"], ["https://tec.openplanner.team/stops/N543apa", "https://tec.openplanner.team/stops/N543axb"], ["https://tec.openplanner.team/stops/H2re166a", "https://tec.openplanner.team/stops/H2re166b"], ["https://tec.openplanner.team/stops/N544adb", "https://tec.openplanner.team/stops/N577aab"], ["https://tec.openplanner.team/stops/Brsgecu2", "https://tec.openplanner.team/stops/Brsgpbo1"], ["https://tec.openplanner.team/stops/LMIcamp1", "https://tec.openplanner.team/stops/LMIcamp2"], ["https://tec.openplanner.team/stops/H4es112b", "https://tec.openplanner.team/stops/H4es117a"], ["https://tec.openplanner.team/stops/Bramcom2", "https://tec.openplanner.team/stops/NR27aba"], ["https://tec.openplanner.team/stops/LELeg--2", "https://tec.openplanner.team/stops/LELhard2"], ["https://tec.openplanner.team/stops/LRGgrov2", "https://tec.openplanner.team/stops/LRGmoul1"], ["https://tec.openplanner.team/stops/H1mb135b", "https://tec.openplanner.team/stops/H1mb166b"], ["https://tec.openplanner.team/stops/LGAbois2", "https://tec.openplanner.team/stops/LGAnovi1"], ["https://tec.openplanner.team/stops/X608akb", "https://tec.openplanner.team/stops/X608ana"], ["https://tec.openplanner.team/stops/LBLcalv2", "https://tec.openplanner.team/stops/LBLghuy3"], ["https://tec.openplanner.team/stops/Ctupont2", "https://tec.openplanner.team/stops/Cturoge2"], ["https://tec.openplanner.team/stops/Lghlieg1", "https://tec.openplanner.team/stops/Lghterm*"], ["https://tec.openplanner.team/stops/N539ada", "https://tec.openplanner.team/stops/N539aqb"], ["https://tec.openplanner.team/stops/Lreclou1", "https://tec.openplanner.team/stops/Lreec--1"], ["https://tec.openplanner.team/stops/X788aaa", "https://tec.openplanner.team/stops/X789ahd"], ["https://tec.openplanner.team/stops/Blmlcle1", "https://tec.openplanner.team/stops/Blmldmi1"], ["https://tec.openplanner.team/stops/LnUcamp1", "https://tec.openplanner.team/stops/LnUneun3"], ["https://tec.openplanner.team/stops/X715akb", "https://tec.openplanner.team/stops/X715aqa"], ["https://tec.openplanner.team/stops/H4ga153b", "https://tec.openplanner.team/stops/H4ha171b"], ["https://tec.openplanner.team/stops/Lhrlalo2", "https://tec.openplanner.team/stops/Lhrmare8"], ["https://tec.openplanner.team/stops/N532aga", "https://tec.openplanner.team/stops/N532aja"], ["https://tec.openplanner.team/stops/Bjodfco2", "https://tec.openplanner.team/stops/Bpiehvi2"], ["https://tec.openplanner.team/stops/H1pa112b", "https://tec.openplanner.team/stops/H1pd145a"], ["https://tec.openplanner.team/stops/X746aaa", "https://tec.openplanner.team/stops/X746aab"], ["https://tec.openplanner.team/stops/Cfawain1", "https://tec.openplanner.team/stops/Cfawain2"], ["https://tec.openplanner.team/stops/LVLhalb2", "https://tec.openplanner.team/stops/LVLpane2"], ["https://tec.openplanner.team/stops/LMsec--1", "https://tec.openplanner.team/stops/LMspont1"], ["https://tec.openplanner.team/stops/H4we137a", "https://tec.openplanner.team/stops/H4we138b"], ["https://tec.openplanner.team/stops/Llgbaya4", "https://tec.openplanner.team/stops/Llgbonn2"], ["https://tec.openplanner.team/stops/X725ata", "https://tec.openplanner.team/stops/X725atb"], ["https://tec.openplanner.team/stops/H4ka190b", "https://tec.openplanner.team/stops/H4ka195a"], ["https://tec.openplanner.team/stops/H4wa150b", "https://tec.openplanner.team/stops/H4wa161a"], ["https://tec.openplanner.team/stops/LFEhoup1", "https://tec.openplanner.team/stops/X595afb"], ["https://tec.openplanner.team/stops/X640ama", "https://tec.openplanner.team/stops/X640ava"], ["https://tec.openplanner.team/stops/LoDcorn2", "https://tec.openplanner.team/stops/LoDscha2"], ["https://tec.openplanner.team/stops/H2na131a", "https://tec.openplanner.team/stops/H2na133b"], ["https://tec.openplanner.team/stops/LDLbeau2", "https://tec.openplanner.team/stops/LHYnoid2"], ["https://tec.openplanner.team/stops/H4am100a", "https://tec.openplanner.team/stops/H4an110b"], ["https://tec.openplanner.team/stops/X822aha", "https://tec.openplanner.team/stops/X822ahb"], ["https://tec.openplanner.team/stops/H5at124a", "https://tec.openplanner.team/stops/H5at137a"], ["https://tec.openplanner.team/stops/LLxalle1", "https://tec.openplanner.team/stops/LLxcana1"], ["https://tec.openplanner.team/stops/H5wo125a", "https://tec.openplanner.team/stops/H5wo133b"], ["https://tec.openplanner.team/stops/H4av100a", "https://tec.openplanner.team/stops/H4av100b"], ["https://tec.openplanner.team/stops/NB33aja", "https://tec.openplanner.team/stops/NB59akb"], ["https://tec.openplanner.team/stops/N132acb", "https://tec.openplanner.team/stops/N152abc"], ["https://tec.openplanner.team/stops/N511apa", "https://tec.openplanner.team/stops/N511aua"], ["https://tec.openplanner.team/stops/LBVronx2", "https://tec.openplanner.team/stops/LRffroi1"], ["https://tec.openplanner.team/stops/N424abb", "https://tec.openplanner.team/stops/NH01atb"], ["https://tec.openplanner.team/stops/LFsbasc2", "https://tec.openplanner.team/stops/LSLeg--1"], ["https://tec.openplanner.team/stops/Bohnbra1", "https://tec.openplanner.team/stops/Bohnegl2"], ["https://tec.openplanner.team/stops/Bnivfhu1", "https://tec.openplanner.team/stops/Bnivfhu2"], ["https://tec.openplanner.team/stops/Cchwate1", "https://tec.openplanner.team/stops/Cchwate4"], ["https://tec.openplanner.team/stops/LFmpoin1", "https://tec.openplanner.team/stops/LTyhapp2"], ["https://tec.openplanner.team/stops/X601aba", "https://tec.openplanner.team/stops/X601abb"], ["https://tec.openplanner.team/stops/N104abb", "https://tec.openplanner.team/stops/N104ada"], ["https://tec.openplanner.team/stops/N507aad", "https://tec.openplanner.team/stops/NL68adc"], ["https://tec.openplanner.team/stops/NH21acb", "https://tec.openplanner.team/stops/NH21ada"], ["https://tec.openplanner.team/stops/N127bha", "https://tec.openplanner.team/stops/N134aga"], ["https://tec.openplanner.team/stops/X747aba", "https://tec.openplanner.team/stops/X747abb"], ["https://tec.openplanner.team/stops/X746aib", "https://tec.openplanner.team/stops/X746aja"], ["https://tec.openplanner.team/stops/Lflcime2", "https://tec.openplanner.team/stops/Lflgare1"], ["https://tec.openplanner.team/stops/X729aaa", "https://tec.openplanner.team/stops/X745aca"], ["https://tec.openplanner.team/stops/Cfccol1", "https://tec.openplanner.team/stops/Cfccol2"], ["https://tec.openplanner.team/stops/Ljelexh2", "https://tec.openplanner.team/stops/Ljeorda1"], ["https://tec.openplanner.team/stops/Cfcgrat1", "https://tec.openplanner.team/stops/Cfcgrat2"], ["https://tec.openplanner.team/stops/H5bl141a", "https://tec.openplanner.team/stops/H5bl144b"], ["https://tec.openplanner.team/stops/LFEn6--1", "https://tec.openplanner.team/stops/LRMeg--2"], ["https://tec.openplanner.team/stops/Lsehtsa2", "https://tec.openplanner.team/stops/Lserena1"], ["https://tec.openplanner.team/stops/X782afa", "https://tec.openplanner.team/stops/X782aja"], ["https://tec.openplanner.team/stops/NH01aia", "https://tec.openplanner.team/stops/NH01alb"], ["https://tec.openplanner.team/stops/Cgxbeau2", "https://tec.openplanner.team/stops/Cgxdeba2"], ["https://tec.openplanner.team/stops/N117aya", "https://tec.openplanner.team/stops/N117aza"], ["https://tec.openplanner.team/stops/H4ry131b", "https://tec.openplanner.team/stops/H4ry132b"], ["https://tec.openplanner.team/stops/LWbregn1", "https://tec.openplanner.team/stops/X512abb"], ["https://tec.openplanner.team/stops/Cchcaya2", "https://tec.openplanner.team/stops/Cchdelf1"], ["https://tec.openplanner.team/stops/H3go102a", "https://tec.openplanner.team/stops/H3go102b"], ["https://tec.openplanner.team/stops/X721apa", "https://tec.openplanner.team/stops/X721apb"], ["https://tec.openplanner.team/stops/H4bi100b", "https://tec.openplanner.team/stops/H4pq114b"], ["https://tec.openplanner.team/stops/Bbgever1", "https://tec.openplanner.team/stops/Brsregl2"], ["https://tec.openplanner.team/stops/LeMdorf1", "https://tec.openplanner.team/stops/LhRandl2"], ["https://tec.openplanner.team/stops/X747aeb", "https://tec.openplanner.team/stops/X747akb"], ["https://tec.openplanner.team/stops/LbOkalv1", "https://tec.openplanner.team/stops/LbOvith2"], ["https://tec.openplanner.team/stops/N543cba", "https://tec.openplanner.team/stops/N543cbc"], ["https://tec.openplanner.team/stops/LSLfler1", "https://tec.openplanner.team/stops/LSLprov2"], ["https://tec.openplanner.team/stops/X833aca", "https://tec.openplanner.team/stops/X833acb"], ["https://tec.openplanner.team/stops/X601agb", "https://tec.openplanner.team/stops/X662asa"], ["https://tec.openplanner.team/stops/N501azb", "https://tec.openplanner.team/stops/N501cdc"], ["https://tec.openplanner.team/stops/N104aea", "https://tec.openplanner.team/stops/N118bba"], ["https://tec.openplanner.team/stops/LhPhale2", "https://tec.openplanner.team/stops/LvA30--1"], ["https://tec.openplanner.team/stops/Bdoncen2", "https://tec.openplanner.team/stops/Bjdsbro1"], ["https://tec.openplanner.team/stops/N211aga", "https://tec.openplanner.team/stops/N211agb"], ["https://tec.openplanner.team/stops/H4ch117a", "https://tec.openplanner.team/stops/H4ch118b"], ["https://tec.openplanner.team/stops/Cwgrans1", "https://tec.openplanner.team/stops/Cwgrans2"], ["https://tec.openplanner.team/stops/LmIvale1", "https://tec.openplanner.team/stops/LmIvale3"], ["https://tec.openplanner.team/stops/Barqhro1", "https://tec.openplanner.team/stops/Bfelada2"], ["https://tec.openplanner.team/stops/Bovecha1", "https://tec.openplanner.team/stops/Bwavcin1"], ["https://tec.openplanner.team/stops/Bcrngat1", "https://tec.openplanner.team/stops/Bcrnpla3"], ["https://tec.openplanner.team/stops/LFebas-2", "https://tec.openplanner.team/stops/LRIcent2"], ["https://tec.openplanner.team/stops/X801alb", "https://tec.openplanner.team/stops/X801cka"], ["https://tec.openplanner.team/stops/Bllncbr2", "https://tec.openplanner.team/stops/Bllnfeq1"], ["https://tec.openplanner.team/stops/Causart2", "https://tec.openplanner.team/stops/N543cqb"], ["https://tec.openplanner.team/stops/Llglys-1", "https://tec.openplanner.team/stops/Llgnaim2"], ["https://tec.openplanner.team/stops/N243aeb", "https://tec.openplanner.team/stops/N252aaa"], ["https://tec.openplanner.team/stops/LhSkape1", "https://tec.openplanner.team/stops/LhSkape2"], ["https://tec.openplanner.team/stops/Chhbiet1", "https://tec.openplanner.team/stops/Chhverr1"], ["https://tec.openplanner.team/stops/LBIpost1", "https://tec.openplanner.team/stops/Lghwass1"], ["https://tec.openplanner.team/stops/N118axa", "https://tec.openplanner.team/stops/N118bba"], ["https://tec.openplanner.team/stops/N538afb", "https://tec.openplanner.team/stops/N538awb"], ["https://tec.openplanner.team/stops/Bsoihci2", "https://tec.openplanner.team/stops/H3so175a"], ["https://tec.openplanner.team/stops/NL80aib", "https://tec.openplanner.team/stops/NL80aua"], ["https://tec.openplanner.team/stops/LHYec--2", "https://tec.openplanner.team/stops/LHYlinc2"], ["https://tec.openplanner.team/stops/Cchviad2", "https://tec.openplanner.team/stops/CMpige2"], ["https://tec.openplanner.team/stops/Bbsgbos3", "https://tec.openplanner.team/stops/Bbsgfva2"], ["https://tec.openplanner.team/stops/H5pe139b", "https://tec.openplanner.team/stops/H5pe152a"], ["https://tec.openplanner.team/stops/X801bja", "https://tec.openplanner.team/stops/X801cja"], ["https://tec.openplanner.team/stops/H2ll178a", "https://tec.openplanner.team/stops/H2ll187c"], ["https://tec.openplanner.team/stops/Lsmeg--1", "https://tec.openplanner.team/stops/Lsmpost1"], ["https://tec.openplanner.team/stops/Brsgfbl3", "https://tec.openplanner.team/stops/Brsgfbl4"], ["https://tec.openplanner.team/stops/H4mv188a", "https://tec.openplanner.team/stops/H4mv188b"], ["https://tec.openplanner.team/stops/Lhracec1", "https://tec.openplanner.team/stops/Lhrwigi2"], ["https://tec.openplanner.team/stops/H4ga149a", "https://tec.openplanner.team/stops/H4ga155a"], ["https://tec.openplanner.team/stops/LmAaldr2", "https://tec.openplanner.team/stops/X792abb"], ["https://tec.openplanner.team/stops/H1do111a", "https://tec.openplanner.team/stops/H1do114b"], ["https://tec.openplanner.team/stops/LVNleco1", "https://tec.openplanner.team/stops/LWDplac2"], ["https://tec.openplanner.team/stops/N501gma", "https://tec.openplanner.team/stops/N501lca"], ["https://tec.openplanner.team/stops/LmNelis1", "https://tec.openplanner.team/stops/LsC216-2"], ["https://tec.openplanner.team/stops/Creespi1", "https://tec.openplanner.team/stops/Crewaha1"], ["https://tec.openplanner.team/stops/H5bs104b", "https://tec.openplanner.team/stops/H5pe145b"], ["https://tec.openplanner.team/stops/H1fa118a", "https://tec.openplanner.team/stops/H1pe132a"], ["https://tec.openplanner.team/stops/Lhr1ave2", "https://tec.openplanner.team/stops/Lhrrhee*"], ["https://tec.openplanner.team/stops/Bcbqcht1", "https://tec.openplanner.team/stops/Bcbqh451"], ["https://tec.openplanner.team/stops/LAmeclu2", "https://tec.openplanner.team/stops/LHUzoni3"], ["https://tec.openplanner.team/stops/LHGvill1", "https://tec.openplanner.team/stops/LVllieg1"], ["https://tec.openplanner.team/stops/N543anh", "https://tec.openplanner.team/stops/N543avg"], ["https://tec.openplanner.team/stops/X342afb", "https://tec.openplanner.team/stops/X361aaa"], ["https://tec.openplanner.team/stops/N513asa", "https://tec.openplanner.team/stops/N514aja"], ["https://tec.openplanner.team/stops/Lgrdeni2", "https://tec.openplanner.team/stops/Lgrside2"], ["https://tec.openplanner.team/stops/H4th139a", "https://tec.openplanner.team/stops/H4th140a"], ["https://tec.openplanner.team/stops/Botteco2", "https://tec.openplanner.team/stops/Bottvtc2"], ["https://tec.openplanner.team/stops/Bettars1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/LSogare1", "https://tec.openplanner.team/stops/LSokrin1"], ["https://tec.openplanner.team/stops/Lghwass1", "https://tec.openplanner.team/stops/Lghwass2"], ["https://tec.openplanner.team/stops/Bperrsr1", "https://tec.openplanner.team/stops/Bperrsr2"], ["https://tec.openplanner.team/stops/Lfhborg1", "https://tec.openplanner.team/stops/Lfhborg2"], ["https://tec.openplanner.team/stops/Bnil3fo1", "https://tec.openplanner.team/stops/Bnil3fo2"], ["https://tec.openplanner.team/stops/N513aab", "https://tec.openplanner.team/stops/N521ata"], ["https://tec.openplanner.team/stops/N516ahb", "https://tec.openplanner.team/stops/N516apa"], ["https://tec.openplanner.team/stops/N311ada", "https://tec.openplanner.team/stops/N311afb"], ["https://tec.openplanner.team/stops/Cchlefe2", "https://tec.openplanner.team/stops/CMsama1"], ["https://tec.openplanner.team/stops/LFHsucr2", "https://tec.openplanner.team/stops/LNvrout1"], ["https://tec.openplanner.team/stops/H1hr115a", "https://tec.openplanner.team/stops/H1hr128c"], ["https://tec.openplanner.team/stops/Cchparc1", "https://tec.openplanner.team/stops/Cchprun2"], ["https://tec.openplanner.team/stops/H4wn126a", "https://tec.openplanner.team/stops/H4wn129a"], ["https://tec.openplanner.team/stops/H4pp122a", "https://tec.openplanner.team/stops/H4ve134b"], ["https://tec.openplanner.team/stops/H4lz118a", "https://tec.openplanner.team/stops/H4pi131a"], ["https://tec.openplanner.team/stops/LCleg--1", "https://tec.openplanner.team/stops/LThnouv2"], ["https://tec.openplanner.team/stops/Cmmegli3", "https://tec.openplanner.team/stops/Cmmplac3"], ["https://tec.openplanner.team/stops/Cgxmorg2", "https://tec.openplanner.team/stops/Cmoecol2"], ["https://tec.openplanner.team/stops/Crecouc1", "https://tec.openplanner.team/stops/Crehout2"], ["https://tec.openplanner.team/stops/X768aca", "https://tec.openplanner.team/stops/X769aqa"], ["https://tec.openplanner.team/stops/X784abb", "https://tec.openplanner.team/stops/X784aja"], ["https://tec.openplanner.team/stops/Brebhos1", "https://tec.openplanner.team/stops/Brebvic1"], ["https://tec.openplanner.team/stops/H2ll192a", "https://tec.openplanner.team/stops/H2ll267a"], ["https://tec.openplanner.team/stops/LBmbara1", "https://tec.openplanner.team/stops/LHcaube1"], ["https://tec.openplanner.team/stops/Lghhaut2", "https://tec.openplanner.team/stops/Lghlogi1"], ["https://tec.openplanner.team/stops/H4gu108a", "https://tec.openplanner.team/stops/H4gu108b"], ["https://tec.openplanner.team/stops/X649acb", "https://tec.openplanner.team/stops/X671agb"], ["https://tec.openplanner.team/stops/X615acb", "https://tec.openplanner.team/stops/X681aca"], ["https://tec.openplanner.team/stops/Bdonlat1", "https://tec.openplanner.team/stops/Blthvil1"], ["https://tec.openplanner.team/stops/N109ada", "https://tec.openplanner.team/stops/N109adc"], ["https://tec.openplanner.team/stops/X896aba", "https://tec.openplanner.team/stops/X896abb"], ["https://tec.openplanner.team/stops/Landolh2", "https://tec.openplanner.team/stops/Lanhoud2"], ["https://tec.openplanner.team/stops/Cchvil21", "https://tec.openplanner.team/stops/Cchvil22"], ["https://tec.openplanner.team/stops/X922aka", "https://tec.openplanner.team/stops/X922ala"], ["https://tec.openplanner.team/stops/X764aab", "https://tec.openplanner.team/stops/X764agb"], ["https://tec.openplanner.team/stops/N145ada", "https://tec.openplanner.team/stops/N145aec"], ["https://tec.openplanner.team/stops/N501hqa", "https://tec.openplanner.team/stops/N501ifa"], ["https://tec.openplanner.team/stops/LOLrafh2", "https://tec.openplanner.team/stops/LSOtrou1"], ["https://tec.openplanner.team/stops/X659afa", "https://tec.openplanner.team/stops/X659ana"], ["https://tec.openplanner.team/stops/LHHecol1", "https://tec.openplanner.team/stops/LHHtill1"], ["https://tec.openplanner.team/stops/LMoeg--1", "https://tec.openplanner.team/stops/LMovieu1"], ["https://tec.openplanner.team/stops/Cjugohi1", "https://tec.openplanner.team/stops/Cjugohi4"], ["https://tec.openplanner.team/stops/Cauglac1", "https://tec.openplanner.team/stops/N543cbc"], ["https://tec.openplanner.team/stops/Bpechos1", "https://tec.openplanner.team/stops/Bpecvme1"], ["https://tec.openplanner.team/stops/Bnivpar1", "https://tec.openplanner.team/stops/Bnivpba2"], ["https://tec.openplanner.team/stops/Cobhaut1", "https://tec.openplanner.team/stops/Cobhaut2"], ["https://tec.openplanner.team/stops/X601bfa", "https://tec.openplanner.team/stops/X601bga"], ["https://tec.openplanner.team/stops/Cjupllo2", "https://tec.openplanner.team/stops/Clostan2"], ["https://tec.openplanner.team/stops/Cmchai1", "https://tec.openplanner.team/stops/Cmivert2"], ["https://tec.openplanner.team/stops/Llgsnap3", "https://tec.openplanner.team/stops/Llgsnap5"], ["https://tec.openplanner.team/stops/X750apa", "https://tec.openplanner.team/stops/X750apb"], ["https://tec.openplanner.team/stops/LTIchev1", "https://tec.openplanner.team/stops/LTIsain2"], ["https://tec.openplanner.team/stops/Bgembhe1", "https://tec.openplanner.team/stops/N541acb"], ["https://tec.openplanner.team/stops/LFMveur1", "https://tec.openplanner.team/stops/LFMveur2"], ["https://tec.openplanner.team/stops/LGDgdou1", "https://tec.openplanner.team/stops/LWLhagi2"], ["https://tec.openplanner.team/stops/N584aca", "https://tec.openplanner.team/stops/N584aqa"], ["https://tec.openplanner.team/stops/Lghsimo2", "https://tec.openplanner.team/stops/Lmolagu2"], ["https://tec.openplanner.team/stops/LPLcarr2", "https://tec.openplanner.team/stops/LPLcroi2"], ["https://tec.openplanner.team/stops/H4ae101a", "https://tec.openplanner.team/stops/H4ef113a"], ["https://tec.openplanner.team/stops/H4og207a", "https://tec.openplanner.team/stops/H4vd230b"], ["https://tec.openplanner.team/stops/X597anb", "https://tec.openplanner.team/stops/X597aob"], ["https://tec.openplanner.team/stops/Bspkker1", "https://tec.openplanner.team/stops/H1mk110b"], ["https://tec.openplanner.team/stops/Lbemc--2", "https://tec.openplanner.team/stops/Lsweg--1"], ["https://tec.openplanner.team/stops/X661aib", "https://tec.openplanner.team/stops/X661ara"], ["https://tec.openplanner.team/stops/X801apa", "https://tec.openplanner.team/stops/X801cka"], ["https://tec.openplanner.team/stops/N230aga", "https://tec.openplanner.team/stops/N540abb"], ["https://tec.openplanner.team/stops/Cflglav2", "https://tec.openplanner.team/stops/Cflpost1"], ["https://tec.openplanner.team/stops/Cmosaba2", "https://tec.openplanner.team/stops/Cmosaba4"], ["https://tec.openplanner.team/stops/X898agb", "https://tec.openplanner.team/stops/X898aha"], ["https://tec.openplanner.team/stops/LLrbuis1", "https://tec.openplanner.team/stops/LLrfagn1"], ["https://tec.openplanner.team/stops/Bincegl1", "https://tec.openplanner.team/stops/Binclib1"], ["https://tec.openplanner.team/stops/Cdaptca1", "https://tec.openplanner.team/stops/CMdamp1"], ["https://tec.openplanner.team/stops/LWAmouh1", "https://tec.openplanner.team/stops/LWAmouh2"], ["https://tec.openplanner.team/stops/N501fra", "https://tec.openplanner.team/stops/N501hfb"], ["https://tec.openplanner.team/stops/Cbzfrom1", "https://tec.openplanner.team/stops/Creoudo2"], ["https://tec.openplanner.team/stops/X663asa", "https://tec.openplanner.team/stops/X663ata"], ["https://tec.openplanner.team/stops/N506awa", "https://tec.openplanner.team/stops/N506bod"], ["https://tec.openplanner.team/stops/LSAchef1", "https://tec.openplanner.team/stops/LSAmous1"], ["https://tec.openplanner.team/stops/X666agb", "https://tec.openplanner.team/stops/X666ahb"], ["https://tec.openplanner.team/stops/X873aaa", "https://tec.openplanner.team/stops/X873aab"], ["https://tec.openplanner.team/stops/Cpcwaut1", "https://tec.openplanner.team/stops/Cpcwaut2"], ["https://tec.openplanner.team/stops/N201aca", "https://tec.openplanner.team/stops/N201ada"], ["https://tec.openplanner.team/stops/LlOpfar1", "https://tec.openplanner.team/stops/LsTgren2"], ["https://tec.openplanner.team/stops/X605abb", "https://tec.openplanner.team/stops/X605aga"], ["https://tec.openplanner.team/stops/Bhmmbog1", "https://tec.openplanner.team/stops/Btlgmee1"], ["https://tec.openplanner.team/stops/X618ada", "https://tec.openplanner.team/stops/X618alb"], ["https://tec.openplanner.team/stops/Bcbqcim1", "https://tec.openplanner.team/stops/Bcbqp252"], ["https://tec.openplanner.team/stops/H2bh108b", "https://tec.openplanner.team/stops/H2bh118a"], ["https://tec.openplanner.team/stops/LBiroch1", "https://tec.openplanner.team/stops/LDOviad2"], ["https://tec.openplanner.team/stops/Cfrcoqu2", "https://tec.openplanner.team/stops/Cfrfede2"], ["https://tec.openplanner.team/stops/H4lp121a", "https://tec.openplanner.team/stops/H4lp123a"], ["https://tec.openplanner.team/stops/H1cu108a", "https://tec.openplanner.team/stops/H1ms247b"], ["https://tec.openplanner.team/stops/H2ep144a", "https://tec.openplanner.team/stops/H2re168a"], ["https://tec.openplanner.team/stops/H4br107a", "https://tec.openplanner.team/stops/H4br107b"], ["https://tec.openplanner.team/stops/LWAgare*", "https://tec.openplanner.team/stops/LWAlong5"], ["https://tec.openplanner.team/stops/LlA43--2", "https://tec.openplanner.team/stops/LlAdorf1"], ["https://tec.openplanner.team/stops/N510acf", "https://tec.openplanner.team/stops/N513acb"], ["https://tec.openplanner.team/stops/N538afa", "https://tec.openplanner.team/stops/N538afb"], ["https://tec.openplanner.team/stops/Cmcbriq1", "https://tec.openplanner.team/stops/Cmcbriq2"], ["https://tec.openplanner.team/stops/N560aaa", "https://tec.openplanner.team/stops/N560aab"], ["https://tec.openplanner.team/stops/Cmcegli2", "https://tec.openplanner.team/stops/Csysans2"], ["https://tec.openplanner.team/stops/LClange1", "https://tec.openplanner.team/stops/LFdbruy1"], ["https://tec.openplanner.team/stops/LAivill1", "https://tec.openplanner.team/stops/LENgend1"], ["https://tec.openplanner.team/stops/X791aaa", "https://tec.openplanner.team/stops/X791aab"], ["https://tec.openplanner.team/stops/Bixleix1", "https://tec.openplanner.team/stops/Bixleix2"], ["https://tec.openplanner.team/stops/LMIterr1", "https://tec.openplanner.team/stops/LMIterr2"], ["https://tec.openplanner.team/stops/Ldimeun1", "https://tec.openplanner.team/stops/Ldimeun2"], ["https://tec.openplanner.team/stops/N506ava", "https://tec.openplanner.team/stops/N506bab"], ["https://tec.openplanner.team/stops/Lougros2", "https://tec.openplanner.team/stops/Lstbold2"], ["https://tec.openplanner.team/stops/Lcalaro1", "https://tec.openplanner.team/stops/Lcapisc2"], ["https://tec.openplanner.team/stops/Brebcha2", "https://tec.openplanner.team/stops/Brebras1"], ["https://tec.openplanner.team/stops/Bjodpvi1", "https://tec.openplanner.team/stops/Bjodsje2"], ["https://tec.openplanner.team/stops/LCPgare1", "https://tec.openplanner.team/stops/LCPpech2"], ["https://tec.openplanner.team/stops/LBDtill2", "https://tec.openplanner.team/stops/LVEbors2"], ["https://tec.openplanner.team/stops/X613ada", "https://tec.openplanner.team/stops/X614bda"], ["https://tec.openplanner.team/stops/Cmamons1", "https://tec.openplanner.team/stops/Cmareun2"], ["https://tec.openplanner.team/stops/X880agb", "https://tec.openplanner.team/stops/X880agd"], ["https://tec.openplanner.team/stops/Cradado1", "https://tec.openplanner.team/stops/Cradado2"], ["https://tec.openplanner.team/stops/Lchsa631", "https://tec.openplanner.team/stops/Lrahoig2"], ["https://tec.openplanner.team/stops/N423aea", "https://tec.openplanner.team/stops/NH21aea"], ["https://tec.openplanner.team/stops/X752aca", "https://tec.openplanner.team/stops/X758aga"], ["https://tec.openplanner.team/stops/LBPeg--2", "https://tec.openplanner.team/stops/LBPxhav2"], ["https://tec.openplanner.team/stops/N310aaa", "https://tec.openplanner.team/stops/N312adb"], ["https://tec.openplanner.team/stops/Bmasegl2", "https://tec.openplanner.team/stops/NB33ahb"], ["https://tec.openplanner.team/stops/N501bmb", "https://tec.openplanner.team/stops/N501bub"], ["https://tec.openplanner.team/stops/Bhlvgar2", "https://tec.openplanner.team/stops/Blpghou2"], ["https://tec.openplanner.team/stops/N894aab", "https://tec.openplanner.team/stops/N894aca"], ["https://tec.openplanner.team/stops/X982asb", "https://tec.openplanner.team/stops/X982awa"], ["https://tec.openplanner.team/stops/Ccunove1", "https://tec.openplanner.team/stops/Ccupres1"], ["https://tec.openplanner.team/stops/X869aab", "https://tec.openplanner.team/stops/X869aba"], ["https://tec.openplanner.team/stops/Lbrcard2", "https://tec.openplanner.team/stops/Lbrfusi2"], ["https://tec.openplanner.team/stops/N548aaa", "https://tec.openplanner.team/stops/N548acb"], ["https://tec.openplanner.team/stops/X926aeb", "https://tec.openplanner.team/stops/X926afa"], ["https://tec.openplanner.team/stops/H4ce103a", "https://tec.openplanner.team/stops/H4ve140a"], ["https://tec.openplanner.team/stops/X758ahb", "https://tec.openplanner.team/stops/X840acb"], ["https://tec.openplanner.team/stops/Loucoti2", "https://tec.openplanner.team/stops/Louvira2"], ["https://tec.openplanner.team/stops/LGLeg--2", "https://tec.openplanner.team/stops/LGLgare*"], ["https://tec.openplanner.team/stops/H1al107a", "https://tec.openplanner.team/stops/H1bs111a"], ["https://tec.openplanner.team/stops/N343ajb", "https://tec.openplanner.team/stops/N343aoa"], ["https://tec.openplanner.team/stops/LHgroso2", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://tec.openplanner.team/stops/X640aea", "https://tec.openplanner.team/stops/X640aeb"], ["https://tec.openplanner.team/stops/H1eq115b", "https://tec.openplanner.team/stops/H1eq116a"], ["https://tec.openplanner.team/stops/Ladandr1", "https://tec.openplanner.team/stops/Ladjaur2"], ["https://tec.openplanner.team/stops/Lsemaqu1", "https://tec.openplanner.team/stops/Lsepcha4"], ["https://tec.openplanner.team/stops/LCRecmo1", "https://tec.openplanner.team/stops/LCRfize2"], ["https://tec.openplanner.team/stops/N110aca", "https://tec.openplanner.team/stops/N110ada"], ["https://tec.openplanner.team/stops/H1te183b", "https://tec.openplanner.team/stops/H1te188b"], ["https://tec.openplanner.team/stops/H4fl114a", "https://tec.openplanner.team/stops/H4wi175a"], ["https://tec.openplanner.team/stops/LOumaro1", "https://tec.openplanner.team/stops/LTaabba1"], ["https://tec.openplanner.team/stops/H4ef110b", "https://tec.openplanner.team/stops/H4ef112a"], ["https://tec.openplanner.team/stops/Ccojaur1", "https://tec.openplanner.team/stops/Ccotrie4"], ["https://tec.openplanner.team/stops/LSImewi1", "https://tec.openplanner.team/stops/LSIroch2"], ["https://tec.openplanner.team/stops/Btslcel1", "https://tec.openplanner.team/stops/Bwlhcsr1"], ["https://tec.openplanner.team/stops/H2lh125b", "https://tec.openplanner.team/stops/H2mm144b"], ["https://tec.openplanner.team/stops/LTRoasi1", "https://tec.openplanner.team/stops/LTRthie2"], ["https://tec.openplanner.team/stops/LWNbeto1", "https://tec.openplanner.team/stops/LWNfani2"], ["https://tec.openplanner.team/stops/N536abb", "https://tec.openplanner.team/stops/N536aea"], ["https://tec.openplanner.team/stops/H1em110a", "https://tec.openplanner.team/stops/H1hl123b"], ["https://tec.openplanner.team/stops/Cjudelv4", "https://tec.openplanner.team/stops/Cjumade4"], ["https://tec.openplanner.team/stops/LVPcrok1", "https://tec.openplanner.team/stops/LVPgrot4"], ["https://tec.openplanner.team/stops/Ljudeme4", "https://tec.openplanner.team/stops/Llgchan2"], ["https://tec.openplanner.team/stops/N577afb", "https://tec.openplanner.team/stops/N577akb"], ["https://tec.openplanner.team/stops/H1mj125a", "https://tec.openplanner.team/stops/H1mj129b"], ["https://tec.openplanner.team/stops/Lghcfer2", "https://tec.openplanner.team/stops/Lghviad2"], ["https://tec.openplanner.team/stops/Cjxdesc1", "https://tec.openplanner.team/stops/Cjxdesc2"], ["https://tec.openplanner.team/stops/H2hg269b", "https://tec.openplanner.team/stops/H2mi123b"], ["https://tec.openplanner.team/stops/N426afa", "https://tec.openplanner.team/stops/N426afb"], ["https://tec.openplanner.team/stops/Bmartil1", "https://tec.openplanner.team/stops/Csachas2"], ["https://tec.openplanner.team/stops/N535acc", "https://tec.openplanner.team/stops/N535afa"], ["https://tec.openplanner.team/stops/Cthha501", "https://tec.openplanner.team/stops/Cthrpoi1"], ["https://tec.openplanner.team/stops/N501kjb", "https://tec.openplanner.team/stops/N538aqa"], ["https://tec.openplanner.team/stops/Bwatali1", "https://tec.openplanner.team/stops/Bwatpas2"], ["https://tec.openplanner.team/stops/H1gh143b", "https://tec.openplanner.team/stops/H1gh171a"], ["https://tec.openplanner.team/stops/H1vt192a", "https://tec.openplanner.team/stops/H1vt193a"], ["https://tec.openplanner.team/stops/NR38aca", "https://tec.openplanner.team/stops/NR38afa"], ["https://tec.openplanner.team/stops/Bsamegl2", "https://tec.openplanner.team/stops/NC12aab"], ["https://tec.openplanner.team/stops/LVMchpl1", "https://tec.openplanner.team/stops/LVMfoli1"], ["https://tec.openplanner.team/stops/X921agb", "https://tec.openplanner.team/stops/X921ajc"], ["https://tec.openplanner.team/stops/Ccuoise2", "https://tec.openplanner.team/stops/Ccuphai4"], ["https://tec.openplanner.team/stops/X616ada", "https://tec.openplanner.team/stops/X616aea"], ["https://tec.openplanner.team/stops/N526aea", "https://tec.openplanner.team/stops/N527aba"], ["https://tec.openplanner.team/stops/Bwatnrs1", "https://tec.openplanner.team/stops/Bwatppa2"], ["https://tec.openplanner.team/stops/Cfacamp1", "https://tec.openplanner.team/stops/Cfaheni1"], ["https://tec.openplanner.team/stops/H1ms273a", "https://tec.openplanner.team/stops/H1ms285a"], ["https://tec.openplanner.team/stops/Lhrathe1", "https://tec.openplanner.team/stops/Lhrathe2"], ["https://tec.openplanner.team/stops/X902ana", "https://tec.openplanner.team/stops/X902anb"], ["https://tec.openplanner.team/stops/LWaccom2", "https://tec.openplanner.team/stops/LWLtamb1"], ["https://tec.openplanner.team/stops/LCAwals1", "https://tec.openplanner.team/stops/LCAwals2"], ["https://tec.openplanner.team/stops/N117asa", "https://tec.openplanner.team/stops/N117asb"], ["https://tec.openplanner.team/stops/Cjuchli1", "https://tec.openplanner.team/stops/Cjuchli3"], ["https://tec.openplanner.team/stops/N539aha", "https://tec.openplanner.team/stops/N539asb"], ["https://tec.openplanner.team/stops/Cfocobe2", "https://tec.openplanner.team/stops/Cforpet1"], ["https://tec.openplanner.team/stops/LMomonc2", "https://tec.openplanner.team/stops/LMoviel1"], ["https://tec.openplanner.team/stops/X882aca", "https://tec.openplanner.team/stops/X882ahb"], ["https://tec.openplanner.team/stops/LGeduc-1", "https://tec.openplanner.team/stops/LGepeck2"], ["https://tec.openplanner.team/stops/X747aab", "https://tec.openplanner.team/stops/X754aka"], ["https://tec.openplanner.team/stops/Cjumade0", "https://tec.openplanner.team/stops/CMcarr1"], ["https://tec.openplanner.team/stops/LORruis1", "https://tec.openplanner.team/stops/LORvill2"], ["https://tec.openplanner.team/stops/LHUlebe0", "https://tec.openplanner.team/stops/LHUlebe8"], ["https://tec.openplanner.team/stops/H1ms271b", "https://tec.openplanner.team/stops/H1ms313a"], ["https://tec.openplanner.team/stops/Bbsicen2", "https://tec.openplanner.team/stops/Bnivlpa1"], ["https://tec.openplanner.team/stops/H4er121a", "https://tec.openplanner.team/stops/H4er125a"], ["https://tec.openplanner.team/stops/LHDchar3", "https://tec.openplanner.team/stops/LLmvict1"], ["https://tec.openplanner.team/stops/N501hfb", "https://tec.openplanner.team/stops/N501lcb"], ["https://tec.openplanner.team/stops/N501hub", "https://tec.openplanner.team/stops/N501hya"], ["https://tec.openplanner.team/stops/H4ta128a", "https://tec.openplanner.team/stops/H4ta133b"], ["https://tec.openplanner.team/stops/LESgran1", "https://tec.openplanner.team/stops/LFNfo161"], ["https://tec.openplanner.team/stops/X746aca", "https://tec.openplanner.team/stops/X746adb"], ["https://tec.openplanner.team/stops/H4fl114a", "https://tec.openplanner.team/stops/H4mg139b"], ["https://tec.openplanner.team/stops/H5st166b", "https://tec.openplanner.team/stops/H5st167b"], ["https://tec.openplanner.team/stops/H1bn113b", "https://tec.openplanner.team/stops/H1bn114a"], ["https://tec.openplanner.team/stops/H4bo179b", "https://tec.openplanner.team/stops/H4gr110a"], ["https://tec.openplanner.team/stops/LTHcime2", "https://tec.openplanner.team/stops/LTHmont1"], ["https://tec.openplanner.team/stops/Chpchea1", "https://tec.openplanner.team/stops/Cwgplac2"], ["https://tec.openplanner.team/stops/LHolexh1", "https://tec.openplanner.team/stops/LHovill1"], ["https://tec.openplanner.team/stops/H2ha128a", "https://tec.openplanner.team/stops/H2hg146a"], ["https://tec.openplanner.team/stops/Cflmarc2", "https://tec.openplanner.team/stops/Cflpost1"], ["https://tec.openplanner.team/stops/N505aab", "https://tec.openplanner.team/stops/N505ada"], ["https://tec.openplanner.team/stops/H4do102b", "https://tec.openplanner.team/stops/H4do107c"], ["https://tec.openplanner.team/stops/N143aca", "https://tec.openplanner.team/stops/N143acb"], ["https://tec.openplanner.team/stops/X910aab", "https://tec.openplanner.team/stops/X910aba"], ["https://tec.openplanner.team/stops/LeLgrie1", "https://tec.openplanner.team/stops/LnIfrie1"], ["https://tec.openplanner.team/stops/Cmmschw1", "https://tec.openplanner.team/stops/Cmmserv2"], ["https://tec.openplanner.team/stops/Lhuderu2", "https://tec.openplanner.team/stops/Lhutill1"], ["https://tec.openplanner.team/stops/N124aaa", "https://tec.openplanner.team/stops/N124acb"], ["https://tec.openplanner.team/stops/H4wt159b", "https://tec.openplanner.team/stops/H5rx103b"], ["https://tec.openplanner.team/stops/LBWbatt1", "https://tec.openplanner.team/stops/LBWviad2"], ["https://tec.openplanner.team/stops/N517aab", "https://tec.openplanner.team/stops/N517aga"], ["https://tec.openplanner.team/stops/NL76ada", "https://tec.openplanner.team/stops/NL76asa"], ["https://tec.openplanner.team/stops/H5at128a", "https://tec.openplanner.team/stops/H5ma186b"], ["https://tec.openplanner.team/stops/LWAlong3", "https://tec.openplanner.team/stops/LWAlong5"], ["https://tec.openplanner.team/stops/Bmarpla2", "https://tec.openplanner.team/stops/Bvlvmar2"], ["https://tec.openplanner.team/stops/LbAhenk2", "https://tec.openplanner.team/stops/LmNsied2"], ["https://tec.openplanner.team/stops/N245aca", "https://tec.openplanner.team/stops/N287ada"], ["https://tec.openplanner.team/stops/N519aga", "https://tec.openplanner.team/stops/N519aob"], ["https://tec.openplanner.team/stops/X880aea", "https://tec.openplanner.team/stops/X880afb"], ["https://tec.openplanner.team/stops/N501imb", "https://tec.openplanner.team/stops/N501nbb"], ["https://tec.openplanner.team/stops/H4to134a", "https://tec.openplanner.team/stops/H4to135b"], ["https://tec.openplanner.team/stops/N501gra", "https://tec.openplanner.team/stops/N501grb"], ["https://tec.openplanner.team/stops/LPOthom2", "https://tec.openplanner.team/stops/LSdbvue2"], ["https://tec.openplanner.team/stops/Lpeptle1", "https://tec.openplanner.team/stops/Lpeptle2"], ["https://tec.openplanner.team/stops/Lsebrun1", "https://tec.openplanner.team/stops/Lsebrun2"], ["https://tec.openplanner.team/stops/LCxeg--1", "https://tec.openplanner.team/stops/LCxfawe2"], ["https://tec.openplanner.team/stops/Cnathib1", "https://tec.openplanner.team/stops/Cnathib2"], ["https://tec.openplanner.team/stops/LLOcreu1", "https://tec.openplanner.team/stops/LLOcreu2"], ["https://tec.openplanner.team/stops/N217acd", "https://tec.openplanner.team/stops/N337aib"], ["https://tec.openplanner.team/stops/X762afa", "https://tec.openplanner.team/stops/X764afb"], ["https://tec.openplanner.team/stops/X780adb", "https://tec.openplanner.team/stops/X780akb"], ["https://tec.openplanner.team/stops/H2bh110a", "https://tec.openplanner.team/stops/H2bh118b"], ["https://tec.openplanner.team/stops/LFTcroi3", "https://tec.openplanner.team/stops/LFTeg--1"], ["https://tec.openplanner.team/stops/H4ty269a", "https://tec.openplanner.team/stops/H4ty382b"], ["https://tec.openplanner.team/stops/LmI129-1", "https://tec.openplanner.team/stops/LmRmuhl1"], ["https://tec.openplanner.team/stops/LORec--*", "https://tec.openplanner.team/stops/LORhorp1"], ["https://tec.openplanner.team/stops/H1cd110a", "https://tec.openplanner.team/stops/H1ne145b"], ["https://tec.openplanner.team/stops/LBRgare1", "https://tec.openplanner.team/stops/LBRpt--1"], ["https://tec.openplanner.team/stops/X663ara", "https://tec.openplanner.team/stops/X663awb"], ["https://tec.openplanner.team/stops/H1bb118a", "https://tec.openplanner.team/stops/H1bb118b"], ["https://tec.openplanner.team/stops/H4we134b", "https://tec.openplanner.team/stops/H4we138a"], ["https://tec.openplanner.team/stops/N501bzb", "https://tec.openplanner.team/stops/N521aua"], ["https://tec.openplanner.team/stops/X658aeb", "https://tec.openplanner.team/stops/X658ahb"], ["https://tec.openplanner.team/stops/Bkrapri2", "https://tec.openplanner.team/stops/Bwolkra1"], ["https://tec.openplanner.team/stops/LFHjamo2", "https://tec.openplanner.team/stops/LVGeg--2"], ["https://tec.openplanner.team/stops/LmNkirc1", "https://tec.openplanner.team/stops/LmNstaa1"], ["https://tec.openplanner.team/stops/LHUbail1", "https://tec.openplanner.team/stops/LHUhsar1"], ["https://tec.openplanner.team/stops/Lagcler1", "https://tec.openplanner.team/stops/Lagstre1"], ["https://tec.openplanner.team/stops/N576aca", "https://tec.openplanner.team/stops/N576akd"], ["https://tec.openplanner.team/stops/X804aqa", "https://tec.openplanner.team/stops/X804bab"], ["https://tec.openplanner.team/stops/Cmmcver1", "https://tec.openplanner.team/stops/Cmmecol2"], ["https://tec.openplanner.team/stops/LBiberg1", "https://tec.openplanner.team/stops/LBivi--2"], ["https://tec.openplanner.team/stops/X561aab", "https://tec.openplanner.team/stops/X561aeb"], ["https://tec.openplanner.team/stops/H4an107a", "https://tec.openplanner.team/stops/H4an107b"], ["https://tec.openplanner.team/stops/Cjuheig1", "https://tec.openplanner.team/stops/Crowall2"], ["https://tec.openplanner.team/stops/N501fdc", "https://tec.openplanner.team/stops/N501fdd"], ["https://tec.openplanner.team/stops/Clooues1", "https://tec.openplanner.team/stops/Clooues2"], ["https://tec.openplanner.team/stops/X608acb", "https://tec.openplanner.team/stops/X608ada"], ["https://tec.openplanner.team/stops/H1ba120b", "https://tec.openplanner.team/stops/H1gh371b"], ["https://tec.openplanner.team/stops/LBNpleg1", "https://tec.openplanner.team/stops/LBNvill6"], ["https://tec.openplanner.team/stops/Bbiemse1", "https://tec.openplanner.team/stops/Bgzdfpo2"], ["https://tec.openplanner.team/stops/X822akb", "https://tec.openplanner.team/stops/X822arb"], ["https://tec.openplanner.team/stops/LHUhsar2", "https://tec.openplanner.team/stops/NL76bca"], ["https://tec.openplanner.team/stops/NL30afa", "https://tec.openplanner.team/stops/NL30afb"], ["https://tec.openplanner.team/stops/X614ana", "https://tec.openplanner.team/stops/X614anb"], ["https://tec.openplanner.team/stops/LLz21--1", "https://tec.openplanner.team/stops/LSTchen1"], ["https://tec.openplanner.team/stops/Beclpma1", "https://tec.openplanner.team/stops/H2ec106b"], ["https://tec.openplanner.team/stops/Bhmmbog1", "https://tec.openplanner.team/stops/Bhmmsca1"], ["https://tec.openplanner.team/stops/X904aba", "https://tec.openplanner.team/stops/X943agb"], ["https://tec.openplanner.team/stops/LHCponc3", "https://tec.openplanner.team/stops/LHCponc4"], ["https://tec.openplanner.team/stops/LWDhous1", "https://tec.openplanner.team/stops/LWDsieg2"], ["https://tec.openplanner.team/stops/LAOeg--2", "https://tec.openplanner.team/stops/LLStrid1"], ["https://tec.openplanner.team/stops/LLYpeup2", "https://tec.openplanner.team/stops/LLYplac1"], ["https://tec.openplanner.team/stops/LTgjalh1", "https://tec.openplanner.team/stops/LTgjalh2"], ["https://tec.openplanner.team/stops/Lcacaps2", "https://tec.openplanner.team/stops/Lcacasi1"], ["https://tec.openplanner.team/stops/H4rc231a", "https://tec.openplanner.team/stops/H4rc231c"], ["https://tec.openplanner.team/stops/H4bf106b", "https://tec.openplanner.team/stops/H4bf108b"], ["https://tec.openplanner.team/stops/X925aia", "https://tec.openplanner.team/stops/X925aib"], ["https://tec.openplanner.team/stops/LPAbour1", "https://tec.openplanner.team/stops/LPAmosa2"], ["https://tec.openplanner.team/stops/Lsechan1", "https://tec.openplanner.team/stops/Lsemaqu2"], ["https://tec.openplanner.team/stops/Lgdblom2", "https://tec.openplanner.team/stops/Lgdrena1"], ["https://tec.openplanner.team/stops/H4to139c", "https://tec.openplanner.team/stops/H4to139d"], ["https://tec.openplanner.team/stops/Bnivpba1", "https://tec.openplanner.team/stops/Bnivpba2"], ["https://tec.openplanner.team/stops/LLrbano2", "https://tec.openplanner.team/stops/LLrpape3"], ["https://tec.openplanner.team/stops/LTIp%C3%A9pi1", "https://tec.openplanner.team/stops/LTIp%C3%A9pi2"], ["https://tec.openplanner.team/stops/Bheneco2", "https://tec.openplanner.team/stops/Bhenron1"], ["https://tec.openplanner.team/stops/Cobcent2", "https://tec.openplanner.team/stops/Cobobjo2"], ["https://tec.openplanner.team/stops/LAMcime1", "https://tec.openplanner.team/stops/LAMfroi2"], ["https://tec.openplanner.team/stops/Bcrntru2", "https://tec.openplanner.team/stops/N529abb"], ["https://tec.openplanner.team/stops/Cmmami2", "https://tec.openplanner.team/stops/Cmmn1172"], ["https://tec.openplanner.team/stops/Blthbss2", "https://tec.openplanner.team/stops/Blthvil1"], ["https://tec.openplanner.team/stops/N501cyb", "https://tec.openplanner.team/stops/N528aga"], ["https://tec.openplanner.team/stops/Cclbarb1", "https://tec.openplanner.team/stops/Cstvape1"], ["https://tec.openplanner.team/stops/Bpergar3", "https://tec.openplanner.team/stops/Bperrma2"], ["https://tec.openplanner.team/stops/X602ala", "https://tec.openplanner.team/stops/X602ana"], ["https://tec.openplanner.team/stops/LLycent*", "https://tec.openplanner.team/stops/LXflong2"], ["https://tec.openplanner.team/stops/LKmcite2", "https://tec.openplanner.team/stops/LKmmelo1"], ["https://tec.openplanner.team/stops/Lmabott1", "https://tec.openplanner.team/stops/Lmabott2"], ["https://tec.openplanner.team/stops/N153aab", "https://tec.openplanner.team/stops/N153aea"], ["https://tec.openplanner.team/stops/N214aha", "https://tec.openplanner.team/stops/N214aia"], ["https://tec.openplanner.team/stops/X727afa", "https://tec.openplanner.team/stops/X748aca"], ["https://tec.openplanner.team/stops/Cmofosb2", "https://tec.openplanner.team/stops/Crorogn2"], ["https://tec.openplanner.team/stops/LhDkreu1", "https://tec.openplanner.team/stops/LmRh%C3%B6811"], ["https://tec.openplanner.team/stops/Cjucpui2", "https://tec.openplanner.team/stops/Cjugohi3"], ["https://tec.openplanner.team/stops/N519aka", "https://tec.openplanner.team/stops/N519akb"], ["https://tec.openplanner.team/stops/LBkjenn1", "https://tec.openplanner.team/stops/LWEfati1"], ["https://tec.openplanner.team/stops/H1eo105a", "https://tec.openplanner.team/stops/H1eo108b"], ["https://tec.openplanner.team/stops/LHdkenn1", "https://tec.openplanner.team/stops/LHdkenn3"], ["https://tec.openplanner.team/stops/Cfrmoul1", "https://tec.openplanner.team/stops/Cliegli2"], ["https://tec.openplanner.team/stops/LkEbran2", "https://tec.openplanner.team/stops/LMsbusc1"], ["https://tec.openplanner.team/stops/H4fa167a", "https://tec.openplanner.team/stops/H4fa167b"], ["https://tec.openplanner.team/stops/LTHcent2", "https://tec.openplanner.team/stops/LTHmaka2"], ["https://tec.openplanner.team/stops/H4ty319b", "https://tec.openplanner.team/stops/H4ty382a"], ["https://tec.openplanner.team/stops/LrAknop1", "https://tec.openplanner.team/stops/LrAknop2"], ["https://tec.openplanner.team/stops/N538aaa", "https://tec.openplanner.team/stops/N538ada"], ["https://tec.openplanner.team/stops/Lenvale1", "https://tec.openplanner.team/stops/Llmdavi2"], ["https://tec.openplanner.team/stops/LHFhard2", "https://tec.openplanner.team/stops/LJedonc1"], ["https://tec.openplanner.team/stops/H5wo127a", "https://tec.openplanner.team/stops/H5wo129b"], ["https://tec.openplanner.team/stops/X624ahb", "https://tec.openplanner.team/stops/X624ajb"], ["https://tec.openplanner.team/stops/LBBpech1", "https://tec.openplanner.team/stops/LCLscie2"], ["https://tec.openplanner.team/stops/LAMgreg1", "https://tec.openplanner.team/stops/LAMgreg2"], ["https://tec.openplanner.team/stops/Cfccabi1", "https://tec.openplanner.team/stops/Cfcpla1"], ["https://tec.openplanner.team/stops/H1fl141a", "https://tec.openplanner.team/stops/H1je221b"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Lanpont2"], ["https://tec.openplanner.team/stops/H1wa151a", "https://tec.openplanner.team/stops/H1wa155d"], ["https://tec.openplanner.team/stops/LCIcent1", "https://tec.openplanner.team/stops/LLtwanz2"], ["https://tec.openplanner.team/stops/Cmlpche2", "https://tec.openplanner.team/stops/Cmlpomm1"], ["https://tec.openplanner.team/stops/H1ob328b", "https://tec.openplanner.team/stops/H1ob336a"], ["https://tec.openplanner.team/stops/Cfmcoro2", "https://tec.openplanner.team/stops/Cfmpui82"], ["https://tec.openplanner.team/stops/N533amb", "https://tec.openplanner.team/stops/N533aoa"], ["https://tec.openplanner.team/stops/LFCscho1", "https://tec.openplanner.team/stops/LWRchem2"], ["https://tec.openplanner.team/stops/Ccugail1", "https://tec.openplanner.team/stops/Ccuwain2"], ["https://tec.openplanner.team/stops/NH01aab", "https://tec.openplanner.team/stops/NH01aba"], ["https://tec.openplanner.team/stops/Lchec--1", "https://tec.openplanner.team/stops/Lcheg--2"], ["https://tec.openplanner.team/stops/Cjxpris2", "https://tec.openplanner.team/stops/Cna4che2"], ["https://tec.openplanner.team/stops/LoDcorn1", "https://tec.openplanner.team/stops/LoDscha2"], ["https://tec.openplanner.team/stops/N576aaa", "https://tec.openplanner.team/stops/N576agb"], ["https://tec.openplanner.team/stops/H4rx176b", "https://tec.openplanner.team/stops/H4tf147a"], ["https://tec.openplanner.team/stops/LHUchpl1", "https://tec.openplanner.team/stops/LHUeuro1"], ["https://tec.openplanner.team/stops/Cmogrbu1", "https://tec.openplanner.team/stops/Cmonvci2"], ["https://tec.openplanner.team/stops/X725atb", "https://tec.openplanner.team/stops/X767aca"], ["https://tec.openplanner.team/stops/H4bo112a", "https://tec.openplanner.team/stops/H4bo118b"], ["https://tec.openplanner.team/stops/Clvorle1", "https://tec.openplanner.team/stops/Cmlbulp3"], ["https://tec.openplanner.team/stops/H2bh114a", "https://tec.openplanner.team/stops/H2bh114b"], ["https://tec.openplanner.team/stops/X601aoa", "https://tec.openplanner.team/stops/X601cea"], ["https://tec.openplanner.team/stops/Ljudeme2", "https://tec.openplanner.team/stops/Ljudeme4"], ["https://tec.openplanner.team/stops/Lghecol*", "https://tec.openplanner.team/stops/Lghpara1"], ["https://tec.openplanner.team/stops/X719aaa", "https://tec.openplanner.team/stops/X720aaa"], ["https://tec.openplanner.team/stops/Boveklo1", "https://tec.openplanner.team/stops/Bovepla2"], ["https://tec.openplanner.team/stops/H4de114b", "https://tec.openplanner.team/stops/H5rx125b"], ["https://tec.openplanner.team/stops/LCPgare1", "https://tec.openplanner.team/stops/LOncar-*"], ["https://tec.openplanner.team/stops/LREchal1", "https://tec.openplanner.team/stops/LREchal2"], ["https://tec.openplanner.team/stops/Lmohomv2", "https://tec.openplanner.team/stops/Lmojoan2"], ["https://tec.openplanner.team/stops/NL78ajb", "https://tec.openplanner.team/stops/NL78akb"], ["https://tec.openplanner.team/stops/Cchsud03", "https://tec.openplanner.team/stops/Cmlgoff2"], ["https://tec.openplanner.team/stops/LCObouh1", "https://tec.openplanner.team/stops/LCOeg--2"], ["https://tec.openplanner.team/stops/N201awb", "https://tec.openplanner.team/stops/N202acb"], ["https://tec.openplanner.team/stops/Lmabott1", "https://tec.openplanner.team/stops/Lmagara2"], ["https://tec.openplanner.team/stops/LGrchpl1", "https://tec.openplanner.team/stops/LGreg--2"], ["https://tec.openplanner.team/stops/X716aea", "https://tec.openplanner.team/stops/X716aeb"], ["https://tec.openplanner.team/stops/H2hg152a", "https://tec.openplanner.team/stops/H2hg152b"], ["https://tec.openplanner.team/stops/N211aza", "https://tec.openplanner.team/stops/N211bab"], ["https://tec.openplanner.team/stops/X750aqa", "https://tec.openplanner.team/stops/X750bdb"], ["https://tec.openplanner.team/stops/LRccent2", "https://tec.openplanner.team/stops/LRcsilo1"], ["https://tec.openplanner.team/stops/Lghferr2", "https://tec.openplanner.team/stops/Lghmont2"], ["https://tec.openplanner.team/stops/X721abb", "https://tec.openplanner.team/stops/X721aca"], ["https://tec.openplanner.team/stops/Lgrfass2", "https://tec.openplanner.team/stops/Lgrjobe2"], ["https://tec.openplanner.team/stops/Blsmvan1", "https://tec.openplanner.team/stops/Blsmvan2"], ["https://tec.openplanner.team/stops/X618aea", "https://tec.openplanner.team/stops/X618ama"], ["https://tec.openplanner.team/stops/Cculpre1", "https://tec.openplanner.team/stops/Ccuwil1"], ["https://tec.openplanner.team/stops/LSsaxhe1", "https://tec.openplanner.team/stops/N506bcb"], ["https://tec.openplanner.team/stops/H4og206b", "https://tec.openplanner.team/stops/H4og209b"], ["https://tec.openplanner.team/stops/Lsefori2", "https://tec.openplanner.team/stops/Lsemaha1"], ["https://tec.openplanner.team/stops/N385aaa", "https://tec.openplanner.team/stops/N385abb"], ["https://tec.openplanner.team/stops/X948afa", "https://tec.openplanner.team/stops/X948asa"], ["https://tec.openplanner.team/stops/Lhecarc1", "https://tec.openplanner.team/stops/Lheneuv1"], ["https://tec.openplanner.team/stops/LHbcent2", "https://tec.openplanner.team/stops/LJAcent2"], ["https://tec.openplanner.team/stops/Bsaubbo1", "https://tec.openplanner.team/stops/Bwspbos2"], ["https://tec.openplanner.team/stops/X344adb", "https://tec.openplanner.team/stops/X362ada"], ["https://tec.openplanner.team/stops/H1to151b", "https://tec.openplanner.team/stops/H1to154b"], ["https://tec.openplanner.team/stops/N132acb", "https://tec.openplanner.team/stops/N135bfb"], ["https://tec.openplanner.team/stops/Cbicamp1", "https://tec.openplanner.team/stops/Ctupont2"], ["https://tec.openplanner.team/stops/X717acb", "https://tec.openplanner.team/stops/X717ada"], ["https://tec.openplanner.team/stops/X615afa", "https://tec.openplanner.team/stops/X615afb"], ["https://tec.openplanner.team/stops/X802apa", "https://tec.openplanner.team/stops/X802ara"], ["https://tec.openplanner.team/stops/H2ep145a", "https://tec.openplanner.team/stops/H2ep145b"], ["https://tec.openplanner.team/stops/X850ahb", "https://tec.openplanner.team/stops/X850aoa"], ["https://tec.openplanner.team/stops/LmR90--2", "https://tec.openplanner.team/stops/LsHfrie2"], ["https://tec.openplanner.team/stops/Lemjoba2", "https://tec.openplanner.team/stops/Lemlami1"], ["https://tec.openplanner.team/stops/Lmnbass2", "https://tec.openplanner.team/stops/Lmndeso1"], ["https://tec.openplanner.team/stops/H1qu109a", "https://tec.openplanner.team/stops/H1qu114a"], ["https://tec.openplanner.team/stops/N135aja", "https://tec.openplanner.team/stops/N135ajb"], ["https://tec.openplanner.team/stops/X946aca", "https://tec.openplanner.team/stops/X948aeb"], ["https://tec.openplanner.team/stops/Lhrchar4", "https://tec.openplanner.team/stops/Lhrpaep2"], ["https://tec.openplanner.team/stops/H4bh102a", "https://tec.openplanner.team/stops/H4bh104a"], ["https://tec.openplanner.team/stops/LDpulve1", "https://tec.openplanner.team/stops/LFMkrin1"], ["https://tec.openplanner.team/stops/H5bl116a", "https://tec.openplanner.team/stops/H5bl142a"], ["https://tec.openplanner.team/stops/N501hua", "https://tec.openplanner.team/stops/N501hub"], ["https://tec.openplanner.team/stops/N170aab", "https://tec.openplanner.team/stops/N170abb"], ["https://tec.openplanner.team/stops/X617ahb", "https://tec.openplanner.team/stops/X617aib"], ["https://tec.openplanner.team/stops/NH03ada", "https://tec.openplanner.team/stops/NH03aeb"], ["https://tec.openplanner.team/stops/N104aab", "https://tec.openplanner.team/stops/N104aba"], ["https://tec.openplanner.team/stops/N501ivb", "https://tec.openplanner.team/stops/N521ama"], ["https://tec.openplanner.team/stops/Cchsud03", "https://tec.openplanner.team/stops/Cchsud18"], ["https://tec.openplanner.team/stops/N351ajc", "https://tec.openplanner.team/stops/N351ajd"], ["https://tec.openplanner.team/stops/H4ba101b", "https://tec.openplanner.team/stops/H4vz367a"], ["https://tec.openplanner.team/stops/LWZbeem1", "https://tec.openplanner.team/stops/LWZbeem2"], ["https://tec.openplanner.team/stops/N301aaa", "https://tec.openplanner.team/stops/N301aoa"], ["https://tec.openplanner.team/stops/X741aja", "https://tec.openplanner.team/stops/X741ajb"], ["https://tec.openplanner.team/stops/Cdaviol1", "https://tec.openplanner.team/stops/Cdaviol2"], ["https://tec.openplanner.team/stops/N117aka", "https://tec.openplanner.team/stops/N117akb"], ["https://tec.openplanner.team/stops/H1fv100a", "https://tec.openplanner.team/stops/H1fv100b"], ["https://tec.openplanner.team/stops/LGEwalk2", "https://tec.openplanner.team/stops/LLSba9-1"], ["https://tec.openplanner.team/stops/X672agb", "https://tec.openplanner.team/stops/X672akb"], ["https://tec.openplanner.team/stops/LBTwauc2", "https://tec.openplanner.team/stops/LCxchal2"], ["https://tec.openplanner.team/stops/Llgoeil2", "https://tec.openplanner.team/stops/Llgpere2"], ["https://tec.openplanner.team/stops/Ccobinc1", "https://tec.openplanner.team/stops/Ccoconf2"], ["https://tec.openplanner.team/stops/Blhugmo2", "https://tec.openplanner.team/stops/Blhutco4"], ["https://tec.openplanner.team/stops/LAUabat2", "https://tec.openplanner.team/stops/LAUbour4"], ["https://tec.openplanner.team/stops/LBRruel2", "https://tec.openplanner.team/stops/LBRtrag1"], ["https://tec.openplanner.team/stops/X608ana", "https://tec.openplanner.team/stops/X609aka"], ["https://tec.openplanner.team/stops/H2fy120d", "https://tec.openplanner.team/stops/H2mg137a"], ["https://tec.openplanner.team/stops/LAUcent1", "https://tec.openplanner.team/stops/LRmhage7"], ["https://tec.openplanner.team/stops/LPTblan1", "https://tec.openplanner.team/stops/X794aab"], ["https://tec.openplanner.team/stops/NC44aba", "https://tec.openplanner.team/stops/NC44acb"], ["https://tec.openplanner.team/stops/LVlroua2", "https://tec.openplanner.team/stops/LVltige2"], ["https://tec.openplanner.team/stops/LPbec--1", "https://tec.openplanner.team/stops/LPbeg--2"], ["https://tec.openplanner.team/stops/H1hr128c", "https://tec.openplanner.team/stops/H1hr128d"], ["https://tec.openplanner.team/stops/H4lz118a", "https://tec.openplanner.team/stops/H4lz118b"], ["https://tec.openplanner.team/stops/N501hna", "https://tec.openplanner.team/stops/N501hnb"], ["https://tec.openplanner.team/stops/Baegd741", "https://tec.openplanner.team/stops/Bramcar1"], ["https://tec.openplanner.team/stops/Lvehv--4", "https://tec.openplanner.team/stops/Lverain1"], ["https://tec.openplanner.team/stops/H4hu118a", "https://tec.openplanner.team/stops/H4hu121b"], ["https://tec.openplanner.team/stops/Lgrclos2", "https://tec.openplanner.team/stops/Lgrside2"], ["https://tec.openplanner.team/stops/N229akb", "https://tec.openplanner.team/stops/N231acb"], ["https://tec.openplanner.team/stops/LHMbach4", "https://tec.openplanner.team/stops/LHMchev2"], ["https://tec.openplanner.team/stops/Bsgipha1", "https://tec.openplanner.team/stops/Bsgipmo2"], ["https://tec.openplanner.team/stops/X890aba", "https://tec.openplanner.team/stops/X890aca"], ["https://tec.openplanner.team/stops/N141aba", "https://tec.openplanner.team/stops/N141amc"], ["https://tec.openplanner.team/stops/X939ahb", "https://tec.openplanner.team/stops/X946ahb"], ["https://tec.openplanner.team/stops/Bhmmcha1", "https://tec.openplanner.team/stops/Bndbnod2"], ["https://tec.openplanner.team/stops/H1em104b", "https://tec.openplanner.team/stops/H1em108a"], ["https://tec.openplanner.team/stops/N534bpa", "https://tec.openplanner.team/stops/N534bpb"], ["https://tec.openplanner.team/stops/H2pe156a", "https://tec.openplanner.team/stops/H2pe156b"], ["https://tec.openplanner.team/stops/LkEzoll1", "https://tec.openplanner.team/stops/LkEzoll2"], ["https://tec.openplanner.team/stops/H4ft135a", "https://tec.openplanner.team/stops/H4ft137b"], ["https://tec.openplanner.team/stops/X609ara", "https://tec.openplanner.team/stops/X611aaa"], ["https://tec.openplanner.team/stops/H1gr110b", "https://tec.openplanner.team/stops/H1gr119b"], ["https://tec.openplanner.team/stops/LFLcher1", "https://tec.openplanner.team/stops/LSpunio2"], ["https://tec.openplanner.team/stops/X614bba", "https://tec.openplanner.team/stops/X614brb"], ["https://tec.openplanner.team/stops/X758aca", "https://tec.openplanner.team/stops/X758amb"], ["https://tec.openplanner.team/stops/Bronrch2", "https://tec.openplanner.team/stops/Bvirflu1"], ["https://tec.openplanner.team/stops/Beclbar2", "https://tec.openplanner.team/stops/H2fa102b"], ["https://tec.openplanner.team/stops/Beclbar1", "https://tec.openplanner.team/stops/Broneco2"], ["https://tec.openplanner.team/stops/Bgzdfpo2", "https://tec.openplanner.team/stops/Bgzdgpa2"], ["https://tec.openplanner.team/stops/Chhclde1", "https://tec.openplanner.team/stops/Cjxdesc2"], ["https://tec.openplanner.team/stops/X886ada", "https://tec.openplanner.team/stops/X888acb"], ["https://tec.openplanner.team/stops/H4co109a", "https://tec.openplanner.team/stops/H4co144a"], ["https://tec.openplanner.team/stops/H1ol140b", "https://tec.openplanner.team/stops/H1ol144b"], ["https://tec.openplanner.team/stops/N423aba", "https://tec.openplanner.team/stops/N423aca"], ["https://tec.openplanner.team/stops/X766abb", "https://tec.openplanner.team/stops/X768ama"], ["https://tec.openplanner.team/stops/LWLeg--2", "https://tec.openplanner.team/stops/LWLtamb1"], ["https://tec.openplanner.team/stops/H2ll176b", "https://tec.openplanner.team/stops/H2ll186a"], ["https://tec.openplanner.team/stops/Lhrmare4", "https://tec.openplanner.team/stops/Lhrpost1"], ["https://tec.openplanner.team/stops/X891aca", "https://tec.openplanner.team/stops/X891acb"], ["https://tec.openplanner.team/stops/X801abb", "https://tec.openplanner.team/stops/X899abb"], ["https://tec.openplanner.team/stops/Lsefoot1", "https://tec.openplanner.team/stops/Lsemyrt1"], ["https://tec.openplanner.team/stops/Bllnchv1", "https://tec.openplanner.team/stops/Bllngar2"], ["https://tec.openplanner.team/stops/LOTawan1", "https://tec.openplanner.team/stops/LOTcarr2"], ["https://tec.openplanner.team/stops/Llgnaim1", "https://tec.openplanner.team/stops/Llgnani1"], ["https://tec.openplanner.team/stops/Brixpbs2", "https://tec.openplanner.team/stops/Brsrmon1"], ["https://tec.openplanner.team/stops/H1qu116c", "https://tec.openplanner.team/stops/H1qu129a"], ["https://tec.openplanner.team/stops/H5bl144a", "https://tec.openplanner.team/stops/H5bl144b"], ["https://tec.openplanner.team/stops/N212ata", "https://tec.openplanner.team/stops/N212atb"], ["https://tec.openplanner.team/stops/H1as102a", "https://tec.openplanner.team/stops/H1as104a"], ["https://tec.openplanner.team/stops/H1eo108a", "https://tec.openplanner.team/stops/H1mj132a"], ["https://tec.openplanner.team/stops/Bgercen1", "https://tec.openplanner.team/stops/Bgrhcro1"], ["https://tec.openplanner.team/stops/LBQplac2", "https://tec.openplanner.team/stops/X919ajb"], ["https://tec.openplanner.team/stops/LAMjeha2", "https://tec.openplanner.team/stops/LAMrich1"], ["https://tec.openplanner.team/stops/X945abc", "https://tec.openplanner.team/stops/X947aaa"], ["https://tec.openplanner.team/stops/Lhucime1", "https://tec.openplanner.team/stops/Lhueg--1"], ["https://tec.openplanner.team/stops/N539beb", "https://tec.openplanner.team/stops/N540ara"], ["https://tec.openplanner.team/stops/Bjausan1", "https://tec.openplanner.team/stops/Bmrlnce1"], ["https://tec.openplanner.team/stops/LATfont2", "https://tec.openplanner.team/stops/LATphar2"], ["https://tec.openplanner.team/stops/X659asa", "https://tec.openplanner.team/stops/X659aua"], ["https://tec.openplanner.team/stops/X609aga", "https://tec.openplanner.team/stops/X609agb"], ["https://tec.openplanner.team/stops/H1tt109a", "https://tec.openplanner.team/stops/H1tt109b"], ["https://tec.openplanner.team/stops/Lmihale2", "https://tec.openplanner.team/stops/Lvtvici2"], ["https://tec.openplanner.team/stops/H1ba116a", "https://tec.openplanner.team/stops/H1ba116b"], ["https://tec.openplanner.team/stops/X758aib", "https://tec.openplanner.team/stops/X758aja"], ["https://tec.openplanner.team/stops/H4pp121a", "https://tec.openplanner.team/stops/H4pp122b"], ["https://tec.openplanner.team/stops/Bstecal1", "https://tec.openplanner.team/stops/Btubbai1"], ["https://tec.openplanner.team/stops/Bbstasa1", "https://tec.openplanner.team/stops/Bbstdpa2"], ["https://tec.openplanner.team/stops/Lthfagn2", "https://tec.openplanner.team/stops/Lthgros2"], ["https://tec.openplanner.team/stops/H2le149b", "https://tec.openplanner.team/stops/H2ml110b"], ["https://tec.openplanner.team/stops/Lseaven1", "https://tec.openplanner.team/stops/Lsekubo2"], ["https://tec.openplanner.team/stops/X807abb", "https://tec.openplanner.team/stops/X807ada"], ["https://tec.openplanner.team/stops/X948aha", "https://tec.openplanner.team/stops/X948ahb"], ["https://tec.openplanner.team/stops/H1gi120d", "https://tec.openplanner.team/stops/H1vs145b"], ["https://tec.openplanner.team/stops/X824akb", "https://tec.openplanner.team/stops/X830aaa"], ["https://tec.openplanner.team/stops/LERboss1", "https://tec.openplanner.team/stops/X512aib"], ["https://tec.openplanner.team/stops/X715ahb", "https://tec.openplanner.team/stops/X715alb"], ["https://tec.openplanner.team/stops/H2ll194b", "https://tec.openplanner.team/stops/H2ll201b"], ["https://tec.openplanner.team/stops/X672aic", "https://tec.openplanner.team/stops/X672aka"], ["https://tec.openplanner.team/stops/H4ba101b", "https://tec.openplanner.team/stops/H4ws160b"], ["https://tec.openplanner.team/stops/LHAarge1", "https://tec.openplanner.team/stops/LHTlieg1"], ["https://tec.openplanner.team/stops/X902ada", "https://tec.openplanner.team/stops/X902agb"], ["https://tec.openplanner.team/stops/N501ddb", "https://tec.openplanner.team/stops/N501deb"], ["https://tec.openplanner.team/stops/H4ty333a", "https://tec.openplanner.team/stops/H4ty359b"], ["https://tec.openplanner.team/stops/N244aea", "https://tec.openplanner.team/stops/N248aaa"], ["https://tec.openplanner.team/stops/H1nv324a", "https://tec.openplanner.team/stops/H1nv325b"], ["https://tec.openplanner.team/stops/LrApark2", "https://tec.openplanner.team/stops/LrAwald2"], ["https://tec.openplanner.team/stops/LBajean2", "https://tec.openplanner.team/stops/LBapeup1"], ["https://tec.openplanner.team/stops/Ltiferb2", "https://tec.openplanner.team/stops/Ltimarr1"], ["https://tec.openplanner.team/stops/N521aub", "https://tec.openplanner.team/stops/N521ava"], ["https://tec.openplanner.team/stops/H2ha127a", "https://tec.openplanner.team/stops/H2ha127b"], ["https://tec.openplanner.team/stops/H1sp353b", "https://tec.openplanner.team/stops/H1sp354b"], ["https://tec.openplanner.team/stops/Llgfont1", "https://tec.openplanner.team/stops/Llgnaim1"], ["https://tec.openplanner.team/stops/LLgmini2", "https://tec.openplanner.team/stops/LSPmalc1"], ["https://tec.openplanner.team/stops/N501eby", "https://tec.openplanner.team/stops/N501edb"], ["https://tec.openplanner.team/stops/LeYwess1", "https://tec.openplanner.team/stops/LeYwess2"], ["https://tec.openplanner.team/stops/X743aea", "https://tec.openplanner.team/stops/X743aeb"], ["https://tec.openplanner.team/stops/N201aia", "https://tec.openplanner.team/stops/N201aub"], ["https://tec.openplanner.team/stops/N229aja", "https://tec.openplanner.team/stops/N229aob"], ["https://tec.openplanner.team/stops/Bhmmcam1", "https://tec.openplanner.team/stops/Bhmmcor1"], ["https://tec.openplanner.team/stops/X618aoa", "https://tec.openplanner.team/stops/X619amb"], ["https://tec.openplanner.team/stops/H2hg146a", "https://tec.openplanner.team/stops/H2hg150a"], ["https://tec.openplanner.team/stops/LFOmc--1", "https://tec.openplanner.team/stops/LFOmc--2"], ["https://tec.openplanner.team/stops/H1en101b", "https://tec.openplanner.team/stops/H1mk112a"], ["https://tec.openplanner.team/stops/H4gr108a", "https://tec.openplanner.team/stops/H4ld124b"], ["https://tec.openplanner.team/stops/H1me114a", "https://tec.openplanner.team/stops/H1me114b"], ["https://tec.openplanner.team/stops/H2na136a", "https://tec.openplanner.team/stops/H3so187b"], ["https://tec.openplanner.team/stops/Cprrvil1", "https://tec.openplanner.team/stops/NC11amb"], ["https://tec.openplanner.team/stops/LFUfonc1", "https://tec.openplanner.team/stops/LHurobi1"], ["https://tec.openplanner.team/stops/LSsaxhe1", "https://tec.openplanner.team/stops/LSznoel1"], ["https://tec.openplanner.team/stops/Bnilcha2", "https://tec.openplanner.team/stops/Bwlhpmt3"], ["https://tec.openplanner.team/stops/LRAgrot2", "https://tec.openplanner.team/stops/LRArami2"], ["https://tec.openplanner.team/stops/Cculgeo1", "https://tec.openplanner.team/stops/Cculgeo2"], ["https://tec.openplanner.team/stops/Lhurouh1", "https://tec.openplanner.team/stops/Lmnrame1"], ["https://tec.openplanner.team/stops/X652adb", "https://tec.openplanner.team/stops/X652aeb"], ["https://tec.openplanner.team/stops/LLGramk2", "https://tec.openplanner.team/stops/LLGramk3"], ["https://tec.openplanner.team/stops/Llgmulh1", "https://tec.openplanner.team/stops/Llgmulh2"], ["https://tec.openplanner.team/stops/X663abb", "https://tec.openplanner.team/stops/X663apa"], ["https://tec.openplanner.team/stops/H1ge117a", "https://tec.openplanner.team/stops/H1qp140b"], ["https://tec.openplanner.team/stops/H4ar102b", "https://tec.openplanner.team/stops/H4ar107a"], ["https://tec.openplanner.team/stops/LCPaywa1", "https://tec.openplanner.team/stops/LCPaywa2"], ["https://tec.openplanner.team/stops/Crachap1", "https://tec.openplanner.team/stops/Cradest1"], ["https://tec.openplanner.team/stops/Bhalalb2", "https://tec.openplanner.team/stops/Bhalrat2"], ["https://tec.openplanner.team/stops/Cbfdufa1", "https://tec.openplanner.team/stops/Cbflong2"], ["https://tec.openplanner.team/stops/X896ada", "https://tec.openplanner.team/stops/X898aga"], ["https://tec.openplanner.team/stops/Crcrlf1", "https://tec.openplanner.team/stops/Crcrlf2"], ["https://tec.openplanner.team/stops/X615awa", "https://tec.openplanner.team/stops/X615awb"], ["https://tec.openplanner.team/stops/LNOning1", "https://tec.openplanner.team/stops/LNOning2"], ["https://tec.openplanner.team/stops/LhPkirc2", "https://tec.openplanner.team/stops/LhPprum1"], ["https://tec.openplanner.team/stops/N544ada", "https://tec.openplanner.team/stops/N549aea"], ["https://tec.openplanner.team/stops/X923abb", "https://tec.openplanner.team/stops/X923acb"], ["https://tec.openplanner.team/stops/H2pe159b", "https://tec.openplanner.team/stops/H2re166a"], ["https://tec.openplanner.team/stops/H4ch114b", "https://tec.openplanner.team/stops/H4ch117a"], ["https://tec.openplanner.team/stops/X397abb", "https://tec.openplanner.team/stops/X398aab"], ["https://tec.openplanner.team/stops/X801bzb", "https://tec.openplanner.team/stops/X801cba"], ["https://tec.openplanner.team/stops/Cprcalv2", "https://tec.openplanner.team/stops/Cprlpre2"], ["https://tec.openplanner.team/stops/LwEdorf1", "https://tec.openplanner.team/stops/LwEdorf2"], ["https://tec.openplanner.team/stops/Llgvero2", "https://tec.openplanner.team/stops/Llgvero4"], ["https://tec.openplanner.team/stops/Lvebiol2", "https://tec.openplanner.team/stops/Lvewall1"], ["https://tec.openplanner.team/stops/LFOcomb3", "https://tec.openplanner.team/stops/LFOmc--1"], ["https://tec.openplanner.team/stops/LVthest1", "https://tec.openplanner.team/stops/LVthest4"], ["https://tec.openplanner.team/stops/Llgcham6", "https://tec.openplanner.team/stops/Llgcham8"], ["https://tec.openplanner.team/stops/H4bd107a", "https://tec.openplanner.team/stops/H4te257a"], ["https://tec.openplanner.team/stops/Bbgeegl1", "https://tec.openplanner.team/stops/Bbgepau2"], ["https://tec.openplanner.team/stops/X713adb", "https://tec.openplanner.team/stops/X713anb"], ["https://tec.openplanner.team/stops/H1ge179a", "https://tec.openplanner.team/stops/H1no143a"], ["https://tec.openplanner.team/stops/X636bfa", "https://tec.openplanner.team/stops/X649aca"], ["https://tec.openplanner.team/stops/H1an103a", "https://tec.openplanner.team/stops/H1an103b"], ["https://tec.openplanner.team/stops/Lrecite1", "https://tec.openplanner.team/stops/Lrecite2"], ["https://tec.openplanner.team/stops/X638ara", "https://tec.openplanner.team/stops/X639aab"], ["https://tec.openplanner.team/stops/H1be101b", "https://tec.openplanner.team/stops/H1be104b"], ["https://tec.openplanner.team/stops/N501cqa", "https://tec.openplanner.team/stops/N501ctb"], ["https://tec.openplanner.team/stops/LCPbell2", "https://tec.openplanner.team/stops/LCPone91"], ["https://tec.openplanner.team/stops/LJEerno1", "https://tec.openplanner.team/stops/LJEverd2"], ["https://tec.openplanner.team/stops/LBEbelf2", "https://tec.openplanner.team/stops/Lcacris1"], ["https://tec.openplanner.team/stops/X771aab", "https://tec.openplanner.team/stops/X773afb"], ["https://tec.openplanner.team/stops/LBAcent1", "https://tec.openplanner.team/stops/LBAtign1"], ["https://tec.openplanner.team/stops/Bwatcci1", "https://tec.openplanner.team/stops/Bwatcci2"], ["https://tec.openplanner.team/stops/Llmcomb1", "https://tec.openplanner.team/stops/Lprcite1"], ["https://tec.openplanner.team/stops/NC14aaa", "https://tec.openplanner.team/stops/NC44aab"], ["https://tec.openplanner.team/stops/N530aab", "https://tec.openplanner.team/stops/N530aha"], ["https://tec.openplanner.team/stops/X898ada", "https://tec.openplanner.team/stops/X898adb"], ["https://tec.openplanner.team/stops/Crseuro1", "https://tec.openplanner.team/stops/Crseuro2"], ["https://tec.openplanner.team/stops/H4to131a", "https://tec.openplanner.team/stops/H4to139a"], ["https://tec.openplanner.team/stops/X823aeb", "https://tec.openplanner.team/stops/X823aff"], ["https://tec.openplanner.team/stops/LGogare1", "https://tec.openplanner.team/stops/Lpebeco2"], ["https://tec.openplanner.team/stops/Brsrcha1", "https://tec.openplanner.team/stops/Brsrrcu1"], ["https://tec.openplanner.team/stops/LBbhupp1", "https://tec.openplanner.team/stops/LTPhenr1"], ["https://tec.openplanner.team/stops/Ccupetp1", "https://tec.openplanner.team/stops/Ccupetp2"], ["https://tec.openplanner.team/stops/Llgfran1", "https://tec.openplanner.team/stops/Llgfran2"], ["https://tec.openplanner.team/stops/LElcent2", "https://tec.openplanner.team/stops/LElgerd1"], ["https://tec.openplanner.team/stops/LOTcarr2", "https://tec.openplanner.team/stops/LOTdelv2"], ["https://tec.openplanner.team/stops/X786aib", "https://tec.openplanner.team/stops/X789aia"], ["https://tec.openplanner.team/stops/Cfaecwa2", "https://tec.openplanner.team/stops/Cfawain1"], ["https://tec.openplanner.team/stops/Bmelsab1", "https://tec.openplanner.team/stops/Bmelsab2"], ["https://tec.openplanner.team/stops/H1qv114a", "https://tec.openplanner.team/stops/H1qv114b"], ["https://tec.openplanner.team/stops/H1ma231b", "https://tec.openplanner.team/stops/H1ni315a"], ["https://tec.openplanner.team/stops/H4eg104b", "https://tec.openplanner.team/stops/H4sl154b"], ["https://tec.openplanner.team/stops/Lvcreve2", "https://tec.openplanner.team/stops/Lvcvand1"], ["https://tec.openplanner.team/stops/X780ada", "https://tec.openplanner.team/stops/X780adb"], ["https://tec.openplanner.team/stops/N525aca", "https://tec.openplanner.team/stops/N525bab"], ["https://tec.openplanner.team/stops/H4bi156a", "https://tec.openplanner.team/stops/H4bi156b"], ["https://tec.openplanner.team/stops/H1an100a", "https://tec.openplanner.team/stops/H1an101a"], ["https://tec.openplanner.team/stops/Bvilcoq2", "https://tec.openplanner.team/stops/Bvilvil4"], ["https://tec.openplanner.team/stops/Ctachst1", "https://tec.openplanner.team/stops/N543cfb"], ["https://tec.openplanner.team/stops/H4ty296a", "https://tec.openplanner.team/stops/H4ty310b"], ["https://tec.openplanner.team/stops/Cchdagn2", "https://tec.openplanner.team/stops/Cchpala2"], ["https://tec.openplanner.team/stops/X630aaa", "https://tec.openplanner.team/stops/X630abb"], ["https://tec.openplanner.team/stops/N365aca", "https://tec.openplanner.team/stops/X344ada"], ["https://tec.openplanner.team/stops/N512aoa", "https://tec.openplanner.team/stops/N512aob"], ["https://tec.openplanner.team/stops/Clbchba2", "https://tec.openplanner.team/stops/Clbptno1"], ["https://tec.openplanner.team/stops/LHScite2", "https://tec.openplanner.team/stops/LRGbett3"], ["https://tec.openplanner.team/stops/H4rm107c", "https://tec.openplanner.team/stops/H4rm108a"], ["https://tec.openplanner.team/stops/X740abd", "https://tec.openplanner.team/stops/X985aeb"], ["https://tec.openplanner.team/stops/Brsgsan1", "https://tec.openplanner.team/stops/Brsgsan2"], ["https://tec.openplanner.team/stops/X954abb", "https://tec.openplanner.team/stops/X954aeb"], ["https://tec.openplanner.team/stops/LThbatt2", "https://tec.openplanner.team/stops/LThelse2"], ["https://tec.openplanner.team/stops/LMsvill1", "https://tec.openplanner.team/stops/LMsvill2"], ["https://tec.openplanner.team/stops/H2sb223b", "https://tec.openplanner.team/stops/H2sb243c"], ["https://tec.openplanner.team/stops/NL76aca", "https://tec.openplanner.team/stops/NL76acb"], ["https://tec.openplanner.team/stops/Lgrcral2", "https://tec.openplanner.team/stops/Lgrdefr1"], ["https://tec.openplanner.team/stops/X634agb", "https://tec.openplanner.team/stops/X634aia"], ["https://tec.openplanner.team/stops/X661asa", "https://tec.openplanner.team/stops/X661ata"], ["https://tec.openplanner.team/stops/N557aeb", "https://tec.openplanner.team/stops/N557ajb"], ["https://tec.openplanner.team/stops/X952aca", "https://tec.openplanner.team/stops/X952acb"], ["https://tec.openplanner.team/stops/H4bs111a", "https://tec.openplanner.team/stops/H4ws159a"], ["https://tec.openplanner.team/stops/X789aea", "https://tec.openplanner.team/stops/X789afa"], ["https://tec.openplanner.team/stops/Cmmjami2", "https://tec.openplanner.team/stops/Cmmjami4"], ["https://tec.openplanner.team/stops/N507aba", "https://tec.openplanner.team/stops/N507abb"], ["https://tec.openplanner.team/stops/X542ada", "https://tec.openplanner.team/stops/X542aga"], ["https://tec.openplanner.team/stops/X607aga", "https://tec.openplanner.team/stops/X620agb"], ["https://tec.openplanner.team/stops/LlNbene2", "https://tec.openplanner.team/stops/LlNlimb1"], ["https://tec.openplanner.team/stops/N501cba", "https://tec.openplanner.team/stops/N501cgb"], ["https://tec.openplanner.team/stops/Bnetegl2", "https://tec.openplanner.team/stops/Bnetrec2"], ["https://tec.openplanner.team/stops/N109aia", "https://tec.openplanner.team/stops/N114aab"], ["https://tec.openplanner.team/stops/H4fa128b", "https://tec.openplanner.team/stops/H4ms146b"], ["https://tec.openplanner.team/stops/LBkwind2", "https://tec.openplanner.team/stops/LHCmais1"], ["https://tec.openplanner.team/stops/LHSfexh2", "https://tec.openplanner.team/stops/LHSlava1"], ["https://tec.openplanner.team/stops/X361acb", "https://tec.openplanner.team/stops/X371ajb"], ["https://tec.openplanner.team/stops/X943aaa", "https://tec.openplanner.team/stops/X943aab"], ["https://tec.openplanner.team/stops/LnNzent2", "https://tec.openplanner.team/stops/LsVlust1"], ["https://tec.openplanner.team/stops/N145aec", "https://tec.openplanner.team/stops/N145aed"], ["https://tec.openplanner.team/stops/Ccupdes1", "https://tec.openplanner.team/stops/Ccutill2"], ["https://tec.openplanner.team/stops/Bjaufca2", "https://tec.openplanner.team/stops/NR30aab"], ["https://tec.openplanner.team/stops/X659aoa", "https://tec.openplanner.team/stops/X741aka"], ["https://tec.openplanner.team/stops/Bosqpco2", "https://tec.openplanner.team/stops/Btubois1"], ["https://tec.openplanner.team/stops/Beclpma1", "https://tec.openplanner.team/stops/H2me115a"], ["https://tec.openplanner.team/stops/Cmyfoym2", "https://tec.openplanner.team/stops/Cmymaco1"], ["https://tec.openplanner.team/stops/LSGmall1", "https://tec.openplanner.team/stops/LSkoran2"], ["https://tec.openplanner.team/stops/Lvecase1", "https://tec.openplanner.team/stops/Lvecite1"], ["https://tec.openplanner.team/stops/H2mo124b", "https://tec.openplanner.team/stops/H2mo138b"], ["https://tec.openplanner.team/stops/H1ha190b", "https://tec.openplanner.team/stops/H3go100b"], ["https://tec.openplanner.team/stops/X713acb", "https://tec.openplanner.team/stops/X986ala"], ["https://tec.openplanner.team/stops/Ctilobb1", "https://tec.openplanner.team/stops/Ctilobb2"], ["https://tec.openplanner.team/stops/X908ana", "https://tec.openplanner.team/stops/X908anb"], ["https://tec.openplanner.team/stops/N121afa", "https://tec.openplanner.team/stops/N121afb"], ["https://tec.openplanner.team/stops/LlNlont1", "https://tec.openplanner.team/stops/LlNm%C3%BChl1"], ["https://tec.openplanner.team/stops/H4th139b", "https://tec.openplanner.team/stops/H4th142b"], ["https://tec.openplanner.team/stops/N569aaa", "https://tec.openplanner.team/stops/N569afa"], ["https://tec.openplanner.team/stops/LXobaty1", "https://tec.openplanner.team/stops/LXopeti2"], ["https://tec.openplanner.team/stops/Cfmltas2", "https://tec.openplanner.team/stops/Cptcamb2"], ["https://tec.openplanner.team/stops/N569acb", "https://tec.openplanner.team/stops/N569aeb"], ["https://tec.openplanner.team/stops/H1br124b", "https://tec.openplanner.team/stops/H1br126a"], ["https://tec.openplanner.team/stops/N235aab", "https://tec.openplanner.team/stops/N236aib"], ["https://tec.openplanner.team/stops/H1ho141b", "https://tec.openplanner.team/stops/H1ho142a"], ["https://tec.openplanner.team/stops/Bcrncjo2", "https://tec.openplanner.team/stops/N529aab"], ["https://tec.openplanner.team/stops/Bgnpjbe2", "https://tec.openplanner.team/stops/Cgnbast1"], ["https://tec.openplanner.team/stops/H1br124a", "https://tec.openplanner.team/stops/H1br126b"], ["https://tec.openplanner.team/stops/N230ama", "https://tec.openplanner.team/stops/N549abb"], ["https://tec.openplanner.team/stops/Cfvplac1", "https://tec.openplanner.team/stops/H1fv101b"], ["https://tec.openplanner.team/stops/X793aab", "https://tec.openplanner.team/stops/X793aga"], ["https://tec.openplanner.team/stops/Btubga05", "https://tec.openplanner.team/stops/Btubpla1"], ["https://tec.openplanner.team/stops/NC14anb", "https://tec.openplanner.team/stops/NC14apb"], ["https://tec.openplanner.team/stops/Bboupde1", "https://tec.openplanner.team/stops/Bcerldo2"], ["https://tec.openplanner.team/stops/N120aca", "https://tec.openplanner.team/stops/N120aeb"], ["https://tec.openplanner.team/stops/N504aab", "https://tec.openplanner.team/stops/N511afb"], ["https://tec.openplanner.team/stops/LBlchin1", "https://tec.openplanner.team/stops/LBlplac1"], ["https://tec.openplanner.team/stops/H1ms267b", "https://tec.openplanner.team/stops/H1ms290a"], ["https://tec.openplanner.team/stops/H1gh154b", "https://tec.openplanner.team/stops/H1gh167b"], ["https://tec.openplanner.team/stops/N547alb", "https://tec.openplanner.team/stops/N547alc"], ["https://tec.openplanner.team/stops/Lbrptbr1", "https://tec.openplanner.team/stops/Lbrptbr5"], ["https://tec.openplanner.team/stops/N141apb", "https://tec.openplanner.team/stops/N141aqa"], ["https://tec.openplanner.team/stops/Bottcba1", "https://tec.openplanner.team/stops/Bottcba2"], ["https://tec.openplanner.team/stops/N151aia", "https://tec.openplanner.team/stops/N153aaa"], ["https://tec.openplanner.team/stops/Cgzchab2", "https://tec.openplanner.team/stops/Cgzfarc2"], ["https://tec.openplanner.team/stops/LAIrout1", "https://tec.openplanner.team/stops/LBzec--2"], ["https://tec.openplanner.team/stops/X793ahb", "https://tec.openplanner.team/stops/X793aia"], ["https://tec.openplanner.team/stops/H1ms285a", "https://tec.openplanner.team/stops/H1ms914a"], ["https://tec.openplanner.team/stops/Cfaamio4", "https://tec.openplanner.team/stops/Cfaysle1"], ["https://tec.openplanner.team/stops/Llgmass2", "https://tec.openplanner.team/stops/Llgschm1"], ["https://tec.openplanner.team/stops/Chhplbe2", "https://tec.openplanner.team/stops/Chhverr1"], ["https://tec.openplanner.team/stops/Cbfbies2", "https://tec.openplanner.team/stops/Cctvict1"], ["https://tec.openplanner.team/stops/N131aea", "https://tec.openplanner.team/stops/N131afb"], ["https://tec.openplanner.team/stops/Clbentr1", "https://tec.openplanner.team/stops/Clbentr2"], ["https://tec.openplanner.team/stops/N118acb", "https://tec.openplanner.team/stops/N118acd"], ["https://tec.openplanner.team/stops/LBNover2", "https://tec.openplanner.team/stops/LhEherb2"], ["https://tec.openplanner.team/stops/LLVcent1", "https://tec.openplanner.team/stops/LLVfour1"], ["https://tec.openplanner.team/stops/H4pl115a", "https://tec.openplanner.team/stops/H4pl122a"], ["https://tec.openplanner.team/stops/H2ll182a", "https://tec.openplanner.team/stops/H2ll200a"], ["https://tec.openplanner.team/stops/X823aea", "https://tec.openplanner.team/stops/X824aea"], ["https://tec.openplanner.team/stops/N501dha", "https://tec.openplanner.team/stops/N501gcb"], ["https://tec.openplanner.team/stops/LwYbrkr1", "https://tec.openplanner.team/stops/LwYsour3"], ["https://tec.openplanner.team/stops/N348ada", "https://tec.openplanner.team/stops/N353awa"], ["https://tec.openplanner.team/stops/Clbecol2", "https://tec.openplanner.team/stops/H1lo120b"], ["https://tec.openplanner.team/stops/Cflmart2", "https://tec.openplanner.team/stops/Clafaub1"], ["https://tec.openplanner.team/stops/LNEec--1", "https://tec.openplanner.team/stops/LNEmoul2"], ["https://tec.openplanner.team/stops/H2na134a", "https://tec.openplanner.team/stops/H2na134b"], ["https://tec.openplanner.team/stops/X601aea", "https://tec.openplanner.team/stops/X601bta"], ["https://tec.openplanner.team/stops/LMNjard2", "https://tec.openplanner.team/stops/LPbec--1"], ["https://tec.openplanner.team/stops/X804bda", "https://tec.openplanner.team/stops/X804bdb"], ["https://tec.openplanner.team/stops/N543cbc", "https://tec.openplanner.team/stops/N543cfa"], ["https://tec.openplanner.team/stops/H4ka189a", "https://tec.openplanner.team/stops/H4ka189b"], ["https://tec.openplanner.team/stops/LmNkrew1", "https://tec.openplanner.team/stops/LmNkrew2"], ["https://tec.openplanner.team/stops/NL76aia", "https://tec.openplanner.team/stops/NL76aib"], ["https://tec.openplanner.team/stops/Bjodsje1", "https://tec.openplanner.team/stops/Bjodsje2"], ["https://tec.openplanner.team/stops/N557agb", "https://tec.openplanner.team/stops/N557aja"], ["https://tec.openplanner.team/stops/N534bbb", "https://tec.openplanner.team/stops/N534bfb"], ["https://tec.openplanner.team/stops/X922ajb", "https://tec.openplanner.team/stops/X942afa"], ["https://tec.openplanner.team/stops/LMEcour1", "https://tec.openplanner.team/stops/LMIcamp1"], ["https://tec.openplanner.team/stops/N543aia", "https://tec.openplanner.team/stops/N543cka"], ["https://tec.openplanner.team/stops/Boveklo2", "https://tec.openplanner.team/stops/Bovesol1"], ["https://tec.openplanner.team/stops/H4eg101a", "https://tec.openplanner.team/stops/H4eg103b"], ["https://tec.openplanner.team/stops/Cmyvesa1", "https://tec.openplanner.team/stops/Cmyvesa2"], ["https://tec.openplanner.team/stops/LbTweyn1", "https://tec.openplanner.team/stops/LbTweyn2"], ["https://tec.openplanner.team/stops/H4ha170b", "https://tec.openplanner.team/stops/H4me211b"], ["https://tec.openplanner.team/stops/LCShoux1", "https://tec.openplanner.team/stops/LCSmagn1"], ["https://tec.openplanner.team/stops/N501hrb", "https://tec.openplanner.team/stops/N501iob"], ["https://tec.openplanner.team/stops/LeUcamp2", "https://tec.openplanner.team/stops/LeUoe542"], ["https://tec.openplanner.team/stops/Cmaegli1", "https://tec.openplanner.team/stops/Cmastch1"], ["https://tec.openplanner.team/stops/Bmlnsms2", "https://tec.openplanner.team/stops/Bptbbie2"], ["https://tec.openplanner.team/stops/N368adb", "https://tec.openplanner.team/stops/N368aeb"], ["https://tec.openplanner.team/stops/LAyheid1", "https://tec.openplanner.team/stops/LPRfour1"], ["https://tec.openplanner.team/stops/H1ca108b", "https://tec.openplanner.team/stops/H1ne144a"], ["https://tec.openplanner.team/stops/Bblmpro1", "https://tec.openplanner.team/stops/Bblmwma1"], ["https://tec.openplanner.team/stops/N501lza", "https://tec.openplanner.team/stops/N501lzy"], ["https://tec.openplanner.team/stops/H1ho132b", "https://tec.openplanner.team/stops/H1ho141a"], ["https://tec.openplanner.team/stops/LVLf10-1", "https://tec.openplanner.team/stops/LVLf37-1"], ["https://tec.openplanner.team/stops/N201aea", "https://tec.openplanner.team/stops/N201aef"], ["https://tec.openplanner.team/stops/Ladgath1", "https://tec.openplanner.team/stops/Ladlimi1"], ["https://tec.openplanner.team/stops/LmYwall2", "https://tec.openplanner.team/stops/LsVprum3"], ["https://tec.openplanner.team/stops/H5at122b", "https://tec.openplanner.team/stops/H5la177b"], ["https://tec.openplanner.team/stops/LTRchpl1", "https://tec.openplanner.team/stops/LTRchpl2"], ["https://tec.openplanner.team/stops/X734apb", "https://tec.openplanner.team/stops/X734aqb"], ["https://tec.openplanner.team/stops/H1qv110b", "https://tec.openplanner.team/stops/H1qv114b"], ["https://tec.openplanner.team/stops/N501eta", "https://tec.openplanner.team/stops/N501etd"], ["https://tec.openplanner.team/stops/X782alb", "https://tec.openplanner.team/stops/X782anb"], ["https://tec.openplanner.team/stops/LBLghuy3", "https://tec.openplanner.team/stops/LBLgobc1"], ["https://tec.openplanner.team/stops/LLelava1", "https://tec.openplanner.team/stops/LVRchpl1"], ["https://tec.openplanner.team/stops/LrAknop2", "https://tec.openplanner.team/stops/LrAneud1"], ["https://tec.openplanner.team/stops/Btubegy1", "https://tec.openplanner.team/stops/Btubpir2"], ["https://tec.openplanner.team/stops/Lcemc--1", "https://tec.openplanner.team/stops/Lcepont6"], ["https://tec.openplanner.team/stops/LbHzent2", "https://tec.openplanner.team/stops/LsFcafe2"], ["https://tec.openplanner.team/stops/X917aba", "https://tec.openplanner.team/stops/X917abb"], ["https://tec.openplanner.team/stops/X640aca", "https://tec.openplanner.team/stops/X640ada"], ["https://tec.openplanner.team/stops/H1hg179b", "https://tec.openplanner.team/stops/H1hg180b"], ["https://tec.openplanner.team/stops/Csychap4", "https://tec.openplanner.team/stops/Csystan1"], ["https://tec.openplanner.team/stops/X982ama", "https://tec.openplanner.team/stops/X982ana"], ["https://tec.openplanner.team/stops/H2bh118a", "https://tec.openplanner.team/stops/H2bh121a"], ["https://tec.openplanner.team/stops/H4cw104b", "https://tec.openplanner.team/stops/H4lz161b"], ["https://tec.openplanner.team/stops/H5rx101a", "https://tec.openplanner.team/stops/H5rx114a"], ["https://tec.openplanner.team/stops/Cbfdufa2", "https://tec.openplanner.team/stops/Cbflong2"], ["https://tec.openplanner.team/stops/LNCneuv2", "https://tec.openplanner.team/stops/LNCneuv3"], ["https://tec.openplanner.team/stops/N360aaa", "https://tec.openplanner.team/stops/N360adb"], ["https://tec.openplanner.team/stops/LbOre3b1", "https://tec.openplanner.team/stops/LnErech2"], ["https://tec.openplanner.team/stops/N574aca", "https://tec.openplanner.team/stops/N576alb"], ["https://tec.openplanner.team/stops/H4pi132b", "https://tec.openplanner.team/stops/H4wp151b"], ["https://tec.openplanner.team/stops/X601dbb", "https://tec.openplanner.team/stops/X626akb"], ["https://tec.openplanner.team/stops/N114aab", "https://tec.openplanner.team/stops/N304abb"], ["https://tec.openplanner.team/stops/LeYwald1", "https://tec.openplanner.team/stops/LkOgren1"], ["https://tec.openplanner.team/stops/LROhael2", "https://tec.openplanner.team/stops/LWargeu2"], ["https://tec.openplanner.team/stops/H5at133a", "https://tec.openplanner.team/stops/H5at133b"], ["https://tec.openplanner.team/stops/Blascvi1", "https://tec.openplanner.team/stops/Blasvil1"], ["https://tec.openplanner.team/stops/Llgdfra1", "https://tec.openplanner.team/stops/Llgomal1"], ["https://tec.openplanner.team/stops/Ljubord2", "https://tec.openplanner.team/stops/Ljubruy2"], ["https://tec.openplanner.team/stops/LEHpech2", "https://tec.openplanner.team/stops/LRRmeta1"], ["https://tec.openplanner.team/stops/Cchmonu2", "https://tec.openplanner.team/stops/Cchmonu4"], ["https://tec.openplanner.team/stops/H1ci106a", "https://tec.openplanner.team/stops/H1no142a"], ["https://tec.openplanner.team/stops/N425aab", "https://tec.openplanner.team/stops/N425aha"], ["https://tec.openplanner.team/stops/H5at114a", "https://tec.openplanner.team/stops/H5at133a"], ["https://tec.openplanner.team/stops/Canlemo2", "https://tec.openplanner.team/stops/Clbhour1"], ["https://tec.openplanner.team/stops/N101adb", "https://tec.openplanner.team/stops/N101ama"], ["https://tec.openplanner.team/stops/LCdchod1", "https://tec.openplanner.team/stops/LCdchod2"], ["https://tec.openplanner.team/stops/Lhuleke2", "https://tec.openplanner.team/stops/Lvegend1"], ["https://tec.openplanner.team/stops/LMfbuck2", "https://tec.openplanner.team/stops/LMfpral1"], ["https://tec.openplanner.team/stops/Beclbar1", "https://tec.openplanner.team/stops/Becltri2"], ["https://tec.openplanner.team/stops/N232bgb", "https://tec.openplanner.team/stops/N232bhb"], ["https://tec.openplanner.team/stops/H1qv116a", "https://tec.openplanner.team/stops/H1qv116b"], ["https://tec.openplanner.team/stops/H1ms271b", "https://tec.openplanner.team/stops/H1ms288a"], ["https://tec.openplanner.team/stops/NL76akb", "https://tec.openplanner.team/stops/NL76alc"], ["https://tec.openplanner.team/stops/X760aga", "https://tec.openplanner.team/stops/X760agb"], ["https://tec.openplanner.team/stops/NR21abb", "https://tec.openplanner.team/stops/NR21afb"], ["https://tec.openplanner.team/stops/N503ahb", "https://tec.openplanner.team/stops/N503aia"], ["https://tec.openplanner.team/stops/Bbgncnd1", "https://tec.openplanner.team/stops/Bbgncnd2"], ["https://tec.openplanner.team/stops/LAVcime1", "https://tec.openplanner.team/stops/LAVstat1"], ["https://tec.openplanner.team/stops/H1ms908a", "https://tec.openplanner.team/stops/H1ms910a"], ["https://tec.openplanner.team/stops/LJuhaie1", "https://tec.openplanner.team/stops/LSDgris2"], ["https://tec.openplanner.team/stops/X823aca", "https://tec.openplanner.team/stops/X823acb"], ["https://tec.openplanner.team/stops/X640ada", "https://tec.openplanner.team/stops/X673aeb"], ["https://tec.openplanner.team/stops/Lfhlons2", "https://tec.openplanner.team/stops/Lfhweri2"], ["https://tec.openplanner.team/stops/LSUroyo2", "https://tec.openplanner.team/stops/LSZeg--1"], ["https://tec.openplanner.team/stops/LGEcons2", "https://tec.openplanner.team/stops/LGEpt--1"], ["https://tec.openplanner.team/stops/X947abc", "https://tec.openplanner.team/stops/X947aca"], ["https://tec.openplanner.team/stops/Blsmbfe1", "https://tec.openplanner.team/stops/Bneeace1"], ["https://tec.openplanner.team/stops/LWHkape2", "https://tec.openplanner.team/stops/LWHwaas4"], ["https://tec.openplanner.team/stops/Bovetsa2", "https://tec.openplanner.team/stops/Bwavtrt2"], ["https://tec.openplanner.team/stops/Bjodcoi2", "https://tec.openplanner.team/stops/Bpiejus1"], ["https://tec.openplanner.team/stops/H1sg146b", "https://tec.openplanner.team/stops/H1sg150c"], ["https://tec.openplanner.team/stops/Bhmmjco1", "https://tec.openplanner.team/stops/Bhmmsca1"], ["https://tec.openplanner.team/stops/LChvill*", "https://tec.openplanner.team/stops/LSUroyo2"], ["https://tec.openplanner.team/stops/LCeanne1", "https://tec.openplanner.team/stops/LGAbois1"], ["https://tec.openplanner.team/stops/LWAgare*", "https://tec.openplanner.team/stops/LWApr%C3%A9s3"], ["https://tec.openplanner.team/stops/Buccham2", "https://tec.openplanner.team/stops/Buccvoi1"], ["https://tec.openplanner.team/stops/Cfobriq1", "https://tec.openplanner.team/stops/Cfoperz1"], ["https://tec.openplanner.team/stops/Bnivath1", "https://tec.openplanner.team/stops/Bnivath2"], ["https://tec.openplanner.team/stops/LAUbirv2", "https://tec.openplanner.team/stops/LHMcruc2"], ["https://tec.openplanner.team/stops/Chpceri2", "https://tec.openplanner.team/stops/Chpchea2"], ["https://tec.openplanner.team/stops/Bcseaba1", "https://tec.openplanner.team/stops/Bottpar2"], ["https://tec.openplanner.team/stops/X991agc", "https://tec.openplanner.team/stops/X991aja"], ["https://tec.openplanner.team/stops/LBGcent1", "https://tec.openplanner.team/stops/LHDpota3"], ["https://tec.openplanner.team/stops/LlA43--2", "https://tec.openplanner.team/stops/LrUoudl1"], ["https://tec.openplanner.team/stops/N516alb", "https://tec.openplanner.team/stops/N516apb"], ["https://tec.openplanner.team/stops/H2pe162a", "https://tec.openplanner.team/stops/H2sv217a"], ["https://tec.openplanner.team/stops/X627aab", "https://tec.openplanner.team/stops/X627aba"], ["https://tec.openplanner.team/stops/N136aab", "https://tec.openplanner.team/stops/N138ajb"], ["https://tec.openplanner.team/stops/LTheg--1", "https://tec.openplanner.team/stops/LThgare2"], ["https://tec.openplanner.team/stops/LaFbruc1", "https://tec.openplanner.team/stops/LaFbruc2"], ["https://tec.openplanner.team/stops/Bmonbor1", "https://tec.openplanner.team/stops/Bmonbri1"], ["https://tec.openplanner.team/stops/Cjxdesc2", "https://tec.openplanner.team/stops/Cjxvalh2"], ["https://tec.openplanner.team/stops/Bjodath2", "https://tec.openplanner.team/stops/Bjodath3"], ["https://tec.openplanner.team/stops/LDoeg--1", "https://tec.openplanner.team/stops/LDoeg--2"], ["https://tec.openplanner.team/stops/X601ata", "https://tec.openplanner.team/stops/X601aud"], ["https://tec.openplanner.team/stops/H4am101b", "https://tec.openplanner.team/stops/H4rs118b"], ["https://tec.openplanner.team/stops/X782aaa", "https://tec.openplanner.team/stops/X782ada"], ["https://tec.openplanner.team/stops/N539aca", "https://tec.openplanner.team/stops/N542arb"], ["https://tec.openplanner.team/stops/Bllnfle2", "https://tec.openplanner.team/stops/Bllnlb51"], ["https://tec.openplanner.team/stops/H1bi104a", "https://tec.openplanner.team/stops/H1bi104b"], ["https://tec.openplanner.team/stops/Ccyga4", "https://tec.openplanner.team/stops/Cvlcalv2"], ["https://tec.openplanner.team/stops/X896aaa", "https://tec.openplanner.team/stops/X898aob"], ["https://tec.openplanner.team/stops/X615apa", "https://tec.openplanner.team/stops/X615aqb"], ["https://tec.openplanner.team/stops/H2ma204b", "https://tec.openplanner.team/stops/H3th131a"], ["https://tec.openplanner.team/stops/H1by103a", "https://tec.openplanner.team/stops/H1by103b"], ["https://tec.openplanner.team/stops/LmCkirc2", "https://tec.openplanner.team/stops/LrGzent1"], ["https://tec.openplanner.team/stops/H1ne139a", "https://tec.openplanner.team/stops/H1ne150b"], ["https://tec.openplanner.team/stops/X952aia", "https://tec.openplanner.team/stops/X952aib"], ["https://tec.openplanner.team/stops/LORpave2", "https://tec.openplanner.team/stops/LORthie1"], ["https://tec.openplanner.team/stops/LsVrodt2", "https://tec.openplanner.team/stops/LsVviel1"], ["https://tec.openplanner.team/stops/H1ba114a", "https://tec.openplanner.team/stops/H1ba114b"], ["https://tec.openplanner.team/stops/H1ms279b", "https://tec.openplanner.team/stops/H1ms367a"], ["https://tec.openplanner.team/stops/LENarde2", "https://tec.openplanner.team/stops/LENchem1"], ["https://tec.openplanner.team/stops/LNCmele1", "https://tec.openplanner.team/stops/LRRchea3"], ["https://tec.openplanner.team/stops/Cfamate1", "https://tec.openplanner.team/stops/Cfamate2"], ["https://tec.openplanner.team/stops/H4ae101a", "https://tec.openplanner.team/stops/H4ae101b"], ["https://tec.openplanner.team/stops/N540ada", "https://tec.openplanner.team/stops/N540aha"], ["https://tec.openplanner.team/stops/Bfelada1", "https://tec.openplanner.team/stops/Bfelada2"], ["https://tec.openplanner.team/stops/LmYeich1", "https://tec.openplanner.team/stops/LmYeich2"], ["https://tec.openplanner.team/stops/Cmmheur1", "https://tec.openplanner.team/stops/Cmyrens2"], ["https://tec.openplanner.team/stops/LDLgran3", "https://tec.openplanner.team/stops/LHYlinc1"], ["https://tec.openplanner.team/stops/X908aka", "https://tec.openplanner.team/stops/X911aaa"], ["https://tec.openplanner.team/stops/LBIcabi1", "https://tec.openplanner.team/stops/LBIhann1"], ["https://tec.openplanner.team/stops/H1el135a", "https://tec.openplanner.team/stops/H1el140c"], ["https://tec.openplanner.team/stops/H4bd112b", "https://tec.openplanner.team/stops/H4ma411b"], ["https://tec.openplanner.team/stops/LsVfrde2", "https://tec.openplanner.team/stops/LsVrodt1"], ["https://tec.openplanner.team/stops/Lagmair1", "https://tec.openplanner.team/stops/Lagmair2"], ["https://tec.openplanner.team/stops/Berngrt2", "https://tec.openplanner.team/stops/Bernpon2"], ["https://tec.openplanner.team/stops/H5rx150a", "https://tec.openplanner.team/stops/H5rx151a"], ["https://tec.openplanner.team/stops/Lbocruc1", "https://tec.openplanner.team/stops/Lbocruc2"], ["https://tec.openplanner.team/stops/N501erb", "https://tec.openplanner.team/stops/N501lpa"], ["https://tec.openplanner.team/stops/X614aka", "https://tec.openplanner.team/stops/X614ara"], ["https://tec.openplanner.team/stops/X904aba", "https://tec.openplanner.team/stops/X904aca"], ["https://tec.openplanner.team/stops/Cmmgadi2", "https://tec.openplanner.team/stops/Cmmramb1"], ["https://tec.openplanner.team/stops/N310aea", "https://tec.openplanner.team/stops/X892aga"], ["https://tec.openplanner.team/stops/LFAwale1", "https://tec.openplanner.team/stops/LLTther1"], ["https://tec.openplanner.team/stops/Cchfran1", "https://tec.openplanner.team/stops/Cchrmon1"], ["https://tec.openplanner.team/stops/X633amb", "https://tec.openplanner.team/stops/X634aab"], ["https://tec.openplanner.team/stops/H1og130b", "https://tec.openplanner.team/stops/H1og133b"], ["https://tec.openplanner.team/stops/Livgera1", "https://tec.openplanner.team/stops/Livgera5"], ["https://tec.openplanner.team/stops/N569aja", "https://tec.openplanner.team/stops/N569alb"], ["https://tec.openplanner.team/stops/LPbchat1", "https://tec.openplanner.team/stops/LPbpl--1"], ["https://tec.openplanner.team/stops/N503akb", "https://tec.openplanner.team/stops/N580afa"], ["https://tec.openplanner.team/stops/LVllieg2", "https://tec.openplanner.team/stops/LVlplan2"], ["https://tec.openplanner.team/stops/X614aba", "https://tec.openplanner.team/stops/X614abb"], ["https://tec.openplanner.team/stops/X725aed", "https://tec.openplanner.team/stops/X725aza"], ["https://tec.openplanner.team/stops/X942aea", "https://tec.openplanner.team/stops/X942afa"], ["https://tec.openplanner.team/stops/N543axa", "https://tec.openplanner.team/stops/N543btb"], ["https://tec.openplanner.team/stops/Lsechan1", "https://tec.openplanner.team/stops/Lsechan2"], ["https://tec.openplanner.team/stops/H4lu128a", "https://tec.openplanner.team/stops/H4mo195b"], ["https://tec.openplanner.team/stops/X723aaa", "https://tec.openplanner.team/stops/X724ada"], ["https://tec.openplanner.team/stops/X898afa", "https://tec.openplanner.team/stops/X898ama"], ["https://tec.openplanner.team/stops/X902aib", "https://tec.openplanner.team/stops/X902aka"], ["https://tec.openplanner.team/stops/H1ob334a", "https://tec.openplanner.team/stops/H1ob334b"], ["https://tec.openplanner.team/stops/X804cba", "https://tec.openplanner.team/stops/X818aab"], ["https://tec.openplanner.team/stops/NC23aab", "https://tec.openplanner.team/stops/NC23aba"], ["https://tec.openplanner.team/stops/H1me115a", "https://tec.openplanner.team/stops/H1so132b"], ["https://tec.openplanner.team/stops/LVNroua2", "https://tec.openplanner.team/stops/LWDsott4"], ["https://tec.openplanner.team/stops/Llgrege2", "https://tec.openplanner.team/stops/LlgR-F1*"], ["https://tec.openplanner.team/stops/X750aba", "https://tec.openplanner.team/stops/X750ada"], ["https://tec.openplanner.team/stops/X725aza", "https://tec.openplanner.team/stops/X725bca"], ["https://tec.openplanner.team/stops/Ccpetan1", "https://tec.openplanner.team/stops/Ccpsecp2"], ["https://tec.openplanner.team/stops/LREaube1", "https://tec.openplanner.team/stops/LREsaul2"], ["https://tec.openplanner.team/stops/N579afb", "https://tec.openplanner.team/stops/N580ahb"], ["https://tec.openplanner.team/stops/LTPpres2", "https://tec.openplanner.team/stops/LTPspay2"], ["https://tec.openplanner.team/stops/N106ahb", "https://tec.openplanner.team/stops/N106aib"], ["https://tec.openplanner.team/stops/H4ty314a", "https://tec.openplanner.team/stops/H4ty314d"], ["https://tec.openplanner.team/stops/LAibego2", "https://tec.openplanner.team/stops/LAipala1"], ["https://tec.openplanner.team/stops/Cgzabau2", "https://tec.openplanner.team/stops/Cgzabau3"], ["https://tec.openplanner.team/stops/Bclglbu1", "https://tec.openplanner.team/stops/Bcrbcel1"], ["https://tec.openplanner.team/stops/H1ho125c", "https://tec.openplanner.team/stops/H1ho130a"], ["https://tec.openplanner.team/stops/X638aka", "https://tec.openplanner.team/stops/X652afc"], ["https://tec.openplanner.team/stops/H1vh135b", "https://tec.openplanner.team/stops/H1vh136a"], ["https://tec.openplanner.team/stops/Boveker1", "https://tec.openplanner.team/stops/Bovesnh1"], ["https://tec.openplanner.team/stops/LFmcarr2", "https://tec.openplanner.team/stops/LKmcabi1"], ["https://tec.openplanner.team/stops/Bblavba1", "https://tec.openplanner.team/stops/Bblavol2"], ["https://tec.openplanner.team/stops/Bsengma1", "https://tec.openplanner.team/stops/Bsenpeu1"], ["https://tec.openplanner.team/stops/Cmlange1", "https://tec.openplanner.team/stops/Cmlange2"], ["https://tec.openplanner.team/stops/Ccugend1", "https://tec.openplanner.team/stops/Ccugend2"], ["https://tec.openplanner.team/stops/H2lc170a", "https://tec.openplanner.team/stops/H2ll182a"], ["https://tec.openplanner.team/stops/X903aab", "https://tec.openplanner.team/stops/X903adb"], ["https://tec.openplanner.team/stops/N513bbc", "https://tec.openplanner.team/stops/N516aob"], ["https://tec.openplanner.team/stops/H1te187a", "https://tec.openplanner.team/stops/H1te188a"], ["https://tec.openplanner.team/stops/X363aba", "https://tec.openplanner.team/stops/X363adb"], ["https://tec.openplanner.team/stops/LHEchar2", "https://tec.openplanner.team/stops/LHEgare2"], ["https://tec.openplanner.team/stops/LLSba4-1", "https://tec.openplanner.team/stops/LLSbajo2"], ["https://tec.openplanner.team/stops/Bsrgegl1", "https://tec.openplanner.team/stops/Bsrgegl2"], ["https://tec.openplanner.team/stops/H4ga148b", "https://tec.openplanner.team/stops/H4ga162a"], ["https://tec.openplanner.team/stops/Ccobour2", "https://tec.openplanner.team/stops/Csograf1"], ["https://tec.openplanner.team/stops/X733aca", "https://tec.openplanner.team/stops/X733acb"], ["https://tec.openplanner.team/stops/N232aza", "https://tec.openplanner.team/stops/N232baa"], ["https://tec.openplanner.team/stops/Ccucora2", "https://tec.openplanner.team/stops/Ccucorb1"], ["https://tec.openplanner.team/stops/N513atb", "https://tec.openplanner.team/stops/N513ava"], ["https://tec.openplanner.team/stops/LhGadap1", "https://tec.openplanner.team/stops/LhGbahn3"], ["https://tec.openplanner.team/stops/Cgystbe2", "https://tec.openplanner.team/stops/Cmtdepo2"], ["https://tec.openplanner.team/stops/Caiegli1", "https://tec.openplanner.team/stops/Cprvsar2"], ["https://tec.openplanner.team/stops/X724ada", "https://tec.openplanner.team/stops/X724adb"], ["https://tec.openplanner.team/stops/X908aob", "https://tec.openplanner.team/stops/X908apb"], ["https://tec.openplanner.team/stops/H2hg156a", "https://tec.openplanner.team/stops/H2hg156b"], ["https://tec.openplanner.team/stops/LMnlogi1", "https://tec.openplanner.team/stops/N223aaa"], ["https://tec.openplanner.team/stops/LAOeg--1", "https://tec.openplanner.team/stops/LBpbruy2"], ["https://tec.openplanner.team/stops/LFCotte1", "https://tec.openplanner.team/stops/LFCotte2"], ["https://tec.openplanner.team/stops/LTamag1", "https://tec.openplanner.team/stops/LTamag2"], ["https://tec.openplanner.team/stops/X801clb", "https://tec.openplanner.team/stops/X801cma"], ["https://tec.openplanner.team/stops/X654aea", "https://tec.openplanner.team/stops/X654afb"], ["https://tec.openplanner.team/stops/Bboueta1", "https://tec.openplanner.team/stops/Bbounci1"], ["https://tec.openplanner.team/stops/LMHec--2", "https://tec.openplanner.team/stops/LMHeg--2"], ["https://tec.openplanner.team/stops/Bblmcel1", "https://tec.openplanner.team/stops/Bcrbrpb2"], ["https://tec.openplanner.team/stops/LhRkirc1", "https://tec.openplanner.team/stops/LsCback1"], ["https://tec.openplanner.team/stops/X996adb", "https://tec.openplanner.team/stops/X996ahb"], ["https://tec.openplanner.team/stops/X938ada", "https://tec.openplanner.team/stops/X939aha"], ["https://tec.openplanner.team/stops/H1bb120b", "https://tec.openplanner.team/stops/H1do120b"], ["https://tec.openplanner.team/stops/H1he103b", "https://tec.openplanner.team/stops/H1po132b"], ["https://tec.openplanner.team/stops/LHUgodi2", "https://tec.openplanner.team/stops/LHUlebe8"], ["https://tec.openplanner.team/stops/LVlfooz3", "https://tec.openplanner.team/stops/LVlleno1"], ["https://tec.openplanner.team/stops/Cgoclad1", "https://tec.openplanner.team/stops/Cgoloca1"], ["https://tec.openplanner.team/stops/X878abb", "https://tec.openplanner.team/stops/X878adb"], ["https://tec.openplanner.team/stops/Lsnagne2", "https://tec.openplanner.team/stops/Lsnlibe1"], ["https://tec.openplanner.team/stops/Lcehipp1", "https://tec.openplanner.team/stops/Lcehipp2"], ["https://tec.openplanner.team/stops/H2hg145a", "https://tec.openplanner.team/stops/H2hg146b"], ["https://tec.openplanner.team/stops/Lbrfoid4", "https://tec.openplanner.team/stops/Lbrplai2"], ["https://tec.openplanner.team/stops/LSlpays2", "https://tec.openplanner.team/stops/X919ala"], ["https://tec.openplanner.team/stops/X829abb", "https://tec.openplanner.team/stops/X829acb"], ["https://tec.openplanner.team/stops/LON02--2", "https://tec.openplanner.team/stops/LON21--2"], ["https://tec.openplanner.team/stops/LkOgren1", "https://tec.openplanner.team/stops/LlCauto2"], ["https://tec.openplanner.team/stops/Cnachcu2", "https://tec.openplanner.team/stops/Cnagrro1"], ["https://tec.openplanner.team/stops/H5el107b", "https://tec.openplanner.team/stops/H5el117b"], ["https://tec.openplanner.team/stops/Cthgrat1", "https://tec.openplanner.team/stops/Cthpano2"], ["https://tec.openplanner.team/stops/Lemdieu1", "https://tec.openplanner.team/stops/Lempass1"], ["https://tec.openplanner.team/stops/Cgxvkho3", "https://tec.openplanner.team/stops/Cgxvkho4"], ["https://tec.openplanner.team/stops/LAUnico1", "https://tec.openplanner.team/stops/LAUtism1"], ["https://tec.openplanner.team/stops/X371aia", "https://tec.openplanner.team/stops/X371aib"], ["https://tec.openplanner.team/stops/H1au102b", "https://tec.openplanner.team/stops/H1au103a"], ["https://tec.openplanner.team/stops/X609aja", "https://tec.openplanner.team/stops/X609ajb"], ["https://tec.openplanner.team/stops/Bquegob2", "https://tec.openplanner.team/stops/Brebmtg2"], ["https://tec.openplanner.team/stops/N134abb", "https://tec.openplanner.team/stops/N134aeb"], ["https://tec.openplanner.team/stops/X777aca", "https://tec.openplanner.team/stops/X784abb"], ["https://tec.openplanner.team/stops/Blincal1", "https://tec.openplanner.team/stops/Bpelegl4"], ["https://tec.openplanner.team/stops/X723aaa", "https://tec.openplanner.team/stops/X775akb"], ["https://tec.openplanner.team/stops/LORdtec*", "https://tec.openplanner.team/stops/LORherl1"], ["https://tec.openplanner.team/stops/Bquegob1", "https://tec.openplanner.team/stops/Bquegob2"], ["https://tec.openplanner.team/stops/N209afb", "https://tec.openplanner.team/stops/NL79aaa"], ["https://tec.openplanner.team/stops/X888aga", "https://tec.openplanner.team/stops/X888agb"], ["https://tec.openplanner.team/stops/Bjodgai2", "https://tec.openplanner.team/stops/Bjodmal1"], ["https://tec.openplanner.team/stops/Crcgare1", "https://tec.openplanner.team/stops/Crcgare2"], ["https://tec.openplanner.team/stops/LCIsucr2", "https://tec.openplanner.team/stops/LVHweri2"], ["https://tec.openplanner.team/stops/Lmocoop2", "https://tec.openplanner.team/stops/Lmojoan1"], ["https://tec.openplanner.team/stops/Bwatfva2", "https://tec.openplanner.team/stops/Bwatgib1"], ["https://tec.openplanner.team/stops/X760aaa", "https://tec.openplanner.team/stops/X760aba"], ["https://tec.openplanner.team/stops/X941afb", "https://tec.openplanner.team/stops/X941agb"], ["https://tec.openplanner.team/stops/Llgchai1", "https://tec.openplanner.team/stops/Llggerm1"], ["https://tec.openplanner.team/stops/N308bcb", "https://tec.openplanner.team/stops/N331afd"], ["https://tec.openplanner.team/stops/H4ty281b", "https://tec.openplanner.team/stops/H4ty307a"], ["https://tec.openplanner.team/stops/LHUpsar2", "https://tec.openplanner.team/stops/LHUsauv2"], ["https://tec.openplanner.team/stops/H1bg110b", "https://tec.openplanner.team/stops/H1hy125a"], ["https://tec.openplanner.team/stops/H1hr121a", "https://tec.openplanner.team/stops/H3so171a"], ["https://tec.openplanner.team/stops/H4bo115b", "https://tec.openplanner.team/stops/H4bo117a"], ["https://tec.openplanner.team/stops/LrAbotz2", "https://tec.openplanner.team/stops/LrApley2"], ["https://tec.openplanner.team/stops/NH01aaa", "https://tec.openplanner.team/stops/NH01aja"], ["https://tec.openplanner.team/stops/X824aeb", "https://tec.openplanner.team/stops/X824afb"], ["https://tec.openplanner.team/stops/N501ewa", "https://tec.openplanner.team/stops/N501hkb"], ["https://tec.openplanner.team/stops/H5fl101a", "https://tec.openplanner.team/stops/H5fl102d"], ["https://tec.openplanner.team/stops/Lvtchpl2", "https://tec.openplanner.team/stops/Lvtchpl4"], ["https://tec.openplanner.team/stops/N244awa", "https://tec.openplanner.team/stops/N248aca"], ["https://tec.openplanner.team/stops/Lmolagu2", "https://tec.openplanner.team/stops/Lmopech2"], ["https://tec.openplanner.team/stops/Ljemont1", "https://tec.openplanner.team/stops/Ljexhav4"], ["https://tec.openplanner.team/stops/H4ar107b", "https://tec.openplanner.team/stops/H4pl132a"], ["https://tec.openplanner.team/stops/Csedoua1", "https://tec.openplanner.team/stops/Csepier1"], ["https://tec.openplanner.team/stops/Bsjgegl1", "https://tec.openplanner.team/stops/Bzluvil2"], ["https://tec.openplanner.team/stops/Ctafran1", "https://tec.openplanner.team/stops/N543cpa"], ["https://tec.openplanner.team/stops/H1je366a", "https://tec.openplanner.team/stops/H1je366b"], ["https://tec.openplanner.team/stops/LLebibl3", "https://tec.openplanner.team/stops/X547ahb"], ["https://tec.openplanner.team/stops/Livrame1", "https://tec.openplanner.team/stops/Livroch1"], ["https://tec.openplanner.team/stops/X911aja", "https://tec.openplanner.team/stops/X911ama"], ["https://tec.openplanner.team/stops/X715acc", "https://tec.openplanner.team/stops/X715ada"], ["https://tec.openplanner.team/stops/X631abb", "https://tec.openplanner.team/stops/X631acb"], ["https://tec.openplanner.team/stops/X911adb", "https://tec.openplanner.team/stops/X911asa"], ["https://tec.openplanner.team/stops/H2pr114a", "https://tec.openplanner.team/stops/H3so171a"], ["https://tec.openplanner.team/stops/Bottegl4", "https://tec.openplanner.team/stops/Bottpma2"], ["https://tec.openplanner.team/stops/N534bkg", "https://tec.openplanner.team/stops/N534blg"], ["https://tec.openplanner.team/stops/X771acb", "https://tec.openplanner.team/stops/X771adb"], ["https://tec.openplanner.team/stops/LREchal1", "https://tec.openplanner.team/stops/LREprea2"], ["https://tec.openplanner.team/stops/LCPaube1", "https://tec.openplanner.team/stops/LCPaywa1"], ["https://tec.openplanner.team/stops/X777aab", "https://tec.openplanner.team/stops/X777abb"], ["https://tec.openplanner.team/stops/Llgcoro2", "https://tec.openplanner.team/stops/Llgcoro4"], ["https://tec.openplanner.team/stops/Llgbobu1", "https://tec.openplanner.team/stops/Lmochar2"], ["https://tec.openplanner.team/stops/X765abb", "https://tec.openplanner.team/stops/X765acb"], ["https://tec.openplanner.team/stops/H5rx140a", "https://tec.openplanner.team/stops/H5rx146b"], ["https://tec.openplanner.team/stops/X804bwa", "https://tec.openplanner.team/stops/X804bwb"], ["https://tec.openplanner.team/stops/LaMjous1", "https://tec.openplanner.team/stops/LaMpark2"], ["https://tec.openplanner.team/stops/Cfabaty1", "https://tec.openplanner.team/stops/Cfabaty4"], ["https://tec.openplanner.team/stops/Csabrun1", "https://tec.openplanner.team/stops/Cvpsthu2"], ["https://tec.openplanner.team/stops/LSNgerm1", "https://tec.openplanner.team/stops/LWerola1"], ["https://tec.openplanner.team/stops/X740aab", "https://tec.openplanner.team/stops/X740acb"], ["https://tec.openplanner.team/stops/Bglacsr1", "https://tec.openplanner.team/stops/Bwaygrg2"], ["https://tec.openplanner.team/stops/X947aaa", "https://tec.openplanner.team/stops/X948aqb"], ["https://tec.openplanner.team/stops/H2sb233c", "https://tec.openplanner.team/stops/H2sb235b"], ["https://tec.openplanner.team/stops/Llgtill1", "https://tec.openplanner.team/stops/Llgtunn2"], ["https://tec.openplanner.team/stops/LRRchea2", "https://tec.openplanner.team/stops/LRRchea4"], ["https://tec.openplanner.team/stops/Llgcoro2", "https://tec.openplanner.team/stops/Llgtir-1"], ["https://tec.openplanner.team/stops/H1em101a", "https://tec.openplanner.team/stops/H1ev115a"], ["https://tec.openplanner.team/stops/N155afb", "https://tec.openplanner.team/stops/N155aga"], ["https://tec.openplanner.team/stops/N308aca", "https://tec.openplanner.team/stops/N308bab"], ["https://tec.openplanner.team/stops/X614aha", "https://tec.openplanner.team/stops/X614aub"], ["https://tec.openplanner.team/stops/H4ef110a", "https://tec.openplanner.team/stops/H4ef138b"], ["https://tec.openplanner.team/stops/LAuchau2", "https://tec.openplanner.team/stops/LMubras2"], ["https://tec.openplanner.team/stops/LBTcarr4", "https://tec.openplanner.team/stops/LCxchal2"], ["https://tec.openplanner.team/stops/LODamco1", "https://tec.openplanner.team/stops/LODarbr1"], ["https://tec.openplanner.team/stops/Cwgrans2", "https://tec.openplanner.team/stops/Cwgrans4"], ["https://tec.openplanner.team/stops/Bbst4br3", "https://tec.openplanner.team/stops/Bhlvlou1"], ["https://tec.openplanner.team/stops/X608ama", "https://tec.openplanner.team/stops/X608axa"], ["https://tec.openplanner.team/stops/X839ada", "https://tec.openplanner.team/stops/X839aeb"], ["https://tec.openplanner.team/stops/Btslegl2", "https://tec.openplanner.team/stops/Btsllnd2"], ["https://tec.openplanner.team/stops/Ccyga7", "https://tec.openplanner.team/stops/NH01aka"], ["https://tec.openplanner.team/stops/Loucham1", "https://tec.openplanner.team/stops/Loucham4"], ["https://tec.openplanner.team/stops/Blimegl1", "https://tec.openplanner.team/stops/Bottgar6"], ["https://tec.openplanner.team/stops/LsTgren2", "https://tec.openplanner.team/stops/LwPdorf2"], ["https://tec.openplanner.team/stops/H1ob330a", "https://tec.openplanner.team/stops/H1sd366a"], ["https://tec.openplanner.team/stops/X661axb", "https://tec.openplanner.team/stops/X817ada"], ["https://tec.openplanner.team/stops/Lhrspi-2", "https://tec.openplanner.team/stops/Lmirca-1"], ["https://tec.openplanner.team/stops/N501gva", "https://tec.openplanner.team/stops/N501hdb"], ["https://tec.openplanner.team/stops/LBBabat1", "https://tec.openplanner.team/stops/LBBpech2"], ["https://tec.openplanner.team/stops/H2ec106a", "https://tec.openplanner.team/stops/H2me115a"], ["https://tec.openplanner.team/stops/N532acb", "https://tec.openplanner.team/stops/N532ajb"], ["https://tec.openplanner.team/stops/H4co107b", "https://tec.openplanner.team/stops/H4co108b"], ["https://tec.openplanner.team/stops/N501ccb", "https://tec.openplanner.team/stops/N521aua"], ["https://tec.openplanner.team/stops/LTAbran2", "https://tec.openplanner.team/stops/LTAchau2"], ["https://tec.openplanner.team/stops/LBTfoot2", "https://tec.openplanner.team/stops/LBTwauc2"], ["https://tec.openplanner.team/stops/H2me113b", "https://tec.openplanner.team/stops/H2mi123b"], ["https://tec.openplanner.team/stops/N205acb", "https://tec.openplanner.team/stops/N220acb"], ["https://tec.openplanner.team/stops/N538asc", "https://tec.openplanner.team/stops/N538axb"], ["https://tec.openplanner.team/stops/LbUkrin2", "https://tec.openplanner.team/stops/LmUvilz2"], ["https://tec.openplanner.team/stops/LCeanne1", "https://tec.openplanner.team/stops/LLWchat1"], ["https://tec.openplanner.team/stops/X896afa", "https://tec.openplanner.team/stops/X896ahb"], ["https://tec.openplanner.team/stops/N569ama", "https://tec.openplanner.team/stops/N569ana"], ["https://tec.openplanner.team/stops/X601cma", "https://tec.openplanner.team/stops/X601dia"], ["https://tec.openplanner.team/stops/Berncim1", "https://tec.openplanner.team/stops/Berncim3"], ["https://tec.openplanner.team/stops/LmYkreu1", "https://tec.openplanner.team/stops/LmYkreu2"], ["https://tec.openplanner.team/stops/Cdahtvi2", "https://tec.openplanner.team/stops/Cdamare1"], ["https://tec.openplanner.team/stops/H4ty356a", "https://tec.openplanner.team/stops/H4ty356d"], ["https://tec.openplanner.team/stops/X985aab", "https://tec.openplanner.team/stops/X985aac"], ["https://tec.openplanner.team/stops/LaAjahn1", "https://tec.openplanner.team/stops/LaAjahn2"], ["https://tec.openplanner.team/stops/H2fy121a", "https://tec.openplanner.team/stops/H2lh127a"], ["https://tec.openplanner.team/stops/Louegla1", "https://tec.openplanner.team/stops/Louencl1"], ["https://tec.openplanner.team/stops/N111aeb", "https://tec.openplanner.team/stops/N111afb"], ["https://tec.openplanner.team/stops/H1ho128a", "https://tec.openplanner.team/stops/H1ho128b"], ["https://tec.openplanner.team/stops/N501ama", "https://tec.openplanner.team/stops/N501apa"], ["https://tec.openplanner.team/stops/X899aaa", "https://tec.openplanner.team/stops/X899ada"], ["https://tec.openplanner.team/stops/X872aba", "https://tec.openplanner.team/stops/X872abb"], ["https://tec.openplanner.team/stops/LPAchpl1", "https://tec.openplanner.team/stops/LPAchpl2"], ["https://tec.openplanner.team/stops/LhDkreu1", "https://tec.openplanner.team/stops/LhDkreu2"], ["https://tec.openplanner.team/stops/N127aja", "https://tec.openplanner.team/stops/N127bfa"], ["https://tec.openplanner.team/stops/H1gy112b", "https://tec.openplanner.team/stops/H1gy114b"], ["https://tec.openplanner.team/stops/NL73acb", "https://tec.openplanner.team/stops/NL73ada"], ["https://tec.openplanner.team/stops/X955aab", "https://tec.openplanner.team/stops/X955adb"], ["https://tec.openplanner.team/stops/Bsoigar1", "https://tec.openplanner.team/stops/H3so166a"], ["https://tec.openplanner.team/stops/X631aba", "https://tec.openplanner.team/stops/X631adb"], ["https://tec.openplanner.team/stops/Bbldmun2", "https://tec.openplanner.team/stops/Bhmmjco1"], ["https://tec.openplanner.team/stops/N501cab", "https://tec.openplanner.team/stops/N521aua"], ["https://tec.openplanner.team/stops/Cctcoll2", "https://tec.openplanner.team/stops/Cctpass2"], ["https://tec.openplanner.team/stops/Llghars7", "https://tec.openplanner.team/stops/Llgm%C3%A9di2"], ["https://tec.openplanner.team/stops/Bbghpln1", "https://tec.openplanner.team/stops/Benggar1"], ["https://tec.openplanner.team/stops/N117aba", "https://tec.openplanner.team/stops/N117aga"], ["https://tec.openplanner.team/stops/X625aga", "https://tec.openplanner.team/stops/X625agb"], ["https://tec.openplanner.team/stops/Blinbru1", "https://tec.openplanner.team/stops/Blinhue2"], ["https://tec.openplanner.team/stops/N501fma", "https://tec.openplanner.team/stops/N501kvb"], ["https://tec.openplanner.team/stops/Csygare1", "https://tec.openplanner.team/stops/Csygare2"], ["https://tec.openplanner.team/stops/H4ir162a", "https://tec.openplanner.team/stops/H4ir162b"], ["https://tec.openplanner.team/stops/N153aba", "https://tec.openplanner.team/stops/N153abb"], ["https://tec.openplanner.team/stops/Cpctunn1", "https://tec.openplanner.team/stops/Cpctunn2"], ["https://tec.openplanner.team/stops/Lfhmalv2", "https://tec.openplanner.team/stops/Lfhnrou1"], ["https://tec.openplanner.team/stops/Ccipier1", "https://tec.openplanner.team/stops/Ccivill1"], ["https://tec.openplanner.team/stops/LOLbout2", "https://tec.openplanner.team/stops/LOLcroi2"], ["https://tec.openplanner.team/stops/H2hp116a", "https://tec.openplanner.team/stops/H2hp118b"], ["https://tec.openplanner.team/stops/Cbmplac1", "https://tec.openplanner.team/stops/Clcfall4"], ["https://tec.openplanner.team/stops/X736acb", "https://tec.openplanner.team/stops/X736adb"], ["https://tec.openplanner.team/stops/X908ajb", "https://tec.openplanner.team/stops/X908aka"], ["https://tec.openplanner.team/stops/H1ho133a", "https://tec.openplanner.team/stops/H1ho133b"], ["https://tec.openplanner.team/stops/LCRabbe2", "https://tec.openplanner.team/stops/LCRrape1"], ["https://tec.openplanner.team/stops/LWecorn1", "https://tec.openplanner.team/stops/LWerola2"], ["https://tec.openplanner.team/stops/X746abb", "https://tec.openplanner.team/stops/X746acb"], ["https://tec.openplanner.team/stops/Lhrdeme1", "https://tec.openplanner.team/stops/Lhrespe2"], ["https://tec.openplanner.team/stops/LVnrock1", "https://tec.openplanner.team/stops/LVnrock2"], ["https://tec.openplanner.team/stops/Lagjard1", "https://tec.openplanner.team/stops/Lagmair2"], ["https://tec.openplanner.team/stops/H3lr106a", "https://tec.openplanner.team/stops/H3lr106b"], ["https://tec.openplanner.team/stops/H1cu118a", "https://tec.openplanner.team/stops/H1cu130a"], ["https://tec.openplanner.team/stops/LFUfonc1", "https://tec.openplanner.team/stops/LFUfonc2"], ["https://tec.openplanner.team/stops/X754aoa", "https://tec.openplanner.team/stops/X754apa"], ["https://tec.openplanner.team/stops/X641axa", "https://tec.openplanner.team/stops/X641ayb"], ["https://tec.openplanner.team/stops/LMOf21-1", "https://tec.openplanner.team/stops/LMOs45-1"], ["https://tec.openplanner.team/stops/Bblague2", "https://tec.openplanner.team/stops/Bblapje1"], ["https://tec.openplanner.team/stops/H1hr122b", "https://tec.openplanner.team/stops/H1hr124b"], ["https://tec.openplanner.team/stops/N514aha", "https://tec.openplanner.team/stops/N515akb"], ["https://tec.openplanner.team/stops/Bhmmcor1", "https://tec.openplanner.team/stops/Btlgmou1"], ["https://tec.openplanner.team/stops/Cgycvie2", "https://tec.openplanner.team/stops/Cgynuto1"], ["https://tec.openplanner.team/stops/H4mb142a", "https://tec.openplanner.team/stops/H4mb143a"], ["https://tec.openplanner.team/stops/X945aba", "https://tec.openplanner.team/stops/X945acb"], ["https://tec.openplanner.team/stops/LBlhaut2", "https://tec.openplanner.team/stops/LLUlieg1"], ["https://tec.openplanner.team/stops/H1hc150a", "https://tec.openplanner.team/stops/H4be113a"], ["https://tec.openplanner.team/stops/LCscarr1", "https://tec.openplanner.team/stops/LCschen1"], ["https://tec.openplanner.team/stops/N562aca", "https://tec.openplanner.team/stops/N562aeb"], ["https://tec.openplanner.team/stops/N243acb", "https://tec.openplanner.team/stops/N252aba"], ["https://tec.openplanner.team/stops/Bgrmpsn2", "https://tec.openplanner.team/stops/N522aub"], ["https://tec.openplanner.team/stops/LJAcime1", "https://tec.openplanner.team/stops/LJAherb3"], ["https://tec.openplanner.team/stops/H1ms296b", "https://tec.openplanner.team/stops/H1ms301a"], ["https://tec.openplanner.team/stops/X904aab", "https://tec.openplanner.team/stops/X943agb"], ["https://tec.openplanner.team/stops/LhUkape2", "https://tec.openplanner.team/stops/LhUkreu2"], ["https://tec.openplanner.team/stops/NL57afb", "https://tec.openplanner.team/stops/NL57agb"], ["https://tec.openplanner.team/stops/Bwatmco2", "https://tec.openplanner.team/stops/Bwatnro2"], ["https://tec.openplanner.team/stops/X602ana", "https://tec.openplanner.team/stops/X602anb"], ["https://tec.openplanner.team/stops/N351aaa", "https://tec.openplanner.team/stops/N351aib"], ["https://tec.openplanner.team/stops/X636aua", "https://tec.openplanner.team/stops/X636aub"], ["https://tec.openplanner.team/stops/Brsgm801", "https://tec.openplanner.team/stops/Bwatmch3"], ["https://tec.openplanner.team/stops/Llgbrab2", "https://tec.openplanner.team/stops/Llgvinc2"], ["https://tec.openplanner.team/stops/H1wg124a", "https://tec.openplanner.team/stops/H1wg124b"], ["https://tec.openplanner.team/stops/Bwaveur1", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://tec.openplanner.team/stops/N131aeb", "https://tec.openplanner.team/stops/N131afa"], ["https://tec.openplanner.team/stops/Cmtchas1", "https://tec.openplanner.team/stops/Cmtchas2"], ["https://tec.openplanner.team/stops/H2hp114b", "https://tec.openplanner.team/stops/H2hp116a"], ["https://tec.openplanner.team/stops/Lglvand2", "https://tec.openplanner.team/stops/Llgglai2"], ["https://tec.openplanner.team/stops/X825abb", "https://tec.openplanner.team/stops/X825ada"], ["https://tec.openplanner.team/stops/LhSfrep2", "https://tec.openplanner.team/stops/LhSgete3"], ["https://tec.openplanner.team/stops/Brixaug3", "https://tec.openplanner.team/stops/Brixdec1"], ["https://tec.openplanner.team/stops/N531ajb", "https://tec.openplanner.team/stops/N531asa"], ["https://tec.openplanner.team/stops/H5bl123b", "https://tec.openplanner.team/stops/H5bl124b"], ["https://tec.openplanner.team/stops/H2ha132b", "https://tec.openplanner.team/stops/H2sb221a"], ["https://tec.openplanner.team/stops/Bclgbvi1", "https://tec.openplanner.team/stops/Bclgbvi2"], ["https://tec.openplanner.team/stops/N501kxb", "https://tec.openplanner.team/stops/N501mra"], ["https://tec.openplanner.team/stops/Lbrcard1", "https://tec.openplanner.team/stops/Lbrcard2"], ["https://tec.openplanner.team/stops/N561aib", "https://tec.openplanner.team/stops/N584apb"], ["https://tec.openplanner.team/stops/LiV19--2", "https://tec.openplanner.team/stops/LiVkreu2"], ["https://tec.openplanner.team/stops/H4pl112a", "https://tec.openplanner.team/stops/H4wn126a"], ["https://tec.openplanner.team/stops/Lfhchaf3", "https://tec.openplanner.team/stops/Livpost2"], ["https://tec.openplanner.team/stops/Bblabfo2", "https://tec.openplanner.team/stops/Bblasta1"], ["https://tec.openplanner.team/stops/Bblatet2", "https://tec.openplanner.team/stops/Bbsibou2"], ["https://tec.openplanner.team/stops/NL76asa", "https://tec.openplanner.team/stops/NL76asb"], ["https://tec.openplanner.team/stops/Lgrlimi3", "https://tec.openplanner.team/stops/Lgrlimi4"], ["https://tec.openplanner.team/stops/H4mt215b", "https://tec.openplanner.team/stops/H4mt222b"], ["https://tec.openplanner.team/stops/Lgrfalc1", "https://tec.openplanner.team/stops/Lgrramp2"], ["https://tec.openplanner.team/stops/X871adb", "https://tec.openplanner.team/stops/X871aeb"], ["https://tec.openplanner.team/stops/X813aab", "https://tec.openplanner.team/stops/X857aaa"], ["https://tec.openplanner.team/stops/H5rx103a", "https://tec.openplanner.team/stops/H5rx110b"], ["https://tec.openplanner.team/stops/X760afb", "https://tec.openplanner.team/stops/X762afa"], ["https://tec.openplanner.team/stops/H4ru235b", "https://tec.openplanner.team/stops/H4ru239a"], ["https://tec.openplanner.team/stops/H4co103b", "https://tec.openplanner.team/stops/H4co106d"], ["https://tec.openplanner.team/stops/N351aka", "https://tec.openplanner.team/stops/N351aub"], ["https://tec.openplanner.team/stops/X805aaa", "https://tec.openplanner.team/stops/X805agb"], ["https://tec.openplanner.team/stops/X747afb", "https://tec.openplanner.team/stops/X747ahb"], ["https://tec.openplanner.team/stops/N519ama", "https://tec.openplanner.team/stops/N520acb"], ["https://tec.openplanner.team/stops/NC14aha", "https://tec.openplanner.team/stops/NC14ahb"], ["https://tec.openplanner.team/stops/H5fl102d", "https://tec.openplanner.team/stops/H5fl104a"], ["https://tec.openplanner.team/stops/LAx41--1", "https://tec.openplanner.team/stops/Lmiensp*"], ["https://tec.openplanner.team/stops/LbTschw1", "https://tec.openplanner.team/stops/LbUmors1"], ["https://tec.openplanner.team/stops/LCdchod1", "https://tec.openplanner.team/stops/LMAchod2"], ["https://tec.openplanner.team/stops/Bclgpch1", "https://tec.openplanner.team/stops/Bwavdmo2"], ["https://tec.openplanner.team/stops/H2fa106a", "https://tec.openplanner.team/stops/H2hg269b"], ["https://tec.openplanner.team/stops/H4bf105a", "https://tec.openplanner.team/stops/H4by119b"], ["https://tec.openplanner.team/stops/H2fa112a", "https://tec.openplanner.team/stops/H2fa112b"], ["https://tec.openplanner.team/stops/X806ada", "https://tec.openplanner.team/stops/X806afb"], ["https://tec.openplanner.team/stops/Cgocolo2", "https://tec.openplanner.team/stops/Cjugend4"], ["https://tec.openplanner.team/stops/LBvviem3", "https://tec.openplanner.team/stops/LFarhuy1"], ["https://tec.openplanner.team/stops/H2ha129b", "https://tec.openplanner.team/stops/H2ha136a"], ["https://tec.openplanner.team/stops/Cmltemp1", "https://tec.openplanner.team/stops/Cmltemp5"], ["https://tec.openplanner.team/stops/N117ama", "https://tec.openplanner.team/stops/N117aob"], ["https://tec.openplanner.team/stops/Lpejonc1", "https://tec.openplanner.team/stops/Lpevesd1"], ["https://tec.openplanner.team/stops/X911aub", "https://tec.openplanner.team/stops/X912aka"], ["https://tec.openplanner.team/stops/H1ms280a", "https://tec.openplanner.team/stops/H1ms300a"], ["https://tec.openplanner.team/stops/Lvebiol2", "https://tec.openplanner.team/stops/Lvehoug2"], ["https://tec.openplanner.team/stops/Ceqcfra1", "https://tec.openplanner.team/stops/Ceqcfra2"], ["https://tec.openplanner.team/stops/N210aaa", "https://tec.openplanner.team/stops/X210azb"], ["https://tec.openplanner.team/stops/H4ru236a", "https://tec.openplanner.team/stops/H4ru236b"], ["https://tec.openplanner.team/stops/LeIdeid1", "https://tec.openplanner.team/stops/LeIdeid2"], ["https://tec.openplanner.team/stops/LROcent2", "https://tec.openplanner.team/stops/LROchap2"], ["https://tec.openplanner.team/stops/H1eu105b", "https://tec.openplanner.team/stops/H1sb144a"], ["https://tec.openplanner.team/stops/LVleg--1", "https://tec.openplanner.team/stops/LVlplan1"], ["https://tec.openplanner.team/stops/H1do109b", "https://tec.openplanner.team/stops/H1do131c"], ["https://tec.openplanner.team/stops/LLYchpl1", "https://tec.openplanner.team/stops/LLYplac2"], ["https://tec.openplanner.team/stops/X640aib", "https://tec.openplanner.team/stops/X640aja"], ["https://tec.openplanner.team/stops/LSAeg--2", "https://tec.openplanner.team/stops/LSAjacq2"], ["https://tec.openplanner.team/stops/LWechpl1", "https://tec.openplanner.team/stops/LWevalf1"], ["https://tec.openplanner.team/stops/Cmaduna2", "https://tec.openplanner.team/stops/Cmastma2"], ["https://tec.openplanner.team/stops/Lhrpost1", "https://tec.openplanner.team/stops/Llgaba-2"], ["https://tec.openplanner.team/stops/X636bbb", "https://tec.openplanner.team/stops/X636bcb"], ["https://tec.openplanner.team/stops/Bboseco2", "https://tec.openplanner.team/stops/Bgoestu2"], ["https://tec.openplanner.team/stops/Lhrtunn1", "https://tec.openplanner.team/stops/Lhrtunn2"], ["https://tec.openplanner.team/stops/Bvircsj1", "https://tec.openplanner.team/stops/Bvircsj2"], ["https://tec.openplanner.team/stops/Bhoeboo2", "https://tec.openplanner.team/stops/Bhoemel2"], ["https://tec.openplanner.team/stops/LBscime1", "https://tec.openplanner.team/stops/NL72ada"], ["https://tec.openplanner.team/stops/LGOdelv1", "https://tec.openplanner.team/stops/LHVeg--1"], ["https://tec.openplanner.team/stops/Lstbota2", "https://tec.openplanner.team/stops/Lsteduc2"], ["https://tec.openplanner.team/stops/X608ara", "https://tec.openplanner.team/stops/X608asa"], ["https://tec.openplanner.team/stops/Lhr3jui1", "https://tec.openplanner.team/stops/Lhr3jui2"], ["https://tec.openplanner.team/stops/N106akb", "https://tec.openplanner.team/stops/N162afa"], ["https://tec.openplanner.team/stops/N547ahb", "https://tec.openplanner.team/stops/N547ajb"], ["https://tec.openplanner.team/stops/N340afa", "https://tec.openplanner.team/stops/N340ahb"], ["https://tec.openplanner.team/stops/Cml5ave2", "https://tec.openplanner.team/stops/Cmlsart2"], ["https://tec.openplanner.team/stops/LFHjamo1", "https://tec.openplanner.team/stops/LKmmelo2"], ["https://tec.openplanner.team/stops/H1ho143a", "https://tec.openplanner.team/stops/H1ho143b"], ["https://tec.openplanner.team/stops/N501gpd", "https://tec.openplanner.team/stops/N501gpz"], ["https://tec.openplanner.team/stops/Lsechan2", "https://tec.openplanner.team/stops/Lsevecq2"], ["https://tec.openplanner.team/stops/H2bh103a", "https://tec.openplanner.team/stops/H2bh118b"], ["https://tec.openplanner.team/stops/LWEcarr1", "https://tec.openplanner.team/stops/LWEmerm2"], ["https://tec.openplanner.team/stops/Bbstcoi2", "https://tec.openplanner.team/stops/Bbsthpl2"], ["https://tec.openplanner.team/stops/H4ar100a", "https://tec.openplanner.team/stops/H4ar100b"], ["https://tec.openplanner.team/stops/NR21aea", "https://tec.openplanner.team/stops/NR21afa"], ["https://tec.openplanner.team/stops/X638aia", "https://tec.openplanner.team/stops/X638aib"], ["https://tec.openplanner.team/stops/Cjucomb1", "https://tec.openplanner.team/stops/Cjupn4"], ["https://tec.openplanner.team/stops/LWAfabr1", "https://tec.openplanner.team/stops/LWArege2"], ["https://tec.openplanner.team/stops/X839abb", "https://tec.openplanner.team/stops/X839acb"], ["https://tec.openplanner.team/stops/X917aka", "https://tec.openplanner.team/stops/X922aeb"], ["https://tec.openplanner.team/stops/LFsgend1", "https://tec.openplanner.team/stops/Lligara1"], ["https://tec.openplanner.team/stops/LBzec--2", "https://tec.openplanner.team/stops/LVBsevr2"], ["https://tec.openplanner.team/stops/Llglave1", "https://tec.openplanner.team/stops/Llgrosa2"], ["https://tec.openplanner.team/stops/Bplncba2", "https://tec.openplanner.team/stops/Bplnegl1"], ["https://tec.openplanner.team/stops/Llgavro1", "https://tec.openplanner.team/stops/Llghenr1"], ["https://tec.openplanner.team/stops/LbUwirt1", "https://tec.openplanner.team/stops/LbUwirt2"], ["https://tec.openplanner.team/stops/X740abd", "https://tec.openplanner.team/stops/X985abb"], ["https://tec.openplanner.team/stops/Bettgle1", "https://tec.openplanner.team/stops/Bettgle2"], ["https://tec.openplanner.team/stops/X620aba", "https://tec.openplanner.team/stops/X620aca"], ["https://tec.openplanner.team/stops/H4hq129a", "https://tec.openplanner.team/stops/H4hq134b"], ["https://tec.openplanner.team/stops/LWOrout2", "https://tec.openplanner.team/stops/LWOwonc1"], ["https://tec.openplanner.team/stops/Bgzddfh1", "https://tec.openplanner.team/stops/Bgzdpis2"], ["https://tec.openplanner.team/stops/X601bba", "https://tec.openplanner.team/stops/X601cza"], ["https://tec.openplanner.team/stops/Lwagare1", "https://tec.openplanner.team/stops/Lwapomp2"], ["https://tec.openplanner.team/stops/N524aba", "https://tec.openplanner.team/stops/N525atb"], ["https://tec.openplanner.team/stops/LkOaugu2", "https://tec.openplanner.team/stops/LkOzoll1"], ["https://tec.openplanner.team/stops/X897awa", "https://tec.openplanner.team/stops/X897axb"], ["https://tec.openplanner.team/stops/LMOelva2", "https://tec.openplanner.team/stops/LMOhero1"], ["https://tec.openplanner.team/stops/H4mo133b", "https://tec.openplanner.team/stops/H4mo145a"], ["https://tec.openplanner.team/stops/Lgrdemo2", "https://tec.openplanner.team/stops/Lgrfass1"], ["https://tec.openplanner.team/stops/Crswaut1", "https://tec.openplanner.team/stops/Crswaut2"], ["https://tec.openplanner.team/stops/NR27aba", "https://tec.openplanner.team/stops/NR27abb"], ["https://tec.openplanner.team/stops/N501cga", "https://tec.openplanner.team/stops/N501cgb"], ["https://tec.openplanner.team/stops/N550aab", "https://tec.openplanner.team/stops/N550anb"], ["https://tec.openplanner.team/stops/LESchpl1", "https://tec.openplanner.team/stops/LPOpass1"], ["https://tec.openplanner.team/stops/N524ahb", "https://tec.openplanner.team/stops/N524aja"], ["https://tec.openplanner.team/stops/H1pa106a", "https://tec.openplanner.team/stops/H1pa106b"], ["https://tec.openplanner.team/stops/LSTdero1", "https://tec.openplanner.team/stops/LSTvaul1"], ["https://tec.openplanner.team/stops/N221aca", "https://tec.openplanner.team/stops/N221ada"], ["https://tec.openplanner.team/stops/Bsgevil1", "https://tec.openplanner.team/stops/Bsgevil2"], ["https://tec.openplanner.team/stops/H1an101b", "https://tec.openplanner.team/stops/H1an103b"], ["https://tec.openplanner.team/stops/X948aeb", "https://tec.openplanner.team/stops/X948agb"], ["https://tec.openplanner.team/stops/Cwfanci1", "https://tec.openplanner.team/stops/Cwfdupo2"], ["https://tec.openplanner.team/stops/X316aba", "https://tec.openplanner.team/stops/X364acb"], ["https://tec.openplanner.team/stops/LLUg82-2", "https://tec.openplanner.team/stops/LLUpier1"], ["https://tec.openplanner.team/stops/N503aga", "https://tec.openplanner.team/stops/N535aoa"], ["https://tec.openplanner.team/stops/H3so162a", "https://tec.openplanner.team/stops/H3so169b"], ["https://tec.openplanner.team/stops/H1bo103b", "https://tec.openplanner.team/stops/H1bo110a"], ["https://tec.openplanner.team/stops/X542aab", "https://tec.openplanner.team/stops/X750ana"], ["https://tec.openplanner.team/stops/X804akb", "https://tec.openplanner.team/stops/X804amb"], ["https://tec.openplanner.team/stops/H4am102c", "https://tec.openplanner.team/stops/H4am102d"], ["https://tec.openplanner.team/stops/LTgcime1", "https://tec.openplanner.team/stops/LTgcime2"], ["https://tec.openplanner.team/stops/Lbomidi1", "https://tec.openplanner.team/stops/Lbooffe2"], ["https://tec.openplanner.team/stops/H4ch118b", "https://tec.openplanner.team/stops/H4ch120b"], ["https://tec.openplanner.team/stops/N507adb", "https://tec.openplanner.team/stops/N507alb"], ["https://tec.openplanner.team/stops/Cbwmvri2", "https://tec.openplanner.team/stops/Cmggthi1"], ["https://tec.openplanner.team/stops/H1me117c", "https://tec.openplanner.team/stops/H1me117d"], ["https://tec.openplanner.team/stops/X597ala", "https://tec.openplanner.team/stops/X597alb"], ["https://tec.openplanner.team/stops/X344ada", "https://tec.openplanner.team/stops/X344adb"], ["https://tec.openplanner.team/stops/Lheneuv1", "https://tec.openplanner.team/stops/Lheneuv2"], ["https://tec.openplanner.team/stops/Cchba04", "https://tec.openplanner.team/stops/Cchba06"], ["https://tec.openplanner.team/stops/X901amb", "https://tec.openplanner.team/stops/X901arb"], ["https://tec.openplanner.team/stops/LsVgore2", "https://tec.openplanner.team/stops/LsVviel2"], ["https://tec.openplanner.team/stops/LvA30--1", "https://tec.openplanner.team/stops/LvAschr1"], ["https://tec.openplanner.team/stops/N519asb", "https://tec.openplanner.team/stops/N519asd"], ["https://tec.openplanner.team/stops/LTRsain1", "https://tec.openplanner.team/stops/LTRsain3"], ["https://tec.openplanner.team/stops/Lpegole1", "https://tec.openplanner.team/stops/Lpeprev2"], ["https://tec.openplanner.team/stops/Bqueaga1", "https://tec.openplanner.team/stops/Btubbot2"], ["https://tec.openplanner.team/stops/H1ms360a", "https://tec.openplanner.team/stops/H1ms936a"], ["https://tec.openplanner.team/stops/Llgerac1", "https://tec.openplanner.team/stops/Llghull2"], ["https://tec.openplanner.team/stops/X896aab", "https://tec.openplanner.team/stops/X898aoa"], ["https://tec.openplanner.team/stops/Bixlaca2", "https://tec.openplanner.team/stops/Buccbas2"], ["https://tec.openplanner.team/stops/Cmtgrim2", "https://tec.openplanner.team/stops/Cmttrie1"], ["https://tec.openplanner.team/stops/LFreg--2", "https://tec.openplanner.team/stops/LRffroi2"], ["https://tec.openplanner.team/stops/N232axa", "https://tec.openplanner.team/stops/N232bpa"], ["https://tec.openplanner.team/stops/N252aba", "https://tec.openplanner.team/stops/N252acc"], ["https://tec.openplanner.team/stops/X620aeb", "https://tec.openplanner.team/stops/X620aha"], ["https://tec.openplanner.team/stops/H4cw105b", "https://tec.openplanner.team/stops/H4cw106b"], ["https://tec.openplanner.team/stops/Becltri1", "https://tec.openplanner.team/stops/Becltri2"], ["https://tec.openplanner.team/stops/LbUjost2", "https://tec.openplanner.team/stops/LbUjost3"], ["https://tec.openplanner.team/stops/LBNgarn1", "https://tec.openplanner.team/stops/LeUgutl2"], ["https://tec.openplanner.team/stops/Cmmcarr1", "https://tec.openplanner.team/stops/Cmmp2051"], ["https://tec.openplanner.team/stops/X618adb", "https://tec.openplanner.team/stops/X618alb"], ["https://tec.openplanner.team/stops/X774afb", "https://tec.openplanner.team/stops/X774aga"], ["https://tec.openplanner.team/stops/LAipala1", "https://tec.openplanner.team/stops/LGlcarr1"], ["https://tec.openplanner.team/stops/H4ae101a", "https://tec.openplanner.team/stops/H4ef138a"], ["https://tec.openplanner.team/stops/LCEhayo1", "https://tec.openplanner.team/stops/LCEinst1"], ["https://tec.openplanner.team/stops/LCvoufn1", "https://tec.openplanner.team/stops/X713alb"], ["https://tec.openplanner.team/stops/LTB105-1", "https://tec.openplanner.team/stops/LTB105-2"], ["https://tec.openplanner.team/stops/H1ho138a", "https://tec.openplanner.team/stops/H1wa143b"], ["https://tec.openplanner.team/stops/N513baa", "https://tec.openplanner.team/stops/N516adb"], ["https://tec.openplanner.team/stops/Cmaegal2", "https://tec.openplanner.team/stops/Cmaplas3"], ["https://tec.openplanner.team/stops/Cgrchfe1", "https://tec.openplanner.team/stops/NC02bbb"], ["https://tec.openplanner.team/stops/H1bb118b", "https://tec.openplanner.team/stops/H1bb119a"], ["https://tec.openplanner.team/stops/X952aga", "https://tec.openplanner.team/stops/X954adb"], ["https://tec.openplanner.team/stops/Lbrfagn1", "https://tec.openplanner.team/stops/Ljuathe2"], ["https://tec.openplanner.team/stops/LSteg--1", "https://tec.openplanner.team/stops/LStgare*"], ["https://tec.openplanner.team/stops/X618aia", "https://tec.openplanner.team/stops/X618ana"], ["https://tec.openplanner.team/stops/H2ha128a", "https://tec.openplanner.team/stops/H2ha133b"], ["https://tec.openplanner.team/stops/X718aib", "https://tec.openplanner.team/stops/X718aja"], ["https://tec.openplanner.team/stops/LCFmoul2", "https://tec.openplanner.team/stops/LHaodei2"], ["https://tec.openplanner.team/stops/Lfhvoye1", "https://tec.openplanner.team/stops/Lpocent1"], ["https://tec.openplanner.team/stops/H1ls110b", "https://tec.openplanner.team/stops/H1me118a"], ["https://tec.openplanner.team/stops/H4eh102a", "https://tec.openplanner.team/stops/H4eh104a"], ["https://tec.openplanner.team/stops/X619aic", "https://tec.openplanner.team/stops/X619aja"], ["https://tec.openplanner.team/stops/LMotrem2", "https://tec.openplanner.team/stops/LMoviel1"], ["https://tec.openplanner.team/stops/Brixpbs1", "https://tec.openplanner.team/stops/Brixpbs2"], ["https://tec.openplanner.team/stops/Cctvict1", "https://tec.openplanner.team/stops/Cctvill1"], ["https://tec.openplanner.team/stops/LPLaube2", "https://tec.openplanner.team/stops/LPLstat2"], ["https://tec.openplanner.team/stops/LCscarr4", "https://tec.openplanner.team/stops/LCsgend2"], ["https://tec.openplanner.team/stops/LDOandr1", "https://tec.openplanner.team/stops/LDOjose1"], ["https://tec.openplanner.team/stops/LETec--1", "https://tec.openplanner.team/stops/LETfort1"], ["https://tec.openplanner.team/stops/X879aea", "https://tec.openplanner.team/stops/X882agb"], ["https://tec.openplanner.team/stops/H1wa152b", "https://tec.openplanner.team/stops/H1wa163a"], ["https://tec.openplanner.team/stops/N352aca", "https://tec.openplanner.team/stops/N352aja"], ["https://tec.openplanner.team/stops/Bdlmgla3", "https://tec.openplanner.team/stops/Bwavdmo3"], ["https://tec.openplanner.team/stops/LhEbruc1", "https://tec.openplanner.team/stops/LWEcool2"], ["https://tec.openplanner.team/stops/X801bja", "https://tec.openplanner.team/stops/X801bjb"], ["https://tec.openplanner.team/stops/LHUmess2", "https://tec.openplanner.team/stops/LTicent1"], ["https://tec.openplanner.team/stops/X622ada", "https://tec.openplanner.team/stops/X622aea"], ["https://tec.openplanner.team/stops/Cpibois2", "https://tec.openplanner.team/stops/Cpiegli1"], ["https://tec.openplanner.team/stops/Canrtth2", "https://tec.openplanner.team/stops/Canrtth3"], ["https://tec.openplanner.team/stops/X747aib", "https://tec.openplanner.team/stops/X747aja"], ["https://tec.openplanner.team/stops/Csecarr1", "https://tec.openplanner.team/stops/Csefour1"], ["https://tec.openplanner.team/stops/N558afb", "https://tec.openplanner.team/stops/N558aga"], ["https://tec.openplanner.team/stops/LWathir1", "https://tec.openplanner.team/stops/LWathir2"], ["https://tec.openplanner.team/stops/H4hx114a", "https://tec.openplanner.team/stops/H4hx120b"], ["https://tec.openplanner.team/stops/LAUscha2", "https://tec.openplanner.team/stops/LFPchat2"], ["https://tec.openplanner.team/stops/LHCmonu2", "https://tec.openplanner.team/stops/LHCmonu4"], ["https://tec.openplanner.team/stops/N501acb", "https://tec.openplanner.team/stops/N503acb"], ["https://tec.openplanner.team/stops/N115aea", "https://tec.openplanner.team/stops/N115afb"], ["https://tec.openplanner.team/stops/X661amb", "https://tec.openplanner.team/stops/X661anb"], ["https://tec.openplanner.team/stops/X624acb", "https://tec.openplanner.team/stops/X624aia"], ["https://tec.openplanner.team/stops/H1mv238a", "https://tec.openplanner.team/stops/H1mv243b"], ["https://tec.openplanner.team/stops/Bbchdev2", "https://tec.openplanner.team/stops/Bbchdra1"], ["https://tec.openplanner.team/stops/LBRgend1", "https://tec.openplanner.team/stops/LBRgend2"], ["https://tec.openplanner.team/stops/X802afb", "https://tec.openplanner.team/stops/X802aga"], ["https://tec.openplanner.team/stops/LLUtill1", "https://tec.openplanner.team/stops/LLUtill2"], ["https://tec.openplanner.team/stops/N506ata", "https://tec.openplanner.team/stops/N506baa"], ["https://tec.openplanner.team/stops/H4bf106a", "https://tec.openplanner.team/stops/H4wp151b"], ["https://tec.openplanner.team/stops/X901ala", "https://tec.openplanner.team/stops/X922aaa"], ["https://tec.openplanner.team/stops/X661aab", "https://tec.openplanner.team/stops/X822aja"], ["https://tec.openplanner.team/stops/Ljemont1", "https://tec.openplanner.team/stops/Lmomine1"], ["https://tec.openplanner.team/stops/Clodrio3", "https://tec.openplanner.team/stops/Clodupr1"], ["https://tec.openplanner.team/stops/H4eg102b", "https://tec.openplanner.team/stops/H4eg107b"], ["https://tec.openplanner.team/stops/Cctpche2", "https://tec.openplanner.team/stops/NC11afa"], ["https://tec.openplanner.team/stops/Lbrmc--2", "https://tec.openplanner.team/stops/Lbrptbr1"], ["https://tec.openplanner.team/stops/LAascie1", "https://tec.openplanner.team/stops/X261abb"], ["https://tec.openplanner.team/stops/N503aba", "https://tec.openplanner.team/stops/N503abb"], ["https://tec.openplanner.team/stops/X316aba", "https://tec.openplanner.team/stops/X316aca"], ["https://tec.openplanner.team/stops/Broscha2", "https://tec.openplanner.team/stops/Cgpauln2"], ["https://tec.openplanner.team/stops/LVBmonu1", "https://tec.openplanner.team/stops/LWDchpl1"], ["https://tec.openplanner.team/stops/LBpcren1", "https://tec.openplanner.team/stops/LBpcren2"], ["https://tec.openplanner.team/stops/N202aea", "https://tec.openplanner.team/stops/N203afa"], ["https://tec.openplanner.team/stops/Bnivga41", "https://tec.openplanner.team/stops/Bnivrwi1"], ["https://tec.openplanner.team/stops/Cmcceta1", "https://tec.openplanner.team/stops/Cmcwic1"], ["https://tec.openplanner.team/stops/LLrmc--2", "https://tec.openplanner.team/stops/LLrvill1"], ["https://tec.openplanner.team/stops/Bpielom2", "https://tec.openplanner.team/stops/Bpielon1"], ["https://tec.openplanner.team/stops/Cfrfaub2", "https://tec.openplanner.team/stops/Cvpplan1"], ["https://tec.openplanner.team/stops/X661ala", "https://tec.openplanner.team/stops/X661aua"], ["https://tec.openplanner.team/stops/LBEcroi1", "https://tec.openplanner.team/stops/LBEcroi2"], ["https://tec.openplanner.team/stops/LLGramk3", "https://tec.openplanner.team/stops/LORdtec*"], ["https://tec.openplanner.team/stops/H2hg145b", "https://tec.openplanner.team/stops/H2hg160a"], ["https://tec.openplanner.team/stops/Llgancd1", "https://tec.openplanner.team/stops/Llgjoie1"], ["https://tec.openplanner.team/stops/NL74aac", "https://tec.openplanner.team/stops/NL74ajb"], ["https://tec.openplanner.team/stops/H2me114b", "https://tec.openplanner.team/stops/H2me117b"], ["https://tec.openplanner.team/stops/N538ala", "https://tec.openplanner.team/stops/N538aqb"], ["https://tec.openplanner.team/stops/Lsecast2", "https://tec.openplanner.team/stops/Lsehtsa1"], ["https://tec.openplanner.team/stops/X901aca", "https://tec.openplanner.team/stops/X901bnb"], ["https://tec.openplanner.team/stops/LbTdoma2", "https://tec.openplanner.team/stops/LbThau12"], ["https://tec.openplanner.team/stops/H1ju120b", "https://tec.openplanner.team/stops/H1mj126b"], ["https://tec.openplanner.team/stops/LJSeg--1", "https://tec.openplanner.team/stops/LTHcime1"], ["https://tec.openplanner.team/stops/LOV62--2", "https://tec.openplanner.team/stops/LROrtba2"], ["https://tec.openplanner.team/stops/LWipaif1", "https://tec.openplanner.team/stops/LWipaif3"], ["https://tec.openplanner.team/stops/LBEfagn2", "https://tec.openplanner.team/stops/LBEnina6"], ["https://tec.openplanner.team/stops/N127acb", "https://tec.openplanner.team/stops/N127adb"], ["https://tec.openplanner.team/stops/LARauto2", "https://tec.openplanner.team/stops/LARauto3"], ["https://tec.openplanner.team/stops/Lhrpost2", "https://tec.openplanner.team/stops/Llgaba-2"], ["https://tec.openplanner.team/stops/N542ahb", "https://tec.openplanner.team/stops/N542aob"], ["https://tec.openplanner.team/stops/X725ana", "https://tec.openplanner.team/stops/X725aob"], ["https://tec.openplanner.team/stops/X741ala", "https://tec.openplanner.team/stops/X758aka"], ["https://tec.openplanner.team/stops/LOunebl1", "https://tec.openplanner.team/stops/LOunebl2"], ["https://tec.openplanner.team/stops/N116aba", "https://tec.openplanner.team/stops/N116abb"], ["https://tec.openplanner.team/stops/Csshouy2", "https://tec.openplanner.team/stops/Csslesc2"], ["https://tec.openplanner.team/stops/LAWlonc1", "https://tec.openplanner.team/stops/LAWvill2"], ["https://tec.openplanner.team/stops/LFArela2", "https://tec.openplanner.team/stops/LFArela4"], ["https://tec.openplanner.team/stops/N531aub", "https://tec.openplanner.team/stops/N532abb"], ["https://tec.openplanner.team/stops/N544aca", "https://tec.openplanner.team/stops/N544aea"], ["https://tec.openplanner.team/stops/X661aca", "https://tec.openplanner.team/stops/X661alb"], ["https://tec.openplanner.team/stops/N548awa", "https://tec.openplanner.team/stops/N573aoa"], ["https://tec.openplanner.team/stops/N569ala", "https://tec.openplanner.team/stops/N569anb"], ["https://tec.openplanner.team/stops/N527aab", "https://tec.openplanner.team/stops/N527agb"], ["https://tec.openplanner.team/stops/N551aob", "https://tec.openplanner.team/stops/N552acb"], ["https://tec.openplanner.team/stops/Bpthcai1", "https://tec.openplanner.team/stops/Bpthcgo2"], ["https://tec.openplanner.team/stops/LOTsava1", "https://tec.openplanner.team/stops/LOTsava2"], ["https://tec.openplanner.team/stops/H1bo103a", "https://tec.openplanner.team/stops/H1bo112a"], ["https://tec.openplanner.team/stops/N549aaa", "https://tec.openplanner.team/stops/N578aba"], ["https://tec.openplanner.team/stops/Cfccabi2", "https://tec.openplanner.team/stops/Cfcctru2"], ["https://tec.openplanner.team/stops/Bjanegl1", "https://tec.openplanner.team/stops/Bjanegl4"], ["https://tec.openplanner.team/stops/N514aga", "https://tec.openplanner.team/stops/N518acd"], ["https://tec.openplanner.team/stops/Bquepla1", "https://tec.openplanner.team/stops/Bquereb2"], ["https://tec.openplanner.team/stops/LRteg--*", "https://tec.openplanner.team/stops/NL78afb"], ["https://tec.openplanner.team/stops/Lghfore3", "https://tec.openplanner.team/stops/Lghwall2"], ["https://tec.openplanner.team/stops/Cchba05", "https://tec.openplanner.team/stops/Cchba09"], ["https://tec.openplanner.team/stops/Bhmmcsc1", "https://tec.openplanner.team/stops/Btlgmar1"], ["https://tec.openplanner.team/stops/H2bh111a", "https://tec.openplanner.team/stops/H2bh111b"], ["https://tec.openplanner.team/stops/H4hs136a", "https://tec.openplanner.team/stops/H4hs137a"], ["https://tec.openplanner.team/stops/X779afb", "https://tec.openplanner.team/stops/X779agb"], ["https://tec.openplanner.team/stops/X796ada", "https://tec.openplanner.team/stops/X796aea"], ["https://tec.openplanner.team/stops/X636bdb", "https://tec.openplanner.team/stops/X636bhb"], ["https://tec.openplanner.team/stops/Bwavgar5", "https://tec.openplanner.team/stops/Bwavlep1"], ["https://tec.openplanner.team/stops/X917aaa", "https://tec.openplanner.team/stops/X917aba"], ["https://tec.openplanner.team/stops/LOVchen1", "https://tec.openplanner.team/stops/LOVchen2"], ["https://tec.openplanner.team/stops/X892acb", "https://tec.openplanner.team/stops/X892aja"], ["https://tec.openplanner.team/stops/Crehout1", "https://tec.openplanner.team/stops/Crewaba1"], ["https://tec.openplanner.team/stops/Cthstre1", "https://tec.openplanner.team/stops/Cthstre2"], ["https://tec.openplanner.team/stops/Bjodeco1", "https://tec.openplanner.team/stops/Bjodgar1"], ["https://tec.openplanner.team/stops/X720acb", "https://tec.openplanner.team/stops/X720ada"], ["https://tec.openplanner.team/stops/N559aab", "https://tec.openplanner.team/stops/N559aeb"], ["https://tec.openplanner.team/stops/X937aka", "https://tec.openplanner.team/stops/X937alb"], ["https://tec.openplanner.team/stops/H4lz118b", "https://tec.openplanner.team/stops/H4lz122a"], ["https://tec.openplanner.team/stops/LLxcrem1", "https://tec.openplanner.team/stops/LLxmonu1"], ["https://tec.openplanner.team/stops/LMAfali1", "https://tec.openplanner.team/stops/LMAroch4"], ["https://tec.openplanner.team/stops/LVbpave1", "https://tec.openplanner.team/stops/LVbpave2"], ["https://tec.openplanner.team/stops/N122aaa", "https://tec.openplanner.team/stops/N122ahb"], ["https://tec.openplanner.team/stops/Bwaubru1", "https://tec.openplanner.team/stops/Bwaucig2"], ["https://tec.openplanner.team/stops/N349aca", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/Canboni2", "https://tec.openplanner.team/stops/Canegbr1"], ["https://tec.openplanner.team/stops/H1em104a", "https://tec.openplanner.team/stops/H1em105a"], ["https://tec.openplanner.team/stops/Bvilvil3", "https://tec.openplanner.team/stops/Bvilvil4"], ["https://tec.openplanner.team/stops/H1gg116a", "https://tec.openplanner.team/stops/H1ry136a"], ["https://tec.openplanner.team/stops/H1br125a", "https://tec.openplanner.team/stops/H1wz173a"], ["https://tec.openplanner.team/stops/Bwagdeb1", "https://tec.openplanner.team/stops/Bwagmco1"], ["https://tec.openplanner.team/stops/X766aca", "https://tec.openplanner.team/stops/X766adb"], ["https://tec.openplanner.team/stops/LOTjacq1", "https://tec.openplanner.team/stops/LOTmonu1"], ["https://tec.openplanner.team/stops/H2le147a", "https://tec.openplanner.team/stops/H2le152b"], ["https://tec.openplanner.team/stops/X715aha", "https://tec.openplanner.team/stops/X715ahb"], ["https://tec.openplanner.team/stops/Cchblne1", "https://tec.openplanner.team/stops/Clomart1"], ["https://tec.openplanner.team/stops/LWRchem1", "https://tec.openplanner.team/stops/LWRvert1"], ["https://tec.openplanner.team/stops/X687afa", "https://tec.openplanner.team/stops/X687aga"], ["https://tec.openplanner.team/stops/N532aka", "https://tec.openplanner.team/stops/N532akb"], ["https://tec.openplanner.team/stops/Llgbaya4", "https://tec.openplanner.team/stops/Llgdony2"], ["https://tec.openplanner.team/stops/Bcrbast2", "https://tec.openplanner.team/stops/Bnilpor4"], ["https://tec.openplanner.team/stops/Lanmouf1", "https://tec.openplanner.team/stops/Lanrois2"], ["https://tec.openplanner.team/stops/N501gqa", "https://tec.openplanner.team/stops/N501gqb"], ["https://tec.openplanner.team/stops/Cmahotv1", "https://tec.openplanner.team/stops/Cmamarc2"], ["https://tec.openplanner.team/stops/NL72aaa", "https://tec.openplanner.team/stops/NL72ada"], ["https://tec.openplanner.team/stops/H2sb258a", "https://tec.openplanner.team/stops/H3lr108a"], ["https://tec.openplanner.team/stops/X782ana", "https://tec.openplanner.team/stops/X784aeb"], ["https://tec.openplanner.team/stops/X922amb", "https://tec.openplanner.team/stops/X923aka"], ["https://tec.openplanner.team/stops/Cgyhaie2", "https://tec.openplanner.team/stops/Cmtdepo2"], ["https://tec.openplanner.team/stops/LBLghuy2", "https://tec.openplanner.team/stops/LBLplac3"], ["https://tec.openplanner.team/stops/H4es108a", "https://tec.openplanner.team/stops/H4hx123a"], ["https://tec.openplanner.team/stops/LWegdry1", "https://tec.openplanner.team/stops/LWevalf2"], ["https://tec.openplanner.team/stops/H1fr119b", "https://tec.openplanner.team/stops/H1no141b"], ["https://tec.openplanner.team/stops/N581aca", "https://tec.openplanner.team/stops/N581acb"], ["https://tec.openplanner.team/stops/N201aib", "https://tec.openplanner.team/stops/N214aba"], ["https://tec.openplanner.team/stops/LHAarge2", "https://tec.openplanner.team/stops/LHAdeho1"], ["https://tec.openplanner.team/stops/Bwavcen1", "https://tec.openplanner.team/stops/Bwavfol2"], ["https://tec.openplanner.team/stops/Bsomtpm1", "https://tec.openplanner.team/stops/N584afa"], ["https://tec.openplanner.team/stops/N106adb", "https://tec.openplanner.team/stops/N137aab"], ["https://tec.openplanner.team/stops/LARgare3", "https://tec.openplanner.team/stops/Lchorme1"], ["https://tec.openplanner.team/stops/X653afa", "https://tec.openplanner.team/stops/X654aia"], ["https://tec.openplanner.team/stops/Lsepair3", "https://tec.openplanner.team/stops/Lsepair4"], ["https://tec.openplanner.team/stops/X342acb", "https://tec.openplanner.team/stops/X342aga"], ["https://tec.openplanner.team/stops/N301aoa", "https://tec.openplanner.team/stops/N301apb"], ["https://tec.openplanner.team/stops/Lenhosp1", "https://tec.openplanner.team/stops/Lenmare1"], ["https://tec.openplanner.team/stops/Cmmjami3", "https://tec.openplanner.team/stops/Cmygbbo2"], ["https://tec.openplanner.team/stops/Laghetr2", "https://tec.openplanner.team/stops/Lkiblan2"], ["https://tec.openplanner.team/stops/X307aca", "https://tec.openplanner.team/stops/X307acb"], ["https://tec.openplanner.team/stops/Csubosa1", "https://tec.openplanner.team/stops/Csubosa2"], ["https://tec.openplanner.team/stops/H4jm117a", "https://tec.openplanner.team/stops/H4jm117b"], ["https://tec.openplanner.team/stops/LREelse1", "https://tec.openplanner.team/stops/LREgar-2"], ["https://tec.openplanner.team/stops/N118anc", "https://tec.openplanner.team/stops/N118aqa"], ["https://tec.openplanner.team/stops/N537ajb", "https://tec.openplanner.team/stops/N537alb"], ["https://tec.openplanner.team/stops/H1gr110a", "https://tec.openplanner.team/stops/H1gr110b"], ["https://tec.openplanner.team/stops/Bvirdco1", "https://tec.openplanner.team/stops/Bvirduj2"], ["https://tec.openplanner.team/stops/LAMjeha1", "https://tec.openplanner.team/stops/LAMrich2"], ["https://tec.openplanner.team/stops/LTNcarr1", "https://tec.openplanner.team/stops/LTNcarr2"], ["https://tec.openplanner.team/stops/H4rm107b", "https://tec.openplanner.team/stops/H4rm108b"], ["https://tec.openplanner.team/stops/LCPbatt2", "https://tec.openplanner.team/stops/LCTpt--1"], ["https://tec.openplanner.team/stops/LGeborn2", "https://tec.openplanner.team/stops/LGegare2"], ["https://tec.openplanner.team/stops/LHDchar4", "https://tec.openplanner.team/stops/LLmcheg3"], ["https://tec.openplanner.team/stops/Lvegc--7", "https://tec.openplanner.team/stops/Lvevict1"], ["https://tec.openplanner.team/stops/LATgill1", "https://tec.openplanner.team/stops/LHUmari2"], ["https://tec.openplanner.team/stops/X955ada", "https://tec.openplanner.team/stops/X955aea"], ["https://tec.openplanner.team/stops/N501iab", "https://tec.openplanner.team/stops/N501imb"], ["https://tec.openplanner.team/stops/X626aca", "https://tec.openplanner.team/stops/X626aeb"], ["https://tec.openplanner.team/stops/N584asb", "https://tec.openplanner.team/stops/N584bna"], ["https://tec.openplanner.team/stops/N229acb", "https://tec.openplanner.team/stops/N229aea"], ["https://tec.openplanner.team/stops/H3bi110a", "https://tec.openplanner.team/stops/H3bi116b"], ["https://tec.openplanner.team/stops/NL68aad", "https://tec.openplanner.team/stops/NL68acb"], ["https://tec.openplanner.team/stops/X923apa", "https://tec.openplanner.team/stops/X925afb"], ["https://tec.openplanner.team/stops/LCAwals2", "https://tec.openplanner.team/stops/LWHkerk1"], ["https://tec.openplanner.team/stops/LSAeg--1", "https://tec.openplanner.team/stops/LSAvieu1"], ["https://tec.openplanner.team/stops/Cbzfrom2", "https://tec.openplanner.team/stops/Cobbusc2"], ["https://tec.openplanner.team/stops/X660aba", "https://tec.openplanner.team/stops/X672aca"], ["https://tec.openplanner.team/stops/Cnahous1", "https://tec.openplanner.team/stops/Cnaplan1"], ["https://tec.openplanner.team/stops/Bsambra2", "https://tec.openplanner.team/stops/Bsammon4"], ["https://tec.openplanner.team/stops/Cgzchab1", "https://tec.openplanner.team/stops/Cgzchab2"], ["https://tec.openplanner.team/stops/X921aqb", "https://tec.openplanner.team/stops/X925afa"], ["https://tec.openplanner.team/stops/Csabrun2", "https://tec.openplanner.team/stops/Csasncb2"], ["https://tec.openplanner.team/stops/X879ahb", "https://tec.openplanner.team/stops/X879aib"], ["https://tec.openplanner.team/stops/Cjugill4", "https://tec.openplanner.team/stops/Cjugill6"], ["https://tec.openplanner.team/stops/Csylaha2", "https://tec.openplanner.team/stops/Csystan1"], ["https://tec.openplanner.team/stops/H4hn113a", "https://tec.openplanner.team/stops/H4hn113b"], ["https://tec.openplanner.team/stops/Bblmcel1", "https://tec.openplanner.team/stops/Bhvltol1"], ["https://tec.openplanner.team/stops/N501bpa", "https://tec.openplanner.team/stops/N501jba"], ["https://tec.openplanner.team/stops/LVLcent2", "https://tec.openplanner.team/stops/LVLeg--1"], ["https://tec.openplanner.team/stops/LLeec--1", "https://tec.openplanner.team/stops/LLelava3"], ["https://tec.openplanner.team/stops/X817aga", "https://tec.openplanner.team/stops/X817agb"], ["https://tec.openplanner.team/stops/CMmade1", "https://tec.openplanner.team/stops/CMmade2"], ["https://tec.openplanner.team/stops/Lsnhoco2", "https://tec.openplanner.team/stops/Lsntvbi3"], ["https://tec.openplanner.team/stops/Bgzdpco1", "https://tec.openplanner.team/stops/Bgzdsta1"], ["https://tec.openplanner.team/stops/H4be101a", "https://tec.openplanner.team/stops/H4ct111a"], ["https://tec.openplanner.team/stops/H4hu114a", "https://tec.openplanner.team/stops/H4hu115a"], ["https://tec.openplanner.team/stops/H4re225a", "https://tec.openplanner.team/stops/H4re225b"], ["https://tec.openplanner.team/stops/Bwavfbe2", "https://tec.openplanner.team/stops/Bwavpao1"], ["https://tec.openplanner.team/stops/Bbcoben2", "https://tec.openplanner.team/stops/H3br107b"], ["https://tec.openplanner.team/stops/H4ka180a", "https://tec.openplanner.team/stops/H4ka421a"], ["https://tec.openplanner.team/stops/LrUweve1", "https://tec.openplanner.team/stops/LsBzent1"], ["https://tec.openplanner.team/stops/N514afa", "https://tec.openplanner.team/stops/N514afb"], ["https://tec.openplanner.team/stops/Bgliaau1", "https://tec.openplanner.team/stops/Bgliaau2"], ["https://tec.openplanner.team/stops/N503aka", "https://tec.openplanner.team/stops/N580abb"], ["https://tec.openplanner.team/stops/LWecarr2", "https://tec.openplanner.team/stops/LWevalf1"], ["https://tec.openplanner.team/stops/Ccigene1", "https://tec.openplanner.team/stops/NC02ava"], ["https://tec.openplanner.team/stops/Lbooffe2", "https://tec.openplanner.team/stops/Lbosart1"], ["https://tec.openplanner.team/stops/Bcbqpon1", "https://tec.openplanner.team/stops/Bcbqufo2"], ["https://tec.openplanner.team/stops/N122afa", "https://tec.openplanner.team/stops/N122afb"], ["https://tec.openplanner.team/stops/N501kud", "https://tec.openplanner.team/stops/N501kvb"], ["https://tec.openplanner.team/stops/H1ba100b", "https://tec.openplanner.team/stops/H1ba108a"], ["https://tec.openplanner.team/stops/N209aaa", "https://tec.openplanner.team/stops/N209aba"], ["https://tec.openplanner.team/stops/X892afa", "https://tec.openplanner.team/stops/X892afb"], ["https://tec.openplanner.team/stops/Cna4che2", "https://tec.openplanner.team/stops/Cnawari1"], ["https://tec.openplanner.team/stops/Bmlnsms1", "https://tec.openplanner.team/stops/Bmlnsmv1"], ["https://tec.openplanner.team/stops/LLrfont2", "https://tec.openplanner.team/stops/LLrmeno1"], ["https://tec.openplanner.team/stops/Lghflot1", "https://tec.openplanner.team/stops/Lghflot2"], ["https://tec.openplanner.team/stops/H5rx128a", "https://tec.openplanner.team/stops/H5rx139a"], ["https://tec.openplanner.team/stops/X812aba", "https://tec.openplanner.team/stops/X812aga"], ["https://tec.openplanner.team/stops/X364aba", "https://tec.openplanner.team/stops/X364aca"], ["https://tec.openplanner.team/stops/LBIaepo2", "https://tec.openplanner.team/stops/LBIbois2"], ["https://tec.openplanner.team/stops/Lsecime1", "https://tec.openplanner.team/stops/Lsemaha2"], ["https://tec.openplanner.team/stops/Cchcaya2", "https://tec.openplanner.team/stops/Clodrio3"], ["https://tec.openplanner.team/stops/LAUmerc1", "https://tec.openplanner.team/stops/LHMa2322"], ["https://tec.openplanner.team/stops/X925aea", "https://tec.openplanner.team/stops/X982arb"], ["https://tec.openplanner.team/stops/N540ada", "https://tec.openplanner.team/stops/N540ana"], ["https://tec.openplanner.team/stops/N121aba", "https://tec.openplanner.team/stops/N121abb"], ["https://tec.openplanner.team/stops/H2ca101a", "https://tec.openplanner.team/stops/H2ca109a"], ["https://tec.openplanner.team/stops/X733aea", "https://tec.openplanner.team/stops/X733afa"], ["https://tec.openplanner.team/stops/H1eo108a", "https://tec.openplanner.team/stops/H1ni319a"], ["https://tec.openplanner.team/stops/N551ala", "https://tec.openplanner.team/stops/N551ana"], ["https://tec.openplanner.team/stops/X636adb", "https://tec.openplanner.team/stops/X636bia"], ["https://tec.openplanner.team/stops/H2pe160b", "https://tec.openplanner.team/stops/H2sv221a"], ["https://tec.openplanner.team/stops/H1wa149a", "https://tec.openplanner.team/stops/H1wa153a"], ["https://tec.openplanner.team/stops/Cctberg2", "https://tec.openplanner.team/stops/Cctgiss1"], ["https://tec.openplanner.team/stops/Bottcco1", "https://tec.openplanner.team/stops/Bottpma2"], ["https://tec.openplanner.team/stops/X888aba", "https://tec.openplanner.team/stops/X888aea"], ["https://tec.openplanner.team/stops/X982aya", "https://tec.openplanner.team/stops/X982aza"], ["https://tec.openplanner.team/stops/Lmlboul2", "https://tec.openplanner.team/stops/Lmlscie1"], ["https://tec.openplanner.team/stops/Llgchai1", "https://tec.openplanner.team/stops/Llgcrev2"], ["https://tec.openplanner.team/stops/X733aka", "https://tec.openplanner.team/stops/X733ala"], ["https://tec.openplanner.team/stops/H1ba116b", "https://tec.openplanner.team/stops/H1qu104b"], ["https://tec.openplanner.team/stops/N311aab", "https://tec.openplanner.team/stops/N368acb"], ["https://tec.openplanner.team/stops/X611aca", "https://tec.openplanner.team/stops/X825aeb"], ["https://tec.openplanner.team/stops/H1hn208a", "https://tec.openplanner.team/stops/H1ms925a"], ["https://tec.openplanner.team/stops/X766ahb", "https://tec.openplanner.team/stops/X768alc"], ["https://tec.openplanner.team/stops/Bspkbeu1", "https://tec.openplanner.team/stops/Bspkbeu2"], ["https://tec.openplanner.team/stops/X636axa", "https://tec.openplanner.team/stops/X636axb"], ["https://tec.openplanner.team/stops/LeUbahn3", "https://tec.openplanner.team/stops/LeUbahn5"], ["https://tec.openplanner.team/stops/Bptblma1", "https://tec.openplanner.team/stops/Bptbsar2"], ["https://tec.openplanner.team/stops/Landolh3", "https://tec.openplanner.team/stops/Lanmouf2"], ["https://tec.openplanner.team/stops/H1at108a", "https://tec.openplanner.team/stops/H1fy142a"], ["https://tec.openplanner.team/stops/Ladppir1", "https://tec.openplanner.team/stops/Lveepar2"], ["https://tec.openplanner.team/stops/X901axa", "https://tec.openplanner.team/stops/X901bla"], ["https://tec.openplanner.team/stops/H1sa112a", "https://tec.openplanner.team/stops/H1sa112b"], ["https://tec.openplanner.team/stops/H1mj129a", "https://tec.openplanner.team/stops/H1mj131a"], ["https://tec.openplanner.team/stops/H5rx100b", "https://tec.openplanner.team/stops/H5rx102b"], ["https://tec.openplanner.team/stops/X605aea", "https://tec.openplanner.team/stops/X605aga"], ["https://tec.openplanner.team/stops/N501hua", "https://tec.openplanner.team/stops/N501ifa"], ["https://tec.openplanner.team/stops/N525afa", "https://tec.openplanner.team/stops/N525afb"], ["https://tec.openplanner.team/stops/X923aca", "https://tec.openplanner.team/stops/X923aeb"], ["https://tec.openplanner.team/stops/Bcharce1", "https://tec.openplanner.team/stops/Bcharce2"], ["https://tec.openplanner.team/stops/X804aua", "https://tec.openplanner.team/stops/X804bqa"], ["https://tec.openplanner.team/stops/X790aja", "https://tec.openplanner.team/stops/X790ajb"], ["https://tec.openplanner.team/stops/H2ll177b", "https://tec.openplanner.team/stops/H2ll197b"], ["https://tec.openplanner.team/stops/Crebien2", "https://tec.openplanner.team/stops/Creha762"], ["https://tec.openplanner.team/stops/Lflmaxi1", "https://tec.openplanner.team/stops/Lre3che2"], ["https://tec.openplanner.team/stops/X601aia", "https://tec.openplanner.team/stops/X601aka"], ["https://tec.openplanner.team/stops/X939aca", "https://tec.openplanner.team/stops/X939acb"], ["https://tec.openplanner.team/stops/CMmoul1", "https://tec.openplanner.team/stops/CMmoul2"], ["https://tec.openplanner.team/stops/H1bi101b", "https://tec.openplanner.team/stops/H1lo119a"], ["https://tec.openplanner.team/stops/Cchbrou1", "https://tec.openplanner.team/stops/Cchjaur1"], ["https://tec.openplanner.team/stops/H4ef113a", "https://tec.openplanner.team/stops/H4ef138b"], ["https://tec.openplanner.team/stops/H1lb134a", "https://tec.openplanner.team/stops/H1lb153a"], ["https://tec.openplanner.team/stops/N244ada", "https://tec.openplanner.team/stops/N244afb"], ["https://tec.openplanner.team/stops/Bbchume1", "https://tec.openplanner.team/stops/Bcbqa361"], ["https://tec.openplanner.team/stops/H4vz367b", "https://tec.openplanner.team/stops/H4ws160a"], ["https://tec.openplanner.team/stops/H4rs117b", "https://tec.openplanner.team/stops/H4rs119a"], ["https://tec.openplanner.team/stops/X619aia", "https://tec.openplanner.team/stops/X620afb"], ["https://tec.openplanner.team/stops/LXHadam1", "https://tec.openplanner.team/stops/LXHbell1"], ["https://tec.openplanner.team/stops/X731aga", "https://tec.openplanner.team/stops/X731amb"], ["https://tec.openplanner.team/stops/LAWgill1", "https://tec.openplanner.team/stops/LAWlonc2"], ["https://tec.openplanner.team/stops/Cli4bra1", "https://tec.openplanner.team/stops/Clulidl1"], ["https://tec.openplanner.team/stops/LESryon2", "https://tec.openplanner.team/stops/LSdsa452"], ["https://tec.openplanner.team/stops/LhPheps1", "https://tec.openplanner.team/stops/LhPprum2"], ["https://tec.openplanner.team/stops/H1cd113a", "https://tec.openplanner.team/stops/H1ne145a"], ["https://tec.openplanner.team/stops/N501jfa", "https://tec.openplanner.team/stops/N501jfb"], ["https://tec.openplanner.team/stops/NH01aba", "https://tec.openplanner.team/stops/NH01abb"], ["https://tec.openplanner.team/stops/Cchoues5", "https://tec.openplanner.team/stops/Cchviad2"], ["https://tec.openplanner.team/stops/H5rx103b", "https://tec.openplanner.team/stops/H5rx125b"], ["https://tec.openplanner.team/stops/LREgrot4", "https://tec.openplanner.team/stops/LREsoug4"], ["https://tec.openplanner.team/stops/N569aba", "https://tec.openplanner.team/stops/N569afa"], ["https://tec.openplanner.team/stops/X899acb", "https://tec.openplanner.team/stops/X899aea"], ["https://tec.openplanner.team/stops/N519apa", "https://tec.openplanner.team/stops/N519apb"], ["https://tec.openplanner.team/stops/N329aaa", "https://tec.openplanner.team/stops/N365aab"], ["https://tec.openplanner.team/stops/Loudela2", "https://tec.openplanner.team/stops/Lsedese2"], ["https://tec.openplanner.team/stops/H1on128d", "https://tec.openplanner.team/stops/H1on129a"], ["https://tec.openplanner.team/stops/H1vh137b", "https://tec.openplanner.team/stops/H3th129a"], ["https://tec.openplanner.team/stops/LGLcour4", "https://tec.openplanner.team/stops/LGLdeni2"], ["https://tec.openplanner.team/stops/Caindsa1", "https://tec.openplanner.team/stops/Caistro1"], ["https://tec.openplanner.team/stops/N535aea", "https://tec.openplanner.team/stops/N535ama"], ["https://tec.openplanner.team/stops/N501hzc", "https://tec.openplanner.team/stops/N501ifb"], ["https://tec.openplanner.team/stops/X724aga", "https://tec.openplanner.team/stops/X724ahb"], ["https://tec.openplanner.team/stops/Bblafrn1", "https://tec.openplanner.team/stops/Bblasse2"], ["https://tec.openplanner.team/stops/LNCfawe1", "https://tec.openplanner.team/stops/LNCfawe2"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/Crcrwas1"], ["https://tec.openplanner.team/stops/Lemdieu2", "https://tec.openplanner.team/stops/Lemmc--2"], ["https://tec.openplanner.team/stops/Blimeur2", "https://tec.openplanner.team/stops/Blmlgar2"], ["https://tec.openplanner.team/stops/N101aha", "https://tec.openplanner.team/stops/N101ala"], ["https://tec.openplanner.team/stops/Ccychba1", "https://tec.openplanner.team/stops/Crbrgar2"], ["https://tec.openplanner.team/stops/LBEcomm2", "https://tec.openplanner.team/stops/LBEtilf2"], ["https://tec.openplanner.team/stops/LbHzent1", "https://tec.openplanner.team/stops/LmSluxh1"], ["https://tec.openplanner.team/stops/LSOcime1", "https://tec.openplanner.team/stops/LSOladr1"], ["https://tec.openplanner.team/stops/Bgemcha1", "https://tec.openplanner.team/stops/Bgemcha2"], ["https://tec.openplanner.team/stops/X359ada", "https://tec.openplanner.team/stops/X359aka"], ["https://tec.openplanner.team/stops/LBEpier1", "https://tec.openplanner.team/stops/LNipre-1"], ["https://tec.openplanner.team/stops/H3br100a", "https://tec.openplanner.team/stops/H3br100b"], ["https://tec.openplanner.team/stops/N501iwa", "https://tec.openplanner.team/stops/N501iwb"], ["https://tec.openplanner.team/stops/N501esa", "https://tec.openplanner.team/stops/N501exa"], ["https://tec.openplanner.team/stops/Llgcong2", "https://tec.openplanner.team/stops/Llgparc1"], ["https://tec.openplanner.team/stops/X938aba", "https://tec.openplanner.team/stops/X939afb"], ["https://tec.openplanner.team/stops/Cbwmvri1", "https://tec.openplanner.team/stops/Cmgpthi1"], ["https://tec.openplanner.team/stops/Cmaegal1", "https://tec.openplanner.team/stops/Crobass2"], ["https://tec.openplanner.team/stops/X639aia", "https://tec.openplanner.team/stops/X639akd"], ["https://tec.openplanner.team/stops/LATcorp2", "https://tec.openplanner.team/stops/LATmals2"], ["https://tec.openplanner.team/stops/H1hc127a", "https://tec.openplanner.team/stops/H1hc127c"], ["https://tec.openplanner.team/stops/LVeeg--1", "https://tec.openplanner.team/stops/LVGeg--2"], ["https://tec.openplanner.team/stops/H4ru241a", "https://tec.openplanner.team/stops/H4ru241b"], ["https://tec.openplanner.team/stops/X601bea", "https://tec.openplanner.team/stops/X601bhb"], ["https://tec.openplanner.team/stops/X721aqb", "https://tec.openplanner.team/stops/X721arb"], ["https://tec.openplanner.team/stops/Ccigill1", "https://tec.openplanner.team/stops/Ccigill3"], ["https://tec.openplanner.team/stops/N562aia", "https://tec.openplanner.team/stops/N562azb"], ["https://tec.openplanner.team/stops/Cmlbruy2", "https://tec.openplanner.team/stops/Cmlrbru1"], ["https://tec.openplanner.team/stops/Btgregl1", "https://tec.openplanner.team/stops/N584aea"], ["https://tec.openplanner.team/stops/X766abb", "https://tec.openplanner.team/stops/X766ahb"], ["https://tec.openplanner.team/stops/LVHbrai2", "https://tec.openplanner.team/stops/LVHtill2"], ["https://tec.openplanner.team/stops/Cfaeclu1", "https://tec.openplanner.team/stops/Crseuro2"], ["https://tec.openplanner.team/stops/X802aba", "https://tec.openplanner.team/stops/X818ajb"], ["https://tec.openplanner.team/stops/NL37aba", "https://tec.openplanner.team/stops/NL37ala"], ["https://tec.openplanner.team/stops/LCPlacr2", "https://tec.openplanner.team/stops/LCPpech2"], ["https://tec.openplanner.team/stops/X652agb", "https://tec.openplanner.team/stops/X652ahb"], ["https://tec.openplanner.team/stops/Cprrvil1", "https://tec.openplanner.team/stops/Cprrvil2"], ["https://tec.openplanner.team/stops/Ctmmana2", "https://tec.openplanner.team/stops/Cvvmonu2"], ["https://tec.openplanner.team/stops/LMIbois1", "https://tec.openplanner.team/stops/LMIgare1"], ["https://tec.openplanner.team/stops/N584ayb", "https://tec.openplanner.team/stops/N584cba"], ["https://tec.openplanner.team/stops/X943afa", "https://tec.openplanner.team/stops/X943afb"], ["https://tec.openplanner.team/stops/Cmychap3", "https://tec.openplanner.team/stops/Cmychau1"], ["https://tec.openplanner.team/stops/Llghaye1", "https://tec.openplanner.team/stops/Llghenr1"], ["https://tec.openplanner.team/stops/H1ms942a", "https://tec.openplanner.team/stops/H1ms943a"], ["https://tec.openplanner.team/stops/LVLbovy1", "https://tec.openplanner.team/stops/LVLgotr2"], ["https://tec.openplanner.team/stops/LVEfize2", "https://tec.openplanner.team/stops/LVEphar2"], ["https://tec.openplanner.team/stops/N528anb", "https://tec.openplanner.team/stops/N528apa"], ["https://tec.openplanner.team/stops/N507aka", "https://tec.openplanner.team/stops/N507akb"], ["https://tec.openplanner.team/stops/H2ll192b", "https://tec.openplanner.team/stops/H2ll193a"], ["https://tec.openplanner.team/stops/Bbeaap51", "https://tec.openplanner.team/stops/Bbeaap52"], ["https://tec.openplanner.team/stops/X804aga", "https://tec.openplanner.team/stops/X804bdb"], ["https://tec.openplanner.team/stops/LSpfond1", "https://tec.openplanner.team/stops/LSpvanr2"], ["https://tec.openplanner.team/stops/X948ama", "https://tec.openplanner.team/stops/X949akb"], ["https://tec.openplanner.team/stops/Cchsud06", "https://tec.openplanner.team/stops/Cmlvitf2"], ["https://tec.openplanner.team/stops/X781aca", "https://tec.openplanner.team/stops/X781aga"], ["https://tec.openplanner.team/stops/Bnivlai2", "https://tec.openplanner.team/stops/Bnivsho2"], ["https://tec.openplanner.team/stops/Bstmpla1", "https://tec.openplanner.team/stops/N561aba"], ["https://tec.openplanner.team/stops/LVIferm1", "https://tec.openplanner.team/stops/LVIhall1"], ["https://tec.openplanner.team/stops/Clomari4", "https://tec.openplanner.team/stops/Clomari5"], ["https://tec.openplanner.team/stops/Cfopetr1", "https://tec.openplanner.team/stops/Clrrhau2"], ["https://tec.openplanner.team/stops/N121aab", "https://tec.openplanner.team/stops/N150afa"], ["https://tec.openplanner.team/stops/LCtcref1", "https://tec.openplanner.team/stops/X750bpa"], ["https://tec.openplanner.team/stops/N554aea", "https://tec.openplanner.team/stops/N554aeb"], ["https://tec.openplanner.team/stops/Chpcarp1", "https://tec.openplanner.team/stops/Chpcarp2"], ["https://tec.openplanner.team/stops/LCUmars1", "https://tec.openplanner.team/stops/LCUthie2"], ["https://tec.openplanner.team/stops/N343ada", "https://tec.openplanner.team/stops/N343akb"], ["https://tec.openplanner.team/stops/X601cba", "https://tec.openplanner.team/stops/X663ajb"], ["https://tec.openplanner.team/stops/N214aja", "https://tec.openplanner.team/stops/N225aeb"], ["https://tec.openplanner.team/stops/LOuathe1", "https://tec.openplanner.team/stops/LOucuve2"], ["https://tec.openplanner.team/stops/LSochal1", "https://tec.openplanner.team/stops/LSogite1"], ["https://tec.openplanner.team/stops/Cptdubo2", "https://tec.openplanner.team/stops/Cpttraz1"], ["https://tec.openplanner.team/stops/LBNruns1", "https://tec.openplanner.team/stops/LGObeth2"], ["https://tec.openplanner.team/stops/Lghgoll2", "https://tec.openplanner.team/stops/Lghpara2"], ["https://tec.openplanner.team/stops/Cfarcam1", "https://tec.openplanner.team/stops/Cfastan1"], ["https://tec.openplanner.team/stops/N509aub", "https://tec.openplanner.team/stops/N511aob"], ["https://tec.openplanner.team/stops/X749acb", "https://tec.openplanner.team/stops/X756agb"], ["https://tec.openplanner.team/stops/Cgogare2", "https://tec.openplanner.team/stops/Craplac3"], ["https://tec.openplanner.team/stops/X224ada", "https://tec.openplanner.team/stops/X224adb"], ["https://tec.openplanner.team/stops/LHexhav2", "https://tec.openplanner.team/stops/LHSheur2"], ["https://tec.openplanner.team/stops/N501hxy", "https://tec.openplanner.team/stops/N501hxz"], ["https://tec.openplanner.team/stops/LPobois1", "https://tec.openplanner.team/stops/LPobois2"], ["https://tec.openplanner.team/stops/Cmmceri1", "https://tec.openplanner.team/stops/Cmmplac1"], ["https://tec.openplanner.team/stops/Bovetwe2", "https://tec.openplanner.team/stops/Brsrabe2"], ["https://tec.openplanner.team/stops/H1hy127b", "https://tec.openplanner.team/stops/H1qy135b"], ["https://tec.openplanner.team/stops/X946afa", "https://tec.openplanner.team/stops/X946afb"], ["https://tec.openplanner.team/stops/N222aab", "https://tec.openplanner.team/stops/X222ala"], ["https://tec.openplanner.team/stops/H4vz367b", "https://tec.openplanner.team/stops/H4vz371b"], ["https://tec.openplanner.team/stops/Clvchen1", "https://tec.openplanner.team/stops/Clvndam1"], ["https://tec.openplanner.team/stops/X889abb", "https://tec.openplanner.team/stops/X889aca"], ["https://tec.openplanner.team/stops/LLTcent1", "https://tec.openplanner.team/stops/LLTcoop1"], ["https://tec.openplanner.team/stops/N532ajb", "https://tec.openplanner.team/stops/N533adb"], ["https://tec.openplanner.team/stops/H4bo122a", "https://tec.openplanner.team/stops/H4bo122b"], ["https://tec.openplanner.team/stops/X613aab", "https://tec.openplanner.team/stops/X613aba"], ["https://tec.openplanner.team/stops/N573aaa", "https://tec.openplanner.team/stops/N573aia"], ["https://tec.openplanner.team/stops/Cvtvail1", "https://tec.openplanner.team/stops/Cvtvail2"], ["https://tec.openplanner.team/stops/N561aib", "https://tec.openplanner.team/stops/N584aqb"], ["https://tec.openplanner.team/stops/H1ho125b", "https://tec.openplanner.team/stops/H1ho134b"], ["https://tec.openplanner.team/stops/H4oq224a", "https://tec.openplanner.team/stops/H4oq224b"], ["https://tec.openplanner.team/stops/H4pq115a", "https://tec.openplanner.team/stops/H4pq117b"], ["https://tec.openplanner.team/stops/X754ara", "https://tec.openplanner.team/stops/X754aua"], ["https://tec.openplanner.team/stops/N101ana", "https://tec.openplanner.team/stops/N101aua"], ["https://tec.openplanner.team/stops/Bclgavi2", "https://tec.openplanner.team/stops/Bclgfva1"], ["https://tec.openplanner.team/stops/Cgxchea2", "https://tec.openplanner.team/stops/Cgxcime2"], ["https://tec.openplanner.team/stops/Bgliron1", "https://tec.openplanner.team/stops/Bmasegl2"], ["https://tec.openplanner.team/stops/Llgnani1", "https://tec.openplanner.team/stops/Llgwesp1"], ["https://tec.openplanner.team/stops/Cplcafp2", "https://tec.openplanner.team/stops/Cpllimi5"], ["https://tec.openplanner.team/stops/Bgntcha1", "https://tec.openplanner.team/stops/Bsgebou2"], ["https://tec.openplanner.team/stops/H4er122a", "https://tec.openplanner.team/stops/H4ty300a"], ["https://tec.openplanner.team/stops/Cgocat1", "https://tec.openplanner.team/stops/Cgoetun4"], ["https://tec.openplanner.team/stops/N231aba", "https://tec.openplanner.team/stops/N291aaa"], ["https://tec.openplanner.team/stops/LPrcarr1", "https://tec.openplanner.team/stops/LPrcarr2"], ["https://tec.openplanner.team/stops/LMNentr1", "https://tec.openplanner.team/stops/LMNgend2"], ["https://tec.openplanner.team/stops/H1hy127b", "https://tec.openplanner.team/stops/H1hy144a"], ["https://tec.openplanner.team/stops/H1ms260a", "https://tec.openplanner.team/stops/H1ms940a"], ["https://tec.openplanner.team/stops/H1at108a", "https://tec.openplanner.team/stops/H1at110b"], ["https://tec.openplanner.team/stops/X769ana", "https://tec.openplanner.team/stops/X769aob"], ["https://tec.openplanner.team/stops/Cjubrul4", "https://tec.openplanner.team/stops/Cjugill4"], ["https://tec.openplanner.team/stops/H4ty358a", "https://tec.openplanner.team/stops/H4ty383b"], ["https://tec.openplanner.team/stops/LeUcroi2", "https://tec.openplanner.team/stops/LeUhutt1"], ["https://tec.openplanner.team/stops/Lcavign1", "https://tec.openplanner.team/stops/LNipla3"], ["https://tec.openplanner.team/stops/Bmrlcch1", "https://tec.openplanner.team/stops/NR21ajb"], ["https://tec.openplanner.team/stops/LFAtomb1", "https://tec.openplanner.team/stops/LFAtomb2"], ["https://tec.openplanner.team/stops/H4mo159b", "https://tec.openplanner.team/stops/H4rk101b"], ["https://tec.openplanner.team/stops/X542adb", "https://tec.openplanner.team/stops/X542aeb"], ["https://tec.openplanner.team/stops/Cwgmell2", "https://tec.openplanner.team/stops/Cwgmell4"], ["https://tec.openplanner.team/stops/X756adb", "https://tec.openplanner.team/stops/X756aed"], ["https://tec.openplanner.team/stops/H3th130b", "https://tec.openplanner.team/stops/H3th131b"], ["https://tec.openplanner.team/stops/N122aba", "https://tec.openplanner.team/stops/N123aaa"], ["https://tec.openplanner.team/stops/LSetrix1", "https://tec.openplanner.team/stops/LVbstre2"], ["https://tec.openplanner.team/stops/LBEtilf1", "https://tec.openplanner.team/stops/LBEtilf2"], ["https://tec.openplanner.team/stops/H4wn130b", "https://tec.openplanner.team/stops/H4wn138b"], ["https://tec.openplanner.team/stops/Cvvchea2", "https://tec.openplanner.team/stops/Cvvgrsa2"], ["https://tec.openplanner.team/stops/X637aea", "https://tec.openplanner.team/stops/X637agc"], ["https://tec.openplanner.team/stops/N501dsa", "https://tec.openplanner.team/stops/N501dtc"], ["https://tec.openplanner.team/stops/LORthie1", "https://tec.openplanner.team/stops/LORvill2"], ["https://tec.openplanner.team/stops/NB33aia", "https://tec.openplanner.team/stops/NB33aib"], ["https://tec.openplanner.team/stops/X904aea", "https://tec.openplanner.team/stops/X943agb"], ["https://tec.openplanner.team/stops/X836adb", "https://tec.openplanner.team/stops/X836aib"], ["https://tec.openplanner.team/stops/X619aja", "https://tec.openplanner.team/stops/X620ahb"], ["https://tec.openplanner.team/stops/N515akc", "https://tec.openplanner.team/stops/N515ala"], ["https://tec.openplanner.team/stops/Cfrempe2", "https://tec.openplanner.team/stops/Cfrfaub4"], ["https://tec.openplanner.team/stops/Cciecol2", "https://tec.openplanner.team/stops/NC02aub"], ["https://tec.openplanner.team/stops/Lsearbo2", "https://tec.openplanner.team/stops/Lsebeau*"], ["https://tec.openplanner.team/stops/N512akb", "https://tec.openplanner.team/stops/N512alb"], ["https://tec.openplanner.team/stops/LSNbouh3", "https://tec.openplanner.team/stops/LSNecol4"], ["https://tec.openplanner.team/stops/X733aha", "https://tec.openplanner.team/stops/X733ahb"], ["https://tec.openplanner.team/stops/H2ll189b", "https://tec.openplanner.team/stops/H2ll189c"], ["https://tec.openplanner.team/stops/X662afa", "https://tec.openplanner.team/stops/X662aga"], ["https://tec.openplanner.team/stops/LWecorn1", "https://tec.openplanner.team/stops/LWecorn2"], ["https://tec.openplanner.team/stops/LNIec--1", "https://tec.openplanner.team/stops/LNIhaut2"], ["https://tec.openplanner.team/stops/Cfrcoop4", "https://tec.openplanner.team/stops/Cfrplac4"], ["https://tec.openplanner.team/stops/X823afd", "https://tec.openplanner.team/stops/X824aaa"], ["https://tec.openplanner.team/stops/Bbaucai1", "https://tec.openplanner.team/stops/Bbauegl2"], ["https://tec.openplanner.team/stops/Cmlecha2", "https://tec.openplanner.team/stops/Cmlhotv1"], ["https://tec.openplanner.team/stops/Bnivaig2", "https://tec.openplanner.team/stops/Bnivath1"], ["https://tec.openplanner.team/stops/Ccuhsti1", "https://tec.openplanner.team/stops/Cpipost2"], ["https://tec.openplanner.team/stops/LeUbush1", "https://tec.openplanner.team/stops/LeUrath1"], ["https://tec.openplanner.team/stops/Bwatmlo2", "https://tec.openplanner.team/stops/Bwatras1"], ["https://tec.openplanner.team/stops/Cjupui02", "https://tec.openplanner.team/stops/Cjurogi2"], ["https://tec.openplanner.team/stops/H4ms144a", "https://tec.openplanner.team/stops/H4ms144b"], ["https://tec.openplanner.team/stops/X619aha", "https://tec.openplanner.team/stops/X620afb"], ["https://tec.openplanner.team/stops/LACeg--1", "https://tec.openplanner.team/stops/LACwass1"], ["https://tec.openplanner.team/stops/X802ahb", "https://tec.openplanner.team/stops/X802aoa"], ["https://tec.openplanner.team/stops/Cvtchap2", "https://tec.openplanner.team/stops/Cvtmaro2"], ["https://tec.openplanner.team/stops/LBrmeiz2", "https://tec.openplanner.team/stops/LMici092"], ["https://tec.openplanner.team/stops/X316aaa", "https://tec.openplanner.team/stops/X318aca"], ["https://tec.openplanner.team/stops/LRRemul1", "https://tec.openplanner.team/stops/LRRroth1"], ["https://tec.openplanner.team/stops/H1ms288a", "https://tec.openplanner.team/stops/H1ms305b"], ["https://tec.openplanner.team/stops/Lmabott2", "https://tec.openplanner.team/stops/Lmaetan*"], ["https://tec.openplanner.team/stops/H1br125b", "https://tec.openplanner.team/stops/H1wz173b"], ["https://tec.openplanner.team/stops/N513aha", "https://tec.openplanner.team/stops/N513awa"], ["https://tec.openplanner.team/stops/Bnivace1", "https://tec.openplanner.team/stops/Bnivaig2"], ["https://tec.openplanner.team/stops/Bjaugar1", "https://tec.openplanner.team/stops/Bjaugar5"], ["https://tec.openplanner.team/stops/Lvtcime1", "https://tec.openplanner.team/stops/Lvtvici2"], ["https://tec.openplanner.team/stops/X725adb", "https://tec.openplanner.team/stops/X725bga"], ["https://tec.openplanner.team/stops/LbTgeme2", "https://tec.openplanner.team/stops/LwYkreu3"], ["https://tec.openplanner.team/stops/Llggram1", "https://tec.openplanner.team/stops/Llggram4"], ["https://tec.openplanner.team/stops/Lkinyst1", "https://tec.openplanner.team/stops/Lscatme2"], ["https://tec.openplanner.team/stops/Llgomal2", "https://tec.openplanner.team/stops/Llgschm1"], ["https://tec.openplanner.team/stops/LJU493-1", "https://tec.openplanner.team/stops/LPAbrun2"], ["https://tec.openplanner.team/stops/Cmgpla2", "https://tec.openplanner.team/stops/Cmgpn2"], ["https://tec.openplanner.team/stops/X806afb", "https://tec.openplanner.team/stops/X806agb"], ["https://tec.openplanner.team/stops/LNCmoul1", "https://tec.openplanner.team/stops/LRachen2"], ["https://tec.openplanner.team/stops/H4ty311a", "https://tec.openplanner.team/stops/H4vx360a"], ["https://tec.openplanner.team/stops/H4ae102b", "https://tec.openplanner.team/stops/H4po129b"], ["https://tec.openplanner.team/stops/H1wa142a", "https://tec.openplanner.team/stops/H1wa142b"], ["https://tec.openplanner.team/stops/Ccumasu1", "https://tec.openplanner.team/stops/Ccumasu2"], ["https://tec.openplanner.team/stops/LSPsous1", "https://tec.openplanner.team/stops/LSPtonn1"], ["https://tec.openplanner.team/stops/Cmychpl1", "https://tec.openplanner.team/stops/Cmyplac2"], ["https://tec.openplanner.team/stops/H4hq131a", "https://tec.openplanner.team/stops/H4hq132a"], ["https://tec.openplanner.team/stops/Bbaulil2", "https://tec.openplanner.team/stops/Bnivche1"], ["https://tec.openplanner.team/stops/H1bb119a", "https://tec.openplanner.team/stops/H1bb146a"], ["https://tec.openplanner.team/stops/LLEfagn2", "https://tec.openplanner.team/stops/LLEgare2"], ["https://tec.openplanner.team/stops/H1ne137a", "https://tec.openplanner.team/stops/H1ne149b"], ["https://tec.openplanner.team/stops/LLycent*", "https://tec.openplanner.team/stops/LWLtamb2"], ["https://tec.openplanner.team/stops/N581aba", "https://tec.openplanner.team/stops/N581aca"], ["https://tec.openplanner.team/stops/Bwatcro1", "https://tec.openplanner.team/stops/Bwatrsg1"], ["https://tec.openplanner.team/stops/Blanath1", "https://tec.openplanner.team/stops/Blanath2"], ["https://tec.openplanner.team/stops/LeLbutg3", "https://tec.openplanner.team/stops/LeLbutg4"], ["https://tec.openplanner.team/stops/X757abb", "https://tec.openplanner.team/stops/X757ada"], ["https://tec.openplanner.team/stops/N504aba", "https://tec.openplanner.team/stops/N579aab"], ["https://tec.openplanner.team/stops/Lenhouc1", "https://tec.openplanner.team/stops/Lvedepo*"], ["https://tec.openplanner.team/stops/Bbwacol1", "https://tec.openplanner.team/stops/Bbwacol2"], ["https://tec.openplanner.team/stops/H1og132a", "https://tec.openplanner.team/stops/H1og134a"], ["https://tec.openplanner.team/stops/N201aga", "https://tec.openplanner.team/stops/N202aca"], ["https://tec.openplanner.team/stops/H1hn204a", "https://tec.openplanner.team/stops/H1hn207a"], ["https://tec.openplanner.team/stops/N170aga", "https://tec.openplanner.team/stops/N170agb"], ["https://tec.openplanner.team/stops/X767aba", "https://tec.openplanner.team/stops/X767aca"], ["https://tec.openplanner.team/stops/H4lu126b", "https://tec.openplanner.team/stops/H4lu128a"], ["https://tec.openplanner.team/stops/N244aqa", "https://tec.openplanner.team/stops/N244axa"], ["https://tec.openplanner.team/stops/H4bh101a", "https://tec.openplanner.team/stops/H4bh102b"], ["https://tec.openplanner.team/stops/Cfccuch1", "https://tec.openplanner.team/stops/Cvrfema2"], ["https://tec.openplanner.team/stops/Bsgeegl2", "https://tec.openplanner.team/stops/Bsgeegl3"], ["https://tec.openplanner.team/stops/LCRchpl1", "https://tec.openplanner.team/stops/LCRf14-1"], ["https://tec.openplanner.team/stops/Lbbgare1", "https://tec.openplanner.team/stops/Lgrcral1"], ["https://tec.openplanner.team/stops/LPLcroi1", "https://tec.openplanner.team/stops/LPLphar2"], ["https://tec.openplanner.team/stops/Bbchsac1", "https://tec.openplanner.team/stops/Bhtipir1"], ["https://tec.openplanner.team/stops/LsHfrie1", "https://tec.openplanner.team/stops/LsHfrie2"], ["https://tec.openplanner.team/stops/H1ba107a", "https://tec.openplanner.team/stops/H1ba110b"], ["https://tec.openplanner.team/stops/Bnodeco1", "https://tec.openplanner.team/stops/Bnodeco2"], ["https://tec.openplanner.team/stops/N136ada", "https://tec.openplanner.team/stops/N143aab"], ["https://tec.openplanner.team/stops/H4be104a", "https://tec.openplanner.team/stops/H4be104b"], ["https://tec.openplanner.team/stops/H1mb128b", "https://tec.openplanner.team/stops/H1mb135b"], ["https://tec.openplanner.team/stops/X359aga", "https://tec.openplanner.team/stops/X359agb"], ["https://tec.openplanner.team/stops/Cvlbvir1", "https://tec.openplanner.team/stops/Cvlbvir2"], ["https://tec.openplanner.team/stops/Btubind2", "https://tec.openplanner.team/stops/Btubsca1"], ["https://tec.openplanner.team/stops/LJEniho2", "https://tec.openplanner.team/stops/LJEtige1"], ["https://tec.openplanner.team/stops/Berneco1", "https://tec.openplanner.team/stops/Bernpon2"], ["https://tec.openplanner.team/stops/Lsnbrac2", "https://tec.openplanner.team/stops/Lsnhorl1"], ["https://tec.openplanner.team/stops/Clooues2", "https://tec.openplanner.team/stops/Cloravi2"], ["https://tec.openplanner.team/stops/LrDsage2", "https://tec.openplanner.team/stops/LrDzoll4"], ["https://tec.openplanner.team/stops/LkEhaag1", "https://tec.openplanner.team/stops/LlNm%C3%BChl2"], ["https://tec.openplanner.team/stops/Cgzha621", "https://tec.openplanner.team/stops/Cgzmarb2"], ["https://tec.openplanner.team/stops/LFRcoun2", "https://tec.openplanner.team/stops/LSTamer2"], ["https://tec.openplanner.team/stops/Cmtrbla1", "https://tec.openplanner.team/stops/Cmtrbra1"], ["https://tec.openplanner.team/stops/X651aab", "https://tec.openplanner.team/stops/X652aaa"], ["https://tec.openplanner.team/stops/X982baa", "https://tec.openplanner.team/stops/X996aaa"], ["https://tec.openplanner.team/stops/H1ms296c", "https://tec.openplanner.team/stops/H1ms924a"], ["https://tec.openplanner.team/stops/N143aab", "https://tec.openplanner.team/stops/N143aba"], ["https://tec.openplanner.team/stops/LAibego1", "https://tec.openplanner.team/stops/LAibego2"], ["https://tec.openplanner.team/stops/Cdalpla1", "https://tec.openplanner.team/stops/CMlpla1"], ["https://tec.openplanner.team/stops/H1ls108a", "https://tec.openplanner.team/stops/H1ls110a"], ["https://tec.openplanner.team/stops/LNCchau1", "https://tec.openplanner.team/stops/LNCmada2"], ["https://tec.openplanner.team/stops/Lfhdone1", "https://tec.openplanner.team/stops/Lfh-sci2"], ["https://tec.openplanner.team/stops/H2ca108a", "https://tec.openplanner.team/stops/H2ca108b"], ["https://tec.openplanner.team/stops/N137aha", "https://tec.openplanner.team/stops/N137ahb"], ["https://tec.openplanner.team/stops/LMAbijo2", "https://tec.openplanner.team/stops/LMAchod1"], ["https://tec.openplanner.team/stops/N120acb", "https://tec.openplanner.team/stops/N301ajb"], ["https://tec.openplanner.team/stops/Bhlvlou1", "https://tec.openplanner.team/stops/Crewaba1"], ["https://tec.openplanner.team/stops/H4mo170a", "https://tec.openplanner.team/stops/H4rx176a"], ["https://tec.openplanner.team/stops/X761aca", "https://tec.openplanner.team/stops/X761acb"], ["https://tec.openplanner.team/stops/X639aka", "https://tec.openplanner.team/stops/X639ala"], ["https://tec.openplanner.team/stops/N550afb", "https://tec.openplanner.team/stops/N550ana"], ["https://tec.openplanner.team/stops/Cmastfi2", "https://tec.openplanner.team/stops/Cmocalv2"], ["https://tec.openplanner.team/stops/Binccha2", "https://tec.openplanner.team/stops/Bincegl1"], ["https://tec.openplanner.team/stops/H3th127a", "https://tec.openplanner.team/stops/H3th130a"], ["https://tec.openplanner.team/stops/H4al100a", "https://tec.openplanner.team/stops/H4ch116a"], ["https://tec.openplanner.team/stops/LSShous2", "https://tec.openplanner.team/stops/LVTtrou1"], ["https://tec.openplanner.team/stops/LFFchal1", "https://tec.openplanner.team/stops/LJEniho2"], ["https://tec.openplanner.team/stops/Cromart1", "https://tec.openplanner.team/stops/Cromart2"], ["https://tec.openplanner.team/stops/LlgLAMB2", "https://tec.openplanner.team/stops/LlgLAMB3"], ["https://tec.openplanner.team/stops/Bhoealt2", "https://tec.openplanner.team/stops/Bzluegl2"], ["https://tec.openplanner.team/stops/X938aca", "https://tec.openplanner.team/stops/X950acb"], ["https://tec.openplanner.team/stops/H4ne145b", "https://tec.openplanner.team/stops/H4wa149b"], ["https://tec.openplanner.team/stops/N584caa", "https://tec.openplanner.team/stops/N584cac"], ["https://tec.openplanner.team/stops/LBMecol2", "https://tec.openplanner.team/stops/X982blb"], ["https://tec.openplanner.team/stops/H4ef113c", "https://tec.openplanner.team/stops/H4ef138b"], ["https://tec.openplanner.team/stops/Lvegc--6", "https://tec.openplanner.team/stops/Lverogi2"], ["https://tec.openplanner.team/stops/Cfcchas1", "https://tec.openplanner.team/stops/Cvlstan1"], ["https://tec.openplanner.team/stops/X898aja", "https://tec.openplanner.team/stops/X898akb"], ["https://tec.openplanner.team/stops/LBItnt-*", "https://tec.openplanner.team/stops/Lmlmich1"], ["https://tec.openplanner.team/stops/LSPhapa1", "https://tec.openplanner.team/stops/LSPvigi1"], ["https://tec.openplanner.team/stops/LORgr8-2", "https://tec.openplanner.team/stops/LORthie1"], ["https://tec.openplanner.team/stops/Bchgqve2", "https://tec.openplanner.team/stops/Bchgqve4"], ["https://tec.openplanner.team/stops/Ljeblum1", "https://tec.openplanner.team/stops/Ljeheur2"], ["https://tec.openplanner.team/stops/N310aca", "https://tec.openplanner.team/stops/N310ada"], ["https://tec.openplanner.team/stops/H1ha183a", "https://tec.openplanner.team/stops/H1ha194b"], ["https://tec.openplanner.team/stops/LsF39--1", "https://tec.openplanner.team/stops/LwPdorf1"], ["https://tec.openplanner.team/stops/Lvealbe2", "https://tec.openplanner.team/stops/Lvepala7"], ["https://tec.openplanner.team/stops/Ladgath1", "https://tec.openplanner.team/stops/Ldipiss1"], ["https://tec.openplanner.team/stops/Bovecha1", "https://tec.openplanner.team/stops/Bwavpar1"], ["https://tec.openplanner.team/stops/N201afa", "https://tec.openplanner.team/stops/N201asa"], ["https://tec.openplanner.team/stops/H1em110a", "https://tec.openplanner.team/stops/H1vs144a"], ["https://tec.openplanner.team/stops/Cbweco2", "https://tec.openplanner.team/stops/Cbwegl1"], ["https://tec.openplanner.team/stops/N241aaa", "https://tec.openplanner.team/stops/N270acb"], ["https://tec.openplanner.team/stops/LWOcomm2", "https://tec.openplanner.team/stops/LWOmart2"], ["https://tec.openplanner.team/stops/X661acb", "https://tec.openplanner.team/stops/X661aza"], ["https://tec.openplanner.team/stops/LkAmess1", "https://tec.openplanner.team/stops/LmHdrei1"], ["https://tec.openplanner.team/stops/N545aba", "https://tec.openplanner.team/stops/N545acb"], ["https://tec.openplanner.team/stops/LAMrich1", "https://tec.openplanner.team/stops/LJEtige2"], ["https://tec.openplanner.team/stops/X801bra", "https://tec.openplanner.team/stops/X801bxa"], ["https://tec.openplanner.team/stops/Ljhjeha*", "https://tec.openplanner.team/stops/LSU50--1"], ["https://tec.openplanner.team/stops/Lbocarr2", "https://tec.openplanner.team/stops/Lbocomm1"], ["https://tec.openplanner.team/stops/X910afb", "https://tec.openplanner.team/stops/X910afc"], ["https://tec.openplanner.team/stops/Lpeathe*", "https://tec.openplanner.team/stops/Lpemata2"], ["https://tec.openplanner.team/stops/H2bh105a", "https://tec.openplanner.team/stops/H2bh114b"], ["https://tec.openplanner.team/stops/N501mfa", "https://tec.openplanner.team/stops/N501mfb"], ["https://tec.openplanner.team/stops/N525aha", "https://tec.openplanner.team/stops/N525aka"], ["https://tec.openplanner.team/stops/LFPgeme1", "https://tec.openplanner.team/stops/LFPzwaa2"], ["https://tec.openplanner.team/stops/LFR201-1", "https://tec.openplanner.team/stops/LSx309-1"], ["https://tec.openplanner.team/stops/Ccufos72", "https://tec.openplanner.team/stops/Ccupetp1"], ["https://tec.openplanner.team/stops/LHEcruc4", "https://tec.openplanner.team/stops/LHEoutr1"], ["https://tec.openplanner.team/stops/X607aeb", "https://tec.openplanner.team/stops/X621aaa"], ["https://tec.openplanner.team/stops/X723aga", "https://tec.openplanner.team/stops/X723ahb"], ["https://tec.openplanner.team/stops/Blsmcha4", "https://tec.openplanner.team/stops/Bneeace1"], ["https://tec.openplanner.team/stops/Bitrpar1", "https://tec.openplanner.team/stops/Bitrpar2"], ["https://tec.openplanner.team/stops/N501fbb", "https://tec.openplanner.team/stops/N501fbz"], ["https://tec.openplanner.team/stops/N532aca", "https://tec.openplanner.team/stops/N532aeb"], ["https://tec.openplanner.team/stops/Bixlfla2", "https://tec.openplanner.team/stops/Bsgimca2"], ["https://tec.openplanner.team/stops/NL76ahb", "https://tec.openplanner.team/stops/NL76ana"], ["https://tec.openplanner.team/stops/Cgocapu2", "https://tec.openplanner.team/stops/Ctmazeb1"], ["https://tec.openplanner.team/stops/N553aab", "https://tec.openplanner.team/stops/N553ala"], ["https://tec.openplanner.team/stops/LHMchbl1", "https://tec.openplanner.team/stops/LHMchbl2"], ["https://tec.openplanner.team/stops/N511aoa", "https://tec.openplanner.team/stops/N511aob"], ["https://tec.openplanner.team/stops/H2an102a", "https://tec.openplanner.team/stops/H2an110a"], ["https://tec.openplanner.team/stops/LMOcorn2", "https://tec.openplanner.team/stops/LMOf35-1"], ["https://tec.openplanner.team/stops/Lagfour1", "https://tec.openplanner.team/stops/Lagvern1"], ["https://tec.openplanner.team/stops/LTiespe4", "https://tec.openplanner.team/stops/LTiruel2"], ["https://tec.openplanner.team/stops/Cgzplac3", "https://tec.openplanner.team/stops/Cgzplac6"], ["https://tec.openplanner.team/stops/LHUamer1", "https://tec.openplanner.team/stops/LHUfoss*"], ["https://tec.openplanner.team/stops/LhSwind1", "https://tec.openplanner.team/stops/LhSwind2"], ["https://tec.openplanner.team/stops/H4ty291c", "https://tec.openplanner.team/stops/H4ty351b"], ["https://tec.openplanner.team/stops/Lmibove4", "https://tec.openplanner.team/stops/Lmigare2"], ["https://tec.openplanner.team/stops/Binclon2", "https://tec.openplanner.team/stops/Bopprju1"], ["https://tec.openplanner.team/stops/Lbogonh*", "https://tec.openplanner.team/stops/Lbogonh1"], ["https://tec.openplanner.team/stops/LESchat2", "https://tec.openplanner.team/stops/LEShony2"], ["https://tec.openplanner.team/stops/X763aia", "https://tec.openplanner.team/stops/X763aib"], ["https://tec.openplanner.team/stops/Cgpauln2", "https://tec.openplanner.team/stops/Cgpchen1"], ["https://tec.openplanner.team/stops/H1ms912a", "https://tec.openplanner.team/stops/H1ms915b"], ["https://tec.openplanner.team/stops/Bgoekaz2", "https://tec.openplanner.team/stops/Bgoevli2"], ["https://tec.openplanner.team/stops/H4av102a", "https://tec.openplanner.team/stops/H4mb143c"], ["https://tec.openplanner.team/stops/H5at106a", "https://tec.openplanner.team/stops/H5at112a"], ["https://tec.openplanner.team/stops/X922agb", "https://tec.openplanner.team/stops/X922akb"], ["https://tec.openplanner.team/stops/N551alb", "https://tec.openplanner.team/stops/N551aqb"], ["https://tec.openplanner.team/stops/LCTcret2", "https://tec.openplanner.team/stops/LCTmonu1"], ["https://tec.openplanner.team/stops/Ljeegli6", "https://tec.openplanner.team/stops/Ljelamb1"], ["https://tec.openplanner.team/stops/LENmc--1", "https://tec.openplanner.team/stops/LENpt--2"], ["https://tec.openplanner.team/stops/X985aaa", "https://tec.openplanner.team/stops/X985abb"], ["https://tec.openplanner.team/stops/H5pe147c", "https://tec.openplanner.team/stops/H5pe175a"], ["https://tec.openplanner.team/stops/X354afb", "https://tec.openplanner.team/stops/X354agb"], ["https://tec.openplanner.team/stops/LDOordi1", "https://tec.openplanner.team/stops/LGOmous2"], ["https://tec.openplanner.team/stops/LNAbois1", "https://tec.openplanner.team/stops/LNAbouh1"], ["https://tec.openplanner.team/stops/LSNmoul2", "https://tec.openplanner.team/stops/LSNnoul2"], ["https://tec.openplanner.team/stops/LeLcrem1", "https://tec.openplanner.team/stops/LeLcrem2"], ["https://tec.openplanner.team/stops/LMsbusc1", "https://tec.openplanner.team/stops/LMsbusc2"], ["https://tec.openplanner.team/stops/Canjon1", "https://tec.openplanner.team/stops/Canjon2"], ["https://tec.openplanner.team/stops/H2ch103a", "https://tec.openplanner.team/stops/H2ch103b"], ["https://tec.openplanner.team/stops/N565alb", "https://tec.openplanner.team/stops/N569afb"], ["https://tec.openplanner.team/stops/Canegbr1", "https://tec.openplanner.team/stops/Canplch2"], ["https://tec.openplanner.team/stops/LAigrim1", "https://tec.openplanner.team/stops/LAipala1"], ["https://tec.openplanner.team/stops/Bsgihmo2", "https://tec.openplanner.team/stops/Bsgipha2"], ["https://tec.openplanner.team/stops/Lhufont1", "https://tec.openplanner.team/stops/Lhuwaid1"], ["https://tec.openplanner.team/stops/H5pe128b", "https://tec.openplanner.team/stops/H5pe148a"], ["https://tec.openplanner.team/stops/N155aia", "https://tec.openplanner.team/stops/NC14ava"], ["https://tec.openplanner.team/stops/Lghalli1", "https://tec.openplanner.team/stops/Lghbonn1"], ["https://tec.openplanner.team/stops/N162aca", "https://tec.openplanner.team/stops/N162acb"], ["https://tec.openplanner.team/stops/X669abd", "https://tec.openplanner.team/stops/X669aca"], ["https://tec.openplanner.team/stops/Candett1", "https://tec.openplanner.team/stops/Candett2"], ["https://tec.openplanner.team/stops/LHarenn2", "https://tec.openplanner.team/stops/LHarenn4"], ["https://tec.openplanner.team/stops/LSIcour1", "https://tec.openplanner.team/stops/LSItert2"], ["https://tec.openplanner.team/stops/N106apa", "https://tec.openplanner.team/stops/N137afb"], ["https://tec.openplanner.team/stops/Lrcchpl1", "https://tec.openplanner.team/stops/Lrcchpl2"], ["https://tec.openplanner.team/stops/X659awa", "https://tec.openplanner.team/stops/X672aha"], ["https://tec.openplanner.team/stops/LrApark1", "https://tec.openplanner.team/stops/LrAwald2"], ["https://tec.openplanner.team/stops/Cglbras1", "https://tec.openplanner.team/stops/Cgnquer2"], ["https://tec.openplanner.team/stops/Lagjado1", "https://tec.openplanner.team/stops/Lagjado5"], ["https://tec.openplanner.team/stops/LSNgerm2", "https://tec.openplanner.team/stops/LWevalf2"], ["https://tec.openplanner.team/stops/Bbgelre2", "https://tec.openplanner.team/stops/Bwavbpi2"], ["https://tec.openplanner.team/stops/X946aia", "https://tec.openplanner.team/stops/X946aib"], ["https://tec.openplanner.team/stops/N506aqb", "https://tec.openplanner.team/stops/N506bpb"], ["https://tec.openplanner.team/stops/Brsreco1", "https://tec.openplanner.team/stops/Brsrmon3"], ["https://tec.openplanner.team/stops/Ccogode2", "https://tec.openplanner.team/stops/Ccotrie2"], ["https://tec.openplanner.team/stops/N543acb", "https://tec.openplanner.team/stops/N543bgc"], ["https://tec.openplanner.team/stops/Cflmarq2", "https://tec.openplanner.team/stops/Cflvxca2"], ["https://tec.openplanner.team/stops/LVEbors1", "https://tec.openplanner.team/stops/LVEbors2"], ["https://tec.openplanner.team/stops/N232axa", "https://tec.openplanner.team/stops/N232bjb"], ["https://tec.openplanner.team/stops/Cmlcaya2", "https://tec.openplanner.team/stops/Cmlhaie2"], ["https://tec.openplanner.team/stops/H1ne143b", "https://tec.openplanner.team/stops/H1ne149b"], ["https://tec.openplanner.team/stops/X801bfa", "https://tec.openplanner.team/stops/X801bka"], ["https://tec.openplanner.team/stops/H4fr139a", "https://tec.openplanner.team/stops/H4fr142b"], ["https://tec.openplanner.team/stops/Cfowall1", "https://tec.openplanner.team/stops/CMfont1"], ["https://tec.openplanner.team/stops/Bperalv1", "https://tec.openplanner.team/stops/Bpernov1"], ["https://tec.openplanner.team/stops/Bblabos1", "https://tec.openplanner.team/stops/Bblaece2"], ["https://tec.openplanner.team/stops/H1qy133b", "https://tec.openplanner.team/stops/H1qy137b"], ["https://tec.openplanner.team/stops/Cnacent2", "https://tec.openplanner.team/stops/Cnaha562"], ["https://tec.openplanner.team/stops/Cchdelf2", "https://tec.openplanner.team/stops/Cchtour2"], ["https://tec.openplanner.team/stops/H2lc145b", "https://tec.openplanner.team/stops/H2lc171b"], ["https://tec.openplanner.team/stops/Lhuferm1", "https://tec.openplanner.team/stops/Lhujonc2"], ["https://tec.openplanner.team/stops/H4rm107a", "https://tec.openplanner.team/stops/H4rm107b"], ["https://tec.openplanner.team/stops/N136aeb", "https://tec.openplanner.team/stops/N143aab"], ["https://tec.openplanner.team/stops/Llgaba-2", "https://tec.openplanner.team/stops/Llgatel2"], ["https://tec.openplanner.team/stops/N368afb", "https://tec.openplanner.team/stops/N387ahb"], ["https://tec.openplanner.team/stops/LLecolo1", "https://tec.openplanner.team/stops/X547aka"], ["https://tec.openplanner.team/stops/N558amb", "https://tec.openplanner.team/stops/N559aea"], ["https://tec.openplanner.team/stops/LOUbarr1", "https://tec.openplanner.team/stops/LOUbleu2"], ["https://tec.openplanner.team/stops/N577aca", "https://tec.openplanner.team/stops/N577aha"], ["https://tec.openplanner.team/stops/Ljubrec2", "https://tec.openplanner.team/stops/Ljuplpr1"], ["https://tec.openplanner.team/stops/X901avb", "https://tec.openplanner.team/stops/X901aza"], ["https://tec.openplanner.team/stops/LHhmohe1", "https://tec.openplanner.team/stops/NL30aka"], ["https://tec.openplanner.team/stops/N563anb", "https://tec.openplanner.team/stops/N563aoa"], ["https://tec.openplanner.team/stops/X652afd", "https://tec.openplanner.team/stops/X652aja"], ["https://tec.openplanner.team/stops/X766aha", "https://tec.openplanner.team/stops/X766ahb"], ["https://tec.openplanner.team/stops/LLscent1", "https://tec.openplanner.team/stops/LLscent2"], ["https://tec.openplanner.team/stops/H1mj123b", "https://tec.openplanner.team/stops/H1mj124a"], ["https://tec.openplanner.team/stops/Bsmgbsa1", "https://tec.openplanner.team/stops/Bsmgres1"], ["https://tec.openplanner.team/stops/Lemacac1", "https://tec.openplanner.team/stops/Lemacac2"], ["https://tec.openplanner.team/stops/LeLherz2", "https://tec.openplanner.team/stops/LkAbahn*"], ["https://tec.openplanner.team/stops/X808aib", "https://tec.openplanner.team/stops/X850ama"], ["https://tec.openplanner.team/stops/LhP25--2", "https://tec.openplanner.team/stops/LhPkirc2"], ["https://tec.openplanner.team/stops/N514ana", "https://tec.openplanner.team/stops/N514aoa"], ["https://tec.openplanner.team/stops/Bbchmai2", "https://tec.openplanner.team/stops/Bitrfsc2"], ["https://tec.openplanner.team/stops/Bmalsme1", "https://tec.openplanner.team/stops/Bmalsme2"], ["https://tec.openplanner.team/stops/LeUgulc1", "https://tec.openplanner.team/stops/LeUgulc2"], ["https://tec.openplanner.team/stops/LReeg--1", "https://tec.openplanner.team/stops/LRemorr3"], ["https://tec.openplanner.team/stops/N517ada", "https://tec.openplanner.team/stops/N517add"], ["https://tec.openplanner.team/stops/X801cca", "https://tec.openplanner.team/stops/X801cda"], ["https://tec.openplanner.team/stops/X812ajb", "https://tec.openplanner.team/stops/X812aoa"], ["https://tec.openplanner.team/stops/N521ara", "https://tec.openplanner.team/stops/N521asb"], ["https://tec.openplanner.team/stops/X657aga", "https://tec.openplanner.team/stops/X657agb"], ["https://tec.openplanner.team/stops/Bgdhpco2", "https://tec.openplanner.team/stops/Bpthfus1"], ["https://tec.openplanner.team/stops/Lhemilm2", "https://tec.openplanner.team/stops/Lhrspi-1"], ["https://tec.openplanner.team/stops/X713aab", "https://tec.openplanner.team/stops/X796aha"], ["https://tec.openplanner.team/stops/X839aba", "https://tec.openplanner.team/stops/X839abb"], ["https://tec.openplanner.team/stops/LSZgare1", "https://tec.openplanner.team/stops/LSZgare2"], ["https://tec.openplanner.team/stops/Ccymabo1", "https://tec.openplanner.team/stops/Csrcarr2"], ["https://tec.openplanner.team/stops/Cmyplac1", "https://tec.openplanner.team/stops/Cmyplac2"], ["https://tec.openplanner.team/stops/N543ahb", "https://tec.openplanner.team/stops/N543apb"], ["https://tec.openplanner.team/stops/Lmnhorl3", "https://tec.openplanner.team/stops/Lvescie1"], ["https://tec.openplanner.team/stops/H4ka183b", "https://tec.openplanner.team/stops/H4ka392a"], ["https://tec.openplanner.team/stops/Bjodcdt1", "https://tec.openplanner.team/stops/NR10aba"], ["https://tec.openplanner.team/stops/LGEcons2", "https://tec.openplanner.team/stops/LLYplac1"], ["https://tec.openplanner.team/stops/Cmlcent1", "https://tec.openplanner.team/stops/Cmlecha2"], ["https://tec.openplanner.team/stops/N201asa", "https://tec.openplanner.team/stops/N201asb"], ["https://tec.openplanner.team/stops/LnEfrie2", "https://tec.openplanner.team/stops/LsVgils1"], ["https://tec.openplanner.team/stops/X804amb", "https://tec.openplanner.team/stops/X804aqb"], ["https://tec.openplanner.team/stops/N117aca", "https://tec.openplanner.team/stops/N117bda"], ["https://tec.openplanner.team/stops/LXhjupr2", "https://tec.openplanner.team/stops/LXhvina2"], ["https://tec.openplanner.team/stops/N549afa", "https://tec.openplanner.team/stops/N549ahb"], ["https://tec.openplanner.team/stops/X899ada", "https://tec.openplanner.team/stops/X899afb"], ["https://tec.openplanner.team/stops/H4ty286a", "https://tec.openplanner.team/stops/H4ty286b"], ["https://tec.openplanner.team/stops/X892adb", "https://tec.openplanner.team/stops/X892afb"], ["https://tec.openplanner.team/stops/H1sy138a", "https://tec.openplanner.team/stops/H1sy138b"], ["https://tec.openplanner.team/stops/LMfbuck1", "https://tec.openplanner.team/stops/LMfbuck2"], ["https://tec.openplanner.team/stops/Lrc594-1", "https://tec.openplanner.team/stops/Lrcprin6"], ["https://tec.openplanner.team/stops/Cci22ao1", "https://tec.openplanner.team/stops/Cciethi2"], ["https://tec.openplanner.team/stops/LLg9---2", "https://tec.openplanner.team/stops/LLgcent2"], ["https://tec.openplanner.team/stops/X750ara", "https://tec.openplanner.team/stops/X750ata"], ["https://tec.openplanner.team/stops/Lsweg--2", "https://tec.openplanner.team/stops/Lwachal1"], ["https://tec.openplanner.team/stops/NR21agb", "https://tec.openplanner.team/stops/NR21aha"], ["https://tec.openplanner.team/stops/N501aaa", "https://tec.openplanner.team/stops/N501esb"], ["https://tec.openplanner.team/stops/X952acb", "https://tec.openplanner.team/stops/X952aeb"], ["https://tec.openplanner.team/stops/LmRmuhl1", "https://tec.openplanner.team/stops/LsHkreu3"], ["https://tec.openplanner.team/stops/X780aib", "https://tec.openplanner.team/stops/X780atb"], ["https://tec.openplanner.team/stops/Clrcomb2", "https://tec.openplanner.team/stops/Clrplac2"], ["https://tec.openplanner.team/stops/N512adb", "https://tec.openplanner.team/stops/N512ara"], ["https://tec.openplanner.team/stops/N204acb", "https://tec.openplanner.team/stops/N204afb"], ["https://tec.openplanner.team/stops/LAvambr1", "https://tec.openplanner.team/stops/LMXaven2"], ["https://tec.openplanner.team/stops/X616aab", "https://tec.openplanner.team/stops/X617aeb"], ["https://tec.openplanner.team/stops/Crojume1", "https://tec.openplanner.team/stops/Cropcan1"], ["https://tec.openplanner.team/stops/Cmtduch2", "https://tec.openplanner.team/stops/Cmtmoul1"], ["https://tec.openplanner.team/stops/Lfh-sci2", "https://tec.openplanner.team/stops/Lseivoz2"], ["https://tec.openplanner.team/stops/H4av106d", "https://tec.openplanner.team/stops/H4ff117b"], ["https://tec.openplanner.team/stops/Cmgbras1", "https://tec.openplanner.team/stops/Cmgbras2"], ["https://tec.openplanner.team/stops/N501jjb", "https://tec.openplanner.team/stops/N521afa"], ["https://tec.openplanner.team/stops/X818arb", "https://tec.openplanner.team/stops/X818asb"], ["https://tec.openplanner.team/stops/H1eq117a", "https://tec.openplanner.team/stops/H1fy143a"], ["https://tec.openplanner.team/stops/Bbstasa1", "https://tec.openplanner.team/stops/Csdetan1"], ["https://tec.openplanner.team/stops/H1ho123b", "https://tec.openplanner.team/stops/H1ho133b"], ["https://tec.openplanner.team/stops/H4eg106b", "https://tec.openplanner.team/stops/H4ne136b"], ["https://tec.openplanner.team/stops/N538aqa", "https://tec.openplanner.team/stops/N538ara"], ["https://tec.openplanner.team/stops/X605aeb", "https://tec.openplanner.team/stops/X605alb"], ["https://tec.openplanner.team/stops/Barqhro2", "https://tec.openplanner.team/stops/Barqpla2"], ["https://tec.openplanner.team/stops/LAVcime2", "https://tec.openplanner.team/stops/LAVeg--1"], ["https://tec.openplanner.team/stops/Ladboti2", "https://tec.openplanner.team/stops/Ladchat2"], ["https://tec.openplanner.team/stops/Lflhott1", "https://tec.openplanner.team/stops/Lflmaxi3"], ["https://tec.openplanner.team/stops/X982aba", "https://tec.openplanner.team/stops/X982acb"], ["https://tec.openplanner.team/stops/Lremonu2", "https://tec.openplanner.team/stops/Lrevaul2"], ["https://tec.openplanner.team/stops/X747aab", "https://tec.openplanner.team/stops/X754akb"], ["https://tec.openplanner.team/stops/Lcehipp2", "https://tec.openplanner.team/stops/Lcepass2"], ["https://tec.openplanner.team/stops/N501lnb", "https://tec.openplanner.team/stops/N501lxb"], ["https://tec.openplanner.team/stops/LhBdorf2", "https://tec.openplanner.team/stops/LlSzoll2"], ["https://tec.openplanner.team/stops/X823aaa", "https://tec.openplanner.team/stops/X823acb"], ["https://tec.openplanner.team/stops/N343abb", "https://tec.openplanner.team/stops/X343aha"], ["https://tec.openplanner.team/stops/LHUlebe0", "https://tec.openplanner.team/stops/LHUpala1"], ["https://tec.openplanner.team/stops/H2ll180b", "https://tec.openplanner.team/stops/H2ll186b"], ["https://tec.openplanner.team/stops/H2ca103b", "https://tec.openplanner.team/stops/H2ca116b"], ["https://tec.openplanner.team/stops/H4bo113a", "https://tec.openplanner.team/stops/H4bo113b"], ["https://tec.openplanner.team/stops/Cwgmart2", "https://tec.openplanner.team/stops/Cwgmell3"], ["https://tec.openplanner.team/stops/LFIinse2", "https://tec.openplanner.team/stops/LXoeg--3"], ["https://tec.openplanner.team/stops/H4am100b", "https://tec.openplanner.team/stops/H4an110b"], ["https://tec.openplanner.team/stops/H4ne131b", "https://tec.openplanner.team/stops/H4ne134b"], ["https://tec.openplanner.team/stops/Bsomwav1", "https://tec.openplanner.team/stops/N584bna"], ["https://tec.openplanner.team/stops/Bnivjli1", "https://tec.openplanner.team/stops/Bnivzon1"], ["https://tec.openplanner.team/stops/X729aaa", "https://tec.openplanner.team/stops/X746ama"], ["https://tec.openplanner.team/stops/LCPconf2", "https://tec.openplanner.team/stops/LCPgare2"], ["https://tec.openplanner.team/stops/H5wo125b", "https://tec.openplanner.team/stops/H5wo136b"], ["https://tec.openplanner.team/stops/N309aab", "https://tec.openplanner.team/stops/N309aba"], ["https://tec.openplanner.team/stops/LBachpl2", "https://tec.openplanner.team/stops/LNEcite2"], ["https://tec.openplanner.team/stops/LsVeite2", "https://tec.openplanner.team/stops/LsVfeye2"], ["https://tec.openplanner.team/stops/H5qu141a", "https://tec.openplanner.team/stops/H5qu154a"], ["https://tec.openplanner.team/stops/N141ama", "https://tec.openplanner.team/stops/N141amc"], ["https://tec.openplanner.team/stops/X850aoa", "https://tec.openplanner.team/stops/X850aob"], ["https://tec.openplanner.team/stops/H1ht132b", "https://tec.openplanner.team/stops/H1si163b"], ["https://tec.openplanner.team/stops/Llgsnap1", "https://tec.openplanner.team/stops/Llgwiar1"], ["https://tec.openplanner.team/stops/H4be147a", "https://tec.openplanner.team/stops/H5bs103b"], ["https://tec.openplanner.team/stops/NC14ava", "https://tec.openplanner.team/stops/NC14avb"], ["https://tec.openplanner.team/stops/Blkbavo1", "https://tec.openplanner.team/stops/Blkbavo2"], ["https://tec.openplanner.team/stops/X890acb", "https://tec.openplanner.team/stops/X890aea"], ["https://tec.openplanner.team/stops/N214afa", "https://tec.openplanner.team/stops/N214agb"], ["https://tec.openplanner.team/stops/LFCvoer1", "https://tec.openplanner.team/stops/LWRgare1"], ["https://tec.openplanner.team/stops/N147aaa", "https://tec.openplanner.team/stops/N147aab"], ["https://tec.openplanner.team/stops/Bolggar1", "https://tec.openplanner.team/stops/Bolgrsa2"], ["https://tec.openplanner.team/stops/Lflheid1", "https://tec.openplanner.team/stops/Lflprev2"], ["https://tec.openplanner.team/stops/N139aba", "https://tec.openplanner.team/stops/N139adb"], ["https://tec.openplanner.team/stops/Bgntcha1", "https://tec.openplanner.team/stops/Bgntpla1"], ["https://tec.openplanner.team/stops/Lemacac1", "https://tec.openplanner.team/stops/Lemdieu2"], ["https://tec.openplanner.team/stops/LXhjupr1", "https://tec.openplanner.team/stops/LXhjupr2"], ["https://tec.openplanner.team/stops/X808afb", "https://tec.openplanner.team/stops/X808amb"], ["https://tec.openplanner.team/stops/H4wr173c", "https://tec.openplanner.team/stops/H4wr177a"], ["https://tec.openplanner.team/stops/Cjudewe2", "https://tec.openplanner.team/stops/Cjuplho2"], ["https://tec.openplanner.team/stops/X661aqb", "https://tec.openplanner.team/stops/X840agb"], ["https://tec.openplanner.team/stops/LGemari1", "https://tec.openplanner.team/stops/LMschap1"], ["https://tec.openplanner.team/stops/Lsebrun1", "https://tec.openplanner.team/stops/Lsehcoc1"], ["https://tec.openplanner.team/stops/H4bf105a", "https://tec.openplanner.team/stops/H4bf105b"], ["https://tec.openplanner.team/stops/X758acb", "https://tec.openplanner.team/stops/X758afa"], ["https://tec.openplanner.team/stops/LJUmc--1", "https://tec.openplanner.team/stops/LVSslin3"], ["https://tec.openplanner.team/stops/Cgoathe2", "https://tec.openplanner.team/stops/Cgobruy1"], ["https://tec.openplanner.team/stops/Llgcong2", "https://tec.openplanner.team/stops/Llgdoth2"], ["https://tec.openplanner.team/stops/Bgembsg1", "https://tec.openplanner.team/stops/N522aja"], ["https://tec.openplanner.team/stops/H1qu107a", "https://tec.openplanner.team/stops/H1qu119b"], ["https://tec.openplanner.team/stops/LrEdic71", "https://tec.openplanner.team/stops/LrEkirc1"], ["https://tec.openplanner.team/stops/Cmmpjou2", "https://tec.openplanner.team/stops/Cmymoha2"], ["https://tec.openplanner.team/stops/N501kud", "https://tec.openplanner.team/stops/N501mfa"], ["https://tec.openplanner.team/stops/H1hg181a", "https://tec.openplanner.team/stops/H1hg181b"], ["https://tec.openplanner.team/stops/X394aeb", "https://tec.openplanner.team/stops/X396aea"], ["https://tec.openplanner.team/stops/N385aac", "https://tec.openplanner.team/stops/N385abb"], ["https://tec.openplanner.team/stops/Lheneuv4", "https://tec.openplanner.team/stops/Lhepaqu1"], ["https://tec.openplanner.team/stops/Llgcong1", "https://tec.openplanner.team/stops/Llgcong3"], ["https://tec.openplanner.team/stops/Bwagcus2", "https://tec.openplanner.team/stops/Bwagsta1"], ["https://tec.openplanner.team/stops/H4gr109b", "https://tec.openplanner.team/stops/H4ld124b"], ["https://tec.openplanner.team/stops/LLbbons2", "https://tec.openplanner.team/stops/LRcjard2"], ["https://tec.openplanner.team/stops/H4ae102b", "https://tec.openplanner.team/stops/H4ef111a"], ["https://tec.openplanner.team/stops/LLxconj2", "https://tec.openplanner.team/stops/LLxmonu2"], ["https://tec.openplanner.team/stops/H1be101a", "https://tec.openplanner.team/stops/H1be103a"], ["https://tec.openplanner.team/stops/Cjuhame1", "https://tec.openplanner.team/stops/Cragill1"], ["https://tec.openplanner.team/stops/Lsecime1", "https://tec.openplanner.team/stops/Lsecime2"], ["https://tec.openplanner.team/stops/H1hw120b", "https://tec.openplanner.team/stops/H1hw123a"], ["https://tec.openplanner.team/stops/N353aeb", "https://tec.openplanner.team/stops/N383aab"], ["https://tec.openplanner.team/stops/Cgrcent1", "https://tec.openplanner.team/stops/Cgrgend2"], ["https://tec.openplanner.team/stops/X609akb", "https://tec.openplanner.team/stops/X622aba"], ["https://tec.openplanner.team/stops/Cmmheur1", "https://tec.openplanner.team/stops/Cmygbbo1"], ["https://tec.openplanner.team/stops/LkTdorf1", "https://tec.openplanner.team/stops/LkTkabi1"], ["https://tec.openplanner.team/stops/Cchparc5", "https://tec.openplanner.team/stops/Cchprun2"], ["https://tec.openplanner.team/stops/Bboncfv1", "https://tec.openplanner.team/stops/Bboncha2"], ["https://tec.openplanner.team/stops/H4wp152a", "https://tec.openplanner.team/stops/H4wp153b"], ["https://tec.openplanner.team/stops/Lhragri2", "https://tec.openplanner.team/stops/Lhrmura2"], ["https://tec.openplanner.team/stops/N513aua", "https://tec.openplanner.team/stops/N520ahb"], ["https://tec.openplanner.team/stops/LNCgene2", "https://tec.openplanner.team/stops/LNClila1"], ["https://tec.openplanner.team/stops/Cmldupu2", "https://tec.openplanner.team/stops/Cmlrang1"], ["https://tec.openplanner.team/stops/Lfhsoux1", "https://tec.openplanner.team/stops/Lfhvoye1"], ["https://tec.openplanner.team/stops/LHGbeur4", "https://tec.openplanner.team/stops/LOTcloe2"], ["https://tec.openplanner.team/stops/X942afa", "https://tec.openplanner.team/stops/X942afb"], ["https://tec.openplanner.team/stops/Btileco1", "https://tec.openplanner.team/stops/Btilhti2"], ["https://tec.openplanner.team/stops/N308acb", "https://tec.openplanner.team/stops/N308alb"], ["https://tec.openplanner.team/stops/LBAcere1", "https://tec.openplanner.team/stops/LHOgymn2"], ["https://tec.openplanner.team/stops/X985ada", "https://tec.openplanner.team/stops/X985adb"], ["https://tec.openplanner.team/stops/N506afb", "https://tec.openplanner.team/stops/N506aga"], ["https://tec.openplanner.team/stops/X730aeb", "https://tec.openplanner.team/stops/X730aga"], ["https://tec.openplanner.team/stops/H1au111b", "https://tec.openplanner.team/stops/H1au113a"], ["https://tec.openplanner.team/stops/Bgzdcen1", "https://tec.openplanner.team/stops/Bgzdcwa2"], ["https://tec.openplanner.team/stops/X637alb", "https://tec.openplanner.team/stops/X637amb"], ["https://tec.openplanner.team/stops/Lchsart2", "https://tec.openplanner.team/stops/Lchstat*"], ["https://tec.openplanner.team/stops/Lsnbrac3", "https://tec.openplanner.team/stops/Lsnbrac4"], ["https://tec.openplanner.team/stops/Bbsicul2", "https://tec.openplanner.team/stops/Bbsigaz1"], ["https://tec.openplanner.team/stops/X744aea", "https://tec.openplanner.team/stops/X745abb"], ["https://tec.openplanner.team/stops/N507adb", "https://tec.openplanner.team/stops/NL30aka"], ["https://tec.openplanner.team/stops/Btsllbv1", "https://tec.openplanner.team/stops/Btsllnd2"], ["https://tec.openplanner.team/stops/X872abb", "https://tec.openplanner.team/stops/X872adb"], ["https://tec.openplanner.team/stops/Cctjoue4", "https://tec.openplanner.team/stops/Cctjust2"], ["https://tec.openplanner.team/stops/NR10aaa", "https://tec.openplanner.team/stops/NR21aca"], ["https://tec.openplanner.team/stops/Bpergar1", "https://tec.openplanner.team/stops/Bpergar2"], ["https://tec.openplanner.team/stops/LDoeg--2", "https://tec.openplanner.team/stops/LHFwaut2"], ["https://tec.openplanner.team/stops/Csebasc1", "https://tec.openplanner.team/stops/Csebasc2"], ["https://tec.openplanner.team/stops/H4ty325a", "https://tec.openplanner.team/stops/H4ty340b"], ["https://tec.openplanner.team/stops/X731aea", "https://tec.openplanner.team/stops/X731afb"], ["https://tec.openplanner.team/stops/Ljubonf1", "https://tec.openplanner.team/stops/Ljufler2"], ["https://tec.openplanner.team/stops/X901aba", "https://tec.openplanner.team/stops/X901abb"], ["https://tec.openplanner.team/stops/Lmncasi2", "https://tec.openplanner.team/stops/Lmnsech1"], ["https://tec.openplanner.team/stops/N351atb", "https://tec.openplanner.team/stops/N351atc"], ["https://tec.openplanner.team/stops/LhGbahn4", "https://tec.openplanner.team/stops/LhSkape2"], ["https://tec.openplanner.team/stops/X631aaa", "https://tec.openplanner.team/stops/X645abb"], ["https://tec.openplanner.team/stops/H4ty264b", "https://tec.openplanner.team/stops/H4ty352a"], ["https://tec.openplanner.team/stops/H1bs110c", "https://tec.openplanner.team/stops/H1qp140a"], ["https://tec.openplanner.team/stops/LTIp%C3%A9pi1", "https://tec.openplanner.team/stops/LTIpres1"], ["https://tec.openplanner.team/stops/LbTmuhl2", "https://tec.openplanner.team/stops/LnIfrie2"], ["https://tec.openplanner.team/stops/H1qu129a", "https://tec.openplanner.team/stops/H1qu129b"], ["https://tec.openplanner.team/stops/Bjodcoi1", "https://tec.openplanner.team/stops/NR10aaa"], ["https://tec.openplanner.team/stops/X614aia", "https://tec.openplanner.team/stops/X623aia"], ["https://tec.openplanner.team/stops/X741aid", "https://tec.openplanner.team/stops/X741aja"], ["https://tec.openplanner.team/stops/X727aea", "https://tec.openplanner.team/stops/X748aca"], ["https://tec.openplanner.team/stops/X601aya", "https://tec.openplanner.team/stops/X601bra"], ["https://tec.openplanner.team/stops/LbUbisc1", "https://tec.openplanner.team/stops/LbUmolk2"], ["https://tec.openplanner.team/stops/LMeeg--1", "https://tec.openplanner.team/stops/LMemaza1"], ["https://tec.openplanner.team/stops/X636bfb", "https://tec.openplanner.team/stops/X636bgb"], ["https://tec.openplanner.team/stops/LHtdros1", "https://tec.openplanner.team/stops/LHtdros2"], ["https://tec.openplanner.team/stops/N141adb", "https://tec.openplanner.team/stops/N141apb"], ["https://tec.openplanner.team/stops/H1si151b", "https://tec.openplanner.team/stops/H1si163b"], ["https://tec.openplanner.team/stops/X617aha", "https://tec.openplanner.team/stops/X617ahb"], ["https://tec.openplanner.team/stops/Cbmpopr1", "https://tec.openplanner.team/stops/Cbmpopr2"], ["https://tec.openplanner.team/stops/Crajasm1", "https://tec.openplanner.team/stops/Crajasm2"], ["https://tec.openplanner.team/stops/Ccicloc2", "https://tec.openplanner.team/stops/Clvmesa2"], ["https://tec.openplanner.team/stops/X793aba", "https://tec.openplanner.team/stops/X793abb"], ["https://tec.openplanner.team/stops/Lmneg--1", "https://tec.openplanner.team/stops/Lmneg--2"], ["https://tec.openplanner.team/stops/N244ahb", "https://tec.openplanner.team/stops/N244awa"], ["https://tec.openplanner.team/stops/Cmcbriq3", "https://tec.openplanner.team/stops/Cmggthi2"], ["https://tec.openplanner.team/stops/LrAknop1", "https://tec.openplanner.team/stops/LrAneus1"], ["https://tec.openplanner.team/stops/H1ms266a", "https://tec.openplanner.team/stops/H1ms288b"], ["https://tec.openplanner.team/stops/Clodrio2", "https://tec.openplanner.team/stops/Clodupr2"], ["https://tec.openplanner.team/stops/X361aca", "https://tec.openplanner.team/stops/X362aba"], ["https://tec.openplanner.team/stops/Bhlvlou2", "https://tec.openplanner.team/stops/Blpgbat2"], ["https://tec.openplanner.team/stops/X616aea", "https://tec.openplanner.team/stops/X616ahb"], ["https://tec.openplanner.team/stops/H1fl141a", "https://tec.openplanner.team/stops/H1je219a"], ["https://tec.openplanner.team/stops/Blascvi2", "https://tec.openplanner.team/stops/Bohnpla2"], ["https://tec.openplanner.team/stops/X896agb", "https://tec.openplanner.team/stops/X898aga"], ["https://tec.openplanner.team/stops/Cprgran2", "https://tec.openplanner.team/stops/Cprrvil2"], ["https://tec.openplanner.team/stops/N229aea", "https://tec.openplanner.team/stops/N229aec"], ["https://tec.openplanner.team/stops/Cselait2", "https://tec.openplanner.team/stops/Csequew2"], ["https://tec.openplanner.team/stops/LFarhuy2", "https://tec.openplanner.team/stops/LWAaxhe1"], ["https://tec.openplanner.team/stops/Lghsimo1", "https://tec.openplanner.team/stops/Lghsimo4"], ["https://tec.openplanner.team/stops/X941aga", "https://tec.openplanner.team/stops/X949ala"], ["https://tec.openplanner.team/stops/LoEauto1", "https://tec.openplanner.team/stops/LoEauto2"], ["https://tec.openplanner.team/stops/N260aca", "https://tec.openplanner.team/stops/N260adb"], ["https://tec.openplanner.team/stops/Bchacen2", "https://tec.openplanner.team/stops/Bchapir2"], ["https://tec.openplanner.team/stops/H4pi131a", "https://tec.openplanner.team/stops/H4wp152b"], ["https://tec.openplanner.team/stops/Bwagpco1", "https://tec.openplanner.team/stops/Cwgmell3"], ["https://tec.openplanner.team/stops/Llgbarb2", "https://tec.openplanner.team/stops/Llgbavi1"], ["https://tec.openplanner.team/stops/NL76agb", "https://tec.openplanner.team/stops/NL77abb"], ["https://tec.openplanner.team/stops/N517aeb", "https://tec.openplanner.team/stops/N517agb"], ["https://tec.openplanner.team/stops/H2bh108a", "https://tec.openplanner.team/stops/H2fa112b"], ["https://tec.openplanner.team/stops/LAYcorn2", "https://tec.openplanner.team/stops/LFLcarr2"], ["https://tec.openplanner.team/stops/H1ne138b", "https://tec.openplanner.team/stops/H1ne139a"], ["https://tec.openplanner.team/stops/Bbchgod2", "https://tec.openplanner.team/stops/Bbchm382"], ["https://tec.openplanner.team/stops/LLSba6-2", "https://tec.openplanner.team/stops/LLSba9-2"], ["https://tec.openplanner.team/stops/N556aeb", "https://tec.openplanner.team/stops/N556afb"], ["https://tec.openplanner.team/stops/H2lc171a", "https://tec.openplanner.team/stops/H2lc171b"], ["https://tec.openplanner.team/stops/LHolone2", "https://tec.openplanner.team/stops/LHZec--2"], ["https://tec.openplanner.team/stops/Cchhopi3", "https://tec.openplanner.team/stops/CMjans1"], ["https://tec.openplanner.team/stops/LBevill2", "https://tec.openplanner.team/stops/LHNtonn1"], ["https://tec.openplanner.team/stops/X618aca", "https://tec.openplanner.team/stops/X619aca"], ["https://tec.openplanner.team/stops/X725aca", "https://tec.openplanner.team/stops/X725agb"], ["https://tec.openplanner.team/stops/Bnivfra2", "https://tec.openplanner.team/stops/Bnivrsh2"], ["https://tec.openplanner.team/stops/Bsdabja1", "https://tec.openplanner.team/stops/Bsdacab1"], ["https://tec.openplanner.team/stops/Lagpn6-1", "https://tec.openplanner.team/stops/Lstbota3"], ["https://tec.openplanner.team/stops/N538ahb", "https://tec.openplanner.team/stops/N538ajd"], ["https://tec.openplanner.team/stops/Ccopeti1", "https://tec.openplanner.team/stops/Ccopeti2"], ["https://tec.openplanner.team/stops/N117bcb", "https://tec.openplanner.team/stops/N117bcd"], ["https://tec.openplanner.team/stops/LhOholz2", "https://tec.openplanner.team/stops/LhOukat1"], ["https://tec.openplanner.team/stops/Bbuzeta2", "https://tec.openplanner.team/stops/Cobnive1"], ["https://tec.openplanner.team/stops/H1mb166a", "https://tec.openplanner.team/stops/H1mb168a"], ["https://tec.openplanner.team/stops/H4ft132b", "https://tec.openplanner.team/stops/H4ft136b"], ["https://tec.openplanner.team/stops/Bgermco2", "https://tec.openplanner.team/stops/NB33afa"], ["https://tec.openplanner.team/stops/LOVeg--1", "https://tec.openplanner.team/stops/LSochal1"], ["https://tec.openplanner.team/stops/Csasncb2", "https://tec.openplanner.team/stops/Csdbosq1"], ["https://tec.openplanner.team/stops/X995ada", "https://tec.openplanner.team/stops/X995adc"], ["https://tec.openplanner.team/stops/H1cv101a", "https://tec.openplanner.team/stops/H1et102a"], ["https://tec.openplanner.team/stops/X824aec", "https://tec.openplanner.team/stops/X824afa"], ["https://tec.openplanner.team/stops/N244aia", "https://tec.openplanner.team/stops/N244awa"], ["https://tec.openplanner.team/stops/Ccogrbu1", "https://tec.openplanner.team/stops/Ccosart4"], ["https://tec.openplanner.team/stops/H1em106a", "https://tec.openplanner.team/stops/H1em109a"], ["https://tec.openplanner.team/stops/X756acb", "https://tec.openplanner.team/stops/X757ama"], ["https://tec.openplanner.team/stops/N501gka", "https://tec.openplanner.team/stops/N501lfb"], ["https://tec.openplanner.team/stops/Cflfaub1", "https://tec.openplanner.team/stops/Cflsncb3"], ["https://tec.openplanner.team/stops/Bboseco1", "https://tec.openplanner.team/stops/Bhakmkr1"], ["https://tec.openplanner.team/stops/LHThall4", "https://tec.openplanner.team/stops/LHTmoul2"], ["https://tec.openplanner.team/stops/H1ju121a", "https://tec.openplanner.team/stops/H1ju121b"], ["https://tec.openplanner.team/stops/LbHzent2", "https://tec.openplanner.team/stops/LrUbrac3"], ["https://tec.openplanner.team/stops/Bmrqpla2", "https://tec.openplanner.team/stops/H1mk108c"], ["https://tec.openplanner.team/stops/Lboastr1", "https://tec.openplanner.team/stops/Lbooffe1"], ["https://tec.openplanner.team/stops/Lvepire1", "https://tec.openplanner.team/stops/Lvewaut1"], ["https://tec.openplanner.team/stops/Bclgfva1", "https://tec.openplanner.team/stops/Bgisman1"], ["https://tec.openplanner.team/stops/Lrccime3", "https://tec.openplanner.team/stops/Lvoplac2"], ["https://tec.openplanner.team/stops/X991aaa", "https://tec.openplanner.team/stops/X993abd"], ["https://tec.openplanner.team/stops/X649abb", "https://tec.openplanner.team/stops/X671aeb"], ["https://tec.openplanner.team/stops/Ladfran1", "https://tec.openplanner.team/stops/Ladlimi1"], ["https://tec.openplanner.team/stops/LATjaur1", "https://tec.openplanner.team/stops/LATmale2"], ["https://tec.openplanner.team/stops/N135adc", "https://tec.openplanner.team/stops/N135aka"], ["https://tec.openplanner.team/stops/H1gh165a", "https://tec.openplanner.team/stops/H1gh165c"], ["https://tec.openplanner.team/stops/X897aca", "https://tec.openplanner.team/stops/X897anb"], ["https://tec.openplanner.team/stops/N577aja", "https://tec.openplanner.team/stops/N577ajb"], ["https://tec.openplanner.team/stops/LPLheid1", "https://tec.openplanner.team/stops/LPLmonu1"], ["https://tec.openplanner.team/stops/X792abb", "https://tec.openplanner.team/stops/X793ana"], ["https://tec.openplanner.team/stops/LSPbalm1", "https://tec.openplanner.team/stops/LSPwarf1"], ["https://tec.openplanner.team/stops/N535ada", "https://tec.openplanner.team/stops/N535adb"], ["https://tec.openplanner.team/stops/N349aaa", "https://tec.openplanner.team/stops/N349acb"], ["https://tec.openplanner.team/stops/X999aoa", "https://tec.openplanner.team/stops/X999aub"], ["https://tec.openplanner.team/stops/Lmicoop3", "https://tec.openplanner.team/stops/Lmihale2"], ["https://tec.openplanner.team/stops/LRRelec1", "https://tec.openplanner.team/stops/LRRmanc2"], ["https://tec.openplanner.team/stops/N521aoa", "https://tec.openplanner.team/stops/N523aca"], ["https://tec.openplanner.team/stops/Bwatran1", "https://tec.openplanner.team/stops/Bwatras1"], ["https://tec.openplanner.team/stops/N521arb", "https://tec.openplanner.team/stops/N521aub"], ["https://tec.openplanner.team/stops/H1ba109b", "https://tec.openplanner.team/stops/H1ba115b"], ["https://tec.openplanner.team/stops/X636ama", "https://tec.openplanner.team/stops/X636bha"], ["https://tec.openplanner.team/stops/H4ty293a", "https://tec.openplanner.team/stops/H4ty353b"], ["https://tec.openplanner.team/stops/X342aha", "https://tec.openplanner.team/stops/X342ahb"], ["https://tec.openplanner.team/stops/Blmlgar1", "https://tec.openplanner.team/stops/Blmlgar2"], ["https://tec.openplanner.team/stops/LSJ38--2", "https://tec.openplanner.team/stops/LSJgrae2"], ["https://tec.openplanner.team/stops/H5el112a", "https://tec.openplanner.team/stops/H5el116a"], ["https://tec.openplanner.team/stops/H4ve131b", "https://tec.openplanner.team/stops/H4ve137a"], ["https://tec.openplanner.team/stops/X923aka", "https://tec.openplanner.team/stops/X923akb"], ["https://tec.openplanner.team/stops/Lprmana3", "https://tec.openplanner.team/stops/Lprmana4"], ["https://tec.openplanner.team/stops/Cwgdeba1", "https://tec.openplanner.team/stops/Cwgdeba2"], ["https://tec.openplanner.team/stops/N534atb", "https://tec.openplanner.team/stops/N534ava"], ["https://tec.openplanner.team/stops/Ccugilb1", "https://tec.openplanner.team/stops/Cflvxsa1"], ["https://tec.openplanner.team/stops/Clomart1", "https://tec.openplanner.team/stops/CMmari2"], ["https://tec.openplanner.team/stops/LhOukat1", "https://tec.openplanner.team/stops/LhOzent1"], ["https://tec.openplanner.team/stops/H4bf107a", "https://tec.openplanner.team/stops/H4bs114a"], ["https://tec.openplanner.team/stops/LBJlieg2", "https://tec.openplanner.team/stops/LBrec--2"], ["https://tec.openplanner.team/stops/Blaneli2", "https://tec.openplanner.team/stops/LWscona2"], ["https://tec.openplanner.team/stops/H1gr120a", "https://tec.openplanner.team/stops/H1gr122b"], ["https://tec.openplanner.team/stops/Cmecite1", "https://tec.openplanner.team/stops/Cmesncv1"], ["https://tec.openplanner.team/stops/N501ega", "https://tec.openplanner.team/stops/N501geb"], ["https://tec.openplanner.team/stops/Cmlbeau2", "https://tec.openplanner.team/stops/Cmlthym2"], ["https://tec.openplanner.team/stops/LTgjalh2", "https://tec.openplanner.team/stops/LTgsous2"], ["https://tec.openplanner.team/stops/X836aha", "https://tec.openplanner.team/stops/X836ahb"], ["https://tec.openplanner.team/stops/LvA12--4", "https://tec.openplanner.team/stops/LvAschw1"], ["https://tec.openplanner.team/stops/Bwatvco1", "https://tec.openplanner.team/stops/Bwatzod1"], ["https://tec.openplanner.team/stops/N508apa", "https://tec.openplanner.team/stops/N516aab"], ["https://tec.openplanner.team/stops/X601cva", "https://tec.openplanner.team/stops/X601cya"], ["https://tec.openplanner.team/stops/LsVlust1", "https://tec.openplanner.team/stops/LsVthom2"], ["https://tec.openplanner.team/stops/X886agb", "https://tec.openplanner.team/stops/X985afb"], ["https://tec.openplanner.team/stops/H4mt221a", "https://tec.openplanner.team/stops/H4ve137a"], ["https://tec.openplanner.team/stops/Bbsicul2", "https://tec.openplanner.team/stops/Blilgar1"], ["https://tec.openplanner.team/stops/LAvcani1", "https://tec.openplanner.team/stops/LAvrout1"], ["https://tec.openplanner.team/stops/H4ty282b", "https://tec.openplanner.team/stops/H4ty339a"], ["https://tec.openplanner.team/stops/X612aaa", "https://tec.openplanner.team/stops/X612aab"], ["https://tec.openplanner.team/stops/Cgxchea1", "https://tec.openplanner.team/stops/Cgxcime1"], ["https://tec.openplanner.team/stops/Balsnay1", "https://tec.openplanner.team/stops/Balsnie2"], ["https://tec.openplanner.team/stops/H2go113a", "https://tec.openplanner.team/stops/H2go115a"], ["https://tec.openplanner.team/stops/X824aba", "https://tec.openplanner.team/stops/X824ada"], ["https://tec.openplanner.team/stops/Bsgimor1", "https://tec.openplanner.team/stops/Bsgimor2"], ["https://tec.openplanner.team/stops/Cbfpauc2", "https://tec.openplanner.team/stops/NC24aja"], ["https://tec.openplanner.team/stops/N170aeb", "https://tec.openplanner.team/stops/N170agb"], ["https://tec.openplanner.team/stops/H2pr117b", "https://tec.openplanner.team/stops/H3st119a"], ["https://tec.openplanner.team/stops/N204aia", "https://tec.openplanner.team/stops/N205abb"], ["https://tec.openplanner.team/stops/X721aha", "https://tec.openplanner.team/stops/X721aib"], ["https://tec.openplanner.team/stops/H4ae132d", "https://tec.openplanner.team/stops/H4ea132b"], ["https://tec.openplanner.team/stops/N874aba", "https://tec.openplanner.team/stops/N874abb"], ["https://tec.openplanner.team/stops/X802aka", "https://tec.openplanner.team/stops/X802akb"], ["https://tec.openplanner.team/stops/H1wi157a", "https://tec.openplanner.team/stops/H1wi157c"], ["https://tec.openplanner.team/stops/N101agc", "https://tec.openplanner.team/stops/N101aua"], ["https://tec.openplanner.team/stops/H2hg147a", "https://tec.openplanner.team/stops/H2hg147b"], ["https://tec.openplanner.team/stops/Canvane2", "https://tec.openplanner.team/stops/H2an106d"], ["https://tec.openplanner.team/stops/Bbxlmid1", "https://tec.openplanner.team/stops/Bhalath1"], ["https://tec.openplanner.team/stops/X939aba", "https://tec.openplanner.team/stops/X939ada"], ["https://tec.openplanner.team/stops/LHggeer2", "https://tec.openplanner.team/stops/LHgpost2"], ["https://tec.openplanner.team/stops/Cjuledo2", "https://tec.openplanner.team/stops/Cjumall6"], ["https://tec.openplanner.team/stops/X948aab", "https://tec.openplanner.team/stops/X948ava"], ["https://tec.openplanner.team/stops/X639ada", "https://tec.openplanner.team/stops/X639apb"], ["https://tec.openplanner.team/stops/X898ahb", "https://tec.openplanner.team/stops/X898aib"], ["https://tec.openplanner.team/stops/N118anb", "https://tec.openplanner.team/stops/N118aza"], ["https://tec.openplanner.team/stops/LSMlier1", "https://tec.openplanner.team/stops/LSMlier2"], ["https://tec.openplanner.team/stops/H4rx141a", "https://tec.openplanner.team/stops/H4rx141b"], ["https://tec.openplanner.team/stops/Crccamp1", "https://tec.openplanner.team/stops/Crcgmah1"], ["https://tec.openplanner.team/stops/H2hp116a", "https://tec.openplanner.team/stops/H2ll181b"], ["https://tec.openplanner.team/stops/LXflong1", "https://tec.openplanner.team/stops/LXftche1"], ["https://tec.openplanner.team/stops/LPRbrou2", "https://tec.openplanner.team/stops/LPReg--1"], ["https://tec.openplanner.team/stops/X994aka", "https://tec.openplanner.team/stops/X994akb"], ["https://tec.openplanner.team/stops/N137aea", "https://tec.openplanner.team/stops/N137aec"], ["https://tec.openplanner.team/stops/X636awb", "https://tec.openplanner.team/stops/X636bbb"], ["https://tec.openplanner.team/stops/N516ana", "https://tec.openplanner.team/stops/N516anb"], ["https://tec.openplanner.team/stops/Cbetrie1", "https://tec.openplanner.team/stops/N161aeb"], ["https://tec.openplanner.team/stops/X796aab", "https://tec.openplanner.team/stops/X986abb"], ["https://tec.openplanner.team/stops/X908aab", "https://tec.openplanner.team/stops/X908ama"], ["https://tec.openplanner.team/stops/X921ahb", "https://tec.openplanner.team/stops/X921aib"], ["https://tec.openplanner.team/stops/N576ajb", "https://tec.openplanner.team/stops/N576ala"], ["https://tec.openplanner.team/stops/H4ta121a", "https://tec.openplanner.team/stops/H4ta132a"], ["https://tec.openplanner.team/stops/X595aca", "https://tec.openplanner.team/stops/X595ada"], ["https://tec.openplanner.team/stops/LMObouh2", "https://tec.openplanner.team/stops/LMOfrel1"], ["https://tec.openplanner.team/stops/Bnstmig1", "https://tec.openplanner.team/stops/Bnstmig2"], ["https://tec.openplanner.team/stops/LRObarr1", "https://tec.openplanner.team/stops/LROrtba2"], ["https://tec.openplanner.team/stops/Llgbavi1", "https://tec.openplanner.team/stops/Llgbavi3"], ["https://tec.openplanner.team/stops/Cvthoeu1", "https://tec.openplanner.team/stops/Cvtvail2"], ["https://tec.openplanner.team/stops/LTiec--1", "https://tec.openplanner.team/stops/LTieg--2"], ["https://tec.openplanner.team/stops/N550abd", "https://tec.openplanner.team/stops/N550ada"], ["https://tec.openplanner.team/stops/Lannico2", "https://tec.openplanner.team/stops/Lglsana1"], ["https://tec.openplanner.team/stops/X637agb", "https://tec.openplanner.team/stops/X637agc"], ["https://tec.openplanner.team/stops/Bnilcha1", "https://tec.openplanner.team/stops/Bnilpor3"], ["https://tec.openplanner.team/stops/Bettars2", "https://tec.openplanner.team/stops/Bixepla2"], ["https://tec.openplanner.team/stops/Cmyplac2", "https://tec.openplanner.team/stops/Cmypost1"], ["https://tec.openplanner.team/stops/LAuchau1", "https://tec.openplanner.team/stops/LSDgris1"], ["https://tec.openplanner.team/stops/LWarema1", "https://tec.openplanner.team/stops/LWastei1"], ["https://tec.openplanner.team/stops/N118aca", "https://tec.openplanner.team/stops/N118acd"], ["https://tec.openplanner.team/stops/N245acb", "https://tec.openplanner.team/stops/N340afa"], ["https://tec.openplanner.team/stops/N543bxa", "https://tec.openplanner.team/stops/N543bya"], ["https://tec.openplanner.team/stops/X952agb", "https://tec.openplanner.team/stops/X952ahb"], ["https://tec.openplanner.team/stops/Clbchlo1", "https://tec.openplanner.team/stops/Clbchlo2"], ["https://tec.openplanner.team/stops/N528aaa", "https://tec.openplanner.team/stops/N528aab"], ["https://tec.openplanner.team/stops/Crapaep1", "https://tec.openplanner.team/stops/Crasocq1"], ["https://tec.openplanner.team/stops/N540aca", "https://tec.openplanner.team/stops/N540acd"], ["https://tec.openplanner.team/stops/Cfrgare1", "https://tec.openplanner.team/stops/Cfrgare4"], ["https://tec.openplanner.team/stops/LHupont1", "https://tec.openplanner.team/stops/LHurobi1"], ["https://tec.openplanner.team/stops/H5qu143a", "https://tec.openplanner.team/stops/H5qu143d"], ["https://tec.openplanner.team/stops/N538aob", "https://tec.openplanner.team/stops/N538asb"], ["https://tec.openplanner.team/stops/Cmtchas1", "https://tec.openplanner.team/stops/Cmtprey1"], ["https://tec.openplanner.team/stops/X633aha", "https://tec.openplanner.team/stops/X633ahb"], ["https://tec.openplanner.team/stops/H4wn123a", "https://tec.openplanner.team/stops/H4wn126a"], ["https://tec.openplanner.team/stops/X887aaa", "https://tec.openplanner.team/stops/X890afa"], ["https://tec.openplanner.team/stops/LREgare2", "https://tec.openplanner.team/stops/LREgrot3"], ["https://tec.openplanner.team/stops/N166aaa", "https://tec.openplanner.team/stops/N565aea"], ["https://tec.openplanner.team/stops/H4lz125b", "https://tec.openplanner.team/stops/H4lz156b"], ["https://tec.openplanner.team/stops/Buccmer2", "https://tec.openplanner.team/stops/Buccobs2"], ["https://tec.openplanner.team/stops/Buccmer1", "https://tec.openplanner.team/stops/Buccobs1"], ["https://tec.openplanner.team/stops/Ccaegli4", "https://tec.openplanner.team/stops/Cmregli4"], ["https://tec.openplanner.team/stops/LMApape1", "https://tec.openplanner.team/stops/LMAwavr2"], ["https://tec.openplanner.team/stops/Llgchat1", "https://tec.openplanner.team/stops/Llgmaus2"], ["https://tec.openplanner.team/stops/Ctuplac3", "https://tec.openplanner.team/stops/NC28aha"], ["https://tec.openplanner.team/stops/Lpemata2", "https://tec.openplanner.team/stops/Lpeptwa2"], ["https://tec.openplanner.team/stops/Clibrun1", "https://tec.openplanner.team/stops/Ctmwaut2"], ["https://tec.openplanner.team/stops/H1gr118a", "https://tec.openplanner.team/stops/H1gr118b"], ["https://tec.openplanner.team/stops/X756aab", "https://tec.openplanner.team/stops/X757aca"], ["https://tec.openplanner.team/stops/LHVgoro1", "https://tec.openplanner.team/stops/Lmnchal2"], ["https://tec.openplanner.team/stops/N501hwa", "https://tec.openplanner.team/stops/N501iea"], ["https://tec.openplanner.team/stops/LDLgran2", "https://tec.openplanner.team/stops/LDLgran4"], ["https://tec.openplanner.team/stops/X663axb", "https://tec.openplanner.team/stops/X663aya"], ["https://tec.openplanner.team/stops/X937ada", "https://tec.openplanner.team/stops/X937aib"], ["https://tec.openplanner.team/stops/Crachap1", "https://tec.openplanner.team/stops/Crasocq2"], ["https://tec.openplanner.team/stops/LbTschw1", "https://tec.openplanner.team/stops/LbTschw2"], ["https://tec.openplanner.team/stops/N501bsb", "https://tec.openplanner.team/stops/N501bta"], ["https://tec.openplanner.team/stops/LbThutt1", "https://tec.openplanner.team/stops/LbTkreu1"], ["https://tec.openplanner.team/stops/H5at115a", "https://tec.openplanner.team/stops/H5at118a"], ["https://tec.openplanner.team/stops/Louegla2", "https://tec.openplanner.team/stops/Loutroi1"], ["https://tec.openplanner.team/stops/N508afa", "https://tec.openplanner.team/stops/N516aab"], ["https://tec.openplanner.team/stops/H1ht122a", "https://tec.openplanner.team/stops/H1ht128a"], ["https://tec.openplanner.team/stops/LAUcarr1", "https://tec.openplanner.team/stops/LFdeg--3"], ["https://tec.openplanner.team/stops/LFPho8a1", "https://tec.openplanner.team/stops/LWRheyd2"], ["https://tec.openplanner.team/stops/LTAbran1", "https://tec.openplanner.team/stops/LTHmont2"], ["https://tec.openplanner.team/stops/H1mk109b", "https://tec.openplanner.team/stops/H1mk117a"], ["https://tec.openplanner.team/stops/N532ana", "https://tec.openplanner.team/stops/N574aeb"], ["https://tec.openplanner.team/stops/Lannico1", "https://tec.openplanner.team/stops/Lannico4"], ["https://tec.openplanner.team/stops/Bbaltba1", "https://tec.openplanner.team/stops/N584aha"], ["https://tec.openplanner.team/stops/X897abb", "https://tec.openplanner.team/stops/X897aqa"], ["https://tec.openplanner.team/stops/X897afb", "https://tec.openplanner.team/stops/X897aga"], ["https://tec.openplanner.team/stops/LmRh%C3%B6fe1", "https://tec.openplanner.team/stops/LmRkape1"], ["https://tec.openplanner.team/stops/H1ch141a", "https://tec.openplanner.team/stops/H1ch143b"], ["https://tec.openplanner.team/stops/Llgavro2", "https://tec.openplanner.team/stops/Llgec--1"], ["https://tec.openplanner.team/stops/Lhuleke1", "https://tec.openplanner.team/stops/Lvegend1"], ["https://tec.openplanner.team/stops/Bottcba1", "https://tec.openplanner.team/stops/Bottppa2"], ["https://tec.openplanner.team/stops/Blingar2", "https://tec.openplanner.team/stops/Blingar4"], ["https://tec.openplanner.team/stops/X605acb", "https://tec.openplanner.team/stops/X606aba"], ["https://tec.openplanner.team/stops/Cflcent1", "https://tec.openplanner.team/stops/Cflchel4"], ["https://tec.openplanner.team/stops/Csepote2", "https://tec.openplanner.team/stops/Csesabo1"], ["https://tec.openplanner.team/stops/H4ty405a", "https://tec.openplanner.team/stops/H4ty405b"], ["https://tec.openplanner.team/stops/H4ga152a", "https://tec.openplanner.team/stops/H4ga168a"], ["https://tec.openplanner.team/stops/NL37aab", "https://tec.openplanner.team/stops/NL37abb"], ["https://tec.openplanner.team/stops/LLrbuis2", "https://tec.openplanner.team/stops/LLrpape2"], ["https://tec.openplanner.team/stops/Beclbse1", "https://tec.openplanner.team/stops/Beclesp1"], ["https://tec.openplanner.team/stops/Bchgbar2", "https://tec.openplanner.team/stops/Blontry2"], ["https://tec.openplanner.team/stops/X831aba", "https://tec.openplanner.team/stops/X833abb"], ["https://tec.openplanner.team/stops/LKmcite2", "https://tec.openplanner.team/stops/LOdbuis1"], ["https://tec.openplanner.team/stops/LAOeg--2", "https://tec.openplanner.team/stops/LAOpres2"], ["https://tec.openplanner.team/stops/N517aba", "https://tec.openplanner.team/stops/N517aea"], ["https://tec.openplanner.team/stops/H1ge151a", "https://tec.openplanner.team/stops/H1ge151b"], ["https://tec.openplanner.team/stops/N539bfa", "https://tec.openplanner.team/stops/N539bfb"], ["https://tec.openplanner.team/stops/LOUbarr2", "https://tec.openplanner.team/stops/LOUbarr3"], ["https://tec.openplanner.team/stops/H4ea128b", "https://tec.openplanner.team/stops/H4ea131b"], ["https://tec.openplanner.team/stops/Lfhhoul2", "https://tec.openplanner.team/stops/Lfhncha1"], ["https://tec.openplanner.team/stops/H4co133b", "https://tec.openplanner.team/stops/H4co142a"], ["https://tec.openplanner.team/stops/N515anb", "https://tec.openplanner.team/stops/N516aja"], ["https://tec.openplanner.team/stops/H1bu140a", "https://tec.openplanner.team/stops/H1bu143a"], ["https://tec.openplanner.team/stops/X659aba", "https://tec.openplanner.team/stops/X659acb"], ["https://tec.openplanner.team/stops/H4ru240a", "https://tec.openplanner.team/stops/H4ty275a"], ["https://tec.openplanner.team/stops/LOTcloe1", "https://tec.openplanner.team/stops/LXhvanh1"], ["https://tec.openplanner.team/stops/LSTchen1", "https://tec.openplanner.team/stops/LSTmast2"], ["https://tec.openplanner.team/stops/Ccyga8", "https://tec.openplanner.team/stops/NH01aca"], ["https://tec.openplanner.team/stops/Cgochfe1", "https://tec.openplanner.team/stops/Cgoetun1"], ["https://tec.openplanner.team/stops/Cchdagn2", "https://tec.openplanner.team/stops/Cchriga2"], ["https://tec.openplanner.team/stops/Ccocroi1", "https://tec.openplanner.team/stops/Csocime2"], ["https://tec.openplanner.team/stops/Lgrclin4", "https://tec.openplanner.team/stops/Lvccime2"], ["https://tec.openplanner.team/stops/Lbrboul1", "https://tec.openplanner.team/stops/Lbrfoid4"], ["https://tec.openplanner.team/stops/LESflag1", "https://tec.openplanner.team/stops/LPOecol2"], ["https://tec.openplanner.team/stops/N525acb", "https://tec.openplanner.team/stops/N525bab"], ["https://tec.openplanner.team/stops/LMEcour1", "https://tec.openplanner.team/stops/LMEense1"], ["https://tec.openplanner.team/stops/Lchsaeg1", "https://tec.openplanner.team/stops/LSRbouh2"], ["https://tec.openplanner.team/stops/LWAclos1", "https://tec.openplanner.team/stops/LWAlpre1"], ["https://tec.openplanner.team/stops/H1al108a", "https://tec.openplanner.team/stops/H1al108b"], ["https://tec.openplanner.team/stops/Lchplai2", "https://tec.openplanner.team/stops/Lchtche1"], ["https://tec.openplanner.team/stops/X662aqb", "https://tec.openplanner.team/stops/X662arb"], ["https://tec.openplanner.team/stops/H5qu143c", "https://tec.openplanner.team/stops/H5qu182a"], ["https://tec.openplanner.team/stops/H2lh124a", "https://tec.openplanner.team/stops/H2lh124b"], ["https://tec.openplanner.team/stops/LCSfagn2", "https://tec.openplanner.team/stops/LCShoux1"], ["https://tec.openplanner.team/stops/H1el132b", "https://tec.openplanner.team/stops/H1mh112a"], ["https://tec.openplanner.team/stops/X601bnb", "https://tec.openplanner.team/stops/X601dea"], ["https://tec.openplanner.team/stops/Bwatgar1", "https://tec.openplanner.team/stops/Bwatgar3"], ["https://tec.openplanner.team/stops/LETeg--2", "https://tec.openplanner.team/stops/LETtemp2"], ["https://tec.openplanner.team/stops/N547aaa", "https://tec.openplanner.team/stops/N547aab"], ["https://tec.openplanner.team/stops/Bborbif2", "https://tec.openplanner.team/stops/Bborche1"], ["https://tec.openplanner.team/stops/H4mo177a", "https://tec.openplanner.team/stops/H4mo185a"], ["https://tec.openplanner.team/stops/Loucorn1", "https://tec.openplanner.team/stops/Loucorn2"], ["https://tec.openplanner.team/stops/N211aha", "https://tec.openplanner.team/stops/N211aza"], ["https://tec.openplanner.team/stops/H1ba112b", "https://tec.openplanner.team/stops/H1si164a"], ["https://tec.openplanner.team/stops/Llgbavi3", "https://tec.openplanner.team/stops/Llgsime2"], ["https://tec.openplanner.team/stops/H4lp126b", "https://tec.openplanner.team/stops/H4pe125a"], ["https://tec.openplanner.team/stops/X713aia", "https://tec.openplanner.team/stops/X713aja"], ["https://tec.openplanner.team/stops/Lch179-2", "https://tec.openplanner.team/stops/Lchcomm2"], ["https://tec.openplanner.team/stops/LAWgill1", "https://tec.openplanner.team/stops/Lghlogi2"], ["https://tec.openplanner.team/stops/H2sb226a", "https://tec.openplanner.team/stops/H2sb242a"], ["https://tec.openplanner.team/stops/LmYkirc2", "https://tec.openplanner.team/stops/LvAschw2"], ["https://tec.openplanner.team/stops/Lfhdonn2", "https://tec.openplanner.team/stops/Lseegva1"], ["https://tec.openplanner.team/stops/N113afa", "https://tec.openplanner.team/stops/N114aab"], ["https://tec.openplanner.team/stops/H4mx119a", "https://tec.openplanner.team/stops/H4mx119b"], ["https://tec.openplanner.team/stops/N558anb", "https://tec.openplanner.team/stops/NL72aca"], ["https://tec.openplanner.team/stops/Crobass1", "https://tec.openplanner.team/stops/Crojume1"], ["https://tec.openplanner.team/stops/N120abd", "https://tec.openplanner.team/stops/N302ada"], ["https://tec.openplanner.team/stops/LPTeg--2", "https://tec.openplanner.team/stops/X750aza"], ["https://tec.openplanner.team/stops/Bhaawdr2", "https://tec.openplanner.team/stops/Bhmmjco1"], ["https://tec.openplanner.team/stops/Cgrchea2", "https://tec.openplanner.team/stops/Cgrsaul2"], ["https://tec.openplanner.team/stops/X616ahb", "https://tec.openplanner.team/stops/X617adb"], ["https://tec.openplanner.team/stops/LlgLAMB1", "https://tec.openplanner.team/stops/LlgLEOP2"], ["https://tec.openplanner.team/stops/Bosqcim1", "https://tec.openplanner.team/stops/Bosqpco2"], ["https://tec.openplanner.team/stops/Bcseaba2", "https://tec.openplanner.team/stops/Bcseche1"], ["https://tec.openplanner.team/stops/Bcsecar1", "https://tec.openplanner.team/stops/Bmoucnd1"], ["https://tec.openplanner.team/stops/Lve-isi2", "https://tec.openplanner.team/stops/Lvejeha2"], ["https://tec.openplanner.team/stops/Clpalli2", "https://tec.openplanner.team/stops/Clpnapo2"], ["https://tec.openplanner.team/stops/LGDgdou2", "https://tec.openplanner.team/stops/LGmloti2"], ["https://tec.openplanner.team/stops/Ccutrav1", "https://tec.openplanner.team/stops/Ccutrav2"], ["https://tec.openplanner.team/stops/Llmdavi1", "https://tec.openplanner.team/stops/Llmdavi2"], ["https://tec.openplanner.team/stops/H2bh106b", "https://tec.openplanner.team/stops/H2bh115a"], ["https://tec.openplanner.team/stops/N155afc", "https://tec.openplanner.team/stops/N155afd"], ["https://tec.openplanner.team/stops/Llgabat1", "https://tec.openplanner.team/stops/Llgarmu3"], ["https://tec.openplanner.team/stops/N106ana", "https://tec.openplanner.team/stops/N106anb"], ["https://tec.openplanner.team/stops/H4ga155b", "https://tec.openplanner.team/stops/H4ga170a"], ["https://tec.openplanner.team/stops/Ljuchap2", "https://tec.openplanner.team/stops/Ljulieg2"], ["https://tec.openplanner.team/stops/Brsggde1", "https://tec.openplanner.team/stops/Brsgpbo2"], ["https://tec.openplanner.team/stops/LWDmass2", "https://tec.openplanner.team/stops/LWDsieg2"], ["https://tec.openplanner.team/stops/X725bab", "https://tec.openplanner.team/stops/X725bca"], ["https://tec.openplanner.team/stops/N232ata", "https://tec.openplanner.team/stops/N232aza"], ["https://tec.openplanner.team/stops/H4cw106a", "https://tec.openplanner.team/stops/H4lz163a"], ["https://tec.openplanner.team/stops/N501cda", "https://tec.openplanner.team/stops/N501cdb"], ["https://tec.openplanner.team/stops/X922alb", "https://tec.openplanner.team/stops/X942afb"], ["https://tec.openplanner.team/stops/Lagtilf2", "https://tec.openplanner.team/stops/Lagviad1"], ["https://tec.openplanner.team/stops/H2hg269b", "https://tec.openplanner.team/stops/H2hg272b"], ["https://tec.openplanner.team/stops/H1ho124a", "https://tec.openplanner.team/stops/H1ho130b"], ["https://tec.openplanner.team/stops/LTgbalm1", "https://tec.openplanner.team/stops/LTgchar7"], ["https://tec.openplanner.team/stops/N222aca", "https://tec.openplanner.team/stops/N222aeb"], ["https://tec.openplanner.team/stops/H1fr107d", "https://tec.openplanner.team/stops/H1fr123a"], ["https://tec.openplanner.team/stops/LSegott2", "https://tec.openplanner.team/stops/LSerout2"], ["https://tec.openplanner.team/stops/LGHplai1", "https://tec.openplanner.team/stops/LTPwann1"], ["https://tec.openplanner.team/stops/Baegpon1", "https://tec.openplanner.team/stops/NR38aeb"], ["https://tec.openplanner.team/stops/LrEkais3", "https://tec.openplanner.team/stops/Ltheg--2"], ["https://tec.openplanner.team/stops/Blemkap1", "https://tec.openplanner.team/stops/Blemwob1"], ["https://tec.openplanner.team/stops/Lbrcygn1", "https://tec.openplanner.team/stops/Lbrgrot1"], ["https://tec.openplanner.team/stops/N117ana", "https://tec.openplanner.team/stops/N117bbb"], ["https://tec.openplanner.team/stops/H3bi106a", "https://tec.openplanner.team/stops/H3bi113b"], ["https://tec.openplanner.team/stops/X760aeb", "https://tec.openplanner.team/stops/X760aga"], ["https://tec.openplanner.team/stops/N241aca", "https://tec.openplanner.team/stops/N241acb"], ["https://tec.openplanner.team/stops/N518aba", "https://tec.openplanner.team/stops/N518abb"], ["https://tec.openplanner.team/stops/X927aab", "https://tec.openplanner.team/stops/X927ada"], ["https://tec.openplanner.team/stops/Cmlasie2", "https://tec.openplanner.team/stops/Cmlbulp3"], ["https://tec.openplanner.team/stops/N116aac", "https://tec.openplanner.team/stops/N116aad"], ["https://tec.openplanner.team/stops/LHUdeni1", "https://tec.openplanner.team/stops/LHUpsar2"], ["https://tec.openplanner.team/stops/Bnivh%C3%B4p2", "https://tec.openplanner.team/stops/Bnivsoi1"], ["https://tec.openplanner.team/stops/Ljucano1", "https://tec.openplanner.team/stops/Ljuetie3"], ["https://tec.openplanner.team/stops/H1hh111a", "https://tec.openplanner.team/stops/H1hh114b"], ["https://tec.openplanner.team/stops/H1ba101b", "https://tec.openplanner.team/stops/H1te174a"], ["https://tec.openplanner.team/stops/NH01aqa", "https://tec.openplanner.team/stops/NH01ara"], ["https://tec.openplanner.team/stops/H4fr141a", "https://tec.openplanner.team/stops/H4fr143a"], ["https://tec.openplanner.team/stops/Lvebiol1", "https://tec.openplanner.team/stops/Lvebiol2"], ["https://tec.openplanner.team/stops/H1bb146a", "https://tec.openplanner.team/stops/H1do121a"], ["https://tec.openplanner.team/stops/H4bx167a", "https://tec.openplanner.team/stops/H4te413b"], ["https://tec.openplanner.team/stops/Cmyecur1", "https://tec.openplanner.team/stops/Cmygrbr4"], ["https://tec.openplanner.team/stops/N118acb", "https://tec.openplanner.team/stops/N118aha"], ["https://tec.openplanner.team/stops/LFMkrut1", "https://tec.openplanner.team/stops/LFMkrut4"], ["https://tec.openplanner.team/stops/Lemarde1", "https://tec.openplanner.team/stops/Lemhuet2"], ["https://tec.openplanner.team/stops/X876aab", "https://tec.openplanner.team/stops/X876acb"], ["https://tec.openplanner.team/stops/N160aab", "https://tec.openplanner.team/stops/N160afb"], ["https://tec.openplanner.team/stops/Bbuzcom2", "https://tec.openplanner.team/stops/Bnivn971"], ["https://tec.openplanner.team/stops/LBscasi1", "https://tec.openplanner.team/stops/NL72aab"], ["https://tec.openplanner.team/stops/X747aja", "https://tec.openplanner.team/stops/X747ajb"], ["https://tec.openplanner.team/stops/Cmoecol1", "https://tec.openplanner.team/stops/Cmoecol2"], ["https://tec.openplanner.team/stops/H1le117a", "https://tec.openplanner.team/stops/H1le118b"], ["https://tec.openplanner.team/stops/Bwatbca2", "https://tec.openplanner.team/stops/Bwatcro1"], ["https://tec.openplanner.team/stops/Lveharm1", "https://tec.openplanner.team/stops/Lvethea2"], ["https://tec.openplanner.team/stops/LLxcbr-1", "https://tec.openplanner.team/stops/LLxnive2"], ["https://tec.openplanner.team/stops/H1wg127a", "https://tec.openplanner.team/stops/H1wg127b"], ["https://tec.openplanner.team/stops/N101aia", "https://tec.openplanner.team/stops/N101ama"], ["https://tec.openplanner.team/stops/X636bab", "https://tec.openplanner.team/stops/X649aab"], ["https://tec.openplanner.team/stops/LEBdoct1", "https://tec.openplanner.team/stops/LEBmoul1"], ["https://tec.openplanner.team/stops/X897acb", "https://tec.openplanner.team/stops/X897aia"], ["https://tec.openplanner.team/stops/N520abb", "https://tec.openplanner.team/stops/N520aca"], ["https://tec.openplanner.team/stops/X986aga", "https://tec.openplanner.team/stops/X986aka"], ["https://tec.openplanner.team/stops/LDObran1", "https://tec.openplanner.team/stops/LDOdavi1"], ["https://tec.openplanner.team/stops/H1ba101b", "https://tec.openplanner.team/stops/H1ba115b"], ["https://tec.openplanner.team/stops/Ctubpos1", "https://tec.openplanner.team/stops/Ctucamb1"], ["https://tec.openplanner.team/stops/LMNgare2", "https://tec.openplanner.team/stops/LMNgend1"], ["https://tec.openplanner.team/stops/N501hrb", "https://tec.openplanner.team/stops/N501ita"], ["https://tec.openplanner.team/stops/X820ada", "https://tec.openplanner.team/stops/X820agb"], ["https://tec.openplanner.team/stops/Btubga01", "https://tec.openplanner.team/stops/Btubga02"], ["https://tec.openplanner.team/stops/Lengran2", "https://tec.openplanner.team/stops/Lenmivi*"], ["https://tec.openplanner.team/stops/H4mv193a", "https://tec.openplanner.team/stops/H4va232a"], ["https://tec.openplanner.team/stops/LMubras1", "https://tec.openplanner.team/stops/LMucarr3"], ["https://tec.openplanner.team/stops/N550ajb", "https://tec.openplanner.team/stops/N550ala"], ["https://tec.openplanner.team/stops/Bbst4br1", "https://tec.openplanner.team/stops/Bbst4br4"], ["https://tec.openplanner.team/stops/N507aab", "https://tec.openplanner.team/stops/N507aac"], ["https://tec.openplanner.team/stops/N286aba", "https://tec.openplanner.team/stops/N287aaa"], ["https://tec.openplanner.team/stops/Cfrgare4", "https://tec.openplanner.team/stops/Cfrgivr1"], ["https://tec.openplanner.team/stops/Crglyre1", "https://tec.openplanner.team/stops/Crglyre2"], ["https://tec.openplanner.team/stops/X780aca", "https://tec.openplanner.team/stops/X780acb"], ["https://tec.openplanner.team/stops/Bcrngat2", "https://tec.openplanner.team/stops/Bcrnpla4"], ["https://tec.openplanner.team/stops/X802ana", "https://tec.openplanner.team/stops/X802aza"], ["https://tec.openplanner.team/stops/Lcacaps1", "https://tec.openplanner.team/stops/LNipla3"], ["https://tec.openplanner.team/stops/H4hx110a", "https://tec.openplanner.team/stops/H4hx116a"], ["https://tec.openplanner.team/stops/H1ho132b", "https://tec.openplanner.team/stops/H1ho144a"], ["https://tec.openplanner.team/stops/LVLf10-1", "https://tec.openplanner.team/stops/LVLgotr4"], ["https://tec.openplanner.team/stops/H1fa117a", "https://tec.openplanner.team/stops/H1fa120a"], ["https://tec.openplanner.team/stops/NC23afa", "https://tec.openplanner.team/stops/NC23aga"], ["https://tec.openplanner.team/stops/LLiforg2", "https://tec.openplanner.team/stops/LLirout1"], ["https://tec.openplanner.team/stops/Lvieg--1", "https://tec.openplanner.team/stops/Lvimc--1"], ["https://tec.openplanner.team/stops/Botteco1", "https://tec.openplanner.team/stops/Bottpar1"], ["https://tec.openplanner.team/stops/X617acb", "https://tec.openplanner.team/stops/X696ala"], ["https://tec.openplanner.team/stops/Bnstlna2", "https://tec.openplanner.team/stops/H3br100b"], ["https://tec.openplanner.team/stops/X739ala", "https://tec.openplanner.team/stops/X771aaa"], ["https://tec.openplanner.team/stops/N101ada", "https://tec.openplanner.team/stops/N101adc"], ["https://tec.openplanner.team/stops/LVLecco1", "https://tec.openplanner.team/stops/LVLm10-2"], ["https://tec.openplanner.team/stops/H3th131b", "https://tec.openplanner.team/stops/H3th135e"], ["https://tec.openplanner.team/stops/Cwgmutu1", "https://tec.openplanner.team/stops/Cwgrans1"], ["https://tec.openplanner.team/stops/LFOchab2", "https://tec.openplanner.team/stops/LFOcomb3"], ["https://tec.openplanner.team/stops/X991ada", "https://tec.openplanner.team/stops/X991akb"], ["https://tec.openplanner.team/stops/N506aza", "https://tec.openplanner.team/stops/N506bja"], ["https://tec.openplanner.team/stops/Bohnrsc2", "https://tec.openplanner.team/stops/Bwatgge2"], ["https://tec.openplanner.team/stops/N574aaa", "https://tec.openplanner.team/stops/N574aab"], ["https://tec.openplanner.team/stops/H4rm111b", "https://tec.openplanner.team/stops/H4ta120b"], ["https://tec.openplanner.team/stops/Bjodcad1", "https://tec.openplanner.team/stops/Bjodcad2"], ["https://tec.openplanner.team/stops/N525anb", "https://tec.openplanner.team/stops/N526acb"], ["https://tec.openplanner.team/stops/LBLcalv3", "https://tec.openplanner.team/stops/LCEinst2"], ["https://tec.openplanner.team/stops/LNOsedo2", "https://tec.openplanner.team/stops/LQafond2"], ["https://tec.openplanner.team/stops/Cgoetun3", "https://tec.openplanner.team/stops/Cgopier3"], ["https://tec.openplanner.team/stops/Cjumall2", "https://tec.openplanner.team/stops/Cjuvign2"], ["https://tec.openplanner.team/stops/Lstchu-2", "https://tec.openplanner.team/stops/LTIsupe1"], ["https://tec.openplanner.team/stops/LeUdepo2", "https://tec.openplanner.team/stops/LeUlasc1"], ["https://tec.openplanner.team/stops/H3so161b", "https://tec.openplanner.team/stops/H3so179a"], ["https://tec.openplanner.team/stops/Cobmara1", "https://tec.openplanner.team/stops/Cobmara2"], ["https://tec.openplanner.team/stops/H1en105a", "https://tec.openplanner.team/stops/H1en106b"], ["https://tec.openplanner.team/stops/N151aaa", "https://tec.openplanner.team/stops/N151aab"], ["https://tec.openplanner.team/stops/X901aba", "https://tec.openplanner.team/stops/X901bsa"], ["https://tec.openplanner.team/stops/Cfocorn1", "https://tec.openplanner.team/stops/Cforpet1"], ["https://tec.openplanner.team/stops/X736aaa", "https://tec.openplanner.team/stops/X736aba"], ["https://tec.openplanner.team/stops/H1ag107b", "https://tec.openplanner.team/stops/H1an100b"], ["https://tec.openplanner.team/stops/X818anb", "https://tec.openplanner.team/stops/X818awb"], ["https://tec.openplanner.team/stops/LeLdorf2", "https://tec.openplanner.team/stops/LwR129-2"], ["https://tec.openplanner.team/stops/H4ce100b", "https://tec.openplanner.team/stops/H4ve132a"], ["https://tec.openplanner.team/stops/N201apb", "https://tec.openplanner.team/stops/N201awb"], ["https://tec.openplanner.team/stops/N348aab", "https://tec.openplanner.team/stops/N348adb"], ["https://tec.openplanner.team/stops/Ljelexh1", "https://tec.openplanner.team/stops/Ljeorda1"], ["https://tec.openplanner.team/stops/H4mv193a", "https://tec.openplanner.team/stops/H4mv196b"], ["https://tec.openplanner.team/stops/Lsn184-1", "https://tec.openplanner.team/stops/Lsnhoco1"], ["https://tec.openplanner.team/stops/H2ch100b", "https://tec.openplanner.team/stops/H2ch125a"], ["https://tec.openplanner.team/stops/N519akb", "https://tec.openplanner.team/stops/N525akb"], ["https://tec.openplanner.team/stops/N501ddb", "https://tec.openplanner.team/stops/N528aja"], ["https://tec.openplanner.team/stops/Brixpje2", "https://tec.openplanner.team/stops/Brsrpar2"], ["https://tec.openplanner.team/stops/Bboufsm1", "https://tec.openplanner.team/stops/Bcsgres1"], ["https://tec.openplanner.team/stops/Ccogrha2", "https://tec.openplanner.team/stops/Cpclibe4"], ["https://tec.openplanner.team/stops/Bblabos1", "https://tec.openplanner.team/stops/Bblasmo1"], ["https://tec.openplanner.team/stops/N564aca", "https://tec.openplanner.team/stops/N564ada"], ["https://tec.openplanner.team/stops/Ladgron2", "https://tec.openplanner.team/stops/LClsacr2"], ["https://tec.openplanner.team/stops/Crccamp2", "https://tec.openplanner.team/stops/Crcplac4"], ["https://tec.openplanner.team/stops/N535asb", "https://tec.openplanner.team/stops/N538aza"], ["https://tec.openplanner.team/stops/H1gh152b", "https://tec.openplanner.team/stops/H1gh365a"], ["https://tec.openplanner.team/stops/LBNauto1", "https://tec.openplanner.team/stops/LBNauto2"], ["https://tec.openplanner.team/stops/LTrmaro1", "https://tec.openplanner.team/stops/LTrmaro2"], ["https://tec.openplanner.team/stops/N504acb", "https://tec.openplanner.team/stops/N511aha"], ["https://tec.openplanner.team/stops/X661apa", "https://tec.openplanner.team/stops/X661aqa"], ["https://tec.openplanner.team/stops/Bbsimpl1", "https://tec.openplanner.team/stops/Bbsimpl2"], ["https://tec.openplanner.team/stops/H1ht133a", "https://tec.openplanner.team/stops/H1te180a"], ["https://tec.openplanner.team/stops/Bwategl2", "https://tec.openplanner.team/stops/Bwatle31"], ["https://tec.openplanner.team/stops/X636axb", "https://tec.openplanner.team/stops/X636bbb"], ["https://tec.openplanner.team/stops/LGlcarr1", "https://tec.openplanner.team/stops/LHZcime2"], ["https://tec.openplanner.team/stops/Cmlfstt1", "https://tec.openplanner.team/stops/Cmlfstt2"], ["https://tec.openplanner.team/stops/N534bwa", "https://tec.openplanner.team/stops/N534bwb"], ["https://tec.openplanner.team/stops/Bbgepau2", "https://tec.openplanner.team/stops/Bwavlep2"], ["https://tec.openplanner.team/stops/N343aab", "https://tec.openplanner.team/stops/N343aba"], ["https://tec.openplanner.team/stops/LESpaix1", "https://tec.openplanner.team/stops/LESslmo2"], ["https://tec.openplanner.team/stops/LMAgdfa1", "https://tec.openplanner.team/stops/LMApl--1"], ["https://tec.openplanner.team/stops/N244apb", "https://tec.openplanner.team/stops/N244ava"], ["https://tec.openplanner.team/stops/H1bi100a", "https://tec.openplanner.team/stops/H1sa113a"], ["https://tec.openplanner.team/stops/N145acb", "https://tec.openplanner.team/stops/N145aea"], ["https://tec.openplanner.team/stops/Berncim2", "https://tec.openplanner.team/stops/Berngrt2"], ["https://tec.openplanner.team/stops/H1ms275b", "https://tec.openplanner.team/stops/H1ms310b"], ["https://tec.openplanner.team/stops/Bllnfla1", "https://tec.openplanner.team/stops/Bwavvpr1"], ["https://tec.openplanner.team/stops/Lagsauh1", "https://tec.openplanner.team/stops/Lagtenn2"], ["https://tec.openplanner.team/stops/N212ada", "https://tec.openplanner.team/stops/N212adb"], ["https://tec.openplanner.team/stops/Bchgbel2", "https://tec.openplanner.team/stops/Bgisman2"], ["https://tec.openplanner.team/stops/H4mv195a", "https://tec.openplanner.team/stops/H4mv195b"], ["https://tec.openplanner.team/stops/Lpeeg--2", "https://tec.openplanner.team/stops/Lpevesd2"], ["https://tec.openplanner.team/stops/Csoforr1", "https://tec.openplanner.team/stops/Csoforr2"], ["https://tec.openplanner.team/stops/LOTsav-1", "https://tec.openplanner.team/stops/LTowijk1"], ["https://tec.openplanner.team/stops/H4we138a", "https://tec.openplanner.team/stops/H4we138b"], ["https://tec.openplanner.team/stops/LHMsipp1", "https://tec.openplanner.team/stops/LMNcite2"], ["https://tec.openplanner.team/stops/Binclib2", "https://tec.openplanner.team/stops/Bopprju1"], ["https://tec.openplanner.team/stops/H4ff117b", "https://tec.openplanner.team/stops/H4mb138b"], ["https://tec.openplanner.team/stops/Csoforc1", "https://tec.openplanner.team/stops/Csoforc2"], ["https://tec.openplanner.team/stops/H4ka192a", "https://tec.openplanner.team/stops/H4ka192b"], ["https://tec.openplanner.team/stops/Craferr2", "https://tec.openplanner.team/stops/Crajasm4"], ["https://tec.openplanner.team/stops/N501hzb", "https://tec.openplanner.team/stops/N501ipb"], ["https://tec.openplanner.team/stops/H4ag104b", "https://tec.openplanner.team/stops/H4cl114a"], ["https://tec.openplanner.team/stops/N229aea", "https://tec.openplanner.team/stops/N540aqa"], ["https://tec.openplanner.team/stops/X614awb", "https://tec.openplanner.team/stops/X614axa"], ["https://tec.openplanner.team/stops/LBegare2", "https://tec.openplanner.team/stops/LWHmath1"], ["https://tec.openplanner.team/stops/Llgamer2", "https://tec.openplanner.team/stops/Llgamer3"], ["https://tec.openplanner.team/stops/H4ln129a", "https://tec.openplanner.team/stops/H4ne135a"], ["https://tec.openplanner.team/stops/H1hr116b", "https://tec.openplanner.team/stops/H3st119a"], ["https://tec.openplanner.team/stops/X607agb", "https://tec.openplanner.team/stops/X607aja"], ["https://tec.openplanner.team/stops/Lloross1", "https://tec.openplanner.team/stops/Lloross2"], ["https://tec.openplanner.team/stops/X666ada", "https://tec.openplanner.team/stops/X666aeb"], ["https://tec.openplanner.team/stops/LFIinse1", "https://tec.openplanner.team/stops/LMYroin2"], ["https://tec.openplanner.team/stops/H2sv219b", "https://tec.openplanner.team/stops/H2tr246a"], ["https://tec.openplanner.team/stops/N509axa", "https://tec.openplanner.team/stops/N511afb"], ["https://tec.openplanner.team/stops/Lmnhorl3", "https://tec.openplanner.team/stops/Lvewall2"], ["https://tec.openplanner.team/stops/H1gg114b", "https://tec.openplanner.team/stops/H1gg117a"], ["https://tec.openplanner.team/stops/N116acb", "https://tec.openplanner.team/stops/N116ada"], ["https://tec.openplanner.team/stops/X829aca", "https://tec.openplanner.team/stops/X829adb"], ["https://tec.openplanner.team/stops/LLUdeig1", "https://tec.openplanner.team/stops/LLUdeig2"], ["https://tec.openplanner.team/stops/X727aab", "https://tec.openplanner.team/stops/X727aga"], ["https://tec.openplanner.team/stops/N501lfb", "https://tec.openplanner.team/stops/N501lmb"], ["https://tec.openplanner.team/stops/H4do106b", "https://tec.openplanner.team/stops/H4do203a"], ["https://tec.openplanner.team/stops/Lgrdeni1", "https://tec.openplanner.team/stops/Lgrside2"], ["https://tec.openplanner.team/stops/Bblagar8", "https://tec.openplanner.team/stops/Bblapje2"], ["https://tec.openplanner.team/stops/Bblamp5", "https://tec.openplanner.team/stops/Bwatcli1"], ["https://tec.openplanner.team/stops/LVIcarm4", "https://tec.openplanner.team/stops/LVIdeva2"], ["https://tec.openplanner.team/stops/Cwfronc1", "https://tec.openplanner.team/stops/Cwfronc2"], ["https://tec.openplanner.team/stops/X601bla", "https://tec.openplanner.team/stops/X601blb"], ["https://tec.openplanner.team/stops/X601aga", "https://tec.openplanner.team/stops/X601cbb"], ["https://tec.openplanner.team/stops/Bblaccm1", "https://tec.openplanner.team/stops/Bblamer1"], ["https://tec.openplanner.team/stops/LhSbruc1", "https://tec.openplanner.team/stops/LhSbruc2"], ["https://tec.openplanner.team/stops/Bwavdmo4", "https://tec.openplanner.team/stops/Bwavlca2"], ["https://tec.openplanner.team/stops/LTResse1", "https://tec.openplanner.team/stops/LTRlonh2"], ["https://tec.openplanner.team/stops/Beclpma2", "https://tec.openplanner.team/stops/H2ec105b"], ["https://tec.openplanner.team/stops/X640aab", "https://tec.openplanner.team/stops/X640acb"], ["https://tec.openplanner.team/stops/X896aeb", "https://tec.openplanner.team/stops/X993ajb"], ["https://tec.openplanner.team/stops/Lronamo2", "https://tec.openplanner.team/stops/Lrovand2"], ["https://tec.openplanner.team/stops/LWEbr511", "https://tec.openplanner.team/stops/LWEhang1"], ["https://tec.openplanner.team/stops/H1sy138a", "https://tec.openplanner.team/stops/H1sy147a"], ["https://tec.openplanner.team/stops/Bpersyn1", "https://tec.openplanner.team/stops/Btstw751"], ["https://tec.openplanner.team/stops/Btlbgla2", "https://tec.openplanner.team/stops/Btstcar1"], ["https://tec.openplanner.team/stops/LPohoeg1", "https://tec.openplanner.team/stops/LSPcomm1"], ["https://tec.openplanner.team/stops/Bhercsj1", "https://tec.openplanner.team/stops/Bpiehte1"], ["https://tec.openplanner.team/stops/X942abb", "https://tec.openplanner.team/stops/X942abe"], ["https://tec.openplanner.team/stops/Berngrt2", "https://tec.openplanner.team/stops/Bwsppos2"], ["https://tec.openplanner.team/stops/X822aca", "https://tec.openplanner.team/stops/X822apa"], ["https://tec.openplanner.team/stops/Csecoup1", "https://tec.openplanner.team/stops/Csepost1"], ["https://tec.openplanner.team/stops/N146aba", "https://tec.openplanner.team/stops/N146abb"], ["https://tec.openplanner.team/stops/LAnchat2", "https://tec.openplanner.team/stops/LMtcent2"], ["https://tec.openplanner.team/stops/Bpiejus1", "https://tec.openplanner.team/stops/Bpiejus2"], ["https://tec.openplanner.team/stops/H1mm121b", "https://tec.openplanner.team/stops/H1mm125a"], ["https://tec.openplanner.team/stops/H4ea130b", "https://tec.openplanner.team/stops/H4ea131b"], ["https://tec.openplanner.team/stops/Bbxlner1", "https://tec.openplanner.team/stops/Bbxlner2"], ["https://tec.openplanner.team/stops/Cchfran1", "https://tec.openplanner.team/stops/Cchfran2"], ["https://tec.openplanner.team/stops/N501ixc", "https://tec.openplanner.team/stops/N501jdb"], ["https://tec.openplanner.team/stops/X824ada", "https://tec.openplanner.team/stops/X824aea"], ["https://tec.openplanner.team/stops/H1do127a", "https://tec.openplanner.team/stops/H1do131d"], ["https://tec.openplanner.team/stops/LAUcarr2", "https://tec.openplanner.team/stops/LFdchau2"], ["https://tec.openplanner.team/stops/X664aja", "https://tec.openplanner.team/stops/X664aqb"], ["https://tec.openplanner.team/stops/H2gy101a", "https://tec.openplanner.team/stops/H2se115a"], ["https://tec.openplanner.team/stops/Cptchea1", "https://tec.openplanner.team/stops/Cptchea2"], ["https://tec.openplanner.team/stops/Cbufron1", "https://tec.openplanner.team/stops/Cfnegli1"], ["https://tec.openplanner.team/stops/Llgoutr2", "https://tec.openplanner.team/stops/Llgtcha2"], ["https://tec.openplanner.team/stops/LMOecsp1", "https://tec.openplanner.team/stops/LMOecsp3"], ["https://tec.openplanner.team/stops/LmUkape2", "https://tec.openplanner.team/stops/LrOkirc2"], ["https://tec.openplanner.team/stops/NC44acb", "https://tec.openplanner.team/stops/NC44adb"], ["https://tec.openplanner.team/stops/Bsomthi1", "https://tec.openplanner.team/stops/N584bna"], ["https://tec.openplanner.team/stops/N542aja", "https://tec.openplanner.team/stops/N578abb"], ["https://tec.openplanner.team/stops/N204aca", "https://tec.openplanner.team/stops/N204ada"], ["https://tec.openplanner.team/stops/H1hw125b", "https://tec.openplanner.team/stops/H1so135a"], ["https://tec.openplanner.team/stops/LPRmc--3", "https://tec.openplanner.team/stops/LPRvill1"], ["https://tec.openplanner.team/stops/LkEfrie2", "https://tec.openplanner.team/stops/LkEheyg1"], ["https://tec.openplanner.team/stops/LJAcham2", "https://tec.openplanner.team/stops/LJAsuri2"], ["https://tec.openplanner.team/stops/LThchar1", "https://tec.openplanner.team/stops/LThgare1"], ["https://tec.openplanner.team/stops/X998aab", "https://tec.openplanner.team/stops/X999ama"], ["https://tec.openplanner.team/stops/Cfcleco2", "https://tec.openplanner.team/stops/Cfcpcov2"], ["https://tec.openplanner.team/stops/Louetan2", "https://tec.openplanner.team/stops/Louwuid1"], ["https://tec.openplanner.team/stops/Bnivga31", "https://tec.openplanner.team/stops/Bnivga51"], ["https://tec.openplanner.team/stops/H4am100b", "https://tec.openplanner.team/stops/H4or115b"], ["https://tec.openplanner.team/stops/N127adb", "https://tec.openplanner.team/stops/N127aib"], ["https://tec.openplanner.team/stops/N501ica", "https://tec.openplanner.team/stops/N501icy"], ["https://tec.openplanner.team/stops/X898aia", "https://tec.openplanner.team/stops/X898aja"], ["https://tec.openplanner.team/stops/N121abb", "https://tec.openplanner.team/stops/N122ahb"], ["https://tec.openplanner.team/stops/H1hl124a", "https://tec.openplanner.team/stops/H1vs145a"], ["https://tec.openplanner.team/stops/LHueg--1", "https://tec.openplanner.team/stops/LMfpeni*"], ["https://tec.openplanner.team/stops/Lvegend2", "https://tec.openplanner.team/stops/Lve-isi2"], ["https://tec.openplanner.team/stops/Lbrfagn1", "https://tec.openplanner.team/stops/Lbrfagn2"], ["https://tec.openplanner.team/stops/LaAelis2", "https://tec.openplanner.team/stops/LaApost2"], ["https://tec.openplanner.team/stops/Lstpole1", "https://tec.openplanner.team/stops/Lstpole2"], ["https://tec.openplanner.team/stops/Ccobour2", "https://tec.openplanner.team/stops/Csochea2"], ["https://tec.openplanner.team/stops/H1hv133a", "https://tec.openplanner.team/stops/H1hv135b"], ["https://tec.openplanner.team/stops/N501bja", "https://tec.openplanner.team/stops/N501bsa"], ["https://tec.openplanner.team/stops/H1si151a", "https://tec.openplanner.team/stops/H1si163a"], ["https://tec.openplanner.team/stops/H2ml113a", "https://tec.openplanner.team/stops/H2mo122c"], ["https://tec.openplanner.team/stops/LWNcham1", "https://tec.openplanner.team/stops/LWNchar1"], ["https://tec.openplanner.team/stops/LrAneud1", "https://tec.openplanner.team/stops/LrAneue2"], ["https://tec.openplanner.team/stops/H5at107b", "https://tec.openplanner.team/stops/H5at134b"], ["https://tec.openplanner.team/stops/N231agb", "https://tec.openplanner.team/stops/N291abb"], ["https://tec.openplanner.team/stops/Llgnico1", "https://tec.openplanner.team/stops/Lsn184-2"], ["https://tec.openplanner.team/stops/H1bs112b", "https://tec.openplanner.team/stops/H1sb145b"], ["https://tec.openplanner.team/stops/Cmltemp3", "https://tec.openplanner.team/stops/Cmltomb2"], ["https://tec.openplanner.team/stops/N501gnb", "https://tec.openplanner.team/stops/N501hia"], ["https://tec.openplanner.team/stops/LBgbaga4", "https://tec.openplanner.team/stops/Lthfren1"], ["https://tec.openplanner.team/stops/H1em103b", "https://tec.openplanner.team/stops/H1em106a"], ["https://tec.openplanner.team/stops/LHUathe1", "https://tec.openplanner.team/stops/LHUresi3"], ["https://tec.openplanner.team/stops/LlgOPER1", "https://tec.openplanner.team/stops/LlgPTAV4"], ["https://tec.openplanner.team/stops/X604aab", "https://tec.openplanner.team/stops/X618aab"], ["https://tec.openplanner.team/stops/N501czb", "https://tec.openplanner.team/stops/N528agb"], ["https://tec.openplanner.team/stops/Bllncom1", "https://tec.openplanner.team/stops/Bwavtas3"], ["https://tec.openplanner.team/stops/H1he106b", "https://tec.openplanner.team/stops/H1he108b"], ["https://tec.openplanner.team/stops/X661ama", "https://tec.openplanner.team/stops/X661aoa"], ["https://tec.openplanner.team/stops/LCsraws2", "https://tec.openplanner.team/stops/LVBsevr1"], ["https://tec.openplanner.team/stops/Bsdapir2", "https://tec.openplanner.team/stops/Csdetan2"], ["https://tec.openplanner.team/stops/LFAbouc1", "https://tec.openplanner.team/stops/LFAtomb1"], ["https://tec.openplanner.team/stops/LMoelno1", "https://tec.openplanner.team/stops/LMomonc1"], ["https://tec.openplanner.team/stops/X623afa", "https://tec.openplanner.team/stops/X623agb"], ["https://tec.openplanner.team/stops/LPLarbo2", "https://tec.openplanner.team/stops/LPLstat2"], ["https://tec.openplanner.team/stops/H1ms930a", "https://tec.openplanner.team/stops/H1ms932a"], ["https://tec.openplanner.team/stops/X728aaa", "https://tec.openplanner.team/stops/X728aba"], ["https://tec.openplanner.team/stops/N501chc", "https://tec.openplanner.team/stops/N501chf"], ["https://tec.openplanner.team/stops/LeUhaas3", "https://tec.openplanner.team/stops/LeUstad2"], ["https://tec.openplanner.team/stops/H4gr110a", "https://tec.openplanner.team/stops/H4gr112b"], ["https://tec.openplanner.team/stops/H4rm109b", "https://tec.openplanner.team/stops/H4rm111b"], ["https://tec.openplanner.team/stops/Ctrrpla1", "https://tec.openplanner.team/stops/Ctrsema2"], ["https://tec.openplanner.team/stops/LmR90--1", "https://tec.openplanner.team/stops/LmRmuhl1"], ["https://tec.openplanner.team/stops/LFArela5", "https://tec.openplanner.team/stops/LWDchab1"], ["https://tec.openplanner.team/stops/Ccppn2", "https://tec.openplanner.team/stops/Ccpsecp2"], ["https://tec.openplanner.team/stops/LThchar2", "https://tec.openplanner.team/stops/LThsere1"], ["https://tec.openplanner.team/stops/N137ada", "https://tec.openplanner.team/stops/N155aec"], ["https://tec.openplanner.team/stops/Caccera1", "https://tec.openplanner.team/stops/Cacgare1"], ["https://tec.openplanner.team/stops/X639aoa", "https://tec.openplanner.team/stops/X639apa"], ["https://tec.openplanner.team/stops/H4bu109b", "https://tec.openplanner.team/stops/H5el105b"], ["https://tec.openplanner.team/stops/LHEches1", "https://tec.openplanner.team/stops/LHEches2"], ["https://tec.openplanner.team/stops/Brebcha1", "https://tec.openplanner.team/stops/Brebvic1"], ["https://tec.openplanner.team/stops/Llithon1", "https://tec.openplanner.team/stops/Llithon2"], ["https://tec.openplanner.team/stops/Ccypn1", "https://tec.openplanner.team/stops/Csregli2"], ["https://tec.openplanner.team/stops/Blindel5", "https://tec.openplanner.team/stops/Blineco1"], ["https://tec.openplanner.team/stops/Cgrchas1", "https://tec.openplanner.team/stops/N160ada"], ["https://tec.openplanner.team/stops/H4mb143c", "https://tec.openplanner.team/stops/H4mb143d"], ["https://tec.openplanner.team/stops/Bgliopp2", "https://tec.openplanner.team/stops/Bincbbo2"], ["https://tec.openplanner.team/stops/LBIfore1", "https://tec.openplanner.team/stops/Lghfore3"], ["https://tec.openplanner.team/stops/N270aga", "https://tec.openplanner.team/stops/N270agb"], ["https://tec.openplanner.team/stops/H4be100a", "https://tec.openplanner.team/stops/H4be111a"], ["https://tec.openplanner.team/stops/Lagsauh1", "https://tec.openplanner.team/stops/Lemmath2"], ["https://tec.openplanner.team/stops/Llgchat2", "https://tec.openplanner.team/stops/Llggcha4"], ["https://tec.openplanner.team/stops/X652aba", "https://tec.openplanner.team/stops/X652abb"], ["https://tec.openplanner.team/stops/X725aia", "https://tec.openplanner.team/stops/X725aka"], ["https://tec.openplanner.team/stops/Lsnbrac4", "https://tec.openplanner.team/stops/Lticime1"], ["https://tec.openplanner.team/stops/X651agb", "https://tec.openplanner.team/stops/X669aaa"], ["https://tec.openplanner.team/stops/H1ni315a", "https://tec.openplanner.team/stops/H1ni320a"], ["https://tec.openplanner.team/stops/Cmlgche1", "https://tec.openplanner.team/stops/Cmlgche2"], ["https://tec.openplanner.team/stops/LRtcarr1", "https://tec.openplanner.team/stops/LRteg--*"], ["https://tec.openplanner.team/stops/N351arb", "https://tec.openplanner.team/stops/N351asb"], ["https://tec.openplanner.team/stops/Cfrsour1", "https://tec.openplanner.team/stops/Cfrsour2"], ["https://tec.openplanner.team/stops/X757aaa", "https://tec.openplanner.team/stops/X757aab"], ["https://tec.openplanner.team/stops/X734abb", "https://tec.openplanner.team/stops/X734aca"], ["https://tec.openplanner.team/stops/X754aab", "https://tec.openplanner.team/stops/X779agb"], ["https://tec.openplanner.team/stops/Lsecris3", "https://tec.openplanner.team/stops/Lsevico2"], ["https://tec.openplanner.team/stops/Bnstpla2", "https://tec.openplanner.team/stops/H2na136b"], ["https://tec.openplanner.team/stops/LWDhous2", "https://tec.openplanner.team/stops/LWDsott4"], ["https://tec.openplanner.team/stops/Llgborn2", "https://tec.openplanner.team/stops/Llgec--1"], ["https://tec.openplanner.team/stops/LGlwarf1", "https://tec.openplanner.team/stops/LSBsere4"], ["https://tec.openplanner.team/stops/Llmbell2", "https://tec.openplanner.team/stops/Llmhalt2"], ["https://tec.openplanner.team/stops/Blkbbvh1", "https://tec.openplanner.team/stops/Blkbbvh2"], ["https://tec.openplanner.team/stops/H1bb116b", "https://tec.openplanner.team/stops/H1bo104a"], ["https://tec.openplanner.team/stops/H4ru238b", "https://tec.openplanner.team/stops/H4ru241a"], ["https://tec.openplanner.team/stops/LeIjoha1", "https://tec.openplanner.team/stops/LsHkreu4"], ["https://tec.openplanner.team/stops/Barcpre2", "https://tec.openplanner.team/stops/Bgzdgli1"], ["https://tec.openplanner.team/stops/LeSdorf1", "https://tec.openplanner.team/stops/LtH37c-1"], ["https://tec.openplanner.team/stops/H1pa108a", "https://tec.openplanner.team/stops/H1pa120b"], ["https://tec.openplanner.team/stops/N308anb", "https://tec.openplanner.team/stops/N308bjb"], ["https://tec.openplanner.team/stops/Bsjgegl1", "https://tec.openplanner.team/stops/Bsjgegl2"], ["https://tec.openplanner.team/stops/N261aaa", "https://tec.openplanner.team/stops/N261aga"], ["https://tec.openplanner.team/stops/Bhanath2", "https://tec.openplanner.team/stops/LHNland2"], ["https://tec.openplanner.team/stops/LHUgare*", "https://tec.openplanner.team/stops/LHUlebo1"], ["https://tec.openplanner.team/stops/X754apb", "https://tec.openplanner.team/stops/X754aqb"], ["https://tec.openplanner.team/stops/Lhrathe2", "https://tec.openplanner.team/stops/Lhrferr2"], ["https://tec.openplanner.team/stops/X823aab", "https://tec.openplanner.team/stops/X823aba"], ["https://tec.openplanner.team/stops/N551aeb", "https://tec.openplanner.team/stops/N551akb"], ["https://tec.openplanner.team/stops/Btlgast1", "https://tec.openplanner.team/stops/Btlgast2"], ["https://tec.openplanner.team/stops/N310adb", "https://tec.openplanner.team/stops/N313aaa"], ["https://tec.openplanner.team/stops/H4hx111b", "https://tec.openplanner.team/stops/H4hx115b"], ["https://tec.openplanner.team/stops/N151ajb", "https://tec.openplanner.team/stops/N151ajf"], ["https://tec.openplanner.team/stops/N122agb", "https://tec.openplanner.team/stops/N122aha"], ["https://tec.openplanner.team/stops/Bgnvfai1", "https://tec.openplanner.team/stops/Blhugar1"], ["https://tec.openplanner.team/stops/Cmosaba3", "https://tec.openplanner.team/stops/Cmosaba4"], ["https://tec.openplanner.team/stops/H4co148a", "https://tec.openplanner.team/stops/H4co148b"], ["https://tec.openplanner.team/stops/X723aba", "https://tec.openplanner.team/stops/X766aha"], ["https://tec.openplanner.team/stops/N351aga", "https://tec.openplanner.team/stops/N351agb"], ["https://tec.openplanner.team/stops/N549afb", "https://tec.openplanner.team/stops/N578aaa"], ["https://tec.openplanner.team/stops/H4ga153a", "https://tec.openplanner.team/stops/H4ga166a"], ["https://tec.openplanner.team/stops/Cgxprad2", "https://tec.openplanner.team/stops/Cgxprad3"], ["https://tec.openplanner.team/stops/H1sy137a", "https://tec.openplanner.team/stops/H1sy137c"], ["https://tec.openplanner.team/stops/H4mo150b", "https://tec.openplanner.team/stops/H4mo205b"], ["https://tec.openplanner.team/stops/Lrolecl2", "https://tec.openplanner.team/stops/Lronamo2"], ["https://tec.openplanner.team/stops/X224acb", "https://tec.openplanner.team/stops/X224aha"], ["https://tec.openplanner.team/stops/LwYkreu2", "https://tec.openplanner.team/stops/LwYsarl1"], ["https://tec.openplanner.team/stops/LAUmerc2", "https://tec.openplanner.team/stops/LRmmabr1"], ["https://tec.openplanner.team/stops/H1ms300a", "https://tec.openplanner.team/stops/H1ms314a"], ["https://tec.openplanner.team/stops/N501iey", "https://tec.openplanner.team/stops/N501iqa"], ["https://tec.openplanner.team/stops/N543aeb", "https://tec.openplanner.team/stops/N543apb"], ["https://tec.openplanner.team/stops/Bllncbr2", "https://tec.openplanner.team/stops/Bllnpeq1"], ["https://tec.openplanner.team/stops/Lemcarm1", "https://tec.openplanner.team/stops/Lemeg--2"], ["https://tec.openplanner.team/stops/N244aab", "https://tec.openplanner.team/stops/N244abc"], ["https://tec.openplanner.team/stops/H2ll172a", "https://tec.openplanner.team/stops/H2ll172b"], ["https://tec.openplanner.team/stops/X606abb", "https://tec.openplanner.team/stops/X620afb"], ["https://tec.openplanner.team/stops/LATcham*", "https://tec.openplanner.team/stops/LVNcoop1"], ["https://tec.openplanner.team/stops/Bbrlpar2", "https://tec.openplanner.team/stops/Bbrlvil2"], ["https://tec.openplanner.team/stops/H2gy103b", "https://tec.openplanner.team/stops/H2gy107a"], ["https://tec.openplanner.team/stops/N135aqa", "https://tec.openplanner.team/stops/N135ava"], ["https://tec.openplanner.team/stops/LLncime1", "https://tec.openplanner.team/stops/LPUalbe1"], ["https://tec.openplanner.team/stops/X840aba", "https://tec.openplanner.team/stops/X840acd"], ["https://tec.openplanner.team/stops/Lgrdefr4", "https://tec.openplanner.team/stops/Ljuetie1"], ["https://tec.openplanner.team/stops/Ccupetp2", "https://tec.openplanner.team/stops/Cpipost1"], ["https://tec.openplanner.team/stops/H4ty305a", "https://tec.openplanner.team/stops/H4ty357a"], ["https://tec.openplanner.team/stops/X804avb", "https://tec.openplanner.team/stops/X828aab"], ["https://tec.openplanner.team/stops/N212aeb", "https://tec.openplanner.team/stops/N212agb"], ["https://tec.openplanner.team/stops/H1gh157a", "https://tec.openplanner.team/stops/H1gh157b"], ["https://tec.openplanner.team/stops/X898aka", "https://tec.openplanner.team/stops/X898akb"], ["https://tec.openplanner.team/stops/X741ala", "https://tec.openplanner.team/stops/X741ana"], ["https://tec.openplanner.team/stops/Llglema2", "https://tec.openplanner.team/stops/Llgrome2"], ["https://tec.openplanner.team/stops/Lra4bra2", "https://tec.openplanner.team/stops/Lwakipe1"], ["https://tec.openplanner.team/stops/X923ada", "https://tec.openplanner.team/stops/X923adb"], ["https://tec.openplanner.team/stops/N244ara", "https://tec.openplanner.team/stops/N244asa"], ["https://tec.openplanner.team/stops/Lbrfune*", "https://tec.openplanner.team/stops/Lbrgrot1"], ["https://tec.openplanner.team/stops/Ljecocc1", "https://tec.openplanner.team/stops/Ljexhav3"], ["https://tec.openplanner.team/stops/H5at133b", "https://tec.openplanner.team/stops/H5at142a"], ["https://tec.openplanner.team/stops/X641acb", "https://tec.openplanner.team/stops/X641aea"], ["https://tec.openplanner.team/stops/LBkcare*", "https://tec.openplanner.team/stops/LBkcarr4"], ["https://tec.openplanner.team/stops/LAumari1", "https://tec.openplanner.team/stops/LAuvill1"], ["https://tec.openplanner.team/stops/LMNcite1", "https://tec.openplanner.team/stops/LMNjard2"], ["https://tec.openplanner.team/stops/Lourose1", "https://tec.openplanner.team/stops/Lourose5"], ["https://tec.openplanner.team/stops/LTyh24-1", "https://tec.openplanner.team/stops/LTyhall2"], ["https://tec.openplanner.team/stops/Cmlhaie2", "https://tec.openplanner.team/stops/Cmlhotv2"], ["https://tec.openplanner.team/stops/LAVdepr1", "https://tec.openplanner.team/stops/LCIsucr1"], ["https://tec.openplanner.team/stops/Lsechan1", "https://tec.openplanner.team/stops/Lsestap3"], ["https://tec.openplanner.team/stops/LSBjoli1", "https://tec.openplanner.team/stops/LSBjoli2"], ["https://tec.openplanner.team/stops/X764aea", "https://tec.openplanner.team/stops/X791abb"], ["https://tec.openplanner.team/stops/LBdcime1", "https://tec.openplanner.team/stops/LCpeg-*"], ["https://tec.openplanner.team/stops/H1bo100b", "https://tec.openplanner.team/stops/H1bo145a"], ["https://tec.openplanner.team/stops/N506aqa", "https://tec.openplanner.team/stops/N506bpb"], ["https://tec.openplanner.team/stops/Lvcfogu1", "https://tec.openplanner.team/stops/Lvcfogu6"], ["https://tec.openplanner.team/stops/N223aaa", "https://tec.openplanner.team/stops/X919ajb"], ["https://tec.openplanner.team/stops/Bmsgeco2", "https://tec.openplanner.team/stops/Bmsgstj2"], ["https://tec.openplanner.team/stops/LwYbruc1", "https://tec.openplanner.team/stops/LwYsour1"], ["https://tec.openplanner.team/stops/Cfrcoqu4", "https://tec.openplanner.team/stops/Cfrgivr1"], ["https://tec.openplanner.team/stops/X638ara", "https://tec.openplanner.team/stops/X652aja"], ["https://tec.openplanner.team/stops/LHFcaqu1", "https://tec.openplanner.team/stops/LHFec--1"], ["https://tec.openplanner.team/stops/H1fl136a", "https://tec.openplanner.team/stops/H1fl136b"], ["https://tec.openplanner.team/stops/LHTeg--2", "https://tec.openplanner.team/stops/LHTmoul1"], ["https://tec.openplanner.team/stops/Cmyedpa2", "https://tec.openplanner.team/stops/Cmymarb1"], ["https://tec.openplanner.team/stops/X601ccb", "https://tec.openplanner.team/stops/X602aha"], ["https://tec.openplanner.team/stops/Lcegeor2", "https://tec.openplanner.team/stops/Lcepass2"], ["https://tec.openplanner.team/stops/X923aoa", "https://tec.openplanner.team/stops/X923aob"], ["https://tec.openplanner.team/stops/Ltibell2", "https://tec.openplanner.team/stops/Ltiplat2"], ["https://tec.openplanner.team/stops/LSAchef1", "https://tec.openplanner.team/stops/LSAchef2"], ["https://tec.openplanner.team/stops/X661aoa", "https://tec.openplanner.team/stops/X839acb"], ["https://tec.openplanner.team/stops/N153adb", "https://tec.openplanner.team/stops/N154ada"], ["https://tec.openplanner.team/stops/Canterr1", "https://tec.openplanner.team/stops/Canterr2"], ["https://tec.openplanner.team/stops/X788abc", "https://tec.openplanner.team/stops/X788abd"], ["https://tec.openplanner.team/stops/H1wa144a", "https://tec.openplanner.team/stops/H1wa146a"], ["https://tec.openplanner.team/stops/Cvrfcho2", "https://tec.openplanner.team/stops/Cvrhaie2"], ["https://tec.openplanner.team/stops/X773aca", "https://tec.openplanner.team/stops/X911aoa"], ["https://tec.openplanner.team/stops/LToluik2", "https://tec.openplanner.team/stops/LTowijk2"], ["https://tec.openplanner.team/stops/Csbrago1", "https://tec.openplanner.team/stops/H1bi104a"], ["https://tec.openplanner.team/stops/N528agb", "https://tec.openplanner.team/stops/N528anb"], ["https://tec.openplanner.team/stops/Caibino2", "https://tec.openplanner.team/stops/N543cja"], ["https://tec.openplanner.team/stops/X877adb", "https://tec.openplanner.team/stops/X989afa"], ["https://tec.openplanner.team/stops/LrEmeil1", "https://tec.openplanner.team/stops/LrEochs2"], ["https://tec.openplanner.team/stops/N535ama", "https://tec.openplanner.team/stops/N535amd"], ["https://tec.openplanner.team/stops/H4ho121b", "https://tec.openplanner.team/stops/H4pl111a"], ["https://tec.openplanner.team/stops/X640aqb", "https://tec.openplanner.team/stops/X640arb"], ["https://tec.openplanner.team/stops/Bchgflo1", "https://tec.openplanner.team/stops/Blonegl1"], ["https://tec.openplanner.team/stops/H5at104a", "https://tec.openplanner.team/stops/H5at127a"], ["https://tec.openplanner.team/stops/Ccupomp1", "https://tec.openplanner.team/stops/Cpibois1"], ["https://tec.openplanner.team/stops/Lbocomm2", "https://tec.openplanner.team/stops/Lbotilf2"], ["https://tec.openplanner.team/stops/N211ahb", "https://tec.openplanner.team/stops/N211asa"], ["https://tec.openplanner.team/stops/Lcemalv2", "https://tec.openplanner.team/stops/Lcemeta2"], ["https://tec.openplanner.team/stops/H1hc150a", "https://tec.openplanner.team/stops/H4be146b"], ["https://tec.openplanner.team/stops/LPRecol1", "https://tec.openplanner.team/stops/LTRgare4"], ["https://tec.openplanner.team/stops/N580aga", "https://tec.openplanner.team/stops/N580agb"], ["https://tec.openplanner.team/stops/X611ada", "https://tec.openplanner.team/stops/X646abb"], ["https://tec.openplanner.team/stops/Cpccoss2", "https://tec.openplanner.team/stops/Cpccpas2"], ["https://tec.openplanner.team/stops/Bllncom1", "https://tec.openplanner.team/stops/Bllngar1"], ["https://tec.openplanner.team/stops/Lsweg--1", "https://tec.openplanner.team/stops/Lsweg--2"], ["https://tec.openplanner.team/stops/X609afb", "https://tec.openplanner.team/stops/X609ana"], ["https://tec.openplanner.team/stops/Cvpbifu1", "https://tec.openplanner.team/stops/Cvpsawe2"], ["https://tec.openplanner.team/stops/Lvochev1", "https://tec.openplanner.team/stops/Lvochev2"], ["https://tec.openplanner.team/stops/N580ada", "https://tec.openplanner.team/stops/N580adb"], ["https://tec.openplanner.team/stops/Bbldmun1", "https://tec.openplanner.team/stops/Bnetrec2"], ["https://tec.openplanner.team/stops/Cmygrbr4", "https://tec.openplanner.team/stops/Cmyrays2"], ["https://tec.openplanner.team/stops/H1bu138a", "https://tec.openplanner.team/stops/H1mm131a"], ["https://tec.openplanner.team/stops/N562bna", "https://tec.openplanner.team/stops/N562bnb"], ["https://tec.openplanner.team/stops/Bhptegl2", "https://tec.openplanner.team/stops/Bhptpla1"], ["https://tec.openplanner.team/stops/X949ada", "https://tec.openplanner.team/stops/X949adb"], ["https://tec.openplanner.team/stops/LBoegli2", "https://tec.openplanner.team/stops/X223aca"], ["https://tec.openplanner.team/stops/Bnivbng2", "https://tec.openplanner.team/stops/Bnivvco2"], ["https://tec.openplanner.team/stops/H1wg124a", "https://tec.openplanner.team/stops/H1wg131b"], ["https://tec.openplanner.team/stops/Cdaptca2", "https://tec.openplanner.team/stops/Cmafafe2"], ["https://tec.openplanner.team/stops/Lvomoul2", "https://tec.openplanner.team/stops/Lvopaqu1"], ["https://tec.openplanner.team/stops/H2mi122a", "https://tec.openplanner.team/stops/H2mi122b"], ["https://tec.openplanner.team/stops/H1an101a", "https://tec.openplanner.team/stops/H1bx104b"], ["https://tec.openplanner.team/stops/N211ana", "https://tec.openplanner.team/stops/N211baa"], ["https://tec.openplanner.team/stops/Loucham3", "https://tec.openplanner.team/stops/Louroos1"], ["https://tec.openplanner.team/stops/X982ayb", "https://tec.openplanner.team/stops/X982bwa"], ["https://tec.openplanner.team/stops/N501faa", "https://tec.openplanner.team/stops/N501fdb"], ["https://tec.openplanner.team/stops/LAYharz1", "https://tec.openplanner.team/stops/LHrprie1"], ["https://tec.openplanner.team/stops/Bnilspe4", "https://tec.openplanner.team/stops/Btsllib1"], ["https://tec.openplanner.team/stops/N120aba", "https://tec.openplanner.team/stops/N120afb"], ["https://tec.openplanner.team/stops/Lbocorn2", "https://tec.openplanner.team/stops/Louvivi2"], ["https://tec.openplanner.team/stops/H4hx118b", "https://tec.openplanner.team/stops/H4hx119a"], ["https://tec.openplanner.team/stops/LBrmeiz2", "https://tec.openplanner.team/stops/LFRfagn1"], ["https://tec.openplanner.team/stops/X640anb", "https://tec.openplanner.team/stops/X640aob"], ["https://tec.openplanner.team/stops/LWelogi1", "https://tec.openplanner.team/stops/LWelogi2"], ["https://tec.openplanner.team/stops/N525aeb", "https://tec.openplanner.team/stops/N525aib"], ["https://tec.openplanner.team/stops/NL72aba", "https://tec.openplanner.team/stops/NL72aea"], ["https://tec.openplanner.team/stops/N234adb", "https://tec.openplanner.team/stops/N242agb"], ["https://tec.openplanner.team/stops/LCHgele2", "https://tec.openplanner.team/stops/LCHrhou2"], ["https://tec.openplanner.team/stops/LMAgdfa2", "https://tec.openplanner.team/stops/LMAstei1"], ["https://tec.openplanner.team/stops/Bincbbo3", "https://tec.openplanner.team/stops/Bincbbo4"], ["https://tec.openplanner.team/stops/Lhrbell1", "https://tec.openplanner.team/stops/Lhrbell2"], ["https://tec.openplanner.team/stops/N501eeb", "https://tec.openplanner.team/stops/N501kic"], ["https://tec.openplanner.team/stops/H1cv101a", "https://tec.openplanner.team/stops/H5me106a"], ["https://tec.openplanner.team/stops/X747aca", "https://tec.openplanner.team/stops/X754akb"], ["https://tec.openplanner.team/stops/X982agb", "https://tec.openplanner.team/stops/X982ahb"], ["https://tec.openplanner.team/stops/H1ho122d", "https://tec.openplanner.team/stops/H1ho136a"], ["https://tec.openplanner.team/stops/Brebgar1", "https://tec.openplanner.team/stops/Brebraf2"], ["https://tec.openplanner.team/stops/H2mo119b", "https://tec.openplanner.team/stops/H2mo123b"], ["https://tec.openplanner.team/stops/X346afa", "https://tec.openplanner.team/stops/X346ala"], ["https://tec.openplanner.team/stops/X750bea", "https://tec.openplanner.team/stops/X750blb"], ["https://tec.openplanner.team/stops/X836aea", "https://tec.openplanner.team/stops/X836aia"], ["https://tec.openplanner.team/stops/X601cia", "https://tec.openplanner.team/stops/X601cla"], ["https://tec.openplanner.team/stops/LBPrueg2", "https://tec.openplanner.team/stops/LSLhale1"], ["https://tec.openplanner.team/stops/X624aeb", "https://tec.openplanner.team/stops/X624afa"], ["https://tec.openplanner.team/stops/Brsgpbo1", "https://tec.openplanner.team/stops/Brsgpbo2"], ["https://tec.openplanner.team/stops/LAWeg--2", "https://tec.openplanner.team/stops/LAWmc--1"], ["https://tec.openplanner.team/stops/LHTbeau1", "https://tec.openplanner.team/stops/LHTbeau2"], ["https://tec.openplanner.team/stops/Lseptsa1", "https://tec.openplanner.team/stops/Lserena2"], ["https://tec.openplanner.team/stops/Bchgflo1", "https://tec.openplanner.team/stops/Btslpic5"], ["https://tec.openplanner.team/stops/Lrcastr3", "https://tec.openplanner.team/stops/Lrcastr4"], ["https://tec.openplanner.team/stops/X901bja", "https://tec.openplanner.team/stops/X901bka"], ["https://tec.openplanner.team/stops/X804bsa", "https://tec.openplanner.team/stops/X804bua"], ["https://tec.openplanner.team/stops/LFtcarr1", "https://tec.openplanner.team/stops/LXofont1"], ["https://tec.openplanner.team/stops/Lveleje2", "https://tec.openplanner.team/stops/Lveoctr3"], ["https://tec.openplanner.team/stops/H4mo190a", "https://tec.openplanner.team/stops/H4mo207b"], ["https://tec.openplanner.team/stops/X650afe", "https://tec.openplanner.team/stops/X650aga"], ["https://tec.openplanner.team/stops/H4an104b", "https://tec.openplanner.team/stops/H4an111c"], ["https://tec.openplanner.team/stops/LCPcomb1", "https://tec.openplanner.team/stops/LCPlebl1"], ["https://tec.openplanner.team/stops/Lbococh2", "https://tec.openplanner.team/stops/Lsechev2"], ["https://tec.openplanner.team/stops/X919aca", "https://tec.openplanner.team/stops/X921ada"], ["https://tec.openplanner.team/stops/LVLsabl2", "https://tec.openplanner.team/stops/LVLsabl4"], ["https://tec.openplanner.team/stops/N101aea", "https://tec.openplanner.team/stops/N101anb"], ["https://tec.openplanner.team/stops/N202aba", "https://tec.openplanner.team/stops/N202aeb"], ["https://tec.openplanner.team/stops/Bhenpla2", "https://tec.openplanner.team/stops/Bhenpln1"], ["https://tec.openplanner.team/stops/H4ir165a", "https://tec.openplanner.team/stops/H5at119a"], ["https://tec.openplanner.team/stops/LcRkirc2", "https://tec.openplanner.team/stops/LcRmich1"], ["https://tec.openplanner.team/stops/H4ca122a", "https://tec.openplanner.team/stops/H4wi162a"], ["https://tec.openplanner.team/stops/N540ama", "https://tec.openplanner.team/stops/N540amb"], ["https://tec.openplanner.team/stops/H2ca104a", "https://tec.openplanner.team/stops/H2mo127c"], ["https://tec.openplanner.team/stops/Lalbout1", "https://tec.openplanner.team/stops/Lalparc1"], ["https://tec.openplanner.team/stops/Bovetdo2", "https://tec.openplanner.team/stops/Brsregl2"], ["https://tec.openplanner.team/stops/H2ma206b", "https://tec.openplanner.team/stops/H2ma208a"], ["https://tec.openplanner.team/stops/Bbstchn2", "https://tec.openplanner.team/stops/Csdetan2"], ["https://tec.openplanner.team/stops/X805acb", "https://tec.openplanner.team/stops/X805aja"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LCxreno1"], ["https://tec.openplanner.team/stops/H1bb113a", "https://tec.openplanner.team/stops/H1bb113b"], ["https://tec.openplanner.team/stops/X941aha", "https://tec.openplanner.team/stops/X941ahb"], ["https://tec.openplanner.team/stops/LJEerno1", "https://tec.openplanner.team/stops/LJEloum1"], ["https://tec.openplanner.team/stops/H1cu112a", "https://tec.openplanner.team/stops/H1cu112b"], ["https://tec.openplanner.team/stops/Btancnd1", "https://tec.openplanner.team/stops/Btancnd2"], ["https://tec.openplanner.team/stops/N576aea", "https://tec.openplanner.team/stops/N576akd"], ["https://tec.openplanner.team/stops/X637aga", "https://tec.openplanner.team/stops/X637agb"], ["https://tec.openplanner.team/stops/Cmtneuv2", "https://tec.openplanner.team/stops/Cmtpaix1"], ["https://tec.openplanner.team/stops/Clgmaco2", "https://tec.openplanner.team/stops/Ctisar2"], ["https://tec.openplanner.team/stops/X601cgb", "https://tec.openplanner.team/stops/X601cma"], ["https://tec.openplanner.team/stops/N308asa", "https://tec.openplanner.team/stops/N308baa"], ["https://tec.openplanner.team/stops/X629aab", "https://tec.openplanner.team/stops/X629acb"], ["https://tec.openplanner.team/stops/H4ty341a", "https://tec.openplanner.team/stops/H4ty356d"], ["https://tec.openplanner.team/stops/Lrcastr1", "https://tec.openplanner.team/stops/Lrcastr3"], ["https://tec.openplanner.team/stops/H4ca120a", "https://tec.openplanner.team/stops/H4ca122a"], ["https://tec.openplanner.team/stops/LEMfort2", "https://tec.openplanner.team/stops/LEMgren*"], ["https://tec.openplanner.team/stops/Bquebut1", "https://tec.openplanner.team/stops/Bquesta1"], ["https://tec.openplanner.team/stops/N241aaa", "https://tec.openplanner.team/stops/N241aab"], ["https://tec.openplanner.team/stops/X725bda", "https://tec.openplanner.team/stops/X771ala"], ["https://tec.openplanner.team/stops/Bmlnpab1", "https://tec.openplanner.team/stops/Bptblma2"], ["https://tec.openplanner.team/stops/Bflegar5", "https://tec.openplanner.team/stops/Cflsncb2"], ["https://tec.openplanner.team/stops/Llieg--4", "https://tec.openplanner.team/stops/Lvochev1"], ["https://tec.openplanner.team/stops/LBzec--1", "https://tec.openplanner.team/stops/LBzec--2"], ["https://tec.openplanner.team/stops/Lagindu1", "https://tec.openplanner.team/stops/Lagindu2"], ["https://tec.openplanner.team/stops/H4og206a", "https://tec.openplanner.team/stops/H4og206b"], ["https://tec.openplanner.team/stops/X919ada", "https://tec.openplanner.team/stops/X979aja"], ["https://tec.openplanner.team/stops/Cci28ju1", "https://tec.openplanner.team/stops/Cciferr2"], ["https://tec.openplanner.team/stops/LeYwald2", "https://tec.openplanner.team/stops/LkOgren2"], ["https://tec.openplanner.team/stops/X657aba", "https://tec.openplanner.team/stops/X742aga"], ["https://tec.openplanner.team/stops/H1ol143a", "https://tec.openplanner.team/stops/H1ol143b"], ["https://tec.openplanner.team/stops/H2bh105a", "https://tec.openplanner.team/stops/H2bh105b"], ["https://tec.openplanner.team/stops/Cbfdufa1", "https://tec.openplanner.team/stops/Ccifies2"], ["https://tec.openplanner.team/stops/LeYberl2", "https://tec.openplanner.team/stops/LlCland1"], ["https://tec.openplanner.team/stops/H5el104a", "https://tec.openplanner.team/stops/H5el116a"], ["https://tec.openplanner.team/stops/X307aba", "https://tec.openplanner.team/stops/X307abb"], ["https://tec.openplanner.team/stops/X754aka", "https://tec.openplanner.team/stops/X754azb"], ["https://tec.openplanner.team/stops/Cflchel1", "https://tec.openplanner.team/stops/Cflchel6"], ["https://tec.openplanner.team/stops/X806aia", "https://tec.openplanner.team/stops/X806ajb"], ["https://tec.openplanner.team/stops/LBSgeer2", "https://tec.openplanner.team/stops/LBSpail3"], ["https://tec.openplanner.team/stops/N167aab", "https://tec.openplanner.team/stops/N167add"], ["https://tec.openplanner.team/stops/LLRbleh2", "https://tec.openplanner.team/stops/LVPbleh2"], ["https://tec.openplanner.team/stops/H4oe149a", "https://tec.openplanner.team/stops/H4oe149b"], ["https://tec.openplanner.team/stops/Bllnchv2", "https://tec.openplanner.team/stops/Bottcva2"], ["https://tec.openplanner.team/stops/N222aaa", "https://tec.openplanner.team/stops/N222aab"], ["https://tec.openplanner.team/stops/Lsecris1", "https://tec.openplanner.team/stops/Lsecris3"], ["https://tec.openplanner.team/stops/H1do110a", "https://tec.openplanner.team/stops/H1do113a"], ["https://tec.openplanner.team/stops/N506aka", "https://tec.openplanner.team/stops/N506ama"], ["https://tec.openplanner.team/stops/LLg9---2", "https://tec.openplanner.team/stops/LSMfroi1"], ["https://tec.openplanner.team/stops/LFehaut1", "https://tec.openplanner.team/stops/LTrmaro2"], ["https://tec.openplanner.team/stops/H5is168b", "https://tec.openplanner.team/stops/H5is171a"], ["https://tec.openplanner.team/stops/Cfocobe2", "https://tec.openplanner.team/stops/Cptdubo2"], ["https://tec.openplanner.team/stops/X343aic", "https://tec.openplanner.team/stops/X345aca"], ["https://tec.openplanner.team/stops/X684aba", "https://tec.openplanner.team/stops/X687aba"], ["https://tec.openplanner.team/stops/NB33aka", "https://tec.openplanner.team/stops/NB59akb"], ["https://tec.openplanner.team/stops/N521ala", "https://tec.openplanner.team/stops/N527agb"], ["https://tec.openplanner.team/stops/LLrmc--4", "https://tec.openplanner.team/stops/LLrvill1"], ["https://tec.openplanner.team/stops/H1ch132a", "https://tec.openplanner.team/stops/H5at130a"], ["https://tec.openplanner.team/stops/X750aea", "https://tec.openplanner.team/stops/X780aga"], ["https://tec.openplanner.team/stops/H1cv101b", "https://tec.openplanner.team/stops/H1cv103a"], ["https://tec.openplanner.team/stops/X640aob", "https://tec.openplanner.team/stops/X641aia"], ["https://tec.openplanner.team/stops/N390adb", "https://tec.openplanner.team/stops/N390aeb"], ["https://tec.openplanner.team/stops/H4co108b", "https://tec.openplanner.team/stops/H4co133b"], ["https://tec.openplanner.team/stops/H4co107a", "https://tec.openplanner.team/stops/H4co144b"], ["https://tec.openplanner.team/stops/X659aqa", "https://tec.openplanner.team/stops/X659ara"], ["https://tec.openplanner.team/stops/LlgLAMB3", "https://tec.openplanner.team/stops/LlgR-F1*"], ["https://tec.openplanner.team/stops/H5bl121b", "https://tec.openplanner.team/stops/H5bl141a"], ["https://tec.openplanner.team/stops/LGmcite1", "https://tec.openplanner.team/stops/LGmhumb1"], ["https://tec.openplanner.team/stops/X608aeb", "https://tec.openplanner.team/stops/X608ava"], ["https://tec.openplanner.team/stops/Caigibe1", "https://tec.openplanner.team/stops/NC11ama"], ["https://tec.openplanner.team/stops/Baudstr1", "https://tec.openplanner.team/stops/Baudtri2"], ["https://tec.openplanner.team/stops/LoDcorn2", "https://tec.openplanner.team/stops/LoDkoll2"], ["https://tec.openplanner.team/stops/Bllnrod3", "https://tec.openplanner.team/stops/Bllnrod4"], ["https://tec.openplanner.team/stops/LMYlieg1", "https://tec.openplanner.team/stops/LMYlieg2"], ["https://tec.openplanner.team/stops/Ldidefo1", "https://tec.openplanner.team/stops/Ldimeun1"], ["https://tec.openplanner.team/stops/LLrpape1", "https://tec.openplanner.team/stops/LLrpape3"], ["https://tec.openplanner.team/stops/N549aaa", "https://tec.openplanner.team/stops/N549aab"], ["https://tec.openplanner.team/stops/LWApr%C3%A9s4", "https://tec.openplanner.team/stops/LWApt--2"], ["https://tec.openplanner.team/stops/Bmalsmc1", "https://tec.openplanner.team/stops/Bmalsmc2"], ["https://tec.openplanner.team/stops/LeUjuge1", "https://tec.openplanner.team/stops/LeUstad1"], ["https://tec.openplanner.team/stops/LSHneuv2", "https://tec.openplanner.team/stops/LSHries1"], ["https://tec.openplanner.team/stops/X979aaa", "https://tec.openplanner.team/stops/X979aab"], ["https://tec.openplanner.team/stops/Ctilobb2", "https://tec.openplanner.team/stops/Ctisar2"], ["https://tec.openplanner.team/stops/Bbchboi1", "https://tec.openplanner.team/stops/Bbchtry1"], ["https://tec.openplanner.team/stops/N531akb", "https://tec.openplanner.team/stops/N531ata"], ["https://tec.openplanner.team/stops/LOV48--1", "https://tec.openplanner.team/stops/LOV48--2"], ["https://tec.openplanner.team/stops/X870aja", "https://tec.openplanner.team/stops/X870ajb"], ["https://tec.openplanner.team/stops/Cauptsa2", "https://tec.openplanner.team/stops/Ctapn1"], ["https://tec.openplanner.team/stops/X953afa", "https://tec.openplanner.team/stops/X954afa"], ["https://tec.openplanner.team/stops/Lbomidi1", "https://tec.openplanner.team/stops/Lbotilf1"], ["https://tec.openplanner.team/stops/Candett1", "https://tec.openplanner.team/stops/Canvane1"], ["https://tec.openplanner.team/stops/Cmomoul3", "https://tec.openplanner.team/stops/Cmomoul6"], ["https://tec.openplanner.team/stops/H2ch112a", "https://tec.openplanner.team/stops/H2ch123b"], ["https://tec.openplanner.team/stops/Cthdeco1", "https://tec.openplanner.team/stops/Cthdeco2"], ["https://tec.openplanner.team/stops/Cbwdoua2", "https://tec.openplanner.team/stops/Cbwegl2"], ["https://tec.openplanner.team/stops/LMAbruy1", "https://tec.openplanner.team/stops/LMAchod1"], ["https://tec.openplanner.team/stops/LBSchar3", "https://tec.openplanner.team/stops/LBSkann1"], ["https://tec.openplanner.team/stops/Cgpchen1", "https://tec.openplanner.team/stops/H2gy108a"], ["https://tec.openplanner.team/stops/LBlchin2", "https://tec.openplanner.team/stops/LBlhaut2"], ["https://tec.openplanner.team/stops/Cgygazo3", "https://tec.openplanner.team/stops/Cgygazo5"], ["https://tec.openplanner.team/stops/LOTawan2", "https://tec.openplanner.team/stops/LOTcloe2"], ["https://tec.openplanner.team/stops/LLbmalm2", "https://tec.openplanner.team/stops/LrErauw2"], ["https://tec.openplanner.team/stops/Bllnald1", "https://tec.openplanner.team/stops/Bllnpaf2"], ["https://tec.openplanner.team/stops/LHNcoll1", "https://tec.openplanner.team/stops/LHNcoll2"], ["https://tec.openplanner.team/stops/N544ada", "https://tec.openplanner.team/stops/N544aea"], ["https://tec.openplanner.team/stops/N206acb", "https://tec.openplanner.team/stops/N220aab"], ["https://tec.openplanner.team/stops/H1te190a", "https://tec.openplanner.team/stops/H1vt192b"], ["https://tec.openplanner.team/stops/NH01ala", "https://tec.openplanner.team/stops/NH01apb"], ["https://tec.openplanner.team/stops/N508aba", "https://tec.openplanner.team/stops/N508aea"], ["https://tec.openplanner.team/stops/X801caa", "https://tec.openplanner.team/stops/X801cma"], ["https://tec.openplanner.team/stops/LREheyd1", "https://tec.openplanner.team/stops/LREprea2"], ["https://tec.openplanner.team/stops/X811ana", "https://tec.openplanner.team/stops/X811aoa"], ["https://tec.openplanner.team/stops/H1ne139b", "https://tec.openplanner.team/stops/H1ne148a"], ["https://tec.openplanner.team/stops/X765aaa", "https://tec.openplanner.team/stops/X765aba"], ["https://tec.openplanner.team/stops/LMfpral2", "https://tec.openplanner.team/stops/NL57alb"], ["https://tec.openplanner.team/stops/X999aaa", "https://tec.openplanner.team/stops/X999aab"], ["https://tec.openplanner.team/stops/H1je223a", "https://tec.openplanner.team/stops/H1je223b"], ["https://tec.openplanner.team/stops/Bitregl2", "https://tec.openplanner.team/stops/Bitrpsr2"], ["https://tec.openplanner.team/stops/X809aab", "https://tec.openplanner.team/stops/X812bea"], ["https://tec.openplanner.team/stops/N554aga", "https://tec.openplanner.team/stops/N554agb"], ["https://tec.openplanner.team/stops/N201agb", "https://tec.openplanner.team/stops/N201ahb"], ["https://tec.openplanner.team/stops/X747aeb", "https://tec.openplanner.team/stops/X747afb"], ["https://tec.openplanner.team/stops/Bptrlux1", "https://tec.openplanner.team/stops/Bptrmar1"], ["https://tec.openplanner.team/stops/H3so163a", "https://tec.openplanner.team/stops/H3so166d"], ["https://tec.openplanner.team/stops/Llgterr1", "https://tec.openplanner.team/stops/Llgvero4"], ["https://tec.openplanner.team/stops/H1cu115a", "https://tec.openplanner.team/stops/H1cu115b"], ["https://tec.openplanner.team/stops/Ljubonf2", "https://tec.openplanner.team/stops/Ljudeme4"], ["https://tec.openplanner.team/stops/X659aqa", "https://tec.openplanner.team/stops/X741akb"], ["https://tec.openplanner.team/stops/LOVchen2", "https://tec.openplanner.team/stops/LRObarr2"], ["https://tec.openplanner.team/stops/Lfhhaso2", "https://tec.openplanner.team/stops/Lfhweri2"], ["https://tec.openplanner.team/stops/Bottbru2", "https://tec.openplanner.team/stops/Bottcva2"], ["https://tec.openplanner.team/stops/Bbuzcom2", "https://tec.openplanner.team/stops/Bbuztai2"], ["https://tec.openplanner.team/stops/X601bbc", "https://tec.openplanner.team/stops/X601bbf"], ["https://tec.openplanner.team/stops/H4mo167a", "https://tec.openplanner.team/stops/H4mo171a"], ["https://tec.openplanner.team/stops/Bthscbl1", "https://tec.openplanner.team/stops/Bthsvil1"], ["https://tec.openplanner.team/stops/Bwavlav1", "https://tec.openplanner.team/stops/Bwavzno2"], ["https://tec.openplanner.team/stops/N301afa", "https://tec.openplanner.team/stops/N301afc"], ["https://tec.openplanner.team/stops/Chhbiet1", "https://tec.openplanner.team/stops/Chhplbe1"], ["https://tec.openplanner.team/stops/Bcrnnpl1", "https://tec.openplanner.team/stops/Bcrnvic1"], ["https://tec.openplanner.team/stops/LNCdoma4", "https://tec.openplanner.team/stops/LNClila1"], ["https://tec.openplanner.team/stops/Bnivrec1", "https://tec.openplanner.team/stops/Bnivsci2"], ["https://tec.openplanner.team/stops/X369aaa", "https://tec.openplanner.team/stops/X369aba"], ["https://tec.openplanner.team/stops/Bsoihci2", "https://tec.openplanner.team/stops/H3so170b"], ["https://tec.openplanner.team/stops/H2ma202a", "https://tec.openplanner.team/stops/H2ma205a"], ["https://tec.openplanner.team/stops/X601aea", "https://tec.openplanner.team/stops/X601aeb"], ["https://tec.openplanner.team/stops/LSInd--2", "https://tec.openplanner.team/stops/LTEzinn2"], ["https://tec.openplanner.team/stops/Lvcsapi1", "https://tec.openplanner.team/stops/Lvcsapi2"], ["https://tec.openplanner.team/stops/Lqbeg--2", "https://tec.openplanner.team/stops/LSAtrih1"], ["https://tec.openplanner.team/stops/Buccham2", "https://tec.openplanner.team/stops/Bwbfhip2"], ["https://tec.openplanner.team/stops/LHEcruc4", "https://tec.openplanner.team/stops/LHEgare1"], ["https://tec.openplanner.team/stops/X879afb", "https://tec.openplanner.team/stops/X879aga"], ["https://tec.openplanner.team/stops/N501hva", "https://tec.openplanner.team/stops/N501jab"], ["https://tec.openplanner.team/stops/Bhptegl1", "https://tec.openplanner.team/stops/H2ec102a"], ["https://tec.openplanner.team/stops/NL76bca", "https://tec.openplanner.team/stops/NL76bcb"], ["https://tec.openplanner.team/stops/LXoharz3", "https://tec.openplanner.team/stops/LXoharz6"], ["https://tec.openplanner.team/stops/N558aaa", "https://tec.openplanner.team/stops/N558amc"], ["https://tec.openplanner.team/stops/LROcent1", "https://tec.openplanner.team/stops/LROhael2"], ["https://tec.openplanner.team/stops/H4fa125a", "https://tec.openplanner.team/stops/H4fa125b"], ["https://tec.openplanner.team/stops/LAWcite3", "https://tec.openplanner.team/stops/LAWcite6"], ["https://tec.openplanner.team/stops/Lhrrhee*", "https://tec.openplanner.team/stops/Lvtpata1"], ["https://tec.openplanner.team/stops/LmNha152", "https://tec.openplanner.team/stops/LmNkess1"], ["https://tec.openplanner.team/stops/LaMjous2", "https://tec.openplanner.team/stops/LaMmark2"], ["https://tec.openplanner.team/stops/LCPscay1", "https://tec.openplanner.team/stops/LCPvign1"], ["https://tec.openplanner.team/stops/LeYgros1", "https://tec.openplanner.team/stops/LeYwess2"], ["https://tec.openplanner.team/stops/LJAferm1", "https://tec.openplanner.team/stops/LJAmari1"], ["https://tec.openplanner.team/stops/Bnivpve1", "https://tec.openplanner.team/stops/Bnivsba1"], ["https://tec.openplanner.team/stops/LOmvill2", "https://tec.openplanner.team/stops/LOmvill3"], ["https://tec.openplanner.team/stops/LJSec--1", "https://tec.openplanner.team/stops/LTHcent1"], ["https://tec.openplanner.team/stops/N532aha", "https://tec.openplanner.team/stops/N532aka"], ["https://tec.openplanner.team/stops/LCEboll1", "https://tec.openplanner.team/stops/LCEec--2"], ["https://tec.openplanner.team/stops/Cmlm2412", "https://tec.openplanner.team/stops/Cmlours2"], ["https://tec.openplanner.team/stops/X687aea", "https://tec.openplanner.team/stops/X687afa"], ["https://tec.openplanner.team/stops/N501aay", "https://tec.openplanner.team/stops/N501aaz"], ["https://tec.openplanner.team/stops/H4lg101a", "https://tec.openplanner.team/stops/H4rm112b"], ["https://tec.openplanner.team/stops/H4mo135a", "https://tec.openplanner.team/stops/H4mo155a"], ["https://tec.openplanner.team/stops/X661awb", "https://tec.openplanner.team/stops/X661aya"], ["https://tec.openplanner.team/stops/N503aka", "https://tec.openplanner.team/stops/N504aaa"], ["https://tec.openplanner.team/stops/H4ga166b", "https://tec.openplanner.team/stops/H4ha171b"], ["https://tec.openplanner.team/stops/Ctarpoi1", "https://tec.openplanner.team/stops/Ctarpoi2"], ["https://tec.openplanner.team/stops/Csbplac1", "https://tec.openplanner.team/stops/H1bi104a"], ["https://tec.openplanner.team/stops/Cbfegch1", "https://tec.openplanner.team/stops/Cbfgare2"], ["https://tec.openplanner.team/stops/Ccabois1", "https://tec.openplanner.team/stops/Cclrgiv1"], ["https://tec.openplanner.team/stops/Bvirmav1", "https://tec.openplanner.team/stops/Bvirmav2"], ["https://tec.openplanner.team/stops/X790ada", "https://tec.openplanner.team/stops/X790aeb"], ["https://tec.openplanner.team/stops/X789aha", "https://tec.openplanner.team/stops/X789ahc"], ["https://tec.openplanner.team/stops/Bmalwvi1", "https://tec.openplanner.team/stops/Boppcar2"], ["https://tec.openplanner.team/stops/LORcomb2", "https://tec.openplanner.team/stops/LORgr8-1"], ["https://tec.openplanner.team/stops/Cciecol2", "https://tec.openplanner.team/stops/Ccivill2"], ["https://tec.openplanner.team/stops/H2mo143a", "https://tec.openplanner.team/stops/H2mo144b"], ["https://tec.openplanner.team/stops/N203aba", "https://tec.openplanner.team/stops/N560aca"], ["https://tec.openplanner.team/stops/Baeggar1", "https://tec.openplanner.team/stops/Baeggar2"], ["https://tec.openplanner.team/stops/H1ho124b", "https://tec.openplanner.team/stops/H1ho136b"], ["https://tec.openplanner.team/stops/N501cva", "https://tec.openplanner.team/stops/N501dab"], ["https://tec.openplanner.team/stops/LBscime1", "https://tec.openplanner.team/stops/LMHtill2"], ["https://tec.openplanner.team/stops/H4ka189b", "https://tec.openplanner.team/stops/H4ka399a"], ["https://tec.openplanner.team/stops/H1ms254e", "https://tec.openplanner.team/stops/H1ms257a"], ["https://tec.openplanner.team/stops/N150aeb", "https://tec.openplanner.team/stops/N150aed"], ["https://tec.openplanner.team/stops/H2fy119b", "https://tec.openplanner.team/stops/H2fy120d"], ["https://tec.openplanner.team/stops/Bbcogar1", "https://tec.openplanner.team/stops/Bbcogar2"], ["https://tec.openplanner.team/stops/N513ana", "https://tec.openplanner.team/stops/N513bfb"], ["https://tec.openplanner.team/stops/LLnec--1", "https://tec.openplanner.team/stops/LOeelbe1"], ["https://tec.openplanner.team/stops/H5at115a", "https://tec.openplanner.team/stops/H5at235b"], ["https://tec.openplanner.team/stops/Baudsju2", "https://tec.openplanner.team/stops/Baudvdr1"], ["https://tec.openplanner.team/stops/H1bo105b", "https://tec.openplanner.team/stops/H1bo110b"], ["https://tec.openplanner.team/stops/H4ch117b", "https://tec.openplanner.team/stops/H4sm247b"], ["https://tec.openplanner.team/stops/Lmomarr2", "https://tec.openplanner.team/stops/Lmomarr4"], ["https://tec.openplanner.team/stops/H1sy137c", "https://tec.openplanner.team/stops/H1sy137d"], ["https://tec.openplanner.team/stops/Cfmtrie1", "https://tec.openplanner.team/stops/Cfmtrie2"], ["https://tec.openplanner.team/stops/N150aga", "https://tec.openplanner.team/stops/N150aha"], ["https://tec.openplanner.team/stops/Lbrfoid1", "https://tec.openplanner.team/stops/Lbrquai1"], ["https://tec.openplanner.team/stops/N501doa", "https://tec.openplanner.team/stops/N501drb"], ["https://tec.openplanner.team/stops/Cchmonu2", "https://tec.openplanner.team/stops/Cchvhau2"], ["https://tec.openplanner.team/stops/X740aeb", "https://tec.openplanner.team/stops/X779aab"], ["https://tec.openplanner.team/stops/LBAcarr2", "https://tec.openplanner.team/stops/LBAtign2"], ["https://tec.openplanner.team/stops/LlNbene2", "https://tec.openplanner.team/stops/LwArabo2"], ["https://tec.openplanner.team/stops/H1hr121a", "https://tec.openplanner.team/stops/H1hr121b"], ["https://tec.openplanner.team/stops/Blmlqlo2", "https://tec.openplanner.team/stops/Blmlvex2"], ["https://tec.openplanner.team/stops/X784aja", "https://tec.openplanner.team/stops/X784akb"], ["https://tec.openplanner.team/stops/H1ms245a", "https://tec.openplanner.team/stops/H1ms260b"], ["https://tec.openplanner.team/stops/Crbecol1", "https://tec.openplanner.team/stops/Crbgare2"], ["https://tec.openplanner.team/stops/Cculgeo2", "https://tec.openplanner.team/stops/NC02aob"], ["https://tec.openplanner.team/stops/X597aqa", "https://tec.openplanner.team/stops/X796agb"], ["https://tec.openplanner.team/stops/Bovejme1", "https://tec.openplanner.team/stops/Bovelge1"], ["https://tec.openplanner.team/stops/X614ava", "https://tec.openplanner.team/stops/X614brb"], ["https://tec.openplanner.team/stops/Cfcgar1", "https://tec.openplanner.team/stops/Cfcpcov1"], ["https://tec.openplanner.team/stops/LBApak2*", "https://tec.openplanner.team/stops/LCEplac2"], ["https://tec.openplanner.team/stops/H4bc102b", "https://tec.openplanner.team/stops/H4bc106a"], ["https://tec.openplanner.team/stops/X784adb", "https://tec.openplanner.team/stops/X784akb"], ["https://tec.openplanner.team/stops/X871aaa", "https://tec.openplanner.team/stops/X872afa"], ["https://tec.openplanner.team/stops/H4ae101a", "https://tec.openplanner.team/stops/H4ef109a"], ["https://tec.openplanner.team/stops/X782aea", "https://tec.openplanner.team/stops/X782afa"], ["https://tec.openplanner.team/stops/Bwbfgar1", "https://tec.openplanner.team/stops/Bwbfgar2"], ["https://tec.openplanner.team/stops/Bspkker1", "https://tec.openplanner.team/stops/H1mk114b"], ["https://tec.openplanner.team/stops/X801aib", "https://tec.openplanner.team/stops/X801aja"], ["https://tec.openplanner.team/stops/Lgrfalc2", "https://tec.openplanner.team/stops/Lgrstou1"], ["https://tec.openplanner.team/stops/N562ala", "https://tec.openplanner.team/stops/N562aoa"], ["https://tec.openplanner.team/stops/NC14aoa", "https://tec.openplanner.team/stops/NC14aod"], ["https://tec.openplanner.team/stops/N506anb", "https://tec.openplanner.team/stops/N506bpa"], ["https://tec.openplanner.team/stops/LMaburg3", "https://tec.openplanner.team/stops/LMapark3"], ["https://tec.openplanner.team/stops/X614agb", "https://tec.openplanner.team/stops/X615bgb"], ["https://tec.openplanner.team/stops/X805aga", "https://tec.openplanner.team/stops/X807aaa"], ["https://tec.openplanner.team/stops/X869aaa", "https://tec.openplanner.team/stops/X869ada"], ["https://tec.openplanner.team/stops/NL81ada", "https://tec.openplanner.team/stops/NL81aeb"], ["https://tec.openplanner.team/stops/X666agb", "https://tec.openplanner.team/stops/X666alb"], ["https://tec.openplanner.team/stops/LHMa2321", "https://tec.openplanner.team/stops/LLC170-1"], ["https://tec.openplanner.team/stops/Cmbcime4", "https://tec.openplanner.team/stops/Crcrlf2"], ["https://tec.openplanner.team/stops/N543bya", "https://tec.openplanner.team/stops/N543byb"], ["https://tec.openplanner.team/stops/LFCotte1", "https://tec.openplanner.team/stops/LFMrijk1"], ["https://tec.openplanner.team/stops/Lsebico2", "https://tec.openplanner.team/stops/Lselibe2"], ["https://tec.openplanner.team/stops/X723aba", "https://tec.openplanner.team/stops/X724ahb"], ["https://tec.openplanner.team/stops/Cfometr1", "https://tec.openplanner.team/stops/CMfont2"], ["https://tec.openplanner.team/stops/LBIairp1", "https://tec.openplanner.team/stops/LBIairp2"], ["https://tec.openplanner.team/stops/LARparc1", "https://tec.openplanner.team/stops/LARparc2"], ["https://tec.openplanner.team/stops/N501cja", "https://tec.openplanner.team/stops/N501cky"], ["https://tec.openplanner.team/stops/H2ha134a", "https://tec.openplanner.team/stops/H2tr245a"], ["https://tec.openplanner.team/stops/N543aia", "https://tec.openplanner.team/stops/N543ara"], ["https://tec.openplanner.team/stops/Clb4bra1", "https://tec.openplanner.team/stops/Clbentr1"], ["https://tec.openplanner.team/stops/Cfaeclu1", "https://tec.openplanner.team/stops/Cfasamb1"], ["https://tec.openplanner.team/stops/LrErauw1", "https://tec.openplanner.team/stops/LrErauw2"], ["https://tec.openplanner.team/stops/Clogfay1", "https://tec.openplanner.team/stops/Clogfay2"], ["https://tec.openplanner.team/stops/X664aga", "https://tec.openplanner.team/stops/X664agb"], ["https://tec.openplanner.team/stops/H4vz369b", "https://tec.openplanner.team/stops/H4vz370b"], ["https://tec.openplanner.team/stops/X982bfa", "https://tec.openplanner.team/stops/X982bfb"], ["https://tec.openplanner.team/stops/X634aia", "https://tec.openplanner.team/stops/X634aja"], ["https://tec.openplanner.team/stops/X752aca", "https://tec.openplanner.team/stops/X758aka"], ["https://tec.openplanner.team/stops/H4ob110b", "https://tec.openplanner.team/stops/H4rc232d"], ["https://tec.openplanner.team/stops/H4ve136b", "https://tec.openplanner.team/stops/H4ve140a"], ["https://tec.openplanner.team/stops/H4ty345a", "https://tec.openplanner.team/stops/H4ty345b"], ["https://tec.openplanner.team/stops/H1bu136a", "https://tec.openplanner.team/stops/H1bu136b"], ["https://tec.openplanner.team/stops/Lfhgare2", "https://tec.openplanner.team/stops/Livpost1"], ["https://tec.openplanner.team/stops/N516aja", "https://tec.openplanner.team/stops/N516ajb"], ["https://tec.openplanner.team/stops/N501bmb", "https://tec.openplanner.team/stops/N501bqb"], ["https://tec.openplanner.team/stops/LVNcoop2", "https://tec.openplanner.team/stops/LVNwanz2"], ["https://tec.openplanner.team/stops/Cgylami2", "https://tec.openplanner.team/stops/Cracave1"], ["https://tec.openplanner.team/stops/X602aaa", "https://tec.openplanner.team/stops/X602aqb"], ["https://tec.openplanner.team/stops/X948akb", "https://tec.openplanner.team/stops/X948apa"], ["https://tec.openplanner.team/stops/Lvepala8", "https://tec.openplanner.team/stops/Lvepris1"], ["https://tec.openplanner.team/stops/LTPplco1", "https://tec.openplanner.team/stops/LTPreco1"], ["https://tec.openplanner.team/stops/Bbrlmez1", "https://tec.openplanner.team/stops/Bbrlvil1"], ["https://tec.openplanner.team/stops/X919amb", "https://tec.openplanner.team/stops/X919ana"], ["https://tec.openplanner.team/stops/LBgcroi2", "https://tec.openplanner.team/stops/LBgcroi3"], ["https://tec.openplanner.team/stops/LACeg--1", "https://tec.openplanner.team/stops/LAvchpl2"], ["https://tec.openplanner.team/stops/N501jaa", "https://tec.openplanner.team/stops/N501jca"], ["https://tec.openplanner.team/stops/LHFec--1", "https://tec.openplanner.team/stops/LHFhard2"], ["https://tec.openplanner.team/stops/Ccircar1", "https://tec.openplanner.team/stops/Ccircar2"], ["https://tec.openplanner.team/stops/LHrbast2", "https://tec.openplanner.team/stops/LHrreal1"], ["https://tec.openplanner.team/stops/NL72afa", "https://tec.openplanner.team/stops/NL80aaa"], ["https://tec.openplanner.team/stops/Lsebove1", "https://tec.openplanner.team/stops/Lsebove2"], ["https://tec.openplanner.team/stops/Lchmarc1", "https://tec.openplanner.team/stops/Lchsaro1"], ["https://tec.openplanner.team/stops/H1qu116b", "https://tec.openplanner.team/stops/H1qu116c"], ["https://tec.openplanner.team/stops/N553aba", "https://tec.openplanner.team/stops/N553ama"], ["https://tec.openplanner.team/stops/Bmrlhan4", "https://tec.openplanner.team/stops/Bmrlhau2"], ["https://tec.openplanner.team/stops/H4ro157b", "https://tec.openplanner.team/stops/H5pe127a"], ["https://tec.openplanner.team/stops/LFRcoun2", "https://tec.openplanner.team/stops/LFRgode1"], ["https://tec.openplanner.team/stops/N543cma", "https://tec.openplanner.team/stops/N543cnb"], ["https://tec.openplanner.team/stops/LORvill1", "https://tec.openplanner.team/stops/LORvill3"], ["https://tec.openplanner.team/stops/X836aab", "https://tec.openplanner.team/stops/X836abb"], ["https://tec.openplanner.team/stops/LaMhe831", "https://tec.openplanner.team/stops/LaMschr1"], ["https://tec.openplanner.team/stops/H1te179a", "https://tec.openplanner.team/stops/H1vt192b"], ["https://tec.openplanner.team/stops/H4ch118a", "https://tec.openplanner.team/stops/H4vx365a"], ["https://tec.openplanner.team/stops/Lwachal1", "https://tec.openplanner.team/stops/Lwachal2"], ["https://tec.openplanner.team/stops/LBLfoxh1", "https://tec.openplanner.team/stops/LMotrem1"], ["https://tec.openplanner.team/stops/Bgemgcw1", "https://tec.openplanner.team/stops/N522ajb"], ["https://tec.openplanner.team/stops/Cmeloti1", "https://tec.openplanner.team/stops/Cwxplac1"], ["https://tec.openplanner.team/stops/H1mm126a", "https://tec.openplanner.team/stops/H1mm132a"], ["https://tec.openplanner.team/stops/H1bl100a", "https://tec.openplanner.team/stops/H1eq117a"], ["https://tec.openplanner.team/stops/N166adb", "https://tec.openplanner.team/stops/N167aeb"], ["https://tec.openplanner.team/stops/LBEoblu1", "https://tec.openplanner.team/stops/Lemfort1"], ["https://tec.openplanner.team/stops/N103aaa", "https://tec.openplanner.team/stops/N103ada"], ["https://tec.openplanner.team/stops/N308alb", "https://tec.openplanner.team/stops/N308bhb"], ["https://tec.openplanner.team/stops/H1ca108a", "https://tec.openplanner.team/stops/H1ca108b"], ["https://tec.openplanner.team/stops/LPLaube1", "https://tec.openplanner.team/stops/LPLaube2"], ["https://tec.openplanner.team/stops/H3bi115a", "https://tec.openplanner.team/stops/H3bi118b"], ["https://tec.openplanner.team/stops/X623aab", "https://tec.openplanner.team/stops/X623aha"], ["https://tec.openplanner.team/stops/X767aca", "https://tec.openplanner.team/stops/X767aia"], ["https://tec.openplanner.team/stops/N563ama", "https://tec.openplanner.team/stops/N570aba"], ["https://tec.openplanner.team/stops/LPAchpl1", "https://tec.openplanner.team/stops/LVSpota2"], ["https://tec.openplanner.team/stops/LHUeuro2", "https://tec.openplanner.team/stops/LHUgodi1"], ["https://tec.openplanner.team/stops/N505alb", "https://tec.openplanner.team/stops/N511ajb"], ["https://tec.openplanner.team/stops/LAMusin1", "https://tec.openplanner.team/stops/LAMusin2"], ["https://tec.openplanner.team/stops/H1mb131a", "https://tec.openplanner.team/stops/H1ro134b"], ["https://tec.openplanner.team/stops/N525ajb", "https://tec.openplanner.team/stops/N525aob"], ["https://tec.openplanner.team/stops/N512agc", "https://tec.openplanner.team/stops/N512agd"], ["https://tec.openplanner.team/stops/X902ala", "https://tec.openplanner.team/stops/X902ama"], ["https://tec.openplanner.team/stops/LTHec--1", "https://tec.openplanner.team/stops/LTHperr3"], ["https://tec.openplanner.team/stops/X670ama", "https://tec.openplanner.team/stops/X670asa"], ["https://tec.openplanner.team/stops/H1br123b", "https://tec.openplanner.team/stops/H1br127b"], ["https://tec.openplanner.team/stops/H4mo155b", "https://tec.openplanner.team/stops/H4mo162a"], ["https://tec.openplanner.team/stops/X608aga", "https://tec.openplanner.team/stops/X608asa"], ["https://tec.openplanner.team/stops/X371ada", "https://tec.openplanner.team/stops/X371adb"], ["https://tec.openplanner.team/stops/Lalwaro1", "https://tec.openplanner.team/stops/Llofort1"], ["https://tec.openplanner.team/stops/LsVhupp1", "https://tec.openplanner.team/stops/LsVhupp2"], ["https://tec.openplanner.team/stops/Llgchal2", "https://tec.openplanner.team/stops/Llgplat2"], ["https://tec.openplanner.team/stops/LCpeg-*", "https://tec.openplanner.team/stops/LLg9---2"], ["https://tec.openplanner.team/stops/X886afa", "https://tec.openplanner.team/stops/X886afb"], ["https://tec.openplanner.team/stops/H4ne137a", "https://tec.openplanner.team/stops/H4ne140a"], ["https://tec.openplanner.team/stops/H4rm109a", "https://tec.openplanner.team/stops/H4rm109b"], ["https://tec.openplanner.team/stops/N209adb", "https://tec.openplanner.team/stops/N209aea"], ["https://tec.openplanner.team/stops/H3bi110a", "https://tec.openplanner.team/stops/H3bi112a"], ["https://tec.openplanner.team/stops/LTHcime2", "https://tec.openplanner.team/stops/LTHjevo1"], ["https://tec.openplanner.team/stops/Bincbbo4", "https://tec.openplanner.team/stops/Binccha1"], ["https://tec.openplanner.team/stops/H1ms266a", "https://tec.openplanner.team/stops/H1ms367a"], ["https://tec.openplanner.team/stops/X608aob", "https://tec.openplanner.team/stops/X608apb"], ["https://tec.openplanner.team/stops/Blascsl1", "https://tec.openplanner.team/stops/Brixbai2"], ["https://tec.openplanner.team/stops/X825aba", "https://tec.openplanner.team/stops/X825ada"], ["https://tec.openplanner.team/stops/LHolexh1", "https://tec.openplanner.team/stops/LHZbren1"], ["https://tec.openplanner.team/stops/H3so173a", "https://tec.openplanner.team/stops/H3so184a"], ["https://tec.openplanner.team/stops/Brixchw1", "https://tec.openplanner.team/stops/Brixdec1"], ["https://tec.openplanner.team/stops/H4hu119b", "https://tec.openplanner.team/stops/H4hu121a"], ["https://tec.openplanner.team/stops/N563aoa", "https://tec.openplanner.team/stops/N563aob"], ["https://tec.openplanner.team/stops/N134aab", "https://tec.openplanner.team/stops/N134adb"], ["https://tec.openplanner.team/stops/Bpielom2", "https://tec.openplanner.team/stops/Bsjgegl2"], ["https://tec.openplanner.team/stops/LFOcomb4", "https://tec.openplanner.team/stops/LFOmc--1"], ["https://tec.openplanner.team/stops/Bnivsoi1", "https://tec.openplanner.team/stops/Bnivsoi2"], ["https://tec.openplanner.team/stops/Lalchar1", "https://tec.openplanner.team/stops/Lloauto1"], ["https://tec.openplanner.team/stops/X804aea", "https://tec.openplanner.team/stops/X804bea"], ["https://tec.openplanner.team/stops/Bwavgar7", "https://tec.openplanner.team/stops/Bwavmes2"], ["https://tec.openplanner.team/stops/LDOchev1", "https://tec.openplanner.team/stops/LDOgare1"], ["https://tec.openplanner.team/stops/X601aza", "https://tec.openplanner.team/stops/X601bbd"], ["https://tec.openplanner.team/stops/H1fa118b", "https://tec.openplanner.team/stops/H1pe132a"], ["https://tec.openplanner.team/stops/N308ayb", "https://tec.openplanner.team/stops/N308aza"], ["https://tec.openplanner.team/stops/H1bo101a", "https://tec.openplanner.team/stops/H1bo109a"], ["https://tec.openplanner.team/stops/N236aea", "https://tec.openplanner.team/stops/N254ada"], ["https://tec.openplanner.team/stops/X756ahb", "https://tec.openplanner.team/stops/X757ama"], ["https://tec.openplanner.team/stops/H1mh113a", "https://tec.openplanner.team/stops/H1mh114a"], ["https://tec.openplanner.team/stops/X780adb", "https://tec.openplanner.team/stops/X780aga"], ["https://tec.openplanner.team/stops/Btslenf2", "https://tec.openplanner.team/stops/Btslnil2"], ["https://tec.openplanner.team/stops/Bfelcsa1", "https://tec.openplanner.team/stops/Bfelpla2"], ["https://tec.openplanner.team/stops/Bengvma1", "https://tec.openplanner.team/stops/Bengvma2"], ["https://tec.openplanner.team/stops/H3so176a", "https://tec.openplanner.team/stops/H3so176b"], ["https://tec.openplanner.team/stops/H1en104a", "https://tec.openplanner.team/stops/H1en104d"], ["https://tec.openplanner.team/stops/N232bea", "https://tec.openplanner.team/stops/N232bva"], ["https://tec.openplanner.team/stops/LJAherb1", "https://tec.openplanner.team/stops/LJAherb2"], ["https://tec.openplanner.team/stops/X818alb", "https://tec.openplanner.team/stops/X818amb"], ["https://tec.openplanner.team/stops/H4bu109b", "https://tec.openplanner.team/stops/H5el111b"], ["https://tec.openplanner.team/stops/Cml3fon1", "https://tec.openplanner.team/stops/Cmlceri2"], ["https://tec.openplanner.team/stops/X261aab", "https://tec.openplanner.team/stops/X261abb"], ["https://tec.openplanner.team/stops/Bcercab1", "https://tec.openplanner.team/stops/Bcerpco2"], ["https://tec.openplanner.team/stops/Brebblo1", "https://tec.openplanner.team/stops/Brebras2"], ["https://tec.openplanner.team/stops/LSzeg--1", "https://tec.openplanner.team/stops/LSzsurl1"], ["https://tec.openplanner.team/stops/H1gi119a", "https://tec.openplanner.team/stops/H1gi119b"], ["https://tec.openplanner.team/stops/LSyec--2", "https://tec.openplanner.team/stops/LSythie2"], ["https://tec.openplanner.team/stops/N501jfa", "https://tec.openplanner.team/stops/N521aha"], ["https://tec.openplanner.team/stops/N536aaa", "https://tec.openplanner.team/stops/N536aab"], ["https://tec.openplanner.team/stops/Baegpon1", "https://tec.openplanner.team/stops/Baegpon2"], ["https://tec.openplanner.team/stops/X904aib", "https://tec.openplanner.team/stops/X943afa"], ["https://tec.openplanner.team/stops/H1ho132a", "https://tec.openplanner.team/stops/H1ho135b"], ["https://tec.openplanner.team/stops/N116aab", "https://tec.openplanner.team/stops/N116abb"], ["https://tec.openplanner.team/stops/N103ahb", "https://tec.openplanner.team/stops/N106afa"], ["https://tec.openplanner.team/stops/Bwatcbo1", "https://tec.openplanner.team/stops/Bwatcli1"], ["https://tec.openplanner.team/stops/LnEfrie2", "https://tec.openplanner.team/stops/LrDhund1"], ["https://tec.openplanner.team/stops/H1eu101b", "https://tec.openplanner.team/stops/H1eu105b"], ["https://tec.openplanner.team/stops/LFdeg--2", "https://tec.openplanner.team/stops/LLMcouv1"], ["https://tec.openplanner.team/stops/X904aga", "https://tec.openplanner.team/stops/X904agb"], ["https://tec.openplanner.team/stops/LOdmonu1", "https://tec.openplanner.team/stops/LOdmonu2"], ["https://tec.openplanner.team/stops/Bohnhan2", "https://tec.openplanner.team/stops/Bohnman1"], ["https://tec.openplanner.team/stops/X890aaa", "https://tec.openplanner.team/stops/X890aca"], ["https://tec.openplanner.team/stops/LHNhall2", "https://tec.openplanner.team/stops/LHNhall3"], ["https://tec.openplanner.team/stops/N529aha", "https://tec.openplanner.team/stops/N529aia"], ["https://tec.openplanner.team/stops/LBEoblu2", "https://tec.openplanner.team/stops/Lcacris1"], ["https://tec.openplanner.team/stops/H1ba111a", "https://tec.openplanner.team/stops/H1hh112b"], ["https://tec.openplanner.team/stops/N506ahb", "https://tec.openplanner.team/stops/N506ala"], ["https://tec.openplanner.team/stops/LVLgotr3", "https://tec.openplanner.team/stops/LVLgrum1"], ["https://tec.openplanner.team/stops/Landolh3", "https://tec.openplanner.team/stops/Lanhoud2"], ["https://tec.openplanner.team/stops/X763aba", "https://tec.openplanner.team/stops/X763aca"], ["https://tec.openplanner.team/stops/N534aqb", "https://tec.openplanner.team/stops/N534awb"], ["https://tec.openplanner.team/stops/H1gy116a", "https://tec.openplanner.team/stops/H5fl101a"], ["https://tec.openplanner.team/stops/X761aba", "https://tec.openplanner.team/stops/X761abb"], ["https://tec.openplanner.team/stops/LCPaube2", "https://tec.openplanner.team/stops/LCPhall1"], ["https://tec.openplanner.team/stops/Cwfaldi1", "https://tec.openplanner.team/stops/Cwfbarr2"], ["https://tec.openplanner.team/stops/N149aha", "https://tec.openplanner.team/stops/N149ahb"], ["https://tec.openplanner.team/stops/LAnchat1", "https://tec.openplanner.team/stops/LAncoup1"], ["https://tec.openplanner.team/stops/H4ty325a", "https://tec.openplanner.team/stops/H4ty325b"], ["https://tec.openplanner.team/stops/LCPaywa2", "https://tec.openplanner.team/stops/LSpxhig1"], ["https://tec.openplanner.team/stops/LFdchau3", "https://tec.openplanner.team/stops/LFdeg--4"], ["https://tec.openplanner.team/stops/Lbrnanc2", "https://tec.openplanner.team/stops/Llgplai1"], ["https://tec.openplanner.team/stops/Lsebelv1", "https://tec.openplanner.team/stops/Lsehcoc2"], ["https://tec.openplanner.team/stops/H1pw123a", "https://tec.openplanner.team/stops/H1wa146b"], ["https://tec.openplanner.team/stops/Ctubpos4", "https://tec.openplanner.team/stops/Cturoge1"], ["https://tec.openplanner.team/stops/Ladneuv1", "https://tec.openplanner.team/stops/Lveinva1"], ["https://tec.openplanner.team/stops/LSkchwa2", "https://tec.openplanner.team/stops/LSkcomb2"], ["https://tec.openplanner.team/stops/Ladwooz1", "https://tec.openplanner.team/stops/Ladxhen1"], ["https://tec.openplanner.team/stops/N511amb", "https://tec.openplanner.team/stops/N511anb"], ["https://tec.openplanner.team/stops/Btsleco2", "https://tec.openplanner.team/stops/Btslegl2"], ["https://tec.openplanner.team/stops/LHTcent2", "https://tec.openplanner.team/stops/LHThall2"], ["https://tec.openplanner.team/stops/NL74acb", "https://tec.openplanner.team/stops/NL74ada"], ["https://tec.openplanner.team/stops/Lhubouq1", "https://tec.openplanner.team/stops/Lhuchev1"], ["https://tec.openplanner.team/stops/CMpuis1", "https://tec.openplanner.team/stops/CMpuis2"], ["https://tec.openplanner.team/stops/LCHeg--1", "https://tec.openplanner.team/stops/LCHfond1"], ["https://tec.openplanner.team/stops/LMIbois1", "https://tec.openplanner.team/stops/LSOathe1"], ["https://tec.openplanner.team/stops/N137afb", "https://tec.openplanner.team/stops/N137aga"], ["https://tec.openplanner.team/stops/X952abb", "https://tec.openplanner.team/stops/X952akb"], ["https://tec.openplanner.team/stops/H4vx366a", "https://tec.openplanner.team/stops/H4vx366b"], ["https://tec.openplanner.team/stops/N570aga", "https://tec.openplanner.team/stops/N570agb"], ["https://tec.openplanner.team/stops/Bernpla1", "https://tec.openplanner.team/stops/Bernpon1"], ["https://tec.openplanner.team/stops/Lseverh1", "https://tec.openplanner.team/stops/Lseverh2"], ["https://tec.openplanner.team/stops/X658ada", "https://tec.openplanner.team/stops/X658adb"], ["https://tec.openplanner.team/stops/Bbiehss2", "https://tec.openplanner.team/stops/Blontry1"], ["https://tec.openplanner.team/stops/Bwategb1", "https://tec.openplanner.team/stops/Bwategb2"], ["https://tec.openplanner.team/stops/X636ada", "https://tec.openplanner.team/stops/X636aea"], ["https://tec.openplanner.team/stops/Cmlange1", "https://tec.openplanner.team/stops/Cmlpbay2"], ["https://tec.openplanner.team/stops/N513aaa", "https://tec.openplanner.team/stops/N513ahb"], ["https://tec.openplanner.team/stops/X782ala", "https://tec.openplanner.team/stops/X782ana"], ["https://tec.openplanner.team/stops/LLReg--2", "https://tec.openplanner.team/stops/LLRgdma2"], ["https://tec.openplanner.team/stops/Lprorph1", "https://tec.openplanner.team/stops/Lprperr1"], ["https://tec.openplanner.team/stops/X725asa", "https://tec.openplanner.team/stops/X767aib"], ["https://tec.openplanner.team/stops/LHAstal2", "https://tec.openplanner.team/stops/LHTmoul2"], ["https://tec.openplanner.team/stops/Cmx4che1", "https://tec.openplanner.team/stops/Cmxpleg2"], ["https://tec.openplanner.team/stops/H4oq224a", "https://tec.openplanner.team/stops/H4ty331b"], ["https://tec.openplanner.team/stops/Blkbavo1", "https://tec.openplanner.team/stops/Bucceng2"], ["https://tec.openplanner.team/stops/H1gh151b", "https://tec.openplanner.team/stops/H1je212a"], ["https://tec.openplanner.team/stops/Cgdfras2", "https://tec.openplanner.team/stops/Csylaha2"], ["https://tec.openplanner.team/stops/H1hy128a", "https://tec.openplanner.team/stops/H1hy130b"], ["https://tec.openplanner.team/stops/H2ll172a", "https://tec.openplanner.team/stops/H2ll201b"], ["https://tec.openplanner.team/stops/Blsmcha2", "https://tec.openplanner.team/stops/Bpelegl2"], ["https://tec.openplanner.team/stops/Bwaab121", "https://tec.openplanner.team/stops/LWSstat1"], ["https://tec.openplanner.team/stops/Baegpon1", "https://tec.openplanner.team/stops/Bramcar1"], ["https://tec.openplanner.team/stops/Cfccabi1", "https://tec.openplanner.team/stops/Cfcsaut3"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Lanstat1"], ["https://tec.openplanner.team/stops/X806aab", "https://tec.openplanner.team/stops/X808aib"], ["https://tec.openplanner.team/stops/H1gy111a", "https://tec.openplanner.team/stops/H1le122d"], ["https://tec.openplanner.team/stops/N515aib", "https://tec.openplanner.team/stops/N515ajb"], ["https://tec.openplanner.team/stops/X897aaa", "https://tec.openplanner.team/stops/X898ama"], ["https://tec.openplanner.team/stops/X923aja", "https://tec.openplanner.team/stops/X923ajb"], ["https://tec.openplanner.team/stops/Cwgcroi1", "https://tec.openplanner.team/stops/Cwgcroi2"], ["https://tec.openplanner.team/stops/H4hq131b", "https://tec.openplanner.team/stops/H4ms145a"], ["https://tec.openplanner.team/stops/N501dzb", "https://tec.openplanner.team/stops/N501eib"], ["https://tec.openplanner.team/stops/Cmiegli1", "https://tec.openplanner.team/stops/Cmitrie2"], ["https://tec.openplanner.team/stops/NC11aka", "https://tec.openplanner.team/stops/NC11alb"], ["https://tec.openplanner.team/stops/H1lb136a", "https://tec.openplanner.team/stops/H1lb136b"], ["https://tec.openplanner.team/stops/LrAiter1", "https://tec.openplanner.team/stops/LrApley2"], ["https://tec.openplanner.team/stops/N236aea", "https://tec.openplanner.team/stops/N236afb"], ["https://tec.openplanner.team/stops/LROcham1", "https://tec.openplanner.team/stops/LROcham2"], ["https://tec.openplanner.team/stops/LTPwann2", "https://tec.openplanner.team/stops/X542afa"], ["https://tec.openplanner.team/stops/Cmregli3", "https://tec.openplanner.team/stops/N162aba"], ["https://tec.openplanner.team/stops/X224afb", "https://tec.openplanner.team/stops/X394aeb"], ["https://tec.openplanner.team/stops/Lagbeno5", "https://tec.openplanner.team/stops/Llgtill2"], ["https://tec.openplanner.team/stops/Brxmcna2", "https://tec.openplanner.team/stops/Brxmhai1"], ["https://tec.openplanner.team/stops/N121aca", "https://tec.openplanner.team/stops/N121acb"], ["https://tec.openplanner.team/stops/LvAschr2", "https://tec.openplanner.team/stops/LvAschw1"], ["https://tec.openplanner.team/stops/H4ir167a", "https://tec.openplanner.team/stops/H4og209b"], ["https://tec.openplanner.team/stops/Ccychco2", "https://tec.openplanner.team/stops/NH01agd"], ["https://tec.openplanner.team/stops/H4hu116a", "https://tec.openplanner.team/stops/H4hu121b"], ["https://tec.openplanner.team/stops/LMsalen2", "https://tec.openplanner.team/stops/LMsheid1"], ["https://tec.openplanner.team/stops/Ltibure2", "https://tec.openplanner.team/stops/Ltibure3"], ["https://tec.openplanner.team/stops/LLrquar1", "https://tec.openplanner.team/stops/LSXbecc1"], ["https://tec.openplanner.team/stops/X818acb", "https://tec.openplanner.team/stops/X818afa"], ["https://tec.openplanner.team/stops/Cjuecha2", "https://tec.openplanner.team/stops/Cjulamb3"], ["https://tec.openplanner.team/stops/Bdvm4ca2", "https://tec.openplanner.team/stops/Bdvmsar1"], ["https://tec.openplanner.team/stops/H4bq154b", "https://tec.openplanner.team/stops/H4cp103b"], ["https://tec.openplanner.team/stops/LDLbaye2", "https://tec.openplanner.team/stops/LSEquar2"], ["https://tec.openplanner.team/stops/N573aea", "https://tec.openplanner.team/stops/N573aha"], ["https://tec.openplanner.team/stops/N118acd", "https://tec.openplanner.team/stops/N118afa"], ["https://tec.openplanner.team/stops/X750ana", "https://tec.openplanner.team/stops/X750aob"], ["https://tec.openplanner.team/stops/X762aab", "https://tec.openplanner.team/stops/X763agb"], ["https://tec.openplanner.team/stops/N547aia", "https://tec.openplanner.team/stops/N547ajb"], ["https://tec.openplanner.team/stops/N138aca", "https://tec.openplanner.team/stops/N138aea"], ["https://tec.openplanner.team/stops/LVeeg--1", "https://tec.openplanner.team/stops/LVevill2"], ["https://tec.openplanner.team/stops/N501gfa", "https://tec.openplanner.team/stops/N501jca"], ["https://tec.openplanner.team/stops/H1pa106b", "https://tec.openplanner.team/stops/H1pa106c"], ["https://tec.openplanner.team/stops/Bbrycar2", "https://tec.openplanner.team/stops/N584ayb"], ["https://tec.openplanner.team/stops/LAYharz2", "https://tec.openplanner.team/stops/LHrprie1"], ["https://tec.openplanner.team/stops/N549aeb", "https://tec.openplanner.team/stops/N550acb"], ["https://tec.openplanner.team/stops/X992aga", "https://tec.openplanner.team/stops/X992akb"], ["https://tec.openplanner.team/stops/LHuetat1", "https://tec.openplanner.team/stops/LHuherm1"], ["https://tec.openplanner.team/stops/Bnivga22", "https://tec.openplanner.team/stops/Bnivga62"], ["https://tec.openplanner.team/stops/N245aba", "https://tec.openplanner.team/stops/N245abb"], ["https://tec.openplanner.team/stops/LJAsuri1", "https://tec.openplanner.team/stops/LSUhage2"], ["https://tec.openplanner.team/stops/NL77ajb", "https://tec.openplanner.team/stops/NL77akb"], ["https://tec.openplanner.team/stops/Lgrfass2", "https://tec.openplanner.team/stops/Lgrfrhe2"], ["https://tec.openplanner.team/stops/X770aga", "https://tec.openplanner.team/stops/X770agb"], ["https://tec.openplanner.team/stops/Lvealbe1", "https://tec.openplanner.team/stops/Lvealbe2"], ["https://tec.openplanner.team/stops/Baegd742", "https://tec.openplanner.team/stops/Bgercen1"], ["https://tec.openplanner.team/stops/X750aga", "https://tec.openplanner.team/stops/X750bna"], ["https://tec.openplanner.team/stops/N160aga", "https://tec.openplanner.team/stops/N160agb"], ["https://tec.openplanner.team/stops/N565aka", "https://tec.openplanner.team/stops/N565ala"], ["https://tec.openplanner.team/stops/Cmbcime3", "https://tec.openplanner.team/stops/Cmbcime4"], ["https://tec.openplanner.team/stops/X638ajb", "https://tec.openplanner.team/stops/X638arb"], ["https://tec.openplanner.team/stops/H4ma203a", "https://tec.openplanner.team/stops/H4ma203b"], ["https://tec.openplanner.team/stops/X940abb", "https://tec.openplanner.team/stops/X940acb"], ["https://tec.openplanner.team/stops/LENarde1", "https://tec.openplanner.team/stops/LENarde2"], ["https://tec.openplanner.team/stops/LBEbelf2", "https://tec.openplanner.team/stops/LNipla4"], ["https://tec.openplanner.team/stops/H4bs110a", "https://tec.openplanner.team/stops/H5pe139b"], ["https://tec.openplanner.team/stops/H1hr124a", "https://tec.openplanner.team/stops/H1hr124b"], ["https://tec.openplanner.team/stops/N507aka", "https://tec.openplanner.team/stops/N507ama"], ["https://tec.openplanner.team/stops/Buccvoi2", "https://tec.openplanner.team/stops/Buccvoi3"], ["https://tec.openplanner.team/stops/H1ms307a", "https://tec.openplanner.team/stops/H1ms314a"], ["https://tec.openplanner.team/stops/LBmbara1", "https://tec.openplanner.team/stops/LBmbara2"], ["https://tec.openplanner.team/stops/N557aea", "https://tec.openplanner.team/stops/N560adb"], ["https://tec.openplanner.team/stops/Lfhncha2", "https://tec.openplanner.team/stops/Lfhtrca2"], ["https://tec.openplanner.team/stops/N562aha", "https://tec.openplanner.team/stops/N562azb"], ["https://tec.openplanner.team/stops/X809ada", "https://tec.openplanner.team/stops/X858aba"], ["https://tec.openplanner.team/stops/X774ada", "https://tec.openplanner.team/stops/X774adb"], ["https://tec.openplanner.team/stops/Cgzmira2", "https://tec.openplanner.team/stops/Cgzmira3"], ["https://tec.openplanner.team/stops/H4bo178b", "https://tec.openplanner.team/stops/H4gr109a"], ["https://tec.openplanner.team/stops/LCFchir1", "https://tec.openplanner.team/stops/LCPbatt2"], ["https://tec.openplanner.team/stops/Cmarroy1", "https://tec.openplanner.team/stops/Cmarroy2"], ["https://tec.openplanner.team/stops/LSTparf1", "https://tec.openplanner.team/stops/LWneg--1"], ["https://tec.openplanner.team/stops/N538ayb", "https://tec.openplanner.team/stops/N538aza"], ["https://tec.openplanner.team/stops/X796aea", "https://tec.openplanner.team/stops/X796afb"], ["https://tec.openplanner.team/stops/H1te177b", "https://tec.openplanner.team/stops/H1te186b"], ["https://tec.openplanner.team/stops/Ccybouc2", "https://tec.openplanner.team/stops/Ccypn1"], ["https://tec.openplanner.team/stops/LArmeni1", "https://tec.openplanner.team/stops/X784ahb"], ["https://tec.openplanner.team/stops/H1ne140a", "https://tec.openplanner.team/stops/H1ne140b"], ["https://tec.openplanner.team/stops/N542aia", "https://tec.openplanner.team/stops/N542aib"], ["https://tec.openplanner.team/stops/X806aja", "https://tec.openplanner.team/stops/X808aha"], ["https://tec.openplanner.team/stops/N135aja", "https://tec.openplanner.team/stops/N135aqb"], ["https://tec.openplanner.team/stops/LSceg--2", "https://tec.openplanner.team/stops/LScread1"], ["https://tec.openplanner.team/stops/Canecbr1", "https://tec.openplanner.team/stops/Canlemo2"], ["https://tec.openplanner.team/stops/Bspkker2", "https://tec.openplanner.team/stops/Bspkkhe1"], ["https://tec.openplanner.team/stops/LAMrich1", "https://tec.openplanner.team/stops/LAMrich2"], ["https://tec.openplanner.team/stops/LFPkast2", "https://tec.openplanner.team/stops/LFPknap1"], ["https://tec.openplanner.team/stops/LrAplat1", "https://tec.openplanner.team/stops/LrAplat2"], ["https://tec.openplanner.team/stops/H1fr119a", "https://tec.openplanner.team/stops/H1fr119b"], ["https://tec.openplanner.team/stops/Lghcfer1", "https://tec.openplanner.team/stops/Lghcfer2"], ["https://tec.openplanner.team/stops/Lousimo1", "https://tec.openplanner.team/stops/Louvand1"], ["https://tec.openplanner.team/stops/X636aia", "https://tec.openplanner.team/stops/X636ama"], ["https://tec.openplanner.team/stops/Bnivbau2", "https://tec.openplanner.team/stops/Bnivchh1"], ["https://tec.openplanner.team/stops/X667aca", "https://tec.openplanner.team/stops/X667aea"], ["https://tec.openplanner.team/stops/H4ff120a", "https://tec.openplanner.team/stops/H4ff122a"], ["https://tec.openplanner.team/stops/H1mj127a", "https://tec.openplanner.team/stops/H1mj128b"], ["https://tec.openplanner.team/stops/N117aka", "https://tec.openplanner.team/stops/N117bba"], ["https://tec.openplanner.team/stops/H5bl124a", "https://tec.openplanner.team/stops/H5bl124b"], ["https://tec.openplanner.team/stops/X907ada", "https://tec.openplanner.team/stops/X907ajb"], ["https://tec.openplanner.team/stops/H1le127a", "https://tec.openplanner.team/stops/H1le129a"], ["https://tec.openplanner.team/stops/H4bu109a", "https://tec.openplanner.team/stops/H4fa128b"], ["https://tec.openplanner.team/stops/X784aca", "https://tec.openplanner.team/stops/X784agb"], ["https://tec.openplanner.team/stops/Bptbbie2", "https://tec.openplanner.team/stops/Brxmcna1"], ["https://tec.openplanner.team/stops/Cfrplac4", "https://tec.openplanner.team/stops/Cfrtry2"], ["https://tec.openplanner.team/stops/Blmlbif1", "https://tec.openplanner.team/stops/Blmlfau2"], ["https://tec.openplanner.team/stops/H1mc127a", "https://tec.openplanner.team/stops/H1mc129a"], ["https://tec.openplanner.team/stops/H4hx111a", "https://tec.openplanner.team/stops/H4hx112b"], ["https://tec.openplanner.team/stops/H2ch100a", "https://tec.openplanner.team/stops/H2ch100b"], ["https://tec.openplanner.team/stops/X664abb", "https://tec.openplanner.team/stops/X664afb"], ["https://tec.openplanner.team/stops/LSMchat1", "https://tec.openplanner.team/stops/LTPhenr2"], ["https://tec.openplanner.team/stops/N501neb", "https://tec.openplanner.team/stops/N501ney"], ["https://tec.openplanner.team/stops/LAUabat2", "https://tec.openplanner.team/stops/LAUcose2"], ["https://tec.openplanner.team/stops/H4mv190a", "https://tec.openplanner.team/stops/H4mv192b"], ["https://tec.openplanner.team/stops/Lpegole2", "https://tec.openplanner.team/stops/LWecorn2"], ["https://tec.openplanner.team/stops/LhEauto2", "https://tec.openplanner.team/stops/LhEherb2"], ["https://tec.openplanner.team/stops/X725ajb", "https://tec.openplanner.team/stops/X725ala"], ["https://tec.openplanner.team/stops/N425adb", "https://tec.openplanner.team/stops/N425aea"], ["https://tec.openplanner.team/stops/Cgpchgo2", "https://tec.openplanner.team/stops/H2gy100b"], ["https://tec.openplanner.team/stops/H2hl110b", "https://tec.openplanner.team/stops/H2sv216a"], ["https://tec.openplanner.team/stops/Blthwav2", "https://tec.openplanner.team/stops/Bmlngvi2"], ["https://tec.openplanner.team/stops/N549aab", "https://tec.openplanner.team/stops/N549aca"], ["https://tec.openplanner.team/stops/N576aia", "https://tec.openplanner.team/stops/N576aib"], ["https://tec.openplanner.team/stops/Lousite1", "https://tec.openplanner.team/stops/Lousite3"], ["https://tec.openplanner.team/stops/N501gia", "https://tec.openplanner.team/stops/N501gnb"], ["https://tec.openplanner.team/stops/LETec--2", "https://tec.openplanner.team/stops/LETeg--2"], ["https://tec.openplanner.team/stops/H3br101a", "https://tec.openplanner.team/stops/H3br101b"], ["https://tec.openplanner.team/stops/H4ty302b", "https://tec.openplanner.team/stops/H4ty323a"], ["https://tec.openplanner.team/stops/Crcegli4", "https://tec.openplanner.team/stops/Crclorc1"], ["https://tec.openplanner.team/stops/LSZchpl1", "https://tec.openplanner.team/stops/LSZchpl2"], ["https://tec.openplanner.team/stops/LTEkl121", "https://tec.openplanner.team/stops/LTEkl161"], ["https://tec.openplanner.team/stops/Lccawir2", "https://tec.openplanner.team/stops/Lccawir4"], ["https://tec.openplanner.team/stops/Cctathe1", "https://tec.openplanner.team/stops/Cctgaux2"], ["https://tec.openplanner.team/stops/Bbstcha1", "https://tec.openplanner.team/stops/Bbstdpa1"], ["https://tec.openplanner.team/stops/H2sb221b", "https://tec.openplanner.team/stops/H2tr248a"], ["https://tec.openplanner.team/stops/N204aib", "https://tec.openplanner.team/stops/N204aja"], ["https://tec.openplanner.team/stops/LREchif2", "https://tec.openplanner.team/stops/LRErive1"], ["https://tec.openplanner.team/stops/LlZkirc1", "https://tec.openplanner.team/stops/LlZkirc2"], ["https://tec.openplanner.team/stops/Llgcfra1", "https://tec.openplanner.team/stops/Llgerac2"], ["https://tec.openplanner.team/stops/LaLkabi2", "https://tec.openplanner.team/stops/LmAkirc2"], ["https://tec.openplanner.team/stops/LERdeho2", "https://tec.openplanner.team/stops/LHseg--3"], ["https://tec.openplanner.team/stops/Lvtlomb2", "https://tec.openplanner.team/stops/Lvtvici1"], ["https://tec.openplanner.team/stops/Broncli2", "https://tec.openplanner.team/stops/Broneco2"], ["https://tec.openplanner.team/stops/LBjcent1", "https://tec.openplanner.team/stops/X576aib"], ["https://tec.openplanner.team/stops/Cgylouv2", "https://tec.openplanner.team/stops/Cgymetr2"], ["https://tec.openplanner.team/stops/X640asa", "https://tec.openplanner.team/stops/X640ata"], ["https://tec.openplanner.team/stops/X812asa", "https://tec.openplanner.team/stops/X812bab"], ["https://tec.openplanner.team/stops/H1em104b", "https://tec.openplanner.team/stops/H1em111c"], ["https://tec.openplanner.team/stops/X901bca", "https://tec.openplanner.team/stops/X943aba"], ["https://tec.openplanner.team/stops/X715aab", "https://tec.openplanner.team/stops/X715acb"], ["https://tec.openplanner.team/stops/LGLbrus2", "https://tec.openplanner.team/stops/LGLgeer2"], ["https://tec.openplanner.team/stops/H1hn205b", "https://tec.openplanner.team/stops/H1hn365b"], ["https://tec.openplanner.team/stops/H4ce101a", "https://tec.openplanner.team/stops/H4ce102b"], ["https://tec.openplanner.team/stops/H1te173a", "https://tec.openplanner.team/stops/H1te173b"], ["https://tec.openplanner.team/stops/H4ty311a", "https://tec.openplanner.team/stops/H4ty311b"], ["https://tec.openplanner.team/stops/Cmqbert1", "https://tec.openplanner.team/stops/N425abb"], ["https://tec.openplanner.team/stops/X637aea", "https://tec.openplanner.team/stops/X637amb"], ["https://tec.openplanner.team/stops/X943aba", "https://tec.openplanner.team/stops/X943acb"], ["https://tec.openplanner.team/stops/Btanbth1", "https://tec.openplanner.team/stops/Btanvil2"], ["https://tec.openplanner.team/stops/Canmonu1", "https://tec.openplanner.team/stops/Canterr2"], ["https://tec.openplanner.team/stops/LFUfonc2", "https://tec.openplanner.team/stops/LWDsott4"], ["https://tec.openplanner.team/stops/X750agb", "https://tec.openplanner.team/stops/X750avb"], ["https://tec.openplanner.team/stops/LVEeg--1", "https://tec.openplanner.team/stops/LVEfize1"], ["https://tec.openplanner.team/stops/Bnivbpe1", "https://tec.openplanner.team/stops/Bnivbpe2"], ["https://tec.openplanner.team/stops/Bbeabme1", "https://tec.openplanner.team/stops/Bbeabme2"], ["https://tec.openplanner.team/stops/LLrmaq-2", "https://tec.openplanner.team/stops/LLrrmaq1"], ["https://tec.openplanner.team/stops/LvA30--2", "https://tec.openplanner.team/stops/LwEdorf1"], ["https://tec.openplanner.team/stops/LNIdoma1", "https://tec.openplanner.team/stops/LSPsauv1"], ["https://tec.openplanner.team/stops/X358aea", "https://tec.openplanner.team/stops/X994adb"], ["https://tec.openplanner.team/stops/LBgbaga1", "https://tec.openplanner.team/stops/LBgnach1"], ["https://tec.openplanner.team/stops/LOdbuis2", "https://tec.openplanner.team/stops/LVlleme4"], ["https://tec.openplanner.team/stops/LCObouh2", "https://tec.openplanner.team/stops/Lpejonc1"], ["https://tec.openplanner.team/stops/Cjojonc1", "https://tec.openplanner.team/stops/NC24akb"], ["https://tec.openplanner.team/stops/N501cky", "https://tec.openplanner.team/stops/N501ckz"], ["https://tec.openplanner.team/stops/H4an104a", "https://tec.openplanner.team/stops/H4an112a"], ["https://tec.openplanner.team/stops/X837agb", "https://tec.openplanner.team/stops/X837ahb"], ["https://tec.openplanner.team/stops/H1bl105a", "https://tec.openplanner.team/stops/H1eq116a"], ["https://tec.openplanner.team/stops/LhPheps1", "https://tec.openplanner.team/stops/LmRkreu4"], ["https://tec.openplanner.team/stops/Ladboti1", "https://tec.openplanner.team/stops/Ladotto2"], ["https://tec.openplanner.team/stops/N506aaa", "https://tec.openplanner.team/stops/N506bva"], ["https://tec.openplanner.team/stops/N501fda", "https://tec.openplanner.team/stops/N501fdb"], ["https://tec.openplanner.team/stops/H1mj131a", "https://tec.openplanner.team/stops/H1mj131b"], ["https://tec.openplanner.team/stops/N551aga", "https://tec.openplanner.team/stops/N551agb"], ["https://tec.openplanner.team/stops/LHMcruc2", "https://tec.openplanner.team/stops/LHMhof-2"], ["https://tec.openplanner.team/stops/H4ma201a", "https://tec.openplanner.team/stops/H4ma205a"], ["https://tec.openplanner.team/stops/LCPlebl1", "https://tec.openplanner.team/stops/LCPlebl2"], ["https://tec.openplanner.team/stops/N160ada", "https://tec.openplanner.team/stops/N160aeb"], ["https://tec.openplanner.team/stops/Bllngar4", "https://tec.openplanner.team/stops/Bllngle1"], ["https://tec.openplanner.team/stops/Cgzdeve1", "https://tec.openplanner.team/stops/Cmyjaci2"], ["https://tec.openplanner.team/stops/H1so146a", "https://tec.openplanner.team/stops/H1so146b"], ["https://tec.openplanner.team/stops/Llglefe1", "https://tec.openplanner.team/stops/Llgwesp2"], ["https://tec.openplanner.team/stops/LHChaut6", "https://tec.openplanner.team/stops/LHCponc4"], ["https://tec.openplanner.team/stops/LBdcarr1", "https://tec.openplanner.team/stops/LSMpoin2"], ["https://tec.openplanner.team/stops/LHYdogn1", "https://tec.openplanner.team/stops/LSpfond2"], ["https://tec.openplanner.team/stops/X657abb", "https://tec.openplanner.team/stops/X657ama"], ["https://tec.openplanner.team/stops/N501jua", "https://tec.openplanner.team/stops/N521amb"], ["https://tec.openplanner.team/stops/LHXfont1", "https://tec.openplanner.team/stops/LLVboss1"], ["https://tec.openplanner.team/stops/LgRha211", "https://tec.openplanner.team/stops/LtH28a-1"], ["https://tec.openplanner.team/stops/H1ms278b", "https://tec.openplanner.team/stops/H1ms907a"], ["https://tec.openplanner.team/stops/LBspiet2", "https://tec.openplanner.team/stops/NL72aeb"], ["https://tec.openplanner.team/stops/LhGfrie1", "https://tec.openplanner.team/stops/LhGrote1"], ["https://tec.openplanner.team/stops/X661acb", "https://tec.openplanner.team/stops/X661aja"], ["https://tec.openplanner.team/stops/LAVpequ1", "https://tec.openplanner.team/stops/LBRpier2"], ["https://tec.openplanner.team/stops/LBEairp1", "https://tec.openplanner.team/stops/LESflag1"], ["https://tec.openplanner.team/stops/N501kna", "https://tec.openplanner.team/stops/N501kpb"], ["https://tec.openplanner.team/stops/LHUdeni4", "https://tec.openplanner.team/stops/LHUeuro4"], ["https://tec.openplanner.team/stops/X780aja", "https://tec.openplanner.team/stops/X792aba"], ["https://tec.openplanner.team/stops/N501gba", "https://tec.openplanner.team/stops/N501lob"], ["https://tec.openplanner.team/stops/LSTchen2", "https://tec.openplanner.team/stops/LSTmast2"], ["https://tec.openplanner.team/stops/X756aga", "https://tec.openplanner.team/stops/X756agd"], ["https://tec.openplanner.team/stops/H1on128b", "https://tec.openplanner.team/stops/H1on128c"], ["https://tec.openplanner.team/stops/N539aka", "https://tec.openplanner.team/stops/N539akb"], ["https://tec.openplanner.team/stops/H2pe162a", "https://tec.openplanner.team/stops/H2pe162d"], ["https://tec.openplanner.team/stops/Bbcocvb1", "https://tec.openplanner.team/stops/Bbcomar1"], ["https://tec.openplanner.team/stops/H1gy115a", "https://tec.openplanner.team/stops/H1gy115b"], ["https://tec.openplanner.team/stops/X659aha", "https://tec.openplanner.team/stops/X659aia"], ["https://tec.openplanner.team/stops/LtH28a-1", "https://tec.openplanner.team/stops/LtHfrie2"], ["https://tec.openplanner.team/stops/X618amb", "https://tec.openplanner.team/stops/X618anb"], ["https://tec.openplanner.team/stops/LWM759-2", "https://tec.openplanner.team/stops/LWMcent2"], ["https://tec.openplanner.team/stops/LCEec--1", "https://tec.openplanner.team/stops/LMIcamp1"], ["https://tec.openplanner.team/stops/N540acb", "https://tec.openplanner.team/stops/N540ada"], ["https://tec.openplanner.team/stops/LbUbisc2", "https://tec.openplanner.team/stops/LbUmolk2"], ["https://tec.openplanner.team/stops/X725adb", "https://tec.openplanner.team/stops/X725aib"], ["https://tec.openplanner.team/stops/Cslbhau1", "https://tec.openplanner.team/stops/Cvtegli1"], ["https://tec.openplanner.team/stops/Cfocant2", "https://tec.openplanner.team/stops/CMfont1"], ["https://tec.openplanner.team/stops/H1ne144a", "https://tec.openplanner.team/stops/H1ne147a"], ["https://tec.openplanner.team/stops/H2bh112b", "https://tec.openplanner.team/stops/H2jo161d"], ["https://tec.openplanner.team/stops/Cptccas2", "https://tec.openplanner.team/stops/Cptrebe2"], ["https://tec.openplanner.team/stops/X879alb", "https://tec.openplanner.team/stops/X879asa"], ["https://tec.openplanner.team/stops/LbRfrie2", "https://tec.openplanner.team/stops/LbRkirc2"], ["https://tec.openplanner.team/stops/Bwavnam1", "https://tec.openplanner.team/stops/Bwavnam4"], ["https://tec.openplanner.team/stops/X730aba", "https://tec.openplanner.team/stops/X730aea"], ["https://tec.openplanner.team/stops/Lbbviad2", "https://tec.openplanner.team/stops/Lgrorch2"], ["https://tec.openplanner.team/stops/X917aha", "https://tec.openplanner.team/stops/X917ajb"], ["https://tec.openplanner.team/stops/X614bba", "https://tec.openplanner.team/stops/X626ala"], ["https://tec.openplanner.team/stops/LeUhaas2", "https://tec.openplanner.team/stops/LeUolen1"], ["https://tec.openplanner.team/stops/NR21aaa", "https://tec.openplanner.team/stops/NR21abc"], ["https://tec.openplanner.team/stops/LGHplai2", "https://tec.openplanner.team/stops/X542ahb"], ["https://tec.openplanner.team/stops/H4mt217a", "https://tec.openplanner.team/stops/H4mt217b"], ["https://tec.openplanner.team/stops/LNCcedr1", "https://tec.openplanner.team/stops/LNCcedr2"], ["https://tec.openplanner.team/stops/Cdamare2", "https://tec.openplanner.team/stops/Cloravi1"], ["https://tec.openplanner.team/stops/X876aba", "https://tec.openplanner.team/stops/X876aea"], ["https://tec.openplanner.team/stops/Brsgges2", "https://tec.openplanner.team/stops/Brsgpbo1"], ["https://tec.openplanner.team/stops/LHAclin1", "https://tec.openplanner.team/stops/LHAclin2"], ["https://tec.openplanner.team/stops/Lbrnanc1", "https://tec.openplanner.team/stops/Llginte2"], ["https://tec.openplanner.team/stops/LAMfroi1", "https://tec.openplanner.team/stops/LAMpirk2"], ["https://tec.openplanner.team/stops/N123acb", "https://tec.openplanner.team/stops/N123adb"], ["https://tec.openplanner.team/stops/X903aba", "https://tec.openplanner.team/stops/X903aca"], ["https://tec.openplanner.team/stops/X985aea", "https://tec.openplanner.team/stops/X985ahb"], ["https://tec.openplanner.team/stops/Cgocnor1", "https://tec.openplanner.team/stops/Cgocrus2"], ["https://tec.openplanner.team/stops/X659aea", "https://tec.openplanner.team/stops/X659afa"], ["https://tec.openplanner.team/stops/Llgbatt1", "https://tec.openplanner.team/stops/Llgbatt2"], ["https://tec.openplanner.team/stops/H1mr126a", "https://tec.openplanner.team/stops/H1on129a"], ["https://tec.openplanner.team/stops/Cmlbulp3", "https://tec.openplanner.team/stops/Cmlcazi1"], ["https://tec.openplanner.team/stops/N501lpb", "https://tec.openplanner.team/stops/N501lra"], ["https://tec.openplanner.team/stops/Cgygayo4", "https://tec.openplanner.team/stops/Cgylouv1"], ["https://tec.openplanner.team/stops/LHgdari1", "https://tec.openplanner.team/stops/LHgdari2"], ["https://tec.openplanner.team/stops/LeUlasc1", "https://tec.openplanner.team/stops/LeUlasc3"], ["https://tec.openplanner.team/stops/X307adb", "https://tec.openplanner.team/stops/X316acb"], ["https://tec.openplanner.team/stops/LHUdelc2", "https://tec.openplanner.team/stops/LHUgdpl2"], ["https://tec.openplanner.team/stops/LWDbure2", "https://tec.openplanner.team/stops/LWDmass1"], ["https://tec.openplanner.team/stops/N118aaa", "https://tec.openplanner.team/stops/N118aib"], ["https://tec.openplanner.team/stops/Bolpmre1", "https://tec.openplanner.team/stops/Bolppla4"], ["https://tec.openplanner.team/stops/H1ha187b", "https://tec.openplanner.team/stops/H1ha197b"], ["https://tec.openplanner.team/stops/Cgrgend2", "https://tec.openplanner.team/stops/Cgrlorm2"], ["https://tec.openplanner.team/stops/X723ajb", "https://tec.openplanner.team/stops/X723amb"], ["https://tec.openplanner.team/stops/H1bo106a", "https://tec.openplanner.team/stops/H1bo106c"], ["https://tec.openplanner.team/stops/N515ata", "https://tec.openplanner.team/stops/N515atb"], ["https://tec.openplanner.team/stops/Cgosoux1", "https://tec.openplanner.team/stops/Cgosoux2"], ["https://tec.openplanner.team/stops/H4ty314c", "https://tec.openplanner.team/stops/H4ty314e"], ["https://tec.openplanner.team/stops/H4rm111a", "https://tec.openplanner.team/stops/H4rm114b"], ["https://tec.openplanner.team/stops/H1en100b", "https://tec.openplanner.team/stops/H1en101a"], ["https://tec.openplanner.team/stops/X615awa", "https://tec.openplanner.team/stops/X615bba"], ["https://tec.openplanner.team/stops/X616adb", "https://tec.openplanner.team/stops/X616aja"], ["https://tec.openplanner.team/stops/H4lz128b", "https://tec.openplanner.team/stops/H4lz164a"], ["https://tec.openplanner.team/stops/X663aaa", "https://tec.openplanner.team/stops/X663aab"], ["https://tec.openplanner.team/stops/X660aea", "https://tec.openplanner.team/stops/X661aqa"], ["https://tec.openplanner.team/stops/Bwavfol2", "https://tec.openplanner.team/stops/Bwavpar1"], ["https://tec.openplanner.team/stops/N501hma", "https://tec.openplanner.team/stops/N501iab"], ["https://tec.openplanner.team/stops/LJvbane1", "https://tec.openplanner.team/stops/X781abb"], ["https://tec.openplanner.team/stops/Bblagar5", "https://tec.openplanner.team/stops/Bblagar6"], ["https://tec.openplanner.team/stops/LHNecpr4", "https://tec.openplanner.team/stops/LHNhv--2"], ["https://tec.openplanner.team/stops/X955aea", "https://tec.openplanner.team/stops/X955aha"], ["https://tec.openplanner.team/stops/Lcefoxh1", "https://tec.openplanner.team/stops/Lcefoxh2"], ["https://tec.openplanner.team/stops/Lvegc--5", "https://tec.openplanner.team/stops/Lvegc--7"], ["https://tec.openplanner.team/stops/N558afa", "https://tec.openplanner.team/stops/N558afb"], ["https://tec.openplanner.team/stops/Csshouy1", "https://tec.openplanner.team/stops/Csslesc1"], ["https://tec.openplanner.team/stops/H4hx117b", "https://tec.openplanner.team/stops/H4hx120a"], ["https://tec.openplanner.team/stops/H4by116a", "https://tec.openplanner.team/stops/H4by119a"], ["https://tec.openplanner.team/stops/H3so163a", "https://tec.openplanner.team/stops/H3so172a"], ["https://tec.openplanner.team/stops/LHVeg--2", "https://tec.openplanner.team/stops/LHVetoi1"], ["https://tec.openplanner.team/stops/X888abb", "https://tec.openplanner.team/stops/X888agb"], ["https://tec.openplanner.team/stops/H1mb129b", "https://tec.openplanner.team/stops/H1mb131a"], ["https://tec.openplanner.team/stops/Lflheid2", "https://tec.openplanner.team/stops/Lfljupi2"], ["https://tec.openplanner.team/stops/X890adb", "https://tec.openplanner.team/stops/X891aaa"], ["https://tec.openplanner.team/stops/N117ayb", "https://tec.openplanner.team/stops/N117azb"], ["https://tec.openplanner.team/stops/LLrbuis2", "https://tec.openplanner.team/stops/LLrfagn2"], ["https://tec.openplanner.team/stops/H1wg125c", "https://tec.openplanner.team/stops/H1wg126b"], ["https://tec.openplanner.team/stops/H1ol145b", "https://tec.openplanner.team/stops/H1ol146b"], ["https://tec.openplanner.team/stops/Bwancal3", "https://tec.openplanner.team/stops/Bwanthi1"], ["https://tec.openplanner.team/stops/N501grf", "https://tec.openplanner.team/stops/N501msa"], ["https://tec.openplanner.team/stops/Lprferm1", "https://tec.openplanner.team/stops/Lprferm2"], ["https://tec.openplanner.team/stops/N508ajc", "https://tec.openplanner.team/stops/N508apa"], ["https://tec.openplanner.team/stops/Lbrcard1", "https://tec.openplanner.team/stops/Lgrfort1"], ["https://tec.openplanner.team/stops/H4ty307b", "https://tec.openplanner.team/stops/H4ty338b"], ["https://tec.openplanner.team/stops/LSOchau2", "https://tec.openplanner.team/stops/LSOdow%C3%A91"], ["https://tec.openplanner.team/stops/N301afc", "https://tec.openplanner.team/stops/N302aaa"], ["https://tec.openplanner.team/stops/Cbcha651", "https://tec.openplanner.team/stops/Cthstre1"], ["https://tec.openplanner.team/stops/Chhverr2", "https://tec.openplanner.team/stops/Cjxvalh2"], ["https://tec.openplanner.team/stops/Cmapeet1", "https://tec.openplanner.team/stops/Cmarroy1"], ["https://tec.openplanner.team/stops/X911akb", "https://tec.openplanner.team/stops/X911amb"], ["https://tec.openplanner.team/stops/LCljose1", "https://tec.openplanner.team/stops/LCljose2"], ["https://tec.openplanner.team/stops/Lagindu1", "https://tec.openplanner.team/stops/Lagorch2"], ["https://tec.openplanner.team/stops/N501fhb", "https://tec.openplanner.team/stops/N501lya"], ["https://tec.openplanner.team/stops/Lvc4bra2", "https://tec.openplanner.team/stops/Lvcbalt2"], ["https://tec.openplanner.team/stops/LLrcomb1", "https://tec.openplanner.team/stops/LLrvill2"], ["https://tec.openplanner.team/stops/Cbfcham1", "https://tec.openplanner.team/stops/NC11ajb"], ["https://tec.openplanner.team/stops/H2sb259b", "https://tec.openplanner.team/stops/H3lr110a"], ["https://tec.openplanner.team/stops/H1gn147a", "https://tec.openplanner.team/stops/H1gn150b"], ["https://tec.openplanner.team/stops/X601bwa", "https://tec.openplanner.team/stops/X601csb"], ["https://tec.openplanner.team/stops/Bblacha1", "https://tec.openplanner.team/stops/Bblamsp3"], ["https://tec.openplanner.team/stops/Lbhpeti2", "https://tec.openplanner.team/stops/LMFmoul1"], ["https://tec.openplanner.team/stops/H1ms263b", "https://tec.openplanner.team/stops/H1ms275b"], ["https://tec.openplanner.team/stops/LWAclos1", "https://tec.openplanner.team/stops/LWAeloi2"], ["https://tec.openplanner.team/stops/H4ea131a", "https://tec.openplanner.team/stops/H4wr174b"], ["https://tec.openplanner.team/stops/X879aba", "https://tec.openplanner.team/stops/X879arb"], ["https://tec.openplanner.team/stops/LWOcomm1", "https://tec.openplanner.team/stops/LWOpier1"], ["https://tec.openplanner.team/stops/Bnivace1", "https://tec.openplanner.team/stops/Bnivvri2"], ["https://tec.openplanner.team/stops/H4gu109b", "https://tec.openplanner.team/stops/H4gu110b"], ["https://tec.openplanner.team/stops/Cctecol2", "https://tec.openplanner.team/stops/Cctvict3"], ["https://tec.openplanner.team/stops/Louaout2", "https://tec.openplanner.team/stops/Lourose3"], ["https://tec.openplanner.team/stops/LDpulve1", "https://tec.openplanner.team/stops/LVukabi2"], ["https://tec.openplanner.team/stops/Csecout1", "https://tec.openplanner.team/stops/Csecout2"], ["https://tec.openplanner.team/stops/Blemkap1", "https://tec.openplanner.team/stops/Btubhoq1"], ["https://tec.openplanner.team/stops/X828aaa", "https://tec.openplanner.team/stops/X829aba"], ["https://tec.openplanner.team/stops/N501ldb", "https://tec.openplanner.team/stops/N538aaa"], ["https://tec.openplanner.team/stops/N153aca", "https://tec.openplanner.team/stops/N153aea"], ["https://tec.openplanner.team/stops/H4li179b", "https://tec.openplanner.team/stops/H4mb205b"], ["https://tec.openplanner.team/stops/Bbaulil2", "https://tec.openplanner.team/stops/Bnivsnu1"], ["https://tec.openplanner.team/stops/Bolgfon2", "https://tec.openplanner.team/stops/Bpthrsp1"], ["https://tec.openplanner.team/stops/X948aob", "https://tec.openplanner.team/stops/X948avb"], ["https://tec.openplanner.team/stops/Lmibove4", "https://tec.openplanner.team/stops/Lmieg--1"], ["https://tec.openplanner.team/stops/LSProya1", "https://tec.openplanner.team/stops/LSPxhou1"], ["https://tec.openplanner.team/stops/Lveleje1", "https://tec.openplanner.team/stops/Lveleje2"], ["https://tec.openplanner.team/stops/Bbchdra2", "https://tec.openplanner.team/stops/Bwaucan1"], ["https://tec.openplanner.team/stops/X979aba", "https://tec.openplanner.team/stops/X979acb"], ["https://tec.openplanner.team/stops/LSAjacq1", "https://tec.openplanner.team/stops/LSAmous1"], ["https://tec.openplanner.team/stops/Bclgapi1", "https://tec.openplanner.team/stops/Bdlmgla3"], ["https://tec.openplanner.team/stops/X756aia", "https://tec.openplanner.team/stops/X757akb"], ["https://tec.openplanner.team/stops/X809afa", "https://tec.openplanner.team/stops/X811aaa"], ["https://tec.openplanner.team/stops/X601dfa", "https://tec.openplanner.team/stops/X612aab"], ["https://tec.openplanner.team/stops/X808aga", "https://tec.openplanner.team/stops/X811afa"], ["https://tec.openplanner.team/stops/LMEwerg1", "https://tec.openplanner.team/stops/LMIterr1"], ["https://tec.openplanner.team/stops/H2fa105a", "https://tec.openplanner.team/stops/H2fa108a"], ["https://tec.openplanner.team/stops/X222adc", "https://tec.openplanner.team/stops/X919aka"], ["https://tec.openplanner.team/stops/N536aca", "https://tec.openplanner.team/stops/N536aob"], ["https://tec.openplanner.team/stops/H1po137a", "https://tec.openplanner.team/stops/H1po137b"], ["https://tec.openplanner.team/stops/Cgzcour1", "https://tec.openplanner.team/stops/Cgzm1482"], ["https://tec.openplanner.team/stops/LmI36--2", "https://tec.openplanner.team/stops/LmIvale4"], ["https://tec.openplanner.team/stops/Lagarde2", "https://tec.openplanner.team/stops/Lagptba2"], ["https://tec.openplanner.team/stops/Becegar1", "https://tec.openplanner.team/stops/H2ec100a"], ["https://tec.openplanner.team/stops/H1wa140a", "https://tec.openplanner.team/stops/H1wa141a"], ["https://tec.openplanner.team/stops/X608aaa", "https://tec.openplanner.team/stops/X608ajb"], ["https://tec.openplanner.team/stops/LLTgole1", "https://tec.openplanner.team/stops/LLTther1"], ["https://tec.openplanner.team/stops/LKmcite1", "https://tec.openplanner.team/stops/LOdkeme2"], ["https://tec.openplanner.team/stops/N308bia", "https://tec.openplanner.team/stops/N308bib"], ["https://tec.openplanner.team/stops/N553acb", "https://tec.openplanner.team/stops/N553anb"], ["https://tec.openplanner.team/stops/X771adb", "https://tec.openplanner.team/stops/X771afa"], ["https://tec.openplanner.team/stops/Ljuchap2", "https://tec.openplanner.team/stops/Ljuchap3"], ["https://tec.openplanner.team/stops/Lwachal2", "https://tec.openplanner.team/stops/Lwaeau-1"], ["https://tec.openplanner.team/stops/H4mb143a", "https://tec.openplanner.team/stops/H4mb143b"], ["https://tec.openplanner.team/stops/H1qp150b", "https://tec.openplanner.team/stops/H1qy134b"], ["https://tec.openplanner.team/stops/Btsllnd1", "https://tec.openplanner.team/stops/Btsllnd2"], ["https://tec.openplanner.team/stops/Barchez2", "https://tec.openplanner.team/stops/Barchoc1"], ["https://tec.openplanner.team/stops/N548ama", "https://tec.openplanner.team/stops/N548asb"], ["https://tec.openplanner.team/stops/H1le124a", "https://tec.openplanner.team/stops/H1le128a"], ["https://tec.openplanner.team/stops/H1fr107b", "https://tec.openplanner.team/stops/H1fr107d"], ["https://tec.openplanner.team/stops/N351ajd", "https://tec.openplanner.team/stops/N351ama"], ["https://tec.openplanner.team/stops/LWZeg--1", "https://tec.openplanner.team/stops/X261aaa"], ["https://tec.openplanner.team/stops/H4hq133a", "https://tec.openplanner.team/stops/H4hq133c"], ["https://tec.openplanner.team/stops/Bdvmalo1", "https://tec.openplanner.team/stops/Bdvmcsa2"], ["https://tec.openplanner.team/stops/N166aca", "https://tec.openplanner.team/stops/N168aaa"], ["https://tec.openplanner.team/stops/N569aaa", "https://tec.openplanner.team/stops/N569aba"], ["https://tec.openplanner.team/stops/H4ae100a", "https://tec.openplanner.team/stops/H4ae101a"], ["https://tec.openplanner.team/stops/Lhefoot2", "https://tec.openplanner.team/stops/Lhrmeta1"], ["https://tec.openplanner.team/stops/N506bpa", "https://tec.openplanner.team/stops/N506bpb"], ["https://tec.openplanner.team/stops/N501lca", "https://tec.openplanner.team/stops/N501lcy"], ["https://tec.openplanner.team/stops/LhOfrie1", "https://tec.openplanner.team/stops/LhOfrie2"], ["https://tec.openplanner.team/stops/H1ho122c", "https://tec.openplanner.team/stops/H1ho143c"], ["https://tec.openplanner.team/stops/LOLrafh2", "https://tec.openplanner.team/stops/LSOboeu1"], ["https://tec.openplanner.team/stops/Livvill2", "https://tec.openplanner.team/stops/LNCmc--1"], ["https://tec.openplanner.team/stops/N517adc", "https://tec.openplanner.team/stops/N581aab"], ["https://tec.openplanner.team/stops/LwYnr261", "https://tec.openplanner.team/stops/LwYnr262"], ["https://tec.openplanner.team/stops/LROmorf2", "https://tec.openplanner.team/stops/LWLeg--3"], ["https://tec.openplanner.team/stops/H1bo104b", "https://tec.openplanner.team/stops/H1ho123b"], ["https://tec.openplanner.team/stops/H4ld123a", "https://tec.openplanner.team/stops/H4ld129a"], ["https://tec.openplanner.team/stops/LFReg--1", "https://tec.openplanner.team/stops/LRfcent2"], ["https://tec.openplanner.team/stops/Lprcard2", "https://tec.openplanner.team/stops/Lprferm1"], ["https://tec.openplanner.team/stops/X804ana", "https://tec.openplanner.team/stops/X804anb"], ["https://tec.openplanner.team/stops/H4ht173a", "https://tec.openplanner.team/stops/H4ht173b"], ["https://tec.openplanner.team/stops/N121ajb", "https://tec.openplanner.team/stops/N121ajc"], ["https://tec.openplanner.team/stops/H2ha143a", "https://tec.openplanner.team/stops/H2ha143b"], ["https://tec.openplanner.team/stops/Boppegl1", "https://tec.openplanner.team/stops/Bsrbbas1"], ["https://tec.openplanner.team/stops/LBNauto1", "https://tec.openplanner.team/stops/LBNhegg2"], ["https://tec.openplanner.team/stops/Lhrhosp1", "https://tec.openplanner.team/stops/Lhrhurb2"], ["https://tec.openplanner.team/stops/H2ca100a", "https://tec.openplanner.team/stops/H2ca108a"], ["https://tec.openplanner.team/stops/LBSpail4", "https://tec.openplanner.team/stops/LBSvi322"], ["https://tec.openplanner.team/stops/X789aba", "https://tec.openplanner.team/stops/X789abb"], ["https://tec.openplanner.team/stops/H1ev116a", "https://tec.openplanner.team/stops/H1ev116b"], ["https://tec.openplanner.team/stops/LCSpoud1", "https://tec.openplanner.team/stops/LSGsurf2"], ["https://tec.openplanner.team/stops/X907abb", "https://tec.openplanner.team/stops/X907aca"], ["https://tec.openplanner.team/stops/N501fra", "https://tec.openplanner.team/stops/N501iza"], ["https://tec.openplanner.team/stops/H5rx127a", "https://tec.openplanner.team/stops/H5rx149a"], ["https://tec.openplanner.team/stops/H4pl115a", "https://tec.openplanner.team/stops/H4pl115b"], ["https://tec.openplanner.team/stops/N308bhb", "https://tec.openplanner.team/stops/X308akb"], ["https://tec.openplanner.team/stops/Llgfran1", "https://tec.openplanner.team/stops/Llglema1"], ["https://tec.openplanner.team/stops/LAUcent1", "https://tec.openplanner.team/stops/LAUneuv4"], ["https://tec.openplanner.team/stops/Cflglav1", "https://tec.openplanner.team/stops/Cflmarq2"], ["https://tec.openplanner.team/stops/H4co151a", "https://tec.openplanner.team/stops/H4wn130a"], ["https://tec.openplanner.team/stops/Ctucomm1", "https://tec.openplanner.team/stops/NC28aea"], ["https://tec.openplanner.team/stops/LBEcomm2", "https://tec.openplanner.team/stops/LNipla4"], ["https://tec.openplanner.team/stops/H4hx116b", "https://tec.openplanner.team/stops/H4hx123b"], ["https://tec.openplanner.team/stops/N569aib", "https://tec.openplanner.team/stops/N569aic"], ["https://tec.openplanner.team/stops/Lchsa632", "https://tec.openplanner.team/stops/Lchsaec2"], ["https://tec.openplanner.team/stops/LbOre3b1", "https://tec.openplanner.team/stops/LmOkape1"], ["https://tec.openplanner.team/stops/X670ada", "https://tec.openplanner.team/stops/X670adb"], ["https://tec.openplanner.team/stops/Canmonu3", "https://tec.openplanner.team/stops/Canmonu4"], ["https://tec.openplanner.team/stops/X624aia", "https://tec.openplanner.team/stops/X624ajb"], ["https://tec.openplanner.team/stops/X754ajb", "https://tec.openplanner.team/stops/X754awa"], ["https://tec.openplanner.team/stops/N525aha", "https://tec.openplanner.team/stops/N525aia"], ["https://tec.openplanner.team/stops/Lgdmaye2", "https://tec.openplanner.team/stops/Lgdrena1"], ["https://tec.openplanner.team/stops/LLrc_ip4", "https://tec.openplanner.team/stops/LSPmart4"], ["https://tec.openplanner.team/stops/H1he101b", "https://tec.openplanner.team/stops/H1mh114a"], ["https://tec.openplanner.team/stops/H2le149b", "https://tec.openplanner.team/stops/H2le153a"], ["https://tec.openplanner.team/stops/LCPaywa2", "https://tec.openplanner.team/stops/LMvrabo2"], ["https://tec.openplanner.team/stops/Lrcpaqu1", "https://tec.openplanner.team/stops/Lrcpaqu2"], ["https://tec.openplanner.team/stops/Cgyrdid1", "https://tec.openplanner.team/stops/Cjuhame3"], ["https://tec.openplanner.team/stops/N509aqa", "https://tec.openplanner.team/stops/N509aub"], ["https://tec.openplanner.team/stops/LsVbell2", "https://tec.openplanner.team/stops/LsVfrie2"], ["https://tec.openplanner.team/stops/Cmybefe1", "https://tec.openplanner.team/stops/Cmypela1"], ["https://tec.openplanner.team/stops/Bohnmes1", "https://tec.openplanner.team/stops/Bohnmes3"], ["https://tec.openplanner.team/stops/Bcbqa361", "https://tec.openplanner.team/stops/Bhalvla2"], ["https://tec.openplanner.team/stops/N390amb", "https://tec.openplanner.team/stops/X991aeb"], ["https://tec.openplanner.team/stops/X715apa", "https://tec.openplanner.team/stops/X715apb"], ["https://tec.openplanner.team/stops/Bbeaap11", "https://tec.openplanner.team/stops/Bbeaegl2"], ["https://tec.openplanner.team/stops/N534atc", "https://tec.openplanner.team/stops/N534bbb"], ["https://tec.openplanner.team/stops/H1ha184b", "https://tec.openplanner.team/stops/H1ha186b"], ["https://tec.openplanner.team/stops/X644adb", "https://tec.openplanner.team/stops/X644aeb"], ["https://tec.openplanner.team/stops/X608adb", "https://tec.openplanner.team/stops/X608ava"], ["https://tec.openplanner.team/stops/X850aba", "https://tec.openplanner.team/stops/X850abb"], ["https://tec.openplanner.team/stops/Loufleu1", "https://tec.openplanner.team/stops/Loufleu2"], ["https://tec.openplanner.team/stops/Lghleon2", "https://tec.openplanner.team/stops/Lghneuv1"], ["https://tec.openplanner.team/stops/H4li179b", "https://tec.openplanner.team/stops/H4li179c"], ["https://tec.openplanner.team/stops/Bwavcar1", "https://tec.openplanner.team/stops/Bwavcar2"], ["https://tec.openplanner.team/stops/LSkmarq1", "https://tec.openplanner.team/stops/LSkmarq2"], ["https://tec.openplanner.team/stops/Lhutill2", "https://tec.openplanner.team/stops/Lvehauz2"], ["https://tec.openplanner.team/stops/H1mj126b", "https://tec.openplanner.team/stops/H1ml110b"], ["https://tec.openplanner.team/stops/N347afa", "https://tec.openplanner.team/stops/N347agb"], ["https://tec.openplanner.team/stops/Ljhmany1", "https://tec.openplanner.team/stops/LPobois2"], ["https://tec.openplanner.team/stops/H1ha184a", "https://tec.openplanner.team/stops/H1ha201a"], ["https://tec.openplanner.team/stops/LAMgare2", "https://tec.openplanner.team/stops/LOmrela1"], ["https://tec.openplanner.team/stops/X724aeb", "https://tec.openplanner.team/stops/X724afa"], ["https://tec.openplanner.team/stops/Cgrchas2", "https://tec.openplanner.team/stops/Cgrchea1"], ["https://tec.openplanner.team/stops/X765ada", "https://tec.openplanner.team/stops/X765adb"], ["https://tec.openplanner.team/stops/Ccocorb1", "https://tec.openplanner.team/stops/Ccocorb2"], ["https://tec.openplanner.team/stops/Lrogene1", "https://tec.openplanner.team/stops/Lromerl1"], ["https://tec.openplanner.team/stops/N244aib", "https://tec.openplanner.team/stops/N244awa"], ["https://tec.openplanner.team/stops/N101aib", "https://tec.openplanner.team/stops/N101aic"], ["https://tec.openplanner.team/stops/LBSchpl1", "https://tec.openplanner.team/stops/LRGchap1"], ["https://tec.openplanner.team/stops/LJAroue1", "https://tec.openplanner.team/stops/LSUhage1"], ["https://tec.openplanner.team/stops/Bbxlfro1", "https://tec.openplanner.team/stops/Bbxlner2"], ["https://tec.openplanner.team/stops/H1te184b", "https://tec.openplanner.team/stops/H1te188a"], ["https://tec.openplanner.team/stops/Lchorme1", "https://tec.openplanner.team/stops/LSReg--2"], ["https://tec.openplanner.team/stops/H2mo127d", "https://tec.openplanner.team/stops/H2mo144b"], ["https://tec.openplanner.team/stops/LTRsain3", "https://tec.openplanner.team/stops/LTRthie2"], ["https://tec.openplanner.team/stops/NC24aea", "https://tec.openplanner.team/stops/NC44aaa"], ["https://tec.openplanner.team/stops/Cflecep2", "https://tec.openplanner.team/stops/Cflhano1"], ["https://tec.openplanner.team/stops/X610aeb", "https://tec.openplanner.team/stops/X610aja"], ["https://tec.openplanner.team/stops/Csychap4", "https://tec.openplanner.team/stops/Csyjumo1"], ["https://tec.openplanner.team/stops/LBThaut1", "https://tec.openplanner.team/stops/LMhvina2"], ["https://tec.openplanner.team/stops/X911asb", "https://tec.openplanner.team/stops/X911ava"], ["https://tec.openplanner.team/stops/Bjausan1", "https://tec.openplanner.team/stops/Bjauvch2"], ["https://tec.openplanner.team/stops/X985aeb", "https://tec.openplanner.team/stops/X985aha"], ["https://tec.openplanner.team/stops/H4ce104a", "https://tec.openplanner.team/stops/H4ce104b"], ["https://tec.openplanner.team/stops/LNCchau2", "https://tec.openplanner.team/stops/LNCchau3"], ["https://tec.openplanner.team/stops/Crachap2", "https://tec.openplanner.team/stops/Craplac3"], ["https://tec.openplanner.team/stops/H1ca103b", "https://tec.openplanner.team/stops/H1ne143b"], ["https://tec.openplanner.team/stops/H4lp124b", "https://tec.openplanner.team/stops/H4my120a"], ["https://tec.openplanner.team/stops/N201anb", "https://tec.openplanner.team/stops/N202afb"], ["https://tec.openplanner.team/stops/LPLstri1", "https://tec.openplanner.team/stops/LPLstri2"], ["https://tec.openplanner.team/stops/LMAfali2", "https://tec.openplanner.team/stops/LMAwavr1"], ["https://tec.openplanner.team/stops/N425acb", "https://tec.openplanner.team/stops/N425agb"], ["https://tec.openplanner.team/stops/Lprceri1", "https://tec.openplanner.team/stops/Lprmana3"], ["https://tec.openplanner.team/stops/Bjaugar2", "https://tec.openplanner.team/stops/Bjaupro2"], ["https://tec.openplanner.team/stops/LCUmonu2", "https://tec.openplanner.team/stops/LCUthie2"], ["https://tec.openplanner.team/stops/H5rx146a", "https://tec.openplanner.team/stops/H5rx146b"], ["https://tec.openplanner.team/stops/Cacgare1", "https://tec.openplanner.team/stops/NC24abb"], ["https://tec.openplanner.team/stops/LHMgrun1", "https://tec.openplanner.team/stops/LHMhind2"], ["https://tec.openplanner.team/stops/X923agb", "https://tec.openplanner.team/stops/X923ahb"], ["https://tec.openplanner.team/stops/H1be103a", "https://tec.openplanner.team/stops/H1mc127a"], ["https://tec.openplanner.team/stops/Crocona1", "https://tec.openplanner.team/stops/Croplom4"], ["https://tec.openplanner.team/stops/Lsnfoot2", "https://tec.openplanner.team/stops/Lsnpaqu2"], ["https://tec.openplanner.team/stops/H1fr111b", "https://tec.openplanner.team/stops/H1fr127a"], ["https://tec.openplanner.team/stops/H1al146a", "https://tec.openplanner.team/stops/H1bs111a"], ["https://tec.openplanner.team/stops/N509atb", "https://tec.openplanner.team/stops/N511ama"], ["https://tec.openplanner.team/stops/Lhutann1", "https://tec.openplanner.team/stops/Lmneg--1"], ["https://tec.openplanner.team/stops/LOV62--2", "https://tec.openplanner.team/stops/LRObarr2"], ["https://tec.openplanner.team/stops/LTPbeau1", "https://tec.openplanner.team/stops/X777abb"], ["https://tec.openplanner.team/stops/H4wi164b", "https://tec.openplanner.team/stops/H4wi169b"], ["https://tec.openplanner.team/stops/X610abb", "https://tec.openplanner.team/stops/X611aaa"], ["https://tec.openplanner.team/stops/Llmdela1", "https://tec.openplanner.team/stops/LWexhav2"], ["https://tec.openplanner.team/stops/N501dra", "https://tec.openplanner.team/stops/N501ehb"], ["https://tec.openplanner.team/stops/LRmhage8", "https://tec.openplanner.team/stops/LRmsmvo1"], ["https://tec.openplanner.team/stops/Btieast1", "https://tec.openplanner.team/stops/Btiegoo1"], ["https://tec.openplanner.team/stops/X926aca", "https://tec.openplanner.team/stops/X927ada"], ["https://tec.openplanner.team/stops/X604aka", "https://tec.openplanner.team/stops/X604ala"], ["https://tec.openplanner.team/stops/N562alb", "https://tec.openplanner.team/stops/N570aab"], ["https://tec.openplanner.team/stops/X870aea", "https://tec.openplanner.team/stops/X879aea"], ["https://tec.openplanner.team/stops/LAWvold1", "https://tec.openplanner.team/stops/LAWvold2"], ["https://tec.openplanner.team/stops/X921aga", "https://tec.openplanner.team/stops/X921aha"], ["https://tec.openplanner.team/stops/Cvsduve2", "https://tec.openplanner.team/stops/Cvssncv1"], ["https://tec.openplanner.team/stops/H1gh159b", "https://tec.openplanner.team/stops/H1gh160b"], ["https://tec.openplanner.team/stops/H4rm109a", "https://tec.openplanner.team/stops/H4rm113a"], ["https://tec.openplanner.team/stops/Cjuhame3", "https://tec.openplanner.team/stops/Cjuruni2"], ["https://tec.openplanner.team/stops/Barqhro1", "https://tec.openplanner.team/stops/Barqhro4"], ["https://tec.openplanner.team/stops/X993aha", "https://tec.openplanner.team/stops/X993ahb"], ["https://tec.openplanner.team/stops/Bincegl1", "https://tec.openplanner.team/stops/Bincegl2"], ["https://tec.openplanner.team/stops/LGe4bra1", "https://tec.openplanner.team/stops/LGeforg1"], ["https://tec.openplanner.team/stops/X634aea", "https://tec.openplanner.team/stops/X634afb"], ["https://tec.openplanner.team/stops/Cmtneuv1", "https://tec.openplanner.team/stops/Cmtneuv2"], ["https://tec.openplanner.team/stops/Csiegli2", "https://tec.openplanner.team/stops/N106ahb"], ["https://tec.openplanner.team/stops/N874aaa", "https://tec.openplanner.team/stops/N894age"], ["https://tec.openplanner.team/stops/X666aga", "https://tec.openplanner.team/stops/X666alb"], ["https://tec.openplanner.team/stops/Lmochpl1", "https://tec.openplanner.team/stops/Lmochpl2"], ["https://tec.openplanner.team/stops/Lrccomm2", "https://tec.openplanner.team/stops/Lrclant3"], ["https://tec.openplanner.team/stops/H5pe144a", "https://tec.openplanner.team/stops/H5pe151b"], ["https://tec.openplanner.team/stops/H4ar102b", "https://tec.openplanner.team/stops/H4pl132a"], ["https://tec.openplanner.team/stops/H1ba108a", "https://tec.openplanner.team/stops/H1hh118b"], ["https://tec.openplanner.team/stops/X721aab", "https://tec.openplanner.team/stops/X721afb"], ["https://tec.openplanner.team/stops/Bolggar1", "https://tec.openplanner.team/stops/Bolppla3"], ["https://tec.openplanner.team/stops/X720aba", "https://tec.openplanner.team/stops/X720adb"], ["https://tec.openplanner.team/stops/Cpl4bra2", "https://tec.openplanner.team/stops/Cpl4bra3"], ["https://tec.openplanner.team/stops/Lbogonh2", "https://tec.openplanner.team/stops/Lbotilf1"], ["https://tec.openplanner.team/stops/LBpecco3", "https://tec.openplanner.team/stops/LBpvue-2"], ["https://tec.openplanner.team/stops/X790aaa", "https://tec.openplanner.team/stops/X790aab"], ["https://tec.openplanner.team/stops/X824afa", "https://tec.openplanner.team/stops/X824afb"], ["https://tec.openplanner.team/stops/Cjubrul4", "https://tec.openplanner.team/stops/CMchag1"], ["https://tec.openplanner.team/stops/X763aab", "https://tec.openplanner.team/stops/X763acb"], ["https://tec.openplanner.team/stops/H1ob361a", "https://tec.openplanner.team/stops/H1ob361b"], ["https://tec.openplanner.team/stops/N535ana", "https://tec.openplanner.team/stops/N535anb"], ["https://tec.openplanner.team/stops/H4br109a", "https://tec.openplanner.team/stops/H4br109b"], ["https://tec.openplanner.team/stops/LWEhosp2", "https://tec.openplanner.team/stops/LWEpaul2"], ["https://tec.openplanner.team/stops/Bbalvil1", "https://tec.openplanner.team/stops/N561aca"], ["https://tec.openplanner.team/stops/Lenhouc2", "https://tec.openplanner.team/stops/Lenmivi*"], ["https://tec.openplanner.team/stops/LBEairp3", "https://tec.openplanner.team/stops/LBEhaye1"], ["https://tec.openplanner.team/stops/LRIcite2", "https://tec.openplanner.team/stops/LRIhous2"], ["https://tec.openplanner.team/stops/LJUmc--1", "https://tec.openplanner.team/stops/LVSslin2"], ["https://tec.openplanner.team/stops/LWEcool1", "https://tec.openplanner.team/stops/LWEgend1"], ["https://tec.openplanner.team/stops/Caiecol2", "https://tec.openplanner.team/stops/N543cib"], ["https://tec.openplanner.team/stops/LwYboui1", "https://tec.openplanner.team/stops/LwYneue1"], ["https://tec.openplanner.team/stops/Ccipano1", "https://tec.openplanner.team/stops/Ccisart2"], ["https://tec.openplanner.team/stops/Cgywaut1", "https://tec.openplanner.team/stops/Cgywaut4"], ["https://tec.openplanner.team/stops/X224abb", "https://tec.openplanner.team/stops/X224ahb"], ["https://tec.openplanner.team/stops/LkEhaag2", "https://tec.openplanner.team/stops/LMsec--1"], ["https://tec.openplanner.team/stops/X601arb", "https://tec.openplanner.team/stops/X601bta"], ["https://tec.openplanner.team/stops/Llgborg1", "https://tec.openplanner.team/stops/Llgtir-1"], ["https://tec.openplanner.team/stops/X901bob", "https://tec.openplanner.team/stops/X901bra"], ["https://tec.openplanner.team/stops/LElverl1", "https://tec.openplanner.team/stops/LFTneur*"], ["https://tec.openplanner.team/stops/X724ada", "https://tec.openplanner.team/stops/X775aia"], ["https://tec.openplanner.team/stops/H1cu125c", "https://tec.openplanner.team/stops/H1cu131b"], ["https://tec.openplanner.team/stops/LsHlenz2", "https://tec.openplanner.team/stops/LsHthom1"], ["https://tec.openplanner.team/stops/LTPcamp1", "https://tec.openplanner.team/stops/LTPcamp2"], ["https://tec.openplanner.team/stops/Lmopave2", "https://tec.openplanner.team/stops/Lsnbrac1"], ["https://tec.openplanner.team/stops/N304aaa", "https://tec.openplanner.team/stops/N329aab"], ["https://tec.openplanner.team/stops/X615aga", "https://tec.openplanner.team/stops/X615baa"], ["https://tec.openplanner.team/stops/Cvlbvir1", "https://tec.openplanner.team/stops/NH21acb"], ["https://tec.openplanner.team/stops/X650aba", "https://tec.openplanner.team/stops/X650aca"], ["https://tec.openplanner.team/stops/H4ss157a", "https://tec.openplanner.team/stops/H4ss157b"], ["https://tec.openplanner.team/stops/X667aba", "https://tec.openplanner.team/stops/X667acb"], ["https://tec.openplanner.team/stops/H4ab101a", "https://tec.openplanner.team/stops/H5ma180a"], ["https://tec.openplanner.team/stops/Cjuheig1", "https://tec.openplanner.team/stops/Cromonn2"], ["https://tec.openplanner.team/stops/X911ama", "https://tec.openplanner.team/stops/X911aub"], ["https://tec.openplanner.team/stops/N548acb", "https://tec.openplanner.team/stops/N548amb"], ["https://tec.openplanner.team/stops/N501fma", "https://tec.openplanner.team/stops/N501fmb"], ["https://tec.openplanner.team/stops/X917aga", "https://tec.openplanner.team/stops/X917ahb"], ["https://tec.openplanner.team/stops/NL82aga", "https://tec.openplanner.team/stops/X222afa"], ["https://tec.openplanner.team/stops/X641aqa", "https://tec.openplanner.team/stops/X641arb"], ["https://tec.openplanner.team/stops/H1eo103a", "https://tec.openplanner.team/stops/H1gh148a"], ["https://tec.openplanner.team/stops/Bgligra1", "https://tec.openplanner.team/stops/Bgligra2"], ["https://tec.openplanner.team/stops/Cpccpas1", "https://tec.openplanner.team/stops/Cpclibe4"], ["https://tec.openplanner.team/stops/LSpfond1", "https://tec.openplanner.team/stops/LSpogne2"], ["https://tec.openplanner.team/stops/H1sa112b", "https://tec.openplanner.team/stops/H1sa114b"], ["https://tec.openplanner.team/stops/H4be101a", "https://tec.openplanner.team/stops/H5bs103a"], ["https://tec.openplanner.team/stops/LHrreal2", "https://tec.openplanner.team/stops/LHrwaya1"], ["https://tec.openplanner.team/stops/X612acb", "https://tec.openplanner.team/stops/X623abb"], ["https://tec.openplanner.team/stops/H4ru240a", "https://tec.openplanner.team/stops/H4ru246b"], ["https://tec.openplanner.team/stops/H4bn101a", "https://tec.openplanner.team/stops/H4pi133a"], ["https://tec.openplanner.team/stops/Ccychco1", "https://tec.openplanner.team/stops/Ccypetv2"], ["https://tec.openplanner.team/stops/LNoenne2", "https://tec.openplanner.team/stops/X917abb"], ["https://tec.openplanner.team/stops/N226ada", "https://tec.openplanner.team/stops/N321aeb"], ["https://tec.openplanner.team/stops/Lgdmaye1", "https://tec.openplanner.team/stops/LWetrib1"], ["https://tec.openplanner.team/stops/N233aab", "https://tec.openplanner.team/stops/N233abb"], ["https://tec.openplanner.team/stops/X615ama", "https://tec.openplanner.team/stops/X615ana"], ["https://tec.openplanner.team/stops/LWacime1", "https://tec.openplanner.team/stops/LWacime3"], ["https://tec.openplanner.team/stops/N141afb", "https://tec.openplanner.team/stops/N141aga"], ["https://tec.openplanner.team/stops/X983aaa", "https://tec.openplanner.team/stops/X986aia"], ["https://tec.openplanner.team/stops/LeYgros2", "https://tec.openplanner.team/stops/LeYheid2"], ["https://tec.openplanner.team/stops/Crccarr2", "https://tec.openplanner.team/stops/Crcgmah1"], ["https://tec.openplanner.team/stops/LPbchat1", "https://tec.openplanner.team/stops/LPbeg--1"], ["https://tec.openplanner.team/stops/Lqbecco2", "https://tec.openplanner.team/stops/LSAjacq2"], ["https://tec.openplanner.team/stops/Cna6che2", "https://tec.openplanner.team/stops/Cnawari2"], ["https://tec.openplanner.team/stops/Csepost1", "https://tec.openplanner.team/stops/Cvthoeu2"], ["https://tec.openplanner.team/stops/Lfhbott1", "https://tec.openplanner.team/stops/Lfhncha2"], ["https://tec.openplanner.team/stops/LQacabi1", "https://tec.openplanner.team/stops/LQafond1"], ["https://tec.openplanner.team/stops/Cmmceri2", "https://tec.openplanner.team/stops/Cmmpast2"], ["https://tec.openplanner.team/stops/H1ry135a", "https://tec.openplanner.team/stops/H1ry136b"], ["https://tec.openplanner.team/stops/Bnodcab2", "https://tec.openplanner.team/stops/Bnodeco1"], ["https://tec.openplanner.team/stops/H1fr130b", "https://tec.openplanner.team/stops/H1ge116a"], ["https://tec.openplanner.team/stops/Lre3che1", "https://tec.openplanner.team/stops/Lrechap2"], ["https://tec.openplanner.team/stops/H4mo156a", "https://tec.openplanner.team/stops/H4mo204a"], ["https://tec.openplanner.team/stops/X723aaa", "https://tec.openplanner.team/stops/X723ana"], ["https://tec.openplanner.team/stops/H1ob334a", "https://tec.openplanner.team/stops/H1ob341b"], ["https://tec.openplanner.team/stops/H2ll177b", "https://tec.openplanner.team/stops/H2ll197a"], ["https://tec.openplanner.team/stops/X756aka", "https://tec.openplanner.team/stops/X756akb"], ["https://tec.openplanner.team/stops/X818ata", "https://tec.openplanner.team/stops/X818awa"], ["https://tec.openplanner.team/stops/Boveker2", "https://tec.openplanner.team/stops/Brsrfen1"], ["https://tec.openplanner.team/stops/Cfcmass1", "https://tec.openplanner.team/stops/NH03adb"], ["https://tec.openplanner.team/stops/LWDfuma2", "https://tec.openplanner.team/stops/LWDhous2"], ["https://tec.openplanner.team/stops/Ctufleu1", "https://tec.openplanner.team/stops/Ctufleu2"], ["https://tec.openplanner.team/stops/Bnivplt2", "https://tec.openplanner.team/stops/Bnivsho1"], ["https://tec.openplanner.team/stops/N542ala", "https://tec.openplanner.team/stops/N542amb"], ["https://tec.openplanner.team/stops/Lvedepa*", "https://tec.openplanner.team/stops/Lvereno1"], ["https://tec.openplanner.team/stops/LBNhegg2", "https://tec.openplanner.team/stops/LBNvill6"], ["https://tec.openplanner.team/stops/LOUbleu2", "https://tec.openplanner.team/stops/LOUherm1"], ["https://tec.openplanner.team/stops/Llgguer1", "https://tec.openplanner.team/stops/Llgnata1"], ["https://tec.openplanner.team/stops/H3lr108b", "https://tec.openplanner.team/stops/H3lr110a"], ["https://tec.openplanner.team/stops/LBRtrag2", "https://tec.openplanner.team/stops/LLTeg--2"], ["https://tec.openplanner.team/stops/N561afa", "https://tec.openplanner.team/stops/N561aha"], ["https://tec.openplanner.team/stops/Cjugill3", "https://tec.openplanner.team/stops/Cjugill6"], ["https://tec.openplanner.team/stops/H1hl126b", "https://tec.openplanner.team/stops/H1hl129b"], ["https://tec.openplanner.team/stops/N426acb", "https://tec.openplanner.team/stops/N426adb"], ["https://tec.openplanner.team/stops/H1ag105a", "https://tec.openplanner.team/stops/H1ag107b"], ["https://tec.openplanner.team/stops/H4rc232b", "https://tec.openplanner.team/stops/H4rc234c"], ["https://tec.openplanner.team/stops/N501lda", "https://tec.openplanner.team/stops/N501ldb"], ["https://tec.openplanner.team/stops/H4ty308a", "https://tec.openplanner.team/stops/H4ty317b"], ["https://tec.openplanner.team/stops/N244ahb", "https://tec.openplanner.team/stops/N251adb"], ["https://tec.openplanner.team/stops/Ccybeau1", "https://tec.openplanner.team/stops/Crbrgar1"], ["https://tec.openplanner.team/stops/LXHbois1", "https://tec.openplanner.team/stops/LXHeg--1"], ["https://tec.openplanner.team/stops/LHEchar2", "https://tec.openplanner.team/stops/LHEhv--2"], ["https://tec.openplanner.team/stops/N539asb", "https://tec.openplanner.team/stops/N539ata"], ["https://tec.openplanner.team/stops/X650aca", "https://tec.openplanner.team/stops/X650acb"], ["https://tec.openplanner.team/stops/Lhurigu1", "https://tec.openplanner.team/stops/Lvewaut2"], ["https://tec.openplanner.team/stops/Bvilcha2", "https://tec.openplanner.team/stops/Bvilcim1"], ["https://tec.openplanner.team/stops/Llgcroi1", "https://tec.openplanner.team/stops/Llgptlo1"], ["https://tec.openplanner.team/stops/LWAbett2", "https://tec.openplanner.team/stops/LWAmouh2"], ["https://tec.openplanner.team/stops/LRGmoul1", "https://tec.openplanner.team/stops/LRGmoul2"], ["https://tec.openplanner.team/stops/Cctptsa1", "https://tec.openplanner.team/stops/Cctsncb1"], ["https://tec.openplanner.team/stops/N424ada", "https://tec.openplanner.team/stops/N424aea"], ["https://tec.openplanner.team/stops/H1ha192a", "https://tec.openplanner.team/stops/H1vh136c"], ["https://tec.openplanner.team/stops/X756aba", "https://tec.openplanner.team/stops/X757ama"], ["https://tec.openplanner.team/stops/LMnlogi1", "https://tec.openplanner.team/stops/N222aca"], ["https://tec.openplanner.team/stops/H1hh114b", "https://tec.openplanner.team/stops/H1hh118b"], ["https://tec.openplanner.team/stops/Ctynamu2", "https://tec.openplanner.team/stops/N137aea"], ["https://tec.openplanner.team/stops/N528aca", "https://tec.openplanner.team/stops/N528ava"], ["https://tec.openplanner.team/stops/Bgrmver1", "https://tec.openplanner.team/stops/N522aib"], ["https://tec.openplanner.team/stops/X672aca", "https://tec.openplanner.team/stops/X672acb"], ["https://tec.openplanner.team/stops/H1hi124a", "https://tec.openplanner.team/stops/H1tl121b"], ["https://tec.openplanner.team/stops/N501cda", "https://tec.openplanner.team/stops/N501mca"], ["https://tec.openplanner.team/stops/LAUhost1", "https://tec.openplanner.team/stops/LFdbruy2"], ["https://tec.openplanner.team/stops/Bbougar1", "https://tec.openplanner.team/stops/Bbstfch2"], ["https://tec.openplanner.team/stops/Cptegli2", "https://tec.openplanner.team/stops/Cptegli3"], ["https://tec.openplanner.team/stops/X657aib", "https://tec.openplanner.team/stops/X657aka"], ["https://tec.openplanner.team/stops/X661ama", "https://tec.openplanner.team/stops/X661bcb"], ["https://tec.openplanner.team/stops/X825aab", "https://tec.openplanner.team/stops/X825agb"], ["https://tec.openplanner.team/stops/X738acb", "https://tec.openplanner.team/stops/X771afa"], ["https://tec.openplanner.team/stops/Llgcorn1", "https://tec.openplanner.team/stops/Llgmulh2"], ["https://tec.openplanner.team/stops/Csdjeme1", "https://tec.openplanner.team/stops/Csdpira2"], ["https://tec.openplanner.team/stops/Lbococh2", "https://tec.openplanner.team/stops/Lousimo1"], ["https://tec.openplanner.team/stops/LWEfati1", "https://tec.openplanner.team/stops/LWEfati2"], ["https://tec.openplanner.team/stops/X896afb", "https://tec.openplanner.team/stops/X897axb"], ["https://tec.openplanner.team/stops/LMedoum1", "https://tec.openplanner.team/stops/LMemora2"], ["https://tec.openplanner.team/stops/X762afa", "https://tec.openplanner.team/stops/X762agb"], ["https://tec.openplanner.team/stops/Lfhsoux2", "https://tec.openplanner.team/stops/Lmlprie1"], ["https://tec.openplanner.team/stops/H2an101a", "https://tec.openplanner.team/stops/H2an103a"], ["https://tec.openplanner.team/stops/H1so135a", "https://tec.openplanner.team/stops/H1so139d"], ["https://tec.openplanner.team/stops/N513aba", "https://tec.openplanner.team/stops/N513abb"], ["https://tec.openplanner.team/stops/Ccypetv1", "https://tec.openplanner.team/stops/NH01aha"], ["https://tec.openplanner.team/stops/H5qu156a", "https://tec.openplanner.team/stops/H5qu182a"], ["https://tec.openplanner.team/stops/NL81afa", "https://tec.openplanner.team/stops/NL82agb"], ["https://tec.openplanner.team/stops/N534bfa", "https://tec.openplanner.team/stops/N534bfb"], ["https://tec.openplanner.team/stops/H1si157b", "https://tec.openplanner.team/stops/H1vt195a"], ["https://tec.openplanner.team/stops/X820acb", "https://tec.openplanner.team/stops/X820agc"], ["https://tec.openplanner.team/stops/X917abb", "https://tec.openplanner.team/stops/X917ajb"], ["https://tec.openplanner.team/stops/X886aaa", "https://tec.openplanner.team/stops/X889aeb"], ["https://tec.openplanner.team/stops/LOucuve1", "https://tec.openplanner.team/stops/LOuilc-*"], ["https://tec.openplanner.team/stops/X630aca", "https://tec.openplanner.team/stops/X630ada"], ["https://tec.openplanner.team/stops/H4cr111a", "https://tec.openplanner.team/stops/H4ff115b"], ["https://tec.openplanner.team/stops/LAmarbo2", "https://tec.openplanner.team/stops/LAMecse*"], ["https://tec.openplanner.team/stops/LBVlamo1", "https://tec.openplanner.team/stops/LBVlamo2"], ["https://tec.openplanner.team/stops/X982akb", "https://tec.openplanner.team/stops/X982anb"], ["https://tec.openplanner.team/stops/X724aha", "https://tec.openplanner.team/stops/X724aia"], ["https://tec.openplanner.team/stops/H4ef163b", "https://tec.openplanner.team/stops/H4ef164b"], ["https://tec.openplanner.team/stops/H3so170a", "https://tec.openplanner.team/stops/H3so175a"], ["https://tec.openplanner.team/stops/Cobmven2", "https://tec.openplanner.team/stops/H2lu100d"], ["https://tec.openplanner.team/stops/H1ml112a", "https://tec.openplanner.team/stops/H1to152a"], ["https://tec.openplanner.team/stops/N135aaa", "https://tec.openplanner.team/stops/N136adb"], ["https://tec.openplanner.team/stops/Bwavcui2", "https://tec.openplanner.team/stops/Bwavvpr1"], ["https://tec.openplanner.team/stops/X784aga", "https://tec.openplanner.team/stops/X784ahb"], ["https://tec.openplanner.team/stops/Lchpniv2", "https://tec.openplanner.team/stops/Lvichpl1"], ["https://tec.openplanner.team/stops/N101akb", "https://tec.openplanner.team/stops/N101aqa"], ["https://tec.openplanner.team/stops/N229arb", "https://tec.openplanner.team/stops/N230aab"], ["https://tec.openplanner.team/stops/Bmsgaxp2", "https://tec.openplanner.team/stops/Bmsgbur2"], ["https://tec.openplanner.team/stops/X953aea", "https://tec.openplanner.team/stops/X953afb"], ["https://tec.openplanner.team/stops/LiV19--1", "https://tec.openplanner.team/stops/LiVdorf1"], ["https://tec.openplanner.team/stops/N214agb", "https://tec.openplanner.team/stops/N236aha"], ["https://tec.openplanner.team/stops/X638agb", "https://tec.openplanner.team/stops/X638ahb"], ["https://tec.openplanner.team/stops/N206aba", "https://tec.openplanner.team/stops/N221aab"], ["https://tec.openplanner.team/stops/N204afb", "https://tec.openplanner.team/stops/N204agb"], ["https://tec.openplanner.team/stops/Csuptou2", "https://tec.openplanner.team/stops/Csytouq2"], ["https://tec.openplanner.team/stops/H4mo153d", "https://tec.openplanner.team/stops/H4mo184a"], ["https://tec.openplanner.team/stops/Bbsivil2", "https://tec.openplanner.team/stops/Blilhay1"], ["https://tec.openplanner.team/stops/X664alb", "https://tec.openplanner.team/stops/X664ata"], ["https://tec.openplanner.team/stops/LLrcomb2", "https://tec.openplanner.team/stops/LLrmc--2"], ["https://tec.openplanner.team/stops/NL74aba", "https://tec.openplanner.team/stops/NL74agb"], ["https://tec.openplanner.team/stops/X681aga", "https://tec.openplanner.team/stops/X681agb"], ["https://tec.openplanner.team/stops/LCAcruc1", "https://tec.openplanner.team/stops/LCAeg--1"], ["https://tec.openplanner.team/stops/X749ada", "https://tec.openplanner.team/stops/X749adb"], ["https://tec.openplanner.team/stops/H4ea131b", "https://tec.openplanner.team/stops/H4wr173b"], ["https://tec.openplanner.team/stops/Lanpont2", "https://tec.openplanner.team/stops/Lmopech1"], ["https://tec.openplanner.team/stops/LATjaur1", "https://tec.openplanner.team/stops/LATrori2"], ["https://tec.openplanner.team/stops/Cwfbarr1", "https://tec.openplanner.team/stops/Cwfbarr2"], ["https://tec.openplanner.team/stops/X614aga", "https://tec.openplanner.team/stops/X614agb"], ["https://tec.openplanner.team/stops/X806afa", "https://tec.openplanner.team/stops/X806afb"], ["https://tec.openplanner.team/stops/LMtegli1", "https://tec.openplanner.team/stops/LMtegli2"], ["https://tec.openplanner.team/stops/H4te258b", "https://tec.openplanner.team/stops/H4te261b"], ["https://tec.openplanner.team/stops/H1hl123b", "https://tec.openplanner.team/stops/H1hl126b"], ["https://tec.openplanner.team/stops/LODarbr1", "https://tec.openplanner.team/stops/X548aea"], ["https://tec.openplanner.team/stops/X736afa", "https://tec.openplanner.team/stops/X753aba"], ["https://tec.openplanner.team/stops/X734afb", "https://tec.openplanner.team/stops/X734agb"], ["https://tec.openplanner.team/stops/X817aea", "https://tec.openplanner.team/stops/X817afa"], ["https://tec.openplanner.team/stops/H1en100b", "https://tec.openplanner.team/stops/H1mk112b"], ["https://tec.openplanner.team/stops/Bbghsar2", "https://tec.openplanner.team/stops/Bbghsta1"], ["https://tec.openplanner.team/stops/Cgzbouh1", "https://tec.openplanner.team/stops/Cgzvivi2"], ["https://tec.openplanner.team/stops/LBGcent1", "https://tec.openplanner.team/stops/LBGcent2"], ["https://tec.openplanner.team/stops/N542aaa", "https://tec.openplanner.team/stops/N542aab"], ["https://tec.openplanner.team/stops/H2ca109a", "https://tec.openplanner.team/stops/H2mo130b"], ["https://tec.openplanner.team/stops/H4bv145b", "https://tec.openplanner.team/stops/H4bv145c"], ["https://tec.openplanner.team/stops/Bpernov1", "https://tec.openplanner.team/stops/Bpernov2"], ["https://tec.openplanner.team/stops/N348aaa", "https://tec.openplanner.team/stops/N348ada"], ["https://tec.openplanner.team/stops/Blemkap1", "https://tec.openplanner.team/stops/Bstecal1"], ["https://tec.openplanner.team/stops/Bbiecoc1", "https://tec.openplanner.team/stops/Bbiehev1"], ["https://tec.openplanner.team/stops/Bmartil2", "https://tec.openplanner.team/stops/Bsdavpe1"], ["https://tec.openplanner.team/stops/X757alb", "https://tec.openplanner.team/stops/X779aab"], ["https://tec.openplanner.team/stops/N540aeb", "https://tec.openplanner.team/stops/N540aha"], ["https://tec.openplanner.team/stops/Bjodtpo2", "https://tec.openplanner.team/stops/Bsjgmil1"], ["https://tec.openplanner.team/stops/LbUvith2", "https://tec.openplanner.team/stops/LbUwhon2"], ["https://tec.openplanner.team/stops/NL76ald", "https://tec.openplanner.team/stops/NL76bcb"], ["https://tec.openplanner.team/stops/X660ada", "https://tec.openplanner.team/stops/X660agb"], ["https://tec.openplanner.team/stops/H1pd142a", "https://tec.openplanner.team/stops/H1pd143a"], ["https://tec.openplanner.team/stops/X741aia", "https://tec.openplanner.team/stops/X741aib"], ["https://tec.openplanner.team/stops/Bbsicen2", "https://tec.openplanner.team/stops/Bnivfhu1"], ["https://tec.openplanner.team/stops/X950abb", "https://tec.openplanner.team/stops/X950acb"], ["https://tec.openplanner.team/stops/H4ch113b", "https://tec.openplanner.team/stops/H4ch120b"], ["https://tec.openplanner.team/stops/Baegm501", "https://tec.openplanner.team/stops/Bramcar2"], ["https://tec.openplanner.team/stops/LSecomm2", "https://tec.openplanner.team/stops/LVbeg--1"], ["https://tec.openplanner.team/stops/X736afa", "https://tec.openplanner.team/stops/X736aja"], ["https://tec.openplanner.team/stops/Bmrqgar1", "https://tec.openplanner.team/stops/H1mk109b"], ["https://tec.openplanner.team/stops/Bottegl2", "https://tec.openplanner.team/stops/Bottegl4"], ["https://tec.openplanner.team/stops/LSsmond1", "https://tec.openplanner.team/stops/LSsmond2"], ["https://tec.openplanner.team/stops/Lalmitt1", "https://tec.openplanner.team/stops/Lalwaro1"], ["https://tec.openplanner.team/stops/LBUmara1", "https://tec.openplanner.team/stops/LBUmara2"], ["https://tec.openplanner.team/stops/N106agb", "https://tec.openplanner.team/stops/N106aia"], ["https://tec.openplanner.team/stops/H2bh121b", "https://tec.openplanner.team/stops/H2lc172b"], ["https://tec.openplanner.team/stops/X636aza", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/Lemcarm2", "https://tec.openplanner.team/stops/Lemmeha1"], ["https://tec.openplanner.team/stops/H4mb202a", "https://tec.openplanner.team/stops/H4mb202b"], ["https://tec.openplanner.team/stops/N503aeb", "https://tec.openplanner.team/stops/N503aia"], ["https://tec.openplanner.team/stops/X777aba", "https://tec.openplanner.team/stops/X784ajb"], ["https://tec.openplanner.team/stops/N512afb", "https://tec.openplanner.team/stops/N512axb"], ["https://tec.openplanner.team/stops/H4bu108a", "https://tec.openplanner.team/stops/H4hg155a"], ["https://tec.openplanner.team/stops/Cfbcabi2", "https://tec.openplanner.team/stops/NH03adb"], ["https://tec.openplanner.team/stops/Cbbjfeu2", "https://tec.openplanner.team/stops/Cclbarb1"], ["https://tec.openplanner.team/stops/N550aaa", "https://tec.openplanner.team/stops/N550agb"], ["https://tec.openplanner.team/stops/X823adb", "https://tec.openplanner.team/stops/X823aeb"], ["https://tec.openplanner.team/stops/Bbeaech1", "https://tec.openplanner.team/stops/Bbeagae2"], ["https://tec.openplanner.team/stops/X601aib", "https://tec.openplanner.team/stops/X601cca"], ["https://tec.openplanner.team/stops/H4lu125a", "https://tec.openplanner.team/stops/H4lu126b"], ["https://tec.openplanner.team/stops/Cgxchea1", "https://tec.openplanner.team/stops/Cgxfo142"], ["https://tec.openplanner.team/stops/H4oe148a", "https://tec.openplanner.team/stops/H4oe151a"], ["https://tec.openplanner.team/stops/Bblaniv2", "https://tec.openplanner.team/stops/Bplnfpa1"], ["https://tec.openplanner.team/stops/LoUhein2", "https://tec.openplanner.team/stops/LoUober2"], ["https://tec.openplanner.team/stops/X952adb", "https://tec.openplanner.team/stops/X952akb"], ["https://tec.openplanner.team/stops/H4re226a", "https://tec.openplanner.team/stops/H5is168b"], ["https://tec.openplanner.team/stops/LFArela3", "https://tec.openplanner.team/stops/LFArela6"], ["https://tec.openplanner.team/stops/LSyeg--1", "https://tec.openplanner.team/stops/LSyeg--2"], ["https://tec.openplanner.team/stops/Baudhan1", "https://tec.openplanner.team/stops/Baudhan2"], ["https://tec.openplanner.team/stops/Berncim1", "https://tec.openplanner.team/stops/Bernpla1"], ["https://tec.openplanner.team/stops/LJAroue2", "https://tec.openplanner.team/stops/LJAverv1"], ["https://tec.openplanner.team/stops/N537aba", "https://tec.openplanner.team/stops/N537ajb"], ["https://tec.openplanner.team/stops/Brsrbbo1", "https://tec.openplanner.team/stops/Brsreco2"], ["https://tec.openplanner.team/stops/Bllnlb11", "https://tec.openplanner.team/stops/Bllnrod3"], ["https://tec.openplanner.team/stops/Lflcle-2", "https://tec.openplanner.team/stops/Lflcle-4"], ["https://tec.openplanner.team/stops/Cmqchap2", "https://tec.openplanner.team/stops/X611aca"], ["https://tec.openplanner.team/stops/X782akb", "https://tec.openplanner.team/stops/X784aea"], ["https://tec.openplanner.team/stops/N106ada", "https://tec.openplanner.team/stops/N106aea"], ["https://tec.openplanner.team/stops/Boplcar2", "https://tec.openplanner.team/stops/Boplcar3"], ["https://tec.openplanner.team/stops/N154aab", "https://tec.openplanner.team/stops/N154abb"], ["https://tec.openplanner.team/stops/H4eh101a", "https://tec.openplanner.team/stops/H4po129a"], ["https://tec.openplanner.team/stops/LkEwolf1", "https://tec.openplanner.team/stops/LkEwolf2"], ["https://tec.openplanner.team/stops/NL72aea", "https://tec.openplanner.team/stops/NL72afa"], ["https://tec.openplanner.team/stops/H1mk110a", "https://tec.openplanner.team/stops/H1mk110b"], ["https://tec.openplanner.team/stops/N508aeb", "https://tec.openplanner.team/stops/N508afa"], ["https://tec.openplanner.team/stops/LARauto1", "https://tec.openplanner.team/stops/LARauto2"], ["https://tec.openplanner.team/stops/Llgcham4", "https://tec.openplanner.team/stops/Llgcorn2"], ["https://tec.openplanner.team/stops/N528adb", "https://tec.openplanner.team/stops/N528aua"], ["https://tec.openplanner.team/stops/Lmobras2", "https://tec.openplanner.team/stops/Lmopast2"], ["https://tec.openplanner.team/stops/H4ty308d", "https://tec.openplanner.team/stops/H4ty308e"], ["https://tec.openplanner.team/stops/Bbsicea1", "https://tec.openplanner.team/stops/Bbsivi11"], ["https://tec.openplanner.team/stops/H5rx106b", "https://tec.openplanner.team/stops/H5rx145a"], ["https://tec.openplanner.team/stops/H1gn148a", "https://tec.openplanner.team/stops/H1gn148b"], ["https://tec.openplanner.team/stops/N507aob", "https://tec.openplanner.team/stops/N516aqa"], ["https://tec.openplanner.team/stops/H1gh151b", "https://tec.openplanner.team/stops/H1gh152b"], ["https://tec.openplanner.team/stops/Cmmcomb2", "https://tec.openplanner.team/stops/Cmmpjou2"], ["https://tec.openplanner.team/stops/Btubeur1", "https://tec.openplanner.team/stops/Btubstq1"], ["https://tec.openplanner.team/stops/H4li178a", "https://tec.openplanner.team/stops/H4li179b"], ["https://tec.openplanner.team/stops/H1vb141b", "https://tec.openplanner.team/stops/H1vb143a"], ["https://tec.openplanner.team/stops/Lticime1", "https://tec.openplanner.team/stops/Lticime2"], ["https://tec.openplanner.team/stops/H1ro138a", "https://tec.openplanner.team/stops/H1ro138b"], ["https://tec.openplanner.team/stops/H1mj130a", "https://tec.openplanner.team/stops/H1mj130b"], ["https://tec.openplanner.team/stops/LHDlibi1", "https://tec.openplanner.team/stops/LHDlibi2"], ["https://tec.openplanner.team/stops/Buccchu2", "https://tec.openplanner.team/stops/Buccgob2"], ["https://tec.openplanner.team/stops/Lhrdeme1", "https://tec.openplanner.team/stops/Lhrdeme4"], ["https://tec.openplanner.team/stops/X745aca", "https://tec.openplanner.team/stops/X745acb"], ["https://tec.openplanner.team/stops/Ljhcarr2", "https://tec.openplanner.team/stops/Lmnfawe1"], ["https://tec.openplanner.team/stops/X738abb", "https://tec.openplanner.team/stops/X738acb"], ["https://tec.openplanner.team/stops/Lmldama1", "https://tec.openplanner.team/stops/Lmldama2"], ["https://tec.openplanner.team/stops/Bcrbros1", "https://tec.openplanner.team/stops/Bnil3fo2"], ["https://tec.openplanner.team/stops/H4bo117b", "https://tec.openplanner.team/stops/H4hu120b"], ["https://tec.openplanner.team/stops/LLGramk2", "https://tec.openplanner.team/stops/LORdtec*"], ["https://tec.openplanner.team/stops/Btlgmar1", "https://tec.openplanner.team/stops/Btlgreg2"], ["https://tec.openplanner.team/stops/N145aha", "https://tec.openplanner.team/stops/N149aab"], ["https://tec.openplanner.team/stops/Cfaplma1", "https://tec.openplanner.team/stops/Cfaterg6"], ["https://tec.openplanner.team/stops/Caicalv2", "https://tec.openplanner.team/stops/Crsprai3"], ["https://tec.openplanner.team/stops/H4ff115a", "https://tec.openplanner.team/stops/H4ff118a"], ["https://tec.openplanner.team/stops/Bhmmcor1", "https://tec.openplanner.team/stops/Btlgbro2"], ["https://tec.openplanner.team/stops/Becepon1", "https://tec.openplanner.team/stops/H2ec106b"], ["https://tec.openplanner.team/stops/X610aaa", "https://tec.openplanner.team/stops/X610aab"], ["https://tec.openplanner.team/stops/Bhoegbr2", "https://tec.openplanner.team/stops/Brsgpbo2"], ["https://tec.openplanner.team/stops/H1el137a", "https://tec.openplanner.team/stops/H1el138b"], ["https://tec.openplanner.team/stops/Bgercen1", "https://tec.openplanner.team/stops/NB33aia"], ["https://tec.openplanner.team/stops/N513ahb", "https://tec.openplanner.team/stops/N521atb"], ["https://tec.openplanner.team/stops/N543baa", "https://tec.openplanner.team/stops/N543bab"], ["https://tec.openplanner.team/stops/N304aab", "https://tec.openplanner.team/stops/N304abb"], ["https://tec.openplanner.team/stops/X837aab", "https://tec.openplanner.team/stops/X837agb"], ["https://tec.openplanner.team/stops/X636bda", "https://tec.openplanner.team/stops/X649aab"], ["https://tec.openplanner.team/stops/X625adb", "https://tec.openplanner.team/stops/X625aeb"], ["https://tec.openplanner.team/stops/X608aea", "https://tec.openplanner.team/stops/X608apa"], ["https://tec.openplanner.team/stops/X824akb", "https://tec.openplanner.team/stops/X824alb"], ["https://tec.openplanner.team/stops/Llgcham7", "https://tec.openplanner.team/stops/Llgnata1"], ["https://tec.openplanner.team/stops/Becegar1", "https://tec.openplanner.team/stops/Becepon1"], ["https://tec.openplanner.team/stops/X601dda", "https://tec.openplanner.team/stops/X601dea"], ["https://tec.openplanner.team/stops/Caiegli2", "https://tec.openplanner.team/stops/Caindsa2"], ["https://tec.openplanner.team/stops/Llgbobu6", "https://tec.openplanner.team/stops/Lsnecco1"], ["https://tec.openplanner.team/stops/X839aeb", "https://tec.openplanner.team/stops/X839afa"], ["https://tec.openplanner.team/stops/X888aca", "https://tec.openplanner.team/stops/X899aaa"], ["https://tec.openplanner.team/stops/Bllnjpa2", "https://tec.openplanner.team/stops/Bmsgrco1"], ["https://tec.openplanner.team/stops/X774aea", "https://tec.openplanner.team/stops/X774aec"], ["https://tec.openplanner.team/stops/LHSheur2", "https://tec.openplanner.team/stops/LWOruis1"], ["https://tec.openplanner.team/stops/N501amb", "https://tec.openplanner.team/stops/N501cya"], ["https://tec.openplanner.team/stops/H1ha197b", "https://tec.openplanner.team/stops/H1ob336b"], ["https://tec.openplanner.team/stops/Cmapeet2", "https://tec.openplanner.team/stops/Cmarroy1"], ["https://tec.openplanner.team/stops/N539aib", "https://tec.openplanner.team/stops/N539apb"], ["https://tec.openplanner.team/stops/H4vz367a", "https://tec.openplanner.team/stops/H4ws160a"], ["https://tec.openplanner.team/stops/NL74aea", "https://tec.openplanner.team/stops/NL74afb"], ["https://tec.openplanner.team/stops/X613aaa", "https://tec.openplanner.team/stops/X623aaa"], ["https://tec.openplanner.team/stops/NL76aja", "https://tec.openplanner.team/stops/NL77aib"], ["https://tec.openplanner.team/stops/N302afa", "https://tec.openplanner.team/stops/N305aaa"], ["https://tec.openplanner.team/stops/H4ev118b", "https://tec.openplanner.team/stops/H4ev126a"], ["https://tec.openplanner.team/stops/Bosqgar2", "https://tec.openplanner.team/stops/Bosqsam1"], ["https://tec.openplanner.team/stops/LAmshel2", "https://tec.openplanner.team/stops/LAMweha1"], ["https://tec.openplanner.team/stops/Bbstchn2", "https://tec.openplanner.team/stops/Bbstmco1"], ["https://tec.openplanner.team/stops/X793aka", "https://tec.openplanner.team/stops/X793anb"], ["https://tec.openplanner.team/stops/N501bpa", "https://tec.openplanner.team/stops/N501bsb"], ["https://tec.openplanner.team/stops/LhGcasi2", "https://tec.openplanner.team/stops/LkEmax-1"], ["https://tec.openplanner.team/stops/X618aaa", "https://tec.openplanner.team/stops/X625abb"], ["https://tec.openplanner.team/stops/X770aaa", "https://tec.openplanner.team/stops/X770ada"], ["https://tec.openplanner.team/stops/LDmdegi2", "https://tec.openplanner.team/stops/LHocroi2"], ["https://tec.openplanner.team/stops/Ldihusq2", "https://tec.openplanner.team/stops/Ldipl--4"], ["https://tec.openplanner.team/stops/X902aqa", "https://tec.openplanner.team/stops/X903aab"], ["https://tec.openplanner.team/stops/LAweg--2", "https://tec.openplanner.team/stops/LAYlieg2"], ["https://tec.openplanner.team/stops/X839adb", "https://tec.openplanner.team/stops/X839aeb"], ["https://tec.openplanner.team/stops/Loucham2", "https://tec.openplanner.team/stops/Loucham4"], ["https://tec.openplanner.team/stops/X757aca", "https://tec.openplanner.team/stops/X757aoa"], ["https://tec.openplanner.team/stops/Lgrbonn1", "https://tec.openplanner.team/stops/Lgrlimi4"], ["https://tec.openplanner.team/stops/X904agb", "https://tec.openplanner.team/stops/X904ahb"], ["https://tec.openplanner.team/stops/Balswwe1", "https://tec.openplanner.team/stops/Bhaless1"], ["https://tec.openplanner.team/stops/X948baa", "https://tec.openplanner.team/stops/X948bbb"], ["https://tec.openplanner.team/stops/LVtchai1", "https://tec.openplanner.team/stops/LVtchai2"], ["https://tec.openplanner.team/stops/Llghopo2", "https://tec.openplanner.team/stops/Llgnata4"], ["https://tec.openplanner.team/stops/Bquepbr1", "https://tec.openplanner.team/stops/Bstemco1"], ["https://tec.openplanner.team/stops/N212acb", "https://tec.openplanner.team/stops/N212aeb"], ["https://tec.openplanner.team/stops/Cvsbois2", "https://tec.openplanner.team/stops/N530ahb"], ["https://tec.openplanner.team/stops/X595afb", "https://tec.openplanner.team/stops/X595afc"], ["https://tec.openplanner.team/stops/LHreg--1", "https://tec.openplanner.team/stops/LHreg--2"], ["https://tec.openplanner.team/stops/Lghpero2", "https://tec.openplanner.team/stops/Lghsimo2"], ["https://tec.openplanner.team/stops/LREgrot2", "https://tec.openplanner.team/stops/LREgrot4"], ["https://tec.openplanner.team/stops/X663aoa", "https://tec.openplanner.team/stops/X663apa"], ["https://tec.openplanner.team/stops/N207ada", "https://tec.openplanner.team/stops/N207aea"], ["https://tec.openplanner.team/stops/Bwbfckr2", "https://tec.openplanner.team/stops/Bwbfeta2"], ["https://tec.openplanner.team/stops/N501iha", "https://tec.openplanner.team/stops/N501ihy"], ["https://tec.openplanner.team/stops/X886aba", "https://tec.openplanner.team/stops/X886abb"], ["https://tec.openplanner.team/stops/H5qu182a", "https://tec.openplanner.team/stops/H5qu182b"], ["https://tec.openplanner.team/stops/Llgthie1", "https://tec.openplanner.team/stops/Llgthie2"], ["https://tec.openplanner.team/stops/LHDpota1", "https://tec.openplanner.team/stops/LPUchpl1"], ["https://tec.openplanner.team/stops/LbTkran1", "https://tec.openplanner.team/stops/LbTmons2"], ["https://tec.openplanner.team/stops/LBBcarr2", "https://tec.openplanner.team/stops/LOcgdro4"], ["https://tec.openplanner.team/stops/Crg3arb1", "https://tec.openplanner.team/stops/Crg3arb2"], ["https://tec.openplanner.team/stops/N511aaa", "https://tec.openplanner.team/stops/N511agb"], ["https://tec.openplanner.team/stops/X789aeb", "https://tec.openplanner.team/stops/X789aja"], ["https://tec.openplanner.team/stops/X937aba", "https://tec.openplanner.team/stops/X937akb"], ["https://tec.openplanner.team/stops/N515afa", "https://tec.openplanner.team/stops/N515atb"], ["https://tec.openplanner.team/stops/Lcebois1", "https://tec.openplanner.team/stops/Lcejobe2"], ["https://tec.openplanner.team/stops/X999aab", "https://tec.openplanner.team/stops/X999acc"], ["https://tec.openplanner.team/stops/N117ama", "https://tec.openplanner.team/stops/N117bcc"], ["https://tec.openplanner.team/stops/N535aob", "https://tec.openplanner.team/stops/N564aaa"], ["https://tec.openplanner.team/stops/H1em102a", "https://tec.openplanner.team/stops/H1em102b"], ["https://tec.openplanner.team/stops/Csshouy1", "https://tec.openplanner.team/stops/Csygare1"], ["https://tec.openplanner.team/stops/H4rs118a", "https://tec.openplanner.team/stops/H4rs118b"], ["https://tec.openplanner.team/stops/N244aca", "https://tec.openplanner.team/stops/N244aga"], ["https://tec.openplanner.team/stops/N242adc", "https://tec.openplanner.team/stops/N242afb"], ["https://tec.openplanner.team/stops/N509aia", "https://tec.openplanner.team/stops/N509ala"], ["https://tec.openplanner.team/stops/Cpcathe1", "https://tec.openplanner.team/stops/Cpcchau"], ["https://tec.openplanner.team/stops/Bsdabja2", "https://tec.openplanner.team/stops/Bsdafra1"], ["https://tec.openplanner.team/stops/X601ayb", "https://tec.openplanner.team/stops/X612aaa"], ["https://tec.openplanner.team/stops/LHMgulp2", "https://tec.openplanner.team/stops/LHMparq2"], ["https://tec.openplanner.team/stops/N539ayb", "https://tec.openplanner.team/stops/N539baa"], ["https://tec.openplanner.team/stops/Cgplhoi2", "https://tec.openplanner.team/stops/Cgpplac1"], ["https://tec.openplanner.team/stops/H4ae102a", "https://tec.openplanner.team/stops/H4or116a"], ["https://tec.openplanner.team/stops/H5pe134b", "https://tec.openplanner.team/stops/H5pe152b"], ["https://tec.openplanner.team/stops/LBLghuy3", "https://tec.openplanner.team/stops/LCEboll2"], ["https://tec.openplanner.team/stops/X926afa", "https://tec.openplanner.team/stops/X945abc"], ["https://tec.openplanner.team/stops/Lbrrobe1", "https://tec.openplanner.team/stops/Lgrfrai2"], ["https://tec.openplanner.team/stops/X901aka", "https://tec.openplanner.team/stops/X901bpa"], ["https://tec.openplanner.team/stops/LHdkenn3", "https://tec.openplanner.team/stops/LHdvill2"], ["https://tec.openplanner.team/stops/H1so136a", "https://tec.openplanner.team/stops/H1so137b"], ["https://tec.openplanner.team/stops/Ljubods2", "https://tec.openplanner.team/stops/Ljuchaf2"], ["https://tec.openplanner.team/stops/X752aba", "https://tec.openplanner.team/stops/X756aab"], ["https://tec.openplanner.team/stops/LWecorn2", "https://tec.openplanner.team/stops/LWegdry1"], ["https://tec.openplanner.team/stops/N501nez", "https://tec.openplanner.team/stops/X501esb"], ["https://tec.openplanner.team/stops/H1pa117b", "https://tec.openplanner.team/stops/H1pa120a"], ["https://tec.openplanner.team/stops/H4hg155a", "https://tec.openplanner.team/stops/H4hg158a"], ["https://tec.openplanner.team/stops/LBUrout1", "https://tec.openplanner.team/stops/NL30afa"], ["https://tec.openplanner.team/stops/N309aab", "https://tec.openplanner.team/stops/N365acb"], ["https://tec.openplanner.team/stops/Ccupetp1", "https://tec.openplanner.team/stops/Ccutill2"], ["https://tec.openplanner.team/stops/LOurena1", "https://tec.openplanner.team/stops/X982aeb"], ["https://tec.openplanner.team/stops/Bwavcui1", "https://tec.openplanner.team/stops/Bwavcui2"], ["https://tec.openplanner.team/stops/LHUsaul1", "https://tec.openplanner.team/stops/LHUsaul2"], ["https://tec.openplanner.team/stops/Lhehoux2", "https://tec.openplanner.team/stops/Lheloti2"], ["https://tec.openplanner.team/stops/LWalibo1", "https://tec.openplanner.team/stops/LWalibo2"], ["https://tec.openplanner.team/stops/LBrec--2", "https://tec.openplanner.team/stops/LBrneli2"], ["https://tec.openplanner.team/stops/Cmmserv3", "https://tec.openplanner.team/stops/Cmmserv4"], ["https://tec.openplanner.team/stops/Cgzhour2", "https://tec.openplanner.team/stops/Clbpepi1"], ["https://tec.openplanner.team/stops/LFrfrai2", "https://tec.openplanner.team/stops/LLUcdoy1"], ["https://tec.openplanner.team/stops/Cvstouv1", "https://tec.openplanner.team/stops/Cwfplac2"], ["https://tec.openplanner.team/stops/H5ma181a", "https://tec.openplanner.team/stops/H5ma186a"], ["https://tec.openplanner.team/stops/LBiberg2", "https://tec.openplanner.team/stops/LDOandr2"], ["https://tec.openplanner.team/stops/Lghpier2", "https://tec.openplanner.team/stops/Lghterm*"], ["https://tec.openplanner.team/stops/X343aha", "https://tec.openplanner.team/stops/X343ahb"], ["https://tec.openplanner.team/stops/Blmlmco1", "https://tec.openplanner.team/stops/Blmlmco2"], ["https://tec.openplanner.team/stops/LWbcarr1", "https://tec.openplanner.team/stops/LWbcarr2"], ["https://tec.openplanner.team/stops/H4er122a", "https://tec.openplanner.team/stops/H4er123b"], ["https://tec.openplanner.team/stops/Brixbai2", "https://tec.openplanner.team/stops/Brixwav2"], ["https://tec.openplanner.team/stops/X638aia", "https://tec.openplanner.team/stops/X638amb"], ["https://tec.openplanner.team/stops/N123aab", "https://tec.openplanner.team/stops/N123ada"], ["https://tec.openplanner.team/stops/LWAathe1", "https://tec.openplanner.team/stops/LWAvand2"], ["https://tec.openplanner.team/stops/H1me112a", "https://tec.openplanner.team/stops/H1me112b"], ["https://tec.openplanner.team/stops/LBOande1", "https://tec.openplanner.team/stops/LMubras2"], ["https://tec.openplanner.team/stops/Ltheg--1", "https://tec.openplanner.team/stops/Lthfagn2"], ["https://tec.openplanner.team/stops/X723aka", "https://tec.openplanner.team/stops/X763ahb"], ["https://tec.openplanner.team/stops/Bhevjac1", "https://tec.openplanner.team/stops/Bhevwzw2"], ["https://tec.openplanner.team/stops/X917aka", "https://tec.openplanner.team/stops/X922aaa"], ["https://tec.openplanner.team/stops/LFsgend1", "https://tec.openplanner.team/stops/Llianix2"], ["https://tec.openplanner.team/stops/Cci4bra2", "https://tec.openplanner.team/stops/Cci4bra4"], ["https://tec.openplanner.team/stops/N508aab", "https://tec.openplanner.team/stops/N508adb"], ["https://tec.openplanner.team/stops/H2mg150a", "https://tec.openplanner.team/stops/H2mg150b"], ["https://tec.openplanner.team/stops/LREelse1", "https://tec.openplanner.team/stops/LREsech2"], ["https://tec.openplanner.team/stops/LJOchar2", "https://tec.openplanner.team/stops/LJOvill2"], ["https://tec.openplanner.team/stops/LWRgare1", "https://tec.openplanner.team/stops/LWRpl--2"], ["https://tec.openplanner.team/stops/N515aia", "https://tec.openplanner.team/stops/N515aoa"], ["https://tec.openplanner.team/stops/Cchtram2", "https://tec.openplanner.team/stops/NC01aab"], ["https://tec.openplanner.team/stops/N204aja", "https://tec.openplanner.team/stops/N204ala"], ["https://tec.openplanner.team/stops/Cgplutt2", "https://tec.openplanner.team/stops/H2gy109b"], ["https://tec.openplanner.team/stops/LAmsart2", "https://tec.openplanner.team/stops/LVLgrum1"], ["https://tec.openplanner.team/stops/H4th141a", "https://tec.openplanner.team/stops/H4th141b"], ["https://tec.openplanner.team/stops/N579aaa", "https://tec.openplanner.team/stops/N579aab"], ["https://tec.openplanner.team/stops/N509aua", "https://tec.openplanner.team/stops/N511ama"], ["https://tec.openplanner.team/stops/Lprmc--1", "https://tec.openplanner.team/stops/Lprmc--4"], ["https://tec.openplanner.team/stops/Bhevwzw1", "https://tec.openplanner.team/stops/Bnetegl1"], ["https://tec.openplanner.team/stops/Cpcbrig2", "https://tec.openplanner.team/stops/Cpcwaut2"], ["https://tec.openplanner.team/stops/X870aeb", "https://tec.openplanner.team/stops/X879aeb"], ["https://tec.openplanner.team/stops/H4ty312a", "https://tec.openplanner.team/stops/H4ty321a"], ["https://tec.openplanner.team/stops/X604afd", "https://tec.openplanner.team/stops/X634aab"], ["https://tec.openplanner.team/stops/H1eo108b", "https://tec.openplanner.team/stops/H1gh365a"], ["https://tec.openplanner.team/stops/Bbstpan2", "https://tec.openplanner.team/stops/Cbtlong1"], ["https://tec.openplanner.team/stops/LSMchat1", "https://tec.openplanner.team/stops/LSMec--2"], ["https://tec.openplanner.team/stops/Cdogrro2", "https://tec.openplanner.team/stops/Crgegli2"], ["https://tec.openplanner.team/stops/H2pe163b", "https://tec.openplanner.team/stops/H2tr257a"], ["https://tec.openplanner.team/stops/Bclgapi1", "https://tec.openplanner.team/stops/Bclgbvi1"], ["https://tec.openplanner.team/stops/X614aaa", "https://tec.openplanner.team/stops/X614alb"], ["https://tec.openplanner.team/stops/X624aab", "https://tec.openplanner.team/stops/X624amb"], ["https://tec.openplanner.team/stops/LBEfagn1", "https://tec.openplanner.team/stops/LBEnina4"], ["https://tec.openplanner.team/stops/LMNpann2", "https://tec.openplanner.team/stops/LMNpt--2"], ["https://tec.openplanner.team/stops/N542adb", "https://tec.openplanner.team/stops/N542aea"], ["https://tec.openplanner.team/stops/LVIcarm3", "https://tec.openplanner.team/stops/LVIcarm4"], ["https://tec.openplanner.team/stops/H4fo116a", "https://tec.openplanner.team/stops/H4pe128b"], ["https://tec.openplanner.team/stops/H1ol140a", "https://tec.openplanner.team/stops/H1ol142b"], ["https://tec.openplanner.team/stops/Cjugill6", "https://tec.openplanner.team/stops/Cjurogi2"], ["https://tec.openplanner.team/stops/Cmlrous1", "https://tec.openplanner.team/stops/Cmlrous2"], ["https://tec.openplanner.team/stops/Lvtathe2", "https://tec.openplanner.team/stops/Lvtvici2"], ["https://tec.openplanner.team/stops/LSPwarf1", "https://tec.openplanner.team/stops/LSPwarf2"], ["https://tec.openplanner.team/stops/NH21ada", "https://tec.openplanner.team/stops/NH21adb"], ["https://tec.openplanner.team/stops/Cmldupu1", "https://tec.openplanner.team/stops/Cmlhaie1"], ["https://tec.openplanner.team/stops/X636aba", "https://tec.openplanner.team/stops/X636acb"], ["https://tec.openplanner.team/stops/H1fr123a", "https://tec.openplanner.team/stops/H1fr128a"], ["https://tec.openplanner.team/stops/H1hh110a", "https://tec.openplanner.team/stops/H1hh113b"], ["https://tec.openplanner.team/stops/LAbbass1", "https://tec.openplanner.team/stops/LAbbass2"], ["https://tec.openplanner.team/stops/Bbeamon2", "https://tec.openplanner.team/stops/Bhmmbog1"], ["https://tec.openplanner.team/stops/X775ahb", "https://tec.openplanner.team/stops/X775aic"], ["https://tec.openplanner.team/stops/Llgblon1", "https://tec.openplanner.team/stops/Llgbron2"], ["https://tec.openplanner.team/stops/LmDelek2", "https://tec.openplanner.team/stops/LmYkirc1"], ["https://tec.openplanner.team/stops/LAIchpl2", "https://tec.openplanner.team/stops/LVBsevr2"], ["https://tec.openplanner.team/stops/LCnvill1", "https://tec.openplanner.team/stops/LLUhotc2"], ["https://tec.openplanner.team/stops/Cciecol2", "https://tec.openplanner.team/stops/Ccigill3"], ["https://tec.openplanner.team/stops/X669aga", "https://tec.openplanner.team/stops/X672aea"], ["https://tec.openplanner.team/stops/X871acb", "https://tec.openplanner.team/stops/X876afa"], ["https://tec.openplanner.team/stops/NL76afb", "https://tec.openplanner.team/stops/NL76arb"], ["https://tec.openplanner.team/stops/Cmtfabi1", "https://tec.openplanner.team/stops/Cmtprey2"], ["https://tec.openplanner.team/stops/N542ada", "https://tec.openplanner.team/stops/N542asa"], ["https://tec.openplanner.team/stops/Cgygayo3", "https://tec.openplanner.team/stops/Cgymest1"], ["https://tec.openplanner.team/stops/Lseathe2", "https://tec.openplanner.team/stops/Lsefori2"], ["https://tec.openplanner.team/stops/H4ea128a", "https://tec.openplanner.team/stops/H4ea128b"], ["https://tec.openplanner.team/stops/Bitrcen1", "https://tec.openplanner.team/stops/Bitrcen2"], ["https://tec.openplanner.team/stops/N232ata", "https://tec.openplanner.team/stops/N232cca"], ["https://tec.openplanner.team/stops/X775ajb", "https://tec.openplanner.team/stops/X775akb"], ["https://tec.openplanner.team/stops/Crsaise1", "https://tec.openplanner.team/stops/Crsrose2"], ["https://tec.openplanner.team/stops/X897aua", "https://tec.openplanner.team/stops/X897aub"], ["https://tec.openplanner.team/stops/N232ayb", "https://tec.openplanner.team/stops/N232bob"], ["https://tec.openplanner.team/stops/LFUfonc2", "https://tec.openplanner.team/stops/LHurobi1"], ["https://tec.openplanner.team/stops/X911aoa", "https://tec.openplanner.team/stops/X911aob"], ["https://tec.openplanner.team/stops/Lpeprev1", "https://tec.openplanner.team/stops/Lpeprev2"], ["https://tec.openplanner.team/stops/LXHbell1", "https://tec.openplanner.team/stops/LXHbois2"], ["https://tec.openplanner.team/stops/H5at118a", "https://tec.openplanner.team/stops/H5at134b"], ["https://tec.openplanner.team/stops/Bllnald1", "https://tec.openplanner.team/stops/Bllnpaf1"], ["https://tec.openplanner.team/stops/H5is171a", "https://tec.openplanner.team/stops/H5is174a"], ["https://tec.openplanner.team/stops/H5pe132b", "https://tec.openplanner.team/stops/H5pe133a"], ["https://tec.openplanner.team/stops/Laddelc1", "https://tec.openplanner.team/stops/Laddelc2"], ["https://tec.openplanner.team/stops/X359adb", "https://tec.openplanner.team/stops/X359aha"], ["https://tec.openplanner.team/stops/H4te260a", "https://tec.openplanner.team/stops/H4te260b"], ["https://tec.openplanner.team/stops/Lgrfrai1", "https://tec.openplanner.team/stops/Lgrfrai2"], ["https://tec.openplanner.team/stops/X619ada", "https://tec.openplanner.team/stops/X619aea"], ["https://tec.openplanner.team/stops/X879aia", "https://tec.openplanner.team/stops/X879aja"], ["https://tec.openplanner.team/stops/N501bca", "https://tec.openplanner.team/stops/N501bcb"], ["https://tec.openplanner.team/stops/N236aib", "https://tec.openplanner.team/stops/N236amb"], ["https://tec.openplanner.team/stops/Bgdhdet1", "https://tec.openplanner.team/stops/Bgdhmet2"], ["https://tec.openplanner.team/stops/H1gh143a", "https://tec.openplanner.team/stops/H1hh117a"], ["https://tec.openplanner.team/stops/N534abb", "https://tec.openplanner.team/stops/N534aph"], ["https://tec.openplanner.team/stops/Bbchmin2", "https://tec.openplanner.team/stops/Bitrfsc2"], ["https://tec.openplanner.team/stops/N537aha", "https://tec.openplanner.team/stops/N537aia"], ["https://tec.openplanner.team/stops/LENecol2", "https://tec.openplanner.team/stops/LENsent1"], ["https://tec.openplanner.team/stops/X658aaa", "https://tec.openplanner.team/stops/X658abb"], ["https://tec.openplanner.team/stops/Lvearle2", "https://tec.openplanner.team/stops/Lvepire1"], ["https://tec.openplanner.team/stops/H1ba119b", "https://tec.openplanner.team/stops/H1ba119d"], ["https://tec.openplanner.team/stops/Cfrcomp1", "https://tec.openplanner.team/stops/Cfrfaub3"], ["https://tec.openplanner.team/stops/LFarhuy1", "https://tec.openplanner.team/stops/LWAipes2"], ["https://tec.openplanner.team/stops/LBNgarn1", "https://tec.openplanner.team/stops/LeUgb--2"], ["https://tec.openplanner.team/stops/Bwateco1", "https://tec.openplanner.team/stops/Bwateco2"], ["https://tec.openplanner.team/stops/Brebrog2", "https://tec.openplanner.team/stops/H3st119a"], ["https://tec.openplanner.team/stops/LDAandr2", "https://tec.openplanner.team/stops/LTreg--1"], ["https://tec.openplanner.team/stops/H1sy140a", "https://tec.openplanner.team/stops/H1to154b"], ["https://tec.openplanner.team/stops/Bitrnus1", "https://tec.openplanner.team/stops/Bitrpri2"], ["https://tec.openplanner.team/stops/Bthivil1", "https://tec.openplanner.team/stops/Bthivil3"], ["https://tec.openplanner.team/stops/N219aba", "https://tec.openplanner.team/stops/N219abb"], ["https://tec.openplanner.team/stops/Bnvmfba1", "https://tec.openplanner.team/stops/N515ara"], ["https://tec.openplanner.team/stops/H4ln127a", "https://tec.openplanner.team/stops/H4ln155a"], ["https://tec.openplanner.team/stops/N155aca", "https://tec.openplanner.team/stops/N155acb"], ["https://tec.openplanner.team/stops/Baegegl2", "https://tec.openplanner.team/stops/NR38aba"], ["https://tec.openplanner.team/stops/H2ca100a", "https://tec.openplanner.team/stops/H2ca109a"], ["https://tec.openplanner.team/stops/X898ada", "https://tec.openplanner.team/stops/X898aoa"], ["https://tec.openplanner.team/stops/LORgr8-1", "https://tec.openplanner.team/stops/LORpave1"], ["https://tec.openplanner.team/stops/N519aca", "https://tec.openplanner.team/stops/N519aja"], ["https://tec.openplanner.team/stops/N524aka", "https://tec.openplanner.team/stops/N524alb"], ["https://tec.openplanner.team/stops/X982aia", "https://tec.openplanner.team/stops/X982bfb"], ["https://tec.openplanner.team/stops/N501bka", "https://tec.openplanner.team/stops/N501bkb"], ["https://tec.openplanner.team/stops/H1ms305a", "https://tec.openplanner.team/stops/H1ms305b"], ["https://tec.openplanner.team/stops/LFPloob1", "https://tec.openplanner.team/stops/LSJlabe2"], ["https://tec.openplanner.team/stops/H1sy145a", "https://tec.openplanner.team/stops/H1sy145b"], ["https://tec.openplanner.team/stops/Cmygrbr2", "https://tec.openplanner.team/stops/Cmygrbr4"], ["https://tec.openplanner.team/stops/H1tl120a", "https://tec.openplanner.team/stops/H1tl121b"], ["https://tec.openplanner.team/stops/X349aaa", "https://tec.openplanner.team/stops/X998aza"], ["https://tec.openplanner.team/stops/H4bn101a", "https://tec.openplanner.team/stops/H4ws158a"], ["https://tec.openplanner.team/stops/Blnzcar2", "https://tec.openplanner.team/stops/N522afb"], ["https://tec.openplanner.team/stops/LCscarr4", "https://tec.openplanner.team/stops/LCschri2"], ["https://tec.openplanner.team/stops/H1ob335b", "https://tec.openplanner.team/stops/H1ob341b"], ["https://tec.openplanner.team/stops/LlNhube2", "https://tec.openplanner.team/stops/LlNschu1"], ["https://tec.openplanner.team/stops/N167aea", "https://tec.openplanner.team/stops/N168aaa"], ["https://tec.openplanner.team/stops/LAUhost1", "https://tec.openplanner.team/stops/LAUtism2"], ["https://tec.openplanner.team/stops/X602aba", "https://tec.openplanner.team/stops/X604afa"], ["https://tec.openplanner.team/stops/N349aba", "https://tec.openplanner.team/stops/N349aea"], ["https://tec.openplanner.team/stops/Bmalsme2", "https://tec.openplanner.team/stops/Btlbcul2"], ["https://tec.openplanner.team/stops/LPAchpl2", "https://tec.openplanner.team/stops/LVSpota2"], ["https://tec.openplanner.team/stops/X758aea", "https://tec.openplanner.team/stops/X758afa"], ["https://tec.openplanner.team/stops/N501bib", "https://tec.openplanner.team/stops/N501lpb"], ["https://tec.openplanner.team/stops/H4fr390a", "https://tec.openplanner.team/stops/H4ty348b"], ["https://tec.openplanner.team/stops/Cravold2", "https://tec.openplanner.team/stops/Cwgtill2"], ["https://tec.openplanner.team/stops/Bottgar2", "https://tec.openplanner.team/stops/Bottgar6"], ["https://tec.openplanner.team/stops/X358afb", "https://tec.openplanner.team/stops/X994ada"], ["https://tec.openplanner.team/stops/Blmlbif2", "https://tec.openplanner.team/stops/Blmlvex1"], ["https://tec.openplanner.team/stops/LAVpequ1", "https://tec.openplanner.team/stops/LLRrape2"], ["https://tec.openplanner.team/stops/N542alb", "https://tec.openplanner.team/stops/N542amb"], ["https://tec.openplanner.team/stops/Bbealbu3", "https://tec.openplanner.team/stops/Bbeardu1"], ["https://tec.openplanner.team/stops/X608aha", "https://tec.openplanner.team/stops/X608asa"], ["https://tec.openplanner.team/stops/LCPone91", "https://tec.openplanner.team/stops/LCPoneu2"], ["https://tec.openplanner.team/stops/Cdagoss1", "https://tec.openplanner.team/stops/Cdanvpr2"], ["https://tec.openplanner.team/stops/X870aga", "https://tec.openplanner.team/stops/X870ahb"], ["https://tec.openplanner.team/stops/Cmyedpa1", "https://tec.openplanner.team/stops/Cmyedpa4"], ["https://tec.openplanner.team/stops/Blindel3", "https://tec.openplanner.team/stops/Blindel6"], ["https://tec.openplanner.team/stops/N536acb", "https://tec.openplanner.team/stops/N537aha"], ["https://tec.openplanner.team/stops/N232bxb", "https://tec.openplanner.team/stops/N232bya"], ["https://tec.openplanner.team/stops/X982beb", "https://tec.openplanner.team/stops/X982bma"], ["https://tec.openplanner.team/stops/H1mm122c", "https://tec.openplanner.team/stops/H1mm122d"], ["https://tec.openplanner.team/stops/X658aca", "https://tec.openplanner.team/stops/X658aha"], ["https://tec.openplanner.team/stops/LLrchat1", "https://tec.openplanner.team/stops/LLrchat2"], ["https://tec.openplanner.team/stops/Cgomerm4", "https://tec.openplanner.team/stops/Cwxplac2"], ["https://tec.openplanner.team/stops/Blimrof2", "https://tec.openplanner.team/stops/Brixbai2"], ["https://tec.openplanner.team/stops/N506aca", "https://tec.openplanner.team/stops/N506bib"], ["https://tec.openplanner.team/stops/LSPclai2", "https://tec.openplanner.team/stops/LSPgend2"], ["https://tec.openplanner.team/stops/Bbchdev2", "https://tec.openplanner.team/stops/Bbchmin1"], ["https://tec.openplanner.team/stops/LDAalbe2", "https://tec.openplanner.team/stops/LFethie1"], ["https://tec.openplanner.team/stops/Crsprai4", "https://tec.openplanner.team/stops/Crsrose1"], ["https://tec.openplanner.team/stops/LHUbail1", "https://tec.openplanner.team/stops/LHUbail2"], ["https://tec.openplanner.team/stops/X576aca", "https://tec.openplanner.team/stops/X576acb"], ["https://tec.openplanner.team/stops/Bbghpln1", "https://tec.openplanner.team/stops/Bbghsar2"], ["https://tec.openplanner.team/stops/Buccdef1", "https://tec.openplanner.team/stops/Buccvch1"], ["https://tec.openplanner.team/stops/Crccarr1", "https://tec.openplanner.team/stops/NH03adb"], ["https://tec.openplanner.team/stops/X917agb", "https://tec.openplanner.team/stops/X917ajb"], ["https://tec.openplanner.team/stops/LLSba4-2", "https://tec.openplanner.team/stops/LTOplac1"], ["https://tec.openplanner.team/stops/H4ft132a", "https://tec.openplanner.team/stops/H4ft133a"], ["https://tec.openplanner.team/stops/X850afa", "https://tec.openplanner.team/stops/X850afb"], ["https://tec.openplanner.team/stops/Bosqpqu1", "https://tec.openplanner.team/stops/Bosqpqu2"], ["https://tec.openplanner.team/stops/NL68adb", "https://tec.openplanner.team/stops/NL68aga"], ["https://tec.openplanner.team/stops/H5qu139a", "https://tec.openplanner.team/stops/H5qu145a"], ["https://tec.openplanner.team/stops/LlCgren1", "https://tec.openplanner.team/stops/LpEbins2"], ["https://tec.openplanner.team/stops/H1hc150b", "https://tec.openplanner.team/stops/H1hc151a"], ["https://tec.openplanner.team/stops/Ladarev2", "https://tec.openplanner.team/stops/Ladstat1"], ["https://tec.openplanner.team/stops/X619aaa", "https://tec.openplanner.team/stops/X619ama"], ["https://tec.openplanner.team/stops/H4mo182a", "https://tec.openplanner.team/stops/H4mo187a"], ["https://tec.openplanner.team/stops/X891abb", "https://tec.openplanner.team/stops/X891acb"], ["https://tec.openplanner.team/stops/N229amb", "https://tec.openplanner.team/stops/N229anb"], ["https://tec.openplanner.team/stops/LeYberl1", "https://tec.openplanner.team/stops/LrAmuhl1"], ["https://tec.openplanner.team/stops/Barcsta1", "https://tec.openplanner.team/stops/Bnetegl4"], ["https://tec.openplanner.team/stops/N574aaa", "https://tec.openplanner.team/stops/N574aeb"], ["https://tec.openplanner.team/stops/Lenclar2", "https://tec.openplanner.team/stops/Lveleje2"], ["https://tec.openplanner.team/stops/LBWfusi2", "https://tec.openplanner.team/stops/LFCdree1"], ["https://tec.openplanner.team/stops/N507aoa", "https://tec.openplanner.team/stops/N507apa"], ["https://tec.openplanner.team/stops/X771aib", "https://tec.openplanner.team/stops/X771alb"], ["https://tec.openplanner.team/stops/N501ela", "https://tec.openplanner.team/stops/N501lpa"], ["https://tec.openplanner.team/stops/X626agb", "https://tec.openplanner.team/stops/X626ahb"], ["https://tec.openplanner.team/stops/Bwspmon4", "https://tec.openplanner.team/stops/Bwsppos2"], ["https://tec.openplanner.team/stops/X758afb", "https://tec.openplanner.team/stops/X758ama"], ["https://tec.openplanner.team/stops/Llgauxc2", "https://tec.openplanner.team/stops/Llgtir-2"], ["https://tec.openplanner.team/stops/N533ala", "https://tec.openplanner.team/stops/N533ald"], ["https://tec.openplanner.team/stops/Lvchenn1", "https://tec.openplanner.team/stops/Lvcvand1"], ["https://tec.openplanner.team/stops/LmHflor2", "https://tec.openplanner.team/stops/LmHschm2"], ["https://tec.openplanner.team/stops/X983aga", "https://tec.openplanner.team/stops/X996aha"], ["https://tec.openplanner.team/stops/LMfange1", "https://tec.openplanner.team/stops/LMfbuck1"], ["https://tec.openplanner.team/stops/LaSneuh1", "https://tec.openplanner.team/stops/LhGbahn4"], ["https://tec.openplanner.team/stops/N539afa", "https://tec.openplanner.team/stops/N539afd"], ["https://tec.openplanner.team/stops/Lalhomb2", "https://tec.openplanner.team/stops/Lalmakr2"], ["https://tec.openplanner.team/stops/X604aea", "https://tec.openplanner.team/stops/X604afb"], ["https://tec.openplanner.team/stops/Cblbaiv1", "https://tec.openplanner.team/stops/Cmcegli2"], ["https://tec.openplanner.team/stops/X912aaa", "https://tec.openplanner.team/stops/X912alb"], ["https://tec.openplanner.team/stops/Lprmoin1", "https://tec.openplanner.team/stops/Lprmoin2"], ["https://tec.openplanner.team/stops/X896aia", "https://tec.openplanner.team/stops/X896aib"], ["https://tec.openplanner.team/stops/Bovehst1", "https://tec.openplanner.team/stops/Bovelge1"], ["https://tec.openplanner.team/stops/Laggare2", "https://tec.openplanner.team/stops/Lagjado1"], ["https://tec.openplanner.team/stops/X370ada", "https://tec.openplanner.team/stops/X850ajb"], ["https://tec.openplanner.team/stops/Cmastfi1", "https://tec.openplanner.team/stops/Cmocalv2"], ["https://tec.openplanner.team/stops/H1sy143a", "https://tec.openplanner.team/stops/H1sy143d"], ["https://tec.openplanner.team/stops/X725aha", "https://tec.openplanner.team/stops/X725ahb"], ["https://tec.openplanner.team/stops/LBjpech1", "https://tec.openplanner.team/stops/X575afb"], ["https://tec.openplanner.team/stops/X608ata", "https://tec.openplanner.team/stops/X608awa"], ["https://tec.openplanner.team/stops/X604adb", "https://tec.openplanner.team/stops/X604aeb"], ["https://tec.openplanner.team/stops/H3bo100c", "https://tec.openplanner.team/stops/H3bo100d"], ["https://tec.openplanner.team/stops/H1wa137a", "https://tec.openplanner.team/stops/H1wa153a"], ["https://tec.openplanner.team/stops/N501jba", "https://tec.openplanner.team/stops/N501jbb"], ["https://tec.openplanner.team/stops/Lbobuil1", "https://tec.openplanner.team/stops/Lbooffe2"], ["https://tec.openplanner.team/stops/LAbchpl1", "https://tec.openplanner.team/stops/LSevitu2"], ["https://tec.openplanner.team/stops/X820aca", "https://tec.openplanner.team/stops/X820acb"], ["https://tec.openplanner.team/stops/N122afb", "https://tec.openplanner.team/stops/N302adb"], ["https://tec.openplanner.team/stops/X805aga", "https://tec.openplanner.team/stops/X805ahb"], ["https://tec.openplanner.team/stops/LeYmosc1", "https://tec.openplanner.team/stops/LeYraaf1"], ["https://tec.openplanner.team/stops/LSTparf2", "https://tec.openplanner.team/stops/LTPtroi1"], ["https://tec.openplanner.team/stops/Cgyplst1", "https://tec.openplanner.team/stops/CMmarab1"], ["https://tec.openplanner.team/stops/H3so162b", "https://tec.openplanner.team/stops/H3so177a"], ["https://tec.openplanner.team/stops/Lagjard2", "https://tec.openplanner.team/stops/Lagrask1"], ["https://tec.openplanner.team/stops/H3lr111a", "https://tec.openplanner.team/stops/H3lr116b"], ["https://tec.openplanner.team/stops/X720aaa", "https://tec.openplanner.team/stops/X721asb"], ["https://tec.openplanner.team/stops/Btlbtbe1", "https://tec.openplanner.team/stops/Btlbtbe4"], ["https://tec.openplanner.team/stops/Caiecol1", "https://tec.openplanner.team/stops/Caiecol2"], ["https://tec.openplanner.team/stops/H1gh144a", "https://tec.openplanner.team/stops/H1gh145d"], ["https://tec.openplanner.team/stops/LLirout2", "https://tec.openplanner.team/stops/LRemorr4"], ["https://tec.openplanner.team/stops/N160acb", "https://tec.openplanner.team/stops/N160ahb"], ["https://tec.openplanner.team/stops/LlZbell1", "https://tec.openplanner.team/stops/LmNha151"], ["https://tec.openplanner.team/stops/X659asa", "https://tec.openplanner.team/stops/X741aib"], ["https://tec.openplanner.team/stops/Bllnlen1", "https://tec.openplanner.team/stops/Bllnlen2"], ["https://tec.openplanner.team/stops/LOL6che1", "https://tec.openplanner.team/stops/LSOgott2"], ["https://tec.openplanner.team/stops/Cmtcapi2", "https://tec.openplanner.team/stops/Cmtfabi1"], ["https://tec.openplanner.team/stops/Cmlhauc4", "https://tec.openplanner.team/stops/NC01afa"], ["https://tec.openplanner.team/stops/N565ala", "https://tec.openplanner.team/stops/N565alb"], ["https://tec.openplanner.team/stops/Cfmwaut2", "https://tec.openplanner.team/stops/Ctrrpla1"], ["https://tec.openplanner.team/stops/Cbweco1", "https://tec.openplanner.team/stops/Cbwegl1"], ["https://tec.openplanner.team/stops/X640aga", "https://tec.openplanner.team/stops/X640aha"], ["https://tec.openplanner.team/stops/H1er105a", "https://tec.openplanner.team/stops/H1er105b"], ["https://tec.openplanner.team/stops/H1cv100a", "https://tec.openplanner.team/stops/H1cv103b"], ["https://tec.openplanner.team/stops/LFdbagu1", "https://tec.openplanner.team/stops/LLC170-2"], ["https://tec.openplanner.team/stops/LVEcroi1", "https://tec.openplanner.team/stops/LVEroum1"], ["https://tec.openplanner.team/stops/X641ava", "https://tec.openplanner.team/stops/X641avb"], ["https://tec.openplanner.team/stops/LFCdree1", "https://tec.openplanner.team/stops/LMgkrui1"], ["https://tec.openplanner.team/stops/Cjuphil2", "https://tec.openplanner.team/stops/Cralimi2"], ["https://tec.openplanner.team/stops/N205ada", "https://tec.openplanner.team/stops/N219aeb"], ["https://tec.openplanner.team/stops/Clb4bra1", "https://tec.openplanner.team/stops/Clbpepi1"], ["https://tec.openplanner.team/stops/LOthiro1", "https://tec.openplanner.team/stops/LVsbrux2"], ["https://tec.openplanner.team/stops/Lmnfawe2", "https://tec.openplanner.team/stops/Lmnrame2"], ["https://tec.openplanner.team/stops/Ljhsart1", "https://tec.openplanner.team/stops/Lmnfawe1"], ["https://tec.openplanner.team/stops/Ccspla", "https://tec.openplanner.team/stops/Chhegli3"], ["https://tec.openplanner.team/stops/N501cma", "https://tec.openplanner.team/stops/N501cmc"], ["https://tec.openplanner.team/stops/Bgntcoo1", "https://tec.openplanner.team/stops/Bgntpos1"], ["https://tec.openplanner.team/stops/Ljewale2", "https://tec.openplanner.team/stops/Ljewale3"], ["https://tec.openplanner.team/stops/X850aha", "https://tec.openplanner.team/stops/X850aob"], ["https://tec.openplanner.team/stops/N245aca", "https://tec.openplanner.team/stops/N340afa"], ["https://tec.openplanner.team/stops/X638ala", "https://tec.openplanner.team/stops/X639adb"], ["https://tec.openplanner.team/stops/N217ada", "https://tec.openplanner.team/stops/N261aca"], ["https://tec.openplanner.team/stops/X747aia", "https://tec.openplanner.team/stops/X747aib"], ["https://tec.openplanner.team/stops/LBTxhen1", "https://tec.openplanner.team/stops/LBTxhen4"], ["https://tec.openplanner.team/stops/LCOcarr2", "https://tec.openplanner.team/stops/LCOcrom1"], ["https://tec.openplanner.team/stops/Canboni2", "https://tec.openplanner.team/stops/Canbruy1"], ["https://tec.openplanner.team/stops/Cgxdeba1", "https://tec.openplanner.team/stops/Cgxvvel2"], ["https://tec.openplanner.team/stops/X982aib", "https://tec.openplanner.team/stops/X982bub"], ["https://tec.openplanner.team/stops/X773adb", "https://tec.openplanner.team/stops/X773aea"], ["https://tec.openplanner.team/stops/Ccogibr1", "https://tec.openplanner.team/stops/Ccohuli2"], ["https://tec.openplanner.team/stops/N323aab", "https://tec.openplanner.team/stops/N323aba"], ["https://tec.openplanner.team/stops/H5fl100a", "https://tec.openplanner.team/stops/H5fl100b"], ["https://tec.openplanner.team/stops/N117bdb", "https://tec.openplanner.team/stops/N117bdc"], ["https://tec.openplanner.team/stops/X601ava", "https://tec.openplanner.team/stops/X601axa"], ["https://tec.openplanner.team/stops/N340acb", "https://tec.openplanner.team/stops/N340ada"], ["https://tec.openplanner.team/stops/Csecroi1", "https://tec.openplanner.team/stops/Csequew1"], ["https://tec.openplanner.team/stops/LBDcarr1", "https://tec.openplanner.team/stops/LJEchat1"], ["https://tec.openplanner.team/stops/Bosqcim2", "https://tec.openplanner.team/stops/Btubegy2"], ["https://tec.openplanner.team/stops/N538aea", "https://tec.openplanner.team/stops/N539ana"], ["https://tec.openplanner.team/stops/H4wn126b", "https://tec.openplanner.team/stops/H4wn127b"], ["https://tec.openplanner.team/stops/LXofans1", "https://tec.openplanner.team/stops/LXopeti2"], ["https://tec.openplanner.team/stops/X661aja", "https://tec.openplanner.team/stops/X661ajb"], ["https://tec.openplanner.team/stops/Bwaucig1", "https://tec.openplanner.team/stops/Bwaucig2"], ["https://tec.openplanner.team/stops/H5is169b", "https://tec.openplanner.team/stops/H5la177b"], ["https://tec.openplanner.team/stops/H2pe155a", "https://tec.openplanner.team/stops/H2pe157b"], ["https://tec.openplanner.team/stops/Bmrshan1", "https://tec.openplanner.team/stops/Cglfrom2"], ["https://tec.openplanner.team/stops/Cmcgoch2", "https://tec.openplanner.team/stops/Cmgcabi1"], ["https://tec.openplanner.team/stops/X954aea", "https://tec.openplanner.team/stops/X954aeb"], ["https://tec.openplanner.team/stops/LCschen1", "https://tec.openplanner.team/stops/LCschen2"], ["https://tec.openplanner.team/stops/Cjucar01", "https://tec.openplanner.team/stops/CMcarr2"], ["https://tec.openplanner.team/stops/N538adb", "https://tec.openplanner.team/stops/N542aia"], ["https://tec.openplanner.team/stops/Cgzcver1", "https://tec.openplanner.team/stops/Cgzm1482"], ["https://tec.openplanner.team/stops/LHAcite1", "https://tec.openplanner.team/stops/LVIsouv3"], ["https://tec.openplanner.team/stops/Bbsifml1", "https://tec.openplanner.team/stops/Bbsimpl1"], ["https://tec.openplanner.team/stops/X749adb", "https://tec.openplanner.team/stops/X749afa"], ["https://tec.openplanner.team/stops/N539aua", "https://tec.openplanner.team/stops/N539bfa"], ["https://tec.openplanner.team/stops/X601cja", "https://tec.openplanner.team/stops/X626afb"], ["https://tec.openplanner.team/stops/LLz21--1", "https://tec.openplanner.team/stops/LSTmast1"], ["https://tec.openplanner.team/stops/H1ni315b", "https://tec.openplanner.team/stops/H1ni318a"], ["https://tec.openplanner.team/stops/H3go102b", "https://tec.openplanner.team/stops/H3lr107a"], ["https://tec.openplanner.team/stops/Cmlfstt2", "https://tec.openplanner.team/stops/Cmlrous1"], ["https://tec.openplanner.team/stops/LsHkirc2", "https://tec.openplanner.team/stops/LsHkreu3"], ["https://tec.openplanner.team/stops/N511aoc", "https://tec.openplanner.team/stops/N511arb"], ["https://tec.openplanner.team/stops/N224aaa", "https://tec.openplanner.team/stops/X224aca"], ["https://tec.openplanner.team/stops/X670agb", "https://tec.openplanner.team/stops/X670akb"], ["https://tec.openplanner.team/stops/H4gu111a", "https://tec.openplanner.team/stops/H4ry130a"], ["https://tec.openplanner.team/stops/H2ch104a", "https://tec.openplanner.team/stops/H2ch109b"], ["https://tec.openplanner.team/stops/X636aaa", "https://tec.openplanner.team/stops/X670ala"], ["https://tec.openplanner.team/stops/X695aca", "https://tec.openplanner.team/stops/X695aga"], ["https://tec.openplanner.team/stops/Bwavcen1", "https://tec.openplanner.team/stops/Bwavgar8"], ["https://tec.openplanner.team/stops/Lbbremy2", "https://tec.openplanner.team/stops/Lcemalv2"], ["https://tec.openplanner.team/stops/X993ada", "https://tec.openplanner.team/stops/X993aja"], ["https://tec.openplanner.team/stops/X822aga", "https://tec.openplanner.team/stops/X822ahb"], ["https://tec.openplanner.team/stops/H4va233a", "https://tec.openplanner.team/stops/H4va234a"], ["https://tec.openplanner.team/stops/N121adb", "https://tec.openplanner.team/stops/N121afa"], ["https://tec.openplanner.team/stops/Blimegl1", "https://tec.openplanner.team/stops/Blmlgar1"], ["https://tec.openplanner.team/stops/H1hv130b", "https://tec.openplanner.team/stops/H1hv133b"], ["https://tec.openplanner.team/stops/N501hza", "https://tec.openplanner.team/stops/N501ibb"], ["https://tec.openplanner.team/stops/Bmanfbg1", "https://tec.openplanner.team/stops/Bmangar1"], ["https://tec.openplanner.team/stops/Bgzddfh1", "https://tec.openplanner.team/stops/Bgzddfh2"], ["https://tec.openplanner.team/stops/Lchtche1", "https://tec.openplanner.team/stops/Lchtche2"], ["https://tec.openplanner.team/stops/X696aca", "https://tec.openplanner.team/stops/X696aga"], ["https://tec.openplanner.team/stops/Lhefoot1", "https://tec.openplanner.team/stops/Lhehoux2"], ["https://tec.openplanner.team/stops/NL77ala", "https://tec.openplanner.team/stops/NL78aha"], ["https://tec.openplanner.team/stops/Lcemalv1", "https://tec.openplanner.team/stops/Lgrorch2"], ["https://tec.openplanner.team/stops/N503adb", "https://tec.openplanner.team/stops/N503ahb"], ["https://tec.openplanner.team/stops/X614ama", "https://tec.openplanner.team/stops/X614amb"], ["https://tec.openplanner.team/stops/N505aob", "https://tec.openplanner.team/stops/N580agb"], ["https://tec.openplanner.team/stops/LGeborn2", "https://tec.openplanner.team/stops/LGepeck2"], ["https://tec.openplanner.team/stops/X721ana", "https://tec.openplanner.team/stops/X721ata"], ["https://tec.openplanner.team/stops/X825aea", "https://tec.openplanner.team/stops/X825aeb"], ["https://tec.openplanner.team/stops/N232ava", "https://tec.openplanner.team/stops/N232awb"], ["https://tec.openplanner.team/stops/Cflmarq1", "https://tec.openplanner.team/stops/Cflspir2"], ["https://tec.openplanner.team/stops/H1wa154a", "https://tec.openplanner.team/stops/H1wa154b"], ["https://tec.openplanner.team/stops/N201aab", "https://tec.openplanner.team/stops/N201ara"], ["https://tec.openplanner.team/stops/X921aga", "https://tec.openplanner.team/stops/X921aqb"], ["https://tec.openplanner.team/stops/X833abb", "https://tec.openplanner.team/stops/X834aab"], ["https://tec.openplanner.team/stops/Cmlcaya1", "https://tec.openplanner.team/stops/Cmlhaie2"], ["https://tec.openplanner.team/stops/LCAwals2", "https://tec.openplanner.team/stops/LWHzave1"], ["https://tec.openplanner.team/stops/LESchat1", "https://tec.openplanner.team/stops/LEShony2"], ["https://tec.openplanner.team/stops/Lveecol2", "https://tec.openplanner.team/stops/Lvepris1"], ["https://tec.openplanner.team/stops/LPAbrun1", "https://tec.openplanner.team/stops/LPAmc--1"], ["https://tec.openplanner.team/stops/X789adb", "https://tec.openplanner.team/stops/X789afa"], ["https://tec.openplanner.team/stops/X673aaa", "https://tec.openplanner.team/stops/X673aba"], ["https://tec.openplanner.team/stops/Lfhchaf2", "https://tec.openplanner.team/stops/Lfhchaf3"], ["https://tec.openplanner.team/stops/LHOgymn2", "https://tec.openplanner.team/stops/LHOmc--2"], ["https://tec.openplanner.team/stops/Cstbasc2", "https://tec.openplanner.team/stops/Cstplac2"], ["https://tec.openplanner.team/stops/Cgoson11", "https://tec.openplanner.team/stops/Cgoson12"], ["https://tec.openplanner.team/stops/H1au101a", "https://tec.openplanner.team/stops/H1bx106a"], ["https://tec.openplanner.team/stops/N550agb", "https://tec.openplanner.team/stops/N550anb"], ["https://tec.openplanner.team/stops/LSLeg--2", "https://tec.openplanner.team/stops/LSLprov2"], ["https://tec.openplanner.team/stops/X636aea", "https://tec.openplanner.team/stops/X636bab"], ["https://tec.openplanner.team/stops/Llgpier2", "https://tec.openplanner.team/stops/Llgvero4"], ["https://tec.openplanner.team/stops/X996ada", "https://tec.openplanner.team/stops/X996aga"], ["https://tec.openplanner.team/stops/Lboeg--2", "https://tec.openplanner.team/stops/Lbosart2"], ["https://tec.openplanner.team/stops/Lpetenn1", "https://tec.openplanner.team/stops/Lpetenn2"], ["https://tec.openplanner.team/stops/LBOande2", "https://tec.openplanner.team/stops/LBOholt2"], ["https://tec.openplanner.team/stops/H1hm173a", "https://tec.openplanner.team/stops/H1sp353b"], ["https://tec.openplanner.team/stops/LFUgare1", "https://tec.openplanner.team/stops/LHurobi1"], ["https://tec.openplanner.team/stops/Bnivhut1", "https://tec.openplanner.team/stops/Bnivmfr1"], ["https://tec.openplanner.team/stops/Lsebuil1", "https://tec.openplanner.team/stops/Lserena1"], ["https://tec.openplanner.team/stops/H1hl128a", "https://tec.openplanner.team/stops/H1hl128b"], ["https://tec.openplanner.team/stops/X902aea", "https://tec.openplanner.team/stops/X902aob"], ["https://tec.openplanner.team/stops/Cmlvitf1", "https://tec.openplanner.team/stops/Cmlvitf2"], ["https://tec.openplanner.team/stops/Cdamare1", "https://tec.openplanner.team/stops/Cdamare2"], ["https://tec.openplanner.team/stops/X747aha", "https://tec.openplanner.team/stops/X749aab"], ["https://tec.openplanner.team/stops/LBTcarr2", "https://tec.openplanner.team/stops/LBTcarr4"], ["https://tec.openplanner.team/stops/X723adb", "https://tec.openplanner.team/stops/X723aea"], ["https://tec.openplanner.team/stops/H1je365a", "https://tec.openplanner.team/stops/H1je366a"], ["https://tec.openplanner.team/stops/LkTkabi2", "https://tec.openplanner.team/stops/LlNbene2"], ["https://tec.openplanner.team/stops/LCIsucr1", "https://tec.openplanner.team/stops/LCIsucr2"], ["https://tec.openplanner.team/stops/Bhenasc2", "https://tec.openplanner.team/stops/Bhenpla2"], ["https://tec.openplanner.team/stops/N539aeb", "https://tec.openplanner.team/stops/N539amb"], ["https://tec.openplanner.team/stops/X633aia", "https://tec.openplanner.team/stops/X653aeb"], ["https://tec.openplanner.team/stops/X390aha", "https://tec.openplanner.team/stops/X999ama"], ["https://tec.openplanner.team/stops/H1ch105a", "https://tec.openplanner.team/stops/H4tm140a"], ["https://tec.openplanner.team/stops/LHoetie2", "https://tec.openplanner.team/stops/LHovach2"], ["https://tec.openplanner.team/stops/H4ss157b", "https://tec.openplanner.team/stops/H5rx100a"], ["https://tec.openplanner.team/stops/X774aec", "https://tec.openplanner.team/stops/X774ahb"], ["https://tec.openplanner.team/stops/N501mua", "https://tec.openplanner.team/stops/N501myb"], ["https://tec.openplanner.team/stops/Ljubois1", "https://tec.openplanner.team/stops/Ljuchap3"], ["https://tec.openplanner.team/stops/Brebblo1", "https://tec.openplanner.team/stops/Brebpca1"], ["https://tec.openplanner.team/stops/Cobmven1", "https://tec.openplanner.team/stops/Cobmven2"], ["https://tec.openplanner.team/stops/LMNentr2", "https://tec.openplanner.team/stops/LMNheme2"], ["https://tec.openplanner.team/stops/Cbweco1", "https://tec.openplanner.team/stops/Cmg4bra1"], ["https://tec.openplanner.team/stops/H1ho123a", "https://tec.openplanner.team/stops/H1wa157b"], ["https://tec.openplanner.team/stops/LPRbayb2", "https://tec.openplanner.team/stops/LPRfour2"], ["https://tec.openplanner.team/stops/Btubegy2", "https://tec.openplanner.team/stops/Btubois1"], ["https://tec.openplanner.team/stops/Lbocorn1", "https://tec.openplanner.team/stops/Lbosart2"], ["https://tec.openplanner.team/stops/H4ag101a", "https://tec.openplanner.team/stops/H4ag102a"], ["https://tec.openplanner.team/stops/N501iaa", "https://tec.openplanner.team/stops/N501iqa"], ["https://tec.openplanner.team/stops/Cnapair2", "https://tec.openplanner.team/stops/N137aaa"], ["https://tec.openplanner.team/stops/H2tr250a", "https://tec.openplanner.team/stops/H2tr252a"], ["https://tec.openplanner.team/stops/H2bh106b", "https://tec.openplanner.team/stops/H2mg142a"], ["https://tec.openplanner.team/stops/Lmlboul2", "https://tec.openplanner.team/stops/Lmlmich2"], ["https://tec.openplanner.team/stops/Brsrpar1", "https://tec.openplanner.team/stops/Brsrrcu1"], ["https://tec.openplanner.team/stops/Lsemara2", "https://tec.openplanner.team/stops/Lsepair4"], ["https://tec.openplanner.team/stops/Canplch1", "https://tec.openplanner.team/stops/Canplch4"], ["https://tec.openplanner.team/stops/H1ba108a", "https://tec.openplanner.team/stops/H1ba111a"], ["https://tec.openplanner.team/stops/Cwfghis2", "https://tec.openplanner.team/stops/Cwfreta2"], ["https://tec.openplanner.team/stops/H2pr115a", "https://tec.openplanner.team/stops/H2pr115b"], ["https://tec.openplanner.team/stops/Cnacout2", "https://tec.openplanner.team/stops/Cnating2"], ["https://tec.openplanner.team/stops/LCEeg--2", "https://tec.openplanner.team/stops/LMEeg--1"], ["https://tec.openplanner.team/stops/Ctyhame1", "https://tec.openplanner.team/stops/Ctynamu1"], ["https://tec.openplanner.team/stops/Cgochfe1", "https://tec.openplanner.team/stops/CMemai1"], ["https://tec.openplanner.team/stops/LkEbbl-2", "https://tec.openplanner.team/stops/LkEfrie2"], ["https://tec.openplanner.team/stops/LMtegli1", "https://tec.openplanner.team/stops/LMttrou1"], ["https://tec.openplanner.team/stops/H1au100a", "https://tec.openplanner.team/stops/H1mr124b"], ["https://tec.openplanner.team/stops/Clacast1", "https://tec.openplanner.team/stops/Clacast2"], ["https://tec.openplanner.team/stops/Bqueegl2", "https://tec.openplanner.team/stops/Bquepla1"], ["https://tec.openplanner.team/stops/H4wr175a", "https://tec.openplanner.team/stops/H4wr175b"], ["https://tec.openplanner.team/stops/N558ama", "https://tec.openplanner.team/stops/N558amd"], ["https://tec.openplanner.team/stops/Loufleu2", "https://tec.openplanner.team/stops/Lougros1"], ["https://tec.openplanner.team/stops/X618aba", "https://tec.openplanner.team/stops/X618abb"], ["https://tec.openplanner.team/stops/Bgoemgr2", "https://tec.openplanner.team/stops/Bgoesch3"], ["https://tec.openplanner.team/stops/X739aha", "https://tec.openplanner.team/stops/X739aia"], ["https://tec.openplanner.team/stops/Cmlipsm2", "https://tec.openplanner.team/stops/Cmlrbru1"], ["https://tec.openplanner.team/stops/N553ana", "https://tec.openplanner.team/stops/N553anb"], ["https://tec.openplanner.team/stops/N551anb", "https://tec.openplanner.team/stops/N552acb"], ["https://tec.openplanner.team/stops/LBTchai3", "https://tec.openplanner.team/stops/LBThaut1"], ["https://tec.openplanner.team/stops/LLUlieg1", "https://tec.openplanner.team/stops/LLUlieg2"], ["https://tec.openplanner.team/stops/Cmerued2", "https://tec.openplanner.team/stops/Cmewaya2"], ["https://tec.openplanner.team/stops/LBEchan1", "https://tec.openplanner.team/stops/LBEtrix1"], ["https://tec.openplanner.team/stops/Loubiez1", "https://tec.openplanner.team/stops/Louense1"], ["https://tec.openplanner.team/stops/LlChebs1", "https://tec.openplanner.team/stops/LlCland1"], ["https://tec.openplanner.team/stops/X739afa", "https://tec.openplanner.team/stops/X739aga"], ["https://tec.openplanner.team/stops/Bwavfol1", "https://tec.openplanner.team/stops/Bwavnep1"], ["https://tec.openplanner.team/stops/H1wi153a", "https://tec.openplanner.team/stops/H1wi155a"], ["https://tec.openplanner.team/stops/Bgnvfai1", "https://tec.openplanner.team/stops/Blhupcl1"], ["https://tec.openplanner.team/stops/N232aaa", "https://tec.openplanner.team/stops/N286aaa"], ["https://tec.openplanner.team/stops/Cctbois4", "https://tec.openplanner.team/stops/Cmtproc2"], ["https://tec.openplanner.team/stops/Lglmoul2", "https://tec.openplanner.team/stops/Lmomarr4"], ["https://tec.openplanner.team/stops/X605acb", "https://tec.openplanner.team/stops/X634akb"], ["https://tec.openplanner.team/stops/H5bl121a", "https://tec.openplanner.team/stops/H5bl144a"], ["https://tec.openplanner.team/stops/H1fr118a", "https://tec.openplanner.team/stops/H1no141b"], ["https://tec.openplanner.team/stops/N504aaa", "https://tec.openplanner.team/stops/N511agb"], ["https://tec.openplanner.team/stops/N548ada", "https://tec.openplanner.team/stops/N548adb"], ["https://tec.openplanner.team/stops/N521asa", "https://tec.openplanner.team/stops/N521asb"], ["https://tec.openplanner.team/stops/LeYmosc2", "https://tec.openplanner.team/stops/LeYmuhl1"], ["https://tec.openplanner.team/stops/Cjuecha1", "https://tec.openplanner.team/stops/Cjuecha2"], ["https://tec.openplanner.team/stops/X687aia", "https://tec.openplanner.team/stops/X687ajb"], ["https://tec.openplanner.team/stops/H4ru242b", "https://tec.openplanner.team/stops/H4wc373a"], ["https://tec.openplanner.team/stops/Bbchcab1", "https://tec.openplanner.team/stops/Bbchpil2"], ["https://tec.openplanner.team/stops/Bitrcha1", "https://tec.openplanner.team/stops/Bitrgnt2"], ["https://tec.openplanner.team/stops/X358aba", "https://tec.openplanner.team/stops/X358adb"], ["https://tec.openplanner.team/stops/H1cu129a", "https://tec.openplanner.team/stops/H1cu129b"], ["https://tec.openplanner.team/stops/Bthspha1", "https://tec.openplanner.team/stops/Bwancal3"], ["https://tec.openplanner.team/stops/Cvpcime1", "https://tec.openplanner.team/stops/Cvpcour1"], ["https://tec.openplanner.team/stops/LLxalle2", "https://tec.openplanner.team/stops/LLxeclu2"], ["https://tec.openplanner.team/stops/LWbboeg1", "https://tec.openplanner.team/stops/LWbburn1"], ["https://tec.openplanner.team/stops/LaNmuhl2", "https://tec.openplanner.team/stops/LaNmuhl4"], ["https://tec.openplanner.team/stops/X261abb", "https://tec.openplanner.team/stops/X261ada"], ["https://tec.openplanner.team/stops/Bwatrte1", "https://tec.openplanner.team/stops/Bwatsuc1"], ["https://tec.openplanner.team/stops/H1cu119b", "https://tec.openplanner.team/stops/H1cu128b"], ["https://tec.openplanner.team/stops/LHHgare1", "https://tec.openplanner.team/stops/LSG111-1"], ["https://tec.openplanner.team/stops/Bwatbce2", "https://tec.openplanner.team/stops/Bwatcpr1"], ["https://tec.openplanner.team/stops/LmOkape1", "https://tec.openplanner.team/stops/Ltheg--1"], ["https://tec.openplanner.team/stops/H4os222b", "https://tec.openplanner.team/stops/H4re226b"], ["https://tec.openplanner.team/stops/N204aka", "https://tec.openplanner.team/stops/N204ala"], ["https://tec.openplanner.team/stops/Bottath1", "https://tec.openplanner.team/stops/Bottvil2"], ["https://tec.openplanner.team/stops/N584azb", "https://tec.openplanner.team/stops/N584bpa"], ["https://tec.openplanner.team/stops/H1ch143a", "https://tec.openplanner.team/stops/H4ld129b"], ["https://tec.openplanner.team/stops/X764aca", "https://tec.openplanner.team/stops/X764afb"], ["https://tec.openplanner.team/stops/LHEzoni2", "https://tec.openplanner.team/stops/LJOferm2"], ["https://tec.openplanner.team/stops/X982alb", "https://tec.openplanner.team/stops/X982ana"], ["https://tec.openplanner.team/stops/LBLplac1", "https://tec.openplanner.team/stops/LBLplas2"], ["https://tec.openplanner.team/stops/H4bi156b", "https://tec.openplanner.team/stops/H4eg103a"], ["https://tec.openplanner.team/stops/Lmlmaqu2", "https://tec.openplanner.team/stops/Lmlprie2"], ["https://tec.openplanner.team/stops/N270ada", "https://tec.openplanner.team/stops/N270aed"], ["https://tec.openplanner.team/stops/N161aab", "https://tec.openplanner.team/stops/N162afa"], ["https://tec.openplanner.team/stops/H1an102a", "https://tec.openplanner.team/stops/H1qv115b"], ["https://tec.openplanner.team/stops/NC11ama", "https://tec.openplanner.team/stops/NC11ana"], ["https://tec.openplanner.team/stops/LBAcent2", "https://tec.openplanner.team/stops/LBAcere2"], ["https://tec.openplanner.team/stops/N501mkb", "https://tec.openplanner.team/stops/N501mla"], ["https://tec.openplanner.team/stops/N512ama", "https://tec.openplanner.team/stops/N512asb"], ["https://tec.openplanner.team/stops/X344aeb", "https://tec.openplanner.team/stops/X363aaa"], ["https://tec.openplanner.team/stops/Bptbbie2", "https://tec.openplanner.team/stops/Bptbmco2"], ["https://tec.openplanner.team/stops/N501hpb", "https://tec.openplanner.team/stops/N501nca"], ["https://tec.openplanner.team/stops/X307aaa", "https://tec.openplanner.team/stops/X359agb"], ["https://tec.openplanner.team/stops/Baudvdu1", "https://tec.openplanner.team/stops/Baudwav2"], ["https://tec.openplanner.team/stops/Llmbouv2", "https://tec.openplanner.team/stops/Llmdeba2"], ["https://tec.openplanner.team/stops/Lanmouf2", "https://tec.openplanner.team/stops/Lanpisc1"], ["https://tec.openplanner.team/stops/Cvp3til5", "https://tec.openplanner.team/stops/Cvpchat2"], ["https://tec.openplanner.team/stops/Cfnsenz1", "https://tec.openplanner.team/stops/N106aib"], ["https://tec.openplanner.team/stops/Lhrcols4", "https://tec.openplanner.team/stops/Lvtboux1"], ["https://tec.openplanner.team/stops/Crccano2", "https://tec.openplanner.team/stops/Crcrlf2"], ["https://tec.openplanner.team/stops/Lmlcher1", "https://tec.openplanner.team/stops/Lmlhaut1"], ["https://tec.openplanner.team/stops/LeYloos1", "https://tec.openplanner.team/stops/LeYmero1"], ["https://tec.openplanner.team/stops/LREairp1", "https://tec.openplanner.team/stops/LREsaul1"], ["https://tec.openplanner.team/stops/H1hc125a", "https://tec.openplanner.team/stops/H1hc127d"], ["https://tec.openplanner.team/stops/Cmcbriq3", "https://tec.openplanner.team/stops/Cmchai2"], ["https://tec.openplanner.team/stops/N153abb", "https://tec.openplanner.team/stops/N153afb"], ["https://tec.openplanner.team/stops/X346afb", "https://tec.openplanner.team/stops/X892afb"], ["https://tec.openplanner.team/stops/LaHzoll*", "https://tec.openplanner.team/stops/LmNsied1"], ["https://tec.openplanner.team/stops/H1cu120a", "https://tec.openplanner.team/stops/H1fl139b"], ["https://tec.openplanner.team/stops/LHUcamp2", "https://tec.openplanner.team/stops/LHUsaul2"], ["https://tec.openplanner.team/stops/LYegeor1", "https://tec.openplanner.team/stops/LYegeor4"], ["https://tec.openplanner.team/stops/LBVclig2", "https://tec.openplanner.team/stops/LBVronx1"], ["https://tec.openplanner.team/stops/H4ml209a", "https://tec.openplanner.team/stops/H4ml209b"], ["https://tec.openplanner.team/stops/N202afb", "https://tec.openplanner.team/stops/N202aga"], ["https://tec.openplanner.team/stops/H4bo111a", "https://tec.openplanner.team/stops/H4bo181b"], ["https://tec.openplanner.team/stops/X652afb", "https://tec.openplanner.team/stops/X652afd"], ["https://tec.openplanner.team/stops/LHUalbe1", "https://tec.openplanner.team/stops/LHUneuv1"], ["https://tec.openplanner.team/stops/N501jua", "https://tec.openplanner.team/stops/N527aeb"], ["https://tec.openplanner.team/stops/Bbeaap51", "https://tec.openplanner.team/stops/Bbeaegl2"], ["https://tec.openplanner.team/stops/X804aga", "https://tec.openplanner.team/stops/X804awb"], ["https://tec.openplanner.team/stops/H1lo120a", "https://tec.openplanner.team/stops/H1lo120b"], ["https://tec.openplanner.team/stops/Lenptsa1", "https://tec.openplanner.team/stops/Llmdeba1"], ["https://tec.openplanner.team/stops/LeUfuss1", "https://tec.openplanner.team/stops/LeUkehr2"], ["https://tec.openplanner.team/stops/H4ka187b", "https://tec.openplanner.team/stops/H4ru236b"], ["https://tec.openplanner.team/stops/X624afa", "https://tec.openplanner.team/stops/X624afb"], ["https://tec.openplanner.team/stops/N225aca", "https://tec.openplanner.team/stops/N225acb"], ["https://tec.openplanner.team/stops/H4ty302a", "https://tec.openplanner.team/stops/H4ty302b"], ["https://tec.openplanner.team/stops/Cvpbifu2", "https://tec.openplanner.team/stops/Cvppost2"], ["https://tec.openplanner.team/stops/X664ala", "https://tec.openplanner.team/stops/X664ama"], ["https://tec.openplanner.team/stops/Cthoues2", "https://tec.openplanner.team/stops/Cthstre1"], ["https://tec.openplanner.team/stops/Btstpch2", "https://tec.openplanner.team/stops/N524aka"], ["https://tec.openplanner.team/stops/LTIgare1", "https://tec.openplanner.team/stops/LTIpora2"], ["https://tec.openplanner.team/stops/Lheelva1", "https://tec.openplanner.team/stops/Lheelva2"], ["https://tec.openplanner.team/stops/N508afb", "https://tec.openplanner.team/stops/N508ala"], ["https://tec.openplanner.team/stops/LaR1G--2", "https://tec.openplanner.team/stops/LrUlasc2"], ["https://tec.openplanner.team/stops/LHUetie*", "https://tec.openplanner.team/stops/LWNwavr3"], ["https://tec.openplanner.team/stops/X601aaa", "https://tec.openplanner.team/stops/X601acb"], ["https://tec.openplanner.team/stops/X759aba", "https://tec.openplanner.team/stops/X759acb"], ["https://tec.openplanner.team/stops/Lprmoin2", "https://tec.openplanner.team/stops/Lprtill2"], ["https://tec.openplanner.team/stops/H4ty276a", "https://tec.openplanner.team/stops/H4ty280a"], ["https://tec.openplanner.team/stops/X829adb", "https://tec.openplanner.team/stops/X829aeb"], ["https://tec.openplanner.team/stops/X653abb", "https://tec.openplanner.team/stops/X653aeb"], ["https://tec.openplanner.team/stops/X982aga", "https://tec.openplanner.team/stops/X982aia"], ["https://tec.openplanner.team/stops/LeUkehr1", "https://tec.openplanner.team/stops/LeUnisp1"], ["https://tec.openplanner.team/stops/LTResse2", "https://tec.openplanner.team/stops/LTRsain2"], ["https://tec.openplanner.team/stops/NC14ana", "https://tec.openplanner.team/stops/NC14apa"], ["https://tec.openplanner.team/stops/Lvepoud1", "https://tec.openplanner.team/stops/Lvepoud2"], ["https://tec.openplanner.team/stops/LwAlont3", "https://tec.openplanner.team/stops/LwAlont4"], ["https://tec.openplanner.team/stops/N501eib", "https://tec.openplanner.team/stops/N501lfb"], ["https://tec.openplanner.team/stops/N539aja", "https://tec.openplanner.team/stops/N539ajb"], ["https://tec.openplanner.team/stops/N532agb", "https://tec.openplanner.team/stops/N532aha"], ["https://tec.openplanner.team/stops/Clvchen1", "https://tec.openplanner.team/stops/Clvchen2"], ["https://tec.openplanner.team/stops/LDAandr1", "https://tec.openplanner.team/stops/LMuvill2"], ["https://tec.openplanner.team/stops/LLvpost1", "https://tec.openplanner.team/stops/NL78aeb"], ["https://tec.openplanner.team/stops/H4ma418b", "https://tec.openplanner.team/stops/H4ma420b"], ["https://tec.openplanner.team/stops/X605ada", "https://tec.openplanner.team/stops/X605adb"], ["https://tec.openplanner.team/stops/Lvomoul2", "https://tec.openplanner.team/stops/Lvovent1"], ["https://tec.openplanner.team/stops/H2mi122a", "https://tec.openplanner.team/stops/H2mi125a"], ["https://tec.openplanner.team/stops/Ctmmath1", "https://tec.openplanner.team/stops/Ctmmath2"], ["https://tec.openplanner.team/stops/N513aaa", "https://tec.openplanner.team/stops/N521ata"], ["https://tec.openplanner.team/stops/Bezegar2", "https://tec.openplanner.team/stops/Bezeksj4"], ["https://tec.openplanner.team/stops/Llgpari1", "https://tec.openplanner.team/stops/Llgstap2"], ["https://tec.openplanner.team/stops/X733aaa", "https://tec.openplanner.team/stops/X733abb"], ["https://tec.openplanner.team/stops/H1ho125b", "https://tec.openplanner.team/stops/H1ho139a"], ["https://tec.openplanner.team/stops/X617aeb", "https://tec.openplanner.team/stops/X695aba"], ["https://tec.openplanner.team/stops/Bnilspe4", "https://tec.openplanner.team/stops/Bwspjon1"], ["https://tec.openplanner.team/stops/N506aga", "https://tec.openplanner.team/stops/N556aea"], ["https://tec.openplanner.team/stops/N120aba", "https://tec.openplanner.team/stops/N120aea"], ["https://tec.openplanner.team/stops/H4ar104b", "https://tec.openplanner.team/stops/H4ar173a"], ["https://tec.openplanner.team/stops/Llglave1", "https://tec.openplanner.team/stops/Llgmako1"], ["https://tec.openplanner.team/stops/Lalverr2", "https://tec.openplanner.team/stops/Lrc594-2"], ["https://tec.openplanner.team/stops/N365acb", "https://tec.openplanner.team/stops/X344ada"], ["https://tec.openplanner.team/stops/LCelabi1", "https://tec.openplanner.team/stops/LFabraa1"], ["https://tec.openplanner.team/stops/LDLgran3", "https://tec.openplanner.team/stops/LDLgran4"], ["https://tec.openplanner.team/stops/N241afa", "https://tec.openplanner.team/stops/N585akb"], ["https://tec.openplanner.team/stops/Bqueblo2", "https://tec.openplanner.team/stops/Bquevel2"], ["https://tec.openplanner.team/stops/H1fr114a", "https://tec.openplanner.team/stops/H1fr152a"], ["https://tec.openplanner.team/stops/Btstbes2", "https://tec.openplanner.team/stops/Btstche2"], ["https://tec.openplanner.team/stops/H2lc145a", "https://tec.openplanner.team/stops/H2ll196b"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X770ada"], ["https://tec.openplanner.team/stops/H4co103b", "https://tec.openplanner.team/stops/H4co142a"], ["https://tec.openplanner.team/stops/N229akb", "https://tec.openplanner.team/stops/N230aca"], ["https://tec.openplanner.team/stops/LBIbois2", "https://tec.openplanner.team/stops/LBIcarg1"], ["https://tec.openplanner.team/stops/Blmlbou1", "https://tec.openplanner.team/stops/Blmlcar1"], ["https://tec.openplanner.team/stops/N501dtb", "https://tec.openplanner.team/stops/N501dzb"], ["https://tec.openplanner.team/stops/H1ob336a", "https://tec.openplanner.team/stops/H1ob336b"], ["https://tec.openplanner.team/stops/H1do120a", "https://tec.openplanner.team/stops/H1do122a"], ["https://tec.openplanner.team/stops/N360adc", "https://tec.openplanner.team/stops/N894agc"], ["https://tec.openplanner.team/stops/Chpchea2", "https://tec.openplanner.team/stops/Chpplac2"], ["https://tec.openplanner.team/stops/LSNness1", "https://tec.openplanner.team/stops/LXHfond3"], ["https://tec.openplanner.team/stops/Bnettir1", "https://tec.openplanner.team/stops/Bnetvan1"], ["https://tec.openplanner.team/stops/N106aja", "https://tec.openplanner.team/stops/N106ana"], ["https://tec.openplanner.team/stops/N874aib", "https://tec.openplanner.team/stops/N874alb"], ["https://tec.openplanner.team/stops/X604aha", "https://tec.openplanner.team/stops/X625agb"], ["https://tec.openplanner.team/stops/Crasabl1", "https://tec.openplanner.team/stops/Crasocq2"], ["https://tec.openplanner.team/stops/Ljhcarr2", "https://tec.openplanner.team/stops/Ljhsart1"], ["https://tec.openplanner.team/stops/N110ada", "https://tec.openplanner.team/stops/N110adb"], ["https://tec.openplanner.team/stops/LFsconc1", "https://tec.openplanner.team/stops/LFsherm2"], ["https://tec.openplanner.team/stops/X925ala", "https://tec.openplanner.team/stops/X925alb"], ["https://tec.openplanner.team/stops/LSBsere2", "https://tec.openplanner.team/stops/LSBsere4"], ["https://tec.openplanner.team/stops/LAMviam1", "https://tec.openplanner.team/stops/LAMviam2"], ["https://tec.openplanner.team/stops/N236ama", "https://tec.openplanner.team/stops/N236aoa"], ["https://tec.openplanner.team/stops/X633aib", "https://tec.openplanner.team/stops/X654aia"], ["https://tec.openplanner.team/stops/Ctm4che1", "https://tec.openplanner.team/stops/Ctmmonu1"], ["https://tec.openplanner.team/stops/X919aca", "https://tec.openplanner.team/stops/X919acb"], ["https://tec.openplanner.team/stops/Chhclde1", "https://tec.openplanner.team/stops/Chhsncb1"], ["https://tec.openplanner.team/stops/H4bh104a", "https://tec.openplanner.team/stops/H4bh104b"], ["https://tec.openplanner.team/stops/Ccimont1", "https://tec.openplanner.team/stops/Ccircar1"], ["https://tec.openplanner.team/stops/H4ru236a", "https://tec.openplanner.team/stops/H4ru246b"], ["https://tec.openplanner.team/stops/H1bo103a", "https://tec.openplanner.team/stops/H1sg150a"], ["https://tec.openplanner.team/stops/Cfcbobr2", "https://tec.openplanner.team/stops/Cfcsaut4"], ["https://tec.openplanner.team/stops/N532amb", "https://tec.openplanner.team/stops/N574agb"], ["https://tec.openplanner.team/stops/Bmelegl1", "https://tec.openplanner.team/stops/Bmelmqu1"], ["https://tec.openplanner.team/stops/NL76agd", "https://tec.openplanner.team/stops/NL77abb"], ["https://tec.openplanner.team/stops/X811amb", "https://tec.openplanner.team/stops/X811ana"], ["https://tec.openplanner.team/stops/Bgntcom1", "https://tec.openplanner.team/stops/Bgntffo2"], ["https://tec.openplanner.team/stops/H1ms294c", "https://tec.openplanner.team/stops/H1ms364a"], ["https://tec.openplanner.team/stops/Bneelaa1", "https://tec.openplanner.team/stops/Brach122"], ["https://tec.openplanner.team/stops/H1wa160a", "https://tec.openplanner.team/stops/H1wa160b"], ["https://tec.openplanner.team/stops/Bwavlon1", "https://tec.openplanner.team/stops/Bwavlon2"], ["https://tec.openplanner.team/stops/H1br121a", "https://tec.openplanner.team/stops/H1br122b"], ["https://tec.openplanner.team/stops/LlEzoll1", "https://tec.openplanner.team/stops/LlEzoll2"], ["https://tec.openplanner.team/stops/X662aoa", "https://tec.openplanner.team/stops/X662aob"], ["https://tec.openplanner.team/stops/Cjucpui1", "https://tec.openplanner.team/stops/Cjumarc1"], ["https://tec.openplanner.team/stops/N118aeb", "https://tec.openplanner.team/stops/N118afb"], ["https://tec.openplanner.team/stops/LSPplat2", "https://tec.openplanner.team/stops/LSPtonn2"], ["https://tec.openplanner.team/stops/Cmcgoch1", "https://tec.openplanner.team/stops/Cmcgoch2"], ["https://tec.openplanner.team/stops/N127afa", "https://tec.openplanner.team/stops/N134ahb"], ["https://tec.openplanner.team/stops/X659aia", "https://tec.openplanner.team/stops/X659aib"], ["https://tec.openplanner.team/stops/Lheaaz-2", "https://tec.openplanner.team/stops/LHSlava2"], ["https://tec.openplanner.team/stops/Becesbo1", "https://tec.openplanner.team/stops/H2ec100b"], ["https://tec.openplanner.team/stops/H4le127b", "https://tec.openplanner.team/stops/H4le128b"], ["https://tec.openplanner.team/stops/Bnivpgr1", "https://tec.openplanner.team/stops/Bnivtra2"], ["https://tec.openplanner.team/stops/N308aea", "https://tec.openplanner.team/stops/N308aic"], ["https://tec.openplanner.team/stops/Bhaless1", "https://tec.openplanner.team/stops/Bhaless2"], ["https://tec.openplanner.team/stops/N562boa", "https://tec.openplanner.team/stops/N562bob"], ["https://tec.openplanner.team/stops/H1ba102a", "https://tec.openplanner.team/stops/H1ba114a"], ["https://tec.openplanner.team/stops/Bosqcar1", "https://tec.openplanner.team/stops/Bvirrbo1"], ["https://tec.openplanner.team/stops/X796aab", "https://tec.openplanner.team/stops/X982bmb"], ["https://tec.openplanner.team/stops/H1hw118a", "https://tec.openplanner.team/stops/H1mc129a"], ["https://tec.openplanner.team/stops/Bbwacol2", "https://tec.openplanner.team/stops/Bwavpar1"], ["https://tec.openplanner.team/stops/Brixcme2", "https://tec.openplanner.team/stops/Brixfro3"], ["https://tec.openplanner.team/stops/Bblarbe2", "https://tec.openplanner.team/stops/Bblasse2"], ["https://tec.openplanner.team/stops/Bwatgar2", "https://tec.openplanner.team/stops/Bwatgar3"], ["https://tec.openplanner.team/stops/Cfocant1", "https://tec.openplanner.team/stops/Cfocorn1"], ["https://tec.openplanner.team/stops/LXobaty3", "https://tec.openplanner.team/stops/X599afd"], ["https://tec.openplanner.team/stops/N121aab", "https://tec.openplanner.team/stops/N158abb"], ["https://tec.openplanner.team/stops/Cnacroc2", "https://tec.openplanner.team/stops/Cnaferr1"], ["https://tec.openplanner.team/stops/N501hca", "https://tec.openplanner.team/stops/N501hkb"], ["https://tec.openplanner.team/stops/LCn4---1", "https://tec.openplanner.team/stops/LCn4---2"], ["https://tec.openplanner.team/stops/Bbauham1", "https://tec.openplanner.team/stops/Blilgar1"], ["https://tec.openplanner.team/stops/H4qu230b", "https://tec.openplanner.team/stops/H4tg262a"], ["https://tec.openplanner.team/stops/LLOchpl1", "https://tec.openplanner.team/stops/LLOcreu1"], ["https://tec.openplanner.team/stops/X942aab", "https://tec.openplanner.team/stops/X942aea"], ["https://tec.openplanner.team/stops/Loutras1", "https://tec.openplanner.team/stops/Lscbarg2"], ["https://tec.openplanner.team/stops/N222aaa", "https://tec.openplanner.team/stops/N222aya"], ["https://tec.openplanner.team/stops/Ccpetan2", "https://tec.openplanner.team/stops/Cptccas1"], ["https://tec.openplanner.team/stops/Bhalrat1", "https://tec.openplanner.team/stops/Bhalwat2"], ["https://tec.openplanner.team/stops/X790afb", "https://tec.openplanner.team/stops/X790aja"], ["https://tec.openplanner.team/stops/X617agb", "https://tec.openplanner.team/stops/X617ahb"], ["https://tec.openplanner.team/stops/X601afa", "https://tec.openplanner.team/stops/X662aqb"], ["https://tec.openplanner.team/stops/LLAbure1", "https://tec.openplanner.team/stops/LLAchpl1"], ["https://tec.openplanner.team/stops/Llgamer2", "https://tec.openplanner.team/stops/Llgoutr1"], ["https://tec.openplanner.team/stops/H2sb259a", "https://tec.openplanner.team/stops/H3lr132b"], ["https://tec.openplanner.team/stops/Btubmar1", "https://tec.openplanner.team/stops/Btubmar2"], ["https://tec.openplanner.team/stops/H4hq131a", "https://tec.openplanner.team/stops/H4hs135a"], ["https://tec.openplanner.team/stops/X994akb", "https://tec.openplanner.team/stops/X995add"], ["https://tec.openplanner.team/stops/Bbldgar2", "https://tec.openplanner.team/stops/Bhmmjco1"], ["https://tec.openplanner.team/stops/Cdamare2", "https://tec.openplanner.team/stops/Cloauln2"], ["https://tec.openplanner.team/stops/N501hxz", "https://tec.openplanner.team/stops/N501lzz"], ["https://tec.openplanner.team/stops/Lougoff2", "https://tec.openplanner.team/stops/Louvand2"], ["https://tec.openplanner.team/stops/N244aea", "https://tec.openplanner.team/stops/N244aeb"], ["https://tec.openplanner.team/stops/X615bha", "https://tec.openplanner.team/stops/X615bhb"], ["https://tec.openplanner.team/stops/H1bu138a", "https://tec.openplanner.team/stops/H2ep172a"], ["https://tec.openplanner.team/stops/Balssvi2", "https://tec.openplanner.team/stops/Balswwe2"], ["https://tec.openplanner.team/stops/H4bw100a", "https://tec.openplanner.team/stops/H4bw100b"], ["https://tec.openplanner.team/stops/N201aga", "https://tec.openplanner.team/stops/N201aub"], ["https://tec.openplanner.team/stops/H1ba109a", "https://tec.openplanner.team/stops/H1ba115b"], ["https://tec.openplanner.team/stops/Lhufays2", "https://tec.openplanner.team/stops/Lhujonc2"], ["https://tec.openplanner.team/stops/Ldidefo1", "https://tec.openplanner.team/stops/Ldipl--5"], ["https://tec.openplanner.team/stops/LGrchpl2", "https://tec.openplanner.team/stops/LORherl1"], ["https://tec.openplanner.team/stops/Cwgcroi2", "https://tec.openplanner.team/stops/Cwgdeba2"], ["https://tec.openplanner.team/stops/X902azb", "https://tec.openplanner.team/stops/X902bgb"], ["https://tec.openplanner.team/stops/Ccinali1", "https://tec.openplanner.team/stops/Cmlm2412"], ["https://tec.openplanner.team/stops/X614aha", "https://tec.openplanner.team/stops/X615ama"], ["https://tec.openplanner.team/stops/Cgy3012", "https://tec.openplanner.team/stops/Cmtfoye1"], ["https://tec.openplanner.team/stops/X666aja", "https://tec.openplanner.team/stops/X729abb"], ["https://tec.openplanner.team/stops/LrApont2", "https://tec.openplanner.team/stops/LrAtitf1"], ["https://tec.openplanner.team/stops/H4hq130a", "https://tec.openplanner.team/stops/H4hs137b"], ["https://tec.openplanner.team/stops/N104abb", "https://tec.openplanner.team/stops/N104acb"], ["https://tec.openplanner.team/stops/H1gh158a", "https://tec.openplanner.team/stops/H1gh160a"], ["https://tec.openplanner.team/stops/LRRmeta1", "https://tec.openplanner.team/stops/LSSvill2"], ["https://tec.openplanner.team/stops/H4re225a", "https://tec.openplanner.team/stops/H5at122a"], ["https://tec.openplanner.team/stops/LMImc--2", "https://tec.openplanner.team/stops/LMIpast1"], ["https://tec.openplanner.team/stops/H5pe149a", "https://tec.openplanner.team/stops/H5pe150a"], ["https://tec.openplanner.team/stops/LCsange2", "https://tec.openplanner.team/stops/LCseg--2"], ["https://tec.openplanner.team/stops/N526ada", "https://tec.openplanner.team/stops/N526adb"], ["https://tec.openplanner.team/stops/N353aab", "https://tec.openplanner.team/stops/N353aba"], ["https://tec.openplanner.team/stops/Lfhdone1", "https://tec.openplanner.team/stops/Lfhnrou1"], ["https://tec.openplanner.team/stops/X907afa", "https://tec.openplanner.team/stops/X907ahb"], ["https://tec.openplanner.team/stops/Lfhborg2", "https://tec.openplanner.team/stops/Livgera3"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lhutill1"], ["https://tec.openplanner.team/stops/H4mo170a", "https://tec.openplanner.team/stops/H4rx141a"], ["https://tec.openplanner.team/stops/Bclgapi2", "https://tec.openplanner.team/stops/Bclgbvi2"], ["https://tec.openplanner.team/stops/Lvtchpl1", "https://tec.openplanner.team/stops/Lvtchpl4"], ["https://tec.openplanner.team/stops/Bbsivi11", "https://tec.openplanner.team/stops/Bbsivil3"], ["https://tec.openplanner.team/stops/LAWhein2", "https://tec.openplanner.team/stops/LAWxhen2"], ["https://tec.openplanner.team/stops/Balsbeg2", "https://tec.openplanner.team/stops/Bbrlrph2"], ["https://tec.openplanner.team/stops/N103aib", "https://tec.openplanner.team/stops/N106agb"], ["https://tec.openplanner.team/stops/H1fa117b", "https://tec.openplanner.team/stops/H1fa121a"], ["https://tec.openplanner.team/stops/H2ha133a", "https://tec.openplanner.team/stops/H2sb233c"], ["https://tec.openplanner.team/stops/Cchtiro4", "https://tec.openplanner.team/stops/NC01aha"], ["https://tec.openplanner.team/stops/H1qu106b", "https://tec.openplanner.team/stops/H1qu107b"], ["https://tec.openplanner.team/stops/Cmacreu2", "https://tec.openplanner.team/stops/Cmareun1"], ["https://tec.openplanner.team/stops/LJEmalg1", "https://tec.openplanner.team/stops/LVEdTEC1"], ["https://tec.openplanner.team/stops/LeLkalt1", "https://tec.openplanner.team/stops/LwYsour3"], ["https://tec.openplanner.team/stops/Llgbass2", "https://tec.openplanner.team/stops/Llgdefr2"], ["https://tec.openplanner.team/stops/Ljeblum2", "https://tec.openplanner.team/stops/Ljeespe2"], ["https://tec.openplanner.team/stops/N501msb", "https://tec.openplanner.team/stops/N501mtc"], ["https://tec.openplanner.team/stops/N507aha", "https://tec.openplanner.team/stops/N507ama"], ["https://tec.openplanner.team/stops/Bwavbwa2", "https://tec.openplanner.team/stops/Bwavdel2"], ["https://tec.openplanner.team/stops/Cmlaili1", "https://tec.openplanner.team/stops/Cmlaili2"], ["https://tec.openplanner.team/stops/Btubaig1", "https://tec.openplanner.team/stops/Btubsca1"], ["https://tec.openplanner.team/stops/Cmomalg1", "https://tec.openplanner.team/stops/Cmoprov1"], ["https://tec.openplanner.team/stops/H1be101b", "https://tec.openplanner.team/stops/H1be104a"], ["https://tec.openplanner.team/stops/N515aga", "https://tec.openplanner.team/stops/N515aja"], ["https://tec.openplanner.team/stops/LMOford1", "https://tec.openplanner.team/stops/LMOm48-1"], ["https://tec.openplanner.team/stops/N537aka", "https://tec.openplanner.team/stops/N537alb"], ["https://tec.openplanner.team/stops/Lvealbe2", "https://tec.openplanner.team/stops/Lvepris1"], ["https://tec.openplanner.team/stops/X999afa", "https://tec.openplanner.team/stops/X999afb"], ["https://tec.openplanner.team/stops/X812aoa", "https://tec.openplanner.team/stops/X812aqa"], ["https://tec.openplanner.team/stops/Lch179-1", "https://tec.openplanner.team/stops/Lchcomm1"], ["https://tec.openplanner.team/stops/Bovecha1", "https://tec.openplanner.team/stops/Bwavtrt1"], ["https://tec.openplanner.team/stops/Bwavtrt1", "https://tec.openplanner.team/stops/Bwavtrt2"], ["https://tec.openplanner.team/stops/N534bsa", "https://tec.openplanner.team/stops/N534btb"], ["https://tec.openplanner.team/stops/H1au113a", "https://tec.openplanner.team/stops/H1mr126b"], ["https://tec.openplanner.team/stops/N219aea", "https://tec.openplanner.team/stops/N219afb"], ["https://tec.openplanner.team/stops/H2ma205b", "https://tec.openplanner.team/stops/H2ma263a"], ["https://tec.openplanner.team/stops/Cmygbbo2", "https://tec.openplanner.team/stops/Cmyvert1"], ["https://tec.openplanner.team/stops/H4lz121a", "https://tec.openplanner.team/stops/H4lz160a"], ["https://tec.openplanner.team/stops/X766ada", "https://tec.openplanner.team/stops/X766aea"], ["https://tec.openplanner.team/stops/LWAhart1", "https://tec.openplanner.team/stops/LWAlpre1"], ["https://tec.openplanner.team/stops/X602aba", "https://tec.openplanner.team/stops/X604afc"], ["https://tec.openplanner.team/stops/LnIfrie1", "https://tec.openplanner.team/stops/LnIkirc2"], ["https://tec.openplanner.team/stops/H1hr128a", "https://tec.openplanner.team/stops/H1ne149a"], ["https://tec.openplanner.team/stops/X638arb", "https://tec.openplanner.team/stops/X639acd"], ["https://tec.openplanner.team/stops/H1po139a", "https://tec.openplanner.team/stops/H1po139b"], ["https://tec.openplanner.team/stops/H4lu126a", "https://tec.openplanner.team/stops/H4lu128a"], ["https://tec.openplanner.team/stops/H4mv193b", "https://tec.openplanner.team/stops/H4va231a"], ["https://tec.openplanner.team/stops/LLocruc2", "https://tec.openplanner.team/stops/LRcjard1"], ["https://tec.openplanner.team/stops/N201aeb", "https://tec.openplanner.team/stops/N201aed"], ["https://tec.openplanner.team/stops/X879aba", "https://tec.openplanner.team/stops/X879acb"], ["https://tec.openplanner.team/stops/NL76acb", "https://tec.openplanner.team/stops/NL80acb"], ["https://tec.openplanner.team/stops/Btubmar2", "https://tec.openplanner.team/stops/Btubsam2"], ["https://tec.openplanner.team/stops/N501dwb", "https://tec.openplanner.team/stops/N501etz"], ["https://tec.openplanner.team/stops/LFmpoin1", "https://tec.openplanner.team/stops/LFmroye1"], ["https://tec.openplanner.team/stops/LVIdeva2", "https://tec.openplanner.team/stops/LVIvert1"], ["https://tec.openplanner.team/stops/Bwspm371", "https://tec.openplanner.team/stops/Bwspm372"], ["https://tec.openplanner.team/stops/H4og207b", "https://tec.openplanner.team/stops/H4og208b"], ["https://tec.openplanner.team/stops/Bblaang2", "https://tec.openplanner.team/stops/Bblafrn2"], ["https://tec.openplanner.team/stops/LFEplac1", "https://tec.openplanner.team/stops/X597apb"], ["https://tec.openplanner.team/stops/H1sp354a", "https://tec.openplanner.team/stops/H1sp357b"], ["https://tec.openplanner.team/stops/X879ara", "https://tec.openplanner.team/stops/X880agb"], ["https://tec.openplanner.team/stops/X802aga", "https://tec.openplanner.team/stops/X822aha"], ["https://tec.openplanner.team/stops/Bcrnvic1", "https://tec.openplanner.team/stops/Bernpla1"], ["https://tec.openplanner.team/stops/Bblaniv1", "https://tec.openplanner.team/stops/Bblaniv2"], ["https://tec.openplanner.team/stops/N155agb", "https://tec.openplanner.team/stops/N155aja"], ["https://tec.openplanner.team/stops/N543bta", "https://tec.openplanner.team/stops/N543btb"], ["https://tec.openplanner.team/stops/X731agb", "https://tec.openplanner.team/stops/X731amb"], ["https://tec.openplanner.team/stops/N211aya", "https://tec.openplanner.team/stops/N211ayb"], ["https://tec.openplanner.team/stops/LLTgole2", "https://tec.openplanner.team/stops/LLTtour2"], ["https://tec.openplanner.team/stops/Bhaleur1", "https://tec.openplanner.team/stops/Bhalker1"], ["https://tec.openplanner.team/stops/Blsmcha3", "https://tec.openplanner.team/stops/Blsmvan1"], ["https://tec.openplanner.team/stops/X811afa", "https://tec.openplanner.team/stops/X811agb"], ["https://tec.openplanner.team/stops/N509asa", "https://tec.openplanner.team/stops/N509atb"], ["https://tec.openplanner.team/stops/H2le148b", "https://tec.openplanner.team/stops/H2le150a"], ["https://tec.openplanner.team/stops/H4de112a", "https://tec.openplanner.team/stops/H4ss156a"], ["https://tec.openplanner.team/stops/Lseptsa2", "https://tec.openplanner.team/stops/Lseverh2"], ["https://tec.openplanner.team/stops/Bwatath3", "https://tec.openplanner.team/stops/Bwatlbs1"], ["https://tec.openplanner.team/stops/NL74aga", "https://tec.openplanner.team/stops/NL74ahc"], ["https://tec.openplanner.team/stops/N426ada", "https://tec.openplanner.team/stops/N426aea"], ["https://tec.openplanner.team/stops/N103aca", "https://tec.openplanner.team/stops/N103afa"], ["https://tec.openplanner.team/stops/LHecime2", "https://tec.openplanner.team/stops/LHStrez2"], ["https://tec.openplanner.team/stops/X659aib", "https://tec.openplanner.team/stops/X659ata"], ["https://tec.openplanner.team/stops/N213aca", "https://tec.openplanner.team/stops/N348adb"], ["https://tec.openplanner.team/stops/Bllnein3", "https://tec.openplanner.team/stops/Bllnrge2"], ["https://tec.openplanner.team/stops/N201ahb", "https://tec.openplanner.team/stops/N201aqb"], ["https://tec.openplanner.team/stops/H1je219a", "https://tec.openplanner.team/stops/H1je219b"], ["https://tec.openplanner.team/stops/X672aeb", "https://tec.openplanner.team/stops/X672aec"], ["https://tec.openplanner.team/stops/N127baa", "https://tec.openplanner.team/stops/N134aha"], ["https://tec.openplanner.team/stops/Cclchap2", "https://tec.openplanner.team/stops/Cclplac2"], ["https://tec.openplanner.team/stops/Bhenard1", "https://tec.openplanner.team/stops/Bhenhau1"], ["https://tec.openplanner.team/stops/LvA12--3", "https://tec.openplanner.team/stops/LvAkirc4"], ["https://tec.openplanner.team/stops/N212aba", "https://tec.openplanner.team/stops/N212abb"], ["https://tec.openplanner.team/stops/X721abb", "https://tec.openplanner.team/stops/X763agb"], ["https://tec.openplanner.team/stops/N501dba", "https://tec.openplanner.team/stops/N533aob"], ["https://tec.openplanner.team/stops/N118aya", "https://tec.openplanner.team/stops/N118ayb"], ["https://tec.openplanner.team/stops/N501kuc", "https://tec.openplanner.team/stops/N501kzb"], ["https://tec.openplanner.team/stops/Lghhaut2", "https://tec.openplanner.team/stops/Lghpara1"], ["https://tec.openplanner.team/stops/H2hg145b", "https://tec.openplanner.team/stops/H2hg150b"], ["https://tec.openplanner.team/stops/X948aea", "https://tec.openplanner.team/stops/X948afa"], ["https://tec.openplanner.team/stops/H2le153a", "https://tec.openplanner.team/stops/H2mo122c"], ["https://tec.openplanner.team/stops/N127aeb", "https://tec.openplanner.team/stops/N140aab"], ["https://tec.openplanner.team/stops/H4mv193b", "https://tec.openplanner.team/stops/H4mv195b"], ["https://tec.openplanner.team/stops/H5bl123a", "https://tec.openplanner.team/stops/H5bl123b"], ["https://tec.openplanner.team/stops/X938adb", "https://tec.openplanner.team/stops/X938aeb"], ["https://tec.openplanner.team/stops/LNCchau1", "https://tec.openplanner.team/stops/LNCmada1"], ["https://tec.openplanner.team/stops/LRGgend3", "https://tec.openplanner.team/stops/LRGpt5-3"], ["https://tec.openplanner.team/stops/N270aed", "https://tec.openplanner.team/stops/N270afc"], ["https://tec.openplanner.team/stops/X363aaa", "https://tec.openplanner.team/stops/X363aba"], ["https://tec.openplanner.team/stops/N548aab", "https://tec.openplanner.team/stops/N569ada"], ["https://tec.openplanner.team/stops/Bnivari1", "https://tec.openplanner.team/stops/Bnivvcw2"], ["https://tec.openplanner.team/stops/X644aaa", "https://tec.openplanner.team/stops/X644aab"], ["https://tec.openplanner.team/stops/LCPcomm1", "https://tec.openplanner.team/stops/LCPecli2"], ["https://tec.openplanner.team/stops/Lloauto2", "https://tec.openplanner.team/stops/Llocime2"], ["https://tec.openplanner.team/stops/X926aba", "https://tec.openplanner.team/stops/X926afb"], ["https://tec.openplanner.team/stops/X639aib", "https://tec.openplanner.team/stops/X639aua"], ["https://tec.openplanner.team/stops/N515aqd", "https://tec.openplanner.team/stops/N518acc"], ["https://tec.openplanner.team/stops/X653afb", "https://tec.openplanner.team/stops/X667aca"], ["https://tec.openplanner.team/stops/Cmeptmi1", "https://tec.openplanner.team/stops/Cmeptmi2"], ["https://tec.openplanner.team/stops/X811acb", "https://tec.openplanner.team/stops/X811aka"], ["https://tec.openplanner.team/stops/X998aab", "https://tec.openplanner.team/stops/X998aza"], ["https://tec.openplanner.team/stops/H2hg268c", "https://tec.openplanner.team/stops/H2hg269a"], ["https://tec.openplanner.team/stops/Bgntcbo1", "https://tec.openplanner.team/stops/Bgntcom1"], ["https://tec.openplanner.team/stops/X638aka", "https://tec.openplanner.team/stops/X638ama"], ["https://tec.openplanner.team/stops/LMYchpl1", "https://tec.openplanner.team/stops/X597aqb"], ["https://tec.openplanner.team/stops/Bperalv1", "https://tec.openplanner.team/stops/Bperalv2"], ["https://tec.openplanner.team/stops/N510afa", "https://tec.openplanner.team/stops/N513agd"], ["https://tec.openplanner.team/stops/Lghprea1", "https://tec.openplanner.team/stops/Lghprea2"], ["https://tec.openplanner.team/stops/N501gsa", "https://tec.openplanner.team/stops/N501hly"], ["https://tec.openplanner.team/stops/X911aca", "https://tec.openplanner.team/stops/X911aeb"], ["https://tec.openplanner.team/stops/LRGchap1", "https://tec.openplanner.team/stops/LRGgend1"], ["https://tec.openplanner.team/stops/Cfccol1", "https://tec.openplanner.team/stops/NH21afb"], ["https://tec.openplanner.team/stops/Cdogrro2", "https://tec.openplanner.team/stops/Ctufleu4"], ["https://tec.openplanner.team/stops/Llgcite2", "https://tec.openplanner.team/stops/Llgphol1"], ["https://tec.openplanner.team/stops/Cthrlef1", "https://tec.openplanner.team/stops/Cthrwai1"], ["https://tec.openplanner.team/stops/X261adb", "https://tec.openplanner.team/stops/X982bsb"], ["https://tec.openplanner.team/stops/H2an101b", "https://tec.openplanner.team/stops/H2an102b"], ["https://tec.openplanner.team/stops/LJU51--2", "https://tec.openplanner.team/stops/LJUmate1"], ["https://tec.openplanner.team/stops/X820aca", "https://tec.openplanner.team/stops/X820afb"], ["https://tec.openplanner.team/stops/Bhenard4", "https://tec.openplanner.team/stops/Bhengou1"], ["https://tec.openplanner.team/stops/H1mr122b", "https://tec.openplanner.team/stops/H1wi151a"], ["https://tec.openplanner.team/stops/Ljuchap3", "https://tec.openplanner.team/stops/Llgcouv1"], ["https://tec.openplanner.team/stops/Bopplon2", "https://tec.openplanner.team/stops/Borbode2"], ["https://tec.openplanner.team/stops/H4to135a", "https://tec.openplanner.team/stops/H4to137b"], ["https://tec.openplanner.team/stops/X919ala", "https://tec.openplanner.team/stops/X919aoa"], ["https://tec.openplanner.team/stops/H4do108b", "https://tec.openplanner.team/stops/H4do202b"], ["https://tec.openplanner.team/stops/Bbsicen1", "https://tec.openplanner.team/stops/Bbsipos2"], ["https://tec.openplanner.team/stops/N561aba", "https://tec.openplanner.team/stops/N584aqa"], ["https://tec.openplanner.team/stops/Lrcstad1", "https://tec.openplanner.team/stops/Lrcvill1"], ["https://tec.openplanner.team/stops/LBLplas2", "https://tec.openplanner.team/stops/LMotrem2"], ["https://tec.openplanner.team/stops/Cvlstan1", "https://tec.openplanner.team/stops/NH21aeb"], ["https://tec.openplanner.team/stops/N212adb", "https://tec.openplanner.team/stops/N348acb"], ["https://tec.openplanner.team/stops/N424adb", "https://tec.openplanner.team/stops/N424aeb"], ["https://tec.openplanner.team/stops/Lalmakr2", "https://tec.openplanner.team/stops/Lanplat1"], ["https://tec.openplanner.team/stops/Cfrcoqu2", "https://tec.openplanner.team/stops/Cfrptfe2"], ["https://tec.openplanner.team/stops/H4mx114b", "https://tec.openplanner.team/stops/H4mx117a"], ["https://tec.openplanner.team/stops/X746aca", "https://tec.openplanner.team/stops/X746amb"], ["https://tec.openplanner.team/stops/N511akb", "https://tec.openplanner.team/stops/N511alb"], ["https://tec.openplanner.team/stops/LeYfeld2", "https://tec.openplanner.team/stops/LeYteeh2"], ["https://tec.openplanner.team/stops/N505aeb", "https://tec.openplanner.team/stops/N505afa"], ["https://tec.openplanner.team/stops/Cmcbriq1", "https://tec.openplanner.team/stops/Cmchai1"], ["https://tec.openplanner.team/stops/H1as100b", "https://tec.openplanner.team/stops/H1no142a"], ["https://tec.openplanner.team/stops/LLmcarr2", "https://tec.openplanner.team/stops/LLmetat2"], ["https://tec.openplanner.team/stops/Cciecol1", "https://tec.openplanner.team/stops/Ccigill1"], ["https://tec.openplanner.team/stops/Ccyfede2", "https://tec.openplanner.team/stops/Ccymabo2"], ["https://tec.openplanner.team/stops/LAYambl1", "https://tec.openplanner.team/stops/LAYlieg2"], ["https://tec.openplanner.team/stops/H2sb232b", "https://tec.openplanner.team/stops/H2sb234b"], ["https://tec.openplanner.team/stops/H4ch118a", "https://tec.openplanner.team/stops/H4ch118b"], ["https://tec.openplanner.team/stops/H1mm125a", "https://tec.openplanner.team/stops/H1mm125d"], ["https://tec.openplanner.team/stops/LTyhapp3", "https://tec.openplanner.team/stops/LTyhapp4"], ["https://tec.openplanner.team/stops/N236adb", "https://tec.openplanner.team/stops/N254afb"], ["https://tec.openplanner.team/stops/Bitrfsc1", "https://tec.openplanner.team/stops/Bitrfsc2"], ["https://tec.openplanner.team/stops/Bllnmet2", "https://tec.openplanner.team/stops/Bllnrro1"], ["https://tec.openplanner.team/stops/N542acb", "https://tec.openplanner.team/stops/N542ara"], ["https://tec.openplanner.team/stops/X547aeb", "https://tec.openplanner.team/stops/X547aqa"], ["https://tec.openplanner.team/stops/Crefont2", "https://tec.openplanner.team/stops/Creshau1"], ["https://tec.openplanner.team/stops/Bgnvbsi2", "https://tec.openplanner.team/stops/Bgnvpos1"], ["https://tec.openplanner.team/stops/X612abb", "https://tec.openplanner.team/stops/X612aca"], ["https://tec.openplanner.team/stops/LCFcarr1", "https://tec.openplanner.team/stops/LCFcarr2"], ["https://tec.openplanner.team/stops/Llgbron1", "https://tec.openplanner.team/stops/Llgjoie2"], ["https://tec.openplanner.team/stops/H4ra159b", "https://tec.openplanner.team/stops/H4tp147b"], ["https://tec.openplanner.team/stops/X766aca", "https://tec.openplanner.team/stops/X766ajb"], ["https://tec.openplanner.team/stops/X396abb", "https://tec.openplanner.team/stops/X396acb"], ["https://tec.openplanner.team/stops/LAWaube2", "https://tec.openplanner.team/stops/LAWcite3"], ["https://tec.openplanner.team/stops/LTPec--2", "https://tec.openplanner.team/stops/LTPsalm1"], ["https://tec.openplanner.team/stops/H1bo108b", "https://tec.openplanner.team/stops/H1bo109b"], ["https://tec.openplanner.team/stops/Crspana1", "https://tec.openplanner.team/stops/Crsstem1"], ["https://tec.openplanner.team/stops/H1qp142a", "https://tec.openplanner.team/stops/H1qp142b"], ["https://tec.openplanner.team/stops/H1mk109a", "https://tec.openplanner.team/stops/H1mk109b"], ["https://tec.openplanner.team/stops/H1sy144b", "https://tec.openplanner.team/stops/H1sy150a"], ["https://tec.openplanner.team/stops/H1ro141a", "https://tec.openplanner.team/stops/H1ro141b"], ["https://tec.openplanner.team/stops/N117baa", "https://tec.openplanner.team/stops/N571agb"], ["https://tec.openplanner.team/stops/H4bn173a", "https://tec.openplanner.team/stops/H4bn174b"], ["https://tec.openplanner.team/stops/N507ala", "https://tec.openplanner.team/stops/N507ama"], ["https://tec.openplanner.team/stops/LENoule2", "https://tec.openplanner.team/stops/LENtour1"], ["https://tec.openplanner.team/stops/N506aca", "https://tec.openplanner.team/stops/N506acb"], ["https://tec.openplanner.team/stops/Cgzgrru1", "https://tec.openplanner.team/stops/Cgzlera2"], ["https://tec.openplanner.team/stops/Cgocalv2", "https://tec.openplanner.team/stops/Cgocalv4"], ["https://tec.openplanner.team/stops/N302aaa", "https://tec.openplanner.team/stops/N302aba"], ["https://tec.openplanner.team/stops/LCEec--2", "https://tec.openplanner.team/stops/LCEinst2"], ["https://tec.openplanner.team/stops/H1el136a", "https://tec.openplanner.team/stops/H1el140b"], ["https://tec.openplanner.team/stops/Cgyrrep2", "https://tec.openplanner.team/stops/Cgystbe1"], ["https://tec.openplanner.team/stops/Lvcdumo1", "https://tec.openplanner.team/stops/Lvcvesd*"], ["https://tec.openplanner.team/stops/X601aga", "https://tec.openplanner.team/stops/X601agb"], ["https://tec.openplanner.team/stops/N104adb", "https://tec.openplanner.team/stops/N104aeb"], ["https://tec.openplanner.team/stops/LDapota2", "https://tec.openplanner.team/stops/LGEcons2"], ["https://tec.openplanner.team/stops/Llgavoc1", "https://tec.openplanner.team/stops/Llgrame1"], ["https://tec.openplanner.team/stops/LOL6che2", "https://tec.openplanner.team/stops/LOLfoss2"], ["https://tec.openplanner.team/stops/Bblague1", "https://tec.openplanner.team/stops/Bblague2"], ["https://tec.openplanner.team/stops/LBglign1", "https://tec.openplanner.team/stops/LBglign2"], ["https://tec.openplanner.team/stops/Cchblne1", "https://tec.openplanner.team/stops/Cchplan1"], ["https://tec.openplanner.team/stops/NL76aob", "https://tec.openplanner.team/stops/NL80avb"], ["https://tec.openplanner.team/stops/X660acb", "https://tec.openplanner.team/stops/X660aha"], ["https://tec.openplanner.team/stops/X615akb", "https://tec.openplanner.team/stops/X615amb"], ["https://tec.openplanner.team/stops/H1ho140a", "https://tec.openplanner.team/stops/H1wa135b"], ["https://tec.openplanner.team/stops/Cmaprov1", "https://tec.openplanner.team/stops/Cmareun2"], ["https://tec.openplanner.team/stops/H4by115d", "https://tec.openplanner.team/stops/H4wp151a"], ["https://tec.openplanner.team/stops/NC14amb", "https://tec.openplanner.team/stops/NC14aoe"], ["https://tec.openplanner.team/stops/H1ms292a", "https://tec.openplanner.team/stops/H1ms314b"], ["https://tec.openplanner.team/stops/Cctberg2", "https://tec.openplanner.team/stops/Cctvill2"], ["https://tec.openplanner.team/stops/Ctucamb2", "https://tec.openplanner.team/stops/Ctuhouz1"], ["https://tec.openplanner.team/stops/LCFcafe1", "https://tec.openplanner.team/stops/LCFcarr1"], ["https://tec.openplanner.team/stops/LHUcomp2", "https://tec.openplanner.team/stops/LHUresi3"], ["https://tec.openplanner.team/stops/N525ata", "https://tec.openplanner.team/stops/N526aab"], ["https://tec.openplanner.team/stops/N501eob", "https://tec.openplanner.team/stops/N501mda"], ["https://tec.openplanner.team/stops/H4es108a", "https://tec.openplanner.team/stops/H4hx118a"], ["https://tec.openplanner.team/stops/X834aab", "https://tec.openplanner.team/stops/X834aba"], ["https://tec.openplanner.team/stops/LrEgend1", "https://tec.openplanner.team/stops/LrEochs2"], ["https://tec.openplanner.team/stops/Llmeg--*", "https://tec.openplanner.team/stops/LWechea1"], ["https://tec.openplanner.team/stops/H4os223a", "https://tec.openplanner.team/stops/H4va232b"], ["https://tec.openplanner.team/stops/LHrreal1", "https://tec.openplanner.team/stops/LHseg--3"], ["https://tec.openplanner.team/stops/X805aaa", "https://tec.openplanner.team/stops/X805aac"], ["https://tec.openplanner.team/stops/CMwate1", "https://tec.openplanner.team/stops/CMwate2"], ["https://tec.openplanner.team/stops/LSkcomb1", "https://tec.openplanner.team/stops/LSkcomb2"], ["https://tec.openplanner.team/stops/N539aqb", "https://tec.openplanner.team/stops/N539arb"], ["https://tec.openplanner.team/stops/X746aea", "https://tec.openplanner.team/stops/X746aeb"], ["https://tec.openplanner.team/stops/LFR201-2", "https://tec.openplanner.team/stops/LFRspa-1"], ["https://tec.openplanner.team/stops/Bwatb4s2", "https://tec.openplanner.team/stops/Bwatcpr1"], ["https://tec.openplanner.team/stops/H2ml110b", "https://tec.openplanner.team/stops/H2ml114b"], ["https://tec.openplanner.team/stops/Bhenfer1", "https://tec.openplanner.team/stops/Bhenfer2"], ["https://tec.openplanner.team/stops/LTHturo1", "https://tec.openplanner.team/stops/LTHturo2"], ["https://tec.openplanner.team/stops/N536aba", "https://tec.openplanner.team/stops/N536abb"], ["https://tec.openplanner.team/stops/H4ef164a", "https://tec.openplanner.team/stops/H4fa125b"], ["https://tec.openplanner.team/stops/Cfcmass1", "https://tec.openplanner.team/stops/Cfcmass2"], ["https://tec.openplanner.team/stops/X542aea", "https://tec.openplanner.team/stops/X542aeb"], ["https://tec.openplanner.team/stops/Crocona1", "https://tec.openplanner.team/stops/Crocona2"], ["https://tec.openplanner.team/stops/Bcsebde2", "https://tec.openplanner.team/stops/Bsmgsuz2"], ["https://tec.openplanner.team/stops/N117ata", "https://tec.openplanner.team/stops/N569aic"], ["https://tec.openplanner.team/stops/X623aab", "https://tec.openplanner.team/stops/X623agb"], ["https://tec.openplanner.team/stops/LORcomb1", "https://tec.openplanner.team/stops/LORcomb2"], ["https://tec.openplanner.team/stops/H2bh110d", "https://tec.openplanner.team/stops/H2bh118b"], ["https://tec.openplanner.team/stops/LMIterr1", "https://tec.openplanner.team/stops/LSOathe2"], ["https://tec.openplanner.team/stops/Lgrrein2", "https://tec.openplanner.team/stops/Lgrstou2"], ["https://tec.openplanner.team/stops/H2ep172b", "https://tec.openplanner.team/stops/H2le147b"], ["https://tec.openplanner.team/stops/H1vh136a", "https://tec.openplanner.team/stops/H1vh136b"], ["https://tec.openplanner.team/stops/H1ci104b", "https://tec.openplanner.team/stops/H1hn206b"], ["https://tec.openplanner.team/stops/LDaeg--1", "https://tec.openplanner.team/stops/LDapota2"], ["https://tec.openplanner.team/stops/LGlcite1", "https://tec.openplanner.team/stops/LHZbren2"], ["https://tec.openplanner.team/stops/N543coa", "https://tec.openplanner.team/stops/N543cob"], ["https://tec.openplanner.team/stops/Cfmgara2", "https://tec.openplanner.team/stops/Cfmwaut2"], ["https://tec.openplanner.team/stops/LGeduc-1", "https://tec.openplanner.team/stops/LGegare1"], ["https://tec.openplanner.team/stops/X825adb", "https://tec.openplanner.team/stops/X826aca"], ["https://tec.openplanner.team/stops/N308ala", "https://tec.openplanner.team/stops/N308baa"], ["https://tec.openplanner.team/stops/Bbcodam4", "https://tec.openplanner.team/stops/H3br101a"], ["https://tec.openplanner.team/stops/X638aib", "https://tec.openplanner.team/stops/X638ajb"], ["https://tec.openplanner.team/stops/H1do131a", "https://tec.openplanner.team/stops/H1do131d"], ["https://tec.openplanner.team/stops/X397aac", "https://tec.openplanner.team/stops/X398aab"], ["https://tec.openplanner.team/stops/H4po124b", "https://tec.openplanner.team/stops/H4po126b"], ["https://tec.openplanner.team/stops/N501jba", "https://tec.openplanner.team/stops/N501jia"], ["https://tec.openplanner.team/stops/Loucent1", "https://tec.openplanner.team/stops/Lousite6"], ["https://tec.openplanner.team/stops/Lmndari1", "https://tec.openplanner.team/stops/Lmndeso2"], ["https://tec.openplanner.team/stops/H4bo113a", "https://tec.openplanner.team/stops/H4bo117a"], ["https://tec.openplanner.team/stops/X979aha", "https://tec.openplanner.team/stops/X979aja"], ["https://tec.openplanner.team/stops/Cgzdeve1", "https://tec.openplanner.team/stops/Clrwesp2"], ["https://tec.openplanner.team/stops/Brsgcfl1", "https://tec.openplanner.team/stops/Brsgfso2"], ["https://tec.openplanner.team/stops/LLRrape3", "https://tec.openplanner.team/stops/LLRrape4"], ["https://tec.openplanner.team/stops/Bgemibb2", "https://tec.openplanner.team/stops/Bgemman1"], ["https://tec.openplanner.team/stops/N141ana", "https://tec.openplanner.team/stops/N141anb"], ["https://tec.openplanner.team/stops/H4hg158a", "https://tec.openplanner.team/stops/H4hg159a"], ["https://tec.openplanner.team/stops/LsVprum1", "https://tec.openplanner.team/stops/LsVprum2"], ["https://tec.openplanner.team/stops/X768aka", "https://tec.openplanner.team/stops/X768akb"], ["https://tec.openplanner.team/stops/H4fa126a", "https://tec.openplanner.team/stops/H4fa126b"], ["https://tec.openplanner.team/stops/LLMeg--1", "https://tec.openplanner.team/stops/LLMfond1"], ["https://tec.openplanner.team/stops/Cgyblob1", "https://tec.openplanner.team/stops/Cgyblob2"], ["https://tec.openplanner.team/stops/X641aca", "https://tec.openplanner.team/stops/X641aga"], ["https://tec.openplanner.team/stops/X768adb", "https://tec.openplanner.team/stops/X769aqa"], ["https://tec.openplanner.team/stops/Cci28ju2", "https://tec.openplanner.team/stops/Cciarfr2"], ["https://tec.openplanner.team/stops/Llmcoop1", "https://tec.openplanner.team/stops/Llmcoop2"], ["https://tec.openplanner.team/stops/H2ll186b", "https://tec.openplanner.team/stops/H2sv259a"], ["https://tec.openplanner.team/stops/X801bua", "https://tec.openplanner.team/stops/X801bwb"], ["https://tec.openplanner.team/stops/LAVpequ1", "https://tec.openplanner.team/stops/LAVstat1"], ["https://tec.openplanner.team/stops/X362aba", "https://tec.openplanner.team/stops/X362acb"], ["https://tec.openplanner.team/stops/LHrchat1", "https://tec.openplanner.team/stops/LHrchez1"], ["https://tec.openplanner.team/stops/LBahome1", "https://tec.openplanner.team/stops/LLUadze2"], ["https://tec.openplanner.team/stops/Llgbida1", "https://tec.openplanner.team/stops/Llgfont4"], ["https://tec.openplanner.team/stops/H5qu140a", "https://tec.openplanner.team/stops/H5st161b"], ["https://tec.openplanner.team/stops/X923aob", "https://tec.openplanner.team/stops/X923apb"], ["https://tec.openplanner.team/stops/X986agb", "https://tec.openplanner.team/stops/X986ajb"], ["https://tec.openplanner.team/stops/Lwaeau-1", "https://tec.openplanner.team/stops/Lwaelme2"], ["https://tec.openplanner.team/stops/H5wo123a", "https://tec.openplanner.team/stops/H5wo123b"], ["https://tec.openplanner.team/stops/NR21aca", "https://tec.openplanner.team/stops/NR21agb"], ["https://tec.openplanner.team/stops/N136aab", "https://tec.openplanner.team/stops/N138aca"], ["https://tec.openplanner.team/stops/H1mb131a", "https://tec.openplanner.team/stops/H1mb131b"], ["https://tec.openplanner.team/stops/LHEoutr2", "https://tec.openplanner.team/stops/LHEzoni2"], ["https://tec.openplanner.team/stops/LNCdoma3", "https://tec.openplanner.team/stops/LNCdoma4"], ["https://tec.openplanner.team/stops/X812afa", "https://tec.openplanner.team/stops/X812afb"], ["https://tec.openplanner.team/stops/H1bo101a", "https://tec.openplanner.team/stops/H1bo106a"], ["https://tec.openplanner.team/stops/Cforepo1", "https://tec.openplanner.team/stops/Cforepo2"], ["https://tec.openplanner.team/stops/X610ada", "https://tec.openplanner.team/stops/X610ahb"], ["https://tec.openplanner.team/stops/X982bna", "https://tec.openplanner.team/stops/X986abb"], ["https://tec.openplanner.team/stops/N158aab", "https://tec.openplanner.team/stops/N168aab"], ["https://tec.openplanner.team/stops/X779acb", "https://tec.openplanner.team/stops/X779ada"], ["https://tec.openplanner.team/stops/N531abb", "https://tec.openplanner.team/stops/N531ara"], ["https://tec.openplanner.team/stops/Cthalli3", "https://tec.openplanner.team/stops/Cthdeco1"], ["https://tec.openplanner.team/stops/X780aha", "https://tec.openplanner.team/stops/X780ata"], ["https://tec.openplanner.team/stops/X733aba", "https://tec.openplanner.team/stops/X733abb"], ["https://tec.openplanner.team/stops/H2ll183a", "https://tec.openplanner.team/stops/H2ll183b"], ["https://tec.openplanner.team/stops/N220aaa", "https://tec.openplanner.team/stops/N220aca"], ["https://tec.openplanner.team/stops/X782agb", "https://tec.openplanner.team/stops/X782aha"], ["https://tec.openplanner.team/stops/X673aba", "https://tec.openplanner.team/stops/X674aaa"], ["https://tec.openplanner.team/stops/X601bia", "https://tec.openplanner.team/stops/X601bxb"], ["https://tec.openplanner.team/stops/Bsmgmas1", "https://tec.openplanner.team/stops/Btanpla3"], ["https://tec.openplanner.team/stops/H4eh104a", "https://tec.openplanner.team/stops/H4he101b"], ["https://tec.openplanner.team/stops/X696aaa", "https://tec.openplanner.team/stops/X696aha"], ["https://tec.openplanner.team/stops/LBApak2*", "https://tec.openplanner.team/stops/LETsaiv2"], ["https://tec.openplanner.team/stops/N580aab", "https://tec.openplanner.team/stops/N580ada"], ["https://tec.openplanner.team/stops/Lengran1", "https://tec.openplanner.team/stops/Lenmivi*"], ["https://tec.openplanner.team/stops/H4fl179a", "https://tec.openplanner.team/stops/H4mg139b"], ["https://tec.openplanner.team/stops/LeUschu1", "https://tec.openplanner.team/stops/LeUwetz2"], ["https://tec.openplanner.team/stops/LBamate2", "https://tec.openplanner.team/stops/LBapepi6"], ["https://tec.openplanner.team/stops/Bsaumlk3", "https://tec.openplanner.team/stops/Bsaumlp2"], ["https://tec.openplanner.team/stops/LeLbegl2", "https://tec.openplanner.team/stops/LeLgrie1"], ["https://tec.openplanner.team/stops/N357aca", "https://tec.openplanner.team/stops/N357acb"], ["https://tec.openplanner.team/stops/Csachas1", "https://tec.openplanner.team/stops/Csawagn2"], ["https://tec.openplanner.team/stops/LaMahof2", "https://tec.openplanner.team/stops/LmI82--2"], ["https://tec.openplanner.team/stops/H4ml206a", "https://tec.openplanner.team/stops/H4pi134b"], ["https://tec.openplanner.team/stops/H4bx108b", "https://tec.openplanner.team/stops/H4te251b"], ["https://tec.openplanner.team/stops/X725aab", "https://tec.openplanner.team/stops/X754ajb"], ["https://tec.openplanner.team/stops/Ccspla", "https://tec.openplanner.team/stops/NC28aga"], ["https://tec.openplanner.team/stops/N235aha", "https://tec.openplanner.team/stops/N241aca"], ["https://tec.openplanner.team/stops/X750abb", "https://tec.openplanner.team/stops/X750acb"], ["https://tec.openplanner.team/stops/Lagmoli2", "https://tec.openplanner.team/stops/Llggram4"], ["https://tec.openplanner.team/stops/Lchacie2", "https://tec.openplanner.team/stops/Lchchau1"], ["https://tec.openplanner.team/stops/X609aoa", "https://tec.openplanner.team/stops/X645aaa"], ["https://tec.openplanner.team/stops/H1eo107a", "https://tec.openplanner.team/stops/H1eo107b"], ["https://tec.openplanner.team/stops/Cfaecwa1", "https://tec.openplanner.team/stops/Cfamate1"], ["https://tec.openplanner.team/stops/Cgxmaco1", "https://tec.openplanner.team/stops/CMleer1"], ["https://tec.openplanner.team/stops/N308aza", "https://tec.openplanner.team/stops/N311agb"], ["https://tec.openplanner.team/stops/LBk79--1", "https://tec.openplanner.team/stops/LBkgrae2"], ["https://tec.openplanner.team/stops/Bhevgro1", "https://tec.openplanner.team/stops/Bkrawil1"], ["https://tec.openplanner.team/stops/Ccicloc2", "https://tec.openplanner.team/stops/Ccigene2"], ["https://tec.openplanner.team/stops/Cbicamp2", "https://tec.openplanner.team/stops/Cbiseur2"], ["https://tec.openplanner.team/stops/N569aab", "https://tec.openplanner.team/stops/N569aba"], ["https://tec.openplanner.team/stops/X901aga", "https://tec.openplanner.team/stops/X902bbb"], ["https://tec.openplanner.team/stops/X940aba", "https://tec.openplanner.team/stops/X940acb"], ["https://tec.openplanner.team/stops/LBSvi321", "https://tec.openplanner.team/stops/LBSvi522"], ["https://tec.openplanner.team/stops/LVLf37-2", "https://tec.openplanner.team/stops/LVLsabl4"], ["https://tec.openplanner.team/stops/LDoeg--2", "https://tec.openplanner.team/stops/LHFcaqu2"], ["https://tec.openplanner.team/stops/Cmmceri2", "https://tec.openplanner.team/stops/Cmmcime2"], ["https://tec.openplanner.team/stops/X757aia", "https://tec.openplanner.team/stops/X757aic"], ["https://tec.openplanner.team/stops/X731aea", "https://tec.openplanner.team/stops/X731aka"], ["https://tec.openplanner.team/stops/N513aha", "https://tec.openplanner.team/stops/N521atb"], ["https://tec.openplanner.team/stops/H1no141a", "https://tec.openplanner.team/stops/H1no141b"], ["https://tec.openplanner.team/stops/N136aaa", "https://tec.openplanner.team/stops/N138ajb"], ["https://tec.openplanner.team/stops/Bhptcha2", "https://tec.openplanner.team/stops/Bhptpla1"], ["https://tec.openplanner.team/stops/N547aea", "https://tec.openplanner.team/stops/N550ala"], ["https://tec.openplanner.team/stops/LbTathe1", "https://tec.openplanner.team/stops/LbTkreu2"], ["https://tec.openplanner.team/stops/X354aca", "https://tec.openplanner.team/stops/X359aaa"], ["https://tec.openplanner.team/stops/LVbcoul1", "https://tec.openplanner.team/stops/LVbeg--2"], ["https://tec.openplanner.team/stops/X878ada", "https://tec.openplanner.team/stops/X879aqb"], ["https://tec.openplanner.team/stops/H1ho147a", "https://tec.openplanner.team/stops/H1pd142a"], ["https://tec.openplanner.team/stops/Bquecar2", "https://tec.openplanner.team/stops/Bquecro1"], ["https://tec.openplanner.team/stops/LSuusin1", "https://tec.openplanner.team/stops/LSuusin2"], ["https://tec.openplanner.team/stops/X921alb", "https://tec.openplanner.team/stops/X921aob"], ["https://tec.openplanner.team/stops/N554aaa", "https://tec.openplanner.team/stops/N555aba"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X744acb"], ["https://tec.openplanner.team/stops/LmHbahn1", "https://tec.openplanner.team/stops/LmTschi1"], ["https://tec.openplanner.team/stops/Lenplac1", "https://tec.openplanner.team/stops/Llmdeba1"], ["https://tec.openplanner.team/stops/X741apa", "https://tec.openplanner.team/stops/X741apb"], ["https://tec.openplanner.team/stops/Llgform1", "https://tec.openplanner.team/stops/Llgform2"], ["https://tec.openplanner.team/stops/LESgran1", "https://tec.openplanner.team/stops/LFNtill1"], ["https://tec.openplanner.team/stops/LNAbras2", "https://tec.openplanner.team/stops/LYEphar1"], ["https://tec.openplanner.team/stops/H5fl104b", "https://tec.openplanner.team/stops/H5wo124a"], ["https://tec.openplanner.team/stops/H4ka174b", "https://tec.openplanner.team/stops/H4ka176b"], ["https://tec.openplanner.team/stops/X608ava", "https://tec.openplanner.team/stops/X608aza"], ["https://tec.openplanner.team/stops/N507ajb", "https://tec.openplanner.team/stops/N507apb"], ["https://tec.openplanner.team/stops/H5rx136a", "https://tec.openplanner.team/stops/H5rx145b"], ["https://tec.openplanner.team/stops/Cgrflac1", "https://tec.openplanner.team/stops/NC14aia"], ["https://tec.openplanner.team/stops/Lbrplai1", "https://tec.openplanner.team/stops/Lbrplai2"], ["https://tec.openplanner.team/stops/H1qu105a", "https://tec.openplanner.team/stops/H1qu120a"], ["https://tec.openplanner.team/stops/H4bw101b", "https://tec.openplanner.team/stops/H4fg116b"], ["https://tec.openplanner.team/stops/H1ms283a", "https://tec.openplanner.team/stops/H1ms314a"], ["https://tec.openplanner.team/stops/H1gh365a", "https://tec.openplanner.team/stops/H1ms297a"], ["https://tec.openplanner.team/stops/Ccuhaie2", "https://tec.openplanner.team/stops/Ccuwil1"], ["https://tec.openplanner.team/stops/X750ahb", "https://tec.openplanner.team/stops/X750alb"], ["https://tec.openplanner.team/stops/NH01apa", "https://tec.openplanner.team/stops/NH01aqb"], ["https://tec.openplanner.team/stops/N551aia", "https://tec.openplanner.team/stops/N551aiy"], ["https://tec.openplanner.team/stops/Ccugail1", "https://tec.openplanner.team/stops/Ccupres2"], ["https://tec.openplanner.team/stops/Bsomtce1", "https://tec.openplanner.team/stops/Bsomthi1"], ["https://tec.openplanner.team/stops/X604afb", "https://tec.openplanner.team/stops/X604amb"], ["https://tec.openplanner.team/stops/LHGvill1", "https://tec.openplanner.team/stops/LHGvill2"], ["https://tec.openplanner.team/stops/LWDsott2", "https://tec.openplanner.team/stops/LWDsott4"], ["https://tec.openplanner.team/stops/N141aaa", "https://tec.openplanner.team/stops/N426afa"], ["https://tec.openplanner.team/stops/Cchba08", "https://tec.openplanner.team/stops/Cchba09"], ["https://tec.openplanner.team/stops/Ladfoot1", "https://tec.openplanner.team/stops/Ladfoot2"], ["https://tec.openplanner.team/stops/Llgmaus1", "https://tec.openplanner.team/stops/Lsntvbi1"], ["https://tec.openplanner.team/stops/H4ta124a", "https://tec.openplanner.team/stops/H4ta135a"], ["https://tec.openplanner.team/stops/Causart1", "https://tec.openplanner.team/stops/N543ang"], ["https://tec.openplanner.team/stops/X651afb", "https://tec.openplanner.team/stops/X651aga"], ["https://tec.openplanner.team/stops/Bvirmbr1", "https://tec.openplanner.team/stops/Bvirmbr2"], ["https://tec.openplanner.team/stops/N536aeb", "https://tec.openplanner.team/stops/N580aga"], ["https://tec.openplanner.team/stops/LLUmont2", "https://tec.openplanner.team/stops/LLUtill4"], ["https://tec.openplanner.team/stops/X652afa", "https://tec.openplanner.team/stops/X652agb"], ["https://tec.openplanner.team/stops/N221abb", "https://tec.openplanner.team/stops/X221aac"], ["https://tec.openplanner.team/stops/Lsecris2", "https://tec.openplanner.team/stops/Lsefive1"], ["https://tec.openplanner.team/stops/LLycent*", "https://tec.openplanner.team/stops/LOVeg--1"], ["https://tec.openplanner.team/stops/X636aub", "https://tec.openplanner.team/stops/X636avb"], ["https://tec.openplanner.team/stops/Lvehomb2", "https://tec.openplanner.team/stops/Lvesomm2"], ["https://tec.openplanner.team/stops/LHemoul1", "https://tec.openplanner.team/stops/LHemoul2"], ["https://tec.openplanner.team/stops/Cfaecmo2", "https://tec.openplanner.team/stops/Cpibois2"], ["https://tec.openplanner.team/stops/Ccychap2", "https://tec.openplanner.team/stops/Csregli2"], ["https://tec.openplanner.team/stops/Cbfplch2", "https://tec.openplanner.team/stops/Cbfstry2"], ["https://tec.openplanner.team/stops/H1ms302a", "https://tec.openplanner.team/stops/H1ms302b"], ["https://tec.openplanner.team/stops/X949aka", "https://tec.openplanner.team/stops/X949akb"], ["https://tec.openplanner.team/stops/X781acb", "https://tec.openplanner.team/stops/X781aea"], ["https://tec.openplanner.team/stops/H2mi122b", "https://tec.openplanner.team/stops/H2mi125a"], ["https://tec.openplanner.team/stops/Llgcite2", "https://tec.openplanner.team/stops/Llgmarc1"], ["https://tec.openplanner.team/stops/H4ff117a", "https://tec.openplanner.team/stops/H4mb138b"], ["https://tec.openplanner.team/stops/Lagpn6-1", "https://tec.openplanner.team/stops/Lstauna2"], ["https://tec.openplanner.team/stops/LDapota1", "https://tec.openplanner.team/stops/LGEcons2"], ["https://tec.openplanner.team/stops/H4cr111b", "https://tec.openplanner.team/stops/H4ff120a"], ["https://tec.openplanner.team/stops/Cchmont2", "https://tec.openplanner.team/stops/Cchorle1"], ["https://tec.openplanner.team/stops/Llgongr3", "https://tec.openplanner.team/stops/Llgsime1"], ["https://tec.openplanner.team/stops/Blpghou1", "https://tec.openplanner.team/stops/Blpghou2"], ["https://tec.openplanner.team/stops/N152aad", "https://tec.openplanner.team/stops/N152ade"], ["https://tec.openplanner.team/stops/N226aaa", "https://tec.openplanner.team/stops/N226abb"], ["https://tec.openplanner.team/stops/LHEclef1", "https://tec.openplanner.team/stops/LHEjose1"], ["https://tec.openplanner.team/stops/LScread1", "https://tec.openplanner.team/stops/LVTtrou2"], ["https://tec.openplanner.team/stops/H1au101b", "https://tec.openplanner.team/stops/H1bx104a"], ["https://tec.openplanner.team/stops/H4bu108b", "https://tec.openplanner.team/stops/H4mv187a"], ["https://tec.openplanner.team/stops/H4ab100a", "https://tec.openplanner.team/stops/H4ab102a"], ["https://tec.openplanner.team/stops/LAxbott1", "https://tec.openplanner.team/stops/Lmirca-2"], ["https://tec.openplanner.team/stops/LLvferm2", "https://tec.openplanner.team/stops/NL78adb"], ["https://tec.openplanner.team/stops/Lhurigu2", "https://tec.openplanner.team/stops/Lmnhorl3"], ["https://tec.openplanner.team/stops/N207afa", "https://tec.openplanner.team/stops/N207afb"], ["https://tec.openplanner.team/stops/Cmlgche1", "https://tec.openplanner.team/stops/Cmlvxmo2"], ["https://tec.openplanner.team/stops/X609aka", "https://tec.openplanner.team/stops/X609ala"], ["https://tec.openplanner.team/stops/H1vb147b", "https://tec.openplanner.team/stops/H1vb148b"], ["https://tec.openplanner.team/stops/N232aua", "https://tec.openplanner.team/stops/N232bgb"], ["https://tec.openplanner.team/stops/Bjodfab2", "https://tec.openplanner.team/stops/Bsjgmil1"], ["https://tec.openplanner.team/stops/Bjodpvi2", "https://tec.openplanner.team/stops/Bsrgegl1"], ["https://tec.openplanner.team/stops/X637aoa", "https://tec.openplanner.team/stops/X650ana"], ["https://tec.openplanner.team/stops/LSLabba2", "https://tec.openplanner.team/stops/LSLstra2"], ["https://tec.openplanner.team/stops/LsCback2", "https://tec.openplanner.team/stops/LsCkirc2"], ["https://tec.openplanner.team/stops/H4gu112a", "https://tec.openplanner.team/stops/H4ta134a"], ["https://tec.openplanner.team/stops/LrEkirc2", "https://tec.openplanner.team/stops/LrEkreu1"], ["https://tec.openplanner.team/stops/LXoeg--4", "https://tec.openplanner.team/stops/LXomc--4"], ["https://tec.openplanner.team/stops/H2ep145a", "https://tec.openplanner.team/stops/H3bi106b"], ["https://tec.openplanner.team/stops/N118avb", "https://tec.openplanner.team/stops/N118avd"], ["https://tec.openplanner.team/stops/Lrebriq1", "https://tec.openplanner.team/stops/Lrebriq2"], ["https://tec.openplanner.team/stops/X908aba", "https://tec.openplanner.team/stops/X908abb"], ["https://tec.openplanner.team/stops/Brebchb2", "https://tec.openplanner.team/stops/Brebrha1"], ["https://tec.openplanner.team/stops/X952aaa", "https://tec.openplanner.team/stops/X952aja"], ["https://tec.openplanner.team/stops/Cvpbifu2", "https://tec.openplanner.team/stops/Cvpsthu2"], ["https://tec.openplanner.team/stops/H1wa146a", "https://tec.openplanner.team/stops/H1wa152b"], ["https://tec.openplanner.team/stops/Bplnbal2", "https://tec.openplanner.team/stops/Bplncsd2"], ["https://tec.openplanner.team/stops/Cmgbrou1", "https://tec.openplanner.team/stops/Cmgcabi2"], ["https://tec.openplanner.team/stops/Bboupde2", "https://tec.openplanner.team/stops/Bsmgpon1"], ["https://tec.openplanner.team/stops/LBNeu712", "https://tec.openplanner.team/stops/LBNeup22"], ["https://tec.openplanner.team/stops/Lrcauto2", "https://tec.openplanner.team/stops/Lrcpaqu1"], ["https://tec.openplanner.team/stops/N559aaa", "https://tec.openplanner.team/stops/N559aab"], ["https://tec.openplanner.team/stops/H1le121a", "https://tec.openplanner.team/stops/H1le121b"], ["https://tec.openplanner.team/stops/N538aga", "https://tec.openplanner.team/stops/N538aua"], ["https://tec.openplanner.team/stops/Bmartil2", "https://tec.openplanner.team/stops/Csdbosq1"], ["https://tec.openplanner.team/stops/H1cr100a", "https://tec.openplanner.team/stops/H1ry137b"], ["https://tec.openplanner.team/stops/X999aoa", "https://tec.openplanner.team/stops/X999aob"], ["https://tec.openplanner.team/stops/LHgeg--1", "https://tec.openplanner.team/stops/LHgeg--2"], ["https://tec.openplanner.team/stops/N501etz", "https://tec.openplanner.team/stops/N501kma"], ["https://tec.openplanner.team/stops/LNCchev2", "https://tec.openplanner.team/stops/LNCchev4"], ["https://tec.openplanner.team/stops/Boveker2", "https://tec.openplanner.team/stops/Bovesol2"], ["https://tec.openplanner.team/stops/Cfodepo1", "https://tec.openplanner.team/stops/Cfodepo2"], ["https://tec.openplanner.team/stops/H1ca107b", "https://tec.openplanner.team/stops/H1ne144a"], ["https://tec.openplanner.team/stops/LREhaut1", "https://tec.openplanner.team/stops/LREhaut2"], ["https://tec.openplanner.team/stops/X369abb", "https://tec.openplanner.team/stops/X369acb"], ["https://tec.openplanner.team/stops/H1et100b", "https://tec.openplanner.team/stops/H1et101b"], ["https://tec.openplanner.team/stops/X904aja", "https://tec.openplanner.team/stops/X904ajb"], ["https://tec.openplanner.team/stops/LrEfeck1", "https://tec.openplanner.team/stops/LrEfeck2"], ["https://tec.openplanner.team/stops/LCxcouv1", "https://tec.openplanner.team/stops/LJueg--1"], ["https://tec.openplanner.team/stops/N533aeb", "https://tec.openplanner.team/stops/N551afa"], ["https://tec.openplanner.team/stops/X719aea", "https://tec.openplanner.team/stops/X719afa"], ["https://tec.openplanner.team/stops/Cbmvalt2", "https://tec.openplanner.team/stops/H1tt104a"], ["https://tec.openplanner.team/stops/N235aea", "https://tec.openplanner.team/stops/N241aea"], ["https://tec.openplanner.team/stops/X813aba", "https://tec.openplanner.team/stops/X857aba"], ["https://tec.openplanner.team/stops/LaHzoll*", "https://tec.openplanner.team/stops/LhBdorf1"], ["https://tec.openplanner.team/stops/LBscime2", "https://tec.openplanner.team/stops/LBseg--2"], ["https://tec.openplanner.team/stops/X807aca", "https://tec.openplanner.team/stops/X808aha"], ["https://tec.openplanner.team/stops/N503abb", "https://tec.openplanner.team/stops/N503ada"], ["https://tec.openplanner.team/stops/Cflchap1", "https://tec.openplanner.team/stops/Cflchap4"], ["https://tec.openplanner.team/stops/Ccinali2", "https://tec.openplanner.team/stops/Cmllecl4"], ["https://tec.openplanner.team/stops/X614bcb", "https://tec.openplanner.team/stops/X614bda"], ["https://tec.openplanner.team/stops/Bptbmco1", "https://tec.openplanner.team/stops/Bptbmco2"], ["https://tec.openplanner.team/stops/X896aeb", "https://tec.openplanner.team/stops/X896aec"], ["https://tec.openplanner.team/stops/X601cka", "https://tec.openplanner.team/stops/X601cua"], ["https://tec.openplanner.team/stops/Bjaugaz1", "https://tec.openplanner.team/stops/Bjaupro2"], ["https://tec.openplanner.team/stops/Cbugara1", "https://tec.openplanner.team/stops/N103aga"], ["https://tec.openplanner.team/stops/LSDgris1", "https://tec.openplanner.team/stops/LSDvill1"], ["https://tec.openplanner.team/stops/LCOcrom2", "https://tec.openplanner.team/stops/Lpeflec1"], ["https://tec.openplanner.team/stops/Lglvand1", "https://tec.openplanner.team/stops/Lglvand2"], ["https://tec.openplanner.team/stops/X947aaa", "https://tec.openplanner.team/stops/X948agb"], ["https://tec.openplanner.team/stops/H4lp122a", "https://tec.openplanner.team/stops/H4lp122b"], ["https://tec.openplanner.team/stops/N535amc", "https://tec.openplanner.team/stops/N535ana"], ["https://tec.openplanner.team/stops/H4lh161b", "https://tec.openplanner.team/stops/H4oe148b"], ["https://tec.openplanner.team/stops/N501gcb", "https://tec.openplanner.team/stops/N501lnb"], ["https://tec.openplanner.team/stops/Lsnagne1", "https://tec.openplanner.team/stops/Lsnmala1"], ["https://tec.openplanner.team/stops/Cmg4bra1", "https://tec.openplanner.team/stops/Cmgcabi1"], ["https://tec.openplanner.team/stops/X801cma", "https://tec.openplanner.team/stops/X801cmb"], ["https://tec.openplanner.team/stops/H4ka191b", "https://tec.openplanner.team/stops/H4ka192b"], ["https://tec.openplanner.team/stops/N139abb", "https://tec.openplanner.team/stops/N139aca"], ["https://tec.openplanner.team/stops/N230afa", "https://tec.openplanner.team/stops/N233aba"], ["https://tec.openplanner.team/stops/LDOchev1", "https://tec.openplanner.team/stops/LHVeg--2"], ["https://tec.openplanner.team/stops/H5st161a", "https://tec.openplanner.team/stops/H5st163a"], ["https://tec.openplanner.team/stops/Lsebico1", "https://tec.openplanner.team/stops/Lsecast2"], ["https://tec.openplanner.team/stops/Bottath1", "https://tec.openplanner.team/stops/Bottgar1"], ["https://tec.openplanner.team/stops/Bmarcha1", "https://tec.openplanner.team/stops/Bmarvil1"], ["https://tec.openplanner.team/stops/N519amb", "https://tec.openplanner.team/stops/N521aob"], ["https://tec.openplanner.team/stops/Bperpla1", "https://tec.openplanner.team/stops/Bperrcr2"], ["https://tec.openplanner.team/stops/H1hy125b", "https://tec.openplanner.team/stops/H1hy130a"], ["https://tec.openplanner.team/stops/H1et101a", "https://tec.openplanner.team/stops/H1ju121b"], ["https://tec.openplanner.team/stops/N501gza", "https://tec.openplanner.team/stops/N501hia"], ["https://tec.openplanner.team/stops/X994aba", "https://tec.openplanner.team/stops/X994adb"], ["https://tec.openplanner.team/stops/LBBcarr2", "https://tec.openplanner.team/stops/LOccarr1"], ["https://tec.openplanner.team/stops/LHEvign2", "https://tec.openplanner.team/stops/LJOvill1"], ["https://tec.openplanner.team/stops/N347aga", "https://tec.openplanner.team/stops/X892abb"], ["https://tec.openplanner.team/stops/H1hr116b", "https://tec.openplanner.team/stops/H1hv130a"], ["https://tec.openplanner.team/stops/Cnafont2", "https://tec.openplanner.team/stops/Cnalava3"], ["https://tec.openplanner.team/stops/N501dna", "https://tec.openplanner.team/stops/N501dnb"], ["https://tec.openplanner.team/stops/LLTeg--1", "https://tec.openplanner.team/stops/LLTeg--2"], ["https://tec.openplanner.team/stops/H2le146a", "https://tec.openplanner.team/stops/H2re163a"], ["https://tec.openplanner.team/stops/X641ata", "https://tec.openplanner.team/stops/X821aab"], ["https://tec.openplanner.team/stops/N230adb", "https://tec.openplanner.team/stops/N233aaa"], ["https://tec.openplanner.team/stops/LBEcomm1", "https://tec.openplanner.team/stops/LBEnina1"], ["https://tec.openplanner.team/stops/X650acb", "https://tec.openplanner.team/stops/X650adb"], ["https://tec.openplanner.team/stops/X750agb", "https://tec.openplanner.team/stops/X750ala"], ["https://tec.openplanner.team/stops/Cchorle1", "https://tec.openplanner.team/stops/Cchvhau1"], ["https://tec.openplanner.team/stops/H4ty290b", "https://tec.openplanner.team/stops/H4ty302a"], ["https://tec.openplanner.team/stops/N101agc", "https://tec.openplanner.team/stops/N101aoa"], ["https://tec.openplanner.team/stops/X724abb", "https://tec.openplanner.team/stops/X724adb"], ["https://tec.openplanner.team/stops/X653aeb", "https://tec.openplanner.team/stops/X654aia"], ["https://tec.openplanner.team/stops/H4ha167a", "https://tec.openplanner.team/stops/H4ru235b"], ["https://tec.openplanner.team/stops/X731ada", "https://tec.openplanner.team/stops/X731aeb"], ["https://tec.openplanner.team/stops/N211agb", "https://tec.openplanner.team/stops/N211avb"], ["https://tec.openplanner.team/stops/LLRptma1", "https://tec.openplanner.team/stops/LLRptma2"], ["https://tec.openplanner.team/stops/X768ama", "https://tec.openplanner.team/stops/X768amb"], ["https://tec.openplanner.team/stops/Bhmmlad2", "https://tec.openplanner.team/stops/Bnetcor1"], ["https://tec.openplanner.team/stops/LCObouh2", "https://tec.openplanner.team/stops/Lpebier1"], ["https://tec.openplanner.team/stops/H2ll176b", "https://tec.openplanner.team/stops/H2ll176c"], ["https://tec.openplanner.team/stops/Cgycorv1", "https://tec.openplanner.team/stops/Cgycorv2"], ["https://tec.openplanner.team/stops/NC23aeb", "https://tec.openplanner.team/stops/NC23afa"], ["https://tec.openplanner.team/stops/LScd45-1", "https://tec.openplanner.team/stops/LSevitu3"], ["https://tec.openplanner.team/stops/H1eu102b", "https://tec.openplanner.team/stops/H1eu104b"], ["https://tec.openplanner.team/stops/X898ahb", "https://tec.openplanner.team/stops/X898anb"], ["https://tec.openplanner.team/stops/H1hq126b", "https://tec.openplanner.team/stops/H1hq128a"], ["https://tec.openplanner.team/stops/Bbstpon2", "https://tec.openplanner.team/stops/Csdetan1"], ["https://tec.openplanner.team/stops/N368acb", "https://tec.openplanner.team/stops/N368aeb"], ["https://tec.openplanner.team/stops/H1hm174a", "https://tec.openplanner.team/stops/H1vg359b"], ["https://tec.openplanner.team/stops/Bmlnpab2", "https://tec.openplanner.team/stops/Bptbbie2"], ["https://tec.openplanner.team/stops/Lghberl1", "https://tec.openplanner.team/stops/Lmochan2"], ["https://tec.openplanner.team/stops/Bblacim2", "https://tec.openplanner.team/stops/Bblagar1"], ["https://tec.openplanner.team/stops/Lrogene*", "https://tec.openplanner.team/stops/Lromerl1"], ["https://tec.openplanner.team/stops/LAWchpl1", "https://tec.openplanner.team/stops/LHGleje2"], ["https://tec.openplanner.team/stops/LBY4che1", "https://tec.openplanner.team/stops/Lgdrena2"], ["https://tec.openplanner.team/stops/LHEcoll2", "https://tec.openplanner.team/stops/LHEhv--1"], ["https://tec.openplanner.team/stops/X954aba", "https://tec.openplanner.team/stops/X954aca"], ["https://tec.openplanner.team/stops/N357aaa", "https://tec.openplanner.team/stops/N357aba"], ["https://tec.openplanner.team/stops/LHUgole2", "https://tec.openplanner.team/stops/LHUhaut1"], ["https://tec.openplanner.team/stops/LBVplan1", "https://tec.openplanner.team/stops/LLscent1"], ["https://tec.openplanner.team/stops/LChvill*", "https://tec.openplanner.team/stops/LSWscie2"], ["https://tec.openplanner.team/stops/Cfmchau2", "https://tec.openplanner.team/stops/Cfomays1"], ["https://tec.openplanner.team/stops/X994aka", "https://tec.openplanner.team/stops/X995abb"], ["https://tec.openplanner.team/stops/X750apb", "https://tec.openplanner.team/stops/X750bda"], ["https://tec.openplanner.team/stops/N538agb", "https://tec.openplanner.team/stops/N538ajc"], ["https://tec.openplanner.team/stops/X664aab", "https://tec.openplanner.team/stops/X664abb"], ["https://tec.openplanner.team/stops/Lhehoux1", "https://tec.openplanner.team/stops/Lheterm*"], ["https://tec.openplanner.team/stops/LGEpt--1", "https://tec.openplanner.team/stops/LLYcham1"], ["https://tec.openplanner.team/stops/N530aba", "https://tec.openplanner.team/stops/N530aea"], ["https://tec.openplanner.team/stops/LhGfrie1", "https://tec.openplanner.team/stops/LhGkirc6"], ["https://tec.openplanner.team/stops/H1ch106a", "https://tec.openplanner.team/stops/H1ch106b"], ["https://tec.openplanner.team/stops/X979ajb", "https://tec.openplanner.team/stops/X979aka"], ["https://tec.openplanner.team/stops/H4ta121b", "https://tec.openplanner.team/stops/H4ta134a"], ["https://tec.openplanner.team/stops/N501aab", "https://tec.openplanner.team/stops/N501hba"], ["https://tec.openplanner.team/stops/H1po133b", "https://tec.openplanner.team/stops/H1po138b"], ["https://tec.openplanner.team/stops/X354aeb", "https://tec.openplanner.team/stops/X354aga"], ["https://tec.openplanner.team/stops/H4pp121a", "https://tec.openplanner.team/stops/H4pp122a"], ["https://tec.openplanner.team/stops/Lvefran2", "https://tec.openplanner.team/stops/Lve-isi1"], ["https://tec.openplanner.team/stops/Ltiegli2", "https://tec.openplanner.team/stops/Ltihala2"], ["https://tec.openplanner.team/stops/LVPduvi1", "https://tec.openplanner.team/stops/LVPduvi2"], ["https://tec.openplanner.team/stops/Ccupetp2", "https://tec.openplanner.team/stops/Ccupomp2"], ["https://tec.openplanner.team/stops/Bitrbvo2", "https://tec.openplanner.team/stops/Bosqsam2"], ["https://tec.openplanner.team/stops/LCHeg--1", "https://tec.openplanner.team/stops/Lprsher2"], ["https://tec.openplanner.team/stops/H4ta119b", "https://tec.openplanner.team/stops/H4ta124b"], ["https://tec.openplanner.team/stops/H4wi167b", "https://tec.openplanner.team/stops/H5pe134a"], ["https://tec.openplanner.team/stops/Ccupays1", "https://tec.openplanner.team/stops/Ccuseba2"], ["https://tec.openplanner.team/stops/H1mh113b", "https://tec.openplanner.team/stops/H1mh114a"], ["https://tec.openplanner.team/stops/X801bbb", "https://tec.openplanner.team/stops/X801cob"], ["https://tec.openplanner.team/stops/LAx17--2", "https://tec.openplanner.team/stops/LFsguil2"], ["https://tec.openplanner.team/stops/Bhevjal2", "https://tec.openplanner.team/stops/Bhevwzw2"], ["https://tec.openplanner.team/stops/X723afb", "https://tec.openplanner.team/stops/X723alb"], ["https://tec.openplanner.team/stops/LCseg--2", "https://tec.openplanner.team/stops/LCsgend1"], ["https://tec.openplanner.team/stops/Lsedese1", "https://tec.openplanner.team/stops/Lsemyrt2"], ["https://tec.openplanner.team/stops/LWEcool2", "https://tec.openplanner.team/stops/LWEgend1"], ["https://tec.openplanner.team/stops/Buccdho1", "https://tec.openplanner.team/stops/Buccdst2"], ["https://tec.openplanner.team/stops/X261ada", "https://tec.openplanner.team/stops/X261adb"], ["https://tec.openplanner.team/stops/Cobhaut2", "https://tec.openplanner.team/stops/Cobmara1"], ["https://tec.openplanner.team/stops/Lhrmare3", "https://tec.openplanner.team/stops/Lhrmare4"], ["https://tec.openplanner.team/stops/N347afb", "https://tec.openplanner.team/stops/X370acb"], ["https://tec.openplanner.team/stops/Cchsud03", "https://tec.openplanner.team/stops/Cchsud11"], ["https://tec.openplanner.team/stops/Blhuone1", "https://tec.openplanner.team/stops/Blhuone2"], ["https://tec.openplanner.team/stops/N534ada", "https://tec.openplanner.team/stops/N534adb"], ["https://tec.openplanner.team/stops/Lhrmare1", "https://tec.openplanner.team/stops/Lhrmare8"], ["https://tec.openplanner.team/stops/Cgpchen1", "https://tec.openplanner.team/stops/Cgplhoi2"], ["https://tec.openplanner.team/stops/Cmerued2", "https://tec.openplanner.team/stops/Cmestas1"], ["https://tec.openplanner.team/stops/H5bl122a", "https://tec.openplanner.team/stops/H5bl124a"], ["https://tec.openplanner.team/stops/N337agb", "https://tec.openplanner.team/stops/N337aib"], ["https://tec.openplanner.team/stops/LOchalo1", "https://tec.openplanner.team/stops/LOchalo2"], ["https://tec.openplanner.team/stops/X623abb", "https://tec.openplanner.team/stops/X623aca"], ["https://tec.openplanner.team/stops/X822ala", "https://tec.openplanner.team/stops/X822alb"], ["https://tec.openplanner.team/stops/Bettars1", "https://tec.openplanner.team/stops/Bettbue2"], ["https://tec.openplanner.team/stops/Lserena1", "https://tec.openplanner.team/stops/Lserena2"], ["https://tec.openplanner.team/stops/Cnapair1", "https://tec.openplanner.team/stops/Cnating1"], ["https://tec.openplanner.team/stops/N351akb", "https://tec.openplanner.team/stops/N351akc"], ["https://tec.openplanner.team/stops/H1wa141a", "https://tec.openplanner.team/stops/H1wa147a"], ["https://tec.openplanner.team/stops/Cjupui01", "https://tec.openplanner.team/stops/CMpuis2"], ["https://tec.openplanner.team/stops/LAIrout1", "https://tec.openplanner.team/stops/LVMborl2"], ["https://tec.openplanner.team/stops/LHgdari1", "https://tec.openplanner.team/stops/LHgroso1"], ["https://tec.openplanner.team/stops/H1sb146b", "https://tec.openplanner.team/stops/H1sb147a"], ["https://tec.openplanner.team/stops/N534awc", "https://tec.openplanner.team/stops/N534axa"], ["https://tec.openplanner.team/stops/LCTfair2", "https://tec.openplanner.team/stops/LCTpt--2"], ["https://tec.openplanner.team/stops/H1fr133a", "https://tec.openplanner.team/stops/H1fr133b"], ["https://tec.openplanner.team/stops/LeYloos2", "https://tec.openplanner.team/stops/LeYteeh2"], ["https://tec.openplanner.team/stops/H2ha134b", "https://tec.openplanner.team/stops/H2ha135b"], ["https://tec.openplanner.team/stops/H1ro130b", "https://tec.openplanner.team/stops/H1ro138b"], ["https://tec.openplanner.team/stops/LeUmoor1", "https://tec.openplanner.team/stops/LeUolen1"], ["https://tec.openplanner.team/stops/Bcbqtub2", "https://tec.openplanner.team/stops/Bosqpqu1"], ["https://tec.openplanner.team/stops/LHodomm1", "https://tec.openplanner.team/stops/LHolone1"], ["https://tec.openplanner.team/stops/Louazot1", "https://tec.openplanner.team/stops/Lscchat2"], ["https://tec.openplanner.team/stops/H2na133a", "https://tec.openplanner.team/stops/H2na134b"], ["https://tec.openplanner.team/stops/N508aca", "https://tec.openplanner.team/stops/N516aqb"], ["https://tec.openplanner.team/stops/X681aca", "https://tec.openplanner.team/stops/X695ala"], ["https://tec.openplanner.team/stops/H1as101a", "https://tec.openplanner.team/stops/H1as103d"], ["https://tec.openplanner.team/stops/H1te184a", "https://tec.openplanner.team/stops/H1te185a"], ["https://tec.openplanner.team/stops/Bneesj31", "https://tec.openplanner.team/stops/Bneesjo1"], ["https://tec.openplanner.team/stops/Lhufays1", "https://tec.openplanner.team/stops/Lhujonc1"], ["https://tec.openplanner.team/stops/LrAplat2", "https://tec.openplanner.team/stops/LrAputz1"], ["https://tec.openplanner.team/stops/N525ana", "https://tec.openplanner.team/stops/N525aua"], ["https://tec.openplanner.team/stops/Berneco1", "https://tec.openplanner.team/stops/Bgemkal1"], ["https://tec.openplanner.team/stops/H3br122a", "https://tec.openplanner.team/stops/H3so187b"], ["https://tec.openplanner.team/stops/X669acb", "https://tec.openplanner.team/stops/X669afa"], ["https://tec.openplanner.team/stops/LREgare1", "https://tec.openplanner.team/stops/LREsaul1"], ["https://tec.openplanner.team/stops/N155aha", "https://tec.openplanner.team/stops/N160aaa"], ["https://tec.openplanner.team/stops/X659awa", "https://tec.openplanner.team/stops/X659awb"], ["https://tec.openplanner.team/stops/H1sa114b", "https://tec.openplanner.team/stops/H1sa115a"], ["https://tec.openplanner.team/stops/H1pw120a", "https://tec.openplanner.team/stops/H1pw120b"], ["https://tec.openplanner.team/stops/LSceg--2", "https://tec.openplanner.team/stops/LTNegli2"], ["https://tec.openplanner.team/stops/X663ahd", "https://tec.openplanner.team/stops/X663alb"], ["https://tec.openplanner.team/stops/Bneehou2", "https://tec.openplanner.team/stops/Bneervc1"], ["https://tec.openplanner.team/stops/X597ana", "https://tec.openplanner.team/stops/X597apb"], ["https://tec.openplanner.team/stops/N501fga", "https://tec.openplanner.team/stops/N501fjd"], ["https://tec.openplanner.team/stops/LmNsied1", "https://tec.openplanner.team/stops/LmNsied2"], ["https://tec.openplanner.team/stops/NL76ara", "https://tec.openplanner.team/stops/NL76arb"], ["https://tec.openplanner.team/stops/H2re165b", "https://tec.openplanner.team/stops/H2re167a"], ["https://tec.openplanner.team/stops/LeUath%C3%A41", "https://tec.openplanner.team/stops/LeUlasc3"], ["https://tec.openplanner.team/stops/Buccfja2", "https://tec.openplanner.team/stops/Buccron2"], ["https://tec.openplanner.team/stops/Cmlbeau4", "https://tec.openplanner.team/stops/Cmlcons2"], ["https://tec.openplanner.team/stops/LSMec--2", "https://tec.openplanner.team/stops/LSMeg--2"], ["https://tec.openplanner.team/stops/X923abb", "https://tec.openplanner.team/stops/X923akb"], ["https://tec.openplanner.team/stops/X658agc", "https://tec.openplanner.team/stops/X659ata"], ["https://tec.openplanner.team/stops/LHNgare1", "https://tec.openplanner.team/stops/LHNwaut2"], ["https://tec.openplanner.team/stops/Cfrempe1", "https://tec.openplanner.team/stops/Cfrfaub3"], ["https://tec.openplanner.team/stops/LFdchau1", "https://tec.openplanner.team/stops/LFdchau4"], ["https://tec.openplanner.team/stops/Brxmcha1", "https://tec.openplanner.team/stops/Brxmhai2"], ["https://tec.openplanner.team/stops/Livjeu-2", "https://tec.openplanner.team/stops/LRachen2"], ["https://tec.openplanner.team/stops/H4bo111b", "https://tec.openplanner.team/stops/H4bo119b"], ["https://tec.openplanner.team/stops/Lagorch2", "https://tec.openplanner.team/stops/Lagpn6-1"], ["https://tec.openplanner.team/stops/LVthest1", "https://tec.openplanner.team/stops/LVttarg1"], ["https://tec.openplanner.team/stops/H1eq116a", "https://tec.openplanner.team/stops/H1eq116b"], ["https://tec.openplanner.team/stops/H5bl115c", "https://tec.openplanner.team/stops/H5bl115d"], ["https://tec.openplanner.team/stops/Cflcent1", "https://tec.openplanner.team/stops/Cflcent2"], ["https://tec.openplanner.team/stops/Bwateco1", "https://tec.openplanner.team/stops/Bwatwsc1"], ["https://tec.openplanner.team/stops/Lchsa631", "https://tec.openplanner.team/stops/Lchsa632"], ["https://tec.openplanner.team/stops/Bnivaba1", "https://tec.openplanner.team/stops/Bnivrsa1"], ["https://tec.openplanner.team/stops/H1ci105b", "https://tec.openplanner.team/stops/H1ci106a"], ["https://tec.openplanner.team/stops/LELchap2", "https://tec.openplanner.team/stops/LHChaut6"], ["https://tec.openplanner.team/stops/N542apa", "https://tec.openplanner.team/stops/N542apb"], ["https://tec.openplanner.team/stops/Cmaduna2", "https://tec.openplanner.team/stops/Cmamonu1"], ["https://tec.openplanner.team/stops/X809aeb", "https://tec.openplanner.team/stops/X809afa"], ["https://tec.openplanner.team/stops/Lstbota2", "https://tec.openplanner.team/stops/Lstbota3"], ["https://tec.openplanner.team/stops/NC14aaa", "https://tec.openplanner.team/stops/NC24aga"], ["https://tec.openplanner.team/stops/H1ho134a", "https://tec.openplanner.team/stops/H1wl124a"], ["https://tec.openplanner.team/stops/Brsgcfl1", "https://tec.openplanner.team/stops/Buccpes1"], ["https://tec.openplanner.team/stops/N569ajb", "https://tec.openplanner.team/stops/N571afb"], ["https://tec.openplanner.team/stops/Bbsgrve2", "https://tec.openplanner.team/stops/Bnetvan1"], ["https://tec.openplanner.team/stops/H5at109b", "https://tec.openplanner.team/stops/H5at132a"], ["https://tec.openplanner.team/stops/N202aaa", "https://tec.openplanner.team/stops/N203ada"], ["https://tec.openplanner.team/stops/H4br107b", "https://tec.openplanner.team/stops/H4br108a"], ["https://tec.openplanner.team/stops/N365aab", "https://tec.openplanner.team/stops/N365abb"], ["https://tec.openplanner.team/stops/H4mo206b", "https://tec.openplanner.team/stops/H4mo207a"], ["https://tec.openplanner.team/stops/Ccicouc1", "https://tec.openplanner.team/stops/Ccipech2"], ["https://tec.openplanner.team/stops/N213aab", "https://tec.openplanner.team/stops/N213aba"], ["https://tec.openplanner.team/stops/Lghpier2", "https://tec.openplanner.team/stops/Lghraul1"], ["https://tec.openplanner.team/stops/H1nm139a", "https://tec.openplanner.team/stops/H1nm140a"], ["https://tec.openplanner.team/stops/N308aia", "https://tec.openplanner.team/stops/N308aic"], ["https://tec.openplanner.team/stops/LWOruis1", "https://tec.openplanner.team/stops/LWOruis2"], ["https://tec.openplanner.team/stops/LkAmess1", "https://tec.openplanner.team/stops/LmHperl1"], ["https://tec.openplanner.team/stops/LLrisa-*", "https://tec.openplanner.team/stops/LSMgare2"], ["https://tec.openplanner.team/stops/Boffegl2", "https://tec.openplanner.team/stops/N515asb"], ["https://tec.openplanner.team/stops/Bllnpaf4", "https://tec.openplanner.team/stops/Bllnrro1"], ["https://tec.openplanner.team/stops/N501bkb", "https://tec.openplanner.team/stops/N501bmb"], ["https://tec.openplanner.team/stops/H4hx114b", "https://tec.openplanner.team/stops/H4hx117a"], ["https://tec.openplanner.team/stops/LWibare1", "https://tec.openplanner.team/stops/LWipaif4"], ["https://tec.openplanner.team/stops/Bniv4co1", "https://tec.openplanner.team/stops/Bnivpar1"], ["https://tec.openplanner.team/stops/X921aca", "https://tec.openplanner.team/stops/X923aoa"], ["https://tec.openplanner.team/stops/N309aca", "https://tec.openplanner.team/stops/N350aea"], ["https://tec.openplanner.team/stops/LMEcour1", "https://tec.openplanner.team/stops/LMEpech1"], ["https://tec.openplanner.team/stops/LbTathe2", "https://tec.openplanner.team/stops/LbTmuhl1"], ["https://tec.openplanner.team/stops/Bbiecoc2", "https://tec.openplanner.team/stops/Bbiefon1"], ["https://tec.openplanner.team/stops/N311aaa", "https://tec.openplanner.team/stops/N311ada"], ["https://tec.openplanner.team/stops/LAWbrou1", "https://tec.openplanner.team/stops/LBIbois1"], ["https://tec.openplanner.team/stops/N562alc", "https://tec.openplanner.team/stops/N562bwb"], ["https://tec.openplanner.team/stops/Cctrjus1", "https://tec.openplanner.team/stops/NC11aia"], ["https://tec.openplanner.team/stops/LeYgros2", "https://tec.openplanner.team/stops/LhSheid1"], ["https://tec.openplanner.team/stops/LVEmohi1", "https://tec.openplanner.team/stops/LVEtomb2"], ["https://tec.openplanner.team/stops/X715acb", "https://tec.openplanner.team/stops/X715adb"], ["https://tec.openplanner.team/stops/H4an112a", "https://tec.openplanner.team/stops/H4an112b"], ["https://tec.openplanner.team/stops/X901aqa", "https://tec.openplanner.team/stops/X901bla"], ["https://tec.openplanner.team/stops/N576aha", "https://tec.openplanner.team/stops/N576ahb"], ["https://tec.openplanner.team/stops/LMOcorn2", "https://tec.openplanner.team/stops/LMOf21-1"], ["https://tec.openplanner.team/stops/LrDhind1", "https://tec.openplanner.team/stops/LrDrose3"], ["https://tec.openplanner.team/stops/N111abb", "https://tec.openplanner.team/stops/N111aeb"], ["https://tec.openplanner.team/stops/H1ms929a", "https://tec.openplanner.team/stops/H1ms930a"], ["https://tec.openplanner.team/stops/H1tt107a", "https://tec.openplanner.team/stops/H1tt107b"], ["https://tec.openplanner.team/stops/LSemc--2", "https://tec.openplanner.team/stops/LSerout1"], ["https://tec.openplanner.team/stops/X757aba", "https://tec.openplanner.team/stops/X757ada"], ["https://tec.openplanner.team/stops/LMAptne2", "https://tec.openplanner.team/stops/LMArave2"], ["https://tec.openplanner.team/stops/H4ta128b", "https://tec.openplanner.team/stops/H4ta130a"], ["https://tec.openplanner.team/stops/X771aca", "https://tec.openplanner.team/stops/X771ada"], ["https://tec.openplanner.team/stops/Bwatgib1", "https://tec.openplanner.team/stops/Bwatjbo1"], ["https://tec.openplanner.team/stops/H1bb114a", "https://tec.openplanner.team/stops/H1bb117a"], ["https://tec.openplanner.team/stops/H4er121b", "https://tec.openplanner.team/stops/H4wu376a"], ["https://tec.openplanner.team/stops/H5pe131b", "https://tec.openplanner.team/stops/H5pe150b"], ["https://tec.openplanner.team/stops/LsHlenz1", "https://tec.openplanner.team/stops/LsHthom1"], ["https://tec.openplanner.team/stops/N217aca", "https://tec.openplanner.team/stops/N217acb"], ["https://tec.openplanner.team/stops/Crobass1", "https://tec.openplanner.team/stops/Cromart1"], ["https://tec.openplanner.team/stops/LBajean2", "https://tec.openplanner.team/stops/LBapepi3"], ["https://tec.openplanner.team/stops/N501faa", "https://tec.openplanner.team/stops/N501lzz"], ["https://tec.openplanner.team/stops/LHrchez1", "https://tec.openplanner.team/stops/LHreg--1"], ["https://tec.openplanner.team/stops/Lbhmc--2", "https://tec.openplanner.team/stops/Ljuvieu1"], ["https://tec.openplanner.team/stops/Lmobrac1", "https://tec.openplanner.team/stops/Lmopans2"], ["https://tec.openplanner.team/stops/N562asa", "https://tec.openplanner.team/stops/N562asb"], ["https://tec.openplanner.team/stops/LaMschr1", "https://tec.openplanner.team/stops/LaMschr2"], ["https://tec.openplanner.team/stops/LWArege1", "https://tec.openplanner.team/stops/LWArege2"], ["https://tec.openplanner.team/stops/H1qu105b", "https://tec.openplanner.team/stops/H1qu111a"], ["https://tec.openplanner.team/stops/LGOmous2", "https://tec.openplanner.team/stops/LGOvill1"], ["https://tec.openplanner.team/stops/X939adb", "https://tec.openplanner.team/stops/X939afb"], ["https://tec.openplanner.team/stops/N543avh", "https://tec.openplanner.team/stops/N543cla"], ["https://tec.openplanner.team/stops/Ccubric2", "https://tec.openplanner.team/stops/Cmtproc2"], ["https://tec.openplanner.team/stops/LBWbatt2", "https://tec.openplanner.team/stops/LBWeg--1"], ["https://tec.openplanner.team/stops/LhRandl2", "https://tec.openplanner.team/stops/LhRwere2"], ["https://tec.openplanner.team/stops/X811aba", "https://tec.openplanner.team/stops/X811aka"], ["https://tec.openplanner.team/stops/LThgare1", "https://tec.openplanner.team/stops/LThgare2"], ["https://tec.openplanner.team/stops/LwTzent1", "https://tec.openplanner.team/stops/LwTzent2"], ["https://tec.openplanner.team/stops/N529afa", "https://tec.openplanner.team/stops/N529afb"], ["https://tec.openplanner.team/stops/Baeggar2", "https://tec.openplanner.team/stops/Baegm502"], ["https://tec.openplanner.team/stops/LMsviad2", "https://tec.openplanner.team/stops/LPbpeti1"], ["https://tec.openplanner.team/stops/N213aca", "https://tec.openplanner.team/stops/N352ajb"], ["https://tec.openplanner.team/stops/Ctaallo1", "https://tec.openplanner.team/stops/Ctaprai3"], ["https://tec.openplanner.team/stops/NL67aab", "https://tec.openplanner.team/stops/NL67aca"], ["https://tec.openplanner.team/stops/X910afc", "https://tec.openplanner.team/stops/X910afd"], ["https://tec.openplanner.team/stops/H1so131f", "https://tec.openplanner.team/stops/H1so146a"], ["https://tec.openplanner.team/stops/Loubiez3", "https://tec.openplanner.team/stops/Louvira2"], ["https://tec.openplanner.team/stops/Cgocolo1", "https://tec.openplanner.team/stops/Cgocolo2"], ["https://tec.openplanner.team/stops/N232ata", "https://tec.openplanner.team/stops/N232bma"], ["https://tec.openplanner.team/stops/N538anb", "https://tec.openplanner.team/stops/N538aub"], ["https://tec.openplanner.team/stops/LpEbins1", "https://tec.openplanner.team/stops/LtEnach2"], ["https://tec.openplanner.team/stops/X663awa", "https://tec.openplanner.team/stops/X663awb"], ["https://tec.openplanner.team/stops/H1ho124a", "https://tec.openplanner.team/stops/H1ho124b"], ["https://tec.openplanner.team/stops/X901amb", "https://tec.openplanner.team/stops/X901bta"], ["https://tec.openplanner.team/stops/Livpost2", "https://tec.openplanner.team/stops/LRacime1"], ["https://tec.openplanner.team/stops/Lagrask1", "https://tec.openplanner.team/stops/Lagsauh2"], ["https://tec.openplanner.team/stops/Lpecime1", "https://tec.openplanner.team/stops/Lpetenn1"], ["https://tec.openplanner.team/stops/LCIcent1", "https://tec.openplanner.team/stops/LCIcent2"], ["https://tec.openplanner.team/stops/LCvneu-2", "https://tec.openplanner.team/stops/LCvneuv4"], ["https://tec.openplanner.team/stops/X661aha", "https://tec.openplanner.team/stops/X661aza"], ["https://tec.openplanner.team/stops/X764aba", "https://tec.openplanner.team/stops/X764adb"], ["https://tec.openplanner.team/stops/Cgpcime1", "https://tec.openplanner.team/stops/Cgplhoi2"], ["https://tec.openplanner.team/stops/Bjodcsb2", "https://tec.openplanner.team/stops/Bsrgegl2"], ["https://tec.openplanner.team/stops/X624agb", "https://tec.openplanner.team/stops/X624ahb"], ["https://tec.openplanner.team/stops/LaUn1--3", "https://tec.openplanner.team/stops/LsF39--1"], ["https://tec.openplanner.team/stops/LNCgene1", "https://tec.openplanner.team/stops/LNCgene2"], ["https://tec.openplanner.team/stops/LGEbern1", "https://tec.openplanner.team/stops/LGEcons1"], ["https://tec.openplanner.team/stops/N557ada", "https://tec.openplanner.team/stops/N558aja"], ["https://tec.openplanner.team/stops/LAMcloc2", "https://tec.openplanner.team/stops/LAMmc--2"], ["https://tec.openplanner.team/stops/H1cv102a", "https://tec.openplanner.team/stops/H1cv102b"], ["https://tec.openplanner.team/stops/H1fl138a", "https://tec.openplanner.team/stops/H1qu114a"], ["https://tec.openplanner.team/stops/H1pa103a", "https://tec.openplanner.team/stops/H1wa163b"], ["https://tec.openplanner.team/stops/Cblcent1", "https://tec.openplanner.team/stops/Cblcent2"], ["https://tec.openplanner.team/stops/N551apa", "https://tec.openplanner.team/stops/N551arc"], ["https://tec.openplanner.team/stops/Csequew1", "https://tec.openplanner.team/stops/Csequew2"], ["https://tec.openplanner.team/stops/X626ala", "https://tec.openplanner.team/stops/X626anb"], ["https://tec.openplanner.team/stops/H4bd107b", "https://tec.openplanner.team/stops/H4te257b"], ["https://tec.openplanner.team/stops/Ccyfede2", "https://tec.openplanner.team/stops/Crbgare2"], ["https://tec.openplanner.team/stops/Bpiejus2", "https://tec.openplanner.team/stops/Bpielom1"], ["https://tec.openplanner.team/stops/LGegrun2", "https://tec.openplanner.team/stops/LGetroi2"], ["https://tec.openplanner.team/stops/Ccpetan1", "https://tec.openplanner.team/stops/Cptchea1"], ["https://tec.openplanner.team/stops/CMjans1", "https://tec.openplanner.team/stops/CMjans2"], ["https://tec.openplanner.team/stops/H1wa132a", "https://tec.openplanner.team/stops/H1wa149b"], ["https://tec.openplanner.team/stops/Cslbarb1", "https://tec.openplanner.team/stops/Cslbarb2"], ["https://tec.openplanner.team/stops/H4hn115b", "https://tec.openplanner.team/stops/H4pe127b"], ["https://tec.openplanner.team/stops/LwYkreu4", "https://tec.openplanner.team/stops/LwYsarl2"], ["https://tec.openplanner.team/stops/H2hg144b", "https://tec.openplanner.team/stops/H2hg265a"], ["https://tec.openplanner.team/stops/Bptecal1", "https://tec.openplanner.team/stops/H3st119a"], ["https://tec.openplanner.team/stops/Clrmarl1", "https://tec.openplanner.team/stops/Clrmarl4"], ["https://tec.openplanner.team/stops/H1hr116a", "https://tec.openplanner.team/stops/H3st119a"], ["https://tec.openplanner.team/stops/H4co146b", "https://tec.openplanner.team/stops/H4co148a"], ["https://tec.openplanner.team/stops/N243aca", "https://tec.openplanner.team/stops/N243aea"], ["https://tec.openplanner.team/stops/Bbxlple2", "https://tec.openplanner.team/stops/Bbxltrv2"], ["https://tec.openplanner.team/stops/H1fl133b", "https://tec.openplanner.team/stops/H1fl133e"], ["https://tec.openplanner.team/stops/N141ada", "https://tec.openplanner.team/stops/N141aeb"], ["https://tec.openplanner.team/stops/Bnilcim2", "https://tec.openplanner.team/stops/Bnilpco2"], ["https://tec.openplanner.team/stops/X609ada", "https://tec.openplanner.team/stops/X609afa"], ["https://tec.openplanner.team/stops/Cfaamio4", "https://tec.openplanner.team/stops/Cfasamb1"], ["https://tec.openplanner.team/stops/X615aub", "https://tec.openplanner.team/stops/X695aka"], ["https://tec.openplanner.team/stops/X911afb", "https://tec.openplanner.team/stops/X911arb"], ["https://tec.openplanner.team/stops/LrAdrie2", "https://tec.openplanner.team/stops/LrApont1"], ["https://tec.openplanner.team/stops/H1gq153a", "https://tec.openplanner.team/stops/H1hq126b"], ["https://tec.openplanner.team/stops/LFreg--1", "https://tec.openplanner.team/stops/LNEec--1"], ["https://tec.openplanner.team/stops/X805aca", "https://tec.openplanner.team/stops/X805afb"], ["https://tec.openplanner.team/stops/H5st163b", "https://tec.openplanner.team/stops/H5st166a"], ["https://tec.openplanner.team/stops/N509akb", "https://tec.openplanner.team/stops/N509bdb"], ["https://tec.openplanner.team/stops/LXopeti2", "https://tec.openplanner.team/stops/X599afc"], ["https://tec.openplanner.team/stops/LVLbovy2", "https://tec.openplanner.team/stops/LVLm10-2"], ["https://tec.openplanner.team/stops/H1hq124b", "https://tec.openplanner.team/stops/H1sy137c"], ["https://tec.openplanner.team/stops/N533afa", "https://tec.openplanner.team/stops/N533afb"], ["https://tec.openplanner.team/stops/H4ga167a", "https://tec.openplanner.team/stops/H4ga167b"], ["https://tec.openplanner.team/stops/X396aca", "https://tec.openplanner.team/stops/X919amb"], ["https://tec.openplanner.team/stops/LSypesy2", "https://tec.openplanner.team/stops/LWZbeem1"], ["https://tec.openplanner.team/stops/H1br122a", "https://tec.openplanner.team/stops/H1br124b"], ["https://tec.openplanner.team/stops/H5bl119d", "https://tec.openplanner.team/stops/H5qu182b"], ["https://tec.openplanner.team/stops/H4oe150b", "https://tec.openplanner.team/stops/H4oe152a"], ["https://tec.openplanner.team/stops/Lveharm1", "https://tec.openplanner.team/stops/Lvevict1"], ["https://tec.openplanner.team/stops/H4ty268b", "https://tec.openplanner.team/stops/H4ty328a"], ["https://tec.openplanner.team/stops/Bvirbru1", "https://tec.openplanner.team/stops/Bvirbru2"], ["https://tec.openplanner.team/stops/Bgnpegl1", "https://tec.openplanner.team/stops/Bgnpegl2"], ["https://tec.openplanner.team/stops/Brixala1", "https://tec.openplanner.team/stops/Brixdec1"], ["https://tec.openplanner.team/stops/X604aia", "https://tec.openplanner.team/stops/X604aja"], ["https://tec.openplanner.team/stops/LHMbami1", "https://tec.openplanner.team/stops/LHMbami2"], ["https://tec.openplanner.team/stops/N538atc", "https://tec.openplanner.team/stops/N538atd"], ["https://tec.openplanner.team/stops/Cfmchau1", "https://tec.openplanner.team/stops/Cfmchau2"], ["https://tec.openplanner.team/stops/Becepco1", "https://tec.openplanner.team/stops/Becepro1"], ["https://tec.openplanner.team/stops/Bbsggot2", "https://tec.openplanner.team/stops/Bhmmcge2"], ["https://tec.openplanner.team/stops/X812ala", "https://tec.openplanner.team/stops/X812bea"], ["https://tec.openplanner.team/stops/H4hg160b", "https://tec.openplanner.team/stops/H4mv189c"], ["https://tec.openplanner.team/stops/LBEtilf1", "https://tec.openplanner.team/stops/LTIchev1"], ["https://tec.openplanner.team/stops/Lprhodi2", "https://tec.openplanner.team/stops/Lprtill1"], ["https://tec.openplanner.team/stops/X734aab", "https://tec.openplanner.team/stops/X735abc"], ["https://tec.openplanner.team/stops/Bjodsme1", "https://tec.openplanner.team/stops/NR10acb"], ["https://tec.openplanner.team/stops/Bottbou2", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://tec.openplanner.team/stops/LFCkett1", "https://tec.openplanner.team/stops/LFCkett2"], ["https://tec.openplanner.team/stops/LLrhest2", "https://tec.openplanner.team/stops/LLrscie1"], ["https://tec.openplanner.team/stops/Lstchim1", "https://tec.openplanner.team/stops/Lsttech2"], ["https://tec.openplanner.team/stops/LChxhav2", "https://tec.openplanner.team/stops/LJA65h-2"], ["https://tec.openplanner.team/stops/N501ejc", "https://tec.openplanner.team/stops/N501klb"], ["https://tec.openplanner.team/stops/Bhancre2", "https://tec.openplanner.team/stops/NL37aaa"], ["https://tec.openplanner.team/stops/H1cu121b", "https://tec.openplanner.team/stops/H1cu130a"], ["https://tec.openplanner.team/stops/N163aab", "https://tec.openplanner.team/stops/N163aba"], ["https://tec.openplanner.team/stops/Bbaubru1", "https://tec.openplanner.team/stops/Bbaubru2"], ["https://tec.openplanner.team/stops/Cjuhden2", "https://tec.openplanner.team/stops/Cjuhden4"], ["https://tec.openplanner.team/stops/Lmagara2", "https://tec.openplanner.team/stops/Lroboeg2"], ["https://tec.openplanner.team/stops/X740aga", "https://tec.openplanner.team/stops/X740agb"], ["https://tec.openplanner.team/stops/Ljemabo1", "https://tec.openplanner.team/stops/Ltibure1"], ["https://tec.openplanner.team/stops/LFUchpl1", "https://tec.openplanner.team/stops/LFUgare2"], ["https://tec.openplanner.team/stops/N101aaa", "https://tec.openplanner.team/stops/N101aba"], ["https://tec.openplanner.team/stops/LSkb1351", "https://tec.openplanner.team/stops/LSkyern2"], ["https://tec.openplanner.team/stops/Cmacart1", "https://tec.openplanner.team/stops/Cmamarc1"], ["https://tec.openplanner.team/stops/Bcrngat2", "https://tec.openplanner.team/stops/Bcrnvic2"], ["https://tec.openplanner.team/stops/Brixbai1", "https://tec.openplanner.team/stops/Brixrmo1"], ["https://tec.openplanner.team/stops/X786acb", "https://tec.openplanner.team/stops/X786aeb"], ["https://tec.openplanner.team/stops/LeLbutg1", "https://tec.openplanner.team/stops/LeLdorf1"], ["https://tec.openplanner.team/stops/N519apb", "https://tec.openplanner.team/stops/N525afb"], ["https://tec.openplanner.team/stops/Chpfoli5", "https://tec.openplanner.team/stops/Chprobi1"], ["https://tec.openplanner.team/stops/H4tg163a", "https://tec.openplanner.team/stops/H4tg170b"], ["https://tec.openplanner.team/stops/LRIcite1", "https://tec.openplanner.team/stops/LRIcite2"], ["https://tec.openplanner.team/stops/Bhmmcam1", "https://tec.openplanner.team/stops/Btlgbro2"], ["https://tec.openplanner.team/stops/LHcbaro2", "https://tec.openplanner.team/stops/LSZcock2"], ["https://tec.openplanner.team/stops/LnN02--2", "https://tec.openplanner.team/stops/LsVthom2"], ["https://tec.openplanner.team/stops/LHFappe4", "https://tec.openplanner.team/stops/LHFhard2"], ["https://tec.openplanner.team/stops/LHrbast1", "https://tec.openplanner.team/stops/LHrchez1"], ["https://tec.openplanner.team/stops/LNAbras2", "https://tec.openplanner.team/stops/LNAbras5"], ["https://tec.openplanner.team/stops/H4wa155b", "https://tec.openplanner.team/stops/H4wa161b"], ["https://tec.openplanner.team/stops/Cmmschw2", "https://tec.openplanner.team/stops/Cmyboci1"], ["https://tec.openplanner.team/stops/N501axb", "https://tec.openplanner.team/stops/N501mga"], ["https://tec.openplanner.team/stops/Lroboeg2", "https://tec.openplanner.team/stops/Lrosaun2"], ["https://tec.openplanner.team/stops/Bgoesch2", "https://tec.openplanner.team/stops/Bgoesch4"], ["https://tec.openplanner.team/stops/X901apb", "https://tec.openplanner.team/stops/X901aub"], ["https://tec.openplanner.team/stops/Lbocruc1", "https://tec.openplanner.team/stops/Lbomidi1"], ["https://tec.openplanner.team/stops/Cjugohi3", "https://tec.openplanner.team/stops/Cjumarc1"], ["https://tec.openplanner.team/stops/N562aob", "https://tec.openplanner.team/stops/N570abb"], ["https://tec.openplanner.team/stops/LEBmoul2", "https://tec.openplanner.team/stops/LWOwonc2"], ["https://tec.openplanner.team/stops/Bjdscnd2", "https://tec.openplanner.team/stops/Bjodpce2"], ["https://tec.openplanner.team/stops/X922aga", "https://tec.openplanner.team/stops/X922aha"], ["https://tec.openplanner.team/stops/X314aab", "https://tec.openplanner.team/stops/X611aca"], ["https://tec.openplanner.team/stops/Cgxmaco1", "https://tec.openplanner.team/stops/CMpara2"], ["https://tec.openplanner.team/stops/H4ga147a", "https://tec.openplanner.team/stops/H4ga147b"], ["https://tec.openplanner.team/stops/Lanlona1", "https://tec.openplanner.team/stops/Lrctec-1"], ["https://tec.openplanner.team/stops/Bbsgbos3", "https://tec.openplanner.team/stops/Bgzdsta1"], ["https://tec.openplanner.team/stops/Bmrsefr1", "https://tec.openplanner.team/stops/Bmrssmc1"], ["https://tec.openplanner.team/stops/LBjpech2", "https://tec.openplanner.team/stops/LLVeg--1"], ["https://tec.openplanner.team/stops/LFArela4", "https://tec.openplanner.team/stops/LFAsauv2"], ["https://tec.openplanner.team/stops/X788afa", "https://tec.openplanner.team/stops/X788afb"], ["https://tec.openplanner.team/stops/Ctafran2", "https://tec.openplanner.team/stops/N543bkb"], ["https://tec.openplanner.team/stops/Cjuunio1", "https://tec.openplanner.team/stops/Cjuunio2"], ["https://tec.openplanner.team/stops/X840aab", "https://tec.openplanner.team/stops/X840abb"], ["https://tec.openplanner.team/stops/N349aab", "https://tec.openplanner.team/stops/N349aeb"], ["https://tec.openplanner.team/stops/X822aga", "https://tec.openplanner.team/stops/X822arb"], ["https://tec.openplanner.team/stops/N121adb", "https://tec.openplanner.team/stops/N122afb"], ["https://tec.openplanner.team/stops/X714aea", "https://tec.openplanner.team/stops/X715ahb"], ["https://tec.openplanner.team/stops/N501ccb", "https://tec.openplanner.team/stops/N502acb"], ["https://tec.openplanner.team/stops/Bnivlai1", "https://tec.openplanner.team/stops/Bnivmet1"], ["https://tec.openplanner.team/stops/Ctubpos2", "https://tec.openplanner.team/stops/Ctuyser2"], ["https://tec.openplanner.team/stops/LAChann2", "https://tec.openplanner.team/stops/LHhvivi1"], ["https://tec.openplanner.team/stops/H4ty345b", "https://tec.openplanner.team/stops/H4ty405a"], ["https://tec.openplanner.team/stops/H1mg109a", "https://tec.openplanner.team/stops/H1mg109b"], ["https://tec.openplanner.team/stops/N539ata", "https://tec.openplanner.team/stops/N539bea"], ["https://tec.openplanner.team/stops/LSJgrae1", "https://tec.openplanner.team/stops/LSJgrae2"], ["https://tec.openplanner.team/stops/H4hq131a", "https://tec.openplanner.team/stops/H4th141a"], ["https://tec.openplanner.team/stops/LhGgeme1", "https://tec.openplanner.team/stops/LhGkirc2"], ["https://tec.openplanner.team/stops/N139aab", "https://tec.openplanner.team/stops/N139aeb"], ["https://tec.openplanner.team/stops/X773aga", "https://tec.openplanner.team/stops/X954acb"], ["https://tec.openplanner.team/stops/Lhufont2", "https://tec.openplanner.team/stops/Lmneg--1"], ["https://tec.openplanner.team/stops/H4gu106a", "https://tec.openplanner.team/stops/H4ta128b"], ["https://tec.openplanner.team/stops/N201ada", "https://tec.openplanner.team/stops/N201ara"], ["https://tec.openplanner.team/stops/Bwspbos2", "https://tec.openplanner.team/stops/Bwspm371"], ["https://tec.openplanner.team/stops/Cvsduve2", "https://tec.openplanner.team/stops/N530ada"], ["https://tec.openplanner.team/stops/X829aab", "https://tec.openplanner.team/stops/X829abb"], ["https://tec.openplanner.team/stops/Cctbois2", "https://tec.openplanner.team/stops/Cctgiss1"], ["https://tec.openplanner.team/stops/X601asa", "https://tec.openplanner.team/stops/X601cma"], ["https://tec.openplanner.team/stops/Lbhfaye2", "https://tec.openplanner.team/stops/Lgrwill1"], ["https://tec.openplanner.team/stops/LmSkape1", "https://tec.openplanner.team/stops/LnDdorf1"], ["https://tec.openplanner.team/stops/Lsnferr2", "https://tec.openplanner.team/stops/Lsnmala4"], ["https://tec.openplanner.team/stops/Cgzdeve1", "https://tec.openplanner.team/stops/Cldvign1"], ["https://tec.openplanner.team/stops/Lsebeau*", "https://tec.openplanner.team/stops/Lsevill2"], ["https://tec.openplanner.team/stops/Bbsifml2", "https://tec.openplanner.team/stops/Bnivphs1"], ["https://tec.openplanner.team/stops/H1hc126a", "https://tec.openplanner.team/stops/H1hc152b"], ["https://tec.openplanner.team/stops/Bdvmc031", "https://tec.openplanner.team/stops/Bgzdfpo1"], ["https://tec.openplanner.team/stops/X769aab", "https://tec.openplanner.team/stops/X769ata"], ["https://tec.openplanner.team/stops/LBk79--2", "https://tec.openplanner.team/stops/LBkgrae2"], ["https://tec.openplanner.team/stops/LWbboeg2", "https://tec.openplanner.team/stops/X512abb"], ["https://tec.openplanner.team/stops/Lenmivi*", "https://tec.openplanner.team/stops/Lenplac5"], ["https://tec.openplanner.team/stops/N534bba", "https://tec.openplanner.team/stops/N534bdb"], ["https://tec.openplanner.team/stops/N160aaa", "https://tec.openplanner.team/stops/N160aea"], ["https://tec.openplanner.team/stops/Llgnaes1", "https://tec.openplanner.team/stops/Llgwesp2"], ["https://tec.openplanner.team/stops/Bottcli1", "https://tec.openplanner.team/stops/Bottrfa4"], ["https://tec.openplanner.team/stops/LSzcoop1", "https://tec.openplanner.team/stops/LSzcoop2"], ["https://tec.openplanner.team/stops/X615ada", "https://tec.openplanner.team/stops/X615ata"], ["https://tec.openplanner.team/stops/LBUmara1", "https://tec.openplanner.team/stops/LHhmohe1"], ["https://tec.openplanner.team/stops/X911afa", "https://tec.openplanner.team/stops/X911aha"], ["https://tec.openplanner.team/stops/LCeanne1", "https://tec.openplanner.team/stops/LCeterm1"], ["https://tec.openplanner.team/stops/X636bba", "https://tec.openplanner.team/stops/X636bhb"], ["https://tec.openplanner.team/stops/X716aeb", "https://tec.openplanner.team/stops/X716afa"], ["https://tec.openplanner.team/stops/N553aca", "https://tec.openplanner.team/stops/N568adb"], ["https://tec.openplanner.team/stops/N204aeb", "https://tec.openplanner.team/stops/N204afb"], ["https://tec.openplanner.team/stops/Llmeg--*", "https://tec.openplanner.team/stops/Llmeg--2"], ["https://tec.openplanner.team/stops/X359afa", "https://tec.openplanner.team/stops/X359ahb"], ["https://tec.openplanner.team/stops/LBVclig1", "https://tec.openplanner.team/stops/LMAfali1"], ["https://tec.openplanner.team/stops/LDomoul1", "https://tec.openplanner.team/stops/LHFcaqu1"], ["https://tec.openplanner.team/stops/H1ev115a", "https://tec.openplanner.team/stops/H1ev115b"], ["https://tec.openplanner.team/stops/N207aeb", "https://tec.openplanner.team/stops/N207afb"], ["https://tec.openplanner.team/stops/Brsrmon1", "https://tec.openplanner.team/stops/Brsrpch1"], ["https://tec.openplanner.team/stops/LHaxhig1", "https://tec.openplanner.team/stops/LHaxhig2"], ["https://tec.openplanner.team/stops/Lvehoug2", "https://tec.openplanner.team/stops/Lvewall1"], ["https://tec.openplanner.team/stops/LLrquar1", "https://tec.openplanner.team/stops/LTHchiv1"], ["https://tec.openplanner.team/stops/X615axa", "https://tec.openplanner.team/stops/X615ayb"], ["https://tec.openplanner.team/stops/LWecarr2", "https://tec.openplanner.team/stops/LWeec--2"], ["https://tec.openplanner.team/stops/X743agb", "https://tec.openplanner.team/stops/X746aea"], ["https://tec.openplanner.team/stops/Cchsud0", "https://tec.openplanner.team/stops/CMvil2"], ["https://tec.openplanner.team/stops/Cfbegli2", "https://tec.openplanner.team/stops/Cfcecol4"], ["https://tec.openplanner.team/stops/H1do122a", "https://tec.openplanner.team/stops/H1do131d"], ["https://tec.openplanner.team/stops/X796ahb", "https://tec.openplanner.team/stops/X986amb"], ["https://tec.openplanner.team/stops/LCEeg--1", "https://tec.openplanner.team/stops/LCEeg--2"], ["https://tec.openplanner.team/stops/LLUdeig1", "https://tec.openplanner.team/stops/LLUhotc2"], ["https://tec.openplanner.team/stops/N542aca", "https://tec.openplanner.team/stops/N542acc"], ["https://tec.openplanner.team/stops/N501ana", "https://tec.openplanner.team/stops/N501mba"], ["https://tec.openplanner.team/stops/Lgrdeni1", "https://tec.openplanner.team/stops/Lgrmc--2"], ["https://tec.openplanner.team/stops/Lghberl1", "https://tec.openplanner.team/stops/Ljexhav3"], ["https://tec.openplanner.team/stops/H2ep172a", "https://tec.openplanner.team/stops/H2le176a"], ["https://tec.openplanner.team/stops/LODvill1", "https://tec.openplanner.team/stops/X561aca"], ["https://tec.openplanner.team/stops/Bohnman1", "https://tec.openplanner.team/stops/Bohnmes1"], ["https://tec.openplanner.team/stops/X756aea", "https://tec.openplanner.team/stops/X756akb"], ["https://tec.openplanner.team/stops/Llgjonr2", "https://tec.openplanner.team/stops/Lvtnico*"], ["https://tec.openplanner.team/stops/N116aea", "https://tec.openplanner.team/stops/N118aub"], ["https://tec.openplanner.team/stops/LTResse1", "https://tec.openplanner.team/stops/LTRfica1"], ["https://tec.openplanner.team/stops/Cjochap1", "https://tec.openplanner.team/stops/Cjochap2"], ["https://tec.openplanner.team/stops/LTgbalm2", "https://tec.openplanner.team/stops/LTgchar7"], ["https://tec.openplanner.team/stops/N576aab", "https://tec.openplanner.team/stops/N576amb"], ["https://tec.openplanner.team/stops/H2ha141a", "https://tec.openplanner.team/stops/H2ha141b"], ["https://tec.openplanner.team/stops/N512aqa", "https://tec.openplanner.team/stops/N512aqb"], ["https://tec.openplanner.team/stops/LDOordi2", "https://tec.openplanner.team/stops/LGOhevr1"], ["https://tec.openplanner.team/stops/Bhalcbr2", "https://tec.openplanner.team/stops/Bhalvel2"], ["https://tec.openplanner.team/stops/LOL6che1", "https://tec.openplanner.team/stops/LOL6che2"], ["https://tec.openplanner.team/stops/Lhragri1", "https://tec.openplanner.team/stops/Lhragri2"], ["https://tec.openplanner.team/stops/X942abb", "https://tec.openplanner.team/stops/X942agb"], ["https://tec.openplanner.team/stops/Lreclou2", "https://tec.openplanner.team/stops/Lreec--1"], ["https://tec.openplanner.team/stops/H1te178a", "https://tec.openplanner.team/stops/H1te198a"], ["https://tec.openplanner.team/stops/H4oe150a", "https://tec.openplanner.team/stops/H4oe152a"], ["https://tec.openplanner.team/stops/Cmggthi1", "https://tec.openplanner.team/stops/Cmgtour2"], ["https://tec.openplanner.team/stops/Bincbbo1", "https://tec.openplanner.team/stops/Bincegl1"], ["https://tec.openplanner.team/stops/N106aab", "https://tec.openplanner.team/stops/N118abb"], ["https://tec.openplanner.team/stops/X745abb", "https://tec.openplanner.team/stops/X745acb"], ["https://tec.openplanner.team/stops/N111aca", "https://tec.openplanner.team/stops/N111afb"], ["https://tec.openplanner.team/stops/Bbchcbl2", "https://tec.openplanner.team/stops/Bbchpil1"], ["https://tec.openplanner.team/stops/H4fl113b", "https://tec.openplanner.team/stops/H4fl179b"], ["https://tec.openplanner.team/stops/H1qu100c", "https://tec.openplanner.team/stops/H1qu101a"], ["https://tec.openplanner.team/stops/Lgrlimi1", "https://tec.openplanner.team/stops/Lgrlimi4"], ["https://tec.openplanner.team/stops/H1ma231a", "https://tec.openplanner.team/stops/H1ni315a"], ["https://tec.openplanner.team/stops/LeYgros2", "https://tec.openplanner.team/stops/LeYmuhl1"], ["https://tec.openplanner.team/stops/Bsomtpm1", "https://tec.openplanner.team/stops/N584cba"], ["https://tec.openplanner.team/stops/Bniltri2", "https://tec.openplanner.team/stops/Bnilwal1"], ["https://tec.openplanner.team/stops/H2gy101a", "https://tec.openplanner.team/stops/H2se106a"], ["https://tec.openplanner.team/stops/LmUvilz2", "https://tec.openplanner.team/stops/LrOtria2"], ["https://tec.openplanner.team/stops/N554aea", "https://tec.openplanner.team/stops/N566afa"], ["https://tec.openplanner.team/stops/H1hy126b", "https://tec.openplanner.team/stops/H1hy127a"], ["https://tec.openplanner.team/stops/LSeaque2", "https://tec.openplanner.team/stops/LSetrix1"], ["https://tec.openplanner.team/stops/Cthrwai1", "https://tec.openplanner.team/stops/Cthwaib2"], ["https://tec.openplanner.team/stops/Bgnvfai1", "https://tec.openplanner.team/stops/Bgnvtas1"], ["https://tec.openplanner.team/stops/Causncb2", "https://tec.openplanner.team/stops/N543awh"], ["https://tec.openplanner.team/stops/N507abb", "https://tec.openplanner.team/stops/N507alb"], ["https://tec.openplanner.team/stops/N352acb", "https://tec.openplanner.team/stops/N352adb"], ["https://tec.openplanner.team/stops/N503adb", "https://tec.openplanner.team/stops/N503aha"], ["https://tec.openplanner.team/stops/H4bi100b", "https://tec.openplanner.team/stops/H4te256a"], ["https://tec.openplanner.team/stops/LEHmarc2", "https://tec.openplanner.team/stops/LNCmc--2"], ["https://tec.openplanner.team/stops/Lgrside1", "https://tec.openplanner.team/stops/Llgdesa1"], ["https://tec.openplanner.team/stops/Cbbcent1", "https://tec.openplanner.team/stops/Cbbcent2"], ["https://tec.openplanner.team/stops/H1at109a", "https://tec.openplanner.team/stops/H1at109b"], ["https://tec.openplanner.team/stops/Lsebegu1", "https://tec.openplanner.team/stops/Lsebegu3"], ["https://tec.openplanner.team/stops/X663ahb", "https://tec.openplanner.team/stops/X663ahd"], ["https://tec.openplanner.team/stops/LSoboul1", "https://tec.openplanner.team/stops/LSorobe1"], ["https://tec.openplanner.team/stops/N351aaa", "https://tec.openplanner.team/stops/N351aja"], ["https://tec.openplanner.team/stops/H1gr118b", "https://tec.openplanner.team/stops/H1to153c"], ["https://tec.openplanner.team/stops/Bclglbu1", "https://tec.openplanner.team/stops/Bclglbu2"], ["https://tec.openplanner.team/stops/N558aea", "https://tec.openplanner.team/stops/N558aeb"], ["https://tec.openplanner.team/stops/Lougare3", "https://tec.openplanner.team/stops/Ltiferb2"], ["https://tec.openplanner.team/stops/X641asa", "https://tec.openplanner.team/stops/X641atb"], ["https://tec.openplanner.team/stops/LHovill1", "https://tec.openplanner.team/stops/LHovill2"], ["https://tec.openplanner.team/stops/H1qp140b", "https://tec.openplanner.team/stops/H1qp141b"], ["https://tec.openplanner.team/stops/N244ana", "https://tec.openplanner.team/stops/N244anb"], ["https://tec.openplanner.team/stops/Bronpfe1", "https://tec.openplanner.team/stops/Bvirfpo2"], ["https://tec.openplanner.team/stops/X670aaa", "https://tec.openplanner.team/stops/X670abb"], ["https://tec.openplanner.team/stops/X850aka", "https://tec.openplanner.team/stops/X850aoa"], ["https://tec.openplanner.team/stops/LScd45-1", "https://tec.openplanner.team/stops/LVTforg1"], ["https://tec.openplanner.team/stops/X769aqa", "https://tec.openplanner.team/stops/X769aqb"], ["https://tec.openplanner.team/stops/LFochap1", "https://tec.openplanner.team/stops/LJAdeho4"], ["https://tec.openplanner.team/stops/X626aha", "https://tec.openplanner.team/stops/X626ahb"], ["https://tec.openplanner.team/stops/Lcebois2", "https://tec.openplanner.team/stops/Lgrjobe1"], ["https://tec.openplanner.team/stops/Lenplac2", "https://tec.openplanner.team/stops/Lenptsa1"], ["https://tec.openplanner.team/stops/H4bu109a", "https://tec.openplanner.team/stops/H4ms166b"], ["https://tec.openplanner.team/stops/N539asb", "https://tec.openplanner.team/stops/N539bdb"], ["https://tec.openplanner.team/stops/Bhlvvil1", "https://tec.openplanner.team/stops/Bhlvvil2"], ["https://tec.openplanner.team/stops/Cbmpano2", "https://tec.openplanner.team/stops/Cbmzoni1"], ["https://tec.openplanner.team/stops/H4ka182b", "https://tec.openplanner.team/stops/H4ka392b"], ["https://tec.openplanner.team/stops/X793ada", "https://tec.openplanner.team/stops/X793aeb"], ["https://tec.openplanner.team/stops/H1hr115a", "https://tec.openplanner.team/stops/H1ne149a"], ["https://tec.openplanner.team/stops/Clddeve2", "https://tec.openplanner.team/stops/Cldplac2"], ["https://tec.openplanner.team/stops/Ccypn1", "https://tec.openplanner.team/stops/NH01apa"], ["https://tec.openplanner.team/stops/Lsecast1", "https://tec.openplanner.team/stops/Lsehaut1"], ["https://tec.openplanner.team/stops/H1gr113a", "https://tec.openplanner.team/stops/H1gr115b"], ["https://tec.openplanner.team/stops/H2ml113a", "https://tec.openplanner.team/stops/H2mo126a"], ["https://tec.openplanner.team/stops/N554abb", "https://tec.openplanner.team/stops/N573ama"], ["https://tec.openplanner.team/stops/LMsviad2", "https://tec.openplanner.team/stops/LMsvill1"], ["https://tec.openplanner.team/stops/X351aca", "https://tec.openplanner.team/stops/X351adb"], ["https://tec.openplanner.team/stops/Lghencl2", "https://tec.openplanner.team/stops/Lghflot1"], ["https://tec.openplanner.team/stops/H4eg108a", "https://tec.openplanner.team/stops/H4eg108b"], ["https://tec.openplanner.team/stops/H4an105b", "https://tec.openplanner.team/stops/H4wt160a"], ["https://tec.openplanner.team/stops/X636aea", "https://tec.openplanner.team/stops/X636baa"], ["https://tec.openplanner.team/stops/X636bja", "https://tec.openplanner.team/stops/X636bjb"], ["https://tec.openplanner.team/stops/Lhutran1", "https://tec.openplanner.team/stops/Lhutran2"], ["https://tec.openplanner.team/stops/N509adb", "https://tec.openplanner.team/stops/N509aga"], ["https://tec.openplanner.team/stops/X638afb", "https://tec.openplanner.team/stops/X638agb"], ["https://tec.openplanner.team/stops/N337afa", "https://tec.openplanner.team/stops/N385ada"], ["https://tec.openplanner.team/stops/N244aka", "https://tec.openplanner.team/stops/N244ara"], ["https://tec.openplanner.team/stops/LDOandr2", "https://tec.openplanner.team/stops/LDOjose1"], ["https://tec.openplanner.team/stops/H1ne145a", "https://tec.openplanner.team/stops/H1ne145b"], ["https://tec.openplanner.team/stops/X619aeb", "https://tec.openplanner.team/stops/X619afb"], ["https://tec.openplanner.team/stops/LOeelbe1", "https://tec.openplanner.team/stops/LOesour1"], ["https://tec.openplanner.team/stops/H3so156b", "https://tec.openplanner.team/stops/H3so176a"], ["https://tec.openplanner.team/stops/H4hu119a", "https://tec.openplanner.team/stops/H4hu119b"], ["https://tec.openplanner.team/stops/LAIchpl1", "https://tec.openplanner.team/stops/LBzec--2"], ["https://tec.openplanner.team/stops/Cmcegli1", "https://tec.openplanner.team/stops/Cmcegli4"], ["https://tec.openplanner.team/stops/X754ada", "https://tec.openplanner.team/stops/X754apb"], ["https://tec.openplanner.team/stops/N117aga", "https://tec.openplanner.team/stops/N165acb"], ["https://tec.openplanner.team/stops/Cjudefi2", "https://tec.openplanner.team/stops/Cjurevo1"], ["https://tec.openplanner.team/stops/H4te254b", "https://tec.openplanner.team/stops/H4te256b"], ["https://tec.openplanner.team/stops/LFrvesd1", "https://tec.openplanner.team/stops/LNEec--1"], ["https://tec.openplanner.team/stops/LmR90--1", "https://tec.openplanner.team/stops/LmRkape1"], ["https://tec.openplanner.team/stops/LCPlebl*", "https://tec.openplanner.team/stops/LCPlebl2"], ["https://tec.openplanner.team/stops/N573aab", "https://tec.openplanner.team/stops/N573aea"], ["https://tec.openplanner.team/stops/X901afa", "https://tec.openplanner.team/stops/X902ava"], ["https://tec.openplanner.team/stops/LCpegli2", "https://tec.openplanner.team/stops/LCpvill1"], ["https://tec.openplanner.team/stops/LRObruy1", "https://tec.openplanner.team/stops/LROmons1"], ["https://tec.openplanner.team/stops/LbUmors2", "https://tec.openplanner.team/stops/LbUwhon2"], ["https://tec.openplanner.team/stops/NH01aob", "https://tec.openplanner.team/stops/NH01aua"], ["https://tec.openplanner.team/stops/N229ajb", "https://tec.openplanner.team/stops/N229aka"], ["https://tec.openplanner.team/stops/Cgrchas1", "https://tec.openplanner.team/stops/N160aha"], ["https://tec.openplanner.team/stops/Lghcise1", "https://tec.openplanner.team/stops/Lghmont2"], ["https://tec.openplanner.team/stops/H4bo121b", "https://tec.openplanner.team/stops/H5qu158a"], ["https://tec.openplanner.team/stops/H4bn100a", "https://tec.openplanner.team/stops/H4bs113a"], ["https://tec.openplanner.team/stops/N110aab", "https://tec.openplanner.team/stops/N110aca"], ["https://tec.openplanner.team/stops/X359ama", "https://tec.openplanner.team/stops/X858aea"], ["https://tec.openplanner.team/stops/X716abb", "https://tec.openplanner.team/stops/X716afb"], ["https://tec.openplanner.team/stops/Llgjoie4", "https://tec.openplanner.team/stops/Llgwall1"], ["https://tec.openplanner.team/stops/N538aha", "https://tec.openplanner.team/stops/N538ahb"], ["https://tec.openplanner.team/stops/LHUgole2", "https://tec.openplanner.team/stops/LHUsauv1"], ["https://tec.openplanner.team/stops/X609aib", "https://tec.openplanner.team/stops/X610aab"], ["https://tec.openplanner.team/stops/N534bga", "https://tec.openplanner.team/stops/N561aha"], ["https://tec.openplanner.team/stops/N145aka", "https://tec.openplanner.team/stops/N150aab"], ["https://tec.openplanner.team/stops/H1gg115a", "https://tec.openplanner.team/stops/H1ry136a"], ["https://tec.openplanner.team/stops/N106anb", "https://tec.openplanner.team/stops/N106aob"], ["https://tec.openplanner.team/stops/Bvxgegl1", "https://tec.openplanner.team/stops/Bvxgeta2"], ["https://tec.openplanner.team/stops/Csyjumo1", "https://tec.openplanner.team/stops/Csysans1"], ["https://tec.openplanner.team/stops/LNEgaul3", "https://tec.openplanner.team/stops/LNEvand1"], ["https://tec.openplanner.team/stops/X644ada", "https://tec.openplanner.team/stops/X644adb"], ["https://tec.openplanner.team/stops/X826abb", "https://tec.openplanner.team/stops/X860aba"], ["https://tec.openplanner.team/stops/H4bh102b", "https://tec.openplanner.team/stops/H4bh105a"], ["https://tec.openplanner.team/stops/Ljegoss2", "https://tec.openplanner.team/stops/Ljemabo1"], ["https://tec.openplanner.team/stops/Lagfour2", "https://tec.openplanner.team/stops/Llgbell1"], ["https://tec.openplanner.team/stops/X342ahb", "https://tec.openplanner.team/stops/X369aab"], ["https://tec.openplanner.team/stops/Bperwil1", "https://tec.openplanner.team/stops/N519acb"], ["https://tec.openplanner.team/stops/X601bya", "https://tec.openplanner.team/stops/X601cpa"], ["https://tec.openplanner.team/stops/H1he102a", "https://tec.openplanner.team/stops/H1mh114a"], ["https://tec.openplanner.team/stops/LRRelec2", "https://tec.openplanner.team/stops/LRRpost2"], ["https://tec.openplanner.team/stops/Cmtfoye1", "https://tec.openplanner.team/stops/Cmtfoye2"], ["https://tec.openplanner.team/stops/Barqpwa1", "https://tec.openplanner.team/stops/Barqpwa2"], ["https://tec.openplanner.team/stops/LWEbr051", "https://tec.openplanner.team/stops/LWEbruy2"], ["https://tec.openplanner.team/stops/LFAwale1", "https://tec.openplanner.team/stops/LTOcime2"], ["https://tec.openplanner.team/stops/X636akb", "https://tec.openplanner.team/stops/X636bca"], ["https://tec.openplanner.team/stops/Llgbavi1", "https://tec.openplanner.team/stops/Llgongr2"], ["https://tec.openplanner.team/stops/Cprgran1", "https://tec.openplanner.team/stops/NC11aoa"], ["https://tec.openplanner.team/stops/LFTeg--1", "https://tec.openplanner.team/stops/LWZponh2"], ["https://tec.openplanner.team/stops/N124aab", "https://tec.openplanner.team/stops/N124acb"], ["https://tec.openplanner.team/stops/H4bh103a", "https://tec.openplanner.team/stops/H4bh105a"], ["https://tec.openplanner.team/stops/Brixape1", "https://tec.openplanner.team/stops/Brixble5"], ["https://tec.openplanner.team/stops/X661aka", "https://tec.openplanner.team/stops/X661amb"], ["https://tec.openplanner.team/stops/Bwaunce1", "https://tec.openplanner.team/stops/Bwaunou2"], ["https://tec.openplanner.team/stops/LSZpiro1", "https://tec.openplanner.team/stops/LWycarr1"], ["https://tec.openplanner.team/stops/N507aqa", "https://tec.openplanner.team/stops/N507aqb"], ["https://tec.openplanner.team/stops/X840aca", "https://tec.openplanner.team/stops/X840acc"], ["https://tec.openplanner.team/stops/Blhuibm1", "https://tec.openplanner.team/stops/Blhupqu1"], ["https://tec.openplanner.team/stops/Lghberl2", "https://tec.openplanner.team/stops/Lmochan2"], ["https://tec.openplanner.team/stops/LeUkehr1", "https://tec.openplanner.team/stops/LeUstad2"], ["https://tec.openplanner.team/stops/N244ada", "https://tec.openplanner.team/stops/N248aca"], ["https://tec.openplanner.team/stops/Bnivbau1", "https://tec.openplanner.team/stops/Bnivbau2"], ["https://tec.openplanner.team/stops/N551agb", "https://tec.openplanner.team/stops/N551aiy"], ["https://tec.openplanner.team/stops/Bbstmco1", "https://tec.openplanner.team/stops/Bbstrpo1"], ["https://tec.openplanner.team/stops/Cgd4ven2", "https://tec.openplanner.team/stops/Cgdcent2"], ["https://tec.openplanner.team/stops/LJetrih1", "https://tec.openplanner.team/stops/LJetrih2"], ["https://tec.openplanner.team/stops/H4cw106b", "https://tec.openplanner.team/stops/H4lz163a"], ["https://tec.openplanner.team/stops/Lagindu2", "https://tec.openplanner.team/stops/Lkithie1"], ["https://tec.openplanner.team/stops/X601cfa", "https://tec.openplanner.team/stops/X601cma"], ["https://tec.openplanner.team/stops/LLRgdma1", "https://tec.openplanner.team/stops/LLRgdma2"], ["https://tec.openplanner.team/stops/N501eib", "https://tec.openplanner.team/stops/N501kqb"], ["https://tec.openplanner.team/stops/H4ch113b", "https://tec.openplanner.team/stops/H4ch117a"], ["https://tec.openplanner.team/stops/LBevill1", "https://tec.openplanner.team/stops/LPcforg1"], ["https://tec.openplanner.team/stops/Bcrnsge1", "https://tec.openplanner.team/stops/Bsgeqpb1"], ["https://tec.openplanner.team/stops/Lhufays1", "https://tec.openplanner.team/stops/LSPastr2"], ["https://tec.openplanner.team/stops/LBachpl1", "https://tec.openplanner.team/stops/LBachpl2"], ["https://tec.openplanner.team/stops/LaSkape1", "https://tec.openplanner.team/stops/LaSneuh1"], ["https://tec.openplanner.team/stops/X738aaa", "https://tec.openplanner.team/stops/X754ata"], ["https://tec.openplanner.team/stops/LrDhind2", "https://tec.openplanner.team/stops/LrEfeck1"], ["https://tec.openplanner.team/stops/Bwatgla1", "https://tec.openplanner.team/stops/Bwatprp1"], ["https://tec.openplanner.team/stops/X717agb", "https://tec.openplanner.team/stops/X717age"], ["https://tec.openplanner.team/stops/H4fl115a", "https://tec.openplanner.team/stops/H4wi163a"], ["https://tec.openplanner.team/stops/H1qu110a", "https://tec.openplanner.team/stops/H1qu120a"], ["https://tec.openplanner.team/stops/N212agb", "https://tec.openplanner.team/stops/N212akb"], ["https://tec.openplanner.team/stops/X616aea", "https://tec.openplanner.team/stops/X624aka"], ["https://tec.openplanner.team/stops/N122afb", "https://tec.openplanner.team/stops/N305aca"], ["https://tec.openplanner.team/stops/LBabeco3", "https://tec.openplanner.team/stops/LBajean2"], ["https://tec.openplanner.team/stops/N155ahb", "https://tec.openplanner.team/stops/N160aab"], ["https://tec.openplanner.team/stops/N549agb", "https://tec.openplanner.team/stops/N549aha"], ["https://tec.openplanner.team/stops/H1mr122a", "https://tec.openplanner.team/stops/H1wi157a"], ["https://tec.openplanner.team/stops/H4mo145a", "https://tec.openplanner.team/stops/H4mo145b"], ["https://tec.openplanner.team/stops/X999abb", "https://tec.openplanner.team/stops/X999acc"], ["https://tec.openplanner.team/stops/LMoeg--2", "https://tec.openplanner.team/stops/LMoviel1"], ["https://tec.openplanner.team/stops/H2ll173b", "https://tec.openplanner.team/stops/H2ll191a"], ["https://tec.openplanner.team/stops/Ljerouy2", "https://tec.openplanner.team/stops/Ljetomb1"], ["https://tec.openplanner.team/stops/N204aka", "https://tec.openplanner.team/stops/N204alb"], ["https://tec.openplanner.team/stops/Cbbjfeu2", "https://tec.openplanner.team/stops/Cclrgiv2"], ["https://tec.openplanner.team/stops/Cjxpris2", "https://tec.openplanner.team/stops/Cmlbruy1"], ["https://tec.openplanner.team/stops/H1gr111a", "https://tec.openplanner.team/stops/H1gr113b"], ["https://tec.openplanner.team/stops/X661axb", "https://tec.openplanner.team/stops/X817afb"], ["https://tec.openplanner.team/stops/LMAgare0", "https://tec.openplanner.team/stops/LMArave1"], ["https://tec.openplanner.team/stops/LmSdorf1", "https://tec.openplanner.team/stops/LmSdorf2"], ["https://tec.openplanner.team/stops/Cvtndam2", "https://tec.openplanner.team/stops/Cvtndam3"], ["https://tec.openplanner.team/stops/X902aeb", "https://tec.openplanner.team/stops/X902ala"], ["https://tec.openplanner.team/stops/N232ana", "https://tec.openplanner.team/stops/N286aaa"], ["https://tec.openplanner.team/stops/N501ccb", "https://tec.openplanner.team/stops/N521avb"], ["https://tec.openplanner.team/stops/H5fl100b", "https://tec.openplanner.team/stops/H5wo136a"], ["https://tec.openplanner.team/stops/X802abb", "https://tec.openplanner.team/stops/X818aka"], ["https://tec.openplanner.team/stops/Cgoathe2", "https://tec.openplanner.team/stops/CMbruy2"], ["https://tec.openplanner.team/stops/LREairp2", "https://tec.openplanner.team/stops/LREsaul2"], ["https://tec.openplanner.team/stops/Lvichpl1", "https://tec.openplanner.team/stops/Lviweri2"], ["https://tec.openplanner.team/stops/LESchpl1", "https://tec.openplanner.team/stops/LESsouv1"], ["https://tec.openplanner.team/stops/H1si167a", "https://tec.openplanner.team/stops/H1vt196b"], ["https://tec.openplanner.team/stops/Cgomoul2", "https://tec.openplanner.team/stops/CMemai1"], ["https://tec.openplanner.team/stops/Llgplop2", "https://tec.openplanner.team/stops/Lvtnico*"], ["https://tec.openplanner.team/stops/Lenhouc1", "https://tec.openplanner.team/stops/Lenhouc2"], ["https://tec.openplanner.team/stops/X872aba", "https://tec.openplanner.team/stops/X873aca"], ["https://tec.openplanner.team/stops/LFChuis1", "https://tec.openplanner.team/stops/LFClage1"], ["https://tec.openplanner.team/stops/LEN183-2", "https://tec.openplanner.team/stops/LENoule1"], ["https://tec.openplanner.team/stops/LmUkape1", "https://tec.openplanner.team/stops/LmUvilz2"], ["https://tec.openplanner.team/stops/H4er124b", "https://tec.openplanner.team/stops/H4ty283a"], ["https://tec.openplanner.team/stops/N531aqa", "https://tec.openplanner.team/stops/N531aqb"], ["https://tec.openplanner.team/stops/N254aab", "https://tec.openplanner.team/stops/N570aab"], ["https://tec.openplanner.team/stops/Llglair1", "https://tec.openplanner.team/stops/Llgrema1"], ["https://tec.openplanner.team/stops/Cgobl%C3%A9r1", "https://tec.openplanner.team/stops/Cgotech2"], ["https://tec.openplanner.team/stops/X742aca", "https://tec.openplanner.team/stops/X742acb"], ["https://tec.openplanner.team/stops/X829aba", "https://tec.openplanner.team/stops/X829abb"], ["https://tec.openplanner.team/stops/Cctcoll2", "https://tec.openplanner.team/stops/Ccuhsti2"], ["https://tec.openplanner.team/stops/LON02--1", "https://tec.openplanner.team/stops/LON02--2"], ["https://tec.openplanner.team/stops/N125aba", "https://tec.openplanner.team/stops/N127aha"], ["https://tec.openplanner.team/stops/N501aqb", "https://tec.openplanner.team/stops/N501mba"], ["https://tec.openplanner.team/stops/H1hc125a", "https://tec.openplanner.team/stops/H1hc152a"], ["https://tec.openplanner.team/stops/H1po137b", "https://tec.openplanner.team/stops/H1po138a"], ["https://tec.openplanner.team/stops/H1fl136a", "https://tec.openplanner.team/stops/H1fl140a"], ["https://tec.openplanner.team/stops/LHexhav1", "https://tec.openplanner.team/stops/LHThall4"], ["https://tec.openplanner.team/stops/Lanc14v1", "https://tec.openplanner.team/stops/Lrcvill2"], ["https://tec.openplanner.team/stops/Ccogrbu1", "https://tec.openplanner.team/stops/Ccogrbu2"], ["https://tec.openplanner.team/stops/X775aha", "https://tec.openplanner.team/stops/X775ahb"], ["https://tec.openplanner.team/stops/X898aga", "https://tec.openplanner.team/stops/X898aka"], ["https://tec.openplanner.team/stops/H1ms261a", "https://tec.openplanner.team/stops/H1ms262a"], ["https://tec.openplanner.team/stops/H4bo111a", "https://tec.openplanner.team/stops/H4bo111b"], ["https://tec.openplanner.team/stops/Lhragri2", "https://tec.openplanner.team/stops/Lhrlaix2"], ["https://tec.openplanner.team/stops/LPlchpl1", "https://tec.openplanner.team/stops/LPlpomp1"], ["https://tec.openplanner.team/stops/H1je215a", "https://tec.openplanner.team/stops/H1je215b"], ["https://tec.openplanner.team/stops/X641afb", "https://tec.openplanner.team/stops/X641akb"], ["https://tec.openplanner.team/stops/H1ci102b", "https://tec.openplanner.team/stops/H1mv242a"], ["https://tec.openplanner.team/stops/H4fl115a", "https://tec.openplanner.team/stops/H4my120b"], ["https://tec.openplanner.team/stops/LPLcarr1", "https://tec.openplanner.team/stops/Lsearbo1"], ["https://tec.openplanner.team/stops/H4ty309a", "https://tec.openplanner.team/stops/H4ty332a"], ["https://tec.openplanner.team/stops/Blhugar2", "https://tec.openplanner.team/stops/Blhupcl1"], ["https://tec.openplanner.team/stops/H4ff122b", "https://tec.openplanner.team/stops/H4pp123a"], ["https://tec.openplanner.team/stops/X728aba", "https://tec.openplanner.team/stops/X729ada"], ["https://tec.openplanner.team/stops/X937ala", "https://tec.openplanner.team/stops/X945aeb"], ["https://tec.openplanner.team/stops/LBXhacb1", "https://tec.openplanner.team/stops/LMoelno1"], ["https://tec.openplanner.team/stops/H1mq198a", "https://tec.openplanner.team/stops/H1mq198b"], ["https://tec.openplanner.team/stops/N501avb", "https://tec.openplanner.team/stops/N501dcb"], ["https://tec.openplanner.team/stops/N506bmb", "https://tec.openplanner.team/stops/N506bsa"], ["https://tec.openplanner.team/stops/N528agb", "https://tec.openplanner.team/stops/N528arb"], ["https://tec.openplanner.team/stops/LVPduvi1", "https://tec.openplanner.team/stops/LVPgrot4"], ["https://tec.openplanner.team/stops/LBIcarg1", "https://tec.openplanner.team/stops/Lmlcrot*"], ["https://tec.openplanner.team/stops/Clbbonn1", "https://tec.openplanner.team/stops/H1lo120b"], ["https://tec.openplanner.team/stops/X996agb", "https://tec.openplanner.team/stops/X996aha"], ["https://tec.openplanner.team/stops/X937aca", "https://tec.openplanner.team/stops/X937aha"], ["https://tec.openplanner.team/stops/LeUhaag1", "https://tec.openplanner.team/stops/LeUhaag2"], ["https://tec.openplanner.team/stops/Bgzdgli1", "https://tec.openplanner.team/stops/Bgzdgli2"], ["https://tec.openplanner.team/stops/LTEziho1", "https://tec.openplanner.team/stops/LTEzinn1"], ["https://tec.openplanner.team/stops/H1gr118a", "https://tec.openplanner.team/stops/H1to153c"], ["https://tec.openplanner.team/stops/Lheelva1", "https://tec.openplanner.team/stops/Lheloti1"], ["https://tec.openplanner.team/stops/X547ana", "https://tec.openplanner.team/stops/X576afb"], ["https://tec.openplanner.team/stops/Cvpbifu1", "https://tec.openplanner.team/stops/Cvpcime2"], ["https://tec.openplanner.team/stops/Barcpre1", "https://tec.openplanner.team/stops/Barcpre2"], ["https://tec.openplanner.team/stops/LLOnand1", "https://tec.openplanner.team/stops/LRRbuta2"], ["https://tec.openplanner.team/stops/H1og130b", "https://tec.openplanner.team/stops/H5wo122a"], ["https://tec.openplanner.team/stops/Cfachap2", "https://tec.openplanner.team/stops/Cfaplma2"], ["https://tec.openplanner.team/stops/N509alb", "https://tec.openplanner.team/stops/N509ana"], ["https://tec.openplanner.team/stops/H1qy132b", "https://tec.openplanner.team/stops/H1qy137b"], ["https://tec.openplanner.team/stops/X949ada", "https://tec.openplanner.team/stops/X949ahb"], ["https://tec.openplanner.team/stops/Lpechin1", "https://tec.openplanner.team/stops/Lpetenn2"], ["https://tec.openplanner.team/stops/H4mo186a", "https://tec.openplanner.team/stops/H4mo188b"], ["https://tec.openplanner.team/stops/H1ms910a", "https://tec.openplanner.team/stops/H1ms914a"], ["https://tec.openplanner.team/stops/Lrcstad2", "https://tec.openplanner.team/stops/Lrctec-2"], ["https://tec.openplanner.team/stops/N501cta", "https://tec.openplanner.team/stops/N535apa"], ["https://tec.openplanner.team/stops/N230aca", "https://tec.openplanner.team/stops/N230aha"], ["https://tec.openplanner.team/stops/Brixaug3", "https://tec.openplanner.team/stops/Brixpro1"], ["https://tec.openplanner.team/stops/N131afa", "https://tec.openplanner.team/stops/N131aga"], ["https://tec.openplanner.team/stops/H3th126b", "https://tec.openplanner.team/stops/H3th127b"], ["https://tec.openplanner.team/stops/H1mq198a", "https://tec.openplanner.team/stops/H5is170a"], ["https://tec.openplanner.team/stops/Lfhweri2", "https://tec.openplanner.team/stops/Lpoprie2"], ["https://tec.openplanner.team/stops/H4hx118b", "https://tec.openplanner.team/stops/H4hx123a"], ["https://tec.openplanner.team/stops/Baudsta2", "https://tec.openplanner.team/stops/Bwbfbon1"], ["https://tec.openplanner.team/stops/Bhencha2", "https://tec.openplanner.team/stops/Bhenrcr2"], ["https://tec.openplanner.team/stops/H1hc125b", "https://tec.openplanner.team/stops/H1hc126b"], ["https://tec.openplanner.team/stops/X999asa", "https://tec.openplanner.team/stops/X999ata"], ["https://tec.openplanner.team/stops/Csbplac1", "https://tec.openplanner.team/stops/H1sa113b"], ["https://tec.openplanner.team/stops/LVNbale1", "https://tec.openplanner.team/stops/LWzwanz2"], ["https://tec.openplanner.team/stops/Cdamarc2", "https://tec.openplanner.team/stops/Cdametr2"], ["https://tec.openplanner.team/stops/LrGzent2", "https://tec.openplanner.team/stops/LsEdorf1"], ["https://tec.openplanner.team/stops/LSZmonu5", "https://tec.openplanner.team/stops/LTgcime1"], ["https://tec.openplanner.team/stops/LbUbutg1", "https://tec.openplanner.team/stops/LbUgend2"], ["https://tec.openplanner.team/stops/H1qu116a", "https://tec.openplanner.team/stops/H1qu116b"], ["https://tec.openplanner.team/stops/N553aac", "https://tec.openplanner.team/stops/N553ala"], ["https://tec.openplanner.team/stops/Cjxegli1", "https://tec.openplanner.team/stops/Cjxetri2"], ["https://tec.openplanner.team/stops/H4hu117b", "https://tec.openplanner.team/stops/H4hu122a"], ["https://tec.openplanner.team/stops/Brebgar1", "https://tec.openplanner.team/stops/Brebgar2"], ["https://tec.openplanner.team/stops/X620acb", "https://tec.openplanner.team/stops/X620adb"], ["https://tec.openplanner.team/stops/LFLgara1", "https://tec.openplanner.team/stops/LMvrabo2"], ["https://tec.openplanner.team/stops/N501gva", "https://tec.openplanner.team/stops/N501lbb"], ["https://tec.openplanner.team/stops/Ctm4che2", "https://tec.openplanner.team/stops/Ctmdema1"], ["https://tec.openplanner.team/stops/LhLbalt2", "https://tec.openplanner.team/stops/LhLdorf2"], ["https://tec.openplanner.team/stops/Cluchbl4", "https://tec.openplanner.team/stops/Clupcfe2"], ["https://tec.openplanner.team/stops/Blhufro1", "https://tec.openplanner.team/stops/Blhuibm1"], ["https://tec.openplanner.team/stops/Cgzblob2", "https://tec.openplanner.team/stops/Cthenmi2"], ["https://tec.openplanner.team/stops/Lvcchau1", "https://tec.openplanner.team/stops/Lvcchev2"], ["https://tec.openplanner.team/stops/X636aka", "https://tec.openplanner.team/stops/X649adc"], ["https://tec.openplanner.team/stops/Bvilcoq1", "https://tec.openplanner.team/stops/Bvilcoq2"], ["https://tec.openplanner.team/stops/LSemc--3", "https://tec.openplanner.team/stops/LSemc--4"], ["https://tec.openplanner.team/stops/Cdagoss1", "https://tec.openplanner.team/stops/Cmacreu1"], ["https://tec.openplanner.team/stops/N501anz", "https://tec.openplanner.team/stops/N501mba"], ["https://tec.openplanner.team/stops/H2ll172d", "https://tec.openplanner.team/stops/H2ll183b"], ["https://tec.openplanner.team/stops/N209ahb", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/H2pe161b", "https://tec.openplanner.team/stops/H2pe163a"], ["https://tec.openplanner.team/stops/X818afa", "https://tec.openplanner.team/stops/X818amb"], ["https://tec.openplanner.team/stops/LbUjost3", "https://tec.openplanner.team/stops/LhUrich2"], ["https://tec.openplanner.team/stops/X750aca", "https://tec.openplanner.team/stops/X750afa"], ["https://tec.openplanner.team/stops/Bnstlna1", "https://tec.openplanner.team/stops/Bnstver1"], ["https://tec.openplanner.team/stops/H4bo114b", "https://tec.openplanner.team/stops/H5qu158a"], ["https://tec.openplanner.team/stops/H2ca104a", "https://tec.openplanner.team/stops/H2mo133a"], ["https://tec.openplanner.team/stops/Cdacolu1", "https://tec.openplanner.team/stops/Cdapige2"], ["https://tec.openplanner.team/stops/Cgxcite2", "https://tec.openplanner.team/stops/Cgxpair1"], ["https://tec.openplanner.team/stops/X808ada", "https://tec.openplanner.team/stops/X808aea"], ["https://tec.openplanner.team/stops/Bbghpln1", "https://tec.openplanner.team/stops/Bptecar1"], ["https://tec.openplanner.team/stops/N524afa", "https://tec.openplanner.team/stops/N524aha"], ["https://tec.openplanner.team/stops/LeUnisp1", "https://tec.openplanner.team/stops/LeUschn1"], ["https://tec.openplanner.team/stops/LLRrape1", "https://tec.openplanner.team/stops/LLRvill2"], ["https://tec.openplanner.team/stops/H2ha135b", "https://tec.openplanner.team/stops/H2ha136b"], ["https://tec.openplanner.team/stops/X805acb", "https://tec.openplanner.team/stops/X805adb"], ["https://tec.openplanner.team/stops/LBBpech1", "https://tec.openplanner.team/stops/LLvferm1"], ["https://tec.openplanner.team/stops/LkEhatt2", "https://tec.openplanner.team/stops/LkEzoll2"], ["https://tec.openplanner.team/stops/Bplncba1", "https://tec.openplanner.team/stops/Clpsola2"], ["https://tec.openplanner.team/stops/H4an107b", "https://tec.openplanner.team/stops/H4cr110a"], ["https://tec.openplanner.team/stops/X992aad", "https://tec.openplanner.team/stops/X992aba"], ["https://tec.openplanner.team/stops/N106abb", "https://tec.openplanner.team/stops/N106arb"], ["https://tec.openplanner.team/stops/LJEerno1", "https://tec.openplanner.team/stops/LJEerno2"], ["https://tec.openplanner.team/stops/Bboseco2", "https://tec.openplanner.team/stops/Bgoekaz1"], ["https://tec.openplanner.team/stops/H1cu119a", "https://tec.openplanner.team/stops/H1je212b"], ["https://tec.openplanner.team/stops/Brsggde2", "https://tec.openplanner.team/stops/Bwbfbon2"], ["https://tec.openplanner.team/stops/Btstcar3", "https://tec.openplanner.team/stops/Btstcar4"], ["https://tec.openplanner.team/stops/Brixble5", "https://tec.openplanner.team/stops/Brixpao3"], ["https://tec.openplanner.team/stops/LRUhama2", "https://tec.openplanner.team/stops/LTotrui2"], ["https://tec.openplanner.team/stops/Ctrterm1", "https://tec.openplanner.team/stops/H2tz115b"], ["https://tec.openplanner.team/stops/LLteg--2", "https://tec.openplanner.team/stops/LLtwanz1"], ["https://tec.openplanner.team/stops/H4mo138b", "https://tec.openplanner.team/stops/H4mo198a"], ["https://tec.openplanner.team/stops/NL78aaa", "https://tec.openplanner.team/stops/NL78ahb"], ["https://tec.openplanner.team/stops/Bglibui1", "https://tec.openplanner.team/stops/Bgliron1"], ["https://tec.openplanner.team/stops/Ccohotv1", "https://tec.openplanner.team/stops/Ccojaur2"], ["https://tec.openplanner.team/stops/H4by117a", "https://tec.openplanner.team/stops/H4ro155b"], ["https://tec.openplanner.team/stops/LJSec--1", "https://tec.openplanner.team/stops/LJSeg--2"], ["https://tec.openplanner.team/stops/H5pe153a", "https://tec.openplanner.team/stops/H5pe153b"], ["https://tec.openplanner.team/stops/H1ge116a", "https://tec.openplanner.team/stops/H1ge116b"], ["https://tec.openplanner.team/stops/Lanplat2", "https://tec.openplanner.team/stops/Lanyser1"], ["https://tec.openplanner.team/stops/LWAathe1", "https://tec.openplanner.team/stops/LWArege1"], ["https://tec.openplanner.team/stops/H4ta116a", "https://tec.openplanner.team/stops/H4ta125a"], ["https://tec.openplanner.team/stops/LWDcime2", "https://tec.openplanner.team/stops/LWDfuma1"], ["https://tec.openplanner.team/stops/N206adb", "https://tec.openplanner.team/stops/N207acb"], ["https://tec.openplanner.team/stops/LAMecse*", "https://tec.openplanner.team/stops/LJEniho2"], ["https://tec.openplanner.team/stops/Bcrncce1", "https://tec.openplanner.team/stops/N529adb"], ["https://tec.openplanner.team/stops/N118ada", "https://tec.openplanner.team/stops/N118adb"], ["https://tec.openplanner.team/stops/H2sb232b", "https://tec.openplanner.team/stops/H3th134a"], ["https://tec.openplanner.team/stops/H4li179c", "https://tec.openplanner.team/stops/H4mb205b"], ["https://tec.openplanner.team/stops/N548agc", "https://tec.openplanner.team/stops/N569ala"], ["https://tec.openplanner.team/stops/H1te177a", "https://tec.openplanner.team/stops/H1te190b"], ["https://tec.openplanner.team/stops/H1ms258b", "https://tec.openplanner.team/stops/H1ms367a"], ["https://tec.openplanner.team/stops/X784aba", "https://tec.openplanner.team/stops/X784aja"], ["https://tec.openplanner.team/stops/LOdbuis1", "https://tec.openplanner.team/stops/LOdbuis2"], ["https://tec.openplanner.team/stops/Cjufour4", "https://tec.openplanner.team/stops/CMpuis1"], ["https://tec.openplanner.team/stops/Bchgegl2", "https://tec.openplanner.team/stops/Bchgvil2"], ["https://tec.openplanner.team/stops/N101aka", "https://tec.openplanner.team/stops/N101ala"], ["https://tec.openplanner.team/stops/X805abb", "https://tec.openplanner.team/stops/X805ajb"], ["https://tec.openplanner.team/stops/N529abc", "https://tec.openplanner.team/stops/N529aeb"], ["https://tec.openplanner.team/stops/Ljeheur1", "https://tec.openplanner.team/stops/Ljerose3"], ["https://tec.openplanner.team/stops/H1cd114b", "https://tec.openplanner.team/stops/H1to152a"], ["https://tec.openplanner.team/stops/Lstchas2", "https://tec.openplanner.team/stops/Lsteg--1"], ["https://tec.openplanner.team/stops/Clomari1", "https://tec.openplanner.team/stops/Clomari5"], ["https://tec.openplanner.team/stops/LCPpech5", "https://tec.openplanner.team/stops/LOncar-*"], ["https://tec.openplanner.team/stops/Cfcpcov2", "https://tec.openplanner.team/stops/Cfcrdpr2"], ["https://tec.openplanner.team/stops/Canbruy2", "https://tec.openplanner.team/stops/Canegbr1"], ["https://tec.openplanner.team/stops/LOTferm1", "https://tec.openplanner.team/stops/LXhvanh1"], ["https://tec.openplanner.team/stops/Lseserv2", "https://tec.openplanner.team/stops/Lseserv4"], ["https://tec.openplanner.team/stops/Bbgncnd2", "https://tec.openplanner.team/stops/Bsomtnd1"], ["https://tec.openplanner.team/stops/LSPcomm1", "https://tec.openplanner.team/stops/LSPentr1"], ["https://tec.openplanner.team/stops/Cerrver4", "https://tec.openplanner.team/stops/Cvrchap2"], ["https://tec.openplanner.team/stops/X638aoa", "https://tec.openplanner.team/stops/X638aob"], ["https://tec.openplanner.team/stops/H2ma204a", "https://tec.openplanner.team/stops/H2ma204b"], ["https://tec.openplanner.team/stops/Cmldupu1", "https://tec.openplanner.team/stops/Cmlener1"], ["https://tec.openplanner.team/stops/X642aab", "https://tec.openplanner.team/stops/X642aac"], ["https://tec.openplanner.team/stops/X891ada", "https://tec.openplanner.team/stops/X892aba"], ["https://tec.openplanner.team/stops/H5bl117b", "https://tec.openplanner.team/stops/H5bl141a"], ["https://tec.openplanner.team/stops/X750bia", "https://tec.openplanner.team/stops/X750bib"], ["https://tec.openplanner.team/stops/Clihame1", "https://tec.openplanner.team/stops/Cmeptmi6"], ["https://tec.openplanner.team/stops/Lprceri2", "https://tec.openplanner.team/stops/Lprchat1"], ["https://tec.openplanner.team/stops/H1mc126b", "https://tec.openplanner.team/stops/H1mc128a"], ["https://tec.openplanner.team/stops/Barchoc1", "https://tec.openplanner.team/stops/Barcpre1"], ["https://tec.openplanner.team/stops/Bnivbxl2", "https://tec.openplanner.team/stops/Bnivgpl2"], ["https://tec.openplanner.team/stops/X771aha", "https://tec.openplanner.team/stops/X771aia"], ["https://tec.openplanner.team/stops/N568acb", "https://tec.openplanner.team/stops/N568ada"], ["https://tec.openplanner.team/stops/Bsaubra2", "https://tec.openplanner.team/stops/Bsaumlk4"], ["https://tec.openplanner.team/stops/H1gi118a", "https://tec.openplanner.team/stops/H1gi119b"], ["https://tec.openplanner.team/stops/LFPho8a1", "https://tec.openplanner.team/stops/LFPkast1"], ["https://tec.openplanner.team/stops/H4ru242a", "https://tec.openplanner.team/stops/H4ru244a"], ["https://tec.openplanner.team/stops/H2ha134b", "https://tec.openplanner.team/stops/H2ha141c"], ["https://tec.openplanner.team/stops/LBDcarr1", "https://tec.openplanner.team/stops/LVEphar1"], ["https://tec.openplanner.team/stops/LeUjuge1", "https://tec.openplanner.team/stops/LeUwert3"], ["https://tec.openplanner.team/stops/Cctsncb2", "https://tec.openplanner.team/stops/NC02aob"], ["https://tec.openplanner.team/stops/LLxalle1", "https://tec.openplanner.team/stops/LLxmonu1"], ["https://tec.openplanner.team/stops/X346aka", "https://tec.openplanner.team/stops/X346akb"], ["https://tec.openplanner.team/stops/X623aba", "https://tec.openplanner.team/stops/X623abb"], ["https://tec.openplanner.team/stops/LmHabzw2", "https://tec.openplanner.team/stops/LmHburg1"], ["https://tec.openplanner.team/stops/X912aba", "https://tec.openplanner.team/stops/X912alb"], ["https://tec.openplanner.team/stops/Cgoboll4", "https://tec.openplanner.team/stops/Cgoulb1"], ["https://tec.openplanner.team/stops/Lsebuis2", "https://tec.openplanner.team/stops/Lsemaqu1"], ["https://tec.openplanner.team/stops/LSeec--1", "https://tec.openplanner.team/stops/LSeec--3"], ["https://tec.openplanner.team/stops/X953afa", "https://tec.openplanner.team/stops/X953afb"], ["https://tec.openplanner.team/stops/Lhufays1", "https://tec.openplanner.team/stops/Lhufays2"], ["https://tec.openplanner.team/stops/H4ae100b", "https://tec.openplanner.team/stops/H4ae101a"], ["https://tec.openplanner.team/stops/Lveabat1", "https://tec.openplanner.team/stops/Lvemull2"], ["https://tec.openplanner.team/stops/Bitrcen1", "https://tec.openplanner.team/stops/Bitreco1"], ["https://tec.openplanner.team/stops/X991akb", "https://tec.openplanner.team/stops/X993aab"], ["https://tec.openplanner.team/stops/H4wn131a", "https://tec.openplanner.team/stops/H4wn139a"], ["https://tec.openplanner.team/stops/N534aqa", "https://tec.openplanner.team/stops/N534asa"], ["https://tec.openplanner.team/stops/Bbghgli1", "https://tec.openplanner.team/stops/Bbghsta4"], ["https://tec.openplanner.team/stops/Lmodeni1", "https://tec.openplanner.team/stops/Lmopast2"], ["https://tec.openplanner.team/stops/LHexhav1", "https://tec.openplanner.team/stops/LWOruis1"], ["https://tec.openplanner.team/stops/Ljuauto1", "https://tec.openplanner.team/stops/Ljufore2"], ["https://tec.openplanner.team/stops/H4ms166a", "https://tec.openplanner.team/stops/H4ms166b"], ["https://tec.openplanner.team/stops/LAmeg--1", "https://tec.openplanner.team/stops/LAmwaut1"], ["https://tec.openplanner.team/stops/LbOre151", "https://tec.openplanner.team/stops/LbOre3b2"], ["https://tec.openplanner.team/stops/LLOcreu1", "https://tec.openplanner.team/stops/LLOspin2"], ["https://tec.openplanner.team/stops/LLrc_ip3", "https://tec.openplanner.team/stops/LLrc_ip4"], ["https://tec.openplanner.team/stops/Cthcrom2", "https://tec.openplanner.team/stops/Cthvbas4"], ["https://tec.openplanner.team/stops/H4bo117a", "https://tec.openplanner.team/stops/H4bo117b"], ["https://tec.openplanner.team/stops/H1ms360a", "https://tec.openplanner.team/stops/H1ms922a"], ["https://tec.openplanner.team/stops/LdUkreu1", "https://tec.openplanner.team/stops/LlAdorf1"], ["https://tec.openplanner.team/stops/LmNha221", "https://tec.openplanner.team/stops/LmNstaa2"], ["https://tec.openplanner.team/stops/Bgrmfon1", "https://tec.openplanner.team/stops/Bgrmfon2"], ["https://tec.openplanner.team/stops/Btstbbu2", "https://tec.openplanner.team/stops/N524ada"], ["https://tec.openplanner.team/stops/LRmhage6", "https://tec.openplanner.team/stops/LRmhage8"], ["https://tec.openplanner.team/stops/Btancre1", "https://tec.openplanner.team/stops/Btannda1"], ["https://tec.openplanner.team/stops/Lvegc--5", "https://tec.openplanner.team/stops/Lverogi2"], ["https://tec.openplanner.team/stops/LTGsucr1", "https://tec.openplanner.team/stops/LTGsucr2"], ["https://tec.openplanner.team/stops/N505ala", "https://tec.openplanner.team/stops/N579adb"], ["https://tec.openplanner.team/stops/Bpiepla2", "https://tec.openplanner.team/stops/Bpiesta2"], ["https://tec.openplanner.team/stops/LGLeg--1", "https://tec.openplanner.team/stops/LGLgeer2"], ["https://tec.openplanner.team/stops/N501hpb", "https://tec.openplanner.team/stops/N501ima"], ["https://tec.openplanner.team/stops/LHUdeni1", "https://tec.openplanner.team/stops/LHUhaum3"], ["https://tec.openplanner.team/stops/Cravign2", "https://tec.openplanner.team/stops/Cravign3"], ["https://tec.openplanner.team/stops/H1et100a", "https://tec.openplanner.team/stops/H1et102a"], ["https://tec.openplanner.team/stops/N308aaa", "https://tec.openplanner.team/stops/N308aca"], ["https://tec.openplanner.team/stops/Bbcoeco1", "https://tec.openplanner.team/stops/Bbcogar1"], ["https://tec.openplanner.team/stops/H4ft134a", "https://tec.openplanner.team/stops/H4ma200b"], ["https://tec.openplanner.team/stops/H1cu115a", "https://tec.openplanner.team/stops/H1cu128a"], ["https://tec.openplanner.team/stops/X869afa", "https://tec.openplanner.team/stops/X869afb"], ["https://tec.openplanner.team/stops/Lseruis1", "https://tec.openplanner.team/stops/Lseruis2"], ["https://tec.openplanner.team/stops/Bhanwav2", "https://tec.openplanner.team/stops/Bthscbl1"], ["https://tec.openplanner.team/stops/Ljeblum1", "https://tec.openplanner.team/stops/Ljedepa1"], ["https://tec.openplanner.team/stops/N534ava", "https://tec.openplanner.team/stops/N534avb"], ["https://tec.openplanner.team/stops/X681afa", "https://tec.openplanner.team/stops/X687aka"], ["https://tec.openplanner.team/stops/X952aga", "https://tec.openplanner.team/stops/X952aka"], ["https://tec.openplanner.team/stops/Lveherl2", "https://tec.openplanner.team/stops/Lvevieu1"], ["https://tec.openplanner.team/stops/N201afa", "https://tec.openplanner.team/stops/N201aha"], ["https://tec.openplanner.team/stops/Lhrmura2", "https://tec.openplanner.team/stops/Lhrthie2"], ["https://tec.openplanner.team/stops/N135afa", "https://tec.openplanner.team/stops/N135bbb"], ["https://tec.openplanner.team/stops/Bgoekaz1", "https://tec.openplanner.team/stops/Bgoevli2"], ["https://tec.openplanner.team/stops/N528apa", "https://tec.openplanner.team/stops/N528atb"], ["https://tec.openplanner.team/stops/X812afb", "https://tec.openplanner.team/stops/X812agb"], ["https://tec.openplanner.team/stops/LDOandr1", "https://tec.openplanner.team/stops/LDOandr4"], ["https://tec.openplanner.team/stops/H4ka178a", "https://tec.openplanner.team/stops/H4ru245a"], ["https://tec.openplanner.team/stops/Bbeamon1", "https://tec.openplanner.team/stops/Bbeasta1"], ["https://tec.openplanner.team/stops/Llgfail1", "https://tec.openplanner.team/stops/Llgfail2"], ["https://tec.openplanner.team/stops/H1hw119a", "https://tec.openplanner.team/stops/H1ls105a"], ["https://tec.openplanner.team/stops/H1bl100a", "https://tec.openplanner.team/stops/H1bl103a"], ["https://tec.openplanner.team/stops/LVEeg--2", "https://tec.openplanner.team/stops/LVEfize2"], ["https://tec.openplanner.team/stops/LWRcruc1", "https://tec.openplanner.team/stops/LWRpl--1"], ["https://tec.openplanner.team/stops/Bchgbel2", "https://tec.openplanner.team/stops/Bchgbru2"], ["https://tec.openplanner.team/stops/Cbflong1", "https://tec.openplanner.team/stops/Cbfstry1"], ["https://tec.openplanner.team/stops/H1pa112a", "https://tec.openplanner.team/stops/H1pa118b"], ["https://tec.openplanner.team/stops/H2tr245b", "https://tec.openplanner.team/stops/H2tr254b"], ["https://tec.openplanner.team/stops/N515ana", "https://tec.openplanner.team/stops/N516aoc"], ["https://tec.openplanner.team/stops/X723aja", "https://tec.openplanner.team/stops/X723akb"], ["https://tec.openplanner.team/stops/X999aib", "https://tec.openplanner.team/stops/X999apa"], ["https://tec.openplanner.team/stops/LHvvill*", "https://tec.openplanner.team/stops/LPTgran2"], ["https://tec.openplanner.team/stops/X775afa", "https://tec.openplanner.team/stops/X775ana"], ["https://tec.openplanner.team/stops/X891acb", "https://tec.openplanner.team/stops/X892abb"], ["https://tec.openplanner.team/stops/LPbeg--2", "https://tec.openplanner.team/stops/LSIcour1"], ["https://tec.openplanner.team/stops/X638amb", "https://tec.openplanner.team/stops/X652aja"], ["https://tec.openplanner.team/stops/N207aab", "https://tec.openplanner.team/stops/N207abb"], ["https://tec.openplanner.team/stops/Lmndari2", "https://tec.openplanner.team/stops/Lmndeso2"], ["https://tec.openplanner.team/stops/Lgrdeni2", "https://tec.openplanner.team/stops/Lgrlabo2"], ["https://tec.openplanner.team/stops/LBGgeer2", "https://tec.openplanner.team/stops/LBGjacq2"], ["https://tec.openplanner.team/stops/X869adb", "https://tec.openplanner.team/stops/X882agb"], ["https://tec.openplanner.team/stops/Crofrio1", "https://tec.openplanner.team/stops/Crolema3"], ["https://tec.openplanner.team/stops/H4ce100b", "https://tec.openplanner.team/stops/H4ce106b"], ["https://tec.openplanner.team/stops/LCxcouv1", "https://tec.openplanner.team/stops/LHEpriv2"], ["https://tec.openplanner.team/stops/Cflecga2", "https://tec.openplanner.team/stops/Cflsabl2"], ["https://tec.openplanner.team/stops/H4lp120a", "https://tec.openplanner.team/stops/H4lp123b"], ["https://tec.openplanner.team/stops/LmDdenk1", "https://tec.openplanner.team/stops/LmDdenk2"], ["https://tec.openplanner.team/stops/NC14aia", "https://tec.openplanner.team/stops/NC14aib"], ["https://tec.openplanner.team/stops/Canboha1", "https://tec.openplanner.team/stops/Cfosurs2"], ["https://tec.openplanner.team/stops/Barchoc2", "https://tec.openplanner.team/stops/Bgzddmo1"], ["https://tec.openplanner.team/stops/X939aab", "https://tec.openplanner.team/stops/X939abb"], ["https://tec.openplanner.team/stops/X595aga", "https://tec.openplanner.team/stops/X595agb"], ["https://tec.openplanner.team/stops/N505akb", "https://tec.openplanner.team/stops/N505ala"], ["https://tec.openplanner.team/stops/X636ajb", "https://tec.openplanner.team/stops/X636bja"], ["https://tec.openplanner.team/stops/N339aab", "https://tec.openplanner.team/stops/N368afb"], ["https://tec.openplanner.team/stops/N212abb", "https://tec.openplanner.team/stops/N212aia"], ["https://tec.openplanner.team/stops/LSzetoi1", "https://tec.openplanner.team/stops/NL57aia"], ["https://tec.openplanner.team/stops/Ccogera1", "https://tec.openplanner.team/stops/Ccogrbu2"], ["https://tec.openplanner.team/stops/X721agc", "https://tec.openplanner.team/stops/X721aib"], ["https://tec.openplanner.team/stops/H2na134b", "https://tec.openplanner.team/stops/H2na136b"], ["https://tec.openplanner.team/stops/N353ada", "https://tec.openplanner.team/stops/N353afb"], ["https://tec.openplanner.team/stops/LBDfran2", "https://tec.openplanner.team/stops/LBDtill1"], ["https://tec.openplanner.team/stops/Bmarmpr2", "https://tec.openplanner.team/stops/Btileco2"], ["https://tec.openplanner.team/stops/N894ada", "https://tec.openplanner.team/stops/N894aga"], ["https://tec.openplanner.team/stops/Bblague1", "https://tec.openplanner.team/stops/Bblaqsj2"], ["https://tec.openplanner.team/stops/LMttrou2", "https://tec.openplanner.team/stops/LSdbote1"], ["https://tec.openplanner.team/stops/Canrobe2", "https://tec.openplanner.team/stops/Canrsta1"], ["https://tec.openplanner.team/stops/Cnadrev2", "https://tec.openplanner.team/stops/NC14aeb"], ["https://tec.openplanner.team/stops/Bmsggra2", "https://tec.openplanner.team/stops/Bmsggra3"], ["https://tec.openplanner.team/stops/Canjon1", "https://tec.openplanner.team/stops/Canrsta1"], ["https://tec.openplanner.team/stops/N501dpa", "https://tec.openplanner.team/stops/N501kla"], ["https://tec.openplanner.team/stops/LCelabi1", "https://tec.openplanner.team/stops/LCewaut2"], ["https://tec.openplanner.team/stops/Livgera2", "https://tec.openplanner.team/stops/Livgera6"], ["https://tec.openplanner.team/stops/LeYberl1", "https://tec.openplanner.team/stops/LrAalte2"], ["https://tec.openplanner.team/stops/H4vx364a", "https://tec.openplanner.team/stops/H4vx365a"], ["https://tec.openplanner.team/stops/H4ir163a", "https://tec.openplanner.team/stops/H4ir163d"], ["https://tec.openplanner.team/stops/Ltichif3", "https://tec.openplanner.team/stops/Ltimarr1"], ["https://tec.openplanner.team/stops/LORcomb2", "https://tec.openplanner.team/stops/LORpave2"], ["https://tec.openplanner.team/stops/Lscchat1", "https://tec.openplanner.team/stops/Lscstan2"], ["https://tec.openplanner.team/stops/N242aga", "https://tec.openplanner.team/stops/N242agb"], ["https://tec.openplanner.team/stops/LAMhaut1", "https://tec.openplanner.team/stops/LFlabba2"], ["https://tec.openplanner.team/stops/X926abb", "https://tec.openplanner.team/stops/X926aea"], ["https://tec.openplanner.team/stops/LESchat2", "https://tec.openplanner.team/stops/LTIchev1"], ["https://tec.openplanner.team/stops/Cgrlorm2", "https://tec.openplanner.team/stops/Cjojonc2"], ["https://tec.openplanner.team/stops/X836afb", "https://tec.openplanner.team/stops/X836ahb"], ["https://tec.openplanner.team/stops/H4ka189b", "https://tec.openplanner.team/stops/H4ka194a"], ["https://tec.openplanner.team/stops/H2fy119b", "https://tec.openplanner.team/stops/H2fy123d"], ["https://tec.openplanner.team/stops/N513ana", "https://tec.openplanner.team/stops/N513axb"], ["https://tec.openplanner.team/stops/H1ch106a", "https://tec.openplanner.team/stops/H4tm140b"], ["https://tec.openplanner.team/stops/LhDkreu4", "https://tec.openplanner.team/stops/LhPheps2"], ["https://tec.openplanner.team/stops/X750bha", "https://tec.openplanner.team/stops/X750bia"], ["https://tec.openplanner.team/stops/H4ma420a", "https://tec.openplanner.team/stops/H4oq409a"], ["https://tec.openplanner.team/stops/H4ty334b", "https://tec.openplanner.team/stops/H4ty344b"], ["https://tec.openplanner.team/stops/X623acc", "https://tec.openplanner.team/stops/X623aed"], ["https://tec.openplanner.team/stops/N355ada", "https://tec.openplanner.team/stops/N894adb"], ["https://tec.openplanner.team/stops/X982apa", "https://tec.openplanner.team/stops/X982aqb"], ["https://tec.openplanner.team/stops/H1mk107b", "https://tec.openplanner.team/stops/H1mk108a"], ["https://tec.openplanner.team/stops/Creha762", "https://tec.openplanner.team/stops/Crerevi2"], ["https://tec.openplanner.team/stops/X757adb", "https://tec.openplanner.team/stops/X757aoa"], ["https://tec.openplanner.team/stops/LNCesne2", "https://tec.openplanner.team/stops/LNCrami1"], ["https://tec.openplanner.team/stops/LWEcomp1", "https://tec.openplanner.team/stops/LWEcomp2"], ["https://tec.openplanner.team/stops/N506ama", "https://tec.openplanner.team/stops/N506amb"], ["https://tec.openplanner.team/stops/H2mg143b", "https://tec.openplanner.team/stops/H2mg144a"], ["https://tec.openplanner.team/stops/Bgdhdet1", "https://tec.openplanner.team/stops/Blinbru1"], ["https://tec.openplanner.team/stops/Cvsegli1", "https://tec.openplanner.team/stops/Cvstouv1"], ["https://tec.openplanner.team/stops/N145aca", "https://tec.openplanner.team/stops/N145aea"], ["https://tec.openplanner.team/stops/Blasbh51", "https://tec.openplanner.team/stops/Blasbti1"], ["https://tec.openplanner.team/stops/X658abb", "https://tec.openplanner.team/stops/X671aba"], ["https://tec.openplanner.team/stops/Brsga151", "https://tec.openplanner.team/stops/Brsgman1"], ["https://tec.openplanner.team/stops/H1cu112b", "https://tec.openplanner.team/stops/H1cu121a"], ["https://tec.openplanner.team/stops/NC11aga", "https://tec.openplanner.team/stops/NC11ahb"], ["https://tec.openplanner.team/stops/H4ty291c", "https://tec.openplanner.team/stops/H4ty317a"], ["https://tec.openplanner.team/stops/X649aca", "https://tec.openplanner.team/stops/X649acb"], ["https://tec.openplanner.team/stops/LnE79--2", "https://tec.openplanner.team/stops/LnEkirc3"], ["https://tec.openplanner.team/stops/NL78aea", "https://tec.openplanner.team/stops/NL78afb"], ["https://tec.openplanner.team/stops/LBkbamb1", "https://tec.openplanner.team/stops/LBkbamb2"], ["https://tec.openplanner.team/stops/X871aaa", "https://tec.openplanner.team/stops/X873aca"], ["https://tec.openplanner.team/stops/H4av102a", "https://tec.openplanner.team/stops/H4av102c"], ["https://tec.openplanner.team/stops/N387abb", "https://tec.openplanner.team/stops/N387aca"], ["https://tec.openplanner.team/stops/LSZcock1", "https://tec.openplanner.team/stops/LSZpiro1"], ["https://tec.openplanner.team/stops/Bchgbru1", "https://tec.openplanner.team/stops/Btsllbv1"], ["https://tec.openplanner.team/stops/N536afb", "https://tec.openplanner.team/stops/N580aga"], ["https://tec.openplanner.team/stops/N141aca", "https://tec.openplanner.team/stops/N141aga"], ["https://tec.openplanner.team/stops/X661aib", "https://tec.openplanner.team/stops/X661aja"], ["https://tec.openplanner.team/stops/H1gh152b", "https://tec.openplanner.team/stops/H1gh162c"], ["https://tec.openplanner.team/stops/X908aib", "https://tec.openplanner.team/stops/X908ana"], ["https://tec.openplanner.team/stops/Bhantui1", "https://tec.openplanner.team/stops/Bhantui2"], ["https://tec.openplanner.team/stops/LBPxhav2", "https://tec.openplanner.team/stops/LRGderr1"], ["https://tec.openplanner.team/stops/H1au113a", "https://tec.openplanner.team/stops/H1on129a"], ["https://tec.openplanner.team/stops/LkEcoop1", "https://tec.openplanner.team/stops/LkEgss-2"], ["https://tec.openplanner.team/stops/N149aga", "https://tec.openplanner.team/stops/N149aha"], ["https://tec.openplanner.team/stops/X654abb", "https://tec.openplanner.team/stops/X654adb"], ["https://tec.openplanner.team/stops/X720aaa", "https://tec.openplanner.team/stops/X720abb"], ["https://tec.openplanner.team/stops/H2go116b", "https://tec.openplanner.team/stops/H2go118a"], ["https://tec.openplanner.team/stops/H1ch103a", "https://tec.openplanner.team/stops/H1ch103b"], ["https://tec.openplanner.team/stops/N201aca", "https://tec.openplanner.team/stops/N201ajb"], ["https://tec.openplanner.team/stops/Lhuleke1", "https://tec.openplanner.team/stops/Lhuleke2"], ["https://tec.openplanner.team/stops/LFRfagn2", "https://tec.openplanner.team/stops/LHcaube1"], ["https://tec.openplanner.team/stops/LHUgole1", "https://tec.openplanner.team/stops/LHUhaum3"], ["https://tec.openplanner.team/stops/Cfocmed2", "https://tec.openplanner.team/stops/Cfoperz2"], ["https://tec.openplanner.team/stops/Cwfplac1", "https://tec.openplanner.team/stops/Cwfplac3"], ["https://tec.openplanner.team/stops/LOTsav-1", "https://tec.openplanner.team/stops/LWieg--*"], ["https://tec.openplanner.team/stops/Lgrstou2", "https://tec.openplanner.team/stops/Llgdesa1"], ["https://tec.openplanner.team/stops/Lanadmi2", "https://tec.openplanner.team/stops/Llojeme2"], ["https://tec.openplanner.team/stops/Cmechnd2", "https://tec.openplanner.team/stops/Cmecomb1"], ["https://tec.openplanner.team/stops/X612aca", "https://tec.openplanner.team/stops/X612acb"], ["https://tec.openplanner.team/stops/H4fl113a", "https://tec.openplanner.team/stops/H4wi175a"], ["https://tec.openplanner.team/stops/Cbetrie1", "https://tec.openplanner.team/stops/N137ajb"], ["https://tec.openplanner.team/stops/H1ju120a", "https://tec.openplanner.team/stops/H1mj126b"], ["https://tec.openplanner.team/stops/Csa4mai1", "https://tec.openplanner.team/stops/Csa4mai2"], ["https://tec.openplanner.team/stops/N501gga", "https://tec.openplanner.team/stops/N501ggb"], ["https://tec.openplanner.team/stops/X921afa", "https://tec.openplanner.team/stops/X921agb"], ["https://tec.openplanner.team/stops/H1wz169a", "https://tec.openplanner.team/stops/H3bi117a"], ["https://tec.openplanner.team/stops/LEBdoct1", "https://tec.openplanner.team/stops/LEBdoct2"], ["https://tec.openplanner.team/stops/LmD163-2", "https://tec.openplanner.team/stops/LmD27--2"], ["https://tec.openplanner.team/stops/H4po129a", "https://tec.openplanner.team/stops/H4po129b"], ["https://tec.openplanner.team/stops/Llmlaro1", "https://tec.openplanner.team/stops/Llmlaro2"], ["https://tec.openplanner.team/stops/X756abb", "https://tec.openplanner.team/stops/X756aca"], ["https://tec.openplanner.team/stops/N501gba", "https://tec.openplanner.team/stops/N528ahb"], ["https://tec.openplanner.team/stops/LROchap2", "https://tec.openplanner.team/stops/LwYbrkr1"], ["https://tec.openplanner.team/stops/LAMpirk2", "https://tec.openplanner.team/stops/LAMviam2"], ["https://tec.openplanner.team/stops/X666aeb", "https://tec.openplanner.team/stops/X666aga"], ["https://tec.openplanner.team/stops/Cplelec1", "https://tec.openplanner.team/stops/Crspair2"], ["https://tec.openplanner.team/stops/Bwspcar2", "https://tec.openplanner.team/stops/Bwsppos1"], ["https://tec.openplanner.team/stops/H4ka187a", "https://tec.openplanner.team/stops/H4ty397b"], ["https://tec.openplanner.team/stops/Ladboti2", "https://tec.openplanner.team/stops/Ldicorb1"], ["https://tec.openplanner.team/stops/Lropass2", "https://tec.openplanner.team/stops/Lrovand2"], ["https://tec.openplanner.team/stops/H5rx140b", "https://tec.openplanner.team/stops/H5rx147a"], ["https://tec.openplanner.team/stops/Borbtre1", "https://tec.openplanner.team/stops/Btstbes1"], ["https://tec.openplanner.team/stops/LFreg--1", "https://tec.openplanner.team/stops/LFrfrai2"], ["https://tec.openplanner.team/stops/X615ala", "https://tec.openplanner.team/stops/X615ama"], ["https://tec.openplanner.team/stops/Lbrcard2", "https://tec.openplanner.team/stops/Lbrcygn2"], ["https://tec.openplanner.team/stops/Bvirbru2", "https://tec.openplanner.team/stops/Bvircen1"], ["https://tec.openplanner.team/stops/Bhmmlad2", "https://tec.openplanner.team/stops/Bhmmvdu1"], ["https://tec.openplanner.team/stops/N166aeb", "https://tec.openplanner.team/stops/N167aea"], ["https://tec.openplanner.team/stops/X394aaa", "https://tec.openplanner.team/stops/X394aab"], ["https://tec.openplanner.team/stops/LJedonc1", "https://tec.openplanner.team/stops/LJeeg--1"], ["https://tec.openplanner.team/stops/Crcpla1", "https://tec.openplanner.team/stops/Crcpla2"], ["https://tec.openplanner.team/stops/N506aab", "https://tec.openplanner.team/stops/N506alb"], ["https://tec.openplanner.team/stops/NC14aea", "https://tec.openplanner.team/stops/NC14agb"], ["https://tec.openplanner.team/stops/LbAhull1", "https://tec.openplanner.team/stops/LhBdorf2"], ["https://tec.openplanner.team/stops/Bbgncnd1", "https://tec.openplanner.team/stops/Blig4br2"], ["https://tec.openplanner.team/stops/N501fdb", "https://tec.openplanner.team/stops/N501lwb"], ["https://tec.openplanner.team/stops/X947afb", "https://tec.openplanner.team/stops/X948aka"], ["https://tec.openplanner.team/stops/H5bl120a", "https://tec.openplanner.team/stops/H5bl120b"], ["https://tec.openplanner.team/stops/X729aab", "https://tec.openplanner.team/stops/X729abb"], ["https://tec.openplanner.team/stops/LAWcite1", "https://tec.openplanner.team/stops/LAWcite4"], ["https://tec.openplanner.team/stops/LsVsage2", "https://tec.openplanner.team/stops/LwSschw1"], ["https://tec.openplanner.team/stops/H1qv110a", "https://tec.openplanner.team/stops/H1qv112a"], ["https://tec.openplanner.team/stops/N501dva", "https://tec.openplanner.team/stops/N501eua"], ["https://tec.openplanner.team/stops/LBbhupp1", "https://tec.openplanner.team/stops/LODamco1"], ["https://tec.openplanner.team/stops/N236aeb", "https://tec.openplanner.team/stops/N236ana"], ["https://tec.openplanner.team/stops/X641arb", "https://tec.openplanner.team/stops/X641awb"], ["https://tec.openplanner.team/stops/H1mm127a", "https://tec.openplanner.team/stops/H1vb141b"], ["https://tec.openplanner.team/stops/N532ada", "https://tec.openplanner.team/stops/N532adb"], ["https://tec.openplanner.team/stops/Llmeg--*", "https://tec.openplanner.team/stops/LWelogi1"], ["https://tec.openplanner.team/stops/LrEgend1", "https://tec.openplanner.team/stops/LrEgend2"], ["https://tec.openplanner.team/stops/H1hi122b", "https://tec.openplanner.team/stops/H1hi124a"], ["https://tec.openplanner.team/stops/Bwatcpe1", "https://tec.openplanner.team/stops/Bwatzod1"], ["https://tec.openplanner.team/stops/LWapl--2", "https://tec.openplanner.team/stops/LWapl--4"], ["https://tec.openplanner.team/stops/N331aaa", "https://tec.openplanner.team/stops/N331acb"], ["https://tec.openplanner.team/stops/H2mg150b", "https://tec.openplanner.team/stops/H2se113b"], ["https://tec.openplanner.team/stops/LWaatel1", "https://tec.openplanner.team/stops/LWaccom1"], ["https://tec.openplanner.team/stops/N501bta", "https://tec.openplanner.team/stops/N501bxa"], ["https://tec.openplanner.team/stops/H2sb224b", "https://tec.openplanner.team/stops/H2sb234b"], ["https://tec.openplanner.team/stops/Borbtre2", "https://tec.openplanner.team/stops/Btstche2"], ["https://tec.openplanner.team/stops/Cthha501", "https://tec.openplanner.team/stops/Cthha502"], ["https://tec.openplanner.team/stops/N166adb", "https://tec.openplanner.team/stops/N166aeb"], ["https://tec.openplanner.team/stops/LSomonu2", "https://tec.openplanner.team/stops/LSopost2"], ["https://tec.openplanner.team/stops/LHEbeau2", "https://tec.openplanner.team/stops/LHEches1"], ["https://tec.openplanner.team/stops/N534aya", "https://tec.openplanner.team/stops/N534cbh"], ["https://tec.openplanner.team/stops/X650abb", "https://tec.openplanner.team/stops/X650ajb"], ["https://tec.openplanner.team/stops/N531aaa", "https://tec.openplanner.team/stops/N574aca"], ["https://tec.openplanner.team/stops/LCvneu-2", "https://tec.openplanner.team/stops/LHrcarr1"], ["https://tec.openplanner.team/stops/H2lc168b", "https://tec.openplanner.team/stops/H2lc170b"], ["https://tec.openplanner.team/stops/X650aga", "https://tec.openplanner.team/stops/X650ahb"], ["https://tec.openplanner.team/stops/Lloauto2", "https://tec.openplanner.team/stops/Lloretr1"], ["https://tec.openplanner.team/stops/Bneeace2", "https://tec.openplanner.team/stops/Bneehou1"], ["https://tec.openplanner.team/stops/Lanpast1", "https://tec.openplanner.team/stops/Lanpont1"], ["https://tec.openplanner.team/stops/Llgjenn3", "https://tec.openplanner.team/stops/Llgrame2"], ["https://tec.openplanner.team/stops/LHChomb1", "https://tec.openplanner.team/stops/LHMhof-1"], ["https://tec.openplanner.team/stops/N218acc", "https://tec.openplanner.team/stops/N340aib"], ["https://tec.openplanner.team/stops/Lgrmc--2", "https://tec.openplanner.team/stops/Lgrstou2"], ["https://tec.openplanner.team/stops/H1wa146b", "https://tec.openplanner.team/stops/H1wa158a"], ["https://tec.openplanner.team/stops/LXHeg--2", "https://tec.openplanner.team/stops/LXHmart1"], ["https://tec.openplanner.team/stops/N543bpa", "https://tec.openplanner.team/stops/N543cma"], ["https://tec.openplanner.team/stops/H1ms258a", "https://tec.openplanner.team/stops/H1ms272b"], ["https://tec.openplanner.team/stops/Bixllep2", "https://tec.openplanner.team/stops/Buccdho1"], ["https://tec.openplanner.team/stops/LVnroch2", "https://tec.openplanner.team/stops/LVnrock2"], ["https://tec.openplanner.team/stops/N170aea", "https://tec.openplanner.team/stops/N170aga"], ["https://tec.openplanner.team/stops/H2mo129a", "https://tec.openplanner.team/stops/H2mo143a"], ["https://tec.openplanner.team/stops/Lhrabho1", "https://tec.openplanner.team/stops/Lvitomb1"], ["https://tec.openplanner.team/stops/Cdadest1", "https://tec.openplanner.team/stops/Cdamest2"], ["https://tec.openplanner.team/stops/N229acb", "https://tec.openplanner.team/stops/N229adb"], ["https://tec.openplanner.team/stops/Llmcoop2", "https://tec.openplanner.team/stops/Lprhodi1"], ["https://tec.openplanner.team/stops/Bbaubon1", "https://tec.openplanner.team/stops/Blilgar1"], ["https://tec.openplanner.team/stops/N501amb", "https://tec.openplanner.team/stops/N501apb"], ["https://tec.openplanner.team/stops/X638aab", "https://tec.openplanner.team/stops/X638agb"], ["https://tec.openplanner.team/stops/LCpvill1", "https://tec.openplanner.team/stops/LCpvill2"], ["https://tec.openplanner.team/stops/LdUespe2", "https://tec.openplanner.team/stops/LlAdorf1"], ["https://tec.openplanner.team/stops/N579afa", "https://tec.openplanner.team/stops/N580agb"], ["https://tec.openplanner.team/stops/H1go169a", "https://tec.openplanner.team/stops/H1qy134b"], ["https://tec.openplanner.team/stops/Brsrber1", "https://tec.openplanner.team/stops/Brsrpch2"], ["https://tec.openplanner.team/stops/N201apa", "https://tec.openplanner.team/stops/N211ala"], ["https://tec.openplanner.team/stops/H4an107a", "https://tec.openplanner.team/stops/H4ce103b"], ["https://tec.openplanner.team/stops/N501bdb", "https://tec.openplanner.team/stops/N501fjb"], ["https://tec.openplanner.team/stops/Canjon2", "https://tec.openplanner.team/stops/Canrsta1"], ["https://tec.openplanner.team/stops/N543aab", "https://tec.openplanner.team/stops/N543acb"], ["https://tec.openplanner.team/stops/H4bl105a", "https://tec.openplanner.team/stops/H4bl106a"], ["https://tec.openplanner.team/stops/LAMfrai2", "https://tec.openplanner.team/stops/LAMmc--1"], ["https://tec.openplanner.team/stops/H4fr144b", "https://tec.openplanner.team/stops/H4fr386a"], ["https://tec.openplanner.team/stops/X879ahb", "https://tec.openplanner.team/stops/X879aqb"], ["https://tec.openplanner.team/stops/LGMdrev2", "https://tec.openplanner.team/stops/LGMvoue1"], ["https://tec.openplanner.team/stops/N232bfa", "https://tec.openplanner.team/stops/N232bwb"], ["https://tec.openplanner.team/stops/H5at107b", "https://tec.openplanner.team/stops/H5at114a"], ["https://tec.openplanner.team/stops/H4he102a", "https://tec.openplanner.team/stops/H4he102b"], ["https://tec.openplanner.team/stops/LHXfont2", "https://tec.openplanner.team/stops/LHXn47-4"], ["https://tec.openplanner.team/stops/X730agb", "https://tec.openplanner.team/stops/X731akb"], ["https://tec.openplanner.team/stops/H1hw122b", "https://tec.openplanner.team/stops/H1hw125a"], ["https://tec.openplanner.team/stops/H4co106d", "https://tec.openplanner.team/stops/H4co134a"], ["https://tec.openplanner.team/stops/LCRrape2", "https://tec.openplanner.team/stops/LCRvert1"], ["https://tec.openplanner.team/stops/X782ada", "https://tec.openplanner.team/stops/X782adb"], ["https://tec.openplanner.team/stops/X736aaa", "https://tec.openplanner.team/stops/X937aja"], ["https://tec.openplanner.team/stops/X733aga", "https://tec.openplanner.team/stops/X733aka"], ["https://tec.openplanner.team/stops/H4hx119a", "https://tec.openplanner.team/stops/H4hx119b"], ["https://tec.openplanner.team/stops/NL67aba", "https://tec.openplanner.team/stops/NL72aca"], ["https://tec.openplanner.team/stops/Chppack1", "https://tec.openplanner.team/stops/Cravold1"], ["https://tec.openplanner.team/stops/N222aab", "https://tec.openplanner.team/stops/N222abb"], ["https://tec.openplanner.team/stops/LVIacac1", "https://tec.openplanner.team/stops/LVIsacr2"], ["https://tec.openplanner.team/stops/LMaburg4", "https://tec.openplanner.team/stops/LMalamb4"], ["https://tec.openplanner.team/stops/X945aea", "https://tec.openplanner.team/stops/X946agb"], ["https://tec.openplanner.team/stops/LAUabat2", "https://tec.openplanner.team/stops/LRmhage7"], ["https://tec.openplanner.team/stops/Bgembsg2", "https://tec.openplanner.team/stops/Bgemfbo2"], ["https://tec.openplanner.team/stops/LMHoha-1", "https://tec.openplanner.team/stops/LMHoha-2"], ["https://tec.openplanner.team/stops/Lbrfoid3", "https://tec.openplanner.team/stops/Lbrlama1"], ["https://tec.openplanner.team/stops/Ccogera2", "https://tec.openplanner.team/stops/Ccogrbu2"], ["https://tec.openplanner.team/stops/X740aea", "https://tec.openplanner.team/stops/X740aeb"], ["https://tec.openplanner.team/stops/N423acb", "https://tec.openplanner.team/stops/NH01abc"], ["https://tec.openplanner.team/stops/N513awa", "https://tec.openplanner.team/stops/N513awb"], ["https://tec.openplanner.team/stops/N135alb", "https://tec.openplanner.team/stops/N135aob"], ["https://tec.openplanner.team/stops/LBIfore1", "https://tec.openplanner.team/stops/Lghreyn1"], ["https://tec.openplanner.team/stops/Bbsivil3", "https://tec.openplanner.team/stops/Blilhay1"], ["https://tec.openplanner.team/stops/Cci4bra3", "https://tec.openplanner.team/stops/Ccinali1"], ["https://tec.openplanner.team/stops/LOuhalb2", "https://tec.openplanner.team/stops/LOurena2"], ["https://tec.openplanner.team/stops/N527afb", "https://tec.openplanner.team/stops/N533apa"], ["https://tec.openplanner.team/stops/X760aba", "https://tec.openplanner.team/stops/X786ahb"], ["https://tec.openplanner.team/stops/LESoneu4", "https://tec.openplanner.team/stops/LSdencl*"], ["https://tec.openplanner.team/stops/N505afb", "https://tec.openplanner.team/stops/N505aia"], ["https://tec.openplanner.team/stops/LAnchat1", "https://tec.openplanner.team/stops/LVnroch1"], ["https://tec.openplanner.team/stops/X640aaa", "https://tec.openplanner.team/stops/X640aab"], ["https://tec.openplanner.team/stops/X904aha", "https://tec.openplanner.team/stops/X904ahb"], ["https://tec.openplanner.team/stops/Bwatcbo1", "https://tec.openplanner.team/stops/Bwatcci1"], ["https://tec.openplanner.team/stops/H1eo103a", "https://tec.openplanner.team/stops/H1eo104a"], ["https://tec.openplanner.team/stops/H5at109b", "https://tec.openplanner.team/stops/H5ma185a"], ["https://tec.openplanner.team/stops/Lmocoop2", "https://tec.openplanner.team/stops/Lmopans1"], ["https://tec.openplanner.team/stops/X784aaa", "https://tec.openplanner.team/stops/X784aab"], ["https://tec.openplanner.team/stops/X890aaa", "https://tec.openplanner.team/stops/X891aaa"], ["https://tec.openplanner.team/stops/H1do113a", "https://tec.openplanner.team/stops/H1do125a"], ["https://tec.openplanner.team/stops/Bbxlner1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/LESmagr2", "https://tec.openplanner.team/stops/LESmart2"], ["https://tec.openplanner.team/stops/X261aca", "https://tec.openplanner.team/stops/X261adb"], ["https://tec.openplanner.team/stops/Ldihote2", "https://tec.openplanner.team/stops/Ldipl--2"], ["https://tec.openplanner.team/stops/LTimalv1", "https://tec.openplanner.team/stops/LTimalv2"], ["https://tec.openplanner.team/stops/NH01asb", "https://tec.openplanner.team/stops/NH01atb"], ["https://tec.openplanner.team/stops/N235aha", "https://tec.openplanner.team/stops/N235ahb"], ["https://tec.openplanner.team/stops/X650akb", "https://tec.openplanner.team/stops/X652aaa"], ["https://tec.openplanner.team/stops/LnN02--1", "https://tec.openplanner.team/stops/LnNkirc1"], ["https://tec.openplanner.team/stops/X952aeb", "https://tec.openplanner.team/stops/X953aaa"], ["https://tec.openplanner.team/stops/LeUbell1", "https://tec.openplanner.team/stops/LeUvoul1"], ["https://tec.openplanner.team/stops/Bsenbmc1", "https://tec.openplanner.team/stops/Bsenpbi2"], ["https://tec.openplanner.team/stops/X901bbb", "https://tec.openplanner.team/stops/X901bma"], ["https://tec.openplanner.team/stops/X618aba", "https://tec.openplanner.team/stops/X618ana"], ["https://tec.openplanner.team/stops/Lprchat1", "https://tec.openplanner.team/stops/Lprthie1"], ["https://tec.openplanner.team/stops/Bbryvil2", "https://tec.openplanner.team/stops/Bmarcat1"], ["https://tec.openplanner.team/stops/X801bza", "https://tec.openplanner.team/stops/X801caa"], ["https://tec.openplanner.team/stops/X902apa", "https://tec.openplanner.team/stops/X902bca"], ["https://tec.openplanner.team/stops/LRGgend2", "https://tec.openplanner.team/stops/LRGgend3"], ["https://tec.openplanner.team/stops/LLMcouv1", "https://tec.openplanner.team/stops/LLMfond1"], ["https://tec.openplanner.team/stops/Cfccol2", "https://tec.openplanner.team/stops/Cfcleco1"], ["https://tec.openplanner.team/stops/N524aaa", "https://tec.openplanner.team/stops/N524aab"], ["https://tec.openplanner.team/stops/X801bde", "https://tec.openplanner.team/stops/X801bea"], ["https://tec.openplanner.team/stops/Lmlhaut1", "https://tec.openplanner.team/stops/Lmlmaqu1"], ["https://tec.openplanner.team/stops/Cbwcab2", "https://tec.openplanner.team/stops/Cmqn5912"], ["https://tec.openplanner.team/stops/Cmtmoul1", "https://tec.openplanner.team/stops/Cmtmoul2"], ["https://tec.openplanner.team/stops/H2ha132a", "https://tec.openplanner.team/stops/H2tr247b"], ["https://tec.openplanner.team/stops/X793ana", "https://tec.openplanner.team/stops/X793aoa"], ["https://tec.openplanner.team/stops/H4ty331a", "https://tec.openplanner.team/stops/H4ty331b"], ["https://tec.openplanner.team/stops/H4hg158b", "https://tec.openplanner.team/stops/H4mv189c"], ["https://tec.openplanner.team/stops/Bllnmet1", "https://tec.openplanner.team/stops/Bllnmet2"], ["https://tec.openplanner.team/stops/LkEherg1", "https://tec.openplanner.team/stops/LkEschi1"], ["https://tec.openplanner.team/stops/Cnafont1", "https://tec.openplanner.team/stops/Cnawari2"], ["https://tec.openplanner.team/stops/Lalmitt1", "https://tec.openplanner.team/stops/LXhjupr2"], ["https://tec.openplanner.team/stops/H1sy137a", "https://tec.openplanner.team/stops/H1sy147a"], ["https://tec.openplanner.team/stops/LWaccom1", "https://tec.openplanner.team/stops/LWahetr1"], ["https://tec.openplanner.team/stops/LbUkrin1", "https://tec.openplanner.team/stops/LlSzoll1"], ["https://tec.openplanner.team/stops/Lchacie2", "https://tec.openplanner.team/stops/Lwaeau-2"], ["https://tec.openplanner.team/stops/X696aga", "https://tec.openplanner.team/stops/X696aha"], ["https://tec.openplanner.team/stops/Cbwcab1", "https://tec.openplanner.team/stops/Cbwcab2"], ["https://tec.openplanner.team/stops/H2sb234a", "https://tec.openplanner.team/stops/H2sb236d"], ["https://tec.openplanner.team/stops/X597aob", "https://tec.openplanner.team/stops/X597apb"], ["https://tec.openplanner.team/stops/H1me115a", "https://tec.openplanner.team/stops/H1pe131a"], ["https://tec.openplanner.team/stops/Bnivcol1", "https://tec.openplanner.team/stops/Bnivcol2"], ["https://tec.openplanner.team/stops/X747aaa", "https://tec.openplanner.team/stops/X754axb"], ["https://tec.openplanner.team/stops/H1ms943a", "https://tec.openplanner.team/stops/H1ni322b"], ["https://tec.openplanner.team/stops/N501cab", "https://tec.openplanner.team/stops/N501cba"], ["https://tec.openplanner.team/stops/X757aja", "https://tec.openplanner.team/stops/X757akb"], ["https://tec.openplanner.team/stops/Lhrespe1", "https://tec.openplanner.team/stops/Lhrpwan2"], ["https://tec.openplanner.team/stops/N538awa", "https://tec.openplanner.team/stops/N539aob"], ["https://tec.openplanner.team/stops/Bbeaneu4", "https://tec.openplanner.team/stops/Btlgmee1"], ["https://tec.openplanner.team/stops/X948aja", "https://tec.openplanner.team/stops/X948ajb"], ["https://tec.openplanner.team/stops/Blmlmco2", "https://tec.openplanner.team/stops/Blmlpla1"], ["https://tec.openplanner.team/stops/X796aab", "https://tec.openplanner.team/stops/X796aba"], ["https://tec.openplanner.team/stops/Lmlbaro1", "https://tec.openplanner.team/stops/Lmlpech2"], ["https://tec.openplanner.team/stops/H2ec100b", "https://tec.openplanner.team/stops/H2ec103b"], ["https://tec.openplanner.team/stops/Cchbaza2", "https://tec.openplanner.team/stops/Cchhopi4"], ["https://tec.openplanner.team/stops/X608afa", "https://tec.openplanner.team/stops/X608ava"], ["https://tec.openplanner.team/stops/Cpljonc1", "https://tec.openplanner.team/stops/Cplrmon1"], ["https://tec.openplanner.team/stops/X775ala", "https://tec.openplanner.team/stops/X775alb"], ["https://tec.openplanner.team/stops/Chhthui1", "https://tec.openplanner.team/stops/Chhthui2"], ["https://tec.openplanner.team/stops/Bquecge2", "https://tec.openplanner.team/stops/Bquevel2"], ["https://tec.openplanner.team/stops/H1cu122b", "https://tec.openplanner.team/stops/H1cu127b"], ["https://tec.openplanner.team/stops/X949afb", "https://tec.openplanner.team/stops/X949agb"], ["https://tec.openplanner.team/stops/H4pp123a", "https://tec.openplanner.team/stops/H4pp123b"], ["https://tec.openplanner.team/stops/H4tp146b", "https://tec.openplanner.team/stops/H4wp150b"], ["https://tec.openplanner.team/stops/H1bx105a", "https://tec.openplanner.team/stops/H1bx105b"], ["https://tec.openplanner.team/stops/Cprlpre2", "https://tec.openplanner.team/stops/NC44aca"], ["https://tec.openplanner.team/stops/H1lb136a", "https://tec.openplanner.team/stops/H1lb152b"], ["https://tec.openplanner.team/stops/X834aba", "https://tec.openplanner.team/stops/X834acb"], ["https://tec.openplanner.team/stops/LkOgren1", "https://tec.openplanner.team/stops/LkOzoll2"], ["https://tec.openplanner.team/stops/Cmlbuis3", "https://tec.openplanner.team/stops/Cmlcazi2"], ["https://tec.openplanner.team/stops/Livroch1", "https://tec.openplanner.team/stops/LRachen1"], ["https://tec.openplanner.team/stops/LeUdepo1", "https://tec.openplanner.team/stops/LeUrsi-*"], ["https://tec.openplanner.team/stops/N518aaa", "https://tec.openplanner.team/stops/N518aab"], ["https://tec.openplanner.team/stops/Lsmdepo1", "https://tec.openplanner.team/stops/Lvecrot2"], ["https://tec.openplanner.team/stops/LAVeg--1", "https://tec.openplanner.team/stops/LAVpequ1"], ["https://tec.openplanner.team/stops/X762aab", "https://tec.openplanner.team/stops/X762abb"], ["https://tec.openplanner.team/stops/N357acb", "https://tec.openplanner.team/stops/N357aeb"], ["https://tec.openplanner.team/stops/Cgplutt1", "https://tec.openplanner.team/stops/Cgplutt2"], ["https://tec.openplanner.team/stops/LrEdic11", "https://tec.openplanner.team/stops/LrEmeil1"], ["https://tec.openplanner.team/stops/N109aca", "https://tec.openplanner.team/stops/N109adc"], ["https://tec.openplanner.team/stops/X917ahb", "https://tec.openplanner.team/stops/X917aka"], ["https://tec.openplanner.team/stops/Lrocort2", "https://tec.openplanner.team/stops/Lroeg--4"], ["https://tec.openplanner.team/stops/H1ls130a", "https://tec.openplanner.team/stops/H1me116a"], ["https://tec.openplanner.team/stops/Cmlbruy2", "https://tec.openplanner.team/stops/Cmlrbru2"], ["https://tec.openplanner.team/stops/N508ama", "https://tec.openplanner.team/stops/N509aqb"], ["https://tec.openplanner.team/stops/H4ta116b", "https://tec.openplanner.team/stops/H4ta119b"], ["https://tec.openplanner.team/stops/X715aca", "https://tec.openplanner.team/stops/X715aea"], ["https://tec.openplanner.team/stops/X793aaa", "https://tec.openplanner.team/stops/X793acb"], ["https://tec.openplanner.team/stops/H1ho143b", "https://tec.openplanner.team/stops/H1ho143c"], ["https://tec.openplanner.team/stops/Lmlcher1", "https://tec.openplanner.team/stops/Lmlmich1"], ["https://tec.openplanner.team/stops/LrEkreu1", "https://tec.openplanner.team/stops/LrEkreu2"], ["https://tec.openplanner.team/stops/Ladppir1", "https://tec.openplanner.team/stops/Ladthom1"], ["https://tec.openplanner.team/stops/H2hg152a", "https://tec.openplanner.team/stops/H2hg160a"], ["https://tec.openplanner.team/stops/H1ba104a", "https://tec.openplanner.team/stops/H1ba119a"], ["https://tec.openplanner.team/stops/LVSeg--1", "https://tec.openplanner.team/stops/LVSpn--1"], ["https://tec.openplanner.team/stops/LHEclef1", "https://tec.openplanner.team/stops/LHEzoni2"], ["https://tec.openplanner.team/stops/X908abb", "https://tec.openplanner.team/stops/X908aca"], ["https://tec.openplanner.team/stops/H1pa105b", "https://tec.openplanner.team/stops/H1qu119a"], ["https://tec.openplanner.team/stops/LBJapol1", "https://tec.openplanner.team/stops/LBJplan1"], ["https://tec.openplanner.team/stops/NL77afa", "https://tec.openplanner.team/stops/NL77afb"], ["https://tec.openplanner.team/stops/Lvcecol1", "https://tec.openplanner.team/stops/Lvcfogu1"], ["https://tec.openplanner.team/stops/LlOdrei2", "https://tec.openplanner.team/stops/LsVfeye2"], ["https://tec.openplanner.team/stops/X801awa", "https://tec.openplanner.team/stops/X801axb"], ["https://tec.openplanner.team/stops/N534brb", "https://tec.openplanner.team/stops/N534btb"], ["https://tec.openplanner.team/stops/NL75aab", "https://tec.openplanner.team/stops/NL75abb"], ["https://tec.openplanner.team/stops/LHecime2", "https://tec.openplanner.team/stops/Lheelva2"], ["https://tec.openplanner.team/stops/LNCecdo1", "https://tec.openplanner.team/stops/LNCgene1"], ["https://tec.openplanner.team/stops/Lheneuv2", "https://tec.openplanner.team/stops/Lheneuv3"], ["https://tec.openplanner.team/stops/H1ms307a", "https://tec.openplanner.team/stops/H1ms901a"], ["https://tec.openplanner.team/stops/N106afb", "https://tec.openplanner.team/stops/N106ahb"], ["https://tec.openplanner.team/stops/H2go119b", "https://tec.openplanner.team/stops/H2go120a"], ["https://tec.openplanner.team/stops/N532aib", "https://tec.openplanner.team/stops/N532aka"], ["https://tec.openplanner.team/stops/LBXhacb1", "https://tec.openplanner.team/stops/LMovich1"], ["https://tec.openplanner.team/stops/N505adb", "https://tec.openplanner.team/stops/N505ana"], ["https://tec.openplanner.team/stops/Csepier1", "https://tec.openplanner.team/stops/Csequew1"], ["https://tec.openplanner.team/stops/X359aia", "https://tec.openplanner.team/stops/X359aka"], ["https://tec.openplanner.team/stops/Bnivlai2", "https://tec.openplanner.team/stops/Bnivpve1"], ["https://tec.openplanner.team/stops/X763agb", "https://tec.openplanner.team/stops/X786ajb"], ["https://tec.openplanner.team/stops/Lemjacq2", "https://tec.openplanner.team/stops/Lemsely1"], ["https://tec.openplanner.team/stops/X748aaa", "https://tec.openplanner.team/stops/X769abb"], ["https://tec.openplanner.team/stops/X809acb", "https://tec.openplanner.team/stops/X809ada"], ["https://tec.openplanner.team/stops/LHEgare2", "https://tec.openplanner.team/stops/LHEhv--2"], ["https://tec.openplanner.team/stops/Bmsgfon2", "https://tec.openplanner.team/stops/Bmsgrco2"], ["https://tec.openplanner.team/stops/LlA43--1", "https://tec.openplanner.team/stops/LlA43--2"], ["https://tec.openplanner.team/stops/N539ada", "https://tec.openplanner.team/stops/N539aib"], ["https://tec.openplanner.team/stops/X879aab", "https://tec.openplanner.team/stops/X879abb"], ["https://tec.openplanner.team/stops/Cctvict3", "https://tec.openplanner.team/stops/Cctvill1"], ["https://tec.openplanner.team/stops/H4ft135d", "https://tec.openplanner.team/stops/H4ta118b"], ["https://tec.openplanner.team/stops/N557aib", "https://tec.openplanner.team/stops/N562bhb"], ["https://tec.openplanner.team/stops/X720aab", "https://tec.openplanner.team/stops/X721arb"], ["https://tec.openplanner.team/stops/X390ahb", "https://tec.openplanner.team/stops/X390apb"], ["https://tec.openplanner.team/stops/Lghpara1", "https://tec.openplanner.team/stops/Lghraul1"], ["https://tec.openplanner.team/stops/N351ajc", "https://tec.openplanner.team/stops/N351asb"], ["https://tec.openplanner.team/stops/Llgcadr3", "https://tec.openplanner.team/stops/Llgelis1"], ["https://tec.openplanner.team/stops/Blilgar1", "https://tec.openplanner.team/stops/Bnivfdu1"], ["https://tec.openplanner.team/stops/X607aaa", "https://tec.openplanner.team/stops/X608aqa"], ["https://tec.openplanner.team/stops/Ckevela1", "https://tec.openplanner.team/stops/Ctaprai3"], ["https://tec.openplanner.team/stops/LBQmaye2", "https://tec.openplanner.team/stops/X223aca"], ["https://tec.openplanner.team/stops/NC14ana", "https://tec.openplanner.team/stops/NC24aga"], ["https://tec.openplanner.team/stops/N501haa", "https://tec.openplanner.team/stops/N501lzb"], ["https://tec.openplanner.team/stops/H4ve131b", "https://tec.openplanner.team/stops/H4ve132b"], ["https://tec.openplanner.team/stops/H1so131a", "https://tec.openplanner.team/stops/H1so142b"], ["https://tec.openplanner.team/stops/Bvirbie3", "https://tec.openplanner.team/stops/Bvirbie4"], ["https://tec.openplanner.team/stops/Cchcase4", "https://tec.openplanner.team/stops/Cchhopi1"], ["https://tec.openplanner.team/stops/LLNcime1", "https://tec.openplanner.team/stops/LLNogne1"], ["https://tec.openplanner.team/stops/Cmychap1", "https://tec.openplanner.team/stops/Cmychap2"], ["https://tec.openplanner.team/stops/LBIrout1", "https://tec.openplanner.team/stops/LFOmc--2"], ["https://tec.openplanner.team/stops/LBNhegg1", "https://tec.openplanner.team/stops/LBNplei2"], ["https://tec.openplanner.team/stops/N151aja", "https://tec.openplanner.team/stops/N151aka"], ["https://tec.openplanner.team/stops/X650aia", "https://tec.openplanner.team/stops/X650aka"], ["https://tec.openplanner.team/stops/H4ht172b", "https://tec.openplanner.team/stops/H4la198a"], ["https://tec.openplanner.team/stops/Llglibo3", "https://tec.openplanner.team/stops/Llglibo4"], ["https://tec.openplanner.team/stops/H2ll187a", "https://tec.openplanner.team/stops/H2ll187c"], ["https://tec.openplanner.team/stops/X615awb", "https://tec.openplanner.team/stops/X615bba"], ["https://tec.openplanner.team/stops/X993aaa", "https://tec.openplanner.team/stops/X993aab"], ["https://tec.openplanner.team/stops/X820aea", "https://tec.openplanner.team/stops/X820ama"], ["https://tec.openplanner.team/stops/LSorobe1", "https://tec.openplanner.team/stops/LSorobe2"], ["https://tec.openplanner.team/stops/Bhencha2", "https://tec.openplanner.team/stops/Bhenmal2"], ["https://tec.openplanner.team/stops/Lemambi2", "https://tec.openplanner.team/stops/Lemlacr2"], ["https://tec.openplanner.team/stops/Bbougbl2", "https://tec.openplanner.team/stops/Btannda2"], ["https://tec.openplanner.team/stops/Brixeur5", "https://tec.openplanner.team/stops/Brixrmo1"], ["https://tec.openplanner.team/stops/N539ara", "https://tec.openplanner.team/stops/N539arb"], ["https://tec.openplanner.team/stops/H4ch115b", "https://tec.openplanner.team/stops/H4ty353b"], ["https://tec.openplanner.team/stops/N542agb", "https://tec.openplanner.team/stops/N542aob"], ["https://tec.openplanner.team/stops/Lfhrogn1", "https://tec.openplanner.team/stops/Lmlguis1"], ["https://tec.openplanner.team/stops/X649aba", "https://tec.openplanner.team/stops/X649ada"], ["https://tec.openplanner.team/stops/NL77aaa", "https://tec.openplanner.team/stops/NL77adb"], ["https://tec.openplanner.team/stops/X602aka", "https://tec.openplanner.team/stops/X602alb"], ["https://tec.openplanner.team/stops/H1wa138b", "https://tec.openplanner.team/stops/H1wa158b"], ["https://tec.openplanner.team/stops/Lmnhorl1", "https://tec.openplanner.team/stops/Lmntast1"], ["https://tec.openplanner.team/stops/Bnilegl2", "https://tec.openplanner.team/stops/Bnilpco2"], ["https://tec.openplanner.team/stops/X805ajb", "https://tec.openplanner.team/stops/X833aaa"], ["https://tec.openplanner.team/stops/N141aba", "https://tec.openplanner.team/stops/N141adb"], ["https://tec.openplanner.team/stops/LTRcarr2", "https://tec.openplanner.team/stops/LTRryta2"], ["https://tec.openplanner.team/stops/N519amb", "https://tec.openplanner.team/stops/N520aeb"], ["https://tec.openplanner.team/stops/X773aca", "https://tec.openplanner.team/stops/X773ada"], ["https://tec.openplanner.team/stops/Cchoues2", "https://tec.openplanner.team/stops/Cchoues4"], ["https://tec.openplanner.team/stops/LaMmark2", "https://tec.openplanner.team/stops/LaMpost2"], ["https://tec.openplanner.team/stops/N357adb", "https://tec.openplanner.team/stops/N357afb"], ["https://tec.openplanner.team/stops/N501lxa", "https://tec.openplanner.team/stops/N501lxb"], ["https://tec.openplanner.team/stops/Lhrmine1", "https://tec.openplanner.team/stops/Lhrpepi2"], ["https://tec.openplanner.team/stops/LESathe1", "https://tec.openplanner.team/stops/LESecco2"], ["https://tec.openplanner.team/stops/H1qu102b", "https://tec.openplanner.team/stops/H1qu105a"], ["https://tec.openplanner.team/stops/Ccppn1", "https://tec.openplanner.team/stops/H2ch121b"], ["https://tec.openplanner.team/stops/NL76aea", "https://tec.openplanner.team/stops/NL76agd"], ["https://tec.openplanner.team/stops/X758aca", "https://tec.openplanner.team/stops/X758adb"], ["https://tec.openplanner.team/stops/LSGsurf1", "https://tec.openplanner.team/stops/LSkoran1"], ["https://tec.openplanner.team/stops/Llgbois2", "https://tec.openplanner.team/stops/Llgnaes1"], ["https://tec.openplanner.team/stops/X947ada", "https://tec.openplanner.team/stops/X947adb"], ["https://tec.openplanner.team/stops/LEBeg--2", "https://tec.openplanner.team/stops/LWOwonc2"], ["https://tec.openplanner.team/stops/H1he110b", "https://tec.openplanner.team/stops/H4be110a"], ["https://tec.openplanner.team/stops/Lhrdron1", "https://tec.openplanner.team/stops/Lhrthie2"], ["https://tec.openplanner.team/stops/LRuegli2", "https://tec.openplanner.team/stops/LSerout1"], ["https://tec.openplanner.team/stops/N118agb", "https://tec.openplanner.team/stops/N118aha"], ["https://tec.openplanner.team/stops/Bwlhpec2", "https://tec.openplanner.team/stops/Bwlhpmt4"], ["https://tec.openplanner.team/stops/N203abb", "https://tec.openplanner.team/stops/N560aca"], ["https://tec.openplanner.team/stops/Bpiesta2", "https://tec.openplanner.team/stops/Bzluegl1"], ["https://tec.openplanner.team/stops/X917acb", "https://tec.openplanner.team/stops/X917adb"], ["https://tec.openplanner.team/stops/N349agb", "https://tec.openplanner.team/stops/X398afa"], ["https://tec.openplanner.team/stops/H1mm128a", "https://tec.openplanner.team/stops/H1mm131b"], ["https://tec.openplanner.team/stops/Brsrabe2", "https://tec.openplanner.team/stops/Brsrpri1"], ["https://tec.openplanner.team/stops/Lprmana2", "https://tec.openplanner.team/stops/Lprspra1"], ["https://tec.openplanner.team/stops/N512akb", "https://tec.openplanner.team/stops/N512aua"], ["https://tec.openplanner.team/stops/Cgregli2", "https://tec.openplanner.team/stops/Cgrsaul2"], ["https://tec.openplanner.team/stops/NL57aeb", "https://tec.openplanner.team/stops/NL68abb"], ["https://tec.openplanner.team/stops/LBBcarr2", "https://tec.openplanner.team/stops/NL35aga"], ["https://tec.openplanner.team/stops/Cjucpui1", "https://tec.openplanner.team/stops/Cjupuis1"], ["https://tec.openplanner.team/stops/X804ala", "https://tec.openplanner.team/stops/X804alb"], ["https://tec.openplanner.team/stops/X761adb", "https://tec.openplanner.team/stops/X762aga"], ["https://tec.openplanner.team/stops/N212adb", "https://tec.openplanner.team/stops/N213aba"], ["https://tec.openplanner.team/stops/N552adb", "https://tec.openplanner.team/stops/N577aca"], ["https://tec.openplanner.team/stops/Lmoboeu2", "https://tec.openplanner.team/stops/Lmoboeu3"], ["https://tec.openplanner.team/stops/N533aab", "https://tec.openplanner.team/stops/N533afa"], ["https://tec.openplanner.team/stops/H4ga147b", "https://tec.openplanner.team/stops/H4ga162a"], ["https://tec.openplanner.team/stops/LeLkalt1", "https://tec.openplanner.team/stops/LeLkalt2"], ["https://tec.openplanner.team/stops/N538ada", "https://tec.openplanner.team/stops/N539aja"], ["https://tec.openplanner.team/stops/LkEl3252", "https://tec.openplanner.team/stops/LMsviad1"], ["https://tec.openplanner.team/stops/X609aga", "https://tec.openplanner.team/stops/X609apa"], ["https://tec.openplanner.team/stops/X982caa", "https://tec.openplanner.team/stops/X982cfa"], ["https://tec.openplanner.team/stops/Bnivphs1", "https://tec.openplanner.team/stops/Bnivphs2"], ["https://tec.openplanner.team/stops/N503ajb", "https://tec.openplanner.team/stops/N503ajc"], ["https://tec.openplanner.team/stops/Cmesafi2", "https://tec.openplanner.team/stops/Csabrun1"], ["https://tec.openplanner.team/stops/LAMceri2", "https://tec.openplanner.team/stops/LAMvert1"], ["https://tec.openplanner.team/stops/N542aoa", "https://tec.openplanner.team/stops/N542aob"], ["https://tec.openplanner.team/stops/Llgjose1", "https://tec.openplanner.team/stops/Llglys-1"], ["https://tec.openplanner.team/stops/H4ty291a", "https://tec.openplanner.team/stops/H4ty291c"], ["https://tec.openplanner.team/stops/N232aea", "https://tec.openplanner.team/stops/N232aha"], ["https://tec.openplanner.team/stops/N521aib", "https://tec.openplanner.team/stops/N521akb"], ["https://tec.openplanner.team/stops/Ccohotv2", "https://tec.openplanner.team/stops/Ccotemp2"], ["https://tec.openplanner.team/stops/N540acb", "https://tec.openplanner.team/stops/N540aha"], ["https://tec.openplanner.team/stops/LHGbeur1", "https://tec.openplanner.team/stops/LHGtron1"], ["https://tec.openplanner.team/stops/N539bea", "https://tec.openplanner.team/stops/N539beb"], ["https://tec.openplanner.team/stops/X398ada", "https://tec.openplanner.team/stops/X398aia"], ["https://tec.openplanner.team/stops/CMsartc1", "https://tec.openplanner.team/stops/CMsartc2"], ["https://tec.openplanner.team/stops/N513awb", "https://tec.openplanner.team/stops/N521adb"], ["https://tec.openplanner.team/stops/Bmrllgr2", "https://tec.openplanner.team/stops/Bpieh172"], ["https://tec.openplanner.team/stops/LToluik1", "https://tec.openplanner.team/stops/LTotrui1"], ["https://tec.openplanner.team/stops/H1et101b", "https://tec.openplanner.team/stops/H1ju121a"], ["https://tec.openplanner.team/stops/X750bmb", "https://tec.openplanner.team/stops/X784aab"], ["https://tec.openplanner.team/stops/N211afa", "https://tec.openplanner.team/stops/N219ada"], ["https://tec.openplanner.team/stops/X314aaa", "https://tec.openplanner.team/stops/X857aaa"], ["https://tec.openplanner.team/stops/LGAbois2", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://tec.openplanner.team/stops/Lligare2", "https://tec.openplanner.team/stops/Llithon2"], ["https://tec.openplanner.team/stops/N539ajb", "https://tec.openplanner.team/stops/N542akb"], ["https://tec.openplanner.team/stops/H1an102a", "https://tec.openplanner.team/stops/H1an103b"], ["https://tec.openplanner.team/stops/X601cca", "https://tec.openplanner.team/stops/X601ccb"], ["https://tec.openplanner.team/stops/X780aia", "https://tec.openplanner.team/stops/X780ajb"], ["https://tec.openplanner.team/stops/LNAbras3", "https://tec.openplanner.team/stops/LNAbras5"], ["https://tec.openplanner.team/stops/X811aka", "https://tec.openplanner.team/stops/X811ala"], ["https://tec.openplanner.team/stops/Cctbois2", "https://tec.openplanner.team/stops/Cctlimi1"], ["https://tec.openplanner.team/stops/X801abc", "https://tec.openplanner.team/stops/X801amb"], ["https://tec.openplanner.team/stops/Llgbour2", "https://tec.openplanner.team/stops/Llgcbat2"], ["https://tec.openplanner.team/stops/Bchgegl1", "https://tec.openplanner.team/stops/Bchgvil1"], ["https://tec.openplanner.team/stops/N501mya", "https://tec.openplanner.team/stops/N501myb"], ["https://tec.openplanner.team/stops/Bbiecim2", "https://tec.openplanner.team/stops/Bbiecoc1"], ["https://tec.openplanner.team/stops/H2ma204a", "https://tec.openplanner.team/stops/H2ma208b"], ["https://tec.openplanner.team/stops/H4gu108b", "https://tec.openplanner.team/stops/H4we134a"], ["https://tec.openplanner.team/stops/N531ajb", "https://tec.openplanner.team/stops/N534bwa"], ["https://tec.openplanner.team/stops/H4ch119a", "https://tec.openplanner.team/stops/H4ty299f"], ["https://tec.openplanner.team/stops/Llgbatt1", "https://tec.openplanner.team/stops/Llgelis1"], ["https://tec.openplanner.team/stops/H1as101b", "https://tec.openplanner.team/stops/H1as103d"], ["https://tec.openplanner.team/stops/Bmargve1", "https://tec.openplanner.team/stops/Bmarpla1"], ["https://tec.openplanner.team/stops/Bbchsac1", "https://tec.openplanner.team/stops/Bhtibru2"], ["https://tec.openplanner.team/stops/Lvepala5", "https://tec.openplanner.team/stops/Lverain1"], ["https://tec.openplanner.team/stops/H1nv324b", "https://tec.openplanner.team/stops/H1nv325b"], ["https://tec.openplanner.team/stops/LBgcroi3", "https://tec.openplanner.team/stops/LBgcroi5"], ["https://tec.openplanner.team/stops/Bsomtnd2", "https://tec.openplanner.team/stops/N584aka"], ["https://tec.openplanner.team/stops/LHGbeur1", "https://tec.openplanner.team/stops/LVllieg2"], ["https://tec.openplanner.team/stops/N501bpb", "https://tec.openplanner.team/stops/N501jma"], ["https://tec.openplanner.team/stops/Cglbras2", "https://tec.openplanner.team/stops/Cglfrom1"], ["https://tec.openplanner.team/stops/N201aka", "https://tec.openplanner.team/stops/N214abb"], ["https://tec.openplanner.team/stops/Cgregli2", "https://tec.openplanner.team/stops/NC14aib"], ["https://tec.openplanner.team/stops/X739aha", "https://tec.openplanner.team/stops/X911abb"], ["https://tec.openplanner.team/stops/H4be145b", "https://tec.openplanner.team/stops/H5bl122b"], ["https://tec.openplanner.team/stops/H4ho119a", "https://tec.openplanner.team/stops/H4wn127a"], ["https://tec.openplanner.team/stops/H4bo178b", "https://tec.openplanner.team/stops/H4bo179b"], ["https://tec.openplanner.team/stops/Cbmplac1", "https://tec.openplanner.team/stops/H1tt106b"], ["https://tec.openplanner.team/stops/Bhanmou1", "https://tec.openplanner.team/stops/Bhanwav1"], ["https://tec.openplanner.team/stops/LBSkann1", "https://tec.openplanner.team/stops/LBSneuv1"], ["https://tec.openplanner.team/stops/X615aqb", "https://tec.openplanner.team/stops/X615asb"], ["https://tec.openplanner.team/stops/N149ada", "https://tec.openplanner.team/stops/N149agb"], ["https://tec.openplanner.team/stops/N141aeb", "https://tec.openplanner.team/stops/N141afa"], ["https://tec.openplanner.team/stops/N544agb", "https://tec.openplanner.team/stops/N547abb"], ["https://tec.openplanner.team/stops/LNCchau1", "https://tec.openplanner.team/stops/LNCtour1"], ["https://tec.openplanner.team/stops/H4ty294a", "https://tec.openplanner.team/stops/H4ty346a"], ["https://tec.openplanner.team/stops/Lselimi1", "https://tec.openplanner.team/stops/Lsestap3"], ["https://tec.openplanner.team/stops/N141ala", "https://tec.openplanner.team/stops/N146aba"], ["https://tec.openplanner.team/stops/N353aab", "https://tec.openplanner.team/stops/N353aeb"], ["https://tec.openplanner.team/stops/N161afa", "https://tec.openplanner.team/stops/N162afb"], ["https://tec.openplanner.team/stops/H4ce107a", "https://tec.openplanner.team/stops/H4or113a"], ["https://tec.openplanner.team/stops/LHDpota2", "https://tec.openplanner.team/stops/LLmetat1"], ["https://tec.openplanner.team/stops/X658agc", "https://tec.openplanner.team/stops/X658aha"], ["https://tec.openplanner.team/stops/X625aba", "https://tec.openplanner.team/stops/X625afb"], ["https://tec.openplanner.team/stops/H1ms272a", "https://tec.openplanner.team/stops/H1ss349b"], ["https://tec.openplanner.team/stops/H1ob328b", "https://tec.openplanner.team/stops/H1sd346a"], ["https://tec.openplanner.team/stops/Brsg7fo1", "https://tec.openplanner.team/stops/Brsgfon2"], ["https://tec.openplanner.team/stops/X912afa", "https://tec.openplanner.team/stops/X912aha"], ["https://tec.openplanner.team/stops/H1cu126a", "https://tec.openplanner.team/stops/H1je218b"], ["https://tec.openplanner.team/stops/X729aca", "https://tec.openplanner.team/stops/X748abb"], ["https://tec.openplanner.team/stops/Lhubouq2", "https://tec.openplanner.team/stops/Lhucime1"], ["https://tec.openplanner.team/stops/Lcefoxh1", "https://tec.openplanner.team/stops/Lcehipp2"], ["https://tec.openplanner.team/stops/Bnodcab1", "https://tec.openplanner.team/stops/Bnodcab2"], ["https://tec.openplanner.team/stops/LLrelec1", "https://tec.openplanner.team/stops/LLrelec2"], ["https://tec.openplanner.team/stops/Bchgbel1", "https://tec.openplanner.team/stops/Bchgpap1"], ["https://tec.openplanner.team/stops/LFEland1", "https://tec.openplanner.team/stops/X597agb"], ["https://tec.openplanner.team/stops/X611aba", "https://tec.openplanner.team/stops/X645aaa"], ["https://tec.openplanner.team/stops/N501htb", "https://tec.openplanner.team/stops/N501iub"], ["https://tec.openplanner.team/stops/LBMecol2", "https://tec.openplanner.team/stops/X982bma"], ["https://tec.openplanner.team/stops/Cbfcham1", "https://tec.openplanner.team/stops/Cbfpoti1"], ["https://tec.openplanner.team/stops/N222aea", "https://tec.openplanner.team/stops/N222aeb"], ["https://tec.openplanner.team/stops/LmD27--1", "https://tec.openplanner.team/stops/LmDhoch4"], ["https://tec.openplanner.team/stops/Lmojoan1", "https://tec.openplanner.team/stops/Lmopans1"], ["https://tec.openplanner.team/stops/H4ob110a", "https://tec.openplanner.team/stops/H4ob110b"], ["https://tec.openplanner.team/stops/LARgare4", "https://tec.openplanner.team/stops/LHAdeho1"], ["https://tec.openplanner.team/stops/X908aja", "https://tec.openplanner.team/stops/X908amb"], ["https://tec.openplanner.team/stops/X660abb", "https://tec.openplanner.team/stops/X660acb"], ["https://tec.openplanner.team/stops/Bsmgegl1", "https://tec.openplanner.team/stops/Bsmgpla1"], ["https://tec.openplanner.team/stops/Ljeblum1", "https://tec.openplanner.team/stops/Ljeespe1"], ["https://tec.openplanner.team/stops/Bwatceg1", "https://tec.openplanner.team/stops/Bwatcpl2"], ["https://tec.openplanner.team/stops/X608apa", "https://tec.openplanner.team/stops/X608aua"], ["https://tec.openplanner.team/stops/H5at122a", "https://tec.openplanner.team/stops/H5ma185b"], ["https://tec.openplanner.team/stops/Bottcli2", "https://tec.openplanner.team/stops/Bottegl1"], ["https://tec.openplanner.team/stops/N525aib", "https://tec.openplanner.team/stops/N525bab"], ["https://tec.openplanner.team/stops/LMIeg--1", "https://tec.openplanner.team/stops/LMIeg--2"], ["https://tec.openplanner.team/stops/H1gr112a", "https://tec.openplanner.team/stops/H1gr116b"], ["https://tec.openplanner.team/stops/N521aqa", "https://tec.openplanner.team/stops/N521arb"], ["https://tec.openplanner.team/stops/LVncarr2", "https://tec.openplanner.team/stops/LVnourt3"], ["https://tec.openplanner.team/stops/LhZkape2", "https://tec.openplanner.team/stops/LlSbuch1"], ["https://tec.openplanner.team/stops/LAUhost2", "https://tec.openplanner.team/stops/LAUpind1"], ["https://tec.openplanner.team/stops/LElcent2", "https://tec.openplanner.team/stops/LElverl1"], ["https://tec.openplanner.team/stops/Ctabaty2", "https://tec.openplanner.team/stops/Ctapn2"], ["https://tec.openplanner.team/stops/LbOhoff1", "https://tec.openplanner.team/stops/LbOhoff2"], ["https://tec.openplanner.team/stops/N230ada", "https://tec.openplanner.team/stops/N230aeb"], ["https://tec.openplanner.team/stops/NR10aab", "https://tec.openplanner.team/stops/NR21aeb"], ["https://tec.openplanner.team/stops/X753aba", "https://tec.openplanner.team/stops/X753abb"], ["https://tec.openplanner.team/stops/LAncoup1", "https://tec.openplanner.team/stops/LAncoup2"], ["https://tec.openplanner.team/stops/Cmapeet1", "https://tec.openplanner.team/stops/Cmapeet2"], ["https://tec.openplanner.team/stops/LPoneuf1", "https://tec.openplanner.team/stops/LSZdepo1"], ["https://tec.openplanner.team/stops/LETfort2", "https://tec.openplanner.team/stops/LETfort3"], ["https://tec.openplanner.team/stops/LHHtill2", "https://tec.openplanner.team/stops/LVTeg--1"], ["https://tec.openplanner.team/stops/X723aba", "https://tec.openplanner.team/stops/X723aca"], ["https://tec.openplanner.team/stops/N509aob", "https://tec.openplanner.team/stops/N509asb"], ["https://tec.openplanner.team/stops/Lvc4bra2", "https://tec.openplanner.team/stops/Lvccime2"], ["https://tec.openplanner.team/stops/X858aba", "https://tec.openplanner.team/stops/X858aga"], ["https://tec.openplanner.team/stops/Cbecarr2", "https://tec.openplanner.team/stops/N162afb"], ["https://tec.openplanner.team/stops/Crebrux2", "https://tec.openplanner.team/stops/Creluth2"], ["https://tec.openplanner.team/stops/H1ro134a", "https://tec.openplanner.team/stops/H1ro139b"], ["https://tec.openplanner.team/stops/Bboupde2", "https://tec.openplanner.team/stops/Bcsemar2"], ["https://tec.openplanner.team/stops/Bnivrsa1", "https://tec.openplanner.team/stops/Bnivsba1"], ["https://tec.openplanner.team/stops/X664aja", "https://tec.openplanner.team/stops/X729aca"], ["https://tec.openplanner.team/stops/N387aaa", "https://tec.openplanner.team/stops/N387aba"], ["https://tec.openplanner.team/stops/Lflgare2", "https://tec.openplanner.team/stops/Lflterm1"], ["https://tec.openplanner.team/stops/H1gh149a", "https://tec.openplanner.team/stops/H1gh365a"], ["https://tec.openplanner.team/stops/H4mv193b", "https://tec.openplanner.team/stops/H4va234b"], ["https://tec.openplanner.team/stops/Cgocnor4", "https://tec.openplanner.team/stops/Cjuapca2"], ["https://tec.openplanner.team/stops/LrUlasc2", "https://tec.openplanner.team/stops/LrUwenz2"], ["https://tec.openplanner.team/stops/H1mb127b", "https://tec.openplanner.team/stops/H1mb128b"], ["https://tec.openplanner.team/stops/H2ec108a", "https://tec.openplanner.team/stops/H2ec110a"], ["https://tec.openplanner.team/stops/X941aaa", "https://tec.openplanner.team/stops/X948ata"], ["https://tec.openplanner.team/stops/H1ju119a", "https://tec.openplanner.team/stops/H1mj126a"], ["https://tec.openplanner.team/stops/Llgjoie3", "https://tec.openplanner.team/stops/Llgmako2"], ["https://tec.openplanner.team/stops/X741aab", "https://tec.openplanner.team/stops/X741afa"], ["https://tec.openplanner.team/stops/Cmmecol1", "https://tec.openplanner.team/stops/Cmmegli3"], ["https://tec.openplanner.team/stops/X793aeb", "https://tec.openplanner.team/stops/X793afc"], ["https://tec.openplanner.team/stops/H4mo193b", "https://tec.openplanner.team/stops/H4mo206b"], ["https://tec.openplanner.team/stops/X615alb", "https://tec.openplanner.team/stops/X615amb"], ["https://tec.openplanner.team/stops/LGLchap1", "https://tec.openplanner.team/stops/LGLgare*"], ["https://tec.openplanner.team/stops/H1pd146a", "https://tec.openplanner.team/stops/H1wg127a"], ["https://tec.openplanner.team/stops/N236afb", "https://tec.openplanner.team/stops/N241aca"], ["https://tec.openplanner.team/stops/H2pr114a", "https://tec.openplanner.team/stops/H2pr119b"], ["https://tec.openplanner.team/stops/LLteg--2", "https://tec.openplanner.team/stops/NL57ajb"], ["https://tec.openplanner.team/stops/Crofrio1", "https://tec.openplanner.team/stops/Croplom2"], ["https://tec.openplanner.team/stops/X995aaa", "https://tec.openplanner.team/stops/X995abb"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N331agb"], ["https://tec.openplanner.team/stops/X780agb", "https://tec.openplanner.team/stops/X780aib"], ["https://tec.openplanner.team/stops/Canboha1", "https://tec.openplanner.team/stops/Cptrebe1"], ["https://tec.openplanner.team/stops/Cgrgrce2", "https://tec.openplanner.team/stops/N160afa"], ["https://tec.openplanner.team/stops/NL79aab", "https://tec.openplanner.team/stops/NL81aeb"], ["https://tec.openplanner.team/stops/H4ce103a", "https://tec.openplanner.team/stops/H4ce108a"], ["https://tec.openplanner.team/stops/NC24aja", "https://tec.openplanner.team/stops/NC24aka"], ["https://tec.openplanner.team/stops/X661asa", "https://tec.openplanner.team/stops/X661bbb"], ["https://tec.openplanner.team/stops/Llgfusc6", "https://tec.openplanner.team/stops/Llgwall1"], ["https://tec.openplanner.team/stops/Cjufauv1", "https://tec.openplanner.team/stops/Cjuvign2"], ["https://tec.openplanner.team/stops/LOcgdro1", "https://tec.openplanner.team/stops/LOchalo1"], ["https://tec.openplanner.team/stops/X661afa", "https://tec.openplanner.team/stops/X661aga"], ["https://tec.openplanner.team/stops/Crewaha1", "https://tec.openplanner.team/stops/Crewatb1"], ["https://tec.openplanner.team/stops/N150aea", "https://tec.openplanner.team/stops/N150aec"], ["https://tec.openplanner.team/stops/H2mm136a", "https://tec.openplanner.team/stops/H2mm144a"], ["https://tec.openplanner.team/stops/Bnilpco2", "https://tec.openplanner.team/stops/Bnilwal1"], ["https://tec.openplanner.team/stops/LHMcruc1", "https://tec.openplanner.team/stops/LMNswar2"], ["https://tec.openplanner.team/stops/LFPdeme1", "https://tec.openplanner.team/stops/LFPloob1"], ["https://tec.openplanner.team/stops/Cflecga1", "https://tec.openplanner.team/stops/Cflsabl1"], ["https://tec.openplanner.team/stops/NL74aga", "https://tec.openplanner.team/stops/NL75abb"], ["https://tec.openplanner.team/stops/X790aia", "https://tec.openplanner.team/stops/X790ajb"], ["https://tec.openplanner.team/stops/Cstcent1", "https://tec.openplanner.team/stops/Cstplac1"], ["https://tec.openplanner.team/stops/LJUxhen1", "https://tec.openplanner.team/stops/LJUxhen2"], ["https://tec.openplanner.team/stops/H1ma233a", "https://tec.openplanner.team/stops/H1ma234a"], ["https://tec.openplanner.team/stops/N351aqb", "https://tec.openplanner.team/stops/N351arb"], ["https://tec.openplanner.team/stops/LbUjost1", "https://tec.openplanner.team/stops/LbUjost4"], ["https://tec.openplanner.team/stops/H4bx108b", "https://tec.openplanner.team/stops/H4bx167a"], ["https://tec.openplanner.team/stops/X561aaa", "https://tec.openplanner.team/stops/X576afa"], ["https://tec.openplanner.team/stops/N501apa", "https://tec.openplanner.team/stops/N501apb"], ["https://tec.openplanner.team/stops/H1ne143b", "https://tec.openplanner.team/stops/H3so177a"], ["https://tec.openplanner.team/stops/N501daa", "https://tec.openplanner.team/stops/N528aka"], ["https://tec.openplanner.team/stops/LAYgare1", "https://tec.openplanner.team/stops/LAYpl--1"], ["https://tec.openplanner.team/stops/LLefali1", "https://tec.openplanner.team/stops/LODarbr1"], ["https://tec.openplanner.team/stops/X878aca", "https://tec.openplanner.team/stops/X898aab"], ["https://tec.openplanner.team/stops/H4vx361a", "https://tec.openplanner.team/stops/H4vx365a"], ["https://tec.openplanner.team/stops/H2mg150b", "https://tec.openplanner.team/stops/H2mg153a"], ["https://tec.openplanner.team/stops/Bbstpon2", "https://tec.openplanner.team/stops/Bbststa2"], ["https://tec.openplanner.team/stops/X637aob", "https://tec.openplanner.team/stops/X638aqb"], ["https://tec.openplanner.team/stops/LAMecse*", "https://tec.openplanner.team/stops/LVLf37-2"], ["https://tec.openplanner.team/stops/LSZarbe2", "https://tec.openplanner.team/stops/LTgvill1"], ["https://tec.openplanner.team/stops/X542aaa", "https://tec.openplanner.team/stops/X750ayb"], ["https://tec.openplanner.team/stops/X760afa", "https://tec.openplanner.team/stops/X760agb"], ["https://tec.openplanner.team/stops/LaAlinz1", "https://tec.openplanner.team/stops/LkOaugu2"], ["https://tec.openplanner.team/stops/LSsaxhe1", "https://tec.openplanner.team/stops/LSseg--1"], ["https://tec.openplanner.team/stops/X641ada", "https://tec.openplanner.team/stops/X641akb"], ["https://tec.openplanner.team/stops/H4vx363b", "https://tec.openplanner.team/stops/H4vx366b"], ["https://tec.openplanner.team/stops/N357abb", "https://tec.openplanner.team/stops/N988aab"], ["https://tec.openplanner.team/stops/N120add", "https://tec.openplanner.team/stops/N120aod"], ["https://tec.openplanner.team/stops/Btslhau1", "https://tec.openplanner.team/stops/Btslhau2"], ["https://tec.openplanner.team/stops/LXobaty1", "https://tec.openplanner.team/stops/LXobaty3"], ["https://tec.openplanner.team/stops/X901afb", "https://tec.openplanner.team/stops/X902bab"], ["https://tec.openplanner.team/stops/LnIkirc1", "https://tec.openplanner.team/stops/LnIkirc2"], ["https://tec.openplanner.team/stops/Lmndeso1", "https://tec.openplanner.team/stops/Lmndeso2"], ["https://tec.openplanner.team/stops/Lvehv--1", "https://tec.openplanner.team/stops/Lvehv--4"], ["https://tec.openplanner.team/stops/H4ct111a", "https://tec.openplanner.team/stops/H5bs104a"], ["https://tec.openplanner.team/stops/Cstbasc1", "https://tec.openplanner.team/stops/Cstgare2"], ["https://tec.openplanner.team/stops/X641aba", "https://tec.openplanner.team/stops/X641aib"], ["https://tec.openplanner.team/stops/Llgjenn4", "https://tec.openplanner.team/stops/Llgrame1"], ["https://tec.openplanner.team/stops/Cwfmonu2", "https://tec.openplanner.team/stops/Cwfplac3"], ["https://tec.openplanner.team/stops/Cmogtri1", "https://tec.openplanner.team/stops/Cmoscap2"], ["https://tec.openplanner.team/stops/LmTzoll1", "https://tec.openplanner.team/stops/LtEnach2"], ["https://tec.openplanner.team/stops/N501ata", "https://tec.openplanner.team/stops/N527aeb"], ["https://tec.openplanner.team/stops/Bgemcro1", "https://tec.openplanner.team/stops/Bgemman1"], ["https://tec.openplanner.team/stops/Bohnrsc1", "https://tec.openplanner.team/stops/Bohnrsc2"], ["https://tec.openplanner.team/stops/Ccuoise1", "https://tec.openplanner.team/stops/Ccutrav5"], ["https://tec.openplanner.team/stops/LENaout1", "https://tec.openplanner.team/stops/LENtour2"], ["https://tec.openplanner.team/stops/Lsmdams2", "https://tec.openplanner.team/stops/Lsmgdry1"], ["https://tec.openplanner.team/stops/LNCmada2", "https://tec.openplanner.team/stops/LNCsart2"], ["https://tec.openplanner.team/stops/Ctucour1", "https://tec.openplanner.team/stops/Ctufleu1"], ["https://tec.openplanner.team/stops/X670abb", "https://tec.openplanner.team/stops/X670acb"], ["https://tec.openplanner.team/stops/H1ms262a", "https://tec.openplanner.team/stops/H1ms362a"], ["https://tec.openplanner.team/stops/LmD163-1", "https://tec.openplanner.team/stops/LmDhoch1"], ["https://tec.openplanner.team/stops/X791aab", "https://tec.openplanner.team/stops/X791acb"], ["https://tec.openplanner.team/stops/LBvviem3", "https://tec.openplanner.team/stops/LVMchpl1"], ["https://tec.openplanner.team/stops/X717ada", "https://tec.openplanner.team/stops/X717adb"], ["https://tec.openplanner.team/stops/LSGcent2", "https://tec.openplanner.team/stops/LSGec--2"], ["https://tec.openplanner.team/stops/H1ms285a", "https://tec.openplanner.team/stops/H1ms364a"], ["https://tec.openplanner.team/stops/H1as103b", "https://tec.openplanner.team/stops/H1mv240b"], ["https://tec.openplanner.team/stops/X688aba", "https://tec.openplanner.team/stops/X688abb"], ["https://tec.openplanner.team/stops/Cbmviv1", "https://tec.openplanner.team/stops/Cbmviv2"], ["https://tec.openplanner.team/stops/Cmlrbru1", "https://tec.openplanner.team/stops/Cmlsart1"], ["https://tec.openplanner.team/stops/Cvpsncb1", "https://tec.openplanner.team/stops/Cvpsthu2"], ["https://tec.openplanner.team/stops/N170abb", "https://tec.openplanner.team/stops/N170afb"], ["https://tec.openplanner.team/stops/X669adb", "https://tec.openplanner.team/stops/X669aha"], ["https://tec.openplanner.team/stops/LbUwirt2", "https://tec.openplanner.team/stops/LwR140-1"], ["https://tec.openplanner.team/stops/N540aoa", "https://tec.openplanner.team/stops/N540ara"], ["https://tec.openplanner.team/stops/LHFappe2", "https://tec.openplanner.team/stops/LHFec--1"], ["https://tec.openplanner.team/stops/H4ml208b", "https://tec.openplanner.team/stops/H4ml209a"], ["https://tec.openplanner.team/stops/X789aba", "https://tec.openplanner.team/stops/X789aga"], ["https://tec.openplanner.team/stops/Lbhgare1", "https://tec.openplanner.team/stops/Lbhmc--2"], ["https://tec.openplanner.team/stops/N501knb", "https://tec.openplanner.team/stops/N501mvc"], ["https://tec.openplanner.team/stops/X901aia", "https://tec.openplanner.team/stops/X901ama"], ["https://tec.openplanner.team/stops/X724aab", "https://tec.openplanner.team/stops/X724abb"], ["https://tec.openplanner.team/stops/H1ms272a", "https://tec.openplanner.team/stops/H1ms272c"], ["https://tec.openplanner.team/stops/H2hl111b", "https://tec.openplanner.team/stops/H2sv214b"], ["https://tec.openplanner.team/stops/Bbxlmid4", "https://tec.openplanner.team/stops/H4mn100a"], ["https://tec.openplanner.team/stops/Bwatcap1", "https://tec.openplanner.team/stops/Bwatcpe1"], ["https://tec.openplanner.team/stops/H4co151a", "https://tec.openplanner.team/stops/H4wn126a"], ["https://tec.openplanner.team/stops/X601aca", "https://tec.openplanner.team/stops/X601adb"], ["https://tec.openplanner.team/stops/H1me117e", "https://tec.openplanner.team/stops/H1so141a"], ["https://tec.openplanner.team/stops/Bhanmou2", "https://tec.openplanner.team/stops/Bhanwav1"], ["https://tec.openplanner.team/stops/X718aga", "https://tec.openplanner.team/stops/X718agb"], ["https://tec.openplanner.team/stops/X364aaa", "https://tec.openplanner.team/stops/X364aba"], ["https://tec.openplanner.team/stops/N539avb", "https://tec.openplanner.team/stops/N539bcb"], ["https://tec.openplanner.team/stops/H4mx114b", "https://tec.openplanner.team/stops/H4mx120a"], ["https://tec.openplanner.team/stops/LoUhein1", "https://tec.openplanner.team/stops/LoUzent1"], ["https://tec.openplanner.team/stops/H4pe124a", "https://tec.openplanner.team/stops/H4pe125a"], ["https://tec.openplanner.team/stops/LlZkirc1", "https://tec.openplanner.team/stops/LmNha221"], ["https://tec.openplanner.team/stops/N538afa", "https://tec.openplanner.team/stops/N538ava"], ["https://tec.openplanner.team/stops/LHocroi1", "https://tec.openplanner.team/stops/LJetrih2"], ["https://tec.openplanner.team/stops/X837aja", "https://tec.openplanner.team/stops/X837ala"], ["https://tec.openplanner.team/stops/LBkcarr2", "https://tec.openplanner.team/stops/LBkgrae1"], ["https://tec.openplanner.team/stops/H5st162a", "https://tec.openplanner.team/stops/H5st164a"], ["https://tec.openplanner.team/stops/Cmccet2", "https://tec.openplanner.team/stops/Cmchai1"], ["https://tec.openplanner.team/stops/Cmlvitf1", "https://tec.openplanner.team/stops/CMvil2"], ["https://tec.openplanner.team/stops/H1et102a", "https://tec.openplanner.team/stops/H1ju121a"], ["https://tec.openplanner.team/stops/LSMtarg1", "https://tec.openplanner.team/stops/LSMtarg2"], ["https://tec.openplanner.team/stops/N122aca", "https://tec.openplanner.team/stops/N150afa"], ["https://tec.openplanner.team/stops/X663aua", "https://tec.openplanner.team/stops/X663aub"], ["https://tec.openplanner.team/stops/Bjanfer1", "https://tec.openplanner.team/stops/Bpthcai2"], ["https://tec.openplanner.team/stops/X824aha", "https://tec.openplanner.team/stops/X824ahb"], ["https://tec.openplanner.team/stops/Bndb4ch1", "https://tec.openplanner.team/stops/Bndbgar2"], ["https://tec.openplanner.team/stops/N127aea", "https://tec.openplanner.team/stops/N127aeb"], ["https://tec.openplanner.team/stops/Lvehoug2", "https://tec.openplanner.team/stops/Lvescie1"], ["https://tec.openplanner.team/stops/H4ka185a", "https://tec.openplanner.team/stops/H4ka185b"], ["https://tec.openplanner.team/stops/LeUschi1", "https://tec.openplanner.team/stops/LeUschi2"], ["https://tec.openplanner.team/stops/H1qv113a", "https://tec.openplanner.team/stops/H1qv114a"], ["https://tec.openplanner.team/stops/N534atc", "https://tec.openplanner.team/stops/N534bgb"], ["https://tec.openplanner.team/stops/LeUkabe2", "https://tec.openplanner.team/stops/LeUwais2"], ["https://tec.openplanner.team/stops/NL76anb", "https://tec.openplanner.team/stops/NL76aoa"], ["https://tec.openplanner.team/stops/Llgbuis1", "https://tec.openplanner.team/stops/Ltibell1"], ["https://tec.openplanner.team/stops/H1br121b", "https://tec.openplanner.team/stops/H1vs144a"], ["https://tec.openplanner.team/stops/N517ada", "https://tec.openplanner.team/stops/N517adc"], ["https://tec.openplanner.team/stops/H4mo191b", "https://tec.openplanner.team/stops/H4wa156a"], ["https://tec.openplanner.team/stops/LnErech2", "https://tec.openplanner.team/stops/LrEkais4"], ["https://tec.openplanner.team/stops/Cmlbras2", "https://tec.openplanner.team/stops/Cmlcent1"], ["https://tec.openplanner.team/stops/Lmieg--1", "https://tec.openplanner.team/stops/Lmigare2"], ["https://tec.openplanner.team/stops/Bblaadm1", "https://tec.openplanner.team/stops/Bblasol1"], ["https://tec.openplanner.team/stops/X601cha", "https://tec.openplanner.team/stops/X601cla"], ["https://tec.openplanner.team/stops/N352afb", "https://tec.openplanner.team/stops/N355aba"], ["https://tec.openplanner.team/stops/H4hx113b", "https://tec.openplanner.team/stops/H4hx121a"], ["https://tec.openplanner.team/stops/LREhenu1", "https://tec.openplanner.team/stops/LREraph1"], ["https://tec.openplanner.team/stops/Blsmvan2", "https://tec.openplanner.team/stops/Bpelegl3"], ["https://tec.openplanner.team/stops/LTreg--1", "https://tec.openplanner.team/stops/LTrmaro2"], ["https://tec.openplanner.team/stops/N543ahb", "https://tec.openplanner.team/stops/N543aua"], ["https://tec.openplanner.team/stops/H1lm105a", "https://tec.openplanner.team/stops/H1lm107a"], ["https://tec.openplanner.team/stops/N573acb", "https://tec.openplanner.team/stops/NC14ada"], ["https://tec.openplanner.team/stops/LOesour2", "https://tec.openplanner.team/stops/LOewaut1"], ["https://tec.openplanner.team/stops/H4ne137a", "https://tec.openplanner.team/stops/H4te249a"], ["https://tec.openplanner.team/stops/Boffegl1", "https://tec.openplanner.team/stops/NR27aba"], ["https://tec.openplanner.team/stops/LJAbois2", "https://tec.openplanner.team/stops/Lmnchal2"], ["https://tec.openplanner.team/stops/H1bu143b", "https://tec.openplanner.team/stops/H2an109b"], ["https://tec.openplanner.team/stops/H2fa101a", "https://tec.openplanner.team/stops/H2fa112b"], ["https://tec.openplanner.team/stops/H1ba108b", "https://tec.openplanner.team/stops/H1ba114b"], ["https://tec.openplanner.team/stops/N244asb", "https://tec.openplanner.team/stops/N244atb"], ["https://tec.openplanner.team/stops/H4ty286a", "https://tec.openplanner.team/stops/H4ty310a"], ["https://tec.openplanner.team/stops/Lsebeau*", "https://tec.openplanner.team/stops/Lsesabl1"], ["https://tec.openplanner.team/stops/N512apa", "https://tec.openplanner.team/stops/N512aqa"], ["https://tec.openplanner.team/stops/H1ba117a", "https://tec.openplanner.team/stops/H1ba119c"], ["https://tec.openplanner.team/stops/LSPdesc1", "https://tec.openplanner.team/stops/LSPther2"], ["https://tec.openplanner.team/stops/N141aab", "https://tec.openplanner.team/stops/N141apb"], ["https://tec.openplanner.team/stops/X788abb", "https://tec.openplanner.team/stops/X788abe"], ["https://tec.openplanner.team/stops/Lroboeg2", "https://tec.openplanner.team/stops/Lrofont*"], ["https://tec.openplanner.team/stops/Bsgeegl4", "https://tec.openplanner.team/stops/Bsgevil2"], ["https://tec.openplanner.team/stops/H1wl123a", "https://tec.openplanner.team/stops/H1wl125a"], ["https://tec.openplanner.team/stops/Lchcomm1", "https://tec.openplanner.team/stops/Lchsaeg2"], ["https://tec.openplanner.team/stops/Llgcoll1", "https://tec.openplanner.team/stops/Llgvott1"], ["https://tec.openplanner.team/stops/Buccpin1", "https://tec.openplanner.team/stops/Buccpin2"], ["https://tec.openplanner.team/stops/X903ada", "https://tec.openplanner.team/stops/X904ada"], ["https://tec.openplanner.team/stops/H1gh150b", "https://tec.openplanner.team/stops/H1gh152b"], ["https://tec.openplanner.team/stops/LRmha262", "https://tec.openplanner.team/stops/LRmkult1"], ["https://tec.openplanner.team/stops/Ctisar1", "https://tec.openplanner.team/stops/Ctisar2"], ["https://tec.openplanner.team/stops/H2mg139c", "https://tec.openplanner.team/stops/H2mg149a"], ["https://tec.openplanner.team/stops/Cmx3arb1", "https://tec.openplanner.team/stops/Cmx4che1"], ["https://tec.openplanner.team/stops/LSXbecc2", "https://tec.openplanner.team/stops/LTHturo1"], ["https://tec.openplanner.team/stops/LeUbell1", "https://tec.openplanner.team/stops/LeUfuss1"], ["https://tec.openplanner.team/stops/N562ayb", "https://tec.openplanner.team/stops/N562bfa"], ["https://tec.openplanner.team/stops/H4ty273d", "https://tec.openplanner.team/stops/H4ty333b"], ["https://tec.openplanner.team/stops/H1hl125a", "https://tec.openplanner.team/stops/H1hl125b"], ["https://tec.openplanner.team/stops/LWRferm1", "https://tec.openplanner.team/stops/LWRheyd2"], ["https://tec.openplanner.team/stops/H4bf106b", "https://tec.openplanner.team/stops/H4wp151b"], ["https://tec.openplanner.team/stops/N536aba", "https://tec.openplanner.team/stops/N536aea"], ["https://tec.openplanner.team/stops/Llgongr3", "https://tec.openplanner.team/stops/Llgoutr1"], ["https://tec.openplanner.team/stops/Lpebier2", "https://tec.openplanner.team/stops/Lpepano2"], ["https://tec.openplanner.team/stops/Bkrabhu1", "https://tec.openplanner.team/stops/Bkrawil1"], ["https://tec.openplanner.team/stops/Bwatmsj8", "https://tec.openplanner.team/stops/Bwatwsc1"], ["https://tec.openplanner.team/stops/Blanove1", "https://tec.openplanner.team/stops/LWscona1"], ["https://tec.openplanner.team/stops/N145ada", "https://tec.openplanner.team/stops/N149abb"], ["https://tec.openplanner.team/stops/N534acb", "https://tec.openplanner.team/stops/N543aga"], ["https://tec.openplanner.team/stops/N230aea", "https://tec.openplanner.team/stops/N230alb"], ["https://tec.openplanner.team/stops/LrAwald1", "https://tec.openplanner.team/stops/LrAwald2"], ["https://tec.openplanner.team/stops/H3bi106a", "https://tec.openplanner.team/stops/H3bi106b"], ["https://tec.openplanner.team/stops/X610abb", "https://tec.openplanner.team/stops/X610aea"], ["https://tec.openplanner.team/stops/LLUhotc1", "https://tec.openplanner.team/stops/LREfloh2"], ["https://tec.openplanner.team/stops/Ladegli1", "https://tec.openplanner.team/stops/Ladjuif1"], ["https://tec.openplanner.team/stops/LTIdamr1", "https://tec.openplanner.team/stops/LTIgare3"], ["https://tec.openplanner.team/stops/Clftour2", "https://tec.openplanner.team/stops/Cstmarz2"], ["https://tec.openplanner.team/stops/X542aba", "https://tec.openplanner.team/stops/X542aia"], ["https://tec.openplanner.team/stops/X926aca", "https://tec.openplanner.team/stops/X926aeb"], ["https://tec.openplanner.team/stops/N138aaa", "https://tec.openplanner.team/stops/N138aca"], ["https://tec.openplanner.team/stops/N501ilb", "https://tec.openplanner.team/stops/N501iqb"], ["https://tec.openplanner.team/stops/N501hpa", "https://tec.openplanner.team/stops/N527aeb"], ["https://tec.openplanner.team/stops/X759aaa", "https://tec.openplanner.team/stops/X837aec"], ["https://tec.openplanner.team/stops/Csoforr3", "https://tec.openplanner.team/stops/Csoforr4"], ["https://tec.openplanner.team/stops/Lougoff2", "https://tec.openplanner.team/stops/Lousimo2"], ["https://tec.openplanner.team/stops/H2go117a", "https://tec.openplanner.team/stops/H2go119a"], ["https://tec.openplanner.team/stops/H1gy113a", "https://tec.openplanner.team/stops/H5fl101a"], ["https://tec.openplanner.team/stops/N501lyb", "https://tec.openplanner.team/stops/N501mkb"], ["https://tec.openplanner.team/stops/LHmcite1", "https://tec.openplanner.team/stops/LMAgb--1"], ["https://tec.openplanner.team/stops/H4ss154a", "https://tec.openplanner.team/stops/H4ss154b"], ["https://tec.openplanner.team/stops/NL30aka", "https://tec.openplanner.team/stops/NL68aeb"], ["https://tec.openplanner.team/stops/Lfhlons2", "https://tec.openplanner.team/stops/Lfhpast1"], ["https://tec.openplanner.team/stops/LWRbomb2", "https://tec.openplanner.team/stops/LWRbomb4"], ["https://tec.openplanner.team/stops/N224agc", "https://tec.openplanner.team/stops/X224abb"], ["https://tec.openplanner.team/stops/Bmarchn1", "https://tec.openplanner.team/stops/Bmarvil1"], ["https://tec.openplanner.team/stops/H1mb137a", "https://tec.openplanner.team/stops/H1mb166a"], ["https://tec.openplanner.team/stops/H1gh144b", "https://tec.openplanner.team/stops/H1je211a"], ["https://tec.openplanner.team/stops/N561aia", "https://tec.openplanner.team/stops/N561aic"], ["https://tec.openplanner.team/stops/H1ch101b", "https://tec.openplanner.team/stops/H5ar103a"], ["https://tec.openplanner.team/stops/X615ara", "https://tec.openplanner.team/stops/X615ata"], ["https://tec.openplanner.team/stops/N383aba", "https://tec.openplanner.team/stops/N383afb"], ["https://tec.openplanner.team/stops/H1ha197a", "https://tec.openplanner.team/stops/H1ob336a"], ["https://tec.openplanner.team/stops/H4vx361b", "https://tec.openplanner.team/stops/H4vx366a"], ["https://tec.openplanner.team/stops/Lmochpl1", "https://tec.openplanner.team/stops/Lmodeni1"], ["https://tec.openplanner.team/stops/X623afb", "https://tec.openplanner.team/stops/X623aib"], ["https://tec.openplanner.team/stops/Bovesog1", "https://tec.openplanner.team/stops/Bovevnd1"], ["https://tec.openplanner.team/stops/H4hx113a", "https://tec.openplanner.team/stops/H4hx121a"], ["https://tec.openplanner.team/stops/Llgdoth2", "https://tec.openplanner.team/stops/Llglibo3"], ["https://tec.openplanner.team/stops/X542aab", "https://tec.openplanner.team/stops/X777acb"], ["https://tec.openplanner.team/stops/H4be147a", "https://tec.openplanner.team/stops/H5bl122b"], ["https://tec.openplanner.team/stops/X672ala", "https://tec.openplanner.team/stops/X672aoa"], ["https://tec.openplanner.team/stops/LGDgdou2", "https://tec.openplanner.team/stops/LMAbell1"], ["https://tec.openplanner.team/stops/N117anb", "https://tec.openplanner.team/stops/N117aoc"], ["https://tec.openplanner.team/stops/LXHfond2", "https://tec.openplanner.team/stops/LXHfond3"], ["https://tec.openplanner.team/stops/Bneervc2", "https://tec.openplanner.team/stops/Bneesan1"], ["https://tec.openplanner.team/stops/X730agb", "https://tec.openplanner.team/stops/X731aha"], ["https://tec.openplanner.team/stops/Lanpisc1", "https://tec.openplanner.team/stops/Lansarm2"], ["https://tec.openplanner.team/stops/X882afa", "https://tec.openplanner.team/stops/X882amb"], ["https://tec.openplanner.team/stops/Cdametr2", "https://tec.openplanner.team/stops/CMdamp2"], ["https://tec.openplanner.team/stops/N506bhb", "https://tec.openplanner.team/stops/N506blb"], ["https://tec.openplanner.team/stops/LBCaube2", "https://tec.openplanner.team/stops/LMTfagn1"], ["https://tec.openplanner.team/stops/LGecime2", "https://tec.openplanner.team/stops/LVkinst2"], ["https://tec.openplanner.team/stops/N114aab", "https://tec.openplanner.team/stops/N315aaa"], ["https://tec.openplanner.team/stops/X512aja", "https://tec.openplanner.team/stops/X512ajb"], ["https://tec.openplanner.team/stops/N120ajb", "https://tec.openplanner.team/stops/N167aha"], ["https://tec.openplanner.team/stops/Btiegoo1", "https://tec.openplanner.team/stops/Btiegoo2"], ["https://tec.openplanner.team/stops/H4wt159a", "https://tec.openplanner.team/stops/H4wt159b"], ["https://tec.openplanner.team/stops/X877aha", "https://tec.openplanner.team/stops/X880ada"], ["https://tec.openplanner.team/stops/Brebrha1", "https://tec.openplanner.team/stops/H3br107b"], ["https://tec.openplanner.team/stops/X715afa", "https://tec.openplanner.team/stops/X715aga"], ["https://tec.openplanner.team/stops/H1bo101a", "https://tec.openplanner.team/stops/H1bo101b"], ["https://tec.openplanner.team/stops/H1hc127c", "https://tec.openplanner.team/stops/H1hc127d"], ["https://tec.openplanner.team/stops/N584aua", "https://tec.openplanner.team/stops/N584aub"], ["https://tec.openplanner.team/stops/Cjudewe2", "https://tec.openplanner.team/stops/Cjurevo1"], ["https://tec.openplanner.team/stops/H1by100b", "https://tec.openplanner.team/stops/H1by100d"], ["https://tec.openplanner.team/stops/Bbghgli1", "https://tec.openplanner.team/stops/Brebpca2"], ["https://tec.openplanner.team/stops/X618afa", "https://tec.openplanner.team/stops/X618afb"], ["https://tec.openplanner.team/stops/H1as103d", "https://tec.openplanner.team/stops/H1nv325a"], ["https://tec.openplanner.team/stops/LAUcarr1", "https://tec.openplanner.team/stops/LAUhost1"], ["https://tec.openplanner.team/stops/H4mx116b", "https://tec.openplanner.team/stops/H4mx120a"], ["https://tec.openplanner.team/stops/N512ala", "https://tec.openplanner.team/stops/N512ama"], ["https://tec.openplanner.team/stops/LFRbaro1", "https://tec.openplanner.team/stops/LSZpiro1"], ["https://tec.openplanner.team/stops/LSRbouh1", "https://tec.openplanner.team/stops/LTrgibe2"], ["https://tec.openplanner.team/stops/N538aeb", "https://tec.openplanner.team/stops/N539aka"], ["https://tec.openplanner.team/stops/N511aia", "https://tec.openplanner.team/stops/N512awa"], ["https://tec.openplanner.team/stops/X896acb", "https://tec.openplanner.team/stops/X896ada"], ["https://tec.openplanner.team/stops/LAufech1", "https://tec.openplanner.team/stops/LAuvill1"], ["https://tec.openplanner.team/stops/X876aca", "https://tec.openplanner.team/stops/X876aea"], ["https://tec.openplanner.team/stops/Bfelequ1", "https://tec.openplanner.team/stops/Bfelpmo2"], ["https://tec.openplanner.team/stops/N521aba", "https://tec.openplanner.team/stops/N521ada"], ["https://tec.openplanner.team/stops/LPbpeti2", "https://tec.openplanner.team/stops/LPbtene1"], ["https://tec.openplanner.team/stops/H4we134b", "https://tec.openplanner.team/stops/H4we139a"], ["https://tec.openplanner.team/stops/Bezeksj1", "https://tec.openplanner.team/stops/Bezeksj3"], ["https://tec.openplanner.team/stops/Ccugilb1", "https://tec.openplanner.team/stops/Cwgtill2"], ["https://tec.openplanner.team/stops/X802aga", "https://tec.openplanner.team/stops/X802ahb"], ["https://tec.openplanner.team/stops/Cmaest1", "https://tec.openplanner.team/stops/Cmafafe1"], ["https://tec.openplanner.team/stops/N529abb", "https://tec.openplanner.team/stops/N529abc"], ["https://tec.openplanner.team/stops/H4ty290a", "https://tec.openplanner.team/stops/H4ty330c"], ["https://tec.openplanner.team/stops/Blindel2", "https://tec.openplanner.team/stops/Blindel4"], ["https://tec.openplanner.team/stops/LGOdelv1", "https://tec.openplanner.team/stops/LJAverv2"], ["https://tec.openplanner.team/stops/H1je216b", "https://tec.openplanner.team/stops/H1je366a"], ["https://tec.openplanner.team/stops/Bnodeco2", "https://tec.openplanner.team/stops/Bnodlce2"], ["https://tec.openplanner.team/stops/H4ef109a", "https://tec.openplanner.team/stops/H4ef109b"], ["https://tec.openplanner.team/stops/LREairp1", "https://tec.openplanner.team/stops/LREchal1"], ["https://tec.openplanner.team/stops/N104aaa", "https://tec.openplanner.team/stops/N104aab"], ["https://tec.openplanner.team/stops/Bboncfv1", "https://tec.openplanner.team/stops/Bboneta1"], ["https://tec.openplanner.team/stops/Buccpin2", "https://tec.openplanner.team/stops/Bwbfgar2"], ["https://tec.openplanner.team/stops/LSPdesc1", "https://tec.openplanner.team/stops/LSPsorb2"], ["https://tec.openplanner.team/stops/Btlbgla2", "https://tec.openplanner.team/stops/Btstw752"], ["https://tec.openplanner.team/stops/N313aec", "https://tec.openplanner.team/stops/N331ajb"], ["https://tec.openplanner.team/stops/Cclbarb1", "https://tec.openplanner.team/stops/Cclplac2"], ["https://tec.openplanner.team/stops/X734abb", "https://tec.openplanner.team/stops/X734afa"], ["https://tec.openplanner.team/stops/N557abb", "https://tec.openplanner.team/stops/N557afb"], ["https://tec.openplanner.team/stops/LListie1", "https://tec.openplanner.team/stops/LListie2"], ["https://tec.openplanner.team/stops/Cthbeff1", "https://tec.openplanner.team/stops/Cthvbas2"], ["https://tec.openplanner.team/stops/Ccychco1", "https://tec.openplanner.team/stops/Ccyga6"], ["https://tec.openplanner.team/stops/H4hg154b", "https://tec.openplanner.team/stops/H4hg157b"], ["https://tec.openplanner.team/stops/N528alb", "https://tec.openplanner.team/stops/N577ahb"], ["https://tec.openplanner.team/stops/N584aea", "https://tec.openplanner.team/stops/N584ama"], ["https://tec.openplanner.team/stops/X716aab", "https://tec.openplanner.team/stops/X716afb"], ["https://tec.openplanner.team/stops/X769aca", "https://tec.openplanner.team/stops/X769aea"], ["https://tec.openplanner.team/stops/Lsehya-2", "https://tec.openplanner.team/stops/Lsehya-3"], ["https://tec.openplanner.team/stops/H4ne138a", "https://tec.openplanner.team/stops/H4te251a"], ["https://tec.openplanner.team/stops/Bgligli1", "https://tec.openplanner.team/stops/Bjcljau1"], ["https://tec.openplanner.team/stops/N170aca", "https://tec.openplanner.team/stops/NC14aca"], ["https://tec.openplanner.team/stops/Bpielom1", "https://tec.openplanner.team/stops/Bpielon1"], ["https://tec.openplanner.team/stops/X614apb", "https://tec.openplanner.team/stops/X614aqb"], ["https://tec.openplanner.team/stops/Bnodcab2", "https://tec.openplanner.team/stops/Bnodtir4"], ["https://tec.openplanner.team/stops/LFCalte1", "https://tec.openplanner.team/stops/LFCalte2"], ["https://tec.openplanner.team/stops/Lmohomv2", "https://tec.openplanner.team/stops/Lsnbrac3"], ["https://tec.openplanner.team/stops/Btubcvi2", "https://tec.openplanner.team/stops/Btubdeh2"], ["https://tec.openplanner.team/stops/X657aeb", "https://tec.openplanner.team/stops/X742adb"], ["https://tec.openplanner.team/stops/X354aca", "https://tec.openplanner.team/stops/X354adb"], ["https://tec.openplanner.team/stops/LTRfend1", "https://tec.openplanner.team/stops/LTRfica2"], ["https://tec.openplanner.team/stops/N542ala", "https://tec.openplanner.team/stops/N542arb"], ["https://tec.openplanner.team/stops/NC14aba", "https://tec.openplanner.team/stops/NC14aca"], ["https://tec.openplanner.team/stops/X663ava", "https://tec.openplanner.team/stops/X663ayb"], ["https://tec.openplanner.team/stops/X633ala", "https://tec.openplanner.team/stops/X633alb"], ["https://tec.openplanner.team/stops/LeUclou2", "https://tec.openplanner.team/stops/LeUmeye2"], ["https://tec.openplanner.team/stops/LwAlont4", "https://tec.openplanner.team/stops/LwAschu2"], ["https://tec.openplanner.team/stops/Ctrecol1", "https://tec.openplanner.team/stops/Ctrecol4"], ["https://tec.openplanner.team/stops/LSLdall1", "https://tec.openplanner.team/stops/LSLfler2"], ["https://tec.openplanner.team/stops/Llgcrev2", "https://tec.openplanner.team/stops/Llgcurt1"], ["https://tec.openplanner.team/stops/N529ajb", "https://tec.openplanner.team/stops/N584aoa"], ["https://tec.openplanner.team/stops/X725ava", "https://tec.openplanner.team/stops/X725avb"], ["https://tec.openplanner.team/stops/X619agb", "https://tec.openplanner.team/stops/X619ahb"], ["https://tec.openplanner.team/stops/N501cya", "https://tec.openplanner.team/stops/N501cyb"], ["https://tec.openplanner.team/stops/N558adb", "https://tec.openplanner.team/stops/N558aea"], ["https://tec.openplanner.team/stops/X615aka", "https://tec.openplanner.team/stops/X615akb"], ["https://tec.openplanner.team/stops/N513bbc", "https://tec.openplanner.team/stops/N516ada"], ["https://tec.openplanner.team/stops/LHZbren2", "https://tec.openplanner.team/stops/LHZcouv2"], ["https://tec.openplanner.team/stops/Canjon2", "https://tec.openplanner.team/stops/Canjonc1"], ["https://tec.openplanner.team/stops/H4ka174b", "https://tec.openplanner.team/stops/H4ka421a"], ["https://tec.openplanner.team/stops/N218aab", "https://tec.openplanner.team/stops/N218ada"], ["https://tec.openplanner.team/stops/LeUcamp1", "https://tec.openplanner.team/stops/LeUoe542"], ["https://tec.openplanner.team/stops/Lstbarb6", "https://tec.openplanner.team/stops/Lstpole1"], ["https://tec.openplanner.team/stops/LHGbeur3", "https://tec.openplanner.team/stops/LHGikea2"], ["https://tec.openplanner.team/stops/H4an110a", "https://tec.openplanner.team/stops/H4an112b"], ["https://tec.openplanner.team/stops/H2lc146a", "https://tec.openplanner.team/stops/H2lc146b"], ["https://tec.openplanner.team/stops/X725bbb", "https://tec.openplanner.team/stops/X725bca"], ["https://tec.openplanner.team/stops/X623aha", "https://tec.openplanner.team/stops/X623ahb"], ["https://tec.openplanner.team/stops/Bhencha2", "https://tec.openplanner.team/stops/Broncli1"], ["https://tec.openplanner.team/stops/X938ada", "https://tec.openplanner.team/stops/X938aea"], ["https://tec.openplanner.team/stops/Blhunys1", "https://tec.openplanner.team/stops/Blhupri2"], ["https://tec.openplanner.team/stops/Bwlhcsr1", "https://tec.openplanner.team/stops/Bwspspa1"], ["https://tec.openplanner.team/stops/X768alb", "https://tec.openplanner.team/stops/X791adb"], ["https://tec.openplanner.team/stops/X734ahb", "https://tec.openplanner.team/stops/X734arb"], ["https://tec.openplanner.team/stops/Blmlbif2", "https://tec.openplanner.team/stops/Brsrmon1"], ["https://tec.openplanner.team/stops/Blpgeco1", "https://tec.openplanner.team/stops/Bvxgeta2"], ["https://tec.openplanner.team/stops/H4ep130a", "https://tec.openplanner.team/stops/H4la197a"], ["https://tec.openplanner.team/stops/X904afa", "https://tec.openplanner.team/stops/X904aha"], ["https://tec.openplanner.team/stops/H4bq100a", "https://tec.openplanner.team/stops/H4bq100c"], ["https://tec.openplanner.team/stops/LBAcere1", "https://tec.openplanner.team/stops/LBAcere2"], ["https://tec.openplanner.team/stops/X648aaa", "https://tec.openplanner.team/stops/X648abb"], ["https://tec.openplanner.team/stops/X685agb", "https://tec.openplanner.team/stops/X685ama"], ["https://tec.openplanner.team/stops/H1ne138a", "https://tec.openplanner.team/stops/H1ne146a"], ["https://tec.openplanner.team/stops/H1as103d", "https://tec.openplanner.team/stops/H1as154a"], ["https://tec.openplanner.team/stops/LHAarge1", "https://tec.openplanner.team/stops/LHApthe2"], ["https://tec.openplanner.team/stops/X771ana", "https://tec.openplanner.team/stops/X773ana"], ["https://tec.openplanner.team/stops/LAibego2", "https://tec.openplanner.team/stops/LCaresi2"], ["https://tec.openplanner.team/stops/Lemdieu1", "https://tec.openplanner.team/stops/Lemlacr1"], ["https://tec.openplanner.team/stops/H2mi124b", "https://tec.openplanner.team/stops/H2mi125a"], ["https://tec.openplanner.team/stops/X739aga", "https://tec.openplanner.team/stops/X739aha"], ["https://tec.openplanner.team/stops/LOucuve1", "https://tec.openplanner.team/stops/LOuhalb1"], ["https://tec.openplanner.team/stops/X730aca", "https://tec.openplanner.team/stops/X730acb"], ["https://tec.openplanner.team/stops/N525aec", "https://tec.openplanner.team/stops/N525agb"], ["https://tec.openplanner.team/stops/LGlwarf2", "https://tec.openplanner.team/stops/LSBsere2"], ["https://tec.openplanner.team/stops/Bhaltre1", "https://tec.openplanner.team/stops/Bhalvla1"], ["https://tec.openplanner.team/stops/LBaeg--2", "https://tec.openplanner.team/stops/LBalacr2"], ["https://tec.openplanner.team/stops/H4bu108b", "https://tec.openplanner.team/stops/H4oe150a"], ["https://tec.openplanner.team/stops/N118abb", "https://tec.openplanner.team/stops/N118bba"], ["https://tec.openplanner.team/stops/X721apb", "https://tec.openplanner.team/stops/X786aab"], ["https://tec.openplanner.team/stops/LeLbutg1", "https://tec.openplanner.team/stops/LnIfrie2"], ["https://tec.openplanner.team/stops/H4co104a", "https://tec.openplanner.team/stops/H4co157a"], ["https://tec.openplanner.team/stops/H4be105a", "https://tec.openplanner.team/stops/H4be145a"], ["https://tec.openplanner.team/stops/X876aaa", "https://tec.openplanner.team/stops/X876aab"], ["https://tec.openplanner.team/stops/LPbover1", "https://tec.openplanner.team/stops/LPbover2"], ["https://tec.openplanner.team/stops/Bbealon3", "https://tec.openplanner.team/stops/Bbeardu2"], ["https://tec.openplanner.team/stops/H1ba103b", "https://tec.openplanner.team/stops/H1ba118b"], ["https://tec.openplanner.team/stops/LNAbras1", "https://tec.openplanner.team/stops/LNAdemo1"], ["https://tec.openplanner.team/stops/X637aoa", "https://tec.openplanner.team/stops/X650aab"], ["https://tec.openplanner.team/stops/Lgrbonn6", "https://tec.openplanner.team/stops/Lgrramp1"], ["https://tec.openplanner.team/stops/N201awa", "https://tec.openplanner.team/stops/N202acb"], ["https://tec.openplanner.team/stops/H1ms304a", "https://tec.openplanner.team/stops/H1ms309b"], ["https://tec.openplanner.team/stops/X948avb", "https://tec.openplanner.team/stops/X948awa"], ["https://tec.openplanner.team/stops/LbRkirc1", "https://tec.openplanner.team/stops/LbRkirc2"], ["https://tec.openplanner.team/stops/N270afa", "https://tec.openplanner.team/stops/N270afd"], ["https://tec.openplanner.team/stops/N501zca", "https://tec.openplanner.team/stops/N501zea"], ["https://tec.openplanner.team/stops/H2hl110a", "https://tec.openplanner.team/stops/H2pe157b"], ["https://tec.openplanner.team/stops/N301aha", "https://tec.openplanner.team/stops/N301ahb"], ["https://tec.openplanner.team/stops/Bbst4br3", "https://tec.openplanner.team/stops/Bbstpon1"], ["https://tec.openplanner.team/stops/H1ms270a", "https://tec.openplanner.team/stops/H1ms277a"], ["https://tec.openplanner.team/stops/LGemari1", "https://tec.openplanner.team/stops/LGevygh2"], ["https://tec.openplanner.team/stops/X602aia", "https://tec.openplanner.team/stops/X653aca"], ["https://tec.openplanner.team/stops/N212aka", "https://tec.openplanner.team/stops/N212akb"], ["https://tec.openplanner.team/stops/H4ne135a", "https://tec.openplanner.team/stops/H4te255a"], ["https://tec.openplanner.team/stops/Lsetroq1", "https://tec.openplanner.team/stops/Lsetroq2"], ["https://tec.openplanner.team/stops/H1as100b", "https://tec.openplanner.team/stops/H1as104b"], ["https://tec.openplanner.team/stops/Bitrcro2", "https://tec.openplanner.team/stops/Bitrmde1"], ["https://tec.openplanner.team/stops/H4pl111a", "https://tec.openplanner.team/stops/H4pl111b"], ["https://tec.openplanner.team/stops/N212aja", "https://tec.openplanner.team/stops/N212ajb"], ["https://tec.openplanner.team/stops/N308anb", "https://tec.openplanner.team/stops/N308aoa"], ["https://tec.openplanner.team/stops/Llglibo4", "https://tec.openplanner.team/stops/Llgptlo4"], ["https://tec.openplanner.team/stops/X601bna", "https://tec.openplanner.team/stops/X601dea"], ["https://tec.openplanner.team/stops/LHgeg--1", "https://tec.openplanner.team/stops/LHggeer1"], ["https://tec.openplanner.team/stops/X657aeb", "https://tec.openplanner.team/stops/X659ala"], ["https://tec.openplanner.team/stops/LOTferm1", "https://tec.openplanner.team/stops/LOTsav-1"], ["https://tec.openplanner.team/stops/X786aab", "https://tec.openplanner.team/stops/X786aba"], ["https://tec.openplanner.team/stops/N232aaa", "https://tec.openplanner.team/stops/N232aab"], ["https://tec.openplanner.team/stops/LbUgend2", "https://tec.openplanner.team/stops/LbUverb1"], ["https://tec.openplanner.team/stops/Ctmmath2", "https://tec.openplanner.team/stops/Ctmsncb2"], ["https://tec.openplanner.team/stops/Lprsher1", "https://tec.openplanner.team/stops/Lprspra2"], ["https://tec.openplanner.team/stops/N111aba", "https://tec.openplanner.team/stops/N111abb"], ["https://tec.openplanner.team/stops/LrEkais2", "https://tec.openplanner.team/stops/Lthgros1"], ["https://tec.openplanner.team/stops/N301aga", "https://tec.openplanner.team/stops/N301aha"], ["https://tec.openplanner.team/stops/LCewaut1", "https://tec.openplanner.team/stops/LCewaut2"], ["https://tec.openplanner.team/stops/Bgnvoha2", "https://tec.openplanner.team/stops/Bgnvoha3"], ["https://tec.openplanner.team/stops/X615ava", "https://tec.openplanner.team/stops/X615avb"], ["https://tec.openplanner.team/stops/H1mm122b", "https://tec.openplanner.team/stops/H1mm122c"], ["https://tec.openplanner.team/stops/Cgpchgo2", "https://tec.openplanner.team/stops/H2tz115a"], ["https://tec.openplanner.team/stops/H1vg358a", "https://tec.openplanner.team/stops/H1vg358b"], ["https://tec.openplanner.team/stops/LTIdjal1", "https://tec.openplanner.team/stops/LTIdjal2"], ["https://tec.openplanner.team/stops/LBjvill2", "https://tec.openplanner.team/stops/X575ahb"], ["https://tec.openplanner.team/stops/X601dcb", "https://tec.openplanner.team/stops/X612afb"], ["https://tec.openplanner.team/stops/X741aga", "https://tec.openplanner.team/stops/X741agb"], ["https://tec.openplanner.team/stops/LVNcoop1", "https://tec.openplanner.team/stops/LVNwanz2"], ["https://tec.openplanner.team/stops/X836aia", "https://tec.openplanner.team/stops/X836aja"], ["https://tec.openplanner.team/stops/X661aob", "https://tec.openplanner.team/stops/X661apb"], ["https://tec.openplanner.team/stops/Cjudest3", "https://tec.openplanner.team/stops/Cjumest2"], ["https://tec.openplanner.team/stops/H4te252a", "https://tec.openplanner.team/stops/H4te259a"], ["https://tec.openplanner.team/stops/X805aea", "https://tec.openplanner.team/stops/X805aeb"], ["https://tec.openplanner.team/stops/Bwatcha2", "https://tec.openplanner.team/stops/Bwatcha3"], ["https://tec.openplanner.team/stops/Bneecha1", "https://tec.openplanner.team/stops/Bneersa2"], ["https://tec.openplanner.team/stops/LHUgare*", "https://tec.openplanner.team/stops/NL80afa"], ["https://tec.openplanner.team/stops/X664apb", "https://tec.openplanner.team/stops/X664aqb"], ["https://tec.openplanner.team/stops/Lsnmala2", "https://tec.openplanner.team/stops/Lsnmala4"], ["https://tec.openplanner.team/stops/H4bd109b", "https://tec.openplanner.team/stops/H4fr141b"], ["https://tec.openplanner.team/stops/LRemorr4", "https://tec.openplanner.team/stops/LRepous1"], ["https://tec.openplanner.team/stops/Cjuaero1", "https://tec.openplanner.team/stops/Cjuaero2"], ["https://tec.openplanner.team/stops/X664aea", "https://tec.openplanner.team/stops/X664afb"], ["https://tec.openplanner.team/stops/LPrcarr1", "https://tec.openplanner.team/stops/LSypesy1"], ["https://tec.openplanner.team/stops/Benggar1", "https://tec.openplanner.team/stops/Bptecar2"], ["https://tec.openplanner.team/stops/H1cu108b", "https://tec.openplanner.team/stops/H1cu126a"], ["https://tec.openplanner.team/stops/LGAholl1", "https://tec.openplanner.team/stops/LGAnovi1"], ["https://tec.openplanner.team/stops/N534bqa", "https://tec.openplanner.team/stops/N534bvb"], ["https://tec.openplanner.team/stops/N165aba", "https://tec.openplanner.team/stops/N165abb"], ["https://tec.openplanner.team/stops/Cturoge1", "https://tec.openplanner.team/stops/Cturoge2"], ["https://tec.openplanner.team/stops/H1ol144b", "https://tec.openplanner.team/stops/H1ol146a"], ["https://tec.openplanner.team/stops/Lrcarse2", "https://tec.openplanner.team/stops/Lrcastr3"], ["https://tec.openplanner.team/stops/N504abb", "https://tec.openplanner.team/stops/N504acb"], ["https://tec.openplanner.team/stops/H4pq112b", "https://tec.openplanner.team/stops/H4pq116a"], ["https://tec.openplanner.team/stops/X636bga", "https://tec.openplanner.team/stops/X637aaa"], ["https://tec.openplanner.team/stops/N576aga", "https://tec.openplanner.team/stops/N576aja"], ["https://tec.openplanner.team/stops/N113abb", "https://tec.openplanner.team/stops/N139aba"], ["https://tec.openplanner.team/stops/LFRhock2", "https://tec.openplanner.team/stops/LSZpiro2"], ["https://tec.openplanner.team/stops/H2bh103d", "https://tec.openplanner.team/stops/H2mg135b"], ["https://tec.openplanner.team/stops/LEN183-1", "https://tec.openplanner.team/stops/LENtour1"], ["https://tec.openplanner.team/stops/Cgymara1", "https://tec.openplanner.team/stops/CMsartc1"], ["https://tec.openplanner.team/stops/N137aab", "https://tec.openplanner.team/stops/N137aia"], ["https://tec.openplanner.team/stops/LEBmoul1", "https://tec.openplanner.team/stops/LLxcrem2"], ["https://tec.openplanner.team/stops/X602ajb", "https://tec.openplanner.team/stops/X602aqb"], ["https://tec.openplanner.team/stops/Lbbbuse1", "https://tec.openplanner.team/stops/Lbhfaye2"], ["https://tec.openplanner.team/stops/N501grc", "https://tec.openplanner.team/stops/N501grf"], ["https://tec.openplanner.team/stops/X741akb", "https://tec.openplanner.team/stops/X741alb"], ["https://tec.openplanner.team/stops/Crcgare2", "https://tec.openplanner.team/stops/NH03agb"], ["https://tec.openplanner.team/stops/X993aca", "https://tec.openplanner.team/stops/X993acb"], ["https://tec.openplanner.team/stops/Bitrbvo1", "https://tec.openplanner.team/stops/Bitrbvo2"], ["https://tec.openplanner.team/stops/Cmghay1", "https://tec.openplanner.team/stops/Cmghay2"], ["https://tec.openplanner.team/stops/Cpcplac2", "https://tec.openplanner.team/stops/Cpcplac4"], ["https://tec.openplanner.team/stops/H2hg147a", "https://tec.openplanner.team/stops/H2hg156a"], ["https://tec.openplanner.team/stops/Cmmplac2", "https://tec.openplanner.team/stops/Cmmptno2"], ["https://tec.openplanner.team/stops/Cmoruau2", "https://tec.openplanner.team/stops/Cmovies2"], ["https://tec.openplanner.team/stops/N515aob", "https://tec.openplanner.team/stops/NR27abb"], ["https://tec.openplanner.team/stops/Lvtbocl1", "https://tec.openplanner.team/stops/Lvtmeun1"], ["https://tec.openplanner.team/stops/H1cu111b", "https://tec.openplanner.team/stops/H1cu125c"], ["https://tec.openplanner.team/stops/H1ro131a", "https://tec.openplanner.team/stops/H1ro133a"], ["https://tec.openplanner.team/stops/LNCloui1", "https://tec.openplanner.team/stops/LNCneuv2"], ["https://tec.openplanner.team/stops/Btsllib2", "https://tec.openplanner.team/stops/Bwspspa1"], ["https://tec.openplanner.team/stops/LbOvith2", "https://tec.openplanner.team/stops/LmYwall1"], ["https://tec.openplanner.team/stops/N531ara", "https://tec.openplanner.team/stops/N576ajb"], ["https://tec.openplanner.team/stops/Lligare1", "https://tec.openplanner.team/stops/Llithon2"], ["https://tec.openplanner.team/stops/NL76aib", "https://tec.openplanner.team/stops/NL76ajb"], ["https://tec.openplanner.team/stops/NL76alc", "https://tec.openplanner.team/stops/NL76ald"], ["https://tec.openplanner.team/stops/Llgnico1", "https://tec.openplanner.team/stops/Llgsnap2"], ["https://tec.openplanner.team/stops/X661arb", "https://tec.openplanner.team/stops/X661asb"], ["https://tec.openplanner.team/stops/LXflong1", "https://tec.openplanner.team/stops/LXfsolw1"], ["https://tec.openplanner.team/stops/H4hs136a", "https://tec.openplanner.team/stops/H4pi134b"], ["https://tec.openplanner.team/stops/N135aed", "https://tec.openplanner.team/stops/N135aob"], ["https://tec.openplanner.team/stops/X904abb", "https://tec.openplanner.team/stops/X904adb"], ["https://tec.openplanner.team/stops/N506aga", "https://tec.openplanner.team/stops/N506alb"], ["https://tec.openplanner.team/stops/X818aia", "https://tec.openplanner.team/stops/X818ajb"], ["https://tec.openplanner.team/stops/H1ha190b", "https://tec.openplanner.team/stops/H1ha191b"], ["https://tec.openplanner.team/stops/N122ada", "https://tec.openplanner.team/stops/N122aib"], ["https://tec.openplanner.team/stops/Cgdfras1", "https://tec.openplanner.team/stops/Cgdfras2"], ["https://tec.openplanner.team/stops/N102aaa", "https://tec.openplanner.team/stops/N102acb"], ["https://tec.openplanner.team/stops/N541aca", "https://tec.openplanner.team/stops/N541acb"], ["https://tec.openplanner.team/stops/Clibrun2", "https://tec.openplanner.team/stops/Ctmwaut2"], ["https://tec.openplanner.team/stops/X837afa", "https://tec.openplanner.team/stops/X837alb"], ["https://tec.openplanner.team/stops/X822afa", "https://tec.openplanner.team/stops/X822akb"], ["https://tec.openplanner.team/stops/N151abb", "https://tec.openplanner.team/stops/N151akb"], ["https://tec.openplanner.team/stops/H2tr249a", "https://tec.openplanner.team/stops/H2tr251a"], ["https://tec.openplanner.team/stops/LLMjacq1", "https://tec.openplanner.team/stops/LLMjacq2"], ["https://tec.openplanner.team/stops/H2hg150a", "https://tec.openplanner.team/stops/H2hg154e"], ["https://tec.openplanner.team/stops/Cjudest2", "https://tec.openplanner.team/stops/Cjudest4"], ["https://tec.openplanner.team/stops/H1mk108a", "https://tec.openplanner.team/stops/H1mk123b"], ["https://tec.openplanner.team/stops/X762adb", "https://tec.openplanner.team/stops/X764aca"], ["https://tec.openplanner.team/stops/N204aea", "https://tec.openplanner.team/stops/N204aeb"], ["https://tec.openplanner.team/stops/N120aia", "https://tec.openplanner.team/stops/N120aja"], ["https://tec.openplanner.team/stops/Lprmc--4", "https://tec.openplanner.team/stops/Lprpous1"], ["https://tec.openplanner.team/stops/Canecbr1", "https://tec.openplanner.team/stops/Canvane1"], ["https://tec.openplanner.team/stops/H1ch105a", "https://tec.openplanner.team/stops/H1ch106a"], ["https://tec.openplanner.team/stops/X979aib", "https://tec.openplanner.team/stops/X979ajb"], ["https://tec.openplanner.team/stops/Cnacout1", "https://tec.openplanner.team/stops/Cnating2"], ["https://tec.openplanner.team/stops/LPOeg--1", "https://tec.openplanner.team/stops/LPOwaut1"], ["https://tec.openplanner.team/stops/N308ana", "https://tec.openplanner.team/stops/N308bia"], ["https://tec.openplanner.team/stops/Cpccoss2", "https://tec.openplanner.team/stops/Cpcwaut1"], ["https://tec.openplanner.team/stops/LOTsav-1", "https://tec.openplanner.team/stops/LOTtong1"], ["https://tec.openplanner.team/stops/H3go101a", "https://tec.openplanner.team/stops/H3go101b"], ["https://tec.openplanner.team/stops/LAUbirv1", "https://tec.openplanner.team/stops/LHChoek4"], ["https://tec.openplanner.team/stops/X937abb", "https://tec.openplanner.team/stops/X950abb"], ["https://tec.openplanner.team/stops/Cbwcab2", "https://tec.openplanner.team/stops/Cmgcabi1"], ["https://tec.openplanner.team/stops/Clbhvil2", "https://tec.openplanner.team/stops/Clbptno3"], ["https://tec.openplanner.team/stops/X717aha", "https://tec.openplanner.team/stops/X782aja"], ["https://tec.openplanner.team/stops/LHVetoi2", "https://tec.openplanner.team/stops/LHVgoro1"], ["https://tec.openplanner.team/stops/LAYambl2", "https://tec.openplanner.team/stops/LAYharz1"], ["https://tec.openplanner.team/stops/N538aca", "https://tec.openplanner.team/stops/N538amc"], ["https://tec.openplanner.team/stops/Cthoues1", "https://tec.openplanner.team/stops/Cthvbas4"], ["https://tec.openplanner.team/stops/LCUjonc2", "https://tec.openplanner.team/stops/LCUmora1"], ["https://tec.openplanner.team/stops/LLThosd1", "https://tec.openplanner.team/stops/LLThosd2"], ["https://tec.openplanner.team/stops/N538apa", "https://tec.openplanner.team/stops/N538asa"], ["https://tec.openplanner.team/stops/N539ava", "https://tec.openplanner.team/stops/N539bcb"], ["https://tec.openplanner.team/stops/Bbaualz1", "https://tec.openplanner.team/stops/Bbaucai2"], ["https://tec.openplanner.team/stops/H4mx119b", "https://tec.openplanner.team/stops/H4mx119c"], ["https://tec.openplanner.team/stops/N229adb", "https://tec.openplanner.team/stops/N229aqb"], ["https://tec.openplanner.team/stops/Llochar5", "https://tec.openplanner.team/stops/Lloross1"], ["https://tec.openplanner.team/stops/Cfccuch2", "https://tec.openplanner.team/stops/Cvrfema2"], ["https://tec.openplanner.team/stops/LATdame2", "https://tec.openplanner.team/stops/LVNbale1"], ["https://tec.openplanner.team/stops/N155ajb", "https://tec.openplanner.team/stops/N155akb"], ["https://tec.openplanner.team/stops/Ctrecol3", "https://tec.openplanner.team/stops/Ctrrpla2"], ["https://tec.openplanner.team/stops/H4ca124a", "https://tec.openplanner.team/stops/H4ca124b"], ["https://tec.openplanner.team/stops/Cmtchas1", "https://tec.openplanner.team/stops/Cmttkai1"], ["https://tec.openplanner.team/stops/Cnanoir2", "https://tec.openplanner.team/stops/Cnaplha4"], ["https://tec.openplanner.team/stops/N584aba", "https://tec.openplanner.team/stops/N584cac"], ["https://tec.openplanner.team/stops/N229ala", "https://tec.openplanner.team/stops/N229alb"], ["https://tec.openplanner.team/stops/H1te176a", "https://tec.openplanner.team/stops/H1te188b"], ["https://tec.openplanner.team/stops/Cbmgare2", "https://tec.openplanner.team/stops/H1tt106a"], ["https://tec.openplanner.team/stops/LLM4rou1", "https://tec.openplanner.team/stops/LLM4rou2"], ["https://tec.openplanner.team/stops/N501ega", "https://tec.openplanner.team/stops/N501era"], ["https://tec.openplanner.team/stops/LCReg--1", "https://tec.openplanner.team/stops/LCRf14-2"], ["https://tec.openplanner.team/stops/LFEmala2", "https://tec.openplanner.team/stops/X597agb"], ["https://tec.openplanner.team/stops/N514aaa", "https://tec.openplanner.team/stops/N514anb"], ["https://tec.openplanner.team/stops/Lsehcoc2", "https://tec.openplanner.team/stops/Lsetrav1"], ["https://tec.openplanner.team/stops/H1ma234a", "https://tec.openplanner.team/stops/H1mj124a"], ["https://tec.openplanner.team/stops/LHodomm1", "https://tec.openplanner.team/stops/LHovill1"], ["https://tec.openplanner.team/stops/LBevill1", "https://tec.openplanner.team/stops/LWHkerk1"], ["https://tec.openplanner.team/stops/LBgcroi1", "https://tec.openplanner.team/stops/LGmhedo1"], ["https://tec.openplanner.team/stops/X901apa", "https://tec.openplanner.team/stops/X901aqb"], ["https://tec.openplanner.team/stops/X919afa", "https://tec.openplanner.team/stops/X919ahb"], ["https://tec.openplanner.team/stops/Cfoermi1", "https://tec.openplanner.team/stops/Cfoermi2"], ["https://tec.openplanner.team/stops/LVTeg--1", "https://tec.openplanner.team/stops/LVTtrou1"], ["https://tec.openplanner.team/stops/LBvnico2", "https://tec.openplanner.team/stops/LBvviem2"], ["https://tec.openplanner.team/stops/LBVronx2", "https://tec.openplanner.team/stops/LRfbeau1"], ["https://tec.openplanner.team/stops/X725apa", "https://tec.openplanner.team/stops/X725beb"], ["https://tec.openplanner.team/stops/LCPscay2", "https://tec.openplanner.team/stops/LOnec--1"], ["https://tec.openplanner.team/stops/LLmcarr2", "https://tec.openplanner.team/stops/LRepous1"], ["https://tec.openplanner.team/stops/N522apb", "https://tec.openplanner.team/stops/N522ara"], ["https://tec.openplanner.team/stops/Llgnyst2", "https://tec.openplanner.team/stops/Llgrema2"], ["https://tec.openplanner.team/stops/H1ob330b", "https://tec.openplanner.team/stops/H1ob341a"], ["https://tec.openplanner.team/stops/Bottcbp1", "https://tec.openplanner.team/stops/Botteco1"], ["https://tec.openplanner.team/stops/X904agb", "https://tec.openplanner.team/stops/X904anb"], ["https://tec.openplanner.team/stops/H4ft133a", "https://tec.openplanner.team/stops/H4ft133b"], ["https://tec.openplanner.team/stops/Bgnvcha1", "https://tec.openplanner.team/stops/Bgnvvol2"], ["https://tec.openplanner.team/stops/N505acb", "https://tec.openplanner.team/stops/N505aib"], ["https://tec.openplanner.team/stops/Crglyre2", "https://tec.openplanner.team/stops/Cstdona6"], ["https://tec.openplanner.team/stops/Llmeg--2", "https://tec.openplanner.team/stops/Llmlaro2"], ["https://tec.openplanner.team/stops/Bwaygrg1", "https://tec.openplanner.team/stops/Cwsegli1"], ["https://tec.openplanner.team/stops/Cfcgrat2", "https://tec.openplanner.team/stops/Cfcleco2"], ["https://tec.openplanner.team/stops/H2lh130b", "https://tec.openplanner.team/stops/H2lh132a"], ["https://tec.openplanner.team/stops/H1wa164a", "https://tec.openplanner.team/stops/H1wa164b"], ["https://tec.openplanner.team/stops/N331ada", "https://tec.openplanner.team/stops/N331aea"], ["https://tec.openplanner.team/stops/X789aeb", "https://tec.openplanner.team/stops/X789aga"], ["https://tec.openplanner.team/stops/LPutins2", "https://tec.openplanner.team/stops/LrEmeil1"], ["https://tec.openplanner.team/stops/Canboni1", "https://tec.openplanner.team/stops/Canfief2"], ["https://tec.openplanner.team/stops/Ccychap1", "https://tec.openplanner.team/stops/Cvlpeau2"], ["https://tec.openplanner.team/stops/LPLg90-2", "https://tec.openplanner.team/stops/LPLruis1"], ["https://tec.openplanner.team/stops/LLvferm1", "https://tec.openplanner.team/stops/LLvpost1"], ["https://tec.openplanner.team/stops/X641aub", "https://tec.openplanner.team/stops/X641azb"], ["https://tec.openplanner.team/stops/Binclon2", "https://tec.openplanner.team/stops/Bsrbtil2"], ["https://tec.openplanner.team/stops/X882agb", "https://tec.openplanner.team/stops/X882amb"], ["https://tec.openplanner.team/stops/Ccigill1", "https://tec.openplanner.team/stops/Ccisart1"], ["https://tec.openplanner.team/stops/X768aea", "https://tec.openplanner.team/stops/X768aed"], ["https://tec.openplanner.team/stops/Bovepla2", "https://tec.openplanner.team/stops/Brsrfen2"], ["https://tec.openplanner.team/stops/N577aab", "https://tec.openplanner.team/stops/N577acb"], ["https://tec.openplanner.team/stops/LWycabi1", "https://tec.openplanner.team/stops/LWycarr1"], ["https://tec.openplanner.team/stops/Lsecoll1", "https://tec.openplanner.team/stops/Lsephar1"], ["https://tec.openplanner.team/stops/X793aib", "https://tec.openplanner.team/stops/X793aoa"], ["https://tec.openplanner.team/stops/H1bi100b", "https://tec.openplanner.team/stops/H1bi101a"], ["https://tec.openplanner.team/stops/N531ala", "https://tec.openplanner.team/stops/N531ara"], ["https://tec.openplanner.team/stops/Cfrchfe1", "https://tec.openplanner.team/stops/Cfrcoqu3"], ["https://tec.openplanner.team/stops/N209aid", "https://tec.openplanner.team/stops/N209ana"], ["https://tec.openplanner.team/stops/Bhmmlad1", "https://tec.openplanner.team/stops/Bhmmmon2"], ["https://tec.openplanner.team/stops/X982ana", "https://tec.openplanner.team/stops/X982anb"], ["https://tec.openplanner.team/stops/H4ry129b", "https://tec.openplanner.team/stops/H4ry141a"], ["https://tec.openplanner.team/stops/LBNover1", "https://tec.openplanner.team/stops/LBNover2"], ["https://tec.openplanner.team/stops/N151aka", "https://tec.openplanner.team/stops/N151akb"], ["https://tec.openplanner.team/stops/LLrjeho1", "https://tec.openplanner.team/stops/LLrpape4"], ["https://tec.openplanner.team/stops/Cfmpui82", "https://tec.openplanner.team/stops/Cfmrrou2"], ["https://tec.openplanner.team/stops/N230aga", "https://tec.openplanner.team/stops/N230ajb"], ["https://tec.openplanner.team/stops/X813aca", "https://tec.openplanner.team/stops/X813ada"], ["https://tec.openplanner.team/stops/H2hl110a", "https://tec.openplanner.team/stops/H2hl111a"], ["https://tec.openplanner.team/stops/N501aoa", "https://tec.openplanner.team/stops/N501mja"], ["https://tec.openplanner.team/stops/Cbuegl2", "https://tec.openplanner.team/stops/Cbugara1"], ["https://tec.openplanner.team/stops/X602aib", "https://tec.openplanner.team/stops/X653abb"], ["https://tec.openplanner.team/stops/Ltheg--1", "https://tec.openplanner.team/stops/Lthgros2"], ["https://tec.openplanner.team/stops/Bwspmon3", "https://tec.openplanner.team/stops/Bwspmon4"], ["https://tec.openplanner.team/stops/N512anb", "https://tec.openplanner.team/stops/N512aoa"], ["https://tec.openplanner.team/stops/N503aaa", "https://tec.openplanner.team/stops/N509aja"], ["https://tec.openplanner.team/stops/Lbrboul1", "https://tec.openplanner.team/stops/Lbrcard2"], ["https://tec.openplanner.team/stops/Llieg--3", "https://tec.openplanner.team/stops/Llivina2"], ["https://tec.openplanner.team/stops/N522agb", "https://tec.openplanner.team/stops/N522aha"], ["https://tec.openplanner.team/stops/H4lg100a", "https://tec.openplanner.team/stops/H4ry131b"], ["https://tec.openplanner.team/stops/H1mb127b", "https://tec.openplanner.team/stops/H1mb136b"], ["https://tec.openplanner.team/stops/N515aia", "https://tec.openplanner.team/stops/N515ajb"], ["https://tec.openplanner.team/stops/N150afa", "https://tec.openplanner.team/stops/N150aib"], ["https://tec.openplanner.team/stops/Cchoues2", "https://tec.openplanner.team/stops/CMpige2"], ["https://tec.openplanner.team/stops/X824ajb", "https://tec.openplanner.team/stops/X826aab"], ["https://tec.openplanner.team/stops/LCUmonu1", "https://tec.openplanner.team/stops/LEnvill1"], ["https://tec.openplanner.team/stops/LDmwarf1", "https://tec.openplanner.team/stops/LSGmale2"], ["https://tec.openplanner.team/stops/LCPcomp1", "https://tec.openplanner.team/stops/LXocomb2"], ["https://tec.openplanner.team/stops/NC24ajb", "https://tec.openplanner.team/stops/NC24aka"], ["https://tec.openplanner.team/stops/H4or113b", "https://tec.openplanner.team/stops/H4or115b"], ["https://tec.openplanner.team/stops/H1fl138a", "https://tec.openplanner.team/stops/H1fl142b"], ["https://tec.openplanner.team/stops/Bwatchb1", "https://tec.openplanner.team/stops/Bwatjbo1"], ["https://tec.openplanner.team/stops/Bjaufca2", "https://tec.openplanner.team/stops/Bjaupro1"], ["https://tec.openplanner.team/stops/X740aab", "https://tec.openplanner.team/stops/X912akb"], ["https://tec.openplanner.team/stops/X826aeb", "https://tec.openplanner.team/stops/X826aha"], ["https://tec.openplanner.team/stops/Bgdhcsh2", "https://tec.openplanner.team/stops/Blinhue2"], ["https://tec.openplanner.team/stops/LlCauto2", "https://tec.openplanner.team/stops/LlChebs1"], ["https://tec.openplanner.team/stops/Bgzdegl3", "https://tec.openplanner.team/stops/Bgzdgst2"], ["https://tec.openplanner.team/stops/Lflcle-1", "https://tec.openplanner.team/stops/Lflmaxi3"], ["https://tec.openplanner.team/stops/Clusncb1", "https://tec.openplanner.team/stops/Cpcwaut2"], ["https://tec.openplanner.team/stops/H3so168a", "https://tec.openplanner.team/stops/H3so174a"], ["https://tec.openplanner.team/stops/LsVgils1", "https://tec.openplanner.team/stops/LsVgils2"], ["https://tec.openplanner.team/stops/LCIneuv2", "https://tec.openplanner.team/stops/LCIpiet1"], ["https://tec.openplanner.team/stops/X727aaa", "https://tec.openplanner.team/stops/X727aab"], ["https://tec.openplanner.team/stops/Btgrdoc1", "https://tec.openplanner.team/stops/N584cab"], ["https://tec.openplanner.team/stops/LeUbael1", "https://tec.openplanner.team/stops/LeUgeme1"], ["https://tec.openplanner.team/stops/H1fa120b", "https://tec.openplanner.team/stops/H1ry134b"], ["https://tec.openplanner.team/stops/Ljexhav1", "https://tec.openplanner.team/stops/Ljexhav2"], ["https://tec.openplanner.team/stops/LlgLAMB1", "https://tec.openplanner.team/stops/LlgLAMB2"], ["https://tec.openplanner.team/stops/X634afb", "https://tec.openplanner.team/stops/X634aja"], ["https://tec.openplanner.team/stops/H2tr251a", "https://tec.openplanner.team/stops/H2tr253b"], ["https://tec.openplanner.team/stops/Bclgbvi1", "https://tec.openplanner.team/stops/Bwavdmo2"], ["https://tec.openplanner.team/stops/X639aeb", "https://tec.openplanner.team/stops/X644acb"], ["https://tec.openplanner.team/stops/Cwfanci1", "https://tec.openplanner.team/stops/Cwfronc2"], ["https://tec.openplanner.team/stops/X760adb", "https://tec.openplanner.team/stops/X760aga"], ["https://tec.openplanner.team/stops/LHAlacr1", "https://tec.openplanner.team/stops/LHAleru2"], ["https://tec.openplanner.team/stops/Cjualtr2", "https://tec.openplanner.team/stops/Cjutrou3"], ["https://tec.openplanner.team/stops/H4bo110b", "https://tec.openplanner.team/stops/H5st164a"], ["https://tec.openplanner.team/stops/H4ma418a", "https://tec.openplanner.team/stops/H4ma420b"], ["https://tec.openplanner.team/stops/Llaacca1", "https://tec.openplanner.team/stops/Llabriq2"], ["https://tec.openplanner.team/stops/LkEgss-2", "https://tec.openplanner.team/stops/LkEsada2"], ["https://tec.openplanner.team/stops/X734aka", "https://tec.openplanner.team/stops/X734akb"], ["https://tec.openplanner.team/stops/N515aoa", "https://tec.openplanner.team/stops/N515aob"], ["https://tec.openplanner.team/stops/Llgjenn3", "https://tec.openplanner.team/stops/Llgjenn4"], ["https://tec.openplanner.team/stops/LdEkreu2", "https://tec.openplanner.team/stops/LmDwei31"], ["https://tec.openplanner.team/stops/Ccupdes1", "https://tec.openplanner.team/stops/Ccupdes2"], ["https://tec.openplanner.team/stops/LBhschu2", "https://tec.openplanner.team/stops/X793afb"], ["https://tec.openplanner.team/stops/H1qu100a", "https://tec.openplanner.team/stops/H1qu100d"], ["https://tec.openplanner.team/stops/Bovetdo1", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://tec.openplanner.team/stops/X614aza", "https://tec.openplanner.team/stops/X614bab"], ["https://tec.openplanner.team/stops/LAVpequ2", "https://tec.openplanner.team/stops/LVHtill1"], ["https://tec.openplanner.team/stops/Balswsa1", "https://tec.openplanner.team/stops/Brsgrol1"], ["https://tec.openplanner.team/stops/X877aaa", "https://tec.openplanner.team/stops/X877adb"], ["https://tec.openplanner.team/stops/LOncar-*", "https://tec.openplanner.team/stops/LOnec--2"], ["https://tec.openplanner.team/stops/Cjucouc2", "https://tec.openplanner.team/stops/Cjumest1"], ["https://tec.openplanner.team/stops/Lpeprev1", "https://tec.openplanner.team/stops/Lpesart2"], ["https://tec.openplanner.team/stops/LWEcite1", "https://tec.openplanner.team/stops/LWEcomp1"], ["https://tec.openplanner.team/stops/H4mo171a", "https://tec.openplanner.team/stops/H4mo183a"], ["https://tec.openplanner.team/stops/N207aaa", "https://tec.openplanner.team/stops/N207afa"], ["https://tec.openplanner.team/stops/Benimar2", "https://tec.openplanner.team/stops/NR21aib"], ["https://tec.openplanner.team/stops/LLVfour1", "https://tec.openplanner.team/stops/X575agb"], ["https://tec.openplanner.team/stops/H1bu136b", "https://tec.openplanner.team/stops/H3bi108a"], ["https://tec.openplanner.team/stops/X661ata", "https://tec.openplanner.team/stops/X661aua"], ["https://tec.openplanner.team/stops/Bernpon2", "https://tec.openplanner.team/stops/Bernrar2"], ["https://tec.openplanner.team/stops/LvA30--1", "https://tec.openplanner.team/stops/LvA30--2"], ["https://tec.openplanner.team/stops/LPcforg1", "https://tec.openplanner.team/stops/LTGsucr2"], ["https://tec.openplanner.team/stops/Bsomjon2", "https://tec.openplanner.team/stops/N584acb"], ["https://tec.openplanner.team/stops/Cvstouv2", "https://tec.openplanner.team/stops/N530afa"], ["https://tec.openplanner.team/stops/Bhalalb1", "https://tec.openplanner.team/stops/Bhalalb2"], ["https://tec.openplanner.team/stops/Bbcodam4", "https://tec.openplanner.team/stops/H2ec110b"], ["https://tec.openplanner.team/stops/Cwgmell1", "https://tec.openplanner.team/stops/Cwgmell4"], ["https://tec.openplanner.team/stops/Cvvchea1", "https://tec.openplanner.team/stops/Cvvgrsa2"], ["https://tec.openplanner.team/stops/LCPbell2", "https://tec.openplanner.team/stops/LCPoneu2"], ["https://tec.openplanner.team/stops/X793afa", "https://tec.openplanner.team/stops/X793afd"], ["https://tec.openplanner.team/stops/H5qu141b", "https://tec.openplanner.team/stops/H5qu154b"], ["https://tec.openplanner.team/stops/LFreg--1", "https://tec.openplanner.team/stops/LNEpass1"], ["https://tec.openplanner.team/stops/N127aaa", "https://tec.openplanner.team/stops/N134afb"], ["https://tec.openplanner.team/stops/N501bjy", "https://tec.openplanner.team/stops/N999aab"], ["https://tec.openplanner.team/stops/LHUfoss*", "https://tec.openplanner.team/stops/LHUneuv1"], ["https://tec.openplanner.team/stops/X370ada", "https://tec.openplanner.team/stops/X370adb"], ["https://tec.openplanner.team/stops/N309aac", "https://tec.openplanner.team/stops/N309aba"], ["https://tec.openplanner.team/stops/N543aja", "https://tec.openplanner.team/stops/N543awg"], ["https://tec.openplanner.team/stops/X681afa", "https://tec.openplanner.team/stops/X681afb"], ["https://tec.openplanner.team/stops/LBsoha-2", "https://tec.openplanner.team/stops/NL72ada"], ["https://tec.openplanner.team/stops/LhGfrie2", "https://tec.openplanner.team/stops/LlNm%C3%BChl1"], ["https://tec.openplanner.team/stops/LFmroye2", "https://tec.openplanner.team/stops/LMOchpl1"], ["https://tec.openplanner.team/stops/N543ala", "https://tec.openplanner.team/stops/N543avg"], ["https://tec.openplanner.team/stops/N110adb", "https://tec.openplanner.team/stops/N114aab"], ["https://tec.openplanner.team/stops/Bnivcom1", "https://tec.openplanner.team/stops/Bnivvai2"], ["https://tec.openplanner.team/stops/Llivina1", "https://tec.openplanner.team/stops/Llivina2"], ["https://tec.openplanner.team/stops/X754afa", "https://tec.openplanner.team/stops/X754afb"], ["https://tec.openplanner.team/stops/X657aaa", "https://tec.openplanner.team/stops/X657ama"], ["https://tec.openplanner.team/stops/LOChuy-1", "https://tec.openplanner.team/stops/LOCloup1"], ["https://tec.openplanner.team/stops/Bgerd322", "https://tec.openplanner.team/stops/NB33afa"], ["https://tec.openplanner.team/stops/Ctyhame2", "https://tec.openplanner.team/stops/N137aha"], ["https://tec.openplanner.team/stops/Bmlncle2", "https://tec.openplanner.team/stops/Bmlnpab2"], ["https://tec.openplanner.team/stops/H1hi122a", "https://tec.openplanner.team/stops/H1ht126b"], ["https://tec.openplanner.team/stops/X662aba", "https://tec.openplanner.team/stops/X663aga"], ["https://tec.openplanner.team/stops/Lfhcoop1", "https://tec.openplanner.team/stops/Ljerose3"], ["https://tec.openplanner.team/stops/N509aqa", "https://tec.openplanner.team/stops/N511aob"], ["https://tec.openplanner.team/stops/X627ada", "https://tec.openplanner.team/stops/X629aab"], ["https://tec.openplanner.team/stops/Bllngar2", "https://tec.openplanner.team/stops/Bllngar7"], ["https://tec.openplanner.team/stops/Bjodmal2", "https://tec.openplanner.team/stops/Bjodppe2"], ["https://tec.openplanner.team/stops/N542alb", "https://tec.openplanner.team/stops/N542arb"], ["https://tec.openplanner.team/stops/NL77aha", "https://tec.openplanner.team/stops/NL77aia"], ["https://tec.openplanner.team/stops/N323abb", "https://tec.openplanner.team/stops/N387ahb"], ["https://tec.openplanner.team/stops/N383ada", "https://tec.openplanner.team/stops/N874amb"], ["https://tec.openplanner.team/stops/N532aaa", "https://tec.openplanner.team/stops/N532aab"], ["https://tec.openplanner.team/stops/N118aub", "https://tec.openplanner.team/stops/N118bab"], ["https://tec.openplanner.team/stops/H2mm144b", "https://tec.openplanner.team/stops/H2mo131b"], ["https://tec.openplanner.team/stops/Clulidl1", "https://tec.openplanner.team/stops/Clulidl2"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N308bjb"], ["https://tec.openplanner.team/stops/Bneecha2", "https://tec.openplanner.team/stops/Boplsma4"], ["https://tec.openplanner.team/stops/X953aca", "https://tec.openplanner.team/stops/X953adb"], ["https://tec.openplanner.team/stops/H1br125a", "https://tec.openplanner.team/stops/H1vb143a"], ["https://tec.openplanner.team/stops/H4ty342a", "https://tec.openplanner.team/stops/H4ty349a"], ["https://tec.openplanner.team/stops/LFCotte1", "https://tec.openplanner.team/stops/LWRvert2"], ["https://tec.openplanner.team/stops/Crajasm2", "https://tec.openplanner.team/stops/Cramadi2"], ["https://tec.openplanner.team/stops/N506bja", "https://tec.openplanner.team/stops/N506bjb"], ["https://tec.openplanner.team/stops/LeLbutg1", "https://tec.openplanner.team/stops/LeLbutg2"], ["https://tec.openplanner.team/stops/Bnetcor1", "https://tec.openplanner.team/stops/Bnetvan1"], ["https://tec.openplanner.team/stops/Bincegl2", "https://tec.openplanner.team/stops/Boppcar1"], ["https://tec.openplanner.team/stops/H1er109a", "https://tec.openplanner.team/stops/H1er113b"], ["https://tec.openplanner.team/stops/Bptrcra1", "https://tec.openplanner.team/stops/Bptrcra2"], ["https://tec.openplanner.team/stops/N531agb", "https://tec.openplanner.team/stops/N531aib"], ["https://tec.openplanner.team/stops/Lvoplac1", "https://tec.openplanner.team/stops/Lvoplac2"], ["https://tec.openplanner.team/stops/Bblaang1", "https://tec.openplanner.team/stops/Bblajap1"], ["https://tec.openplanner.team/stops/Lanc14v1", "https://tec.openplanner.team/stops/Llgnaes1"], ["https://tec.openplanner.team/stops/Ccigene2", "https://tec.openplanner.team/stops/Ccipano1"], ["https://tec.openplanner.team/stops/N207afb", "https://tec.openplanner.team/stops/N209aba"], ["https://tec.openplanner.team/stops/X713aeb", "https://tec.openplanner.team/stops/X713aib"], ["https://tec.openplanner.team/stops/Cmmheur1", "https://tec.openplanner.team/stops/Cmmjami1"], ["https://tec.openplanner.team/stops/LHcbaro2", "https://tec.openplanner.team/stops/LSZpiro2"], ["https://tec.openplanner.team/stops/H4os223b", "https://tec.openplanner.team/stops/H4va232b"], ["https://tec.openplanner.team/stops/N301aka", "https://tec.openplanner.team/stops/N301ana"], ["https://tec.openplanner.team/stops/H4ty286a", "https://tec.openplanner.team/stops/H4ty317a"], ["https://tec.openplanner.team/stops/X542aha", "https://tec.openplanner.team/stops/X777aca"], ["https://tec.openplanner.team/stops/Bcbqh451", "https://tec.openplanner.team/stops/Bosqpco2"], ["https://tec.openplanner.team/stops/H4ml206a", "https://tec.openplanner.team/stops/H4ml206b"], ["https://tec.openplanner.team/stops/N506agb", "https://tec.openplanner.team/stops/N506ahb"], ["https://tec.openplanner.team/stops/X766aea", "https://tec.openplanner.team/stops/X766aeb"], ["https://tec.openplanner.team/stops/Llgcoll1", "https://tec.openplanner.team/stops/Llgtawe0"], ["https://tec.openplanner.team/stops/Bviravi1", "https://tec.openplanner.team/stops/Bvirgar1"], ["https://tec.openplanner.team/stops/H4to134b", "https://tec.openplanner.team/stops/H4to138a"], ["https://tec.openplanner.team/stops/X602aia", "https://tec.openplanner.team/stops/X602aka"], ["https://tec.openplanner.team/stops/LWRferm2", "https://tec.openplanner.team/stops/LWRheyd2"], ["https://tec.openplanner.team/stops/Caimeno3", "https://tec.openplanner.team/stops/Crsaise4"], ["https://tec.openplanner.team/stops/Cbfcham3", "https://tec.openplanner.team/stops/Cbfusin2"], ["https://tec.openplanner.team/stops/LSPpomp2", "https://tec.openplanner.team/stops/LSPptch2"], ["https://tec.openplanner.team/stops/Lhrecol2", "https://tec.openplanner.team/stops/Lhrpost2"], ["https://tec.openplanner.team/stops/Cjxdesc2", "https://tec.openplanner.team/stops/Cnapetr2"], ["https://tec.openplanner.team/stops/N229atb", "https://tec.openplanner.team/stops/N540aqa"], ["https://tec.openplanner.team/stops/Cchsud0", "https://tec.openplanner.team/stops/Cchsud08"], ["https://tec.openplanner.team/stops/H4ce100b", "https://tec.openplanner.team/stops/H4ve132b"], ["https://tec.openplanner.team/stops/H4ha171a", "https://tec.openplanner.team/stops/H4ha171b"], ["https://tec.openplanner.team/stops/X982apb", "https://tec.openplanner.team/stops/X982aya"], ["https://tec.openplanner.team/stops/X801bsa", "https://tec.openplanner.team/stops/X801bva"], ["https://tec.openplanner.team/stops/H1ev114a", "https://tec.openplanner.team/stops/H1ev115a"], ["https://tec.openplanner.team/stops/Bgdhdet1", "https://tec.openplanner.team/stops/Blinhue2"], ["https://tec.openplanner.team/stops/Bgdhpco2", "https://tec.openplanner.team/stops/Blineco2"], ["https://tec.openplanner.team/stops/Cnadrev1", "https://tec.openplanner.team/stops/Cnahous2"], ["https://tec.openplanner.team/stops/X777aaa", "https://tec.openplanner.team/stops/X784aia"], ["https://tec.openplanner.team/stops/X902ala", "https://tec.openplanner.team/stops/X902aob"], ["https://tec.openplanner.team/stops/LDapota1", "https://tec.openplanner.team/stops/LDapota2"], ["https://tec.openplanner.team/stops/LGMstin1", "https://tec.openplanner.team/stops/LGMvoue2"], ["https://tec.openplanner.team/stops/H1gr122a", "https://tec.openplanner.team/stops/H1mk116a"], ["https://tec.openplanner.team/stops/Blanove2", "https://tec.openplanner.team/stops/LLaover4"], ["https://tec.openplanner.team/stops/LSMgare1", "https://tec.openplanner.team/stops/LSMtarg1"], ["https://tec.openplanner.team/stops/LVSbleu1", "https://tec.openplanner.team/stops/LVSpn--1"], ["https://tec.openplanner.team/stops/LAUcose1", "https://tec.openplanner.team/stops/LRmha261"], ["https://tec.openplanner.team/stops/X721aca", "https://tec.openplanner.team/stops/X721aoa"], ["https://tec.openplanner.team/stops/Ldicorb2", "https://tec.openplanner.team/stops/Lprmerc*"], ["https://tec.openplanner.team/stops/H1bl103a", "https://tec.openplanner.team/stops/H1bl107a"], ["https://tec.openplanner.team/stops/X641aea", "https://tec.openplanner.team/stops/X641aob"], ["https://tec.openplanner.team/stops/LRRchea3", "https://tec.openplanner.team/stops/LRRchea4"], ["https://tec.openplanner.team/stops/N232bqa", "https://tec.openplanner.team/stops/N232bqb"], ["https://tec.openplanner.team/stops/LtEnach1", "https://tec.openplanner.team/stops/LtEnatu1"], ["https://tec.openplanner.team/stops/Lprferm1", "https://tec.openplanner.team/stops/Lprmoin2"], ["https://tec.openplanner.team/stops/LHegame3", "https://tec.openplanner.team/stops/LHegame4"], ["https://tec.openplanner.team/stops/X640ada", "https://tec.openplanner.team/stops/X640akb"], ["https://tec.openplanner.team/stops/N534adb", "https://tec.openplanner.team/stops/N566adb"], ["https://tec.openplanner.team/stops/H1ro133a", "https://tec.openplanner.team/stops/H1ro141b"], ["https://tec.openplanner.team/stops/X801aga", "https://tec.openplanner.team/stops/X801bqa"], ["https://tec.openplanner.team/stops/X641aca", "https://tec.openplanner.team/stops/X641alb"], ["https://tec.openplanner.team/stops/LVlfooz1", "https://tec.openplanner.team/stops/LVlleno1"], ["https://tec.openplanner.team/stops/Llgdoth2", "https://tec.openplanner.team/stops/Llghopo2"], ["https://tec.openplanner.team/stops/Bixefra1", "https://tec.openplanner.team/stops/Bwbfhip1"], ["https://tec.openplanner.team/stops/H4bq100b", "https://tec.openplanner.team/stops/H4bq154b"], ["https://tec.openplanner.team/stops/X715adb", "https://tec.openplanner.team/stops/X715alb"], ["https://tec.openplanner.team/stops/X911afa", "https://tec.openplanner.team/stops/X912aja"], ["https://tec.openplanner.team/stops/N145acb", "https://tec.openplanner.team/stops/N145adb"], ["https://tec.openplanner.team/stops/N110agb", "https://tec.openplanner.team/stops/N114aab"], ["https://tec.openplanner.team/stops/X889acb", "https://tec.openplanner.team/stops/X889ada"], ["https://tec.openplanner.team/stops/LPoneuf1", "https://tec.openplanner.team/stops/LPoneuf2"], ["https://tec.openplanner.team/stops/X394aba", "https://tec.openplanner.team/stops/X394abb"], ["https://tec.openplanner.team/stops/Crcplac3", "https://tec.openplanner.team/stops/Crcplac4"], ["https://tec.openplanner.team/stops/N548afa", "https://tec.openplanner.team/stops/N548agb"], ["https://tec.openplanner.team/stops/X923aba", "https://tec.openplanner.team/stops/X923agb"], ["https://tec.openplanner.team/stops/N534adb", "https://tec.openplanner.team/stops/N534aga"], ["https://tec.openplanner.team/stops/H4co103a", "https://tec.openplanner.team/stops/H4co134a"], ["https://tec.openplanner.team/stops/LGlwarf1", "https://tec.openplanner.team/stops/LHolone2"], ["https://tec.openplanner.team/stops/X609agb", "https://tec.openplanner.team/stops/X609ahb"], ["https://tec.openplanner.team/stops/LSNnoul1", "https://tec.openplanner.team/stops/LSNretr2"], ["https://tec.openplanner.team/stops/X869aeb", "https://tec.openplanner.team/stops/X869afb"], ["https://tec.openplanner.team/stops/Cjuphil2", "https://tec.openplanner.team/stops/Crarmas2"], ["https://tec.openplanner.team/stops/H1ht122b", "https://tec.openplanner.team/stops/H1ht124a"], ["https://tec.openplanner.team/stops/LVevill1", "https://tec.openplanner.team/stops/LVevill2"], ["https://tec.openplanner.team/stops/Cchsud01", "https://tec.openplanner.team/stops/CMsud2"], ["https://tec.openplanner.team/stops/Cdahtvi2", "https://tec.openplanner.team/stops/Clolidl2"], ["https://tec.openplanner.team/stops/Bsenpbi2", "https://tec.openplanner.team/stops/H2se114b"], ["https://tec.openplanner.team/stops/LAx17--1", "https://tec.openplanner.team/stops/LAxbott1"], ["https://tec.openplanner.team/stops/X601ata", "https://tec.openplanner.team/stops/X601cxa"], ["https://tec.openplanner.team/stops/LBBcarr2", "https://tec.openplanner.team/stops/LMnlogi1"], ["https://tec.openplanner.team/stops/X664aic", "https://tec.openplanner.team/stops/X664akb"], ["https://tec.openplanner.team/stops/N122aab", "https://tec.openplanner.team/stops/N122ada"], ["https://tec.openplanner.team/stops/Brsgfbl2", "https://tec.openplanner.team/stops/Brsggol1"], ["https://tec.openplanner.team/stops/LSZdepo2", "https://tec.openplanner.team/stops/LSZnive1"], ["https://tec.openplanner.team/stops/LAMecse*", "https://tec.openplanner.team/stops/LAMjeha2"], ["https://tec.openplanner.team/stops/LRObruy2", "https://tec.openplanner.team/stops/LROcham2"], ["https://tec.openplanner.team/stops/Cgomerm4", "https://tec.openplanner.team/stops/Chpfoli3"], ["https://tec.openplanner.team/stops/CMgazo2", "https://tec.openplanner.team/stops/Cmtdepo2"], ["https://tec.openplanner.team/stops/LhGgeme2", "https://tec.openplanner.team/stops/LhGlang2"], ["https://tec.openplanner.team/stops/H1me115b", "https://tec.openplanner.team/stops/H1me117f"], ["https://tec.openplanner.team/stops/N390aea", "https://tec.openplanner.team/stops/X390ala"], ["https://tec.openplanner.team/stops/X641ahb", "https://tec.openplanner.team/stops/X641ala"], ["https://tec.openplanner.team/stops/X666ada", "https://tec.openplanner.team/stops/X666ama"], ["https://tec.openplanner.team/stops/H4cw105b", "https://tec.openplanner.team/stops/H4lz163a"], ["https://tec.openplanner.team/stops/Caibras1", "https://tec.openplanner.team/stops/Caioign3"], ["https://tec.openplanner.team/stops/Llgongr1", "https://tec.openplanner.team/stops/Llgongr2"], ["https://tec.openplanner.team/stops/LGlcarr2", "https://tec.openplanner.team/stops/LGlcite2"], ["https://tec.openplanner.team/stops/Ccybeau1", "https://tec.openplanner.team/stops/Ccyrmon2"], ["https://tec.openplanner.team/stops/N505ama", "https://tec.openplanner.team/stops/N512avb"], ["https://tec.openplanner.team/stops/H1ne147a", "https://tec.openplanner.team/stops/H1ne149b"], ["https://tec.openplanner.team/stops/Bsenpbi1", "https://tec.openplanner.team/stops/H2mg135a"], ["https://tec.openplanner.team/stops/H4ru242b", "https://tec.openplanner.team/stops/H4ru245a"], ["https://tec.openplanner.team/stops/X650aba", "https://tec.openplanner.team/stops/X650aoa"], ["https://tec.openplanner.team/stops/Craplac1", "https://tec.openplanner.team/stops/Craplac3"], ["https://tec.openplanner.team/stops/Baisbar1", "https://tec.openplanner.team/stops/N519asd"], ["https://tec.openplanner.team/stops/N505aba", "https://tec.openplanner.team/stops/N579acb"], ["https://tec.openplanner.team/stops/N201ajb", "https://tec.openplanner.team/stops/N201alb"], ["https://tec.openplanner.team/stops/Cgzfarc2", "https://tec.openplanner.team/stops/Cgzpjeu1"], ["https://tec.openplanner.team/stops/Cmesncv1", "https://tec.openplanner.team/stops/Cvpcour1"], ["https://tec.openplanner.team/stops/X888aba", "https://tec.openplanner.team/stops/X888agb"], ["https://tec.openplanner.team/stops/X979akb", "https://tec.openplanner.team/stops/X982bsa"], ["https://tec.openplanner.team/stops/LRR2egl1", "https://tec.openplanner.team/stops/LRRbonr1"], ["https://tec.openplanner.team/stops/LTPbode2", "https://tec.openplanner.team/stops/LTPhenr1"], ["https://tec.openplanner.team/stops/Chthttr2", "https://tec.openplanner.team/stops/Cthhttr3"], ["https://tec.openplanner.team/stops/X359agb", "https://tec.openplanner.team/stops/X371aaa"], ["https://tec.openplanner.team/stops/Bbeaech2", "https://tec.openplanner.team/stops/Bleugar1"], ["https://tec.openplanner.team/stops/N308azb", "https://tec.openplanner.team/stops/N339aab"], ["https://tec.openplanner.team/stops/H1ms270a", "https://tec.openplanner.team/stops/H1ob341b"], ["https://tec.openplanner.team/stops/LLNbeau2", "https://tec.openplanner.team/stops/LSpcarr2"], ["https://tec.openplanner.team/stops/X601cja", "https://tec.openplanner.team/stops/X663aca"], ["https://tec.openplanner.team/stops/H2ch102b", "https://tec.openplanner.team/stops/H2ch105a"], ["https://tec.openplanner.team/stops/LLWcarr1", "https://tec.openplanner.team/stops/LOMware1"], ["https://tec.openplanner.team/stops/N224aaa", "https://tec.openplanner.team/stops/X224aga"], ["https://tec.openplanner.team/stops/N201ana", "https://tec.openplanner.team/stops/N202aia"], ["https://tec.openplanner.team/stops/X670agb", "https://tec.openplanner.team/stops/X670aob"], ["https://tec.openplanner.team/stops/Croball1", "https://tec.openplanner.team/stops/Crocpai1"], ["https://tec.openplanner.team/stops/LSPastr1", "https://tec.openplanner.team/stops/LSPClem1"], ["https://tec.openplanner.team/stops/Ccicent3", "https://tec.openplanner.team/stops/Ccipier2"], ["https://tec.openplanner.team/stops/Bmsgpfo1", "https://tec.openplanner.team/stops/Bmsgstj1"], ["https://tec.openplanner.team/stops/Lagchen1", "https://tec.openplanner.team/stops/Lagmair4"], ["https://tec.openplanner.team/stops/H1gy116a", "https://tec.openplanner.team/stops/H5el100a"], ["https://tec.openplanner.team/stops/N106adb", "https://tec.openplanner.team/stops/N137aia"], ["https://tec.openplanner.team/stops/LENecol1", "https://tec.openplanner.team/stops/LENsent1"], ["https://tec.openplanner.team/stops/X993ada", "https://tec.openplanner.team/stops/X995aca"], ["https://tec.openplanner.team/stops/X673ada", "https://tec.openplanner.team/stops/X673adb"], ["https://tec.openplanner.team/stops/H1wi157b", "https://tec.openplanner.team/stops/H1wi157c"], ["https://tec.openplanner.team/stops/X802afa", "https://tec.openplanner.team/stops/X802asa"], ["https://tec.openplanner.team/stops/LrAplat1", "https://tec.openplanner.team/stops/LrAverb1"], ["https://tec.openplanner.team/stops/X908aha", "https://tec.openplanner.team/stops/X908apa"], ["https://tec.openplanner.team/stops/LRRcole1", "https://tec.openplanner.team/stops/LRRtrix1"], ["https://tec.openplanner.team/stops/N241ada", "https://tec.openplanner.team/stops/N241aea"], ["https://tec.openplanner.team/stops/Bhancre1", "https://tec.openplanner.team/stops/LHNecpr1"], ["https://tec.openplanner.team/stops/N217acd", "https://tec.openplanner.team/stops/N218afa"], ["https://tec.openplanner.team/stops/Lcemalv1", "https://tec.openplanner.team/stops/Lcemalv2"], ["https://tec.openplanner.team/stops/H2ec101b", "https://tec.openplanner.team/stops/H2ec110b"], ["https://tec.openplanner.team/stops/LoUpete2", "https://tec.openplanner.team/stops/X685apa"], ["https://tec.openplanner.team/stops/N138aaa", "https://tec.openplanner.team/stops/N138ajb"], ["https://tec.openplanner.team/stops/LBoegli1", "https://tec.openplanner.team/stops/X223aca"], ["https://tec.openplanner.team/stops/Loucoti2", "https://tec.openplanner.team/stops/Louetan2"], ["https://tec.openplanner.team/stops/LWRcruc2", "https://tec.openplanner.team/stops/LWRpl--1"], ["https://tec.openplanner.team/stops/N521acb", "https://tec.openplanner.team/stops/N521aeb"], ["https://tec.openplanner.team/stops/N501leb", "https://tec.openplanner.team/stops/N538aeb"], ["https://tec.openplanner.team/stops/H1ca186b", "https://tec.openplanner.team/stops/H1ma230a"], ["https://tec.openplanner.team/stops/LScread1", "https://tec.openplanner.team/stops/LScread2"], ["https://tec.openplanner.team/stops/Llgcadr2", "https://tec.openplanner.team/stops/LlgOPER6"], ["https://tec.openplanner.team/stops/LCFcafe2", "https://tec.openplanner.team/stops/LCFcarr2"], ["https://tec.openplanner.team/stops/NL57adc", "https://tec.openplanner.team/stops/NL57afa"], ["https://tec.openplanner.team/stops/N331afa", "https://tec.openplanner.team/stops/N331agb"], ["https://tec.openplanner.team/stops/X638aha", "https://tec.openplanner.team/stops/X638aka"], ["https://tec.openplanner.team/stops/X595aaa", "https://tec.openplanner.team/stops/X713ada"], ["https://tec.openplanner.team/stops/Cfaetoi1", "https://tec.openplanner.team/stops/Cfaetoi2"], ["https://tec.openplanner.team/stops/H4wa153a", "https://tec.openplanner.team/stops/H4wa153b"], ["https://tec.openplanner.team/stops/Cbiferm2", "https://tec.openplanner.team/stops/Cbimonu1"], ["https://tec.openplanner.team/stops/X741aea", "https://tec.openplanner.team/stops/X741apb"], ["https://tec.openplanner.team/stops/X615aib", "https://tec.openplanner.team/stops/X615brb"], ["https://tec.openplanner.team/stops/Bperqui2", "https://tec.openplanner.team/stops/N524ajb"], ["https://tec.openplanner.team/stops/H1je213b", "https://tec.openplanner.team/stops/H1je222a"], ["https://tec.openplanner.team/stops/H4bs112a", "https://tec.openplanner.team/stops/H4ws159a"], ["https://tec.openplanner.team/stops/X801bua", "https://tec.openplanner.team/stops/X802ayb"], ["https://tec.openplanner.team/stops/Llgdarc2", "https://tec.openplanner.team/stops/Llglonh2"], ["https://tec.openplanner.team/stops/Bhtipir1", "https://tec.openplanner.team/stops/Bhtipir2"], ["https://tec.openplanner.team/stops/N214aaa", "https://tec.openplanner.team/stops/N214ajb"], ["https://tec.openplanner.team/stops/X723abb", "https://tec.openplanner.team/stops/X724aga"], ["https://tec.openplanner.team/stops/LVBneuv2", "https://tec.openplanner.team/stops/LVBsevr1"], ["https://tec.openplanner.team/stops/X725aka", "https://tec.openplanner.team/stops/X767afa"], ["https://tec.openplanner.team/stops/LMIlac-2", "https://tec.openplanner.team/stops/Lrechap1"], ["https://tec.openplanner.team/stops/Bblapin1", "https://tec.openplanner.team/stops/Brsgfon1"], ["https://tec.openplanner.team/stops/LNCsera1", "https://tec.openplanner.team/stops/LRRchen2"], ["https://tec.openplanner.team/stops/LAMrich2", "https://tec.openplanner.team/stops/LAMviam2"], ["https://tec.openplanner.team/stops/H4ba102a", "https://tec.openplanner.team/stops/H4ba102b"], ["https://tec.openplanner.team/stops/H4wa148a", "https://tec.openplanner.team/stops/H4wa148b"], ["https://tec.openplanner.team/stops/X882aaa", "https://tec.openplanner.team/stops/X882aca"], ["https://tec.openplanner.team/stops/Bnivpri2", "https://tec.openplanner.team/stops/Bnivsnu1"], ["https://tec.openplanner.team/stops/H1nv325b", "https://tec.openplanner.team/stops/H1sp355a"], ["https://tec.openplanner.team/stops/LWberno1", "https://tec.openplanner.team/stops/X512aia"], ["https://tec.openplanner.team/stops/LOCbois1", "https://tec.openplanner.team/stops/LOCeg--1"], ["https://tec.openplanner.team/stops/Bnivbne1", "https://tec.openplanner.team/stops/Bnivbne2"], ["https://tec.openplanner.team/stops/LFAbouc1", "https://tec.openplanner.team/stops/LFAtomb2"], ["https://tec.openplanner.team/stops/Btubbsc2", "https://tec.openplanner.team/stops/Btubcim1"], ["https://tec.openplanner.team/stops/Bhaleur2", "https://tec.openplanner.team/stops/Bhalker1"], ["https://tec.openplanner.team/stops/LWOcour1", "https://tec.openplanner.team/stops/LWOsass1"], ["https://tec.openplanner.team/stops/H2mo117a", "https://tec.openplanner.team/stops/H2mo125b"], ["https://tec.openplanner.team/stops/H1ha189b", "https://tec.openplanner.team/stops/H1ha192a"], ["https://tec.openplanner.team/stops/LFArela6", "https://tec.openplanner.team/stops/LFAwale1"], ["https://tec.openplanner.team/stops/LHAclin1", "https://tec.openplanner.team/stops/LVIhv--2"], ["https://tec.openplanner.team/stops/LVAgemm1", "https://tec.openplanner.team/stops/LVAwolf1"], ["https://tec.openplanner.team/stops/Cgonvro1", "https://tec.openplanner.team/stops/Cgonvro2"], ["https://tec.openplanner.team/stops/Bhoegbr2", "https://tec.openplanner.team/stops/Bhoemel1"], ["https://tec.openplanner.team/stops/LHThall4", "https://tec.openplanner.team/stops/LLxconj2"], ["https://tec.openplanner.team/stops/X623aib", "https://tec.openplanner.team/stops/X624aaa"], ["https://tec.openplanner.team/stops/Bgrmfga2", "https://tec.openplanner.team/stops/Bgrmpsn1"], ["https://tec.openplanner.team/stops/Lghbonn1", "https://tec.openplanner.team/stops/Lghremy1"], ["https://tec.openplanner.team/stops/X625aaa", "https://tec.openplanner.team/stops/X625aab"], ["https://tec.openplanner.team/stops/X901afa", "https://tec.openplanner.team/stops/X902bab"], ["https://tec.openplanner.team/stops/Cfaterg3", "https://tec.openplanner.team/stops/Crsapol1"], ["https://tec.openplanner.team/stops/N241abb", "https://tec.openplanner.team/stops/N539aya"], ["https://tec.openplanner.team/stops/N501mua", "https://tec.openplanner.team/stops/N501mub"], ["https://tec.openplanner.team/stops/N385aab", "https://tec.openplanner.team/stops/N385abb"], ["https://tec.openplanner.team/stops/H4bo111b", "https://tec.openplanner.team/stops/H5qu140a"], ["https://tec.openplanner.team/stops/Bjcljau1", "https://tec.openplanner.team/stops/Bjdsbro2"], ["https://tec.openplanner.team/stops/Caujonc1", "https://tec.openplanner.team/stops/N543cqa"], ["https://tec.openplanner.team/stops/Cpibois1", "https://tec.openplanner.team/stops/Cpictra2"], ["https://tec.openplanner.team/stops/Bottcro1", "https://tec.openplanner.team/stops/Bottcro2"], ["https://tec.openplanner.team/stops/H4ar100b", "https://tec.openplanner.team/stops/H4ar173b"], ["https://tec.openplanner.team/stops/LbTaral2", "https://tec.openplanner.team/stops/LbTgeme1"], ["https://tec.openplanner.team/stops/H1ne143a", "https://tec.openplanner.team/stops/H1ne149b"], ["https://tec.openplanner.team/stops/Lchorme2", "https://tec.openplanner.team/stops/Lchsaeg2"], ["https://tec.openplanner.team/stops/LVBdela1", "https://tec.openplanner.team/stops/LVBvaux1"], ["https://tec.openplanner.team/stops/LSZclem1", "https://tec.openplanner.team/stops/LSZnive1"], ["https://tec.openplanner.team/stops/Csdetan1", "https://tec.openplanner.team/stops/Csdpira1"], ["https://tec.openplanner.team/stops/LPclaro2", "https://tec.openplanner.team/stops/LTGsucr2"], ["https://tec.openplanner.team/stops/H1bo108a", "https://tec.openplanner.team/stops/H1bo112b"], ["https://tec.openplanner.team/stops/Bbeaneu4", "https://tec.openplanner.team/stops/Bptblma2"], ["https://tec.openplanner.team/stops/N232ada", "https://tec.openplanner.team/stops/N232adb"], ["https://tec.openplanner.team/stops/Blimrof1", "https://tec.openplanner.team/stops/Brixape2"], ["https://tec.openplanner.team/stops/X653aba", "https://tec.openplanner.team/stops/X667adb"], ["https://tec.openplanner.team/stops/LeUmoor2", "https://tec.openplanner.team/stops/LeUolen2"], ["https://tec.openplanner.team/stops/X870aia", "https://tec.openplanner.team/stops/X870aib"], ["https://tec.openplanner.team/stops/LOVeg--1", "https://tec.openplanner.team/stops/LOVhetr1"], ["https://tec.openplanner.team/stops/X359ama", "https://tec.openplanner.team/stops/X858ahb"], ["https://tec.openplanner.team/stops/H4co110b", "https://tec.openplanner.team/stops/H4co141b"], ["https://tec.openplanner.team/stops/Blimvcg2", "https://tec.openplanner.team/stops/Bottpre2"], ["https://tec.openplanner.team/stops/Lrcchpl2", "https://tec.openplanner.team/stops/Lrcrars2"], ["https://tec.openplanner.team/stops/LMIpatr3", "https://tec.openplanner.team/stops/LMIterr1"], ["https://tec.openplanner.team/stops/LsVgesc2", "https://tec.openplanner.team/stops/LsVsimo2"], ["https://tec.openplanner.team/stops/H1ho125a", "https://tec.openplanner.team/stops/H1ho139a"], ["https://tec.openplanner.team/stops/Bviravi2", "https://tec.openplanner.team/stops/Bvirgar1"], ["https://tec.openplanner.team/stops/NR21aeb", "https://tec.openplanner.team/stops/NR21afa"], ["https://tec.openplanner.team/stops/H4ry129a", "https://tec.openplanner.team/stops/H4ry132a"], ["https://tec.openplanner.team/stops/LMOcorn4", "https://tec.openplanner.team/stops/LMOf35-2"], ["https://tec.openplanner.team/stops/H5rx126b", "https://tec.openplanner.team/stops/H5rx137b"], ["https://tec.openplanner.team/stops/X734aka", "https://tec.openplanner.team/stops/X775aaa"], ["https://tec.openplanner.team/stops/X869acb", "https://tec.openplanner.team/stops/X869afa"], ["https://tec.openplanner.team/stops/Bjodbat1", "https://tec.openplanner.team/stops/Bjodmal2"], ["https://tec.openplanner.team/stops/LSNgerm1", "https://tec.openplanner.team/stops/LSNretr2"], ["https://tec.openplanner.team/stops/N501gba", "https://tec.openplanner.team/stops/N501gbb"], ["https://tec.openplanner.team/stops/X768alb", "https://tec.openplanner.team/stops/X768ald"], ["https://tec.openplanner.team/stops/Lanplat1", "https://tec.openplanner.team/stops/Lanpont1"], ["https://tec.openplanner.team/stops/N202aia", "https://tec.openplanner.team/stops/N204aja"], ["https://tec.openplanner.team/stops/Bbiemse2", "https://tec.openplanner.team/stops/Bboneta1"], ["https://tec.openplanner.team/stops/LSGhagn2", "https://tec.openplanner.team/stops/LSGmale2"], ["https://tec.openplanner.team/stops/LXHadam2", "https://tec.openplanner.team/stops/LXHfalh1"], ["https://tec.openplanner.team/stops/H1by104a", "https://tec.openplanner.team/stops/H1hq127a"], ["https://tec.openplanner.team/stops/LMuvill1", "https://tec.openplanner.team/stops/LSDheus2"], ["https://tec.openplanner.team/stops/LlEzoll1", "https://tec.openplanner.team/stops/LwMzoll1"], ["https://tec.openplanner.team/stops/LBssucr2", "https://tec.openplanner.team/stops/LWNchar2"], ["https://tec.openplanner.team/stops/N534aca", "https://tec.openplanner.team/stops/N534adb"], ["https://tec.openplanner.team/stops/Bohnmes4", "https://tec.openplanner.team/stops/Bohnpla1"], ["https://tec.openplanner.team/stops/LRGeg--1", "https://tec.openplanner.team/stops/LRGeg--2"], ["https://tec.openplanner.team/stops/X882aeb", "https://tec.openplanner.team/stops/X882afa"], ["https://tec.openplanner.team/stops/LPLcond1", "https://tec.openplanner.team/stops/LPLcond2"], ["https://tec.openplanner.team/stops/H4ch120a", "https://tec.openplanner.team/stops/H4ch120c"], ["https://tec.openplanner.team/stops/LEN101-2", "https://tec.openplanner.team/stops/LEN42--1"], ["https://tec.openplanner.team/stops/Ccpblpo2", "https://tec.openplanner.team/stops/H2ch112a"], ["https://tec.openplanner.team/stops/X718aka", "https://tec.openplanner.team/stops/X789aba"], ["https://tec.openplanner.team/stops/X627aaa", "https://tec.openplanner.team/stops/X627aab"], ["https://tec.openplanner.team/stops/Bhalomo2", "https://tec.openplanner.team/stops/Bhalwat1"], ["https://tec.openplanner.team/stops/Cnafont1", "https://tec.openplanner.team/stops/Cnafont2"], ["https://tec.openplanner.team/stops/LJSec--2", "https://tec.openplanner.team/stops/Lpechin2"], ["https://tec.openplanner.team/stops/H1em106b", "https://tec.openplanner.team/stops/H1em109a"], ["https://tec.openplanner.team/stops/X850aia", "https://tec.openplanner.team/stops/X850aib"], ["https://tec.openplanner.team/stops/X639acc", "https://tec.openplanner.team/stops/X639adb"], ["https://tec.openplanner.team/stops/Cdasama2", "https://tec.openplanner.team/stops/CMlpla1"], ["https://tec.openplanner.team/stops/X897afb", "https://tec.openplanner.team/stops/X985aba"], ["https://tec.openplanner.team/stops/H2bh110c", "https://tec.openplanner.team/stops/H2bh118b"], ["https://tec.openplanner.team/stops/H1sy140a", "https://tec.openplanner.team/stops/H1sy140b"], ["https://tec.openplanner.team/stops/X857aaa", "https://tec.openplanner.team/stops/X858aea"], ["https://tec.openplanner.team/stops/LeUkabe1", "https://tec.openplanner.team/stops/LeUrote2"], ["https://tec.openplanner.team/stops/Bjodppe1", "https://tec.openplanner.team/stops/Bjodpvi2"], ["https://tec.openplanner.team/stops/Cjuecha1", "https://tec.openplanner.team/stops/Cjuhame3"], ["https://tec.openplanner.team/stops/LHYec--1", "https://tec.openplanner.team/stops/LSpogne1"], ["https://tec.openplanner.team/stops/H2ha143a", "https://tec.openplanner.team/stops/H2sb233c"], ["https://tec.openplanner.team/stops/Cjuloos2", "https://tec.openplanner.team/stops/Cjuplco3"], ["https://tec.openplanner.team/stops/Crewaba2", "https://tec.openplanner.team/stops/Crewatb1"], ["https://tec.openplanner.team/stops/LJOvill2", "https://tec.openplanner.team/stops/LXHbell2"], ["https://tec.openplanner.team/stops/Bbcohou3", "https://tec.openplanner.team/stops/Bhenasc2"], ["https://tec.openplanner.team/stops/N874afa", "https://tec.openplanner.team/stops/N874afb"], ["https://tec.openplanner.team/stops/Blsmcha2", "https://tec.openplanner.team/stops/Blsmvan2"], ["https://tec.openplanner.team/stops/Ccomott1", "https://tec.openplanner.team/stops/Ccoptca2"], ["https://tec.openplanner.team/stops/H5rx126a", "https://tec.openplanner.team/stops/H5rx137a"], ["https://tec.openplanner.team/stops/LFIinse1", "https://tec.openplanner.team/stops/LXofont2"], ["https://tec.openplanner.team/stops/H4lz123a", "https://tec.openplanner.team/stops/H4lz157a"], ["https://tec.openplanner.team/stops/H2ca103a", "https://tec.openplanner.team/stops/H2ca109b"], ["https://tec.openplanner.team/stops/H4ty342b", "https://tec.openplanner.team/stops/H4ty406a"], ["https://tec.openplanner.team/stops/Bnivfro2", "https://tec.openplanner.team/stops/Bnivgen2"], ["https://tec.openplanner.team/stops/Cmyland2", "https://tec.openplanner.team/stops/Cmymarb1"], ["https://tec.openplanner.team/stops/X813aab", "https://tec.openplanner.team/stops/X813adb"], ["https://tec.openplanner.team/stops/X756aba", "https://tec.openplanner.team/stops/X756abb"], ["https://tec.openplanner.team/stops/LVMfoli1", "https://tec.openplanner.team/stops/LVMrout1"], ["https://tec.openplanner.team/stops/Ljecocc2", "https://tec.openplanner.team/stops/LjeGRPMC"], ["https://tec.openplanner.team/stops/Cfrfaub3", "https://tec.openplanner.team/stops/Cfrfaub4"], ["https://tec.openplanner.team/stops/Cfmcoro2", "https://tec.openplanner.team/stops/Cfmgrmo1"], ["https://tec.openplanner.team/stops/Borbode1", "https://tec.openplanner.team/stops/Btslpic6"], ["https://tec.openplanner.team/stops/Cgualno1", "https://tec.openplanner.team/stops/Cnafont2"], ["https://tec.openplanner.team/stops/LSldurb2", "https://tec.openplanner.team/stops/X919ajd"], ["https://tec.openplanner.team/stops/LFAplan1", "https://tec.openplanner.team/stops/LFAsauv1"], ["https://tec.openplanner.team/stops/Llgchev2", "https://tec.openplanner.team/stops/Llgreyn1"], ["https://tec.openplanner.team/stops/N110aaa", "https://tec.openplanner.team/stops/N110agb"], ["https://tec.openplanner.team/stops/X730abb", "https://tec.openplanner.team/stops/X730aca"], ["https://tec.openplanner.team/stops/LWMchpl1", "https://tec.openplanner.team/stops/LWMchpl2"], ["https://tec.openplanner.team/stops/LFalieg1", "https://tec.openplanner.team/stops/LFarhuy1"], ["https://tec.openplanner.team/stops/N340acc", "https://tec.openplanner.team/stops/N340ada"], ["https://tec.openplanner.team/stops/N134alb", "https://tec.openplanner.team/stops/N135bda"], ["https://tec.openplanner.team/stops/H2ha136a", "https://tec.openplanner.team/stops/H2ha136b"], ["https://tec.openplanner.team/stops/N383aea", "https://tec.openplanner.team/stops/N383aeb"], ["https://tec.openplanner.team/stops/NC44aab", "https://tec.openplanner.team/stops/NC44aha"], ["https://tec.openplanner.team/stops/N522aha", "https://tec.openplanner.team/stops/N522aib"], ["https://tec.openplanner.team/stops/X765afa", "https://tec.openplanner.team/stops/X765agb"], ["https://tec.openplanner.team/stops/N576aaa", "https://tec.openplanner.team/stops/N576abb"], ["https://tec.openplanner.team/stops/H4fl113a", "https://tec.openplanner.team/stops/H4fl113b"], ["https://tec.openplanner.team/stops/NL78abb", "https://tec.openplanner.team/stops/NL78ahc"], ["https://tec.openplanner.team/stops/Bbeabme2", "https://tec.openplanner.team/stops/Bbeaneu3"], ["https://tec.openplanner.team/stops/LBpbruy1", "https://tec.openplanner.team/stops/LBpcren2"], ["https://tec.openplanner.team/stops/Bchacen1", "https://tec.openplanner.team/stops/Bchamco1"], ["https://tec.openplanner.team/stops/Cmechnd1", "https://tec.openplanner.team/stops/Cwxplac2"], ["https://tec.openplanner.team/stops/N232afa", "https://tec.openplanner.team/stops/N232afb"], ["https://tec.openplanner.team/stops/N512aob", "https://tec.openplanner.team/stops/NL68adc"], ["https://tec.openplanner.team/stops/X938aba", "https://tec.openplanner.team/stops/X938acb"], ["https://tec.openplanner.team/stops/X910adb", "https://tec.openplanner.team/stops/X910aib"], ["https://tec.openplanner.team/stops/H1gh163b", "https://tec.openplanner.team/stops/H1gh167b"], ["https://tec.openplanner.team/stops/LPLc49-1", "https://tec.openplanner.team/stops/LPLc49-2"], ["https://tec.openplanner.team/stops/Llgcite2", "https://tec.openplanner.team/stops/Llgcite4"], ["https://tec.openplanner.team/stops/LaNdorf2", "https://tec.openplanner.team/stops/LsC216-1"], ["https://tec.openplanner.team/stops/H4av103a", "https://tec.openplanner.team/stops/H4av105a"], ["https://tec.openplanner.team/stops/Llglefe2", "https://tec.openplanner.team/stops/Llgwild8"], ["https://tec.openplanner.team/stops/H1ne142a", "https://tec.openplanner.team/stops/H1ne147a"], ["https://tec.openplanner.team/stops/Cchdigu1", "https://tec.openplanner.team/stops/Cchheig1"], ["https://tec.openplanner.team/stops/N506bea", "https://tec.openplanner.team/stops/N506bkb"], ["https://tec.openplanner.team/stops/N535aoa", "https://tec.openplanner.team/stops/N535aob"], ["https://tec.openplanner.team/stops/Bsdecdi1", "https://tec.openplanner.team/stops/N526adb"], ["https://tec.openplanner.team/stops/N106aga", "https://tec.openplanner.team/stops/N106aha"], ["https://tec.openplanner.team/stops/H1eo104a", "https://tec.openplanner.team/stops/H1mj127b"], ["https://tec.openplanner.team/stops/Bhengou2", "https://tec.openplanner.team/stops/Bhensei1"], ["https://tec.openplanner.team/stops/Bcsebde1", "https://tec.openplanner.team/stops/Bcsebde2"], ["https://tec.openplanner.team/stops/X820aeb", "https://tec.openplanner.team/stops/X827aaa"], ["https://tec.openplanner.team/stops/H1ba104a", "https://tec.openplanner.team/stops/H1ba104b"], ["https://tec.openplanner.team/stops/LLNogne1", "https://tec.openplanner.team/stops/LLNogne2"], ["https://tec.openplanner.team/stops/N584ayb", "https://tec.openplanner.team/stops/N584azb"], ["https://tec.openplanner.team/stops/LENcroi2", "https://tec.openplanner.team/stops/LENengi1"], ["https://tec.openplanner.team/stops/Lghberl2", "https://tec.openplanner.team/stops/Lghcfer1"], ["https://tec.openplanner.team/stops/LlgCATH1", "https://tec.openplanner.team/stops/LlgOPER4"], ["https://tec.openplanner.team/stops/LLteg--1", "https://tec.openplanner.team/stops/LLtrout1"], ["https://tec.openplanner.team/stops/LHTeg--1", "https://tec.openplanner.team/stops/LHTeg--4"], ["https://tec.openplanner.team/stops/H4ss155a", "https://tec.openplanner.team/stops/H4ss157b"], ["https://tec.openplanner.team/stops/N234aba", "https://tec.openplanner.team/stops/N234adb"], ["https://tec.openplanner.team/stops/Lhragri2", "https://tec.openplanner.team/stops/Lhrdron2"], ["https://tec.openplanner.team/stops/N501cxa", "https://tec.openplanner.team/stops/N501cza"], ["https://tec.openplanner.team/stops/Brebeau1", "https://tec.openplanner.team/stops/Brebeau2"], ["https://tec.openplanner.team/stops/Cmlecha1", "https://tec.openplanner.team/stops/CMsud1"], ["https://tec.openplanner.team/stops/LBdcarr1", "https://tec.openplanner.team/stops/LSMchat2"], ["https://tec.openplanner.team/stops/H4eg104b", "https://tec.openplanner.team/stops/H4eg107b"], ["https://tec.openplanner.team/stops/Cflchel3", "https://tec.openplanner.team/stops/Cflchel6"], ["https://tec.openplanner.team/stops/Bjod7co2", "https://tec.openplanner.team/stops/Bjodeco2"], ["https://tec.openplanner.team/stops/Bcrbast1", "https://tec.openplanner.team/stops/Bcrbcel1"], ["https://tec.openplanner.team/stops/Ldicorb2", "https://tec.openplanner.team/stops/Ldifoye1"], ["https://tec.openplanner.team/stops/Bgnvcha2", "https://tec.openplanner.team/stops/Bgnvoha2"], ["https://tec.openplanner.team/stops/X604aca", "https://tec.openplanner.team/stops/X604adb"], ["https://tec.openplanner.team/stops/LDOanes1", "https://tec.openplanner.team/stops/LGOcana2"], ["https://tec.openplanner.team/stops/X879anb", "https://tec.openplanner.team/stops/X879aqa"], ["https://tec.openplanner.team/stops/Bnivaig2", "https://tec.openplanner.team/stops/Bnivver2"], ["https://tec.openplanner.team/stops/N135aba", "https://tec.openplanner.team/stops/N135akb"], ["https://tec.openplanner.team/stops/H2go113b", "https://tec.openplanner.team/stops/H2go115a"], ["https://tec.openplanner.team/stops/H1ha194a", "https://tec.openplanner.team/stops/H1vh135a"], ["https://tec.openplanner.team/stops/H4do102a", "https://tec.openplanner.team/stops/H4do102b"], ["https://tec.openplanner.team/stops/H4mt221a", "https://tec.openplanner.team/stops/H4mt221b"], ["https://tec.openplanner.team/stops/LCTfair1", "https://tec.openplanner.team/stops/LFIeg--2"], ["https://tec.openplanner.team/stops/N579aba", "https://tec.openplanner.team/stops/N579ada"], ["https://tec.openplanner.team/stops/LBoegli1", "https://tec.openplanner.team/stops/LOCerzy1"], ["https://tec.openplanner.team/stops/LCsfize1", "https://tec.openplanner.team/stops/LCsjone2"], ["https://tec.openplanner.team/stops/X636aoa", "https://tec.openplanner.team/stops/X636aob"], ["https://tec.openplanner.team/stops/Bove4ko1", "https://tec.openplanner.team/stops/Bove4ko2"], ["https://tec.openplanner.team/stops/Bixefra1", "https://tec.openplanner.team/stops/Bixlozo1"], ["https://tec.openplanner.team/stops/LvAwere2", "https://tec.openplanner.team/stops/LwEdorf2"], ["https://tec.openplanner.team/stops/X754abb", "https://tec.openplanner.team/stops/X754acb"], ["https://tec.openplanner.team/stops/LSPbalm1", "https://tec.openplanner.team/stops/LSPbass1"], ["https://tec.openplanner.team/stops/LMFmoul1", "https://tec.openplanner.team/stops/LMFmoul2"], ["https://tec.openplanner.team/stops/H1so145a", "https://tec.openplanner.team/stops/H1so145b"], ["https://tec.openplanner.team/stops/X724acb", "https://tec.openplanner.team/stops/X724ada"], ["https://tec.openplanner.team/stops/H1ms275a", "https://tec.openplanner.team/stops/H1ms275b"], ["https://tec.openplanner.team/stops/X614aoa", "https://tec.openplanner.team/stops/X614bdb"], ["https://tec.openplanner.team/stops/H1gn152a", "https://tec.openplanner.team/stops/H1mq200b"], ["https://tec.openplanner.team/stops/LbUhuge1", "https://tec.openplanner.team/stops/LbUverb2"], ["https://tec.openplanner.team/stops/Caih1632", "https://tec.openplanner.team/stops/Cairous2"], ["https://tec.openplanner.team/stops/H2ll195a", "https://tec.openplanner.team/stops/H2sv259b"], ["https://tec.openplanner.team/stops/X783aba", "https://tec.openplanner.team/stops/X783abb"], ["https://tec.openplanner.team/stops/Cgnbast1", "https://tec.openplanner.team/stops/Cgnbast2"], ["https://tec.openplanner.team/stops/X948ava", "https://tec.openplanner.team/stops/X948avb"], ["https://tec.openplanner.team/stops/Lbrbass2", "https://tec.openplanner.team/stops/Lbrfune*"], ["https://tec.openplanner.team/stops/Ccicouc2", "https://tec.openplanner.team/stops/Ccinali1"], ["https://tec.openplanner.team/stops/N538acb", "https://tec.openplanner.team/stops/N538apa"], ["https://tec.openplanner.team/stops/X880aga", "https://tec.openplanner.team/stops/X880age"], ["https://tec.openplanner.team/stops/H1ms904a", "https://tec.openplanner.team/stops/H1ms924a"], ["https://tec.openplanner.team/stops/X661ana", "https://tec.openplanner.team/stops/X661anb"], ["https://tec.openplanner.team/stops/LeYauss2", "https://tec.openplanner.team/stops/LeYfeld2"], ["https://tec.openplanner.team/stops/X390aha", "https://tec.openplanner.team/stops/X902aha"], ["https://tec.openplanner.team/stops/LCsjone2", "https://tec.openplanner.team/stops/LSCchap2"], ["https://tec.openplanner.team/stops/X878ada", "https://tec.openplanner.team/stops/X898aab"], ["https://tec.openplanner.team/stops/H3lr132b", "https://tec.openplanner.team/stops/H3th135d"], ["https://tec.openplanner.team/stops/LLEfagn1", "https://tec.openplanner.team/stops/LQacabi1"], ["https://tec.openplanner.team/stops/Caibras2", "https://tec.openplanner.team/stops/Caiecol2"], ["https://tec.openplanner.team/stops/Crolema3", "https://tec.openplanner.team/stops/Crolema4"], ["https://tec.openplanner.team/stops/H4mo186a", "https://tec.openplanner.team/stops/H4mo208a"], ["https://tec.openplanner.team/stops/LJedonc2", "https://tec.openplanner.team/stops/LJedonc3"], ["https://tec.openplanner.team/stops/Llgverg1", "https://tec.openplanner.team/stops/Lrcvill1"], ["https://tec.openplanner.team/stops/X633aka", "https://tec.openplanner.team/stops/X634aab"], ["https://tec.openplanner.team/stops/X359acb", "https://tec.openplanner.team/stops/X359adb"], ["https://tec.openplanner.team/stops/N125aaa", "https://tec.openplanner.team/stops/N125aab"], ["https://tec.openplanner.team/stops/N516aoa", "https://tec.openplanner.team/stops/N516aoc"], ["https://tec.openplanner.team/stops/X638aba", "https://tec.openplanner.team/stops/X638acb"], ["https://tec.openplanner.team/stops/LBGroma1", "https://tec.openplanner.team/stops/LLncime2"], ["https://tec.openplanner.team/stops/X605ada", "https://tec.openplanner.team/stops/X605alb"], ["https://tec.openplanner.team/stops/Loucham3", "https://tec.openplanner.team/stops/Louoran1"], ["https://tec.openplanner.team/stops/LOdcris1", "https://tec.openplanner.team/stops/LOdcris2"], ["https://tec.openplanner.team/stops/LPLbiol1", "https://tec.openplanner.team/stops/LRRcole1"], ["https://tec.openplanner.team/stops/X659ada", "https://tec.openplanner.team/stops/X659adb"], ["https://tec.openplanner.team/stops/H1gh144b", "https://tec.openplanner.team/stops/H1gh153b"], ["https://tec.openplanner.team/stops/X943ada", "https://tec.openplanner.team/stops/X943aeb"], ["https://tec.openplanner.team/stops/Bmoufil2", "https://tec.openplanner.team/stops/Bottvtc1"], ["https://tec.openplanner.team/stops/Bmrlegl2", "https://tec.openplanner.team/stops/Bmrlhau1"], ["https://tec.openplanner.team/stops/Lsnbure1", "https://tec.openplanner.team/stops/Ltihorl1"], ["https://tec.openplanner.team/stops/Bovecha1", "https://tec.openplanner.team/stops/Bpechos2"], ["https://tec.openplanner.team/stops/LSIvieu2", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://tec.openplanner.team/stops/H4mt215b", "https://tec.openplanner.team/stops/H4mx120b"], ["https://tec.openplanner.team/stops/H1fr114a", "https://tec.openplanner.team/stops/H1fr129b"], ["https://tec.openplanner.team/stops/X836abb", "https://tec.openplanner.team/stops/X839aab"], ["https://tec.openplanner.team/stops/N553aka", "https://tec.openplanner.team/stops/N553akb"], ["https://tec.openplanner.team/stops/LBHhuyn1", "https://tec.openplanner.team/stops/LBHhuyn2"], ["https://tec.openplanner.team/stops/Cmyboci1", "https://tec.openplanner.team/stops/Cmypela2"], ["https://tec.openplanner.team/stops/Bblapin1", "https://tec.openplanner.team/stops/Bblapin2"], ["https://tec.openplanner.team/stops/N229akb", "https://tec.openplanner.team/stops/N229akc"], ["https://tec.openplanner.team/stops/X801apb", "https://tec.openplanner.team/stops/X801aua"], ["https://tec.openplanner.team/stops/N501ioa", "https://tec.openplanner.team/stops/N501jcb"], ["https://tec.openplanner.team/stops/N343aja", "https://tec.openplanner.team/stops/N343aoa"], ["https://tec.openplanner.team/stops/N162aea", "https://tec.openplanner.team/stops/N162afb"], ["https://tec.openplanner.team/stops/H1hh114a", "https://tec.openplanner.team/stops/H1hh116a"], ["https://tec.openplanner.team/stops/Cjxpris2", "https://tec.openplanner.team/stops/Cmlsana1"], ["https://tec.openplanner.team/stops/Balswwe1", "https://tec.openplanner.team/stops/Bhalvel1"], ["https://tec.openplanner.team/stops/Bsdafra1", "https://tec.openplanner.team/stops/Bsdampe2"], ["https://tec.openplanner.team/stops/LHaodei1", "https://tec.openplanner.team/stops/LHarenn3"], ["https://tec.openplanner.team/stops/LeUgulc2", "https://tec.openplanner.team/stops/LeUschu1"], ["https://tec.openplanner.team/stops/LSGcolo2", "https://tec.openplanner.team/stops/LSkwarf3"], ["https://tec.openplanner.team/stops/Bnilspe1", "https://tec.openplanner.team/stops/Bnilspe2"], ["https://tec.openplanner.team/stops/LLrdrev2", "https://tec.openplanner.team/stops/LLrhaut2"], ["https://tec.openplanner.team/stops/X754aaa", "https://tec.openplanner.team/stops/X779afb"], ["https://tec.openplanner.team/stops/Bhoemel1", "https://tec.openplanner.team/stops/Bovejei1"], ["https://tec.openplanner.team/stops/H1mv239a", "https://tec.openplanner.team/stops/H1mv241b"], ["https://tec.openplanner.team/stops/LENengi1", "https://tec.openplanner.team/stops/LENindu2"], ["https://tec.openplanner.team/stops/H1bi104b", "https://tec.openplanner.team/stops/H1mm122c"], ["https://tec.openplanner.team/stops/LoDkoll2", "https://tec.openplanner.team/stops/LrUoudl2"], ["https://tec.openplanner.team/stops/Ltigare1", "https://tec.openplanner.team/stops/Ltinico2"], ["https://tec.openplanner.team/stops/LaMades1", "https://tec.openplanner.team/stops/LmDkoel2"], ["https://tec.openplanner.team/stops/Cmlasie1", "https://tec.openplanner.team/stops/Cmlpche2"], ["https://tec.openplanner.team/stops/Clcfall1", "https://tec.openplanner.team/stops/Clcfall3"], ["https://tec.openplanner.team/stops/N343acb", "https://tec.openplanner.team/stops/N343akb"], ["https://tec.openplanner.team/stops/X640apb", "https://tec.openplanner.team/stops/X642aac"], ["https://tec.openplanner.team/stops/LLrdigu1", "https://tec.openplanner.team/stops/LSPclai2"], ["https://tec.openplanner.team/stops/N501ihb", "https://tec.openplanner.team/stops/N501ihz"], ["https://tec.openplanner.team/stops/N323aab", "https://tec.openplanner.team/stops/N387ahb"], ["https://tec.openplanner.team/stops/Lveensi2", "https://tec.openplanner.team/stops/Lveleje1"], ["https://tec.openplanner.team/stops/H4og208a", "https://tec.openplanner.team/stops/H4og213b"], ["https://tec.openplanner.team/stops/X908ara", "https://tec.openplanner.team/stops/X908asb"], ["https://tec.openplanner.team/stops/X739aja", "https://tec.openplanner.team/stops/X912aia"], ["https://tec.openplanner.team/stops/X992aja", "https://tec.openplanner.team/stops/X992akb"], ["https://tec.openplanner.team/stops/H5wo128a", "https://tec.openplanner.team/stops/H5wo128b"], ["https://tec.openplanner.team/stops/N101aea", "https://tec.openplanner.team/stops/N101aeb"], ["https://tec.openplanner.team/stops/LAUvdab1", "https://tec.openplanner.team/stops/LWRtroi2"], ["https://tec.openplanner.team/stops/H1fr123b", "https://tec.openplanner.team/stops/H1fr129a"], ["https://tec.openplanner.team/stops/LROcent2", "https://tec.openplanner.team/stops/LROrtba2"], ["https://tec.openplanner.team/stops/X721anb", "https://tec.openplanner.team/stops/X721ata"], ["https://tec.openplanner.team/stops/LhSbruc2", "https://tec.openplanner.team/stops/LhSschn2"], ["https://tec.openplanner.team/stops/Cnachcu1", "https://tec.openplanner.team/stops/Cnathib1"], ["https://tec.openplanner.team/stops/H3bi107a", "https://tec.openplanner.team/stops/H3bi112b"], ["https://tec.openplanner.team/stops/Cpcathe1", "https://tec.openplanner.team/stops/Cpctrau2"], ["https://tec.openplanner.team/stops/X882aba", "https://tec.openplanner.team/stops/X882amc"], ["https://tec.openplanner.team/stops/Bmsgcap2", "https://tec.openplanner.team/stops/Bottbru2"], ["https://tec.openplanner.team/stops/X947abb", "https://tec.openplanner.team/stops/X947acb"], ["https://tec.openplanner.team/stops/H2ll194a", "https://tec.openplanner.team/stops/H2ll194b"], ["https://tec.openplanner.team/stops/N553ada", "https://tec.openplanner.team/stops/N553amb"], ["https://tec.openplanner.team/stops/LDaeg--2", "https://tec.openplanner.team/stops/LGEcons2"], ["https://tec.openplanner.team/stops/LVIdepo2", "https://tec.openplanner.team/stops/LVItcm-1"], ["https://tec.openplanner.team/stops/X870afa", "https://tec.openplanner.team/stops/X870aha"], ["https://tec.openplanner.team/stops/N136adb", "https://tec.openplanner.team/stops/N136aeb"], ["https://tec.openplanner.team/stops/H1gr113b", "https://tec.openplanner.team/stops/H1gr116b"], ["https://tec.openplanner.team/stops/H4vx363a", "https://tec.openplanner.team/stops/H4vx363b"], ["https://tec.openplanner.team/stops/Ljubods2", "https://tec.openplanner.team/stops/Ljuroch2"], ["https://tec.openplanner.team/stops/N348adb", "https://tec.openplanner.team/stops/N352abb"], ["https://tec.openplanner.team/stops/Blingar1", "https://tec.openplanner.team/stops/Bracrpe2"], ["https://tec.openplanner.team/stops/H1tt106a", "https://tec.openplanner.team/stops/H1tt109b"], ["https://tec.openplanner.team/stops/LAMec--2", "https://tec.openplanner.team/stops/LAMgare2"], ["https://tec.openplanner.team/stops/Cgywaut4", "https://tec.openplanner.team/stops/CMmarab1"], ["https://tec.openplanner.team/stops/X892aja", "https://tec.openplanner.team/stops/X892ajb"], ["https://tec.openplanner.team/stops/N109aaa", "https://tec.openplanner.team/stops/N109aab"], ["https://tec.openplanner.team/stops/H1by100c", "https://tec.openplanner.team/stops/H1sy143d"], ["https://tec.openplanner.team/stops/Lsepcha2", "https://tec.openplanner.team/stops/Lsepcha4"], ["https://tec.openplanner.team/stops/X601bza", "https://tec.openplanner.team/stops/X601dfa"], ["https://tec.openplanner.team/stops/N338aab", "https://tec.openplanner.team/stops/N338aea"], ["https://tec.openplanner.team/stops/LXhhaka1", "https://tec.openplanner.team/stops/LXhvanh2"], ["https://tec.openplanner.team/stops/N501izb", "https://tec.openplanner.team/stops/N501jbb"], ["https://tec.openplanner.team/stops/N531adb", "https://tec.openplanner.team/stops/N534bma"], ["https://tec.openplanner.team/stops/Brixga12", "https://tec.openplanner.team/stops/Brixpje1"], ["https://tec.openplanner.team/stops/N135ayb", "https://tec.openplanner.team/stops/N135bib"], ["https://tec.openplanner.team/stops/Ltiegli1", "https://tec.openplanner.team/stops/Ltipass2"], ["https://tec.openplanner.team/stops/LDOanes1", "https://tec.openplanner.team/stops/LDOdavi2"], ["https://tec.openplanner.team/stops/N555aba", "https://tec.openplanner.team/stops/N573aba"], ["https://tec.openplanner.team/stops/X650afd", "https://tec.openplanner.team/stops/X650aga"], ["https://tec.openplanner.team/stops/LVLchem1", "https://tec.openplanner.team/stops/LVLhalb4"], ["https://tec.openplanner.team/stops/X904afb", "https://tec.openplanner.team/stops/X951acb"], ["https://tec.openplanner.team/stops/Brebchb1", "https://tec.openplanner.team/stops/Brebrog1"], ["https://tec.openplanner.team/stops/N543bbc", "https://tec.openplanner.team/stops/N554aba"], ["https://tec.openplanner.team/stops/X942aab", "https://tec.openplanner.team/stops/X942aba"], ["https://tec.openplanner.team/stops/LbTgeme2", "https://tec.openplanner.team/stops/LwYboui1"], ["https://tec.openplanner.team/stops/Ladjaur1", "https://tec.openplanner.team/stops/Ladpire1"], ["https://tec.openplanner.team/stops/N529aja", "https://tec.openplanner.team/stops/N529ajb"], ["https://tec.openplanner.team/stops/X759aba", "https://tec.openplanner.team/stops/X759afa"], ["https://tec.openplanner.team/stops/H4wi167a", "https://tec.openplanner.team/stops/H4wi167b"], ["https://tec.openplanner.team/stops/N351anb", "https://tec.openplanner.team/stops/X351acb"], ["https://tec.openplanner.team/stops/Bnivbau2", "https://tec.openplanner.team/stops/Bnivlai1"], ["https://tec.openplanner.team/stops/Beclbse2", "https://tec.openplanner.team/stops/Beclpma1"], ["https://tec.openplanner.team/stops/LSGec--2", "https://tec.openplanner.team/stops/LSGeg--1"], ["https://tec.openplanner.team/stops/LBEssab2", "https://tec.openplanner.team/stops/Lcaboun3"], ["https://tec.openplanner.team/stops/LBNeu711", "https://tec.openplanner.team/stops/LBNover2"], ["https://tec.openplanner.team/stops/Lbemc--2", "https://tec.openplanner.team/stops/Ljupiet2"], ["https://tec.openplanner.team/stops/H1ho122b", "https://tec.openplanner.team/stops/H1ho136a"], ["https://tec.openplanner.team/stops/LbUpost1", "https://tec.openplanner.team/stops/LbUverb1"], ["https://tec.openplanner.team/stops/Ljubois2", "https://tec.openplanner.team/stops/Ljujaur2"], ["https://tec.openplanner.team/stops/LCPvign1", "https://tec.openplanner.team/stops/LCPvign2"], ["https://tec.openplanner.team/stops/Bhenard3", "https://tec.openplanner.team/stops/Bhenard4"], ["https://tec.openplanner.team/stops/H1au103b", "https://tec.openplanner.team/stops/H1bx104a"], ["https://tec.openplanner.team/stops/LMsec--1", "https://tec.openplanner.team/stops/LMsec--2"], ["https://tec.openplanner.team/stops/LbOlier1", "https://tec.openplanner.team/stops/LbOre152"], ["https://tec.openplanner.team/stops/H4ga154b", "https://tec.openplanner.team/stops/H4vx360a"], ["https://tec.openplanner.team/stops/N115aeb", "https://tec.openplanner.team/stops/N115afa"], ["https://tec.openplanner.team/stops/X908abb", "https://tec.openplanner.team/stops/X955agb"], ["https://tec.openplanner.team/stops/Bbuzeta1", "https://tec.openplanner.team/stops/Cobhaut1"], ["https://tec.openplanner.team/stops/Cdostco1", "https://tec.openplanner.team/stops/Ctuplac2"], ["https://tec.openplanner.team/stops/LFrcent1", "https://tec.openplanner.team/stops/LHvvill*"], ["https://tec.openplanner.team/stops/Cpclibe2", "https://tec.openplanner.team/stops/Cpclibe4"], ["https://tec.openplanner.team/stops/Cmygbbo1", "https://tec.openplanner.team/stops/Cmygbbo2"], ["https://tec.openplanner.team/stops/X561aaa", "https://tec.openplanner.team/stops/X575aca"], ["https://tec.openplanner.team/stops/X750bdb", "https://tec.openplanner.team/stops/X750bfa"], ["https://tec.openplanner.team/stops/H4ev120b", "https://tec.openplanner.team/stops/H4ev124b"], ["https://tec.openplanner.team/stops/LhObull1", "https://tec.openplanner.team/stops/LwEdorf2"], ["https://tec.openplanner.team/stops/Lve-isi2", "https://tec.openplanner.team/stops/Lvevieu2"], ["https://tec.openplanner.team/stops/X979aaa", "https://tec.openplanner.team/stops/X979aib"], ["https://tec.openplanner.team/stops/H5wo125a", "https://tec.openplanner.team/stops/H5wo134a"], ["https://tec.openplanner.team/stops/X768ajb", "https://tec.openplanner.team/stops/X769amb"], ["https://tec.openplanner.team/stops/LbTcarm1", "https://tec.openplanner.team/stops/LbTdoma1"], ["https://tec.openplanner.team/stops/X681aca", "https://tec.openplanner.team/stops/X695afa"], ["https://tec.openplanner.team/stops/Lbocomm1", "https://tec.openplanner.team/stops/Lbocomm2"], ["https://tec.openplanner.team/stops/Btubind2", "https://tec.openplanner.team/stops/Btubmon2"], ["https://tec.openplanner.team/stops/H1so142a", "https://tec.openplanner.team/stops/H1so142c"], ["https://tec.openplanner.team/stops/Cjxcoll1", "https://tec.openplanner.team/stops/Cjxpann1"], ["https://tec.openplanner.team/stops/H5qu148a", "https://tec.openplanner.team/stops/H5qu148b"], ["https://tec.openplanner.team/stops/N110aha", "https://tec.openplanner.team/stops/N110ahb"], ["https://tec.openplanner.team/stops/Bwavbar1", "https://tec.openplanner.team/stops/Bwavlav2"], ["https://tec.openplanner.team/stops/X882aab", "https://tec.openplanner.team/stops/X882aea"], ["https://tec.openplanner.team/stops/N507aad", "https://tec.openplanner.team/stops/NL68aac"], ["https://tec.openplanner.team/stops/Btanpla1", "https://tec.openplanner.team/stops/Btanpla2"], ["https://tec.openplanner.team/stops/H4ga159a", "https://tec.openplanner.team/stops/H4ga162a"], ["https://tec.openplanner.team/stops/H1ro130a", "https://tec.openplanner.team/stops/H1ro135a"], ["https://tec.openplanner.team/stops/Lsepapi3", "https://tec.openplanner.team/stops/Lseruis2"], ["https://tec.openplanner.team/stops/X713aja", "https://tec.openplanner.team/stops/X713ajd"], ["https://tec.openplanner.team/stops/LbRfrie1", "https://tec.openplanner.team/stops/LbRfrie2"], ["https://tec.openplanner.team/stops/H4wg121a", "https://tec.openplanner.team/stops/H4wg122a"], ["https://tec.openplanner.team/stops/N521ajb", "https://tec.openplanner.team/stops/N521aka"], ["https://tec.openplanner.team/stops/X745ada", "https://tec.openplanner.team/stops/X745adb"], ["https://tec.openplanner.team/stops/Cfastan1", "https://tec.openplanner.team/stops/Cfastan2"], ["https://tec.openplanner.team/stops/N338aea", "https://tec.openplanner.team/stops/N338aeb"], ["https://tec.openplanner.team/stops/X666aea", "https://tec.openplanner.team/stops/X666ama"], ["https://tec.openplanner.team/stops/X782afa", "https://tec.openplanner.team/stops/X782aha"], ["https://tec.openplanner.team/stops/Cmmjami4", "https://tec.openplanner.team/stops/Cmmschw2"], ["https://tec.openplanner.team/stops/LOTsav-2", "https://tec.openplanner.team/stops/LRUhama1"], ["https://tec.openplanner.team/stops/Cfabnat1", "https://tec.openplanner.team/stops/Cfapiro2"], ["https://tec.openplanner.team/stops/Cjudest1", "https://tec.openplanner.team/stops/Cjudest2"], ["https://tec.openplanner.team/stops/H5ma180a", "https://tec.openplanner.team/stops/H5ma185b"], ["https://tec.openplanner.team/stops/LREheyd1", "https://tec.openplanner.team/stops/LREsp901"], ["https://tec.openplanner.team/stops/Cthcrom2", "https://tec.openplanner.team/stops/Cthrwai1"], ["https://tec.openplanner.team/stops/Cbfcham2", "https://tec.openplanner.team/stops/Cbfcham3"], ["https://tec.openplanner.team/stops/LCIpiet1", "https://tec.openplanner.team/stops/LCIsucr2"], ["https://tec.openplanner.team/stops/X396adb", "https://tec.openplanner.team/stops/X919ama"], ["https://tec.openplanner.team/stops/X657aia", "https://tec.openplanner.team/stops/X657aja"], ["https://tec.openplanner.team/stops/Bnivcom2", "https://tec.openplanner.team/stops/Bnivvai2"], ["https://tec.openplanner.team/stops/H2ma208a", "https://tec.openplanner.team/stops/H2ma263a"], ["https://tec.openplanner.team/stops/X652abb", "https://tec.openplanner.team/stops/X652aea"], ["https://tec.openplanner.team/stops/X886aab", "https://tec.openplanner.team/stops/X886ahb"], ["https://tec.openplanner.team/stops/H4ga161a", "https://tec.openplanner.team/stops/H4ga165b"], ["https://tec.openplanner.team/stops/LbRfrie1", "https://tec.openplanner.team/stops/LwTzent1"], ["https://tec.openplanner.team/stops/LbOkalv1", "https://tec.openplanner.team/stops/LbOlier2"], ["https://tec.openplanner.team/stops/Lmofays1", "https://tec.openplanner.team/stops/Lmohomv2"], ["https://tec.openplanner.team/stops/LbRfrie2", "https://tec.openplanner.team/stops/LmAgruf2"], ["https://tec.openplanner.team/stops/Lgrspir1", "https://tec.openplanner.team/stops/Lgrspir2"], ["https://tec.openplanner.team/stops/Cmmcarr1", "https://tec.openplanner.team/stops/Cmmcarr2"], ["https://tec.openplanner.team/stops/N501itb", "https://tec.openplanner.team/stops/N501iub"], ["https://tec.openplanner.team/stops/N535atb", "https://tec.openplanner.team/stops/N535aub"], ["https://tec.openplanner.team/stops/X757ahb", "https://tec.openplanner.team/stops/X757ama"], ["https://tec.openplanner.team/stops/H4ty318a", "https://tec.openplanner.team/stops/H4ty318b"], ["https://tec.openplanner.team/stops/LCpegli1", "https://tec.openplanner.team/stops/LCpegli2"], ["https://tec.openplanner.team/stops/H4mx117b", "https://tec.openplanner.team/stops/H4mx120a"], ["https://tec.openplanner.team/stops/X982afa", "https://tec.openplanner.team/stops/X982bxb"], ["https://tec.openplanner.team/stops/Cmogrbu2", "https://tec.openplanner.team/stops/Cmogtri1"], ["https://tec.openplanner.team/stops/LTiflor1", "https://tec.openplanner.team/stops/LTiterr2"], ["https://tec.openplanner.team/stops/Ljhsart4", "https://tec.openplanner.team/stops/Lmnjeha2"], ["https://tec.openplanner.team/stops/LHUecte2", "https://tec.openplanner.team/stops/NL80aha"], ["https://tec.openplanner.team/stops/LBLwaid1", "https://tec.openplanner.team/stops/LTrchar2"], ["https://tec.openplanner.team/stops/Llggerm2", "https://tec.openplanner.team/stops/Llgplop2"], ["https://tec.openplanner.team/stops/N106aba", "https://tec.openplanner.team/stops/N106aca"], ["https://tec.openplanner.team/stops/H4ff118a", "https://tec.openplanner.team/stops/H4ff118b"], ["https://tec.openplanner.team/stops/Bbgewal1", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://tec.openplanner.team/stops/Clfbarr6", "https://tec.openplanner.team/stops/Clftour2"], ["https://tec.openplanner.team/stops/Beclpla1", "https://tec.openplanner.team/stops/H2ec101a"], ["https://tec.openplanner.team/stops/LhEauto1", "https://tec.openplanner.team/stops/LhEtivo1"], ["https://tec.openplanner.team/stops/X634aaa", "https://tec.openplanner.team/stops/X634aba"], ["https://tec.openplanner.team/stops/LrAberg1", "https://tec.openplanner.team/stops/LrApley1"], ["https://tec.openplanner.team/stops/H4mv197b", "https://tec.openplanner.team/stops/H4va231a"], ["https://tec.openplanner.team/stops/Lhecarc1", "https://tec.openplanner.team/stops/Lhecarc2"], ["https://tec.openplanner.team/stops/Bnivcom1", "https://tec.openplanner.team/stops/Bnivhon2"], ["https://tec.openplanner.team/stops/LOreg--2", "https://tec.openplanner.team/stops/LTymahr1"], ["https://tec.openplanner.team/stops/Crcegli1", "https://tec.openplanner.team/stops/Crcegli3"], ["https://tec.openplanner.team/stops/X888ada", "https://tec.openplanner.team/stops/X888aea"], ["https://tec.openplanner.team/stops/NL77aia", "https://tec.openplanner.team/stops/NL77aib"], ["https://tec.openplanner.team/stops/LLGcarr2", "https://tec.openplanner.team/stops/LORvill2"], ["https://tec.openplanner.team/stops/LAWbrou2", "https://tec.openplanner.team/stops/LAWgill2"], ["https://tec.openplanner.team/stops/LNCneuv3", "https://tec.openplanner.team/stops/Lsedavy2"], ["https://tec.openplanner.team/stops/Bbchndb2", "https://tec.openplanner.team/stops/Bitrsar1"], ["https://tec.openplanner.team/stops/H4mo138a", "https://tec.openplanner.team/stops/H4mo153d"], ["https://tec.openplanner.team/stops/H1ma231a", "https://tec.openplanner.team/stops/H1ma234b"], ["https://tec.openplanner.team/stops/X670ada", "https://tec.openplanner.team/stops/X670ahb"], ["https://tec.openplanner.team/stops/H1ms282b", "https://tec.openplanner.team/stops/H1ms311a"], ["https://tec.openplanner.team/stops/H4bf109a", "https://tec.openplanner.team/stops/H4ro156a"], ["https://tec.openplanner.team/stops/N236ada", "https://tec.openplanner.team/stops/N236adb"], ["https://tec.openplanner.team/stops/N121aaa", "https://tec.openplanner.team/stops/N121aba"], ["https://tec.openplanner.team/stops/H1gh149a", "https://tec.openplanner.team/stops/H1gh149b"], ["https://tec.openplanner.team/stops/LLocruc2", "https://tec.openplanner.team/stops/LRchaie1"], ["https://tec.openplanner.team/stops/LCSfagn2", "https://tec.openplanner.team/stops/LCSpoud1"], ["https://tec.openplanner.team/stops/N522aib", "https://tec.openplanner.team/stops/N576ama"], ["https://tec.openplanner.team/stops/Cptccas1", "https://tec.openplanner.team/stops/Cptdubo2"], ["https://tec.openplanner.team/stops/Cgxdeba1", "https://tec.openplanner.team/stops/Crorogn2"], ["https://tec.openplanner.team/stops/NL76bca", "https://tec.openplanner.team/stops/NL77aia"], ["https://tec.openplanner.team/stops/Bgoemgr1", "https://tec.openplanner.team/stops/Bneersa2"], ["https://tec.openplanner.team/stops/Bvlvpco1", "https://tec.openplanner.team/stops/Bvlvpco2"], ["https://tec.openplanner.team/stops/N553aab", "https://tec.openplanner.team/stops/N553abb"], ["https://tec.openplanner.team/stops/Btslnil1", "https://tec.openplanner.team/stops/Btslnil2"], ["https://tec.openplanner.team/stops/X369aba", "https://tec.openplanner.team/stops/X369aca"], ["https://tec.openplanner.team/stops/X638ahb", "https://tec.openplanner.team/stops/X638ajb"], ["https://tec.openplanner.team/stops/N218aca", "https://tec.openplanner.team/stops/N218aeb"], ["https://tec.openplanner.team/stops/N501fqa", "https://tec.openplanner.team/stops/N501fqd"], ["https://tec.openplanner.team/stops/N553abc", "https://tec.openplanner.team/stops/N553aoa"], ["https://tec.openplanner.team/stops/H1le120b", "https://tec.openplanner.team/stops/H1le124a"], ["https://tec.openplanner.team/stops/H4mo148a", "https://tec.openplanner.team/stops/H4mo182a"], ["https://tec.openplanner.team/stops/LdElamb1", "https://tec.openplanner.team/stops/LdElamb2"], ["https://tec.openplanner.team/stops/LBRpier1", "https://tec.openplanner.team/stops/LLRsalm1"], ["https://tec.openplanner.team/stops/H1te180a", "https://tec.openplanner.team/stops/H1vt194b"], ["https://tec.openplanner.team/stops/N351afb", "https://tec.openplanner.team/stops/N351aib"], ["https://tec.openplanner.team/stops/Bptrcra1", "https://tec.openplanner.team/stops/Bptrman2"], ["https://tec.openplanner.team/stops/Crbhurt1", "https://tec.openplanner.team/stops/Cslbhau2"], ["https://tec.openplanner.team/stops/Bvirflu2", "https://tec.openplanner.team/stops/Bvirgar1"], ["https://tec.openplanner.team/stops/X801aba", "https://tec.openplanner.team/stops/X801abc"], ["https://tec.openplanner.team/stops/H4bq102b", "https://tec.openplanner.team/stops/H4bq154b"], ["https://tec.openplanner.team/stops/X739ahb", "https://tec.openplanner.team/stops/X911aeb"], ["https://tec.openplanner.team/stops/Llgseel2", "https://tec.openplanner.team/stops/Llgwild6"], ["https://tec.openplanner.team/stops/H1bi100b", "https://tec.openplanner.team/stops/H1bu143a"], ["https://tec.openplanner.team/stops/Ctuplac3", "https://tec.openplanner.team/stops/Ctuyser1"], ["https://tec.openplanner.team/stops/NL79aaa", "https://tec.openplanner.team/stops/NL81aeb"], ["https://tec.openplanner.team/stops/Bquevel1", "https://tec.openplanner.team/stops/Bquevel2"], ["https://tec.openplanner.team/stops/H4mo155a", "https://tec.openplanner.team/stops/H4rx141b"], ["https://tec.openplanner.team/stops/LhSfrei1", "https://tec.openplanner.team/stops/LhSfrep2"], ["https://tec.openplanner.team/stops/H1hr115a", "https://tec.openplanner.team/stops/H1hr124b"], ["https://tec.openplanner.team/stops/Llgpara2", "https://tec.openplanner.team/stops/Llgriva2"], ["https://tec.openplanner.team/stops/N244ala", "https://tec.openplanner.team/stops/N244alb"], ["https://tec.openplanner.team/stops/Brsgges1", "https://tec.openplanner.team/stops/Brsgges2"], ["https://tec.openplanner.team/stops/N170aea", "https://tec.openplanner.team/stops/NC14ada"], ["https://tec.openplanner.team/stops/H4ta134a", "https://tec.openplanner.team/stops/H4ta134b"], ["https://tec.openplanner.team/stops/H1mq199b", "https://tec.openplanner.team/stops/H5ar127b"], ["https://tec.openplanner.team/stops/LFAplan2", "https://tec.openplanner.team/stops/LFAsauv2"], ["https://tec.openplanner.team/stops/N988aab", "https://tec.openplanner.team/stops/N988abb"], ["https://tec.openplanner.team/stops/H4lz125a", "https://tec.openplanner.team/stops/H4lz161b"], ["https://tec.openplanner.team/stops/N212aba", "https://tec.openplanner.team/stops/N213abb"], ["https://tec.openplanner.team/stops/LGOmous1", "https://tec.openplanner.team/stops/LGOmous2"], ["https://tec.openplanner.team/stops/H1je220a", "https://tec.openplanner.team/stops/H1je222b"], ["https://tec.openplanner.team/stops/LLrgobe2", "https://tec.openplanner.team/stops/LLrjeho2"], ["https://tec.openplanner.team/stops/H1gc122b", "https://tec.openplanner.team/stops/H1go118b"], ["https://tec.openplanner.team/stops/N534aub", "https://tec.openplanner.team/stops/N534bxb"], ["https://tec.openplanner.team/stops/LDOviad1", "https://tec.openplanner.team/stops/LDOviad2"], ["https://tec.openplanner.team/stops/LSIcour1", "https://tec.openplanner.team/stops/LSIcour2"], ["https://tec.openplanner.team/stops/H4ty381b", "https://tec.openplanner.team/stops/H4ty382a"], ["https://tec.openplanner.team/stops/H1ho124b", "https://tec.openplanner.team/stops/H1ho125c"], ["https://tec.openplanner.team/stops/Lvehauz3", "https://tec.openplanner.team/stops/Lvehopi4"], ["https://tec.openplanner.team/stops/H2hg145b", "https://tec.openplanner.team/stops/H2hg154f"], ["https://tec.openplanner.team/stops/X818ara", "https://tec.openplanner.team/stops/X818asc"], ["https://tec.openplanner.team/stops/N212aia", "https://tec.openplanner.team/stops/N212aib"], ["https://tec.openplanner.team/stops/Bfelbri3", "https://tec.openplanner.team/stops/Bfelgar3"], ["https://tec.openplanner.team/stops/LhSschn2", "https://tec.openplanner.team/stops/LhSwind2"], ["https://tec.openplanner.team/stops/N584aha", "https://tec.openplanner.team/stops/N584ana"], ["https://tec.openplanner.team/stops/Cauglac1", "https://tec.openplanner.team/stops/Cvsbois1"], ["https://tec.openplanner.team/stops/X261aca", "https://tec.openplanner.team/stops/X982aad"], ["https://tec.openplanner.team/stops/Cjudest1", "https://tec.openplanner.team/stops/Cjupn3"], ["https://tec.openplanner.team/stops/LTRcarr1", "https://tec.openplanner.team/stops/LTRryta1"], ["https://tec.openplanner.team/stops/X606aab", "https://tec.openplanner.team/stops/X620ahb"], ["https://tec.openplanner.team/stops/H4br109a", "https://tec.openplanner.team/stops/H4jm118a"], ["https://tec.openplanner.team/stops/LFFeg--1", "https://tec.openplanner.team/stops/LFFeg--2"], ["https://tec.openplanner.team/stops/N501acb", "https://tec.openplanner.team/stops/N501afa"], ["https://tec.openplanner.team/stops/X784aja", "https://tec.openplanner.team/stops/X784aka"], ["https://tec.openplanner.team/stops/Llianix3", "https://tec.openplanner.team/stops/Lligare*"], ["https://tec.openplanner.team/stops/X609apa", "https://tec.openplanner.team/stops/X611aba"], ["https://tec.openplanner.team/stops/Cmchai1", "https://tec.openplanner.team/stops/Cmgtour2"], ["https://tec.openplanner.team/stops/Cnachat1", "https://tec.openplanner.team/stops/Cnahous1"], ["https://tec.openplanner.team/stops/H4pl114a", "https://tec.openplanner.team/stops/H4pl136a"], ["https://tec.openplanner.team/stops/H4ld123a", "https://tec.openplanner.team/stops/H4ld123b"], ["https://tec.openplanner.team/stops/X614ava", "https://tec.openplanner.team/stops/X614bra"], ["https://tec.openplanner.team/stops/LJSforg1", "https://tec.openplanner.team/stops/LTHcime2"], ["https://tec.openplanner.team/stops/X771aea", "https://tec.openplanner.team/stops/X771afb"], ["https://tec.openplanner.team/stops/LHcaube1", "https://tec.openplanner.team/stops/LJAferm1"], ["https://tec.openplanner.team/stops/Clomari1", "https://tec.openplanner.team/stops/CMmari2"], ["https://tec.openplanner.team/stops/Llgavoc1", "https://tec.openplanner.team/stops/Llgnico*"], ["https://tec.openplanner.team/stops/H4ca120b", "https://tec.openplanner.team/stops/H4wi163a"], ["https://tec.openplanner.team/stops/H1ha188b", "https://tec.openplanner.team/stops/H1ha198b"], ["https://tec.openplanner.team/stops/N510aab", "https://tec.openplanner.team/stops/N510acb"], ["https://tec.openplanner.team/stops/N301adb", "https://tec.openplanner.team/stops/N302aaa"], ["https://tec.openplanner.team/stops/N141aca", "https://tec.openplanner.team/stops/N143ada"], ["https://tec.openplanner.team/stops/Lchsa632", "https://tec.openplanner.team/stops/Lrahoig2"], ["https://tec.openplanner.team/stops/LOV62--1", "https://tec.openplanner.team/stops/LROrtba2"], ["https://tec.openplanner.team/stops/Cmmphai2", "https://tec.openplanner.team/stops/Cmmserv2"], ["https://tec.openplanner.team/stops/LdE179-1", "https://tec.openplanner.team/stops/LdElamb1"], ["https://tec.openplanner.team/stops/X665aba", "https://tec.openplanner.team/stops/X666aaa"], ["https://tec.openplanner.team/stops/X673aab", "https://tec.openplanner.team/stops/X673abb"], ["https://tec.openplanner.team/stops/Canjon3", "https://tec.openplanner.team/stops/Cfosurs1"], ["https://tec.openplanner.team/stops/Cfrchro2", "https://tec.openplanner.team/stops/Cfrmonu5"], ["https://tec.openplanner.team/stops/LHTbonn2", "https://tec.openplanner.team/stops/LHTcent2"], ["https://tec.openplanner.team/stops/X614aja", "https://tec.openplanner.team/stops/X614aka"], ["https://tec.openplanner.team/stops/LJUmate2", "https://tec.openplanner.team/stops/LJUxhen2"], ["https://tec.openplanner.team/stops/N526aab", "https://tec.openplanner.team/stops/N526aca"], ["https://tec.openplanner.team/stops/X886aca", "https://tec.openplanner.team/stops/X886aeb"], ["https://tec.openplanner.team/stops/LOuhalb2", "https://tec.openplanner.team/stops/LVnvieg1"], ["https://tec.openplanner.team/stops/N201aca", "https://tec.openplanner.team/stops/N201afa"], ["https://tec.openplanner.team/stops/LNCfawe1", "https://tec.openplanner.team/stops/LRRchea3"], ["https://tec.openplanner.team/stops/X901asb", "https://tec.openplanner.team/stops/X902bfb"], ["https://tec.openplanner.team/stops/X636aqb", "https://tec.openplanner.team/stops/X636ara"], ["https://tec.openplanner.team/stops/X618ada", "https://tec.openplanner.team/stops/X618aoa"], ["https://tec.openplanner.team/stops/Bnivrec1", "https://tec.openplanner.team/stops/Bnivrec2"], ["https://tec.openplanner.team/stops/X601bta", "https://tec.openplanner.team/stops/X601btb"], ["https://tec.openplanner.team/stops/N155aab", "https://tec.openplanner.team/stops/N155aca"], ["https://tec.openplanner.team/stops/N548afb", "https://tec.openplanner.team/stops/N569aja"], ["https://tec.openplanner.team/stops/Bixlqll1", "https://tec.openplanner.team/stops/Bsgihmo2"], ["https://tec.openplanner.team/stops/LSOdow%C3%A92", "https://tec.openplanner.team/stops/LSOgott1"], ["https://tec.openplanner.team/stops/Bcharce2", "https://tec.openplanner.team/stops/Bcrnncb2"], ["https://tec.openplanner.team/stops/Bbiehev1", "https://tec.openplanner.team/stops/Bbiehev2"], ["https://tec.openplanner.team/stops/LWHwaas4", "https://tec.openplanner.team/stops/LWHzave2"], ["https://tec.openplanner.team/stops/N350ada", "https://tec.openplanner.team/stops/N350aea"], ["https://tec.openplanner.team/stops/LBIvill1", "https://tec.openplanner.team/stops/LBIvill2"], ["https://tec.openplanner.team/stops/LFPzwaa2", "https://tec.openplanner.team/stops/LVukabi1"], ["https://tec.openplanner.team/stops/LBCtros1", "https://tec.openplanner.team/stops/LXftche1"], ["https://tec.openplanner.team/stops/N538atb", "https://tec.openplanner.team/stops/N538aub"], ["https://tec.openplanner.team/stops/N217acc", "https://tec.openplanner.team/stops/N217acd"], ["https://tec.openplanner.team/stops/X804anb", "https://tec.openplanner.team/stops/X804aoa"], ["https://tec.openplanner.team/stops/N533apb", "https://tec.openplanner.team/stops/N533aqd"], ["https://tec.openplanner.team/stops/LTGsucr2", "https://tec.openplanner.team/stops/LTGvill1"], ["https://tec.openplanner.team/stops/Bbealou2", "https://tec.openplanner.team/stops/Bbeamon2"], ["https://tec.openplanner.team/stops/X901aob", "https://tec.openplanner.team/stops/X901apb"], ["https://tec.openplanner.team/stops/LSypesy1", "https://tec.openplanner.team/stops/LSypesy2"], ["https://tec.openplanner.team/stops/LMAfali1", "https://tec.openplanner.team/stops/LMAfali2"], ["https://tec.openplanner.team/stops/N542acb", "https://tec.openplanner.team/stops/N542ama"], ["https://tec.openplanner.team/stops/Lsefore2", "https://tec.openplanner.team/stops/Lsestap1"], ["https://tec.openplanner.team/stops/Cfrbrin2", "https://tec.openplanner.team/stops/Cfrmoul1"], ["https://tec.openplanner.team/stops/H5rx112a", "https://tec.openplanner.team/stops/H5rx128b"], ["https://tec.openplanner.team/stops/LAIrout2", "https://tec.openplanner.team/stops/LBzec--2"], ["https://tec.openplanner.team/stops/X344acb", "https://tec.openplanner.team/stops/X344ada"], ["https://tec.openplanner.team/stops/Bnivaig1", "https://tec.openplanner.team/stops/Bnivrwi2"], ["https://tec.openplanner.team/stops/N167add", "https://tec.openplanner.team/stops/N167agb"], ["https://tec.openplanner.team/stops/Bmasegl2", "https://tec.openplanner.team/stops/NB33aea"], ["https://tec.openplanner.team/stops/Lfhhosp1", "https://tec.openplanner.team/stops/Ljedepa2"], ["https://tec.openplanner.team/stops/X766aca", "https://tec.openplanner.team/stops/X766aeb"], ["https://tec.openplanner.team/stops/LDoeg--2", "https://tec.openplanner.team/stops/LLiforg2"], ["https://tec.openplanner.team/stops/Blaspch2", "https://tec.openplanner.team/stops/Blasvil2"], ["https://tec.openplanner.team/stops/H1sy144b", "https://tec.openplanner.team/stops/H1sy144d"], ["https://tec.openplanner.team/stops/Lpelouh1", "https://tec.openplanner.team/stops/Lpepano2"], ["https://tec.openplanner.team/stops/LFdchau4", "https://tec.openplanner.team/stops/LFdeg--4"], ["https://tec.openplanner.team/stops/N548agb", "https://tec.openplanner.team/stops/N548aka"], ["https://tec.openplanner.team/stops/H5at111a", "https://tec.openplanner.team/stops/H5at141a"], ["https://tec.openplanner.team/stops/Cmlcent1", "https://tec.openplanner.team/stops/Cmlcent2"], ["https://tec.openplanner.team/stops/Craplac1", "https://tec.openplanner.team/stops/Crasocq1"], ["https://tec.openplanner.team/stops/X623ajb", "https://tec.openplanner.team/stops/X624aja"], ["https://tec.openplanner.team/stops/LORroma1", "https://tec.openplanner.team/stops/LTobilz2"], ["https://tec.openplanner.team/stops/H2ll172b", "https://tec.openplanner.team/stops/H2ll172d"], ["https://tec.openplanner.team/stops/Ladandr1", "https://tec.openplanner.team/stops/Ladpire2"], ["https://tec.openplanner.team/stops/Bgnpegl2", "https://tec.openplanner.team/stops/Bgnpgar1"], ["https://tec.openplanner.team/stops/H4fl114a", "https://tec.openplanner.team/stops/H4wi166b"], ["https://tec.openplanner.team/stops/N115aca", "https://tec.openplanner.team/stops/N147afb"], ["https://tec.openplanner.team/stops/H1ba108b", "https://tec.openplanner.team/stops/H1ba115a"], ["https://tec.openplanner.team/stops/N534bqb", "https://tec.openplanner.team/stops/N534bva"], ["https://tec.openplanner.team/stops/X601abb", "https://tec.openplanner.team/stops/X601acb"], ["https://tec.openplanner.team/stops/H1gr120a", "https://tec.openplanner.team/stops/H1mk113b"], ["https://tec.openplanner.team/stops/Bplncsd1", "https://tec.openplanner.team/stops/Bplncsd2"], ["https://tec.openplanner.team/stops/LGLobor1", "https://tec.openplanner.team/stops/LGLobor2"], ["https://tec.openplanner.team/stops/Cmastma2", "https://tec.openplanner.team/stops/Cmastma4"], ["https://tec.openplanner.team/stops/H1ha197a", "https://tec.openplanner.team/stops/H1ha197b"], ["https://tec.openplanner.team/stops/N584bpa", "https://tec.openplanner.team/stops/N584bpc"], ["https://tec.openplanner.team/stops/Lboeg--1", "https://tec.openplanner.team/stops/Lbotige2"], ["https://tec.openplanner.team/stops/X714aca", "https://tec.openplanner.team/stops/X714aea"], ["https://tec.openplanner.team/stops/N390aaa", "https://tec.openplanner.team/stops/X998azb"], ["https://tec.openplanner.team/stops/Cgzpjeu1", "https://tec.openplanner.team/stops/Cgzplac3"], ["https://tec.openplanner.team/stops/LBdcime1", "https://tec.openplanner.team/stops/LWMcent1"], ["https://tec.openplanner.team/stops/LSkkeri1", "https://tec.openplanner.team/stops/LSkyern2"], ["https://tec.openplanner.team/stops/X999aka", "https://tec.openplanner.team/stops/X999alb"], ["https://tec.openplanner.team/stops/LwYsour1", "https://tec.openplanner.team/stops/LwYsour4"], ["https://tec.openplanner.team/stops/N543cma", "https://tec.openplanner.team/stops/N543cna"], ["https://tec.openplanner.team/stops/LJAfawe2", "https://tec.openplanner.team/stops/LSW26--1"], ["https://tec.openplanner.team/stops/LTPabat1", "https://tec.openplanner.team/stops/LTPpisc1"], ["https://tec.openplanner.team/stops/X763aha", "https://tec.openplanner.team/stops/X763aia"], ["https://tec.openplanner.team/stops/Bmlncha1", "https://tec.openplanner.team/stops/Bmlncha2"], ["https://tec.openplanner.team/stops/N236ahb", "https://tec.openplanner.team/stops/N236aia"], ["https://tec.openplanner.team/stops/LERdeho2", "https://tec.openplanner.team/stops/LERpouh2"], ["https://tec.openplanner.team/stops/Cjxdesc1", "https://tec.openplanner.team/stops/Cjxplac1"], ["https://tec.openplanner.team/stops/H4eq123a", "https://tec.openplanner.team/stops/H4ob109b"], ["https://tec.openplanner.team/stops/LWzeg--*", "https://tec.openplanner.team/stops/LWzwanz2"], ["https://tec.openplanner.team/stops/Cgrchfe2", "https://tec.openplanner.team/stops/Clvorle1"], ["https://tec.openplanner.team/stops/X926acb", "https://tec.openplanner.team/stops/X926ada"], ["https://tec.openplanner.team/stops/N120aaa", "https://tec.openplanner.team/stops/N120afb"], ["https://tec.openplanner.team/stops/H1he101a", "https://tec.openplanner.team/stops/H1he108a"], ["https://tec.openplanner.team/stops/Bcsebde2", "https://tec.openplanner.team/stops/Bsmgmou2"], ["https://tec.openplanner.team/stops/H4bd108a", "https://tec.openplanner.team/stops/H4bd112b"], ["https://tec.openplanner.team/stops/LsVgore1", "https://tec.openplanner.team/stops/LsVlind*"], ["https://tec.openplanner.team/stops/N232aga", "https://tec.openplanner.team/stops/N286abb"], ["https://tec.openplanner.team/stops/Ccuoise2", "https://tec.openplanner.team/stops/Ccuseba1"], ["https://tec.openplanner.team/stops/Cgoetun2", "https://tec.openplanner.team/stops/Cgopier2"], ["https://tec.openplanner.team/stops/Bwatnrs1", "https://tec.openplanner.team/stops/Bwatnrs2"], ["https://tec.openplanner.team/stops/H4lz126b", "https://tec.openplanner.team/stops/H4lz155a"], ["https://tec.openplanner.team/stops/LEHhaut2", "https://tec.openplanner.team/stops/LEHpech2"], ["https://tec.openplanner.team/stops/N236amb", "https://tec.openplanner.team/stops/N236ana"], ["https://tec.openplanner.team/stops/H1eu104b", "https://tec.openplanner.team/stops/H1pa166b"], ["https://tec.openplanner.team/stops/LTRfend1", "https://tec.openplanner.team/stops/LTRmosb1"], ["https://tec.openplanner.team/stops/LCUmonu2", "https://tec.openplanner.team/stops/NL67adb"], ["https://tec.openplanner.team/stops/X687aja", "https://tec.openplanner.team/stops/X687aka"], ["https://tec.openplanner.team/stops/H1ba105a", "https://tec.openplanner.team/stops/H1si169b"], ["https://tec.openplanner.team/stops/X825adb", "https://tec.openplanner.team/stops/X825aea"], ["https://tec.openplanner.team/stops/H5at127a", "https://tec.openplanner.team/stops/H5at130a"], ["https://tec.openplanner.team/stops/H2mi122a", "https://tec.openplanner.team/stops/H3lr107a"], ["https://tec.openplanner.team/stops/H4er121a", "https://tec.openplanner.team/stops/H4er121b"], ["https://tec.openplanner.team/stops/Ltibord2", "https://tec.openplanner.team/stops/Ltitill*"], ["https://tec.openplanner.team/stops/Bspkdon1", "https://tec.openplanner.team/stops/Bspkker2"], ["https://tec.openplanner.team/stops/N509asb", "https://tec.openplanner.team/stops/N509aua"], ["https://tec.openplanner.team/stops/N501jba", "https://tec.openplanner.team/stops/N501jna"], ["https://tec.openplanner.team/stops/X870afb", "https://tec.openplanner.team/stops/X870aja"], ["https://tec.openplanner.team/stops/X746aca", "https://tec.openplanner.team/stops/X746ada"], ["https://tec.openplanner.team/stops/H1ba104b", "https://tec.openplanner.team/stops/H1ba109b"], ["https://tec.openplanner.team/stops/X743afa", "https://tec.openplanner.team/stops/X746agc"], ["https://tec.openplanner.team/stops/N515aqc", "https://tec.openplanner.team/stops/N515aqd"], ["https://tec.openplanner.team/stops/H4am100b", "https://tec.openplanner.team/stops/H4am101b"], ["https://tec.openplanner.team/stops/LBLtroi2", "https://tec.openplanner.team/stops/LBLvici2"], ["https://tec.openplanner.team/stops/N501cxb", "https://tec.openplanner.team/stops/N501czb"], ["https://tec.openplanner.team/stops/LbTaral1", "https://tec.openplanner.team/stops/LbTkreu1"], ["https://tec.openplanner.team/stops/LBNvilv1", "https://tec.openplanner.team/stops/LGOmous2"], ["https://tec.openplanner.team/stops/X721apb", "https://tec.openplanner.team/stops/X721asa"], ["https://tec.openplanner.team/stops/N512agc", "https://tec.openplanner.team/stops/NL57agb"], ["https://tec.openplanner.team/stops/X641aca", "https://tec.openplanner.team/stops/X641acb"], ["https://tec.openplanner.team/stops/H5bs103a", "https://tec.openplanner.team/stops/H5bs103b"], ["https://tec.openplanner.team/stops/N426aaa", "https://tec.openplanner.team/stops/N426aab"], ["https://tec.openplanner.team/stops/H4bh105a", "https://tec.openplanner.team/stops/H4ry141b"], ["https://tec.openplanner.team/stops/LbTkreu1", "https://tec.openplanner.team/stops/LbTkreu2"], ["https://tec.openplanner.team/stops/Btubcvi1", "https://tec.openplanner.team/stops/Btubcvi2"], ["https://tec.openplanner.team/stops/Llgpiet2", "https://tec.openplanner.team/stops/Llgvolg2"], ["https://tec.openplanner.team/stops/H1ht132b", "https://tec.openplanner.team/stops/H1si151b"], ["https://tec.openplanner.team/stops/X757akb", "https://tec.openplanner.team/stops/X757ala"], ["https://tec.openplanner.team/stops/LBspiet1", "https://tec.openplanner.team/stops/LBspiet2"], ["https://tec.openplanner.team/stops/Lmnchal1", "https://tec.openplanner.team/stops/Lmnchal2"], ["https://tec.openplanner.team/stops/Cchccom2", "https://tec.openplanner.team/stops/Cchvil22"], ["https://tec.openplanner.team/stops/H4co151a", "https://tec.openplanner.team/stops/H4co162a"], ["https://tec.openplanner.team/stops/N312aca", "https://tec.openplanner.team/stops/N312acb"], ["https://tec.openplanner.team/stops/H5at128a", "https://tec.openplanner.team/stops/H5ma186a"], ["https://tec.openplanner.team/stops/H4hu119b", "https://tec.openplanner.team/stops/H4hu120b"], ["https://tec.openplanner.team/stops/LHNecpr1", "https://tec.openplanner.team/stops/NL37aca"], ["https://tec.openplanner.team/stops/N310aab", "https://tec.openplanner.team/stops/N310aba"], ["https://tec.openplanner.team/stops/H1ch107a", "https://tec.openplanner.team/stops/H1ch141a"], ["https://tec.openplanner.team/stops/X636aab", "https://tec.openplanner.team/stops/X636acb"], ["https://tec.openplanner.team/stops/H1ms940a", "https://tec.openplanner.team/stops/H1ms940b"], ["https://tec.openplanner.team/stops/H1gi120a", "https://tec.openplanner.team/stops/H1gi121b"], ["https://tec.openplanner.team/stops/X790afa", "https://tec.openplanner.team/stops/X790ahb"], ["https://tec.openplanner.team/stops/N214aca", "https://tec.openplanner.team/stops/N214adb"], ["https://tec.openplanner.team/stops/Lprsher2", "https://tec.openplanner.team/stops/Lprthie2"], ["https://tec.openplanner.team/stops/H2pr115b", "https://tec.openplanner.team/stops/H2pr118a"], ["https://tec.openplanner.team/stops/X880aea", "https://tec.openplanner.team/stops/X880afa"], ["https://tec.openplanner.team/stops/X897afa", "https://tec.openplanner.team/stops/X985afb"], ["https://tec.openplanner.team/stops/N232ana", "https://tec.openplanner.team/stops/N232aob"], ["https://tec.openplanner.team/stops/Lverema2", "https://tec.openplanner.team/stops/Lvesomm2"], ["https://tec.openplanner.team/stops/H1ha191a", "https://tec.openplanner.team/stops/H1ha199a"], ["https://tec.openplanner.team/stops/Lveptle3", "https://tec.openplanner.team/stops/Lveptle4"], ["https://tec.openplanner.team/stops/H2hg269a", "https://tec.openplanner.team/stops/H2hg269b"], ["https://tec.openplanner.team/stops/X827aaa", "https://tec.openplanner.team/stops/X828aab"], ["https://tec.openplanner.team/stops/N222aab", "https://tec.openplanner.team/stops/N222aya"], ["https://tec.openplanner.team/stops/Blhugar1", "https://tec.openplanner.team/stops/Blhusor1"], ["https://tec.openplanner.team/stops/X667abb", "https://tec.openplanner.team/stops/X667ada"], ["https://tec.openplanner.team/stops/LMastat4", "https://tec.openplanner.team/stops/LTEnuro2"], ["https://tec.openplanner.team/stops/Bwavcar1", "https://tec.openplanner.team/stops/Bwavrij1"], ["https://tec.openplanner.team/stops/LTRespe1", "https://tec.openplanner.team/stops/LTRferm2"], ["https://tec.openplanner.team/stops/Lceviei1", "https://tec.openplanner.team/stops/Lceviei2"], ["https://tec.openplanner.team/stops/LnUneun1", "https://tec.openplanner.team/stops/LsVlust1"], ["https://tec.openplanner.team/stops/N232ara", "https://tec.openplanner.team/stops/N232bka"], ["https://tec.openplanner.team/stops/LBBcamp1", "https://tec.openplanner.team/stops/LLvgare2"], ["https://tec.openplanner.team/stops/Lvelobe1", "https://tec.openplanner.team/stops/Lvewaut2"], ["https://tec.openplanner.team/stops/H4ty273c", "https://tec.openplanner.team/stops/H4ty295a"], ["https://tec.openplanner.team/stops/Llghlau1", "https://tec.openplanner.team/stops/Llghlau2"], ["https://tec.openplanner.team/stops/H4bh102d", "https://tec.openplanner.team/stops/H4lp123a"], ["https://tec.openplanner.team/stops/Bgzdgpa2", "https://tec.openplanner.team/stops/Bwavpar1"], ["https://tec.openplanner.team/stops/LFFcouv1", "https://tec.openplanner.team/stops/LFFpier2"], ["https://tec.openplanner.team/stops/LAnfall1", "https://tec.openplanner.team/stops/LAnfall2"], ["https://tec.openplanner.team/stops/X790aib", "https://tec.openplanner.team/stops/X790akc"], ["https://tec.openplanner.team/stops/X664aob", "https://tec.openplanner.team/stops/X664apa"], ["https://tec.openplanner.team/stops/Clfbarr6", "https://tec.openplanner.team/stops/Crglyre1"], ["https://tec.openplanner.team/stops/N115aca", "https://tec.openplanner.team/stops/N155aib"], ["https://tec.openplanner.team/stops/Bbryfon2", "https://tec.openplanner.team/stops/Bsamlon2"], ["https://tec.openplanner.team/stops/N323aaa", "https://tec.openplanner.team/stops/N323aab"], ["https://tec.openplanner.team/stops/Lcacasi1", "https://tec.openplanner.team/stops/LNipla3"], ["https://tec.openplanner.team/stops/LFFeg--2", "https://tec.openplanner.team/stops/LFFruel1"], ["https://tec.openplanner.team/stops/H4he106a", "https://tec.openplanner.team/stops/H4mx116b"], ["https://tec.openplanner.team/stops/Lsemaha1", "https://tec.openplanner.team/stops/Lseverh1"], ["https://tec.openplanner.team/stops/Bnivmet2", "https://tec.openplanner.team/stops/Bnivsoi1"], ["https://tec.openplanner.team/stops/LPLcarr1", "https://tec.openplanner.team/stops/LPLcarr4"], ["https://tec.openplanner.team/stops/Benggar1", "https://tec.openplanner.team/stops/Bspkbeu2"], ["https://tec.openplanner.team/stops/Ctrpn1", "https://tec.openplanner.team/stops/H2tz120a"], ["https://tec.openplanner.team/stops/Lflcle-*", "https://tec.openplanner.team/stops/Lflcle-2"], ["https://tec.openplanner.team/stops/Bmalwop1", "https://tec.openplanner.team/stops/Bmalwvi1"], ["https://tec.openplanner.team/stops/H4bd109b", "https://tec.openplanner.team/stops/H4te254b"], ["https://tec.openplanner.team/stops/Lhepaqu1", "https://tec.openplanner.team/stops/Lhrmeta2"], ["https://tec.openplanner.team/stops/X608aja", "https://tec.openplanner.team/stops/X608ajb"], ["https://tec.openplanner.team/stops/LWDhous1", "https://tec.openplanner.team/stops/LWDsott1"], ["https://tec.openplanner.team/stops/LBGvill2", "https://tec.openplanner.team/stops/LLnpomp2"], ["https://tec.openplanner.team/stops/H1gr116b", "https://tec.openplanner.team/stops/H1gr123a"], ["https://tec.openplanner.team/stops/Cfrcoop3", "https://tec.openplanner.team/stops/Cfrsour1"], ["https://tec.openplanner.team/stops/LVLm10-1", "https://tec.openplanner.team/stops/LVLm10-2"], ["https://tec.openplanner.team/stops/N232bya", "https://tec.openplanner.team/stops/N232cab"], ["https://tec.openplanner.team/stops/Blineco1", "https://tec.openplanner.team/stops/Blingar2"], ["https://tec.openplanner.team/stops/LlNlimb2", "https://tec.openplanner.team/stops/LlNsc652"], ["https://tec.openplanner.team/stops/LPLcond1", "https://tec.openplanner.team/stops/LRRchen1"], ["https://tec.openplanner.team/stops/N308agb", "https://tec.openplanner.team/stops/N308aoa"], ["https://tec.openplanner.team/stops/Csebasc1", "https://tec.openplanner.team/stops/Cselibe1"], ["https://tec.openplanner.team/stops/LGEcent1", "https://tec.openplanner.team/stops/LGEcent2"], ["https://tec.openplanner.team/stops/LCRabbe1", "https://tec.openplanner.team/stops/LOdcris2"], ["https://tec.openplanner.team/stops/H4mo172a", "https://tec.openplanner.team/stops/H4mo207a"], ["https://tec.openplanner.team/stops/X750aaa", "https://tec.openplanner.team/stops/X750aia"], ["https://tec.openplanner.team/stops/X796acc", "https://tec.openplanner.team/stops/X796agb"], ["https://tec.openplanner.team/stops/Lalbout2", "https://tec.openplanner.team/stops/Lalparc2"], ["https://tec.openplanner.team/stops/Lprcite2", "https://tec.openplanner.team/stops/Lprdavi1"], ["https://tec.openplanner.team/stops/Barcast2", "https://tec.openplanner.team/stops/Bgzdn252"], ["https://tec.openplanner.team/stops/LMOcorn1", "https://tec.openplanner.team/stops/LMOcorn2"], ["https://tec.openplanner.team/stops/Cnafont1", "https://tec.openplanner.team/stops/Cnalava3"], ["https://tec.openplanner.team/stops/N534bng", "https://tec.openplanner.team/stops/N534byb"], ["https://tec.openplanner.team/stops/Brsgfon1", "https://tec.openplanner.team/stops/Brsgfon2"], ["https://tec.openplanner.team/stops/Bquevel2", "https://tec.openplanner.team/stops/Btubren2"], ["https://tec.openplanner.team/stops/Bgdhpco1", "https://tec.openplanner.team/stops/Bgdhpco2"], ["https://tec.openplanner.team/stops/X773afa", "https://tec.openplanner.team/stops/X773afb"], ["https://tec.openplanner.team/stops/X748abb", "https://tec.openplanner.team/stops/X767aja"], ["https://tec.openplanner.team/stops/LKmcite2", "https://tec.openplanner.team/stops/LKmmelo2"], ["https://tec.openplanner.team/stops/X809aca", "https://tec.openplanner.team/stops/X809afa"], ["https://tec.openplanner.team/stops/N521acb", "https://tec.openplanner.team/stops/N523aba"], ["https://tec.openplanner.team/stops/H4ka183a", "https://tec.openplanner.team/stops/H4ka183b"], ["https://tec.openplanner.team/stops/N537acb", "https://tec.openplanner.team/stops/N537akb"], ["https://tec.openplanner.team/stops/H4gr109a", "https://tec.openplanner.team/stops/H4gr109b"], ["https://tec.openplanner.team/stops/Blhucmo2", "https://tec.openplanner.team/stops/Blhunys1"], ["https://tec.openplanner.team/stops/N219aba", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/H4eg108a", "https://tec.openplanner.team/stops/H4ne135a"], ["https://tec.openplanner.team/stops/Csscrot1", "https://tec.openplanner.team/stops/Csspn2"], ["https://tec.openplanner.team/stops/LLrhaut1", "https://tec.openplanner.team/stops/LLrhaut4"], ["https://tec.openplanner.team/stops/N527aab", "https://tec.openplanner.team/stops/N533apa"], ["https://tec.openplanner.team/stops/LbUverb1", "https://tec.openplanner.team/stops/LbUvith2"], ["https://tec.openplanner.team/stops/X982ara", "https://tec.openplanner.team/stops/X982asb"], ["https://tec.openplanner.team/stops/H5qu148b", "https://tec.openplanner.team/stops/H5qu149a"], ["https://tec.openplanner.team/stops/LBWeg--2", "https://tec.openplanner.team/stops/LBWeg--3"], ["https://tec.openplanner.team/stops/Bwbfhip1", "https://tec.openplanner.team/stops/Bwbfhip2"], ["https://tec.openplanner.team/stops/Lagbeno5", "https://tec.openplanner.team/stops/Lagboil1"], ["https://tec.openplanner.team/stops/Cclplac1", "https://tec.openplanner.team/stops/Cclplac2"], ["https://tec.openplanner.team/stops/N522aca", "https://tec.openplanner.team/stops/N522acb"], ["https://tec.openplanner.team/stops/LOMbrou2", "https://tec.openplanner.team/stops/LOMeg--2"], ["https://tec.openplanner.team/stops/Bwagcus2", "https://tec.openplanner.team/stops/Csachas1"], ["https://tec.openplanner.team/stops/LBYwez-2", "https://tec.openplanner.team/stops/LHEvign2"], ["https://tec.openplanner.team/stops/N254aca", "https://tec.openplanner.team/stops/N254adb"], ["https://tec.openplanner.team/stops/N134aea", "https://tec.openplanner.team/stops/N152abd"], ["https://tec.openplanner.team/stops/Bwatsan2", "https://tec.openplanner.team/stops/Bwatvco1"], ["https://tec.openplanner.team/stops/LkTraer1", "https://tec.openplanner.team/stops/LkTweih1"], ["https://tec.openplanner.team/stops/X788aba", "https://tec.openplanner.team/stops/X788abb"], ["https://tec.openplanner.team/stops/LTIptme1", "https://tec.openplanner.team/stops/LTIptme2"], ["https://tec.openplanner.team/stops/N512aid", "https://tec.openplanner.team/stops/N512apb"], ["https://tec.openplanner.team/stops/X721aab", "https://tec.openplanner.team/stops/X723akb"], ["https://tec.openplanner.team/stops/LmSluxh2", "https://tec.openplanner.team/stops/LnUneun2"], ["https://tec.openplanner.team/stops/X878aab", "https://tec.openplanner.team/stops/X879aaa"], ["https://tec.openplanner.team/stops/X897aaa", "https://tec.openplanner.team/stops/X899aeb"], ["https://tec.openplanner.team/stops/H5at115b", "https://tec.openplanner.team/stops/H5at141b"], ["https://tec.openplanner.team/stops/Bcer4br1", "https://tec.openplanner.team/stops/Bcercab2"], ["https://tec.openplanner.team/stops/H1mm121a", "https://tec.openplanner.team/stops/H1mm131a"], ["https://tec.openplanner.team/stops/N217aaa", "https://tec.openplanner.team/stops/N217aba"], ["https://tec.openplanner.team/stops/LRRmeta1", "https://tec.openplanner.team/stops/LRRrimi2"], ["https://tec.openplanner.team/stops/N141aea", "https://tec.openplanner.team/stops/N141afa"], ["https://tec.openplanner.team/stops/LBAfort2", "https://tec.openplanner.team/stops/LHOgymn2"], ["https://tec.openplanner.team/stops/LROcham1", "https://tec.openplanner.team/stops/LROhael1"], ["https://tec.openplanner.team/stops/X347aab", "https://tec.openplanner.team/stops/X370acb"], ["https://tec.openplanner.team/stops/LNAanne2", "https://tec.openplanner.team/stops/LSSfont2"], ["https://tec.openplanner.team/stops/Bhakmkr1", "https://tec.openplanner.team/stops/Bhakmkr2"], ["https://tec.openplanner.team/stops/H2bh114a", "https://tec.openplanner.team/stops/H2bh119a"], ["https://tec.openplanner.team/stops/N235aaa", "https://tec.openplanner.team/stops/N236ana"], ["https://tec.openplanner.team/stops/H4mo174a", "https://tec.openplanner.team/stops/H4mo183a"], ["https://tec.openplanner.team/stops/Cgzbouh1", "https://tec.openplanner.team/stops/Cmx3arb1"], ["https://tec.openplanner.team/stops/X619aka", "https://tec.openplanner.team/stops/X696ada"], ["https://tec.openplanner.team/stops/N564aea", "https://tec.openplanner.team/stops/N564afa"], ["https://tec.openplanner.team/stops/N518aaa", "https://tec.openplanner.team/stops/N520aia"], ["https://tec.openplanner.team/stops/Bnivpve2", "https://tec.openplanner.team/stops/Bnivrsa1"], ["https://tec.openplanner.team/stops/X725aca", "https://tec.openplanner.team/stops/X725acb"], ["https://tec.openplanner.team/stops/N506aob", "https://tec.openplanner.team/stops/N506apa"], ["https://tec.openplanner.team/stops/H1fr111a", "https://tec.openplanner.team/stops/H1ge115b"], ["https://tec.openplanner.team/stops/N535aob", "https://tec.openplanner.team/stops/N580aea"], ["https://tec.openplanner.team/stops/N512acb", "https://tec.openplanner.team/stops/N512agb"], ["https://tec.openplanner.team/stops/H1bo112b", "https://tec.openplanner.team/stops/H1ho130b"], ["https://tec.openplanner.team/stops/Bglarha1", "https://tec.openplanner.team/stops/Bmrswag2"], ["https://tec.openplanner.team/stops/X721aga", "https://tec.openplanner.team/stops/X721agc"], ["https://tec.openplanner.team/stops/LMIcamp2", "https://tec.openplanner.team/stops/LMImc--2"], ["https://tec.openplanner.team/stops/H4ln128b", "https://tec.openplanner.team/stops/H4ne134a"], ["https://tec.openplanner.team/stops/H1gh147a", "https://tec.openplanner.team/stops/H1gh160b"], ["https://tec.openplanner.team/stops/N211aza", "https://tec.openplanner.team/stops/N211baa"], ["https://tec.openplanner.team/stops/Cjuhopi2", "https://tec.openplanner.team/stops/Cjumade0"], ["https://tec.openplanner.team/stops/H4ty295c", "https://tec.openplanner.team/stops/H4ty298b"], ["https://tec.openplanner.team/stops/LeUjuge2", "https://tec.openplanner.team/stops/LeUstad2"], ["https://tec.openplanner.team/stops/LGetroi1", "https://tec.openplanner.team/stops/LVkchap2"], ["https://tec.openplanner.team/stops/Cculpre1", "https://tec.openplanner.team/stops/Ccuphai3"], ["https://tec.openplanner.team/stops/H4ld125b", "https://tec.openplanner.team/stops/H4to135a"], ["https://tec.openplanner.team/stops/X872afa", "https://tec.openplanner.team/stops/X873aca"], ["https://tec.openplanner.team/stops/H4ro154a", "https://tec.openplanner.team/stops/H4ro157a"], ["https://tec.openplanner.team/stops/X671acb", "https://tec.openplanner.team/stops/X671adb"], ["https://tec.openplanner.team/stops/Cfaamio1", "https://tec.openplanner.team/stops/Cfaplma2"], ["https://tec.openplanner.team/stops/H4og206b", "https://tec.openplanner.team/stops/H4og213a"], ["https://tec.openplanner.team/stops/Lveherl1", "https://tec.openplanner.team/stops/Lverogi2"], ["https://tec.openplanner.team/stops/LOccarr3", "https://tec.openplanner.team/stops/LTestat2"], ["https://tec.openplanner.team/stops/Cvscomb1", "https://tec.openplanner.team/stops/N530aja"], ["https://tec.openplanner.team/stops/LjedTEC2", "https://tec.openplanner.team/stops/Ljekess1"], ["https://tec.openplanner.team/stops/Loumair1", "https://tec.openplanner.team/stops/Loutras1"], ["https://tec.openplanner.team/stops/X604aca", "https://tec.openplanner.team/stops/X604akb"], ["https://tec.openplanner.team/stops/X739aaa", "https://tec.openplanner.team/stops/X739aba"], ["https://tec.openplanner.team/stops/LSLdall2", "https://tec.openplanner.team/stops/LSLfler2"], ["https://tec.openplanner.team/stops/LTIcime2", "https://tec.openplanner.team/stops/LTIsupe1"], ["https://tec.openplanner.team/stops/H2le147c", "https://tec.openplanner.team/stops/H2le151b"], ["https://tec.openplanner.team/stops/Lfljupi2", "https://tec.openplanner.team/stops/Lqbchat1"], ["https://tec.openplanner.team/stops/H4ty268a", "https://tec.openplanner.team/stops/H4ty327b"], ["https://tec.openplanner.team/stops/Btstche1", "https://tec.openplanner.team/stops/Btstpch2"], ["https://tec.openplanner.team/stops/LCRabbe1", "https://tec.openplanner.team/stops/LCRabbe2"], ["https://tec.openplanner.team/stops/X780aja", "https://tec.openplanner.team/stops/X780ajb"], ["https://tec.openplanner.team/stops/LMNjard1", "https://tec.openplanner.team/stops/LPbpl--2"], ["https://tec.openplanner.team/stops/Cjucomb1", "https://tec.openplanner.team/stops/Cjucomb2"], ["https://tec.openplanner.team/stops/LBBabat1", "https://tec.openplanner.team/stops/LCLacbi1"], ["https://tec.openplanner.team/stops/H1mb125b", "https://tec.openplanner.team/stops/H1mb128a"], ["https://tec.openplanner.team/stops/Bwaunce2", "https://tec.openplanner.team/stops/Bwaunou1"], ["https://tec.openplanner.team/stops/X802aha", "https://tec.openplanner.team/stops/X802aib"], ["https://tec.openplanner.team/stops/LAOeg--1", "https://tec.openplanner.team/stops/LLRgdma2"], ["https://tec.openplanner.team/stops/Ccogera2", "https://tec.openplanner.team/stops/Csoperi1"], ["https://tec.openplanner.team/stops/Cladura3", "https://tec.openplanner.team/stops/Cladura4"], ["https://tec.openplanner.team/stops/N526acb", "https://tec.openplanner.team/stops/N526ada"], ["https://tec.openplanner.team/stops/H1gh155b", "https://tec.openplanner.team/stops/H1gh160a"], ["https://tec.openplanner.team/stops/Bbxlmid4", "https://tec.openplanner.team/stops/Bbxltou1"], ["https://tec.openplanner.team/stops/Bneecha3", "https://tec.openplanner.team/stops/Bneedia2"], ["https://tec.openplanner.team/stops/H4ea134a", "https://tec.openplanner.team/stops/H4tp145a"], ["https://tec.openplanner.team/stops/LWAaxhe1", "https://tec.openplanner.team/stops/LWAaxhe2"], ["https://tec.openplanner.team/stops/Cragoss2", "https://tec.openplanner.team/stops/Cralimi2"], ["https://tec.openplanner.team/stops/H2mo119a", "https://tec.openplanner.team/stops/H2mo126b"], ["https://tec.openplanner.team/stops/Cgymest1", "https://tec.openplanner.team/stops/Cgyralb1"], ["https://tec.openplanner.team/stops/Lvefanc1", "https://tec.openplanner.team/stops/Lvefanc2"], ["https://tec.openplanner.team/stops/X999anb", "https://tec.openplanner.team/stops/X999asb"], ["https://tec.openplanner.team/stops/N543aua", "https://tec.openplanner.team/stops/N543cga"], ["https://tec.openplanner.team/stops/Candett1", "https://tec.openplanner.team/stops/H2an100a"], ["https://tec.openplanner.team/stops/X858ada", "https://tec.openplanner.team/stops/X858aeb"], ["https://tec.openplanner.team/stops/N351alb", "https://tec.openplanner.team/stops/N353ahb"], ["https://tec.openplanner.team/stops/Blhugmo2", "https://tec.openplanner.team/stops/Blhumga2"], ["https://tec.openplanner.team/stops/Clgpavi2", "https://tec.openplanner.team/stops/Csslesc2"], ["https://tec.openplanner.team/stops/Cmychap1", "https://tec.openplanner.team/stops/Cmysncb2"], ["https://tec.openplanner.team/stops/X657aha", "https://tec.openplanner.team/stops/X657ana"], ["https://tec.openplanner.team/stops/H1do108c", "https://tec.openplanner.team/stops/H1do108e"], ["https://tec.openplanner.team/stops/LPLroth1", "https://tec.openplanner.team/stops/LPLroth2"], ["https://tec.openplanner.team/stops/X671aaa", "https://tec.openplanner.team/stops/X671aba"], ["https://tec.openplanner.team/stops/N123aba", "https://tec.openplanner.team/stops/N123ada"], ["https://tec.openplanner.team/stops/H1hb197a", "https://tec.openplanner.team/stops/H1ht197b"], ["https://tec.openplanner.team/stops/Bixlaca1", "https://tec.openplanner.team/stops/Bixleix1"], ["https://tec.openplanner.team/stops/Canmonu5", "https://tec.openplanner.team/stops/Canvane2"], ["https://tec.openplanner.team/stops/Bdlvpco1", "https://tec.openplanner.team/stops/Bgzdfpo1"], ["https://tec.openplanner.team/stops/Cgyplst1", "https://tec.openplanner.team/stops/Cgyplvi1"], ["https://tec.openplanner.team/stops/Blsmjja2", "https://tec.openplanner.team/stops/Bnodlce1"], ["https://tec.openplanner.team/stops/LLUadze1", "https://tec.openplanner.team/stops/LLUtrol1"], ["https://tec.openplanner.team/stops/N533aaa", "https://tec.openplanner.team/stops/N551afa"], ["https://tec.openplanner.team/stops/H4ry133a", "https://tec.openplanner.team/stops/H4ry140b"], ["https://tec.openplanner.team/stops/X636afa", "https://tec.openplanner.team/stops/X636aha"], ["https://tec.openplanner.team/stops/H1gh365a", "https://tec.openplanner.team/stops/H1ni316b"], ["https://tec.openplanner.team/stops/Ltiferb1", "https://tec.openplanner.team/stops/Ltiferb2"], ["https://tec.openplanner.team/stops/LHMbach4", "https://tec.openplanner.team/stops/LHMec--2"], ["https://tec.openplanner.team/stops/N221aaa", "https://tec.openplanner.team/stops/X394adb"], ["https://tec.openplanner.team/stops/X626aja", "https://tec.openplanner.team/stops/X626ala"], ["https://tec.openplanner.team/stops/Bbrlpar1", "https://tec.openplanner.team/stops/Bbrlvil1"], ["https://tec.openplanner.team/stops/N562ama", "https://tec.openplanner.team/stops/N562amb"], ["https://tec.openplanner.team/stops/LFRrohe1", "https://tec.openplanner.team/stops/LSTchen2"], ["https://tec.openplanner.team/stops/LAWcite6", "https://tec.openplanner.team/stops/LHGikea1"], ["https://tec.openplanner.team/stops/LFocent1", "https://tec.openplanner.team/stops/LFocent2"], ["https://tec.openplanner.team/stops/X801ata", "https://tec.openplanner.team/stops/X801aub"], ["https://tec.openplanner.team/stops/X641acb", "https://tec.openplanner.team/stops/X646ada"], ["https://tec.openplanner.team/stops/Lghbonn2", "https://tec.openplanner.team/stops/Lghencl2"], ["https://tec.openplanner.team/stops/X801bva", "https://tec.openplanner.team/stops/X801bwa"], ["https://tec.openplanner.team/stops/LWOplat2", "https://tec.openplanner.team/stops/LWOsudr1"], ["https://tec.openplanner.team/stops/Cfocant2", "https://tec.openplanner.team/stops/Cfocorn1"], ["https://tec.openplanner.team/stops/N537aba", "https://tec.openplanner.team/stops/N537aca"], ["https://tec.openplanner.team/stops/H1he111b", "https://tec.openplanner.team/stops/H4be149b"], ["https://tec.openplanner.team/stops/H5wo132a", "https://tec.openplanner.team/stops/H5wo132b"], ["https://tec.openplanner.team/stops/LBPxhav1", "https://tec.openplanner.team/stops/LRGmoul1"], ["https://tec.openplanner.team/stops/Lougare3", "https://tec.openplanner.team/stops/Lsebegu3"], ["https://tec.openplanner.team/stops/H4co109a", "https://tec.openplanner.team/stops/H4co109b"], ["https://tec.openplanner.team/stops/LbThau11", "https://tec.openplanner.team/stops/LbTkreu2"], ["https://tec.openplanner.team/stops/LBgbaga1", "https://tec.openplanner.team/stops/LBgbaga3"], ["https://tec.openplanner.team/stops/LvAkirc2", "https://tec.openplanner.team/stops/LvAkirc3"], ["https://tec.openplanner.team/stops/X643aaa", "https://tec.openplanner.team/stops/X644aaa"], ["https://tec.openplanner.team/stops/H3so172a", "https://tec.openplanner.team/stops/H3so175a"], ["https://tec.openplanner.team/stops/Llmcomb1", "https://tec.openplanner.team/stops/Llmlaro2"], ["https://tec.openplanner.team/stops/Lenptsa1", "https://tec.openplanner.team/stops/Lenvale2"], ["https://tec.openplanner.team/stops/Binccha1", "https://tec.openplanner.team/stops/Bincdon1"], ["https://tec.openplanner.team/stops/LBLplas2", "https://tec.openplanner.team/stops/LBLvici1"], ["https://tec.openplanner.team/stops/LOTawan1", "https://tec.openplanner.team/stops/LOTferm1"], ["https://tec.openplanner.team/stops/X811aaa", "https://tec.openplanner.team/stops/X811aab"], ["https://tec.openplanner.team/stops/Bbchdra2", "https://tec.openplanner.team/stops/Bbchmai1"], ["https://tec.openplanner.team/stops/LSMlier1", "https://tec.openplanner.team/stops/LSMtarg1"], ["https://tec.openplanner.team/stops/N323aaa", "https://tec.openplanner.team/stops/N368afb"], ["https://tec.openplanner.team/stops/N229aia", "https://tec.openplanner.team/stops/N229aib"], ["https://tec.openplanner.team/stops/H4an106a", "https://tec.openplanner.team/stops/H4an107b"], ["https://tec.openplanner.team/stops/N576aba", "https://tec.openplanner.team/stops/N576acb"], ["https://tec.openplanner.team/stops/LTPnoup1", "https://tec.openplanner.team/stops/LTPnoup2"], ["https://tec.openplanner.team/stops/X658aba", "https://tec.openplanner.team/stops/X658ahb"], ["https://tec.openplanner.team/stops/Cciethi1", "https://tec.openplanner.team/stops/Ccircar1"], ["https://tec.openplanner.team/stops/LSOvoie4", "https://tec.openplanner.team/stops/LXHbell1"], ["https://tec.openplanner.team/stops/H4au143a", "https://tec.openplanner.team/stops/H4au143b"], ["https://tec.openplanner.team/stops/N577aea", "https://tec.openplanner.team/stops/N577aeb"], ["https://tec.openplanner.team/stops/Clrrhau1", "https://tec.openplanner.team/stops/Clrrhau2"], ["https://tec.openplanner.team/stops/H1cu114b", "https://tec.openplanner.team/stops/H1cu122a"], ["https://tec.openplanner.team/stops/LMEeg--2", "https://tec.openplanner.team/stops/LMEgare2"], ["https://tec.openplanner.team/stops/Lmlcrot*", "https://tec.openplanner.team/stops/Lmlhaut1"], ["https://tec.openplanner.team/stops/X664aab", "https://tec.openplanner.team/stops/X667aea"], ["https://tec.openplanner.team/stops/Bmelenf2", "https://tec.openplanner.team/stops/Btilsce2"], ["https://tec.openplanner.team/stops/LhGfrie1", "https://tec.openplanner.team/stops/LhGgeme1"], ["https://tec.openplanner.team/stops/X874apa", "https://tec.openplanner.team/stops/X874apb"], ["https://tec.openplanner.team/stops/Cpictra1", "https://tec.openplanner.team/stops/Cpictra2"], ["https://tec.openplanner.team/stops/H4ta121b", "https://tec.openplanner.team/stops/H4ta122b"], ["https://tec.openplanner.team/stops/LPOthom1", "https://tec.openplanner.team/stops/LSdcarr1"], ["https://tec.openplanner.team/stops/N338aab", "https://tec.openplanner.team/stops/N338aha"], ["https://tec.openplanner.team/stops/Btlbcul1", "https://tec.openplanner.team/stops/Btlbcul2"], ["https://tec.openplanner.team/stops/LOunebl2", "https://tec.openplanner.team/stops/X982btb"], ["https://tec.openplanner.team/stops/Cfocant1", "https://tec.openplanner.team/stops/Cfopetr2"], ["https://tec.openplanner.team/stops/Bjod7co1", "https://tec.openplanner.team/stops/Bjod7co2"], ["https://tec.openplanner.team/stops/LrEkirc1", "https://tec.openplanner.team/stops/LrEkirc2"], ["https://tec.openplanner.team/stops/LDOdavi1", "https://tec.openplanner.team/stops/LDOdavi2"], ["https://tec.openplanner.team/stops/H4bw102a", "https://tec.openplanner.team/stops/H4co150a"], ["https://tec.openplanner.team/stops/LTecent1", "https://tec.openplanner.team/stops/LTecent2"], ["https://tec.openplanner.team/stops/LHZ8mai1", "https://tec.openplanner.team/stops/LHZcouv1"], ["https://tec.openplanner.team/stops/Blpgvil1", "https://tec.openplanner.team/stops/Bvxgegl1"], ["https://tec.openplanner.team/stops/H1hr127b", "https://tec.openplanner.team/stops/H1to151a"], ["https://tec.openplanner.team/stops/Broscha2", "https://tec.openplanner.team/stops/Brosegl1"], ["https://tec.openplanner.team/stops/LAx17--2", "https://tec.openplanner.team/stops/LFsbasc2"], ["https://tec.openplanner.team/stops/H4ev118a", "https://tec.openplanner.team/stops/H4ev120b"], ["https://tec.openplanner.team/stops/H2jo162b", "https://tec.openplanner.team/stops/H2jo163c"], ["https://tec.openplanner.team/stops/LAo170-1", "https://tec.openplanner.team/stops/LTPpreh1"], ["https://tec.openplanner.team/stops/LAuvill1", "https://tec.openplanner.team/stops/LWRchem1"], ["https://tec.openplanner.team/stops/H1ms250a", "https://tec.openplanner.team/stops/H1ms942a"], ["https://tec.openplanner.team/stops/LoUwelc1", "https://tec.openplanner.team/stops/LsBzent1"], ["https://tec.openplanner.team/stops/X669aaa", "https://tec.openplanner.team/stops/X669acb"], ["https://tec.openplanner.team/stops/X793afb", "https://tec.openplanner.team/stops/X793agb"], ["https://tec.openplanner.team/stops/Buccvoi1", "https://tec.openplanner.team/stops/Buccvoi3"], ["https://tec.openplanner.team/stops/X721aea", "https://tec.openplanner.team/stops/X721alb"], ["https://tec.openplanner.team/stops/N501jjb", "https://tec.openplanner.team/stops/N501joa"], ["https://tec.openplanner.team/stops/N101ala", "https://tec.openplanner.team/stops/N153aab"], ["https://tec.openplanner.team/stops/X650aaa", "https://tec.openplanner.team/stops/X650aba"], ["https://tec.openplanner.team/stops/X782aoa", "https://tec.openplanner.team/stops/X783aba"], ["https://tec.openplanner.team/stops/LLrchat2", "https://tec.openplanner.team/stops/LLreque1"], ["https://tec.openplanner.team/stops/Bchgegl2", "https://tec.openplanner.team/stops/Bchgrco1"], ["https://tec.openplanner.team/stops/H1ms253a", "https://tec.openplanner.team/stops/H1ms906a"], ["https://tec.openplanner.team/stops/LVnourt1", "https://tec.openplanner.team/stops/LVnourt2"], ["https://tec.openplanner.team/stops/X723aeb", "https://tec.openplanner.team/stops/X765aga"], ["https://tec.openplanner.team/stops/Bquebth1", "https://tec.openplanner.team/stops/Bquecar1"], ["https://tec.openplanner.team/stops/X902ada", "https://tec.openplanner.team/stops/X902ama"], ["https://tec.openplanner.team/stops/H2hg155c", "https://tec.openplanner.team/stops/H2sv215b"], ["https://tec.openplanner.team/stops/Lbbviad1", "https://tec.openplanner.team/stops/Lbbviad4"], ["https://tec.openplanner.team/stops/Bwatavo1", "https://tec.openplanner.team/stops/Bwatbce2"], ["https://tec.openplanner.team/stops/N531aab", "https://tec.openplanner.team/stops/N531abb"], ["https://tec.openplanner.team/stops/N101aic", "https://tec.openplanner.team/stops/N101aob"], ["https://tec.openplanner.team/stops/LVPbleh2", "https://tec.openplanner.team/stops/LVPcrok2"], ["https://tec.openplanner.team/stops/H4ty333a", "https://tec.openplanner.team/stops/H4ty397a"], ["https://tec.openplanner.team/stops/Lagviad2", "https://tec.openplanner.team/stops/Lempass2"], ["https://tec.openplanner.team/stops/LHupont1", "https://tec.openplanner.team/stops/LHupont2"], ["https://tec.openplanner.team/stops/LESgran1", "https://tec.openplanner.team/stops/LESpaix1"], ["https://tec.openplanner.team/stops/LCRvert2", "https://tec.openplanner.team/stops/LKmcite1"], ["https://tec.openplanner.team/stops/X659aea", "https://tec.openplanner.team/stops/X659aqb"], ["https://tec.openplanner.team/stops/X818asc", "https://tec.openplanner.team/stops/X818aua"], ["https://tec.openplanner.team/stops/Bsmgmou1", "https://tec.openplanner.team/stops/Bsmgsuz2"], ["https://tec.openplanner.team/stops/X615aub", "https://tec.openplanner.team/stops/X615bca"], ["https://tec.openplanner.team/stops/X623agb", "https://tec.openplanner.team/stops/X623aha"], ["https://tec.openplanner.team/stops/N219aca", "https://tec.openplanner.team/stops/N219ada"], ["https://tec.openplanner.team/stops/X757afa", "https://tec.openplanner.team/stops/X757agb"], ["https://tec.openplanner.team/stops/Ccunvus1", "https://tec.openplanner.team/stops/Ccurtra1"], ["https://tec.openplanner.team/stops/LLM4rou1", "https://tec.openplanner.team/stops/LLMfond1"], ["https://tec.openplanner.team/stops/X780aga", "https://tec.openplanner.team/stops/X780agb"], ["https://tec.openplanner.team/stops/Lfhbott2", "https://tec.openplanner.team/stops/Lfhvoye2"], ["https://tec.openplanner.team/stops/LHUdelc2", "https://tec.openplanner.team/stops/LHUlebe0"], ["https://tec.openplanner.team/stops/LBIaepo2", "https://tec.openplanner.team/stops/Lmlpech2"], ["https://tec.openplanner.team/stops/Lan14ve2", "https://tec.openplanner.team/stops/Lanetie2"], ["https://tec.openplanner.team/stops/N525aeb", "https://tec.openplanner.team/stops/N525alb"], ["https://tec.openplanner.team/stops/Bezebru2", "https://tec.openplanner.team/stops/Bneelaa1"], ["https://tec.openplanner.team/stops/X681aca", "https://tec.openplanner.team/stops/X696aha"], ["https://tec.openplanner.team/stops/H1hg179b", "https://tec.openplanner.team/stops/H1hy128a"], ["https://tec.openplanner.team/stops/Bnetrbr1", "https://tec.openplanner.team/stops/Bnettir1"], ["https://tec.openplanner.team/stops/LHEecmo2", "https://tec.openplanner.team/stops/LHEepur2"], ["https://tec.openplanner.team/stops/LMApl--1", "https://tec.openplanner.team/stops/LMAptne2"], ["https://tec.openplanner.team/stops/N535aca", "https://tec.openplanner.team/stops/N535atb"], ["https://tec.openplanner.team/stops/X953acb", "https://tec.openplanner.team/stops/X953adb"], ["https://tec.openplanner.team/stops/LLvferm2", "https://tec.openplanner.team/stops/LLvgare2"], ["https://tec.openplanner.team/stops/X609aha", "https://tec.openplanner.team/stops/X610aba"], ["https://tec.openplanner.team/stops/LHHlomb2", "https://tec.openplanner.team/stops/LHHpt--2"], ["https://tec.openplanner.team/stops/LLRptma2", "https://tec.openplanner.team/stops/LLRvill1"], ["https://tec.openplanner.team/stops/Bwatmbv2", "https://tec.openplanner.team/stops/Bwatmch3"], ["https://tec.openplanner.team/stops/N357afa", "https://tec.openplanner.team/stops/N357afb"], ["https://tec.openplanner.team/stops/X818asa", "https://tec.openplanner.team/stops/X818asb"], ["https://tec.openplanner.team/stops/N232afb", "https://tec.openplanner.team/stops/N286aab"], ["https://tec.openplanner.team/stops/X738aca", "https://tec.openplanner.team/stops/X771afb"], ["https://tec.openplanner.team/stops/N539aza", "https://tec.openplanner.team/stops/N539bab"], ["https://tec.openplanner.team/stops/Lghcham1", "https://tec.openplanner.team/stops/Lghecol*"], ["https://tec.openplanner.team/stops/Bptrlux2", "https://tec.openplanner.team/stops/Bptrmar1"], ["https://tec.openplanner.team/stops/N501hma", "https://tec.openplanner.team/stops/N501htb"], ["https://tec.openplanner.team/stops/N544aba", "https://tec.openplanner.team/stops/N550afa"], ["https://tec.openplanner.team/stops/LOTcloe2", "https://tec.openplanner.team/stops/LOTdelv2"], ["https://tec.openplanner.team/stops/H1hr118a", "https://tec.openplanner.team/stops/H1ne137a"], ["https://tec.openplanner.team/stops/LVBsevr2", "https://tec.openplanner.team/stops/LWDchpl1"], ["https://tec.openplanner.team/stops/N506bfb", "https://tec.openplanner.team/stops/N512aga"], ["https://tec.openplanner.team/stops/LAWmc--2", "https://tec.openplanner.team/stops/LAWvill1"], ["https://tec.openplanner.team/stops/N510afb", "https://tec.openplanner.team/stops/N513agc"], ["https://tec.openplanner.team/stops/X608aib", "https://tec.openplanner.team/stops/X609aeb"], ["https://tec.openplanner.team/stops/N116abb", "https://tec.openplanner.team/stops/N151ajf"], ["https://tec.openplanner.team/stops/Bbgeegl1", "https://tec.openplanner.team/stops/Bbgevil1"], ["https://tec.openplanner.team/stops/LBAcarr1", "https://tec.openplanner.team/stops/LBAcent2"], ["https://tec.openplanner.team/stops/H1bs111a", "https://tec.openplanner.team/stops/H1sb146a"], ["https://tec.openplanner.team/stops/X820agb", "https://tec.openplanner.team/stops/X820agc"], ["https://tec.openplanner.team/stops/Btstcar1", "https://tec.openplanner.team/stops/Btstcar2"], ["https://tec.openplanner.team/stops/Bsrgcur1", "https://tec.openplanner.team/stops/Bsrgegl2"], ["https://tec.openplanner.team/stops/X631aab", "https://tec.openplanner.team/stops/X631acb"], ["https://tec.openplanner.team/stops/LwSbrei1", "https://tec.openplanner.team/stops/LwSgeme1"], ["https://tec.openplanner.team/stops/Cbwmato1", "https://tec.openplanner.team/stops/Cmqchap1"], ["https://tec.openplanner.team/stops/N557ahb", "https://tec.openplanner.team/stops/N557aja"], ["https://tec.openplanner.team/stops/Bsgimca1", "https://tec.openplanner.team/stops/Bsgimor1"], ["https://tec.openplanner.team/stops/LScdina1", "https://tec.openplanner.team/stops/LScdina2"], ["https://tec.openplanner.team/stops/Cchblne1", "https://tec.openplanner.team/stops/Cchblne2"], ["https://tec.openplanner.team/stops/N501eia", "https://tec.openplanner.team/stops/N501jrb"], ["https://tec.openplanner.team/stops/Bbiepon2", "https://tec.openplanner.team/stops/Bboneta2"], ["https://tec.openplanner.team/stops/LkEhatt1", "https://tec.openplanner.team/stops/LkEhatt2"], ["https://tec.openplanner.team/stops/X877aab", "https://tec.openplanner.team/stops/X877aea"], ["https://tec.openplanner.team/stops/LWecorn2", "https://tec.openplanner.team/stops/LWerola2"], ["https://tec.openplanner.team/stops/N203aab", "https://tec.openplanner.team/stops/N204afb"], ["https://tec.openplanner.team/stops/LLemonu2", "https://tec.openplanner.team/stops/X547ata"], ["https://tec.openplanner.team/stops/Cfaterg3", "https://tec.openplanner.team/stops/Cfaysle1"], ["https://tec.openplanner.team/stops/Causart2", "https://tec.openplanner.team/stops/N543avg"], ["https://tec.openplanner.team/stops/Llgsnap2", "https://tec.openplanner.team/stops/Llgwiar4"], ["https://tec.openplanner.team/stops/X651ada", "https://tec.openplanner.team/stops/X651agb"], ["https://tec.openplanner.team/stops/X786aib", "https://tec.openplanner.team/stops/X789afa"], ["https://tec.openplanner.team/stops/Ccugrtr2", "https://tec.openplanner.team/stops/Ccupdes1"], ["https://tec.openplanner.team/stops/LSCchap1", "https://tec.openplanner.team/stops/LSCchap2"], ["https://tec.openplanner.team/stops/LWEcarr1", "https://tec.openplanner.team/stops/LWEwall1"], ["https://tec.openplanner.team/stops/X948ada", "https://tec.openplanner.team/stops/X948agb"], ["https://tec.openplanner.team/stops/X644aeb", "https://tec.openplanner.team/stops/X645abb"], ["https://tec.openplanner.team/stops/LCOeg--2", "https://tec.openplanner.team/stops/Lpelouh1"], ["https://tec.openplanner.team/stops/H5rx125b", "https://tec.openplanner.team/stops/H5rx146b"], ["https://tec.openplanner.team/stops/LTIcime1", "https://tec.openplanner.team/stops/LTIdumo2"], ["https://tec.openplanner.team/stops/Lmoboeu4", "https://tec.openplanner.team/stops/Lmomarr1"], ["https://tec.openplanner.team/stops/X837acb", "https://tec.openplanner.team/stops/X837adb"], ["https://tec.openplanner.team/stops/Llxcite2", "https://tec.openplanner.team/stops/LLxcrem1"], ["https://tec.openplanner.team/stops/Bauddel2", "https://tec.openplanner.team/stops/Baudsju2"], ["https://tec.openplanner.team/stops/N301aob", "https://tec.openplanner.team/stops/N301apa"], ["https://tec.openplanner.team/stops/LiVkreu1", "https://tec.openplanner.team/stops/LONcroi2"], ["https://tec.openplanner.team/stops/H3so154b", "https://tec.openplanner.team/stops/H3so167a"], ["https://tec.openplanner.team/stops/H1hh109a", "https://tec.openplanner.team/stops/H1hh115a"], ["https://tec.openplanner.team/stops/H1gi154a", "https://tec.openplanner.team/stops/H1gi154b"], ["https://tec.openplanner.team/stops/N353aba", "https://tec.openplanner.team/stops/N353abb"], ["https://tec.openplanner.team/stops/H4hu114b", "https://tec.openplanner.team/stops/H4hu118b"], ["https://tec.openplanner.team/stops/H4do100a", "https://tec.openplanner.team/stops/H4do100b"], ["https://tec.openplanner.team/stops/N543aea", "https://tec.openplanner.team/stops/N543aga"], ["https://tec.openplanner.team/stops/N234ada", "https://tec.openplanner.team/stops/N234adb"], ["https://tec.openplanner.team/stops/X666aib", "https://tec.openplanner.team/stops/X745aeb"], ["https://tec.openplanner.team/stops/H1sy144c", "https://tec.openplanner.team/stops/H1sy144d"], ["https://tec.openplanner.team/stops/X657ala", "https://tec.openplanner.team/stops/X657alb"], ["https://tec.openplanner.team/stops/N580adb", "https://tec.openplanner.team/stops/N580aeb"], ["https://tec.openplanner.team/stops/LSInd--1", "https://tec.openplanner.team/stops/LSIvieu2"], ["https://tec.openplanner.team/stops/Craferr1", "https://tec.openplanner.team/stops/Craferr2"], ["https://tec.openplanner.team/stops/H1tl119a", "https://tec.openplanner.team/stops/H1tl122b"], ["https://tec.openplanner.team/stops/N509ada", "https://tec.openplanner.team/stops/N509agb"], ["https://tec.openplanner.team/stops/LHUbail2", "https://tec.openplanner.team/stops/LHUhsar2"], ["https://tec.openplanner.team/stops/X824aja", "https://tec.openplanner.team/stops/X829aeb"], ["https://tec.openplanner.team/stops/LMgberw2", "https://tec.openplanner.team/stops/LVIacac1"], ["https://tec.openplanner.team/stops/X904aaa", "https://tec.openplanner.team/stops/X943agb"], ["https://tec.openplanner.team/stops/H2sb226a", "https://tec.openplanner.team/stops/H2sb231d"], ["https://tec.openplanner.team/stops/H4bc101b", "https://tec.openplanner.team/stops/H4bc102a"], ["https://tec.openplanner.team/stops/Bwatavo1", "https://tec.openplanner.team/stops/Bwatclo1"], ["https://tec.openplanner.team/stops/H4ff115b", "https://tec.openplanner.team/stops/H4ff121b"], ["https://tec.openplanner.team/stops/N215abb", "https://tec.openplanner.team/stops/N261aha"], ["https://tec.openplanner.team/stops/H2an100b", "https://tec.openplanner.team/stops/H2an106d"], ["https://tec.openplanner.team/stops/Blmlcar1", "https://tec.openplanner.team/stops/Blmlcar2"], ["https://tec.openplanner.team/stops/LMOelva2", "https://tec.openplanner.team/stops/LMOelva4"], ["https://tec.openplanner.team/stops/H4fa124b", "https://tec.openplanner.team/stops/H4fa126c"], ["https://tec.openplanner.team/stops/H4hx121a", "https://tec.openplanner.team/stops/H4hx124b"], ["https://tec.openplanner.team/stops/Lenptsa2", "https://tec.openplanner.team/stops/Lenvale2"], ["https://tec.openplanner.team/stops/Lancolr1", "https://tec.openplanner.team/stops/Lanothe2"], ["https://tec.openplanner.team/stops/H4ry131a", "https://tec.openplanner.team/stops/H4ry140a"], ["https://tec.openplanner.team/stops/X602amb", "https://tec.openplanner.team/stops/X602apb"], ["https://tec.openplanner.team/stops/H1pa116a", "https://tec.openplanner.team/stops/H1wa155d"], ["https://tec.openplanner.team/stops/X624aab", "https://tec.openplanner.team/stops/X624aba"], ["https://tec.openplanner.team/stops/H1bo145b", "https://tec.openplanner.team/stops/H1bo150a"], ["https://tec.openplanner.team/stops/H4ro156a", "https://tec.openplanner.team/stops/H4ro157b"], ["https://tec.openplanner.team/stops/X764ada", "https://tec.openplanner.team/stops/X764aeb"], ["https://tec.openplanner.team/stops/LBkwind2", "https://tec.openplanner.team/stops/LHCmais2"], ["https://tec.openplanner.team/stops/X640aha", "https://tec.openplanner.team/stops/X640aia"], ["https://tec.openplanner.team/stops/Llgfail1", "https://tec.openplanner.team/stops/Llgrain1"], ["https://tec.openplanner.team/stops/H4mo133a", "https://tec.openplanner.team/stops/H4mo175b"], ["https://tec.openplanner.team/stops/X671ada", "https://tec.openplanner.team/stops/X671adb"], ["https://tec.openplanner.team/stops/Becegar1", "https://tec.openplanner.team/stops/H2ec112a"], ["https://tec.openplanner.team/stops/LSPbass2", "https://tec.openplanner.team/stops/LSPcomm2"], ["https://tec.openplanner.team/stops/LAUnico2", "https://tec.openplanner.team/stops/LAUvict4"], ["https://tec.openplanner.team/stops/LCxwarr1", "https://tec.openplanner.team/stops/LCxwarr2"], ["https://tec.openplanner.team/stops/X674aaa", "https://tec.openplanner.team/stops/X820aha"], ["https://tec.openplanner.team/stops/H4oq409a", "https://tec.openplanner.team/stops/H4oq409b"], ["https://tec.openplanner.team/stops/H4mo158b", "https://tec.openplanner.team/stops/H4mo159a"], ["https://tec.openplanner.team/stops/Brsggde1", "https://tec.openplanner.team/stops/Brsggde2"], ["https://tec.openplanner.team/stops/X850aeb", "https://tec.openplanner.team/stops/X850afa"], ["https://tec.openplanner.team/stops/N509arb", "https://tec.openplanner.team/stops/N509aub"], ["https://tec.openplanner.team/stops/LrD28--1", "https://tec.openplanner.team/stops/LrDhund2"], ["https://tec.openplanner.team/stops/X771adb", "https://tec.openplanner.team/stops/X771ahb"], ["https://tec.openplanner.team/stops/H1do115a", "https://tec.openplanner.team/stops/H1do122a"], ["https://tec.openplanner.team/stops/X398aea", "https://tec.openplanner.team/stops/X398aha"], ["https://tec.openplanner.team/stops/LCOcarr2", "https://tec.openplanner.team/stops/Lpelouh1"], ["https://tec.openplanner.team/stops/X912aab", "https://tec.openplanner.team/stops/X912alb"], ["https://tec.openplanner.team/stops/N343ajb", "https://tec.openplanner.team/stops/X345aca"], ["https://tec.openplanner.team/stops/H2mo124b", "https://tec.openplanner.team/stops/H2mo130c"], ["https://tec.openplanner.team/stops/H1he102a", "https://tec.openplanner.team/stops/H1he104a"], ["https://tec.openplanner.team/stops/Cmyquen2", "https://tec.openplanner.team/stops/Cmysncb1"], ["https://tec.openplanner.team/stops/LRRbuta1", "https://tec.openplanner.team/stops/LRRrimi2"], ["https://tec.openplanner.team/stops/LWAcham1", "https://tec.openplanner.team/stops/LWAmois2"], ["https://tec.openplanner.team/stops/Bbghgli1", "https://tec.openplanner.team/stops/Bbghsta2"], ["https://tec.openplanner.team/stops/X917afb", "https://tec.openplanner.team/stops/X917aia"], ["https://tec.openplanner.team/stops/H2hg154c", "https://tec.openplanner.team/stops/H3lr108a"], ["https://tec.openplanner.team/stops/N166aca", "https://tec.openplanner.team/stops/N166acb"], ["https://tec.openplanner.team/stops/LBAbooz2", "https://tec.openplanner.team/stops/LTrgibe2"], ["https://tec.openplanner.team/stops/LLSba9-2", "https://tec.openplanner.team/stops/LLYcham2"], ["https://tec.openplanner.team/stops/N562bnb", "https://tec.openplanner.team/stops/N562boa"], ["https://tec.openplanner.team/stops/Cmomalg2", "https://tec.openplanner.team/stops/Cmoprov1"], ["https://tec.openplanner.team/stops/H1at110a", "https://tec.openplanner.team/stops/H1fy143a"], ["https://tec.openplanner.team/stops/Llgbago1", "https://tec.openplanner.team/stops/Llgbago2"], ["https://tec.openplanner.team/stops/H4ar101a", "https://tec.openplanner.team/stops/H4lg103b"], ["https://tec.openplanner.team/stops/H4ka187a", "https://tec.openplanner.team/stops/H4ka400a"], ["https://tec.openplanner.team/stops/N309aba", "https://tec.openplanner.team/stops/N309abb"], ["https://tec.openplanner.team/stops/H4ty264a", "https://tec.openplanner.team/stops/H4ty302a"], ["https://tec.openplanner.team/stops/Lfllapi3", "https://tec.openplanner.team/stops/Lfllapi5"], ["https://tec.openplanner.team/stops/Bitrh%C3%BBl1", "https://tec.openplanner.team/stops/Bitrpar2"], ["https://tec.openplanner.team/stops/X801bfa", "https://tec.openplanner.team/stops/X801cfa"], ["https://tec.openplanner.team/stops/N550ajb", "https://tec.openplanner.team/stops/N565aaa"], ["https://tec.openplanner.team/stops/Cgomerm1", "https://tec.openplanner.team/stops/Craplac3"], ["https://tec.openplanner.team/stops/N501hpa", "https://tec.openplanner.team/stops/N501hpb"], ["https://tec.openplanner.team/stops/LeYauss1", "https://tec.openplanner.team/stops/LeYteeh1"], ["https://tec.openplanner.team/stops/Ccycont2", "https://tec.openplanner.team/stops/Crbegli2"], ["https://tec.openplanner.team/stops/N226aba", "https://tec.openplanner.team/stops/N226abb"], ["https://tec.openplanner.team/stops/X660adb", "https://tec.openplanner.team/stops/X660aga"], ["https://tec.openplanner.team/stops/X912aeb", "https://tec.openplanner.team/stops/X912afa"], ["https://tec.openplanner.team/stops/N512aca", "https://tec.openplanner.team/stops/N512axb"], ["https://tec.openplanner.team/stops/LcRkirc1", "https://tec.openplanner.team/stops/LcRmuhl1"], ["https://tec.openplanner.team/stops/LeLgrie1", "https://tec.openplanner.team/stops/LeLgrie2"], ["https://tec.openplanner.team/stops/Bptrgri2", "https://tec.openplanner.team/stops/Bptrpla2"], ["https://tec.openplanner.team/stops/H1em106a", "https://tec.openplanner.team/stops/H1fa117a"], ["https://tec.openplanner.team/stops/N155adb", "https://tec.openplanner.team/stops/N155akb"], ["https://tec.openplanner.team/stops/N543bnb", "https://tec.openplanner.team/stops/N543cna"], ["https://tec.openplanner.team/stops/LHFappe2", "https://tec.openplanner.team/stops/LHFwaut2"], ["https://tec.openplanner.team/stops/LAIrout1", "https://tec.openplanner.team/stops/LSCchap1"], ["https://tec.openplanner.team/stops/LDAbois1", "https://tec.openplanner.team/stops/LVIlore2"], ["https://tec.openplanner.team/stops/Lemarde1", "https://tec.openplanner.team/stops/Lemmusc2"], ["https://tec.openplanner.team/stops/Bbcoeca1", "https://tec.openplanner.team/stops/Bbcoser2"], ["https://tec.openplanner.team/stops/H4pl115a", "https://tec.openplanner.team/stops/H4pl136a"], ["https://tec.openplanner.team/stops/X802ara", "https://tec.openplanner.team/stops/X802aua"], ["https://tec.openplanner.team/stops/Bspkbeu2", "https://tec.openplanner.team/stops/Bstecal2"], ["https://tec.openplanner.team/stops/Btubga02", "https://tec.openplanner.team/stops/Btubnav2"], ["https://tec.openplanner.team/stops/H4ru243a", "https://tec.openplanner.team/stops/H4ru244a"], ["https://tec.openplanner.team/stops/LnEkirc1", "https://tec.openplanner.team/stops/LnEkirc3"], ["https://tec.openplanner.team/stops/Cfrfede2", "https://tec.openplanner.team/stops/Cvp3til4"], ["https://tec.openplanner.team/stops/N212adb", "https://tec.openplanner.team/stops/N348abb"], ["https://tec.openplanner.team/stops/Lcavign2", "https://tec.openplanner.team/stops/LNipla3"], ["https://tec.openplanner.team/stops/X806aea", "https://tec.openplanner.team/stops/X806aeb"], ["https://tec.openplanner.team/stops/N308adb", "https://tec.openplanner.team/stops/N308aya"], ["https://tec.openplanner.team/stops/LLxcbr-1", "https://tec.openplanner.team/stops/LLxcbr-2"], ["https://tec.openplanner.team/stops/H4mo138a", "https://tec.openplanner.team/stops/H4mo198a"], ["https://tec.openplanner.team/stops/Lccaigr2", "https://tec.openplanner.team/stops/LRAgrot1"], ["https://tec.openplanner.team/stops/X658acb", "https://tec.openplanner.team/stops/X658ahb"], ["https://tec.openplanner.team/stops/LMgbatt1", "https://tec.openplanner.team/stops/LMgwith1"], ["https://tec.openplanner.team/stops/Cbbcrbo1", "https://tec.openplanner.team/stops/Cbmvalt2"], ["https://tec.openplanner.team/stops/N309aca", "https://tec.openplanner.team/stops/N365aca"], ["https://tec.openplanner.team/stops/H4ht172a", "https://tec.openplanner.team/stops/H4ht172b"], ["https://tec.openplanner.team/stops/Bleugar1", "https://tec.openplanner.team/stops/H4mn100a"], ["https://tec.openplanner.team/stops/H4eg101a", "https://tec.openplanner.team/stops/H4eg102a"], ["https://tec.openplanner.team/stops/Livfays2", "https://tec.openplanner.team/stops/Livrame2"], ["https://tec.openplanner.team/stops/LFCkett1", "https://tec.openplanner.team/stops/LFCvoer2"], ["https://tec.openplanner.team/stops/LdUkreu1", "https://tec.openplanner.team/stops/LmLbeil2"], ["https://tec.openplanner.team/stops/Cfrbrin2", "https://tec.openplanner.team/stops/Cfrtry1"], ["https://tec.openplanner.team/stops/X663aua", "https://tec.openplanner.team/stops/X664ana"], ["https://tec.openplanner.team/stops/LkEherg2", "https://tec.openplanner.team/stops/LkEschi2"], ["https://tec.openplanner.team/stops/LAicarr1", "https://tec.openplanner.team/stops/LENalun1"], ["https://tec.openplanner.team/stops/N204agb", "https://tec.openplanner.team/stops/N204alb"], ["https://tec.openplanner.team/stops/X763aea", "https://tec.openplanner.team/stops/X763afa"], ["https://tec.openplanner.team/stops/H1ha194a", "https://tec.openplanner.team/stops/H1ha200a"], ["https://tec.openplanner.team/stops/H5fl102b", "https://tec.openplanner.team/stops/H5fl102d"], ["https://tec.openplanner.team/stops/X808aba", "https://tec.openplanner.team/stops/X808aea"], ["https://tec.openplanner.team/stops/Btubga01", "https://tec.openplanner.team/stops/Btubnav2"], ["https://tec.openplanner.team/stops/LlSbuch2", "https://tec.openplanner.team/stops/LlZkirc2"], ["https://tec.openplanner.team/stops/H1fr151b", "https://tec.openplanner.team/stops/H1no140a"], ["https://tec.openplanner.team/stops/Btlbcha2", "https://tec.openplanner.team/stops/Btlbmel2"], ["https://tec.openplanner.team/stops/Cjudewe1", "https://tec.openplanner.team/stops/Cjuplho2"], ["https://tec.openplanner.team/stops/N206ada", "https://tec.openplanner.team/stops/N220acb"], ["https://tec.openplanner.team/stops/H1vb148a", "https://tec.openplanner.team/stops/H1vb148b"], ["https://tec.openplanner.team/stops/LCPbatt1", "https://tec.openplanner.team/stops/LCPbatt2"], ["https://tec.openplanner.team/stops/Bhalomo1", "https://tec.openplanner.team/stops/Bhalomo2"], ["https://tec.openplanner.team/stops/X923aaa", "https://tec.openplanner.team/stops/X923ahb"], ["https://tec.openplanner.team/stops/Bbxlmid1", "https://tec.openplanner.team/stops/Bsgicfo1"], ["https://tec.openplanner.team/stops/LArmaro1", "https://tec.openplanner.team/stops/X548aab"], ["https://tec.openplanner.team/stops/Bjodfco1", "https://tec.openplanner.team/stops/Bpielon2"], ["https://tec.openplanner.team/stops/X717agf", "https://tec.openplanner.team/stops/X718aia"], ["https://tec.openplanner.team/stops/X773aia", "https://tec.openplanner.team/stops/X773ajb"], ["https://tec.openplanner.team/stops/N343ajb", "https://tec.openplanner.team/stops/N350aeb"], ["https://tec.openplanner.team/stops/Bhmmcam1", "https://tec.openplanner.team/stops/Btlgmou1"], ["https://tec.openplanner.team/stops/Cgzblob1", "https://tec.openplanner.team/stops/Cgzha622"], ["https://tec.openplanner.team/stops/LSPwarf1", "https://tec.openplanner.team/stops/LSZjona1"], ["https://tec.openplanner.team/stops/LCUmars1", "https://tec.openplanner.team/stops/LSzsurl1"], ["https://tec.openplanner.team/stops/X993aeb", "https://tec.openplanner.team/stops/X993agb"], ["https://tec.openplanner.team/stops/N166ada", "https://tec.openplanner.team/stops/N166aea"], ["https://tec.openplanner.team/stops/Llgseel1", "https://tec.openplanner.team/stops/Llgwesp2"], ["https://tec.openplanner.team/stops/Bwatcrf1", "https://tec.openplanner.team/stops/Bwattri1"], ["https://tec.openplanner.team/stops/X837aia", "https://tec.openplanner.team/stops/X837aka"], ["https://tec.openplanner.team/stops/Cfmnoci2", "https://tec.openplanner.team/stops/Cfojoli1"], ["https://tec.openplanner.team/stops/H1bl100a", "https://tec.openplanner.team/stops/H1sb146a"], ["https://tec.openplanner.team/stops/Btanbth2", "https://tec.openplanner.team/stops/Btanvil2"], ["https://tec.openplanner.team/stops/N551aib", "https://tec.openplanner.team/stops/N551aiy"], ["https://tec.openplanner.team/stops/N519agb", "https://tec.openplanner.team/stops/N519aha"], ["https://tec.openplanner.team/stops/X741aka", "https://tec.openplanner.team/stops/X741akb"], ["https://tec.openplanner.team/stops/N113adb", "https://tec.openplanner.team/stops/N113afa"], ["https://tec.openplanner.team/stops/H2mo127d", "https://tec.openplanner.team/stops/H2mo129a"], ["https://tec.openplanner.team/stops/Lbhgare1", "https://tec.openplanner.team/stops/LMFmerl1"], ["https://tec.openplanner.team/stops/Landeja1", "https://tec.openplanner.team/stops/Lanmouf2"], ["https://tec.openplanner.team/stops/Bspkbeu2", "https://tec.openplanner.team/stops/H1gy115b"], ["https://tec.openplanner.team/stops/Cbfdufa2", "https://tec.openplanner.team/stops/Cbfstry1"], ["https://tec.openplanner.team/stops/N501aqa", "https://tec.openplanner.team/stops/N501arb"], ["https://tec.openplanner.team/stops/Bbeardu2", "https://tec.openplanner.team/stops/Bmlnbpr2"], ["https://tec.openplanner.team/stops/N501aua", "https://tec.openplanner.team/stops/N501gqa"], ["https://tec.openplanner.team/stops/N501ixc", "https://tec.openplanner.team/stops/N501jia"], ["https://tec.openplanner.team/stops/LTNcarr2", "https://tec.openplanner.team/stops/LTNcarr6"], ["https://tec.openplanner.team/stops/LwYkirc1", "https://tec.openplanner.team/stops/LwYneue2"], ["https://tec.openplanner.team/stops/Cmtmoul2", "https://tec.openplanner.team/stops/Cmtproc2"], ["https://tec.openplanner.team/stops/X817aaa", "https://tec.openplanner.team/stops/X822acb"], ["https://tec.openplanner.team/stops/X901awb", "https://tec.openplanner.team/stops/X902bfb"], ["https://tec.openplanner.team/stops/Crcrlf1", "https://tec.openplanner.team/stops/Csubosa1"], ["https://tec.openplanner.team/stops/N512adb", "https://tec.openplanner.team/stops/N512aeb"], ["https://tec.openplanner.team/stops/H2fa106a", "https://tec.openplanner.team/stops/H2me114b"], ["https://tec.openplanner.team/stops/LeYwald1", "https://tec.openplanner.team/stops/LkOgren2"], ["https://tec.openplanner.team/stops/Bmrsefr1", "https://tec.openplanner.team/stops/Bwaygrg2"], ["https://tec.openplanner.team/stops/X774afa", "https://tec.openplanner.team/stops/X774afb"], ["https://tec.openplanner.team/stops/LMAcite1", "https://tec.openplanner.team/stops/LMAcite2"], ["https://tec.openplanner.team/stops/Cchdagn1", "https://tec.openplanner.team/stops/Cchdagn2"], ["https://tec.openplanner.team/stops/LkEmax-1", "https://tec.openplanner.team/stops/LkEmax-2"], ["https://tec.openplanner.team/stops/H4bx167b", "https://tec.openplanner.team/stops/H4ep129a"], ["https://tec.openplanner.team/stops/LVHcent1", "https://tec.openplanner.team/stops/LVHweri1"], ["https://tec.openplanner.team/stops/H1cv104a", "https://tec.openplanner.team/stops/H1cv104b"], ["https://tec.openplanner.team/stops/H1cu126a", "https://tec.openplanner.team/stops/H1ms247a"], ["https://tec.openplanner.team/stops/H1fr113a", "https://tec.openplanner.team/stops/H1fr113b"], ["https://tec.openplanner.team/stops/Cbwdoua1", "https://tec.openplanner.team/stops/Cbweco2"], ["https://tec.openplanner.team/stops/X696aia", "https://tec.openplanner.team/stops/X696ala"], ["https://tec.openplanner.team/stops/Btiegma1", "https://tec.openplanner.team/stops/LTobilz2"], ["https://tec.openplanner.team/stops/H1eu104b", "https://tec.openplanner.team/stops/H1pa112b"], ["https://tec.openplanner.team/stops/X734acb", "https://tec.openplanner.team/stops/X953aaa"], ["https://tec.openplanner.team/stops/LJOchar1", "https://tec.openplanner.team/stops/LMEgare1"], ["https://tec.openplanner.team/stops/LSHhade1", "https://tec.openplanner.team/stops/LSOgott2"], ["https://tec.openplanner.team/stops/Bettgar1", "https://tec.openplanner.team/stops/Bixleix1"], ["https://tec.openplanner.team/stops/LLtwanz2", "https://tec.openplanner.team/stops/LVHcent2"], ["https://tec.openplanner.team/stops/Bwavgar2", "https://tec.openplanner.team/stops/Bwavgar6"], ["https://tec.openplanner.team/stops/H4le127a", "https://tec.openplanner.team/stops/H4le127b"], ["https://tec.openplanner.team/stops/N155aka", "https://tec.openplanner.team/stops/N155akb"], ["https://tec.openplanner.team/stops/N562alb", "https://tec.openplanner.team/stops/N562aoa"], ["https://tec.openplanner.team/stops/N104aea", "https://tec.openplanner.team/stops/N104aeb"], ["https://tec.openplanner.team/stops/LBUmara2", "https://tec.openplanner.team/stops/LBUmara3"], ["https://tec.openplanner.team/stops/LTIchev1", "https://tec.openplanner.team/stops/LTIchev2"], ["https://tec.openplanner.team/stops/Bbch4br6", "https://tec.openplanner.team/stops/Bbchpil1"], ["https://tec.openplanner.team/stops/Cvsduve2", "https://tec.openplanner.team/stops/N530aja"], ["https://tec.openplanner.team/stops/H1ms252d", "https://tec.openplanner.team/stops/H1ms278b"], ["https://tec.openplanner.team/stops/LSMcles1", "https://tec.openplanner.team/stops/LSMeg--1"], ["https://tec.openplanner.team/stops/H1bo145a", "https://tec.openplanner.team/stops/H1bo150a"], ["https://tec.openplanner.team/stops/H1al146a", "https://tec.openplanner.team/stops/H1sb146a"], ["https://tec.openplanner.team/stops/LHHroua1", "https://tec.openplanner.team/stops/LSG172-2"], ["https://tec.openplanner.team/stops/LLmcheg4", "https://tec.openplanner.team/stops/LLmetat1"], ["https://tec.openplanner.team/stops/Cgpchgo1", "https://tec.openplanner.team/stops/Cgplhoi1"], ["https://tec.openplanner.team/stops/LGLecol2", "https://tec.openplanner.team/stops/LGLgare*"], ["https://tec.openplanner.team/stops/N524aab", "https://tec.openplanner.team/stops/N524afa"], ["https://tec.openplanner.team/stops/H4qu408a", "https://tec.openplanner.team/stops/H4tg262a"], ["https://tec.openplanner.team/stops/H2ch110a", "https://tec.openplanner.team/stops/H2ch110b"], ["https://tec.openplanner.team/stops/X601aua", "https://tec.openplanner.team/stops/X601aud"], ["https://tec.openplanner.team/stops/LgRha211", "https://tec.openplanner.team/stops/LgRhouf2"], ["https://tec.openplanner.team/stops/LMechpl2", "https://tec.openplanner.team/stops/LMemora2"], ["https://tec.openplanner.team/stops/Beceres1", "https://tec.openplanner.team/stops/Beceres2"], ["https://tec.openplanner.team/stops/Lbrchur1", "https://tec.openplanner.team/stops/Lbrmc--2"], ["https://tec.openplanner.team/stops/H4hs136a", "https://tec.openplanner.team/stops/H4mb139a"], ["https://tec.openplanner.team/stops/N508apb", "https://tec.openplanner.team/stops/N516aab"], ["https://tec.openplanner.team/stops/Llgcita1", "https://tec.openplanner.team/stops/Llgcrev2"], ["https://tec.openplanner.team/stops/Bblafrn2", "https://tec.openplanner.team/stops/Bblasse2"], ["https://tec.openplanner.team/stops/Ccycont1", "https://tec.openplanner.team/stops/Cvllerm2"], ["https://tec.openplanner.team/stops/X210azb", "https://tec.openplanner.team/stops/X222afb"], ["https://tec.openplanner.team/stops/Bgerprg1", "https://tec.openplanner.team/stops/Bgerprg2"], ["https://tec.openplanner.team/stops/Cmosaba1", "https://tec.openplanner.team/stops/Cmosaba3"], ["https://tec.openplanner.team/stops/H1by107b", "https://tec.openplanner.team/stops/H1by109b"], ["https://tec.openplanner.team/stops/X908aba", "https://tec.openplanner.team/stops/X955aeb"], ["https://tec.openplanner.team/stops/X317aaa", "https://tec.openplanner.team/stops/X317aba"], ["https://tec.openplanner.team/stops/LFlabba3", "https://tec.openplanner.team/stops/LFlabba4"], ["https://tec.openplanner.team/stops/H1gr111b", "https://tec.openplanner.team/stops/H1hv136a"], ["https://tec.openplanner.team/stops/N534bpb", "https://tec.openplanner.team/stops/N534bvb"], ["https://tec.openplanner.team/stops/Cfobriq1", "https://tec.openplanner.team/stops/Cfogaul1"], ["https://tec.openplanner.team/stops/X636bba", "https://tec.openplanner.team/stops/X636bdb"], ["https://tec.openplanner.team/stops/LWNcime1", "https://tec.openplanner.team/stops/LWzfuma1"], ["https://tec.openplanner.team/stops/Chpceri2", "https://tec.openplanner.team/stops/Chprobi2"], ["https://tec.openplanner.team/stops/LHDchar3", "https://tec.openplanner.team/stops/LHDchar4"], ["https://tec.openplanner.team/stops/N501dfa", "https://tec.openplanner.team/stops/N501mya"], ["https://tec.openplanner.team/stops/Cgncail2", "https://tec.openplanner.team/stops/Cgnpass1"], ["https://tec.openplanner.team/stops/LTRmosb1", "https://tec.openplanner.team/stops/LTRmosb2"], ["https://tec.openplanner.team/stops/X826aaa", "https://tec.openplanner.team/stops/X831aba"], ["https://tec.openplanner.team/stops/LLrfrai1", "https://tec.openplanner.team/stops/LLrmc--1"], ["https://tec.openplanner.team/stops/LTheg--1", "https://tec.openplanner.team/stops/LTheg--2"], ["https://tec.openplanner.team/stops/H3br100b", "https://tec.openplanner.team/stops/H3br101a"], ["https://tec.openplanner.team/stops/Cmabegh2", "https://tec.openplanner.team/stops/Cmastch1"], ["https://tec.openplanner.team/stops/X346abb", "https://tec.openplanner.team/stops/X892aga"], ["https://tec.openplanner.team/stops/X622acb", "https://tec.openplanner.team/stops/X622ada"], ["https://tec.openplanner.team/stops/N212ada", "https://tec.openplanner.team/stops/N348aea"], ["https://tec.openplanner.team/stops/Cmtduch1", "https://tec.openplanner.team/stops/Cmtprey1"], ["https://tec.openplanner.team/stops/Bjodath2", "https://tec.openplanner.team/stops/Bjodgar1"], ["https://tec.openplanner.team/stops/Bcsgres1", "https://tec.openplanner.team/stops/Blasbgc2"], ["https://tec.openplanner.team/stops/Lstamph1", "https://tec.openplanner.team/stops/Lstamph2"], ["https://tec.openplanner.team/stops/LGlbour1", "https://tec.openplanner.team/stops/LHZ8mai2"], ["https://tec.openplanner.team/stops/Bdlmflo2", "https://tec.openplanner.team/stops/Bdvmcbo2"], ["https://tec.openplanner.team/stops/Ljufler2", "https://tec.openplanner.team/stops/Ljumesa1"], ["https://tec.openplanner.team/stops/Cflfaub2", "https://tec.openplanner.team/stops/NC12adb"], ["https://tec.openplanner.team/stops/LSZpont1", "https://tec.openplanner.team/stops/LSZpont2"], ["https://tec.openplanner.team/stops/N501grb", "https://tec.openplanner.team/stops/N501grf"], ["https://tec.openplanner.team/stops/LLTfall1", "https://tec.openplanner.team/stops/LLTther2"], ["https://tec.openplanner.team/stops/N874aab", "https://tec.openplanner.team/stops/N874ahb"], ["https://tec.openplanner.team/stops/Cctbois3", "https://tec.openplanner.team/stops/Cctbois4"], ["https://tec.openplanner.team/stops/LSdbvue1", "https://tec.openplanner.team/stops/LSdcarr2"], ["https://tec.openplanner.team/stops/N501ebb", "https://tec.openplanner.team/stops/N501edb"], ["https://tec.openplanner.team/stops/N577ada", "https://tec.openplanner.team/stops/N577aka"], ["https://tec.openplanner.team/stops/N214aha", "https://tec.openplanner.team/stops/N225aaa"], ["https://tec.openplanner.team/stops/H4mb203b", "https://tec.openplanner.team/stops/H4mb204a"], ["https://tec.openplanner.team/stops/X919aia", "https://tec.openplanner.team/stops/X919aoa"], ["https://tec.openplanner.team/stops/LmNbirt2", "https://tec.openplanner.team/stops/LmNsv872"], ["https://tec.openplanner.team/stops/N234aaa", "https://tec.openplanner.team/stops/N234afa"], ["https://tec.openplanner.team/stops/X715aia", "https://tec.openplanner.team/stops/X715aib"], ["https://tec.openplanner.team/stops/N559aba", "https://tec.openplanner.team/stops/N559aea"], ["https://tec.openplanner.team/stops/Cctpche1", "https://tec.openplanner.team/stops/NC11afa"], ["https://tec.openplanner.team/stops/Lemambi1", "https://tec.openplanner.team/stops/Lemparc1"], ["https://tec.openplanner.team/stops/X880afa", "https://tec.openplanner.team/stops/X880aha"], ["https://tec.openplanner.team/stops/Blmlbou2", "https://tec.openplanner.team/stops/Blmlfau1"], ["https://tec.openplanner.team/stops/X946ada", "https://tec.openplanner.team/stops/X948acb"], ["https://tec.openplanner.team/stops/X629abb", "https://tec.openplanner.team/stops/X629aca"], ["https://tec.openplanner.team/stops/N308bcb", "https://tec.openplanner.team/stops/N308bhb"], ["https://tec.openplanner.team/stops/X615bdb", "https://tec.openplanner.team/stops/X615beb"], ["https://tec.openplanner.team/stops/N248aca", "https://tec.openplanner.team/stops/N248acb"], ["https://tec.openplanner.team/stops/X622aaa", "https://tec.openplanner.team/stops/X622aab"], ["https://tec.openplanner.team/stops/Brosegl1", "https://tec.openplanner.team/stops/Brosegl2"], ["https://tec.openplanner.team/stops/H1en101b", "https://tec.openplanner.team/stops/H1en103a"], ["https://tec.openplanner.team/stops/X876adb", "https://tec.openplanner.team/stops/X876aeb"], ["https://tec.openplanner.team/stops/LFAwale1", "https://tec.openplanner.team/stops/LLWcarr1"], ["https://tec.openplanner.team/stops/LPbpl--2", "https://tec.openplanner.team/stops/LPbtene2"], ["https://tec.openplanner.team/stops/Bptecal1", "https://tec.openplanner.team/stops/Bptegna1"], ["https://tec.openplanner.team/stops/LBpberl2", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://tec.openplanner.team/stops/X897aia", "https://tec.openplanner.team/stops/X897ajb"], ["https://tec.openplanner.team/stops/X985ada", "https://tec.openplanner.team/stops/X985ahb"], ["https://tec.openplanner.team/stops/H2sb231c", "https://tec.openplanner.team/stops/H2sb231d"], ["https://tec.openplanner.team/stops/LMOelva4", "https://tec.openplanner.team/stops/LMOs45-1"], ["https://tec.openplanner.team/stops/LeUath2", "https://tec.openplanner.team/stops/LeUauto1"], ["https://tec.openplanner.team/stops/LWapl--1", "https://tec.openplanner.team/stops/LWapl--2"], ["https://tec.openplanner.team/stops/LLg9---1", "https://tec.openplanner.team/stops/LLgcent1"], ["https://tec.openplanner.team/stops/X664aja", "https://tec.openplanner.team/stops/X664ajb"], ["https://tec.openplanner.team/stops/Clibrun1", "https://tec.openplanner.team/stops/Clibrun2"], ["https://tec.openplanner.team/stops/X757aea", "https://tec.openplanner.team/stops/X757anb"], ["https://tec.openplanner.team/stops/N150aka", "https://tec.openplanner.team/stops/N150akb"], ["https://tec.openplanner.team/stops/LBlplac2", "https://tec.openplanner.team/stops/LSEec--1"], ["https://tec.openplanner.team/stops/H1pa120a", "https://tec.openplanner.team/stops/H1wa151a"], ["https://tec.openplanner.team/stops/Lgrbill2", "https://tec.openplanner.team/stops/Lgrramp1"], ["https://tec.openplanner.team/stops/LCShoux2", "https://tec.openplanner.team/stops/LCSmagn2"], ["https://tec.openplanner.team/stops/Cgpleco1", "https://tec.openplanner.team/stops/Cgpleco2"], ["https://tec.openplanner.team/stops/N531ada", "https://tec.openplanner.team/stops/N531adb"], ["https://tec.openplanner.team/stops/X982cca", "https://tec.openplanner.team/stops/X982cda"], ["https://tec.openplanner.team/stops/X804aza", "https://tec.openplanner.team/stops/X804bza"], ["https://tec.openplanner.team/stops/LPAbour2", "https://tec.openplanner.team/stops/LWibare1"], ["https://tec.openplanner.team/stops/Bsdacab2", "https://tec.openplanner.team/stops/Bvlvpco2"], ["https://tec.openplanner.team/stops/LdUespe3", "https://tec.openplanner.team/stops/LdUespe4"], ["https://tec.openplanner.team/stops/H2ch100b", "https://tec.openplanner.team/stops/H2ch100c"], ["https://tec.openplanner.team/stops/N338afb", "https://tec.openplanner.team/stops/N338agb"], ["https://tec.openplanner.team/stops/X939aaa", "https://tec.openplanner.team/stops/X940aeb"], ["https://tec.openplanner.team/stops/N202aca", "https://tec.openplanner.team/stops/N202aga"], ["https://tec.openplanner.team/stops/LCLacbi1", "https://tec.openplanner.team/stops/LCLstat2"], ["https://tec.openplanner.team/stops/LBRmc--3", "https://tec.openplanner.team/stops/LBRpt--2"], ["https://tec.openplanner.team/stops/H3bi113b", "https://tec.openplanner.team/stops/H3bi119a"], ["https://tec.openplanner.team/stops/X902aga", "https://tec.openplanner.team/stops/X902aha"], ["https://tec.openplanner.team/stops/H4mo188a", "https://tec.openplanner.team/stops/H4mo208a"], ["https://tec.openplanner.team/stops/Cbfpoti1", "https://tec.openplanner.team/stops/NC11ajb"], ["https://tec.openplanner.team/stops/LJAbell1", "https://tec.openplanner.team/stops/LJAferm2"], ["https://tec.openplanner.team/stops/N202aec", "https://tec.openplanner.team/stops/N203aca"], ["https://tec.openplanner.team/stops/LHNhall3", "https://tec.openplanner.team/stops/LHNhv--2"], ["https://tec.openplanner.team/stops/X717acb", "https://tec.openplanner.team/stops/X782aeb"], ["https://tec.openplanner.team/stops/LSIcour2", "https://tec.openplanner.team/stops/LSItert2"], ["https://tec.openplanner.team/stops/Bmrsayw2", "https://tec.openplanner.team/stops/Bohnmon1"], ["https://tec.openplanner.team/stops/X982cab", "https://tec.openplanner.team/stops/X982cbb"], ["https://tec.openplanner.team/stops/Bcrbhir1", "https://tec.openplanner.team/stops/Bnilcab2"], ["https://tec.openplanner.team/stops/LESchac1", "https://tec.openplanner.team/stops/LPOecol1"], ["https://tec.openplanner.team/stops/Bjodint2", "https://tec.openplanner.team/stops/NR10aaa"], ["https://tec.openplanner.team/stops/N520acb", "https://tec.openplanner.team/stops/N520aeb"], ["https://tec.openplanner.team/stops/Lsemaha1", "https://tec.openplanner.team/stops/Lsemaha2"], ["https://tec.openplanner.team/stops/Cthpibl1", "https://tec.openplanner.team/stops/Cthvbas4"], ["https://tec.openplanner.team/stops/LKmcabi2", "https://tec.openplanner.team/stops/LKmeg--2"], ["https://tec.openplanner.team/stops/X808aha", "https://tec.openplanner.team/stops/X808ahb"], ["https://tec.openplanner.team/stops/LMvrabo1", "https://tec.openplanner.team/stops/LMvrabo2"], ["https://tec.openplanner.team/stops/X805agb", "https://tec.openplanner.team/stops/X807abb"], ["https://tec.openplanner.team/stops/X639ama", "https://tec.openplanner.team/stops/X675aab"], ["https://tec.openplanner.team/stops/H1wa151a", "https://tec.openplanner.team/stops/H1wa163b"], ["https://tec.openplanner.team/stops/Bsdecdi1", "https://tec.openplanner.team/stops/Bsdecdi2"], ["https://tec.openplanner.team/stops/X641aob", "https://tec.openplanner.team/stops/X646ada"], ["https://tec.openplanner.team/stops/X633aea", "https://tec.openplanner.team/stops/X633aeb"], ["https://tec.openplanner.team/stops/LaM266-1", "https://tec.openplanner.team/stops/LaMbrei2"], ["https://tec.openplanner.team/stops/H4mo147a", "https://tec.openplanner.team/stops/H4mo169a"], ["https://tec.openplanner.team/stops/LHCbran1", "https://tec.openplanner.team/stops/LHCruyf1"], ["https://tec.openplanner.team/stops/N228aaa", "https://tec.openplanner.team/stops/N228aab"], ["https://tec.openplanner.team/stops/X907aeb", "https://tec.openplanner.team/stops/X908asb"], ["https://tec.openplanner.team/stops/X637ama", "https://tec.openplanner.team/stops/X637amb"], ["https://tec.openplanner.team/stops/Btanvil1", "https://tec.openplanner.team/stops/Btanvil2"], ["https://tec.openplanner.team/stops/LMHec--2", "https://tec.openplanner.team/stops/LMHplac1"], ["https://tec.openplanner.team/stops/X612aab", "https://tec.openplanner.team/stops/X623aaa"], ["https://tec.openplanner.team/stops/H1bb120b", "https://tec.openplanner.team/stops/H1do127b"], ["https://tec.openplanner.team/stops/N132aba", "https://tec.openplanner.team/stops/N152abc"], ["https://tec.openplanner.team/stops/H1ni320a", "https://tec.openplanner.team/stops/H1ni320b"], ["https://tec.openplanner.team/stops/Cnagrro1", "https://tec.openplanner.team/stops/Cnathib1"], ["https://tec.openplanner.team/stops/N383ada", "https://tec.openplanner.team/stops/N383aea"], ["https://tec.openplanner.team/stops/X982bta", "https://tec.openplanner.team/stops/X982bza"], ["https://tec.openplanner.team/stops/H1cu128a", "https://tec.openplanner.team/stops/H1cu128b"], ["https://tec.openplanner.team/stops/H2hg145a", "https://tec.openplanner.team/stops/H2hg146a"], ["https://tec.openplanner.team/stops/N538aba", "https://tec.openplanner.team/stops/N538aeb"], ["https://tec.openplanner.team/stops/Blthbss1", "https://tec.openplanner.team/stops/Brxmcna1"], ["https://tec.openplanner.team/stops/Llgcong3", "https://tec.openplanner.team/stops/Llgterr1"], ["https://tec.openplanner.team/stops/X922aeb", "https://tec.openplanner.team/stops/X922afb"], ["https://tec.openplanner.team/stops/N141ajb", "https://tec.openplanner.team/stops/N141alb"], ["https://tec.openplanner.team/stops/X636aka", "https://tec.openplanner.team/stops/X636bfa"], ["https://tec.openplanner.team/stops/X604ahb", "https://tec.openplanner.team/stops/X618aab"], ["https://tec.openplanner.team/stops/Bwavbpi1", "https://tec.openplanner.team/stops/Bwavlca1"], ["https://tec.openplanner.team/stops/X615aca", "https://tec.openplanner.team/stops/X615akb"], ["https://tec.openplanner.team/stops/Cbuplac3", "https://tec.openplanner.team/stops/Cfnsenz2"], ["https://tec.openplanner.team/stops/LMArave1", "https://tec.openplanner.team/stops/LMArave2"], ["https://tec.openplanner.team/stops/N101aaa", "https://tec.openplanner.team/stops/N118alb"], ["https://tec.openplanner.team/stops/X398aba", "https://tec.openplanner.team/stops/X398abb"], ["https://tec.openplanner.team/stops/Bdvmtve2", "https://tec.openplanner.team/stops/Bgisman1"], ["https://tec.openplanner.team/stops/Lemdieu1", "https://tec.openplanner.team/stops/Lemsely2"], ["https://tec.openplanner.team/stops/N542aba", "https://tec.openplanner.team/stops/N542acb"], ["https://tec.openplanner.team/stops/Lbrnanc2", "https://tec.openplanner.team/stops/Llglill2"], ["https://tec.openplanner.team/stops/Beclesp2", "https://tec.openplanner.team/stops/H2ec105b"], ["https://tec.openplanner.team/stops/Lvearle1", "https://tec.openplanner.team/stops/Lvescie1"], ["https://tec.openplanner.team/stops/LrEkais2", "https://tec.openplanner.team/stops/LrErauw2"], ["https://tec.openplanner.team/stops/Bhevjac2", "https://tec.openplanner.team/stops/Bhevjal1"], ["https://tec.openplanner.team/stops/N542apb", "https://tec.openplanner.team/stops/N542aqb"], ["https://tec.openplanner.team/stops/LCschri2", "https://tec.openplanner.team/stops/LCseg--1"], ["https://tec.openplanner.team/stops/Cvrchap1", "https://tec.openplanner.team/stops/Cvrchap2"], ["https://tec.openplanner.team/stops/Bnivga12", "https://tec.openplanner.team/stops/Bnivsse1"], ["https://tec.openplanner.team/stops/Cciqueu1", "https://tec.openplanner.team/stops/Clvchen1"], ["https://tec.openplanner.team/stops/LHHcite2", "https://tec.openplanner.team/stops/LHHtill1"], ["https://tec.openplanner.team/stops/NL72aca", "https://tec.openplanner.team/stops/NL76aeb"], ["https://tec.openplanner.team/stops/H1ha184a", "https://tec.openplanner.team/stops/H1ob330a"], ["https://tec.openplanner.team/stops/H1wa149b", "https://tec.openplanner.team/stops/H1wa156b"], ["https://tec.openplanner.team/stops/H4pq115b", "https://tec.openplanner.team/stops/H4pq120a"], ["https://tec.openplanner.team/stops/H1fy118a", "https://tec.openplanner.team/stops/H1wi150b"], ["https://tec.openplanner.team/stops/LNCchau3", "https://tec.openplanner.team/stops/LNCmoul1"], ["https://tec.openplanner.team/stops/H4mv190b", "https://tec.openplanner.team/stops/H4mv194b"], ["https://tec.openplanner.team/stops/Bwavlep1", "https://tec.openplanner.team/stops/Bwavtpi2"], ["https://tec.openplanner.team/stops/Bgnpgen1", "https://tec.openplanner.team/stops/Bgnpgen2"], ["https://tec.openplanner.team/stops/LVIdepo2", "https://tec.openplanner.team/stops/LVIhala3"], ["https://tec.openplanner.team/stops/Lremonu1", "https://tec.openplanner.team/stops/Lretill1"], ["https://tec.openplanner.team/stops/LFLcarr2", "https://tec.openplanner.team/stops/LMvrabo1"], ["https://tec.openplanner.team/stops/Lgrgoff2", "https://tec.openplanner.team/stops/Lgrjobe2"], ["https://tec.openplanner.team/stops/N351aia", "https://tec.openplanner.team/stops/N351axa"], ["https://tec.openplanner.team/stops/Cflbrun1", "https://tec.openplanner.team/stops/Cflchap2"], ["https://tec.openplanner.team/stops/H1ba103b", "https://tec.openplanner.team/stops/H1ba108a"], ["https://tec.openplanner.team/stops/LRfbeau1", "https://tec.openplanner.team/stops/LRfbeau2"], ["https://tec.openplanner.team/stops/H4ru240a", "https://tec.openplanner.team/stops/H4ru240b"], ["https://tec.openplanner.team/stops/N508aja", "https://tec.openplanner.team/stops/N508ajc"], ["https://tec.openplanner.team/stops/H4hx109a", "https://tec.openplanner.team/stops/H4mo182a"], ["https://tec.openplanner.team/stops/Llmbell2", "https://tec.openplanner.team/stops/Llmdavi2"], ["https://tec.openplanner.team/stops/H5gr135b", "https://tec.openplanner.team/stops/H5qu144a"], ["https://tec.openplanner.team/stops/LTIcime2", "https://tec.openplanner.team/stops/LTIecma2"], ["https://tec.openplanner.team/stops/LHaeg--1", "https://tec.openplanner.team/stops/X982agb"], ["https://tec.openplanner.team/stops/X601bya", "https://tec.openplanner.team/stops/X601cha"], ["https://tec.openplanner.team/stops/X601bqa", "https://tec.openplanner.team/stops/X601bza"], ["https://tec.openplanner.team/stops/Bgoegma2", "https://tec.openplanner.team/stops/Bgoesch3"], ["https://tec.openplanner.team/stops/Llochar4", "https://tec.openplanner.team/stops/Llochar5"], ["https://tec.openplanner.team/stops/N511aja", "https://tec.openplanner.team/stops/N511aka"], ["https://tec.openplanner.team/stops/Barcpre2", "https://tec.openplanner.team/stops/Bgzdcwa1"], ["https://tec.openplanner.team/stops/X661bbb", "https://tec.openplanner.team/stops/X672aob"], ["https://tec.openplanner.team/stops/Bbeardu1", "https://tec.openplanner.team/stops/Bbeardu2"], ["https://tec.openplanner.team/stops/H1wi148a", "https://tec.openplanner.team/stops/H1wi148c"], ["https://tec.openplanner.team/stops/Llglema1", "https://tec.openplanner.team/stops/Llglema3"], ["https://tec.openplanner.team/stops/LWEpaul1", "https://tec.openplanner.team/stops/LWEwilc2"], ["https://tec.openplanner.team/stops/N111aab", "https://tec.openplanner.team/stops/N113aba"], ["https://tec.openplanner.team/stops/H4wa149a", "https://tec.openplanner.team/stops/H4wa153b"], ["https://tec.openplanner.team/stops/LhMdorf1", "https://tec.openplanner.team/stops/LmCkirc1"], ["https://tec.openplanner.team/stops/X390aja", "https://tec.openplanner.team/stops/X390ajb"], ["https://tec.openplanner.team/stops/H1at110a", "https://tec.openplanner.team/stops/H1at110b"], ["https://tec.openplanner.team/stops/X653adb", "https://tec.openplanner.team/stops/X653aea"], ["https://tec.openplanner.team/stops/N513ara", "https://tec.openplanner.team/stops/N513arb"], ["https://tec.openplanner.team/stops/LBKmare1", "https://tec.openplanner.team/stops/LBKmare2"], ["https://tec.openplanner.team/stops/H4te253b", "https://tec.openplanner.team/stops/H4te260a"], ["https://tec.openplanner.team/stops/N501cqb", "https://tec.openplanner.team/stops/N501crd"], ["https://tec.openplanner.team/stops/Cchalou1", "https://tec.openplanner.team/stops/Cchalou2"], ["https://tec.openplanner.team/stops/LPobois1", "https://tec.openplanner.team/stops/LTgsous2"], ["https://tec.openplanner.team/stops/Llgatel2", "https://tec.openplanner.team/stops/Llggee52"], ["https://tec.openplanner.team/stops/Bcrncor2", "https://tec.openplanner.team/stops/Bcrntru2"], ["https://tec.openplanner.team/stops/X801cha", "https://tec.openplanner.team/stops/X801chb"], ["https://tec.openplanner.team/stops/Brsgepr2", "https://tec.openplanner.team/stops/Brsgges1"], ["https://tec.openplanner.team/stops/Lenauln1", "https://tec.openplanner.team/stops/Lencham*"], ["https://tec.openplanner.team/stops/H5at136a", "https://tec.openplanner.team/stops/H5at139a"], ["https://tec.openplanner.team/stops/X617ada", "https://tec.openplanner.team/stops/X695ada"], ["https://tec.openplanner.team/stops/H4lz126a", "https://tec.openplanner.team/stops/H4lz126b"], ["https://tec.openplanner.team/stops/H1ci104a", "https://tec.openplanner.team/stops/H1hn206b"], ["https://tec.openplanner.team/stops/N232bla", "https://tec.openplanner.team/stops/N232blb"], ["https://tec.openplanner.team/stops/X982bdb", "https://tec.openplanner.team/stops/X982cba"], ["https://tec.openplanner.team/stops/H4pl115b", "https://tec.openplanner.team/stops/H4pl117b"], ["https://tec.openplanner.team/stops/Lhufays1", "https://tec.openplanner.team/stops/LSProya2"], ["https://tec.openplanner.team/stops/X657aea", "https://tec.openplanner.team/stops/X657ala"], ["https://tec.openplanner.team/stops/LbTmuhl1", "https://tec.openplanner.team/stops/LnIschw1"], ["https://tec.openplanner.team/stops/X723ahb", "https://tec.openplanner.team/stops/X775alb"], ["https://tec.openplanner.team/stops/X396aba", "https://tec.openplanner.team/stops/X396adb"], ["https://tec.openplanner.team/stops/H4ir164b", "https://tec.openplanner.team/stops/H4ir167b"], ["https://tec.openplanner.team/stops/H1ss349a", "https://tec.openplanner.team/stops/H1ss349b"], ["https://tec.openplanner.team/stops/X636aba", "https://tec.openplanner.team/stops/X670ama"], ["https://tec.openplanner.team/stops/N501fsa", "https://tec.openplanner.team/stops/N501fta"], ["https://tec.openplanner.team/stops/LTgchar7", "https://tec.openplanner.team/stops/LTgchar8"], ["https://tec.openplanner.team/stops/X804avb", "https://tec.openplanner.team/stops/X804brb"], ["https://tec.openplanner.team/stops/N513aoa", "https://tec.openplanner.team/stops/N513apa"], ["https://tec.openplanner.team/stops/H4te251b", "https://tec.openplanner.team/stops/H4te413b"], ["https://tec.openplanner.team/stops/N302aca", "https://tec.openplanner.team/stops/N302acb"], ["https://tec.openplanner.team/stops/H1eu107b", "https://tec.openplanner.team/stops/H1sb144a"], ["https://tec.openplanner.team/stops/N988aca", "https://tec.openplanner.team/stops/N988acb"], ["https://tec.openplanner.team/stops/X657aba", "https://tec.openplanner.team/stops/X657abb"], ["https://tec.openplanner.team/stops/Llgbert2", "https://tec.openplanner.team/stops/Llgware1"], ["https://tec.openplanner.team/stops/Lghmeun3", "https://tec.openplanner.team/stops/Ljejoli1"], ["https://tec.openplanner.team/stops/Cfocmed1", "https://tec.openplanner.team/stops/Cforepo1"], ["https://tec.openplanner.team/stops/X801asa", "https://tec.openplanner.team/stops/X801ayb"], ["https://tec.openplanner.team/stops/X902aeb", "https://tec.openplanner.team/stops/X902ara"], ["https://tec.openplanner.team/stops/H4pi130b", "https://tec.openplanner.team/stops/H4pi134b"], ["https://tec.openplanner.team/stops/X774aad", "https://tec.openplanner.team/stops/X954agb"], ["https://tec.openplanner.team/stops/Cvlcen1", "https://tec.openplanner.team/stops/Cvlpeau2"], ["https://tec.openplanner.team/stops/X723aea", "https://tec.openplanner.team/stops/X723aeb"], ["https://tec.openplanner.team/stops/N343aeb", "https://tec.openplanner.team/stops/N343aib"], ["https://tec.openplanner.team/stops/H1bo104b", "https://tec.openplanner.team/stops/H1bo150b"], ["https://tec.openplanner.team/stops/N201aua", "https://tec.openplanner.team/stops/N201aub"], ["https://tec.openplanner.team/stops/Cvtgsar2", "https://tec.openplanner.team/stops/Cvtndam2"], ["https://tec.openplanner.team/stops/N501ama", "https://tec.openplanner.team/stops/N501bcb"], ["https://tec.openplanner.team/stops/X872aba", "https://tec.openplanner.team/stops/X872afa"], ["https://tec.openplanner.team/stops/LHDlibi2", "https://tec.openplanner.team/stops/LLmcheg3"], ["https://tec.openplanner.team/stops/LBGgeer1", "https://tec.openplanner.team/stops/LGrchpl2"], ["https://tec.openplanner.team/stops/X804baa", "https://tec.openplanner.team/stops/X804bfb"], ["https://tec.openplanner.team/stops/N161aaa", "https://tec.openplanner.team/stops/N161afa"], ["https://tec.openplanner.team/stops/N539bca", "https://tec.openplanner.team/stops/N539beb"], ["https://tec.openplanner.team/stops/Cflecga1", "https://tec.openplanner.team/stops/Cwgcroi2"], ["https://tec.openplanner.team/stops/Bsoigar1", "https://tec.openplanner.team/stops/H3so161a"], ["https://tec.openplanner.team/stops/N123abb", "https://tec.openplanner.team/stops/N123ada"], ["https://tec.openplanner.team/stops/X922aib", "https://tec.openplanner.team/stops/X942afa"], ["https://tec.openplanner.team/stops/X947abb", "https://tec.openplanner.team/stops/X948aha"], ["https://tec.openplanner.team/stops/Ladjaur2", "https://tec.openplanner.team/stops/Ladotto2"], ["https://tec.openplanner.team/stops/Bottcco2", "https://tec.openplanner.team/stops/Bottpma1"], ["https://tec.openplanner.team/stops/Bquebut2", "https://tec.openplanner.team/stops/Bquegen2"], ["https://tec.openplanner.team/stops/Lfh-sci1", "https://tec.openplanner.team/stops/Lsevico1"], ["https://tec.openplanner.team/stops/X822afb", "https://tec.openplanner.team/stops/X822akb"], ["https://tec.openplanner.team/stops/LLgmini1", "https://tec.openplanner.team/stops/LRCviad1"], ["https://tec.openplanner.team/stops/X804ald", "https://tec.openplanner.team/stops/X804bpa"], ["https://tec.openplanner.team/stops/Bgrmver1", "https://tec.openplanner.team/stops/Bgrmver2"], ["https://tec.openplanner.team/stops/Cmlhotv1", "https://tec.openplanner.team/stops/Cmlvpla2"], ["https://tec.openplanner.team/stops/LLmpt--1", "https://tec.openplanner.team/stops/LLmvict1"], ["https://tec.openplanner.team/stops/N520ada", "https://tec.openplanner.team/stops/N520aea"], ["https://tec.openplanner.team/stops/LBscime2", "https://tec.openplanner.team/stops/LMHtill2"], ["https://tec.openplanner.team/stops/Ctrpn1", "https://tec.openplanner.team/stops/Ctrpn2"], ["https://tec.openplanner.team/stops/X641afb", "https://tec.openplanner.team/stops/X641apb"], ["https://tec.openplanner.team/stops/X614afb", "https://tec.openplanner.team/stops/X615bha"], ["https://tec.openplanner.team/stops/Lhr2ave1", "https://tec.openplanner.team/stops/Lhr4ave1"], ["https://tec.openplanner.team/stops/X638ama", "https://tec.openplanner.team/stops/X638amb"], ["https://tec.openplanner.team/stops/H4ep128b", "https://tec.openplanner.team/stops/H4la199a"], ["https://tec.openplanner.team/stops/LhElont1", "https://tec.openplanner.team/stops/LhElont2"], ["https://tec.openplanner.team/stops/Lrcstad1", "https://tec.openplanner.team/stops/Lvtpepi2"], ["https://tec.openplanner.team/stops/N165aab", "https://tec.openplanner.team/stops/N165acb"], ["https://tec.openplanner.team/stops/N347aea", "https://tec.openplanner.team/stops/N347aeb"], ["https://tec.openplanner.team/stops/Candett2", "https://tec.openplanner.team/stops/H1bi103b"], ["https://tec.openplanner.team/stops/Cgonvro2", "https://tec.openplanner.team/stops/Cgorobe2"], ["https://tec.openplanner.team/stops/X801bga", "https://tec.openplanner.team/stops/X801bia"], ["https://tec.openplanner.team/stops/Bvilvil1", "https://tec.openplanner.team/stops/Bvilvil4"], ["https://tec.openplanner.team/stops/Cjuquai1", "https://tec.openplanner.team/stops/Cjuunio2"], ["https://tec.openplanner.team/stops/X824aga", "https://tec.openplanner.team/stops/X824ahb"], ["https://tec.openplanner.team/stops/Cpccoss2", "https://tec.openplanner.team/stops/Cpcndce2"], ["https://tec.openplanner.team/stops/Bhvltol1", "https://tec.openplanner.team/stops/Bmsgbay2"], ["https://tec.openplanner.team/stops/Lchorme1", "https://tec.openplanner.team/stops/Lchsaeg2"], ["https://tec.openplanner.team/stops/X790aeb", "https://tec.openplanner.team/stops/X790ahb"], ["https://tec.openplanner.team/stops/H3so157b", "https://tec.openplanner.team/stops/H3so169b"], ["https://tec.openplanner.team/stops/LOLbout1", "https://tec.openplanner.team/stops/LOLbout2"], ["https://tec.openplanner.team/stops/LBLgobc1", "https://tec.openplanner.team/stops/LBLplas1"], ["https://tec.openplanner.team/stops/X636aua", "https://tec.openplanner.team/stops/X636bha"], ["https://tec.openplanner.team/stops/H2ll196b", "https://tec.openplanner.team/stops/H2ll200b"], ["https://tec.openplanner.team/stops/H2bh120a", "https://tec.openplanner.team/stops/H2mg136a"], ["https://tec.openplanner.team/stops/Cmachau1", "https://tec.openplanner.team/stops/CMprov2"], ["https://tec.openplanner.team/stops/N531aba", "https://tec.openplanner.team/stops/N531ara"], ["https://tec.openplanner.team/stops/Cjuchli3", "https://tec.openplanner.team/stops/Cjuhopi1"], ["https://tec.openplanner.team/stops/LHXn47-3", "https://tec.openplanner.team/stops/LHXn47-4"], ["https://tec.openplanner.team/stops/X982bla", "https://tec.openplanner.team/stops/X982blb"], ["https://tec.openplanner.team/stops/Bwavnam3", "https://tec.openplanner.team/stops/Bwavnam4"], ["https://tec.openplanner.team/stops/H2hg266a", "https://tec.openplanner.team/stops/H2hg267b"], ["https://tec.openplanner.team/stops/H1qu101b", "https://tec.openplanner.team/stops/H1qu110a"], ["https://tec.openplanner.team/stops/LClbloc1", "https://tec.openplanner.team/stops/LCltrib2"], ["https://tec.openplanner.team/stops/LPLarbo1", "https://tec.openplanner.team/stops/LPLruis1"], ["https://tec.openplanner.team/stops/X719abb", "https://tec.openplanner.team/stops/X733aaa"], ["https://tec.openplanner.team/stops/Lglvand2", "https://tec.openplanner.team/stops/Llgrame2"], ["https://tec.openplanner.team/stops/N201apa", "https://tec.openplanner.team/stops/N201apb"], ["https://tec.openplanner.team/stops/H5rx127b", "https://tec.openplanner.team/stops/H5rx148a"], ["https://tec.openplanner.team/stops/Ccuhaie1", "https://tec.openplanner.team/stops/Ccuphai4"], ["https://tec.openplanner.team/stops/LkEl1212", "https://tec.openplanner.team/stops/LkEl3252"], ["https://tec.openplanner.team/stops/H3th126b", "https://tec.openplanner.team/stops/H3th133b"], ["https://tec.openplanner.team/stops/N301ajb", "https://tec.openplanner.team/stops/N302aaa"], ["https://tec.openplanner.team/stops/Cchsud10", "https://tec.openplanner.team/stops/CMsud2"], ["https://tec.openplanner.team/stops/H4te250a", "https://tec.openplanner.team/stops/H4te255b"], ["https://tec.openplanner.team/stops/Buccmer2", "https://tec.openplanner.team/stops/Buccptj2"], ["https://tec.openplanner.team/stops/X641apa", "https://tec.openplanner.team/stops/X641aqb"], ["https://tec.openplanner.team/stops/N260aba", "https://tec.openplanner.team/stops/N260acb"], ["https://tec.openplanner.team/stops/H1fl133a", "https://tec.openplanner.team/stops/H1fl133e"], ["https://tec.openplanner.team/stops/X639ara", "https://tec.openplanner.team/stops/X639arb"], ["https://tec.openplanner.team/stops/Cgxpair2", "https://tec.openplanner.team/stops/Cgxvkho2"], ["https://tec.openplanner.team/stops/Cmyboci1", "https://tec.openplanner.team/stops/Cmyrens1"], ["https://tec.openplanner.team/stops/LGLlaur1", "https://tec.openplanner.team/stops/LGLlaur2"], ["https://tec.openplanner.team/stops/N245aab", "https://tec.openplanner.team/stops/N287ada"], ["https://tec.openplanner.team/stops/H1hy144a", "https://tec.openplanner.team/stops/H1qy133a"], ["https://tec.openplanner.team/stops/H2an110a", "https://tec.openplanner.team/stops/H2ca102a"], ["https://tec.openplanner.team/stops/NL68aaa", "https://tec.openplanner.team/stops/NL68aab"], ["https://tec.openplanner.team/stops/N204ada", "https://tec.openplanner.team/stops/N204aia"], ["https://tec.openplanner.team/stops/LERboss1", "https://tec.openplanner.team/stops/LERpouh1"], ["https://tec.openplanner.team/stops/X725aqb", "https://tec.openplanner.team/stops/X725axa"], ["https://tec.openplanner.team/stops/LSdencl*", "https://tec.openplanner.team/stops/LSdsa8a2"], ["https://tec.openplanner.team/stops/LERdeho2", "https://tec.openplanner.team/stops/LHrlorc1"], ["https://tec.openplanner.team/stops/LHueg--1", "https://tec.openplanner.team/stops/LHumoul1"], ["https://tec.openplanner.team/stops/H4hx114b", "https://tec.openplanner.team/stops/H4wa153a"], ["https://tec.openplanner.team/stops/Bnetrtb1", "https://tec.openplanner.team/stops/Bnetrtb2"], ["https://tec.openplanner.team/stops/Cjxegli1", "https://tec.openplanner.team/stops/Cjxthom2"], ["https://tec.openplanner.team/stops/N232aoa", "https://tec.openplanner.team/stops/N232cda"], ["https://tec.openplanner.team/stops/NR21aba", "https://tec.openplanner.team/stops/NR21abb"], ["https://tec.openplanner.team/stops/X901ama", "https://tec.openplanner.team/stops/X902bbb"], ["https://tec.openplanner.team/stops/Bwolrod1", "https://tec.openplanner.team/stops/Bwolvan2"], ["https://tec.openplanner.team/stops/Ctm4che2", "https://tec.openplanner.team/stops/Ctmsncb1"], ["https://tec.openplanner.team/stops/H3lr107a", "https://tec.openplanner.team/stops/H3lr116a"], ["https://tec.openplanner.team/stops/H1pa103b", "https://tec.openplanner.team/stops/H1wa159a"], ["https://tec.openplanner.team/stops/X789abb", "https://tec.openplanner.team/stops/X789ajb"], ["https://tec.openplanner.team/stops/H4fa125b", "https://tec.openplanner.team/stops/H4hq133c"], ["https://tec.openplanner.team/stops/N519asb", "https://tec.openplanner.team/stops/N524ajb"], ["https://tec.openplanner.team/stops/LSogare2", "https://tec.openplanner.team/stops/LSoprom2"], ["https://tec.openplanner.team/stops/Ccuwain1", "https://tec.openplanner.team/stops/Cgysole2"], ["https://tec.openplanner.team/stops/LeUbell*", "https://tec.openplanner.team/stops/LeUvoul1"], ["https://tec.openplanner.team/stops/Ctucour2", "https://tec.openplanner.team/stops/Ctuyser1"], ["https://tec.openplanner.team/stops/H1mm125d", "https://tec.openplanner.team/stops/H1mm128b"], ["https://tec.openplanner.team/stops/LATdony1", "https://tec.openplanner.team/stops/LAThach2"], ["https://tec.openplanner.team/stops/H4mo190a", "https://tec.openplanner.team/stops/H4mo190b"], ["https://tec.openplanner.team/stops/Cgocolo2", "https://tec.openplanner.team/stops/Cjufauv1"], ["https://tec.openplanner.team/stops/X622aba", "https://tec.openplanner.team/stops/X622acb"], ["https://tec.openplanner.team/stops/Ccugilb1", "https://tec.openplanner.team/stops/Ccutail1"], ["https://tec.openplanner.team/stops/Cctjoue1", "https://tec.openplanner.team/stops/Cctwaut2"], ["https://tec.openplanner.team/stops/LhRandl1", "https://tec.openplanner.team/stops/LsC216-1"], ["https://tec.openplanner.team/stops/LSGsurf1", "https://tec.openplanner.team/stops/LSGsurf2"], ["https://tec.openplanner.team/stops/N309aba", "https://tec.openplanner.team/stops/N350adb"], ["https://tec.openplanner.team/stops/Llgbavi0", "https://tec.openplanner.team/stops/Llgbavi2"], ["https://tec.openplanner.team/stops/Ccyfede1", "https://tec.openplanner.team/stops/Cvtvois2"], ["https://tec.openplanner.team/stops/Cmregli4", "https://tec.openplanner.team/stops/N162acb"], ["https://tec.openplanner.team/stops/N109acb", "https://tec.openplanner.team/stops/N122agb"], ["https://tec.openplanner.team/stops/Cfabnat2", "https://tec.openplanner.team/stops/Cfarcam2"], ["https://tec.openplanner.team/stops/LPldoua3", "https://tec.openplanner.team/stops/LPldoua4"], ["https://tec.openplanner.team/stops/H1bo103a", "https://tec.openplanner.team/stops/H1sg146b"], ["https://tec.openplanner.team/stops/N360adc", "https://tec.openplanner.team/stops/N360aea"], ["https://tec.openplanner.team/stops/X818ava", "https://tec.openplanner.team/stops/X818avb"], ["https://tec.openplanner.team/stops/H5el112d", "https://tec.openplanner.team/stops/H5el116b"], ["https://tec.openplanner.team/stops/N308afb", "https://tec.openplanner.team/stops/N308aia"], ["https://tec.openplanner.team/stops/LLYchpl1", "https://tec.openplanner.team/stops/LLYtir-1"], ["https://tec.openplanner.team/stops/X670akb", "https://tec.openplanner.team/stops/X670ana"], ["https://tec.openplanner.team/stops/H1bu138a", "https://tec.openplanner.team/stops/H1vb147b"], ["https://tec.openplanner.team/stops/H1cu110b", "https://tec.openplanner.team/stops/H1fr122a"], ["https://tec.openplanner.team/stops/X812aaa", "https://tec.openplanner.team/stops/X812ava"], ["https://tec.openplanner.team/stops/X801abb", "https://tec.openplanner.team/stops/X882aha"], ["https://tec.openplanner.team/stops/LAUjean1", "https://tec.openplanner.team/stops/LAUross1"], ["https://tec.openplanner.team/stops/H4mo162a", "https://tec.openplanner.team/stops/H4mo177a"], ["https://tec.openplanner.team/stops/Bjdsjso2", "https://tec.openplanner.team/stops/Bjodpce2"], ["https://tec.openplanner.team/stops/H1ha193a", "https://tec.openplanner.team/stops/H1ha201b"], ["https://tec.openplanner.team/stops/N501gqa", "https://tec.openplanner.team/stops/N501hba"], ["https://tec.openplanner.team/stops/Cmaleri1", "https://tec.openplanner.team/stops/Cmmptno2"], ["https://tec.openplanner.team/stops/Cjuhden1", "https://tec.openplanner.team/stops/Cjuhden2"], ["https://tec.openplanner.team/stops/Lagmair2", "https://tec.openplanner.team/stops/Lagmair5"], ["https://tec.openplanner.team/stops/N522ajb", "https://tec.openplanner.team/stops/N522aka"], ["https://tec.openplanner.team/stops/Lsearbo1", "https://tec.openplanner.team/stops/Lsearbo2"], ["https://tec.openplanner.team/stops/Lveecol1", "https://tec.openplanner.team/stops/Lvepala8"], ["https://tec.openplanner.team/stops/LMOelva1", "https://tec.openplanner.team/stops/LMOelva3"], ["https://tec.openplanner.team/stops/LTRespe2", "https://tec.openplanner.team/stops/LTRpery1"], ["https://tec.openplanner.team/stops/Lmocail1", "https://tec.openplanner.team/stops/Lsnpaqu2"], ["https://tec.openplanner.team/stops/H1bs110c", "https://tec.openplanner.team/stops/H1sb144b"], ["https://tec.openplanner.team/stops/Cjupui02", "https://tec.openplanner.team/stops/CMpuis2"], ["https://tec.openplanner.team/stops/H2bh103a", "https://tec.openplanner.team/stops/H2bh118a"], ["https://tec.openplanner.team/stops/H1pe132a", "https://tec.openplanner.team/stops/H1pe132b"], ["https://tec.openplanner.team/stops/X882ama", "https://tec.openplanner.team/stops/X882amb"], ["https://tec.openplanner.team/stops/X659aba", "https://tec.openplanner.team/stops/X659bab"], ["https://tec.openplanner.team/stops/LkEbran1", "https://tec.openplanner.team/stops/LkEwolf2"], ["https://tec.openplanner.team/stops/N113aeb", "https://tec.openplanner.team/stops/N114aab"], ["https://tec.openplanner.team/stops/X604aib", "https://tec.openplanner.team/stops/X604ajb"], ["https://tec.openplanner.team/stops/Bblmcel1", "https://tec.openplanner.team/stops/Bmsgrco1"], ["https://tec.openplanner.team/stops/Bolgfon1", "https://tec.openplanner.team/stops/Bolggar1"], ["https://tec.openplanner.team/stops/LBNvill1", "https://tec.openplanner.team/stops/LBNvill2"], ["https://tec.openplanner.team/stops/H2ch107a", "https://tec.openplanner.team/stops/H2ch125a"], ["https://tec.openplanner.team/stops/Crcegli1", "https://tec.openplanner.team/stops/Crcpcom1"], ["https://tec.openplanner.team/stops/H4mv188b", "https://tec.openplanner.team/stops/H4oe150a"], ["https://tec.openplanner.team/stops/X616afa", "https://tec.openplanner.team/stops/X624aea"], ["https://tec.openplanner.team/stops/Bpielon1", "https://tec.openplanner.team/stops/Bpiepla2"], ["https://tec.openplanner.team/stops/Bpielom2", "https://tec.openplanner.team/stops/Bzluegl1"], ["https://tec.openplanner.team/stops/LHUchpl2", "https://tec.openplanner.team/stops/LHUeuro4"], ["https://tec.openplanner.team/stops/LLAcalv1", "https://tec.openplanner.team/stops/LLAeg--1"], ["https://tec.openplanner.team/stops/X548adb", "https://tec.openplanner.team/stops/X548aea"], ["https://tec.openplanner.team/stops/Ccigill3", "https://tec.openplanner.team/stops/Ccipano2"], ["https://tec.openplanner.team/stops/Cgzmira1", "https://tec.openplanner.team/stops/Cgzmira3"], ["https://tec.openplanner.team/stops/N573aba", "https://tec.openplanner.team/stops/NC14ada"], ["https://tec.openplanner.team/stops/X614axa", "https://tec.openplanner.team/stops/X614aya"], ["https://tec.openplanner.team/stops/X926ada", "https://tec.openplanner.team/stops/X945adb"], ["https://tec.openplanner.team/stops/X725adb", "https://tec.openplanner.team/stops/X725afd"], ["https://tec.openplanner.team/stops/Lhr1ave2", "https://tec.openplanner.team/stops/Lhr1ave5"], ["https://tec.openplanner.team/stops/LlOkreu1", "https://tec.openplanner.team/stops/LnDrund2"], ["https://tec.openplanner.team/stops/N551ana", "https://tec.openplanner.team/stops/N551aqb"], ["https://tec.openplanner.team/stops/X723aea", "https://tec.openplanner.team/stops/X766afa"], ["https://tec.openplanner.team/stops/N501lsb", "https://tec.openplanner.team/stops/N501lzz"], ["https://tec.openplanner.team/stops/LLVboss1", "https://tec.openplanner.team/stops/X575aab"], ["https://tec.openplanner.team/stops/N557aab", "https://tec.openplanner.team/stops/N557ajb"], ["https://tec.openplanner.team/stops/Lch179-2", "https://tec.openplanner.team/stops/Lchtche1"], ["https://tec.openplanner.team/stops/H2go115a", "https://tec.openplanner.team/stops/H2go120a"], ["https://tec.openplanner.team/stops/Lvccime1", "https://tec.openplanner.team/stops/Lvcdumo2"], ["https://tec.openplanner.team/stops/Bjaufca2", "https://tec.openplanner.team/stops/Bjauwar2"], ["https://tec.openplanner.team/stops/Cmtmath2", "https://tec.openplanner.team/stops/Cmtstth1"], ["https://tec.openplanner.team/stops/Craappa1", "https://tec.openplanner.team/stops/Cravold2"], ["https://tec.openplanner.team/stops/N551ara", "https://tec.openplanner.team/stops/N551arc"], ["https://tec.openplanner.team/stops/N529abc", "https://tec.openplanner.team/stops/N529aka"], ["https://tec.openplanner.team/stops/Cbfegch1", "https://tec.openplanner.team/stops/NC24aia"], ["https://tec.openplanner.team/stops/N543bta", "https://tec.openplanner.team/stops/N543cpa"], ["https://tec.openplanner.team/stops/H4wu375a", "https://tec.openplanner.team/stops/H4wu376b"], ["https://tec.openplanner.team/stops/Btilgar1", "https://tec.openplanner.team/stops/Btilhti2"], ["https://tec.openplanner.team/stops/X982cea", "https://tec.openplanner.team/stops/X983abb"], ["https://tec.openplanner.team/stops/N217aca", "https://tec.openplanner.team/stops/N218afa"], ["https://tec.openplanner.team/stops/N501cga", "https://tec.openplanner.team/stops/N501cja"], ["https://tec.openplanner.team/stops/LeUmeie2", "https://tec.openplanner.team/stops/LeUvoss1"], ["https://tec.openplanner.team/stops/LSMchat1", "https://tec.openplanner.team/stops/LSMcles2"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Lghsimo4"], ["https://tec.openplanner.team/stops/H4oq224b", "https://tec.openplanner.team/stops/H4ty300b"], ["https://tec.openplanner.team/stops/N524ahb", "https://tec.openplanner.team/stops/N524alb"], ["https://tec.openplanner.team/stops/Lgrecpe1", "https://tec.openplanner.team/stops/Lgrfort1"], ["https://tec.openplanner.team/stops/Btgrdoc1", "https://tec.openplanner.team/stops/N584asa"], ["https://tec.openplanner.team/stops/Bsomjon1", "https://tec.openplanner.team/stops/Bsompri2"], ["https://tec.openplanner.team/stops/LNChock1", "https://tec.openplanner.team/stops/LRachen1"], ["https://tec.openplanner.team/stops/LSIroch2", "https://tec.openplanner.team/stops/LSIvieu1"], ["https://tec.openplanner.team/stops/LPbhaut1", "https://tec.openplanner.team/stops/LPbpeti2"], ["https://tec.openplanner.team/stops/LDLbeau2", "https://tec.openplanner.team/stops/LHYdogn2"], ["https://tec.openplanner.team/stops/X607acb", "https://tec.openplanner.team/stops/X607adb"], ["https://tec.openplanner.team/stops/X804bua", "https://tec.openplanner.team/stops/X828aab"], ["https://tec.openplanner.team/stops/LrUbahn2", "https://tec.openplanner.team/stops/LsFcafe2"], ["https://tec.openplanner.team/stops/Cctrobe1", "https://tec.openplanner.team/stops/Cctstro1"], ["https://tec.openplanner.team/stops/LRObruy3", "https://tec.openplanner.team/stops/LROmorf2"], ["https://tec.openplanner.team/stops/X657aaa", "https://tec.openplanner.team/stops/X744aaa"], ["https://tec.openplanner.team/stops/LWEfati2", "https://tec.openplanner.team/stops/LWEpaul1"], ["https://tec.openplanner.team/stops/N537aca", "https://tec.openplanner.team/stops/N562bib"], ["https://tec.openplanner.team/stops/H1sp353a", "https://tec.openplanner.team/stops/H1sp354a"], ["https://tec.openplanner.team/stops/X371aba", "https://tec.openplanner.team/stops/X371acb"], ["https://tec.openplanner.team/stops/Cauglac1", "https://tec.openplanner.team/stops/Cauushm2"], ["https://tec.openplanner.team/stops/N538aoa", "https://tec.openplanner.team/stops/N538apa"], ["https://tec.openplanner.team/stops/Ccychba1", "https://tec.openplanner.team/stops/Cvllerm2"], ["https://tec.openplanner.team/stops/LwAlont1", "https://tec.openplanner.team/stops/LwAlont4"], ["https://tec.openplanner.team/stops/X661aoa", "https://tec.openplanner.team/stops/X661aqb"], ["https://tec.openplanner.team/stops/LsCback2", "https://tec.openplanner.team/stops/LwPdorf1"], ["https://tec.openplanner.team/stops/X623aga", "https://tec.openplanner.team/stops/X623agb"], ["https://tec.openplanner.team/stops/X991akb", "https://tec.openplanner.team/stops/X993aea"], ["https://tec.openplanner.team/stops/Bmonbor2", "https://tec.openplanner.team/stops/Bmoncab2"], ["https://tec.openplanner.team/stops/Btslhau1", "https://tec.openplanner.team/stops/Bwspspa1"], ["https://tec.openplanner.team/stops/X601alb", "https://tec.openplanner.team/stops/X601csb"], ["https://tec.openplanner.team/stops/H4bf106b", "https://tec.openplanner.team/stops/H4by119a"], ["https://tec.openplanner.team/stops/LMAcite2", "https://tec.openplanner.team/stops/LMAhall2"], ["https://tec.openplanner.team/stops/H1ch101a", "https://tec.openplanner.team/stops/H1ch101b"], ["https://tec.openplanner.team/stops/Lpecime1", "https://tec.openplanner.team/stops/Lpecime2"], ["https://tec.openplanner.team/stops/X638alb", "https://tec.openplanner.team/stops/X644aea"], ["https://tec.openplanner.team/stops/N513bib", "https://tec.openplanner.team/stops/N516abb"], ["https://tec.openplanner.team/stops/LSXbecc1", "https://tec.openplanner.team/stops/LTHbelv1"], ["https://tec.openplanner.team/stops/LmRmuhl1", "https://tec.openplanner.team/stops/LmRmuhl2"], ["https://tec.openplanner.team/stops/LFPstro2", "https://tec.openplanner.team/stops/LRmrode1"], ["https://tec.openplanner.team/stops/H5pe132b", "https://tec.openplanner.team/stops/H5pe142b"], ["https://tec.openplanner.team/stops/LFemoul2", "https://tec.openplanner.team/stops/LRIcite2"], ["https://tec.openplanner.team/stops/Llgbene1", "https://tec.openplanner.team/stops/Llgcock2"], ["https://tec.openplanner.team/stops/Cstdona3", "https://tec.openplanner.team/stops/Cstdona4"], ["https://tec.openplanner.team/stops/X601bpb", "https://tec.openplanner.team/stops/X601bqa"], ["https://tec.openplanner.team/stops/X858aaa", "https://tec.openplanner.team/stops/X858afa"], ["https://tec.openplanner.team/stops/LhM07--1", "https://tec.openplanner.team/stops/LmCkirc1"], ["https://tec.openplanner.team/stops/X724adb", "https://tec.openplanner.team/stops/X724aea"], ["https://tec.openplanner.team/stops/N506bub", "https://tec.openplanner.team/stops/N506bva"], ["https://tec.openplanner.team/stops/LSkcoin1", "https://tec.openplanner.team/stops/LYechpl1"], ["https://tec.openplanner.team/stops/H1vt193b", "https://tec.openplanner.team/stops/H1vt195b"], ["https://tec.openplanner.team/stops/Bnivpar1", "https://tec.openplanner.team/stops/Bnivsse1"], ["https://tec.openplanner.team/stops/Bbgncnd2", "https://tec.openplanner.team/stops/Bbgnpla1"], ["https://tec.openplanner.team/stops/LFFchal1", "https://tec.openplanner.team/stops/LFFeg--1"], ["https://tec.openplanner.team/stops/Lvefabr2", "https://tec.openplanner.team/stops/Lvehodi4"], ["https://tec.openplanner.team/stops/X631ada", "https://tec.openplanner.team/stops/X631adb"], ["https://tec.openplanner.team/stops/LhMdorf1", "https://tec.openplanner.team/stops/LhRwere1"], ["https://tec.openplanner.team/stops/Bsdacab1", "https://tec.openplanner.team/stops/Bsdacab2"], ["https://tec.openplanner.team/stops/X601agb", "https://tec.openplanner.team/stops/X663ajb"], ["https://tec.openplanner.team/stops/H1mb137b", "https://tec.openplanner.team/stops/H1mb138b"], ["https://tec.openplanner.team/stops/H5at127a", "https://tec.openplanner.team/stops/H5at136a"], ["https://tec.openplanner.team/stops/N110ahb", "https://tec.openplanner.team/stops/N113aba"], ["https://tec.openplanner.team/stops/Bnivind2", "https://tec.openplanner.team/stops/Bnivtra2"], ["https://tec.openplanner.team/stops/H1ms257b", "https://tec.openplanner.team/stops/H1ms272b"], ["https://tec.openplanner.team/stops/Bllnrro2", "https://tec.openplanner.team/stops/Bmsgaxp1"], ["https://tec.openplanner.team/stops/LLbmalm2", "https://tec.openplanner.team/stops/LLbpt--2"], ["https://tec.openplanner.team/stops/Lpedeta2", "https://tec.openplanner.team/stops/LTAchpl2"], ["https://tec.openplanner.team/stops/N506ama", "https://tec.openplanner.team/stops/N558aaa"], ["https://tec.openplanner.team/stops/H1sb148a", "https://tec.openplanner.team/stops/H1sb150b"], ["https://tec.openplanner.team/stops/Bcrnsge1", "https://tec.openplanner.team/stops/Bcrnsge2"], ["https://tec.openplanner.team/stops/Lghfors1", "https://tec.openplanner.team/stops/Lghfors2"], ["https://tec.openplanner.team/stops/Ccstord2", "https://tec.openplanner.team/stops/Chhdubr1"], ["https://tec.openplanner.team/stops/H4bn101b", "https://tec.openplanner.team/stops/H4pi133b"], ["https://tec.openplanner.team/stops/Bnivall1", "https://tec.openplanner.team/stops/Bnivfra1"], ["https://tec.openplanner.team/stops/LmR50--1", "https://tec.openplanner.team/stops/LmR50--2"], ["https://tec.openplanner.team/stops/N117aja", "https://tec.openplanner.team/stops/N117ajb"], ["https://tec.openplanner.team/stops/LLOhest2", "https://tec.openplanner.team/stops/LRRcole1"], ["https://tec.openplanner.team/stops/X639ana", "https://tec.openplanner.team/stops/X640aaa"], ["https://tec.openplanner.team/stops/LLYcham2", "https://tec.openplanner.team/stops/LLYhoch2"], ["https://tec.openplanner.team/stops/Llgcime1", "https://tec.openplanner.team/stops/Lvtpepi1"], ["https://tec.openplanner.team/stops/LDOandr1", "https://tec.openplanner.team/stops/LDObran2"], ["https://tec.openplanner.team/stops/H1eu104b", "https://tec.openplanner.team/stops/H1sb151a"], ["https://tec.openplanner.team/stops/LBYwez-1", "https://tec.openplanner.team/stops/LBYwez-2"], ["https://tec.openplanner.team/stops/LbTdoma1", "https://tec.openplanner.team/stops/LmRh%C3%B6812"], ["https://tec.openplanner.team/stops/Lvescie1", "https://tec.openplanner.team/stops/Lvewall1"], ["https://tec.openplanner.team/stops/N120afb", "https://tec.openplanner.team/stops/N120ana"], ["https://tec.openplanner.team/stops/N545aba", "https://tec.openplanner.team/stops/N547ala"], ["https://tec.openplanner.team/stops/LJAchat2", "https://tec.openplanner.team/stops/LJAmari2"], ["https://tec.openplanner.team/stops/Bracgar1", "https://tec.openplanner.team/stops/Bracgar2"], ["https://tec.openplanner.team/stops/N553aca", "https://tec.openplanner.team/stops/N553acb"], ["https://tec.openplanner.team/stops/LCnvill1", "https://tec.openplanner.team/stops/LREsoug4"], ["https://tec.openplanner.team/stops/X826aea", "https://tec.openplanner.team/stops/X826aeb"], ["https://tec.openplanner.team/stops/Llghoch2", "https://tec.openplanner.team/stops/Llghoch4"], ["https://tec.openplanner.team/stops/Bgnpgar1", "https://tec.openplanner.team/stops/Bgnpjbe1"], ["https://tec.openplanner.team/stops/N535amb", "https://tec.openplanner.team/stops/N535ana"], ["https://tec.openplanner.team/stops/H1qv113b", "https://tec.openplanner.team/stops/H1qv115a"], ["https://tec.openplanner.team/stops/X998aza", "https://tec.openplanner.team/stops/X998azb"], ["https://tec.openplanner.team/stops/Bchgbel2", "https://tec.openplanner.team/stops/Bchgpap2"], ["https://tec.openplanner.team/stops/N260aaa", "https://tec.openplanner.team/stops/N260afb"], ["https://tec.openplanner.team/stops/LAMcime2", "https://tec.openplanner.team/stops/LAMviam2"], ["https://tec.openplanner.team/stops/LmHflor2", "https://tec.openplanner.team/stops/LrOwahl1"], ["https://tec.openplanner.team/stops/H2ma264a", "https://tec.openplanner.team/stops/H2sb231c"], ["https://tec.openplanner.team/stops/X661aub", "https://tec.openplanner.team/stops/X661ava"], ["https://tec.openplanner.team/stops/Blmlgar1", "https://tec.openplanner.team/stops/Bottcbp2"], ["https://tec.openplanner.team/stops/Cbfusin1", "https://tec.openplanner.team/stops/NC11akb"], ["https://tec.openplanner.team/stops/H1bd101b", "https://tec.openplanner.team/stops/H1bd102a"], ["https://tec.openplanner.team/stops/N141aib", "https://tec.openplanner.team/stops/N141ama"], ["https://tec.openplanner.team/stops/X804asa", "https://tec.openplanner.team/stops/X828aaa"], ["https://tec.openplanner.team/stops/N170acb", "https://tec.openplanner.team/stops/N170afa"], ["https://tec.openplanner.team/stops/N122abb", "https://tec.openplanner.team/stops/N122acb"], ["https://tec.openplanner.team/stops/LSGcolo1", "https://tec.openplanner.team/stops/LSGfoua1"], ["https://tec.openplanner.team/stops/N874ajb", "https://tec.openplanner.team/stops/N874aka"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N313aba"], ["https://tec.openplanner.team/stops/X661amb", "https://tec.openplanner.team/stops/X661arc"], ["https://tec.openplanner.team/stops/LSkb1351", "https://tec.openplanner.team/stops/LSkkeri1"], ["https://tec.openplanner.team/stops/H4ch114a", "https://tec.openplanner.team/stops/H4ch115b"], ["https://tec.openplanner.team/stops/Bmoucnd1", "https://tec.openplanner.team/stops/Bmoufil2"], ["https://tec.openplanner.team/stops/LFmceli2", "https://tec.openplanner.team/stops/LFmlens2"], ["https://tec.openplanner.team/stops/N232bcb", "https://tec.openplanner.team/stops/N232bdb"], ["https://tec.openplanner.team/stops/LBrbern1", "https://tec.openplanner.team/stops/LBrmeiz2"], ["https://tec.openplanner.team/stops/LHaxhor1", "https://tec.openplanner.team/stops/LVvbouv2"], ["https://tec.openplanner.team/stops/LVEmoul2", "https://tec.openplanner.team/stops/LYegeor2"], ["https://tec.openplanner.team/stops/Blemwob3", "https://tec.openplanner.team/stops/Blemwob4"], ["https://tec.openplanner.team/stops/H1at108c", "https://tec.openplanner.team/stops/H1eq115a"], ["https://tec.openplanner.team/stops/LBRtrag1", "https://tec.openplanner.team/stops/LLSba4-1"], ["https://tec.openplanner.team/stops/Cpcegli1", "https://tec.openplanner.team/stops/Cpcplac3"], ["https://tec.openplanner.team/stops/LAMdelh3", "https://tec.openplanner.team/stops/LAMusin1"], ["https://tec.openplanner.team/stops/N536afb", "https://tec.openplanner.team/stops/N536aga"], ["https://tec.openplanner.team/stops/X767aba", "https://tec.openplanner.team/stops/X769atb"], ["https://tec.openplanner.team/stops/Lchsaec1", "https://tec.openplanner.team/stops/Lchsaec2"], ["https://tec.openplanner.team/stops/Llghesb1", "https://tec.openplanner.team/stops/Llgjose1"], ["https://tec.openplanner.team/stops/Lccuner1", "https://tec.openplanner.team/stops/LRArami1"], ["https://tec.openplanner.team/stops/X601dga", "https://tec.openplanner.team/stops/X602ahb"], ["https://tec.openplanner.team/stops/N234aab", "https://tec.openplanner.team/stops/N252ada"], ["https://tec.openplanner.team/stops/LJOvill1", "https://tec.openplanner.team/stops/LXHbell2"], ["https://tec.openplanner.team/stops/X837aea", "https://tec.openplanner.team/stops/X837aeb"], ["https://tec.openplanner.team/stops/LFRgode1", "https://tec.openplanner.team/stops/LFRsp1-1"], ["https://tec.openplanner.team/stops/N533adb", "https://tec.openplanner.team/stops/N551aka"], ["https://tec.openplanner.team/stops/Caih1631", "https://tec.openplanner.team/stops/Cairous1"], ["https://tec.openplanner.team/stops/LmHbien2", "https://tec.openplanner.team/stops/LmHumge1"], ["https://tec.openplanner.team/stops/X719aaa", "https://tec.openplanner.team/stops/X789aga"], ["https://tec.openplanner.team/stops/Bbeardu2", "https://tec.openplanner.team/stops/Bbearwa1"], ["https://tec.openplanner.team/stops/N540aga", "https://tec.openplanner.team/stops/N540agb"], ["https://tec.openplanner.team/stops/H1te175b", "https://tec.openplanner.team/stops/H1te186b"], ["https://tec.openplanner.team/stops/LRRelec3", "https://tec.openplanner.team/stops/LRRmanc2"], ["https://tec.openplanner.team/stops/LAYchal2", "https://tec.openplanner.team/stops/LAYecol1"], ["https://tec.openplanner.team/stops/Clodesc1", "https://tec.openplanner.team/stops/CMdesc1"], ["https://tec.openplanner.team/stops/Brebhos1", "https://tec.openplanner.team/stops/Brebraf1"], ["https://tec.openplanner.team/stops/LXhvanh1", "https://tec.openplanner.team/stops/LXhvanh2"], ["https://tec.openplanner.team/stops/N506ala", "https://tec.openplanner.team/stops/N506alb"], ["https://tec.openplanner.team/stops/Bwavgar1", "https://tec.openplanner.team/stops/Bwavgar2"], ["https://tec.openplanner.team/stops/N201ana", "https://tec.openplanner.team/stops/N219adb"], ["https://tec.openplanner.team/stops/X999aia", "https://tec.openplanner.team/stops/X999aka"], ["https://tec.openplanner.team/stops/Cvlgrta1", "https://tec.openplanner.team/stops/Cvlgrta2"], ["https://tec.openplanner.team/stops/X626ada", "https://tec.openplanner.team/stops/X626aeb"], ["https://tec.openplanner.team/stops/Brxmbos1", "https://tec.openplanner.team/stops/Brxmcha2"], ["https://tec.openplanner.team/stops/Bovetsa1", "https://tec.openplanner.team/stops/Bovetsa2"], ["https://tec.openplanner.team/stops/H5ma185a", "https://tec.openplanner.team/stops/H5ma185b"], ["https://tec.openplanner.team/stops/Csemacq4", "https://tec.openplanner.team/stops/Csepote2"], ["https://tec.openplanner.team/stops/Lseespe1", "https://tec.openplanner.team/stops/Lseespe2"], ["https://tec.openplanner.team/stops/Lhrecol2", "https://tec.openplanner.team/stops/Lhrtunn2"], ["https://tec.openplanner.team/stops/N135aya", "https://tec.openplanner.team/stops/N135bea"], ["https://tec.openplanner.team/stops/H4ty334a", "https://tec.openplanner.team/stops/H4ty343b"], ["https://tec.openplanner.team/stops/LLEfagn1", "https://tec.openplanner.team/stops/LREprea1"], ["https://tec.openplanner.team/stops/Clbgare1", "https://tec.openplanner.team/stops/Clbptno1"], ["https://tec.openplanner.team/stops/Balsnie1", "https://tec.openplanner.team/stops/Balswsa1"], ["https://tec.openplanner.team/stops/LNCesne2", "https://tec.openplanner.team/stops/LNCvann1"], ["https://tec.openplanner.team/stops/Buccham1", "https://tec.openplanner.team/stops/Buccvoi3"], ["https://tec.openplanner.team/stops/LaMfuss1", "https://tec.openplanner.team/stops/LaMpost1"], ["https://tec.openplanner.team/stops/X908ada", "https://tec.openplanner.team/stops/X908afa"], ["https://tec.openplanner.team/stops/Bbrycar1", "https://tec.openplanner.team/stops/Bbryvil1"], ["https://tec.openplanner.team/stops/X614apa", "https://tec.openplanner.team/stops/X614aub"], ["https://tec.openplanner.team/stops/LVImons1", "https://tec.openplanner.team/stops/LVImons2"], ["https://tec.openplanner.team/stops/LBEchan1", "https://tec.openplanner.team/stops/LBEchan2"], ["https://tec.openplanner.team/stops/Lsn184-1", "https://tec.openplanner.team/stops/Lsnagne1"], ["https://tec.openplanner.team/stops/X882adb", "https://tec.openplanner.team/stops/X882alb"], ["https://tec.openplanner.team/stops/N505aha", "https://tec.openplanner.team/stops/N506aob"], ["https://tec.openplanner.team/stops/Brsrpch2", "https://tec.openplanner.team/stops/Brsrpri2"], ["https://tec.openplanner.team/stops/LSImewi2", "https://tec.openplanner.team/stops/LSIroch2"], ["https://tec.openplanner.team/stops/LGeborn1", "https://tec.openplanner.team/stops/LMsgara1"], ["https://tec.openplanner.team/stops/H4pl114a", "https://tec.openplanner.team/stops/H4pl117b"], ["https://tec.openplanner.team/stops/H1to153a", "https://tec.openplanner.team/stops/H1to153b"], ["https://tec.openplanner.team/stops/X607aaa", "https://tec.openplanner.team/stops/X627aaa"], ["https://tec.openplanner.team/stops/X663aba", "https://tec.openplanner.team/stops/X663abb"], ["https://tec.openplanner.team/stops/N137afa", "https://tec.openplanner.team/stops/N137afb"], ["https://tec.openplanner.team/stops/LSkyern1", "https://tec.openplanner.team/stops/LYegeor3"], ["https://tec.openplanner.team/stops/N544aab", "https://tec.openplanner.team/stops/N550afa"], ["https://tec.openplanner.team/stops/Llgbaya4", "https://tec.openplanner.team/stops/Llgpbay1"], ["https://tec.openplanner.team/stops/Lbobuil1", "https://tec.openplanner.team/stops/Lbotilf1"], ["https://tec.openplanner.team/stops/Ljuetie3", "https://tec.openplanner.team/stops/Ljujaur1"], ["https://tec.openplanner.team/stops/X999afb", "https://tec.openplanner.team/stops/X999afc"], ["https://tec.openplanner.team/stops/LSpunio1", "https://tec.openplanner.team/stops/LSpunio2"], ["https://tec.openplanner.team/stops/H2bh109a", "https://tec.openplanner.team/stops/H2lc146a"], ["https://tec.openplanner.team/stops/LMamuse3", "https://tec.openplanner.team/stops/LMazonn3"], ["https://tec.openplanner.team/stops/Bbch4br5", "https://tec.openplanner.team/stops/Bbchrra3"], ["https://tec.openplanner.team/stops/Bsmgmar2", "https://tec.openplanner.team/stops/Bsmgmou2"], ["https://tec.openplanner.team/stops/LhGkirc4", "https://tec.openplanner.team/stops/LhGlang1"], ["https://tec.openplanner.team/stops/Chpceri1", "https://tec.openplanner.team/stops/Chpplac2"], ["https://tec.openplanner.team/stops/N501chf", "https://tec.openplanner.team/stops/N501jla"], ["https://tec.openplanner.team/stops/N337aea", "https://tec.openplanner.team/stops/N385aec"], ["https://tec.openplanner.team/stops/N201aca", "https://tec.openplanner.team/stops/N201ava"], ["https://tec.openplanner.team/stops/H4ty295b", "https://tec.openplanner.team/stops/H4ty359b"], ["https://tec.openplanner.team/stops/H1sb144a", "https://tec.openplanner.team/stops/H1sb144b"], ["https://tec.openplanner.team/stops/Bhmmbog1", "https://tec.openplanner.team/stops/Btlgast2"], ["https://tec.openplanner.team/stops/Cgzcver1", "https://tec.openplanner.team/stops/Cmyecur2"], ["https://tec.openplanner.team/stops/X713alb", "https://tec.openplanner.team/stops/X714aab"], ["https://tec.openplanner.team/stops/Ccisolv2", "https://tec.openplanner.team/stops/Cmtpblo1"], ["https://tec.openplanner.team/stops/X602acb", "https://tec.openplanner.team/stops/X623abb"], ["https://tec.openplanner.team/stops/Bglache1", "https://tec.openplanner.team/stops/Bmrswag1"], ["https://tec.openplanner.team/stops/NB33ala", "https://tec.openplanner.team/stops/NR38afb"], ["https://tec.openplanner.team/stops/N501fby", "https://tec.openplanner.team/stops/N501fna"], ["https://tec.openplanner.team/stops/X917aaa", "https://tec.openplanner.team/stops/X919aea"], ["https://tec.openplanner.team/stops/H1wa135a", "https://tec.openplanner.team/stops/H1wa153a"], ["https://tec.openplanner.team/stops/N385aad", "https://tec.openplanner.team/stops/N385abb"], ["https://tec.openplanner.team/stops/X769aaa", "https://tec.openplanner.team/stops/X769ata"], ["https://tec.openplanner.team/stops/NL75aaa", "https://tec.openplanner.team/stops/NL75aba"], ["https://tec.openplanner.team/stops/Clrpast1", "https://tec.openplanner.team/stops/Clrplac1"], ["https://tec.openplanner.team/stops/LHAbont1", "https://tec.openplanner.team/stops/LHAvall2"], ["https://tec.openplanner.team/stops/Bjodeco1", "https://tec.openplanner.team/stops/Bjodeco3"], ["https://tec.openplanner.team/stops/N145aja", "https://tec.openplanner.team/stops/N149aka"], ["https://tec.openplanner.team/stops/LAicarr1", "https://tec.openplanner.team/stops/LAigrim2"], ["https://tec.openplanner.team/stops/Ladneuv1", "https://tec.openplanner.team/stops/LHCcoul1"], ["https://tec.openplanner.team/stops/Cbfpauc1", "https://tec.openplanner.team/stops/Cbfusin2"], ["https://tec.openplanner.team/stops/Lprtill1", "https://tec.openplanner.team/stops/Lprtill2"], ["https://tec.openplanner.team/stops/Bcbqa361", "https://tec.openplanner.team/stops/Bcbqtub2"], ["https://tec.openplanner.team/stops/LSRbouh1", "https://tec.openplanner.team/stops/LSReg--1"], ["https://tec.openplanner.team/stops/LmDgeme2", "https://tec.openplanner.team/stops/LmYkreu1"], ["https://tec.openplanner.team/stops/LSZptwa1", "https://tec.openplanner.team/stops/LSZstoc1"], ["https://tec.openplanner.team/stops/X801chb", "https://tec.openplanner.team/stops/X801cja"], ["https://tec.openplanner.team/stops/X897ala", "https://tec.openplanner.team/stops/X897alc"], ["https://tec.openplanner.team/stops/H1qg138c", "https://tec.openplanner.team/stops/H1qy134a"], ["https://tec.openplanner.team/stops/LAYthir1", "https://tec.openplanner.team/stops/LHrrard2"], ["https://tec.openplanner.team/stops/Ccychap1", "https://tec.openplanner.team/stops/Crbrgar1"], ["https://tec.openplanner.team/stops/LCvmonu1", "https://tec.openplanner.team/stops/LSMgare1"], ["https://tec.openplanner.team/stops/LBapepi4", "https://tec.openplanner.team/stops/LBapepi6"], ["https://tec.openplanner.team/stops/H2hg157a", "https://tec.openplanner.team/stops/H2hg157c"], ["https://tec.openplanner.team/stops/N509axa", "https://tec.openplanner.team/stops/N509bga"], ["https://tec.openplanner.team/stops/X721aqa", "https://tec.openplanner.team/stops/X721asb"], ["https://tec.openplanner.team/stops/X948akb", "https://tec.openplanner.team/stops/X948bab"], ["https://tec.openplanner.team/stops/X871aba", "https://tec.openplanner.team/stops/X871abb"], ["https://tec.openplanner.team/stops/Bbst4br1", "https://tec.openplanner.team/stops/Cbtbras2"], ["https://tec.openplanner.team/stops/N538azb", "https://tec.openplanner.team/stops/N539awa"], ["https://tec.openplanner.team/stops/Ljubruy*", "https://tec.openplanner.team/stops/Ljugode1"], ["https://tec.openplanner.team/stops/Lsefive1", "https://tec.openplanner.team/stops/Lsefive2"], ["https://tec.openplanner.team/stops/LHDchar3", "https://tec.openplanner.team/stops/LMOpiss1"], ["https://tec.openplanner.team/stops/N559abb", "https://tec.openplanner.team/stops/N559aca"], ["https://tec.openplanner.team/stops/H4co133b", "https://tec.openplanner.team/stops/H4mn100a"], ["https://tec.openplanner.team/stops/LWevand1", "https://tec.openplanner.team/stops/LWevand2"], ["https://tec.openplanner.team/stops/Bperros2", "https://tec.openplanner.team/stops/Bperwil2"], ["https://tec.openplanner.team/stops/X721aja", "https://tec.openplanner.team/stops/X721aka"], ["https://tec.openplanner.team/stops/H1fy118a", "https://tec.openplanner.team/stops/H1fy119a"], ["https://tec.openplanner.team/stops/LmNlieb2", "https://tec.openplanner.team/stops/LmNmerl2"], ["https://tec.openplanner.team/stops/X782ana", "https://tec.openplanner.team/stops/X783adb"], ["https://tec.openplanner.team/stops/Blimvcg2", "https://tec.openplanner.team/stops/Bottcli2"], ["https://tec.openplanner.team/stops/X912adb", "https://tec.openplanner.team/stops/X912afb"], ["https://tec.openplanner.team/stops/Ccoconf1", "https://tec.openplanner.team/stops/Cpcchau"], ["https://tec.openplanner.team/stops/H4we136a", "https://tec.openplanner.team/stops/H4we139a"], ["https://tec.openplanner.team/stops/H2hp261b", "https://tec.openplanner.team/stops/H2mo146b"], ["https://tec.openplanner.team/stops/X917aab", "https://tec.openplanner.team/stops/X919akd"], ["https://tec.openplanner.team/stops/N201aqa", "https://tec.openplanner.team/stops/N201awb"], ["https://tec.openplanner.team/stops/H1qu100c", "https://tec.openplanner.team/stops/H1qu110a"], ["https://tec.openplanner.team/stops/LOthiro1", "https://tec.openplanner.team/stops/LOtthie1"], ["https://tec.openplanner.team/stops/Braccen2", "https://tec.openplanner.team/stops/Braclin2"], ["https://tec.openplanner.team/stops/H4be103b", "https://tec.openplanner.team/stops/H4be109b"], ["https://tec.openplanner.team/stops/X669abc", "https://tec.openplanner.team/stops/X669afa"], ["https://tec.openplanner.team/stops/H4hg157a", "https://tec.openplanner.team/stops/H4hg158b"], ["https://tec.openplanner.team/stops/X727aha", "https://tec.openplanner.team/stops/X747aaa"], ["https://tec.openplanner.team/stops/X901awb", "https://tec.openplanner.team/stops/X901aza"], ["https://tec.openplanner.team/stops/Bottbou2", "https://tec.openplanner.team/stops/Bottcbp1"], ["https://tec.openplanner.team/stops/X717aba", "https://tec.openplanner.team/stops/X717acb"], ["https://tec.openplanner.team/stops/X618aba", "https://tec.openplanner.team/stops/X625adb"], ["https://tec.openplanner.team/stops/Bbchcbl1", "https://tec.openplanner.team/stops/Bbchm382"], ["https://tec.openplanner.team/stops/Bwavfbe1", "https://tec.openplanner.team/stops/Bwavpao1"], ["https://tec.openplanner.team/stops/X759afa", "https://tec.openplanner.team/stops/X759afb"], ["https://tec.openplanner.team/stops/Cgoetun2", "https://tec.openplanner.team/stops/Cgoetun3"], ["https://tec.openplanner.team/stops/Llgdelb1", "https://tec.openplanner.team/stops/Llggrav2"], ["https://tec.openplanner.team/stops/N424aab", "https://tec.openplanner.team/stops/NH01ata"], ["https://tec.openplanner.team/stops/X774aad", "https://tec.openplanner.team/stops/X774aba"], ["https://tec.openplanner.team/stops/LMAbijo1", "https://tec.openplanner.team/stops/LMAbijo2"], ["https://tec.openplanner.team/stops/Lveclin2", "https://tec.openplanner.team/stops/Lvehopi5"], ["https://tec.openplanner.team/stops/Cctsncb3", "https://tec.openplanner.team/stops/Ccu6bra3"], ["https://tec.openplanner.team/stops/Bbrlmez2", "https://tec.openplanner.team/stops/Bhalkrk1"], ["https://tec.openplanner.team/stops/LSTchal1", "https://tec.openplanner.team/stops/LSTcomm1"], ["https://tec.openplanner.team/stops/LGeborn2", "https://tec.openplanner.team/stops/LGeduc-1"], ["https://tec.openplanner.team/stops/Bitrcha2", "https://tec.openplanner.team/stops/Bitrsar2"], ["https://tec.openplanner.team/stops/LGe4bra2", "https://tec.openplanner.team/stops/LGepeck2"], ["https://tec.openplanner.team/stops/LEN183-1", "https://tec.openplanner.team/stops/LSktinc2"], ["https://tec.openplanner.team/stops/H1bd100b", "https://tec.openplanner.team/stops/H1le120a"], ["https://tec.openplanner.team/stops/Lhrpwan2", "https://tec.openplanner.team/stops/Lhrtilm2"], ["https://tec.openplanner.team/stops/Cflecep1", "https://tec.openplanner.team/stops/Cflhano1"], ["https://tec.openplanner.team/stops/LWaruth2", "https://tec.openplanner.team/stops/LwYkirc2"], ["https://tec.openplanner.team/stops/LaSkape1", "https://tec.openplanner.team/stops/LhSkape2"], ["https://tec.openplanner.team/stops/Baudhde2", "https://tec.openplanner.team/stops/Baudulb2"], ["https://tec.openplanner.team/stops/H1hm175b", "https://tec.openplanner.team/stops/H1hm177b"], ["https://tec.openplanner.team/stops/X743afa", "https://tec.openplanner.team/stops/X743agb"], ["https://tec.openplanner.team/stops/LROgeuz2", "https://tec.openplanner.team/stops/LWacime3"], ["https://tec.openplanner.team/stops/N343ada", "https://tec.openplanner.team/stops/X343ahb"], ["https://tec.openplanner.team/stops/LSOvoie2", "https://tec.openplanner.team/stops/LSOvoie4"], ["https://tec.openplanner.team/stops/LWAmois1", "https://tec.openplanner.team/stops/LWAmois2"], ["https://tec.openplanner.team/stops/Bllncbr2", "https://tec.openplanner.team/stops/Bmsgbur1"], ["https://tec.openplanner.team/stops/X789adb", "https://tec.openplanner.team/stops/X789aja"], ["https://tec.openplanner.team/stops/LRIcent1", "https://tec.openplanner.team/stops/LRIhous1"], ["https://tec.openplanner.team/stops/H4ty273b", "https://tec.openplanner.team/stops/H4ty333a"], ["https://tec.openplanner.team/stops/N117aob", "https://tec.openplanner.team/stops/N117bcb"], ["https://tec.openplanner.team/stops/Llgbarb2", "https://tec.openplanner.team/stops/Llgpoli2"], ["https://tec.openplanner.team/stops/Bmsgpfo1", "https://tec.openplanner.team/stops/Bmsgstj2"], ["https://tec.openplanner.team/stops/LmHabzw1", "https://tec.openplanner.team/stops/LmHvenn1"], ["https://tec.openplanner.team/stops/N551ajb", "https://tec.openplanner.team/stops/N551aka"], ["https://tec.openplanner.team/stops/Cfaheni1", "https://tec.openplanner.team/stops/Cfastan2"], ["https://tec.openplanner.team/stops/LTRlonh1", "https://tec.openplanner.team/stops/LTRthie1"], ["https://tec.openplanner.team/stops/LAMcoll2", "https://tec.openplanner.team/stops/LAMviam1"], ["https://tec.openplanner.team/stops/X659ana", "https://tec.openplanner.team/stops/X659aua"], ["https://tec.openplanner.team/stops/LCOcrom2", "https://tec.openplanner.team/stops/LGorysa1"], ["https://tec.openplanner.team/stops/Lreec--1", "https://tec.openplanner.team/stops/Lretill1"], ["https://tec.openplanner.team/stops/LHbcent1", "https://tec.openplanner.team/stops/LJAherb4"], ["https://tec.openplanner.team/stops/Bvircen1", "https://tec.openplanner.team/stops/Bvirvol2"], ["https://tec.openplanner.team/stops/LSkcoin1", "https://tec.openplanner.team/stops/LSkmarq2"], ["https://tec.openplanner.team/stops/N501isa", "https://tec.openplanner.team/stops/N501iva"], ["https://tec.openplanner.team/stops/LTPgare*", "https://tec.openplanner.team/stops/LTPnoup1"], ["https://tec.openplanner.team/stops/Cmlbeau1", "https://tec.openplanner.team/stops/Cmlbeau2"], ["https://tec.openplanner.team/stops/Bbsicas1", "https://tec.openplanner.team/stops/Bbsihau2"], ["https://tec.openplanner.team/stops/H4ne141b", "https://tec.openplanner.team/stops/H4te260b"], ["https://tec.openplanner.team/stops/X601aza", "https://tec.openplanner.team/stops/X601bka"], ["https://tec.openplanner.team/stops/Lmicoop1", "https://tec.openplanner.team/stops/Lmieg--1"], ["https://tec.openplanner.team/stops/LHEoutr2", "https://tec.openplanner.team/stops/LHEpriv2"], ["https://tec.openplanner.team/stops/X879aga", "https://tec.openplanner.team/stops/X879agb"], ["https://tec.openplanner.team/stops/LOucuve2", "https://tec.openplanner.team/stops/LOumaro2"], ["https://tec.openplanner.team/stops/LMoelno1", "https://tec.openplanner.team/stops/LMovich2"], ["https://tec.openplanner.team/stops/LWOcour1", "https://tec.openplanner.team/stops/LWOmart2"], ["https://tec.openplanner.team/stops/N508adb", "https://tec.openplanner.team/stops/N508aea"], ["https://tec.openplanner.team/stops/X982aad", "https://tec.openplanner.team/stops/X982abb"], ["https://tec.openplanner.team/stops/H1ch142a", "https://tec.openplanner.team/stops/H1ch143a"], ["https://tec.openplanner.team/stops/X672aka", "https://tec.openplanner.team/stops/X672akb"], ["https://tec.openplanner.team/stops/X605agb", "https://tec.openplanner.team/stops/X618aoa"], ["https://tec.openplanner.team/stops/LDOastr2", "https://tec.openplanner.team/stops/LDOviad1"], ["https://tec.openplanner.team/stops/Cflchel5", "https://tec.openplanner.team/stops/Cflchel6"], ["https://tec.openplanner.team/stops/LWEchat2", "https://tec.openplanner.team/stops/LWEcite2"], ["https://tec.openplanner.team/stops/N101aeb", "https://tec.openplanner.team/stops/N101anb"], ["https://tec.openplanner.team/stops/H4wr173b", "https://tec.openplanner.team/stops/H5qu148a"], ["https://tec.openplanner.team/stops/LFmecli3", "https://tec.openplanner.team/stops/LFmlens2"], ["https://tec.openplanner.team/stops/H1ba111b", "https://tec.openplanner.team/stops/H1ba112b"], ["https://tec.openplanner.team/stops/Btubbsc1", "https://tec.openplanner.team/stops/Btubbsc2"], ["https://tec.openplanner.team/stops/Bwlhppg1", "https://tec.openplanner.team/stops/Bwlhppg2"], ["https://tec.openplanner.team/stops/LMHoha-1", "https://tec.openplanner.team/stops/LMHtill2"], ["https://tec.openplanner.team/stops/X663ara", "https://tec.openplanner.team/stops/X663asa"], ["https://tec.openplanner.team/stops/H1sy148a", "https://tec.openplanner.team/stops/H1sy148c"], ["https://tec.openplanner.team/stops/H4mo164a", "https://tec.openplanner.team/stops/H4tg162b"], ["https://tec.openplanner.team/stops/H4he101a", "https://tec.openplanner.team/stops/H4he106a"], ["https://tec.openplanner.team/stops/X650ada", "https://tec.openplanner.team/stops/X650aea"], ["https://tec.openplanner.team/stops/H1pw121b", "https://tec.openplanner.team/stops/H1wa162b"], ["https://tec.openplanner.team/stops/LBIaepo2", "https://tec.openplanner.team/stops/LBIairp1"], ["https://tec.openplanner.team/stops/LDOeg--1", "https://tec.openplanner.team/stops/LDOgare1"], ["https://tec.openplanner.team/stops/X618aja", "https://tec.openplanner.team/stops/X618aka"], ["https://tec.openplanner.team/stops/Bbuzcom2", "https://tec.openplanner.team/stops/Creshau1"], ["https://tec.openplanner.team/stops/H4be102b", "https://tec.openplanner.team/stops/H4be104a"], ["https://tec.openplanner.team/stops/LeLbegl1", "https://tec.openplanner.team/stops/LeLbutg1"], ["https://tec.openplanner.team/stops/LLeec--1", "https://tec.openplanner.team/stops/X547adb"], ["https://tec.openplanner.team/stops/H4te253a", "https://tec.openplanner.team/stops/H4te260b"], ["https://tec.openplanner.team/stops/NL76aqb", "https://tec.openplanner.team/stops/NL80avb"], ["https://tec.openplanner.team/stops/X809aeb", "https://tec.openplanner.team/stops/X850abb"], ["https://tec.openplanner.team/stops/N123abb", "https://tec.openplanner.team/stops/N150aca"], ["https://tec.openplanner.team/stops/H4by117a", "https://tec.openplanner.team/stops/H4by117b"], ["https://tec.openplanner.team/stops/N511alb", "https://tec.openplanner.team/stops/N511ama"], ["https://tec.openplanner.team/stops/H2mo133a", "https://tec.openplanner.team/stops/H2mo133b"], ["https://tec.openplanner.team/stops/H1hw118b", "https://tec.openplanner.team/stops/H1hw121b"], ["https://tec.openplanner.team/stops/X721amb", "https://tec.openplanner.team/stops/X721atb"], ["https://tec.openplanner.team/stops/H2pe155a", "https://tec.openplanner.team/stops/H2sv214a"], ["https://tec.openplanner.team/stops/Cnachat1", "https://tec.openplanner.team/stops/NC14aqa"], ["https://tec.openplanner.team/stops/N563ana", "https://tec.openplanner.team/stops/N585alb"], ["https://tec.openplanner.team/stops/LJA65h-1", "https://tec.openplanner.team/stops/LJAhanq1"], ["https://tec.openplanner.team/stops/LFdeg--2", "https://tec.openplanner.team/stops/LLMfond1"], ["https://tec.openplanner.team/stops/N308aha", "https://tec.openplanner.team/stops/N308ahb"], ["https://tec.openplanner.team/stops/N103abb", "https://tec.openplanner.team/stops/N103acc"], ["https://tec.openplanner.team/stops/N351atc", "https://tec.openplanner.team/stops/N351atd"], ["https://tec.openplanner.team/stops/Bottvtc1", "https://tec.openplanner.team/stops/Bottvtc2"], ["https://tec.openplanner.team/stops/X398abb", "https://tec.openplanner.team/stops/X398aca"], ["https://tec.openplanner.team/stops/N534auc", "https://tec.openplanner.team/stops/N534bxb"], ["https://tec.openplanner.team/stops/LPRpeti1", "https://tec.openplanner.team/stops/Lrofont*"], ["https://tec.openplanner.team/stops/Ccugrtr1", "https://tec.openplanner.team/stops/Ccutail1"], ["https://tec.openplanner.team/stops/X663ada", "https://tec.openplanner.team/stops/X663afb"], ["https://tec.openplanner.team/stops/X982bda", "https://tec.openplanner.team/stops/X982cba"], ["https://tec.openplanner.team/stops/LPurech1", "https://tec.openplanner.team/stops/LPutins2"], ["https://tec.openplanner.team/stops/H4mo152a", "https://tec.openplanner.team/stops/H4mo166a"], ["https://tec.openplanner.team/stops/Lhrdelv1", "https://tec.openplanner.team/stops/Lhrpont2"], ["https://tec.openplanner.team/stops/N110aba", "https://tec.openplanner.team/stops/N110abb"], ["https://tec.openplanner.team/stops/LFlabba2", "https://tec.openplanner.team/stops/LFlabba4"], ["https://tec.openplanner.team/stops/LBpecco2", "https://tec.openplanner.team/stops/LGEhosp2"], ["https://tec.openplanner.team/stops/H2mm140a", "https://tec.openplanner.team/stops/H2mm144b"], ["https://tec.openplanner.team/stops/X741aca", "https://tec.openplanner.team/stops/X741aea"], ["https://tec.openplanner.team/stops/X948adb", "https://tec.openplanner.team/stops/X948aeb"], ["https://tec.openplanner.team/stops/LCPaube2", "https://tec.openplanner.team/stops/LCPbell1"], ["https://tec.openplanner.team/stops/Bfelequ2", "https://tec.openplanner.team/stops/Bfelpmo1"], ["https://tec.openplanner.team/stops/Cmqbasv2", "https://tec.openplanner.team/stops/H4lg100a"], ["https://tec.openplanner.team/stops/LRGgend2", "https://tec.openplanner.team/stops/LRGunio3"], ["https://tec.openplanner.team/stops/N501gfb", "https://tec.openplanner.team/stops/N501hdb"], ["https://tec.openplanner.team/stops/Cmlceri1", "https://tec.openplanner.team/stops/Cmlfeba1"], ["https://tec.openplanner.team/stops/H1wg124b", "https://tec.openplanner.team/stops/H1wg126b"], ["https://tec.openplanner.team/stops/Bdoncar1", "https://tec.openplanner.team/stops/Bdoncen1"], ["https://tec.openplanner.team/stops/Loubiez1", "https://tec.openplanner.team/stops/Louhauf2"], ["https://tec.openplanner.team/stops/H1gh147b", "https://tec.openplanner.team/stops/H1gh168b"], ["https://tec.openplanner.team/stops/Bmrspel2", "https://tec.openplanner.team/stops/Bwatric2"], ["https://tec.openplanner.team/stops/H2ch103c", "https://tec.openplanner.team/stops/H2ch105c"], ["https://tec.openplanner.team/stops/X750aab", "https://tec.openplanner.team/stops/X750aia"], ["https://tec.openplanner.team/stops/LARarge1", "https://tec.openplanner.team/stops/LARarge2"], ["https://tec.openplanner.team/stops/LkEherg1", "https://tec.openplanner.team/stops/LkEzoll2"], ["https://tec.openplanner.team/stops/Blhumga2", "https://tec.openplanner.team/stops/Blhumpo4"], ["https://tec.openplanner.team/stops/H4pi130a", "https://tec.openplanner.team/stops/H4pi136a"], ["https://tec.openplanner.team/stops/H1cu121a", "https://tec.openplanner.team/stops/H1cu121b"], ["https://tec.openplanner.team/stops/H1vs145a", "https://tec.openplanner.team/stops/H1vs146b"], ["https://tec.openplanner.team/stops/LMIbois1", "https://tec.openplanner.team/stops/LSOfech1"], ["https://tec.openplanner.team/stops/N367ada", "https://tec.openplanner.team/stops/N367adb"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X745ada"], ["https://tec.openplanner.team/stops/LnIschw1", "https://tec.openplanner.team/stops/LnIschw2"], ["https://tec.openplanner.team/stops/LAWgill1", "https://tec.openplanner.team/stops/LAWgill2"], ["https://tec.openplanner.team/stops/LOTferm1", "https://tec.openplanner.team/stops/LWieg--*"], ["https://tec.openplanner.team/stops/Cjugill3", "https://tec.openplanner.team/stops/Cjupui02"], ["https://tec.openplanner.team/stops/LrAdrie5", "https://tec.openplanner.team/stops/LrAneud1"], ["https://tec.openplanner.team/stops/LmNstaa1", "https://tec.openplanner.team/stops/LmNsv872"], ["https://tec.openplanner.team/stops/H2sv212a", "https://tec.openplanner.team/stops/H2sv212b"], ["https://tec.openplanner.team/stops/LCF1spa1", "https://tec.openplanner.team/stops/LCF2spa2"], ["https://tec.openplanner.team/stops/Bgnvpap1", "https://tec.openplanner.team/stops/Bgnvpos1"], ["https://tec.openplanner.team/stops/Lmobols1", "https://tec.openplanner.team/stops/Lmopech1"], ["https://tec.openplanner.team/stops/Ccoforr2", "https://tec.openplanner.team/stops/Crocpai1"], ["https://tec.openplanner.team/stops/LPbec--2", "https://tec.openplanner.team/stops/LSIcour1"], ["https://tec.openplanner.team/stops/X877aba", "https://tec.openplanner.team/stops/X880aeb"], ["https://tec.openplanner.team/stops/Chpfoli4", "https://tec.openplanner.team/stops/Chpfoli5"], ["https://tec.openplanner.team/stops/Bdvmc031", "https://tec.openplanner.team/stops/Bdvmc431"], ["https://tec.openplanner.team/stops/Bopplon2", "https://tec.openplanner.team/stops/Btslpic5"], ["https://tec.openplanner.team/stops/H4mb202b", "https://tec.openplanner.team/stops/H4mb204b"], ["https://tec.openplanner.team/stops/Bjdsjso1", "https://tec.openplanner.team/stops/Bjdsjso2"], ["https://tec.openplanner.team/stops/N569aba", "https://tec.openplanner.team/stops/N569abb"], ["https://tec.openplanner.team/stops/Ccobour2", "https://tec.openplanner.team/stops/Crorogn2"], ["https://tec.openplanner.team/stops/NH21afa", "https://tec.openplanner.team/stops/NH21aha"], ["https://tec.openplanner.team/stops/Bjaufca1", "https://tec.openplanner.team/stops/Bjauwar2"], ["https://tec.openplanner.team/stops/X616aha", "https://tec.openplanner.team/stops/X616ahb"], ["https://tec.openplanner.team/stops/LATcham*", "https://tec.openplanner.team/stops/LVLpane1"], ["https://tec.openplanner.team/stops/N501ihz", "https://tec.openplanner.team/stops/N501ipa"], ["https://tec.openplanner.team/stops/NL77adb", "https://tec.openplanner.team/stops/NL77afb"], ["https://tec.openplanner.team/stops/X823acb", "https://tec.openplanner.team/stops/X823afa"], ["https://tec.openplanner.team/stops/N254aaa", "https://tec.openplanner.team/stops/N570aab"], ["https://tec.openplanner.team/stops/H2hg153b", "https://tec.openplanner.team/stops/H2hg155c"], ["https://tec.openplanner.team/stops/X638aqb", "https://tec.openplanner.team/stops/X652aaa"], ["https://tec.openplanner.team/stops/LFyec--1", "https://tec.openplanner.team/stops/LFyec--2"], ["https://tec.openplanner.team/stops/X790aab", "https://tec.openplanner.team/stops/X790abb"], ["https://tec.openplanner.team/stops/X769afa", "https://tec.openplanner.team/stops/X769aga"], ["https://tec.openplanner.team/stops/X629aaa", "https://tec.openplanner.team/stops/X629aca"], ["https://tec.openplanner.team/stops/Ccogrha2", "https://tec.openplanner.team/stops/Ccojaur1"], ["https://tec.openplanner.team/stops/LgAdorf1", "https://tec.openplanner.team/stops/LgHdorf1"], ["https://tec.openplanner.team/stops/N353afd", "https://tec.openplanner.team/stops/N357adb"], ["https://tec.openplanner.team/stops/Buccpor2", "https://tec.openplanner.team/stops/Buccvbe2"], ["https://tec.openplanner.team/stops/H4eh101b", "https://tec.openplanner.team/stops/H4eh104b"], ["https://tec.openplanner.team/stops/X949adb", "https://tec.openplanner.team/stops/X949afa"], ["https://tec.openplanner.team/stops/LON02--1", "https://tec.openplanner.team/stops/LWastei1"], ["https://tec.openplanner.team/stops/H1wa162a", "https://tec.openplanner.team/stops/H1wg124b"], ["https://tec.openplanner.team/stops/N201aha", "https://tec.openplanner.team/stops/N201ahb"], ["https://tec.openplanner.team/stops/N540aeb", "https://tec.openplanner.team/stops/N578aca"], ["https://tec.openplanner.team/stops/H5fl102a", "https://tec.openplanner.team/stops/H5fl103a"], ["https://tec.openplanner.team/stops/H4mo165b", "https://tec.openplanner.team/stops/H4mo175b"], ["https://tec.openplanner.team/stops/H5el102a", "https://tec.openplanner.team/stops/H5el117b"], ["https://tec.openplanner.team/stops/N103aha", "https://tec.openplanner.team/stops/N103aib"], ["https://tec.openplanner.team/stops/N244aob", "https://tec.openplanner.team/stops/N244arb"], ["https://tec.openplanner.team/stops/Llglonh2", "https://tec.openplanner.team/stops/LlgPTAV2"], ["https://tec.openplanner.team/stops/N360aeb", "https://tec.openplanner.team/stops/X892aia"], ["https://tec.openplanner.team/stops/Bmarmru1", "https://tec.openplanner.team/stops/Btilmar1"], ["https://tec.openplanner.team/stops/Ccunvus2", "https://tec.openplanner.team/stops/Ccutrav1"], ["https://tec.openplanner.team/stops/X993aba", "https://tec.openplanner.team/stops/X993aha"], ["https://tec.openplanner.team/stops/N551aca", "https://tec.openplanner.team/stops/N551adb"], ["https://tec.openplanner.team/stops/Ctmmana2", "https://tec.openplanner.team/stops/Cvvchea1"], ["https://tec.openplanner.team/stops/LVPgrot3", "https://tec.openplanner.team/stops/LVPgrot4"], ["https://tec.openplanner.team/stops/Cragill2", "https://tec.openplanner.team/stops/Cramadi1"], ["https://tec.openplanner.team/stops/Bhalgja1", "https://tec.openplanner.team/stops/Bhalgja2"], ["https://tec.openplanner.team/stops/H3lr112a", "https://tec.openplanner.team/stops/H3lr112b"], ["https://tec.openplanner.team/stops/Cmbcime3", "https://tec.openplanner.team/stops/Cmcegli2"], ["https://tec.openplanner.team/stops/Llgcamp2", "https://tec.openplanner.team/stops/Llgelis2"], ["https://tec.openplanner.team/stops/H1ob331a", "https://tec.openplanner.team/stops/H1ob335b"], ["https://tec.openplanner.team/stops/X661aaa", "https://tec.openplanner.team/stops/X661aab"], ["https://tec.openplanner.team/stops/Bbeaap51", "https://tec.openplanner.team/stops/Bbearwa1"], ["https://tec.openplanner.team/stops/Bitrcro3", "https://tec.openplanner.team/stops/Bvirfpo2"], ["https://tec.openplanner.team/stops/LLrisa-*", "https://tec.openplanner.team/stops/LQafond2"], ["https://tec.openplanner.team/stops/LrEkirc2", "https://tec.openplanner.team/stops/LrEviel1"], ["https://tec.openplanner.team/stops/Llgcamp1", "https://tec.openplanner.team/stops/Llgcamp2"], ["https://tec.openplanner.team/stops/Cfmchap1", "https://tec.openplanner.team/stops/Cfojoli2"], ["https://tec.openplanner.team/stops/N254aea", "https://tec.openplanner.team/stops/N254aeb"], ["https://tec.openplanner.team/stops/Lbrhvl-*", "https://tec.openplanner.team/stops/Lgrdefr2"], ["https://tec.openplanner.team/stops/Bcercsa1", "https://tec.openplanner.team/stops/Bcsegal1"], ["https://tec.openplanner.team/stops/Cforpet2", "https://tec.openplanner.team/stops/CMpetr2"], ["https://tec.openplanner.team/stops/H4ep127b", "https://tec.openplanner.team/stops/H4la197a"], ["https://tec.openplanner.team/stops/N260aea", "https://tec.openplanner.team/stops/N260aeb"], ["https://tec.openplanner.team/stops/H4ka392a", "https://tec.openplanner.team/stops/H4ka392b"], ["https://tec.openplanner.team/stops/H1bd102a", "https://tec.openplanner.team/stops/H1bd102b"], ["https://tec.openplanner.team/stops/N135axa", "https://tec.openplanner.team/stops/N135bga"], ["https://tec.openplanner.team/stops/Lanpast2", "https://tec.openplanner.team/stops/Lanpont1"], ["https://tec.openplanner.team/stops/N426aeb", "https://tec.openplanner.team/stops/N426afb"], ["https://tec.openplanner.team/stops/LOTsav-2", "https://tec.openplanner.team/stops/LVleg--1"], ["https://tec.openplanner.team/stops/X911ala", "https://tec.openplanner.team/stops/X911alb"], ["https://tec.openplanner.team/stops/X982bga", "https://tec.openplanner.team/stops/X982bkb"], ["https://tec.openplanner.team/stops/X631aaa", "https://tec.openplanner.team/stops/X631acb"], ["https://tec.openplanner.team/stops/Bhvltol1", "https://tec.openplanner.team/stops/Bmsgrco2"], ["https://tec.openplanner.team/stops/Cmaegal1", "https://tec.openplanner.team/stops/Cmastni2"], ["https://tec.openplanner.team/stops/Lghgoll2", "https://tec.openplanner.team/stops/Lghprea3"], ["https://tec.openplanner.team/stops/X657ahb", "https://tec.openplanner.team/stops/X657anb"], ["https://tec.openplanner.team/stops/Llgvalu1", "https://tec.openplanner.team/stops/Llgvalu2"], ["https://tec.openplanner.team/stops/Cfrcoop2", "https://tec.openplanner.team/stops/Cfrcoop3"], ["https://tec.openplanner.team/stops/Lchsart2", "https://tec.openplanner.team/stops/Lvisere1"], ["https://tec.openplanner.team/stops/Ccicloc1", "https://tec.openplanner.team/stops/Clvimtr1"], ["https://tec.openplanner.team/stops/LEHpech1", "https://tec.openplanner.team/stops/LEHpech2"], ["https://tec.openplanner.team/stops/LOMcabi2", "https://tec.openplanner.team/stops/LOMeg--2"], ["https://tec.openplanner.team/stops/N261aca", "https://tec.openplanner.team/stops/N261acb"], ["https://tec.openplanner.team/stops/H4ga148d", "https://tec.openplanner.team/stops/H4ga171b"], ["https://tec.openplanner.team/stops/LeUkehr1", "https://tec.openplanner.team/stops/LeUkehr2"], ["https://tec.openplanner.team/stops/H4ka191a", "https://tec.openplanner.team/stops/H4ka191b"], ["https://tec.openplanner.team/stops/LRGgrov1", "https://tec.openplanner.team/stops/LRGgrov2"], ["https://tec.openplanner.team/stops/N261aba", "https://tec.openplanner.team/stops/N261abb"], ["https://tec.openplanner.team/stops/Crbgare1", "https://tec.openplanner.team/stops/Crbgare2"], ["https://tec.openplanner.team/stops/LFMkrut2", "https://tec.openplanner.team/stops/LFMveur1"], ["https://tec.openplanner.team/stops/LTAchpl1", "https://tec.openplanner.team/stops/LTHcime2"], ["https://tec.openplanner.team/stops/H1ms272b", "https://tec.openplanner.team/stops/H1ms279b"], ["https://tec.openplanner.team/stops/X823ada", "https://tec.openplanner.team/stops/X823aea"], ["https://tec.openplanner.team/stops/Bpthfus2", "https://tec.openplanner.team/stops/Bpthrsp2"], ["https://tec.openplanner.team/stops/X615awb", "https://tec.openplanner.team/stops/X615bga"], ["https://tec.openplanner.team/stops/X820aea", "https://tec.openplanner.team/stops/X820aga"], ["https://tec.openplanner.team/stops/Cnaplha3", "https://tec.openplanner.team/stops/Cnaplha4"], ["https://tec.openplanner.team/stops/Cmlclos1", "https://tec.openplanner.team/stops/Cmmn1172"], ["https://tec.openplanner.team/stops/LSPcomm2", "https://tec.openplanner.team/stops/LSPpomp2"], ["https://tec.openplanner.team/stops/LPRmc--2", "https://tec.openplanner.team/stops/LPRpeti2"], ["https://tec.openplanner.team/stops/N534asb", "https://tec.openplanner.team/stops/N534avb"], ["https://tec.openplanner.team/stops/X982bua", "https://tec.openplanner.team/stops/X982bub"], ["https://tec.openplanner.team/stops/H1do114a", "https://tec.openplanner.team/stops/H1do114b"], ["https://tec.openplanner.team/stops/X601acb", "https://tec.openplanner.team/stops/X601btb"], ["https://tec.openplanner.team/stops/H2mo129b", "https://tec.openplanner.team/stops/H2mo135b"], ["https://tec.openplanner.team/stops/H1bu136b", "https://tec.openplanner.team/stops/H1bu137a"], ["https://tec.openplanner.team/stops/X224aca", "https://tec.openplanner.team/stops/X224acb"], ["https://tec.openplanner.team/stops/Bllnein3", "https://tec.openplanner.team/stops/Bllnein4"], ["https://tec.openplanner.team/stops/X840aba", "https://tec.openplanner.team/stops/X840aca"], ["https://tec.openplanner.team/stops/Bsdapir1", "https://tec.openplanner.team/stops/Csdrofr1"], ["https://tec.openplanner.team/stops/Bnivbne1", "https://tec.openplanner.team/stops/Bptrlux1"], ["https://tec.openplanner.team/stops/Clbecol1", "https://tec.openplanner.team/stops/H1lo120a"], ["https://tec.openplanner.team/stops/H1ca104b", "https://tec.openplanner.team/stops/H1ca109a"], ["https://tec.openplanner.team/stops/H4an108b", "https://tec.openplanner.team/stops/H4an112b"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/Cssgare1"], ["https://tec.openplanner.team/stops/Bottgar6", "https://tec.openplanner.team/stops/Bottgar7"], ["https://tec.openplanner.team/stops/X736aaa", "https://tec.openplanner.team/stops/X952adb"], ["https://tec.openplanner.team/stops/Lflec--2", "https://tec.openplanner.team/stops/Lflprev1"], ["https://tec.openplanner.team/stops/H1sy138b", "https://tec.openplanner.team/stops/H1sy145a"], ["https://tec.openplanner.team/stops/Bbiemse2", "https://tec.openplanner.team/stops/Bgzdfpo1"], ["https://tec.openplanner.team/stops/X818aha", "https://tec.openplanner.team/stops/X818aib"], ["https://tec.openplanner.team/stops/LdUespe4", "https://tec.openplanner.team/stops/LoDulf-1"], ["https://tec.openplanner.team/stops/X793abb", "https://tec.openplanner.team/stops/X793aga"], ["https://tec.openplanner.team/stops/Cjxpris1", "https://tec.openplanner.team/stops/Cml5ave1"], ["https://tec.openplanner.team/stops/LRteg--*", "https://tec.openplanner.team/stops/LSebott1"], ["https://tec.openplanner.team/stops/H1au111a", "https://tec.openplanner.team/stops/H1au114a"], ["https://tec.openplanner.team/stops/Cctvand2", "https://tec.openplanner.team/stops/Cctvict1"], ["https://tec.openplanner.team/stops/LFUfonc2", "https://tec.openplanner.team/stops/LWDcime2"], ["https://tec.openplanner.team/stops/Bbiehev2", "https://tec.openplanner.team/stops/Bbiepre1"], ["https://tec.openplanner.team/stops/NL78ada", "https://tec.openplanner.team/stops/NL78aeb"], ["https://tec.openplanner.team/stops/LVllieg1", "https://tec.openplanner.team/stops/LVltige1"], ["https://tec.openplanner.team/stops/X879aeb", "https://tec.openplanner.team/stops/X879apa"], ["https://tec.openplanner.team/stops/NL81aeb", "https://tec.openplanner.team/stops/NL81aha"], ["https://tec.openplanner.team/stops/Lanadmi2", "https://tec.openplanner.team/stops/Lanstat2"], ["https://tec.openplanner.team/stops/H2pe155b", "https://tec.openplanner.team/stops/H2pe158b"], ["https://tec.openplanner.team/stops/Bzlufbo2", "https://tec.openplanner.team/stops/Bzluqga2"], ["https://tec.openplanner.team/stops/Cfrempe2", "https://tec.openplanner.team/stops/Cfrmon3"], ["https://tec.openplanner.team/stops/X902atb", "https://tec.openplanner.team/stops/X902bba"], ["https://tec.openplanner.team/stops/Bclgeco2", "https://tec.openplanner.team/stops/Bclgegl1"], ["https://tec.openplanner.team/stops/LFRspa-2", "https://tec.openplanner.team/stops/LSxeg--1"], ["https://tec.openplanner.team/stops/Crccano1", "https://tec.openplanner.team/stops/Crccano4"], ["https://tec.openplanner.team/stops/H4bn101b", "https://tec.openplanner.team/stops/H4ws158b"], ["https://tec.openplanner.team/stops/LmEdorf1", "https://tec.openplanner.team/stops/LmEdorf2"], ["https://tec.openplanner.team/stops/X601cgb", "https://tec.openplanner.team/stops/X601dia"], ["https://tec.openplanner.team/stops/X781aga", "https://tec.openplanner.team/stops/X781agb"], ["https://tec.openplanner.team/stops/X790aca", "https://tec.openplanner.team/stops/X790adb"], ["https://tec.openplanner.team/stops/LFAscie1", "https://tec.openplanner.team/stops/LFAscie2"], ["https://tec.openplanner.team/stops/N232bqa", "https://tec.openplanner.team/stops/N261aba"], ["https://tec.openplanner.team/stops/X773acb", "https://tec.openplanner.team/stops/X773aea"], ["https://tec.openplanner.team/stops/X542aaa", "https://tec.openplanner.team/stops/X542abb"], ["https://tec.openplanner.team/stops/Blingar1", "https://tec.openplanner.team/stops/Bracgar1"], ["https://tec.openplanner.team/stops/LMOm48-1", "https://tec.openplanner.team/stops/LMOmome1"], ["https://tec.openplanner.team/stops/H4ar104b", "https://tec.openplanner.team/stops/H4pl136a"], ["https://tec.openplanner.team/stops/Baegpon3", "https://tec.openplanner.team/stops/NR38aeb"], ["https://tec.openplanner.team/stops/H1cu114b", "https://tec.openplanner.team/stops/H1cu132b"], ["https://tec.openplanner.team/stops/X923akb", "https://tec.openplanner.team/stops/X941ahb"], ["https://tec.openplanner.team/stops/Cgocalv3", "https://tec.openplanner.team/stops/Cgocalv6"], ["https://tec.openplanner.team/stops/H4ga147b", "https://tec.openplanner.team/stops/H4ga167a"], ["https://tec.openplanner.team/stops/X661ara", "https://tec.openplanner.team/stops/X661asb"], ["https://tec.openplanner.team/stops/LNCpi331", "https://tec.openplanner.team/stops/LRRbonr1"], ["https://tec.openplanner.team/stops/X818aia", "https://tec.openplanner.team/stops/X822agb"], ["https://tec.openplanner.team/stops/N235aba", "https://tec.openplanner.team/stops/N235aha"], ["https://tec.openplanner.team/stops/LRmkerk2", "https://tec.openplanner.team/stops/LTEziho2"], ["https://tec.openplanner.team/stops/Cpceclu1", "https://tec.openplanner.team/stops/Cpclibe4"], ["https://tec.openplanner.team/stops/Llgbois1", "https://tec.openplanner.team/stops/LlgPRVo2"], ["https://tec.openplanner.team/stops/LaMgeme*", "https://tec.openplanner.team/stops/LaMpost1"], ["https://tec.openplanner.team/stops/LbTkran2", "https://tec.openplanner.team/stops/LbTkreu4"], ["https://tec.openplanner.team/stops/X937aga", "https://tec.openplanner.team/stops/X937aka"], ["https://tec.openplanner.team/stops/N230aab", "https://tec.openplanner.team/stops/N230aia"], ["https://tec.openplanner.team/stops/H1ho131a", "https://tec.openplanner.team/stops/H1ho136a"], ["https://tec.openplanner.team/stops/H4es111b", "https://tec.openplanner.team/stops/H4ln128b"], ["https://tec.openplanner.team/stops/N302aab", "https://tec.openplanner.team/stops/N302abb"], ["https://tec.openplanner.team/stops/N120afa", "https://tec.openplanner.team/stops/N120afb"], ["https://tec.openplanner.team/stops/X666aha", "https://tec.openplanner.team/stops/X666ahb"], ["https://tec.openplanner.team/stops/X718aea", "https://tec.openplanner.team/stops/X718aia"], ["https://tec.openplanner.team/stops/H4by116b", "https://tec.openplanner.team/stops/H4by117a"], ["https://tec.openplanner.team/stops/X779aab", "https://tec.openplanner.team/stops/X779adb"], ["https://tec.openplanner.team/stops/H1vb141a", "https://tec.openplanner.team/stops/H1vb141b"], ["https://tec.openplanner.team/stops/Cchsud01", "https://tec.openplanner.team/stops/Cchsud10"], ["https://tec.openplanner.team/stops/Bbstasa1", "https://tec.openplanner.team/stops/Bbstcha2"], ["https://tec.openplanner.team/stops/X748aaa", "https://tec.openplanner.team/stops/X767aja"], ["https://tec.openplanner.team/stops/N514ama", "https://tec.openplanner.team/stops/N514aob"], ["https://tec.openplanner.team/stops/N534abb", "https://tec.openplanner.team/stops/N543agb"], ["https://tec.openplanner.team/stops/N521aib", "https://tec.openplanner.team/stops/N521apb"], ["https://tec.openplanner.team/stops/N231aga", "https://tec.openplanner.team/stops/N291abb"], ["https://tec.openplanner.team/stops/LBNauto1", "https://tec.openplanner.team/stops/LWElanc2"], ["https://tec.openplanner.team/stops/Llgavro1", "https://tec.openplanner.team/stops/Llgavro2"], ["https://tec.openplanner.team/stops/LSBdelc2", "https://tec.openplanner.team/stops/LSGcolo1"], ["https://tec.openplanner.team/stops/Ccutill1", "https://tec.openplanner.team/stops/Ccutill3"], ["https://tec.openplanner.team/stops/Llggram1", "https://tec.openplanner.team/stops/Llggram3"], ["https://tec.openplanner.team/stops/N122ahb", "https://tec.openplanner.team/stops/N122aib"], ["https://tec.openplanner.team/stops/Brsreco2", "https://tec.openplanner.team/stops/Brsregl3"], ["https://tec.openplanner.team/stops/LBXhacb2", "https://tec.openplanner.team/stops/LMEgare2"], ["https://tec.openplanner.team/stops/LMHcant2", "https://tec.openplanner.team/stops/NL73aeb"], ["https://tec.openplanner.team/stops/Lrcvinc2", "https://tec.openplanner.team/stops/Lvoeg--2"], ["https://tec.openplanner.team/stops/NL74aab", "https://tec.openplanner.team/stops/NL74abb"], ["https://tec.openplanner.team/stops/LkTkabi2", "https://tec.openplanner.team/stops/LkTtal-2"], ["https://tec.openplanner.team/stops/LkRrauw2", "https://tec.openplanner.team/stops/LwR129-2"], ["https://tec.openplanner.team/stops/X733afa", "https://tec.openplanner.team/stops/X734aqb"], ["https://tec.openplanner.team/stops/Llgbobu1", "https://tec.openplanner.team/stops/Lmocail1"], ["https://tec.openplanner.team/stops/H2mg143a", "https://tec.openplanner.team/stops/H2mg144b"], ["https://tec.openplanner.team/stops/LmDkoel1", "https://tec.openplanner.team/stops/LmDwei32"], ["https://tec.openplanner.team/stops/LHMaube1", "https://tec.openplanner.team/stops/LHMchev2"], ["https://tec.openplanner.team/stops/Bwatgib1", "https://tec.openplanner.team/stops/Bwatnrs2"], ["https://tec.openplanner.team/stops/Bwaab122", "https://tec.openplanner.team/stops/LWHmath2"], ["https://tec.openplanner.team/stops/H4ca124a", "https://tec.openplanner.team/stops/H4wi163a"], ["https://tec.openplanner.team/stops/X802ajb", "https://tec.openplanner.team/stops/X836aha"], ["https://tec.openplanner.team/stops/Lceegli*", "https://tec.openplanner.team/stops/Lcemc--2"], ["https://tec.openplanner.team/stops/N581aab", "https://tec.openplanner.team/stops/NL74ahc"], ["https://tec.openplanner.team/stops/Laleg--1", "https://tec.openplanner.team/stops/Lalhomb1"], ["https://tec.openplanner.team/stops/H2mg136a", "https://tec.openplanner.team/stops/H2mg141a"], ["https://tec.openplanner.team/stops/X897aod", "https://tec.openplanner.team/stops/X897aqb"], ["https://tec.openplanner.team/stops/H1ls105b", "https://tec.openplanner.team/stops/H1mc128a"], ["https://tec.openplanner.team/stops/Chpatel1", "https://tec.openplanner.team/stops/Chpfoli4"], ["https://tec.openplanner.team/stops/Cbzfrom2", "https://tec.openplanner.team/stops/Cobmven2"], ["https://tec.openplanner.team/stops/LNEmoul1", "https://tec.openplanner.team/stops/LNEtonv1"], ["https://tec.openplanner.team/stops/H4es113a", "https://tec.openplanner.team/stops/H4es117a"], ["https://tec.openplanner.team/stops/Bnivga11", "https://tec.openplanner.team/stops/Bnivpar1"], ["https://tec.openplanner.team/stops/Ljuchap3", "https://tec.openplanner.team/stops/Ljuprev3"], ["https://tec.openplanner.team/stops/H4bh101a", "https://tec.openplanner.team/stops/H4bh102a"], ["https://tec.openplanner.team/stops/Cluberl2", "https://tec.openplanner.team/stops/Cvvcime2"], ["https://tec.openplanner.team/stops/Lhufays1", "https://tec.openplanner.team/stops/LPohoeg1"], ["https://tec.openplanner.team/stops/H4av102c", "https://tec.openplanner.team/stops/H4ef165c"], ["https://tec.openplanner.team/stops/X882afb", "https://tec.openplanner.team/stops/X882amd"], ["https://tec.openplanner.team/stops/H4tu171a", "https://tec.openplanner.team/stops/H4tu171b"], ["https://tec.openplanner.team/stops/NC11afa", "https://tec.openplanner.team/stops/NC11aga"], ["https://tec.openplanner.team/stops/Bbchsac1", "https://tec.openplanner.team/stops/Bhtirin1"], ["https://tec.openplanner.team/stops/Bbbksth2", "https://tec.openplanner.team/stops/Bhmmjco1"], ["https://tec.openplanner.team/stops/Llghenr1", "https://tec.openplanner.team/stops/Llgmaus1"], ["https://tec.openplanner.team/stops/N118aaa", "https://tec.openplanner.team/stops/N118aba"], ["https://tec.openplanner.team/stops/LSPplat1", "https://tec.openplanner.team/stops/LSPsous1"], ["https://tec.openplanner.team/stops/X901asa", "https://tec.openplanner.team/stops/X901bcb"], ["https://tec.openplanner.team/stops/Bwavbar1", "https://tec.openplanner.team/stops/Bwavcin1"], ["https://tec.openplanner.team/stops/N331adb", "https://tec.openplanner.team/stops/N331afc"], ["https://tec.openplanner.team/stops/Bcrnrpc2", "https://tec.openplanner.team/stops/Bcrntru1"], ["https://tec.openplanner.team/stops/LTHbelv2", "https://tec.openplanner.team/stops/LTHwaux1"], ["https://tec.openplanner.team/stops/LBNlong2", "https://tec.openplanner.team/stops/LBNruns1"], ["https://tec.openplanner.team/stops/Cgzha621", "https://tec.openplanner.team/stops/Cgzha622"], ["https://tec.openplanner.team/stops/H1mj128a", "https://tec.openplanner.team/stops/H1mj132a"], ["https://tec.openplanner.team/stops/H1te186a", "https://tec.openplanner.team/stops/H1vt192b"], ["https://tec.openplanner.team/stops/X346afa", "https://tec.openplanner.team/stops/X346afb"], ["https://tec.openplanner.team/stops/N534bua", "https://tec.openplanner.team/stops/N534bub"], ["https://tec.openplanner.team/stops/Cpl4bra1", "https://tec.openplanner.team/stops/Cpl4bra2"], ["https://tec.openplanner.team/stops/N544agb", "https://tec.openplanner.team/stops/N545aab"], ["https://tec.openplanner.team/stops/LVnetan2", "https://tec.openplanner.team/stops/LVnflox2"], ["https://tec.openplanner.team/stops/H1qu105a", "https://tec.openplanner.team/stops/H1wl125a"], ["https://tec.openplanner.team/stops/Cchabat1", "https://tec.openplanner.team/stops/Clojone1"], ["https://tec.openplanner.team/stops/NC14acb", "https://tec.openplanner.team/stops/NC44adb"], ["https://tec.openplanner.team/stops/H4ga162a", "https://tec.openplanner.team/stops/H4ga165b"], ["https://tec.openplanner.team/stops/Lalexpa1", "https://tec.openplanner.team/stops/Lalverr2"], ["https://tec.openplanner.team/stops/Ljemeca1", "https://tec.openplanner.team/stops/Lsetroq2"], ["https://tec.openplanner.team/stops/Bezeksj2", "https://tec.openplanner.team/stops/Bezeksj3"], ["https://tec.openplanner.team/stops/N573aba", "https://tec.openplanner.team/stops/N573abb"], ["https://tec.openplanner.team/stops/X601cga", "https://tec.openplanner.team/stops/X601cha"], ["https://tec.openplanner.team/stops/H1le128c", "https://tec.openplanner.team/stops/H1le128d"], ["https://tec.openplanner.team/stops/LTHmaka1", "https://tec.openplanner.team/stops/LTHmaka2"], ["https://tec.openplanner.team/stops/X903aga", "https://tec.openplanner.team/stops/X903agb"], ["https://tec.openplanner.team/stops/Lbrboul2", "https://tec.openplanner.team/stops/Lbrfoid4"], ["https://tec.openplanner.team/stops/Ctachst1", "https://tec.openplanner.team/stops/Ctachst2"], ["https://tec.openplanner.team/stops/N553aja", "https://tec.openplanner.team/stops/N553ajb"], ["https://tec.openplanner.team/stops/LGLspor2", "https://tec.openplanner.team/stops/LWidepo2"], ["https://tec.openplanner.team/stops/H1gy113a", "https://tec.openplanner.team/stops/H1og136a"], ["https://tec.openplanner.team/stops/LCUmora1", "https://tec.openplanner.team/stops/LCUmora2"], ["https://tec.openplanner.team/stops/LBEhaye1", "https://tec.openplanner.team/stops/LLNcime1"], ["https://tec.openplanner.team/stops/Llgbell1", "https://tec.openplanner.team/stops/Llgpont2"], ["https://tec.openplanner.team/stops/H1bl105a", "https://tec.openplanner.team/stops/H1do119a"], ["https://tec.openplanner.team/stops/N501cqa", "https://tec.openplanner.team/stops/N501cqb"], ["https://tec.openplanner.team/stops/N501ney", "https://tec.openplanner.team/stops/N501nez"], ["https://tec.openplanner.team/stops/X608apa", "https://tec.openplanner.team/stops/X608apb"], ["https://tec.openplanner.team/stops/Cmmplac1", "https://tec.openplanner.team/stops/Cmmplac4"], ["https://tec.openplanner.team/stops/H1pd141b", "https://tec.openplanner.team/stops/H1pd143a"], ["https://tec.openplanner.team/stops/Ljekess1", "https://tec.openplanner.team/stops/Ljelexh1"], ["https://tec.openplanner.team/stops/LmDkape1", "https://tec.openplanner.team/stops/LmDkape2"], ["https://tec.openplanner.team/stops/Cbwegl1", "https://tec.openplanner.team/stops/Cmgarsi1"], ["https://tec.openplanner.team/stops/LBSkann2", "https://tec.openplanner.team/stops/LBStong2"], ["https://tec.openplanner.team/stops/LCIcent2", "https://tec.openplanner.team/stops/LLtwanz1"], ["https://tec.openplanner.team/stops/Cmlfstt1", "https://tec.openplanner.team/stops/Cmlrous1"], ["https://tec.openplanner.team/stops/X769ajb", "https://tec.openplanner.team/stops/X769aka"], ["https://tec.openplanner.team/stops/LGOcana1", "https://tec.openplanner.team/stops/LGOcana2"], ["https://tec.openplanner.team/stops/Bgoestu2", "https://tec.openplanner.team/stops/Bhoealt1"], ["https://tec.openplanner.team/stops/H4ka176b", "https://tec.openplanner.team/stops/H4ka181b"], ["https://tec.openplanner.team/stops/H4wi170a", "https://tec.openplanner.team/stops/H5pe134b"], ["https://tec.openplanner.team/stops/Cmazone1", "https://tec.openplanner.team/stops/Cmazsnc1"], ["https://tec.openplanner.team/stops/X811apa", "https://tec.openplanner.team/stops/X811apb"], ["https://tec.openplanner.team/stops/H2le151a", "https://tec.openplanner.team/stops/H2le152a"], ["https://tec.openplanner.team/stops/Bhensei2", "https://tec.openplanner.team/stops/Bvirrbo1"], ["https://tec.openplanner.team/stops/Bbchndb2", "https://tec.openplanner.team/stops/Bitreco2"], ["https://tec.openplanner.team/stops/LVEh16-1", "https://tec.openplanner.team/stops/LVEmohi2"], ["https://tec.openplanner.team/stops/N321adb", "https://tec.openplanner.team/stops/N321aea"], ["https://tec.openplanner.team/stops/N520aia", "https://tec.openplanner.team/stops/N520aja"], ["https://tec.openplanner.team/stops/LWNwavr1", "https://tec.openplanner.team/stops/LWNwavr2"], ["https://tec.openplanner.team/stops/H2ll178a", "https://tec.openplanner.team/stops/H2ll258b"], ["https://tec.openplanner.team/stops/Lagcolo2", "https://tec.openplanner.team/stops/LTIp%C3%A9pi2"], ["https://tec.openplanner.team/stops/LrEborn2", "https://tec.openplanner.team/stops/LrEkais3"], ["https://tec.openplanner.team/stops/Bolgeva2", "https://tec.openplanner.team/stops/Bolgrga2"], ["https://tec.openplanner.team/stops/N551ada", "https://tec.openplanner.team/stops/N551aqb"], ["https://tec.openplanner.team/stops/H1ms263b", "https://tec.openplanner.team/stops/H1ms266b"], ["https://tec.openplanner.team/stops/H4ar107b", "https://tec.openplanner.team/stops/H4ar177a"], ["https://tec.openplanner.team/stops/LAnvien2", "https://tec.openplanner.team/stops/LMtcent2"], ["https://tec.openplanner.team/stops/H2lh128b", "https://tec.openplanner.team/stops/H2mm140b"], ["https://tec.openplanner.team/stops/N521ada", "https://tec.openplanner.team/stops/N521adb"], ["https://tec.openplanner.team/stops/N243acb", "https://tec.openplanner.team/stops/N252adb"], ["https://tec.openplanner.team/stops/LBahaut2", "https://tec.openplanner.team/stops/LBavive2"], ["https://tec.openplanner.team/stops/X601bba", "https://tec.openplanner.team/stops/X601bqa"], ["https://tec.openplanner.team/stops/N302abb", "https://tec.openplanner.team/stops/N302acb"], ["https://tec.openplanner.team/stops/N576abb", "https://tec.openplanner.team/stops/N576aga"], ["https://tec.openplanner.team/stops/N511aoa", "https://tec.openplanner.team/stops/N511arb"], ["https://tec.openplanner.team/stops/N232aab", "https://tec.openplanner.team/stops/N232aga"], ["https://tec.openplanner.team/stops/Louaout2", "https://tec.openplanner.team/stops/Loufleu1"], ["https://tec.openplanner.team/stops/Lougros1", "https://tec.openplanner.team/stops/Lstscie2"], ["https://tec.openplanner.team/stops/X824aja", "https://tec.openplanner.team/stops/X826aab"], ["https://tec.openplanner.team/stops/N553abc", "https://tec.openplanner.team/stops/N553aib"], ["https://tec.openplanner.team/stops/H1mm125c", "https://tec.openplanner.team/stops/H1mm127b"], ["https://tec.openplanner.team/stops/H1ms301a", "https://tec.openplanner.team/stops/H1ms923a"], ["https://tec.openplanner.team/stops/X639apa", "https://tec.openplanner.team/stops/X639arb"], ["https://tec.openplanner.team/stops/LOCloup1", "https://tec.openplanner.team/stops/X261aaa"], ["https://tec.openplanner.team/stops/N225ahb", "https://tec.openplanner.team/stops/N226acb"], ["https://tec.openplanner.team/stops/H4co133a", "https://tec.openplanner.team/stops/H4co133b"], ["https://tec.openplanner.team/stops/X820agc", "https://tec.openplanner.team/stops/X820agd"], ["https://tec.openplanner.team/stops/Clfmonu2", "https://tec.openplanner.team/stops/Ctilobb1"], ["https://tec.openplanner.team/stops/X663aea", "https://tec.openplanner.team/stops/X663afa"], ["https://tec.openplanner.team/stops/LNEgaul4", "https://tec.openplanner.team/stops/LNEolne2"], ["https://tec.openplanner.team/stops/H2sb231a", "https://tec.openplanner.team/stops/H2sb266a"], ["https://tec.openplanner.team/stops/Cstcent1", "https://tec.openplanner.team/stops/Cstdona3"], ["https://tec.openplanner.team/stops/X604alb", "https://tec.openplanner.team/stops/X604amb"], ["https://tec.openplanner.team/stops/H1ba113b", "https://tec.openplanner.team/stops/H1gh143a"], ["https://tec.openplanner.team/stops/H2bh111b", "https://tec.openplanner.team/stops/H2bh120a"], ["https://tec.openplanner.team/stops/N229agb", "https://tec.openplanner.team/stops/N291aba"], ["https://tec.openplanner.team/stops/X637aba", "https://tec.openplanner.team/stops/X637aqa"], ["https://tec.openplanner.team/stops/H4ru242a", "https://tec.openplanner.team/stops/H4ru242b"], ["https://tec.openplanner.team/stops/N337aga", "https://tec.openplanner.team/stops/N337ahb"], ["https://tec.openplanner.team/stops/X720ada", "https://tec.openplanner.team/stops/X720adb"], ["https://tec.openplanner.team/stops/NL77aga", "https://tec.openplanner.team/stops/NL78ajb"], ["https://tec.openplanner.team/stops/Cptrebe2", "https://tec.openplanner.team/stops/H2ca105b"], ["https://tec.openplanner.team/stops/Bwaakap1", "https://tec.openplanner.team/stops/Bwaakap2"], ["https://tec.openplanner.team/stops/NC44afc", "https://tec.openplanner.team/stops/NC44aha"], ["https://tec.openplanner.team/stops/Lhuderu1", "https://tec.openplanner.team/stops/Lhueg--1"], ["https://tec.openplanner.team/stops/X661awa", "https://tec.openplanner.team/stops/X661aya"], ["https://tec.openplanner.team/stops/LMtcent2", "https://tec.openplanner.team/stops/LMttrou2"], ["https://tec.openplanner.team/stops/N513axb", "https://tec.openplanner.team/stops/N520aea"], ["https://tec.openplanner.team/stops/X788agb", "https://tec.openplanner.team/stops/X789ahb"], ["https://tec.openplanner.team/stops/Lvecase1", "https://tec.openplanner.team/stops/Lvegest2"], ["https://tec.openplanner.team/stops/Cgrbert1", "https://tec.openplanner.team/stops/Cnaplan1"], ["https://tec.openplanner.team/stops/N558amc", "https://tec.openplanner.team/stops/N559aba"], ["https://tec.openplanner.team/stops/X840aea", "https://tec.openplanner.team/stops/X840afb"], ["https://tec.openplanner.team/stops/N505ahb", "https://tec.openplanner.team/stops/N505anb"], ["https://tec.openplanner.team/stops/Lmochan1", "https://tec.openplanner.team/stops/Lmomine1"], ["https://tec.openplanner.team/stops/LHueg--1", "https://tec.openplanner.team/stops/NL73abb"], ["https://tec.openplanner.team/stops/LrTpost1", "https://tec.openplanner.team/stops/LrTpost2"], ["https://tec.openplanner.team/stops/X938adb", "https://tec.openplanner.team/stops/X939aha"], ["https://tec.openplanner.team/stops/Bbgelre2", "https://tec.openplanner.team/stops/Bwavbpi1"], ["https://tec.openplanner.team/stops/LHUtrin1", "https://tec.openplanner.team/stops/LSecomm1"], ["https://tec.openplanner.team/stops/H2hg149b", "https://tec.openplanner.team/stops/H2hg269b"], ["https://tec.openplanner.team/stops/Cflchel5", "https://tec.openplanner.team/stops/NC12aaa"], ["https://tec.openplanner.team/stops/Bnivari1", "https://tec.openplanner.team/stops/Bnivphm1"], ["https://tec.openplanner.team/stops/N145ahb", "https://tec.openplanner.team/stops/N145aia"], ["https://tec.openplanner.team/stops/H4av102b", "https://tec.openplanner.team/stops/H4av102c"], ["https://tec.openplanner.team/stops/H1ht132a", "https://tec.openplanner.team/stops/H1ht132b"], ["https://tec.openplanner.team/stops/H5el105b", "https://tec.openplanner.team/stops/H5el114b"], ["https://tec.openplanner.team/stops/X802abb", "https://tec.openplanner.team/stops/X804aaa"], ["https://tec.openplanner.team/stops/H4co105a", "https://tec.openplanner.team/stops/H4co146b"], ["https://tec.openplanner.team/stops/LOLrafh2", "https://tec.openplanner.team/stops/LSOferr1"], ["https://tec.openplanner.team/stops/H4be107a", "https://tec.openplanner.team/stops/H5bl122b"], ["https://tec.openplanner.team/stops/Bgoemgr1", "https://tec.openplanner.team/stops/Bhakmkr2"], ["https://tec.openplanner.team/stops/LnDrund1", "https://tec.openplanner.team/stops/LnDrund2"], ["https://tec.openplanner.team/stops/X941aba", "https://tec.openplanner.team/stops/X941acc"], ["https://tec.openplanner.team/stops/Csochea1", "https://tec.openplanner.team/stops/Csoforc2"], ["https://tec.openplanner.team/stops/LABvill1", "https://tec.openplanner.team/stops/LBevill2"], ["https://tec.openplanner.team/stops/H1bl104b", "https://tec.openplanner.team/stops/H1bl104c"], ["https://tec.openplanner.team/stops/X621aca", "https://tec.openplanner.team/stops/X621acb"], ["https://tec.openplanner.team/stops/Brixpje2", "https://tec.openplanner.team/stops/Brixpla2"], ["https://tec.openplanner.team/stops/Llgbass2", "https://tec.openplanner.team/stops/Llgfusc4"], ["https://tec.openplanner.team/stops/Cmlcpar1", "https://tec.openplanner.team/stops/Cmlpche1"], ["https://tec.openplanner.team/stops/Cblcen3", "https://tec.openplanner.team/stops/Cblsall1"], ["https://tec.openplanner.team/stops/X669adb", "https://tec.openplanner.team/stops/X669aea"], ["https://tec.openplanner.team/stops/H3bi100a", "https://tec.openplanner.team/stops/H3bi118a"], ["https://tec.openplanner.team/stops/X804abb", "https://tec.openplanner.team/stops/X804bya"], ["https://tec.openplanner.team/stops/H1vt193a", "https://tec.openplanner.team/stops/H1vt193b"], ["https://tec.openplanner.team/stops/N117auc", "https://tec.openplanner.team/stops/N117aud"], ["https://tec.openplanner.team/stops/LAUabat1", "https://tec.openplanner.team/stops/LAUabat2"], ["https://tec.openplanner.team/stops/LBUmara3", "https://tec.openplanner.team/stops/NL30aja"], ["https://tec.openplanner.team/stops/X740aea", "https://tec.openplanner.team/stops/X779aab"], ["https://tec.openplanner.team/stops/N506abb", "https://tec.openplanner.team/stops/N512aeb"], ["https://tec.openplanner.team/stops/Lvtboux2", "https://tec.openplanner.team/stops/Lvtmeun2"], ["https://tec.openplanner.team/stops/Lmibove1", "https://tec.openplanner.team/stops/Lmibove3"], ["https://tec.openplanner.team/stops/Cchba12", "https://tec.openplanner.team/stops/CMsacm2"], ["https://tec.openplanner.team/stops/LAUcent1", "https://tec.openplanner.team/stops/LAUcent2"], ["https://tec.openplanner.team/stops/Lloretr1", "https://tec.openplanner.team/stops/Lloross1"], ["https://tec.openplanner.team/stops/LLecolo1", "https://tec.openplanner.team/stops/X547aja"], ["https://tec.openplanner.team/stops/Cgzchen2", "https://tec.openplanner.team/stops/Cgzha622"], ["https://tec.openplanner.team/stops/LmI36--1", "https://tec.openplanner.team/stops/LmImirf1"], ["https://tec.openplanner.team/stops/LMfbacu2", "https://tec.openplanner.team/stops/LMfsart2"], ["https://tec.openplanner.team/stops/X636aoa", "https://tec.openplanner.team/stops/X648aab"], ["https://tec.openplanner.team/stops/X782aia", "https://tec.openplanner.team/stops/X782ajb"], ["https://tec.openplanner.team/stops/Bsenpeu1", "https://tec.openplanner.team/stops/H2se107a"], ["https://tec.openplanner.team/stops/N260aeb", "https://tec.openplanner.team/stops/N260afb"], ["https://tec.openplanner.team/stops/H4ty295a", "https://tec.openplanner.team/stops/H4ty295c"], ["https://tec.openplanner.team/stops/X902ahb", "https://tec.openplanner.team/stops/X902aka"], ["https://tec.openplanner.team/stops/N242afb", "https://tec.openplanner.team/stops/N251abb"], ["https://tec.openplanner.team/stops/X982bja", "https://tec.openplanner.team/stops/X982bld"], ["https://tec.openplanner.team/stops/Cbuegl1", "https://tec.openplanner.team/stops/Cbugara1"], ["https://tec.openplanner.team/stops/N536aba", "https://tec.openplanner.team/stops/N580aea"], ["https://tec.openplanner.team/stops/LsVgesc1", "https://tec.openplanner.team/stops/LsVlust1"], ["https://tec.openplanner.team/stops/X939agb", "https://tec.openplanner.team/stops/X939aha"], ["https://tec.openplanner.team/stops/Bjodbat2", "https://tec.openplanner.team/stops/Bjodced2"], ["https://tec.openplanner.team/stops/N214adb", "https://tec.openplanner.team/stops/N228aea"], ["https://tec.openplanner.team/stops/Bdlmflo2", "https://tec.openplanner.team/stops/Bdlmgla2"], ["https://tec.openplanner.team/stops/N501ezb", "https://tec.openplanner.team/stops/N501jta"], ["https://tec.openplanner.team/stops/X979ada", "https://tec.openplanner.team/stops/X979aeb"], ["https://tec.openplanner.team/stops/Lhemilm2", "https://tec.openplanner.team/stops/Lhrspi-2"], ["https://tec.openplanner.team/stops/LLApavi1", "https://tec.openplanner.team/stops/LLApavi2"], ["https://tec.openplanner.team/stops/X613abb", "https://tec.openplanner.team/stops/X613acb"], ["https://tec.openplanner.team/stops/X316aca", "https://tec.openplanner.team/stops/X371aaa"], ["https://tec.openplanner.team/stops/N543ahb", "https://tec.openplanner.team/stops/N543alb"], ["https://tec.openplanner.team/stops/Bmlnmbo1", "https://tec.openplanner.team/stops/Bmlnmbo2"], ["https://tec.openplanner.team/stops/X363ada", "https://tec.openplanner.team/stops/X363adb"], ["https://tec.openplanner.team/stops/LSW26--1", "https://tec.openplanner.team/stops/LSWscie1"], ["https://tec.openplanner.team/stops/Bbsifmo1", "https://tec.openplanner.team/stops/Bhtipir3"], ["https://tec.openplanner.team/stops/H4le128a", "https://tec.openplanner.team/stops/H4we134a"], ["https://tec.openplanner.team/stops/NL77aka", "https://tec.openplanner.team/stops/NL77akb"], ["https://tec.openplanner.team/stops/N244aja", "https://tec.openplanner.team/stops/N244alb"], ["https://tec.openplanner.team/stops/LHHindu1", "https://tec.openplanner.team/stops/LHHpt--1"], ["https://tec.openplanner.team/stops/Lmodeni2", "https://tec.openplanner.team/stops/Lmopast2"], ["https://tec.openplanner.team/stops/Blanmde1", "https://tec.openplanner.team/stops/Blanraa1"], ["https://tec.openplanner.team/stops/Lvcdumo1", "https://tec.openplanner.team/stops/Lvchenn2"], ["https://tec.openplanner.team/stops/N506btb", "https://tec.openplanner.team/stops/NL67adb"], ["https://tec.openplanner.team/stops/H4te255b", "https://tec.openplanner.team/stops/H4te258a"], ["https://tec.openplanner.team/stops/Cpcarse2", "https://tec.openplanner.team/stops/Cpcbrig1"], ["https://tec.openplanner.team/stops/Ljemabo1", "https://tec.openplanner.team/stops/Ljewale4"], ["https://tec.openplanner.team/stops/N127aca", "https://tec.openplanner.team/stops/N135bda"], ["https://tec.openplanner.team/stops/X610aba", "https://tec.openplanner.team/stops/X610aea"], ["https://tec.openplanner.team/stops/LeYdorf1", "https://tec.openplanner.team/stops/LeYdorf2"], ["https://tec.openplanner.team/stops/Cplcite1", "https://tec.openplanner.team/stops/Cplstfa2"], ["https://tec.openplanner.team/stops/LeYdepo1", "https://tec.openplanner.team/stops/LeYdepo2"], ["https://tec.openplanner.team/stops/Bcrnpla2", "https://tec.openplanner.team/stops/Bcrnpla3"], ["https://tec.openplanner.team/stops/Cmocime1", "https://tec.openplanner.team/stops/Cmoscap1"], ["https://tec.openplanner.team/stops/N154abb", "https://tec.openplanner.team/stops/N154acb"], ["https://tec.openplanner.team/stops/LLbmalm1", "https://tec.openplanner.team/stops/LLbmalm2"], ["https://tec.openplanner.team/stops/H1gn147b", "https://tec.openplanner.team/stops/H1gn148a"], ["https://tec.openplanner.team/stops/X919ama", "https://tec.openplanner.team/stops/X919ana"], ["https://tec.openplanner.team/stops/NL81aga", "https://tec.openplanner.team/stops/NL81agb"], ["https://tec.openplanner.team/stops/LLeeco-1", "https://tec.openplanner.team/stops/LLemonu1"], ["https://tec.openplanner.team/stops/N505aka", "https://tec.openplanner.team/stops/N505akb"], ["https://tec.openplanner.team/stops/LaLkirc*", "https://tec.openplanner.team/stops/LmAgruf2"], ["https://tec.openplanner.team/stops/N513ata", "https://tec.openplanner.team/stops/N513atb"], ["https://tec.openplanner.team/stops/LLscent2", "https://tec.openplanner.team/stops/LRfcent2"], ["https://tec.openplanner.team/stops/LAmcorn2", "https://tec.openplanner.team/stops/LNHbarr2"], ["https://tec.openplanner.team/stops/X780aea", "https://tec.openplanner.team/stops/X780afb"], ["https://tec.openplanner.team/stops/Bhaldbo1", "https://tec.openplanner.team/stops/Blemmar2"], ["https://tec.openplanner.team/stops/X398aaa", "https://tec.openplanner.team/stops/X398aca"], ["https://tec.openplanner.team/stops/LLrhaut3", "https://tec.openplanner.team/stops/LLrhaut4"], ["https://tec.openplanner.team/stops/X782ama", "https://tec.openplanner.team/stops/X782amb"], ["https://tec.openplanner.team/stops/Cchba03", "https://tec.openplanner.team/stops/Cchba06"], ["https://tec.openplanner.team/stops/X725ata", "https://tec.openplanner.team/stops/X767aia"], ["https://tec.openplanner.team/stops/N506bab", "https://tec.openplanner.team/stops/N506bsa"], ["https://tec.openplanner.team/stops/Clbchba1", "https://tec.openplanner.team/stops/Cthgrat2"], ["https://tec.openplanner.team/stops/X879apa", "https://tec.openplanner.team/stops/X879apb"], ["https://tec.openplanner.team/stops/LESecco2", "https://tec.openplanner.team/stops/LTIcime1"], ["https://tec.openplanner.team/stops/LAMusin1", "https://tec.openplanner.team/stops/LAMweha1"], ["https://tec.openplanner.team/stops/N214aga", "https://tec.openplanner.team/stops/N214agb"], ["https://tec.openplanner.team/stops/N528afa", "https://tec.openplanner.team/stops/N528afc"], ["https://tec.openplanner.team/stops/Lflhott1", "https://tec.openplanner.team/stops/Lflhott2"], ["https://tec.openplanner.team/stops/Lrecite2", "https://tec.openplanner.team/stops/Lreclou1"], ["https://tec.openplanner.team/stops/X747aab", "https://tec.openplanner.team/stops/X754axa"], ["https://tec.openplanner.team/stops/X769ama", "https://tec.openplanner.team/stops/X769aob"], ["https://tec.openplanner.team/stops/Csrcant1", "https://tec.openplanner.team/stops/Csrcarr1"], ["https://tec.openplanner.team/stops/X904ada", "https://tec.openplanner.team/stops/X904afb"], ["https://tec.openplanner.team/stops/N308ala", "https://tec.openplanner.team/stops/N308alb"], ["https://tec.openplanner.team/stops/H4ne134a", "https://tec.openplanner.team/stops/H4ne134b"], ["https://tec.openplanner.team/stops/Bbstchv1", "https://tec.openplanner.team/stops/Bvlvbth2"], ["https://tec.openplanner.team/stops/Bgnvcom1", "https://tec.openplanner.team/stops/Bgnvqve1"], ["https://tec.openplanner.team/stops/Bmsgrco1", "https://tec.openplanner.team/stops/Bmsgrco2"], ["https://tec.openplanner.team/stops/LPLcite1", "https://tec.openplanner.team/stops/LPLmonu2"], ["https://tec.openplanner.team/stops/X627aba", "https://tec.openplanner.team/stops/X627ada"], ["https://tec.openplanner.team/stops/Bsammon2", "https://tec.openplanner.team/stops/Bsampli1"], ["https://tec.openplanner.team/stops/X637ada", "https://tec.openplanner.team/stops/X637aea"], ["https://tec.openplanner.team/stops/H1so139c", "https://tec.openplanner.team/stops/H1so146b"], ["https://tec.openplanner.team/stops/N533aca", "https://tec.openplanner.team/stops/N533aea"], ["https://tec.openplanner.team/stops/X725aef", "https://tec.openplanner.team/stops/X725bca"], ["https://tec.openplanner.team/stops/H5qu141a", "https://tec.openplanner.team/stops/H5qu152a"], ["https://tec.openplanner.team/stops/N365aaa", "https://tec.openplanner.team/stops/N365aba"], ["https://tec.openplanner.team/stops/H1fr122a", "https://tec.openplanner.team/stops/H1fr131a"], ["https://tec.openplanner.team/stops/LBDfran1", "https://tec.openplanner.team/stops/LFFmarc1"], ["https://tec.openplanner.team/stops/Binclon1", "https://tec.openplanner.team/stops/Bopprju1"], ["https://tec.openplanner.team/stops/LFAsauv1", "https://tec.openplanner.team/stops/LFUfleu1"], ["https://tec.openplanner.team/stops/N538aib", "https://tec.openplanner.team/stops/N538ajd"], ["https://tec.openplanner.team/stops/Lflheid1", "https://tec.openplanner.team/stops/Lflprev1"], ["https://tec.openplanner.team/stops/N147aaa", "https://tec.openplanner.team/stops/N147afa"], ["https://tec.openplanner.team/stops/X768abb", "https://tec.openplanner.team/stops/X768ahb"], ["https://tec.openplanner.team/stops/LLYcalv1", "https://tec.openplanner.team/stops/LLYcalv2"], ["https://tec.openplanner.team/stops/Bgntcha1", "https://tec.openplanner.team/stops/Bgntcha2"], ["https://tec.openplanner.team/stops/Ccocoup2", "https://tec.openplanner.team/stops/Ccostan1"], ["https://tec.openplanner.team/stops/H5ar100a", "https://tec.openplanner.team/stops/H5ar104a"], ["https://tec.openplanner.team/stops/H3br107a", "https://tec.openplanner.team/stops/H3br122a"], ["https://tec.openplanner.team/stops/X899aab", "https://tec.openplanner.team/stops/X899aea"], ["https://tec.openplanner.team/stops/N521aia", "https://tec.openplanner.team/stops/N521apb"], ["https://tec.openplanner.team/stops/X919aja", "https://tec.openplanner.team/stops/X919ajc"], ["https://tec.openplanner.team/stops/Bwancal2", "https://tec.openplanner.team/stops/NL75aca"], ["https://tec.openplanner.team/stops/LSMpoin1", "https://tec.openplanner.team/stops/LSMtarg2"], ["https://tec.openplanner.team/stops/Bqueaga1", "https://tec.openplanner.team/stops/Bquecja1"], ["https://tec.openplanner.team/stops/Lfljupi1", "https://tec.openplanner.team/stops/Lrecroi2"], ["https://tec.openplanner.team/stops/X222adc", "https://tec.openplanner.team/stops/X222add"], ["https://tec.openplanner.team/stops/Bmrshan2", "https://tec.openplanner.team/stops/Bplnegl2"], ["https://tec.openplanner.team/stops/Cnalava2", "https://tec.openplanner.team/stops/Cnalava3"], ["https://tec.openplanner.team/stops/Borbod91", "https://tec.openplanner.team/stops/Borbod92"], ["https://tec.openplanner.team/stops/X850ana", "https://tec.openplanner.team/stops/X850anb"], ["https://tec.openplanner.team/stops/LNAplac2", "https://tec.openplanner.team/stops/LSSfrai2"], ["https://tec.openplanner.team/stops/LbO52--1", "https://tec.openplanner.team/stops/LmObahn*"], ["https://tec.openplanner.team/stops/Bfelequ1", "https://tec.openplanner.team/stops/Bfelequ2"], ["https://tec.openplanner.team/stops/Bwlhpmt1", "https://tec.openplanner.team/stops/Bwlhpmt2"], ["https://tec.openplanner.team/stops/H4bf107b", "https://tec.openplanner.team/stops/H4bn174a"], ["https://tec.openplanner.team/stops/N502abb", "https://tec.openplanner.team/stops/N510abb"], ["https://tec.openplanner.team/stops/LClberw2", "https://tec.openplanner.team/stops/LLC170-2"], ["https://tec.openplanner.team/stops/Bmrlhan1", "https://tec.openplanner.team/stops/Bmrlhau2"], ["https://tec.openplanner.team/stops/LNCmele1", "https://tec.openplanner.team/stops/LRR2egl1"], ["https://tec.openplanner.team/stops/Bcrncor1", "https://tec.openplanner.team/stops/Bcrngat1"], ["https://tec.openplanner.team/stops/N501afb", "https://tec.openplanner.team/stops/N503aca"], ["https://tec.openplanner.team/stops/LdUespe1", "https://tec.openplanner.team/stops/LeSkreu2"], ["https://tec.openplanner.team/stops/Lhrabho1", "https://tec.openplanner.team/stops/Lwaeau-2"], ["https://tec.openplanner.team/stops/X925aea", "https://tec.openplanner.team/stops/X982bvb"], ["https://tec.openplanner.team/stops/LBiberg1", "https://tec.openplanner.team/stops/LBiroch1"], ["https://tec.openplanner.team/stops/Cmopn4", "https://tec.openplanner.team/stops/Cmosaba1"], ["https://tec.openplanner.team/stops/H2hg154b", "https://tec.openplanner.team/stops/H2hg154e"], ["https://tec.openplanner.team/stops/NL72aaa", "https://tec.openplanner.team/stops/NL76adb"], ["https://tec.openplanner.team/stops/LLrfont1", "https://tec.openplanner.team/stops/LLrmeno1"], ["https://tec.openplanner.team/stops/X765adb", "https://tec.openplanner.team/stops/X765aeb"], ["https://tec.openplanner.team/stops/H4fo116a", "https://tec.openplanner.team/stops/H4fo117a"], ["https://tec.openplanner.team/stops/LLiforg1", "https://tec.openplanner.team/stops/LLirout1"], ["https://tec.openplanner.team/stops/H4au100a", "https://tec.openplanner.team/stops/H4ea134b"], ["https://tec.openplanner.team/stops/X801bdd", "https://tec.openplanner.team/stops/X801bea"], ["https://tec.openplanner.team/stops/Cdadest1", "https://tec.openplanner.team/stops/CMpige1"], ["https://tec.openplanner.team/stops/LFFeg--2", "https://tec.openplanner.team/stops/LFFmagr1"], ["https://tec.openplanner.team/stops/Cmygrbr3", "https://tec.openplanner.team/stops/Cmyoasi1"], ["https://tec.openplanner.team/stops/N501coa", "https://tec.openplanner.team/stops/N501csa"], ["https://tec.openplanner.team/stops/X888afb", "https://tec.openplanner.team/stops/X897afa"], ["https://tec.openplanner.team/stops/H4cl112a", "https://tec.openplanner.team/stops/H4cl114b"], ["https://tec.openplanner.team/stops/Bbgnpla1", "https://tec.openplanner.team/stops/N530aea"], ["https://tec.openplanner.team/stops/Lagcolo1", "https://tec.openplanner.team/stops/LTIp%C3%A9pi2"], ["https://tec.openplanner.team/stops/Cbzfrom1", "https://tec.openplanner.team/stops/Cluplve4"], ["https://tec.openplanner.team/stops/Llgauxc1", "https://tec.openplanner.team/stops/Llgauxc2"], ["https://tec.openplanner.team/stops/LXHeg--1", "https://tec.openplanner.team/stops/LXHeg--2"], ["https://tec.openplanner.team/stops/X908ahb", "https://tec.openplanner.team/stops/X910aba"], ["https://tec.openplanner.team/stops/X878aca", "https://tec.openplanner.team/stops/X878adb"], ["https://tec.openplanner.team/stops/Bsdafra2", "https://tec.openplanner.team/stops/Bsdapir1"], ["https://tec.openplanner.team/stops/Bgnpgen2", "https://tec.openplanner.team/stops/Bgnppra1"], ["https://tec.openplanner.team/stops/X639akb", "https://tec.openplanner.team/stops/X639anb"], ["https://tec.openplanner.team/stops/LPbpl--2", "https://tec.openplanner.team/stops/LPbusin1"], ["https://tec.openplanner.team/stops/X876adb", "https://tec.openplanner.team/stops/X876afa"], ["https://tec.openplanner.team/stops/H1gh149b", "https://tec.openplanner.team/stops/H1ms930a"], ["https://tec.openplanner.team/stops/N352ada", "https://tec.openplanner.team/stops/N352afa"], ["https://tec.openplanner.team/stops/X318ada", "https://tec.openplanner.team/stops/X364acb"], ["https://tec.openplanner.team/stops/Cgxptt2", "https://tec.openplanner.team/stops/CMmorg1"], ["https://tec.openplanner.team/stops/X620aaa", "https://tec.openplanner.team/stops/X620abb"], ["https://tec.openplanner.team/stops/H1ha201a", "https://tec.openplanner.team/stops/H1ob330a"], ["https://tec.openplanner.team/stops/X660aga", "https://tec.openplanner.team/stops/X672aha"], ["https://tec.openplanner.team/stops/Lscstan2", "https://tec.openplanner.team/stops/Lscstan3"], ["https://tec.openplanner.team/stops/H4ae100b", "https://tec.openplanner.team/stops/H4or114b"], ["https://tec.openplanner.team/stops/LESathe2", "https://tec.openplanner.team/stops/LESpont2"], ["https://tec.openplanner.team/stops/Lsefore1", "https://tec.openplanner.team/stops/Lsestap1"], ["https://tec.openplanner.team/stops/N120aea", "https://tec.openplanner.team/stops/N120afa"], ["https://tec.openplanner.team/stops/LlOdrei1", "https://tec.openplanner.team/stops/LnDthel2"], ["https://tec.openplanner.team/stops/Cna6che2", "https://tec.openplanner.team/stops/Cnapetr1"], ["https://tec.openplanner.team/stops/X783aab", "https://tec.openplanner.team/stops/X789aib"], ["https://tec.openplanner.team/stops/H4ev125a", "https://tec.openplanner.team/stops/H4hx123b"], ["https://tec.openplanner.team/stops/Lgdblom2", "https://tec.openplanner.team/stops/Lgdstoc1"], ["https://tec.openplanner.team/stops/N528abb", "https://tec.openplanner.team/stops/N528afb"], ["https://tec.openplanner.team/stops/X823afa", "https://tec.openplanner.team/stops/X823afc"], ["https://tec.openplanner.team/stops/X631aaa", "https://tec.openplanner.team/stops/X644aea"], ["https://tec.openplanner.team/stops/LHEcruc1", "https://tec.openplanner.team/stops/LHEelva1"], ["https://tec.openplanner.team/stops/LHDpota1", "https://tec.openplanner.team/stops/LLmetat2"], ["https://tec.openplanner.team/stops/Cmlbrac2", "https://tec.openplanner.team/stops/Cmlcons1"], ["https://tec.openplanner.team/stops/H4le128b", "https://tec.openplanner.team/stops/H4ry133a"], ["https://tec.openplanner.team/stops/LFAwale1", "https://tec.openplanner.team/stops/LFAwale2"], ["https://tec.openplanner.team/stops/N565aba", "https://tec.openplanner.team/stops/N565ada"], ["https://tec.openplanner.team/stops/Btubhoq1", "https://tec.openplanner.team/stops/Btubmar1"], ["https://tec.openplanner.team/stops/X725aja", "https://tec.openplanner.team/stops/X725bga"], ["https://tec.openplanner.team/stops/H1vg358b", "https://tec.openplanner.team/stops/H1vs144a"], ["https://tec.openplanner.team/stops/X902acb", "https://tec.openplanner.team/stops/X902atb"], ["https://tec.openplanner.team/stops/Cnadrev2", "https://tec.openplanner.team/stops/Cnahous2"], ["https://tec.openplanner.team/stops/X982adb", "https://tec.openplanner.team/stops/X982aeb"], ["https://tec.openplanner.team/stops/N534bnh", "https://tec.openplanner.team/stops/N534cbg"], ["https://tec.openplanner.team/stops/X725agb", "https://tec.openplanner.team/stops/X725aib"], ["https://tec.openplanner.team/stops/H2sb227a", "https://tec.openplanner.team/stops/H2sb227b"], ["https://tec.openplanner.team/stops/LTiforg2", "https://tec.openplanner.team/stops/LTiterr2"], ["https://tec.openplanner.team/stops/LJSforg1", "https://tec.openplanner.team/stops/Lpepano2"], ["https://tec.openplanner.team/stops/N564afb", "https://tec.openplanner.team/stops/N585aha"], ["https://tec.openplanner.team/stops/LAvchpl1", "https://tec.openplanner.team/stops/LAvrout1"], ["https://tec.openplanner.team/stops/Ccicloc2", "https://tec.openplanner.team/stops/Clvchen2"], ["https://tec.openplanner.team/stops/LTicent2", "https://tec.openplanner.team/stops/LTiec--1"], ["https://tec.openplanner.team/stops/X788acb", "https://tec.openplanner.team/stops/X789ahb"], ["https://tec.openplanner.team/stops/X547ahb", "https://tec.openplanner.team/stops/X547ana"], ["https://tec.openplanner.team/stops/H4mo145b", "https://tec.openplanner.team/stops/H4mo159a"], ["https://tec.openplanner.team/stops/LDaeg--2", "https://tec.openplanner.team/stops/LDapota2"], ["https://tec.openplanner.team/stops/X601aud", "https://tec.openplanner.team/stops/X601ava"], ["https://tec.openplanner.team/stops/Blsmbfe1", "https://tec.openplanner.team/stops/Blsmcha1"], ["https://tec.openplanner.team/stops/LPLhest1", "https://tec.openplanner.team/stops/LRRcole1"], ["https://tec.openplanner.team/stops/H4ep128b", "https://tec.openplanner.team/stops/H4ht173b"], ["https://tec.openplanner.team/stops/X896agb", "https://tec.openplanner.team/stops/X897apa"], ["https://tec.openplanner.team/stops/X902axa", "https://tec.openplanner.team/stops/X903aab"], ["https://tec.openplanner.team/stops/X907aeb", "https://tec.openplanner.team/stops/X907aha"], ["https://tec.openplanner.team/stops/H4ty295b", "https://tec.openplanner.team/stops/H4ty295c"], ["https://tec.openplanner.team/stops/X908aab", "https://tec.openplanner.team/stops/X955adb"], ["https://tec.openplanner.team/stops/H1lb138a", "https://tec.openplanner.team/stops/H1lb139b"], ["https://tec.openplanner.team/stops/X615acb", "https://tec.openplanner.team/stops/X615ana"], ["https://tec.openplanner.team/stops/H3lr110b", "https://tec.openplanner.team/stops/H3lr117b"], ["https://tec.openplanner.team/stops/LwYneue2", "https://tec.openplanner.team/stops/LwYnr262"], ["https://tec.openplanner.team/stops/H4bc101c", "https://tec.openplanner.team/stops/H4tu172c"], ["https://tec.openplanner.team/stops/Bdlmgla1", "https://tec.openplanner.team/stops/Bdlmgla3"], ["https://tec.openplanner.team/stops/N563amb", "https://tec.openplanner.team/stops/N563anb"], ["https://tec.openplanner.team/stops/Cgoclad1", "https://tec.openplanner.team/stops/Cgostex1"], ["https://tec.openplanner.team/stops/Ctrrpla2", "https://tec.openplanner.team/stops/Ctrrpla4"], ["https://tec.openplanner.team/stops/X804aoa", "https://tec.openplanner.team/stops/X804btb"], ["https://tec.openplanner.team/stops/X818ahb", "https://tec.openplanner.team/stops/X818aia"], ["https://tec.openplanner.team/stops/X607aeb", "https://tec.openplanner.team/stops/X607aga"], ["https://tec.openplanner.team/stops/LnEleje1", "https://tec.openplanner.team/stops/LnEleje2"], ["https://tec.openplanner.team/stops/X616afb", "https://tec.openplanner.team/stops/X624aeb"], ["https://tec.openplanner.team/stops/H2bh117b", "https://tec.openplanner.team/stops/H2lc146a"], ["https://tec.openplanner.team/stops/Lghcoqs1", "https://tec.openplanner.team/stops/Lghprea1"], ["https://tec.openplanner.team/stops/Cmqbasv2", "https://tec.openplanner.team/stops/H4ar101a"], ["https://tec.openplanner.team/stops/N562bma", "https://tec.openplanner.team/stops/N562boa"], ["https://tec.openplanner.team/stops/Lbrfoid4", "https://tec.openplanner.team/stops/Lbrresi2"], ["https://tec.openplanner.team/stops/N522aub", "https://tec.openplanner.team/stops/N529aeb"], ["https://tec.openplanner.team/stops/H1al146a", "https://tec.openplanner.team/stops/H1eq117a"], ["https://tec.openplanner.team/stops/Lhrgall2", "https://tec.openplanner.team/stops/Lhrmare1"], ["https://tec.openplanner.team/stops/Lceprog2", "https://tec.openplanner.team/stops/Lgrcral1"], ["https://tec.openplanner.team/stops/X942abe", "https://tec.openplanner.team/stops/X942aga"], ["https://tec.openplanner.team/stops/H4to136b", "https://tec.openplanner.team/stops/H4to139a"], ["https://tec.openplanner.team/stops/Craappa2", "https://tec.openplanner.team/stops/Cradado2"], ["https://tec.openplanner.team/stops/Lghecol*", "https://tec.openplanner.team/stops/Lghwass2"], ["https://tec.openplanner.team/stops/N135aib", "https://tec.openplanner.team/stops/N135alb"], ["https://tec.openplanner.team/stops/X781acb", "https://tec.openplanner.team/stops/X781adb"], ["https://tec.openplanner.team/stops/N261aga", "https://tec.openplanner.team/stops/N261agb"], ["https://tec.openplanner.team/stops/H4lz155a", "https://tec.openplanner.team/stops/H4lz158a"], ["https://tec.openplanner.team/stops/X619ajb", "https://tec.openplanner.team/stops/X620ahb"], ["https://tec.openplanner.team/stops/H1gg145a", "https://tec.openplanner.team/stops/H1gg145b"], ["https://tec.openplanner.team/stops/N311aea", "https://tec.openplanner.team/stops/N368aaa"], ["https://tec.openplanner.team/stops/X901afa", "https://tec.openplanner.team/stops/X901bga"], ["https://tec.openplanner.team/stops/Croheig1", "https://tec.openplanner.team/stops/Croheig2"], ["https://tec.openplanner.team/stops/H1gy114a", "https://tec.openplanner.team/stops/H1gy116a"], ["https://tec.openplanner.team/stops/X398aab", "https://tec.openplanner.team/stops/X999alb"], ["https://tec.openplanner.team/stops/Lghomni1", "https://tec.openplanner.team/stops/Lghpara2"], ["https://tec.openplanner.team/stops/LBSnouw2", "https://tec.openplanner.team/stops/LBSpail4"], ["https://tec.openplanner.team/stops/N563aob", "https://tec.openplanner.team/stops/N570aca"], ["https://tec.openplanner.team/stops/N201aoc", "https://tec.openplanner.team/stops/N202afb"], ["https://tec.openplanner.team/stops/Crolach1", "https://tec.openplanner.team/stops/Crowall1"], ["https://tec.openplanner.team/stops/Boplham2", "https://tec.openplanner.team/stops/Boplsma3"], ["https://tec.openplanner.team/stops/X752abb", "https://tec.openplanner.team/stops/X752acb"], ["https://tec.openplanner.team/stops/X731aca", "https://tec.openplanner.team/stops/X731acb"], ["https://tec.openplanner.team/stops/Cfnegli2", "https://tec.openplanner.team/stops/Cfnsenz2"], ["https://tec.openplanner.team/stops/X653aba", "https://tec.openplanner.team/stops/X667aab"], ["https://tec.openplanner.team/stops/X641aya", "https://tec.openplanner.team/stops/X673aaa"], ["https://tec.openplanner.team/stops/Cgythio1", "https://tec.openplanner.team/stops/Cgytrie2"], ["https://tec.openplanner.team/stops/LHDmc--2", "https://tec.openplanner.team/stops/LMOpiss1"], ["https://tec.openplanner.team/stops/LORdtec*", "https://tec.openplanner.team/stops/LORec--*"], ["https://tec.openplanner.team/stops/X770aga", "https://tec.openplanner.team/stops/X773aja"], ["https://tec.openplanner.team/stops/N501gka", "https://tec.openplanner.team/stops/N501llb"], ["https://tec.openplanner.team/stops/N118abb", "https://tec.openplanner.team/stops/N118axa"], ["https://tec.openplanner.team/stops/LCFcafe1", "https://tec.openplanner.team/stops/LCPbatt2"], ["https://tec.openplanner.team/stops/N506bob", "https://tec.openplanner.team/stops/N506bsb"], ["https://tec.openplanner.team/stops/Bmrqpla2", "https://tec.openplanner.team/stops/H1mk108b"], ["https://tec.openplanner.team/stops/X788aca", "https://tec.openplanner.team/stops/X788aeb"], ["https://tec.openplanner.team/stops/Bcerpco1", "https://tec.openplanner.team/stops/Blasbgc1"], ["https://tec.openplanner.team/stops/X879ada", "https://tec.openplanner.team/stops/X879agb"], ["https://tec.openplanner.team/stops/Lsefori2", "https://tec.openplanner.team/stops/Lseprog1"], ["https://tec.openplanner.team/stops/LHVeg--1", "https://tec.openplanner.team/stops/LJAverv2"], ["https://tec.openplanner.team/stops/Lboastr1", "https://tec.openplanner.team/stops/Lbomc--8"], ["https://tec.openplanner.team/stops/LbAhenk2", "https://tec.openplanner.team/stops/LbAhull1"], ["https://tec.openplanner.team/stops/Llgbois2", "https://tec.openplanner.team/stops/Llgverg2"], ["https://tec.openplanner.team/stops/N115abb", "https://tec.openplanner.team/stops/N115aea"], ["https://tec.openplanner.team/stops/Lhrchar3", "https://tec.openplanner.team/stops/Llghori1"], ["https://tec.openplanner.team/stops/H1ca106a", "https://tec.openplanner.team/stops/H1th183b"], ["https://tec.openplanner.team/stops/Lgrcoll1", "https://tec.openplanner.team/stops/Lgrcoll2"], ["https://tec.openplanner.team/stops/Bnivfle2", "https://tec.openplanner.team/stops/Bnivsci2"], ["https://tec.openplanner.team/stops/X982aha", "https://tec.openplanner.team/stops/X982bfb"], ["https://tec.openplanner.team/stops/H1so145b", "https://tec.openplanner.team/stops/H1so146b"], ["https://tec.openplanner.team/stops/NL81aea", "https://tec.openplanner.team/stops/NL81afa"], ["https://tec.openplanner.team/stops/NH01aaa", "https://tec.openplanner.team/stops/NH01ana"], ["https://tec.openplanner.team/stops/N214aeb", "https://tec.openplanner.team/stops/N214afb"], ["https://tec.openplanner.team/stops/Cchtiro3", "https://tec.openplanner.team/stops/Cmlecha1"], ["https://tec.openplanner.team/stops/N501aja", "https://tec.openplanner.team/stops/N501ajb"], ["https://tec.openplanner.team/stops/H1gg116a", "https://tec.openplanner.team/stops/H1gg117a"], ["https://tec.openplanner.team/stops/Cctrobe1", "https://tec.openplanner.team/stops/NC11aib"], ["https://tec.openplanner.team/stops/N501aib", "https://tec.openplanner.team/stops/N501bub"], ["https://tec.openplanner.team/stops/H2hl111a", "https://tec.openplanner.team/stops/H2sv216a"], ["https://tec.openplanner.team/stops/N131ahb", "https://tec.openplanner.team/stops/N132aeb"], ["https://tec.openplanner.team/stops/Bbonbcr1", "https://tec.openplanner.team/stops/Bbonegl2"], ["https://tec.openplanner.team/stops/N558ajb", "https://tec.openplanner.team/stops/N558amd"], ["https://tec.openplanner.team/stops/H1et100b", "https://tec.openplanner.team/stops/H1hh117b"], ["https://tec.openplanner.team/stops/Bcsepes2", "https://tec.openplanner.team/stops/Bmoucoq1"], ["https://tec.openplanner.team/stops/Borblim2", "https://tec.openplanner.team/stops/Borbode2"], ["https://tec.openplanner.team/stops/LkTweih1", "https://tec.openplanner.team/stops/LkTweih2"], ["https://tec.openplanner.team/stops/X601afb", "https://tec.openplanner.team/stops/X601arb"], ["https://tec.openplanner.team/stops/LsVgrun1", "https://tec.openplanner.team/stops/LsVviel2"], ["https://tec.openplanner.team/stops/LDAalbe1", "https://tec.openplanner.team/stops/LDAandr2"], ["https://tec.openplanner.team/stops/LnE79--1", "https://tec.openplanner.team/stops/LnEkirc3"], ["https://tec.openplanner.team/stops/H1mm128a", "https://tec.openplanner.team/stops/H1vb148b"], ["https://tec.openplanner.team/stops/LLRgdma1", "https://tec.openplanner.team/stops/LLRptma1"], ["https://tec.openplanner.team/stops/LBEbelf2", "https://tec.openplanner.team/stops/LBEtilf2"], ["https://tec.openplanner.team/stops/X638akb", "https://tec.openplanner.team/stops/X638aqa"], ["https://tec.openplanner.team/stops/N146ada", "https://tec.openplanner.team/stops/N146afb"], ["https://tec.openplanner.team/stops/Bovecha2", "https://tec.openplanner.team/stops/Bovetdo2"], ["https://tec.openplanner.team/stops/X770aab", "https://tec.openplanner.team/stops/X771alb"], ["https://tec.openplanner.team/stops/X662ana", "https://tec.openplanner.team/stops/X662anb"], ["https://tec.openplanner.team/stops/Cluchbl1", "https://tec.openplanner.team/stops/Cluchbl2"], ["https://tec.openplanner.team/stops/Cchprun1", "https://tec.openplanner.team/stops/Cchriga2"], ["https://tec.openplanner.team/stops/NL76aka", "https://tec.openplanner.team/stops/NL76bca"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lpevove1"], ["https://tec.openplanner.team/stops/H2ll176c", "https://tec.openplanner.team/stops/H2ll195b"], ["https://tec.openplanner.team/stops/LLRvill1", "https://tec.openplanner.team/stops/LVPcrok2"], ["https://tec.openplanner.team/stops/LMisour2", "https://tec.openplanner.team/stops/LSTmeiz1"], ["https://tec.openplanner.team/stops/H4mb138b", "https://tec.openplanner.team/stops/H4qu230c"], ["https://tec.openplanner.team/stops/LmSdorf2", "https://tec.openplanner.team/stops/LmSluxh1"], ["https://tec.openplanner.team/stops/Bbstdpa1", "https://tec.openplanner.team/stops/Blpgeco2"], ["https://tec.openplanner.team/stops/Brsggar1", "https://tec.openplanner.team/stops/Brsgter1"], ["https://tec.openplanner.team/stops/LLUadze1", "https://tec.openplanner.team/stops/LLUdeig2"], ["https://tec.openplanner.team/stops/LNCecdo1", "https://tec.openplanner.team/stops/Lsedavy2"], ["https://tec.openplanner.team/stops/X601cva", "https://tec.openplanner.team/stops/X601cxa"], ["https://tec.openplanner.team/stops/H5qu156b", "https://tec.openplanner.team/stops/H5qu182b"], ["https://tec.openplanner.team/stops/Bwaab121", "https://tec.openplanner.team/stops/Bwaakap2"], ["https://tec.openplanner.team/stops/Cmcbriq2", "https://tec.openplanner.team/stops/Cmcwir2"], ["https://tec.openplanner.team/stops/H4do106a", "https://tec.openplanner.team/stops/H4do106b"], ["https://tec.openplanner.team/stops/Bhoemel2", "https://tec.openplanner.team/stops/Bovejei1"], ["https://tec.openplanner.team/stops/H1wi150a", "https://tec.openplanner.team/stops/H1wi155b"], ["https://tec.openplanner.team/stops/Btslegl2", "https://tec.openplanner.team/stops/Btsllbv2"], ["https://tec.openplanner.team/stops/H4ty278a", "https://tec.openplanner.team/stops/H4ty278b"], ["https://tec.openplanner.team/stops/X992aab", "https://tec.openplanner.team/stops/X992afb"], ["https://tec.openplanner.team/stops/H3bi112a", "https://tec.openplanner.team/stops/H3bi112b"], ["https://tec.openplanner.team/stops/Bgoesch1", "https://tec.openplanner.team/stops/Bgoewat2"], ["https://tec.openplanner.team/stops/Caccent1", "https://tec.openplanner.team/stops/NC24aeb"], ["https://tec.openplanner.team/stops/H1bl100a", "https://tec.openplanner.team/stops/H1pd146a"], ["https://tec.openplanner.team/stops/N235aca", "https://tec.openplanner.team/stops/N235acb"], ["https://tec.openplanner.team/stops/X614awa", "https://tec.openplanner.team/stops/X614awb"], ["https://tec.openplanner.team/stops/LDLbaye1", "https://tec.openplanner.team/stops/LDLbeau1"], ["https://tec.openplanner.team/stops/N232aoa", "https://tec.openplanner.team/stops/N251aaa"], ["https://tec.openplanner.team/stops/LPLc49-2", "https://tec.openplanner.team/stops/LRRtrix1"], ["https://tec.openplanner.team/stops/Llgfran2", "https://tec.openplanner.team/stops/LlgguilB"], ["https://tec.openplanner.team/stops/H1bu143b", "https://tec.openplanner.team/stops/H1mg109a"], ["https://tec.openplanner.team/stops/H2sv214b", "https://tec.openplanner.team/stops/H2sv221a"], ["https://tec.openplanner.team/stops/H2sb221a", "https://tec.openplanner.team/stops/H2sb238a"], ["https://tec.openplanner.team/stops/LHumoul2", "https://tec.openplanner.team/stops/LMfbacu2"], ["https://tec.openplanner.team/stops/LSCeg--1", "https://tec.openplanner.team/stops/LSChane1"], ["https://tec.openplanner.team/stops/X982atb", "https://tec.openplanner.team/stops/X982axb"], ["https://tec.openplanner.team/stops/Bcrnnca1", "https://tec.openplanner.team/stops/Bcrnnca2"], ["https://tec.openplanner.team/stops/Csesabo1", "https://tec.openplanner.team/stops/N424aca"], ["https://tec.openplanner.team/stops/Lveensi2", "https://tec.openplanner.team/stops/Lvegc-1*"], ["https://tec.openplanner.team/stops/H4ae132d", "https://tec.openplanner.team/stops/H4ea127a"], ["https://tec.openplanner.team/stops/X747aka", "https://tec.openplanner.team/stops/X754aeb"], ["https://tec.openplanner.team/stops/H4ch113b", "https://tec.openplanner.team/stops/H4vx360a"], ["https://tec.openplanner.team/stops/LnEmett2", "https://tec.openplanner.team/stops/LsVhunn2"], ["https://tec.openplanner.team/stops/Laghetr1", "https://tec.openplanner.team/stops/Lkiblan2"], ["https://tec.openplanner.team/stops/N423aba", "https://tec.openplanner.team/stops/N425aga"], ["https://tec.openplanner.team/stops/Canvane2", "https://tec.openplanner.team/stops/H2an100b"], ["https://tec.openplanner.team/stops/Bbxlmid1", "https://tec.openplanner.team/stops/Bhaldbo1"], ["https://tec.openplanner.team/stops/Barcsta2", "https://tec.openplanner.team/stops/Bpecvme1"], ["https://tec.openplanner.team/stops/X607adb", "https://tec.openplanner.team/stops/X607aib"], ["https://tec.openplanner.team/stops/N521aca", "https://tec.openplanner.team/stops/N521aea"], ["https://tec.openplanner.team/stops/Bglacsr1", "https://tec.openplanner.team/stops/Bmrsefr1"], ["https://tec.openplanner.team/stops/H1ba100a", "https://tec.openplanner.team/stops/H1ba103a"], ["https://tec.openplanner.team/stops/N101ajb", "https://tec.openplanner.team/stops/N116aab"], ["https://tec.openplanner.team/stops/X922aea", "https://tec.openplanner.team/stops/X922akb"], ["https://tec.openplanner.team/stops/X354aga", "https://tec.openplanner.team/stops/X354agb"], ["https://tec.openplanner.team/stops/Blincal1", "https://tec.openplanner.team/stops/Bolgfon2"], ["https://tec.openplanner.team/stops/LHUchin*", "https://tec.openplanner.team/stops/NL80aua"], ["https://tec.openplanner.team/stops/X912aca", "https://tec.openplanner.team/stops/X912aea"], ["https://tec.openplanner.team/stops/X999alb", "https://tec.openplanner.team/stops/X999asa"], ["https://tec.openplanner.team/stops/N525aia", "https://tec.openplanner.team/stops/N525aib"], ["https://tec.openplanner.team/stops/X734aaa", "https://tec.openplanner.team/stops/X735aab"], ["https://tec.openplanner.team/stops/Brixga13", "https://tec.openplanner.team/stops/Brixpje1"], ["https://tec.openplanner.team/stops/X651aga", "https://tec.openplanner.team/stops/X669aaa"], ["https://tec.openplanner.team/stops/X750apb", "https://tec.openplanner.team/stops/X750blb"], ["https://tec.openplanner.team/stops/LVMborl2", "https://tec.openplanner.team/stops/LVMrout2"], ["https://tec.openplanner.team/stops/Llmcoop1", "https://tec.openplanner.team/stops/Lprhodi1"], ["https://tec.openplanner.team/stops/LDArich2", "https://tec.openplanner.team/stops/LFethie2"], ["https://tec.openplanner.team/stops/N506aga", "https://tec.openplanner.team/stops/N506agb"], ["https://tec.openplanner.team/stops/H2bh103a", "https://tec.openplanner.team/stops/H2bh111a"], ["https://tec.openplanner.team/stops/Lhehoux1", "https://tec.openplanner.team/stops/Lhelait1"], ["https://tec.openplanner.team/stops/H2ca100b", "https://tec.openplanner.team/stops/H2ca108a"], ["https://tec.openplanner.team/stops/NL72ada", "https://tec.openplanner.team/stops/NL72adb"], ["https://tec.openplanner.team/stops/X837aga", "https://tec.openplanner.team/stops/X837aib"], ["https://tec.openplanner.team/stops/N122ada", "https://tec.openplanner.team/stops/N122adb"], ["https://tec.openplanner.team/stops/N538ada", "https://tec.openplanner.team/stops/N542aia"], ["https://tec.openplanner.team/stops/X750boa", "https://tec.openplanner.team/stops/X777acb"], ["https://tec.openplanner.team/stops/N252aaa", "https://tec.openplanner.team/stops/N252aab"], ["https://tec.openplanner.team/stops/H4ty273a", "https://tec.openplanner.team/stops/H4ty273b"], ["https://tec.openplanner.team/stops/H4ma398b", "https://tec.openplanner.team/stops/H4oq409a"], ["https://tec.openplanner.team/stops/H1wa147b", "https://tec.openplanner.team/stops/H1wa150a"], ["https://tec.openplanner.team/stops/Btlbcul1", "https://tec.openplanner.team/stops/Btlbgla1"], ["https://tec.openplanner.team/stops/LEnchan2", "https://tec.openplanner.team/stops/LEntrix2"], ["https://tec.openplanner.team/stops/X595aca", "https://tec.openplanner.team/stops/X595agb"], ["https://tec.openplanner.team/stops/H4he105a", "https://tec.openplanner.team/stops/H4he106a"], ["https://tec.openplanner.team/stops/Bbuztai1", "https://tec.openplanner.team/stops/Bnivbng2"], ["https://tec.openplanner.team/stops/LOunebl1", "https://tec.openplanner.team/stops/X982abb"], ["https://tec.openplanner.team/stops/H4be107a", "https://tec.openplanner.team/stops/H4be107b"], ["https://tec.openplanner.team/stops/X982aeb", "https://tec.openplanner.team/stops/X982afb"], ["https://tec.openplanner.team/stops/Bosqgar1", "https://tec.openplanner.team/stops/Bosqpco2"], ["https://tec.openplanner.team/stops/Lbogonh1", "https://tec.openplanner.team/stops/Lbogonh2"], ["https://tec.openplanner.team/stops/N501dwb", "https://tec.openplanner.team/stops/N501kea"], ["https://tec.openplanner.team/stops/X641ata", "https://tec.openplanner.team/stops/X641atb"], ["https://tec.openplanner.team/stops/LBXhacb2", "https://tec.openplanner.team/stops/LMEeg--1"], ["https://tec.openplanner.team/stops/X999aja", "https://tec.openplanner.team/stops/X999apb"], ["https://tec.openplanner.team/stops/N351amb", "https://tec.openplanner.team/stops/N351avb"], ["https://tec.openplanner.team/stops/LCvmonu1", "https://tec.openplanner.team/stops/LLVe75-1"], ["https://tec.openplanner.team/stops/Llghong2", "https://tec.openplanner.team/stops/Llgjean1"], ["https://tec.openplanner.team/stops/LROhael1", "https://tec.openplanner.team/stops/LROhael2"], ["https://tec.openplanner.team/stops/LoDschu1", "https://tec.openplanner.team/stops/LoDulf-2"], ["https://tec.openplanner.team/stops/Lgdhura1", "https://tec.openplanner.team/stops/LMhvina1"], ["https://tec.openplanner.team/stops/Cjuecha1", "https://tec.openplanner.team/stops/Cjuruni2"], ["https://tec.openplanner.team/stops/N118acc", "https://tec.openplanner.team/stops/N118acd"], ["https://tec.openplanner.team/stops/Cjucpui2", "https://tec.openplanner.team/stops/Cmaacac1"], ["https://tec.openplanner.team/stops/H2ch103b", "https://tec.openplanner.team/stops/H2ch103c"], ["https://tec.openplanner.team/stops/Ltihorl2", "https://tec.openplanner.team/stops/Ltithie1"], ["https://tec.openplanner.team/stops/H4wn123a", "https://tec.openplanner.team/stops/H4wn129b"], ["https://tec.openplanner.team/stops/X804bob", "https://tec.openplanner.team/stops/X804bqb"], ["https://tec.openplanner.team/stops/Llghoch2", "https://tec.openplanner.team/stops/Llgsevr4"], ["https://tec.openplanner.team/stops/N155aaa", "https://tec.openplanner.team/stops/N155aab"], ["https://tec.openplanner.team/stops/X223acb", "https://tec.openplanner.team/stops/X919acb"], ["https://tec.openplanner.team/stops/Llgpari1", "https://tec.openplanner.team/stops/Llgpari2"], ["https://tec.openplanner.team/stops/LRtcarr1", "https://tec.openplanner.team/stops/LTechpl1"], ["https://tec.openplanner.team/stops/Lmobrac1", "https://tec.openplanner.team/stops/Lmobrac2"], ["https://tec.openplanner.team/stops/LTPabat2", "https://tec.openplanner.team/stops/LTPreco1"], ["https://tec.openplanner.team/stops/H1bo102a", "https://tec.openplanner.team/stops/H1hi123b"], ["https://tec.openplanner.team/stops/Cmypela2", "https://tec.openplanner.team/stops/Cmyrens1"], ["https://tec.openplanner.team/stops/N507afb", "https://tec.openplanner.team/stops/N507agb"], ["https://tec.openplanner.team/stops/LFochap2", "https://tec.openplanner.team/stops/LGObeth1"], ["https://tec.openplanner.team/stops/X837aka", "https://tec.openplanner.team/stops/X886aaa"], ["https://tec.openplanner.team/stops/Cmyboci1", "https://tec.openplanner.team/stops/Cmygbbo2"], ["https://tec.openplanner.team/stops/Louazot1", "https://tec.openplanner.team/stops/Lscgare2"], ["https://tec.openplanner.team/stops/H1mj124a", "https://tec.openplanner.team/stops/H1mj124b"], ["https://tec.openplanner.team/stops/X716acb", "https://tec.openplanner.team/stops/X716aea"], ["https://tec.openplanner.team/stops/LAxchpl2", "https://tec.openplanner.team/stops/LFsgend1"], ["https://tec.openplanner.team/stops/N501isb", "https://tec.openplanner.team/stops/N501ivb"], ["https://tec.openplanner.team/stops/Lcemalv3", "https://tec.openplanner.team/stops/Lcemeta2"], ["https://tec.openplanner.team/stops/X902aqa", "https://tec.openplanner.team/stops/X902awa"], ["https://tec.openplanner.team/stops/H4ne132b", "https://tec.openplanner.team/stops/H4ne143b"], ["https://tec.openplanner.team/stops/Lchchau1", "https://tec.openplanner.team/stops/Lrapays2"], ["https://tec.openplanner.team/stops/Bclgpch1", "https://tec.openplanner.team/stops/Bllnlb52"], ["https://tec.openplanner.team/stops/Clrmarl3", "https://tec.openplanner.team/stops/Clrplac2"], ["https://tec.openplanner.team/stops/Cjurogi1", "https://tec.openplanner.team/stops/CMpuis2"], ["https://tec.openplanner.team/stops/NC44aab", "https://tec.openplanner.team/stops/NC44aea"], ["https://tec.openplanner.team/stops/X904afb", "https://tec.openplanner.team/stops/X904ala"], ["https://tec.openplanner.team/stops/Cthalou1", "https://tec.openplanner.team/stops/Cthdeco1"], ["https://tec.openplanner.team/stops/Bwatnrs2", "https://tec.openplanner.team/stops/Bwatppa2"], ["https://tec.openplanner.team/stops/X818asa", "https://tec.openplanner.team/stops/X818ava"], ["https://tec.openplanner.team/stops/Cjuhden3", "https://tec.openplanner.team/stops/Cjupn2"], ["https://tec.openplanner.team/stops/N515agb", "https://tec.openplanner.team/stops/N515aua"], ["https://tec.openplanner.team/stops/H4bl104a", "https://tec.openplanner.team/stops/H4tg262a"], ["https://tec.openplanner.team/stops/LCschri1", "https://tec.openplanner.team/stops/LCschri2"], ["https://tec.openplanner.team/stops/Lemparc2", "https://tec.openplanner.team/stops/Lemsart1"], ["https://tec.openplanner.team/stops/X926afb", "https://tec.openplanner.team/stops/X947aaa"], ["https://tec.openplanner.team/stops/Cmmcarr2", "https://tec.openplanner.team/stops/Cmmcime2"], ["https://tec.openplanner.team/stops/N501hjc", "https://tec.openplanner.team/stops/N501mia"], ["https://tec.openplanner.team/stops/LFdchau1", "https://tec.openplanner.team/stops/LFdchau3"], ["https://tec.openplanner.team/stops/Canmonu1", "https://tec.openplanner.team/stops/Canmonu3"], ["https://tec.openplanner.team/stops/Bjodfab1", "https://tec.openplanner.team/stops/Bjodrga1"], ["https://tec.openplanner.team/stops/Canboni1", "https://tec.openplanner.team/stops/Canchbr2"], ["https://tec.openplanner.team/stops/LFmbure1", "https://tec.openplanner.team/stops/LFmcarr2"], ["https://tec.openplanner.team/stops/N232aia", "https://tec.openplanner.team/stops/N232aoa"], ["https://tec.openplanner.team/stops/Cgyhstj2", "https://tec.openplanner.team/stops/Cgystjo4"], ["https://tec.openplanner.team/stops/LmNelis1", "https://tec.openplanner.team/stops/LmNkirc1"], ["https://tec.openplanner.team/stops/LCPlebl*", "https://tec.openplanner.team/stops/LGmcent1"], ["https://tec.openplanner.team/stops/Cmtpire1", "https://tec.openplanner.team/stops/Cmtrneu2"], ["https://tec.openplanner.team/stops/H5bl115c", "https://tec.openplanner.team/stops/H5bl121b"], ["https://tec.openplanner.team/stops/H1hm174b", "https://tec.openplanner.team/stops/H1hm176b"], ["https://tec.openplanner.team/stops/N310acb", "https://tec.openplanner.team/stops/N343aea"], ["https://tec.openplanner.team/stops/X609abb", "https://tec.openplanner.team/stops/X609acb"], ["https://tec.openplanner.team/stops/N557aia", "https://tec.openplanner.team/stops/N562bja"], ["https://tec.openplanner.team/stops/H1mb129b", "https://tec.openplanner.team/stops/H1mb135a"], ["https://tec.openplanner.team/stops/N538aua", "https://tec.openplanner.team/stops/N538avb"], ["https://tec.openplanner.team/stops/X820aaa", "https://tec.openplanner.team/stops/X822apb"], ["https://tec.openplanner.team/stops/LVIdepo3", "https://tec.openplanner.team/stops/LVIgare1"], ["https://tec.openplanner.team/stops/X652acb", "https://tec.openplanner.team/stops/X652acc"], ["https://tec.openplanner.team/stops/N512aca", "https://tec.openplanner.team/stops/N512agd"], ["https://tec.openplanner.team/stops/Cmtpblo2", "https://tec.openplanner.team/stops/Cmtplac5"], ["https://tec.openplanner.team/stops/Blanraa1", "https://tec.openplanner.team/stops/Bwaanwi1"], ["https://tec.openplanner.team/stops/N244asa", "https://tec.openplanner.team/stops/N244ata"], ["https://tec.openplanner.team/stops/Cgd4ven1", "https://tec.openplanner.team/stops/Csycant2"], ["https://tec.openplanner.team/stops/X907abb", "https://tec.openplanner.team/stops/X939acb"], ["https://tec.openplanner.team/stops/LSItert1", "https://tec.openplanner.team/stops/LSItert2"], ["https://tec.openplanner.team/stops/X979aoa", "https://tec.openplanner.team/stops/X979aob"], ["https://tec.openplanner.team/stops/LHUmala2", "https://tec.openplanner.team/stops/LHUmari1"], ["https://tec.openplanner.team/stops/LThbatt1", "https://tec.openplanner.team/stops/LTheg--2"], ["https://tec.openplanner.team/stops/Csycant2", "https://tec.openplanner.team/stops/Csystan1"], ["https://tec.openplanner.team/stops/Lmocail2", "https://tec.openplanner.team/stops/Lmodeja1"], ["https://tec.openplanner.team/stops/Lchchau1", "https://tec.openplanner.team/stops/Lchec--1"], ["https://tec.openplanner.team/stops/Ccugrtr2", "https://tec.openplanner.team/stops/Ccutail2"], ["https://tec.openplanner.team/stops/LsVsage1", "https://tec.openplanner.team/stops/LsVsage2"], ["https://tec.openplanner.team/stops/LCSmagn2", "https://tec.openplanner.team/stops/LSShous1"], ["https://tec.openplanner.team/stops/Cnacent1", "https://tec.openplanner.team/stops/Cnaha562"], ["https://tec.openplanner.team/stops/Lghhaut1", "https://tec.openplanner.team/stops/Lghraul1"], ["https://tec.openplanner.team/stops/X717agd", "https://tec.openplanner.team/stops/X717agf"], ["https://tec.openplanner.team/stops/Bplnegl2", "https://tec.openplanner.team/stops/Cgncail2"], ["https://tec.openplanner.team/stops/Brixcme2", "https://tec.openplanner.team/stops/Brsrber2"], ["https://tec.openplanner.team/stops/Cjupier1", "https://tec.openplanner.team/stops/Cjuvpla2"], ["https://tec.openplanner.team/stops/LESchat1", "https://tec.openplanner.team/stops/LTIptme1"], ["https://tec.openplanner.team/stops/H4lp123a", "https://tec.openplanner.team/stops/H4lp123b"], ["https://tec.openplanner.team/stops/X790ahb", "https://tec.openplanner.team/stops/X790aib"], ["https://tec.openplanner.team/stops/Ldicorb1", "https://tec.openplanner.team/stops/Ldidefo1"], ["https://tec.openplanner.team/stops/Clbbonn2", "https://tec.openplanner.team/stops/Clbbonn4"], ["https://tec.openplanner.team/stops/Lalmakr1", "https://tec.openplanner.team/stops/Lancolr1"], ["https://tec.openplanner.team/stops/N522agb", "https://tec.openplanner.team/stops/N522ala"], ["https://tec.openplanner.team/stops/Lchplai2", "https://tec.openplanner.team/stops/Lchsaro1"], ["https://tec.openplanner.team/stops/N121aia", "https://tec.openplanner.team/stops/N121aib"], ["https://tec.openplanner.team/stops/N214aja", "https://tec.openplanner.team/stops/N236adb"], ["https://tec.openplanner.team/stops/Bwavcar2", "https://tec.openplanner.team/stops/Bwavlep1"], ["https://tec.openplanner.team/stops/X896abb", "https://tec.openplanner.team/stops/X995aba"], ["https://tec.openplanner.team/stops/LHUchh-1", "https://tec.openplanner.team/stops/NL80aib"], ["https://tec.openplanner.team/stops/H1em102b", "https://tec.openplanner.team/stops/H1em111b"], ["https://tec.openplanner.team/stops/Cgycorv2", "https://tec.openplanner.team/stops/Cmtmoul1"], ["https://tec.openplanner.team/stops/X601awb", "https://tec.openplanner.team/stops/X601axa"], ["https://tec.openplanner.team/stops/H4bh104b", "https://tec.openplanner.team/stops/H4hn115a"], ["https://tec.openplanner.team/stops/Bndbgar2", "https://tec.openplanner.team/stops/Bndbpco2"], ["https://tec.openplanner.team/stops/Lsccime1", "https://tec.openplanner.team/stops/Lsccime2"], ["https://tec.openplanner.team/stops/H1ba112b", "https://tec.openplanner.team/stops/H1si154a"], ["https://tec.openplanner.team/stops/Craferr1", "https://tec.openplanner.team/stops/Crajasm1"], ["https://tec.openplanner.team/stops/LThbatt2", "https://tec.openplanner.team/stops/LThpoli2"], ["https://tec.openplanner.team/stops/LGLgare*", "https://tec.openplanner.team/stops/LGLobor2"], ["https://tec.openplanner.team/stops/H4os221c", "https://tec.openplanner.team/stops/H4os223a"], ["https://tec.openplanner.team/stops/H4mo136a", "https://tec.openplanner.team/stops/H4mo144a"], ["https://tec.openplanner.team/stops/LsC216-1", "https://tec.openplanner.team/stops/LsCback1"], ["https://tec.openplanner.team/stops/Bbgever1", "https://tec.openplanner.team/stops/Bwavtrt2"], ["https://tec.openplanner.team/stops/N531aga", "https://tec.openplanner.team/stops/N531agb"], ["https://tec.openplanner.team/stops/Bcbqh452", "https://tec.openplanner.team/stops/Bcbqp251"], ["https://tec.openplanner.team/stops/LSkb1352", "https://tec.openplanner.team/stops/LSkbo832"], ["https://tec.openplanner.team/stops/N571afb", "https://tec.openplanner.team/stops/N571aga"], ["https://tec.openplanner.team/stops/Bgzdegl3", "https://tec.openplanner.team/stops/Bgzdegl4"], ["https://tec.openplanner.team/stops/LHUchh-1", "https://tec.openplanner.team/stops/LHUchh-2"], ["https://tec.openplanner.team/stops/Bwatcro1", "https://tec.openplanner.team/stops/Bwatcro2"], ["https://tec.openplanner.team/stops/N357aba", "https://tec.openplanner.team/stops/N988aab"], ["https://tec.openplanner.team/stops/LMIeg--1", "https://tec.openplanner.team/stops/LSOdow%C3%A92"], ["https://tec.openplanner.team/stops/H4lg101a", "https://tec.openplanner.team/stops/H4ta120b"], ["https://tec.openplanner.team/stops/Cmlgche2", "https://tec.openplanner.team/stops/Cmlvpla2"], ["https://tec.openplanner.team/stops/H1hg180a", "https://tec.openplanner.team/stops/H1hg181b"], ["https://tec.openplanner.team/stops/Lbralbe1", "https://tec.openplanner.team/stops/Lbrnanc1"], ["https://tec.openplanner.team/stops/H1gr120b", "https://tec.openplanner.team/stops/H1gr122b"], ["https://tec.openplanner.team/stops/Bcsegal1", "https://tec.openplanner.team/stops/Bcsemar2"], ["https://tec.openplanner.team/stops/LHhchau2", "https://tec.openplanner.team/stops/LHheg--2"], ["https://tec.openplanner.team/stops/LEMgren*", "https://tec.openplanner.team/stops/LMalarg4"], ["https://tec.openplanner.team/stops/N562asa", "https://tec.openplanner.team/stops/N562bma"], ["https://tec.openplanner.team/stops/X812aqa", "https://tec.openplanner.team/stops/X812ava"], ["https://tec.openplanner.team/stops/X805aea", "https://tec.openplanner.team/stops/X869aaa"], ["https://tec.openplanner.team/stops/N580aca", "https://tec.openplanner.team/stops/N580afb"], ["https://tec.openplanner.team/stops/LRRrimi1", "https://tec.openplanner.team/stops/LRRrimi2"], ["https://tec.openplanner.team/stops/Lagarde2", "https://tec.openplanner.team/stops/Laggare2"], ["https://tec.openplanner.team/stops/X716aba", "https://tec.openplanner.team/stops/X716afa"], ["https://tec.openplanner.team/stops/Balssvi1", "https://tec.openplanner.team/stops/Balswwe1"], ["https://tec.openplanner.team/stops/LSIvieu2", "https://tec.openplanner.team/stops/LTEnuro1"], ["https://tec.openplanner.team/stops/H2bh106b", "https://tec.openplanner.team/stops/H2bh120b"], ["https://tec.openplanner.team/stops/H4co110a", "https://tec.openplanner.team/stops/H4co110b"], ["https://tec.openplanner.team/stops/X804akb", "https://tec.openplanner.team/stops/X804bqa"], ["https://tec.openplanner.team/stops/N232acb", "https://tec.openplanner.team/stops/N232agb"], ["https://tec.openplanner.team/stops/Lbeloui1", "https://tec.openplanner.team/stops/Lbeloui2"], ["https://tec.openplanner.team/stops/Bblabfo1", "https://tec.openplanner.team/stops/Bblabfo2"], ["https://tec.openplanner.team/stops/H1ba118a", "https://tec.openplanner.team/stops/H1te173b"], ["https://tec.openplanner.team/stops/Llggee52", "https://tec.openplanner.team/stops/Llggeer3"], ["https://tec.openplanner.team/stops/Bnilwal2", "https://tec.openplanner.team/stops/Bwspbbo1"], ["https://tec.openplanner.team/stops/X614abb", "https://tec.openplanner.team/stops/X614acb"], ["https://tec.openplanner.team/stops/N531aea", "https://tec.openplanner.team/stops/N531afg"], ["https://tec.openplanner.team/stops/LVkinst1", "https://tec.openplanner.team/stops/LVkinst2"], ["https://tec.openplanner.team/stops/LFlpark*", "https://tec.openplanner.team/stops/LJEpaqu2"], ["https://tec.openplanner.team/stops/Lpecime1", "https://tec.openplanner.team/stops/Lpesart2"], ["https://tec.openplanner.team/stops/Bcrnncb2", "https://tec.openplanner.team/stops/Bcrnnpl1"], ["https://tec.openplanner.team/stops/H2tr253b", "https://tec.openplanner.team/stops/H2tr255b"], ["https://tec.openplanner.team/stops/LGeduc-2", "https://tec.openplanner.team/stops/LGefron2"], ["https://tec.openplanner.team/stops/Lveclin2", "https://tec.openplanner.team/stops/Lvehauz3"], ["https://tec.openplanner.team/stops/N309aba", "https://tec.openplanner.team/stops/N313acb"], ["https://tec.openplanner.team/stops/H2ca103c", "https://tec.openplanner.team/stops/H2ca116a"], ["https://tec.openplanner.team/stops/LHMbami2", "https://tec.openplanner.team/stops/LSImewi1"], ["https://tec.openplanner.team/stops/LHhchau2", "https://tec.openplanner.team/stops/N507aeb"], ["https://tec.openplanner.team/stops/LGlbour1", "https://tec.openplanner.team/stops/LGlbour2"], ["https://tec.openplanner.team/stops/N529ada", "https://tec.openplanner.team/stops/N529adb"], ["https://tec.openplanner.team/stops/LHGtron1", "https://tec.openplanner.team/stops/LHGvill2"], ["https://tec.openplanner.team/stops/N501gda", "https://tec.openplanner.team/stops/N501gdb"], ["https://tec.openplanner.team/stops/N116aac", "https://tec.openplanner.team/stops/N116aea"], ["https://tec.openplanner.team/stops/N507akb", "https://tec.openplanner.team/stops/N509aob"], ["https://tec.openplanner.team/stops/N232bga", "https://tec.openplanner.team/stops/N232bgb"], ["https://tec.openplanner.team/stops/N501dvb", "https://tec.openplanner.team/stops/N501ewa"], ["https://tec.openplanner.team/stops/LClsacr1", "https://tec.openplanner.team/stops/LThnouv1"], ["https://tec.openplanner.team/stops/Bgzddmo1", "https://tec.openplanner.team/stops/Bgzdgli1"], ["https://tec.openplanner.team/stops/LBJlieg2", "https://tec.openplanner.team/stops/LHcaube1"], ["https://tec.openplanner.team/stops/LBVronx1", "https://tec.openplanner.team/stops/LBVronx2"], ["https://tec.openplanner.team/stops/LHGvill2", "https://tec.openplanner.team/stops/LVlfooz3"], ["https://tec.openplanner.team/stops/N118acb", "https://tec.openplanner.team/stops/N118aya"], ["https://tec.openplanner.team/stops/X952aga", "https://tec.openplanner.team/stops/X952agb"], ["https://tec.openplanner.team/stops/Ljekess1", "https://tec.openplanner.team/stops/Ljestat3"], ["https://tec.openplanner.team/stops/LVLgrum1", "https://tec.openplanner.team/stops/LVLpane1"], ["https://tec.openplanner.team/stops/Bhancre2", "https://tec.openplanner.team/stops/Bhanwav1"], ["https://tec.openplanner.team/stops/Lvefran1", "https://tec.openplanner.team/stops/Lvefran2"], ["https://tec.openplanner.team/stops/X756aja", "https://tec.openplanner.team/stops/X779afa"], ["https://tec.openplanner.team/stops/H4tf147a", "https://tec.openplanner.team/stops/H4wa148b"], ["https://tec.openplanner.team/stops/H2ha128a", "https://tec.openplanner.team/stops/H2ha128b"], ["https://tec.openplanner.team/stops/Blemhon1", "https://tec.openplanner.team/stops/Blemmar1"], ["https://tec.openplanner.team/stops/X858abb", "https://tec.openplanner.team/stops/X858aga"], ["https://tec.openplanner.team/stops/N543ala", "https://tec.openplanner.team/stops/N543anh"], ["https://tec.openplanner.team/stops/N135afa", "https://tec.openplanner.team/stops/N135afb"], ["https://tec.openplanner.team/stops/X833aba", "https://tec.openplanner.team/stops/X833abb"], ["https://tec.openplanner.team/stops/H2le148a", "https://tec.openplanner.team/stops/H2le148b"], ["https://tec.openplanner.team/stops/Cmtyern1", "https://tec.openplanner.team/stops/Cmtyern2"], ["https://tec.openplanner.team/stops/LATjaur2", "https://tec.openplanner.team/stops/LATmale2"], ["https://tec.openplanner.team/stops/LSsaxhe2", "https://tec.openplanner.team/stops/LSseg--2"], ["https://tec.openplanner.team/stops/X788aea", "https://tec.openplanner.team/stops/X788aeb"], ["https://tec.openplanner.team/stops/LmI36--1", "https://tec.openplanner.team/stops/LmI36--2"], ["https://tec.openplanner.team/stops/H2fa100b", "https://tec.openplanner.team/stops/H2fa104a"], ["https://tec.openplanner.team/stops/Cgxchan1", "https://tec.openplanner.team/stops/Cmogrbu2"], ["https://tec.openplanner.team/stops/Cgxcime2", "https://tec.openplanner.team/stops/Cgxmaco1"], ["https://tec.openplanner.team/stops/N571adb", "https://tec.openplanner.team/stops/N573aab"], ["https://tec.openplanner.team/stops/H1bx104a", "https://tec.openplanner.team/stops/H1bx104b"], ["https://tec.openplanner.team/stops/Llgborg1", "https://tec.openplanner.team/stops/Llgborg2"], ["https://tec.openplanner.team/stops/N576akc", "https://tec.openplanner.team/stops/N576alb"], ["https://tec.openplanner.team/stops/H4mo160a", "https://tec.openplanner.team/stops/H4mo161a"], ["https://tec.openplanner.team/stops/LBLfoxh2", "https://tec.openplanner.team/stops/LCEeg--2"], ["https://tec.openplanner.team/stops/H4gu108a", "https://tec.openplanner.team/stops/H4sm247a"], ["https://tec.openplanner.team/stops/Cmeptmi2", "https://tec.openplanner.team/stops/Cmeptmi6"], ["https://tec.openplanner.team/stops/Cmoprov1", "https://tec.openplanner.team/stops/Crorpai2"], ["https://tec.openplanner.team/stops/H4ty294a", "https://tec.openplanner.team/stops/H4ty325a"], ["https://tec.openplanner.team/stops/H1br129a", "https://tec.openplanner.team/stops/H3bo103a"], ["https://tec.openplanner.team/stops/H1fl138b", "https://tec.openplanner.team/stops/H1lb134a"], ["https://tec.openplanner.team/stops/LArmeni1", "https://tec.openplanner.team/stops/X548abb"], ["https://tec.openplanner.team/stops/LWepost1", "https://tec.openplanner.team/stops/LWepost2"], ["https://tec.openplanner.team/stops/Laltrap2", "https://tec.openplanner.team/stops/Llaeg--2"], ["https://tec.openplanner.team/stops/Cchhopi1", "https://tec.openplanner.team/stops/Cchmonu2"], ["https://tec.openplanner.team/stops/X858aab", "https://tec.openplanner.team/stops/X858ahb"], ["https://tec.openplanner.team/stops/X923acb", "https://tec.openplanner.team/stops/X923adb"], ["https://tec.openplanner.team/stops/X762aab", "https://tec.openplanner.team/stops/X786ajb"], ["https://tec.openplanner.team/stops/N236aba", "https://tec.openplanner.team/stops/N236acb"], ["https://tec.openplanner.team/stops/N223aaa", "https://tec.openplanner.team/stops/X222add"], ["https://tec.openplanner.team/stops/H2mo122d", "https://tec.openplanner.team/stops/H2mo146b"], ["https://tec.openplanner.team/stops/Cfrgare4", "https://tec.openplanner.team/stops/Cfrmonu2"], ["https://tec.openplanner.team/stops/Cmaroya1", "https://tec.openplanner.team/stops/Cmastch4"], ["https://tec.openplanner.team/stops/N501gfa", "https://tec.openplanner.team/stops/N501gfb"], ["https://tec.openplanner.team/stops/LkEfrie1", "https://tec.openplanner.team/stops/LkEheyg2"], ["https://tec.openplanner.team/stops/N308bfb", "https://tec.openplanner.team/stops/N308bhb"], ["https://tec.openplanner.team/stops/X371adb", "https://tec.openplanner.team/stops/X371aeb"], ["https://tec.openplanner.team/stops/N506aca", "https://tec.openplanner.team/stops/N506bpb"], ["https://tec.openplanner.team/stops/Bincegl2", "https://tec.openplanner.team/stops/Bopprju1"], ["https://tec.openplanner.team/stops/H4ce103a", "https://tec.openplanner.team/stops/H4ve132a"], ["https://tec.openplanner.team/stops/Bbiehec1", "https://tec.openplanner.team/stops/Bbiehev1"], ["https://tec.openplanner.team/stops/X605aba", "https://tec.openplanner.team/stops/X605acb"], ["https://tec.openplanner.team/stops/Bchgbar2", "https://tec.openplanner.team/stops/Bchgqve3"], ["https://tec.openplanner.team/stops/LlNbene2", "https://tec.openplanner.team/stops/LlNbruc1"], ["https://tec.openplanner.team/stops/X756aia", "https://tec.openplanner.team/stops/X756aib"], ["https://tec.openplanner.team/stops/NL78aha", "https://tec.openplanner.team/stops/NL78akb"], ["https://tec.openplanner.team/stops/X812aka", "https://tec.openplanner.team/stops/X812aqa"], ["https://tec.openplanner.team/stops/LJedonc1", "https://tec.openplanner.team/stops/LReeg--1"], ["https://tec.openplanner.team/stops/Llghesb1", "https://tec.openplanner.team/stops/Llglys-1"], ["https://tec.openplanner.team/stops/LLaover3", "https://tec.openplanner.team/stops/LLaover4"], ["https://tec.openplanner.team/stops/LmS11--2", "https://tec.openplanner.team/stops/LsFcafe1"], ["https://tec.openplanner.team/stops/LHCbois2", "https://tec.openplanner.team/stops/LHCcoul1"], ["https://tec.openplanner.team/stops/N304aaa", "https://tec.openplanner.team/stops/N304aab"], ["https://tec.openplanner.team/stops/N571ada", "https://tec.openplanner.team/stops/N573aaa"], ["https://tec.openplanner.team/stops/N501fdd", "https://tec.openplanner.team/stops/N501fqa"], ["https://tec.openplanner.team/stops/Lroboeg2", "https://tec.openplanner.team/stops/Lromc--2"], ["https://tec.openplanner.team/stops/Bcer4br2", "https://tec.openplanner.team/stops/Bcerldo1"], ["https://tec.openplanner.team/stops/H2sb228d", "https://tec.openplanner.team/stops/H2sb242a"], ["https://tec.openplanner.team/stops/Lhracec2", "https://tec.openplanner.team/stops/Lhrwigi2"], ["https://tec.openplanner.team/stops/H1hr118b", "https://tec.openplanner.team/stops/H3so177a"], ["https://tec.openplanner.team/stops/Lghcfer2", "https://tec.openplanner.team/stops/Lghjans2"], ["https://tec.openplanner.team/stops/N557afa", "https://tec.openplanner.team/stops/N557agb"], ["https://tec.openplanner.team/stops/LoUzent1", "https://tec.openplanner.team/stops/X685afb"], ["https://tec.openplanner.team/stops/LVEfize1", "https://tec.openplanner.team/stops/LVEphar2"], ["https://tec.openplanner.team/stops/Cgyblob2", "https://tec.openplanner.team/stops/Cgynoir1"], ["https://tec.openplanner.team/stops/LeUdepo2", "https://tec.openplanner.team/stops/LeUlasc2"], ["https://tec.openplanner.team/stops/LFyanto2", "https://tec.openplanner.team/stops/LWaruth1"], ["https://tec.openplanner.team/stops/H3bi107b", "https://tec.openplanner.team/stops/H3bi117b"], ["https://tec.openplanner.team/stops/Lhrecol2", "https://tec.openplanner.team/stops/Lhrpaix1"], ["https://tec.openplanner.team/stops/X754apa", "https://tec.openplanner.team/stops/X754apb"], ["https://tec.openplanner.team/stops/H4ce100a", "https://tec.openplanner.team/stops/H4ce100b"], ["https://tec.openplanner.team/stops/Cfogaul2", "https://tec.openplanner.team/stops/Cfometr1"], ["https://tec.openplanner.team/stops/H2se114a", "https://tec.openplanner.team/stops/H2se115a"], ["https://tec.openplanner.team/stops/Lcepass1", "https://tec.openplanner.team/stops/Lcepass2"], ["https://tec.openplanner.team/stops/Bgntpla1", "https://tec.openplanner.team/stops/Bgntpla2"], ["https://tec.openplanner.team/stops/N539aqa", "https://tec.openplanner.team/stops/N539ara"], ["https://tec.openplanner.team/stops/X801cla", "https://tec.openplanner.team/stops/X801cmb"], ["https://tec.openplanner.team/stops/Cmqcend1", "https://tec.openplanner.team/stops/Cmqcend2"], ["https://tec.openplanner.team/stops/Bovehst1", "https://tec.openplanner.team/stops/Bovevnd1"], ["https://tec.openplanner.team/stops/Caircen1", "https://tec.openplanner.team/stops/Cprcits1"], ["https://tec.openplanner.team/stops/LHCmonu4", "https://tec.openplanner.team/stops/LHCruyf1"], ["https://tec.openplanner.team/stops/X561aba", "https://tec.openplanner.team/stops/X561abb"], ["https://tec.openplanner.team/stops/H2an104a", "https://tec.openplanner.team/stops/H2an111b"], ["https://tec.openplanner.team/stops/X938aab", "https://tec.openplanner.team/stops/X950aaa"], ["https://tec.openplanner.team/stops/N506bfa", "https://tec.openplanner.team/stops/N506bfb"], ["https://tec.openplanner.team/stops/LVLeg--2", "https://tec.openplanner.team/stops/LVLmabi2"], ["https://tec.openplanner.team/stops/H4am101a", "https://tec.openplanner.team/stops/H4am102d"], ["https://tec.openplanner.team/stops/LBLvici1", "https://tec.openplanner.team/stops/LBLwaid1"], ["https://tec.openplanner.team/stops/LhGscha*", "https://tec.openplanner.team/stops/LkEherg2"], ["https://tec.openplanner.team/stops/Lmndari2", "https://tec.openplanner.team/stops/Lsmtini1"], ["https://tec.openplanner.team/stops/Cforepo2", "https://tec.openplanner.team/stops/Cforpet1"], ["https://tec.openplanner.team/stops/LmRkreu3", "https://tec.openplanner.team/stops/LmRkreu4"], ["https://tec.openplanner.team/stops/Canboni1", "https://tec.openplanner.team/stops/Cgzhour2"], ["https://tec.openplanner.team/stops/N501hub", "https://tec.openplanner.team/stops/N501ika"], ["https://tec.openplanner.team/stops/LBOande2", "https://tec.openplanner.team/stops/LWRbomb4"], ["https://tec.openplanner.team/stops/H1bb113a", "https://tec.openplanner.team/stops/H1ho133a"], ["https://tec.openplanner.team/stops/X717adb", "https://tec.openplanner.team/stops/X782aea"], ["https://tec.openplanner.team/stops/LRGcana2", "https://tec.openplanner.team/stops/LRGchap1"], ["https://tec.openplanner.team/stops/Bsenpbi2", "https://tec.openplanner.team/stops/Bsensab1"], ["https://tec.openplanner.team/stops/Lgrfalc2", "https://tec.openplanner.team/stops/Llgdesa1"], ["https://tec.openplanner.team/stops/Bsamegl2", "https://tec.openplanner.team/stops/Bsampli1"], ["https://tec.openplanner.team/stops/X897ada", "https://tec.openplanner.team/stops/X897ala"], ["https://tec.openplanner.team/stops/H5bs103a", "https://tec.openplanner.team/stops/H5pe128b"], ["https://tec.openplanner.team/stops/LTPtroi1", "https://tec.openplanner.team/stops/LTPtroi2"], ["https://tec.openplanner.team/stops/N501hmb", "https://tec.openplanner.team/stops/N501itb"], ["https://tec.openplanner.team/stops/Lsepair2", "https://tec.openplanner.team/stops/Lsepair4"], ["https://tec.openplanner.team/stops/Ljubrec2", "https://tec.openplanner.team/stops/Ljubrec3"], ["https://tec.openplanner.team/stops/Bcrncen1", "https://tec.openplanner.team/stops/Bcrncen2"], ["https://tec.openplanner.team/stops/N141aga", "https://tec.openplanner.team/stops/N141ahb"], ["https://tec.openplanner.team/stops/LAMdelh2", "https://tec.openplanner.team/stops/LAMweha1"], ["https://tec.openplanner.team/stops/Btsllec1", "https://tec.openplanner.team/stops/Btsllfp1"], ["https://tec.openplanner.team/stops/LFPkape1", "https://tec.openplanner.team/stops/LFPkape2"], ["https://tec.openplanner.team/stops/X618acb", "https://tec.openplanner.team/stops/X618ala"], ["https://tec.openplanner.team/stops/LMNpt--1", "https://tec.openplanner.team/stops/LMNpt--2"], ["https://tec.openplanner.team/stops/LElcent1", "https://tec.openplanner.team/stops/LElcent2"], ["https://tec.openplanner.team/stops/Blaneli1", "https://tec.openplanner.team/stops/Blaneli2"], ["https://tec.openplanner.team/stops/H1ms251a", "https://tec.openplanner.team/stops/H1ms309b"], ["https://tec.openplanner.team/stops/X801bha", "https://tec.openplanner.team/stops/X801bia"], ["https://tec.openplanner.team/stops/X609agb", "https://tec.openplanner.team/stops/X609alb"], ["https://tec.openplanner.team/stops/LMovieu1", "https://tec.openplanner.team/stops/LMovieu2"], ["https://tec.openplanner.team/stops/Bneedia1", "https://tec.openplanner.team/stops/Bneervc2"], ["https://tec.openplanner.team/stops/Csoforr1", "https://tec.openplanner.team/stops/Csoperi1"], ["https://tec.openplanner.team/stops/Cvpcdec1", "https://tec.openplanner.team/stops/Cvppost1"], ["https://tec.openplanner.team/stops/Cbtbras2", "https://tec.openplanner.team/stops/Cbtgemi2"], ["https://tec.openplanner.team/stops/N521aja", "https://tec.openplanner.team/stops/N521amb"], ["https://tec.openplanner.team/stops/X822ajb", "https://tec.openplanner.team/stops/X836aia"], ["https://tec.openplanner.team/stops/X902aea", "https://tec.openplanner.team/stops/X902ala"], ["https://tec.openplanner.team/stops/X685aia", "https://tec.openplanner.team/stops/X687aaa"], ["https://tec.openplanner.team/stops/LBQmaye2", "https://tec.openplanner.team/stops/X919aaa"], ["https://tec.openplanner.team/stops/LJUfort2", "https://tec.openplanner.team/stops/Lladete4"], ["https://tec.openplanner.team/stops/Bcbqufo2", "https://tec.openplanner.team/stops/Btubois2"], ["https://tec.openplanner.team/stops/N205aca", "https://tec.openplanner.team/stops/N220acb"], ["https://tec.openplanner.team/stops/Llmlaro1", "https://tec.openplanner.team/stops/Lprhodi1"], ["https://tec.openplanner.team/stops/H4ga149a", "https://tec.openplanner.team/stops/H4ha170a"], ["https://tec.openplanner.team/stops/LVbeg--2", "https://tec.openplanner.team/stops/LVbgend2"], ["https://tec.openplanner.team/stops/LeUcroi1", "https://tec.openplanner.team/stops/LeUcroi2"], ["https://tec.openplanner.team/stops/Llgcadr4", "https://tec.openplanner.team/stops/LlgLAMB5"], ["https://tec.openplanner.team/stops/Csslesc2", "https://tec.openplanner.team/stops/Csycant2"], ["https://tec.openplanner.team/stops/Lancolr2", "https://tec.openplanner.team/stops/Lanfran2"], ["https://tec.openplanner.team/stops/N228aeb", "https://tec.openplanner.team/stops/N235adb"], ["https://tec.openplanner.team/stops/N106aob", "https://tec.openplanner.team/stops/N106ara"], ["https://tec.openplanner.team/stops/LBgbaga4", "https://tec.openplanner.team/stops/LBglign2"], ["https://tec.openplanner.team/stops/X901afa", "https://tec.openplanner.team/stops/X901agb"], ["https://tec.openplanner.team/stops/X653aaa", "https://tec.openplanner.team/stops/X667adb"], ["https://tec.openplanner.team/stops/H4ru241a", "https://tec.openplanner.team/stops/H4ty311b"], ["https://tec.openplanner.team/stops/N109aca", "https://tec.openplanner.team/stops/N122aba"], ["https://tec.openplanner.team/stops/LHgroso1", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://tec.openplanner.team/stops/LFIcabi1", "https://tec.openplanner.team/stops/LHaxhig1"], ["https://tec.openplanner.team/stops/X897ama", "https://tec.openplanner.team/stops/X897ana"], ["https://tec.openplanner.team/stops/H4hq130b", "https://tec.openplanner.team/stops/H4mb142a"], ["https://tec.openplanner.team/stops/Cmahotv1", "https://tec.openplanner.team/stops/Cmomoul6"], ["https://tec.openplanner.team/stops/N212aca", "https://tec.openplanner.team/stops/N212acb"], ["https://tec.openplanner.team/stops/H4ty290a", "https://tec.openplanner.team/stops/H4ty290b"], ["https://tec.openplanner.team/stops/Bcsegal2", "https://tec.openplanner.team/stops/Bsmgpla2"], ["https://tec.openplanner.team/stops/LVSslin1", "https://tec.openplanner.team/stops/LVSslin3"], ["https://tec.openplanner.team/stops/Cbiferm1", "https://tec.openplanner.team/stops/Crgmgri2"], ["https://tec.openplanner.team/stops/LREfloh2", "https://tec.openplanner.team/stops/LREsech1"], ["https://tec.openplanner.team/stops/LBWbatt1", "https://tec.openplanner.team/stops/LDAchau1"], ["https://tec.openplanner.team/stops/N532adb", "https://tec.openplanner.team/stops/N532aeb"], ["https://tec.openplanner.team/stops/LAmab752", "https://tec.openplanner.team/stops/LAmvent2"], ["https://tec.openplanner.team/stops/X759afb", "https://tec.openplanner.team/stops/X759aga"], ["https://tec.openplanner.team/stops/Llmeg--*", "https://tec.openplanner.team/stops/LWexhav1"], ["https://tec.openplanner.team/stops/LeUmeye2", "https://tec.openplanner.team/stops/LrAeife1"], ["https://tec.openplanner.team/stops/LeYteeh1", "https://tec.openplanner.team/stops/LeYvoge1"], ["https://tec.openplanner.team/stops/X620aaa", "https://tec.openplanner.team/stops/X620agb"], ["https://tec.openplanner.team/stops/LHdfays1", "https://tec.openplanner.team/stops/LVnetan1"], ["https://tec.openplanner.team/stops/X801cia", "https://tec.openplanner.team/stops/X836acb"], ["https://tec.openplanner.team/stops/X804bma", "https://tec.openplanner.team/stops/X804bpa"], ["https://tec.openplanner.team/stops/H4eq123a", "https://tec.openplanner.team/stops/H4ob110b"], ["https://tec.openplanner.team/stops/N234aeb", "https://tec.openplanner.team/stops/N234afa"], ["https://tec.openplanner.team/stops/H4ty265a", "https://tec.openplanner.team/stops/H4ty360a"], ["https://tec.openplanner.team/stops/Lcepepi1", "https://tec.openplanner.team/stops/Lgrcral1"], ["https://tec.openplanner.team/stops/Lagchen1", "https://tec.openplanner.team/stops/Lagpera1"], ["https://tec.openplanner.team/stops/Lhrbass1", "https://tec.openplanner.team/stops/Llgcoro1"], ["https://tec.openplanner.team/stops/H1lb137b", "https://tec.openplanner.team/stops/H1lb153a"], ["https://tec.openplanner.team/stops/X651acd", "https://tec.openplanner.team/stops/X651ada"], ["https://tec.openplanner.team/stops/Bvirgar1", "https://tec.openplanner.team/stops/Bvirgar2"], ["https://tec.openplanner.team/stops/H1er106b", "https://tec.openplanner.team/stops/H1gg146b"], ["https://tec.openplanner.team/stops/LElverl2", "https://tec.openplanner.team/stops/LTaxhos2"], ["https://tec.openplanner.team/stops/LLemonu1", "https://tec.openplanner.team/stops/LLevaux1"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X725bdb"], ["https://tec.openplanner.team/stops/X548aab", "https://tec.openplanner.team/stops/X777aab"], ["https://tec.openplanner.team/stops/LsVhupp2", "https://tec.openplanner.team/stops/LsVthom2"], ["https://tec.openplanner.team/stops/Boplcar4", "https://tec.openplanner.team/stops/Boplsma3"], ["https://tec.openplanner.team/stops/H2ll173a", "https://tec.openplanner.team/stops/H2ll267b"], ["https://tec.openplanner.team/stops/LCEboll2", "https://tec.openplanner.team/stops/LCEcent2"], ["https://tec.openplanner.team/stops/N501fgb", "https://tec.openplanner.team/stops/N501lya"], ["https://tec.openplanner.team/stops/X619abb", "https://tec.openplanner.team/stops/X619acb"], ["https://tec.openplanner.team/stops/Lenhosp1", "https://tec.openplanner.team/stops/Lenplac1"], ["https://tec.openplanner.team/stops/X723aaa", "https://tec.openplanner.team/stops/X723aca"], ["https://tec.openplanner.team/stops/H1bo106b", "https://tec.openplanner.team/stops/H1bo108b"], ["https://tec.openplanner.team/stops/N544acb", "https://tec.openplanner.team/stops/N544afb"], ["https://tec.openplanner.team/stops/H2na132a", "https://tec.openplanner.team/stops/H2na132b"], ["https://tec.openplanner.team/stops/X992ahb", "https://tec.openplanner.team/stops/X993aga"], ["https://tec.openplanner.team/stops/LEHmarc2", "https://tec.openplanner.team/stops/LNCvann1"], ["https://tec.openplanner.team/stops/LNCesne1", "https://tec.openplanner.team/stops/LNCmada2"], ["https://tec.openplanner.team/stops/Lheente2", "https://tec.openplanner.team/stops/LHSlava2"], ["https://tec.openplanner.team/stops/N343amb", "https://tec.openplanner.team/stops/X343aha"], ["https://tec.openplanner.team/stops/LHCauwe3", "https://tec.openplanner.team/stops/LHCponc3"], ["https://tec.openplanner.team/stops/N543bfa", "https://tec.openplanner.team/stops/N543bgd"], ["https://tec.openplanner.team/stops/N229asa", "https://tec.openplanner.team/stops/N540ala"], ["https://tec.openplanner.team/stops/Bernegl3", "https://tec.openplanner.team/stops/Bernpla1"], ["https://tec.openplanner.team/stops/H1eu103a", "https://tec.openplanner.team/stops/H1eu104a"], ["https://tec.openplanner.team/stops/Loucoti2", "https://tec.openplanner.team/stops/Loudemo2"], ["https://tec.openplanner.team/stops/LGegare1", "https://tec.openplanner.team/stops/LkEbran1"], ["https://tec.openplanner.team/stops/Cgzpjeu2", "https://tec.openplanner.team/stops/Cgzplac4"], ["https://tec.openplanner.team/stops/Cbiferm2", "https://tec.openplanner.team/stops/Ctufleu4"], ["https://tec.openplanner.team/stops/H4te249b", "https://tec.openplanner.team/stops/H4te413a"], ["https://tec.openplanner.team/stops/Btubbot2", "https://tec.openplanner.team/stops/Btubren1"], ["https://tec.openplanner.team/stops/X608ana", "https://tec.openplanner.team/stops/X622aba"], ["https://tec.openplanner.team/stops/X657aha", "https://tec.openplanner.team/stops/X670agb"], ["https://tec.openplanner.team/stops/LESchac1", "https://tec.openplanner.team/stops/LPOwaut2"], ["https://tec.openplanner.team/stops/N301aaa", "https://tec.openplanner.team/stops/X301ara"], ["https://tec.openplanner.team/stops/Cci4bra4", "https://tec.openplanner.team/stops/NC02apb"], ["https://tec.openplanner.team/stops/Bsgetri2", "https://tec.openplanner.team/stops/Bvilcoq2"], ["https://tec.openplanner.team/stops/Bolgegl1", "https://tec.openplanner.team/stops/Bolgfon1"], ["https://tec.openplanner.team/stops/Ccucorb2", "https://tec.openplanner.team/stops/Cgyruis2"], ["https://tec.openplanner.team/stops/LSecomm1", "https://tec.openplanner.team/stops/LSecomm2"], ["https://tec.openplanner.team/stops/Cmmcime2", "https://tec.openplanner.team/stops/Cmmcver1"], ["https://tec.openplanner.team/stops/N543bgd", "https://tec.openplanner.team/stops/N543btb"], ["https://tec.openplanner.team/stops/N531aja", "https://tec.openplanner.team/stops/N531ajb"], ["https://tec.openplanner.team/stops/N228aaa", "https://tec.openplanner.team/stops/N228aea"], ["https://tec.openplanner.team/stops/LhPheps2", "https://tec.openplanner.team/stops/LwEdorf2"], ["https://tec.openplanner.team/stops/LNipre-1", "https://tec.openplanner.team/stops/LNipre-2"], ["https://tec.openplanner.team/stops/LGLc12-3", "https://tec.openplanner.team/stops/LGLcour4"], ["https://tec.openplanner.team/stops/Blimbet3", "https://tec.openplanner.team/stops/Blimeur2"], ["https://tec.openplanner.team/stops/H1ne145b", "https://tec.openplanner.team/stops/H1ne148a"], ["https://tec.openplanner.team/stops/X746agc", "https://tec.openplanner.team/stops/X746ahc"], ["https://tec.openplanner.team/stops/LPOchan1", "https://tec.openplanner.team/stops/LPOchan2"], ["https://tec.openplanner.team/stops/LHUathe1", "https://tec.openplanner.team/stops/LHUpala1"], ["https://tec.openplanner.team/stops/Lgrcral1", "https://tec.openplanner.team/stops/Lgrdefr1"], ["https://tec.openplanner.team/stops/H5rx120a", "https://tec.openplanner.team/stops/H5rx150a"], ["https://tec.openplanner.team/stops/Cchsud04", "https://tec.openplanner.team/stops/Cchsud12"], ["https://tec.openplanner.team/stops/H2go119a", "https://tec.openplanner.team/stops/H2go119b"], ["https://tec.openplanner.team/stops/H1le128a", "https://tec.openplanner.team/stops/H1le128b"], ["https://tec.openplanner.team/stops/Lbocond2", "https://tec.openplanner.team/stops/LPLcite1"], ["https://tec.openplanner.team/stops/H2hg145a", "https://tec.openplanner.team/stops/H2hg150b"], ["https://tec.openplanner.team/stops/X747aha", "https://tec.openplanner.team/stops/X747ahb"], ["https://tec.openplanner.team/stops/Lhulibe2", "https://tec.openplanner.team/stops/Lhutran2"], ["https://tec.openplanner.team/stops/Crodebr1", "https://tec.openplanner.team/stops/Cropcan1"], ["https://tec.openplanner.team/stops/LVIdeva2", "https://tec.openplanner.team/stops/LVIecol2"], ["https://tec.openplanner.team/stops/X715acb", "https://tec.openplanner.team/stops/X716aab"], ["https://tec.openplanner.team/stops/H4ty269a", "https://tec.openplanner.team/stops/H4ty382a"], ["https://tec.openplanner.team/stops/Becepro1", "https://tec.openplanner.team/stops/H3br101b"], ["https://tec.openplanner.team/stops/Lannico3", "https://tec.openplanner.team/stops/Lannico4"], ["https://tec.openplanner.team/stops/N210aab", "https://tec.openplanner.team/stops/X222afb"], ["https://tec.openplanner.team/stops/X398aba", "https://tec.openplanner.team/stops/X398agb"], ["https://tec.openplanner.team/stops/N527abb", "https://tec.openplanner.team/stops/N533apb"], ["https://tec.openplanner.team/stops/X725abb", "https://tec.openplanner.team/stops/X754axb"], ["https://tec.openplanner.team/stops/LSTchef1", "https://tec.openplanner.team/stops/LSTcomm1"], ["https://tec.openplanner.team/stops/X640afa", "https://tec.openplanner.team/stops/X640aga"], ["https://tec.openplanner.team/stops/X886aaa", "https://tec.openplanner.team/stops/X886abb"], ["https://tec.openplanner.team/stops/H1pw121b", "https://tec.openplanner.team/stops/H1wa144b"], ["https://tec.openplanner.team/stops/N507akb", "https://tec.openplanner.team/stops/N508ada"], ["https://tec.openplanner.team/stops/H1wa145a", "https://tec.openplanner.team/stops/H1wa149a"], ["https://tec.openplanner.team/stops/N508ama", "https://tec.openplanner.team/stops/N508aob"], ["https://tec.openplanner.team/stops/Brsrpch1", "https://tec.openplanner.team/stops/Brsrpch2"], ["https://tec.openplanner.team/stops/LHEclef1", "https://tec.openplanner.team/stops/LHEclef2"], ["https://tec.openplanner.team/stops/LSZclem1", "https://tec.openplanner.team/stops/LSZheid1"], ["https://tec.openplanner.team/stops/X912aha", "https://tec.openplanner.team/stops/X912aia"], ["https://tec.openplanner.team/stops/LAWaube1", "https://tec.openplanner.team/stops/LAWdefr1"], ["https://tec.openplanner.team/stops/H4be100a", "https://tec.openplanner.team/stops/H4be149a"], ["https://tec.openplanner.team/stops/H1bo108a", "https://tec.openplanner.team/stops/H1bo108d"], ["https://tec.openplanner.team/stops/H1sy144a", "https://tec.openplanner.team/stops/H1sy150a"], ["https://tec.openplanner.team/stops/H4bs112a", "https://tec.openplanner.team/stops/H4ca123a"], ["https://tec.openplanner.team/stops/Chhegli3", "https://tec.openplanner.team/stops/Cmx3arb2"], ["https://tec.openplanner.team/stops/X773akb", "https://tec.openplanner.team/stops/X773aoa"], ["https://tec.openplanner.team/stops/H1be100b", "https://tec.openplanner.team/stops/H1be104a"], ["https://tec.openplanner.team/stops/H4be113a", "https://tec.openplanner.team/stops/H4be145b"], ["https://tec.openplanner.team/stops/Crcgmah1", "https://tec.openplanner.team/stops/NH03aeb"], ["https://tec.openplanner.team/stops/H1do113a", "https://tec.openplanner.team/stops/H1do117b"], ["https://tec.openplanner.team/stops/LCRchpl2", "https://tec.openplanner.team/stops/LCReg--1"], ["https://tec.openplanner.team/stops/H4og209a", "https://tec.openplanner.team/stops/H4og209b"], ["https://tec.openplanner.team/stops/LSBdelc1", "https://tec.openplanner.team/stops/LSBdelc2"], ["https://tec.openplanner.team/stops/Cmgbrou2", "https://tec.openplanner.team/stops/Cmgslo2"], ["https://tec.openplanner.team/stops/H4ab100b", "https://tec.openplanner.team/stops/H5ar102a"], ["https://tec.openplanner.team/stops/X982awa", "https://tec.openplanner.team/stops/X982cca"], ["https://tec.openplanner.team/stops/Cobcent1", "https://tec.openplanner.team/stops/Cobvill2"], ["https://tec.openplanner.team/stops/LBoegli2", "https://tec.openplanner.team/stops/LOCponc*"], ["https://tec.openplanner.team/stops/X736aab", "https://tec.openplanner.team/stops/X937aca"], ["https://tec.openplanner.team/stops/N138aea", "https://tec.openplanner.team/stops/N138aia"], ["https://tec.openplanner.team/stops/LdEschw2", "https://tec.openplanner.team/stops/LmDwei31"], ["https://tec.openplanner.team/stops/LCUmars1", "https://tec.openplanner.team/stops/NL57aia"], ["https://tec.openplanner.team/stops/N504aca", "https://tec.openplanner.team/stops/N579ada"], ["https://tec.openplanner.team/stops/Loudemo1", "https://tec.openplanner.team/stops/Loutrix1"], ["https://tec.openplanner.team/stops/Bcbqa362", "https://tec.openplanner.team/stops/Bhalcbr2"], ["https://tec.openplanner.team/stops/H2ha139a", "https://tec.openplanner.team/stops/H2ha141b"], ["https://tec.openplanner.team/stops/Cchccom1", "https://tec.openplanner.team/stops/Cchvil21"], ["https://tec.openplanner.team/stops/H4rc232d", "https://tec.openplanner.team/stops/H4rc234b"], ["https://tec.openplanner.team/stops/N270afc", "https://tec.openplanner.team/stops/N270afd"], ["https://tec.openplanner.team/stops/Lanfran3", "https://tec.openplanner.team/stops/Lanyser2"], ["https://tec.openplanner.team/stops/N254aba", "https://tec.openplanner.team/stops/N254acb"], ["https://tec.openplanner.team/stops/Lbrcygn2", "https://tec.openplanner.team/stops/Lbrmour1"], ["https://tec.openplanner.team/stops/N509aja", "https://tec.openplanner.team/stops/N509ala"], ["https://tec.openplanner.team/stops/X602ada", "https://tec.openplanner.team/stops/X602asa"], ["https://tec.openplanner.team/stops/LLTcent2", "https://tec.openplanner.team/stops/LLTcoop2"], ["https://tec.openplanner.team/stops/X921aba", "https://tec.openplanner.team/stops/X921apa"], ["https://tec.openplanner.team/stops/H4ir167a", "https://tec.openplanner.team/stops/H4va232b"], ["https://tec.openplanner.team/stops/X652afc", "https://tec.openplanner.team/stops/X652afd"], ["https://tec.openplanner.team/stops/NC14afa", "https://tec.openplanner.team/stops/NC14afb"], ["https://tec.openplanner.team/stops/N515ara", "https://tec.openplanner.team/stops/N515arb"], ["https://tec.openplanner.team/stops/X907aia", "https://tec.openplanner.team/stops/X938aaa"], ["https://tec.openplanner.team/stops/Btubcvi2", "https://tec.openplanner.team/stops/Btubois2"], ["https://tec.openplanner.team/stops/LSetrix1", "https://tec.openplanner.team/stops/LSetrix2"], ["https://tec.openplanner.team/stops/Cptcamb2", "https://tec.openplanner.team/stops/Cptegli2"], ["https://tec.openplanner.team/stops/X749afb", "https://tec.openplanner.team/stops/X756agb"], ["https://tec.openplanner.team/stops/Llgmako2", "https://tec.openplanner.team/stops/Llgwall1"], ["https://tec.openplanner.team/stops/H5at123a", "https://tec.openplanner.team/stops/H5at137b"], ["https://tec.openplanner.team/stops/H4ga148d", "https://tec.openplanner.team/stops/H4ga160a"], ["https://tec.openplanner.team/stops/Lvefanc1", "https://tec.openplanner.team/stops/Lveptle3"], ["https://tec.openplanner.team/stops/H2bh107b", "https://tec.openplanner.team/stops/H2bh112b"], ["https://tec.openplanner.team/stops/Lrolecl2", "https://tec.openplanner.team/stops/Lronamo1"], ["https://tec.openplanner.team/stops/Bgzddmo2", "https://tec.openplanner.team/stops/Bgzdegl4"], ["https://tec.openplanner.team/stops/Bnivbau1", "https://tec.openplanner.team/stops/Bnivchh1"], ["https://tec.openplanner.team/stops/H4bd110a", "https://tec.openplanner.team/stops/H4ma203b"], ["https://tec.openplanner.team/stops/Lsehya-1", "https://tec.openplanner.team/stops/Lsehya-2"], ["https://tec.openplanner.team/stops/X857aaa", "https://tec.openplanner.team/stops/X857aab"], ["https://tec.openplanner.team/stops/Cnanoir1", "https://tec.openplanner.team/stops/Cnanoir2"], ["https://tec.openplanner.team/stops/X614aab", "https://tec.openplanner.team/stops/X614alb"], ["https://tec.openplanner.team/stops/LsVprum3", "https://tec.openplanner.team/stops/LwLfuss1"], ["https://tec.openplanner.team/stops/LkEbruc2", "https://tec.openplanner.team/stops/LkEsada2"], ["https://tec.openplanner.team/stops/LHUeuro1", "https://tec.openplanner.team/stops/LHUlebe9"], ["https://tec.openplanner.team/stops/N138aac", "https://tec.openplanner.team/stops/N138aca"], ["https://tec.openplanner.team/stops/Cgynoir1", "https://tec.openplanner.team/stops/Cgythio2"], ["https://tec.openplanner.team/stops/Lghchap2", "https://tec.openplanner.team/stops/Lghferr1"], ["https://tec.openplanner.team/stops/LElgerd3", "https://tec.openplanner.team/stops/LElgerd6"], ["https://tec.openplanner.team/stops/Cchba01", "https://tec.openplanner.team/stops/CMba2"], ["https://tec.openplanner.team/stops/LaMjous1", "https://tec.openplanner.team/stops/LaMschw1"], ["https://tec.openplanner.team/stops/X804aaa", "https://tec.openplanner.team/stops/X804acb"], ["https://tec.openplanner.team/stops/H5pe125a", "https://tec.openplanner.team/stops/H5pe127a"], ["https://tec.openplanner.team/stops/H1ms300a", "https://tec.openplanner.team/stops/H1ms400d"], ["https://tec.openplanner.team/stops/X788acb", "https://tec.openplanner.team/stops/X788adb"], ["https://tec.openplanner.team/stops/Lourose4", "https://tec.openplanner.team/stops/Lourose5"], ["https://tec.openplanner.team/stops/Llgchal1", "https://tec.openplanner.team/stops/Llgplat2"], ["https://tec.openplanner.team/stops/X902aua", "https://tec.openplanner.team/stops/X902aub"], ["https://tec.openplanner.team/stops/N540aka", "https://tec.openplanner.team/stops/N540aob"], ["https://tec.openplanner.team/stops/Bsaupco1", "https://tec.openplanner.team/stops/N541aeb"], ["https://tec.openplanner.team/stops/Ladabot2", "https://tec.openplanner.team/stops/Ladplen*"], ["https://tec.openplanner.team/stops/X754aea", "https://tec.openplanner.team/stops/X754afb"], ["https://tec.openplanner.team/stops/H4by119b", "https://tec.openplanner.team/stops/H4ro154b"], ["https://tec.openplanner.team/stops/N135aqa", "https://tec.openplanner.team/stops/N135bbb"], ["https://tec.openplanner.team/stops/Bolpmre1", "https://tec.openplanner.team/stops/Bpthcai2"], ["https://tec.openplanner.team/stops/LPtrefa2", "https://tec.openplanner.team/stops/LrEochs1"], ["https://tec.openplanner.team/stops/LHSfexh1", "https://tec.openplanner.team/stops/LHSfexh2"], ["https://tec.openplanner.team/stops/N365aba", "https://tec.openplanner.team/stops/X344ada"], ["https://tec.openplanner.team/stops/LSldurb2", "https://tec.openplanner.team/stops/X919aoa"], ["https://tec.openplanner.team/stops/Llgchan1", "https://tec.openplanner.team/stops/Llgcouv4"], ["https://tec.openplanner.team/stops/Lfljupi2", "https://tec.openplanner.team/stops/Lrelier1"], ["https://tec.openplanner.team/stops/Cbfegch2", "https://tec.openplanner.team/stops/NC24aia"], ["https://tec.openplanner.team/stops/N308aoa", "https://tec.openplanner.team/stops/N308aob"], ["https://tec.openplanner.team/stops/LFCkett2", "https://tec.openplanner.team/stops/LFCvoge4"], ["https://tec.openplanner.team/stops/Cbmclar1", "https://tec.openplanner.team/stops/Cbmgare1"], ["https://tec.openplanner.team/stops/LJAmari1", "https://tec.openplanner.team/stops/LSWeg--3"], ["https://tec.openplanner.team/stops/N229ara", "https://tec.openplanner.team/stops/N229asa"], ["https://tec.openplanner.team/stops/LFCdree2", "https://tec.openplanner.team/stops/LMaslav3"], ["https://tec.openplanner.team/stops/Bohncha2", "https://tec.openplanner.team/stops/Bohngen2"], ["https://tec.openplanner.team/stops/Lghhoco2", "https://tec.openplanner.team/stops/Lghmont1"], ["https://tec.openplanner.team/stops/Llgjenn2", "https://tec.openplanner.team/stops/Llgjenn4"], ["https://tec.openplanner.team/stops/Barcbav1", "https://tec.openplanner.team/stops/Barcbav2"], ["https://tec.openplanner.team/stops/X626acb", "https://tec.openplanner.team/stops/X626ada"], ["https://tec.openplanner.team/stops/X661ala", "https://tec.openplanner.team/stops/X817agb"], ["https://tec.openplanner.team/stops/N576aaa", "https://tec.openplanner.team/stops/N576aga"], ["https://tec.openplanner.team/stops/N338aea", "https://tec.openplanner.team/stops/N387ahb"], ["https://tec.openplanner.team/stops/N501hdb", "https://tec.openplanner.team/stops/N501lba"], ["https://tec.openplanner.team/stops/X802aza", "https://tec.openplanner.team/stops/X802azb"], ["https://tec.openplanner.team/stops/Lourose1", "https://tec.openplanner.team/stops/Lourose4"], ["https://tec.openplanner.team/stops/Ladloup2", "https://tec.openplanner.team/stops/Ladmoli1"], ["https://tec.openplanner.team/stops/Lbrrobe3", "https://tec.openplanner.team/stops/Lgrfrcu2"], ["https://tec.openplanner.team/stops/H1em107b", "https://tec.openplanner.team/stops/H1em109b"], ["https://tec.openplanner.team/stops/LTheg--2", "https://tec.openplanner.team/stops/LThelse2"], ["https://tec.openplanner.team/stops/LEN183-1", "https://tec.openplanner.team/stops/LEN183-2"], ["https://tec.openplanner.team/stops/Blhutco1", "https://tec.openplanner.team/stops/Blhutco2"], ["https://tec.openplanner.team/stops/Bohnmes3", "https://tec.openplanner.team/stops/Bohnmes4"], ["https://tec.openplanner.team/stops/H1hh111b", "https://tec.openplanner.team/stops/H1hh114b"], ["https://tec.openplanner.team/stops/H1mb130b", "https://tec.openplanner.team/stops/H1mb138b"], ["https://tec.openplanner.team/stops/N542afb", "https://tec.openplanner.team/stops/N542amb"], ["https://tec.openplanner.team/stops/Lscbarg1", "https://tec.openplanner.team/stops/Ltibell2"], ["https://tec.openplanner.team/stops/Lvimc--2", "https://tec.openplanner.team/stops/Lvitour2"], ["https://tec.openplanner.team/stops/X808ajb", "https://tec.openplanner.team/stops/X850alb"], ["https://tec.openplanner.team/stops/X947ada", "https://tec.openplanner.team/stops/X947afb"], ["https://tec.openplanner.team/stops/N562bia", "https://tec.openplanner.team/stops/N562bka"], ["https://tec.openplanner.team/stops/Louegla1", "https://tec.openplanner.team/stops/Louoran1"], ["https://tec.openplanner.team/stops/X770aca", "https://tec.openplanner.team/stops/X771aha"], ["https://tec.openplanner.team/stops/LMOlens1", "https://tec.openplanner.team/stops/LORpave2"], ["https://tec.openplanner.team/stops/X671aea", "https://tec.openplanner.team/stops/X671afa"], ["https://tec.openplanner.team/stops/LSPguer1", "https://tec.openplanner.team/stops/LSPhapa1"], ["https://tec.openplanner.team/stops/Lvcfogu1", "https://tec.openplanner.team/stops/Lvcreve1"], ["https://tec.openplanner.team/stops/H1ne142a", "https://tec.openplanner.team/stops/H1ne142b"], ["https://tec.openplanner.team/stops/X882aga", "https://tec.openplanner.team/stops/X882agb"], ["https://tec.openplanner.team/stops/LOVhetr1", "https://tec.openplanner.team/stops/LSopost2"], ["https://tec.openplanner.team/stops/Laggare1", "https://tec.openplanner.team/stops/Lagptba2"], ["https://tec.openplanner.team/stops/Cfrcoqu1", "https://tec.openplanner.team/stops/Cfrcoqu3"], ["https://tec.openplanner.team/stops/N166aea", "https://tec.openplanner.team/stops/N166aeb"], ["https://tec.openplanner.team/stops/Lghberl1", "https://tec.openplanner.team/stops/Lmomine1"], ["https://tec.openplanner.team/stops/X346aba", "https://tec.openplanner.team/stops/X346abb"], ["https://tec.openplanner.team/stops/Ccogrha1", "https://tec.openplanner.team/stops/Cpceclu2"], ["https://tec.openplanner.team/stops/Cpipost1", "https://tec.openplanner.team/stops/Cpipost2"], ["https://tec.openplanner.team/stops/H4gr109a", "https://tec.openplanner.team/stops/H4ld124b"], ["https://tec.openplanner.team/stops/H2go114d", "https://tec.openplanner.team/stops/H2go117b"], ["https://tec.openplanner.team/stops/LFochap1", "https://tec.openplanner.team/stops/LFothie1"], ["https://tec.openplanner.team/stops/LThplen2", "https://tec.openplanner.team/stops/LThsere2"], ["https://tec.openplanner.team/stops/LAYdieu2", "https://tec.openplanner.team/stops/LAYsupe1"], ["https://tec.openplanner.team/stops/LtH28a-2", "https://tec.openplanner.team/stops/LtHfrie2"], ["https://tec.openplanner.team/stops/LBVcent1", "https://tec.openplanner.team/stops/LBVzand2"], ["https://tec.openplanner.team/stops/NR38aeb", "https://tec.openplanner.team/stops/NR38afa"], ["https://tec.openplanner.team/stops/Bvirmbr2", "https://tec.openplanner.team/stops/Bvirvol1"], ["https://tec.openplanner.team/stops/H1ms307a", "https://tec.openplanner.team/stops/H1ms902a"], ["https://tec.openplanner.team/stops/Brixfro3", "https://tec.openplanner.team/stops/Brixpao3"], ["https://tec.openplanner.team/stops/Cbfdufa2", "https://tec.openplanner.team/stops/Cctlimi2"], ["https://tec.openplanner.team/stops/H4do102a", "https://tec.openplanner.team/stops/H4do106b"], ["https://tec.openplanner.team/stops/Canplal1", "https://tec.openplanner.team/stops/H2an111b"], ["https://tec.openplanner.team/stops/LFLcarr2", "https://tec.openplanner.team/stops/LFLgara2"], ["https://tec.openplanner.team/stops/Bgliaau2", "https://tec.openplanner.team/stops/Bgliopp3"], ["https://tec.openplanner.team/stops/LeUauto1", "https://tec.openplanner.team/stops/LeUauto2"], ["https://tec.openplanner.team/stops/H5fl102d", "https://tec.openplanner.team/stops/H5wo123a"], ["https://tec.openplanner.team/stops/X910aja", "https://tec.openplanner.team/stops/X911aib"], ["https://tec.openplanner.team/stops/X982aqc", "https://tec.openplanner.team/stops/X982bwa"], ["https://tec.openplanner.team/stops/Lmieg--2", "https://tec.openplanner.team/stops/Lmiensp*"], ["https://tec.openplanner.team/stops/LBEabba1", "https://tec.openplanner.team/stops/LBEnina1"], ["https://tec.openplanner.team/stops/X773aca", "https://tec.openplanner.team/stops/X911abb"], ["https://tec.openplanner.team/stops/H1sd344a", "https://tec.openplanner.team/stops/H1sd344b"], ["https://tec.openplanner.team/stops/N134aaa", "https://tec.openplanner.team/stops/N134aab"], ["https://tec.openplanner.team/stops/X660aga", "https://tec.openplanner.team/stops/X660agb"], ["https://tec.openplanner.team/stops/N241aba", "https://tec.openplanner.team/stops/N585aia"], ["https://tec.openplanner.team/stops/Ccosart1", "https://tec.openplanner.team/stops/Crorogn2"], ["https://tec.openplanner.team/stops/H4ty268a", "https://tec.openplanner.team/stops/H4ty328b"], ["https://tec.openplanner.team/stops/N548aca", "https://tec.openplanner.team/stops/N548acd"], ["https://tec.openplanner.team/stops/H4ce101a", "https://tec.openplanner.team/stops/H4mx115b"], ["https://tec.openplanner.team/stops/X907adb", "https://tec.openplanner.team/stops/X907aeb"], ["https://tec.openplanner.team/stops/X659aja", "https://tec.openplanner.team/stops/X659ana"], ["https://tec.openplanner.team/stops/H1po130b", "https://tec.openplanner.team/stops/H5gr137a"], ["https://tec.openplanner.team/stops/Btilsce1", "https://tec.openplanner.team/stops/Bvlvpco1"], ["https://tec.openplanner.team/stops/Csecarr1", "https://tec.openplanner.team/stops/N424aaa"], ["https://tec.openplanner.team/stops/LWOwa161", "https://tec.openplanner.team/stops/LWOwaer2"], ["https://tec.openplanner.team/stops/LTIdjal2", "https://tec.openplanner.team/stops/LTIptme2"], ["https://tec.openplanner.team/stops/Cmmjami3", "https://tec.openplanner.team/stops/Cmmschw2"], ["https://tec.openplanner.team/stops/Lprmoin2", "https://tec.openplanner.team/stops/Lprorem2"], ["https://tec.openplanner.team/stops/LLefali1", "https://tec.openplanner.team/stops/X547aaa"], ["https://tec.openplanner.team/stops/H4eg103b", "https://tec.openplanner.team/stops/H4eg107a"], ["https://tec.openplanner.team/stops/LGEvill2", "https://tec.openplanner.team/stops/LLSba9-1"], ["https://tec.openplanner.team/stops/N351axa", "https://tec.openplanner.team/stops/N390ama"], ["https://tec.openplanner.team/stops/NR38adb", "https://tec.openplanner.team/stops/NR38aeb"], ["https://tec.openplanner.team/stops/N562bna", "https://tec.openplanner.team/stops/N562bwa"], ["https://tec.openplanner.team/stops/LeUclou2", "https://tec.openplanner.team/stops/LeUvoss1"], ["https://tec.openplanner.team/stops/H1eu104a", "https://tec.openplanner.team/stops/H1eu104b"], ["https://tec.openplanner.team/stops/LMAalli2", "https://tec.openplanner.team/stops/LMAcomm2"], ["https://tec.openplanner.team/stops/LbRfrie2", "https://tec.openplanner.team/stops/LtH37c-1"], ["https://tec.openplanner.team/stops/H4jm116a", "https://tec.openplanner.team/stops/H4we137d"], ["https://tec.openplanner.team/stops/NL76apa", "https://tec.openplanner.team/stops/NL76aqa"], ["https://tec.openplanner.team/stops/N211ana", "https://tec.openplanner.team/stops/N211bab"], ["https://tec.openplanner.team/stops/LMheg--1", "https://tec.openplanner.team/stops/Lprtour2"], ["https://tec.openplanner.team/stops/Lbrcard1", "https://tec.openplanner.team/stops/Lbrlama1"], ["https://tec.openplanner.team/stops/N553ama", "https://tec.openplanner.team/stops/N553ana"], ["https://tec.openplanner.team/stops/N228aab", "https://tec.openplanner.team/stops/N270aaa"], ["https://tec.openplanner.team/stops/Lchacie1", "https://tec.openplanner.team/stops/Lwakipe2"], ["https://tec.openplanner.team/stops/Ccuhaie1", "https://tec.openplanner.team/stops/Ccuoise1"], ["https://tec.openplanner.team/stops/X730aaa", "https://tec.openplanner.team/stops/X730aea"], ["https://tec.openplanner.team/stops/N201aia", "https://tec.openplanner.team/stops/N214aba"], ["https://tec.openplanner.team/stops/H3so184a", "https://tec.openplanner.team/stops/H3so184b"], ["https://tec.openplanner.team/stops/H4wn124a", "https://tec.openplanner.team/stops/H4wn128a"], ["https://tec.openplanner.team/stops/N569ana", "https://tec.openplanner.team/stops/N569anb"], ["https://tec.openplanner.team/stops/N525aeb", "https://tec.openplanner.team/stops/N525aec"], ["https://tec.openplanner.team/stops/Berncim3", "https://tec.openplanner.team/stops/Berncim4"], ["https://tec.openplanner.team/stops/H4fo115b", "https://tec.openplanner.team/stops/H4fo117b"], ["https://tec.openplanner.team/stops/Bgrhche1", "https://tec.openplanner.team/stops/Bgrhcro2"], ["https://tec.openplanner.team/stops/X922aha", "https://tec.openplanner.team/stops/X922ajb"], ["https://tec.openplanner.team/stops/LFarhuy2", "https://tec.openplanner.team/stops/LWAipes2"], ["https://tec.openplanner.team/stops/X808aab", "https://tec.openplanner.team/stops/X808aac"], ["https://tec.openplanner.team/stops/Bolgrsa1", "https://tec.openplanner.team/stops/Bolgrsa2"], ["https://tec.openplanner.team/stops/Cmlrbru2", "https://tec.openplanner.team/stops/Cmlsana2"], ["https://tec.openplanner.team/stops/LCxcouv1", "https://tec.openplanner.team/stops/LMolone1"], ["https://tec.openplanner.team/stops/N539aia", "https://tec.openplanner.team/stops/N539ala"], ["https://tec.openplanner.team/stops/Ccosart4", "https://tec.openplanner.team/stops/Csograf4"], ["https://tec.openplanner.team/stops/H4fr146a", "https://tec.openplanner.team/stops/H4ty327a"], ["https://tec.openplanner.team/stops/NL74adb", "https://tec.openplanner.team/stops/NL74agb"], ["https://tec.openplanner.team/stops/Ccygara1", "https://tec.openplanner.team/stops/Ccygara2"], ["https://tec.openplanner.team/stops/LaMhe421", "https://tec.openplanner.team/stops/LaMthei1"], ["https://tec.openplanner.team/stops/N501gva", "https://tec.openplanner.team/stops/N501lbd"], ["https://tec.openplanner.team/stops/LENengi1", "https://tec.openplanner.team/stops/LENgend2"], ["https://tec.openplanner.team/stops/Cchoues2", "https://tec.openplanner.team/stops/Cchviad2"], ["https://tec.openplanner.team/stops/Lagrask2", "https://tec.openplanner.team/stops/Lemlami1"], ["https://tec.openplanner.team/stops/Louvira2", "https://tec.openplanner.team/stops/Louwuid1"], ["https://tec.openplanner.team/stops/X982atb", "https://tec.openplanner.team/stops/X982cda"], ["https://tec.openplanner.team/stops/Cmlasie1", "https://tec.openplanner.team/stops/Cmlcazi1"], ["https://tec.openplanner.team/stops/X948alb", "https://tec.openplanner.team/stops/X948amc"], ["https://tec.openplanner.team/stops/N201aaa", "https://tec.openplanner.team/stops/N201aja"], ["https://tec.openplanner.team/stops/N204ahb", "https://tec.openplanner.team/stops/N204aia"], ["https://tec.openplanner.team/stops/LScchpl2", "https://tec.openplanner.team/stops/LScdina1"], ["https://tec.openplanner.team/stops/H4hg158b", "https://tec.openplanner.team/stops/H4hg160a"], ["https://tec.openplanner.team/stops/X801bpa", "https://tec.openplanner.team/stops/X801caa"], ["https://tec.openplanner.team/stops/N501hta", "https://tec.openplanner.team/stops/N501iub"], ["https://tec.openplanner.team/stops/Cjubert1", "https://tec.openplanner.team/stops/CMmade1"], ["https://tec.openplanner.team/stops/X725bfa", "https://tec.openplanner.team/stops/X725bfb"], ["https://tec.openplanner.team/stops/Bbstchn2", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/X897adb", "https://tec.openplanner.team/stops/X897ara"], ["https://tec.openplanner.team/stops/N549aea", "https://tec.openplanner.team/stops/N550abe"], ["https://tec.openplanner.team/stops/X806acb", "https://tec.openplanner.team/stops/X806akc"], ["https://tec.openplanner.team/stops/Cfocobe1", "https://tec.openplanner.team/stops/CMpetr1"], ["https://tec.openplanner.team/stops/Bjodeco3", "https://tec.openplanner.team/stops/Bjodrdp2"], ["https://tec.openplanner.team/stops/N538aua", "https://tec.openplanner.team/stops/N538bab"], ["https://tec.openplanner.team/stops/X723acb", "https://tec.openplanner.team/stops/X723agb"], ["https://tec.openplanner.team/stops/Boplcar1", "https://tec.openplanner.team/stops/Boplham2"], ["https://tec.openplanner.team/stops/Lanc14v1", "https://tec.openplanner.team/stops/Lrctec-2"], ["https://tec.openplanner.team/stops/X666abb", "https://tec.openplanner.team/stops/X666acb"], ["https://tec.openplanner.team/stops/H4ty321a", "https://tec.openplanner.team/stops/H4ty321b"], ["https://tec.openplanner.team/stops/H4or113a", "https://tec.openplanner.team/stops/H4or115a"], ["https://tec.openplanner.team/stops/LCxcour1", "https://tec.openplanner.team/stops/LCxcour2"], ["https://tec.openplanner.team/stops/H4oe151a", "https://tec.openplanner.team/stops/H4oe152b"], ["https://tec.openplanner.team/stops/LPRfour2", "https://tec.openplanner.team/stops/LSHneuv2"], ["https://tec.openplanner.team/stops/Lrebriq2", "https://tec.openplanner.team/stops/Lrevaul2"], ["https://tec.openplanner.team/stops/H4pl121b", "https://tec.openplanner.team/stops/H4pl137a"], ["https://tec.openplanner.team/stops/X979aoa", "https://tec.openplanner.team/stops/X982bva"], ["https://tec.openplanner.team/stops/N501gpc", "https://tec.openplanner.team/stops/N501mtd"], ["https://tec.openplanner.team/stops/H2hg157b", "https://tec.openplanner.team/stops/H2hg160a"], ["https://tec.openplanner.team/stops/Lanrois1", "https://tec.openplanner.team/stops/Lantonn2"], ["https://tec.openplanner.team/stops/Lhucime1", "https://tec.openplanner.team/stops/Lhuderu2"], ["https://tec.openplanner.team/stops/Bmlnpab1", "https://tec.openplanner.team/stops/Bptbmco1"], ["https://tec.openplanner.team/stops/N531anb", "https://tec.openplanner.team/stops/N531aoa"], ["https://tec.openplanner.team/stops/Bflegar5", "https://tec.openplanner.team/stops/Cflsncb3"], ["https://tec.openplanner.team/stops/LCvoufn1", "https://tec.openplanner.team/stops/LCvoufn2"], ["https://tec.openplanner.team/stops/N132aaa", "https://tec.openplanner.team/stops/N135abb"], ["https://tec.openplanner.team/stops/Cgualno1", "https://tec.openplanner.team/stops/Ctybaco2"], ["https://tec.openplanner.team/stops/Cci28ju1", "https://tec.openplanner.team/stops/Cciferr1"], ["https://tec.openplanner.team/stops/LAWchau2", "https://tec.openplanner.team/stops/LAWroug2"], ["https://tec.openplanner.team/stops/H4es112b", "https://tec.openplanner.team/stops/H4es117b"], ["https://tec.openplanner.team/stops/N252ada", "https://tec.openplanner.team/stops/N252adb"], ["https://tec.openplanner.team/stops/LHUpsar1", "https://tec.openplanner.team/stops/LHUvege2"], ["https://tec.openplanner.team/stops/H1ba111a", "https://tec.openplanner.team/stops/H1ba112a"], ["https://tec.openplanner.team/stops/X619aca", "https://tec.openplanner.team/stops/X619acb"], ["https://tec.openplanner.team/stops/X643aba", "https://tec.openplanner.team/stops/X646abb"], ["https://tec.openplanner.team/stops/X922aba", "https://tec.openplanner.team/stops/X922abb"], ["https://tec.openplanner.team/stops/NL76alb", "https://tec.openplanner.team/stops/NL76alc"], ["https://tec.openplanner.team/stops/Bnilpje1", "https://tec.openplanner.team/stops/Bnilpje2"], ["https://tec.openplanner.team/stops/LGAbois2", "https://tec.openplanner.team/stops/LGAnovi2"], ["https://tec.openplanner.team/stops/LBLcalv2", "https://tec.openplanner.team/stops/LBLplac1"], ["https://tec.openplanner.team/stops/H1gi119c", "https://tec.openplanner.team/stops/H1gi121a"], ["https://tec.openplanner.team/stops/X754aka", "https://tec.openplanner.team/stops/X754awa"], ["https://tec.openplanner.team/stops/Blmlcle1", "https://tec.openplanner.team/stops/Blmlcle2"], ["https://tec.openplanner.team/stops/X650afe", "https://tec.openplanner.team/stops/X658aaa"], ["https://tec.openplanner.team/stops/LBRmc--4", "https://tec.openplanner.team/stops/LBRruel2"], ["https://tec.openplanner.team/stops/LBBpech2", "https://tec.openplanner.team/stops/LMnlogi1"], ["https://tec.openplanner.team/stops/LAyabri1", "https://tec.openplanner.team/stops/Lrechap2"], ["https://tec.openplanner.team/stops/Buccdst2", "https://tec.openplanner.team/stops/Buccobs1"], ["https://tec.openplanner.team/stops/LwAkape2", "https://tec.openplanner.team/stops/LwAlont2"], ["https://tec.openplanner.team/stops/Bnivbau2", "https://tec.openplanner.team/stops/Bnivmet2"], ["https://tec.openplanner.team/stops/H1mb125a", "https://tec.openplanner.team/stops/H1mb127a"], ["https://tec.openplanner.team/stops/Bbrlmez2", "https://tec.openplanner.team/stops/Blkbbeu2"], ["https://tec.openplanner.team/stops/NL77akb", "https://tec.openplanner.team/stops/NL77alb"], ["https://tec.openplanner.team/stops/H1an103b", "https://tec.openplanner.team/stops/H1bx105b"], ["https://tec.openplanner.team/stops/X850afb", "https://tec.openplanner.team/stops/X850aia"], ["https://tec.openplanner.team/stops/H2sb259a", "https://tec.openplanner.team/stops/H3lr110a"], ["https://tec.openplanner.team/stops/Llgjoie3", "https://tec.openplanner.team/stops/Llgrosa2"], ["https://tec.openplanner.team/stops/N565aaa", "https://tec.openplanner.team/stops/N565adb"], ["https://tec.openplanner.team/stops/Llgboux1", "https://tec.openplanner.team/stops/Llgherm2"], ["https://tec.openplanner.team/stops/H1qv110b", "https://tec.openplanner.team/stops/H4be101a"], ["https://tec.openplanner.team/stops/LVLhalb2", "https://tec.openplanner.team/stops/LVLpane1"], ["https://tec.openplanner.team/stops/N504aba", "https://tec.openplanner.team/stops/N579aeb"], ["https://tec.openplanner.team/stops/X801bea", "https://tec.openplanner.team/stops/X801cfb"], ["https://tec.openplanner.team/stops/NL76aha", "https://tec.openplanner.team/stops/NL77acb"], ["https://tec.openplanner.team/stops/N509aca", "https://tec.openplanner.team/stops/N509acc"], ["https://tec.openplanner.team/stops/H4ta122a", "https://tec.openplanner.team/stops/H4ta123a"], ["https://tec.openplanner.team/stops/X608aeb", "https://tec.openplanner.team/stops/X608apb"], ["https://tec.openplanner.team/stops/X642aab", "https://tec.openplanner.team/stops/X646aaa"], ["https://tec.openplanner.team/stops/LFChuis2", "https://tec.openplanner.team/stops/LWRgare1"], ["https://tec.openplanner.team/stops/LaHzoll*", "https://tec.openplanner.team/stops/LrOwahl1"], ["https://tec.openplanner.team/stops/LLxalle1", "https://tec.openplanner.team/stops/LLxalle2"], ["https://tec.openplanner.team/stops/LbTcarm1", "https://tec.openplanner.team/stops/LbTschw1"], ["https://tec.openplanner.team/stops/LSeec--1", "https://tec.openplanner.team/stops/LSeec--2"], ["https://tec.openplanner.team/stops/N110aha", "https://tec.openplanner.team/stops/N111adb"], ["https://tec.openplanner.team/stops/N549ada", "https://tec.openplanner.team/stops/N577aka"], ["https://tec.openplanner.team/stops/Cculgeo1", "https://tec.openplanner.team/stops/Ccutrav2"], ["https://tec.openplanner.team/stops/H1cu113b", "https://tec.openplanner.team/stops/H1fr151b"], ["https://tec.openplanner.team/stops/Llgbruy1", "https://tec.openplanner.team/stops/Llgbruy2"], ["https://tec.openplanner.team/stops/X651aab", "https://tec.openplanner.team/stops/X651ada"], ["https://tec.openplanner.team/stops/X818aba", "https://tec.openplanner.team/stops/X818adb"], ["https://tec.openplanner.team/stops/X780ajb", "https://tec.openplanner.team/stops/X790aka"], ["https://tec.openplanner.team/stops/H2fy121b", "https://tec.openplanner.team/stops/H2fy123b"], ["https://tec.openplanner.team/stops/H4mo154a", "https://tec.openplanner.team/stops/H4mo169a"], ["https://tec.openplanner.team/stops/H4pl117b", "https://tec.openplanner.team/stops/H4pl120a"], ["https://tec.openplanner.team/stops/N117aya", "https://tec.openplanner.team/stops/N117ayb"], ["https://tec.openplanner.team/stops/NH01ala", "https://tec.openplanner.team/stops/NH01alb"], ["https://tec.openplanner.team/stops/LRMeg--1", "https://tec.openplanner.team/stops/X512aib"], ["https://tec.openplanner.team/stops/H1pa106c", "https://tec.openplanner.team/stops/H1pa166b"], ["https://tec.openplanner.team/stops/Cmitrie2", "https://tec.openplanner.team/stops/Csecroi1"], ["https://tec.openplanner.team/stops/N543cba", "https://tec.openplanner.team/stops/N543cca"], ["https://tec.openplanner.team/stops/NH01aoa", "https://tec.openplanner.team/stops/NH01aqb"], ["https://tec.openplanner.team/stops/X602agb", "https://tec.openplanner.team/stops/X602aha"], ["https://tec.openplanner.team/stops/Btubaig1", "https://tec.openplanner.team/stops/Btubmon2"], ["https://tec.openplanner.team/stops/LGecite1", "https://tec.openplanner.team/stops/LGesent2"], ["https://tec.openplanner.team/stops/LeUhaas1", "https://tec.openplanner.team/stops/LeUhaas2"], ["https://tec.openplanner.team/stops/Llonaes2", "https://tec.openplanner.team/stops/Lloross2"], ["https://tec.openplanner.team/stops/Ljubonf2", "https://tec.openplanner.team/stops/Ljufore2"], ["https://tec.openplanner.team/stops/Cwgrans1", "https://tec.openplanner.team/stops/Cwgtill2"], ["https://tec.openplanner.team/stops/LmIvale1", "https://tec.openplanner.team/stops/LmIvale4"], ["https://tec.openplanner.team/stops/N106aia", "https://tec.openplanner.team/stops/N106aib"], ["https://tec.openplanner.team/stops/N117aca", "https://tec.openplanner.team/stops/N147acb"], ["https://tec.openplanner.team/stops/CMleer1", "https://tec.openplanner.team/stops/CMpara2"], ["https://tec.openplanner.team/stops/X714aba", "https://tec.openplanner.team/stops/X714aca"], ["https://tec.openplanner.team/stops/Lprorem2", "https://tec.openplanner.team/stops/Lprorph2"], ["https://tec.openplanner.team/stops/LFebas-2", "https://tec.openplanner.team/stops/LRIcent1"], ["https://tec.openplanner.team/stops/Ccstord2", "https://tec.openplanner.team/stops/Chhdubr2"], ["https://tec.openplanner.team/stops/X646aab", "https://tec.openplanner.team/stops/X646aba"], ["https://tec.openplanner.team/stops/Lsehcoc2", "https://tec.openplanner.team/stops/Lsephar2"], ["https://tec.openplanner.team/stops/LVlroua1", "https://tec.openplanner.team/stops/LVltige2"], ["https://tec.openplanner.team/stops/Bbcogpl1", "https://tec.openplanner.team/stops/H3br102b"], ["https://tec.openplanner.team/stops/H4fl114a", "https://tec.openplanner.team/stops/H4fl114b"], ["https://tec.openplanner.team/stops/Lghhaut1", "https://tec.openplanner.team/stops/Lghhaut2"], ["https://tec.openplanner.team/stops/Bovelge1", "https://tec.openplanner.team/stops/Bovelge2"], ["https://tec.openplanner.team/stops/H2mi123b", "https://tec.openplanner.team/stops/H2mi124b"], ["https://tec.openplanner.team/stops/N118axa", "https://tec.openplanner.team/stops/N118bbb"], ["https://tec.openplanner.team/stops/LDOandr1", "https://tec.openplanner.team/stops/LDOandr3"], ["https://tec.openplanner.team/stops/N501ija", "https://tec.openplanner.team/stops/N501ilb"], ["https://tec.openplanner.team/stops/Lsn184-2", "https://tec.openplanner.team/stops/Lsntvbi2"], ["https://tec.openplanner.team/stops/Bblaall1", "https://tec.openplanner.team/stops/Bblaall2"], ["https://tec.openplanner.team/stops/X740aba", "https://tec.openplanner.team/stops/X740aga"], ["https://tec.openplanner.team/stops/Bwagcus1", "https://tec.openplanner.team/stops/Csawagn2"], ["https://tec.openplanner.team/stops/NL80aib", "https://tec.openplanner.team/stops/NL80aub"], ["https://tec.openplanner.team/stops/Bnivbpe2", "https://tec.openplanner.team/stops/Bnivsho2"], ["https://tec.openplanner.team/stops/LVEh16-1", "https://tec.openplanner.team/stops/LVEhali1"], ["https://tec.openplanner.team/stops/N204afa", "https://tec.openplanner.team/stops/N204afb"], ["https://tec.openplanner.team/stops/Cchviad2", "https://tec.openplanner.team/stops/CMpige1"], ["https://tec.openplanner.team/stops/LDLboul2", "https://tec.openplanner.team/stops/LGMhadr1"], ["https://tec.openplanner.team/stops/X672afa", "https://tec.openplanner.team/stops/X672afb"], ["https://tec.openplanner.team/stops/H5pe139b", "https://tec.openplanner.team/stops/H5pe152b"], ["https://tec.openplanner.team/stops/Cbcha651", "https://tec.openplanner.team/stops/Cbcha652"], ["https://tec.openplanner.team/stops/LHYec--2", "https://tec.openplanner.team/stops/LHYlinc1"], ["https://tec.openplanner.team/stops/Bcharce2", "https://tec.openplanner.team/stops/Bcrnsge1"], ["https://tec.openplanner.team/stops/N120add", "https://tec.openplanner.team/stops/N301aha"], ["https://tec.openplanner.team/stops/Bgnvfai2", "https://tec.openplanner.team/stops/Bgnvqve1"], ["https://tec.openplanner.team/stops/LENparc1", "https://tec.openplanner.team/stops/LGlcite2"], ["https://tec.openplanner.team/stops/LERdeho1", "https://tec.openplanner.team/stops/LERpouh2"], ["https://tec.openplanner.team/stops/H4do102a", "https://tec.openplanner.team/stops/H4sl155b"], ["https://tec.openplanner.team/stops/Bjodced1", "https://tec.openplanner.team/stops/NR10acb"], ["https://tec.openplanner.team/stops/Lrcvinc1", "https://tec.openplanner.team/stops/Lrcvinc2"], ["https://tec.openplanner.team/stops/N232cea", "https://tec.openplanner.team/stops/N260adb"], ["https://tec.openplanner.team/stops/H1fa118a", "https://tec.openplanner.team/stops/H1pe131b"], ["https://tec.openplanner.team/stops/LHGvill1", "https://tec.openplanner.team/stops/LVllieg2"], ["https://tec.openplanner.team/stops/Bblacea2", "https://tec.openplanner.team/stops/Bblaegl2"], ["https://tec.openplanner.team/stops/H5qu150a", "https://tec.openplanner.team/stops/H5qu155a"], ["https://tec.openplanner.team/stops/X754anb", "https://tec.openplanner.team/stops/X754ava"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N313aeb"], ["https://tec.openplanner.team/stops/X664add", "https://tec.openplanner.team/stops/X667adb"], ["https://tec.openplanner.team/stops/H4my121a", "https://tec.openplanner.team/stops/H4my122b"], ["https://tec.openplanner.team/stops/H4hx113b", "https://tec.openplanner.team/stops/H4lu125b"], ["https://tec.openplanner.team/stops/X754ahb", "https://tec.openplanner.team/stops/X754aja"], ["https://tec.openplanner.team/stops/Cfoperz1", "https://tec.openplanner.team/stops/Cfoperz2"], ["https://tec.openplanner.team/stops/H4ga168a", "https://tec.openplanner.team/stops/H4ga169a"], ["https://tec.openplanner.team/stops/Lveleje1", "https://tec.openplanner.team/stops/Lveveou1"], ["https://tec.openplanner.team/stops/N550aab", "https://tec.openplanner.team/stops/N550abd"], ["https://tec.openplanner.team/stops/Bbsigaz1", "https://tec.openplanner.team/stops/Bbsigaz2"], ["https://tec.openplanner.team/stops/LFmcarr1", "https://tec.openplanner.team/stops/LFmgeno2"], ["https://tec.openplanner.team/stops/Cmasncb1", "https://tec.openplanner.team/stops/Cmastfi1"], ["https://tec.openplanner.team/stops/Ccheden1", "https://tec.openplanner.team/stops/Cchoues3"], ["https://tec.openplanner.team/stops/LBivi--1", "https://tec.openplanner.team/stops/LHCquat1"], ["https://tec.openplanner.team/stops/Bmrlsau1", "https://tec.openplanner.team/stops/Bmrlsau2"], ["https://tec.openplanner.team/stops/LAxbott1", "https://tec.openplanner.team/stops/Lhecarc2"], ["https://tec.openplanner.team/stops/N543bqa", "https://tec.openplanner.team/stops/N543bqb"], ["https://tec.openplanner.team/stops/H5pe131a", "https://tec.openplanner.team/stops/H5pe150a"], ["https://tec.openplanner.team/stops/Ladthom1", "https://tec.openplanner.team/stops/Lverema2"], ["https://tec.openplanner.team/stops/H4mx118b", "https://tec.openplanner.team/stops/H4mx119c"], ["https://tec.openplanner.team/stops/X717agc", "https://tec.openplanner.team/stops/X717aja"], ["https://tec.openplanner.team/stops/Cchparc1", "https://tec.openplanner.team/stops/Cchprun1"], ["https://tec.openplanner.team/stops/LClsacr2", "https://tec.openplanner.team/stops/LELhard2"], ["https://tec.openplanner.team/stops/Bbchdev1", "https://tec.openplanner.team/stops/Bbchpil2"], ["https://tec.openplanner.team/stops/LCFchir2", "https://tec.openplanner.team/stops/LFIcabi2"], ["https://tec.openplanner.team/stops/Caccera1", "https://tec.openplanner.team/stops/NC44aeb"], ["https://tec.openplanner.team/stops/X775aca", "https://tec.openplanner.team/stops/X775acb"], ["https://tec.openplanner.team/stops/Lmagara1", "https://tec.openplanner.team/stops/Lmagara2"], ["https://tec.openplanner.team/stops/LFHsucr1", "https://tec.openplanner.team/stops/LFHsucr2"], ["https://tec.openplanner.team/stops/Livgera2", "https://tec.openplanner.team/stops/Livjeu-1"], ["https://tec.openplanner.team/stops/LmHbien2", "https://tec.openplanner.team/stops/LmHburg1"], ["https://tec.openplanner.team/stops/X784abb", "https://tec.openplanner.team/stops/X784ajb"], ["https://tec.openplanner.team/stops/Cjuloos1", "https://tec.openplanner.team/stops/Cjumest1"], ["https://tec.openplanner.team/stops/H4al100b", "https://tec.openplanner.team/stops/H4ty278b"], ["https://tec.openplanner.team/stops/Bhenard1", "https://tec.openplanner.team/stops/Bhenard3"], ["https://tec.openplanner.team/stops/N212aba", "https://tec.openplanner.team/stops/N212ajb"], ["https://tec.openplanner.team/stops/X812aca", "https://tec.openplanner.team/stops/X812afb"], ["https://tec.openplanner.team/stops/X721afb", "https://tec.openplanner.team/stops/X721aia"], ["https://tec.openplanner.team/stops/X805aeb", "https://tec.openplanner.team/stops/X869aab"], ["https://tec.openplanner.team/stops/H1wa157b", "https://tec.openplanner.team/stops/H1wg125c"], ["https://tec.openplanner.team/stops/N533afb", "https://tec.openplanner.team/stops/N551aba"], ["https://tec.openplanner.team/stops/LBkwind2", "https://tec.openplanner.team/stops/LWEmito1"], ["https://tec.openplanner.team/stops/N528asb", "https://tec.openplanner.team/stops/N528aua"], ["https://tec.openplanner.team/stops/Lstamph2", "https://tec.openplanner.team/stops/Lstchim2"], ["https://tec.openplanner.team/stops/X615aqa", "https://tec.openplanner.team/stops/X615aqb"], ["https://tec.openplanner.team/stops/Bblabar1", "https://tec.openplanner.team/stops/Bblajap1"], ["https://tec.openplanner.team/stops/N570agb", "https://tec.openplanner.team/stops/N585alb"], ["https://tec.openplanner.team/stops/X396aea", "https://tec.openplanner.team/stops/X396aeb"], ["https://tec.openplanner.team/stops/H1gg115a", "https://tec.openplanner.team/stops/H1gg115b"], ["https://tec.openplanner.team/stops/Cctpano2", "https://tec.openplanner.team/stops/NC11alb"], ["https://tec.openplanner.team/stops/N135bba", "https://tec.openplanner.team/stops/N135bea"], ["https://tec.openplanner.team/stops/Bmelenf1", "https://tec.openplanner.team/stops/Bmelsab1"], ["https://tec.openplanner.team/stops/LMoeg--1", "https://tec.openplanner.team/stops/LMoviel1"], ["https://tec.openplanner.team/stops/LGEcons1", "https://tec.openplanner.team/stops/LHgroso2"], ["https://tec.openplanner.team/stops/Llgchau2", "https://tec.openplanner.team/stops/Llgglai2"], ["https://tec.openplanner.team/stops/Bpechos1", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://tec.openplanner.team/stops/X601bfa", "https://tec.openplanner.team/stops/X601bfb"], ["https://tec.openplanner.team/stops/Cjupllo2", "https://tec.openplanner.team/stops/Clostan1"], ["https://tec.openplanner.team/stops/Bplncsd2", "https://tec.openplanner.team/stops/Bwatmgo3"], ["https://tec.openplanner.team/stops/X747aab", "https://tec.openplanner.team/stops/X747aac"], ["https://tec.openplanner.team/stops/Cfcgar1", "https://tec.openplanner.team/stops/Cfcgar2"], ["https://tec.openplanner.team/stops/H4bc102b", "https://tec.openplanner.team/stops/H4bc108b"], ["https://tec.openplanner.team/stops/LNIdoma1", "https://tec.openplanner.team/stops/LSZjona2"], ["https://tec.openplanner.team/stops/Bgembhe1", "https://tec.openplanner.team/stops/N541aba"], ["https://tec.openplanner.team/stops/N155aga", "https://tec.openplanner.team/stops/N160acb"], ["https://tec.openplanner.team/stops/N155aja", "https://tec.openplanner.team/stops/NC14avb"], ["https://tec.openplanner.team/stops/H1hb197a", "https://tec.openplanner.team/stops/H1si153a"], ["https://tec.openplanner.team/stops/Lghsimo2", "https://tec.openplanner.team/stops/Lmolagu1"], ["https://tec.openplanner.team/stops/LFUfonc1", "https://tec.openplanner.team/stops/LWDcime2"], ["https://tec.openplanner.team/stops/H4ty285a", "https://tec.openplanner.team/stops/H4ty335a"], ["https://tec.openplanner.team/stops/N117aba", "https://tec.openplanner.team/stops/N145ahb"], ["https://tec.openplanner.team/stops/Cmosaba2", "https://tec.openplanner.team/stops/Cmosaba3"], ["https://tec.openplanner.team/stops/X343aic", "https://tec.openplanner.team/stops/X892aga"], ["https://tec.openplanner.team/stops/LBpberl1", "https://tec.openplanner.team/stops/LBpcren2"], ["https://tec.openplanner.team/stops/Cfrchro2", "https://tec.openplanner.team/stops/Cfrgare3"], ["https://tec.openplanner.team/stops/LbOvith1", "https://tec.openplanner.team/stops/LnEleje2"], ["https://tec.openplanner.team/stops/Bbghsta3", "https://tec.openplanner.team/stops/Bstesar1"], ["https://tec.openplanner.team/stops/Bincegl1", "https://tec.openplanner.team/stops/Binclib2"], ["https://tec.openplanner.team/stops/H4gr108b", "https://tec.openplanner.team/stops/H4gr110b"], ["https://tec.openplanner.team/stops/X812aia", "https://tec.openplanner.team/stops/X812ata"], ["https://tec.openplanner.team/stops/LROmorf1", "https://tec.openplanner.team/stops/LWahetr2"], ["https://tec.openplanner.team/stops/H1vt195a", "https://tec.openplanner.team/stops/H1vt196b"], ["https://tec.openplanner.team/stops/N501boa", "https://tec.openplanner.team/stops/N501jma"], ["https://tec.openplanner.team/stops/X901axb", "https://tec.openplanner.team/stops/X902bfa"], ["https://tec.openplanner.team/stops/X666agb", "https://tec.openplanner.team/stops/X666aha"], ["https://tec.openplanner.team/stops/X873aaa", "https://tec.openplanner.team/stops/X873aba"], ["https://tec.openplanner.team/stops/X901ada", "https://tec.openplanner.team/stops/X901bra"], ["https://tec.openplanner.team/stops/X802aja", "https://tec.openplanner.team/stops/X802aza"], ["https://tec.openplanner.team/stops/X759agb", "https://tec.openplanner.team/stops/X840abb"], ["https://tec.openplanner.team/stops/X390ajb", "https://tec.openplanner.team/stops/X390apb"], ["https://tec.openplanner.team/stops/Btubnco2", "https://tec.openplanner.team/stops/Btubsca1"], ["https://tec.openplanner.team/stops/X804bka", "https://tec.openplanner.team/stops/X804cba"], ["https://tec.openplanner.team/stops/H2ep144a", "https://tec.openplanner.team/stops/H2re175b"], ["https://tec.openplanner.team/stops/H4br107a", "https://tec.openplanner.team/stops/H4br109a"], ["https://tec.openplanner.team/stops/LwMzoll1", "https://tec.openplanner.team/stops/X793aqa"], ["https://tec.openplanner.team/stops/N576ada", "https://tec.openplanner.team/stops/N576adb"], ["https://tec.openplanner.team/stops/LLmcarr2", "https://tec.openplanner.team/stops/LLmwaut1"], ["https://tec.openplanner.team/stops/H1cd111c", "https://tec.openplanner.team/stops/H1hr128a"], ["https://tec.openplanner.team/stops/X793afc", "https://tec.openplanner.team/stops/X793agb"], ["https://tec.openplanner.team/stops/Cfmsncb2", "https://tec.openplanner.team/stops/H2tz115b"], ["https://tec.openplanner.team/stops/LLirout1", "https://tec.openplanner.team/stops/LRemorr4"], ["https://tec.openplanner.team/stops/Bjodpvi1", "https://tec.openplanner.team/stops/Bjodsme1"], ["https://tec.openplanner.team/stops/X664aga", "https://tec.openplanner.team/stops/X664asa"], ["https://tec.openplanner.team/stops/X938abb", "https://tec.openplanner.team/stops/X939aeb"], ["https://tec.openplanner.team/stops/LHmferm2", "https://tec.openplanner.team/stops/LLbvith1"], ["https://tec.openplanner.team/stops/H5bl115d", "https://tec.openplanner.team/stops/H5bl119d"], ["https://tec.openplanner.team/stops/Bnivhut1", "https://tec.openplanner.team/stops/Bptrlux1"], ["https://tec.openplanner.team/stops/Bwlhpmt2", "https://tec.openplanner.team/stops/Bwspbbo1"], ["https://tec.openplanner.team/stops/Cmmramb1", "https://tec.openplanner.team/stops/Cmybefe1"], ["https://tec.openplanner.team/stops/Bblaadm1", "https://tec.openplanner.team/stops/Bblabar1"], ["https://tec.openplanner.team/stops/N357aeb", "https://tec.openplanner.team/stops/N988aaa"], ["https://tec.openplanner.team/stops/X747alb", "https://tec.openplanner.team/stops/X754agb"], ["https://tec.openplanner.team/stops/Lbrcard2", "https://tec.openplanner.team/stops/Lbrfusi1"], ["https://tec.openplanner.team/stops/H3so156a", "https://tec.openplanner.team/stops/H3so156b"], ["https://tec.openplanner.team/stops/Llgbatt2", "https://tec.openplanner.team/stops/Llgcamp2"], ["https://tec.openplanner.team/stops/Cci4bra3", "https://tec.openplanner.team/stops/Cmlaili1"], ["https://tec.openplanner.team/stops/H1al107a", "https://tec.openplanner.team/stops/H1bs110c"], ["https://tec.openplanner.team/stops/LSZcock1", "https://tec.openplanner.team/stops/LWycarr1"], ["https://tec.openplanner.team/stops/H2fa102b", "https://tec.openplanner.team/stops/H2fa104a"], ["https://tec.openplanner.team/stops/X756aea", "https://tec.openplanner.team/stops/X756aed"], ["https://tec.openplanner.team/stops/N571aba", "https://tec.openplanner.team/stops/N571aka"], ["https://tec.openplanner.team/stops/H5qu153a", "https://tec.openplanner.team/stops/H5qu155a"], ["https://tec.openplanner.team/stops/X908apa", "https://tec.openplanner.team/stops/X908apb"], ["https://tec.openplanner.team/stops/Cmbborn1", "https://tec.openplanner.team/stops/Cmbcime3"], ["https://tec.openplanner.team/stops/X879aja", "https://tec.openplanner.team/stops/X879ana"], ["https://tec.openplanner.team/stops/X345aca", "https://tec.openplanner.team/stops/X363aca"], ["https://tec.openplanner.team/stops/N155aja", "https://tec.openplanner.team/stops/N160ahb"], ["https://tec.openplanner.team/stops/N340aea", "https://tec.openplanner.team/stops/N340aeb"], ["https://tec.openplanner.team/stops/LbUbutg2", "https://tec.openplanner.team/stops/LbUmalm1"], ["https://tec.openplanner.team/stops/Bchgbar1", "https://tec.openplanner.team/stops/Bchgbru1"], ["https://tec.openplanner.team/stops/Bbonegl1", "https://tec.openplanner.team/stops/Bdvminc2"], ["https://tec.openplanner.team/stops/Bblacco1", "https://tec.openplanner.team/stops/Bwatbno2"], ["https://tec.openplanner.team/stops/LTRoasi1", "https://tec.openplanner.team/stops/LTRsain2"], ["https://tec.openplanner.team/stops/LBgnach1", "https://tec.openplanner.team/stops/LBgnach2"], ["https://tec.openplanner.team/stops/LbTschw2", "https://tec.openplanner.team/stops/LbUwhon1"], ["https://tec.openplanner.team/stops/Cwfcast1", "https://tec.openplanner.team/stops/NC23aga"], ["https://tec.openplanner.team/stops/Bbsgrve1", "https://tec.openplanner.team/stops/Bnettir1"], ["https://tec.openplanner.team/stops/H4wi175a", "https://tec.openplanner.team/stops/H4wi175b"], ["https://tec.openplanner.team/stops/LaMhe831", "https://tec.openplanner.team/stops/LaMschr2"], ["https://tec.openplanner.team/stops/X907aib", "https://tec.openplanner.team/stops/X908aoa"], ["https://tec.openplanner.team/stops/X610aca", "https://tec.openplanner.team/stops/X610acb"], ["https://tec.openplanner.team/stops/H1vs146a", "https://tec.openplanner.team/stops/H1vs146b"], ["https://tec.openplanner.team/stops/LLTgole1", "https://tec.openplanner.team/stops/LTOeg--2"], ["https://tec.openplanner.team/stops/Bsgipha3", "https://tec.openplanner.team/stops/Bsgipmo2"], ["https://tec.openplanner.team/stops/LOLbout2", "https://tec.openplanner.team/stops/LXHadam2"], ["https://tec.openplanner.team/stops/X662acb", "https://tec.openplanner.team/stops/X663afa"], ["https://tec.openplanner.team/stops/Bwatali1", "https://tec.openplanner.team/stops/Bwatpas1"], ["https://tec.openplanner.team/stops/LHUanth2", "https://tec.openplanner.team/stops/LHUetie*"], ["https://tec.openplanner.team/stops/H1gh143b", "https://tec.openplanner.team/stops/H1gh171b"], ["https://tec.openplanner.team/stops/X733ajb", "https://tec.openplanner.team/stops/X734aka"], ["https://tec.openplanner.team/stops/H1vt192a", "https://tec.openplanner.team/stops/H1vt192b"], ["https://tec.openplanner.team/stops/N236ajb", "https://tec.openplanner.team/stops/N236apb"], ["https://tec.openplanner.team/stops/LVMchpl1", "https://tec.openplanner.team/stops/LVMfoli2"], ["https://tec.openplanner.team/stops/H1al146a", "https://tec.openplanner.team/stops/H1bl100a"], ["https://tec.openplanner.team/stops/LTRfica1", "https://tec.openplanner.team/stops/LTRfica2"], ["https://tec.openplanner.team/stops/Lbrgrot2", "https://tec.openplanner.team/stops/Llggeer3"], ["https://tec.openplanner.team/stops/Bwatnrs1", "https://tec.openplanner.team/stops/Bwatppa1"], ["https://tec.openplanner.team/stops/N506bab", "https://tec.openplanner.team/stops/N506bad"], ["https://tec.openplanner.team/stops/LBYegli2", "https://tec.openplanner.team/stops/Lgdblom2"], ["https://tec.openplanner.team/stops/LMIterr1", "https://tec.openplanner.team/stops/LSOfech2"], ["https://tec.openplanner.team/stops/Cfacamp1", "https://tec.openplanner.team/stops/Cfaetoi2"], ["https://tec.openplanner.team/stops/Cjufour4", "https://tec.openplanner.team/stops/Cjupui01"], ["https://tec.openplanner.team/stops/LCIsucr1", "https://tec.openplanner.team/stops/LVPduvi2"], ["https://tec.openplanner.team/stops/Cjuchli1", "https://tec.openplanner.team/stops/Cjuchli2"], ["https://tec.openplanner.team/stops/H2sv212b", "https://tec.openplanner.team/stops/H2tr246a"], ["https://tec.openplanner.team/stops/N539aha", "https://tec.openplanner.team/stops/N539ata"], ["https://tec.openplanner.team/stops/LMomonc2", "https://tec.openplanner.team/stops/LMovieu1"], ["https://tec.openplanner.team/stops/X897afb", "https://tec.openplanner.team/stops/X951acb"], ["https://tec.openplanner.team/stops/N331aja", "https://tec.openplanner.team/stops/N331ajb"], ["https://tec.openplanner.team/stops/H1ms296a", "https://tec.openplanner.team/stops/H1ms923a"], ["https://tec.openplanner.team/stops/X601afa", "https://tec.openplanner.team/stops/X601afb"], ["https://tec.openplanner.team/stops/Lhrpaep2", "https://tec.openplanner.team/stops/Llghori1"], ["https://tec.openplanner.team/stops/Bfelbri1", "https://tec.openplanner.team/stops/Bfelgar2"], ["https://tec.openplanner.team/stops/LwYcafe1", "https://tec.openplanner.team/stops/LwYneue1"], ["https://tec.openplanner.team/stops/H2mi122a", "https://tec.openplanner.team/stops/H3lr111a"], ["https://tec.openplanner.team/stops/LkTkabi2", "https://tec.openplanner.team/stops/LwAkett2"], ["https://tec.openplanner.team/stops/Cchjaur1", "https://tec.openplanner.team/stops/Cdasama2"], ["https://tec.openplanner.team/stops/Cbckios1", "https://tec.openplanner.team/stops/Clfpomm2"], ["https://tec.openplanner.team/stops/LmIvale2", "https://tec.openplanner.team/stops/LmIzent1"], ["https://tec.openplanner.team/stops/LESgran1", "https://tec.openplanner.team/stops/LFNhame1"], ["https://tec.openplanner.team/stops/Cvllerm1", "https://tec.openplanner.team/stops/Cvllerm2"], ["https://tec.openplanner.team/stops/Lhrferr2", "https://tec.openplanner.team/stops/Lhrlaix2"], ["https://tec.openplanner.team/stops/N343ada", "https://tec.openplanner.team/stops/X345aaa"], ["https://tec.openplanner.team/stops/Lceembo1", "https://tec.openplanner.team/stops/Lemmeha2"], ["https://tec.openplanner.team/stops/Clodesc2", "https://tec.openplanner.team/stops/Clomart1"], ["https://tec.openplanner.team/stops/Clbentr1", "https://tec.openplanner.team/stops/Cthpano1"], ["https://tec.openplanner.team/stops/LbTaral1", "https://tec.openplanner.team/stops/LbThau11"], ["https://tec.openplanner.team/stops/N501boa", "https://tec.openplanner.team/stops/N501bpb"], ["https://tec.openplanner.team/stops/H4do102b", "https://tec.openplanner.team/stops/H4do202b"], ["https://tec.openplanner.team/stops/Llianix1", "https://tec.openplanner.team/stops/Llianix3"], ["https://tec.openplanner.team/stops/N508ajb", "https://tec.openplanner.team/stops/N508alb"], ["https://tec.openplanner.team/stops/Cmmschw1", "https://tec.openplanner.team/stops/Cmmserv3"], ["https://tec.openplanner.team/stops/Llgsnap1", "https://tec.openplanner.team/stops/Llgsnap2"], ["https://tec.openplanner.team/stops/X750aoa", "https://tec.openplanner.team/stops/X750aob"], ["https://tec.openplanner.team/stops/LBWbatt1", "https://tec.openplanner.team/stops/LBWviad1"], ["https://tec.openplanner.team/stops/Blimch%C3%A21", "https://tec.openplanner.team/stops/Brixbai2"], ["https://tec.openplanner.team/stops/LHrchat1", "https://tec.openplanner.team/stops/LHreg--1"], ["https://tec.openplanner.team/stops/LNEvand1", "https://tec.openplanner.team/stops/LNEvand2"], ["https://tec.openplanner.team/stops/Lhrchar2", "https://tec.openplanner.team/stops/Lhrchar3"], ["https://tec.openplanner.team/stops/H4ga151a", "https://tec.openplanner.team/stops/H4ga156a"], ["https://tec.openplanner.team/stops/Cmadeli2", "https://tec.openplanner.team/stops/Cmamons1"], ["https://tec.openplanner.team/stops/Bbauegl1", "https://tec.openplanner.team/stops/Bbauegl2"], ["https://tec.openplanner.team/stops/LHUhsar2", "https://tec.openplanner.team/stops/LHUtrin2"], ["https://tec.openplanner.team/stops/N357aab", "https://tec.openplanner.team/stops/N357aba"], ["https://tec.openplanner.team/stops/Lseboia1", "https://tec.openplanner.team/stops/Lsedavy1"], ["https://tec.openplanner.team/stops/X371aca", "https://tec.openplanner.team/stops/X371acb"], ["https://tec.openplanner.team/stops/H5rx102b", "https://tec.openplanner.team/stops/H5rx144b"], ["https://tec.openplanner.team/stops/N519aga", "https://tec.openplanner.team/stops/N519aoa"], ["https://tec.openplanner.team/stops/Ljubrec1", "https://tec.openplanner.team/stops/Ljucano2"], ["https://tec.openplanner.team/stops/LaMpark1", "https://tec.openplanner.team/stops/LaMpost1"], ["https://tec.openplanner.team/stops/N501gra", "https://tec.openplanner.team/stops/N501gre"], ["https://tec.openplanner.team/stops/X359aac", "https://tec.openplanner.team/stops/X371aca"], ["https://tec.openplanner.team/stops/Lsebrun1", "https://tec.openplanner.team/stops/Lsebrun3"], ["https://tec.openplanner.team/stops/LLeeco-1", "https://tec.openplanner.team/stops/X547aeb"], ["https://tec.openplanner.team/stops/LPOthom2", "https://tec.openplanner.team/stops/LSdcarr1"], ["https://tec.openplanner.team/stops/H2sb236c", "https://tec.openplanner.team/stops/H2sb239c"], ["https://tec.openplanner.team/stops/LwYboui1", "https://tec.openplanner.team/stops/LwYboui2"], ["https://tec.openplanner.team/stops/LSParca1", "https://tec.openplanner.team/stops/LSPentr1"], ["https://tec.openplanner.team/stops/N558aaa", "https://tec.openplanner.team/stops/NL67aaa"], ["https://tec.openplanner.team/stops/X801cjb", "https://tec.openplanner.team/stops/X801cna"], ["https://tec.openplanner.team/stops/N101ala", "https://tec.openplanner.team/stops/N101aua"], ["https://tec.openplanner.team/stops/LETtemp2", "https://tec.openplanner.team/stops/Lretill1"], ["https://tec.openplanner.team/stops/X764agb", "https://tec.openplanner.team/stops/X765aea"], ["https://tec.openplanner.team/stops/H4ae102b", "https://tec.openplanner.team/stops/H5el100a"], ["https://tec.openplanner.team/stops/X617aga", "https://tec.openplanner.team/stops/X625ada"], ["https://tec.openplanner.team/stops/H5pe135a", "https://tec.openplanner.team/stops/H5pe142a"], ["https://tec.openplanner.team/stops/LsVfrie1", "https://tec.openplanner.team/stops/LsVfrie2"], ["https://tec.openplanner.team/stops/LCxbeau1", "https://tec.openplanner.team/stops/LCxwarr1"], ["https://tec.openplanner.team/stops/Bosqcim2", "https://tec.openplanner.team/stops/Btubpir2"], ["https://tec.openplanner.team/stops/N538aea", "https://tec.openplanner.team/stops/N538aeb"], ["https://tec.openplanner.team/stops/Bkrapri2", "https://tec.openplanner.team/stops/Bwolkra2"], ["https://tec.openplanner.team/stops/H4be102b", "https://tec.openplanner.team/stops/H4be107a"], ["https://tec.openplanner.team/stops/Brixblh3", "https://tec.openplanner.team/stops/Brixrmo1"], ["https://tec.openplanner.team/stops/X796afa", "https://tec.openplanner.team/stops/X796afb"], ["https://tec.openplanner.team/stops/Lvegc-1*", "https://tec.openplanner.team/stops/Lveyser1"], ["https://tec.openplanner.team/stops/Bbryfon2", "https://tec.openplanner.team/stops/Bsambra2"], ["https://tec.openplanner.team/stops/X666aaa", "https://tec.openplanner.team/stops/X666aab"], ["https://tec.openplanner.team/stops/Lsnpaqu1", "https://tec.openplanner.team/stops/Lsnpaqu2"], ["https://tec.openplanner.team/stops/N874ala", "https://tec.openplanner.team/stops/X874apb"], ["https://tec.openplanner.team/stops/Llglill2", "https://tec.openplanner.team/stops/Llgplai2"], ["https://tec.openplanner.team/stops/Clooues1", "https://tec.openplanner.team/stops/Clooues3"], ["https://tec.openplanner.team/stops/Bboutry2", "https://tec.openplanner.team/stops/Bbsthpl2"], ["https://tec.openplanner.team/stops/H4ag101a", "https://tec.openplanner.team/stops/H4ag104a"], ["https://tec.openplanner.team/stops/LlgCATH1", "https://tec.openplanner.team/stops/LlgR-F1*"], ["https://tec.openplanner.team/stops/LBNpleg1", "https://tec.openplanner.team/stops/LBNvill1"], ["https://tec.openplanner.team/stops/Ldiinte1", "https://tec.openplanner.team/stops/Ldijean2"], ["https://tec.openplanner.team/stops/Bbiemse1", "https://tec.openplanner.team/stops/Bgzdfpo1"], ["https://tec.openplanner.team/stops/Beclpma1", "https://tec.openplanner.team/stops/H2ec106a"], ["https://tec.openplanner.team/stops/LhOzent2", "https://tec.openplanner.team/stops/LhUkreu2"], ["https://tec.openplanner.team/stops/LeUgutl1", "https://tec.openplanner.team/stops/LeUindu1"], ["https://tec.openplanner.team/stops/Lfhdone2", "https://tec.openplanner.team/stops/Lseivoz1"], ["https://tec.openplanner.team/stops/LCObouh1", "https://tec.openplanner.team/stops/LSNretr1"], ["https://tec.openplanner.team/stops/Landolh3", "https://tec.openplanner.team/stops/Lanhoud3"], ["https://tec.openplanner.team/stops/H1bb116b", "https://tec.openplanner.team/stops/H1bb116c"], ["https://tec.openplanner.team/stops/LTgjalh1", "https://tec.openplanner.team/stops/LTgsous1"], ["https://tec.openplanner.team/stops/X658aga", "https://tec.openplanner.team/stops/X658agb"], ["https://tec.openplanner.team/stops/Bbeubos2", "https://tec.openplanner.team/stops/N574aea"], ["https://tec.openplanner.team/stops/Lpeptwa1", "https://tec.openplanner.team/stops/LWerola2"], ["https://tec.openplanner.team/stops/Btsllbv1", "https://tec.openplanner.team/stops/Btsllbv2"], ["https://tec.openplanner.team/stops/Cfcleco1", "https://tec.openplanner.team/stops/Cfcleco2"], ["https://tec.openplanner.team/stops/Lhefoot2", "https://tec.openplanner.team/stops/Lhepaqu1"], ["https://tec.openplanner.team/stops/H2ha135c", "https://tec.openplanner.team/stops/H2tr254b"], ["https://tec.openplanner.team/stops/Lmojans1", "https://tec.openplanner.team/stops/Lmopota2"], ["https://tec.openplanner.team/stops/LLrbano2", "https://tec.openplanner.team/stops/LLrpape2"], ["https://tec.openplanner.team/stops/N162aba", "https://tec.openplanner.team/stops/N162aca"], ["https://tec.openplanner.team/stops/LJUfort1", "https://tec.openplanner.team/stops/Llaacca2"], ["https://tec.openplanner.team/stops/Lsestap1", "https://tec.openplanner.team/stops/Lsestap4"], ["https://tec.openplanner.team/stops/LeUbael1", "https://tec.openplanner.team/stops/LlNbruc1"], ["https://tec.openplanner.team/stops/Blthbss2", "https://tec.openplanner.team/stops/Blthwav1"], ["https://tec.openplanner.team/stops/X601bbd", "https://tec.openplanner.team/stops/X601cza"], ["https://tec.openplanner.team/stops/Cclbarb1", "https://tec.openplanner.team/stops/Cstvape2"], ["https://tec.openplanner.team/stops/LrcarsT1", "https://tec.openplanner.team/stops/Lrchero2"], ["https://tec.openplanner.team/stops/LLycent*", "https://tec.openplanner.team/stops/LXflong1"], ["https://tec.openplanner.team/stops/Lhutill1", "https://tec.openplanner.team/stops/Lvegend1"], ["https://tec.openplanner.team/stops/N214aha", "https://tec.openplanner.team/stops/N214ahb"], ["https://tec.openplanner.team/stops/H2sb227a", "https://tec.openplanner.team/stops/H2sb259b"], ["https://tec.openplanner.team/stops/Bwategb1", "https://tec.openplanner.team/stops/Bwatfva1"], ["https://tec.openplanner.team/stops/X793aba", "https://tec.openplanner.team/stops/X793apa"], ["https://tec.openplanner.team/stops/Clcfall4", "https://tec.openplanner.team/stops/Clgrsoc2"], ["https://tec.openplanner.team/stops/X595aba", "https://tec.openplanner.team/stops/X595abb"], ["https://tec.openplanner.team/stops/N244ahb", "https://tec.openplanner.team/stops/N244aib"], ["https://tec.openplanner.team/stops/LHdkenn1", "https://tec.openplanner.team/stops/LHdkenn2"], ["https://tec.openplanner.team/stops/X723ama", "https://tec.openplanner.team/stops/X775ama"], ["https://tec.openplanner.team/stops/Csscrot1", "https://tec.openplanner.team/stops/Csscrot2"], ["https://tec.openplanner.team/stops/X902aaa", "https://tec.openplanner.team/stops/X902aab"], ["https://tec.openplanner.team/stops/N501giz", "https://tec.openplanner.team/stops/N501neb"], ["https://tec.openplanner.team/stops/Chpfoli4", "https://tec.openplanner.team/stops/Chprobi1"], ["https://tec.openplanner.team/stops/Caccarr2", "https://tec.openplanner.team/stops/Caccera2"], ["https://tec.openplanner.team/stops/N538awa", "https://tec.openplanner.team/stops/N539alb"], ["https://tec.openplanner.team/stops/X989acb", "https://tec.openplanner.team/stops/X989aeb"], ["https://tec.openplanner.team/stops/Cauptsa1", "https://tec.openplanner.team/stops/Ctapn1"], ["https://tec.openplanner.team/stops/Lcacaps1", "https://tec.openplanner.team/stops/Lcacasi1"], ["https://tec.openplanner.team/stops/LCIcent1", "https://tec.openplanner.team/stops/LLtwanz1"], ["https://tec.openplanner.team/stops/Cmlpche2", "https://tec.openplanner.team/stops/Cmlphai2"], ["https://tec.openplanner.team/stops/Llgbavi3", "https://tec.openplanner.team/stops/Llgongr3"], ["https://tec.openplanner.team/stops/N120adc", "https://tec.openplanner.team/stops/N120add"], ["https://tec.openplanner.team/stops/N532akb", "https://tec.openplanner.team/stops/N568aab"], ["https://tec.openplanner.team/stops/Cvvgrsa1", "https://tec.openplanner.team/stops/Cvvpotv1"], ["https://tec.openplanner.team/stops/LFCscho1", "https://tec.openplanner.team/stops/LWRchem1"], ["https://tec.openplanner.team/stops/X954adb", "https://tec.openplanner.team/stops/X955aaa"], ["https://tec.openplanner.team/stops/X359ala", "https://tec.openplanner.team/stops/X858aha"], ["https://tec.openplanner.team/stops/N160afa", "https://tec.openplanner.team/stops/NC14aqb"], ["https://tec.openplanner.team/stops/H4ve136a", "https://tec.openplanner.team/stops/H4ve140b"], ["https://tec.openplanner.team/stops/N207adc", "https://tec.openplanner.team/stops/N209ama"], ["https://tec.openplanner.team/stops/Bclgegl2", "https://tec.openplanner.team/stops/Bclgvmo1"], ["https://tec.openplanner.team/stops/N561aga", "https://tec.openplanner.team/stops/N561aic"], ["https://tec.openplanner.team/stops/N236aea", "https://tec.openplanner.team/stops/N236afa"], ["https://tec.openplanner.team/stops/X615aaa", "https://tec.openplanner.team/stops/X615aba"], ["https://tec.openplanner.team/stops/H4bi100b", "https://tec.openplanner.team/stops/H4eq123b"], ["https://tec.openplanner.team/stops/H2hg144a", "https://tec.openplanner.team/stops/H2hg155d"], ["https://tec.openplanner.team/stops/X670aoa", "https://tec.openplanner.team/stops/X670asa"], ["https://tec.openplanner.team/stops/Cjxpris1", "https://tec.openplanner.team/stops/Cmlsana1"], ["https://tec.openplanner.team/stops/Lghecol*", "https://tec.openplanner.team/stops/Lghomni2"], ["https://tec.openplanner.team/stops/H1en104d", "https://tec.openplanner.team/stops/H1en106b"], ["https://tec.openplanner.team/stops/X762aab", "https://tec.openplanner.team/stops/X763ada"], ["https://tec.openplanner.team/stops/Bwatcoc1", "https://tec.openplanner.team/stops/Bwatcom1"], ["https://tec.openplanner.team/stops/LeIjoha1", "https://tec.openplanner.team/stops/LeIpiro4"], ["https://tec.openplanner.team/stops/H1hn209b", "https://tec.openplanner.team/stops/H1ms312b"], ["https://tec.openplanner.team/stops/H1pa106b", "https://tec.openplanner.team/stops/H1pa111b"], ["https://tec.openplanner.team/stops/LAUbirv1", "https://tec.openplanner.team/stops/LClberw1"], ["https://tec.openplanner.team/stops/NL78ajb", "https://tec.openplanner.team/stops/NL78aka"], ["https://tec.openplanner.team/stops/X717aab", "https://tec.openplanner.team/stops/X718aab"], ["https://tec.openplanner.team/stops/X390aib", "https://tec.openplanner.team/stops/X902aib"], ["https://tec.openplanner.team/stops/Cchmont2", "https://tec.openplanner.team/stops/Cchriga1"], ["https://tec.openplanner.team/stops/H1bo112b", "https://tec.openplanner.team/stops/H1ho124b"], ["https://tec.openplanner.team/stops/H1mg108b", "https://tec.openplanner.team/stops/H1mg109b"], ["https://tec.openplanner.team/stops/Cgygazo1", "https://tec.openplanner.team/stops/CMgazo2"], ["https://tec.openplanner.team/stops/X614ava", "https://tec.openplanner.team/stops/X614avb"], ["https://tec.openplanner.team/stops/Bmarmru1", "https://tec.openplanner.team/stops/Btileco2"], ["https://tec.openplanner.team/stops/Lcemeta2", "https://tec.openplanner.team/stops/Lcepepi1"], ["https://tec.openplanner.team/stops/Lkithie1", "https://tec.openplanner.team/stops/Llgstev1"], ["https://tec.openplanner.team/stops/X750aqa", "https://tec.openplanner.team/stops/X750bea"], ["https://tec.openplanner.team/stops/N511ara", "https://tec.openplanner.team/stops/N511arb"], ["https://tec.openplanner.team/stops/Lbhmc--1", "https://tec.openplanner.team/stops/Lbhmc--2"], ["https://tec.openplanner.team/stops/LRccent2", "https://tec.openplanner.team/stops/LRcsilo2"], ["https://tec.openplanner.team/stops/Lghferr2", "https://tec.openplanner.team/stops/Lghmont1"], ["https://tec.openplanner.team/stops/X950aba", "https://tec.openplanner.team/stops/X950abb"], ["https://tec.openplanner.team/stops/H1bu141b", "https://tec.openplanner.team/stops/H1bu142a"], ["https://tec.openplanner.team/stops/X618aea", "https://tec.openplanner.team/stops/X618amb"], ["https://tec.openplanner.team/stops/X763abb", "https://tec.openplanner.team/stops/X763aea"], ["https://tec.openplanner.team/stops/H1ms284a", "https://tec.openplanner.team/stops/H1ms912a"], ["https://tec.openplanner.team/stops/LOmpont1", "https://tec.openplanner.team/stops/LOmrela2"], ["https://tec.openplanner.team/stops/Bcbqp251", "https://tec.openplanner.team/stops/Bcbqrog1"], ["https://tec.openplanner.team/stops/H4he107b", "https://tec.openplanner.team/stops/H4wg122a"], ["https://tec.openplanner.team/stops/Cvscomb1", "https://tec.openplanner.team/stops/N530ada"], ["https://tec.openplanner.team/stops/H4la198c", "https://tec.openplanner.team/stops/H4la198d"], ["https://tec.openplanner.team/stops/X754agb", "https://tec.openplanner.team/stops/X754ahb"], ["https://tec.openplanner.team/stops/Barchez2", "https://tec.openplanner.team/stops/Bgzddmo1"], ["https://tec.openplanner.team/stops/Lbocond2", "https://tec.openplanner.team/stops/LESecco2"], ["https://tec.openplanner.team/stops/H4bo178b", "https://tec.openplanner.team/stops/H4gr112b"], ["https://tec.openplanner.team/stops/LXhcite2", "https://tec.openplanner.team/stops/LXhnouv1"], ["https://tec.openplanner.team/stops/LeYauto2", "https://tec.openplanner.team/stops/LhSfrep1"], ["https://tec.openplanner.team/stops/N101aba", "https://tec.openplanner.team/stops/N101acb"], ["https://tec.openplanner.team/stops/H4bi156a", "https://tec.openplanner.team/stops/H4eg103b"], ["https://tec.openplanner.team/stops/H1cd111d", "https://tec.openplanner.team/stops/H1hr117b"], ["https://tec.openplanner.team/stops/H4ta116a", "https://tec.openplanner.team/stops/H4ta117a"], ["https://tec.openplanner.team/stops/N232cab", "https://tec.openplanner.team/stops/N232cdb"], ["https://tec.openplanner.team/stops/X796aea", "https://tec.openplanner.team/stops/X796afa"], ["https://tec.openplanner.team/stops/H2tr256a", "https://tec.openplanner.team/stops/H2tr256b"], ["https://tec.openplanner.team/stops/H4ev119a", "https://tec.openplanner.team/stops/H4ev124a"], ["https://tec.openplanner.team/stops/X763agb", "https://tec.openplanner.team/stops/X786aaa"], ["https://tec.openplanner.team/stops/X992ada", "https://tec.openplanner.team/stops/X992aia"], ["https://tec.openplanner.team/stops/Bnivlpa2", "https://tec.openplanner.team/stops/Bnivzon1"], ["https://tec.openplanner.team/stops/H5bl116a", "https://tec.openplanner.team/stops/H5bl142b"], ["https://tec.openplanner.team/stops/Cgocnor4", "https://tec.openplanner.team/stops/Cgocrus2"], ["https://tec.openplanner.team/stops/Cmomalg2", "https://tec.openplanner.team/stops/Crorpai1"], ["https://tec.openplanner.team/stops/H4lz157a", "https://tec.openplanner.team/stops/H4lz160a"], ["https://tec.openplanner.team/stops/Lsemara1", "https://tec.openplanner.team/stops/Lsemara2"], ["https://tec.openplanner.team/stops/Btstpch2", "https://tec.openplanner.team/stops/N524ada"], ["https://tec.openplanner.team/stops/Bottegl1", "https://tec.openplanner.team/stops/Bottrfa1"], ["https://tec.openplanner.team/stops/LOuathe1", "https://tec.openplanner.team/stops/LOuilc-*"], ["https://tec.openplanner.team/stops/X617ahb", "https://tec.openplanner.team/stops/X617aia"], ["https://tec.openplanner.team/stops/LJEtige1", "https://tec.openplanner.team/stops/LJEtige2"], ["https://tec.openplanner.team/stops/X790aka", "https://tec.openplanner.team/stops/X790akc"], ["https://tec.openplanner.team/stops/Btubbai1", "https://tec.openplanner.team/stops/Btubhoq1"], ["https://tec.openplanner.team/stops/N538acb", "https://tec.openplanner.team/stops/N538aia"], ["https://tec.openplanner.team/stops/H4pi132a", "https://tec.openplanner.team/stops/H4wp151b"], ["https://tec.openplanner.team/stops/N308aga", "https://tec.openplanner.team/stops/N308agb"], ["https://tec.openplanner.team/stops/Lmicoop3", "https://tec.openplanner.team/stops/Lmieg--1"], ["https://tec.openplanner.team/stops/Loubiez1", "https://tec.openplanner.team/stops/Loubour1"], ["https://tec.openplanner.team/stops/Lghgoll2", "https://tec.openplanner.team/stops/Lghomni2"], ["https://tec.openplanner.team/stops/H1ch132b", "https://tec.openplanner.team/stops/H5at109a"], ["https://tec.openplanner.team/stops/LSOferr1", "https://tec.openplanner.team/stops/LSOtrou2"], ["https://tec.openplanner.team/stops/N348aaa", "https://tec.openplanner.team/stops/N348abb"], ["https://tec.openplanner.team/stops/N301aga", "https://tec.openplanner.team/stops/N340abb"], ["https://tec.openplanner.team/stops/N117aka", "https://tec.openplanner.team/stops/N117ama"], ["https://tec.openplanner.team/stops/X358aea", "https://tec.openplanner.team/stops/X358afb"], ["https://tec.openplanner.team/stops/N584aza", "https://tec.openplanner.team/stops/N584azb"], ["https://tec.openplanner.team/stops/LeUgb--2", "https://tec.openplanner.team/stops/LeUgutl2"], ["https://tec.openplanner.team/stops/X807aca", "https://tec.openplanner.team/stops/X807acb"], ["https://tec.openplanner.team/stops/X651afa", "https://tec.openplanner.team/stops/X659aeb"], ["https://tec.openplanner.team/stops/X723ada", "https://tec.openplanner.team/stops/X723afb"], ["https://tec.openplanner.team/stops/LHTboul1", "https://tec.openplanner.team/stops/LHTlieg2"], ["https://tec.openplanner.team/stops/H1at108c", "https://tec.openplanner.team/stops/H1do119a"], ["https://tec.openplanner.team/stops/Bbsibou1", "https://tec.openplanner.team/stops/Bbsivi11"], ["https://tec.openplanner.team/stops/X608ana", "https://tec.openplanner.team/stops/X609akb"], ["https://tec.openplanner.team/stops/N209aja", "https://tec.openplanner.team/stops/N209ajc"], ["https://tec.openplanner.team/stops/H2bh107a", "https://tec.openplanner.team/stops/H2bh107b"], ["https://tec.openplanner.team/stops/Causncb2", "https://tec.openplanner.team/stops/Cauushm1"], ["https://tec.openplanner.team/stops/Bneeace1", "https://tec.openplanner.team/stops/Bneeace2"], ["https://tec.openplanner.team/stops/X925aea", "https://tec.openplanner.team/stops/X925afa"], ["https://tec.openplanner.team/stops/H1si154a", "https://tec.openplanner.team/stops/H1si169a"], ["https://tec.openplanner.team/stops/X757acb", "https://tec.openplanner.team/stops/X757aoa"], ["https://tec.openplanner.team/stops/Bperqui1", "https://tec.openplanner.team/stops/Bperqui2"], ["https://tec.openplanner.team/stops/Lvtathe1", "https://tec.openplanner.team/stops/Lvtathe2"], ["https://tec.openplanner.team/stops/H1hb197a", "https://tec.openplanner.team/stops/H1ht132a"], ["https://tec.openplanner.team/stops/LSU50--1", "https://tec.openplanner.team/stops/LSUhage1"], ["https://tec.openplanner.team/stops/LPTblan1", "https://tec.openplanner.team/stops/X794aaa"], ["https://tec.openplanner.team/stops/LVlroua2", "https://tec.openplanner.team/stops/LVltige1"], ["https://tec.openplanner.team/stops/Lvepala2", "https://tec.openplanner.team/stops/Lvepala5"], ["https://tec.openplanner.team/stops/Lemambi2", "https://tec.openplanner.team/stops/Lemeg--2"], ["https://tec.openplanner.team/stops/H4og212a", "https://tec.openplanner.team/stops/H4og212b"], ["https://tec.openplanner.team/stops/Cgxvkho1", "https://tec.openplanner.team/stops/Cmocime2"], ["https://tec.openplanner.team/stops/LkTsch%C3%B62", "https://tec.openplanner.team/stops/LkTtal-2"], ["https://tec.openplanner.team/stops/N229akb", "https://tec.openplanner.team/stops/N231aca"], ["https://tec.openplanner.team/stops/LHMbach4", "https://tec.openplanner.team/stops/LHMchev1"], ["https://tec.openplanner.team/stops/H4an108b", "https://tec.openplanner.team/stops/H4an110b"], ["https://tec.openplanner.team/stops/Bottath1", "https://tec.openplanner.team/stops/Bottcco1"], ["https://tec.openplanner.team/stops/N141aba", "https://tec.openplanner.team/stops/N141ana"], ["https://tec.openplanner.team/stops/X939ahb", "https://tec.openplanner.team/stops/X946aha"], ["https://tec.openplanner.team/stops/H1je223b", "https://tec.openplanner.team/stops/H1je365a"], ["https://tec.openplanner.team/stops/Creha761", "https://tec.openplanner.team/stops/Creoudo2"], ["https://tec.openplanner.team/stops/Bcbqrog2", "https://tec.openplanner.team/stops/Bitrnus1"], ["https://tec.openplanner.team/stops/H1em104b", "https://tec.openplanner.team/stops/H1em111b"], ["https://tec.openplanner.team/stops/Bthspha2", "https://tec.openplanner.team/stops/NL37aja"], ["https://tec.openplanner.team/stops/H4fo115a", "https://tec.openplanner.team/stops/H4ga147a"], ["https://tec.openplanner.team/stops/Cvpchat1", "https://tec.openplanner.team/stops/Cvppost2"], ["https://tec.openplanner.team/stops/H2pe156a", "https://tec.openplanner.team/stops/H2pe158a"], ["https://tec.openplanner.team/stops/LSPClem1", "https://tec.openplanner.team/stops/LSPguer1"], ["https://tec.openplanner.team/stops/LiVgirk1", "https://tec.openplanner.team/stops/LiVgirk2"], ["https://tec.openplanner.team/stops/H4wi169a", "https://tec.openplanner.team/stops/H4wi170b"], ["https://tec.openplanner.team/stops/H4ft135a", "https://tec.openplanner.team/stops/H4ft135c"], ["https://tec.openplanner.team/stops/H4ce101a", "https://tec.openplanner.team/stops/H4ce102a"], ["https://tec.openplanner.team/stops/LOdmonu3", "https://tec.openplanner.team/stops/LOdmonu4"], ["https://tec.openplanner.team/stops/X781abb", "https://tec.openplanner.team/stops/X781aga"], ["https://tec.openplanner.team/stops/Lscstan1", "https://tec.openplanner.team/stops/Ltibell1"], ["https://tec.openplanner.team/stops/LRchaie1", "https://tec.openplanner.team/stops/LRcjard1"], ["https://tec.openplanner.team/stops/X750agb", "https://tec.openplanner.team/stops/X750ava"], ["https://tec.openplanner.team/stops/X715aka", "https://tec.openplanner.team/stops/X781aab"], ["https://tec.openplanner.team/stops/Bbeabme1", "https://tec.openplanner.team/stops/Bbeaegl1"], ["https://tec.openplanner.team/stops/H5rx130a", "https://tec.openplanner.team/stops/H5rx138b"], ["https://tec.openplanner.team/stops/Bgzdfpo2", "https://tec.openplanner.team/stops/Bgzdgpa1"], ["https://tec.openplanner.team/stops/H5wo126b", "https://tec.openplanner.team/stops/H5wo127b"], ["https://tec.openplanner.team/stops/LlNbusc1", "https://tec.openplanner.team/stops/LlNbusc2"], ["https://tec.openplanner.team/stops/X886ada", "https://tec.openplanner.team/stops/X886aha"], ["https://tec.openplanner.team/stops/LbThau11", "https://tec.openplanner.team/stops/LbThau12"], ["https://tec.openplanner.team/stops/H5el102a", "https://tec.openplanner.team/stops/H5el102b"], ["https://tec.openplanner.team/stops/Btiegar2", "https://tec.openplanner.team/stops/Bzluqga2"], ["https://tec.openplanner.team/stops/X808aia", "https://tec.openplanner.team/stops/X808ala"], ["https://tec.openplanner.team/stops/Bcbqufo1", "https://tec.openplanner.team/stops/Bcbqufo2"], ["https://tec.openplanner.team/stops/X757alb", "https://tec.openplanner.team/stops/X758aea"], ["https://tec.openplanner.team/stops/N423aba", "https://tec.openplanner.team/stops/N423acb"], ["https://tec.openplanner.team/stops/LGMforg2", "https://tec.openplanner.team/stops/LLUlieg2"], ["https://tec.openplanner.team/stops/LWLeg--2", "https://tec.openplanner.team/stops/LWLtamb2"], ["https://tec.openplanner.team/stops/Bgzddge2", "https://tec.openplanner.team/stops/Bgzddur2"], ["https://tec.openplanner.team/stops/N501azb", "https://tec.openplanner.team/stops/N501mga"], ["https://tec.openplanner.team/stops/N549aca", "https://tec.openplanner.team/stops/N549aga"], ["https://tec.openplanner.team/stops/X897adb", "https://tec.openplanner.team/stops/X897ala"], ["https://tec.openplanner.team/stops/X837agb", "https://tec.openplanner.team/stops/X839aga"], ["https://tec.openplanner.team/stops/LPRcasi1", "https://tec.openplanner.team/stops/LTResse1"], ["https://tec.openplanner.team/stops/LROandr1", "https://tec.openplanner.team/stops/LSogare1"], ["https://tec.openplanner.team/stops/N383aaa", "https://tec.openplanner.team/stops/N988aab"], ["https://tec.openplanner.team/stops/Llgnaim1", "https://tec.openplanner.team/stops/Llgnaim2"], ["https://tec.openplanner.team/stops/N166aaa", "https://tec.openplanner.team/stops/N550amb"], ["https://tec.openplanner.team/stops/LJEchat1", "https://tec.openplanner.team/stops/LJEmalg1"], ["https://tec.openplanner.team/stops/Bbrlrph1", "https://tec.openplanner.team/stops/Brsgrol1"], ["https://tec.openplanner.team/stops/Bwavbwa1", "https://tec.openplanner.team/stops/Bwavdel2"], ["https://tec.openplanner.team/stops/Ccufos72", "https://tec.openplanner.team/stops/Cpipost1"], ["https://tec.openplanner.team/stops/X898aba", "https://tec.openplanner.team/stops/X898abb"], ["https://tec.openplanner.team/stops/LEScham2", "https://tec.openplanner.team/stops/LESevie1"], ["https://tec.openplanner.team/stops/LbOkalv2", "https://tec.openplanner.team/stops/LbOlier2"], ["https://tec.openplanner.team/stops/Csdnive2", "https://tec.openplanner.team/stops/Csdnive4"], ["https://tec.openplanner.team/stops/LBaeg--1", "https://tec.openplanner.team/stops/LBapepi6"], ["https://tec.openplanner.team/stops/N539beb", "https://tec.openplanner.team/stops/N540arb"], ["https://tec.openplanner.team/stops/Bmelenf2", "https://tec.openplanner.team/stops/Btilgar2"], ["https://tec.openplanner.team/stops/N551aaa", "https://tec.openplanner.team/stops/N551aab"], ["https://tec.openplanner.team/stops/LHUlebe8", "https://tec.openplanner.team/stops/LHUlebe9"], ["https://tec.openplanner.team/stops/Bjausan1", "https://tec.openplanner.team/stops/Bmrlnce2"], ["https://tec.openplanner.team/stops/N145aha", "https://tec.openplanner.team/stops/N149akb"], ["https://tec.openplanner.team/stops/LSHmais1", "https://tec.openplanner.team/stops/LSHmais2"], ["https://tec.openplanner.team/stops/H1mk108a", "https://tec.openplanner.team/stops/H1mk108b"], ["https://tec.openplanner.team/stops/X839afa", "https://tec.openplanner.team/stops/X839afb"], ["https://tec.openplanner.team/stops/Bbstasa1", "https://tec.openplanner.team/stops/Bbstegl1"], ["https://tec.openplanner.team/stops/H2sv213a", "https://tec.openplanner.team/stops/H2sv213b"], ["https://tec.openplanner.team/stops/N539aka", "https://tec.openplanner.team/stops/N539ana"], ["https://tec.openplanner.team/stops/LOUchen1", "https://tec.openplanner.team/stops/LOUchen2"], ["https://tec.openplanner.team/stops/N232bzb", "https://tec.openplanner.team/stops/N251aaa"], ["https://tec.openplanner.team/stops/Lseaven1", "https://tec.openplanner.team/stops/Lsekubo3"], ["https://tec.openplanner.team/stops/LLrdigu1", "https://tec.openplanner.team/stops/LLrdigu2"], ["https://tec.openplanner.team/stops/H1fr124b", "https://tec.openplanner.team/stops/H1fr130b"], ["https://tec.openplanner.team/stops/Llgnico3", "https://tec.openplanner.team/stops/Lsnlibe2"], ["https://tec.openplanner.team/stops/H1ob327b", "https://tec.openplanner.team/stops/H1ob330b"], ["https://tec.openplanner.team/stops/LrAbe601", "https://tec.openplanner.team/stops/LrAbe962"], ["https://tec.openplanner.team/stops/LAibego2", "https://tec.openplanner.team/stops/LHZpara2"], ["https://tec.openplanner.team/stops/Bgemga09", "https://tec.openplanner.team/stops/N522bvh"], ["https://tec.openplanner.team/stops/X824akb", "https://tec.openplanner.team/stops/X829aeb"], ["https://tec.openplanner.team/stops/Bplncba2", "https://tec.openplanner.team/stops/Clproi2"], ["https://tec.openplanner.team/stops/H4mo140a", "https://tec.openplanner.team/stops/H4mo185a"], ["https://tec.openplanner.team/stops/N501fwa", "https://tec.openplanner.team/stops/N501gta"], ["https://tec.openplanner.team/stops/N117ara", "https://tec.openplanner.team/stops/N117asa"], ["https://tec.openplanner.team/stops/X804adb", "https://tec.openplanner.team/stops/X804bza"], ["https://tec.openplanner.team/stops/Bchamco2", "https://tec.openplanner.team/stops/Bcrnnca2"], ["https://tec.openplanner.team/stops/Lkinyst2", "https://tec.openplanner.team/stops/Lkithie1"], ["https://tec.openplanner.team/stops/X902ada", "https://tec.openplanner.team/stops/X902aha"], ["https://tec.openplanner.team/stops/N501cga", "https://tec.openplanner.team/stops/N502adb"], ["https://tec.openplanner.team/stops/N501ddb", "https://tec.openplanner.team/stops/N501dfa"], ["https://tec.openplanner.team/stops/N553adb", "https://tec.openplanner.team/stops/N553alb"], ["https://tec.openplanner.team/stops/Cgzoctr3", "https://tec.openplanner.team/stops/Cthha501"], ["https://tec.openplanner.team/stops/N117bcc", "https://tec.openplanner.team/stops/N117bcd"], ["https://tec.openplanner.team/stops/H1ch103a", "https://tec.openplanner.team/stops/H4ld123b"], ["https://tec.openplanner.team/stops/X982bea", "https://tec.openplanner.team/stops/X982bga"], ["https://tec.openplanner.team/stops/X649aaa", "https://tec.openplanner.team/stops/X670aqa"], ["https://tec.openplanner.team/stops/NL74aca", "https://tec.openplanner.team/stops/NL74aib"], ["https://tec.openplanner.team/stops/Bbiecim2", "https://tec.openplanner.team/stops/Bbiepon2"], ["https://tec.openplanner.team/stops/H4wc372a", "https://tec.openplanner.team/stops/H4wc372b"], ["https://tec.openplanner.team/stops/Bsmgmou1", "https://tec.openplanner.team/stops/Bsmgmou2"], ["https://tec.openplanner.team/stops/X601ara", "https://tec.openplanner.team/stops/X601cta"], ["https://tec.openplanner.team/stops/Cgd4ven1", "https://tec.openplanner.team/stops/Cgdrhau2"], ["https://tec.openplanner.team/stops/LRRbuta2", "https://tec.openplanner.team/stops/LRRchea1"], ["https://tec.openplanner.team/stops/Ctaprai3", "https://tec.openplanner.team/stops/Cwfcule1"], ["https://tec.openplanner.team/stops/Bnivfch1", "https://tec.openplanner.team/stops/Bnivgen1"], ["https://tec.openplanner.team/stops/H4ka190a", "https://tec.openplanner.team/stops/H4ka195a"], ["https://tec.openplanner.team/stops/Bgnvgar1", "https://tec.openplanner.team/stops/Bgnvpap2"], ["https://tec.openplanner.team/stops/Bperrma2", "https://tec.openplanner.team/stops/Bpersyn2"], ["https://tec.openplanner.team/stops/Cjugohi3", "https://tec.openplanner.team/stops/Cmacoll2"], ["https://tec.openplanner.team/stops/X649acb", "https://tec.openplanner.team/stops/X649ada"], ["https://tec.openplanner.team/stops/Buccvbe1", "https://tec.openplanner.team/stops/Buccvbe2"], ["https://tec.openplanner.team/stops/X954afb", "https://tec.openplanner.team/stops/X954ahb"], ["https://tec.openplanner.team/stops/H1ca105a", "https://tec.openplanner.team/stops/H1ca107b"], ["https://tec.openplanner.team/stops/Bnilcha2", "https://tec.openplanner.team/stops/Bwlhpmt2"], ["https://tec.openplanner.team/stops/LAMhopi2", "https://tec.openplanner.team/stops/LOmrela1"], ["https://tec.openplanner.team/stops/Ccstord1", "https://tec.openplanner.team/stops/Chhsncb1"], ["https://tec.openplanner.team/stops/Ccosart4", "https://tec.openplanner.team/stops/Crorogn2"], ["https://tec.openplanner.team/stops/LHueg--1", "https://tec.openplanner.team/stops/LHueg--2"], ["https://tec.openplanner.team/stops/H4mt215a", "https://tec.openplanner.team/stops/H4mt215b"], ["https://tec.openplanner.team/stops/H1ge117a", "https://tec.openplanner.team/stops/H1qp140a"], ["https://tec.openplanner.team/stops/X880aeb", "https://tec.openplanner.team/stops/X880aha"], ["https://tec.openplanner.team/stops/Bwavcin1", "https://tec.openplanner.team/stops/Bwavtrt2"], ["https://tec.openplanner.team/stops/X763agb", "https://tec.openplanner.team/stops/X763aha"], ["https://tec.openplanner.team/stops/Ccoha601", "https://tec.openplanner.team/stops/Ccoha602"], ["https://tec.openplanner.team/stops/N201aub", "https://tec.openplanner.team/stops/N202aca"], ["https://tec.openplanner.team/stops/LrUbahn1", "https://tec.openplanner.team/stops/LrUbahn2"], ["https://tec.openplanner.team/stops/H4ch114b", "https://tec.openplanner.team/stops/H4ch117b"], ["https://tec.openplanner.team/stops/Llg20ao3", "https://tec.openplanner.team/stops/LlgCATH1"], ["https://tec.openplanner.team/stops/Crglyre2", "https://tec.openplanner.team/stops/Cstvape1"], ["https://tec.openplanner.team/stops/N534acb", "https://tec.openplanner.team/stops/N566ada"], ["https://tec.openplanner.team/stops/LTicent1", "https://tec.openplanner.team/stops/LTimalv2"], ["https://tec.openplanner.team/stops/LhSgete1", "https://tec.openplanner.team/stops/LhSgete3"], ["https://tec.openplanner.team/stops/N543cob", "https://tec.openplanner.team/stops/N543cqb"], ["https://tec.openplanner.team/stops/Bnivcom2", "https://tec.openplanner.team/stops/Bnivhon2"], ["https://tec.openplanner.team/stops/H1mj122b", "https://tec.openplanner.team/stops/H1mj130b"], ["https://tec.openplanner.team/stops/Ljubord1", "https://tec.openplanner.team/stops/Ljubruy*"], ["https://tec.openplanner.team/stops/LFOcomb3", "https://tec.openplanner.team/stops/LFOcomb4"], ["https://tec.openplanner.team/stops/LVLcent1", "https://tec.openplanner.team/stops/LWDbure1"], ["https://tec.openplanner.team/stops/Cbwmato2", "https://tec.openplanner.team/stops/Cmqbert1"], ["https://tec.openplanner.team/stops/X734adb", "https://tec.openplanner.team/stops/X734afa"], ["https://tec.openplanner.team/stops/LVthest1", "https://tec.openplanner.team/stops/LVthest2"], ["https://tec.openplanner.team/stops/H1ht133b", "https://tec.openplanner.team/stops/H1te191a"], ["https://tec.openplanner.team/stops/H4bd107a", "https://tec.openplanner.team/stops/H4te257b"], ["https://tec.openplanner.team/stops/X713adb", "https://tec.openplanner.team/stops/X713ana"], ["https://tec.openplanner.team/stops/H4bc106b", "https://tec.openplanner.team/stops/H5bl116b"], ["https://tec.openplanner.team/stops/H1ge179a", "https://tec.openplanner.team/stops/H1no142a"], ["https://tec.openplanner.team/stops/N287acb", "https://tec.openplanner.team/stops/N287adb"], ["https://tec.openplanner.team/stops/LhPkirc2", "https://tec.openplanner.team/stops/LwEdorf2"], ["https://tec.openplanner.team/stops/H4be104d", "https://tec.openplanner.team/stops/H4be114a"], ["https://tec.openplanner.team/stops/X358aeb", "https://tec.openplanner.team/stops/X994ama"], ["https://tec.openplanner.team/stops/X888abb", "https://tec.openplanner.team/stops/X888aca"], ["https://tec.openplanner.team/stops/LELchap2", "https://tec.openplanner.team/stops/LHCauwe4"], ["https://tec.openplanner.team/stops/Lccawir3", "https://tec.openplanner.team/stops/Lccuner1"], ["https://tec.openplanner.team/stops/Btsllfp1", "https://tec.openplanner.team/stops/Bwlhcsr1"], ["https://tec.openplanner.team/stops/H1ms268a", "https://tec.openplanner.team/stops/H1ms281b"], ["https://tec.openplanner.team/stops/X831aba", "https://tec.openplanner.team/stops/X831acb"], ["https://tec.openplanner.team/stops/Cctbifu1", "https://tec.openplanner.team/stops/Cctjust2"], ["https://tec.openplanner.team/stops/Bcsepes1", "https://tec.openplanner.team/stops/Bmoucoq2"], ["https://tec.openplanner.team/stops/LAUbour2", "https://tec.openplanner.team/stops/LFdbruy2"], ["https://tec.openplanner.team/stops/N501fxa", "https://tec.openplanner.team/stops/N501hla"], ["https://tec.openplanner.team/stops/Cgopier3", "https://tec.openplanner.team/stops/Cgorobe1"], ["https://tec.openplanner.team/stops/Bptecar2", "https://tec.openplanner.team/stops/H3st119a"], ["https://tec.openplanner.team/stops/LOTcarr2", "https://tec.openplanner.team/stops/LOTdelv1"], ["https://tec.openplanner.team/stops/X786aib", "https://tec.openplanner.team/stops/X789aib"], ["https://tec.openplanner.team/stops/N104aca", "https://tec.openplanner.team/stops/N104acb"], ["https://tec.openplanner.team/stops/Chpplac1", "https://tec.openplanner.team/stops/Chprobi1"], ["https://tec.openplanner.team/stops/Blimmer2", "https://tec.openplanner.team/stops/Bottgar5"], ["https://tec.openplanner.team/stops/X812beb", "https://tec.openplanner.team/stops/X813aba"], ["https://tec.openplanner.team/stops/Cmlsart2", "https://tec.openplanner.team/stops/Cmlstni2"], ["https://tec.openplanner.team/stops/N310abb", "https://tec.openplanner.team/stops/N310ada"], ["https://tec.openplanner.team/stops/LFAec--1", "https://tec.openplanner.team/stops/LFAscie2"], ["https://tec.openplanner.team/stops/H1th182a", "https://tec.openplanner.team/stops/H3so153a"], ["https://tec.openplanner.team/stops/N525aca", "https://tec.openplanner.team/stops/N525baa"], ["https://tec.openplanner.team/stops/LBkjenn2", "https://tec.openplanner.team/stops/LBkwind2"], ["https://tec.openplanner.team/stops/H1an100a", "https://tec.openplanner.team/stops/H1an100b"], ["https://tec.openplanner.team/stops/Bnivbpe2", "https://tec.openplanner.team/stops/Bnivgen1"], ["https://tec.openplanner.team/stops/LLrcomb1", "https://tec.openplanner.team/stops/LLrrmaq1"], ["https://tec.openplanner.team/stops/Lemfort1", "https://tec.openplanner.team/stops/Lemfort2"], ["https://tec.openplanner.team/stops/Cchviad2", "https://tec.openplanner.team/stops/CMoues1"], ["https://tec.openplanner.team/stops/X804azb", "https://tec.openplanner.team/stops/X804bab"], ["https://tec.openplanner.team/stops/X630aaa", "https://tec.openplanner.team/stops/X630aca"], ["https://tec.openplanner.team/stops/H1hh109a", "https://tec.openplanner.team/stops/H1hh111a"], ["https://tec.openplanner.team/stops/N512aoa", "https://tec.openplanner.team/stops/N512apa"], ["https://tec.openplanner.team/stops/LTgvill1", "https://tec.openplanner.team/stops/LTgvill2"], ["https://tec.openplanner.team/stops/LChxhav1", "https://tec.openplanner.team/stops/LJAdeho3"], ["https://tec.openplanner.team/stops/LFebas-1", "https://tec.openplanner.team/stops/LTrmaro2"], ["https://tec.openplanner.team/stops/LWAclos1", "https://tec.openplanner.team/stops/LWAclos2"], ["https://tec.openplanner.team/stops/H1gi123b", "https://tec.openplanner.team/stops/H1hy128a"], ["https://tec.openplanner.team/stops/N573aba", "https://tec.openplanner.team/stops/NC44ada"], ["https://tec.openplanner.team/stops/LAWbrou1", "https://tec.openplanner.team/stops/LBIpont1"], ["https://tec.openplanner.team/stops/N234aca", "https://tec.openplanner.team/stops/N234acb"], ["https://tec.openplanner.team/stops/Bwatbno1", "https://tec.openplanner.team/stops/Bwatbno2"], ["https://tec.openplanner.team/stops/Llgnati2", "https://tec.openplanner.team/stops/Llgvinc2"], ["https://tec.openplanner.team/stops/H4rm107c", "https://tec.openplanner.team/stops/H4rm108b"], ["https://tec.openplanner.team/stops/X740abd", "https://tec.openplanner.team/stops/X985afa"], ["https://tec.openplanner.team/stops/LSEcent2", "https://tec.openplanner.team/stops/LSEec--1"], ["https://tec.openplanner.team/stops/H4bq154b", "https://tec.openplanner.team/stops/H4li179b"], ["https://tec.openplanner.team/stops/LScchpl2", "https://tec.openplanner.team/stops/LTNeau-2"], ["https://tec.openplanner.team/stops/Lcheg--1", "https://tec.openplanner.team/stops/Lchtche2"], ["https://tec.openplanner.team/stops/LAmwaut2", "https://tec.openplanner.team/stops/LTipont2"], ["https://tec.openplanner.team/stops/LFEplac1", "https://tec.openplanner.team/stops/X597aaa"], ["https://tec.openplanner.team/stops/Llgamer2", "https://tec.openplanner.team/stops/Llglair1"], ["https://tec.openplanner.team/stops/Canboha1", "https://tec.openplanner.team/stops/Cpthaud2"], ["https://tec.openplanner.team/stops/H2sb226a", "https://tec.openplanner.team/stops/H2sb226b"], ["https://tec.openplanner.team/stops/Lgrcral2", "https://tec.openplanner.team/stops/Lgrdefr2"], ["https://tec.openplanner.team/stops/NL76aca", "https://tec.openplanner.team/stops/NL76ada"], ["https://tec.openplanner.team/stops/Llggill4", "https://tec.openplanner.team/stops/Llghaye1"], ["https://tec.openplanner.team/stops/LDapota1", "https://tec.openplanner.team/stops/LHgdari1"], ["https://tec.openplanner.team/stops/H2an100b", "https://tec.openplanner.team/stops/H2an101a"], ["https://tec.openplanner.team/stops/N522aba", "https://tec.openplanner.team/stops/N522abb"], ["https://tec.openplanner.team/stops/Lagtilf2", "https://tec.openplanner.team/stops/Lcepoul1"], ["https://tec.openplanner.team/stops/X789aea", "https://tec.openplanner.team/stops/X789aeb"], ["https://tec.openplanner.team/stops/H1ba103a", "https://tec.openplanner.team/stops/H1ba118a"], ["https://tec.openplanner.team/stops/Bmsgpap1", "https://tec.openplanner.team/stops/Bmsgpap2"], ["https://tec.openplanner.team/stops/LPLfp2-1", "https://tec.openplanner.team/stops/LPLstri2"], ["https://tec.openplanner.team/stops/X607aga", "https://tec.openplanner.team/stops/X620aga"], ["https://tec.openplanner.team/stops/X802ajb", "https://tec.openplanner.team/stops/X802akb"], ["https://tec.openplanner.team/stops/LsVgils1", "https://tec.openplanner.team/stops/LsVthom1"], ["https://tec.openplanner.team/stops/Cmqchap2", "https://tec.openplanner.team/stops/N425aba"], ["https://tec.openplanner.team/stops/Lscchat2", "https://tec.openplanner.team/stops/Lscgare1"], ["https://tec.openplanner.team/stops/X613acb", "https://tec.openplanner.team/stops/X614ana"], ["https://tec.openplanner.team/stops/X764ada", "https://tec.openplanner.team/stops/X765aca"], ["https://tec.openplanner.team/stops/Lre3che2", "https://tec.openplanner.team/stops/Lrecite1"], ["https://tec.openplanner.team/stops/H4mo133a", "https://tec.openplanner.team/stops/H4mo145a"], ["https://tec.openplanner.team/stops/LmI36--2", "https://tec.openplanner.team/stops/LmIvale1"], ["https://tec.openplanner.team/stops/Lmopans4", "https://tec.openplanner.team/stops/Lsnbrac3"], ["https://tec.openplanner.team/stops/Llgcrah1", "https://tec.openplanner.team/stops/Llgegwa1"], ["https://tec.openplanner.team/stops/X345aab", "https://tec.openplanner.team/stops/X363aaa"], ["https://tec.openplanner.team/stops/LFochap2", "https://tec.openplanner.team/stops/LHbcent2"], ["https://tec.openplanner.team/stops/X734aba", "https://tec.openplanner.team/stops/X735abc"], ["https://tec.openplanner.team/stops/X614aka", "https://tec.openplanner.team/stops/X624aaa"], ["https://tec.openplanner.team/stops/H1fr107b", "https://tec.openplanner.team/stops/H1fr113b"], ["https://tec.openplanner.team/stops/N538anb", "https://tec.openplanner.team/stops/N538aoa"], ["https://tec.openplanner.team/stops/H2ec106b", "https://tec.openplanner.team/stops/H2ec108a"], ["https://tec.openplanner.team/stops/H2mo124b", "https://tec.openplanner.team/stops/H2mo138c"], ["https://tec.openplanner.team/stops/Lvecase1", "https://tec.openplanner.team/stops/Lvecase2"], ["https://tec.openplanner.team/stops/Lgreg--2", "https://tec.openplanner.team/stops/Lgrtomb1"], ["https://tec.openplanner.team/stops/H4ta126b", "https://tec.openplanner.team/stops/H4ta128b"], ["https://tec.openplanner.team/stops/N121afa", "https://tec.openplanner.team/stops/N121aga"], ["https://tec.openplanner.team/stops/LlNlont1", "https://tec.openplanner.team/stops/LlNlont2"], ["https://tec.openplanner.team/stops/X757aib", "https://tec.openplanner.team/stops/X757aic"], ["https://tec.openplanner.team/stops/H1ha185b", "https://tec.openplanner.team/stops/H1ha192a"], ["https://tec.openplanner.team/stops/Crodebr2", "https://tec.openplanner.team/stops/Crolema3"], ["https://tec.openplanner.team/stops/LLnpomp1", "https://tec.openplanner.team/stops/LPUlecl1"], ["https://tec.openplanner.team/stops/H4th139b", "https://tec.openplanner.team/stops/H4th142a"], ["https://tec.openplanner.team/stops/Bcer4br3", "https://tec.openplanner.team/stops/Bcer4br4"], ["https://tec.openplanner.team/stops/N569acb", "https://tec.openplanner.team/stops/N569aea"], ["https://tec.openplanner.team/stops/LBVlamo2", "https://tec.openplanner.team/stops/LLscent1"], ["https://tec.openplanner.team/stops/H1ch142b", "https://tec.openplanner.team/stops/H1si164a"], ["https://tec.openplanner.team/stops/N548aab", "https://tec.openplanner.team/stops/N565alb"], ["https://tec.openplanner.team/stops/X639ajb", "https://tec.openplanner.team/stops/X639akb"], ["https://tec.openplanner.team/stops/H4me211c", "https://tec.openplanner.team/stops/H4qu408a"], ["https://tec.openplanner.team/stops/Lanclon1", "https://tec.openplanner.team/stops/Lanlona1"], ["https://tec.openplanner.team/stops/Bcrncjo2", "https://tec.openplanner.team/stops/N529aaa"], ["https://tec.openplanner.team/stops/X608atb", "https://tec.openplanner.team/stops/X608awa"], ["https://tec.openplanner.team/stops/H1ho141b", "https://tec.openplanner.team/stops/H1ho142b"], ["https://tec.openplanner.team/stops/H1to153b", "https://tec.openplanner.team/stops/H1to153d"], ["https://tec.openplanner.team/stops/N506aqb", "https://tec.openplanner.team/stops/N506azb"], ["https://tec.openplanner.team/stops/NC14anb", "https://tec.openplanner.team/stops/NC14apa"], ["https://tec.openplanner.team/stops/X721aba", "https://tec.openplanner.team/stops/X763agb"], ["https://tec.openplanner.team/stops/N501fty", "https://tec.openplanner.team/stops/N501gpc"], ["https://tec.openplanner.team/stops/H4co105a", "https://tec.openplanner.team/stops/H4co134a"], ["https://tec.openplanner.team/stops/X641awa", "https://tec.openplanner.team/stops/X641axa"], ["https://tec.openplanner.team/stops/N120aca", "https://tec.openplanner.team/stops/N120adc"], ["https://tec.openplanner.team/stops/LFUfonc2", "https://tec.openplanner.team/stops/LWzfuma1"], ["https://tec.openplanner.team/stops/H1gh154b", "https://tec.openplanner.team/stops/H1gh167a"], ["https://tec.openplanner.team/stops/X822aja", "https://tec.openplanner.team/stops/X822ajb"], ["https://tec.openplanner.team/stops/H2na131b", "https://tec.openplanner.team/stops/H3go101a"], ["https://tec.openplanner.team/stops/X643aab", "https://tec.openplanner.team/stops/X643abb"], ["https://tec.openplanner.team/stops/LeYauss1", "https://tec.openplanner.team/stops/LeYmosc1"], ["https://tec.openplanner.team/stops/X793ahb", "https://tec.openplanner.team/stops/X793aib"], ["https://tec.openplanner.team/stops/X902aba", "https://tec.openplanner.team/stops/X902atb"], ["https://tec.openplanner.team/stops/Llgmass2", "https://tec.openplanner.team/stops/Llgschm2"], ["https://tec.openplanner.team/stops/LBPeg--1", "https://tec.openplanner.team/stops/LBPrueg2"], ["https://tec.openplanner.team/stops/Cnahahe1", "https://tec.openplanner.team/stops/Cnawari1"], ["https://tec.openplanner.team/stops/LTiflor1", "https://tec.openplanner.team/stops/LTiflor2"], ["https://tec.openplanner.team/stops/X995adc", "https://tec.openplanner.team/stops/X995ade"], ["https://tec.openplanner.team/stops/H2ca100a", "https://tec.openplanner.team/stops/H2ca103b"], ["https://tec.openplanner.team/stops/H1gi121b", "https://tec.openplanner.team/stops/H1gi123b"], ["https://tec.openplanner.team/stops/Lhrhosp1", "https://tec.openplanner.team/stops/Lhrhurb1"], ["https://tec.openplanner.team/stops/Lbhsion1", "https://tec.openplanner.team/stops/Lgrclin4"], ["https://tec.openplanner.team/stops/Cjulucq2", "https://tec.openplanner.team/stops/Cjupuis2"], ["https://tec.openplanner.team/stops/H5el112c", "https://tec.openplanner.team/stops/H5el114b"], ["https://tec.openplanner.team/stops/H2hl110b", "https://tec.openplanner.team/stops/H2hl113b"], ["https://tec.openplanner.team/stops/X641akb", "https://tec.openplanner.team/stops/X641aqa"], ["https://tec.openplanner.team/stops/N351aia", "https://tec.openplanner.team/stops/N351aib"], ["https://tec.openplanner.team/stops/X542acb", "https://tec.openplanner.team/stops/X542ada"], ["https://tec.openplanner.team/stops/H2ll182a", "https://tec.openplanner.team/stops/H2ll199b"], ["https://tec.openplanner.team/stops/N501heb", "https://tec.openplanner.team/stops/N501zca"], ["https://tec.openplanner.team/stops/N558amb", "https://tec.openplanner.team/stops/N559aaa"], ["https://tec.openplanner.team/stops/LeMdorf2", "https://tec.openplanner.team/stops/LmNbirt2"], ["https://tec.openplanner.team/stops/Cjxthom1", "https://tec.openplanner.team/stops/Cmmschw1"], ["https://tec.openplanner.team/stops/Bjodgai1", "https://tec.openplanner.team/stops/Blthvil1"], ["https://tec.openplanner.team/stops/N522aua", "https://tec.openplanner.team/stops/N522aub"], ["https://tec.openplanner.team/stops/X601aea", "https://tec.openplanner.team/stops/X601btb"], ["https://tec.openplanner.team/stops/H4ty315a", "https://tec.openplanner.team/stops/H4ty349a"], ["https://tec.openplanner.team/stops/H4bw101a", "https://tec.openplanner.team/stops/H4co149b"], ["https://tec.openplanner.team/stops/X897acb", "https://tec.openplanner.team/stops/X897ada"], ["https://tec.openplanner.team/stops/H4ch114b", "https://tec.openplanner.team/stops/H4ty321b"], ["https://tec.openplanner.team/stops/Lghgros2", "https://tec.openplanner.team/stops/Lghlogi1"], ["https://tec.openplanner.team/stops/Boveklo2", "https://tec.openplanner.team/stops/Bovesol2"], ["https://tec.openplanner.team/stops/X922ajb", "https://tec.openplanner.team/stops/X942aea"], ["https://tec.openplanner.team/stops/H2na132b", "https://tec.openplanner.team/stops/H3so169a"], ["https://tec.openplanner.team/stops/N543aia", "https://tec.openplanner.team/stops/N543ckb"], ["https://tec.openplanner.team/stops/H3so176b", "https://tec.openplanner.team/stops/H3so179a"], ["https://tec.openplanner.team/stops/X614acb", "https://tec.openplanner.team/stops/X614agb"], ["https://tec.openplanner.team/stops/Bcsgcou1", "https://tec.openplanner.team/stops/Bmrsayw1"], ["https://tec.openplanner.team/stops/LESslmo1", "https://tec.openplanner.team/stops/LTIdumo2"], ["https://tec.openplanner.team/stops/H4mv188a", "https://tec.openplanner.team/stops/H4oe150a"], ["https://tec.openplanner.team/stops/LEScham1", "https://tec.openplanner.team/stops/LESfoot1"], ["https://tec.openplanner.team/stops/X870aaa", "https://tec.openplanner.team/stops/X880agd"], ["https://tec.openplanner.team/stops/H4bc101c", "https://tec.openplanner.team/stops/H4bc101d"], ["https://tec.openplanner.team/stops/Bfledpi1", "https://tec.openplanner.team/stops/Cflchmo1"], ["https://tec.openplanner.team/stops/LlNhube1", "https://tec.openplanner.team/stops/LlNkirc2"], ["https://tec.openplanner.team/stops/N214adb", "https://tec.openplanner.team/stops/N228acb"], ["https://tec.openplanner.team/stops/N562aga", "https://tec.openplanner.team/stops/N562atb"], ["https://tec.openplanner.team/stops/Lmieg--1", "https://tec.openplanner.team/stops/Lmimc--2"], ["https://tec.openplanner.team/stops/Cmaroya1", "https://tec.openplanner.team/stops/Cmastch2"], ["https://tec.openplanner.team/stops/Bbrlmez1", "https://tec.openplanner.team/stops/Bucceng2"], ["https://tec.openplanner.team/stops/LNAdemo2", "https://tec.openplanner.team/stops/LYEphar1"], ["https://tec.openplanner.team/stops/LBIhann1", "https://tec.openplanner.team/stops/LBIhann2"], ["https://tec.openplanner.team/stops/Bblmpro1", "https://tec.openplanner.team/stops/Bblmpro2"], ["https://tec.openplanner.team/stops/H1lm105a", "https://tec.openplanner.team/stops/H1lm106a"], ["https://tec.openplanner.team/stops/X766aab", "https://tec.openplanner.team/stops/X766aha"], ["https://tec.openplanner.team/stops/Cmmcomb1", "https://tec.openplanner.team/stops/Cmmserv2"], ["https://tec.openplanner.team/stops/X923aaa", "https://tec.openplanner.team/stops/X923ana"], ["https://tec.openplanner.team/stops/X788ahb", "https://tec.openplanner.team/stops/X790abb"], ["https://tec.openplanner.team/stops/Ccybeau1", "https://tec.openplanner.team/stops/Ccychap1"], ["https://tec.openplanner.team/stops/Lpedeta2", "https://tec.openplanner.team/stops/Lpeflec2"], ["https://tec.openplanner.team/stops/Bpecdel2", "https://tec.openplanner.team/stops/Bwavpar1"], ["https://tec.openplanner.team/stops/N270acb", "https://tec.openplanner.team/stops/N270ada"], ["https://tec.openplanner.team/stops/H5at122b", "https://tec.openplanner.team/stops/H5la177a"], ["https://tec.openplanner.team/stops/N244aib", "https://tec.openplanner.team/stops/N251adb"], ["https://tec.openplanner.team/stops/X724aaa", "https://tec.openplanner.team/stops/X724aab"], ["https://tec.openplanner.team/stops/H2ma203a", "https://tec.openplanner.team/stops/H2ma203b"], ["https://tec.openplanner.team/stops/N310aea", "https://tec.openplanner.team/stops/N310aeb"], ["https://tec.openplanner.team/stops/Lrc594-2", "https://tec.openplanner.team/stops/Lvo60--2"], ["https://tec.openplanner.team/stops/Lrclohe1", "https://tec.openplanner.team/stops/Lrclohe2"], ["https://tec.openplanner.team/stops/X782alb", "https://tec.openplanner.team/stops/X782aoa"], ["https://tec.openplanner.team/stops/LFFmarc2", "https://tec.openplanner.team/stops/LFFmarc3"], ["https://tec.openplanner.team/stops/X897aoa", "https://tec.openplanner.team/stops/X897apb"], ["https://tec.openplanner.team/stops/Llggrav2", "https://tec.openplanner.team/stops/Llgstap2"], ["https://tec.openplanner.team/stops/LHCbois2", "https://tec.openplanner.team/stops/LHCprog1"], ["https://tec.openplanner.team/stops/Lcebail1", "https://tec.openplanner.team/stops/Lceembo1"], ["https://tec.openplanner.team/stops/H4wi163a", "https://tec.openplanner.team/stops/H4wi175a"], ["https://tec.openplanner.team/stops/X640aca", "https://tec.openplanner.team/stops/X640aea"], ["https://tec.openplanner.team/stops/X982ama", "https://tec.openplanner.team/stops/X982amb"], ["https://tec.openplanner.team/stops/H1hg179b", "https://tec.openplanner.team/stops/H1hg180a"], ["https://tec.openplanner.team/stops/H1em110a", "https://tec.openplanner.team/stops/H1hl125a"], ["https://tec.openplanner.team/stops/LSSfont2", "https://tec.openplanner.team/stops/LSSfrai2"], ["https://tec.openplanner.team/stops/X840aga", "https://tec.openplanner.team/stops/X840agb"], ["https://tec.openplanner.team/stops/H1bx105b", "https://tec.openplanner.team/stops/H1bx106a"], ["https://tec.openplanner.team/stops/H4lp124b", "https://tec.openplanner.team/stops/H4my122b"], ["https://tec.openplanner.team/stops/Clodesc1", "https://tec.openplanner.team/stops/Clodesc2"], ["https://tec.openplanner.team/stops/N360aaa", "https://tec.openplanner.team/stops/N360aeb"], ["https://tec.openplanner.team/stops/N574aca", "https://tec.openplanner.team/stops/N576ala"], ["https://tec.openplanner.team/stops/H1ms278a", "https://tec.openplanner.team/stops/H1ms278b"], ["https://tec.openplanner.team/stops/H1fr112a", "https://tec.openplanner.team/stops/H1fr116a"], ["https://tec.openplanner.team/stops/X923agb", "https://tec.openplanner.team/stops/X923ama"], ["https://tec.openplanner.team/stops/H1fr111b", "https://tec.openplanner.team/stops/H1fr130b"], ["https://tec.openplanner.team/stops/LTRcarr1", "https://tec.openplanner.team/stops/LTRcarr2"], ["https://tec.openplanner.team/stops/Blascvi1", "https://tec.openplanner.team/stops/Blasvil2"], ["https://tec.openplanner.team/stops/H4oq225b", "https://tec.openplanner.team/stops/H4wu376a"], ["https://tec.openplanner.team/stops/LFypfei1", "https://tec.openplanner.team/stops/LsHlenz2"], ["https://tec.openplanner.team/stops/LHUmess2", "https://tec.openplanner.team/stops/LHUsauv3"], ["https://tec.openplanner.team/stops/Cchmonu2", "https://tec.openplanner.team/stops/Cchmonu3"], ["https://tec.openplanner.team/stops/Cci4bra3", "https://tec.openplanner.team/stops/NC02apb"], ["https://tec.openplanner.team/stops/X993acb", "https://tec.openplanner.team/stops/X994aib"], ["https://tec.openplanner.team/stops/N501hqa", "https://tec.openplanner.team/stops/N501hqb"], ["https://tec.openplanner.team/stops/N501dwa", "https://tec.openplanner.team/stops/N501eea"], ["https://tec.openplanner.team/stops/X607aib", "https://tec.openplanner.team/stops/X647aaa"], ["https://tec.openplanner.team/stops/LLTtour1", "https://tec.openplanner.team/stops/LTOplac2"], ["https://tec.openplanner.team/stops/H4vz368a", "https://tec.openplanner.team/stops/H4vz371b"], ["https://tec.openplanner.team/stops/LHCauwe3", "https://tec.openplanner.team/stops/LHChoof3"], ["https://tec.openplanner.team/stops/Bbgnvel1", "https://tec.openplanner.team/stops/Cwfaldi2"], ["https://tec.openplanner.team/stops/Lchsart2", "https://tec.openplanner.team/stops/Lvichpl1"], ["https://tec.openplanner.team/stops/X662aca", "https://tec.openplanner.team/stops/X662anb"], ["https://tec.openplanner.team/stops/Cchbaza1", "https://tec.openplanner.team/stops/CMwate1"], ["https://tec.openplanner.team/stops/Cmmecol2", "https://tec.openplanner.team/stops/Cmmtomb1"], ["https://tec.openplanner.team/stops/LMfbuck2", "https://tec.openplanner.team/stops/LMfpral2"], ["https://tec.openplanner.team/stops/Lrecite2", "https://tec.openplanner.team/stops/Lrecroi2"], ["https://tec.openplanner.team/stops/Cragoss1", "https://tec.openplanner.team/stops/Cravign3"], ["https://tec.openplanner.team/stops/LBSneuv2", "https://tec.openplanner.team/stops/LRGbett3"], ["https://tec.openplanner.team/stops/X750aja", "https://tec.openplanner.team/stops/X750ala"], ["https://tec.openplanner.team/stops/LAbchpl2", "https://tec.openplanner.team/stops/LTNcarr4"], ["https://tec.openplanner.team/stops/H4au100b", "https://tec.openplanner.team/stops/H4bq100a"], ["https://tec.openplanner.team/stops/X750aea", "https://tec.openplanner.team/stops/X750bma"], ["https://tec.openplanner.team/stops/LJuhaie1", "https://tec.openplanner.team/stops/LSDgris1"], ["https://tec.openplanner.team/stops/X801acb", "https://tec.openplanner.team/stops/X801aeb"], ["https://tec.openplanner.team/stops/Bovejei1", "https://tec.openplanner.team/stops/Bovejme2"], ["https://tec.openplanner.team/stops/LTobilz2", "https://tec.openplanner.team/stops/LTolijn*"], ["https://tec.openplanner.team/stops/X837aia", "https://tec.openplanner.team/stops/X889aeb"], ["https://tec.openplanner.team/stops/X759adb", "https://tec.openplanner.team/stops/X840abb"], ["https://tec.openplanner.team/stops/H5el107a", "https://tec.openplanner.team/stops/H5el117b"], ["https://tec.openplanner.team/stops/N301asa", "https://tec.openplanner.team/stops/N301asb"], ["https://tec.openplanner.team/stops/H4hx113a", "https://tec.openplanner.team/stops/H4hx113b"], ["https://tec.openplanner.team/stops/Bwavgar8", "https://tec.openplanner.team/stops/Bwavtpi2"], ["https://tec.openplanner.team/stops/X614afa", "https://tec.openplanner.team/stops/X614axb"], ["https://tec.openplanner.team/stops/Bcsebea2", "https://tec.openplanner.team/stops/Bcsen251"], ["https://tec.openplanner.team/stops/X636aea", "https://tec.openplanner.team/stops/X636ala"], ["https://tec.openplanner.team/stops/Bgemcha2", "https://tec.openplanner.team/stops/N522asb"], ["https://tec.openplanner.team/stops/LHMhind2", "https://tec.openplanner.team/stops/LSIgehe1"], ["https://tec.openplanner.team/stops/LHUetie*", "https://tec.openplanner.team/stops/LStroch1"], ["https://tec.openplanner.team/stops/H2pe154b", "https://tec.openplanner.team/stops/H2pe162b"], ["https://tec.openplanner.team/stops/Buccham2", "https://tec.openplanner.team/stops/Buccvch2"], ["https://tec.openplanner.team/stops/LBGcent1", "https://tec.openplanner.team/stops/LHDpota4"], ["https://tec.openplanner.team/stops/Csiegli1", "https://tec.openplanner.team/stops/N103afa"], ["https://tec.openplanner.team/stops/N352abb", "https://tec.openplanner.team/stops/N353aba"], ["https://tec.openplanner.team/stops/H1qu114b", "https://tec.openplanner.team/stops/H1qu119b"], ["https://tec.openplanner.team/stops/X641ajb", "https://tec.openplanner.team/stops/X641aka"], ["https://tec.openplanner.team/stops/LLelans1", "https://tec.openplanner.team/stops/X547aja"], ["https://tec.openplanner.team/stops/Cmmegli2", "https://tec.openplanner.team/stops/Cmmegli3"], ["https://tec.openplanner.team/stops/Bmonbor1", "https://tec.openplanner.team/stops/Bmonbri2"], ["https://tec.openplanner.team/stops/Cwgcamp1", "https://tec.openplanner.team/stops/Cwgpatr1"], ["https://tec.openplanner.team/stops/X789acb", "https://tec.openplanner.team/stops/X789ajb"], ["https://tec.openplanner.team/stops/LGlbour1", "https://tec.openplanner.team/stops/LHZec--2"], ["https://tec.openplanner.team/stops/N243aea", "https://tec.openplanner.team/stops/N243aeb"], ["https://tec.openplanner.team/stops/Crsmonu2", "https://tec.openplanner.team/stops/Crswaut2"], ["https://tec.openplanner.team/stops/X756ajb", "https://tec.openplanner.team/stops/X779aga"], ["https://tec.openplanner.team/stops/H1cd111b", "https://tec.openplanner.team/stops/H1hr127a"], ["https://tec.openplanner.team/stops/Ccicent1", "https://tec.openplanner.team/stops/Ccicent4"], ["https://tec.openplanner.team/stops/LATdieu1", "https://tec.openplanner.team/stops/LATgill1"], ["https://tec.openplanner.team/stops/H2ma204b", "https://tec.openplanner.team/stops/H3th131b"], ["https://tec.openplanner.team/stops/Bwspmon1", "https://tec.openplanner.team/stops/Bwspmon4"], ["https://tec.openplanner.team/stops/Bsampli2", "https://tec.openplanner.team/stops/N584bab"], ["https://tec.openplanner.team/stops/Bbaubru1", "https://tec.openplanner.team/stops/Bnivpba1"], ["https://tec.openplanner.team/stops/H4mo151a", "https://tec.openplanner.team/stops/H4mo169a"], ["https://tec.openplanner.team/stops/N501lba", "https://tec.openplanner.team/stops/N501lbb"], ["https://tec.openplanner.team/stops/N120abb", "https://tec.openplanner.team/stops/N120aeb"], ["https://tec.openplanner.team/stops/LREhaut2", "https://tec.openplanner.team/stops/LREsp902"], ["https://tec.openplanner.team/stops/N241aab", "https://tec.openplanner.team/stops/N241aba"], ["https://tec.openplanner.team/stops/N368ada", "https://tec.openplanner.team/stops/N368adb"], ["https://tec.openplanner.team/stops/H4do106b", "https://tec.openplanner.team/stops/H4do107a"], ["https://tec.openplanner.team/stops/LESamos2", "https://tec.openplanner.team/stops/LEScham1"], ["https://tec.openplanner.team/stops/Canlalu1", "https://tec.openplanner.team/stops/Canpeup1"], ["https://tec.openplanner.team/stops/N501fda", "https://tec.openplanner.team/stops/N501lzz"], ["https://tec.openplanner.team/stops/LbUkrin1", "https://tec.openplanner.team/stops/LbUkrin2"], ["https://tec.openplanner.team/stops/N537aka", "https://tec.openplanner.team/stops/N556ada"], ["https://tec.openplanner.team/stops/X640aab", "https://tec.openplanner.team/stops/X674aab"], ["https://tec.openplanner.team/stops/H1gg146a", "https://tec.openplanner.team/stops/H1ry134b"], ["https://tec.openplanner.team/stops/Cjuheig1", "https://tec.openplanner.team/stops/Croheig1"], ["https://tec.openplanner.team/stops/N538aha", "https://tec.openplanner.team/stops/N538ala"], ["https://tec.openplanner.team/stops/H4wi161b", "https://tec.openplanner.team/stops/H5pe139b"], ["https://tec.openplanner.team/stops/Cpccpas1", "https://tec.openplanner.team/stops/Cpclibe1"], ["https://tec.openplanner.team/stops/H4pp122a", "https://tec.openplanner.team/stops/H4qu408a"], ["https://tec.openplanner.team/stops/Lbocruc1", "https://tec.openplanner.team/stops/Lbocruc3"], ["https://tec.openplanner.team/stops/X614aka", "https://tec.openplanner.team/stops/X614arb"], ["https://tec.openplanner.team/stops/Cthbeff1", "https://tec.openplanner.team/stops/Cthoues1"], ["https://tec.openplanner.team/stops/LNoenne2", "https://tec.openplanner.team/stops/X917afb"], ["https://tec.openplanner.team/stops/X982amb", "https://tec.openplanner.team/stops/X982ana"], ["https://tec.openplanner.team/stops/H1cu114a", "https://tec.openplanner.team/stops/H1cu114b"], ["https://tec.openplanner.team/stops/Cchhopi4", "https://tec.openplanner.team/stops/Cmtpaix2"], ["https://tec.openplanner.team/stops/LBEairp1", "https://tec.openplanner.team/stops/LBEairp4"], ["https://tec.openplanner.team/stops/Bbiemor2", "https://tec.openplanner.team/stops/Bbiepon1"], ["https://tec.openplanner.team/stops/LPLc49-2", "https://tec.openplanner.team/stops/LPLc65-2"], ["https://tec.openplanner.team/stops/H1og130b", "https://tec.openplanner.team/stops/H1og134a"], ["https://tec.openplanner.team/stops/Lseaven2", "https://tec.openplanner.team/stops/Lsemara2"], ["https://tec.openplanner.team/stops/X641amb", "https://tec.openplanner.team/stops/X673aaa"], ["https://tec.openplanner.team/stops/X595abb", "https://tec.openplanner.team/stops/X595aib"], ["https://tec.openplanner.team/stops/LPbchat1", "https://tec.openplanner.team/stops/LPbpl--2"], ["https://tec.openplanner.team/stops/X744aea", "https://tec.openplanner.team/stops/X746ajb"], ["https://tec.openplanner.team/stops/H1hr128a", "https://tec.openplanner.team/stops/H1hr128d"], ["https://tec.openplanner.team/stops/Llggram4", "https://tec.openplanner.team/stops/Llgstvi3"], ["https://tec.openplanner.team/stops/LVllieg2", "https://tec.openplanner.team/stops/LVlplan1"], ["https://tec.openplanner.team/stops/Csepost1", "https://tec.openplanner.team/stops/Cvtchap1"], ["https://tec.openplanner.team/stops/Bixleix2", "https://tec.openplanner.team/stops/Buccbas2"], ["https://tec.openplanner.team/stops/X942aea", "https://tec.openplanner.team/stops/X942agb"], ["https://tec.openplanner.team/stops/X614apb", "https://tec.openplanner.team/stops/X614aza"], ["https://tec.openplanner.team/stops/LbOdorf2", "https://tec.openplanner.team/stops/LmYwall1"], ["https://tec.openplanner.team/stops/LLAbure2", "https://tec.openplanner.team/stops/LLAchpl1"], ["https://tec.openplanner.team/stops/H4fr389a", "https://tec.openplanner.team/stops/H4ka393b"], ["https://tec.openplanner.team/stops/X902aib", "https://tec.openplanner.team/stops/X902ala"], ["https://tec.openplanner.team/stops/X750aba", "https://tec.openplanner.team/stops/X750adb"], ["https://tec.openplanner.team/stops/X804cba", "https://tec.openplanner.team/stops/X818aaa"], ["https://tec.openplanner.team/stops/N528aqb", "https://tec.openplanner.team/stops/N528asa"], ["https://tec.openplanner.team/stops/LREaube1", "https://tec.openplanner.team/stops/LREsaul1"], ["https://tec.openplanner.team/stops/Clocroi1", "https://tec.openplanner.team/stops/Clodupr1"], ["https://tec.openplanner.team/stops/N501fuz", "https://tec.openplanner.team/stops/N501fyc"], ["https://tec.openplanner.team/stops/Cgorosa2", "https://tec.openplanner.team/stops/Ctmmana1"], ["https://tec.openplanner.team/stops/LAvambr1", "https://tec.openplanner.team/stops/LAvcani2"], ["https://tec.openplanner.team/stops/Llgcrev2", "https://tec.openplanner.team/stops/Llgdepo2"], ["https://tec.openplanner.team/stops/H1mj122a", "https://tec.openplanner.team/stops/H1mj130a"], ["https://tec.openplanner.team/stops/LeUkabe1", "https://tec.openplanner.team/stops/LeUkabe2"], ["https://tec.openplanner.team/stops/H1ho125c", "https://tec.openplanner.team/stops/H1ho130b"], ["https://tec.openplanner.team/stops/Cmmbmad2", "https://tec.openplanner.team/stops/Cmmcver1"], ["https://tec.openplanner.team/stops/Bquepos2", "https://tec.openplanner.team/stops/Bquesta2"], ["https://tec.openplanner.team/stops/Btsllsc2", "https://tec.openplanner.team/stops/Btstpch1"], ["https://tec.openplanner.team/stops/H4mt219b", "https://tec.openplanner.team/stops/H4ve131a"], ["https://tec.openplanner.team/stops/Ccychap1", "https://tec.openplanner.team/stops/Ccygara2"], ["https://tec.openplanner.team/stops/LDAptbo1", "https://tec.openplanner.team/stops/LFethie2"], ["https://tec.openplanner.team/stops/H4bo110a", "https://tec.openplanner.team/stops/H4bo111b"], ["https://tec.openplanner.team/stops/H1mg109a", "https://tec.openplanner.team/stops/H2an103b"], ["https://tec.openplanner.team/stops/Lsmdepo2", "https://tec.openplanner.team/stops/Lsmeg--2"], ["https://tec.openplanner.team/stops/LeYroth2", "https://tec.openplanner.team/stops/LeYteeh2"], ["https://tec.openplanner.team/stops/N513bbc", "https://tec.openplanner.team/stops/N516aoa"], ["https://tec.openplanner.team/stops/Bgembsg1", "https://tec.openplanner.team/stops/Bgemfbo1"], ["https://tec.openplanner.team/stops/H1te187a", "https://tec.openplanner.team/stops/H1te188b"], ["https://tec.openplanner.team/stops/Ctabaty3", "https://tec.openplanner.team/stops/Ctachst1"], ["https://tec.openplanner.team/stops/LHCbois1", "https://tec.openplanner.team/stops/LHCbois6"], ["https://tec.openplanner.team/stops/H4ka174b", "https://tec.openplanner.team/stops/H4ka192b"], ["https://tec.openplanner.team/stops/H4ga148b", "https://tec.openplanner.team/stops/H4ga164a"], ["https://tec.openplanner.team/stops/LFmbure2", "https://tec.openplanner.team/stops/LFmgeno1"], ["https://tec.openplanner.team/stops/H5pe134a", "https://tec.openplanner.team/stops/H5pe134b"], ["https://tec.openplanner.team/stops/LbTaral1", "https://tec.openplanner.team/stops/LbTaral2"], ["https://tec.openplanner.team/stops/Bdlvpco1", "https://tec.openplanner.team/stops/Bdlvpco2"], ["https://tec.openplanner.team/stops/Bbougar2", "https://tec.openplanner.team/stops/Btancnd2"], ["https://tec.openplanner.team/stops/LSBrouf1", "https://tec.openplanner.team/stops/LSBsere4"], ["https://tec.openplanner.team/stops/Clodrio2", "https://tec.openplanner.team/stops/Clomart2"], ["https://tec.openplanner.team/stops/LRRmanc1", "https://tec.openplanner.team/stops/LRRmanc2"], ["https://tec.openplanner.team/stops/LHGbeur3", "https://tec.openplanner.team/stops/LHGbeur4"], ["https://tec.openplanner.team/stops/LSNness2", "https://tec.openplanner.team/stops/LXHmart1"], ["https://tec.openplanner.team/stops/LhGadap1", "https://tec.openplanner.team/stops/LhGbahn*"], ["https://tec.openplanner.team/stops/LLreque2", "https://tec.openplanner.team/stops/LLrgobe2"], ["https://tec.openplanner.team/stops/Loumair1", "https://tec.openplanner.team/stops/Lscstan1"], ["https://tec.openplanner.team/stops/H1sy139a", "https://tec.openplanner.team/stops/H1sy139b"], ["https://tec.openplanner.team/stops/Bboueta1", "https://tec.openplanner.team/stops/Bbougbl2"], ["https://tec.openplanner.team/stops/N150adb", "https://tec.openplanner.team/stops/N150akb"], ["https://tec.openplanner.team/stops/N170aab", "https://tec.openplanner.team/stops/NC14ava"], ["https://tec.openplanner.team/stops/X938ada", "https://tec.openplanner.team/stops/X939ahb"], ["https://tec.openplanner.team/stops/Lkivolg1", "https://tec.openplanner.team/stops/Lscbour1"], ["https://tec.openplanner.team/stops/Lanhoud3", "https://tec.openplanner.team/stops/Lanpisc2"], ["https://tec.openplanner.team/stops/X762agb", "https://tec.openplanner.team/stops/X764afb"], ["https://tec.openplanner.team/stops/Cgoclad1", "https://tec.openplanner.team/stops/Cgoloca2"], ["https://tec.openplanner.team/stops/H4eg104a", "https://tec.openplanner.team/stops/H4ne136a"], ["https://tec.openplanner.team/stops/Lsnagne2", "https://tec.openplanner.team/stops/Lsnlibe2"], ["https://tec.openplanner.team/stops/Cplrymo2", "https://tec.openplanner.team/stops/Cplstfa3"], ["https://tec.openplanner.team/stops/LCTcret2", "https://tec.openplanner.team/stops/LXocomb2"], ["https://tec.openplanner.team/stops/N532acb", "https://tec.openplanner.team/stops/N533acb"], ["https://tec.openplanner.team/stops/LSlpays2", "https://tec.openplanner.team/stops/X919akd"], ["https://tec.openplanner.team/stops/LBIaepo4", "https://tec.openplanner.team/stops/LBIbois2"], ["https://tec.openplanner.team/stops/X750bab", "https://tec.openplanner.team/stops/X780aia"], ["https://tec.openplanner.team/stops/LTIgare3", "https://tec.openplanner.team/stops/LTIpora1"], ["https://tec.openplanner.team/stops/Lceprog2", "https://tec.openplanner.team/stops/Lgrdemo1"], ["https://tec.openplanner.team/stops/Bcsgres1", "https://tec.openplanner.team/stops/Bmrssmc1"], ["https://tec.openplanner.team/stops/N312abb", "https://tec.openplanner.team/stops/N312aca"], ["https://tec.openplanner.team/stops/LCxc6192", "https://tec.openplanner.team/stops/LCxross2"], ["https://tec.openplanner.team/stops/X954aca", "https://tec.openplanner.team/stops/X954acb"], ["https://tec.openplanner.team/stops/Lhufila1", "https://tec.openplanner.team/stops/Lhufila2"], ["https://tec.openplanner.team/stops/Cthgrat1", "https://tec.openplanner.team/stops/Cthpano1"], ["https://tec.openplanner.team/stops/LCsbors2", "https://tec.openplanner.team/stops/LCscarr2"], ["https://tec.openplanner.team/stops/X850acb", "https://tec.openplanner.team/stops/X850aib"], ["https://tec.openplanner.team/stops/H1ho147a", "https://tec.openplanner.team/stops/H1ho147b"], ["https://tec.openplanner.team/stops/LHAarge1", "https://tec.openplanner.team/stops/LHAdeho2"], ["https://tec.openplanner.team/stops/LBWviad1", "https://tec.openplanner.team/stops/LMgbern1"], ["https://tec.openplanner.team/stops/Lvegera2", "https://tec.openplanner.team/stops/Lveleje1"], ["https://tec.openplanner.team/stops/Cgorobe2", "https://tec.openplanner.team/stops/Ctmmath2"], ["https://tec.openplanner.team/stops/X609aja", "https://tec.openplanner.team/stops/X609aka"], ["https://tec.openplanner.team/stops/Bmelegl2", "https://tec.openplanner.team/stops/Bmelsab2"], ["https://tec.openplanner.team/stops/LMTvill1", "https://tec.openplanner.team/stops/LMTvill2"], ["https://tec.openplanner.team/stops/X807aaa", "https://tec.openplanner.team/stops/X807aba"], ["https://tec.openplanner.team/stops/H4es117a", "https://tec.openplanner.team/stops/H4es117b"], ["https://tec.openplanner.team/stops/N340abb", "https://tec.openplanner.team/stops/N340acb"], ["https://tec.openplanner.team/stops/LOVeg--1", "https://tec.openplanner.team/stops/LSopost1"], ["https://tec.openplanner.team/stops/LwMzoll1", "https://tec.openplanner.team/stops/LwMzoll2"], ["https://tec.openplanner.team/stops/X354abb", "https://tec.openplanner.team/stops/X354aia"], ["https://tec.openplanner.team/stops/Lalchar1", "https://tec.openplanner.team/stops/Lalchar2"], ["https://tec.openplanner.team/stops/Blincal1", "https://tec.openplanner.team/stops/Bpelf961"], ["https://tec.openplanner.team/stops/LSzcoop1", "https://tec.openplanner.team/stops/N506bta"], ["https://tec.openplanner.team/stops/Lchpniv2", "https://tec.openplanner.team/stops/Lvichpl2"], ["https://tec.openplanner.team/stops/H1gr113b", "https://tec.openplanner.team/stops/H1hr117a"], ["https://tec.openplanner.team/stops/N232bwb", "https://tec.openplanner.team/stops/N232ceb"], ["https://tec.openplanner.team/stops/N229arb", "https://tec.openplanner.team/stops/N230aba"], ["https://tec.openplanner.team/stops/LPLcent2", "https://tec.openplanner.team/stops/LPLcroi1"], ["https://tec.openplanner.team/stops/X818aoa", "https://tec.openplanner.team/stops/X818ara"], ["https://tec.openplanner.team/stops/LiV19--1", "https://tec.openplanner.team/stops/LiVgirk1"], ["https://tec.openplanner.team/stops/X995abb", "https://tec.openplanner.team/stops/X995ade"], ["https://tec.openplanner.team/stops/N528aoa", "https://tec.openplanner.team/stops/N528aob"], ["https://tec.openplanner.team/stops/X760aaa", "https://tec.openplanner.team/stops/X760aab"], ["https://tec.openplanner.team/stops/Cgofabr1", "https://tec.openplanner.team/stops/Cgofabr2"], ["https://tec.openplanner.team/stops/N501gpc", "https://tec.openplanner.team/stops/N501gpz"], ["https://tec.openplanner.team/stops/X941afb", "https://tec.openplanner.team/stops/X941aha"], ["https://tec.openplanner.team/stops/N513bhb", "https://tec.openplanner.team/stops/N521ata"], ["https://tec.openplanner.team/stops/Bbchm381", "https://tec.openplanner.team/stops/Bhalvla1"], ["https://tec.openplanner.team/stops/H1bg110b", "https://tec.openplanner.team/stops/H1hy125b"], ["https://tec.openplanner.team/stops/LGlwarf1", "https://tec.openplanner.team/stops/LSBjoli1"], ["https://tec.openplanner.team/stops/X824aeb", "https://tec.openplanner.team/stops/X824afa"], ["https://tec.openplanner.team/stops/Lvecase2", "https://tec.openplanner.team/stops/Lvewall2"], ["https://tec.openplanner.team/stops/LPlchpl2", "https://tec.openplanner.team/stops/LPldoua4"], ["https://tec.openplanner.team/stops/H5fl101a", "https://tec.openplanner.team/stops/H5fl103a"], ["https://tec.openplanner.team/stops/H5qu147a", "https://tec.openplanner.team/stops/H5qu150b"], ["https://tec.openplanner.team/stops/H4va231b", "https://tec.openplanner.team/stops/H4vd230b"], ["https://tec.openplanner.team/stops/Bezeksj3", "https://tec.openplanner.team/stops/Bezeksj4"], ["https://tec.openplanner.team/stops/X636aob", "https://tec.openplanner.team/stops/X636aqd"], ["https://tec.openplanner.team/stops/LVIvert1", "https://tec.openplanner.team/stops/LVIvert2"], ["https://tec.openplanner.team/stops/Lmolagu2", "https://tec.openplanner.team/stops/Lmopech1"], ["https://tec.openplanner.team/stops/X758afa", "https://tec.openplanner.team/stops/X758afb"], ["https://tec.openplanner.team/stops/Ctrecol5", "https://tec.openplanner.team/stops/Ctrvert2"], ["https://tec.openplanner.team/stops/N254aga", "https://tec.openplanner.team/stops/N254ahb"], ["https://tec.openplanner.team/stops/Csedoua1", "https://tec.openplanner.team/stops/Csemacq4"], ["https://tec.openplanner.team/stops/Llgerac2", "https://tec.openplanner.team/stops/Llgfoss2"], ["https://tec.openplanner.team/stops/N104aka", "https://tec.openplanner.team/stops/N106ara"], ["https://tec.openplanner.team/stops/Ctafran1", "https://tec.openplanner.team/stops/N543cpb"], ["https://tec.openplanner.team/stops/N559aaa", "https://tec.openplanner.team/stops/N560abb"], ["https://tec.openplanner.team/stops/Livrame1", "https://tec.openplanner.team/stops/Livrame2"], ["https://tec.openplanner.team/stops/X911aja", "https://tec.openplanner.team/stops/X911amb"], ["https://tec.openplanner.team/stops/LTIgare1", "https://tec.openplanner.team/stops/LTIgare2"], ["https://tec.openplanner.team/stops/Bbstpon1", "https://tec.openplanner.team/stops/Blpglon2"], ["https://tec.openplanner.team/stops/Bwbfckr1", "https://tec.openplanner.team/stops/Bwbfgar1"], ["https://tec.openplanner.team/stops/LCAeg--1", "https://tec.openplanner.team/stops/LLagert*"], ["https://tec.openplanner.team/stops/Brixape1", "https://tec.openplanner.team/stops/Brixmar3"], ["https://tec.openplanner.team/stops/X398aaa", "https://tec.openplanner.team/stops/X999alb"], ["https://tec.openplanner.team/stops/Bcrncor2", "https://tec.openplanner.team/stops/N529acb"], ["https://tec.openplanner.team/stops/N501adb", "https://tec.openplanner.team/stops/N501aha"], ["https://tec.openplanner.team/stops/N534bkg", "https://tec.openplanner.team/stops/N534bkh"], ["https://tec.openplanner.team/stops/X771acb", "https://tec.openplanner.team/stops/X771ada"], ["https://tec.openplanner.team/stops/Cfbcal1", "https://tec.openplanner.team/stops/Cfcbosq1"], ["https://tec.openplanner.team/stops/X717aca", "https://tec.openplanner.team/stops/X717adb"], ["https://tec.openplanner.team/stops/LCPaube1", "https://tec.openplanner.team/stops/LCPaywa2"], ["https://tec.openplanner.team/stops/N337aha", "https://tec.openplanner.team/stops/N339aaa"], ["https://tec.openplanner.team/stops/Bbchcab2", "https://tec.openplanner.team/stops/Bbchpil2"], ["https://tec.openplanner.team/stops/Bneeegl2", "https://tec.openplanner.team/stops/Bneersa2"], ["https://tec.openplanner.team/stops/N232adb", "https://tec.openplanner.team/stops/N287aaa"], ["https://tec.openplanner.team/stops/N528ama", "https://tec.openplanner.team/stops/N528ana"], ["https://tec.openplanner.team/stops/Lmabott1", "https://tec.openplanner.team/stops/Lrosoxh2"], ["https://tec.openplanner.team/stops/N537aja", "https://tec.openplanner.team/stops/N537ajb"], ["https://tec.openplanner.team/stops/LMHcant1", "https://tec.openplanner.team/stops/LMHplac4"], ["https://tec.openplanner.team/stops/LnE79--1", "https://tec.openplanner.team/stops/LnEfrie1"], ["https://tec.openplanner.team/stops/Bgrhhot1", "https://tec.openplanner.team/stops/Bgrhhot2"], ["https://tec.openplanner.team/stops/X731aga", "https://tec.openplanner.team/stops/X731agb"], ["https://tec.openplanner.team/stops/LSZmonu4", "https://tec.openplanner.team/stops/LTgcime1"], ["https://tec.openplanner.team/stops/H4mv190a", "https://tec.openplanner.team/stops/H4mv194a"], ["https://tec.openplanner.team/stops/Cprbevu2", "https://tec.openplanner.team/stops/Cprlpre2"], ["https://tec.openplanner.team/stops/LLWchat1", "https://tec.openplanner.team/stops/LLWchat2"], ["https://tec.openplanner.team/stops/N527aba", "https://tec.openplanner.team/stops/N527abb"], ["https://tec.openplanner.team/stops/X979afb", "https://tec.openplanner.team/stops/X982alb"], ["https://tec.openplanner.team/stops/Cgpmoul2", "https://tec.openplanner.team/stops/Cobvill1"], ["https://tec.openplanner.team/stops/Cglfrom1", "https://tec.openplanner.team/stops/Cglfrom2"], ["https://tec.openplanner.team/stops/Blhubja1", "https://tec.openplanner.team/stops/Blhugmo2"], ["https://tec.openplanner.team/stops/Bglacsr1", "https://tec.openplanner.team/stops/Bwaygrg1"], ["https://tec.openplanner.team/stops/LWDchab1", "https://tec.openplanner.team/stops/LWDcime1"], ["https://tec.openplanner.team/stops/LBLplac3", "https://tec.openplanner.team/stops/LBLplac4"], ["https://tec.openplanner.team/stops/X947aaa", "https://tec.openplanner.team/stops/X948aqa"], ["https://tec.openplanner.team/stops/H2sb233c", "https://tec.openplanner.team/stops/H2sb235a"], ["https://tec.openplanner.team/stops/N244aab", "https://tec.openplanner.team/stops/N244aga"], ["https://tec.openplanner.team/stops/Lalmitt1", "https://tec.openplanner.team/stops/Lalmitt2"], ["https://tec.openplanner.team/stops/X922ada", "https://tec.openplanner.team/stops/X922adb"], ["https://tec.openplanner.team/stops/X773aea", "https://tec.openplanner.team/stops/X773afa"], ["https://tec.openplanner.team/stops/Buccmer1", "https://tec.openplanner.team/stops/Buccptj2"], ["https://tec.openplanner.team/stops/LOesour2", "https://tec.openplanner.team/stops/LWAmouh1"], ["https://tec.openplanner.team/stops/X734ajb", "https://tec.openplanner.team/stops/X734akb"], ["https://tec.openplanner.team/stops/X877aaa", "https://tec.openplanner.team/stops/X989afa"], ["https://tec.openplanner.team/stops/N571afa", "https://tec.openplanner.team/stops/N571aga"], ["https://tec.openplanner.team/stops/N161abc", "https://tec.openplanner.team/stops/N161afb"], ["https://tec.openplanner.team/stops/LHHgare1", "https://tec.openplanner.team/stops/LSkbo832"], ["https://tec.openplanner.team/stops/N534bqa", "https://tec.openplanner.team/stops/N534bva"], ["https://tec.openplanner.team/stops/X608ama", "https://tec.openplanner.team/stops/X608awa"], ["https://tec.openplanner.team/stops/Bsaucre1", "https://tec.openplanner.team/stops/N541aab"], ["https://tec.openplanner.team/stops/Ccogrbu1", "https://tec.openplanner.team/stops/Crocpai2"], ["https://tec.openplanner.team/stops/Bettcha2", "https://tec.openplanner.team/stops/Bettgar1"], ["https://tec.openplanner.team/stops/Blimegl1", "https://tec.openplanner.team/stops/Bottgar5"], ["https://tec.openplanner.team/stops/LCTfair1", "https://tec.openplanner.team/stops/LCTpt--2"], ["https://tec.openplanner.team/stops/X626aga", "https://tec.openplanner.team/stops/X626aha"], ["https://tec.openplanner.team/stops/Llgcorn2", "https://tec.openplanner.team/stops/Llgcorn4"], ["https://tec.openplanner.team/stops/LHbcent2", "https://tec.openplanner.team/stops/LMechpl1"], ["https://tec.openplanner.team/stops/LrUgeme1", "https://tec.openplanner.team/stops/LsBzent1"], ["https://tec.openplanner.team/stops/Lhrspi-2", "https://tec.openplanner.team/stops/Lmirca-2"], ["https://tec.openplanner.team/stops/H4co157b", "https://tec.openplanner.team/stops/H4co158b"], ["https://tec.openplanner.team/stops/H2ec106a", "https://tec.openplanner.team/stops/H2me113a"], ["https://tec.openplanner.team/stops/LHCpaci2", "https://tec.openplanner.team/stops/LMNpann1"], ["https://tec.openplanner.team/stops/H1si162a", "https://tec.openplanner.team/stops/H1si162b"], ["https://tec.openplanner.team/stops/Cgoloca1", "https://tec.openplanner.team/stops/Cgostex2"], ["https://tec.openplanner.team/stops/H4hu116a", "https://tec.openplanner.team/stops/H4ld125a"], ["https://tec.openplanner.team/stops/N569ama", "https://tec.openplanner.team/stops/N569amb"], ["https://tec.openplanner.team/stops/Berncim1", "https://tec.openplanner.team/stops/Berncim2"], ["https://tec.openplanner.team/stops/X601cma", "https://tec.openplanner.team/stops/X601dib"], ["https://tec.openplanner.team/stops/X750bmb", "https://tec.openplanner.team/stops/X750bpb"], ["https://tec.openplanner.team/stops/Cmtproc2", "https://tec.openplanner.team/stops/Cmttkai1"], ["https://tec.openplanner.team/stops/H1ho128a", "https://tec.openplanner.team/stops/H1ho130b"], ["https://tec.openplanner.team/stops/Louegla1", "https://tec.openplanner.team/stops/Louegla2"], ["https://tec.openplanner.team/stops/LlNm%C3%BChl1", "https://tec.openplanner.team/stops/LwArabo2"], ["https://tec.openplanner.team/stops/X982ata", "https://tec.openplanner.team/stops/X982cfa"], ["https://tec.openplanner.team/stops/NL73acb", "https://tec.openplanner.team/stops/NL73adb"], ["https://tec.openplanner.team/stops/Bsoigar1", "https://tec.openplanner.team/stops/H3so166d"], ["https://tec.openplanner.team/stops/Cjuledo2", "https://tec.openplanner.team/stops/Cjuspin1"], ["https://tec.openplanner.team/stops/Lceconf2", "https://tec.openplanner.team/stops/Lcepont2"], ["https://tec.openplanner.team/stops/Lbhbalt1", "https://tec.openplanner.team/stops/Lroeg--1"], ["https://tec.openplanner.team/stops/X822afb", "https://tec.openplanner.team/stops/X822aob"], ["https://tec.openplanner.team/stops/N513avb", "https://tec.openplanner.team/stops/N514aga"], ["https://tec.openplanner.team/stops/N170ada", "https://tec.openplanner.team/stops/NC14ada"], ["https://tec.openplanner.team/stops/N528adb", "https://tec.openplanner.team/stops/N528arc"], ["https://tec.openplanner.team/stops/N117aba", "https://tec.openplanner.team/stops/N117agb"], ["https://tec.openplanner.team/stops/LCPbatt1", "https://tec.openplanner.team/stops/LGmcent1"], ["https://tec.openplanner.team/stops/N506aoa", "https://tec.openplanner.team/stops/N506aob"], ["https://tec.openplanner.team/stops/Clbentr1", "https://tec.openplanner.team/stops/H1lo119a"], ["https://tec.openplanner.team/stops/H2go114a", "https://tec.openplanner.team/stops/H2go115a"], ["https://tec.openplanner.team/stops/N501cea", "https://tec.openplanner.team/stops/N501ckz"], ["https://tec.openplanner.team/stops/X742aaa", "https://tec.openplanner.team/stops/X742aab"], ["https://tec.openplanner.team/stops/Cfaamio1", "https://tec.openplanner.team/stops/Cfaamio4"], ["https://tec.openplanner.team/stops/Cflfaub1", "https://tec.openplanner.team/stops/Cflfaub2"], ["https://tec.openplanner.team/stops/X601ajb", "https://tec.openplanner.team/stops/X601ana"], ["https://tec.openplanner.team/stops/Baudhde1", "https://tec.openplanner.team/stops/Bwbfeta1"], ["https://tec.openplanner.team/stops/N387aab", "https://tec.openplanner.team/stops/N387aca"], ["https://tec.openplanner.team/stops/N232aua", "https://tec.openplanner.team/stops/N232cca"], ["https://tec.openplanner.team/stops/Bdlmegl2", "https://tec.openplanner.team/stops/Bdvm4ca2"], ["https://tec.openplanner.team/stops/LSebott2", "https://tec.openplanner.team/stops/LSevitu3"], ["https://tec.openplanner.team/stops/Lrecomp1", "https://tec.openplanner.team/stops/Lreec--2"], ["https://tec.openplanner.team/stops/Cdacolu2", "https://tec.openplanner.team/stops/Cdamest2"], ["https://tec.openplanner.team/stops/H4pl116a", "https://tec.openplanner.team/stops/H4pl122a"], ["https://tec.openplanner.team/stops/NC14aca", "https://tec.openplanner.team/stops/NC14ada"], ["https://tec.openplanner.team/stops/Llgdesa1", "https://tec.openplanner.team/stops/Llgstap1"], ["https://tec.openplanner.team/stops/LCRabbe2", "https://tec.openplanner.team/stops/LCRrape2"], ["https://tec.openplanner.team/stops/N104aca", "https://tec.openplanner.team/stops/N118ava"], ["https://tec.openplanner.team/stops/Binclon1", "https://tec.openplanner.team/stops/Binclon2"], ["https://tec.openplanner.team/stops/Llgmarc1", "https://tec.openplanner.team/stops/Llgmarc2"], ["https://tec.openplanner.team/stops/LCpeg-*", "https://tec.openplanner.team/stops/LWM759-1"], ["https://tec.openplanner.team/stops/LnEleje2", "https://tec.openplanner.team/stops/LnEmett2"], ["https://tec.openplanner.team/stops/Bborcro2", "https://tec.openplanner.team/stops/Bborppa2"], ["https://tec.openplanner.team/stops/H1qu103b", "https://tec.openplanner.team/stops/H1qu129a"], ["https://tec.openplanner.team/stops/Bsmgmar1", "https://tec.openplanner.team/stops/Bsmgpla1"], ["https://tec.openplanner.team/stops/Lmldama1", "https://tec.openplanner.team/stops/Lmleg--2"], ["https://tec.openplanner.team/stops/H2sb228c", "https://tec.openplanner.team/stops/H2sb228d"], ["https://tec.openplanner.team/stops/X754aoa", "https://tec.openplanner.team/stops/X754aob"], ["https://tec.openplanner.team/stops/Bblague2", "https://tec.openplanner.team/stops/Bblapje2"], ["https://tec.openplanner.team/stops/X806abb", "https://tec.openplanner.team/stops/X850aob"], ["https://tec.openplanner.team/stops/LHdvill1", "https://tec.openplanner.team/stops/LHdvill2"], ["https://tec.openplanner.team/stops/X654ahb", "https://tec.openplanner.team/stops/X654ajb"], ["https://tec.openplanner.team/stops/LeUhaag1", "https://tec.openplanner.team/stops/LeUkehr4"], ["https://tec.openplanner.team/stops/LBlhaut2", "https://tec.openplanner.team/stops/LLUpier2"], ["https://tec.openplanner.team/stops/LCscarr1", "https://tec.openplanner.team/stops/LCscarr4"], ["https://tec.openplanner.team/stops/Cpccoss2", "https://tec.openplanner.team/stops/Cpctunn2"], ["https://tec.openplanner.team/stops/N291aba", "https://tec.openplanner.team/stops/N291abb"], ["https://tec.openplanner.team/stops/N525aba", "https://tec.openplanner.team/stops/N525alb"], ["https://tec.openplanner.team/stops/LHMec--1", "https://tec.openplanner.team/stops/LHMgrun2"], ["https://tec.openplanner.team/stops/Llgcham7", "https://tec.openplanner.team/stops/Llgmulh1"], ["https://tec.openplanner.team/stops/LJAcime1", "https://tec.openplanner.team/stops/LJAherb4"], ["https://tec.openplanner.team/stops/H4br108b", "https://tec.openplanner.team/stops/H4ch113b"], ["https://tec.openplanner.team/stops/Ladchat1", "https://tec.openplanner.team/stops/Ladmoul2"], ["https://tec.openplanner.team/stops/LVBeg--2", "https://tec.openplanner.team/stops/LVBvill2"], ["https://tec.openplanner.team/stops/H4ob109a", "https://tec.openplanner.team/stops/H4ob109b"], ["https://tec.openplanner.team/stops/LTHwaux1", "https://tec.openplanner.team/stops/LTHwaux2"], ["https://tec.openplanner.team/stops/Blasvil1", "https://tec.openplanner.team/stops/Blasvil2"], ["https://tec.openplanner.team/stops/LBUchpl1", "https://tec.openplanner.team/stops/LBUvall2"], ["https://tec.openplanner.team/stops/LSMcles2", "https://tec.openplanner.team/stops/LSMeg--1"], ["https://tec.openplanner.team/stops/N502aba", "https://tec.openplanner.team/stops/N502abb"], ["https://tec.openplanner.team/stops/Loucham3", "https://tec.openplanner.team/stops/Lougare3"], ["https://tec.openplanner.team/stops/N232bub", "https://tec.openplanner.team/stops/N260aeb"], ["https://tec.openplanner.team/stops/Cjuchli2", "https://tec.openplanner.team/stops/CMmade1"], ["https://tec.openplanner.team/stops/X943aab", "https://tec.openplanner.team/stops/X943ahb"], ["https://tec.openplanner.team/stops/N308aja", "https://tec.openplanner.team/stops/N308ama"], ["https://tec.openplanner.team/stops/LWOpier1", "https://tec.openplanner.team/stops/LWOunio1"], ["https://tec.openplanner.team/stops/Clgmaco1", "https://tec.openplanner.team/stops/Clgmaco2"], ["https://tec.openplanner.team/stops/H4bc101a", "https://tec.openplanner.team/stops/H4bc101b"], ["https://tec.openplanner.team/stops/X664amc", "https://tec.openplanner.team/stops/X664amd"], ["https://tec.openplanner.team/stops/Llgjoie2", "https://tec.openplanner.team/stops/Llgvero1"], ["https://tec.openplanner.team/stops/LHcgare1", "https://tec.openplanner.team/stops/LHcgare2"], ["https://tec.openplanner.team/stops/X871adb", "https://tec.openplanner.team/stops/X871aea"], ["https://tec.openplanner.team/stops/H4pe124b", "https://tec.openplanner.team/stops/H4pe126b"], ["https://tec.openplanner.team/stops/N232bvb", "https://tec.openplanner.team/stops/N260afa"], ["https://tec.openplanner.team/stops/LlZbell1", "https://tec.openplanner.team/stops/LlZkirc1"], ["https://tec.openplanner.team/stops/X804apb", "https://tec.openplanner.team/stops/X804aza"], ["https://tec.openplanner.team/stops/LAMhopi3", "https://tec.openplanner.team/stops/LOmrela1"], ["https://tec.openplanner.team/stops/Ldihusq2", "https://tec.openplanner.team/stops/Ldipl--3"], ["https://tec.openplanner.team/stops/LHEecmo2", "https://tec.openplanner.team/stops/LHEpriv1"], ["https://tec.openplanner.team/stops/N351aka", "https://tec.openplanner.team/stops/N351ava"], ["https://tec.openplanner.team/stops/H4ne132b", "https://tec.openplanner.team/stops/H4ne139a"], ["https://tec.openplanner.team/stops/X747afb", "https://tec.openplanner.team/stops/X747aha"], ["https://tec.openplanner.team/stops/NC14aha", "https://tec.openplanner.team/stops/NC14aia"], ["https://tec.openplanner.team/stops/Llgplai1", "https://tec.openplanner.team/stops/Llgplai2"], ["https://tec.openplanner.team/stops/Bgzdgst2", "https://tec.openplanner.team/stops/Bgzdgth2"], ["https://tec.openplanner.team/stops/Cctbinc1", "https://tec.openplanner.team/stops/Cctbinc2"], ["https://tec.openplanner.team/stops/LCdchod1", "https://tec.openplanner.team/stops/LMAchod1"], ["https://tec.openplanner.team/stops/N501hda", "https://tec.openplanner.team/stops/N501zba"], ["https://tec.openplanner.team/stops/LCUmora2", "https://tec.openplanner.team/stops/LCUthie2"], ["https://tec.openplanner.team/stops/X604aaa", "https://tec.openplanner.team/stops/X618aab"], ["https://tec.openplanner.team/stops/X808adb", "https://tec.openplanner.team/stops/X808afb"], ["https://tec.openplanner.team/stops/X886aba", "https://tec.openplanner.team/stops/X886ada"], ["https://tec.openplanner.team/stops/H2fa106a", "https://tec.openplanner.team/stops/H2hg269a"], ["https://tec.openplanner.team/stops/LSogare2", "https://tec.openplanner.team/stops/LSokrin2"], ["https://tec.openplanner.team/stops/X602ara", "https://tec.openplanner.team/stops/X653aea"], ["https://tec.openplanner.team/stops/H1bl106a", "https://tec.openplanner.team/stops/H1pd145a"], ["https://tec.openplanner.team/stops/LAicarr1", "https://tec.openplanner.team/stops/Lccuner1"], ["https://tec.openplanner.team/stops/X759acb", "https://tec.openplanner.team/stops/X759aea"], ["https://tec.openplanner.team/stops/X768acb", "https://tec.openplanner.team/stops/X768aha"], ["https://tec.openplanner.team/stops/X771aba", "https://tec.openplanner.team/stops/X771abb"], ["https://tec.openplanner.team/stops/N505aea", "https://tec.openplanner.team/stops/N506apb"], ["https://tec.openplanner.team/stops/LrAeife2", "https://tec.openplanner.team/stops/LrAplat1"], ["https://tec.openplanner.team/stops/X750aaa", "https://tec.openplanner.team/stops/X780aha"], ["https://tec.openplanner.team/stops/H4gu106a", "https://tec.openplanner.team/stops/H4gu107a"], ["https://tec.openplanner.team/stops/LRMn58-2", "https://tec.openplanner.team/stops/LXoroch1"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lendonh1"], ["https://tec.openplanner.team/stops/X911aub", "https://tec.openplanner.team/stops/X912akb"], ["https://tec.openplanner.team/stops/Lpejonc1", "https://tec.openplanner.team/stops/Lpevesd2"], ["https://tec.openplanner.team/stops/Cfabnat2", "https://tec.openplanner.team/stops/Cfanoci2"], ["https://tec.openplanner.team/stops/LHCpaci1", "https://tec.openplanner.team/stops/LWEwilc2"], ["https://tec.openplanner.team/stops/X602abb", "https://tec.openplanner.team/stops/X602acb"], ["https://tec.openplanner.team/stops/H1do109b", "https://tec.openplanner.team/stops/H1do130a"], ["https://tec.openplanner.team/stops/Ljucaba2", "https://tec.openplanner.team/stops/Ljufler2"], ["https://tec.openplanner.team/stops/N346adb", "https://tec.openplanner.team/stops/X346ala"], ["https://tec.openplanner.team/stops/H4an104a", "https://tec.openplanner.team/stops/H4an104b"], ["https://tec.openplanner.team/stops/Bgntcbo1", "https://tec.openplanner.team/stops/Btilsnc2"], ["https://tec.openplanner.team/stops/N574aga", "https://tec.openplanner.team/stops/N574agb"], ["https://tec.openplanner.team/stops/N534beb", "https://tec.openplanner.team/stops/N543coa"], ["https://tec.openplanner.team/stops/Bfledpi1", "https://tec.openplanner.team/stops/Bfledpi2"], ["https://tec.openplanner.team/stops/Cmaduna2", "https://tec.openplanner.team/stops/Cmastma4"], ["https://tec.openplanner.team/stops/LSAeg--2", "https://tec.openplanner.team/stops/LSAmous1"], ["https://tec.openplanner.team/stops/Cmaprov2", "https://tec.openplanner.team/stops/Cmastni2"], ["https://tec.openplanner.team/stops/X641asb", "https://tec.openplanner.team/stops/X641ata"], ["https://tec.openplanner.team/stops/Btubpla1", "https://tec.openplanner.team/stops/Btubpla2"], ["https://tec.openplanner.team/stops/LWOsudr1", "https://tec.openplanner.team/stops/LWOunio2"], ["https://tec.openplanner.team/stops/H1hn209a", "https://tec.openplanner.team/stops/H1hn210a"], ["https://tec.openplanner.team/stops/N501aba", "https://tec.openplanner.team/stops/N503adb"], ["https://tec.openplanner.team/stops/X608ara", "https://tec.openplanner.team/stops/X608asb"], ["https://tec.openplanner.team/stops/LaFbruc1", "https://tec.openplanner.team/stops/LrGzent2"], ["https://tec.openplanner.team/stops/LHhvivi1", "https://tec.openplanner.team/stops/LHhvivi2"], ["https://tec.openplanner.team/stops/X922aia", "https://tec.openplanner.team/stops/X922aib"], ["https://tec.openplanner.team/stops/Bstetre1", "https://tec.openplanner.team/stops/Bstetre2"], ["https://tec.openplanner.team/stops/N106akb", "https://tec.openplanner.team/stops/N162aeb"], ["https://tec.openplanner.team/stops/LFmlens2", "https://tec.openplanner.team/stops/LMOlens3"], ["https://tec.openplanner.team/stops/LBNplei1", "https://tec.openplanner.team/stops/LhEcolo2"], ["https://tec.openplanner.team/stops/N501bdb", "https://tec.openplanner.team/stops/N501hsz"], ["https://tec.openplanner.team/stops/H2go120a", "https://tec.openplanner.team/stops/H2mg153a"], ["https://tec.openplanner.team/stops/LWAvand1", "https://tec.openplanner.team/stops/LWAvisi2"], ["https://tec.openplanner.team/stops/N515aka", "https://tec.openplanner.team/stops/N515alb"], ["https://tec.openplanner.team/stops/Lrcastr1", "https://tec.openplanner.team/stops/Lrclant2"], ["https://tec.openplanner.team/stops/X897aub", "https://tec.openplanner.team/stops/X897awa"], ["https://tec.openplanner.team/stops/H5pe125b", "https://tec.openplanner.team/stops/H5pe127b"], ["https://tec.openplanner.team/stops/X903aaa", "https://tec.openplanner.team/stops/X903aba"], ["https://tec.openplanner.team/stops/LLscent1", "https://tec.openplanner.team/stops/LRccent1"], ["https://tec.openplanner.team/stops/Llgbois1", "https://tec.openplanner.team/stops/Llgverg1"], ["https://tec.openplanner.team/stops/H1th182a", "https://tec.openplanner.team/stops/H3lr116a"], ["https://tec.openplanner.team/stops/LWAathe1", "https://tec.openplanner.team/stops/LWAvand1"], ["https://tec.openplanner.team/stops/Ltiegli2", "https://tec.openplanner.team/stops/Ltipass2"], ["https://tec.openplanner.team/stops/H4ft133a", "https://tec.openplanner.team/stops/H4ta118a"], ["https://tec.openplanner.team/stops/X822aab", "https://tec.openplanner.team/stops/X822aob"], ["https://tec.openplanner.team/stops/N135adc", "https://tec.openplanner.team/stops/N135ata"], ["https://tec.openplanner.team/stops/Cjucomb1", "https://tec.openplanner.team/stops/Cjupn3"], ["https://tec.openplanner.team/stops/X839abb", "https://tec.openplanner.team/stops/X839aca"], ["https://tec.openplanner.team/stops/LeUhaag1", "https://tec.openplanner.team/stops/LeUschi2"], ["https://tec.openplanner.team/stops/Llieg--3", "https://tec.openplanner.team/stops/Llieg--4"], ["https://tec.openplanner.team/stops/X753abb", "https://tec.openplanner.team/stops/X753abc"], ["https://tec.openplanner.team/stops/N548aab", "https://tec.openplanner.team/stops/N548aib"], ["https://tec.openplanner.team/stops/X917aka", "https://tec.openplanner.team/stops/X922afa"], ["https://tec.openplanner.team/stops/Cladura4", "https://tec.openplanner.team/stops/NC23afb"], ["https://tec.openplanner.team/stops/Llglave1", "https://tec.openplanner.team/stops/Llgrosa1"], ["https://tec.openplanner.team/stops/H4av103b", "https://tec.openplanner.team/stops/H4de113b"], ["https://tec.openplanner.team/stops/LHScite1", "https://tec.openplanner.team/stops/LHScite2"], ["https://tec.openplanner.team/stops/LMsec--2", "https://tec.openplanner.team/stops/LMspont1"], ["https://tec.openplanner.team/stops/Clvorle2", "https://tec.openplanner.team/stops/NC02bbb"], ["https://tec.openplanner.team/stops/Bettgle1", "https://tec.openplanner.team/stops/Bettlha1"], ["https://tec.openplanner.team/stops/LHuherm1", "https://tec.openplanner.team/stops/LMHcant1"], ["https://tec.openplanner.team/stops/X620aba", "https://tec.openplanner.team/stops/X620abb"], ["https://tec.openplanner.team/stops/LWOrout2", "https://tec.openplanner.team/stops/LWOwonc2"], ["https://tec.openplanner.team/stops/LwAkape2", "https://tec.openplanner.team/stops/LwArabo1"], ["https://tec.openplanner.team/stops/Bcrnnca1", "https://tec.openplanner.team/stops/Bwlhpma1"], ["https://tec.openplanner.team/stops/LWaatel2", "https://tec.openplanner.team/stops/LWaccom1"], ["https://tec.openplanner.team/stops/LTotrui2", "https://tec.openplanner.team/stops/LTowijk2"], ["https://tec.openplanner.team/stops/H4ka182a", "https://tec.openplanner.team/stops/H4ka190b"], ["https://tec.openplanner.team/stops/X828aaa", "https://tec.openplanner.team/stops/X829adb"], ["https://tec.openplanner.team/stops/Loufleu1", "https://tec.openplanner.team/stops/Lousite6"], ["https://tec.openplanner.team/stops/N579aaa", "https://tec.openplanner.team/stops/N579afa"], ["https://tec.openplanner.team/stops/LHdvill1", "https://tec.openplanner.team/stops/LLOcreu2"], ["https://tec.openplanner.team/stops/X897awa", "https://tec.openplanner.team/stops/X897aya"], ["https://tec.openplanner.team/stops/N357aba", "https://tec.openplanner.team/stops/N988aaa"], ["https://tec.openplanner.team/stops/Bwavlep2", "https://tec.openplanner.team/stops/Bwavrij2"], ["https://tec.openplanner.team/stops/LBNburg1", "https://tec.openplanner.team/stops/LMeeg--1"], ["https://tec.openplanner.team/stops/Lhrmare4", "https://tec.openplanner.team/stops/Llgchan1"], ["https://tec.openplanner.team/stops/Cgy3011", "https://tec.openplanner.team/stops/Cgy3012"], ["https://tec.openplanner.team/stops/LLrbano1", "https://tec.openplanner.team/stops/LLrpape3"], ["https://tec.openplanner.team/stops/N221aca", "https://tec.openplanner.team/stops/N221adb"], ["https://tec.openplanner.team/stops/H1ol140a", "https://tec.openplanner.team/stops/H1ol142a"], ["https://tec.openplanner.team/stops/LCTcret2", "https://tec.openplanner.team/stops/LFIeg--2"], ["https://tec.openplanner.team/stops/N538ama", "https://tec.openplanner.team/stops/N538amd"], ["https://tec.openplanner.team/stops/Cmldupu1", "https://tec.openplanner.team/stops/Cmlhauc4"], ["https://tec.openplanner.team/stops/H1er108a", "https://tec.openplanner.team/stops/H1er113a"], ["https://tec.openplanner.team/stops/Bnivbxl2", "https://tec.openplanner.team/stops/Bnivlde2"], ["https://tec.openplanner.team/stops/N538bab", "https://tec.openplanner.team/stops/N538bba"], ["https://tec.openplanner.team/stops/N533agb", "https://tec.openplanner.team/stops/N533aha"], ["https://tec.openplanner.team/stops/H4ty382a", "https://tec.openplanner.team/stops/H4ty382b"], ["https://tec.openplanner.team/stops/LAMdelh*", "https://tec.openplanner.team/stops/LOmmer-1"], ["https://tec.openplanner.team/stops/H4ne142a", "https://tec.openplanner.team/stops/H4ne148a"], ["https://tec.openplanner.team/stops/LRmkerk2", "https://tec.openplanner.team/stops/LRmkult1"], ["https://tec.openplanner.team/stops/X912aba", "https://tec.openplanner.team/stops/X912abb"], ["https://tec.openplanner.team/stops/LCeterm2", "https://tec.openplanner.team/stops/LLWcarr1"], ["https://tec.openplanner.team/stops/Loutroi1", "https://tec.openplanner.team/stops/Louvand2"], ["https://tec.openplanner.team/stops/X982bnb", "https://tec.openplanner.team/stops/X986aha"], ["https://tec.openplanner.team/stops/LCnvill1", "https://tec.openplanner.team/stops/LLUdeig1"], ["https://tec.openplanner.team/stops/X721aba", "https://tec.openplanner.team/stops/X721abb"], ["https://tec.openplanner.team/stops/LBichen2", "https://tec.openplanner.team/stops/LBivi--2"], ["https://tec.openplanner.team/stops/N505aka", "https://tec.openplanner.team/stops/N512awa"], ["https://tec.openplanner.team/stops/Cmohame1", "https://tec.openplanner.team/stops/Cmorgof2"], ["https://tec.openplanner.team/stops/LFCdree1", "https://tec.openplanner.team/stops/LFChuis2"], ["https://tec.openplanner.team/stops/Bblabfo1", "https://tec.openplanner.team/stops/Bblacco2"], ["https://tec.openplanner.team/stops/LNHhome2", "https://tec.openplanner.team/stops/LSecomm1"], ["https://tec.openplanner.team/stops/LwAschu1", "https://tec.openplanner.team/stops/LwAschu2"], ["https://tec.openplanner.team/stops/X663ahd", "https://tec.openplanner.team/stops/X663aia"], ["https://tec.openplanner.team/stops/N501fga", "https://tec.openplanner.team/stops/N501fgb"], ["https://tec.openplanner.team/stops/N501jma", "https://tec.openplanner.team/stops/N501jna"], ["https://tec.openplanner.team/stops/N132aea", "https://tec.openplanner.team/stops/N132aeb"], ["https://tec.openplanner.team/stops/H1wa138a", "https://tec.openplanner.team/stops/H1wa158b"], ["https://tec.openplanner.team/stops/LWOmart1", "https://tec.openplanner.team/stops/LWOruis2"], ["https://tec.openplanner.team/stops/Cgywaut2", "https://tec.openplanner.team/stops/CMsartc1"], ["https://tec.openplanner.team/stops/Lceegth1", "https://tec.openplanner.team/stops/Lceprog1"], ["https://tec.openplanner.team/stops/Cdajume1", "https://tec.openplanner.team/stops/Cdajume2"], ["https://tec.openplanner.team/stops/LTRsain1", "https://tec.openplanner.team/stops/LTRsain2"], ["https://tec.openplanner.team/stops/Lpegole1", "https://tec.openplanner.team/stops/Lpeprev1"], ["https://tec.openplanner.team/stops/N532ahb", "https://tec.openplanner.team/stops/N532aka"], ["https://tec.openplanner.team/stops/X615avb", "https://tec.openplanner.team/stops/X615bba"], ["https://tec.openplanner.team/stops/N321aba", "https://tec.openplanner.team/stops/N321abb"], ["https://tec.openplanner.team/stops/Bhalvla1", "https://tec.openplanner.team/stops/Bwaucig1"], ["https://tec.openplanner.team/stops/N242aea", "https://tec.openplanner.team/stops/N243ada"], ["https://tec.openplanner.team/stops/Lmaelhe1", "https://tec.openplanner.team/stops/Lmapomm2"], ["https://tec.openplanner.team/stops/LFPho8a1", "https://tec.openplanner.team/stops/LWRbois2"], ["https://tec.openplanner.team/stops/LaAkapi1", "https://tec.openplanner.team/stops/LlCgren1"], ["https://tec.openplanner.team/stops/H4do101b", "https://tec.openplanner.team/stops/H4do107c"], ["https://tec.openplanner.team/stops/Lcapisc2", "https://tec.openplanner.team/stops/Lrofont1"], ["https://tec.openplanner.team/stops/LVPcrok2", "https://tec.openplanner.team/stops/LVPduvi1"], ["https://tec.openplanner.team/stops/X896aab", "https://tec.openplanner.team/stops/X898aob"], ["https://tec.openplanner.team/stops/Bixlaca2", "https://tec.openplanner.team/stops/Buccbas1"], ["https://tec.openplanner.team/stops/X640aeb", "https://tec.openplanner.team/stops/X640akb"], ["https://tec.openplanner.team/stops/H1ob327a", "https://tec.openplanner.team/stops/H1ob333b"], ["https://tec.openplanner.team/stops/Cmtgrim2", "https://tec.openplanner.team/stops/Cmttrie2"], ["https://tec.openplanner.team/stops/N252aba", "https://tec.openplanner.team/stops/N252abb"], ["https://tec.openplanner.team/stops/X620aeb", "https://tec.openplanner.team/stops/X620ahb"], ["https://tec.openplanner.team/stops/H1sb145a", "https://tec.openplanner.team/stops/H1sb151a"], ["https://tec.openplanner.team/stops/LHEelva2", "https://tec.openplanner.team/stops/LMhvina1"], ["https://tec.openplanner.team/stops/H1ms262a", "https://tec.openplanner.team/stops/H1ms277a"], ["https://tec.openplanner.team/stops/LOljean1", "https://tec.openplanner.team/stops/LOljean2"], ["https://tec.openplanner.team/stops/X801ayb", "https://tec.openplanner.team/stops/X801cja"], ["https://tec.openplanner.team/stops/N209afa", "https://tec.openplanner.team/stops/N209ama"], ["https://tec.openplanner.team/stops/Btubaig1", "https://tec.openplanner.team/stops/Btubbai1"], ["https://tec.openplanner.team/stops/H4ea127a", "https://tec.openplanner.team/stops/H4ea127b"], ["https://tec.openplanner.team/stops/Bitrcan1", "https://tec.openplanner.team/stops/Bitrcan2"], ["https://tec.openplanner.team/stops/LDAbois1", "https://tec.openplanner.team/stops/LDAbois2"], ["https://tec.openplanner.team/stops/Bmlnegl1", "https://tec.openplanner.team/stops/Bmlnegl2"], ["https://tec.openplanner.team/stops/H1as103b", "https://tec.openplanner.team/stops/H1nv325a"], ["https://tec.openplanner.team/stops/Blpgbat2", "https://tec.openplanner.team/stops/Bvxgpro1"], ["https://tec.openplanner.team/stops/N102aab", "https://tec.openplanner.team/stops/N116acb"], ["https://tec.openplanner.team/stops/LWeec--1", "https://tec.openplanner.team/stops/LWepost2"], ["https://tec.openplanner.team/stops/H5pe133a", "https://tec.openplanner.team/stops/H5pe142b"], ["https://tec.openplanner.team/stops/Bhenpla1", "https://tec.openplanner.team/stops/Bhenron1"], ["https://tec.openplanner.team/stops/Bwlhpec1", "https://tec.openplanner.team/stops/Bwlhpec2"], ["https://tec.openplanner.team/stops/X358adb", "https://tec.openplanner.team/stops/X358aeb"], ["https://tec.openplanner.team/stops/H1bb118b", "https://tec.openplanner.team/stops/H1bb119b"], ["https://tec.openplanner.team/stops/N501bka", "https://tec.openplanner.team/stops/N501bqa"], ["https://tec.openplanner.team/stops/Llgvero1", "https://tec.openplanner.team/stops/Llgwall1"], ["https://tec.openplanner.team/stops/Cchsud11", "https://tec.openplanner.team/stops/Cchsud18"], ["https://tec.openplanner.team/stops/Llgfran1", "https://tec.openplanner.team/stops/Llgoise2"], ["https://tec.openplanner.team/stops/X775aba", "https://tec.openplanner.team/stops/X775aea"], ["https://tec.openplanner.team/stops/LNipla3", "https://tec.openplanner.team/stops/LNipre-1"], ["https://tec.openplanner.team/stops/Cctvict1", "https://tec.openplanner.team/stops/Cctvict3"], ["https://tec.openplanner.team/stops/Blnzcar2", "https://tec.openplanner.team/stops/N522aga"], ["https://tec.openplanner.team/stops/N524ala", "https://tec.openplanner.team/stops/N524alb"], ["https://tec.openplanner.team/stops/LETec--1", "https://tec.openplanner.team/stops/LETfort2"], ["https://tec.openplanner.team/stops/X901avb", "https://tec.openplanner.team/stops/X902bga"], ["https://tec.openplanner.team/stops/LHUmess2", "https://tec.openplanner.team/stops/LTicent2"], ["https://tec.openplanner.team/stops/LJAchat2", "https://tec.openplanner.team/stops/LJAwerf2"], ["https://tec.openplanner.team/stops/X622ada", "https://tec.openplanner.team/stops/X622aeb"], ["https://tec.openplanner.team/stops/X654afa", "https://tec.openplanner.team/stops/X670acb"], ["https://tec.openplanner.team/stops/H4ep130a", "https://tec.openplanner.team/stops/H4rm109a"], ["https://tec.openplanner.team/stops/H2hp123c", "https://tec.openplanner.team/stops/H2pe156b"], ["https://tec.openplanner.team/stops/Bmangar1", "https://tec.openplanner.team/stops/H2mg138a"], ["https://tec.openplanner.team/stops/Bovepla1", "https://tec.openplanner.team/stops/Bovevri1"], ["https://tec.openplanner.team/stops/LAUscha2", "https://tec.openplanner.team/stops/LFPchat1"], ["https://tec.openplanner.team/stops/X626ana", "https://tec.openplanner.team/stops/X626anb"], ["https://tec.openplanner.team/stops/H2ma264a", "https://tec.openplanner.team/stops/H2sb226a"], ["https://tec.openplanner.team/stops/H1bx107b", "https://tec.openplanner.team/stops/H1bx108a"], ["https://tec.openplanner.team/stops/H2an102a", "https://tec.openplanner.team/stops/H2an103a"], ["https://tec.openplanner.team/stops/H5at109a", "https://tec.openplanner.team/stops/H5at128a"], ["https://tec.openplanner.team/stops/H4ch114a", "https://tec.openplanner.team/stops/H4ch119b"], ["https://tec.openplanner.team/stops/H1mv238a", "https://tec.openplanner.team/stops/H1mv243a"], ["https://tec.openplanner.team/stops/H1hm174a", "https://tec.openplanner.team/stops/H1hm177b"], ["https://tec.openplanner.team/stops/Ccojaur2", "https://tec.openplanner.team/stops/Ccotrie3"], ["https://tec.openplanner.team/stops/X802aeb", "https://tec.openplanner.team/stops/X802afb"], ["https://tec.openplanner.team/stops/LScread1", "https://tec.openplanner.team/stops/LTNsarl1"], ["https://tec.openplanner.team/stops/Clodrio3", "https://tec.openplanner.team/stops/Clodupr2"], ["https://tec.openplanner.team/stops/LVBrmon2", "https://tec.openplanner.team/stops/LVBvill2"], ["https://tec.openplanner.team/stops/X612adb", "https://tec.openplanner.team/stops/X623ada"], ["https://tec.openplanner.team/stops/H4eg102b", "https://tec.openplanner.team/stops/H4eg107a"], ["https://tec.openplanner.team/stops/LhGbahn*", "https://tec.openplanner.team/stops/LhSkape2"], ["https://tec.openplanner.team/stops/N351asa", "https://tec.openplanner.team/stops/X351aob"], ["https://tec.openplanner.team/stops/X850afa", "https://tec.openplanner.team/stops/X850aia"], ["https://tec.openplanner.team/stops/Lmagara1", "https://tec.openplanner.team/stops/Lroboeg2"], ["https://tec.openplanner.team/stops/Ladarev2", "https://tec.openplanner.team/stops/Ladstat2"], ["https://tec.openplanner.team/stops/Llgdepo5", "https://tec.openplanner.team/stops/Llgpoli2"], ["https://tec.openplanner.team/stops/N503aba", "https://tec.openplanner.team/stops/N503ada"], ["https://tec.openplanner.team/stops/Lbhgare1", "https://tec.openplanner.team/stops/Lromerl1"], ["https://tec.openplanner.team/stops/Bbcoben2", "https://tec.openplanner.team/stops/Bbcolno1"], ["https://tec.openplanner.team/stops/LeUjuge1", "https://tec.openplanner.team/stops/LeUmoor1"], ["https://tec.openplanner.team/stops/N206aaa", "https://tec.openplanner.team/stops/N206aba"], ["https://tec.openplanner.team/stops/X837aka", "https://tec.openplanner.team/stops/X837akb"], ["https://tec.openplanner.team/stops/Bsgihmo2", "https://tec.openplanner.team/stops/Bsgimca1"], ["https://tec.openplanner.team/stops/Cmyoasi1", "https://tec.openplanner.team/stops/Cmyoasi2"], ["https://tec.openplanner.team/stops/LNOning2", "https://tec.openplanner.team/stops/LRE154-1"], ["https://tec.openplanner.team/stops/Cluberl1", "https://tec.openplanner.team/stops/Cvvcime2"], ["https://tec.openplanner.team/stops/LAYchal2", "https://tec.openplanner.team/stops/LAYgare1"], ["https://tec.openplanner.team/stops/Lanpisc2", "https://tec.openplanner.team/stops/Lmomarr1"], ["https://tec.openplanner.team/stops/Ccomiau2", "https://tec.openplanner.team/stops/Cpclibe4"], ["https://tec.openplanner.team/stops/N533ala", "https://tec.openplanner.team/stops/N533aob"], ["https://tec.openplanner.team/stops/X741aeb", "https://tec.openplanner.team/stops/X741apa"], ["https://tec.openplanner.team/stops/LRRbuta1", "https://tec.openplanner.team/stops/LRRchea1"], ["https://tec.openplanner.team/stops/H2hg145b", "https://tec.openplanner.team/stops/H2hg160b"], ["https://tec.openplanner.team/stops/NL74aac", "https://tec.openplanner.team/stops/NL74aja"], ["https://tec.openplanner.team/stops/N538ala", "https://tec.openplanner.team/stops/N538ara"], ["https://tec.openplanner.team/stops/Clbchba2", "https://tec.openplanner.team/stops/Cthgrat2"], ["https://tec.openplanner.team/stops/Cthnsnc", "https://tec.openplanner.team/stops/Cthvbas3"], ["https://tec.openplanner.team/stops/Cglbras1", "https://tec.openplanner.team/stops/Cglfrom1"], ["https://tec.openplanner.team/stops/LOunebl1", "https://tec.openplanner.team/stops/X261aba"], ["https://tec.openplanner.team/stops/Lsecast2", "https://tec.openplanner.team/stops/Lsehtsa2"], ["https://tec.openplanner.team/stops/NR30aba", "https://tec.openplanner.team/stops/NR30abb"], ["https://tec.openplanner.team/stops/NC11arb", "https://tec.openplanner.team/stops/NC11ard"], ["https://tec.openplanner.team/stops/LAvambr1", "https://tec.openplanner.team/stops/LMXroye2"], ["https://tec.openplanner.team/stops/H4gu106b", "https://tec.openplanner.team/stops/H4gu107a"], ["https://tec.openplanner.team/stops/N135aya", "https://tec.openplanner.team/stops/N135bia"], ["https://tec.openplanner.team/stops/Lmopech1", "https://tec.openplanner.team/stops/Lmopech2"], ["https://tec.openplanner.team/stops/Ctufleu2", "https://tec.openplanner.team/stops/Ctufleu3"], ["https://tec.openplanner.team/stops/N163aab", "https://tec.openplanner.team/stops/N569anb"], ["https://tec.openplanner.team/stops/Lpecroi2", "https://tec.openplanner.team/stops/LWenouv1"], ["https://tec.openplanner.team/stops/Lan14ve1", "https://tec.openplanner.team/stops/Llglys-2"], ["https://tec.openplanner.team/stops/LStroch1", "https://tec.openplanner.team/stops/LWNfani1"], ["https://tec.openplanner.team/stops/Clomari2", "https://tec.openplanner.team/stops/CMmari1"], ["https://tec.openplanner.team/stops/Bsaubbo2", "https://tec.openplanner.team/stops/Bsaubra1"], ["https://tec.openplanner.team/stops/X850aea", "https://tec.openplanner.team/stops/X850aeb"], ["https://tec.openplanner.team/stops/X650aja", "https://tec.openplanner.team/stops/X650akb"], ["https://tec.openplanner.team/stops/Cchmonu2", "https://tec.openplanner.team/stops/Cchwate2"], ["https://tec.openplanner.team/stops/LWipaif1", "https://tec.openplanner.team/stops/LWipaif4"], ["https://tec.openplanner.team/stops/LBEfagn2", "https://tec.openplanner.team/stops/LBEnina4"], ["https://tec.openplanner.team/stops/N343aca", "https://tec.openplanner.team/stops/N343ala"], ["https://tec.openplanner.team/stops/Brebrog2", "https://tec.openplanner.team/stops/H2pr116b"], ["https://tec.openplanner.team/stops/Blmlfau1", "https://tec.openplanner.team/stops/Blmlfau2"], ["https://tec.openplanner.team/stops/N127acb", "https://tec.openplanner.team/stops/N127ada"], ["https://tec.openplanner.team/stops/LESpont3", "https://tec.openplanner.team/stops/LESpont4"], ["https://tec.openplanner.team/stops/H1ms903a", "https://tec.openplanner.team/stops/H1ms905a"], ["https://tec.openplanner.team/stops/X725ana", "https://tec.openplanner.team/stops/X725apa"], ["https://tec.openplanner.team/stops/X741ala", "https://tec.openplanner.team/stops/X758akb"], ["https://tec.openplanner.team/stops/LCpegli2", "https://tec.openplanner.team/stops/LSPvigi2"], ["https://tec.openplanner.team/stops/H1ob333a", "https://tec.openplanner.team/stops/H1ob335c"], ["https://tec.openplanner.team/stops/N211anb", "https://tec.openplanner.team/stops/N211bab"], ["https://tec.openplanner.team/stops/X663ata", "https://tec.openplanner.team/stops/X664amb"], ["https://tec.openplanner.team/stops/LkTkabi2", "https://tec.openplanner.team/stops/LwArabo2"], ["https://tec.openplanner.team/stops/N116aba", "https://tec.openplanner.team/stops/N116ada"], ["https://tec.openplanner.team/stops/Lhrwigi1", "https://tec.openplanner.team/stops/Lwaeau-2"], ["https://tec.openplanner.team/stops/H4ma418b", "https://tec.openplanner.team/stops/H4oq228b"], ["https://tec.openplanner.team/stops/N201apa", "https://tec.openplanner.team/stops/N201awb"], ["https://tec.openplanner.team/stops/LFArela2", "https://tec.openplanner.team/stops/LFArela5"], ["https://tec.openplanner.team/stops/H1go118b", "https://tec.openplanner.team/stops/H1go174a"], ["https://tec.openplanner.team/stops/Lrebriq2", "https://tec.openplanner.team/stops/Lrecite1"], ["https://tec.openplanner.team/stops/H1bo102b", "https://tec.openplanner.team/stops/H1te198a"], ["https://tec.openplanner.team/stops/Llocime1", "https://tec.openplanner.team/stops/Lloretr1"], ["https://tec.openplanner.team/stops/N527aab", "https://tec.openplanner.team/stops/N527aga"], ["https://tec.openplanner.team/stops/N551aob", "https://tec.openplanner.team/stops/N552ada"], ["https://tec.openplanner.team/stops/Lprferm1", "https://tec.openplanner.team/stops/Lprtill1"], ["https://tec.openplanner.team/stops/LFfeg--2", "https://tec.openplanner.team/stops/LPRecol2"], ["https://tec.openplanner.team/stops/Bgdhcsh1", "https://tec.openplanner.team/stops/Bgdhpco1"], ["https://tec.openplanner.team/stops/N508apb", "https://tec.openplanner.team/stops/N513bib"], ["https://tec.openplanner.team/stops/X769ajb", "https://tec.openplanner.team/stops/X791aab"], ["https://tec.openplanner.team/stops/N549aaa", "https://tec.openplanner.team/stops/N578abb"], ["https://tec.openplanner.team/stops/H1gh144a", "https://tec.openplanner.team/stops/H1gh150b"], ["https://tec.openplanner.team/stops/Bbougar2", "https://tec.openplanner.team/stops/Bbstbou2"], ["https://tec.openplanner.team/stops/Cfccabi2", "https://tec.openplanner.team/stops/Cfcctru1"], ["https://tec.openplanner.team/stops/X757ajb", "https://tec.openplanner.team/stops/X757akb"], ["https://tec.openplanner.team/stops/X723ana", "https://tec.openplanner.team/stops/X724aga"], ["https://tec.openplanner.team/stops/N331aia", "https://tec.openplanner.team/stops/N331aib"], ["https://tec.openplanner.team/stops/X996aaa", "https://tec.openplanner.team/stops/X996aab"], ["https://tec.openplanner.team/stops/H1ba116b", "https://tec.openplanner.team/stops/H1gh371b"], ["https://tec.openplanner.team/stops/H4ir161b", "https://tec.openplanner.team/stops/H4og212a"], ["https://tec.openplanner.team/stops/Balswwe2", "https://tec.openplanner.team/stops/Bwaubru1"], ["https://tec.openplanner.team/stops/Cmtcapi2", "https://tec.openplanner.team/stops/Cmtplac3"], ["https://tec.openplanner.team/stops/Bgntpos1", "https://tec.openplanner.team/stops/Bsgevil1"], ["https://tec.openplanner.team/stops/X796ada", "https://tec.openplanner.team/stops/X796adb"], ["https://tec.openplanner.team/stops/LVIferm1", "https://tec.openplanner.team/stops/LVItroi*"], ["https://tec.openplanner.team/stops/H1pw122b", "https://tec.openplanner.team/stops/H1wa154b"], ["https://tec.openplanner.team/stops/X917aaa", "https://tec.openplanner.team/stops/X917abb"], ["https://tec.openplanner.team/stops/N135aea", "https://tec.openplanner.team/stops/N140aab"], ["https://tec.openplanner.team/stops/X892acb", "https://tec.openplanner.team/stops/X892aia"], ["https://tec.openplanner.team/stops/LVLchem2", "https://tec.openplanner.team/stops/LVLpane2"], ["https://tec.openplanner.team/stops/Clb4bra1", "https://tec.openplanner.team/stops/Clbpepi2"], ["https://tec.openplanner.team/stops/N383aba", "https://tec.openplanner.team/stops/N874amc"], ["https://tec.openplanner.team/stops/LlNkirc2", "https://tec.openplanner.team/stops/LlNlimb1"], ["https://tec.openplanner.team/stops/LFMstat2", "https://tec.openplanner.team/stops/LFMveur2"], ["https://tec.openplanner.team/stops/Bwaubru1", "https://tec.openplanner.team/stops/Bwaucig1"], ["https://tec.openplanner.team/stops/LgRzent1", "https://tec.openplanner.team/stops/LtH28a-2"], ["https://tec.openplanner.team/stops/X850aha", "https://tec.openplanner.team/stops/X850ana"], ["https://tec.openplanner.team/stops/LHMbach1", "https://tec.openplanner.team/stops/LHMbelv1"], ["https://tec.openplanner.team/stops/X601cta", "https://tec.openplanner.team/stops/X601ctb"], ["https://tec.openplanner.team/stops/H1hr118a", "https://tec.openplanner.team/stops/H1hr118b"], ["https://tec.openplanner.team/stops/Bhevjac1", "https://tec.openplanner.team/stops/Bpecsta1"], ["https://tec.openplanner.team/stops/Ccogibr1", "https://tec.openplanner.team/stops/Ccohotv1"], ["https://tec.openplanner.team/stops/Bgnvoha3", "https://tec.openplanner.team/stops/Bgnvoha4"], ["https://tec.openplanner.team/stops/Lalexpa2", "https://tec.openplanner.team/stops/Lrcchar1"], ["https://tec.openplanner.team/stops/Cobvill1", "https://tec.openplanner.team/stops/Cobvill2"], ["https://tec.openplanner.team/stops/Bwagdeb1", "https://tec.openplanner.team/stops/Bwagdeb2"], ["https://tec.openplanner.team/stops/H1qu102a", "https://tec.openplanner.team/stops/H1qu120a"], ["https://tec.openplanner.team/stops/Brixcme1", "https://tec.openplanner.team/stops/Brixcme2"], ["https://tec.openplanner.team/stops/Lhrecol1", "https://tec.openplanner.team/stops/Lhrecol2"], ["https://tec.openplanner.team/stops/N501icb", "https://tec.openplanner.team/stops/N501icz"], ["https://tec.openplanner.team/stops/LMaslav3", "https://tec.openplanner.team/stops/LMazonn3"], ["https://tec.openplanner.team/stops/N501hlx", "https://tec.openplanner.team/stops/N501hly"], ["https://tec.openplanner.team/stops/H1hm174b", "https://tec.openplanner.team/stops/H1vs145a"], ["https://tec.openplanner.team/stops/N521alb", "https://tec.openplanner.team/stops/N527ada"], ["https://tec.openplanner.team/stops/LOTjacq1", "https://tec.openplanner.team/stops/LOTjacq2"], ["https://tec.openplanner.team/stops/LSemc--4", "https://tec.openplanner.team/stops/LSerout1"], ["https://tec.openplanner.team/stops/LEN183-1", "https://tec.openplanner.team/stops/LSBsere4"], ["https://tec.openplanner.team/stops/LWRchem1", "https://tec.openplanner.team/stops/LWRvert2"], ["https://tec.openplanner.team/stops/X753aca", "https://tec.openplanner.team/stops/X753acb"], ["https://tec.openplanner.team/stops/Bgrmpco1", "https://tec.openplanner.team/stops/N522akb"], ["https://tec.openplanner.team/stops/Bbstbou1", "https://tec.openplanner.team/stops/Bbstbou2"], ["https://tec.openplanner.team/stops/N555acb", "https://tec.openplanner.team/stops/NC11ara"], ["https://tec.openplanner.team/stops/Cctchea1", "https://tec.openplanner.team/stops/NC11agb"], ["https://tec.openplanner.team/stops/Lstbold1", "https://tec.openplanner.team/stops/Lstchu-4"], ["https://tec.openplanner.team/stops/LXhjupr2", "https://tec.openplanner.team/stops/LXhjupr4"], ["https://tec.openplanner.team/stops/H1wi148c", "https://tec.openplanner.team/stops/H1wi155a"], ["https://tec.openplanner.team/stops/N557aja", "https://tec.openplanner.team/stops/N557ajb"], ["https://tec.openplanner.team/stops/Bclgeco1", "https://tec.openplanner.team/stops/Bclgeco2"], ["https://tec.openplanner.team/stops/N568ada", "https://tec.openplanner.team/stops/N568adb"], ["https://tec.openplanner.team/stops/Bblaall2", "https://tec.openplanner.team/stops/Bblaast2"], ["https://tec.openplanner.team/stops/X782ana", "https://tec.openplanner.team/stops/X784aea"], ["https://tec.openplanner.team/stops/X394aga", "https://tec.openplanner.team/stops/X396aea"], ["https://tec.openplanner.team/stops/X813aaa", "https://tec.openplanner.team/stops/X813aab"], ["https://tec.openplanner.team/stops/Bucccal3", "https://tec.openplanner.team/stops/Bucccal4"], ["https://tec.openplanner.team/stops/H5at105a", "https://tec.openplanner.team/stops/H5at107b"], ["https://tec.openplanner.team/stops/Llgchai1", "https://tec.openplanner.team/stops/Llgjonr2"], ["https://tec.openplanner.team/stops/Bbsifml1", "https://tec.openplanner.team/stops/Bbsifml2"], ["https://tec.openplanner.team/stops/H4mo157b", "https://tec.openplanner.team/stops/H4mo170b"], ["https://tec.openplanner.team/stops/LBLghuy2", "https://tec.openplanner.team/stops/LBLplac4"], ["https://tec.openplanner.team/stops/LDOordi1", "https://tec.openplanner.team/stops/LDOordi2"], ["https://tec.openplanner.team/stops/H4es108a", "https://tec.openplanner.team/stops/H4hx123b"], ["https://tec.openplanner.team/stops/LTRfica2", "https://tec.openplanner.team/stops/LTRgare0"], ["https://tec.openplanner.team/stops/Bnstpla2", "https://tec.openplanner.team/stops/H3so187b"], ["https://tec.openplanner.team/stops/Lbrdepo1", "https://tec.openplanner.team/stops/Lbrhvl-*"], ["https://tec.openplanner.team/stops/H2sb224b", "https://tec.openplanner.team/stops/H2sb225a"], ["https://tec.openplanner.team/stops/N201aib", "https://tec.openplanner.team/stops/N214abb"], ["https://tec.openplanner.team/stops/N539ahb", "https://tec.openplanner.team/stops/N539atb"], ["https://tec.openplanner.team/stops/LHUfont1", "https://tec.openplanner.team/stops/LHUfont2"], ["https://tec.openplanner.team/stops/X921ama", "https://tec.openplanner.team/stops/X921anb"], ["https://tec.openplanner.team/stops/X822aga", "https://tec.openplanner.team/stops/X822aha"], ["https://tec.openplanner.team/stops/LHApthe2", "https://tec.openplanner.team/stops/LHTlieg2"], ["https://tec.openplanner.team/stops/Bhanath2", "https://tec.openplanner.team/stops/Bhanmou1"], ["https://tec.openplanner.team/stops/LBGjacq1", "https://tec.openplanner.team/stops/LBGroma1"], ["https://tec.openplanner.team/stops/Bblagard", "https://tec.openplanner.team/stops/Bblaljo1"], ["https://tec.openplanner.team/stops/N532aia", "https://tec.openplanner.team/stops/N532aib"], ["https://tec.openplanner.team/stops/Bgzddfh1", "https://tec.openplanner.team/stops/Bgzdegl3"], ["https://tec.openplanner.team/stops/N539aaa", "https://tec.openplanner.team/stops/N539aab"], ["https://tec.openplanner.team/stops/Cctkais2", "https://tec.openplanner.team/stops/Ccurtra2"], ["https://tec.openplanner.team/stops/Bbchcbl1", "https://tec.openplanner.team/stops/Bbchcbl2"], ["https://tec.openplanner.team/stops/Bwatmsj2", "https://tec.openplanner.team/stops/Bwatmsj6"], ["https://tec.openplanner.team/stops/X609acb", "https://tec.openplanner.team/stops/X609aob"], ["https://tec.openplanner.team/stops/N537ajb", "https://tec.openplanner.team/stops/N537ala"], ["https://tec.openplanner.team/stops/N127aba", "https://tec.openplanner.team/stops/N134afb"], ["https://tec.openplanner.team/stops/Benimar4", "https://tec.openplanner.team/stops/Bmrlcch1"], ["https://tec.openplanner.team/stops/Cfcleco2", "https://tec.openplanner.team/stops/Cfcplac4"], ["https://tec.openplanner.team/stops/N551aba", "https://tec.openplanner.team/stops/N551abb"], ["https://tec.openplanner.team/stops/LLmwaut2", "https://tec.openplanner.team/stops/LRemonu2"], ["https://tec.openplanner.team/stops/X955ada", "https://tec.openplanner.team/stops/X955adb"], ["https://tec.openplanner.team/stops/X825aea", "https://tec.openplanner.team/stops/X826aba"], ["https://tec.openplanner.team/stops/Bthscbl2", "https://tec.openplanner.team/stops/Bthsvil2"], ["https://tec.openplanner.team/stops/H4ne135b", "https://tec.openplanner.team/stops/H4te255a"], ["https://tec.openplanner.team/stops/Lagmair4", "https://tec.openplanner.team/stops/Lagpera1"], ["https://tec.openplanner.team/stops/H2gy100a", "https://tec.openplanner.team/stops/H2gy109a"], ["https://tec.openplanner.team/stops/Btubfab2", "https://tec.openplanner.team/stops/Btubmfa2"], ["https://tec.openplanner.team/stops/Blasbpr2", "https://tec.openplanner.team/stops/Brixbai2"], ["https://tec.openplanner.team/stops/N543ajb", "https://tec.openplanner.team/stops/N543azb"], ["https://tec.openplanner.team/stops/H1al146a", "https://tec.openplanner.team/stops/H1ro134a"], ["https://tec.openplanner.team/stops/Ctuecol4", "https://tec.openplanner.team/stops/Ctuplac2"], ["https://tec.openplanner.team/stops/H3bi110a", "https://tec.openplanner.team/stops/H3bi117a"], ["https://tec.openplanner.team/stops/N501amb", "https://tec.openplanner.team/stops/N501bbc"], ["https://tec.openplanner.team/stops/LBahome2", "https://tec.openplanner.team/stops/LLUdoya1"], ["https://tec.openplanner.team/stops/NL68aad", "https://tec.openplanner.team/stops/NL68aca"], ["https://tec.openplanner.team/stops/H4tf147a", "https://tec.openplanner.team/stops/H4tf147b"], ["https://tec.openplanner.team/stops/X801acb", "https://tec.openplanner.team/stops/X801bta"], ["https://tec.openplanner.team/stops/Cnacent4", "https://tec.openplanner.team/stops/Cnacout2"], ["https://tec.openplanner.team/stops/N535aba", "https://tec.openplanner.team/stops/N535afb"], ["https://tec.openplanner.team/stops/X921aqb", "https://tec.openplanner.team/stops/X925afb"], ["https://tec.openplanner.team/stops/X595aaa", "https://tec.openplanner.team/stops/X595aad"], ["https://tec.openplanner.team/stops/Csabrun2", "https://tec.openplanner.team/stops/Csasncb1"], ["https://tec.openplanner.team/stops/X879ahb", "https://tec.openplanner.team/stops/X879aia"], ["https://tec.openplanner.team/stops/X882amb", "https://tec.openplanner.team/stops/X882amd"], ["https://tec.openplanner.team/stops/H4hn113a", "https://tec.openplanner.team/stops/H4hn114a"], ["https://tec.openplanner.team/stops/Cgoclad2", "https://tec.openplanner.team/stops/Cgostex1"], ["https://tec.openplanner.team/stops/Bndb4ch2", "https://tec.openplanner.team/stops/Btlgfto1"], ["https://tec.openplanner.team/stops/H1si169a", "https://tec.openplanner.team/stops/H1vt196a"], ["https://tec.openplanner.team/stops/NL76ada", "https://tec.openplanner.team/stops/NL76adb"], ["https://tec.openplanner.team/stops/N141aaa", "https://tec.openplanner.team/stops/N141aab"], ["https://tec.openplanner.team/stops/X659ana", "https://tec.openplanner.team/stops/X659aoa"], ["https://tec.openplanner.team/stops/N331adb", "https://tec.openplanner.team/stops/N385acb"], ["https://tec.openplanner.team/stops/Brixape2", "https://tec.openplanner.team/stops/Brixmar3"], ["https://tec.openplanner.team/stops/X633aaa", "https://tec.openplanner.team/stops/X653adc"], ["https://tec.openplanner.team/stops/N501dbb", "https://tec.openplanner.team/stops/N551aaa"], ["https://tec.openplanner.team/stops/X812ala", "https://tec.openplanner.team/stops/X812anb"], ["https://tec.openplanner.team/stops/LBjvill1", "https://tec.openplanner.team/stops/LBjvill3"], ["https://tec.openplanner.team/stops/N501goa", "https://tec.openplanner.team/stops/N501lzz"], ["https://tec.openplanner.team/stops/X670acb", "https://tec.openplanner.team/stops/X670ala"], ["https://tec.openplanner.team/stops/Bbonegl2", "https://tec.openplanner.team/stops/Bchgegl1"], ["https://tec.openplanner.team/stops/Cdahtvi2", "https://tec.openplanner.team/stops/Cmarroy2"], ["https://tec.openplanner.team/stops/N874aia", "https://tec.openplanner.team/stops/N874aib"], ["https://tec.openplanner.team/stops/X747aha", "https://tec.openplanner.team/stops/X749afa"], ["https://tec.openplanner.team/stops/LWecarr2", "https://tec.openplanner.team/stops/LWevalf2"], ["https://tec.openplanner.team/stops/X809aba", "https://tec.openplanner.team/stops/X858aga"], ["https://tec.openplanner.team/stops/Bfelcsa1", "https://tec.openplanner.team/stops/Bfelcsa2"], ["https://tec.openplanner.team/stops/NB33aib", "https://tec.openplanner.team/stops/NB59akb"], ["https://tec.openplanner.team/stops/H1hw121a", "https://tec.openplanner.team/stops/H1hw123a"], ["https://tec.openplanner.team/stops/N122afa", "https://tec.openplanner.team/stops/N122aha"], ["https://tec.openplanner.team/stops/Llxec--2", "https://tec.openplanner.team/stops/Lwapont1"], ["https://tec.openplanner.team/stops/N209aaa", "https://tec.openplanner.team/stops/N209aab"], ["https://tec.openplanner.team/stops/Lendonh1", "https://tec.openplanner.team/stops/Lenmivi*"], ["https://tec.openplanner.team/stops/LVeeg--1", "https://tec.openplanner.team/stops/LVeeg--2"], ["https://tec.openplanner.team/stops/Bmlnsms1", "https://tec.openplanner.team/stops/Bmlnsmv2"], ["https://tec.openplanner.team/stops/LLrfont2", "https://tec.openplanner.team/stops/LLrmc--4"], ["https://tec.openplanner.team/stops/N569aca", "https://tec.openplanner.team/stops/N569ada"], ["https://tec.openplanner.team/stops/LBIaepo2", "https://tec.openplanner.team/stops/LBIcarg1"], ["https://tec.openplanner.team/stops/H1wa145a", "https://tec.openplanner.team/stops/H1wa153a"], ["https://tec.openplanner.team/stops/LBbhupp2", "https://tec.openplanner.team/stops/LTPcamp2"], ["https://tec.openplanner.team/stops/N231afa", "https://tec.openplanner.team/stops/N231afb"], ["https://tec.openplanner.team/stops/Csobrou2", "https://tec.openplanner.team/stops/Csoplac2"], ["https://tec.openplanner.team/stops/Llgphol3", "https://tec.openplanner.team/stops/Llgtcha1"], ["https://tec.openplanner.team/stops/H4be106a", "https://tec.openplanner.team/stops/H4be110a"], ["https://tec.openplanner.team/stops/H1qu106a", "https://tec.openplanner.team/stops/H1qu116b"], ["https://tec.openplanner.team/stops/H2bh106a", "https://tec.openplanner.team/stops/H2bh106b"], ["https://tec.openplanner.team/stops/Cci4bra3", "https://tec.openplanner.team/stops/Ccicouc2"], ["https://tec.openplanner.team/stops/X743acb", "https://tec.openplanner.team/stops/X743adb"], ["https://tec.openplanner.team/stops/N351afa", "https://tec.openplanner.team/stops/N351aia"], ["https://tec.openplanner.team/stops/LjeGRPMC", "https://tec.openplanner.team/stops/Ljelamb2"], ["https://tec.openplanner.team/stops/N241abb", "https://tec.openplanner.team/stops/N270adb"], ["https://tec.openplanner.team/stops/N387aba", "https://tec.openplanner.team/stops/N387abb"], ["https://tec.openplanner.team/stops/H1pa118a", "https://tec.openplanner.team/stops/H1pa118b"], ["https://tec.openplanner.team/stops/N522aka", "https://tec.openplanner.team/stops/N522akb"], ["https://tec.openplanner.team/stops/H1lb139a", "https://tec.openplanner.team/stops/H1lb152a"], ["https://tec.openplanner.team/stops/X733aea", "https://tec.openplanner.team/stops/X733aeb"], ["https://tec.openplanner.team/stops/N551ala", "https://tec.openplanner.team/stops/N551alb"], ["https://tec.openplanner.team/stops/LhM07--1", "https://tec.openplanner.team/stops/LhMdorf2"], ["https://tec.openplanner.team/stops/H4ga156a", "https://tec.openplanner.team/stops/H4ga158a"], ["https://tec.openplanner.team/stops/Bdlmgla2", "https://tec.openplanner.team/stops/Bwavdmo4"], ["https://tec.openplanner.team/stops/Bmsgaxp2", "https://tec.openplanner.team/stops/Bmsgfon1"], ["https://tec.openplanner.team/stops/LNEcite1", "https://tec.openplanner.team/stops/LNEvpn-1"], ["https://tec.openplanner.team/stops/Cctberg2", "https://tec.openplanner.team/stops/Cctgiss2"], ["https://tec.openplanner.team/stops/LJA65h-1", "https://tec.openplanner.team/stops/LJAdeho3"], ["https://tec.openplanner.team/stops/X888aba", "https://tec.openplanner.team/stops/X888aeb"], ["https://tec.openplanner.team/stops/X982aya", "https://tec.openplanner.team/stops/X982ayb"], ["https://tec.openplanner.team/stops/N308aha", "https://tec.openplanner.team/stops/N308ama"], ["https://tec.openplanner.team/stops/Bitrecu1", "https://tec.openplanner.team/stops/Bitrhou1"], ["https://tec.openplanner.team/stops/X733aka", "https://tec.openplanner.team/stops/X733akb"], ["https://tec.openplanner.team/stops/N311aab", "https://tec.openplanner.team/stops/N368aca"], ["https://tec.openplanner.team/stops/LSBdelc1", "https://tec.openplanner.team/stops/LSBrouf3"], ["https://tec.openplanner.team/stops/H1ba108a", "https://tec.openplanner.team/stops/H1ba114b"], ["https://tec.openplanner.team/stops/LOdmonu1", "https://tec.openplanner.team/stops/LVlleme3"], ["https://tec.openplanner.team/stops/H1hi122b", "https://tec.openplanner.team/stops/H1ht121b"], ["https://tec.openplanner.team/stops/Canecbr2", "https://tec.openplanner.team/stops/Canvane2"], ["https://tec.openplanner.team/stops/H1ms270a", "https://tec.openplanner.team/stops/H1ms311a"], ["https://tec.openplanner.team/stops/LeUbahn3", "https://tec.openplanner.team/stops/LeUbahn4"], ["https://tec.openplanner.team/stops/X614bbb", "https://tec.openplanner.team/stops/X614bcb"], ["https://tec.openplanner.team/stops/H1ms265a", "https://tec.openplanner.team/stops/H1ms265b"], ["https://tec.openplanner.team/stops/X901aha", "https://tec.openplanner.team/stops/X901bra"], ["https://tec.openplanner.team/stops/LAWcorn2", "https://tec.openplanner.team/stops/LAWvill2"], ["https://tec.openplanner.team/stops/H4cp103b", "https://tec.openplanner.team/stops/H4hg156a"], ["https://tec.openplanner.team/stops/X605aea", "https://tec.openplanner.team/stops/X605afb"], ["https://tec.openplanner.team/stops/Crebrux1", "https://tec.openplanner.team/stops/Crehout1"], ["https://tec.openplanner.team/stops/H4te251a", "https://tec.openplanner.team/stops/H4te413a"], ["https://tec.openplanner.team/stops/H1ba117b", "https://tec.openplanner.team/stops/H1wl124a"], ["https://tec.openplanner.team/stops/X886aga", "https://tec.openplanner.team/stops/X985afa"], ["https://tec.openplanner.team/stops/X923aca", "https://tec.openplanner.team/stops/X923afa"], ["https://tec.openplanner.team/stops/X804aua", "https://tec.openplanner.team/stops/X804bqb"], ["https://tec.openplanner.team/stops/Crebien2", "https://tec.openplanner.team/stops/Crerevi1"], ["https://tec.openplanner.team/stops/N204aca", "https://tec.openplanner.team/stops/N205abb"], ["https://tec.openplanner.team/stops/X790aja", "https://tec.openplanner.team/stops/X790aka"], ["https://tec.openplanner.team/stops/N536aab", "https://tec.openplanner.team/stops/N536adb"], ["https://tec.openplanner.team/stops/LSLhale1", "https://tec.openplanner.team/stops/LSLhale2"], ["https://tec.openplanner.team/stops/X925agb", "https://tec.openplanner.team/stops/X925ata"], ["https://tec.openplanner.team/stops/N232aaa", "https://tec.openplanner.team/stops/N261acb"], ["https://tec.openplanner.team/stops/X750aab", "https://tec.openplanner.team/stops/X750aea"], ["https://tec.openplanner.team/stops/N516aja", "https://tec.openplanner.team/stops/N517aca"], ["https://tec.openplanner.team/stops/Lagpass1", "https://tec.openplanner.team/stops/Lagstre1"], ["https://tec.openplanner.team/stops/H4rs117b", "https://tec.openplanner.team/stops/H4rs118b"], ["https://tec.openplanner.team/stops/LXHadam1", "https://tec.openplanner.team/stops/LXHadam2"], ["https://tec.openplanner.team/stops/Cmofosb2", "https://tec.openplanner.team/stops/Crocpai2"], ["https://tec.openplanner.team/stops/H1wa142b", "https://tec.openplanner.team/stops/H1wa143a"], ["https://tec.openplanner.team/stops/Bbstchv1", "https://tec.openplanner.team/stops/Bbstchv2"], ["https://tec.openplanner.team/stops/X670aha", "https://tec.openplanner.team/stops/X670ahb"], ["https://tec.openplanner.team/stops/LGmeg--2", "https://tec.openplanner.team/stops/LGmhedo2"], ["https://tec.openplanner.team/stops/X725abb", "https://tec.openplanner.team/stops/X738aea"], ["https://tec.openplanner.team/stops/H1gg117a", "https://tec.openplanner.team/stops/H1mb125a"], ["https://tec.openplanner.team/stops/LBhschu2", "https://tec.openplanner.team/stops/LmAaldr1"], ["https://tec.openplanner.team/stops/Cgrbert2", "https://tec.openplanner.team/stops/NC14aha"], ["https://tec.openplanner.team/stops/NH01aba", "https://tec.openplanner.team/stops/NH01abc"], ["https://tec.openplanner.team/stops/N569aba", "https://tec.openplanner.team/stops/N569afb"], ["https://tec.openplanner.team/stops/N254aaa", "https://tec.openplanner.team/stops/N254adb"], ["https://tec.openplanner.team/stops/X899acb", "https://tec.openplanner.team/stops/X899aeb"], ["https://tec.openplanner.team/stops/Lemcarm1", "https://tec.openplanner.team/stops/Lemeg--1"], ["https://tec.openplanner.team/stops/N547ajb", "https://tec.openplanner.team/stops/N548awa"], ["https://tec.openplanner.team/stops/Lkiblan2", "https://tec.openplanner.team/stops/Lkigare2"], ["https://tec.openplanner.team/stops/H4pl111b", "https://tec.openplanner.team/stops/H4pl112b"], ["https://tec.openplanner.team/stops/Cmycime2", "https://tec.openplanner.team/stops/Cmymaco1"], ["https://tec.openplanner.team/stops/N507aea", "https://tec.openplanner.team/stops/N507aeb"], ["https://tec.openplanner.team/stops/X836aba", "https://tec.openplanner.team/stops/X839aga"], ["https://tec.openplanner.team/stops/N501hzc", "https://tec.openplanner.team/stops/N501ifa"], ["https://tec.openplanner.team/stops/X940aaa", "https://tec.openplanner.team/stops/X940aab"], ["https://tec.openplanner.team/stops/LOmecol1", "https://tec.openplanner.team/stops/LOmpont2"], ["https://tec.openplanner.team/stops/N501aqa", "https://tec.openplanner.team/stops/N501mca"], ["https://tec.openplanner.team/stops/X371acb", "https://tec.openplanner.team/stops/X371ada"], ["https://tec.openplanner.team/stops/Cbfcham4", "https://tec.openplanner.team/stops/Cbfusin2"], ["https://tec.openplanner.team/stops/Cgonvro2", "https://tec.openplanner.team/stops/Cmehame1"], ["https://tec.openplanner.team/stops/LETfort1", "https://tec.openplanner.team/stops/LETfort2"], ["https://tec.openplanner.team/stops/Bjodfco1", "https://tec.openplanner.team/stops/NR21ahb"], ["https://tec.openplanner.team/stops/H2sb221a", "https://tec.openplanner.team/stops/H2tr248a"], ["https://tec.openplanner.team/stops/X390apb", "https://tec.openplanner.team/stops/X992afb"], ["https://tec.openplanner.team/stops/Lemjacq1", "https://tec.openplanner.team/stops/Lemjacq2"], ["https://tec.openplanner.team/stops/X607aea", "https://tec.openplanner.team/stops/X607aga"], ["https://tec.openplanner.team/stops/LBNburg1", "https://tec.openplanner.team/stops/LBNgarn1"], ["https://tec.openplanner.team/stops/H3br100a", "https://tec.openplanner.team/stops/H3br101a"], ["https://tec.openplanner.team/stops/N501iwa", "https://tec.openplanner.team/stops/N501ixc"], ["https://tec.openplanner.team/stops/H4fo115a", "https://tec.openplanner.team/stops/H4vz369a"], ["https://tec.openplanner.team/stops/X664ara", "https://tec.openplanner.team/stops/X664arb"], ["https://tec.openplanner.team/stops/LSNmoul1", "https://tec.openplanner.team/stops/LSNmoul2"], ["https://tec.openplanner.team/stops/LON02--1", "https://tec.openplanner.team/stops/LWarema1"], ["https://tec.openplanner.team/stops/Cmlavch1", "https://tec.openplanner.team/stops/Cmlbulp3"], ["https://tec.openplanner.team/stops/X639aia", "https://tec.openplanner.team/stops/X639akc"], ["https://tec.openplanner.team/stops/Bblafab2", "https://tec.openplanner.team/stops/Blilhay1"], ["https://tec.openplanner.team/stops/H1hc127a", "https://tec.openplanner.team/stops/H1hc150b"], ["https://tec.openplanner.team/stops/Ctychen3", "https://tec.openplanner.team/stops/N137aha"], ["https://tec.openplanner.team/stops/Ljhcarr1", "https://tec.openplanner.team/stops/Ljhcarr2"], ["https://tec.openplanner.team/stops/N115acb", "https://tec.openplanner.team/stops/N118ada"], ["https://tec.openplanner.team/stops/X721aqb", "https://tec.openplanner.team/stops/X721ara"], ["https://tec.openplanner.team/stops/Ccigill1", "https://tec.openplanner.team/stops/Ccigill2"], ["https://tec.openplanner.team/stops/N506bea", "https://tec.openplanner.team/stops/N506bia"], ["https://tec.openplanner.team/stops/X766abb", "https://tec.openplanner.team/stops/X766aha"], ["https://tec.openplanner.team/stops/N424aeb", "https://tec.openplanner.team/stops/N425agb"], ["https://tec.openplanner.team/stops/X666akb", "https://tec.openplanner.team/stops/X729aab"], ["https://tec.openplanner.team/stops/Bptecal2", "https://tec.openplanner.team/stops/Bptegna2"], ["https://tec.openplanner.team/stops/NL37aba", "https://tec.openplanner.team/stops/NL37alb"], ["https://tec.openplanner.team/stops/Lmlcher1", "https://tec.openplanner.team/stops/Lmlcrot2"], ["https://tec.openplanner.team/stops/H1ls110a", "https://tec.openplanner.team/stops/H1ls110b"], ["https://tec.openplanner.team/stops/LCPlacr2", "https://tec.openplanner.team/stops/LCPoneu2"], ["https://tec.openplanner.team/stops/X999aqa", "https://tec.openplanner.team/stops/X999aqb"], ["https://tec.openplanner.team/stops/LOmmer-2", "https://tec.openplanner.team/stops/LSeec--1"], ["https://tec.openplanner.team/stops/Ctrchat2", "https://tec.openplanner.team/stops/Ctrplac1"], ["https://tec.openplanner.team/stops/N506aja", "https://tec.openplanner.team/stops/N506ajb"], ["https://tec.openplanner.team/stops/Cfbcabi1", "https://tec.openplanner.team/stops/Cfbcabi2"], ["https://tec.openplanner.team/stops/LMAbruy2", "https://tec.openplanner.team/stops/LMAgb--2"], ["https://tec.openplanner.team/stops/H4bf107a", "https://tec.openplanner.team/stops/H4bn173a"], ["https://tec.openplanner.team/stops/X669afa", "https://tec.openplanner.team/stops/X669aha"], ["https://tec.openplanner.team/stops/H2mm140b", "https://tec.openplanner.team/stops/H2mo143b"], ["https://tec.openplanner.team/stops/LVEfize2", "https://tec.openplanner.team/stops/LVEphar1"], ["https://tec.openplanner.team/stops/N540aaa", "https://tec.openplanner.team/stops/N540aba"], ["https://tec.openplanner.team/stops/H1pd141a", "https://tec.openplanner.team/stops/H1pd144b"], ["https://tec.openplanner.team/stops/Bbeaap51", "https://tec.openplanner.team/stops/Bbeabme1"], ["https://tec.openplanner.team/stops/N539bbb", "https://tec.openplanner.team/stops/N539bcb"], ["https://tec.openplanner.team/stops/H4co151a", "https://tec.openplanner.team/stops/H4pl137b"], ["https://tec.openplanner.team/stops/N301anb", "https://tec.openplanner.team/stops/N301asb"], ["https://tec.openplanner.team/stops/X948ama", "https://tec.openplanner.team/stops/X949amb"], ["https://tec.openplanner.team/stops/LXoroch1", "https://tec.openplanner.team/stops/X599aga"], ["https://tec.openplanner.team/stops/H1sg144a", "https://tec.openplanner.team/stops/H1sg149a"], ["https://tec.openplanner.team/stops/Bottcli4", "https://tec.openplanner.team/stops/Bottrfa4"], ["https://tec.openplanner.team/stops/X781aca", "https://tec.openplanner.team/stops/X781agb"], ["https://tec.openplanner.team/stops/LFOchab2", "https://tec.openplanner.team/stops/LVlfooz1"], ["https://tec.openplanner.team/stops/N520aca", "https://tec.openplanner.team/stops/N520ada"], ["https://tec.openplanner.team/stops/LJOferm1", "https://tec.openplanner.team/stops/LJOvill1"], ["https://tec.openplanner.team/stops/Bnivlai2", "https://tec.openplanner.team/stops/Bnivsho1"], ["https://tec.openplanner.team/stops/H4ve133a", "https://tec.openplanner.team/stops/H4ve136a"], ["https://tec.openplanner.team/stops/Cgocrus1", "https://tec.openplanner.team/stops/Cgofleu3"], ["https://tec.openplanner.team/stops/Cblbaiv2", "https://tec.openplanner.team/stops/Cmcegli2"], ["https://tec.openplanner.team/stops/LELhard2", "https://tec.openplanner.team/stops/LHCbois6"], ["https://tec.openplanner.team/stops/H1ho129a", "https://tec.openplanner.team/stops/H1sg148a"], ["https://tec.openplanner.team/stops/N554aea", "https://tec.openplanner.team/stops/N554aga"], ["https://tec.openplanner.team/stops/Cthoues2", "https://tec.openplanner.team/stops/Cthrwai2"], ["https://tec.openplanner.team/stops/Cptdubo2", "https://tec.openplanner.team/stops/Cptsncb1"], ["https://tec.openplanner.team/stops/X880aga", "https://tec.openplanner.team/stops/X880agd"], ["https://tec.openplanner.team/stops/Cjucomb2", "https://tec.openplanner.team/stops/Cjupn4"], ["https://tec.openplanner.team/stops/H3so168b", "https://tec.openplanner.team/stops/H3so174b"], ["https://tec.openplanner.team/stops/N351ata", "https://tec.openplanner.team/stops/N351axa"], ["https://tec.openplanner.team/stops/LBVlamo2", "https://tec.openplanner.team/stops/LBVzand4"], ["https://tec.openplanner.team/stops/Cmareun1", "https://tec.openplanner.team/stops/Cmazone2"], ["https://tec.openplanner.team/stops/LSTchal4", "https://tec.openplanner.team/stops/LSTec--2"], ["https://tec.openplanner.team/stops/LLescie1", "https://tec.openplanner.team/stops/X547aqa"], ["https://tec.openplanner.team/stops/LSdsa8a2", "https://tec.openplanner.team/stops/LSdsar52"], ["https://tec.openplanner.team/stops/N125aaa", "https://tec.openplanner.team/stops/N127aha"], ["https://tec.openplanner.team/stops/Clvchen1", "https://tec.openplanner.team/stops/Clvndam2"], ["https://tec.openplanner.team/stops/N528aqa", "https://tec.openplanner.team/stops/N528atb"], ["https://tec.openplanner.team/stops/X837aaa", "https://tec.openplanner.team/stops/X839ada"], ["https://tec.openplanner.team/stops/X664aeb", "https://tec.openplanner.team/stops/X667adb"], ["https://tec.openplanner.team/stops/N573aaa", "https://tec.openplanner.team/stops/N573ahb"], ["https://tec.openplanner.team/stops/X892aeb", "https://tec.openplanner.team/stops/X892ahb"], ["https://tec.openplanner.team/stops/X804beb", "https://tec.openplanner.team/stops/X804bfb"], ["https://tec.openplanner.team/stops/Cchmonu3", "https://tec.openplanner.team/stops/CMba2"], ["https://tec.openplanner.team/stops/H4pq115a", "https://tec.openplanner.team/stops/H4pq117a"], ["https://tec.openplanner.team/stops/X754ara", "https://tec.openplanner.team/stops/X754atb"], ["https://tec.openplanner.team/stops/N534awc", "https://tec.openplanner.team/stops/N534caa"], ["https://tec.openplanner.team/stops/LCelabi1", "https://tec.openplanner.team/stops/LFalieg2"], ["https://tec.openplanner.team/stops/N244anb", "https://tec.openplanner.team/stops/N244aob"], ["https://tec.openplanner.team/stops/X899aga", "https://tec.openplanner.team/stops/X899aha"], ["https://tec.openplanner.team/stops/LBBcamp1", "https://tec.openplanner.team/stops/LBBpech1"], ["https://tec.openplanner.team/stops/Bqueblo2", "https://tec.openplanner.team/stops/Bquepos1"], ["https://tec.openplanner.team/stops/Blsmjja2", "https://tec.openplanner.team/stops/Bneedia1"], ["https://tec.openplanner.team/stops/N207ada", "https://tec.openplanner.team/stops/X210azb"], ["https://tec.openplanner.team/stops/Brixeur5", "https://tec.openplanner.team/stops/Brixga11"], ["https://tec.openplanner.team/stops/LrAdrie1", "https://tec.openplanner.team/stops/LrApont1"], ["https://tec.openplanner.team/stops/H4ka174a", "https://tec.openplanner.team/stops/H4ka179a"], ["https://tec.openplanner.team/stops/LTAchau2", "https://tec.openplanner.team/stops/LTAchpl2"], ["https://tec.openplanner.team/stops/Cgocat1", "https://tec.openplanner.team/stops/Cgoetun5"], ["https://tec.openplanner.team/stops/Cjupn2", "https://tec.openplanner.team/stops/Cjurogi2"], ["https://tec.openplanner.team/stops/N501hwa", "https://tec.openplanner.team/stops/N501hwb"], ["https://tec.openplanner.team/stops/LLedoya1", "https://tec.openplanner.team/stops/X782apa"], ["https://tec.openplanner.team/stops/N501dtb", "https://tec.openplanner.team/stops/N501eaa"], ["https://tec.openplanner.team/stops/Cclchap1", "https://tec.openplanner.team/stops/Cclmoul1"], ["https://tec.openplanner.team/stops/N150ada", "https://tec.openplanner.team/stops/N150adb"], ["https://tec.openplanner.team/stops/N562agb", "https://tec.openplanner.team/stops/N562ahb"], ["https://tec.openplanner.team/stops/X818ada", "https://tec.openplanner.team/stops/X818atb"], ["https://tec.openplanner.team/stops/LSNness1", "https://tec.openplanner.team/stops/LXHmart1"], ["https://tec.openplanner.team/stops/LeUgend2", "https://tec.openplanner.team/stops/LeUrath1"], ["https://tec.openplanner.team/stops/H1so133a", "https://tec.openplanner.team/stops/H1so133b"], ["https://tec.openplanner.team/stops/N506bac", "https://tec.openplanner.team/stops/N506bad"], ["https://tec.openplanner.team/stops/H1he107b", "https://tec.openplanner.team/stops/H1he108b"], ["https://tec.openplanner.team/stops/Bbauegl2", "https://tec.openplanner.team/stops/Blilgar1"], ["https://tec.openplanner.team/stops/N321aba", "https://tec.openplanner.team/stops/N352afb"], ["https://tec.openplanner.team/stops/N501fya", "https://tec.openplanner.team/stops/N501hva"], ["https://tec.openplanner.team/stops/LSetrix1", "https://tec.openplanner.team/stops/LVbstre1"], ["https://tec.openplanner.team/stops/LBYegli2", "https://tec.openplanner.team/stops/LHEelva2"], ["https://tec.openplanner.team/stops/X637aea", "https://tec.openplanner.team/stops/X637agd"], ["https://tec.openplanner.team/stops/X897alc", "https://tec.openplanner.team/stops/X897amb"], ["https://tec.openplanner.team/stops/LMastat4", "https://tec.openplanner.team/stops/LTobilz2"], ["https://tec.openplanner.team/stops/Bboutry1", "https://tec.openplanner.team/stops/Bmrsefr1"], ["https://tec.openplanner.team/stops/X744ada", "https://tec.openplanner.team/stops/X746ahb"], ["https://tec.openplanner.team/stops/Cchba02", "https://tec.openplanner.team/stops/Cchba1"], ["https://tec.openplanner.team/stops/X836aaa", "https://tec.openplanner.team/stops/X836abb"], ["https://tec.openplanner.team/stops/H5rx110b", "https://tec.openplanner.team/stops/H5rx146a"], ["https://tec.openplanner.team/stops/H1cd110a", "https://tec.openplanner.team/stops/H1cd113a"], ["https://tec.openplanner.team/stops/Lalchar2", "https://tec.openplanner.team/stops/Lanschu2"], ["https://tec.openplanner.team/stops/Cpcgout2", "https://tec.openplanner.team/stops/Cpcha432"], ["https://tec.openplanner.team/stops/N242adc", "https://tec.openplanner.team/stops/N251aaa"], ["https://tec.openplanner.team/stops/Lprcard1", "https://tec.openplanner.team/stops/Lprcard2"], ["https://tec.openplanner.team/stops/X619aja", "https://tec.openplanner.team/stops/X620aha"], ["https://tec.openplanner.team/stops/LkTsch%C3%B61", "https://tec.openplanner.team/stops/LkTtal-1"], ["https://tec.openplanner.team/stops/X659apb", "https://tec.openplanner.team/stops/X741ajc"], ["https://tec.openplanner.team/stops/N512akb", "https://tec.openplanner.team/stops/N512ama"], ["https://tec.openplanner.team/stops/LWibare2", "https://tec.openplanner.team/stops/LWipaif1"], ["https://tec.openplanner.team/stops/Llggrav1", "https://tec.openplanner.team/stops/Llggrav2"], ["https://tec.openplanner.team/stops/Ccutrav2", "https://tec.openplanner.team/stops/Ccutrav4"], ["https://tec.openplanner.team/stops/H1te188a", "https://tec.openplanner.team/stops/H1te190b"], ["https://tec.openplanner.team/stops/Bolgcsa1", "https://tec.openplanner.team/stops/Bolgsha2"], ["https://tec.openplanner.team/stops/H1gy112a", "https://tec.openplanner.team/stops/H1gy116a"], ["https://tec.openplanner.team/stops/LSNbouh3", "https://tec.openplanner.team/stops/LSNecol3"], ["https://tec.openplanner.team/stops/Lbococh1", "https://tec.openplanner.team/stops/Lsechev2"], ["https://tec.openplanner.team/stops/N501cea", "https://tec.openplanner.team/stops/N501joa"], ["https://tec.openplanner.team/stops/Bohngen1", "https://tec.openplanner.team/stops/Bohngen2"], ["https://tec.openplanner.team/stops/LAvrout2", "https://tec.openplanner.team/stops/LCIneuv1"], ["https://tec.openplanner.team/stops/Lfhnrou1", "https://tec.openplanner.team/stops/Lfhvoye1"], ["https://tec.openplanner.team/stops/Chpchea1", "https://tec.openplanner.team/stops/Cwgmutu1"], ["https://tec.openplanner.team/stops/X662afa", "https://tec.openplanner.team/stops/X662afb"], ["https://tec.openplanner.team/stops/Bwavgar6", "https://tec.openplanner.team/stops/Bwavgar7"], ["https://tec.openplanner.team/stops/X890aab", "https://tec.openplanner.team/stops/X890abb"], ["https://tec.openplanner.team/stops/LbRkirc2", "https://tec.openplanner.team/stops/LgRhouf1"], ["https://tec.openplanner.team/stops/H4ss153b", "https://tec.openplanner.team/stops/H4ss154a"], ["https://tec.openplanner.team/stops/H1bd103a", "https://tec.openplanner.team/stops/H1hq127b"], ["https://tec.openplanner.team/stops/N340aba", "https://tec.openplanner.team/stops/N340ada"], ["https://tec.openplanner.team/stops/N543apa", "https://tec.openplanner.team/stops/N543apb"], ["https://tec.openplanner.team/stops/X669aeb", "https://tec.openplanner.team/stops/X672aja"], ["https://tec.openplanner.team/stops/LeUbush1", "https://tec.openplanner.team/stops/LeUrath2"], ["https://tec.openplanner.team/stops/Ccuhsti1", "https://tec.openplanner.team/stops/Cpipost1"], ["https://tec.openplanner.team/stops/H1pa103a", "https://tec.openplanner.team/stops/H1pa120a"], ["https://tec.openplanner.team/stops/H1br125a", "https://tec.openplanner.team/stops/H1em109a"], ["https://tec.openplanner.team/stops/Cplrymo1", "https://tec.openplanner.team/stops/Cplstfa3"], ["https://tec.openplanner.team/stops/NC24afb", "https://tec.openplanner.team/stops/NC24aga"], ["https://tec.openplanner.team/stops/LSGfoua1", "https://tec.openplanner.team/stops/LSkathe2"], ["https://tec.openplanner.team/stops/LABbert2", "https://tec.openplanner.team/stops/LBegare1"], ["https://tec.openplanner.team/stops/Bblacha1", "https://tec.openplanner.team/stops/Bblaphi1"], ["https://tec.openplanner.team/stops/N503aaa", "https://tec.openplanner.team/stops/N503abb"], ["https://tec.openplanner.team/stops/N214aca", "https://tec.openplanner.team/stops/N228aeb"], ["https://tec.openplanner.team/stops/LRRemul1", "https://tec.openplanner.team/stops/LRRroth2"], ["https://tec.openplanner.team/stops/Cjuathe2", "https://tec.openplanner.team/stops/Cjucomb2"], ["https://tec.openplanner.team/stops/Bmsgstj1", "https://tec.openplanner.team/stops/Bmsgstj2"], ["https://tec.openplanner.team/stops/LBLcalv2", "https://tec.openplanner.team/stops/LBLtroi2"], ["https://tec.openplanner.team/stops/Cgogb1", "https://tec.openplanner.team/stops/Cgoson11"], ["https://tec.openplanner.team/stops/LbUbisc2", "https://tec.openplanner.team/stops/LbUpost2"], ["https://tec.openplanner.team/stops/Bjaugar1", "https://tec.openplanner.team/stops/Bjaugar4"], ["https://tec.openplanner.team/stops/X941aaa", "https://tec.openplanner.team/stops/X941aba"], ["https://tec.openplanner.team/stops/Ladmoul1", "https://tec.openplanner.team/stops/Ladmoul2"], ["https://tec.openplanner.team/stops/H4bo117a", "https://tec.openplanner.team/stops/H4hu120a"], ["https://tec.openplanner.team/stops/H1to155a", "https://tec.openplanner.team/stops/H1to155b"], ["https://tec.openplanner.team/stops/N226abb", "https://tec.openplanner.team/stops/N226acb"], ["https://tec.openplanner.team/stops/H4ch120d", "https://tec.openplanner.team/stops/H4vx364a"], ["https://tec.openplanner.team/stops/Cflathe1", "https://tec.openplanner.team/stops/Cflsncb2"], ["https://tec.openplanner.team/stops/Ltibure3", "https://tec.openplanner.team/stops/Ltibure4"], ["https://tec.openplanner.team/stops/N536ada", "https://tec.openplanner.team/stops/N536afa"], ["https://tec.openplanner.team/stops/Cfcpier1", "https://tec.openplanner.team/stops/Cfcplac3"], ["https://tec.openplanner.team/stops/Cmgpla2", "https://tec.openplanner.team/stops/Cmgpn1"], ["https://tec.openplanner.team/stops/H4ae102b", "https://tec.openplanner.team/stops/H4po129a"], ["https://tec.openplanner.team/stops/LDppana2", "https://tec.openplanner.team/stops/LTErest2"], ["https://tec.openplanner.team/stops/H1gr118b", "https://tec.openplanner.team/stops/H1sy141a"], ["https://tec.openplanner.team/stops/H1bb119a", "https://tec.openplanner.team/stops/H1bb121b"], ["https://tec.openplanner.team/stops/H1ne137a", "https://tec.openplanner.team/stops/H1ne149a"], ["https://tec.openplanner.team/stops/H1gr122a", "https://tec.openplanner.team/stops/H1gr122b"], ["https://tec.openplanner.team/stops/LHAmonu1", "https://tec.openplanner.team/stops/LRItour1"], ["https://tec.openplanner.team/stops/LAVstat2", "https://tec.openplanner.team/stops/LLRrape2"], ["https://tec.openplanner.team/stops/LmAgruf1", "https://tec.openplanner.team/stops/LmAkirc2"], ["https://tec.openplanner.team/stops/Cjugill3", "https://tec.openplanner.team/stops/CMchag1"], ["https://tec.openplanner.team/stops/LVLhalb2", "https://tec.openplanner.team/stops/LVLhalb4"], ["https://tec.openplanner.team/stops/Lsemaqu2", "https://tec.openplanner.team/stops/Lsepair2"], ["https://tec.openplanner.team/stops/Caiegli1", "https://tec.openplanner.team/stops/Caindsa1"], ["https://tec.openplanner.team/stops/N554ada", "https://tec.openplanner.team/stops/N554adb"], ["https://tec.openplanner.team/stops/Chpatel1", "https://tec.openplanner.team/stops/Chpatel2"], ["https://tec.openplanner.team/stops/Clomart1", "https://tec.openplanner.team/stops/CMdesc2"], ["https://tec.openplanner.team/stops/Lsehosp1", "https://tec.openplanner.team/stops/Lseprog1"], ["https://tec.openplanner.team/stops/N351ala", "https://tec.openplanner.team/stops/N351ana"], ["https://tec.openplanner.team/stops/X767aba", "https://tec.openplanner.team/stops/X767abb"], ["https://tec.openplanner.team/stops/H4ep126a", "https://tec.openplanner.team/stops/H4ep128b"], ["https://tec.openplanner.team/stops/LGEcons2", "https://tec.openplanner.team/stops/LHgroso2"], ["https://tec.openplanner.team/stops/H4he102b", "https://tec.openplanner.team/stops/H4he105a"], ["https://tec.openplanner.team/stops/N301aob", "https://tec.openplanner.team/stops/X301ara"], ["https://tec.openplanner.team/stops/Lsechev1", "https://tec.openplanner.team/stops/Lsefore2"], ["https://tec.openplanner.team/stops/LBveg--2", "https://tec.openplanner.team/stops/LBvnico2"], ["https://tec.openplanner.team/stops/Cgogrco1", "https://tec.openplanner.team/stops/Cjuhopi1"], ["https://tec.openplanner.team/stops/Csychap2", "https://tec.openplanner.team/stops/Csychap3"], ["https://tec.openplanner.team/stops/X902azb", "https://tec.openplanner.team/stops/X902baa"], ["https://tec.openplanner.team/stops/LaAelis1", "https://tec.openplanner.team/stops/LaAhaup1"], ["https://tec.openplanner.team/stops/N120ala", "https://tec.openplanner.team/stops/N120alb"], ["https://tec.openplanner.team/stops/H1er105b", "https://tec.openplanner.team/stops/H1er106a"], ["https://tec.openplanner.team/stops/H5bl117a", "https://tec.openplanner.team/stops/H5bl117b"], ["https://tec.openplanner.team/stops/NL57ala", "https://tec.openplanner.team/stops/NL57alb"], ["https://tec.openplanner.team/stops/Cflmart2", "https://tec.openplanner.team/stops/Cflpost1"], ["https://tec.openplanner.team/stops/H1ro133a", "https://tec.openplanner.team/stops/H4ry132b"], ["https://tec.openplanner.team/stops/LBRgend2", "https://tec.openplanner.team/stops/LLTeg--2"], ["https://tec.openplanner.team/stops/Blasclo2", "https://tec.openplanner.team/stops/Bohnr731"], ["https://tec.openplanner.team/stops/N501aaa", "https://tec.openplanner.team/stops/N501neb"], ["https://tec.openplanner.team/stops/Ctubpos3", "https://tec.openplanner.team/stops/Cturoge1"], ["https://tec.openplanner.team/stops/Cfaterg6", "https://tec.openplanner.team/stops/NC23agb"], ["https://tec.openplanner.team/stops/X725afd", "https://tec.openplanner.team/stops/X725bga"], ["https://tec.openplanner.team/stops/H1by100c", "https://tec.openplanner.team/stops/H1by103a"], ["https://tec.openplanner.team/stops/LFCotte2", "https://tec.openplanner.team/stops/LWRvert2"], ["https://tec.openplanner.team/stops/Cgzha621", "https://tec.openplanner.team/stops/Cgzmarb1"], ["https://tec.openplanner.team/stops/H1gh158a", "https://tec.openplanner.team/stops/H1gh165c"], ["https://tec.openplanner.team/stops/N218aea", "https://tec.openplanner.team/stops/N218aeb"], ["https://tec.openplanner.team/stops/X651aab", "https://tec.openplanner.team/stops/X651agb"], ["https://tec.openplanner.team/stops/Lroeg--1", "https://tec.openplanner.team/stops/Lroeg--4"], ["https://tec.openplanner.team/stops/N209aca", "https://tec.openplanner.team/stops/N209aka"], ["https://tec.openplanner.team/stops/N526ada", "https://tec.openplanner.team/stops/N527aba"], ["https://tec.openplanner.team/stops/X774aba", "https://tec.openplanner.team/stops/X774aca"], ["https://tec.openplanner.team/stops/Cgon51", "https://tec.openplanner.team/stops/Cjutrou1"], ["https://tec.openplanner.team/stops/N524aid", "https://tec.openplanner.team/stops/N524akb"], ["https://tec.openplanner.team/stops/X601cga", "https://tec.openplanner.team/stops/X601cpa"], ["https://tec.openplanner.team/stops/Bqueaga1", "https://tec.openplanner.team/stops/Btubren2"], ["https://tec.openplanner.team/stops/LCIpiet1", "https://tec.openplanner.team/stops/LCIsucr1"], ["https://tec.openplanner.team/stops/X639aka", "https://tec.openplanner.team/stops/X639akd"], ["https://tec.openplanner.team/stops/X807acb", "https://tec.openplanner.team/stops/X834adb"], ["https://tec.openplanner.team/stops/LAWhein2", "https://tec.openplanner.team/stops/LAWroug1"], ["https://tec.openplanner.team/stops/LTHec--2", "https://tec.openplanner.team/stops/LTHmaka2"], ["https://tec.openplanner.team/stops/X937aba", "https://tec.openplanner.team/stops/X937abb"], ["https://tec.openplanner.team/stops/Bhoealt2", "https://tec.openplanner.team/stops/Bzluegl1"], ["https://tec.openplanner.team/stops/LHHpt--2", "https://tec.openplanner.team/stops/LSkb1352"], ["https://tec.openplanner.team/stops/LCx728-1", "https://tec.openplanner.team/stops/LCx728-2"], ["https://tec.openplanner.team/stops/X790aea", "https://tec.openplanner.team/stops/X790aeb"], ["https://tec.openplanner.team/stops/Btubsca1", "https://tec.openplanner.team/stops/Btubstq1"], ["https://tec.openplanner.team/stops/N553aqb", "https://tec.openplanner.team/stops/N554adb"], ["https://tec.openplanner.team/stops/Lsebrun3", "https://tec.openplanner.team/stops/Lsephar2"], ["https://tec.openplanner.team/stops/LsVgend1", "https://tec.openplanner.team/stops/LsVviel2"], ["https://tec.openplanner.team/stops/Bndbdra2", "https://tec.openplanner.team/stops/Bndbnod2"], ["https://tec.openplanner.team/stops/Bchgqve2", "https://tec.openplanner.team/stops/Bchgqve3"], ["https://tec.openplanner.team/stops/N211aga", "https://tec.openplanner.team/stops/N212aia"], ["https://tec.openplanner.team/stops/N310aca", "https://tec.openplanner.team/stops/N310adb"], ["https://tec.openplanner.team/stops/N519ajb", "https://tec.openplanner.team/stops/N519alb"], ["https://tec.openplanner.team/stops/H1ha183a", "https://tec.openplanner.team/stops/H1ha194a"], ["https://tec.openplanner.team/stops/LWOpier2", "https://tec.openplanner.team/stops/LWOplat1"], ["https://tec.openplanner.team/stops/N538atd", "https://tec.openplanner.team/stops/N538aub"], ["https://tec.openplanner.team/stops/Bovecha1", "https://tec.openplanner.team/stops/Bwavnep2"], ["https://tec.openplanner.team/stops/N534bsa", "https://tec.openplanner.team/stops/N534bta"], ["https://tec.openplanner.team/stops/Bwavlav1", "https://tec.openplanner.team/stops/Bwavnep1"], ["https://tec.openplanner.team/stops/X615aea", "https://tec.openplanner.team/stops/X615agb"], ["https://tec.openplanner.team/stops/Bgnvcom2", "https://tec.openplanner.team/stops/Brixroi2"], ["https://tec.openplanner.team/stops/X605abb", "https://tec.openplanner.team/stops/X619amb"], ["https://tec.openplanner.team/stops/X661acb", "https://tec.openplanner.team/stops/X661azb"], ["https://tec.openplanner.team/stops/N501fhb", "https://tec.openplanner.team/stops/N501mjc"], ["https://tec.openplanner.team/stops/N515atb", "https://tec.openplanner.team/stops/N515aub"], ["https://tec.openplanner.team/stops/H2bh105a", "https://tec.openplanner.team/stops/H2bh114a"], ["https://tec.openplanner.team/stops/H1qu104b", "https://tec.openplanner.team/stops/H1qu105b"], ["https://tec.openplanner.team/stops/N525aha", "https://tec.openplanner.team/stops/N525akb"], ["https://tec.openplanner.team/stops/X734ada", "https://tec.openplanner.team/stops/X953aaa"], ["https://tec.openplanner.team/stops/Bstecal1", "https://tec.openplanner.team/stops/Bstecal2"], ["https://tec.openplanner.team/stops/N236ada", "https://tec.openplanner.team/stops/N236apa"], ["https://tec.openplanner.team/stops/N149aba", "https://tec.openplanner.team/stops/N149ada"], ["https://tec.openplanner.team/stops/LFPgeme1", "https://tec.openplanner.team/stops/LFPzwaa1"], ["https://tec.openplanner.team/stops/H4lu126a", "https://tec.openplanner.team/stops/H4lu127a"], ["https://tec.openplanner.team/stops/H1hm177a", "https://tec.openplanner.team/stops/H1hm177b"], ["https://tec.openplanner.team/stops/LhObull2", "https://tec.openplanner.team/stops/LhOfrie2"], ["https://tec.openplanner.team/stops/N501fbb", "https://tec.openplanner.team/stops/N501fby"], ["https://tec.openplanner.team/stops/LDapota1", "https://tec.openplanner.team/stops/LOMbrou2"], ["https://tec.openplanner.team/stops/X793aeb", "https://tec.openplanner.team/stops/X793apa"], ["https://tec.openplanner.team/stops/Cmabegh1", "https://tec.openplanner.team/stops/Cmastch1"], ["https://tec.openplanner.team/stops/N101alb", "https://tec.openplanner.team/stops/N101arb"], ["https://tec.openplanner.team/stops/H1pd146a", "https://tec.openplanner.team/stops/H1wa159a"], ["https://tec.openplanner.team/stops/Lagfour1", "https://tec.openplanner.team/stops/Lagvall2"], ["https://tec.openplanner.team/stops/Ljeegli6", "https://tec.openplanner.team/stops/Lsekubo2"], ["https://tec.openplanner.team/stops/Cgzplac1", "https://tec.openplanner.team/stops/Cgzplac3"], ["https://tec.openplanner.team/stops/LEScarr2", "https://tec.openplanner.team/stops/LESsouv1"], ["https://tec.openplanner.team/stops/H4ty356c", "https://tec.openplanner.team/stops/H4ty381a"], ["https://tec.openplanner.team/stops/Bhaleur1", "https://tec.openplanner.team/stops/Bhalrat1"], ["https://tec.openplanner.team/stops/X940ada", "https://tec.openplanner.team/stops/X940afa"], ["https://tec.openplanner.team/stops/X947aba", "https://tec.openplanner.team/stops/X947aca"], ["https://tec.openplanner.team/stops/N339aab", "https://tec.openplanner.team/stops/N368aab"], ["https://tec.openplanner.team/stops/LHUetie*", "https://tec.openplanner.team/stops/LHUfont1"], ["https://tec.openplanner.team/stops/Lanadmi1", "https://tec.openplanner.team/stops/Lanadmi2"], ["https://tec.openplanner.team/stops/LWEbruy1", "https://tec.openplanner.team/stops/LWEbruy2"], ["https://tec.openplanner.team/stops/Cjupier2", "https://tec.openplanner.team/stops/Cjuspin1"], ["https://tec.openplanner.team/stops/X811agb", "https://tec.openplanner.team/stops/X811aha"], ["https://tec.openplanner.team/stops/LNAbois1", "https://tec.openplanner.team/stops/LNAbois2"], ["https://tec.openplanner.team/stops/H4fo117a", "https://tec.openplanner.team/stops/H4fo117b"], ["https://tec.openplanner.team/stops/X617acb", "https://tec.openplanner.team/stops/X695ada"], ["https://tec.openplanner.team/stops/X910ahb", "https://tec.openplanner.team/stops/X910ajb"], ["https://tec.openplanner.team/stops/Bnivplt1", "https://tec.openplanner.team/stops/Bnivpro1"], ["https://tec.openplanner.team/stops/Llgstev1", "https://tec.openplanner.team/stops/Llgvalu1"], ["https://tec.openplanner.team/stops/LAigrim1", "https://tec.openplanner.team/stops/LAipala2"], ["https://tec.openplanner.team/stops/X371aja", "https://tec.openplanner.team/stops/X371ajb"], ["https://tec.openplanner.team/stops/N340adb", "https://tec.openplanner.team/stops/N340aeb"], ["https://tec.openplanner.team/stops/LnEkirc2", "https://tec.openplanner.team/stops/LnEleje1"], ["https://tec.openplanner.team/stops/H5bs102d", "https://tec.openplanner.team/stops/H5pe130b"], ["https://tec.openplanner.team/stops/LvA12--3", "https://tec.openplanner.team/stops/LvAschr2"], ["https://tec.openplanner.team/stops/H1hv131a", "https://tec.openplanner.team/stops/H1hv133a"], ["https://tec.openplanner.team/stops/H5rx137b", "https://tec.openplanner.team/stops/H5rx150a"], ["https://tec.openplanner.team/stops/LHarenn2", "https://tec.openplanner.team/stops/LHarenn3"], ["https://tec.openplanner.team/stops/X907aib", "https://tec.openplanner.team/stops/X938aab"], ["https://tec.openplanner.team/stops/Crodrai1", "https://tec.openplanner.team/stops/Crodrai2"], ["https://tec.openplanner.team/stops/LSIcour1", "https://tec.openplanner.team/stops/LSIters1"], ["https://tec.openplanner.team/stops/X877aea", "https://tec.openplanner.team/stops/X877aga"], ["https://tec.openplanner.team/stops/Cjubien1", "https://tec.openplanner.team/stops/Cjumarc2"], ["https://tec.openplanner.team/stops/N308ada", "https://tec.openplanner.team/stops/N308aya"], ["https://tec.openplanner.team/stops/X659awa", "https://tec.openplanner.team/stops/X672ahb"], ["https://tec.openplanner.team/stops/H1sy141a", "https://tec.openplanner.team/stops/H1to151a"], ["https://tec.openplanner.team/stops/LNCsera1", "https://tec.openplanner.team/stops/LNCsera2"], ["https://tec.openplanner.team/stops/X811anb", "https://tec.openplanner.team/stops/X811aoa"], ["https://tec.openplanner.team/stops/LSOferr4", "https://tec.openplanner.team/stops/LSOladr2"], ["https://tec.openplanner.team/stops/Lagjado1", "https://tec.openplanner.team/stops/Lagjado2"], ["https://tec.openplanner.team/stops/LhUrich1", "https://tec.openplanner.team/stops/LmUvilz1"], ["https://tec.openplanner.team/stops/Lceegth1", "https://tec.openplanner.team/stops/Lceegth2"], ["https://tec.openplanner.team/stops/H2hg149b", "https://tec.openplanner.team/stops/H2hg265b"], ["https://tec.openplanner.team/stops/Ccorian1", "https://tec.openplanner.team/stops/Ccorian2"], ["https://tec.openplanner.team/stops/H4mo132b", "https://tec.openplanner.team/stops/H4mo157b"], ["https://tec.openplanner.team/stops/X901aea", "https://tec.openplanner.team/stops/X901avb"], ["https://tec.openplanner.team/stops/Bgemcro1", "https://tec.openplanner.team/stops/Bgemcro2"], ["https://tec.openplanner.team/stops/LDOgare2", "https://tec.openplanner.team/stops/LDOjose1"], ["https://tec.openplanner.team/stops/N515aqd", "https://tec.openplanner.team/stops/N518acd"], ["https://tec.openplanner.team/stops/LBAcarr2", "https://tec.openplanner.team/stops/LBAcent1"], ["https://tec.openplanner.team/stops/LbEkirc*", "https://tec.openplanner.team/stops/LnIfrie2"], ["https://tec.openplanner.team/stops/N101aqa", "https://tec.openplanner.team/stops/N101ara"], ["https://tec.openplanner.team/stops/Cpccoss1", "https://tec.openplanner.team/stops/Cpcwaut1"], ["https://tec.openplanner.team/stops/Llgnage2", "https://tec.openplanner.team/stops/Llgrege2"], ["https://tec.openplanner.team/stops/X307aab", "https://tec.openplanner.team/stops/X307aba"], ["https://tec.openplanner.team/stops/LWechpl2", "https://tec.openplanner.team/stops/LWevalf2"], ["https://tec.openplanner.team/stops/LNEgaul1", "https://tec.openplanner.team/stops/LNEgaul2"], ["https://tec.openplanner.team/stops/LBWeg--1", "https://tec.openplanner.team/stops/LBWviad1"], ["https://tec.openplanner.team/stops/Cfowall1", "https://tec.openplanner.team/stops/CMfont2"], ["https://tec.openplanner.team/stops/LeIdeid2", "https://tec.openplanner.team/stops/LiVgirk2"], ["https://tec.openplanner.team/stops/Bperalv1", "https://tec.openplanner.team/stops/Bperpla2"], ["https://tec.openplanner.team/stops/X720aea", "https://tec.openplanner.team/stops/X733aab"], ["https://tec.openplanner.team/stops/N291aab", "https://tec.openplanner.team/stops/N291abb"], ["https://tec.openplanner.team/stops/Broscha2", "https://tec.openplanner.team/stops/H2gy113b"], ["https://tec.openplanner.team/stops/H1ms285a", "https://tec.openplanner.team/stops/H1ms308b"], ["https://tec.openplanner.team/stops/N501gsa", "https://tec.openplanner.team/stops/N501hia"], ["https://tec.openplanner.team/stops/LPobois2", "https://tec.openplanner.team/stops/LSUroyo1"], ["https://tec.openplanner.team/stops/LvAkirc1", "https://tec.openplanner.team/stops/LvAschr1"], ["https://tec.openplanner.team/stops/Lrcchar1", "https://tec.openplanner.team/stops/Lrcchar2"], ["https://tec.openplanner.team/stops/Lhrspi-1", "https://tec.openplanner.team/stops/Lhrspi-2"], ["https://tec.openplanner.team/stops/X616acb", "https://tec.openplanner.team/stops/X616adb"], ["https://tec.openplanner.team/stops/Bvirpla2", "https://tec.openplanner.team/stops/Bvirpos2"], ["https://tec.openplanner.team/stops/LGOdelv1", "https://tec.openplanner.team/stops/LGOdelv2"], ["https://tec.openplanner.team/stops/Lsehya-3", "https://tec.openplanner.team/stops/Lsepapi1"], ["https://tec.openplanner.team/stops/H1hw120a", "https://tec.openplanner.team/stops/H1hw124b"], ["https://tec.openplanner.team/stops/Cmycime1", "https://tec.openplanner.team/stops/Cmymaco2"], ["https://tec.openplanner.team/stops/LESfoot1", "https://tec.openplanner.team/stops/LESfoot2"], ["https://tec.openplanner.team/stops/X654abb", "https://tec.openplanner.team/stops/X654aeb"], ["https://tec.openplanner.team/stops/LaAbush*", "https://tec.openplanner.team/stops/LaApost2"], ["https://tec.openplanner.team/stops/H4gu110b", "https://tec.openplanner.team/stops/H4we134a"], ["https://tec.openplanner.team/stops/Bbuzcom2", "https://tec.openplanner.team/stops/Bnivvai2"], ["https://tec.openplanner.team/stops/X639aea", "https://tec.openplanner.team/stops/X639aeb"], ["https://tec.openplanner.team/stops/H2me115a", "https://tec.openplanner.team/stops/H2me115b"], ["https://tec.openplanner.team/stops/N507aka", "https://tec.openplanner.team/stops/N512ama"], ["https://tec.openplanner.team/stops/LHUaveu1", "https://tec.openplanner.team/stops/LHUlebo1"], ["https://tec.openplanner.team/stops/X645aba", "https://tec.openplanner.team/stops/X645abb"], ["https://tec.openplanner.team/stops/X753aaa", "https://tec.openplanner.team/stops/X753aab"], ["https://tec.openplanner.team/stops/LFUgare2", "https://tec.openplanner.team/stops/LHumoul1"], ["https://tec.openplanner.team/stops/N577aca", "https://tec.openplanner.team/stops/N577agb"], ["https://tec.openplanner.team/stops/LHMcruc1", "https://tec.openplanner.team/stops/LHMhof-2"], ["https://tec.openplanner.team/stops/LHhmohe1", "https://tec.openplanner.team/stops/NL30akb"], ["https://tec.openplanner.team/stops/H1ha201a", "https://tec.openplanner.team/stops/H1ss351b"], ["https://tec.openplanner.team/stops/X359ama", "https://tec.openplanner.team/stops/X359amb"], ["https://tec.openplanner.team/stops/X623aea", "https://tec.openplanner.team/stops/X623afa"], ["https://tec.openplanner.team/stops/H4bw101a", "https://tec.openplanner.team/stops/H4bw101b"], ["https://tec.openplanner.team/stops/Bsmgbsa1", "https://tec.openplanner.team/stops/Bsmgres2"], ["https://tec.openplanner.team/stops/Canbruy1", "https://tec.openplanner.team/stops/Canfief1"], ["https://tec.openplanner.team/stops/N236ada", "https://tec.openplanner.team/stops/N254afb"], ["https://tec.openplanner.team/stops/LeLbutg2", "https://tec.openplanner.team/stops/LnIfrie2"], ["https://tec.openplanner.team/stops/N509aqa", "https://tec.openplanner.team/stops/N509aqb"], ["https://tec.openplanner.team/stops/LeLherz2", "https://tec.openplanner.team/stops/LkAkirc1"], ["https://tec.openplanner.team/stops/X808aib", "https://tec.openplanner.team/stops/X850amb"], ["https://tec.openplanner.team/stops/LhP25--2", "https://tec.openplanner.team/stops/LhPprum1"], ["https://tec.openplanner.team/stops/N514ana", "https://tec.openplanner.team/stops/N514anb"], ["https://tec.openplanner.team/stops/H4am101b", "https://tec.openplanner.team/stops/H4or115b"], ["https://tec.openplanner.team/stops/X617ahb", "https://tec.openplanner.team/stops/X696ala"], ["https://tec.openplanner.team/stops/LReeg--1", "https://tec.openplanner.team/stops/LRemorr2"], ["https://tec.openplanner.team/stops/N501hcc", "https://tec.openplanner.team/stops/N501mia"], ["https://tec.openplanner.team/stops/LHMthys1", "https://tec.openplanner.team/stops/LHMthys2"], ["https://tec.openplanner.team/stops/H4cp103a", "https://tec.openplanner.team/stops/H4lz164a"], ["https://tec.openplanner.team/stops/X812ajb", "https://tec.openplanner.team/stops/X812akb"], ["https://tec.openplanner.team/stops/Cmyplac1", "https://tec.openplanner.team/stops/Cmypost1"], ["https://tec.openplanner.team/stops/Bmelmqu1", "https://tec.openplanner.team/stops/Bsmgres1"], ["https://tec.openplanner.team/stops/H4pi131b", "https://tec.openplanner.team/stops/H4pi132b"], ["https://tec.openplanner.team/stops/Cmmcomb1", "https://tec.openplanner.team/stops/Cmmlong2"], ["https://tec.openplanner.team/stops/H4ka183b", "https://tec.openplanner.team/stops/H4ka392b"], ["https://tec.openplanner.team/stops/Lsmcime*", "https://tec.openplanner.team/stops/Lsmrcim2"], ["https://tec.openplanner.team/stops/Ldimont2", "https://tec.openplanner.team/stops/Lvefanc2"], ["https://tec.openplanner.team/stops/Bjodcdt1", "https://tec.openplanner.team/stops/NR10aab"], ["https://tec.openplanner.team/stops/N312aaa", "https://tec.openplanner.team/stops/N360aca"], ["https://tec.openplanner.team/stops/N566afa", "https://tec.openplanner.team/stops/N566afb"], ["https://tec.openplanner.team/stops/Cgzblob1", "https://tec.openplanner.team/stops/Cgzblob2"], ["https://tec.openplanner.team/stops/H2fa101a", "https://tec.openplanner.team/stops/H2fa101b"], ["https://tec.openplanner.team/stops/Bvxgpro1", "https://tec.openplanner.team/stops/Cglbras1"], ["https://tec.openplanner.team/stops/N201asa", "https://tec.openplanner.team/stops/N201ata"], ["https://tec.openplanner.team/stops/LBGroma1", "https://tec.openplanner.team/stops/LPUmang2"], ["https://tec.openplanner.team/stops/LnEfrie2", "https://tec.openplanner.team/stops/LsVgils2"], ["https://tec.openplanner.team/stops/H1so132a", "https://tec.openplanner.team/stops/H1so133a"], ["https://tec.openplanner.team/stops/X666ala", "https://tec.openplanner.team/stops/X666alb"], ["https://tec.openplanner.team/stops/N549afa", "https://tec.openplanner.team/stops/N549aib"], ["https://tec.openplanner.team/stops/N120abc", "https://tec.openplanner.team/stops/N120abd"], ["https://tec.openplanner.team/stops/LnN02--2", "https://tec.openplanner.team/stops/LsVlust1"], ["https://tec.openplanner.team/stops/H4bo116a", "https://tec.openplanner.team/stops/H4bo118b"], ["https://tec.openplanner.team/stops/X953afb", "https://tec.openplanner.team/stops/X954aea"], ["https://tec.openplanner.team/stops/N117aqb", "https://tec.openplanner.team/stops/N117bca"], ["https://tec.openplanner.team/stops/N150aib", "https://tec.openplanner.team/stops/N150ajb"], ["https://tec.openplanner.team/stops/Cmocime1", "https://tec.openplanner.team/stops/Cmorgof1"], ["https://tec.openplanner.team/stops/LLrbecc2", "https://tec.openplanner.team/stops/LLrvill1"], ["https://tec.openplanner.team/stops/N501cvb", "https://tec.openplanner.team/stops/N501cza"], ["https://tec.openplanner.team/stops/H4hx116a", "https://tec.openplanner.team/stops/H4hx123a"], ["https://tec.openplanner.team/stops/LeUmeye2", "https://tec.openplanner.team/stops/LrAwald1"], ["https://tec.openplanner.team/stops/Chthttr2", "https://tec.openplanner.team/stops/Cthalou1"], ["https://tec.openplanner.team/stops/Lchsart2", "https://tec.openplanner.team/stops/LHAheml1"], ["https://tec.openplanner.team/stops/LLg9---2", "https://tec.openplanner.team/stops/LLgcent1"], ["https://tec.openplanner.team/stops/H5at132a", "https://tec.openplanner.team/stops/H5at132b"], ["https://tec.openplanner.team/stops/Bezeksj3", "https://tec.openplanner.team/stops/Bneeace2"], ["https://tec.openplanner.team/stops/H4ma202b", "https://tec.openplanner.team/stops/H4ma203a"], ["https://tec.openplanner.team/stops/Bbcoben1", "https://tec.openplanner.team/stops/Bbcopre1"], ["https://tec.openplanner.team/stops/LHTbeau2", "https://tec.openplanner.team/stops/LHTmc--2"], ["https://tec.openplanner.team/stops/LBVclig2", "https://tec.openplanner.team/stops/LMAwavr1"], ["https://tec.openplanner.team/stops/N236aca", "https://tec.openplanner.team/stops/N254afb"], ["https://tec.openplanner.team/stops/Clrcomb2", "https://tec.openplanner.team/stops/Clrplac1"], ["https://tec.openplanner.team/stops/LTPbeau1", "https://tec.openplanner.team/stops/X542aha"], ["https://tec.openplanner.team/stops/X789aaa", "https://tec.openplanner.team/stops/X789acb"], ["https://tec.openplanner.team/stops/H1vt192a", "https://tec.openplanner.team/stops/H1vt196a"], ["https://tec.openplanner.team/stops/H4ef164a", "https://tec.openplanner.team/stops/H4fa125a"], ["https://tec.openplanner.team/stops/LFCscho2", "https://tec.openplanner.team/stops/LFCvoer2"], ["https://tec.openplanner.team/stops/Bpermon3", "https://tec.openplanner.team/stops/Bperpla2"], ["https://tec.openplanner.team/stops/X369acb", "https://tec.openplanner.team/stops/X370ada"], ["https://tec.openplanner.team/stops/X818arb", "https://tec.openplanner.team/stops/X818asc"], ["https://tec.openplanner.team/stops/LRchaie2", "https://tec.openplanner.team/stops/LRcjard2"], ["https://tec.openplanner.team/stops/H1ms273a", "https://tec.openplanner.team/stops/H1ms304a"], ["https://tec.openplanner.team/stops/LBEcomm1", "https://tec.openplanner.team/stops/LBEcomm2"], ["https://tec.openplanner.team/stops/N501dra", "https://tec.openplanner.team/stops/N501drb"], ["https://tec.openplanner.team/stops/NL77aja", "https://tec.openplanner.team/stops/NL77ajb"], ["https://tec.openplanner.team/stops/Lghleon1", "https://tec.openplanner.team/stops/Lghleon2"], ["https://tec.openplanner.team/stops/Ctisart1", "https://tec.openplanner.team/stops/H1tt107b"], ["https://tec.openplanner.team/stops/X618aha", "https://tec.openplanner.team/stops/X618ahb"], ["https://tec.openplanner.team/stops/X880adb", "https://tec.openplanner.team/stops/X880aea"], ["https://tec.openplanner.team/stops/Cracave1", "https://tec.openplanner.team/stops/Cracave2"], ["https://tec.openplanner.team/stops/Bcrbbou1", "https://tec.openplanner.team/stops/Bmsggra2"], ["https://tec.openplanner.team/stops/LEMgren*", "https://tec.openplanner.team/stops/LWOcomm2"], ["https://tec.openplanner.team/stops/N221aab", "https://tec.openplanner.team/stops/X394aca"], ["https://tec.openplanner.team/stops/X823aaa", "https://tec.openplanner.team/stops/X823aca"], ["https://tec.openplanner.team/stops/LSkyern1", "https://tec.openplanner.team/stops/LYechpl2"], ["https://tec.openplanner.team/stops/LLncime2", "https://tec.openplanner.team/stops/LLnpomp1"], ["https://tec.openplanner.team/stops/H4pq112a", "https://tec.openplanner.team/stops/H4pq119a"], ["https://tec.openplanner.team/stops/N101ajb", "https://tec.openplanner.team/stops/N151aib"], ["https://tec.openplanner.team/stops/LCLacbi1", "https://tec.openplanner.team/stops/LOccarr1"], ["https://tec.openplanner.team/stops/X898aoa", "https://tec.openplanner.team/stops/X995adc"], ["https://tec.openplanner.team/stops/X661aca", "https://tec.openplanner.team/stops/X661awb"], ["https://tec.openplanner.team/stops/N127aha", "https://tec.openplanner.team/stops/N127bha"], ["https://tec.openplanner.team/stops/X877aba", "https://tec.openplanner.team/stops/X877afa"], ["https://tec.openplanner.team/stops/Bnivjli1", "https://tec.openplanner.team/stops/Bnivzon2"], ["https://tec.openplanner.team/stops/N343abb", "https://tec.openplanner.team/stops/N343ana"], ["https://tec.openplanner.team/stops/X729aaa", "https://tec.openplanner.team/stops/X746alb"], ["https://tec.openplanner.team/stops/H5wo125b", "https://tec.openplanner.team/stops/H5wo136a"], ["https://tec.openplanner.team/stops/LNAbras5", "https://tec.openplanner.team/stops/LScgore2"], ["https://tec.openplanner.team/stops/Cjuheig1", "https://tec.openplanner.team/stops/Cjuvpla2"], ["https://tec.openplanner.team/stops/Baudtri1", "https://tec.openplanner.team/stops/Bixefra1"], ["https://tec.openplanner.team/stops/LSdcent1", "https://tec.openplanner.team/stops/LSdsar51"], ["https://tec.openplanner.team/stops/LLMeg--1", "https://tec.openplanner.team/stops/LLMeg--2"], ["https://tec.openplanner.team/stops/N533aca", "https://tec.openplanner.team/stops/N533aia"], ["https://tec.openplanner.team/stops/H4ch116b", "https://tec.openplanner.team/stops/H4ty278b"], ["https://tec.openplanner.team/stops/LSPClem2", "https://tec.openplanner.team/stops/LSPguer1"], ["https://tec.openplanner.team/stops/LLescie1", "https://tec.openplanner.team/stops/LLescie2"], ["https://tec.openplanner.team/stops/Llgsnap1", "https://tec.openplanner.team/stops/Llgwiar2"], ["https://tec.openplanner.team/stops/X829aaa", "https://tec.openplanner.team/stops/X831ada"], ["https://tec.openplanner.team/stops/X890acb", "https://tec.openplanner.team/stops/X890aga"], ["https://tec.openplanner.team/stops/Lbomc--4", "https://tec.openplanner.team/stops/Lbomc--8"], ["https://tec.openplanner.team/stops/LWEchat1", "https://tec.openplanner.team/stops/LWEhosp1"], ["https://tec.openplanner.team/stops/LFCvoge3", "https://tec.openplanner.team/stops/LFCvoge4"], ["https://tec.openplanner.team/stops/X671aga", "https://tec.openplanner.team/stops/X671agb"], ["https://tec.openplanner.team/stops/Bolggar1", "https://tec.openplanner.team/stops/Bolgsha1"], ["https://tec.openplanner.team/stops/H4qu230c", "https://tec.openplanner.team/stops/H4tg262a"], ["https://tec.openplanner.team/stops/H1ro132b", "https://tec.openplanner.team/stops/H1ro137a"], ["https://tec.openplanner.team/stops/LVParal2", "https://tec.openplanner.team/stops/LVPeg--2"], ["https://tec.openplanner.team/stops/Ccomiau2", "https://tec.openplanner.team/stops/Cvvgrsa1"], ["https://tec.openplanner.team/stops/X911aeb", "https://tec.openplanner.team/stops/X912aja"], ["https://tec.openplanner.team/stops/N136aab", "https://tec.openplanner.team/stops/N136aeb"], ["https://tec.openplanner.team/stops/X877aha", "https://tec.openplanner.team/stops/X877aia"], ["https://tec.openplanner.team/stops/Lsefore1", "https://tec.openplanner.team/stops/Lsefore2"], ["https://tec.openplanner.team/stops/LSokrin2", "https://tec.openplanner.team/stops/LtEnach1"], ["https://tec.openplanner.team/stops/Lfhmarn2", "https://tec.openplanner.team/stops/Lfhncha2"], ["https://tec.openplanner.team/stops/X659axa", "https://tec.openplanner.team/stops/X659axb"], ["https://tec.openplanner.team/stops/H1ha191a", "https://tec.openplanner.team/stops/H1ha191b"], ["https://tec.openplanner.team/stops/Lmopast2", "https://tec.openplanner.team/stops/Lmopave2"], ["https://tec.openplanner.team/stops/Ccisolv1", "https://tec.openplanner.team/stops/Cmtplac8"], ["https://tec.openplanner.team/stops/N232asb", "https://tec.openplanner.team/stops/N232brb"], ["https://tec.openplanner.team/stops/N501bca", "https://tec.openplanner.team/stops/N501mca"], ["https://tec.openplanner.team/stops/H4te259b", "https://tec.openplanner.team/stops/H4te261b"], ["https://tec.openplanner.team/stops/Lceprog1", "https://tec.openplanner.team/stops/Lcesart2"], ["https://tec.openplanner.team/stops/N385aac", "https://tec.openplanner.team/stops/N385aea"], ["https://tec.openplanner.team/stops/Llgcong1", "https://tec.openplanner.team/stops/Llgcont1"], ["https://tec.openplanner.team/stops/LlSbuch1", "https://tec.openplanner.team/stops/LlSbuch2"], ["https://tec.openplanner.team/stops/X766aga", "https://tec.openplanner.team/stops/X766agb"], ["https://tec.openplanner.team/stops/N501hja", "https://tec.openplanner.team/stops/N501hjd"], ["https://tec.openplanner.team/stops/X941adb", "https://tec.openplanner.team/stops/X942aga"], ["https://tec.openplanner.team/stops/X696aaa", "https://tec.openplanner.team/stops/X696aia"], ["https://tec.openplanner.team/stops/LrTbahn1", "https://tec.openplanner.team/stops/LrTbahn2"], ["https://tec.openplanner.team/stops/N117aga", "https://tec.openplanner.team/stops/N569alb"], ["https://tec.openplanner.team/stops/Lfhbail1", "https://tec.openplanner.team/stops/Lfhbail2"], ["https://tec.openplanner.team/stops/Lkinyst1", "https://tec.openplanner.team/stops/Lkinyst2"], ["https://tec.openplanner.team/stops/LmAaldr1", "https://tec.openplanner.team/stops/LmAaldr2"], ["https://tec.openplanner.team/stops/Cflbrun2", "https://tec.openplanner.team/stops/Cflsncb1"], ["https://tec.openplanner.team/stops/N555aca", "https://tec.openplanner.team/stops/N555acb"], ["https://tec.openplanner.team/stops/Cgrcent1", "https://tec.openplanner.team/stops/Cgrgend1"], ["https://tec.openplanner.team/stops/Bsaumlk3", "https://tec.openplanner.team/stops/Bsauvmo1"], ["https://tec.openplanner.team/stops/LEMeg--1", "https://tec.openplanner.team/stops/LEMfort1"], ["https://tec.openplanner.team/stops/Bmanati1", "https://tec.openplanner.team/stops/Bsenbmc2"], ["https://tec.openplanner.team/stops/Cchicet1", "https://tec.openplanner.team/stops/Cchtour1"], ["https://tec.openplanner.team/stops/X759adb", "https://tec.openplanner.team/stops/X759afb"], ["https://tec.openplanner.team/stops/H4wi161b", "https://tec.openplanner.team/stops/H5pe139a"], ["https://tec.openplanner.team/stops/Beclron2", "https://tec.openplanner.team/stops/Broncli2"], ["https://tec.openplanner.team/stops/H4fl115a", "https://tec.openplanner.team/stops/H4lp119a"], ["https://tec.openplanner.team/stops/Lpecime2", "https://tec.openplanner.team/stops/Lpeprev1"], ["https://tec.openplanner.team/stops/LHYlinc1", "https://tec.openplanner.team/stops/LHYwach1"], ["https://tec.openplanner.team/stops/X639akb", "https://tec.openplanner.team/stops/X639akc"], ["https://tec.openplanner.team/stops/Cfmltas2", "https://tec.openplanner.team/stops/H2tz117b"], ["https://tec.openplanner.team/stops/LnN02--1", "https://tec.openplanner.team/stops/LnNzent2"], ["https://tec.openplanner.team/stops/Csycant1", "https://tec.openplanner.team/stops/Csysans2"], ["https://tec.openplanner.team/stops/Lchacie2", "https://tec.openplanner.team/stops/Lchec--2"], ["https://tec.openplanner.team/stops/X791acb", "https://tec.openplanner.team/stops/X791ada"], ["https://tec.openplanner.team/stops/LhGkirc2", "https://tec.openplanner.team/stops/LhGkirc3"], ["https://tec.openplanner.team/stops/H4er125b", "https://tec.openplanner.team/stops/H4gu110a"], ["https://tec.openplanner.team/stops/X731ama", "https://tec.openplanner.team/stops/X731amb"], ["https://tec.openplanner.team/stops/LBAcere1", "https://tec.openplanner.team/stops/LHOgymn1"], ["https://tec.openplanner.team/stops/X547aqa", "https://tec.openplanner.team/stops/X782aca"], ["https://tec.openplanner.team/stops/X806aka", "https://tec.openplanner.team/stops/X806akb"], ["https://tec.openplanner.team/stops/Bblagar6", "https://tec.openplanner.team/stops/Bblagard"], ["https://tec.openplanner.team/stops/X637alb", "https://tec.openplanner.team/stops/X637ama"], ["https://tec.openplanner.team/stops/Llgboux2", "https://tec.openplanner.team/stops/Lvtboux1"], ["https://tec.openplanner.team/stops/Bbsicul2", "https://tec.openplanner.team/stops/Bbsihau2"], ["https://tec.openplanner.team/stops/H1ba107b", "https://tec.openplanner.team/stops/H1ba113a"], ["https://tec.openplanner.team/stops/X601cab", "https://tec.openplanner.team/stops/X601dea"], ["https://tec.openplanner.team/stops/X872abb", "https://tec.openplanner.team/stops/X872ada"], ["https://tec.openplanner.team/stops/Cwfcule2", "https://tec.openplanner.team/stops/Cwflouv4"], ["https://tec.openplanner.team/stops/H2hg149b", "https://tec.openplanner.team/stops/H2mi123b"], ["https://tec.openplanner.team/stops/Baegd742", "https://tec.openplanner.team/stops/NB33aja"], ["https://tec.openplanner.team/stops/H4ga159a", "https://tec.openplanner.team/stops/H4vz369a"], ["https://tec.openplanner.team/stops/N525afa", "https://tec.openplanner.team/stops/N525ala"], ["https://tec.openplanner.team/stops/LCvneuf1", "https://tec.openplanner.team/stops/LCvoufn2"], ["https://tec.openplanner.team/stops/LVIeg--4", "https://tec.openplanner.team/stops/LVIlore1"], ["https://tec.openplanner.team/stops/N301agb", "https://tec.openplanner.team/stops/N340ahb"], ["https://tec.openplanner.team/stops/Cjudevo1", "https://tec.openplanner.team/stops/Cjuecho1"], ["https://tec.openplanner.team/stops/LTIp%C3%A9pi1", "https://tec.openplanner.team/stops/LTIpres2"], ["https://tec.openplanner.team/stops/H4va232b", "https://tec.openplanner.team/stops/H4vd230b"], ["https://tec.openplanner.team/stops/LHhchau1", "https://tec.openplanner.team/stops/N507ada"], ["https://tec.openplanner.team/stops/Bsamlon2", "https://tec.openplanner.team/stops/Bwagdeb2"], ["https://tec.openplanner.team/stops/X808ahb", "https://tec.openplanner.team/stops/X808aia"], ["https://tec.openplanner.team/stops/X601bbd", "https://tec.openplanner.team/stops/X601bbf"], ["https://tec.openplanner.team/stops/N331afb", "https://tec.openplanner.team/stops/N331agb"], ["https://tec.openplanner.team/stops/N534bnh", "https://tec.openplanner.team/stops/N534bvb"], ["https://tec.openplanner.team/stops/LHUeuro1", "https://tec.openplanner.team/stops/LHUeuro4"], ["https://tec.openplanner.team/stops/X802apb", "https://tec.openplanner.team/stops/X882ahb"], ["https://tec.openplanner.team/stops/X617aha", "https://tec.openplanner.team/stops/X617aia"], ["https://tec.openplanner.team/stops/LNEbo472", "https://tec.openplanner.team/stops/LNEbois2"], ["https://tec.openplanner.team/stops/Crajasm1", "https://tec.openplanner.team/stops/Crajasm3"], ["https://tec.openplanner.team/stops/X896aea", "https://tec.openplanner.team/stops/X896aga"], ["https://tec.openplanner.team/stops/Cgoobse1", "https://tec.openplanner.team/stops/Cjucar01"], ["https://tec.openplanner.team/stops/H4ca120b", "https://tec.openplanner.team/stops/H4ca122a"], ["https://tec.openplanner.team/stops/H2hg157c", "https://tec.openplanner.team/stops/H2hg158b"], ["https://tec.openplanner.team/stops/Ljucaba1", "https://tec.openplanner.team/stops/Ljumart1"], ["https://tec.openplanner.team/stops/LGrfont1", "https://tec.openplanner.team/stops/LHDmc--1"], ["https://tec.openplanner.team/stops/X224aeb", "https://tec.openplanner.team/stops/X224afb"], ["https://tec.openplanner.team/stops/H4wn124d", "https://tec.openplanner.team/stops/H4wn131a"], ["https://tec.openplanner.team/stops/N203aba", "https://tec.openplanner.team/stops/N203acb"], ["https://tec.openplanner.team/stops/N540aea", "https://tec.openplanner.team/stops/N578aca"], ["https://tec.openplanner.team/stops/N539aga", "https://tec.openplanner.team/stops/N539ahb"], ["https://tec.openplanner.team/stops/N254aca", "https://tec.openplanner.team/stops/N254ada"], ["https://tec.openplanner.team/stops/H1ms283a", "https://tec.openplanner.team/stops/H1ms915b"], ["https://tec.openplanner.team/stops/X575aib", "https://tec.openplanner.team/stops/X576aib"], ["https://tec.openplanner.team/stops/H1ol145b", "https://tec.openplanner.team/stops/H5is171b"], ["https://tec.openplanner.team/stops/X839aaa", "https://tec.openplanner.team/stops/X839abc"], ["https://tec.openplanner.team/stops/LwYboui2", "https://tec.openplanner.team/stops/LwYkreu4"], ["https://tec.openplanner.team/stops/N501avb", "https://tec.openplanner.team/stops/N501axb"], ["https://tec.openplanner.team/stops/Cgonvro2", "https://tec.openplanner.team/stops/Ctmmonu2"], ["https://tec.openplanner.team/stops/N543bgc", "https://tec.openplanner.team/stops/N543btb"], ["https://tec.openplanner.team/stops/Ltihala1", "https://tec.openplanner.team/stops/Ltihala2"], ["https://tec.openplanner.team/stops/Lgrclin3", "https://tec.openplanner.team/stops/Lgrorch2"], ["https://tec.openplanner.team/stops/Cfldand1", "https://tec.openplanner.team/stops/Cflmarc2"], ["https://tec.openplanner.team/stops/Lpecaze1", "https://tec.openplanner.team/stops/Lpeprev2"], ["https://tec.openplanner.team/stops/H1mj123b", "https://tec.openplanner.team/stops/H1ni319a"], ["https://tec.openplanner.team/stops/NL72aab", "https://tec.openplanner.team/stops/NL72ada"], ["https://tec.openplanner.team/stops/X850aja", "https://tec.openplanner.team/stops/X850aka"], ["https://tec.openplanner.team/stops/H2bh108a", "https://tec.openplanner.team/stops/H2fa112a"], ["https://tec.openplanner.team/stops/X224afb", "https://tec.openplanner.team/stops/X394aab"], ["https://tec.openplanner.team/stops/LLSba6-2", "https://tec.openplanner.team/stops/LLSba9-1"], ["https://tec.openplanner.team/stops/Cctbois4", "https://tec.openplanner.team/stops/Cctlimi1"], ["https://tec.openplanner.team/stops/Crg3arb1", "https://tec.openplanner.team/stops/Cthbeff1"], ["https://tec.openplanner.team/stops/Lfhsoux2", "https://tec.openplanner.team/stops/Lmlcite*"], ["https://tec.openplanner.team/stops/N562aea", "https://tec.openplanner.team/stops/N562aeb"], ["https://tec.openplanner.team/stops/Lghgros1", "https://tec.openplanner.team/stops/Lghmaha3"], ["https://tec.openplanner.team/stops/H1so135a", "https://tec.openplanner.team/stops/H1so135c"], ["https://tec.openplanner.team/stops/Bcrnncb1", "https://tec.openplanner.team/stops/Bcrnncb2"], ["https://tec.openplanner.team/stops/X725aca", "https://tec.openplanner.team/stops/X725aga"], ["https://tec.openplanner.team/stops/X618aca", "https://tec.openplanner.team/stops/X619acb"], ["https://tec.openplanner.team/stops/Bwatfau1", "https://tec.openplanner.team/stops/Bwatmbv1"], ["https://tec.openplanner.team/stops/Bnivfra2", "https://tec.openplanner.team/stops/Bnivrsh1"], ["https://tec.openplanner.team/stops/Bsdabja1", "https://tec.openplanner.team/stops/Bsdabja2"], ["https://tec.openplanner.team/stops/X390aha", "https://tec.openplanner.team/stops/X999aaa"], ["https://tec.openplanner.team/stops/Bolppla2", "https://tec.openplanner.team/stops/Bolppla4"], ["https://tec.openplanner.team/stops/LFypont2", "https://tec.openplanner.team/stops/LFyWarc2"], ["https://tec.openplanner.team/stops/H1mb130a", "https://tec.openplanner.team/stops/H1mx122a"], ["https://tec.openplanner.team/stops/LPRcasi2", "https://tec.openplanner.team/stops/LTRcite1"], ["https://tec.openplanner.team/stops/Lcebarr2", "https://tec.openplanner.team/stops/Lcepont6"], ["https://tec.openplanner.team/stops/H1mb166a", "https://tec.openplanner.team/stops/H1mb166b"], ["https://tec.openplanner.team/stops/Ccucroi1", "https://tec.openplanner.team/stops/Ccucroi2"], ["https://tec.openplanner.team/stops/Llgdart4", "https://tec.openplanner.team/stops/Llgdart5"], ["https://tec.openplanner.team/stops/Bblaaca1", "https://tec.openplanner.team/stops/Bblaqsj1"], ["https://tec.openplanner.team/stops/H1cu112a", "https://tec.openplanner.team/stops/H1cu127b"], ["https://tec.openplanner.team/stops/Bquebre2", "https://tec.openplanner.team/stops/Bquebth3"], ["https://tec.openplanner.team/stops/X731aca", "https://tec.openplanner.team/stops/X731aga"], ["https://tec.openplanner.team/stops/X740acb", "https://tec.openplanner.team/stops/X740adb"], ["https://tec.openplanner.team/stops/X766adb", "https://tec.openplanner.team/stops/X766ajb"], ["https://tec.openplanner.team/stops/LSUhage1", "https://tec.openplanner.team/stops/LSUhage2"], ["https://tec.openplanner.team/stops/LHAstal1", "https://tec.openplanner.team/stops/Lviweri1"], ["https://tec.openplanner.team/stops/Lveherl1", "https://tec.openplanner.team/stops/Lvehopi5"], ["https://tec.openplanner.team/stops/LbHzent2", "https://tec.openplanner.team/stops/LrUbahn2"], ["https://tec.openplanner.team/stops/LNCgene2", "https://tec.openplanner.team/stops/LNCneuv3"], ["https://tec.openplanner.team/stops/Lbhsion1", "https://tec.openplanner.team/stops/Lbhsion2"], ["https://tec.openplanner.team/stops/H4lh118a", "https://tec.openplanner.team/stops/H5wo126a"], ["https://tec.openplanner.team/stops/LAWkone1", "https://tec.openplanner.team/stops/Llofort1"], ["https://tec.openplanner.team/stops/Bblasmo1", "https://tec.openplanner.team/stops/Bblasmo2"], ["https://tec.openplanner.team/stops/H1hc150a", "https://tec.openplanner.team/stops/H1hc151a"], ["https://tec.openplanner.team/stops/Cmxpleg2", "https://tec.openplanner.team/stops/NC28aga"], ["https://tec.openplanner.team/stops/LHAcite2", "https://tec.openplanner.team/stops/LVIvert1"], ["https://tec.openplanner.team/stops/Llgfont2", "https://tec.openplanner.team/stops/Llghull2"], ["https://tec.openplanner.team/stops/X942aba", "https://tec.openplanner.team/stops/X942aea"], ["https://tec.openplanner.team/stops/N323acb", "https://tec.openplanner.team/stops/N387aha"], ["https://tec.openplanner.team/stops/LCvneuv4", "https://tec.openplanner.team/stops/LWbburn2"], ["https://tec.openplanner.team/stops/X721aka", "https://tec.openplanner.team/stops/X721akb"], ["https://tec.openplanner.team/stops/N513adb", "https://tec.openplanner.team/stops/N513aea"], ["https://tec.openplanner.team/stops/H2ha127b", "https://tec.openplanner.team/stops/H2ha128a"], ["https://tec.openplanner.team/stops/H1og131a", "https://tec.openplanner.team/stops/H1og134a"], ["https://tec.openplanner.team/stops/Lrebriq1", "https://tec.openplanner.team/stops/Lrecite1"], ["https://tec.openplanner.team/stops/LmR90--2", "https://tec.openplanner.team/stops/LmRh%C3%B6fe2"], ["https://tec.openplanner.team/stops/N501jea", "https://tec.openplanner.team/stops/N501jkb"], ["https://tec.openplanner.team/stops/Lstauna2", "https://tec.openplanner.team/stops/Lstetud2"], ["https://tec.openplanner.team/stops/H4os220a", "https://tec.openplanner.team/stops/H4os220b"], ["https://tec.openplanner.team/stops/Cplbbro1", "https://tec.openplanner.team/stops/Cplbbro2"], ["https://tec.openplanner.team/stops/H4lz117a", "https://tec.openplanner.team/stops/H4lz156b"], ["https://tec.openplanner.team/stops/N525abb", "https://tec.openplanner.team/stops/N525aua"], ["https://tec.openplanner.team/stops/H1el134b", "https://tec.openplanner.team/stops/H1wi148b"], ["https://tec.openplanner.team/stops/H1el133a", "https://tec.openplanner.team/stops/H1el138a"], ["https://tec.openplanner.team/stops/Lcceg--2", "https://tec.openplanner.team/stops/Lfhchaf*"], ["https://tec.openplanner.team/stops/X718ada", "https://tec.openplanner.team/stops/X733agb"], ["https://tec.openplanner.team/stops/H1ht126b", "https://tec.openplanner.team/stops/H1te178b"], ["https://tec.openplanner.team/stops/Cmqegl2", "https://tec.openplanner.team/stops/X611aca"], ["https://tec.openplanner.team/stops/H5gr135a", "https://tec.openplanner.team/stops/H5gr135b"], ["https://tec.openplanner.team/stops/X641awb", "https://tec.openplanner.team/stops/X641axa"], ["https://tec.openplanner.team/stops/H3so158a", "https://tec.openplanner.team/stops/H3so169b"], ["https://tec.openplanner.team/stops/NH01abc", "https://tec.openplanner.team/stops/NH01atb"], ["https://tec.openplanner.team/stops/Llghaut2", "https://tec.openplanner.team/stops/Llgwild6"], ["https://tec.openplanner.team/stops/Bblacar1", "https://tec.openplanner.team/stops/Bwaunop2"], ["https://tec.openplanner.team/stops/Ljegare1", "https://tec.openplanner.team/stops/Ljekess1"], ["https://tec.openplanner.team/stops/H1gn151b", "https://tec.openplanner.team/stops/H1gq153b"], ["https://tec.openplanner.team/stops/H4fo119a", "https://tec.openplanner.team/stops/H4fo119b"], ["https://tec.openplanner.team/stops/H4ty292a", "https://tec.openplanner.team/stops/H4ty302b"], ["https://tec.openplanner.team/stops/Bwatran1", "https://tec.openplanner.team/stops/Bwatras2"], ["https://tec.openplanner.team/stops/LoUwelc1", "https://tec.openplanner.team/stops/LoUwelc2"], ["https://tec.openplanner.team/stops/LGorysa2", "https://tec.openplanner.team/stops/LNEbois2"], ["https://tec.openplanner.team/stops/H4bs111a", "https://tec.openplanner.team/stops/H4bs113a"], ["https://tec.openplanner.team/stops/LaAmise1", "https://tec.openplanner.team/stops/LaAmise2"], ["https://tec.openplanner.team/stops/Csoforr4", "https://tec.openplanner.team/stops/Csoperi2"], ["https://tec.openplanner.team/stops/Bgoesch4", "https://tec.openplanner.team/stops/Bgoewat2"], ["https://tec.openplanner.team/stops/H1he105b", "https://tec.openplanner.team/stops/H1mh114a"], ["https://tec.openplanner.team/stops/LsVgrun1", "https://tec.openplanner.team/stops/LsVrodt2"], ["https://tec.openplanner.team/stops/H1qy136a", "https://tec.openplanner.team/stops/H1qy136b"], ["https://tec.openplanner.team/stops/H4ty293a", "https://tec.openplanner.team/stops/H4ty354a"], ["https://tec.openplanner.team/stops/LWZdtec1", "https://tec.openplanner.team/stops/LWZdtec2"], ["https://tec.openplanner.team/stops/LTPreco2", "https://tec.openplanner.team/stops/LTPsalm1"], ["https://tec.openplanner.team/stops/LSseg--2", "https://tec.openplanner.team/stops/N506bua"], ["https://tec.openplanner.team/stops/N501arb", "https://tec.openplanner.team/stops/N501baa"], ["https://tec.openplanner.team/stops/LSJ38--2", "https://tec.openplanner.team/stops/LSJgrae1"], ["https://tec.openplanner.team/stops/LSChane1", "https://tec.openplanner.team/stops/LVEtomb2"], ["https://tec.openplanner.team/stops/LaAdiep1", "https://tec.openplanner.team/stops/LaAlinz1"], ["https://tec.openplanner.team/stops/Lgrbonn1", "https://tec.openplanner.team/stops/Llgsimo1"], ["https://tec.openplanner.team/stops/LMHmeha2", "https://tec.openplanner.team/stops/LMHoha-1"], ["https://tec.openplanner.team/stops/Cvlbvir2", "https://tec.openplanner.team/stops/Cvlpeau1"], ["https://tec.openplanner.team/stops/N423aga", "https://tec.openplanner.team/stops/N423agb"], ["https://tec.openplanner.team/stops/Bhmmtou1", "https://tec.openplanner.team/stops/Bhmmtou2"], ["https://tec.openplanner.team/stops/X947aaa", "https://tec.openplanner.team/stops/X948aca"], ["https://tec.openplanner.team/stops/LSNecol3", "https://tec.openplanner.team/stops/LXHfond3"], ["https://tec.openplanner.team/stops/LCUjonc1", "https://tec.openplanner.team/stops/LCUjonc2"], ["https://tec.openplanner.team/stops/LHHgare1", "https://tec.openplanner.team/stops/LHHpt--3"], ["https://tec.openplanner.team/stops/H4ty287a", "https://tec.openplanner.team/stops/H4ty358b"], ["https://tec.openplanner.team/stops/Buccron1", "https://tec.openplanner.team/stops/Buccron2"], ["https://tec.openplanner.team/stops/N308aca", "https://tec.openplanner.team/stops/N308acb"], ["https://tec.openplanner.team/stops/N501gcb", "https://tec.openplanner.team/stops/N501leb"], ["https://tec.openplanner.team/stops/X602aea", "https://tec.openplanner.team/stops/X602afa"], ["https://tec.openplanner.team/stops/LLagert*", "https://tec.openplanner.team/stops/LLaover3"], ["https://tec.openplanner.team/stops/LNCecdo1", "https://tec.openplanner.team/stops/Lseathe2"], ["https://tec.openplanner.team/stops/Cfrcham2", "https://tec.openplanner.team/stops/Cmeptmi6"], ["https://tec.openplanner.team/stops/Cmqbasv2", "https://tec.openplanner.team/stops/Cmqegl1"], ["https://tec.openplanner.team/stops/X636aza", "https://tec.openplanner.team/stops/X636bbb"], ["https://tec.openplanner.team/stops/X904aia", "https://tec.openplanner.team/stops/X904aib"], ["https://tec.openplanner.team/stops/N501cna", "https://tec.openplanner.team/stops/N501eoa"], ["https://tec.openplanner.team/stops/LDmdomm1", "https://tec.openplanner.team/stops/LDmwarf1"], ["https://tec.openplanner.team/stops/H1pa104b", "https://tec.openplanner.team/stops/H1pa109a"], ["https://tec.openplanner.team/stops/X992aab", "https://tec.openplanner.team/stops/X992aad"], ["https://tec.openplanner.team/stops/N553alb", "https://tec.openplanner.team/stops/N553amb"], ["https://tec.openplanner.team/stops/N562aka", "https://tec.openplanner.team/stops/N562alc"], ["https://tec.openplanner.team/stops/H4ty282b", "https://tec.openplanner.team/stops/H4ty339b"], ["https://tec.openplanner.team/stops/LeUcroi2", "https://tec.openplanner.team/stops/LeUwetz1"], ["https://tec.openplanner.team/stops/N506bsa", "https://tec.openplanner.team/stops/N506bsb"], ["https://tec.openplanner.team/stops/Cgxchea1", "https://tec.openplanner.team/stops/Cgxchea2"], ["https://tec.openplanner.team/stops/H4br109a", "https://tec.openplanner.team/stops/H4hn114a"], ["https://tec.openplanner.team/stops/Bnilegl1", "https://tec.openplanner.team/stops/Bnilspe4"], ["https://tec.openplanner.team/stops/H4mo137b", "https://tec.openplanner.team/stops/H4mo191a"], ["https://tec.openplanner.team/stops/Lcaboun3", "https://tec.openplanner.team/stops/Lcacaps1"], ["https://tec.openplanner.team/stops/LATmals1", "https://tec.openplanner.team/stops/LHUfali1"], ["https://tec.openplanner.team/stops/N517adb", "https://tec.openplanner.team/stops/N517aga"], ["https://tec.openplanner.team/stops/N874aba", "https://tec.openplanner.team/stops/N874aeb"], ["https://tec.openplanner.team/stops/Blempuc1", "https://tec.openplanner.team/stops/Blempuc2"], ["https://tec.openplanner.team/stops/Cchorle1", "https://tec.openplanner.team/stops/Cchprun1"], ["https://tec.openplanner.team/stops/Barqpla1", "https://tec.openplanner.team/stops/Bfelgar2"], ["https://tec.openplanner.team/stops/Laghetr1", "https://tec.openplanner.team/stops/Lkithie2"], ["https://tec.openplanner.team/stops/Bblacea1", "https://tec.openplanner.team/stops/Bblaegl2"], ["https://tec.openplanner.team/stops/LLrchat1", "https://tec.openplanner.team/stops/LNOning2"], ["https://tec.openplanner.team/stops/X939aba", "https://tec.openplanner.team/stops/X939adb"], ["https://tec.openplanner.team/stops/X601bmb", "https://tec.openplanner.team/stops/X612aba"], ["https://tec.openplanner.team/stops/LHggeer2", "https://tec.openplanner.team/stops/LHgpost1"], ["https://tec.openplanner.team/stops/N383aca", "https://tec.openplanner.team/stops/N383aea"], ["https://tec.openplanner.team/stops/X717aga", "https://tec.openplanner.team/stops/X717agc"], ["https://tec.openplanner.team/stops/X601blb", "https://tec.openplanner.team/stops/X602aca"], ["https://tec.openplanner.team/stops/LFNmonu2", "https://tec.openplanner.team/stops/LFNtill1"], ["https://tec.openplanner.team/stops/LJEpaqu2", "https://tec.openplanner.team/stops/LSkkeri1"], ["https://tec.openplanner.team/stops/Bblacim2", "https://tec.openplanner.team/stops/Bblagard"], ["https://tec.openplanner.team/stops/X657abb", "https://tec.openplanner.team/stops/X657aia"], ["https://tec.openplanner.team/stops/X999alb", "https://tec.openplanner.team/stops/X999ana"], ["https://tec.openplanner.team/stops/LOuilc-*", "https://tec.openplanner.team/stops/LOuplac1"], ["https://tec.openplanner.team/stops/NL76alc", "https://tec.openplanner.team/stops/NL76bcb"], ["https://tec.openplanner.team/stops/H1gq153a", "https://tec.openplanner.team/stops/H1sy145a"], ["https://tec.openplanner.team/stops/Crccamp1", "https://tec.openplanner.team/stops/Crcgmah2"], ["https://tec.openplanner.team/stops/Lbocime1", "https://tec.openplanner.team/stops/Lbocime2"], ["https://tec.openplanner.team/stops/LBslama2", "https://tec.openplanner.team/stops/LEnchan1"], ["https://tec.openplanner.team/stops/Bcer4br5", "https://tec.openplanner.team/stops/Bottcpl2"], ["https://tec.openplanner.team/stops/H1ht133b", "https://tec.openplanner.team/stops/H1ht135b"], ["https://tec.openplanner.team/stops/N134afa", "https://tec.openplanner.team/stops/N152abe"], ["https://tec.openplanner.team/stops/N137aea", "https://tec.openplanner.team/stops/N137afa"], ["https://tec.openplanner.team/stops/LDLgran2", "https://tec.openplanner.team/stops/LHYnoid2"], ["https://tec.openplanner.team/stops/N516ana", "https://tec.openplanner.team/stops/N516aoa"], ["https://tec.openplanner.team/stops/H1sy143d", "https://tec.openplanner.team/stops/H1sy150a"], ["https://tec.openplanner.team/stops/H4ty298a", "https://tec.openplanner.team/stops/H4ty352a"], ["https://tec.openplanner.team/stops/Cthhvil1", "https://tec.openplanner.team/stops/Cthvbas3"], ["https://tec.openplanner.team/stops/X921ahb", "https://tec.openplanner.team/stops/X921aja"], ["https://tec.openplanner.team/stops/LFPkape2", "https://tec.openplanner.team/stops/LFPkape3"], ["https://tec.openplanner.team/stops/N576ajb", "https://tec.openplanner.team/stops/N576akb"], ["https://tec.openplanner.team/stops/H4hx122a", "https://tec.openplanner.team/stops/H4hx122b"], ["https://tec.openplanner.team/stops/H4ta121a", "https://tec.openplanner.team/stops/H4ta131b"], ["https://tec.openplanner.team/stops/X595aca", "https://tec.openplanner.team/stops/X595acb"], ["https://tec.openplanner.team/stops/X999aba", "https://tec.openplanner.team/stops/X999acc"], ["https://tec.openplanner.team/stops/H4ru235a", "https://tec.openplanner.team/stops/H4ru245a"], ["https://tec.openplanner.team/stops/X796aaa", "https://tec.openplanner.team/stops/X796aab"], ["https://tec.openplanner.team/stops/Bwlhswc1", "https://tec.openplanner.team/stops/Bwlhswc2"], ["https://tec.openplanner.team/stops/X664aaa", "https://tec.openplanner.team/stops/X664aab"], ["https://tec.openplanner.team/stops/Cliburl1", "https://tec.openplanner.team/stops/Cliburl2"], ["https://tec.openplanner.team/stops/Lagresi2", "https://tec.openplanner.team/stops/Lagvern1"], ["https://tec.openplanner.team/stops/Bnstmig1", "https://tec.openplanner.team/stops/Bnstver1"], ["https://tec.openplanner.team/stops/Ccohotv2", "https://tec.openplanner.team/stops/Ccohuli1"], ["https://tec.openplanner.team/stops/Llgbavi1", "https://tec.openplanner.team/stops/Llgbavi2"], ["https://tec.openplanner.team/stops/X801aza", "https://tec.openplanner.team/stops/X801cna"], ["https://tec.openplanner.team/stops/H4av106d", "https://tec.openplanner.team/stops/H4cr111a"], ["https://tec.openplanner.team/stops/N550abd", "https://tec.openplanner.team/stops/N550acc"], ["https://tec.openplanner.team/stops/LDmdomm1", "https://tec.openplanner.team/stops/LSGmale2"], ["https://tec.openplanner.team/stops/Llgbago2", "https://tec.openplanner.team/stops/Llgmass2"], ["https://tec.openplanner.team/stops/H4ty291a", "https://tec.openplanner.team/stops/H4ty347a"], ["https://tec.openplanner.team/stops/Bettars2", "https://tec.openplanner.team/stops/Bixefra1"], ["https://tec.openplanner.team/stops/LLYtir-1", "https://tec.openplanner.team/stops/LLYtir-2"], ["https://tec.openplanner.team/stops/Cflathe1", "https://tec.openplanner.team/stops/Cflathe2"], ["https://tec.openplanner.team/stops/Cjufagn4", "https://tec.openplanner.team/stops/Cjuledo2"], ["https://tec.openplanner.team/stops/Cmgslo1", "https://tec.openplanner.team/stops/Cmgslo2"], ["https://tec.openplanner.team/stops/N113aba", "https://tec.openplanner.team/stops/N113abb"], ["https://tec.openplanner.team/stops/Cprbevu1", "https://tec.openplanner.team/stops/Cprcalv2"], ["https://tec.openplanner.team/stops/N543bxa", "https://tec.openplanner.team/stops/N543byb"], ["https://tec.openplanner.team/stops/N166aab", "https://tec.openplanner.team/stops/N167agb"], ["https://tec.openplanner.team/stops/H1ma230a", "https://tec.openplanner.team/stops/H1ma237a"], ["https://tec.openplanner.team/stops/Cthoues1", "https://tec.openplanner.team/stops/Cthoues2"], ["https://tec.openplanner.team/stops/N149ahc", "https://tec.openplanner.team/stops/N149alb"], ["https://tec.openplanner.team/stops/X952agb", "https://tec.openplanner.team/stops/X952aia"], ["https://tec.openplanner.team/stops/X602aqa", "https://tec.openplanner.team/stops/X602aqb"], ["https://tec.openplanner.team/stops/N543axb", "https://tec.openplanner.team/stops/N543aya"], ["https://tec.openplanner.team/stops/H4av105b", "https://tec.openplanner.team/stops/H4av106b"], ["https://tec.openplanner.team/stops/N528aaa", "https://tec.openplanner.team/stops/N528aba"], ["https://tec.openplanner.team/stops/Bnivphm1", "https://tec.openplanner.team/stops/Bnivvcw1"], ["https://tec.openplanner.team/stops/X836aca", "https://tec.openplanner.team/stops/X836aib"], ["https://tec.openplanner.team/stops/X633ajc", "https://tec.openplanner.team/stops/X654aaa"], ["https://tec.openplanner.team/stops/N101aic", "https://tec.openplanner.team/stops/N101aoa"], ["https://tec.openplanner.team/stops/N539acb", "https://tec.openplanner.team/stops/N539aea"], ["https://tec.openplanner.team/stops/N538aob", "https://tec.openplanner.team/stops/N538asa"], ["https://tec.openplanner.team/stops/LLUtrol2", "https://tec.openplanner.team/stops/LLUvent2"], ["https://tec.openplanner.team/stops/H1wa141a", "https://tec.openplanner.team/stops/H1wa145b"], ["https://tec.openplanner.team/stops/X608aza", "https://tec.openplanner.team/stops/X627aaa"], ["https://tec.openplanner.team/stops/Lsebeau1", "https://tec.openplanner.team/stops/Lsesabl1"], ["https://tec.openplanner.team/stops/X626aba", "https://tec.openplanner.team/stops/X626anb"], ["https://tec.openplanner.team/stops/Lcepont5", "https://tec.openplanner.team/stops/Lcepont6"], ["https://tec.openplanner.team/stops/H2ll187a", "https://tec.openplanner.team/stops/H2ll199a"], ["https://tec.openplanner.team/stops/H4lz125b", "https://tec.openplanner.team/stops/H4lz155a"], ["https://tec.openplanner.team/stops/Cjufauv2", "https://tec.openplanner.team/stops/Cjuspin1"], ["https://tec.openplanner.team/stops/LLbcafe1", "https://tec.openplanner.team/stops/LLbrecu2"], ["https://tec.openplanner.team/stops/Buccmer2", "https://tec.openplanner.team/stops/Buccobs1"], ["https://tec.openplanner.team/stops/H1me113a", "https://tec.openplanner.team/stops/H1me118b"], ["https://tec.openplanner.team/stops/N229aca", "https://tec.openplanner.team/stops/N229adb"], ["https://tec.openplanner.team/stops/H1ro130b", "https://tec.openplanner.team/stops/H1ro141a"], ["https://tec.openplanner.team/stops/Bezebru2", "https://tec.openplanner.team/stops/Bneelaa2"], ["https://tec.openplanner.team/stops/X757akb", "https://tec.openplanner.team/stops/X779aba"], ["https://tec.openplanner.team/stops/Cchdaup1", "https://tec.openplanner.team/stops/Cchvhau1"], ["https://tec.openplanner.team/stops/N229apa", "https://tec.openplanner.team/stops/N229apb"], ["https://tec.openplanner.team/stops/X734aia", "https://tec.openplanner.team/stops/X734ara"], ["https://tec.openplanner.team/stops/Cwfdame2", "https://tec.openplanner.team/stops/Cwfzola1"], ["https://tec.openplanner.team/stops/X917adb", "https://tec.openplanner.team/stops/X917aea"], ["https://tec.openplanner.team/stops/N542acc", "https://tec.openplanner.team/stops/N542amb"], ["https://tec.openplanner.team/stops/Cvlstan1", "https://tec.openplanner.team/stops/Cvlstan2"], ["https://tec.openplanner.team/stops/H1pw120a", "https://tec.openplanner.team/stops/H1pw123a"], ["https://tec.openplanner.team/stops/N501bsb", "https://tec.openplanner.team/stops/N501btb"], ["https://tec.openplanner.team/stops/Brsga152", "https://tec.openplanner.team/stops/Brsgfbl1"], ["https://tec.openplanner.team/stops/LSAhaye1", "https://tec.openplanner.team/stops/LSAhaye2"], ["https://tec.openplanner.team/stops/LCxeg--1", "https://tec.openplanner.team/stops/LHEpriv2"], ["https://tec.openplanner.team/stops/Cfcrerp1", "https://tec.openplanner.team/stops/NH21afb"], ["https://tec.openplanner.team/stops/Bglibui1", "https://tec.openplanner.team/stops/NB33ala"], ["https://tec.openplanner.team/stops/H1pa100a", "https://tec.openplanner.team/stops/H1pa103b"], ["https://tec.openplanner.team/stops/Lcebois1", "https://tec.openplanner.team/stops/Lcepont2"], ["https://tec.openplanner.team/stops/X608asb", "https://tec.openplanner.team/stops/X622adb"], ["https://tec.openplanner.team/stops/LmRh%C3%B6fe1", "https://tec.openplanner.team/stops/LmRh%C3%B6fe2"], ["https://tec.openplanner.team/stops/X626aea", "https://tec.openplanner.team/stops/X626anb"], ["https://tec.openplanner.team/stops/X897afb", "https://tec.openplanner.team/stops/X897agb"], ["https://tec.openplanner.team/stops/X618aib", "https://tec.openplanner.team/stops/X618ajb"], ["https://tec.openplanner.team/stops/N252aba", "https://tec.openplanner.team/stops/N252adb"], ["https://tec.openplanner.team/stops/H1ch141a", "https://tec.openplanner.team/stops/H1ch143a"], ["https://tec.openplanner.team/stops/Lpebier1", "https://tec.openplanner.team/stops/Lpepano1"], ["https://tec.openplanner.team/stops/X886aab", "https://tec.openplanner.team/stops/X889ada"], ["https://tec.openplanner.team/stops/X790aea", "https://tec.openplanner.team/stops/X790ahb"], ["https://tec.openplanner.team/stops/H2na131b", "https://tec.openplanner.team/stops/H2na132a"], ["https://tec.openplanner.team/stops/LRRchen1", "https://tec.openplanner.team/stops/LRRlimi1"], ["https://tec.openplanner.team/stops/LHUfrai1", "https://tec.openplanner.team/stops/LHUfrai2"], ["https://tec.openplanner.team/stops/H4wp151a", "https://tec.openplanner.team/stops/H4wp152a"], ["https://tec.openplanner.team/stops/Blingar2", "https://tec.openplanner.team/stops/Blingar3"], ["https://tec.openplanner.team/stops/X982afa", "https://tec.openplanner.team/stops/X982aja"], ["https://tec.openplanner.team/stops/Bramcar1", "https://tec.openplanner.team/stops/Bramcar2"], ["https://tec.openplanner.team/stops/N134aha", "https://tec.openplanner.team/stops/N134ahb"], ["https://tec.openplanner.team/stops/Beclbse1", "https://tec.openplanner.team/stops/Beclbse2"], ["https://tec.openplanner.team/stops/LBEpier1", "https://tec.openplanner.team/stops/LBEssab2"], ["https://tec.openplanner.team/stops/LWeec--1", "https://tec.openplanner.team/stops/LWelogi2"], ["https://tec.openplanner.team/stops/Cgxdeba2", "https://tec.openplanner.team/stops/Cgxwaut2"], ["https://tec.openplanner.team/stops/X758abb", "https://tec.openplanner.team/stops/X758afa"], ["https://tec.openplanner.team/stops/LAOeg--2", "https://tec.openplanner.team/stops/LAOpres1"], ["https://tec.openplanner.team/stops/LgRha212", "https://tec.openplanner.team/stops/LnUhohe2"], ["https://tec.openplanner.team/stops/H1do129b", "https://tec.openplanner.team/stops/H1wi147a"], ["https://tec.openplanner.team/stops/Lagorch2", "https://tec.openplanner.team/stops/Lsteg--2"], ["https://tec.openplanner.team/stops/H1si151a", "https://tec.openplanner.team/stops/H5st162b"], ["https://tec.openplanner.team/stops/Csycant2", "https://tec.openplanner.team/stops/Csyjumo1"], ["https://tec.openplanner.team/stops/X982ada", "https://tec.openplanner.team/stops/X982bta"], ["https://tec.openplanner.team/stops/X801cib", "https://tec.openplanner.team/stops/X801cna"], ["https://tec.openplanner.team/stops/LaNdord1", "https://tec.openplanner.team/stops/LaNdorf2"], ["https://tec.openplanner.team/stops/X731aib", "https://tec.openplanner.team/stops/X736aia"], ["https://tec.openplanner.team/stops/X750aka", "https://tec.openplanner.team/stops/X750baa"], ["https://tec.openplanner.team/stops/N120aab", "https://tec.openplanner.team/stops/N121afb"], ["https://tec.openplanner.team/stops/N301ahb", "https://tec.openplanner.team/stops/N301aia"], ["https://tec.openplanner.team/stops/LLvpost2", "https://tec.openplanner.team/stops/NL78afb"], ["https://tec.openplanner.team/stops/Brsrfen1", "https://tec.openplanner.team/stops/Brsrpri1"], ["https://tec.openplanner.team/stops/N874amb", "https://tec.openplanner.team/stops/N874amc"], ["https://tec.openplanner.team/stops/Bitrfsc2", "https://tec.openplanner.team/stops/Bitrmon1"], ["https://tec.openplanner.team/stops/LWibare1", "https://tec.openplanner.team/stops/LWidepo2"], ["https://tec.openplanner.team/stops/Cmadeli2", "https://tec.openplanner.team/stops/Cmomoul4"], ["https://tec.openplanner.team/stops/Lalexpa2", "https://tec.openplanner.team/stops/Lalmakr2"], ["https://tec.openplanner.team/stops/N522atb", "https://tec.openplanner.team/stops/N522aua"], ["https://tec.openplanner.team/stops/Cchdagn2", "https://tec.openplanner.team/stops/Cchriga1"], ["https://tec.openplanner.team/stops/LoDkoll2", "https://tec.openplanner.team/stops/LoDschu2"], ["https://tec.openplanner.team/stops/H3so154b", "https://tec.openplanner.team/stops/H3so176b"], ["https://tec.openplanner.team/stops/LWEhang1", "https://tec.openplanner.team/stops/LWEhosp1"], ["https://tec.openplanner.team/stops/Llgform2", "https://tec.openplanner.team/stops/Llgsnap2"], ["https://tec.openplanner.team/stops/X938acb", "https://tec.openplanner.team/stops/X938adb"], ["https://tec.openplanner.team/stops/Lhrbass1", "https://tec.openplanner.team/stops/Lhrpaix2"], ["https://tec.openplanner.team/stops/Clrcime2", "https://tec.openplanner.team/stops/CMpara2"], ["https://tec.openplanner.team/stops/Lchplai2", "https://tec.openplanner.team/stops/Lchtche2"], ["https://tec.openplanner.team/stops/H1sp354b", "https://tec.openplanner.team/stops/H1sp355a"], ["https://tec.openplanner.team/stops/X769aja", "https://tec.openplanner.team/stops/X769aka"], ["https://tec.openplanner.team/stops/LCSfagn2", "https://tec.openplanner.team/stops/LCShoux2"], ["https://tec.openplanner.team/stops/H1vb143a", "https://tec.openplanner.team/stops/H1wz169a"], ["https://tec.openplanner.team/stops/Bwatgar1", "https://tec.openplanner.team/stops/Bwatgar4"], ["https://tec.openplanner.team/stops/LETeg--2", "https://tec.openplanner.team/stops/LETtemp1"], ["https://tec.openplanner.team/stops/N547aaa", "https://tec.openplanner.team/stops/N547aba"], ["https://tec.openplanner.team/stops/Bborbif2", "https://tec.openplanner.team/stops/Bborche2"], ["https://tec.openplanner.team/stops/Bfelfde2", "https://tec.openplanner.team/stops/H2fa103b"], ["https://tec.openplanner.team/stops/Lsmnico2", "https://tec.openplanner.team/stops/Lsmrwan2"], ["https://tec.openplanner.team/stops/LAUneuv3", "https://tec.openplanner.team/stops/LAUnico2"], ["https://tec.openplanner.team/stops/N113aba", "https://tec.openplanner.team/stops/N139aca"], ["https://tec.openplanner.team/stops/X715acb", "https://tec.openplanner.team/stops/X715ada"], ["https://tec.openplanner.team/stops/X758aia", "https://tec.openplanner.team/stops/X758aib"], ["https://tec.openplanner.team/stops/X927aba", "https://tec.openplanner.team/stops/X983aga"], ["https://tec.openplanner.team/stops/X713aia", "https://tec.openplanner.team/stops/X713ajb"], ["https://tec.openplanner.team/stops/LgAnr492", "https://tec.openplanner.team/stops/LsVgesc2"], ["https://tec.openplanner.team/stops/Lstscie2", "https://tec.openplanner.team/stops/Lsttech1"], ["https://tec.openplanner.team/stops/Bernpon1", "https://tec.openplanner.team/stops/Bgrmfga1"], ["https://tec.openplanner.team/stops/H1ba119a", "https://tec.openplanner.team/stops/H1ba120b"], ["https://tec.openplanner.team/stops/H1bb114a", "https://tec.openplanner.team/stops/H1bb120b"], ["https://tec.openplanner.team/stops/N218acb", "https://tec.openplanner.team/stops/N218aea"], ["https://tec.openplanner.team/stops/N522aba", "https://tec.openplanner.team/stops/N522aea"], ["https://tec.openplanner.team/stops/N501jqa", "https://tec.openplanner.team/stops/N501kmy"], ["https://tec.openplanner.team/stops/H1pa116a", "https://tec.openplanner.team/stops/H1wa151a"], ["https://tec.openplanner.team/stops/LHolexh2", "https://tec.openplanner.team/stops/LHovill1"], ["https://tec.openplanner.team/stops/X615axb", "https://tec.openplanner.team/stops/X615ayb"], ["https://tec.openplanner.team/stops/LwYkreu1", "https://tec.openplanner.team/stops/LwYkreu2"], ["https://tec.openplanner.team/stops/H1si153a", "https://tec.openplanner.team/stops/H1si156a"], ["https://tec.openplanner.team/stops/X616ahb", "https://tec.openplanner.team/stops/X617ada"], ["https://tec.openplanner.team/stops/X735aab", "https://tec.openplanner.team/stops/X735abb"], ["https://tec.openplanner.team/stops/LHYlinc2", "https://tec.openplanner.team/stops/LHYnoid2"], ["https://tec.openplanner.team/stops/N543avh", "https://tec.openplanner.team/stops/N543clb"], ["https://tec.openplanner.team/stops/H2sv211b", "https://tec.openplanner.team/stops/H2sv218a"], ["https://tec.openplanner.team/stops/LBWbatt2", "https://tec.openplanner.team/stops/LBWfusi2"], ["https://tec.openplanner.team/stops/X601bmb", "https://tec.openplanner.team/stops/X601dga"], ["https://tec.openplanner.team/stops/N355aba", "https://tec.openplanner.team/stops/N355ada"], ["https://tec.openplanner.team/stops/X839abd", "https://tec.openplanner.team/stops/X839acb"], ["https://tec.openplanner.team/stops/Clpalli2", "https://tec.openplanner.team/stops/Clpnapo1"], ["https://tec.openplanner.team/stops/N507aga", "https://tec.openplanner.team/stops/N507agb"], ["https://tec.openplanner.team/stops/N538aja", "https://tec.openplanner.team/stops/N538ajd"], ["https://tec.openplanner.team/stops/N501ckb", "https://tec.openplanner.team/stops/N501cky"], ["https://tec.openplanner.team/stops/Ccutrav1", "https://tec.openplanner.team/stops/Ccutrav4"], ["https://tec.openplanner.team/stops/N501hra", "https://tec.openplanner.team/stops/N501hyb"], ["https://tec.openplanner.team/stops/Lgrramp1", "https://tec.openplanner.team/stops/Llggrav1"], ["https://tec.openplanner.team/stops/H2bh106b", "https://tec.openplanner.team/stops/H2bh115b"], ["https://tec.openplanner.team/stops/Llgabat1", "https://tec.openplanner.team/stops/Llgarmu4"], ["https://tec.openplanner.team/stops/H1gh149b", "https://tec.openplanner.team/stops/H1gh151b"], ["https://tec.openplanner.team/stops/H4ga155b", "https://tec.openplanner.team/stops/H4ga170b"], ["https://tec.openplanner.team/stops/X804akb", "https://tec.openplanner.team/stops/X804bja"], ["https://tec.openplanner.team/stops/LPtchpl1", "https://tec.openplanner.team/stops/LPtrefa2"], ["https://tec.openplanner.team/stops/X768afa", "https://tec.openplanner.team/stops/X769amb"], ["https://tec.openplanner.team/stops/H4ga150a", "https://tec.openplanner.team/stops/H4ga166b"], ["https://tec.openplanner.team/stops/NL76afb", "https://tec.openplanner.team/stops/NL76agd"], ["https://tec.openplanner.team/stops/Bwancal1", "https://tec.openplanner.team/stops/Bwancal2"], ["https://tec.openplanner.team/stops/LHTcerc4", "https://tec.openplanner.team/stops/LHTdelh1"], ["https://tec.openplanner.team/stops/N501cda", "https://tec.openplanner.team/stops/N501cdc"], ["https://tec.openplanner.team/stops/H2hg269b", "https://tec.openplanner.team/stops/H2hg272a"], ["https://tec.openplanner.team/stops/LAvambr2", "https://tec.openplanner.team/stops/LMXaven2"], ["https://tec.openplanner.team/stops/LTgbalm1", "https://tec.openplanner.team/stops/LTgchar8"], ["https://tec.openplanner.team/stops/LCAeg--1", "https://tec.openplanner.team/stops/LCAeg--2"], ["https://tec.openplanner.team/stops/X925ahb", "https://tec.openplanner.team/stops/X996aaa"], ["https://tec.openplanner.team/stops/N508aba", "https://tec.openplanner.team/stops/N508abb"], ["https://tec.openplanner.team/stops/H1hq158a", "https://tec.openplanner.team/stops/H1sy148a"], ["https://tec.openplanner.team/stops/Bkrabhu2", "https://tec.openplanner.team/stops/Boveklo1"], ["https://tec.openplanner.team/stops/LGEbern1", "https://tec.openplanner.team/stops/LGEbern2"], ["https://tec.openplanner.team/stops/N556ada", "https://tec.openplanner.team/stops/N556afa"], ["https://tec.openplanner.team/stops/Bhaltre2", "https://tec.openplanner.team/stops/Bhalvla2"], ["https://tec.openplanner.team/stops/Cfcgar2", "https://tec.openplanner.team/stops/Cfcgrat2"], ["https://tec.openplanner.team/stops/X605afa", "https://tec.openplanner.team/stops/X605afb"], ["https://tec.openplanner.team/stops/Bolppsn1", "https://tec.openplanner.team/stops/Bolppsn2"], ["https://tec.openplanner.team/stops/Lbrcygn1", "https://tec.openplanner.team/stops/Lbrgrot2"], ["https://tec.openplanner.team/stops/H1bo109b", "https://tec.openplanner.team/stops/H1bo150a"], ["https://tec.openplanner.team/stops/Lfllapi3", "https://tec.openplanner.team/stops/Lflterm1"], ["https://tec.openplanner.team/stops/Lbocruc3", "https://tec.openplanner.team/stops/Lbofrai1"], ["https://tec.openplanner.team/stops/H1bi101b", "https://tec.openplanner.team/stops/H1mg108a"], ["https://tec.openplanner.team/stops/X342aba", "https://tec.openplanner.team/stops/X342aca"], ["https://tec.openplanner.team/stops/LBdcarr2", "https://tec.openplanner.team/stops/LLrfagn2"], ["https://tec.openplanner.team/stops/LFUchpl2", "https://tec.openplanner.team/stops/LFUgare2"], ["https://tec.openplanner.team/stops/LBjflor2", "https://tec.openplanner.team/stops/X575ahb"], ["https://tec.openplanner.team/stops/N232bha", "https://tec.openplanner.team/stops/N232bhb"], ["https://tec.openplanner.team/stops/H1by108b", "https://tec.openplanner.team/stops/H1by108c"], ["https://tec.openplanner.team/stops/LmNpost1", "https://tec.openplanner.team/stops/LmNstaa2"], ["https://tec.openplanner.team/stops/Brsrfen2", "https://tec.openplanner.team/stops/Brsrrcu2"], ["https://tec.openplanner.team/stops/X713aga", "https://tec.openplanner.team/stops/X713agb"], ["https://tec.openplanner.team/stops/Csdpira2", "https://tec.openplanner.team/stops/Cvpsncb2"], ["https://tec.openplanner.team/stops/Lmofays1", "https://tec.openplanner.team/stops/Lmoweri2"], ["https://tec.openplanner.team/stops/LLSba9-1", "https://tec.openplanner.team/stops/LLStrid3"], ["https://tec.openplanner.team/stops/H4co146b", "https://tec.openplanner.team/stops/H4co158a"], ["https://tec.openplanner.team/stops/X804ana", "https://tec.openplanner.team/stops/X804boa"], ["https://tec.openplanner.team/stops/Cgdcent2", "https://tec.openplanner.team/stops/Clggrfe2"], ["https://tec.openplanner.team/stops/Bnilcim2", "https://tec.openplanner.team/stops/Bnilreg1"], ["https://tec.openplanner.team/stops/LLUmc--2", "https://tec.openplanner.team/stops/LLUtill4"], ["https://tec.openplanner.team/stops/Ccigene2", "https://tec.openplanner.team/stops/Clvchen2"], ["https://tec.openplanner.team/stops/X750afa", "https://tec.openplanner.team/stops/X750bgb"], ["https://tec.openplanner.team/stops/Bgzddmo1", "https://tec.openplanner.team/stops/Bgzddmo2"], ["https://tec.openplanner.team/stops/H4be102a", "https://tec.openplanner.team/stops/H4be147a"], ["https://tec.openplanner.team/stops/Ljecoqu2", "https://tec.openplanner.team/stops/Ljexhav4"], ["https://tec.openplanner.team/stops/LMsbusc2", "https://tec.openplanner.team/stops/LMspont1"], ["https://tec.openplanner.team/stops/Cmyecur1", "https://tec.openplanner.team/stops/Cmygrbr3"], ["https://tec.openplanner.team/stops/H1vb142a", "https://tec.openplanner.team/stops/H3bi108a"], ["https://tec.openplanner.team/stops/LBscasi1", "https://tec.openplanner.team/stops/NL72aba"], ["https://tec.openplanner.team/stops/LHegame2", "https://tec.openplanner.team/stops/LHegame4"], ["https://tec.openplanner.team/stops/Bsamegl1", "https://tec.openplanner.team/stops/Bsamfma1"], ["https://tec.openplanner.team/stops/Cmg4bra2", "https://tec.openplanner.team/stops/Cmgbrou1"], ["https://tec.openplanner.team/stops/X623ahb", "https://tec.openplanner.team/stops/X623aib"], ["https://tec.openplanner.team/stops/N506asa", "https://tec.openplanner.team/stops/N506asb"], ["https://tec.openplanner.team/stops/Lhrpaep*", "https://tec.openplanner.team/stops/Lhrpaep1"], ["https://tec.openplanner.team/stops/Bgembhe2", "https://tec.openplanner.team/stops/Blnzcar2"], ["https://tec.openplanner.team/stops/LeUbush1", "https://tec.openplanner.team/stops/LeUhook2"], ["https://tec.openplanner.team/stops/X661ava", "https://tec.openplanner.team/stops/X661awa"], ["https://tec.openplanner.team/stops/Lvo60--2", "https://tec.openplanner.team/stops/Lvomoul1"], ["https://tec.openplanner.team/stops/Bgnpegl1", "https://tec.openplanner.team/stops/Bgnpjbe1"], ["https://tec.openplanner.team/stops/X364aaa", "https://tec.openplanner.team/stops/X364aca"], ["https://tec.openplanner.team/stops/LLxcbr-1", "https://tec.openplanner.team/stops/LLxnive1"], ["https://tec.openplanner.team/stops/Lsccime2", "https://tec.openplanner.team/stops/Lscpamp2"], ["https://tec.openplanner.team/stops/X822afa", "https://tec.openplanner.team/stops/X822afb"], ["https://tec.openplanner.team/stops/N571adb", "https://tec.openplanner.team/stops/N573aeb"], ["https://tec.openplanner.team/stops/Csiegli1", "https://tec.openplanner.team/stops/Csiegli2"], ["https://tec.openplanner.team/stops/Cmlhauc3", "https://tec.openplanner.team/stops/Cmlstgi2"], ["https://tec.openplanner.team/stops/H5pe130a", "https://tec.openplanner.team/stops/H5pe151a"], ["https://tec.openplanner.team/stops/H1bx104a", "https://tec.openplanner.team/stops/H1bx108b"], ["https://tec.openplanner.team/stops/X662aba", "https://tec.openplanner.team/stops/X662asb"], ["https://tec.openplanner.team/stops/H1wa135a", "https://tec.openplanner.team/stops/H1wa135b"], ["https://tec.openplanner.team/stops/X658acb", "https://tec.openplanner.team/stops/X658afb"], ["https://tec.openplanner.team/stops/H4bs114a", "https://tec.openplanner.team/stops/H5pe146b"], ["https://tec.openplanner.team/stops/X748aaa", "https://tec.openplanner.team/stops/X748afa"], ["https://tec.openplanner.team/stops/Bfelfde1", "https://tec.openplanner.team/stops/Bronn391"], ["https://tec.openplanner.team/stops/LDObran1", "https://tec.openplanner.team/stops/LDOordi2"], ["https://tec.openplanner.team/stops/Blsmcha4", "https://tec.openplanner.team/stops/Braclin2"], ["https://tec.openplanner.team/stops/Cbimonu1", "https://tec.openplanner.team/stops/Cthalou2"], ["https://tec.openplanner.team/stops/H1ms289a", "https://tec.openplanner.team/stops/H1ms290a"], ["https://tec.openplanner.team/stops/X939agb", "https://tec.openplanner.team/stops/X940ahb"], ["https://tec.openplanner.team/stops/LLAvi651", "https://tec.openplanner.team/stops/LMalarg3"], ["https://tec.openplanner.team/stops/LCSgend1", "https://tec.openplanner.team/stops/LSGsurf2"], ["https://tec.openplanner.team/stops/X898aaa", "https://tec.openplanner.team/stops/X898aea"], ["https://tec.openplanner.team/stops/X809aaa", "https://tec.openplanner.team/stops/X812bga"], ["https://tec.openplanner.team/stops/X858aab", "https://tec.openplanner.team/stops/X858ada"], ["https://tec.openplanner.team/stops/N501ata", "https://tec.openplanner.team/stops/N501awa"], ["https://tec.openplanner.team/stops/NC14aab", "https://tec.openplanner.team/stops/NC14ava"], ["https://tec.openplanner.team/stops/N511ajb", "https://tec.openplanner.team/stops/N511asb"], ["https://tec.openplanner.team/stops/N533ada", "https://tec.openplanner.team/stops/N533adb"], ["https://tec.openplanner.team/stops/Cmacart1", "https://tec.openplanner.team/stops/Cmacart2"], ["https://tec.openplanner.team/stops/N286aba", "https://tec.openplanner.team/stops/N287aab"], ["https://tec.openplanner.team/stops/X612aba", "https://tec.openplanner.team/stops/X612abb"], ["https://tec.openplanner.team/stops/N244aha", "https://tec.openplanner.team/stops/N244ahb"], ["https://tec.openplanner.team/stops/N501cla", "https://tec.openplanner.team/stops/N501mdb"], ["https://tec.openplanner.team/stops/H1eo105b", "https://tec.openplanner.team/stops/H1eo108b"], ["https://tec.openplanner.team/stops/N507agb", "https://tec.openplanner.team/stops/N516aqa"], ["https://tec.openplanner.team/stops/LJUmc--2", "https://tec.openplanner.team/stops/LJUxhen1"], ["https://tec.openplanner.team/stops/Bcrngat2", "https://tec.openplanner.team/stops/Bcrnpla3"], ["https://tec.openplanner.team/stops/X872aab", "https://tec.openplanner.team/stops/X872abb"], ["https://tec.openplanner.team/stops/LPAbrun2", "https://tec.openplanner.team/stops/LPAchpl2"], ["https://tec.openplanner.team/stops/H1te176b", "https://tec.openplanner.team/stops/H1te183a"], ["https://tec.openplanner.team/stops/H1ho132b", "https://tec.openplanner.team/stops/H1ho142a"], ["https://tec.openplanner.team/stops/H4hx110a", "https://tec.openplanner.team/stops/H4hx116b"], ["https://tec.openplanner.team/stops/LVLf10-1", "https://tec.openplanner.team/stops/LVLgotr1"], ["https://tec.openplanner.team/stops/Bcbqcha2", "https://tec.openplanner.team/stops/Bcbqcoi1"], ["https://tec.openplanner.team/stops/N120aga", "https://tec.openplanner.team/stops/N120anb"], ["https://tec.openplanner.team/stops/NC23afa", "https://tec.openplanner.team/stops/NC23afb"], ["https://tec.openplanner.team/stops/H1ho122a", "https://tec.openplanner.team/stops/H1ho134a"], ["https://tec.openplanner.team/stops/Botteco1", "https://tec.openplanner.team/stops/Bottpar2"], ["https://tec.openplanner.team/stops/N331aab", "https://tec.openplanner.team/stops/N331aeb"], ["https://tec.openplanner.team/stops/LBTchai1", "https://tec.openplanner.team/stops/LBTchai2"], ["https://tec.openplanner.team/stops/H4eh102b", "https://tec.openplanner.team/stops/H4eh104a"], ["https://tec.openplanner.team/stops/Ltinico1", "https://tec.openplanner.team/stops/Ltinico2"], ["https://tec.openplanner.team/stops/N545aab", "https://tec.openplanner.team/stops/N553ana"], ["https://tec.openplanner.team/stops/LrAknop2", "https://tec.openplanner.team/stops/LrAneus3"], ["https://tec.openplanner.team/stops/X763ahb", "https://tec.openplanner.team/stops/X765aga"], ["https://tec.openplanner.team/stops/X818aob", "https://tec.openplanner.team/stops/X818awb"], ["https://tec.openplanner.team/stops/Candett1", "https://tec.openplanner.team/stops/H1bi103a"], ["https://tec.openplanner.team/stops/N533aha", "https://tec.openplanner.team/stops/N533ahb"], ["https://tec.openplanner.team/stops/LCEinst1", "https://tec.openplanner.team/stops/LCEinst2"], ["https://tec.openplanner.team/stops/N501ixd", "https://tec.openplanner.team/stops/N521aha"], ["https://tec.openplanner.team/stops/N244alb", "https://tec.openplanner.team/stops/N244ama"], ["https://tec.openplanner.team/stops/Bboncfv1", "https://tec.openplanner.team/stops/Bchgbel1"], ["https://tec.openplanner.team/stops/H2gy108b", "https://tec.openplanner.team/stops/H2gy113a"], ["https://tec.openplanner.team/stops/N101ada", "https://tec.openplanner.team/stops/N101adb"], ["https://tec.openplanner.team/stops/Ccyfroi2", "https://tec.openplanner.team/stops/Ccygara1"], ["https://tec.openplanner.team/stops/Lcemc--1", "https://tec.openplanner.team/stops/Lcemc--2"], ["https://tec.openplanner.team/stops/Cflvxca1", "https://tec.openplanner.team/stops/Cflvxca2"], ["https://tec.openplanner.team/stops/X750axa", "https://tec.openplanner.team/stops/X750axb"], ["https://tec.openplanner.team/stops/H1mr124a", "https://tec.openplanner.team/stops/H1mr124b"], ["https://tec.openplanner.team/stops/N533aqb", "https://tec.openplanner.team/stops/N533aqc"], ["https://tec.openplanner.team/stops/H1sg150a", "https://tec.openplanner.team/stops/H1sg150b"], ["https://tec.openplanner.team/stops/N548aia", "https://tec.openplanner.team/stops/N548aib"], ["https://tec.openplanner.team/stops/LERpouh2", "https://tec.openplanner.team/stops/LHrreal1"], ["https://tec.openplanner.team/stops/LPOwaut1", "https://tec.openplanner.team/stops/LSdbote1"], ["https://tec.openplanner.team/stops/X760ada", "https://tec.openplanner.team/stops/X760adb"], ["https://tec.openplanner.team/stops/N229ama", "https://tec.openplanner.team/stops/N229ata"], ["https://tec.openplanner.team/stops/H1vt192b", "https://tec.openplanner.team/stops/H1vt194b"], ["https://tec.openplanner.team/stops/Berngrt2", "https://tec.openplanner.team/stops/Bsaubbo1"], ["https://tec.openplanner.team/stops/H4ho119b", "https://tec.openplanner.team/stops/H4ho121a"], ["https://tec.openplanner.team/stops/LOLcroi2", "https://tec.openplanner.team/stops/LOLvill4"], ["https://tec.openplanner.team/stops/Lsmcime2", "https://tec.openplanner.team/stops/Lsmrcim1"], ["https://tec.openplanner.team/stops/Cgoetun3", "https://tec.openplanner.team/stops/Cgorobe1"], ["https://tec.openplanner.team/stops/Lvecite3", "https://tec.openplanner.team/stops/Lveepar2"], ["https://tec.openplanner.team/stops/H4re225a", "https://tec.openplanner.team/stops/H5at142b"], ["https://tec.openplanner.team/stops/LJEniho1", "https://tec.openplanner.team/stops/LJEniho2"], ["https://tec.openplanner.team/stops/Cmtmoul2", "https://tec.openplanner.team/stops/Cmttkai1"], ["https://tec.openplanner.team/stops/Caimeno3", "https://tec.openplanner.team/stops/Crswaut1"], ["https://tec.openplanner.team/stops/Bhlvlou1", "https://tec.openplanner.team/stops/Cbtgemi1"], ["https://tec.openplanner.team/stops/LLUg82-1", "https://tec.openplanner.team/stops/LLUg82-2"], ["https://tec.openplanner.team/stops/Cgyblob2", "https://tec.openplanner.team/stops/Cgyplvi1"], ["https://tec.openplanner.team/stops/Cclmoul1", "https://tec.openplanner.team/stops/Cdostco1"], ["https://tec.openplanner.team/stops/Lhuwaid1", "https://tec.openplanner.team/stops/Lmnrame1"], ["https://tec.openplanner.team/stops/H4es111b", "https://tec.openplanner.team/stops/H4ev124a"], ["https://tec.openplanner.team/stops/LAibego1", "https://tec.openplanner.team/stops/Lcceclu1"], ["https://tec.openplanner.team/stops/H1ba119c", "https://tec.openplanner.team/stops/H1qu104a"], ["https://tec.openplanner.team/stops/X736aaa", "https://tec.openplanner.team/stops/X736abb"], ["https://tec.openplanner.team/stops/X769aia", "https://tec.openplanner.team/stops/X769aib"], ["https://tec.openplanner.team/stops/LBRgare2", "https://tec.openplanner.team/stops/LBRmout4"], ["https://tec.openplanner.team/stops/LSPbalm2", "https://tec.openplanner.team/stops/LSPjoli2"], ["https://tec.openplanner.team/stops/Cfocorn1", "https://tec.openplanner.team/stops/Cforepo2"], ["https://tec.openplanner.team/stops/Lfhpass2", "https://tec.openplanner.team/stops/Lsemany1"], ["https://tec.openplanner.team/stops/Lbbbuse1", "https://tec.openplanner.team/stops/Lbbbuse2"], ["https://tec.openplanner.team/stops/LrOn14-1", "https://tec.openplanner.team/stops/LwR129-2"], ["https://tec.openplanner.team/stops/Llglefe2", "https://tec.openplanner.team/stops/Llglimb2"], ["https://tec.openplanner.team/stops/H1mb130b", "https://tec.openplanner.team/stops/H1mx123a"], ["https://tec.openplanner.team/stops/H1ol142a", "https://tec.openplanner.team/stops/H1ol145a"], ["https://tec.openplanner.team/stops/LMIbois2", "https://tec.openplanner.team/stops/LMIcamp2"], ["https://tec.openplanner.team/stops/Lhuleke2", "https://tec.openplanner.team/stops/Lvelobe2"], ["https://tec.openplanner.team/stops/Cvllerm2", "https://tec.openplanner.team/stops/Cvlstan2"], ["https://tec.openplanner.team/stops/Bgrhcro1", "https://tec.openplanner.team/stops/Bgrhhot1"], ["https://tec.openplanner.team/stops/N514acb", "https://tec.openplanner.team/stops/N514ama"], ["https://tec.openplanner.team/stops/H4bd110a", "https://tec.openplanner.team/stops/H4ht172a"], ["https://tec.openplanner.team/stops/X714ada", "https://tec.openplanner.team/stops/X714adb"], ["https://tec.openplanner.team/stops/N501mja", "https://tec.openplanner.team/stops/N501mjc"], ["https://tec.openplanner.team/stops/N564aca", "https://tec.openplanner.team/stops/N564acb"], ["https://tec.openplanner.team/stops/NR21abb", "https://tec.openplanner.team/stops/NR21abd"], ["https://tec.openplanner.team/stops/N535asb", "https://tec.openplanner.team/stops/N538ayb"], ["https://tec.openplanner.team/stops/X661apa", "https://tec.openplanner.team/stops/X661apb"], ["https://tec.openplanner.team/stops/Bwavbmo1", "https://tec.openplanner.team/stops/Bwavbmo2"], ["https://tec.openplanner.team/stops/Lpepano2", "https://tec.openplanner.team/stops/LTAchpl2"], ["https://tec.openplanner.team/stops/Lbocarr1", "https://tec.openplanner.team/stops/Lbogonh3"], ["https://tec.openplanner.team/stops/LBk79--2", "https://tec.openplanner.team/stops/LBkgrae1"], ["https://tec.openplanner.team/stops/X837abb", "https://tec.openplanner.team/stops/X839aea"], ["https://tec.openplanner.team/stops/NL67aca", "https://tec.openplanner.team/stops/NL67ada"], ["https://tec.openplanner.team/stops/Ljhsart1", "https://tec.openplanner.team/stops/Ljhsart4"], ["https://tec.openplanner.team/stops/LHUaveu1", "https://tec.openplanner.team/stops/LHUfont2"], ["https://tec.openplanner.team/stops/N501dha", "https://tec.openplanner.team/stops/N501dhb"], ["https://tec.openplanner.team/stops/H4ro155b", "https://tec.openplanner.team/stops/H4tu172b"], ["https://tec.openplanner.team/stops/Lbocond2", "https://tec.openplanner.team/stops/Lbogonh4"], ["https://tec.openplanner.team/stops/Cwflouv3", "https://tec.openplanner.team/stops/Cwfnamu1"], ["https://tec.openplanner.team/stops/Cchba01", "https://tec.openplanner.team/stops/Cchmamb2"], ["https://tec.openplanner.team/stops/X804asb", "https://tec.openplanner.team/stops/X804awa"], ["https://tec.openplanner.team/stops/LHMchbl2", "https://tec.openplanner.team/stops/LHMhind1"], ["https://tec.openplanner.team/stops/X740aga", "https://tec.openplanner.team/stops/X985aac"], ["https://tec.openplanner.team/stops/LAWbrou1", "https://tec.openplanner.team/stops/LAWgill2"], ["https://tec.openplanner.team/stops/N503aja", "https://tec.openplanner.team/stops/N503ajc"], ["https://tec.openplanner.team/stops/N117aga", "https://tec.openplanner.team/stops/N117asa"], ["https://tec.openplanner.team/stops/Cmtduch1", "https://tec.openplanner.team/stops/Cmttkai1"], ["https://tec.openplanner.team/stops/Llgriva2", "https://tec.openplanner.team/stops/Llgrome2"], ["https://tec.openplanner.team/stops/X614awb", "https://tec.openplanner.team/stops/X614axb"], ["https://tec.openplanner.team/stops/Lglvict2", "https://tec.openplanner.team/stops/Llgdelc*"], ["https://tec.openplanner.team/stops/Llgddef2", "https://tec.openplanner.team/stops/Llgrull1"], ["https://tec.openplanner.team/stops/H1hh118a", "https://tec.openplanner.team/stops/H1hh118b"], ["https://tec.openplanner.team/stops/X982aza", "https://tec.openplanner.team/stops/X982azb"], ["https://tec.openplanner.team/stops/LVnetan1", "https://tec.openplanner.team/stops/LVnflox2"], ["https://tec.openplanner.team/stops/X685acb", "https://tec.openplanner.team/stops/X685apa"], ["https://tec.openplanner.team/stops/H1bi101b", "https://tec.openplanner.team/stops/H1bi103a"], ["https://tec.openplanner.team/stops/LLAvi651", "https://tec.openplanner.team/stops/LLAvi652"], ["https://tec.openplanner.team/stops/H4mo151a", "https://tec.openplanner.team/stops/H4mo208a"], ["https://tec.openplanner.team/stops/Ccotrie3", "https://tec.openplanner.team/stops/Ccotrie4"], ["https://tec.openplanner.team/stops/Lbrfoid3", "https://tec.openplanner.team/stops/Lbrresi2"], ["https://tec.openplanner.team/stops/Llgboux1", "https://tec.openplanner.team/stops/Llgboux2"], ["https://tec.openplanner.team/stops/X749aab", "https://tec.openplanner.team/stops/X754adb"], ["https://tec.openplanner.team/stops/X805aab", "https://tec.openplanner.team/stops/X805agb"], ["https://tec.openplanner.team/stops/X948akb", "https://tec.openplanner.team/stops/X948ala"], ["https://tec.openplanner.team/stops/H1gg114b", "https://tec.openplanner.team/stops/H1gg117b"], ["https://tec.openplanner.team/stops/N501lfb", "https://tec.openplanner.team/stops/N501llb"], ["https://tec.openplanner.team/stops/N874acb", "https://tec.openplanner.team/stops/N874ahb"], ["https://tec.openplanner.team/stops/Blpglon1", "https://tec.openplanner.team/stops/Bvxgpro1"], ["https://tec.openplanner.team/stops/LhIkirc*", "https://tec.openplanner.team/stops/LmAkirc1"], ["https://tec.openplanner.team/stops/Barcast1", "https://tec.openplanner.team/stops/Bbsgfva1"], ["https://tec.openplanner.team/stops/Cflchel6", "https://tec.openplanner.team/stops/Cflhano2"], ["https://tec.openplanner.team/stops/LVIcarm4", "https://tec.openplanner.team/stops/LVIecol1"], ["https://tec.openplanner.team/stops/Bcbqcim2", "https://tec.openplanner.team/stops/Bcbqcoi2"], ["https://tec.openplanner.team/stops/X672aoa", "https://tec.openplanner.team/stops/X672apa"], ["https://tec.openplanner.team/stops/N331aab", "https://tec.openplanner.team/stops/N331aga"], ["https://tec.openplanner.team/stops/Bperros1", "https://tec.openplanner.team/stops/N519acb"], ["https://tec.openplanner.team/stops/Bblaccm1", "https://tec.openplanner.team/stops/Bblamsj1"], ["https://tec.openplanner.team/stops/X657adb", "https://tec.openplanner.team/stops/X657ajb"], ["https://tec.openplanner.team/stops/LDLgran3", "https://tec.openplanner.team/stops/LHYwach1"], ["https://tec.openplanner.team/stops/Bramcom2", "https://tec.openplanner.team/stops/Bramrdf1"], ["https://tec.openplanner.team/stops/Clafaub2", "https://tec.openplanner.team/stops/Claptcf2"], ["https://tec.openplanner.team/stops/X640aab", "https://tec.openplanner.team/stops/X640aca"], ["https://tec.openplanner.team/stops/X986acb", "https://tec.openplanner.team/stops/X986asa"], ["https://tec.openplanner.team/stops/LWEbr511", "https://tec.openplanner.team/stops/LWEhosp3"], ["https://tec.openplanner.team/stops/Bhercsj1", "https://tec.openplanner.team/stops/Bpieh172"], ["https://tec.openplanner.team/stops/Crccano3", "https://tec.openplanner.team/stops/Crcrlf2"], ["https://tec.openplanner.team/stops/H4bo179a", "https://tec.openplanner.team/stops/H4bo181a"], ["https://tec.openplanner.team/stops/H1ni316a", "https://tec.openplanner.team/stops/H1ni319a"], ["https://tec.openplanner.team/stops/H4li178a", "https://tec.openplanner.team/stops/H4mv194a"], ["https://tec.openplanner.team/stops/Csecoup1", "https://tec.openplanner.team/stops/Csecout1"], ["https://tec.openplanner.team/stops/H1mm121b", "https://tec.openplanner.team/stops/H1mm122b"], ["https://tec.openplanner.team/stops/Clshafa1", "https://tec.openplanner.team/stops/H1me116a"], ["https://tec.openplanner.team/stops/H4bc104a", "https://tec.openplanner.team/stops/H4bc104b"], ["https://tec.openplanner.team/stops/Bgliopp1", "https://tec.openplanner.team/stops/Bgliopp2"], ["https://tec.openplanner.team/stops/X615afb", "https://tec.openplanner.team/stops/X615baa"], ["https://tec.openplanner.team/stops/LBGjacq2", "https://tec.openplanner.team/stops/LBGvill1"], ["https://tec.openplanner.team/stops/N207abb", "https://tec.openplanner.team/stops/N207acb"], ["https://tec.openplanner.team/stops/Lgrlimi1", "https://tec.openplanner.team/stops/Lgrlimi3"], ["https://tec.openplanner.team/stops/X824ada", "https://tec.openplanner.team/stops/X824aeb"], ["https://tec.openplanner.team/stops/Bsomtpm1", "https://tec.openplanner.team/stops/N584bpa"], ["https://tec.openplanner.team/stops/LAUcarr2", "https://tec.openplanner.team/stops/LFdchau3"], ["https://tec.openplanner.team/stops/LHNgare2", "https://tec.openplanner.team/stops/LHNwaut2"], ["https://tec.openplanner.team/stops/H5pe137a", "https://tec.openplanner.team/stops/H5pe147c"], ["https://tec.openplanner.team/stops/LvA30--2", "https://tec.openplanner.team/stops/LvAwere1"], ["https://tec.openplanner.team/stops/Cptchea1", "https://tec.openplanner.team/stops/Cptegli3"], ["https://tec.openplanner.team/stops/X802afa", "https://tec.openplanner.team/stops/X802afb"], ["https://tec.openplanner.team/stops/LMOecsp1", "https://tec.openplanner.team/stops/LMOecsp2"], ["https://tec.openplanner.team/stops/H4te256b", "https://tec.openplanner.team/stops/H4te257a"], ["https://tec.openplanner.team/stops/X607aia", "https://tec.openplanner.team/stops/X647aaa"], ["https://tec.openplanner.team/stops/LrAalte2", "https://tec.openplanner.team/stops/LrAneus2"], ["https://tec.openplanner.team/stops/N204aca", "https://tec.openplanner.team/stops/N204acb"], ["https://tec.openplanner.team/stops/Lanfont1", "https://tec.openplanner.team/stops/Lannico4"], ["https://tec.openplanner.team/stops/N525agb", "https://tec.openplanner.team/stops/N525akb"], ["https://tec.openplanner.team/stops/LThchar1", "https://tec.openplanner.team/stops/LThgare2"], ["https://tec.openplanner.team/stops/X640ahb", "https://tec.openplanner.team/stops/X640ajb"], ["https://tec.openplanner.team/stops/LXobaty3", "https://tec.openplanner.team/stops/LXoroch1"], ["https://tec.openplanner.team/stops/H5rx101b", "https://tec.openplanner.team/stops/H5rx134b"], ["https://tec.openplanner.team/stops/X742afb", "https://tec.openplanner.team/stops/X742aga"], ["https://tec.openplanner.team/stops/H1sb151a", "https://tec.openplanner.team/stops/H1sb151b"], ["https://tec.openplanner.team/stops/LATcham*", "https://tec.openplanner.team/stops/LATcorn2"], ["https://tec.openplanner.team/stops/N501arc", "https://tec.openplanner.team/stops/N501cdb"], ["https://tec.openplanner.team/stops/Bwategb2", "https://tec.openplanner.team/stops/Bwatfva1"], ["https://tec.openplanner.team/stops/N351aaa", "https://tec.openplanner.team/stops/N351amb"], ["https://tec.openplanner.team/stops/H2me113a", "https://tec.openplanner.team/stops/H2me113b"], ["https://tec.openplanner.team/stops/Ldilyce*", "https://tec.openplanner.team/stops/Ldimont2"], ["https://tec.openplanner.team/stops/LVncarr1", "https://tec.openplanner.team/stops/LVncarr2"], ["https://tec.openplanner.team/stops/N127adb", "https://tec.openplanner.team/stops/N127aia"], ["https://tec.openplanner.team/stops/H4pq113b", "https://tec.openplanner.team/stops/H4pq116b"], ["https://tec.openplanner.team/stops/Bnivmfr2", "https://tec.openplanner.team/stops/Bnivsci2"], ["https://tec.openplanner.team/stops/X911aib", "https://tec.openplanner.team/stops/X911arb"], ["https://tec.openplanner.team/stops/X898aia", "https://tec.openplanner.team/stops/X898aib"], ["https://tec.openplanner.team/stops/X626aha", "https://tec.openplanner.team/stops/X626ala"], ["https://tec.openplanner.team/stops/N501ica", "https://tec.openplanner.team/stops/N501icz"], ["https://tec.openplanner.team/stops/H4lg101a", "https://tec.openplanner.team/stops/H4lg102a"], ["https://tec.openplanner.team/stops/Llgcita2", "https://tec.openplanner.team/stops/Llgelis1"], ["https://tec.openplanner.team/stops/Lvegend2", "https://tec.openplanner.team/stops/Lvejeha2"], ["https://tec.openplanner.team/stops/N254aeb", "https://tec.openplanner.team/stops/N254afb"], ["https://tec.openplanner.team/stops/LEBdoct2", "https://tec.openplanner.team/stops/LEMec--2"], ["https://tec.openplanner.team/stops/H1hv133a", "https://tec.openplanner.team/stops/H1hv136a"], ["https://tec.openplanner.team/stops/N501bja", "https://tec.openplanner.team/stops/N501brb"], ["https://tec.openplanner.team/stops/H1bi100a", "https://tec.openplanner.team/stops/H1bu140a"], ["https://tec.openplanner.team/stops/H1gr113a", "https://tec.openplanner.team/stops/H1gr115a"], ["https://tec.openplanner.team/stops/X641aob", "https://tec.openplanner.team/stops/X641apc"], ["https://tec.openplanner.team/stops/H1ch101a", "https://tec.openplanner.team/stops/H5ar102a"], ["https://tec.openplanner.team/stops/H1bn113a", "https://tec.openplanner.team/stops/H1bn114a"], ["https://tec.openplanner.team/stops/LHFhard1", "https://tec.openplanner.team/stops/LJedonc1"], ["https://tec.openplanner.team/stops/X806aab", "https://tec.openplanner.team/stops/X850ama"], ["https://tec.openplanner.team/stops/LLYcham1", "https://tec.openplanner.team/stops/LLYhoch1"], ["https://tec.openplanner.team/stops/N311afa", "https://tec.openplanner.team/stops/N312aba"], ["https://tec.openplanner.team/stops/Lsmsech3", "https://tec.openplanner.team/stops/Lsmsech4"], ["https://tec.openplanner.team/stops/Llgpier2", "https://tec.openplanner.team/stops/LlgPTAV3"], ["https://tec.openplanner.team/stops/LFothie2", "https://tec.openplanner.team/stops/LJAcham2"], ["https://tec.openplanner.team/stops/LBKmoes2", "https://tec.openplanner.team/stops/LBveg--1"], ["https://tec.openplanner.team/stops/X346ala", "https://tec.openplanner.team/stops/X346alb"], ["https://tec.openplanner.team/stops/X890abb", "https://tec.openplanner.team/stops/X890aca"], ["https://tec.openplanner.team/stops/N506ana", "https://tec.openplanner.team/stops/N506apb"], ["https://tec.openplanner.team/stops/LHUzoni2", "https://tec.openplanner.team/stops/LHUzoni3"], ["https://tec.openplanner.team/stops/Cfocmed1", "https://tec.openplanner.team/stops/Cfocmed2"], ["https://tec.openplanner.team/stops/N501czb", "https://tec.openplanner.team/stops/N528aga"], ["https://tec.openplanner.team/stops/H1he106b", "https://tec.openplanner.team/stops/H1he108a"], ["https://tec.openplanner.team/stops/X661ama", "https://tec.openplanner.team/stops/X661anb"], ["https://tec.openplanner.team/stops/LCsraws2", "https://tec.openplanner.team/stops/LVBsevr2"], ["https://tec.openplanner.team/stops/H1ne138b", "https://tec.openplanner.team/stops/H1ne150a"], ["https://tec.openplanner.team/stops/H1cu117b", "https://tec.openplanner.team/stops/H1cu123a"], ["https://tec.openplanner.team/stops/LVlleme4", "https://tec.openplanner.team/stops/LVlleno2"], ["https://tec.openplanner.team/stops/H1ha189b", "https://tec.openplanner.team/stops/H1ha200a"], ["https://tec.openplanner.team/stops/Cvlcen1", "https://tec.openplanner.team/stops/Cvlcen2"], ["https://tec.openplanner.team/stops/Cfopetr2", "https://tec.openplanner.team/stops/CMpetr2"], ["https://tec.openplanner.team/stops/LVEcacq2", "https://tec.openplanner.team/stops/LVEhali2"], ["https://tec.openplanner.team/stops/Brixpro1", "https://tec.openplanner.team/stops/Brixpro3"], ["https://tec.openplanner.team/stops/N236aha", "https://tec.openplanner.team/stops/N236aja"], ["https://tec.openplanner.team/stops/H4hx112a", "https://tec.openplanner.team/stops/H4hx112b"], ["https://tec.openplanner.team/stops/N170ada", "https://tec.openplanner.team/stops/N170aeb"], ["https://tec.openplanner.team/stops/Ctrrpla1", "https://tec.openplanner.team/stops/Ctrsema1"], ["https://tec.openplanner.team/stops/Lmocalv2", "https://tec.openplanner.team/stops/Lmomine1"], ["https://tec.openplanner.team/stops/Llgbwez1", "https://tec.openplanner.team/stops/Llgbwez2"], ["https://tec.openplanner.team/stops/Ccppn2", "https://tec.openplanner.team/stops/Ccpsecp1"], ["https://tec.openplanner.team/stops/Bbchgod1", "https://tec.openplanner.team/stops/Bbchgod2"], ["https://tec.openplanner.team/stops/X640afa", "https://tec.openplanner.team/stops/X640akb"], ["https://tec.openplanner.team/stops/H5rx110b", "https://tec.openplanner.team/stops/H5rx128b"], ["https://tec.openplanner.team/stops/Ccypn1", "https://tec.openplanner.team/stops/Csregli1"], ["https://tec.openplanner.team/stops/Lmnhorl3", "https://tec.openplanner.team/stops/Lvearle4"], ["https://tec.openplanner.team/stops/LAIchpl1", "https://tec.openplanner.team/stops/LAIrout2"], ["https://tec.openplanner.team/stops/Cblsall1", "https://tec.openplanner.team/stops/Cslegli2"], ["https://tec.openplanner.team/stops/LeLbegl1", "https://tec.openplanner.team/stops/LeLherz2"], ["https://tec.openplanner.team/stops/LFymare3", "https://tec.openplanner.team/stops/LWamass1"], ["https://tec.openplanner.team/stops/LHtdros1", "https://tec.openplanner.team/stops/LJAferm2"], ["https://tec.openplanner.team/stops/X945acb", "https://tec.openplanner.team/stops/X945ada"], ["https://tec.openplanner.team/stops/LSZclem1", "https://tec.openplanner.team/stops/LSZdepo2"], ["https://tec.openplanner.team/stops/X731aca", "https://tec.openplanner.team/stops/X731amb"], ["https://tec.openplanner.team/stops/LVLsabl1", "https://tec.openplanner.team/stops/LVLsabl4"], ["https://tec.openplanner.team/stops/H1gg145b", "https://tec.openplanner.team/stops/H1gg146b"], ["https://tec.openplanner.team/stops/X725aia", "https://tec.openplanner.team/stops/X725ajb"], ["https://tec.openplanner.team/stops/N106aba", "https://tec.openplanner.team/stops/N137acb"], ["https://tec.openplanner.team/stops/LAWxhen1", "https://tec.openplanner.team/stops/LAWxhen2"], ["https://tec.openplanner.team/stops/N110aab", "https://tec.openplanner.team/stops/N110abb"], ["https://tec.openplanner.team/stops/Bndbdra1", "https://tec.openplanner.team/stops/Bndbdra2"], ["https://tec.openplanner.team/stops/X925aib", "https://tec.openplanner.team/stops/X925aja"], ["https://tec.openplanner.team/stops/X359ama", "https://tec.openplanner.team/stops/X857aaa"], ["https://tec.openplanner.team/stops/Llgjoie4", "https://tec.openplanner.team/stops/Llgvero1"], ["https://tec.openplanner.team/stops/LRtcarr1", "https://tec.openplanner.team/stops/LRtmame2"], ["https://tec.openplanner.team/stops/LWHwaas3", "https://tec.openplanner.team/stops/LWSstat2"], ["https://tec.openplanner.team/stops/X782anb", "https://tec.openplanner.team/stops/X783acc"], ["https://tec.openplanner.team/stops/Bgrmver3", "https://tec.openplanner.team/stops/N522ara"], ["https://tec.openplanner.team/stops/H1ca106a", "https://tec.openplanner.team/stops/H1ca106c"], ["https://tec.openplanner.team/stops/N351arb", "https://tec.openplanner.team/stops/N351asa"], ["https://tec.openplanner.team/stops/X760aaa", "https://tec.openplanner.team/stops/X762ada"], ["https://tec.openplanner.team/stops/N550afa", "https://tec.openplanner.team/stops/N550akb"], ["https://tec.openplanner.team/stops/LMfpeni*", "https://tec.openplanner.team/stops/NL73abb"], ["https://tec.openplanner.team/stops/X757aaa", "https://tec.openplanner.team/stops/X757aba"], ["https://tec.openplanner.team/stops/LoUpete2", "https://tec.openplanner.team/stops/LsF39--1"], ["https://tec.openplanner.team/stops/Blemwro2", "https://tec.openplanner.team/stops/Btubcal1"], ["https://tec.openplanner.team/stops/X922amb", "https://tec.openplanner.team/stops/X941ahb"], ["https://tec.openplanner.team/stops/X734abb", "https://tec.openplanner.team/stops/X734acb"], ["https://tec.openplanner.team/stops/Lsecris3", "https://tec.openplanner.team/stops/Lsevico1"], ["https://tec.openplanner.team/stops/H4ga154a", "https://tec.openplanner.team/stops/H4ga163b"], ["https://tec.openplanner.team/stops/LWDhous2", "https://tec.openplanner.team/stops/LWDsott3"], ["https://tec.openplanner.team/stops/LSCc39-1", "https://tec.openplanner.team/stops/LVMborl1"], ["https://tec.openplanner.team/stops/X616aca", "https://tec.openplanner.team/stops/X616aia"], ["https://tec.openplanner.team/stops/N514aga", "https://tec.openplanner.team/stops/N515apb"], ["https://tec.openplanner.team/stops/H5bl116b", "https://tec.openplanner.team/stops/H5bl143b"], ["https://tec.openplanner.team/stops/Ljudeme4", "https://tec.openplanner.team/stops/Ljuhava2"], ["https://tec.openplanner.team/stops/LVBbvin", "https://tec.openplanner.team/stops/LVBdela1"], ["https://tec.openplanner.team/stops/LWNfani1", "https://tec.openplanner.team/stops/LWNfani2"], ["https://tec.openplanner.team/stops/LCIcent2", "https://tec.openplanner.team/stops/LCIneuv2"], ["https://tec.openplanner.team/stops/X850adb", "https://tec.openplanner.team/stops/X850aea"], ["https://tec.openplanner.team/stops/LCUmars1", "https://tec.openplanner.team/stops/NL57ama"], ["https://tec.openplanner.team/stops/H4ce107b", "https://tec.openplanner.team/stops/H4or113a"], ["https://tec.openplanner.team/stops/LOMdodi1", "https://tec.openplanner.team/stops/LOMdodi2"], ["https://tec.openplanner.team/stops/Barcpre2", "https://tec.openplanner.team/stops/Bgzdgli2"], ["https://tec.openplanner.team/stops/N201aub", "https://tec.openplanner.team/stops/N236abb"], ["https://tec.openplanner.team/stops/Bblaniv2", "https://tec.openplanner.team/stops/Bwatmsj8"], ["https://tec.openplanner.team/stops/H4pi133b", "https://tec.openplanner.team/stops/H4pi135a"], ["https://tec.openplanner.team/stops/Bhancom1", "https://tec.openplanner.team/stops/LHNtill2"], ["https://tec.openplanner.team/stops/Bsjgegl1", "https://tec.openplanner.team/stops/Bsjgmil1"], ["https://tec.openplanner.team/stops/Cgrchfe2", "https://tec.openplanner.team/stops/NC02bbb"], ["https://tec.openplanner.team/stops/H4pq119a", "https://tec.openplanner.team/stops/H4sl154a"], ["https://tec.openplanner.team/stops/N501dob", "https://tec.openplanner.team/stops/N501ena"], ["https://tec.openplanner.team/stops/Btlgast2", "https://tec.openplanner.team/stops/Btlgfto2"], ["https://tec.openplanner.team/stops/Lhubarl1", "https://tec.openplanner.team/stops/Ljhmany1"], ["https://tec.openplanner.team/stops/X782aha", "https://tec.openplanner.team/stops/X782aib"], ["https://tec.openplanner.team/stops/LVSpn--1", "https://tec.openplanner.team/stops/LVStige1"], ["https://tec.openplanner.team/stops/Lhrathe2", "https://tec.openplanner.team/stops/Lhrferr1"], ["https://tec.openplanner.team/stops/LMfpeni*", "https://tec.openplanner.team/stops/LMfsart2"], ["https://tec.openplanner.team/stops/X661aka", "https://tec.openplanner.team/stops/X661arc"], ["https://tec.openplanner.team/stops/N151ajb", "https://tec.openplanner.team/stops/N151aje"], ["https://tec.openplanner.team/stops/H4pe125b", "https://tec.openplanner.team/stops/H4pe126b"], ["https://tec.openplanner.team/stops/Bgembhe2", "https://tec.openplanner.team/stops/N576aca"], ["https://tec.openplanner.team/stops/NH21adb", "https://tec.openplanner.team/stops/NH21aeb"], ["https://tec.openplanner.team/stops/H1sy137a", "https://tec.openplanner.team/stops/H1sy137d"], ["https://tec.openplanner.team/stops/LSHhade2", "https://tec.openplanner.team/stops/LSHneuv2"], ["https://tec.openplanner.team/stops/X808abc", "https://tec.openplanner.team/stops/X808aea"], ["https://tec.openplanner.team/stops/N321afa", "https://tec.openplanner.team/stops/N367adb"], ["https://tec.openplanner.team/stops/Llglibo3", "https://tec.openplanner.team/stops/Llgptlo4"], ["https://tec.openplanner.team/stops/Cgytrie2", "https://tec.openplanner.team/stops/CMsartc2"], ["https://tec.openplanner.team/stops/X601cfa", "https://tec.openplanner.team/stops/X601cga"], ["https://tec.openplanner.team/stops/Cctsold1", "https://tec.openplanner.team/stops/Cctvict1"], ["https://tec.openplanner.team/stops/LSLprov2", "https://tec.openplanner.team/stops/LSLvaux2"], ["https://tec.openplanner.team/stops/LAmeclu1", "https://tec.openplanner.team/stops/LAmwaut2"], ["https://tec.openplanner.team/stops/LVTforg1", "https://tec.openplanner.team/stops/LVTforg2"], ["https://tec.openplanner.team/stops/H4mo155a", "https://tec.openplanner.team/stops/H4mo155b"], ["https://tec.openplanner.team/stops/X979acb", "https://tec.openplanner.team/stops/X979aeb"], ["https://tec.openplanner.team/stops/Bflccav2", "https://tec.openplanner.team/stops/NR30aab"], ["https://tec.openplanner.team/stops/X892ahb", "https://tec.openplanner.team/stops/X892ajb"], ["https://tec.openplanner.team/stops/Lsmh3021", "https://tec.openplanner.team/stops/LSubass2"], ["https://tec.openplanner.team/stops/N501iey", "https://tec.openplanner.team/stops/N501iqb"], ["https://tec.openplanner.team/stops/N244aab", "https://tec.openplanner.team/stops/N244abb"], ["https://tec.openplanner.team/stops/Bsaupco1", "https://tec.openplanner.team/stops/N541aab"], ["https://tec.openplanner.team/stops/LPbec--1", "https://tec.openplanner.team/stops/LPbusin2"], ["https://tec.openplanner.team/stops/H1ca101a", "https://tec.openplanner.team/stops/H1ca109a"], ["https://tec.openplanner.team/stops/Ljubods1", "https://tec.openplanner.team/stops/Ljumiux1"], ["https://tec.openplanner.team/stops/X902bfa", "https://tec.openplanner.team/stops/X902bfb"], ["https://tec.openplanner.team/stops/H4te255a", "https://tec.openplanner.team/stops/H4te255b"], ["https://tec.openplanner.team/stops/X715aaa", "https://tec.openplanner.team/stops/X781ada"], ["https://tec.openplanner.team/stops/LBGcent2", "https://tec.openplanner.team/stops/LPUchpl1"], ["https://tec.openplanner.team/stops/N529aba", "https://tec.openplanner.team/stops/N529abb"], ["https://tec.openplanner.team/stops/LBabeco3", "https://tec.openplanner.team/stops/LBapepi4"], ["https://tec.openplanner.team/stops/Cchba12", "https://tec.openplanner.team/stops/Cchoues4"], ["https://tec.openplanner.team/stops/LONcroi1", "https://tec.openplanner.team/stops/LONcroi2"], ["https://tec.openplanner.team/stops/X615aha", "https://tec.openplanner.team/stops/X615asa"], ["https://tec.openplanner.team/stops/Csdbosq1", "https://tec.openplanner.team/stops/Csdbosq2"], ["https://tec.openplanner.team/stops/Csdfboi2", "https://tec.openplanner.team/stops/Csdnive2"], ["https://tec.openplanner.team/stops/X898aka", "https://tec.openplanner.team/stops/X898ana"], ["https://tec.openplanner.team/stops/X741ala", "https://tec.openplanner.team/stops/X741anb"], ["https://tec.openplanner.team/stops/Ljerouy2", "https://tec.openplanner.team/stops/Ljetout4"], ["https://tec.openplanner.team/stops/X922aaa", "https://tec.openplanner.team/stops/X922aeb"], ["https://tec.openplanner.team/stops/X762aba", "https://tec.openplanner.team/stops/X763aaa"], ["https://tec.openplanner.team/stops/N244ara", "https://tec.openplanner.team/stops/N244asb"], ["https://tec.openplanner.team/stops/X820aha", "https://tec.openplanner.team/stops/X820aia"], ["https://tec.openplanner.team/stops/Cdogrro1", "https://tec.openplanner.team/stops/Cdostco2"], ["https://tec.openplanner.team/stops/Ljecocc1", "https://tec.openplanner.team/stops/Ljexhav4"], ["https://tec.openplanner.team/stops/H5at133b", "https://tec.openplanner.team/stops/H5at142b"], ["https://tec.openplanner.team/stops/LBkcare*", "https://tec.openplanner.team/stops/LBkdahl1"], ["https://tec.openplanner.team/stops/X897axb", "https://tec.openplanner.team/stops/X904ada"], ["https://tec.openplanner.team/stops/LWRbois1", "https://tec.openplanner.team/stops/LWRvert2"], ["https://tec.openplanner.team/stops/X660aja", "https://tec.openplanner.team/stops/X672ahb"], ["https://tec.openplanner.team/stops/LWOunio1", "https://tec.openplanner.team/stops/LWOunio2"], ["https://tec.openplanner.team/stops/LTyh24-1", "https://tec.openplanner.team/stops/LTyh51-1"], ["https://tec.openplanner.team/stops/X986afa", "https://tec.openplanner.team/stops/X986ala"], ["https://tec.openplanner.team/stops/LSzeg--2", "https://tec.openplanner.team/stops/LSzetoi2"], ["https://tec.openplanner.team/stops/LAuchau1", "https://tec.openplanner.team/stops/LMubras2"], ["https://tec.openplanner.team/stops/N235aab", "https://tec.openplanner.team/stops/N235abb"], ["https://tec.openplanner.team/stops/N538asc", "https://tec.openplanner.team/stops/N538atb"], ["https://tec.openplanner.team/stops/X746adb", "https://tec.openplanner.team/stops/X746aia"], ["https://tec.openplanner.team/stops/H4lg103b", "https://tec.openplanner.team/stops/H4lg106a"], ["https://tec.openplanner.team/stops/Bquecar1", "https://tec.openplanner.team/stops/Bquegob4"], ["https://tec.openplanner.team/stops/H1bo100b", "https://tec.openplanner.team/stops/H1bo145b"], ["https://tec.openplanner.team/stops/Lvcfogu1", "https://tec.openplanner.team/stops/Lvcfogu4"], ["https://tec.openplanner.team/stops/Cfrcoqu4", "https://tec.openplanner.team/stops/Cfrgare2"], ["https://tec.openplanner.team/stops/Blemhon2", "https://tec.openplanner.team/stops/Blempuc2"], ["https://tec.openplanner.team/stops/Lemarde2", "https://tec.openplanner.team/stops/Lemcort1"], ["https://tec.openplanner.team/stops/X899aca", "https://tec.openplanner.team/stops/X899acb"], ["https://tec.openplanner.team/stops/N117aua", "https://tec.openplanner.team/stops/N117aub"], ["https://tec.openplanner.team/stops/LHFcaqu1", "https://tec.openplanner.team/stops/LHFcaqu2"], ["https://tec.openplanner.team/stops/X731abb", "https://tec.openplanner.team/stops/X731aja"], ["https://tec.openplanner.team/stops/Cmyedpa2", "https://tec.openplanner.team/stops/Cmymarb2"], ["https://tec.openplanner.team/stops/Cfamonu1", "https://tec.openplanner.team/stops/Cfamonu8"], ["https://tec.openplanner.team/stops/X601ccb", "https://tec.openplanner.team/stops/X602ahb"], ["https://tec.openplanner.team/stops/NC24aab", "https://tec.openplanner.team/stops/NC24akb"], ["https://tec.openplanner.team/stops/LClange2", "https://tec.openplanner.team/stops/LFdbruy2"], ["https://tec.openplanner.team/stops/Blasren2", "https://tec.openplanner.team/stops/Brixroi2"], ["https://tec.openplanner.team/stops/N351aga", "https://tec.openplanner.team/stops/X351abb"], ["https://tec.openplanner.team/stops/N117aba", "https://tec.openplanner.team/stops/N145aib"], ["https://tec.openplanner.team/stops/H2mm140b", "https://tec.openplanner.team/stops/H2mm144b"], ["https://tec.openplanner.team/stops/X813aaa", "https://tec.openplanner.team/stops/X857aaa"], ["https://tec.openplanner.team/stops/X661aoa", "https://tec.openplanner.team/stops/X839aca"], ["https://tec.openplanner.team/stops/N523abb", "https://tec.openplanner.team/stops/N523aca"], ["https://tec.openplanner.team/stops/X804aga", "https://tec.openplanner.team/stops/X804aka"], ["https://tec.openplanner.team/stops/LBseg--1", "https://tec.openplanner.team/stops/LBseg--2"], ["https://tec.openplanner.team/stops/Bclgfva1", "https://tec.openplanner.team/stops/Bdvmtve2"], ["https://tec.openplanner.team/stops/LeSdorf1", "https://tec.openplanner.team/stops/LmAgruf2"], ["https://tec.openplanner.team/stops/X775aeb", "https://tec.openplanner.team/stops/X775agb"], ["https://tec.openplanner.team/stops/N557aad", "https://tec.openplanner.team/stops/N557afb"], ["https://tec.openplanner.team/stops/N543cpa", "https://tec.openplanner.team/stops/N543cpb"], ["https://tec.openplanner.team/stops/N248aba", "https://tec.openplanner.team/stops/N248aca"], ["https://tec.openplanner.team/stops/X773aca", "https://tec.openplanner.team/stops/X911aob"], ["https://tec.openplanner.team/stops/Clpnapo1", "https://tec.openplanner.team/stops/Clpsola1"], ["https://tec.openplanner.team/stops/LToluik2", "https://tec.openplanner.team/stops/LTowijk1"], ["https://tec.openplanner.team/stops/Csbrago1", "https://tec.openplanner.team/stops/H1bi104b"], ["https://tec.openplanner.team/stops/N528agb", "https://tec.openplanner.team/stops/N528aoa"], ["https://tec.openplanner.team/stops/N531adb", "https://tec.openplanner.team/stops/N531afh"], ["https://tec.openplanner.team/stops/X607aab", "https://tec.openplanner.team/stops/X607aba"], ["https://tec.openplanner.team/stops/X773aha", "https://tec.openplanner.team/stops/X773ahb"], ["https://tec.openplanner.team/stops/H4mt219a", "https://tec.openplanner.team/stops/H4mt219b"], ["https://tec.openplanner.team/stops/N103aaa", "https://tec.openplanner.team/stops/N131afb"], ["https://tec.openplanner.team/stops/H1ms289b", "https://tec.openplanner.team/stops/H1ms290a"], ["https://tec.openplanner.team/stops/X769aba", "https://tec.openplanner.team/stops/X769apb"], ["https://tec.openplanner.team/stops/X664aoa", "https://tec.openplanner.team/stops/X729aca"], ["https://tec.openplanner.team/stops/Bcsgcou1", "https://tec.openplanner.team/stops/Blasbh52"], ["https://tec.openplanner.team/stops/X672aab", "https://tec.openplanner.team/stops/X672aba"], ["https://tec.openplanner.team/stops/X611ada", "https://tec.openplanner.team/stops/X646aca"], ["https://tec.openplanner.team/stops/Cgoloca1", "https://tec.openplanner.team/stops/Cjuaero1"], ["https://tec.openplanner.team/stops/Bcrnnra2", "https://tec.openplanner.team/stops/Bernpla1"], ["https://tec.openplanner.team/stops/Lbocruc2", "https://tec.openplanner.team/stops/Lsebonc2"], ["https://tec.openplanner.team/stops/Cvpbifu1", "https://tec.openplanner.team/stops/Cvpsawe1"], ["https://tec.openplanner.team/stops/H3so157b", "https://tec.openplanner.team/stops/H3so178b"], ["https://tec.openplanner.team/stops/Cna6che1", "https://tec.openplanner.team/stops/Cnafont2"], ["https://tec.openplanner.team/stops/Cfachap2", "https://tec.openplanner.team/stops/Cfanoci1"], ["https://tec.openplanner.team/stops/LSkchwa2", "https://tec.openplanner.team/stops/LSkwarf3"], ["https://tec.openplanner.team/stops/NL57aka", "https://tec.openplanner.team/stops/NL68abb"], ["https://tec.openplanner.team/stops/N874aja", "https://tec.openplanner.team/stops/N874ama"], ["https://tec.openplanner.team/stops/Bhmmgar1", "https://tec.openplanner.team/stops/Bhmmmon1"], ["https://tec.openplanner.team/stops/N140aaa", "https://tec.openplanner.team/stops/N146afa"], ["https://tec.openplanner.team/stops/LOlvill1", "https://tec.openplanner.team/stops/LOmpont2"], ["https://tec.openplanner.team/stops/Llgarmu1", "https://tec.openplanner.team/stops/Llgarmu3"], ["https://tec.openplanner.team/stops/LLrcour2", "https://tec.openplanner.team/stops/LLrfrai1"], ["https://tec.openplanner.team/stops/Causart1", "https://tec.openplanner.team/stops/Causart2"], ["https://tec.openplanner.team/stops/LHUecte1", "https://tec.openplanner.team/stops/LHUlieg1"], ["https://tec.openplanner.team/stops/LPLarbo1", "https://tec.openplanner.team/stops/LPLarbo2"], ["https://tec.openplanner.team/stops/X837aaa", "https://tec.openplanner.team/stops/X837aab"], ["https://tec.openplanner.team/stops/H1br127b", "https://tec.openplanner.team/stops/H1ha183a"], ["https://tec.openplanner.team/stops/X769apa", "https://tec.openplanner.team/stops/X769aqa"], ["https://tec.openplanner.team/stops/Bhalath1", "https://tec.openplanner.team/stops/Bhalgar1"], ["https://tec.openplanner.team/stops/Llgbatt1", "https://tec.openplanner.team/stops/Llgcamp1"], ["https://tec.openplanner.team/stops/Cctjust1", "https://tec.openplanner.team/stops/Cctrjus1"], ["https://tec.openplanner.team/stops/Bdvmc431", "https://tec.openplanner.team/stops/Bdvmsar2"], ["https://tec.openplanner.team/stops/LRGchap2", "https://tec.openplanner.team/stops/LRGeg--1"], ["https://tec.openplanner.team/stops/X640anb", "https://tec.openplanner.team/stops/X640aoa"], ["https://tec.openplanner.team/stops/N503aba", "https://tec.openplanner.team/stops/N509bda"], ["https://tec.openplanner.team/stops/Bincbbo3", "https://tec.openplanner.team/stops/Binccha1"], ["https://tec.openplanner.team/stops/LCljose1", "https://tec.openplanner.team/stops/LFdbruy1"], ["https://tec.openplanner.team/stops/H1cv101a", "https://tec.openplanner.team/stops/H5me105a"], ["https://tec.openplanner.team/stops/H4gr111b", "https://tec.openplanner.team/stops/H4ld129b"], ["https://tec.openplanner.team/stops/N501fjd", "https://tec.openplanner.team/stops/N501meb"], ["https://tec.openplanner.team/stops/Bovevri1", "https://tec.openplanner.team/stops/Bovevri2"], ["https://tec.openplanner.team/stops/LBSchpl2", "https://tec.openplanner.team/stops/LBSvi522"], ["https://tec.openplanner.team/stops/LNveg--2", "https://tec.openplanner.team/stops/LNvrout1"], ["https://tec.openplanner.team/stops/N539aia", "https://tec.openplanner.team/stops/N539apb"], ["https://tec.openplanner.team/stops/H4ty296a", "https://tec.openplanner.team/stops/H4ty379a"], ["https://tec.openplanner.team/stops/H4bd109a", "https://tec.openplanner.team/stops/H4te257b"], ["https://tec.openplanner.team/stops/H4lu125a", "https://tec.openplanner.team/stops/H4mo142d"], ["https://tec.openplanner.team/stops/Brebgar1", "https://tec.openplanner.team/stops/Brebrha1"], ["https://tec.openplanner.team/stops/H2mo119b", "https://tec.openplanner.team/stops/H2mo123a"], ["https://tec.openplanner.team/stops/X346afa", "https://tec.openplanner.team/stops/X346alb"], ["https://tec.openplanner.team/stops/X836aea", "https://tec.openplanner.team/stops/X836aib"], ["https://tec.openplanner.team/stops/LeUath%C3%A41", "https://tec.openplanner.team/stops/LeUrsi-*"], ["https://tec.openplanner.team/stops/LWazoni1", "https://tec.openplanner.team/stops/LWazoni2"], ["https://tec.openplanner.team/stops/H2sb235a", "https://tec.openplanner.team/stops/H2sb235b"], ["https://tec.openplanner.team/stops/H1cu113a", "https://tec.openplanner.team/stops/H1hn206a"], ["https://tec.openplanner.team/stops/H1po132b", "https://tec.openplanner.team/stops/H1po137b"], ["https://tec.openplanner.team/stops/H4ar178a", "https://tec.openplanner.team/stops/H4pl136a"], ["https://tec.openplanner.team/stops/LFsconc1", "https://tec.openplanner.team/stops/LFsconc2"], ["https://tec.openplanner.team/stops/N534cbg", "https://tec.openplanner.team/stops/N534cbh"], ["https://tec.openplanner.team/stops/Lligara2", "https://tec.openplanner.team/stops/Lvopaqu2"], ["https://tec.openplanner.team/stops/Cdagoss1", "https://tec.openplanner.team/stops/Cmabegh2"], ["https://tec.openplanner.team/stops/LeLcrem1", "https://tec.openplanner.team/stops/LwYbrkr1"], ["https://tec.openplanner.team/stops/H2na135a", "https://tec.openplanner.team/stops/H3so170b"], ["https://tec.openplanner.team/stops/X836aaa", "https://tec.openplanner.team/stops/X837aha"], ["https://tec.openplanner.team/stops/LcRkirc2", "https://tec.openplanner.team/stops/LcRmich2"], ["https://tec.openplanner.team/stops/LaMhe831", "https://tec.openplanner.team/stops/LmDkoel1"], ["https://tec.openplanner.team/stops/LeLcrem1", "https://tec.openplanner.team/stops/LSoprom1"], ["https://tec.openplanner.team/stops/X601bja", "https://tec.openplanner.team/stops/X601dia"], ["https://tec.openplanner.team/stops/H1hl127a", "https://tec.openplanner.team/stops/H1hl128a"], ["https://tec.openplanner.team/stops/N540ama", "https://tec.openplanner.team/stops/N540ana"], ["https://tec.openplanner.team/stops/H1gg145a", "https://tec.openplanner.team/stops/H1ry136a"], ["https://tec.openplanner.team/stops/Cbtgemi2", "https://tec.openplanner.team/stops/Csdetan1"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LCxross2"], ["https://tec.openplanner.team/stops/LHYdogn1", "https://tec.openplanner.team/stops/LHYnoid1"], ["https://tec.openplanner.team/stops/LJEerno1", "https://tec.openplanner.team/stops/LJEloum2"], ["https://tec.openplanner.team/stops/N506aaa", "https://tec.openplanner.team/stops/N506aga"], ["https://tec.openplanner.team/stops/Bpelegl2", "https://tec.openplanner.team/stops/Bpelf962"], ["https://tec.openplanner.team/stops/Bhevgar1", "https://tec.openplanner.team/stops/Bhevhha2"], ["https://tec.openplanner.team/stops/Btancnd1", "https://tec.openplanner.team/stops/Btancre1"], ["https://tec.openplanner.team/stops/X637aga", "https://tec.openplanner.team/stops/X637agc"], ["https://tec.openplanner.team/stops/N501gea", "https://tec.openplanner.team/stops/N501lpa"], ["https://tec.openplanner.team/stops/LBPboir1", "https://tec.openplanner.team/stops/LBPrueg1"], ["https://tec.openplanner.team/stops/H1ls129a", "https://tec.openplanner.team/stops/H1ls130a"], ["https://tec.openplanner.team/stops/Cjumarc3", "https://tec.openplanner.team/stops/Cjupuis1"], ["https://tec.openplanner.team/stops/Canh1941", "https://tec.openplanner.team/stops/Canrobe1"], ["https://tec.openplanner.team/stops/Bottcpl2", "https://tec.openplanner.team/stops/Bottpre2"], ["https://tec.openplanner.team/stops/Lrcastr1", "https://tec.openplanner.team/stops/Lrcastr2"], ["https://tec.openplanner.team/stops/H4ca120a", "https://tec.openplanner.team/stops/H4ca121b"], ["https://tec.openplanner.team/stops/N114aab", "https://tec.openplanner.team/stops/X318aca"], ["https://tec.openplanner.team/stops/X775agb", "https://tec.openplanner.team/stops/X775ana"], ["https://tec.openplanner.team/stops/LBrneli2", "https://tec.openplanner.team/stops/LMAwavr2"], ["https://tec.openplanner.team/stops/Lanrois1", "https://tec.openplanner.team/stops/Lanrois2"], ["https://tec.openplanner.team/stops/X834aca", "https://tec.openplanner.team/stops/X834adb"], ["https://tec.openplanner.team/stops/N229aab", "https://tec.openplanner.team/stops/N270agb"], ["https://tec.openplanner.team/stops/H4os223a", "https://tec.openplanner.team/stops/H5wo132b"], ["https://tec.openplanner.team/stops/H2ca115a", "https://tec.openplanner.team/stops/H2ca116b"], ["https://tec.openplanner.team/stops/LBCaube1", "https://tec.openplanner.team/stops/LBJchau*"], ["https://tec.openplanner.team/stops/H4me213b", "https://tec.openplanner.team/stops/H4mt221a"], ["https://tec.openplanner.team/stops/LBIpont2", "https://tec.openplanner.team/stops/LFOchpl2"], ["https://tec.openplanner.team/stops/H1ho131a", "https://tec.openplanner.team/stops/H1ho131b"], ["https://tec.openplanner.team/stops/X664aca", "https://tec.openplanner.team/stops/X664acb"], ["https://tec.openplanner.team/stops/N543bmb", "https://tec.openplanner.team/stops/NC23agb"], ["https://tec.openplanner.team/stops/Cmlgoff2", "https://tec.openplanner.team/stops/Cmltomb1"], ["https://tec.openplanner.team/stops/Bblaast1", "https://tec.openplanner.team/stops/Bblavba1"], ["https://tec.openplanner.team/stops/N538ara", "https://tec.openplanner.team/stops/N538arb"], ["https://tec.openplanner.team/stops/Cchmonu3", "https://tec.openplanner.team/stops/Cchmonu4"], ["https://tec.openplanner.team/stops/Bbststa1", "https://tec.openplanner.team/stops/Blpglon2"], ["https://tec.openplanner.team/stops/X982abb", "https://tec.openplanner.team/stops/X982aka"], ["https://tec.openplanner.team/stops/Lghlieg1", "https://tec.openplanner.team/stops/Lghraul1"], ["https://tec.openplanner.team/stops/H1er111a", "https://tec.openplanner.team/stops/H1er111b"], ["https://tec.openplanner.team/stops/N539ada", "https://tec.openplanner.team/stops/N539alb"], ["https://tec.openplanner.team/stops/LJeeg--1", "https://tec.openplanner.team/stops/LJeeg--2"], ["https://tec.openplanner.team/stops/X727ada", "https://tec.openplanner.team/stops/X727aea"], ["https://tec.openplanner.team/stops/NL37aia", "https://tec.openplanner.team/stops/NL37aib"], ["https://tec.openplanner.team/stops/N548agc", "https://tec.openplanner.team/stops/N569anb"], ["https://tec.openplanner.team/stops/Bitreco1", "https://tec.openplanner.team/stops/Bitreco2"], ["https://tec.openplanner.team/stops/Blmlcle1", "https://tec.openplanner.team/stops/Blmlmco2"], ["https://tec.openplanner.team/stops/Lhuecol1", "https://tec.openplanner.team/stops/Lmnhorl1"], ["https://tec.openplanner.team/stops/LARparc2", "https://tec.openplanner.team/stops/LVIpneu2"], ["https://tec.openplanner.team/stops/N222aaa", "https://tec.openplanner.team/stops/N222aba"], ["https://tec.openplanner.team/stops/N532aga", "https://tec.openplanner.team/stops/N532anb"], ["https://tec.openplanner.team/stops/Lsecris1", "https://tec.openplanner.team/stops/Lsecris2"], ["https://tec.openplanner.team/stops/N506aka", "https://tec.openplanner.team/stops/N506amb"], ["https://tec.openplanner.team/stops/LRGderr1", "https://tec.openplanner.team/stops/LRGpt5-3"], ["https://tec.openplanner.team/stops/H5is168b", "https://tec.openplanner.team/stops/H5is169b"], ["https://tec.openplanner.team/stops/LEN42--1", "https://tec.openplanner.team/stops/LENindu2"], ["https://tec.openplanner.team/stops/X363abb", "https://tec.openplanner.team/stops/X363acb"], ["https://tec.openplanner.team/stops/X939abb", "https://tec.openplanner.team/stops/X939acb"], ["https://tec.openplanner.team/stops/H5at111b", "https://tec.openplanner.team/stops/H5at115b"], ["https://tec.openplanner.team/stops/NB33aka", "https://tec.openplanner.team/stops/NB33alb"], ["https://tec.openplanner.team/stops/Canbruy2", "https://tec.openplanner.team/stops/Canegbr2"], ["https://tec.openplanner.team/stops/Bnivgam2", "https://tec.openplanner.team/stops/Bnivsoi1"], ["https://tec.openplanner.team/stops/X601ana", "https://tec.openplanner.team/stops/X601cea"], ["https://tec.openplanner.team/stops/N503abb", "https://tec.openplanner.team/stops/N509bda"], ["https://tec.openplanner.team/stops/Cfmgrmo2", "https://tec.openplanner.team/stops/Cfmmart1"], ["https://tec.openplanner.team/stops/X982aaa", "https://tec.openplanner.team/stops/X982bsb"], ["https://tec.openplanner.team/stops/H1po130a", "https://tec.openplanner.team/stops/H1po154a"], ["https://tec.openplanner.team/stops/Cci4bra2", "https://tec.openplanner.team/stops/NC02apa"], ["https://tec.openplanner.team/stops/LMFmerl1", "https://tec.openplanner.team/stops/LMFmoul1"], ["https://tec.openplanner.team/stops/N390adb", "https://tec.openplanner.team/stops/N390aea"], ["https://tec.openplanner.team/stops/X812ara", "https://tec.openplanner.team/stops/X812asa"], ["https://tec.openplanner.team/stops/X767aib", "https://tec.openplanner.team/stops/X768aab"], ["https://tec.openplanner.team/stops/Btgrdoc1", "https://tec.openplanner.team/stops/N584aea"], ["https://tec.openplanner.team/stops/X783aaa", "https://tec.openplanner.team/stops/X783aba"], ["https://tec.openplanner.team/stops/N571ajb", "https://tec.openplanner.team/stops/N571akb"], ["https://tec.openplanner.team/stops/H2se113a", "https://tec.openplanner.team/stops/H2se114b"], ["https://tec.openplanner.team/stops/X659aqa", "https://tec.openplanner.team/stops/X659aqb"], ["https://tec.openplanner.team/stops/Bwatmco1", "https://tec.openplanner.team/stops/Bwatmco2"], ["https://tec.openplanner.team/stops/X615beb", "https://tec.openplanner.team/stops/X695aaa"], ["https://tec.openplanner.team/stops/LMEense1", "https://tec.openplanner.team/stops/LMEwerg2"], ["https://tec.openplanner.team/stops/H1eo105a", "https://tec.openplanner.team/stops/H1mj128b"], ["https://tec.openplanner.team/stops/X735aab", "https://tec.openplanner.team/stops/X736ada"], ["https://tec.openplanner.team/stops/H1as101b", "https://tec.openplanner.team/stops/H1mv240b"], ["https://tec.openplanner.team/stops/LLrpape1", "https://tec.openplanner.team/stops/LLrpape2"], ["https://tec.openplanner.team/stops/H2be101a", "https://tec.openplanner.team/stops/H2mg137a"], ["https://tec.openplanner.team/stops/H1cd112a", "https://tec.openplanner.team/stops/H1ne149a"], ["https://tec.openplanner.team/stops/X623aba", "https://tec.openplanner.team/stops/X623adb"], ["https://tec.openplanner.team/stops/LNCecdo1", "https://tec.openplanner.team/stops/LPLc65-1"], ["https://tec.openplanner.team/stops/X899aba", "https://tec.openplanner.team/stops/X899ahb"], ["https://tec.openplanner.team/stops/LOV48--1", "https://tec.openplanner.team/stops/LOV62--1"], ["https://tec.openplanner.team/stops/X953afa", "https://tec.openplanner.team/stops/X954afb"], ["https://tec.openplanner.team/stops/Bohnbra1", "https://tec.openplanner.team/stops/Bohnrsc1"], ["https://tec.openplanner.team/stops/N221aaa", "https://tec.openplanner.team/stops/X221aac"], ["https://tec.openplanner.team/stops/Lveabat1", "https://tec.openplanner.team/stops/Lvehoug2"], ["https://tec.openplanner.team/stops/LOTsav-2", "https://tec.openplanner.team/stops/LOTtong1"], ["https://tec.openplanner.team/stops/NL68aea", "https://tec.openplanner.team/stops/NL68aeb"], ["https://tec.openplanner.team/stops/Cmomoul3", "https://tec.openplanner.team/stops/Cmomoul4"], ["https://tec.openplanner.team/stops/Bnilwal2", "https://tec.openplanner.team/stops/Bwsppos1"], ["https://tec.openplanner.team/stops/LAYfoot1", "https://tec.openplanner.team/stops/LFLcarr1"], ["https://tec.openplanner.team/stops/LBlchin2", "https://tec.openplanner.team/stops/LBlhaut1"], ["https://tec.openplanner.team/stops/LOTawan2", "https://tec.openplanner.team/stops/LOTcloe1"], ["https://tec.openplanner.team/stops/X634acb", "https://tec.openplanner.team/stops/X634ala"], ["https://tec.openplanner.team/stops/LHNcoll1", "https://tec.openplanner.team/stops/LHNcreh1"], ["https://tec.openplanner.team/stops/N544ada", "https://tec.openplanner.team/stops/N544aeb"], ["https://tec.openplanner.team/stops/N118ava", "https://tec.openplanner.team/stops/N118bba"], ["https://tec.openplanner.team/stops/NH01ala", "https://tec.openplanner.team/stops/NH01apa"], ["https://tec.openplanner.team/stops/N212atb", "https://tec.openplanner.team/stops/N213aca"], ["https://tec.openplanner.team/stops/X801caa", "https://tec.openplanner.team/stops/X801clb"], ["https://tec.openplanner.team/stops/X811ana", "https://tec.openplanner.team/stops/X811anb"], ["https://tec.openplanner.team/stops/X765aaa", "https://tec.openplanner.team/stops/X765abb"], ["https://tec.openplanner.team/stops/X654aib", "https://tec.openplanner.team/stops/X654aka"], ["https://tec.openplanner.team/stops/H4pq119a", "https://tec.openplanner.team/stops/H4wg122b"], ["https://tec.openplanner.team/stops/X999aaa", "https://tec.openplanner.team/stops/X999aba"], ["https://tec.openplanner.team/stops/Lbocomm1", "https://tec.openplanner.team/stops/Lstchu-4"], ["https://tec.openplanner.team/stops/N135aga", "https://tec.openplanner.team/stops/N135atb"], ["https://tec.openplanner.team/stops/Bixlaca2", "https://tec.openplanner.team/stops/Buccgob2"], ["https://tec.openplanner.team/stops/Cfvombo2", "https://tec.openplanner.team/stops/Cfvplac1"], ["https://tec.openplanner.team/stops/LaRkape2", "https://tec.openplanner.team/stops/LnUcamp2"], ["https://tec.openplanner.team/stops/Bbldvaa1", "https://tec.openplanner.team/stops/Bbldvaa2"], ["https://tec.openplanner.team/stops/LRtcarr2", "https://tec.openplanner.team/stops/LRteg--*"], ["https://tec.openplanner.team/stops/N214ada", "https://tec.openplanner.team/stops/N214adb"], ["https://tec.openplanner.team/stops/LREairp2", "https://tec.openplanner.team/stops/LREchal2"], ["https://tec.openplanner.team/stops/Bwatmbv1", "https://tec.openplanner.team/stops/Bwatmbv2"], ["https://tec.openplanner.team/stops/Cchwate4", "https://tec.openplanner.team/stops/CMwate2"], ["https://tec.openplanner.team/stops/X747aeb", "https://tec.openplanner.team/stops/X747afa"], ["https://tec.openplanner.team/stops/Cchsud03", "https://tec.openplanner.team/stops/CMsud1"], ["https://tec.openplanner.team/stops/N507akb", "https://tec.openplanner.team/stops/N512ama"], ["https://tec.openplanner.team/stops/H1hc126b", "https://tec.openplanner.team/stops/H1hc152a"], ["https://tec.openplanner.team/stops/X773aga", "https://tec.openplanner.team/stops/X773ahb"], ["https://tec.openplanner.team/stops/H3so163a", "https://tec.openplanner.team/stops/H3so166a"], ["https://tec.openplanner.team/stops/LLLvill1", "https://tec.openplanner.team/stops/X576ada"], ["https://tec.openplanner.team/stops/H2lc145b", "https://tec.openplanner.team/stops/H2ll200b"], ["https://tec.openplanner.team/stops/LXfcore1", "https://tec.openplanner.team/stops/LXftche1"], ["https://tec.openplanner.team/stops/H2mm144a", "https://tec.openplanner.team/stops/H2mm144b"], ["https://tec.openplanner.team/stops/X741abd", "https://tec.openplanner.team/stops/X741aca"], ["https://tec.openplanner.team/stops/Lfhhaso2", "https://tec.openplanner.team/stops/Lfhxhor1"], ["https://tec.openplanner.team/stops/Lmnchal2", "https://tec.openplanner.team/stops/Lsmcime*"], ["https://tec.openplanner.team/stops/N139ada", "https://tec.openplanner.team/stops/N139adb"], ["https://tec.openplanner.team/stops/LWNwavr2", "https://tec.openplanner.team/stops/LWNwavr3"], ["https://tec.openplanner.team/stops/Csyjumo2", "https://tec.openplanner.team/stops/Csyplac1"], ["https://tec.openplanner.team/stops/Cmbborn1", "https://tec.openplanner.team/stops/Csufrom5"], ["https://tec.openplanner.team/stops/LrAberg1", "https://tec.openplanner.team/stops/LrAmuhl2"], ["https://tec.openplanner.team/stops/N236acb", "https://tec.openplanner.team/stops/N254agb"], ["https://tec.openplanner.team/stops/LVlroua1", "https://tec.openplanner.team/stops/LVlroua2"], ["https://tec.openplanner.team/stops/Cfaauln2", "https://tec.openplanner.team/stops/Cfanvmo1"], ["https://tec.openplanner.team/stops/Clgpavi1", "https://tec.openplanner.team/stops/Csshouy2"], ["https://tec.openplanner.team/stops/X639ana", "https://tec.openplanner.team/stops/X639anb"], ["https://tec.openplanner.team/stops/H1do108b", "https://tec.openplanner.team/stops/H1do108e"], ["https://tec.openplanner.team/stops/N331aha", "https://tec.openplanner.team/stops/N331ahb"], ["https://tec.openplanner.team/stops/H2sb266a", "https://tec.openplanner.team/stops/H2sb266b"], ["https://tec.openplanner.team/stops/Bwatcap1", "https://tec.openplanner.team/stops/Bwatvco1"], ["https://tec.openplanner.team/stops/H2ll186b", "https://tec.openplanner.team/stops/H2ll258a"], ["https://tec.openplanner.team/stops/Lghhaut1", "https://tec.openplanner.team/stops/Lghlogi1"], ["https://tec.openplanner.team/stops/LNCdoma4", "https://tec.openplanner.team/stops/LNClila2"], ["https://tec.openplanner.team/stops/H1he108b", "https://tec.openplanner.team/stops/H1he111b"], ["https://tec.openplanner.team/stops/LDOandr1", "https://tec.openplanner.team/stops/LDObran1"], ["https://tec.openplanner.team/stops/X369aaa", "https://tec.openplanner.team/stops/X369aab"], ["https://tec.openplanner.team/stops/Bsoihci2", "https://tec.openplanner.team/stops/H3so170a"], ["https://tec.openplanner.team/stops/X952afa", "https://tec.openplanner.team/stops/X952afb"], ["https://tec.openplanner.team/stops/N553aca", "https://tec.openplanner.team/stops/N553aoa"], ["https://tec.openplanner.team/stops/LHocroi1", "https://tec.openplanner.team/stops/LJedonc3"], ["https://tec.openplanner.team/stops/Lqbeg--2", "https://tec.openplanner.team/stops/LSAtrih2"], ["https://tec.openplanner.team/stops/Buccham2", "https://tec.openplanner.team/stops/Bwbfhip1"], ["https://tec.openplanner.team/stops/H2ll178a", "https://tec.openplanner.team/stops/H2ll184a"], ["https://tec.openplanner.team/stops/H4cw104a", "https://tec.openplanner.team/stops/H4cw107a"], ["https://tec.openplanner.team/stops/N121aaa", "https://tec.openplanner.team/stops/N158aba"], ["https://tec.openplanner.team/stops/N211aib", "https://tec.openplanner.team/stops/N211azb"], ["https://tec.openplanner.team/stops/X667ada", "https://tec.openplanner.team/stops/X667adb"], ["https://tec.openplanner.team/stops/H1tt104a", "https://tec.openplanner.team/stops/H1tt107a"], ["https://tec.openplanner.team/stops/H4ga149a", "https://tec.openplanner.team/stops/H4ga149b"], ["https://tec.openplanner.team/stops/H4hu114a", "https://tec.openplanner.team/stops/H4hu118a"], ["https://tec.openplanner.team/stops/X713afa", "https://tec.openplanner.team/stops/X713ahb"], ["https://tec.openplanner.team/stops/LHHronh2", "https://tec.openplanner.team/stops/LHHtill2"], ["https://tec.openplanner.team/stops/LROcent1", "https://tec.openplanner.team/stops/LROhael1"], ["https://tec.openplanner.team/stops/X662aha", "https://tec.openplanner.team/stops/X662aqa"], ["https://tec.openplanner.team/stops/Baudulb1", "https://tec.openplanner.team/stops/Baudulb2"], ["https://tec.openplanner.team/stops/Crofrio1", "https://tec.openplanner.team/stops/Crofrio2"], ["https://tec.openplanner.team/stops/X938aab", "https://tec.openplanner.team/stops/X938acb"], ["https://tec.openplanner.team/stops/Btlbtbe3", "https://tec.openplanner.team/stops/Btlbtbe4"], ["https://tec.openplanner.team/stops/N512ana", "https://tec.openplanner.team/stops/N512anb"], ["https://tec.openplanner.team/stops/X725ahb", "https://tec.openplanner.team/stops/X771ala"], ["https://tec.openplanner.team/stops/LCPscay1", "https://tec.openplanner.team/stops/LCPscay2"], ["https://tec.openplanner.team/stops/X733aib", "https://tec.openplanner.team/stops/X733alb"], ["https://tec.openplanner.team/stops/LLrchat1", "https://tec.openplanner.team/stops/LLrisa-*"], ["https://tec.openplanner.team/stops/H1fr116a", "https://tec.openplanner.team/stops/H1fr122a"], ["https://tec.openplanner.team/stops/LJAferm1", "https://tec.openplanner.team/stops/LJAmari2"], ["https://tec.openplanner.team/stops/X827aab", "https://tec.openplanner.team/stops/X828aab"], ["https://tec.openplanner.team/stops/LOmvill2", "https://tec.openplanner.team/stops/LOmvill4"], ["https://tec.openplanner.team/stops/LCEboll1", "https://tec.openplanner.team/stops/LCEec--1"], ["https://tec.openplanner.team/stops/Bbaubon1", "https://tec.openplanner.team/stops/Bbauegl2"], ["https://tec.openplanner.team/stops/X661aea", "https://tec.openplanner.team/stops/X661aia"], ["https://tec.openplanner.team/stops/X661awb", "https://tec.openplanner.team/stops/X661ayb"], ["https://tec.openplanner.team/stops/H4mo135a", "https://tec.openplanner.team/stops/H4mo155b"], ["https://tec.openplanner.team/stops/H1qu110b", "https://tec.openplanner.team/stops/H1qu120a"], ["https://tec.openplanner.team/stops/H2sb226b", "https://tec.openplanner.team/stops/H2sb242a"], ["https://tec.openplanner.team/stops/Cjuepee1", "https://tec.openplanner.team/stops/Cjugill4"], ["https://tec.openplanner.team/stops/Cmtchet1", "https://tec.openplanner.team/stops/Cmtrbla1"], ["https://tec.openplanner.team/stops/N308apb", "https://tec.openplanner.team/stops/N308bjb"], ["https://tec.openplanner.team/stops/N244ala", "https://tec.openplanner.team/stops/N252acd"], ["https://tec.openplanner.team/stops/Ccabois1", "https://tec.openplanner.team/stops/Cclrgiv2"], ["https://tec.openplanner.team/stops/Cgogrco1", "https://tec.openplanner.team/stops/Cgorosa2"], ["https://tec.openplanner.team/stops/N562afa", "https://tec.openplanner.team/stops/N562bka"], ["https://tec.openplanner.team/stops/X351acb", "https://tec.openplanner.team/stops/X351adb"], ["https://tec.openplanner.team/stops/LLOberl2", "https://tec.openplanner.team/stops/LLOspin1"], ["https://tec.openplanner.team/stops/X789aha", "https://tec.openplanner.team/stops/X789ahd"], ["https://tec.openplanner.team/stops/N106afa", "https://tec.openplanner.team/stops/N106aha"], ["https://tec.openplanner.team/stops/N110aga", "https://tec.openplanner.team/stops/N110agb"], ["https://tec.openplanner.team/stops/X750bna", "https://tec.openplanner.team/stops/X784aab"], ["https://tec.openplanner.team/stops/LHUcamp2", "https://tec.openplanner.team/stops/LTicent2"], ["https://tec.openplanner.team/stops/X999aia", "https://tec.openplanner.team/stops/X999ata"], ["https://tec.openplanner.team/stops/N501cva", "https://tec.openplanner.team/stops/N501cxa"], ["https://tec.openplanner.team/stops/Brxmbos1", "https://tec.openplanner.team/stops/Brxmcha1"], ["https://tec.openplanner.team/stops/N110aba", "https://tec.openplanner.team/stops/N123adb"], ["https://tec.openplanner.team/stops/N513ana", "https://tec.openplanner.team/stops/N513axa"], ["https://tec.openplanner.team/stops/X351ada", "https://tec.openplanner.team/stops/X994ada"], ["https://tec.openplanner.team/stops/X879ana", "https://tec.openplanner.team/stops/X898aab"], ["https://tec.openplanner.team/stops/LSPfrai1", "https://tec.openplanner.team/stops/LSPpelz1"], ["https://tec.openplanner.team/stops/LFAscie2", "https://tec.openplanner.team/stops/LMffoot1"], ["https://tec.openplanner.team/stops/X982apa", "https://tec.openplanner.team/stops/X982aqa"], ["https://tec.openplanner.team/stops/N501agb", "https://tec.openplanner.team/stops/N501aha"], ["https://tec.openplanner.team/stops/LCxross1", "https://tec.openplanner.team/stops/LCxwade1"], ["https://tec.openplanner.team/stops/Ccuseba2", "https://tec.openplanner.team/stops/Cgyruis1"], ["https://tec.openplanner.team/stops/H4ms144b", "https://tec.openplanner.team/stops/H4ms146b"], ["https://tec.openplanner.team/stops/N150aga", "https://tec.openplanner.team/stops/N150agb"], ["https://tec.openplanner.team/stops/Bwavgar3", "https://tec.openplanner.team/stops/Bwavgar8"], ["https://tec.openplanner.team/stops/Cwfdame1", "https://tec.openplanner.team/stops/Cwfnamu1"], ["https://tec.openplanner.team/stops/Lbrfoid1", "https://tec.openplanner.team/stops/Lbrresi2"], ["https://tec.openplanner.team/stops/Bmsgfon1", "https://tec.openplanner.team/stops/Bmsgfon2"], ["https://tec.openplanner.team/stops/X926aba", "https://tec.openplanner.team/stops/X926abb"], ["https://tec.openplanner.team/stops/N512aia", "https://tec.openplanner.team/stops/NL68adc"], ["https://tec.openplanner.team/stops/X616aba", "https://tec.openplanner.team/stops/X616aea"], ["https://tec.openplanner.team/stops/LNCdoma2", "https://tec.openplanner.team/stops/LRRchen2"], ["https://tec.openplanner.team/stops/X897aja", "https://tec.openplanner.team/stops/X897amb"], ["https://tec.openplanner.team/stops/Cfcgar1", "https://tec.openplanner.team/stops/Cfcpcov2"], ["https://tec.openplanner.team/stops/LMYchpl1", "https://tec.openplanner.team/stops/X597ala"], ["https://tec.openplanner.team/stops/NL78aea", "https://tec.openplanner.team/stops/NL78afa"], ["https://tec.openplanner.team/stops/N501ebz", "https://tec.openplanner.team/stops/N501edb"], ["https://tec.openplanner.team/stops/Bbstchn1", "https://tec.openplanner.team/stops/Bbsttab1"], ["https://tec.openplanner.team/stops/X548afa", "https://tec.openplanner.team/stops/X548afb"], ["https://tec.openplanner.team/stops/LCLstat2", "https://tec.openplanner.team/stops/LOccarr1"], ["https://tec.openplanner.team/stops/Bhoeboo2", "https://tec.openplanner.team/stops/Blhuibm1"], ["https://tec.openplanner.team/stops/Cblcen3", "https://tec.openplanner.team/stops/Cblcent4"], ["https://tec.openplanner.team/stops/X782aea", "https://tec.openplanner.team/stops/X782afb"], ["https://tec.openplanner.team/stops/LCPvign1", "https://tec.openplanner.team/stops/LOnec--1"], ["https://tec.openplanner.team/stops/LhEtivo1", "https://tec.openplanner.team/stops/LlNbruc2"], ["https://tec.openplanner.team/stops/LOMdTEC1", "https://tec.openplanner.team/stops/LOMtomb2"], ["https://tec.openplanner.team/stops/N528aga", "https://tec.openplanner.team/stops/N528agb"], ["https://tec.openplanner.team/stops/Cobbusc1", "https://tec.openplanner.team/stops/Cobmara1"], ["https://tec.openplanner.team/stops/LLxalle2", "https://tec.openplanner.team/stops/LVIcarm2"], ["https://tec.openplanner.team/stops/Cbzfrom1", "https://tec.openplanner.team/stops/Creha761"], ["https://tec.openplanner.team/stops/LFOchab1", "https://tec.openplanner.team/stops/LHGvill2"], ["https://tec.openplanner.team/stops/N501aka", "https://tec.openplanner.team/stops/N501aqb"], ["https://tec.openplanner.team/stops/H4eq123b", "https://tec.openplanner.team/stops/H4rc231a"], ["https://tec.openplanner.team/stops/N118afb", "https://tec.openplanner.team/stops/N118ata"], ["https://tec.openplanner.team/stops/Cmbcime4", "https://tec.openplanner.team/stops/Crcrlf1"], ["https://tec.openplanner.team/stops/X657alb", "https://tec.openplanner.team/stops/X671aaa"], ["https://tec.openplanner.team/stops/X939acb", "https://tec.openplanner.team/stops/X939aeb"], ["https://tec.openplanner.team/stops/X805aka", "https://tec.openplanner.team/stops/X806aja"], ["https://tec.openplanner.team/stops/X723aba", "https://tec.openplanner.team/stops/X724aha"], ["https://tec.openplanner.team/stops/H1bu139a", "https://tec.openplanner.team/stops/H1bu141a"], ["https://tec.openplanner.team/stops/X921afa", "https://tec.openplanner.team/stops/X921aga"], ["https://tec.openplanner.team/stops/Lpesart1", "https://tec.openplanner.team/stops/Lpesart2"], ["https://tec.openplanner.team/stops/LmD163-2", "https://tec.openplanner.team/stops/LmDhoch2"], ["https://tec.openplanner.team/stops/LHAbont1", "https://tec.openplanner.team/stops/LHAmonu1"], ["https://tec.openplanner.team/stops/Buccpor2", "https://tec.openplanner.team/stops/Bwbfhip2"], ["https://tec.openplanner.team/stops/Clb4bra1", "https://tec.openplanner.team/stops/Clbentr2"], ["https://tec.openplanner.team/stops/X791aaa", "https://tec.openplanner.team/stops/X791ada"], ["https://tec.openplanner.team/stops/LLxeclu1", "https://tec.openplanner.team/stops/LVIcarm2"], ["https://tec.openplanner.team/stops/Cmlbruy1", "https://tec.openplanner.team/stops/Cmlbruy2"], ["https://tec.openplanner.team/stops/Cgystbe1", "https://tec.openplanner.team/stops/Cmtdepo1"], ["https://tec.openplanner.team/stops/LEHmarc1", "https://tec.openplanner.team/stops/LEHmarc2"], ["https://tec.openplanner.team/stops/Bwspcar2", "https://tec.openplanner.team/stops/Bwspjon2"], ["https://tec.openplanner.team/stops/X664aga", "https://tec.openplanner.team/stops/X664aia"], ["https://tec.openplanner.team/stops/Bjodpvi1", "https://tec.openplanner.team/stops/Bjodpvi2"], ["https://tec.openplanner.team/stops/Bneehou1", "https://tec.openplanner.team/stops/Bneervc1"], ["https://tec.openplanner.team/stops/X634aia", "https://tec.openplanner.team/stops/X634aib"], ["https://tec.openplanner.team/stops/LSzcoop2", "https://tec.openplanner.team/stops/N506bta"], ["https://tec.openplanner.team/stops/Cladura3", "https://tec.openplanner.team/stops/NC23aeb"], ["https://tec.openplanner.team/stops/NC02aab", "https://tec.openplanner.team/stops/NC02bbb"], ["https://tec.openplanner.team/stops/Cgylami2", "https://tec.openplanner.team/stops/Cracave2"], ["https://tec.openplanner.team/stops/N506bua", "https://tec.openplanner.team/stops/N506bva"], ["https://tec.openplanner.team/stops/LAYcher2", "https://tec.openplanner.team/stops/LAYpl--2"], ["https://tec.openplanner.team/stops/H4an111a", "https://tec.openplanner.team/stops/H4an111b"], ["https://tec.openplanner.team/stops/Livrame2", "https://tec.openplanner.team/stops/LRagrch2"], ["https://tec.openplanner.team/stops/Bhevcur1", "https://tec.openplanner.team/stops/Bvilcim1"], ["https://tec.openplanner.team/stops/N501jaa", "https://tec.openplanner.team/stops/N501jcb"], ["https://tec.openplanner.team/stops/N506aab", "https://tec.openplanner.team/stops/N506aga"], ["https://tec.openplanner.team/stops/X801bxa", "https://tec.openplanner.team/stops/X802azb"], ["https://tec.openplanner.team/stops/Lalchar1", "https://tec.openplanner.team/stops/Lalwaro1"], ["https://tec.openplanner.team/stops/H1pw121b", "https://tec.openplanner.team/stops/H1pw122b"], ["https://tec.openplanner.team/stops/Cptberg2", "https://tec.openplanner.team/stops/Cptplac5"], ["https://tec.openplanner.team/stops/N532ama", "https://tec.openplanner.team/stops/N532amb"], ["https://tec.openplanner.team/stops/H2mg140b", "https://tec.openplanner.team/stops/H2mg140c"], ["https://tec.openplanner.team/stops/H1ci103a", "https://tec.openplanner.team/stops/H1ci106a"], ["https://tec.openplanner.team/stops/NL57aeb", "https://tec.openplanner.team/stops/NL68afa"], ["https://tec.openplanner.team/stops/H4rm108b", "https://tec.openplanner.team/stops/H4ta120b"], ["https://tec.openplanner.team/stops/Csuegli", "https://tec.openplanner.team/stops/Csytouq1"], ["https://tec.openplanner.team/stops/Cvrfema1", "https://tec.openplanner.team/stops/Cvrhab22"], ["https://tec.openplanner.team/stops/LaMthei2", "https://tec.openplanner.team/stops/LeIjoha1"], ["https://tec.openplanner.team/stops/N541aaa", "https://tec.openplanner.team/stops/N541aca"], ["https://tec.openplanner.team/stops/LAWcite1", "https://tec.openplanner.team/stops/LAWcite3"], ["https://tec.openplanner.team/stops/Cmohotv3", "https://tec.openplanner.team/stops/Cmopn4"], ["https://tec.openplanner.team/stops/Beclron1", "https://tec.openplanner.team/stops/Bhptcha2"], ["https://tec.openplanner.team/stops/LBLghuy2", "https://tec.openplanner.team/stops/LBLplas1"], ["https://tec.openplanner.team/stops/N525ata", "https://tec.openplanner.team/stops/N525atb"], ["https://tec.openplanner.team/stops/Lfhpass1", "https://tec.openplanner.team/stops/Lfhpass2"], ["https://tec.openplanner.team/stops/N562aob", "https://tec.openplanner.team/stops/N563amb"], ["https://tec.openplanner.team/stops/LORvill1", "https://tec.openplanner.team/stops/LORvill2"], ["https://tec.openplanner.team/stops/X836aab", "https://tec.openplanner.team/stops/X836aba"], ["https://tec.openplanner.team/stops/Lwaelme1", "https://tec.openplanner.team/stops/Lwakipe2"], ["https://tec.openplanner.team/stops/H4pi131a", "https://tec.openplanner.team/stops/H4pi134a"], ["https://tec.openplanner.team/stops/X741aba", "https://tec.openplanner.team/stops/X752aab"], ["https://tec.openplanner.team/stops/H1bu139b", "https://tec.openplanner.team/stops/H1bu140a"], ["https://tec.openplanner.team/stops/X224aha", "https://tec.openplanner.team/stops/X224ahb"], ["https://tec.openplanner.team/stops/Bllnhoc2", "https://tec.openplanner.team/stops/Bottbou2"], ["https://tec.openplanner.team/stops/H4rx143a", "https://tec.openplanner.team/stops/H4rx143b"], ["https://tec.openplanner.team/stops/Cmeloti1", "https://tec.openplanner.team/stops/Cwxchap2"], ["https://tec.openplanner.team/stops/H1mm126a", "https://tec.openplanner.team/stops/H1mm132b"], ["https://tec.openplanner.team/stops/Bitrh%C3%BBl2", "https://tec.openplanner.team/stops/Bitrpar1"], ["https://tec.openplanner.team/stops/LPbchat1", "https://tec.openplanner.team/stops/LPbusin1"], ["https://tec.openplanner.team/stops/X733ajb", "https://tec.openplanner.team/stops/X734aqa"], ["https://tec.openplanner.team/stops/LATabba2", "https://tec.openplanner.team/stops/LVNbale1"], ["https://tec.openplanner.team/stops/H1ms314a", "https://tec.openplanner.team/stops/H1ms915b"], ["https://tec.openplanner.team/stops/X754aqa", "https://tec.openplanner.team/stops/X754aqb"], ["https://tec.openplanner.team/stops/X897ajb", "https://tec.openplanner.team/stops/X897alc"], ["https://tec.openplanner.team/stops/H3bi115a", "https://tec.openplanner.team/stops/H3bi117a"], ["https://tec.openplanner.team/stops/Clb4dgi1", "https://tec.openplanner.team/stops/Clbhour1"], ["https://tec.openplanner.team/stops/X623aab", "https://tec.openplanner.team/stops/X623akb"], ["https://tec.openplanner.team/stops/LSTchef2", "https://tec.openplanner.team/stops/LSTdero2"], ["https://tec.openplanner.team/stops/N580aba", "https://tec.openplanner.team/stops/N580aca"], ["https://tec.openplanner.team/stops/X609aaa", "https://tec.openplanner.team/stops/X609aqa"], ["https://tec.openplanner.team/stops/Cchfaub2", "https://tec.openplanner.team/stops/Cchlamb2"], ["https://tec.openplanner.team/stops/Lveclin2", "https://tec.openplanner.team/stops/Lvelieg2"], ["https://tec.openplanner.team/stops/Cthnord2", "https://tec.openplanner.team/stops/Cthnsnc"], ["https://tec.openplanner.team/stops/X907aia", "https://tec.openplanner.team/stops/X907aib"], ["https://tec.openplanner.team/stops/H1er112a", "https://tec.openplanner.team/stops/H1so131b"], ["https://tec.openplanner.team/stops/Bjodcar2", "https://tec.openplanner.team/stops/Bjodgar1"], ["https://tec.openplanner.team/stops/N501kga", "https://tec.openplanner.team/stops/N501kna"], ["https://tec.openplanner.team/stops/X602aaa", "https://tec.openplanner.team/stops/X602aab"], ["https://tec.openplanner.team/stops/H1mb131a", "https://tec.openplanner.team/stops/H1ro134a"], ["https://tec.openplanner.team/stops/X716aca", "https://tec.openplanner.team/stops/X718ajb"], ["https://tec.openplanner.team/stops/X670ama", "https://tec.openplanner.team/stops/X670asb"], ["https://tec.openplanner.team/stops/Cfmgara2", "https://tec.openplanner.team/stops/Cfmpui82"], ["https://tec.openplanner.team/stops/H4lp126a", "https://tec.openplanner.team/stops/H4pe125a"], ["https://tec.openplanner.team/stops/Bdlmflo1", "https://tec.openplanner.team/stops/Bdvmcbo1"], ["https://tec.openplanner.team/stops/N501jja", "https://tec.openplanner.team/stops/N501jkb"], ["https://tec.openplanner.team/stops/H3bi110a", "https://tec.openplanner.team/stops/H3bi112b"], ["https://tec.openplanner.team/stops/H1go169a", "https://tec.openplanner.team/stops/H1qy136a"], ["https://tec.openplanner.team/stops/Cwfcast2", "https://tec.openplanner.team/stops/Cwfreta1"], ["https://tec.openplanner.team/stops/Barchez1", "https://tec.openplanner.team/stops/Barcsta1"], ["https://tec.openplanner.team/stops/LMNgare1", "https://tec.openplanner.team/stops/LMNjard1"], ["https://tec.openplanner.team/stops/LSSjeun1", "https://tec.openplanner.team/stops/LSSvill1"], ["https://tec.openplanner.team/stops/H1mv240b", "https://tec.openplanner.team/stops/H1nv325b"], ["https://tec.openplanner.team/stops/LSNfays1", "https://tec.openplanner.team/stops/LSNfays2"], ["https://tec.openplanner.team/stops/H4mo187a", "https://tec.openplanner.team/stops/H4mo191a"], ["https://tec.openplanner.team/stops/N528ahb", "https://tec.openplanner.team/stops/N528aoa"], ["https://tec.openplanner.team/stops/H1au112b", "https://tec.openplanner.team/stops/H1ro139a"], ["https://tec.openplanner.team/stops/X872aaa", "https://tec.openplanner.team/stops/X873aca"], ["https://tec.openplanner.team/stops/N501boa", "https://tec.openplanner.team/stops/N501btb"], ["https://tec.openplanner.team/stops/Cgyblob1", "https://tec.openplanner.team/stops/Cgynuto2"], ["https://tec.openplanner.team/stops/X825aba", "https://tec.openplanner.team/stops/X825adb"], ["https://tec.openplanner.team/stops/LBBabat2", "https://tec.openplanner.team/stops/LBBcarr2"], ["https://tec.openplanner.team/stops/X901awa", "https://tec.openplanner.team/stops/X901axb"], ["https://tec.openplanner.team/stops/LAWroug1", "https://tec.openplanner.team/stops/LBIfore1"], ["https://tec.openplanner.team/stops/Llgdefr2", "https://tec.openplanner.team/stops/Llgomal1"], ["https://tec.openplanner.team/stops/H4co106d", "https://tec.openplanner.team/stops/H4co110b"], ["https://tec.openplanner.team/stops/LFOcomb4", "https://tec.openplanner.team/stops/LFOmc--2"], ["https://tec.openplanner.team/stops/Lghfors2", "https://tec.openplanner.team/stops/Lmlguis2"], ["https://tec.openplanner.team/stops/N560aaa", "https://tec.openplanner.team/stops/N562aza"], ["https://tec.openplanner.team/stops/Lalchar1", "https://tec.openplanner.team/stops/Lloauto2"], ["https://tec.openplanner.team/stops/Cplelec2", "https://tec.openplanner.team/stops/Crsstem1"], ["https://tec.openplanner.team/stops/Cflgazo2", "https://tec.openplanner.team/stops/Cflsncb3"], ["https://tec.openplanner.team/stops/Lemacac1", "https://tec.openplanner.team/stops/Lemmeha1"], ["https://tec.openplanner.team/stops/N519aga", "https://tec.openplanner.team/stops/N519aja"], ["https://tec.openplanner.team/stops/LBPauto1", "https://tec.openplanner.team/stops/LBPboir1"], ["https://tec.openplanner.team/stops/X804aea", "https://tec.openplanner.team/stops/X804beb"], ["https://tec.openplanner.team/stops/N501hda", "https://tec.openplanner.team/stops/N501lba"], ["https://tec.openplanner.team/stops/X806aeb", "https://tec.openplanner.team/stops/X806afa"], ["https://tec.openplanner.team/stops/N547aja", "https://tec.openplanner.team/stops/N573aob"], ["https://tec.openplanner.team/stops/H1fl134b", "https://tec.openplanner.team/stops/H1je367a"], ["https://tec.openplanner.team/stops/X804aka", "https://tec.openplanner.team/stops/X804bga"], ["https://tec.openplanner.team/stops/H4hq129b", "https://tec.openplanner.team/stops/H4ms145a"], ["https://tec.openplanner.team/stops/Lgrcrac2", "https://tec.openplanner.team/stops/Lgrecpe1"], ["https://tec.openplanner.team/stops/Btilsnc1", "https://tec.openplanner.team/stops/Btilsnc2"], ["https://tec.openplanner.team/stops/LJAherb1", "https://tec.openplanner.team/stops/LJAherb3"], ["https://tec.openplanner.team/stops/Cmlbras2", "https://tec.openplanner.team/stops/Cmlrang2"], ["https://tec.openplanner.team/stops/N232bea", "https://tec.openplanner.team/stops/N232bvb"], ["https://tec.openplanner.team/stops/Lpechin2", "https://tec.openplanner.team/stops/Lpesart2"], ["https://tec.openplanner.team/stops/N423abb", "https://tec.openplanner.team/stops/N426acb"], ["https://tec.openplanner.team/stops/Cml3fon1", "https://tec.openplanner.team/stops/Cmlceri1"], ["https://tec.openplanner.team/stops/N559aea", "https://tec.openplanner.team/stops/N559aeb"], ["https://tec.openplanner.team/stops/N513aub", "https://tec.openplanner.team/stops/N513ava"], ["https://tec.openplanner.team/stops/NL72aca", "https://tec.openplanner.team/stops/NL72adb"], ["https://tec.openplanner.team/stops/Brebblo1", "https://tec.openplanner.team/stops/Brebrha1"], ["https://tec.openplanner.team/stops/LSzeg--1", "https://tec.openplanner.team/stops/LSzsurl2"], ["https://tec.openplanner.team/stops/LSyec--2", "https://tec.openplanner.team/stops/LSythie1"], ["https://tec.openplanner.team/stops/Cmmcver1", "https://tec.openplanner.team/stops/Cmmmarb2"], ["https://tec.openplanner.team/stops/N501fyc", "https://tec.openplanner.team/stops/N501hva"], ["https://tec.openplanner.team/stops/Brsrber1", "https://tec.openplanner.team/stops/Brsrrcu1"], ["https://tec.openplanner.team/stops/Baegpon1", "https://tec.openplanner.team/stops/Baegpon3"], ["https://tec.openplanner.team/stops/N229aha", "https://tec.openplanner.team/stops/N291aba"], ["https://tec.openplanner.team/stops/N551ala", "https://tec.openplanner.team/stops/N551aqb"], ["https://tec.openplanner.team/stops/N521agb", "https://tec.openplanner.team/stops/N521ama"], ["https://tec.openplanner.team/stops/Lwakipe1", "https://tec.openplanner.team/stops/Lwakipe2"], ["https://tec.openplanner.team/stops/N501iaa", "https://tec.openplanner.team/stops/N501ida"], ["https://tec.openplanner.team/stops/H4be113a", "https://tec.openplanner.team/stops/H4be146b"], ["https://tec.openplanner.team/stops/Bcbqcha1", "https://tec.openplanner.team/stops/Bhalvel2"], ["https://tec.openplanner.team/stops/X890aaa", "https://tec.openplanner.team/stops/X890acb"], ["https://tec.openplanner.team/stops/N529aha", "https://tec.openplanner.team/stops/N529aja"], ["https://tec.openplanner.team/stops/H1eu101b", "https://tec.openplanner.team/stops/H1lb152b"], ["https://tec.openplanner.team/stops/H3th126a", "https://tec.openplanner.team/stops/H3th126b"], ["https://tec.openplanner.team/stops/N501gzy", "https://tec.openplanner.team/stops/N501gzz"], ["https://tec.openplanner.team/stops/Cchtour1", "https://tec.openplanner.team/stops/Clomart1"], ["https://tec.openplanner.team/stops/Lsnbrac2", "https://tec.openplanner.team/stops/Lsnvand3"], ["https://tec.openplanner.team/stops/H1ba111a", "https://tec.openplanner.team/stops/H1hh112a"], ["https://tec.openplanner.team/stops/H1be100a", "https://tec.openplanner.team/stops/H1er109a"], ["https://tec.openplanner.team/stops/LVLgotr3", "https://tec.openplanner.team/stops/LVLgrum2"], ["https://tec.openplanner.team/stops/LLrgara1", "https://tec.openplanner.team/stops/LLrgara2"], ["https://tec.openplanner.team/stops/N534aqb", "https://tec.openplanner.team/stops/N534awc"], ["https://tec.openplanner.team/stops/X763aba", "https://tec.openplanner.team/stops/X763abb"], ["https://tec.openplanner.team/stops/Brsgm302", "https://tec.openplanner.team/stops/Bwatcha3"], ["https://tec.openplanner.team/stops/X612afb", "https://tec.openplanner.team/stops/X626akb"], ["https://tec.openplanner.team/stops/X999aba", "https://tec.openplanner.team/stops/X999afa"], ["https://tec.openplanner.team/stops/Lflcle-6", "https://tec.openplanner.team/stops/Lflhott1"], ["https://tec.openplanner.team/stops/N106adb", "https://tec.openplanner.team/stops/N106aqb"], ["https://tec.openplanner.team/stops/LBpecco2", "https://tec.openplanner.team/stops/LGEwalk1"], ["https://tec.openplanner.team/stops/LLrc1992", "https://tec.openplanner.team/stops/LLrcomb2"], ["https://tec.openplanner.team/stops/LVEhali2", "https://tec.openplanner.team/stops/LVEtomb1"], ["https://tec.openplanner.team/stops/Cwfaldi1", "https://tec.openplanner.team/stops/Cwfbarr1"], ["https://tec.openplanner.team/stops/H1gi123b", "https://tec.openplanner.team/stops/H1gi154a"], ["https://tec.openplanner.team/stops/X982cbb", "https://tec.openplanner.team/stops/X986aaa"], ["https://tec.openplanner.team/stops/NC01aha", "https://tec.openplanner.team/stops/NC01ahb"], ["https://tec.openplanner.team/stops/X512aja", "https://tec.openplanner.team/stops/X713afb"], ["https://tec.openplanner.team/stops/Bgzdsta1", "https://tec.openplanner.team/stops/Bgzdsta2"], ["https://tec.openplanner.team/stops/H4ht173b", "https://tec.openplanner.team/stops/H4la199a"], ["https://tec.openplanner.team/stops/Llgbago2", "https://tec.openplanner.team/stops/Llgbert2"], ["https://tec.openplanner.team/stops/LLMcouv1", "https://tec.openplanner.team/stops/LLMeg--1"], ["https://tec.openplanner.team/stops/Lmojans1", "https://tec.openplanner.team/stops/Lmovand4"], ["https://tec.openplanner.team/stops/Ctubpos4", "https://tec.openplanner.team/stops/Cturoge2"], ["https://tec.openplanner.team/stops/Ltiplat1", "https://tec.openplanner.team/stops/Ltithie2"], ["https://tec.openplanner.team/stops/LLNogne2", "https://tec.openplanner.team/stops/LSpbawe2"], ["https://tec.openplanner.team/stops/Ladwooz1", "https://tec.openplanner.team/stops/Ladwooz2"], ["https://tec.openplanner.team/stops/LFMveur2", "https://tec.openplanner.team/stops/LFMvoge2"], ["https://tec.openplanner.team/stops/H4ln129b", "https://tec.openplanner.team/stops/H4ln130b"], ["https://tec.openplanner.team/stops/LHTcent2", "https://tec.openplanner.team/stops/LHTmala4"], ["https://tec.openplanner.team/stops/LsHkreu3", "https://tec.openplanner.team/stops/LsHkreu4"], ["https://tec.openplanner.team/stops/NL74acb", "https://tec.openplanner.team/stops/NL74adb"], ["https://tec.openplanner.team/stops/LPLec131", "https://tec.openplanner.team/stops/LPLfp2-2"], ["https://tec.openplanner.team/stops/N209ala", "https://tec.openplanner.team/stops/N209alb"], ["https://tec.openplanner.team/stops/H1vs145a", "https://tec.openplanner.team/stops/H1vs146a"], ["https://tec.openplanner.team/stops/N515aub", "https://tec.openplanner.team/stops/NR27aaa"], ["https://tec.openplanner.team/stops/LXHadam1", "https://tec.openplanner.team/stops/LXHeg--1"], ["https://tec.openplanner.team/stops/Cchdrai1", "https://tec.openplanner.team/stops/Cchjaur2"], ["https://tec.openplanner.team/stops/N217adb", "https://tec.openplanner.team/stops/N217aeb"], ["https://tec.openplanner.team/stops/X658ada", "https://tec.openplanner.team/stops/X658aea"], ["https://tec.openplanner.team/stops/X770aab", "https://tec.openplanner.team/stops/X770abb"], ["https://tec.openplanner.team/stops/H4hq133d", "https://tec.openplanner.team/stops/H4hq134b"], ["https://tec.openplanner.team/stops/LlgOPER6", "https://tec.openplanner.team/stops/LlgPTAV2"], ["https://tec.openplanner.team/stops/Bbxlple2", "https://tec.openplanner.team/stops/Bixlqll1"], ["https://tec.openplanner.team/stops/LhEtivo1", "https://tec.openplanner.team/stops/LhEtivo2"], ["https://tec.openplanner.team/stops/N118aua", "https://tec.openplanner.team/stops/N118aub"], ["https://tec.openplanner.team/stops/LCF1spa1", "https://tec.openplanner.team/stops/LCF2spa1"], ["https://tec.openplanner.team/stops/Lprorph1", "https://tec.openplanner.team/stops/Lprorph2"], ["https://tec.openplanner.team/stops/Cstmarz2", "https://tec.openplanner.team/stops/Cstvape2"], ["https://tec.openplanner.team/stops/X925aga", "https://tec.openplanner.team/stops/X925agb"], ["https://tec.openplanner.team/stops/Lseecol1", "https://tec.openplanner.team/stops/Lsepair4"], ["https://tec.openplanner.team/stops/LAUcent1", "https://tec.openplanner.team/stops/LFPstro1"], ["https://tec.openplanner.team/stops/H1fl140a", "https://tec.openplanner.team/stops/H1je365a"], ["https://tec.openplanner.team/stops/LBBabat1", "https://tec.openplanner.team/stops/LMnlogi1"], ["https://tec.openplanner.team/stops/LNCsera2", "https://tec.openplanner.team/stops/LPLcond2"], ["https://tec.openplanner.team/stops/Lenvale1", "https://tec.openplanner.team/stops/Llmbouv2"], ["https://tec.openplanner.team/stops/X804apa", "https://tec.openplanner.team/stops/X882akb"], ["https://tec.openplanner.team/stops/X318aba", "https://tec.openplanner.team/stops/X318ada"], ["https://tec.openplanner.team/stops/Cfccabi1", "https://tec.openplanner.team/stops/Cfcsaut4"], ["https://tec.openplanner.team/stops/Cpcarse1", "https://tec.openplanner.team/stops/Cpcarse2"], ["https://tec.openplanner.team/stops/LGMdrev1", "https://tec.openplanner.team/stops/LSEvill2"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Lanstat2"], ["https://tec.openplanner.team/stops/X620adb", "https://tec.openplanner.team/stops/X622afa"], ["https://tec.openplanner.team/stops/Bblaast2", "https://tec.openplanner.team/stops/Bblavba2"], ["https://tec.openplanner.team/stops/X806aab", "https://tec.openplanner.team/stops/X808aka"], ["https://tec.openplanner.team/stops/LeUwert2", "https://tec.openplanner.team/stops/LeUwert3"], ["https://tec.openplanner.team/stops/X940aaa", "https://tec.openplanner.team/stops/X940adb"], ["https://tec.openplanner.team/stops/N550aga", "https://tec.openplanner.team/stops/N565aaa"], ["https://tec.openplanner.team/stops/Bolgcsa2", "https://tec.openplanner.team/stops/Bolppla2"], ["https://tec.openplanner.team/stops/H4ty315a", "https://tec.openplanner.team/stops/H4ty342a"], ["https://tec.openplanner.team/stops/X954adb", "https://tec.openplanner.team/stops/X954aea"], ["https://tec.openplanner.team/stops/LSGmale1", "https://tec.openplanner.team/stops/LSGmale2"], ["https://tec.openplanner.team/stops/Csecarr2", "https://tec.openplanner.team/stops/Csecoup1"], ["https://tec.openplanner.team/stops/X925ajb", "https://tec.openplanner.team/stops/X926aaa"], ["https://tec.openplanner.team/stops/H2ec104a", "https://tec.openplanner.team/stops/H2ec104b"], ["https://tec.openplanner.team/stops/Clocroi2", "https://tec.openplanner.team/stops/Clodupr2"], ["https://tec.openplanner.team/stops/H2sv220a", "https://tec.openplanner.team/stops/H2sv221b"], ["https://tec.openplanner.team/stops/H1lb136a", "https://tec.openplanner.team/stops/H1lb138a"], ["https://tec.openplanner.team/stops/X614avb", "https://tec.openplanner.team/stops/X615ama"], ["https://tec.openplanner.team/stops/X804bza", "https://tec.openplanner.team/stops/X805aba"], ["https://tec.openplanner.team/stops/X670aoa", "https://tec.openplanner.team/stops/X670aob"], ["https://tec.openplanner.team/stops/X818acb", "https://tec.openplanner.team/stops/X818adb"], ["https://tec.openplanner.team/stops/Bdvm4ca2", "https://tec.openplanner.team/stops/Bdvmtve2"], ["https://tec.openplanner.team/stops/N573aea", "https://tec.openplanner.team/stops/N573aeb"], ["https://tec.openplanner.team/stops/Lmitroi1", "https://tec.openplanner.team/stops/Lvtlimi2"], ["https://tec.openplanner.team/stops/H4es111a", "https://tec.openplanner.team/stops/H4es117a"], ["https://tec.openplanner.team/stops/X802asb", "https://tec.openplanner.team/stops/X802ata"], ["https://tec.openplanner.team/stops/H4ln129a", "https://tec.openplanner.team/stops/H4ln130a"], ["https://tec.openplanner.team/stops/N312aba", "https://tec.openplanner.team/stops/N312aca"], ["https://tec.openplanner.team/stops/Cmtpaix1", "https://tec.openplanner.team/stops/Cmtpire2"], ["https://tec.openplanner.team/stops/Lgrbell2", "https://tec.openplanner.team/stops/Lgrspir1"], ["https://tec.openplanner.team/stops/Becepri2", "https://tec.openplanner.team/stops/H2ec110a"], ["https://tec.openplanner.team/stops/X983abb", "https://tec.openplanner.team/stops/X983acb"], ["https://tec.openplanner.team/stops/X307aaa", "https://tec.openplanner.team/stops/X317aba"], ["https://tec.openplanner.team/stops/Lchsaec2", "https://tec.openplanner.team/stops/Lchtche1"], ["https://tec.openplanner.team/stops/X992aga", "https://tec.openplanner.team/stops/X992aka"], ["https://tec.openplanner.team/stops/Ljufler1", "https://tec.openplanner.team/stops/Ljumart1"], ["https://tec.openplanner.team/stops/H1sg148b", "https://tec.openplanner.team/stops/H1sg150b"], ["https://tec.openplanner.team/stops/N106aga", "https://tec.openplanner.team/stops/N106aia"], ["https://tec.openplanner.team/stops/X806aha", "https://tec.openplanner.team/stops/X806ajb"], ["https://tec.openplanner.team/stops/N102aab", "https://tec.openplanner.team/stops/N102acb"], ["https://tec.openplanner.team/stops/H4ln128b", "https://tec.openplanner.team/stops/H4ne142a"], ["https://tec.openplanner.team/stops/H4bh102c", "https://tec.openplanner.team/stops/H4bh104a"], ["https://tec.openplanner.team/stops/LHuetat1", "https://tec.openplanner.team/stops/LHuherm2"], ["https://tec.openplanner.team/stops/H2hg152a", "https://tec.openplanner.team/stops/H2hg157a"], ["https://tec.openplanner.team/stops/N529ahb", "https://tec.openplanner.team/stops/N529aka"], ["https://tec.openplanner.team/stops/H1ms293a", "https://tec.openplanner.team/stops/H1ms293b"], ["https://tec.openplanner.team/stops/Lvegc--3", "https://tec.openplanner.team/stops/Lvegc--4"], ["https://tec.openplanner.team/stops/NL77ajb", "https://tec.openplanner.team/stops/NL77ala"], ["https://tec.openplanner.team/stops/Cchriga2", "https://tec.openplanner.team/stops/Cchtiro3"], ["https://tec.openplanner.team/stops/H1ms284a", "https://tec.openplanner.team/stops/H1ms903a"], ["https://tec.openplanner.team/stops/X762aea", "https://tec.openplanner.team/stops/X764aca"], ["https://tec.openplanner.team/stops/N565aka", "https://tec.openplanner.team/stops/N565akb"], ["https://tec.openplanner.team/stops/H2ha137b", "https://tec.openplanner.team/stops/H2hg156a"], ["https://tec.openplanner.team/stops/LVLbovy1", "https://tec.openplanner.team/stops/LVLeg--2"], ["https://tec.openplanner.team/stops/LGemari2", "https://tec.openplanner.team/stops/LGevygh2"], ["https://tec.openplanner.team/stops/Lbrdepo1", "https://tec.openplanner.team/stops/Ljuathe2"], ["https://tec.openplanner.team/stops/Lfhncha2", "https://tec.openplanner.team/stops/Lfhtrca1"], ["https://tec.openplanner.team/stops/Bosqcar2", "https://tec.openplanner.team/stops/Btubpir1"], ["https://tec.openplanner.team/stops/X774ada", "https://tec.openplanner.team/stops/X774aea"], ["https://tec.openplanner.team/stops/Cgzmira2", "https://tec.openplanner.team/stops/Cgzoctr3"], ["https://tec.openplanner.team/stops/LBXhacb1", "https://tec.openplanner.team/stops/LMovieu1"], ["https://tec.openplanner.team/stops/Llgcime2", "https://tec.openplanner.team/stops/Llgcrah1"], ["https://tec.openplanner.team/stops/LTEcamp1", "https://tec.openplanner.team/stops/LTEkerk1"], ["https://tec.openplanner.team/stops/LaSbahn1", "https://tec.openplanner.team/stops/LwAprei2"], ["https://tec.openplanner.team/stops/Bove4ko1", "https://tec.openplanner.team/stops/Bovetwe1"], ["https://tec.openplanner.team/stops/N538ayb", "https://tec.openplanner.team/stops/N538azb"], ["https://tec.openplanner.team/stops/H2na133b", "https://tec.openplanner.team/stops/H2na134b"], ["https://tec.openplanner.team/stops/Lemjacq2", "https://tec.openplanner.team/stops/Lemsely2"], ["https://tec.openplanner.team/stops/H1ms275a", "https://tec.openplanner.team/stops/H1ms281b"], ["https://tec.openplanner.team/stops/N539bgb", "https://tec.openplanner.team/stops/N540aja"], ["https://tec.openplanner.team/stops/LFCkerk1", "https://tec.openplanner.team/stops/LFCkerk2"], ["https://tec.openplanner.team/stops/Bspkker2", "https://tec.openplanner.team/stops/Bspkkhe2"], ["https://tec.openplanner.team/stops/X725bia", "https://tec.openplanner.team/stops/X767afa"], ["https://tec.openplanner.team/stops/LEN42--2", "https://tec.openplanner.team/stops/LENsent1"], ["https://tec.openplanner.team/stops/LSOferr1", "https://tec.openplanner.team/stops/LSOferr6"], ["https://tec.openplanner.team/stops/H1je217b", "https://tec.openplanner.team/stops/H1je221b"], ["https://tec.openplanner.team/stops/N351ajc", "https://tec.openplanner.team/stops/N351aua"], ["https://tec.openplanner.team/stops/H4ka191a", "https://tec.openplanner.team/stops/H4ka399a"], ["https://tec.openplanner.team/stops/H1ca101a", "https://tec.openplanner.team/stops/H1sd347a"], ["https://tec.openplanner.team/stops/N117aka", "https://tec.openplanner.team/stops/N117bbb"], ["https://tec.openplanner.team/stops/H4cl113a", "https://tec.openplanner.team/stops/H4cl113b"], ["https://tec.openplanner.team/stops/X999aga", "https://tec.openplanner.team/stops/X999aia"], ["https://tec.openplanner.team/stops/N535ajb", "https://tec.openplanner.team/stops/N535alb"], ["https://tec.openplanner.team/stops/LCLacbi1", "https://tec.openplanner.team/stops/LCLacbi2"], ["https://tec.openplanner.team/stops/LARgare2", "https://tec.openplanner.team/stops/LHAdeho1"], ["https://tec.openplanner.team/stops/Lceleje1", "https://tec.openplanner.team/stops/Lemmeha2"], ["https://tec.openplanner.team/stops/LHAleru1", "https://tec.openplanner.team/stops/LHApthe1"], ["https://tec.openplanner.team/stops/H1mc127a", "https://tec.openplanner.team/stops/H1mc128b"], ["https://tec.openplanner.team/stops/Brixala2", "https://tec.openplanner.team/stops/Brixdec1"], ["https://tec.openplanner.team/stops/X801aja", "https://tec.openplanner.team/stops/X801ajb"], ["https://tec.openplanner.team/stops/Boppegl1", "https://tec.openplanner.team/stops/Boppegl2"], ["https://tec.openplanner.team/stops/H2lc170a", "https://tec.openplanner.team/stops/H2lc172b"], ["https://tec.openplanner.team/stops/H4ne143b", "https://tec.openplanner.team/stops/H4ne145b"], ["https://tec.openplanner.team/stops/Bperqui1", "https://tec.openplanner.team/stops/Bperrsr2"], ["https://tec.openplanner.team/stops/Bnivbos1", "https://tec.openplanner.team/stops/Bnivmat1"], ["https://tec.openplanner.team/stops/X882ala", "https://tec.openplanner.team/stops/X882alb"], ["https://tec.openplanner.team/stops/X922ama", "https://tec.openplanner.team/stops/X922amb"], ["https://tec.openplanner.team/stops/LBieg--3", "https://tec.openplanner.team/stops/LBieg--4"], ["https://tec.openplanner.team/stops/X670aga", "https://tec.openplanner.team/stops/X670akb"], ["https://tec.openplanner.team/stops/Clpnapo2", "https://tec.openplanner.team/stops/Clpsola2"], ["https://tec.openplanner.team/stops/X946agb", "https://tec.openplanner.team/stops/X946aia"], ["https://tec.openplanner.team/stops/Lousite1", "https://tec.openplanner.team/stops/Lousite2"], ["https://tec.openplanner.team/stops/N501gia", "https://tec.openplanner.team/stops/N501giy"], ["https://tec.openplanner.team/stops/LETec--2", "https://tec.openplanner.team/stops/LETeg--1"], ["https://tec.openplanner.team/stops/H4lz118a", "https://tec.openplanner.team/stops/H4lz126b"], ["https://tec.openplanner.team/stops/Crcegli4", "https://tec.openplanner.team/stops/Crcpcom2"], ["https://tec.openplanner.team/stops/H4we136b", "https://tec.openplanner.team/stops/H4we139a"], ["https://tec.openplanner.team/stops/Lcemeta1", "https://tec.openplanner.team/stops/Lcesart1"], ["https://tec.openplanner.team/stops/Lenplac1", "https://tec.openplanner.team/stops/Lenptsa1"], ["https://tec.openplanner.team/stops/Llgchat1", "https://tec.openplanner.team/stops/Llggcha1"], ["https://tec.openplanner.team/stops/LTEkl121", "https://tec.openplanner.team/stops/LTEkl162"], ["https://tec.openplanner.team/stops/N232bab", "https://tec.openplanner.team/stops/N232bsa"], ["https://tec.openplanner.team/stops/Cgxvkho1", "https://tec.openplanner.team/stops/Cmohame1"], ["https://tec.openplanner.team/stops/LBAcere2", "https://tec.openplanner.team/stops/LBAfort1"], ["https://tec.openplanner.team/stops/N155afa", "https://tec.openplanner.team/stops/N155afd"], ["https://tec.openplanner.team/stops/N874aca", "https://tec.openplanner.team/stops/X887aab"], ["https://tec.openplanner.team/stops/LREchif2", "https://tec.openplanner.team/stops/LRErive2"], ["https://tec.openplanner.team/stops/Bnilegl2", "https://tec.openplanner.team/stops/Bnilreg1"], ["https://tec.openplanner.team/stops/LERdeho2", "https://tec.openplanner.team/stops/LHseg--2"], ["https://tec.openplanner.team/stops/LOTcarr1", "https://tec.openplanner.team/stops/LOTcarr2"], ["https://tec.openplanner.team/stops/H1fy142a", "https://tec.openplanner.team/stops/H1fy143a"], ["https://tec.openplanner.team/stops/N501dtb", "https://tec.openplanner.team/stops/N501dtc"], ["https://tec.openplanner.team/stops/X999aeb", "https://tec.openplanner.team/stops/X999afc"], ["https://tec.openplanner.team/stops/X640asa", "https://tec.openplanner.team/stops/X640asb"], ["https://tec.openplanner.team/stops/H1ht126a", "https://tec.openplanner.team/stops/H1ht126b"], ["https://tec.openplanner.team/stops/X982baa", "https://tec.openplanner.team/stops/X982cfa"], ["https://tec.openplanner.team/stops/LVtchai1", "https://tec.openplanner.team/stops/LVtespo1"], ["https://tec.openplanner.team/stops/N117akb", "https://tec.openplanner.team/stops/N117ara"], ["https://tec.openplanner.team/stops/LoDkoll1", "https://tec.openplanner.team/stops/LoDschu1"], ["https://tec.openplanner.team/stops/Lflec--2", "https://tec.openplanner.team/stops/Lflheid2"], ["https://tec.openplanner.team/stops/LGLbrus2", "https://tec.openplanner.team/stops/LGLgeer1"], ["https://tec.openplanner.team/stops/H4ga158a", "https://tec.openplanner.team/stops/H4ga160a"], ["https://tec.openplanner.team/stops/Cvpchat1", "https://tec.openplanner.team/stops/Cvpchat2"], ["https://tec.openplanner.team/stops/X994afa", "https://tec.openplanner.team/stops/X994alb"], ["https://tec.openplanner.team/stops/H2mo123a", "https://tec.openplanner.team/stops/H2mo126b"], ["https://tec.openplanner.team/stops/Blhugai1", "https://tec.openplanner.team/stops/Bohnrph1"], ["https://tec.openplanner.team/stops/H1hr116b", "https://tec.openplanner.team/stops/H1hr129b"], ["https://tec.openplanner.team/stops/X637aea", "https://tec.openplanner.team/stops/X637ala"], ["https://tec.openplanner.team/stops/Btanbth1", "https://tec.openplanner.team/stops/Btanpla3"], ["https://tec.openplanner.team/stops/X614bba", "https://tec.openplanner.team/stops/X614bra"], ["https://tec.openplanner.team/stops/Cvvchea2", "https://tec.openplanner.team/stops/Cvvsncb2"], ["https://tec.openplanner.team/stops/Bblmwma2", "https://tec.openplanner.team/stops/Bchamco1"], ["https://tec.openplanner.team/stops/Llgsnap5", "https://tec.openplanner.team/stops/Llgsorb1"], ["https://tec.openplanner.team/stops/LVEeg--1", "https://tec.openplanner.team/stops/LVEfize2"], ["https://tec.openplanner.team/stops/Lmigare2", "https://tec.openplanner.team/stops/Lmirca-2"], ["https://tec.openplanner.team/stops/X982ata", "https://tec.openplanner.team/stops/X982atb"], ["https://tec.openplanner.team/stops/Lhutann1", "https://tec.openplanner.team/stops/Lhutann2"], ["https://tec.openplanner.team/stops/H1do121a", "https://tec.openplanner.team/stops/H1wi147b"], ["https://tec.openplanner.team/stops/X358aea", "https://tec.openplanner.team/stops/X994ada"], ["https://tec.openplanner.team/stops/Bblafra2", "https://tec.openplanner.team/stops/Bblajap1"], ["https://tec.openplanner.team/stops/LAMdelh*", "https://tec.openplanner.team/stops/LAMhopi2"], ["https://tec.openplanner.team/stops/LOdbuis2", "https://tec.openplanner.team/stops/LVlleme3"], ["https://tec.openplanner.team/stops/H4oq223b", "https://tec.openplanner.team/stops/H4oq228b"], ["https://tec.openplanner.team/stops/Cjojonc1", "https://tec.openplanner.team/stops/NC24aka"], ["https://tec.openplanner.team/stops/H1bl105a", "https://tec.openplanner.team/stops/H1eq115b"], ["https://tec.openplanner.team/stops/Ladboti1", "https://tec.openplanner.team/stops/Ladotto1"], ["https://tec.openplanner.team/stops/H2lh126a", "https://tec.openplanner.team/stops/H2lh129a"], ["https://tec.openplanner.team/stops/H1mj131a", "https://tec.openplanner.team/stops/H1mj132a"], ["https://tec.openplanner.team/stops/N551aga", "https://tec.openplanner.team/stops/N551agc"], ["https://tec.openplanner.team/stops/X907agb", "https://tec.openplanner.team/stops/X908apb"], ["https://tec.openplanner.team/stops/Lpepano1", "https://tec.openplanner.team/stops/Lpepano2"], ["https://tec.openplanner.team/stops/N548aga", "https://tec.openplanner.team/stops/N548agb"], ["https://tec.openplanner.team/stops/Bronn392", "https://tec.openplanner.team/stops/Bvirfpo2"], ["https://tec.openplanner.team/stops/N584avb", "https://tec.openplanner.team/stops/N584cba"], ["https://tec.openplanner.team/stops/Cfrcoqu3", "https://tec.openplanner.team/stops/Cfrgivr2"], ["https://tec.openplanner.team/stops/X637amb", "https://tec.openplanner.team/stops/X637aob"], ["https://tec.openplanner.team/stops/N357abb", "https://tec.openplanner.team/stops/N357adb"], ["https://tec.openplanner.team/stops/LSPchap2", "https://tec.openplanner.team/stops/LSPec--2"], ["https://tec.openplanner.team/stops/X622aea", "https://tec.openplanner.team/stops/X622aeb"], ["https://tec.openplanner.team/stops/N501mca", "https://tec.openplanner.team/stops/N501mcc"], ["https://tec.openplanner.team/stops/LgRha211", "https://tec.openplanner.team/stops/LtH28a-2"], ["https://tec.openplanner.team/stops/Cmllecl4", "https://tec.openplanner.team/stops/Cmlm2412"], ["https://tec.openplanner.team/stops/H4hg157b", "https://tec.openplanner.team/stops/H4hg160b"], ["https://tec.openplanner.team/stops/LKmcabi1", "https://tec.openplanner.team/stops/LKmeg--2"], ["https://tec.openplanner.team/stops/Bosqcar1", "https://tec.openplanner.team/stops/Bvirduj1"], ["https://tec.openplanner.team/stops/H4gz114b", "https://tec.openplanner.team/stops/H4th142a"], ["https://tec.openplanner.team/stops/X609aab", "https://tec.openplanner.team/stops/X609abb"], ["https://tec.openplanner.team/stops/X801bta", "https://tec.openplanner.team/stops/X801bua"], ["https://tec.openplanner.team/stops/LHUdeni4", "https://tec.openplanner.team/stops/LHUeuro2"], ["https://tec.openplanner.team/stops/N501zba", "https://tec.openplanner.team/stops/N501zca"], ["https://tec.openplanner.team/stops/N501gba", "https://tec.openplanner.team/stops/N501loa"], ["https://tec.openplanner.team/stops/LsVfeye1", "https://tec.openplanner.team/stops/LwLkirc1"], ["https://tec.openplanner.team/stops/Cnacroc2", "https://tec.openplanner.team/stops/Cnarmon1"], ["https://tec.openplanner.team/stops/X756aga", "https://tec.openplanner.team/stops/X756agb"], ["https://tec.openplanner.team/stops/N501lia", "https://tec.openplanner.team/stops/N501llb"], ["https://tec.openplanner.team/stops/LAMcoll1", "https://tec.openplanner.team/stops/LAMecse*"], ["https://tec.openplanner.team/stops/LPOeg--1", "https://tec.openplanner.team/stops/LSdcarr1"], ["https://tec.openplanner.team/stops/X359aba", "https://tec.openplanner.team/stops/X359aea"], ["https://tec.openplanner.team/stops/X618amb", "https://tec.openplanner.team/stops/X618ana"], ["https://tec.openplanner.team/stops/LWM759-2", "https://tec.openplanner.team/stops/LWMcent1"], ["https://tec.openplanner.team/stops/LXoharz4", "https://tec.openplanner.team/stops/LXoharz6"], ["https://tec.openplanner.team/stops/Lprcite2", "https://tec.openplanner.team/stops/Lvegazo1"], ["https://tec.openplanner.team/stops/N585aba", "https://tec.openplanner.team/stops/N585abb"], ["https://tec.openplanner.team/stops/N501dob", "https://tec.openplanner.team/stops/N501drb"], ["https://tec.openplanner.team/stops/X725adb", "https://tec.openplanner.team/stops/X725aja"], ["https://tec.openplanner.team/stops/N243acb", "https://tec.openplanner.team/stops/N243aeb"], ["https://tec.openplanner.team/stops/Lsteg--1", "https://tec.openplanner.team/stops/Lstetud2"], ["https://tec.openplanner.team/stops/LeUclou1", "https://tec.openplanner.team/stops/LHtdros2"], ["https://tec.openplanner.team/stops/Cjufagn4", "https://tec.openplanner.team/stops/Cjupoly2"], ["https://tec.openplanner.team/stops/H3bi101a", "https://tec.openplanner.team/stops/H3bi119b"], ["https://tec.openplanner.team/stops/LBLfoxh1", "https://tec.openplanner.team/stops/LBLfoxh2"], ["https://tec.openplanner.team/stops/LVParal1", "https://tec.openplanner.team/stops/LVParal2"], ["https://tec.openplanner.team/stops/X917aha", "https://tec.openplanner.team/stops/X917aja"], ["https://tec.openplanner.team/stops/H4mo140a", "https://tec.openplanner.team/stops/H4mo179a"], ["https://tec.openplanner.team/stops/Lbbviad2", "https://tec.openplanner.team/stops/Lgrorch1"], ["https://tec.openplanner.team/stops/Ctrecol4", "https://tec.openplanner.team/stops/Ctrrpla2"], ["https://tec.openplanner.team/stops/N532abb", "https://tec.openplanner.team/stops/N568abb"], ["https://tec.openplanner.team/stops/N501hcb", "https://tec.openplanner.team/stops/N501mia"], ["https://tec.openplanner.team/stops/LLrchat2", "https://tec.openplanner.team/stops/LLrhaut2"], ["https://tec.openplanner.team/stops/Bsenpeu2", "https://tec.openplanner.team/stops/H2se105a"], ["https://tec.openplanner.team/stops/NR21aaa", "https://tec.openplanner.team/stops/NR21abd"], ["https://tec.openplanner.team/stops/LGHplai2", "https://tec.openplanner.team/stops/X542aga"], ["https://tec.openplanner.team/stops/Csslesc1", "https://tec.openplanner.team/stops/Csslesc2"], ["https://tec.openplanner.team/stops/X876aba", "https://tec.openplanner.team/stops/X876aeb"], ["https://tec.openplanner.team/stops/X780aia", "https://tec.openplanner.team/stops/X780aja"], ["https://tec.openplanner.team/stops/LFLetoi1", "https://tec.openplanner.team/stops/LSpunio2"], ["https://tec.openplanner.team/stops/Bbxlmid1", "https://tec.openplanner.team/stops/Buccbou1"], ["https://tec.openplanner.team/stops/Crarmas1", "https://tec.openplanner.team/stops/Crarmas2"], ["https://tec.openplanner.team/stops/LESgran1", "https://tec.openplanner.team/stops/LEShony2"], ["https://tec.openplanner.team/stops/X672aab", "https://tec.openplanner.team/stops/X817agb"], ["https://tec.openplanner.team/stops/X640aob", "https://tec.openplanner.team/stops/X642aac"], ["https://tec.openplanner.team/stops/X759aaa", "https://tec.openplanner.team/stops/X759aea"], ["https://tec.openplanner.team/stops/X620aab", "https://tec.openplanner.team/stops/X621aaa"], ["https://tec.openplanner.team/stops/X659aea", "https://tec.openplanner.team/stops/X659aeb"], ["https://tec.openplanner.team/stops/H4gu108b", "https://tec.openplanner.team/stops/H4we138a"], ["https://tec.openplanner.team/stops/X739aea", "https://tec.openplanner.team/stops/X779adb"], ["https://tec.openplanner.team/stops/X650aab", "https://tec.openplanner.team/stops/X650amb"], ["https://tec.openplanner.team/stops/Cmonvci1", "https://tec.openplanner.team/stops/Cmovies1"], ["https://tec.openplanner.team/stops/LSTchat2", "https://tec.openplanner.team/stops/LSTcomm1"], ["https://tec.openplanner.team/stops/Cchcase1", "https://tec.openplanner.team/stops/CMjans1"], ["https://tec.openplanner.team/stops/N390aca", "https://tec.openplanner.team/stops/N390acb"], ["https://tec.openplanner.team/stops/Ccuhsti2", "https://tec.openplanner.team/stops/NC02aob"], ["https://tec.openplanner.team/stops/X937adb", "https://tec.openplanner.team/stops/X937aib"], ["https://tec.openplanner.team/stops/Cfaheni4", "https://tec.openplanner.team/stops/Cfamonu8"], ["https://tec.openplanner.team/stops/N209ana", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/Bmargve1", "https://tec.openplanner.team/stops/Bmargve2"], ["https://tec.openplanner.team/stops/Brebmtg1", "https://tec.openplanner.team/stops/Brebmtg2"], ["https://tec.openplanner.team/stops/X307adb", "https://tec.openplanner.team/stops/X317aaa"], ["https://tec.openplanner.team/stops/X892ada", "https://tec.openplanner.team/stops/X892aha"], ["https://tec.openplanner.team/stops/X758aha", "https://tec.openplanner.team/stops/X758ahb"], ["https://tec.openplanner.team/stops/N229aja", "https://tec.openplanner.team/stops/N229ala"], ["https://tec.openplanner.team/stops/LwL100-1", "https://tec.openplanner.team/stops/LwL100-2"], ["https://tec.openplanner.team/stops/X780abb", "https://tec.openplanner.team/stops/X790aaa"], ["https://tec.openplanner.team/stops/Lgrramp1", "https://tec.openplanner.team/stops/Lgrramp2"], ["https://tec.openplanner.team/stops/Lan14ve2", "https://tec.openplanner.team/stops/Lanclon1"], ["https://tec.openplanner.team/stops/LwYsour3", "https://tec.openplanner.team/stops/LwYsour4"], ["https://tec.openplanner.team/stops/N584bab", "https://tec.openplanner.team/stops/N584bba"], ["https://tec.openplanner.team/stops/N118aaa", "https://tec.openplanner.team/stops/N118aia"], ["https://tec.openplanner.team/stops/H1ha187b", "https://tec.openplanner.team/stops/H1ha197a"], ["https://tec.openplanner.team/stops/X664aba", "https://tec.openplanner.team/stops/X664add"], ["https://tec.openplanner.team/stops/Cprrvil1", "https://tec.openplanner.team/stops/NC11ama"], ["https://tec.openplanner.team/stops/Baudsta2", "https://tec.openplanner.team/stops/Baudulb2"], ["https://tec.openplanner.team/stops/H1bo106a", "https://tec.openplanner.team/stops/H1bo106b"], ["https://tec.openplanner.team/stops/Lhrlico1", "https://tec.openplanner.team/stops/Lhrlico3"], ["https://tec.openplanner.team/stops/Cfbcabi1", "https://tec.openplanner.team/stops/Cfcecol4"], ["https://tec.openplanner.team/stops/LBBcamp2", "https://tec.openplanner.team/stops/NL82agb"], ["https://tec.openplanner.team/stops/X652adb", "https://tec.openplanner.team/stops/X652aha"], ["https://tec.openplanner.team/stops/Csbberg1", "https://tec.openplanner.team/stops/H1sa112a"], ["https://tec.openplanner.team/stops/N101aja", "https://tec.openplanner.team/stops/N116aac"], ["https://tec.openplanner.team/stops/H1do126b", "https://tec.openplanner.team/stops/H1do130b"], ["https://tec.openplanner.team/stops/X625aba", "https://tec.openplanner.team/stops/X625abb"], ["https://tec.openplanner.team/stops/H1ms272a", "https://tec.openplanner.team/stops/H1sp356b"], ["https://tec.openplanner.team/stops/N501hma", "https://tec.openplanner.team/stops/N501iaa"], ["https://tec.openplanner.team/stops/H1ob328b", "https://tec.openplanner.team/stops/H1sd343a"], ["https://tec.openplanner.team/stops/LAmwaut1", "https://tec.openplanner.team/stops/LNHhome1"], ["https://tec.openplanner.team/stops/LJvbane1", "https://tec.openplanner.team/stops/X781aaa"], ["https://tec.openplanner.team/stops/X820aab", "https://tec.openplanner.team/stops/X822ama"], ["https://tec.openplanner.team/stops/H4ag106b", "https://tec.openplanner.team/stops/H4br110a"], ["https://tec.openplanner.team/stops/H2ha132a", "https://tec.openplanner.team/stops/H2ha132b"], ["https://tec.openplanner.team/stops/LLrelec1", "https://tec.openplanner.team/stops/LLrlour1"], ["https://tec.openplanner.team/stops/Cfvombo2", "https://tec.openplanner.team/stops/Clfmonu2"], ["https://tec.openplanner.team/stops/Lvegc--5", "https://tec.openplanner.team/stops/Lvegc--6"], ["https://tec.openplanner.team/stops/X735aba", "https://tec.openplanner.team/stops/X735acb"], ["https://tec.openplanner.team/stops/Bchgbel1", "https://tec.openplanner.team/stops/Bchgbru2"], ["https://tec.openplanner.team/stops/X661apb", "https://tec.openplanner.team/stops/X661aqb"], ["https://tec.openplanner.team/stops/Csshouy1", "https://tec.openplanner.team/stops/Csslesc2"], ["https://tec.openplanner.team/stops/X611aba", "https://tec.openplanner.team/stops/X645aab"], ["https://tec.openplanner.team/stops/LESmont1", "https://tec.openplanner.team/stops/LESpont3"], ["https://tec.openplanner.team/stops/H4hx117b", "https://tec.openplanner.team/stops/H4hx119b"], ["https://tec.openplanner.team/stops/X666adb", "https://tec.openplanner.team/stops/X666ama"], ["https://tec.openplanner.team/stops/Bcsegal2", "https://tec.openplanner.team/stops/Bcsemar2"], ["https://tec.openplanner.team/stops/Lhr4ave2", "https://tec.openplanner.team/stops/Lhrmeta1"], ["https://tec.openplanner.team/stops/LBQmaye1", "https://tec.openplanner.team/stops/N223aba"], ["https://tec.openplanner.team/stops/N522aca", "https://tec.openplanner.team/stops/N541acb"], ["https://tec.openplanner.team/stops/N503aca", "https://tec.openplanner.team/stops/N503adb"], ["https://tec.openplanner.team/stops/Cmtgrim1", "https://tec.openplanner.team/stops/Cmtgrim2"], ["https://tec.openplanner.team/stops/LFEland1", "https://tec.openplanner.team/stops/LFEmala1"], ["https://tec.openplanner.team/stops/X890adb", "https://tec.openplanner.team/stops/X890aga"], ["https://tec.openplanner.team/stops/LLrbuis2", "https://tec.openplanner.team/stops/LLrfagn1"], ["https://tec.openplanner.team/stops/X898amb", "https://tec.openplanner.team/stops/X898anb"], ["https://tec.openplanner.team/stops/LHolexh2", "https://tec.openplanner.team/stops/LHZ8mai1"], ["https://tec.openplanner.team/stops/Cfanvmo1", "https://tec.openplanner.team/stops/Cpictra1"], ["https://tec.openplanner.team/stops/Blanmde1", "https://tec.openplanner.team/stops/Brach122"], ["https://tec.openplanner.team/stops/Crseuro1", "https://tec.openplanner.team/stops/Crsprai4"], ["https://tec.openplanner.team/stops/H5at122a", "https://tec.openplanner.team/stops/H5la177a"], ["https://tec.openplanner.team/stops/H4fa126d", "https://tec.openplanner.team/stops/H4fa127a"], ["https://tec.openplanner.team/stops/Bheneco1", "https://tec.openplanner.team/stops/Bhenpla1"], ["https://tec.openplanner.team/stops/LHTdelh2", "https://tec.openplanner.team/stops/LHTeg--1"], ["https://tec.openplanner.team/stops/LDmwaef2", "https://tec.openplanner.team/stops/LSBjoli1"], ["https://tec.openplanner.team/stops/H2re163a", "https://tec.openplanner.team/stops/H2re167a"], ["https://tec.openplanner.team/stops/H4ty282a", "https://tec.openplanner.team/stops/H4ty339b"], ["https://tec.openplanner.team/stops/N423aaa", "https://tec.openplanner.team/stops/N423afa"], ["https://tec.openplanner.team/stops/X601daa", "https://tec.openplanner.team/stops/X601dha"], ["https://tec.openplanner.team/stops/N131aga", "https://tec.openplanner.team/stops/N131aha"], ["https://tec.openplanner.team/stops/LVncarr2", "https://tec.openplanner.team/stops/LVnourt2"], ["https://tec.openplanner.team/stops/H1hw124b", "https://tec.openplanner.team/stops/H1mc129b"], ["https://tec.openplanner.team/stops/H4ty307b", "https://tec.openplanner.team/stops/H4ty339a"], ["https://tec.openplanner.team/stops/X754aab", "https://tec.openplanner.team/stops/X754abb"], ["https://tec.openplanner.team/stops/Lligare*", "https://tec.openplanner.team/stops/Lligare2"], ["https://tec.openplanner.team/stops/X903afa", "https://tec.openplanner.team/stops/X903afb"], ["https://tec.openplanner.team/stops/Ctabaty2", "https://tec.openplanner.team/stops/Ctabaty3"], ["https://tec.openplanner.team/stops/Cbcha651", "https://tec.openplanner.team/stops/Cthstre2"], ["https://tec.openplanner.team/stops/Blpgbat1", "https://tec.openplanner.team/stops/Blpghou2"], ["https://tec.openplanner.team/stops/X354aba", "https://tec.openplanner.team/stops/X354abb"], ["https://tec.openplanner.team/stops/LFTec--3", "https://tec.openplanner.team/stops/LFTeg--1"], ["https://tec.openplanner.team/stops/Bnodblt1", "https://tec.openplanner.team/stops/Bnodblt2"], ["https://tec.openplanner.team/stops/Bosqcar1", "https://tec.openplanner.team/stops/Btubbot1"], ["https://tec.openplanner.team/stops/Cmapeet1", "https://tec.openplanner.team/stops/Cmaroya2"], ["https://tec.openplanner.team/stops/Lagindu1", "https://tec.openplanner.team/stops/Lagorch1"], ["https://tec.openplanner.team/stops/H2ep144a", "https://tec.openplanner.team/stops/H2ep145b"], ["https://tec.openplanner.team/stops/Cci4091", "https://tec.openplanner.team/stops/Cmtprey1"], ["https://tec.openplanner.team/stops/X639aba", "https://tec.openplanner.team/stops/X639acd"], ["https://tec.openplanner.team/stops/Bblacha1", "https://tec.openplanner.team/stops/Bblamsp4"], ["https://tec.openplanner.team/stops/LFPgeme1", "https://tec.openplanner.team/stops/LFPkerk1"], ["https://tec.openplanner.team/stops/X822aoa", "https://tec.openplanner.team/stops/X822apa"], ["https://tec.openplanner.team/stops/H1ms263b", "https://tec.openplanner.team/stops/H1ms275a"], ["https://tec.openplanner.team/stops/H4ht172a", "https://tec.openplanner.team/stops/H4la198a"], ["https://tec.openplanner.team/stops/Bnivmon2", "https://tec.openplanner.team/stops/Bptrvil1"], ["https://tec.openplanner.team/stops/X789ahb", "https://tec.openplanner.team/stops/X789ahd"], ["https://tec.openplanner.team/stops/H2hp261a", "https://tec.openplanner.team/stops/H2hp262a"], ["https://tec.openplanner.team/stops/H4fg116b", "https://tec.openplanner.team/stops/H4wn138b"], ["https://tec.openplanner.team/stops/H4gu109b", "https://tec.openplanner.team/stops/H4gu110a"], ["https://tec.openplanner.team/stops/H2bh112b", "https://tec.openplanner.team/stops/H2fy123c"], ["https://tec.openplanner.team/stops/N120aoc", "https://tec.openplanner.team/stops/N301aha"], ["https://tec.openplanner.team/stops/H2ca104b", "https://tec.openplanner.team/stops/H2ca112a"], ["https://tec.openplanner.team/stops/N553aab", "https://tec.openplanner.team/stops/N553aac"], ["https://tec.openplanner.team/stops/LWAaxhe2", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://tec.openplanner.team/stops/Bcbqcht1", "https://tec.openplanner.team/stops/Bcbqcht2"], ["https://tec.openplanner.team/stops/H1pd146a", "https://tec.openplanner.team/stops/H1wg127b"], ["https://tec.openplanner.team/stops/H2mg149b", "https://tec.openplanner.team/stops/H2se113b"], ["https://tec.openplanner.team/stops/Cgofert2", "https://tec.openplanner.team/stops/Cvvchea1"], ["https://tec.openplanner.team/stops/H5fl100a", "https://tec.openplanner.team/stops/H5wo128a"], ["https://tec.openplanner.team/stops/X828aaa", "https://tec.openplanner.team/stops/X829aab"], ["https://tec.openplanner.team/stops/N501ldb", "https://tec.openplanner.team/stops/N538aab"], ["https://tec.openplanner.team/stops/Bbaulil2", "https://tec.openplanner.team/stops/Bnivsnu2"], ["https://tec.openplanner.team/stops/H4ce103a", "https://tec.openplanner.team/stops/H4ce103b"], ["https://tec.openplanner.team/stops/H1ca107b", "https://tec.openplanner.team/stops/H1ca184a"], ["https://tec.openplanner.team/stops/LmNkrew1", "https://tec.openplanner.team/stops/X685apa"], ["https://tec.openplanner.team/stops/Llgfusc6", "https://tec.openplanner.team/stops/Llgvero1"], ["https://tec.openplanner.team/stops/H1ms301a", "https://tec.openplanner.team/stops/H1ms903a"], ["https://tec.openplanner.team/stops/N106aib", "https://tec.openplanner.team/stops/N106akb"], ["https://tec.openplanner.team/stops/X661afa", "https://tec.openplanner.team/stops/X661atb"], ["https://tec.openplanner.team/stops/X604afa", "https://tec.openplanner.team/stops/X604ama"], ["https://tec.openplanner.team/stops/N501gaa", "https://tec.openplanner.team/stops/N501gre"], ["https://tec.openplanner.team/stops/Clusncb1", "https://tec.openplanner.team/stops/Cpcarse2"], ["https://tec.openplanner.team/stops/Buccdch1", "https://tec.openplanner.team/stops/Buccmer1"], ["https://tec.openplanner.team/stops/LFAscie2", "https://tec.openplanner.team/stops/LFUfleu2"], ["https://tec.openplanner.team/stops/Bbcohou4", "https://tec.openplanner.team/stops/Bbcomar2"], ["https://tec.openplanner.team/stops/Cmachau1", "https://tec.openplanner.team/stops/Cmastni2"], ["https://tec.openplanner.team/stops/LSAjacq1", "https://tec.openplanner.team/stops/LSAjacq2"], ["https://tec.openplanner.team/stops/X979aba", "https://tec.openplanner.team/stops/X979aca"], ["https://tec.openplanner.team/stops/Lchmarc2", "https://tec.openplanner.team/stops/LHAdeho1"], ["https://tec.openplanner.team/stops/H2ep172a", "https://tec.openplanner.team/stops/H2re175a"], ["https://tec.openplanner.team/stops/Bwatpro1", "https://tec.openplanner.team/stops/Bwatprp2"], ["https://tec.openplanner.team/stops/LLrbano1", "https://tec.openplanner.team/stops/LLrbano2"], ["https://tec.openplanner.team/stops/Cstdona1", "https://tec.openplanner.team/stops/Cstdona6"], ["https://tec.openplanner.team/stops/H1cv101a", "https://tec.openplanner.team/stops/H1hh116a"], ["https://tec.openplanner.team/stops/X601dfa", "https://tec.openplanner.team/stops/X612aaa"], ["https://tec.openplanner.team/stops/LnNkirc1", "https://tec.openplanner.team/stops/LnNzent2"], ["https://tec.openplanner.team/stops/Bwatmco1", "https://tec.openplanner.team/stops/Bwatnro1"], ["https://tec.openplanner.team/stops/H2ch105a", "https://tec.openplanner.team/stops/H2ch105b"], ["https://tec.openplanner.team/stops/Clrecol2", "https://tec.openplanner.team/stops/Clrwesp1"], ["https://tec.openplanner.team/stops/N301aab", "https://tec.openplanner.team/stops/N301aia"], ["https://tec.openplanner.team/stops/Ccuphai4", "https://tec.openplanner.team/stops/Ccuwain2"], ["https://tec.openplanner.team/stops/Cgzcour1", "https://tec.openplanner.team/stops/Cgzm1481"], ["https://tec.openplanner.team/stops/LDmhave2", "https://tec.openplanner.team/stops/LSGhagn1"], ["https://tec.openplanner.team/stops/N167aga", "https://tec.openplanner.team/stops/N550amb"], ["https://tec.openplanner.team/stops/Cjuregi2", "https://tec.openplanner.team/stops/CMbert1"], ["https://tec.openplanner.team/stops/NL77aga", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/LLTgole1", "https://tec.openplanner.team/stops/LLTther2"], ["https://tec.openplanner.team/stops/X664aba", "https://tec.openplanner.team/stops/X667adb"], ["https://tec.openplanner.team/stops/LKmcite1", "https://tec.openplanner.team/stops/LOdkeme1"], ["https://tec.openplanner.team/stops/Lgrlimi2", "https://tec.openplanner.team/stops/Llgmulh1"], ["https://tec.openplanner.team/stops/H1qp150b", "https://tec.openplanner.team/stops/H1qy134a"], ["https://tec.openplanner.team/stops/N501dba", "https://tec.openplanner.team/stops/N533agb"], ["https://tec.openplanner.team/stops/Barchez2", "https://tec.openplanner.team/stops/Barchoc2"], ["https://tec.openplanner.team/stops/H1le124a", "https://tec.openplanner.team/stops/H1le128b"], ["https://tec.openplanner.team/stops/LRmkerk1", "https://tec.openplanner.team/stops/LRmkult1"], ["https://tec.openplanner.team/stops/H1au100b", "https://tec.openplanner.team/stops/H1mr124b"], ["https://tec.openplanner.team/stops/LHAclin2", "https://tec.openplanner.team/stops/LVIhala4"], ["https://tec.openplanner.team/stops/H1fr107b", "https://tec.openplanner.team/stops/H1fr107e"], ["https://tec.openplanner.team/stops/X760afa", "https://tec.openplanner.team/stops/X760aga"], ["https://tec.openplanner.team/stops/LWZeg--1", "https://tec.openplanner.team/stops/X261aab"], ["https://tec.openplanner.team/stops/H4ws158a", "https://tec.openplanner.team/stops/H4ws158b"], ["https://tec.openplanner.team/stops/Cbimonu2", "https://tec.openplanner.team/stops/Cthenmi1"], ["https://tec.openplanner.team/stops/Ltibalt1", "https://tec.openplanner.team/stops/Ltibell1"], ["https://tec.openplanner.team/stops/H5rx102a", "https://tec.openplanner.team/stops/H5rx102b"], ["https://tec.openplanner.team/stops/LnErech2", "https://tec.openplanner.team/stops/LrEborn1"], ["https://tec.openplanner.team/stops/Cvpplan1", "https://tec.openplanner.team/stops/Cvpplan2"], ["https://tec.openplanner.team/stops/X780afa", "https://tec.openplanner.team/stops/X780aga"], ["https://tec.openplanner.team/stops/Cbwegl2", "https://tec.openplanner.team/stops/H1ro131b"], ["https://tec.openplanner.team/stops/LMObouh1", "https://tec.openplanner.team/stops/LMOfrel1"], ["https://tec.openplanner.team/stops/LCleg--2", "https://tec.openplanner.team/stops/LCltrib1"], ["https://tec.openplanner.team/stops/N516aob", "https://tec.openplanner.team/stops/N516aoc"], ["https://tec.openplanner.team/stops/N338afb", "https://tec.openplanner.team/stops/N387abb"], ["https://tec.openplanner.team/stops/N517adc", "https://tec.openplanner.team/stops/N581aaa"], ["https://tec.openplanner.team/stops/H5pe132a", "https://tec.openplanner.team/stops/H5pe149a"], ["https://tec.openplanner.team/stops/X943aga", "https://tec.openplanner.team/stops/X943agb"], ["https://tec.openplanner.team/stops/H1el135a", "https://tec.openplanner.team/stops/H1wi151b"], ["https://tec.openplanner.team/stops/Lmndari2", "https://tec.openplanner.team/stops/Lsmjalh2"], ["https://tec.openplanner.team/stops/H4mo169a", "https://tec.openplanner.team/stops/H4mo190b"], ["https://tec.openplanner.team/stops/LFAscie1", "https://tec.openplanner.team/stops/LFUfleu1"], ["https://tec.openplanner.team/stops/Bwspbbo1", "https://tec.openplanner.team/stops/Bwspbbo2"], ["https://tec.openplanner.team/stops/Livvill1", "https://tec.openplanner.team/stops/Livvill2"], ["https://tec.openplanner.team/stops/H4ma204a", "https://tec.openplanner.team/stops/H4ma205a"], ["https://tec.openplanner.team/stops/Ccifies1", "https://tec.openplanner.team/stops/Ccifies2"], ["https://tec.openplanner.team/stops/NL68aba", "https://tec.openplanner.team/stops/NL68abb"], ["https://tec.openplanner.team/stops/H1eo104a", "https://tec.openplanner.team/stops/H1eo104b"], ["https://tec.openplanner.team/stops/Bmrlcch1", "https://tec.openplanner.team/stops/Bmrlnce1"], ["https://tec.openplanner.team/stops/N127aaa", "https://tec.openplanner.team/stops/N127aba"], ["https://tec.openplanner.team/stops/Lvtlimi1", "https://tec.openplanner.team/stops/Lvtlimi2"], ["https://tec.openplanner.team/stops/Cfocobe1", "https://tec.openplanner.team/stops/Cforpet2"], ["https://tec.openplanner.team/stops/X948aaa", "https://tec.openplanner.team/stops/X948bbb"], ["https://tec.openplanner.team/stops/N519aca", "https://tec.openplanner.team/stops/N519acb"], ["https://tec.openplanner.team/stops/Lstbarb2", "https://tec.openplanner.team/stops/Lstphys2"], ["https://tec.openplanner.team/stops/LbO52--1", "https://tec.openplanner.team/stops/LbOhoff1"], ["https://tec.openplanner.team/stops/LSEcent1", "https://tec.openplanner.team/stops/LSEec--1"], ["https://tec.openplanner.team/stops/Bhevcur2", "https://tec.openplanner.team/stops/Bmsgmon1"], ["https://tec.openplanner.team/stops/Lvefluc2", "https://tec.openplanner.team/stops/Lvehoug2"], ["https://tec.openplanner.team/stops/Bbcoeca1", "https://tec.openplanner.team/stops/Bbcoeco2"], ["https://tec.openplanner.team/stops/H5rx127a", "https://tec.openplanner.team/stops/H5rx148a"], ["https://tec.openplanner.team/stops/H2ll182a", "https://tec.openplanner.team/stops/H2ll257d"], ["https://tec.openplanner.team/stops/Bspkbeu2", "https://tec.openplanner.team/stops/Bspkdon2"], ["https://tec.openplanner.team/stops/X823aea", "https://tec.openplanner.team/stops/X824agb"], ["https://tec.openplanner.team/stops/H2hl111b", "https://tec.openplanner.team/stops/H2sv214a"], ["https://tec.openplanner.team/stops/H1at108b", "https://tec.openplanner.team/stops/H1fy142a"], ["https://tec.openplanner.team/stops/LaNdord1", "https://tec.openplanner.team/stops/LaNmuhl2"], ["https://tec.openplanner.team/stops/Bwatfva1", "https://tec.openplanner.team/stops/Bwatgla1"], ["https://tec.openplanner.team/stops/N562atb", "https://tec.openplanner.team/stops/N562aya"], ["https://tec.openplanner.team/stops/Bixllep1", "https://tec.openplanner.team/stops/Bixllep2"], ["https://tec.openplanner.team/stops/LhOokat2", "https://tec.openplanner.team/stops/LhOukat1"], ["https://tec.openplanner.team/stops/Lprfoot2", "https://tec.openplanner.team/stops/Lprpous2"], ["https://tec.openplanner.team/stops/X670ada", "https://tec.openplanner.team/stops/X670aga"], ["https://tec.openplanner.team/stops/Canmonu3", "https://tec.openplanner.team/stops/Canmonu5"], ["https://tec.openplanner.team/stops/Bsamc7d2", "https://tec.openplanner.team/stops/Bsammon1"], ["https://tec.openplanner.team/stops/LTobilz1", "https://tec.openplanner.team/stops/LTobilz2"], ["https://tec.openplanner.team/stops/N135aea", "https://tec.openplanner.team/stops/N135aoa"], ["https://tec.openplanner.team/stops/LTolijn*", "https://tec.openplanner.team/stops/LWidepo2"], ["https://tec.openplanner.team/stops/Cbbcrbo1", "https://tec.openplanner.team/stops/Cbmgare1"], ["https://tec.openplanner.team/stops/N509aqa", "https://tec.openplanner.team/stops/N509ava"], ["https://tec.openplanner.team/stops/LsVbell2", "https://tec.openplanner.team/stops/LsVfrde1"], ["https://tec.openplanner.team/stops/H1ba110b", "https://tec.openplanner.team/stops/H1qu111b"], ["https://tec.openplanner.team/stops/Bohnmes1", "https://tec.openplanner.team/stops/Bohnmes2"], ["https://tec.openplanner.team/stops/Bezeksj2", "https://tec.openplanner.team/stops/Bneelaa2"], ["https://tec.openplanner.team/stops/X725aea", "https://tec.openplanner.team/stops/X725aza"], ["https://tec.openplanner.team/stops/LeUgulc1", "https://tec.openplanner.team/stops/LeUmalm2"], ["https://tec.openplanner.team/stops/H5pe141b", "https://tec.openplanner.team/stops/H5pe147a"], ["https://tec.openplanner.team/stops/Bbchdra1", "https://tec.openplanner.team/stops/Bbchrra2"], ["https://tec.openplanner.team/stops/X719aca", "https://tec.openplanner.team/stops/X720abb"], ["https://tec.openplanner.team/stops/Bbaualz2", "https://tec.openplanner.team/stops/Bnivhon1"], ["https://tec.openplanner.team/stops/LhLbalt1", "https://tec.openplanner.team/stops/LhLdorf2"], ["https://tec.openplanner.team/stops/Bfledpi1", "https://tec.openplanner.team/stops/Cflchap3"], ["https://tec.openplanner.team/stops/LHTcarr1", "https://tec.openplanner.team/stops/LHTptha4"], ["https://tec.openplanner.team/stops/X358abb", "https://tec.openplanner.team/stops/X358ada"], ["https://tec.openplanner.team/stops/Lmieg--1", "https://tec.openplanner.team/stops/Lmihale2"], ["https://tec.openplanner.team/stops/X979ada", "https://tec.openplanner.team/stops/X979aoa"], ["https://tec.openplanner.team/stops/H3th135c", "https://tec.openplanner.team/stops/H3th135d"], ["https://tec.openplanner.team/stops/LFPzwaa1", "https://tec.openplanner.team/stops/LSJgrae1"], ["https://tec.openplanner.team/stops/Lagcler2", "https://tec.openplanner.team/stops/Lagtilf2"], ["https://tec.openplanner.team/stops/Lhutill2", "https://tec.openplanner.team/stops/Lveherl2"], ["https://tec.openplanner.team/stops/X994aeb", "https://tec.openplanner.team/stops/X995afa"], ["https://tec.openplanner.team/stops/X724aeb", "https://tec.openplanner.team/stops/X724afb"], ["https://tec.openplanner.team/stops/N501eta", "https://tec.openplanner.team/stops/N501ety"], ["https://tec.openplanner.team/stops/LBSchpl1", "https://tec.openplanner.team/stops/LRGchap2"], ["https://tec.openplanner.team/stops/Bbxlfro1", "https://tec.openplanner.team/stops/Bbxlner1"], ["https://tec.openplanner.team/stops/Cchsud16", "https://tec.openplanner.team/stops/Cchsud18"], ["https://tec.openplanner.team/stops/Lsnhorl1", "https://tec.openplanner.team/stops/Lsnvand3"], ["https://tec.openplanner.team/stops/LHMchbl2", "https://tec.openplanner.team/stops/LSIespe1"], ["https://tec.openplanner.team/stops/H4de112a", "https://tec.openplanner.team/stops/H4de112b"], ["https://tec.openplanner.team/stops/H5bl120a", "https://tec.openplanner.team/stops/H5gr135a"], ["https://tec.openplanner.team/stops/N543aaa", "https://tec.openplanner.team/stops/N543aeb"], ["https://tec.openplanner.team/stops/Lfhchaf3", "https://tec.openplanner.team/stops/LRacime1"], ["https://tec.openplanner.team/stops/H1mq199b", "https://tec.openplanner.team/stops/H5is170b"], ["https://tec.openplanner.team/stops/Lrc594-1", "https://tec.openplanner.team/stops/Lrcarse2"], ["https://tec.openplanner.team/stops/Cflsabl1", "https://tec.openplanner.team/stops/Cwgpatr1"], ["https://tec.openplanner.team/stops/LTRsain3", "https://tec.openplanner.team/stops/LTRthie1"], ["https://tec.openplanner.team/stops/Lchcomm1", "https://tec.openplanner.team/stops/Lchsaeg1"], ["https://tec.openplanner.team/stops/Lfhmalv1", "https://tec.openplanner.team/stops/Lfhnrou1"], ["https://tec.openplanner.team/stops/H1em110a", "https://tec.openplanner.team/stops/H1hl129a"], ["https://tec.openplanner.team/stops/X985aeb", "https://tec.openplanner.team/stops/X985ahb"], ["https://tec.openplanner.team/stops/H1ca105a", "https://tec.openplanner.team/stops/H1ma233c"], ["https://tec.openplanner.team/stops/H4ce104a", "https://tec.openplanner.team/stops/H4ce106a"], ["https://tec.openplanner.team/stops/Bwatcpe1", "https://tec.openplanner.team/stops/Bwatgge1"], ["https://tec.openplanner.team/stops/Lmocail1", "https://tec.openplanner.team/stops/Lmochar2"], ["https://tec.openplanner.team/stops/X922aga", "https://tec.openplanner.team/stops/X922ala"], ["https://tec.openplanner.team/stops/Llggcha4", "https://tec.openplanner.team/stops/Lsntvbi3"], ["https://tec.openplanner.team/stops/Cmocalv4", "https://tec.openplanner.team/stops/Cmoruau2"], ["https://tec.openplanner.team/stops/X616aeb", "https://tec.openplanner.team/stops/X624aka"], ["https://tec.openplanner.team/stops/Ccoh1211", "https://tec.openplanner.team/stops/Ccoh1212"], ["https://tec.openplanner.team/stops/LhP25--1", "https://tec.openplanner.team/stops/LhPprum1"], ["https://tec.openplanner.team/stops/Bjodcdt1", "https://tec.openplanner.team/stops/Bjodpce2"], ["https://tec.openplanner.team/stops/Llgancd1", "https://tec.openplanner.team/stops/Llgmont1"], ["https://tec.openplanner.team/stops/H4ga163a", "https://tec.openplanner.team/stops/H4ha167b"], ["https://tec.openplanner.team/stops/LBLfoxh1", "https://tec.openplanner.team/stops/LMoeg--1"], ["https://tec.openplanner.team/stops/Csedoua5", "https://tec.openplanner.team/stops/Csepote1"], ["https://tec.openplanner.team/stops/Cmohame2", "https://tec.openplanner.team/stops/Cmychpl2"], ["https://tec.openplanner.team/stops/H1si152b", "https://tec.openplanner.team/stops/H1si169a"], ["https://tec.openplanner.team/stops/H1mb128a", "https://tec.openplanner.team/stops/H1mb129a"], ["https://tec.openplanner.team/stops/Lprceri1", "https://tec.openplanner.team/stops/Lprmana2"], ["https://tec.openplanner.team/stops/H1hl125a", "https://tec.openplanner.team/stops/H1hl129a"], ["https://tec.openplanner.team/stops/H1bo101a", "https://tec.openplanner.team/stops/H1hi123b"], ["https://tec.openplanner.team/stops/LRUhama1", "https://tec.openplanner.team/stops/LRUhama2"], ["https://tec.openplanner.team/stops/Cchba03", "https://tec.openplanner.team/stops/Cchba05"], ["https://tec.openplanner.team/stops/X759aeb", "https://tec.openplanner.team/stops/X839aea"], ["https://tec.openplanner.team/stops/N501hqa", "https://tec.openplanner.team/stops/N501htb"], ["https://tec.openplanner.team/stops/N539aqa", "https://tec.openplanner.team/stops/N539bdb"], ["https://tec.openplanner.team/stops/N501dwa", "https://tec.openplanner.team/stops/N501eaa"], ["https://tec.openplanner.team/stops/LAWlonc2", "https://tec.openplanner.team/stops/LAWxhen2"], ["https://tec.openplanner.team/stops/X663awb", "https://tec.openplanner.team/stops/X663axb"], ["https://tec.openplanner.team/stops/H1he100a", "https://tec.openplanner.team/stops/H1he102a"], ["https://tec.openplanner.team/stops/LVthest2", "https://tec.openplanner.team/stops/LVttarg2"], ["https://tec.openplanner.team/stops/LENcroi1", "https://tec.openplanner.team/stops/LENmc--1"], ["https://tec.openplanner.team/stops/Btieast1", "https://tec.openplanner.team/stops/Btiegoo2"], ["https://tec.openplanner.team/stops/N539aha", "https://tec.openplanner.team/stops/N539ahb"], ["https://tec.openplanner.team/stops/H2an104a", "https://tec.openplanner.team/stops/H2an104b"], ["https://tec.openplanner.team/stops/X716aca", "https://tec.openplanner.team/stops/X716aea"], ["https://tec.openplanner.team/stops/X604aka", "https://tec.openplanner.team/stops/X604akb"], ["https://tec.openplanner.team/stops/N232bgb", "https://tec.openplanner.team/stops/N232blb"], ["https://tec.openplanner.team/stops/X870aea", "https://tec.openplanner.team/stops/X879aeb"], ["https://tec.openplanner.team/stops/H5at113a", "https://tec.openplanner.team/stops/H5at114a"], ["https://tec.openplanner.team/stops/N562alb", "https://tec.openplanner.team/stops/N570aaa"], ["https://tec.openplanner.team/stops/H4ne134a", "https://tec.openplanner.team/stops/H4ne142a"], ["https://tec.openplanner.team/stops/X754asb", "https://tec.openplanner.team/stops/X754aua"], ["https://tec.openplanner.team/stops/N513aab", "https://tec.openplanner.team/stops/N513ahb"], ["https://tec.openplanner.team/stops/X921aga", "https://tec.openplanner.team/stops/X921agb"], ["https://tec.openplanner.team/stops/X601asa", "https://tec.openplanner.team/stops/X601cfa"], ["https://tec.openplanner.team/stops/Lprmana2", "https://tec.openplanner.team/stops/Lprmana5"], ["https://tec.openplanner.team/stops/Btubbot2", "https://tec.openplanner.team/stops/Btubcim2"], ["https://tec.openplanner.team/stops/LRGgend1", "https://tec.openplanner.team/stops/LRGunio3"], ["https://tec.openplanner.team/stops/H1hh112a", "https://tec.openplanner.team/stops/H1hh114a"], ["https://tec.openplanner.team/stops/LAVcime1", "https://tec.openplanner.team/stops/LAVcime2"], ["https://tec.openplanner.team/stops/X877afb", "https://tec.openplanner.team/stops/X879aba"], ["https://tec.openplanner.team/stops/N552aaa", "https://tec.openplanner.team/stops/N552aab"], ["https://tec.openplanner.team/stops/Barqhro1", "https://tec.openplanner.team/stops/Barqhro2"], ["https://tec.openplanner.team/stops/LPRcasi1", "https://tec.openplanner.team/stops/LPRecol2"], ["https://tec.openplanner.team/stops/LENindu2", "https://tec.openplanner.team/stops/LENpt--1"], ["https://tec.openplanner.team/stops/Lseboia2", "https://tec.openplanner.team/stops/Lsemaha2"], ["https://tec.openplanner.team/stops/N501bla", "https://tec.openplanner.team/stops/N501lqb"], ["https://tec.openplanner.team/stops/Bbgncnd1", "https://tec.openplanner.team/stops/Bsomtnd1"], ["https://tec.openplanner.team/stops/X634aea", "https://tec.openplanner.team/stops/X634aha"], ["https://tec.openplanner.team/stops/LMEeg--1", "https://tec.openplanner.team/stops/LMEeg--2"], ["https://tec.openplanner.team/stops/Lrccomm2", "https://tec.openplanner.team/stops/Lrclant2"], ["https://tec.openplanner.team/stops/LlgLEOP3", "https://tec.openplanner.team/stops/Llgmarc2"], ["https://tec.openplanner.team/stops/H2mg138a", "https://tec.openplanner.team/stops/H2mg140c"], ["https://tec.openplanner.team/stops/H5pe144a", "https://tec.openplanner.team/stops/H5pe151a"], ["https://tec.openplanner.team/stops/LHUetie*", "https://tec.openplanner.team/stops/LSteg--1"], ["https://tec.openplanner.team/stops/Lanpisc1", "https://tec.openplanner.team/stops/Lanpisc2"], ["https://tec.openplanner.team/stops/Llgdefr2", "https://tec.openplanner.team/stops/Llgreyn1"], ["https://tec.openplanner.team/stops/Lflheid1", "https://tec.openplanner.team/stops/Lflheid2"], ["https://tec.openplanner.team/stops/X882afa", "https://tec.openplanner.team/stops/X882aia"], ["https://tec.openplanner.team/stops/Bolggar1", "https://tec.openplanner.team/stops/Bolppla4"], ["https://tec.openplanner.team/stops/LAx17--2", "https://tec.openplanner.team/stops/LAx41--1"], ["https://tec.openplanner.team/stops/LBpecco3", "https://tec.openplanner.team/stops/LBpvue-1"], ["https://tec.openplanner.team/stops/N506bhb", "https://tec.openplanner.team/stops/N506bia"], ["https://tec.openplanner.team/stops/H4ty295a", "https://tec.openplanner.team/stops/H4ty359a"], ["https://tec.openplanner.team/stops/Cmlvitf2", "https://tec.openplanner.team/stops/CMvil2"], ["https://tec.openplanner.team/stops/H4co103a", "https://tec.openplanner.team/stops/H4co103b"], ["https://tec.openplanner.team/stops/X763aab", "https://tec.openplanner.team/stops/X763ada"], ["https://tec.openplanner.team/stops/N232aeb", "https://tec.openplanner.team/stops/N232apb"], ["https://tec.openplanner.team/stops/H4br109a", "https://tec.openplanner.team/stops/H4br111a"], ["https://tec.openplanner.team/stops/Cwgcamp1", "https://tec.openplanner.team/stops/Cwgrans4"], ["https://tec.openplanner.team/stops/Bsrgcur2", "https://tec.openplanner.team/stops/Bsrgm102"], ["https://tec.openplanner.team/stops/X359ada", "https://tec.openplanner.team/stops/X359aea"], ["https://tec.openplanner.team/stops/LeYloos2", "https://tec.openplanner.team/stops/LwAschu1"], ["https://tec.openplanner.team/stops/Caiecol2", "https://tec.openplanner.team/stops/N543cja"], ["https://tec.openplanner.team/stops/Bsaubbo1", "https://tec.openplanner.team/stops/N541acb"], ["https://tec.openplanner.team/stops/Cclmoul2", "https://tec.openplanner.team/stops/Cstgare1"], ["https://tec.openplanner.team/stops/N554adb", "https://tec.openplanner.team/stops/N573aqa"], ["https://tec.openplanner.team/stops/H1ba114d", "https://tec.openplanner.team/stops/H1ba118b"], ["https://tec.openplanner.team/stops/Lhrcols4", "https://tec.openplanner.team/stops/Lhrpaep1"], ["https://tec.openplanner.team/stops/N242ada", "https://tec.openplanner.team/stops/N251aaa"], ["https://tec.openplanner.team/stops/Csrcant2", "https://tec.openplanner.team/stops/Cvtvois2"], ["https://tec.openplanner.team/stops/Croegli1", "https://tec.openplanner.team/stops/Croegli2"], ["https://tec.openplanner.team/stops/X901bob", "https://tec.openplanner.team/stops/X901bsa"], ["https://tec.openplanner.team/stops/LHCmonu1", "https://tec.openplanner.team/stops/LHCmonu3"], ["https://tec.openplanner.team/stops/N538baa", "https://tec.openplanner.team/stops/N539awa"], ["https://tec.openplanner.team/stops/H4ka188a", "https://tec.openplanner.team/stops/H4ka188b"], ["https://tec.openplanner.team/stops/Lflroms5", "https://tec.openplanner.team/stops/Lflsana1"], ["https://tec.openplanner.team/stops/LREhaut2", "https://tec.openplanner.team/stops/LREsech1"], ["https://tec.openplanner.team/stops/LNCimpe1", "https://tec.openplanner.team/stops/LRRcarr1"], ["https://tec.openplanner.team/stops/LrTbahn1", "https://tec.openplanner.team/stops/LrTpost1"], ["https://tec.openplanner.team/stops/LCEhayo1", "https://tec.openplanner.team/stops/LETfort4"], ["https://tec.openplanner.team/stops/N304aaa", "https://tec.openplanner.team/stops/N329aaa"], ["https://tec.openplanner.team/stops/N139aaa", "https://tec.openplanner.team/stops/N139aba"], ["https://tec.openplanner.team/stops/H1ol146a", "https://tec.openplanner.team/stops/H1ol146b"], ["https://tec.openplanner.team/stops/LTIdamr2", "https://tec.openplanner.team/stops/LTIdumo2"], ["https://tec.openplanner.team/stops/X650aba", "https://tec.openplanner.team/stops/X650acb"], ["https://tec.openplanner.team/stops/N232bba", "https://tec.openplanner.team/stops/N232bbb"], ["https://tec.openplanner.team/stops/X616aja", "https://tec.openplanner.team/stops/X616ajb"], ["https://tec.openplanner.team/stops/Canlalu1", "https://tec.openplanner.team/stops/Canlalu2"], ["https://tec.openplanner.team/stops/N214aba", "https://tec.openplanner.team/stops/N214abb"], ["https://tec.openplanner.team/stops/Lcehipp2", "https://tec.openplanner.team/stops/Lgrclin3"], ["https://tec.openplanner.team/stops/H1je216b", "https://tec.openplanner.team/stops/H1je222a"], ["https://tec.openplanner.team/stops/X613aca", "https://tec.openplanner.team/stops/X613acb"], ["https://tec.openplanner.team/stops/Lghalli2", "https://tec.openplanner.team/stops/Lghsimo4"], ["https://tec.openplanner.team/stops/H4gu108b", "https://tec.openplanner.team/stops/H4gu108c"], ["https://tec.openplanner.team/stops/Buccbou1", "https://tec.openplanner.team/stops/Buccbou2"], ["https://tec.openplanner.team/stops/H2ll199b", "https://tec.openplanner.team/stops/H2ll257d"], ["https://tec.openplanner.team/stops/N501fma", "https://tec.openplanner.team/stops/N501fpb"], ["https://tec.openplanner.team/stops/NL82aga", "https://tec.openplanner.team/stops/X222afb"], ["https://tec.openplanner.team/stops/X601bda", "https://tec.openplanner.team/stops/X601bxb"], ["https://tec.openplanner.team/stops/X721aaa", "https://tec.openplanner.team/stops/X721aia"], ["https://tec.openplanner.team/stops/N533aha", "https://tec.openplanner.team/stops/N551aaa"], ["https://tec.openplanner.team/stops/X608acb", "https://tec.openplanner.team/stops/X608afb"], ["https://tec.openplanner.team/stops/N547ama", "https://tec.openplanner.team/stops/N547amb"], ["https://tec.openplanner.team/stops/N562afa", "https://tec.openplanner.team/stops/N562afb"], ["https://tec.openplanner.team/stops/Btubfab1", "https://tec.openplanner.team/stops/Btubnav1"], ["https://tec.openplanner.team/stops/LBOec--1", "https://tec.openplanner.team/stops/LMucarr1"], ["https://tec.openplanner.team/stops/H1sa112b", "https://tec.openplanner.team/stops/H1sa115a"], ["https://tec.openplanner.team/stops/H4be101a", "https://tec.openplanner.team/stops/H5bs103b"], ["https://tec.openplanner.team/stops/X917ajb", "https://tec.openplanner.team/stops/X919amb"], ["https://tec.openplanner.team/stops/Bblager1", "https://tec.openplanner.team/stops/Bblasta1"], ["https://tec.openplanner.team/stops/X623aja", "https://tec.openplanner.team/stops/X624amb"], ["https://tec.openplanner.team/stops/N226ada", "https://tec.openplanner.team/stops/N321aea"], ["https://tec.openplanner.team/stops/N584aea", "https://tec.openplanner.team/stops/N584aga"], ["https://tec.openplanner.team/stops/X615ama", "https://tec.openplanner.team/stops/X615anb"], ["https://tec.openplanner.team/stops/LWacime1", "https://tec.openplanner.team/stops/LWacime4"], ["https://tec.openplanner.team/stops/X602aba", "https://tec.openplanner.team/stops/X633aab"], ["https://tec.openplanner.team/stops/LHUvege1", "https://tec.openplanner.team/stops/NL76bcb"], ["https://tec.openplanner.team/stops/Llgpbay2", "https://tec.openplanner.team/stops/Llgvolg2"], ["https://tec.openplanner.team/stops/LRRbonr1", "https://tec.openplanner.team/stops/LRRecdu1"], ["https://tec.openplanner.team/stops/LeUkirc1", "https://tec.openplanner.team/stops/LeUnisp1"], ["https://tec.openplanner.team/stops/LQacabi1", "https://tec.openplanner.team/stops/LQacabi2"], ["https://tec.openplanner.team/stops/H1ry135a", "https://tec.openplanner.team/stops/H1ry137a"], ["https://tec.openplanner.team/stops/N513aha", "https://tec.openplanner.team/stops/N521ada"], ["https://tec.openplanner.team/stops/X723aaa", "https://tec.openplanner.team/stops/X723anb"], ["https://tec.openplanner.team/stops/N501gfb", "https://tec.openplanner.team/stops/N501iga"], ["https://tec.openplanner.team/stops/N301agb", "https://tec.openplanner.team/stops/N340aea"], ["https://tec.openplanner.team/stops/Boveker2", "https://tec.openplanner.team/stops/Brsrfen2"], ["https://tec.openplanner.team/stops/LWDfuma2", "https://tec.openplanner.team/stops/LWDhous1"], ["https://tec.openplanner.team/stops/LRteg--*", "https://tec.openplanner.team/stops/LTestat1"], ["https://tec.openplanner.team/stops/LBRmc--3", "https://tec.openplanner.team/stops/LBRmc--4"], ["https://tec.openplanner.team/stops/H4ty314a", "https://tec.openplanner.team/stops/H4ty314e"], ["https://tec.openplanner.team/stops/X601bbd", "https://tec.openplanner.team/stops/X601bqa"], ["https://tec.openplanner.team/stops/LVRchpl1", "https://tec.openplanner.team/stops/X547aqa"], ["https://tec.openplanner.team/stops/LWaanto1", "https://tec.openplanner.team/stops/LWapl--1"], ["https://tec.openplanner.team/stops/N516abb", "https://tec.openplanner.team/stops/N516aca"], ["https://tec.openplanner.team/stops/LBEbelf2", "https://tec.openplanner.team/stops/LBEcomm2"], ["https://tec.openplanner.team/stops/H3bi101b", "https://tec.openplanner.team/stops/H3bi104a"], ["https://tec.openplanner.team/stops/X602aob", "https://tec.openplanner.team/stops/X663akb"], ["https://tec.openplanner.team/stops/NL81adb", "https://tec.openplanner.team/stops/NL81aeb"], ["https://tec.openplanner.team/stops/N426acb", "https://tec.openplanner.team/stops/N426ada"], ["https://tec.openplanner.team/stops/N201apa", "https://tec.openplanner.team/stops/N219adb"], ["https://tec.openplanner.team/stops/H4ty308a", "https://tec.openplanner.team/stops/H4ty317a"], ["https://tec.openplanner.team/stops/H1ch102b", "https://tec.openplanner.team/stops/H4ab100b"], ["https://tec.openplanner.team/stops/LVleg--3", "https://tec.openplanner.team/stops/LVlroua4"], ["https://tec.openplanner.team/stops/X767aab", "https://tec.openplanner.team/stops/X767aib"], ["https://tec.openplanner.team/stops/Bcrbhir1", "https://tec.openplanner.team/stops/Bnilpor4"], ["https://tec.openplanner.team/stops/Bbautri2", "https://tec.openplanner.team/stops/Bnivvcw2"], ["https://tec.openplanner.team/stops/Becepri1", "https://tec.openplanner.team/stops/H2ec103b"], ["https://tec.openplanner.team/stops/X650aca", "https://tec.openplanner.team/stops/X650ada"], ["https://tec.openplanner.team/stops/Bvilcha2", "https://tec.openplanner.team/stops/Bvilcim2"], ["https://tec.openplanner.team/stops/X911aaa", "https://tec.openplanner.team/stops/X911asb"], ["https://tec.openplanner.team/stops/Ccoforr2", "https://tec.openplanner.team/stops/Ccogera2"], ["https://tec.openplanner.team/stops/Lstbarb6", "https://tec.openplanner.team/stops/Lstscie2"], ["https://tec.openplanner.team/stops/N424ada", "https://tec.openplanner.team/stops/N424aeb"], ["https://tec.openplanner.team/stops/X657aaa", "https://tec.openplanner.team/stops/X670aha"], ["https://tec.openplanner.team/stops/Bwavrij1", "https://tec.openplanner.team/stops/Bwavzno2"], ["https://tec.openplanner.team/stops/X780aaa", "https://tec.openplanner.team/stops/X788aha"], ["https://tec.openplanner.team/stops/N150aha", "https://tec.openplanner.team/stops/N150aib"], ["https://tec.openplanner.team/stops/H1hh114b", "https://tec.openplanner.team/stops/H1hh118a"], ["https://tec.openplanner.team/stops/N528aca", "https://tec.openplanner.team/stops/N528avb"], ["https://tec.openplanner.team/stops/Bbch4br4", "https://tec.openplanner.team/stops/Bbchrra3"], ["https://tec.openplanner.team/stops/Lhuecol2", "https://tec.openplanner.team/stops/Lmntast3"], ["https://tec.openplanner.team/stops/LCsbors1", "https://tec.openplanner.team/stops/LCsgend2"], ["https://tec.openplanner.team/stops/N501cda", "https://tec.openplanner.team/stops/N501mcc"], ["https://tec.openplanner.team/stops/X902aia", "https://tec.openplanner.team/stops/X902aqa"], ["https://tec.openplanner.team/stops/X825aab", "https://tec.openplanner.team/stops/X825aga"], ["https://tec.openplanner.team/stops/X879arb", "https://tec.openplanner.team/stops/X880agb"], ["https://tec.openplanner.team/stops/Lagpera1", "https://tec.openplanner.team/stops/Lagvall2"], ["https://tec.openplanner.team/stops/LBAcere1", "https://tec.openplanner.team/stops/LBApak2*"], ["https://tec.openplanner.team/stops/N251aba", "https://tec.openplanner.team/stops/N251adb"], ["https://tec.openplanner.team/stops/LlNbruc1", "https://tec.openplanner.team/stops/LlNlimb1"], ["https://tec.openplanner.team/stops/H2sb232a", "https://tec.openplanner.team/stops/H3th131b"], ["https://tec.openplanner.team/stops/Lhrgall2", "https://tec.openplanner.team/stops/Lhrmare8"], ["https://tec.openplanner.team/stops/Ljetomb2", "https://tec.openplanner.team/stops/Ljetout2"], ["https://tec.openplanner.team/stops/X954aca", "https://tec.openplanner.team/stops/X954aha"], ["https://tec.openplanner.team/stops/LHGtige1", "https://tec.openplanner.team/stops/LHGtron1"], ["https://tec.openplanner.team/stops/X641aja", "https://tec.openplanner.team/stops/X641alb"], ["https://tec.openplanner.team/stops/Cbwmato1", "https://tec.openplanner.team/stops/Cbwmato2"], ["https://tec.openplanner.team/stops/X684aaa", "https://tec.openplanner.team/stops/X684abb"], ["https://tec.openplanner.team/stops/X719aaa", "https://tec.openplanner.team/stops/X721asa"], ["https://tec.openplanner.team/stops/H2an101a", "https://tec.openplanner.team/stops/H2an102b"], ["https://tec.openplanner.team/stops/LSGeg--1", "https://tec.openplanner.team/stops/LSGeg--2"], ["https://tec.openplanner.team/stops/Bwatle31", "https://tec.openplanner.team/stops/Bwatle32"], ["https://tec.openplanner.team/stops/H5qu156a", "https://tec.openplanner.team/stops/H5qu182b"], ["https://tec.openplanner.team/stops/H2ha133a", "https://tec.openplanner.team/stops/H2ha143a"], ["https://tec.openplanner.team/stops/H1br121b", "https://tec.openplanner.team/stops/H3bo101a"], ["https://tec.openplanner.team/stops/Chpatel2", "https://tec.openplanner.team/stops/Chpfoli5"], ["https://tec.openplanner.team/stops/Cctvche2", "https://tec.openplanner.team/stops/NC11aka"], ["https://tec.openplanner.team/stops/X630aca", "https://tec.openplanner.team/stops/X630acb"], ["https://tec.openplanner.team/stops/Cmyecur2", "https://tec.openplanner.team/stops/Cmygrbr1"], ["https://tec.openplanner.team/stops/X766aaa", "https://tec.openplanner.team/stops/X768ahb"], ["https://tec.openplanner.team/stops/X724aha", "https://tec.openplanner.team/stops/X724ahb"], ["https://tec.openplanner.team/stops/H4ef163b", "https://tec.openplanner.team/stops/H4ef165a"], ["https://tec.openplanner.team/stops/Bwavlep1", "https://tec.openplanner.team/stops/Bwavmes2"], ["https://tec.openplanner.team/stops/LOltill2", "https://tec.openplanner.team/stops/LSevitu3"], ["https://tec.openplanner.team/stops/X723aaa", "https://tec.openplanner.team/stops/X775aia"], ["https://tec.openplanner.team/stops/N135aaa", "https://tec.openplanner.team/stops/N136ada"], ["https://tec.openplanner.team/stops/X986ama", "https://tec.openplanner.team/stops/X986amb"], ["https://tec.openplanner.team/stops/LSNmoul3", "https://tec.openplanner.team/stops/LSNmoul4"], ["https://tec.openplanner.team/stops/H4co104a", "https://tec.openplanner.team/stops/H4co109a"], ["https://tec.openplanner.team/stops/Cmlecha1", "https://tec.openplanner.team/stops/Cmlvpla1"], ["https://tec.openplanner.team/stops/X746aja", "https://tec.openplanner.team/stops/X746aka"], ["https://tec.openplanner.team/stops/Bmrqpla2", "https://tec.openplanner.team/stops/H1mk115a"], ["https://tec.openplanner.team/stops/N214agb", "https://tec.openplanner.team/stops/N236ahb"], ["https://tec.openplanner.team/stops/H1hm173b", "https://tec.openplanner.team/stops/H1hm175a"], ["https://tec.openplanner.team/stops/N224aba", "https://tec.openplanner.team/stops/N349ada"], ["https://tec.openplanner.team/stops/Llojeme3", "https://tec.openplanner.team/stops/Llonaes2"], ["https://tec.openplanner.team/stops/X879ada", "https://tec.openplanner.team/stops/X879arb"], ["https://tec.openplanner.team/stops/LiV19--1", "https://tec.openplanner.team/stops/LiVdorf2"], ["https://tec.openplanner.team/stops/H4ve133b", "https://tec.openplanner.team/stops/H4ve135a"], ["https://tec.openplanner.team/stops/H1wi152b", "https://tec.openplanner.team/stops/H1wi152d"], ["https://tec.openplanner.team/stops/X991aaa", "https://tec.openplanner.team/stops/X991aeb"], ["https://tec.openplanner.team/stops/H4ka186a", "https://tec.openplanner.team/stops/H4mt218b"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X774ahb"], ["https://tec.openplanner.team/stops/H1pa117a", "https://tec.openplanner.team/stops/H1pa118b"], ["https://tec.openplanner.team/stops/LCAcruc1", "https://tec.openplanner.team/stops/LCAcruc2"], ["https://tec.openplanner.team/stops/H1sg144a", "https://tec.openplanner.team/stops/H1te176a"], ["https://tec.openplanner.team/stops/LCxwarr1", "https://tec.openplanner.team/stops/LHEchex1"], ["https://tec.openplanner.team/stops/LLYhoch1", "https://tec.openplanner.team/stops/LLYpeup1"], ["https://tec.openplanner.team/stops/Cwfbarr1", "https://tec.openplanner.team/stops/Cwfcast1"], ["https://tec.openplanner.team/stops/N244awa", "https://tec.openplanner.team/stops/N245aab"], ["https://tec.openplanner.team/stops/Ljemont1", "https://tec.openplanner.team/stops/Ljewale1"], ["https://tec.openplanner.team/stops/LLYhoch2", "https://tec.openplanner.team/stops/LTOplac1"], ["https://tec.openplanner.team/stops/LVeeg--2", "https://tec.openplanner.team/stops/LVGeg--2"], ["https://tec.openplanner.team/stops/H4te258b", "https://tec.openplanner.team/stops/H4te261a"], ["https://tec.openplanner.team/stops/H4pl111a", "https://tec.openplanner.team/stops/H4pl117a"], ["https://tec.openplanner.team/stops/X901aga", "https://tec.openplanner.team/stops/X901aia"], ["https://tec.openplanner.team/stops/LODarbr1", "https://tec.openplanner.team/stops/X548adb"], ["https://tec.openplanner.team/stops/X734afb", "https://tec.openplanner.team/stops/X734aha"], ["https://tec.openplanner.team/stops/LNEbo471", "https://tec.openplanner.team/stops/LNEbo472"], ["https://tec.openplanner.team/stops/X817aea", "https://tec.openplanner.team/stops/X817aeb"], ["https://tec.openplanner.team/stops/X695aba", "https://tec.openplanner.team/stops/X695aea"], ["https://tec.openplanner.team/stops/H1bu136b", "https://tec.openplanner.team/stops/H1vb147a"], ["https://tec.openplanner.team/stops/LVHcent2", "https://tec.openplanner.team/stops/LVHtill2"], ["https://tec.openplanner.team/stops/N542aaa", "https://tec.openplanner.team/stops/N542aac"], ["https://tec.openplanner.team/stops/N505ana", "https://tec.openplanner.team/stops/N512aub"], ["https://tec.openplanner.team/stops/Bgligli1", "https://tec.openplanner.team/stops/Bgligli2"], ["https://tec.openplanner.team/stops/Bcrbmsg1", "https://tec.openplanner.team/stops/Bcrbmsg2"], ["https://tec.openplanner.team/stops/Bpernov1", "https://tec.openplanner.team/stops/Bperpla1"], ["https://tec.openplanner.team/stops/H4bv145b", "https://tec.openplanner.team/stops/H4bv146a"], ["https://tec.openplanner.team/stops/LbUgend2", "https://tec.openplanner.team/stops/LbUvith2"], ["https://tec.openplanner.team/stops/Bmartil2", "https://tec.openplanner.team/stops/Bsdavpe2"], ["https://tec.openplanner.team/stops/Llgjoie2", "https://tec.openplanner.team/stops/Llgjoie4"], ["https://tec.openplanner.team/stops/N506bfa", "https://tec.openplanner.team/stops/N512agc"], ["https://tec.openplanner.team/stops/Bjodtpo2", "https://tec.openplanner.team/stops/Bsjgmil2"], ["https://tec.openplanner.team/stops/N121aea", "https://tec.openplanner.team/stops/N121ajb"], ["https://tec.openplanner.team/stops/LWAor--2", "https://tec.openplanner.team/stops/LWArege1"], ["https://tec.openplanner.team/stops/LkAbahn*", "https://tec.openplanner.team/stops/LmTzoll1"], ["https://tec.openplanner.team/stops/X950abb", "https://tec.openplanner.team/stops/X950aca"], ["https://tec.openplanner.team/stops/H1ms308b", "https://tec.openplanner.team/stops/H1ms308c"], ["https://tec.openplanner.team/stops/LENaout1", "https://tec.openplanner.team/stops/LGlbour2"], ["https://tec.openplanner.team/stops/H1do131c", "https://tec.openplanner.team/stops/H1do131d"], ["https://tec.openplanner.team/stops/LVtvalu1", "https://tec.openplanner.team/stops/LVtvalu2"], ["https://tec.openplanner.team/stops/NL76aka", "https://tec.openplanner.team/stops/NL77ahb"], ["https://tec.openplanner.team/stops/Lvtathe1", "https://tec.openplanner.team/stops/Lvteg--1"], ["https://tec.openplanner.team/stops/X736afa", "https://tec.openplanner.team/stops/X736aia"], ["https://tec.openplanner.team/stops/LEMeg--2", "https://tec.openplanner.team/stops/LEMfort2"], ["https://tec.openplanner.team/stops/Blhubja1", "https://tec.openplanner.team/stops/Blhueso1"], ["https://tec.openplanner.team/stops/X608ava", "https://tec.openplanner.team/stops/X608avb"], ["https://tec.openplanner.team/stops/Cflhano1", "https://tec.openplanner.team/stops/Cwfmoul1"], ["https://tec.openplanner.team/stops/Bottegl2", "https://tec.openplanner.team/stops/Bottegl3"], ["https://tec.openplanner.team/stops/N212agb", "https://tec.openplanner.team/stops/N212agc"], ["https://tec.openplanner.team/stops/Bneecha1", "https://tec.openplanner.team/stops/Bneecha3"], ["https://tec.openplanner.team/stops/Bmalwvi2", "https://tec.openplanner.team/stops/Btlbcha2"], ["https://tec.openplanner.team/stops/LNCmc--2", "https://tec.openplanner.team/stops/LNCvill3"], ["https://tec.openplanner.team/stops/LSBjoli2", "https://tec.openplanner.team/stops/LSBrouf4"], ["https://tec.openplanner.team/stops/H1gr111b", "https://tec.openplanner.team/stops/H1mk109a"], ["https://tec.openplanner.team/stops/LmSluxh2", "https://tec.openplanner.team/stops/LnDdorf1"], ["https://tec.openplanner.team/stops/Cctfrbe2", "https://tec.openplanner.team/stops/Cctstro3"], ["https://tec.openplanner.team/stops/Lsepair1", "https://tec.openplanner.team/stops/Lsepair3"], ["https://tec.openplanner.team/stops/X948ama", "https://tec.openplanner.team/stops/X948amc"], ["https://tec.openplanner.team/stops/LTIpora1", "https://tec.openplanner.team/stops/LTIpora2"], ["https://tec.openplanner.team/stops/H3lr110b", "https://tec.openplanner.team/stops/H3lr113b"], ["https://tec.openplanner.team/stops/Cbbjfeu2", "https://tec.openplanner.team/stops/Cclbarb2"], ["https://tec.openplanner.team/stops/X601aib", "https://tec.openplanner.team/stops/X601cbb"], ["https://tec.openplanner.team/stops/Bndb4ch2", "https://tec.openplanner.team/stops/Bndbgar2"], ["https://tec.openplanner.team/stops/N501bda", "https://tec.openplanner.team/stops/N501iez"], ["https://tec.openplanner.team/stops/H4oe148a", "https://tec.openplanner.team/stops/H4oe151b"], ["https://tec.openplanner.team/stops/H1pa167a", "https://tec.openplanner.team/stops/H1pa167b"], ["https://tec.openplanner.team/stops/X675aaa", "https://tec.openplanner.team/stops/X675aba"], ["https://tec.openplanner.team/stops/N532acb", "https://tec.openplanner.team/stops/N533aca"], ["https://tec.openplanner.team/stops/H2na135b", "https://tec.openplanner.team/stops/H3so170b"], ["https://tec.openplanner.team/stops/LSyeg--1", "https://tec.openplanner.team/stops/LSygerm1"], ["https://tec.openplanner.team/stops/N551ahb", "https://tec.openplanner.team/stops/N551apb"], ["https://tec.openplanner.team/stops/N501grc", "https://tec.openplanner.team/stops/N501gre"], ["https://tec.openplanner.team/stops/Brsrbbo1", "https://tec.openplanner.team/stops/Brsreco1"], ["https://tec.openplanner.team/stops/Bpienod2", "https://tec.openplanner.team/stops/Bpiepnd2"], ["https://tec.openplanner.team/stops/Lflcle-2", "https://tec.openplanner.team/stops/Lflcle-3"], ["https://tec.openplanner.team/stops/H1ro135b", "https://tec.openplanner.team/stops/H1ro141a"], ["https://tec.openplanner.team/stops/LLRbleh2", "https://tec.openplanner.team/stops/LLRptma2"], ["https://tec.openplanner.team/stops/LMOstat1", "https://tec.openplanner.team/stops/LNvrout2"], ["https://tec.openplanner.team/stops/Cchorle1", "https://tec.openplanner.team/stops/Cchparc1"], ["https://tec.openplanner.team/stops/LPOleli1", "https://tec.openplanner.team/stops/LPOthom2"], ["https://tec.openplanner.team/stops/Bovevnd1", "https://tec.openplanner.team/stops/Bovevnd2"], ["https://tec.openplanner.team/stops/Cjupllo2", "https://tec.openplanner.team/stops/Cjurogi1"], ["https://tec.openplanner.team/stops/LHUfrai1", "https://tec.openplanner.team/stops/LHUsart2"], ["https://tec.openplanner.team/stops/H1ms267a", "https://tec.openplanner.team/stops/H1ms309a"], ["https://tec.openplanner.team/stops/Llabrou1", "https://tec.openplanner.team/stops/Llabrou2"], ["https://tec.openplanner.team/stops/LAVdepr2", "https://tec.openplanner.team/stops/LAVeg--2"], ["https://tec.openplanner.team/stops/NL72aea", "https://tec.openplanner.team/stops/NL72aeb"], ["https://tec.openplanner.team/stops/LARauto1", "https://tec.openplanner.team/stops/LARauto3"], ["https://tec.openplanner.team/stops/X948arb", "https://tec.openplanner.team/stops/X948ava"], ["https://tec.openplanner.team/stops/H4hs136b", "https://tec.openplanner.team/stops/H4hs137b"], ["https://tec.openplanner.team/stops/Bglacsr1", "https://tec.openplanner.team/stops/Bmrsmco1"], ["https://tec.openplanner.team/stops/LVEdTEC1", "https://tec.openplanner.team/stops/LVEmoul2"], ["https://tec.openplanner.team/stops/N534asa", "https://tec.openplanner.team/stops/N534bbb"], ["https://tec.openplanner.team/stops/LCleg--1", "https://tec.openplanner.team/stops/LCltrib1"], ["https://tec.openplanner.team/stops/Bbsicea1", "https://tec.openplanner.team/stops/Bbsivil1"], ["https://tec.openplanner.team/stops/H4lz121d", "https://tec.openplanner.team/stops/H4lz123a"], ["https://tec.openplanner.team/stops/Ladabot1", "https://tec.openplanner.team/stops/LHCprog1"], ["https://tec.openplanner.team/stops/X824acb", "https://tec.openplanner.team/stops/X824ala"], ["https://tec.openplanner.team/stops/Cmmcomb2", "https://tec.openplanner.team/stops/Cmmpjou3"], ["https://tec.openplanner.team/stops/LLxcbr-2", "https://tec.openplanner.team/stops/LLxconj2"], ["https://tec.openplanner.team/stops/X640ana", "https://tec.openplanner.team/stops/X640ava"], ["https://tec.openplanner.team/stops/X745aca", "https://tec.openplanner.team/stops/X745aea"], ["https://tec.openplanner.team/stops/Lagjard1", "https://tec.openplanner.team/stops/Lagvall2"], ["https://tec.openplanner.team/stops/X609aga", "https://tec.openplanner.team/stops/X609ara"], ["https://tec.openplanner.team/stops/H2me117a", "https://tec.openplanner.team/stops/H2me117b"], ["https://tec.openplanner.team/stops/X896aca", "https://tec.openplanner.team/stops/X896ada"], ["https://tec.openplanner.team/stops/X661akb", "https://tec.openplanner.team/stops/X661apa"], ["https://tec.openplanner.team/stops/Btubcim2", "https://tec.openplanner.team/stops/Btubpir2"], ["https://tec.openplanner.team/stops/H4bo117b", "https://tec.openplanner.team/stops/H4hu120a"], ["https://tec.openplanner.team/stops/N323aca", "https://tec.openplanner.team/stops/N360aab"], ["https://tec.openplanner.team/stops/LHEjose2", "https://tec.openplanner.team/stops/LMEgare2"], ["https://tec.openplanner.team/stops/H2ca105a", "https://tec.openplanner.team/stops/H2ca115a"], ["https://tec.openplanner.team/stops/X789aab", "https://tec.openplanner.team/stops/X789aba"], ["https://tec.openplanner.team/stops/H2se109a", "https://tec.openplanner.team/stops/H2se110a"], ["https://tec.openplanner.team/stops/Becepon1", "https://tec.openplanner.team/stops/H2ec106a"], ["https://tec.openplanner.team/stops/Bhmmcor1", "https://tec.openplanner.team/stops/Btlgmar1"], ["https://tec.openplanner.team/stops/N501lpa", "https://tec.openplanner.team/stops/N501lpb"], ["https://tec.openplanner.team/stops/X610aaa", "https://tec.openplanner.team/stops/X610aca"], ["https://tec.openplanner.team/stops/LMebove2", "https://tec.openplanner.team/stops/LMeperk2"], ["https://tec.openplanner.team/stops/X802aca", "https://tec.openplanner.team/stops/X802acb"], ["https://tec.openplanner.team/stops/Bdoncar2", "https://tec.openplanner.team/stops/Bgliaau1"], ["https://tec.openplanner.team/stops/Cmadeli1", "https://tec.openplanner.team/stops/Cmadeli2"], ["https://tec.openplanner.team/stops/N207aca", "https://tec.openplanner.team/stops/X206azb"], ["https://tec.openplanner.team/stops/X948aha", "https://tec.openplanner.team/stops/X948aub"], ["https://tec.openplanner.team/stops/Llggram3", "https://tec.openplanner.team/stops/Llgrome1"], ["https://tec.openplanner.team/stops/LSZarze1", "https://tec.openplanner.team/stops/LSZptwa2"], ["https://tec.openplanner.team/stops/N304aab", "https://tec.openplanner.team/stops/N305aaa"], ["https://tec.openplanner.team/stops/X837aab", "https://tec.openplanner.team/stops/X837aga"], ["https://tec.openplanner.team/stops/H4mo134a", "https://tec.openplanner.team/stops/H4mo179a"], ["https://tec.openplanner.team/stops/H4br108b", "https://tec.openplanner.team/stops/H4ch117b"], ["https://tec.openplanner.team/stops/LHUbail2", "https://tec.openplanner.team/stops/NL76bca"], ["https://tec.openplanner.team/stops/N338aaa", "https://tec.openplanner.team/stops/N338aha"], ["https://tec.openplanner.team/stops/N355aca", "https://tec.openplanner.team/stops/N355ada"], ["https://tec.openplanner.team/stops/Bwatpro2", "https://tec.openplanner.team/stops/Bwatrte1"], ["https://tec.openplanner.team/stops/H2sb259a", "https://tec.openplanner.team/stops/H2sb259b"], ["https://tec.openplanner.team/stops/H1ch102a", "https://tec.openplanner.team/stops/H4ab100b"], ["https://tec.openplanner.team/stops/X749aca", "https://tec.openplanner.team/stops/X749acb"], ["https://tec.openplanner.team/stops/Cmmramb1", "https://tec.openplanner.team/stops/Cmmramb2"], ["https://tec.openplanner.team/stops/H1gh160a", "https://tec.openplanner.team/stops/H1gh165c"], ["https://tec.openplanner.team/stops/LMOstat1", "https://tec.openplanner.team/stops/LMOstat2"], ["https://tec.openplanner.team/stops/Llgcour1", "https://tec.openplanner.team/stops/Llgtcha2"], ["https://tec.openplanner.team/stops/Lglvict1", "https://tec.openplanner.team/stops/Llgbobu1"], ["https://tec.openplanner.team/stops/H1au103b", "https://tec.openplanner.team/stops/H1el132b"], ["https://tec.openplanner.team/stops/Cjuplho1", "https://tec.openplanner.team/stops/Cjuplho2"], ["https://tec.openplanner.team/stops/LVvboma2", "https://tec.openplanner.team/stops/X796aab"], ["https://tec.openplanner.team/stops/N343aka", "https://tec.openplanner.team/stops/N350aeb"], ["https://tec.openplanner.team/stops/LClbloc1", "https://tec.openplanner.team/stops/LClbloc2"], ["https://tec.openplanner.team/stops/N331aca", "https://tec.openplanner.team/stops/N331aka"], ["https://tec.openplanner.team/stops/X774aea", "https://tec.openplanner.team/stops/X774aeb"], ["https://tec.openplanner.team/stops/H1qu101b", "https://tec.openplanner.team/stops/H1qu129b"], ["https://tec.openplanner.team/stops/Lsepuit1", "https://tec.openplanner.team/stops/Lsepuit2"], ["https://tec.openplanner.team/stops/N501amb", "https://tec.openplanner.team/stops/N501cyb"], ["https://tec.openplanner.team/stops/Ccugilb1", "https://tec.openplanner.team/stops/Cgysarr1"], ["https://tec.openplanner.team/stops/Llgfail2", "https://tec.openplanner.team/stops/Llgrain2"], ["https://tec.openplanner.team/stops/N558ana", "https://tec.openplanner.team/stops/N559aca"], ["https://tec.openplanner.team/stops/H1ha197b", "https://tec.openplanner.team/stops/H1ob336a"], ["https://tec.openplanner.team/stops/LSdsa8a1", "https://tec.openplanner.team/stops/LSdsar52"], ["https://tec.openplanner.team/stops/H1cu125a", "https://tec.openplanner.team/stops/H1cu129a"], ["https://tec.openplanner.team/stops/Cmapeet2", "https://tec.openplanner.team/stops/Cmarroy2"], ["https://tec.openplanner.team/stops/N229ala", "https://tec.openplanner.team/stops/N229ara"], ["https://tec.openplanner.team/stops/Cnamonn2", "https://tec.openplanner.team/stops/Cnarmon1"], ["https://tec.openplanner.team/stops/H4vz367a", "https://tec.openplanner.team/stops/H4ws160b"], ["https://tec.openplanner.team/stops/X396aab", "https://tec.openplanner.team/stops/X396afb"], ["https://tec.openplanner.team/stops/Lcchala1", "https://tec.openplanner.team/stops/LRarami1"], ["https://tec.openplanner.team/stops/Cgxmorg2", "https://tec.openplanner.team/stops/Cgxprad4"], ["https://tec.openplanner.team/stops/Cfaheni4", "https://tec.openplanner.team/stops/Cfastan2"], ["https://tec.openplanner.team/stops/NL74aea", "https://tec.openplanner.team/stops/NL74afa"], ["https://tec.openplanner.team/stops/Lemhenn1", "https://tec.openplanner.team/stops/Lemhuet1"], ["https://tec.openplanner.team/stops/N559acb", "https://tec.openplanner.team/stops/N559aeb"], ["https://tec.openplanner.team/stops/LCReg--1", "https://tec.openplanner.team/stops/LCRf14-1"], ["https://tec.openplanner.team/stops/LCRfavr2", "https://tec.openplanner.team/stops/LCRfize2"], ["https://tec.openplanner.team/stops/Bbsiabb2", "https://tec.openplanner.team/stops/Bbsifml1"], ["https://tec.openplanner.team/stops/LAmshel2", "https://tec.openplanner.team/stops/LAMweha2"], ["https://tec.openplanner.team/stops/H4wn124a", "https://tec.openplanner.team/stops/H4wn124d"], ["https://tec.openplanner.team/stops/LeUmoor1", "https://tec.openplanner.team/stops/LeUmoor2"], ["https://tec.openplanner.team/stops/X793aka", "https://tec.openplanner.team/stops/X793ana"], ["https://tec.openplanner.team/stops/X768ada", "https://tec.openplanner.team/stops/X768adb"], ["https://tec.openplanner.team/stops/X760afb", "https://tec.openplanner.team/stops/X761adb"], ["https://tec.openplanner.team/stops/Cfoermi1", "https://tec.openplanner.team/stops/Cfomays1"], ["https://tec.openplanner.team/stops/LMfpral1", "https://tec.openplanner.team/stops/LMfpral2"], ["https://tec.openplanner.team/stops/X639abb", "https://tec.openplanner.team/stops/X639apa"], ["https://tec.openplanner.team/stops/LAweg--2", "https://tec.openplanner.team/stops/LAYlieg1"], ["https://tec.openplanner.team/stops/Bcerldo2", "https://tec.openplanner.team/stops/Bcsemar1"], ["https://tec.openplanner.team/stops/LQacabi1", "https://tec.openplanner.team/stops/LREprea1"], ["https://tec.openplanner.team/stops/LlOpfar1", "https://tec.openplanner.team/stops/LmSkape2"], ["https://tec.openplanner.team/stops/LFMkrin1", "https://tec.openplanner.team/stops/LVukabi2"], ["https://tec.openplanner.team/stops/Cthdeco1", "https://tec.openplanner.team/stops/Cthhttr3"], ["https://tec.openplanner.team/stops/N201ama", "https://tec.openplanner.team/stops/N211aib"], ["https://tec.openplanner.team/stops/H1ms254e", "https://tec.openplanner.team/stops/H1ms260b"], ["https://tec.openplanner.team/stops/Bquepbr1", "https://tec.openplanner.team/stops/Bstemco2"], ["https://tec.openplanner.team/stops/X595afb", "https://tec.openplanner.team/stops/X595aha"], ["https://tec.openplanner.team/stops/X663aoa", "https://tec.openplanner.team/stops/X663aob"], ["https://tec.openplanner.team/stops/Bwbfckr2", "https://tec.openplanner.team/stops/Bwbfeta1"], ["https://tec.openplanner.team/stops/N207ada", "https://tec.openplanner.team/stops/N207add"], ["https://tec.openplanner.team/stops/Cgocapu2", "https://tec.openplanner.team/stops/Cgostro2"], ["https://tec.openplanner.team/stops/LREgrot2", "https://tec.openplanner.team/stops/LREgrot3"], ["https://tec.openplanner.team/stops/N501iha", "https://tec.openplanner.team/stops/N501ihb"], ["https://tec.openplanner.team/stops/Lmicoop1", "https://tec.openplanner.team/stops/Lvtlimi2"], ["https://tec.openplanner.team/stops/Ctucour2", "https://tec.openplanner.team/stops/Ctuecol4"], ["https://tec.openplanner.team/stops/N501hyb", "https://tec.openplanner.team/stops/N501lsa"], ["https://tec.openplanner.team/stops/H2ha133b", "https://tec.openplanner.team/stops/H2ha143a"], ["https://tec.openplanner.team/stops/N511aaa", "https://tec.openplanner.team/stops/N511aga"], ["https://tec.openplanner.team/stops/Cgylouv1", "https://tec.openplanner.team/stops/Cgyralb1"], ["https://tec.openplanner.team/stops/H2ha129b", "https://tec.openplanner.team/stops/H2ha129e"], ["https://tec.openplanner.team/stops/X999aab", "https://tec.openplanner.team/stops/X999acb"], ["https://tec.openplanner.team/stops/N117ama", "https://tec.openplanner.team/stops/N117bbb"], ["https://tec.openplanner.team/stops/N573ada", "https://tec.openplanner.team/stops/N573aib"], ["https://tec.openplanner.team/stops/N117aqa", "https://tec.openplanner.team/stops/N117aua"], ["https://tec.openplanner.team/stops/N152aba", "https://tec.openplanner.team/stops/N152abd"], ["https://tec.openplanner.team/stops/X762aaa", "https://tec.openplanner.team/stops/X762aba"], ["https://tec.openplanner.team/stops/N501hpa", "https://tec.openplanner.team/stops/N501jub"], ["https://tec.openplanner.team/stops/LOmecol2", "https://tec.openplanner.team/stops/LOmpont2"], ["https://tec.openplanner.team/stops/Bcrncjo1", "https://tec.openplanner.team/stops/Bcrntru1"], ["https://tec.openplanner.team/stops/N228aca", "https://tec.openplanner.team/stops/N232cea"], ["https://tec.openplanner.team/stops/N244aca", "https://tec.openplanner.team/stops/N244aja"], ["https://tec.openplanner.team/stops/N242adc", "https://tec.openplanner.team/stops/N242aga"], ["https://tec.openplanner.team/stops/Cbwegl2", "https://tec.openplanner.team/stops/Cmgbras1"], ["https://tec.openplanner.team/stops/H4va233b", "https://tec.openplanner.team/stops/H4vd230b"], ["https://tec.openplanner.team/stops/Louoran1", "https://tec.openplanner.team/stops/Louoran2"], ["https://tec.openplanner.team/stops/Cfrmoul1", "https://tec.openplanner.team/stops/Crewath2"], ["https://tec.openplanner.team/stops/H4ae102a", "https://tec.openplanner.team/stops/H4or116b"], ["https://tec.openplanner.team/stops/H1ha193a", "https://tec.openplanner.team/stops/H1ha193b"], ["https://tec.openplanner.team/stops/Bgnvtil2", "https://tec.openplanner.team/stops/Bgnvval1"], ["https://tec.openplanner.team/stops/Blhupri2", "https://tec.openplanner.team/stops/Bohngen1"], ["https://tec.openplanner.team/stops/Llgcorn4", "https://tec.openplanner.team/stops/Llgnyst2"], ["https://tec.openplanner.team/stops/X823aeb", "https://tec.openplanner.team/stops/X824aea"], ["https://tec.openplanner.team/stops/LMalamb4", "https://tec.openplanner.team/stops/LMapark3"], ["https://tec.openplanner.team/stops/X601bbc", "https://tec.openplanner.team/stops/X601cza"], ["https://tec.openplanner.team/stops/Cgzvivi2", "https://tec.openplanner.team/stops/Cmxpleg1"], ["https://tec.openplanner.team/stops/N170aba", "https://tec.openplanner.team/stops/N170abb"], ["https://tec.openplanner.team/stops/H1ms942a", "https://tec.openplanner.team/stops/H1ni322b"], ["https://tec.openplanner.team/stops/Bbeascl1", "https://tec.openplanner.team/stops/Bbeascl2"], ["https://tec.openplanner.team/stops/X801aca", "https://tec.openplanner.team/stops/X801acb"], ["https://tec.openplanner.team/stops/LFmlens2", "https://tec.openplanner.team/stops/LTyhapp4"], ["https://tec.openplanner.team/stops/LThbatt1", "https://tec.openplanner.team/stops/LThbatt2"], ["https://tec.openplanner.team/stops/LOurena1", "https://tec.openplanner.team/stops/X982ada"], ["https://tec.openplanner.team/stops/Lhehoux2", "https://tec.openplanner.team/stops/Lheloti1"], ["https://tec.openplanner.team/stops/Cfaecwa2", "https://tec.openplanner.team/stops/Cfamate2"], ["https://tec.openplanner.team/stops/LBrec--2", "https://tec.openplanner.team/stops/LBrneli1"], ["https://tec.openplanner.team/stops/Ccobour1", "https://tec.openplanner.team/stops/Crorogn2"], ["https://tec.openplanner.team/stops/LWEcarr1", "https://tec.openplanner.team/stops/LWEhang1"], ["https://tec.openplanner.team/stops/X943aea", "https://tec.openplanner.team/stops/X943aeb"], ["https://tec.openplanner.team/stops/Cnacent1", "https://tec.openplanner.team/stops/Cnalava2"], ["https://tec.openplanner.team/stops/LFrfrai2", "https://tec.openplanner.team/stops/LLUcdoy2"], ["https://tec.openplanner.team/stops/LBiberg2", "https://tec.openplanner.team/stops/LDOandr3"], ["https://tec.openplanner.team/stops/Bjodgai1", "https://tec.openplanner.team/stops/Bmlngch1"], ["https://tec.openplanner.team/stops/Brixbai2", "https://tec.openplanner.team/stops/Brixwav1"], ["https://tec.openplanner.team/stops/Csylaha1", "https://tec.openplanner.team/stops/Csystan1"], ["https://tec.openplanner.team/stops/Cbuegl2", "https://tec.openplanner.team/stops/Cbufron2"], ["https://tec.openplanner.team/stops/N368aaa", "https://tec.openplanner.team/stops/N368aab"], ["https://tec.openplanner.team/stops/Ltheg--1", "https://tec.openplanner.team/stops/Lthfagn1"], ["https://tec.openplanner.team/stops/N343aea", "https://tec.openplanner.team/stops/N343aob"], ["https://tec.openplanner.team/stops/N512anb", "https://tec.openplanner.team/stops/N512atb"], ["https://tec.openplanner.team/stops/LBichat1", "https://tec.openplanner.team/stops/LBichat2"], ["https://tec.openplanner.team/stops/Lvepala1", "https://tec.openplanner.team/stops/Lvepala2"], ["https://tec.openplanner.team/stops/N221aba", "https://tec.openplanner.team/stops/N221acb"], ["https://tec.openplanner.team/stops/Lbhhomv2", "https://tec.openplanner.team/stops/Ljupiet1"], ["https://tec.openplanner.team/stops/Bhevjac1", "https://tec.openplanner.team/stops/Bhevjal1"], ["https://tec.openplanner.team/stops/N120acb", "https://tec.openplanner.team/stops/N120add"], ["https://tec.openplanner.team/stops/X801ava", "https://tec.openplanner.team/stops/X801cna"], ["https://tec.openplanner.team/stops/LVHcent2", "https://tec.openplanner.team/stops/LVsboug1"], ["https://tec.openplanner.team/stops/N508aab", "https://tec.openplanner.team/stops/N508ada"], ["https://tec.openplanner.team/stops/Bottegl1", "https://tec.openplanner.team/stops/Bottegl2"], ["https://tec.openplanner.team/stops/Llgchev2", "https://tec.openplanner.team/stops/Llglaur2"], ["https://tec.openplanner.team/stops/LREelse1", "https://tec.openplanner.team/stops/LREsp302"], ["https://tec.openplanner.team/stops/LPbeg--1", "https://tec.openplanner.team/stops/LPbeg--2"], ["https://tec.openplanner.team/stops/LBTxhen1", "https://tec.openplanner.team/stops/LCHsaul2"], ["https://tec.openplanner.team/stops/H1ha195b", "https://tec.openplanner.team/stops/H1ha196b"], ["https://tec.openplanner.team/stops/X901aqa", "https://tec.openplanner.team/stops/X901axa"], ["https://tec.openplanner.team/stops/H2hg155c", "https://tec.openplanner.team/stops/H2hg155d"], ["https://tec.openplanner.team/stops/X660afa", "https://tec.openplanner.team/stops/X741akb"], ["https://tec.openplanner.team/stops/LFChofv1", "https://tec.openplanner.team/stops/LFClage1"], ["https://tec.openplanner.team/stops/N579aaa", "https://tec.openplanner.team/stops/N579aba"], ["https://tec.openplanner.team/stops/LSemc--2", "https://tec.openplanner.team/stops/LSemc--4"], ["https://tec.openplanner.team/stops/Lmlcrot2", "https://tec.openplanner.team/stops/Lmlcrot3"], ["https://tec.openplanner.team/stops/X740aab", "https://tec.openplanner.team/stops/X912adb"], ["https://tec.openplanner.team/stops/N218abb", "https://tec.openplanner.team/stops/N331ada"], ["https://tec.openplanner.team/stops/N507apb", "https://tec.openplanner.team/stops/N507aqb"], ["https://tec.openplanner.team/stops/LbUmalm2", "https://tec.openplanner.team/stops/LwR140-2"], ["https://tec.openplanner.team/stops/H4ty312a", "https://tec.openplanner.team/stops/H4ty321b"], ["https://tec.openplanner.team/stops/Caccera2", "https://tec.openplanner.team/stops/NC24abb"], ["https://tec.openplanner.team/stops/LTymahr1", "https://tec.openplanner.team/stops/LTywyna1"], ["https://tec.openplanner.team/stops/Csefour2", "https://tec.openplanner.team/stops/Cvtndam3"], ["https://tec.openplanner.team/stops/Bbstpan2", "https://tec.openplanner.team/stops/Cbtstac1"], ["https://tec.openplanner.team/stops/H1ho139a", "https://tec.openplanner.team/stops/H1ho139b"], ["https://tec.openplanner.team/stops/Bclgapi1", "https://tec.openplanner.team/stops/Bclgbvi2"], ["https://tec.openplanner.team/stops/X624aab", "https://tec.openplanner.team/stops/X624ama"], ["https://tec.openplanner.team/stops/LCeterm2", "https://tec.openplanner.team/stops/LHgeg--1"], ["https://tec.openplanner.team/stops/Lvtathe2", "https://tec.openplanner.team/stops/Lvtvici1"], ["https://tec.openplanner.team/stops/Bhoealt1", "https://tec.openplanner.team/stops/Bpiepnd2"], ["https://tec.openplanner.team/stops/Lrogene*", "https://tec.openplanner.team/stops/Lvcchev1"], ["https://tec.openplanner.team/stops/H4bn100a", "https://tec.openplanner.team/stops/H4bn100b"], ["https://tec.openplanner.team/stops/Bnilcab2", "https://tec.openplanner.team/stops/Bnilpor4"], ["https://tec.openplanner.team/stops/LBDfran2", "https://tec.openplanner.team/stops/LFFmarc2"], ["https://tec.openplanner.team/stops/LESmc--1", "https://tec.openplanner.team/stops/LESpont1"], ["https://tec.openplanner.team/stops/Bflccav1", "https://tec.openplanner.team/stops/NR38aba"], ["https://tec.openplanner.team/stops/LGetroi2", "https://tec.openplanner.team/stops/LVkinst2"], ["https://tec.openplanner.team/stops/LAIchpl2", "https://tec.openplanner.team/stops/LVBsevr1"], ["https://tec.openplanner.team/stops/H5wo123b", "https://tec.openplanner.team/stops/H5wo134b"], ["https://tec.openplanner.team/stops/NL76ajb", "https://tec.openplanner.team/stops/NL76alc"], ["https://tec.openplanner.team/stops/Lroeg--4", "https://tec.openplanner.team/stops/Lronamo1"], ["https://tec.openplanner.team/stops/N525ahb", "https://tec.openplanner.team/stops/N525akb"], ["https://tec.openplanner.team/stops/X882aab", "https://tec.openplanner.team/stops/X882amb"], ["https://tec.openplanner.team/stops/N501ada", "https://tec.openplanner.team/stops/N501aha"], ["https://tec.openplanner.team/stops/N528aub", "https://tec.openplanner.team/stops/N542apa"], ["https://tec.openplanner.team/stops/Bgzddur1", "https://tec.openplanner.team/stops/Bgzddur2"], ["https://tec.openplanner.team/stops/Crsaise1", "https://tec.openplanner.team/stops/Crsrose1"], ["https://tec.openplanner.team/stops/X897aua", "https://tec.openplanner.team/stops/X897ava"], ["https://tec.openplanner.team/stops/H4ag105a", "https://tec.openplanner.team/stops/H4br110a"], ["https://tec.openplanner.team/stops/H1le121b", "https://tec.openplanner.team/stops/H1le130b"], ["https://tec.openplanner.team/stops/H5is171a", "https://tec.openplanner.team/stops/H5is171b"], ["https://tec.openplanner.team/stops/LSXbecc1", "https://tec.openplanner.team/stops/LTHroch1"], ["https://tec.openplanner.team/stops/H1ch100b", "https://tec.openplanner.team/stops/H1ch104a"], ["https://tec.openplanner.team/stops/X715aab", "https://tec.openplanner.team/stops/X716aeb"], ["https://tec.openplanner.team/stops/LAWeg--1", "https://tec.openplanner.team/stops/LAWeg--2"], ["https://tec.openplanner.team/stops/Braclin2", "https://tec.openplanner.team/stops/Bracrpe2"], ["https://tec.openplanner.team/stops/Cptplac2", "https://tec.openplanner.team/stops/Cptplac4"], ["https://tec.openplanner.team/stops/X619ada", "https://tec.openplanner.team/stops/X619aeb"], ["https://tec.openplanner.team/stops/N242aea", "https://tec.openplanner.team/stops/N242afa"], ["https://tec.openplanner.team/stops/X897amb", "https://tec.openplanner.team/stops/X897awa"], ["https://tec.openplanner.team/stops/X615avb", "https://tec.openplanner.team/stops/X615awb"], ["https://tec.openplanner.team/stops/Lhefoot1", "https://tec.openplanner.team/stops/Lhr4ave2"], ["https://tec.openplanner.team/stops/N308aba", "https://tec.openplanner.team/stops/N337afa"], ["https://tec.openplanner.team/stops/X879aia", "https://tec.openplanner.team/stops/X879aka"], ["https://tec.openplanner.team/stops/H4ne134b", "https://tec.openplanner.team/stops/H4ne144a"], ["https://tec.openplanner.team/stops/N217aab", "https://tec.openplanner.team/stops/N287aba"], ["https://tec.openplanner.team/stops/X640aeb", "https://tec.openplanner.team/stops/X640aga"], ["https://tec.openplanner.team/stops/N537aha", "https://tec.openplanner.team/stops/N537aib"], ["https://tec.openplanner.team/stops/H1ob327a", "https://tec.openplanner.team/stops/H1ob327b"], ["https://tec.openplanner.team/stops/H2ca103c", "https://tec.openplanner.team/stops/H2ca103d"], ["https://tec.openplanner.team/stops/LaNmuhl1", "https://tec.openplanner.team/stops/LaNmuhl2"], ["https://tec.openplanner.team/stops/X740ada", "https://tec.openplanner.team/stops/X740aea"], ["https://tec.openplanner.team/stops/LENecol2", "https://tec.openplanner.team/stops/LENsent2"], ["https://tec.openplanner.team/stops/N501dea", "https://tec.openplanner.team/stops/N501myb"], ["https://tec.openplanner.team/stops/Bbcodam4", "https://tec.openplanner.team/stops/H2ec103a"], ["https://tec.openplanner.team/stops/X723afa", "https://tec.openplanner.team/stops/X723aga"], ["https://tec.openplanner.team/stops/LHNvill1", "https://tec.openplanner.team/stops/LVPduvi2"], ["https://tec.openplanner.team/stops/LFarhuy1", "https://tec.openplanner.team/stops/LWAipes1"], ["https://tec.openplanner.team/stops/Bitrnus1", "https://tec.openplanner.team/stops/Bitrpri1"], ["https://tec.openplanner.team/stops/H4fo116b", "https://tec.openplanner.team/stops/H4fo117d"], ["https://tec.openplanner.team/stops/Cculpre2", "https://tec.openplanner.team/stops/Ccuphai4"], ["https://tec.openplanner.team/stops/Bthivil1", "https://tec.openplanner.team/stops/Bthivil2"], ["https://tec.openplanner.team/stops/Bnvmfba1", "https://tec.openplanner.team/stops/N515aqd"], ["https://tec.openplanner.team/stops/LWAipes1", "https://tec.openplanner.team/stops/LWArege2"], ["https://tec.openplanner.team/stops/H4ln127a", "https://tec.openplanner.team/stops/H4ln128b"], ["https://tec.openplanner.team/stops/X793afa", "https://tec.openplanner.team/stops/X793afc"], ["https://tec.openplanner.team/stops/Lpecroi1", "https://tec.openplanner.team/stops/Lpevove1"], ["https://tec.openplanner.team/stops/Loualbe2", "https://tec.openplanner.team/stops/Loudemo1"], ["https://tec.openplanner.team/stops/Bleugar1", "https://tec.openplanner.team/stops/Btieast1"], ["https://tec.openplanner.team/stops/X901aeb", "https://tec.openplanner.team/stops/X901boa"], ["https://tec.openplanner.team/stops/Lstbarb2", "https://tec.openplanner.team/stops/Lstbarb3"], ["https://tec.openplanner.team/stops/N501bka", "https://tec.openplanner.team/stops/N501bma"], ["https://tec.openplanner.team/stops/LFtcarr1", "https://tec.openplanner.team/stops/LFtn6--2"], ["https://tec.openplanner.team/stops/Cnadepo1", "https://tec.openplanner.team/stops/Cnahahe1"], ["https://tec.openplanner.team/stops/Cgocalv1", "https://tec.openplanner.team/stops/CMleop2"], ["https://tec.openplanner.team/stops/X991aab", "https://tec.openplanner.team/stops/X991aha"], ["https://tec.openplanner.team/stops/N542aab", "https://tec.openplanner.team/stops/N542aba"], ["https://tec.openplanner.team/stops/LAnvien2", "https://tec.openplanner.team/stops/LCF1spa1"], ["https://tec.openplanner.team/stops/H1bn113a", "https://tec.openplanner.team/stops/H1no142a"], ["https://tec.openplanner.team/stops/N547aab", "https://tec.openplanner.team/stops/N547alc"], ["https://tec.openplanner.team/stops/X349aaa", "https://tec.openplanner.team/stops/X998azb"], ["https://tec.openplanner.team/stops/LeUbush1", "https://tec.openplanner.team/stops/LeUnopr1"], ["https://tec.openplanner.team/stops/LMOf35-1", "https://tec.openplanner.team/stops/LMOs45-1"], ["https://tec.openplanner.team/stops/LAUhost1", "https://tec.openplanner.team/stops/LAUtism1"], ["https://tec.openplanner.team/stops/Bbaubru2", "https://tec.openplanner.team/stops/Bniv4co1"], ["https://tec.openplanner.team/stops/Bmalsme2", "https://tec.openplanner.team/stops/Btlbcul1"], ["https://tec.openplanner.team/stops/Bnodeco1", "https://tec.openplanner.team/stops/Bolgcsa1"], ["https://tec.openplanner.team/stops/X870ada", "https://tec.openplanner.team/stops/X870ajb"], ["https://tec.openplanner.team/stops/Cchheig2", "https://tec.openplanner.team/stops/Cdaptca1"], ["https://tec.openplanner.team/stops/Cravold2", "https://tec.openplanner.team/stops/Cwgtill1"], ["https://tec.openplanner.team/stops/H4ep130a", "https://tec.openplanner.team/stops/H4rm113b"], ["https://tec.openplanner.team/stops/N232aea", "https://tec.openplanner.team/stops/N261aca"], ["https://tec.openplanner.team/stops/Blmlbif2", "https://tec.openplanner.team/stops/Blmlvex2"], ["https://tec.openplanner.team/stops/Bcrbmsg2", "https://tec.openplanner.team/stops/Bcrbtho2"], ["https://tec.openplanner.team/stops/H5is169a", "https://tec.openplanner.team/stops/H5is174b"], ["https://tec.openplanner.team/stops/LcRmuhl1", "https://tec.openplanner.team/stops/LwTzent2"], ["https://tec.openplanner.team/stops/LAYecol2", "https://tec.openplanner.team/stops/LAYpl--2"], ["https://tec.openplanner.team/stops/Cmyedpa1", "https://tec.openplanner.team/stops/Cmyedpa2"], ["https://tec.openplanner.team/stops/H1cu117a", "https://tec.openplanner.team/stops/H1cu117c"], ["https://tec.openplanner.team/stops/H4hs137b", "https://tec.openplanner.team/stops/H4mb142a"], ["https://tec.openplanner.team/stops/X923acb", "https://tec.openplanner.team/stops/X923ama"], ["https://tec.openplanner.team/stops/Cflecga2", "https://tec.openplanner.team/stops/Cflvxca1"], ["https://tec.openplanner.team/stops/NH01abb", "https://tec.openplanner.team/stops/NH01abc"], ["https://tec.openplanner.team/stops/H1bl106a", "https://tec.openplanner.team/stops/H1sb147a"], ["https://tec.openplanner.team/stops/X731agb", "https://tec.openplanner.team/stops/X731ahb"], ["https://tec.openplanner.team/stops/X318abb", "https://tec.openplanner.team/stops/X361afa"], ["https://tec.openplanner.team/stops/Bbiehec1", "https://tec.openplanner.team/stops/Bbiesbi2"], ["https://tec.openplanner.team/stops/X605aba", "https://tec.openplanner.team/stops/X605aga"], ["https://tec.openplanner.team/stops/Lsmstad2", "https://tec.openplanner.team/stops/Lvecase2"], ["https://tec.openplanner.team/stops/Lbemc--1", "https://tec.openplanner.team/stops/Ljuvieu1"], ["https://tec.openplanner.team/stops/H1an101a", "https://tec.openplanner.team/stops/H1an103b"], ["https://tec.openplanner.team/stops/Bbghpln1", "https://tec.openplanner.team/stops/Bbghsta1"], ["https://tec.openplanner.team/stops/X917agb", "https://tec.openplanner.team/stops/X917ahb"], ["https://tec.openplanner.team/stops/LCUmars1", "https://tec.openplanner.team/stops/LSzcoop1"], ["https://tec.openplanner.team/stops/X725awa", "https://tec.openplanner.team/stops/X725axa"], ["https://tec.openplanner.team/stops/H4ft132a", "https://tec.openplanner.team/stops/H4ft132b"], ["https://tec.openplanner.team/stops/N201aia", "https://tec.openplanner.team/stops/N201aib"], ["https://tec.openplanner.team/stops/Cmlm2411", "https://tec.openplanner.team/stops/Cmlphai2"], ["https://tec.openplanner.team/stops/H4bc104b", "https://tec.openplanner.team/stops/H4wr173c"], ["https://tec.openplanner.team/stops/LElgerd2", "https://tec.openplanner.team/stops/LElgerd5"], ["https://tec.openplanner.team/stops/N571ada", "https://tec.openplanner.team/stops/N573amb"], ["https://tec.openplanner.team/stops/Crecouc1", "https://tec.openplanner.team/stops/Crecouc2"], ["https://tec.openplanner.team/stops/N229amb", "https://tec.openplanner.team/stops/N229aoa"], ["https://tec.openplanner.team/stops/Barcsta1", "https://tec.openplanner.team/stops/Bnetegl3"], ["https://tec.openplanner.team/stops/Cbufron1", "https://tec.openplanner.team/stops/Cbufron2"], ["https://tec.openplanner.team/stops/Lsehcoc1", "https://tec.openplanner.team/stops/Lsepaqu2"], ["https://tec.openplanner.team/stops/Cbetrie1", "https://tec.openplanner.team/stops/Chhsncb1"], ["https://tec.openplanner.team/stops/N507aoa", "https://tec.openplanner.team/stops/N507apb"], ["https://tec.openplanner.team/stops/LLxmonu1", "https://tec.openplanner.team/stops/LLxmonu2"], ["https://tec.openplanner.team/stops/Cfcmass2", "https://tec.openplanner.team/stops/Cfcpcov1"], ["https://tec.openplanner.team/stops/LDLbeau1", "https://tec.openplanner.team/stops/LDLgran3"], ["https://tec.openplanner.team/stops/X725ara", "https://tec.openplanner.team/stops/X725asa"], ["https://tec.openplanner.team/stops/Bneedia1", "https://tec.openplanner.team/stops/Boplham1"], ["https://tec.openplanner.team/stops/Cchlamb2", "https://tec.openplanner.team/stops/Clodupr1"], ["https://tec.openplanner.team/stops/H1al105a", "https://tec.openplanner.team/stops/H1al105b"], ["https://tec.openplanner.team/stops/X986aab", "https://tec.openplanner.team/stops/X986aba"], ["https://tec.openplanner.team/stops/LoDscha1", "https://tec.openplanner.team/stops/LoDscha2"], ["https://tec.openplanner.team/stops/N533ala", "https://tec.openplanner.team/stops/N533alb"], ["https://tec.openplanner.team/stops/Lvchenn1", "https://tec.openplanner.team/stops/Lvcvand2"], ["https://tec.openplanner.team/stops/X939ada", "https://tec.openplanner.team/stops/X940afb"], ["https://tec.openplanner.team/stops/H4me213a", "https://tec.openplanner.team/stops/H4ve137a"], ["https://tec.openplanner.team/stops/Lbhmc--1", "https://tec.openplanner.team/stops/Lvcchev2"], ["https://tec.openplanner.team/stops/LMaslav4", "https://tec.openplanner.team/stops/LMazonn3"], ["https://tec.openplanner.team/stops/NL35aba", "https://tec.openplanner.team/stops/NL35aca"], ["https://tec.openplanner.team/stops/LClflor2", "https://tec.openplanner.team/stops/LLC170-2"], ["https://tec.openplanner.team/stops/Ctubpos2", "https://tec.openplanner.team/stops/Ctubpos3"], ["https://tec.openplanner.team/stops/X641aba", "https://tec.openplanner.team/stops/X641ahb"], ["https://tec.openplanner.team/stops/X624aea", "https://tec.openplanner.team/stops/X624aka"], ["https://tec.openplanner.team/stops/Cmachau2", "https://tec.openplanner.team/stops/Cmaplas3"], ["https://tec.openplanner.team/stops/Lseprog2", "https://tec.openplanner.team/stops/Lsesabl2"], ["https://tec.openplanner.team/stops/Cgpleco1", "https://tec.openplanner.team/stops/Cpcchau"], ["https://tec.openplanner.team/stops/Croheig2", "https://tec.openplanner.team/stops/Crojume1"], ["https://tec.openplanner.team/stops/Crolema1", "https://tec.openplanner.team/stops/Crolema4"], ["https://tec.openplanner.team/stops/LRmkast*", "https://tec.openplanner.team/stops/LRmstat2"], ["https://tec.openplanner.team/stops/X901atb", "https://tec.openplanner.team/stops/X901ava"], ["https://tec.openplanner.team/stops/N132afa", "https://tec.openplanner.team/stops/N132aga"], ["https://tec.openplanner.team/stops/H2ca106b", "https://tec.openplanner.team/stops/H2ca109a"], ["https://tec.openplanner.team/stops/N127acb", "https://tec.openplanner.team/stops/N127aja"], ["https://tec.openplanner.team/stops/X661axb", "https://tec.openplanner.team/stops/X661axc"], ["https://tec.openplanner.team/stops/Cmlcazi2", "https://tec.openplanner.team/stops/Cmlphai2"], ["https://tec.openplanner.team/stops/X982bma", "https://tec.openplanner.team/stops/X982bqa"], ["https://tec.openplanner.team/stops/X641apb", "https://tec.openplanner.team/stops/X641apc"], ["https://tec.openplanner.team/stops/LBbhupp1", "https://tec.openplanner.team/stops/LBbhupp2"], ["https://tec.openplanner.team/stops/N124acb", "https://tec.openplanner.team/stops/N150aaa"], ["https://tec.openplanner.team/stops/Bbghcar1", "https://tec.openplanner.team/stops/Bbghcar2"], ["https://tec.openplanner.team/stops/Lrcprin1", "https://tec.openplanner.team/stops/Lrcprin6"], ["https://tec.openplanner.team/stops/H1so132b", "https://tec.openplanner.team/stops/H1so133a"], ["https://tec.openplanner.team/stops/Craplac3", "https://tec.openplanner.team/stops/Crasocq1"], ["https://tec.openplanner.team/stops/Lgdstoc1", "https://tec.openplanner.team/stops/LXHfond2"], ["https://tec.openplanner.team/stops/Cmlaili1", "https://tec.openplanner.team/stops/Cmttrie2"], ["https://tec.openplanner.team/stops/LFIcabi2", "https://tec.openplanner.team/stops/LHaxhig1"], ["https://tec.openplanner.team/stops/X608ata", "https://tec.openplanner.team/stops/X608axa"], ["https://tec.openplanner.team/stops/X768ald", "https://tec.openplanner.team/stops/X769ajb"], ["https://tec.openplanner.team/stops/LrAkape1", "https://tec.openplanner.team/stops/LrAmuhl2"], ["https://tec.openplanner.team/stops/X948ana", "https://tec.openplanner.team/stops/X949aka"], ["https://tec.openplanner.team/stops/Cjxetri1", "https://tec.openplanner.team/stops/Cmmschw2"], ["https://tec.openplanner.team/stops/LRachen2", "https://tec.openplanner.team/stops/Lsedavy2"], ["https://tec.openplanner.team/stops/Bmonbri1", "https://tec.openplanner.team/stops/Bnivfhu1"], ["https://tec.openplanner.team/stops/Cdostco1", "https://tec.openplanner.team/stops/Cstplac2"], ["https://tec.openplanner.team/stops/LFMkrin1", "https://tec.openplanner.team/stops/LFMkrin2"], ["https://tec.openplanner.team/stops/Bcrbcel2", "https://tec.openplanner.team/stops/Bcrbhir1"], ["https://tec.openplanner.team/stops/H3so162b", "https://tec.openplanner.team/stops/H3so177b"], ["https://tec.openplanner.team/stops/Brsrabe1", "https://tec.openplanner.team/stops/Brsrabe2"], ["https://tec.openplanner.team/stops/X720aaa", "https://tec.openplanner.team/stops/X721asa"], ["https://tec.openplanner.team/stops/Btubcvi1", "https://tec.openplanner.team/stops/Btubois1"], ["https://tec.openplanner.team/stops/LPRmc--2", "https://tec.openplanner.team/stops/LPRmc--3"], ["https://tec.openplanner.team/stops/H1gh144a", "https://tec.openplanner.team/stops/H1gh145b"], ["https://tec.openplanner.team/stops/Bcrncen1", "https://tec.openplanner.team/stops/Bcrnpla1"], ["https://tec.openplanner.team/stops/H1lm105a", "https://tec.openplanner.team/stops/H1sy145b"], ["https://tec.openplanner.team/stops/LOL6che1", "https://tec.openplanner.team/stops/LSOgott1"], ["https://tec.openplanner.team/stops/H1em103b", "https://tec.openplanner.team/stops/H1hl128b"], ["https://tec.openplanner.team/stops/H3so157a", "https://tec.openplanner.team/stops/H3so157b"], ["https://tec.openplanner.team/stops/X636bdb", "https://tec.openplanner.team/stops/X636bea"], ["https://tec.openplanner.team/stops/Bwavgar5", "https://tec.openplanner.team/stops/Bwavgar6"], ["https://tec.openplanner.team/stops/X595ahb", "https://tec.openplanner.team/stops/X796aha"], ["https://tec.openplanner.team/stops/LVEcroi1", "https://tec.openplanner.team/stops/LVErtt-1"], ["https://tec.openplanner.team/stops/N553aca", "https://tec.openplanner.team/stops/N568aeb"], ["https://tec.openplanner.team/stops/LhM07--2", "https://tec.openplanner.team/stops/LhMwing1"], ["https://tec.openplanner.team/stops/X641ava", "https://tec.openplanner.team/stops/X641awa"], ["https://tec.openplanner.team/stops/Cjuphil2", "https://tec.openplanner.team/stops/Crarmas1"], ["https://tec.openplanner.team/stops/Llmbouv1", "https://tec.openplanner.team/stops/LWexhav2"], ["https://tec.openplanner.team/stops/H1ht122b", "https://tec.openplanner.team/stops/H1ht128b"], ["https://tec.openplanner.team/stops/LOthiro1", "https://tec.openplanner.team/stops/LVsbrux1"], ["https://tec.openplanner.team/stops/N343aia", "https://tec.openplanner.team/stops/N343aib"], ["https://tec.openplanner.team/stops/N530agb", "https://tec.openplanner.team/stops/N534bea"], ["https://tec.openplanner.team/stops/N501cma", "https://tec.openplanner.team/stops/N501cmd"], ["https://tec.openplanner.team/stops/LJUfort2", "https://tec.openplanner.team/stops/Llaflot2"], ["https://tec.openplanner.team/stops/LCPgare1", "https://tec.openplanner.team/stops/LCPlacr2"], ["https://tec.openplanner.team/stops/H2bh103d", "https://tec.openplanner.team/stops/H2bh118a"], ["https://tec.openplanner.team/stops/N584aob", "https://tec.openplanner.team/stops/N584apb"], ["https://tec.openplanner.team/stops/LVbeg--2", "https://tec.openplanner.team/stops/LVbsurr1"], ["https://tec.openplanner.team/stops/LeUhaas3", "https://tec.openplanner.team/stops/LeUkehr4"], ["https://tec.openplanner.team/stops/X824adb", "https://tec.openplanner.team/stops/X824aeb"], ["https://tec.openplanner.team/stops/Lstamph1", "https://tec.openplanner.team/stops/Lstchim2"], ["https://tec.openplanner.team/stops/H2ch121b", "https://tec.openplanner.team/stops/H2tz117a"], ["https://tec.openplanner.team/stops/N569adb", "https://tec.openplanner.team/stops/N569anb"], ["https://tec.openplanner.team/stops/N117bdb", "https://tec.openplanner.team/stops/N117bdd"], ["https://tec.openplanner.team/stops/N541aba", "https://tec.openplanner.team/stops/N541aeb"], ["https://tec.openplanner.team/stops/X625acb", "https://tec.openplanner.team/stops/X625adb"], ["https://tec.openplanner.team/stops/LPLecco2", "https://tec.openplanner.team/stops/LPLruis2"], ["https://tec.openplanner.team/stops/X872agb", "https://tec.openplanner.team/stops/X890afa"], ["https://tec.openplanner.team/stops/Barqbar1", "https://tec.openplanner.team/stops/Barqhpe2"], ["https://tec.openplanner.team/stops/H1je211a", "https://tec.openplanner.team/stops/H1je219b"], ["https://tec.openplanner.team/stops/N509axa", "https://tec.openplanner.team/stops/N511aea"], ["https://tec.openplanner.team/stops/N352aba", "https://tec.openplanner.team/stops/N352ada"], ["https://tec.openplanner.team/stops/Cgostex1", "https://tec.openplanner.team/stops/Cgostex2"], ["https://tec.openplanner.team/stops/Lmochar2", "https://tec.openplanner.team/stops/Lmomarr3"], ["https://tec.openplanner.team/stops/Llglibo4", "https://tec.openplanner.team/stops/Llgmean2"], ["https://tec.openplanner.team/stops/N160aca", "https://tec.openplanner.team/stops/N160ada"], ["https://tec.openplanner.team/stops/X911abb", "https://tec.openplanner.team/stops/X911acb"], ["https://tec.openplanner.team/stops/X754aha", "https://tec.openplanner.team/stops/X754ala"], ["https://tec.openplanner.team/stops/H1el136a", "https://tec.openplanner.team/stops/H1el136b"], ["https://tec.openplanner.team/stops/LBNover2", "https://tec.openplanner.team/stops/LeUbael2"], ["https://tec.openplanner.team/stops/LOcchat1", "https://tec.openplanner.team/stops/LOcchat2"], ["https://tec.openplanner.team/stops/Cmcgoch2", "https://tec.openplanner.team/stops/Cmgslo2"], ["https://tec.openplanner.team/stops/LLR4bra2", "https://tec.openplanner.team/stops/LLRrape3"], ["https://tec.openplanner.team/stops/H1ha198a", "https://tec.openplanner.team/stops/H1ss348b"], ["https://tec.openplanner.team/stops/Csuegli", "https://tec.openplanner.team/stops/Csuptou1"], ["https://tec.openplanner.team/stops/Bblagar7", "https://tec.openplanner.team/stops/Bblagar8"], ["https://tec.openplanner.team/stops/LTRcite1", "https://tec.openplanner.team/stops/LTRthie2"], ["https://tec.openplanner.team/stops/X624aca", "https://tec.openplanner.team/stops/X624acb"], ["https://tec.openplanner.team/stops/Cpclibe3", "https://tec.openplanner.team/stops/Cpclibe4"], ["https://tec.openplanner.team/stops/H5at105a", "https://tec.openplanner.team/stops/H5at113a"], ["https://tec.openplanner.team/stops/Cjucar01", "https://tec.openplanner.team/stops/CMcarr1"], ["https://tec.openplanner.team/stops/Cvp3til1", "https://tec.openplanner.team/stops/Cvppost1"], ["https://tec.openplanner.team/stops/Bbsifml1", "https://tec.openplanner.team/stops/Bbsimpl2"], ["https://tec.openplanner.team/stops/NB33aja", "https://tec.openplanner.team/stops/NR38aeb"], ["https://tec.openplanner.team/stops/LhSheid2", "https://tec.openplanner.team/stops/LkOzoll2"], ["https://tec.openplanner.team/stops/H1hr128b", "https://tec.openplanner.team/stops/H1hr128c"], ["https://tec.openplanner.team/stops/X817adb", "https://tec.openplanner.team/stops/X817aea"], ["https://tec.openplanner.team/stops/Becebju2", "https://tec.openplanner.team/stops/Bnstlna2"], ["https://tec.openplanner.team/stops/LHNcreh1", "https://tec.openplanner.team/stops/LHNcreh2"], ["https://tec.openplanner.team/stops/Llgborn2", "https://tec.openplanner.team/stops/Llgbuis1"], ["https://tec.openplanner.team/stops/X607aba", "https://tec.openplanner.team/stops/X607acb"], ["https://tec.openplanner.team/stops/X836aab", "https://tec.openplanner.team/stops/X837ahb"], ["https://tec.openplanner.team/stops/Cmtplac1", "https://tec.openplanner.team/stops/Cmtplac4"], ["https://tec.openplanner.team/stops/H3go102b", "https://tec.openplanner.team/stops/H3lr116a"], ["https://tec.openplanner.team/stops/N224aaa", "https://tec.openplanner.team/stops/X224acb"], ["https://tec.openplanner.team/stops/N351ata", "https://tec.openplanner.team/stops/X351aca"], ["https://tec.openplanner.team/stops/X695aca", "https://tec.openplanner.team/stops/X695aha"], ["https://tec.openplanner.team/stops/Bwavcen1", "https://tec.openplanner.team/stops/Bwavgar7"], ["https://tec.openplanner.team/stops/H4va233a", "https://tec.openplanner.team/stops/H4va233b"], ["https://tec.openplanner.team/stops/N135ava", "https://tec.openplanner.team/stops/N135bbb"], ["https://tec.openplanner.team/stops/X731ahb", "https://tec.openplanner.team/stops/X731akb"], ["https://tec.openplanner.team/stops/Bmanfbg1", "https://tec.openplanner.team/stops/Bmangen1"], ["https://tec.openplanner.team/stops/X354aab", "https://tec.openplanner.team/stops/X354abb"], ["https://tec.openplanner.team/stops/Cplrond2", "https://tec.openplanner.team/stops/Cplrymo2"], ["https://tec.openplanner.team/stops/N501dja", "https://tec.openplanner.team/stops/N501jsa"], ["https://tec.openplanner.team/stops/N502acb", "https://tec.openplanner.team/stops/N503aab"], ["https://tec.openplanner.team/stops/Lhrchar1", "https://tec.openplanner.team/stops/Lhrthie1"], ["https://tec.openplanner.team/stops/Csesabo1", "https://tec.openplanner.team/stops/Csesabo2"], ["https://tec.openplanner.team/stops/X609aaa", "https://tec.openplanner.team/stops/X609aab"], ["https://tec.openplanner.team/stops/LMOpiss1", "https://tec.openplanner.team/stops/LMOstat2"], ["https://tec.openplanner.team/stops/N206aca", "https://tec.openplanner.team/stops/N220aab"], ["https://tec.openplanner.team/stops/N505aob", "https://tec.openplanner.team/stops/N580aga"], ["https://tec.openplanner.team/stops/X779aca", "https://tec.openplanner.team/stops/X779acb"], ["https://tec.openplanner.team/stops/H4he103a", "https://tec.openplanner.team/stops/H4he107a"], ["https://tec.openplanner.team/stops/H4bc106b", "https://tec.openplanner.team/stops/H4bc108b"], ["https://tec.openplanner.team/stops/LClberw2", "https://tec.openplanner.team/stops/LClflor1"], ["https://tec.openplanner.team/stops/Cmaacac2", "https://tec.openplanner.team/stops/Cmapeet2"], ["https://tec.openplanner.team/stops/LLmwaut2", "https://tec.openplanner.team/stops/LRepous1"], ["https://tec.openplanner.team/stops/LVncarr1", "https://tec.openplanner.team/stops/LVnourt1"], ["https://tec.openplanner.team/stops/X720aea", "https://tec.openplanner.team/stops/X721alb"], ["https://tec.openplanner.team/stops/N538aka", "https://tec.openplanner.team/stops/N538apb"], ["https://tec.openplanner.team/stops/LrUgeme2", "https://tec.openplanner.team/stops/LrUwenz1"], ["https://tec.openplanner.team/stops/N201aab", "https://tec.openplanner.team/stops/N201arb"], ["https://tec.openplanner.team/stops/Bgnvbsi1", "https://tec.openplanner.team/stops/Bgnvtas1"], ["https://tec.openplanner.team/stops/X604ada", "https://tec.openplanner.team/stops/X604akb"], ["https://tec.openplanner.team/stops/N202abb", "https://tec.openplanner.team/stops/N202aga"], ["https://tec.openplanner.team/stops/N585aha", "https://tec.openplanner.team/stops/N585ahb"], ["https://tec.openplanner.team/stops/Cgofbru2", "https://tec.openplanner.team/stops/CMfbru2"], ["https://tec.openplanner.team/stops/LPAbrun1", "https://tec.openplanner.team/stops/LPAmc--2"], ["https://tec.openplanner.team/stops/X673aaa", "https://tec.openplanner.team/stops/X673aab"], ["https://tec.openplanner.team/stops/Bblahop1", "https://tec.openplanner.team/stops/Bblapje1"], ["https://tec.openplanner.team/stops/N118ana", "https://tec.openplanner.team/stops/N118anb"], ["https://tec.openplanner.team/stops/X744afa", "https://tec.openplanner.team/stops/X745abb"], ["https://tec.openplanner.team/stops/N106aca", "https://tec.openplanner.team/stops/N137aab"], ["https://tec.openplanner.team/stops/LeUauto2", "https://tec.openplanner.team/stops/LeUwais2"], ["https://tec.openplanner.team/stops/H2ml113a", "https://tec.openplanner.team/stops/H2ml113b"], ["https://tec.openplanner.team/stops/H1cu118b", "https://tec.openplanner.team/stops/H1fr122a"], ["https://tec.openplanner.team/stops/LGMdrev2", "https://tec.openplanner.team/stops/LGMhadr2"], ["https://tec.openplanner.team/stops/H2hp114a", "https://tec.openplanner.team/stops/H2hp262b"], ["https://tec.openplanner.team/stops/Cstbasc2", "https://tec.openplanner.team/stops/Cstplac1"], ["https://tec.openplanner.team/stops/Bnilegl2", "https://tec.openplanner.team/stops/Bwspjon1"], ["https://tec.openplanner.team/stops/Bmrlegl1", "https://tec.openplanner.team/stops/Bmrlegl2"], ["https://tec.openplanner.team/stops/N383aab", "https://tec.openplanner.team/stops/N383abb"], ["https://tec.openplanner.team/stops/H4he102a", "https://tec.openplanner.team/stops/H4he106b"], ["https://tec.openplanner.team/stops/LPT97--2", "https://tec.openplanner.team/stops/LPTgran2"], ["https://tec.openplanner.team/stops/Lboeg--2", "https://tec.openplanner.team/stops/Lbotige1"], ["https://tec.openplanner.team/stops/LkTgutl2", "https://tec.openplanner.team/stops/LwAstum1"], ["https://tec.openplanner.team/stops/NC23aga", "https://tec.openplanner.team/stops/NC23agb"], ["https://tec.openplanner.team/stops/Ccohuli1", "https://tec.openplanner.team/stops/Ccohuli2"], ["https://tec.openplanner.team/stops/X664aca", "https://tec.openplanner.team/stops/X667aba"], ["https://tec.openplanner.team/stops/N270aaa", "https://tec.openplanner.team/stops/N270aba"], ["https://tec.openplanner.team/stops/Cgxptt2", "https://tec.openplanner.team/stops/Cgxvkho4"], ["https://tec.openplanner.team/stops/H4gu107a", "https://tec.openplanner.team/stops/H4ta129b"], ["https://tec.openplanner.team/stops/LBOande2", "https://tec.openplanner.team/stops/LBOholt1"], ["https://tec.openplanner.team/stops/Bgnvqve1", "https://tec.openplanner.team/stops/Bgnvtil2"], ["https://tec.openplanner.team/stops/Lanhoud3", "https://tec.openplanner.team/stops/Lanmouf2"], ["https://tec.openplanner.team/stops/X512aja", "https://tec.openplanner.team/stops/X595aad"], ["https://tec.openplanner.team/stops/LHUgodi2", "https://tec.openplanner.team/stops/LHUloui2"], ["https://tec.openplanner.team/stops/N118ata", "https://tec.openplanner.team/stops/N118atb"], ["https://tec.openplanner.team/stops/Bnstver2", "https://tec.openplanner.team/stops/H3br100b"], ["https://tec.openplanner.team/stops/H1qg138b", "https://tec.openplanner.team/stops/H1qg138c"], ["https://tec.openplanner.team/stops/X771abb", "https://tec.openplanner.team/stops/X771acb"], ["https://tec.openplanner.team/stops/LScd45-2", "https://tec.openplanner.team/stops/LScdina1"], ["https://tec.openplanner.team/stops/LFAbouc1", "https://tec.openplanner.team/stops/LFAbouc2"], ["https://tec.openplanner.team/stops/Cfrgivr1", "https://tec.openplanner.team/stops/Cfrsour1"], ["https://tec.openplanner.team/stops/Bhaleur2", "https://tec.openplanner.team/stops/Bhalker2"], ["https://tec.openplanner.team/stops/LWOcour1", "https://tec.openplanner.team/stops/LWOwa162"], ["https://tec.openplanner.team/stops/Lchacie1", "https://tec.openplanner.team/stops/Lchchau1"], ["https://tec.openplanner.team/stops/LwR129-2", "https://tec.openplanner.team/stops/LwRkirc1"], ["https://tec.openplanner.team/stops/LBTcarr2", "https://tec.openplanner.team/stops/LBTcarr3"], ["https://tec.openplanner.team/stops/LBEairp1", "https://tec.openplanner.team/stops/LLNcime1"], ["https://tec.openplanner.team/stops/Ccisolv1", "https://tec.openplanner.team/stops/Cmtcapi2"], ["https://tec.openplanner.team/stops/LkTkabi2", "https://tec.openplanner.team/stops/LlNbruc1"], ["https://tec.openplanner.team/stops/Bclgvse1", "https://tec.openplanner.team/stops/Bllnfle1"], ["https://tec.openplanner.team/stops/Clddelh1", "https://tec.openplanner.team/stops/Clddelh2"], ["https://tec.openplanner.team/stops/X615aca", "https://tec.openplanner.team/stops/X615bia"], ["https://tec.openplanner.team/stops/LDAptbo2", "https://tec.openplanner.team/stops/LDAwich2"], ["https://tec.openplanner.team/stops/Bgermco1", "https://tec.openplanner.team/stops/Bgrhcro1"], ["https://tec.openplanner.team/stops/LAnchat2", "https://tec.openplanner.team/stops/LAnvien1"], ["https://tec.openplanner.team/stops/H5pe135a", "https://tec.openplanner.team/stops/H5pe153b"], ["https://tec.openplanner.team/stops/Ccocoup2", "https://tec.openplanner.team/stops/Croball1"], ["https://tec.openplanner.team/stops/H5rx128a", "https://tec.openplanner.team/stops/H5rx145b"], ["https://tec.openplanner.team/stops/Bgntalt3", "https://tec.openplanner.team/stops/Bsomjon2"], ["https://tec.openplanner.team/stops/LCxbeau1", "https://tec.openplanner.team/stops/LCxbeau2"], ["https://tec.openplanner.team/stops/Bhtihau1", "https://tec.openplanner.team/stops/Bhtihau2"], ["https://tec.openplanner.team/stops/N565afa", "https://tec.openplanner.team/stops/N565afb"], ["https://tec.openplanner.team/stops/Cmaplas3", "https://tec.openplanner.team/stops/Cmaroya2"], ["https://tec.openplanner.team/stops/X774aec", "https://tec.openplanner.team/stops/X774aha"], ["https://tec.openplanner.team/stops/Bsmgmas1", "https://tec.openplanner.team/stops/Bsmgmas2"], ["https://tec.openplanner.team/stops/LhGscha*", "https://tec.openplanner.team/stops/LkEschi2"], ["https://tec.openplanner.team/stops/X922aib", "https://tec.openplanner.team/stops/X922ajb"], ["https://tec.openplanner.team/stops/LRRroth1", "https://tec.openplanner.team/stops/LRRtrix1"], ["https://tec.openplanner.team/stops/LSzeg--1", "https://tec.openplanner.team/stops/LSzeg--2"], ["https://tec.openplanner.team/stops/H2bh106a", "https://tec.openplanner.team/stops/H2bh110b"], ["https://tec.openplanner.team/stops/LkEsouf1", "https://tec.openplanner.team/stops/LkEsouf2"], ["https://tec.openplanner.team/stops/LAumari1", "https://tec.openplanner.team/stops/LWRheyd1"], ["https://tec.openplanner.team/stops/Csdetan1", "https://tec.openplanner.team/stops/Csdetan2"], ["https://tec.openplanner.team/stops/H5qu142b", "https://tec.openplanner.team/stops/H5qu150b"], ["https://tec.openplanner.team/stops/N115aca", "https://tec.openplanner.team/stops/N170aca"], ["https://tec.openplanner.team/stops/LbUmolk1", "https://tec.openplanner.team/stops/LbUmolk2"], ["https://tec.openplanner.team/stops/LOdkeme1", "https://tec.openplanner.team/stops/LOdmonu3"], ["https://tec.openplanner.team/stops/Blanmde1", "https://tec.openplanner.team/stops/Bwaanwi2"], ["https://tec.openplanner.team/stops/Lgrgoff2", "https://tec.openplanner.team/stops/Lgrtomb1"], ["https://tec.openplanner.team/stops/LSSfrai1", "https://tec.openplanner.team/stops/LSSfrai2"], ["https://tec.openplanner.team/stops/H2pe160b", "https://tec.openplanner.team/stops/H2sv217b"], ["https://tec.openplanner.team/stops/Cmlvesp1", "https://tec.openplanner.team/stops/Cmlvesp2"], ["https://tec.openplanner.team/stops/H1wa149a", "https://tec.openplanner.team/stops/H1wa149c"], ["https://tec.openplanner.team/stops/Bnivind1", "https://tec.openplanner.team/stops/Bnivvai2"], ["https://tec.openplanner.team/stops/H1qu100b", "https://tec.openplanner.team/stops/H1qu100d"], ["https://tec.openplanner.team/stops/H4ag101a", "https://tec.openplanner.team/stops/H4ag102b"], ["https://tec.openplanner.team/stops/N501iaa", "https://tec.openplanner.team/stops/N501iqb"], ["https://tec.openplanner.team/stops/X806aca", "https://tec.openplanner.team/stops/X806akc"], ["https://tec.openplanner.team/stops/X818aib", "https://tec.openplanner.team/stops/X818ajb"], ["https://tec.openplanner.team/stops/N501hla", "https://tec.openplanner.team/stops/N501hlw"], ["https://tec.openplanner.team/stops/Blascim2", "https://tec.openplanner.team/stops/Blascvi1"], ["https://tec.openplanner.team/stops/Cwfghis2", "https://tec.openplanner.team/stops/Cwfplac2"], ["https://tec.openplanner.team/stops/N120aab", "https://tec.openplanner.team/stops/N122afb"], ["https://tec.openplanner.team/stops/Bhevl3l1", "https://tec.openplanner.team/stops/Bhevl3l2"], ["https://tec.openplanner.team/stops/H4bo115b", "https://tec.openplanner.team/stops/H4bo118d"], ["https://tec.openplanner.team/stops/LCSfagn1", "https://tec.openplanner.team/stops/LCSfagn2"], ["https://tec.openplanner.team/stops/H4ty306b", "https://tec.openplanner.team/stops/H4ty320b"], ["https://tec.openplanner.team/stops/H1qv111b", "https://tec.openplanner.team/stops/H1qv112a"], ["https://tec.openplanner.team/stops/X888acb", "https://tec.openplanner.team/stops/X888adb"], ["https://tec.openplanner.team/stops/Ctyhame1", "https://tec.openplanner.team/stops/Ctyhame2"], ["https://tec.openplanner.team/stops/Bettbue1", "https://tec.openplanner.team/stops/Bixepla2"], ["https://tec.openplanner.team/stops/LkEbbl-2", "https://tec.openplanner.team/stops/LkEfrie1"], ["https://tec.openplanner.team/stops/LAWcorn2", "https://tec.openplanner.team/stops/LAWlonc1"], ["https://tec.openplanner.team/stops/Llghaye1", "https://tec.openplanner.team/stops/Llgsnap3"], ["https://tec.openplanner.team/stops/H1au100a", "https://tec.openplanner.team/stops/H1mr124a"], ["https://tec.openplanner.team/stops/H4wr175a", "https://tec.openplanner.team/stops/H4wr177a"], ["https://tec.openplanner.team/stops/Bhencha1", "https://tec.openplanner.team/stops/Bvirmbr1"], ["https://tec.openplanner.team/stops/LoEbach2", "https://tec.openplanner.team/stops/LrDhund1"], ["https://tec.openplanner.team/stops/X871aca", "https://tec.openplanner.team/stops/X871ada"], ["https://tec.openplanner.team/stops/H4mv191b", "https://tec.openplanner.team/stops/H4va232b"], ["https://tec.openplanner.team/stops/LaAjahn2", "https://tec.openplanner.team/stops/LaAzwei2"], ["https://tec.openplanner.team/stops/X727aba", "https://tec.openplanner.team/stops/X727aga"], ["https://tec.openplanner.team/stops/Lmaelhe2", "https://tec.openplanner.team/stops/Lmapomm2"], ["https://tec.openplanner.team/stops/X602ada", "https://tec.openplanner.team/stops/X602akb"], ["https://tec.openplanner.team/stops/Bbaualz2", "https://tec.openplanner.team/stops/Bbautri2"], ["https://tec.openplanner.team/stops/Bhanath2", "https://tec.openplanner.team/stops/LHNhv--2"], ["https://tec.openplanner.team/stops/LRGeg--1", "https://tec.openplanner.team/stops/LRGunio3"], ["https://tec.openplanner.team/stops/LHrwaya1", "https://tec.openplanner.team/stops/LHseg--3"], ["https://tec.openplanner.team/stops/N501hjc", "https://tec.openplanner.team/stops/N501ndb"], ["https://tec.openplanner.team/stops/Cmerued2", "https://tec.openplanner.team/stops/Cmewaya1"], ["https://tec.openplanner.team/stops/LBEchan1", "https://tec.openplanner.team/stops/LBEtrix2"], ["https://tec.openplanner.team/stops/X739afa", "https://tec.openplanner.team/stops/X739agb"], ["https://tec.openplanner.team/stops/H4fo119a", "https://tec.openplanner.team/stops/H4ga152a"], ["https://tec.openplanner.team/stops/LlChebs1", "https://tec.openplanner.team/stops/LlCland2"], ["https://tec.openplanner.team/stops/H1wi153a", "https://tec.openplanner.team/stops/H1wi155b"], ["https://tec.openplanner.team/stops/Lhrabho2", "https://tec.openplanner.team/stops/Lhrdelv1"], ["https://tec.openplanner.team/stops/LAUscha1", "https://tec.openplanner.team/stops/LFProt-1"], ["https://tec.openplanner.team/stops/Lsehya-1", "https://tec.openplanner.team/stops/Lsepuit2"], ["https://tec.openplanner.team/stops/Lagpass1", "https://tec.openplanner.team/stops/Lagviad2"], ["https://tec.openplanner.team/stops/H4ft137a", "https://tec.openplanner.team/stops/H4wu377b"], ["https://tec.openplanner.team/stops/N501haa", "https://tec.openplanner.team/stops/N501icb"], ["https://tec.openplanner.team/stops/LAWgill1", "https://tec.openplanner.team/stops/LAWvill2"], ["https://tec.openplanner.team/stops/N548ada", "https://tec.openplanner.team/stops/N548afa"], ["https://tec.openplanner.team/stops/N521asa", "https://tec.openplanner.team/stops/N521asc"], ["https://tec.openplanner.team/stops/X671aba", "https://tec.openplanner.team/stops/X671ada"], ["https://tec.openplanner.team/stops/N534atb", "https://tec.openplanner.team/stops/N534bea"], ["https://tec.openplanner.team/stops/H1ge151b", "https://tec.openplanner.team/stops/H1ge179b"], ["https://tec.openplanner.team/stops/N121aga", "https://tec.openplanner.team/stops/N121aia"], ["https://tec.openplanner.team/stops/Lmogerm1", "https://tec.openplanner.team/stops/Lmojoan1"], ["https://tec.openplanner.team/stops/LCaresi2", "https://tec.openplanner.team/stops/LHZpara1"], ["https://tec.openplanner.team/stops/Lemcort1", "https://tec.openplanner.team/stops/Lemhuet1"], ["https://tec.openplanner.team/stops/Canplal2", "https://tec.openplanner.team/stops/H2an100b"], ["https://tec.openplanner.team/stops/H5rx130b", "https://tec.openplanner.team/stops/H5rx144b"], ["https://tec.openplanner.team/stops/X925aka", "https://tec.openplanner.team/stops/X925ata"], ["https://tec.openplanner.team/stops/Lpebeco1", "https://tec.openplanner.team/stops/Lpebeco2"], ["https://tec.openplanner.team/stops/Cvpcime1", "https://tec.openplanner.team/stops/Cvpcime2"], ["https://tec.openplanner.team/stops/Lalmitt2", "https://tec.openplanner.team/stops/LAWkone1"], ["https://tec.openplanner.team/stops/H4do104a", "https://tec.openplanner.team/stops/H4ev120b"], ["https://tec.openplanner.team/stops/LDLgran1", "https://tec.openplanner.team/stops/LDLgran3"], ["https://tec.openplanner.team/stops/LWbboeg1", "https://tec.openplanner.team/stops/LWbburn2"], ["https://tec.openplanner.team/stops/Bjaufca1", "https://tec.openplanner.team/stops/Bjaugar1"], ["https://tec.openplanner.team/stops/N106ala", "https://tec.openplanner.team/stops/N106alb"], ["https://tec.openplanner.team/stops/Cmlclos1", "https://tec.openplanner.team/stops/Cmlcons1"], ["https://tec.openplanner.team/stops/LMfpral2", "https://tec.openplanner.team/stops/LOtthie2"], ["https://tec.openplanner.team/stops/Lemcarm1", "https://tec.openplanner.team/stops/Lemdieu2"], ["https://tec.openplanner.team/stops/H1sb150a", "https://tec.openplanner.team/stops/H1sb150b"], ["https://tec.openplanner.team/stops/H4te255a", "https://tec.openplanner.team/stops/H4te258a"], ["https://tec.openplanner.team/stops/LiVkreu3", "https://tec.openplanner.team/stops/LiVkreu4"], ["https://tec.openplanner.team/stops/LOTsava1", "https://tec.openplanner.team/stops/LVlplan1"], ["https://tec.openplanner.team/stops/X636ala", "https://tec.openplanner.team/stops/X636bja"], ["https://tec.openplanner.team/stops/Ccocroi2", "https://tec.openplanner.team/stops/Csocime2"], ["https://tec.openplanner.team/stops/LSBdelc1", "https://tec.openplanner.team/stops/LSGmale2"], ["https://tec.openplanner.team/stops/N155afa", "https://tec.openplanner.team/stops/N155ahb"], ["https://tec.openplanner.team/stops/N501cna", "https://tec.openplanner.team/stops/N501coa"], ["https://tec.openplanner.team/stops/LBOec--2", "https://tec.openplanner.team/stops/LBOholt2"], ["https://tec.openplanner.team/stops/N507aab", "https://tec.openplanner.team/stops/NL68aac"], ["https://tec.openplanner.team/stops/H4os222b", "https://tec.openplanner.team/stops/H4re226a"], ["https://tec.openplanner.team/stops/X762aba", "https://tec.openplanner.team/stops/X763adb"], ["https://tec.openplanner.team/stops/N204aka", "https://tec.openplanner.team/stops/N204akb"], ["https://tec.openplanner.team/stops/LAieg--2", "https://tec.openplanner.team/stops/LGlcarr2"], ["https://tec.openplanner.team/stops/H2lh124b", "https://tec.openplanner.team/stops/H2lh128b"], ["https://tec.openplanner.team/stops/H1er106b", "https://tec.openplanner.team/stops/H1pe130b"], ["https://tec.openplanner.team/stops/LFRrohe1", "https://tec.openplanner.team/stops/LSTmast2"], ["https://tec.openplanner.team/stops/X764aca", "https://tec.openplanner.team/stops/X764aeb"], ["https://tec.openplanner.team/stops/X626acb", "https://tec.openplanner.team/stops/X626ana"], ["https://tec.openplanner.team/stops/X745acb", "https://tec.openplanner.team/stops/X746akb"], ["https://tec.openplanner.team/stops/N528asa", "https://tec.openplanner.team/stops/N528asb"], ["https://tec.openplanner.team/stops/H4mx114a", "https://tec.openplanner.team/stops/H4mx117a"], ["https://tec.openplanner.team/stops/Cpljonc2", "https://tec.openplanner.team/stops/Cplrmon1"], ["https://tec.openplanner.team/stops/N149aca", "https://tec.openplanner.team/stops/N149acb"], ["https://tec.openplanner.team/stops/Bmouegl2", "https://tec.openplanner.team/stops/Bottvtc1"], ["https://tec.openplanner.team/stops/X922ala", "https://tec.openplanner.team/stops/X922alb"], ["https://tec.openplanner.team/stops/N270aec", "https://tec.openplanner.team/stops/N270agb"], ["https://tec.openplanner.team/stops/H1cd111b", "https://tec.openplanner.team/stops/H1cd111d"], ["https://tec.openplanner.team/stops/X633alb", "https://tec.openplanner.team/stops/X633amb"], ["https://tec.openplanner.team/stops/X901ana", "https://tec.openplanner.team/stops/X901aub"], ["https://tec.openplanner.team/stops/X626afa", "https://tec.openplanner.team/stops/X626aga"], ["https://tec.openplanner.team/stops/N270ada", "https://tec.openplanner.team/stops/N270afd"], ["https://tec.openplanner.team/stops/X729aac", "https://tec.openplanner.team/stops/X729ada"], ["https://tec.openplanner.team/stops/H1ht129b", "https://tec.openplanner.team/stops/H1ht135a"], ["https://tec.openplanner.team/stops/Cctjoue1", "https://tec.openplanner.team/stops/Cctjoue6"], ["https://tec.openplanner.team/stops/Cmivert1", "https://tec.openplanner.team/stops/Cmivert2"], ["https://tec.openplanner.team/stops/Ccspla", "https://tec.openplanner.team/stops/Ccstord2"], ["https://tec.openplanner.team/stops/NC11ama", "https://tec.openplanner.team/stops/NC11amb"], ["https://tec.openplanner.team/stops/LsVbell1", "https://tec.openplanner.team/stops/LsVfrie1"], ["https://tec.openplanner.team/stops/Lvtauna1", "https://tec.openplanner.team/stops/Lvtmeun1"], ["https://tec.openplanner.team/stops/H4av103a", "https://tec.openplanner.team/stops/H4av103c"], ["https://tec.openplanner.team/stops/X770aca", "https://tec.openplanner.team/stops/X770afb"], ["https://tec.openplanner.team/stops/Louegla1", "https://tec.openplanner.team/stops/Louroos1"], ["https://tec.openplanner.team/stops/H4bw100b", "https://tec.openplanner.team/stops/H4co105a"], ["https://tec.openplanner.team/stops/N232bhb", "https://tec.openplanner.team/stops/N232bla"], ["https://tec.openplanner.team/stops/Bwatabs1", "https://tec.openplanner.team/stops/Bwatceg2"], ["https://tec.openplanner.team/stops/H1cd114b", "https://tec.openplanner.team/stops/H1ne146b"], ["https://tec.openplanner.team/stops/Bcsebde1", "https://tec.openplanner.team/stops/Bcseeco1"], ["https://tec.openplanner.team/stops/Bhenard2", "https://tec.openplanner.team/stops/Bhengou1"], ["https://tec.openplanner.team/stops/N351aqa", "https://tec.openplanner.team/stops/N351ara"], ["https://tec.openplanner.team/stops/N117aaa", "https://tec.openplanner.team/stops/N117bbb"], ["https://tec.openplanner.team/stops/Cfrcoqu1", "https://tec.openplanner.team/stops/Cfrgivr2"], ["https://tec.openplanner.team/stops/Ccoacie1", "https://tec.openplanner.team/stops/Ctrepin2"], ["https://tec.openplanner.team/stops/Lpecaze2", "https://tec.openplanner.team/stops/LWegdry2"], ["https://tec.openplanner.team/stops/Bclgeco1", "https://tec.openplanner.team/stops/Bgisman1"], ["https://tec.openplanner.team/stops/Cchlefe2", "https://tec.openplanner.team/stops/Cchwarm1"], ["https://tec.openplanner.team/stops/LMAbruy2", "https://tec.openplanner.team/stops/LMAptne2"], ["https://tec.openplanner.team/stops/H4bo111a", "https://tec.openplanner.team/stops/H4bo181a"], ["https://tec.openplanner.team/stops/LeMnr11", "https://tec.openplanner.team/stops/LhRandl2"], ["https://tec.openplanner.team/stops/N206aba", "https://tec.openplanner.team/stops/N220aab"], ["https://tec.openplanner.team/stops/Lvisere1", "https://tec.openplanner.team/stops/Lvisere2"], ["https://tec.openplanner.team/stops/H2mm140b", "https://tec.openplanner.team/stops/H2mo131b"], ["https://tec.openplanner.team/stops/Lselibe2", "https://tec.openplanner.team/stops/Lsestap2"], ["https://tec.openplanner.team/stops/H4wt160a", "https://tec.openplanner.team/stops/H5rx112b"], ["https://tec.openplanner.team/stops/N540aaa", "https://tec.openplanner.team/stops/N540aea"], ["https://tec.openplanner.team/stops/H1je216a", "https://tec.openplanner.team/stops/H1je216b"], ["https://tec.openplanner.team/stops/X982asa", "https://tec.openplanner.team/stops/X982asb"], ["https://tec.openplanner.team/stops/X604aca", "https://tec.openplanner.team/stops/X604ada"], ["https://tec.openplanner.team/stops/Lpeptra1", "https://tec.openplanner.team/stops/Lpevove1"], ["https://tec.openplanner.team/stops/LBrec--1", "https://tec.openplanner.team/stops/LMAwavr2"], ["https://tec.openplanner.team/stops/N135aba", "https://tec.openplanner.team/stops/N135aed"], ["https://tec.openplanner.team/stops/LBDcarr2", "https://tec.openplanner.team/stops/LBDtill2"], ["https://tec.openplanner.team/stops/Lenptsa1", "https://tec.openplanner.team/stops/Llmdeba2"], ["https://tec.openplanner.team/stops/Bettcha2", "https://tec.openplanner.team/stops/Bixleix1"], ["https://tec.openplanner.team/stops/NC11agb", "https://tec.openplanner.team/stops/NC11ahb"], ["https://tec.openplanner.team/stops/Bhvlbet2", "https://tec.openplanner.team/stops/Bmsgmon1"], ["https://tec.openplanner.team/stops/Cvpbifu2", "https://tec.openplanner.team/stops/Cvpsawe1"], ["https://tec.openplanner.team/stops/H4ld129a", "https://tec.openplanner.team/stops/H4ld130b"], ["https://tec.openplanner.team/stops/X639aja", "https://tec.openplanner.team/stops/X639ajb"], ["https://tec.openplanner.team/stops/X636beb", "https://tec.openplanner.team/stops/X649adb"], ["https://tec.openplanner.team/stops/Lceavia1", "https://tec.openplanner.team/stops/Lcesart2"], ["https://tec.openplanner.team/stops/X664ala", "https://tec.openplanner.team/stops/X664amb"], ["https://tec.openplanner.team/stops/Cthoues2", "https://tec.openplanner.team/stops/Cthpano2"], ["https://tec.openplanner.team/stops/H1ba110a", "https://tec.openplanner.team/stops/H1ba110b"], ["https://tec.openplanner.team/stops/H4ru245a", "https://tec.openplanner.team/stops/H4ru245b"], ["https://tec.openplanner.team/stops/X992adb", "https://tec.openplanner.team/stops/X992aga"], ["https://tec.openplanner.team/stops/LaR1G--2", "https://tec.openplanner.team/stops/LrUlasc1"], ["https://tec.openplanner.team/stops/Bblaegl2", "https://tec.openplanner.team/stops/Bblaphi2"], ["https://tec.openplanner.team/stops/X601aaa", "https://tec.openplanner.team/stops/X601ada"], ["https://tec.openplanner.team/stops/Cctmari1", "https://tec.openplanner.team/stops/Cctrjus1"], ["https://tec.openplanner.team/stops/N549aga", "https://tec.openplanner.team/stops/N549agb"], ["https://tec.openplanner.team/stops/H1as100a", "https://tec.openplanner.team/stops/H1as104a"], ["https://tec.openplanner.team/stops/LrAdrie4", "https://tec.openplanner.team/stops/LrAdrie5"], ["https://tec.openplanner.team/stops/X757afb", "https://tec.openplanner.team/stops/X757agb"], ["https://tec.openplanner.team/stops/X982aga", "https://tec.openplanner.team/stops/X982aib"], ["https://tec.openplanner.team/stops/N509alb", "https://tec.openplanner.team/stops/N510ada"], ["https://tec.openplanner.team/stops/Llochar3", "https://tec.openplanner.team/stops/Llochar4"], ["https://tec.openplanner.team/stops/Bmsgmon1", "https://tec.openplanner.team/stops/Bmsgpfo1"], ["https://tec.openplanner.team/stops/Brebchb2", "https://tec.openplanner.team/stops/H3br103b"], ["https://tec.openplanner.team/stops/LLescie1", "https://tec.openplanner.team/stops/X547aeb"], ["https://tec.openplanner.team/stops/LHmcarr1", "https://tec.openplanner.team/stops/LLocruc1"], ["https://tec.openplanner.team/stops/X608aoa", "https://tec.openplanner.team/stops/X608apb"], ["https://tec.openplanner.team/stops/X773aaa", "https://tec.openplanner.team/stops/X773aea"], ["https://tec.openplanner.team/stops/N539aja", "https://tec.openplanner.team/stops/N539aka"], ["https://tec.openplanner.team/stops/Bthsset1", "https://tec.openplanner.team/stops/Bthsvil1"], ["https://tec.openplanner.team/stops/LHycent*", "https://tec.openplanner.team/stops/LMvgare1"], ["https://tec.openplanner.team/stops/H4wr175b", "https://tec.openplanner.team/stops/H4wr177b"], ["https://tec.openplanner.team/stops/X638aba", "https://tec.openplanner.team/stops/X638aca"], ["https://tec.openplanner.team/stops/Bbsibou1", "https://tec.openplanner.team/stops/Bbsibou2"], ["https://tec.openplanner.team/stops/Lvomoul2", "https://tec.openplanner.team/stops/Lvovent2"], ["https://tec.openplanner.team/stops/LBNhegg1", "https://tec.openplanner.team/stops/LBNhegg2"], ["https://tec.openplanner.team/stops/Bchapir1", "https://tec.openplanner.team/stops/Bchapir2"], ["https://tec.openplanner.team/stops/X624ala", "https://tec.openplanner.team/stops/X624alb"], ["https://tec.openplanner.team/stops/LLUgend1", "https://tec.openplanner.team/stops/LLUtrol1"], ["https://tec.openplanner.team/stops/Ljumart2", "https://tec.openplanner.team/stops/Ljupiet1"], ["https://tec.openplanner.team/stops/N506aga", "https://tec.openplanner.team/stops/N556aeb"], ["https://tec.openplanner.team/stops/X804bdb", "https://tec.openplanner.team/stops/X804beb"], ["https://tec.openplanner.team/stops/Bsaupco2", "https://tec.openplanner.team/stops/Bsauvmo1"], ["https://tec.openplanner.team/stops/LTyh51-1", "https://tec.openplanner.team/stops/LTyh51-2"], ["https://tec.openplanner.team/stops/X765aba", "https://tec.openplanner.team/stops/X765abb"], ["https://tec.openplanner.team/stops/LeYraaf1", "https://tec.openplanner.team/stops/LeYraaf2"], ["https://tec.openplanner.team/stops/N501ieb", "https://tec.openplanner.team/stops/N501iez"], ["https://tec.openplanner.team/stops/X640akb", "https://tec.openplanner.team/stops/X640ana"], ["https://tec.openplanner.team/stops/X808aab", "https://tec.openplanner.team/stops/X808aja"], ["https://tec.openplanner.team/stops/H1mr122a", "https://tec.openplanner.team/stops/H1wi150b"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X770aeb"], ["https://tec.openplanner.team/stops/Lglvand1", "https://tec.openplanner.team/stops/Llgrame2"], ["https://tec.openplanner.team/stops/LSoeg--1", "https://tec.openplanner.team/stops/LSoeg--2"], ["https://tec.openplanner.team/stops/Cairous1", "https://tec.openplanner.team/stops/Cairous2"], ["https://tec.openplanner.team/stops/X667aaa", "https://tec.openplanner.team/stops/X667aab"], ["https://tec.openplanner.team/stops/X723aia", "https://tec.openplanner.team/stops/X723aja"], ["https://tec.openplanner.team/stops/Bwatbno2", "https://tec.openplanner.team/stops/Bwateco1"], ["https://tec.openplanner.team/stops/X607aba", "https://tec.openplanner.team/stops/X629aab"], ["https://tec.openplanner.team/stops/H4be101a", "https://tec.openplanner.team/stops/H4be147a"], ["https://tec.openplanner.team/stops/Blmlbou1", "https://tec.openplanner.team/stops/Blmlbou2"], ["https://tec.openplanner.team/stops/Cdajume1", "https://tec.openplanner.team/stops/Cmarroy2"], ["https://tec.openplanner.team/stops/N531ana", "https://tec.openplanner.team/stops/N576aib"], ["https://tec.openplanner.team/stops/H3bo101a", "https://tec.openplanner.team/stops/H3bo101b"], ["https://tec.openplanner.team/stops/N229apb", "https://tec.openplanner.team/stops/N231aca"], ["https://tec.openplanner.team/stops/X762aca", "https://tec.openplanner.team/stops/X764aaa"], ["https://tec.openplanner.team/stops/Bnettir1", "https://tec.openplanner.team/stops/Bnettou1"], ["https://tec.openplanner.team/stops/Cchhopi2", "https://tec.openplanner.team/stops/Cchhopi3"], ["https://tec.openplanner.team/stops/LOUchen2", "https://tec.openplanner.team/stops/Lvitomb2"], ["https://tec.openplanner.team/stops/N874aib", "https://tec.openplanner.team/stops/N874ala"], ["https://tec.openplanner.team/stops/Cflcent2", "https://tec.openplanner.team/stops/Cflecep1"], ["https://tec.openplanner.team/stops/Clrcomb1", "https://tec.openplanner.team/stops/Clrrhau2"], ["https://tec.openplanner.team/stops/H4mo146b", "https://tec.openplanner.team/stops/H4mo156a"], ["https://tec.openplanner.team/stops/LrAeife2", "https://tec.openplanner.team/stops/LrAverb1"], ["https://tec.openplanner.team/stops/Llgbaro4", "https://tec.openplanner.team/stops/Llgware2"], ["https://tec.openplanner.team/stops/X731afa", "https://tec.openplanner.team/stops/X731akb"], ["https://tec.openplanner.team/stops/Llgongr2", "https://tec.openplanner.team/stops/Llgongr4"], ["https://tec.openplanner.team/stops/Ctm4che1", "https://tec.openplanner.team/stops/Ctmmath2"], ["https://tec.openplanner.team/stops/X992aja", "https://tec.openplanner.team/stops/X992aka"], ["https://tec.openplanner.team/stops/Lpomart2", "https://tec.openplanner.team/stops/Lpoprie1"], ["https://tec.openplanner.team/stops/X750aza", "https://tec.openplanner.team/stops/X794aab"], ["https://tec.openplanner.team/stops/LGMdrev2", "https://tec.openplanner.team/stops/LSEvill2"], ["https://tec.openplanner.team/stops/H4ru236a", "https://tec.openplanner.team/stops/H4ru243a"], ["https://tec.openplanner.team/stops/Bblafra2", "https://tec.openplanner.team/stops/Bblasol1"], ["https://tec.openplanner.team/stops/LFCalte2", "https://tec.openplanner.team/stops/LMastat3"], ["https://tec.openplanner.team/stops/LhSbruc2", "https://tec.openplanner.team/stops/LhSkape1"], ["https://tec.openplanner.team/stops/Cfcbobr2", "https://tec.openplanner.team/stops/Cfcsaut3"], ["https://tec.openplanner.team/stops/H2ll176b", "https://tec.openplanner.team/stops/H2ll198a"], ["https://tec.openplanner.team/stops/H1gg117b", "https://tec.openplanner.team/stops/H1mb125a"], ["https://tec.openplanner.team/stops/H1ch132a", "https://tec.openplanner.team/stops/H4to133b"], ["https://tec.openplanner.team/stops/N139aca", "https://tec.openplanner.team/stops/N139acb"], ["https://tec.openplanner.team/stops/X811amb", "https://tec.openplanner.team/stops/X811anb"], ["https://tec.openplanner.team/stops/H1mj131a", "https://tec.openplanner.team/stops/H1ml111a"], ["https://tec.openplanner.team/stops/Bpecdel2", "https://tec.openplanner.team/stops/Bpecvme2"], ["https://tec.openplanner.team/stops/Bhalgja1", "https://tec.openplanner.team/stops/Blemsta1"], ["https://tec.openplanner.team/stops/Lsebegu3", "https://tec.openplanner.team/stops/Lsebelv1"], ["https://tec.openplanner.team/stops/Crccamp1", "https://tec.openplanner.team/stops/Crccarr2"], ["https://tec.openplanner.team/stops/N501bja", "https://tec.openplanner.team/stops/N501mwa"], ["https://tec.openplanner.team/stops/X602arb", "https://tec.openplanner.team/stops/X653adc"], ["https://tec.openplanner.team/stops/X659aia", "https://tec.openplanner.team/stops/X659aja"], ["https://tec.openplanner.team/stops/LlChebs2", "https://tec.openplanner.team/stops/LrAkape1"], ["https://tec.openplanner.team/stops/H5at116a", "https://tec.openplanner.team/stops/H5at118a"], ["https://tec.openplanner.team/stops/N308aea", "https://tec.openplanner.team/stops/N308aja"], ["https://tec.openplanner.team/stops/H1hw119b", "https://tec.openplanner.team/stops/H1ls108a"], ["https://tec.openplanner.team/stops/LRmrode1", "https://tec.openplanner.team/stops/LRmsmvo4"], ["https://tec.openplanner.team/stops/LSIters2", "https://tec.openplanner.team/stops/LVAakke1"], ["https://tec.openplanner.team/stops/N576ahb", "https://tec.openplanner.team/stops/N576aia"], ["https://tec.openplanner.team/stops/H2na134a", "https://tec.openplanner.team/stops/H3so184b"], ["https://tec.openplanner.team/stops/X917aea", "https://tec.openplanner.team/stops/X921adb"], ["https://tec.openplanner.team/stops/LhEbruc2", "https://tec.openplanner.team/stops/LWEcool2"], ["https://tec.openplanner.team/stops/H2fy122a", "https://tec.openplanner.team/stops/H2lh124a"], ["https://tec.openplanner.team/stops/LOMware1", "https://tec.openplanner.team/stops/LTOcime1"], ["https://tec.openplanner.team/stops/X743ada", "https://tec.openplanner.team/stops/X744aaa"], ["https://tec.openplanner.team/stops/LAMcoll1", "https://tec.openplanner.team/stops/LAMpirk1"], ["https://tec.openplanner.team/stops/Ccigill3", "https://tec.openplanner.team/stops/Ccisart2"], ["https://tec.openplanner.team/stops/LCOcarr1", "https://tec.openplanner.team/stops/LCOeg--1"], ["https://tec.openplanner.team/stops/Blpgcmo2", "https://tec.openplanner.team/stops/Blpghou1"], ["https://tec.openplanner.team/stops/X801ava", "https://tec.openplanner.team/stops/X801avb"], ["https://tec.openplanner.team/stops/X941aaa", "https://tec.openplanner.team/stops/X941aea"], ["https://tec.openplanner.team/stops/H1bb115a", "https://tec.openplanner.team/stops/H1bb118b"], ["https://tec.openplanner.team/stops/H3lr106b", "https://tec.openplanner.team/stops/H3th133a"], ["https://tec.openplanner.team/stops/X624aba", "https://tec.openplanner.team/stops/X624aca"], ["https://tec.openplanner.team/stops/LFFmarc2", "https://tec.openplanner.team/stops/LSCchap2"], ["https://tec.openplanner.team/stops/N222aaa", "https://tec.openplanner.team/stops/N222ayb"], ["https://tec.openplanner.team/stops/X790afb", "https://tec.openplanner.team/stops/X790aib"], ["https://tec.openplanner.team/stops/H4la198a", "https://tec.openplanner.team/stops/H4la198d"], ["https://tec.openplanner.team/stops/H1ht126a", "https://tec.openplanner.team/stops/H1te178b"], ["https://tec.openplanner.team/stops/X617agb", "https://tec.openplanner.team/stops/X617aha"], ["https://tec.openplanner.team/stops/LSGec--2", "https://tec.openplanner.team/stops/LSGhagn2"], ["https://tec.openplanner.team/stops/H4an104b", "https://tec.openplanner.team/stops/H4cr110a"], ["https://tec.openplanner.team/stops/Ccumasu1", "https://tec.openplanner.team/stops/Ccupdes1"], ["https://tec.openplanner.team/stops/H4mo136a", "https://tec.openplanner.team/stops/H4mo180a"], ["https://tec.openplanner.team/stops/H4hq131a", "https://tec.openplanner.team/stops/H4hs135b"], ["https://tec.openplanner.team/stops/N135afb", "https://tec.openplanner.team/stops/N135aoa"], ["https://tec.openplanner.team/stops/X224afa", "https://tec.openplanner.team/stops/X398aea"], ["https://tec.openplanner.team/stops/X221aad", "https://tec.openplanner.team/stops/X394adb"], ["https://tec.openplanner.team/stops/LHUanth2", "https://tec.openplanner.team/stops/LWNwavr3"], ["https://tec.openplanner.team/stops/H2hp114b", "https://tec.openplanner.team/stops/H2ll183b"], ["https://tec.openplanner.team/stops/N312aaa", "https://tec.openplanner.team/stops/N312aba"], ["https://tec.openplanner.team/stops/H4bw100a", "https://tec.openplanner.team/stops/H4bw101a"], ["https://tec.openplanner.team/stops/LGLdeni2", "https://tec.openplanner.team/stops/LGLspor1"], ["https://tec.openplanner.team/stops/N201aga", "https://tec.openplanner.team/stops/N201aua"], ["https://tec.openplanner.team/stops/H1hn204a", "https://tec.openplanner.team/stops/H1hn210b"], ["https://tec.openplanner.team/stops/Llgdarc1", "https://tec.openplanner.team/stops/Llgpier2"], ["https://tec.openplanner.team/stops/X639aeb", "https://tec.openplanner.team/stops/X640asa"], ["https://tec.openplanner.team/stops/H4bx108b", "https://tec.openplanner.team/stops/H4ep128b"], ["https://tec.openplanner.team/stops/H1ev112b", "https://tec.openplanner.team/stops/H1ev116a"], ["https://tec.openplanner.team/stops/LSsaxhe2", "https://tec.openplanner.team/stops/N506bua"], ["https://tec.openplanner.team/stops/LBJlieg2", "https://tec.openplanner.team/stops/LFRfagn2"], ["https://tec.openplanner.team/stops/Ccinali1", "https://tec.openplanner.team/stops/Cmllait2"], ["https://tec.openplanner.team/stops/Lengran1", "https://tec.openplanner.team/stops/Lvedepo*"], ["https://tec.openplanner.team/stops/Cgy3012", "https://tec.openplanner.team/stops/Cmtfoye2"], ["https://tec.openplanner.team/stops/N509aab", "https://tec.openplanner.team/stops/N509aeb"], ["https://tec.openplanner.team/stops/N305aaa", "https://tec.openplanner.team/stops/N313aec"], ["https://tec.openplanner.team/stops/LSeec--1", "https://tec.openplanner.team/stops/LSegott1"], ["https://tec.openplanner.team/stops/X789ada", "https://tec.openplanner.team/stops/X789adb"], ["https://tec.openplanner.team/stops/Bneedia2", "https://tec.openplanner.team/stops/Bneeegl2"], ["https://tec.openplanner.team/stops/Lflchan1", "https://tec.openplanner.team/stops/Lropass1"], ["https://tec.openplanner.team/stops/X908asa", "https://tec.openplanner.team/stops/X910aca"], ["https://tec.openplanner.team/stops/N104abb", "https://tec.openplanner.team/stops/N104aca"], ["https://tec.openplanner.team/stops/X805aeb", "https://tec.openplanner.team/stops/X805afb"], ["https://tec.openplanner.team/stops/H1cv104b", "https://tec.openplanner.team/stops/H1ml111b"], ["https://tec.openplanner.team/stops/Cctbinc1", "https://tec.openplanner.team/stops/Cctpche1"], ["https://tec.openplanner.team/stops/X396acb", "https://tec.openplanner.team/stops/X396afb"], ["https://tec.openplanner.team/stops/Bmsgbur1", "https://tec.openplanner.team/stops/Bmsgfon1"], ["https://tec.openplanner.team/stops/LVEfize1", "https://tec.openplanner.team/stops/LVEhali2"], ["https://tec.openplanner.team/stops/Lhubriq1", "https://tec.openplanner.team/stops/Lhuwaid1"], ["https://tec.openplanner.team/stops/H4re225a", "https://tec.openplanner.team/stops/H5at122b"], ["https://tec.openplanner.team/stops/LrAiter2", "https://tec.openplanner.team/stops/LrAmuhl2"], ["https://tec.openplanner.team/stops/LKmcabi2", "https://tec.openplanner.team/stops/LMObouh1"], ["https://tec.openplanner.team/stops/Lghwall1", "https://tec.openplanner.team/stops/Llocime2"], ["https://tec.openplanner.team/stops/H5pe149a", "https://tec.openplanner.team/stops/H5pe149b"], ["https://tec.openplanner.team/stops/X649aab", "https://tec.openplanner.team/stops/X671ada"], ["https://tec.openplanner.team/stops/Lfhborg2", "https://tec.openplanner.team/stops/Livgera2"], ["https://tec.openplanner.team/stops/Bhlvlou1", "https://tec.openplanner.team/stops/Crewath2"], ["https://tec.openplanner.team/stops/Lvtmeun1", "https://tec.openplanner.team/stops/Lvtmeun2"], ["https://tec.openplanner.team/stops/X724afa", "https://tec.openplanner.team/stops/X724aib"], ["https://tec.openplanner.team/stops/Lbrboul2", "https://tec.openplanner.team/stops/Lbrcard1"], ["https://tec.openplanner.team/stops/H4ka175a", "https://tec.openplanner.team/stops/H4ob124a"], ["https://tec.openplanner.team/stops/N140aaa", "https://tec.openplanner.team/stops/N141ala"], ["https://tec.openplanner.team/stops/H1fa117b", "https://tec.openplanner.team/stops/H1fa121b"], ["https://tec.openplanner.team/stops/H4do107a", "https://tec.openplanner.team/stops/H4do203a"], ["https://tec.openplanner.team/stops/H1fl133c", "https://tec.openplanner.team/stops/H1je223b"], ["https://tec.openplanner.team/stops/Ljudeme1", "https://tec.openplanner.team/stops/Ljuhava1"], ["https://tec.openplanner.team/stops/Ljeblum2", "https://tec.openplanner.team/stops/Ljeespe1"], ["https://tec.openplanner.team/stops/H1ch142b", "https://tec.openplanner.team/stops/H1hh112a"], ["https://tec.openplanner.team/stops/X612afa", "https://tec.openplanner.team/stops/X612afb"], ["https://tec.openplanner.team/stops/Bwavbwa2", "https://tec.openplanner.team/stops/Bwavche1"], ["https://tec.openplanner.team/stops/Btubaig1", "https://tec.openplanner.team/stops/Btubstq1"], ["https://tec.openplanner.team/stops/Llgcoro4", "https://tec.openplanner.team/stops/Llggee52"], ["https://tec.openplanner.team/stops/Cmtgrim1", "https://tec.openplanner.team/stops/Cmtstan3"], ["https://tec.openplanner.team/stops/H4tu170a", "https://tec.openplanner.team/stops/H4tu170b"], ["https://tec.openplanner.team/stops/Canboha2", "https://tec.openplanner.team/stops/Canh1941"], ["https://tec.openplanner.team/stops/Lflchan2", "https://tec.openplanner.team/stops/Lropass1"], ["https://tec.openplanner.team/stops/Bfelcsa2", "https://tec.openplanner.team/stops/H2mg135a"], ["https://tec.openplanner.team/stops/X937aab", "https://tec.openplanner.team/stops/X937alb"], ["https://tec.openplanner.team/stops/Lbocorn1", "https://tec.openplanner.team/stops/Lboeg--2"], ["https://tec.openplanner.team/stops/X736aca", "https://tec.openplanner.team/stops/X952aeb"], ["https://tec.openplanner.team/stops/Bstesar1", "https://tec.openplanner.team/stops/Bstesar2"], ["https://tec.openplanner.team/stops/N554aeb", "https://tec.openplanner.team/stops/N573aqa"], ["https://tec.openplanner.team/stops/LHHtill1", "https://tec.openplanner.team/stops/LHHtill2"], ["https://tec.openplanner.team/stops/H1wa135b", "https://tec.openplanner.team/stops/H1wa137b"], ["https://tec.openplanner.team/stops/H1mh114a", "https://tec.openplanner.team/stops/H1mh117a"], ["https://tec.openplanner.team/stops/Cgxpair2", "https://tec.openplanner.team/stops/Cmogrbu2"], ["https://tec.openplanner.team/stops/X609aia", "https://tec.openplanner.team/stops/X609aib"], ["https://tec.openplanner.team/stops/Csefour1", "https://tec.openplanner.team/stops/Csefour2"], ["https://tec.openplanner.team/stops/N501daa", "https://tec.openplanner.team/stops/N501dab"], ["https://tec.openplanner.team/stops/H4lz121a", "https://tec.openplanner.team/stops/H4lz158b"], ["https://tec.openplanner.team/stops/Brebras1", "https://tec.openplanner.team/stops/Brebras2"], ["https://tec.openplanner.team/stops/X952afa", "https://tec.openplanner.team/stops/X954aea"], ["https://tec.openplanner.team/stops/H1th182a", "https://tec.openplanner.team/stops/H3so169a"], ["https://tec.openplanner.team/stops/Lbocarr2", "https://tec.openplanner.team/stops/Lbogonh3"], ["https://tec.openplanner.team/stops/Lceavia2", "https://tec.openplanner.team/stops/Lceprog2"], ["https://tec.openplanner.team/stops/Cjualtr1", "https://tec.openplanner.team/stops/Cjucopp1"], ["https://tec.openplanner.team/stops/H2le146b", "https://tec.openplanner.team/stops/H2le152b"], ["https://tec.openplanner.team/stops/N236ada", "https://tec.openplanner.team/stops/N236ala"], ["https://tec.openplanner.team/stops/NL68aac", "https://tec.openplanner.team/stops/NL68aad"], ["https://tec.openplanner.team/stops/N355aea", "https://tec.openplanner.team/stops/N383aeb"], ["https://tec.openplanner.team/stops/LLUdeig2", "https://tec.openplanner.team/stops/LLUhotc1"], ["https://tec.openplanner.team/stops/N201aeb", "https://tec.openplanner.team/stops/N201aee"], ["https://tec.openplanner.team/stops/X741aab", "https://tec.openplanner.team/stops/X742aab"], ["https://tec.openplanner.team/stops/Bgerd321", "https://tec.openplanner.team/stops/Bgermco2"], ["https://tec.openplanner.team/stops/N207aab", "https://tec.openplanner.team/stops/N209ala"], ["https://tec.openplanner.team/stops/LVIdeva2", "https://tec.openplanner.team/stops/LVIvert2"], ["https://tec.openplanner.team/stops/Bblaang2", "https://tec.openplanner.team/stops/Bblafrn1"], ["https://tec.openplanner.team/stops/Lagfour1", "https://tec.openplanner.team/stops/Lagresi2"], ["https://tec.openplanner.team/stops/H1do116b", "https://tec.openplanner.team/stops/H1ho147a"], ["https://tec.openplanner.team/stops/N351aja", "https://tec.openplanner.team/stops/N351ajb"], ["https://tec.openplanner.team/stops/H4ep131a", "https://tec.openplanner.team/stops/H4ep131b"], ["https://tec.openplanner.team/stops/LFEplac1", "https://tec.openplanner.team/stops/X597ana"], ["https://tec.openplanner.team/stops/H2sb223b", "https://tec.openplanner.team/stops/H2sb239a"], ["https://tec.openplanner.team/stops/H4mo208a", "https://tec.openplanner.team/stops/H4mo208b"], ["https://tec.openplanner.team/stops/LFMkrut3", "https://tec.openplanner.team/stops/LFMkrut4"], ["https://tec.openplanner.team/stops/N512ana", "https://tec.openplanner.team/stops/N512aqa"], ["https://tec.openplanner.team/stops/LmNha152", "https://tec.openplanner.team/stops/LmNha222"], ["https://tec.openplanner.team/stops/H4hx113b", "https://tec.openplanner.team/stops/H4lu125a"], ["https://tec.openplanner.team/stops/Ckevela2", "https://tec.openplanner.team/stops/Cvstouv2"], ["https://tec.openplanner.team/stops/Lropass1", "https://tec.openplanner.team/stops/Lropass2"], ["https://tec.openplanner.team/stops/Cfrtill1", "https://tec.openplanner.team/stops/Crewath2"], ["https://tec.openplanner.team/stops/LESchat2", "https://tec.openplanner.team/stops/LESfont2"], ["https://tec.openplanner.team/stops/Cdahtvi1", "https://tec.openplanner.team/stops/Cdaviol1"], ["https://tec.openplanner.team/stops/N554aha", "https://tec.openplanner.team/stops/N573aqa"], ["https://tec.openplanner.team/stops/Bneersa2", "https://tec.openplanner.team/stops/Bneesan2"], ["https://tec.openplanner.team/stops/Bptrcra1", "https://tec.openplanner.team/stops/Bptrvil1"], ["https://tec.openplanner.team/stops/X925afa", "https://tec.openplanner.team/stops/X925afb"], ["https://tec.openplanner.team/stops/LLTgole2", "https://tec.openplanner.team/stops/LLTtour1"], ["https://tec.openplanner.team/stops/X811afa", "https://tec.openplanner.team/stops/X811aja"], ["https://tec.openplanner.team/stops/X804aba", "https://tec.openplanner.team/stops/X804amb"], ["https://tec.openplanner.team/stops/Ccomott2", "https://tec.openplanner.team/stops/Ccoptca2"], ["https://tec.openplanner.team/stops/Lhrdeme2", "https://tec.openplanner.team/stops/Lhrhome2"], ["https://tec.openplanner.team/stops/X607acb", "https://tec.openplanner.team/stops/X621aca"], ["https://tec.openplanner.team/stops/N106alb", "https://tec.openplanner.team/stops/N106anb"], ["https://tec.openplanner.team/stops/Lrcvill2", "https://tec.openplanner.team/stops/Lrcvill4"], ["https://tec.openplanner.team/stops/LmI36--2", "https://tec.openplanner.team/stops/LmIkirc1"], ["https://tec.openplanner.team/stops/Cgocalv1", "https://tec.openplanner.team/stops/Cgomart1"], ["https://tec.openplanner.team/stops/H1gh145b", "https://tec.openplanner.team/stops/H1gh157a"], ["https://tec.openplanner.team/stops/N103aca", "https://tec.openplanner.team/stops/N103afb"], ["https://tec.openplanner.team/stops/X923aea", "https://tec.openplanner.team/stops/X923aeb"], ["https://tec.openplanner.team/stops/N539aub", "https://tec.openplanner.team/stops/N539bga"], ["https://tec.openplanner.team/stops/Cvretan1", "https://tec.openplanner.team/stops/Cvrfcho1"], ["https://tec.openplanner.team/stops/N201ahb", "https://tec.openplanner.team/stops/N201ata"], ["https://tec.openplanner.team/stops/Bhengou1", "https://tec.openplanner.team/stops/Bhenmal1"], ["https://tec.openplanner.team/stops/Cclchap2", "https://tec.openplanner.team/stops/Cclplac1"], ["https://tec.openplanner.team/stops/Llgcamp2", "https://tec.openplanner.team/stops/Llgpire1"], ["https://tec.openplanner.team/stops/H4lz125a", "https://tec.openplanner.team/stops/H4lz155a"], ["https://tec.openplanner.team/stops/X735aab", "https://tec.openplanner.team/stops/X953aaa"], ["https://tec.openplanner.team/stops/N226ada", "https://tec.openplanner.team/stops/N367adb"], ["https://tec.openplanner.team/stops/H4lp121b", "https://tec.openplanner.team/stops/H4lp122b"], ["https://tec.openplanner.team/stops/H1al105a", "https://tec.openplanner.team/stops/H1al146a"], ["https://tec.openplanner.team/stops/X901anb", "https://tec.openplanner.team/stops/X901bka"], ["https://tec.openplanner.team/stops/X991akb", "https://tec.openplanner.team/stops/X993ahb"], ["https://tec.openplanner.team/stops/X716aab", "https://tec.openplanner.team/stops/X731aga"], ["https://tec.openplanner.team/stops/H1ge117b", "https://tec.openplanner.team/stops/H1ge179a"], ["https://tec.openplanner.team/stops/Bjodcdt1", "https://tec.openplanner.team/stops/Bjodced2"], ["https://tec.openplanner.team/stops/N543bpc", "https://tec.openplanner.team/stops/N543chb"], ["https://tec.openplanner.team/stops/X948aea", "https://tec.openplanner.team/stops/X948aeb"], ["https://tec.openplanner.team/stops/LCtcref1", "https://tec.openplanner.team/stops/X788aha"], ["https://tec.openplanner.team/stops/Crodebr2", "https://tec.openplanner.team/stops/Cronova2"], ["https://tec.openplanner.team/stops/X638alb", "https://tec.openplanner.team/stops/X639adb"], ["https://tec.openplanner.team/stops/X938adb", "https://tec.openplanner.team/stops/X938aea"], ["https://tec.openplanner.team/stops/LRE154-1", "https://tec.openplanner.team/stops/LRE154-2"], ["https://tec.openplanner.team/stops/H1au112a", "https://tec.openplanner.team/stops/H1au112b"], ["https://tec.openplanner.team/stops/H4rc232a", "https://tec.openplanner.team/stops/H4rc232c"], ["https://tec.openplanner.team/stops/N270aed", "https://tec.openplanner.team/stops/N270afd"], ["https://tec.openplanner.team/stops/X363aaa", "https://tec.openplanner.team/stops/X363abb"], ["https://tec.openplanner.team/stops/H4ty299e", "https://tec.openplanner.team/stops/H4ty299f"], ["https://tec.openplanner.team/stops/LMoelno2", "https://tec.openplanner.team/stops/LSDgris2"], ["https://tec.openplanner.team/stops/H1ba105b", "https://tec.openplanner.team/stops/H1te173b"], ["https://tec.openplanner.team/stops/X626ala", "https://tec.openplanner.team/stops/X687afa"], ["https://tec.openplanner.team/stops/X926aba", "https://tec.openplanner.team/stops/X926aea"], ["https://tec.openplanner.team/stops/H1by104b", "https://tec.openplanner.team/stops/H1sy143d"], ["https://tec.openplanner.team/stops/X992aba", "https://tec.openplanner.team/stops/X992afa"], ["https://tec.openplanner.team/stops/Cwfcule1", "https://tec.openplanner.team/stops/Cwfcule2"], ["https://tec.openplanner.team/stops/X614aia", "https://tec.openplanner.team/stops/X614aib"], ["https://tec.openplanner.team/stops/N218acc", "https://tec.openplanner.team/stops/N245acb"], ["https://tec.openplanner.team/stops/X548acb", "https://tec.openplanner.team/stops/X548adb"], ["https://tec.openplanner.team/stops/H4ty286b", "https://tec.openplanner.team/stops/H4ty317a"], ["https://tec.openplanner.team/stops/N501cua", "https://tec.openplanner.team/stops/N501cub"], ["https://tec.openplanner.team/stops/LHTeg--4", "https://tec.openplanner.team/stops/LHTeg--5"], ["https://tec.openplanner.team/stops/N501gsa", "https://tec.openplanner.team/stops/N501hlb"], ["https://tec.openplanner.team/stops/Bllncyc2", "https://tec.openplanner.team/stops/Bllnein4"], ["https://tec.openplanner.team/stops/H4ft134a", "https://tec.openplanner.team/stops/H4la197a"], ["https://tec.openplanner.team/stops/LHAprei2", "https://tec.openplanner.team/stops/LHAvall2"], ["https://tec.openplanner.team/stops/H4rm107a", "https://tec.openplanner.team/stops/H4rm111b"], ["https://tec.openplanner.team/stops/Cthbifu2", "https://tec.openplanner.team/stops/Cthgend2"], ["https://tec.openplanner.team/stops/X512aab", "https://tec.openplanner.team/stops/X512ajb"], ["https://tec.openplanner.team/stops/Bopplon2", "https://tec.openplanner.team/stops/Borbode1"], ["https://tec.openplanner.team/stops/Bhaawdr1", "https://tec.openplanner.team/stops/Bnetrbr2"], ["https://tec.openplanner.team/stops/Broncli1", "https://tec.openplanner.team/stops/Broncli2"], ["https://tec.openplanner.team/stops/X758aaa", "https://tec.openplanner.team/stops/X758aba"], ["https://tec.openplanner.team/stops/LEHhaut1", "https://tec.openplanner.team/stops/LRAgrot2"], ["https://tec.openplanner.team/stops/X826aab", "https://tec.openplanner.team/stops/X831aba"], ["https://tec.openplanner.team/stops/N553aia", "https://tec.openplanner.team/stops/N553aja"], ["https://tec.openplanner.team/stops/N506bia", "https://tec.openplanner.team/stops/N506bkb"], ["https://tec.openplanner.team/stops/Ldifoye2", "https://tec.openplanner.team/stops/Lprorem2"], ["https://tec.openplanner.team/stops/Lrcstad1", "https://tec.openplanner.team/stops/Lrcvill2"], ["https://tec.openplanner.team/stops/LeUauto2", "https://tec.openplanner.team/stops/LeUgb--2"], ["https://tec.openplanner.team/stops/Cdogrro1", "https://tec.openplanner.team/stops/Ctufleu4"], ["https://tec.openplanner.team/stops/Cgzabur2", "https://tec.openplanner.team/stops/Cgzplac4"], ["https://tec.openplanner.team/stops/LBLplas2", "https://tec.openplanner.team/stops/LMotrem1"], ["https://tec.openplanner.team/stops/N513aeb", "https://tec.openplanner.team/stops/N513bfb"], ["https://tec.openplanner.team/stops/Cmlecha2", "https://tec.openplanner.team/stops/CMtirou2"], ["https://tec.openplanner.team/stops/Cmbcime4", "https://tec.openplanner.team/stops/Crclorc2"], ["https://tec.openplanner.team/stops/N506arb", "https://tec.openplanner.team/stops/N506asb"], ["https://tec.openplanner.team/stops/Bnivpal1", "https://tec.openplanner.team/stops/Bnivpal2"], ["https://tec.openplanner.team/stops/Lsccdor2", "https://tec.openplanner.team/stops/Lsccime2"], ["https://tec.openplanner.team/stops/LWAgare*", "https://tec.openplanner.team/stops/LWAlong2"], ["https://tec.openplanner.team/stops/LLOchpl2", "https://tec.openplanner.team/stops/LLOspin1"], ["https://tec.openplanner.team/stops/LeYfeld2", "https://tec.openplanner.team/stops/LeYteeh1"], ["https://tec.openplanner.team/stops/Lprdavi2", "https://tec.openplanner.team/stops/Lprorem1"], ["https://tec.openplanner.team/stops/Cmcbriq1", "https://tec.openplanner.team/stops/Cmchai2"], ["https://tec.openplanner.team/stops/Cgrflac2", "https://tec.openplanner.team/stops/NC14aib"], ["https://tec.openplanner.team/stops/Lgrstou1", "https://tec.openplanner.team/stops/Llgdesa1"], ["https://tec.openplanner.team/stops/H4mo170b", "https://tec.openplanner.team/stops/H4mo187a"], ["https://tec.openplanner.team/stops/Bhoegbr2", "https://tec.openplanner.team/stops/Bovejei1"], ["https://tec.openplanner.team/stops/Bjodeco1", "https://tec.openplanner.team/stops/Bjodrdp2"], ["https://tec.openplanner.team/stops/LAYambl1", "https://tec.openplanner.team/stops/LAYlieg1"], ["https://tec.openplanner.team/stops/H1mm125a", "https://tec.openplanner.team/stops/H1mm125c"], ["https://tec.openplanner.team/stops/X982bja", "https://tec.openplanner.team/stops/X982bub"], ["https://tec.openplanner.team/stops/Lbrddef3", "https://tec.openplanner.team/stops/Llgddef1"], ["https://tec.openplanner.team/stops/N503ada", "https://tec.openplanner.team/stops/N503aib"], ["https://tec.openplanner.team/stops/H4rx142a", "https://tec.openplanner.team/stops/H4rx175b"], ["https://tec.openplanner.team/stops/Bgnvbsi2", "https://tec.openplanner.team/stops/Bgnvpos2"], ["https://tec.openplanner.team/stops/X617ahb", "https://tec.openplanner.team/stops/X696ada"], ["https://tec.openplanner.team/stops/LTIchev2", "https://tec.openplanner.team/stops/LTIptme2"], ["https://tec.openplanner.team/stops/LCFcarr1", "https://tec.openplanner.team/stops/LCFeg--1"], ["https://tec.openplanner.team/stops/LVLgotr1", "https://tec.openplanner.team/stops/LVLgotr4"], ["https://tec.openplanner.team/stops/H1ha184a", "https://tec.openplanner.team/stops/H1ss348a"], ["https://tec.openplanner.team/stops/N232anb", "https://tec.openplanner.team/stops/N232aqa"], ["https://tec.openplanner.team/stops/Lousite3", "https://tec.openplanner.team/stops/Lousite4"], ["https://tec.openplanner.team/stops/LSIespe2", "https://tec.openplanner.team/stops/LSImewi2"], ["https://tec.openplanner.team/stops/LAo161-2", "https://tec.openplanner.team/stops/LTPwann1"], ["https://tec.openplanner.team/stops/N563aab", "https://tec.openplanner.team/stops/N585ala"], ["https://tec.openplanner.team/stops/H4bo119a", "https://tec.openplanner.team/stops/H4bo181b"], ["https://tec.openplanner.team/stops/LCTgare3", "https://tec.openplanner.team/stops/LCTmonu1"], ["https://tec.openplanner.team/stops/Bnivpve1", "https://tec.openplanner.team/stops/Bnivpve2"], ["https://tec.openplanner.team/stops/H4ty267a", "https://tec.openplanner.team/stops/H4ty328b"], ["https://tec.openplanner.team/stops/N548aaa", "https://tec.openplanner.team/stops/N548aib"], ["https://tec.openplanner.team/stops/N507ala", "https://tec.openplanner.team/stops/N507amb"], ["https://tec.openplanner.team/stops/H2ll177a", "https://tec.openplanner.team/stops/H2ll257a"], ["https://tec.openplanner.team/stops/LHCandr1", "https://tec.openplanner.team/stops/LHCmonu1"], ["https://tec.openplanner.team/stops/N302aaa", "https://tec.openplanner.team/stops/N302abb"], ["https://tec.openplanner.team/stops/N244aja", "https://tec.openplanner.team/stops/N252acd"], ["https://tec.openplanner.team/stops/Bblmpro1", "https://tec.openplanner.team/stops/Bnil3fo1"], ["https://tec.openplanner.team/stops/Llgbavr1", "https://tec.openplanner.team/stops/Llgcmes2"], ["https://tec.openplanner.team/stops/N343ajb", "https://tec.openplanner.team/stops/N343aka"], ["https://tec.openplanner.team/stops/X576aba", "https://tec.openplanner.team/stops/X576aca"], ["https://tec.openplanner.team/stops/X601aga", "https://tec.openplanner.team/stops/X601aia"], ["https://tec.openplanner.team/stops/N518aab", "https://tec.openplanner.team/stops/N520aia"], ["https://tec.openplanner.team/stops/Llgseel1", "https://tec.openplanner.team/stops/Llgseel2"], ["https://tec.openplanner.team/stops/LBRmout4", "https://tec.openplanner.team/stops/LMffoot1"], ["https://tec.openplanner.team/stops/Btslcel1", "https://tec.openplanner.team/stops/Bwlhswc1"], ["https://tec.openplanner.team/stops/X660acb", "https://tec.openplanner.team/stops/X660ahb"], ["https://tec.openplanner.team/stops/LVAakke1", "https://tec.openplanner.team/stops/LVAakke2"], ["https://tec.openplanner.team/stops/LrOwahl1", "https://tec.openplanner.team/stops/LwR129-2"], ["https://tec.openplanner.team/stops/LBvnico1", "https://tec.openplanner.team/stops/LLiforg1"], ["https://tec.openplanner.team/stops/Bwatmgo3", "https://tec.openplanner.team/stops/Bwatvco2"], ["https://tec.openplanner.team/stops/X614aqa", "https://tec.openplanner.team/stops/X614aza"], ["https://tec.openplanner.team/stops/LCFcafe1", "https://tec.openplanner.team/stops/LCFcafe2"], ["https://tec.openplanner.team/stops/N525ata", "https://tec.openplanner.team/stops/N526aba"], ["https://tec.openplanner.team/stops/Cci22ao1", "https://tec.openplanner.team/stops/Cciarfr1"], ["https://tec.openplanner.team/stops/LON21--1", "https://tec.openplanner.team/stops/Lthfagn1"], ["https://tec.openplanner.team/stops/LHrreal1", "https://tec.openplanner.team/stops/LHseg--2"], ["https://tec.openplanner.team/stops/X805aaa", "https://tec.openplanner.team/stops/X805aab"], ["https://tec.openplanner.team/stops/Cjuaero4", "https://tec.openplanner.team/stops/Cjuapca2"], ["https://tec.openplanner.team/stops/H5at132a", "https://tec.openplanner.team/stops/H5at137b"], ["https://tec.openplanner.team/stops/N542aib", "https://tec.openplanner.team/stops/N542aob"], ["https://tec.openplanner.team/stops/H4er123a", "https://tec.openplanner.team/stops/H4er125a"], ["https://tec.openplanner.team/stops/LHTbeau2", "https://tec.openplanner.team/stops/LHThall3"], ["https://tec.openplanner.team/stops/X982bab", "https://tec.openplanner.team/stops/X996ada"], ["https://tec.openplanner.team/stops/H4hx123a", "https://tec.openplanner.team/stops/H4hx123b"], ["https://tec.openplanner.team/stops/N569aia", "https://tec.openplanner.team/stops/N569aib"], ["https://tec.openplanner.team/stops/H1qu103a", "https://tec.openplanner.team/stops/H1qu103b"], ["https://tec.openplanner.team/stops/Clrcomb2", "https://tec.openplanner.team/stops/Clrhava1"], ["https://tec.openplanner.team/stops/N509ava", "https://tec.openplanner.team/stops/N509avb"], ["https://tec.openplanner.team/stops/X685afb", "https://tec.openplanner.team/stops/X688aaa"], ["https://tec.openplanner.team/stops/LSOathe1", "https://tec.openplanner.team/stops/LSOfech2"], ["https://tec.openplanner.team/stops/LOrchau1", "https://tec.openplanner.team/stops/LOrpont1"], ["https://tec.openplanner.team/stops/N385aca", "https://tec.openplanner.team/stops/N385acb"], ["https://tec.openplanner.team/stops/X361aab", "https://tec.openplanner.team/stops/X361aba"], ["https://tec.openplanner.team/stops/X921agb", "https://tec.openplanner.team/stops/X921aha"], ["https://tec.openplanner.team/stops/Lgrbonn6", "https://tec.openplanner.team/stops/Llgsimo1"], ["https://tec.openplanner.team/stops/Bnivari1", "https://tec.openplanner.team/stops/Bnivari2"], ["https://tec.openplanner.team/stops/N117ata", "https://tec.openplanner.team/stops/N569aib"], ["https://tec.openplanner.team/stops/X759aeb", "https://tec.openplanner.team/stops/X837adb"], ["https://tec.openplanner.team/stops/LhGfl241", "https://tec.openplanner.team/stops/LkEschi2"], ["https://tec.openplanner.team/stops/Brebpca2", "https://tec.openplanner.team/stops/Brebrog1"], ["https://tec.openplanner.team/stops/LSuusin2", "https://tec.openplanner.team/stops/Lvepoud2"], ["https://tec.openplanner.team/stops/Clcfall1", "https://tec.openplanner.team/stops/Csschat1"], ["https://tec.openplanner.team/stops/LTgchar8", "https://tec.openplanner.team/stops/LTgvill2"], ["https://tec.openplanner.team/stops/H4ab103a", "https://tec.openplanner.team/stops/H5ma181b"], ["https://tec.openplanner.team/stops/X717aaa", "https://tec.openplanner.team/stops/X718aab"], ["https://tec.openplanner.team/stops/LDaeg--1", "https://tec.openplanner.team/stops/LDapota1"], ["https://tec.openplanner.team/stops/H5el100b", "https://tec.openplanner.team/stops/H5fl103a"], ["https://tec.openplanner.team/stops/N543bpa", "https://tec.openplanner.team/stops/N543bpc"], ["https://tec.openplanner.team/stops/X882aca", "https://tec.openplanner.team/stops/X882acb"], ["https://tec.openplanner.team/stops/H4ce108a", "https://tec.openplanner.team/stops/H4ve132a"], ["https://tec.openplanner.team/stops/LGeduc-1", "https://tec.openplanner.team/stops/LGefron2"], ["https://tec.openplanner.team/stops/H4ne135b", "https://tec.openplanner.team/stops/H4te248a"], ["https://tec.openplanner.team/stops/N308ala", "https://tec.openplanner.team/stops/N308bab"], ["https://tec.openplanner.team/stops/Cragoss1", "https://tec.openplanner.team/stops/Cragoss2"], ["https://tec.openplanner.team/stops/Cflecep1", "https://tec.openplanner.team/stops/Cflstan3"], ["https://tec.openplanner.team/stops/H1mb138b", "https://tec.openplanner.team/stops/H1mb168b"], ["https://tec.openplanner.team/stops/Bcbqh451", "https://tec.openplanner.team/stops/Bcbqp251"], ["https://tec.openplanner.team/stops/X661aca", "https://tec.openplanner.team/stops/X661azb"], ["https://tec.openplanner.team/stops/Cgzdeve1", "https://tec.openplanner.team/stops/Clrrhau1"], ["https://tec.openplanner.team/stops/LPbover1", "https://tec.openplanner.team/stops/LVkchap1"], ["https://tec.openplanner.team/stops/Brsgcfl1", "https://tec.openplanner.team/stops/Brsgfso1"], ["https://tec.openplanner.team/stops/Lseboia2", "https://tec.openplanner.team/stops/Lsepudd1"], ["https://tec.openplanner.team/stops/Lprfoot1", "https://tec.openplanner.team/stops/Lprtour2"], ["https://tec.openplanner.team/stops/Bblahop1", "https://tec.openplanner.team/stops/Bblaljo1"], ["https://tec.openplanner.team/stops/N383aba", "https://tec.openplanner.team/stops/N383abb"], ["https://tec.openplanner.team/stops/LsVeite2", "https://tec.openplanner.team/stops/LsVprum1"], ["https://tec.openplanner.team/stops/Bbiehss1", "https://tec.openplanner.team/stops/Bptbsar2"], ["https://tec.openplanner.team/stops/H1br134b", "https://tec.openplanner.team/stops/H2ma264a"], ["https://tec.openplanner.team/stops/X801amb", "https://tec.openplanner.team/stops/X899aib"], ["https://tec.openplanner.team/stops/LHrchat1", "https://tec.openplanner.team/stops/LHrchat2"], ["https://tec.openplanner.team/stops/Lsekubo1", "https://tec.openplanner.team/stops/Lsekubo2"], ["https://tec.openplanner.team/stops/X948acb", "https://tec.openplanner.team/stops/X948ada"], ["https://tec.openplanner.team/stops/LHbcent1", "https://tec.openplanner.team/stops/LJAboli2"], ["https://tec.openplanner.team/stops/N501aqa", "https://tec.openplanner.team/stops/N501cda"], ["https://tec.openplanner.team/stops/X911aka", "https://tec.openplanner.team/stops/X911amb"], ["https://tec.openplanner.team/stops/LWNcime1", "https://tec.openplanner.team/stops/LWNcime2"], ["https://tec.openplanner.team/stops/H2na132b", "https://tec.openplanner.team/stops/H2na134b"], ["https://tec.openplanner.team/stops/Cforepo1", "https://tec.openplanner.team/stops/Cforpet1"], ["https://tec.openplanner.team/stops/Cgxfo142", "https://tec.openplanner.team/stops/Cgxvvel1"], ["https://tec.openplanner.team/stops/X779acb", "https://tec.openplanner.team/stops/X779adb"], ["https://tec.openplanner.team/stops/Bblarbe1", "https://tec.openplanner.team/stops/Bblavba2"], ["https://tec.openplanner.team/stops/Ccuplai1", "https://tec.openplanner.team/stops/Cgysarr1"], ["https://tec.openplanner.team/stops/Bnivchh2", "https://tec.openplanner.team/stops/Bnivfhu2"], ["https://tec.openplanner.team/stops/Cgncail1", "https://tec.openplanner.team/stops/Clproi1"], ["https://tec.openplanner.team/stops/N577aba", "https://tec.openplanner.team/stops/N577abb"], ["https://tec.openplanner.team/stops/LBPxhav2", "https://tec.openplanner.team/stops/LFsec--1"], ["https://tec.openplanner.team/stops/Bgemgjo1", "https://tec.openplanner.team/stops/Bgemgjo2"], ["https://tec.openplanner.team/stops/H2bh107b", "https://tec.openplanner.team/stops/H2jo161d"], ["https://tec.openplanner.team/stops/LhEtivo2", "https://tec.openplanner.team/stops/LWEgend1"], ["https://tec.openplanner.team/stops/Bcrbbou1", "https://tec.openplanner.team/stops/Bcrbmsg2"], ["https://tec.openplanner.team/stops/Lendonh1", "https://tec.openplanner.team/stops/Lendonh2"], ["https://tec.openplanner.team/stops/N135axb", "https://tec.openplanner.team/stops/N135bgb"], ["https://tec.openplanner.team/stops/X601bia", "https://tec.openplanner.team/stops/X601bwa"], ["https://tec.openplanner.team/stops/LBApak2*", "https://tec.openplanner.team/stops/LETsaiv1"], ["https://tec.openplanner.team/stops/Becepco1", "https://tec.openplanner.team/stops/H2mi124a"], ["https://tec.openplanner.team/stops/X948atb", "https://tec.openplanner.team/stops/X948awa"], ["https://tec.openplanner.team/stops/X622aab", "https://tec.openplanner.team/stops/X622aba"], ["https://tec.openplanner.team/stops/H1gi119a", "https://tec.openplanner.team/stops/H1gi121a"], ["https://tec.openplanner.team/stops/Blingar1", "https://tec.openplanner.team/stops/Blingar2"], ["https://tec.openplanner.team/stops/H1eq115b", "https://tec.openplanner.team/stops/H1fy142a"], ["https://tec.openplanner.team/stops/N127aca", "https://tec.openplanner.team/stops/N127acb"], ["https://tec.openplanner.team/stops/N501ajb", "https://tec.openplanner.team/stops/N501bdb"], ["https://tec.openplanner.team/stops/N357aca", "https://tec.openplanner.team/stops/N357aea"], ["https://tec.openplanner.team/stops/LFsherm1", "https://tec.openplanner.team/stops/LSLabba1"], ["https://tec.openplanner.team/stops/Cjufrat2", "https://tec.openplanner.team/stops/Cjuphil2"], ["https://tec.openplanner.team/stops/LPLcarr1", "https://tec.openplanner.team/stops/LPLcarr3"], ["https://tec.openplanner.team/stops/Llgrema1", "https://tec.openplanner.team/stops/Llgrema2"], ["https://tec.openplanner.team/stops/X750abb", "https://tec.openplanner.team/stops/X750aca"], ["https://tec.openplanner.team/stops/Lagmoli2", "https://tec.openplanner.team/stops/Llggram3"], ["https://tec.openplanner.team/stops/Csycant1", "https://tec.openplanner.team/stops/Csygare4"], ["https://tec.openplanner.team/stops/LWDchpl2", "https://tec.openplanner.team/stops/LWDmass1"], ["https://tec.openplanner.team/stops/N132acb", "https://tec.openplanner.team/stops/N135abb"], ["https://tec.openplanner.team/stops/LHAprei1", "https://tec.openplanner.team/stops/LVIsouv3"], ["https://tec.openplanner.team/stops/LCFchir1", "https://tec.openplanner.team/stops/LCTfair1"], ["https://tec.openplanner.team/stops/LCsjone1", "https://tec.openplanner.team/stops/LCsjone2"], ["https://tec.openplanner.team/stops/LWDhous1", "https://tec.openplanner.team/stops/LWDhous2"], ["https://tec.openplanner.team/stops/LBTcarr1", "https://tec.openplanner.team/stops/LBTfoot2"], ["https://tec.openplanner.team/stops/Bhmmcha1", "https://tec.openplanner.team/stops/Bhmmcha2"], ["https://tec.openplanner.team/stops/Bottgar1", "https://tec.openplanner.team/stops/Bottgar2"], ["https://tec.openplanner.team/stops/N569aab", "https://tec.openplanner.team/stops/N569acb"], ["https://tec.openplanner.team/stops/X362aca", "https://tec.openplanner.team/stops/X362adb"], ["https://tec.openplanner.team/stops/LWbboeg1", "https://tec.openplanner.team/stops/X595aad"], ["https://tec.openplanner.team/stops/X901aga", "https://tec.openplanner.team/stops/X902bba"], ["https://tec.openplanner.team/stops/LFFchab2", "https://tec.openplanner.team/stops/LVLsabl2"], ["https://tec.openplanner.team/stops/LVLf37-2", "https://tec.openplanner.team/stops/LVLsabl2"], ["https://tec.openplanner.team/stops/N308agb", "https://tec.openplanner.team/stops/N308ahb"], ["https://tec.openplanner.team/stops/X858aha", "https://tec.openplanner.team/stops/X858ahb"], ["https://tec.openplanner.team/stops/Becebju1", "https://tec.openplanner.team/stops/Beceres1"], ["https://tec.openplanner.team/stops/Lcealig2", "https://tec.openplanner.team/stops/Lcewilm2"], ["https://tec.openplanner.team/stops/LFFchal2", "https://tec.openplanner.team/stops/LVLsabl2"], ["https://tec.openplanner.team/stops/LVIeg--4", "https://tec.openplanner.team/stops/LVIsacr1"], ["https://tec.openplanner.team/stops/Cmtmoul1", "https://tec.openplanner.team/stops/Cmttkai1"], ["https://tec.openplanner.team/stops/X939aaa", "https://tec.openplanner.team/stops/X939abb"], ["https://tec.openplanner.team/stops/H1ho147a", "https://tec.openplanner.team/stops/H1pd143a"], ["https://tec.openplanner.team/stops/H4rm107b", "https://tec.openplanner.team/stops/H4ta120a"], ["https://tec.openplanner.team/stops/Bnivmat1", "https://tec.openplanner.team/stops/Bnivsci1"], ["https://tec.openplanner.team/stops/N501cyb", "https://tec.openplanner.team/stops/N528aha"], ["https://tec.openplanner.team/stops/LCF1spa2", "https://tec.openplanner.team/stops/LVnflox2"], ["https://tec.openplanner.team/stops/Llgcroi4", "https://tec.openplanner.team/stops/Llgptlo1"], ["https://tec.openplanner.team/stops/LMeeg--1", "https://tec.openplanner.team/stops/LMeperk2"], ["https://tec.openplanner.team/stops/X919abb", "https://tec.openplanner.team/stops/X921ada"], ["https://tec.openplanner.team/stops/N573apa", "https://tec.openplanner.team/stops/N573aqa"], ["https://tec.openplanner.team/stops/Ladotto2", "https://tec.openplanner.team/stops/Ladppir1"], ["https://tec.openplanner.team/stops/Bbeapim1", "https://tec.openplanner.team/stops/Bbeapim2"], ["https://tec.openplanner.team/stops/LVsboug2", "https://tec.openplanner.team/stops/NL57aib"], ["https://tec.openplanner.team/stops/Cfanoci1", "https://tec.openplanner.team/stops/Cfaplma1"], ["https://tec.openplanner.team/stops/Ccugend1", "https://tec.openplanner.team/stops/Ccupbro2"], ["https://tec.openplanner.team/stops/X793aba", "https://tec.openplanner.team/stops/X793aeb"], ["https://tec.openplanner.team/stops/LNCchev1", "https://tec.openplanner.team/stops/LNCgene2"], ["https://tec.openplanner.team/stops/LdUespe1", "https://tec.openplanner.team/stops/LdUespe2"], ["https://tec.openplanner.team/stops/LMNgare1", "https://tec.openplanner.team/stops/LMNgare2"], ["https://tec.openplanner.team/stops/X801ahb", "https://tec.openplanner.team/stops/X801aia"], ["https://tec.openplanner.team/stops/H5fl104b", "https://tec.openplanner.team/stops/H5wo124b"], ["https://tec.openplanner.team/stops/X925aga", "https://tec.openplanner.team/stops/X925aka"], ["https://tec.openplanner.team/stops/N204abb", "https://tec.openplanner.team/stops/N204aea"], ["https://tec.openplanner.team/stops/H4ka174b", "https://tec.openplanner.team/stops/H4ka176a"], ["https://tec.openplanner.team/stops/Cbtgemi1", "https://tec.openplanner.team/stops/Cfrcoqu2"], ["https://tec.openplanner.team/stops/Cgyobse1", "https://tec.openplanner.team/stops/Cgyrjau2"], ["https://tec.openplanner.team/stops/N313aba", "https://tec.openplanner.team/stops/N313abb"], ["https://tec.openplanner.team/stops/N551aab", "https://tec.openplanner.team/stops/N551aec"], ["https://tec.openplanner.team/stops/Bquecja1", "https://tec.openplanner.team/stops/Bquecro2"], ["https://tec.openplanner.team/stops/N534aea", "https://tec.openplanner.team/stops/N553aob"], ["https://tec.openplanner.team/stops/X608ava", "https://tec.openplanner.team/stops/X608ayb"], ["https://tec.openplanner.team/stops/NL57alb", "https://tec.openplanner.team/stops/NL57amb"], ["https://tec.openplanner.team/stops/H1mq198b", "https://tec.openplanner.team/stops/H1mq199a"], ["https://tec.openplanner.team/stops/Ccoforr1", "https://tec.openplanner.team/stops/Crocpai1"], ["https://tec.openplanner.team/stops/Cmlpche2", "https://tec.openplanner.team/stops/Cmlstni1"], ["https://tec.openplanner.team/stops/H1ss352a", "https://tec.openplanner.team/stops/H1ss352b"], ["https://tec.openplanner.team/stops/X811alb", "https://tec.openplanner.team/stops/X811ana"], ["https://tec.openplanner.team/stops/Bbcomar1", "https://tec.openplanner.team/stops/Bhenrcr1"], ["https://tec.openplanner.team/stops/X601boa", "https://tec.openplanner.team/stops/X601dda"], ["https://tec.openplanner.team/stops/LwYboui2", "https://tec.openplanner.team/stops/LwYcafe2"], ["https://tec.openplanner.team/stops/X663acb", "https://tec.openplanner.team/stops/X663ada"], ["https://tec.openplanner.team/stops/N551aia", "https://tec.openplanner.team/stops/N551aib"], ["https://tec.openplanner.team/stops/LrEfeck2", "https://tec.openplanner.team/stops/LrErauw1"], ["https://tec.openplanner.team/stops/H4am113a", "https://tec.openplanner.team/stops/H4am113b"], ["https://tec.openplanner.team/stops/Bniveco1", "https://tec.openplanner.team/stops/Bnivmet2"], ["https://tec.openplanner.team/stops/Cprvill1", "https://tec.openplanner.team/stops/NC11anb"], ["https://tec.openplanner.team/stops/Clpalli1", "https://tec.openplanner.team/stops/Clpalli2"], ["https://tec.openplanner.team/stops/LWDsott2", "https://tec.openplanner.team/stops/LWDsott3"], ["https://tec.openplanner.team/stops/Bllnhoc1", "https://tec.openplanner.team/stops/Bottcva2"], ["https://tec.openplanner.team/stops/Ltiecch2", "https://tec.openplanner.team/stops/Ltihorl2"], ["https://tec.openplanner.team/stops/N141aaa", "https://tec.openplanner.team/stops/N426afb"], ["https://tec.openplanner.team/stops/H1gr112b", "https://tec.openplanner.team/stops/H1gr123d"], ["https://tec.openplanner.team/stops/Lhrsimo1", "https://tec.openplanner.team/stops/Lhrsimo2"], ["https://tec.openplanner.team/stops/N579aab", "https://tec.openplanner.team/stops/N580adb"], ["https://tec.openplanner.team/stops/X652afa", "https://tec.openplanner.team/stops/X652afc"], ["https://tec.openplanner.team/stops/Lsecris2", "https://tec.openplanner.team/stops/Lsefive2"], ["https://tec.openplanner.team/stops/LBAtign2", "https://tec.openplanner.team/stops/LSAchef2"], ["https://tec.openplanner.team/stops/LVlleno1", "https://tec.openplanner.team/stops/LVlroua4"], ["https://tec.openplanner.team/stops/Csschat1", "https://tec.openplanner.team/stops/Csschat2"], ["https://tec.openplanner.team/stops/N512aia", "https://tec.openplanner.team/stops/N512aob"], ["https://tec.openplanner.team/stops/Bixlfla1", "https://tec.openplanner.team/stops/Bixlpat2"], ["https://tec.openplanner.team/stops/Bfelpmo1", "https://tec.openplanner.team/stops/Bfelpmo2"], ["https://tec.openplanner.team/stops/H1hn363b", "https://tec.openplanner.team/stops/H1hn364a"], ["https://tec.openplanner.team/stops/LTErest1", "https://tec.openplanner.team/stops/LTErest2"], ["https://tec.openplanner.team/stops/H1ms269a", "https://tec.openplanner.team/stops/H1ms269b"], ["https://tec.openplanner.team/stops/Cmerlme1", "https://tec.openplanner.team/stops/Cvpcour1"], ["https://tec.openplanner.team/stops/H4mv194a", "https://tec.openplanner.team/stops/H4mv194b"], ["https://tec.openplanner.team/stops/Cplrond1", "https://tec.openplanner.team/stops/Cplrond2"], ["https://tec.openplanner.team/stops/H1hc127a", "https://tec.openplanner.team/stops/H1hc151b"], ["https://tec.openplanner.team/stops/LeUmeye1", "https://tec.openplanner.team/stops/LeUmeye2"], ["https://tec.openplanner.team/stops/Lemdieu1", "https://tec.openplanner.team/stops/Lemdieu2"], ["https://tec.openplanner.team/stops/Llgboux2", "https://tec.openplanner.team/stops/Llgherm2"], ["https://tec.openplanner.team/stops/X717aab", "https://tec.openplanner.team/stops/X717aea"], ["https://tec.openplanner.team/stops/N501bfa", "https://tec.openplanner.team/stops/N501nbb"], ["https://tec.openplanner.team/stops/X774abb", "https://tec.openplanner.team/stops/X774aca"], ["https://tec.openplanner.team/stops/H1ev113b", "https://tec.openplanner.team/stops/H1ev116a"], ["https://tec.openplanner.team/stops/Ljubois1", "https://tec.openplanner.team/stops/Ljuprev1"], ["https://tec.openplanner.team/stops/H4ar177a", "https://tec.openplanner.team/stops/H4pl136a"], ["https://tec.openplanner.team/stops/H1br121b", "https://tec.openplanner.team/stops/H1br127a"], ["https://tec.openplanner.team/stops/Bgembhe1", "https://tec.openplanner.team/stops/N576ada"], ["https://tec.openplanner.team/stops/N226aaa", "https://tec.openplanner.team/stops/N226aca"], ["https://tec.openplanner.team/stops/LHEclef1", "https://tec.openplanner.team/stops/LHEjose2"], ["https://tec.openplanner.team/stops/Bnetrec1", "https://tec.openplanner.team/stops/Bnetrec2"], ["https://tec.openplanner.team/stops/Bclgmev1", "https://tec.openplanner.team/stops/Bllnlb51"], ["https://tec.openplanner.team/stops/H4cw105a", "https://tec.openplanner.team/stops/H4lz163a"], ["https://tec.openplanner.team/stops/Lhurigu2", "https://tec.openplanner.team/stops/Lmnhorl2"], ["https://tec.openplanner.team/stops/LMAalli1", "https://tec.openplanner.team/stops/LMAalli2"], ["https://tec.openplanner.team/stops/Lousite2", "https://tec.openplanner.team/stops/Lousite3"], ["https://tec.openplanner.team/stops/H2bh105b", "https://tec.openplanner.team/stops/H2bh115b"], ["https://tec.openplanner.team/stops/LHueg--2", "https://tec.openplanner.team/stops/LHumoul1"], ["https://tec.openplanner.team/stops/X637aoa", "https://tec.openplanner.team/stops/X650anb"], ["https://tec.openplanner.team/stops/N513anb", "https://tec.openplanner.team/stops/N513axb"], ["https://tec.openplanner.team/stops/Lcaboun3", "https://tec.openplanner.team/stops/LPReg--1"], ["https://tec.openplanner.team/stops/H2ll178d", "https://tec.openplanner.team/stops/H2ll258a"], ["https://tec.openplanner.team/stops/Cgzlera1", "https://tec.openplanner.team/stops/Cmyrays1"], ["https://tec.openplanner.team/stops/LXoeg--4", "https://tec.openplanner.team/stops/LXopeti1"], ["https://tec.openplanner.team/stops/X908aba", "https://tec.openplanner.team/stops/X908ada"], ["https://tec.openplanner.team/stops/N118avb", "https://tec.openplanner.team/stops/N118avc"], ["https://tec.openplanner.team/stops/Lbocond2", "https://tec.openplanner.team/stops/LESmagr2"], ["https://tec.openplanner.team/stops/LBEmich2", "https://tec.openplanner.team/stops/LDLheid2"], ["https://tec.openplanner.team/stops/Cmlpomm1", "https://tec.openplanner.team/stops/Cmlpomm2"], ["https://tec.openplanner.team/stops/X664asa", "https://tec.openplanner.team/stops/X667aaa"], ["https://tec.openplanner.team/stops/Lcchala1", "https://tec.openplanner.team/stops/Lfhhoul2"], ["https://tec.openplanner.team/stops/LJAdeho1", "https://tec.openplanner.team/stops/LJAdeho3"], ["https://tec.openplanner.team/stops/Cplbbro1", "https://tec.openplanner.team/stops/Cpljonc2"], ["https://tec.openplanner.team/stops/H5rx102b", "https://tec.openplanner.team/stops/H5rx130b"], ["https://tec.openplanner.team/stops/H1cd111d", "https://tec.openplanner.team/stops/H1hr126a"], ["https://tec.openplanner.team/stops/Ladppir1", "https://tec.openplanner.team/stops/Lvehomb2"], ["https://tec.openplanner.team/stops/LAnfall2", "https://tec.openplanner.team/stops/LVtchai2"], ["https://tec.openplanner.team/stops/Cmtstan3", "https://tec.openplanner.team/stops/Cmttrie1"], ["https://tec.openplanner.team/stops/H1wa146a", "https://tec.openplanner.team/stops/H1wa152a"], ["https://tec.openplanner.team/stops/N522abd", "https://tec.openplanner.team/stops/N522ala"], ["https://tec.openplanner.team/stops/Cctrobe1", "https://tec.openplanner.team/stops/NC02agc"], ["https://tec.openplanner.team/stops/LBEairp1", "https://tec.openplanner.team/stops/LTIchev1"], ["https://tec.openplanner.team/stops/LBNeu712", "https://tec.openplanner.team/stops/LBNeup21"], ["https://tec.openplanner.team/stops/H1le121a", "https://tec.openplanner.team/stops/H1le122a"], ["https://tec.openplanner.team/stops/N538aga", "https://tec.openplanner.team/stops/N538aub"], ["https://tec.openplanner.team/stops/Bmalcar1", "https://tec.openplanner.team/stops/Bsrbtil2"], ["https://tec.openplanner.team/stops/Bmartil2", "https://tec.openplanner.team/stops/Csdbosq2"], ["https://tec.openplanner.team/stops/H1gh155b", "https://tec.openplanner.team/stops/H1gh158b"], ["https://tec.openplanner.team/stops/LFehaut1", "https://tec.openplanner.team/stops/LFethie1"], ["https://tec.openplanner.team/stops/H4tu170b", "https://tec.openplanner.team/stops/H4tu171a"], ["https://tec.openplanner.team/stops/N313adb", "https://tec.openplanner.team/stops/N313aeb"], ["https://tec.openplanner.team/stops/Lrcvinc1", "https://tec.openplanner.team/stops/Lvoec--1"], ["https://tec.openplanner.team/stops/X601cxa", "https://tec.openplanner.team/stops/X601cya"], ["https://tec.openplanner.team/stops/Cbiferm2", "https://tec.openplanner.team/stops/Cthbifu1"], ["https://tec.openplanner.team/stops/H1et100b", "https://tec.openplanner.team/stops/H1et102a"], ["https://tec.openplanner.team/stops/LbOhoff2", "https://tec.openplanner.team/stops/LmDhoch1"], ["https://tec.openplanner.team/stops/Lmlchev1", "https://tec.openplanner.team/stops/Lmlguis2"], ["https://tec.openplanner.team/stops/N533aeb", "https://tec.openplanner.team/stops/N551afb"], ["https://tec.openplanner.team/stops/X719aea", "https://tec.openplanner.team/stops/X719aeb"], ["https://tec.openplanner.team/stops/LBCtros2", "https://tec.openplanner.team/stops/LMTvill1"], ["https://tec.openplanner.team/stops/Cbmvalt2", "https://tec.openplanner.team/stops/H1tt104b"], ["https://tec.openplanner.team/stops/N235aea", "https://tec.openplanner.team/stops/N241adb"], ["https://tec.openplanner.team/stops/Bblaegl1", "https://tec.openplanner.team/stops/Bblaphi1"], ["https://tec.openplanner.team/stops/Candett1", "https://tec.openplanner.team/stops/H2an103b"], ["https://tec.openplanner.team/stops/LBscime2", "https://tec.openplanner.team/stops/LBseg--1"], ["https://tec.openplanner.team/stops/X837aeb", "https://tec.openplanner.team/stops/X837afa"], ["https://tec.openplanner.team/stops/H1wz170a", "https://tec.openplanner.team/stops/H1wz171a"], ["https://tec.openplanner.team/stops/H4rc231b", "https://tec.openplanner.team/stops/H4rc232d"], ["https://tec.openplanner.team/stops/X896aeb", "https://tec.openplanner.team/stops/X896afa"], ["https://tec.openplanner.team/stops/X614bcb", "https://tec.openplanner.team/stops/X614bdb"], ["https://tec.openplanner.team/stops/H1sb150b", "https://tec.openplanner.team/stops/H1sb151b"], ["https://tec.openplanner.team/stops/LBPboir2", "https://tec.openplanner.team/stops/LRGile-1"], ["https://tec.openplanner.team/stops/Lgdhall*", "https://tec.openplanner.team/stops/Lgdrena2"], ["https://tec.openplanner.team/stops/LHCcoul1", "https://tec.openplanner.team/stops/LSuusin1"], ["https://tec.openplanner.team/stops/X661axa", "https://tec.openplanner.team/stops/X661axc"], ["https://tec.openplanner.team/stops/H1hh110b", "https://tec.openplanner.team/stops/H1hh111b"], ["https://tec.openplanner.team/stops/LBNvilv1", "https://tec.openplanner.team/stops/LBNvilv2"], ["https://tec.openplanner.team/stops/LMHmeha2", "https://tec.openplanner.team/stops/LMHtill1"], ["https://tec.openplanner.team/stops/H1hb197a", "https://tec.openplanner.team/stops/H1ht122b"], ["https://tec.openplanner.team/stops/X617aca", "https://tec.openplanner.team/stops/X617aga"], ["https://tec.openplanner.team/stops/Crapaep2", "https://tec.openplanner.team/stops/Crasabl2"], ["https://tec.openplanner.team/stops/H4og214b", "https://tec.openplanner.team/stops/H4og215b"], ["https://tec.openplanner.team/stops/LTBeg--1", "https://tec.openplanner.team/stops/X714aab"], ["https://tec.openplanner.team/stops/N535amc", "https://tec.openplanner.team/stops/N535amd"], ["https://tec.openplanner.team/stops/N543bya", "https://tec.openplanner.team/stops/N566aeb"], ["https://tec.openplanner.team/stops/N423aea", "https://tec.openplanner.team/stops/N423aeb"], ["https://tec.openplanner.team/stops/X636aza", "https://tec.openplanner.team/stops/X636bfb"], ["https://tec.openplanner.team/stops/Cmg4bra1", "https://tec.openplanner.team/stops/Cmgcabi2"], ["https://tec.openplanner.team/stops/LMAhall2", "https://tec.openplanner.team/stops/LMApape2"], ["https://tec.openplanner.team/stops/LTychev1", "https://tec.openplanner.team/stops/LTychev2"], ["https://tec.openplanner.team/stops/X910aea", "https://tec.openplanner.team/stops/X910agb"], ["https://tec.openplanner.team/stops/N537abb", "https://tec.openplanner.team/stops/N537ajb"], ["https://tec.openplanner.team/stops/N212aka", "https://tec.openplanner.team/stops/N225ahb"], ["https://tec.openplanner.team/stops/N512afb", "https://tec.openplanner.team/stops/N512ahb"], ["https://tec.openplanner.team/stops/H1mb129b", "https://tec.openplanner.team/stops/H1ro131b"], ["https://tec.openplanner.team/stops/X995afa", "https://tec.openplanner.team/stops/X995aga"], ["https://tec.openplanner.team/stops/Cfaeclu2", "https://tec.openplanner.team/stops/Cfasamb2"], ["https://tec.openplanner.team/stops/Bottath1", "https://tec.openplanner.team/stops/Bottgar2"], ["https://tec.openplanner.team/stops/LAmab751", "https://tec.openplanner.team/stops/LATguis2"], ["https://tec.openplanner.team/stops/X908afb", "https://tec.openplanner.team/stops/X911aaa"], ["https://tec.openplanner.team/stops/X790abb", "https://tec.openplanner.team/stops/X790agb"], ["https://tec.openplanner.team/stops/Blthwav1", "https://tec.openplanner.team/stops/Bmlnegl1"], ["https://tec.openplanner.team/stops/H1hy125b", "https://tec.openplanner.team/stops/H1hy126b"], ["https://tec.openplanner.team/stops/H1bs112a", "https://tec.openplanner.team/stops/H1sb146a"], ["https://tec.openplanner.team/stops/Lsmeg--1", "https://tec.openplanner.team/stops/Lveinva2"], ["https://tec.openplanner.team/stops/Cgylami1", "https://tec.openplanner.team/stops/Cgynuto1"], ["https://tec.openplanner.team/stops/N501gza", "https://tec.openplanner.team/stops/N501hla"], ["https://tec.openplanner.team/stops/X994aba", "https://tec.openplanner.team/stops/X994aea"], ["https://tec.openplanner.team/stops/N531aha", "https://tec.openplanner.team/stops/N576aia"], ["https://tec.openplanner.team/stops/X923aqb", "https://tec.openplanner.team/stops/X923ara"], ["https://tec.openplanner.team/stops/X983aea", "https://tec.openplanner.team/stops/X996aha"], ["https://tec.openplanner.team/stops/H1hr116b", "https://tec.openplanner.team/stops/H1hv130b"], ["https://tec.openplanner.team/stops/LmI129-1", "https://tec.openplanner.team/stops/LmIcafe1"], ["https://tec.openplanner.team/stops/H1pd145a", "https://tec.openplanner.team/stops/H1pd146a"], ["https://tec.openplanner.team/stops/X897alc", "https://tec.openplanner.team/stops/X897aub"], ["https://tec.openplanner.team/stops/LMforba2", "https://tec.openplanner.team/stops/LMfpeni*"], ["https://tec.openplanner.team/stops/LJEerno2", "https://tec.openplanner.team/stops/LJEloum2"], ["https://tec.openplanner.team/stops/Clusncb4", "https://tec.openplanner.team/stops/Cpcwaut1"], ["https://tec.openplanner.team/stops/N501hta", "https://tec.openplanner.team/stops/N501htb"], ["https://tec.openplanner.team/stops/Bhevjal1", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://tec.openplanner.team/stops/LRuegli2", "https://tec.openplanner.team/stops/LSemc--4"], ["https://tec.openplanner.team/stops/H4ha167a", "https://tec.openplanner.team/stops/H4ru235a"], ["https://tec.openplanner.team/stops/N211agb", "https://tec.openplanner.team/stops/N211awa"], ["https://tec.openplanner.team/stops/H4he106a", "https://tec.openplanner.team/stops/H4he106b"], ["https://tec.openplanner.team/stops/Llmcomb1", "https://tec.openplanner.team/stops/Llmvill2"], ["https://tec.openplanner.team/stops/Cnadepo2", "https://tec.openplanner.team/stops/Cnarmon1"], ["https://tec.openplanner.team/stops/X796aca", "https://tec.openplanner.team/stops/X986aga"], ["https://tec.openplanner.team/stops/X954aba", "https://tec.openplanner.team/stops/X954acb"], ["https://tec.openplanner.team/stops/H4bq100c", "https://tec.openplanner.team/stops/H4mb205b"], ["https://tec.openplanner.team/stops/N357aaa", "https://tec.openplanner.team/stops/N357aab"], ["https://tec.openplanner.team/stops/H4rm112a", "https://tec.openplanner.team/stops/H4rm112b"], ["https://tec.openplanner.team/stops/X770abb", "https://tec.openplanner.team/stops/X770ada"], ["https://tec.openplanner.team/stops/Bpecvme1", "https://tec.openplanner.team/stops/Bpecvme2"], ["https://tec.openplanner.team/stops/X991ala", "https://tec.openplanner.team/stops/X991alb"], ["https://tec.openplanner.team/stops/H4te249a", "https://tec.openplanner.team/stops/H4te413a"], ["https://tec.openplanner.team/stops/LLmeg--1", "https://tec.openplanner.team/stops/LLmvand1"], ["https://tec.openplanner.team/stops/Lbocime1", "https://tec.openplanner.team/stops/Lbocruc1"], ["https://tec.openplanner.team/stops/X801aca", "https://tec.openplanner.team/stops/X802aua"], ["https://tec.openplanner.team/stops/H2hg271a", "https://tec.openplanner.team/stops/H2ll198b"], ["https://tec.openplanner.team/stops/H4ga151a", "https://tec.openplanner.team/stops/H4vz371b"], ["https://tec.openplanner.team/stops/X994aka", "https://tec.openplanner.team/stops/X995aca"], ["https://tec.openplanner.team/stops/Bhaless1", "https://tec.openplanner.team/stops/Bhalomo2"], ["https://tec.openplanner.team/stops/Lhehoux1", "https://tec.openplanner.team/stops/Lheneuv4"], ["https://tec.openplanner.team/stops/N230ala", "https://tec.openplanner.team/stops/N234aba"], ["https://tec.openplanner.team/stops/Clomakr1", "https://tec.openplanner.team/stops/Clomari4"], ["https://tec.openplanner.team/stops/LWahetr1", "https://tec.openplanner.team/stops/LWalyce2"], ["https://tec.openplanner.team/stops/H4ta121b", "https://tec.openplanner.team/stops/H4ta134b"], ["https://tec.openplanner.team/stops/N530aba", "https://tec.openplanner.team/stops/N530afa"], ["https://tec.openplanner.team/stops/N149abb", "https://tec.openplanner.team/stops/N149ahb"], ["https://tec.openplanner.team/stops/X354aeb", "https://tec.openplanner.team/stops/X354agb"], ["https://tec.openplanner.team/stops/H4pp121a", "https://tec.openplanner.team/stops/H4pp121b"], ["https://tec.openplanner.team/stops/N501aob", "https://tec.openplanner.team/stops/N501mjc"], ["https://tec.openplanner.team/stops/Bstecal1", "https://tec.openplanner.team/stops/Btubsal1"], ["https://tec.openplanner.team/stops/LtH37c-2", "https://tec.openplanner.team/stops/LtHkirc4"], ["https://tec.openplanner.team/stops/H1ba106a", "https://tec.openplanner.team/stops/H1te173b"], ["https://tec.openplanner.team/stops/Bgrhcen2", "https://tec.openplanner.team/stops/Bgrhche1"], ["https://tec.openplanner.team/stops/X758aab", "https://tec.openplanner.team/stops/X758ahb"], ["https://tec.openplanner.team/stops/LCHgele1", "https://tec.openplanner.team/stops/LCHgele2"], ["https://tec.openplanner.team/stops/X663aub", "https://tec.openplanner.team/stops/X663avb"], ["https://tec.openplanner.team/stops/H1mh113b", "https://tec.openplanner.team/stops/H1mh113c"], ["https://tec.openplanner.team/stops/Bndb4ch1", "https://tec.openplanner.team/stops/Bptbsar1"], ["https://tec.openplanner.team/stops/Cnacout1", "https://tec.openplanner.team/stops/Cnacroc1"], ["https://tec.openplanner.team/stops/X921ala", "https://tec.openplanner.team/stops/X921ara"], ["https://tec.openplanner.team/stops/N513aha", "https://tec.openplanner.team/stops/N513ahb"], ["https://tec.openplanner.team/stops/LrAbe601", "https://tec.openplanner.team/stops/LrAbe961"], ["https://tec.openplanner.team/stops/Bnivfdu1", "https://tec.openplanner.team/stops/Bnivn971"], ["https://tec.openplanner.team/stops/X790aeb", "https://tec.openplanner.team/stops/X790aga"], ["https://tec.openplanner.team/stops/Blhuone1", "https://tec.openplanner.team/stops/Blhupa14"], ["https://tec.openplanner.team/stops/LCxcouv1", "https://tec.openplanner.team/stops/LCxeg--1"], ["https://tec.openplanner.team/stops/LkTgutl1", "https://tec.openplanner.team/stops/LkTraer2"], ["https://tec.openplanner.team/stops/X754ata", "https://tec.openplanner.team/stops/X779ada"], ["https://tec.openplanner.team/stops/N214aga", "https://tec.openplanner.team/stops/N225aaa"], ["https://tec.openplanner.team/stops/Cctbois3", "https://tec.openplanner.team/stops/Ccupays1"], ["https://tec.openplanner.team/stops/X946abb", "https://tec.openplanner.team/stops/X946aca"], ["https://tec.openplanner.team/stops/LNCcedr1", "https://tec.openplanner.team/stops/LNCecdo1"], ["https://tec.openplanner.team/stops/X623abb", "https://tec.openplanner.team/stops/X623ada"], ["https://tec.openplanner.team/stops/X822ala", "https://tec.openplanner.team/stops/X822ana"], ["https://tec.openplanner.team/stops/LmYamel1", "https://tec.openplanner.team/stops/LmYwall2"], ["https://tec.openplanner.team/stops/N577aia", "https://tec.openplanner.team/stops/N577aib"], ["https://tec.openplanner.team/stops/LeIkreu1", "https://tec.openplanner.team/stops/LeIkreu3"], ["https://tec.openplanner.team/stops/LESgran1", "https://tec.openplanner.team/stops/LESslmo2"], ["https://tec.openplanner.team/stops/Cnapair1", "https://tec.openplanner.team/stops/Cnating2"], ["https://tec.openplanner.team/stops/H1wa141a", "https://tec.openplanner.team/stops/H1wa150a"], ["https://tec.openplanner.team/stops/X839aea", "https://tec.openplanner.team/stops/X839aeb"], ["https://tec.openplanner.team/stops/Loucham3", "https://tec.openplanner.team/stops/Loucham4"], ["https://tec.openplanner.team/stops/LjeGRPMB", "https://tec.openplanner.team/stops/LjeGRPMC"], ["https://tec.openplanner.team/stops/N141agb", "https://tec.openplanner.team/stops/N143ada"], ["https://tec.openplanner.team/stops/Cjupui01", "https://tec.openplanner.team/stops/CMpuis1"], ["https://tec.openplanner.team/stops/H1hn202b", "https://tec.openplanner.team/stops/H1hn209b"], ["https://tec.openplanner.team/stops/N501cea", "https://tec.openplanner.team/stops/N521aqb"], ["https://tec.openplanner.team/stops/N520aeb", "https://tec.openplanner.team/stops/N521aoa"], ["https://tec.openplanner.team/stops/LRtcarr1", "https://tec.openplanner.team/stops/LTestat1"], ["https://tec.openplanner.team/stops/Cjufauv2", "https://tec.openplanner.team/stops/Cjuvign1"], ["https://tec.openplanner.team/stops/LWOpier1", "https://tec.openplanner.team/stops/LWOpier2"], ["https://tec.openplanner.team/stops/Bohnbra2", "https://tec.openplanner.team/stops/Bohnrpl1"], ["https://tec.openplanner.team/stops/LLM4rou1", "https://tec.openplanner.team/stops/LLMeg--1"], ["https://tec.openplanner.team/stops/H4hu121b", "https://tec.openplanner.team/stops/H4ld125a"], ["https://tec.openplanner.team/stops/LREgrot3", "https://tec.openplanner.team/stops/LREgrot4"], ["https://tec.openplanner.team/stops/LHodomm1", "https://tec.openplanner.team/stops/LHolone2"], ["https://tec.openplanner.team/stops/Bbxlmid4", "https://tec.openplanner.team/stops/H5el100a"], ["https://tec.openplanner.team/stops/LBafagn2", "https://tec.openplanner.team/stops/LNEpass2"], ["https://tec.openplanner.team/stops/H1te184a", "https://tec.openplanner.team/stops/H1te185b"], ["https://tec.openplanner.team/stops/Cjugohi3", "https://tec.openplanner.team/stops/Cmacoll1"], ["https://tec.openplanner.team/stops/Lhufays1", "https://tec.openplanner.team/stops/Lhujonc2"], ["https://tec.openplanner.team/stops/X941aca", "https://tec.openplanner.team/stops/X941acb"], ["https://tec.openplanner.team/stops/N525ana", "https://tec.openplanner.team/stops/N525aub"], ["https://tec.openplanner.team/stops/H1br120a", "https://tec.openplanner.team/stops/H1em109a"], ["https://tec.openplanner.team/stops/LBpbruy2", "https://tec.openplanner.team/stops/LCAcruc2"], ["https://tec.openplanner.team/stops/N562akb", "https://tec.openplanner.team/stops/N562bmb"], ["https://tec.openplanner.team/stops/X661ala", "https://tec.openplanner.team/stops/X661alb"], ["https://tec.openplanner.team/stops/Bwaunop1", "https://tec.openplanner.team/stops/Bwaunop2"], ["https://tec.openplanner.team/stops/H4wn123b", "https://tec.openplanner.team/stops/H4wn129b"], ["https://tec.openplanner.team/stops/N117bda", "https://tec.openplanner.team/stops/N145aea"], ["https://tec.openplanner.team/stops/H1au111b", "https://tec.openplanner.team/stops/H1fy120a"], ["https://tec.openplanner.team/stops/Bneehou2", "https://tec.openplanner.team/stops/Bneervc2"], ["https://tec.openplanner.team/stops/LeUath%C3%A41", "https://tec.openplanner.team/stops/LeUlasc2"], ["https://tec.openplanner.team/stops/N540apb", "https://tec.openplanner.team/stops/N540arb"], ["https://tec.openplanner.team/stops/Buccfja2", "https://tec.openplanner.team/stops/Buccron1"], ["https://tec.openplanner.team/stops/LrUbahn1", "https://tec.openplanner.team/stops/LrUweve1"], ["https://tec.openplanner.team/stops/LTigera2", "https://tec.openplanner.team/stops/LTiterr2"], ["https://tec.openplanner.team/stops/Loubour2", "https://tec.openplanner.team/stops/Lousite6"], ["https://tec.openplanner.team/stops/Cgygazo8", "https://tec.openplanner.team/stops/Cgylouv2"], ["https://tec.openplanner.team/stops/Ltiecch1", "https://tec.openplanner.team/stops/Ltinico2"], ["https://tec.openplanner.team/stops/X651abb", "https://tec.openplanner.team/stops/X651ada"], ["https://tec.openplanner.team/stops/Brixbou2", "https://tec.openplanner.team/stops/Brixres1"], ["https://tec.openplanner.team/stops/H4fr143a", "https://tec.openplanner.team/stops/H4ma401a"], ["https://tec.openplanner.team/stops/N534bfb", "https://tec.openplanner.team/stops/N534bga"], ["https://tec.openplanner.team/stops/H4ae101b", "https://tec.openplanner.team/stops/H4ef113b"], ["https://tec.openplanner.team/stops/Bnivvai2", "https://tec.openplanner.team/stops/Bthivil3"], ["https://tec.openplanner.team/stops/LVefont1", "https://tec.openplanner.team/stops/LVefont2"], ["https://tec.openplanner.team/stops/LBRmc--1", "https://tec.openplanner.team/stops/LBRmc--2"], ["https://tec.openplanner.team/stops/Bcrbrpb2", "https://tec.openplanner.team/stops/Bcrbtho1"], ["https://tec.openplanner.team/stops/LBAcarr1", "https://tec.openplanner.team/stops/LBAcent1"], ["https://tec.openplanner.team/stops/H4cl112b", "https://tec.openplanner.team/stops/H4ga154a"], ["https://tec.openplanner.team/stops/Ljeblum1", "https://tec.openplanner.team/stops/Ljemeca1"], ["https://tec.openplanner.team/stops/Lghprea3", "https://tec.openplanner.team/stops/Lghprea4"], ["https://tec.openplanner.team/stops/Cbwmato1", "https://tec.openplanner.team/stops/Cmqn5912"], ["https://tec.openplanner.team/stops/H1qp140a", "https://tec.openplanner.team/stops/H1qp140b"], ["https://tec.openplanner.team/stops/Bmrlhau1", "https://tec.openplanner.team/stops/Bmrlhau2"], ["https://tec.openplanner.team/stops/X937aab", "https://tec.openplanner.team/stops/X937aga"], ["https://tec.openplanner.team/stops/X822aba", "https://tec.openplanner.team/stops/X822aoa"], ["https://tec.openplanner.team/stops/Bottpin1", "https://tec.openplanner.team/stops/Bottpry2"], ["https://tec.openplanner.team/stops/Cliegli1", "https://tec.openplanner.team/stops/Crebien2"], ["https://tec.openplanner.team/stops/Beclfde1", "https://tec.openplanner.team/stops/Bfelfde2"], ["https://tec.openplanner.team/stops/Bfelpla2", "https://tec.openplanner.team/stops/Bsengma1"], ["https://tec.openplanner.team/stops/Bnivbne2", "https://tec.openplanner.team/stops/Bnivbos2"], ["https://tec.openplanner.team/stops/H4br107b", "https://tec.openplanner.team/stops/H4br108b"], ["https://tec.openplanner.team/stops/N127afa", "https://tec.openplanner.team/stops/N127aja"], ["https://tec.openplanner.team/stops/H1cu111a", "https://tec.openplanner.team/stops/H1ms921a"], ["https://tec.openplanner.team/stops/Cmcegli3", "https://tec.openplanner.team/stops/Cmcwic1"], ["https://tec.openplanner.team/stops/Ccicouc1", "https://tec.openplanner.team/stops/Ccipech1"], ["https://tec.openplanner.team/stops/H1nm139a", "https://tec.openplanner.team/stops/H1nm139b"], ["https://tec.openplanner.team/stops/H1ms281b", "https://tec.openplanner.team/stops/H1ni323a"], ["https://tec.openplanner.team/stops/N204ajb", "https://tec.openplanner.team/stops/N204ala"], ["https://tec.openplanner.team/stops/Bblaall1", "https://tec.openplanner.team/stops/Bblapje2"], ["https://tec.openplanner.team/stops/N501gcb", "https://tec.openplanner.team/stops/N538abb"], ["https://tec.openplanner.team/stops/NL37ala", "https://tec.openplanner.team/stops/NL37alb"], ["https://tec.openplanner.team/stops/H4mv188b", "https://tec.openplanner.team/stops/H4mv190b"], ["https://tec.openplanner.team/stops/Ccyga8", "https://tec.openplanner.team/stops/NH01acb"], ["https://tec.openplanner.team/stops/H4ty326a", "https://tec.openplanner.team/stops/H4ty326b"], ["https://tec.openplanner.team/stops/LLrcomb1", "https://tec.openplanner.team/stops/LLrmaq-2"], ["https://tec.openplanner.team/stops/LJAbois1", "https://tec.openplanner.team/stops/Lmnchal1"], ["https://tec.openplanner.team/stops/N120aib", "https://tec.openplanner.team/stops/N167aha"], ["https://tec.openplanner.team/stops/Bwavcin2", "https://tec.openplanner.team/stops/Bwavtrt2"], ["https://tec.openplanner.team/stops/LaMgeme*", "https://tec.openplanner.team/stops/LeIjoha1"], ["https://tec.openplanner.team/stops/N353aba", "https://tec.openplanner.team/stops/N353awa"], ["https://tec.openplanner.team/stops/H1er110a", "https://tec.openplanner.team/stops/H1er110b"], ["https://tec.openplanner.team/stops/NL57aha", "https://tec.openplanner.team/stops/NL57ahb"], ["https://tec.openplanner.team/stops/H1cu127a", "https://tec.openplanner.team/stops/H1cu128b"], ["https://tec.openplanner.team/stops/N512aha", "https://tec.openplanner.team/stops/N512ahb"], ["https://tec.openplanner.team/stops/LMEcour1", "https://tec.openplanner.team/stops/LMEpech2"], ["https://tec.openplanner.team/stops/X614aoa", "https://tec.openplanner.team/stops/X614apa"], ["https://tec.openplanner.team/stops/LWAclos1", "https://tec.openplanner.team/stops/LWAmois1"], ["https://tec.openplanner.team/stops/N311aaa", "https://tec.openplanner.team/stops/N311adb"], ["https://tec.openplanner.team/stops/X652aca", "https://tec.openplanner.team/stops/X652adb"], ["https://tec.openplanner.team/stops/N522aia", "https://tec.openplanner.team/stops/N522aib"], ["https://tec.openplanner.team/stops/Lhrcols4", "https://tec.openplanner.team/stops/Llgbry-1"], ["https://tec.openplanner.team/stops/H4hx110b", "https://tec.openplanner.team/stops/H4hx122b"], ["https://tec.openplanner.team/stops/N352aja", "https://tec.openplanner.team/stops/N352ajb"], ["https://tec.openplanner.team/stops/LAIrout2", "https://tec.openplanner.team/stops/LCschen1"], ["https://tec.openplanner.team/stops/LMOcorn2", "https://tec.openplanner.team/stops/LMOf21-2"], ["https://tec.openplanner.team/stops/N122aca", "https://tec.openplanner.team/stops/N122ada"], ["https://tec.openplanner.team/stops/LCPone92", "https://tec.openplanner.team/stops/LOncar-*"], ["https://tec.openplanner.team/stops/H1tt107a", "https://tec.openplanner.team/stops/H1tt109a"], ["https://tec.openplanner.team/stops/H1ms929a", "https://tec.openplanner.team/stops/H1ms932a"], ["https://tec.openplanner.team/stops/Bwatavo1", "https://tec.openplanner.team/stops/Bwatcpr1"], ["https://tec.openplanner.team/stops/H1bb114a", "https://tec.openplanner.team/stops/H1bb116c"], ["https://tec.openplanner.team/stops/H4ra159a", "https://tec.openplanner.team/stops/H4ra159b"], ["https://tec.openplanner.team/stops/H5pe131b", "https://tec.openplanner.team/stops/H5pe151a"], ["https://tec.openplanner.team/stops/LOMeg--1", "https://tec.openplanner.team/stops/LOMtomb1"], ["https://tec.openplanner.team/stops/LAUbour3", "https://tec.openplanner.team/stops/LAUvict4"], ["https://tec.openplanner.team/stops/LAMvert1", "https://tec.openplanner.team/stops/LAMwall1"], ["https://tec.openplanner.team/stops/LBajean2", "https://tec.openplanner.team/stops/LBapepi4"], ["https://tec.openplanner.team/stops/N353adb", "https://tec.openplanner.team/stops/N353ahb"], ["https://tec.openplanner.team/stops/H4lp122b", "https://tec.openplanner.team/stops/H4lp126b"], ["https://tec.openplanner.team/stops/Bbchdra2", "https://tec.openplanner.team/stops/Bwaurge1"], ["https://tec.openplanner.team/stops/LLrbano1", "https://tec.openplanner.team/stops/LLrbuis1"], ["https://tec.openplanner.team/stops/N501faa", "https://tec.openplanner.team/stops/N501maa"], ["https://tec.openplanner.team/stops/X740aca", "https://tec.openplanner.team/stops/X740aeb"], ["https://tec.openplanner.team/stops/Lsebegu3", "https://tec.openplanner.team/stops/Ltipass2"], ["https://tec.openplanner.team/stops/Blanath1", "https://tec.openplanner.team/stops/LLagert*"], ["https://tec.openplanner.team/stops/Lhrlico3", "https://tec.openplanner.team/stops/Ljuauto2"], ["https://tec.openplanner.team/stops/X734aoa", "https://tec.openplanner.team/stops/X734aob"], ["https://tec.openplanner.team/stops/H1ob330a", "https://tec.openplanner.team/stops/H1ob330b"], ["https://tec.openplanner.team/stops/N501eha", "https://tec.openplanner.team/stops/N501ehb"], ["https://tec.openplanner.team/stops/X361acb", "https://tec.openplanner.team/stops/X361afa"], ["https://tec.openplanner.team/stops/Lghchap1", "https://tec.openplanner.team/stops/Lghchap2"], ["https://tec.openplanner.team/stops/H1so131f", "https://tec.openplanner.team/stops/H1so146b"], ["https://tec.openplanner.team/stops/Lvicitw2", "https://tec.openplanner.team/stops/Lviweri1"], ["https://tec.openplanner.team/stops/X871acb", "https://tec.openplanner.team/stops/X871ada"], ["https://tec.openplanner.team/stops/N215aab", "https://tec.openplanner.team/stops/N261aga"], ["https://tec.openplanner.team/stops/LmHbien1", "https://tec.openplanner.team/stops/LmHbien2"], ["https://tec.openplanner.team/stops/LBiroch1", "https://tec.openplanner.team/stops/LBiroch2"], ["https://tec.openplanner.team/stops/Cmyquen2", "https://tec.openplanner.team/stops/Cmywarc1"], ["https://tec.openplanner.team/stops/H4bo112b", "https://tec.openplanner.team/stops/H4bo117a"], ["https://tec.openplanner.team/stops/LRRbuta1", "https://tec.openplanner.team/stops/LRRchea5"], ["https://tec.openplanner.team/stops/N217aba", "https://tec.openplanner.team/stops/N217abb"], ["https://tec.openplanner.team/stops/Barcbav1", "https://tec.openplanner.team/stops/Bbsgfva1"], ["https://tec.openplanner.team/stops/X626aia", "https://tec.openplanner.team/stops/X626ajb"], ["https://tec.openplanner.team/stops/H1cu124a", "https://tec.openplanner.team/stops/H1fr151b"], ["https://tec.openplanner.team/stops/Lprceri1", "https://tec.openplanner.team/stops/Lprspra2"], ["https://tec.openplanner.team/stops/Livpost2", "https://tec.openplanner.team/stops/LRacime2"], ["https://tec.openplanner.team/stops/Crodebr2", "https://tec.openplanner.team/stops/Crolach2"], ["https://tec.openplanner.team/stops/X892afb", "https://tec.openplanner.team/stops/X892agb"], ["https://tec.openplanner.team/stops/H1og135a", "https://tec.openplanner.team/stops/H1og136a"], ["https://tec.openplanner.team/stops/H4eh104b", "https://tec.openplanner.team/stops/H4po130a"], ["https://tec.openplanner.team/stops/N308aic", "https://tec.openplanner.team/stops/X308akb"], ["https://tec.openplanner.team/stops/Crcrgar2", "https://tec.openplanner.team/stops/NH03agb"], ["https://tec.openplanner.team/stops/Bfelcsa2", "https://tec.openplanner.team/stops/Bfelpla2"], ["https://tec.openplanner.team/stops/N531aca", "https://tec.openplanner.team/stops/N531aga"], ["https://tec.openplanner.team/stops/X624agb", "https://tec.openplanner.team/stops/X624aha"], ["https://tec.openplanner.team/stops/N235aab", "https://tec.openplanner.team/stops/N235ahb"], ["https://tec.openplanner.team/stops/X812acb", "https://tec.openplanner.team/stops/X825aeb"], ["https://tec.openplanner.team/stops/H4ld126b", "https://tec.openplanner.team/stops/H4ld128b"], ["https://tec.openplanner.team/stops/Bkrabhu2", "https://tec.openplanner.team/stops/Bovesog1"], ["https://tec.openplanner.team/stops/N557ada", "https://tec.openplanner.team/stops/N558ajb"], ["https://tec.openplanner.team/stops/Llgfred1", "https://tec.openplanner.team/stops/Llgptlo4"], ["https://tec.openplanner.team/stops/H3lr120a", "https://tec.openplanner.team/stops/H3lr120b"], ["https://tec.openplanner.team/stops/LmNha221", "https://tec.openplanner.team/stops/LmNha222"], ["https://tec.openplanner.team/stops/LATfont2", "https://tec.openplanner.team/stops/LVNbale2"], ["https://tec.openplanner.team/stops/N117ana", "https://tec.openplanner.team/stops/N117aob"], ["https://tec.openplanner.team/stops/LCxwade1", "https://tec.openplanner.team/stops/LCxwade2"], ["https://tec.openplanner.team/stops/H4te258a", "https://tec.openplanner.team/stops/H4te258b"], ["https://tec.openplanner.team/stops/X948aia", "https://tec.openplanner.team/stops/X948aib"], ["https://tec.openplanner.team/stops/H4av106a", "https://tec.openplanner.team/stops/H4av106b"], ["https://tec.openplanner.team/stops/LPRbrou1", "https://tec.openplanner.team/stops/LPReg--1"], ["https://tec.openplanner.team/stops/X626ala", "https://tec.openplanner.team/stops/X626ana"], ["https://tec.openplanner.team/stops/H4ba101b", "https://tec.openplanner.team/stops/H4pi133b"], ["https://tec.openplanner.team/stops/X808aea", "https://tec.openplanner.team/stops/X811ada"], ["https://tec.openplanner.team/stops/Ccyfede2", "https://tec.openplanner.team/stops/Crbgare1"], ["https://tec.openplanner.team/stops/Lmofays1", "https://tec.openplanner.team/stops/Lmovand2"], ["https://tec.openplanner.team/stops/N501akb", "https://tec.openplanner.team/stops/N501aoa"], ["https://tec.openplanner.team/stops/H4co146b", "https://tec.openplanner.team/stops/H4co148b"], ["https://tec.openplanner.team/stops/N243aca", "https://tec.openplanner.team/stops/N243adb"], ["https://tec.openplanner.team/stops/Bnilcim2", "https://tec.openplanner.team/stops/Bnilpco1"], ["https://tec.openplanner.team/stops/X741ahb", "https://tec.openplanner.team/stops/X741ana"], ["https://tec.openplanner.team/stops/X609ada", "https://tec.openplanner.team/stops/X609afb"], ["https://tec.openplanner.team/stops/X912aeb", "https://tec.openplanner.team/stops/X912aia"], ["https://tec.openplanner.team/stops/X261adb", "https://tec.openplanner.team/stops/X979akb"], ["https://tec.openplanner.team/stops/X911afb", "https://tec.openplanner.team/stops/X911ara"], ["https://tec.openplanner.team/stops/LlgPTAV1", "https://tec.openplanner.team/stops/LlgPTAV3"], ["https://tec.openplanner.team/stops/H1gq153a", "https://tec.openplanner.team/stops/H1hq126a"], ["https://tec.openplanner.team/stops/X614ara", "https://tec.openplanner.team/stops/X624abb"], ["https://tec.openplanner.team/stops/LMsbusc2", "https://tec.openplanner.team/stops/LMsgara1"], ["https://tec.openplanner.team/stops/LeLgrie1", "https://tec.openplanner.team/stops/LeLzost1"], ["https://tec.openplanner.team/stops/LNIec--2", "https://tec.openplanner.team/stops/LSZnive2"], ["https://tec.openplanner.team/stops/H1em106a", "https://tec.openplanner.team/stops/H1fa117b"], ["https://tec.openplanner.team/stops/X614agb", "https://tec.openplanner.team/stops/X615aza"], ["https://tec.openplanner.team/stops/Lstbarb2", "https://tec.openplanner.team/stops/Lsteduc2"], ["https://tec.openplanner.team/stops/LXopeti2", "https://tec.openplanner.team/stops/X599afd"], ["https://tec.openplanner.team/stops/Ccychco2", "https://tec.openplanner.team/stops/Ccyga05"], ["https://tec.openplanner.team/stops/LHUcamp1", "https://tec.openplanner.team/stops/LHUcamp2"], ["https://tec.openplanner.team/stops/LdEkreu1", "https://tec.openplanner.team/stops/LdEschw2"], ["https://tec.openplanner.team/stops/H4ga167a", "https://tec.openplanner.team/stops/H4ga168a"], ["https://tec.openplanner.team/stops/X396aca", "https://tec.openplanner.team/stops/X919ama"], ["https://tec.openplanner.team/stops/Cdalpla2", "https://tec.openplanner.team/stops/CMdesc2"], ["https://tec.openplanner.team/stops/Lflcime1", "https://tec.openplanner.team/stops/Lflweri1"], ["https://tec.openplanner.team/stops/H1le124b", "https://tec.openplanner.team/stops/H1le128d"], ["https://tec.openplanner.team/stops/Bvirbru1", "https://tec.openplanner.team/stops/Bvircsj1"], ["https://tec.openplanner.team/stops/Ladarev1", "https://tec.openplanner.team/stops/Ladxhen1"], ["https://tec.openplanner.team/stops/X892aea", "https://tec.openplanner.team/stops/X892ahb"], ["https://tec.openplanner.team/stops/H1ca100b", "https://tec.openplanner.team/stops/H1ca184b"], ["https://tec.openplanner.team/stops/Ccofayt2", "https://tec.openplanner.team/stops/Cvvgrsa1"], ["https://tec.openplanner.team/stops/X604aia", "https://tec.openplanner.team/stops/X604aib"], ["https://tec.openplanner.team/stops/Lmlboul1", "https://tec.openplanner.team/stops/Lmlboul2"], ["https://tec.openplanner.team/stops/NL68aca", "https://tec.openplanner.team/stops/NL68acb"], ["https://tec.openplanner.team/stops/LHUmess2", "https://tec.openplanner.team/stops/LTiec--2"], ["https://tec.openplanner.team/stops/X897acb", "https://tec.openplanner.team/stops/X897ala"], ["https://tec.openplanner.team/stops/Laghetr2", "https://tec.openplanner.team/stops/Lagsauh1"], ["https://tec.openplanner.team/stops/Csocime1", "https://tec.openplanner.team/stops/Csocime2"], ["https://tec.openplanner.team/stops/Bbsggot2", "https://tec.openplanner.team/stops/Bhmmcge1"], ["https://tec.openplanner.team/stops/Cmqbasv2", "https://tec.openplanner.team/stops/H1ro131b"], ["https://tec.openplanner.team/stops/H1bl107a", "https://tec.openplanner.team/stops/H1eq116a"], ["https://tec.openplanner.team/stops/N120aib", "https://tec.openplanner.team/stops/N120alb"], ["https://tec.openplanner.team/stops/LAWcite4", "https://tec.openplanner.team/stops/LAWdefu3"], ["https://tec.openplanner.team/stops/LOcgdro2", "https://tec.openplanner.team/stops/LOcgdro3"], ["https://tec.openplanner.team/stops/LThpoli1", "https://tec.openplanner.team/stops/LThpoli2"], ["https://tec.openplanner.team/stops/LAWroug2", "https://tec.openplanner.team/stops/LBIfore1"], ["https://tec.openplanner.team/stops/LgRzent1", "https://tec.openplanner.team/stops/LtHfrie2"], ["https://tec.openplanner.team/stops/Bdoncar1", "https://tec.openplanner.team/stops/Bincdon1"], ["https://tec.openplanner.team/stops/Bhancre2", "https://tec.openplanner.team/stops/NL37aab"], ["https://tec.openplanner.team/stops/H1cu121b", "https://tec.openplanner.team/stops/H1cu130b"], ["https://tec.openplanner.team/stops/H4ef163a", "https://tec.openplanner.team/stops/H4hq133d"], ["https://tec.openplanner.team/stops/LlNhube1", "https://tec.openplanner.team/stops/LlNschu1"], ["https://tec.openplanner.team/stops/X793aha", "https://tec.openplanner.team/stops/X793ahb"], ["https://tec.openplanner.team/stops/N163aab", "https://tec.openplanner.team/stops/N163abb"], ["https://tec.openplanner.team/stops/LDLheid1", "https://tec.openplanner.team/stops/LDLheid2"], ["https://tec.openplanner.team/stops/Bflcpco1", "https://tec.openplanner.team/stops/NR30aab"], ["https://tec.openplanner.team/stops/LeUoe541", "https://tec.openplanner.team/stops/LeUwais1"], ["https://tec.openplanner.team/stops/Ctupont1", "https://tec.openplanner.team/stops/Ctupont2"], ["https://tec.openplanner.team/stops/LFPchat2", "https://tec.openplanner.team/stops/LVu40--1"], ["https://tec.openplanner.team/stops/X804bqa", "https://tec.openplanner.team/stops/X804bqb"], ["https://tec.openplanner.team/stops/Ljemabo1", "https://tec.openplanner.team/stops/Ltibure4"], ["https://tec.openplanner.team/stops/N101aaa", "https://tec.openplanner.team/stops/N101aab"], ["https://tec.openplanner.team/stops/LFPzwaa1", "https://tec.openplanner.team/stops/LFPzwaa2"], ["https://tec.openplanner.team/stops/LREhenu1", "https://tec.openplanner.team/stops/LREhenu2"], ["https://tec.openplanner.team/stops/H4ne135b", "https://tec.openplanner.team/stops/H4ne141a"], ["https://tec.openplanner.team/stops/LPAbrun2", "https://tec.openplanner.team/stops/LPAvill2"], ["https://tec.openplanner.team/stops/LBIhann1", "https://tec.openplanner.team/stops/LBIvill2"], ["https://tec.openplanner.team/stops/Cmofosb2", "https://tec.openplanner.team/stops/Cmoprov1"], ["https://tec.openplanner.team/stops/N554agb", "https://tec.openplanner.team/stops/N573aqa"], ["https://tec.openplanner.team/stops/N515ajb", "https://tec.openplanner.team/stops/N515aoa"], ["https://tec.openplanner.team/stops/LRIcite1", "https://tec.openplanner.team/stops/LRIhous1"], ["https://tec.openplanner.team/stops/LBNpleg2", "https://tec.openplanner.team/stops/LBNvill6"], ["https://tec.openplanner.team/stops/Lmitech1", "https://tec.openplanner.team/stops/Lmitech2"], ["https://tec.openplanner.team/stops/LWacime3", "https://tec.openplanner.team/stops/LWacime4"], ["https://tec.openplanner.team/stops/X790ana", "https://tec.openplanner.team/stops/X790anb"], ["https://tec.openplanner.team/stops/Llglave2", "https://tec.openplanner.team/stops/Llgomal2"], ["https://tec.openplanner.team/stops/Lmlguis2", "https://tec.openplanner.team/stops/Lpomart1"], ["https://tec.openplanner.team/stops/Ccodubo1", "https://tec.openplanner.team/stops/Ccojaur3"], ["https://tec.openplanner.team/stops/Bnilhau1", "https://tec.openplanner.team/stops/Btsleco1"], ["https://tec.openplanner.team/stops/H2ep144b", "https://tec.openplanner.team/stops/H2re175b"], ["https://tec.openplanner.team/stops/LnN02--2", "https://tec.openplanner.team/stops/LsVthom1"], ["https://tec.openplanner.team/stops/H4wa155b", "https://tec.openplanner.team/stops/H4wa161a"], ["https://tec.openplanner.team/stops/LVEjard1", "https://tec.openplanner.team/stops/LVEroum1"], ["https://tec.openplanner.team/stops/Lmlbaro2", "https://tec.openplanner.team/stops/Lmlchev1"], ["https://tec.openplanner.team/stops/Lroboeg2", "https://tec.openplanner.team/stops/Lrosoxh1"], ["https://tec.openplanner.team/stops/Cfamate2", "https://tec.openplanner.team/stops/Cfanvmo1"], ["https://tec.openplanner.team/stops/Lhufila2", "https://tec.openplanner.team/stops/LPohoeg1"], ["https://tec.openplanner.team/stops/Bgoesch2", "https://tec.openplanner.team/stops/Bgoesch3"], ["https://tec.openplanner.team/stops/Lchcomm1", "https://tec.openplanner.team/stops/Lchcomm2"], ["https://tec.openplanner.team/stops/H4ta127b", "https://tec.openplanner.team/stops/H4ta135a"], ["https://tec.openplanner.team/stops/Bjdscnd2", "https://tec.openplanner.team/stops/Bjodpce1"], ["https://tec.openplanner.team/stops/X641asa", "https://tec.openplanner.team/stops/X821aaa"], ["https://tec.openplanner.team/stops/LBIvill4", "https://tec.openplanner.team/stops/LFOchpl2"], ["https://tec.openplanner.team/stops/LSTamer2", "https://tec.openplanner.team/stops/LSTec--2"], ["https://tec.openplanner.team/stops/Cwfaldi2", "https://tec.openplanner.team/stops/Cwfbarr2"], ["https://tec.openplanner.team/stops/X922aga", "https://tec.openplanner.team/stops/X922ahb"], ["https://tec.openplanner.team/stops/N874aka", "https://tec.openplanner.team/stops/N874akb"], ["https://tec.openplanner.team/stops/Lghcham2", "https://tec.openplanner.team/stops/Lghreyn2"], ["https://tec.openplanner.team/stops/N201anb", "https://tec.openplanner.team/stops/N201aoc"], ["https://tec.openplanner.team/stops/LBStong1", "https://tec.openplanner.team/stops/LRGbett3"], ["https://tec.openplanner.team/stops/Cdacolu2", "https://tec.openplanner.team/stops/CMlpla1"], ["https://tec.openplanner.team/stops/Ctafran2", "https://tec.openplanner.team/stops/N543bka"], ["https://tec.openplanner.team/stops/X840aab", "https://tec.openplanner.team/stops/X840aba"], ["https://tec.openplanner.team/stops/H2fa108a", "https://tec.openplanner.team/stops/H2hg268c"], ["https://tec.openplanner.team/stops/Llgbrab1", "https://tec.openplanner.team/stops/Llgvinc2"], ["https://tec.openplanner.team/stops/N568aca", "https://tec.openplanner.team/stops/N568acb"], ["https://tec.openplanner.team/stops/X774afa", "https://tec.openplanner.team/stops/X775aaa"], ["https://tec.openplanner.team/stops/LAChann2", "https://tec.openplanner.team/stops/LHhvivi2"], ["https://tec.openplanner.team/stops/X736aaa", "https://tec.openplanner.team/stops/X736agb"], ["https://tec.openplanner.team/stops/LAibego1", "https://tec.openplanner.team/stops/LCacoop1"], ["https://tec.openplanner.team/stops/Lflmc--2", "https://tec.openplanner.team/stops/Lflterm2"], ["https://tec.openplanner.team/stops/LTaeg--1", "https://tec.openplanner.team/stops/LTaouch1"], ["https://tec.openplanner.team/stops/N540apa", "https://tec.openplanner.team/stops/N540arb"], ["https://tec.openplanner.team/stops/LhEherb1", "https://tec.openplanner.team/stops/LhElont3"], ["https://tec.openplanner.team/stops/X666aca", "https://tec.openplanner.team/stops/X729aca"], ["https://tec.openplanner.team/stops/Llgmair2", "https://tec.openplanner.team/stops/Llgthie2"], ["https://tec.openplanner.team/stops/X901aza", "https://tec.openplanner.team/stops/X901bpa"], ["https://tec.openplanner.team/stops/X993acb", "https://tec.openplanner.team/stops/X993aib"], ["https://tec.openplanner.team/stops/Lpefler1", "https://tec.openplanner.team/stops/Lpefler2"], ["https://tec.openplanner.team/stops/Cmaest2", "https://tec.openplanner.team/stops/Cmmn1171"], ["https://tec.openplanner.team/stops/Lgrclin3", "https://tec.openplanner.team/stops/Lvc4bra2"], ["https://tec.openplanner.team/stops/Llmdela1", "https://tec.openplanner.team/stops/LWenouv1"], ["https://tec.openplanner.team/stops/Blhunys3", "https://tec.openplanner.team/stops/Bohnhan1"], ["https://tec.openplanner.team/stops/Lhuferm2", "https://tec.openplanner.team/stops/Lhulibe2"], ["https://tec.openplanner.team/stops/H1gr122a", "https://tec.openplanner.team/stops/H1sy141b"], ["https://tec.openplanner.team/stops/N139aab", "https://tec.openplanner.team/stops/N139aea"], ["https://tec.openplanner.team/stops/H4ty333b", "https://tec.openplanner.team/stops/H4ty359a"], ["https://tec.openplanner.team/stops/LThhoul2", "https://tec.openplanner.team/stops/LThplen2"], ["https://tec.openplanner.team/stops/Caccent1", "https://tec.openplanner.team/stops/Cacecol2"], ["https://tec.openplanner.team/stops/LBUchpl1", "https://tec.openplanner.team/stops/LBUmara1"], ["https://tec.openplanner.team/stops/X664afa", "https://tec.openplanner.team/stops/X664aga"], ["https://tec.openplanner.team/stops/X982bkb", "https://tec.openplanner.team/stops/X982blc"], ["https://tec.openplanner.team/stops/LLrhaut2", "https://tec.openplanner.team/stops/LLrhaut4"], ["https://tec.openplanner.team/stops/LCFcafe2", "https://tec.openplanner.team/stops/LCFmoul1"], ["https://tec.openplanner.team/stops/Cgyhstj1", "https://tec.openplanner.team/stops/Cgyhstj2"], ["https://tec.openplanner.team/stops/H5el100a", "https://tec.openplanner.team/stops/H5fl101a"], ["https://tec.openplanner.team/stops/X898abb", "https://tec.openplanner.team/stops/X898aca"], ["https://tec.openplanner.team/stops/Crsapol1", "https://tec.openplanner.team/stops/Crsapol2"], ["https://tec.openplanner.team/stops/X769aab", "https://tec.openplanner.team/stops/X769atb"], ["https://tec.openplanner.team/stops/N531afg", "https://tec.openplanner.team/stops/N531ata"], ["https://tec.openplanner.team/stops/N248adb", "https://tec.openplanner.team/stops/N248aea"], ["https://tec.openplanner.team/stops/X801bwb", "https://tec.openplanner.team/stops/X802ayb"], ["https://tec.openplanner.team/stops/LGLgeer2", "https://tec.openplanner.team/stops/LSLdall2"], ["https://tec.openplanner.team/stops/N501iba", "https://tec.openplanner.team/stops/N501ila"], ["https://tec.openplanner.team/stops/N309aab", "https://tec.openplanner.team/stops/N313aec"], ["https://tec.openplanner.team/stops/Bgoemho2", "https://tec.openplanner.team/stops/Bhakmkr2"], ["https://tec.openplanner.team/stops/X646ada", "https://tec.openplanner.team/stops/X825aaa"], ["https://tec.openplanner.team/stops/LlgLEOP3", "https://tec.openplanner.team/stops/Llgnage2"], ["https://tec.openplanner.team/stops/N160aaa", "https://tec.openplanner.team/stops/N160adb"], ["https://tec.openplanner.team/stops/X950adb", "https://tec.openplanner.team/stops/X955acb"], ["https://tec.openplanner.team/stops/N531aja", "https://tec.openplanner.team/stops/N534bkg"], ["https://tec.openplanner.team/stops/LLEgare1", "https://tec.openplanner.team/stops/LLEgare2"], ["https://tec.openplanner.team/stops/Cchccom2", "https://tec.openplanner.team/stops/Cchhopi4"], ["https://tec.openplanner.team/stops/H4ev120a", "https://tec.openplanner.team/stops/H4ev124b"], ["https://tec.openplanner.team/stops/X911afa", "https://tec.openplanner.team/stops/X911ahb"], ["https://tec.openplanner.team/stops/Ccisolv2", "https://tec.openplanner.team/stops/Cmtplac8"], ["https://tec.openplanner.team/stops/Berncim2", "https://tec.openplanner.team/stops/Berncim3"], ["https://tec.openplanner.team/stops/H4ef109b", "https://tec.openplanner.team/stops/H4ef111b"], ["https://tec.openplanner.team/stops/Cfrcham1", "https://tec.openplanner.team/stops/Clihame2"], ["https://tec.openplanner.team/stops/N230afa", "https://tec.openplanner.team/stops/N242agb"], ["https://tec.openplanner.team/stops/H5wo124b", "https://tec.openplanner.team/stops/H5wo134a"], ["https://tec.openplanner.team/stops/X804asb", "https://tec.openplanner.team/stops/X804bda"], ["https://tec.openplanner.team/stops/LLrfrai1", "https://tec.openplanner.team/stops/LLrpape4"], ["https://tec.openplanner.team/stops/H2ec104a", "https://tec.openplanner.team/stops/H2me115a"], ["https://tec.openplanner.team/stops/LROchap2", "https://tec.openplanner.team/stops/LwYkirc2"], ["https://tec.openplanner.team/stops/Cbicamp1", "https://tec.openplanner.team/stops/Cbimonu2"], ["https://tec.openplanner.team/stops/LJAherb2", "https://tec.openplanner.team/stops/LJAherb3"], ["https://tec.openplanner.team/stops/Bnivrsh1", "https://tec.openplanner.team/stops/Bnivzon1"], ["https://tec.openplanner.team/stops/N505ada", "https://tec.openplanner.team/stops/N505adb"], ["https://tec.openplanner.team/stops/Bsoihci1", "https://tec.openplanner.team/stops/H3so173a"], ["https://tec.openplanner.team/stops/H1mj127b", "https://tec.openplanner.team/stops/H1mj128b"], ["https://tec.openplanner.team/stops/Llgcbat2", "https://tec.openplanner.team/stops/Llgvalu1"], ["https://tec.openplanner.team/stops/Ladjuif2", "https://tec.openplanner.team/stops/Ladlaur2"], ["https://tec.openplanner.team/stops/N134ada", "https://tec.openplanner.team/stops/N134adb"], ["https://tec.openplanner.team/stops/H1hg181b", "https://tec.openplanner.team/stops/H1nv324b"], ["https://tec.openplanner.team/stops/Canboni2", "https://tec.openplanner.team/stops/Canplch1"], ["https://tec.openplanner.team/stops/X605agb", "https://tec.openplanner.team/stops/X619amb"], ["https://tec.openplanner.team/stops/Cluchbl2", "https://tec.openplanner.team/stops/Cluchbl4"], ["https://tec.openplanner.team/stops/H4bo114a", "https://tec.openplanner.team/stops/H4bo120b"], ["https://tec.openplanner.team/stops/X766agb", "https://tec.openplanner.team/stops/X766ajb"], ["https://tec.openplanner.team/stops/LSkdouf1", "https://tec.openplanner.team/stops/LYechpl1"], ["https://tec.openplanner.team/stops/H1hw121a", "https://tec.openplanner.team/stops/H1mc129b"], ["https://tec.openplanner.team/stops/Cfbegli2", "https://tec.openplanner.team/stops/Cfcecol3"], ["https://tec.openplanner.team/stops/Bnivcol2", "https://tec.openplanner.team/stops/Bnivcol3"], ["https://tec.openplanner.team/stops/H1do122a", "https://tec.openplanner.team/stops/H1do131c"], ["https://tec.openplanner.team/stops/X719aeb", "https://tec.openplanner.team/stops/X720aaa"], ["https://tec.openplanner.team/stops/H1fr116a", "https://tec.openplanner.team/stops/H1fr127a"], ["https://tec.openplanner.team/stops/LAufech1", "https://tec.openplanner.team/stops/LAugara1"], ["https://tec.openplanner.team/stops/Blmlfau2", "https://tec.openplanner.team/stops/Brixape2"], ["https://tec.openplanner.team/stops/H1bo109a", "https://tec.openplanner.team/stops/H1hi123b"], ["https://tec.openplanner.team/stops/H4ne141a", "https://tec.openplanner.team/stops/H4ne141b"], ["https://tec.openplanner.team/stops/H1mh115b", "https://tec.openplanner.team/stops/H1mh117a"], ["https://tec.openplanner.team/stops/N542aca", "https://tec.openplanner.team/stops/N542acb"], ["https://tec.openplanner.team/stops/Bbcolno2", "https://tec.openplanner.team/stops/H3br102b"], ["https://tec.openplanner.team/stops/H2fa107a", "https://tec.openplanner.team/stops/H2fa107b"], ["https://tec.openplanner.team/stops/N514amb", "https://tec.openplanner.team/stops/N514ana"], ["https://tec.openplanner.team/stops/LBSvi522", "https://tec.openplanner.team/stops/LWOsudr2"], ["https://tec.openplanner.team/stops/H2lc169c", "https://tec.openplanner.team/stops/H2lc169d"], ["https://tec.openplanner.team/stops/LJedonc1", "https://tec.openplanner.team/stops/LJedonc2"], ["https://tec.openplanner.team/stops/H2hp121a", "https://tec.openplanner.team/stops/H2hp124a"], ["https://tec.openplanner.team/stops/Bohnman1", "https://tec.openplanner.team/stops/Bohnman2"], ["https://tec.openplanner.team/stops/N212aca", "https://tec.openplanner.team/stops/N212akb"], ["https://tec.openplanner.team/stops/N331aab", "https://tec.openplanner.team/stops/N331aka"], ["https://tec.openplanner.team/stops/X609aba", "https://tec.openplanner.team/stops/X627aba"], ["https://tec.openplanner.team/stops/N116aea", "https://tec.openplanner.team/stops/N118aua"], ["https://tec.openplanner.team/stops/LEShony1", "https://tec.openplanner.team/stops/LESslmo2"], ["https://tec.openplanner.team/stops/Buccbou1", "https://tec.openplanner.team/stops/Bucccre1"], ["https://tec.openplanner.team/stops/X804apa", "https://tec.openplanner.team/stops/X869aba"], ["https://tec.openplanner.team/stops/N576aab", "https://tec.openplanner.team/stops/N576ama"], ["https://tec.openplanner.team/stops/H2ha141a", "https://tec.openplanner.team/stops/H2ha141c"], ["https://tec.openplanner.team/stops/X812aja", "https://tec.openplanner.team/stops/X812aoa"], ["https://tec.openplanner.team/stops/N512aqa", "https://tec.openplanner.team/stops/N512ara"], ["https://tec.openplanner.team/stops/N501kpa", "https://tec.openplanner.team/stops/N501kpb"], ["https://tec.openplanner.team/stops/NH01aeb", "https://tec.openplanner.team/stops/NH01aka"], ["https://tec.openplanner.team/stops/X804alc", "https://tec.openplanner.team/stops/X804bwa"], ["https://tec.openplanner.team/stops/X757ala", "https://tec.openplanner.team/stops/X779aaa"], ["https://tec.openplanner.team/stops/Csecoup1", "https://tec.openplanner.team/stops/Csefour2"], ["https://tec.openplanner.team/stops/H1ms921a", "https://tec.openplanner.team/stops/H1ms922a"], ["https://tec.openplanner.team/stops/LBDfran1", "https://tec.openplanner.team/stops/LBDfran2"], ["https://tec.openplanner.team/stops/H1er106a", "https://tec.openplanner.team/stops/H1er108a"], ["https://tec.openplanner.team/stops/X991agb", "https://tec.openplanner.team/stops/X991ahb"], ["https://tec.openplanner.team/stops/LeUmeye2", "https://tec.openplanner.team/stops/LrAknop1"], ["https://tec.openplanner.team/stops/Bincbbo1", "https://tec.openplanner.team/stops/Bincegl2"], ["https://tec.openplanner.team/stops/N308azb", "https://tec.openplanner.team/stops/N368aab"], ["https://tec.openplanner.team/stops/LVIcarm1", "https://tec.openplanner.team/stops/LVIcarm3"], ["https://tec.openplanner.team/stops/N117aub", "https://tec.openplanner.team/stops/N117auc"], ["https://tec.openplanner.team/stops/X595adb", "https://tec.openplanner.team/stops/X595aea"], ["https://tec.openplanner.team/stops/N106aab", "https://tec.openplanner.team/stops/N118aba"], ["https://tec.openplanner.team/stops/LFLetoi1", "https://tec.openplanner.team/stops/LFLetoi2"], ["https://tec.openplanner.team/stops/H4fl113b", "https://tec.openplanner.team/stops/H4fl114b"], ["https://tec.openplanner.team/stops/LAo161-1", "https://tec.openplanner.team/stops/LAo161-2"], ["https://tec.openplanner.team/stops/X982bda", "https://tec.openplanner.team/stops/X982bga"], ["https://tec.openplanner.team/stops/LATdony1", "https://tec.openplanner.team/stops/LHUtfal2"], ["https://tec.openplanner.team/stops/Lemparc2", "https://tec.openplanner.team/stops/LTIsain1"], ["https://tec.openplanner.team/stops/H1gr119a", "https://tec.openplanner.team/stops/H1gr119b"], ["https://tec.openplanner.team/stops/N501bta", "https://tec.openplanner.team/stops/N501btb"], ["https://tec.openplanner.team/stops/Clibrun1", "https://tec.openplanner.team/stops/Clihame1"], ["https://tec.openplanner.team/stops/Lbomidi1", "https://tec.openplanner.team/stops/LPLcite2"], ["https://tec.openplanner.team/stops/LbOvith1", "https://tec.openplanner.team/stops/LbOvith2"], ["https://tec.openplanner.team/stops/Lfhbott1", "https://tec.openplanner.team/stops/Lfhtrca1"], ["https://tec.openplanner.team/stops/LWDsott4", "https://tec.openplanner.team/stops/LWzfuma1"], ["https://tec.openplanner.team/stops/H1wa157a", "https://tec.openplanner.team/stops/H1wg125c"], ["https://tec.openplanner.team/stops/LeYberl1", "https://tec.openplanner.team/stops/LlCland1"], ["https://tec.openplanner.team/stops/Lhrchar1", "https://tec.openplanner.team/stops/Lhrthie2"], ["https://tec.openplanner.team/stops/Bgnvfai1", "https://tec.openplanner.team/stops/Bgnvqve1"], ["https://tec.openplanner.team/stops/X898afa", "https://tec.openplanner.team/stops/X898aga"], ["https://tec.openplanner.team/stops/Bsompri2", "https://tec.openplanner.team/stops/Bsomwav1"], ["https://tec.openplanner.team/stops/Llgbuis1", "https://tec.openplanner.team/stops/Lsccdor1"], ["https://tec.openplanner.team/stops/X721ahb", "https://tec.openplanner.team/stops/X721ajb"], ["https://tec.openplanner.team/stops/NC11alb", "https://tec.openplanner.team/stops/NC44aeb"], ["https://tec.openplanner.team/stops/Livvill2", "https://tec.openplanner.team/stops/LRarami1"], ["https://tec.openplanner.team/stops/LEHmarc2", "https://tec.openplanner.team/stops/LNCmc--1"], ["https://tec.openplanner.team/stops/H4bi100b", "https://tec.openplanner.team/stops/H4te256b"], ["https://tec.openplanner.team/stops/X650afc", "https://tec.openplanner.team/stops/X650aga"], ["https://tec.openplanner.team/stops/H1at109a", "https://tec.openplanner.team/stops/H1at110a"], ["https://tec.openplanner.team/stops/X902aha", "https://tec.openplanner.team/stops/X902ahb"], ["https://tec.openplanner.team/stops/X940aha", "https://tec.openplanner.team/stops/X940ahb"], ["https://tec.openplanner.team/stops/X663ahb", "https://tec.openplanner.team/stops/X663aia"], ["https://tec.openplanner.team/stops/Bgligra2", "https://tec.openplanner.team/stops/Btlbche2"], ["https://tec.openplanner.team/stops/Lthfagn2", "https://tec.openplanner.team/stops/LWarema2"], ["https://tec.openplanner.team/stops/Lsebegu1", "https://tec.openplanner.team/stops/Lsebegu2"], ["https://tec.openplanner.team/stops/LmDbw--*", "https://tec.openplanner.team/stops/LmDgeme2"], ["https://tec.openplanner.team/stops/H1bx105a", "https://tec.openplanner.team/stops/H1qv115b"], ["https://tec.openplanner.team/stops/X937aaa", "https://tec.openplanner.team/stops/X938ada"], ["https://tec.openplanner.team/stops/X641aha", "https://tec.openplanner.team/stops/X641amb"], ["https://tec.openplanner.team/stops/Lenplac2", "https://tec.openplanner.team/stops/Lenptsa2"], ["https://tec.openplanner.team/stops/Bwavbpi2", "https://tec.openplanner.team/stops/Bwavcui2"], ["https://tec.openplanner.team/stops/N127aha", "https://tec.openplanner.team/stops/N134aga"], ["https://tec.openplanner.team/stops/H4bu109a", "https://tec.openplanner.team/stops/H4ms166a"], ["https://tec.openplanner.team/stops/LFmbure2", "https://tec.openplanner.team/stops/LFmgeno2"], ["https://tec.openplanner.team/stops/H4by115d", "https://tec.openplanner.team/stops/H4tu170b"], ["https://tec.openplanner.team/stops/X610aea", "https://tec.openplanner.team/stops/X611aaa"], ["https://tec.openplanner.team/stops/H1bn113b", "https://tec.openplanner.team/stops/H1qp150b"], ["https://tec.openplanner.team/stops/H5pe134a", "https://tec.openplanner.team/stops/H5pe146b"], ["https://tec.openplanner.team/stops/Lcacris1", "https://tec.openplanner.team/stops/LNipla4"], ["https://tec.openplanner.team/stops/N519aac", "https://tec.openplanner.team/stops/N519ada"], ["https://tec.openplanner.team/stops/LFAec--2", "https://tec.openplanner.team/stops/LFAtomb2"], ["https://tec.openplanner.team/stops/H1sg146b", "https://tec.openplanner.team/stops/H1te198b"], ["https://tec.openplanner.team/stops/X901ata", "https://tec.openplanner.team/stops/X901ava"], ["https://tec.openplanner.team/stops/N521aic", "https://tec.openplanner.team/stops/N521aka"], ["https://tec.openplanner.team/stops/Bcbqtub1", "https://tec.openplanner.team/stops/Bitrsar1"], ["https://tec.openplanner.team/stops/Bstecou2", "https://tec.openplanner.team/stops/Bstemco1"], ["https://tec.openplanner.team/stops/H1hq124b", "https://tec.openplanner.team/stops/H1hq128a"], ["https://tec.openplanner.team/stops/LCUgale2", "https://tec.openplanner.team/stops/LCUjonc2"], ["https://tec.openplanner.team/stops/LBHhuyn1", "https://tec.openplanner.team/stops/LHbcent2"], ["https://tec.openplanner.team/stops/N337afa", "https://tec.openplanner.team/stops/N385adb"], ["https://tec.openplanner.team/stops/Llgbaya1", "https://tec.openplanner.team/stops/Llgvolg2"], ["https://tec.openplanner.team/stops/N501btb", "https://tec.openplanner.team/stops/N501bvb"], ["https://tec.openplanner.team/stops/NR21aca", "https://tec.openplanner.team/stops/NR21acb"], ["https://tec.openplanner.team/stops/Blilhay1", "https://tec.openplanner.team/stops/Blilton1"], ["https://tec.openplanner.team/stops/H1ca109b", "https://tec.openplanner.team/stops/H1ca184a"], ["https://tec.openplanner.team/stops/X619aeb", "https://tec.openplanner.team/stops/X619afa"], ["https://tec.openplanner.team/stops/N501grd", "https://tec.openplanner.team/stops/N501mha"], ["https://tec.openplanner.team/stops/Bsdapir2", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/H4lg100a", "https://tec.openplanner.team/stops/H4lg104a"], ["https://tec.openplanner.team/stops/LVLzoni1", "https://tec.openplanner.team/stops/LVLzoni2"], ["https://tec.openplanner.team/stops/H4hu119a", "https://tec.openplanner.team/stops/H4hu120a"], ["https://tec.openplanner.team/stops/X925aoa", "https://tec.openplanner.team/stops/X949amb"], ["https://tec.openplanner.team/stops/LROmons1", "https://tec.openplanner.team/stops/LROmons2"], ["https://tec.openplanner.team/stops/N501aca", "https://tec.openplanner.team/stops/N501acb"], ["https://tec.openplanner.team/stops/X715apa", "https://tec.openplanner.team/stops/X731abb"], ["https://tec.openplanner.team/stops/Lcehipp1", "https://tec.openplanner.team/stops/Lcemeta2"], ["https://tec.openplanner.team/stops/N538aba", "https://tec.openplanner.team/stops/N538ada"], ["https://tec.openplanner.team/stops/Bblagar3", "https://tec.openplanner.team/stops/Bblagar4"], ["https://tec.openplanner.team/stops/H3bi102b", "https://tec.openplanner.team/stops/H3bi116a"], ["https://tec.openplanner.team/stops/X982aad", "https://tec.openplanner.team/stops/X982bya"], ["https://tec.openplanner.team/stops/N532aab", "https://tec.openplanner.team/stops/N532aga"], ["https://tec.openplanner.team/stops/Cldplac2", "https://tec.openplanner.team/stops/Cmyjaci2"], ["https://tec.openplanner.team/stops/Bhandub2", "https://tec.openplanner.team/stops/Bhantui1"], ["https://tec.openplanner.team/stops/H4pl117a", "https://tec.openplanner.team/stops/H4pl117b"], ["https://tec.openplanner.team/stops/Ccigill1", "https://tec.openplanner.team/stops/Cmllecl4"], ["https://tec.openplanner.team/stops/Bjcljau2", "https://tec.openplanner.team/stops/Bjdspon2"], ["https://tec.openplanner.team/stops/X771ana", "https://tec.openplanner.team/stops/X771anb"], ["https://tec.openplanner.team/stops/LAyegli2", "https://tec.openplanner.team/stops/LSOgott2"], ["https://tec.openplanner.team/stops/H1do130b", "https://tec.openplanner.team/stops/H1ho133a"], ["https://tec.openplanner.team/stops/Bcbqrog1", "https://tec.openplanner.team/stops/Bitrnus1"], ["https://tec.openplanner.team/stops/LMNeg--2", "https://tec.openplanner.team/stops/LMNpann2"], ["https://tec.openplanner.team/stops/LbUmors2", "https://tec.openplanner.team/stops/LbUwhon1"], ["https://tec.openplanner.team/stops/N338aga", "https://tec.openplanner.team/stops/N338agb"], ["https://tec.openplanner.team/stops/LAIchpl1", "https://tec.openplanner.team/stops/LAIchpl2"], ["https://tec.openplanner.team/stops/LBevill1", "https://tec.openplanner.team/stops/LBevill2"], ["https://tec.openplanner.team/stops/LAYcher2", "https://tec.openplanner.team/stops/LFLcher2"], ["https://tec.openplanner.team/stops/H1be100a", "https://tec.openplanner.team/stops/H1so131f"], ["https://tec.openplanner.team/stops/X777aca", "https://tec.openplanner.team/stops/X784aab"], ["https://tec.openplanner.team/stops/LLUcdoy2", "https://tec.openplanner.team/stops/LLUlieg2"], ["https://tec.openplanner.team/stops/LeUnisp1", "https://tec.openplanner.team/stops/LkTsch%C3%B61"], ["https://tec.openplanner.team/stops/H1bl102a", "https://tec.openplanner.team/stops/H1bl104c"], ["https://tec.openplanner.team/stops/Berneco2", "https://tec.openplanner.team/stops/Bgemfbo2"], ["https://tec.openplanner.team/stops/LHDmc--2", "https://tec.openplanner.team/stops/LMOlens1"], ["https://tec.openplanner.team/stops/N135aaa", "https://tec.openplanner.team/stops/N135aec"], ["https://tec.openplanner.team/stops/LBvnico1", "https://tec.openplanner.team/stops/LSChane2"], ["https://tec.openplanner.team/stops/H1ni315a", "https://tec.openplanner.team/stops/H1ni315b"], ["https://tec.openplanner.team/stops/LHDpota1", "https://tec.openplanner.team/stops/LHDpota3"], ["https://tec.openplanner.team/stops/X614adb", "https://tec.openplanner.team/stops/X614aeb"], ["https://tec.openplanner.team/stops/LmUzent2", "https://tec.openplanner.team/stops/LrOkirc2"], ["https://tec.openplanner.team/stops/LPLline1", "https://tec.openplanner.team/stops/LPLline2"], ["https://tec.openplanner.team/stops/Lgrbonn6", "https://tec.openplanner.team/stops/Llgdelb1"], ["https://tec.openplanner.team/stops/Bcsemar1", "https://tec.openplanner.team/stops/Bcsemar2"], ["https://tec.openplanner.team/stops/Bgnvgar1", "https://tec.openplanner.team/stops/Blhugar1"], ["https://tec.openplanner.team/stops/X604ajb", "https://tec.openplanner.team/stops/X604ala"], ["https://tec.openplanner.team/stops/N534bga", "https://tec.openplanner.team/stops/N561aca"], ["https://tec.openplanner.team/stops/Creoudo1", "https://tec.openplanner.team/stops/Creoudo2"], ["https://tec.openplanner.team/stops/Bnstpla2", "https://tec.openplanner.team/stops/H2na133a"], ["https://tec.openplanner.team/stops/Bclgpch2", "https://tec.openplanner.team/stops/Bllnrge2"], ["https://tec.openplanner.team/stops/LXoharz5", "https://tec.openplanner.team/stops/X599agb"], ["https://tec.openplanner.team/stops/H5bl116b", "https://tec.openplanner.team/stops/H5bs103b"], ["https://tec.openplanner.team/stops/LORvill2", "https://tec.openplanner.team/stops/LORvill3"], ["https://tec.openplanner.team/stops/LNHbarr2", "https://tec.openplanner.team/stops/LSecomm2"], ["https://tec.openplanner.team/stops/H2bh111a", "https://tec.openplanner.team/stops/H2mg135b"], ["https://tec.openplanner.team/stops/Lhrcite1", "https://tec.openplanner.team/stops/Lwaeau-2"], ["https://tec.openplanner.team/stops/H4eq123a", "https://tec.openplanner.team/stops/H4rc231a"], ["https://tec.openplanner.team/stops/Bovetsa1", "https://tec.openplanner.team/stops/Brsregl2"], ["https://tec.openplanner.team/stops/LLirout2", "https://tec.openplanner.team/stops/LPUchpl2"], ["https://tec.openplanner.team/stops/LVeeg--2", "https://tec.openplanner.team/stops/LVevill2"], ["https://tec.openplanner.team/stops/Cmacoll1", "https://tec.openplanner.team/stops/Cmacoll2"], ["https://tec.openplanner.team/stops/H4my121b", "https://tec.openplanner.team/stops/H4vz369b"], ["https://tec.openplanner.team/stops/Ljubeyn1", "https://tec.openplanner.team/stops/Ljubods2"], ["https://tec.openplanner.team/stops/X636akb", "https://tec.openplanner.team/stops/X636bbb"], ["https://tec.openplanner.team/stops/X949akb", "https://tec.openplanner.team/stops/X949amb"], ["https://tec.openplanner.team/stops/X721ara", "https://tec.openplanner.team/stops/X721arb"], ["https://tec.openplanner.team/stops/LXHadam2", "https://tec.openplanner.team/stops/LXHbell1"], ["https://tec.openplanner.team/stops/N501cpb", "https://tec.openplanner.team/stops/N501kka"], ["https://tec.openplanner.team/stops/LTrgibe1", "https://tec.openplanner.team/stops/LTrmaro1"], ["https://tec.openplanner.team/stops/H4bd111a", "https://tec.openplanner.team/stops/H4bd112b"], ["https://tec.openplanner.team/stops/H1mj123a", "https://tec.openplanner.team/stops/H1mj130a"], ["https://tec.openplanner.team/stops/LVNleco1", "https://tec.openplanner.team/stops/LVNwanz1"], ["https://tec.openplanner.team/stops/H4bl104a", "https://tec.openplanner.team/stops/H4me211c"], ["https://tec.openplanner.team/stops/X756aec", "https://tec.openplanner.team/stops/X779ahb"], ["https://tec.openplanner.team/stops/X713aib", "https://tec.openplanner.team/stops/X713amb"], ["https://tec.openplanner.team/stops/N894aea", "https://tec.openplanner.team/stops/N894age"], ["https://tec.openplanner.team/stops/Btlgast1", "https://tec.openplanner.team/stops/Btlgfto1"], ["https://tec.openplanner.team/stops/N501adb", "https://tec.openplanner.team/stops/N501ahb"], ["https://tec.openplanner.team/stops/X901baa", "https://tec.openplanner.team/stops/X943acb"], ["https://tec.openplanner.team/stops/LBalacr1", "https://tec.openplanner.team/stops/LBamate2"], ["https://tec.openplanner.team/stops/X768aeb", "https://tec.openplanner.team/stops/X768aed"], ["https://tec.openplanner.team/stops/LAWlonc2", "https://tec.openplanner.team/stops/LBIpost1"], ["https://tec.openplanner.team/stops/X840aca", "https://tec.openplanner.team/stops/X840acd"], ["https://tec.openplanner.team/stops/N232bja", "https://tec.openplanner.team/stops/N232bjb"], ["https://tec.openplanner.team/stops/Bwavdel2", "https://tec.openplanner.team/stops/Bwavfbe2"], ["https://tec.openplanner.team/stops/Lscstan1", "https://tec.openplanner.team/stops/Lscstan2"], ["https://tec.openplanner.team/stops/N337aha", "https://tec.openplanner.team/stops/N337ahb"], ["https://tec.openplanner.team/stops/H4ga148d", "https://tec.openplanner.team/stops/H4ga149a"], ["https://tec.openplanner.team/stops/NL74agb", "https://tec.openplanner.team/stops/NL75aba"], ["https://tec.openplanner.team/stops/Lenauln1", "https://tec.openplanner.team/stops/Lendonh1"], ["https://tec.openplanner.team/stops/N551agb", "https://tec.openplanner.team/stops/N551aib"], ["https://tec.openplanner.team/stops/Bgnvgir2", "https://tec.openplanner.team/stops/Blhunys2"], ["https://tec.openplanner.team/stops/Lagindu2", "https://tec.openplanner.team/stops/Lkithie2"], ["https://tec.openplanner.team/stops/Bdvminc1", "https://tec.openplanner.team/stops/Bgisber1"], ["https://tec.openplanner.team/stops/LwYkreu2", "https://tec.openplanner.team/stops/LwYkreu4"], ["https://tec.openplanner.team/stops/H1me115a", "https://tec.openplanner.team/stops/H1mm127a"], ["https://tec.openplanner.team/stops/LrApark2", "https://tec.openplanner.team/stops/LrAplat1"], ["https://tec.openplanner.team/stops/Lghflot3", "https://tec.openplanner.team/stops/Lghfore3"], ["https://tec.openplanner.team/stops/Canrtth3", "https://tec.openplanner.team/stops/Cfosurs1"], ["https://tec.openplanner.team/stops/LaMjous1", "https://tec.openplanner.team/stops/LaMjous2"], ["https://tec.openplanner.team/stops/Cfrmonu2", "https://tec.openplanner.team/stops/Cfrmonu5"], ["https://tec.openplanner.team/stops/Bitrpri1", "https://tec.openplanner.team/stops/Bitrpri2"], ["https://tec.openplanner.team/stops/LAmeclu1", "https://tec.openplanner.team/stops/LAmvent1"], ["https://tec.openplanner.team/stops/H4ru244a", "https://tec.openplanner.team/stops/H4ru244b"], ["https://tec.openplanner.team/stops/Lcebois2", "https://tec.openplanner.team/stops/Lceconf2"], ["https://tec.openplanner.team/stops/Cgpmoul2", "https://tec.openplanner.team/stops/Cpcgout1"], ["https://tec.openplanner.team/stops/N501gia", "https://tec.openplanner.team/stops/N501neb"], ["https://tec.openplanner.team/stops/Lvtathe1", "https://tec.openplanner.team/stops/Lvtvici1"], ["https://tec.openplanner.team/stops/X730aga", "https://tec.openplanner.team/stops/X730agb"], ["https://tec.openplanner.team/stops/H1mx123a", "https://tec.openplanner.team/stops/H1mx123b"], ["https://tec.openplanner.team/stops/LaSkape1", "https://tec.openplanner.team/stops/LaSkape2"], ["https://tec.openplanner.team/stops/X738aaa", "https://tec.openplanner.team/stops/X754atb"], ["https://tec.openplanner.team/stops/Bwatgla1", "https://tec.openplanner.team/stops/Bwatsuc1"], ["https://tec.openplanner.team/stops/Bmalwop1", "https://tec.openplanner.team/stops/Bopprju2"], ["https://tec.openplanner.team/stops/Cchicet1", "https://tec.openplanner.team/stops/Clomart1"], ["https://tec.openplanner.team/stops/LHSheur1", "https://tec.openplanner.team/stops/LHStrez1"], ["https://tec.openplanner.team/stops/N506bda", "https://tec.openplanner.team/stops/N506bdb"], ["https://tec.openplanner.team/stops/H4ef110a", "https://tec.openplanner.team/stops/H4ef110b"], ["https://tec.openplanner.team/stops/X836aba", "https://tec.openplanner.team/stops/X837agb"], ["https://tec.openplanner.team/stops/H1mr122a", "https://tec.openplanner.team/stops/H1wi157b"], ["https://tec.openplanner.team/stops/H4bl104b", "https://tec.openplanner.team/stops/H4bl105b"], ["https://tec.openplanner.team/stops/LLrisa-*", "https://tec.openplanner.team/stops/LNOning2"], ["https://tec.openplanner.team/stops/Llgbaro1", "https://tec.openplanner.team/stops/Llghesb1"], ["https://tec.openplanner.team/stops/Bmrsayw1", "https://tec.openplanner.team/stops/Bmrsayw2"], ["https://tec.openplanner.team/stops/Lglcoun2", "https://tec.openplanner.team/stops/Llgavoc2"], ["https://tec.openplanner.team/stops/Lgrclin3", "https://tec.openplanner.team/stops/Lgrclin4"], ["https://tec.openplanner.team/stops/Loubiez3", "https://tec.openplanner.team/stops/Loubour2"], ["https://tec.openplanner.team/stops/Chhdubr1", "https://tec.openplanner.team/stops/Chhegli4"], ["https://tec.openplanner.team/stops/LFAplan1", "https://tec.openplanner.team/stops/LFAplan2"], ["https://tec.openplanner.team/stops/Bsdavpe1", "https://tec.openplanner.team/stops/Csdbosq2"], ["https://tec.openplanner.team/stops/N121aab", "https://tec.openplanner.team/stops/N122adb"], ["https://tec.openplanner.team/stops/LFalieg1", "https://tec.openplanner.team/stops/LFalieg2"], ["https://tec.openplanner.team/stops/LSPther1", "https://tec.openplanner.team/stops/LSPther2"], ["https://tec.openplanner.team/stops/Lcchala2", "https://tec.openplanner.team/stops/Lfhhoul2"], ["https://tec.openplanner.team/stops/LBrec--1", "https://tec.openplanner.team/stops/LBrec--2"], ["https://tec.openplanner.team/stops/Bwatric1", "https://tec.openplanner.team/stops/Bwatzod1"], ["https://tec.openplanner.team/stops/X659axa", "https://tec.openplanner.team/stops/X672aja"], ["https://tec.openplanner.team/stops/N120aja", "https://tec.openplanner.team/stops/N158aba"], ["https://tec.openplanner.team/stops/LBgbaga2", "https://tec.openplanner.team/stops/LBgnach2"], ["https://tec.openplanner.team/stops/Bbgeegl2", "https://tec.openplanner.team/stops/Bbgewal2"], ["https://tec.openplanner.team/stops/H2hl113a", "https://tec.openplanner.team/stops/H2pe156b"], ["https://tec.openplanner.team/stops/X994aga", "https://tec.openplanner.team/stops/X995aga"], ["https://tec.openplanner.team/stops/H4bo121a", "https://tec.openplanner.team/stops/H4ea132a"], ["https://tec.openplanner.team/stops/H4ff117a", "https://tec.openplanner.team/stops/H4ff121a"], ["https://tec.openplanner.team/stops/H1au102b", "https://tec.openplanner.team/stops/H1mr123b"], ["https://tec.openplanner.team/stops/Cgzmarb2", "https://tec.openplanner.team/stops/Cgzvivi2"], ["https://tec.openplanner.team/stops/LaLkabi1", "https://tec.openplanner.team/stops/LmAaldr1"], ["https://tec.openplanner.team/stops/X808ajb", "https://tec.openplanner.team/stops/X850adb"], ["https://tec.openplanner.team/stops/Bgnvpap2", "https://tec.openplanner.team/stops/Bgnvpos1"], ["https://tec.openplanner.team/stops/LSznoel2", "https://tec.openplanner.team/stops/N506bua"], ["https://tec.openplanner.team/stops/X921aka", "https://tec.openplanner.team/stops/X921arb"], ["https://tec.openplanner.team/stops/LHXmonu1", "https://tec.openplanner.team/stops/LSMchat1"], ["https://tec.openplanner.team/stops/Bmsgeco2", "https://tec.openplanner.team/stops/Bmsgmon1"], ["https://tec.openplanner.team/stops/N201amb", "https://tec.openplanner.team/stops/N211ana"], ["https://tec.openplanner.team/stops/LmUkape1", "https://tec.openplanner.team/stops/LmUvilz1"], ["https://tec.openplanner.team/stops/N531aqa", "https://tec.openplanner.team/stops/N531asa"], ["https://tec.openplanner.team/stops/N254aab", "https://tec.openplanner.team/stops/N570aba"], ["https://tec.openplanner.team/stops/LGeschr1", "https://tec.openplanner.team/stops/LGeschr2"], ["https://tec.openplanner.team/stops/Louaout1", "https://tec.openplanner.team/stops/Loujouh2"], ["https://tec.openplanner.team/stops/N302aba", "https://tec.openplanner.team/stops/N302abb"], ["https://tec.openplanner.team/stops/Lveinva2", "https://tec.openplanner.team/stops/Lvereno1"], ["https://tec.openplanner.team/stops/Cgobl%C3%A9r1", "https://tec.openplanner.team/stops/Cgoulb1"], ["https://tec.openplanner.team/stops/X742aca", "https://tec.openplanner.team/stops/X742ada"], ["https://tec.openplanner.team/stops/H1po137b", "https://tec.openplanner.team/stops/H1po138b"], ["https://tec.openplanner.team/stops/LOVhetr2", "https://tec.openplanner.team/stops/LSomonu2"], ["https://tec.openplanner.team/stops/X901aka", "https://tec.openplanner.team/stops/X901aob"], ["https://tec.openplanner.team/stops/X615arb", "https://tec.openplanner.team/stops/X626ala"], ["https://tec.openplanner.team/stops/Lhrlaix2", "https://tec.openplanner.team/stops/Lhrsimo1"], ["https://tec.openplanner.team/stops/X756acb", "https://tec.openplanner.team/stops/X756aib"], ["https://tec.openplanner.team/stops/H1ms261a", "https://tec.openplanner.team/stops/H1ms261b"], ["https://tec.openplanner.team/stops/LFOchab1", "https://tec.openplanner.team/stops/LFOchpl1"], ["https://tec.openplanner.team/stops/X812ana", "https://tec.openplanner.team/stops/X812aqa"], ["https://tec.openplanner.team/stops/X739ada", "https://tec.openplanner.team/stops/X739aeb"], ["https://tec.openplanner.team/stops/LLC170-1", "https://tec.openplanner.team/stops/LLC170-2"], ["https://tec.openplanner.team/stops/LTrmort2", "https://tec.openplanner.team/stops/LTrrich2"], ["https://tec.openplanner.team/stops/N390ama", "https://tec.openplanner.team/stops/N390amb"], ["https://tec.openplanner.team/stops/Bbrlpar2", "https://tec.openplanner.team/stops/Bhaless1"], ["https://tec.openplanner.team/stops/Btubeur1", "https://tec.openplanner.team/stops/Btubmar1"], ["https://tec.openplanner.team/stops/H1ci102b", "https://tec.openplanner.team/stops/H1mv242b"], ["https://tec.openplanner.team/stops/N385aaa", "https://tec.openplanner.team/stops/N385aec"], ["https://tec.openplanner.team/stops/Blhugar2", "https://tec.openplanner.team/stops/Blhupcl2"], ["https://tec.openplanner.team/stops/Btubnav1", "https://tec.openplanner.team/stops/Btubsam1"], ["https://tec.openplanner.team/stops/H2ha127b", "https://tec.openplanner.team/stops/H2ha143b"], ["https://tec.openplanner.team/stops/LOucarr2", "https://tec.openplanner.team/stops/LWZponb2"], ["https://tec.openplanner.team/stops/H2lc171b", "https://tec.openplanner.team/stops/H2ll200b"], ["https://tec.openplanner.team/stops/N524aja", "https://tec.openplanner.team/stops/N524alb"], ["https://tec.openplanner.team/stops/LeUauto1", "https://tec.openplanner.team/stops/LeUdepo1"], ["https://tec.openplanner.team/stops/LDmhave1", "https://tec.openplanner.team/stops/LVEmoul1"], ["https://tec.openplanner.team/stops/LDObell2", "https://tec.openplanner.team/stops/LDOprev1"], ["https://tec.openplanner.team/stops/H2ch102b", "https://tec.openplanner.team/stops/H2ch112a"], ["https://tec.openplanner.team/stops/Ccigill1", "https://tec.openplanner.team/stops/NC02avb"], ["https://tec.openplanner.team/stops/Ldihvce2", "https://tec.openplanner.team/stops/Ldijean2"], ["https://tec.openplanner.team/stops/LkEkric1", "https://tec.openplanner.team/stops/LMspont1"], ["https://tec.openplanner.team/stops/N532aba", "https://tec.openplanner.team/stops/N532abb"], ["https://tec.openplanner.team/stops/Cmechnd1", "https://tec.openplanner.team/stops/Cmechnd2"], ["https://tec.openplanner.team/stops/X769anb", "https://tec.openplanner.team/stops/X769aob"], ["https://tec.openplanner.team/stops/X663aub", "https://tec.openplanner.team/stops/X667aaa"], ["https://tec.openplanner.team/stops/X949aea", "https://tec.openplanner.team/stops/X949ala"], ["https://tec.openplanner.team/stops/H5at104a", "https://tec.openplanner.team/stops/H5at119a"], ["https://tec.openplanner.team/stops/N211ahb", "https://tec.openplanner.team/stops/N211ala"], ["https://tec.openplanner.team/stops/N501jga", "https://tec.openplanner.team/stops/N521aea"], ["https://tec.openplanner.team/stops/N501dwb", "https://tec.openplanner.team/stops/N501kmz"], ["https://tec.openplanner.team/stops/LLefali1", "https://tec.openplanner.team/stops/X547asa"], ["https://tec.openplanner.team/stops/Btstbbu1", "https://tec.openplanner.team/stops/Bwlhswc2"], ["https://tec.openplanner.team/stops/H1og130b", "https://tec.openplanner.team/stops/H5wo122b"], ["https://tec.openplanner.team/stops/X342afa", "https://tec.openplanner.team/stops/X342afb"], ["https://tec.openplanner.team/stops/H1bo150a", "https://tec.openplanner.team/stops/H1bo150b"], ["https://tec.openplanner.team/stops/X870aba", "https://tec.openplanner.team/stops/X870aia"], ["https://tec.openplanner.team/stops/Lvehodi4", "https://tec.openplanner.team/stops/Lveptle4"], ["https://tec.openplanner.team/stops/Lannico2", "https://tec.openplanner.team/stops/Lanpisc2"], ["https://tec.openplanner.team/stops/N531aab", "https://tec.openplanner.team/stops/N532ama"], ["https://tec.openplanner.team/stops/X615aya", "https://tec.openplanner.team/stops/X615aza"], ["https://tec.openplanner.team/stops/Lflweri1", "https://tec.openplanner.team/stops/Lrecroi2"], ["https://tec.openplanner.team/stops/X719abb", "https://tec.openplanner.team/stops/X733acb"], ["https://tec.openplanner.team/stops/H1fv103a", "https://tec.openplanner.team/stops/H1mc128a"], ["https://tec.openplanner.team/stops/LWscona2", "https://tec.openplanner.team/stops/LWSstat1"], ["https://tec.openplanner.team/stops/N230aca", "https://tec.openplanner.team/stops/N230ahb"], ["https://tec.openplanner.team/stops/Lbrchur2", "https://tec.openplanner.team/stops/Lbrmc--2"], ["https://tec.openplanner.team/stops/Bclgbvi1", "https://tec.openplanner.team/stops/Bclgpla2"], ["https://tec.openplanner.team/stops/Bhalath1", "https://tec.openplanner.team/stops/Bhalkrk1"], ["https://tec.openplanner.team/stops/LSZlegr2", "https://tec.openplanner.team/stops/LSZroqu2"], ["https://tec.openplanner.team/stops/X872aga", "https://tec.openplanner.team/stops/X872agb"], ["https://tec.openplanner.team/stops/Bolgrsa2", "https://tec.openplanner.team/stops/Bolgsha1"], ["https://tec.openplanner.team/stops/X902bba", "https://tec.openplanner.team/stops/X902bbb"], ["https://tec.openplanner.team/stops/H4eh102b", "https://tec.openplanner.team/stops/H4he101b"], ["https://tec.openplanner.team/stops/N131afa", "https://tec.openplanner.team/stops/N131agb"], ["https://tec.openplanner.team/stops/H3th126b", "https://tec.openplanner.team/stops/H3th127a"], ["https://tec.openplanner.team/stops/H1mq198a", "https://tec.openplanner.team/stops/H5is170b"], ["https://tec.openplanner.team/stops/Csychap3", "https://tec.openplanner.team/stops/Csychap4"], ["https://tec.openplanner.team/stops/LTHjevo1", "https://tec.openplanner.team/stops/LTHjevo2"], ["https://tec.openplanner.team/stops/X902baa", "https://tec.openplanner.team/stops/X902bab"], ["https://tec.openplanner.team/stops/N122afb", "https://tec.openplanner.team/stops/N122aga"], ["https://tec.openplanner.team/stops/LOLfoss1", "https://tec.openplanner.team/stops/LSOdow%C3%A91"], ["https://tec.openplanner.team/stops/LAWroug1", "https://tec.openplanner.team/stops/Llocime2"], ["https://tec.openplanner.team/stops/Bcbqegl1", "https://tec.openplanner.team/stops/Btubcal1"], ["https://tec.openplanner.team/stops/Csbplac1", "https://tec.openplanner.team/stops/H1sa115a"], ["https://tec.openplanner.team/stops/H5bl117a", "https://tec.openplanner.team/stops/H5qu143b"], ["https://tec.openplanner.team/stops/X739aba", "https://tec.openplanner.team/stops/X739abb"], ["https://tec.openplanner.team/stops/LOReg--2", "https://tec.openplanner.team/stops/LORruis1"], ["https://tec.openplanner.team/stops/Ctipoui1", "https://tec.openplanner.team/stops/Ctipoui2"], ["https://tec.openplanner.team/stops/N204ada", "https://tec.openplanner.team/stops/N204adb"], ["https://tec.openplanner.team/stops/X992aca", "https://tec.openplanner.team/stops/X993aga"], ["https://tec.openplanner.team/stops/H1qu116a", "https://tec.openplanner.team/stops/H1qu116c"], ["https://tec.openplanner.team/stops/Loucoti1", "https://tec.openplanner.team/stops/Loudemo2"], ["https://tec.openplanner.team/stops/X757aca", "https://tec.openplanner.team/stops/X757adb"], ["https://tec.openplanner.team/stops/Bsjgegl2", "https://tec.openplanner.team/stops/Bzluegl2"], ["https://tec.openplanner.team/stops/X801baa", "https://tec.openplanner.team/stops/X801cja"], ["https://tec.openplanner.team/stops/Cjxegli1", "https://tec.openplanner.team/stops/Cjxplac1"], ["https://tec.openplanner.team/stops/LGLspor1", "https://tec.openplanner.team/stops/LGLspor2"], ["https://tec.openplanner.team/stops/Bplnfpa1", "https://tec.openplanner.team/stops/Bplnfpa2"], ["https://tec.openplanner.team/stops/Lghencl1", "https://tec.openplanner.team/stops/Lghfore3"], ["https://tec.openplanner.team/stops/X946aib", "https://tec.openplanner.team/stops/X948acb"], ["https://tec.openplanner.team/stops/H1bg110a", "https://tec.openplanner.team/stops/H1mx122b"], ["https://tec.openplanner.team/stops/LaMhe421", "https://tec.openplanner.team/stops/LaMwies2"], ["https://tec.openplanner.team/stops/X657agb", "https://tec.openplanner.team/stops/X657ahb"], ["https://tec.openplanner.team/stops/H1pa103b", "https://tec.openplanner.team/stops/H1wa163a"], ["https://tec.openplanner.team/stops/H4fo115a", "https://tec.openplanner.team/stops/H4fo116b"], ["https://tec.openplanner.team/stops/Lseptsa1", "https://tec.openplanner.team/stops/Lseptsa2"], ["https://tec.openplanner.team/stops/H1cu113a", "https://tec.openplanner.team/stops/H1hn202a"], ["https://tec.openplanner.team/stops/H4mo146b", "https://tec.openplanner.team/stops/H4mo182a"], ["https://tec.openplanner.team/stops/Brsgece1", "https://tec.openplanner.team/stops/Brsgfso1"], ["https://tec.openplanner.team/stops/Blempuc1", "https://tec.openplanner.team/stops/Btubmar2"], ["https://tec.openplanner.team/stops/H2ha129b", "https://tec.openplanner.team/stops/H2ha136c"], ["https://tec.openplanner.team/stops/LSTgran1", "https://tec.openplanner.team/stops/LSTparf1"], ["https://tec.openplanner.team/stops/N201aaa", "https://tec.openplanner.team/stops/N201aca"], ["https://tec.openplanner.team/stops/H4ma419b", "https://tec.openplanner.team/stops/H4ma420a"], ["https://tec.openplanner.team/stops/Bgdhbvu2", "https://tec.openplanner.team/stops/Bhantui1"], ["https://tec.openplanner.team/stops/H2pe161b", "https://tec.openplanner.team/stops/H2pe162b"], ["https://tec.openplanner.team/stops/X742aea", "https://tec.openplanner.team/stops/X743aab"], ["https://tec.openplanner.team/stops/Ccisolv1", "https://tec.openplanner.team/stops/Ccisolv2"], ["https://tec.openplanner.team/stops/LVleg--1", "https://tec.openplanner.team/stops/LVltige1"], ["https://tec.openplanner.team/stops/Cdacolu1", "https://tec.openplanner.team/stops/Cdapige1"], ["https://tec.openplanner.team/stops/Lprcard1", "https://tec.openplanner.team/stops/Lprmoin1"], ["https://tec.openplanner.team/stops/Cronova1", "https://tec.openplanner.team/stops/Cronova2"], ["https://tec.openplanner.team/stops/N524afa", "https://tec.openplanner.team/stops/N524afb"], ["https://tec.openplanner.team/stops/LCEinst2", "https://tec.openplanner.team/stops/LCEplac2"], ["https://tec.openplanner.team/stops/LMschap1", "https://tec.openplanner.team/stops/LMschap2"], ["https://tec.openplanner.team/stops/N160adb", "https://tec.openplanner.team/stops/N160aga"], ["https://tec.openplanner.team/stops/Barcast1", "https://tec.openplanner.team/stops/Barcbav1"], ["https://tec.openplanner.team/stops/N557aia", "https://tec.openplanner.team/stops/N557aib"], ["https://tec.openplanner.team/stops/Ladandr2", "https://tec.openplanner.team/stops/Ldidefo1"], ["https://tec.openplanner.team/stops/Bboseco2", "https://tec.openplanner.team/stops/Bgoekaz2"], ["https://tec.openplanner.team/stops/Llgbaro4", "https://tec.openplanner.team/stops/Llgjose1"], ["https://tec.openplanner.team/stops/LBscime1", "https://tec.openplanner.team/stops/NL73aea"], ["https://tec.openplanner.team/stops/Bhmmcge1", "https://tec.openplanner.team/stops/Bhmmlad1"], ["https://tec.openplanner.team/stops/N155aia", "https://tec.openplanner.team/stops/N155ajb"], ["https://tec.openplanner.team/stops/H1bn114a", "https://tec.openplanner.team/stops/H1bn148a"], ["https://tec.openplanner.team/stops/X903afa", "https://tec.openplanner.team/stops/X943agb"], ["https://tec.openplanner.team/stops/N202aaa", "https://tec.openplanner.team/stops/N202aga"], ["https://tec.openplanner.team/stops/LLteg--2", "https://tec.openplanner.team/stops/LLtwanz2"], ["https://tec.openplanner.team/stops/H4ln128a", "https://tec.openplanner.team/stops/H4ne141a"], ["https://tec.openplanner.team/stops/LFmgeno2", "https://tec.openplanner.team/stops/LFmroye2"], ["https://tec.openplanner.team/stops/Ccohotv1", "https://tec.openplanner.team/stops/Ccohuli1"], ["https://tec.openplanner.team/stops/H4fr144a", "https://tec.openplanner.team/stops/H4fr393a"], ["https://tec.openplanner.team/stops/Cbfchla2", "https://tec.openplanner.team/stops/NC11aka"], ["https://tec.openplanner.team/stops/N536adb", "https://tec.openplanner.team/stops/N536aeb"], ["https://tec.openplanner.team/stops/Lghsimo2", "https://tec.openplanner.team/stops/Lghsimo3"], ["https://tec.openplanner.team/stops/H1at110b", "https://tec.openplanner.team/stops/H1fy142a"], ["https://tec.openplanner.team/stops/X806aga", "https://tec.openplanner.team/stops/X806agb"], ["https://tec.openplanner.team/stops/LSTrema1", "https://tec.openplanner.team/stops/LSTrema2"], ["https://tec.openplanner.team/stops/Lanplat2", "https://tec.openplanner.team/stops/Lanyser2"], ["https://tec.openplanner.team/stops/LBTchai4", "https://tec.openplanner.team/stops/LBThaut2"], ["https://tec.openplanner.team/stops/Lkiblan1", "https://tec.openplanner.team/stops/Lkiblan2"], ["https://tec.openplanner.team/stops/LHUsart1", "https://tec.openplanner.team/stops/NL76bcb"], ["https://tec.openplanner.team/stops/LVLcent1", "https://tec.openplanner.team/stops/LVLeg--1"], ["https://tec.openplanner.team/stops/LDLboul1", "https://tec.openplanner.team/stops/LDLheid2"], ["https://tec.openplanner.team/stops/Bniv4co1", "https://tec.openplanner.team/stops/Bnivga11"], ["https://tec.openplanner.team/stops/N232bza", "https://tec.openplanner.team/stops/N232cdb"], ["https://tec.openplanner.team/stops/H2sb232b", "https://tec.openplanner.team/stops/H3th134b"], ["https://tec.openplanner.team/stops/LAMvert1", "https://tec.openplanner.team/stops/LOmvill1"], ["https://tec.openplanner.team/stops/H1ho129a", "https://tec.openplanner.team/stops/H1te174a"], ["https://tec.openplanner.team/stops/Bhticbr2", "https://tec.openplanner.team/stops/Bhtirin2"], ["https://tec.openplanner.team/stops/Brebchb1", "https://tec.openplanner.team/stops/Brebpca1"], ["https://tec.openplanner.team/stops/LJeeg--1", "https://tec.openplanner.team/stops/LJelava1"], ["https://tec.openplanner.team/stops/N501eda", "https://tec.openplanner.team/stops/N501gkb"], ["https://tec.openplanner.team/stops/H4bh104b", "https://tec.openplanner.team/stops/H4jm117a"], ["https://tec.openplanner.team/stops/H1te177a", "https://tec.openplanner.team/stops/H1te190a"], ["https://tec.openplanner.team/stops/Lflhott2", "https://tec.openplanner.team/stops/Lflrhot2"], ["https://tec.openplanner.team/stops/Blimd672", "https://tec.openplanner.team/stops/Blimsob2"], ["https://tec.openplanner.team/stops/H1bl105b", "https://tec.openplanner.team/stops/H1eq116a"], ["https://tec.openplanner.team/stops/N360adb", "https://tec.openplanner.team/stops/N360adc"], ["https://tec.openplanner.team/stops/H1bo100a", "https://tec.openplanner.team/stops/H1bo112b"], ["https://tec.openplanner.team/stops/X364aca", "https://tec.openplanner.team/stops/X364acb"], ["https://tec.openplanner.team/stops/LLVboss1", "https://tec.openplanner.team/stops/X575abb"], ["https://tec.openplanner.team/stops/Cgopier2", "https://tec.openplanner.team/stops/CMfbru2"], ["https://tec.openplanner.team/stops/Bchgegl2", "https://tec.openplanner.team/stops/Bchgvil1"], ["https://tec.openplanner.team/stops/Bwatchb1", "https://tec.openplanner.team/stops/Bwateco1"], ["https://tec.openplanner.team/stops/N101aka", "https://tec.openplanner.team/stops/N101alb"], ["https://tec.openplanner.team/stops/X609aca", "https://tec.openplanner.team/stops/X609aea"], ["https://tec.openplanner.team/stops/Bquebth1", "https://tec.openplanner.team/stops/Brebeau1"], ["https://tec.openplanner.team/stops/N103acc", "https://tec.openplanner.team/stops/N103afb"], ["https://tec.openplanner.team/stops/Ljeheur1", "https://tec.openplanner.team/stops/Ljemake1"], ["https://tec.openplanner.team/stops/H2pe159a", "https://tec.openplanner.team/stops/H2re166a"], ["https://tec.openplanner.team/stops/LHCbois6", "https://tec.openplanner.team/stops/LHCprog2"], ["https://tec.openplanner.team/stops/H5pe151a", "https://tec.openplanner.team/stops/H5pe151b"], ["https://tec.openplanner.team/stops/H1ch132a", "https://tec.openplanner.team/stops/H5at109a"], ["https://tec.openplanner.team/stops/H1gc124a", "https://tec.openplanner.team/stops/H1gc124b"], ["https://tec.openplanner.team/stops/Bbxlmid1", "https://tec.openplanner.team/stops/Bucccal3"], ["https://tec.openplanner.team/stops/LBlplac1", "https://tec.openplanner.team/stops/LSEec--1"], ["https://tec.openplanner.team/stops/X640aob", "https://tec.openplanner.team/stops/X640apb"], ["https://tec.openplanner.team/stops/Bchgegl1", "https://tec.openplanner.team/stops/Bchgrco2"], ["https://tec.openplanner.team/stops/LAYharz1", "https://tec.openplanner.team/stops/LAYthir1"], ["https://tec.openplanner.team/stops/Cmlchan2", "https://tec.openplanner.team/stops/Cmltomb2"], ["https://tec.openplanner.team/stops/Cwgmart1", "https://tec.openplanner.team/stops/Cwgmell1"], ["https://tec.openplanner.team/stops/H1gr120b", "https://tec.openplanner.team/stops/H1gr123b"], ["https://tec.openplanner.team/stops/X642aab", "https://tec.openplanner.team/stops/X643aba"], ["https://tec.openplanner.team/stops/Lprceri2", "https://tec.openplanner.team/stops/Lprchat2"], ["https://tec.openplanner.team/stops/X986aha", "https://tec.openplanner.team/stops/X986ahb"], ["https://tec.openplanner.team/stops/X639aeb", "https://tec.openplanner.team/stops/X639aua"], ["https://tec.openplanner.team/stops/Barchoc1", "https://tec.openplanner.team/stops/Barchoc2"], ["https://tec.openplanner.team/stops/N519aad", "https://tec.openplanner.team/stops/N519aca"], ["https://tec.openplanner.team/stops/LLRbleh1", "https://tec.openplanner.team/stops/LLRgdma1"], ["https://tec.openplanner.team/stops/LGlcarr1", "https://tec.openplanner.team/stops/LGlcite1"], ["https://tec.openplanner.team/stops/LAieg--3", "https://tec.openplanner.team/stops/LGlcarr2"], ["https://tec.openplanner.team/stops/H4co144a", "https://tec.openplanner.team/stops/H4co144b"], ["https://tec.openplanner.team/stops/H4ru242a", "https://tec.openplanner.team/stops/H4ru244b"], ["https://tec.openplanner.team/stops/LSeec--3", "https://tec.openplanner.team/stops/LSegott1"], ["https://tec.openplanner.team/stops/LXofont2", "https://tec.openplanner.team/stops/X599afc"], ["https://tec.openplanner.team/stops/Lfhpast1", "https://tec.openplanner.team/stops/Lfhweri1"], ["https://tec.openplanner.team/stops/X899aba", "https://tec.openplanner.team/stops/X899adb"], ["https://tec.openplanner.team/stops/X672aeb", "https://tec.openplanner.team/stops/X672apa"], ["https://tec.openplanner.team/stops/X681aca", "https://tec.openplanner.team/stops/X681aha"], ["https://tec.openplanner.team/stops/Baegpon4", "https://tec.openplanner.team/stops/Bramgar1"], ["https://tec.openplanner.team/stops/X793afd", "https://tec.openplanner.team/stops/X793aqa"], ["https://tec.openplanner.team/stops/Cauptsa2", "https://tec.openplanner.team/stops/Ctaallo1"], ["https://tec.openplanner.team/stops/H1ms276a", "https://tec.openplanner.team/stops/H1ms287a"], ["https://tec.openplanner.team/stops/Lvedepo*", "https://tec.openplanner.team/stops/Lvelieg2"], ["https://tec.openplanner.team/stops/Bcbqhai2", "https://tec.openplanner.team/stops/Bcbqrog1"], ["https://tec.openplanner.team/stops/Lhuderu1", "https://tec.openplanner.team/stops/Lhutill1"], ["https://tec.openplanner.team/stops/LDAchau1", "https://tec.openplanner.team/stops/LDAptbo1"], ["https://tec.openplanner.team/stops/Cmesafi1", "https://tec.openplanner.team/stops/Cwgmart2"], ["https://tec.openplanner.team/stops/LHTcerc4", "https://tec.openplanner.team/stops/LHTmonu1"], ["https://tec.openplanner.team/stops/H1mj129b", "https://tec.openplanner.team/stops/H1ml111a"], ["https://tec.openplanner.team/stops/Bnilwal2", "https://tec.openplanner.team/stops/Bwspjon1"], ["https://tec.openplanner.team/stops/H1ms254a", "https://tec.openplanner.team/stops/H1ms254e"], ["https://tec.openplanner.team/stops/Llgborn1", "https://tec.openplanner.team/stops/Llghenr1"], ["https://tec.openplanner.team/stops/LsVmolk1", "https://tec.openplanner.team/stops/LsVsage2"], ["https://tec.openplanner.team/stops/H1gg114a", "https://tec.openplanner.team/stops/H1gg115a"], ["https://tec.openplanner.team/stops/X634acb", "https://tec.openplanner.team/stops/X634aha"], ["https://tec.openplanner.team/stops/Ljuauto1", "https://tec.openplanner.team/stops/Ljufore1"], ["https://tec.openplanner.team/stops/Ccipano2", "https://tec.openplanner.team/stops/Ccisart2"], ["https://tec.openplanner.team/stops/Llgbene1", "https://tec.openplanner.team/stops/Llgphol1"], ["https://tec.openplanner.team/stops/Clggrfe1", "https://tec.openplanner.team/stops/Clggrfe2"], ["https://tec.openplanner.team/stops/LHSlava1", "https://tec.openplanner.team/stops/LHSvina2"], ["https://tec.openplanner.team/stops/Lfhcoop1", "https://tec.openplanner.team/stops/Lfhpast1"], ["https://tec.openplanner.team/stops/N222ada", "https://tec.openplanner.team/stops/X919ama"], ["https://tec.openplanner.team/stops/X879aia", "https://tec.openplanner.team/stops/X879aob"], ["https://tec.openplanner.team/stops/LLOcreu1", "https://tec.openplanner.team/stops/LLOspin1"], ["https://tec.openplanner.team/stops/LnUcamp2", "https://tec.openplanner.team/stops/LnUhohe2"], ["https://tec.openplanner.team/stops/LRmhage6", "https://tec.openplanner.team/stops/LRmhage7"], ["https://tec.openplanner.team/stops/X756ada", "https://tec.openplanner.team/stops/X756aea"], ["https://tec.openplanner.team/stops/Btancre1", "https://tec.openplanner.team/stops/Btannda2"], ["https://tec.openplanner.team/stops/X637agc", "https://tec.openplanner.team/stops/X637ajb"], ["https://tec.openplanner.team/stops/Livgera6", "https://tec.openplanner.team/stops/Livmoul2"], ["https://tec.openplanner.team/stops/LGLeg--1", "https://tec.openplanner.team/stops/LGLgeer1"], ["https://tec.openplanner.team/stops/H4ha171b", "https://tec.openplanner.team/stops/H4me213a"], ["https://tec.openplanner.team/stops/N535acd", "https://tec.openplanner.team/stops/N535afa"], ["https://tec.openplanner.team/stops/H1bo108c", "https://tec.openplanner.team/stops/H1bo108d"], ["https://tec.openplanner.team/stops/LRRchea1", "https://tec.openplanner.team/stops/LRRchea4"], ["https://tec.openplanner.team/stops/N390acb", "https://tec.openplanner.team/stops/X390akb"], ["https://tec.openplanner.team/stops/LNCsart1", "https://tec.openplanner.team/stops/LNCsart2"], ["https://tec.openplanner.team/stops/H4eh101a", "https://tec.openplanner.team/stops/H4wg121b"], ["https://tec.openplanner.team/stops/N308aaa", "https://tec.openplanner.team/stops/N308acb"], ["https://tec.openplanner.team/stops/H1bl105a", "https://tec.openplanner.team/stops/H1do126a"], ["https://tec.openplanner.team/stops/Bbcoeco1", "https://tec.openplanner.team/stops/Bbcogar2"], ["https://tec.openplanner.team/stops/H4ft134a", "https://tec.openplanner.team/stops/H4ma200a"], ["https://tec.openplanner.team/stops/Ljeblum1", "https://tec.openplanner.team/stops/Ljedepa2"], ["https://tec.openplanner.team/stops/Bbgnton1", "https://tec.openplanner.team/stops/Cvscomb1"], ["https://tec.openplanner.team/stops/N540aia", "https://tec.openplanner.team/stops/N540ala"], ["https://tec.openplanner.team/stops/N127ada", "https://tec.openplanner.team/stops/N127aia"], ["https://tec.openplanner.team/stops/LJAwerf1", "https://tec.openplanner.team/stops/LSWeg--3"], ["https://tec.openplanner.team/stops/Cpccpas2", "https://tec.openplanner.team/stops/Cpclarm2"], ["https://tec.openplanner.team/stops/X681afa", "https://tec.openplanner.team/stops/X687ajb"], ["https://tec.openplanner.team/stops/N351agb", "https://tec.openplanner.team/stops/X351aba"], ["https://tec.openplanner.team/stops/X754aca", "https://tec.openplanner.team/stops/X754arb"], ["https://tec.openplanner.team/stops/H1mh112a", "https://tec.openplanner.team/stops/H1tl121a"], ["https://tec.openplanner.team/stops/LLrc1652", "https://tec.openplanner.team/stops/LLrrmaq1"], ["https://tec.openplanner.team/stops/Ladlimi1", "https://tec.openplanner.team/stops/Lvelimi2"], ["https://tec.openplanner.team/stops/Bbstegl2", "https://tec.openplanner.team/stops/Cbtlong1"], ["https://tec.openplanner.team/stops/LBTnors2", "https://tec.openplanner.team/stops/LBTxhen4"], ["https://tec.openplanner.team/stops/Bnivall1", "https://tec.openplanner.team/stops/Bnivall2"], ["https://tec.openplanner.team/stops/N520aja", "https://tec.openplanner.team/stops/N520ajb"], ["https://tec.openplanner.team/stops/X793acb", "https://tec.openplanner.team/stops/X793ada"], ["https://tec.openplanner.team/stops/LFRgode2", "https://tec.openplanner.team/stops/LFRspa-2"], ["https://tec.openplanner.team/stops/N135afa", "https://tec.openplanner.team/stops/N135bba"], ["https://tec.openplanner.team/stops/Cgnpass1", "https://tec.openplanner.team/stops/Cgnpass2"], ["https://tec.openplanner.team/stops/LBIpost1", "https://tec.openplanner.team/stops/Lghreyn2"], ["https://tec.openplanner.team/stops/X812afb", "https://tec.openplanner.team/stops/X812aia"], ["https://tec.openplanner.team/stops/Bbeamon1", "https://tec.openplanner.team/stops/Bbeasta2"], ["https://tec.openplanner.team/stops/N506arb", "https://tec.openplanner.team/stops/N506ava"], ["https://tec.openplanner.team/stops/LrAbe602", "https://tec.openplanner.team/stops/LrAneus2"], ["https://tec.openplanner.team/stops/LHChaut5", "https://tec.openplanner.team/stops/LHCponc3"], ["https://tec.openplanner.team/stops/Bjanegl3", "https://tec.openplanner.team/stops/NR30abb"], ["https://tec.openplanner.team/stops/X354aha", "https://tec.openplanner.team/stops/X354aia"], ["https://tec.openplanner.team/stops/LBNlong1", "https://tec.openplanner.team/stops/LMemaza2"], ["https://tec.openplanner.team/stops/LSInd--2", "https://tec.openplanner.team/stops/LTEnuro1"], ["https://tec.openplanner.team/stops/Cfmchau1", "https://tec.openplanner.team/stops/Cfmpui81"], ["https://tec.openplanner.team/stops/H4bo117b", "https://tec.openplanner.team/stops/H4hu113a"], ["https://tec.openplanner.team/stops/LBachpl2", "https://tec.openplanner.team/stops/LBavive2"], ["https://tec.openplanner.team/stops/LBPmili1", "https://tec.openplanner.team/stops/LBPmili2"], ["https://tec.openplanner.team/stops/LSyec--1", "https://tec.openplanner.team/stops/LSyeg--1"], ["https://tec.openplanner.team/stops/N515ana", "https://tec.openplanner.team/stops/N516aob"], ["https://tec.openplanner.team/stops/H4li179c", "https://tec.openplanner.team/stops/H4li179d"], ["https://tec.openplanner.team/stops/X723aja", "https://tec.openplanner.team/stops/X723aka"], ["https://tec.openplanner.team/stops/X999aib", "https://tec.openplanner.team/stops/X999apb"], ["https://tec.openplanner.team/stops/N547aaa", "https://tec.openplanner.team/stops/N548aab"], ["https://tec.openplanner.team/stops/Lhr1ave2", "https://tec.openplanner.team/stops/Lhrunir2"], ["https://tec.openplanner.team/stops/X614awb", "https://tec.openplanner.team/stops/X615bha"], ["https://tec.openplanner.team/stops/H2hp124c", "https://tec.openplanner.team/stops/H2pe156b"], ["https://tec.openplanner.team/stops/LHSlava2", "https://tec.openplanner.team/stops/LRGbett3"], ["https://tec.openplanner.team/stops/Cmyedpa1", "https://tec.openplanner.team/stops/Cmyvesa1"], ["https://tec.openplanner.team/stops/X869adb", "https://tec.openplanner.team/stops/X882aga"], ["https://tec.openplanner.team/stops/Blilgar1", "https://tec.openplanner.team/stops/Blilton1"], ["https://tec.openplanner.team/stops/LVlleno2", "https://tec.openplanner.team/stops/LVlroua4"], ["https://tec.openplanner.team/stops/LHMhind1", "https://tec.openplanner.team/stops/LMNswar2"], ["https://tec.openplanner.team/stops/Lghgend1", "https://tec.openplanner.team/stops/Lghomni2"], ["https://tec.openplanner.team/stops/H1au114a", "https://tec.openplanner.team/stops/H1au114b"], ["https://tec.openplanner.team/stops/X939aab", "https://tec.openplanner.team/stops/X939aba"], ["https://tec.openplanner.team/stops/X812baa", "https://tec.openplanner.team/stops/X812bbb"], ["https://tec.openplanner.team/stops/X660agb", "https://tec.openplanner.team/stops/X660aja"], ["https://tec.openplanner.team/stops/LBscasi1", "https://tec.openplanner.team/stops/LBscasi2"], ["https://tec.openplanner.team/stops/LTOplac1", "https://tec.openplanner.team/stops/LTOplac2"], ["https://tec.openplanner.team/stops/X661aea", "https://tec.openplanner.team/stops/X661atb"], ["https://tec.openplanner.team/stops/H4do103a", "https://tec.openplanner.team/stops/H4ev119a"], ["https://tec.openplanner.team/stops/H4mo135a", "https://tec.openplanner.team/stops/H4mo149a"], ["https://tec.openplanner.team/stops/Bwatath3", "https://tec.openplanner.team/stops/Bwatdco1"], ["https://tec.openplanner.team/stops/LJAcent2", "https://tec.openplanner.team/stops/LJAherb2"], ["https://tec.openplanner.team/stops/LlOdrei2", "https://tec.openplanner.team/stops/LlOkreu2"], ["https://tec.openplanner.team/stops/X614aua", "https://tec.openplanner.team/stops/X614avb"], ["https://tec.openplanner.team/stops/Bmrlegl2", "https://tec.openplanner.team/stops/Bnodegl1"], ["https://tec.openplanner.team/stops/H1mk123a", "https://tec.openplanner.team/stops/H1mk123b"], ["https://tec.openplanner.team/stops/LMttrou2", "https://tec.openplanner.team/stops/LSdbote2"], ["https://tec.openplanner.team/stops/Cnadrev2", "https://tec.openplanner.team/stops/NC14aea"], ["https://tec.openplanner.team/stops/X721ama", "https://tec.openplanner.team/stops/X721amb"], ["https://tec.openplanner.team/stops/N229amb", "https://tec.openplanner.team/stops/N229aqb"], ["https://tec.openplanner.team/stops/LHCkoul1", "https://tec.openplanner.team/stops/LHCpaci2"], ["https://tec.openplanner.team/stops/LORcomb2", "https://tec.openplanner.team/stops/LORpave1"], ["https://tec.openplanner.team/stops/H4lz125a", "https://tec.openplanner.team/stops/H4lz128b"], ["https://tec.openplanner.team/stops/X901aja", "https://tec.openplanner.team/stops/X901aza"], ["https://tec.openplanner.team/stops/X910aba", "https://tec.openplanner.team/stops/X910adb"], ["https://tec.openplanner.team/stops/X764acb", "https://tec.openplanner.team/stops/X764aeb"], ["https://tec.openplanner.team/stops/LPclaro1", "https://tec.openplanner.team/stops/LPclaro2"], ["https://tec.openplanner.team/stops/LHFappe1", "https://tec.openplanner.team/stops/LHFappe2"], ["https://tec.openplanner.team/stops/N584ada", "https://tec.openplanner.team/stops/N584aka"], ["https://tec.openplanner.team/stops/Bwavgar1", "https://tec.openplanner.team/stops/Bwavgar7"], ["https://tec.openplanner.team/stops/H1ms305b", "https://tec.openplanner.team/stops/H1ms313a"], ["https://tec.openplanner.team/stops/X836afb", "https://tec.openplanner.team/stops/X836aha"], ["https://tec.openplanner.team/stops/Cmychpl2", "https://tec.openplanner.team/stops/Cmychpl4"], ["https://tec.openplanner.team/stops/H1hw122a", "https://tec.openplanner.team/stops/H1hw122b"], ["https://tec.openplanner.team/stops/LeUath2", "https://tec.openplanner.team/stops/LeUrsi-*"], ["https://tec.openplanner.team/stops/H2fy119b", "https://tec.openplanner.team/stops/H2fy123c"], ["https://tec.openplanner.team/stops/N518acc", "https://tec.openplanner.team/stops/N518acd"], ["https://tec.openplanner.team/stops/H1ch106a", "https://tec.openplanner.team/stops/H4tm140a"], ["https://tec.openplanner.team/stops/X783adb", "https://tec.openplanner.team/stops/X784adb"], ["https://tec.openplanner.team/stops/H2pe162c", "https://tec.openplanner.team/stops/H2pe162d"], ["https://tec.openplanner.team/stops/LhDkreu4", "https://tec.openplanner.team/stops/LhPheps1"], ["https://tec.openplanner.team/stops/Landolh2", "https://tec.openplanner.team/stops/Lannico4"], ["https://tec.openplanner.team/stops/X902awa", "https://tec.openplanner.team/stops/X902bab"], ["https://tec.openplanner.team/stops/X750bha", "https://tec.openplanner.team/stops/X750bhb"], ["https://tec.openplanner.team/stops/X623acc", "https://tec.openplanner.team/stops/X623adb"], ["https://tec.openplanner.team/stops/H1bo105b", "https://tec.openplanner.team/stops/H1bo106b"], ["https://tec.openplanner.team/stops/Clbgare1", "https://tec.openplanner.team/stops/Clbhvil2"], ["https://tec.openplanner.team/stops/NL80aba", "https://tec.openplanner.team/stops/NL80abb"], ["https://tec.openplanner.team/stops/H4hu113b", "https://tec.openplanner.team/stops/H4hu117b"], ["https://tec.openplanner.team/stops/X901ama", "https://tec.openplanner.team/stops/X999aqa"], ["https://tec.openplanner.team/stops/X614apa", "https://tec.openplanner.team/stops/X614aua"], ["https://tec.openplanner.team/stops/H1wi151b", "https://tec.openplanner.team/stops/H1wi152a"], ["https://tec.openplanner.team/stops/H2mg143b", "https://tec.openplanner.team/stops/H2mg144b"], ["https://tec.openplanner.team/stops/N562amb", "https://tec.openplanner.team/stops/N562ata"], ["https://tec.openplanner.team/stops/Blasbh51", "https://tec.openplanner.team/stops/Blasbti2"], ["https://tec.openplanner.team/stops/Bvlvbth1", "https://tec.openplanner.team/stops/Bvlvbth2"], ["https://tec.openplanner.team/stops/LhGbahn3", "https://tec.openplanner.team/stops/LhGknip2"], ["https://tec.openplanner.team/stops/Bbstrpo2", "https://tec.openplanner.team/stops/Bwaygrg2"], ["https://tec.openplanner.team/stops/Ladpara1", "https://tec.openplanner.team/stops/Lvehv--2"], ["https://tec.openplanner.team/stops/Llggosw1", "https://tec.openplanner.team/stops/Llgmare1"], ["https://tec.openplanner.team/stops/Buccvch2", "https://tec.openplanner.team/stops/Buccvoi3"], ["https://tec.openplanner.team/stops/H4ty291c", "https://tec.openplanner.team/stops/H4ty317b"], ["https://tec.openplanner.team/stops/X649aca", "https://tec.openplanner.team/stops/X649adc"], ["https://tec.openplanner.team/stops/LnE79--2", "https://tec.openplanner.team/stops/LnEkirc4"], ["https://tec.openplanner.team/stops/N155aga", "https://tec.openplanner.team/stops/N155agb"], ["https://tec.openplanner.team/stops/N137afa", "https://tec.openplanner.team/stops/N137aja"], ["https://tec.openplanner.team/stops/N584aca", "https://tec.openplanner.team/stops/N584acb"], ["https://tec.openplanner.team/stops/Cgrgend1", "https://tec.openplanner.team/stops/Cgrlorm2"], ["https://tec.openplanner.team/stops/Lmoboeu3", "https://tec.openplanner.team/stops/Lmoknae4"], ["https://tec.openplanner.team/stops/N424aea", "https://tec.openplanner.team/stops/N424aeb"], ["https://tec.openplanner.team/stops/Bchgbru1", "https://tec.openplanner.team/stops/Btsllbv2"], ["https://tec.openplanner.team/stops/N141aca", "https://tec.openplanner.team/stops/N141agb"], ["https://tec.openplanner.team/stops/Cfrcoqu1", "https://tec.openplanner.team/stops/Crewath2"], ["https://tec.openplanner.team/stops/Broneco2", "https://tec.openplanner.team/stops/Bronfou2"], ["https://tec.openplanner.team/stops/X661aib", "https://tec.openplanner.team/stops/X661ajb"], ["https://tec.openplanner.team/stops/Llgbaya4", "https://tec.openplanner.team/stops/Llgpiet2"], ["https://tec.openplanner.team/stops/N531aub", "https://tec.openplanner.team/stops/N532amb"], ["https://tec.openplanner.team/stops/H1fr115a", "https://tec.openplanner.team/stops/H1fr151a"], ["https://tec.openplanner.team/stops/N202aec", "https://tec.openplanner.team/stops/N562bfa"], ["https://tec.openplanner.team/stops/X604aba", "https://tec.openplanner.team/stops/X604aca"], ["https://tec.openplanner.team/stops/LFfeg--2", "https://tec.openplanner.team/stops/LPRcasi2"], ["https://tec.openplanner.team/stops/N149aga", "https://tec.openplanner.team/stops/N149ahb"], ["https://tec.openplanner.team/stops/LHceg--1", "https://tec.openplanner.team/stops/LHcgare2"], ["https://tec.openplanner.team/stops/X640ada", "https://tec.openplanner.team/stops/X641aia"], ["https://tec.openplanner.team/stops/N554afa", "https://tec.openplanner.team/stops/N554afb"], ["https://tec.openplanner.team/stops/Chpceri1", "https://tec.openplanner.team/stops/Chpceri2"], ["https://tec.openplanner.team/stops/H1ho131b", "https://tec.openplanner.team/stops/H1ho143b"], ["https://tec.openplanner.team/stops/Bgnvoha6", "https://tec.openplanner.team/stops/Bgnvvol2"], ["https://tec.openplanner.team/stops/H2go116b", "https://tec.openplanner.team/stops/H2go117b"], ["https://tec.openplanner.team/stops/N201aca", "https://tec.openplanner.team/stops/N201aja"], ["https://tec.openplanner.team/stops/Lghjans1", "https://tec.openplanner.team/stops/Lghjans2"], ["https://tec.openplanner.team/stops/LsEdorf1", "https://tec.openplanner.team/stops/LsVfeye1"], ["https://tec.openplanner.team/stops/Ladarev1", "https://tec.openplanner.team/stops/Ladarev2"], ["https://tec.openplanner.team/stops/Cwfplac1", "https://tec.openplanner.team/stops/Cwfplac2"], ["https://tec.openplanner.team/stops/H4te259a", "https://tec.openplanner.team/stops/H4te261b"], ["https://tec.openplanner.team/stops/LOTsav-1", "https://tec.openplanner.team/stops/LWidepo2"], ["https://tec.openplanner.team/stops/Lanadmi2", "https://tec.openplanner.team/stops/Llojeme1"], ["https://tec.openplanner.team/stops/N351arb", "https://tec.openplanner.team/stops/X349aaa"], ["https://tec.openplanner.team/stops/X612aca", "https://tec.openplanner.team/stops/X612ada"], ["https://tec.openplanner.team/stops/LhZkape1", "https://tec.openplanner.team/stops/LmFdorf1"], ["https://tec.openplanner.team/stops/Cwgcamp2", "https://tec.openplanner.team/stops/Cwgplac1"], ["https://tec.openplanner.team/stops/N543aga", "https://tec.openplanner.team/stops/N543bxb"], ["https://tec.openplanner.team/stops/Bgrmver1", "https://tec.openplanner.team/stops/N522ana"], ["https://tec.openplanner.team/stops/H1wz169a", "https://tec.openplanner.team/stops/H3bi116b"], ["https://tec.openplanner.team/stops/LCHfond1", "https://tec.openplanner.team/stops/LThpoli1"], ["https://tec.openplanner.team/stops/Lalverr1", "https://tec.openplanner.team/stops/Lalverr2"], ["https://tec.openplanner.team/stops/X756abb", "https://tec.openplanner.team/stops/X756acb"], ["https://tec.openplanner.team/stops/N147acb", "https://tec.openplanner.team/stops/N147aea"], ["https://tec.openplanner.team/stops/Lcegare2", "https://tec.openplanner.team/stops/Lcelhon3"], ["https://tec.openplanner.team/stops/Cfaeclu1", "https://tec.openplanner.team/stops/Cfaeclu2"], ["https://tec.openplanner.team/stops/LbEkirc*", "https://tec.openplanner.team/stops/LbTmuhl2"], ["https://tec.openplanner.team/stops/N513abb", "https://tec.openplanner.team/stops/N513bha"], ["https://tec.openplanner.team/stops/Llgcmes2", "https://tec.openplanner.team/stops/Llgcmes4"], ["https://tec.openplanner.team/stops/LSPentr1", "https://tec.openplanner.team/stops/LSPxhou2"], ["https://tec.openplanner.team/stops/Lcefoxh2", "https://tec.openplanner.team/stops/Lceleje2"], ["https://tec.openplanner.team/stops/LCseg--1", "https://tec.openplanner.team/stops/LCsgend1"], ["https://tec.openplanner.team/stops/Lropass2", "https://tec.openplanner.team/stops/Lrosoxh2"], ["https://tec.openplanner.team/stops/LAigrim2", "https://tec.openplanner.team/stops/LENalun1"], ["https://tec.openplanner.team/stops/LbTgeme1", "https://tec.openplanner.team/stops/LwYkreu1"], ["https://tec.openplanner.team/stops/Cmtpblo1", "https://tec.openplanner.team/stops/Cmtplac5"], ["https://tec.openplanner.team/stops/H1ni317b", "https://tec.openplanner.team/stops/H1ni321b"], ["https://tec.openplanner.team/stops/LRObruy2", "https://tec.openplanner.team/stops/LROmons1"], ["https://tec.openplanner.team/stops/N501bmb", "https://tec.openplanner.team/stops/N501bna"], ["https://tec.openplanner.team/stops/X615ala", "https://tec.openplanner.team/stops/X615amb"], ["https://tec.openplanner.team/stops/LAYthir1", "https://tec.openplanner.team/stops/LHrrard1"], ["https://tec.openplanner.team/stops/N521alb", "https://tec.openplanner.team/stops/N527acb"], ["https://tec.openplanner.team/stops/Lbrcard2", "https://tec.openplanner.team/stops/Lbrcygn1"], ["https://tec.openplanner.team/stops/Louoran1", "https://tec.openplanner.team/stops/Lsebelv2"], ["https://tec.openplanner.team/stops/LHDpota2", "https://tec.openplanner.team/stops/LHDpota3"], ["https://tec.openplanner.team/stops/H5pe149b", "https://tec.openplanner.team/stops/H5pe150b"], ["https://tec.openplanner.team/stops/X782aka", "https://tec.openplanner.team/stops/X782akb"], ["https://tec.openplanner.team/stops/LVHbrai1", "https://tec.openplanner.team/stops/LVHtill1"], ["https://tec.openplanner.team/stops/LPRpeti2", "https://tec.openplanner.team/stops/LPRvill2"], ["https://tec.openplanner.team/stops/Bmrqgar2", "https://tec.openplanner.team/stops/H1mk109b"], ["https://tec.openplanner.team/stops/X394aaa", "https://tec.openplanner.team/stops/X394aba"], ["https://tec.openplanner.team/stops/Cmacreu1", "https://tec.openplanner.team/stops/Cmaest2"], ["https://tec.openplanner.team/stops/N211acb", "https://tec.openplanner.team/stops/N211bba"], ["https://tec.openplanner.team/stops/NC14aea", "https://tec.openplanner.team/stops/NC14afa"], ["https://tec.openplanner.team/stops/N101ajb", "https://tec.openplanner.team/stops/N101apb"], ["https://tec.openplanner.team/stops/Cmlbevu2", "https://tec.openplanner.team/stops/Cmlbrac2"], ["https://tec.openplanner.team/stops/X605aab", "https://tec.openplanner.team/stops/X606aba"], ["https://tec.openplanner.team/stops/LbAhull1", "https://tec.openplanner.team/stops/LhBdorf1"], ["https://tec.openplanner.team/stops/H1ne148a", "https://tec.openplanner.team/stops/H1ne150b"], ["https://tec.openplanner.team/stops/Bsencen1", "https://tec.openplanner.team/stops/Bsences2"], ["https://tec.openplanner.team/stops/N505aba", "https://tec.openplanner.team/stops/N579abb"], ["https://tec.openplanner.team/stops/Laltrap1", "https://tec.openplanner.team/stops/Laltrav1"], ["https://tec.openplanner.team/stops/LVbpave1", "https://tec.openplanner.team/stops/NL78aca"], ["https://tec.openplanner.team/stops/Lmnchal2", "https://tec.openplanner.team/stops/Lmnsech2"], ["https://tec.openplanner.team/stops/H1qv110a", "https://tec.openplanner.team/stops/H1qv111b"], ["https://tec.openplanner.team/stops/H5at105a", "https://tec.openplanner.team/stops/H5at123a"], ["https://tec.openplanner.team/stops/H1au101a", "https://tec.openplanner.team/stops/H1au103b"], ["https://tec.openplanner.team/stops/H4ho119b", "https://tec.openplanner.team/stops/H4lg103b"], ["https://tec.openplanner.team/stops/N236aeb", "https://tec.openplanner.team/stops/N236alb"], ["https://tec.openplanner.team/stops/Llggill1", "https://tec.openplanner.team/stops/Llggill4"], ["https://tec.openplanner.team/stops/Bgoemho1", "https://tec.openplanner.team/stops/Bneesjo1"], ["https://tec.openplanner.team/stops/N501aoa", "https://tec.openplanner.team/stops/N501aob"], ["https://tec.openplanner.team/stops/LTPabat1", "https://tec.openplanner.team/stops/LTPreco1"], ["https://tec.openplanner.team/stops/X902axa", "https://tec.openplanner.team/stops/X943aba"], ["https://tec.openplanner.team/stops/N501bta", "https://tec.openplanner.team/stops/N501bwb"], ["https://tec.openplanner.team/stops/LATmale1", "https://tec.openplanner.team/stops/LWNwavr1"], ["https://tec.openplanner.team/stops/H1mm126a", "https://tec.openplanner.team/stops/H1mm126b"], ["https://tec.openplanner.team/stops/LAWhein1", "https://tec.openplanner.team/stops/LAWhein4"], ["https://tec.openplanner.team/stops/LATfont1", "https://tec.openplanner.team/stops/LATfont2"], ["https://tec.openplanner.team/stops/Borbtre2", "https://tec.openplanner.team/stops/Btstche1"], ["https://tec.openplanner.team/stops/LREfloh1", "https://tec.openplanner.team/stops/LREsech1"], ["https://tec.openplanner.team/stops/LHAarge2", "https://tec.openplanner.team/stops/LHAmonu2"], ["https://tec.openplanner.team/stops/X718ada", "https://tec.openplanner.team/stops/X718aib"], ["https://tec.openplanner.team/stops/H1he103b", "https://tec.openplanner.team/stops/H1he111b"], ["https://tec.openplanner.team/stops/LSItert2", "https://tec.openplanner.team/stops/LSIvieu2"], ["https://tec.openplanner.team/stops/Cstdona4", "https://tec.openplanner.team/stops/Cstplac1"], ["https://tec.openplanner.team/stops/Bspkbeu1", "https://tec.openplanner.team/stops/H1gy115a"], ["https://tec.openplanner.team/stops/X901bka", "https://tec.openplanner.team/stops/X901bna"], ["https://tec.openplanner.team/stops/Lfhpass2", "https://tec.openplanner.team/stops/Lseegva1"], ["https://tec.openplanner.team/stops/H4ft138b", "https://tec.openplanner.team/stops/H4wu377b"], ["https://tec.openplanner.team/stops/X921apa", "https://tec.openplanner.team/stops/X923apa"], ["https://tec.openplanner.team/stops/Bmanfbg2", "https://tec.openplanner.team/stops/H2mg149a"], ["https://tec.openplanner.team/stops/Bjodcar2", "https://tec.openplanner.team/stops/Bjodeco2"], ["https://tec.openplanner.team/stops/H1do114b", "https://tec.openplanner.team/stops/H1wi147a"], ["https://tec.openplanner.team/stops/Bbsggot1", "https://tec.openplanner.team/stops/Bbsgrve2"], ["https://tec.openplanner.team/stops/Cbiferm2", "https://tec.openplanner.team/stops/Crgmgri2"], ["https://tec.openplanner.team/stops/Lhrunir1", "https://tec.openplanner.team/stops/Lhrunir2"], ["https://tec.openplanner.team/stops/LSTchal1", "https://tec.openplanner.team/stops/LSTec--2"], ["https://tec.openplanner.team/stops/Bvirdco1", "https://tec.openplanner.team/stops/Bvirdco2"], ["https://tec.openplanner.team/stops/H4rm107b", "https://tec.openplanner.team/stops/H4rm107d"], ["https://tec.openplanner.team/stops/Cmmadma1", "https://tec.openplanner.team/stops/Cmmceri1"], ["https://tec.openplanner.team/stops/H1fy143a", "https://tec.openplanner.team/stops/H1ro139b"], ["https://tec.openplanner.team/stops/H1wa146b", "https://tec.openplanner.team/stops/H1wa158b"], ["https://tec.openplanner.team/stops/LFAscie2", "https://tec.openplanner.team/stops/LHumoul1"], ["https://tec.openplanner.team/stops/Baegegl1", "https://tec.openplanner.team/stops/Baegegl2"], ["https://tec.openplanner.team/stops/Bixllep2", "https://tec.openplanner.team/stops/Buccdst2"], ["https://tec.openplanner.team/stops/LVnroch2", "https://tec.openplanner.team/stops/LVnrock1"], ["https://tec.openplanner.team/stops/N539agb", "https://tec.openplanner.team/stops/N539ahb"], ["https://tec.openplanner.team/stops/LhEcolo1", "https://tec.openplanner.team/stops/LhEtivo2"], ["https://tec.openplanner.team/stops/X601asa", "https://tec.openplanner.team/stops/X601aua"], ["https://tec.openplanner.team/stops/N201akb", "https://tec.openplanner.team/stops/N201amb"], ["https://tec.openplanner.team/stops/X624alb", "https://tec.openplanner.team/stops/X625agb"], ["https://tec.openplanner.team/stops/Canresi1", "https://tec.openplanner.team/stops/H2an101b"], ["https://tec.openplanner.team/stops/H1ba104b", "https://tec.openplanner.team/stops/H1ba119d"], ["https://tec.openplanner.team/stops/X804aaa", "https://tec.openplanner.team/stops/X818aka"], ["https://tec.openplanner.team/stops/N543aab", "https://tec.openplanner.team/stops/N543aca"], ["https://tec.openplanner.team/stops/H4bl105a", "https://tec.openplanner.team/stops/H4bl105b"], ["https://tec.openplanner.team/stops/Lanrask1", "https://tec.openplanner.team/stops/Llgnani2"], ["https://tec.openplanner.team/stops/Bgdhcsh1", "https://tec.openplanner.team/stops/Bgdhlai1"], ["https://tec.openplanner.team/stops/H4hu121b", "https://tec.openplanner.team/stops/H4og208b"], ["https://tec.openplanner.team/stops/Lrechap2", "https://tec.openplanner.team/stops/Lrevaul2"], ["https://tec.openplanner.team/stops/Llgfail2", "https://tec.openplanner.team/stops/Llgmont2"], ["https://tec.openplanner.team/stops/H1em101a", "https://tec.openplanner.team/stops/H1em105a"], ["https://tec.openplanner.team/stops/LGemari2", "https://tec.openplanner.team/stops/LMschap1"], ["https://tec.openplanner.team/stops/H5at107b", "https://tec.openplanner.team/stops/H5at113a"], ["https://tec.openplanner.team/stops/N501mia", "https://tec.openplanner.team/stops/N501ndb"], ["https://tec.openplanner.team/stops/Ljucomb1", "https://tec.openplanner.team/stops/Ljuinte1"], ["https://tec.openplanner.team/stops/X670apb", "https://tec.openplanner.team/stops/X671aaa"], ["https://tec.openplanner.team/stops/Cbmpopr1", "https://tec.openplanner.team/stops/Cssgare2"], ["https://tec.openplanner.team/stops/LCUthie2", "https://tec.openplanner.team/stops/NL67adb"], ["https://tec.openplanner.team/stops/H1an100a", "https://tec.openplanner.team/stops/H1on128d"], ["https://tec.openplanner.team/stops/H4wc374a", "https://tec.openplanner.team/stops/H4wc374b"], ["https://tec.openplanner.team/stops/Bsmgpon1", "https://tec.openplanner.team/stops/Bsmgpon2"], ["https://tec.openplanner.team/stops/LEMec--1", "https://tec.openplanner.team/stops/LEMec--2"], ["https://tec.openplanner.team/stops/X901ava", "https://tec.openplanner.team/stops/X901aza"], ["https://tec.openplanner.team/stops/X801aya", "https://tec.openplanner.team/stops/X801cja"], ["https://tec.openplanner.team/stops/H1hc150a", "https://tec.openplanner.team/stops/H5bl120b"], ["https://tec.openplanner.team/stops/H4hx119a", "https://tec.openplanner.team/stops/H4hx120a"], ["https://tec.openplanner.team/stops/LVnourt2", "https://tec.openplanner.team/stops/LVnourt4"], ["https://tec.openplanner.team/stops/NL67aba", "https://tec.openplanner.team/stops/NL72acb"], ["https://tec.openplanner.team/stops/Cmehels2", "https://tec.openplanner.team/stops/Cmerdby2"], ["https://tec.openplanner.team/stops/Bclglbu2", "https://tec.openplanner.team/stops/Bclgvse2"], ["https://tec.openplanner.team/stops/N501hzb", "https://tec.openplanner.team/stops/N501hzc"], ["https://tec.openplanner.team/stops/X904aaa", "https://tec.openplanner.team/stops/X904abb"], ["https://tec.openplanner.team/stops/LVIacac1", "https://tec.openplanner.team/stops/LVIsacr1"], ["https://tec.openplanner.team/stops/N549aga", "https://tec.openplanner.team/stops/N578aaa"], ["https://tec.openplanner.team/stops/LFmcarr1", "https://tec.openplanner.team/stops/LMObouh1"], ["https://tec.openplanner.team/stops/N150agb", "https://tec.openplanner.team/stops/N150aha"], ["https://tec.openplanner.team/stops/H4ty313a", "https://tec.openplanner.team/stops/H4ty313b"], ["https://tec.openplanner.team/stops/H4rm109b", "https://tec.openplanner.team/stops/H4rm114a"], ["https://tec.openplanner.team/stops/Btubbsc1", "https://tec.openplanner.team/stops/Btubegy1"], ["https://tec.openplanner.team/stops/X671afa", "https://tec.openplanner.team/stops/X671afb"], ["https://tec.openplanner.team/stops/H2ll184b", "https://tec.openplanner.team/stops/H2ll187c"], ["https://tec.openplanner.team/stops/H4he101a", "https://tec.openplanner.team/stops/H4he101b"], ["https://tec.openplanner.team/stops/Cfrbrin1", "https://tec.openplanner.team/stops/Cfrtry1"], ["https://tec.openplanner.team/stops/LFUfleu1", "https://tec.openplanner.team/stops/LWDchab2"], ["https://tec.openplanner.team/stops/Cmaplas3", "https://tec.openplanner.team/stops/Cmastch4"], ["https://tec.openplanner.team/stops/LHMaube1", "https://tec.openplanner.team/stops/LLC170-1"], ["https://tec.openplanner.team/stops/LAUbour4", "https://tec.openplanner.team/stops/LAUvict4"], ["https://tec.openplanner.team/stops/LSZroqu1", "https://tec.openplanner.team/stops/LSZsolw2"], ["https://tec.openplanner.team/stops/Bnivsnu1", "https://tec.openplanner.team/stops/Bnivsnu2"], ["https://tec.openplanner.team/stops/N528acb", "https://tec.openplanner.team/stops/N551aab"], ["https://tec.openplanner.team/stops/LBIfore1", "https://tec.openplanner.team/stops/Lghreyn2"], ["https://tec.openplanner.team/stops/LBUplac2", "https://tec.openplanner.team/stops/LBUvall2"], ["https://tec.openplanner.team/stops/X910agb", "https://tec.openplanner.team/stops/X911akb"], ["https://tec.openplanner.team/stops/H3br103a", "https://tec.openplanner.team/stops/H3br107a"], ["https://tec.openplanner.team/stops/X925aea", "https://tec.openplanner.team/stops/X982baa"], ["https://tec.openplanner.team/stops/X809aeb", "https://tec.openplanner.team/stops/X850aca"], ["https://tec.openplanner.team/stops/LBegare1", "https://tec.openplanner.team/stops/LWHkerk1"], ["https://tec.openplanner.team/stops/X773ada", "https://tec.openplanner.team/stops/X773adb"], ["https://tec.openplanner.team/stops/LHAstal1", "https://tec.openplanner.team/stops/Lvicitw2"], ["https://tec.openplanner.team/stops/X760aba", "https://tec.openplanner.team/stops/X786aha"], ["https://tec.openplanner.team/stops/Bgdhbvu1", "https://tec.openplanner.team/stops/Bhantui1"], ["https://tec.openplanner.team/stops/LrGzent2", "https://tec.openplanner.team/stops/LwPdorf2"], ["https://tec.openplanner.team/stops/Lmocoop2", "https://tec.openplanner.team/stops/Lmopans2"], ["https://tec.openplanner.team/stops/H1eu101b", "https://tec.openplanner.team/stops/H1eu102a"], ["https://tec.openplanner.team/stops/H1ho125a", "https://tec.openplanner.team/stops/H1ho125b"], ["https://tec.openplanner.team/stops/LSOchau1", "https://tec.openplanner.team/stops/LSOferr6"], ["https://tec.openplanner.team/stops/X904aga", "https://tec.openplanner.team/stops/X904ana"], ["https://tec.openplanner.team/stops/Llgcime1", "https://tec.openplanner.team/stops/Llgvott1"], ["https://tec.openplanner.team/stops/Bllnrro1", "https://tec.openplanner.team/stops/Bllnrro2"], ["https://tec.openplanner.team/stops/X347ajb", "https://tec.openplanner.team/stops/X890aga"], ["https://tec.openplanner.team/stops/LLnec--2", "https://tec.openplanner.team/stops/LLnpomp1"], ["https://tec.openplanner.team/stops/X979aga", "https://tec.openplanner.team/stops/X979aoa"], ["https://tec.openplanner.team/stops/N551apb", "https://tec.openplanner.team/stops/N551arc"], ["https://tec.openplanner.team/stops/H4ty281b", "https://tec.openplanner.team/stops/H4ty336a"], ["https://tec.openplanner.team/stops/X945aca", "https://tec.openplanner.team/stops/X945ada"], ["https://tec.openplanner.team/stops/LVBchau1", "https://tec.openplanner.team/stops/LWDchpl1"], ["https://tec.openplanner.team/stops/LnN02--1", "https://tec.openplanner.team/stops/LnNkirc2"], ["https://tec.openplanner.team/stops/LHUlieg2", "https://tec.openplanner.team/stops/LHUpost1"], ["https://tec.openplanner.team/stops/H4ar172a", "https://tec.openplanner.team/stops/H4ar177b"], ["https://tec.openplanner.team/stops/Cgzbouh2", "https://tec.openplanner.team/stops/Cgzvivi1"], ["https://tec.openplanner.team/stops/X663ada", "https://tec.openplanner.team/stops/X663aia"], ["https://tec.openplanner.team/stops/N501cmb", "https://tec.openplanner.team/stops/N501dna"], ["https://tec.openplanner.team/stops/H1ms265a", "https://tec.openplanner.team/stops/H1ms272a"], ["https://tec.openplanner.team/stops/LHheg--1", "https://tec.openplanner.team/stops/LHheg--2"], ["https://tec.openplanner.team/stops/LLrdigu2", "https://tec.openplanner.team/stops/LLrscie2"], ["https://tec.openplanner.team/stops/Bjodath1", "https://tec.openplanner.team/stops/NR10aca"], ["https://tec.openplanner.team/stops/LHUanth2", "https://tec.openplanner.team/stops/LHUtfal2"], ["https://tec.openplanner.team/stops/LLvpost1", "https://tec.openplanner.team/stops/LLvpost2"], ["https://tec.openplanner.team/stops/Bsenbmc1", "https://tec.openplanner.team/stops/Bsenpbi1"], ["https://tec.openplanner.team/stops/H5rx100b", "https://tec.openplanner.team/stops/H5rx115d"], ["https://tec.openplanner.team/stops/LCxeg--2", "https://tec.openplanner.team/stops/LCxhall2"], ["https://tec.openplanner.team/stops/X921aib", "https://tec.openplanner.team/stops/X921aqb"], ["https://tec.openplanner.team/stops/X618aba", "https://tec.openplanner.team/stops/X618anb"], ["https://tec.openplanner.team/stops/Bgoemgr2", "https://tec.openplanner.team/stops/Bgoewat1"], ["https://tec.openplanner.team/stops/LELhard1", "https://tec.openplanner.team/stops/LELhard2"], ["https://tec.openplanner.team/stops/X801bza", "https://tec.openplanner.team/stops/X801bzb"], ["https://tec.openplanner.team/stops/Llglamb2", "https://tec.openplanner.team/stops/Llgmass1"], ["https://tec.openplanner.team/stops/N501gqb", "https://tec.openplanner.team/stops/N501hcc"], ["https://tec.openplanner.team/stops/Lmobras1", "https://tec.openplanner.team/stops/Lmojans1"], ["https://tec.openplanner.team/stops/H2sb231b", "https://tec.openplanner.team/stops/H2sb234b"], ["https://tec.openplanner.team/stops/Bmarchn2", "https://tec.openplanner.team/stops/Bwagdeb2"], ["https://tec.openplanner.team/stops/H1hn205a", "https://tec.openplanner.team/stops/H1hn208b"], ["https://tec.openplanner.team/stops/Lmlhaut1", "https://tec.openplanner.team/stops/Lmlhaut2"], ["https://tec.openplanner.team/stops/X793ana", "https://tec.openplanner.team/stops/X793anb"], ["https://tec.openplanner.team/stops/X896afa", "https://tec.openplanner.team/stops/X993aja"], ["https://tec.openplanner.team/stops/N120aod", "https://tec.openplanner.team/stops/N340aba"], ["https://tec.openplanner.team/stops/Cobcent2", "https://tec.openplanner.team/stops/Cpcegli2"], ["https://tec.openplanner.team/stops/Cvpcour2", "https://tec.openplanner.team/stops/Cvpplan1"], ["https://tec.openplanner.team/stops/LlgguilC", "https://tec.openplanner.team/stops/LlgguilD"], ["https://tec.openplanner.team/stops/N543cla", "https://tec.openplanner.team/stops/N543cob"], ["https://tec.openplanner.team/stops/H1sy137a", "https://tec.openplanner.team/stops/H1sy143d"], ["https://tec.openplanner.team/stops/H3go104b", "https://tec.openplanner.team/stops/H3lr107a"], ["https://tec.openplanner.team/stops/H1cu121a", "https://tec.openplanner.team/stops/H1cu127a"], ["https://tec.openplanner.team/stops/LmIvale2", "https://tec.openplanner.team/stops/LvAschr2"], ["https://tec.openplanner.team/stops/Llgcbat2", "https://tec.openplanner.team/stops/Llgoise2"], ["https://tec.openplanner.team/stops/X725agb", "https://tec.openplanner.team/stops/X727aab"], ["https://tec.openplanner.team/stops/LBLplac4", "https://tec.openplanner.team/stops/LBLplas2"], ["https://tec.openplanner.team/stops/LdUespe2", "https://tec.openplanner.team/stops/LdUkreu1"], ["https://tec.openplanner.team/stops/Cciarfr2", "https://tec.openplanner.team/stops/Ccicloc1"], ["https://tec.openplanner.team/stops/H1hq127a", "https://tec.openplanner.team/stops/H1hq129a"], ["https://tec.openplanner.team/stops/Bnivcol1", "https://tec.openplanner.team/stops/Bnivcol3"], ["https://tec.openplanner.team/stops/Bbiehss2", "https://tec.openplanner.team/stops/Blontry2"], ["https://tec.openplanner.team/stops/N308aka", "https://tec.openplanner.team/stops/N308aoa"], ["https://tec.openplanner.team/stops/Lbrnanc1", "https://tec.openplanner.team/stops/Llgabat1"], ["https://tec.openplanner.team/stops/H4ef162a", "https://tec.openplanner.team/stops/H4ef165b"], ["https://tec.openplanner.team/stops/Ccugend1", "https://tec.openplanner.team/stops/Ccuwil2"], ["https://tec.openplanner.team/stops/NH01apb", "https://tec.openplanner.team/stops/NH01aqb"], ["https://tec.openplanner.team/stops/N232awa", "https://tec.openplanner.team/stops/N232blb"], ["https://tec.openplanner.team/stops/Cfrfede2", "https://tec.openplanner.team/stops/Cfrptfe2"], ["https://tec.openplanner.team/stops/X948aja", "https://tec.openplanner.team/stops/X948ajc"], ["https://tec.openplanner.team/stops/H1ch142a", "https://tec.openplanner.team/stops/H4gr111b"], ["https://tec.openplanner.team/stops/H2ll172a", "https://tec.openplanner.team/stops/H2ll201a"], ["https://tec.openplanner.team/stops/Blmlmco2", "https://tec.openplanner.team/stops/Blmlpla2"], ["https://tec.openplanner.team/stops/X615aab", "https://tec.openplanner.team/stops/X615agb"], ["https://tec.openplanner.team/stops/LSeec--3", "https://tec.openplanner.team/stops/LSetrix2"], ["https://tec.openplanner.team/stops/Lmobrac1", "https://tec.openplanner.team/stops/Ltibure4"], ["https://tec.openplanner.team/stops/X768ada", "https://tec.openplanner.team/stops/X768aha"], ["https://tec.openplanner.team/stops/LRGile-2", "https://tec.openplanner.team/stops/LRGmoul1"], ["https://tec.openplanner.team/stops/N232aha", "https://tec.openplanner.team/stops/N232ahb"], ["https://tec.openplanner.team/stops/X608afa", "https://tec.openplanner.team/stops/X608avb"], ["https://tec.openplanner.team/stops/H1gh144a", "https://tec.openplanner.team/stops/H1je215a"], ["https://tec.openplanner.team/stops/NL35abb", "https://tec.openplanner.team/stops/NL35acb"], ["https://tec.openplanner.team/stops/Lfhtrca1", "https://tec.openplanner.team/stops/Lfhtrca2"], ["https://tec.openplanner.team/stops/H4lz163a", "https://tec.openplanner.team/stops/H4lz164a"], ["https://tec.openplanner.team/stops/N241aeb", "https://tec.openplanner.team/stops/N241afa"], ["https://tec.openplanner.team/stops/LJUfort1", "https://tec.openplanner.team/stops/LVSbleu2"], ["https://tec.openplanner.team/stops/Llxeg--2", "https://tec.openplanner.team/stops/Lwapomp1"], ["https://tec.openplanner.team/stops/H4jm117b", "https://tec.openplanner.team/stops/H4we136b"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/Crchutt1"], ["https://tec.openplanner.team/stops/LWEhosp3", "https://tec.openplanner.team/stops/LWEpaul2"], ["https://tec.openplanner.team/stops/Lemdieu2", "https://tec.openplanner.team/stops/Lempass2"], ["https://tec.openplanner.team/stops/N217aaa", "https://tec.openplanner.team/stops/N217aea"], ["https://tec.openplanner.team/stops/X396aca", "https://tec.openplanner.team/stops/X396afb"], ["https://tec.openplanner.team/stops/Barcbav1", "https://tec.openplanner.team/stops/Barcpre2"], ["https://tec.openplanner.team/stops/H1ro136a", "https://tec.openplanner.team/stops/H1ro139a"], ["https://tec.openplanner.team/stops/X605ala", "https://tec.openplanner.team/stops/X605alb"], ["https://tec.openplanner.team/stops/H1ms302b", "https://tec.openplanner.team/stops/H1ms311a"], ["https://tec.openplanner.team/stops/Boplcar3", "https://tec.openplanner.team/stops/Boplcar4"], ["https://tec.openplanner.team/stops/N556aeb", "https://tec.openplanner.team/stops/N558aab"], ["https://tec.openplanner.team/stops/X823afb", "https://tec.openplanner.team/stops/X823afc"], ["https://tec.openplanner.team/stops/CMparc1", "https://tec.openplanner.team/stops/CMparc2"], ["https://tec.openplanner.team/stops/H4hg156a", "https://tec.openplanner.team/stops/H4li178a"], ["https://tec.openplanner.team/stops/N131aha", "https://tec.openplanner.team/stops/N138aja"], ["https://tec.openplanner.team/stops/X609aaa", "https://tec.openplanner.team/stops/X627aba"], ["https://tec.openplanner.team/stops/LAVeg--1", "https://tec.openplanner.team/stops/LAVeg--2"], ["https://tec.openplanner.team/stops/Btubmfa2", "https://tec.openplanner.team/stops/Btubnco2"], ["https://tec.openplanner.team/stops/N211awb", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/N506aqa", "https://tec.openplanner.team/stops/N506aqb"], ["https://tec.openplanner.team/stops/LLUadze2", "https://tec.openplanner.team/stops/LLUalou2"], ["https://tec.openplanner.team/stops/H4ir162b", "https://tec.openplanner.team/stops/H4ir163a"], ["https://tec.openplanner.team/stops/X786aia", "https://tec.openplanner.team/stops/X786aib"], ["https://tec.openplanner.team/stops/X993aba", "https://tec.openplanner.team/stops/X993aib"], ["https://tec.openplanner.team/stops/Bcerpco2", "https://tec.openplanner.team/stops/Blasbgc1"], ["https://tec.openplanner.team/stops/Lmlcher1", "https://tec.openplanner.team/stops/Lmlmich2"], ["https://tec.openplanner.team/stops/LESmecp*", "https://tec.openplanner.team/stops/LESryon2"], ["https://tec.openplanner.team/stops/LOmmer-2", "https://tec.openplanner.team/stops/LSegott1"], ["https://tec.openplanner.team/stops/Cragill2", "https://tec.openplanner.team/stops/Crarmas2"], ["https://tec.openplanner.team/stops/H5pe126a", "https://tec.openplanner.team/stops/H5pe127a"], ["https://tec.openplanner.team/stops/LNEmoul2", "https://tec.openplanner.team/stops/LVosoir2"], ["https://tec.openplanner.team/stops/NL78aab", "https://tec.openplanner.team/stops/NL78ahb"], ["https://tec.openplanner.team/stops/Lvcecol1", "https://tec.openplanner.team/stops/Lvcecol2"], ["https://tec.openplanner.team/stops/X625aca", "https://tec.openplanner.team/stops/X625adb"], ["https://tec.openplanner.team/stops/H4pq120b", "https://tec.openplanner.team/stops/H4sl154a"], ["https://tec.openplanner.team/stops/NL75aab", "https://tec.openplanner.team/stops/NL75aba"], ["https://tec.openplanner.team/stops/H1ob331a", "https://tec.openplanner.team/stops/H1ob341b"], ["https://tec.openplanner.team/stops/X982asa", "https://tec.openplanner.team/stops/X982ayb"], ["https://tec.openplanner.team/stops/Crsaise4", "https://tec.openplanner.team/stops/Crsrose2"], ["https://tec.openplanner.team/stops/N501ema", "https://tec.openplanner.team/stops/N501kka"], ["https://tec.openplanner.team/stops/N132acb", "https://tec.openplanner.team/stops/N135aua"], ["https://tec.openplanner.team/stops/Csepier1", "https://tec.openplanner.team/stops/Csesabo2"], ["https://tec.openplanner.team/stops/X912agb", "https://tec.openplanner.team/stops/X912aha"], ["https://tec.openplanner.team/stops/N512afa", "https://tec.openplanner.team/stops/N512aha"], ["https://tec.openplanner.team/stops/LSpvanr1", "https://tec.openplanner.team/stops/LSpvanr2"], ["https://tec.openplanner.team/stops/Bgemcha1", "https://tec.openplanner.team/stops/N522akb"], ["https://tec.openplanner.team/stops/N135aha", "https://tec.openplanner.team/stops/N135aka"], ["https://tec.openplanner.team/stops/X717acb", "https://tec.openplanner.team/stops/X718aab"], ["https://tec.openplanner.team/stops/X739ala", "https://tec.openplanner.team/stops/X739alb"], ["https://tec.openplanner.team/stops/Bgdhdet2", "https://tec.openplanner.team/stops/Bgdhmet2"], ["https://tec.openplanner.team/stops/X806aja", "https://tec.openplanner.team/stops/X806ajb"], ["https://tec.openplanner.team/stops/X748aaa", "https://tec.openplanner.team/stops/X769aca"], ["https://tec.openplanner.team/stops/LHarenn3", "https://tec.openplanner.team/stops/LHaxhig2"], ["https://tec.openplanner.team/stops/Cblbaiv2", "https://tec.openplanner.team/stops/Cmbcime3"], ["https://tec.openplanner.team/stops/H1fr125a", "https://tec.openplanner.team/stops/H1fr125b"], ["https://tec.openplanner.team/stops/Clpsola1", "https://tec.openplanner.team/stops/Clpsola2"], ["https://tec.openplanner.team/stops/Bhmmvdu1", "https://tec.openplanner.team/stops/Bhmmvdu2"], ["https://tec.openplanner.team/stops/X996aca", "https://tec.openplanner.team/stops/X996acb"], ["https://tec.openplanner.team/stops/LCUmars1", "https://tec.openplanner.team/stops/LCUmars2"], ["https://tec.openplanner.team/stops/Bbldvaa2", "https://tec.openplanner.team/stops/Bhmmjco1"], ["https://tec.openplanner.team/stops/Cctbinc2", "https://tec.openplanner.team/stops/Cprrvil1"], ["https://tec.openplanner.team/stops/H4wu375b", "https://tec.openplanner.team/stops/H4wu377a"], ["https://tec.openplanner.team/stops/N557aib", "https://tec.openplanner.team/stops/N562aza"], ["https://tec.openplanner.team/stops/H1ms263a", "https://tec.openplanner.team/stops/H1ms271a"], ["https://tec.openplanner.team/stops/X390ahb", "https://tec.openplanner.team/stops/X390apa"], ["https://tec.openplanner.team/stops/N219acb", "https://tec.openplanner.team/stops/N219adb"], ["https://tec.openplanner.team/stops/X825aga", "https://tec.openplanner.team/stops/X825agb"], ["https://tec.openplanner.team/stops/LHmcarr1", "https://tec.openplanner.team/stops/LHmcarr2"], ["https://tec.openplanner.team/stops/Bthivil2", "https://tec.openplanner.team/stops/Bthivil3"], ["https://tec.openplanner.team/stops/H1ha193b", "https://tec.openplanner.team/stops/H1ob330a"], ["https://tec.openplanner.team/stops/X831aaa", "https://tec.openplanner.team/stops/X831aeb"], ["https://tec.openplanner.team/stops/Bblacea1", "https://tec.openplanner.team/stops/Bwatcpl1"], ["https://tec.openplanner.team/stops/LSphote2", "https://tec.openplanner.team/stops/LSpunio1"], ["https://tec.openplanner.team/stops/X925aha", "https://tec.openplanner.team/stops/X925ahb"], ["https://tec.openplanner.team/stops/X982adb", "https://tec.openplanner.team/stops/X982bta"], ["https://tec.openplanner.team/stops/Ljuprev3", "https://tec.openplanner.team/stops/Ljuprev4"], ["https://tec.openplanner.team/stops/H1hn203a", "https://tec.openplanner.team/stops/H1hn209b"], ["https://tec.openplanner.team/stops/Lpegiet1", "https://tec.openplanner.team/stops/Lpegiet2"], ["https://tec.openplanner.team/stops/Llgmare1", "https://tec.openplanner.team/stops/Llgmare6"], ["https://tec.openplanner.team/stops/Crodrai2", "https://tec.openplanner.team/stops/Crolema4"], ["https://tec.openplanner.team/stops/Cchbaza1", "https://tec.openplanner.team/stops/Cchdelf1"], ["https://tec.openplanner.team/stops/LLNcime1", "https://tec.openplanner.team/stops/LLNogne2"], ["https://tec.openplanner.team/stops/X826aca", "https://tec.openplanner.team/stops/X826add"], ["https://tec.openplanner.team/stops/H4eh100b", "https://tec.openplanner.team/stops/H4po129a"], ["https://tec.openplanner.team/stops/LTHcime1", "https://tec.openplanner.team/stops/LTHcime2"], ["https://tec.openplanner.team/stops/X224aca", "https://tec.openplanner.team/stops/X224aha"], ["https://tec.openplanner.team/stops/LrAdrie1", "https://tec.openplanner.team/stops/LrAneue1"], ["https://tec.openplanner.team/stops/H4ty273a", "https://tec.openplanner.team/stops/H4ty357a"], ["https://tec.openplanner.team/stops/X649aba", "https://tec.openplanner.team/stops/X649acb"], ["https://tec.openplanner.team/stops/H1wa138b", "https://tec.openplanner.team/stops/H1wa159a"], ["https://tec.openplanner.team/stops/LWSstat1", "https://tec.openplanner.team/stops/LWSstat2"], ["https://tec.openplanner.team/stops/H1eu103a", "https://tec.openplanner.team/stops/H1sb145a"], ["https://tec.openplanner.team/stops/LMNentr1", "https://tec.openplanner.team/stops/LMNentr2"], ["https://tec.openplanner.team/stops/H4og210a", "https://tec.openplanner.team/stops/H4og210b"], ["https://tec.openplanner.team/stops/Blpgcmo2", "https://tec.openplanner.team/stops/Cgnpass1"], ["https://tec.openplanner.team/stops/LOTcarr1", "https://tec.openplanner.team/stops/LOTjacq1"], ["https://tec.openplanner.team/stops/LWLhagi2", "https://tec.openplanner.team/stops/LWLtamb2"], ["https://tec.openplanner.team/stops/H2ha142a", "https://tec.openplanner.team/stops/H2hg160b"], ["https://tec.openplanner.team/stops/Btubcal1", "https://tec.openplanner.team/stops/Btubnav1"], ["https://tec.openplanner.team/stops/Lghbonn2", "https://tec.openplanner.team/stops/Lghchap2"], ["https://tec.openplanner.team/stops/LHCcroy1", "https://tec.openplanner.team/stops/LHChoof3"], ["https://tec.openplanner.team/stops/Lagboil1", "https://tec.openplanner.team/stops/Lagchen1"], ["https://tec.openplanner.team/stops/X745aba", "https://tec.openplanner.team/stops/X745ada"], ["https://tec.openplanner.team/stops/Bbstchv2", "https://tec.openplanner.team/stops/Btannda1"], ["https://tec.openplanner.team/stops/Ccugilb1", "https://tec.openplanner.team/stops/Ccutail2"], ["https://tec.openplanner.team/stops/N539afc", "https://tec.openplanner.team/stops/N539aua"], ["https://tec.openplanner.team/stops/N137ada", "https://tec.openplanner.team/stops/N155ahb"], ["https://tec.openplanner.team/stops/Bhevwzw1", "https://tec.openplanner.team/stops/Bhevwzw2"], ["https://tec.openplanner.team/stops/X770aca", "https://tec.openplanner.team/stops/X770adb"], ["https://tec.openplanner.team/stops/Cgolimi2", "https://tec.openplanner.team/stops/Cgorosa3"], ["https://tec.openplanner.team/stops/LRuegli2", "https://tec.openplanner.team/stops/LSerout2"], ["https://tec.openplanner.team/stops/LPutins2", "https://tec.openplanner.team/stops/LrDschl1"], ["https://tec.openplanner.team/stops/Bwlhpec2", "https://tec.openplanner.team/stops/Bwlhpmt3"], ["https://tec.openplanner.team/stops/LMTfagn1", "https://tec.openplanner.team/stops/LMTvill2"], ["https://tec.openplanner.team/stops/X917acb", "https://tec.openplanner.team/stops/X917ada"], ["https://tec.openplanner.team/stops/Cvlpeau1", "https://tec.openplanner.team/stops/Cvlpeau2"], ["https://tec.openplanner.team/stops/X619aja", "https://tec.openplanner.team/stops/X619akb"], ["https://tec.openplanner.team/stops/N310acb", "https://tec.openplanner.team/stops/N313aba"], ["https://tec.openplanner.team/stops/N515akc", "https://tec.openplanner.team/stops/N515ata"], ["https://tec.openplanner.team/stops/Brsrabe2", "https://tec.openplanner.team/stops/Brsrpri2"], ["https://tec.openplanner.team/stops/Bllnchv1", "https://tec.openplanner.team/stops/Bllnchv2"], ["https://tec.openplanner.team/stops/Lenptsa1", "https://tec.openplanner.team/stops/Lenptsa2"], ["https://tec.openplanner.team/stops/LBzvill2", "https://tec.openplanner.team/stops/LVBchau2"], ["https://tec.openplanner.team/stops/H4cw105a", "https://tec.openplanner.team/stops/H4hg156a"], ["https://tec.openplanner.team/stops/H1by104a", "https://tec.openplanner.team/stops/H1sy148b"], ["https://tec.openplanner.team/stops/LAyfren1", "https://tec.openplanner.team/stops/Lmaetan*"], ["https://tec.openplanner.team/stops/LENpt--1", "https://tec.openplanner.team/stops/LENpt--2"], ["https://tec.openplanner.team/stops/X637apa", "https://tec.openplanner.team/stops/X637arb"], ["https://tec.openplanner.team/stops/N539aya", "https://tec.openplanner.team/stops/N539bba"], ["https://tec.openplanner.team/stops/NL57aeb", "https://tec.openplanner.team/stops/NL68aba"], ["https://tec.openplanner.team/stops/Lmntast1", "https://tec.openplanner.team/stops/Lsmdams2"], ["https://tec.openplanner.team/stops/H4ch113a", "https://tec.openplanner.team/stops/H4ch113b"], ["https://tec.openplanner.team/stops/X542aaa", "https://tec.openplanner.team/stops/X542afa"], ["https://tec.openplanner.team/stops/LRemonu1", "https://tec.openplanner.team/stops/LRemorr2"], ["https://tec.openplanner.team/stops/X653aab", "https://tec.openplanner.team/stops/X667adb"], ["https://tec.openplanner.team/stops/Bgnvoha1", "https://tec.openplanner.team/stops/Bgnvvol2"], ["https://tec.openplanner.team/stops/H1og135b", "https://tec.openplanner.team/stops/H5wo133a"], ["https://tec.openplanner.team/stops/LLStrid1", "https://tec.openplanner.team/stops/LLStrid3"], ["https://tec.openplanner.team/stops/Cfmchau2", "https://tec.openplanner.team/stops/Cfmrrou1"], ["https://tec.openplanner.team/stops/Csecout2", "https://tec.openplanner.team/stops/Csemacq1"], ["https://tec.openplanner.team/stops/X725apb", "https://tec.openplanner.team/stops/X725bea"], ["https://tec.openplanner.team/stops/Bcrbgro2", "https://tec.openplanner.team/stops/Bnil3fo2"], ["https://tec.openplanner.team/stops/H5el111a", "https://tec.openplanner.team/stops/H5rx104a"], ["https://tec.openplanner.team/stops/Llgbruy2", "https://tec.openplanner.team/stops/Llgjasm2"], ["https://tec.openplanner.team/stops/H5rx100a", "https://tec.openplanner.team/stops/H5rx125b"], ["https://tec.openplanner.team/stops/LeUarno1", "https://tec.openplanner.team/stops/LeUmeie1"], ["https://tec.openplanner.team/stops/X609aga", "https://tec.openplanner.team/stops/X609ana"], ["https://tec.openplanner.team/stops/Llgbour2", "https://tec.openplanner.team/stops/Lscatme1"], ["https://tec.openplanner.team/stops/N503ajb", "https://tec.openplanner.team/stops/N503aka"], ["https://tec.openplanner.team/stops/X952ada", "https://tec.openplanner.team/stops/X952aib"], ["https://tec.openplanner.team/stops/H4lp123a", "https://tec.openplanner.team/stops/H4ma162a"], ["https://tec.openplanner.team/stops/LjeGRPME", "https://tec.openplanner.team/stops/Lsekubo1"], ["https://tec.openplanner.team/stops/X756aga", "https://tec.openplanner.team/stops/X756aka"], ["https://tec.openplanner.team/stops/H4pp121a", "https://tec.openplanner.team/stops/H4ve134b"], ["https://tec.openplanner.team/stops/LWAfabr1", "https://tec.openplanner.team/stops/LWAfabr2"], ["https://tec.openplanner.team/stops/H4cw104a", "https://tec.openplanner.team/stops/H4hg158a"], ["https://tec.openplanner.team/stops/LACwass1", "https://tec.openplanner.team/stops/LAvchpl2"], ["https://tec.openplanner.team/stops/X923anb", "https://tec.openplanner.team/stops/X923aob"], ["https://tec.openplanner.team/stops/Bmrswag1", "https://tec.openplanner.team/stops/Bmrswag2"], ["https://tec.openplanner.team/stops/Bjaugar1", "https://tec.openplanner.team/stops/Bjaugar3"], ["https://tec.openplanner.team/stops/Ltichif1", "https://tec.openplanner.team/stops/Ltipass1"], ["https://tec.openplanner.team/stops/Lanhoud2", "https://tec.openplanner.team/stops/Lanpisc2"], ["https://tec.openplanner.team/stops/LESmecp*", "https://tec.openplanner.team/stops/LPOpass2"], ["https://tec.openplanner.team/stops/N501doa", "https://tec.openplanner.team/stops/N501mvd"], ["https://tec.openplanner.team/stops/X801chb", "https://tec.openplanner.team/stops/X836ahb"], ["https://tec.openplanner.team/stops/LSBdelc2", "https://tec.openplanner.team/stops/LSGhagn2"], ["https://tec.openplanner.team/stops/Crerevi1", "https://tec.openplanner.team/stops/Crestan2"], ["https://tec.openplanner.team/stops/N338aaa", "https://tec.openplanner.team/stops/N338aga"], ["https://tec.openplanner.team/stops/LToluik1", "https://tec.openplanner.team/stops/LTotrui2"], ["https://tec.openplanner.team/stops/NL77amb", "https://tec.openplanner.team/stops/NL77anb"], ["https://tec.openplanner.team/stops/X750bmb", "https://tec.openplanner.team/stops/X784aba"], ["https://tec.openplanner.team/stops/N211afa", "https://tec.openplanner.team/stops/N219adb"], ["https://tec.openplanner.team/stops/Loucham4", "https://tec.openplanner.team/stops/Louroos2"], ["https://tec.openplanner.team/stops/N101aka", "https://tec.openplanner.team/stops/N101ara"], ["https://tec.openplanner.team/stops/Llgmart2", "https://tec.openplanner.team/stops/LlgOPER5"], ["https://tec.openplanner.team/stops/H4hn115b", "https://tec.openplanner.team/stops/H4lp122a"], ["https://tec.openplanner.team/stops/NC11afb", "https://tec.openplanner.team/stops/NC11amb"], ["https://tec.openplanner.team/stops/Lceegli*", "https://tec.openplanner.team/stops/Lcelhon2"], ["https://tec.openplanner.team/stops/LNAbras3", "https://tec.openplanner.team/stops/LNAbras4"], ["https://tec.openplanner.team/stops/Bbea3he2", "https://tec.openplanner.team/stops/Bbeascl2"], ["https://tec.openplanner.team/stops/N343aka", "https://tec.openplanner.team/stops/N343alb"], ["https://tec.openplanner.team/stops/N311aca", "https://tec.openplanner.team/stops/N360acb"], ["https://tec.openplanner.team/stops/X811aka", "https://tec.openplanner.team/stops/X811akb"], ["https://tec.openplanner.team/stops/LVEjoin1", "https://tec.openplanner.team/stops/LVEtomb1"], ["https://tec.openplanner.team/stops/X982bea", "https://tec.openplanner.team/stops/X982bqb"], ["https://tec.openplanner.team/stops/LDAalbe2", "https://tec.openplanner.team/stops/LDAptbo2"], ["https://tec.openplanner.team/stops/LBdcarr1", "https://tec.openplanner.team/stops/LBdcarr2"], ["https://tec.openplanner.team/stops/Lticoq-1", "https://tec.openplanner.team/stops/Ltimarr2"], ["https://tec.openplanner.team/stops/H4gu108b", "https://tec.openplanner.team/stops/H4we134b"], ["https://tec.openplanner.team/stops/H4ch119a", "https://tec.openplanner.team/stops/H4ty299e"], ["https://tec.openplanner.team/stops/N348aea", "https://tec.openplanner.team/stops/N351alb"], ["https://tec.openplanner.team/stops/X364aab", "https://tec.openplanner.team/stops/X364ada"], ["https://tec.openplanner.team/stops/Bnivgpl3", "https://tec.openplanner.team/stops/Bnivsoi2"], ["https://tec.openplanner.team/stops/LNAbras1", "https://tec.openplanner.team/stops/LYEphar1"], ["https://tec.openplanner.team/stops/H1fy118a", "https://tec.openplanner.team/stops/H1mr125a"], ["https://tec.openplanner.team/stops/Cluberl2", "https://tec.openplanner.team/stops/Cvvcime1"], ["https://tec.openplanner.team/stops/LBXhacb1", "https://tec.openplanner.team/stops/LBXhacb2"], ["https://tec.openplanner.team/stops/LSGcarr1", "https://tec.openplanner.team/stops/LSGeg--3"], ["https://tec.openplanner.team/stops/H1hi123a", "https://tec.openplanner.team/stops/H1hi124a"], ["https://tec.openplanner.team/stops/X882afb", "https://tec.openplanner.team/stops/X882aia"], ["https://tec.openplanner.team/stops/H1br132b", "https://tec.openplanner.team/stops/H1br134b"], ["https://tec.openplanner.team/stops/Bmargve1", "https://tec.openplanner.team/stops/Bmarmru2"], ["https://tec.openplanner.team/stops/X889aca", "https://tec.openplanner.team/stops/X889adb"], ["https://tec.openplanner.team/stops/Lghhoco1", "https://tec.openplanner.team/stops/Lghremy2"], ["https://tec.openplanner.team/stops/X750aya", "https://tec.openplanner.team/stops/X750bab"], ["https://tec.openplanner.team/stops/H2jo162a", "https://tec.openplanner.team/stops/H2lh125b"], ["https://tec.openplanner.team/stops/LBUplac1", "https://tec.openplanner.team/stops/LBUplac2"], ["https://tec.openplanner.team/stops/Ltibord1", "https://tec.openplanner.team/stops/Ltibord2"], ["https://tec.openplanner.team/stops/H4bw101b", "https://tec.openplanner.team/stops/H4co103b"], ["https://tec.openplanner.team/stops/Bboueta2", "https://tec.openplanner.team/stops/Btancre2"], ["https://tec.openplanner.team/stops/H1ls109a", "https://tec.openplanner.team/stops/H1me117e"], ["https://tec.openplanner.team/stops/X781aaa", "https://tec.openplanner.team/stops/X781abb"], ["https://tec.openplanner.team/stops/H4hu114b", "https://tec.openplanner.team/stops/H4hu115b"], ["https://tec.openplanner.team/stops/X992aca", "https://tec.openplanner.team/stops/X992ahb"], ["https://tec.openplanner.team/stops/Bhmmmon2", "https://tec.openplanner.team/stops/Bhmmpos2"], ["https://tec.openplanner.team/stops/Cmeloti1", "https://tec.openplanner.team/stops/Cmeloti2"], ["https://tec.openplanner.team/stops/X615aqb", "https://tec.openplanner.team/stops/X615asa"], ["https://tec.openplanner.team/stops/H1ms254a", "https://tec.openplanner.team/stops/H1ms266a"], ["https://tec.openplanner.team/stops/Lmodeni1", "https://tec.openplanner.team/stops/Lmodeni2"], ["https://tec.openplanner.team/stops/H1nm139b", "https://tec.openplanner.team/stops/H4gr110b"], ["https://tec.openplanner.team/stops/N141ala", "https://tec.openplanner.team/stops/N146abb"], ["https://tec.openplanner.team/stops/X811aob", "https://tec.openplanner.team/stops/X834aab"], ["https://tec.openplanner.team/stops/Bbstcoi1", "https://tec.openplanner.team/stops/Bbstfch2"], ["https://tec.openplanner.team/stops/X658agc", "https://tec.openplanner.team/stops/X658ahb"], ["https://tec.openplanner.team/stops/H1og130a", "https://tec.openplanner.team/stops/H1og131b"], ["https://tec.openplanner.team/stops/Lghcham1", "https://tec.openplanner.team/stops/Lghcham2"], ["https://tec.openplanner.team/stops/Bwavfol2", "https://tec.openplanner.team/stops/Bwavmes2"], ["https://tec.openplanner.team/stops/X625aba", "https://tec.openplanner.team/stops/X625aga"], ["https://tec.openplanner.team/stops/X912afa", "https://tec.openplanner.team/stops/X912agb"], ["https://tec.openplanner.team/stops/LTHmaka1", "https://tec.openplanner.team/stops/LTHperr2"], ["https://tec.openplanner.team/stops/H1cu126a", "https://tec.openplanner.team/stops/H1je218a"], ["https://tec.openplanner.team/stops/Chhclde2", "https://tec.openplanner.team/stops/Cna6che1"], ["https://tec.openplanner.team/stops/H1nm141a", "https://tec.openplanner.team/stops/H1nm141b"], ["https://tec.openplanner.team/stops/N308aka", "https://tec.openplanner.team/stops/X308akb"], ["https://tec.openplanner.team/stops/LBHgile1", "https://tec.openplanner.team/stops/LBHgile2"], ["https://tec.openplanner.team/stops/X633aba", "https://tec.openplanner.team/stops/X653adc"], ["https://tec.openplanner.team/stops/H2ll180a", "https://tec.openplanner.team/stops/H2ll180b"], ["https://tec.openplanner.team/stops/Lpeptwa1", "https://tec.openplanner.team/stops/Lpevesd1"], ["https://tec.openplanner.team/stops/Ctachst1", "https://tec.openplanner.team/stops/Ctapn2"], ["https://tec.openplanner.team/stops/Bhlvgar2", "https://tec.openplanner.team/stops/Bhlvvil3"], ["https://tec.openplanner.team/stops/H1en100a", "https://tec.openplanner.team/stops/H1mk112a"], ["https://tec.openplanner.team/stops/Lbrbass2", "https://tec.openplanner.team/stops/Lgrspir2"], ["https://tec.openplanner.team/stops/Bclgmev2", "https://tec.openplanner.team/stops/Bwavdmo2"], ["https://tec.openplanner.team/stops/X765aca", "https://tec.openplanner.team/stops/X765aea"], ["https://tec.openplanner.team/stops/N533ahb", "https://tec.openplanner.team/stops/N533aib"], ["https://tec.openplanner.team/stops/Cmtpire1", "https://tec.openplanner.team/stops/Cmtpire2"], ["https://tec.openplanner.team/stops/N353aea", "https://tec.openplanner.team/stops/N383abb"], ["https://tec.openplanner.team/stops/LCIsucr1", "https://tec.openplanner.team/stops/LMXaven1"], ["https://tec.openplanner.team/stops/Cmlbras1", "https://tec.openplanner.team/stops/Cmlecha2"], ["https://tec.openplanner.team/stops/LVHbrai2", "https://tec.openplanner.team/stops/LVsbrux1"], ["https://tec.openplanner.team/stops/Cbfcham1", "https://tec.openplanner.team/stops/Cbfpoti2"], ["https://tec.openplanner.team/stops/X602ala", "https://tec.openplanner.team/stops/X653aca"], ["https://tec.openplanner.team/stops/LmD27--1", "https://tec.openplanner.team/stops/LmDhoch3"], ["https://tec.openplanner.team/stops/LNCcedr2", "https://tec.openplanner.team/stops/LNCgene1"], ["https://tec.openplanner.team/stops/X358aeb", "https://tec.openplanner.team/stops/X994aba"], ["https://tec.openplanner.team/stops/Bneeegl1", "https://tec.openplanner.team/stops/Bneervc2"], ["https://tec.openplanner.team/stops/N211aga", "https://tec.openplanner.team/stops/N212abb"], ["https://tec.openplanner.team/stops/LFNfo161", "https://tec.openplanner.team/stops/LFNtill1"], ["https://tec.openplanner.team/stops/Bpecdel2", "https://tec.openplanner.team/stops/Bpechos2"], ["https://tec.openplanner.team/stops/LHolexh2", "https://tec.openplanner.team/stops/LHZec--1"], ["https://tec.openplanner.team/stops/Bwatceg1", "https://tec.openplanner.team/stops/Bwatcpl1"], ["https://tec.openplanner.team/stops/Cctbifu1", "https://tec.openplanner.team/stops/Cctchav1"], ["https://tec.openplanner.team/stops/H4vx364c", "https://tec.openplanner.team/stops/H4vx364d"], ["https://tec.openplanner.team/stops/X718ajb", "https://tec.openplanner.team/stops/X734abb"], ["https://tec.openplanner.team/stops/N525aib", "https://tec.openplanner.team/stops/N525baa"], ["https://tec.openplanner.team/stops/H5rx139b", "https://tec.openplanner.team/stops/H5rx147a"], ["https://tec.openplanner.team/stops/LMnlogi1", "https://tec.openplanner.team/stops/LMnlogi2"], ["https://tec.openplanner.team/stops/Csecoup1", "https://tec.openplanner.team/stops/Cvtndam3"], ["https://tec.openplanner.team/stops/X654afb", "https://tec.openplanner.team/stops/X670ala"], ["https://tec.openplanner.team/stops/N508ajc", "https://tec.openplanner.team/stops/N508ajd"], ["https://tec.openplanner.team/stops/LAUhost2", "https://tec.openplanner.team/stops/LAUpind2"], ["https://tec.openplanner.team/stops/LMHmeha1", "https://tec.openplanner.team/stops/LMHplac4"], ["https://tec.openplanner.team/stops/X601ceb", "https://tec.openplanner.team/stops/X601dha"], ["https://tec.openplanner.team/stops/N337aea", "https://tec.openplanner.team/stops/N385aba"], ["https://tec.openplanner.team/stops/LElcent2", "https://tec.openplanner.team/stops/LElverl2"], ["https://tec.openplanner.team/stops/Bhoeboo1", "https://tec.openplanner.team/stops/Bhoeboo2"], ["https://tec.openplanner.team/stops/H4ka186a", "https://tec.openplanner.team/stops/H4ka194a"], ["https://tec.openplanner.team/stops/Bspkdon1", "https://tec.openplanner.team/stops/H1mk111b"], ["https://tec.openplanner.team/stops/Lbbgare1", "https://tec.openplanner.team/stops/Lcepepi1"], ["https://tec.openplanner.team/stops/X753aba", "https://tec.openplanner.team/stops/X753aca"], ["https://tec.openplanner.team/stops/H2ch104b", "https://tec.openplanner.team/stops/H2ch121a"], ["https://tec.openplanner.team/stops/LFlabba1", "https://tec.openplanner.team/stops/LSkkeri1"], ["https://tec.openplanner.team/stops/Bblaall1", "https://tec.openplanner.team/stops/Bblagar6"], ["https://tec.openplanner.team/stops/Bwavlca1", "https://tec.openplanner.team/stops/Bwavlca2"], ["https://tec.openplanner.team/stops/X723aba", "https://tec.openplanner.team/stops/X723abb"], ["https://tec.openplanner.team/stops/LDpulve2", "https://tec.openplanner.team/stops/LFMvoge2"], ["https://tec.openplanner.team/stops/N509aob", "https://tec.openplanner.team/stops/N509asa"], ["https://tec.openplanner.team/stops/X801bra", "https://tec.openplanner.team/stops/X801bsa"], ["https://tec.openplanner.team/stops/Lceavia2", "https://tec.openplanner.team/stops/Lcewilm1"], ["https://tec.openplanner.team/stops/LVPduvi2", "https://tec.openplanner.team/stops/LVPeg--2"], ["https://tec.openplanner.team/stops/Cbmind1", "https://tec.openplanner.team/stops/Cbmind2"], ["https://tec.openplanner.team/stops/Cgofleu2", "https://tec.openplanner.team/stops/Cgogb1"], ["https://tec.openplanner.team/stops/N543aib", "https://tec.openplanner.team/stops/N543alb"], ["https://tec.openplanner.team/stops/X739afb", "https://tec.openplanner.team/stops/X739aia"], ["https://tec.openplanner.team/stops/N387aaa", "https://tec.openplanner.team/stops/N387abb"], ["https://tec.openplanner.team/stops/H3bo102a", "https://tec.openplanner.team/stops/H3bo102b"], ["https://tec.openplanner.team/stops/H4te248a", "https://tec.openplanner.team/stops/H4te258a"], ["https://tec.openplanner.team/stops/N111ada", "https://tec.openplanner.team/stops/N111adb"], ["https://tec.openplanner.team/stops/H5qu143c", "https://tec.openplanner.team/stops/H5qu143d"], ["https://tec.openplanner.team/stops/Bnivace1", "https://tec.openplanner.team/stops/Bnivsnu1"], ["https://tec.openplanner.team/stops/LWOcomm1", "https://tec.openplanner.team/stops/LWOruis2"], ["https://tec.openplanner.team/stops/H4fg116b", "https://tec.openplanner.team/stops/H4wn128b"], ["https://tec.openplanner.team/stops/H4lp120b", "https://tec.openplanner.team/stops/H4lp121b"], ["https://tec.openplanner.team/stops/LVApark1", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://tec.openplanner.team/stops/Llgjoie3", "https://tec.openplanner.team/stops/Llgmako1"], ["https://tec.openplanner.team/stops/Cmmecol1", "https://tec.openplanner.team/stops/Cmmegli2"], ["https://tec.openplanner.team/stops/Bzlucam1", "https://tec.openplanner.team/stops/Bzlufbo1"], ["https://tec.openplanner.team/stops/H4jm117a", "https://tec.openplanner.team/stops/H4ry133a"], ["https://tec.openplanner.team/stops/H4be103a", "https://tec.openplanner.team/stops/H4be104a"], ["https://tec.openplanner.team/stops/Barqbar1", "https://tec.openplanner.team/stops/Bmonbor2"], ["https://tec.openplanner.team/stops/X809aba", "https://tec.openplanner.team/stops/X811aaa"], ["https://tec.openplanner.team/stops/LhGfl241", "https://tec.openplanner.team/stops/LhGscha*"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N331aga"], ["https://tec.openplanner.team/stops/H1ob339a", "https://tec.openplanner.team/stops/H1sd366b"], ["https://tec.openplanner.team/stops/NC24aja", "https://tec.openplanner.team/stops/NC24ajb"], ["https://tec.openplanner.team/stops/Bolgfon2", "https://tec.openplanner.team/stops/Bpthcai2"], ["https://tec.openplanner.team/stops/LOcgdro1", "https://tec.openplanner.team/stops/LOcgdro4"], ["https://tec.openplanner.team/stops/Bperrsr1", "https://tec.openplanner.team/stops/Bperwil1"], ["https://tec.openplanner.team/stops/H1mq198b", "https://tec.openplanner.team/stops/H5ar104a"], ["https://tec.openplanner.team/stops/Crewaha1", "https://tec.openplanner.team/stops/Crewaha2"], ["https://tec.openplanner.team/stops/LCOdrol1", "https://tec.openplanner.team/stops/Lpejonc1"], ["https://tec.openplanner.team/stops/Clusncb1", "https://tec.openplanner.team/stops/Cobmven2"], ["https://tec.openplanner.team/stops/Buccdch1", "https://tec.openplanner.team/stops/Bucceng1"], ["https://tec.openplanner.team/stops/Lancolr1", "https://tec.openplanner.team/stops/Lancolr2"], ["https://tec.openplanner.team/stops/LBWeg--3", "https://tec.openplanner.team/stops/LBWviad1"], ["https://tec.openplanner.team/stops/H2mm136a", "https://tec.openplanner.team/stops/H2mm144b"], ["https://tec.openplanner.team/stops/X601cla", "https://tec.openplanner.team/stops/X601cub"], ["https://tec.openplanner.team/stops/N201aoc", "https://tec.openplanner.team/stops/N201apb"], ["https://tec.openplanner.team/stops/Cflecga1", "https://tec.openplanner.team/stops/Cflsabl2"], ["https://tec.openplanner.team/stops/Bneepne2", "https://tec.openplanner.team/stops/Bneesan1"], ["https://tec.openplanner.team/stops/H1ma230a", "https://tec.openplanner.team/stops/H1sd344b"], ["https://tec.openplanner.team/stops/H4bf106a", "https://tec.openplanner.team/stops/H4by116a"], ["https://tec.openplanner.team/stops/Bjodcad2", "https://tec.openplanner.team/stops/Bjodeco1"], ["https://tec.openplanner.team/stops/Clrecol2", "https://tec.openplanner.team/stops/Clrmarl3"], ["https://tec.openplanner.team/stops/LdE179-2", "https://tec.openplanner.team/stops/LeIdeid1"], ["https://tec.openplanner.team/stops/H1ba113b", "https://tec.openplanner.team/stops/H1gh143b"], ["https://tec.openplanner.team/stops/H1ma233a", "https://tec.openplanner.team/stops/H1ma233c"], ["https://tec.openplanner.team/stops/H4gu112b", "https://tec.openplanner.team/stops/H4we134a"], ["https://tec.openplanner.team/stops/Baegm502", "https://tec.openplanner.team/stops/NR38acb"], ["https://tec.openplanner.team/stops/N351aqb", "https://tec.openplanner.team/stops/N351ara"], ["https://tec.openplanner.team/stops/LLOberl2", "https://tec.openplanner.team/stops/LRRtrix1"], ["https://tec.openplanner.team/stops/LTiespe1", "https://tec.openplanner.team/stops/LTigera1"], ["https://tec.openplanner.team/stops/X637aba", "https://tec.openplanner.team/stops/X637aqb"], ["https://tec.openplanner.team/stops/H5rx105a", "https://tec.openplanner.team/stops/H5rx134b"], ["https://tec.openplanner.team/stops/Bmalwop1", "https://tec.openplanner.team/stops/Btlbcha1"], ["https://tec.openplanner.team/stops/LeYauto2", "https://tec.openplanner.team/stops/LeYdorf2"], ["https://tec.openplanner.team/stops/LTiflor2", "https://tec.openplanner.team/stops/LTiterr2"], ["https://tec.openplanner.team/stops/X899abb", "https://tec.openplanner.team/stops/X899ahb"], ["https://tec.openplanner.team/stops/H4vx361a", "https://tec.openplanner.team/stops/H4vx365b"], ["https://tec.openplanner.team/stops/LMupont1", "https://tec.openplanner.team/stops/LMuvill1"], ["https://tec.openplanner.team/stops/X750axb", "https://tec.openplanner.team/stops/X750baa"], ["https://tec.openplanner.team/stops/LAMecse*", "https://tec.openplanner.team/stops/LVLf37-1"], ["https://tec.openplanner.team/stops/Lsttech1", "https://tec.openplanner.team/stops/Lsttech2"], ["https://tec.openplanner.team/stops/Crodrai1", "https://tec.openplanner.team/stops/Cronova1"], ["https://tec.openplanner.team/stops/X649acb", "https://tec.openplanner.team/stops/X671aea"], ["https://tec.openplanner.team/stops/H1ms303a", "https://tec.openplanner.team/stops/H1ms360a"], ["https://tec.openplanner.team/stops/H1bo106c", "https://tec.openplanner.team/stops/H1bo109b"], ["https://tec.openplanner.team/stops/N390afa", "https://tec.openplanner.team/stops/X349aaa"], ["https://tec.openplanner.team/stops/X982bab", "https://tec.openplanner.team/stops/X982cea"], ["https://tec.openplanner.team/stops/H2ll181b", "https://tec.openplanner.team/stops/H2ll189b"], ["https://tec.openplanner.team/stops/H4vx363b", "https://tec.openplanner.team/stops/H4vx366a"], ["https://tec.openplanner.team/stops/N120add", "https://tec.openplanner.team/stops/N120aoc"], ["https://tec.openplanner.team/stops/Bovehst2", "https://tec.openplanner.team/stops/Bovelge2"], ["https://tec.openplanner.team/stops/LBOec--1", "https://tec.openplanner.team/stops/LDAandr1"], ["https://tec.openplanner.team/stops/LmDdenk2", "https://tec.openplanner.team/stops/LmDkape2"], ["https://tec.openplanner.team/stops/H4pi133b", "https://tec.openplanner.team/stops/H4ws159a"], ["https://tec.openplanner.team/stops/LHUec--2", "https://tec.openplanner.team/stops/LTimalv2"], ["https://tec.openplanner.team/stops/H1wa147a", "https://tec.openplanner.team/stops/H1wa147b"], ["https://tec.openplanner.team/stops/N501awa", "https://tec.openplanner.team/stops/N501bab"], ["https://tec.openplanner.team/stops/H1ht132a", "https://tec.openplanner.team/stops/H1ht197b"], ["https://tec.openplanner.team/stops/LmTzoll1", "https://tec.openplanner.team/stops/LtEnach1"], ["https://tec.openplanner.team/stops/H2jo161c", "https://tec.openplanner.team/stops/H2lh127a"], ["https://tec.openplanner.team/stops/Bnvmfba2", "https://tec.openplanner.team/stops/N518acc"], ["https://tec.openplanner.team/stops/Bgemcro1", "https://tec.openplanner.team/stops/Bgemman2"], ["https://tec.openplanner.team/stops/H4bo121a", "https://tec.openplanner.team/stops/H5qu145a"], ["https://tec.openplanner.team/stops/X730acb", "https://tec.openplanner.team/stops/X753acb"], ["https://tec.openplanner.team/stops/H1gh154b", "https://tec.openplanner.team/stops/H1gh155b"], ["https://tec.openplanner.team/stops/LENaout1", "https://tec.openplanner.team/stops/LENtour1"], ["https://tec.openplanner.team/stops/X992aba", "https://tec.openplanner.team/stops/X992ajb"], ["https://tec.openplanner.team/stops/X670abb", "https://tec.openplanner.team/stops/X670aca"], ["https://tec.openplanner.team/stops/Cnachat1", "https://tec.openplanner.team/stops/Cnacout1"], ["https://tec.openplanner.team/stops/Lprcard2", "https://tec.openplanner.team/stops/Lprfoot2"], ["https://tec.openplanner.team/stops/LBvviem3", "https://tec.openplanner.team/stops/LVMfoli2"], ["https://tec.openplanner.team/stops/N101aga", "https://tec.openplanner.team/stops/N101aua"], ["https://tec.openplanner.team/stops/X953aaa", "https://tec.openplanner.team/stops/X953ada"], ["https://tec.openplanner.team/stops/H4mb139a", "https://tec.openplanner.team/stops/H4ml207a"], ["https://tec.openplanner.team/stops/N529aia", "https://tec.openplanner.team/stops/N529aja"], ["https://tec.openplanner.team/stops/LRGchap1", "https://tec.openplanner.team/stops/LRGunio3"], ["https://tec.openplanner.team/stops/N348aeb", "https://tec.openplanner.team/stops/N349aaa"], ["https://tec.openplanner.team/stops/N202ahb", "https://tec.openplanner.team/stops/N204alb"], ["https://tec.openplanner.team/stops/H4bh100a", "https://tec.openplanner.team/stops/H4ry141b"], ["https://tec.openplanner.team/stops/H2lc145b", "https://tec.openplanner.team/stops/H2lc169b"], ["https://tec.openplanner.team/stops/NL68aba", "https://tec.openplanner.team/stops/NL68afa"], ["https://tec.openplanner.team/stops/N524aha", "https://tec.openplanner.team/stops/N524aid"], ["https://tec.openplanner.team/stops/X261adb", "https://tec.openplanner.team/stops/X979aja"], ["https://tec.openplanner.team/stops/X224aeb", "https://tec.openplanner.team/stops/X394aab"], ["https://tec.openplanner.team/stops/N501crd", "https://tec.openplanner.team/stops/N501ctb"], ["https://tec.openplanner.team/stops/LBsfer-1", "https://tec.openplanner.team/stops/NL72aba"], ["https://tec.openplanner.team/stops/H5at108a", "https://tec.openplanner.team/stops/H5at108b"], ["https://tec.openplanner.team/stops/H1ob331b", "https://tec.openplanner.team/stops/H1ob333a"], ["https://tec.openplanner.team/stops/Ljuchap3", "https://tec.openplanner.team/stops/Llgcouv4"], ["https://tec.openplanner.team/stops/LVbcoul1", "https://tec.openplanner.team/stops/NL77ama"], ["https://tec.openplanner.team/stops/X729aac", "https://tec.openplanner.team/stops/X746ama"], ["https://tec.openplanner.team/stops/Lbhgare1", "https://tec.openplanner.team/stops/Lbhmc--1"], ["https://tec.openplanner.team/stops/LaAbush*", "https://tec.openplanner.team/stops/LaAhaup1"], ["https://tec.openplanner.team/stops/Bgntalt1", "https://tec.openplanner.team/stops/Bgnteco1"], ["https://tec.openplanner.team/stops/N211asa", "https://tec.openplanner.team/stops/N211baa"], ["https://tec.openplanner.team/stops/N577aga", "https://tec.openplanner.team/stops/N577ajb"], ["https://tec.openplanner.team/stops/N160aha", "https://tec.openplanner.team/stops/N160ahb"], ["https://tec.openplanner.team/stops/N515aid", "https://tec.openplanner.team/stops/N515alb"], ["https://tec.openplanner.team/stops/Ltihala2", "https://tec.openplanner.team/stops/Ltipass2"], ["https://tec.openplanner.team/stops/LNEec--1", "https://tec.openplanner.team/stops/LNEec--2"], ["https://tec.openplanner.team/stops/H1ht124a", "https://tec.openplanner.team/stops/H1ht124b"], ["https://tec.openplanner.team/stops/Bmarcha2", "https://tec.openplanner.team/stops/Bwagdeb2"], ["https://tec.openplanner.team/stops/LAWdefr1", "https://tec.openplanner.team/stops/LHGtong2"], ["https://tec.openplanner.team/stops/N506bma", "https://tec.openplanner.team/stops/N506bmb"], ["https://tec.openplanner.team/stops/H1ma233c", "https://tec.openplanner.team/stops/H1mj130b"], ["https://tec.openplanner.team/stops/Cvtchap1", "https://tec.openplanner.team/stops/Cvtvail2"], ["https://tec.openplanner.team/stops/H5pe130a", "https://tec.openplanner.team/stops/H5pe131b"], ["https://tec.openplanner.team/stops/LRObarr1", "https://tec.openplanner.team/stops/LWLeg--1"], ["https://tec.openplanner.team/stops/X879ala", "https://tec.openplanner.team/stops/X879aoa"], ["https://tec.openplanner.team/stops/H4ta117b", "https://tec.openplanner.team/stops/H4ta123a"], ["https://tec.openplanner.team/stops/Bvirdco2", "https://tec.openplanner.team/stops/Bvirgar2"], ["https://tec.openplanner.team/stops/N580abb", "https://tec.openplanner.team/stops/N580acb"], ["https://tec.openplanner.team/stops/X837aja", "https://tec.openplanner.team/stops/X837alb"], ["https://tec.openplanner.team/stops/LArmaro1", "https://tec.openplanner.team/stops/LTPbeau1"], ["https://tec.openplanner.team/stops/X622aba", "https://tec.openplanner.team/stops/X696aea"], ["https://tec.openplanner.team/stops/Cchbrou2", "https://tec.openplanner.team/stops/Cchmonu2"], ["https://tec.openplanner.team/stops/Lhrjaur1", "https://tec.openplanner.team/stops/Lhrmine2"], ["https://tec.openplanner.team/stops/H4ka185a", "https://tec.openplanner.team/stops/H4ka187b"], ["https://tec.openplanner.team/stops/X719aca", "https://tec.openplanner.team/stops/X719ada"], ["https://tec.openplanner.team/stops/LCaresi1", "https://tec.openplanner.team/stops/LCaresi2"], ["https://tec.openplanner.team/stops/H1qv113a", "https://tec.openplanner.team/stops/H1qv113b"], ["https://tec.openplanner.team/stops/N512ada", "https://tec.openplanner.team/stops/N512aeb"], ["https://tec.openplanner.team/stops/LeUkabe2", "https://tec.openplanner.team/stops/LeUwais1"], ["https://tec.openplanner.team/stops/Cbfgare2", "https://tec.openplanner.team/stops/Cbfpauc2"], ["https://tec.openplanner.team/stops/Llggcha1", "https://tec.openplanner.team/stops/Llgmaus2"], ["https://tec.openplanner.team/stops/N517ada", "https://tec.openplanner.team/stops/N517adb"], ["https://tec.openplanner.team/stops/X615ala", "https://tec.openplanner.team/stops/X615aqb"], ["https://tec.openplanner.team/stops/N352afb", "https://tec.openplanner.team/stops/N355aeb"], ["https://tec.openplanner.team/stops/LeUkehr3", "https://tec.openplanner.team/stops/LeUsch%C3%B61"], ["https://tec.openplanner.team/stops/Cgoathe1", "https://tec.openplanner.team/stops/Cgohnda2"], ["https://tec.openplanner.team/stops/N543ahb", "https://tec.openplanner.team/stops/N543arb"], ["https://tec.openplanner.team/stops/LSygerm2", "https://tec.openplanner.team/stops/LSythie2"], ["https://tec.openplanner.team/stops/N506azb", "https://tec.openplanner.team/stops/N506bna"], ["https://tec.openplanner.team/stops/X659aca", "https://tec.openplanner.team/stops/X659avb"], ["https://tec.openplanner.team/stops/H4ka181b", "https://tec.openplanner.team/stops/H4ka191b"], ["https://tec.openplanner.team/stops/LsVgend2", "https://tec.openplanner.team/stops/LsVgore2"], ["https://tec.openplanner.team/stops/H4ba101a", "https://tec.openplanner.team/stops/H4ba101b"], ["https://tec.openplanner.team/stops/LHHindu1", "https://tec.openplanner.team/stops/LHHindu2"], ["https://tec.openplanner.team/stops/LJAbois2", "https://tec.openplanner.team/stops/Lmnchal1"], ["https://tec.openplanner.team/stops/X724aaa", "https://tec.openplanner.team/stops/X724aib"], ["https://tec.openplanner.team/stops/X717afb", "https://tec.openplanner.team/stops/X718abb"], ["https://tec.openplanner.team/stops/LDpzol-2", "https://tec.openplanner.team/stops/LMastat3"], ["https://tec.openplanner.team/stops/N106alb", "https://tec.openplanner.team/stops/N137aja"], ["https://tec.openplanner.team/stops/H2ll176a", "https://tec.openplanner.team/stops/H2ll176c"], ["https://tec.openplanner.team/stops/H1wa158a", "https://tec.openplanner.team/stops/H1wa158b"], ["https://tec.openplanner.team/stops/X788abb", "https://tec.openplanner.team/stops/X788abd"], ["https://tec.openplanner.team/stops/Bnivfhu2", "https://tec.openplanner.team/stops/Bnivrsh1"], ["https://tec.openplanner.team/stops/N532ada", "https://tec.openplanner.team/stops/N533aqa"], ["https://tec.openplanner.team/stops/Cci22ao1", "https://tec.openplanner.team/stops/Cci22ao2"], ["https://tec.openplanner.team/stops/Ctufleu3", "https://tec.openplanner.team/stops/Cturoge2"], ["https://tec.openplanner.team/stops/LHAdeho2", "https://tec.openplanner.team/stops/LHAleru2"], ["https://tec.openplanner.team/stops/H5rx101a", "https://tec.openplanner.team/stops/H5rx101b"], ["https://tec.openplanner.team/stops/Crachap2", "https://tec.openplanner.team/stops/Cracime2"], ["https://tec.openplanner.team/stops/Llgfred1", "https://tec.openplanner.team/stops/Llglibo3"], ["https://tec.openplanner.team/stops/Clodesc1", "https://tec.openplanner.team/stops/Clomari2"], ["https://tec.openplanner.team/stops/X903ada", "https://tec.openplanner.team/stops/X904adb"], ["https://tec.openplanner.team/stops/Bbsiabb1", "https://tec.openplanner.team/stops/Bbsipos2"], ["https://tec.openplanner.team/stops/LFrfrai2", "https://tec.openplanner.team/stops/LFrvesd1"], ["https://tec.openplanner.team/stops/Cmx3arb1", "https://tec.openplanner.team/stops/Cmx3arb2"], ["https://tec.openplanner.team/stops/LBssucr2", "https://tec.openplanner.team/stops/NL72aeb"], ["https://tec.openplanner.team/stops/LAUbirv2", "https://tec.openplanner.team/stops/LLCeg--1"], ["https://tec.openplanner.team/stops/H1qu103a", "https://tec.openplanner.team/stops/H1qu106a"], ["https://tec.openplanner.team/stops/N241aca", "https://tec.openplanner.team/stops/N570agb"], ["https://tec.openplanner.team/stops/X818amb", "https://tec.openplanner.team/stops/X818avb"], ["https://tec.openplanner.team/stops/H1si152b", "https://tec.openplanner.team/stops/H1si162a"], ["https://tec.openplanner.team/stops/LAMgare2", "https://tec.openplanner.team/stops/LAMgreg2"], ["https://tec.openplanner.team/stops/H3so161b", "https://tec.openplanner.team/stops/H3so166a"], ["https://tec.openplanner.team/stops/X780aea", "https://tec.openplanner.team/stops/X780afa"], ["https://tec.openplanner.team/stops/LLMcouv2", "https://tec.openplanner.team/stops/LLMjacq1"], ["https://tec.openplanner.team/stops/X952aea", "https://tec.openplanner.team/stops/X952aha"], ["https://tec.openplanner.team/stops/N534aya", "https://tec.openplanner.team/stops/N534ayb"], ["https://tec.openplanner.team/stops/LrUbrac1", "https://tec.openplanner.team/stops/LsBzent1"], ["https://tec.openplanner.team/stops/LdUkreu3", "https://tec.openplanner.team/stops/LeSsaal*"], ["https://tec.openplanner.team/stops/LLSba6-1", "https://tec.openplanner.team/stops/LLSba6-2"], ["https://tec.openplanner.team/stops/X979adb", "https://tec.openplanner.team/stops/X979afa"], ["https://tec.openplanner.team/stops/Bkrabhu1", "https://tec.openplanner.team/stops/Bkrapri2"], ["https://tec.openplanner.team/stops/Blanove1", "https://tec.openplanner.team/stops/LWscona2"], ["https://tec.openplanner.team/stops/N534acb", "https://tec.openplanner.team/stops/N543agb"], ["https://tec.openplanner.team/stops/LPRcha-*", "https://tec.openplanner.team/stops/LTRespe1"], ["https://tec.openplanner.team/stops/N230aea", "https://tec.openplanner.team/stops/N230ama"], ["https://tec.openplanner.team/stops/Ljetomb1", "https://tec.openplanner.team/stops/Ljetout4"], ["https://tec.openplanner.team/stops/N101adb", "https://tec.openplanner.team/stops/N101adc"], ["https://tec.openplanner.team/stops/Ladegli1", "https://tec.openplanner.team/stops/Ladjuif2"], ["https://tec.openplanner.team/stops/N501dsa", "https://tec.openplanner.team/stops/N501jta"], ["https://tec.openplanner.team/stops/LABbert1", "https://tec.openplanner.team/stops/LABvill2"], ["https://tec.openplanner.team/stops/X662aca", "https://tec.openplanner.team/stops/X663aca"], ["https://tec.openplanner.team/stops/H5el100b", "https://tec.openplanner.team/stops/H5el117a"], ["https://tec.openplanner.team/stops/N528afa", "https://tec.openplanner.team/stops/N528aja"], ["https://tec.openplanner.team/stops/X820aba", "https://tec.openplanner.team/stops/X820aca"], ["https://tec.openplanner.team/stops/LNipla4", "https://tec.openplanner.team/stops/LNipre-2"], ["https://tec.openplanner.team/stops/N118aka", "https://tec.openplanner.team/stops/N118ala"], ["https://tec.openplanner.team/stops/Csoforr3", "https://tec.openplanner.team/stops/Csograf1"], ["https://tec.openplanner.team/stops/H2ca103b", "https://tec.openplanner.team/stops/H2ca103d"], ["https://tec.openplanner.team/stops/LkOaugu1", "https://tec.openplanner.team/stops/LkOaugu2"], ["https://tec.openplanner.team/stops/LRGgend1", "https://tec.openplanner.team/stops/LRGgend3"], ["https://tec.openplanner.team/stops/N557afb", "https://tec.openplanner.team/stops/N557aha"], ["https://tec.openplanner.team/stops/Lhrpost1", "https://tec.openplanner.team/stops/Lhrpost2"], ["https://tec.openplanner.team/stops/X595aea", "https://tec.openplanner.team/stops/X595agb"], ["https://tec.openplanner.team/stops/H4ss154a", "https://tec.openplanner.team/stops/H4ss156a"], ["https://tec.openplanner.team/stops/LWRbomb2", "https://tec.openplanner.team/stops/LWRbomb3"], ["https://tec.openplanner.team/stops/N561aia", "https://tec.openplanner.team/stops/N561aib"], ["https://tec.openplanner.team/stops/H1gh144b", "https://tec.openplanner.team/stops/H1je215a"], ["https://tec.openplanner.team/stops/X634aea", "https://tec.openplanner.team/stops/X634ala"], ["https://tec.openplanner.team/stops/LDomoul2", "https://tec.openplanner.team/stops/LListie2"], ["https://tec.openplanner.team/stops/Cmlhauc4", "https://tec.openplanner.team/stops/Cmlvesp1"], ["https://tec.openplanner.team/stops/N103ahb", "https://tec.openplanner.team/stops/N103aib"], ["https://tec.openplanner.team/stops/Bllnfla3", "https://tec.openplanner.team/stops/Bllngle1"], ["https://tec.openplanner.team/stops/Llgcita1", "https://tec.openplanner.team/stops/Llgcoll1"], ["https://tec.openplanner.team/stops/Bbgepau2", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://tec.openplanner.team/stops/X779aea", "https://tec.openplanner.team/stops/X779afb"], ["https://tec.openplanner.team/stops/H4hx113a", "https://tec.openplanner.team/stops/H4hx121b"], ["https://tec.openplanner.team/stops/X672ala", "https://tec.openplanner.team/stops/X672aob"], ["https://tec.openplanner.team/stops/N301apa", "https://tec.openplanner.team/stops/N301apb"], ["https://tec.openplanner.team/stops/X730agb", "https://tec.openplanner.team/stops/X731ahb"], ["https://tec.openplanner.team/stops/Bhalgar1", "https://tec.openplanner.team/stops/Bhalpar2"], ["https://tec.openplanner.team/stops/N214afa", "https://tec.openplanner.team/stops/N214afb"], ["https://tec.openplanner.team/stops/N542ada", "https://tec.openplanner.team/stops/N577akb"], ["https://tec.openplanner.team/stops/LHCcroy2", "https://tec.openplanner.team/stops/LHChoek4"], ["https://tec.openplanner.team/stops/LWargeu2", "https://tec.openplanner.team/stops/LWaruth2"], ["https://tec.openplanner.team/stops/X872ada", "https://tec.openplanner.team/stops/X872agb"], ["https://tec.openplanner.team/stops/X899aab", "https://tec.openplanner.team/stops/X899aeb"], ["https://tec.openplanner.team/stops/Cjucopp1", "https://tec.openplanner.team/stops/Cjupn1"], ["https://tec.openplanner.team/stops/H4fo119b", "https://tec.openplanner.team/stops/H4ga152a"], ["https://tec.openplanner.team/stops/H1eo106b", "https://tec.openplanner.team/stops/H1ju119a"], ["https://tec.openplanner.team/stops/H4ml207a", "https://tec.openplanner.team/stops/H4ml208a"], ["https://tec.openplanner.team/stops/H1by100b", "https://tec.openplanner.team/stops/H1by101a"], ["https://tec.openplanner.team/stops/Ccugail2", "https://tec.openplanner.team/stops/Ccupres1"], ["https://tec.openplanner.team/stops/H2fy119a", "https://tec.openplanner.team/stops/H2fy123c"], ["https://tec.openplanner.team/stops/LLrquar1", "https://tec.openplanner.team/stops/LTHmont1"], ["https://tec.openplanner.team/stops/Cnacout1", "https://tec.openplanner.team/stops/N160afa"], ["https://tec.openplanner.team/stops/Bnivaig1", "https://tec.openplanner.team/stops/Bnivath1"], ["https://tec.openplanner.team/stops/X994afb", "https://tec.openplanner.team/stops/X994alb"], ["https://tec.openplanner.team/stops/N512ala", "https://tec.openplanner.team/stops/N512alb"], ["https://tec.openplanner.team/stops/N117aga", "https://tec.openplanner.team/stops/N150aka"], ["https://tec.openplanner.team/stops/LATdieu1", "https://tec.openplanner.team/stops/LATphar1"], ["https://tec.openplanner.team/stops/LSShous2", "https://tec.openplanner.team/stops/LYEphar1"], ["https://tec.openplanner.team/stops/Cnalava2", "https://tec.openplanner.team/stops/Cnapair1"], ["https://tec.openplanner.team/stops/Beclbar2", "https://tec.openplanner.team/stops/H2me116b"], ["https://tec.openplanner.team/stops/N535aca", "https://tec.openplanner.team/stops/N535acc"], ["https://tec.openplanner.team/stops/X773ala", "https://tec.openplanner.team/stops/X773ama"], ["https://tec.openplanner.team/stops/X896acb", "https://tec.openplanner.team/stops/X896adb"], ["https://tec.openplanner.team/stops/Cmgpthi2", "https://tec.openplanner.team/stops/Cmgtour2"], ["https://tec.openplanner.team/stops/Bezeksj1", "https://tec.openplanner.team/stops/Bezeksj4"], ["https://tec.openplanner.team/stops/X805aab", "https://tec.openplanner.team/stops/X807abb"], ["https://tec.openplanner.team/stops/LmNkirc1", "https://tec.openplanner.team/stops/LmNkirc2"], ["https://tec.openplanner.team/stops/X802aga", "https://tec.openplanner.team/stops/X802aha"], ["https://tec.openplanner.team/stops/Cmaest1", "https://tec.openplanner.team/stops/Cmaest2"], ["https://tec.openplanner.team/stops/X811aab", "https://tec.openplanner.team/stops/X811abb"], ["https://tec.openplanner.team/stops/H1hr122a", "https://tec.openplanner.team/stops/H3so171b"], ["https://tec.openplanner.team/stops/X941adb", "https://tec.openplanner.team/stops/X941aha"], ["https://tec.openplanner.team/stops/Lmobols2", "https://tec.openplanner.team/stops/Lmogoff1"], ["https://tec.openplanner.team/stops/N539alb", "https://tec.openplanner.team/stops/N539aob"], ["https://tec.openplanner.team/stops/Bbcocou1", "https://tec.openplanner.team/stops/Bbcodam4"], ["https://tec.openplanner.team/stops/Lengran1", "https://tec.openplanner.team/stops/Lengran2"], ["https://tec.openplanner.team/stops/Blindel2", "https://tec.openplanner.team/stops/Blindel3"], ["https://tec.openplanner.team/stops/H1ag104b", "https://tec.openplanner.team/stops/H1ro140b"], ["https://tec.openplanner.team/stops/H4ef109a", "https://tec.openplanner.team/stops/H4ef111a"], ["https://tec.openplanner.team/stops/N104aaa", "https://tec.openplanner.team/stops/N104aac"], ["https://tec.openplanner.team/stops/Bboncfv1", "https://tec.openplanner.team/stops/Bbonegl2"], ["https://tec.openplanner.team/stops/Bbcohou3", "https://tec.openplanner.team/stops/Bbcomar1"], ["https://tec.openplanner.team/stops/LSPdesc1", "https://tec.openplanner.team/stops/LSPsorb1"], ["https://tec.openplanner.team/stops/Bblaall2", "https://tec.openplanner.team/stops/Bblarbe1"], ["https://tec.openplanner.team/stops/LCOdrol1", "https://tec.openplanner.team/stops/LCOdrol2"], ["https://tec.openplanner.team/stops/Chhsncb2", "https://tec.openplanner.team/stops/Chhthui1"], ["https://tec.openplanner.team/stops/H4bd112b", "https://tec.openplanner.team/stops/H4ma203a"], ["https://tec.openplanner.team/stops/N513ada", "https://tec.openplanner.team/stops/N513agd"], ["https://tec.openplanner.team/stops/Btlbgla2", "https://tec.openplanner.team/stops/Btstw751"], ["https://tec.openplanner.team/stops/Ljuvieu2", "https://tec.openplanner.team/stops/LMFmerl1"], ["https://tec.openplanner.team/stops/X221aac", "https://tec.openplanner.team/stops/X221aad"], ["https://tec.openplanner.team/stops/H4fl115a", "https://tec.openplanner.team/stops/H4lp126b"], ["https://tec.openplanner.team/stops/N526adb", "https://tec.openplanner.team/stops/N532aea"], ["https://tec.openplanner.team/stops/Cthbeff1", "https://tec.openplanner.team/stops/Cthvbas3"], ["https://tec.openplanner.team/stops/Bblmcel1", "https://tec.openplanner.team/stops/Bblmpro1"], ["https://tec.openplanner.team/stops/NL67aaa", "https://tec.openplanner.team/stops/NL67aba"], ["https://tec.openplanner.team/stops/H1mj125a", "https://tec.openplanner.team/stops/H1ml112a"], ["https://tec.openplanner.team/stops/LARarge2", "https://tec.openplanner.team/stops/LHAprei2"], ["https://tec.openplanner.team/stops/H1cv104b", "https://tec.openplanner.team/stops/H1lm107a"], ["https://tec.openplanner.team/stops/X769aca", "https://tec.openplanner.team/stops/X769acb"], ["https://tec.openplanner.team/stops/X650aoa", "https://tec.openplanner.team/stops/X671aga"], ["https://tec.openplanner.team/stops/LWzeg--*", "https://tec.openplanner.team/stops/LWzfuma1"], ["https://tec.openplanner.team/stops/Llmcoop1", "https://tec.openplanner.team/stops/LWetrib1"], ["https://tec.openplanner.team/stops/NC44aaa", "https://tec.openplanner.team/stops/NC44aeb"], ["https://tec.openplanner.team/stops/N542aqa", "https://tec.openplanner.team/stops/N577afa"], ["https://tec.openplanner.team/stops/Lemmeha1", "https://tec.openplanner.team/stops/Lemmeha2"], ["https://tec.openplanner.team/stops/Lemmc--1", "https://tec.openplanner.team/stops/Lemmc--2"], ["https://tec.openplanner.team/stops/Bpielom1", "https://tec.openplanner.team/stops/Bpielon2"], ["https://tec.openplanner.team/stops/Llghoch1", "https://tec.openplanner.team/stops/Llghull2"], ["https://tec.openplanner.team/stops/Lbrfoid1", "https://tec.openplanner.team/stops/Lbrmc--2"], ["https://tec.openplanner.team/stops/H4bl106a", "https://tec.openplanner.team/stops/H4ga158a"], ["https://tec.openplanner.team/stops/LWEmito2", "https://tec.openplanner.team/stops/LWEwilc2"], ["https://tec.openplanner.team/stops/Btubcvi2", "https://tec.openplanner.team/stops/Btubdeh1"], ["https://tec.openplanner.team/stops/X982ala", "https://tec.openplanner.team/stops/X982ama"], ["https://tec.openplanner.team/stops/Ccybouc3", "https://tec.openplanner.team/stops/Ccybouc4"], ["https://tec.openplanner.team/stops/X657aeb", "https://tec.openplanner.team/stops/X742ada"], ["https://tec.openplanner.team/stops/X941acd", "https://tec.openplanner.team/stops/X941aea"], ["https://tec.openplanner.team/stops/LATcham*", "https://tec.openplanner.team/stops/LATmonu1"], ["https://tec.openplanner.team/stops/H5rx101b", "https://tec.openplanner.team/stops/H5rx105a"], ["https://tec.openplanner.team/stops/NC14aba", "https://tec.openplanner.team/stops/NC14abb"], ["https://tec.openplanner.team/stops/Bhanath1", "https://tec.openplanner.team/stops/Bhanath2"], ["https://tec.openplanner.team/stops/N562aib", "https://tec.openplanner.team/stops/N562azb"], ["https://tec.openplanner.team/stops/LSLdall1", "https://tec.openplanner.team/stops/LSLfler1"], ["https://tec.openplanner.team/stops/Blhunys3", "https://tec.openplanner.team/stops/Blhupri2"], ["https://tec.openplanner.team/stops/Cgzgrru1", "https://tec.openplanner.team/stops/Cgzrust2"], ["https://tec.openplanner.team/stops/H1ho125c", "https://tec.openplanner.team/stops/H1ho139a"], ["https://tec.openplanner.team/stops/X725ava", "https://tec.openplanner.team/stops/X725aya"], ["https://tec.openplanner.team/stops/N529ajb", "https://tec.openplanner.team/stops/N584aob"], ["https://tec.openplanner.team/stops/X619agb", "https://tec.openplanner.team/stops/X619aha"], ["https://tec.openplanner.team/stops/Cthnord1", "https://tec.openplanner.team/stops/Cthvbas4"], ["https://tec.openplanner.team/stops/LLTcent1", "https://tec.openplanner.team/stops/LLTtour2"], ["https://tec.openplanner.team/stops/Csychap1", "https://tec.openplanner.team/stops/Csyplac1"], ["https://tec.openplanner.team/stops/LHZbren2", "https://tec.openplanner.team/stops/LHZcouv1"], ["https://tec.openplanner.team/stops/X767aab", "https://tec.openplanner.team/stops/X767abb"], ["https://tec.openplanner.team/stops/Llgcita2", "https://tec.openplanner.team/stops/LlgLAMB7"], ["https://tec.openplanner.team/stops/Canjon2", "https://tec.openplanner.team/stops/Canjonc2"], ["https://tec.openplanner.team/stops/X601aud", "https://tec.openplanner.team/stops/X601ayb"], ["https://tec.openplanner.team/stops/N218aab", "https://tec.openplanner.team/stops/N218adb"], ["https://tec.openplanner.team/stops/N501kpa", "https://tec.openplanner.team/stops/N501mvc"], ["https://tec.openplanner.team/stops/LeUcamp1", "https://tec.openplanner.team/stops/LeUoe541"], ["https://tec.openplanner.team/stops/Lveanto1", "https://tec.openplanner.team/stops/Lvelimi2"], ["https://tec.openplanner.team/stops/Lceembo1", "https://tec.openplanner.team/stops/Lcepoul2"], ["https://tec.openplanner.team/stops/N529aeb", "https://tec.openplanner.team/stops/N529afb"], ["https://tec.openplanner.team/stops/LHGbeur3", "https://tec.openplanner.team/stops/LHGikea1"], ["https://tec.openplanner.team/stops/Lhuderu2", "https://tec.openplanner.team/stops/Lhueg--2"], ["https://tec.openplanner.team/stops/N222aya", "https://tec.openplanner.team/stops/X222ala"], ["https://tec.openplanner.team/stops/LWazoni2", "https://tec.openplanner.team/stops/LWLhagi1"], ["https://tec.openplanner.team/stops/H1ho141a", "https://tec.openplanner.team/stops/H1ho141b"], ["https://tec.openplanner.team/stops/X623aha", "https://tec.openplanner.team/stops/X623aia"], ["https://tec.openplanner.team/stops/X955aaa", "https://tec.openplanner.team/stops/X955aea"], ["https://tec.openplanner.team/stops/N542ada", "https://tec.openplanner.team/stops/N542afa"], ["https://tec.openplanner.team/stops/X638aqa", "https://tec.openplanner.team/stops/X638aqb"], ["https://tec.openplanner.team/stops/LAWvill1", "https://tec.openplanner.team/stops/LAWvill2"], ["https://tec.openplanner.team/stops/N505ajb", "https://tec.openplanner.team/stops/N512awa"], ["https://tec.openplanner.team/stops/Cmecomb1", "https://tec.openplanner.team/stops/Cmehels1"], ["https://tec.openplanner.team/stops/Bbch4br4", "https://tec.openplanner.team/stops/Bbch4br5"], ["https://tec.openplanner.team/stops/LSdbote2", "https://tec.openplanner.team/stops/LSdcarr1"], ["https://tec.openplanner.team/stops/X947adb", "https://tec.openplanner.team/stops/X947afb"], ["https://tec.openplanner.team/stops/N501gib", "https://tec.openplanner.team/stops/N501gsa"], ["https://tec.openplanner.team/stops/Blmlbif2", "https://tec.openplanner.team/stops/Brsrmon3"], ["https://tec.openplanner.team/stops/Barqhpe1", "https://tec.openplanner.team/stops/Barqres2"], ["https://tec.openplanner.team/stops/X902aia", "https://tec.openplanner.team/stops/X903aab"], ["https://tec.openplanner.team/stops/Cvvcime1", "https://tec.openplanner.team/stops/Cvvcime2"], ["https://tec.openplanner.team/stops/N207adc", "https://tec.openplanner.team/stops/N207add"], ["https://tec.openplanner.team/stops/Bblmwma1", "https://tec.openplanner.team/stops/Bwlhppg4"], ["https://tec.openplanner.team/stops/H4ep130a", "https://tec.openplanner.team/stops/H4la199a"], ["https://tec.openplanner.team/stops/Bptecar2", "https://tec.openplanner.team/stops/Brebrog2"], ["https://tec.openplanner.team/stops/X904afa", "https://tec.openplanner.team/stops/X904ahb"], ["https://tec.openplanner.team/stops/H4bq100a", "https://tec.openplanner.team/stops/H4bq102a"], ["https://tec.openplanner.team/stops/X614avb", "https://tec.openplanner.team/stops/X615aqa"], ["https://tec.openplanner.team/stops/Ljhjeha*", "https://tec.openplanner.team/stops/LPobois2"], ["https://tec.openplanner.team/stops/LHUchpl1", "https://tec.openplanner.team/stops/LHUchpl2"], ["https://tec.openplanner.team/stops/H1pw122a", "https://tec.openplanner.team/stops/H1wa154b"], ["https://tec.openplanner.team/stops/H1br125b", "https://tec.openplanner.team/stops/H2tr253a"], ["https://tec.openplanner.team/stops/X948apb", "https://tec.openplanner.team/stops/X948ara"], ["https://tec.openplanner.team/stops/Bsgibla2", "https://tec.openplanner.team/stops/Bsgipha3"], ["https://tec.openplanner.team/stops/LJUmc--2", "https://tec.openplanner.team/stops/LPAchpl2"], ["https://tec.openplanner.team/stops/Bwatfau1", "https://tec.openplanner.team/stops/Bwatle32"], ["https://tec.openplanner.team/stops/LHAarge1", "https://tec.openplanner.team/stops/LHApthe1"], ["https://tec.openplanner.team/stops/LBjflor1", "https://tec.openplanner.team/stops/LBjflor2"], ["https://tec.openplanner.team/stops/H1sy147a", "https://tec.openplanner.team/stops/H1sy150a"], ["https://tec.openplanner.team/stops/N512awa", "https://tec.openplanner.team/stops/N512awb"], ["https://tec.openplanner.team/stops/Lemdieu1", "https://tec.openplanner.team/stops/Lemjacq2"], ["https://tec.openplanner.team/stops/H1gh167a", "https://tec.openplanner.team/stops/H1gh167b"], ["https://tec.openplanner.team/stops/H2sb243a", "https://tec.openplanner.team/stops/H2sb243b"], ["https://tec.openplanner.team/stops/N351asa", "https://tec.openplanner.team/stops/N351asb"], ["https://tec.openplanner.team/stops/Chpatel2", "https://tec.openplanner.team/stops/Chpcarp1"], ["https://tec.openplanner.team/stops/H3bo103b", "https://tec.openplanner.team/stops/H3th127a"], ["https://tec.openplanner.team/stops/X730aca", "https://tec.openplanner.team/stops/X730aea"], ["https://tec.openplanner.team/stops/Lcacris2", "https://tec.openplanner.team/stops/Lvchaus1"], ["https://tec.openplanner.team/stops/NC24aia", "https://tec.openplanner.team/stops/NC24aja"], ["https://tec.openplanner.team/stops/NH01ara", "https://tec.openplanner.team/stops/NH01arb"], ["https://tec.openplanner.team/stops/Bsaubbo2", "https://tec.openplanner.team/stops/N541aca"], ["https://tec.openplanner.team/stops/N120agb", "https://tec.openplanner.team/stops/N120ahb"], ["https://tec.openplanner.team/stops/LBSnouw2", "https://tec.openplanner.team/stops/LBStong1"], ["https://tec.openplanner.team/stops/Lhrbrou1", "https://tec.openplanner.team/stops/Lhrrhee*"], ["https://tec.openplanner.team/stops/Cfrcoqu1", "https://tec.openplanner.team/stops/Cfrsour2"], ["https://tec.openplanner.team/stops/X904aea", "https://tec.openplanner.team/stops/X904aga"], ["https://tec.openplanner.team/stops/LAxbott1", "https://tec.openplanner.team/stops/Lmigare2"], ["https://tec.openplanner.team/stops/LmDelek2", "https://tec.openplanner.team/stops/LsVfeye1"], ["https://tec.openplanner.team/stops/Blontry1", "https://tec.openplanner.team/stops/Bptbsar2"], ["https://tec.openplanner.team/stops/H1ha194b", "https://tec.openplanner.team/stops/H1vh137a"], ["https://tec.openplanner.team/stops/Crcgare1", "https://tec.openplanner.team/stops/Crcrgar1"], ["https://tec.openplanner.team/stops/LeLbutg1", "https://tec.openplanner.team/stops/LnIfrie1"], ["https://tec.openplanner.team/stops/H4co104a", "https://tec.openplanner.team/stops/H4co158b"], ["https://tec.openplanner.team/stops/Lhragri1", "https://tec.openplanner.team/stops/Lhrmura2"], ["https://tec.openplanner.team/stops/H4ma418a", "https://tec.openplanner.team/stops/H4oq228b"], ["https://tec.openplanner.team/stops/Cmecite1", "https://tec.openplanner.team/stops/Csabrun1"], ["https://tec.openplanner.team/stops/LNAbras1", "https://tec.openplanner.team/stops/LNAbras5"], ["https://tec.openplanner.team/stops/X811aib", "https://tec.openplanner.team/stops/X811ala"], ["https://tec.openplanner.team/stops/N539aab", "https://tec.openplanner.team/stops/N540aha"], ["https://tec.openplanner.team/stops/X948avb", "https://tec.openplanner.team/stops/X948bba"], ["https://tec.openplanner.team/stops/N270afa", "https://tec.openplanner.team/stops/N270afc"], ["https://tec.openplanner.team/stops/NL74aba", "https://tec.openplanner.team/stops/NL74abb"], ["https://tec.openplanner.team/stops/H4mo181b", "https://tec.openplanner.team/stops/H4rk101a"], ["https://tec.openplanner.team/stops/LhGcasi1", "https://tec.openplanner.team/stops/LkEmax-2"], ["https://tec.openplanner.team/stops/N501ewa", "https://tec.openplanner.team/stops/N501hca"], ["https://tec.openplanner.team/stops/H4lz117a", "https://tec.openplanner.team/stops/H4lz118b"], ["https://tec.openplanner.team/stops/LGemari1", "https://tec.openplanner.team/stops/LGevygh1"], ["https://tec.openplanner.team/stops/Lsedavy1", "https://tec.openplanner.team/stops/Lseivoz2"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Llojeme4"], ["https://tec.openplanner.team/stops/N347aga", "https://tec.openplanner.team/stops/X347aaa"], ["https://tec.openplanner.team/stops/N168aaa", "https://tec.openplanner.team/stops/N168aab"], ["https://tec.openplanner.team/stops/N544aaa", "https://tec.openplanner.team/stops/N544aba"], ["https://tec.openplanner.team/stops/H1ob334b", "https://tec.openplanner.team/stops/H1ob341b"], ["https://tec.openplanner.team/stops/N520aba", "https://tec.openplanner.team/stops/N520aca"], ["https://tec.openplanner.team/stops/LbUhuge1", "https://tec.openplanner.team/stops/LbUhuge2"], ["https://tec.openplanner.team/stops/X940aed", "https://tec.openplanner.team/stops/X941ada"], ["https://tec.openplanner.team/stops/N232arb", "https://tec.openplanner.team/stops/N232caa"], ["https://tec.openplanner.team/stops/LmI129-2", "https://tec.openplanner.team/stops/LmIkirc1"], ["https://tec.openplanner.team/stops/Llglibo4", "https://tec.openplanner.team/stops/Llgptlo5"], ["https://tec.openplanner.team/stops/Bgligli1", "https://tec.openplanner.team/stops/Bglitro1"], ["https://tec.openplanner.team/stops/N383aea", "https://tec.openplanner.team/stops/N874akb"], ["https://tec.openplanner.team/stops/X650afe", "https://tec.openplanner.team/stops/X671aga"], ["https://tec.openplanner.team/stops/N155aec", "https://tec.openplanner.team/stops/N155agb"], ["https://tec.openplanner.team/stops/H4ty276b", "https://tec.openplanner.team/stops/H4ty315a"], ["https://tec.openplanner.team/stops/N513bfa", "https://tec.openplanner.team/stops/N513bhb"], ["https://tec.openplanner.team/stops/LAufech1", "https://tec.openplanner.team/stops/LJuhaie1"], ["https://tec.openplanner.team/stops/X878aaa", "https://tec.openplanner.team/stops/X879aaa"], ["https://tec.openplanner.team/stops/H2jo164a", "https://tec.openplanner.team/stops/H2ll194a"], ["https://tec.openplanner.team/stops/X631aca", "https://tec.openplanner.team/stops/X631ada"], ["https://tec.openplanner.team/stops/X615bcb", "https://tec.openplanner.team/stops/X615bda"], ["https://tec.openplanner.team/stops/X786aab", "https://tec.openplanner.team/stops/X786abb"], ["https://tec.openplanner.team/stops/Bnivaba2", "https://tec.openplanner.team/stops/Bnivh%C3%B4p2"], ["https://tec.openplanner.team/stops/Bqueegl1", "https://tec.openplanner.team/stops/Bqueegl2"], ["https://tec.openplanner.team/stops/LDAandr1", "https://tec.openplanner.team/stops/LDAchau1"], ["https://tec.openplanner.team/stops/Lstscie1", "https://tec.openplanner.team/stops/Lsttech1"], ["https://tec.openplanner.team/stops/H1hr121c", "https://tec.openplanner.team/stops/H1hr125b"], ["https://tec.openplanner.team/stops/Llianix2", "https://tec.openplanner.team/stops/Llithon1"], ["https://tec.openplanner.team/stops/Cfbcal2", "https://tec.openplanner.team/stops/NH03adb"], ["https://tec.openplanner.team/stops/N301aga", "https://tec.openplanner.team/stops/N301agb"], ["https://tec.openplanner.team/stops/H1ni317a", "https://tec.openplanner.team/stops/H1ni318a"], ["https://tec.openplanner.team/stops/LOLrafh1", "https://tec.openplanner.team/stops/LOLvill2"], ["https://tec.openplanner.team/stops/H4gr109a", "https://tec.openplanner.team/stops/H4hu113b"], ["https://tec.openplanner.team/stops/Ldipl--2", "https://tec.openplanner.team/stops/Ldipl--4"], ["https://tec.openplanner.team/stops/H1mm122b", "https://tec.openplanner.team/stops/H1mm122d"], ["https://tec.openplanner.team/stops/N201akb", "https://tec.openplanner.team/stops/N211ayb"], ["https://tec.openplanner.team/stops/Cluchbl1", "https://tec.openplanner.team/stops/Clupcfe2"], ["https://tec.openplanner.team/stops/H4ga156a", "https://tec.openplanner.team/stops/H4ml209b"], ["https://tec.openplanner.team/stops/Bwatcpl2", "https://tec.openplanner.team/stops/Bwatpas2"], ["https://tec.openplanner.team/stops/Lsnfont1", "https://tec.openplanner.team/stops/Lsnhoco2"], ["https://tec.openplanner.team/stops/Bchapir1", "https://tec.openplanner.team/stops/Bcrnnra1"], ["https://tec.openplanner.team/stops/Bmalsmc2", "https://tec.openplanner.team/stops/Btlbcul2"], ["https://tec.openplanner.team/stops/Cgrchas1", "https://tec.openplanner.team/stops/Cgrchea1"], ["https://tec.openplanner.team/stops/X836aia", "https://tec.openplanner.team/stops/X836ajb"], ["https://tec.openplanner.team/stops/H4mt214a", "https://tec.openplanner.team/stops/H4mt217b"], ["https://tec.openplanner.team/stops/H2jo163b", "https://tec.openplanner.team/stops/H2jo163c"], ["https://tec.openplanner.team/stops/Llgegwa1", "https://tec.openplanner.team/stops/Llgvott1"], ["https://tec.openplanner.team/stops/X664apb", "https://tec.openplanner.team/stops/X664aqa"], ["https://tec.openplanner.team/stops/Lsnmala2", "https://tec.openplanner.team/stops/Lsnmala3"], ["https://tec.openplanner.team/stops/Bwaab122", "https://tec.openplanner.team/stops/Bwaakap2"], ["https://tec.openplanner.team/stops/LRemorr4", "https://tec.openplanner.team/stops/LRepous2"], ["https://tec.openplanner.team/stops/X601cva", "https://tec.openplanner.team/stops/X601dcb"], ["https://tec.openplanner.team/stops/LCPgare2", "https://tec.openplanner.team/stops/LCPlacr2"], ["https://tec.openplanner.team/stops/Lfhpass2", "https://tec.openplanner.team/stops/Ljemeca2"], ["https://tec.openplanner.team/stops/LVAbuss1", "https://tec.openplanner.team/stops/LVAgemm1"], ["https://tec.openplanner.team/stops/Benggar1", "https://tec.openplanner.team/stops/Bptecar1"], ["https://tec.openplanner.team/stops/LGAholl1", "https://tec.openplanner.team/stops/LGAnovi2"], ["https://tec.openplanner.team/stops/LeYwald2", "https://tec.openplanner.team/stops/LhSheid2"], ["https://tec.openplanner.team/stops/LDLbeau1", "https://tec.openplanner.team/stops/LDLbeau2"], ["https://tec.openplanner.team/stops/NL77ada", "https://tec.openplanner.team/stops/NL77akb"], ["https://tec.openplanner.team/stops/LSTmast1", "https://tec.openplanner.team/stops/LSTmeiz1"], ["https://tec.openplanner.team/stops/N510adb", "https://tec.openplanner.team/stops/N513aza"], ["https://tec.openplanner.team/stops/Ljetout1", "https://tec.openplanner.team/stops/Ljetout3"], ["https://tec.openplanner.team/stops/Bnivfdu1", "https://tec.openplanner.team/stops/Cgnpass1"], ["https://tec.openplanner.team/stops/Ccogrha2", "https://tec.openplanner.team/stops/Ccojaur3"], ["https://tec.openplanner.team/stops/N576aga", "https://tec.openplanner.team/stops/N576aib"], ["https://tec.openplanner.team/stops/H4he101b", "https://tec.openplanner.team/stops/H4po130a"], ["https://tec.openplanner.team/stops/Llglair2", "https://tec.openplanner.team/stops/Llgrema1"], ["https://tec.openplanner.team/stops/X937abb", "https://tec.openplanner.team/stops/X937aga"], ["https://tec.openplanner.team/stops/LFychpl2", "https://tec.openplanner.team/stops/LFypont1"], ["https://tec.openplanner.team/stops/LCShoux2", "https://tec.openplanner.team/stops/LHHtill2"], ["https://tec.openplanner.team/stops/X602ajb", "https://tec.openplanner.team/stops/X602aqa"], ["https://tec.openplanner.team/stops/Bcrnnca1", "https://tec.openplanner.team/stops/Bcrnnra1"], ["https://tec.openplanner.team/stops/H1te173a", "https://tec.openplanner.team/stops/H1te185a"], ["https://tec.openplanner.team/stops/X741akb", "https://tec.openplanner.team/stops/X741ala"], ["https://tec.openplanner.team/stops/Cdostco1", "https://tec.openplanner.team/stops/Cdostco2"], ["https://tec.openplanner.team/stops/Llaeg--2", "https://tec.openplanner.team/stops/Llaflot2"], ["https://tec.openplanner.team/stops/Lflcle-2", "https://tec.openplanner.team/stops/Lflfort*"], ["https://tec.openplanner.team/stops/H1ha195a", "https://tec.openplanner.team/stops/H1ha196b"], ["https://tec.openplanner.team/stops/LAMfroi2", "https://tec.openplanner.team/stops/LAMusin1"], ["https://tec.openplanner.team/stops/Cpcplac2", "https://tec.openplanner.team/stops/Cpcplac3"], ["https://tec.openplanner.team/stops/X768aab", "https://tec.openplanner.team/stops/X768abb"], ["https://tec.openplanner.team/stops/LLTeg--2", "https://tec.openplanner.team/stops/LLTfall2"], ["https://tec.openplanner.team/stops/N501jqa", "https://tec.openplanner.team/stops/N501nez"], ["https://tec.openplanner.team/stops/Bcbqgar2", "https://tec.openplanner.team/stops/Btubnav1"], ["https://tec.openplanner.team/stops/X834acb", "https://tec.openplanner.team/stops/X834adb"], ["https://tec.openplanner.team/stops/Ladxhen1", "https://tec.openplanner.team/stops/Ladxhen2"], ["https://tec.openplanner.team/stops/Cnadepo2", "https://tec.openplanner.team/stops/Cnahahe2"], ["https://tec.openplanner.team/stops/Csecoup2", "https://tec.openplanner.team/stops/Cvtndam3"], ["https://tec.openplanner.team/stops/NL72adb", "https://tec.openplanner.team/stops/NL76aeb"], ["https://tec.openplanner.team/stops/Cctcoll2", "https://tec.openplanner.team/stops/Cctvand2"], ["https://tec.openplanner.team/stops/Btsllib2", "https://tec.openplanner.team/stops/Btslnil2"], ["https://tec.openplanner.team/stops/Llghars7", "https://tec.openplanner.team/stops/Llgnata4"], ["https://tec.openplanner.team/stops/Lenhosp1", "https://tec.openplanner.team/stops/Lpecroi1"], ["https://tec.openplanner.team/stops/Lvtbocl1", "https://tec.openplanner.team/stops/Lvtmeun2"], ["https://tec.openplanner.team/stops/H1ro131a", "https://tec.openplanner.team/stops/H1ro132b"], ["https://tec.openplanner.team/stops/N346aaa", "https://tec.openplanner.team/stops/X346aka"], ["https://tec.openplanner.team/stops/LNCloui1", "https://tec.openplanner.team/stops/LNCmele1"], ["https://tec.openplanner.team/stops/X812aoa", "https://tec.openplanner.team/stops/X812ava"], ["https://tec.openplanner.team/stops/Buccdho2", "https://tec.openplanner.team/stops/Buccobs2"], ["https://tec.openplanner.team/stops/X734aaa", "https://tec.openplanner.team/stops/X735aaa"], ["https://tec.openplanner.team/stops/Lhrrhee*", "https://tec.openplanner.team/stops/Lhrunir1"], ["https://tec.openplanner.team/stops/N368aba", "https://tec.openplanner.team/stops/N368aca"], ["https://tec.openplanner.team/stops/LXflong1", "https://tec.openplanner.team/stops/LXflong2"], ["https://tec.openplanner.team/stops/X661ada", "https://tec.openplanner.team/stops/X661aga"], ["https://tec.openplanner.team/stops/LBkbamb1", "https://tec.openplanner.team/stops/LlNbusc1"], ["https://tec.openplanner.team/stops/Bhalgar2", "https://tec.openplanner.team/stops/Bhalkrk1"], ["https://tec.openplanner.team/stops/N506aga", "https://tec.openplanner.team/stops/N506aka"], ["https://tec.openplanner.team/stops/X728ada", "https://tec.openplanner.team/stops/X746aba"], ["https://tec.openplanner.team/stops/N122ada", "https://tec.openplanner.team/stops/N122aia"], ["https://tec.openplanner.team/stops/Blemmar1", "https://tec.openplanner.team/stops/Blemmar2"], ["https://tec.openplanner.team/stops/LSerout2", "https://tec.openplanner.team/stops/LVbstre2"], ["https://tec.openplanner.team/stops/X738abb", "https://tec.openplanner.team/stops/X739aba"], ["https://tec.openplanner.team/stops/H1hw118a", "https://tec.openplanner.team/stops/H1hw118b"], ["https://tec.openplanner.team/stops/Lagjado2", "https://tec.openplanner.team/stops/Lagjado5"], ["https://tec.openplanner.team/stops/N135bfa", "https://tec.openplanner.team/stops/N135bfb"], ["https://tec.openplanner.team/stops/Cflchel2", "https://tec.openplanner.team/stops/Cflecep2"], ["https://tec.openplanner.team/stops/H1cu118a", "https://tec.openplanner.team/stops/H1cu121b"], ["https://tec.openplanner.team/stops/N151abb", "https://tec.openplanner.team/stops/N151aje"], ["https://tec.openplanner.team/stops/H2tr249a", "https://tec.openplanner.team/stops/H2tr250a"], ["https://tec.openplanner.team/stops/Cprcits1", "https://tec.openplanner.team/stops/Cprcits2"], ["https://tec.openplanner.team/stops/H4ff115a", "https://tec.openplanner.team/stops/H4ff122b"], ["https://tec.openplanner.team/stops/Lrofont*", "https://tec.openplanner.team/stops/Lrosaun2"], ["https://tec.openplanner.team/stops/Bclgavi1", "https://tec.openplanner.team/stops/Bclgegl1"], ["https://tec.openplanner.team/stops/N120aia", "https://tec.openplanner.team/stops/N120ajb"], ["https://tec.openplanner.team/stops/Ccyrmon1", "https://tec.openplanner.team/stops/Crbgare1"], ["https://tec.openplanner.team/stops/Cmqbert1", "https://tec.openplanner.team/stops/Csepier1"], ["https://tec.openplanner.team/stops/H1ch105a", "https://tec.openplanner.team/stops/H1ch105b"], ["https://tec.openplanner.team/stops/LHUlieg1", "https://tec.openplanner.team/stops/LHUlieg2"], ["https://tec.openplanner.team/stops/LRAcouv1", "https://tec.openplanner.team/stops/LRarami2"], ["https://tec.openplanner.team/stops/LWHtrui1", "https://tec.openplanner.team/stops/LWSstat2"], ["https://tec.openplanner.team/stops/Llgchev2", "https://tec.openplanner.team/stops/Llgdefr2"], ["https://tec.openplanner.team/stops/N308ana", "https://tec.openplanner.team/stops/N308bhb"], ["https://tec.openplanner.team/stops/Lanhoud2", "https://tec.openplanner.team/stops/Lannico4"], ["https://tec.openplanner.team/stops/Lhutann2", "https://tec.openplanner.team/stops/Lmnbass2"], ["https://tec.openplanner.team/stops/Bramcom1", "https://tec.openplanner.team/stops/NR27aba"], ["https://tec.openplanner.team/stops/CMmoul1", "https://tec.openplanner.team/stops/Cmomoul3"], ["https://tec.openplanner.team/stops/X610aia", "https://tec.openplanner.team/stops/X610aib"], ["https://tec.openplanner.team/stops/LAYambl2", "https://tec.openplanner.team/stops/LAYharz2"], ["https://tec.openplanner.team/stops/LMObut-1", "https://tec.openplanner.team/stops/LMOf21-2"], ["https://tec.openplanner.team/stops/LBSchar2", "https://tec.openplanner.team/stops/LBSchar3"], ["https://tec.openplanner.team/stops/N538aca", "https://tec.openplanner.team/stops/N538amd"], ["https://tec.openplanner.team/stops/X952agb", "https://tec.openplanner.team/stops/X954adb"], ["https://tec.openplanner.team/stops/N106aoa", "https://tec.openplanner.team/stops/N106aqb"], ["https://tec.openplanner.team/stops/LENmc--2", "https://tec.openplanner.team/stops/LENsent2"], ["https://tec.openplanner.team/stops/X946abb", "https://tec.openplanner.team/stops/X946ahb"], ["https://tec.openplanner.team/stops/Bllnjpa2", "https://tec.openplanner.team/stops/Bmsggra3"], ["https://tec.openplanner.team/stops/LClbloc1", "https://tec.openplanner.team/stops/LCljose2"], ["https://tec.openplanner.team/stops/H4bn174b", "https://tec.openplanner.team/stops/H4pi133b"], ["https://tec.openplanner.team/stops/LLbbons2", "https://tec.openplanner.team/stops/LrEkreu2"], ["https://tec.openplanner.team/stops/Cnanoir2", "https://tec.openplanner.team/stops/Cnaplha3"], ["https://tec.openplanner.team/stops/X887aaa", "https://tec.openplanner.team/stops/X890aaa"], ["https://tec.openplanner.team/stops/Cwgmutu2", "https://tec.openplanner.team/stops/Cwgrans1"], ["https://tec.openplanner.team/stops/LBabeco4", "https://tec.openplanner.team/stops/LBamate2"], ["https://tec.openplanner.team/stops/N141agb", "https://tec.openplanner.team/stops/N141apb"], ["https://tec.openplanner.team/stops/H1cu125a", "https://tec.openplanner.team/stops/H1cu125b"], ["https://tec.openplanner.team/stops/X802asa", "https://tec.openplanner.team/stops/X802asb"], ["https://tec.openplanner.team/stops/N211akb", "https://tec.openplanner.team/stops/N214aba"], ["https://tec.openplanner.team/stops/H1te176a", "https://tec.openplanner.team/stops/H1te188a"], ["https://tec.openplanner.team/stops/H1pa104a", "https://tec.openplanner.team/stops/H1pa110b"], ["https://tec.openplanner.team/stops/X390aia", "https://tec.openplanner.team/stops/X902aka"], ["https://tec.openplanner.team/stops/N146aaa", "https://tec.openplanner.team/stops/N146ada"], ["https://tec.openplanner.team/stops/LFHjamo2", "https://tec.openplanner.team/stops/LHolexh1"], ["https://tec.openplanner.team/stops/N514aaa", "https://tec.openplanner.team/stops/N514ana"], ["https://tec.openplanner.team/stops/Lmlbaro1", "https://tec.openplanner.team/stops/Lmlbaro2"], ["https://tec.openplanner.team/stops/N260aba", "https://tec.openplanner.team/stops/N270aba"], ["https://tec.openplanner.team/stops/Bmsgeco1", "https://tec.openplanner.team/stops/Bmsgmon1"], ["https://tec.openplanner.team/stops/Cpl4bra3", "https://tec.openplanner.team/stops/Cplrond1"], ["https://tec.openplanner.team/stops/X919afa", "https://tec.openplanner.team/stops/X919afb"], ["https://tec.openplanner.team/stops/X760afb", "https://tec.openplanner.team/stops/X760agb"], ["https://tec.openplanner.team/stops/H1hy144a", "https://tec.openplanner.team/stops/H1qy137a"], ["https://tec.openplanner.team/stops/X765aab", "https://tec.openplanner.team/stops/X765abb"], ["https://tec.openplanner.team/stops/N229alb", "https://tec.openplanner.team/stops/N229aua"], ["https://tec.openplanner.team/stops/Bthsset1", "https://tec.openplanner.team/stops/NL37aia"], ["https://tec.openplanner.team/stops/X669acb", "https://tec.openplanner.team/stops/X669aha"], ["https://tec.openplanner.team/stops/H1bg110b", "https://tec.openplanner.team/stops/H1mx122a"], ["https://tec.openplanner.team/stops/H4ef164b", "https://tec.openplanner.team/stops/H4ss154a"], ["https://tec.openplanner.team/stops/Cfmchap1", "https://tec.openplanner.team/stops/Cptcamb1"], ["https://tec.openplanner.team/stops/N501hsa", "https://tec.openplanner.team/stops/N501hwb"], ["https://tec.openplanner.team/stops/LGEhosp2", "https://tec.openplanner.team/stops/LGEvill1"], ["https://tec.openplanner.team/stops/N235adb", "https://tec.openplanner.team/stops/N235aeb"], ["https://tec.openplanner.team/stops/N150aia", "https://tec.openplanner.team/stops/N150ajb"], ["https://tec.openplanner.team/stops/LMOfleu1", "https://tec.openplanner.team/stops/LNveg--2"], ["https://tec.openplanner.team/stops/X904agb", "https://tec.openplanner.team/stops/X904ana"], ["https://tec.openplanner.team/stops/LPUchpl2", "https://tec.openplanner.team/stops/LPUmer-2"], ["https://tec.openplanner.team/stops/H4ft133a", "https://tec.openplanner.team/stops/H4ft135a"], ["https://tec.openplanner.team/stops/Cthalou1", "https://tec.openplanner.team/stops/Cthalou2"], ["https://tec.openplanner.team/stops/X746afb", "https://tec.openplanner.team/stops/X746aga"], ["https://tec.openplanner.team/stops/Cfcbobr1", "https://tec.openplanner.team/stops/Cfcbobr2"], ["https://tec.openplanner.team/stops/N501iha", "https://tec.openplanner.team/stops/N501ilb"], ["https://tec.openplanner.team/stops/N505acb", "https://tec.openplanner.team/stops/N505aia"], ["https://tec.openplanner.team/stops/LHMmarq1", "https://tec.openplanner.team/stops/LHMpatl1"], ["https://tec.openplanner.team/stops/Cfrempe1", "https://tec.openplanner.team/stops/Cfrmon3"], ["https://tec.openplanner.team/stops/Cmgvpa", "https://tec.openplanner.team/stops/Csyplac1"], ["https://tec.openplanner.team/stops/LSBdelc2", "https://tec.openplanner.team/stops/LSBrouf3"], ["https://tec.openplanner.team/stops/N331ada", "https://tec.openplanner.team/stops/N331aeb"], ["https://tec.openplanner.team/stops/Cjxetri2", "https://tec.openplanner.team/stops/Cjxplac1"], ["https://tec.openplanner.team/stops/X789aeb", "https://tec.openplanner.team/stops/X789agb"], ["https://tec.openplanner.team/stops/Lsn130-2", "https://tec.openplanner.team/stops/Lsnmala1"], ["https://tec.openplanner.team/stops/LPLg90-2", "https://tec.openplanner.team/stops/LPLruis2"], ["https://tec.openplanner.team/stops/LSythie2", "https://tec.openplanner.team/stops/LWZdtec2"], ["https://tec.openplanner.team/stops/N311aea", "https://tec.openplanner.team/stops/N311aga"], ["https://tec.openplanner.team/stops/Lmirca-1", "https://tec.openplanner.team/stops/Lmirca-2"], ["https://tec.openplanner.team/stops/X790ala", "https://tec.openplanner.team/stops/X790alb"], ["https://tec.openplanner.team/stops/N510afb", "https://tec.openplanner.team/stops/N513aza"], ["https://tec.openplanner.team/stops/LLvferm1", "https://tec.openplanner.team/stops/LLvgare2"], ["https://tec.openplanner.team/stops/LeIpiro4", "https://tec.openplanner.team/stops/LsHkreu4"], ["https://tec.openplanner.team/stops/LJAsuri1", "https://tec.openplanner.team/stops/LJAsuri2"], ["https://tec.openplanner.team/stops/LOmecol2", "https://tec.openplanner.team/stops/LOmvill4"], ["https://tec.openplanner.team/stops/Lalchar2", "https://tec.openplanner.team/stops/Lanadmi2"], ["https://tec.openplanner.team/stops/X768aea", "https://tec.openplanner.team/stops/X768afa"], ["https://tec.openplanner.team/stops/Cpcathe1", "https://tec.openplanner.team/stops/Cpcegli1"], ["https://tec.openplanner.team/stops/Cgzblob1", "https://tec.openplanner.team/stops/Ctucamb1"], ["https://tec.openplanner.team/stops/Cgd4ven2", "https://tec.openplanner.team/stops/Clgpavi2"], ["https://tec.openplanner.team/stops/Ljucaba2", "https://tec.openplanner.team/stops/Ljumart1"], ["https://tec.openplanner.team/stops/N577aab", "https://tec.openplanner.team/stops/N577ada"], ["https://tec.openplanner.team/stops/H4ef165c", "https://tec.openplanner.team/stops/H4mb143c"], ["https://tec.openplanner.team/stops/N513agc", "https://tec.openplanner.team/stops/N513azb"], ["https://tec.openplanner.team/stops/X609abb", "https://tec.openplanner.team/stops/X609aob"], ["https://tec.openplanner.team/stops/LCxchal2", "https://tec.openplanner.team/stops/LLM4rou4"], ["https://tec.openplanner.team/stops/LJUmc--1", "https://tec.openplanner.team/stops/LJUmc--2"], ["https://tec.openplanner.team/stops/LWycabi1", "https://tec.openplanner.team/stops/LWycarr2"], ["https://tec.openplanner.team/stops/Bnodtir4", "https://tec.openplanner.team/stops/Boplsma3"], ["https://tec.openplanner.team/stops/Cmaprov2", "https://tec.openplanner.team/stops/Cmareun2"], ["https://tec.openplanner.team/stops/LVIdepo3", "https://tec.openplanner.team/stops/LVIgare2"], ["https://tec.openplanner.team/stops/Bnivpro1", "https://tec.openplanner.team/stops/Bnivsba2"], ["https://tec.openplanner.team/stops/N170aba", "https://tec.openplanner.team/stops/N170afb"], ["https://tec.openplanner.team/stops/Creespi2", "https://tec.openplanner.team/stops/Crewaha2"], ["https://tec.openplanner.team/stops/H1en102a", "https://tec.openplanner.team/stops/H1en105a"], ["https://tec.openplanner.team/stops/Bwatpcs2", "https://tec.openplanner.team/stops/Bwatpct1"], ["https://tec.openplanner.team/stops/Cfcecol4", "https://tec.openplanner.team/stops/Cvrfcho2"], ["https://tec.openplanner.team/stops/NH01anb", "https://tec.openplanner.team/stops/NH01asb"], ["https://tec.openplanner.team/stops/N120aab", "https://tec.openplanner.team/stops/N120ama"], ["https://tec.openplanner.team/stops/LFAbouc1", "https://tec.openplanner.team/stops/LLTther2"], ["https://tec.openplanner.team/stops/LkAbahn*", "https://tec.openplanner.team/stops/LkAkirc1"], ["https://tec.openplanner.team/stops/LHTmala4", "https://tec.openplanner.team/stops/LLxcana2"], ["https://tec.openplanner.team/stops/Cjupier1", "https://tec.openplanner.team/stops/Cjuunio1"], ["https://tec.openplanner.team/stops/Clbbonn2", "https://tec.openplanner.team/stops/Clbecol1"], ["https://tec.openplanner.team/stops/LwMzoll1", "https://tec.openplanner.team/stops/X793ada"], ["https://tec.openplanner.team/stops/H1er110a", "https://tec.openplanner.team/stops/H1er113b"], ["https://tec.openplanner.team/stops/Blhulor1", "https://tec.openplanner.team/stops/Blhusor1"], ["https://tec.openplanner.team/stops/Csemacq1", "https://tec.openplanner.team/stops/Csepost2"], ["https://tec.openplanner.team/stops/H4qu230b", "https://tec.openplanner.team/stops/H4qu408a"], ["https://tec.openplanner.team/stops/N355aea", "https://tec.openplanner.team/stops/N355aeb"], ["https://tec.openplanner.team/stops/LHYwach1", "https://tec.openplanner.team/stops/LLNbeau2"], ["https://tec.openplanner.team/stops/Ceqmeti1", "https://tec.openplanner.team/stops/H1er106a"], ["https://tec.openplanner.team/stops/Ccugend1", "https://tec.openplanner.team/stops/NC02aob"], ["https://tec.openplanner.team/stops/N988aaa", "https://tec.openplanner.team/stops/N988aba"], ["https://tec.openplanner.team/stops/H1gh157b", "https://tec.openplanner.team/stops/H1gh158a"], ["https://tec.openplanner.team/stops/Cgncail1", "https://tec.openplanner.team/stops/Cgncail2"], ["https://tec.openplanner.team/stops/Bbaualz2", "https://tec.openplanner.team/stops/Bnivari1"], ["https://tec.openplanner.team/stops/Bwatchb1", "https://tec.openplanner.team/stops/Bwatjbo2"], ["https://tec.openplanner.team/stops/Bgliron1", "https://tec.openplanner.team/stops/NB33ahb"], ["https://tec.openplanner.team/stops/Bbgever1", "https://tec.openplanner.team/stops/Bwavrij2"], ["https://tec.openplanner.team/stops/Ladneuv1", "https://tec.openplanner.team/stops/LSuusin2"], ["https://tec.openplanner.team/stops/Cjudewe1", "https://tec.openplanner.team/stops/Clomart1"], ["https://tec.openplanner.team/stops/Cmaest1", "https://tec.openplanner.team/stops/Cmmbsit1"], ["https://tec.openplanner.team/stops/H3bi105d", "https://tec.openplanner.team/stops/H3bi116a"], ["https://tec.openplanner.team/stops/Bcbqh452", "https://tec.openplanner.team/stops/Bcbqhai2"], ["https://tec.openplanner.team/stops/LlCauto2", "https://tec.openplanner.team/stops/LlChebs2"], ["https://tec.openplanner.team/stops/X982cea", "https://tec.openplanner.team/stops/X986aaa"], ["https://tec.openplanner.team/stops/LLRgdma1", "https://tec.openplanner.team/stops/LPclaro1"], ["https://tec.openplanner.team/stops/N229ama", "https://tec.openplanner.team/stops/N540alb"], ["https://tec.openplanner.team/stops/LCPbatt1", "https://tec.openplanner.team/stops/LCTpt--1"], ["https://tec.openplanner.team/stops/Clusncb1", "https://tec.openplanner.team/stops/Cpcwaut1"], ["https://tec.openplanner.team/stops/LbO52--2", "https://tec.openplanner.team/stops/LdE179-1"], ["https://tec.openplanner.team/stops/Canbruy2", "https://tec.openplanner.team/stops/Canrsta1"], ["https://tec.openplanner.team/stops/X727aaa", "https://tec.openplanner.team/stops/X727aba"], ["https://tec.openplanner.team/stops/X661aea", "https://tec.openplanner.team/stops/X661aza"], ["https://tec.openplanner.team/stops/Btgrdoc1", "https://tec.openplanner.team/stops/N584cac"], ["https://tec.openplanner.team/stops/LVRchpl1", "https://tec.openplanner.team/stops/X782aea"], ["https://tec.openplanner.team/stops/LVIcarm3", "https://tec.openplanner.team/stops/LVIdeva1"], ["https://tec.openplanner.team/stops/LeUbael1", "https://tec.openplanner.team/stops/LeUgeme2"], ["https://tec.openplanner.team/stops/X354aib", "https://tec.openplanner.team/stops/X858aaa"], ["https://tec.openplanner.team/stops/N533amc", "https://tec.openplanner.team/stops/N533aqd"], ["https://tec.openplanner.team/stops/Crbgare2", "https://tec.openplanner.team/stops/Crbrgar2"], ["https://tec.openplanner.team/stops/LBNforg2", "https://tec.openplanner.team/stops/LDObran2"], ["https://tec.openplanner.team/stops/Lsebegu3", "https://tec.openplanner.team/stops/Ltiferb2"], ["https://tec.openplanner.team/stops/H4ce102a", "https://tec.openplanner.team/stops/H4ce102b"], ["https://tec.openplanner.team/stops/Bbuztai2", "https://tec.openplanner.team/stops/Bnivvco2"], ["https://tec.openplanner.team/stops/H2tr251a", "https://tec.openplanner.team/stops/H2tr255a"], ["https://tec.openplanner.team/stops/N512atb", "https://tec.openplanner.team/stops/N512atc"], ["https://tec.openplanner.team/stops/X837ahb", "https://tec.openplanner.team/stops/X837aia"], ["https://tec.openplanner.team/stops/X805aea", "https://tec.openplanner.team/stops/X869aab"], ["https://tec.openplanner.team/stops/Cwfanci1", "https://tec.openplanner.team/stops/Cwfronc1"], ["https://tec.openplanner.team/stops/X775ahb", "https://tec.openplanner.team/stops/X775aid"], ["https://tec.openplanner.team/stops/LPUlecl1", "https://tec.openplanner.team/stops/LPUlecl2"], ["https://tec.openplanner.team/stops/Llgoise1", "https://tec.openplanner.team/stops/Llgoise2"], ["https://tec.openplanner.team/stops/H4bo110b", "https://tec.openplanner.team/stops/H5st164b"], ["https://tec.openplanner.team/stops/LElgerd4", "https://tec.openplanner.team/stops/LTaxhos2"], ["https://tec.openplanner.team/stops/LCFeg--1", "https://tec.openplanner.team/stops/LHarenn3"], ["https://tec.openplanner.team/stops/LkEgss-2", "https://tec.openplanner.team/stops/LkEneus1"], ["https://tec.openplanner.team/stops/Bsaumlp2", "https://tec.openplanner.team/stops/N541aea"], ["https://tec.openplanner.team/stops/Cauwauq2", "https://tec.openplanner.team/stops/N530aga"], ["https://tec.openplanner.team/stops/LhOokat2", "https://tec.openplanner.team/stops/LhUkape1"], ["https://tec.openplanner.team/stops/Ccupdes1", "https://tec.openplanner.team/stops/Ccupetp1"], ["https://tec.openplanner.team/stops/X629abb", "https://tec.openplanner.team/stops/X647aab"], ["https://tec.openplanner.team/stops/N425ada", "https://tec.openplanner.team/stops/N425afb"], ["https://tec.openplanner.team/stops/LAVpequ2", "https://tec.openplanner.team/stops/LVHtill2"], ["https://tec.openplanner.team/stops/LOncar-*", "https://tec.openplanner.team/stops/LOnec--1"], ["https://tec.openplanner.team/stops/Cjucouc2", "https://tec.openplanner.team/stops/Cjumest2"], ["https://tec.openplanner.team/stops/LBRtrag1", "https://tec.openplanner.team/stops/LBRtrag2"], ["https://tec.openplanner.team/stops/H1ba116a", "https://tec.openplanner.team/stops/H1qu111b"], ["https://tec.openplanner.team/stops/Bitrcro2", "https://tec.openplanner.team/stops/Bvirfpo2"], ["https://tec.openplanner.team/stops/Bqueblo1", "https://tec.openplanner.team/stops/Bquevel1"], ["https://tec.openplanner.team/stops/Lhecarc*", "https://tec.openplanner.team/stops/Lheneuv3"], ["https://tec.openplanner.team/stops/LSTchat1", "https://tec.openplanner.team/stops/LSTcomm1"], ["https://tec.openplanner.team/stops/LFymare4", "https://tec.openplanner.team/stops/LFypont1"], ["https://tec.openplanner.team/stops/LWEcite1", "https://tec.openplanner.team/stops/LWEcite2"], ["https://tec.openplanner.team/stops/Bblacar1", "https://tec.openplanner.team/stops/Bblapri2"], ["https://tec.openplanner.team/stops/Lpecime1", "https://tec.openplanner.team/stops/Lpeprev1"], ["https://tec.openplanner.team/stops/LLVfour1", "https://tec.openplanner.team/stops/X575ahb"], ["https://tec.openplanner.team/stops/H1bu136b", "https://tec.openplanner.team/stops/H3bi108b"], ["https://tec.openplanner.team/stops/Bernpon2", "https://tec.openplanner.team/stops/Bernrar1"], ["https://tec.openplanner.team/stops/X715aab", "https://tec.openplanner.team/stops/X715aqb"], ["https://tec.openplanner.team/stops/Brsga152", "https://tec.openplanner.team/stops/Brsga811"], ["https://tec.openplanner.team/stops/N512asa", "https://tec.openplanner.team/stops/N512asb"], ["https://tec.openplanner.team/stops/X839aga", "https://tec.openplanner.team/stops/X839agb"], ["https://tec.openplanner.team/stops/Bkrabhu2", "https://tec.openplanner.team/stops/Bovehst1"], ["https://tec.openplanner.team/stops/X897amb", "https://tec.openplanner.team/stops/X897aqa"], ["https://tec.openplanner.team/stops/Bcbqhai1", "https://tec.openplanner.team/stops/Bitrnus1"], ["https://tec.openplanner.team/stops/H4lp119a", "https://tec.openplanner.team/stops/H4lp124a"], ["https://tec.openplanner.team/stops/H1bu138b", "https://tec.openplanner.team/stops/H2ep172a"], ["https://tec.openplanner.team/stops/X793aja", "https://tec.openplanner.team/stops/X793aob"], ["https://tec.openplanner.team/stops/LWEeg--2", "https://tec.openplanner.team/stops/LWEmerm1"], ["https://tec.openplanner.team/stops/LCxreno1", "https://tec.openplanner.team/stops/LLM4rou3"], ["https://tec.openplanner.team/stops/Bbchmin2", "https://tec.openplanner.team/stops/Bitrmon1"], ["https://tec.openplanner.team/stops/N122aga", "https://tec.openplanner.team/stops/N122aha"], ["https://tec.openplanner.team/stops/LGOhevr1", "https://tec.openplanner.team/stops/LGOmonu1"], ["https://tec.openplanner.team/stops/X948ajc", "https://tec.openplanner.team/stops/X948apa"], ["https://tec.openplanner.team/stops/X948aia", "https://tec.openplanner.team/stops/X948asb"], ["https://tec.openplanner.team/stops/LFCkerk2", "https://tec.openplanner.team/stops/LFClage2"], ["https://tec.openplanner.team/stops/H2fy121a", "https://tec.openplanner.team/stops/H2fy121b"], ["https://tec.openplanner.team/stops/X757ama", "https://tec.openplanner.team/stops/X757amb"], ["https://tec.openplanner.team/stops/N518aba", "https://tec.openplanner.team/stops/N519ahb"], ["https://tec.openplanner.team/stops/X750aab", "https://tec.openplanner.team/stops/X780aga"], ["https://tec.openplanner.team/stops/H1po138a", "https://tec.openplanner.team/stops/H1po154a"], ["https://tec.openplanner.team/stops/LHCcoul1", "https://tec.openplanner.team/stops/LHCcoul2"], ["https://tec.openplanner.team/stops/Lcegare1", "https://tec.openplanner.team/stops/Lcepoul1"], ["https://tec.openplanner.team/stops/LBslama2", "https://tec.openplanner.team/stops/NL73ada"], ["https://tec.openplanner.team/stops/LaNmuhl3", "https://tec.openplanner.team/stops/LeMnr12"], ["https://tec.openplanner.team/stops/H2hg144b", "https://tec.openplanner.team/stops/H2hg270a"], ["https://tec.openplanner.team/stops/Ccupres1", "https://tec.openplanner.team/stops/Ccupres2"], ["https://tec.openplanner.team/stops/X735aaa", "https://tec.openplanner.team/stops/X735aab"], ["https://tec.openplanner.team/stops/Cvvmonu1", "https://tec.openplanner.team/stops/Cvvpotv1"], ["https://tec.openplanner.team/stops/X804ada", "https://tec.openplanner.team/stops/X804adb"], ["https://tec.openplanner.team/stops/Cvvchea1", "https://tec.openplanner.team/stops/Cvvgrsa1"], ["https://tec.openplanner.team/stops/LLLvill1", "https://tec.openplanner.team/stops/X576aea"], ["https://tec.openplanner.team/stops/Lmojoan1", "https://tec.openplanner.team/stops/Lmojoan2"], ["https://tec.openplanner.team/stops/N232apa", "https://tec.openplanner.team/stops/N232apb"], ["https://tec.openplanner.team/stops/Llgmair1", "https://tec.openplanner.team/stops/Llgthie2"], ["https://tec.openplanner.team/stops/Loualbe2", "https://tec.openplanner.team/stops/Louense2"], ["https://tec.openplanner.team/stops/LORgr8-1", "https://tec.openplanner.team/stops/LORmont2"], ["https://tec.openplanner.team/stops/Bmarmru1", "https://tec.openplanner.team/stops/Bmarmru2"], ["https://tec.openplanner.team/stops/LEBeg--2", "https://tec.openplanner.team/stops/LEBmoul2"], ["https://tec.openplanner.team/stops/H4mx115a", "https://tec.openplanner.team/stops/H4mx115b"], ["https://tec.openplanner.team/stops/H1wa163a", "https://tec.openplanner.team/stops/H1wa163b"], ["https://tec.openplanner.team/stops/X736ada", "https://tec.openplanner.team/stops/X736adb"], ["https://tec.openplanner.team/stops/LFmroye2", "https://tec.openplanner.team/stops/LMOchen1"], ["https://tec.openplanner.team/stops/N543ala", "https://tec.openplanner.team/stops/N543avh"], ["https://tec.openplanner.team/stops/Bgemgjo1", "https://tec.openplanner.team/stops/N522bve"], ["https://tec.openplanner.team/stops/Bsaumlk1", "https://tec.openplanner.team/stops/Bwspm372"], ["https://tec.openplanner.team/stops/Cgxcime2", "https://tec.openplanner.team/stops/Cgxmaco2"], ["https://tec.openplanner.team/stops/Bgerd322", "https://tec.openplanner.team/stops/NB33afb"], ["https://tec.openplanner.team/stops/Lalmakr2", "https://tec.openplanner.team/stops/Lancoop1"], ["https://tec.openplanner.team/stops/H4mo160a", "https://tec.openplanner.team/stops/H4mo186a"], ["https://tec.openplanner.team/stops/LOlvill2", "https://tec.openplanner.team/stops/LSemc--4"], ["https://tec.openplanner.team/stops/LATcorp1", "https://tec.openplanner.team/stops/LATmals1"], ["https://tec.openplanner.team/stops/H2ll178a", "https://tec.openplanner.team/stops/H2ll178d"], ["https://tec.openplanner.team/stops/LLrhaut3", "https://tec.openplanner.team/stops/LREhaut2"], ["https://tec.openplanner.team/stops/Cloauln2", "https://tec.openplanner.team/stops/Cloravi1"], ["https://tec.openplanner.team/stops/Llgcroi1", "https://tec.openplanner.team/stops/Llgcroi4"], ["https://tec.openplanner.team/stops/Ctubpos1", "https://tec.openplanner.team/stops/Ctubpos3"], ["https://tec.openplanner.team/stops/Bjodmal2", "https://tec.openplanner.team/stops/Bjodppe1"], ["https://tec.openplanner.team/stops/H1ho125c", "https://tec.openplanner.team/stops/H1wa164b"], ["https://tec.openplanner.team/stops/H4os220b", "https://tec.openplanner.team/stops/H4os221c"], ["https://tec.openplanner.team/stops/X898aaa", "https://tec.openplanner.team/stops/X898aeb"], ["https://tec.openplanner.team/stops/NL77aha", "https://tec.openplanner.team/stops/NL77ahb"], ["https://tec.openplanner.team/stops/X721aea", "https://tec.openplanner.team/stops/X723ama"], ["https://tec.openplanner.team/stops/N323abb", "https://tec.openplanner.team/stops/N387aha"], ["https://tec.openplanner.team/stops/X858aab", "https://tec.openplanner.team/stops/X858afa"], ["https://tec.openplanner.team/stops/LmR50--2", "https://tec.openplanner.team/stops/LmRh%C3%B6fe2"], ["https://tec.openplanner.team/stops/X982beb", "https://tec.openplanner.team/stops/X982bga"], ["https://tec.openplanner.team/stops/Blilgar1", "https://tec.openplanner.team/stops/Blilwit1"], ["https://tec.openplanner.team/stops/Bhmmcim2", "https://tec.openplanner.team/stops/Bhmmmon2"], ["https://tec.openplanner.team/stops/H4ca121a", "https://tec.openplanner.team/stops/H4ca122b"], ["https://tec.openplanner.team/stops/Bnetcor1", "https://tec.openplanner.team/stops/Bnetrtb2"], ["https://tec.openplanner.team/stops/X605aba", "https://tec.openplanner.team/stops/X605aca"], ["https://tec.openplanner.team/stops/LCpvill1", "https://tec.openplanner.team/stops/LSPherd1"], ["https://tec.openplanner.team/stops/Lanc14v1", "https://tec.openplanner.team/stops/Llgnaes2"], ["https://tec.openplanner.team/stops/N502aab", "https://tec.openplanner.team/stops/N510abb"], ["https://tec.openplanner.team/stops/Lanadmi1", "https://tec.openplanner.team/stops/Lanschu2"], ["https://tec.openplanner.team/stops/N545aab", "https://tec.openplanner.team/stops/N553acb"], ["https://tec.openplanner.team/stops/N501bub", "https://tec.openplanner.team/stops/N501eob"], ["https://tec.openplanner.team/stops/Lalchar2", "https://tec.openplanner.team/stops/Llaeg--2"], ["https://tec.openplanner.team/stops/LBIfore1", "https://tec.openplanner.team/stops/LBIpost1"], ["https://tec.openplanner.team/stops/N501ljb", "https://tec.openplanner.team/stops/N501lkb"], ["https://tec.openplanner.team/stops/Cgzabau3", "https://tec.openplanner.team/stops/Cgzoctr3"], ["https://tec.openplanner.team/stops/N103aab", "https://tec.openplanner.team/stops/N103adb"], ["https://tec.openplanner.team/stops/X750axa", "https://tec.openplanner.team/stops/X750bha"], ["https://tec.openplanner.team/stops/LeLkalt2", "https://tec.openplanner.team/stops/LkAbahn*"], ["https://tec.openplanner.team/stops/Llgm%C3%A9di1", "https://tec.openplanner.team/stops/Llgnata4"], ["https://tec.openplanner.team/stops/Bgoesch2", "https://tec.openplanner.team/stops/Bgoewat2"], ["https://tec.openplanner.team/stops/X618alb", "https://tec.openplanner.team/stops/X619aba"], ["https://tec.openplanner.team/stops/Ltichif3", "https://tec.openplanner.team/stops/Ltiecch2"], ["https://tec.openplanner.team/stops/H2ll188b", "https://tec.openplanner.team/stops/H2ll190a"], ["https://tec.openplanner.team/stops/LAMecse*", "https://tec.openplanner.team/stops/LVLsabl4"], ["https://tec.openplanner.team/stops/Ctmdema1", "https://tec.openplanner.team/stops/Ctmmana2"], ["https://tec.openplanner.team/stops/LFmeg--2", "https://tec.openplanner.team/stops/LMOchen1"], ["https://tec.openplanner.team/stops/Lagorch1", "https://tec.openplanner.team/stops/Lstchas2"], ["https://tec.openplanner.team/stops/Bchgcha1", "https://tec.openplanner.team/stops/Bchgcha2"], ["https://tec.openplanner.team/stops/X602aia", "https://tec.openplanner.team/stops/X602akb"], ["https://tec.openplanner.team/stops/Lvchenn1", "https://tec.openplanner.team/stops/Lvchenn2"], ["https://tec.openplanner.team/stops/LwYkirc1", "https://tec.openplanner.team/stops/LwYnr262"], ["https://tec.openplanner.team/stops/Llgborn1", "https://tec.openplanner.team/stops/Llgmaus1"], ["https://tec.openplanner.team/stops/Bstemco2", "https://tec.openplanner.team/stops/Bstetre2"], ["https://tec.openplanner.team/stops/H4re225a", "https://tec.openplanner.team/stops/H5at133b"], ["https://tec.openplanner.team/stops/Llgcbat2", "https://tec.openplanner.team/stops/Lscatme1"], ["https://tec.openplanner.team/stops/Cbimonu2", "https://tec.openplanner.team/stops/Ctufleu4"], ["https://tec.openplanner.team/stops/X774aba", "https://tec.openplanner.team/stops/X775aaa"], ["https://tec.openplanner.team/stops/N425aca", "https://tec.openplanner.team/stops/N426aea"], ["https://tec.openplanner.team/stops/Btubcim1", "https://tec.openplanner.team/stops/Btubegy1"], ["https://tec.openplanner.team/stops/H4bd110b", "https://tec.openplanner.team/stops/H4te261a"], ["https://tec.openplanner.team/stops/H1ev114a", "https://tec.openplanner.team/stops/H1ev114b"], ["https://tec.openplanner.team/stops/Ljelexh1", "https://tec.openplanner.team/stops/Ljelexh2"], ["https://tec.openplanner.team/stops/Lbogonh1", "https://tec.openplanner.team/stops/Lbotilf1"], ["https://tec.openplanner.team/stops/H1si152a", "https://tec.openplanner.team/stops/H1si154a"], ["https://tec.openplanner.team/stops/Lprmoin1", "https://tec.openplanner.team/stops/Lprpous1"], ["https://tec.openplanner.team/stops/N538ana", "https://tec.openplanner.team/stops/N538anb"], ["https://tec.openplanner.team/stops/Lhrathe1", "https://tec.openplanner.team/stops/Lhrdeme2"], ["https://tec.openplanner.team/stops/Chhplbe1", "https://tec.openplanner.team/stops/Chhverr1"], ["https://tec.openplanner.team/stops/Bgdhpco2", "https://tec.openplanner.team/stops/Blineco1"], ["https://tec.openplanner.team/stops/Borblim2", "https://tec.openplanner.team/stops/Btstcar3"], ["https://tec.openplanner.team/stops/X902agb", "https://tec.openplanner.team/stops/X902ama"], ["https://tec.openplanner.team/stops/H4ty322a", "https://tec.openplanner.team/stops/H4ty322d"], ["https://tec.openplanner.team/stops/H4am101a", "https://tec.openplanner.team/stops/H4am113a"], ["https://tec.openplanner.team/stops/N141aia", "https://tec.openplanner.team/stops/N143ada"], ["https://tec.openplanner.team/stops/LESevie1", "https://tec.openplanner.team/stops/LESfoot1"], ["https://tec.openplanner.team/stops/LSPec--1", "https://tec.openplanner.team/stops/LSPxhou1"], ["https://tec.openplanner.team/stops/N501ira", "https://tec.openplanner.team/stops/N501ixc"], ["https://tec.openplanner.team/stops/Cgylami2", "https://tec.openplanner.team/stops/Cgytrie1"], ["https://tec.openplanner.team/stops/LkTkabi1", "https://tec.openplanner.team/stops/LkTkabi2"], ["https://tec.openplanner.team/stops/X773aba", "https://tec.openplanner.team/stops/X773aea"], ["https://tec.openplanner.team/stops/LkOaugu1", "https://tec.openplanner.team/stops/LlCauto2"], ["https://tec.openplanner.team/stops/N539awa", "https://tec.openplanner.team/stops/N539awb"], ["https://tec.openplanner.team/stops/Bgnpjbe1", "https://tec.openplanner.team/stops/Bgnppem1"], ["https://tec.openplanner.team/stops/LMAcomm1", "https://tec.openplanner.team/stops/LMAroch3"], ["https://tec.openplanner.team/stops/Bbiesbi2", "https://tec.openplanner.team/stops/Bptbsar1"], ["https://tec.openplanner.team/stops/N218aaa", "https://tec.openplanner.team/stops/N385abb"], ["https://tec.openplanner.team/stops/LMamuse3", "https://tec.openplanner.team/stops/LMastat3"], ["https://tec.openplanner.team/stops/Bsamegl2", "https://tec.openplanner.team/stops/Bsamfma2"], ["https://tec.openplanner.team/stops/H1ro133a", "https://tec.openplanner.team/stops/H1ro141a"], ["https://tec.openplanner.team/stops/Bfledpi2", "https://tec.openplanner.team/stops/NC12aab"], ["https://tec.openplanner.team/stops/H1wi155a", "https://tec.openplanner.team/stops/H1wi155b"], ["https://tec.openplanner.team/stops/LLYcalv1", "https://tec.openplanner.team/stops/LTOcime1"], ["https://tec.openplanner.team/stops/LVlfooz1", "https://tec.openplanner.team/stops/LVlleno2"], ["https://tec.openplanner.team/stops/LFPkape3", "https://tec.openplanner.team/stops/LFPkerk1"], ["https://tec.openplanner.team/stops/X811aqa", "https://tec.openplanner.team/stops/X812bga"], ["https://tec.openplanner.team/stops/N584bob", "https://tec.openplanner.team/stops/N584bpa"], ["https://tec.openplanner.team/stops/Bblamer2", "https://tec.openplanner.team/stops/Bblamsj3"], ["https://tec.openplanner.team/stops/Bwavtas2", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://tec.openplanner.team/stops/Bixlfla2", "https://tec.openplanner.team/stops/Bixlqll1"], ["https://tec.openplanner.team/stops/Bmalcar2", "https://tec.openplanner.team/stops/Bsrbtil1"], ["https://tec.openplanner.team/stops/LhM07--2", "https://tec.openplanner.team/stops/LhMmeil2"], ["https://tec.openplanner.team/stops/X609agb", "https://tec.openplanner.team/stops/X609aha"], ["https://tec.openplanner.team/stops/X869aeb", "https://tec.openplanner.team/stops/X869afa"], ["https://tec.openplanner.team/stops/Lousite6", "https://tec.openplanner.team/stops/Lousite7"], ["https://tec.openplanner.team/stops/Cvpcdec1", "https://tec.openplanner.team/stops/Cvpcdec2"], ["https://tec.openplanner.team/stops/LbEkirc*", "https://tec.openplanner.team/stops/LeLbutg3"], ["https://tec.openplanner.team/stops/LJUfort2", "https://tec.openplanner.team/stops/Lladete3"], ["https://tec.openplanner.team/stops/Cbfpauc1", "https://tec.openplanner.team/stops/Cbfpauc2"], ["https://tec.openplanner.team/stops/X922aja", "https://tec.openplanner.team/stops/X922ama"], ["https://tec.openplanner.team/stops/LVbeg--2", "https://tec.openplanner.team/stops/LVbpave1"], ["https://tec.openplanner.team/stops/N155ada", "https://tec.openplanner.team/stops/N155ajb"], ["https://tec.openplanner.team/stops/LAMecse*", "https://tec.openplanner.team/stops/LAMjeha1"], ["https://tec.openplanner.team/stops/Cgomerm4", "https://tec.openplanner.team/stops/Chpplac1"], ["https://tec.openplanner.team/stops/LOcchat2", "https://tec.openplanner.team/stops/LOcgdro1"], ["https://tec.openplanner.team/stops/X901afa", "https://tec.openplanner.team/stops/X901aga"], ["https://tec.openplanner.team/stops/N539awb", "https://tec.openplanner.team/stops/N539bbb"], ["https://tec.openplanner.team/stops/H1hn204b", "https://tec.openplanner.team/stops/H1mv242b"], ["https://tec.openplanner.team/stops/LCxc6191", "https://tec.openplanner.team/stops/LCxross2"], ["https://tec.openplanner.team/stops/N221aab", "https://tec.openplanner.team/stops/X221aac"], ["https://tec.openplanner.team/stops/LGlcarr2", "https://tec.openplanner.team/stops/LGlcite1"], ["https://tec.openplanner.team/stops/Livrame2", "https://tec.openplanner.team/stops/LRagrch1"], ["https://tec.openplanner.team/stops/N160aca", "https://tec.openplanner.team/stops/N160aha"], ["https://tec.openplanner.team/stops/LrAgier1", "https://tec.openplanner.team/stops/LrAgier2"], ["https://tec.openplanner.team/stops/X899aja", "https://tec.openplanner.team/stops/X899ajb"], ["https://tec.openplanner.team/stops/N550acb", "https://tec.openplanner.team/stops/N550acc"], ["https://tec.openplanner.team/stops/H1he109b", "https://tec.openplanner.team/stops/H1he110b"], ["https://tec.openplanner.team/stops/N212aca", "https://tec.openplanner.team/stops/N212afa"], ["https://tec.openplanner.team/stops/LCIpiet2", "https://tec.openplanner.team/stops/LVHcent2"], ["https://tec.openplanner.team/stops/LLYplac1", "https://tec.openplanner.team/stops/LLYtir-2"], ["https://tec.openplanner.team/stops/N152aac", "https://tec.openplanner.team/stops/N152aad"], ["https://tec.openplanner.team/stops/LEShony1", "https://tec.openplanner.team/stops/LEShony2"], ["https://tec.openplanner.team/stops/H4ne143b", "https://tec.openplanner.team/stops/H4wa150b"], ["https://tec.openplanner.team/stops/Blimmer2", "https://tec.openplanner.team/stops/Blimvcg2"], ["https://tec.openplanner.team/stops/Cgzfarc2", "https://tec.openplanner.team/stops/Cgzpjeu2"], ["https://tec.openplanner.team/stops/X820aia", "https://tec.openplanner.team/stops/X822apb"], ["https://tec.openplanner.team/stops/Lemambi1", "https://tec.openplanner.team/stops/Lemeg--1"], ["https://tec.openplanner.team/stops/X921aja", "https://tec.openplanner.team/stops/X921ajb"], ["https://tec.openplanner.team/stops/N538adb", "https://tec.openplanner.team/stops/N542aob"], ["https://tec.openplanner.team/stops/Barcbav2", "https://tec.openplanner.team/stops/Bgzdcwa1"], ["https://tec.openplanner.team/stops/Cvp3til1", "https://tec.openplanner.team/stops/Cvpchat1"], ["https://tec.openplanner.team/stops/Bglabra1", "https://tec.openplanner.team/stops/Cgnquer2"], ["https://tec.openplanner.team/stops/N516ama", "https://tec.openplanner.team/stops/N581acb"], ["https://tec.openplanner.team/stops/H1me112b", "https://tec.openplanner.team/stops/H1me116b"], ["https://tec.openplanner.team/stops/LVTtrou2", "https://tec.openplanner.team/stops/LYEphar1"], ["https://tec.openplanner.team/stops/Cthalou2", "https://tec.openplanner.team/stops/Cthbifu1"], ["https://tec.openplanner.team/stops/LHMbach2", "https://tec.openplanner.team/stops/LHMthys1"], ["https://tec.openplanner.team/stops/Loubiez2", "https://tec.openplanner.team/stops/Loubiez3"], ["https://tec.openplanner.team/stops/LATdony1", "https://tec.openplanner.team/stops/LHUmari2"], ["https://tec.openplanner.team/stops/H2ch102b", "https://tec.openplanner.team/stops/H2ch105b"], ["https://tec.openplanner.team/stops/N224aaa", "https://tec.openplanner.team/stops/X224agb"], ["https://tec.openplanner.team/stops/H4wi162b", "https://tec.openplanner.team/stops/H5pe139a"], ["https://tec.openplanner.team/stops/Laddelc2", "https://tec.openplanner.team/stops/Ladjuif2"], ["https://tec.openplanner.team/stops/X769aca", "https://tec.openplanner.team/stops/X769aia"], ["https://tec.openplanner.team/stops/LHbcent1", "https://tec.openplanner.team/stops/LHbcent2"], ["https://tec.openplanner.team/stops/N501ixc", "https://tec.openplanner.team/stops/N501ixd"], ["https://tec.openplanner.team/stops/Brixwav1", "https://tec.openplanner.team/stops/Brixwav2"], ["https://tec.openplanner.team/stops/LrcarsT3", "https://tec.openplanner.team/stops/Lrcastr1"], ["https://tec.openplanner.team/stops/Lseaven2", "https://tec.openplanner.team/stops/Lsepuit2"], ["https://tec.openplanner.team/stops/Lagchen1", "https://tec.openplanner.team/stops/Lagkink2"], ["https://tec.openplanner.team/stops/LHHecol2", "https://tec.openplanner.team/stops/LHHronh1"], ["https://tec.openplanner.team/stops/X901bca", "https://tec.openplanner.team/stops/X901bcb"], ["https://tec.openplanner.team/stops/Bosqpco1", "https://tec.openplanner.team/stops/Bosqpco2"], ["https://tec.openplanner.team/stops/H4wp148b", "https://tec.openplanner.team/stops/H4wp150a"], ["https://tec.openplanner.team/stops/LFsbasc1", "https://tec.openplanner.team/stops/LFsbasc2"], ["https://tec.openplanner.team/stops/N135ava", "https://tec.openplanner.team/stops/N135avb"], ["https://tec.openplanner.team/stops/Bnilcab1", "https://tec.openplanner.team/stops/Bnilcha1"], ["https://tec.openplanner.team/stops/H1gy115a", "https://tec.openplanner.team/stops/H1le121b"], ["https://tec.openplanner.team/stops/NR10aaa", "https://tec.openplanner.team/stops/NR21afa"], ["https://tec.openplanner.team/stops/N155aed", "https://tec.openplanner.team/stops/N155afa"], ["https://tec.openplanner.team/stops/LTRsain2", "https://tec.openplanner.team/stops/LTRsain3"], ["https://tec.openplanner.team/stops/N565abb", "https://tec.openplanner.team/stops/N565afb"], ["https://tec.openplanner.team/stops/LsVhupp2", "https://tec.openplanner.team/stops/LsVrodt1"], ["https://tec.openplanner.team/stops/LrAplat1", "https://tec.openplanner.team/stops/LrAverb2"], ["https://tec.openplanner.team/stops/Cchdagn1", "https://tec.openplanner.team/stops/Cchtram2"], ["https://tec.openplanner.team/stops/H4ba103a", "https://tec.openplanner.team/stops/H4pi133b"], ["https://tec.openplanner.team/stops/N241ada", "https://tec.openplanner.team/stops/N241adb"], ["https://tec.openplanner.team/stops/N501ifa", "https://tec.openplanner.team/stops/N501iub"], ["https://tec.openplanner.team/stops/LTecent4", "https://tec.openplanner.team/stops/LTechpl2"], ["https://tec.openplanner.team/stops/LEHmarc2", "https://tec.openplanner.team/stops/LNCvill3"], ["https://tec.openplanner.team/stops/H4fr142a", "https://tec.openplanner.team/stops/H4ka393a"], ["https://tec.openplanner.team/stops/Lcemalv1", "https://tec.openplanner.team/stops/Lcemalv3"], ["https://tec.openplanner.team/stops/N543aca", "https://tec.openplanner.team/stops/N543acb"], ["https://tec.openplanner.team/stops/Lseegva1", "https://tec.openplanner.team/stops/Lsemany2"], ["https://tec.openplanner.team/stops/H1hr116a", "https://tec.openplanner.team/stops/H1hr125b"], ["https://tec.openplanner.team/stops/LHEoutr1", "https://tec.openplanner.team/stops/LHEzoni2"], ["https://tec.openplanner.team/stops/LoUpete2", "https://tec.openplanner.team/stops/X685apb"], ["https://tec.openplanner.team/stops/H4wn130a", "https://tec.openplanner.team/stops/H4wn130b"], ["https://tec.openplanner.team/stops/Canrsta2", "https://tec.openplanner.team/stops/Canterr1"], ["https://tec.openplanner.team/stops/Llgguer1", "https://tec.openplanner.team/stops/Llghoub2"], ["https://tec.openplanner.team/stops/X923aga", "https://tec.openplanner.team/stops/X923agb"], ["https://tec.openplanner.team/stops/H1wa154a", "https://tec.openplanner.team/stops/H1wa159a"], ["https://tec.openplanner.team/stops/X714acb", "https://tec.openplanner.team/stops/X715aka"], ["https://tec.openplanner.team/stops/H1bo101b", "https://tec.openplanner.team/stops/H1te198b"], ["https://tec.openplanner.team/stops/Llgcadr2", "https://tec.openplanner.team/stops/LlgOPER5"], ["https://tec.openplanner.team/stops/Cbzfrom2", "https://tec.openplanner.team/stops/Cluplve4"], ["https://tec.openplanner.team/stops/X833abb", "https://tec.openplanner.team/stops/X834aba"], ["https://tec.openplanner.team/stops/H1ge179a", "https://tec.openplanner.team/stops/H1ge179b"], ["https://tec.openplanner.team/stops/LBKmoes1", "https://tec.openplanner.team/stops/LOeelbe1"], ["https://tec.openplanner.team/stops/Bobacou1", "https://tec.openplanner.team/stops/Broscha2"], ["https://tec.openplanner.team/stops/X641aha", "https://tec.openplanner.team/stops/X641aia"], ["https://tec.openplanner.team/stops/LbUverb2", "https://tec.openplanner.team/stops/LhObull2"], ["https://tec.openplanner.team/stops/Cliegli2", "https://tec.openplanner.team/stops/Crebien2"], ["https://tec.openplanner.team/stops/NL57adc", "https://tec.openplanner.team/stops/NL57afb"], ["https://tec.openplanner.team/stops/H5rx138b", "https://tec.openplanner.team/stops/H5rx145a"], ["https://tec.openplanner.team/stops/N510ada", "https://tec.openplanner.team/stops/N510aeb"], ["https://tec.openplanner.team/stops/LPrcarr2", "https://tec.openplanner.team/stops/LSypesy1"], ["https://tec.openplanner.team/stops/H1gy111b", "https://tec.openplanner.team/stops/H1gy116b"], ["https://tec.openplanner.team/stops/Llgbobu1", "https://tec.openplanner.team/stops/Llgdelc*"], ["https://tec.openplanner.team/stops/H1gr113a", "https://tec.openplanner.team/stops/H1gr123d"], ["https://tec.openplanner.team/stops/Blascim2", "https://tec.openplanner.team/stops/Bohncha2"], ["https://tec.openplanner.team/stops/Baudsta2", "https://tec.openplanner.team/stops/Bkrabhu1"], ["https://tec.openplanner.team/stops/N531aja", "https://tec.openplanner.team/stops/N531ana"], ["https://tec.openplanner.team/stops/N230aja", "https://tec.openplanner.team/stops/N540acd"], ["https://tec.openplanner.team/stops/LMuvill2", "https://tec.openplanner.team/stops/LTreg--1"], ["https://tec.openplanner.team/stops/N242afa", "https://tec.openplanner.team/stops/N242aga"], ["https://tec.openplanner.team/stops/H2sv215a", "https://tec.openplanner.team/stops/H2sv215b"], ["https://tec.openplanner.team/stops/X939acb", "https://tec.openplanner.team/stops/X942acb"], ["https://tec.openplanner.team/stops/X715amb", "https://tec.openplanner.team/stops/X715apa"], ["https://tec.openplanner.team/stops/H2pr115a", "https://tec.openplanner.team/stops/H3br103b"], ["https://tec.openplanner.team/stops/Cgzlera1", "https://tec.openplanner.team/stops/Cgzlera2"], ["https://tec.openplanner.team/stops/LMIlac-2", "https://tec.openplanner.team/stops/Lrechap2"], ["https://tec.openplanner.team/stops/LAMrich2", "https://tec.openplanner.team/stops/LAMviam1"], ["https://tec.openplanner.team/stops/Lchpniv1", "https://tec.openplanner.team/stops/Lchtche2"], ["https://tec.openplanner.team/stops/H4cr110a", "https://tec.openplanner.team/stops/H4wt160b"], ["https://tec.openplanner.team/stops/X801aya", "https://tec.openplanner.team/stops/X801baa"], ["https://tec.openplanner.team/stops/X826aaa", "https://tec.openplanner.team/stops/X860abb"], ["https://tec.openplanner.team/stops/H5rx114a", "https://tec.openplanner.team/stops/H5rx114b"], ["https://tec.openplanner.team/stops/Bnivbne1", "https://tec.openplanner.team/stops/Bnivbng1"], ["https://tec.openplanner.team/stops/Bbch4br3", "https://tec.openplanner.team/stops/Bbchpil1"], ["https://tec.openplanner.team/stops/X614aeb", "https://tec.openplanner.team/stops/X614baa"], ["https://tec.openplanner.team/stops/Brsgsan1", "https://tec.openplanner.team/stops/Buccpes1"], ["https://tec.openplanner.team/stops/LFArela6", "https://tec.openplanner.team/stops/LFAwale2"], ["https://tec.openplanner.team/stops/NC24afa", "https://tec.openplanner.team/stops/NC44aaa"], ["https://tec.openplanner.team/stops/Cfanvmo1", "https://tec.openplanner.team/stops/Cfanvmo2"], ["https://tec.openplanner.team/stops/LOReg--1", "https://tec.openplanner.team/stops/LORgend1"], ["https://tec.openplanner.team/stops/Cmacreu2", "https://tec.openplanner.team/stops/Cmmtomb1"], ["https://tec.openplanner.team/stops/Llgcite2", "https://tec.openplanner.team/stops/Llgjean1"], ["https://tec.openplanner.team/stops/N145aga", "https://tec.openplanner.team/stops/N149aab"], ["https://tec.openplanner.team/stops/X744acb", "https://tec.openplanner.team/stops/X744ada"], ["https://tec.openplanner.team/stops/Bquegob2", "https://tec.openplanner.team/stops/Bquegob4"], ["https://tec.openplanner.team/stops/Bjcljau1", "https://tec.openplanner.team/stops/Bjdspon1"], ["https://tec.openplanner.team/stops/LeLbegl1", "https://tec.openplanner.team/stops/LeLherz1"], ["https://tec.openplanner.team/stops/Llgphol3", "https://tec.openplanner.team/stops/Llgsime2"], ["https://tec.openplanner.team/stops/LRRecdu1", "https://tec.openplanner.team/stops/LRRpost1"], ["https://tec.openplanner.team/stops/H5st164a", "https://tec.openplanner.team/stops/H5st164b"], ["https://tec.openplanner.team/stops/H1qu106a", "https://tec.openplanner.team/stops/H1qu106b"], ["https://tec.openplanner.team/stops/Lchorme2", "https://tec.openplanner.team/stops/Lchsaro1"], ["https://tec.openplanner.team/stops/N141aaa", "https://tec.openplanner.team/stops/X317aba"], ["https://tec.openplanner.team/stops/LPclaro2", "https://tec.openplanner.team/stops/LTGsucr1"], ["https://tec.openplanner.team/stops/LeUmoor2", "https://tec.openplanner.team/stops/LeUolen1"], ["https://tec.openplanner.team/stops/H4eh100a", "https://tec.openplanner.team/stops/H4sl155a"], ["https://tec.openplanner.team/stops/H2sb258a", "https://tec.openplanner.team/stops/H2sb271a"], ["https://tec.openplanner.team/stops/X773akb", "https://tec.openplanner.team/stops/X773aob"], ["https://tec.openplanner.team/stops/N580aaa", "https://tec.openplanner.team/stops/N580aha"], ["https://tec.openplanner.team/stops/LsVgesc2", "https://tec.openplanner.team/stops/LsVsimo1"], ["https://tec.openplanner.team/stops/Cfbcabi1", "https://tec.openplanner.team/stops/Cvrhaie2"], ["https://tec.openplanner.team/stops/N549aha", "https://tec.openplanner.team/stops/N578aaa"], ["https://tec.openplanner.team/stops/Lbhsion2", "https://tec.openplanner.team/stops/Ljuvert1"], ["https://tec.openplanner.team/stops/Bviravi2", "https://tec.openplanner.team/stops/Bvirgar2"], ["https://tec.openplanner.team/stops/H4og209a", "https://tec.openplanner.team/stops/H4og212a"], ["https://tec.openplanner.team/stops/X983aab", "https://tec.openplanner.team/stops/X983abb"], ["https://tec.openplanner.team/stops/N502aaa", "https://tec.openplanner.team/stops/N502aca"], ["https://tec.openplanner.team/stops/X394adb", "https://tec.openplanner.team/stops/X394aeb"], ["https://tec.openplanner.team/stops/X675aba", "https://tec.openplanner.team/stops/X817aga"], ["https://tec.openplanner.team/stops/LPRbrou2", "https://tec.openplanner.team/stops/Lrofont*"], ["https://tec.openplanner.team/stops/Ltichif2", "https://tec.openplanner.team/stops/Ltinico1"], ["https://tec.openplanner.team/stops/LSNgerm1", "https://tec.openplanner.team/stops/LSNretr1"], ["https://tec.openplanner.team/stops/LREgare1", "https://tec.openplanner.team/stops/LREgare2"], ["https://tec.openplanner.team/stops/X812ama", "https://tec.openplanner.team/stops/X812anb"], ["https://tec.openplanner.team/stops/Lanplat1", "https://tec.openplanner.team/stops/Lanplat2"], ["https://tec.openplanner.team/stops/N543bab", "https://tec.openplanner.team/stops/N543bgd"], ["https://tec.openplanner.team/stops/Cmacoll1", "https://tec.openplanner.team/stops/Cmaplas3"], ["https://tec.openplanner.team/stops/N308anb", "https://tec.openplanner.team/stops/N308bia"], ["https://tec.openplanner.team/stops/Bbiemse2", "https://tec.openplanner.team/stops/Bboneta2"], ["https://tec.openplanner.team/stops/LSGhagn2", "https://tec.openplanner.team/stops/LSGmale1"], ["https://tec.openplanner.team/stops/LOltill1", "https://tec.openplanner.team/stops/LOlvill1"], ["https://tec.openplanner.team/stops/N501bba", "https://tec.openplanner.team/stops/N501cdc"], ["https://tec.openplanner.team/stops/Cbiseur2", "https://tec.openplanner.team/stops/Ctucamb2"], ["https://tec.openplanner.team/stops/LBssucr2", "https://tec.openplanner.team/stops/LWNchar1"], ["https://tec.openplanner.team/stops/X658adb", "https://tec.openplanner.team/stops/X658afb"], ["https://tec.openplanner.team/stops/H2ll177b", "https://tec.openplanner.team/stops/H2ll267a"], ["https://tec.openplanner.team/stops/H2bh112b", "https://tec.openplanner.team/stops/H2bh115b"], ["https://tec.openplanner.team/stops/N501cqb", "https://tec.openplanner.team/stops/N501cub"], ["https://tec.openplanner.team/stops/H4ch120a", "https://tec.openplanner.team/stops/H4ch120b"], ["https://tec.openplanner.team/stops/Cfbcal2", "https://tec.openplanner.team/stops/Cfcrdpr2"], ["https://tec.openplanner.team/stops/H1ms901a", "https://tec.openplanner.team/stops/H1ms903a"], ["https://tec.openplanner.team/stops/Llgcrgu2", "https://tec.openplanner.team/stops/Llgguer1"], ["https://tec.openplanner.team/stops/LmDkirc1", "https://tec.openplanner.team/stops/LmDkoel2"], ["https://tec.openplanner.team/stops/X925agb", "https://tec.openplanner.team/stops/X925aha"], ["https://tec.openplanner.team/stops/LHmcarr1", "https://tec.openplanner.team/stops/LHmferm1"], ["https://tec.openplanner.team/stops/X850aia", "https://tec.openplanner.team/stops/X850aja"], ["https://tec.openplanner.team/stops/H4ga153a", "https://tec.openplanner.team/stops/H4ha171b"], ["https://tec.openplanner.team/stops/H1em106b", "https://tec.openplanner.team/stops/H1em108b"], ["https://tec.openplanner.team/stops/H4hn114b", "https://tec.openplanner.team/stops/H4pe127b"], ["https://tec.openplanner.team/stops/LLmvict2", "https://tec.openplanner.team/stops/LLmwaut2"], ["https://tec.openplanner.team/stops/N311aca", "https://tec.openplanner.team/stops/N311acb"], ["https://tec.openplanner.team/stops/H1nm138b", "https://tec.openplanner.team/stops/H1si156d"], ["https://tec.openplanner.team/stops/LMAwavr1", "https://tec.openplanner.team/stops/LSTmeiz1"], ["https://tec.openplanner.team/stops/Cdogrro2", "https://tec.openplanner.team/stops/Cstdona6"], ["https://tec.openplanner.team/stops/Cjuloos2", "https://tec.openplanner.team/stops/Cjuplco2"], ["https://tec.openplanner.team/stops/H1ms300a", "https://tec.openplanner.team/stops/H1ms303a"], ["https://tec.openplanner.team/stops/Bitrcha1", "https://tec.openplanner.team/stops/Bitreco2"], ["https://tec.openplanner.team/stops/X358aba", "https://tec.openplanner.team/stops/X358ada"], ["https://tec.openplanner.team/stops/LmTreic2", "https://tec.openplanner.team/stops/LmTschi2"], ["https://tec.openplanner.team/stops/Crchutt2", "https://tec.openplanner.team/stops/Crcverr2"], ["https://tec.openplanner.team/stops/H5rx126a", "https://tec.openplanner.team/stops/H5rx136b"], ["https://tec.openplanner.team/stops/N540aka", "https://tec.openplanner.team/stops/N540akb"], ["https://tec.openplanner.team/stops/LeI39--3", "https://tec.openplanner.team/stops/LeIdeid2"], ["https://tec.openplanner.team/stops/X950aab", "https://tec.openplanner.team/stops/X950aba"], ["https://tec.openplanner.team/stops/LLOberl2", "https://tec.openplanner.team/stops/LLOhest2"], ["https://tec.openplanner.team/stops/X903aaa", "https://tec.openplanner.team/stops/X943aaa"], ["https://tec.openplanner.team/stops/LFsbasc1", "https://tec.openplanner.team/stops/LSLstra2"], ["https://tec.openplanner.team/stops/Llonaes1", "https://tec.openplanner.team/stops/Lloross2"], ["https://tec.openplanner.team/stops/N426aca", "https://tec.openplanner.team/stops/N426acb"], ["https://tec.openplanner.team/stops/Lccuner1", "https://tec.openplanner.team/stops/Lccuner2"], ["https://tec.openplanner.team/stops/X222afa", "https://tec.openplanner.team/stops/X222afb"], ["https://tec.openplanner.team/stops/NC02bbb", "https://tec.openplanner.team/stops/NC14aea"], ["https://tec.openplanner.team/stops/Bcrnpla1", "https://tec.openplanner.team/stops/Bcrnvic1"], ["https://tec.openplanner.team/stops/H1so136d", "https://tec.openplanner.team/stops/H1so145a"], ["https://tec.openplanner.team/stops/LFlabba2", "https://tec.openplanner.team/stops/LHHlomb1"], ["https://tec.openplanner.team/stops/N521apa", "https://tec.openplanner.team/stops/N523aaa"], ["https://tec.openplanner.team/stops/X790aab", "https://tec.openplanner.team/stops/X790anb"], ["https://tec.openplanner.team/stops/Lemdieu2", "https://tec.openplanner.team/stops/Lemeg--2"], ["https://tec.openplanner.team/stops/N340acc", "https://tec.openplanner.team/stops/N340aeb"], ["https://tec.openplanner.team/stops/H2ha136a", "https://tec.openplanner.team/stops/H2ha137b"], ["https://tec.openplanner.team/stops/Beclbse1", "https://tec.openplanner.team/stops/H2ec108b"], ["https://tec.openplanner.team/stops/N308abb", "https://tec.openplanner.team/stops/N308bgb"], ["https://tec.openplanner.team/stops/LoDmuhl2", "https://tec.openplanner.team/stops/LrUoudl2"], ["https://tec.openplanner.team/stops/LMnlogi1", "https://tec.openplanner.team/stops/X222azb"], ["https://tec.openplanner.team/stops/Lmnbass1", "https://tec.openplanner.team/stops/Lmndeso1"], ["https://tec.openplanner.team/stops/Bchacen1", "https://tec.openplanner.team/stops/Bchapir2"], ["https://tec.openplanner.team/stops/H4rx142a", "https://tec.openplanner.team/stops/H4tf147b"], ["https://tec.openplanner.team/stops/H4ho121a", "https://tec.openplanner.team/stops/H4ho121b"], ["https://tec.openplanner.team/stops/N308aya", "https://tec.openplanner.team/stops/N308ayb"], ["https://tec.openplanner.team/stops/LJAchat1", "https://tec.openplanner.team/stops/LJAchat2"], ["https://tec.openplanner.team/stops/Cgzhour1", "https://tec.openplanner.team/stops/Cthrlef2"], ["https://tec.openplanner.team/stops/Lmlmaqu2", "https://tec.openplanner.team/stops/Lmlmaqu4"], ["https://tec.openplanner.team/stops/H1em107a", "https://tec.openplanner.team/stops/H1em107b"], ["https://tec.openplanner.team/stops/LlNschu1", "https://tec.openplanner.team/stops/LlNschu2"], ["https://tec.openplanner.team/stops/X664afb", "https://tec.openplanner.team/stops/X664agb"], ["https://tec.openplanner.team/stops/H1hh111b", "https://tec.openplanner.team/stops/H1hh118b"], ["https://tec.openplanner.team/stops/Bmarfjo1", "https://tec.openplanner.team/stops/Bmarfjo2"], ["https://tec.openplanner.team/stops/H1gh163b", "https://tec.openplanner.team/stops/H1gh167a"], ["https://tec.openplanner.team/stops/X768aba", "https://tec.openplanner.team/stops/X768abb"], ["https://tec.openplanner.team/stops/LLelans1", "https://tec.openplanner.team/stops/LLelans2"], ["https://tec.openplanner.team/stops/Crobass2", "https://tec.openplanner.team/stops/Crojume1"], ["https://tec.openplanner.team/stops/Bbealou1", "https://tec.openplanner.team/stops/Bbealou2"], ["https://tec.openplanner.team/stops/LLTfall1", "https://tec.openplanner.team/stops/LLTfall2"], ["https://tec.openplanner.team/stops/H2ma208a", "https://tec.openplanner.team/stops/H2sb231b"], ["https://tec.openplanner.team/stops/Ccisart1", "https://tec.openplanner.team/stops/Ccisart2"], ["https://tec.openplanner.team/stops/Bcercab2", "https://tec.openplanner.team/stops/Bottpin2"], ["https://tec.openplanner.team/stops/Lpegiet1", "https://tec.openplanner.team/stops/LWevand2"], ["https://tec.openplanner.team/stops/Lhemilm2", "https://tec.openplanner.team/stops/Lhepaqu2"], ["https://tec.openplanner.team/stops/X908afa", "https://tec.openplanner.team/stops/X908afb"], ["https://tec.openplanner.team/stops/Bbgerlr2", "https://tec.openplanner.team/stops/Blmldmi2"], ["https://tec.openplanner.team/stops/LbRkirc2", "https://tec.openplanner.team/stops/LtHkirc4"], ["https://tec.openplanner.team/stops/LHEjose1", "https://tec.openplanner.team/stops/LMEgare2"], ["https://tec.openplanner.team/stops/Blsmvan1", "https://tec.openplanner.team/stops/Braclin2"], ["https://tec.openplanner.team/stops/Bsdecdi1", "https://tec.openplanner.team/stops/N526ada"], ["https://tec.openplanner.team/stops/Cthgend2", "https://tec.openplanner.team/stops/Cthhvil1"], ["https://tec.openplanner.team/stops/X806aha", "https://tec.openplanner.team/stops/X806aja"], ["https://tec.openplanner.team/stops/LMebove1", "https://tec.openplanner.team/stops/LMeperk2"], ["https://tec.openplanner.team/stops/Lvchenn2", "https://tec.openplanner.team/stops/Lvcvesd*"], ["https://tec.openplanner.team/stops/Cchhopi2", "https://tec.openplanner.team/stops/CMjans1"], ["https://tec.openplanner.team/stops/H4mt219b", "https://tec.openplanner.team/stops/H4mt221a"], ["https://tec.openplanner.team/stops/Lstbota3", "https://tec.openplanner.team/stops/LTIgare3"], ["https://tec.openplanner.team/stops/H4bv146b", "https://tec.openplanner.team/stops/H5at129a"], ["https://tec.openplanner.team/stops/N125aba", "https://tec.openplanner.team/stops/N134aga"], ["https://tec.openplanner.team/stops/Bblaaca1", "https://tec.openplanner.team/stops/Bblahop1"], ["https://tec.openplanner.team/stops/N117aaa", "https://tec.openplanner.team/stops/N117aud"], ["https://tec.openplanner.team/stops/X731abb", "https://tec.openplanner.team/stops/X731aca"], ["https://tec.openplanner.team/stops/LrOfrie1", "https://tec.openplanner.team/stops/LrOn14-1"], ["https://tec.openplanner.team/stops/Bhalkrk1", "https://tec.openplanner.team/stops/Blkbavo2"], ["https://tec.openplanner.team/stops/LHUaveu2", "https://tec.openplanner.team/stops/LHUfont1"], ["https://tec.openplanner.team/stops/N234aba", "https://tec.openplanner.team/stops/N234ada"], ["https://tec.openplanner.team/stops/N501cxa", "https://tec.openplanner.team/stops/N501czb"], ["https://tec.openplanner.team/stops/LAYdieu2", "https://tec.openplanner.team/stops/LAYwerb2"], ["https://tec.openplanner.team/stops/Cmlecha1", "https://tec.openplanner.team/stops/CMsud2"], ["https://tec.openplanner.team/stops/Bcrbast1", "https://tec.openplanner.team/stops/Bcrbcel2"], ["https://tec.openplanner.team/stops/Llieg--2", "https://tec.openplanner.team/stops/Lvochev2"], ["https://tec.openplanner.team/stops/LBamate1", "https://tec.openplanner.team/stops/LBapeup1"], ["https://tec.openplanner.team/stops/Cgrbert2", "https://tec.openplanner.team/stops/Cgrflac1"], ["https://tec.openplanner.team/stops/Lrelier1", "https://tec.openplanner.team/stops/LSAhaye1"], ["https://tec.openplanner.team/stops/LlNkirc1", "https://tec.openplanner.team/stops/LlNkirc2"], ["https://tec.openplanner.team/stops/Cbfdufa2", "https://tec.openplanner.team/stops/Cctlimi1"], ["https://tec.openplanner.team/stops/N544afa", "https://tec.openplanner.team/stops/N544afb"], ["https://tec.openplanner.team/stops/X396aab", "https://tec.openplanner.team/stops/X901ala"], ["https://tec.openplanner.team/stops/Bbonbcr2", "https://tec.openplanner.team/stops/Bboncfv1"], ["https://tec.openplanner.team/stops/Lbeloui2", "https://tec.openplanner.team/stops/Llxec--1"], ["https://tec.openplanner.team/stops/X899agb", "https://tec.openplanner.team/stops/X899ahb"], ["https://tec.openplanner.team/stops/H1pe130a", "https://tec.openplanner.team/stops/H1pe132a"], ["https://tec.openplanner.team/stops/Ldihvce2", "https://tec.openplanner.team/stops/Ldipiss2"], ["https://tec.openplanner.team/stops/Lwaaube1", "https://tec.openplanner.team/stops/Lwapomp1"], ["https://tec.openplanner.team/stops/LBNeu712", "https://tec.openplanner.team/stops/LhElont2"], ["https://tec.openplanner.team/stops/LSPbalm1", "https://tec.openplanner.team/stops/LSPbalm2"], ["https://tec.openplanner.team/stops/H4pi134a", "https://tec.openplanner.team/stops/H4pi134b"], ["https://tec.openplanner.team/stops/X724acb", "https://tec.openplanner.team/stops/X724adb"], ["https://tec.openplanner.team/stops/H4ho121b", "https://tec.openplanner.team/stops/H4pl135a"], ["https://tec.openplanner.team/stops/X925ahb", "https://tec.openplanner.team/stops/X925aia"], ["https://tec.openplanner.team/stops/LBpecco2", "https://tec.openplanner.team/stops/LBpecco4"], ["https://tec.openplanner.team/stops/N101aca", "https://tec.openplanner.team/stops/N101ama"], ["https://tec.openplanner.team/stops/LWOwa161", "https://tec.openplanner.team/stops/LWOwaer1"], ["https://tec.openplanner.team/stops/Ccicouc2", "https://tec.openplanner.team/stops/Ccinali2"], ["https://tec.openplanner.team/stops/X611ada", "https://tec.openplanner.team/stops/X643abb"], ["https://tec.openplanner.team/stops/H4rm108a", "https://tec.openplanner.team/stops/H4ta123a"], ["https://tec.openplanner.team/stops/Caigibe1", "https://tec.openplanner.team/stops/Cplbbro2"], ["https://tec.openplanner.team/stops/LeYauss2", "https://tec.openplanner.team/stops/LeYfeld1"], ["https://tec.openplanner.team/stops/LCsjone2", "https://tec.openplanner.team/stops/LSCchap1"], ["https://tec.openplanner.team/stops/H1sp357c", "https://tec.openplanner.team/stops/H1ss350a"], ["https://tec.openplanner.team/stops/H3lr132b", "https://tec.openplanner.team/stops/H3th135c"], ["https://tec.openplanner.team/stops/X896aab", "https://tec.openplanner.team/stops/X995adb"], ["https://tec.openplanner.team/stops/X347aaa", "https://tec.openplanner.team/stops/X347aab"], ["https://tec.openplanner.team/stops/Lgdblom1", "https://tec.openplanner.team/stops/Lgdblom2"], ["https://tec.openplanner.team/stops/LsVgils2", "https://tec.openplanner.team/stops/LsVhupp1"], ["https://tec.openplanner.team/stops/X342aha", "https://tec.openplanner.team/stops/X354abb"], ["https://tec.openplanner.team/stops/Baudtri2", "https://tec.openplanner.team/stops/Bwbfgar2"], ["https://tec.openplanner.team/stops/X727adb", "https://tec.openplanner.team/stops/X747aba"], ["https://tec.openplanner.team/stops/X359acb", "https://tec.openplanner.team/stops/X359aea"], ["https://tec.openplanner.team/stops/H4po126b", "https://tec.openplanner.team/stops/H4po130b"], ["https://tec.openplanner.team/stops/N167aba", "https://tec.openplanner.team/stops/N550amb"], ["https://tec.openplanner.team/stops/LDAandr1", "https://tec.openplanner.team/stops/LMucarr1"], ["https://tec.openplanner.team/stops/Lougare2", "https://tec.openplanner.team/stops/Lougare3"], ["https://tec.openplanner.team/stops/Lhrdron2", "https://tec.openplanner.team/stops/Lhrmura2"], ["https://tec.openplanner.team/stops/X605ada", "https://tec.openplanner.team/stops/X605ala"], ["https://tec.openplanner.team/stops/H1qp141b", "https://tec.openplanner.team/stops/H1qp150b"], ["https://tec.openplanner.team/stops/LmD181-2", "https://tec.openplanner.team/stops/LmDwei31"], ["https://tec.openplanner.team/stops/H1gh144b", "https://tec.openplanner.team/stops/H1gh154b"], ["https://tec.openplanner.team/stops/N120aba", "https://tec.openplanner.team/stops/N120abb"], ["https://tec.openplanner.team/stops/Bmrleco3", "https://tec.openplanner.team/stops/Bmrleco4"], ["https://tec.openplanner.team/stops/Bpthcai1", "https://tec.openplanner.team/stops/Bwanwar1"], ["https://tec.openplanner.team/stops/LeYroth1", "https://tec.openplanner.team/stops/LeYroth2"], ["https://tec.openplanner.team/stops/LAwfans1", "https://tec.openplanner.team/stops/LHycent*"], ["https://tec.openplanner.team/stops/LHZbren1", "https://tec.openplanner.team/stops/LHZcouv1"], ["https://tec.openplanner.team/stops/H1hw124a", "https://tec.openplanner.team/stops/H1hw124b"], ["https://tec.openplanner.team/stops/LCPgare2", "https://tec.openplanner.team/stops/LCPscay2"], ["https://tec.openplanner.team/stops/H2hp123d", "https://tec.openplanner.team/stops/H2hp262a"], ["https://tec.openplanner.team/stops/H1mq200b", "https://tec.openplanner.team/stops/H5me106a"], ["https://tec.openplanner.team/stops/N562aoa", "https://tec.openplanner.team/stops/N562bna"], ["https://tec.openplanner.team/stops/Cgxmorg1", "https://tec.openplanner.team/stops/Cgxprad3"], ["https://tec.openplanner.team/stops/Lsmcime1", "https://tec.openplanner.team/stops/Lsmecol1"], ["https://tec.openplanner.team/stops/LHueg--1", "https://tec.openplanner.team/stops/LHuherm2"], ["https://tec.openplanner.team/stops/LHaodei1", "https://tec.openplanner.team/stops/LHarenn4"], ["https://tec.openplanner.team/stops/H1et101a", "https://tec.openplanner.team/stops/H1et101b"], ["https://tec.openplanner.team/stops/Blthwav1", "https://tec.openplanner.team/stops/Blthwav3"], ["https://tec.openplanner.team/stops/N137aga", "https://tec.openplanner.team/stops/N137agb"], ["https://tec.openplanner.team/stops/NL74adb", "https://tec.openplanner.team/stops/NL74aia"], ["https://tec.openplanner.team/stops/Brixcab1", "https://tec.openplanner.team/stops/Brixmar3"], ["https://tec.openplanner.team/stops/X917ada", "https://tec.openplanner.team/stops/X917adb"], ["https://tec.openplanner.team/stops/LWipaif3", "https://tec.openplanner.team/stops/LWipaif4"], ["https://tec.openplanner.team/stops/H1wa132b", "https://tec.openplanner.team/stops/H1wa145b"], ["https://tec.openplanner.team/stops/Ltigare1", "https://tec.openplanner.team/stops/Ltipass1"], ["https://tec.openplanner.team/stops/LaMades1", "https://tec.openplanner.team/stops/LmDkoel1"], ["https://tec.openplanner.team/stops/N501ihb", "https://tec.openplanner.team/stops/N501ija"], ["https://tec.openplanner.team/stops/Clcfall1", "https://tec.openplanner.team/stops/Clcfall2"], ["https://tec.openplanner.team/stops/X817afa", "https://tec.openplanner.team/stops/X817afb"], ["https://tec.openplanner.team/stops/N117bdc", "https://tec.openplanner.team/stops/N117bdd"], ["https://tec.openplanner.team/stops/Cmlvxmo1", "https://tec.openplanner.team/stops/Cmlvxmo2"], ["https://tec.openplanner.team/stops/Balsbeg2", "https://tec.openplanner.team/stops/Balsnay2"], ["https://tec.openplanner.team/stops/X633aib", "https://tec.openplanner.team/stops/X654aib"], ["https://tec.openplanner.team/stops/X908ara", "https://tec.openplanner.team/stops/X908asa"], ["https://tec.openplanner.team/stops/Ctm4che1", "https://tec.openplanner.team/stops/Ctm4che2"], ["https://tec.openplanner.team/stops/H4bo182a", "https://tec.openplanner.team/stops/H4og211b"], ["https://tec.openplanner.team/stops/Lcealig1", "https://tec.openplanner.team/stops/Lcewilm2"], ["https://tec.openplanner.team/stops/Cciferr1", "https://tec.openplanner.team/stops/Ccircar2"], ["https://tec.openplanner.team/stops/H1ca101b", "https://tec.openplanner.team/stops/H1ca107b"], ["https://tec.openplanner.team/stops/Cpcathe1", "https://tec.openplanner.team/stops/Cpctrau1"], ["https://tec.openplanner.team/stops/X882aba", "https://tec.openplanner.team/stops/X882amb"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LCxcham1"], ["https://tec.openplanner.team/stops/X937aha", "https://tec.openplanner.team/stops/X937aja"], ["https://tec.openplanner.team/stops/X870afa", "https://tec.openplanner.team/stops/X870ahb"], ["https://tec.openplanner.team/stops/H1br122b", "https://tec.openplanner.team/stops/H1br126b"], ["https://tec.openplanner.team/stops/Cmtpblo2", "https://tec.openplanner.team/stops/Cmtprey1"], ["https://tec.openplanner.team/stops/LFTeg--1", "https://tec.openplanner.team/stops/LFTeg--2"], ["https://tec.openplanner.team/stops/Bolgcsa1", "https://tec.openplanner.team/stops/Bolgcsa2"], ["https://tec.openplanner.team/stops/LRRoser2", "https://tec.openplanner.team/stops/LTamag1"], ["https://tec.openplanner.team/stops/Lfhnrou1", "https://tec.openplanner.team/stops/Lfhnrou2"], ["https://tec.openplanner.team/stops/H1br121a", "https://tec.openplanner.team/stops/H1br129a"], ["https://tec.openplanner.team/stops/N118aeb", "https://tec.openplanner.team/stops/N118alb"], ["https://tec.openplanner.team/stops/H4ca120a", "https://tec.openplanner.team/stops/H4ca121a"], ["https://tec.openplanner.team/stops/H1tt106a", "https://tec.openplanner.team/stops/H1tt107a"], ["https://tec.openplanner.team/stops/N132abb", "https://tec.openplanner.team/stops/N152abc"], ["https://tec.openplanner.team/stops/Bwavcui1", "https://tec.openplanner.team/stops/Bwavtas3"], ["https://tec.openplanner.team/stops/N118ala", "https://tec.openplanner.team/stops/N118alb"], ["https://tec.openplanner.team/stops/X818ajb", "https://tec.openplanner.team/stops/X818aka"], ["https://tec.openplanner.team/stops/X641afb", "https://tec.openplanner.team/stops/X641afc"], ["https://tec.openplanner.team/stops/H5el101a", "https://tec.openplanner.team/stops/H5el101b"], ["https://tec.openplanner.team/stops/N558ada", "https://tec.openplanner.team/stops/N558afb"], ["https://tec.openplanner.team/stops/Bquebre1", "https://tec.openplanner.team/stops/Bsteegl1"], ["https://tec.openplanner.team/stops/LLxalle1", "https://tec.openplanner.team/stops/LVIcarm2"], ["https://tec.openplanner.team/stops/H5bl119d", "https://tec.openplanner.team/stops/H5bl141a"], ["https://tec.openplanner.team/stops/Cgzhour2", "https://tec.openplanner.team/stops/Clb4dgi1"], ["https://tec.openplanner.team/stops/X601bza", "https://tec.openplanner.team/stops/X601dea"], ["https://tec.openplanner.team/stops/N562bib", "https://tec.openplanner.team/stops/N562bkb"], ["https://tec.openplanner.team/stops/Bbeaech2", "https://tec.openplanner.team/stops/Btiegar2"], ["https://tec.openplanner.team/stops/H4th140a", "https://tec.openplanner.team/stops/H4th140b"], ["https://tec.openplanner.team/stops/LXhhaka1", "https://tec.openplanner.team/stops/LXhvanh1"], ["https://tec.openplanner.team/stops/Bhencha2", "https://tec.openplanner.team/stops/Bvirmbr1"], ["https://tec.openplanner.team/stops/H1an100a", "https://tec.openplanner.team/stops/H1au103b"], ["https://tec.openplanner.team/stops/X754aga", "https://tec.openplanner.team/stops/X754agb"], ["https://tec.openplanner.team/stops/N135ayb", "https://tec.openplanner.team/stops/N135bia"], ["https://tec.openplanner.team/stops/H4fr146a", "https://tec.openplanner.team/stops/H4fr146b"], ["https://tec.openplanner.team/stops/LGeborn1", "https://tec.openplanner.team/stops/LGepeck1"], ["https://tec.openplanner.team/stops/LDOanes1", "https://tec.openplanner.team/stops/LDOdavi1"], ["https://tec.openplanner.team/stops/Bbstasa1", "https://tec.openplanner.team/stops/Bbststa2"], ["https://tec.openplanner.team/stops/H2be100a", "https://tec.openplanner.team/stops/H2lh132a"], ["https://tec.openplanner.team/stops/X650afd", "https://tec.openplanner.team/stops/X650afe"], ["https://tec.openplanner.team/stops/H4bs114a", "https://tec.openplanner.team/stops/H4ro156a"], ["https://tec.openplanner.team/stops/Bhvlbet1", "https://tec.openplanner.team/stops/Bhvlbet2"], ["https://tec.openplanner.team/stops/LFCalte2", "https://tec.openplanner.team/stops/LFCkerk2"], ["https://tec.openplanner.team/stops/Bbst4br2", "https://tec.openplanner.team/stops/Bbst4br4"], ["https://tec.openplanner.team/stops/LMIgare1", "https://tec.openplanner.team/stops/LMIpast1"], ["https://tec.openplanner.team/stops/LSZjona1", "https://tec.openplanner.team/stops/LSZjona2"], ["https://tec.openplanner.team/stops/H4lh118b", "https://tec.openplanner.team/stops/H4oe149b"], ["https://tec.openplanner.team/stops/LbO52--2", "https://tec.openplanner.team/stops/LmDhoch1"], ["https://tec.openplanner.team/stops/LoDmuhl1", "https://tec.openplanner.team/stops/LoDulf-1"], ["https://tec.openplanner.team/stops/H1bo100a", "https://tec.openplanner.team/stops/H1bo108c"], ["https://tec.openplanner.team/stops/X650ana", "https://tec.openplanner.team/stops/X650anb"], ["https://tec.openplanner.team/stops/N514aka", "https://tec.openplanner.team/stops/N514akb"], ["https://tec.openplanner.team/stops/Cmlener1", "https://tec.openplanner.team/stops/Cmlener2"], ["https://tec.openplanner.team/stops/X839aeb", "https://tec.openplanner.team/stops/X840aga"], ["https://tec.openplanner.team/stops/X904aeb", "https://tec.openplanner.team/stops/X904anb"], ["https://tec.openplanner.team/stops/LbUpost1", "https://tec.openplanner.team/stops/LbUverb2"], ["https://tec.openplanner.team/stops/Lceegli*", "https://tec.openplanner.team/stops/Lceviei2"], ["https://tec.openplanner.team/stops/X614aaa", "https://tec.openplanner.team/stops/X614aab"], ["https://tec.openplanner.team/stops/Bjanegl3", "https://tec.openplanner.team/stops/Bjaurgo2"], ["https://tec.openplanner.team/stops/LHOmc--2", "https://tec.openplanner.team/stops/LSRbouh2"], ["https://tec.openplanner.team/stops/N301aba", "https://tec.openplanner.team/stops/N301ada"], ["https://tec.openplanner.team/stops/X661aab", "https://tec.openplanner.team/stops/X836ajb"], ["https://tec.openplanner.team/stops/H1ba109a", "https://tec.openplanner.team/stops/H1ba120a"], ["https://tec.openplanner.team/stops/N201aef", "https://tec.openplanner.team/stops/N201aia"], ["https://tec.openplanner.team/stops/Blmldmi1", "https://tec.openplanner.team/stops/Blmlgar1"], ["https://tec.openplanner.team/stops/N527afa", "https://tec.openplanner.team/stops/N527agb"], ["https://tec.openplanner.team/stops/Bblabfo2", "https://tec.openplanner.team/stops/Bblaniv1"], ["https://tec.openplanner.team/stops/LlNlont2", "https://tec.openplanner.team/stops/LlNm%C3%BChl2"], ["https://tec.openplanner.team/stops/X561aaa", "https://tec.openplanner.team/stops/X575abb"], ["https://tec.openplanner.team/stops/Cmygbbo1", "https://tec.openplanner.team/stops/Cmygbbo3"], ["https://tec.openplanner.team/stops/LSOfech1", "https://tec.openplanner.team/stops/LSOfech2"], ["https://tec.openplanner.team/stops/X979aaa", "https://tec.openplanner.team/stops/X979aia"], ["https://tec.openplanner.team/stops/H5wo125a", "https://tec.openplanner.team/stops/H5wo134b"], ["https://tec.openplanner.team/stops/N501inb", "https://tec.openplanner.team/stops/N501ipb"], ["https://tec.openplanner.team/stops/LbTcarm1", "https://tec.openplanner.team/stops/LbTdoma2"], ["https://tec.openplanner.team/stops/N530aha", "https://tec.openplanner.team/stops/N530ahb"], ["https://tec.openplanner.team/stops/Cmazone1", "https://tec.openplanner.team/stops/Cmmegli3"], ["https://tec.openplanner.team/stops/N305aaa", "https://tec.openplanner.team/stops/N331acb"], ["https://tec.openplanner.team/stops/H1so142a", "https://tec.openplanner.team/stops/H1so142d"], ["https://tec.openplanner.team/stops/LPTblan1", "https://tec.openplanner.team/stops/LPTgran2"], ["https://tec.openplanner.team/stops/H5qu148a", "https://tec.openplanner.team/stops/H5qu149a"], ["https://tec.openplanner.team/stops/LFsbasc2", "https://tec.openplanner.team/stops/LSLstra2"], ["https://tec.openplanner.team/stops/X901asa", "https://tec.openplanner.team/stops/X901axa"], ["https://tec.openplanner.team/stops/Bwavbar1", "https://tec.openplanner.team/stops/Bwavlav1"], ["https://tec.openplanner.team/stops/X882aab", "https://tec.openplanner.team/stops/X882aeb"], ["https://tec.openplanner.team/stops/LSeaque3", "https://tec.openplanner.team/stops/LVbstre1"], ["https://tec.openplanner.team/stops/Lsepapi3", "https://tec.openplanner.team/stops/Lseruis1"], ["https://tec.openplanner.team/stops/H2bh113a", "https://tec.openplanner.team/stops/H2lc145a"], ["https://tec.openplanner.team/stops/N534aqa", "https://tec.openplanner.team/stops/N534awb"], ["https://tec.openplanner.team/stops/H4wg121a", "https://tec.openplanner.team/stops/H4wg121b"], ["https://tec.openplanner.team/stops/X901ama", "https://tec.openplanner.team/stops/X901arb"], ["https://tec.openplanner.team/stops/Lghcfer1", "https://tec.openplanner.team/stops/Ljerouy2"], ["https://tec.openplanner.team/stops/Llgcime1", "https://tec.openplanner.team/stops/Llgegwa1"], ["https://tec.openplanner.team/stops/LhGkirc1", "https://tec.openplanner.team/stops/LhGkirc2"], ["https://tec.openplanner.team/stops/NH01aia", "https://tec.openplanner.team/stops/NH01aob"], ["https://tec.openplanner.team/stops/Lhrlalo3", "https://tec.openplanner.team/stops/Llgchan2"], ["https://tec.openplanner.team/stops/Cjudest1", "https://tec.openplanner.team/stops/Cjudest3"], ["https://tec.openplanner.team/stops/N232afb", "https://tec.openplanner.team/stops/N251aab"], ["https://tec.openplanner.team/stops/LHe3com1", "https://tec.openplanner.team/stops/LHe3com2"], ["https://tec.openplanner.team/stops/H5ma180a", "https://tec.openplanner.team/stops/H5ma185a"], ["https://tec.openplanner.team/stops/Cthcrom2", "https://tec.openplanner.team/stops/Cthrwai2"], ["https://tec.openplanner.team/stops/Cgxchan2", "https://tec.openplanner.team/stops/Cgxcite2"], ["https://tec.openplanner.team/stops/Bblabos2", "https://tec.openplanner.team/stops/Bblasmo1"], ["https://tec.openplanner.team/stops/H1ch104b", "https://tec.openplanner.team/stops/H1ch105b"], ["https://tec.openplanner.team/stops/Canrobe1", "https://tec.openplanner.team/stops/Canrtth3"], ["https://tec.openplanner.team/stops/X886aab", "https://tec.openplanner.team/stops/X886aha"], ["https://tec.openplanner.team/stops/Lalwaro2", "https://tec.openplanner.team/stops/Lloauto1"], ["https://tec.openplanner.team/stops/LHCpaci1", "https://tec.openplanner.team/stops/LWEmito2"], ["https://tec.openplanner.team/stops/Ccifies2", "https://tec.openplanner.team/stops/Clvimtr1"], ["https://tec.openplanner.team/stops/N501itb", "https://tec.openplanner.team/stops/N501iua"], ["https://tec.openplanner.team/stops/LLnlimb2", "https://tec.openplanner.team/stops/LLnpomp2"], ["https://tec.openplanner.team/stops/Cjochap2", "https://tec.openplanner.team/stops/Cjojonc2"], ["https://tec.openplanner.team/stops/X779agb", "https://tec.openplanner.team/stops/X779ahb"], ["https://tec.openplanner.team/stops/H4mx117b", "https://tec.openplanner.team/stops/H4mx119c"], ["https://tec.openplanner.team/stops/Cfrchfe1", "https://tec.openplanner.team/stops/Cfrptfe2"], ["https://tec.openplanner.team/stops/Cmogrbu2", "https://tec.openplanner.team/stops/Cmogtri2"], ["https://tec.openplanner.team/stops/Clbptno3", "https://tec.openplanner.team/stops/Cthgrat1"], ["https://tec.openplanner.team/stops/H4ch117a", "https://tec.openplanner.team/stops/H4ch117b"], ["https://tec.openplanner.team/stops/LTiflor1", "https://tec.openplanner.team/stops/LTiterr1"], ["https://tec.openplanner.team/stops/Llgcbat1", "https://tec.openplanner.team/stops/Llgjasm1"], ["https://tec.openplanner.team/stops/Ljecoqu2", "https://tec.openplanner.team/stops/LjeGRPME"], ["https://tec.openplanner.team/stops/LBTwauc1", "https://tec.openplanner.team/stops/LCHeg--1"], ["https://tec.openplanner.team/stops/N106aba", "https://tec.openplanner.team/stops/N106acb"], ["https://tec.openplanner.team/stops/Cflcarr2", "https://tec.openplanner.team/stops/Cflchel4"], ["https://tec.openplanner.team/stops/LRRpost1", "https://tec.openplanner.team/stops/LRRpost2"], ["https://tec.openplanner.team/stops/Lghfors1", "https://tec.openplanner.team/stops/Lghneuv2"], ["https://tec.openplanner.team/stops/H4mo167a", "https://tec.openplanner.team/stops/H4mo174a"], ["https://tec.openplanner.team/stops/Clfbarr6", "https://tec.openplanner.team/stops/Clftour1"], ["https://tec.openplanner.team/stops/Bmarchn1", "https://tec.openplanner.team/stops/Bmarmco1"], ["https://tec.openplanner.team/stops/X634aaa", "https://tec.openplanner.team/stops/X634aab"], ["https://tec.openplanner.team/stops/LCPconf1", "https://tec.openplanner.team/stops/LSdbote1"], ["https://tec.openplanner.team/stops/N232bka", "https://tec.openplanner.team/stops/N232bra"], ["https://tec.openplanner.team/stops/LnIfrie2", "https://tec.openplanner.team/stops/LnIkirc2"], ["https://tec.openplanner.team/stops/LhSkape1", "https://tec.openplanner.team/stops/LhSschn2"], ["https://tec.openplanner.team/stops/N232byb", "https://tec.openplanner.team/stops/N242adc"], ["https://tec.openplanner.team/stops/Chhbiet1", "https://tec.openplanner.team/stops/Chhprai1"], ["https://tec.openplanner.team/stops/LBRpt--1", "https://tec.openplanner.team/stops/LBRruel1"], ["https://tec.openplanner.team/stops/H5at120b", "https://tec.openplanner.team/stops/H5at141b"], ["https://tec.openplanner.team/stops/N532aja", "https://tec.openplanner.team/stops/N532akb"], ["https://tec.openplanner.team/stops/X888ada", "https://tec.openplanner.team/stops/X888aeb"], ["https://tec.openplanner.team/stops/X769aga", "https://tec.openplanner.team/stops/X769ahb"], ["https://tec.openplanner.team/stops/X672afa", "https://tec.openplanner.team/stops/X672aka"], ["https://tec.openplanner.team/stops/LLUpier1", "https://tec.openplanner.team/stops/LLUpier2"], ["https://tec.openplanner.team/stops/Lfllapi5", "https://tec.openplanner.team/stops/Lflsana2"], ["https://tec.openplanner.team/stops/N121aaa", "https://tec.openplanner.team/stops/N121abb"], ["https://tec.openplanner.team/stops/X638arb", "https://tec.openplanner.team/stops/X639aaa"], ["https://tec.openplanner.team/stops/Btlbegl1", "https://tec.openplanner.team/stops/Btlbegl2"], ["https://tec.openplanner.team/stops/N260aaa", "https://tec.openplanner.team/stops/N270ada"], ["https://tec.openplanner.team/stops/N580abb", "https://tec.openplanner.team/stops/N580aeb"], ["https://tec.openplanner.team/stops/N501ltb", "https://tec.openplanner.team/stops/N501mfb"], ["https://tec.openplanner.team/stops/Crs74em1", "https://tec.openplanner.team/stops/Crswaut2"], ["https://tec.openplanner.team/stops/Cmlbruy1", "https://tec.openplanner.team/stops/Cmmbmad2"], ["https://tec.openplanner.team/stops/Cgotech1", "https://tec.openplanner.team/stops/Craplac3"], ["https://tec.openplanner.team/stops/N515ana", "https://tec.openplanner.team/stops/N515atb"], ["https://tec.openplanner.team/stops/Cptccas1", "https://tec.openplanner.team/stops/Cptchea2"], ["https://tec.openplanner.team/stops/N121aca", "https://tec.openplanner.team/stops/N121aja"], ["https://tec.openplanner.team/stops/NL76bca", "https://tec.openplanner.team/stops/NL77ahb"], ["https://tec.openplanner.team/stops/LSlbail2", "https://tec.openplanner.team/stops/X919aaa"], ["https://tec.openplanner.team/stops/H2mg141a", "https://tec.openplanner.team/stops/H2mg142b"], ["https://tec.openplanner.team/stops/Bwatcom1", "https://tec.openplanner.team/stops/Bwatsan1"], ["https://tec.openplanner.team/stops/LeUcroi1", "https://tec.openplanner.team/stops/LeUwetz1"], ["https://tec.openplanner.team/stops/Bclgegl1", "https://tec.openplanner.team/stops/Bclgvmo1"], ["https://tec.openplanner.team/stops/N558aaa", "https://tec.openplanner.team/stops/N558ama"], ["https://tec.openplanner.team/stops/X614awb", "https://tec.openplanner.team/stops/X615aua"], ["https://tec.openplanner.team/stops/H4de113a", "https://tec.openplanner.team/stops/H5rx103b"], ["https://tec.openplanner.team/stops/Lcheg--1", "https://tec.openplanner.team/stops/Lchpniv2"], ["https://tec.openplanner.team/stops/H4ty280a", "https://tec.openplanner.team/stops/H4ty314d"], ["https://tec.openplanner.team/stops/LHCandr2", "https://tec.openplanner.team/stops/LHCcroy2"], ["https://tec.openplanner.team/stops/H4og207b", "https://tec.openplanner.team/stops/H4og212a"], ["https://tec.openplanner.team/stops/Cmyedpa1", "https://tec.openplanner.team/stops/Cmymarb1"], ["https://tec.openplanner.team/stops/X369aba", "https://tec.openplanner.team/stops/X369abb"], ["https://tec.openplanner.team/stops/X754arb", "https://tec.openplanner.team/stops/X754atb"], ["https://tec.openplanner.team/stops/LHUbail2", "https://tec.openplanner.team/stops/LHUsart1"], ["https://tec.openplanner.team/stops/N512ana", "https://tec.openplanner.team/stops/N512atc"], ["https://tec.openplanner.team/stops/Cgoetun1", "https://tec.openplanner.team/stops/Cgoetun2"], ["https://tec.openplanner.team/stops/X870aeb", "https://tec.openplanner.team/stops/X880agd"], ["https://tec.openplanner.team/stops/LaMjous2", "https://tec.openplanner.team/stops/LaMschw1"], ["https://tec.openplanner.team/stops/NH01agd", "https://tec.openplanner.team/stops/NH01ama"], ["https://tec.openplanner.team/stops/LFmceli2", "https://tec.openplanner.team/stops/LFmpoin2"], ["https://tec.openplanner.team/stops/Cfoperz1", "https://tec.openplanner.team/stops/Cfovent1"], ["https://tec.openplanner.team/stops/LBRpier1", "https://tec.openplanner.team/stops/LLRsalm2"], ["https://tec.openplanner.team/stops/X805ahb", "https://tec.openplanner.team/stops/X869afb"], ["https://tec.openplanner.team/stops/N351afb", "https://tec.openplanner.team/stops/N351aia"], ["https://tec.openplanner.team/stops/Cmachau1", "https://tec.openplanner.team/stops/Cmaegal2"], ["https://tec.openplanner.team/stops/X801aba", "https://tec.openplanner.team/stops/X801abb"], ["https://tec.openplanner.team/stops/H4lz124b", "https://tec.openplanner.team/stops/H4lz127b"], ["https://tec.openplanner.team/stops/LTHroch2", "https://tec.openplanner.team/stops/LTHwaux2"], ["https://tec.openplanner.team/stops/H4me211a", "https://tec.openplanner.team/stops/H4ve133b"], ["https://tec.openplanner.team/stops/H4mo155a", "https://tec.openplanner.team/stops/H4rx141a"], ["https://tec.openplanner.team/stops/H4ft132a", "https://tec.openplanner.team/stops/H4ft138b"], ["https://tec.openplanner.team/stops/H1mr124b", "https://tec.openplanner.team/stops/H1on129b"], ["https://tec.openplanner.team/stops/Bwatcrf1", "https://tec.openplanner.team/stops/Bwatdco1"], ["https://tec.openplanner.team/stops/LTPnoup2", "https://tec.openplanner.team/stops/LTPspay2"], ["https://tec.openplanner.team/stops/LhRandl2", "https://tec.openplanner.team/stops/LhRkirc2"], ["https://tec.openplanner.team/stops/H1og132b", "https://tec.openplanner.team/stops/H5wo122a"], ["https://tec.openplanner.team/stops/Lhrlico3", "https://tec.openplanner.team/stops/Lhrtilm1"], ["https://tec.openplanner.team/stops/H1gh145b", "https://tec.openplanner.team/stops/H1gh150a"], ["https://tec.openplanner.team/stops/X986ada", "https://tec.openplanner.team/stops/X986aeb"], ["https://tec.openplanner.team/stops/LHecime1", "https://tec.openplanner.team/stops/LHSheur2"], ["https://tec.openplanner.team/stops/H4rk101a", "https://tec.openplanner.team/stops/H4tg170a"], ["https://tec.openplanner.team/stops/Bmalwvi1", "https://tec.openplanner.team/stops/Boppcen4"], ["https://tec.openplanner.team/stops/N559acb", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/H4lz125a", "https://tec.openplanner.team/stops/H4lz162a"], ["https://tec.openplanner.team/stops/X812aca", "https://tec.openplanner.team/stops/X812aia"], ["https://tec.openplanner.team/stops/H4ne140a", "https://tec.openplanner.team/stops/H4te249a"], ["https://tec.openplanner.team/stops/H1gc122b", "https://tec.openplanner.team/stops/H1go169a"], ["https://tec.openplanner.team/stops/Bhensei2", "https://tec.openplanner.team/stops/Bquevel2"], ["https://tec.openplanner.team/stops/Bfelbri3", "https://tec.openplanner.team/stops/Bfelgar2"], ["https://tec.openplanner.team/stops/Bmrleco2", "https://tec.openplanner.team/stops/Bmrlhan1"], ["https://tec.openplanner.team/stops/Lourose1", "https://tec.openplanner.team/stops/Louvivi1"], ["https://tec.openplanner.team/stops/X889aaa", "https://tec.openplanner.team/stops/X889aab"], ["https://tec.openplanner.team/stops/X615aqa", "https://tec.openplanner.team/stops/X615ata"], ["https://tec.openplanner.team/stops/Crcgmah1", "https://tec.openplanner.team/stops/Crcgmah2"], ["https://tec.openplanner.team/stops/H2hg149b", "https://tec.openplanner.team/stops/H2hg154b"], ["https://tec.openplanner.team/stops/X982apa", "https://tec.openplanner.team/stops/X982brb"], ["https://tec.openplanner.team/stops/Cchsud0", "https://tec.openplanner.team/stops/Cchtram2"], ["https://tec.openplanner.team/stops/N507apb", "https://tec.openplanner.team/stops/NL74aea"], ["https://tec.openplanner.team/stops/Cbtstac2", "https://tec.openplanner.team/stops/Cgnbast2"], ["https://tec.openplanner.team/stops/Ccypn2", "https://tec.openplanner.team/stops/Csregli2"], ["https://tec.openplanner.team/stops/LSOfech2", "https://tec.openplanner.team/stops/LSOgard1"], ["https://tec.openplanner.team/stops/X784aja", "https://tec.openplanner.team/stops/X784ajb"], ["https://tec.openplanner.team/stops/H4av106c", "https://tec.openplanner.team/stops/H4cr111a"], ["https://tec.openplanner.team/stops/X601bfa", "https://tec.openplanner.team/stops/X601bxb"], ["https://tec.openplanner.team/stops/Cobhaut1", "https://tec.openplanner.team/stops/Cobnive2"], ["https://tec.openplanner.team/stops/Lhrpost2", "https://tec.openplanner.team/stops/Llgatel2"], ["https://tec.openplanner.team/stops/Cnachat1", "https://tec.openplanner.team/stops/Cnahous2"], ["https://tec.openplanner.team/stops/X614ava", "https://tec.openplanner.team/stops/X614bdb"], ["https://tec.openplanner.team/stops/Lseegva2", "https://tec.openplanner.team/stops/Lsefive2"], ["https://tec.openplanner.team/stops/X750ala", "https://tec.openplanner.team/stops/X750bkb"], ["https://tec.openplanner.team/stops/H1ha188b", "https://tec.openplanner.team/stops/H1ha198a"], ["https://tec.openplanner.team/stops/LBkbamb1", "https://tec.openplanner.team/stops/LBkdahl1"], ["https://tec.openplanner.team/stops/X727afa", "https://tec.openplanner.team/stops/X728adb"], ["https://tec.openplanner.team/stops/LhIkirc*", "https://tec.openplanner.team/stops/LrDsage2"], ["https://tec.openplanner.team/stops/LBlhaut1", "https://tec.openplanner.team/stops/LBlhaut2"], ["https://tec.openplanner.team/stops/N539awa", "https://tec.openplanner.team/stops/N539azb"], ["https://tec.openplanner.team/stops/LhSfrei1", "https://tec.openplanner.team/stops/LkOaugu2"], ["https://tec.openplanner.team/stops/Btlbcha1", "https://tec.openplanner.team/stops/Btlbmel2"], ["https://tec.openplanner.team/stops/Cjuchli2", "https://tec.openplanner.team/stops/Cjupoly2"], ["https://tec.openplanner.team/stops/X948ajb", "https://tec.openplanner.team/stops/X948arb"], ["https://tec.openplanner.team/stops/X614aja", "https://tec.openplanner.team/stops/X614ala"], ["https://tec.openplanner.team/stops/Bhaawdr1", "https://tec.openplanner.team/stops/Bnetace1"], ["https://tec.openplanner.team/stops/LJUmate2", "https://tec.openplanner.team/stops/LJUxhen3"], ["https://tec.openplanner.team/stops/Lmibove1", "https://tec.openplanner.team/stops/Lmicoop1"], ["https://tec.openplanner.team/stops/LMEwerg1", "https://tec.openplanner.team/stops/LSOcime2"], ["https://tec.openplanner.team/stops/Cpllimi4", "https://tec.openplanner.team/stops/Cpllimi5"], ["https://tec.openplanner.team/stops/N167aeb", "https://tec.openplanner.team/stops/N167agb"], ["https://tec.openplanner.team/stops/X663asa", "https://tec.openplanner.team/stops/X663aya"], ["https://tec.openplanner.team/stops/LPLmonu2", "https://tec.openplanner.team/stops/LPLphar2"], ["https://tec.openplanner.team/stops/X823aea", "https://tec.openplanner.team/stops/X823aeb"], ["https://tec.openplanner.team/stops/LOuhalb2", "https://tec.openplanner.team/stops/LVnvieg2"], ["https://tec.openplanner.team/stops/H2mo124a", "https://tec.openplanner.team/stops/H2mo144b"], ["https://tec.openplanner.team/stops/Cvtegli1", "https://tec.openplanner.team/stops/Cvtgsar3"], ["https://tec.openplanner.team/stops/X921ajc", "https://tec.openplanner.team/stops/X921akb"], ["https://tec.openplanner.team/stops/H4mv195b", "https://tec.openplanner.team/stops/H4mv196a"], ["https://tec.openplanner.team/stops/N155aab", "https://tec.openplanner.team/stops/N155acb"], ["https://tec.openplanner.team/stops/N535apb", "https://tec.openplanner.team/stops/N535asb"], ["https://tec.openplanner.team/stops/LWAgare*", "https://tec.openplanner.team/stops/LWAloui2"], ["https://tec.openplanner.team/stops/LMvgare2", "https://tec.openplanner.team/stops/LMvrabo2"], ["https://tec.openplanner.team/stops/LBQmaye1", "https://tec.openplanner.team/stops/LBQplac1"], ["https://tec.openplanner.team/stops/Cfopetr1", "https://tec.openplanner.team/stops/Cfopetr2"], ["https://tec.openplanner.team/stops/H4me213a", "https://tec.openplanner.team/stops/H4me213b"], ["https://tec.openplanner.team/stops/Llgdarc1", "https://tec.openplanner.team/stops/Llgfusc1"], ["https://tec.openplanner.team/stops/LOVchen1", "https://tec.openplanner.team/stops/LOVhetr1"], ["https://tec.openplanner.team/stops/LAMjeha2", "https://tec.openplanner.team/stops/LJEniho2"], ["https://tec.openplanner.team/stops/LAwfans1", "https://tec.openplanner.team/stops/LMvgare1"], ["https://tec.openplanner.team/stops/LSkcoin1", "https://tec.openplanner.team/stops/LSkrena2"], ["https://tec.openplanner.team/stops/N350ada", "https://tec.openplanner.team/stops/N350adb"], ["https://tec.openplanner.team/stops/X721alb", "https://tec.openplanner.team/stops/X721ama"], ["https://tec.openplanner.team/stops/Cciecol1", "https://tec.openplanner.team/stops/Cciecol2"], ["https://tec.openplanner.team/stops/LJveg--1", "https://tec.openplanner.team/stops/X576ada"], ["https://tec.openplanner.team/stops/LLagert*", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://tec.openplanner.team/stops/Caccera2", "https://tec.openplanner.team/stops/Cacgare1"], ["https://tec.openplanner.team/stops/H1br131a", "https://tec.openplanner.team/stops/H1ev149a"], ["https://tec.openplanner.team/stops/Caircen2", "https://tec.openplanner.team/stops/Crsprai3"], ["https://tec.openplanner.team/stops/Brebcha2", "https://tec.openplanner.team/stops/Brebvic1"], ["https://tec.openplanner.team/stops/X618afa", "https://tec.openplanner.team/stops/X618apa"], ["https://tec.openplanner.team/stops/Blpgvil1", "https://tec.openplanner.team/stops/Blpgvil2"], ["https://tec.openplanner.team/stops/Bgoegma1", "https://tec.openplanner.team/stops/Bhoealt1"], ["https://tec.openplanner.team/stops/X734aha", "https://tec.openplanner.team/stops/X734aja"], ["https://tec.openplanner.team/stops/N167add", "https://tec.openplanner.team/stops/N167aha"], ["https://tec.openplanner.team/stops/H4ty345a", "https://tec.openplanner.team/stops/H4ty356a"], ["https://tec.openplanner.team/stops/H4ca122b", "https://tec.openplanner.team/stops/H4wi162b"], ["https://tec.openplanner.team/stops/H4ar101a", "https://tec.openplanner.team/stops/H4ar101b"], ["https://tec.openplanner.team/stops/X547aib", "https://tec.openplanner.team/stops/X547anb"], ["https://tec.openplanner.team/stops/Cmlbras2", "https://tec.openplanner.team/stops/Cmlhaie2"], ["https://tec.openplanner.team/stops/LLVfoss1", "https://tec.openplanner.team/stops/X561ada"], ["https://tec.openplanner.team/stops/N563aab", "https://tec.openplanner.team/stops/N585aha"], ["https://tec.openplanner.team/stops/Cbmviv1", "https://tec.openplanner.team/stops/Cssgare2"], ["https://tec.openplanner.team/stops/Ccunove1", "https://tec.openplanner.team/stops/Ccusole1"], ["https://tec.openplanner.team/stops/Cmmcomb1", "https://tec.openplanner.team/stops/Cmmphai2"], ["https://tec.openplanner.team/stops/X942aca", "https://tec.openplanner.team/stops/X942aga"], ["https://tec.openplanner.team/stops/LCOcarr1", "https://tec.openplanner.team/stops/LSNnoul1"], ["https://tec.openplanner.team/stops/H1so143a", "https://tec.openplanner.team/stops/H1so145b"], ["https://tec.openplanner.team/stops/Bbxlple2", "https://tec.openplanner.team/stops/Bettlha2"], ["https://tec.openplanner.team/stops/Bllnchv1", "https://tec.openplanner.team/stops/Bllnpeq1"], ["https://tec.openplanner.team/stops/H4mo149a", "https://tec.openplanner.team/stops/H4tg162b"], ["https://tec.openplanner.team/stops/H2fa102b", "https://tec.openplanner.team/stops/H2fa103b"], ["https://tec.openplanner.team/stops/H4ty341b", "https://tec.openplanner.team/stops/H4ty381b"], ["https://tec.openplanner.team/stops/N571aba", "https://tec.openplanner.team/stops/N571acb"], ["https://tec.openplanner.team/stops/H4fl114a", "https://tec.openplanner.team/stops/H4wi168a"], ["https://tec.openplanner.team/stops/Cptberg2", "https://tec.openplanner.team/stops/Cptplac2"], ["https://tec.openplanner.team/stops/H1gr120a", "https://tec.openplanner.team/stops/H1mk113a"], ["https://tec.openplanner.team/stops/LVIgare1", "https://tec.openplanner.team/stops/LVIhala3"], ["https://tec.openplanner.team/stops/X740aea", "https://tec.openplanner.team/stops/X759aga"], ["https://tec.openplanner.team/stops/H1ba102b", "https://tec.openplanner.team/stops/H1ba108b"], ["https://tec.openplanner.team/stops/H2ll176a", "https://tec.openplanner.team/stops/H2ll195a"], ["https://tec.openplanner.team/stops/Cgrchea1", "https://tec.openplanner.team/stops/Cgrsaul1"], ["https://tec.openplanner.team/stops/N512aba", "https://tec.openplanner.team/stops/N512aha"], ["https://tec.openplanner.team/stops/H1ls130a", "https://tec.openplanner.team/stops/H1sa114a"], ["https://tec.openplanner.team/stops/LbUjost2", "https://tec.openplanner.team/stops/LmUzent1"], ["https://tec.openplanner.team/stops/H4ft133b", "https://tec.openplanner.team/stops/H4ft136b"], ["https://tec.openplanner.team/stops/N501aab", "https://tec.openplanner.team/stops/N501aua"], ["https://tec.openplanner.team/stops/X670apa", "https://tec.openplanner.team/stops/X670apc"], ["https://tec.openplanner.team/stops/LBXhacb2", "https://tec.openplanner.team/stops/LHEclef2"], ["https://tec.openplanner.team/stops/N543cma", "https://tec.openplanner.team/stops/N543cmb"], ["https://tec.openplanner.team/stops/Bblatet1", "https://tec.openplanner.team/stops/Bblatet2"], ["https://tec.openplanner.team/stops/Llgmaus1", "https://tec.openplanner.team/stops/Llgmaus2"], ["https://tec.openplanner.team/stops/N524ajb", "https://tec.openplanner.team/stops/N524alb"], ["https://tec.openplanner.team/stops/Lwaelme1", "https://tec.openplanner.team/stops/Lwagare1"], ["https://tec.openplanner.team/stops/Lhurigu2", "https://tec.openplanner.team/stops/Lhurouh1"], ["https://tec.openplanner.team/stops/LTPabat1", "https://tec.openplanner.team/stops/LTPgare*"], ["https://tec.openplanner.team/stops/X660afb", "https://tec.openplanner.team/stops/X840afb"], ["https://tec.openplanner.team/stops/X763aha", "https://tec.openplanner.team/stops/X763ahb"], ["https://tec.openplanner.team/stops/H4fr140a", "https://tec.openplanner.team/stops/H4rc234c"], ["https://tec.openplanner.team/stops/H4bf108b", "https://tec.openplanner.team/stops/H4by119b"], ["https://tec.openplanner.team/stops/X946acb", "https://tec.openplanner.team/stops/X946afb"], ["https://tec.openplanner.team/stops/Lougros2", "https://tec.openplanner.team/stops/Loujouh2"], ["https://tec.openplanner.team/stops/LTNcarr4", "https://tec.openplanner.team/stops/LTNeau-2"], ["https://tec.openplanner.team/stops/Bgemgcw1", "https://tec.openplanner.team/stops/N522bva"], ["https://tec.openplanner.team/stops/N519aoa", "https://tec.openplanner.team/stops/N519apb"], ["https://tec.openplanner.team/stops/Bsrgm102", "https://tec.openplanner.team/stops/Bzlucam2"], ["https://tec.openplanner.team/stops/Cchba06", "https://tec.openplanner.team/stops/Cchba12"], ["https://tec.openplanner.team/stops/H1ho135a", "https://tec.openplanner.team/stops/H1ho135b"], ["https://tec.openplanner.team/stops/H1he101a", "https://tec.openplanner.team/stops/H1he107b"], ["https://tec.openplanner.team/stops/X908amb", "https://tec.openplanner.team/stops/X908ana"], ["https://tec.openplanner.team/stops/NR38aca", "https://tec.openplanner.team/stops/NR38aea"], ["https://tec.openplanner.team/stops/LAMceri1", "https://tec.openplanner.team/stops/LAMceri2"], ["https://tec.openplanner.team/stops/Crocona1", "https://tec.openplanner.team/stops/Croegli1"], ["https://tec.openplanner.team/stops/Bgnpchb1", "https://tec.openplanner.team/stops/Bgnpgen1"], ["https://tec.openplanner.team/stops/H5at133a", "https://tec.openplanner.team/stops/H5ma185b"], ["https://tec.openplanner.team/stops/N232aga", "https://tec.openplanner.team/stops/N286aba"], ["https://tec.openplanner.team/stops/H1sy140b", "https://tec.openplanner.team/stops/H1sy150b"], ["https://tec.openplanner.team/stops/N201apb", "https://tec.openplanner.team/stops/N219adb"], ["https://tec.openplanner.team/stops/Bwatcli1", "https://tec.openplanner.team/stops/Bwatcli2"], ["https://tec.openplanner.team/stops/H4lz126b", "https://tec.openplanner.team/stops/H4lz158a"], ["https://tec.openplanner.team/stops/Lhubarl1", "https://tec.openplanner.team/stops/Lhubarl2"], ["https://tec.openplanner.team/stops/Bbiecim1", "https://tec.openplanner.team/stops/Bbiecoc1"], ["https://tec.openplanner.team/stops/X949aia", "https://tec.openplanner.team/stops/X949aib"], ["https://tec.openplanner.team/stops/X633aib", "https://tec.openplanner.team/stops/X633ala"], ["https://tec.openplanner.team/stops/N539aha", "https://tec.openplanner.team/stops/N539atb"], ["https://tec.openplanner.team/stops/H2sv212b", "https://tec.openplanner.team/stops/H2tr246b"], ["https://tec.openplanner.team/stops/X808ahb", "https://tec.openplanner.team/stops/X808amb"], ["https://tec.openplanner.team/stops/LHEches1", "https://tec.openplanner.team/stops/LHEelva2"], ["https://tec.openplanner.team/stops/H4he106b", "https://tec.openplanner.team/stops/H4ob124a"], ["https://tec.openplanner.team/stops/Cradest2", "https://tec.openplanner.team/stops/Crapaep2"], ["https://tec.openplanner.team/stops/X687aja", "https://tec.openplanner.team/stops/X687ajb"], ["https://tec.openplanner.team/stops/N215abb", "https://tec.openplanner.team/stops/N215acb"], ["https://tec.openplanner.team/stops/H4ty321b", "https://tec.openplanner.team/stops/H4ty322b"], ["https://tec.openplanner.team/stops/X608aga", "https://tec.openplanner.team/stops/X608aha"], ["https://tec.openplanner.team/stops/Cbmplac1", "https://tec.openplanner.team/stops/Cbmplac2"], ["https://tec.openplanner.team/stops/H5at127a", "https://tec.openplanner.team/stops/H5at131a"], ["https://tec.openplanner.team/stops/X801aqb", "https://tec.openplanner.team/stops/X801coa"], ["https://tec.openplanner.team/stops/Cmerued1", "https://tec.openplanner.team/stops/Cmestas1"], ["https://tec.openplanner.team/stops/Llgchal2", "https://tec.openplanner.team/stops/Llgvott1"], ["https://tec.openplanner.team/stops/H1ms261b", "https://tec.openplanner.team/stops/H1ms262a"], ["https://tec.openplanner.team/stops/Bspkdon1", "https://tec.openplanner.team/stops/Bspkker1"], ["https://tec.openplanner.team/stops/N509asb", "https://tec.openplanner.team/stops/N509atb"], ["https://tec.openplanner.team/stops/X820aaa", "https://tec.openplanner.team/stops/X820aib"], ["https://tec.openplanner.team/stops/X746aca", "https://tec.openplanner.team/stops/X746acb"], ["https://tec.openplanner.team/stops/X925akb", "https://tec.openplanner.team/stops/X926aaa"], ["https://tec.openplanner.team/stops/H2an103b", "https://tec.openplanner.team/stops/H2an109a"], ["https://tec.openplanner.team/stops/Llgjenn2", "https://tec.openplanner.team/stops/Llgsorb1"], ["https://tec.openplanner.team/stops/H4am100b", "https://tec.openplanner.team/stops/H4am101a"], ["https://tec.openplanner.team/stops/LPLcite1", "https://tec.openplanner.team/stops/LPLcite2"], ["https://tec.openplanner.team/stops/H1ma233a", "https://tec.openplanner.team/stops/H1mj124b"], ["https://tec.openplanner.team/stops/Clbentr1", "https://tec.openplanner.team/stops/Cthrwai2"], ["https://tec.openplanner.team/stops/LWaanto1", "https://tec.openplanner.team/stops/LWaanto2"], ["https://tec.openplanner.team/stops/Crcegli2", "https://tec.openplanner.team/stops/Crcegli4"], ["https://tec.openplanner.team/stops/N512agc", "https://tec.openplanner.team/stops/NL57aga"], ["https://tec.openplanner.team/stops/H4le127b", "https://tec.openplanner.team/stops/H4ry130a"], ["https://tec.openplanner.team/stops/Chhlori1", "https://tec.openplanner.team/stops/Cjxpann2"], ["https://tec.openplanner.team/stops/LVAakke2", "https://tec.openplanner.team/stops/LVApark1"], ["https://tec.openplanner.team/stops/N229aib", "https://tec.openplanner.team/stops/N291aaa"], ["https://tec.openplanner.team/stops/X725aef", "https://tec.openplanner.team/stops/X725aoa"], ["https://tec.openplanner.team/stops/Cjuhame2", "https://tec.openplanner.team/stops/Cragill2"], ["https://tec.openplanner.team/stops/H2ch103a", "https://tec.openplanner.team/stops/H2ch111b"], ["https://tec.openplanner.team/stops/N573aha", "https://tec.openplanner.team/stops/N573aib"], ["https://tec.openplanner.team/stops/N109aab", "https://tec.openplanner.team/stops/N110adb"], ["https://tec.openplanner.team/stops/H3so173a", "https://tec.openplanner.team/stops/H3so185a"], ["https://tec.openplanner.team/stops/N562aya", "https://tec.openplanner.team/stops/N562ayb"], ["https://tec.openplanner.team/stops/Bcsebea2", "https://tec.openplanner.team/stops/Bcsebea3"], ["https://tec.openplanner.team/stops/Blsmjja1", "https://tec.openplanner.team/stops/Bpelf962"], ["https://tec.openplanner.team/stops/Bblamer2", "https://tec.openplanner.team/stops/Bblasta1"], ["https://tec.openplanner.team/stops/H1gr111b", "https://tec.openplanner.team/stops/H1hv132b"], ["https://tec.openplanner.team/stops/LSAchef2", "https://tec.openplanner.team/stops/LSAvieu2"], ["https://tec.openplanner.team/stops/Ccyrmon2", "https://tec.openplanner.team/stops/Crbrgar1"], ["https://tec.openplanner.team/stops/H1br130a", "https://tec.openplanner.team/stops/H2ma202a"], ["https://tec.openplanner.team/stops/LROgeuz1", "https://tec.openplanner.team/stops/LWacime3"], ["https://tec.openplanner.team/stops/LRAgrot1", "https://tec.openplanner.team/stops/LRArami2"], ["https://tec.openplanner.team/stops/Blimegl1", "https://tec.openplanner.team/stops/Botteco2"], ["https://tec.openplanner.team/stops/LiVdorf2", "https://tec.openplanner.team/stops/LiVgirk2"], ["https://tec.openplanner.team/stops/N357aab", "https://tec.openplanner.team/stops/N357afb"], ["https://tec.openplanner.team/stops/Cfabaty4", "https://tec.openplanner.team/stops/Clacast1"], ["https://tec.openplanner.team/stops/N214aca", "https://tec.openplanner.team/stops/N214ada"], ["https://tec.openplanner.team/stops/H1do119b", "https://tec.openplanner.team/stops/H1wi153b"], ["https://tec.openplanner.team/stops/H2pr115b", "https://tec.openplanner.team/stops/H2pr118b"], ["https://tec.openplanner.team/stops/X880aea", "https://tec.openplanner.team/stops/X880aeb"], ["https://tec.openplanner.team/stops/Lemboul1", "https://tec.openplanner.team/stops/Lemfort2"], ["https://tec.openplanner.team/stops/Lverema2", "https://tec.openplanner.team/stops/Lvesomm3"], ["https://tec.openplanner.team/stops/Cdamare1", "https://tec.openplanner.team/stops/Cdaviol1"], ["https://tec.openplanner.team/stops/H1ha191a", "https://tec.openplanner.team/stops/H1ha199b"], ["https://tec.openplanner.team/stops/X879amb", "https://tec.openplanner.team/stops/X879asa"], ["https://tec.openplanner.team/stops/Cchsud13", "https://tec.openplanner.team/stops/NC01aab"], ["https://tec.openplanner.team/stops/NL76aba", "https://tec.openplanner.team/stops/NL76ana"], ["https://tec.openplanner.team/stops/N516aba", "https://tec.openplanner.team/stops/N516abb"], ["https://tec.openplanner.team/stops/Ccuseba1", "https://tec.openplanner.team/stops/Ccuseba2"], ["https://tec.openplanner.team/stops/H2re165a", "https://tec.openplanner.team/stops/H2re166a"], ["https://tec.openplanner.team/stops/H2ca112a", "https://tec.openplanner.team/stops/H2ca112b"], ["https://tec.openplanner.team/stops/Lcacris1", "https://tec.openplanner.team/stops/Lcavign1"], ["https://tec.openplanner.team/stops/Buccplj2", "https://tec.openplanner.team/stops/Buccvoi3"], ["https://tec.openplanner.team/stops/H4ma204b", "https://tec.openplanner.team/stops/H4oq229a"], ["https://tec.openplanner.team/stops/N874aab", "https://tec.openplanner.team/stops/N894aga"], ["https://tec.openplanner.team/stops/LSOcime2", "https://tec.openplanner.team/stops/LSOgard1"], ["https://tec.openplanner.team/stops/Btubga04", "https://tec.openplanner.team/stops/Btubga05"], ["https://tec.openplanner.team/stops/CMfbru1", "https://tec.openplanner.team/stops/Ctmsncb1"], ["https://tec.openplanner.team/stops/N224agc", "https://tec.openplanner.team/stops/N349aba"], ["https://tec.openplanner.team/stops/Lhrdeme3", "https://tec.openplanner.team/stops/Lhrstev2"], ["https://tec.openplanner.team/stops/N501bqa", "https://tec.openplanner.team/stops/N501bqb"], ["https://tec.openplanner.team/stops/Bhenpla1", "https://tec.openplanner.team/stops/Bquegen1"], ["https://tec.openplanner.team/stops/Ccoptca2", "https://tec.openplanner.team/stops/Crowall2"], ["https://tec.openplanner.team/stops/Bwbfgar2", "https://tec.openplanner.team/stops/Bwbfhip2"], ["https://tec.openplanner.team/stops/LNEtonv1", "https://tec.openplanner.team/stops/LNEtonv2"], ["https://tec.openplanner.team/stops/H4rs119a", "https://tec.openplanner.team/stops/H4rs119b"], ["https://tec.openplanner.team/stops/H4ea132c", "https://tec.openplanner.team/stops/H4og211a"], ["https://tec.openplanner.team/stops/H4ty346b", "https://tec.openplanner.team/stops/H4ty384b"], ["https://tec.openplanner.team/stops/LhSfrei2", "https://tec.openplanner.team/stops/LhSgete3"], ["https://tec.openplanner.team/stops/LFFcouv1", "https://tec.openplanner.team/stops/LFFpier1"], ["https://tec.openplanner.team/stops/Cmmcver1", "https://tec.openplanner.team/stops/Cmmcver2"], ["https://tec.openplanner.team/stops/Bbaldot1", "https://tec.openplanner.team/stops/N584ana"], ["https://tec.openplanner.team/stops/H5qu142b", "https://tec.openplanner.team/stops/H5qu144b"], ["https://tec.openplanner.team/stops/X664aob", "https://tec.openplanner.team/stops/X664aqb"], ["https://tec.openplanner.team/stops/N323aaa", "https://tec.openplanner.team/stops/N323aba"], ["https://tec.openplanner.team/stops/LCRfavr1", "https://tec.openplanner.team/stops/LTyhapp1"], ["https://tec.openplanner.team/stops/N874ala", "https://tec.openplanner.team/stops/X876aaa"], ["https://tec.openplanner.team/stops/X746aha", "https://tec.openplanner.team/stops/X746ahd"], ["https://tec.openplanner.team/stops/Bquegob1", "https://tec.openplanner.team/stops/Bquegob3"], ["https://tec.openplanner.team/stops/H4be102a", "https://tec.openplanner.team/stops/H5bl122b"], ["https://tec.openplanner.team/stops/X769aka", "https://tec.openplanner.team/stops/X769akb"], ["https://tec.openplanner.team/stops/LFNecpr*", "https://tec.openplanner.team/stops/LFNfo161"], ["https://tec.openplanner.team/stops/N117baa", "https://tec.openplanner.team/stops/N170aga"], ["https://tec.openplanner.team/stops/LaMadam1", "https://tec.openplanner.team/stops/LaMahof2"], ["https://tec.openplanner.team/stops/X604acb", "https://tec.openplanner.team/stops/X604adb"], ["https://tec.openplanner.team/stops/Cthalli1", "https://tec.openplanner.team/stops/Cthathe4"], ["https://tec.openplanner.team/stops/Cgzabur2", "https://tec.openplanner.team/stops/Cgzha621"], ["https://tec.openplanner.team/stops/Bnivmet2", "https://tec.openplanner.team/stops/Bnivsoi2"], ["https://tec.openplanner.team/stops/Lflcle-*", "https://tec.openplanner.team/stops/Lflcle-1"], ["https://tec.openplanner.team/stops/X824aia", "https://tec.openplanner.team/stops/X824ala"], ["https://tec.openplanner.team/stops/Bmalwop1", "https://tec.openplanner.team/stops/Bmalwvi2"], ["https://tec.openplanner.team/stops/H4fo118a", "https://tec.openplanner.team/stops/H4pe128b"], ["https://tec.openplanner.team/stops/Llghori1", "https://tec.openplanner.team/stops/Llghori2"], ["https://tec.openplanner.team/stops/Csycant1", "https://tec.openplanner.team/stops/Csycant2"], ["https://tec.openplanner.team/stops/Lhepaqu1", "https://tec.openplanner.team/stops/Lhrmeta1"], ["https://tec.openplanner.team/stops/LGMvoue2", "https://tec.openplanner.team/stops/LSEec--2"], ["https://tec.openplanner.team/stops/Cfnegli1", "https://tec.openplanner.team/stops/N162aea"], ["https://tec.openplanner.team/stops/X608aja", "https://tec.openplanner.team/stops/X608aka"], ["https://tec.openplanner.team/stops/X771ada", "https://tec.openplanner.team/stops/X771aea"], ["https://tec.openplanner.team/stops/Lcacaps2", "https://tec.openplanner.team/stops/Lcalaro1"], ["https://tec.openplanner.team/stops/H1gr116b", "https://tec.openplanner.team/stops/H1gr120b"], ["https://tec.openplanner.team/stops/Cfbegli1", "https://tec.openplanner.team/stops/Cfcecol3"], ["https://tec.openplanner.team/stops/LRepous1", "https://tec.openplanner.team/stops/LRepous2"], ["https://tec.openplanner.team/stops/Llgauxc1", "https://tec.openplanner.team/stops/Llgrass2"], ["https://tec.openplanner.team/stops/N551agc", "https://tec.openplanner.team/stops/N551apa"], ["https://tec.openplanner.team/stops/N232bya", "https://tec.openplanner.team/stops/N232bza"], ["https://tec.openplanner.team/stops/Lprchat1", "https://tec.openplanner.team/stops/Lprperr1"], ["https://tec.openplanner.team/stops/Csebasc1", "https://tec.openplanner.team/stops/Cselait2"], ["https://tec.openplanner.team/stops/X922aja", "https://tec.openplanner.team/stops/X941aha"], ["https://tec.openplanner.team/stops/X982cbb", "https://tec.openplanner.team/stops/X986ahb"], ["https://tec.openplanner.team/stops/H1si155b", "https://tec.openplanner.team/stops/H1si156a"], ["https://tec.openplanner.team/stops/H4mo172a", "https://tec.openplanner.team/stops/H4mo207b"], ["https://tec.openplanner.team/stops/LELeg--1", "https://tec.openplanner.team/stops/LHCquat4"], ["https://tec.openplanner.team/stops/Lcealig2", "https://tec.openplanner.team/stops/Lcesart2"], ["https://tec.openplanner.team/stops/N509ana", "https://tec.openplanner.team/stops/N510aba"], ["https://tec.openplanner.team/stops/H4pq116a", "https://tec.openplanner.team/stops/H4pq116b"], ["https://tec.openplanner.team/stops/X768aib", "https://tec.openplanner.team/stops/X769amb"], ["https://tec.openplanner.team/stops/LbTathe1", "https://tec.openplanner.team/stops/LbTkreu3"], ["https://tec.openplanner.team/stops/X791aba", "https://tec.openplanner.team/stops/X791abb"], ["https://tec.openplanner.team/stops/Ldimont1", "https://tec.openplanner.team/stops/Ldimont2"], ["https://tec.openplanner.team/stops/LSNness1", "https://tec.openplanner.team/stops/LSNness2"], ["https://tec.openplanner.team/stops/X663ahc", "https://tec.openplanner.team/stops/X663aia"], ["https://tec.openplanner.team/stops/LAmshel2", "https://tec.openplanner.team/stops/LNHbarr2"], ["https://tec.openplanner.team/stops/LJAferm2", "https://tec.openplanner.team/stops/LJAmari2"], ["https://tec.openplanner.team/stops/Cnafont1", "https://tec.openplanner.team/stops/Cnalava4"], ["https://tec.openplanner.team/stops/N511aib", "https://tec.openplanner.team/stops/N511asa"], ["https://tec.openplanner.team/stops/N988aaa", "https://tec.openplanner.team/stops/X989afa"], ["https://tec.openplanner.team/stops/Cgymetr1", "https://tec.openplanner.team/stops/CMgill1"], ["https://tec.openplanner.team/stops/H4bf107b", "https://tec.openplanner.team/stops/H4pi135b"], ["https://tec.openplanner.team/stops/Lsmlina2", "https://tec.openplanner.team/stops/Lsmnico2"], ["https://tec.openplanner.team/stops/Lchacie2", "https://tec.openplanner.team/stops/Lwakipe2"], ["https://tec.openplanner.team/stops/LBzvill1", "https://tec.openplanner.team/stops/LVBcarr1"], ["https://tec.openplanner.team/stops/H5qu154a", "https://tec.openplanner.team/stops/H5qu154b"], ["https://tec.openplanner.team/stops/H4ga155a", "https://tec.openplanner.team/stops/H4ga168b"], ["https://tec.openplanner.team/stops/H1eo105a", "https://tec.openplanner.team/stops/H1eo105b"], ["https://tec.openplanner.team/stops/LAUberg2", "https://tec.openplanner.team/stops/LAUcose2"], ["https://tec.openplanner.team/stops/H1qu119a", "https://tec.openplanner.team/stops/H1wa132b"], ["https://tec.openplanner.team/stops/Canplal2", "https://tec.openplanner.team/stops/H2an111a"], ["https://tec.openplanner.team/stops/X993aea", "https://tec.openplanner.team/stops/X993agb"], ["https://tec.openplanner.team/stops/Bbstcha2", "https://tec.openplanner.team/stops/Bbstpan1"], ["https://tec.openplanner.team/stops/LNCsera2", "https://tec.openplanner.team/stops/LPLc49-1"], ["https://tec.openplanner.team/stops/Btlbtho1", "https://tec.openplanner.team/stops/Btlbtho2"], ["https://tec.openplanner.team/stops/X907aha", "https://tec.openplanner.team/stops/X907ahb"], ["https://tec.openplanner.team/stops/N531aba", "https://tec.openplanner.team/stops/N576ala"], ["https://tec.openplanner.team/stops/LnEfrie2", "https://tec.openplanner.team/stops/LnEkirc3"], ["https://tec.openplanner.team/stops/X361aca", "https://tec.openplanner.team/stops/X371ajb"], ["https://tec.openplanner.team/stops/H5rx136a", "https://tec.openplanner.team/stops/H5rx138a"], ["https://tec.openplanner.team/stops/LHFappe4", "https://tec.openplanner.team/stops/LVEroum1"], ["https://tec.openplanner.team/stops/N533amb", "https://tec.openplanner.team/stops/N533ana"], ["https://tec.openplanner.team/stops/Loucham1", "https://tec.openplanner.team/stops/Lougare3"], ["https://tec.openplanner.team/stops/X723ahb", "https://tec.openplanner.team/stops/X723ama"], ["https://tec.openplanner.team/stops/H2hg149a", "https://tec.openplanner.team/stops/H2mi122a"], ["https://tec.openplanner.team/stops/LHMsipp1", "https://tec.openplanner.team/stops/LSItert1"], ["https://tec.openplanner.team/stops/LoDcorn1", "https://tec.openplanner.team/stops/LoDschu2"], ["https://tec.openplanner.team/stops/N217aaa", "https://tec.openplanner.team/stops/N217aab"], ["https://tec.openplanner.team/stops/H4gr108a", "https://tec.openplanner.team/stops/H4gr108b"], ["https://tec.openplanner.team/stops/X601avb", "https://tec.openplanner.team/stops/X601awb"], ["https://tec.openplanner.team/stops/Causart1", "https://tec.openplanner.team/stops/N543avg"], ["https://tec.openplanner.team/stops/LHTcerc1", "https://tec.openplanner.team/stops/LHTcerc4"], ["https://tec.openplanner.team/stops/H1hq124a", "https://tec.openplanner.team/stops/H1hq126b"], ["https://tec.openplanner.team/stops/LGlbour2", "https://tec.openplanner.team/stops/LGlwarf2"], ["https://tec.openplanner.team/stops/Cmogrbu1", "https://tec.openplanner.team/stops/Cmopn4"], ["https://tec.openplanner.team/stops/N235aaa", "https://tec.openplanner.team/stops/N236amb"], ["https://tec.openplanner.team/stops/Ljudeme2", "https://tec.openplanner.team/stops/Ljuinte2"], ["https://tec.openplanner.team/stops/LHHcite1", "https://tec.openplanner.team/stops/LSG111-2"], ["https://tec.openplanner.team/stops/Lagmair4", "https://tec.openplanner.team/stops/Lkiecol2"], ["https://tec.openplanner.team/stops/N564aea", "https://tec.openplanner.team/stops/N564aeb"], ["https://tec.openplanner.team/stops/N503aib", "https://tec.openplanner.team/stops/N503ajb"], ["https://tec.openplanner.team/stops/X663akb", "https://tec.openplanner.team/stops/X663ama"], ["https://tec.openplanner.team/stops/Ccoconf2", "https://tec.openplanner.team/stops/Ccocorb2"], ["https://tec.openplanner.team/stops/X684aaa", "https://tec.openplanner.team/stops/X688aaa"], ["https://tec.openplanner.team/stops/Lfhcime1", "https://tec.openplanner.team/stops/Lmlcite*"], ["https://tec.openplanner.team/stops/H1en104d", "https://tec.openplanner.team/stops/H1en106a"], ["https://tec.openplanner.team/stops/Lfhlons2", "https://tec.openplanner.team/stops/Lpomart2"], ["https://tec.openplanner.team/stops/Lmncasi1", "https://tec.openplanner.team/stops/Lmncasi2"], ["https://tec.openplanner.team/stops/Lsebrun4", "https://tec.openplanner.team/stops/Lsepuit2"], ["https://tec.openplanner.team/stops/LHUremy1", "https://tec.openplanner.team/stops/NL80aia"], ["https://tec.openplanner.team/stops/LeYfeld1", "https://tec.openplanner.team/stops/LeYroth2"], ["https://tec.openplanner.team/stops/Cmyedpa4", "https://tec.openplanner.team/stops/Cmygrbr3"], ["https://tec.openplanner.team/stops/LHUlebe3", "https://tec.openplanner.team/stops/LHUlebe4"], ["https://tec.openplanner.team/stops/Llglefe1", "https://tec.openplanner.team/stops/Llglimb2"], ["https://tec.openplanner.team/stops/Cldplac1", "https://tec.openplanner.team/stops/Cldplac2"], ["https://tec.openplanner.team/stops/X721aga", "https://tec.openplanner.team/stops/X721agb"], ["https://tec.openplanner.team/stops/Bbstbou2", "https://tec.openplanner.team/stops/Btancnd2"], ["https://tec.openplanner.team/stops/Bgnvdep2", "https://tec.openplanner.team/stops/Bgnvval2"], ["https://tec.openplanner.team/stops/H1wa149b", "https://tec.openplanner.team/stops/H1wa160b"], ["https://tec.openplanner.team/stops/LSZprie1", "https://tec.openplanner.team/stops/LSZptwa2"], ["https://tec.openplanner.team/stops/X744aba", "https://tec.openplanner.team/stops/X746aha"], ["https://tec.openplanner.team/stops/N551aca", "https://tec.openplanner.team/stops/N551alb"], ["https://tec.openplanner.team/stops/X307abb", "https://tec.openplanner.team/stops/X307acb"], ["https://tec.openplanner.team/stops/Bllnlb12", "https://tec.openplanner.team/stops/Bllnlb52"], ["https://tec.openplanner.team/stops/N211aza", "https://tec.openplanner.team/stops/N211azb"], ["https://tec.openplanner.team/stops/Cjuhopi2", "https://tec.openplanner.team/stops/Cjumade3"], ["https://tec.openplanner.team/stops/LBNeu711", "https://tec.openplanner.team/stops/LMemaza1"], ["https://tec.openplanner.team/stops/Lgrfass2", "https://tec.openplanner.team/stops/Lgrgoff2"], ["https://tec.openplanner.team/stops/Ljumart1", "https://tec.openplanner.team/stops/Ljuvert1"], ["https://tec.openplanner.team/stops/X770aga", "https://tec.openplanner.team/stops/X773ana"], ["https://tec.openplanner.team/stops/H4ld125b", "https://tec.openplanner.team/stops/H4to135b"], ["https://tec.openplanner.team/stops/Cstgare2", "https://tec.openplanner.team/stops/Cstvape1"], ["https://tec.openplanner.team/stops/H4ro154a", "https://tec.openplanner.team/stops/H4ro156a"], ["https://tec.openplanner.team/stops/Llivina1", "https://tec.openplanner.team/stops/Lvtchpl4"], ["https://tec.openplanner.team/stops/LOmpont1", "https://tec.openplanner.team/stops/LOmrela1"], ["https://tec.openplanner.team/stops/Bbxlfro1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/N506bob", "https://tec.openplanner.team/stops/N506bwb"], ["https://tec.openplanner.team/stops/H4og206b", "https://tec.openplanner.team/stops/H4og212b"], ["https://tec.openplanner.team/stops/N232aua", "https://tec.openplanner.team/stops/N232awb"], ["https://tec.openplanner.team/stops/H3so174a", "https://tec.openplanner.team/stops/H3so185a"], ["https://tec.openplanner.team/stops/Lbomidi2", "https://tec.openplanner.team/stops/Lbotilf1"], ["https://tec.openplanner.team/stops/H2ll192b", "https://tec.openplanner.team/stops/H2ll267b"], ["https://tec.openplanner.team/stops/X903aeb", "https://tec.openplanner.team/stops/X903agb"], ["https://tec.openplanner.team/stops/H4fa128a", "https://tec.openplanner.team/stops/H4ms146b"], ["https://tec.openplanner.team/stops/H4mv187a", "https://tec.openplanner.team/stops/H4mv187b"], ["https://tec.openplanner.team/stops/X877afa", "https://tec.openplanner.team/stops/X880ahb"], ["https://tec.openplanner.team/stops/X739aaa", "https://tec.openplanner.team/stops/X739abb"], ["https://tec.openplanner.team/stops/Bjodbat1", "https://tec.openplanner.team/stops/Bjodced2"], ["https://tec.openplanner.team/stops/Bblafrn1", "https://tec.openplanner.team/stops/Blilhay1"], ["https://tec.openplanner.team/stops/Bgnteco2", "https://tec.openplanner.team/stops/Bgntpos1"], ["https://tec.openplanner.team/stops/LWAchpg1", "https://tec.openplanner.team/stops/LWAmouh1"], ["https://tec.openplanner.team/stops/N524aca", "https://tec.openplanner.team/stops/N524adb"], ["https://tec.openplanner.team/stops/Ccybouc2", "https://tec.openplanner.team/stops/Ccygara1"], ["https://tec.openplanner.team/stops/H1wa146a", "https://tec.openplanner.team/stops/H1wa146b"], ["https://tec.openplanner.team/stops/LHZcime1", "https://tec.openplanner.team/stops/LVefont2"], ["https://tec.openplanner.team/stops/X626afb", "https://tec.openplanner.team/stops/X626aga"], ["https://tec.openplanner.team/stops/LDmcruc2", "https://tec.openplanner.team/stops/LDmdegi1"], ["https://tec.openplanner.team/stops/Ljubeyn1", "https://tec.openplanner.team/stops/Ljuroch2"], ["https://tec.openplanner.team/stops/Cmgbrou1", "https://tec.openplanner.team/stops/Cmgslo1"], ["https://tec.openplanner.team/stops/Lrcauto2", "https://tec.openplanner.team/stops/Lrcstad2"], ["https://tec.openplanner.team/stops/LCaalou2", "https://tec.openplanner.team/stops/Lmlrosa2"], ["https://tec.openplanner.team/stops/X826afa", "https://tec.openplanner.team/stops/X826agb"], ["https://tec.openplanner.team/stops/LATcorn2", "https://tec.openplanner.team/stops/LATmonu1"], ["https://tec.openplanner.team/stops/LLegare1", "https://tec.openplanner.team/stops/X547afb"], ["https://tec.openplanner.team/stops/N104aab", "https://tec.openplanner.team/stops/N104aac"], ["https://tec.openplanner.team/stops/Lghpara1", "https://tec.openplanner.team/stops/Lghwass2"], ["https://tec.openplanner.team/stops/X804ajb", "https://tec.openplanner.team/stops/X804aka"], ["https://tec.openplanner.team/stops/Cragoss2", "https://tec.openplanner.team/stops/Crapaep1"], ["https://tec.openplanner.team/stops/Bblafab2", "https://tec.openplanner.team/stops/Bblaqsj1"], ["https://tec.openplanner.team/stops/H1fv100a", "https://tec.openplanner.team/stops/H1fv103b"], ["https://tec.openplanner.team/stops/Lbbremy1", "https://tec.openplanner.team/stops/Lgrorch2"], ["https://tec.openplanner.team/stops/Lhrhurb1", "https://tec.openplanner.team/stops/Lhrhurb2"], ["https://tec.openplanner.team/stops/X602aaa", "https://tec.openplanner.team/stops/X633aab"], ["https://tec.openplanner.team/stops/X672agb", "https://tec.openplanner.team/stops/X672ahb"], ["https://tec.openplanner.team/stops/LCxbeau1", "https://tec.openplanner.team/stops/LHEpriv1"], ["https://tec.openplanner.team/stops/LBJlieg2", "https://tec.openplanner.team/stops/LMAhall2"], ["https://tec.openplanner.team/stops/X858ada", "https://tec.openplanner.team/stops/X858afa"], ["https://tec.openplanner.team/stops/Llxec--2", "https://tec.openplanner.team/stops/Lrafusi2"], ["https://tec.openplanner.team/stops/LEN101-1", "https://tec.openplanner.team/stops/LEN42--2"], ["https://tec.openplanner.team/stops/LHUaron1", "https://tec.openplanner.team/stops/NL80aha"], ["https://tec.openplanner.team/stops/Ldidefo2", "https://tec.openplanner.team/stops/Ldihusq1"], ["https://tec.openplanner.team/stops/N503abb", "https://tec.openplanner.team/stops/N503adb"], ["https://tec.openplanner.team/stops/LSPjoli1", "https://tec.openplanner.team/stops/LSPjoli2"], ["https://tec.openplanner.team/stops/Lpegole2", "https://tec.openplanner.team/stops/LWegdry1"], ["https://tec.openplanner.team/stops/X601cka", "https://tec.openplanner.team/stops/X601cub"], ["https://tec.openplanner.team/stops/H1ls105a", "https://tec.openplanner.team/stops/H1ls107a"], ["https://tec.openplanner.team/stops/N512aka", "https://tec.openplanner.team/stops/N512arb"], ["https://tec.openplanner.team/stops/X811aha", "https://tec.openplanner.team/stops/X811aja"], ["https://tec.openplanner.team/stops/Bgntffo1", "https://tec.openplanner.team/stops/Bsgebou1"], ["https://tec.openplanner.team/stops/LNEbo472", "https://tec.openplanner.team/stops/LSNfays1"], ["https://tec.openplanner.team/stops/X671aaa", "https://tec.openplanner.team/stops/X671aab"], ["https://tec.openplanner.team/stops/Lfhchaf4", "https://tec.openplanner.team/stops/Lfhgare1"], ["https://tec.openplanner.team/stops/N150aab", "https://tec.openplanner.team/stops/N150aba"], ["https://tec.openplanner.team/stops/N160afa", "https://tec.openplanner.team/stops/N160afb"], ["https://tec.openplanner.team/stops/N501bua", "https://tec.openplanner.team/stops/N501lqa"], ["https://tec.openplanner.team/stops/LATcham*", "https://tec.openplanner.team/stops/LVLeg--1"], ["https://tec.openplanner.team/stops/Cgyplst1", "https://tec.openplanner.team/stops/Cgyplst2"], ["https://tec.openplanner.team/stops/Bblapra1", "https://tec.openplanner.team/stops/Bwaunou2"], ["https://tec.openplanner.team/stops/LLUadze1", "https://tec.openplanner.team/stops/LLUtrol2"], ["https://tec.openplanner.team/stops/Cctathe1", "https://tec.openplanner.team/stops/Cctfaub1"], ["https://tec.openplanner.team/stops/LSWscie1", "https://tec.openplanner.team/stops/LSZroqu2"], ["https://tec.openplanner.team/stops/N552ada", "https://tec.openplanner.team/stops/N552adb"], ["https://tec.openplanner.team/stops/Bbeaneu4", "https://tec.openplanner.team/stops/Bmlnpab1"], ["https://tec.openplanner.team/stops/Blimch%C3%A21", "https://tec.openplanner.team/stops/Bottpry1"], ["https://tec.openplanner.team/stops/Cmg4bra1", "https://tec.openplanner.team/stops/Cmgarsi2"], ["https://tec.openplanner.team/stops/Lticime2", "https://tec.openplanner.team/stops/Ltimarq2"], ["https://tec.openplanner.team/stops/LlAdorf1", "https://tec.openplanner.team/stops/LmLbeil2"], ["https://tec.openplanner.team/stops/Bgoesch1", "https://tec.openplanner.team/stops/Bgoesch2"], ["https://tec.openplanner.team/stops/LBEoblu1", "https://tec.openplanner.team/stops/LBEoblu2"], ["https://tec.openplanner.team/stops/Bbrlpar1", "https://tec.openplanner.team/stops/Bbrlrph2"], ["https://tec.openplanner.team/stops/N512aic", "https://tec.openplanner.team/stops/NL57aeb"], ["https://tec.openplanner.team/stops/H1me113b", "https://tec.openplanner.team/stops/H1me117e"], ["https://tec.openplanner.team/stops/LFocent1", "https://tec.openplanner.team/stops/LFochap1"], ["https://tec.openplanner.team/stops/X397aab", "https://tec.openplanner.team/stops/X397aba"], ["https://tec.openplanner.team/stops/H1cu124a", "https://tec.openplanner.team/stops/H1cu124b"], ["https://tec.openplanner.team/stops/N564aab", "https://tec.openplanner.team/stops/N564adb"], ["https://tec.openplanner.team/stops/Bnilegl1", "https://tec.openplanner.team/stops/Bnilegl2"], ["https://tec.openplanner.team/stops/X561abb", "https://tec.openplanner.team/stops/X561abc"], ["https://tec.openplanner.team/stops/X922afa", "https://tec.openplanner.team/stops/X922afb"], ["https://tec.openplanner.team/stops/X715apb", "https://tec.openplanner.team/stops/X716aab"], ["https://tec.openplanner.team/stops/N544abc", "https://tec.openplanner.team/stops/N544afb"], ["https://tec.openplanner.team/stops/Llgmara1", "https://tec.openplanner.team/stops/Llgongr4"], ["https://tec.openplanner.team/stops/Laddelc1", "https://tec.openplanner.team/stops/Ladjuif1"], ["https://tec.openplanner.team/stops/N524aia", "https://tec.openplanner.team/stops/N524aid"], ["https://tec.openplanner.team/stops/Cjudaxi1", "https://tec.openplanner.team/stops/Cjudefi2"], ["https://tec.openplanner.team/stops/N211apa", "https://tec.openplanner.team/stops/N212agc"], ["https://tec.openplanner.team/stops/Cfocant2", "https://tec.openplanner.team/stops/Cfocorn2"], ["https://tec.openplanner.team/stops/N537aba", "https://tec.openplanner.team/stops/N537acb"], ["https://tec.openplanner.team/stops/N101aqb", "https://tec.openplanner.team/stops/N101aua"], ["https://tec.openplanner.team/stops/Canmonu1", "https://tec.openplanner.team/stops/Canplal1"], ["https://tec.openplanner.team/stops/Llgchat2", "https://tec.openplanner.team/stops/Ltibalt2"], ["https://tec.openplanner.team/stops/LBafagn1", "https://tec.openplanner.team/stops/LBalacr2"], ["https://tec.openplanner.team/stops/LBgbaga1", "https://tec.openplanner.team/stops/LBgbaga4"], ["https://tec.openplanner.team/stops/Bbuzeta1", "https://tec.openplanner.team/stops/Bbuzeta2"], ["https://tec.openplanner.team/stops/X805ahb", "https://tec.openplanner.team/stops/X807acb"], ["https://tec.openplanner.team/stops/Ctuhouz2", "https://tec.openplanner.team/stops/Cturoge2"], ["https://tec.openplanner.team/stops/LBvviem2", "https://tec.openplanner.team/stops/LVMchpl2"], ["https://tec.openplanner.team/stops/Lprcard1", "https://tec.openplanner.team/stops/Lprfoot2"], ["https://tec.openplanner.team/stops/Llmcomb1", "https://tec.openplanner.team/stops/Llmlaro1"], ["https://tec.openplanner.team/stops/H1ms267a", "https://tec.openplanner.team/stops/H1ms289a"], ["https://tec.openplanner.team/stops/LBHinva2", "https://tec.openplanner.team/stops/LMemaza2"], ["https://tec.openplanner.team/stops/Canboni1", "https://tec.openplanner.team/stops/Cfocobe1"], ["https://tec.openplanner.team/stops/LBahome1", "https://tec.openplanner.team/stops/LBamate1"], ["https://tec.openplanner.team/stops/Bbchdra2", "https://tec.openplanner.team/stops/Bbchmai2"], ["https://tec.openplanner.team/stops/Brixpbs2", "https://tec.openplanner.team/stops/Brsrber2"], ["https://tec.openplanner.team/stops/H1hv132a", "https://tec.openplanner.team/stops/H1hv136a"], ["https://tec.openplanner.team/stops/N229aia", "https://tec.openplanner.team/stops/N229aja"], ["https://tec.openplanner.team/stops/X621acb", "https://tec.openplanner.team/stops/X621adb"], ["https://tec.openplanner.team/stops/N305aba", "https://tec.openplanner.team/stops/N305acb"], ["https://tec.openplanner.team/stops/Bgdhbvu1", "https://tec.openplanner.team/stops/Bgdhmet1"], ["https://tec.openplanner.team/stops/Lmntast1", "https://tec.openplanner.team/stops/Lsmstad2"], ["https://tec.openplanner.team/stops/LJEchat1", "https://tec.openplanner.team/stops/LJEpaqu1"], ["https://tec.openplanner.team/stops/Bhoealt1", "https://tec.openplanner.team/stops/Bhoealt2"], ["https://tec.openplanner.team/stops/N357aaa", "https://tec.openplanner.team/stops/N357aeb"], ["https://tec.openplanner.team/stops/N202afa", "https://tec.openplanner.team/stops/N202afb"], ["https://tec.openplanner.team/stops/Lhrlaix1", "https://tec.openplanner.team/stops/Lhrlaix2"], ["https://tec.openplanner.team/stops/X659baa", "https://tec.openplanner.team/stops/X659bab"], ["https://tec.openplanner.team/stops/LPRbrou2", "https://tec.openplanner.team/stops/LPRmc--1"], ["https://tec.openplanner.team/stops/LSOvoie4", "https://tec.openplanner.team/stops/LXHadam2"], ["https://tec.openplanner.team/stops/LbOkalv2", "https://tec.openplanner.team/stops/LbOvith2"], ["https://tec.openplanner.team/stops/N251ada", "https://tec.openplanner.team/stops/N252aab"], ["https://tec.openplanner.team/stops/Bhaless1", "https://tec.openplanner.team/stops/Bhalvel1"], ["https://tec.openplanner.team/stops/Lhucime1", "https://tec.openplanner.team/stops/Lhueg--2"], ["https://tec.openplanner.team/stops/Ccobour1", "https://tec.openplanner.team/stops/Csochea1"], ["https://tec.openplanner.team/stops/H1cu108b", "https://tec.openplanner.team/stops/H1ms920a"], ["https://tec.openplanner.team/stops/LhGfrie1", "https://tec.openplanner.team/stops/LhGgeme2"], ["https://tec.openplanner.team/stops/Lvoeg--2", "https://tec.openplanner.team/stops/Lvoplac2"], ["https://tec.openplanner.team/stops/Llglimb2", "https://tec.openplanner.team/stops/Llgwild8"], ["https://tec.openplanner.team/stops/H4vx362b", "https://tec.openplanner.team/stops/H4vx364d"], ["https://tec.openplanner.team/stops/Bcseeco3", "https://tec.openplanner.team/stops/Bcsepes2"], ["https://tec.openplanner.team/stops/N535aaa", "https://tec.openplanner.team/stops/N535abb"], ["https://tec.openplanner.team/stops/X362aab", "https://tec.openplanner.team/stops/X362aca"], ["https://tec.openplanner.team/stops/LCscarr2", "https://tec.openplanner.team/stops/LCscarr4"], ["https://tec.openplanner.team/stops/Cfocant1", "https://tec.openplanner.team/stops/Cfopetr1"], ["https://tec.openplanner.team/stops/Bmrshan1", "https://tec.openplanner.team/stops/Bplnegl2"], ["https://tec.openplanner.team/stops/N501bbc", "https://tec.openplanner.team/stops/N501cya"], ["https://tec.openplanner.team/stops/Cfaplma1", "https://tec.openplanner.team/stops/Cfaplma2"], ["https://tec.openplanner.team/stops/X744aeb", "https://tec.openplanner.team/stops/X744afa"], ["https://tec.openplanner.team/stops/LHZ8mai1", "https://tec.openplanner.team/stops/LHZcouv2"], ["https://tec.openplanner.team/stops/LTecent1", "https://tec.openplanner.team/stops/LTecent3"], ["https://tec.openplanner.team/stops/H2ca105a", "https://tec.openplanner.team/stops/H2ca105b"], ["https://tec.openplanner.team/stops/LJAboli1", "https://tec.openplanner.team/stops/LJAherb4"], ["https://tec.openplanner.team/stops/LAuvill1", "https://tec.openplanner.team/stops/LWRchem2"], ["https://tec.openplanner.team/stops/H1ms250a", "https://tec.openplanner.team/stops/H1ms943a"], ["https://tec.openplanner.team/stops/Llgchev2", "https://tec.openplanner.team/stops/Llgmass2"], ["https://tec.openplanner.team/stops/X725aoa", "https://tec.openplanner.team/stops/X725aob"], ["https://tec.openplanner.team/stops/Bbldvaa2", "https://tec.openplanner.team/stops/Bhevwzw2"], ["https://tec.openplanner.team/stops/Bbgever1", "https://tec.openplanner.team/stops/Bbgever2"], ["https://tec.openplanner.team/stops/LSZarze1", "https://tec.openplanner.team/stops/LSZarze3"], ["https://tec.openplanner.team/stops/H3br112a", "https://tec.openplanner.team/stops/H3br122b"], ["https://tec.openplanner.team/stops/X824akb", "https://tec.openplanner.team/stops/X829aea"], ["https://tec.openplanner.team/stops/Bboupde1", "https://tec.openplanner.team/stops/Bboupde2"], ["https://tec.openplanner.team/stops/X669aaa", "https://tec.openplanner.team/stops/X669aca"], ["https://tec.openplanner.team/stops/X715ahb", "https://tec.openplanner.team/stops/X715aib"], ["https://tec.openplanner.team/stops/LPctrog2", "https://tec.openplanner.team/stops/LVPbleh2"], ["https://tec.openplanner.team/stops/N538amb", "https://tec.openplanner.team/stops/N538amd"], ["https://tec.openplanner.team/stops/X650aaa", "https://tec.openplanner.team/stops/X650abb"], ["https://tec.openplanner.team/stops/H4mo140a", "https://tec.openplanner.team/stops/H4mo140b"], ["https://tec.openplanner.team/stops/X801axb", "https://tec.openplanner.team/stops/X801ayb"], ["https://tec.openplanner.team/stops/Lfhtrxc*", "https://tec.openplanner.team/stops/Lfhtrxc1"], ["https://tec.openplanner.team/stops/N501hxy", "https://tec.openplanner.team/stops/N501ikb"], ["https://tec.openplanner.team/stops/N101aea", "https://tec.openplanner.team/stops/N147aba"], ["https://tec.openplanner.team/stops/LBIrout1", "https://tec.openplanner.team/stops/LVGeg--5"], ["https://tec.openplanner.team/stops/H4er121b", "https://tec.openplanner.team/stops/H4er125b"], ["https://tec.openplanner.team/stops/LEHmarc1", "https://tec.openplanner.team/stops/LRAgrot2"], ["https://tec.openplanner.team/stops/Lrolecl1", "https://tec.openplanner.team/stops/Lrovand1"], ["https://tec.openplanner.team/stops/X623aka", "https://tec.openplanner.team/stops/X623akb"], ["https://tec.openplanner.team/stops/N206abb", "https://tec.openplanner.team/stops/N206aca"], ["https://tec.openplanner.team/stops/Lfhcime1", "https://tec.openplanner.team/stops/Lfhmarn2"], ["https://tec.openplanner.team/stops/N505akb", "https://tec.openplanner.team/stops/N512awa"], ["https://tec.openplanner.team/stops/X839aea", "https://tec.openplanner.team/stops/X840abb"], ["https://tec.openplanner.team/stops/X759aaa", "https://tec.openplanner.team/stops/X759acb"], ["https://tec.openplanner.team/stops/Bbcoubo2", "https://tec.openplanner.team/stops/Bbcoubo3"], ["https://tec.openplanner.team/stops/X659aea", "https://tec.openplanner.team/stops/X659aqa"], ["https://tec.openplanner.team/stops/N501dia", "https://tec.openplanner.team/stops/N501jsb"], ["https://tec.openplanner.team/stops/N348aea", "https://tec.openplanner.team/stops/N351ara"], ["https://tec.openplanner.team/stops/Lhufays2", "https://tec.openplanner.team/stops/Lhuferm1"], ["https://tec.openplanner.team/stops/LLM4rou1", "https://tec.openplanner.team/stops/LLMfond2"], ["https://tec.openplanner.team/stops/H2ma206a", "https://tec.openplanner.team/stops/H2ma208a"], ["https://tec.openplanner.team/stops/Llgmean2", "https://tec.openplanner.team/stops/Llgptlo3"], ["https://tec.openplanner.team/stops/H2hg154e", "https://tec.openplanner.team/stops/H2hg154f"], ["https://tec.openplanner.team/stops/Cthathe2", "https://tec.openplanner.team/stops/Cthgend2"], ["https://tec.openplanner.team/stops/H4ka190a", "https://tec.openplanner.team/stops/H4ka421a"], ["https://tec.openplanner.team/stops/Ccogrbu2", "https://tec.openplanner.team/stops/Csograf1"], ["https://tec.openplanner.team/stops/H1en101b", "https://tec.openplanner.team/stops/H1mk115a"], ["https://tec.openplanner.team/stops/Bnetrbr1", "https://tec.openplanner.team/stops/Bnetrtb2"], ["https://tec.openplanner.team/stops/X625ada", "https://tec.openplanner.team/stops/X625agb"], ["https://tec.openplanner.team/stops/N501bxb", "https://tec.openplanner.team/stops/N501hfa"], ["https://tec.openplanner.team/stops/H4mt215a", "https://tec.openplanner.team/stops/H4mt219a"], ["https://tec.openplanner.team/stops/X953acb", "https://tec.openplanner.team/stops/X953ada"], ["https://tec.openplanner.team/stops/X662aea", "https://tec.openplanner.team/stops/X663aea"], ["https://tec.openplanner.team/stops/LLvferm2", "https://tec.openplanner.team/stops/LLvpost1"], ["https://tec.openplanner.team/stops/Cbfdufa1", "https://tec.openplanner.team/stops/Cbfdufa2"], ["https://tec.openplanner.team/stops/H2re165b", "https://tec.openplanner.team/stops/H2re167b"], ["https://tec.openplanner.team/stops/Brsga152", "https://tec.openplanner.team/stops/Brsggol1"], ["https://tec.openplanner.team/stops/N501ccb", "https://tec.openplanner.team/stops/N510abb"], ["https://tec.openplanner.team/stops/N232afb", "https://tec.openplanner.team/stops/N286aba"], ["https://tec.openplanner.team/stops/Bcrncjo2", "https://tec.openplanner.team/stops/N522aub"], ["https://tec.openplanner.team/stops/Lghcham1", "https://tec.openplanner.team/stops/Lghencl1"], ["https://tec.openplanner.team/stops/X637ajb", "https://tec.openplanner.team/stops/X638aoa"], ["https://tec.openplanner.team/stops/Lhrpaix1", "https://tec.openplanner.team/stops/Lhrpaix2"], ["https://tec.openplanner.team/stops/H4rc232c", "https://tec.openplanner.team/stops/H4rc234b"], ["https://tec.openplanner.team/stops/N390aaa", "https://tec.openplanner.team/stops/N390aab"], ["https://tec.openplanner.team/stops/X902aha", "https://tec.openplanner.team/stops/X999aba"], ["https://tec.openplanner.team/stops/H4pi133a", "https://tec.openplanner.team/stops/H4pi135a"], ["https://tec.openplanner.team/stops/LBImili1", "https://tec.openplanner.team/stops/LVevill1"], ["https://tec.openplanner.team/stops/Bgrhcen1", "https://tec.openplanner.team/stops/Bgrhpos1"], ["https://tec.openplanner.team/stops/Lsecoop2", "https://tec.openplanner.team/stops/Lseresi2"], ["https://tec.openplanner.team/stops/H4mo137a", "https://tec.openplanner.team/stops/H4mo170a"], ["https://tec.openplanner.team/stops/H1mb131b", "https://tec.openplanner.team/stops/H1mb137a"], ["https://tec.openplanner.team/stops/N308ama", "https://tec.openplanner.team/stops/X308akb"], ["https://tec.openplanner.team/stops/N116abb", "https://tec.openplanner.team/stops/N151aka"], ["https://tec.openplanner.team/stops/Bbgeegl1", "https://tec.openplanner.team/stops/Bbgevil2"], ["https://tec.openplanner.team/stops/X882ajb", "https://tec.openplanner.team/stops/X882akb"], ["https://tec.openplanner.team/stops/Cmaprov2", "https://tec.openplanner.team/stops/CMprov2"], ["https://tec.openplanner.team/stops/N501ffa", "https://tec.openplanner.team/stops/N501ffb"], ["https://tec.openplanner.team/stops/X601csb", "https://tec.openplanner.team/stops/X601ctb"], ["https://tec.openplanner.team/stops/Lsecoll1", "https://tec.openplanner.team/stops/Lsekubo4"], ["https://tec.openplanner.team/stops/X746ada", "https://tec.openplanner.team/stops/X749aea"], ["https://tec.openplanner.team/stops/H4ma399a", "https://tec.openplanner.team/stops/H4ma419a"], ["https://tec.openplanner.team/stops/X831aba", "https://tec.openplanner.team/stops/X831aca"], ["https://tec.openplanner.team/stops/X631aab", "https://tec.openplanner.team/stops/X631ada"], ["https://tec.openplanner.team/stops/Lhrsimo4", "https://tec.openplanner.team/stops/Lhrtunn2"], ["https://tec.openplanner.team/stops/LwSbrei1", "https://tec.openplanner.team/stops/LwSgeme2"], ["https://tec.openplanner.team/stops/LWOpier2", "https://tec.openplanner.team/stops/LWOunio1"], ["https://tec.openplanner.team/stops/Bsgimca1", "https://tec.openplanner.team/stops/Bsgimca2"], ["https://tec.openplanner.team/stops/N501eia", "https://tec.openplanner.team/stops/N501jra"], ["https://tec.openplanner.team/stops/X758aeb", "https://tec.openplanner.team/stops/X758afb"], ["https://tec.openplanner.team/stops/Cvlcen1", "https://tec.openplanner.team/stops/NH21acb"], ["https://tec.openplanner.team/stops/X639acb", "https://tec.openplanner.team/stops/X639ada"], ["https://tec.openplanner.team/stops/N547aba", "https://tec.openplanner.team/stops/N565akb"], ["https://tec.openplanner.team/stops/X756aca", "https://tec.openplanner.team/stops/X756adb"], ["https://tec.openplanner.team/stops/Lselibe2", "https://tec.openplanner.team/stops/Lseprog2"], ["https://tec.openplanner.team/stops/Llgsnap2", "https://tec.openplanner.team/stops/Llgwiar2"], ["https://tec.openplanner.team/stops/H5pe141a", "https://tec.openplanner.team/stops/H5pe145a"], ["https://tec.openplanner.team/stops/LPRbayb2", "https://tec.openplanner.team/stops/LTRchpl2"], ["https://tec.openplanner.team/stops/H4ir163a", "https://tec.openplanner.team/stops/H4to136a"], ["https://tec.openplanner.team/stops/N141alb", "https://tec.openplanner.team/stops/N143aca"], ["https://tec.openplanner.team/stops/Clgmaco1", "https://tec.openplanner.team/stops/Ctipoui2"], ["https://tec.openplanner.team/stops/Chhverr2", "https://tec.openplanner.team/stops/Cjxdesc2"], ["https://tec.openplanner.team/stops/X746acb", "https://tec.openplanner.team/stops/X746amb"], ["https://tec.openplanner.team/stops/Llgbaya1", "https://tec.openplanner.team/stops/Llgbaya2"], ["https://tec.openplanner.team/stops/X743aab", "https://tec.openplanner.team/stops/X756aab"], ["https://tec.openplanner.team/stops/X902aia", "https://tec.openplanner.team/stops/X992aba"], ["https://tec.openplanner.team/stops/Bvxgeta2", "https://tec.openplanner.team/stops/Bvxgpro2"], ["https://tec.openplanner.team/stops/Bixleix2", "https://tec.openplanner.team/stops/Bixlpat2"], ["https://tec.openplanner.team/stops/H1ms247b", "https://tec.openplanner.team/stops/H1ms360a"], ["https://tec.openplanner.team/stops/X837acb", "https://tec.openplanner.team/stops/X837ada"], ["https://tec.openplanner.team/stops/N135bfb", "https://tec.openplanner.team/stops/N135bga"], ["https://tec.openplanner.team/stops/Cmygbbo2", "https://tec.openplanner.team/stops/Cmygbbo3"], ["https://tec.openplanner.team/stops/Llxcite2", "https://tec.openplanner.team/stops/LLxcrem2"], ["https://tec.openplanner.team/stops/Bauddel2", "https://tec.openplanner.team/stops/Baudsju1"], ["https://tec.openplanner.team/stops/Btgregl1", "https://tec.openplanner.team/stops/Btgrpla1"], ["https://tec.openplanner.team/stops/X806abb", "https://tec.openplanner.team/stops/X806akc"], ["https://tec.openplanner.team/stops/X650aea", "https://tec.openplanner.team/stops/X650aia"], ["https://tec.openplanner.team/stops/H1hh109a", "https://tec.openplanner.team/stops/H1hh115b"], ["https://tec.openplanner.team/stops/N353aba", "https://tec.openplanner.team/stops/N353aea"], ["https://tec.openplanner.team/stops/H4hu114b", "https://tec.openplanner.team/stops/H4hu118a"], ["https://tec.openplanner.team/stops/N214aea", "https://tec.openplanner.team/stops/N214aec"], ["https://tec.openplanner.team/stops/Bneeblo1", "https://tec.openplanner.team/stops/Bneehou1"], ["https://tec.openplanner.team/stops/H4ga150b", "https://tec.openplanner.team/stops/H4ha167b"], ["https://tec.openplanner.team/stops/X982bmb", "https://tec.openplanner.team/stops/X982bna"], ["https://tec.openplanner.team/stops/LRRecsc*", "https://tec.openplanner.team/stops/LRReg--1"], ["https://tec.openplanner.team/stops/Lsecroi2", "https://tec.openplanner.team/stops/Lsepair4"], ["https://tec.openplanner.team/stops/LHGbeur1", "https://tec.openplanner.team/stops/LHGtige2"], ["https://tec.openplanner.team/stops/NL73adb", "https://tec.openplanner.team/stops/NL73aeb"], ["https://tec.openplanner.team/stops/Lgrfort1", "https://tec.openplanner.team/stops/Lgrmagd1"], ["https://tec.openplanner.team/stops/Blanmde2", "https://tec.openplanner.team/stops/Brach122"], ["https://tec.openplanner.team/stops/X734aib", "https://tec.openplanner.team/stops/X734aja"], ["https://tec.openplanner.team/stops/Lseaite2", "https://tec.openplanner.team/stops/Lsebico2"], ["https://tec.openplanner.team/stops/H4bd107b", "https://tec.openplanner.team/stops/H4bd108a"], ["https://tec.openplanner.team/stops/Cmabegh1", "https://tec.openplanner.team/stops/Cmabegh2"], ["https://tec.openplanner.team/stops/LwAkape2", "https://tec.openplanner.team/stops/LwAstum2"], ["https://tec.openplanner.team/stops/Bbiehec2", "https://tec.openplanner.team/stops/Bboncfv1"], ["https://tec.openplanner.team/stops/LLGramk1", "https://tec.openplanner.team/stops/LORvill3"], ["https://tec.openplanner.team/stops/N127aia", "https://tec.openplanner.team/stops/N134ala"], ["https://tec.openplanner.team/stops/Cpclarm1", "https://tec.openplanner.team/stops/Cpcndce1"], ["https://tec.openplanner.team/stops/Bllnchv2", "https://tec.openplanner.team/stops/Bllnfeq1"], ["https://tec.openplanner.team/stops/H1hl122a", "https://tec.openplanner.team/stops/H1hl122b"], ["https://tec.openplanner.team/stops/N203ada", "https://tec.openplanner.team/stops/N203adb"], ["https://tec.openplanner.team/stops/X802akb", "https://tec.openplanner.team/stops/X802ana"], ["https://tec.openplanner.team/stops/Bnivfra1", "https://tec.openplanner.team/stops/Bnivphs2"], ["https://tec.openplanner.team/stops/Cgogrco2", "https://tec.openplanner.team/stops/Cgostro2"], ["https://tec.openplanner.team/stops/N360aca", "https://tec.openplanner.team/stops/N360acc"], ["https://tec.openplanner.team/stops/X601cla", "https://tec.openplanner.team/stops/X601cna"], ["https://tec.openplanner.team/stops/N104afa", "https://tec.openplanner.team/stops/N118abb"], ["https://tec.openplanner.team/stops/H4ro156a", "https://tec.openplanner.team/stops/H4ro157a"], ["https://tec.openplanner.team/stops/X764ada", "https://tec.openplanner.team/stops/X764agb"], ["https://tec.openplanner.team/stops/N501fab", "https://tec.openplanner.team/stops/N501fsa"], ["https://tec.openplanner.team/stops/X715aea", "https://tec.openplanner.team/stops/X715apb"], ["https://tec.openplanner.team/stops/H1gi122a", "https://tec.openplanner.team/stops/H1gi122b"], ["https://tec.openplanner.team/stops/Bwatgar4", "https://tec.openplanner.team/stops/Bwattri1"], ["https://tec.openplanner.team/stops/X622adb", "https://tec.openplanner.team/stops/X622aeb"], ["https://tec.openplanner.team/stops/N145aia", "https://tec.openplanner.team/stops/N145aib"], ["https://tec.openplanner.team/stops/X608ada", "https://tec.openplanner.team/stops/X608apb"], ["https://tec.openplanner.team/stops/H4mo133a", "https://tec.openplanner.team/stops/H4mo175a"], ["https://tec.openplanner.team/stops/Ladarev2", "https://tec.openplanner.team/stops/Ladchat2"], ["https://tec.openplanner.team/stops/Cgpauln1", "https://tec.openplanner.team/stops/Cgpleco2"], ["https://tec.openplanner.team/stops/N532ama", "https://tec.openplanner.team/stops/N574aca"], ["https://tec.openplanner.team/stops/H4ty329b", "https://tec.openplanner.team/stops/H4ty345a"], ["https://tec.openplanner.team/stops/X674aaa", "https://tec.openplanner.team/stops/X820agd"], ["https://tec.openplanner.team/stops/LrD28--1", "https://tec.openplanner.team/stops/LrDhund1"], ["https://tec.openplanner.team/stops/X398aea", "https://tec.openplanner.team/stops/X398aia"], ["https://tec.openplanner.team/stops/X912aab", "https://tec.openplanner.team/stops/X912ala"], ["https://tec.openplanner.team/stops/N536afa", "https://tec.openplanner.team/stops/N536aqa"], ["https://tec.openplanner.team/stops/Cjubien1", "https://tec.openplanner.team/stops/Cjuvand1"], ["https://tec.openplanner.team/stops/N308ada", "https://tec.openplanner.team/stops/N308aob"], ["https://tec.openplanner.team/stops/N551aha", "https://tec.openplanner.team/stops/N552aca"], ["https://tec.openplanner.team/stops/H1ni318b", "https://tec.openplanner.team/stops/H1ni321b"], ["https://tec.openplanner.team/stops/Bbghgli1", "https://tec.openplanner.team/stops/Bbghsta3"], ["https://tec.openplanner.team/stops/LTecent2", "https://tec.openplanner.team/stops/LTestat2"], ["https://tec.openplanner.team/stops/H2hg154c", "https://tec.openplanner.team/stops/H3lr108b"], ["https://tec.openplanner.team/stops/N501gre", "https://tec.openplanner.team/stops/N501zda"], ["https://tec.openplanner.team/stops/X760acb", "https://tec.openplanner.team/stops/X786aha"], ["https://tec.openplanner.team/stops/H2fa112a", "https://tec.openplanner.team/stops/H2mg135b"], ["https://tec.openplanner.team/stops/Bcrncjo2", "https://tec.openplanner.team/stops/Bcrntru2"], ["https://tec.openplanner.team/stops/N506aqb", "https://tec.openplanner.team/stops/N506aza"], ["https://tec.openplanner.team/stops/X901aea", "https://tec.openplanner.team/stops/X901aeb"], ["https://tec.openplanner.team/stops/Becepco2", "https://tec.openplanner.team/stops/H2ec100a"], ["https://tec.openplanner.team/stops/NL76ana", "https://tec.openplanner.team/stops/NL76apa"], ["https://tec.openplanner.team/stops/Llgcrah2", "https://tec.openplanner.team/stops/Llgwild1"], ["https://tec.openplanner.team/stops/LRmha261", "https://tec.openplanner.team/stops/LRmhage7"], ["https://tec.openplanner.team/stops/Lghpero1", "https://tec.openplanner.team/stops/Lghremy2"], ["https://tec.openplanner.team/stops/Cauglac1", "https://tec.openplanner.team/stops/N543aub"], ["https://tec.openplanner.team/stops/LCEec--1", "https://tec.openplanner.team/stops/LCEhayo1"], ["https://tec.openplanner.team/stops/LSPastr2", "https://tec.openplanner.team/stops/LSPclai2"], ["https://tec.openplanner.team/stops/Cobmven2", "https://tec.openplanner.team/stops/Cpctrau2"], ["https://tec.openplanner.team/stops/X801bfa", "https://tec.openplanner.team/stops/X801ceb"], ["https://tec.openplanner.team/stops/Bcsemar2", "https://tec.openplanner.team/stops/Bsmgpla2"], ["https://tec.openplanner.team/stops/N521aha", "https://tec.openplanner.team/stops/N521ahb"], ["https://tec.openplanner.team/stops/X723ama", "https://tec.openplanner.team/stops/X723amb"], ["https://tec.openplanner.team/stops/Ccycont2", "https://tec.openplanner.team/stops/Crbegli1"], ["https://tec.openplanner.team/stops/N501csa", "https://tec.openplanner.team/stops/N501cta"], ["https://tec.openplanner.team/stops/X660adb", "https://tec.openplanner.team/stops/X660aeb"], ["https://tec.openplanner.team/stops/X713aea", "https://tec.openplanner.team/stops/X713aeb"], ["https://tec.openplanner.team/stops/N121ajb", "https://tec.openplanner.team/stops/N122ahb"], ["https://tec.openplanner.team/stops/Cjuchli2", "https://tec.openplanner.team/stops/Cjumall2"], ["https://tec.openplanner.team/stops/N511alc", "https://tec.openplanner.team/stops/N511ama"], ["https://tec.openplanner.team/stops/Lbhgare1", "https://tec.openplanner.team/stops/Lbhgare2"], ["https://tec.openplanner.team/stops/Lemarde1", "https://tec.openplanner.team/stops/Lemmusc1"], ["https://tec.openplanner.team/stops/X802ara", "https://tec.openplanner.team/stops/X802ata"], ["https://tec.openplanner.team/stops/N343aib", "https://tec.openplanner.team/stops/N343aob"], ["https://tec.openplanner.team/stops/LnEkirc1", "https://tec.openplanner.team/stops/LnEkirc4"], ["https://tec.openplanner.team/stops/Lveharm1", "https://tec.openplanner.team/stops/Lvexhav1"], ["https://tec.openplanner.team/stops/LaSbahn2", "https://tec.openplanner.team/stops/LaSkape1"], ["https://tec.openplanner.team/stops/H3so167a", "https://tec.openplanner.team/stops/H3so168a"], ["https://tec.openplanner.team/stops/H4ve132a", "https://tec.openplanner.team/stops/H4ve135b"], ["https://tec.openplanner.team/stops/H1gc123a", "https://tec.openplanner.team/stops/H1hy126a"], ["https://tec.openplanner.team/stops/H1eq115a", "https://tec.openplanner.team/stops/H1eq115b"], ["https://tec.openplanner.team/stops/Cflcarr1", "https://tec.openplanner.team/stops/Cflcarr2"], ["https://tec.openplanner.team/stops/LNCfawe2", "https://tec.openplanner.team/stops/LNCrami1"], ["https://tec.openplanner.team/stops/X891aaa", "https://tec.openplanner.team/stops/X891ada"], ["https://tec.openplanner.team/stops/X903adb", "https://tec.openplanner.team/stops/X992aba"], ["https://tec.openplanner.team/stops/Lbogonh4", "https://tec.openplanner.team/stops/Lbotilf1"], ["https://tec.openplanner.team/stops/H4ev119a", "https://tec.openplanner.team/stops/H4ln130b"], ["https://tec.openplanner.team/stops/X642aaa", "https://tec.openplanner.team/stops/X642aac"], ["https://tec.openplanner.team/stops/Cthegli2", "https://tec.openplanner.team/stops/Cthrlef1"], ["https://tec.openplanner.team/stops/H4ht172a", "https://tec.openplanner.team/stops/H4ht173a"], ["https://tec.openplanner.team/stops/N534bsb", "https://tec.openplanner.team/stops/N568aba"], ["https://tec.openplanner.team/stops/Lprhodi2", "https://tec.openplanner.team/stops/Lprtill2"], ["https://tec.openplanner.team/stops/LFCkett1", "https://tec.openplanner.team/stops/LFCvoer1"], ["https://tec.openplanner.team/stops/H1fr113b", "https://tec.openplanner.team/stops/H1sb144b"], ["https://tec.openplanner.team/stops/Btslegl1", "https://tec.openplanner.team/stops/Btslegl2"], ["https://tec.openplanner.team/stops/Cchbrou2", "https://tec.openplanner.team/stops/Cchdrai1"], ["https://tec.openplanner.team/stops/LeUgulc1", "https://tec.openplanner.team/stops/LeUhaag1"], ["https://tec.openplanner.team/stops/Clrcime2", "https://tec.openplanner.team/stops/Clrmarl2"], ["https://tec.openplanner.team/stops/Bbsgbos2", "https://tec.openplanner.team/stops/Bbsgfva2"], ["https://tec.openplanner.team/stops/Bbxltou1", "https://tec.openplanner.team/stops/Bleugar1"], ["https://tec.openplanner.team/stops/X763aea", "https://tec.openplanner.team/stops/X763aeb"], ["https://tec.openplanner.team/stops/LPLcarr4", "https://tec.openplanner.team/stops/LPLcroi2"], ["https://tec.openplanner.team/stops/N506ana", "https://tec.openplanner.team/stops/N537ala"], ["https://tec.openplanner.team/stops/H5pe150a", "https://tec.openplanner.team/stops/H5pe150b"], ["https://tec.openplanner.team/stops/H1ha194a", "https://tec.openplanner.team/stops/H1ha200b"], ["https://tec.openplanner.team/stops/H5fl102b", "https://tec.openplanner.team/stops/H5fl103a"], ["https://tec.openplanner.team/stops/X901aqb", "https://tec.openplanner.team/stops/X901aub"], ["https://tec.openplanner.team/stops/H4ef163a", "https://tec.openplanner.team/stops/H4hq130b"], ["https://tec.openplanner.team/stops/LWagare*", "https://tec.openplanner.team/stops/LWastei2"], ["https://tec.openplanner.team/stops/LlSbuch2", "https://tec.openplanner.team/stops/LlZkirc1"], ["https://tec.openplanner.team/stops/Lanothe2", "https://tec.openplanner.team/stops/Lrcchar2"], ["https://tec.openplanner.team/stops/X850aba", "https://tec.openplanner.team/stops/X850aib"], ["https://tec.openplanner.team/stops/N206ada", "https://tec.openplanner.team/stops/N220aca"], ["https://tec.openplanner.team/stops/Bbrlmez1", "https://tec.openplanner.team/stops/Buccmer1"], ["https://tec.openplanner.team/stops/X780aca", "https://tec.openplanner.team/stops/X780akb"], ["https://tec.openplanner.team/stops/N585aja", "https://tec.openplanner.team/stops/N585ajb"], ["https://tec.openplanner.team/stops/H2ha128b", "https://tec.openplanner.team/stops/H2ha142a"], ["https://tec.openplanner.team/stops/N506azb", "https://tec.openplanner.team/stops/N506bnb"], ["https://tec.openplanner.team/stops/LHolone1", "https://tec.openplanner.team/stops/LHolone2"], ["https://tec.openplanner.team/stops/X542aha", "https://tec.openplanner.team/stops/X542ahb"], ["https://tec.openplanner.team/stops/LaAhaup2", "https://tec.openplanner.team/stops/LaAmise1"], ["https://tec.openplanner.team/stops/LArmaro1", "https://tec.openplanner.team/stops/X548adb"], ["https://tec.openplanner.team/stops/H1fl141b", "https://tec.openplanner.team/stops/H1fl370a"], ["https://tec.openplanner.team/stops/N501cab", "https://tec.openplanner.team/stops/N502ada"], ["https://tec.openplanner.team/stops/LBivi--1", "https://tec.openplanner.team/stops/LHChaut5"], ["https://tec.openplanner.team/stops/Botteco1", "https://tec.openplanner.team/stops/Bottvtc2"], ["https://tec.openplanner.team/stops/N127aib", "https://tec.openplanner.team/stops/N127bba"], ["https://tec.openplanner.team/stops/N166ada", "https://tec.openplanner.team/stops/N166adb"], ["https://tec.openplanner.team/stops/X630ada", "https://tec.openplanner.team/stops/X638aea"], ["https://tec.openplanner.team/stops/Cctathe2", "https://tec.openplanner.team/stops/Cctcoll2"], ["https://tec.openplanner.team/stops/H1ho140a", "https://tec.openplanner.team/stops/H1wa162b"], ["https://tec.openplanner.team/stops/X908aia", "https://tec.openplanner.team/stops/X908aja"], ["https://tec.openplanner.team/stops/H1ms292a", "https://tec.openplanner.team/stops/H1ms914a"], ["https://tec.openplanner.team/stops/Lroboeg2", "https://tec.openplanner.team/stops/Lrocort1"], ["https://tec.openplanner.team/stops/LLrbecc2", "https://tec.openplanner.team/stops/LLrlour1"], ["https://tec.openplanner.team/stops/X801aub", "https://tec.openplanner.team/stops/X801cna"], ["https://tec.openplanner.team/stops/LSPherd1", "https://tec.openplanner.team/stops/LSPvigi1"], ["https://tec.openplanner.team/stops/N501fla", "https://tec.openplanner.team/stops/N501lwb"], ["https://tec.openplanner.team/stops/LGegrun1", "https://tec.openplanner.team/stops/LVkinst2"], ["https://tec.openplanner.team/stops/Landeja1", "https://tec.openplanner.team/stops/Lanmouf1"], ["https://tec.openplanner.team/stops/Csbberg1", "https://tec.openplanner.team/stops/H1bi101a"], ["https://tec.openplanner.team/stops/H1hv131a", "https://tec.openplanner.team/stops/H1hv131b"], ["https://tec.openplanner.team/stops/N573aob", "https://tec.openplanner.team/stops/N573arb"], ["https://tec.openplanner.team/stops/H2hp119a", "https://tec.openplanner.team/stops/H2hp119b"], ["https://tec.openplanner.team/stops/X672aea", "https://tec.openplanner.team/stops/X672aec"], ["https://tec.openplanner.team/stops/H4fr143b", "https://tec.openplanner.team/stops/H4rc232b"], ["https://tec.openplanner.team/stops/N501ixc", "https://tec.openplanner.team/stops/N501jib"], ["https://tec.openplanner.team/stops/LTNcarr2", "https://tec.openplanner.team/stops/LTNeau-1"], ["https://tec.openplanner.team/stops/N270abb", "https://tec.openplanner.team/stops/N270aca"], ["https://tec.openplanner.team/stops/LHGbeur4", "https://tec.openplanner.team/stops/LHGikea1"], ["https://tec.openplanner.team/stops/X901awb", "https://tec.openplanner.team/stops/X902bga"], ["https://tec.openplanner.team/stops/Bptrgri1", "https://tec.openplanner.team/stops/Bptrpla1"], ["https://tec.openplanner.team/stops/Canpeup1", "https://tec.openplanner.team/stops/Canrobe1"], ["https://tec.openplanner.team/stops/Chhprai2", "https://tec.openplanner.team/stops/Cmx3arb2"], ["https://tec.openplanner.team/stops/Cmecime1", "https://tec.openplanner.team/stops/Cmehels2"], ["https://tec.openplanner.team/stops/X361aab", "https://tec.openplanner.team/stops/X371aeb"], ["https://tec.openplanner.team/stops/Cjualed1", "https://tec.openplanner.team/stops/Cjucomb1"], ["https://tec.openplanner.team/stops/LsVgore1", "https://tec.openplanner.team/stops/LsVsage1"], ["https://tec.openplanner.team/stops/LVHcent1", "https://tec.openplanner.team/stops/LVHtill2"], ["https://tec.openplanner.team/stops/LOUvign1", "https://tec.openplanner.team/stops/Lvichpl2"], ["https://tec.openplanner.team/stops/Bdvmcbo1", "https://tec.openplanner.team/stops/Bdvmccu1"], ["https://tec.openplanner.team/stops/X307aca", "https://tec.openplanner.team/stops/X371aaa"], ["https://tec.openplanner.team/stops/NR21aja", "https://tec.openplanner.team/stops/NR21ajb"], ["https://tec.openplanner.team/stops/H4jm117a", "https://tec.openplanner.team/stops/H4jm117c"], ["https://tec.openplanner.team/stops/Lbocomm1", "https://tec.openplanner.team/stops/LTIsupe1"], ["https://tec.openplanner.team/stops/Bovehst1", "https://tec.openplanner.team/stops/Bovehst2"], ["https://tec.openplanner.team/stops/X636aqa", "https://tec.openplanner.team/stops/X636aqb"], ["https://tec.openplanner.team/stops/N127aba", "https://tec.openplanner.team/stops/N127bba"], ["https://tec.openplanner.team/stops/LPAeg--1", "https://tec.openplanner.team/stops/LPAeg--2"], ["https://tec.openplanner.team/stops/Bcsebde1", "https://tec.openplanner.team/stops/Bsmgmou2"], ["https://tec.openplanner.team/stops/Bwavgar2", "https://tec.openplanner.team/stops/Bwavgar5"], ["https://tec.openplanner.team/stops/LSLfler2", "https://tec.openplanner.team/stops/LSLhall*"], ["https://tec.openplanner.team/stops/Beclbar1", "https://tec.openplanner.team/stops/Beclbar2"], ["https://tec.openplanner.team/stops/N501ira", "https://tec.openplanner.team/stops/N501izb"], ["https://tec.openplanner.team/stops/X870aea", "https://tec.openplanner.team/stops/X882aga"], ["https://tec.openplanner.team/stops/H4ha168a", "https://tec.openplanner.team/stops/H4ha168b"], ["https://tec.openplanner.team/stops/LRuegli1", "https://tec.openplanner.team/stops/LSegott2"], ["https://tec.openplanner.team/stops/Cfvombo1", "https://tec.openplanner.team/stops/Cfvplac1"], ["https://tec.openplanner.team/stops/Bfelcen2", "https://tec.openplanner.team/stops/Bfelfde1"], ["https://tec.openplanner.team/stops/H2mo122c", "https://tec.openplanner.team/stops/H2mo122d"], ["https://tec.openplanner.team/stops/LBspiet1", "https://tec.openplanner.team/stops/LMHoha-2"], ["https://tec.openplanner.team/stops/LGLgeer2", "https://tec.openplanner.team/stops/LSLhall*"], ["https://tec.openplanner.team/stops/LMechpl2", "https://tec.openplanner.team/stops/LMeperk1"], ["https://tec.openplanner.team/stops/H4rx143b", "https://tec.openplanner.team/stops/H4rx175b"], ["https://tec.openplanner.team/stops/X681aeb", "https://tec.openplanner.team/stops/X685aia"], ["https://tec.openplanner.team/stops/LBmbara2", "https://tec.openplanner.team/stops/LHtdros2"], ["https://tec.openplanner.team/stops/X666aga", "https://tec.openplanner.team/stops/X666agb"], ["https://tec.openplanner.team/stops/H1qu119b", "https://tec.openplanner.team/stops/H1wa143a"], ["https://tec.openplanner.team/stops/Cmosaba1", "https://tec.openplanner.team/stops/Cmosaba4"], ["https://tec.openplanner.team/stops/N116aaa", "https://tec.openplanner.team/stops/N116aab"], ["https://tec.openplanner.team/stops/X811aqa", "https://tec.openplanner.team/stops/X811aqb"], ["https://tec.openplanner.team/stops/LMAgdfa1", "https://tec.openplanner.team/stops/LMAgdfa2"], ["https://tec.openplanner.team/stops/Bbuzcom1", "https://tec.openplanner.team/stops/Bbuztai1"], ["https://tec.openplanner.team/stops/N501hoa", "https://tec.openplanner.team/stops/N501hob"], ["https://tec.openplanner.team/stops/Bdvmc431", "https://tec.openplanner.team/stops/Bwavlon1"], ["https://tec.openplanner.team/stops/H1gr111b", "https://tec.openplanner.team/stops/H1hv136b"], ["https://tec.openplanner.team/stops/LBJplan2", "https://tec.openplanner.team/stops/LHcaube1"], ["https://tec.openplanner.team/stops/Llgbida1", "https://tec.openplanner.team/stops/Llghlau1"], ["https://tec.openplanner.team/stops/LHUneuv2", "https://tec.openplanner.team/stops/LHUpost2"], ["https://tec.openplanner.team/stops/H4lp121a", "https://tec.openplanner.team/stops/H4ma162a"], ["https://tec.openplanner.team/stops/Bllnfla1", "https://tec.openplanner.team/stops/Bwavcui1"], ["https://tec.openplanner.team/stops/Cchba01", "https://tec.openplanner.team/stops/Cchfort1"], ["https://tec.openplanner.team/stops/LAUbirv2", "https://tec.openplanner.team/stops/LHMgulp2"], ["https://tec.openplanner.team/stops/Lhecarc*", "https://tec.openplanner.team/stops/Lhecarc2"], ["https://tec.openplanner.team/stops/N525ada", "https://tec.openplanner.team/stops/N525bab"], ["https://tec.openplanner.team/stops/Bbrlpar1", "https://tec.openplanner.team/stops/Brsgter1"], ["https://tec.openplanner.team/stops/N232ana", "https://tec.openplanner.team/stops/N232bnb"], ["https://tec.openplanner.team/stops/Lhutann2", "https://tec.openplanner.team/stops/Lhuwaid2"], ["https://tec.openplanner.team/stops/H1ms253b", "https://tec.openplanner.team/stops/H1ms908a"], ["https://tec.openplanner.team/stops/H2sb236c", "https://tec.openplanner.team/stops/H2sb242b"], ["https://tec.openplanner.team/stops/H2ll181a", "https://tec.openplanner.team/stops/H2ll257b"], ["https://tec.openplanner.team/stops/LSZstoc2", "https://tec.openplanner.team/stops/LTgcime1"], ["https://tec.openplanner.team/stops/X608aha", "https://tec.openplanner.team/stops/X608aza"], ["https://tec.openplanner.team/stops/N120anb", "https://tec.openplanner.team/stops/N248aea"], ["https://tec.openplanner.team/stops/N212aha", "https://tec.openplanner.team/stops/N212ata"], ["https://tec.openplanner.team/stops/Lancolr2", "https://tec.openplanner.team/stops/Lanpisc1"], ["https://tec.openplanner.team/stops/LBLcalv1", "https://tec.openplanner.team/stops/LBLcalv3"], ["https://tec.openplanner.team/stops/Bwspmon1", "https://tec.openplanner.team/stops/Bwspmon3"], ["https://tec.openplanner.team/stops/H1fr116a", "https://tec.openplanner.team/stops/H1fr131a"], ["https://tec.openplanner.team/stops/Lsecoll1", "https://tec.openplanner.team/stops/Ltihala1"], ["https://tec.openplanner.team/stops/N538baa", "https://tec.openplanner.team/stops/N538bab"], ["https://tec.openplanner.team/stops/LON21--2", "https://tec.openplanner.team/stops/LONcroi1"], ["https://tec.openplanner.team/stops/Cfmpui81", "https://tec.openplanner.team/stops/Cfmpui82"], ["https://tec.openplanner.team/stops/N222ada", "https://tec.openplanner.team/stops/N222ayb"], ["https://tec.openplanner.team/stops/N304aaa", "https://tec.openplanner.team/stops/N315aab"], ["https://tec.openplanner.team/stops/LETeg--1", "https://tec.openplanner.team/stops/LETeg--2"], ["https://tec.openplanner.team/stops/Cravign1", "https://tec.openplanner.team/stops/Cravign4"], ["https://tec.openplanner.team/stops/Lflmaxi1", "https://tec.openplanner.team/stops/Lflmaxi2"], ["https://tec.openplanner.team/stops/X661aza", "https://tec.openplanner.team/stops/X661azb"], ["https://tec.openplanner.team/stops/H4we135a", "https://tec.openplanner.team/stops/H4we138a"], ["https://tec.openplanner.team/stops/Lkithie1", "https://tec.openplanner.team/stops/Lscatme1"], ["https://tec.openplanner.team/stops/X908aka", "https://tec.openplanner.team/stops/X910aja"], ["https://tec.openplanner.team/stops/H4bs110a", "https://tec.openplanner.team/stops/H4bs114a"], ["https://tec.openplanner.team/stops/X715aia", "https://tec.openplanner.team/stops/X715aja"], ["https://tec.openplanner.team/stops/Boppcar1", "https://tec.openplanner.team/stops/Boppcen3"], ["https://tec.openplanner.team/stops/LmImirf1", "https://tec.openplanner.team/stops/LmRh%C3%B6fe1"], ["https://tec.openplanner.team/stops/Bwatpas2", "https://tec.openplanner.team/stops/Bwatrsg2"], ["https://tec.openplanner.team/stops/LBgcroi1", "https://tec.openplanner.team/stops/LBgcroi5"], ["https://tec.openplanner.team/stops/X604acb", "https://tec.openplanner.team/stops/X604afd"], ["https://tec.openplanner.team/stops/LAUberg1", "https://tec.openplanner.team/stops/LAUberg2"], ["https://tec.openplanner.team/stops/Btubfab1", "https://tec.openplanner.team/stops/Btubfab2"], ["https://tec.openplanner.team/stops/Bohnmon2", "https://tec.openplanner.team/stops/Bohnrpl2"], ["https://tec.openplanner.team/stops/Llgabat1", "https://tec.openplanner.team/stops/Llginte1"], ["https://tec.openplanner.team/stops/Lbocruc1", "https://tec.openplanner.team/stops/Lbofrai1"], ["https://tec.openplanner.team/stops/Cdamest1", "https://tec.openplanner.team/stops/Cdametr1"], ["https://tec.openplanner.team/stops/Beclesp2", "https://tec.openplanner.team/stops/Beclpma2"], ["https://tec.openplanner.team/stops/Bwatcro2", "https://tec.openplanner.team/stops/Bwatifr2"], ["https://tec.openplanner.team/stops/LCxfawe1", "https://tec.openplanner.team/stops/LCxfawe2"], ["https://tec.openplanner.team/stops/Bincbbo1", "https://tec.openplanner.team/stops/Bincbbo2"], ["https://tec.openplanner.team/stops/X639aob", "https://tec.openplanner.team/stops/X639aoc"], ["https://tec.openplanner.team/stops/LPbpl--2", "https://tec.openplanner.team/stops/LPbtene1"], ["https://tec.openplanner.team/stops/H1au100b", "https://tec.openplanner.team/stops/H1on128b"], ["https://tec.openplanner.team/stops/Llgcock2", "https://tec.openplanner.team/stops/Llgrege2"], ["https://tec.openplanner.team/stops/X994aib", "https://tec.openplanner.team/stops/X994aja"], ["https://tec.openplanner.team/stops/H4bl104a", "https://tec.openplanner.team/stops/H4bl106b"], ["https://tec.openplanner.team/stops/X897aia", "https://tec.openplanner.team/stops/X897aja"], ["https://tec.openplanner.team/stops/X985ada", "https://tec.openplanner.team/stops/X985aha"], ["https://tec.openplanner.team/stops/X661anb", "https://tec.openplanner.team/stops/X661apa"], ["https://tec.openplanner.team/stops/LVMcent2", "https://tec.openplanner.team/stops/LVMchpl1"], ["https://tec.openplanner.team/stops/Bsomtpm1", "https://tec.openplanner.team/stops/N584aua"], ["https://tec.openplanner.team/stops/N569aja", "https://tec.openplanner.team/stops/N569ajb"], ["https://tec.openplanner.team/stops/Lbomidi1", "https://tec.openplanner.team/stops/LPLcarr2"], ["https://tec.openplanner.team/stops/X993adb", "https://tec.openplanner.team/stops/X993ajb"], ["https://tec.openplanner.team/stops/Blineco1", "https://tec.openplanner.team/stops/Blinhue1"], ["https://tec.openplanner.team/stops/N543axa", "https://tec.openplanner.team/stops/N543bka"], ["https://tec.openplanner.team/stops/X721agb", "https://tec.openplanner.team/stops/X721aja"], ["https://tec.openplanner.team/stops/Llgcham3", "https://tec.openplanner.team/stops/Llgrema2"], ["https://tec.openplanner.team/stops/LRMeg--1", "https://tec.openplanner.team/stops/X595agb"], ["https://tec.openplanner.team/stops/Lgrbill2", "https://tec.openplanner.team/stops/Lgrlimi4"], ["https://tec.openplanner.team/stops/LCShoux2", "https://tec.openplanner.team/stops/LCSmagn1"], ["https://tec.openplanner.team/stops/X921aba", "https://tec.openplanner.team/stops/X921afb"], ["https://tec.openplanner.team/stops/X898afa", "https://tec.openplanner.team/stops/X898aka"], ["https://tec.openplanner.team/stops/Llgbuis1", "https://tec.openplanner.team/stops/Lsccime1"], ["https://tec.openplanner.team/stops/H2sb224a", "https://tec.openplanner.team/stops/H2sb243d"], ["https://tec.openplanner.team/stops/X760aca", "https://tec.openplanner.team/stops/X760ada"], ["https://tec.openplanner.team/stops/N338afb", "https://tec.openplanner.team/stops/N338aga"], ["https://tec.openplanner.team/stops/LATcham*", "https://tec.openplanner.team/stops/LATlena2"], ["https://tec.openplanner.team/stops/Bbgelre1", "https://tec.openplanner.team/stops/Bwavche1"], ["https://tec.openplanner.team/stops/X939aaa", "https://tec.openplanner.team/stops/X940aec"], ["https://tec.openplanner.team/stops/Lghleon1", "https://tec.openplanner.team/stops/Lghpier1"], ["https://tec.openplanner.team/stops/LMHtill2", "https://tec.openplanner.team/stops/NL73aea"], ["https://tec.openplanner.team/stops/Bbeubos1", "https://tec.openplanner.team/stops/N541adb"], ["https://tec.openplanner.team/stops/Bcrnpla4", "https://tec.openplanner.team/stops/Bcrnvic2"], ["https://tec.openplanner.team/stops/Bboutry1", "https://tec.openplanner.team/stops/Bcsgres1"], ["https://tec.openplanner.team/stops/X601bbd", "https://tec.openplanner.team/stops/X601bcb"], ["https://tec.openplanner.team/stops/X636aga", "https://tec.openplanner.team/stops/X636baa"], ["https://tec.openplanner.team/stops/Brsggea1", "https://tec.openplanner.team/stops/Brsgtou2"], ["https://tec.openplanner.team/stops/Ctrecol1", "https://tec.openplanner.team/stops/Ctrvert2"], ["https://tec.openplanner.team/stops/LSokrin1", "https://tec.openplanner.team/stops/LSokrin2"], ["https://tec.openplanner.team/stops/X902aga", "https://tec.openplanner.team/stops/X902agb"], ["https://tec.openplanner.team/stops/LeUkabe1", "https://tec.openplanner.team/stops/LeUmalm1"], ["https://tec.openplanner.team/stops/X616aaa", "https://tec.openplanner.team/stops/X616ahb"], ["https://tec.openplanner.team/stops/LJAbell1", "https://tec.openplanner.team/stops/LJAferm1"], ["https://tec.openplanner.team/stops/Lenhosp2", "https://tec.openplanner.team/stops/Lenmare1"], ["https://tec.openplanner.team/stops/Bgrmfga2", "https://tec.openplanner.team/stops/N522aub"], ["https://tec.openplanner.team/stops/LFmcarr2", "https://tec.openplanner.team/stops/LKmdrie1"], ["https://tec.openplanner.team/stops/LHNhall3", "https://tec.openplanner.team/stops/LHNhv--1"], ["https://tec.openplanner.team/stops/H1bx105a", "https://tec.openplanner.team/stops/H1qv111b"], ["https://tec.openplanner.team/stops/H2re163b", "https://tec.openplanner.team/stops/H2re174a"], ["https://tec.openplanner.team/stops/Blhumpo4", "https://tec.openplanner.team/stops/Blhutco2"], ["https://tec.openplanner.team/stops/X641aha", "https://tec.openplanner.team/stops/X641aib"], ["https://tec.openplanner.team/stops/H1qu119a", "https://tec.openplanner.team/stops/H1wa150a"], ["https://tec.openplanner.team/stops/Cthalli2", "https://tec.openplanner.team/stops/Cthgend1"], ["https://tec.openplanner.team/stops/LFEn6--1", "https://tec.openplanner.team/stops/X597aob"], ["https://tec.openplanner.team/stops/Lhucime1", "https://tec.openplanner.team/stops/Lvewaut2"], ["https://tec.openplanner.team/stops/X767aab", "https://tec.openplanner.team/stops/X768aab"], ["https://tec.openplanner.team/stops/LWZponb1", "https://tec.openplanner.team/stops/LWZponh1"], ["https://tec.openplanner.team/stops/LaAelis2", "https://tec.openplanner.team/stops/LaAhaup1"], ["https://tec.openplanner.team/stops/LMgberw1", "https://tec.openplanner.team/stops/LMgberw2"], ["https://tec.openplanner.team/stops/H4bc102a", "https://tec.openplanner.team/stops/H4bc102b"], ["https://tec.openplanner.team/stops/N501bja", "https://tec.openplanner.team/stops/N501bjy"], ["https://tec.openplanner.team/stops/LKmcabi2", "https://tec.openplanner.team/stops/LKmmelo1"], ["https://tec.openplanner.team/stops/H4my123a", "https://tec.openplanner.team/stops/H4pe125b"], ["https://tec.openplanner.team/stops/LSJeg--1", "https://tec.openplanner.team/stops/LSJeg--2"], ["https://tec.openplanner.team/stops/LHMbelv1", "https://tec.openplanner.team/stops/LHMec--1"], ["https://tec.openplanner.team/stops/X633aea", "https://tec.openplanner.team/stops/X633agb"], ["https://tec.openplanner.team/stops/Cgxalli1", "https://tec.openplanner.team/stops/Cgxprad2"], ["https://tec.openplanner.team/stops/X770aeb", "https://tec.openplanner.team/stops/X770afa"], ["https://tec.openplanner.team/stops/H4be146a", "https://tec.openplanner.team/stops/H4be146b"], ["https://tec.openplanner.team/stops/LHCbran1", "https://tec.openplanner.team/stops/LHCruyf2"], ["https://tec.openplanner.team/stops/LLWpier1", "https://tec.openplanner.team/stops/LLWpier2"], ["https://tec.openplanner.team/stops/X601bjb", "https://tec.openplanner.team/stops/X601ctb"], ["https://tec.openplanner.team/stops/N230ajb", "https://tec.openplanner.team/stops/N233aaa"], ["https://tec.openplanner.team/stops/X654aea", "https://tec.openplanner.team/stops/X654agb"], ["https://tec.openplanner.team/stops/LnIkirc2", "https://tec.openplanner.team/stops/LnIschw2"], ["https://tec.openplanner.team/stops/X747ada", "https://tec.openplanner.team/stops/X747aea"], ["https://tec.openplanner.team/stops/Cmybefe2", "https://tec.openplanner.team/stops/Cmycime1"], ["https://tec.openplanner.team/stops/Crbecol2", "https://tec.openplanner.team/stops/Crbegli2"], ["https://tec.openplanner.team/stops/LPcforg2", "https://tec.openplanner.team/stops/LPctrog1"], ["https://tec.openplanner.team/stops/LHrbast1", "https://tec.openplanner.team/stops/LSfcoll*"], ["https://tec.openplanner.team/stops/LsHkirc1", "https://tec.openplanner.team/stops/LsHkirc2"], ["https://tec.openplanner.team/stops/X621aba", "https://tec.openplanner.team/stops/X621aca"], ["https://tec.openplanner.team/stops/N251aba", "https://tec.openplanner.team/stops/N251ada"], ["https://tec.openplanner.team/stops/Cjudewe2", "https://tec.openplanner.team/stops/Clodrio2"], ["https://tec.openplanner.team/stops/H2hg145a", "https://tec.openplanner.team/stops/H2hg145b"], ["https://tec.openplanner.team/stops/N540aja", "https://tec.openplanner.team/stops/N540ajb"], ["https://tec.openplanner.team/stops/Bsgibla2", "https://tec.openplanner.team/stops/Bsgicfo1"], ["https://tec.openplanner.team/stops/LTaeg--2", "https://tec.openplanner.team/stops/LTatult2"], ["https://tec.openplanner.team/stops/LPoxhav1", "https://tec.openplanner.team/stops/LPoxhav2"], ["https://tec.openplanner.team/stops/N141ajb", "https://tec.openplanner.team/stops/N141ala"], ["https://tec.openplanner.team/stops/Bsgeqpb1", "https://tec.openplanner.team/stops/Bsgeqpb2"], ["https://tec.openplanner.team/stops/N117aga", "https://tec.openplanner.team/stops/N163aba"], ["https://tec.openplanner.team/stops/H2ma264a", "https://tec.openplanner.team/stops/H2ma265a"], ["https://tec.openplanner.team/stops/Cjudefi2", "https://tec.openplanner.team/stops/Cjutrou1"], ["https://tec.openplanner.team/stops/N151aab", "https://tec.openplanner.team/stops/N151aia"], ["https://tec.openplanner.team/stops/LHUdeni2", "https://tec.openplanner.team/stops/LHUdeni3"], ["https://tec.openplanner.team/stops/Bwatfau1", "https://tec.openplanner.team/stops/Bwatfau2"], ["https://tec.openplanner.team/stops/Lvegera2", "https://tec.openplanner.team/stops/Lveleje2"], ["https://tec.openplanner.team/stops/LHNhv--1", "https://tec.openplanner.team/stops/LHNtill1"], ["https://tec.openplanner.team/stops/H1mk107a", "https://tec.openplanner.team/stops/H1mk123a"], ["https://tec.openplanner.team/stops/N101aaa", "https://tec.openplanner.team/stops/N118ala"], ["https://tec.openplanner.team/stops/LSIgera1", "https://tec.openplanner.team/stops/LSIgera2"], ["https://tec.openplanner.team/stops/LSTchef1", "https://tec.openplanner.team/stops/LSTvaul2"], ["https://tec.openplanner.team/stops/Bwspcar1", "https://tec.openplanner.team/stops/Bwspjon2"], ["https://tec.openplanner.team/stops/Bbiepre1", "https://tec.openplanner.team/stops/Bbiepre2"], ["https://tec.openplanner.team/stops/Bhevjac2", "https://tec.openplanner.team/stops/Bhevjal2"], ["https://tec.openplanner.team/stops/LrEkais2", "https://tec.openplanner.team/stops/LrErauw1"], ["https://tec.openplanner.team/stops/N542apb", "https://tec.openplanner.team/stops/N542aqa"], ["https://tec.openplanner.team/stops/Cciqueu1", "https://tec.openplanner.team/stops/Clvchen2"], ["https://tec.openplanner.team/stops/Bcrncjo1", "https://tec.openplanner.team/stops/Bgrmfga2"], ["https://tec.openplanner.team/stops/Lghomni1", "https://tec.openplanner.team/stops/Lghomni2"], ["https://tec.openplanner.team/stops/LARparc2", "https://tec.openplanner.team/stops/LHAprei2"], ["https://tec.openplanner.team/stops/H1fy118a", "https://tec.openplanner.team/stops/H1wi150a"], ["https://tec.openplanner.team/stops/Buccbou2", "https://tec.openplanner.team/stops/Bucccre2"], ["https://tec.openplanner.team/stops/Cmtpaix2", "https://tec.openplanner.team/stops/Cmtpire2"], ["https://tec.openplanner.team/stops/N502aab", "https://tec.openplanner.team/stops/N502abb"], ["https://tec.openplanner.team/stops/Lghcise1", "https://tec.openplanner.team/stops/Lghmavi1"], ["https://tec.openplanner.team/stops/X657amb", "https://tec.openplanner.team/stops/X670aha"], ["https://tec.openplanner.team/stops/LLUcdoy2", "https://tec.openplanner.team/stops/LLUdoya2"], ["https://tec.openplanner.team/stops/Bgnpgen1", "https://tec.openplanner.team/stops/Bgnppem1"], ["https://tec.openplanner.team/stops/LFLcarr2", "https://tec.openplanner.team/stops/LMvrabo2"], ["https://tec.openplanner.team/stops/Lsnbrac4", "https://tec.openplanner.team/stops/Ltibure3"], ["https://tec.openplanner.team/stops/LTOeg--1", "https://tec.openplanner.team/stops/LTOeg--2"], ["https://tec.openplanner.team/stops/Ccofayt1", "https://tec.openplanner.team/stops/Ccomiau1"], ["https://tec.openplanner.team/stops/X633aab", "https://tec.openplanner.team/stops/X633aba"], ["https://tec.openplanner.team/stops/H1qu100b", "https://tec.openplanner.team/stops/H1qu116c"], ["https://tec.openplanner.team/stops/N118aea", "https://tec.openplanner.team/stops/N155aib"], ["https://tec.openplanner.team/stops/X766afb", "https://tec.openplanner.team/stops/X766aja"], ["https://tec.openplanner.team/stops/LCvneuv5", "https://tec.openplanner.team/stops/LWbregn2"], ["https://tec.openplanner.team/stops/LLSbajo2", "https://tec.openplanner.team/stops/LLStour1"], ["https://tec.openplanner.team/stops/N170aea", "https://tec.openplanner.team/stops/N571aab"], ["https://tec.openplanner.team/stops/LRfbeau1", "https://tec.openplanner.team/stops/LRffroi1"], ["https://tec.openplanner.team/stops/N507aic", "https://tec.openplanner.team/stops/N508aca"], ["https://tec.openplanner.team/stops/H4ka186a", "https://tec.openplanner.team/stops/H4mt218a"], ["https://tec.openplanner.team/stops/Bbstasa2", "https://tec.openplanner.team/stops/Bbstegl2"], ["https://tec.openplanner.team/stops/N508aja", "https://tec.openplanner.team/stops/N508ajd"], ["https://tec.openplanner.team/stops/Lwaaube2", "https://tec.openplanner.team/stops/Lwaeau-1"], ["https://tec.openplanner.team/stops/H1bg110b", "https://tec.openplanner.team/stops/H1hy128a"], ["https://tec.openplanner.team/stops/LCPcomp1", "https://tec.openplanner.team/stops/LGmhumb1"], ["https://tec.openplanner.team/stops/LhGcasi1", "https://tec.openplanner.team/stops/LkEbruc1"], ["https://tec.openplanner.team/stops/LHTbaud1", "https://tec.openplanner.team/stops/LHTdelh2"], ["https://tec.openplanner.team/stops/Cgdberl2", "https://tec.openplanner.team/stops/Cgdfras1"], ["https://tec.openplanner.team/stops/LaMthei1", "https://tec.openplanner.team/stops/LeIjoha1"], ["https://tec.openplanner.team/stops/LAWchpl2", "https://tec.openplanner.team/stops/LAWcite6"], ["https://tec.openplanner.team/stops/LOUchen2", "https://tec.openplanner.team/stops/LOUsorb2"], ["https://tec.openplanner.team/stops/N511aja", "https://tec.openplanner.team/stops/N511ajb"], ["https://tec.openplanner.team/stops/LSoprom1", "https://tec.openplanner.team/stops/LwYbrkr1"], ["https://tec.openplanner.team/stops/Lvimc--1", "https://tec.openplanner.team/stops/Lvitour1"], ["https://tec.openplanner.team/stops/LHUcomp1", "https://tec.openplanner.team/stops/LHUlebe0"], ["https://tec.openplanner.team/stops/X661bbb", "https://tec.openplanner.team/stops/X672ala"], ["https://tec.openplanner.team/stops/X940aea", "https://tec.openplanner.team/stops/X942acb"], ["https://tec.openplanner.team/stops/H4we135b", "https://tec.openplanner.team/stops/H4we137d"], ["https://tec.openplanner.team/stops/Bbeardu1", "https://tec.openplanner.team/stops/Bbearwa1"], ["https://tec.openplanner.team/stops/Bsjgegl1", "https://tec.openplanner.team/stops/Bzluegl2"], ["https://tec.openplanner.team/stops/LLxnive2", "https://tec.openplanner.team/stops/LWOwonc1"], ["https://tec.openplanner.team/stops/H1wi148a", "https://tec.openplanner.team/stops/H1wi148b"], ["https://tec.openplanner.team/stops/Bbosdra2", "https://tec.openplanner.team/stops/Btiegoo1"], ["https://tec.openplanner.team/stops/LbUhuge1", "https://tec.openplanner.team/stops/LbUkrei*"], ["https://tec.openplanner.team/stops/Llglema1", "https://tec.openplanner.team/stops/Llglema2"], ["https://tec.openplanner.team/stops/H1ha185a", "https://tec.openplanner.team/stops/H1ha189a"], ["https://tec.openplanner.team/stops/LOUvign1", "https://tec.openplanner.team/stops/Lvitour2"], ["https://tec.openplanner.team/stops/LPobois1", "https://tec.openplanner.team/stops/LTgsous1"], ["https://tec.openplanner.team/stops/X613aba", "https://tec.openplanner.team/stops/X613acb"], ["https://tec.openplanner.team/stops/Lflmaxi1", "https://tec.openplanner.team/stops/Lrecite2"], ["https://tec.openplanner.team/stops/X901baa", "https://tec.openplanner.team/stops/X942afb"], ["https://tec.openplanner.team/stops/H5is170b", "https://tec.openplanner.team/stops/H5la177a"], ["https://tec.openplanner.team/stops/N151aba", "https://tec.openplanner.team/stops/N152aaa"], ["https://tec.openplanner.team/stops/Bhalh312", "https://tec.openplanner.team/stops/Bhalrat1"], ["https://tec.openplanner.team/stops/Brsgepr2", "https://tec.openplanner.team/stops/Brsgges2"], ["https://tec.openplanner.team/stops/H4lu127a", "https://tec.openplanner.team/stops/H4mo142d"], ["https://tec.openplanner.team/stops/N501caa", "https://tec.openplanner.team/stops/N501cba"], ["https://tec.openplanner.team/stops/Cli4bra1", "https://tec.openplanner.team/stops/Cli4bra2"], ["https://tec.openplanner.team/stops/N539aja", "https://tec.openplanner.team/stops/N542aia"], ["https://tec.openplanner.team/stops/LEnvill1", "https://tec.openplanner.team/stops/LEnvill2"], ["https://tec.openplanner.team/stops/N528aua", "https://tec.openplanner.team/stops/N528aub"], ["https://tec.openplanner.team/stops/N542aha", "https://tec.openplanner.team/stops/N542ahb"], ["https://tec.openplanner.team/stops/Cfmgara1", "https://tec.openplanner.team/stops/Cfmwaut2"], ["https://tec.openplanner.team/stops/LbTmuhl1", "https://tec.openplanner.team/stops/LnIschw2"], ["https://tec.openplanner.team/stops/X723ahb", "https://tec.openplanner.team/stops/X775ama"], ["https://tec.openplanner.team/stops/X396aba", "https://tec.openplanner.team/stops/X396ada"], ["https://tec.openplanner.team/stops/H4ir164b", "https://tec.openplanner.team/stops/H4ir167a"], ["https://tec.openplanner.team/stops/N501fsa", "https://tec.openplanner.team/stops/N501fty"], ["https://tec.openplanner.team/stops/N533afb", "https://tec.openplanner.team/stops/N533aia"], ["https://tec.openplanner.team/stops/LDmdomm2", "https://tec.openplanner.team/stops/LDmwaef2"], ["https://tec.openplanner.team/stops/Lhufila2", "https://tec.openplanner.team/stops/Lmnrame1"], ["https://tec.openplanner.team/stops/Bjaugaz1", "https://tec.openplanner.team/stops/Bolphgr2"], ["https://tec.openplanner.team/stops/N550ama", "https://tec.openplanner.team/stops/N550amb"], ["https://tec.openplanner.team/stops/N501jeb", "https://tec.openplanner.team/stops/N501jkb"], ["https://tec.openplanner.team/stops/N513aoa", "https://tec.openplanner.team/stops/N513aob"], ["https://tec.openplanner.team/stops/LwAlont2", "https://tec.openplanner.team/stops/LwAprei1"], ["https://tec.openplanner.team/stops/Bsaumlk1", "https://tec.openplanner.team/stops/Bsaumlk4"], ["https://tec.openplanner.team/stops/N576aka", "https://tec.openplanner.team/stops/N576akc"], ["https://tec.openplanner.team/stops/H4te251b", "https://tec.openplanner.team/stops/H4te413a"], ["https://tec.openplanner.team/stops/LWAalou1", "https://tec.openplanner.team/stops/LWAwila1"], ["https://tec.openplanner.team/stops/X615aha", "https://tec.openplanner.team/stops/X615baa"], ["https://tec.openplanner.team/stops/Bneeblo2", "https://tec.openplanner.team/stops/Bneesjo2"], ["https://tec.openplanner.team/stops/H2le150a", "https://tec.openplanner.team/stops/H2le152b"], ["https://tec.openplanner.team/stops/N534bqa", "https://tec.openplanner.team/stops/N534bqb"], ["https://tec.openplanner.team/stops/X982bca", "https://tec.openplanner.team/stops/X982cbb"], ["https://tec.openplanner.team/stops/H4bw102b", "https://tec.openplanner.team/stops/H4wn131b"], ["https://tec.openplanner.team/stops/N311aec", "https://tec.openplanner.team/stops/N312aba"], ["https://tec.openplanner.team/stops/Bmrl4ch2", "https://tec.openplanner.team/stops/Bmrlnce2"], ["https://tec.openplanner.team/stops/Bsdavpe1", "https://tec.openplanner.team/stops/Csdnive4"], ["https://tec.openplanner.team/stops/N550aaa", "https://tec.openplanner.team/stops/N550anb"], ["https://tec.openplanner.team/stops/X661axb", "https://tec.openplanner.team/stops/X817aca"], ["https://tec.openplanner.team/stops/LXoroch1", "https://tec.openplanner.team/stops/LXoroch2"], ["https://tec.openplanner.team/stops/X657aba", "https://tec.openplanner.team/stops/X657aca"], ["https://tec.openplanner.team/stops/LBIvill2", "https://tec.openplanner.team/stops/LBIvill4"], ["https://tec.openplanner.team/stops/N117bda", "https://tec.openplanner.team/stops/N117bdc"], ["https://tec.openplanner.team/stops/Cfocmed1", "https://tec.openplanner.team/stops/Cfovent2"], ["https://tec.openplanner.team/stops/LHUloui2", "https://tec.openplanner.team/stops/LHUremy2"], ["https://tec.openplanner.team/stops/X902aeb", "https://tec.openplanner.team/stops/X902asa"], ["https://tec.openplanner.team/stops/Cvlcen1", "https://tec.openplanner.team/stops/Cvlpeau1"], ["https://tec.openplanner.team/stops/Cflcent2", "https://tec.openplanner.team/stops/Cflstan3"], ["https://tec.openplanner.team/stops/N540alb", "https://tec.openplanner.team/stops/N540aoa"], ["https://tec.openplanner.team/stops/Bsgimor1", "https://tec.openplanner.team/stops/Bsgipmo2"], ["https://tec.openplanner.team/stops/Bnivsto2", "https://tec.openplanner.team/stops/Bnivzep1"], ["https://tec.openplanner.team/stops/X731akb", "https://tec.openplanner.team/stops/X731ama"], ["https://tec.openplanner.team/stops/X614aca", "https://tec.openplanner.team/stops/X614acb"], ["https://tec.openplanner.team/stops/LCogara1", "https://tec.openplanner.team/stops/LTPsatr1"], ["https://tec.openplanner.team/stops/Bllnpaf2", "https://tec.openplanner.team/stops/Bllnpaf3"], ["https://tec.openplanner.team/stops/Bbryvil1", "https://tec.openplanner.team/stops/Bmarcat1"], ["https://tec.openplanner.team/stops/LMsvill1", "https://tec.openplanner.team/stops/LPbpeti1"], ["https://tec.openplanner.team/stops/H1wg126a", "https://tec.openplanner.team/stops/H1wg127b"], ["https://tec.openplanner.team/stops/LeYmero2", "https://tec.openplanner.team/stops/LkTweih2"], ["https://tec.openplanner.team/stops/LVLf10-2", "https://tec.openplanner.team/stops/LVLgotr1"], ["https://tec.openplanner.team/stops/Cctsncb2", "https://tec.openplanner.team/stops/Cctsncb4"], ["https://tec.openplanner.team/stops/H2ec101a", "https://tec.openplanner.team/stops/H2ec102a"], ["https://tec.openplanner.team/stops/X947abb", "https://tec.openplanner.team/stops/X948ahb"], ["https://tec.openplanner.team/stops/LWalyce1", "https://tec.openplanner.team/stops/LWapl--1"], ["https://tec.openplanner.team/stops/H1ms293a", "https://tec.openplanner.team/stops/H1ms923a"], ["https://tec.openplanner.team/stops/LLgmini1", "https://tec.openplanner.team/stops/LRCviad2"], ["https://tec.openplanner.team/stops/Cmlhotv1", "https://tec.openplanner.team/stops/Cmlvpla1"], ["https://tec.openplanner.team/stops/X824aac", "https://tec.openplanner.team/stops/X825aga"], ["https://tec.openplanner.team/stops/H2go114a", "https://tec.openplanner.team/stops/H2go119b"], ["https://tec.openplanner.team/stops/X734aaa", "https://tec.openplanner.team/stops/X734acb"], ["https://tec.openplanner.team/stops/LHAheml1", "https://tec.openplanner.team/stops/LHAlacr1"], ["https://tec.openplanner.team/stops/N520ada", "https://tec.openplanner.team/stops/N520adb"], ["https://tec.openplanner.team/stops/Clbptno1", "https://tec.openplanner.team/stops/Clbptno3"], ["https://tec.openplanner.team/stops/Lcegeor2", "https://tec.openplanner.team/stops/Lceleje1"], ["https://tec.openplanner.team/stops/Cdacolu2", "https://tec.openplanner.team/stops/Cdasama1"], ["https://tec.openplanner.team/stops/Btubeur1", "https://tec.openplanner.team/stops/Btubnco1"], ["https://tec.openplanner.team/stops/Llggcha4", "https://tec.openplanner.team/stops/Ltibalt2"], ["https://tec.openplanner.team/stops/H4fl115a", "https://tec.openplanner.team/stops/H4my120a"], ["https://tec.openplanner.team/stops/LVIhall2", "https://tec.openplanner.team/stops/LVItroi*"], ["https://tec.openplanner.team/stops/H1ne140b", "https://tec.openplanner.team/stops/H1ne144a"], ["https://tec.openplanner.team/stops/Lsercha1", "https://tec.openplanner.team/stops/Lseruis1"], ["https://tec.openplanner.team/stops/LCShoux2", "https://tec.openplanner.team/stops/LVTtrou1"], ["https://tec.openplanner.team/stops/LESflag1", "https://tec.openplanner.team/stops/LLNeg--1"], ["https://tec.openplanner.team/stops/LSkbo832", "https://tec.openplanner.team/stops/LSkcoin1"], ["https://tec.openplanner.team/stops/N201aib", "https://tec.openplanner.team/stops/N201aka"], ["https://tec.openplanner.team/stops/H4ty302a", "https://tec.openplanner.team/stops/H4ty323a"], ["https://tec.openplanner.team/stops/N501ggb", "https://tec.openplanner.team/stops/N501lqa"], ["https://tec.openplanner.team/stops/LLtrout2", "https://tec.openplanner.team/stops/NL57ahb"], ["https://tec.openplanner.team/stops/H1ba105b", "https://tec.openplanner.team/stops/H1ba112b"], ["https://tec.openplanner.team/stops/N538aga", "https://tec.openplanner.team/stops/N538agb"], ["https://tec.openplanner.team/stops/H1po135a", "https://tec.openplanner.team/stops/H1po135b"], ["https://tec.openplanner.team/stops/H1br128b", "https://tec.openplanner.team/stops/H1br132b"], ["https://tec.openplanner.team/stops/N525aba", "https://tec.openplanner.team/stops/N525aua"], ["https://tec.openplanner.team/stops/X923afb", "https://tec.openplanner.team/stops/X923aga"], ["https://tec.openplanner.team/stops/Landeja1", "https://tec.openplanner.team/stops/Lrcchar2"], ["https://tec.openplanner.team/stops/H4de113a", "https://tec.openplanner.team/stops/H4wt160b"], ["https://tec.openplanner.team/stops/X775aib", "https://tec.openplanner.team/stops/X775aid"], ["https://tec.openplanner.team/stops/X742aga", "https://tec.openplanner.team/stops/X742agb"], ["https://tec.openplanner.team/stops/X818apb", "https://tec.openplanner.team/stops/X818aqa"], ["https://tec.openplanner.team/stops/Cmmjami1", "https://tec.openplanner.team/stops/Cmmjami2"], ["https://tec.openplanner.team/stops/Llgbobu6", "https://tec.openplanner.team/stops/Lsnlibe1"], ["https://tec.openplanner.team/stops/N310ada", "https://tec.openplanner.team/stops/N310adb"], ["https://tec.openplanner.team/stops/LOLbout1", "https://tec.openplanner.team/stops/LOLcroi2"], ["https://tec.openplanner.team/stops/X793agb", "https://tec.openplanner.team/stops/X793ajb"], ["https://tec.openplanner.team/stops/Bolgfon2", "https://tec.openplanner.team/stops/Bolgrga1"], ["https://tec.openplanner.team/stops/N539ava", "https://tec.openplanner.team/stops/N539avb"], ["https://tec.openplanner.team/stops/H2ll196b", "https://tec.openplanner.team/stops/H2ll201a"], ["https://tec.openplanner.team/stops/Barqpla1", "https://tec.openplanner.team/stops/Barqpla2"], ["https://tec.openplanner.team/stops/Llgmako1", "https://tec.openplanner.team/stops/Llgmako2"], ["https://tec.openplanner.team/stops/Cobnive2", "https://tec.openplanner.team/stops/Creshau1"], ["https://tec.openplanner.team/stops/X804afb", "https://tec.openplanner.team/stops/X804ayb"], ["https://tec.openplanner.team/stops/LBhsign1", "https://tec.openplanner.team/stops/LMRmont2"], ["https://tec.openplanner.team/stops/LPLarbo1", "https://tec.openplanner.team/stops/LPLroth2"], ["https://tec.openplanner.team/stops/Bvirrbo1", "https://tec.openplanner.team/stops/Bvirrbo2"], ["https://tec.openplanner.team/stops/LhSfrep2", "https://tec.openplanner.team/stops/LhSgete1"], ["https://tec.openplanner.team/stops/H1an101a", "https://tec.openplanner.team/stops/H1bx104a"], ["https://tec.openplanner.team/stops/N584aba", "https://tec.openplanner.team/stops/N584aqa"], ["https://tec.openplanner.team/stops/N106akb", "https://tec.openplanner.team/stops/N137ajb"], ["https://tec.openplanner.team/stops/LkEl1212", "https://tec.openplanner.team/stops/LkEl3251"], ["https://tec.openplanner.team/stops/H2tz115a", "https://tec.openplanner.team/stops/H2tz117b"], ["https://tec.openplanner.team/stops/H4av105a", "https://tec.openplanner.team/stops/H4av107a"], ["https://tec.openplanner.team/stops/X782aga", "https://tec.openplanner.team/stops/X782aja"], ["https://tec.openplanner.team/stops/X999acc", "https://tec.openplanner.team/stops/X999ada"], ["https://tec.openplanner.team/stops/H1fr123a", "https://tec.openplanner.team/stops/H1fr123b"], ["https://tec.openplanner.team/stops/Ccoacar1", "https://tec.openplanner.team/stops/Ccotemp1"], ["https://tec.openplanner.team/stops/H4mv192a", "https://tec.openplanner.team/stops/H4mv192b"], ["https://tec.openplanner.team/stops/X641apa", "https://tec.openplanner.team/stops/X641aqa"], ["https://tec.openplanner.team/stops/Llglaha1", "https://tec.openplanner.team/stops/Llglys-1"], ["https://tec.openplanner.team/stops/X761ada", "https://tec.openplanner.team/stops/X790agb"], ["https://tec.openplanner.team/stops/N501hob", "https://tec.openplanner.team/stops/N501htb"], ["https://tec.openplanner.team/stops/LOReg--2", "https://tec.openplanner.team/stops/LORlieg1"], ["https://tec.openplanner.team/stops/H1ms251b", "https://tec.openplanner.team/stops/H1ms913a"], ["https://tec.openplanner.team/stops/Cmx3arb2", "https://tec.openplanner.team/stops/Cmx4che1"], ["https://tec.openplanner.team/stops/Llgnaes2", "https://tec.openplanner.team/stops/Llgnani2"], ["https://tec.openplanner.team/stops/N571acb", "https://tec.openplanner.team/stops/N571ada"], ["https://tec.openplanner.team/stops/X657ada", "https://tec.openplanner.team/stops/X742afb"], ["https://tec.openplanner.team/stops/H4ir161a", "https://tec.openplanner.team/stops/H4ir161b"], ["https://tec.openplanner.team/stops/N301aca", "https://tec.openplanner.team/stops/N301acb"], ["https://tec.openplanner.team/stops/X723alb", "https://tec.openplanner.team/stops/X766aga"], ["https://tec.openplanner.team/stops/LBSchpl2", "https://tec.openplanner.team/stops/LBSnouw2"], ["https://tec.openplanner.team/stops/Loucoti1", "https://tec.openplanner.team/stops/Louetan2"], ["https://tec.openplanner.team/stops/H4ty296a", "https://tec.openplanner.team/stops/H4ty351b"], ["https://tec.openplanner.team/stops/N519ama", "https://tec.openplanner.team/stops/N520ajb"], ["https://tec.openplanner.team/stops/LSdencl*", "https://tec.openplanner.team/stops/LSdsa8a1"], ["https://tec.openplanner.team/stops/Bnetrtb1", "https://tec.openplanner.team/stops/Bnetvan1"], ["https://tec.openplanner.team/stops/N581abb", "https://tec.openplanner.team/stops/N581acb"], ["https://tec.openplanner.team/stops/LwAkape1", "https://tec.openplanner.team/stops/LwAprei2"], ["https://tec.openplanner.team/stops/Bwatbno1", "https://tec.openplanner.team/stops/Bwatgib2"], ["https://tec.openplanner.team/stops/H4fa125b", "https://tec.openplanner.team/stops/H4hq133d"], ["https://tec.openplanner.team/stops/Ctucour2", "https://tec.openplanner.team/stops/Ctuyser2"], ["https://tec.openplanner.team/stops/N357aca", "https://tec.openplanner.team/stops/X994ada"], ["https://tec.openplanner.team/stops/H1mm125d", "https://tec.openplanner.team/stops/H1mm128a"], ["https://tec.openplanner.team/stops/X901bja", "https://tec.openplanner.team/stops/X901bta"], ["https://tec.openplanner.team/stops/N121agb", "https://tec.openplanner.team/stops/N121aia"], ["https://tec.openplanner.team/stops/Ccicent2", "https://tec.openplanner.team/stops/Cciecol2"], ["https://tec.openplanner.team/stops/H4mo190a", "https://tec.openplanner.team/stops/H4mo192a"], ["https://tec.openplanner.team/stops/Brsg7fo1", "https://tec.openplanner.team/stops/Brsg7fo2"], ["https://tec.openplanner.team/stops/X750aaa", "https://tec.openplanner.team/stops/X780ahb"], ["https://tec.openplanner.team/stops/H2gy101b", "https://tec.openplanner.team/stops/H2gy106a"], ["https://tec.openplanner.team/stops/N137aja", "https://tec.openplanner.team/stops/N137ajb"], ["https://tec.openplanner.team/stops/H4ty264a", "https://tec.openplanner.team/stops/H4ty264b"], ["https://tec.openplanner.team/stops/LaMschw2", "https://tec.openplanner.team/stops/LmYeich1"], ["https://tec.openplanner.team/stops/X919aca", "https://tec.openplanner.team/stops/X921akb"], ["https://tec.openplanner.team/stops/H3so159b", "https://tec.openplanner.team/stops/H3so163b"], ["https://tec.openplanner.team/stops/H3lr112b", "https://tec.openplanner.team/stops/H3lr120a"], ["https://tec.openplanner.team/stops/H2fa101b", "https://tec.openplanner.team/stops/H2fa112b"], ["https://tec.openplanner.team/stops/X670akb", "https://tec.openplanner.team/stops/X670amb"], ["https://tec.openplanner.team/stops/Lgdhura2", "https://tec.openplanner.team/stops/Lprfoot1"], ["https://tec.openplanner.team/stops/LAUjean1", "https://tec.openplanner.team/stops/LAUpind2"], ["https://tec.openplanner.team/stops/LOmlime2", "https://tec.openplanner.team/stops/LOmvill4"], ["https://tec.openplanner.team/stops/Cmaleri1", "https://tec.openplanner.team/stops/Cmmptno1"], ["https://tec.openplanner.team/stops/N552aaa", "https://tec.openplanner.team/stops/N577aaa"], ["https://tec.openplanner.team/stops/N308bca", "https://tec.openplanner.team/stops/N385aca"], ["https://tec.openplanner.team/stops/Lmopave1", "https://tec.openplanner.team/stops/Lsnferr2"], ["https://tec.openplanner.team/stops/Cmqchap2", "https://tec.openplanner.team/stops/N141aaa"], ["https://tec.openplanner.team/stops/Lveecol1", "https://tec.openplanner.team/stops/Lvepala7"], ["https://tec.openplanner.team/stops/LMOelva1", "https://tec.openplanner.team/stops/LMOelva4"], ["https://tec.openplanner.team/stops/H4ca121b", "https://tec.openplanner.team/stops/H4ca122b"], ["https://tec.openplanner.team/stops/X897aub", "https://tec.openplanner.team/stops/X897avb"], ["https://tec.openplanner.team/stops/X768ala", "https://tec.openplanner.team/stops/X768ald"], ["https://tec.openplanner.team/stops/X882ama", "https://tec.openplanner.team/stops/X882amc"], ["https://tec.openplanner.team/stops/X659aba", "https://tec.openplanner.team/stops/X659baa"], ["https://tec.openplanner.team/stops/X604aib", "https://tec.openplanner.team/stops/X604aka"], ["https://tec.openplanner.team/stops/LBNvill1", "https://tec.openplanner.team/stops/LBNvill3"], ["https://tec.openplanner.team/stops/Ctachst2", "https://tec.openplanner.team/stops/N543cja"], ["https://tec.openplanner.team/stops/N536adb", "https://tec.openplanner.team/stops/N536apb"], ["https://tec.openplanner.team/stops/N528alb", "https://tec.openplanner.team/stops/N551acb"], ["https://tec.openplanner.team/stops/Crcegli1", "https://tec.openplanner.team/stops/Crcpcom2"], ["https://tec.openplanner.team/stops/Bjodgai1", "https://tec.openplanner.team/stops/Bmlngvi2"], ["https://tec.openplanner.team/stops/X633agc", "https://tec.openplanner.team/stops/X653adb"], ["https://tec.openplanner.team/stops/LAMceri2", "https://tec.openplanner.team/stops/LAMcloc2"], ["https://tec.openplanner.team/stops/LFLcher2", "https://tec.openplanner.team/stops/LFLetoi1"], ["https://tec.openplanner.team/stops/LYechpl2", "https://tec.openplanner.team/stops/LYegeor1"], ["https://tec.openplanner.team/stops/LHUdeni4", "https://tec.openplanner.team/stops/LHUloui2"], ["https://tec.openplanner.team/stops/Lromc--1", "https://tec.openplanner.team/stops/Lromerl2"], ["https://tec.openplanner.team/stops/H1fl135a", "https://tec.openplanner.team/stops/H1fl135b"], ["https://tec.openplanner.team/stops/X672acb", "https://tec.openplanner.team/stops/X672ala"], ["https://tec.openplanner.team/stops/Ljuroch1", "https://tec.openplanner.team/stops/Ljuroch2"], ["https://tec.openplanner.team/stops/N111aab", "https://tec.openplanner.team/stops/N127bfa"], ["https://tec.openplanner.team/stops/Blthbss1", "https://tec.openplanner.team/stops/Bmlnsms1"], ["https://tec.openplanner.team/stops/H4mb141a", "https://tec.openplanner.team/stops/H4qu230c"], ["https://tec.openplanner.team/stops/LLycent*", "https://tec.openplanner.team/stops/LMTfagn1"], ["https://tec.openplanner.team/stops/LMsec--2", "https://tec.openplanner.team/stops/LMsvill2"], ["https://tec.openplanner.team/stops/LnIschw1", "https://tec.openplanner.team/stops/LwYbruc1"], ["https://tec.openplanner.team/stops/X614axa", "https://tec.openplanner.team/stops/X614axb"], ["https://tec.openplanner.team/stops/Bplncba2", "https://tec.openplanner.team/stops/Bplncsd1"], ["https://tec.openplanner.team/stops/X394aga", "https://tec.openplanner.team/stops/X919ama"], ["https://tec.openplanner.team/stops/X926ada", "https://tec.openplanner.team/stops/X945aca"], ["https://tec.openplanner.team/stops/LFypfei2", "https://tec.openplanner.team/stops/LwYsarl1"], ["https://tec.openplanner.team/stops/Cfobriq2", "https://tec.openplanner.team/stops/Cfohopi2"], ["https://tec.openplanner.team/stops/X740abd", "https://tec.openplanner.team/stops/X985acb"], ["https://tec.openplanner.team/stops/N150afa", "https://tec.openplanner.team/stops/N150afb"], ["https://tec.openplanner.team/stops/N551ana", "https://tec.openplanner.team/stops/N551apb"], ["https://tec.openplanner.team/stops/N548acd", "https://tec.openplanner.team/stops/N548aib"], ["https://tec.openplanner.team/stops/LLirout1", "https://tec.openplanner.team/stops/LListie1"], ["https://tec.openplanner.team/stops/LFMstat1", "https://tec.openplanner.team/stops/LFMvoge*"], ["https://tec.openplanner.team/stops/LEN42--1", "https://tec.openplanner.team/stops/LENsent1"], ["https://tec.openplanner.team/stops/N524aba", "https://tec.openplanner.team/stops/N525aob"], ["https://tec.openplanner.team/stops/N241agb", "https://tec.openplanner.team/stops/N270aba"], ["https://tec.openplanner.team/stops/LSoboul2", "https://tec.openplanner.team/stops/LSomonu2"], ["https://tec.openplanner.team/stops/Lprmc--1", "https://tec.openplanner.team/stops/Lprmc--3"], ["https://tec.openplanner.team/stops/X886aea", "https://tec.openplanner.team/stops/X886aeb"], ["https://tec.openplanner.team/stops/H1vb142b", "https://tec.openplanner.team/stops/H1vb147b"], ["https://tec.openplanner.team/stops/Cglfrom2", "https://tec.openplanner.team/stops/Cgnpass2"], ["https://tec.openplanner.team/stops/Cmtmath2", "https://tec.openplanner.team/stops/Cmtstth2"], ["https://tec.openplanner.team/stops/X870aeb", "https://tec.openplanner.team/stops/X870agb"], ["https://tec.openplanner.team/stops/H2ch108a", "https://tec.openplanner.team/stops/H2ch112b"], ["https://tec.openplanner.team/stops/X857aab", "https://tec.openplanner.team/stops/X857abb"], ["https://tec.openplanner.team/stops/LKmmelo2", "https://tec.openplanner.team/stops/LVlledo2"], ["https://tec.openplanner.team/stops/H1do126a", "https://tec.openplanner.team/stops/H1do130a"], ["https://tec.openplanner.team/stops/H4ma417a", "https://tec.openplanner.team/stops/H4ma417b"], ["https://tec.openplanner.team/stops/LgRha212", "https://tec.openplanner.team/stops/LgRhouf2"], ["https://tec.openplanner.team/stops/LArchap1", "https://tec.openplanner.team/stops/X548afb"], ["https://tec.openplanner.team/stops/LSMchat1", "https://tec.openplanner.team/stops/LSMcles1"], ["https://tec.openplanner.team/stops/LBNburg1", "https://tec.openplanner.team/stops/LMebove1"], ["https://tec.openplanner.team/stops/H4do100b", "https://tec.openplanner.team/stops/H4do202b"], ["https://tec.openplanner.team/stops/H4lz124a", "https://tec.openplanner.team/stops/H4wp152b"], ["https://tec.openplanner.team/stops/Bvirhsa1", "https://tec.openplanner.team/stops/Bvirhsa2"], ["https://tec.openplanner.team/stops/LhGbahn*", "https://tec.openplanner.team/stops/LhGbahn4"], ["https://tec.openplanner.team/stops/LNChock1", "https://tec.openplanner.team/stops/LRachen2"], ["https://tec.openplanner.team/stops/LFOchpl1", "https://tec.openplanner.team/stops/LFOmc--2"], ["https://tec.openplanner.team/stops/LPbhaut1", "https://tec.openplanner.team/stops/LPbover1"], ["https://tec.openplanner.team/stops/H1hh110a", "https://tec.openplanner.team/stops/H1hh110b"], ["https://tec.openplanner.team/stops/X630aab", "https://tec.openplanner.team/stops/X644aea"], ["https://tec.openplanner.team/stops/N580aca", "https://tec.openplanner.team/stops/N580acb"], ["https://tec.openplanner.team/stops/NL78adb", "https://tec.openplanner.team/stops/NL79aab"], ["https://tec.openplanner.team/stops/X623ada", "https://tec.openplanner.team/stops/X624amb"], ["https://tec.openplanner.team/stops/Ljhjeha*", "https://tec.openplanner.team/stops/Ljhsart2"], ["https://tec.openplanner.team/stops/H1sp353a", "https://tec.openplanner.team/stops/H1sp354b"], ["https://tec.openplanner.team/stops/H5wo122a", "https://tec.openplanner.team/stops/H5wo126a"], ["https://tec.openplanner.team/stops/H4rm113a", "https://tec.openplanner.team/stops/H4rm113b"], ["https://tec.openplanner.team/stops/Balswwe2", "https://tec.openplanner.team/stops/Brsg7fo2"], ["https://tec.openplanner.team/stops/LBivi--1", "https://tec.openplanner.team/stops/LWEwilc1"], ["https://tec.openplanner.team/stops/X314aab", "https://tec.openplanner.team/stops/X317aba"], ["https://tec.openplanner.team/stops/N337afb", "https://tec.openplanner.team/stops/N339acb"], ["https://tec.openplanner.team/stops/H4va232a", "https://tec.openplanner.team/stops/H4va232b"], ["https://tec.openplanner.team/stops/LvAschr1", "https://tec.openplanner.team/stops/LvAschr2"], ["https://tec.openplanner.team/stops/X897aab", "https://tec.openplanner.team/stops/X897aob"], ["https://tec.openplanner.team/stops/Bitrcen1", "https://tec.openplanner.team/stops/Bitrhou1"], ["https://tec.openplanner.team/stops/LGemari2", "https://tec.openplanner.team/stops/LVkinst1"], ["https://tec.openplanner.team/stops/Bmonbor2", "https://tec.openplanner.team/stops/Bmoncab1"], ["https://tec.openplanner.team/stops/LOMdTEC2", "https://tec.openplanner.team/stops/LOMware1"], ["https://tec.openplanner.team/stops/X601alb", "https://tec.openplanner.team/stops/X601cta"], ["https://tec.openplanner.team/stops/X869aea", "https://tec.openplanner.team/stops/X869afa"], ["https://tec.openplanner.team/stops/H4bf106b", "https://tec.openplanner.team/stops/H4by119b"], ["https://tec.openplanner.team/stops/H1me115b", "https://tec.openplanner.team/stops/H1so132a"], ["https://tec.openplanner.team/stops/LHUaron2", "https://tec.openplanner.team/stops/LHUgdpl1"], ["https://tec.openplanner.team/stops/X839abc", "https://tec.openplanner.team/stops/X839adb"], ["https://tec.openplanner.team/stops/Llgbene1", "https://tec.openplanner.team/stops/Llgpitt1"], ["https://tec.openplanner.team/stops/Bsomjon2", "https://tec.openplanner.team/stops/N584abb"], ["https://tec.openplanner.team/stops/Blpgcmo1", "https://tec.openplanner.team/stops/Cgnpass1"], ["https://tec.openplanner.team/stops/N230aib", "https://tec.openplanner.team/stops/N231abb"], ["https://tec.openplanner.team/stops/Bcrbmsg1", "https://tec.openplanner.team/stops/Bmsggra3"], ["https://tec.openplanner.team/stops/Lseprog2", "https://tec.openplanner.team/stops/Lsevill1"], ["https://tec.openplanner.team/stops/LNEolne1", "https://tec.openplanner.team/stops/LNEolne2"], ["https://tec.openplanner.team/stops/Bixlaca2", "https://tec.openplanner.team/stops/Buccchu2"], ["https://tec.openplanner.team/stops/H4wi168b", "https://tec.openplanner.team/stops/H4wi169a"], ["https://tec.openplanner.team/stops/LmD163-1", "https://tec.openplanner.team/stops/LmYwall1"], ["https://tec.openplanner.team/stops/LCvneuf1", "https://tec.openplanner.team/stops/LTBeg--1"], ["https://tec.openplanner.team/stops/H1vt193b", "https://tec.openplanner.team/stops/H1vt196a"], ["https://tec.openplanner.team/stops/Lcehipp2", "https://tec.openplanner.team/stops/Lvc4bra1"], ["https://tec.openplanner.team/stops/Bneesan2", "https://tec.openplanner.team/stops/Bneesjo1"], ["https://tec.openplanner.team/stops/N232bha", "https://tec.openplanner.team/stops/N232cbb"], ["https://tec.openplanner.team/stops/Lvefabr2", "https://tec.openplanner.team/stops/Lvehodi1"], ["https://tec.openplanner.team/stops/H1wa132a", "https://tec.openplanner.team/stops/H1wa160b"], ["https://tec.openplanner.team/stops/H1bo108c", "https://tec.openplanner.team/stops/H1bo112b"], ["https://tec.openplanner.team/stops/X640ala", "https://tec.openplanner.team/stops/X640apb"], ["https://tec.openplanner.team/stops/Bblamsj1", "https://tec.openplanner.team/stops/Bblamsj3"], ["https://tec.openplanner.team/stops/LWidepo2", "https://tec.openplanner.team/stops/LWieg--*"], ["https://tec.openplanner.team/stops/LGecite1", "https://tec.openplanner.team/stops/LGecite2"], ["https://tec.openplanner.team/stops/Cciqueu1", "https://tec.openplanner.team/stops/Cmlavch1"], ["https://tec.openplanner.team/stops/LOdcris1", "https://tec.openplanner.team/stops/LRUhama2"], ["https://tec.openplanner.team/stops/N501dvb", "https://tec.openplanner.team/stops/N501ega"], ["https://tec.openplanner.team/stops/Cbmpopr2", "https://tec.openplanner.team/stops/Csschat1"], ["https://tec.openplanner.team/stops/H4le128a", "https://tec.openplanner.team/stops/H4le128b"], ["https://tec.openplanner.team/stops/H1ms257b", "https://tec.openplanner.team/stops/H1ms272a"], ["https://tec.openplanner.team/stops/Cjxetri1", "https://tec.openplanner.team/stops/Cmyboci1"], ["https://tec.openplanner.team/stops/X639aoc", "https://tec.openplanner.team/stops/X639ata"], ["https://tec.openplanner.team/stops/Cciarfr1", "https://tec.openplanner.team/stops/Cciarfr2"], ["https://tec.openplanner.team/stops/H1sb148a", "https://tec.openplanner.team/stops/H1sb150a"], ["https://tec.openplanner.team/stops/N506ama", "https://tec.openplanner.team/stops/N558aab"], ["https://tec.openplanner.team/stops/Bovecha1", "https://tec.openplanner.team/stops/Bwavlav2"], ["https://tec.openplanner.team/stops/H2sb225a", "https://tec.openplanner.team/stops/H3th134a"], ["https://tec.openplanner.team/stops/LJSec--2", "https://tec.openplanner.team/stops/LJSeg--2"], ["https://tec.openplanner.team/stops/LeLbutg3", "https://tec.openplanner.team/stops/LnIfrie2"], ["https://tec.openplanner.team/stops/X719ada", "https://tec.openplanner.team/stops/X719afb"], ["https://tec.openplanner.team/stops/Bdvmc031", "https://tec.openplanner.team/stops/Bwavlon1"], ["https://tec.openplanner.team/stops/Bhalath1", "https://tec.openplanner.team/stops/Bucccre1"], ["https://tec.openplanner.team/stops/Bnivall1", "https://tec.openplanner.team/stops/Bnivfra2"], ["https://tec.openplanner.team/stops/Cfaauln2", "https://tec.openplanner.team/stops/Cfawain4"], ["https://tec.openplanner.team/stops/LERboss2", "https://tec.openplanner.team/stops/LERpouh2"], ["https://tec.openplanner.team/stops/LBGcent2", "https://tec.openplanner.team/stops/LHDpota1"], ["https://tec.openplanner.team/stops/N585aib", "https://tec.openplanner.team/stops/N585ajb"], ["https://tec.openplanner.team/stops/LFdeg--3", "https://tec.openplanner.team/stops/LFdeg--4"], ["https://tec.openplanner.team/stops/Bgoekaz1", "https://tec.openplanner.team/stops/Bgoemgr1"], ["https://tec.openplanner.team/stops/Llgcime1", "https://tec.openplanner.team/stops/Lvtpepi2"], ["https://tec.openplanner.team/stops/Bnivcom1", "https://tec.openplanner.team/stops/Bnivpgr1"], ["https://tec.openplanner.team/stops/Bnivasa1", "https://tec.openplanner.team/stops/Bnivh%C3%B4p2"], ["https://tec.openplanner.team/stops/LeYheid1", "https://tec.openplanner.team/stops/LeYheid2"], ["https://tec.openplanner.team/stops/H1eu104b", "https://tec.openplanner.team/stops/H1sb149b"], ["https://tec.openplanner.team/stops/Bmoucoq1", "https://tec.openplanner.team/stops/Bmoucoq2"], ["https://tec.openplanner.team/stops/H5at104b", "https://tec.openplanner.team/stops/H5at112a"], ["https://tec.openplanner.team/stops/LENalun1", "https://tec.openplanner.team/stops/LENalun2"], ["https://tec.openplanner.team/stops/N118axa", "https://tec.openplanner.team/stops/N118axb"], ["https://tec.openplanner.team/stops/Cmmmarb1", "https://tec.openplanner.team/stops/Cmmmarb2"], ["https://tec.openplanner.team/stops/NL37aaa", "https://tec.openplanner.team/stops/NL37aab"], ["https://tec.openplanner.team/stops/N501nba", "https://tec.openplanner.team/stops/N501nbb"], ["https://tec.openplanner.team/stops/Bnivbpe2", "https://tec.openplanner.team/stops/Bnivsto1"], ["https://tec.openplanner.team/stops/N543aib", "https://tec.openplanner.team/stops/N543cla"], ["https://tec.openplanner.team/stops/LJAchat2", "https://tec.openplanner.team/stops/LJAmari1"], ["https://tec.openplanner.team/stops/Bgemcro2", "https://tec.openplanner.team/stops/Bgemgcw1"], ["https://tec.openplanner.team/stops/Llghoch2", "https://tec.openplanner.team/stops/Llghoch3"], ["https://tec.openplanner.team/stops/Bchgbel2", "https://tec.openplanner.team/stops/Bchgpap1"], ["https://tec.openplanner.team/stops/Cbflong1", "https://tec.openplanner.team/stops/Cbflong2"], ["https://tec.openplanner.team/stops/Ccinali1", "https://tec.openplanner.team/stops/Ccinali2"], ["https://tec.openplanner.team/stops/Lhrbass1", "https://tec.openplanner.team/stops/Lhrbass2"], ["https://tec.openplanner.team/stops/Btubdeh1", "https://tec.openplanner.team/stops/Btubdeh2"], ["https://tec.openplanner.team/stops/X314aaa", "https://tec.openplanner.team/stops/X359agb"], ["https://tec.openplanner.team/stops/N502aca", "https://tec.openplanner.team/stops/N503aab"], ["https://tec.openplanner.team/stops/LSEcent2", "https://tec.openplanner.team/stops/LSEvill2"], ["https://tec.openplanner.team/stops/NL76ahb", "https://tec.openplanner.team/stops/NL77aba"], ["https://tec.openplanner.team/stops/Bsaucre1", "https://tec.openplanner.team/stops/Bsaucre2"], ["https://tec.openplanner.team/stops/LSChane2", "https://tec.openplanner.team/stops/LVMborl1"], ["https://tec.openplanner.team/stops/N243aab", "https://tec.openplanner.team/stops/N252aaa"], ["https://tec.openplanner.team/stops/N141aib", "https://tec.openplanner.team/stops/N141anb"], ["https://tec.openplanner.team/stops/LTestat1", "https://tec.openplanner.team/stops/NL35adc"], ["https://tec.openplanner.team/stops/H3so160a", "https://tec.openplanner.team/stops/H3so162b"], ["https://tec.openplanner.team/stops/Cbfplch2", "https://tec.openplanner.team/stops/Cctlimi2"], ["https://tec.openplanner.team/stops/X740abd", "https://tec.openplanner.team/stops/X759aaa"], ["https://tec.openplanner.team/stops/Lvtlomb1", "https://tec.openplanner.team/stops/Lvtlomb4"], ["https://tec.openplanner.team/stops/Lvtcalv2", "https://tec.openplanner.team/stops/Lvtegli*"], ["https://tec.openplanner.team/stops/LSGcolo1", "https://tec.openplanner.team/stops/LSGfoua2"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N313aab"], ["https://tec.openplanner.team/stops/LSkb1351", "https://tec.openplanner.team/stops/LSkkeri2"], ["https://tec.openplanner.team/stops/H4ch114a", "https://tec.openplanner.team/stops/H4ch117a"], ["https://tec.openplanner.team/stops/X658aca", "https://tec.openplanner.team/stops/X658acb"], ["https://tec.openplanner.team/stops/Bhmmcim2", "https://tec.openplanner.team/stops/Bhmmvdu2"], ["https://tec.openplanner.team/stops/NL74aaa", "https://tec.openplanner.team/stops/NL75aca"], ["https://tec.openplanner.team/stops/X370acb", "https://tec.openplanner.team/stops/X850akb"], ["https://tec.openplanner.team/stops/H4ty267a", "https://tec.openplanner.team/stops/H4ty285c"], ["https://tec.openplanner.team/stops/Brixbai1", "https://tec.openplanner.team/stops/Brixwav1"], ["https://tec.openplanner.team/stops/Llochar1", "https://tec.openplanner.team/stops/Llochar5"], ["https://tec.openplanner.team/stops/LLUtill1", "https://tec.openplanner.team/stops/LLUvent4"], ["https://tec.openplanner.team/stops/N232bcb", "https://tec.openplanner.team/stops/N232bda"], ["https://tec.openplanner.team/stops/Cfmgara1", "https://tec.openplanner.team/stops/Ctrpn2"], ["https://tec.openplanner.team/stops/N515ajb", "https://tec.openplanner.team/stops/N515ata"], ["https://tec.openplanner.team/stops/H5wo126a", "https://tec.openplanner.team/stops/H5wo133b"], ["https://tec.openplanner.team/stops/N131aga", "https://tec.openplanner.team/stops/N423agb"], ["https://tec.openplanner.team/stops/N135ala", "https://tec.openplanner.team/stops/N135aqb"], ["https://tec.openplanner.team/stops/LAMdelh3", "https://tec.openplanner.team/stops/LAMusin2"], ["https://tec.openplanner.team/stops/H4eg102b", "https://tec.openplanner.team/stops/H4eg104b"], ["https://tec.openplanner.team/stops/X767aba", "https://tec.openplanner.team/stops/X769ata"], ["https://tec.openplanner.team/stops/H4tu171a", "https://tec.openplanner.team/stops/H4wp148a"], ["https://tec.openplanner.team/stops/H4au143a", "https://tec.openplanner.team/stops/H4og207a"], ["https://tec.openplanner.team/stops/Cbugara1", "https://tec.openplanner.team/stops/Cfnsenz1"], ["https://tec.openplanner.team/stops/X837aea", "https://tec.openplanner.team/stops/X837aec"], ["https://tec.openplanner.team/stops/Lthfren2", "https://tec.openplanner.team/stops/LWaatel1"], ["https://tec.openplanner.team/stops/X822aha", "https://tec.openplanner.team/stops/X822arb"], ["https://tec.openplanner.team/stops/LHCkoul1", "https://tec.openplanner.team/stops/LHCkoul2"], ["https://tec.openplanner.team/stops/H2fa104a", "https://tec.openplanner.team/stops/H2fa109a"], ["https://tec.openplanner.team/stops/LBvnico1", "https://tec.openplanner.team/stops/LPUlecl1"], ["https://tec.openplanner.team/stops/N542aga", "https://tec.openplanner.team/stops/N542aha"], ["https://tec.openplanner.team/stops/X661ala", "https://tec.openplanner.team/stops/X661axb"], ["https://tec.openplanner.team/stops/Cmcceta1", "https://tec.openplanner.team/stops/Cmivert2"], ["https://tec.openplanner.team/stops/H1ju120a", "https://tec.openplanner.team/stops/H1ju120d"], ["https://tec.openplanner.team/stops/Bbcogar1", "https://tec.openplanner.team/stops/Bbcoser1"], ["https://tec.openplanner.team/stops/LCtcref1", "https://tec.openplanner.team/stops/X783adb"], ["https://tec.openplanner.team/stops/N513ana", "https://tec.openplanner.team/stops/N513aoa"], ["https://tec.openplanner.team/stops/Lsecast2", "https://tec.openplanner.team/stops/Lsehaut1"], ["https://tec.openplanner.team/stops/H4ft138a", "https://tec.openplanner.team/stops/H4wu375b"], ["https://tec.openplanner.team/stops/X901aca", "https://tec.openplanner.team/stops/X901bka"], ["https://tec.openplanner.team/stops/LWAipes2", "https://tec.openplanner.team/stops/LWAloui2"], ["https://tec.openplanner.team/stops/LVIeg--1", "https://tec.openplanner.team/stops/LVIsouv1"], ["https://tec.openplanner.team/stops/X604aea", "https://tec.openplanner.team/stops/X604amb"], ["https://tec.openplanner.team/stops/LBNlong1", "https://tec.openplanner.team/stops/LBNvill6"], ["https://tec.openplanner.team/stops/LNCesne2", "https://tec.openplanner.team/stops/LNCtour1"], ["https://tec.openplanner.team/stops/X908ada", "https://tec.openplanner.team/stops/X908adb"], ["https://tec.openplanner.team/stops/Cmachau2", "https://tec.openplanner.team/stops/Cmastch4"], ["https://tec.openplanner.team/stops/Llgbrab1", "https://tec.openplanner.team/stops/Llgbrab2"], ["https://tec.openplanner.team/stops/LeUcroi1", "https://tec.openplanner.team/stops/LHthest2"], ["https://tec.openplanner.team/stops/H1ch132b", "https://tec.openplanner.team/stops/H5ma186a"], ["https://tec.openplanner.team/stops/Cvsegli1", "https://tec.openplanner.team/stops/Cvstouv2"], ["https://tec.openplanner.team/stops/Lsn184-1", "https://tec.openplanner.team/stops/Lsn184-2"], ["https://tec.openplanner.team/stops/LLrhest1", "https://tec.openplanner.team/stops/LTHturo3"], ["https://tec.openplanner.team/stops/H1ms267b", "https://tec.openplanner.team/stops/H1ms299a"], ["https://tec.openplanner.team/stops/Ccucroi2", "https://tec.openplanner.team/stops/Cculpre2"], ["https://tec.openplanner.team/stops/N231abb", "https://tec.openplanner.team/stops/N231adb"], ["https://tec.openplanner.team/stops/LROcham2", "https://tec.openplanner.team/stops/LROhael1"], ["https://tec.openplanner.team/stops/Bjodint1", "https://tec.openplanner.team/stops/Bjodtpo2"], ["https://tec.openplanner.team/stops/Chhclde1", "https://tec.openplanner.team/stops/Cna6che1"], ["https://tec.openplanner.team/stops/N385aea", "https://tec.openplanner.team/stops/N385aec"], ["https://tec.openplanner.team/stops/Ladgron1", "https://tec.openplanner.team/stops/LHCprog1"], ["https://tec.openplanner.team/stops/H1gn149a", "https://tec.openplanner.team/stops/H1gn149b"], ["https://tec.openplanner.team/stops/H4mx119a", "https://tec.openplanner.team/stops/H4ve132b"], ["https://tec.openplanner.team/stops/X871aaa", "https://tec.openplanner.team/stops/X876adb"], ["https://tec.openplanner.team/stops/N141aca", "https://tec.openplanner.team/stops/N141acb"], ["https://tec.openplanner.team/stops/Llgbaya4", "https://tec.openplanner.team/stops/Llgpbay2"], ["https://tec.openplanner.team/stops/LFArela2", "https://tec.openplanner.team/stops/LFArela6"], ["https://tec.openplanner.team/stops/Ladlimi1", "https://tec.openplanner.team/stops/Ldipiss1"], ["https://tec.openplanner.team/stops/Lcegeor2", "https://tec.openplanner.team/stops/Lvcbalt1"], ["https://tec.openplanner.team/stops/X661aca", "https://tec.openplanner.team/stops/X661acb"], ["https://tec.openplanner.team/stops/LNveg--1", "https://tec.openplanner.team/stops/LNvrout1"], ["https://tec.openplanner.team/stops/NR30aaa", "https://tec.openplanner.team/stops/NR30aab"], ["https://tec.openplanner.team/stops/LLrbuis1", "https://tec.openplanner.team/stops/LLrbuis2"], ["https://tec.openplanner.team/stops/H1by102b", "https://tec.openplanner.team/stops/H1by103a"], ["https://tec.openplanner.team/stops/LOVhetr1", "https://tec.openplanner.team/stops/LOVhetr2"], ["https://tec.openplanner.team/stops/Lstchu-4", "https://tec.openplanner.team/stops/Lsteduc2"], ["https://tec.openplanner.team/stops/LESgare1", "https://tec.openplanner.team/stops/LESmc--1"], ["https://tec.openplanner.team/stops/NR21acb", "https://tec.openplanner.team/stops/NR21aga"], ["https://tec.openplanner.team/stops/Bsmgmar2", "https://tec.openplanner.team/stops/Bsmgmou1"], ["https://tec.openplanner.team/stops/Chpceri1", "https://tec.openplanner.team/stops/Chpplac1"], ["https://tec.openplanner.team/stops/N501chf", "https://tec.openplanner.team/stops/N501jma"], ["https://tec.openplanner.team/stops/N337aea", "https://tec.openplanner.team/stops/N385aed"], ["https://tec.openplanner.team/stops/LPleclu2", "https://tec.openplanner.team/stops/LPlpomp2"], ["https://tec.openplanner.team/stops/Caiecol1", "https://tec.openplanner.team/stops/Caioign4"], ["https://tec.openplanner.team/stops/Lmlec--1", "https://tec.openplanner.team/stops/Lmlhaut2"], ["https://tec.openplanner.team/stops/X788abd", "https://tec.openplanner.team/stops/X788abe"], ["https://tec.openplanner.team/stops/NL68acb", "https://tec.openplanner.team/stops/NL68agb"], ["https://tec.openplanner.team/stops/Cgzcver1", "https://tec.openplanner.team/stops/Cmyecur1"], ["https://tec.openplanner.team/stops/Llgdoth2", "https://tec.openplanner.team/stops/Llgparc1"], ["https://tec.openplanner.team/stops/X636aqb", "https://tec.openplanner.team/stops/X636bjb"], ["https://tec.openplanner.team/stops/LmNkess1", "https://tec.openplanner.team/stops/LmNkrew2"], ["https://tec.openplanner.team/stops/H4eg104b", "https://tec.openplanner.team/stops/H4ne136b"], ["https://tec.openplanner.team/stops/X713alb", "https://tec.openplanner.team/stops/X714aaa"], ["https://tec.openplanner.team/stops/H4ml208a", "https://tec.openplanner.team/stops/H4ml209a"], ["https://tec.openplanner.team/stops/N161abd", "https://tec.openplanner.team/stops/N161afb"], ["https://tec.openplanner.team/stops/Lrchero2", "https://tec.openplanner.team/stops/Lrcpaqu2"], ["https://tec.openplanner.team/stops/Lroboeg1", "https://tec.openplanner.team/stops/Lrosaun1"], ["https://tec.openplanner.team/stops/H3th129a", "https://tec.openplanner.team/stops/H3th129b"], ["https://tec.openplanner.team/stops/N211adb", "https://tec.openplanner.team/stops/N211afa"], ["https://tec.openplanner.team/stops/H5ar100a", "https://tec.openplanner.team/stops/H5me105a"], ["https://tec.openplanner.team/stops/LHAbont1", "https://tec.openplanner.team/stops/LHAvall1"], ["https://tec.openplanner.team/stops/X801bdb", "https://tec.openplanner.team/stops/X801bde"], ["https://tec.openplanner.team/stops/LFsbasc2", "https://tec.openplanner.team/stops/LFsgend2"], ["https://tec.openplanner.team/stops/Lmnfawe2", "https://tec.openplanner.team/stops/Lmnjeha2"], ["https://tec.openplanner.team/stops/X782aab", "https://tec.openplanner.team/stops/X782apb"], ["https://tec.openplanner.team/stops/Bmarcat2", "https://tec.openplanner.team/stops/Bmarchn2"], ["https://tec.openplanner.team/stops/LAugara1", "https://tec.openplanner.team/stops/LAuvici1"], ["https://tec.openplanner.team/stops/Cchbrou2", "https://tec.openplanner.team/stops/Cchwate1"], ["https://tec.openplanner.team/stops/Cracave2", "https://tec.openplanner.team/stops/Cradado2"], ["https://tec.openplanner.team/stops/Bcbqa361", "https://tec.openplanner.team/stops/Bcbqrog1"], ["https://tec.openplanner.team/stops/X608aka", "https://tec.openplanner.team/stops/X608awa"], ["https://tec.openplanner.team/stops/LSRbouh1", "https://tec.openplanner.team/stops/LSRbouh2"], ["https://tec.openplanner.team/stops/H4ff115a", "https://tec.openplanner.team/stops/H4pp123b"], ["https://tec.openplanner.team/stops/N510abb", "https://tec.openplanner.team/stops/N513acb"], ["https://tec.openplanner.team/stops/X824adb", "https://tec.openplanner.team/stops/X824ala"], ["https://tec.openplanner.team/stops/X752aca", "https://tec.openplanner.team/stops/X757acb"], ["https://tec.openplanner.team/stops/X986aja", "https://tec.openplanner.team/stops/X986amb"], ["https://tec.openplanner.team/stops/Brebpca2", "https://tec.openplanner.team/stops/Bstesar1"], ["https://tec.openplanner.team/stops/N103aea", "https://tec.openplanner.team/stops/N103aga"], ["https://tec.openplanner.team/stops/X902aab", "https://tec.openplanner.team/stops/X902afd"], ["https://tec.openplanner.team/stops/N158aaa", "https://tec.openplanner.team/stops/N168aab"], ["https://tec.openplanner.team/stops/Btubga04", "https://tec.openplanner.team/stops/Btubpla1"], ["https://tec.openplanner.team/stops/LBapepi4", "https://tec.openplanner.team/stops/LBapepi5"], ["https://tec.openplanner.team/stops/H2hg157a", "https://tec.openplanner.team/stops/H2hg157b"], ["https://tec.openplanner.team/stops/N509axa", "https://tec.openplanner.team/stops/N509bgb"], ["https://tec.openplanner.team/stops/H1mj126b", "https://tec.openplanner.team/stops/H1mj127b"], ["https://tec.openplanner.team/stops/H4ha170a", "https://tec.openplanner.team/stops/H4me213a"], ["https://tec.openplanner.team/stops/Lceembo2", "https://tec.openplanner.team/stops/Lcegare1"], ["https://tec.openplanner.team/stops/X871aba", "https://tec.openplanner.team/stops/X871aca"], ["https://tec.openplanner.team/stops/X998aaa", "https://tec.openplanner.team/stops/X998aab"], ["https://tec.openplanner.team/stops/H2ll177a", "https://tec.openplanner.team/stops/H2ll190b"], ["https://tec.openplanner.team/stops/LrAgier1", "https://tec.openplanner.team/stops/LrApark2"], ["https://tec.openplanner.team/stops/Lsmstad2", "https://tec.openplanner.team/stops/Lvewall2"], ["https://tec.openplanner.team/stops/N538azb", "https://tec.openplanner.team/stops/N539ayb"], ["https://tec.openplanner.team/stops/X766aaa", "https://tec.openplanner.team/stops/X768aaa"], ["https://tec.openplanner.team/stops/X602alb", "https://tec.openplanner.team/stops/X602ana"], ["https://tec.openplanner.team/stops/Ckevela1", "https://tec.openplanner.team/stops/Cwfanci1"], ["https://tec.openplanner.team/stops/N559abb", "https://tec.openplanner.team/stops/N559aeb"], ["https://tec.openplanner.team/stops/X669agb", "https://tec.openplanner.team/stops/X672aeb"], ["https://tec.openplanner.team/stops/Bperros2", "https://tec.openplanner.team/stops/Bperwil1"], ["https://tec.openplanner.team/stops/LjedTEC2", "https://tec.openplanner.team/stops/Lsetroq1"], ["https://tec.openplanner.team/stops/H1le125b", "https://tec.openplanner.team/stops/H5is168b"], ["https://tec.openplanner.team/stops/N212ajb", "https://tec.openplanner.team/stops/N212ata"], ["https://tec.openplanner.team/stops/X782ana", "https://tec.openplanner.team/stops/X783ada"], ["https://tec.openplanner.team/stops/X666acb", "https://tec.openplanner.team/stops/X666ada"], ["https://tec.openplanner.team/stops/Blimvcg2", "https://tec.openplanner.team/stops/Bottcli1"], ["https://tec.openplanner.team/stops/LCschen1", "https://tec.openplanner.team/stops/LCsjone1"], ["https://tec.openplanner.team/stops/Cctberg2", "https://tec.openplanner.team/stops/Cctmine2"], ["https://tec.openplanner.team/stops/X912adb", "https://tec.openplanner.team/stops/X912aga"], ["https://tec.openplanner.team/stops/Clolidl1", "https://tec.openplanner.team/stops/Clooues3"], ["https://tec.openplanner.team/stops/X634ala", "https://tec.openplanner.team/stops/X654afb"], ["https://tec.openplanner.team/stops/H1gh159a", "https://tec.openplanner.team/stops/H1gh159b"], ["https://tec.openplanner.team/stops/Btubpir1", "https://tec.openplanner.team/stops/Btubpir2"], ["https://tec.openplanner.team/stops/Bpthcgo2", "https://tec.openplanner.team/stops/Bpthrsp2"], ["https://tec.openplanner.team/stops/H4hx116a", "https://tec.openplanner.team/stops/H4hx116b"], ["https://tec.openplanner.team/stops/Bchgcha1", "https://tec.openplanner.team/stops/Btslpic5"], ["https://tec.openplanner.team/stops/LMipoti2", "https://tec.openplanner.team/stops/LSTmast2"], ["https://tec.openplanner.team/stops/X607aba", "https://tec.openplanner.team/stops/X607aca"], ["https://tec.openplanner.team/stops/Caujonc1", "https://tec.openplanner.team/stops/Caujonc2"], ["https://tec.openplanner.team/stops/LLWcarr1", "https://tec.openplanner.team/stops/LOMbrou1"], ["https://tec.openplanner.team/stops/Braccen2", "https://tec.openplanner.team/stops/Bracrpe1"], ["https://tec.openplanner.team/stops/N501dba", "https://tec.openplanner.team/stops/N501ddb"], ["https://tec.openplanner.team/stops/LSceg--2", "https://tec.openplanner.team/stops/LVTtrou1"], ["https://tec.openplanner.team/stops/Ccutail1", "https://tec.openplanner.team/stops/Cgysarr1"], ["https://tec.openplanner.team/stops/X921ama", "https://tec.openplanner.team/stops/X921ana"], ["https://tec.openplanner.team/stops/X718ada", "https://tec.openplanner.team/stops/X718aea"], ["https://tec.openplanner.team/stops/LOcalbe2", "https://tec.openplanner.team/stops/LOcchat1"], ["https://tec.openplanner.team/stops/Bottbou2", "https://tec.openplanner.team/stops/Bottcbp2"], ["https://tec.openplanner.team/stops/Broncan1", "https://tec.openplanner.team/stops/Bvirfpo1"], ["https://tec.openplanner.team/stops/Bmarpla1", "https://tec.openplanner.team/stops/Bmarpla2"], ["https://tec.openplanner.team/stops/H1ms314a", "https://tec.openplanner.team/stops/H1ms943a"], ["https://tec.openplanner.team/stops/Cgystbe1", "https://tec.openplanner.team/stops/Cgystbe2"], ["https://tec.openplanner.team/stops/H2lh131a", "https://tec.openplanner.team/stops/H2mm140a"], ["https://tec.openplanner.team/stops/LTPcarr1", "https://tec.openplanner.team/stops/LTPsatr1"], ["https://tec.openplanner.team/stops/Llgbatt2", "https://tec.openplanner.team/stops/Llgpire2"], ["https://tec.openplanner.team/stops/Bgzddfh1", "https://tec.openplanner.team/stops/Bgzdgst2"], ["https://tec.openplanner.team/stops/H4me211c", "https://tec.openplanner.team/stops/H4pp122a"], ["https://tec.openplanner.team/stops/Clb4dgi1", "https://tec.openplanner.team/stops/Clb4dgi2"], ["https://tec.openplanner.team/stops/N539aaa", "https://tec.openplanner.team/stops/N539afb"], ["https://tec.openplanner.team/stops/Bboncha1", "https://tec.openplanner.team/stops/Bdlvpco2"], ["https://tec.openplanner.team/stops/H4fg116b", "https://tec.openplanner.team/stops/H4rx142a"], ["https://tec.openplanner.team/stops/Cctsncb3", "https://tec.openplanner.team/stops/Ccu6bra5"], ["https://tec.openplanner.team/stops/NL74aha", "https://tec.openplanner.team/stops/NL74ahb"], ["https://tec.openplanner.team/stops/X769ata", "https://tec.openplanner.team/stops/X769atb"], ["https://tec.openplanner.team/stops/X394afa", "https://tec.openplanner.team/stops/X394afb"], ["https://tec.openplanner.team/stops/LHUanth1", "https://tec.openplanner.team/stops/LHUaveu1"], ["https://tec.openplanner.team/stops/Btlbegl3", "https://tec.openplanner.team/stops/Btlbtbe4"], ["https://tec.openplanner.team/stops/N554aaa", "https://tec.openplanner.team/stops/NC11ara"], ["https://tec.openplanner.team/stops/X618aha", "https://tec.openplanner.team/stops/X618apa"], ["https://tec.openplanner.team/stops/Bitrcha2", "https://tec.openplanner.team/stops/Bitrsar1"], ["https://tec.openplanner.team/stops/LXHeg--2", "https://tec.openplanner.team/stops/LXHfond1"], ["https://tec.openplanner.team/stops/H2gy100a", "https://tec.openplanner.team/stops/H2gy103b"], ["https://tec.openplanner.team/stops/X805aab", "https://tec.openplanner.team/stops/X805aac"], ["https://tec.openplanner.team/stops/H1th180a", "https://tec.openplanner.team/stops/H3so164a"], ["https://tec.openplanner.team/stops/Cdadest1", "https://tec.openplanner.team/stops/Cdamest1"], ["https://tec.openplanner.team/stops/H1at108c", "https://tec.openplanner.team/stops/H1bl105a"], ["https://tec.openplanner.team/stops/X923apa", "https://tec.openplanner.team/stops/X923aqb"], ["https://tec.openplanner.team/stops/LrD28--2", "https://tec.openplanner.team/stops/LrDkirc2"], ["https://tec.openplanner.team/stops/X743afa", "https://tec.openplanner.team/stops/X744aaa"], ["https://tec.openplanner.team/stops/LROgeuz2", "https://tec.openplanner.team/stops/LWacime4"], ["https://tec.openplanner.team/stops/Lalecmo2", "https://tec.openplanner.team/stops/Laleg--1"], ["https://tec.openplanner.team/stops/Lgdrena1", "https://tec.openplanner.team/stops/LSNgerm2"], ["https://tec.openplanner.team/stops/H5el100a", "https://tec.openplanner.team/stops/H5rx135a"], ["https://tec.openplanner.team/stops/LCPconf2", "https://tec.openplanner.team/stops/LCPvign1"], ["https://tec.openplanner.team/stops/Bhevhha1", "https://tec.openplanner.team/stops/Bhevhha2"], ["https://tec.openplanner.team/stops/N561aba", "https://tec.openplanner.team/stops/N561aia"], ["https://tec.openplanner.team/stops/LRIcent1", "https://tec.openplanner.team/stops/LRIhous2"], ["https://tec.openplanner.team/stops/X663aca", "https://tec.openplanner.team/stops/X663adb"], ["https://tec.openplanner.team/stops/H4ft136a", "https://tec.openplanner.team/stops/H4ma205b"], ["https://tec.openplanner.team/stops/LTyh24-2", "https://tec.openplanner.team/stops/LTyhall2"], ["https://tec.openplanner.team/stops/Bgerprg1", "https://tec.openplanner.team/stops/Bgrhpos1"], ["https://tec.openplanner.team/stops/Llgbarb2", "https://tec.openplanner.team/stops/Llgpoli1"], ["https://tec.openplanner.team/stops/Llgnico1", "https://tec.openplanner.team/stops/Lsntvbi2"], ["https://tec.openplanner.team/stops/X633aja", "https://tec.openplanner.team/stops/X633ajc"], ["https://tec.openplanner.team/stops/LJEmalg2", "https://tec.openplanner.team/stops/LYegeor2"], ["https://tec.openplanner.team/stops/Bjanfer2", "https://tec.openplanner.team/stops/Bwanorp2"], ["https://tec.openplanner.team/stops/H4ty297a", "https://tec.openplanner.team/stops/H4ty406a"], ["https://tec.openplanner.team/stops/X882aaa", "https://tec.openplanner.team/stops/X882aha"], ["https://tec.openplanner.team/stops/N501isa", "https://tec.openplanner.team/stops/N501ivb"], ["https://tec.openplanner.team/stops/X601bma", "https://tec.openplanner.team/stops/X601bna"], ["https://tec.openplanner.team/stops/Bwatle32", "https://tec.openplanner.team/stops/Bwatmbv2"], ["https://tec.openplanner.team/stops/Bbsicas1", "https://tec.openplanner.team/stops/Bbsifml1"], ["https://tec.openplanner.team/stops/Cprsapv2", "https://tec.openplanner.team/stops/Cprvill2"], ["https://tec.openplanner.team/stops/LElverl1", "https://tec.openplanner.team/stops/LTamoul1"], ["https://tec.openplanner.team/stops/X879aga", "https://tec.openplanner.team/stops/X879aha"], ["https://tec.openplanner.team/stops/N894aga", "https://tec.openplanner.team/stops/N894agc"], ["https://tec.openplanner.team/stops/X921abb", "https://tec.openplanner.team/stops/X921apa"], ["https://tec.openplanner.team/stops/X754aub", "https://tec.openplanner.team/stops/X779aea"], ["https://tec.openplanner.team/stops/Cjucopp1", "https://tec.openplanner.team/stops/Cjuepee1"], ["https://tec.openplanner.team/stops/N516acb", "https://tec.openplanner.team/stops/N516adb"], ["https://tec.openplanner.team/stops/LEBdoct2", "https://tec.openplanner.team/stops/LWOmart2"], ["https://tec.openplanner.team/stops/Llgjasm1", "https://tec.openplanner.team/stops/Llgoise1"], ["https://tec.openplanner.team/stops/LRMeg--2", "https://tec.openplanner.team/stops/LRMn58-2"], ["https://tec.openplanner.team/stops/N874aia", "https://tec.openplanner.team/stops/N874ala"], ["https://tec.openplanner.team/stops/Bgliaau1", "https://tec.openplanner.team/stops/Bgligli1"], ["https://tec.openplanner.team/stops/Bbstchv2", "https://tec.openplanner.team/stops/Bvlvbth2"], ["https://tec.openplanner.team/stops/H1ch142a", "https://tec.openplanner.team/stops/H1ch142b"], ["https://tec.openplanner.team/stops/N547aea", "https://tec.openplanner.team/stops/N565akb"], ["https://tec.openplanner.team/stops/N149aka", "https://tec.openplanner.team/stops/N149ala"], ["https://tec.openplanner.team/stops/Bgemman2", "https://tec.openplanner.team/stops/N522afa"], ["https://tec.openplanner.team/stops/LDOastr2", "https://tec.openplanner.team/stops/LDOviad2"], ["https://tec.openplanner.team/stops/LLVcent1", "https://tec.openplanner.team/stops/X575afb"], ["https://tec.openplanner.team/stops/LHHindu2", "https://tec.openplanner.team/stops/LHHronh2"], ["https://tec.openplanner.team/stops/N222acb", "https://tec.openplanner.team/stops/X222add"], ["https://tec.openplanner.team/stops/LMHoha-1", "https://tec.openplanner.team/stops/LMHtill1"], ["https://tec.openplanner.team/stops/X663ara", "https://tec.openplanner.team/stops/X663arb"], ["https://tec.openplanner.team/stops/H1sy148a", "https://tec.openplanner.team/stops/H1sy148b"], ["https://tec.openplanner.team/stops/H1ba100b", "https://tec.openplanner.team/stops/H1ba111a"], ["https://tec.openplanner.team/stops/LNAplac2", "https://tec.openplanner.team/stops/LSSvill1"], ["https://tec.openplanner.team/stops/X638aaa", "https://tec.openplanner.team/stops/X638abb"], ["https://tec.openplanner.team/stops/H4mo164a", "https://tec.openplanner.team/stops/H4tg162a"], ["https://tec.openplanner.team/stops/LBIaepo2", "https://tec.openplanner.team/stops/LBIaepo4"], ["https://tec.openplanner.team/stops/N501gaa", "https://tec.openplanner.team/stops/N501zda"], ["https://tec.openplanner.team/stops/LeLbegl1", "https://tec.openplanner.team/stops/LeLbegl2"], ["https://tec.openplanner.team/stops/N584bba", "https://tec.openplanner.team/stops/N584boa"], ["https://tec.openplanner.team/stops/Bgliegl1", "https://tec.openplanner.team/stops/Bglitro3"], ["https://tec.openplanner.team/stops/Bwaubru2", "https://tec.openplanner.team/stops/Bwaunou1"], ["https://tec.openplanner.team/stops/LHycent*", "https://tec.openplanner.team/stops/LXofans2"], ["https://tec.openplanner.team/stops/N565acb", "https://tec.openplanner.team/stops/N565aea"], ["https://tec.openplanner.team/stops/LPOecol1", "https://tec.openplanner.team/stops/LPOwaut2"], ["https://tec.openplanner.team/stops/Bnilcim1", "https://tec.openplanner.team/stops/Bnilcim2"], ["https://tec.openplanner.team/stops/N511alb", "https://tec.openplanner.team/stops/N511amb"], ["https://tec.openplanner.team/stops/H1hw118b", "https://tec.openplanner.team/stops/H1hw121a"], ["https://tec.openplanner.team/stops/H4lz118a", "https://tec.openplanner.team/stops/H4th140b"], ["https://tec.openplanner.team/stops/H1eo103a", "https://tec.openplanner.team/stops/H1eo107b"], ["https://tec.openplanner.team/stops/Broscha2", "https://tec.openplanner.team/stops/Cobvill1"], ["https://tec.openplanner.team/stops/Cnachat1", "https://tec.openplanner.team/stops/NC14aqb"], ["https://tec.openplanner.team/stops/H1ml109a", "https://tec.openplanner.team/stops/H1ml111b"], ["https://tec.openplanner.team/stops/Bitrecu1", "https://tec.openplanner.team/stops/Bitrmde2"], ["https://tec.openplanner.team/stops/H2bh119a", "https://tec.openplanner.team/stops/H2lc172a"], ["https://tec.openplanner.team/stops/N103abb", "https://tec.openplanner.team/stops/N103aca"], ["https://tec.openplanner.team/stops/H1ba116b", "https://tec.openplanner.team/stops/H1ba120b"], ["https://tec.openplanner.team/stops/LBGcent2", "https://tec.openplanner.team/stops/LBGjacq2"], ["https://tec.openplanner.team/stops/N170aga", "https://tec.openplanner.team/stops/N571aaa"], ["https://tec.openplanner.team/stops/Lemacac2", "https://tec.openplanner.team/stops/Lemmeha2"], ["https://tec.openplanner.team/stops/Laddelc2", "https://tec.openplanner.team/stops/Ladfoot1"], ["https://tec.openplanner.team/stops/LeUbell1", "https://tec.openplanner.team/stops/LeUsch%C3%B61"], ["https://tec.openplanner.team/stops/LTEziho2", "https://tec.openplanner.team/stops/LTEzinn1"], ["https://tec.openplanner.team/stops/Bcsebea3", "https://tec.openplanner.team/stops/Bmsgmon2"], ["https://tec.openplanner.team/stops/LAWcorn2", "https://tec.openplanner.team/stops/LAWxhen1"], ["https://tec.openplanner.team/stops/X604aab", "https://tec.openplanner.team/stops/X634aha"], ["https://tec.openplanner.team/stops/N554aab", "https://tec.openplanner.team/stops/N555aba"], ["https://tec.openplanner.team/stops/LLt43--2", "https://tec.openplanner.team/stops/NL57ajb"], ["https://tec.openplanner.team/stops/X817ada", "https://tec.openplanner.team/stops/X817adb"], ["https://tec.openplanner.team/stops/X741aca", "https://tec.openplanner.team/stops/X741acb"], ["https://tec.openplanner.team/stops/Bgntpla2", "https://tec.openplanner.team/stops/Bgnttma2"], ["https://tec.openplanner.team/stops/X605aea", "https://tec.openplanner.team/stops/X605ala"], ["https://tec.openplanner.team/stops/H1er109a", "https://tec.openplanner.team/stops/H1so131e"], ["https://tec.openplanner.team/stops/Bblaniv2", "https://tec.openplanner.team/stops/Bwatms09"], ["https://tec.openplanner.team/stops/LFPdeme2", "https://tec.openplanner.team/stops/LFProt-1"], ["https://tec.openplanner.team/stops/N535ahb", "https://tec.openplanner.team/stops/N535aib"], ["https://tec.openplanner.team/stops/LWOwaer1", "https://tec.openplanner.team/stops/LWOwaer2"], ["https://tec.openplanner.team/stops/X601baa", "https://tec.openplanner.team/stops/X601bwa"], ["https://tec.openplanner.team/stops/H1wg124b", "https://tec.openplanner.team/stops/H1wg126a"], ["https://tec.openplanner.team/stops/H1gh147b", "https://tec.openplanner.team/stops/H1gh168a"], ["https://tec.openplanner.team/stops/LVIdeva1", "https://tec.openplanner.team/stops/LVIdeva2"], ["https://tec.openplanner.team/stops/Llgrass2", "https://tec.openplanner.team/stops/Llgrull2"], ["https://tec.openplanner.team/stops/X818apa", "https://tec.openplanner.team/stops/X818apb"], ["https://tec.openplanner.team/stops/H1ms268b", "https://tec.openplanner.team/stops/H1ms309a"], ["https://tec.openplanner.team/stops/Blsmcha1", "https://tec.openplanner.team/stops/Blsmcha2"], ["https://tec.openplanner.team/stops/LWaccom1", "https://tec.openplanner.team/stops/LWaccom2"], ["https://tec.openplanner.team/stops/LbUkrin1", "https://tec.openplanner.team/stops/LlSbuch2"], ["https://tec.openplanner.team/stops/LOUsorb1", "https://tec.openplanner.team/stops/LOUsorb2"], ["https://tec.openplanner.team/stops/N308apa", "https://tec.openplanner.team/stops/N331afa"], ["https://tec.openplanner.team/stops/LrAdrie5", "https://tec.openplanner.team/stops/LrAneud2"], ["https://tec.openplanner.team/stops/H4hg154a", "https://tec.openplanner.team/stops/H4mv189b"], ["https://tec.openplanner.team/stops/X601dba", "https://tec.openplanner.team/stops/X626anb"], ["https://tec.openplanner.team/stops/H4ty305d", "https://tec.openplanner.team/stops/H4ty416a"], ["https://tec.openplanner.team/stops/Bdvmc031", "https://tec.openplanner.team/stops/Bdvmc432"], ["https://tec.openplanner.team/stops/N232awa", "https://tec.openplanner.team/stops/N232bha"], ["https://tec.openplanner.team/stops/Bjdsjso1", "https://tec.openplanner.team/stops/Bjdspon1"], ["https://tec.openplanner.team/stops/Bmsgcap1", "https://tec.openplanner.team/stops/Bmsgstj1"], ["https://tec.openplanner.team/stops/Bwatber1", "https://tec.openplanner.team/stops/Bwatpro2"], ["https://tec.openplanner.team/stops/X837ahb", "https://tec.openplanner.team/stops/X889aeb"], ["https://tec.openplanner.team/stops/LLxconj2", "https://tec.openplanner.team/stops/LWOwonc1"], ["https://tec.openplanner.team/stops/Bhenmal2", "https://tec.openplanner.team/stops/Bhenpln1"], ["https://tec.openplanner.team/stops/Bjaufca1", "https://tec.openplanner.team/stops/Bjauwar1"], ["https://tec.openplanner.team/stops/Bnivrec2", "https://tec.openplanner.team/stops/Bnivtec2"], ["https://tec.openplanner.team/stops/X801cib", "https://tec.openplanner.team/stops/X836acb"], ["https://tec.openplanner.team/stops/Clrecol1", "https://tec.openplanner.team/stops/Clrmarl2"], ["https://tec.openplanner.team/stops/X808abb", "https://tec.openplanner.team/stops/X808aea"], ["https://tec.openplanner.team/stops/LHFappe4", "https://tec.openplanner.team/stops/LVEmohi2"], ["https://tec.openplanner.team/stops/N118aga", "https://tec.openplanner.team/stops/N118ayb"], ["https://tec.openplanner.team/stops/X754aea", "https://tec.openplanner.team/stops/X754anb"], ["https://tec.openplanner.team/stops/Lchsart1", "https://tec.openplanner.team/stops/Lchsart2"], ["https://tec.openplanner.team/stops/H4tm140b", "https://tec.openplanner.team/stops/H5ma186a"], ["https://tec.openplanner.team/stops/LNAbras4", "https://tec.openplanner.team/stops/LScgore2"], ["https://tec.openplanner.team/stops/X836aba", "https://tec.openplanner.team/stops/X837ahb"], ["https://tec.openplanner.team/stops/Blascim1", "https://tec.openplanner.team/stops/Blasclo2"], ["https://tec.openplanner.team/stops/Bwatpai1", "https://tec.openplanner.team/stops/Bwatprp2"], ["https://tec.openplanner.team/stops/X638aqb", "https://tec.openplanner.team/stops/X652aab"], ["https://tec.openplanner.team/stops/N522aua", "https://tec.openplanner.team/stops/N529aea"], ["https://tec.openplanner.team/stops/Bmrl4ch2", "https://tec.openplanner.team/stops/Bmrlegl2"], ["https://tec.openplanner.team/stops/X371acb", "https://tec.openplanner.team/stops/X371agb"], ["https://tec.openplanner.team/stops/LDArich1", "https://tec.openplanner.team/stops/LDArich2"], ["https://tec.openplanner.team/stops/X790aab", "https://tec.openplanner.team/stops/X790aba"], ["https://tec.openplanner.team/stops/Berncim4", "https://tec.openplanner.team/stops/Bernpla1"], ["https://tec.openplanner.team/stops/LHZpara1", "https://tec.openplanner.team/stops/LHZpara2"], ["https://tec.openplanner.team/stops/LVlfooz3", "https://tec.openplanner.team/stops/LVlfooz4"], ["https://tec.openplanner.team/stops/N101aha", "https://tec.openplanner.team/stops/N101aob"], ["https://tec.openplanner.team/stops/Cmamons2", "https://tec.openplanner.team/stops/Cmasncb1"], ["https://tec.openplanner.team/stops/Bjodfco1", "https://tec.openplanner.team/stops/NR21aca"], ["https://tec.openplanner.team/stops/N368afa", "https://tec.openplanner.team/stops/N368afb"], ["https://tec.openplanner.team/stops/X629aaa", "https://tec.openplanner.team/stops/X629acb"], ["https://tec.openplanner.team/stops/LrAiter1", "https://tec.openplanner.team/stops/LrAmuhl2"], ["https://tec.openplanner.team/stops/N507aia", "https://tec.openplanner.team/stops/N507aic"], ["https://tec.openplanner.team/stops/Bmlnbpr2", "https://tec.openplanner.team/stops/Bmlnmbo2"], ["https://tec.openplanner.team/stops/LJOvill1", "https://tec.openplanner.team/stops/LJOvill2"], ["https://tec.openplanner.team/stops/H4be107b", "https://tec.openplanner.team/stops/H5bl122b"], ["https://tec.openplanner.team/stops/X607aea", "https://tec.openplanner.team/stops/X607ajb"], ["https://tec.openplanner.team/stops/Bvirduj2", "https://tec.openplanner.team/stops/Bvirmav2"], ["https://tec.openplanner.team/stops/H4eh101b", "https://tec.openplanner.team/stops/H4eh104a"], ["https://tec.openplanner.team/stops/N170adb", "https://tec.openplanner.team/stops/N170agb"], ["https://tec.openplanner.team/stops/X826aha", "https://tec.openplanner.team/stops/X860aba"], ["https://tec.openplanner.team/stops/N214adb", "https://tec.openplanner.team/stops/N214aeb"], ["https://tec.openplanner.team/stops/H4mo184a", "https://tec.openplanner.team/stops/H4mo184b"], ["https://tec.openplanner.team/stops/X982aea", "https://tec.openplanner.team/stops/X982aja"], ["https://tec.openplanner.team/stops/LSkathe1", "https://tec.openplanner.team/stops/LSkcomb2"], ["https://tec.openplanner.team/stops/X617aga", "https://tec.openplanner.team/stops/X617agb"], ["https://tec.openplanner.team/stops/N254afa", "https://tec.openplanner.team/stops/N254agb"], ["https://tec.openplanner.team/stops/Lmohomv2", "https://tec.openplanner.team/stops/Lmopast1"], ["https://tec.openplanner.team/stops/X782aba", "https://tec.openplanner.team/stops/X782aca"], ["https://tec.openplanner.team/stops/N531aqa", "https://tec.openplanner.team/stops/N531asc"], ["https://tec.openplanner.team/stops/H4ir162b", "https://tec.openplanner.team/stops/H4ir166a"], ["https://tec.openplanner.team/stops/LWOsudr2", "https://tec.openplanner.team/stops/LWOunio2"], ["https://tec.openplanner.team/stops/N501aba", "https://tec.openplanner.team/stops/N501aca"], ["https://tec.openplanner.team/stops/LMebove1", "https://tec.openplanner.team/stops/LMebove2"], ["https://tec.openplanner.team/stops/Ljufler1", "https://tec.openplanner.team/stops/Ljufler2"], ["https://tec.openplanner.team/stops/LJvbane1", "https://tec.openplanner.team/stops/X717aia"], ["https://tec.openplanner.team/stops/Lmlcher1", "https://tec.openplanner.team/stops/Lmlscie1"], ["https://tec.openplanner.team/stops/LeYloos1", "https://tec.openplanner.team/stops/LeYteeh1"], ["https://tec.openplanner.team/stops/Ctmmana2", "https://tec.openplanner.team/stops/Cvvchea2"], ["https://tec.openplanner.team/stops/Ctrchat2", "https://tec.openplanner.team/stops/Ctrsema2"], ["https://tec.openplanner.team/stops/H4ty310a", "https://tec.openplanner.team/stops/H4ty351b"], ["https://tec.openplanner.team/stops/X659aaa", "https://tec.openplanner.team/stops/X659ayb"], ["https://tec.openplanner.team/stops/Blhugmo1", "https://tec.openplanner.team/stops/Blhugmo2"], ["https://tec.openplanner.team/stops/LrOfrie1", "https://tec.openplanner.team/stops/LrOgara3"], ["https://tec.openplanner.team/stops/Cbbcent1", "https://tec.openplanner.team/stops/Cvregl2"], ["https://tec.openplanner.team/stops/N501fdc", "https://tec.openplanner.team/stops/N501lza"], ["https://tec.openplanner.team/stops/Lvcchev2", "https://tec.openplanner.team/stops/Lvcchev3"], ["https://tec.openplanner.team/stops/LbUbutg2", "https://tec.openplanner.team/stops/LbUpost2"], ["https://tec.openplanner.team/stops/Lselibe2", "https://tec.openplanner.team/stops/Lsevill1"], ["https://tec.openplanner.team/stops/H4bs110a", "https://tec.openplanner.team/stops/H5pe139a"], ["https://tec.openplanner.team/stops/Cbblacb1", "https://tec.openplanner.team/stops/Cbblacb2"], ["https://tec.openplanner.team/stops/H1je216a", "https://tec.openplanner.team/stops/H1je225a"], ["https://tec.openplanner.team/stops/H2ma203b", "https://tec.openplanner.team/stops/H2ma206a"], ["https://tec.openplanner.team/stops/Bbonbcr2", "https://tec.openplanner.team/stops/Bbonegl2"], ["https://tec.openplanner.team/stops/Cjumade4", "https://tec.openplanner.team/stops/CMmade2"], ["https://tec.openplanner.team/stops/H5rx134a", "https://tec.openplanner.team/stops/H5rx135a"], ["https://tec.openplanner.team/stops/H4wi162b", "https://tec.openplanner.team/stops/H4wi164b"], ["https://tec.openplanner.team/stops/Lbrhvl-*", "https://tec.openplanner.team/stops/Lgrdefr4"], ["https://tec.openplanner.team/stops/LMechpl1", "https://tec.openplanner.team/stops/LMeperk1"], ["https://tec.openplanner.team/stops/Cwfmoul2", "https://tec.openplanner.team/stops/NC12aaa"], ["https://tec.openplanner.team/stops/LSZlegr1", "https://tec.openplanner.team/stops/LWycarr1"], ["https://tec.openplanner.team/stops/Cforpet2", "https://tec.openplanner.team/stops/CMpetr1"], ["https://tec.openplanner.team/stops/N536aoa", "https://tec.openplanner.team/stops/N536aob"], ["https://tec.openplanner.team/stops/X806aja", "https://tec.openplanner.team/stops/X807aca"], ["https://tec.openplanner.team/stops/H1qu109a", "https://tec.openplanner.team/stops/H1qu109b"], ["https://tec.openplanner.team/stops/LAYathe1", "https://tec.openplanner.team/stops/LAYgare1"], ["https://tec.openplanner.team/stops/N550ada", "https://tec.openplanner.team/stops/N550ama"], ["https://tec.openplanner.team/stops/X654ahb", "https://tec.openplanner.team/stops/X670arb"], ["https://tec.openplanner.team/stops/LSNchen3", "https://tec.openplanner.team/stops/LSNnoul1"], ["https://tec.openplanner.team/stops/X670aob", "https://tec.openplanner.team/stops/X670asa"], ["https://tec.openplanner.team/stops/Lcavign1", "https://tec.openplanner.team/stops/Lvchaus2"], ["https://tec.openplanner.team/stops/H4br108b", "https://tec.openplanner.team/stops/H4br110a"], ["https://tec.openplanner.team/stops/X657ahb", "https://tec.openplanner.team/stops/X657ana"], ["https://tec.openplanner.team/stops/Cmaegal1", "https://tec.openplanner.team/stops/Cmastni1"], ["https://tec.openplanner.team/stops/H4mx116b", "https://tec.openplanner.team/stops/H4po124b"], ["https://tec.openplanner.team/stops/N351ata", "https://tec.openplanner.team/stops/N351atb"], ["https://tec.openplanner.team/stops/LLgcent1", "https://tec.openplanner.team/stops/LLgcent2"], ["https://tec.openplanner.team/stops/LvAwere1", "https://tec.openplanner.team/stops/LwEdorf2"], ["https://tec.openplanner.team/stops/H4rx141b", "https://tec.openplanner.team/stops/H4rx176b"], ["https://tec.openplanner.team/stops/N149ahc", "https://tec.openplanner.team/stops/N154ada"], ["https://tec.openplanner.team/stops/H1hc151a", "https://tec.openplanner.team/stops/H4be149b"], ["https://tec.openplanner.team/stops/NR21aaa", "https://tec.openplanner.team/stops/NR21afa"], ["https://tec.openplanner.team/stops/Cbiseur1", "https://tec.openplanner.team/stops/Cthenmi1"], ["https://tec.openplanner.team/stops/Cdadest2", "https://tec.openplanner.team/stops/Cdamest1"], ["https://tec.openplanner.team/stops/LAMmc--1", "https://tec.openplanner.team/stops/LAMrich1"], ["https://tec.openplanner.team/stops/X831aaa", "https://tec.openplanner.team/stops/X831aab"], ["https://tec.openplanner.team/stops/N261aba", "https://tec.openplanner.team/stops/N261aca"], ["https://tec.openplanner.team/stops/N222aab", "https://tec.openplanner.team/stops/X222afa"], ["https://tec.openplanner.team/stops/N137aeb", "https://tec.openplanner.team/stops/N137afa"], ["https://tec.openplanner.team/stops/Livgera5", "https://tec.openplanner.team/stops/Livmoul2"], ["https://tec.openplanner.team/stops/Bcsemon2", "https://tec.openplanner.team/stops/Bsmgsuz2"], ["https://tec.openplanner.team/stops/H4jm116a", "https://tec.openplanner.team/stops/H4sm247a"], ["https://tec.openplanner.team/stops/H1ms272b", "https://tec.openplanner.team/stops/H1ms279a"], ["https://tec.openplanner.team/stops/N573aaa", "https://tec.openplanner.team/stops/N573aha"], ["https://tec.openplanner.team/stops/X823ada", "https://tec.openplanner.team/stops/X823adb"], ["https://tec.openplanner.team/stops/Ccuhaie1", "https://tec.openplanner.team/stops/Ccutrav5"], ["https://tec.openplanner.team/stops/Bpthfus2", "https://tec.openplanner.team/stops/Bpthrsp1"], ["https://tec.openplanner.team/stops/Llgfont1", "https://tec.openplanner.team/stops/Llgfont4"], ["https://tec.openplanner.team/stops/X687aaa", "https://tec.openplanner.team/stops/X687aea"], ["https://tec.openplanner.team/stops/LLedoya1", "https://tec.openplanner.team/stops/X576agb"], ["https://tec.openplanner.team/stops/N534asb", "https://tec.openplanner.team/stops/N534awb"], ["https://tec.openplanner.team/stops/LwAlont2", "https://tec.openplanner.team/stops/LwAlont4"], ["https://tec.openplanner.team/stops/X949aib", "https://tec.openplanner.team/stops/X949ajb"], ["https://tec.openplanner.team/stops/X840aba", "https://tec.openplanner.team/stops/X840acb"], ["https://tec.openplanner.team/stops/LaMades1", "https://tec.openplanner.team/stops/LaMwies2"], ["https://tec.openplanner.team/stops/LkEbran1", "https://tec.openplanner.team/stops/LkEbran2"], ["https://tec.openplanner.team/stops/N270aab", "https://tec.openplanner.team/stops/N270aba"], ["https://tec.openplanner.team/stops/X823aga", "https://tec.openplanner.team/stops/X823agb"], ["https://tec.openplanner.team/stops/Bbrycar1", "https://tec.openplanner.team/stops/Bsampli2"], ["https://tec.openplanner.team/stops/H1lb137b", "https://tec.openplanner.team/stops/H1pa106b"], ["https://tec.openplanner.team/stops/H1sy138b", "https://tec.openplanner.team/stops/H1sy145b"], ["https://tec.openplanner.team/stops/H4rm110a", "https://tec.openplanner.team/stops/H4rm114a"], ["https://tec.openplanner.team/stops/H1so133a", "https://tec.openplanner.team/stops/H1so139d"], ["https://tec.openplanner.team/stops/X941afa", "https://tec.openplanner.team/stops/X941agb"], ["https://tec.openplanner.team/stops/H1qu102b", "https://tec.openplanner.team/stops/H1qu120a"], ["https://tec.openplanner.team/stops/Cprgran2", "https://tec.openplanner.team/stops/NC44aea"], ["https://tec.openplanner.team/stops/Clrcomb1", "https://tec.openplanner.team/stops/Clrplac1"], ["https://tec.openplanner.team/stops/Bpercsp1", "https://tec.openplanner.team/stops/N524ajb"], ["https://tec.openplanner.team/stops/Bwategl1", "https://tec.openplanner.team/stops/Bwatmco1"], ["https://tec.openplanner.team/stops/N501dna", "https://tec.openplanner.team/stops/N501ena"], ["https://tec.openplanner.team/stops/LNCdoma3", "https://tec.openplanner.team/stops/LRRchen2"], ["https://tec.openplanner.team/stops/Lsesabl1", "https://tec.openplanner.team/stops/Lsevill1"], ["https://tec.openplanner.team/stops/Bitrcan2", "https://tec.openplanner.team/stops/Bitrcro2"], ["https://tec.openplanner.team/stops/Bbiehev2", "https://tec.openplanner.team/stops/Bbiepre2"], ["https://tec.openplanner.team/stops/LBdmarr1", "https://tec.openplanner.team/stops/LWMcent1"], ["https://tec.openplanner.team/stops/X767aea", "https://tec.openplanner.team/stops/X769aaa"], ["https://tec.openplanner.team/stops/N501dsa", "https://tec.openplanner.team/stops/N501dta"], ["https://tec.openplanner.team/stops/X654agb", "https://tec.openplanner.team/stops/X654akb"], ["https://tec.openplanner.team/stops/LVllieg1", "https://tec.openplanner.team/stops/LVltige2"], ["https://tec.openplanner.team/stops/X725aec", "https://tec.openplanner.team/stops/X725apb"], ["https://tec.openplanner.team/stops/LcRkirc2", "https://tec.openplanner.team/stops/LcRmuhl2"], ["https://tec.openplanner.team/stops/X879aeb", "https://tec.openplanner.team/stops/X879aob"], ["https://tec.openplanner.team/stops/Bzlufbo2", "https://tec.openplanner.team/stops/Bzluqga1"], ["https://tec.openplanner.team/stops/H4au100b", "https://tec.openplanner.team/stops/H4cp103a"], ["https://tec.openplanner.team/stops/N550ala", "https://tec.openplanner.team/stops/N565aaa"], ["https://tec.openplanner.team/stops/LhIfrie2", "https://tec.openplanner.team/stops/LrDsage2"], ["https://tec.openplanner.team/stops/LCRfavr2", "https://tec.openplanner.team/stops/LTywyna1"], ["https://tec.openplanner.team/stops/X790aca", "https://tec.openplanner.team/stops/X790aga"], ["https://tec.openplanner.team/stops/LeI39--4", "https://tec.openplanner.team/stops/LeIkreu1"], ["https://tec.openplanner.team/stops/X904ahb", "https://tec.openplanner.team/stops/X904anb"], ["https://tec.openplanner.team/stops/LHNcreh2", "https://tec.openplanner.team/stops/LHNvill2"], ["https://tec.openplanner.team/stops/N232bqa", "https://tec.openplanner.team/stops/N261abb"], ["https://tec.openplanner.team/stops/NL80aca", "https://tec.openplanner.team/stops/NL80aub"], ["https://tec.openplanner.team/stops/H2hp116a", "https://tec.openplanner.team/stops/H2ll172b"], ["https://tec.openplanner.team/stops/LHXfont1", "https://tec.openplanner.team/stops/LLVfoss1"], ["https://tec.openplanner.team/stops/Bquebut1", "https://tec.openplanner.team/stops/Bquecge2"], ["https://tec.openplanner.team/stops/Llgaba-1", "https://tec.openplanner.team/stops/Llgatel2"], ["https://tec.openplanner.team/stops/Cgocalv3", "https://tec.openplanner.team/stops/Cgocapu2"], ["https://tec.openplanner.team/stops/H1qu100d", "https://tec.openplanner.team/stops/H1qu116c"], ["https://tec.openplanner.team/stops/H1mb136b", "https://tec.openplanner.team/stops/H1mb168a"], ["https://tec.openplanner.team/stops/X661ara", "https://tec.openplanner.team/stops/X661asa"], ["https://tec.openplanner.team/stops/Becepon2", "https://tec.openplanner.team/stops/H2ec106b"], ["https://tec.openplanner.team/stops/Ladverv2", "https://tec.openplanner.team/stops/Ldipost1"], ["https://tec.openplanner.team/stops/Blhulor2", "https://tec.openplanner.team/stops/Blhusor1"], ["https://tec.openplanner.team/stops/LLUcdoy1", "https://tec.openplanner.team/stops/LLUcdoy2"], ["https://tec.openplanner.team/stops/Bwatmlo2", "https://tec.openplanner.team/stops/Bwatran1"], ["https://tec.openplanner.team/stops/X342aaa", "https://tec.openplanner.team/stops/X342aba"], ["https://tec.openplanner.team/stops/N538afb", "https://tec.openplanner.team/stops/N539ana"], ["https://tec.openplanner.team/stops/N233aba", "https://tec.openplanner.team/stops/N242agb"], ["https://tec.openplanner.team/stops/Cfaetoi2", "https://tec.openplanner.team/stops/Cpiegli2"], ["https://tec.openplanner.team/stops/Cbecarr1", "https://tec.openplanner.team/stops/N161abd"], ["https://tec.openplanner.team/stops/LACeg--1", "https://tec.openplanner.team/stops/LAChann1"], ["https://tec.openplanner.team/stops/X754aga", "https://tec.openplanner.team/stops/X754ala"], ["https://tec.openplanner.team/stops/LLrcomb1", "https://tec.openplanner.team/stops/LLrelec1"], ["https://tec.openplanner.team/stops/LSogite1", "https://tec.openplanner.team/stops/LSopost1"], ["https://tec.openplanner.team/stops/Brsgfbl1", "https://tec.openplanner.team/stops/Brsgfbl4"], ["https://tec.openplanner.team/stops/Bgzddfh2", "https://tec.openplanner.team/stops/Bgzddur1"], ["https://tec.openplanner.team/stops/H4es111b", "https://tec.openplanner.team/stops/H4ln128a"], ["https://tec.openplanner.team/stops/Ccoha602", "https://tec.openplanner.team/stops/Cgplhoi1"], ["https://tec.openplanner.team/stops/X666aha", "https://tec.openplanner.team/stops/X666aia"], ["https://tec.openplanner.team/stops/LSTchen2", "https://tec.openplanner.team/stops/LSTdero2"], ["https://tec.openplanner.team/stops/H4by116b", "https://tec.openplanner.team/stops/H4by117b"], ["https://tec.openplanner.team/stops/X718aea", "https://tec.openplanner.team/stops/X718afb"], ["https://tec.openplanner.team/stops/N120afa", "https://tec.openplanner.team/stops/N120aga"], ["https://tec.openplanner.team/stops/H1ho131a", "https://tec.openplanner.team/stops/H1ho136b"], ["https://tec.openplanner.team/stops/Bdoncar2", "https://tec.openplanner.team/stops/Bdoncen2"], ["https://tec.openplanner.team/stops/Blthbss1", "https://tec.openplanner.team/stops/Bmlnsmv1"], ["https://tec.openplanner.team/stops/LMsheid1", "https://tec.openplanner.team/stops/LMsheid2"], ["https://tec.openplanner.team/stops/X882akb", "https://tec.openplanner.team/stops/X882amb"], ["https://tec.openplanner.team/stops/H1eo106b", "https://tec.openplanner.team/stops/H1mj126a"], ["https://tec.openplanner.team/stops/LARarge1", "https://tec.openplanner.team/stops/LHAvall1"], ["https://tec.openplanner.team/stops/X840ada", "https://tec.openplanner.team/stops/X840adb"], ["https://tec.openplanner.team/stops/N523aaa", "https://tec.openplanner.team/stops/N523acb"], ["https://tec.openplanner.team/stops/Ladmoul1", "https://tec.openplanner.team/stops/Ladppir1"], ["https://tec.openplanner.team/stops/X908ada", "https://tec.openplanner.team/stops/X955ahb"], ["https://tec.openplanner.team/stops/LOljean2", "https://tec.openplanner.team/stops/LVTforg1"], ["https://tec.openplanner.team/stops/H2ca102a", "https://tec.openplanner.team/stops/H2ca102b"], ["https://tec.openplanner.team/stops/N232cea", "https://tec.openplanner.team/stops/N232ceb"], ["https://tec.openplanner.team/stops/Ccutill1", "https://tec.openplanner.team/stops/Ccutill2"], ["https://tec.openplanner.team/stops/Becebju1", "https://tec.openplanner.team/stops/Bnstlna1"], ["https://tec.openplanner.team/stops/X746agb", "https://tec.openplanner.team/stops/X746ahc"], ["https://tec.openplanner.team/stops/Lprdavi1", "https://tec.openplanner.team/stops/Lprdavi2"], ["https://tec.openplanner.team/stops/LHupont2", "https://tec.openplanner.team/stops/LHurobi2"], ["https://tec.openplanner.team/stops/Llggram1", "https://tec.openplanner.team/stops/Llggram2"], ["https://tec.openplanner.team/stops/Cgohnda1", "https://tec.openplanner.team/stops/Cgohnda2"], ["https://tec.openplanner.team/stops/LEN42--1", "https://tec.openplanner.team/stops/LEN42--2"], ["https://tec.openplanner.team/stops/LNEgare*", "https://tec.openplanner.team/stops/LNEgaul4"], ["https://tec.openplanner.team/stops/LFRhock1", "https://tec.openplanner.team/stops/LFRhock2"], ["https://tec.openplanner.team/stops/LHUchh-1", "https://tec.openplanner.team/stops/LHUloui1"], ["https://tec.openplanner.team/stops/LFMkrin2", "https://tec.openplanner.team/stops/LFMkrut1"], ["https://tec.openplanner.team/stops/Bnivphm1", "https://tec.openplanner.team/stops/Bnivphm2"], ["https://tec.openplanner.team/stops/X880afb", "https://tec.openplanner.team/stops/X880age"], ["https://tec.openplanner.team/stops/H4ka194a", "https://tec.openplanner.team/stops/H4ka195a"], ["https://tec.openplanner.team/stops/H4be109a", "https://tec.openplanner.team/stops/H4be114a"], ["https://tec.openplanner.team/stops/N539acb", "https://tec.openplanner.team/stops/N539akb"], ["https://tec.openplanner.team/stops/H2mg136a", "https://tec.openplanner.team/stops/H2mg140c"], ["https://tec.openplanner.team/stops/X897aod", "https://tec.openplanner.team/stops/X897aqa"], ["https://tec.openplanner.team/stops/X728ada", "https://tec.openplanner.team/stops/X746amb"], ["https://tec.openplanner.team/stops/N104afa", "https://tec.openplanner.team/stops/N118bba"], ["https://tec.openplanner.team/stops/LAvambr2", "https://tec.openplanner.team/stops/NL37aob"], ["https://tec.openplanner.team/stops/LTaabba2", "https://tec.openplanner.team/stops/LTaxhos2"], ["https://tec.openplanner.team/stops/LGLdeni2", "https://tec.openplanner.team/stops/LGLecol1"], ["https://tec.openplanner.team/stops/Chpatel1", "https://tec.openplanner.team/stops/Chpfoli3"], ["https://tec.openplanner.team/stops/H4bh101a", "https://tec.openplanner.team/stops/H4bh101b"], ["https://tec.openplanner.team/stops/Ccyfede1", "https://tec.openplanner.team/stops/Ccyfede2"], ["https://tec.openplanner.team/stops/X804aya", "https://tec.openplanner.team/stops/X804ayb"], ["https://tec.openplanner.team/stops/Lmopeup1", "https://tec.openplanner.team/stops/Lmopeup2"], ["https://tec.openplanner.team/stops/X982bra", "https://tec.openplanner.team/stops/X982bzb"], ["https://tec.openplanner.team/stops/NC11afa", "https://tec.openplanner.team/stops/NC11afb"], ["https://tec.openplanner.team/stops/Bbbksth2", "https://tec.openplanner.team/stops/Bhmmhde1"], ["https://tec.openplanner.team/stops/N118aaa", "https://tec.openplanner.team/stops/N118aab"], ["https://tec.openplanner.team/stops/LBEoblu2", "https://tec.openplanner.team/stops/Lemarti2"], ["https://tec.openplanner.team/stops/H4oe147a", "https://tec.openplanner.team/stops/H4oe148b"], ["https://tec.openplanner.team/stops/N424abb", "https://tec.openplanner.team/stops/NH01abc"], ["https://tec.openplanner.team/stops/Lseathe2", "https://tec.openplanner.team/stops/Lseboia2"], ["https://tec.openplanner.team/stops/X923ada", "https://tec.openplanner.team/stops/X949aeb"], ["https://tec.openplanner.team/stops/Bcrnrpc2", "https://tec.openplanner.team/stops/Bcrnvic2"], ["https://tec.openplanner.team/stops/H4pi131a", "https://tec.openplanner.team/stops/H4th141a"], ["https://tec.openplanner.team/stops/Cfcgrat1", "https://tec.openplanner.team/stops/Cfcstan1"], ["https://tec.openplanner.team/stops/X982baa", "https://tec.openplanner.team/stops/X996ada"], ["https://tec.openplanner.team/stops/N564aba", "https://tec.openplanner.team/stops/N564ada"], ["https://tec.openplanner.team/stops/LBEmich1", "https://tec.openplanner.team/stops/LBEssab2"], ["https://tec.openplanner.team/stops/Cpl4bra1", "https://tec.openplanner.team/stops/Cpl4bra3"], ["https://tec.openplanner.team/stops/Cgynuto1", "https://tec.openplanner.team/stops/Cgynuto2"], ["https://tec.openplanner.team/stops/H2fy121b", "https://tec.openplanner.team/stops/H2fy122b"], ["https://tec.openplanner.team/stops/X808adb", "https://tec.openplanner.team/stops/X808amb"], ["https://tec.openplanner.team/stops/Cchabat1", "https://tec.openplanner.team/stops/Clojone2"], ["https://tec.openplanner.team/stops/N423acb", "https://tec.openplanner.team/stops/N424aeb"], ["https://tec.openplanner.team/stops/Bnivgen2", "https://tec.openplanner.team/stops/Bnivpso1"], ["https://tec.openplanner.team/stops/H2hl113a", "https://tec.openplanner.team/stops/H2hp124a"], ["https://tec.openplanner.team/stops/X601cga", "https://tec.openplanner.team/stops/X601cgb"], ["https://tec.openplanner.team/stops/H1le128c", "https://tec.openplanner.team/stops/H1le129a"], ["https://tec.openplanner.team/stops/X601bpb", "https://tec.openplanner.team/stops/X601bzb"], ["https://tec.openplanner.team/stops/H2ll180a", "https://tec.openplanner.team/stops/H2ll184b"], ["https://tec.openplanner.team/stops/X786abb", "https://tec.openplanner.team/stops/X786acb"], ["https://tec.openplanner.team/stops/LWOplat1", "https://tec.openplanner.team/stops/LWOunio2"], ["https://tec.openplanner.team/stops/Cgxchan2", "https://tec.openplanner.team/stops/Cgxpair1"], ["https://tec.openplanner.team/stops/H1fa118a", "https://tec.openplanner.team/stops/H1fa118b"], ["https://tec.openplanner.team/stops/LMHeg--1", "https://tec.openplanner.team/stops/LMHeg--2"], ["https://tec.openplanner.team/stops/Bnodcab1", "https://tec.openplanner.team/stops/Bnodtir4"], ["https://tec.openplanner.team/stops/H1qu106b", "https://tec.openplanner.team/stops/H1qu116b"], ["https://tec.openplanner.team/stops/H4ne145b", "https://tec.openplanner.team/stops/H4wa153b"], ["https://tec.openplanner.team/stops/LCx728-1", "https://tec.openplanner.team/stops/LCxchal1"], ["https://tec.openplanner.team/stops/N353aea", "https://tec.openplanner.team/stops/N383afb"], ["https://tec.openplanner.team/stops/H4ef113c", "https://tec.openplanner.team/stops/H4ef113d"], ["https://tec.openplanner.team/stops/X898aja", "https://tec.openplanner.team/stops/X898ajb"], ["https://tec.openplanner.team/stops/LRRandr2", "https://tec.openplanner.team/stops/LRRmeta1"], ["https://tec.openplanner.team/stops/Llgbell1", "https://tec.openplanner.team/stops/Llgpont1"], ["https://tec.openplanner.team/stops/LARgare4", "https://tec.openplanner.team/stops/LHAmonu1"], ["https://tec.openplanner.team/stops/Lghgend1", "https://tec.openplanner.team/stops/Ljerose4"], ["https://tec.openplanner.team/stops/N894adb", "https://tec.openplanner.team/stops/N894aga"], ["https://tec.openplanner.team/stops/LHodomm2", "https://tec.openplanner.team/stops/LHovach1"], ["https://tec.openplanner.team/stops/N211aga", "https://tec.openplanner.team/stops/N212afb"], ["https://tec.openplanner.team/stops/LMOford1", "https://tec.openplanner.team/stops/LMOpiss2"], ["https://tec.openplanner.team/stops/Lhr3jui1", "https://tec.openplanner.team/stops/Lhrrhee*"], ["https://tec.openplanner.team/stops/N562bmb", "https://tec.openplanner.team/stops/N562bnb"], ["https://tec.openplanner.team/stops/N874aha", "https://tec.openplanner.team/stops/N874akb"], ["https://tec.openplanner.team/stops/LmDkape1", "https://tec.openplanner.team/stops/LmDkirc1"], ["https://tec.openplanner.team/stops/Ccabois1", "https://tec.openplanner.team/stops/Ccaegli1"], ["https://tec.openplanner.team/stops/Cbwegl1", "https://tec.openplanner.team/stops/Cmgarsi2"], ["https://tec.openplanner.team/stops/Bgzddur2", "https://tec.openplanner.team/stops/Bgzdegl4"], ["https://tec.openplanner.team/stops/N223abb", "https://tec.openplanner.team/stops/NL35aga"], ["https://tec.openplanner.team/stops/Ljecoqu1", "https://tec.openplanner.team/stops/LjeGRPMD"], ["https://tec.openplanner.team/stops/LrAberg1", "https://tec.openplanner.team/stops/LrAberg2"], ["https://tec.openplanner.team/stops/Lcaboun4", "https://tec.openplanner.team/stops/LPReg--1"], ["https://tec.openplanner.team/stops/H4hu115a", "https://tec.openplanner.team/stops/H4ld124b"], ["https://tec.openplanner.team/stops/H4ka186a", "https://tec.openplanner.team/stops/H4ka399a"], ["https://tec.openplanner.team/stops/X901acb", "https://tec.openplanner.team/stops/X901bra"], ["https://tec.openplanner.team/stops/X750aka", "https://tec.openplanner.team/stops/X750bkb"], ["https://tec.openplanner.team/stops/Croball2", "https://tec.openplanner.team/stops/Crocpai1"], ["https://tec.openplanner.team/stops/X824aca", "https://tec.openplanner.team/stops/X824acb"], ["https://tec.openplanner.team/stops/Lchsaro2", "https://tec.openplanner.team/stops/LHAheml1"], ["https://tec.openplanner.team/stops/Boffegl2", "https://tec.openplanner.team/stops/N515aob"], ["https://tec.openplanner.team/stops/H2le151a", "https://tec.openplanner.team/stops/H2le151b"], ["https://tec.openplanner.team/stops/X650afd", "https://tec.openplanner.team/stops/X671aga"], ["https://tec.openplanner.team/stops/Crebrux2", "https://tec.openplanner.team/stops/Crefont1"], ["https://tec.openplanner.team/stops/X812anb", "https://tec.openplanner.team/stops/X812bea"], ["https://tec.openplanner.team/stops/H4ta130a", "https://tec.openplanner.team/stops/H4ta132a"], ["https://tec.openplanner.team/stops/H1ro134a", "https://tec.openplanner.team/stops/H1ro136a"], ["https://tec.openplanner.team/stops/X879apb", "https://tec.openplanner.team/stops/X880agb"], ["https://tec.openplanner.team/stops/N321adb", "https://tec.openplanner.team/stops/N321afb"], ["https://tec.openplanner.team/stops/N520aia", "https://tec.openplanner.team/stops/N520aib"], ["https://tec.openplanner.team/stops/H1vb141a", "https://tec.openplanner.team/stops/H1wz169a"], ["https://tec.openplanner.team/stops/Cjualtr1", "https://tec.openplanner.team/stops/Cjualtr2"], ["https://tec.openplanner.team/stops/N501bwa", "https://tec.openplanner.team/stops/N501bxa"], ["https://tec.openplanner.team/stops/Becepon1", "https://tec.openplanner.team/stops/H2me113b"], ["https://tec.openplanner.team/stops/H2ll178a", "https://tec.openplanner.team/stops/H2ll198a"], ["https://tec.openplanner.team/stops/LrEborn2", "https://tec.openplanner.team/stops/LrEkais4"], ["https://tec.openplanner.team/stops/Bolgeva2", "https://tec.openplanner.team/stops/Bolgrga1"], ["https://tec.openplanner.team/stops/X607aeb", "https://tec.openplanner.team/stops/X621aba"], ["https://tec.openplanner.team/stops/H4lz161a", "https://tec.openplanner.team/stops/H4lz163a"], ["https://tec.openplanner.team/stops/N501ltb", "https://tec.openplanner.team/stops/N501lxb"], ["https://tec.openplanner.team/stops/H4tp146a", "https://tec.openplanner.team/stops/H4tp146b"], ["https://tec.openplanner.team/stops/LMIpast1", "https://tec.openplanner.team/stops/LMIpast2"], ["https://tec.openplanner.team/stops/Bnivpri1", "https://tec.openplanner.team/stops/Bnivros1"], ["https://tec.openplanner.team/stops/Lmaelhe1", "https://tec.openplanner.team/stops/LPRfond1"], ["https://tec.openplanner.team/stops/Bixlfla2", "https://tec.openplanner.team/stops/Bsgihmo2"], ["https://tec.openplanner.team/stops/X641ala", "https://tec.openplanner.team/stops/X641amb"], ["https://tec.openplanner.team/stops/N302abb", "https://tec.openplanner.team/stops/N302aca"], ["https://tec.openplanner.team/stops/LGLchap1", "https://tec.openplanner.team/stops/LGLchap3"], ["https://tec.openplanner.team/stops/N524aba", "https://tec.openplanner.team/stops/N524abb"], ["https://tec.openplanner.team/stops/N553abc", "https://tec.openplanner.team/stops/N553aja"], ["https://tec.openplanner.team/stops/Ccoconf1", "https://tec.openplanner.team/stops/Ccopeti2"], ["https://tec.openplanner.team/stops/N541aab", "https://tec.openplanner.team/stops/N541abb"], ["https://tec.openplanner.team/stops/H5rx139a", "https://tec.openplanner.team/stops/H5rx145b"], ["https://tec.openplanner.team/stops/Cprlpre1", "https://tec.openplanner.team/stops/Cprvsar1"], ["https://tec.openplanner.team/stops/H1cu130a", "https://tec.openplanner.team/stops/H1cu130b"], ["https://tec.openplanner.team/stops/LPLfp2-1", "https://tec.openplanner.team/stops/LPLfp2-2"], ["https://tec.openplanner.team/stops/X725bga", "https://tec.openplanner.team/stops/X725bgb"], ["https://tec.openplanner.team/stops/LLrbano1", "https://tec.openplanner.team/stops/LLrisa-*"], ["https://tec.openplanner.team/stops/H2pe161a", "https://tec.openplanner.team/stops/H2tr249a"], ["https://tec.openplanner.team/stops/LFCkett1", "https://tec.openplanner.team/stops/LWRcruc1"], ["https://tec.openplanner.team/stops/X663aea", "https://tec.openplanner.team/stops/X663aeb"], ["https://tec.openplanner.team/stops/LNEgaul4", "https://tec.openplanner.team/stops/LNEolne1"], ["https://tec.openplanner.team/stops/N201aoa", "https://tec.openplanner.team/stops/N201aoc"], ["https://tec.openplanner.team/stops/Cstcent1", "https://tec.openplanner.team/stops/Cstdona4"], ["https://tec.openplanner.team/stops/N562asa", "https://tec.openplanner.team/stops/N562bob"], ["https://tec.openplanner.team/stops/LAYcher1", "https://tec.openplanner.team/stops/LAYpl--2"], ["https://tec.openplanner.team/stops/X738aaa", "https://tec.openplanner.team/stops/X779ada"], ["https://tec.openplanner.team/stops/H1hr115a", "https://tec.openplanner.team/stops/H1hr128d"], ["https://tec.openplanner.team/stops/N515aja", "https://tec.openplanner.team/stops/NR27aaa"], ["https://tec.openplanner.team/stops/H1em105b", "https://tec.openplanner.team/stops/H1em111d"], ["https://tec.openplanner.team/stops/Bllnein3", "https://tec.openplanner.team/stops/Bllnrod4"], ["https://tec.openplanner.team/stops/LVMborl1", "https://tec.openplanner.team/stops/LVMrout2"], ["https://tec.openplanner.team/stops/Cgonvro3", "https://tec.openplanner.team/stops/Cmehame1"], ["https://tec.openplanner.team/stops/H4ce101b", "https://tec.openplanner.team/stops/H4or115a"], ["https://tec.openplanner.team/stops/LATdony1", "https://tec.openplanner.team/stops/LHUanth2"], ["https://tec.openplanner.team/stops/Bnivhut2", "https://tec.openplanner.team/stops/Bnivmfr1"], ["https://tec.openplanner.team/stops/H1hh109b", "https://tec.openplanner.team/stops/H1hh113b"], ["https://tec.openplanner.team/stops/LATmale2", "https://tec.openplanner.team/stops/LWNfani2"], ["https://tec.openplanner.team/stops/H2ll173b", "https://tec.openplanner.team/stops/H2sv216b"], ["https://tec.openplanner.team/stops/N558amc", "https://tec.openplanner.team/stops/N559abb"], ["https://tec.openplanner.team/stops/Bpecdel1", "https://tec.openplanner.team/stops/Bpechos2"], ["https://tec.openplanner.team/stops/X901agb", "https://tec.openplanner.team/stops/X902aua"], ["https://tec.openplanner.team/stops/H1br126a", "https://tec.openplanner.team/stops/H1br129a"], ["https://tec.openplanner.team/stops/LGeborn1", "https://tec.openplanner.team/stops/LkEbran1"], ["https://tec.openplanner.team/stops/LBTcarr3", "https://tec.openplanner.team/stops/LBTcarr4"], ["https://tec.openplanner.team/stops/Bbgelre2", "https://tec.openplanner.team/stops/Bwavbmo2"], ["https://tec.openplanner.team/stops/LNEolne2", "https://tec.openplanner.team/stops/LNEvpn-1"], ["https://tec.openplanner.team/stops/Cflchel5", "https://tec.openplanner.team/stops/NC12aab"], ["https://tec.openplanner.team/stops/Bnivari1", "https://tec.openplanner.team/stops/Bnivphm2"], ["https://tec.openplanner.team/stops/Lenabat1", "https://tec.openplanner.team/stops/Lenclar1"], ["https://tec.openplanner.team/stops/LCPcomm1", "https://tec.openplanner.team/stops/LCPlebl*"], ["https://tec.openplanner.team/stops/H4co105a", "https://tec.openplanner.team/stops/H4co148a"], ["https://tec.openplanner.team/stops/N501bhb", "https://tec.openplanner.team/stops/N501lra"], ["https://tec.openplanner.team/stops/LwRkirc1", "https://tec.openplanner.team/stops/LwRkirc2"], ["https://tec.openplanner.team/stops/LRRchea4", "https://tec.openplanner.team/stops/LRRmanc2"], ["https://tec.openplanner.team/stops/Ccychap1", "https://tec.openplanner.team/stops/Cvlbvir2"], ["https://tec.openplanner.team/stops/Blanath2", "https://tec.openplanner.team/stops/Blankal3"], ["https://tec.openplanner.team/stops/H2hp118a", "https://tec.openplanner.team/stops/H2hp118b"], ["https://tec.openplanner.team/stops/X725aib", "https://tec.openplanner.team/stops/X725aja"], ["https://tec.openplanner.team/stops/LBjflor2", "https://tec.openplanner.team/stops/X576ahb"], ["https://tec.openplanner.team/stops/Lbrptbr1", "https://tec.openplanner.team/stops/Lbrquai1"], ["https://tec.openplanner.team/stops/Cgpchgo2", "https://tec.openplanner.team/stops/Cgpcime1"], ["https://tec.openplanner.team/stops/X307aab", "https://tec.openplanner.team/stops/X307adb"], ["https://tec.openplanner.team/stops/N511ama", "https://tec.openplanner.team/stops/N511amb"], ["https://tec.openplanner.team/stops/X879afa", "https://tec.openplanner.team/stops/X879agb"], ["https://tec.openplanner.team/stops/N531asc", "https://tec.openplanner.team/stops/N584apa"], ["https://tec.openplanner.team/stops/X750apa", "https://tec.openplanner.team/stops/X750bdb"], ["https://tec.openplanner.team/stops/Brsgcfl2", "https://tec.openplanner.team/stops/Brsgsan2"], ["https://tec.openplanner.team/stops/H4fr139a", "https://tec.openplanner.team/stops/H4fr139b"], ["https://tec.openplanner.team/stops/H1fy119a", "https://tec.openplanner.team/stops/H1fy120a"], ["https://tec.openplanner.team/stops/LCpegli2", "https://tec.openplanner.team/stops/LSPecho1"], ["https://tec.openplanner.team/stops/Ljucano1", "https://tec.openplanner.team/stops/Ljucano2"], ["https://tec.openplanner.team/stops/N102aba", "https://tec.openplanner.team/stops/N151ajf"], ["https://tec.openplanner.team/stops/N501arb", "https://tec.openplanner.team/stops/N501cda"], ["https://tec.openplanner.team/stops/X616acb", "https://tec.openplanner.team/stops/X616aia"], ["https://tec.openplanner.team/stops/Cblcen3", "https://tec.openplanner.team/stops/Cblsall2"], ["https://tec.openplanner.team/stops/LOuouff1", "https://tec.openplanner.team/stops/LOurena2"], ["https://tec.openplanner.team/stops/LJU51--2", "https://tec.openplanner.team/stops/LJUfort2"], ["https://tec.openplanner.team/stops/X925akb", "https://tec.openplanner.team/stops/X947aea"], ["https://tec.openplanner.team/stops/LBbbac-1", "https://tec.openplanner.team/stops/LBbbac-2"], ["https://tec.openplanner.team/stops/H1ms308a", "https://tec.openplanner.team/stops/H1ms308b"], ["https://tec.openplanner.team/stops/LVLgrum1", "https://tec.openplanner.team/stops/LVLgrum2"], ["https://tec.openplanner.team/stops/Lmibove1", "https://tec.openplanner.team/stops/Lmibove2"], ["https://tec.openplanner.team/stops/H2ll179a", "https://tec.openplanner.team/stops/H2ll197a"], ["https://tec.openplanner.team/stops/Cpclibe3", "https://tec.openplanner.team/stops/Cvvgrsa1"], ["https://tec.openplanner.team/stops/X724aha", "https://tec.openplanner.team/stops/X766aab"], ["https://tec.openplanner.team/stops/N501lya", "https://tec.openplanner.team/stops/N501mey"], ["https://tec.openplanner.team/stops/LPLmonu2", "https://tec.openplanner.team/stops/LPLstri1"], ["https://tec.openplanner.team/stops/H4ty298a", "https://tec.openplanner.team/stops/H4ty298b"], ["https://tec.openplanner.team/stops/N211asa", "https://tec.openplanner.team/stops/N211ava"], ["https://tec.openplanner.team/stops/LOUbarr1", "https://tec.openplanner.team/stops/LOUbarr2"], ["https://tec.openplanner.team/stops/N103aga", "https://tec.openplanner.team/stops/N103agb"], ["https://tec.openplanner.team/stops/X637ama", "https://tec.openplanner.team/stops/X650aab"], ["https://tec.openplanner.team/stops/N231agb", "https://tec.openplanner.team/stops/N232bxb"], ["https://tec.openplanner.team/stops/X639amb", "https://tec.openplanner.team/stops/X639amd"], ["https://tec.openplanner.team/stops/Llgchar2", "https://tec.openplanner.team/stops/Llgdarc1"], ["https://tec.openplanner.team/stops/N501aja", "https://tec.openplanner.team/stops/N501mbb"], ["https://tec.openplanner.team/stops/X901aub", "https://tec.openplanner.team/stops/X901blb"], ["https://tec.openplanner.team/stops/X992aaa", "https://tec.openplanner.team/stops/X992aca"], ["https://tec.openplanner.team/stops/N501gbb", "https://tec.openplanner.team/stops/N501lob"], ["https://tec.openplanner.team/stops/Bmaregl1", "https://tec.openplanner.team/stops/Btilmar2"], ["https://tec.openplanner.team/stops/Canbruy1", "https://tec.openplanner.team/stops/Canbruy2"], ["https://tec.openplanner.team/stops/H4ty295a", "https://tec.openplanner.team/stops/H4ty295b"], ["https://tec.openplanner.team/stops/LHGbeur3", "https://tec.openplanner.team/stops/LXhvina2"], ["https://tec.openplanner.team/stops/X982bsb", "https://tec.openplanner.team/stops/X982byb"], ["https://tec.openplanner.team/stops/Crs74em1", "https://tec.openplanner.team/stops/Crsrose2"], ["https://tec.openplanner.team/stops/X652aeb", "https://tec.openplanner.team/stops/X652afc"], ["https://tec.openplanner.team/stops/Ccpbrun1", "https://tec.openplanner.team/stops/H2ch110b"], ["https://tec.openplanner.team/stops/Lprdavi1", "https://tec.openplanner.team/stops/Lvefanc1"], ["https://tec.openplanner.team/stops/X314aaa", "https://tec.openplanner.team/stops/X314aab"], ["https://tec.openplanner.team/stops/Cbuegl1", "https://tec.openplanner.team/stops/Cbugara2"], ["https://tec.openplanner.team/stops/Brebcha2", "https://tec.openplanner.team/stops/Brebmtg2"], ["https://tec.openplanner.team/stops/N536aba", "https://tec.openplanner.team/stops/N580aeb"], ["https://tec.openplanner.team/stops/LsVgesc1", "https://tec.openplanner.team/stops/LsVlust2"], ["https://tec.openplanner.team/stops/X725aea", "https://tec.openplanner.team/stops/X725apb"], ["https://tec.openplanner.team/stops/Lsefive2", "https://tec.openplanner.team/stops/Lsemany2"], ["https://tec.openplanner.team/stops/H4jm117c", "https://tec.openplanner.team/stops/H4we136b"], ["https://tec.openplanner.team/stops/Llgchar1", "https://tec.openplanner.team/stops/Llgvero4"], ["https://tec.openplanner.team/stops/Ljufler2", "https://tec.openplanner.team/stops/Ljufore1"], ["https://tec.openplanner.team/stops/Bdlmflo2", "https://tec.openplanner.team/stops/Bdlmgla1"], ["https://tec.openplanner.team/stops/X547aja", "https://tec.openplanner.team/stops/X576afb"], ["https://tec.openplanner.team/stops/Cvtvois1", "https://tec.openplanner.team/stops/Cvtvois2"], ["https://tec.openplanner.team/stops/H2ca101b", "https://tec.openplanner.team/stops/H2ca109a"], ["https://tec.openplanner.team/stops/LAYcher2", "https://tec.openplanner.team/stops/LAYcorn1"], ["https://tec.openplanner.team/stops/N102aba", "https://tec.openplanner.team/stops/N102abb"], ["https://tec.openplanner.team/stops/LSW26--1", "https://tec.openplanner.team/stops/LSWscie2"], ["https://tec.openplanner.team/stops/Bblmpro1", "https://tec.openplanner.team/stops/Bnilpie2"], ["https://tec.openplanner.team/stops/N244aja", "https://tec.openplanner.team/stops/N244ama"], ["https://tec.openplanner.team/stops/Binccha1", "https://tec.openplanner.team/stops/Brxmbos1"], ["https://tec.openplanner.team/stops/Blanmde1", "https://tec.openplanner.team/stops/Blanraa2"], ["https://tec.openplanner.team/stops/N228aab", "https://tec.openplanner.team/stops/N228aca"], ["https://tec.openplanner.team/stops/Lbocomm2", "https://tec.openplanner.team/stops/Lstbold1"], ["https://tec.openplanner.team/stops/LgHdorf1", "https://tec.openplanner.team/stops/LmSluxh2"], ["https://tec.openplanner.team/stops/LGmeg--1", "https://tec.openplanner.team/stops/LHmcarr2"], ["https://tec.openplanner.team/stops/N127aca", "https://tec.openplanner.team/stops/N135bdb"], ["https://tec.openplanner.team/stops/X610aba", "https://tec.openplanner.team/stops/X610adb"], ["https://tec.openplanner.team/stops/H4bo116a", "https://tec.openplanner.team/stops/H4bo122a"], ["https://tec.openplanner.team/stops/H1ho140a", "https://tec.openplanner.team/stops/H1wa144b"], ["https://tec.openplanner.team/stops/X986acb", "https://tec.openplanner.team/stops/X986adb"], ["https://tec.openplanner.team/stops/LkEbran2", "https://tec.openplanner.team/stops/LkEgss-2"], ["https://tec.openplanner.team/stops/LVAakke1", "https://tec.openplanner.team/stops/LVApark2"], ["https://tec.openplanner.team/stops/Cmocime1", "https://tec.openplanner.team/stops/Cmoscap2"], ["https://tec.openplanner.team/stops/NL81aga", "https://tec.openplanner.team/stops/NL81aha"], ["https://tec.openplanner.team/stops/LLeeco-1", "https://tec.openplanner.team/stops/LLemonu2"], ["https://tec.openplanner.team/stops/H4hx116a", "https://tec.openplanner.team/stops/H4hx119b"], ["https://tec.openplanner.team/stops/LHNcreh2", "https://tec.openplanner.team/stops/NL37aaa"], ["https://tec.openplanner.team/stops/N235aba", "https://tec.openplanner.team/stops/N235aca"], ["https://tec.openplanner.team/stops/X903ada", "https://tec.openplanner.team/stops/X903agb"], ["https://tec.openplanner.team/stops/Caujonc1", "https://tec.openplanner.team/stops/Cauwauq1"], ["https://tec.openplanner.team/stops/Bezeksj3", "https://tec.openplanner.team/stops/Bneeblo1"], ["https://tec.openplanner.team/stops/H4os221a", "https://tec.openplanner.team/stops/H4os223a"], ["https://tec.openplanner.team/stops/LMAfali2", "https://tec.openplanner.team/stops/LMApape1"], ["https://tec.openplanner.team/stops/N501bya", "https://tec.openplanner.team/stops/N501cja"], ["https://tec.openplanner.team/stops/LWbboeg2", "https://tec.openplanner.team/stops/LWbregn2"], ["https://tec.openplanner.team/stops/LAmcorn2", "https://tec.openplanner.team/stops/LNHbarr1"], ["https://tec.openplanner.team/stops/H4hx112b", "https://tec.openplanner.team/stops/H4wa151a"], ["https://tec.openplanner.team/stops/LWRferm1", "https://tec.openplanner.team/stops/LWRtroi1"], ["https://tec.openplanner.team/stops/H4pl120a", "https://tec.openplanner.team/stops/H4pl135b"], ["https://tec.openplanner.team/stops/LPLaube1", "https://tec.openplanner.team/stops/LPLroth1"], ["https://tec.openplanner.team/stops/N538akb", "https://tec.openplanner.team/stops/N538amc"], ["https://tec.openplanner.team/stops/Crocona1", "https://tec.openplanner.team/stops/Crojume2"], ["https://tec.openplanner.team/stops/X398aaa", "https://tec.openplanner.team/stops/X398abb"], ["https://tec.openplanner.team/stops/Canchbr1", "https://tec.openplanner.team/stops/Cfocobe1"], ["https://tec.openplanner.team/stops/H1ho123b", "https://tec.openplanner.team/stops/H1ho141a"], ["https://tec.openplanner.team/stops/Cfacamp1", "https://tec.openplanner.team/stops/Cfastan2"], ["https://tec.openplanner.team/stops/LPLcite2", "https://tec.openplanner.team/stops/LPLcroi2"], ["https://tec.openplanner.team/stops/LBLtroi1", "https://tec.openplanner.team/stops/LCEplac2"], ["https://tec.openplanner.team/stops/Bmsgpap1", "https://tec.openplanner.team/stops/Bottbru2"], ["https://tec.openplanner.team/stops/Bbgnton1", "https://tec.openplanner.team/stops/N584aja"], ["https://tec.openplanner.team/stops/LAVcime2", "https://tec.openplanner.team/stops/LAVdepr1"], ["https://tec.openplanner.team/stops/X618aha", "https://tec.openplanner.team/stops/X618ama"], ["https://tec.openplanner.team/stops/LBNruns1", "https://tec.openplanner.team/stops/LBNruns2"], ["https://tec.openplanner.team/stops/X717aaa", "https://tec.openplanner.team/stops/X717afa"], ["https://tec.openplanner.team/stops/Barqhro2", "https://tec.openplanner.team/stops/Barqhro4"], ["https://tec.openplanner.team/stops/Cmmadma1", "https://tec.openplanner.team/stops/Cmmplac4"], ["https://tec.openplanner.team/stops/LVthest2", "https://tec.openplanner.team/stops/LVthest4"], ["https://tec.openplanner.team/stops/X811aca", "https://tec.openplanner.team/stops/X811aja"], ["https://tec.openplanner.team/stops/Bitrcha2", "https://tec.openplanner.team/stops/Bitrmde2"], ["https://tec.openplanner.team/stops/Lvcfogu4", "https://tec.openplanner.team/stops/Lvcfogu6"], ["https://tec.openplanner.team/stops/LCogara1", "https://tec.openplanner.team/stops/LCogara2"], ["https://tec.openplanner.team/stops/Csrcant1", "https://tec.openplanner.team/stops/Csrcarr2"], ["https://tec.openplanner.team/stops/H4gr110b", "https://tec.openplanner.team/stops/H4gr112a"], ["https://tec.openplanner.team/stops/H1gy113b", "https://tec.openplanner.team/stops/H1le125a"], ["https://tec.openplanner.team/stops/X896aea", "https://tec.openplanner.team/stops/X896afa"], ["https://tec.openplanner.team/stops/LHmcite1", "https://tec.openplanner.team/stops/LMAcomm1"], ["https://tec.openplanner.team/stops/Lghgend2", "https://tec.openplanner.team/stops/Ljemake2"], ["https://tec.openplanner.team/stops/LTPbeau1", "https://tec.openplanner.team/stops/LTPwann1"], ["https://tec.openplanner.team/stops/Bwatrte2", "https://tec.openplanner.team/stops/Bwatsuc1"], ["https://tec.openplanner.team/stops/Bgnvcom1", "https://tec.openplanner.team/stops/Bgnvpap1"], ["https://tec.openplanner.team/stops/Lbrdepo2", "https://tec.openplanner.team/stops/Lbrhvl-*"], ["https://tec.openplanner.team/stops/Cvvgrsa2", "https://tec.openplanner.team/stops/Cvvsncb1"], ["https://tec.openplanner.team/stops/Ctaprai3", "https://tec.openplanner.team/stops/N530aca"], ["https://tec.openplanner.team/stops/LTibarb1", "https://tec.openplanner.team/stops/LTibarb2"], ["https://tec.openplanner.team/stops/Llgcita1", "https://tec.openplanner.team/stops/Llgcita2"], ["https://tec.openplanner.team/stops/Cgxvkho1", "https://tec.openplanner.team/stops/Cgxvkho4"], ["https://tec.openplanner.team/stops/Baudhde1", "https://tec.openplanner.team/stops/Baudwav2"], ["https://tec.openplanner.team/stops/Bovesog1", "https://tec.openplanner.team/stops/Bovesog2"], ["https://tec.openplanner.team/stops/Lcesart1", "https://tec.openplanner.team/stops/Lcesart2"], ["https://tec.openplanner.team/stops/Baudvdr2", "https://tec.openplanner.team/stops/Bwbfeta2"], ["https://tec.openplanner.team/stops/NB33aha", "https://tec.openplanner.team/stops/NB33aia"], ["https://tec.openplanner.team/stops/Bllngar3", "https://tec.openplanner.team/stops/Bllngar5"], ["https://tec.openplanner.team/stops/N365aaa", "https://tec.openplanner.team/stops/N365abb"], ["https://tec.openplanner.team/stops/X750aoa", "https://tec.openplanner.team/stops/X750bla"], ["https://tec.openplanner.team/stops/LkTkabi1", "https://tec.openplanner.team/stops/LwAkett2"], ["https://tec.openplanner.team/stops/X615ada", "https://tec.openplanner.team/stops/X615afa"], ["https://tec.openplanner.team/stops/Lsn184-2", "https://tec.openplanner.team/stops/Lsnhoco1"], ["https://tec.openplanner.team/stops/Lbomc--4", "https://tec.openplanner.team/stops/Lbooffe1"], ["https://tec.openplanner.team/stops/H5qu140a", "https://tec.openplanner.team/stops/H5st169b"], ["https://tec.openplanner.team/stops/N538aib", "https://tec.openplanner.team/stops/N538ajc"], ["https://tec.openplanner.team/stops/N147aaa", "https://tec.openplanner.team/stops/N147afb"], ["https://tec.openplanner.team/stops/LBNburg2", "https://tec.openplanner.team/stops/LBNover2"], ["https://tec.openplanner.team/stops/N230aeb", "https://tec.openplanner.team/stops/N233abb"], ["https://tec.openplanner.team/stops/H4lz117b", "https://tec.openplanner.team/stops/H4lz122b"], ["https://tec.openplanner.team/stops/H4cw106a", "https://tec.openplanner.team/stops/H4cw106b"], ["https://tec.openplanner.team/stops/H3br107a", "https://tec.openplanner.team/stops/H3br122b"], ["https://tec.openplanner.team/stops/Bucceng2", "https://tec.openplanner.team/stops/Buccmer1"], ["https://tec.openplanner.team/stops/X664aoa", "https://tec.openplanner.team/stops/X664aob"], ["https://tec.openplanner.team/stops/H4ce107a", "https://tec.openplanner.team/stops/H4ef112b"], ["https://tec.openplanner.team/stops/NL77aab", "https://tec.openplanner.team/stops/NL77aba"], ["https://tec.openplanner.team/stops/LMgbern1", "https://tec.openplanner.team/stops/LMgbern2"], ["https://tec.openplanner.team/stops/N232ana", "https://tec.openplanner.team/stops/N232awb"], ["https://tec.openplanner.team/stops/H1ha191a", "https://tec.openplanner.team/stops/H1ha196a"], ["https://tec.openplanner.team/stops/X754aeb", "https://tec.openplanner.team/stops/X754aob"], ["https://tec.openplanner.team/stops/Llgcadr4", "https://tec.openplanner.team/stops/LlgOPER6"], ["https://tec.openplanner.team/stops/X919aja", "https://tec.openplanner.team/stops/X919ajb"], ["https://tec.openplanner.team/stops/LSMpoin1", "https://tec.openplanner.team/stops/LSMtarg1"], ["https://tec.openplanner.team/stops/LLrquar1", "https://tec.openplanner.team/stops/LTHjevo1"], ["https://tec.openplanner.team/stops/LAOeg--1", "https://tec.openplanner.team/stops/LTGsucr1"], ["https://tec.openplanner.team/stops/LAUcarr1", "https://tec.openplanner.team/stops/LAUcarr2"], ["https://tec.openplanner.team/stops/Lhrpepi1", "https://tec.openplanner.team/stops/Lhrtilm2"], ["https://tec.openplanner.team/stops/Bgembsg1", "https://tec.openplanner.team/stops/N522aka"], ["https://tec.openplanner.team/stops/LrEdic71", "https://tec.openplanner.team/stops/LrEmeil1"], ["https://tec.openplanner.team/stops/H1lm107a", "https://tec.openplanner.team/stops/H1lm107b"], ["https://tec.openplanner.team/stops/X626adb", "https://tec.openplanner.team/stops/X626ana"], ["https://tec.openplanner.team/stops/Bwlhpmt1", "https://tec.openplanner.team/stops/Bwlhpmt3"], ["https://tec.openplanner.team/stops/Lchstat*", "https://tec.openplanner.team/stops/Lchtche2"], ["https://tec.openplanner.team/stops/Bbounci2", "https://tec.openplanner.team/stops/Bcerldo1"], ["https://tec.openplanner.team/stops/Lsefoot2", "https://tec.openplanner.team/stops/Lsemaqu2"], ["https://tec.openplanner.team/stops/N501hja", "https://tec.openplanner.team/stops/N501hjc"], ["https://tec.openplanner.team/stops/Cbugara1", "https://tec.openplanner.team/stops/Cbugara2"], ["https://tec.openplanner.team/stops/H2pe161a", "https://tec.openplanner.team/stops/H2pe161b"], ["https://tec.openplanner.team/stops/N308beb", "https://tec.openplanner.team/stops/N308bhb"], ["https://tec.openplanner.team/stops/Bmrlhan1", "https://tec.openplanner.team/stops/Bmrlhan3"], ["https://tec.openplanner.team/stops/H4ty290a", "https://tec.openplanner.team/stops/H4ty325a"], ["https://tec.openplanner.team/stops/N501afb", "https://tec.openplanner.team/stops/N503acb"], ["https://tec.openplanner.team/stops/H2hg154b", "https://tec.openplanner.team/stops/H2hg154c"], ["https://tec.openplanner.team/stops/X765adb", "https://tec.openplanner.team/stops/X765aea"], ["https://tec.openplanner.team/stops/N548acb", "https://tec.openplanner.team/stops/N548acc"], ["https://tec.openplanner.team/stops/LWbburn1", "https://tec.openplanner.team/stops/LWberno1"], ["https://tec.openplanner.team/stops/H1sp356a", "https://tec.openplanner.team/stops/H1ss352a"], ["https://tec.openplanner.team/stops/LhGrote1", "https://tec.openplanner.team/stops/LhGrote2"], ["https://tec.openplanner.team/stops/Lagcolo1", "https://tec.openplanner.team/stops/LTIp%C3%A9pi1"], ["https://tec.openplanner.team/stops/X876aaa", "https://tec.openplanner.team/stops/X887aab"], ["https://tec.openplanner.team/stops/LRRoser2", "https://tec.openplanner.team/stops/LSSvill2"], ["https://tec.openplanner.team/stops/X822akb", "https://tec.openplanner.team/stops/X822ara"], ["https://tec.openplanner.team/stops/LHrprie1", "https://tec.openplanner.team/stops/LHrrard2"], ["https://tec.openplanner.team/stops/Bcbqcha1", "https://tec.openplanner.team/stops/Bhaless2"], ["https://tec.openplanner.team/stops/LTPwann2", "https://tec.openplanner.team/stops/LWneg--1"], ["https://tec.openplanner.team/stops/H4fl115a", "https://tec.openplanner.team/stops/H4lp122b"], ["https://tec.openplanner.team/stops/LFabraa1", "https://tec.openplanner.team/stops/LFacruc1"], ["https://tec.openplanner.team/stops/LSkkeri1", "https://tec.openplanner.team/stops/LSkkeri2"], ["https://tec.openplanner.team/stops/LPLcarr1", "https://tec.openplanner.team/stops/LPLecco2"], ["https://tec.openplanner.team/stops/X614azb", "https://tec.openplanner.team/stops/X614bab"], ["https://tec.openplanner.team/stops/Cchhopi3", "https://tec.openplanner.team/stops/Cchhopi4"], ["https://tec.openplanner.team/stops/N506afb", "https://tec.openplanner.team/stops/N506asa"], ["https://tec.openplanner.team/stops/N236aca", "https://tec.openplanner.team/stops/N236adb"], ["https://tec.openplanner.team/stops/NC44aaa", "https://tec.openplanner.team/stops/NC44aab"], ["https://tec.openplanner.team/stops/N120aea", "https://tec.openplanner.team/stops/N120afb"], ["https://tec.openplanner.team/stops/X725aed", "https://tec.openplanner.team/stops/X725aee"], ["https://tec.openplanner.team/stops/N551agc", "https://tec.openplanner.team/stops/N551arc"], ["https://tec.openplanner.team/stops/N513asb", "https://tec.openplanner.team/stops/N513avb"], ["https://tec.openplanner.team/stops/LsVsage1", "https://tec.openplanner.team/stops/LwSschw1"], ["https://tec.openplanner.team/stops/N508aoa", "https://tec.openplanner.team/stops/N509aab"], ["https://tec.openplanner.team/stops/Lgdblom2", "https://tec.openplanner.team/stops/Lgdrena2"], ["https://tec.openplanner.team/stops/N123aca", "https://tec.openplanner.team/stops/N123acb"], ["https://tec.openplanner.team/stops/X823afa", "https://tec.openplanner.team/stops/X823afb"], ["https://tec.openplanner.team/stops/Clrmarl4", "https://tec.openplanner.team/stops/Clrpast2"], ["https://tec.openplanner.team/stops/H4bf105a", "https://tec.openplanner.team/stops/H4ro156a"], ["https://tec.openplanner.team/stops/N352acb", "https://tec.openplanner.team/stops/N367ada"], ["https://tec.openplanner.team/stops/Bgnvgir2", "https://tec.openplanner.team/stops/Bohnr731"], ["https://tec.openplanner.team/stops/X763afa", "https://tec.openplanner.team/stops/X765aga"], ["https://tec.openplanner.team/stops/Bhenfer2", "https://tec.openplanner.team/stops/Bquegen2"], ["https://tec.openplanner.team/stops/H5rx131b", "https://tec.openplanner.team/stops/H5rx132b"], ["https://tec.openplanner.team/stops/N232aib", "https://tec.openplanner.team/stops/N232aqb"], ["https://tec.openplanner.team/stops/LSseg--1", "https://tec.openplanner.team/stops/N506bca"], ["https://tec.openplanner.team/stops/H4hs135b", "https://tec.openplanner.team/stops/H4hs137b"], ["https://tec.openplanner.team/stops/X921alb", "https://tec.openplanner.team/stops/X921aqb"], ["https://tec.openplanner.team/stops/LOcalbe1", "https://tec.openplanner.team/stops/LOcalbe2"], ["https://tec.openplanner.team/stops/X636aga", "https://tec.openplanner.team/stops/X636agb"], ["https://tec.openplanner.team/stops/Cvpcime2", "https://tec.openplanner.team/stops/Cvpplan2"], ["https://tec.openplanner.team/stops/X982adb", "https://tec.openplanner.team/stops/X982aea"], ["https://tec.openplanner.team/stops/N534bnh", "https://tec.openplanner.team/stops/N534cbh"], ["https://tec.openplanner.team/stops/H2ch105d", "https://tec.openplanner.team/stops/H2ch112b"], ["https://tec.openplanner.team/stops/Cgynoir1", "https://tec.openplanner.team/stops/Cgyplvi1"], ["https://tec.openplanner.team/stops/LJSforg1", "https://tec.openplanner.team/stops/Lpepano1"], ["https://tec.openplanner.team/stops/Ccicloc2", "https://tec.openplanner.team/stops/Clvimtr1"], ["https://tec.openplanner.team/stops/LRmmabr2", "https://tec.openplanner.team/stops/LRmstat1"], ["https://tec.openplanner.team/stops/H4ml206b", "https://tec.openplanner.team/stops/H4ml209a"], ["https://tec.openplanner.team/stops/N513aaa", "https://tec.openplanner.team/stops/N513bfa"], ["https://tec.openplanner.team/stops/LFreg--1", "https://tec.openplanner.team/stops/LLUcdoy1"], ["https://tec.openplanner.team/stops/Blsmbfe1", "https://tec.openplanner.team/stops/Blsmbfe2"], ["https://tec.openplanner.team/stops/Bwatber1", "https://tec.openplanner.team/stops/Bwatcpe1"], ["https://tec.openplanner.team/stops/LhLdorf1", "https://tec.openplanner.team/stops/LlSzoll2"], ["https://tec.openplanner.team/stops/Lghencl2", "https://tec.openplanner.team/stops/Lghomni2"], ["https://tec.openplanner.team/stops/LBUvall1", "https://tec.openplanner.team/stops/LLtrout1"], ["https://tec.openplanner.team/stops/LAUvdab1", "https://tec.openplanner.team/stops/LCxwade1"], ["https://tec.openplanner.team/stops/N585akb", "https://tec.openplanner.team/stops/N585ala"], ["https://tec.openplanner.team/stops/Bgoemho1", "https://tec.openplanner.team/stops/Bgoemho2"], ["https://tec.openplanner.team/stops/H1ol145b", "https://tec.openplanner.team/stops/H5is168a"], ["https://tec.openplanner.team/stops/H4do106a", "https://tec.openplanner.team/stops/H4ev119a"], ["https://tec.openplanner.team/stops/LgRzent2", "https://tec.openplanner.team/stops/LoDscha1"], ["https://tec.openplanner.team/stops/Lpemata1", "https://tec.openplanner.team/stops/Lpepano1"], ["https://tec.openplanner.team/stops/LFtcarr1", "https://tec.openplanner.team/stops/X597aob"], ["https://tec.openplanner.team/stops/H1an100a", "https://tec.openplanner.team/stops/H1on128c"], ["https://tec.openplanner.team/stops/H1lb138a", "https://tec.openplanner.team/stops/H1lb153a"], ["https://tec.openplanner.team/stops/Bblafrn1", "https://tec.openplanner.team/stops/Bblague1"], ["https://tec.openplanner.team/stops/X768alb", "https://tec.openplanner.team/stops/X791aaa"], ["https://tec.openplanner.team/stops/X947adb", "https://tec.openplanner.team/stops/X948ala"], ["https://tec.openplanner.team/stops/X805ajb", "https://tec.openplanner.team/stops/X807acb"], ["https://tec.openplanner.team/stops/N232aba", "https://tec.openplanner.team/stops/N261aba"], ["https://tec.openplanner.team/stops/Blmlbif2", "https://tec.openplanner.team/stops/Brsreco1"], ["https://tec.openplanner.team/stops/LCsbors1", "https://tec.openplanner.team/stops/LCsbors2"], ["https://tec.openplanner.team/stops/LwYneue2", "https://tec.openplanner.team/stops/LwYnr261"], ["https://tec.openplanner.team/stops/N563amb", "https://tec.openplanner.team/stops/N563aoa"], ["https://tec.openplanner.team/stops/N215acd", "https://tec.openplanner.team/stops/N232ceb"], ["https://tec.openplanner.team/stops/Bdlmgla1", "https://tec.openplanner.team/stops/Bdlmgla4"], ["https://tec.openplanner.team/stops/Cgoclad1", "https://tec.openplanner.team/stops/Cgostex2"], ["https://tec.openplanner.team/stops/X804aoa", "https://tec.openplanner.team/stops/X804bta"], ["https://tec.openplanner.team/stops/Bblmwma1", "https://tec.openplanner.team/stops/Bwlhpma2"], ["https://tec.openplanner.team/stops/X616afb", "https://tec.openplanner.team/stops/X624aea"], ["https://tec.openplanner.team/stops/H2bh117b", "https://tec.openplanner.team/stops/H2lc146b"], ["https://tec.openplanner.team/stops/Bbchgod2", "https://tec.openplanner.team/stops/Bbchndb2"], ["https://tec.openplanner.team/stops/Cplelec1", "https://tec.openplanner.team/stops/Cplrmon2"], ["https://tec.openplanner.team/stops/LVlleno1", "https://tec.openplanner.team/stops/LVlleno2"], ["https://tec.openplanner.team/stops/LSZarze4", "https://tec.openplanner.team/stops/LWycabi2"], ["https://tec.openplanner.team/stops/N235aaa", "https://tec.openplanner.team/stops/N235aha"], ["https://tec.openplanner.team/stops/Craappa2", "https://tec.openplanner.team/stops/Cradado1"], ["https://tec.openplanner.team/stops/H1as103d", "https://tec.openplanner.team/stops/H1as154b"], ["https://tec.openplanner.team/stops/N135aib", "https://tec.openplanner.team/stops/N135ala"], ["https://tec.openplanner.team/stops/H4po127a", "https://tec.openplanner.team/stops/H4po128b"], ["https://tec.openplanner.team/stops/N563aab", "https://tec.openplanner.team/stops/N564afb"], ["https://tec.openplanner.team/stops/X917ahb", "https://tec.openplanner.team/stops/X921ana"], ["https://tec.openplanner.team/stops/X769aeb", "https://tec.openplanner.team/stops/X769asa"], ["https://tec.openplanner.team/stops/H1el134b", "https://tec.openplanner.team/stops/H1el138b"], ["https://tec.openplanner.team/stops/Llgchau1", "https://tec.openplanner.team/stops/Llgchau2"], ["https://tec.openplanner.team/stops/Bblaaca1", "https://tec.openplanner.team/stops/Bblaphi2"], ["https://tec.openplanner.team/stops/Bhanwav1", "https://tec.openplanner.team/stops/Bthscbl1"], ["https://tec.openplanner.team/stops/Lgrfass2", "https://tec.openplanner.team/stops/Lgrspir2"], ["https://tec.openplanner.team/stops/X602aoa", "https://tec.openplanner.team/stops/X602asa"], ["https://tec.openplanner.team/stops/X733aea", "https://tec.openplanner.team/stops/X734aqb"], ["https://tec.openplanner.team/stops/H1ms261a", "https://tec.openplanner.team/stops/H1ob361b"], ["https://tec.openplanner.team/stops/Cfoermi2", "https://tec.openplanner.team/stops/Clrpast2"], ["https://tec.openplanner.team/stops/X822adb", "https://tec.openplanner.team/stops/X822aka"], ["https://tec.openplanner.team/stops/Lmocoop2", "https://tec.openplanner.team/stops/Lmogerm1"], ["https://tec.openplanner.team/stops/H4lh118a", "https://tec.openplanner.team/stops/H5wo122b"], ["https://tec.openplanner.team/stops/Clupcfe1", "https://tec.openplanner.team/stops/Cvvcime1"], ["https://tec.openplanner.team/stops/X953aeb", "https://tec.openplanner.team/stops/X953afa"], ["https://tec.openplanner.team/stops/X948afa", "https://tec.openplanner.team/stops/X948aga"], ["https://tec.openplanner.team/stops/H4bc108a", "https://tec.openplanner.team/stops/H4bc108b"], ["https://tec.openplanner.team/stops/Bnodblt1", "https://tec.openplanner.team/stops/Boplcsj1"], ["https://tec.openplanner.team/stops/NL81aea", "https://tec.openplanner.team/stops/NL81afb"], ["https://tec.openplanner.team/stops/Bchgflo2", "https://tec.openplanner.team/stops/Bchgqve4"], ["https://tec.openplanner.team/stops/X675aba", "https://tec.openplanner.team/stops/X820aha"], ["https://tec.openplanner.team/stops/LaTcolo2", "https://tec.openplanner.team/stops/LmCkirc2"], ["https://tec.openplanner.team/stops/X654aja", "https://tec.openplanner.team/stops/X654ajb"], ["https://tec.openplanner.team/stops/Ccipech1", "https://tec.openplanner.team/stops/Ccipech2"], ["https://tec.openplanner.team/stops/X768aed", "https://tec.openplanner.team/stops/X768afa"], ["https://tec.openplanner.team/stops/X624adb", "https://tec.openplanner.team/stops/X624afa"], ["https://tec.openplanner.team/stops/H1gg116a", "https://tec.openplanner.team/stops/H1gg116b"], ["https://tec.openplanner.team/stops/X927acb", "https://tec.openplanner.team/stops/X928aab"], ["https://tec.openplanner.team/stops/Bettbue1", "https://tec.openplanner.team/stops/Bettcha1"], ["https://tec.openplanner.team/stops/H4ag102b", "https://tec.openplanner.team/stops/H4ga150a"], ["https://tec.openplanner.team/stops/LaAnorm1", "https://tec.openplanner.team/stops/LpEzoll*"], ["https://tec.openplanner.team/stops/LVEtomb1", "https://tec.openplanner.team/stops/LVEtomb2"], ["https://tec.openplanner.team/stops/Ljegare1", "https://tec.openplanner.team/stops/Ljerobi2"], ["https://tec.openplanner.team/stops/LFIcabi2", "https://tec.openplanner.team/stops/LFIeg--2"], ["https://tec.openplanner.team/stops/H4ru245a", "https://tec.openplanner.team/stops/H4wc373b"], ["https://tec.openplanner.team/stops/H2ha135c", "https://tec.openplanner.team/stops/H2ha137a"], ["https://tec.openplanner.team/stops/X639aab", "https://tec.openplanner.team/stops/X652ajb"], ["https://tec.openplanner.team/stops/X804asa", "https://tec.openplanner.team/stops/X804bda"], ["https://tec.openplanner.team/stops/Borblim2", "https://tec.openplanner.team/stops/Borbode1"], ["https://tec.openplanner.team/stops/N528afb", "https://tec.openplanner.team/stops/N528afz"], ["https://tec.openplanner.team/stops/X601afb", "https://tec.openplanner.team/stops/X601ara"], ["https://tec.openplanner.team/stops/LVBvaux1", "https://tec.openplanner.team/stops/LWDmass1"], ["https://tec.openplanner.team/stops/H1sy140a", "https://tec.openplanner.team/stops/H1to151a"], ["https://tec.openplanner.team/stops/H5rx140a", "https://tec.openplanner.team/stops/H5rx146a"], ["https://tec.openplanner.team/stops/N513aob", "https://tec.openplanner.team/stops/N513apa"], ["https://tec.openplanner.team/stops/LThhoul1", "https://tec.openplanner.team/stops/LThplen1"], ["https://tec.openplanner.team/stops/LHTboul2", "https://tec.openplanner.team/stops/LHTcerc4"], ["https://tec.openplanner.team/stops/H5el112a", "https://tec.openplanner.team/stops/H5el114a"], ["https://tec.openplanner.team/stops/LSJ38--2", "https://tec.openplanner.team/stops/LSJlabe2"], ["https://tec.openplanner.team/stops/X638akb", "https://tec.openplanner.team/stops/X638aqb"], ["https://tec.openplanner.team/stops/N146ada", "https://tec.openplanner.team/stops/N146aea"], ["https://tec.openplanner.team/stops/H1ol137a", "https://tec.openplanner.team/stops/H1ol143a"], ["https://tec.openplanner.team/stops/X664aqa", "https://tec.openplanner.team/stops/X664ata"], ["https://tec.openplanner.team/stops/N348aeb", "https://tec.openplanner.team/stops/N351aqa"], ["https://tec.openplanner.team/stops/N301afb", "https://tec.openplanner.team/stops/N301afc"], ["https://tec.openplanner.team/stops/X770aab", "https://tec.openplanner.team/stops/X771ala"], ["https://tec.openplanner.team/stops/LDmeg--1", "https://tec.openplanner.team/stops/LDmhave2"], ["https://tec.openplanner.team/stops/Lcebois2", "https://tec.openplanner.team/stops/Lcejobe2"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lpevove2"], ["https://tec.openplanner.team/stops/H4hn115a", "https://tec.openplanner.team/stops/H4lp120a"], ["https://tec.openplanner.team/stops/Lvtathe1", "https://tec.openplanner.team/stops/Lvtlomb2"], ["https://tec.openplanner.team/stops/LmSdorf2", "https://tec.openplanner.team/stops/LmSluxh2"], ["https://tec.openplanner.team/stops/H2sb233c", "https://tec.openplanner.team/stops/H2sb271a"], ["https://tec.openplanner.team/stops/N244aab", "https://tec.openplanner.team/stops/N248aca"], ["https://tec.openplanner.team/stops/LBStec-2", "https://tec.openplanner.team/stops/LWOpier1"], ["https://tec.openplanner.team/stops/X950aab", "https://tec.openplanner.team/stops/X955acb"], ["https://tec.openplanner.team/stops/H2hg267b", "https://tec.openplanner.team/stops/H2hg272b"], ["https://tec.openplanner.team/stops/LSx309-2", "https://tec.openplanner.team/stops/LSxeg--2"], ["https://tec.openplanner.team/stops/LvA12--4", "https://tec.openplanner.team/stops/LvAkirc4"], ["https://tec.openplanner.team/stops/X601cva", "https://tec.openplanner.team/stops/X601cwa"], ["https://tec.openplanner.team/stops/Bwatvco1", "https://tec.openplanner.team/stops/Bwatvco2"], ["https://tec.openplanner.team/stops/LLrgara1", "https://tec.openplanner.team/stops/LSPmart4"], ["https://tec.openplanner.team/stops/Cmcbriq2", "https://tec.openplanner.team/stops/Cmcegli2"], ["https://tec.openplanner.team/stops/LHUmala1", "https://tec.openplanner.team/stops/LHUmala2"], ["https://tec.openplanner.team/stops/H1gh365a", "https://tec.openplanner.team/stops/H1ni319b"], ["https://tec.openplanner.team/stops/Blimch%C3%A21", "https://tec.openplanner.team/stops/Bottpin2"], ["https://tec.openplanner.team/stops/LbTgeme1", "https://tec.openplanner.team/stops/LsHthom2"], ["https://tec.openplanner.team/stops/N165aba", "https://tec.openplanner.team/stops/N166aca"], ["https://tec.openplanner.team/stops/Bcsebea2", "https://tec.openplanner.team/stops/Bottcba1"], ["https://tec.openplanner.team/stops/Btslegl2", "https://tec.openplanner.team/stops/Btsllbv1"], ["https://tec.openplanner.team/stops/Ccyga7", "https://tec.openplanner.team/stops/NH01acb"], ["https://tec.openplanner.team/stops/NL77ada", "https://tec.openplanner.team/stops/NL77agb"], ["https://tec.openplanner.team/stops/LDLbaye1", "https://tec.openplanner.team/stops/LDLbaye2"], ["https://tec.openplanner.team/stops/Lselimi2", "https://tec.openplanner.team/stops/Lsestap1"], ["https://tec.openplanner.team/stops/X636bga", "https://tec.openplanner.team/stops/X637ara"], ["https://tec.openplanner.team/stops/Blincoo2", "https://tec.openplanner.team/stops/Blingar3"], ["https://tec.openplanner.team/stops/LMAgare0", "https://tec.openplanner.team/stops/LMAgdfa1"], ["https://tec.openplanner.team/stops/Bgoemgr2", "https://tec.openplanner.team/stops/Bneersa2"], ["https://tec.openplanner.team/stops/H2sv214b", "https://tec.openplanner.team/stops/H2sv221b"], ["https://tec.openplanner.team/stops/X780ajb", "https://tec.openplanner.team/stops/X793aha"], ["https://tec.openplanner.team/stops/LBahaut1", "https://tec.openplanner.team/stops/LLrfont1"], ["https://tec.openplanner.team/stops/H1cr100a", "https://tec.openplanner.team/stops/H1hl125b"], ["https://tec.openplanner.team/stops/X919aka", "https://tec.openplanner.team/stops/X919anb"], ["https://tec.openplanner.team/stops/Lmnbass1", "https://tec.openplanner.team/stops/Lmntast2"], ["https://tec.openplanner.team/stops/LEN183-1", "https://tec.openplanner.team/stops/LENoule1"], ["https://tec.openplanner.team/stops/X826add", "https://tec.openplanner.team/stops/X826ahb"], ["https://tec.openplanner.team/stops/Bohncha1", "https://tec.openplanner.team/stops/Bohnr732"], ["https://tec.openplanner.team/stops/H1hg178a", "https://tec.openplanner.team/stops/H1hg178b"], ["https://tec.openplanner.team/stops/X999agb", "https://tec.openplanner.team/stops/X999aia"], ["https://tec.openplanner.team/stops/H1fr128b", "https://tec.openplanner.team/stops/H1fr129a"], ["https://tec.openplanner.team/stops/LGecite2", "https://tec.openplanner.team/stops/LGeschr2"], ["https://tec.openplanner.team/stops/N517adb", "https://tec.openplanner.team/stops/N517aeb"], ["https://tec.openplanner.team/stops/Lghcise2", "https://tec.openplanner.team/stops/Lghmont2"], ["https://tec.openplanner.team/stops/N874aba", "https://tec.openplanner.team/stops/N874aia"], ["https://tec.openplanner.team/stops/H4ae132d", "https://tec.openplanner.team/stops/H4ea127b"], ["https://tec.openplanner.team/stops/H1gc123a", "https://tec.openplanner.team/stops/H1qy133a"], ["https://tec.openplanner.team/stops/X602ada", "https://tec.openplanner.team/stops/X602adb"], ["https://tec.openplanner.team/stops/LbUkrin2", "https://tec.openplanner.team/stops/LbUmurr2"], ["https://tec.openplanner.team/stops/LHUaron1", "https://tec.openplanner.team/stops/LHUaron2"], ["https://tec.openplanner.team/stops/H2hg147a", "https://tec.openplanner.team/stops/H2hg152b"], ["https://tec.openplanner.team/stops/LHXmonu1", "https://tec.openplanner.team/stops/LSMcles1"], ["https://tec.openplanner.team/stops/LWHkape1", "https://tec.openplanner.team/stops/LWHkerk1"], ["https://tec.openplanner.team/stops/Canvane2", "https://tec.openplanner.team/stops/H2an100a"], ["https://tec.openplanner.team/stops/Barqbco1", "https://tec.openplanner.team/stops/Barqres1"], ["https://tec.openplanner.team/stops/X891aca", "https://tec.openplanner.team/stops/X892aba"], ["https://tec.openplanner.team/stops/Ccacoup1", "https://tec.openplanner.team/stops/N162acb"], ["https://tec.openplanner.team/stops/H4bo116b", "https://tec.openplanner.team/stops/H4bo118b"], ["https://tec.openplanner.team/stops/X717aga", "https://tec.openplanner.team/stops/X717aja"], ["https://tec.openplanner.team/stops/X773aoa", "https://tec.openplanner.team/stops/X773aob"], ["https://tec.openplanner.team/stops/LRmkult2", "https://tec.openplanner.team/stops/LRmsmvo2"], ["https://tec.openplanner.team/stops/Bptbbie1", "https://tec.openplanner.team/stops/Bptbbie2"], ["https://tec.openplanner.team/stops/X999alb", "https://tec.openplanner.team/stops/X999aqb"], ["https://tec.openplanner.team/stops/N162afa", "https://tec.openplanner.team/stops/N162afb"], ["https://tec.openplanner.team/stops/N501mqa", "https://tec.openplanner.team/stops/N501zca"], ["https://tec.openplanner.team/stops/N103aca", "https://tec.openplanner.team/stops/N106afa"], ["https://tec.openplanner.team/stops/Cmychap2", "https://tec.openplanner.team/stops/Cmychap3"], ["https://tec.openplanner.team/stops/Benimar1", "https://tec.openplanner.team/stops/Benimar4"], ["https://tec.openplanner.team/stops/H5qu142a", "https://tec.openplanner.team/stops/H5qu155a"], ["https://tec.openplanner.team/stops/LAUneuv5", "https://tec.openplanner.team/stops/LAUnico2"], ["https://tec.openplanner.team/stops/Lhehoux1", "https://tec.openplanner.team/stops/Lhelait2"], ["https://tec.openplanner.team/stops/Lmomarr3", "https://tec.openplanner.team/stops/Lmomarr4"], ["https://tec.openplanner.team/stops/Bbsgbos1", "https://tec.openplanner.team/stops/Bbsggot2"], ["https://tec.openplanner.team/stops/LBLcalv3", "https://tec.openplanner.team/stops/LBLghuy3"], ["https://tec.openplanner.team/stops/X342aaa", "https://tec.openplanner.team/stops/X354ada"], ["https://tec.openplanner.team/stops/Lsmeg--2", "https://tec.openplanner.team/stops/Lsmlina2"], ["https://tec.openplanner.team/stops/LeUauto1", "https://tec.openplanner.team/stops/LeUrsi-*"], ["https://tec.openplanner.team/stops/H4ma398b", "https://tec.openplanner.team/stops/H4oq409b"], ["https://tec.openplanner.team/stops/LFTneur*", "https://tec.openplanner.team/stops/LTamoul1"], ["https://tec.openplanner.team/stops/LAMcloc1", "https://tec.openplanner.team/stops/LOmpont1"], ["https://tec.openplanner.team/stops/N145adb", "https://tec.openplanner.team/stops/N145aec"], ["https://tec.openplanner.team/stops/Btlbcul1", "https://tec.openplanner.team/stops/Btlbgla2"], ["https://tec.openplanner.team/stops/Bbuztai1", "https://tec.openplanner.team/stops/Bnivbng1"], ["https://tec.openplanner.team/stops/H4he105a", "https://tec.openplanner.team/stops/H4he105b"], ["https://tec.openplanner.team/stops/H1te182a", "https://tec.openplanner.team/stops/H1te187b"], ["https://tec.openplanner.team/stops/H4ma400b", "https://tec.openplanner.team/stops/H4ma401a"], ["https://tec.openplanner.team/stops/X601ala", "https://tec.openplanner.team/stops/X601bga"], ["https://tec.openplanner.team/stops/N162acb", "https://tec.openplanner.team/stops/N162adb"], ["https://tec.openplanner.team/stops/H4fr140a", "https://tec.openplanner.team/stops/H4fr145b"], ["https://tec.openplanner.team/stops/LSPjoli2", "https://tec.openplanner.team/stops/LSZjona1"], ["https://tec.openplanner.team/stops/Cmtfabi2", "https://tec.openplanner.team/stops/Cmtmath2"], ["https://tec.openplanner.team/stops/H4ty291a", "https://tec.openplanner.team/stops/H4ty347b"], ["https://tec.openplanner.team/stops/LbO52--2", "https://tec.openplanner.team/stops/LmD181-1"], ["https://tec.openplanner.team/stops/N501jsb", "https://tec.openplanner.team/stops/N501jtb"], ["https://tec.openplanner.team/stops/X641ata", "https://tec.openplanner.team/stops/X641aua"], ["https://tec.openplanner.team/stops/LRmsmvo2", "https://tec.openplanner.team/stops/LRmsmvo4"], ["https://tec.openplanner.team/stops/Cprbevu1", "https://tec.openplanner.team/stops/Cprgran1"], ["https://tec.openplanner.team/stops/LFIeg--1", "https://tec.openplanner.team/stops/LMYroin1"], ["https://tec.openplanner.team/stops/H1fl142b", "https://tec.openplanner.team/stops/H1fr109b"], ["https://tec.openplanner.team/stops/LPobois1", "https://tec.openplanner.team/stops/LPoneuf1"], ["https://tec.openplanner.team/stops/N351amb", "https://tec.openplanner.team/stops/N351ava"], ["https://tec.openplanner.team/stops/H5bl122a", "https://tec.openplanner.team/stops/H5bl143b"], ["https://tec.openplanner.team/stops/Lmibove2", "https://tec.openplanner.team/stops/Lmicoop1"], ["https://tec.openplanner.team/stops/Ctuosso1", "https://tec.openplanner.team/stops/Ctusold1"], ["https://tec.openplanner.team/stops/Cgymetr1", "https://tec.openplanner.team/stops/Cgyplvi2"], ["https://tec.openplanner.team/stops/LLYchpl1", "https://tec.openplanner.team/stops/LOMware2"], ["https://tec.openplanner.team/stops/LESecco2", "https://tec.openplanner.team/stops/LESmagr2"], ["https://tec.openplanner.team/stops/H4hn115a", "https://tec.openplanner.team/stops/H4hn115b"], ["https://tec.openplanner.team/stops/N535amc", "https://tec.openplanner.team/stops/N564acb"], ["https://tec.openplanner.team/stops/N155aaa", "https://tec.openplanner.team/stops/N155ada"], ["https://tec.openplanner.team/stops/H2bh110b", "https://tec.openplanner.team/stops/H2bh119a"], ["https://tec.openplanner.team/stops/H1wl121a", "https://tec.openplanner.team/stops/H1wl126a"], ["https://tec.openplanner.team/stops/Canplch3", "https://tec.openplanner.team/stops/Cgzhour2"], ["https://tec.openplanner.team/stops/H4be146a", "https://tec.openplanner.team/stops/H5bl118b"], ["https://tec.openplanner.team/stops/X661aua", "https://tec.openplanner.team/stops/X672aab"], ["https://tec.openplanner.team/stops/X354aea", "https://tec.openplanner.team/stops/X354afb"], ["https://tec.openplanner.team/stops/H1do114a", "https://tec.openplanner.team/stops/H1do124a"], ["https://tec.openplanner.team/stops/H4wa150a", "https://tec.openplanner.team/stops/H4wa161a"], ["https://tec.openplanner.team/stops/H4fo115b", "https://tec.openplanner.team/stops/H4ga152a"], ["https://tec.openplanner.team/stops/H4mo148b", "https://tec.openplanner.team/stops/H4mo205a"], ["https://tec.openplanner.team/stops/N232bva", "https://tec.openplanner.team/stops/N232bvb"], ["https://tec.openplanner.team/stops/N508abb", "https://tec.openplanner.team/stops/N508aeb"], ["https://tec.openplanner.team/stops/LRmhage5", "https://tec.openplanner.team/stops/LRmhage7"], ["https://tec.openplanner.team/stops/N118aob", "https://tec.openplanner.team/stops/N118aza"], ["https://tec.openplanner.team/stops/Bsjgegl2", "https://tec.openplanner.team/stops/Bsjgmil2"], ["https://tec.openplanner.team/stops/Bcercsa1", "https://tec.openplanner.team/stops/Bmoucoq2"], ["https://tec.openplanner.team/stops/N536apa", "https://tec.openplanner.team/stops/N563aaa"], ["https://tec.openplanner.team/stops/Lchchau1", "https://tec.openplanner.team/stops/Lrapays1"], ["https://tec.openplanner.team/stops/LXobaty2", "https://tec.openplanner.team/stops/LXobaty3"], ["https://tec.openplanner.team/stops/N874agb", "https://tec.openplanner.team/stops/N874ahb"], ["https://tec.openplanner.team/stops/Llghopo2", "https://tec.openplanner.team/stops/Llgnata1"], ["https://tec.openplanner.team/stops/X662aea", "https://tec.openplanner.team/stops/X662agb"], ["https://tec.openplanner.team/stops/Bgnvcha1", "https://tec.openplanner.team/stops/Bgnvcha2"], ["https://tec.openplanner.team/stops/H5rx115d", "https://tec.openplanner.team/stops/H5rx129a"], ["https://tec.openplanner.team/stops/N113abb", "https://tec.openplanner.team/stops/N113aea"], ["https://tec.openplanner.team/stops/X818asa", "https://tec.openplanner.team/stops/X818aub"], ["https://tec.openplanner.team/stops/Llxeg--2", "https://tec.openplanner.team/stops/Lsweg--1"], ["https://tec.openplanner.team/stops/LERboss2", "https://tec.openplanner.team/stops/LWberno2"], ["https://tec.openplanner.team/stops/LBvviem3", "https://tec.openplanner.team/stops/LFalieg1"], ["https://tec.openplanner.team/stops/Cjojonc1", "https://tec.openplanner.team/stops/Cjojonc2"], ["https://tec.openplanner.team/stops/LFdchau1", "https://tec.openplanner.team/stops/LFdchau2"], ["https://tec.openplanner.team/stops/Canmonu1", "https://tec.openplanner.team/stops/Canmonu4"], ["https://tec.openplanner.team/stops/H1si167a", "https://tec.openplanner.team/stops/H1si169a"], ["https://tec.openplanner.team/stops/X670aca", "https://tec.openplanner.team/stops/X670adb"], ["https://tec.openplanner.team/stops/H4ty323a", "https://tec.openplanner.team/stops/H4ty405b"], ["https://tec.openplanner.team/stops/Canboni1", "https://tec.openplanner.team/stops/Canchbr1"], ["https://tec.openplanner.team/stops/Bhevgar2", "https://tec.openplanner.team/stops/Bhevhha2"], ["https://tec.openplanner.team/stops/LVu03--1", "https://tec.openplanner.team/stops/LVukabi1"], ["https://tec.openplanner.team/stops/LCPlebl*", "https://tec.openplanner.team/stops/LGmcite1"], ["https://tec.openplanner.team/stops/Cmtpire1", "https://tec.openplanner.team/stops/Cmtrneu1"], ["https://tec.openplanner.team/stops/H5el100b", "https://tec.openplanner.team/stops/H5wo128a"], ["https://tec.openplanner.team/stops/N244aca", "https://tec.openplanner.team/stops/N252aab"], ["https://tec.openplanner.team/stops/Cobobjo2", "https://tec.openplanner.team/stops/Cobvill1"], ["https://tec.openplanner.team/stops/Cgysole1", "https://tec.openplanner.team/stops/CMsartc2"], ["https://tec.openplanner.team/stops/X982aka", "https://tec.openplanner.team/stops/X982byb"], ["https://tec.openplanner.team/stops/LBRmc--1", "https://tec.openplanner.team/stops/LBRpt--2"], ["https://tec.openplanner.team/stops/H2re166b", "https://tec.openplanner.team/stops/H2re168b"], ["https://tec.openplanner.team/stops/H1mb129b", "https://tec.openplanner.team/stops/H1mb135b"], ["https://tec.openplanner.team/stops/Bleugar1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/LmHburg1", "https://tec.openplanner.team/stops/LmHperl2"], ["https://tec.openplanner.team/stops/X652acb", "https://tec.openplanner.team/stops/X652adb"], ["https://tec.openplanner.team/stops/Bflegar6", "https://tec.openplanner.team/stops/Cflsncb3"], ["https://tec.openplanner.team/stops/Canboha2", "https://tec.openplanner.team/stops/Cpthaud2"], ["https://tec.openplanner.team/stops/Baudvdr2", "https://tec.openplanner.team/stops/Baudvdu1"], ["https://tec.openplanner.team/stops/Lvtboux1", "https://tec.openplanner.team/stops/Lvtboux2"], ["https://tec.openplanner.team/stops/LAWcorn1", "https://tec.openplanner.team/stops/LAWcorn2"], ["https://tec.openplanner.team/stops/Bcrngat1", "https://tec.openplanner.team/stops/Bcrngat2"], ["https://tec.openplanner.team/stops/N244asa", "https://tec.openplanner.team/stops/N244atb"], ["https://tec.openplanner.team/stops/Cfrcoqu3", "https://tec.openplanner.team/stops/Cfrptfe2"], ["https://tec.openplanner.team/stops/X661ayc", "https://tec.openplanner.team/stops/X661azb"], ["https://tec.openplanner.team/stops/Canplch3", "https://tec.openplanner.team/stops/Clbhour1"], ["https://tec.openplanner.team/stops/Csycant2", "https://tec.openplanner.team/stops/Csysans2"], ["https://tec.openplanner.team/stops/Lmocail2", "https://tec.openplanner.team/stops/Lmodeja2"], ["https://tec.openplanner.team/stops/LFOchab1", "https://tec.openplanner.team/stops/LHGtige1"], ["https://tec.openplanner.team/stops/H4ft136a", "https://tec.openplanner.team/stops/H4ft136b"], ["https://tec.openplanner.team/stops/Ctarpoi1", "https://tec.openplanner.team/stops/N543boa"], ["https://tec.openplanner.team/stops/Bflegar5", "https://tec.openplanner.team/stops/Cflgazo2"], ["https://tec.openplanner.team/stops/LElgerd1", "https://tec.openplanner.team/stops/LElgerd5"], ["https://tec.openplanner.team/stops/Ctilobb2", "https://tec.openplanner.team/stops/H1mc128b"], ["https://tec.openplanner.team/stops/LLnlimb1", "https://tec.openplanner.team/stops/LOeelbe2"], ["https://tec.openplanner.team/stops/Cnacent1", "https://tec.openplanner.team/stops/Cnadepo1"], ["https://tec.openplanner.team/stops/H5at134a", "https://tec.openplanner.team/stops/H5at142b"], ["https://tec.openplanner.team/stops/N540aba", "https://tec.openplanner.team/stops/N578aca"], ["https://tec.openplanner.team/stops/Bpelegl4", "https://tec.openplanner.team/stops/Bpelf961"], ["https://tec.openplanner.team/stops/N308aia", "https://tec.openplanner.team/stops/N308asa"], ["https://tec.openplanner.team/stops/N219aea", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/LCsfize1", "https://tec.openplanner.team/stops/LCsraws1"], ["https://tec.openplanner.team/stops/X608aqa", "https://tec.openplanner.team/stops/X621aca"], ["https://tec.openplanner.team/stops/Lvtchpl3", "https://tec.openplanner.team/stops/Lvtchpl4"], ["https://tec.openplanner.team/stops/N504aca", "https://tec.openplanner.team/stops/N504acb"], ["https://tec.openplanner.team/stops/H4ef164b", "https://tec.openplanner.team/stops/H4fa127b"], ["https://tec.openplanner.team/stops/H3so154b", "https://tec.openplanner.team/stops/H3so179a"], ["https://tec.openplanner.team/stops/Bsdampe2", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/Ldicorb1", "https://tec.openplanner.team/stops/Ldicorb2"], ["https://tec.openplanner.team/stops/N134ajb", "https://tec.openplanner.team/stops/N152abc"], ["https://tec.openplanner.team/stops/Bblaast1", "https://tec.openplanner.team/stops/Bblagar3"], ["https://tec.openplanner.team/stops/H4ir163c", "https://tec.openplanner.team/stops/H4ir167b"], ["https://tec.openplanner.team/stops/Bsgebou1", "https://tec.openplanner.team/stops/Bvilpar2"], ["https://tec.openplanner.team/stops/H1ca104a", "https://tec.openplanner.team/stops/H1ca184b"], ["https://tec.openplanner.team/stops/Llgnati2", "https://tec.openplanner.team/stops/Llgsimo1"], ["https://tec.openplanner.team/stops/N539bea", "https://tec.openplanner.team/stops/N540aka"], ["https://tec.openplanner.team/stops/LHUchh-1", "https://tec.openplanner.team/stops/NL80apa"], ["https://tec.openplanner.team/stops/LOlvill1", "https://tec.openplanner.team/stops/LRuegli2"], ["https://tec.openplanner.team/stops/N117aab", "https://tec.openplanner.team/stops/N117acb"], ["https://tec.openplanner.team/stops/LLAvi651", "https://tec.openplanner.team/stops/LMgkrui1"], ["https://tec.openplanner.team/stops/X512aaa", "https://tec.openplanner.team/stops/X512abb"], ["https://tec.openplanner.team/stops/H1ca102b", "https://tec.openplanner.team/stops/H1ne143b"], ["https://tec.openplanner.team/stops/H1qg138a", "https://tec.openplanner.team/stops/H1qg138b"], ["https://tec.openplanner.team/stops/LGLgare*", "https://tec.openplanner.team/stops/LGLobor1"], ["https://tec.openplanner.team/stops/LThbatt2", "https://tec.openplanner.team/stops/LThpoli1"], ["https://tec.openplanner.team/stops/LMOc50-1", "https://tec.openplanner.team/stops/LMOchen1"], ["https://tec.openplanner.team/stops/LAIrout2", "https://tec.openplanner.team/stops/LCsjone1"], ["https://tec.openplanner.team/stops/Cgofert2", "https://tec.openplanner.team/stops/Ctmmana1"], ["https://tec.openplanner.team/stops/X713aia", "https://tec.openplanner.team/stops/X714aaa"], ["https://tec.openplanner.team/stops/Cchplan2", "https://tec.openplanner.team/stops/Cdasama2"], ["https://tec.openplanner.team/stops/X991aea", "https://tec.openplanner.team/stops/X991aeb"], ["https://tec.openplanner.team/stops/X749aba", "https://tec.openplanner.team/stops/X749abb"], ["https://tec.openplanner.team/stops/LJEchat3", "https://tec.openplanner.team/stops/LJEchat4"], ["https://tec.openplanner.team/stops/Llgptlo4", "https://tec.openplanner.team/stops/Llgptlo5"], ["https://tec.openplanner.team/stops/X756aed", "https://tec.openplanner.team/stops/X756ajb"], ["https://tec.openplanner.team/stops/N531aga", "https://tec.openplanner.team/stops/N531aia"], ["https://tec.openplanner.team/stops/H1bb114a", "https://tec.openplanner.team/stops/H1bb120a"], ["https://tec.openplanner.team/stops/CMdamp1", "https://tec.openplanner.team/stops/CMdamp2"], ["https://tec.openplanner.team/stops/LSkb1352", "https://tec.openplanner.team/stops/LSkbo831"], ["https://tec.openplanner.team/stops/X758ada", "https://tec.openplanner.team/stops/X758ama"], ["https://tec.openplanner.team/stops/X618ama", "https://tec.openplanner.team/stops/X618amb"], ["https://tec.openplanner.team/stops/LWM759-1", "https://tec.openplanner.team/stops/LWM759-2"], ["https://tec.openplanner.team/stops/H4lp125b", "https://tec.openplanner.team/stops/H4lp126a"], ["https://tec.openplanner.team/stops/X715aha", "https://tec.openplanner.team/stops/X731aja"], ["https://tec.openplanner.team/stops/LAUpind1", "https://tec.openplanner.team/stops/LAUpind2"], ["https://tec.openplanner.team/stops/Bbgerlr1", "https://tec.openplanner.team/stops/Blmlvex2"], ["https://tec.openplanner.team/stops/H4fa126b", "https://tec.openplanner.team/stops/H4fa128b"], ["https://tec.openplanner.team/stops/Cmlgche2", "https://tec.openplanner.team/stops/Cmlvxmo1"], ["https://tec.openplanner.team/stops/N548awa", "https://tec.openplanner.team/stops/N548aya"], ["https://tec.openplanner.team/stops/Braclin1", "https://tec.openplanner.team/stops/Bracrpe1"], ["https://tec.openplanner.team/stops/Bcsegal1", "https://tec.openplanner.team/stops/Bcsemar1"], ["https://tec.openplanner.team/stops/H1br122b", "https://tec.openplanner.team/stops/H1ev112b"], ["https://tec.openplanner.team/stops/LHhchau2", "https://tec.openplanner.team/stops/LHheg--1"], ["https://tec.openplanner.team/stops/Lsebove1", "https://tec.openplanner.team/stops/Lseconc1"], ["https://tec.openplanner.team/stops/LESamos1", "https://tec.openplanner.team/stops/LESamos2"], ["https://tec.openplanner.team/stops/H4mo133a", "https://tec.openplanner.team/stops/H4mo165b"], ["https://tec.openplanner.team/stops/X639aeb", "https://tec.openplanner.team/stops/X643aba"], ["https://tec.openplanner.team/stops/Bcsecar1", "https://tec.openplanner.team/stops/Bmoufil1"], ["https://tec.openplanner.team/stops/X939adb", "https://tec.openplanner.team/stops/X939aeb"], ["https://tec.openplanner.team/stops/X716aba", "https://tec.openplanner.team/stops/X716aeb"], ["https://tec.openplanner.team/stops/Bneesan1", "https://tec.openplanner.team/stops/Bneesan2"], ["https://tec.openplanner.team/stops/N542aka", "https://tec.openplanner.team/stops/N542akb"], ["https://tec.openplanner.team/stops/LENengi2", "https://tec.openplanner.team/stops/LENindu2"], ["https://tec.openplanner.team/stops/N217aba", "https://tec.openplanner.team/stops/N337aib"], ["https://tec.openplanner.team/stops/Cgoboll4", "https://tec.openplanner.team/stops/Cgogare2"], ["https://tec.openplanner.team/stops/X618alb", "https://tec.openplanner.team/stops/X618aoa"], ["https://tec.openplanner.team/stops/H4al100b", "https://tec.openplanner.team/stops/H4ty265a"], ["https://tec.openplanner.team/stops/LLOberl1", "https://tec.openplanner.team/stops/LLOchpl2"], ["https://tec.openplanner.team/stops/H4po125b", "https://tec.openplanner.team/stops/H4po128a"], ["https://tec.openplanner.team/stops/H1ha187a", "https://tec.openplanner.team/stops/H1ob328a"], ["https://tec.openplanner.team/stops/N506ala", "https://tec.openplanner.team/stops/N506aua"], ["https://tec.openplanner.team/stops/Llgabat2", "https://tec.openplanner.team/stops/Llgpoli1"], ["https://tec.openplanner.team/stops/X877aaa", "https://tec.openplanner.team/stops/X877ada"], ["https://tec.openplanner.team/stops/Bchgvil1", "https://tec.openplanner.team/stops/Bdvminc2"], ["https://tec.openplanner.team/stops/N531aea", "https://tec.openplanner.team/stops/N531aeb"], ["https://tec.openplanner.team/stops/H1qy131a", "https://tec.openplanner.team/stops/H1qy133b"], ["https://tec.openplanner.team/stops/Cgoboll3", "https://tec.openplanner.team/stops/Cgoboll4"], ["https://tec.openplanner.team/stops/Bbcoubo2", "https://tec.openplanner.team/stops/H3br110a"], ["https://tec.openplanner.team/stops/X639asa", "https://tec.openplanner.team/stops/X675aba"], ["https://tec.openplanner.team/stops/X715apb", "https://tec.openplanner.team/stops/X731aba"], ["https://tec.openplanner.team/stops/LvA30--1", "https://tec.openplanner.team/stops/LvAkirc1"], ["https://tec.openplanner.team/stops/Brsgera2", "https://tec.openplanner.team/stops/Bwbfckr1"], ["https://tec.openplanner.team/stops/Clomari2", "https://tec.openplanner.team/stops/Clomart1"], ["https://tec.openplanner.team/stops/H2ma205a", "https://tec.openplanner.team/stops/H2ma263a"], ["https://tec.openplanner.team/stops/Lflcle-5", "https://tec.openplanner.team/stops/Lflgare1"], ["https://tec.openplanner.team/stops/NL81ahb", "https://tec.openplanner.team/stops/NL82agb"], ["https://tec.openplanner.team/stops/LVLzoni2", "https://tec.openplanner.team/stops/LWDbure1"], ["https://tec.openplanner.team/stops/Lveclin2", "https://tec.openplanner.team/stops/Lveherl1"], ["https://tec.openplanner.team/stops/H2an109a", "https://tec.openplanner.team/stops/H2le150b"], ["https://tec.openplanner.team/stops/X927aab", "https://tec.openplanner.team/stops/X927abb"], ["https://tec.openplanner.team/stops/LmNpost1", "https://tec.openplanner.team/stops/LmNstaa1"], ["https://tec.openplanner.team/stops/Brsrfen2", "https://tec.openplanner.team/stops/Brsrrcu1"], ["https://tec.openplanner.team/stops/N507akb", "https://tec.openplanner.team/stops/N509aoa"], ["https://tec.openplanner.team/stops/N501cua", "https://tec.openplanner.team/stops/N501ema"], ["https://tec.openplanner.team/stops/H2pe154a", "https://tec.openplanner.team/stops/H2pe159a"], ["https://tec.openplanner.team/stops/LVbsurr1", "https://tec.openplanner.team/stops/NL77ala"], ["https://tec.openplanner.team/stops/N243aca", "https://tec.openplanner.team/stops/N243ada"], ["https://tec.openplanner.team/stops/Lsccdor1", "https://tec.openplanner.team/stops/Lscstan2"], ["https://tec.openplanner.team/stops/X750afa", "https://tec.openplanner.team/stops/X750bma"], ["https://tec.openplanner.team/stops/LRfcent2", "https://tec.openplanner.team/stops/LRffroi1"], ["https://tec.openplanner.team/stops/Lghjans2", "https://tec.openplanner.team/stops/Lghmeun3"], ["https://tec.openplanner.team/stops/H5bl118b", "https://tec.openplanner.team/stops/H5qu143b"], ["https://tec.openplanner.team/stops/H4bx167a", "https://tec.openplanner.team/stops/H4te251b"], ["https://tec.openplanner.team/stops/X615arb", "https://tec.openplanner.team/stops/X615ata"], ["https://tec.openplanner.team/stops/LbEkirc*", "https://tec.openplanner.team/stops/LwRkirc2"], ["https://tec.openplanner.team/stops/Llgfusc4", "https://tec.openplanner.team/stops/Llgfusc6"], ["https://tec.openplanner.team/stops/N522bvc", "https://tec.openplanner.team/stops/N522bvd"], ["https://tec.openplanner.team/stops/X942abc", "https://tec.openplanner.team/stops/X942adb"], ["https://tec.openplanner.team/stops/N118acb", "https://tec.openplanner.team/stops/N118ayb"], ["https://tec.openplanner.team/stops/H4ty285a", "https://tec.openplanner.team/stops/H4ty384b"], ["https://tec.openplanner.team/stops/X789ahd", "https://tec.openplanner.team/stops/X789aia"], ["https://tec.openplanner.team/stops/LAWchau1", "https://tec.openplanner.team/stops/LAWxhen2"], ["https://tec.openplanner.team/stops/Llgcond1", "https://tec.openplanner.team/stops/Llgdesa1"], ["https://tec.openplanner.team/stops/Cmohotv4", "https://tec.openplanner.team/stops/Cmopn4"], ["https://tec.openplanner.team/stops/Lemarde1", "https://tec.openplanner.team/stops/Lemboul1"], ["https://tec.openplanner.team/stops/Cmg4bra2", "https://tec.openplanner.team/stops/Cmgcabi2"], ["https://tec.openplanner.team/stops/Clbptno1", "https://tec.openplanner.team/stops/Cthgrat2"], ["https://tec.openplanner.team/stops/H2le148a", "https://tec.openplanner.team/stops/H2le150a"], ["https://tec.openplanner.team/stops/N543ala", "https://tec.openplanner.team/stops/N543aoa"], ["https://tec.openplanner.team/stops/Llonaes1", "https://tec.openplanner.team/stops/Llonaes2"], ["https://tec.openplanner.team/stops/X661ava", "https://tec.openplanner.team/stops/X661aya"], ["https://tec.openplanner.team/stops/H1el133b", "https://tec.openplanner.team/stops/H1el137a"], ["https://tec.openplanner.team/stops/LSGbail1", "https://tec.openplanner.team/stops/LSGbail2"], ["https://tec.openplanner.team/stops/LNEec--1", "https://tec.openplanner.team/stops/LSHfief2"], ["https://tec.openplanner.team/stops/Cmlhauc3", "https://tec.openplanner.team/stops/Cmlvesp1"], ["https://tec.openplanner.team/stops/N538afa", "https://tec.openplanner.team/stops/N538awb"], ["https://tec.openplanner.team/stops/N118axb", "https://tec.openplanner.team/stops/N118bbb"], ["https://tec.openplanner.team/stops/X654aia", "https://tec.openplanner.team/stops/X654aja"], ["https://tec.openplanner.team/stops/LFymare3", "https://tec.openplanner.team/stops/LFymare4"], ["https://tec.openplanner.team/stops/Cmeptmi2", "https://tec.openplanner.team/stops/Cmeptmi5"], ["https://tec.openplanner.team/stops/Bovesnh2", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://tec.openplanner.team/stops/H1br129a", "https://tec.openplanner.team/stops/H3bo103b"], ["https://tec.openplanner.team/stops/Cnalava3", "https://tec.openplanner.team/stops/Cnapair1"], ["https://tec.openplanner.team/stops/N304aba", "https://tec.openplanner.team/stops/N305aab"], ["https://tec.openplanner.team/stops/Bptrgri2", "https://tec.openplanner.team/stops/H2se105a"], ["https://tec.openplanner.team/stops/X982blc", "https://tec.openplanner.team/stops/X982bld"], ["https://tec.openplanner.team/stops/Lsmdepo1", "https://tec.openplanner.team/stops/Lsmdepo2"], ["https://tec.openplanner.team/stops/N576abb", "https://tec.openplanner.team/stops/N576aja"], ["https://tec.openplanner.team/stops/Lflec--1", "https://tec.openplanner.team/stops/Lflweri1"], ["https://tec.openplanner.team/stops/Bbaualz2", "https://tec.openplanner.team/stops/Bnivvcw2"], ["https://tec.openplanner.team/stops/X685afa", "https://tec.openplanner.team/stops/X685afb"], ["https://tec.openplanner.team/stops/LCEhayo2", "https://tec.openplanner.team/stops/LCEplac1"], ["https://tec.openplanner.team/stops/Cwfnamu1", "https://tec.openplanner.team/stops/Cwfnamu2"], ["https://tec.openplanner.team/stops/LMubras1", "https://tec.openplanner.team/stops/LMubras2"], ["https://tec.openplanner.team/stops/LAYharz2", "https://tec.openplanner.team/stops/LAYwerb2"], ["https://tec.openplanner.team/stops/Bcrngat2", "https://tec.openplanner.team/stops/Bcrntru2"], ["https://tec.openplanner.team/stops/N308bfb", "https://tec.openplanner.team/stops/N308bgb"], ["https://tec.openplanner.team/stops/X371adb", "https://tec.openplanner.team/stops/X371aea"], ["https://tec.openplanner.team/stops/LATmonu1", "https://tec.openplanner.team/stops/LHUfali1"], ["https://tec.openplanner.team/stops/LHAcite2", "https://tec.openplanner.team/stops/LHAclin1"], ["https://tec.openplanner.team/stops/Brixbai1", "https://tec.openplanner.team/stops/Brixbai2"], ["https://tec.openplanner.team/stops/X994aeb", "https://tec.openplanner.team/stops/X994aga"], ["https://tec.openplanner.team/stops/Bbiehec1", "https://tec.openplanner.team/stops/Bbiehec2"], ["https://tec.openplanner.team/stops/X982arb", "https://tec.openplanner.team/stops/X982bva"], ["https://tec.openplanner.team/stops/LLzcruc1", "https://tec.openplanner.team/stops/LSTvaul1"], ["https://tec.openplanner.team/stops/LBafagn2", "https://tec.openplanner.team/stops/LFrec--1"], ["https://tec.openplanner.team/stops/LKmcite1", "https://tec.openplanner.team/stops/LKmdani2"], ["https://tec.openplanner.team/stops/X713aeb", "https://tec.openplanner.team/stops/X713ama"], ["https://tec.openplanner.team/stops/H4ty296b", "https://tec.openplanner.team/stops/H4ty310b"], ["https://tec.openplanner.team/stops/Ccymabo2", "https://tec.openplanner.team/stops/Csregli2"], ["https://tec.openplanner.team/stops/LmS11--2", "https://tec.openplanner.team/stops/LsFcafe2"], ["https://tec.openplanner.team/stops/LHCbois2", "https://tec.openplanner.team/stops/LHCcoul2"], ["https://tec.openplanner.team/stops/Cpljonc1", "https://tec.openplanner.team/stops/NC11aga"], ["https://tec.openplanner.team/stops/LTiflor2", "https://tec.openplanner.team/stops/LTigera2"], ["https://tec.openplanner.team/stops/LTRcite1", "https://tec.openplanner.team/stops/LTRferm2"], ["https://tec.openplanner.team/stops/X991ada", "https://tec.openplanner.team/stops/X991agc"], ["https://tec.openplanner.team/stops/Ldichat2", "https://tec.openplanner.team/stops/Ldihusq1"], ["https://tec.openplanner.team/stops/H1gc122a", "https://tec.openplanner.team/stops/H1gc122b"], ["https://tec.openplanner.team/stops/H2sb228d", "https://tec.openplanner.team/stops/H2sb242b"], ["https://tec.openplanner.team/stops/N501aqa", "https://tec.openplanner.team/stops/N501baa"], ["https://tec.openplanner.team/stops/LHTbonn1", "https://tec.openplanner.team/stops/LHTcent2"], ["https://tec.openplanner.team/stops/X641aka", "https://tec.openplanner.team/stops/X641alb"], ["https://tec.openplanner.team/stops/N557afa", "https://tec.openplanner.team/stops/N557aha"], ["https://tec.openplanner.team/stops/Lmlcrot3", "https://tec.openplanner.team/stops/Lmlpata*"], ["https://tec.openplanner.team/stops/H3lr113a", "https://tec.openplanner.team/stops/H3lr113b"], ["https://tec.openplanner.team/stops/Bdvmalo1", "https://tec.openplanner.team/stops/Bdvmalo2"], ["https://tec.openplanner.team/stops/H4ma205a", "https://tec.openplanner.team/stops/H4ma205b"], ["https://tec.openplanner.team/stops/H3so161b", "https://tec.openplanner.team/stops/H3so176a"], ["https://tec.openplanner.team/stops/N543bpb", "https://tec.openplanner.team/stops/N543cmb"], ["https://tec.openplanner.team/stops/LeUdepo2", "https://tec.openplanner.team/stops/LeUlasc3"], ["https://tec.openplanner.team/stops/H3bi107b", "https://tec.openplanner.team/stops/H3bi117a"], ["https://tec.openplanner.team/stops/X946aia", "https://tec.openplanner.team/stops/X948aca"], ["https://tec.openplanner.team/stops/N501icy", "https://tec.openplanner.team/stops/N501icz"], ["https://tec.openplanner.team/stops/X911ala", "https://tec.openplanner.team/stops/X985aac"], ["https://tec.openplanner.team/stops/X818anb", "https://tec.openplanner.team/stops/X820aeb"], ["https://tec.openplanner.team/stops/X744abb", "https://tec.openplanner.team/stops/X746aha"], ["https://tec.openplanner.team/stops/LHMchev1", "https://tec.openplanner.team/stops/LHMchev2"], ["https://tec.openplanner.team/stops/N538aqb", "https://tec.openplanner.team/stops/N538ara"], ["https://tec.openplanner.team/stops/X870aha", "https://tec.openplanner.team/stops/X870aib"], ["https://tec.openplanner.team/stops/H4mv193a", "https://tec.openplanner.team/stops/H4mv195b"], ["https://tec.openplanner.team/stops/X636aia", "https://tec.openplanner.team/stops/X649aab"], ["https://tec.openplanner.team/stops/N539aqa", "https://tec.openplanner.team/stops/N539aqb"], ["https://tec.openplanner.team/stops/N533aoa", "https://tec.openplanner.team/stops/N533aob"], ["https://tec.openplanner.team/stops/Bgdhpco2", "https://tec.openplanner.team/stops/Blincoo1"], ["https://tec.openplanner.team/stops/LHCmonu4", "https://tec.openplanner.team/stops/LHCruyf2"], ["https://tec.openplanner.team/stops/LHEches2", "https://tec.openplanner.team/stops/LHEchex2"], ["https://tec.openplanner.team/stops/H2an104a", "https://tec.openplanner.team/stops/H2an111a"], ["https://tec.openplanner.team/stops/Bclglbu1", "https://tec.openplanner.team/stops/Bllnfle1"], ["https://tec.openplanner.team/stops/LCPcomb2", "https://tec.openplanner.team/stops/LCPconf1"], ["https://tec.openplanner.team/stops/H1ms293b", "https://tec.openplanner.team/stops/H1ms312b"], ["https://tec.openplanner.team/stops/H5at113a", "https://tec.openplanner.team/stops/H5at132b"], ["https://tec.openplanner.team/stops/X370ada", "https://tec.openplanner.team/stops/X850aba"], ["https://tec.openplanner.team/stops/Lrcarse1", "https://tec.openplanner.team/stops/LrcarsT2"], ["https://tec.openplanner.team/stops/N501ebz", "https://tec.openplanner.team/stops/N501fwz"], ["https://tec.openplanner.team/stops/X911ana", "https://tec.openplanner.team/stops/X911anb"], ["https://tec.openplanner.team/stops/X871aaa", "https://tec.openplanner.team/stops/X871aba"], ["https://tec.openplanner.team/stops/Canresi2", "https://tec.openplanner.team/stops/Canrobe1"], ["https://tec.openplanner.team/stops/N501hub", "https://tec.openplanner.team/stops/N501ikb"], ["https://tec.openplanner.team/stops/LVSbleu1", "https://tec.openplanner.team/stops/LVSbleu2"], ["https://tec.openplanner.team/stops/X768ald", "https://tec.openplanner.team/stops/X768ama"], ["https://tec.openplanner.team/stops/LAWlonc1", "https://tec.openplanner.team/stops/LAWlonc2"], ["https://tec.openplanner.team/stops/H5el100a", "https://tec.openplanner.team/stops/H5el110b"], ["https://tec.openplanner.team/stops/H2ll182b", "https://tec.openplanner.team/stops/H2ll196a"], ["https://tec.openplanner.team/stops/Blsmjja2", "https://tec.openplanner.team/stops/Boplham1"], ["https://tec.openplanner.team/stops/LGAbois1", "https://tec.openplanner.team/stops/LWAaxhe2"], ["https://tec.openplanner.team/stops/H1sy150a", "https://tec.openplanner.team/stops/H1sy150b"], ["https://tec.openplanner.team/stops/Bsamegl2", "https://tec.openplanner.team/stops/Bsampli2"], ["https://tec.openplanner.team/stops/LBPmais2", "https://tec.openplanner.team/stops/LSLdall1"], ["https://tec.openplanner.team/stops/H2ch105c", "https://tec.openplanner.team/stops/H2ch105d"], ["https://tec.openplanner.team/stops/N537aga", "https://tec.openplanner.team/stops/N537aja"], ["https://tec.openplanner.team/stops/Cflpost2", "https://tec.openplanner.team/stops/Cwgcroi2"], ["https://tec.openplanner.team/stops/LKmmelo1", "https://tec.openplanner.team/stops/LKmmelo2"], ["https://tec.openplanner.team/stops/Bperqui2", "https://tec.openplanner.team/stops/N519abb"], ["https://tec.openplanner.team/stops/Lprchat2", "https://tec.openplanner.team/stops/Lprperr2"], ["https://tec.openplanner.team/stops/X614afa", "https://tec.openplanner.team/stops/X614aga"], ["https://tec.openplanner.team/stops/LHYwach2", "https://tec.openplanner.team/stops/LLNbeau2"], ["https://tec.openplanner.team/stops/Ljubrec2", "https://tec.openplanner.team/stops/Ljubruy*"], ["https://tec.openplanner.team/stops/Llglaur2", "https://tec.openplanner.team/stops/Llgmass2"], ["https://tec.openplanner.team/stops/LOL6che1", "https://tec.openplanner.team/stops/LSOdow%C3%A91"], ["https://tec.openplanner.team/stops/Btsllec1", "https://tec.openplanner.team/stops/Btsllfp2"], ["https://tec.openplanner.team/stops/Lve-isi1", "https://tec.openplanner.team/stops/Lvevieu2"], ["https://tec.openplanner.team/stops/Cvpcdec1", "https://tec.openplanner.team/stops/Cvpplan2"], ["https://tec.openplanner.team/stops/Csiegli1", "https://tec.openplanner.team/stops/N106afa"], ["https://tec.openplanner.team/stops/Bneedia1", "https://tec.openplanner.team/stops/Bneervc1"], ["https://tec.openplanner.team/stops/H4pq116b", "https://tec.openplanner.team/stops/H4pq118b"], ["https://tec.openplanner.team/stops/Csoforr1", "https://tec.openplanner.team/stops/Csoperi2"], ["https://tec.openplanner.team/stops/LBQmaye2", "https://tec.openplanner.team/stops/X919aia"], ["https://tec.openplanner.team/stops/Lsehaut2", "https://tec.openplanner.team/stops/Lsevecq1"], ["https://tec.openplanner.team/stops/LTPcarr2", "https://tec.openplanner.team/stops/LTPsatr1"], ["https://tec.openplanner.team/stops/X641aga", "https://tec.openplanner.team/stops/X641ajb"], ["https://tec.openplanner.team/stops/Canmonu2", "https://tec.openplanner.team/stops/Canplal2"], ["https://tec.openplanner.team/stops/Csslesc2", "https://tec.openplanner.team/stops/Csycant1"], ["https://tec.openplanner.team/stops/Bnivsba1", "https://tec.openplanner.team/stops/Bnivsho1"], ["https://tec.openplanner.team/stops/Lancolr2", "https://tec.openplanner.team/stops/Lanegal2"], ["https://tec.openplanner.team/stops/LVbgend1", "https://tec.openplanner.team/stops/LVbgend2"], ["https://tec.openplanner.team/stops/N228aeb", "https://tec.openplanner.team/stops/N235ada"], ["https://tec.openplanner.team/stops/X615ala", "https://tec.openplanner.team/stops/X615bra"], ["https://tec.openplanner.team/stops/N515ala", "https://tec.openplanner.team/stops/N515ata"], ["https://tec.openplanner.team/stops/X982asb", "https://tec.openplanner.team/stops/X982cca"], ["https://tec.openplanner.team/stops/Bbsicen2", "https://tec.openplanner.team/stops/Bhtihau2"], ["https://tec.openplanner.team/stops/LJSforg2", "https://tec.openplanner.team/stops/Lpechin1"], ["https://tec.openplanner.team/stops/X897ama", "https://tec.openplanner.team/stops/X897anb"], ["https://tec.openplanner.team/stops/LFCotte2", "https://tec.openplanner.team/stops/LFCscho2"], ["https://tec.openplanner.team/stops/LENarde2", "https://tec.openplanner.team/stops/LENparc2"], ["https://tec.openplanner.team/stops/N543bqb", "https://tec.openplanner.team/stops/N543cha"], ["https://tec.openplanner.team/stops/Cmahotv1", "https://tec.openplanner.team/stops/Cmomoul4"], ["https://tec.openplanner.team/stops/H2ec103a", "https://tec.openplanner.team/stops/H3br101a"], ["https://tec.openplanner.team/stops/Lsefive1", "https://tec.openplanner.team/stops/Lsemany1"], ["https://tec.openplanner.team/stops/Barchez1", "https://tec.openplanner.team/stops/Bnetegl3"], ["https://tec.openplanner.team/stops/X637aeb", "https://tec.openplanner.team/stops/X637agb"], ["https://tec.openplanner.team/stops/Bclgpla1", "https://tec.openplanner.team/stops/Bdvmtve2"], ["https://tec.openplanner.team/stops/Bgnvgir1", "https://tec.openplanner.team/stops/Bgnvoha2"], ["https://tec.openplanner.team/stops/LVSslin1", "https://tec.openplanner.team/stops/LVSslin4"], ["https://tec.openplanner.team/stops/Bchgqve1", "https://tec.openplanner.team/stops/Bchgqve3"], ["https://tec.openplanner.team/stops/Cmorgof1", "https://tec.openplanner.team/stops/Cmosaba3"], ["https://tec.openplanner.team/stops/N501crb", "https://tec.openplanner.team/stops/N501crc"], ["https://tec.openplanner.team/stops/X660aca", "https://tec.openplanner.team/stops/X660acb"], ["https://tec.openplanner.team/stops/H1te178a", "https://tec.openplanner.team/stops/H1te178b"], ["https://tec.openplanner.team/stops/X917afa", "https://tec.openplanner.team/stops/X917aga"], ["https://tec.openplanner.team/stops/X759afb", "https://tec.openplanner.team/stops/X759agb"], ["https://tec.openplanner.team/stops/LVIhall2", "https://tec.openplanner.team/stops/LVIjacq1"], ["https://tec.openplanner.team/stops/X994adb", "https://tec.openplanner.team/stops/X994agb"], ["https://tec.openplanner.team/stops/LeYteeh1", "https://tec.openplanner.team/stops/LeYvoge2"], ["https://tec.openplanner.team/stops/H1cu124b", "https://tec.openplanner.team/stops/H1cu130b"], ["https://tec.openplanner.team/stops/H1mj125a", "https://tec.openplanner.team/stops/H1mj125b"], ["https://tec.openplanner.team/stops/N234aeb", "https://tec.openplanner.team/stops/N234afb"], ["https://tec.openplanner.team/stops/H1lb137b", "https://tec.openplanner.team/stops/H1lb139b"], ["https://tec.openplanner.team/stops/LAUcarr2", "https://tec.openplanner.team/stops/LFdeg--4"], ["https://tec.openplanner.team/stops/LvA30--2", "https://tec.openplanner.team/stops/LvAkirc4"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X725bfa"], ["https://tec.openplanner.team/stops/X625aea", "https://tec.openplanner.team/stops/X625agb"], ["https://tec.openplanner.team/stops/LFFmarc2", "https://tec.openplanner.team/stops/LVEtomb2"], ["https://tec.openplanner.team/stops/N501dgb", "https://tec.openplanner.team/stops/N501lea"], ["https://tec.openplanner.team/stops/Ljehotv1", "https://tec.openplanner.team/stops/Ljexhav2"], ["https://tec.openplanner.team/stops/Cfmgrmo1", "https://tec.openplanner.team/stops/Cfmgrmo2"], ["https://tec.openplanner.team/stops/N204aca", "https://tec.openplanner.team/stops/N204aga"], ["https://tec.openplanner.team/stops/X750bga", "https://tec.openplanner.team/stops/X750bgb"], ["https://tec.openplanner.team/stops/X801bqa", "https://tec.openplanner.team/stops/X801bsa"], ["https://tec.openplanner.team/stops/H4mg139a", "https://tec.openplanner.team/stops/H4mg139b"], ["https://tec.openplanner.team/stops/H5st167a", "https://tec.openplanner.team/stops/H5st167b"], ["https://tec.openplanner.team/stops/LFCalte1", "https://tec.openplanner.team/stops/LFChuis1"], ["https://tec.openplanner.team/stops/N544acb", "https://tec.openplanner.team/stops/N544afa"], ["https://tec.openplanner.team/stops/LkEfrie2", "https://tec.openplanner.team/stops/LkEmax-2"], ["https://tec.openplanner.team/stops/Bnivplt2", "https://tec.openplanner.team/stops/Bnivpro2"], ["https://tec.openplanner.team/stops/Ccugilb2", "https://tec.openplanner.team/stops/Cflvxsa1"], ["https://tec.openplanner.team/stops/LLxcana1", "https://tec.openplanner.team/stops/LLxeclu2"], ["https://tec.openplanner.team/stops/H1eu103a", "https://tec.openplanner.team/stops/H1eu103b"], ["https://tec.openplanner.team/stops/LPUmang1", "https://tec.openplanner.team/stops/LPUmang2"], ["https://tec.openplanner.team/stops/Ldilyce*", "https://tec.openplanner.team/stops/Ldipl--4"], ["https://tec.openplanner.team/stops/H4ra159a", "https://tec.openplanner.team/stops/H4tu171b"], ["https://tec.openplanner.team/stops/Llgamer1", "https://tec.openplanner.team/stops/Llgoutr3"], ["https://tec.openplanner.team/stops/H1vh135b", "https://tec.openplanner.team/stops/H1vh137a"], ["https://tec.openplanner.team/stops/Cthnord1", "https://tec.openplanner.team/stops/Cthnsnc"], ["https://tec.openplanner.team/stops/Bgnvbsi1", "https://tec.openplanner.team/stops/Bgnvfai1"], ["https://tec.openplanner.team/stops/Cgzpjeu2", "https://tec.openplanner.team/stops/Cgzplac3"], ["https://tec.openplanner.team/stops/N425afb", "https://tec.openplanner.team/stops/N425agb"], ["https://tec.openplanner.team/stops/Ctuecol4", "https://tec.openplanner.team/stops/Ctuyser1"], ["https://tec.openplanner.team/stops/Lfhgare1", "https://tec.openplanner.team/stops/Lfhmalv2"], ["https://tec.openplanner.team/stops/X979aca", "https://tec.openplanner.team/stops/X979adb"], ["https://tec.openplanner.team/stops/LMAwavr1", "https://tec.openplanner.team/stops/LMAwavr2"], ["https://tec.openplanner.team/stops/LBIvill3", "https://tec.openplanner.team/stops/LBIvill4"], ["https://tec.openplanner.team/stops/N568aab", "https://tec.openplanner.team/stops/N568aca"], ["https://tec.openplanner.team/stops/Ctrleju1", "https://tec.openplanner.team/stops/Ctrvert1"], ["https://tec.openplanner.team/stops/Lbrfagn1", "https://tec.openplanner.team/stops/Lbrfune*"], ["https://tec.openplanner.team/stops/Blemwob3", "https://tec.openplanner.team/stops/Bstecal2"], ["https://tec.openplanner.team/stops/N228aaa", "https://tec.openplanner.team/stops/N228aeb"], ["https://tec.openplanner.team/stops/H1bs112b", "https://tec.openplanner.team/stops/H1sb148b"], ["https://tec.openplanner.team/stops/H1ne145b", "https://tec.openplanner.team/stops/H1ne148b"], ["https://tec.openplanner.team/stops/X576ada", "https://tec.openplanner.team/stops/X576aea"], ["https://tec.openplanner.team/stops/Lgrcral1", "https://tec.openplanner.team/stops/Lgrcral2"], ["https://tec.openplanner.team/stops/LVnourt3", "https://tec.openplanner.team/stops/LVnourt4"], ["https://tec.openplanner.team/stops/H2pr118a", "https://tec.openplanner.team/stops/H3so185a"], ["https://tec.openplanner.team/stops/X824abb", "https://tec.openplanner.team/stops/X824acb"], ["https://tec.openplanner.team/stops/Bnstver2", "https://tec.openplanner.team/stops/H3br122b"], ["https://tec.openplanner.team/stops/N424acb", "https://tec.openplanner.team/stops/N424adb"], ["https://tec.openplanner.team/stops/H1lb154a", "https://tec.openplanner.team/stops/H1pa167b"], ["https://tec.openplanner.team/stops/H2hg145a", "https://tec.openplanner.team/stops/H2hg150a"], ["https://tec.openplanner.team/stops/X636ata", "https://tec.openplanner.team/stops/X636aub"], ["https://tec.openplanner.team/stops/X733ahb", "https://tec.openplanner.team/stops/X733ajb"], ["https://tec.openplanner.team/stops/Bbiehec2", "https://tec.openplanner.team/stops/Bbiehpo1"], ["https://tec.openplanner.team/stops/Cmqbasv2", "https://tec.openplanner.team/stops/X611aca"], ["https://tec.openplanner.team/stops/N532aab", "https://tec.openplanner.team/stops/N532anb"], ["https://tec.openplanner.team/stops/Bwavbpi1", "https://tec.openplanner.team/stops/Bwavvpr2"], ["https://tec.openplanner.team/stops/X618aeb", "https://tec.openplanner.team/stops/X618afb"], ["https://tec.openplanner.team/stops/H4hx112a", "https://tec.openplanner.team/stops/H4hx115a"], ["https://tec.openplanner.team/stops/NC14aod", "https://tec.openplanner.team/stops/NC14apb"], ["https://tec.openplanner.team/stops/X601bpa", "https://tec.openplanner.team/stops/X601bqa"], ["https://tec.openplanner.team/stops/X398aba", "https://tec.openplanner.team/stops/X398aga"], ["https://tec.openplanner.team/stops/LSUroyo1", "https://tec.openplanner.team/stops/LSZeg--1"], ["https://tec.openplanner.team/stops/H1eq116b", "https://tec.openplanner.team/stops/H1eq117a"], ["https://tec.openplanner.team/stops/X640afa", "https://tec.openplanner.team/stops/X640afb"], ["https://tec.openplanner.team/stops/LaSneuh1", "https://tec.openplanner.team/stops/LaSneuh2"], ["https://tec.openplanner.team/stops/X743aeb", "https://tec.openplanner.team/stops/X743afb"], ["https://tec.openplanner.team/stops/LWahott1", "https://tec.openplanner.team/stops/LWazoni2"], ["https://tec.openplanner.team/stops/N365aba", "https://tec.openplanner.team/stops/N365acb"], ["https://tec.openplanner.team/stops/X993aab", "https://tec.openplanner.team/stops/X993abd"], ["https://tec.openplanner.team/stops/Ljubois1", "https://tec.openplanner.team/stops/Ljubois2"], ["https://tec.openplanner.team/stops/LbRkirc1", "https://tec.openplanner.team/stops/LwTkabi2"], ["https://tec.openplanner.team/stops/X747ala", "https://tec.openplanner.team/stops/X754akb"], ["https://tec.openplanner.team/stops/LHUhaum2", "https://tec.openplanner.team/stops/LHUhaut1"], ["https://tec.openplanner.team/stops/Ccoptca2", "https://tec.openplanner.team/stops/Cgofert1"], ["https://tec.openplanner.team/stops/H1sy144a", "https://tec.openplanner.team/stops/H1sy144c"], ["https://tec.openplanner.team/stops/N570acb", "https://tec.openplanner.team/stops/N570agb"], ["https://tec.openplanner.team/stops/Cmaacac1", "https://tec.openplanner.team/stops/Cmacoll2"], ["https://tec.openplanner.team/stops/H4bs112a", "https://tec.openplanner.team/stops/H4ca123b"], ["https://tec.openplanner.team/stops/LeUschn2", "https://tec.openplanner.team/stops/LkTkabi2"], ["https://tec.openplanner.team/stops/LlgPRVo2", "https://tec.openplanner.team/stops/Lrcstad1"], ["https://tec.openplanner.team/stops/LLUvent2", "https://tec.openplanner.team/stops/LLUvent4"], ["https://tec.openplanner.team/stops/Lheelva2", "https://tec.openplanner.team/stops/LHemoul2"], ["https://tec.openplanner.team/stops/LSTvaul1", "https://tec.openplanner.team/stops/LSTvaul2"], ["https://tec.openplanner.team/stops/X806aca", "https://tec.openplanner.team/stops/X806acb"], ["https://tec.openplanner.team/stops/LCeterm1", "https://tec.openplanner.team/stops/LGAnovi1"], ["https://tec.openplanner.team/stops/H4bd109b", "https://tec.openplanner.team/stops/H4bd111a"], ["https://tec.openplanner.team/stops/Bviravi2", "https://tec.openplanner.team/stops/Bvirdco2"], ["https://tec.openplanner.team/stops/LWZdtec1", "https://tec.openplanner.team/stops/X261aaa"], ["https://tec.openplanner.team/stops/Cfnegli1", "https://tec.openplanner.team/stops/Cfnegli2"], ["https://tec.openplanner.team/stops/H4av103c", "https://tec.openplanner.team/stops/H4ss156b"], ["https://tec.openplanner.team/stops/H5bs102a", "https://tec.openplanner.team/stops/H5bs102c"], ["https://tec.openplanner.team/stops/H4bh102b", "https://tec.openplanner.team/stops/H4bh102c"], ["https://tec.openplanner.team/stops/N501crc", "https://tec.openplanner.team/stops/N501crd"], ["https://tec.openplanner.team/stops/Cmgbrou2", "https://tec.openplanner.team/stops/Cmgslo1"], ["https://tec.openplanner.team/stops/H5bl116b", "https://tec.openplanner.team/stops/H5bl122b"], ["https://tec.openplanner.team/stops/X982awa", "https://tec.openplanner.team/stops/X982cda"], ["https://tec.openplanner.team/stops/H4fr394a", "https://tec.openplanner.team/stops/H4ka181b"], ["https://tec.openplanner.team/stops/N244afa", "https://tec.openplanner.team/stops/N244amb"], ["https://tec.openplanner.team/stops/Loudemo1", "https://tec.openplanner.team/stops/Loutrix2"], ["https://tec.openplanner.team/stops/N543avg", "https://tec.openplanner.team/stops/N543avh"], ["https://tec.openplanner.team/stops/NL74ada", "https://tec.openplanner.team/stops/NL74afb"], ["https://tec.openplanner.team/stops/N531ana", "https://tec.openplanner.team/stops/N531aoa"], ["https://tec.openplanner.team/stops/N201aub", "https://tec.openplanner.team/stops/N236aba"], ["https://tec.openplanner.team/stops/Bhencha1", "https://tec.openplanner.team/stops/Bvircsj1"], ["https://tec.openplanner.team/stops/X954acb", "https://tec.openplanner.team/stops/X954ahb"], ["https://tec.openplanner.team/stops/LrUbahn1", "https://tec.openplanner.team/stops/LsFcafe2"], ["https://tec.openplanner.team/stops/H4lg102b", "https://tec.openplanner.team/stops/H4lg103a"], ["https://tec.openplanner.team/stops/Lghcfer1", "https://tec.openplanner.team/stops/Lghvold2"], ["https://tec.openplanner.team/stops/LVHcent2", "https://tec.openplanner.team/stops/LVHweri2"], ["https://tec.openplanner.team/stops/N348acb", "https://tec.openplanner.team/stops/N348aea"], ["https://tec.openplanner.team/stops/LLTcent2", "https://tec.openplanner.team/stops/LLTcoop1"], ["https://tec.openplanner.team/stops/H4ca124b", "https://tec.openplanner.team/stops/H4ws160a"], ["https://tec.openplanner.team/stops/LTNeau-1", "https://tec.openplanner.team/stops/LTNegli2"], ["https://tec.openplanner.team/stops/X882aeb", "https://tec.openplanner.team/stops/X882alb"], ["https://tec.openplanner.team/stops/X652afc", "https://tec.openplanner.team/stops/X652aga"], ["https://tec.openplanner.team/stops/X907aia", "https://tec.openplanner.team/stops/X938aab"], ["https://tec.openplanner.team/stops/N501lsa", "https://tec.openplanner.team/stops/N501maa"], ["https://tec.openplanner.team/stops/Cptcamb2", "https://tec.openplanner.team/stops/Cptegli3"], ["https://tec.openplanner.team/stops/H4ae102b", "https://tec.openplanner.team/stops/H4mo192a"], ["https://tec.openplanner.team/stops/X879akb", "https://tec.openplanner.team/stops/X879aoa"], ["https://tec.openplanner.team/stops/Bhalomo2", "https://tec.openplanner.team/stops/Bhalrat1"], ["https://tec.openplanner.team/stops/X919ajc", "https://tec.openplanner.team/stops/X919aoa"], ["https://tec.openplanner.team/stops/Lvefanc1", "https://tec.openplanner.team/stops/Lveptle4"], ["https://tec.openplanner.team/stops/H1gn149a", "https://tec.openplanner.team/stops/H1gn152b"], ["https://tec.openplanner.team/stops/Cmlhubi2", "https://tec.openplanner.team/stops/Cmlmatc2"], ["https://tec.openplanner.team/stops/N988abb", "https://tec.openplanner.team/stops/N988acb"], ["https://tec.openplanner.team/stops/N528awb", "https://tec.openplanner.team/stops/N542aqa"], ["https://tec.openplanner.team/stops/LEHhaut1", "https://tec.openplanner.team/stops/LEHpech1"], ["https://tec.openplanner.team/stops/LBavive2", "https://tec.openplanner.team/stops/Lpebeco2"], ["https://tec.openplanner.team/stops/Cctsold1", "https://tec.openplanner.team/stops/Cctvand2"], ["https://tec.openplanner.team/stops/H1nm138b", "https://tec.openplanner.team/stops/H1si164b"], ["https://tec.openplanner.team/stops/Cgynoir1", "https://tec.openplanner.team/stops/Cgythio1"], ["https://tec.openplanner.team/stops/Ljucrah2", "https://tec.openplanner.team/stops/Ljuetie2"], ["https://tec.openplanner.team/stops/N301afb", "https://tec.openplanner.team/stops/N301aib"], ["https://tec.openplanner.team/stops/LSLprov2", "https://tec.openplanner.team/stops/LSLvaux1"], ["https://tec.openplanner.team/stops/X607ahb", "https://tec.openplanner.team/stops/X607aka"], ["https://tec.openplanner.team/stops/X804aaa", "https://tec.openplanner.team/stops/X804aca"], ["https://tec.openplanner.team/stops/LBRpier2", "https://tec.openplanner.team/stops/LBRpt--1"], ["https://tec.openplanner.team/stops/H5pe125a", "https://tec.openplanner.team/stops/H5pe126b"], ["https://tec.openplanner.team/stops/LVleg--3", "https://tec.openplanner.team/stops/LVleg--6"], ["https://tec.openplanner.team/stops/Llgcita2", "https://tec.openplanner.team/stops/Llgmarc2"], ["https://tec.openplanner.team/stops/N521aqb", "https://tec.openplanner.team/stops/N521aub"], ["https://tec.openplanner.team/stops/Bbcohou3", "https://tec.openplanner.team/stops/Bhen5ma1"], ["https://tec.openplanner.team/stops/Cwfmoul1", "https://tec.openplanner.team/stops/NC23aab"], ["https://tec.openplanner.team/stops/LOccarr2", "https://tec.openplanner.team/stops/LTestat2"], ["https://tec.openplanner.team/stops/LwLkirc1", "https://tec.openplanner.team/stops/LwLkirc2"], ["https://tec.openplanner.team/stops/N543aeb", "https://tec.openplanner.team/stops/N543arb"], ["https://tec.openplanner.team/stops/LBhcent2", "https://tec.openplanner.team/stops/LtEnach1"], ["https://tec.openplanner.team/stops/X902aua", "https://tec.openplanner.team/stops/X902ava"], ["https://tec.openplanner.team/stops/N507aqb", "https://tec.openplanner.team/stops/N581aab"], ["https://tec.openplanner.team/stops/Lgrclin4", "https://tec.openplanner.team/stops/Lgrwill1"], ["https://tec.openplanner.team/stops/Lemcarm1", "https://tec.openplanner.team/stops/Lemhenn1"], ["https://tec.openplanner.team/stops/Bsaupco1", "https://tec.openplanner.team/stops/N541aea"], ["https://tec.openplanner.team/stops/H4fl115a", "https://tec.openplanner.team/stops/H4wi175a"], ["https://tec.openplanner.team/stops/LABvill1", "https://tec.openplanner.team/stops/LABvill2"], ["https://tec.openplanner.team/stops/N507aea", "https://tec.openplanner.team/stops/N507aib"], ["https://tec.openplanner.team/stops/Ljecocc2", "https://tec.openplanner.team/stops/Ljejoli2"], ["https://tec.openplanner.team/stops/LFAplan1", "https://tec.openplanner.team/stops/LFUfleu1"], ["https://tec.openplanner.team/stops/H4by119b", "https://tec.openplanner.team/stops/H4ro155a"], ["https://tec.openplanner.team/stops/N544adb", "https://tec.openplanner.team/stops/N549aea"], ["https://tec.openplanner.team/stops/LPtrefa2", "https://tec.openplanner.team/stops/LrEochs2"], ["https://tec.openplanner.team/stops/Cmgarsi2", "https://tec.openplanner.team/stops/Cmghay1"], ["https://tec.openplanner.team/stops/X768ada", "https://tec.openplanner.team/stops/X769apa"], ["https://tec.openplanner.team/stops/H2sv220b", "https://tec.openplanner.team/stops/H2sv221b"], ["https://tec.openplanner.team/stops/Csdbosq1", "https://tec.openplanner.team/stops/Csdjeme1"], ["https://tec.openplanner.team/stops/H4ty305a", "https://tec.openplanner.team/stops/H4ty379a"], ["https://tec.openplanner.team/stops/Bneeblo2", "https://tec.openplanner.team/stops/Bneepne2"], ["https://tec.openplanner.team/stops/Bglicsm1", "https://tec.openplanner.team/stops/Btlbche2"], ["https://tec.openplanner.team/stops/LAx41--2", "https://tec.openplanner.team/stops/LFsbasc2"], ["https://tec.openplanner.team/stops/LOmecol1", "https://tec.openplanner.team/stops/LOmecol2"], ["https://tec.openplanner.team/stops/Cfldand1", "https://tec.openplanner.team/stops/Cfldand2"], ["https://tec.openplanner.team/stops/Lscpamp1", "https://tec.openplanner.team/stops/Lscpamp2"], ["https://tec.openplanner.team/stops/X750ada", "https://tec.openplanner.team/stops/X750adb"], ["https://tec.openplanner.team/stops/N229ara", "https://tec.openplanner.team/stops/N229arb"], ["https://tec.openplanner.team/stops/Lghhoco2", "https://tec.openplanner.team/stops/Lghmont2"], ["https://tec.openplanner.team/stops/H1fl139a", "https://tec.openplanner.team/stops/H1fl370a"], ["https://tec.openplanner.team/stops/H1ca109a", "https://tec.openplanner.team/stops/H1sd347a"], ["https://tec.openplanner.team/stops/X626acb", "https://tec.openplanner.team/stops/X626adb"], ["https://tec.openplanner.team/stops/N167aha", "https://tec.openplanner.team/stops/N167ahb"], ["https://tec.openplanner.team/stops/N557aba", "https://tec.openplanner.team/stops/N557acb"], ["https://tec.openplanner.team/stops/LWRbois1", "https://tec.openplanner.team/stops/LWRheyd1"], ["https://tec.openplanner.team/stops/X904aka", "https://tec.openplanner.team/stops/X943ada"], ["https://tec.openplanner.team/stops/N538ava", "https://tec.openplanner.team/stops/N538awb"], ["https://tec.openplanner.team/stops/Lourose1", "https://tec.openplanner.team/stops/Lourose3"], ["https://tec.openplanner.team/stops/H1mb135a", "https://tec.openplanner.team/stops/H1mb166b"], ["https://tec.openplanner.team/stops/Lsechan1", "https://tec.openplanner.team/stops/Lsevecq2"], ["https://tec.openplanner.team/stops/Cfrmon3", "https://tec.openplanner.team/stops/Cfrmonu5"], ["https://tec.openplanner.team/stops/Barqbco2", "https://tec.openplanner.team/stops/Barqhpe1"], ["https://tec.openplanner.team/stops/X614aca", "https://tec.openplanner.team/stops/X614apb"], ["https://tec.openplanner.team/stops/N232axb", "https://tec.openplanner.team/stops/N232bpa"], ["https://tec.openplanner.team/stops/Lscbarg1", "https://tec.openplanner.team/stops/Ltibell1"], ["https://tec.openplanner.team/stops/LbOre151", "https://tec.openplanner.team/stops/LmObahn*"], ["https://tec.openplanner.team/stops/N232awb", "https://tec.openplanner.team/stops/N232boa"], ["https://tec.openplanner.team/stops/Lgrbell2", "https://tec.openplanner.team/stops/Lgrcral2"], ["https://tec.openplanner.team/stops/X671aea", "https://tec.openplanner.team/stops/X671aeb"], ["https://tec.openplanner.team/stops/N207adb", "https://tec.openplanner.team/stops/N209aaa"], ["https://tec.openplanner.team/stops/Lvcfogu1", "https://tec.openplanner.team/stops/Lvcpost2"], ["https://tec.openplanner.team/stops/LQacabi2", "https://tec.openplanner.team/stops/LSMgare2"], ["https://tec.openplanner.team/stops/LSPguer1", "https://tec.openplanner.team/stops/LSPguer2"], ["https://tec.openplanner.team/stops/X654aha", "https://tec.openplanner.team/stops/X654ajb"], ["https://tec.openplanner.team/stops/H5rx114b", "https://tec.openplanner.team/stops/H5rx126a"], ["https://tec.openplanner.team/stops/NL57aib", "https://tec.openplanner.team/stops/NL57ajb"], ["https://tec.openplanner.team/stops/Blinbru1", "https://tec.openplanner.team/stops/Brach122"], ["https://tec.openplanner.team/stops/LODarbr1", "https://tec.openplanner.team/stops/XODvill2"], ["https://tec.openplanner.team/stops/N506bka", "https://tec.openplanner.team/stops/N506bkb"], ["https://tec.openplanner.team/stops/Cfrcoqu1", "https://tec.openplanner.team/stops/Cfrcoqu2"], ["https://tec.openplanner.team/stops/Lmobras2", "https://tec.openplanner.team/stops/Lmogoff1"], ["https://tec.openplanner.team/stops/Bbch4br1", "https://tec.openplanner.team/stops/Bbch4br3"], ["https://tec.openplanner.team/stops/H2go114d", "https://tec.openplanner.team/stops/H2go117a"], ["https://tec.openplanner.team/stops/H4ty298b", "https://tec.openplanner.team/stops/H4ty347a"], ["https://tec.openplanner.team/stops/Bbea3he1", "https://tec.openplanner.team/stops/Bmlncha2"], ["https://tec.openplanner.team/stops/X741aic", "https://tec.openplanner.team/stops/X741aoa"], ["https://tec.openplanner.team/stops/H4cw104b", "https://tec.openplanner.team/stops/H4cw105a"], ["https://tec.openplanner.team/stops/N385ada", "https://tec.openplanner.team/stops/N385adb"], ["https://tec.openplanner.team/stops/Bwatcha2", "https://tec.openplanner.team/stops/Bwatmbv1"], ["https://tec.openplanner.team/stops/LBVcent1", "https://tec.openplanner.team/stops/LBVzand3"], ["https://tec.openplanner.team/stops/Cthegli1", "https://tec.openplanner.team/stops/Cthwaib1"], ["https://tec.openplanner.team/stops/Cmamonu1", "https://tec.openplanner.team/stops/Cmastma2"], ["https://tec.openplanner.team/stops/LFrfrai1", "https://tec.openplanner.team/stops/LFrfrai2"], ["https://tec.openplanner.team/stops/Bquebre1", "https://tec.openplanner.team/stops/Bquebre2"], ["https://tec.openplanner.team/stops/Bgnvcha2", "https://tec.openplanner.team/stops/Bgnvgir1"], ["https://tec.openplanner.team/stops/LPLcarr1", "https://tec.openplanner.team/stops/Lsebonc1"], ["https://tec.openplanner.team/stops/Bgliaau2", "https://tec.openplanner.team/stops/Bgliopp4"], ["https://tec.openplanner.team/stops/Llieg--4", "https://tec.openplanner.team/stops/Llivina2"], ["https://tec.openplanner.team/stops/NB33ala", "https://tec.openplanner.team/stops/NB33alb"], ["https://tec.openplanner.team/stops/N234aea", "https://tec.openplanner.team/stops/N549adb"], ["https://tec.openplanner.team/stops/N232bzb", "https://tec.openplanner.team/stops/N232cda"], ["https://tec.openplanner.team/stops/X907adb", "https://tec.openplanner.team/stops/X907aea"], ["https://tec.openplanner.team/stops/LbUmolk1", "https://tec.openplanner.team/stops/LwR129-1"], ["https://tec.openplanner.team/stops/N543aub", "https://tec.openplanner.team/stops/N543aza"], ["https://tec.openplanner.team/stops/N534ayb", "https://tec.openplanner.team/stops/N534cbg"], ["https://tec.openplanner.team/stops/LSZsolw1", "https://tec.openplanner.team/stops/LSZsolw4"], ["https://tec.openplanner.team/stops/X982bga", "https://tec.openplanner.team/stops/X982cba"], ["https://tec.openplanner.team/stops/H1ms259a", "https://tec.openplanner.team/stops/H1ms280a"], ["https://tec.openplanner.team/stops/X672aab", "https://tec.openplanner.team/stops/X672adb"], ["https://tec.openplanner.team/stops/H1hr117a", "https://tec.openplanner.team/stops/H1hr128a"], ["https://tec.openplanner.team/stops/Lvcbalt1", "https://tec.openplanner.team/stops/Lvcbalt2"], ["https://tec.openplanner.team/stops/Borborb1", "https://tec.openplanner.team/stops/Btslpic6"], ["https://tec.openplanner.team/stops/LNCvann1", "https://tec.openplanner.team/stops/LRRrimi1"], ["https://tec.openplanner.team/stops/LFsconc2", "https://tec.openplanner.team/stops/LFsguil2"], ["https://tec.openplanner.team/stops/LGEvill2", "https://tec.openplanner.team/stops/LLSba9-2"], ["https://tec.openplanner.team/stops/Blindel6", "https://tec.openplanner.team/stops/Blineco1"], ["https://tec.openplanner.team/stops/N351asb", "https://tec.openplanner.team/stops/N351aub"], ["https://tec.openplanner.team/stops/H1mh112a", "https://tec.openplanner.team/stops/H1mh117a"], ["https://tec.openplanner.team/stops/H1bl104b", "https://tec.openplanner.team/stops/H1pd144a"], ["https://tec.openplanner.team/stops/N228aeb", "https://tec.openplanner.team/stops/N236aib"], ["https://tec.openplanner.team/stops/NL76aca", "https://tec.openplanner.team/stops/NL80aub"], ["https://tec.openplanner.team/stops/LbThutt2", "https://tec.openplanner.team/stops/LbTmons1"], ["https://tec.openplanner.team/stops/LMAalli2", "https://tec.openplanner.team/stops/LMAcomm1"], ["https://tec.openplanner.team/stops/X342aha", "https://tec.openplanner.team/stops/X354aga"], ["https://tec.openplanner.team/stops/Cjuplho1", "https://tec.openplanner.team/stops/Cjutrou1"], ["https://tec.openplanner.team/stops/NL76apa", "https://tec.openplanner.team/stops/NL76apb"], ["https://tec.openplanner.team/stops/LBPunic2", "https://tec.openplanner.team/stops/LGLgeer1"], ["https://tec.openplanner.team/stops/H2hg266a", "https://tec.openplanner.team/stops/H2hg272b"], ["https://tec.openplanner.team/stops/Buccplj1", "https://tec.openplanner.team/stops/Buccptj1"], ["https://tec.openplanner.team/stops/LOdcris1", "https://tec.openplanner.team/stops/LOdmonu1"], ["https://tec.openplanner.team/stops/Lbrcard1", "https://tec.openplanner.team/stops/Lbrfusi1"], ["https://tec.openplanner.team/stops/N553ama", "https://tec.openplanner.team/stops/N553amb"], ["https://tec.openplanner.team/stops/Cgzdeve1", "https://tec.openplanner.team/stops/Clddelh2"], ["https://tec.openplanner.team/stops/H4an111c", "https://tec.openplanner.team/stops/H4an112a"], ["https://tec.openplanner.team/stops/N501faa", "https://tec.openplanner.team/stops/N501fab"], ["https://tec.openplanner.team/stops/H1qy135b", "https://tec.openplanner.team/stops/H1qy137a"], ["https://tec.openplanner.team/stops/H1qv114b", "https://tec.openplanner.team/stops/H4be101a"], ["https://tec.openplanner.team/stops/N519aha", "https://tec.openplanner.team/stops/N519aoa"], ["https://tec.openplanner.team/stops/X601axb", "https://tec.openplanner.team/stops/X612aaa"], ["https://tec.openplanner.team/stops/H4wp153a", "https://tec.openplanner.team/stops/H4wp153b"], ["https://tec.openplanner.team/stops/H4li178a", "https://tec.openplanner.team/stops/H4va231a"], ["https://tec.openplanner.team/stops/LBiroch2", "https://tec.openplanner.team/stops/LBivi--2"], ["https://tec.openplanner.team/stops/X811aoa", "https://tec.openplanner.team/stops/X811apb"], ["https://tec.openplanner.team/stops/Cdamarc2", "https://tec.openplanner.team/stops/Cdaviol2"], ["https://tec.openplanner.team/stops/Cmlrbru2", "https://tec.openplanner.team/stops/Cmlsart1"], ["https://tec.openplanner.team/stops/Beclaub1", "https://tec.openplanner.team/stops/Beclpla2"], ["https://tec.openplanner.team/stops/Cplcafp2", "https://tec.openplanner.team/stops/Cplrymo1"], ["https://tec.openplanner.team/stops/X724agb", "https://tec.openplanner.team/stops/X724aha"], ["https://tec.openplanner.team/stops/Ccocroi1", "https://tec.openplanner.team/stops/Ccocroi2"], ["https://tec.openplanner.team/stops/N562aoa", "https://tec.openplanner.team/stops/N562bwa"], ["https://tec.openplanner.team/stops/X786aea", "https://tec.openplanner.team/stops/X786aja"], ["https://tec.openplanner.team/stops/Lsmcime1", "https://tec.openplanner.team/stops/Lsmcime2"], ["https://tec.openplanner.team/stops/N539aia", "https://tec.openplanner.team/stops/N539alb"], ["https://tec.openplanner.team/stops/H4fr394a", "https://tec.openplanner.team/stops/H4ty301c"], ["https://tec.openplanner.team/stops/Llgcfra1", "https://tec.openplanner.team/stops/Llghec-1"], ["https://tec.openplanner.team/stops/N232aba", "https://tec.openplanner.team/stops/N232abb"], ["https://tec.openplanner.team/stops/X601aib", "https://tec.openplanner.team/stops/X601bva"], ["https://tec.openplanner.team/stops/X644aea", "https://tec.openplanner.team/stops/X644aeb"], ["https://tec.openplanner.team/stops/Bmalwvi1", "https://tec.openplanner.team/stops/Bmalwvi2"], ["https://tec.openplanner.team/stops/LAx41--1", "https://tec.openplanner.team/stops/Lmitech1"], ["https://tec.openplanner.team/stops/H4ft133a", "https://tec.openplanner.team/stops/H4ft135c"], ["https://tec.openplanner.team/stops/Cmesafi1", "https://tec.openplanner.team/stops/Cmesafi2"], ["https://tec.openplanner.team/stops/LHaodei1", "https://tec.openplanner.team/stops/LHaodei2"], ["https://tec.openplanner.team/stops/N501gva", "https://tec.openplanner.team/stops/N501lca"], ["https://tec.openplanner.team/stops/Blhueca1", "https://tec.openplanner.team/stops/Blhutco2"], ["https://tec.openplanner.team/stops/X774agb", "https://tec.openplanner.team/stops/X775agb"], ["https://tec.openplanner.team/stops/Bmouegl2", "https://tec.openplanner.team/stops/Bottegl2"], ["https://tec.openplanner.team/stops/LVPcoeu2", "https://tec.openplanner.team/stops/LVPeg--2"], ["https://tec.openplanner.team/stops/H4ru246b", "https://tec.openplanner.team/stops/H4ty349b"], ["https://tec.openplanner.team/stops/H1wa132b", "https://tec.openplanner.team/stops/H1wa150a"], ["https://tec.openplanner.team/stops/Bcseche1", "https://tec.openplanner.team/stops/Bcsegar1"], ["https://tec.openplanner.team/stops/H1sb149a", "https://tec.openplanner.team/stops/H1sb150a"], ["https://tec.openplanner.team/stops/Blempuc1", "https://tec.openplanner.team/stops/Btubsam2"], ["https://tec.openplanner.team/stops/H1po154a", "https://tec.openplanner.team/stops/H1tl119b"], ["https://tec.openplanner.team/stops/LbUmurr1", "https://tec.openplanner.team/stops/LbUmurr2"], ["https://tec.openplanner.team/stops/Balsbeg2", "https://tec.openplanner.team/stops/Balswsa2"], ["https://tec.openplanner.team/stops/LScchpl2", "https://tec.openplanner.team/stops/LScdina2"], ["https://tec.openplanner.team/stops/H4er121b", "https://tec.openplanner.team/stops/H4oq223b"], ["https://tec.openplanner.team/stops/H5rx128a", "https://tec.openplanner.team/stops/H5rx128b"], ["https://tec.openplanner.team/stops/N353awa", "https://tec.openplanner.team/stops/N353awb"], ["https://tec.openplanner.team/stops/H1ob328a", "https://tec.openplanner.team/stops/H1sd366a"], ["https://tec.openplanner.team/stops/LVleg--1", "https://tec.openplanner.team/stops/LVleg--6"], ["https://tec.openplanner.team/stops/Lpeeg--1", "https://tec.openplanner.team/stops/Lpeptwa2"], ["https://tec.openplanner.team/stops/H2ha135b", "https://tec.openplanner.team/stops/H2ha135c"], ["https://tec.openplanner.team/stops/LAVdepr1", "https://tec.openplanner.team/stops/LVPduvi1"], ["https://tec.openplanner.team/stops/H4gz115b", "https://tec.openplanner.team/stops/H4ms145a"], ["https://tec.openplanner.team/stops/X897adb", "https://tec.openplanner.team/stops/X897arb"], ["https://tec.openplanner.team/stops/LROmons1", "https://tec.openplanner.team/stops/LWalibo2"], ["https://tec.openplanner.team/stops/LeYvoge2", "https://tec.openplanner.team/stops/LrAneus2"], ["https://tec.openplanner.team/stops/N501bfa", "https://tec.openplanner.team/stops/N501bfy"], ["https://tec.openplanner.team/stops/X723acb", "https://tec.openplanner.team/stops/X723aha"], ["https://tec.openplanner.team/stops/Boplcar1", "https://tec.openplanner.team/stops/Boplham1"], ["https://tec.openplanner.team/stops/N576aea", "https://tec.openplanner.team/stops/N576alb"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LSJeg--2"], ["https://tec.openplanner.team/stops/H1wi155b", "https://tec.openplanner.team/stops/H1wi157a"], ["https://tec.openplanner.team/stops/LFTec--2", "https://tec.openplanner.team/stops/LSygerm2"], ["https://tec.openplanner.team/stops/Clgmaco2", "https://tec.openplanner.team/stops/Ctisart2"], ["https://tec.openplanner.team/stops/LPRfour2", "https://tec.openplanner.team/stops/LSHmais1"], ["https://tec.openplanner.team/stops/H2pr116b", "https://tec.openplanner.team/stops/H2pr117a"], ["https://tec.openplanner.team/stops/Cchdigu4", "https://tec.openplanner.team/stops/Cchoues3"], ["https://tec.openplanner.team/stops/H1eo108a", "https://tec.openplanner.team/stops/H1mj128a"], ["https://tec.openplanner.team/stops/Ladotto1", "https://tec.openplanner.team/stops/Ladppir1"], ["https://tec.openplanner.team/stops/H4ty341a", "https://tec.openplanner.team/stops/H4ty356b"], ["https://tec.openplanner.team/stops/H4lz127a", "https://tec.openplanner.team/stops/H4wp152b"], ["https://tec.openplanner.team/stops/H4hu121a", "https://tec.openplanner.team/stops/H4hu121b"], ["https://tec.openplanner.team/stops/H1pa117b", "https://tec.openplanner.team/stops/H1pa166b"], ["https://tec.openplanner.team/stops/Bwavlca2", "https://tec.openplanner.team/stops/Bwavvpr2"], ["https://tec.openplanner.team/stops/H4la197a", "https://tec.openplanner.team/stops/H4la199a"], ["https://tec.openplanner.team/stops/N114aab", "https://tec.openplanner.team/stops/X316aaa"], ["https://tec.openplanner.team/stops/X908aoa", "https://tec.openplanner.team/stops/X908aoc"], ["https://tec.openplanner.team/stops/Lpecroi2", "https://tec.openplanner.team/stops/Lpeptra2"], ["https://tec.openplanner.team/stops/X666aja", "https://tec.openplanner.team/stops/X666ajb"], ["https://tec.openplanner.team/stops/N569aib", "https://tec.openplanner.team/stops/N571afb"], ["https://tec.openplanner.team/stops/Cgualno1", "https://tec.openplanner.team/stops/Ctybaco1"], ["https://tec.openplanner.team/stops/X901bba", "https://tec.openplanner.team/stops/X922aba"], ["https://tec.openplanner.team/stops/Bllnpaf4", "https://tec.openplanner.team/stops/Bmsgbur2"], ["https://tec.openplanner.team/stops/Cci28ju1", "https://tec.openplanner.team/stops/Cciethi2"], ["https://tec.openplanner.team/stops/H1ba111a", "https://tec.openplanner.team/stops/H1ba111b"], ["https://tec.openplanner.team/stops/LHUpsar1", "https://tec.openplanner.team/stops/LHUvege1"], ["https://tec.openplanner.team/stops/LGeborn1", "https://tec.openplanner.team/stops/LGegare1"], ["https://tec.openplanner.team/stops/H2be100a", "https://tec.openplanner.team/stops/H2lh128a"], ["https://tec.openplanner.team/stops/NL76alb", "https://tec.openplanner.team/stops/NL76ald"], ["https://tec.openplanner.team/stops/LCSfagn2", "https://tec.openplanner.team/stops/LHHroua2"], ["https://tec.openplanner.team/stops/Lcheg--2", "https://tec.openplanner.team/stops/Lvichpl2"], ["https://tec.openplanner.team/stops/LLrdigu1", "https://tec.openplanner.team/stops/LLrscie1"], ["https://tec.openplanner.team/stops/LDmdegi1", "https://tec.openplanner.team/stops/LJedonc1"], ["https://tec.openplanner.team/stops/H1ch142a", "https://tec.openplanner.team/stops/H1nm141a"], ["https://tec.openplanner.team/stops/X897aba", "https://tec.openplanner.team/stops/X897aob"], ["https://tec.openplanner.team/stops/LLxcrem1", "https://tec.openplanner.team/stops/LVItcm-1"], ["https://tec.openplanner.team/stops/X342ada", "https://tec.openplanner.team/stops/X342afb"], ["https://tec.openplanner.team/stops/H1fv101a", "https://tec.openplanner.team/stops/H1fv101b"], ["https://tec.openplanner.team/stops/Bitrbvo2", "https://tec.openplanner.team/stops/Bitrsar1"], ["https://tec.openplanner.team/stops/H1gr116a", "https://tec.openplanner.team/stops/H1hr126a"], ["https://tec.openplanner.team/stops/X670ala", "https://tec.openplanner.team/stops/X670ama"], ["https://tec.openplanner.team/stops/Clvchar2", "https://tec.openplanner.team/stops/Clvmesa1"], ["https://tec.openplanner.team/stops/LwAkape2", "https://tec.openplanner.team/stops/LwAlont3"], ["https://tec.openplanner.team/stops/H1mb125a", "https://tec.openplanner.team/stops/H1mb125b"], ["https://tec.openplanner.team/stops/H2ll258a", "https://tec.openplanner.team/stops/H2ll258b"], ["https://tec.openplanner.team/stops/X718akb", "https://tec.openplanner.team/stops/X719ada"], ["https://tec.openplanner.team/stops/Lvchaus1", "https://tec.openplanner.team/stops/Lvcreve1"], ["https://tec.openplanner.team/stops/LEN42--1", "https://tec.openplanner.team/stops/LENindu1"], ["https://tec.openplanner.team/stops/Lvccime1", "https://tec.openplanner.team/stops/Lvcvesd*"], ["https://tec.openplanner.team/stops/Bgdhbvu2", "https://tec.openplanner.team/stops/Bgdhdet2"], ["https://tec.openplanner.team/stops/Llgjoie3", "https://tec.openplanner.team/stops/Llgrosa1"], ["https://tec.openplanner.team/stops/Bdvmc032", "https://tec.openplanner.team/stops/Bdvmc432"], ["https://tec.openplanner.team/stops/Ljeheur1", "https://tec.openplanner.team/stops/Ljerouy1"], ["https://tec.openplanner.team/stops/X813aba", "https://tec.openplanner.team/stops/X813ada"], ["https://tec.openplanner.team/stops/NB33aka", "https://tec.openplanner.team/stops/NB33ala"], ["https://tec.openplanner.team/stops/X640aoa", "https://tec.openplanner.team/stops/X640aob"], ["https://tec.openplanner.team/stops/H2ch110b", "https://tec.openplanner.team/stops/H2ch123b"], ["https://tec.openplanner.team/stops/LbOlier1", "https://tec.openplanner.team/stops/LbOvith1"], ["https://tec.openplanner.team/stops/LaAgold1", "https://tec.openplanner.team/stops/LaAronh1"], ["https://tec.openplanner.team/stops/LCxcour2", "https://tec.openplanner.team/stops/LCxross2"], ["https://tec.openplanner.team/stops/H4co108b", "https://tec.openplanner.team/stops/H4co144b"], ["https://tec.openplanner.team/stops/H4co107a", "https://tec.openplanner.team/stops/H4co107b"], ["https://tec.openplanner.team/stops/H4ta122a", "https://tec.openplanner.team/stops/H4ta122b"], ["https://tec.openplanner.team/stops/N515aea", "https://tec.openplanner.team/stops/N515afb"], ["https://tec.openplanner.team/stops/LlgLAMB3", "https://tec.openplanner.team/stops/LlgR-Fr3"], ["https://tec.openplanner.team/stops/X640ama", "https://tec.openplanner.team/stops/X640amb"], ["https://tec.openplanner.team/stops/N118baa", "https://tec.openplanner.team/stops/N118bab"], ["https://tec.openplanner.team/stops/CMmorg1", "https://tec.openplanner.team/stops/CMmorg2"], ["https://tec.openplanner.team/stops/Llgdart2", "https://tec.openplanner.team/stops/Llgdart5"], ["https://tec.openplanner.team/stops/LFChuis2", "https://tec.openplanner.team/stops/LWRgare2"], ["https://tec.openplanner.team/stops/Cchba1", "https://tec.openplanner.team/stops/CMba2"], ["https://tec.openplanner.team/stops/X822aha", "https://tec.openplanner.team/stops/X822aib"], ["https://tec.openplanner.team/stops/LHTmala4", "https://tec.openplanner.team/stops/LVIvert2"], ["https://tec.openplanner.team/stops/LJueg--1", "https://tec.openplanner.team/stops/LJueg--2"], ["https://tec.openplanner.team/stops/H1fr130b", "https://tec.openplanner.team/stops/H1sb144b"], ["https://tec.openplanner.team/stops/LbTcarm1", "https://tec.openplanner.team/stops/LbTschw2"], ["https://tec.openplanner.team/stops/X641aua", "https://tec.openplanner.team/stops/X641ava"], ["https://tec.openplanner.team/stops/Bptemch1", "https://tec.openplanner.team/stops/H1mk123a"], ["https://tec.openplanner.team/stops/X760afb", "https://tec.openplanner.team/stops/X788aga"], ["https://tec.openplanner.team/stops/X802acb", "https://tec.openplanner.team/stops/X882ahb"], ["https://tec.openplanner.team/stops/N110aha", "https://tec.openplanner.team/stops/N111aea"], ["https://tec.openplanner.team/stops/H1fr125b", "https://tec.openplanner.team/stops/H1lb138b"], ["https://tec.openplanner.team/stops/N145aha", "https://tec.openplanner.team/stops/N145ahb"], ["https://tec.openplanner.team/stops/X869aca", "https://tec.openplanner.team/stops/X869acb"], ["https://tec.openplanner.team/stops/Cmomoul3", "https://tec.openplanner.team/stops/Cmopn6"], ["https://tec.openplanner.team/stops/X948amc", "https://tec.openplanner.team/stops/X949akb"], ["https://tec.openplanner.team/stops/N150aca", "https://tec.openplanner.team/stops/N150acb"], ["https://tec.openplanner.team/stops/H1ro130a", "https://tec.openplanner.team/stops/H1ro138b"], ["https://tec.openplanner.team/stops/H4lh161a", "https://tec.openplanner.team/stops/H4oe150a"], ["https://tec.openplanner.team/stops/Cfocant1", "https://tec.openplanner.team/stops/Clrrhau2"], ["https://tec.openplanner.team/stops/Bnivfle1", "https://tec.openplanner.team/stops/Bnivfle2"], ["https://tec.openplanner.team/stops/N562agb", "https://tec.openplanner.team/stops/N562bkb"], ["https://tec.openplanner.team/stops/N147aca", "https://tec.openplanner.team/stops/N147aea"], ["https://tec.openplanner.team/stops/X638alb", "https://tec.openplanner.team/stops/X644ada"], ["https://tec.openplanner.team/stops/H2fy121b", "https://tec.openplanner.team/stops/H2fy123a"], ["https://tec.openplanner.team/stops/X907ajb", "https://tec.openplanner.team/stops/X908asa"], ["https://tec.openplanner.team/stops/N117aya", "https://tec.openplanner.team/stops/N117baa"], ["https://tec.openplanner.team/stops/LVSslin4", "https://tec.openplanner.team/stops/LVStige2"], ["https://tec.openplanner.team/stops/Louroos1", "https://tec.openplanner.team/stops/Louroos2"], ["https://tec.openplanner.team/stops/LOUpres2", "https://tec.openplanner.team/stops/LOUvign2"], ["https://tec.openplanner.team/stops/H1ht133b", "https://tec.openplanner.team/stops/H1te180a"], ["https://tec.openplanner.team/stops/Lghmavi2", "https://tec.openplanner.team/stops/Lghremy2"], ["https://tec.openplanner.team/stops/X949aja", "https://tec.openplanner.team/stops/X949ajb"], ["https://tec.openplanner.team/stops/LBspiet1", "https://tec.openplanner.team/stops/LWNcham2"], ["https://tec.openplanner.team/stops/Lflmaxi2", "https://tec.openplanner.team/stops/Lflmaxi3"], ["https://tec.openplanner.team/stops/Bgntffo2", "https://tec.openplanner.team/stops/Bmelmqu2"], ["https://tec.openplanner.team/stops/LFrcent2", "https://tec.openplanner.team/stops/LHvvill*"], ["https://tec.openplanner.team/stops/LGecite1", "https://tec.openplanner.team/stops/LGesent1"], ["https://tec.openplanner.team/stops/LAmeg--1", "https://tec.openplanner.team/stops/LNHbarr1"], ["https://tec.openplanner.team/stops/Bgemman1", "https://tec.openplanner.team/stops/Bgemman2"], ["https://tec.openplanner.team/stops/Lccawir3", "https://tec.openplanner.team/stops/Lccawir4"], ["https://tec.openplanner.team/stops/X615aub", "https://tec.openplanner.team/stops/X681aca"], ["https://tec.openplanner.team/stops/H1he105a", "https://tec.openplanner.team/stops/H1mh113b"], ["https://tec.openplanner.team/stops/N509acb", "https://tec.openplanner.team/stops/N509ada"], ["https://tec.openplanner.team/stops/Cgofbru2", "https://tec.openplanner.team/stops/Cgopier3"], ["https://tec.openplanner.team/stops/X714aba", "https://tec.openplanner.team/stops/X714acb"], ["https://tec.openplanner.team/stops/N537agb", "https://tec.openplanner.team/stops/N537ahb"], ["https://tec.openplanner.team/stops/Llgauxc2", "https://tec.openplanner.team/stops/Llgborg1"], ["https://tec.openplanner.team/stops/Lgdmaye2", "https://tec.openplanner.team/stops/LSNgerm2"], ["https://tec.openplanner.team/stops/LMFmoul2", "https://tec.openplanner.team/stops/Lqbeg--2"], ["https://tec.openplanner.team/stops/Bvirpla1", "https://tec.openplanner.team/stops/Bvirrbo2"], ["https://tec.openplanner.team/stops/X911aua", "https://tec.openplanner.team/stops/X911aub"], ["https://tec.openplanner.team/stops/Ctuhouz1", "https://tec.openplanner.team/stops/Ctuhouz2"], ["https://tec.openplanner.team/stops/Csyjumo2", "https://tec.openplanner.team/stops/Csysans2"], ["https://tec.openplanner.team/stops/N123aaa", "https://tec.openplanner.team/stops/N123ada"], ["https://tec.openplanner.team/stops/X646aab", "https://tec.openplanner.team/stops/X646abb"], ["https://tec.openplanner.team/stops/LGAholl2", "https://tec.openplanner.team/stops/LHgpost1"], ["https://tec.openplanner.team/stops/LEShony2", "https://tec.openplanner.team/stops/LTIptme1"], ["https://tec.openplanner.team/stops/H4ty350a", "https://tec.openplanner.team/stops/H4ty350b"], ["https://tec.openplanner.team/stops/Bblapin2", "https://tec.openplanner.team/stops/Brsg7fo1"], ["https://tec.openplanner.team/stops/LrAberg1", "https://tec.openplanner.team/stops/LrAmuhl1"], ["https://tec.openplanner.team/stops/H1cv100b", "https://tec.openplanner.team/stops/H1ml110a"], ["https://tec.openplanner.team/stops/N331aha", "https://tec.openplanner.team/stops/N331aka"], ["https://tec.openplanner.team/stops/N501hlw", "https://tec.openplanner.team/stops/N501hlz"], ["https://tec.openplanner.team/stops/NL76adb", "https://tec.openplanner.team/stops/NL76aeb"], ["https://tec.openplanner.team/stops/Cgualno1", "https://tec.openplanner.team/stops/Cgualno2"], ["https://tec.openplanner.team/stops/H1ha182b", "https://tec.openplanner.team/stops/H1ha183a"], ["https://tec.openplanner.team/stops/N236alb", "https://tec.openplanner.team/stops/N236ana"], ["https://tec.openplanner.team/stops/N348ada", "https://tec.openplanner.team/stops/N348adb"], ["https://tec.openplanner.team/stops/H2mi123b", "https://tec.openplanner.team/stops/H2mi124a"], ["https://tec.openplanner.team/stops/H4bl106b", "https://tec.openplanner.team/stops/H4tg262a"], ["https://tec.openplanner.team/stops/Cbcegli3", "https://tec.openplanner.team/stops/Cbckios1"], ["https://tec.openplanner.team/stops/LHChaut5", "https://tec.openplanner.team/stops/LHChaut6"], ["https://tec.openplanner.team/stops/H1hg179a", "https://tec.openplanner.team/stops/H1hm175a"], ["https://tec.openplanner.team/stops/X740aba", "https://tec.openplanner.team/stops/X740afb"], ["https://tec.openplanner.team/stops/Bwagcus1", "https://tec.openplanner.team/stops/Csawagn1"], ["https://tec.openplanner.team/stops/LMOf35-1", "https://tec.openplanner.team/stops/LMOfleu1"], ["https://tec.openplanner.team/stops/Bmalsme2", "https://tec.openplanner.team/stops/Btlbgla1"], ["https://tec.openplanner.team/stops/Cjualtr1", "https://tec.openplanner.team/stops/Cjudevo2"], ["https://tec.openplanner.team/stops/LAxbott2", "https://tec.openplanner.team/stops/LFsec--1"], ["https://tec.openplanner.team/stops/LBsoha-1", "https://tec.openplanner.team/stops/NL73aeb"], ["https://tec.openplanner.team/stops/LHAbont1", "https://tec.openplanner.team/stops/LHAbont2"], ["https://tec.openplanner.team/stops/H1er111b", "https://tec.openplanner.team/stops/H1er113b"], ["https://tec.openplanner.team/stops/Blhugai1", "https://tec.openplanner.team/stops/Bwatpct2"], ["https://tec.openplanner.team/stops/N547aaa", "https://tec.openplanner.team/stops/N547alc"], ["https://tec.openplanner.team/stops/H1je211b", "https://tec.openplanner.team/stops/H1je220b"], ["https://tec.openplanner.team/stops/Bwatcom1", "https://tec.openplanner.team/stops/Bwatpai1"], ["https://tec.openplanner.team/stops/LXoharz3", "https://tec.openplanner.team/stops/LXoharz4"], ["https://tec.openplanner.team/stops/Cmmecol1", "https://tec.openplanner.team/stops/Cmmpast2"], ["https://tec.openplanner.team/stops/N232cea", "https://tec.openplanner.team/stops/N260ada"], ["https://tec.openplanner.team/stops/N232bda", "https://tec.openplanner.team/stops/N232bea"], ["https://tec.openplanner.team/stops/LBSchpl2", "https://tec.openplanner.team/stops/LRGchap2"], ["https://tec.openplanner.team/stops/N553aab", "https://tec.openplanner.team/stops/N553ajb"], ["https://tec.openplanner.team/stops/X663aeb", "https://tec.openplanner.team/stops/X663afa"], ["https://tec.openplanner.team/stops/LHSlava2", "https://tec.openplanner.team/stops/LRGderr1"], ["https://tec.openplanner.team/stops/H4or115a", "https://tec.openplanner.team/stops/H4or115b"], ["https://tec.openplanner.team/stops/X627abb", "https://tec.openplanner.team/stops/X627aca"], ["https://tec.openplanner.team/stops/Cgdfoca1", "https://tec.openplanner.team/stops/Csycant2"], ["https://tec.openplanner.team/stops/X754ahb", "https://tec.openplanner.team/stops/X754ajb"], ["https://tec.openplanner.team/stops/N211aya", "https://tec.openplanner.team/stops/N212agc"], ["https://tec.openplanner.team/stops/LHUbatt1", "https://tec.openplanner.team/stops/LHUfoss*"], ["https://tec.openplanner.team/stops/Bbsigaz1", "https://tec.openplanner.team/stops/Bbsihau1"], ["https://tec.openplanner.team/stops/LAyabri1", "https://tec.openplanner.team/stops/LAyegli1"], ["https://tec.openplanner.team/stops/N573adb", "https://tec.openplanner.team/stops/NC14ada"], ["https://tec.openplanner.team/stops/Bnivbos2", "https://tec.openplanner.team/stops/Bnivsci2"], ["https://tec.openplanner.team/stops/H4fo117b", "https://tec.openplanner.team/stops/H4fo117d"], ["https://tec.openplanner.team/stops/Ccheden1", "https://tec.openplanner.team/stops/Cchoues4"], ["https://tec.openplanner.team/stops/H3br122b", "https://tec.openplanner.team/stops/H3so187b"], ["https://tec.openplanner.team/stops/N540abb", "https://tec.openplanner.team/stops/N549aba"], ["https://tec.openplanner.team/stops/LESoneu3", "https://tec.openplanner.team/stops/LPLhout1"], ["https://tec.openplanner.team/stops/Lvitour1", "https://tec.openplanner.team/stops/Lvitour2"], ["https://tec.openplanner.team/stops/X802aia", "https://tec.openplanner.team/stops/X802ajb"], ["https://tec.openplanner.team/stops/H1ms266b", "https://tec.openplanner.team/stops/H1ms271b"], ["https://tec.openplanner.team/stops/X609akb", "https://tec.openplanner.team/stops/X610aia"], ["https://tec.openplanner.team/stops/X879aja", "https://tec.openplanner.team/stops/X882aaa"], ["https://tec.openplanner.team/stops/LLApavi2", "https://tec.openplanner.team/stops/LLxcite1"], ["https://tec.openplanner.team/stops/LFHsucr2", "https://tec.openplanner.team/stops/LNveg--1"], ["https://tec.openplanner.team/stops/LAUbour2", "https://tec.openplanner.team/stops/LAUvict3"], ["https://tec.openplanner.team/stops/LMttrou2", "https://tec.openplanner.team/stops/LSdsar52"], ["https://tec.openplanner.team/stops/N539aba", "https://tec.openplanner.team/stops/N539agb"], ["https://tec.openplanner.team/stops/H1gh145d", "https://tec.openplanner.team/stops/H1gh158b"], ["https://tec.openplanner.team/stops/Bsteegl1", "https://tec.openplanner.team/stops/Bstesar2"], ["https://tec.openplanner.team/stops/Bvirmav1", "https://tec.openplanner.team/stops/Bvirpos2"], ["https://tec.openplanner.team/stops/X619aaa", "https://tec.openplanner.team/stops/X620afb"], ["https://tec.openplanner.team/stops/N539aub", "https://tec.openplanner.team/stops/N540aga"], ["https://tec.openplanner.team/stops/X775aca", "https://tec.openplanner.team/stops/X775aeb"], ["https://tec.openplanner.team/stops/N507ald", "https://tec.openplanner.team/stops/N507ama"], ["https://tec.openplanner.team/stops/H4mo179a", "https://tec.openplanner.team/stops/H4mo185a"], ["https://tec.openplanner.team/stops/H1em105a", "https://tec.openplanner.team/stops/H1em105b"], ["https://tec.openplanner.team/stops/LJAcent1", "https://tec.openplanner.team/stops/LJAcent2"], ["https://tec.openplanner.team/stops/Lhrsimo2", "https://tec.openplanner.team/stops/Lhrtunn2"], ["https://tec.openplanner.team/stops/Bhenard1", "https://tec.openplanner.team/stops/Bhenard2"], ["https://tec.openplanner.team/stops/H1ni320b", "https://tec.openplanner.team/stops/H1ni323b"], ["https://tec.openplanner.team/stops/Bglache1", "https://tec.openplanner.team/stops/Bgnppra1"], ["https://tec.openplanner.team/stops/X725ara", "https://tec.openplanner.team/stops/X725bia"], ["https://tec.openplanner.team/stops/X721afb", "https://tec.openplanner.team/stops/X721aib"], ["https://tec.openplanner.team/stops/H1wa157b", "https://tec.openplanner.team/stops/H1wg126a"], ["https://tec.openplanner.team/stops/LrcarsT2", "https://tec.openplanner.team/stops/Lrchero2"], ["https://tec.openplanner.team/stops/Cfopetr1", "https://tec.openplanner.team/stops/CMpetr2"], ["https://tec.openplanner.team/stops/Llgcham4", "https://tec.openplanner.team/stops/Llgrema2"], ["https://tec.openplanner.team/stops/LkEgds-1", "https://tec.openplanner.team/stops/LkEgend2"], ["https://tec.openplanner.team/stops/LRE154-1", "https://tec.openplanner.team/stops/LREchif2"], ["https://tec.openplanner.team/stops/LNCchau1", "https://tec.openplanner.team/stops/LNCchau3"], ["https://tec.openplanner.team/stops/LFR201-1", "https://tec.openplanner.team/stops/LFRbaro1"], ["https://tec.openplanner.team/stops/Blilwit1", "https://tec.openplanner.team/stops/Bnivfdu1"], ["https://tec.openplanner.team/stops/Lstamph2", "https://tec.openplanner.team/stops/Lstchim1"], ["https://tec.openplanner.team/stops/LBPeg--2", "https://tec.openplanner.team/stops/LRGile-1"], ["https://tec.openplanner.team/stops/Llaeg--1", "https://tec.openplanner.team/stops/Llaflot1"], ["https://tec.openplanner.team/stops/N988aca", "https://tec.openplanner.team/stops/X874apb"], ["https://tec.openplanner.team/stops/Bthscbl2", "https://tec.openplanner.team/stops/NL37akb"], ["https://tec.openplanner.team/stops/X773abb", "https://tec.openplanner.team/stops/X773aca"], ["https://tec.openplanner.team/stops/N501jdb", "https://tec.openplanner.team/stops/N501jib"], ["https://tec.openplanner.team/stops/Lenabat1", "https://tec.openplanner.team/stops/Lengran2"], ["https://tec.openplanner.team/stops/Bzluqga1", "https://tec.openplanner.team/stops/Bzluvil1"], ["https://tec.openplanner.team/stops/LSReg--2", "https://tec.openplanner.team/stops/LTrgibe2"], ["https://tec.openplanner.team/stops/Cflmarq2", "https://tec.openplanner.team/stops/Cflspir1"], ["https://tec.openplanner.team/stops/N135bba", "https://tec.openplanner.team/stops/N135beb"], ["https://tec.openplanner.team/stops/N543bfb", "https://tec.openplanner.team/stops/N543bgd"], ["https://tec.openplanner.team/stops/X727aea", "https://tec.openplanner.team/stops/X727aha"], ["https://tec.openplanner.team/stops/X601afb", "https://tec.openplanner.team/stops/X662aqb"], ["https://tec.openplanner.team/stops/H4lz128a", "https://tec.openplanner.team/stops/H4lz128b"], ["https://tec.openplanner.team/stops/Lsmdams2", "https://tec.openplanner.team/stops/Lsmstad2"], ["https://tec.openplanner.team/stops/Llglamb1", "https://tec.openplanner.team/stops/Llgschm2"], ["https://tec.openplanner.team/stops/Bnivh%C3%B4p2", "https://tec.openplanner.team/stops/Bnivrsa2"], ["https://tec.openplanner.team/stops/LMfbuck2", "https://tec.openplanner.team/stops/LMfeg--1"], ["https://tec.openplanner.team/stops/N513aub", "https://tec.openplanner.team/stops/N520ahb"], ["https://tec.openplanner.team/stops/LDLboul1", "https://tec.openplanner.team/stops/LLNogne1"], ["https://tec.openplanner.team/stops/LHCprog1", "https://tec.openplanner.team/stops/LHCprog2"], ["https://tec.openplanner.team/stops/LkTdorf2", "https://tec.openplanner.team/stops/LkTkabi2"], ["https://tec.openplanner.team/stops/Bspkker1", "https://tec.openplanner.team/stops/H1mk111b"], ["https://tec.openplanner.team/stops/H4ce106a", "https://tec.openplanner.team/stops/H4ce106b"], ["https://tec.openplanner.team/stops/N230aga", "https://tec.openplanner.team/stops/N540aab"], ["https://tec.openplanner.team/stops/Lcegeor2", "https://tec.openplanner.team/stops/Lvcbalt2"], ["https://tec.openplanner.team/stops/X665aba", "https://tec.openplanner.team/stops/X666agb"], ["https://tec.openplanner.team/stops/X898agb", "https://tec.openplanner.team/stops/X898aia"], ["https://tec.openplanner.team/stops/Lqbchat2", "https://tec.openplanner.team/stops/Lqbeg--1"], ["https://tec.openplanner.team/stops/H4gr108b", "https://tec.openplanner.team/stops/H4gr111a"], ["https://tec.openplanner.team/stops/LbOvith1", "https://tec.openplanner.team/stops/LnEleje1"], ["https://tec.openplanner.team/stops/H1hw120a", "https://tec.openplanner.team/stops/H1hw120b"], ["https://tec.openplanner.team/stops/Cfrchro2", "https://tec.openplanner.team/stops/Cfrgare4"], ["https://tec.openplanner.team/stops/N533ald", "https://tec.openplanner.team/stops/N533anb"], ["https://tec.openplanner.team/stops/LJAhanq2", "https://tec.openplanner.team/stops/LJAhanq3"], ["https://tec.openplanner.team/stops/Bnivall1", "https://tec.openplanner.team/stops/Bnivspi2"], ["https://tec.openplanner.team/stops/X873aaa", "https://tec.openplanner.team/stops/X873abb"], ["https://tec.openplanner.team/stops/X802aja", "https://tec.openplanner.team/stops/X802azb"], ["https://tec.openplanner.team/stops/Baegpon2", "https://tec.openplanner.team/stops/NR38aeb"], ["https://tec.openplanner.team/stops/X804boa", "https://tec.openplanner.team/stops/X804bpa"], ["https://tec.openplanner.team/stops/Bhmmbog1", "https://tec.openplanner.team/stops/Btlgfto2"], ["https://tec.openplanner.team/stops/Llgdoth2", "https://tec.openplanner.team/stops/Llgm%C3%A9di1"], ["https://tec.openplanner.team/stops/LAMdelh2", "https://tec.openplanner.team/stops/LAMusin1"], ["https://tec.openplanner.team/stops/H3so157a", "https://tec.openplanner.team/stops/H3so172b"], ["https://tec.openplanner.team/stops/X804bka", "https://tec.openplanner.team/stops/X804cbb"], ["https://tec.openplanner.team/stops/H1me112b", "https://tec.openplanner.team/stops/H1me118b"], ["https://tec.openplanner.team/stops/Cmechnd2", "https://tec.openplanner.team/stops/Cmesafi1"], ["https://tec.openplanner.team/stops/N543aga", "https://tec.openplanner.team/stops/N543ckb"], ["https://tec.openplanner.team/stops/N211adb", "https://tec.openplanner.team/stops/N211awa"], ["https://tec.openplanner.team/stops/X925aia", "https://tec.openplanner.team/stops/X996aba"], ["https://tec.openplanner.team/stops/Bsmgbsa1", "https://tec.openplanner.team/stops/Bsmgmas2"], ["https://tec.openplanner.team/stops/LSeaque4", "https://tec.openplanner.team/stops/LVbeg--1"], ["https://tec.openplanner.team/stops/Bbiehev1", "https://tec.openplanner.team/stops/Bbiepre1"], ["https://tec.openplanner.team/stops/LLmcarr2", "https://tec.openplanner.team/stops/LLmwaut2"], ["https://tec.openplanner.team/stops/X609agb", "https://tec.openplanner.team/stops/X609ara"], ["https://tec.openplanner.team/stops/Lougros2", "https://tec.openplanner.team/stops/Lstbarb6"], ["https://tec.openplanner.team/stops/LBPmili2", "https://tec.openplanner.team/stops/LGLbrus1"], ["https://tec.openplanner.team/stops/Clfbarr1", "https://tec.openplanner.team/stops/Clfpomm2"], ["https://tec.openplanner.team/stops/LBhschu1", "https://tec.openplanner.team/stops/X793akb"], ["https://tec.openplanner.team/stops/H1mj127b", "https://tec.openplanner.team/stops/H1ml110b"], ["https://tec.openplanner.team/stops/Cmamons1", "https://tec.openplanner.team/stops/Cmaprov2"], ["https://tec.openplanner.team/stops/LJAcham1", "https://tec.openplanner.team/stops/LSUhage2"], ["https://tec.openplanner.team/stops/X923ana", "https://tec.openplanner.team/stops/X923aoa"], ["https://tec.openplanner.team/stops/Lrosoxh2", "https://tec.openplanner.team/stops/Lrovand2"], ["https://tec.openplanner.team/stops/H4my120a", "https://tec.openplanner.team/stops/H4vz368a"], ["https://tec.openplanner.team/stops/LSzcoop2", "https://tec.openplanner.team/stops/N506btb"], ["https://tec.openplanner.team/stops/Bneecha2", "https://tec.openplanner.team/stops/Boplcar1"], ["https://tec.openplanner.team/stops/N516aja", "https://tec.openplanner.team/stops/N516ana"], ["https://tec.openplanner.team/stops/LTPec--2", "https://tec.openplanner.team/stops/LTPgare*"], ["https://tec.openplanner.team/stops/X747alb", "https://tec.openplanner.team/stops/X754aga"], ["https://tec.openplanner.team/stops/LgAnr491", "https://tec.openplanner.team/stops/LsVlust1"], ["https://tec.openplanner.team/stops/Bclgbvi2", "https://tec.openplanner.team/stops/Bclgpla2"], ["https://tec.openplanner.team/stops/Lpevove1", "https://tec.openplanner.team/stops/LWevand2"], ["https://tec.openplanner.team/stops/Bbounci2", "https://tec.openplanner.team/stops/Bboupde1"], ["https://tec.openplanner.team/stops/N548aaa", "https://tec.openplanner.team/stops/N548aab"], ["https://tec.openplanner.team/stops/Bgntcbo1", "https://tec.openplanner.team/stops/Bmarcat1"], ["https://tec.openplanner.team/stops/H1ho131a", "https://tec.openplanner.team/stops/H1sg145b"], ["https://tec.openplanner.team/stops/X758ahb", "https://tec.openplanner.team/stops/X840abb"], ["https://tec.openplanner.team/stops/X796abb", "https://tec.openplanner.team/stops/X986agb"], ["https://tec.openplanner.team/stops/Llgbatt2", "https://tec.openplanner.team/stops/Llgcamp1"], ["https://tec.openplanner.team/stops/Lagkink2", "https://tec.openplanner.team/stops/Llgpari1"], ["https://tec.openplanner.team/stops/LSPmari1", "https://tec.openplanner.team/stops/LSPtonn1"], ["https://tec.openplanner.team/stops/LBgcroi2", "https://tec.openplanner.team/stops/LBgnach2"], ["https://tec.openplanner.team/stops/Bmrqgar2", "https://tec.openplanner.team/stops/H1mk117b"], ["https://tec.openplanner.team/stops/X623ajb", "https://tec.openplanner.team/stops/X624amb"], ["https://tec.openplanner.team/stops/H5el100a", "https://tec.openplanner.team/stops/H5rx136a"], ["https://tec.openplanner.team/stops/Bnivlde1", "https://tec.openplanner.team/stops/Bnivpla2"], ["https://tec.openplanner.team/stops/Cmbborn1", "https://tec.openplanner.team/stops/Cmbcime4"], ["https://tec.openplanner.team/stops/LHanest2", "https://tec.openplanner.team/stops/LHarenn2"], ["https://tec.openplanner.team/stops/X760aba", "https://tec.openplanner.team/stops/X760aea"], ["https://tec.openplanner.team/stops/H4lh118a", "https://tec.openplanner.team/stops/H4lh118b"], ["https://tec.openplanner.team/stops/N501jua", "https://tec.openplanner.team/stops/N501jub"], ["https://tec.openplanner.team/stops/X716afb", "https://tec.openplanner.team/stops/X731aib"], ["https://tec.openplanner.team/stops/N534aeb", "https://tec.openplanner.team/stops/N534bnh"], ["https://tec.openplanner.team/stops/LTRoasi1", "https://tec.openplanner.team/stops/LTRsain3"], ["https://tec.openplanner.team/stops/H4rm108b", "https://tec.openplanner.team/stops/H4ta120a"], ["https://tec.openplanner.team/stops/Bchgbar1", "https://tec.openplanner.team/stops/Bchgbru2"], ["https://tec.openplanner.team/stops/Bbonegl1", "https://tec.openplanner.team/stops/Bdvminc1"], ["https://tec.openplanner.team/stops/H1bb116c", "https://tec.openplanner.team/stops/H1bo104a"], ["https://tec.openplanner.team/stops/Lccaigr2", "https://tec.openplanner.team/stops/Lcceclu2"], ["https://tec.openplanner.team/stops/Cwfcast1", "https://tec.openplanner.team/stops/NC23aeb"], ["https://tec.openplanner.team/stops/Cci22ao1", "https://tec.openplanner.team/stops/Ccifies1"], ["https://tec.openplanner.team/stops/NC44aea", "https://tec.openplanner.team/stops/NC44agb"], ["https://tec.openplanner.team/stops/H1ry135b", "https://tec.openplanner.team/stops/H1ry137b"], ["https://tec.openplanner.team/stops/X741aba", "https://tec.openplanner.team/stops/X752aaa"], ["https://tec.openplanner.team/stops/LTPabat1", "https://tec.openplanner.team/stops/LTPbode1"], ["https://tec.openplanner.team/stops/Llgcmes1", "https://tec.openplanner.team/stops/Llgcmes4"], ["https://tec.openplanner.team/stops/LMtcent1", "https://tec.openplanner.team/stops/LMtegli2"], ["https://tec.openplanner.team/stops/Bitrh%C3%BBl2", "https://tec.openplanner.team/stops/Bitrpar2"], ["https://tec.openplanner.team/stops/LHAarge2", "https://tec.openplanner.team/stops/LHAbont2"], ["https://tec.openplanner.team/stops/N501kjb", "https://tec.openplanner.team/stops/N538ara"], ["https://tec.openplanner.team/stops/X662acb", "https://tec.openplanner.team/stops/X663afb"], ["https://tec.openplanner.team/stops/LSOathe1", "https://tec.openplanner.team/stops/LSOathe2"], ["https://tec.openplanner.team/stops/LTPbeau1", "https://tec.openplanner.team/stops/X548aab"], ["https://tec.openplanner.team/stops/H4ty265a", "https://tec.openplanner.team/stops/H4ty276b"], ["https://tec.openplanner.team/stops/LVMchpl1", "https://tec.openplanner.team/stops/LVMrout1"], ["https://tec.openplanner.team/stops/X738aba", "https://tec.openplanner.team/stops/X739alb"], ["https://tec.openplanner.team/stops/N365aaa", "https://tec.openplanner.team/stops/X344ada"], ["https://tec.openplanner.team/stops/LBpvue-2", "https://tec.openplanner.team/stops/LHgroso2"], ["https://tec.openplanner.team/stops/Bnstlna2", "https://tec.openplanner.team/stops/Bnstver2"], ["https://tec.openplanner.team/stops/LOrpont1", "https://tec.openplanner.team/stops/LTyhall1"], ["https://tec.openplanner.team/stops/Bwatabs2", "https://tec.openplanner.team/stops/Bwatcro1"], ["https://tec.openplanner.team/stops/LLmetat1", "https://tec.openplanner.team/stops/LLmetat2"], ["https://tec.openplanner.team/stops/H4fr143a", "https://tec.openplanner.team/stops/H4fr143b"], ["https://tec.openplanner.team/stops/Cthalli3", "https://tec.openplanner.team/stops/Cthhttr3"], ["https://tec.openplanner.team/stops/Cbmplac1", "https://tec.openplanner.team/stops/Cbmzoni2"], ["https://tec.openplanner.team/stops/X371ada", "https://tec.openplanner.team/stops/X371agb"], ["https://tec.openplanner.team/stops/X888abb", "https://tec.openplanner.team/stops/X897aaa"], ["https://tec.openplanner.team/stops/LTPcamp2", "https://tec.openplanner.team/stops/LTPhenr2"], ["https://tec.openplanner.team/stops/Lghpara2", "https://tec.openplanner.team/stops/Lghraul1"], ["https://tec.openplanner.team/stops/Cdogrro2", "https://tec.openplanner.team/stops/Crgmgri2"], ["https://tec.openplanner.team/stops/Baudhde2", "https://tec.openplanner.team/stops/Baudsta2"], ["https://tec.openplanner.team/stops/H4mt216a", "https://tec.openplanner.team/stops/H4mt222b"], ["https://tec.openplanner.team/stops/X757aga", "https://tec.openplanner.team/stops/X757aka"], ["https://tec.openplanner.team/stops/Cwfcast2", "https://tec.openplanner.team/stops/Cwfnamu1"], ["https://tec.openplanner.team/stops/LSBsere1", "https://tec.openplanner.team/stops/LSBsere4"], ["https://tec.openplanner.team/stops/Cgualno2", "https://tec.openplanner.team/stops/Cnapair1"], ["https://tec.openplanner.team/stops/H4ev118b", "https://tec.openplanner.team/stops/H4hx116b"], ["https://tec.openplanner.team/stops/Cflmarc2", "https://tec.openplanner.team/stops/Cflmart1"], ["https://tec.openplanner.team/stops/X307ada", "https://tec.openplanner.team/stops/X316acb"], ["https://tec.openplanner.team/stops/H2pe160b", "https://tec.openplanner.team/stops/H2pe162b"], ["https://tec.openplanner.team/stops/LVAakke2", "https://tec.openplanner.team/stops/LVAflat2"], ["https://tec.openplanner.team/stops/LSPbass1", "https://tec.openplanner.team/stops/LSPfrai1"], ["https://tec.openplanner.team/stops/Cmbcime3", "https://tec.openplanner.team/stops/Csuptou2"], ["https://tec.openplanner.team/stops/Llianix1", "https://tec.openplanner.team/stops/Llianix2"], ["https://tec.openplanner.team/stops/N508ajb", "https://tec.openplanner.team/stops/N508ala"], ["https://tec.openplanner.team/stops/N109aab", "https://tec.openplanner.team/stops/N109aia"], ["https://tec.openplanner.team/stops/X601dia", "https://tec.openplanner.team/stops/X601dib"], ["https://tec.openplanner.team/stops/N124aaa", "https://tec.openplanner.team/stops/N125aab"], ["https://tec.openplanner.team/stops/LSLhall*", "https://tec.openplanner.team/stops/LSLprov2"], ["https://tec.openplanner.team/stops/X750aoa", "https://tec.openplanner.team/stops/X750apa"], ["https://tec.openplanner.team/stops/Cgregli1", "https://tec.openplanner.team/stops/Cgrsaul2"], ["https://tec.openplanner.team/stops/Ljucomb1", "https://tec.openplanner.team/stops/Ljuinte2"], ["https://tec.openplanner.team/stops/H1gr111b", "https://tec.openplanner.team/stops/H1hr117a"], ["https://tec.openplanner.team/stops/Cbcha651", "https://tec.openplanner.team/stops/Crglyre1"], ["https://tec.openplanner.team/stops/NL76ada", "https://tec.openplanner.team/stops/NL76ara"], ["https://tec.openplanner.team/stops/Cmadeli2", "https://tec.openplanner.team/stops/Cmamons2"], ["https://tec.openplanner.team/stops/N357aab", "https://tec.openplanner.team/stops/N357abb"], ["https://tec.openplanner.team/stops/Lseboia1", "https://tec.openplanner.team/stops/Lsedavy2"], ["https://tec.openplanner.team/stops/X371aca", "https://tec.openplanner.team/stops/X371ada"], ["https://tec.openplanner.team/stops/Bbgepau1", "https://tec.openplanner.team/stops/Bwavlep2"], ["https://tec.openplanner.team/stops/H1br130a", "https://tec.openplanner.team/stops/H1br134b"], ["https://tec.openplanner.team/stops/LTPgare*", "https://tec.openplanner.team/stops/LTPreco1"], ["https://tec.openplanner.team/stops/Lgreg--1", "https://tec.openplanner.team/stops/Lgrside2"], ["https://tec.openplanner.team/stops/Ljubrec1", "https://tec.openplanner.team/stops/Ljucano1"], ["https://tec.openplanner.team/stops/Bjaugar4", "https://tec.openplanner.team/stops/Bjaugar5"], ["https://tec.openplanner.team/stops/LaMpark1", "https://tec.openplanner.team/stops/LaMpost2"], ["https://tec.openplanner.team/stops/Lbeloui1", "https://tec.openplanner.team/stops/LSAjacq2"], ["https://tec.openplanner.team/stops/X359aac", "https://tec.openplanner.team/stops/X371adb"], ["https://tec.openplanner.team/stops/X879amb", "https://tec.openplanner.team/stops/X879aoa"], ["https://tec.openplanner.team/stops/Blhupqu1", "https://tec.openplanner.team/stops/Blhurcl1"], ["https://tec.openplanner.team/stops/H2sb236c", "https://tec.openplanner.team/stops/H2sb239d"], ["https://tec.openplanner.team/stops/LVIacac1", "https://tec.openplanner.team/stops/LVIjacq2"], ["https://tec.openplanner.team/stops/Llgarmu3", "https://tec.openplanner.team/stops/Llgatla2"], ["https://tec.openplanner.team/stops/LSParca1", "https://tec.openplanner.team/stops/LSPec--2"], ["https://tec.openplanner.team/stops/H1ge115a", "https://tec.openplanner.team/stops/H1ge116a"], ["https://tec.openplanner.team/stops/N501aha", "https://tec.openplanner.team/stops/N501mdb"], ["https://tec.openplanner.team/stops/Bnvmfba2", "https://tec.openplanner.team/stops/N515aqd"], ["https://tec.openplanner.team/stops/LORec--*", "https://tec.openplanner.team/stops/LORmont1"], ["https://tec.openplanner.team/stops/N501kzb", "https://tec.openplanner.team/stops/N501lib"], ["https://tec.openplanner.team/stops/Llgdony2", "https://tec.openplanner.team/stops/Llgpiet2"], ["https://tec.openplanner.team/stops/LPTgran1", "https://tec.openplanner.team/stops/X792aba"], ["https://tec.openplanner.team/stops/Lhubarl1", "https://tec.openplanner.team/stops/Lmnrame2"], ["https://tec.openplanner.team/stops/X801cga", "https://tec.openplanner.team/stops/X801cha"], ["https://tec.openplanner.team/stops/Bosqcim2", "https://tec.openplanner.team/stops/Btubpir1"], ["https://tec.openplanner.team/stops/H4wn128b", "https://tec.openplanner.team/stops/H4wn130a"], ["https://tec.openplanner.team/stops/H4ba101a", "https://tec.openplanner.team/stops/H4vz367a"], ["https://tec.openplanner.team/stops/N501bqa", "https://tec.openplanner.team/stops/N501bub"], ["https://tec.openplanner.team/stops/H4an106b", "https://tec.openplanner.team/stops/H4cr110a"], ["https://tec.openplanner.team/stops/LCxbeau1", "https://tec.openplanner.team/stops/LCxwarr2"], ["https://tec.openplanner.team/stops/LmNkirc1", "https://tec.openplanner.team/stops/LmNsv871"], ["https://tec.openplanner.team/stops/LBlhaut2", "https://tec.openplanner.team/stops/LGMstin1"], ["https://tec.openplanner.team/stops/H5wo129b", "https://tec.openplanner.team/stops/H5wo130b"], ["https://tec.openplanner.team/stops/Bhenasc1", "https://tec.openplanner.team/stops/Bhenasc2"], ["https://tec.openplanner.team/stops/H4fo116a", "https://tec.openplanner.team/stops/H4my123a"], ["https://tec.openplanner.team/stops/LHMpatl1", "https://tec.openplanner.team/stops/LHMpatl2"], ["https://tec.openplanner.team/stops/Bbaldot1", "https://tec.openplanner.team/stops/N584aea"], ["https://tec.openplanner.team/stops/N501kea", "https://tec.openplanner.team/stops/N501kha"], ["https://tec.openplanner.team/stops/LmAkirc1", "https://tec.openplanner.team/stops/LmAkirc2"], ["https://tec.openplanner.team/stops/Lvegc-1*", "https://tec.openplanner.team/stops/Lveyser2"], ["https://tec.openplanner.team/stops/X666aaa", "https://tec.openplanner.team/stops/X666aba"], ["https://tec.openplanner.team/stops/Clooues1", "https://tec.openplanner.team/stops/Clooues4"], ["https://tec.openplanner.team/stops/Lsedavy2", "https://tec.openplanner.team/stops/Lseivoz2"], ["https://tec.openplanner.team/stops/LBJplan1", "https://tec.openplanner.team/stops/LMAcime2"], ["https://tec.openplanner.team/stops/Lhragri2", "https://tec.openplanner.team/stops/Lhrsimo1"], ["https://tec.openplanner.team/stops/LTibarb2", "https://tec.openplanner.team/stops/LTipont2"], ["https://tec.openplanner.team/stops/H1el135a", "https://tec.openplanner.team/stops/H1el135b"], ["https://tec.openplanner.team/stops/H1br132a", "https://tec.openplanner.team/stops/H1ev113a"], ["https://tec.openplanner.team/stops/H4ag101a", "https://tec.openplanner.team/stops/H4ag104b"], ["https://tec.openplanner.team/stops/Bhmmcam1", "https://tec.openplanner.team/stops/Bndbpco2"], ["https://tec.openplanner.team/stops/Ldiinte1", "https://tec.openplanner.team/stops/Ldimeun2"], ["https://tec.openplanner.team/stops/Bbiemse1", "https://tec.openplanner.team/stops/Bgzdgli2"], ["https://tec.openplanner.team/stops/X661ada", "https://tec.openplanner.team/stops/X661aza"], ["https://tec.openplanner.team/stops/LFMvoge1", "https://tec.openplanner.team/stops/LFMvoge2"], ["https://tec.openplanner.team/stops/H1hl125b", "https://tec.openplanner.team/stops/H1hl127b"], ["https://tec.openplanner.team/stops/H4ty319a", "https://tec.openplanner.team/stops/H4ty345a"], ["https://tec.openplanner.team/stops/X398abb", "https://tec.openplanner.team/stops/X398agb"], ["https://tec.openplanner.team/stops/LSLhall*", "https://tec.openplanner.team/stops/LVSpota1"], ["https://tec.openplanner.team/stops/LeUgutl1", "https://tec.openplanner.team/stops/LeUindu2"], ["https://tec.openplanner.team/stops/X650akb", "https://tec.openplanner.team/stops/X650ana"], ["https://tec.openplanner.team/stops/LTgjalh1", "https://tec.openplanner.team/stops/LTgsous2"], ["https://tec.openplanner.team/stops/H1fr112b", "https://tec.openplanner.team/stops/H1ge115a"], ["https://tec.openplanner.team/stops/LATmals1", "https://tec.openplanner.team/stops/LATmonu1"], ["https://tec.openplanner.team/stops/H5bl115b", "https://tec.openplanner.team/stops/H5bl119d"], ["https://tec.openplanner.team/stops/LNAdemo1", "https://tec.openplanner.team/stops/LTNsarl1"], ["https://tec.openplanner.team/stops/LWOwa162", "https://tec.openplanner.team/stops/LWOwaer2"], ["https://tec.openplanner.team/stops/Lvearle4", "https://tec.openplanner.team/stops/Lvescie1"], ["https://tec.openplanner.team/stops/Bblagard", "https://tec.openplanner.team/stops/Bblapje2"], ["https://tec.openplanner.team/stops/Lmojans1", "https://tec.openplanner.team/stops/Lmopota1"], ["https://tec.openplanner.team/stops/Lbococh1", "https://tec.openplanner.team/stops/Lbopote2"], ["https://tec.openplanner.team/stops/N162aba", "https://tec.openplanner.team/stops/N162abb"], ["https://tec.openplanner.team/stops/LJUfort1", "https://tec.openplanner.team/stops/Llabriq1"], ["https://tec.openplanner.team/stops/X725aia", "https://tec.openplanner.team/stops/X767afa"], ["https://tec.openplanner.team/stops/Bmaregl2", "https://tec.openplanner.team/stops/Btilsnc2"], ["https://tec.openplanner.team/stops/Beclron1", "https://tec.openplanner.team/stops/H2ec102a"], ["https://tec.openplanner.team/stops/Lmofays2", "https://tec.openplanner.team/stops/Lmojoan2"], ["https://tec.openplanner.team/stops/X659arb", "https://tec.openplanner.team/stops/X659awb"], ["https://tec.openplanner.team/stops/Bgoesch3", "https://tec.openplanner.team/stops/Boplsma4"], ["https://tec.openplanner.team/stops/LLycent*", "https://tec.openplanner.team/stops/LXfcore1"], ["https://tec.openplanner.team/stops/X952abb", "https://tec.openplanner.team/stops/X952adb"], ["https://tec.openplanner.team/stops/H2sb227a", "https://tec.openplanner.team/stops/H2sb259a"], ["https://tec.openplanner.team/stops/H2mo125b", "https://tec.openplanner.team/stops/H2mo131b"], ["https://tec.openplanner.team/stops/N519aka", "https://tec.openplanner.team/stops/N519alb"], ["https://tec.openplanner.team/stops/N502aba", "https://tec.openplanner.team/stops/N509aja"], ["https://tec.openplanner.team/stops/Cfrmoul1", "https://tec.openplanner.team/stops/Cliburl2"], ["https://tec.openplanner.team/stops/N301aia", "https://tec.openplanner.team/stops/N301ajb"], ["https://tec.openplanner.team/stops/X782ala", "https://tec.openplanner.team/stops/X782ama"], ["https://tec.openplanner.team/stops/X657aea", "https://tec.openplanner.team/stops/X657aeb"], ["https://tec.openplanner.team/stops/H4ty305d", "https://tec.openplanner.team/stops/H4ty347a"], ["https://tec.openplanner.team/stops/X634afb", "https://tec.openplanner.team/stops/X654afb"], ["https://tec.openplanner.team/stops/H5wo127a", "https://tec.openplanner.team/stops/H5wo130b"], ["https://tec.openplanner.team/stops/X639aaa", "https://tec.openplanner.team/stops/X639abb"], ["https://tec.openplanner.team/stops/Bwspbos1", "https://tec.openplanner.team/stops/Bwspcar2"], ["https://tec.openplanner.team/stops/Cfccabi1", "https://tec.openplanner.team/stops/Cfcplac3"], ["https://tec.openplanner.team/stops/LOMbrou2", "https://tec.openplanner.team/stops/LOMdodi1"], ["https://tec.openplanner.team/stops/H1hn207a", "https://tec.openplanner.team/stops/H1hn207b"], ["https://tec.openplanner.team/stops/Lcacaps1", "https://tec.openplanner.team/stops/Lcacaps2"], ["https://tec.openplanner.team/stops/Ctisar1", "https://tec.openplanner.team/stops/H1tt107a"], ["https://tec.openplanner.team/stops/N162aaa", "https://tec.openplanner.team/stops/N162aba"], ["https://tec.openplanner.team/stops/X896agb", "https://tec.openplanner.team/stops/X896ahb"], ["https://tec.openplanner.team/stops/N501fjb", "https://tec.openplanner.team/stops/N501fjd"], ["https://tec.openplanner.team/stops/Llgbavi3", "https://tec.openplanner.team/stops/Llgongr2"], ["https://tec.openplanner.team/stops/Cmllait1", "https://tec.openplanner.team/stops/Cmlvesp2"], ["https://tec.openplanner.team/stops/Cgxchea2", "https://tec.openplanner.team/stops/Cgxvvel2"], ["https://tec.openplanner.team/stops/X661abb", "https://tec.openplanner.team/stops/X661alb"], ["https://tec.openplanner.team/stops/LTRlonh1", "https://tec.openplanner.team/stops/LTRlonh2"], ["https://tec.openplanner.team/stops/Cmychpl4", "https://tec.openplanner.team/stops/Cmycime2"], ["https://tec.openplanner.team/stops/Ccyfroi1", "https://tec.openplanner.team/stops/Ccyga7"], ["https://tec.openplanner.team/stops/N549ada", "https://tec.openplanner.team/stops/N549afb"], ["https://tec.openplanner.team/stops/LVSpota1", "https://tec.openplanner.team/stops/LVSslin4"], ["https://tec.openplanner.team/stops/LAmeclu2", "https://tec.openplanner.team/stops/LTiforg1"], ["https://tec.openplanner.team/stops/X878aab", "https://tec.openplanner.team/stops/X878adb"], ["https://tec.openplanner.team/stops/NH01aab", "https://tec.openplanner.team/stops/NH01abc"], ["https://tec.openplanner.team/stops/X750ada", "https://tec.openplanner.team/stops/X750bma"], ["https://tec.openplanner.team/stops/X641apc", "https://tec.openplanner.team/stops/X823agb"], ["https://tec.openplanner.team/stops/LAyfren2", "https://tec.openplanner.team/stops/Lflhott2"], ["https://tec.openplanner.team/stops/LAbchpl1", "https://tec.openplanner.team/stops/LAbchpl2"], ["https://tec.openplanner.team/stops/X659agb", "https://tec.openplanner.team/stops/X659aib"], ["https://tec.openplanner.team/stops/N134aca", "https://tec.openplanner.team/stops/N152abd"], ["https://tec.openplanner.team/stops/N236aea", "https://tec.openplanner.team/stops/N236aeb"], ["https://tec.openplanner.team/stops/X615aaa", "https://tec.openplanner.team/stops/X615aab"], ["https://tec.openplanner.team/stops/X741ana", "https://tec.openplanner.team/stops/X741anb"], ["https://tec.openplanner.team/stops/Cmlbuis3", "https://tec.openplanner.team/stops/Cmllecl4"], ["https://tec.openplanner.team/stops/N562aea", "https://tec.openplanner.team/stops/N562aza"], ["https://tec.openplanner.team/stops/Lghecol*", "https://tec.openplanner.team/stops/Lghomni1"], ["https://tec.openplanner.team/stops/LoDkoll1", "https://tec.openplanner.team/stops/LrUoudl2"], ["https://tec.openplanner.team/stops/LMipoti1", "https://tec.openplanner.team/stops/LMisour1"], ["https://tec.openplanner.team/stops/X601bpa", "https://tec.openplanner.team/stops/X601bzb"], ["https://tec.openplanner.team/stops/Cgomerm4", "https://tec.openplanner.team/stops/Cgotech1"], ["https://tec.openplanner.team/stops/X767aea", "https://tec.openplanner.team/stops/X767aja"], ["https://tec.openplanner.team/stops/N501gfa", "https://tec.openplanner.team/stops/N501iza"], ["https://tec.openplanner.team/stops/Cfvombo1", "https://tec.openplanner.team/stops/H1fv102b"], ["https://tec.openplanner.team/stops/Cchmont2", "https://tec.openplanner.team/stops/Cchriga2"], ["https://tec.openplanner.team/stops/Bglarha1", "https://tec.openplanner.team/stops/Bmrshan1"], ["https://tec.openplanner.team/stops/Bnivlde2", "https://tec.openplanner.team/stops/Bnivpla2"], ["https://tec.openplanner.team/stops/Cchdigu1", "https://tec.openplanner.team/stops/Cchoues1"], ["https://tec.openplanner.team/stops/N508ama", "https://tec.openplanner.team/stops/N509aob"], ["https://tec.openplanner.team/stops/Lmobols2", "https://tec.openplanner.team/stops/Lmobras2"], ["https://tec.openplanner.team/stops/N506bka", "https://tec.openplanner.team/stops/N506bnb"], ["https://tec.openplanner.team/stops/N218afa", "https://tec.openplanner.team/stops/N218afb"], ["https://tec.openplanner.team/stops/N508ada", "https://tec.openplanner.team/stops/N508adb"], ["https://tec.openplanner.team/stops/LGrchpl1", "https://tec.openplanner.team/stops/LGreg--1"], ["https://tec.openplanner.team/stops/X750aqa", "https://tec.openplanner.team/stops/X750beb"], ["https://tec.openplanner.team/stops/N511ara", "https://tec.openplanner.team/stops/N511ata"], ["https://tec.openplanner.team/stops/H2fa101a", "https://tec.openplanner.team/stops/H2mg135a"], ["https://tec.openplanner.team/stops/Crecouc2", "https://tec.openplanner.team/stops/Crefont1"], ["https://tec.openplanner.team/stops/Cgzclef1", "https://tec.openplanner.team/stops/Cgzplac1"], ["https://tec.openplanner.team/stops/X872afa", "https://tec.openplanner.team/stops/X872afb"], ["https://tec.openplanner.team/stops/Cpctrau1", "https://tec.openplanner.team/stops/Cpctrau2"], ["https://tec.openplanner.team/stops/N519abb", "https://tec.openplanner.team/stops/N519ada"], ["https://tec.openplanner.team/stops/NH03aea", "https://tec.openplanner.team/stops/NH03afa"], ["https://tec.openplanner.team/stops/Cmlecha1", "https://tec.openplanner.team/stops/CMtirou2"], ["https://tec.openplanner.team/stops/LENarde1", "https://tec.openplanner.team/stops/LENcroi1"], ["https://tec.openplanner.team/stops/X370aca", "https://tec.openplanner.team/stops/X872adb"], ["https://tec.openplanner.team/stops/LBvnico2", "https://tec.openplanner.team/stops/LVMchpl2"], ["https://tec.openplanner.team/stops/LiVdorf1", "https://tec.openplanner.team/stops/LmObahn*"], ["https://tec.openplanner.team/stops/Cthegli1", "https://tec.openplanner.team/stops/Cthpibl2"], ["https://tec.openplanner.team/stops/N513anb", "https://tec.openplanner.team/stops/N513aob"], ["https://tec.openplanner.team/stops/LSAhaye2", "https://tec.openplanner.team/stops/LSAtrih1"], ["https://tec.openplanner.team/stops/LCvneuv4", "https://tec.openplanner.team/stops/LWbregn2"], ["https://tec.openplanner.team/stops/N554aba", "https://tec.openplanner.team/stops/N554abb"], ["https://tec.openplanner.team/stops/H4gu112a", "https://tec.openplanner.team/stops/H4ta129b"], ["https://tec.openplanner.team/stops/LaAneul2", "https://tec.openplanner.team/stops/LaAzwei1"], ["https://tec.openplanner.team/stops/X877afa", "https://tec.openplanner.team/stops/X880aeb"], ["https://tec.openplanner.team/stops/X725aaa", "https://tec.openplanner.team/stops/X754axb"], ["https://tec.openplanner.team/stops/X879aib", "https://tec.openplanner.team/stops/X879aja"], ["https://tec.openplanner.team/stops/Lagpn6-1", "https://tec.openplanner.team/stops/Lagsauh1"], ["https://tec.openplanner.team/stops/X718afb", "https://tec.openplanner.team/stops/X718agb"], ["https://tec.openplanner.team/stops/LTEcamp1", "https://tec.openplanner.team/stops/LTEcamp2"], ["https://tec.openplanner.team/stops/X801cda", "https://tec.openplanner.team/stops/X801cea"], ["https://tec.openplanner.team/stops/X661aqa", "https://tec.openplanner.team/stops/X840aaa"], ["https://tec.openplanner.team/stops/H4bi156a", "https://tec.openplanner.team/stops/H4eg103a"], ["https://tec.openplanner.team/stops/LoUhein1", "https://tec.openplanner.team/stops/LoUober2"], ["https://tec.openplanner.team/stops/H1ma233c", "https://tec.openplanner.team/stops/H1ma237a"], ["https://tec.openplanner.team/stops/H4ta116a", "https://tec.openplanner.team/stops/H4ta116b"], ["https://tec.openplanner.team/stops/LLbquar2", "https://tec.openplanner.team/stops/LLbvith1"], ["https://tec.openplanner.team/stops/X796aea", "https://tec.openplanner.team/stops/X796aeb"], ["https://tec.openplanner.team/stops/X952aaa", "https://tec.openplanner.team/stops/X952aab"], ["https://tec.openplanner.team/stops/X947adb", "https://tec.openplanner.team/stops/X949amb"], ["https://tec.openplanner.team/stops/H4ev119a", "https://tec.openplanner.team/stops/H4ev124b"], ["https://tec.openplanner.team/stops/X725aee", "https://tec.openplanner.team/stops/X725aef"], ["https://tec.openplanner.team/stops/H1qu109a", "https://tec.openplanner.team/stops/H1qu112a"], ["https://tec.openplanner.team/stops/X946aca", "https://tec.openplanner.team/stops/X948adb"], ["https://tec.openplanner.team/stops/X640aqb", "https://tec.openplanner.team/stops/X642aac"], ["https://tec.openplanner.team/stops/X801bga", "https://tec.openplanner.team/stops/X801cob"], ["https://tec.openplanner.team/stops/LLrdigu2", "https://tec.openplanner.team/stops/LSPclai2"], ["https://tec.openplanner.team/stops/N507ada", "https://tec.openplanner.team/stops/N507amb"], ["https://tec.openplanner.team/stops/Cmomalg2", "https://tec.openplanner.team/stops/Crorpai2"], ["https://tec.openplanner.team/stops/Lvo60--1", "https://tec.openplanner.team/stops/Lvomoul1"], ["https://tec.openplanner.team/stops/N511aob", "https://tec.openplanner.team/stops/N511aoc"], ["https://tec.openplanner.team/stops/H3lr106b", "https://tec.openplanner.team/stops/H3lr132b"], ["https://tec.openplanner.team/stops/X822aaa", "https://tec.openplanner.team/stops/X822aeb"], ["https://tec.openplanner.team/stops/LEMec--2", "https://tec.openplanner.team/stops/LWOcomm2"], ["https://tec.openplanner.team/stops/H1em108b", "https://tec.openplanner.team/stops/H1hl128b"], ["https://tec.openplanner.team/stops/Barqpla2", "https://tec.openplanner.team/stops/Barqpwa2"], ["https://tec.openplanner.team/stops/LNCchev2", "https://tec.openplanner.team/stops/LNClila1"], ["https://tec.openplanner.team/stops/N501fmb", "https://tec.openplanner.team/stops/N501kva"], ["https://tec.openplanner.team/stops/N167aaa", "https://tec.openplanner.team/stops/N167aga"], ["https://tec.openplanner.team/stops/H2mo119a", "https://tec.openplanner.team/stops/H2mo123a"], ["https://tec.openplanner.team/stops/N118aha", "https://tec.openplanner.team/stops/N118atb"], ["https://tec.openplanner.team/stops/Llgarmu1", "https://tec.openplanner.team/stops/Llggosw1"], ["https://tec.openplanner.team/stops/H1ha193b", "https://tec.openplanner.team/stops/H1ob341b"], ["https://tec.openplanner.team/stops/Btlgfto1", "https://tec.openplanner.team/stops/Btlgreg1"], ["https://tec.openplanner.team/stops/N503agb", "https://tec.openplanner.team/stops/N535ana"], ["https://tec.openplanner.team/stops/Lheloti2", "https://tec.openplanner.team/stops/Lhr4ave1"], ["https://tec.openplanner.team/stops/LThsere1", "https://tec.openplanner.team/stops/LThsere2"], ["https://tec.openplanner.team/stops/Llgamer1", "https://tec.openplanner.team/stops/Llgamer4"], ["https://tec.openplanner.team/stops/Blasbpr2", "https://tec.openplanner.team/stops/Bottpin2"], ["https://tec.openplanner.team/stops/Lanpisc2", "https://tec.openplanner.team/stops/Lglmoul1"], ["https://tec.openplanner.team/stops/Ljuauto2", "https://tec.openplanner.team/stops/Lsweg--1"], ["https://tec.openplanner.team/stops/LHTboul1", "https://tec.openplanner.team/stops/LHTlieg1"], ["https://tec.openplanner.team/stops/Cjupui01", "https://tec.openplanner.team/stops/Clostan1"], ["https://tec.openplanner.team/stops/X349aab", "https://tec.openplanner.team/stops/X998aza"], ["https://tec.openplanner.team/stops/N209aja", "https://tec.openplanner.team/stops/N209ajb"], ["https://tec.openplanner.team/stops/LGegare1", "https://tec.openplanner.team/stops/LGegare2"], ["https://tec.openplanner.team/stops/X613aab", "https://tec.openplanner.team/stops/X614ama"], ["https://tec.openplanner.team/stops/Clddeve2", "https://tec.openplanner.team/stops/CMleer2"], ["https://tec.openplanner.team/stops/H1al106a", "https://tec.openplanner.team/stops/H1qp142a"], ["https://tec.openplanner.team/stops/Cmacart4", "https://tec.openplanner.team/stops/CMcart1"], ["https://tec.openplanner.team/stops/NC44aba", "https://tec.openplanner.team/stops/NC44adb"], ["https://tec.openplanner.team/stops/Cnagrro2", "https://tec.openplanner.team/stops/Cnanoir2"], ["https://tec.openplanner.team/stops/LOreg--2", "https://tec.openplanner.team/stops/LOrpont1"], ["https://tec.openplanner.team/stops/LPbec--1", "https://tec.openplanner.team/stops/LPbec--2"], ["https://tec.openplanner.team/stops/X612ada", "https://tec.openplanner.team/stops/X612adb"], ["https://tec.openplanner.team/stops/H1hr128c", "https://tec.openplanner.team/stops/H1hr129b"], ["https://tec.openplanner.team/stops/H1ca101a", "https://tec.openplanner.team/stops/H1ca101b"], ["https://tec.openplanner.team/stops/Lvepala2", "https://tec.openplanner.team/stops/Lvepala9"], ["https://tec.openplanner.team/stops/LJesole1", "https://tec.openplanner.team/stops/LJesole2"], ["https://tec.openplanner.team/stops/Lanfran2", "https://tec.openplanner.team/stops/Lanfran4"], ["https://tec.openplanner.team/stops/H4og212a", "https://tec.openplanner.team/stops/H4og213a"], ["https://tec.openplanner.team/stops/Cgxvkho1", "https://tec.openplanner.team/stops/Cmocime1"], ["https://tec.openplanner.team/stops/H1fl135b", "https://tec.openplanner.team/stops/H1fl137a"], ["https://tec.openplanner.team/stops/LrAdrie1", "https://tec.openplanner.team/stops/LrAdrie5"], ["https://tec.openplanner.team/stops/Ljejoli2", "https://tec.openplanner.team/stops/Ljelamb2"], ["https://tec.openplanner.team/stops/Cjudelv4", "https://tec.openplanner.team/stops/CMmade1"], ["https://tec.openplanner.team/stops/X907aib", "https://tec.openplanner.team/stops/X950aab"], ["https://tec.openplanner.team/stops/N576adb", "https://tec.openplanner.team/stops/N576aea"], ["https://tec.openplanner.team/stops/H4an108b", "https://tec.openplanner.team/stops/H4an110a"], ["https://tec.openplanner.team/stops/X939ahb", "https://tec.openplanner.team/stops/X946agb"], ["https://tec.openplanner.team/stops/Bottath1", "https://tec.openplanner.team/stops/Bottcco2"], ["https://tec.openplanner.team/stops/LFocent1", "https://tec.openplanner.team/stops/LFothie1"], ["https://tec.openplanner.team/stops/X999aeb", "https://tec.openplanner.team/stops/X999afb"], ["https://tec.openplanner.team/stops/N308aic", "https://tec.openplanner.team/stops/N308ala"], ["https://tec.openplanner.team/stops/Lrovand1", "https://tec.openplanner.team/stops/Lrovand2"], ["https://tec.openplanner.team/stops/H2le153a", "https://tec.openplanner.team/stops/H2le153b"], ["https://tec.openplanner.team/stops/N213aaa", "https://tec.openplanner.team/stops/N213aca"], ["https://tec.openplanner.team/stops/LrEkape2", "https://tec.openplanner.team/stops/LrErauw2"], ["https://tec.openplanner.team/stops/X896adb", "https://tec.openplanner.team/stops/X896aia"], ["https://tec.openplanner.team/stops/N501fwb", "https://tec.openplanner.team/stops/N501fwy"], ["https://tec.openplanner.team/stops/Cvpchat1", "https://tec.openplanner.team/stops/Cvppost1"], ["https://tec.openplanner.team/stops/Cmgvpa", "https://tec.openplanner.team/stops/H1mb129a"], ["https://tec.openplanner.team/stops/H4ft135a", "https://tec.openplanner.team/stops/H4ft135b"], ["https://tec.openplanner.team/stops/H4ce101a", "https://tec.openplanner.team/stops/H4ce101b"], ["https://tec.openplanner.team/stops/LHgtomb2", "https://tec.openplanner.team/stops/LOMdodi2"], ["https://tec.openplanner.team/stops/N524aia", "https://tec.openplanner.team/stops/N524amb"], ["https://tec.openplanner.team/stops/X616abb", "https://tec.openplanner.team/stops/X616aib"], ["https://tec.openplanner.team/stops/Lflchan2", "https://tec.openplanner.team/stops/Lflsana1"], ["https://tec.openplanner.team/stops/N501bha", "https://tec.openplanner.team/stops/N501lra"], ["https://tec.openplanner.team/stops/Beclbar2", "https://tec.openplanner.team/stops/H2fa103b"], ["https://tec.openplanner.team/stops/Cbwcab2", "https://tec.openplanner.team/stops/Cbwdoua2"], ["https://tec.openplanner.team/stops/X886ada", "https://tec.openplanner.team/stops/X886ahb"], ["https://tec.openplanner.team/stops/X808aia", "https://tec.openplanner.team/stops/X808akb"], ["https://tec.openplanner.team/stops/X696ada", "https://tec.openplanner.team/stops/X696aka"], ["https://tec.openplanner.team/stops/N553amb", "https://tec.openplanner.team/stops/N553anb"], ["https://tec.openplanner.team/stops/X650aib", "https://tec.openplanner.team/stops/X650aja"], ["https://tec.openplanner.team/stops/Lsemaqu2", "https://tec.openplanner.team/stops/Lsevecq2"], ["https://tec.openplanner.team/stops/X619aja", "https://tec.openplanner.team/stops/X619aka"], ["https://tec.openplanner.team/stops/X897adb", "https://tec.openplanner.team/stops/X897alc"], ["https://tec.openplanner.team/stops/H1pa118b", "https://tec.openplanner.team/stops/H1pa166b"], ["https://tec.openplanner.team/stops/LHUalbe2", "https://tec.openplanner.team/stops/LHUlieg2"], ["https://tec.openplanner.team/stops/NL72aea", "https://tec.openplanner.team/stops/NL76acb"], ["https://tec.openplanner.team/stops/N343aib", "https://tec.openplanner.team/stops/X343aic"], ["https://tec.openplanner.team/stops/LOTawan1", "https://tec.openplanner.team/stops/LOTawan2"], ["https://tec.openplanner.team/stops/H1ro135a", "https://tec.openplanner.team/stops/H1ro140a"], ["https://tec.openplanner.team/stops/N558ana", "https://tec.openplanner.team/stops/NL76aea"], ["https://tec.openplanner.team/stops/X639ada", "https://tec.openplanner.team/stops/X639apa"], ["https://tec.openplanner.team/stops/X811aaa", "https://tec.openplanner.team/stops/X811ada"], ["https://tec.openplanner.team/stops/LHGtron1", "https://tec.openplanner.team/stops/LVllieg2"], ["https://tec.openplanner.team/stops/N302afa", "https://tec.openplanner.team/stops/N331aeb"], ["https://tec.openplanner.team/stops/N160ada", "https://tec.openplanner.team/stops/N160adb"], ["https://tec.openplanner.team/stops/N212ata", "https://tec.openplanner.team/stops/N213aab"], ["https://tec.openplanner.team/stops/X746ahb", "https://tec.openplanner.team/stops/X746aia"], ["https://tec.openplanner.team/stops/Lagstre1", "https://tec.openplanner.team/stops/Lagtilf1"], ["https://tec.openplanner.team/stops/H1as102a", "https://tec.openplanner.team/stops/H1as154a"], ["https://tec.openplanner.team/stops/LBY4che1", "https://tec.openplanner.team/stops/Lgdegli2"], ["https://tec.openplanner.team/stops/X641adb", "https://tec.openplanner.team/stops/X641aea"], ["https://tec.openplanner.team/stops/LHUmala2", "https://tec.openplanner.team/stops/LHUtfal1"], ["https://tec.openplanner.team/stops/LSPchap2", "https://tec.openplanner.team/stops/LSPec--1"], ["https://tec.openplanner.team/stops/Lmlcrot*", "https://tec.openplanner.team/stops/Lmlcrot2"], ["https://tec.openplanner.team/stops/H5rx104b", "https://tec.openplanner.team/stops/H5rx121a"], ["https://tec.openplanner.team/stops/LBaeg--1", "https://tec.openplanner.team/stops/LBapepi5"], ["https://tec.openplanner.team/stops/N209ama", "https://tec.openplanner.team/stops/N209amb"], ["https://tec.openplanner.team/stops/X636awb", "https://tec.openplanner.team/stops/X636axa"], ["https://tec.openplanner.team/stops/Bwavdmo3", "https://tec.openplanner.team/stops/Bwavdmo4"], ["https://tec.openplanner.team/stops/X601aja", "https://tec.openplanner.team/stops/X662ata"], ["https://tec.openplanner.team/stops/Blemwob2", "https://tec.openplanner.team/stops/Blemwob3"], ["https://tec.openplanner.team/stops/H1he109a", "https://tec.openplanner.team/stops/H1qv116a"], ["https://tec.openplanner.team/stops/Lra4bra1", "https://tec.openplanner.team/stops/LSAvieu2"], ["https://tec.openplanner.team/stops/Bbstasa1", "https://tec.openplanner.team/stops/Bbstegl2"], ["https://tec.openplanner.team/stops/N501mba", "https://tec.openplanner.team/stops/N501ncb"], ["https://tec.openplanner.team/stops/H2pe162a", "https://tec.openplanner.team/stops/H2pe163b"], ["https://tec.openplanner.team/stops/Cfacamp4", "https://tec.openplanner.team/stops/Cfarcam2"], ["https://tec.openplanner.team/stops/Lseaven1", "https://tec.openplanner.team/stops/Lsekubo4"], ["https://tec.openplanner.team/stops/H5pe129b", "https://tec.openplanner.team/stops/H5pe135a"], ["https://tec.openplanner.team/stops/Llgatla1", "https://tec.openplanner.team/stops/Llgauxc1"], ["https://tec.openplanner.team/stops/Bbldass1", "https://tec.openplanner.team/stops/Bnetrec2"], ["https://tec.openplanner.team/stops/H5rx115d", "https://tec.openplanner.team/stops/H5rx144b"], ["https://tec.openplanner.team/stops/Llgnico5", "https://tec.openplanner.team/stops/Llgnico7"], ["https://tec.openplanner.team/stops/Cmtfabi2", "https://tec.openplanner.team/stops/Cmtmath1"], ["https://tec.openplanner.team/stops/Cptccas2", "https://tec.openplanner.team/stops/Cptdubo2"], ["https://tec.openplanner.team/stops/Lcceg--1", "https://tec.openplanner.team/stops/Lcceg--2"], ["https://tec.openplanner.team/stops/Lccaigr1", "https://tec.openplanner.team/stops/LRAgrot1"], ["https://tec.openplanner.team/stops/H4og208a", "https://tec.openplanner.team/stops/H4og215a"], ["https://tec.openplanner.team/stops/Cbiseur1", "https://tec.openplanner.team/stops/Cgzblob1"], ["https://tec.openplanner.team/stops/N117ara", "https://tec.openplanner.team/stops/N117arb"], ["https://tec.openplanner.team/stops/LTPhenr1", "https://tec.openplanner.team/stops/LTPhenr2"], ["https://tec.openplanner.team/stops/Bwatmsj1", "https://tec.openplanner.team/stops/Bwatmsj8"], ["https://tec.openplanner.team/stops/Ljubois2", "https://tec.openplanner.team/stops/Ljuprev1"], ["https://tec.openplanner.team/stops/N501maa", "https://tec.openplanner.team/stops/N501mab"], ["https://tec.openplanner.team/stops/H4hg156a", "https://tec.openplanner.team/stops/H4hg159b"], ["https://tec.openplanner.team/stops/LgRzent1", "https://tec.openplanner.team/stops/LgRzent2"], ["https://tec.openplanner.team/stops/LLzcruc2", "https://tec.openplanner.team/stops/LWneg--1"], ["https://tec.openplanner.team/stops/Bbiecim2", "https://tec.openplanner.team/stops/Bbiepre1"], ["https://tec.openplanner.team/stops/H4fa124a", "https://tec.openplanner.team/stops/H4ms146a"], ["https://tec.openplanner.team/stops/Cgocnor1", "https://tec.openplanner.team/stops/Cgoetun5"], ["https://tec.openplanner.team/stops/H4wc372a", "https://tec.openplanner.team/stops/H4wc373a"], ["https://tec.openplanner.team/stops/Blmlcar1", "https://tec.openplanner.team/stops/Brixape2"], ["https://tec.openplanner.team/stops/LACwass2", "https://tec.openplanner.team/stops/NL30aja"], ["https://tec.openplanner.team/stops/Lfhbott2", "https://tec.openplanner.team/stops/Lfhtrca1"], ["https://tec.openplanner.team/stops/N204aba", "https://tec.openplanner.team/stops/N205aba"], ["https://tec.openplanner.team/stops/LLbcafe1", "https://tec.openplanner.team/stops/LLbcafe2"], ["https://tec.openplanner.team/stops/Bbsgfva1", "https://tec.openplanner.team/stops/Bbsgfva2"], ["https://tec.openplanner.team/stops/LBhcent2", "https://tec.openplanner.team/stops/LSochal1"], ["https://tec.openplanner.team/stops/Cmymaco2", "https://tec.openplanner.team/stops/Cmywarc2"], ["https://tec.openplanner.team/stops/NL77aga", "https://tec.openplanner.team/stops/NL77agb"], ["https://tec.openplanner.team/stops/Cmttrie1", "https://tec.openplanner.team/stops/Cmttrie2"], ["https://tec.openplanner.team/stops/H1ha187b", "https://tec.openplanner.team/stops/H1ha196b"], ["https://tec.openplanner.team/stops/Lougare1", "https://tec.openplanner.team/stops/Lougare2"], ["https://tec.openplanner.team/stops/X730adb", "https://tec.openplanner.team/stops/X753acb"], ["https://tec.openplanner.team/stops/H4bh100b", "https://tec.openplanner.team/stops/H4ry141b"], ["https://tec.openplanner.team/stops/X765aab", "https://tec.openplanner.team/stops/X766afa"], ["https://tec.openplanner.team/stops/H2na136a", "https://tec.openplanner.team/stops/H3so185b"], ["https://tec.openplanner.team/stops/LWLtamb1", "https://tec.openplanner.team/stops/LWLtamb2"], ["https://tec.openplanner.team/stops/Bnilcha2", "https://tec.openplanner.team/stops/Bwlhpmt1"], ["https://tec.openplanner.team/stops/Lagkink2", "https://tec.openplanner.team/stops/Lagpera1"], ["https://tec.openplanner.team/stops/LBBcamp2", "https://tec.openplanner.team/stops/NL81aea"], ["https://tec.openplanner.team/stops/N215aab", "https://tec.openplanner.team/stops/N228aca"], ["https://tec.openplanner.team/stops/Llgcorn2", "https://tec.openplanner.team/stops/Llgmulh2"], ["https://tec.openplanner.team/stops/N536apa", "https://tec.openplanner.team/stops/N562aob"], ["https://tec.openplanner.team/stops/X890aeb", "https://tec.openplanner.team/stops/X890aga"], ["https://tec.openplanner.team/stops/Bhalalb2", "https://tec.openplanner.team/stops/Bhalpar3"], ["https://tec.openplanner.team/stops/N528ana", "https://tec.openplanner.team/stops/N528aqa"], ["https://tec.openplanner.team/stops/H4mb141a", "https://tec.openplanner.team/stops/H4ml207a"], ["https://tec.openplanner.team/stops/LOunebl1", "https://tec.openplanner.team/stops/X261acb"], ["https://tec.openplanner.team/stops/LSIgera2", "https://tec.openplanner.team/stops/LVAakke1"], ["https://tec.openplanner.team/stops/Blasbh52", "https://tec.openplanner.team/stops/Blasbpr1"], ["https://tec.openplanner.team/stops/Bniltri1", "https://tec.openplanner.team/stops/Bwlhpmt2"], ["https://tec.openplanner.team/stops/Lseaite2", "https://tec.openplanner.team/stops/Lsevand1"], ["https://tec.openplanner.team/stops/LSkbo831", "https://tec.openplanner.team/stops/LSkbo832"], ["https://tec.openplanner.team/stops/N357aca", "https://tec.openplanner.team/stops/X989aeb"], ["https://tec.openplanner.team/stops/X923abb", "https://tec.openplanner.team/stops/X923adb"], ["https://tec.openplanner.team/stops/H2pe159b", "https://tec.openplanner.team/stops/H2re165a"], ["https://tec.openplanner.team/stops/Lghcham1", "https://tec.openplanner.team/stops/Lghfore1"], ["https://tec.openplanner.team/stops/N542aja", "https://tec.openplanner.team/stops/N542ajb"], ["https://tec.openplanner.team/stops/Crglyre2", "https://tec.openplanner.team/stops/Cstvape2"], ["https://tec.openplanner.team/stops/Bbsigaz2", "https://tec.openplanner.team/stops/Blilhay1"], ["https://tec.openplanner.team/stops/Ljubord1", "https://tec.openplanner.team/stops/Ljubrec3"], ["https://tec.openplanner.team/stops/H1mj122b", "https://tec.openplanner.team/stops/H1mj130a"], ["https://tec.openplanner.team/stops/N209akb", "https://tec.openplanner.team/stops/N559acb"], ["https://tec.openplanner.team/stops/Cfrcomp1", "https://tec.openplanner.team/stops/Cfrplac6"], ["https://tec.openplanner.team/stops/Cmlbras1", "https://tec.openplanner.team/stops/Cmlcent1"], ["https://tec.openplanner.team/stops/H1ge179a", "https://tec.openplanner.team/stops/H1no141b"], ["https://tec.openplanner.team/stops/N287acb", "https://tec.openplanner.team/stops/N287ada"], ["https://tec.openplanner.team/stops/Llgcite4", "https://tec.openplanner.team/stops/Llgphol1"], ["https://tec.openplanner.team/stops/H1pe132b", "https://tec.openplanner.team/stops/H1ry134b"], ["https://tec.openplanner.team/stops/X725atb", "https://tec.openplanner.team/stops/X725bia"], ["https://tec.openplanner.team/stops/H4pe125a", "https://tec.openplanner.team/stops/H4pe127b"], ["https://tec.openplanner.team/stops/LsVgend1", "https://tec.openplanner.team/stops/LsVgend2"], ["https://tec.openplanner.team/stops/N501cqa", "https://tec.openplanner.team/stops/N501cub"], ["https://tec.openplanner.team/stops/Cchblne2", "https://tec.openplanner.team/stops/Cchtour2"], ["https://tec.openplanner.team/stops/Cgobl%C3%A9r1", "https://tec.openplanner.team/stops/Cgobl%C3%A9r2"], ["https://tec.openplanner.team/stops/X771aab", "https://tec.openplanner.team/stops/X773aea"], ["https://tec.openplanner.team/stops/LMOford1", "https://tec.openplanner.team/stops/LMOhero1"], ["https://tec.openplanner.team/stops/N544aab", "https://tec.openplanner.team/stops/N544aea"], ["https://tec.openplanner.team/stops/Lch179-1", "https://tec.openplanner.team/stops/Lchsaec2"], ["https://tec.openplanner.team/stops/Bcsepes1", "https://tec.openplanner.team/stops/Bmoucoq1"], ["https://tec.openplanner.team/stops/X363aab", "https://tec.openplanner.team/stops/X363adb"], ["https://tec.openplanner.team/stops/X823aeb", "https://tec.openplanner.team/stops/X823afc"], ["https://tec.openplanner.team/stops/Cgopier3", "https://tec.openplanner.team/stops/Cgorobe2"], ["https://tec.openplanner.team/stops/X750aub", "https://tec.openplanner.team/stops/X750bkb"], ["https://tec.openplanner.team/stops/Bgoemho2", "https://tec.openplanner.team/stops/Bneesj32"], ["https://tec.openplanner.team/stops/X757ala", "https://tec.openplanner.team/stops/X757alb"], ["https://tec.openplanner.team/stops/Ccugrtr2", "https://tec.openplanner.team/stops/Ccumasu2"], ["https://tec.openplanner.team/stops/Cgrlorm2", "https://tec.openplanner.team/stops/N160ahb"], ["https://tec.openplanner.team/stops/LREelse2", "https://tec.openplanner.team/stops/LREgrot4"], ["https://tec.openplanner.team/stops/Blimmer2", "https://tec.openplanner.team/stops/Bottgar4"], ["https://tec.openplanner.team/stops/Blpgbat1", "https://tec.openplanner.team/stops/Blpghou1"], ["https://tec.openplanner.team/stops/N132aaa", "https://tec.openplanner.team/stops/N136aaa"], ["https://tec.openplanner.team/stops/Bnodblt1", "https://tec.openplanner.team/stops/Bnodegl1"], ["https://tec.openplanner.team/stops/X804brb", "https://tec.openplanner.team/stops/X804bsb"], ["https://tec.openplanner.team/stops/LeLsied1", "https://tec.openplanner.team/stops/LeLzost2"], ["https://tec.openplanner.team/stops/LlSzoll1", "https://tec.openplanner.team/stops/LmEdorf2"], ["https://tec.openplanner.team/stops/H1ms364a", "https://tec.openplanner.team/stops/H1ms910a"], ["https://tec.openplanner.team/stops/LFAec--1", "https://tec.openplanner.team/stops/LFAtomb1"], ["https://tec.openplanner.team/stops/X780ada", "https://tec.openplanner.team/stops/X780aeb"], ["https://tec.openplanner.team/stops/Bwaakap2", "https://tec.openplanner.team/stops/LWSstat1"], ["https://tec.openplanner.team/stops/Blhueca2", "https://tec.openplanner.team/stops/Blhueso1"], ["https://tec.openplanner.team/stops/Ctachst1", "https://tec.openplanner.team/stops/N543cja"], ["https://tec.openplanner.team/stops/N512aoa", "https://tec.openplanner.team/stops/N512apb"], ["https://tec.openplanner.team/stops/N137aca", "https://tec.openplanner.team/stops/N137acb"], ["https://tec.openplanner.team/stops/H4vz370a", "https://tec.openplanner.team/stops/H4vz370b"], ["https://tec.openplanner.team/stops/H4cw107a", "https://tec.openplanner.team/stops/H4gz115b"], ["https://tec.openplanner.team/stops/X633afa", "https://tec.openplanner.team/stops/X653adc"], ["https://tec.openplanner.team/stops/LFPgeme1", "https://tec.openplanner.team/stops/LFPgeme2"], ["https://tec.openplanner.team/stops/LBBmc--1", "https://tec.openplanner.team/stops/LBBmc--2"], ["https://tec.openplanner.team/stops/N571aca", "https://tec.openplanner.team/stops/N573aoa"], ["https://tec.openplanner.team/stops/LHUmess1", "https://tec.openplanner.team/stops/LHUsauv3"], ["https://tec.openplanner.team/stops/X734ada", "https://tec.openplanner.team/stops/X734afa"], ["https://tec.openplanner.team/stops/X641ala", "https://tec.openplanner.team/stops/X641ayb"], ["https://tec.openplanner.team/stops/Lsmnico2", "https://tec.openplanner.team/stops/Lsmtini3"], ["https://tec.openplanner.team/stops/H1gi154b", "https://tec.openplanner.team/stops/H1hm176a"], ["https://tec.openplanner.team/stops/N217ada", "https://tec.openplanner.team/stops/N232adb"], ["https://tec.openplanner.team/stops/LHDpota3", "https://tec.openplanner.team/stops/LHDpota4"], ["https://tec.openplanner.team/stops/H1do110a", "https://tec.openplanner.team/stops/H1do125a"], ["https://tec.openplanner.team/stops/LaNmuhl3", "https://tec.openplanner.team/stops/LmNbirt2"], ["https://tec.openplanner.team/stops/LAmwaut2", "https://tec.openplanner.team/stops/LTipont1"], ["https://tec.openplanner.team/stops/H2hp119d", "https://tec.openplanner.team/stops/H2ll260b"], ["https://tec.openplanner.team/stops/Canboha1", "https://tec.openplanner.team/stops/Cpthaud1"], ["https://tec.openplanner.team/stops/Lrecroi1", "https://tec.openplanner.team/stops/Lrelier1"], ["https://tec.openplanner.team/stops/H1br128a", "https://tec.openplanner.team/stops/H1br132b"], ["https://tec.openplanner.team/stops/Bnivfra1", "https://tec.openplanner.team/stops/Bnivpba2"], ["https://tec.openplanner.team/stops/N134aga", "https://tec.openplanner.team/stops/N154abb"], ["https://tec.openplanner.team/stops/X750asb", "https://tec.openplanner.team/stops/X750azb"], ["https://tec.openplanner.team/stops/LPLfp2-1", "https://tec.openplanner.team/stops/LPLstri1"], ["https://tec.openplanner.team/stops/X802ajb", "https://tec.openplanner.team/stops/X802aka"], ["https://tec.openplanner.team/stops/LsVgils1", "https://tec.openplanner.team/stops/LsVthom2"], ["https://tec.openplanner.team/stops/LlNbene2", "https://tec.openplanner.team/stops/LlNkirc2"], ["https://tec.openplanner.team/stops/Lchmarc2", "https://tec.openplanner.team/stops/LHAlacr1"], ["https://tec.openplanner.team/stops/Lvesomm2", "https://tec.openplanner.team/stops/Lvewall1"], ["https://tec.openplanner.team/stops/LFmgeno1", "https://tec.openplanner.team/stops/LFmgeno2"], ["https://tec.openplanner.team/stops/X808aga", "https://tec.openplanner.team/stops/X811aga"], ["https://tec.openplanner.team/stops/Ctybaco1", "https://tec.openplanner.team/stops/Ctyhame2"], ["https://tec.openplanner.team/stops/H4fr392a", "https://tec.openplanner.team/stops/H4fr394a"], ["https://tec.openplanner.team/stops/LNChock1", "https://tec.openplanner.team/stops/LNCmarc1"], ["https://tec.openplanner.team/stops/N201afb", "https://tec.openplanner.team/stops/N201aha"], ["https://tec.openplanner.team/stops/Bleugar1", "https://tec.openplanner.team/stops/Bleunaa2"], ["https://tec.openplanner.team/stops/Bcrncen2", "https://tec.openplanner.team/stops/Bcrnsge2"], ["https://tec.openplanner.team/stops/LJU51--1", "https://tec.openplanner.team/stops/LJUmc--1"], ["https://tec.openplanner.team/stops/Cgzoctr2", "https://tec.openplanner.team/stops/Cgzoctr3"], ["https://tec.openplanner.team/stops/LFrec--1", "https://tec.openplanner.team/stops/LLUcdoy1"], ["https://tec.openplanner.team/stops/H1mq199b", "https://tec.openplanner.team/stops/H5at122a"], ["https://tec.openplanner.team/stops/LrEgend2", "https://tec.openplanner.team/stops/LrEviel2"], ["https://tec.openplanner.team/stops/X597aaa", "https://tec.openplanner.team/stops/X597anb"], ["https://tec.openplanner.team/stops/X345aab", "https://tec.openplanner.team/stops/X363aab"], ["https://tec.openplanner.team/stops/Llghenr1", "https://tec.openplanner.team/stops/Llghenr2"], ["https://tec.openplanner.team/stops/X610aja", "https://tec.openplanner.team/stops/X611aea"], ["https://tec.openplanner.team/stops/Cbmind2", "https://tec.openplanner.team/stops/Cbmzoni1"], ["https://tec.openplanner.team/stops/LSTamer2", "https://tec.openplanner.team/stops/LSTchal4"], ["https://tec.openplanner.team/stops/Lvecase1", "https://tec.openplanner.team/stops/Lvecite3"], ["https://tec.openplanner.team/stops/X634aba", "https://tec.openplanner.team/stops/X634abb"], ["https://tec.openplanner.team/stops/LHUgodi1", "https://tec.openplanner.team/stops/LHUlebe8"], ["https://tec.openplanner.team/stops/LBIrout2", "https://tec.openplanner.team/stops/LVGeg--5"], ["https://tec.openplanner.team/stops/H4ru239a", "https://tec.openplanner.team/stops/H4ru241a"], ["https://tec.openplanner.team/stops/Bcer4br3", "https://tec.openplanner.team/stops/Bcer4br5"], ["https://tec.openplanner.team/stops/Cci22ao2", "https://tec.openplanner.team/stops/Cciethi2"], ["https://tec.openplanner.team/stops/Lghalle1", "https://tec.openplanner.team/stops/Lghlieg1"], ["https://tec.openplanner.team/stops/X639ajb", "https://tec.openplanner.team/stops/X639akc"], ["https://tec.openplanner.team/stops/H2ll183b", "https://tec.openplanner.team/stops/H2ll260a"], ["https://tec.openplanner.team/stops/LTIp%C3%A9pi2", "https://tec.openplanner.team/stops/LTIsain2"], ["https://tec.openplanner.team/stops/N231afb", "https://tec.openplanner.team/stops/N231aha"], ["https://tec.openplanner.team/stops/X897amb", "https://tec.openplanner.team/stops/X897anb"], ["https://tec.openplanner.team/stops/H1to153b", "https://tec.openplanner.team/stops/H1to153c"], ["https://tec.openplanner.team/stops/Bbrlmez2", "https://tec.openplanner.team/stops/Bbrlvil1"], ["https://tec.openplanner.team/stops/N229afb", "https://tec.openplanner.team/stops/N270agb"], ["https://tec.openplanner.team/stops/LCxreno1", "https://tec.openplanner.team/stops/LLMfond2"], ["https://tec.openplanner.team/stops/X729aca", "https://tec.openplanner.team/stops/X769aga"], ["https://tec.openplanner.team/stops/LBPxhav2", "https://tec.openplanner.team/stops/LHSlava2"], ["https://tec.openplanner.team/stops/H1ho122c", "https://tec.openplanner.team/stops/H1ho143a"], ["https://tec.openplanner.team/stops/N501iwa", "https://tec.openplanner.team/stops/N521ahb"], ["https://tec.openplanner.team/stops/N504aab", "https://tec.openplanner.team/stops/N511agb"], ["https://tec.openplanner.team/stops/LBlchin1", "https://tec.openplanner.team/stops/LBlplac2"], ["https://tec.openplanner.team/stops/N501fty", "https://tec.openplanner.team/stops/N501gpd"], ["https://tec.openplanner.team/stops/Llgbavi0", "https://tec.openplanner.team/stops/Llghong1"], ["https://tec.openplanner.team/stops/Lmolagu1", "https://tec.openplanner.team/stops/Lmolagu2"], ["https://tec.openplanner.team/stops/H4ta117a", "https://tec.openplanner.team/stops/H4ta122a"], ["https://tec.openplanner.team/stops/Ccyfede1", "https://tec.openplanner.team/stops/Csrcant1"], ["https://tec.openplanner.team/stops/X822aja", "https://tec.openplanner.team/stops/X822ala"], ["https://tec.openplanner.team/stops/Ctrterm2", "https://tec.openplanner.team/stops/H2tz115b"], ["https://tec.openplanner.team/stops/Ljeblum2", "https://tec.openplanner.team/stops/Ljerobi1"], ["https://tec.openplanner.team/stops/Brsgm801", "https://tec.openplanner.team/stops/Brsgm802"], ["https://tec.openplanner.team/stops/N540agb", "https://tec.openplanner.team/stops/N540aja"], ["https://tec.openplanner.team/stops/X820aeb", "https://tec.openplanner.team/stops/X821aaa"], ["https://tec.openplanner.team/stops/H4bs113a", "https://tec.openplanner.team/stops/H4bs114a"], ["https://tec.openplanner.team/stops/LeIdeid2", "https://tec.openplanner.team/stops/LeIpiro3"], ["https://tec.openplanner.team/stops/H1eo104a", "https://tec.openplanner.team/stops/H1eo107a"], ["https://tec.openplanner.team/stops/X995adc", "https://tec.openplanner.team/stops/X995afa"], ["https://tec.openplanner.team/stops/LmSkape1", "https://tec.openplanner.team/stops/LmSkape2"], ["https://tec.openplanner.team/stops/X685aca", "https://tec.openplanner.team/stops/X685ama"], ["https://tec.openplanner.team/stops/X786aaa", "https://tec.openplanner.team/stops/X786aea"], ["https://tec.openplanner.team/stops/Llgfusc4", "https://tec.openplanner.team/stops/Llghec-2"], ["https://tec.openplanner.team/stops/H1gi121b", "https://tec.openplanner.team/stops/H1gi154a"], ["https://tec.openplanner.team/stops/H1ob331b", "https://tec.openplanner.team/stops/H1ob361b"], ["https://tec.openplanner.team/stops/Lhrhosp1", "https://tec.openplanner.team/stops/Lhrhosp2"], ["https://tec.openplanner.team/stops/Lsehya-3", "https://tec.openplanner.team/stops/Lseruis2"], ["https://tec.openplanner.team/stops/LESmart1", "https://tec.openplanner.team/stops/LESmart2"], ["https://tec.openplanner.team/stops/LSBrouf2", "https://tec.openplanner.team/stops/LSBrouf4"], ["https://tec.openplanner.team/stops/Llgfoss1", "https://tec.openplanner.team/stops/Llgsevr4"], ["https://tec.openplanner.team/stops/H2hl110b", "https://tec.openplanner.team/stops/H2hl113a"], ["https://tec.openplanner.team/stops/LFfeg--2", "https://tec.openplanner.team/stops/LPRmoul1"], ["https://tec.openplanner.team/stops/Ctisar2", "https://tec.openplanner.team/stops/H1mc128b"], ["https://tec.openplanner.team/stops/Bbaucai2", "https://tec.openplanner.team/stops/Blilgar1"], ["https://tec.openplanner.team/stops/H4ro155b", "https://tec.openplanner.team/stops/H5pe128a"], ["https://tec.openplanner.team/stops/LHgpost2", "https://tec.openplanner.team/stops/LHgtomb1"], ["https://tec.openplanner.team/stops/N521ata", "https://tec.openplanner.team/stops/N521atb"], ["https://tec.openplanner.team/stops/H4bo115b", "https://tec.openplanner.team/stops/H4hu113b"], ["https://tec.openplanner.team/stops/LbHzent2", "https://tec.openplanner.team/stops/LmS11--1"], ["https://tec.openplanner.team/stops/Lvo60--2", "https://tec.openplanner.team/stops/Lvovent2"], ["https://tec.openplanner.team/stops/LHrchat2", "https://tec.openplanner.team/stops/LHrrard2"], ["https://tec.openplanner.team/stops/Lchsa632", "https://tec.openplanner.team/stops/Lchtche1"], ["https://tec.openplanner.team/stops/X743aba", "https://tec.openplanner.team/stops/X743abb"], ["https://tec.openplanner.team/stops/Lantonn2", "https://tec.openplanner.team/stops/Lrcchar2"], ["https://tec.openplanner.team/stops/Bmarmpr1", "https://tec.openplanner.team/stops/Btileco2"], ["https://tec.openplanner.team/stops/Brixala1", "https://tec.openplanner.team/stops/Brixpro1"], ["https://tec.openplanner.team/stops/LpEbins1", "https://tec.openplanner.team/stops/LrTpost1"], ["https://tec.openplanner.team/stops/Lprfoot2", "https://tec.openplanner.team/stops/Lprtour1"], ["https://tec.openplanner.team/stops/LFPkerk1", "https://tec.openplanner.team/stops/LFPkerk2"], ["https://tec.openplanner.team/stops/LTobilz1", "https://tec.openplanner.team/stops/LToluik2"], ["https://tec.openplanner.team/stops/H4bw101a", "https://tec.openplanner.team/stops/H4co150a"], ["https://tec.openplanner.team/stops/X901aub", "https://tec.openplanner.team/stops/X901bqb"], ["https://tec.openplanner.team/stops/H1ms251a", "https://tec.openplanner.team/stops/H1ms251b"], ["https://tec.openplanner.team/stops/LMgbatt1", "https://tec.openplanner.team/stops/LMgbatt2"], ["https://tec.openplanner.team/stops/X642aaa", "https://tec.openplanner.team/stops/X646ada"], ["https://tec.openplanner.team/stops/H4ch114b", "https://tec.openplanner.team/stops/H4ty322a"], ["https://tec.openplanner.team/stops/Baudhan1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/N308bgb", "https://tec.openplanner.team/stops/N308bhb"], ["https://tec.openplanner.team/stops/LAYsupe1", "https://tec.openplanner.team/stops/LREraph2"], ["https://tec.openplanner.team/stops/LRccent1", "https://tec.openplanner.team/stops/LRcsilo2"], ["https://tec.openplanner.team/stops/N543aia", "https://tec.openplanner.team/stops/N543cla"], ["https://tec.openplanner.team/stops/X804anb", "https://tec.openplanner.team/stops/X804bta"], ["https://tec.openplanner.team/stops/X358aca", "https://tec.openplanner.team/stops/X991aeb"], ["https://tec.openplanner.team/stops/Cml3fon2", "https://tec.openplanner.team/stops/Cmlceri2"], ["https://tec.openplanner.team/stops/Llgsimo1", "https://tec.openplanner.team/stops/Llgvinc2"], ["https://tec.openplanner.team/stops/N104aba", "https://tec.openplanner.team/stops/N104abb"], ["https://tec.openplanner.team/stops/N539aca", "https://tec.openplanner.team/stops/N539aea"], ["https://tec.openplanner.team/stops/Bfledpi1", "https://tec.openplanner.team/stops/Cflchmo2"], ["https://tec.openplanner.team/stops/LlNhube1", "https://tec.openplanner.team/stops/LlNkirc1"], ["https://tec.openplanner.team/stops/N512ada", "https://tec.openplanner.team/stops/N512aea"], ["https://tec.openplanner.team/stops/Btubga01", "https://tec.openplanner.team/stops/Btubmfa1"], ["https://tec.openplanner.team/stops/N511aka", "https://tec.openplanner.team/stops/N511ala"], ["https://tec.openplanner.team/stops/H1vh136c", "https://tec.openplanner.team/stops/H3go100b"], ["https://tec.openplanner.team/stops/X358abb", "https://tec.openplanner.team/stops/X358afb"], ["https://tec.openplanner.team/stops/N209aka", "https://tec.openplanner.team/stops/N209akb"], ["https://tec.openplanner.team/stops/H2pe162b", "https://tec.openplanner.team/stops/H2pe163a"], ["https://tec.openplanner.team/stops/X613abb", "https://tec.openplanner.team/stops/X614ama"], ["https://tec.openplanner.team/stops/H2lc170b", "https://tec.openplanner.team/stops/H2lc172b"], ["https://tec.openplanner.team/stops/Ccunove1", "https://tec.openplanner.team/stops/Ccutill3"], ["https://tec.openplanner.team/stops/H1lm105a", "https://tec.openplanner.team/stops/H1lm105b"], ["https://tec.openplanner.team/stops/Bbryfon2", "https://tec.openplanner.team/stops/Bmarcat2"], ["https://tec.openplanner.team/stops/Ccybeau1", "https://tec.openplanner.team/stops/Ccychap2"], ["https://tec.openplanner.team/stops/Bolggar2", "https://tec.openplanner.team/stops/Bolppla3"], ["https://tec.openplanner.team/stops/Lpedeta2", "https://tec.openplanner.team/stops/Lpefler1"], ["https://tec.openplanner.team/stops/Llmbell1", "https://tec.openplanner.team/stops/Lvehout1"], ["https://tec.openplanner.team/stops/LHZbren1", "https://tec.openplanner.team/stops/LVefont1"], ["https://tec.openplanner.team/stops/H2lh132a", "https://tec.openplanner.team/stops/H2lh132b"], ["https://tec.openplanner.team/stops/X782alb", "https://tec.openplanner.team/stops/X782amb"], ["https://tec.openplanner.team/stops/Lrc594-2", "https://tec.openplanner.team/stops/Lvo60--1"], ["https://tec.openplanner.team/stops/N528ada", "https://tec.openplanner.team/stops/N528ava"], ["https://tec.openplanner.team/stops/X669agb", "https://tec.openplanner.team/stops/X669agd"], ["https://tec.openplanner.team/stops/Bpthfus1", "https://tec.openplanner.team/stops/Bpthfus2"], ["https://tec.openplanner.team/stops/Bnilhau1", "https://tec.openplanner.team/stops/Btsllnd1"], ["https://tec.openplanner.team/stops/X897aoa", "https://tec.openplanner.team/stops/X897aoc"], ["https://tec.openplanner.team/stops/H2fa105a", "https://tec.openplanner.team/stops/H2hg268c"], ["https://tec.openplanner.team/stops/LkEhatt1", "https://tec.openplanner.team/stops/LkEzoll1"], ["https://tec.openplanner.team/stops/H2hg150b", "https://tec.openplanner.team/stops/H2hg154f"], ["https://tec.openplanner.team/stops/H2ma208b", "https://tec.openplanner.team/stops/H2sb232a"], ["https://tec.openplanner.team/stops/H1ho140a", "https://tec.openplanner.team/stops/H1wa157a"], ["https://tec.openplanner.team/stops/Bnivhon2", "https://tec.openplanner.team/stops/Bnivpgr1"], ["https://tec.openplanner.team/stops/LPLhest1", "https://tec.openplanner.team/stops/LPLstat1"], ["https://tec.openplanner.team/stops/Bbst4br3", "https://tec.openplanner.team/stops/Cbtgemi1"], ["https://tec.openplanner.team/stops/LONcroi1", "https://tec.openplanner.team/stops/Ltheg--1"], ["https://tec.openplanner.team/stops/X634abb", "https://tec.openplanner.team/stops/X634ahb"], ["https://tec.openplanner.team/stops/Lhufila2", "https://tec.openplanner.team/stops/LPoxhav1"], ["https://tec.openplanner.team/stops/Ltiegl-*", "https://tec.openplanner.team/stops/Ltiegli2"], ["https://tec.openplanner.team/stops/Llgcurt1", "https://tec.openplanner.team/stops/Llghong2"], ["https://tec.openplanner.team/stops/X610aeb", "https://tec.openplanner.team/stops/X611aba"], ["https://tec.openplanner.team/stops/LFmcarr2", "https://tec.openplanner.team/stops/LMObouh1"], ["https://tec.openplanner.team/stops/H2hp123d", "https://tec.openplanner.team/stops/H2mo122d"], ["https://tec.openplanner.team/stops/Cflchap4", "https://tec.openplanner.team/stops/Cflmarc2"], ["https://tec.openplanner.team/stops/X604aca", "https://tec.openplanner.team/stops/X618aab"], ["https://tec.openplanner.team/stops/Cblbaiv1", "https://tec.openplanner.team/stops/Cblcent1"], ["https://tec.openplanner.team/stops/H1em110a", "https://tec.openplanner.team/stops/H1hl125b"], ["https://tec.openplanner.team/stops/H4lp124b", "https://tec.openplanner.team/stops/H4my123a"], ["https://tec.openplanner.team/stops/H5pe142b", "https://tec.openplanner.team/stops/H5pe153a"], ["https://tec.openplanner.team/stops/X750ara", "https://tec.openplanner.team/stops/X750axa"], ["https://tec.openplanner.team/stops/LAvcani1", "https://tec.openplanner.team/stops/LCIneuv1"], ["https://tec.openplanner.team/stops/Bbsiabb1", "https://tec.openplanner.team/stops/Bbsicen1"], ["https://tec.openplanner.team/stops/X713abb", "https://tec.openplanner.team/stops/X713anb"], ["https://tec.openplanner.team/stops/H1sg149b", "https://tec.openplanner.team/stops/H1te183a"], ["https://tec.openplanner.team/stops/Lhrdelv2", "https://tec.openplanner.team/stops/Lhrhome1"], ["https://tec.openplanner.team/stops/N162ada", "https://tec.openplanner.team/stops/N162afb"], ["https://tec.openplanner.team/stops/H1qu103a", "https://tec.openplanner.team/stops/H1qu116b"], ["https://tec.openplanner.team/stops/LAo170-2", "https://tec.openplanner.team/stops/LTPlegr1"], ["https://tec.openplanner.team/stops/LHMsipp1", "https://tec.openplanner.team/stops/LPbec--2"], ["https://tec.openplanner.team/stops/LAMgare2", "https://tec.openplanner.team/stops/LAMgreg1"], ["https://tec.openplanner.team/stops/Cacgare1", "https://tec.openplanner.team/stops/NC44aeb"], ["https://tec.openplanner.team/stops/N507alc", "https://tec.openplanner.team/stops/N507ald"], ["https://tec.openplanner.team/stops/N538akb", "https://tec.openplanner.team/stops/N538arb"], ["https://tec.openplanner.team/stops/LROhael2", "https://tec.openplanner.team/stops/LWaruth2"], ["https://tec.openplanner.team/stops/Ljubord2", "https://tec.openplanner.team/stops/Ljubrec3"], ["https://tec.openplanner.team/stops/H1sy137c", "https://tec.openplanner.team/stops/H1sy147a"], ["https://tec.openplanner.team/stops/LHcgare2", "https://tec.openplanner.team/stops/LSZgare2"], ["https://tec.openplanner.team/stops/H1gc122a", "https://tec.openplanner.team/stops/H1qy136a"], ["https://tec.openplanner.team/stops/Bmsaegl1", "https://tec.openplanner.team/stops/NB33afa"], ["https://tec.openplanner.team/stops/LLSba6-1", "https://tec.openplanner.team/stops/LLStrid3"], ["https://tec.openplanner.team/stops/X759aeb", "https://tec.openplanner.team/stops/X840abb"], ["https://tec.openplanner.team/stops/H1ju119a", "https://tec.openplanner.team/stops/H1ju120d"], ["https://tec.openplanner.team/stops/Cci4bra3", "https://tec.openplanner.team/stops/NC02apa"], ["https://tec.openplanner.team/stops/N150acb", "https://tec.openplanner.team/stops/N150aeb"], ["https://tec.openplanner.team/stops/Ljelexh1", "https://tec.openplanner.team/stops/Ljestat2"], ["https://tec.openplanner.team/stops/Clbchba1", "https://tec.openplanner.team/stops/Cthstre1"], ["https://tec.openplanner.team/stops/LTPbeau1", "https://tec.openplanner.team/stops/X777aab"], ["https://tec.openplanner.team/stops/Lhrmemo1", "https://tec.openplanner.team/stops/Lhrspi-2"], ["https://tec.openplanner.team/stops/LsTgren1", "https://tec.openplanner.team/stops/LwPdorf1"], ["https://tec.openplanner.team/stops/N506akb", "https://tec.openplanner.team/stops/N506bvb"], ["https://tec.openplanner.team/stops/N248aeb", "https://tec.openplanner.team/stops/N340aga"], ["https://tec.openplanner.team/stops/H4ve135a", "https://tec.openplanner.team/stops/H4ve140b"], ["https://tec.openplanner.team/stops/X659adb", "https://tec.openplanner.team/stops/X659aeb"], ["https://tec.openplanner.team/stops/N311aga", "https://tec.openplanner.team/stops/N312abb"], ["https://tec.openplanner.team/stops/LBUchpl1", "https://tec.openplanner.team/stops/LBUchpl2"], ["https://tec.openplanner.team/stops/LTIdonn2", "https://tec.openplanner.team/stops/LTIdumo1"], ["https://tec.openplanner.team/stops/X750aja", "https://tec.openplanner.team/stops/X750aka"], ["https://tec.openplanner.team/stops/H4au100b", "https://tec.openplanner.team/stops/H4bq102a"], ["https://tec.openplanner.team/stops/Ltibord2", "https://tec.openplanner.team/stops/Lticoq-1"], ["https://tec.openplanner.team/stops/X750aea", "https://tec.openplanner.team/stops/X750bmb"], ["https://tec.openplanner.team/stops/X804aia", "https://tec.openplanner.team/stops/X804ayb"], ["https://tec.openplanner.team/stops/Blsmbfe2", "https://tec.openplanner.team/stops/Bneervc1"], ["https://tec.openplanner.team/stops/LHHroua1", "https://tec.openplanner.team/stops/LSGmall1"], ["https://tec.openplanner.team/stops/Lglvand2", "https://tec.openplanner.team/stops/Llgchau2"], ["https://tec.openplanner.team/stops/X801acb", "https://tec.openplanner.team/stops/X801adb"], ["https://tec.openplanner.team/stops/Bquepla2", "https://tec.openplanner.team/stops/Bquesta1"], ["https://tec.openplanner.team/stops/Cmaduna1", "https://tec.openplanner.team/stops/Cmmptno1"], ["https://tec.openplanner.team/stops/H1mb137a", "https://tec.openplanner.team/stops/H1mb138a"], ["https://tec.openplanner.team/stops/X637ada", "https://tec.openplanner.team/stops/X637ala"], ["https://tec.openplanner.team/stops/Bosqcim1", "https://tec.openplanner.team/stops/Bvirduj2"], ["https://tec.openplanner.team/stops/N534arb", "https://tec.openplanner.team/stops/N534bfb"], ["https://tec.openplanner.team/stops/N874aaa", "https://tec.openplanner.team/stops/N894aab"], ["https://tec.openplanner.team/stops/LTPec--1", "https://tec.openplanner.team/stops/LTPplco2"], ["https://tec.openplanner.team/stops/N501gca", "https://tec.openplanner.team/stops/N501lkb"], ["https://tec.openplanner.team/stops/Bvilpar1", "https://tec.openplanner.team/stops/Bvilvil4"], ["https://tec.openplanner.team/stops/H3bi116a", "https://tec.openplanner.team/stops/H3bi116b"], ["https://tec.openplanner.team/stops/H1sb147b", "https://tec.openplanner.team/stops/H1sb149a"], ["https://tec.openplanner.team/stops/H4by115d", "https://tec.openplanner.team/stops/H4by117b"], ["https://tec.openplanner.team/stops/LHUetie*", "https://tec.openplanner.team/stops/LStroch2"], ["https://tec.openplanner.team/stops/Bsoihci2", "https://tec.openplanner.team/stops/H2na135b"], ["https://tec.openplanner.team/stops/LBOec--2", "https://tec.openplanner.team/stops/LBWbatt2"], ["https://tec.openplanner.team/stops/X601cia", "https://tec.openplanner.team/stops/X662aca"], ["https://tec.openplanner.team/stops/H2lc169a", "https://tec.openplanner.team/stops/H2lc172a"], ["https://tec.openplanner.team/stops/N203acb", "https://tec.openplanner.team/stops/N562ayb"], ["https://tec.openplanner.team/stops/N235abb", "https://tec.openplanner.team/stops/N235ada"], ["https://tec.openplanner.team/stops/Llgnaes1", "https://tec.openplanner.team/stops/Llgnani1"], ["https://tec.openplanner.team/stops/LlA43--2", "https://tec.openplanner.team/stops/LrUlasc1"], ["https://tec.openplanner.team/stops/Llgcour2", "https://tec.openplanner.team/stops/Llgdouf1"], ["https://tec.openplanner.team/stops/N352abb", "https://tec.openplanner.team/stops/N352ajb"], ["https://tec.openplanner.team/stops/Bwatcli2", "https://tec.openplanner.team/stops/Bwatcpl1"], ["https://tec.openplanner.team/stops/Ccugail2", "https://tec.openplanner.team/stops/Ccupres2"], ["https://tec.openplanner.team/stops/Llgcbat2", "https://tec.openplanner.team/stops/Llgstev1"], ["https://tec.openplanner.team/stops/LAyheid2", "https://tec.openplanner.team/stops/Lmapomm1"], ["https://tec.openplanner.team/stops/Lhrpepi1", "https://tec.openplanner.team/stops/Lhrpepi2"], ["https://tec.openplanner.team/stops/H4am101b", "https://tec.openplanner.team/stops/H4rs117b"], ["https://tec.openplanner.team/stops/X782aaa", "https://tec.openplanner.team/stops/X782aba"], ["https://tec.openplanner.team/stops/X601ata", "https://tec.openplanner.team/stops/X601atb"], ["https://tec.openplanner.team/stops/N135aub", "https://tec.openplanner.team/stops/N135ava"], ["https://tec.openplanner.team/stops/Bgdhbvu2", "https://tec.openplanner.team/stops/Bwaak101"], ["https://tec.openplanner.team/stops/LWecarr2", "https://tec.openplanner.team/stops/LWelogi2"], ["https://tec.openplanner.team/stops/N512ala", "https://tec.openplanner.team/stops/N512ava"], ["https://tec.openplanner.team/stops/Crsmonu2", "https://tec.openplanner.team/stops/Crswaut1"], ["https://tec.openplanner.team/stops/Lbhhomv1", "https://tec.openplanner.team/stops/Lbhsion1"], ["https://tec.openplanner.team/stops/LkEhaag2", "https://tec.openplanner.team/stops/LMspont1"], ["https://tec.openplanner.team/stops/N117bca", "https://tec.openplanner.team/stops/N117bcc"], ["https://tec.openplanner.team/stops/N120abb", "https://tec.openplanner.team/stops/N120aea"], ["https://tec.openplanner.team/stops/N521aba", "https://tec.openplanner.team/stops/N521aqb"], ["https://tec.openplanner.team/stops/LTgwarf1", "https://tec.openplanner.team/stops/LTgwarf2"], ["https://tec.openplanner.team/stops/LTPcamp1", "https://tec.openplanner.team/stops/LTPhenr1"], ["https://tec.openplanner.team/stops/X901bia", "https://tec.openplanner.team/stops/X901bja"], ["https://tec.openplanner.team/stops/Blkbbeu1", "https://tec.openplanner.team/stops/Bucceng2"], ["https://tec.openplanner.team/stops/H4ty273c", "https://tec.openplanner.team/stops/H4ty333b"], ["https://tec.openplanner.team/stops/N514amb", "https://tec.openplanner.team/stops/N515akb"], ["https://tec.openplanner.team/stops/H5at108b", "https://tec.openplanner.team/stops/H5at120a"], ["https://tec.openplanner.team/stops/N501dib", "https://tec.openplanner.team/stops/N501jtb"], ["https://tec.openplanner.team/stops/N234aaa", "https://tec.openplanner.team/stops/N234aab"], ["https://tec.openplanner.team/stops/N537aka", "https://tec.openplanner.team/stops/N556adb"], ["https://tec.openplanner.team/stops/N501kea", "https://tec.openplanner.team/stops/N501kpa"], ["https://tec.openplanner.team/stops/H1gg146a", "https://tec.openplanner.team/stops/H1ry134a"], ["https://tec.openplanner.team/stops/LCTcret1", "https://tec.openplanner.team/stops/LGmhumb1"], ["https://tec.openplanner.team/stops/LPbover2", "https://tec.openplanner.team/stops/LSIgera1"], ["https://tec.openplanner.team/stops/N501coa", "https://tec.openplanner.team/stops/N501cta"], ["https://tec.openplanner.team/stops/X917aga", "https://tec.openplanner.team/stops/X917agb"], ["https://tec.openplanner.team/stops/LkEcoop1", "https://tec.openplanner.team/stops/LkEspor1"], ["https://tec.openplanner.team/stops/X641aqa", "https://tec.openplanner.team/stops/X641aqb"], ["https://tec.openplanner.team/stops/X608acb", "https://tec.openplanner.team/stops/X608aja"], ["https://tec.openplanner.team/stops/N360aea", "https://tec.openplanner.team/stops/N894aea"], ["https://tec.openplanner.team/stops/Cpccpas1", "https://tec.openplanner.team/stops/Cpclibe2"], ["https://tec.openplanner.team/stops/N236afa", "https://tec.openplanner.team/stops/N254ada"], ["https://tec.openplanner.team/stops/LHAstal1", "https://tec.openplanner.team/stops/LHAstal2"], ["https://tec.openplanner.team/stops/H4ro157b", "https://tec.openplanner.team/stops/H5pe153b"], ["https://tec.openplanner.team/stops/Cgzhour2", "https://tec.openplanner.team/stops/Clrrhau1"], ["https://tec.openplanner.team/stops/Cthbeff1", "https://tec.openplanner.team/stops/Cthoues2"], ["https://tec.openplanner.team/stops/Cchhopi4", "https://tec.openplanner.team/stops/Cmtpire1"], ["https://tec.openplanner.team/stops/LEBmoul1", "https://tec.openplanner.team/stops/LWOwonc2"], ["https://tec.openplanner.team/stops/X739acb", "https://tec.openplanner.team/stops/X739ada"], ["https://tec.openplanner.team/stops/LBEairp1", "https://tec.openplanner.team/stops/LBEcomm1"], ["https://tec.openplanner.team/stops/Lcceclu2", "https://tec.openplanner.team/stops/LRAcouv1"], ["https://tec.openplanner.team/stops/H1og130b", "https://tec.openplanner.team/stops/H1og132b"], ["https://tec.openplanner.team/stops/X983aaa", "https://tec.openplanner.team/stops/X983aab"], ["https://tec.openplanner.team/stops/H1do127a", "https://tec.openplanner.team/stops/H1do127b"], ["https://tec.openplanner.team/stops/Livgera1", "https://tec.openplanner.team/stops/Livgera2"], ["https://tec.openplanner.team/stops/Bwavcen1", "https://tec.openplanner.team/stops/Bwavpao1"], ["https://tec.openplanner.team/stops/X662ara", "https://tec.openplanner.team/stops/X662arb"], ["https://tec.openplanner.team/stops/Bwavnam2", "https://tec.openplanner.team/stops/Bwavnam3"], ["https://tec.openplanner.team/stops/Lghmaha1", "https://tec.openplanner.team/stops/Lghpier1"], ["https://tec.openplanner.team/stops/N501aob", "https://tec.openplanner.team/stops/N501fjb"], ["https://tec.openplanner.team/stops/Csepost1", "https://tec.openplanner.team/stops/Cvtchap2"], ["https://tec.openplanner.team/stops/N232baa", "https://tec.openplanner.team/stops/N232bab"], ["https://tec.openplanner.team/stops/Lagarde1", "https://tec.openplanner.team/stops/Lgrgoff2"], ["https://tec.openplanner.team/stops/H4fr389a", "https://tec.openplanner.team/stops/H4ka393a"], ["https://tec.openplanner.team/stops/LLagert*", "https://tec.openplanner.team/stops/LWAbett2"], ["https://tec.openplanner.team/stops/Cwfdupo1", "https://tec.openplanner.team/stops/Cwfmonu2"], ["https://tec.openplanner.team/stops/LLUgend2", "https://tec.openplanner.team/stops/LLUpier2"], ["https://tec.openplanner.team/stops/N528aqb", "https://tec.openplanner.team/stops/N528asb"], ["https://tec.openplanner.team/stops/N201agb", "https://tec.openplanner.team/stops/N201awa"], ["https://tec.openplanner.team/stops/LBkwind1", "https://tec.openplanner.team/stops/LWEmito2"], ["https://tec.openplanner.team/stops/Louetan2", "https://tec.openplanner.team/stops/Louvand2"], ["https://tec.openplanner.team/stops/Cvtgsar3", "https://tec.openplanner.team/stops/Cvtvail2"], ["https://tec.openplanner.team/stops/LAvambr1", "https://tec.openplanner.team/stops/LAvcani1"], ["https://tec.openplanner.team/stops/LRCviad2", "https://tec.openplanner.team/stops/LSTamer2"], ["https://tec.openplanner.team/stops/Lmlscie1", "https://tec.openplanner.team/stops/Lmlscie2"], ["https://tec.openplanner.team/stops/LAvatri2", "https://tec.openplanner.team/stops/NL37ala"], ["https://tec.openplanner.team/stops/N141adb", "https://tec.openplanner.team/stops/N141aeb"], ["https://tec.openplanner.team/stops/Ceqcfra2", "https://tec.openplanner.team/stops/H1er113b"], ["https://tec.openplanner.team/stops/Bbstchv1", "https://tec.openplanner.team/stops/Bvlvpco1"], ["https://tec.openplanner.team/stops/X614axb", "https://tec.openplanner.team/stops/X614ayb"], ["https://tec.openplanner.team/stops/LBRtrag2", "https://tec.openplanner.team/stops/LLTeg--1"], ["https://tec.openplanner.team/stops/Cjucar02", "https://tec.openplanner.team/stops/CMleop2"], ["https://tec.openplanner.team/stops/Bitrpri2", "https://tec.openplanner.team/stops/Bosqpqu1"], ["https://tec.openplanner.team/stops/N543ajb", "https://tec.openplanner.team/stops/N543awg"], ["https://tec.openplanner.team/stops/LJUxhen2", "https://tec.openplanner.team/stops/Llaflot2"], ["https://tec.openplanner.team/stops/Cjucpui2", "https://tec.openplanner.team/stops/Cjupuis1"], ["https://tec.openplanner.team/stops/Lbhhomv1", "https://tec.openplanner.team/stops/Lvcdumo2"], ["https://tec.openplanner.team/stops/H2hp116b", "https://tec.openplanner.team/stops/H2ll179a"], ["https://tec.openplanner.team/stops/Bmrleco4", "https://tec.openplanner.team/stops/Bmrlegl1"], ["https://tec.openplanner.team/stops/H1ev112a", "https://tec.openplanner.team/stops/H1ev112b"], ["https://tec.openplanner.team/stops/Bgembsg1", "https://tec.openplanner.team/stops/Bgemfbo2"], ["https://tec.openplanner.team/stops/X774aeb", "https://tec.openplanner.team/stops/X774aec"], ["https://tec.openplanner.team/stops/LMAcime1", "https://tec.openplanner.team/stops/LMAcime2"], ["https://tec.openplanner.team/stops/LvAkirc3", "https://tec.openplanner.team/stops/LvAkirc4"], ["https://tec.openplanner.team/stops/LHCbois1", "https://tec.openplanner.team/stops/LHCbois2"], ["https://tec.openplanner.team/stops/Cgosoux2", "https://tec.openplanner.team/stops/Cjuaero2"], ["https://tec.openplanner.team/stops/X650aca", "https://tec.openplanner.team/stops/X650ahb"], ["https://tec.openplanner.team/stops/X743adb", "https://tec.openplanner.team/stops/X743agb"], ["https://tec.openplanner.team/stops/N512aqb", "https://tec.openplanner.team/stops/N512atc"], ["https://tec.openplanner.team/stops/X733aca", "https://tec.openplanner.team/stops/X733aeb"], ["https://tec.openplanner.team/stops/Ccucora2", "https://tec.openplanner.team/stops/Ccucorb3"], ["https://tec.openplanner.team/stops/H1ol137b", "https://tec.openplanner.team/stops/H1ol145a"], ["https://tec.openplanner.team/stops/Cfaheni1", "https://tec.openplanner.team/stops/Cpl4bra3"], ["https://tec.openplanner.team/stops/Clodrio2", "https://tec.openplanner.team/stops/Clomart1"], ["https://tec.openplanner.team/stops/X361aca", "https://tec.openplanner.team/stops/X362adb"], ["https://tec.openplanner.team/stops/Cgzrust1", "https://tec.openplanner.team/stops/Cgzrust2"], ["https://tec.openplanner.team/stops/LeYwess1", "https://tec.openplanner.team/stops/LlCauto2"], ["https://tec.openplanner.team/stops/H4mo147a", "https://tec.openplanner.team/stops/H4mo180a"], ["https://tec.openplanner.team/stops/N166acb", "https://tec.openplanner.team/stops/N167aea"], ["https://tec.openplanner.team/stops/Bnivrsa2", "https://tec.openplanner.team/stops/Bnivsba2"], ["https://tec.openplanner.team/stops/H1ci102a", "https://tec.openplanner.team/stops/H1cu113a"], ["https://tec.openplanner.team/stops/Lfhgara1", "https://tec.openplanner.team/stops/Lpomart2"], ["https://tec.openplanner.team/stops/N528aca", "https://tec.openplanner.team/stops/N528awa"], ["https://tec.openplanner.team/stops/N104ada", "https://tec.openplanner.team/stops/N104adb"], ["https://tec.openplanner.team/stops/X602aka", "https://tec.openplanner.team/stops/X653aca"], ["https://tec.openplanner.team/stops/X654aea", "https://tec.openplanner.team/stops/X654akb"], ["https://tec.openplanner.team/stops/Bsomtce1", "https://tec.openplanner.team/stops/Btgrdoc1"], ["https://tec.openplanner.team/stops/LSdbote2", "https://tec.openplanner.team/stops/LSdsar51"], ["https://tec.openplanner.team/stops/LLTfall2", "https://tec.openplanner.team/stops/LLThosd2"], ["https://tec.openplanner.team/stops/Cmecomb1", "https://tec.openplanner.team/stops/Cmesncv1"], ["https://tec.openplanner.team/stops/LWeatel1", "https://tec.openplanner.team/stops/LWecarr2"], ["https://tec.openplanner.team/stops/X954adb", "https://tec.openplanner.team/stops/X955agb"], ["https://tec.openplanner.team/stops/X629aba", "https://tec.openplanner.team/stops/X636arb"], ["https://tec.openplanner.team/stops/LROhaie1", "https://tec.openplanner.team/stops/LSoeg--1"], ["https://tec.openplanner.team/stops/Cptegli2", "https://tec.openplanner.team/stops/Cptplac5"], ["https://tec.openplanner.team/stops/N501bcb", "https://tec.openplanner.team/stops/N501mcc"], ["https://tec.openplanner.team/stops/Cmtcapi1", "https://tec.openplanner.team/stops/Cmtgrim1"], ["https://tec.openplanner.team/stops/LWamass1", "https://tec.openplanner.team/stops/LWastei2"], ["https://tec.openplanner.team/stops/LCn4---2", "https://tec.openplanner.team/stops/LSEcent1"], ["https://tec.openplanner.team/stops/X752acb", "https://tec.openplanner.team/stops/X757aca"], ["https://tec.openplanner.team/stops/H2sb232a", "https://tec.openplanner.team/stops/H3th135e"], ["https://tec.openplanner.team/stops/Brsgsan1", "https://tec.openplanner.team/stops/Buccptj2"], ["https://tec.openplanner.team/stops/Llgbry-1", "https://tec.openplanner.team/stops/Llgvolg2"], ["https://tec.openplanner.team/stops/N312abb", "https://tec.openplanner.team/stops/N312acb"], ["https://tec.openplanner.team/stops/LLrhest1", "https://tec.openplanner.team/stops/LLrlour2"], ["https://tec.openplanner.team/stops/LCsbors2", "https://tec.openplanner.team/stops/LCscarr3"], ["https://tec.openplanner.team/stops/H4ve135b", "https://tec.openplanner.team/stops/H4ve137b"], ["https://tec.openplanner.team/stops/X636aka", "https://tec.openplanner.team/stops/X636aza"], ["https://tec.openplanner.team/stops/Cgorobe2", "https://tec.openplanner.team/stops/Ctmmonu1"], ["https://tec.openplanner.team/stops/Lflcle-4", "https://tec.openplanner.team/stops/Lflpaeu1"], ["https://tec.openplanner.team/stops/LAUnico1", "https://tec.openplanner.team/stops/LAUnico2"], ["https://tec.openplanner.team/stops/Ccocoup2", "https://tec.openplanner.team/stops/Crowilb2"], ["https://tec.openplanner.team/stops/LCxcouv2", "https://tec.openplanner.team/stops/LCxross2"], ["https://tec.openplanner.team/stops/X609aja", "https://tec.openplanner.team/stops/X609akb"], ["https://tec.openplanner.team/stops/X917ahb", "https://tec.openplanner.team/stops/X922afa"], ["https://tec.openplanner.team/stops/Lmopeup2", "https://tec.openplanner.team/stops/Lmopota2"], ["https://tec.openplanner.team/stops/LAYcher2", "https://tec.openplanner.team/stops/LFLgara2"], ["https://tec.openplanner.team/stops/X398aab", "https://tec.openplanner.team/stops/X999aqb"], ["https://tec.openplanner.team/stops/Bgrhche1", "https://tec.openplanner.team/stops/N519agb"], ["https://tec.openplanner.team/stops/LrDneun2", "https://tec.openplanner.team/stops/LrDzoll3"], ["https://tec.openplanner.team/stops/Bblaaca1", "https://tec.openplanner.team/stops/Bblatet1"], ["https://tec.openplanner.team/stops/X723aaa", "https://tec.openplanner.team/stops/X775alb"], ["https://tec.openplanner.team/stops/X662aga", "https://tec.openplanner.team/stops/X662anb"], ["https://tec.openplanner.team/stops/Cculpre1", "https://tec.openplanner.team/stops/Cculpre2"], ["https://tec.openplanner.team/stops/H2re175a", "https://tec.openplanner.team/stops/H2re175b"], ["https://tec.openplanner.team/stops/Cmlchan1", "https://tec.openplanner.team/stops/Cmltomb1"], ["https://tec.openplanner.team/stops/N229arb", "https://tec.openplanner.team/stops/N230abb"], ["https://tec.openplanner.team/stops/LPLcent2", "https://tec.openplanner.team/stops/LPLecco2"], ["https://tec.openplanner.team/stops/H1sg148a", "https://tec.openplanner.team/stops/H1sg148b"], ["https://tec.openplanner.team/stops/LVNbale2", "https://tec.openplanner.team/stops/LVNwanz2"], ["https://tec.openplanner.team/stops/Cctpass2", "https://tec.openplanner.team/stops/Cctptsa1"], ["https://tec.openplanner.team/stops/H1hm173b", "https://tec.openplanner.team/stops/H1hm175b"], ["https://tec.openplanner.team/stops/Lrcchpl2", "https://tec.openplanner.team/stops/Lrccime3"], ["https://tec.openplanner.team/stops/X953aea", "https://tec.openplanner.team/stops/X953aeb"], ["https://tec.openplanner.team/stops/H4mo153d", "https://tec.openplanner.team/stops/H4mo163a"], ["https://tec.openplanner.team/stops/Bwatfva2", "https://tec.openplanner.team/stops/Bwatgla1"], ["https://tec.openplanner.team/stops/H2tr253a", "https://tec.openplanner.team/stops/H2tr253b"], ["https://tec.openplanner.team/stops/Lbhgare2", "https://tec.openplanner.team/stops/LMFmerl1"], ["https://tec.openplanner.team/stops/Ljewale4", "https://tec.openplanner.team/stops/Ljexhav2"], ["https://tec.openplanner.team/stops/Crsaise4", "https://tec.openplanner.team/stops/Crswaut1"], ["https://tec.openplanner.team/stops/N141abb", "https://tec.openplanner.team/stops/N141apb"], ["https://tec.openplanner.team/stops/LESgare*", "https://tec.openplanner.team/stops/LESpaix1"], ["https://tec.openplanner.team/stops/Llgcock2", "https://tec.openplanner.team/stops/Llgcroi4"], ["https://tec.openplanner.team/stops/LBIairp2", "https://tec.openplanner.team/stops/Lghlogi2"], ["https://tec.openplanner.team/stops/Canecbr2", "https://tec.openplanner.team/stops/Canegbr2"], ["https://tec.openplanner.team/stops/Cgocolo1", "https://tec.openplanner.team/stops/Cgorosa3"], ["https://tec.openplanner.team/stops/LWAchpg1", "https://tec.openplanner.team/stops/LWAcost2"], ["https://tec.openplanner.team/stops/H4lz117a", "https://tec.openplanner.team/stops/H4lz128b"], ["https://tec.openplanner.team/stops/H5fl101a", "https://tec.openplanner.team/stops/H5fl102b"], ["https://tec.openplanner.team/stops/X908ana", "https://tec.openplanner.team/stops/X955aca"], ["https://tec.openplanner.team/stops/H5qu147a", "https://tec.openplanner.team/stops/H5qu150a"], ["https://tec.openplanner.team/stops/LaAronh2", "https://tec.openplanner.team/stops/LhGscha*"], ["https://tec.openplanner.team/stops/X758afa", "https://tec.openplanner.team/stops/X758aga"], ["https://tec.openplanner.team/stops/Cfrcoop3", "https://tec.openplanner.team/stops/Cfrcoop4"], ["https://tec.openplanner.team/stops/Csocime1", "https://tec.openplanner.team/stops/Ctrepin1"], ["https://tec.openplanner.team/stops/Bborbif2", "https://tec.openplanner.team/stops/Bmoncab2"], ["https://tec.openplanner.team/stops/Lfhcime2", "https://tec.openplanner.team/stops/Lmlcite*"], ["https://tec.openplanner.team/stops/X607akb", "https://tec.openplanner.team/stops/X620agb"], ["https://tec.openplanner.team/stops/H1je366a", "https://tec.openplanner.team/stops/H1je368a"], ["https://tec.openplanner.team/stops/X879aqa", "https://tec.openplanner.team/stops/X879aqb"], ["https://tec.openplanner.team/stops/Bwbfckr1", "https://tec.openplanner.team/stops/Bwbfgar2"], ["https://tec.openplanner.team/stops/N551aeb", "https://tec.openplanner.team/stops/N551aqb"], ["https://tec.openplanner.team/stops/LHEbeau1", "https://tec.openplanner.team/stops/LHEchex2"], ["https://tec.openplanner.team/stops/Cchparc5", "https://tec.openplanner.team/stops/CMparc1"], ["https://tec.openplanner.team/stops/LACeg--2", "https://tec.openplanner.team/stops/LACwass2"], ["https://tec.openplanner.team/stops/N151aba", "https://tec.openplanner.team/stops/N152abe"], ["https://tec.openplanner.team/stops/N337aha", "https://tec.openplanner.team/stops/N339aab"], ["https://tec.openplanner.team/stops/Bbchcab2", "https://tec.openplanner.team/stops/Bbchrra2"], ["https://tec.openplanner.team/stops/N528ama", "https://tec.openplanner.team/stops/N528amb"], ["https://tec.openplanner.team/stops/Lceleje1", "https://tec.openplanner.team/stops/Lceleje2"], ["https://tec.openplanner.team/stops/H1bu136a", "https://tec.openplanner.team/stops/H1vb142a"], ["https://tec.openplanner.team/stops/H1ca106c", "https://tec.openplanner.team/stops/H1th183a"], ["https://tec.openplanner.team/stops/H1br128a", "https://tec.openplanner.team/stops/H1ev116b"], ["https://tec.openplanner.team/stops/Bsmgmas2", "https://tec.openplanner.team/stops/Btanpla3"], ["https://tec.openplanner.team/stops/X660ada", "https://tec.openplanner.team/stops/X660ajb"], ["https://tec.openplanner.team/stops/X731aga", "https://tec.openplanner.team/stops/X731aha"], ["https://tec.openplanner.team/stops/X615ava", "https://tec.openplanner.team/stops/X615bga"], ["https://tec.openplanner.team/stops/H4ch113b", "https://tec.openplanner.team/stops/H4cl113b"], ["https://tec.openplanner.team/stops/LSZmonu4", "https://tec.openplanner.team/stops/LTgcime2"], ["https://tec.openplanner.team/stops/H4mv190a", "https://tec.openplanner.team/stops/H4mv194b"], ["https://tec.openplanner.team/stops/LLWchat1", "https://tec.openplanner.team/stops/LLWpier1"], ["https://tec.openplanner.team/stops/NL76aka", "https://tec.openplanner.team/stops/NL77aha"], ["https://tec.openplanner.team/stops/X733aab", "https://tec.openplanner.team/stops/X733abb"], ["https://tec.openplanner.team/stops/X741aga", "https://tec.openplanner.team/stops/X741apa"], ["https://tec.openplanner.team/stops/LBJlieg2", "https://tec.openplanner.team/stops/LBrneli1"], ["https://tec.openplanner.team/stops/Clvimtr3", "https://tec.openplanner.team/stops/Clvimtr4"], ["https://tec.openplanner.team/stops/X359aja", "https://tec.openplanner.team/stops/X359amb"], ["https://tec.openplanner.team/stops/LmTkirc1", "https://tec.openplanner.team/stops/LmTreic1"], ["https://tec.openplanner.team/stops/N313aba", "https://tec.openplanner.team/stops/N350ada"], ["https://tec.openplanner.team/stops/X622aca", "https://tec.openplanner.team/stops/X622acb"], ["https://tec.openplanner.team/stops/LWDchab1", "https://tec.openplanner.team/stops/LWDcime2"], ["https://tec.openplanner.team/stops/N244aab", "https://tec.openplanner.team/stops/N244afb"], ["https://tec.openplanner.team/stops/LCljose2", "https://tec.openplanner.team/stops/LThelse1"], ["https://tec.openplanner.team/stops/LRRchea2", "https://tec.openplanner.team/stops/LRRchea6"], ["https://tec.openplanner.team/stops/LAMgreg1", "https://tec.openplanner.team/stops/LAMjaur2"], ["https://tec.openplanner.team/stops/H4bc104b", "https://tec.openplanner.team/stops/H5bl116b"], ["https://tec.openplanner.team/stops/X773aea", "https://tec.openplanner.team/stops/X773afb"], ["https://tec.openplanner.team/stops/X922ada", "https://tec.openplanner.team/stops/X922aea"], ["https://tec.openplanner.team/stops/X614aha", "https://tec.openplanner.team/stops/X614atb"], ["https://tec.openplanner.team/stops/Bbrycar1", "https://tec.openplanner.team/stops/N584aza"], ["https://tec.openplanner.team/stops/Cvvmonu2", "https://tec.openplanner.team/stops/Cvvpotv2"], ["https://tec.openplanner.team/stops/LPtrefa2", "https://tec.openplanner.team/stops/LrEgend2"], ["https://tec.openplanner.team/stops/LdEschw1", "https://tec.openplanner.team/stops/LdEschw2"], ["https://tec.openplanner.team/stops/Cwgrans2", "https://tec.openplanner.team/stops/Cwgtill2"], ["https://tec.openplanner.team/stops/N571afa", "https://tec.openplanner.team/stops/N571afb"], ["https://tec.openplanner.team/stops/N161abc", "https://tec.openplanner.team/stops/N161afa"], ["https://tec.openplanner.team/stops/H4tm140b", "https://tec.openplanner.team/stops/H4to139a"], ["https://tec.openplanner.team/stops/LHarenn1", "https://tec.openplanner.team/stops/LOurena1"], ["https://tec.openplanner.team/stops/X839ada", "https://tec.openplanner.team/stops/X839adb"], ["https://tec.openplanner.team/stops/Bsaucre1", "https://tec.openplanner.team/stops/N541aaa"], ["https://tec.openplanner.team/stops/Bettcha2", "https://tec.openplanner.team/stops/Bettcha3"], ["https://tec.openplanner.team/stops/Loucham1", "https://tec.openplanner.team/stops/Loucham2"], ["https://tec.openplanner.team/stops/N533ada", "https://tec.openplanner.team/stops/N568acb"], ["https://tec.openplanner.team/stops/X626aga", "https://tec.openplanner.team/stops/X626agb"], ["https://tec.openplanner.team/stops/N137adb", "https://tec.openplanner.team/stops/N155aec"], ["https://tec.openplanner.team/stops/X839aca", "https://tec.openplanner.team/stops/X839acb"], ["https://tec.openplanner.team/stops/Cmmcime1", "https://tec.openplanner.team/stops/Cmmp2052"], ["https://tec.openplanner.team/stops/X982baa", "https://tec.openplanner.team/stops/X982bab"], ["https://tec.openplanner.team/stops/X801ata", "https://tec.openplanner.team/stops/X801cib"], ["https://tec.openplanner.team/stops/H2ec106a", "https://tec.openplanner.team/stops/H2me113b"], ["https://tec.openplanner.team/stops/Cgocat2", "https://tec.openplanner.team/stops/Cgoetun5"], ["https://tec.openplanner.team/stops/Cgoloca1", "https://tec.openplanner.team/stops/Cgosoux1"], ["https://tec.openplanner.team/stops/Clusncb4", "https://tec.openplanner.team/stops/H2lu100d"], ["https://tec.openplanner.team/stops/Lcapisc2", "https://tec.openplanner.team/stops/Lvcchau1"], ["https://tec.openplanner.team/stops/N351ala", "https://tec.openplanner.team/stops/X351aob"], ["https://tec.openplanner.team/stops/H4re226a", "https://tec.openplanner.team/stops/H5la177b"], ["https://tec.openplanner.team/stops/LLzcruc2", "https://tec.openplanner.team/stops/LPTeg--2"], ["https://tec.openplanner.team/stops/X896afa", "https://tec.openplanner.team/stops/X896aga"], ["https://tec.openplanner.team/stops/LMalarg4", "https://tec.openplanner.team/stops/LMaslav4"], ["https://tec.openplanner.team/stops/H1ro135b", "https://tec.openplanner.team/stops/H1ro138b"], ["https://tec.openplanner.team/stops/N535acb", "https://tec.openplanner.team/stops/N535acc"], ["https://tec.openplanner.team/stops/Bmarcat2", "https://tec.openplanner.team/stops/Bwagdeb2"], ["https://tec.openplanner.team/stops/X985aab", "https://tec.openplanner.team/stops/X985abb"], ["https://tec.openplanner.team/stops/Bgnteco1", "https://tec.openplanner.team/stops/Bsgeegl2"], ["https://tec.openplanner.team/stops/LChvill*", "https://tec.openplanner.team/stops/LChxhav1"], ["https://tec.openplanner.team/stops/H1ho128a", "https://tec.openplanner.team/stops/H1ho130a"], ["https://tec.openplanner.team/stops/LCpeg-*", "https://tec.openplanner.team/stops/LCpvill2"], ["https://tec.openplanner.team/stops/H4ty356a", "https://tec.openplanner.team/stops/H4ty356b"], ["https://tec.openplanner.team/stops/N501ama", "https://tec.openplanner.team/stops/N501amb"], ["https://tec.openplanner.team/stops/Cmastfi1", "https://tec.openplanner.team/stops/Cmastfi2"], ["https://tec.openplanner.team/stops/N127aja", "https://tec.openplanner.team/stops/N127bja"], ["https://tec.openplanner.team/stops/H1gy112b", "https://tec.openplanner.team/stops/H1gy113b"], ["https://tec.openplanner.team/stops/N501lgb", "https://tec.openplanner.team/stops/N501lmb"], ["https://tec.openplanner.team/stops/LSUhage2", "https://tec.openplanner.team/stops/LSUvill1"], ["https://tec.openplanner.team/stops/Bcsebde1", "https://tec.openplanner.team/stops/Bcsepes1"], ["https://tec.openplanner.team/stops/Ladjaur2", "https://tec.openplanner.team/stops/Ladthom1"], ["https://tec.openplanner.team/stops/X948aab", "https://tec.openplanner.team/stops/X948bba"], ["https://tec.openplanner.team/stops/N528adb", "https://tec.openplanner.team/stops/N528arb"], ["https://tec.openplanner.team/stops/Cmogrbu2", "https://tec.openplanner.team/stops/Cmoprov2"], ["https://tec.openplanner.team/stops/LENcroi2", "https://tec.openplanner.team/stops/LENpt--2"], ["https://tec.openplanner.team/stops/N506aoa", "https://tec.openplanner.team/stops/N506apa"], ["https://tec.openplanner.team/stops/X657aha", "https://tec.openplanner.team/stops/X657ahb"], ["https://tec.openplanner.team/stops/X742aaa", "https://tec.openplanner.team/stops/X742aba"], ["https://tec.openplanner.team/stops/Cflfaub1", "https://tec.openplanner.team/stops/Cflgazo1"], ["https://tec.openplanner.team/stops/H4lz121d", "https://tec.openplanner.team/stops/H4lz126a"], ["https://tec.openplanner.team/stops/Ctarpoi2", "https://tec.openplanner.team/stops/N543cha"], ["https://tec.openplanner.team/stops/Baudhde1", "https://tec.openplanner.team/stops/Bwbfeta2"], ["https://tec.openplanner.team/stops/X601ajb", "https://tec.openplanner.team/stops/X601ama"], ["https://tec.openplanner.team/stops/LPRbrou2", "https://tec.openplanner.team/stops/LPRpeti1"], ["https://tec.openplanner.team/stops/LSebott2", "https://tec.openplanner.team/stops/LSevitu2"], ["https://tec.openplanner.team/stops/Cjucar01", "https://tec.openplanner.team/stops/Cjuhopi1"], ["https://tec.openplanner.team/stops/NC14aca", "https://tec.openplanner.team/stops/NC14acb"], ["https://tec.openplanner.team/stops/LMazonn3", "https://tec.openplanner.team/stops/LMazonn4"], ["https://tec.openplanner.team/stops/LCRabbe2", "https://tec.openplanner.team/stops/LCRvert1"], ["https://tec.openplanner.team/stops/Bhancom1", "https://tec.openplanner.team/stops/Bhancom2"], ["https://tec.openplanner.team/stops/X811apb", "https://tec.openplanner.team/stops/X812bba"], ["https://tec.openplanner.team/stops/X818aia", "https://tec.openplanner.team/stops/X818aib"], ["https://tec.openplanner.team/stops/Bjanegl1", "https://tec.openplanner.team/stops/Bjanegl3"], ["https://tec.openplanner.team/stops/X911aea", "https://tec.openplanner.team/stops/X912aja"], ["https://tec.openplanner.team/stops/LBzec--1", "https://tec.openplanner.team/stops/LCelabi2"], ["https://tec.openplanner.team/stops/X715ada", "https://tec.openplanner.team/stops/X715alb"], ["https://tec.openplanner.team/stops/N533alb", "https://tec.openplanner.team/stops/N533aoa"], ["https://tec.openplanner.team/stops/LSkbo832", "https://tec.openplanner.team/stops/LSkmarq2"], ["https://tec.openplanner.team/stops/Bvxgeta1", "https://tec.openplanner.team/stops/Cgnquer2"], ["https://tec.openplanner.team/stops/H2se109a", "https://tec.openplanner.team/stops/H2se115a"], ["https://tec.openplanner.team/stops/H4ty347b", "https://tec.openplanner.team/stops/H4ty351b"], ["https://tec.openplanner.team/stops/LBlhaut2", "https://tec.openplanner.team/stops/LLUpier1"], ["https://tec.openplanner.team/stops/N562aca", "https://tec.openplanner.team/stops/N562ahb"], ["https://tec.openplanner.team/stops/Cpccoss2", "https://tec.openplanner.team/stops/Cpctunn1"], ["https://tec.openplanner.team/stops/Lhutann2", "https://tec.openplanner.team/stops/Lmneg--2"], ["https://tec.openplanner.team/stops/Bgrmpsn2", "https://tec.openplanner.team/stops/N522atb"], ["https://tec.openplanner.team/stops/Cmmjami3", "https://tec.openplanner.team/stops/Cmmjami4"], ["https://tec.openplanner.team/stops/LHTmc--1", "https://tec.openplanner.team/stops/LHTmc--2"], ["https://tec.openplanner.team/stops/H5pe127a", "https://tec.openplanner.team/stops/H5pe137a"], ["https://tec.openplanner.team/stops/LGEcons1", "https://tec.openplanner.team/stops/LGEpt--1"], ["https://tec.openplanner.team/stops/X717aha", "https://tec.openplanner.team/stops/X783aaa"], ["https://tec.openplanner.team/stops/H1fl142b", "https://tec.openplanner.team/stops/H1fr114a"], ["https://tec.openplanner.team/stops/LPAeg--2", "https://tec.openplanner.team/stops/LPAmc--2"], ["https://tec.openplanner.team/stops/H1gh160b", "https://tec.openplanner.team/stops/H1gh165c"], ["https://tec.openplanner.team/stops/LnErech1", "https://tec.openplanner.team/stops/LrEfeck1"], ["https://tec.openplanner.team/stops/Brsgm801", "https://tec.openplanner.team/stops/Bwatmch1"], ["https://tec.openplanner.team/stops/H1hv135a", "https://tec.openplanner.team/stops/H1hv135b"], ["https://tec.openplanner.team/stops/H2hp114b", "https://tec.openplanner.team/stops/H2hp118a"], ["https://tec.openplanner.team/stops/Cchbaza1", "https://tec.openplanner.team/stops/Cchvil21"], ["https://tec.openplanner.team/stops/H1fr109b", "https://tec.openplanner.team/stops/H1fr128b"], ["https://tec.openplanner.team/stops/H4ro154b", "https://tec.openplanner.team/stops/H4ro157a"], ["https://tec.openplanner.team/stops/X943aab", "https://tec.openplanner.team/stops/X943aha"], ["https://tec.openplanner.team/stops/H4te252b", "https://tec.openplanner.team/stops/H4te259a"], ["https://tec.openplanner.team/stops/X811aoa", "https://tec.openplanner.team/stops/X812bba"], ["https://tec.openplanner.team/stops/N229aca", "https://tec.openplanner.team/stops/N229aqa"], ["https://tec.openplanner.team/stops/H4pe124b", "https://tec.openplanner.team/stops/H4pe126a"], ["https://tec.openplanner.team/stops/X904aga", "https://tec.openplanner.team/stops/X943afa"], ["https://tec.openplanner.team/stops/N501hob", "https://tec.openplanner.team/stops/N501hqb"], ["https://tec.openplanner.team/stops/LlZbell1", "https://tec.openplanner.team/stops/LlZkirc2"], ["https://tec.openplanner.team/stops/Lsmgdry1", "https://tec.openplanner.team/stops/Lvereno1"], ["https://tec.openplanner.team/stops/N423aab", "https://tec.openplanner.team/stops/N423aeb"], ["https://tec.openplanner.team/stops/N141aha", "https://tec.openplanner.team/stops/N141ahb"], ["https://tec.openplanner.team/stops/N537aia", "https://tec.openplanner.team/stops/N537aib"], ["https://tec.openplanner.team/stops/H1hy144a", "https://tec.openplanner.team/stops/H1qy137b"], ["https://tec.openplanner.team/stops/Lflprev2", "https://tec.openplanner.team/stops/LMFmoul2"], ["https://tec.openplanner.team/stops/N351aka", "https://tec.openplanner.team/stops/N351avb"], ["https://tec.openplanner.team/stops/N550aga", "https://tec.openplanner.team/stops/N550akb"], ["https://tec.openplanner.team/stops/H4ne132b", "https://tec.openplanner.team/stops/H4ne137b"], ["https://tec.openplanner.team/stops/N229apa", "https://tec.openplanner.team/stops/N231aba"], ["https://tec.openplanner.team/stops/Btslcej2", "https://tec.openplanner.team/stops/Btslegl2"], ["https://tec.openplanner.team/stops/X756aab", "https://tec.openplanner.team/stops/X756aba"], ["https://tec.openplanner.team/stops/Bgzdgst2", "https://tec.openplanner.team/stops/Bgzdgth1"], ["https://tec.openplanner.team/stops/X948baa", "https://tec.openplanner.team/stops/X948bab"], ["https://tec.openplanner.team/stops/H4ob108a", "https://tec.openplanner.team/stops/H4rc234a"], ["https://tec.openplanner.team/stops/Llgfran2", "https://tec.openplanner.team/stops/Llgpara2"], ["https://tec.openplanner.team/stops/LLxeclu1", "https://tec.openplanner.team/stops/LVIvert2"], ["https://tec.openplanner.team/stops/LCUmora2", "https://tec.openplanner.team/stops/LCUthie1"], ["https://tec.openplanner.team/stops/N207ada", "https://tec.openplanner.team/stops/N209aaa"], ["https://tec.openplanner.team/stops/X801ajb", "https://tec.openplanner.team/stops/X801bdb"], ["https://tec.openplanner.team/stops/N553ahb", "https://tec.openplanner.team/stops/N566adb"], ["https://tec.openplanner.team/stops/X886aba", "https://tec.openplanner.team/stops/X886adb"], ["https://tec.openplanner.team/stops/Bquecge1", "https://tec.openplanner.team/stops/Bquevel1"], ["https://tec.openplanner.team/stops/X870aab", "https://tec.openplanner.team/stops/X880aca"], ["https://tec.openplanner.team/stops/LAicarr1", "https://tec.openplanner.team/stops/Lccuner2"], ["https://tec.openplanner.team/stops/LrAeife2", "https://tec.openplanner.team/stops/LrAplat2"], ["https://tec.openplanner.team/stops/N547alc", "https://tec.openplanner.team/stops/N547ald"], ["https://tec.openplanner.team/stops/H4gu106a", "https://tec.openplanner.team/stops/H4gu106b"], ["https://tec.openplanner.team/stops/Bboufsm2", "https://tec.openplanner.team/stops/Bbougar1"], ["https://tec.openplanner.team/stops/H3bo100d", "https://tec.openplanner.team/stops/H3bo101b"], ["https://tec.openplanner.team/stops/N515afa", "https://tec.openplanner.team/stops/N515aub"], ["https://tec.openplanner.team/stops/X999aab", "https://tec.openplanner.team/stops/X999abb"], ["https://tec.openplanner.team/stops/N547aia", "https://tec.openplanner.team/stops/N547aib"], ["https://tec.openplanner.team/stops/N117ama", "https://tec.openplanner.team/stops/N117ana"], ["https://tec.openplanner.team/stops/LaMschr1", "https://tec.openplanner.team/stops/LeIdeid2"], ["https://tec.openplanner.team/stops/LeYmero1", "https://tec.openplanner.team/stops/LrAbe962"], ["https://tec.openplanner.team/stops/LBNauto2", "https://tec.openplanner.team/stops/LBNforg2"], ["https://tec.openplanner.team/stops/N501lba", "https://tec.openplanner.team/stops/N501zba"], ["https://tec.openplanner.team/stops/Bbstrpo2", "https://tec.openplanner.team/stops/Cbtlong1"], ["https://tec.openplanner.team/stops/LFCalte2", "https://tec.openplanner.team/stops/LMamuse3"], ["https://tec.openplanner.team/stops/N347acb", "https://tec.openplanner.team/stops/N347aga"], ["https://tec.openplanner.team/stops/H1eu105b", "https://tec.openplanner.team/stops/H1sb145a"], ["https://tec.openplanner.team/stops/LWalibo2", "https://tec.openplanner.team/stops/LWapl--4"], ["https://tec.openplanner.team/stops/N577aab", "https://tec.openplanner.team/stops/N577aka"], ["https://tec.openplanner.team/stops/Ljucaba2", "https://tec.openplanner.team/stops/Ljufler1"], ["https://tec.openplanner.team/stops/N531ala", "https://tec.openplanner.team/stops/N531aua"], ["https://tec.openplanner.team/stops/LBAfort2", "https://tec.openplanner.team/stops/Lrahoig1"], ["https://tec.openplanner.team/stops/N525atb", "https://tec.openplanner.team/stops/N526abb"], ["https://tec.openplanner.team/stops/N308aab", "https://tec.openplanner.team/stops/N308aba"], ["https://tec.openplanner.team/stops/H1hn209a", "https://tec.openplanner.team/stops/H1hn209b"], ["https://tec.openplanner.team/stops/LaFbruc1", "https://tec.openplanner.team/stops/LrGzent1"], ["https://tec.openplanner.team/stops/Bbaucai2", "https://tec.openplanner.team/stops/Bbauham1"], ["https://tec.openplanner.team/stops/H1so136a", "https://tec.openplanner.team/stops/H1so143b"], ["https://tec.openplanner.team/stops/N106akb", "https://tec.openplanner.team/stops/N162aea"], ["https://tec.openplanner.team/stops/X715aib", "https://tec.openplanner.team/stops/X715aja"], ["https://tec.openplanner.team/stops/Lstbota2", "https://tec.openplanner.team/stops/LTIecma1"], ["https://tec.openplanner.team/stops/Ccoacie1", "https://tec.openplanner.team/stops/Csoplac1"], ["https://tec.openplanner.team/stops/H1hn208b", "https://tec.openplanner.team/stops/H1ms278a"], ["https://tec.openplanner.team/stops/Cml5ave2", "https://tec.openplanner.team/stops/Cmlsana2"], ["https://tec.openplanner.team/stops/H1ms942a", "https://tec.openplanner.team/stops/H1ni320a"], ["https://tec.openplanner.team/stops/Lrcastr1", "https://tec.openplanner.team/stops/Lrclant1"], ["https://tec.openplanner.team/stops/LSLabba1", "https://tec.openplanner.team/stops/LSLhale2"], ["https://tec.openplanner.team/stops/Cmiegli2", "https://tec.openplanner.team/stops/Cvtmaro1"], ["https://tec.openplanner.team/stops/Lfhdone1", "https://tec.openplanner.team/stops/Lpoprie2"], ["https://tec.openplanner.team/stops/X903aaa", "https://tec.openplanner.team/stops/X903abb"], ["https://tec.openplanner.team/stops/N132aaa", "https://tec.openplanner.team/stops/N132aca"], ["https://tec.openplanner.team/stops/Brsgecu2", "https://tec.openplanner.team/stops/Brsgm802"], ["https://tec.openplanner.team/stops/H2ch107a", "https://tec.openplanner.team/stops/H2ch111b"], ["https://tec.openplanner.team/stops/Bbeaap12", "https://tec.openplanner.team/stops/Bmlnpab1"], ["https://tec.openplanner.team/stops/LBOande1", "https://tec.openplanner.team/stops/LMucarr3"], ["https://tec.openplanner.team/stops/Bnivbpe2", "https://tec.openplanner.team/stops/Bnivbpe3"], ["https://tec.openplanner.team/stops/Lfhxhor1", "https://tec.openplanner.team/stops/Lfhxhor2"], ["https://tec.openplanner.team/stops/Crocona2", "https://tec.openplanner.team/stops/Croplom4"], ["https://tec.openplanner.team/stops/X602aab", "https://tec.openplanner.team/stops/X602abb"], ["https://tec.openplanner.team/stops/X822aab", "https://tec.openplanner.team/stops/X822apa"], ["https://tec.openplanner.team/stops/Cbfdufa1", "https://tec.openplanner.team/stops/Cci4091"], ["https://tec.openplanner.team/stops/LBEcroi1", "https://tec.openplanner.team/stops/LDLbois2"], ["https://tec.openplanner.team/stops/N368aab", "https://tec.openplanner.team/stops/N368aba"], ["https://tec.openplanner.team/stops/LoUober1", "https://tec.openplanner.team/stops/LoUober2"], ["https://tec.openplanner.team/stops/H4mo142d", "https://tec.openplanner.team/stops/H4mo193a"], ["https://tec.openplanner.team/stops/X839abb", "https://tec.openplanner.team/stops/X839abd"], ["https://tec.openplanner.team/stops/Lsmeg--1", "https://tec.openplanner.team/stops/Lsmeg--2"], ["https://tec.openplanner.team/stops/X753abb", "https://tec.openplanner.team/stops/X753abd"], ["https://tec.openplanner.team/stops/CMba1", "https://tec.openplanner.team/stops/CMba2"], ["https://tec.openplanner.team/stops/Lvehv--2", "https://tec.openplanner.team/stops/Lvehv--4"], ["https://tec.openplanner.team/stops/X723aka", "https://tec.openplanner.team/stops/X763aib"], ["https://tec.openplanner.team/stops/X917aka", "https://tec.openplanner.team/stops/X922afb"], ["https://tec.openplanner.team/stops/H4lg100a", "https://tec.openplanner.team/stops/H4ry132b"], ["https://tec.openplanner.team/stops/X818agb", "https://tec.openplanner.team/stops/X818amb"], ["https://tec.openplanner.team/stops/N229ata", "https://tec.openplanner.team/stops/N229atb"], ["https://tec.openplanner.team/stops/Bmonbor1", "https://tec.openplanner.team/stops/Bnivfhu1"], ["https://tec.openplanner.team/stops/N501eda", "https://tec.openplanner.team/stops/N501epb"], ["https://tec.openplanner.team/stops/H2hg270a", "https://tec.openplanner.team/stops/H2hg270b"], ["https://tec.openplanner.team/stops/LWRgare1", "https://tec.openplanner.team/stops/LWRgare2"], ["https://tec.openplanner.team/stops/Bettgle1", "https://tec.openplanner.team/stops/Bettlha2"], ["https://tec.openplanner.team/stops/LHuherm1", "https://tec.openplanner.team/stops/LMHcant2"], ["https://tec.openplanner.team/stops/LVEmohi1", "https://tec.openplanner.team/stops/LVEmohi2"], ["https://tec.openplanner.team/stops/Bgzddfh1", "https://tec.openplanner.team/stops/Bgzdgth2"], ["https://tec.openplanner.team/stops/H4hq129a", "https://tec.openplanner.team/stops/H4hs135b"], ["https://tec.openplanner.team/stops/Bblmpro2", "https://tec.openplanner.team/stops/Bblmwma1"], ["https://tec.openplanner.team/stops/LwAkape2", "https://tec.openplanner.team/stops/LwArabo2"], ["https://tec.openplanner.team/stops/LWaatel2", "https://tec.openplanner.team/stops/LWaccom2"], ["https://tec.openplanner.team/stops/Lwagare1", "https://tec.openplanner.team/stops/Lwapont2"], ["https://tec.openplanner.team/stops/LRGderr1", "https://tec.openplanner.team/stops/LRGgend2"], ["https://tec.openplanner.team/stops/Cgplutt2", "https://tec.openplanner.team/stops/H2gy108b"], ["https://tec.openplanner.team/stops/H1gi118a", "https://tec.openplanner.team/stops/H1vs145b"], ["https://tec.openplanner.team/stops/LSoboul2", "https://tec.openplanner.team/stops/LSogite2"], ["https://tec.openplanner.team/stops/N579aaa", "https://tec.openplanner.team/stops/N579afb"], ["https://tec.openplanner.team/stops/H4fa167b", "https://tec.openplanner.team/stops/H5rx104b"], ["https://tec.openplanner.team/stops/N508aaa", "https://tec.openplanner.team/stops/N508ada"], ["https://tec.openplanner.team/stops/X945ada", "https://tec.openplanner.team/stops/X945adb"], ["https://tec.openplanner.team/stops/Cfabaty2", "https://tec.openplanner.team/stops/Cfabaty4"], ["https://tec.openplanner.team/stops/LBevill1", "https://tec.openplanner.team/stops/LCAwals2"], ["https://tec.openplanner.team/stops/N137aaa", "https://tec.openplanner.team/stops/N137aib"], ["https://tec.openplanner.team/stops/LaSbahn1", "https://tec.openplanner.team/stops/LhSkape1"], ["https://tec.openplanner.team/stops/X614aaa", "https://tec.openplanner.team/stops/X614amb"], ["https://tec.openplanner.team/stops/H1wa158b", "https://tec.openplanner.team/stops/H1wa159a"], ["https://tec.openplanner.team/stops/Cgy3011", "https://tec.openplanner.team/stops/Cgyaudu1"], ["https://tec.openplanner.team/stops/X602aja", "https://tec.openplanner.team/stops/X602akb"], ["https://tec.openplanner.team/stops/H1ol140a", "https://tec.openplanner.team/stops/H1ol140b"], ["https://tec.openplanner.team/stops/X912aka", "https://tec.openplanner.team/stops/X912akb"], ["https://tec.openplanner.team/stops/H1an101b", "https://tec.openplanner.team/stops/H1an102b"], ["https://tec.openplanner.team/stops/X354afb", "https://tec.openplanner.team/stops/X359ala"], ["https://tec.openplanner.team/stops/X601ara", "https://tec.openplanner.team/stops/X601arb"], ["https://tec.openplanner.team/stops/H4vz367a", "https://tec.openplanner.team/stops/H4vz367b"], ["https://tec.openplanner.team/stops/X672aia", "https://tec.openplanner.team/stops/X672akb"], ["https://tec.openplanner.team/stops/X634afb", "https://tec.openplanner.team/stops/X634aga"], ["https://tec.openplanner.team/stops/Bsgetri2", "https://tec.openplanner.team/stops/Bsgevil1"], ["https://tec.openplanner.team/stops/Blhupa12", "https://tec.openplanner.team/stops/Blhupcl1"], ["https://tec.openplanner.team/stops/N538bab", "https://tec.openplanner.team/stops/N538bbb"], ["https://tec.openplanner.team/stops/X948aeb", "https://tec.openplanner.team/stops/X948afb"], ["https://tec.openplanner.team/stops/Cbmind3", "https://tec.openplanner.team/stops/Cbmmafr1"], ["https://tec.openplanner.team/stops/LAmarbo1", "https://tec.openplanner.team/stops/LAmwaut1"], ["https://tec.openplanner.team/stops/N501bsa", "https://tec.openplanner.team/stops/N501bta"], ["https://tec.openplanner.team/stops/LRmkerk2", "https://tec.openplanner.team/stops/LRmkult2"], ["https://tec.openplanner.team/stops/X912aba", "https://tec.openplanner.team/stops/X912aca"], ["https://tec.openplanner.team/stops/LCeterm2", "https://tec.openplanner.team/stops/LLWmonu2"], ["https://tec.openplanner.team/stops/LBhschu2", "https://tec.openplanner.team/stops/X793ajb"], ["https://tec.openplanner.team/stops/Cmohame1", "https://tec.openplanner.team/stops/Cmorgof1"], ["https://tec.openplanner.team/stops/H4ch118b", "https://tec.openplanner.team/stops/H4ch120d"], ["https://tec.openplanner.team/stops/Bblabfo1", "https://tec.openplanner.team/stops/Bblacco1"], ["https://tec.openplanner.team/stops/LMOcorn3", "https://tec.openplanner.team/stops/LMOf35-2"], ["https://tec.openplanner.team/stops/H1me117c", "https://tec.openplanner.team/stops/H1me117f"], ["https://tec.openplanner.team/stops/LwAschu1", "https://tec.openplanner.team/stops/LwAstum1"], ["https://tec.openplanner.team/stops/Lbhbalt1", "https://tec.openplanner.team/stops/Lbhbalt2"], ["https://tec.openplanner.team/stops/X663ahd", "https://tec.openplanner.team/stops/X663ajb"], ["https://tec.openplanner.team/stops/N501fga", "https://tec.openplanner.team/stops/N501fhb"], ["https://tec.openplanner.team/stops/LWEcite1", "https://tec.openplanner.team/stops/LWEgend2"], ["https://tec.openplanner.team/stops/LHuetat1", "https://tec.openplanner.team/stops/LMHplac4"], ["https://tec.openplanner.team/stops/Llaacca1", "https://tec.openplanner.team/stops/Lvovent2"], ["https://tec.openplanner.team/stops/H4he103b", "https://tec.openplanner.team/stops/H4pq112a"], ["https://tec.openplanner.team/stops/LsVgore2", "https://tec.openplanner.team/stops/LsVsage2"], ["https://tec.openplanner.team/stops/Cdamest2", "https://tec.openplanner.team/stops/Cdaviol1"], ["https://tec.openplanner.team/stops/H1ch100b", "https://tec.openplanner.team/stops/H1ch104b"], ["https://tec.openplanner.team/stops/X636awa", "https://tec.openplanner.team/stops/X636bhb"], ["https://tec.openplanner.team/stops/Cdajume1", "https://tec.openplanner.team/stops/Cdamarc1"], ["https://tec.openplanner.team/stops/X739agb", "https://tec.openplanner.team/stops/X739aha"], ["https://tec.openplanner.team/stops/N532ahb", "https://tec.openplanner.team/stops/N532aib"], ["https://tec.openplanner.team/stops/LATmale2", "https://tec.openplanner.team/stops/LATrori2"], ["https://tec.openplanner.team/stops/H4ry131b", "https://tec.openplanner.team/stops/H4ta119a"], ["https://tec.openplanner.team/stops/N534abb", "https://tec.openplanner.team/stops/N534acb"], ["https://tec.openplanner.team/stops/LFacruc1", "https://tec.openplanner.team/stops/LFalieg1"], ["https://tec.openplanner.team/stops/H4bl106a", "https://tec.openplanner.team/stops/H4bl106b"], ["https://tec.openplanner.team/stops/Bbchmin2", "https://tec.openplanner.team/stops/Bitreco1"], ["https://tec.openplanner.team/stops/LAWhein2", "https://tec.openplanner.team/stops/LAWhein4"], ["https://tec.openplanner.team/stops/Cmtgrim2", "https://tec.openplanner.team/stops/Cmtyern1"], ["https://tec.openplanner.team/stops/N501dea", "https://tec.openplanner.team/stops/N501mua"], ["https://tec.openplanner.team/stops/LCEhayo2", "https://tec.openplanner.team/stops/LETfort3"], ["https://tec.openplanner.team/stops/N252aba", "https://tec.openplanner.team/stops/N252ada"], ["https://tec.openplanner.team/stops/Bjdsbro2", "https://tec.openplanner.team/stops/Bjdspon1"], ["https://tec.openplanner.team/stops/Cmerdby1", "https://tec.openplanner.team/stops/Cmerdby2"], ["https://tec.openplanner.team/stops/N425aga", "https://tec.openplanner.team/stops/N426aca"], ["https://tec.openplanner.team/stops/N534bsa", "https://tec.openplanner.team/stops/N568aba"], ["https://tec.openplanner.team/stops/H4au100b", "https://tec.openplanner.team/stops/H4ea132c"], ["https://tec.openplanner.team/stops/Bnvmfba1", "https://tec.openplanner.team/stops/N515aqc"], ["https://tec.openplanner.team/stops/LWAipes1", "https://tec.openplanner.team/stops/LWArege1"], ["https://tec.openplanner.team/stops/N102aab", "https://tec.openplanner.team/stops/N116aca"], ["https://tec.openplanner.team/stops/LBAcent1", "https://tec.openplanner.team/stops/LBApak2*"], ["https://tec.openplanner.team/stops/Lagpaix2", "https://tec.openplanner.team/stops/Lagrask2"], ["https://tec.openplanner.team/stops/LWeec--1", "https://tec.openplanner.team/stops/LWepost1"], ["https://tec.openplanner.team/stops/H1pa120b", "https://tec.openplanner.team/stops/H1pa166b"], ["https://tec.openplanner.team/stops/LcRkirc1", "https://tec.openplanner.team/stops/LcRmuhl2"], ["https://tec.openplanner.team/stops/Bwlhpec1", "https://tec.openplanner.team/stops/Bwlhpma1"], ["https://tec.openplanner.team/stops/LBgcroi4", "https://tec.openplanner.team/stops/LLbvith1"], ["https://tec.openplanner.team/stops/Bbchboi1", "https://tec.openplanner.team/stops/Bwaurge1"], ["https://tec.openplanner.team/stops/H4fr142b", "https://tec.openplanner.team/stops/H4rc234a"], ["https://tec.openplanner.team/stops/LVLm10-2", "https://tec.openplanner.team/stops/LVLmabi2"], ["https://tec.openplanner.team/stops/X619aic", "https://tec.openplanner.team/stops/X619aka"], ["https://tec.openplanner.team/stops/H1qu119b", "https://tec.openplanner.team/stops/H1wl121b"], ["https://tec.openplanner.team/stops/LNipla3", "https://tec.openplanner.team/stops/LNipre-2"], ["https://tec.openplanner.team/stops/Lhrpaep*", "https://tec.openplanner.team/stops/Lhrvert1"], ["https://tec.openplanner.team/stops/Cauwauq2", "https://tec.openplanner.team/stops/Cvsbois1"], ["https://tec.openplanner.team/stops/N531aib", "https://tec.openplanner.team/stops/N531ama"], ["https://tec.openplanner.team/stops/Llgbaya2", "https://tec.openplanner.team/stops/Llgvolg2"], ["https://tec.openplanner.team/stops/H1br120b", "https://tec.openplanner.team/stops/H1br128b"], ["https://tec.openplanner.team/stops/Brsga811", "https://tec.openplanner.team/stops/Bwatcoq1"], ["https://tec.openplanner.team/stops/H1eu101a", "https://tec.openplanner.team/stops/H1lb139a"], ["https://tec.openplanner.team/stops/H1wa152b", "https://tec.openplanner.team/stops/H1wa156b"], ["https://tec.openplanner.team/stops/X638aqa", "https://tec.openplanner.team/stops/X652abb"], ["https://tec.openplanner.team/stops/LAUhost1", "https://tec.openplanner.team/stops/LAUpind1"], ["https://tec.openplanner.team/stops/N352aca", "https://tec.openplanner.team/stops/N352ada"], ["https://tec.openplanner.team/stops/Bgemcro2", "https://tec.openplanner.team/stops/Bgemman2"], ["https://tec.openplanner.team/stops/H1po135b", "https://tec.openplanner.team/stops/H1po138a"], ["https://tec.openplanner.team/stops/N571aaa", "https://tec.openplanner.team/stops/N571aba"], ["https://tec.openplanner.team/stops/LBachpl2", "https://tec.openplanner.team/stops/LBajean1"], ["https://tec.openplanner.team/stops/H1qv113b", "https://tec.openplanner.team/stops/H1qv115b"], ["https://tec.openplanner.team/stops/LsVprum3", "https://tec.openplanner.team/stops/LsVprum4"], ["https://tec.openplanner.team/stops/Lchsaeg2", "https://tec.openplanner.team/stops/Lchsaro1"], ["https://tec.openplanner.team/stops/H1ba101b", "https://tec.openplanner.team/stops/H1ba106a"], ["https://tec.openplanner.team/stops/N507alb", "https://tec.openplanner.team/stops/N507amb"], ["https://tec.openplanner.team/stops/N501bba", "https://tec.openplanner.team/stops/N501mcc"], ["https://tec.openplanner.team/stops/Brsgera2", "https://tec.openplanner.team/stops/Brsgfso2"], ["https://tec.openplanner.team/stops/Cmgcabi1", "https://tec.openplanner.team/stops/Cmgcabi2"], ["https://tec.openplanner.team/stops/LTywyna1", "https://tec.openplanner.team/stops/LTywyna2"], ["https://tec.openplanner.team/stops/Bsaucre1", "https://tec.openplanner.team/stops/Bsaupco2"], ["https://tec.openplanner.team/stops/LeUvoss1", "https://tec.openplanner.team/stops/LkTlibe1"], ["https://tec.openplanner.team/stops/Bolgmpl1", "https://tec.openplanner.team/stops/Bolgrga2"], ["https://tec.openplanner.team/stops/N513asa", "https://tec.openplanner.team/stops/N513asb"], ["https://tec.openplanner.team/stops/H2an102a", "https://tec.openplanner.team/stops/H2an102b"], ["https://tec.openplanner.team/stops/N532aaa", "https://tec.openplanner.team/stops/N532aib"], ["https://tec.openplanner.team/stops/H1cu117a", "https://tec.openplanner.team/stops/H1cu122a"], ["https://tec.openplanner.team/stops/H5at109a", "https://tec.openplanner.team/stops/H5at128b"], ["https://tec.openplanner.team/stops/Ccychap2", "https://tec.openplanner.team/stops/Ccyrmon1"], ["https://tec.openplanner.team/stops/X982beb", "https://tec.openplanner.team/stops/X982bqa"], ["https://tec.openplanner.team/stops/LmNha152", "https://tec.openplanner.team/stops/LmNlieb2"], ["https://tec.openplanner.team/stops/LGMforg2", "https://tec.openplanner.team/stops/LTRmosb1"], ["https://tec.openplanner.team/stops/Crajasm2", "https://tec.openplanner.team/stops/Cravign3"], ["https://tec.openplanner.team/stops/Cbuegl2", "https://tec.openplanner.team/stops/N103aea"], ["https://tec.openplanner.team/stops/Lfhborg1", "https://tec.openplanner.team/stops/Lfhnrou1"], ["https://tec.openplanner.team/stops/N506aca", "https://tec.openplanner.team/stops/N506blb"], ["https://tec.openplanner.team/stops/Lsn130-1", "https://tec.openplanner.team/stops/Lsnmala2"], ["https://tec.openplanner.team/stops/H1hm174a", "https://tec.openplanner.team/stops/H1hm177a"], ["https://tec.openplanner.team/stops/X910aca", "https://tec.openplanner.team/stops/X910acb"], ["https://tec.openplanner.team/stops/LREsoug3", "https://tec.openplanner.team/stops/LREsoug4"], ["https://tec.openplanner.team/stops/LCUmars1", "https://tec.openplanner.team/stops/LSzcoop2"], ["https://tec.openplanner.team/stops/H4oq223a", "https://tec.openplanner.team/stops/H4oq224a"], ["https://tec.openplanner.team/stops/X547aaa", "https://tec.openplanner.team/stops/X547abb"], ["https://tec.openplanner.team/stops/Bnivbxl2", "https://tec.openplanner.team/stops/Bniveco1"], ["https://tec.openplanner.team/stops/Bllncbr2", "https://tec.openplanner.team/stops/Bottbru2"], ["https://tec.openplanner.team/stops/X723ada", "https://tec.openplanner.team/stops/X766aga"], ["https://tec.openplanner.team/stops/Cgymest2", "https://tec.openplanner.team/stops/Cgyrrep1"], ["https://tec.openplanner.team/stops/H2sv214a", "https://tec.openplanner.team/stops/H2sv221a"], ["https://tec.openplanner.team/stops/H4ch115b", "https://tec.openplanner.team/stops/H4ty318b"], ["https://tec.openplanner.team/stops/LeUjuge1", "https://tec.openplanner.team/stops/LeUmoor2"], ["https://tec.openplanner.team/stops/H4mo182a", "https://tec.openplanner.team/stops/H4mo191b"], ["https://tec.openplanner.team/stops/N206aaa", "https://tec.openplanner.team/stops/N206aab"], ["https://tec.openplanner.team/stops/Llieg--1", "https://tec.openplanner.team/stops/Lvochev1"], ["https://tec.openplanner.team/stops/H2mo131b", "https://tec.openplanner.team/stops/H2mo138b"], ["https://tec.openplanner.team/stops/H2lc145a", "https://tec.openplanner.team/stops/H2lc146a"], ["https://tec.openplanner.team/stops/Cmlrang1", "https://tec.openplanner.team/stops/Cmlrang2"], ["https://tec.openplanner.team/stops/Cbufron1", "https://tec.openplanner.team/stops/Cbuplac3"], ["https://tec.openplanner.team/stops/N209ajc", "https://tec.openplanner.team/stops/N559acb"], ["https://tec.openplanner.team/stops/H1te175b", "https://tec.openplanner.team/stops/H1te179b"], ["https://tec.openplanner.team/stops/N513aza", "https://tec.openplanner.team/stops/N513bia"], ["https://tec.openplanner.team/stops/X982amb", "https://tec.openplanner.team/stops/X982byb"], ["https://tec.openplanner.team/stops/X626agb", "https://tec.openplanner.team/stops/X626aib"], ["https://tec.openplanner.team/stops/H1mv239b", "https://tec.openplanner.team/stops/H1mv241a"], ["https://tec.openplanner.team/stops/Ctmdema1", "https://tec.openplanner.team/stops/Ctmwaut1"], ["https://tec.openplanner.team/stops/Ccomiau2", "https://tec.openplanner.team/stops/Cpclibe3"], ["https://tec.openplanner.team/stops/N230aaa", "https://tec.openplanner.team/stops/N230aja"], ["https://tec.openplanner.team/stops/X741aeb", "https://tec.openplanner.team/stops/X741apb"], ["https://tec.openplanner.team/stops/LnN02--1", "https://tec.openplanner.team/stops/LsVthom1"], ["https://tec.openplanner.team/stops/LSTchat1", "https://tec.openplanner.team/stops/LSTchat2"], ["https://tec.openplanner.team/stops/LHAmonu1", "https://tec.openplanner.team/stops/LHAmonu2"], ["https://tec.openplanner.team/stops/LHEpriv2", "https://tec.openplanner.team/stops/LMolone1"], ["https://tec.openplanner.team/stops/LSssurl1", "https://tec.openplanner.team/stops/N506bqb"], ["https://tec.openplanner.team/stops/Llgbrab1", "https://tec.openplanner.team/stops/Llgstvi2"], ["https://tec.openplanner.team/stops/Lpecroi2", "https://tec.openplanner.team/stops/LWenouv2"], ["https://tec.openplanner.team/stops/Ctubpos2", "https://tec.openplanner.team/stops/Ctucomm2"], ["https://tec.openplanner.team/stops/N150aga", "https://tec.openplanner.team/stops/N150akb"], ["https://tec.openplanner.team/stops/H4gu107b", "https://tec.openplanner.team/stops/H4we134a"], ["https://tec.openplanner.team/stops/X773alb", "https://tec.openplanner.team/stops/X773ana"], ["https://tec.openplanner.team/stops/Csobail1", "https://tec.openplanner.team/stops/Csoperi2"], ["https://tec.openplanner.team/stops/Cgpleco1", "https://tec.openplanner.team/stops/Cpcegli1"], ["https://tec.openplanner.team/stops/X801bsa", "https://tec.openplanner.team/stops/X801bta"], ["https://tec.openplanner.team/stops/LmNsv871", "https://tec.openplanner.team/stops/LmNsv872"], ["https://tec.openplanner.team/stops/Bblaljo1", "https://tec.openplanner.team/stops/Bblapje1"], ["https://tec.openplanner.team/stops/N538ana", "https://tec.openplanner.team/stops/N538atb"], ["https://tec.openplanner.team/stops/N127acb", "https://tec.openplanner.team/stops/N127aeb"], ["https://tec.openplanner.team/stops/LLRrape4", "https://tec.openplanner.team/stops/LLRsalm2"], ["https://tec.openplanner.team/stops/Bkrawil1", "https://tec.openplanner.team/stops/Bkrawil2"], ["https://tec.openplanner.team/stops/NL76ama", "https://tec.openplanner.team/stops/NL76amb"], ["https://tec.openplanner.team/stops/H1ms903a", "https://tec.openplanner.team/stops/H1ms904a"], ["https://tec.openplanner.team/stops/LESevie1", "https://tec.openplanner.team/stops/LESgare1"], ["https://tec.openplanner.team/stops/LGMstin1", "https://tec.openplanner.team/stops/LGMstin2"], ["https://tec.openplanner.team/stops/H4ka181b", "https://tec.openplanner.team/stops/H4ty290a"], ["https://tec.openplanner.team/stops/LFreg--1", "https://tec.openplanner.team/stops/LFrvesd1"], ["https://tec.openplanner.team/stops/Blemhon1", "https://tec.openplanner.team/stops/Btubhoq2"], ["https://tec.openplanner.team/stops/Canresi2", "https://tec.openplanner.team/stops/Canterr1"], ["https://tec.openplanner.team/stops/Csshouy2", "https://tec.openplanner.team/stops/Csspn2"], ["https://tec.openplanner.team/stops/X721aca", "https://tec.openplanner.team/stops/X721aha"], ["https://tec.openplanner.team/stops/Bhenard4", "https://tec.openplanner.team/stops/Bhensei1"], ["https://tec.openplanner.team/stops/Lanschu1", "https://tec.openplanner.team/stops/Lanschu2"], ["https://tec.openplanner.team/stops/H1bo102b", "https://tec.openplanner.team/stops/H1te198b"], ["https://tec.openplanner.team/stops/N122afb", "https://tec.openplanner.team/stops/N305aba"], ["https://tec.openplanner.team/stops/N315aaa", "https://tec.openplanner.team/stops/N315aab"], ["https://tec.openplanner.team/stops/Cfrtill2", "https://tec.openplanner.team/stops/Cliegli2"], ["https://tec.openplanner.team/stops/NC11aja", "https://tec.openplanner.team/stops/NC11akb"], ["https://tec.openplanner.team/stops/LFfeg--2", "https://tec.openplanner.team/stops/LPRfond2"], ["https://tec.openplanner.team/stops/Bpthcai1", "https://tec.openplanner.team/stops/Bpthcai2"], ["https://tec.openplanner.team/stops/N201aia", "https://tec.openplanner.team/stops/N236abb"], ["https://tec.openplanner.team/stops/X769ajb", "https://tec.openplanner.team/stops/X791aaa"], ["https://tec.openplanner.team/stops/Lccawir2", "https://tec.openplanner.team/stops/LENengi2"], ["https://tec.openplanner.team/stops/Bflcneu1", "https://tec.openplanner.team/stops/Bflcpco1"], ["https://tec.openplanner.team/stops/Lalverr2", "https://tec.openplanner.team/stops/Lvo60--2"], ["https://tec.openplanner.team/stops/N331aia", "https://tec.openplanner.team/stops/N331aja"], ["https://tec.openplanner.team/stops/Bhmmcsc1", "https://tec.openplanner.team/stops/Btlgbro1"], ["https://tec.openplanner.team/stops/Ccisolv2", "https://tec.openplanner.team/stops/Cmtplac5"], ["https://tec.openplanner.team/stops/H1cv100a", "https://tec.openplanner.team/stops/H1cv100b"], ["https://tec.openplanner.team/stops/Lhrmeta1", "https://tec.openplanner.team/stops/Lhrunir2"], ["https://tec.openplanner.team/stops/LOVchen1", "https://tec.openplanner.team/stops/LOVeg--2"], ["https://tec.openplanner.team/stops/N525ada", "https://tec.openplanner.team/stops/N525aib"], ["https://tec.openplanner.team/stops/N559aab", "https://tec.openplanner.team/stops/N559acb"], ["https://tec.openplanner.team/stops/Cfaeclu2", "https://tec.openplanner.team/stops/Crspana1"], ["https://tec.openplanner.team/stops/LLelans1", "https://tec.openplanner.team/stops/X576afb"], ["https://tec.openplanner.team/stops/LFtcarr2", "https://tec.openplanner.team/stops/LXofont1"], ["https://tec.openplanner.team/stops/N383aba", "https://tec.openplanner.team/stops/N874ana"], ["https://tec.openplanner.team/stops/N530agb", "https://tec.openplanner.team/stops/N534bgb"], ["https://tec.openplanner.team/stops/X782aab", "https://tec.openplanner.team/stops/X782ada"], ["https://tec.openplanner.team/stops/LLxcrem1", "https://tec.openplanner.team/stops/LLxnive1"], ["https://tec.openplanner.team/stops/LPTblan2", "https://tec.openplanner.team/stops/LPTeg--1"], ["https://tec.openplanner.team/stops/H4wp148a", "https://tec.openplanner.team/stops/H4wp152b"], ["https://tec.openplanner.team/stops/N122aaa", "https://tec.openplanner.team/stops/N122aib"], ["https://tec.openplanner.team/stops/H1mj127b", "https://tec.openplanner.team/stops/H1mj131b"], ["https://tec.openplanner.team/stops/N577akb", "https://tec.openplanner.team/stops/N578aba"], ["https://tec.openplanner.team/stops/Canmonu2", "https://tec.openplanner.team/stops/Canmonu4"], ["https://tec.openplanner.team/stops/X850aha", "https://tec.openplanner.team/stops/X850anb"], ["https://tec.openplanner.team/stops/Cfoperz2", "https://tec.openplanner.team/stops/Cfovent2"], ["https://tec.openplanner.team/stops/X638ala", "https://tec.openplanner.team/stops/X638arb"], ["https://tec.openplanner.team/stops/X818aga", "https://tec.openplanner.team/stops/X820afb"], ["https://tec.openplanner.team/stops/N110acb", "https://tec.openplanner.team/stops/N110adb"], ["https://tec.openplanner.team/stops/Bohnman2", "https://tec.openplanner.team/stops/Bohnpla1"], ["https://tec.openplanner.team/stops/LCSpoud2", "https://tec.openplanner.team/stops/LENindu2"], ["https://tec.openplanner.team/stops/H1gg116a", "https://tec.openplanner.team/stops/H1ry137a"], ["https://tec.openplanner.team/stops/H1qu102a", "https://tec.openplanner.team/stops/H1qu120b"], ["https://tec.openplanner.team/stops/N323aba", "https://tec.openplanner.team/stops/N323aca"], ["https://tec.openplanner.team/stops/X718aaa", "https://tec.openplanner.team/stops/X718aba"], ["https://tec.openplanner.team/stops/N509axa", "https://tec.openplanner.team/stops/N509axb"], ["https://tec.openplanner.team/stops/Cgostex1", "https://tec.openplanner.team/stops/Cgoulb1"], ["https://tec.openplanner.team/stops/LSXvill2", "https://tec.openplanner.team/stops/LTHturo2"], ["https://tec.openplanner.team/stops/Bspkkhe2", "https://tec.openplanner.team/stops/H1mk110a"], ["https://tec.openplanner.team/stops/H1gr115a", "https://tec.openplanner.team/stops/H1gr123c"], ["https://tec.openplanner.team/stops/X605aga", "https://tec.openplanner.team/stops/X619amb"], ["https://tec.openplanner.team/stops/N539ala", "https://tec.openplanner.team/stops/N539aoa"], ["https://tec.openplanner.team/stops/X763ahb", "https://tec.openplanner.team/stops/X763aia"], ["https://tec.openplanner.team/stops/H5is169b", "https://tec.openplanner.team/stops/H5is170b"], ["https://tec.openplanner.team/stops/X626akb", "https://tec.openplanner.team/stops/X626ala"], ["https://tec.openplanner.team/stops/H1bx106b", "https://tec.openplanner.team/stops/H1bx107a"], ["https://tec.openplanner.team/stops/X782ana", "https://tec.openplanner.team/stops/X784adb"], ["https://tec.openplanner.team/stops/Lfhnrou2", "https://tec.openplanner.team/stops/Lfhvoye1"], ["https://tec.openplanner.team/stops/Cmohotv3", "https://tec.openplanner.team/stops/Cmosaba1"], ["https://tec.openplanner.team/stops/H4gu110a", "https://tec.openplanner.team/stops/H4gu112a"], ["https://tec.openplanner.team/stops/LTRfica2", "https://tec.openplanner.team/stops/LTRgare1"], ["https://tec.openplanner.team/stops/X659abb", "https://tec.openplanner.team/stops/X659ayb"], ["https://tec.openplanner.team/stops/LVEmoul2", "https://tec.openplanner.team/stops/LVEstat2"], ["https://tec.openplanner.team/stops/N260adb", "https://tec.openplanner.team/stops/N270aaa"], ["https://tec.openplanner.team/stops/N531ata", "https://tec.openplanner.team/stops/N534bma"], ["https://tec.openplanner.team/stops/H1ha187a", "https://tec.openplanner.team/stops/H1ha197a"], ["https://tec.openplanner.team/stops/LOthiro1", "https://tec.openplanner.team/stops/LOthiro2"], ["https://tec.openplanner.team/stops/Bbougar1", "https://tec.openplanner.team/stops/Bcsgres1"], ["https://tec.openplanner.team/stops/X758aab", "https://tec.openplanner.team/stops/X840ada"], ["https://tec.openplanner.team/stops/H4be103b", "https://tec.openplanner.team/stops/H4be104d"], ["https://tec.openplanner.team/stops/X669abc", "https://tec.openplanner.team/stops/X669abd"], ["https://tec.openplanner.team/stops/LBImili1", "https://tec.openplanner.team/stops/LBIrout2"], ["https://tec.openplanner.team/stops/Cjuecho1", "https://tec.openplanner.team/stops/Cjuhden4"], ["https://tec.openplanner.team/stops/X822aga", "https://tec.openplanner.team/stops/X822agb"], ["https://tec.openplanner.team/stops/Bbstpon1", "https://tec.openplanner.team/stops/Bbststa1"], ["https://tec.openplanner.team/stops/N135ava", "https://tec.openplanner.team/stops/N135bfa"], ["https://tec.openplanner.team/stops/N532aia", "https://tec.openplanner.team/stops/N532aka"], ["https://tec.openplanner.team/stops/X822abb", "https://tec.openplanner.team/stops/X822aqb"], ["https://tec.openplanner.team/stops/Bbchcbl1", "https://tec.openplanner.team/stops/Bbchdra1"], ["https://tec.openplanner.team/stops/Lhrchar1", "https://tec.openplanner.team/stops/Lhrpaep2"], ["https://tec.openplanner.team/stops/Crcverr1", "https://tec.openplanner.team/stops/Crcverr2"], ["https://tec.openplanner.team/stops/Bwatmsj2", "https://tec.openplanner.team/stops/Bwatmsj5"], ["https://tec.openplanner.team/stops/Cfcbobr1", "https://tec.openplanner.team/stops/Cvrfema1"], ["https://tec.openplanner.team/stops/Lhuferm1", "https://tec.openplanner.team/stops/LTHcent2"], ["https://tec.openplanner.team/stops/X754ala", "https://tec.openplanner.team/stops/X754amb"], ["https://tec.openplanner.team/stops/Btlbegl3", "https://tec.openplanner.team/stops/Btlbegl4"], ["https://tec.openplanner.team/stops/Benimar4", "https://tec.openplanner.team/stops/Bmrlcch2"], ["https://tec.openplanner.team/stops/H1hr116a", "https://tec.openplanner.team/stops/H1hr125a"], ["https://tec.openplanner.team/stops/LCPbatt2", "https://tec.openplanner.team/stops/LCTfair1"], ["https://tec.openplanner.team/stops/H1qu112b", "https://tec.openplanner.team/stops/H1qu114a"], ["https://tec.openplanner.team/stops/X825aea", "https://tec.openplanner.team/stops/X826abb"], ["https://tec.openplanner.team/stops/N537akb", "https://tec.openplanner.team/stops/N556adb"], ["https://tec.openplanner.team/stops/Bthscbl2", "https://tec.openplanner.team/stops/Bthsvil1"], ["https://tec.openplanner.team/stops/X641afd", "https://tec.openplanner.team/stops/X641aoa"], ["https://tec.openplanner.team/stops/X363acb", "https://tec.openplanner.team/stops/X363ada"], ["https://tec.openplanner.team/stops/Ctuecol4", "https://tec.openplanner.team/stops/Ctuplac3"], ["https://tec.openplanner.team/stops/H4eg102b", "https://tec.openplanner.team/stops/H4sl154b"], ["https://tec.openplanner.team/stops/X902afa", "https://tec.openplanner.team/stops/X902afb"], ["https://tec.openplanner.team/stops/LbOhoff1", "https://tec.openplanner.team/stops/LmObahn*"], ["https://tec.openplanner.team/stops/X911aab", "https://tec.openplanner.team/stops/X911avb"], ["https://tec.openplanner.team/stops/Cfaetoi1", "https://tec.openplanner.team/stops/Cfarcam2"], ["https://tec.openplanner.team/stops/Cnahous1", "https://tec.openplanner.team/stops/Cnaplbu1"], ["https://tec.openplanner.team/stops/X804aaa", "https://tec.openplanner.team/stops/X818aca"], ["https://tec.openplanner.team/stops/Lhrpaep1", "https://tec.openplanner.team/stops/Lhrvert1"], ["https://tec.openplanner.team/stops/X908aca", "https://tec.openplanner.team/stops/X908ada"], ["https://tec.openplanner.team/stops/Lveanto1", "https://tec.openplanner.team/stops/Lvexhav1"], ["https://tec.openplanner.team/stops/H4ro155b", "https://tec.openplanner.team/stops/H5pe148a"], ["https://tec.openplanner.team/stops/X879ahb", "https://tec.openplanner.team/stops/X879aka"], ["https://tec.openplanner.team/stops/N106aca", "https://tec.openplanner.team/stops/N137aba"], ["https://tec.openplanner.team/stops/LMucarr1", "https://tec.openplanner.team/stops/LMucarr3"], ["https://tec.openplanner.team/stops/Ccucorb2", "https://tec.openplanner.team/stops/Cgywaut2"], ["https://tec.openplanner.team/stops/X882amb", "https://tec.openplanner.team/stops/X882amc"], ["https://tec.openplanner.team/stops/N202aeb", "https://tec.openplanner.team/stops/N202aga"], ["https://tec.openplanner.team/stops/Ljucomb1", "https://tec.openplanner.team/stops/Ljuplpr1"], ["https://tec.openplanner.team/stops/LSdencl*", "https://tec.openplanner.team/stops/LVtchai2"], ["https://tec.openplanner.team/stops/Baudstr2", "https://tec.openplanner.team/stops/Bettars1"], ["https://tec.openplanner.team/stops/N331adb", "https://tec.openplanner.team/stops/N385aca"], ["https://tec.openplanner.team/stops/X882aaa", "https://tec.openplanner.team/stops/X882ada"], ["https://tec.openplanner.team/stops/H1cu122a", "https://tec.openplanner.team/stops/H1cu132a"], ["https://tec.openplanner.team/stops/Lemdupo1", "https://tec.openplanner.team/stops/Lemdupo2"], ["https://tec.openplanner.team/stops/Bwatle32", "https://tec.openplanner.team/stops/Bwatmlo2"], ["https://tec.openplanner.team/stops/LBjvill1", "https://tec.openplanner.team/stops/LBjvill2"], ["https://tec.openplanner.team/stops/Bbougar1", "https://tec.openplanner.team/stops/Bbougar2"], ["https://tec.openplanner.team/stops/X879aga", "https://tec.openplanner.team/stops/X879alb"], ["https://tec.openplanner.team/stops/LElverl1", "https://tec.openplanner.team/stops/LTaxhos1"], ["https://tec.openplanner.team/stops/Cgobruy1", "https://tec.openplanner.team/stops/CMbruy2"], ["https://tec.openplanner.team/stops/N501hvb", "https://tec.openplanner.team/stops/N501jab"], ["https://tec.openplanner.team/stops/LCogara2", "https://tec.openplanner.team/stops/LTPspay2"], ["https://tec.openplanner.team/stops/H2sb243b", "https://tec.openplanner.team/stops/H2sb243d"], ["https://tec.openplanner.team/stops/H1ba110b", "https://tec.openplanner.team/stops/H1ba116a"], ["https://tec.openplanner.team/stops/Lgrcrac2", "https://tec.openplanner.team/stops/Lgrlabo2"], ["https://tec.openplanner.team/stops/N569aca", "https://tec.openplanner.team/stops/N569adb"], ["https://tec.openplanner.team/stops/X812aba", "https://tec.openplanner.team/stops/X812afa"], ["https://tec.openplanner.team/stops/X938aaa", "https://tec.openplanner.team/stops/X938aab"], ["https://tec.openplanner.team/stops/LBbhupp2", "https://tec.openplanner.team/stops/LTPcamp1"], ["https://tec.openplanner.team/stops/Bjaneco1", "https://tec.openplanner.team/stops/Bolpmre1"], ["https://tec.openplanner.team/stops/LrAalte1", "https://tec.openplanner.team/stops/LrAneus2"], ["https://tec.openplanner.team/stops/Llgphol3", "https://tec.openplanner.team/stops/Llgtcha2"], ["https://tec.openplanner.team/stops/H4be106a", "https://tec.openplanner.team/stops/H4be109b"], ["https://tec.openplanner.team/stops/H4tu172c", "https://tec.openplanner.team/stops/H5pe128a"], ["https://tec.openplanner.team/stops/H4le128a", "https://tec.openplanner.team/stops/H4ry133a"], ["https://tec.openplanner.team/stops/H2mg149a", "https://tec.openplanner.team/stops/H2mg150a"], ["https://tec.openplanner.team/stops/H4ef113b", "https://tec.openplanner.team/stops/H4ef113c"], ["https://tec.openplanner.team/stops/Lvteg--1", "https://tec.openplanner.team/stops/Lvteg--2"], ["https://tec.openplanner.team/stops/LSJ38--1", "https://tec.openplanner.team/stops/LSJ38--2"], ["https://tec.openplanner.team/stops/LFFchal1", "https://tec.openplanner.team/stops/LVLsabl4"], ["https://tec.openplanner.team/stops/LPbhaut2", "https://tec.openplanner.team/stops/LPbpl--1"], ["https://tec.openplanner.team/stops/H1lb139a", "https://tec.openplanner.team/stops/H1lb139b"], ["https://tec.openplanner.team/stops/H1le125a", "https://tec.openplanner.team/stops/H1og133a"], ["https://tec.openplanner.team/stops/N564ada", "https://tec.openplanner.team/stops/N564adb"], ["https://tec.openplanner.team/stops/Lbocime1", "https://tec.openplanner.team/stops/Lbomc--4"], ["https://tec.openplanner.team/stops/H1ci102b", "https://tec.openplanner.team/stops/H1hn202a"], ["https://tec.openplanner.team/stops/LSomonu1", "https://tec.openplanner.team/stops/LSorobe2"], ["https://tec.openplanner.team/stops/Llivina1", "https://tec.openplanner.team/stops/Lmitech2"], ["https://tec.openplanner.team/stops/N109aaa", "https://tec.openplanner.team/stops/N123adb"], ["https://tec.openplanner.team/stops/X665aaa", "https://tec.openplanner.team/stops/X666aba"], ["https://tec.openplanner.team/stops/H1qv111b", "https://tec.openplanner.team/stops/H1qv116b"], ["https://tec.openplanner.team/stops/Cchhopi3", "https://tec.openplanner.team/stops/Cchwate3"], ["https://tec.openplanner.team/stops/LHdfays1", "https://tec.openplanner.team/stops/LVtvalu2"], ["https://tec.openplanner.team/stops/LHTbaud1", "https://tec.openplanner.team/stops/LHTmonu2"], ["https://tec.openplanner.team/stops/N501bda", "https://tec.openplanner.team/stops/N501bdb"], ["https://tec.openplanner.team/stops/LGesent2", "https://tec.openplanner.team/stops/LGevygh1"], ["https://tec.openplanner.team/stops/N548afa", "https://tec.openplanner.team/stops/N571aca"], ["https://tec.openplanner.team/stops/H5qu139b", "https://tec.openplanner.team/stops/H5qu145a"], ["https://tec.openplanner.team/stops/H1mj129a", "https://tec.openplanner.team/stops/H1mj132a"], ["https://tec.openplanner.team/stops/H1pa100b", "https://tec.openplanner.team/stops/H1pa112b"], ["https://tec.openplanner.team/stops/Lbrcygn2", "https://tec.openplanner.team/stops/Lbrplai1"], ["https://tec.openplanner.team/stops/Cmlipsm2", "https://tec.openplanner.team/stops/Cmlsart1"], ["https://tec.openplanner.team/stops/LbHzent1", "https://tec.openplanner.team/stops/LmS11--1"], ["https://tec.openplanner.team/stops/X804aua", "https://tec.openplanner.team/stops/X804bra"], ["https://tec.openplanner.team/stops/X744aca", "https://tec.openplanner.team/stops/X744ada"], ["https://tec.openplanner.team/stops/Brsgm301", "https://tec.openplanner.team/stops/Bwatmch3"], ["https://tec.openplanner.team/stops/X831acb", "https://tec.openplanner.team/stops/X831adb"], ["https://tec.openplanner.team/stops/Lghmeun2", "https://tec.openplanner.team/stops/Lghmeun4"], ["https://tec.openplanner.team/stops/N425abb", "https://tec.openplanner.team/stops/N425ahb"], ["https://tec.openplanner.team/stops/X601aia", "https://tec.openplanner.team/stops/X601aja"], ["https://tec.openplanner.team/stops/LCPoneu1", "https://tec.openplanner.team/stops/LCPpech5"], ["https://tec.openplanner.team/stops/Cmqcend1", "https://tec.openplanner.team/stops/N425aba"], ["https://tec.openplanner.team/stops/X750aab", "https://tec.openplanner.team/stops/X750adb"], ["https://tec.openplanner.team/stops/Lmofays2", "https://tec.openplanner.team/stops/Lmohomv2"], ["https://tec.openplanner.team/stops/H4pi130a", "https://tec.openplanner.team/stops/H4pi132b"], ["https://tec.openplanner.team/stops/X640alb", "https://tec.openplanner.team/stops/X640apb"], ["https://tec.openplanner.team/stops/H5bl121a", "https://tec.openplanner.team/stops/H5bl124b"], ["https://tec.openplanner.team/stops/Brsgfon1", "https://tec.openplanner.team/stops/Brsgrol2"], ["https://tec.openplanner.team/stops/Lagpass1", "https://tec.openplanner.team/stops/Lagviad1"], ["https://tec.openplanner.team/stops/LMIbois1", "https://tec.openplanner.team/stops/LSOgard2"], ["https://tec.openplanner.team/stops/H4bo114c", "https://tec.openplanner.team/stops/H4bo119b"], ["https://tec.openplanner.team/stops/LBKmoes2", "https://tec.openplanner.team/stops/LWAeloi2"], ["https://tec.openplanner.team/stops/N501haa", "https://tec.openplanner.team/stops/N501icy"], ["https://tec.openplanner.team/stops/Llggill3", "https://tec.openplanner.team/stops/Llghenr1"], ["https://tec.openplanner.team/stops/N244adb", "https://tec.openplanner.team/stops/N244aub"], ["https://tec.openplanner.team/stops/Lsmberg2", "https://tec.openplanner.team/stops/Lsmpost1"], ["https://tec.openplanner.team/stops/H4ru242b", "https://tec.openplanner.team/stops/H4wc374a"], ["https://tec.openplanner.team/stops/N534atb", "https://tec.openplanner.team/stops/N534bgb"], ["https://tec.openplanner.team/stops/LWNchar2", "https://tec.openplanner.team/stops/NL72aea"], ["https://tec.openplanner.team/stops/X657ana", "https://tec.openplanner.team/stops/X657anb"], ["https://tec.openplanner.team/stops/H1wa142b", "https://tec.openplanner.team/stops/H1wa143b"], ["https://tec.openplanner.team/stops/LRChote1", "https://tec.openplanner.team/stops/LTPcarr2"], ["https://tec.openplanner.team/stops/X670aha", "https://tec.openplanner.team/stops/X670aia"], ["https://tec.openplanner.team/stops/LGmeg--2", "https://tec.openplanner.team/stops/LGmhedo1"], ["https://tec.openplanner.team/stops/N501jfa", "https://tec.openplanner.team/stops/N501jgb"], ["https://tec.openplanner.team/stops/H4ld125b", "https://tec.openplanner.team/stops/H4ld127a"], ["https://tec.openplanner.team/stops/H1br127a", "https://tec.openplanner.team/stops/H1br127b"], ["https://tec.openplanner.team/stops/X948ata", "https://tec.openplanner.team/stops/X948atb"], ["https://tec.openplanner.team/stops/Canplal2", "https://tec.openplanner.team/stops/H2an106d"], ["https://tec.openplanner.team/stops/LREgrot4", "https://tec.openplanner.team/stops/LREsoug2"], ["https://tec.openplanner.team/stops/N254aaa", "https://tec.openplanner.team/stops/N254aha"], ["https://tec.openplanner.team/stops/H1ms911a", "https://tec.openplanner.team/stops/H1ms912a"], ["https://tec.openplanner.team/stops/Llghong2", "https://tec.openplanner.team/stops/Llgphol2"], ["https://tec.openplanner.team/stops/Ladabot2", "https://tec.openplanner.team/stops/Ladarev1"], ["https://tec.openplanner.team/stops/LJelava1", "https://tec.openplanner.team/stops/LMOpiss1"], ["https://tec.openplanner.team/stops/Lmiensp*", "https://tec.openplanner.team/stops/Lmimc--1"], ["https://tec.openplanner.team/stops/Lkiblan2", "https://tec.openplanner.team/stops/Lkithie2"], ["https://tec.openplanner.team/stops/H4ty326b", "https://tec.openplanner.team/stops/H4wc372b"], ["https://tec.openplanner.team/stops/H5el105a", "https://tec.openplanner.team/stops/H5el107b"], ["https://tec.openplanner.team/stops/Cmycime2", "https://tec.openplanner.team/stops/Cmymaco2"], ["https://tec.openplanner.team/stops/N232bab", "https://tec.openplanner.team/stops/N232bgb"], ["https://tec.openplanner.team/stops/LPtchpl2", "https://tec.openplanner.team/stops/LrEgend2"], ["https://tec.openplanner.team/stops/Cmychpl4", "https://tec.openplanner.team/stops/Cmypost2"], ["https://tec.openplanner.team/stops/LOmecol1", "https://tec.openplanner.team/stops/LOmpont1"], ["https://tec.openplanner.team/stops/N534aca", "https://tec.openplanner.team/stops/N566adb"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/Crcverr1"], ["https://tec.openplanner.team/stops/LETfort1", "https://tec.openplanner.team/stops/LETfort3"], ["https://tec.openplanner.team/stops/N501fpb", "https://tec.openplanner.team/stops/N501mfb"], ["https://tec.openplanner.team/stops/Benggar1", "https://tec.openplanner.team/stops/H1en103a"], ["https://tec.openplanner.team/stops/H2sb221a", "https://tec.openplanner.team/stops/H2tr247b"], ["https://tec.openplanner.team/stops/LNAbras3", "https://tec.openplanner.team/stops/LYEphar1"], ["https://tec.openplanner.team/stops/X607aea", "https://tec.openplanner.team/stops/X607aeb"], ["https://tec.openplanner.team/stops/H4or114a", "https://tec.openplanner.team/stops/H4or114b"], ["https://tec.openplanner.team/stops/X741aba", "https://tec.openplanner.team/stops/X741abd"], ["https://tec.openplanner.team/stops/LBNburg1", "https://tec.openplanner.team/stops/LBNgarn2"], ["https://tec.openplanner.team/stops/LSzeg--2", "https://tec.openplanner.team/stops/LSzsurl1"], ["https://tec.openplanner.team/stops/Ccychco2", "https://tec.openplanner.team/stops/NH01akb"], ["https://tec.openplanner.team/stops/N501iwa", "https://tec.openplanner.team/stops/N501ixd"], ["https://tec.openplanner.team/stops/LSNmoul1", "https://tec.openplanner.team/stops/LSNmoul3"], ["https://tec.openplanner.team/stops/LbUmurr2", "https://tec.openplanner.team/stops/LmUvilz2"], ["https://tec.openplanner.team/stops/H1do116b", "https://tec.openplanner.team/stops/H1do126a"], ["https://tec.openplanner.team/stops/NR38ada", "https://tec.openplanner.team/stops/NR38adb"], ["https://tec.openplanner.team/stops/Lvtfrai1", "https://tec.openplanner.team/stops/Lvtnico1"], ["https://tec.openplanner.team/stops/LPLc49-1", "https://tec.openplanner.team/stops/LPLcond2"], ["https://tec.openplanner.team/stops/LsVbell1", "https://tec.openplanner.team/stops/LsVgils2"], ["https://tec.openplanner.team/stops/Ctychen3", "https://tec.openplanner.team/stops/N137ahb"], ["https://tec.openplanner.team/stops/Ljhcarr1", "https://tec.openplanner.team/stops/Ljhjeha*"], ["https://tec.openplanner.team/stops/LhSgete2", "https://tec.openplanner.team/stops/LhSgete3"], ["https://tec.openplanner.team/stops/Ccogode1", "https://tec.openplanner.team/stops/Ccotemp1"], ["https://tec.openplanner.team/stops/Llgavro2", "https://tec.openplanner.team/stops/Llgborn1"], ["https://tec.openplanner.team/stops/H1bd100b", "https://tec.openplanner.team/stops/H1bd102b"], ["https://tec.openplanner.team/stops/X782aba", "https://tec.openplanner.team/stops/X782apa"], ["https://tec.openplanner.team/stops/N554aha", "https://tec.openplanner.team/stops/N566aea"], ["https://tec.openplanner.team/stops/N424aeb", "https://tec.openplanner.team/stops/N425aga"], ["https://tec.openplanner.team/stops/H4ft132b", "https://tec.openplanner.team/stops/H4ft133b"], ["https://tec.openplanner.team/stops/Cmtrdec2", "https://tec.openplanner.team/stops/Cmttrie2"], ["https://tec.openplanner.team/stops/H5rx114b", "https://tec.openplanner.team/stops/H5rx126b"], ["https://tec.openplanner.team/stops/LMebove1", "https://tec.openplanner.team/stops/LMedoum2"], ["https://tec.openplanner.team/stops/Bptecal2", "https://tec.openplanner.team/stops/Bptegna1"], ["https://tec.openplanner.team/stops/Lmlcher1", "https://tec.openplanner.team/stops/Lmlcrot3"], ["https://tec.openplanner.team/stops/X652agb", "https://tec.openplanner.team/stops/X652ajb"], ["https://tec.openplanner.team/stops/Lfhchaf*", "https://tec.openplanner.team/stops/LRacime1"], ["https://tec.openplanner.team/stops/Bjodrga2", "https://tec.openplanner.team/stops/Bjodrrg2"], ["https://tec.openplanner.team/stops/LBdcarr1", "https://tec.openplanner.team/stops/LSMfroi2"], ["https://tec.openplanner.team/stops/Ccicloc1", "https://tec.openplanner.team/stops/Ccifies1"], ["https://tec.openplanner.team/stops/N540aaa", "https://tec.openplanner.team/stops/N540aab"], ["https://tec.openplanner.team/stops/Llgdesa1", "https://tec.openplanner.team/stops/Llgpont2"], ["https://tec.openplanner.team/stops/H1pd141a", "https://tec.openplanner.team/stops/H1pd144a"], ["https://tec.openplanner.team/stops/N301anb", "https://tec.openplanner.team/stops/N301asa"], ["https://tec.openplanner.team/stops/N543bda", "https://tec.openplanner.team/stops/N543bya"], ["https://tec.openplanner.team/stops/Bernrar1", "https://tec.openplanner.team/stops/Bernrar2"], ["https://tec.openplanner.team/stops/LFOchab2", "https://tec.openplanner.team/stops/LVlfooz2"], ["https://tec.openplanner.team/stops/X717acb", "https://tec.openplanner.team/stops/X718aka"], ["https://tec.openplanner.team/stops/N520aca", "https://tec.openplanner.team/stops/N520acb"], ["https://tec.openplanner.team/stops/LJOferm1", "https://tec.openplanner.team/stops/LJOferm2"], ["https://tec.openplanner.team/stops/H4be147a", "https://tec.openplanner.team/stops/H4be147b"], ["https://tec.openplanner.team/stops/Bstmpla1", "https://tec.openplanner.team/stops/N561ada"], ["https://tec.openplanner.team/stops/Llabriq1", "https://tec.openplanner.team/stops/Lvovent1"], ["https://tec.openplanner.team/stops/Lpomart1", "https://tec.openplanner.team/stops/Lpoprie1"], ["https://tec.openplanner.team/stops/N252acc", "https://tec.openplanner.team/stops/N252ada"], ["https://tec.openplanner.team/stops/X713aba", "https://tec.openplanner.team/stops/X713ajc"], ["https://tec.openplanner.team/stops/N308ana", "https://tec.openplanner.team/stops/X308akb"], ["https://tec.openplanner.team/stops/Cchalou2", "https://tec.openplanner.team/stops/Cchmott1"], ["https://tec.openplanner.team/stops/LlA43--1", "https://tec.openplanner.team/stops/LlAdorf1"], ["https://tec.openplanner.team/stops/Chpcarp1", "https://tec.openplanner.team/stops/Chpceri2"], ["https://tec.openplanner.team/stops/H2ll195a", "https://tec.openplanner.team/stops/H2sv215b"], ["https://tec.openplanner.team/stops/X880agd", "https://tec.openplanner.team/stops/X880age"], ["https://tec.openplanner.team/stops/Btilsce1", "https://tec.openplanner.team/stops/Bvlvmar1"], ["https://tec.openplanner.team/stops/H1ge115a", "https://tec.openplanner.team/stops/H1no143a"], ["https://tec.openplanner.team/stops/LTywaut1", "https://tec.openplanner.team/stops/LTywyna1"], ["https://tec.openplanner.team/stops/X880aga", "https://tec.openplanner.team/stops/X880agb"], ["https://tec.openplanner.team/stops/Cctmari1", "https://tec.openplanner.team/stops/Cctmari2"], ["https://tec.openplanner.team/stops/H4an111b", "https://tec.openplanner.team/stops/H4rs118b"], ["https://tec.openplanner.team/stops/LBVlamo2", "https://tec.openplanner.team/stops/LBVzand3"], ["https://tec.openplanner.team/stops/X636avb", "https://tec.openplanner.team/stops/X636awa"], ["https://tec.openplanner.team/stops/H4ma398a", "https://tec.openplanner.team/stops/H4ma419b"], ["https://tec.openplanner.team/stops/LBAbooz1", "https://tec.openplanner.team/stops/LBAbooz2"], ["https://tec.openplanner.team/stops/Bovetwe2", "https://tec.openplanner.team/stops/Brsrbbo2"], ["https://tec.openplanner.team/stops/LMgberw2", "https://tec.openplanner.team/stops/LVItroi*"], ["https://tec.openplanner.team/stops/Lalparc1", "https://tec.openplanner.team/stops/Lalparc2"], ["https://tec.openplanner.team/stops/X739aea", "https://tec.openplanner.team/stops/X739afb"], ["https://tec.openplanner.team/stops/Brebchb2", "https://tec.openplanner.team/stops/H3br107a"], ["https://tec.openplanner.team/stops/X672aha", "https://tec.openplanner.team/stops/X672ahb"], ["https://tec.openplanner.team/stops/X876aba", "https://tec.openplanner.team/stops/X876afa"], ["https://tec.openplanner.team/stops/X784aea", "https://tec.openplanner.team/stops/X784aeb"], ["https://tec.openplanner.team/stops/X608aoa", "https://tec.openplanner.team/stops/X608arb"], ["https://tec.openplanner.team/stops/LLrcour2", "https://tec.openplanner.team/stops/LLrpape4"], ["https://tec.openplanner.team/stops/Cjumade0", "https://tec.openplanner.team/stops/Cjumade3"], ["https://tec.openplanner.team/stops/H4ve134b", "https://tec.openplanner.team/stops/H4ve140a"], ["https://tec.openplanner.team/stops/LSdsa8a2", "https://tec.openplanner.team/stops/LSdsar51"], ["https://tec.openplanner.team/stops/N528aqa", "https://tec.openplanner.team/stops/N528ata"], ["https://tec.openplanner.team/stops/N532ajb", "https://tec.openplanner.team/stops/N533acb"], ["https://tec.openplanner.team/stops/Cgrchea2", "https://tec.openplanner.team/stops/NC02abb"], ["https://tec.openplanner.team/stops/X804beb", "https://tec.openplanner.team/stops/X804bfa"], ["https://tec.openplanner.team/stops/LLUgend1", "https://tec.openplanner.team/stops/LLUpier2"], ["https://tec.openplanner.team/stops/N501dcb", "https://tec.openplanner.team/stops/N501mub"], ["https://tec.openplanner.team/stops/LON02--1", "https://tec.openplanner.team/stops/Lthfagn2"], ["https://tec.openplanner.team/stops/H4pq115a", "https://tec.openplanner.team/stops/H4pq116b"], ["https://tec.openplanner.team/stops/X754ara", "https://tec.openplanner.team/stops/X754ata"], ["https://tec.openplanner.team/stops/H4pq114b", "https://tec.openplanner.team/stops/H4pq117a"], ["https://tec.openplanner.team/stops/H4eg102a", "https://tec.openplanner.team/stops/H4eg103b"], ["https://tec.openplanner.team/stops/N241afa", "https://tec.openplanner.team/stops/N585alb"], ["https://tec.openplanner.team/stops/N117baa", "https://tec.openplanner.team/stops/N117bab"], ["https://tec.openplanner.team/stops/Lvopaqu2", "https://tec.openplanner.team/stops/LVSbleu2"], ["https://tec.openplanner.team/stops/N540aqa", "https://tec.openplanner.team/stops/N540arb"], ["https://tec.openplanner.team/stops/LWAor--1", "https://tec.openplanner.team/stops/LWAor--2"], ["https://tec.openplanner.team/stops/X899aga", "https://tec.openplanner.team/stops/X899agb"], ["https://tec.openplanner.team/stops/N101ana", "https://tec.openplanner.team/stops/N101ara"], ["https://tec.openplanner.team/stops/X761ada", "https://tec.openplanner.team/stops/X790ahb"], ["https://tec.openplanner.team/stops/H2ch101b", "https://tec.openplanner.team/stops/H2mg152a"], ["https://tec.openplanner.team/stops/N505aba", "https://tec.openplanner.team/stops/N505aib"], ["https://tec.openplanner.team/stops/LWOrout1", "https://tec.openplanner.team/stops/LWOwa161"], ["https://tec.openplanner.team/stops/LeUwais1", "https://tec.openplanner.team/stops/LeUwais2"], ["https://tec.openplanner.team/stops/H1mr122a", "https://tec.openplanner.team/stops/H1wi152c"], ["https://tec.openplanner.team/stops/Bmangen1", "https://tec.openplanner.team/stops/H2mg139c"], ["https://tec.openplanner.team/stops/H4ka174a", "https://tec.openplanner.team/stops/H4ka179b"], ["https://tec.openplanner.team/stops/X609ala", "https://tec.openplanner.team/stops/X609alb"], ["https://tec.openplanner.team/stops/LTAchau2", "https://tec.openplanner.team/stops/LTAchpl1"], ["https://tec.openplanner.team/stops/H1hg178b", "https://tec.openplanner.team/stops/H1qy131a"], ["https://tec.openplanner.team/stops/Cjupn2", "https://tec.openplanner.team/stops/Cjurogi1"], ["https://tec.openplanner.team/stops/Bobacar2", "https://tec.openplanner.team/stops/Bptrmar2"], ["https://tec.openplanner.team/stops/H1at108a", "https://tec.openplanner.team/stops/H1at109b"], ["https://tec.openplanner.team/stops/Cclchap1", "https://tec.openplanner.team/stops/Cclmoul2"], ["https://tec.openplanner.team/stops/N528arb", "https://tec.openplanner.team/stops/N528asb"], ["https://tec.openplanner.team/stops/X769ana", "https://tec.openplanner.team/stops/X769anb"], ["https://tec.openplanner.team/stops/X659awa", "https://tec.openplanner.team/stops/X659axa"], ["https://tec.openplanner.team/stops/X750bhb", "https://tec.openplanner.team/stops/X750bkb"], ["https://tec.openplanner.team/stops/Bbcoser1", "https://tec.openplanner.team/stops/Bbcoser2"], ["https://tec.openplanner.team/stops/Cmlpche1", "https://tec.openplanner.team/stops/Cmlpche2"], ["https://tec.openplanner.team/stops/N562agb", "https://tec.openplanner.team/stops/N562aha"], ["https://tec.openplanner.team/stops/N360adc", "https://tec.openplanner.team/stops/N894aea"], ["https://tec.openplanner.team/stops/Bgemga12", "https://tec.openplanner.team/stops/N522bvb"], ["https://tec.openplanner.team/stops/X986aeb", "https://tec.openplanner.team/stops/X986ajb"], ["https://tec.openplanner.team/stops/LrEkape2", "https://tec.openplanner.team/stops/LrEkreu1"], ["https://tec.openplanner.team/stops/X762aca", "https://tec.openplanner.team/stops/X762adb"], ["https://tec.openplanner.team/stops/X696aea", "https://tec.openplanner.team/stops/X696afa"], ["https://tec.openplanner.team/stops/X740aga", "https://tec.openplanner.team/stops/X911aua"], ["https://tec.openplanner.team/stops/LFAtomb1", "https://tec.openplanner.team/stops/LFAwale2"], ["https://tec.openplanner.team/stops/H2pe156a", "https://tec.openplanner.team/stops/H2re167a"], ["https://tec.openplanner.team/stops/LSPClem1", "https://tec.openplanner.team/stops/LSPther1"], ["https://tec.openplanner.team/stops/H1mv242a", "https://tec.openplanner.team/stops/H1mv243b"], ["https://tec.openplanner.team/stops/Bottcba2", "https://tec.openplanner.team/stops/Bottppa2"], ["https://tec.openplanner.team/stops/H1he107b", "https://tec.openplanner.team/stops/H1he108a"], ["https://tec.openplanner.team/stops/Bottpry1", "https://tec.openplanner.team/stops/Bottpry2"], ["https://tec.openplanner.team/stops/LVIastr1", "https://tec.openplanner.team/stops/LVIeg--1"], ["https://tec.openplanner.team/stops/X901aab", "https://tec.openplanner.team/stops/X901aba"], ["https://tec.openplanner.team/stops/N543chb", "https://tec.openplanner.team/stops/N543cia"], ["https://tec.openplanner.team/stops/Bmrleco1", "https://tec.openplanner.team/stops/Bmrleco2"], ["https://tec.openplanner.team/stops/H1by108d", "https://tec.openplanner.team/stops/H1by108e"], ["https://tec.openplanner.team/stops/N211apa", "https://tec.openplanner.team/stops/N211asa"], ["https://tec.openplanner.team/stops/Lheazz-1", "https://tec.openplanner.team/stops/Lheterm*"], ["https://tec.openplanner.team/stops/Lprtour1", "https://tec.openplanner.team/stops/Lprtour2"], ["https://tec.openplanner.team/stops/H1er109b", "https://tec.openplanner.team/stops/H1er112a"], ["https://tec.openplanner.team/stops/X727adb", "https://tec.openplanner.team/stops/X727aha"], ["https://tec.openplanner.team/stops/H2na135a", "https://tec.openplanner.team/stops/H3so184b"], ["https://tec.openplanner.team/stops/X744ada", "https://tec.openplanner.team/stops/X746aha"], ["https://tec.openplanner.team/stops/H1hr127a", "https://tec.openplanner.team/stops/H1hr127b"], ["https://tec.openplanner.team/stops/Cfabnat2", "https://tec.openplanner.team/stops/Cfastan1"], ["https://tec.openplanner.team/stops/LFFchab1", "https://tec.openplanner.team/stops/LVLsabl2"], ["https://tec.openplanner.team/stops/Cpcgout2", "https://tec.openplanner.team/stops/Cpcha431"], ["https://tec.openplanner.team/stops/X871abb", "https://tec.openplanner.team/stops/X871aca"], ["https://tec.openplanner.team/stops/H2ma206b", "https://tec.openplanner.team/stops/H2ma209b"], ["https://tec.openplanner.team/stops/N343aba", "https://tec.openplanner.team/stops/X343aha"], ["https://tec.openplanner.team/stops/H2bh115b", "https://tec.openplanner.team/stops/H2fy119a"], ["https://tec.openplanner.team/stops/N139aca", "https://tec.openplanner.team/stops/N140aaa"], ["https://tec.openplanner.team/stops/H1sy145b", "https://tec.openplanner.team/stops/H1sy150a"], ["https://tec.openplanner.team/stops/N543bob", "https://tec.openplanner.team/stops/N543cma"], ["https://tec.openplanner.team/stops/X659apb", "https://tec.openplanner.team/stops/X741aka"], ["https://tec.openplanner.team/stops/X614aea", "https://tec.openplanner.team/stops/X614aya"], ["https://tec.openplanner.team/stops/X605aga", "https://tec.openplanner.team/stops/X605ala"], ["https://tec.openplanner.team/stops/Cropcan1", "https://tec.openplanner.team/stops/Cropcan2"], ["https://tec.openplanner.team/stops/Bneelaa1", "https://tec.openplanner.team/stops/Braclin2"], ["https://tec.openplanner.team/stops/Boplcar1", "https://tec.openplanner.team/stops/Boplcar3"], ["https://tec.openplanner.team/stops/LkTsch%C3%B61", "https://tec.openplanner.team/stops/LkTsch%C3%B62"], ["https://tec.openplanner.team/stops/Loudela2", "https://tec.openplanner.team/stops/Louvand1"], ["https://tec.openplanner.team/stops/N565ada", "https://tec.openplanner.team/stops/N565akb"], ["https://tec.openplanner.team/stops/H4ss157a", "https://tec.openplanner.team/stops/H5rx125b"], ["https://tec.openplanner.team/stops/H2pr116b", "https://tec.openplanner.team/stops/H2pr119b"], ["https://tec.openplanner.team/stops/LFmlens2", "https://tec.openplanner.team/stops/LMOchen1"], ["https://tec.openplanner.team/stops/Cjugend3", "https://tec.openplanner.team/stops/Cjugend4"], ["https://tec.openplanner.team/stops/Lbococh1", "https://tec.openplanner.team/stops/Lsechev1"], ["https://tec.openplanner.team/stops/Bblacco2", "https://tec.openplanner.team/stops/Bblamer1"], ["https://tec.openplanner.team/stops/Bwavlon1", "https://tec.openplanner.team/stops/Bwavpar1"], ["https://tec.openplanner.team/stops/X750alb", "https://tec.openplanner.team/stops/X750bga"], ["https://tec.openplanner.team/stops/H1og135b", "https://tec.openplanner.team/stops/H5wo124a"], ["https://tec.openplanner.team/stops/Cgplhoi1", "https://tec.openplanner.team/stops/Cgplhoi2"], ["https://tec.openplanner.team/stops/LPOthom1", "https://tec.openplanner.team/stops/LPOthom2"], ["https://tec.openplanner.team/stops/H1bd103a", "https://tec.openplanner.team/stops/H1hq127a"], ["https://tec.openplanner.team/stops/X641abb", "https://tec.openplanner.team/stops/X641acb"], ["https://tec.openplanner.team/stops/X823afd", "https://tec.openplanner.team/stops/X823aga"], ["https://tec.openplanner.team/stops/X669aeb", "https://tec.openplanner.team/stops/X672aid"], ["https://tec.openplanner.team/stops/H4ms144a", "https://tec.openplanner.team/stops/H4ms145b"], ["https://tec.openplanner.team/stops/H3lr106a", "https://tec.openplanner.team/stops/H3th133b"], ["https://tec.openplanner.team/stops/Brixga12", "https://tec.openplanner.team/stops/Brixpla1"], ["https://tec.openplanner.team/stops/LCPoneu1", "https://tec.openplanner.team/stops/LOncar-*"], ["https://tec.openplanner.team/stops/Crspana3", "https://tec.openplanner.team/stops/Crspana4"], ["https://tec.openplanner.team/stops/NC24afb", "https://tec.openplanner.team/stops/NC24agb"], ["https://tec.openplanner.team/stops/LVu40--1", "https://tec.openplanner.team/stops/LVu40--2"], ["https://tec.openplanner.team/stops/LABbert2", "https://tec.openplanner.team/stops/LBegare2"], ["https://tec.openplanner.team/stops/LAUneuv4", "https://tec.openplanner.team/stops/LAUneuv5"], ["https://tec.openplanner.team/stops/CMparc2", "https://tec.openplanner.team/stops/Cmtrneu2"], ["https://tec.openplanner.team/stops/X998aza", "https://tec.openplanner.team/stops/X999amb"], ["https://tec.openplanner.team/stops/X721ala", "https://tec.openplanner.team/stops/X721ama"], ["https://tec.openplanner.team/stops/LRRemul1", "https://tec.openplanner.team/stops/LRRtrix1"], ["https://tec.openplanner.team/stops/LGOmonu1", "https://tec.openplanner.team/stops/LGOvill1"], ["https://tec.openplanner.team/stops/Ccyga4", "https://tec.openplanner.team/stops/Ccypetv2"], ["https://tec.openplanner.team/stops/X941aaa", "https://tec.openplanner.team/stops/X941aab"], ["https://tec.openplanner.team/stops/Cbfusin2", "https://tec.openplanner.team/stops/NC11akb"], ["https://tec.openplanner.team/stops/Ldipl--3", "https://tec.openplanner.team/stops/Ldipl--5"], ["https://tec.openplanner.team/stops/Cmtfabi2", "https://tec.openplanner.team/stops/Cmtstth1"], ["https://tec.openplanner.team/stops/N120aja", "https://tec.openplanner.team/stops/N121aib"], ["https://tec.openplanner.team/stops/H4ch120d", "https://tec.openplanner.team/stops/H4vx364b"], ["https://tec.openplanner.team/stops/LbTgeme2", "https://tec.openplanner.team/stops/LwYkreu1"], ["https://tec.openplanner.team/stops/NH01arb", "https://tec.openplanner.team/stops/NH01asb"], ["https://tec.openplanner.team/stops/Cfcpier1", "https://tec.openplanner.team/stops/Cfcplac4"], ["https://tec.openplanner.team/stops/LNAanne1", "https://tec.openplanner.team/stops/LSSfrai2"], ["https://tec.openplanner.team/stops/X650aaa", "https://tec.openplanner.team/stops/X650aoa"], ["https://tec.openplanner.team/stops/Ctrecol4", "https://tec.openplanner.team/stops/Ctrvert2"], ["https://tec.openplanner.team/stops/X601afa", "https://tec.openplanner.team/stops/X662atb"], ["https://tec.openplanner.team/stops/X347aja", "https://tec.openplanner.team/stops/X890aga"], ["https://tec.openplanner.team/stops/X650ana", "https://tec.openplanner.team/stops/X652aaa"], ["https://tec.openplanner.team/stops/N150akb", "https://tec.openplanner.team/stops/N165abb"], ["https://tec.openplanner.team/stops/H1ms254b", "https://tec.openplanner.team/stops/H1ms266a"], ["https://tec.openplanner.team/stops/H1gr118b", "https://tec.openplanner.team/stops/H1sy141b"], ["https://tec.openplanner.team/stops/H1bb119a", "https://tec.openplanner.team/stops/H1bb121a"], ["https://tec.openplanner.team/stops/N508aaa", "https://tec.openplanner.team/stops/N508ala"], ["https://tec.openplanner.team/stops/N507agb", "https://tec.openplanner.team/stops/N508aca"], ["https://tec.openplanner.team/stops/LGefron2", "https://tec.openplanner.team/stops/LVAwolf2"], ["https://tec.openplanner.team/stops/N203ada", "https://tec.openplanner.team/stops/N204alb"], ["https://tec.openplanner.team/stops/N521ala", "https://tec.openplanner.team/stops/N525ala"], ["https://tec.openplanner.team/stops/Cjugill3", "https://tec.openplanner.team/stops/CMchag2"], ["https://tec.openplanner.team/stops/LVLhalb2", "https://tec.openplanner.team/stops/LVLhalb3"], ["https://tec.openplanner.team/stops/LMsec--1", "https://tec.openplanner.team/stops/LMsvill2"], ["https://tec.openplanner.team/stops/X801bea", "https://tec.openplanner.team/stops/X801bma"], ["https://tec.openplanner.team/stops/Cthvbas2", "https://tec.openplanner.team/stops/Cthvbas4"], ["https://tec.openplanner.team/stops/Ljuprev2", "https://tec.openplanner.team/stops/Llgcouv2"], ["https://tec.openplanner.team/stops/X663aha", "https://tec.openplanner.team/stops/X663aia"], ["https://tec.openplanner.team/stops/H1hn202b", "https://tec.openplanner.team/stops/H1hn203a"], ["https://tec.openplanner.team/stops/H4ep126a", "https://tec.openplanner.team/stops/H4ep129a"], ["https://tec.openplanner.team/stops/LSTchat2", "https://tec.openplanner.team/stops/LSTvaul2"], ["https://tec.openplanner.team/stops/LBSnouw1", "https://tec.openplanner.team/stops/LBStong1"], ["https://tec.openplanner.team/stops/H4av102c", "https://tec.openplanner.team/stops/H4ef162b"], ["https://tec.openplanner.team/stops/LCRchpl1", "https://tec.openplanner.team/stops/LCReg--1"], ["https://tec.openplanner.team/stops/LBveg--2", "https://tec.openplanner.team/stops/LBvnico1"], ["https://tec.openplanner.team/stops/Llgmean2", "https://tec.openplanner.team/stops/Llgpitt1"], ["https://tec.openplanner.team/stops/H4ka193a", "https://tec.openplanner.team/stops/H4ty397a"], ["https://tec.openplanner.team/stops/H1ba107a", "https://tec.openplanner.team/stops/H1ba107b"], ["https://tec.openplanner.team/stops/Lsebuis2", "https://tec.openplanner.team/stops/Lseruis1"], ["https://tec.openplanner.team/stops/LSPplat1", "https://tec.openplanner.team/stops/LSPptch1"], ["https://tec.openplanner.team/stops/H1fr125b", "https://tec.openplanner.team/stops/H1lb134a"], ["https://tec.openplanner.team/stops/Bborcro2", "https://tec.openplanner.team/stops/Bitrpar1"], ["https://tec.openplanner.team/stops/Lflchan1", "https://tec.openplanner.team/stops/Lrosoxh2"], ["https://tec.openplanner.team/stops/Llglamb2", "https://tec.openplanner.team/stops/Llgschm2"], ["https://tec.openplanner.team/stops/LrDsage2", "https://tec.openplanner.team/stops/LrDschl2"], ["https://tec.openplanner.team/stops/X948aib", "https://tec.openplanner.team/stops/X948aja"], ["https://tec.openplanner.team/stops/H1by100c", "https://tec.openplanner.team/stops/H1by102b"], ["https://tec.openplanner.team/stops/Cmtrbla1", "https://tec.openplanner.team/stops/Cmtrdec2"], ["https://tec.openplanner.team/stops/X747aba", "https://tec.openplanner.team/stops/X747aia"], ["https://tec.openplanner.team/stops/LrUgeme1", "https://tec.openplanner.team/stops/LrUkult2"], ["https://tec.openplanner.team/stops/X917aia", "https://tec.openplanner.team/stops/X917ajb"], ["https://tec.openplanner.team/stops/LHUsart1", "https://tec.openplanner.team/stops/LHUvege1"], ["https://tec.openplanner.team/stops/H2ll186a", "https://tec.openplanner.team/stops/H2ll186b"], ["https://tec.openplanner.team/stops/Cfaecmo2", "https://tec.openplanner.team/stops/Cfarcam2"], ["https://tec.openplanner.team/stops/Lalexpa1", "https://tec.openplanner.team/stops/Lalparc1"], ["https://tec.openplanner.team/stops/N551acb", "https://tec.openplanner.team/stops/N577aca"], ["https://tec.openplanner.team/stops/X774aba", "https://tec.openplanner.team/stops/X774abb"], ["https://tec.openplanner.team/stops/N101aja", "https://tec.openplanner.team/stops/N116aea"], ["https://tec.openplanner.team/stops/LETfort4", "https://tec.openplanner.team/stops/LMIcamp2"], ["https://tec.openplanner.team/stops/LOrpont2", "https://tec.openplanner.team/stops/LTyhall2"], ["https://tec.openplanner.team/stops/N163aaa", "https://tec.openplanner.team/stops/N165aca"], ["https://tec.openplanner.team/stops/Bqueaga1", "https://tec.openplanner.team/stops/Btubsal1"], ["https://tec.openplanner.team/stops/H4ta125b", "https://tec.openplanner.team/stops/H4ta126a"], ["https://tec.openplanner.team/stops/LCIpiet1", "https://tec.openplanner.team/stops/LCIpiet2"], ["https://tec.openplanner.team/stops/Lhrcols1", "https://tec.openplanner.team/stops/Lvtmeun2"], ["https://tec.openplanner.team/stops/X770adb", "https://tec.openplanner.team/stops/X770aeb"], ["https://tec.openplanner.team/stops/X807acb", "https://tec.openplanner.team/stops/X834ada"], ["https://tec.openplanner.team/stops/LAWhein2", "https://tec.openplanner.team/stops/LAWroug2"], ["https://tec.openplanner.team/stops/H1em108a", "https://tec.openplanner.team/stops/H1em111a"], ["https://tec.openplanner.team/stops/H1bb114a", "https://tec.openplanner.team/stops/H1ho133a"], ["https://tec.openplanner.team/stops/LHHpt--2", "https://tec.openplanner.team/stops/LSkb1351"], ["https://tec.openplanner.team/stops/N385aeb", "https://tec.openplanner.team/stops/N385aed"], ["https://tec.openplanner.team/stops/Lkivolg2", "https://tec.openplanner.team/stops/Lscgare2"], ["https://tec.openplanner.team/stops/Btubga06", "https://tec.openplanner.team/stops/Btubmfa1"], ["https://tec.openplanner.team/stops/X653ada", "https://tec.openplanner.team/stops/X653add"], ["https://tec.openplanner.team/stops/Cmtgrim1", "https://tec.openplanner.team/stops/Cmtyern2"], ["https://tec.openplanner.team/stops/X833aab", "https://tec.openplanner.team/stops/X834ada"], ["https://tec.openplanner.team/stops/LTiflor1", "https://tec.openplanner.team/stops/LTipont2"], ["https://tec.openplanner.team/stops/X602ama", "https://tec.openplanner.team/stops/X602apa"], ["https://tec.openplanner.team/stops/H2mm144a", "https://tec.openplanner.team/stops/H2mo145a"], ["https://tec.openplanner.team/stops/LWOpier2", "https://tec.openplanner.team/stops/LWOplat2"], ["https://tec.openplanner.team/stops/X837aca", "https://tec.openplanner.team/stops/X837acb"], ["https://tec.openplanner.team/stops/X937aab", "https://tec.openplanner.team/stops/X938ada"], ["https://tec.openplanner.team/stops/Cgplutt2", "https://tec.openplanner.team/stops/Cgpplac2"], ["https://tec.openplanner.team/stops/N534bsa", "https://tec.openplanner.team/stops/N534bsb"], ["https://tec.openplanner.team/stops/Cchba2", "https://tec.openplanner.team/stops/Cchture1"], ["https://tec.openplanner.team/stops/LMfpeni*", "https://tec.openplanner.team/stops/NL57alb"], ["https://tec.openplanner.team/stops/N551aka", "https://tec.openplanner.team/stops/N551akb"], ["https://tec.openplanner.team/stops/LeUgutl1", "https://tec.openplanner.team/stops/LkTkabi2"], ["https://tec.openplanner.team/stops/Bbsttab1", "https://tec.openplanner.team/stops/Bbsttab2"], ["https://tec.openplanner.team/stops/Clibrun2", "https://tec.openplanner.team/stops/Clulidl1"], ["https://tec.openplanner.team/stops/X780afb", "https://tec.openplanner.team/stops/X780aga"], ["https://tec.openplanner.team/stops/X609aia", "https://tec.openplanner.team/stops/X609ala"], ["https://tec.openplanner.team/stops/LmDelek1", "https://tec.openplanner.team/stops/LmDelek2"], ["https://tec.openplanner.team/stops/N549adb", "https://tec.openplanner.team/stops/N549aeb"], ["https://tec.openplanner.team/stops/N532aja", "https://tec.openplanner.team/stops/N532aka"], ["https://tec.openplanner.team/stops/Ljedepa1", "https://tec.openplanner.team/stops/Ljeheur1"], ["https://tec.openplanner.team/stops/H4tg162a", "https://tec.openplanner.team/stops/H4tg170b"], ["https://tec.openplanner.team/stops/H2tr248a", "https://tec.openplanner.team/stops/H2tr248b"], ["https://tec.openplanner.team/stops/LVEh16-1", "https://tec.openplanner.team/stops/LVEjoin1"], ["https://tec.openplanner.team/stops/H2bh105a", "https://tec.openplanner.team/stops/H2bh113b"], ["https://tec.openplanner.team/stops/Llgmare5", "https://tec.openplanner.team/stops/Llgpoli1"], ["https://tec.openplanner.team/stops/Bgntcbo1", "https://tec.openplanner.team/stops/N584axb"], ["https://tec.openplanner.team/stops/LCnvill1", "https://tec.openplanner.team/stops/LREhenu2"], ["https://tec.openplanner.team/stops/H4os221a", "https://tec.openplanner.team/stops/H5wo132b"], ["https://tec.openplanner.team/stops/H2le146b", "https://tec.openplanner.team/stops/H2le150a"], ["https://tec.openplanner.team/stops/N149aba", "https://tec.openplanner.team/stops/N149adb"], ["https://tec.openplanner.team/stops/Brsgfbl3", "https://tec.openplanner.team/stops/Brsggol1"], ["https://tec.openplanner.team/stops/LMEcour1", "https://tec.openplanner.team/stops/LMEcour2"], ["https://tec.openplanner.team/stops/X781aea", "https://tec.openplanner.team/stops/X781aeb"], ["https://tec.openplanner.team/stops/H4lu126a", "https://tec.openplanner.team/stops/H4lu126b"], ["https://tec.openplanner.team/stops/H4mv193b", "https://tec.openplanner.team/stops/H4va232a"], ["https://tec.openplanner.team/stops/Lseptsa1", "https://tec.openplanner.team/stops/Lseverh2"], ["https://tec.openplanner.team/stops/LhObull2", "https://tec.openplanner.team/stops/LhOfrie1"], ["https://tec.openplanner.team/stops/X601bnb", "https://tec.openplanner.team/stops/X601bob"], ["https://tec.openplanner.team/stops/N532aca", "https://tec.openplanner.team/stops/N532adb"], ["https://tec.openplanner.team/stops/LAUscha2", "https://tec.openplanner.team/stops/LFPstro1"], ["https://tec.openplanner.team/stops/N528ala", "https://tec.openplanner.team/stops/N551aec"], ["https://tec.openplanner.team/stops/LSInd--1", "https://tec.openplanner.team/stops/LSInd--2"], ["https://tec.openplanner.team/stops/Bblaniv1", "https://tec.openplanner.team/stops/Bwatwsc1"], ["https://tec.openplanner.team/stops/H1fr118b", "https://tec.openplanner.team/stops/H1no143b"], ["https://tec.openplanner.team/stops/LeUroll1", "https://tec.openplanner.team/stops/LkTlibe1"], ["https://tec.openplanner.team/stops/N513asa", "https://tec.openplanner.team/stops/N513avb"], ["https://tec.openplanner.team/stops/H2pr114a", "https://tec.openplanner.team/stops/H2pr119a"], ["https://tec.openplanner.team/stops/Bhticbr1", "https://tec.openplanner.team/stops/Bitrfsc2"], ["https://tec.openplanner.team/stops/Cgzplac1", "https://tec.openplanner.team/stops/Cgzplac4"], ["https://tec.openplanner.team/stops/H1ba115a", "https://tec.openplanner.team/stops/H1ba115b"], ["https://tec.openplanner.team/stops/N501etc", "https://tec.openplanner.team/stops/N501ety"], ["https://tec.openplanner.team/stops/Cbfgare1", "https://tec.openplanner.team/stops/Cctberg2"], ["https://tec.openplanner.team/stops/N521ala", "https://tec.openplanner.team/stops/N521alb"], ["https://tec.openplanner.team/stops/X750ayb", "https://tec.openplanner.team/stops/X750aza"], ["https://tec.openplanner.team/stops/N557aaa", "https://tec.openplanner.team/stops/N557aab"], ["https://tec.openplanner.team/stops/Bllnjpa2", "https://tec.openplanner.team/stops/Bllnlb52"], ["https://tec.openplanner.team/stops/H4mo133b", "https://tec.openplanner.team/stops/H4mo159b"], ["https://tec.openplanner.team/stops/H4ty356c", "https://tec.openplanner.team/stops/H4ty381b"], ["https://tec.openplanner.team/stops/X939aab", "https://tec.openplanner.team/stops/X940afb"], ["https://tec.openplanner.team/stops/X940ada", "https://tec.openplanner.team/stops/X940aed"], ["https://tec.openplanner.team/stops/N151ajd", "https://tec.openplanner.team/stops/N152aad"], ["https://tec.openplanner.team/stops/LTRfend2", "https://tec.openplanner.team/stops/LTRmosb1"], ["https://tec.openplanner.team/stops/Bthspha2", "https://tec.openplanner.team/stops/Bwancal2"], ["https://tec.openplanner.team/stops/H1ca106b", "https://tec.openplanner.team/stops/H1ne144a"], ["https://tec.openplanner.team/stops/LXhjupr3", "https://tec.openplanner.team/stops/LXhjupr4"], ["https://tec.openplanner.team/stops/X601bub", "https://tec.openplanner.team/stops/X601daa"], ["https://tec.openplanner.team/stops/X922agb", "https://tec.openplanner.team/stops/X922ahb"], ["https://tec.openplanner.team/stops/X985aaa", "https://tec.openplanner.team/stops/X985aac"], ["https://tec.openplanner.team/stops/H1el134a", "https://tec.openplanner.team/stops/H1el135a"], ["https://tec.openplanner.team/stops/Lbomc--8", "https://tec.openplanner.team/stops/Lbooffe1"], ["https://tec.openplanner.team/stops/Cmcgoch2", "https://tec.openplanner.team/stops/Csyjumo2"], ["https://tec.openplanner.team/stops/H4fo117a", "https://tec.openplanner.team/stops/H4fo117c"], ["https://tec.openplanner.team/stops/LAUbour2", "https://tec.openplanner.team/stops/LAUhost1"], ["https://tec.openplanner.team/stops/H1cv100b", "https://tec.openplanner.team/stops/H1cv104b"], ["https://tec.openplanner.team/stops/N522afa", "https://tec.openplanner.team/stops/N522afb"], ["https://tec.openplanner.team/stops/Bnivplt1", "https://tec.openplanner.team/stops/Bnivpro2"], ["https://tec.openplanner.team/stops/Lbrnanc1", "https://tec.openplanner.team/stops/Lbrnanc2"], ["https://tec.openplanner.team/stops/H1ho136b", "https://tec.openplanner.team/stops/H1ho139a"], ["https://tec.openplanner.team/stops/H1gh145b", "https://tec.openplanner.team/stops/H1gh150b"], ["https://tec.openplanner.team/stops/X670adb", "https://tec.openplanner.team/stops/X670akb"], ["https://tec.openplanner.team/stops/LVnourt4", "https://tec.openplanner.team/stops/LVnrock2"], ["https://tec.openplanner.team/stops/Lsmgdry1", "https://tec.openplanner.team/stops/Lvedepa*"], ["https://tec.openplanner.team/stops/N201aqb", "https://tec.openplanner.team/stops/N201awb"], ["https://tec.openplanner.team/stops/H4gz115a", "https://tec.openplanner.team/stops/H4gz115b"], ["https://tec.openplanner.team/stops/N340adb", "https://tec.openplanner.team/stops/N340aea"], ["https://tec.openplanner.team/stops/LJAcent1", "https://tec.openplanner.team/stops/LJAcime1"], ["https://tec.openplanner.team/stops/N305aaa", "https://tec.openplanner.team/stops/N305aba"], ["https://tec.openplanner.team/stops/X804ata", "https://tec.openplanner.team/stops/X804bgb"], ["https://tec.openplanner.team/stops/H1pw120b", "https://tec.openplanner.team/stops/H1wa146b"], ["https://tec.openplanner.team/stops/LvA12--3", "https://tec.openplanner.team/stops/LvAschw1"], ["https://tec.openplanner.team/stops/H1hv131a", "https://tec.openplanner.team/stops/H1hv133b"], ["https://tec.openplanner.team/stops/N162aca", "https://tec.openplanner.team/stops/N162adb"], ["https://tec.openplanner.team/stops/Cmgpn2", "https://tec.openplanner.team/stops/Cmgvpa"], ["https://tec.openplanner.team/stops/X614bra", "https://tec.openplanner.team/stops/X614brb"], ["https://tec.openplanner.team/stops/LARgare3", "https://tec.openplanner.team/stops/LARgare4"], ["https://tec.openplanner.team/stops/Cpllimi1", "https://tec.openplanner.team/stops/Cpllimi4"], ["https://tec.openplanner.team/stops/N313ada", "https://tec.openplanner.team/stops/N313aea"], ["https://tec.openplanner.team/stops/H1ms303a", "https://tec.openplanner.team/stops/H1ms307a"], ["https://tec.openplanner.team/stops/N501kfb", "https://tec.openplanner.team/stops/N538axa"], ["https://tec.openplanner.team/stops/LFRbaro1", "https://tec.openplanner.team/stops/LFRhock1"], ["https://tec.openplanner.team/stops/H2ll181b", "https://tec.openplanner.team/stops/H2ll197a"], ["https://tec.openplanner.team/stops/LSOferr4", "https://tec.openplanner.team/stops/LSOladr1"], ["https://tec.openplanner.team/stops/Lstchu-3", "https://tec.openplanner.team/stops/Lstchu-4"], ["https://tec.openplanner.team/stops/Bovehst2", "https://tec.openplanner.team/stops/Bovevnd2"], ["https://tec.openplanner.team/stops/Lveoctr3", "https://tec.openplanner.team/stops/Lverdep2"], ["https://tec.openplanner.team/stops/H5rx102a", "https://tec.openplanner.team/stops/H5rx122b"], ["https://tec.openplanner.team/stops/X901afb", "https://tec.openplanner.team/stops/X902aza"], ["https://tec.openplanner.team/stops/H4av102b", "https://tec.openplanner.team/stops/H4av107b"], ["https://tec.openplanner.team/stops/LbRfrie1", "https://tec.openplanner.team/stops/LmAgruf1"], ["https://tec.openplanner.team/stops/Cfaterg6", "https://tec.openplanner.team/stops/Crsapol1"], ["https://tec.openplanner.team/stops/X901aea", "https://tec.openplanner.team/stops/X901ata"], ["https://tec.openplanner.team/stops/LENaout1", "https://tec.openplanner.team/stops/LSBsere2"], ["https://tec.openplanner.team/stops/H1mm131b", "https://tec.openplanner.team/stops/H1vb148b"], ["https://tec.openplanner.team/stops/Lsmrcim2", "https://tec.openplanner.team/stops/Lsmrwan2"], ["https://tec.openplanner.team/stops/Bbiecoc1", "https://tec.openplanner.team/stops/Bgzdsta1"], ["https://tec.openplanner.team/stops/LRE154-2", "https://tec.openplanner.team/stops/LRErive2"], ["https://tec.openplanner.team/stops/LVEbors1", "https://tec.openplanner.team/stops/LVEcacq2"], ["https://tec.openplanner.team/stops/H1ms314b", "https://tec.openplanner.team/stops/H1ms914a"], ["https://tec.openplanner.team/stops/H2hg268c", "https://tec.openplanner.team/stops/H2hg272a"], ["https://tec.openplanner.team/stops/N101aqa", "https://tec.openplanner.team/stops/N101aqb"], ["https://tec.openplanner.team/stops/Bitrh%C3%BBl1", "https://tec.openplanner.team/stops/Bitrh%C3%BBl2"], ["https://tec.openplanner.team/stops/Loujouh2", "https://tec.openplanner.team/stops/Lstvill2"], ["https://tec.openplanner.team/stops/Llgdart5", "https://tec.openplanner.team/stops/LlgguilA"], ["https://tec.openplanner.team/stops/Bwategp1", "https://tec.openplanner.team/stops/Bwatlbs1"], ["https://tec.openplanner.team/stops/Lcelhon2", "https://tec.openplanner.team/stops/Lceludg1"], ["https://tec.openplanner.team/stops/LNEgaul1", "https://tec.openplanner.team/stops/LNEgaul3"], ["https://tec.openplanner.team/stops/X923ala", "https://tec.openplanner.team/stops/X923apa"], ["https://tec.openplanner.team/stops/N528awb", "https://tec.openplanner.team/stops/N577ahb"], ["https://tec.openplanner.team/stops/LSsmond2", "https://tec.openplanner.team/stops/N506bqb"], ["https://tec.openplanner.team/stops/Cmqegl1", "https://tec.openplanner.team/stops/Cmqn5911"], ["https://tec.openplanner.team/stops/LCpegli2", "https://tec.openplanner.team/stops/LSPgend1"], ["https://tec.openplanner.team/stops/Bperalv1", "https://tec.openplanner.team/stops/Bperpla1"], ["https://tec.openplanner.team/stops/N291aab", "https://tec.openplanner.team/stops/N291aba"], ["https://tec.openplanner.team/stops/LAUmerc1", "https://tec.openplanner.team/stops/LLC170-2"], ["https://tec.openplanner.team/stops/H4rm107a", "https://tec.openplanner.team/stops/H4rm107d"], ["https://tec.openplanner.team/stops/N506abb", "https://tec.openplanner.team/stops/N512aea"], ["https://tec.openplanner.team/stops/H2mo122c", "https://tec.openplanner.team/stops/H2mo145b"], ["https://tec.openplanner.team/stops/H1hw120a", "https://tec.openplanner.team/stops/H1hw123a"], ["https://tec.openplanner.team/stops/X948ajb", "https://tec.openplanner.team/stops/X948ajc"], ["https://tec.openplanner.team/stops/LSNfays1", "https://tec.openplanner.team/stops/LSNness1"], ["https://tec.openplanner.team/stops/Bbuzcom2", "https://tec.openplanner.team/stops/Bnivvco2"], ["https://tec.openplanner.team/stops/H2me115a", "https://tec.openplanner.team/stops/H2me117a"], ["https://tec.openplanner.team/stops/H1mb129a", "https://tec.openplanner.team/stops/H1mb135b"], ["https://tec.openplanner.team/stops/Bwlhcsr2", "https://tec.openplanner.team/stops/Bwlhswc2"], ["https://tec.openplanner.team/stops/X608ala", "https://tec.openplanner.team/stops/X609adb"], ["https://tec.openplanner.team/stops/X891aba", "https://tec.openplanner.team/stops/X891abb"], ["https://tec.openplanner.team/stops/Bptrpla1", "https://tec.openplanner.team/stops/Bptrpla2"], ["https://tec.openplanner.team/stops/N577aca", "https://tec.openplanner.team/stops/N577aga"], ["https://tec.openplanner.team/stops/H1hn365a", "https://tec.openplanner.team/stops/H1ms940a"], ["https://tec.openplanner.team/stops/LVNleco2", "https://tec.openplanner.team/stops/LVNwanz2"], ["https://tec.openplanner.team/stops/Cgogb2", "https://tec.openplanner.team/stops/Cjucar02"], ["https://tec.openplanner.team/stops/H4ag100a", "https://tec.openplanner.team/stops/H4ag106b"], ["https://tec.openplanner.team/stops/Csbsart1", "https://tec.openplanner.team/stops/H1sa112b"], ["https://tec.openplanner.team/stops/LAWchau2", "https://tec.openplanner.team/stops/LBIfore1"], ["https://tec.openplanner.team/stops/H1ma233c", "https://tec.openplanner.team/stops/H1mj122b"], ["https://tec.openplanner.team/stops/CMmoul2", "https://tec.openplanner.team/stops/Cmorgof2"], ["https://tec.openplanner.team/stops/X345abb", "https://tec.openplanner.team/stops/X363aab"], ["https://tec.openplanner.team/stops/Bmanati1", "https://tec.openplanner.team/stops/H2mg135a"], ["https://tec.openplanner.team/stops/N526aaa", "https://tec.openplanner.team/stops/N526aab"], ["https://tec.openplanner.team/stops/N301aib", "https://tec.openplanner.team/stops/N301ajb"], ["https://tec.openplanner.team/stops/LAMjeha2", "https://tec.openplanner.team/stops/LJEtige2"], ["https://tec.openplanner.team/stops/Cmcbriq1", "https://tec.openplanner.team/stops/Cmcwir2"], ["https://tec.openplanner.team/stops/NL76aia", "https://tec.openplanner.team/stops/NL77ada"], ["https://tec.openplanner.team/stops/Ctilobb1", "https://tec.openplanner.team/stops/H1mc128b"], ["https://tec.openplanner.team/stops/LeLherz2", "https://tec.openplanner.team/stops/LkAkirc2"], ["https://tec.openplanner.team/stops/LRccent1", "https://tec.openplanner.team/stops/LRccent2"], ["https://tec.openplanner.team/stops/H5rx120b", "https://tec.openplanner.team/stops/H5rx126b"], ["https://tec.openplanner.team/stops/H1bi103a", "https://tec.openplanner.team/stops/H1bi103b"], ["https://tec.openplanner.team/stops/X991afa", "https://tec.openplanner.team/stops/X991aja"], ["https://tec.openplanner.team/stops/Cjubien2", "https://tec.openplanner.team/stops/Cjuunio2"], ["https://tec.openplanner.team/stops/Cradado1", "https://tec.openplanner.team/stops/Crajasm3"], ["https://tec.openplanner.team/stops/Lghviad1", "https://tec.openplanner.team/stops/Ljecocc2"], ["https://tec.openplanner.team/stops/N204agb", "https://tec.openplanner.team/stops/N204ahb"], ["https://tec.openplanner.team/stops/N244aeb", "https://tec.openplanner.team/stops/N244aub"], ["https://tec.openplanner.team/stops/N584bqa", "https://tec.openplanner.team/stops/NC12aab"], ["https://tec.openplanner.team/stops/X617ahb", "https://tec.openplanner.team/stops/X696aka"], ["https://tec.openplanner.team/stops/Lsnlhon1", "https://tec.openplanner.team/stops/Lsnvand1"], ["https://tec.openplanner.team/stops/H4cp103a", "https://tec.openplanner.team/stops/H4lz163a"], ["https://tec.openplanner.team/stops/X812ajb", "https://tec.openplanner.team/stops/X812aka"], ["https://tec.openplanner.team/stops/N563aab", "https://tec.openplanner.team/stops/N585alb"], ["https://tec.openplanner.team/stops/LAyheid1", "https://tec.openplanner.team/stops/LPRbayb2"], ["https://tec.openplanner.team/stops/N137aec", "https://tec.openplanner.team/stops/N137aga"], ["https://tec.openplanner.team/stops/X839aba", "https://tec.openplanner.team/stops/X839abd"], ["https://tec.openplanner.team/stops/H4pi131b", "https://tec.openplanner.team/stops/H4pi132a"], ["https://tec.openplanner.team/stops/N501bva", "https://tec.openplanner.team/stops/N501bwb"], ["https://tec.openplanner.team/stops/LWHmath2", "https://tec.openplanner.team/stops/LWSstat2"], ["https://tec.openplanner.team/stops/Bllngal1", "https://tec.openplanner.team/stops/Bllnmet1"], ["https://tec.openplanner.team/stops/X744aab", "https://tec.openplanner.team/stops/X746agc"], ["https://tec.openplanner.team/stops/N509ala", "https://tec.openplanner.team/stops/N509alb"], ["https://tec.openplanner.team/stops/Bovetwe1", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://tec.openplanner.team/stops/H2ll172b", "https://tec.openplanner.team/stops/H2ll181a"], ["https://tec.openplanner.team/stops/X908apa", "https://tec.openplanner.team/stops/X910aab"], ["https://tec.openplanner.team/stops/LDppana1", "https://tec.openplanner.team/stops/LTErest1"], ["https://tec.openplanner.team/stops/Lvegc-1*", "https://tec.openplanner.team/stops/Lveharm2"], ["https://tec.openplanner.team/stops/H1so132a", "https://tec.openplanner.team/stops/H1so132b"], ["https://tec.openplanner.team/stops/Blimrof1", "https://tec.openplanner.team/stops/Brixeur5"], ["https://tec.openplanner.team/stops/Lbocarr1", "https://tec.openplanner.team/stops/LTIcime1"], ["https://tec.openplanner.team/stops/LFethie1", "https://tec.openplanner.team/stops/LTrmaro2"], ["https://tec.openplanner.team/stops/X615akb", "https://tec.openplanner.team/stops/X615alb"], ["https://tec.openplanner.team/stops/N117aqb", "https://tec.openplanner.team/stops/N117bcb"], ["https://tec.openplanner.team/stops/X601aja", "https://tec.openplanner.team/stops/X601bta"], ["https://tec.openplanner.team/stops/X822acb", "https://tec.openplanner.team/stops/X822aqa"], ["https://tec.openplanner.team/stops/Cstgare1", "https://tec.openplanner.team/stops/Cstgare2"], ["https://tec.openplanner.team/stops/H4ka176a", "https://tec.openplanner.team/stops/H4ka176b"], ["https://tec.openplanner.team/stops/LDLbeau1", "https://tec.openplanner.team/stops/LHYwach1"], ["https://tec.openplanner.team/stops/X750avb", "https://tec.openplanner.team/stops/X750bfa"], ["https://tec.openplanner.team/stops/H4hx116a", "https://tec.openplanner.team/stops/H4hx123b"], ["https://tec.openplanner.team/stops/N235aba", "https://tec.openplanner.team/stops/N235aga"], ["https://tec.openplanner.team/stops/Lchsart2", "https://tec.openplanner.team/stops/LHAheml2"], ["https://tec.openplanner.team/stops/X746aea", "https://tec.openplanner.team/stops/X746agd"], ["https://tec.openplanner.team/stops/Blmlgar2", "https://tec.openplanner.team/stops/Blmlpla1"], ["https://tec.openplanner.team/stops/Brsggar2", "https://tec.openplanner.team/stops/Brsgter2"], ["https://tec.openplanner.team/stops/N540acc", "https://tec.openplanner.team/stops/N540ada"], ["https://tec.openplanner.team/stops/LWbboeg2", "https://tec.openplanner.team/stops/LWbburn2"], ["https://tec.openplanner.team/stops/X789aaa", "https://tec.openplanner.team/stops/X789aca"], ["https://tec.openplanner.team/stops/N522abc", "https://tec.openplanner.team/stops/N522afa"], ["https://tec.openplanner.team/stops/X793aca", "https://tec.openplanner.team/stops/X793aeb"], ["https://tec.openplanner.team/stops/Clddelh2", "https://tec.openplanner.team/stops/Cldplac2"], ["https://tec.openplanner.team/stops/Crocona1", "https://tec.openplanner.team/stops/Cromart2"], ["https://tec.openplanner.team/stops/Bhaldbo1", "https://tec.openplanner.team/stops/Blemwro1"], ["https://tec.openplanner.team/stops/Caimeno3", "https://tec.openplanner.team/stops/Caimeno4"], ["https://tec.openplanner.team/stops/LLrfagn1", "https://tec.openplanner.team/stops/LSMpoin2"], ["https://tec.openplanner.team/stops/LBEnina1", "https://tec.openplanner.team/stops/LBEnina6"], ["https://tec.openplanner.team/stops/H4av106d", "https://tec.openplanner.team/stops/H4ff115b"], ["https://tec.openplanner.team/stops/LFCscho2", "https://tec.openplanner.team/stops/LFCvoge3"], ["https://tec.openplanner.team/stops/LhEherb1", "https://tec.openplanner.team/stops/LhEherb2"], ["https://tec.openplanner.team/stops/X818arb", "https://tec.openplanner.team/stops/X818asd"], ["https://tec.openplanner.team/stops/LRchaie2", "https://tec.openplanner.team/stops/LRcjard1"], ["https://tec.openplanner.team/stops/LSTec--2", "https://tec.openplanner.team/stops/LSTrema2"], ["https://tec.openplanner.team/stops/Bjodppe2", "https://tec.openplanner.team/stops/Bjodpvi2"], ["https://tec.openplanner.team/stops/LEHhaut2", "https://tec.openplanner.team/stops/LEHmarc2"], ["https://tec.openplanner.team/stops/Lveclin2", "https://tec.openplanner.team/stops/Lverogi2"], ["https://tec.openplanner.team/stops/N106aea", "https://tec.openplanner.team/stops/N106aqa"], ["https://tec.openplanner.team/stops/LXofont1", "https://tec.openplanner.team/stops/X599afd"], ["https://tec.openplanner.team/stops/NL77aja", "https://tec.openplanner.team/stops/NL77ala"], ["https://tec.openplanner.team/stops/Bbeaegl2", "https://tec.openplanner.team/stops/Bbearwa2"], ["https://tec.openplanner.team/stops/Ctisart1", "https://tec.openplanner.team/stops/H1tt107a"], ["https://tec.openplanner.team/stops/X618aha", "https://tec.openplanner.team/stops/X618aia"], ["https://tec.openplanner.team/stops/LAVcime2", "https://tec.openplanner.team/stops/LAVstat1"], ["https://tec.openplanner.team/stops/H1ch132b", "https://tec.openplanner.team/stops/H4tm140b"], ["https://tec.openplanner.team/stops/Bcrbbou1", "https://tec.openplanner.team/stops/Bmsggra3"], ["https://tec.openplanner.team/stops/N534agb", "https://tec.openplanner.team/stops/N534cbh"], ["https://tec.openplanner.team/stops/LTPsatr2", "https://tec.openplanner.team/stops/LTPspay1"], ["https://tec.openplanner.team/stops/X823aaa", "https://tec.openplanner.team/stops/X823abb"], ["https://tec.openplanner.team/stops/LSkyern1", "https://tec.openplanner.team/stops/LYegeor1"], ["https://tec.openplanner.team/stops/LmYkirc2", "https://tec.openplanner.team/stops/LmYkreu1"], ["https://tec.openplanner.team/stops/Bolgegl2", "https://tec.openplanner.team/stops/Bolgegl4"], ["https://tec.openplanner.team/stops/LBveg--1", "https://tec.openplanner.team/stops/LBveg--2"], ["https://tec.openplanner.team/stops/X820aaa", "https://tec.openplanner.team/stops/X820aia"], ["https://tec.openplanner.team/stops/X661aib", "https://tec.openplanner.team/stops/X661bca"], ["https://tec.openplanner.team/stops/N248ada", "https://tec.openplanner.team/stops/N248aea"], ["https://tec.openplanner.team/stops/N220aab", "https://tec.openplanner.team/stops/N221aab"], ["https://tec.openplanner.team/stops/Cwgmart2", "https://tec.openplanner.team/stops/Cwgmell1"], ["https://tec.openplanner.team/stops/H2ha132b", "https://tec.openplanner.team/stops/H2ha139b"], ["https://tec.openplanner.team/stops/X831aab", "https://tec.openplanner.team/stops/X831abb"], ["https://tec.openplanner.team/stops/N501fsa", "https://tec.openplanner.team/stops/N501mtd"], ["https://tec.openplanner.team/stops/H5wo125b", "https://tec.openplanner.team/stops/H5wo134b"], ["https://tec.openplanner.team/stops/X768aka", "https://tec.openplanner.team/stops/X768amb"], ["https://tec.openplanner.team/stops/Bohnrpl1", "https://tec.openplanner.team/stops/Bohnrpl2"], ["https://tec.openplanner.team/stops/LSPClem2", "https://tec.openplanner.team/stops/LSPgare*"], ["https://tec.openplanner.team/stops/Lhrbell2", "https://tec.openplanner.team/stops/Lhrecol1"], ["https://tec.openplanner.team/stops/Llgdarc2", "https://tec.openplanner.team/stops/Llghec-3"], ["https://tec.openplanner.team/stops/Brixchw1", "https://tec.openplanner.team/stops/Brixwav3"], ["https://tec.openplanner.team/stops/Bpiepnd1", "https://tec.openplanner.team/stops/Bpiepnd2"], ["https://tec.openplanner.team/stops/X362aba", "https://tec.openplanner.team/stops/X362abb"], ["https://tec.openplanner.team/stops/LWEchat1", "https://tec.openplanner.team/stops/LWEhang1"], ["https://tec.openplanner.team/stops/H1ro132b", "https://tec.openplanner.team/stops/H1ro137b"], ["https://tec.openplanner.team/stops/Lwaeau-1", "https://tec.openplanner.team/stops/Lwaeau-2"], ["https://tec.openplanner.team/stops/H4he104a", "https://tec.openplanner.team/stops/H4he107b"], ["https://tec.openplanner.team/stops/Cfodepo2", "https://tec.openplanner.team/stops/CMpara1"], ["https://tec.openplanner.team/stops/NR21aca", "https://tec.openplanner.team/stops/NR21afb"], ["https://tec.openplanner.team/stops/H2go119a", "https://tec.openplanner.team/stops/H2se115a"], ["https://tec.openplanner.team/stops/N136aab", "https://tec.openplanner.team/stops/N136aea"], ["https://tec.openplanner.team/stops/Lgreg--1", "https://tec.openplanner.team/stops/Lgrgoff2"], ["https://tec.openplanner.team/stops/LBNeup21", "https://tec.openplanner.team/stops/LMemaza1"], ["https://tec.openplanner.team/stops/N509aqb", "https://tec.openplanner.team/stops/N509avb"], ["https://tec.openplanner.team/stops/Lmopast2", "https://tec.openplanner.team/stops/Lmopave1"], ["https://tec.openplanner.team/stops/LBKmare1", "https://tec.openplanner.team/stops/LBveg--1"], ["https://tec.openplanner.team/stops/X626aaa", "https://tec.openplanner.team/stops/X626aba"], ["https://tec.openplanner.team/stops/X989aga", "https://tec.openplanner.team/stops/X995aga"], ["https://tec.openplanner.team/stops/LAUcarr1", "https://tec.openplanner.team/stops/LAUpind2"], ["https://tec.openplanner.team/stops/LeUdepo1", "https://tec.openplanner.team/stops/LeUgend1"], ["https://tec.openplanner.team/stops/LrEdic71", "https://tec.openplanner.team/stops/LrEkape1"], ["https://tec.openplanner.team/stops/N558aaa", "https://tec.openplanner.team/stops/NL67ada"], ["https://tec.openplanner.team/stops/H5pe129a", "https://tec.openplanner.team/stops/H5pe146b"], ["https://tec.openplanner.team/stops/X650aka", "https://tec.openplanner.team/stops/X651aaa"], ["https://tec.openplanner.team/stops/Bwavcar1", "https://tec.openplanner.team/stops/Bwavlav1"], ["https://tec.openplanner.team/stops/LmIcafe1", "https://tec.openplanner.team/stops/LmIcafe2"], ["https://tec.openplanner.team/stops/LDmwaef2", "https://tec.openplanner.team/stops/LHovach2"], ["https://tec.openplanner.team/stops/X766aga", "https://tec.openplanner.team/stops/X766aha"], ["https://tec.openplanner.team/stops/H4me211b", "https://tec.openplanner.team/stops/H4me211c"], ["https://tec.openplanner.team/stops/X941adb", "https://tec.openplanner.team/stops/X942agb"], ["https://tec.openplanner.team/stops/Cjuplco2", "https://tec.openplanner.team/stops/Cjuspin2"], ["https://tec.openplanner.team/stops/X622aab", "https://tec.openplanner.team/stops/X622aea"], ["https://tec.openplanner.team/stops/H1gn150b", "https://tec.openplanner.team/stops/H1hq126a"], ["https://tec.openplanner.team/stops/N353aeb", "https://tec.openplanner.team/stops/N383abb"], ["https://tec.openplanner.team/stops/N360aab", "https://tec.openplanner.team/stops/N360acb"], ["https://tec.openplanner.team/stops/LTHcent1", "https://tec.openplanner.team/stops/LTHmaka1"], ["https://tec.openplanner.team/stops/X746aha", "https://tec.openplanner.team/stops/X746ahc"], ["https://tec.openplanner.team/stops/LFRcoun2", "https://tec.openplanner.team/stops/LFRsp1-1"], ["https://tec.openplanner.team/stops/Blasbpr1", "https://tec.openplanner.team/stops/Blasvil3"], ["https://tec.openplanner.team/stops/Cjumall1", "https://tec.openplanner.team/stops/Cjumall6"], ["https://tec.openplanner.team/stops/X822akb", "https://tec.openplanner.team/stops/X822ana"], ["https://tec.openplanner.team/stops/Cmlbevu1", "https://tec.openplanner.team/stops/Cmlcons1"], ["https://tec.openplanner.team/stops/Bsdafra2", "https://tec.openplanner.team/stops/Bsdapir2"], ["https://tec.openplanner.team/stops/H4bn174a", "https://tec.openplanner.team/stops/H4bn174b"], ["https://tec.openplanner.team/stops/LDLbois1", "https://tec.openplanner.team/stops/LLNcime1"], ["https://tec.openplanner.team/stops/H1ha190b", "https://tec.openplanner.team/stops/H1ob336b"], ["https://tec.openplanner.team/stops/LhOzent2", "https://tec.openplanner.team/stops/LhUkape1"], ["https://tec.openplanner.team/stops/LVIhala3", "https://tec.openplanner.team/stops/LVIhala4"], ["https://tec.openplanner.team/stops/LHYlinc1", "https://tec.openplanner.team/stops/LHYwach2"], ["https://tec.openplanner.team/stops/Bbiepon1", "https://tec.openplanner.team/stops/Bbiepon2"], ["https://tec.openplanner.team/stops/X734aga", "https://tec.openplanner.team/stops/X953aaa"], ["https://tec.openplanner.team/stops/LHreg--2", "https://tec.openplanner.team/stops/LHrwaya1"], ["https://tec.openplanner.team/stops/LKmdrie1", "https://tec.openplanner.team/stops/LKmeg--1"], ["https://tec.openplanner.team/stops/Bblaelo1", "https://tec.openplanner.team/stops/Bblaphi1"], ["https://tec.openplanner.team/stops/H1as104a", "https://tec.openplanner.team/stops/H1hg178a"], ["https://tec.openplanner.team/stops/LSTgran2", "https://tec.openplanner.team/stops/LSTparf2"], ["https://tec.openplanner.team/stops/Lchsart2", "https://tec.openplanner.team/stops/Lchtche2"], ["https://tec.openplanner.team/stops/H2fa100a", "https://tec.openplanner.team/stops/H2fa100b"], ["https://tec.openplanner.team/stops/Bhmmcha1", "https://tec.openplanner.team/stops/Bhmmgar1"], ["https://tec.openplanner.team/stops/Bbsicul2", "https://tec.openplanner.team/stops/Bbsihau1"], ["https://tec.openplanner.team/stops/X744aea", "https://tec.openplanner.team/stops/X744afa"], ["https://tec.openplanner.team/stops/H1ba107b", "https://tec.openplanner.team/stops/H1ba113b"], ["https://tec.openplanner.team/stops/Bmlncle1", "https://tec.openplanner.team/stops/Bmlnpab1"], ["https://tec.openplanner.team/stops/LBSvi321", "https://tec.openplanner.team/stops/LBSvi322"], ["https://tec.openplanner.team/stops/Cmyrays1", "https://tec.openplanner.team/stops/Cmyvesa2"], ["https://tec.openplanner.team/stops/Bpergar1", "https://tec.openplanner.team/stops/Bpermon3"], ["https://tec.openplanner.team/stops/Ctafran1", "https://tec.openplanner.team/stops/N543bka"], ["https://tec.openplanner.team/stops/Ljubonf1", "https://tec.openplanner.team/stops/Ljufore2"], ["https://tec.openplanner.team/stops/LCvneuf1", "https://tec.openplanner.team/stops/LCvoufn1"], ["https://tec.openplanner.team/stops/X786aca", "https://tec.openplanner.team/stops/X786aeb"], ["https://tec.openplanner.team/stops/X923afb", "https://tec.openplanner.team/stops/X923ara"], ["https://tec.openplanner.team/stops/X768aib", "https://tec.openplanner.team/stops/X769ala"], ["https://tec.openplanner.team/stops/N301agb", "https://tec.openplanner.team/stops/N340aia"], ["https://tec.openplanner.team/stops/Bsamfma1", "https://tec.openplanner.team/stops/Cwgmell4"], ["https://tec.openplanner.team/stops/LJvbane1", "https://tec.openplanner.team/stops/X576aga"], ["https://tec.openplanner.team/stops/X601bbd", "https://tec.openplanner.team/stops/X601bca"], ["https://tec.openplanner.team/stops/N520adb", "https://tec.openplanner.team/stops/N520aeb"], ["https://tec.openplanner.team/stops/Bhlvvil2", "https://tec.openplanner.team/stops/Bhlvvil3"], ["https://tec.openplanner.team/stops/H4be145a", "https://tec.openplanner.team/stops/H4be145b"], ["https://tec.openplanner.team/stops/NC44afb", "https://tec.openplanner.team/stops/NC44afc"], ["https://tec.openplanner.team/stops/N331afb", "https://tec.openplanner.team/stops/N331aga"], ["https://tec.openplanner.team/stops/LHUeuro1", "https://tec.openplanner.team/stops/LHUeuro2"], ["https://tec.openplanner.team/stops/X802apb", "https://tec.openplanner.team/stops/X882aha"], ["https://tec.openplanner.team/stops/Llghong1", "https://tec.openplanner.team/stops/Llghong2"], ["https://tec.openplanner.team/stops/Crajasm1", "https://tec.openplanner.team/stops/Crajasm4"], ["https://tec.openplanner.team/stops/LAvchpl1", "https://tec.openplanner.team/stops/LAvchpl2"], ["https://tec.openplanner.team/stops/X896aea", "https://tec.openplanner.team/stops/X896aia"], ["https://tec.openplanner.team/stops/Ccicloc2", "https://tec.openplanner.team/stops/Clvndam2"], ["https://tec.openplanner.team/stops/LaLkabi1", "https://tec.openplanner.team/stops/LBhschu2"], ["https://tec.openplanner.team/stops/Lanrois2", "https://tec.openplanner.team/stops/Lantonn2"], ["https://tec.openplanner.team/stops/Lalexpa1", "https://tec.openplanner.team/stops/Lrc594-2"], ["https://tec.openplanner.team/stops/LLrhaut1", "https://tec.openplanner.team/stops/LLrhaut2"], ["https://tec.openplanner.team/stops/X224aeb", "https://tec.openplanner.team/stops/X224afa"], ["https://tec.openplanner.team/stops/H4ty319b", "https://tec.openplanner.team/stops/H4ty345b"], ["https://tec.openplanner.team/stops/LBachpl1", "https://tec.openplanner.team/stops/LBavive2"], ["https://tec.openplanner.team/stops/X715aqb", "https://tec.openplanner.team/stops/X781ada"], ["https://tec.openplanner.team/stops/Ccocorb2", "https://tec.openplanner.team/stops/Cpcchau"], ["https://tec.openplanner.team/stops/Bottegl2", "https://tec.openplanner.team/stops/Bottpma2"], ["https://tec.openplanner.team/stops/X610aja", "https://tec.openplanner.team/stops/X696aea"], ["https://tec.openplanner.team/stops/N507ajb", "https://tec.openplanner.team/stops/N507aob"], ["https://tec.openplanner.team/stops/Lsecast1", "https://tec.openplanner.team/stops/Lsecast2"], ["https://tec.openplanner.team/stops/Lmiensp*", "https://tec.openplanner.team/stops/Lmitech1"], ["https://tec.openplanner.team/stops/X602akb", "https://tec.openplanner.team/stops/X602amb"], ["https://tec.openplanner.team/stops/Cselait2", "https://tec.openplanner.team/stops/Cselibe2"], ["https://tec.openplanner.team/stops/N118aga", "https://tec.openplanner.team/stops/N118aha"], ["https://tec.openplanner.team/stops/X659axb", "https://tec.openplanner.team/stops/X672aja"], ["https://tec.openplanner.team/stops/N254aca", "https://tec.openplanner.team/stops/N254acb"], ["https://tec.openplanner.team/stops/X839aaa", "https://tec.openplanner.team/stops/X839abd"], ["https://tec.openplanner.team/stops/LwYboui2", "https://tec.openplanner.team/stops/LwYkreu3"], ["https://tec.openplanner.team/stops/Ccugail1", "https://tec.openplanner.team/stops/Ccuphai4"], ["https://tec.openplanner.team/stops/X982bca", "https://tec.openplanner.team/stops/X982bja"], ["https://tec.openplanner.team/stops/H4pi131a", "https://tec.openplanner.team/stops/H4wp153b"], ["https://tec.openplanner.team/stops/LGMdrev1", "https://tec.openplanner.team/stops/LGMhadr1"], ["https://tec.openplanner.team/stops/N501gib", "https://tec.openplanner.team/stops/N501gnb"], ["https://tec.openplanner.team/stops/X734ahb", "https://tec.openplanner.team/stops/X734aia"], ["https://tec.openplanner.team/stops/Cfrmon4", "https://tec.openplanner.team/stops/Cfrmonu1"], ["https://tec.openplanner.team/stops/X850aja", "https://tec.openplanner.team/stops/X850akb"], ["https://tec.openplanner.team/stops/N517aeb", "https://tec.openplanner.team/stops/N517afb"], ["https://tec.openplanner.team/stops/X659agb", "https://tec.openplanner.team/stops/X659ana"], ["https://tec.openplanner.team/stops/H2hl111a", "https://tec.openplanner.team/stops/H2hl111b"], ["https://tec.openplanner.team/stops/Cmtcapi1", "https://tec.openplanner.team/stops/Cmtstan2"], ["https://tec.openplanner.team/stops/X615aaa", "https://tec.openplanner.team/stops/X615afb"], ["https://tec.openplanner.team/stops/H1ne138b", "https://tec.openplanner.team/stops/H1ne140a"], ["https://tec.openplanner.team/stops/X994aia", "https://tec.openplanner.team/stops/X994alb"], ["https://tec.openplanner.team/stops/H1fl133e", "https://tec.openplanner.team/stops/H1je219a"], ["https://tec.openplanner.team/stops/X721afa", "https://tec.openplanner.team/stops/X721afb"], ["https://tec.openplanner.team/stops/N534aua", "https://tec.openplanner.team/stops/N534bdb"], ["https://tec.openplanner.team/stops/Bcrnncb1", "https://tec.openplanner.team/stops/Bcrnnpl1"], ["https://tec.openplanner.team/stops/Lmitroi1", "https://tec.openplanner.team/stops/Lvtauna2"], ["https://tec.openplanner.team/stops/H1so135a", "https://tec.openplanner.team/stops/H1so135b"], ["https://tec.openplanner.team/stops/H4mo184a", "https://tec.openplanner.team/stops/H4mo205a"], ["https://tec.openplanner.team/stops/X618aca", "https://tec.openplanner.team/stops/X619ada"], ["https://tec.openplanner.team/stops/Ljuprev4", "https://tec.openplanner.team/stops/Llgcouv2"], ["https://tec.openplanner.team/stops/LAibego2", "https://tec.openplanner.team/stops/LCacoop1"], ["https://tec.openplanner.team/stops/Bsdabja1", "https://tec.openplanner.team/stops/Bsdafra1"], ["https://tec.openplanner.team/stops/Bolppla2", "https://tec.openplanner.team/stops/Bolppsn1"], ["https://tec.openplanner.team/stops/X717aab", "https://tec.openplanner.team/stops/X717aeb"], ["https://tec.openplanner.team/stops/Bbuzeta2", "https://tec.openplanner.team/stops/Cobhaut1"], ["https://tec.openplanner.team/stops/N501mha", "https://tec.openplanner.team/stops/N501mqa"], ["https://tec.openplanner.team/stops/Lflrhot1", "https://tec.openplanner.team/stops/Lflrhot2"], ["https://tec.openplanner.team/stops/N152aad", "https://tec.openplanner.team/stops/N152aaf"], ["https://tec.openplanner.team/stops/LNAdemo1", "https://tec.openplanner.team/stops/LYEphar1"], ["https://tec.openplanner.team/stops/X995ada", "https://tec.openplanner.team/stops/X995ade"], ["https://tec.openplanner.team/stops/Ccucroi1", "https://tec.openplanner.team/stops/Ccugail1"], ["https://tec.openplanner.team/stops/H1gh147a", "https://tec.openplanner.team/stops/H1gh148a"], ["https://tec.openplanner.team/stops/LBaeg--2", "https://tec.openplanner.team/stops/LBafagn1"], ["https://tec.openplanner.team/stops/X766adb", "https://tec.openplanner.team/stops/X766aja"], ["https://tec.openplanner.team/stops/Ccogrbu1", "https://tec.openplanner.team/stops/Ccosart1"], ["https://tec.openplanner.team/stops/N244ata", "https://tec.openplanner.team/stops/N244atb"], ["https://tec.openplanner.team/stops/Ljumart1", "https://tec.openplanner.team/stops/Ljumart2"], ["https://tec.openplanner.team/stops/LHAstal1", "https://tec.openplanner.team/stops/Lviweri2"], ["https://tec.openplanner.team/stops/X764aga", "https://tec.openplanner.team/stops/X764agb"], ["https://tec.openplanner.team/stops/Ccofayt1", "https://tec.openplanner.team/stops/Ccofayt2"], ["https://tec.openplanner.team/stops/Clodupr1", "https://tec.openplanner.team/stops/Clodupr2"], ["https://tec.openplanner.team/stops/N506bob", "https://tec.openplanner.team/stops/N506boc"], ["https://tec.openplanner.team/stops/X725bdb", "https://tec.openplanner.team/stops/X770aaa"], ["https://tec.openplanner.team/stops/H4lh118a", "https://tec.openplanner.team/stops/H5wo126b"], ["https://tec.openplanner.team/stops/H2bh105b", "https://tec.openplanner.team/stops/H2bh112a"], ["https://tec.openplanner.team/stops/X359agb", "https://tec.openplanner.team/stops/X359aha"], ["https://tec.openplanner.team/stops/Bmarmpr2", "https://tec.openplanner.team/stops/Bmarmru1"], ["https://tec.openplanner.team/stops/X721aka", "https://tec.openplanner.team/stops/X721ala"], ["https://tec.openplanner.team/stops/N513adb", "https://tec.openplanner.team/stops/N513aeb"], ["https://tec.openplanner.team/stops/H2ha127b", "https://tec.openplanner.team/stops/H2ha128b"], ["https://tec.openplanner.team/stops/H1cu117c", "https://tec.openplanner.team/stops/H1cu122a"], ["https://tec.openplanner.team/stops/H1og131a", "https://tec.openplanner.team/stops/H1og133b"], ["https://tec.openplanner.team/stops/Lwaaube2", "https://tec.openplanner.team/stops/Lwapomp2"], ["https://tec.openplanner.team/stops/LmR90--2", "https://tec.openplanner.team/stops/LmRkape1"], ["https://tec.openplanner.team/stops/N501jea", "https://tec.openplanner.team/stops/N501jja"], ["https://tec.openplanner.team/stops/X879aib", "https://tec.openplanner.team/stops/X879ana"], ["https://tec.openplanner.team/stops/Caihai81", "https://tec.openplanner.team/stops/Caioign3"], ["https://tec.openplanner.team/stops/Lstauna2", "https://tec.openplanner.team/stops/Lstetud1"], ["https://tec.openplanner.team/stops/H4os220a", "https://tec.openplanner.team/stops/H4os221c"], ["https://tec.openplanner.team/stops/Lvcchau2", "https://tec.openplanner.team/stops/Lvcchev1"], ["https://tec.openplanner.team/stops/X725bdb", "https://tec.openplanner.team/stops/X725bfa"], ["https://tec.openplanner.team/stops/Lcceclu2", "https://tec.openplanner.team/stops/LRarami2"], ["https://tec.openplanner.team/stops/Cromonn1", "https://tec.openplanner.team/stops/Cromonn2"], ["https://tec.openplanner.team/stops/H1el133a", "https://tec.openplanner.team/stops/H1el138b"], ["https://tec.openplanner.team/stops/X601bva", "https://tec.openplanner.team/stops/X601cda"], ["https://tec.openplanner.team/stops/H4pl111a", "https://tec.openplanner.team/stops/H4pl135a"], ["https://tec.openplanner.team/stops/Cctrobe1", "https://tec.openplanner.team/stops/NC11aia"], ["https://tec.openplanner.team/stops/LWAchpg2", "https://tec.openplanner.team/stops/LWAcost2"], ["https://tec.openplanner.team/stops/N104aka", "https://tec.openplanner.team/stops/N104akb"], ["https://tec.openplanner.team/stops/Cmgbrou1", "https://tec.openplanner.team/stops/Cmgbrou2"], ["https://tec.openplanner.team/stops/NC02aba", "https://tec.openplanner.team/stops/NC02abb"], ["https://tec.openplanner.team/stops/H5gr135a", "https://tec.openplanner.team/stops/H5gr138a"], ["https://tec.openplanner.team/stops/Ccspla", "https://tec.openplanner.team/stops/N162afb"], ["https://tec.openplanner.team/stops/Llgdepo5", "https://tec.openplanner.team/stops/Llgdepo6"], ["https://tec.openplanner.team/stops/N547aja", "https://tec.openplanner.team/stops/N548awa"], ["https://tec.openplanner.team/stops/H4bv145a", "https://tec.openplanner.team/stops/H4re226b"], ["https://tec.openplanner.team/stops/N221aaa", "https://tec.openplanner.team/stops/N221aab"], ["https://tec.openplanner.team/stops/N103aba", "https://tec.openplanner.team/stops/N103abb"], ["https://tec.openplanner.team/stops/Lsmlina*", "https://tec.openplanner.team/stops/Lsmpost2"], ["https://tec.openplanner.team/stops/N501bra", "https://tec.openplanner.team/stops/N501jbb"], ["https://tec.openplanner.team/stops/H4ga161d", "https://tec.openplanner.team/stops/H4ga167b"], ["https://tec.openplanner.team/stops/N525aba", "https://tec.openplanner.team/stops/N525abb"], ["https://tec.openplanner.team/stops/Bbiecim1", "https://tec.openplanner.team/stops/Bgzdast1"], ["https://tec.openplanner.team/stops/Brebeau2", "https://tec.openplanner.team/stops/Bsteegl1"], ["https://tec.openplanner.team/stops/N501edb", "https://tec.openplanner.team/stops/N501epd"], ["https://tec.openplanner.team/stops/H4bs111a", "https://tec.openplanner.team/stops/H4bs112a"], ["https://tec.openplanner.team/stops/H1ba109b", "https://tec.openplanner.team/stops/H1ba119d"], ["https://tec.openplanner.team/stops/X758ahb", "https://tec.openplanner.team/stops/X759agb"], ["https://tec.openplanner.team/stops/H5at111b", "https://tec.openplanner.team/stops/H5at235b"], ["https://tec.openplanner.team/stops/H4ty293a", "https://tec.openplanner.team/stops/H4ty354b"], ["https://tec.openplanner.team/stops/N501bzb", "https://tec.openplanner.team/stops/N502ada"], ["https://tec.openplanner.team/stops/N501arb", "https://tec.openplanner.team/stops/N501bab"], ["https://tec.openplanner.team/stops/Brixpla2", "https://tec.openplanner.team/stops/Brixpro2"], ["https://tec.openplanner.team/stops/Ldidefo2", "https://tec.openplanner.team/stops/Ldipl--5"], ["https://tec.openplanner.team/stops/H1he105a", "https://tec.openplanner.team/stops/H1he107a"], ["https://tec.openplanner.team/stops/N512agb", "https://tec.openplanner.team/stops/N512agd"], ["https://tec.openplanner.team/stops/Cvlbvir2", "https://tec.openplanner.team/stops/Cvlgrta2"], ["https://tec.openplanner.team/stops/N531alb", "https://tec.openplanner.team/stops/N568abb"], ["https://tec.openplanner.team/stops/Cchcase3", "https://tec.openplanner.team/stops/CMjans1"], ["https://tec.openplanner.team/stops/X947aaa", "https://tec.openplanner.team/stops/X948aba"], ["https://tec.openplanner.team/stops/LHHgare1", "https://tec.openplanner.team/stops/LHHpt--4"], ["https://tec.openplanner.team/stops/H4lp122a", "https://tec.openplanner.team/stops/H4lp125b"], ["https://tec.openplanner.team/stops/LLVboss1", "https://tec.openplanner.team/stops/LLVe75-1"], ["https://tec.openplanner.team/stops/LBRbriv2", "https://tec.openplanner.team/stops/LBRmout3"], ["https://tec.openplanner.team/stops/H1ms251b", "https://tec.openplanner.team/stops/H1ms267a"], ["https://tec.openplanner.team/stops/X904aia", "https://tec.openplanner.team/stops/X904aja"], ["https://tec.openplanner.team/stops/H1je222b", "https://tec.openplanner.team/stops/H1je366b"], ["https://tec.openplanner.team/stops/H1pa104b", "https://tec.openplanner.team/stops/H1pa109b"], ["https://tec.openplanner.team/stops/N212aka", "https://tec.openplanner.team/stops/N226acb"], ["https://tec.openplanner.team/stops/X992aab", "https://tec.openplanner.team/stops/X992aba"], ["https://tec.openplanner.team/stops/Bhencha1", "https://tec.openplanner.team/stops/Bhencha2"], ["https://tec.openplanner.team/stops/Bvxgegl1", "https://tec.openplanner.team/stops/Cgnquer1"], ["https://tec.openplanner.team/stops/N521apa", "https://tec.openplanner.team/stops/N521apb"], ["https://tec.openplanner.team/stops/H2be100a", "https://tec.openplanner.team/stops/H2be101a"], ["https://tec.openplanner.team/stops/LmIkirc1", "https://tec.openplanner.team/stops/LmIkirc2"], ["https://tec.openplanner.team/stops/Bcbqcht2", "https://tec.openplanner.team/stops/Bcbqp252"], ["https://tec.openplanner.team/stops/Ladchat2", "https://tec.openplanner.team/stops/Ldicorb1"], ["https://tec.openplanner.team/stops/Baudulb2", "https://tec.openplanner.team/stops/Bwolvan2"], ["https://tec.openplanner.team/stops/X824aba", "https://tec.openplanner.team/stops/X824aea"], ["https://tec.openplanner.team/stops/Lcaboun3", "https://tec.openplanner.team/stops/Lcaboun4"], ["https://tec.openplanner.team/stops/H4ty267b", "https://tec.openplanner.team/stops/H4ty328b"], ["https://tec.openplanner.team/stops/H1he111b", "https://tec.openplanner.team/stops/H4be112b"], ["https://tec.openplanner.team/stops/X721aha", "https://tec.openplanner.team/stops/X721ahb"], ["https://tec.openplanner.team/stops/LOcgdro3", "https://tec.openplanner.team/stops/NL35agb"], ["https://tec.openplanner.team/stops/Bbxlmid4", "https://tec.openplanner.team/stops/Bsgibla2"], ["https://tec.openplanner.team/stops/LATdame2", "https://tec.openplanner.team/stops/LWzwanz2"], ["https://tec.openplanner.team/stops/Loureno2", "https://tec.openplanner.team/stops/Lsttech2"], ["https://tec.openplanner.team/stops/Bbch4br2", "https://tec.openplanner.team/stops/Bbch4br4"], ["https://tec.openplanner.team/stops/Barqpla1", "https://tec.openplanner.team/stops/Bfelgar3"], ["https://tec.openplanner.team/stops/H1wa156b", "https://tec.openplanner.team/stops/H1wa160a"], ["https://tec.openplanner.team/stops/X643aaa", "https://tec.openplanner.team/stops/X643aba"], ["https://tec.openplanner.team/stops/LaAronh2", "https://tec.openplanner.team/stops/LVAbuss1"], ["https://tec.openplanner.team/stops/Cmaleri2", "https://tec.openplanner.team/stops/Cmmptno1"], ["https://tec.openplanner.team/stops/X992aga", "https://tec.openplanner.team/stops/X993aja"], ["https://tec.openplanner.team/stops/LORpave1", "https://tec.openplanner.team/stops/LORpave2"], ["https://tec.openplanner.team/stops/Lhrmare4", "https://tec.openplanner.team/stops/Lhrmare8"], ["https://tec.openplanner.team/stops/N501blb", "https://tec.openplanner.team/stops/N501chc"], ["https://tec.openplanner.team/stops/X982bqa", "https://tec.openplanner.team/stops/X982bqb"], ["https://tec.openplanner.team/stops/X717aga", "https://tec.openplanner.team/stops/X717agb"], ["https://tec.openplanner.team/stops/X907agb", "https://tec.openplanner.team/stops/X907ahb"], ["https://tec.openplanner.team/stops/N368acb", "https://tec.openplanner.team/stops/N368adb"], ["https://tec.openplanner.team/stops/N509awb", "https://tec.openplanner.team/stops/N509axb"], ["https://tec.openplanner.team/stops/H4to135b", "https://tec.openplanner.team/stops/H4to138a"], ["https://tec.openplanner.team/stops/X770abb", "https://tec.openplanner.team/stops/X770acb"], ["https://tec.openplanner.team/stops/NL76alc", "https://tec.openplanner.team/stops/NL76bca"], ["https://tec.openplanner.team/stops/Llgbour1", "https://tec.openplanner.team/stops/Llgcbat1"], ["https://tec.openplanner.team/stops/H1cu114b", "https://tec.openplanner.team/stops/H1cu131a"], ["https://tec.openplanner.team/stops/H4po126a", "https://tec.openplanner.team/stops/H4po130a"], ["https://tec.openplanner.team/stops/X945abc", "https://tec.openplanner.team/stops/X945aca"], ["https://tec.openplanner.team/stops/H1ht133b", "https://tec.openplanner.team/stops/H1ht136a"], ["https://tec.openplanner.team/stops/N134afa", "https://tec.openplanner.team/stops/N152abd"], ["https://tec.openplanner.team/stops/LPbchat2", "https://tec.openplanner.team/stops/LSIters1"], ["https://tec.openplanner.team/stops/H1sy143d", "https://tec.openplanner.team/stops/H1sy150b"], ["https://tec.openplanner.team/stops/X623aeb", "https://tec.openplanner.team/stops/X624aab"], ["https://tec.openplanner.team/stops/H1er112a", "https://tec.openplanner.team/stops/H1pe130a"], ["https://tec.openplanner.team/stops/LVNleco2", "https://tec.openplanner.team/stops/LWzwanz2"], ["https://tec.openplanner.team/stops/Llgstvi2", "https://tec.openplanner.team/stops/Llgstvi3"], ["https://tec.openplanner.team/stops/X903aca", "https://tec.openplanner.team/stops/X903ada"], ["https://tec.openplanner.team/stops/X637agd", "https://tec.openplanner.team/stops/X637aob"], ["https://tec.openplanner.team/stops/N522aea", "https://tec.openplanner.team/stops/N522ala"], ["https://tec.openplanner.team/stops/H1gg115b", "https://tec.openplanner.team/stops/H1gg145b"], ["https://tec.openplanner.team/stops/Lalverr2", "https://tec.openplanner.team/stops/Lladete3"], ["https://tec.openplanner.team/stops/H4ru235a", "https://tec.openplanner.team/stops/H4ru245b"], ["https://tec.openplanner.team/stops/LBVcent2", "https://tec.openplanner.team/stops/LRffroi1"], ["https://tec.openplanner.team/stops/X796aaa", "https://tec.openplanner.team/stops/X796aba"], ["https://tec.openplanner.team/stops/N337aia", "https://tec.openplanner.team/stops/N339aab"], ["https://tec.openplanner.team/stops/Cliburl1", "https://tec.openplanner.team/stops/Cliegli1"], ["https://tec.openplanner.team/stops/Lagresi2", "https://tec.openplanner.team/stops/Lagvall2"], ["https://tec.openplanner.team/stops/X921ala", "https://tec.openplanner.team/stops/X921alb"], ["https://tec.openplanner.team/stops/Cmltemp5", "https://tec.openplanner.team/stops/Cmlvpla1"], ["https://tec.openplanner.team/stops/H4av106b", "https://tec.openplanner.team/stops/H4ff117b"], ["https://tec.openplanner.team/stops/Cvthoeu1", "https://tec.openplanner.team/stops/Cvthoeu2"], ["https://tec.openplanner.team/stops/LDmdomm1", "https://tec.openplanner.team/stops/LSGmale1"], ["https://tec.openplanner.team/stops/LTiec--1", "https://tec.openplanner.team/stops/LTiec--2"], ["https://tec.openplanner.team/stops/LPOeg--1", "https://tec.openplanner.team/stops/LPOeg--2"], ["https://tec.openplanner.team/stops/H4ty291a", "https://tec.openplanner.team/stops/H4ty351b"], ["https://tec.openplanner.team/stops/X982aeb", "https://tec.openplanner.team/stops/X982aja"], ["https://tec.openplanner.team/stops/Cslbhau1", "https://tec.openplanner.team/stops/Cvtvail2"], ["https://tec.openplanner.team/stops/LSkathe2", "https://tec.openplanner.team/stops/LSkcomb2"], ["https://tec.openplanner.team/stops/Bnivfdu1", "https://tec.openplanner.team/stops/Bnivn972"], ["https://tec.openplanner.team/stops/N331aka", "https://tec.openplanner.team/stops/N331akb"], ["https://tec.openplanner.team/stops/X669aaa", "https://tec.openplanner.team/stops/X669abd"], ["https://tec.openplanner.team/stops/X902bca", "https://tec.openplanner.team/stops/X999aka"], ["https://tec.openplanner.team/stops/Cchsud03", "https://tec.openplanner.team/stops/Cchsud04"], ["https://tec.openplanner.team/stops/N261aha", "https://tec.openplanner.team/stops/N337aib"], ["https://tec.openplanner.team/stops/H5pe127a", "https://tec.openplanner.team/stops/H5pe176a"], ["https://tec.openplanner.team/stops/X771ahb", "https://tec.openplanner.team/stops/X771anb"], ["https://tec.openplanner.team/stops/Bsenpeu2", "https://tec.openplanner.team/stops/H2se107a"], ["https://tec.openplanner.team/stops/Lmojoan2", "https://tec.openplanner.team/stops/Lmopans4"], ["https://tec.openplanner.team/stops/LeUhaas2", "https://tec.openplanner.team/stops/LeUhaas3"], ["https://tec.openplanner.team/stops/N543axb", "https://tec.openplanner.team/stops/N543ayb"], ["https://tec.openplanner.team/stops/H1ne137a", "https://tec.openplanner.team/stops/H1ne143a"], ["https://tec.openplanner.team/stops/H4av105b", "https://tec.openplanner.team/stops/H4av106a"], ["https://tec.openplanner.team/stops/X818akb", "https://tec.openplanner.team/stops/X818alb"], ["https://tec.openplanner.team/stops/Bnivphm1", "https://tec.openplanner.team/stops/Bnivvcw2"], ["https://tec.openplanner.team/stops/Cmmcver2", "https://tec.openplanner.team/stops/Cmmecol2"], ["https://tec.openplanner.team/stops/LmYamel1", "https://tec.openplanner.team/stops/LmYwall1"], ["https://tec.openplanner.team/stops/H5qu143a", "https://tec.openplanner.team/stops/H5qu143b"], ["https://tec.openplanner.team/stops/X651afa", "https://tec.openplanner.team/stops/X651afb"], ["https://tec.openplanner.team/stops/H2ha127a", "https://tec.openplanner.team/stops/H2ha138b"], ["https://tec.openplanner.team/stops/N131agb", "https://tec.openplanner.team/stops/N131ahb"], ["https://tec.openplanner.team/stops/N425aba", "https://tec.openplanner.team/stops/N425abb"], ["https://tec.openplanner.team/stops/Bezegar2", "https://tec.openplanner.team/stops/Bgoemho1"], ["https://tec.openplanner.team/stops/N515apb", "https://tec.openplanner.team/stops/N518acd"], ["https://tec.openplanner.team/stops/H2ll187a", "https://tec.openplanner.team/stops/H2ll198b"], ["https://tec.openplanner.team/stops/N244aga", "https://tec.openplanner.team/stops/N244ahb"], ["https://tec.openplanner.team/stops/LEShony1", "https://tec.openplanner.team/stops/LTIdonn1"], ["https://tec.openplanner.team/stops/LeLbutg2", "https://tec.openplanner.team/stops/LeLbutg3"], ["https://tec.openplanner.team/stops/Ctaprai3", "https://tec.openplanner.team/stops/Cwfzola1"], ["https://tec.openplanner.team/stops/LLbcafe1", "https://tec.openplanner.team/stops/LLbquar1"], ["https://tec.openplanner.team/stops/NC11afa", "https://tec.openplanner.team/stops/NC11amb"], ["https://tec.openplanner.team/stops/Cgogrco1", "https://tec.openplanner.team/stops/Cjuchli4"], ["https://tec.openplanner.team/stops/Bhvlpla1", "https://tec.openplanner.team/stops/Bhvltol1"], ["https://tec.openplanner.team/stops/Bbsiabb2", "https://tec.openplanner.team/stops/Bbsicas1"], ["https://tec.openplanner.team/stops/H1br122a", "https://tec.openplanner.team/stops/H1ev149a"], ["https://tec.openplanner.team/stops/H1ch107b", "https://tec.openplanner.team/stops/H1ch141b"], ["https://tec.openplanner.team/stops/H1bo107a", "https://tec.openplanner.team/stops/H1bo107b"], ["https://tec.openplanner.team/stops/H1gi123b", "https://tec.openplanner.team/stops/H1ry137b"], ["https://tec.openplanner.team/stops/N113ada", "https://tec.openplanner.team/stops/N113adb"], ["https://tec.openplanner.team/stops/LsVeite2", "https://tec.openplanner.team/stops/LwSbrei2"], ["https://tec.openplanner.team/stops/Cchdaup1", "https://tec.openplanner.team/stops/Cchvhau2"], ["https://tec.openplanner.team/stops/H1el138a", "https://tec.openplanner.team/stops/H1el138b"], ["https://tec.openplanner.team/stops/CMprov1", "https://tec.openplanner.team/stops/CMprov2"], ["https://tec.openplanner.team/stops/LMOfleu2", "https://tec.openplanner.team/stops/LMOstat2"], ["https://tec.openplanner.team/stops/H4ar173a", "https://tec.openplanner.team/stops/H4ar173b"], ["https://tec.openplanner.team/stops/Cluberl1", "https://tec.openplanner.team/stops/Cluberl2"], ["https://tec.openplanner.team/stops/LDLbaye1", "https://tec.openplanner.team/stops/LDLboul1"], ["https://tec.openplanner.team/stops/LaAronh1", "https://tec.openplanner.team/stops/LaAseba2"], ["https://tec.openplanner.team/stops/NC11ard", "https://tec.openplanner.team/stops/NC44ada"], ["https://tec.openplanner.team/stops/N542acc", "https://tec.openplanner.team/stops/N542ama"], ["https://tec.openplanner.team/stops/Cmcegli4", "https://tec.openplanner.team/stops/Cmcwic1"], ["https://tec.openplanner.team/stops/X937ada", "https://tec.openplanner.team/stops/X937ahb"], ["https://tec.openplanner.team/stops/Bwavtas1", "https://tec.openplanner.team/stops/Bwavtas3"], ["https://tec.openplanner.team/stops/Bneehou2", "https://tec.openplanner.team/stops/Bneepne2"], ["https://tec.openplanner.team/stops/Cmobeau2", "https://tec.openplanner.team/stops/Cmovies1"], ["https://tec.openplanner.team/stops/LeUath%C3%A41", "https://tec.openplanner.team/stops/LeUlasc1"], ["https://tec.openplanner.team/stops/LCvneuv5", "https://tec.openplanner.team/stops/LCvoufn1"], ["https://tec.openplanner.team/stops/X768aja", "https://tec.openplanner.team/stops/X768aka"], ["https://tec.openplanner.team/stops/Bjdscnd1", "https://tec.openplanner.team/stops/Bjodgai1"], ["https://tec.openplanner.team/stops/LAUcarr1", "https://tec.openplanner.team/stops/LFdeg--1"], ["https://tec.openplanner.team/stops/N308aba", "https://tec.openplanner.team/stops/N308abb"], ["https://tec.openplanner.team/stops/N209aea", "https://tec.openplanner.team/stops/N209ahb"], ["https://tec.openplanner.team/stops/Llgoutr2", "https://tec.openplanner.team/stops/Llgoutr3"], ["https://tec.openplanner.team/stops/LFCotte2", "https://tec.openplanner.team/stops/LMastat3"], ["https://tec.openplanner.team/stops/N230adb", "https://tec.openplanner.team/stops/N230aga"], ["https://tec.openplanner.team/stops/Bbstbxl2", "https://tec.openplanner.team/stops/Bwaypon1"], ["https://tec.openplanner.team/stops/Lcebois1", "https://tec.openplanner.team/stops/Lcepoul1"], ["https://tec.openplanner.team/stops/Lbrbass2", "https://tec.openplanner.team/stops/Lgrfrai1"], ["https://tec.openplanner.team/stops/X626aea", "https://tec.openplanner.team/stops/X626ana"], ["https://tec.openplanner.team/stops/X879aka", "https://tec.openplanner.team/stops/X879akb"], ["https://tec.openplanner.team/stops/H1sd342a", "https://tec.openplanner.team/stops/H1th181a"], ["https://tec.openplanner.team/stops/Lhrbrou2", "https://tec.openplanner.team/stops/Lhrrhee*"], ["https://tec.openplanner.team/stops/Bjodcsb1", "https://tec.openplanner.team/stops/Bjodmal1"], ["https://tec.openplanner.team/stops/X886aab", "https://tec.openplanner.team/stops/X889acb"], ["https://tec.openplanner.team/stops/H2na131b", "https://tec.openplanner.team/stops/H2na132b"], ["https://tec.openplanner.team/stops/H4wp151a", "https://tec.openplanner.team/stops/H4wp151b"], ["https://tec.openplanner.team/stops/Ccyfroi2", "https://tec.openplanner.team/stops/NH01aea"], ["https://tec.openplanner.team/stops/LMOlens1", "https://tec.openplanner.team/stops/LMOpiss1"], ["https://tec.openplanner.team/stops/LWalibo2", "https://tec.openplanner.team/stops/LWalyce2"], ["https://tec.openplanner.team/stops/LsVgend1", "https://tec.openplanner.team/stops/LsVhunn2"], ["https://tec.openplanner.team/stops/N557aia", "https://tec.openplanner.team/stops/N562bhb"], ["https://tec.openplanner.team/stops/H4ga152a", "https://tec.openplanner.team/stops/H4ga167a"], ["https://tec.openplanner.team/stops/Bramcar1", "https://tec.openplanner.team/stops/Bramgar1"], ["https://tec.openplanner.team/stops/X858afb", "https://tec.openplanner.team/stops/X858agb"], ["https://tec.openplanner.team/stops/Lseberg1", "https://tec.openplanner.team/stops/Lsecoop1"], ["https://tec.openplanner.team/stops/Lgrbell1", "https://tec.openplanner.team/stops/Lgrcral2"], ["https://tec.openplanner.team/stops/H4fl115a", "https://tec.openplanner.team/stops/H4fl179b"], ["https://tec.openplanner.team/stops/N517aba", "https://tec.openplanner.team/stops/N517afa"], ["https://tec.openplanner.team/stops/N539bfa", "https://tec.openplanner.team/stops/N539bgb"], ["https://tec.openplanner.team/stops/H1ge151a", "https://tec.openplanner.team/stops/H1ge179b"], ["https://tec.openplanner.team/stops/Lfhgara1", "https://tec.openplanner.team/stops/Lfhrogn2"], ["https://tec.openplanner.team/stops/X982ada", "https://tec.openplanner.team/stops/X982btb"], ["https://tec.openplanner.team/stops/X801cib", "https://tec.openplanner.team/stops/X801cnb"], ["https://tec.openplanner.team/stops/LSyeg--2", "https://tec.openplanner.team/stops/LSypesy1"], ["https://tec.openplanner.team/stops/H1bl101a", "https://tec.openplanner.team/stops/H1bl107a"], ["https://tec.openplanner.team/stops/N573abb", "https://tec.openplanner.team/stops/NC14ada"], ["https://tec.openplanner.team/stops/LGOcana1", "https://tec.openplanner.team/stops/LGOhevr1"], ["https://tec.openplanner.team/stops/X923aia", "https://tec.openplanner.team/stops/X923aja"], ["https://tec.openplanner.team/stops/LLscent1", "https://tec.openplanner.team/stops/LRcsilo2"], ["https://tec.openplanner.team/stops/LLrisa-*", "https://tec.openplanner.team/stops/LSMlier2"], ["https://tec.openplanner.team/stops/Ljuchap1", "https://tec.openplanner.team/stops/Ljujaur1"], ["https://tec.openplanner.team/stops/N301aob", "https://tec.openplanner.team/stops/N302afa"], ["https://tec.openplanner.team/stops/LWibare1", "https://tec.openplanner.team/stops/LWibare2"], ["https://tec.openplanner.team/stops/X621aeb", "https://tec.openplanner.team/stops/X622adb"], ["https://tec.openplanner.team/stops/Lalexpa2", "https://tec.openplanner.team/stops/Lalhomb2"], ["https://tec.openplanner.team/stops/H4bf105b", "https://tec.openplanner.team/stops/H4bf107a"], ["https://tec.openplanner.team/stops/LoDkoll2", "https://tec.openplanner.team/stops/LoDschu1"], ["https://tec.openplanner.team/stops/Lgrclin4", "https://tec.openplanner.team/stops/Lvcdumo2"], ["https://tec.openplanner.team/stops/Cplcafp1", "https://tec.openplanner.team/stops/Cpllimi5"], ["https://tec.openplanner.team/stops/H4ga150b", "https://tec.openplanner.team/stops/H4ga163a"], ["https://tec.openplanner.team/stops/LSdbote1", "https://tec.openplanner.team/stops/LSdbote2"], ["https://tec.openplanner.team/stops/LRRecsc*", "https://tec.openplanner.team/stops/LRRpost2"], ["https://tec.openplanner.team/stops/N529aaa", "https://tec.openplanner.team/stops/N529abc"], ["https://tec.openplanner.team/stops/H4ir163c", "https://tec.openplanner.team/stops/H4ir163d"], ["https://tec.openplanner.team/stops/H1al108a", "https://tec.openplanner.team/stops/H1al146b"], ["https://tec.openplanner.team/stops/Cvp3til2", "https://tec.openplanner.team/stops/Cvpchat1"], ["https://tec.openplanner.team/stops/H4lg100a", "https://tec.openplanner.team/stops/H4ta119a"], ["https://tec.openplanner.team/stops/N311aaa", "https://tec.openplanner.team/stops/N311afb"], ["https://tec.openplanner.team/stops/Bbalvil1", "https://tec.openplanner.team/stops/N584aqa"], ["https://tec.openplanner.team/stops/X660aha", "https://tec.openplanner.team/stops/X660aja"], ["https://tec.openplanner.team/stops/LaNmuhl2", "https://tec.openplanner.team/stops/LsC216-2"], ["https://tec.openplanner.team/stops/LROandr2", "https://tec.openplanner.team/stops/LROhaie1"], ["https://tec.openplanner.team/stops/LCvneu-2", "https://tec.openplanner.team/stops/LLEgare1"], ["https://tec.openplanner.team/stops/Bptrcra2", "https://tec.openplanner.team/stops/Bptrvil1"], ["https://tec.openplanner.team/stops/Llgcont1", "https://tec.openplanner.team/stops/Llgparc1"], ["https://tec.openplanner.team/stops/X715acb", "https://tec.openplanner.team/stops/X715acc"], ["https://tec.openplanner.team/stops/LLSba6-1", "https://tec.openplanner.team/stops/LTOplac1"], ["https://tec.openplanner.team/stops/Lscferr1", "https://tec.openplanner.team/stops/Lscgare1"], ["https://tec.openplanner.team/stops/Csurela4", "https://tec.openplanner.team/stops/Csygare3"], ["https://tec.openplanner.team/stops/Lstphys1", "https://tec.openplanner.team/stops/Lstpoly1"], ["https://tec.openplanner.team/stops/LgAnr492", "https://tec.openplanner.team/stops/LsVgesc1"], ["https://tec.openplanner.team/stops/H1al107b", "https://tec.openplanner.team/stops/H1bs110c"], ["https://tec.openplanner.team/stops/Bsdacab2", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/Bernpon1", "https://tec.openplanner.team/stops/Bgrmfga2"], ["https://tec.openplanner.team/stops/X757aba", "https://tec.openplanner.team/stops/X757aga"], ["https://tec.openplanner.team/stops/H1ba119a", "https://tec.openplanner.team/stops/H1ba120a"], ["https://tec.openplanner.team/stops/X941aea", "https://tec.openplanner.team/stops/X941aga"], ["https://tec.openplanner.team/stops/Cpcbrig2", "https://tec.openplanner.team/stops/Cpccpas1"], ["https://tec.openplanner.team/stops/N218acb", "https://tec.openplanner.team/stops/N218aeb"], ["https://tec.openplanner.team/stops/Cfanoci2", "https://tec.openplanner.team/stops/Cfanvmo1"], ["https://tec.openplanner.team/stops/Cmmpast1", "https://tec.openplanner.team/stops/Cmmpast2"], ["https://tec.openplanner.team/stops/H4hx121a", "https://tec.openplanner.team/stops/H4hx121b"], ["https://tec.openplanner.team/stops/H5pe131b", "https://tec.openplanner.team/stops/H5pe151b"], ["https://tec.openplanner.team/stops/Cgogrco2", "https://tec.openplanner.team/stops/Cgoobse1"], ["https://tec.openplanner.team/stops/Bwavdel1", "https://tec.openplanner.team/stops/Bwavfol2"], ["https://tec.openplanner.team/stops/H1mc128a", "https://tec.openplanner.team/stops/H1mc128b"], ["https://tec.openplanner.team/stops/Cbmpopr2", "https://tec.openplanner.team/stops/Clcfall1"], ["https://tec.openplanner.team/stops/LkEherg2", "https://tec.openplanner.team/stops/LVAgemm1"], ["https://tec.openplanner.team/stops/LLTther1", "https://tec.openplanner.team/stops/LTOeg--2"], ["https://tec.openplanner.team/stops/X735aab", "https://tec.openplanner.team/stops/X735abc"], ["https://tec.openplanner.team/stops/Bcbqcim2", "https://tec.openplanner.team/stops/Blemsta1"], ["https://tec.openplanner.team/stops/Cctchea2", "https://tec.openplanner.team/stops/Cctvche2"], ["https://tec.openplanner.team/stops/Lghhoco1", "https://tec.openplanner.team/stops/Lghhoco2"], ["https://tec.openplanner.team/stops/Caccera1", "https://tec.openplanner.team/stops/NC11alb"], ["https://tec.openplanner.team/stops/LENengi2", "https://tec.openplanner.team/stops/LENgend2"], ["https://tec.openplanner.team/stops/H2be101a", "https://tec.openplanner.team/stops/H2lh124b"], ["https://tec.openplanner.team/stops/Ccutrav1", "https://tec.openplanner.team/stops/Ccutrav5"], ["https://tec.openplanner.team/stops/X768aca", "https://tec.openplanner.team/stops/X768acb"], ["https://tec.openplanner.team/stops/LLTgole1", "https://tec.openplanner.team/stops/LLTgole2"], ["https://tec.openplanner.team/stops/N501erb", "https://tec.openplanner.team/stops/N501gga"], ["https://tec.openplanner.team/stops/H1gy111a", "https://tec.openplanner.team/stops/H1gy115a"], ["https://tec.openplanner.team/stops/H1so131f", "https://tec.openplanner.team/stops/H1so137a"], ["https://tec.openplanner.team/stops/Lscchat1", "https://tec.openplanner.team/stops/Lscchat2"], ["https://tec.openplanner.team/stops/LBPauto2", "https://tec.openplanner.team/stops/LBPrueg1"], ["https://tec.openplanner.team/stops/Lveptle4", "https://tec.openplanner.team/stops/Lveveou2"], ["https://tec.openplanner.team/stops/N232acb", "https://tec.openplanner.team/stops/N232ada"], ["https://tec.openplanner.team/stops/H4ga150a", "https://tec.openplanner.team/stops/H4ga166a"], ["https://tec.openplanner.team/stops/LCShoux2", "https://tec.openplanner.team/stops/LSShous2"], ["https://tec.openplanner.team/stops/Bitrcen1", "https://tec.openplanner.team/stops/Bitrmon2"], ["https://tec.openplanner.team/stops/N557aac", "https://tec.openplanner.team/stops/N557afb"], ["https://tec.openplanner.team/stops/Cchhopi4", "https://tec.openplanner.team/stops/CMjans2"], ["https://tec.openplanner.team/stops/X725afd", "https://tec.openplanner.team/stops/X725aha"], ["https://tec.openplanner.team/stops/H1he102a", "https://tec.openplanner.team/stops/H1he109a"], ["https://tec.openplanner.team/stops/LRRbuta1", "https://tec.openplanner.team/stops/LRRchea6"], ["https://tec.openplanner.team/stops/LAvambr2", "https://tec.openplanner.team/stops/LMXempe1"], ["https://tec.openplanner.team/stops/Bwatnro1", "https://tec.openplanner.team/stops/Bwatppa1"], ["https://tec.openplanner.team/stops/LPRfond1", "https://tec.openplanner.team/stops/LPRfond2"], ["https://tec.openplanner.team/stops/X626aia", "https://tec.openplanner.team/stops/X626ala"], ["https://tec.openplanner.team/stops/Lagrask1", "https://tec.openplanner.team/stops/Lagtenn1"], ["https://tec.openplanner.team/stops/N127aeb", "https://tec.openplanner.team/stops/N135bdb"], ["https://tec.openplanner.team/stops/Bsambra1", "https://tec.openplanner.team/stops/Bsamfma1"], ["https://tec.openplanner.team/stops/N507alc", "https://tec.openplanner.team/stops/N512ama"], ["https://tec.openplanner.team/stops/H1gn152a", "https://tec.openplanner.team/stops/H1gn152b"], ["https://tec.openplanner.team/stops/N501cpb", "https://tec.openplanner.team/stops/N501cqa"], ["https://tec.openplanner.team/stops/Lemarti2", "https://tec.openplanner.team/stops/Lemboul2"], ["https://tec.openplanner.team/stops/Lflcle-5", "https://tec.openplanner.team/stops/Lflcle-6"], ["https://tec.openplanner.team/stops/Bottpma1", "https://tec.openplanner.team/stops/Bottpma2"], ["https://tec.openplanner.team/stops/H1gr110b", "https://tec.openplanner.team/stops/H1hr127a"], ["https://tec.openplanner.team/stops/NC14anb", "https://tec.openplanner.team/stops/NC24agb"], ["https://tec.openplanner.team/stops/H1fl138a", "https://tec.openplanner.team/stops/H1qu108a"], ["https://tec.openplanner.team/stops/Lbrcygn1", "https://tec.openplanner.team/stops/Lbrmour1"], ["https://tec.openplanner.team/stops/X808aja", "https://tec.openplanner.team/stops/X808ama"], ["https://tec.openplanner.team/stops/Lfllapi3", "https://tec.openplanner.team/stops/Lflterm2"], ["https://tec.openplanner.team/stops/X342aba", "https://tec.openplanner.team/stops/X342abb"], ["https://tec.openplanner.team/stops/Lvearle2", "https://tec.openplanner.team/stops/Lvehoug2"], ["https://tec.openplanner.team/stops/X808aea", "https://tec.openplanner.team/stops/X809afa"], ["https://tec.openplanner.team/stops/X713aga", "https://tec.openplanner.team/stops/X713aha"], ["https://tec.openplanner.team/stops/H1wa132a", "https://tec.openplanner.team/stops/H1wa145b"], ["https://tec.openplanner.team/stops/N544aga", "https://tec.openplanner.team/stops/N544agb"], ["https://tec.openplanner.team/stops/H4ne132a", "https://tec.openplanner.team/stops/H4ne139b"], ["https://tec.openplanner.team/stops/LoDschu2", "https://tec.openplanner.team/stops/LoDulf-2"], ["https://tec.openplanner.team/stops/Ljucano1", "https://tec.openplanner.team/stops/Ljuetie1"], ["https://tec.openplanner.team/stops/H2mg140c", "https://tec.openplanner.team/stops/H2mg143a"], ["https://tec.openplanner.team/stops/H4mt214b", "https://tec.openplanner.team/stops/H4mt220a"], ["https://tec.openplanner.team/stops/H4bi100a", "https://tec.openplanner.team/stops/H4eg105b"], ["https://tec.openplanner.team/stops/LHthest1", "https://tec.openplanner.team/stops/LHthest2"], ["https://tec.openplanner.team/stops/LDppana1", "https://tec.openplanner.team/stops/LVu40--2"], ["https://tec.openplanner.team/stops/H1gq153a", "https://tec.openplanner.team/stops/H1hq124b"], ["https://tec.openplanner.team/stops/LHEclef1", "https://tec.openplanner.team/stops/LJOvill2"], ["https://tec.openplanner.team/stops/H4bx167a", "https://tec.openplanner.team/stops/H4tf147b"], ["https://tec.openplanner.team/stops/Cmyecur1", "https://tec.openplanner.team/stops/Cmygrbr2"], ["https://tec.openplanner.team/stops/LSEcent1", "https://tec.openplanner.team/stops/LSEcent2"], ["https://tec.openplanner.team/stops/H4ea132a", "https://tec.openplanner.team/stops/H4ea132b"], ["https://tec.openplanner.team/stops/Lrofont1", "https://tec.openplanner.team/stops/Lrosaun2"], ["https://tec.openplanner.team/stops/LHegame2", "https://tec.openplanner.team/stops/LHegame3"], ["https://tec.openplanner.team/stops/Bsamegl1", "https://tec.openplanner.team/stops/Bsamegl2"], ["https://tec.openplanner.team/stops/Cmg4bra2", "https://tec.openplanner.team/stops/Cmgarsi2"], ["https://tec.openplanner.team/stops/H3lr117a", "https://tec.openplanner.team/stops/H3lr117b"], ["https://tec.openplanner.team/stops/LPUmang2", "https://tec.openplanner.team/stops/LPUmer-1"], ["https://tec.openplanner.team/stops/Bquegob3", "https://tec.openplanner.team/stops/Bquegob4"], ["https://tec.openplanner.team/stops/X623ahb", "https://tec.openplanner.team/stops/X623aia"], ["https://tec.openplanner.team/stops/Lhrpaep*", "https://tec.openplanner.team/stops/Lhrpaep2"], ["https://tec.openplanner.team/stops/LLscent2", "https://tec.openplanner.team/stops/LRccent1"], ["https://tec.openplanner.team/stops/X364aaa", "https://tec.openplanner.team/stops/X364acb"], ["https://tec.openplanner.team/stops/NB33ala", "https://tec.openplanner.team/stops/NR21aaa"], ["https://tec.openplanner.team/stops/LLUalou2", "https://tec.openplanner.team/stops/LLUtrol2"], ["https://tec.openplanner.team/stops/N505alb", "https://tec.openplanner.team/stops/N579adb"], ["https://tec.openplanner.team/stops/LTPlegr2", "https://tec.openplanner.team/stops/LTPtroi2"], ["https://tec.openplanner.team/stops/X818ama", "https://tec.openplanner.team/stops/X818amb"], ["https://tec.openplanner.team/stops/N513ata", "https://tec.openplanner.team/stops/N520aha"], ["https://tec.openplanner.team/stops/Csdfboi1", "https://tec.openplanner.team/stops/Csdnive2"], ["https://tec.openplanner.team/stops/LDObran1", "https://tec.openplanner.team/stops/LDOordi1"], ["https://tec.openplanner.team/stops/Cflchmo2", "https://tec.openplanner.team/stops/Cflsncb2"], ["https://tec.openplanner.team/stops/Cjupn1", "https://tec.openplanner.team/stops/Cjupn2"], ["https://tec.openplanner.team/stops/Cmybefe1", "https://tec.openplanner.team/stops/Cmysncb1"], ["https://tec.openplanner.team/stops/N501fbb", "https://tec.openplanner.team/stops/N501fqd"], ["https://tec.openplanner.team/stops/LSIters1", "https://tec.openplanner.team/stops/LSIters2"], ["https://tec.openplanner.team/stops/X979aka", "https://tec.openplanner.team/stops/X979akb"], ["https://tec.openplanner.team/stops/H1ms289a", "https://tec.openplanner.team/stops/H1ms289b"], ["https://tec.openplanner.team/stops/X725aea", "https://tec.openplanner.team/stops/X725aeb"], ["https://tec.openplanner.team/stops/Bjodbat2", "https://tec.openplanner.team/stops/Bjodpce1"], ["https://tec.openplanner.team/stops/Lmndeso1", "https://tec.openplanner.team/stops/Lsmdams2"], ["https://tec.openplanner.team/stops/LCHgele1", "https://tec.openplanner.team/stops/LThplen2"], ["https://tec.openplanner.team/stops/N163aab", "https://tec.openplanner.team/stops/N166aba"], ["https://tec.openplanner.team/stops/N501hrb", "https://tec.openplanner.team/stops/N501iua"], ["https://tec.openplanner.team/stops/NC14aab", "https://tec.openplanner.team/stops/NC14avb"], ["https://tec.openplanner.team/stops/Lengran2", "https://tec.openplanner.team/stops/Lenplac2"], ["https://tec.openplanner.team/stops/H4gr109b", "https://tec.openplanner.team/stops/H4gr112b"], ["https://tec.openplanner.team/stops/LFUchpl1", "https://tec.openplanner.team/stops/LFUchpl2"], ["https://tec.openplanner.team/stops/X872aab", "https://tec.openplanner.team/stops/X872aba"], ["https://tec.openplanner.team/stops/H4og209b", "https://tec.openplanner.team/stops/H4og212b"], ["https://tec.openplanner.team/stops/H4ce103a", "https://tec.openplanner.team/stops/H4ve135b"], ["https://tec.openplanner.team/stops/LTRfend2", "https://tec.openplanner.team/stops/LTRgare0"], ["https://tec.openplanner.team/stops/Bblaang1", "https://tec.openplanner.team/stops/Bblafrn2"], ["https://tec.openplanner.team/stops/LkEhatt2", "https://tec.openplanner.team/stops/LkEmax-1"], ["https://tec.openplanner.team/stops/LLiforg2", "https://tec.openplanner.team/stops/LListie1"], ["https://tec.openplanner.team/stops/H1ho122a", "https://tec.openplanner.team/stops/H1ho134b"], ["https://tec.openplanner.team/stops/N207afb", "https://tec.openplanner.team/stops/N209aka"], ["https://tec.openplanner.team/stops/LaSneuh2", "https://tec.openplanner.team/stops/LlNm%C3%BChl1"], ["https://tec.openplanner.team/stops/X624aga", "https://tec.openplanner.team/stops/X624aib"], ["https://tec.openplanner.team/stops/LBTchai1", "https://tec.openplanner.team/stops/LBTchai3"], ["https://tec.openplanner.team/stops/LOtthie2", "https://tec.openplanner.team/stops/NL57amb"], ["https://tec.openplanner.team/stops/X723aca", "https://tec.openplanner.team/stops/X723aha"], ["https://tec.openplanner.team/stops/LrAknop2", "https://tec.openplanner.team/stops/LrAneue2"], ["https://tec.openplanner.team/stops/X654aga", "https://tec.openplanner.team/stops/X654ajb"], ["https://tec.openplanner.team/stops/H4br108a", "https://tec.openplanner.team/stops/H4br109a"], ["https://tec.openplanner.team/stops/X739ala", "https://tec.openplanner.team/stops/X771aba"], ["https://tec.openplanner.team/stops/H2pe163a", "https://tec.openplanner.team/stops/H2tr250a"], ["https://tec.openplanner.team/stops/N571ada", "https://tec.openplanner.team/stops/N571adb"], ["https://tec.openplanner.team/stops/H3th131b", "https://tec.openplanner.team/stops/H3th133a"], ["https://tec.openplanner.team/stops/LTRcite1", "https://tec.openplanner.team/stops/LTRlonh1"], ["https://tec.openplanner.team/stops/LXhmara2", "https://tec.openplanner.team/stops/LXhnouv1"], ["https://tec.openplanner.team/stops/Lbocruc1", "https://tec.openplanner.team/stops/Lbooffe1"], ["https://tec.openplanner.team/stops/LESoneu3", "https://tec.openplanner.team/stops/LESryon2"], ["https://tec.openplanner.team/stops/Bnodegl1", "https://tec.openplanner.team/stops/Bnodegl2"], ["https://tec.openplanner.team/stops/Landeja1", "https://tec.openplanner.team/stops/Lanegal2"], ["https://tec.openplanner.team/stops/LSTamer2", "https://tec.openplanner.team/stops/LSTec--1"], ["https://tec.openplanner.team/stops/N501aqa", "https://tec.openplanner.team/stops/N501beb"], ["https://tec.openplanner.team/stops/N226ada", "https://tec.openplanner.team/stops/N387abb"], ["https://tec.openplanner.team/stops/Bviravi1", "https://tec.openplanner.team/stops/Bvirvol2"], ["https://tec.openplanner.team/stops/LWAcham1", "https://tec.openplanner.team/stops/LWAor--1"], ["https://tec.openplanner.team/stops/Bjauwar1", "https://tec.openplanner.team/stops/Bjauwar2"], ["https://tec.openplanner.team/stops/Bottpre2", "https://tec.openplanner.team/stops/Bottra91"], ["https://tec.openplanner.team/stops/H2fa108a", "https://tec.openplanner.team/stops/H2hg271a"], ["https://tec.openplanner.team/stops/Cprcits2", "https://tec.openplanner.team/stops/Cprvsar1"], ["https://tec.openplanner.team/stops/X361aab", "https://tec.openplanner.team/stops/X371aia"], ["https://tec.openplanner.team/stops/H1el137a", "https://tec.openplanner.team/stops/H1hi124a"], ["https://tec.openplanner.team/stops/X769aia", "https://tec.openplanner.team/stops/X769aja"], ["https://tec.openplanner.team/stops/LBRgare2", "https://tec.openplanner.team/stops/LBRmout3"], ["https://tec.openplanner.team/stops/N543bma", "https://tec.openplanner.team/stops/N543bna"], ["https://tec.openplanner.team/stops/LaMfuss1", "https://tec.openplanner.team/stops/LaMgeme*"], ["https://tec.openplanner.team/stops/H1ol142a", "https://tec.openplanner.team/stops/H1ol144b"], ["https://tec.openplanner.team/stops/Bwatabs2", "https://tec.openplanner.team/stops/Bwatrsg1"], ["https://tec.openplanner.team/stops/Clafaub1", "https://tec.openplanner.team/stops/NC23aca"], ["https://tec.openplanner.team/stops/H1ms245a", "https://tec.openplanner.team/stops/H1ms308a"], ["https://tec.openplanner.team/stops/N501ddb", "https://tec.openplanner.team/stops/N528aka"], ["https://tec.openplanner.team/stops/X608agb", "https://tec.openplanner.team/stops/X608apa"], ["https://tec.openplanner.team/stops/N501dra", "https://tec.openplanner.team/stops/N501eeb"], ["https://tec.openplanner.team/stops/Bblaece1", "https://tec.openplanner.team/stops/Bblaece2"], ["https://tec.openplanner.team/stops/LTIdamr1", "https://tec.openplanner.team/stops/LTIdamr2"], ["https://tec.openplanner.team/stops/Lhufont2", "https://tec.openplanner.team/stops/Lmncasi1"], ["https://tec.openplanner.team/stops/LBLvici1", "https://tec.openplanner.team/stops/LBLwaid2"], ["https://tec.openplanner.team/stops/X801awb", "https://tec.openplanner.team/stops/X801axb"], ["https://tec.openplanner.team/stops/H5at113a", "https://tec.openplanner.team/stops/H5at137b"], ["https://tec.openplanner.team/stops/Cbfcham1", "https://tec.openplanner.team/stops/Cbfcham4"], ["https://tec.openplanner.team/stops/LTEkl161", "https://tec.openplanner.team/stops/LTErest1"], ["https://tec.openplanner.team/stops/Bpersyn2", "https://tec.openplanner.team/stops/Btlbcul2"], ["https://tec.openplanner.team/stops/H4pq117a", "https://tec.openplanner.team/stops/H4pq118b"], ["https://tec.openplanner.team/stops/H1hv132b", "https://tec.openplanner.team/stops/H1hv133b"], ["https://tec.openplanner.team/stops/N535asb", "https://tec.openplanner.team/stops/N538aya"], ["https://tec.openplanner.team/stops/Lbrmour2", "https://tec.openplanner.team/stops/Llgrull2"], ["https://tec.openplanner.team/stops/LMamuse3", "https://tec.openplanner.team/stops/LMamuse4"], ["https://tec.openplanner.team/stops/Bjodrrg1", "https://tec.openplanner.team/stops/Bzlufbo1"], ["https://tec.openplanner.team/stops/N501gia", "https://tec.openplanner.team/stops/N501kbb"], ["https://tec.openplanner.team/stops/H2go116b", "https://tec.openplanner.team/stops/H2gy107b"], ["https://tec.openplanner.team/stops/X804bga", "https://tec.openplanner.team/stops/X804bgb"], ["https://tec.openplanner.team/stops/Lfhdonn1", "https://tec.openplanner.team/stops/Lfhxhor2"], ["https://tec.openplanner.team/stops/H4pp121b", "https://tec.openplanner.team/stops/H4pp122b"], ["https://tec.openplanner.team/stops/N153ada", "https://tec.openplanner.team/stops/N153aea"], ["https://tec.openplanner.team/stops/H1eq115a", "https://tec.openplanner.team/stops/H1fy142a"], ["https://tec.openplanner.team/stops/Lbocond2", "https://tec.openplanner.team/stops/Lbogonh3"], ["https://tec.openplanner.team/stops/H4ev120a", "https://tec.openplanner.team/stops/H4ev124a"], ["https://tec.openplanner.team/stops/LLAchpl2", "https://tec.openplanner.team/stops/LLAvi652"], ["https://tec.openplanner.team/stops/Broncan2", "https://tec.openplanner.team/stops/Bronn391"], ["https://tec.openplanner.team/stops/H4gz114b", "https://tec.openplanner.team/stops/H4lz126b"], ["https://tec.openplanner.team/stops/Berncim2", "https://tec.openplanner.team/stops/Bernegl4"], ["https://tec.openplanner.team/stops/Lwaeau-1", "https://tec.openplanner.team/stops/Lwapomp2"], ["https://tec.openplanner.team/stops/N135aea", "https://tec.openplanner.team/stops/N143aaa"], ["https://tec.openplanner.team/stops/H1ms251a", "https://tec.openplanner.team/stops/H1ms304a"], ["https://tec.openplanner.team/stops/LTHmaka2", "https://tec.openplanner.team/stops/LTHperr2"], ["https://tec.openplanner.team/stops/Lpeeg--2", "https://tec.openplanner.team/stops/Lpeptwa2"], ["https://tec.openplanner.team/stops/N145aja", "https://tec.openplanner.team/stops/N145ajb"], ["https://tec.openplanner.team/stops/X715afa", "https://tec.openplanner.team/stops/X715afb"], ["https://tec.openplanner.team/stops/N501mtc", "https://tec.openplanner.team/stops/N501mtd"], ["https://tec.openplanner.team/stops/LlgPRVo1", "https://tec.openplanner.team/stops/Lvtpepi2"], ["https://tec.openplanner.team/stops/Cdahtvi2", "https://tec.openplanner.team/stops/Cloravi1"], ["https://tec.openplanner.team/stops/LWn24--1", "https://tec.openplanner.team/stops/LWneg--1"], ["https://tec.openplanner.team/stops/X982bna", "https://tec.openplanner.team/stops/X982bnb"], ["https://tec.openplanner.team/stops/N503aja", "https://tec.openplanner.team/stops/N503ajb"], ["https://tec.openplanner.team/stops/X789acb", "https://tec.openplanner.team/stops/X789afa"], ["https://tec.openplanner.team/stops/Lsnbrac1", "https://tec.openplanner.team/stops/Lsnlhon2"], ["https://tec.openplanner.team/stops/N150agb", "https://tec.openplanner.team/stops/N150aja"], ["https://tec.openplanner.team/stops/N120anb", "https://tec.openplanner.team/stops/N244ava"], ["https://tec.openplanner.team/stops/LBegare2", "https://tec.openplanner.team/stops/LWHkerk1"], ["https://tec.openplanner.team/stops/X743agb", "https://tec.openplanner.team/stops/X746agc"], ["https://tec.openplanner.team/stops/Ccobinc2", "https://tec.openplanner.team/stops/Ccoconf1"], ["https://tec.openplanner.team/stops/X812aya", "https://tec.openplanner.team/stops/X812aza"], ["https://tec.openplanner.team/stops/X612aba", "https://tec.openplanner.team/stops/X623agb"], ["https://tec.openplanner.team/stops/LSdbvue1", "https://tec.openplanner.team/stops/LSdcent2"], ["https://tec.openplanner.team/stops/X666ada", "https://tec.openplanner.team/stops/X666adb"], ["https://tec.openplanner.team/stops/X775abb", "https://tec.openplanner.team/stops/X775aca"], ["https://tec.openplanner.team/stops/H4mo151a", "https://tec.openplanner.team/stops/H4mo208b"], ["https://tec.openplanner.team/stops/Caibras1", "https://tec.openplanner.team/stops/Caibras2"], ["https://tec.openplanner.team/stops/Blpglon1", "https://tec.openplanner.team/stops/Bvxgeta2"], ["https://tec.openplanner.team/stops/H4er124a", "https://tec.openplanner.team/stops/H4sm247b"], ["https://tec.openplanner.team/stops/H4og207a", "https://tec.openplanner.team/stops/H4og212a"], ["https://tec.openplanner.team/stops/H2lc169c", "https://tec.openplanner.team/stops/H2lc172a"], ["https://tec.openplanner.team/stops/Ljekess2", "https://tec.openplanner.team/stops/Ljestat2"], ["https://tec.openplanner.team/stops/N501giz", "https://tec.openplanner.team/stops/N501gsa"], ["https://tec.openplanner.team/stops/Cptplac4", "https://tec.openplanner.team/stops/Cpttraz1"], ["https://tec.openplanner.team/stops/LBbbac-1", "https://tec.openplanner.team/stops/LHXmonu2"], ["https://tec.openplanner.team/stops/N539aea", "https://tec.openplanner.team/stops/N539aeb"], ["https://tec.openplanner.team/stops/Bramcom2", "https://tec.openplanner.team/stops/Bramrdf2"], ["https://tec.openplanner.team/stops/X986acb", "https://tec.openplanner.team/stops/X986ata"], ["https://tec.openplanner.team/stops/LOL6che1", "https://tec.openplanner.team/stops/LOLfoss1"], ["https://tec.openplanner.team/stops/Bhercsj1", "https://tec.openplanner.team/stops/Bpieh171"], ["https://tec.openplanner.team/stops/N547ama", "https://tec.openplanner.team/stops/N548ayb"], ["https://tec.openplanner.team/stops/X345aba", "https://tec.openplanner.team/stops/X345aca"], ["https://tec.openplanner.team/stops/LSGcent1", "https://tec.openplanner.team/stops/LSGeg--2"], ["https://tec.openplanner.team/stops/LTPbode2", "https://tec.openplanner.team/stops/LTPreco2"], ["https://tec.openplanner.team/stops/Bbeagae2", "https://tec.openplanner.team/stops/Bmlngch2"], ["https://tec.openplanner.team/stops/H4li178a", "https://tec.openplanner.team/stops/H4mv194b"], ["https://tec.openplanner.team/stops/Cpccpas1", "https://tec.openplanner.team/stops/Cpceclu1"], ["https://tec.openplanner.team/stops/X946ada", "https://tec.openplanner.team/stops/X948adb"], ["https://tec.openplanner.team/stops/N503aab", "https://tec.openplanner.team/stops/N503adb"], ["https://tec.openplanner.team/stops/Csecoup1", "https://tec.openplanner.team/stops/Csecoup2"], ["https://tec.openplanner.team/stops/Llgcorn3", "https://tec.openplanner.team/stops/Llgmara2"], ["https://tec.openplanner.team/stops/Bblapra1", "https://tec.openplanner.team/stops/Brsg7fo2"], ["https://tec.openplanner.team/stops/Bgliopp1", "https://tec.openplanner.team/stops/Bgliopp3"], ["https://tec.openplanner.team/stops/LFmpoin2", "https://tec.openplanner.team/stops/LFmroye1"], ["https://tec.openplanner.team/stops/X877afa", "https://tec.openplanner.team/stops/X879aba"], ["https://tec.openplanner.team/stops/LBNeup21", "https://tec.openplanner.team/stops/LBNeup22"], ["https://tec.openplanner.team/stops/Cchsud10", "https://tec.openplanner.team/stops/Cchsud11"], ["https://tec.openplanner.team/stops/X745abb", "https://tec.openplanner.team/stops/X746akb"], ["https://tec.openplanner.team/stops/LSTgran2", "https://tec.openplanner.team/stops/LTPlegr2"], ["https://tec.openplanner.team/stops/Bbchcbl2", "https://tec.openplanner.team/stops/Bbchrra2"], ["https://tec.openplanner.team/stops/Cmlthym1", "https://tec.openplanner.team/stops/Cmlthym2"], ["https://tec.openplanner.team/stops/Lgrlimi1", "https://tec.openplanner.team/stops/Lgrlimi2"], ["https://tec.openplanner.team/stops/N501hjd", "https://tec.openplanner.team/stops/N501hla"], ["https://tec.openplanner.team/stops/LMOelva4", "https://tec.openplanner.team/stops/LMOmome1"], ["https://tec.openplanner.team/stops/LWapl--1", "https://tec.openplanner.team/stops/LWarema2"], ["https://tec.openplanner.team/stops/Borbtre2", "https://tec.openplanner.team/stops/Btsllsc2"], ["https://tec.openplanner.team/stops/H5pe137a", "https://tec.openplanner.team/stops/H5pe147b"], ["https://tec.openplanner.team/stops/LCocasc1", "https://tec.openplanner.team/stops/LCogara1"], ["https://tec.openplanner.team/stops/Bhaldbo1", "https://tec.openplanner.team/stops/Bhalgja2"], ["https://tec.openplanner.team/stops/Lfllapi4", "https://tec.openplanner.team/stops/Lflsana2"], ["https://tec.openplanner.team/stops/Bwavfbe1", "https://tec.openplanner.team/stops/Bwavfol2"], ["https://tec.openplanner.team/stops/LrAalte2", "https://tec.openplanner.team/stops/LrAneus3"], ["https://tec.openplanner.team/stops/N136aaa", "https://tec.openplanner.team/stops/N136aab"], ["https://tec.openplanner.team/stops/H4ef111b", "https://tec.openplanner.team/stops/H4mx115a"], ["https://tec.openplanner.team/stops/H1ms287b", "https://tec.openplanner.team/stops/H1ms906a"], ["https://tec.openplanner.team/stops/H1sg149a", "https://tec.openplanner.team/stops/H1sg149b"], ["https://tec.openplanner.team/stops/N557aib", "https://tec.openplanner.team/stops/N562aea"], ["https://tec.openplanner.team/stops/X882aia", "https://tec.openplanner.team/stops/X882aka"], ["https://tec.openplanner.team/stops/LTecent4", "https://tec.openplanner.team/stops/LTestat2"], ["https://tec.openplanner.team/stops/H2ch100b", "https://tec.openplanner.team/stops/H2ch108b"], ["https://tec.openplanner.team/stops/H1te198a", "https://tec.openplanner.team/stops/H1te198b"], ["https://tec.openplanner.team/stops/Livcoll2", "https://tec.openplanner.team/stops/Livpost2"], ["https://tec.openplanner.team/stops/X742afb", "https://tec.openplanner.team/stops/X743aab"], ["https://tec.openplanner.team/stops/Bgerprg1", "https://tec.openplanner.team/stops/NB33afb"], ["https://tec.openplanner.team/stops/LWEcite2", "https://tec.openplanner.team/stops/LWEcomp1"], ["https://tec.openplanner.team/stops/X946aha", "https://tec.openplanner.team/stops/X946ahb"], ["https://tec.openplanner.team/stops/H3bi117a", "https://tec.openplanner.team/stops/H3bi117b"], ["https://tec.openplanner.team/stops/LHDchar4", "https://tec.openplanner.team/stops/LLmvict1"], ["https://tec.openplanner.team/stops/Bnivga31", "https://tec.openplanner.team/stops/Bnivga32"], ["https://tec.openplanner.team/stops/LBVlamo1", "https://tec.openplanner.team/stops/LHmcite1"], ["https://tec.openplanner.team/stops/H2me113a", "https://tec.openplanner.team/stops/H2me114b"], ["https://tec.openplanner.team/stops/Ldilyce*", "https://tec.openplanner.team/stops/Ldimont1"], ["https://tec.openplanner.team/stops/N229anb", "https://tec.openplanner.team/stops/N229atb"], ["https://tec.openplanner.team/stops/Crsrose2", "https://tec.openplanner.team/stops/Crswaut2"], ["https://tec.openplanner.team/stops/LaAzwei2", "https://tec.openplanner.team/stops/LhGscha*"], ["https://tec.openplanner.team/stops/Lmapomm1", "https://tec.openplanner.team/stops/LPRmoul1"], ["https://tec.openplanner.team/stops/LMaburg3", "https://tec.openplanner.team/stops/LMaburg4"], ["https://tec.openplanner.team/stops/Bmrlsau2", "https://tec.openplanner.team/stops/Bpiehvi2"], ["https://tec.openplanner.team/stops/N501eza", "https://tec.openplanner.team/stops/N501jta"], ["https://tec.openplanner.team/stops/X993abd", "https://tec.openplanner.team/stops/X993acb"], ["https://tec.openplanner.team/stops/H1bi100a", "https://tec.openplanner.team/stops/H1bu139b"], ["https://tec.openplanner.team/stops/LAivill2", "https://tec.openplanner.team/stops/LENgend2"], ["https://tec.openplanner.team/stops/H5rx122a", "https://tec.openplanner.team/stops/H5rx122b"], ["https://tec.openplanner.team/stops/H1gr113a", "https://tec.openplanner.team/stops/H1gr113b"], ["https://tec.openplanner.team/stops/Lhrbell2", "https://tec.openplanner.team/stops/Lhrtunn2"], ["https://tec.openplanner.team/stops/LWNcham1", "https://tec.openplanner.team/stops/LWNcime1"], ["https://tec.openplanner.team/stops/H1bn113a", "https://tec.openplanner.team/stops/H1bn113b"], ["https://tec.openplanner.team/stops/LrAneud1", "https://tec.openplanner.team/stops/LrAneud2"], ["https://tec.openplanner.team/stops/X901ata", "https://tec.openplanner.team/stops/X901aza"], ["https://tec.openplanner.team/stops/N231agb", "https://tec.openplanner.team/stops/N291acb"], ["https://tec.openplanner.team/stops/LLYcham1", "https://tec.openplanner.team/stops/LLYhoch2"], ["https://tec.openplanner.team/stops/H1bs112b", "https://tec.openplanner.team/stops/H1sb144b"], ["https://tec.openplanner.team/stops/NL76ada", "https://tec.openplanner.team/stops/NL80aub"], ["https://tec.openplanner.team/stops/LON02--2", "https://tec.openplanner.team/stops/LWastei2"], ["https://tec.openplanner.team/stops/LCUgale2", "https://tec.openplanner.team/stops/LCUthie1"], ["https://tec.openplanner.team/stops/LCltrib1", "https://tec.openplanner.team/stops/LCltrib2"], ["https://tec.openplanner.team/stops/Bbcoubo3", "https://tec.openplanner.team/stops/H3br108d"], ["https://tec.openplanner.team/stops/Bllngar7", "https://tec.openplanner.team/stops/Bllngar9"], ["https://tec.openplanner.team/stops/LWeatel1", "https://tec.openplanner.team/stops/LWegdry2"], ["https://tec.openplanner.team/stops/X794aaa", "https://tec.openplanner.team/stops/X794aab"], ["https://tec.openplanner.team/stops/LlgOPER1", "https://tec.openplanner.team/stops/LlgPTAV2"], ["https://tec.openplanner.team/stops/H4bo120a", "https://tec.openplanner.team/stops/H4bo122b"], ["https://tec.openplanner.team/stops/LBJchau*", "https://tec.openplanner.team/stops/LHcaube1"], ["https://tec.openplanner.team/stops/N115aaa", "https://tec.openplanner.team/stops/N147aea"], ["https://tec.openplanner.team/stops/Llgjasm1", "https://tec.openplanner.team/stops/Llgmont1"], ["https://tec.openplanner.team/stops/Cmlours2", "https://tec.openplanner.team/stops/Cmlphai1"], ["https://tec.openplanner.team/stops/LESmagr2", "https://tec.openplanner.team/stops/LPLstri2"], ["https://tec.openplanner.team/stops/H1gn150a", "https://tec.openplanner.team/stops/H1hq126a"], ["https://tec.openplanner.team/stops/N551acb", "https://tec.openplanner.team/stops/N551aec"], ["https://tec.openplanner.team/stops/LBYwez-2", "https://tec.openplanner.team/stops/LXHbois1"], ["https://tec.openplanner.team/stops/LVAgemm1", "https://tec.openplanner.team/stops/LVAgemm2"], ["https://tec.openplanner.team/stops/Brixpro1", "https://tec.openplanner.team/stops/Brixpro4"], ["https://tec.openplanner.team/stops/Bjodfco2", "https://tec.openplanner.team/stops/Bmrlsau1"], ["https://tec.openplanner.team/stops/H4ru246b", "https://tec.openplanner.team/stops/H4ty275a"], ["https://tec.openplanner.team/stops/H4bh102d", "https://tec.openplanner.team/stops/H4bh105b"], ["https://tec.openplanner.team/stops/N101aaa", "https://tec.openplanner.team/stops/N118akb"], ["https://tec.openplanner.team/stops/H1po130b", "https://tec.openplanner.team/stops/H1po137a"], ["https://tec.openplanner.team/stops/N501grb", "https://tec.openplanner.team/stops/N501zaa"], ["https://tec.openplanner.team/stops/Cprcalv1", "https://tec.openplanner.team/stops/Cprgran1"], ["https://tec.openplanner.team/stops/LMaslav3", "https://tec.openplanner.team/stops/LMgkrui1"], ["https://tec.openplanner.team/stops/X640afa", "https://tec.openplanner.team/stops/X640aka"], ["https://tec.openplanner.team/stops/X886aaa", "https://tec.openplanner.team/stops/X886abc"], ["https://tec.openplanner.team/stops/Bnivga12", "https://tec.openplanner.team/stops/Bnivrwi1"], ["https://tec.openplanner.team/stops/N531aha", "https://tec.openplanner.team/stops/N531ahb"], ["https://tec.openplanner.team/stops/N138aha", "https://tec.openplanner.team/stops/N138aia"], ["https://tec.openplanner.team/stops/X633ahb", "https://tec.openplanner.team/stops/X633aia"], ["https://tec.openplanner.team/stops/Cmywarc1", "https://tec.openplanner.team/stops/Cmywarc2"], ["https://tec.openplanner.team/stops/Cgrchas1", "https://tec.openplanner.team/stops/N160aea"], ["https://tec.openplanner.team/stops/H1be100a", "https://tec.openplanner.team/stops/H1so131e"], ["https://tec.openplanner.team/stops/LMNentr2", "https://tec.openplanner.team/stops/LMNpann2"], ["https://tec.openplanner.team/stops/X725axa", "https://tec.openplanner.team/stops/X725aya"], ["https://tec.openplanner.team/stops/Ccpbrun1", "https://tec.openplanner.team/stops/Ccpbrun2"], ["https://tec.openplanner.team/stops/H4be100a", "https://tec.openplanner.team/stops/H4be112b"], ["https://tec.openplanner.team/stops/LVLsabl1", "https://tec.openplanner.team/stops/LVLsabl2"], ["https://tec.openplanner.team/stops/N110aab", "https://tec.openplanner.team/stops/N110aba"], ["https://tec.openplanner.team/stops/LeUschn2", "https://tec.openplanner.team/stops/LkTtal-2"], ["https://tec.openplanner.team/stops/Ladarev1", "https://tec.openplanner.team/stops/LHCprog1"], ["https://tec.openplanner.team/stops/LWHwaas3", "https://tec.openplanner.team/stops/LWSstat1"], ["https://tec.openplanner.team/stops/LMibouv4", "https://tec.openplanner.team/stops/LSTmast1"], ["https://tec.openplanner.team/stops/H1do115b", "https://tec.openplanner.team/stops/H1do124a"], ["https://tec.openplanner.team/stops/H1ca106a", "https://tec.openplanner.team/stops/H1ca106b"], ["https://tec.openplanner.team/stops/X760aaa", "https://tec.openplanner.team/stops/X762acb"], ["https://tec.openplanner.team/stops/Blhulil2", "https://tec.openplanner.team/stops/Blhulor2"], ["https://tec.openplanner.team/stops/Blemwro2", "https://tec.openplanner.team/stops/Btubcal2"], ["https://tec.openplanner.team/stops/H4ar104a", "https://tec.openplanner.team/stops/H4ar104b"], ["https://tec.openplanner.team/stops/LPAmc--1", "https://tec.openplanner.team/stops/LPAmc--2"], ["https://tec.openplanner.team/stops/N501msa", "https://tec.openplanner.team/stops/N501zaa"], ["https://tec.openplanner.team/stops/LHUomni2", "https://tec.openplanner.team/stops/LHUsaul2"], ["https://tec.openplanner.team/stops/LlNbusc2", "https://tec.openplanner.team/stops/LWEcite1"], ["https://tec.openplanner.team/stops/H1te183a", "https://tec.openplanner.team/stops/H1te188b"], ["https://tec.openplanner.team/stops/H1ms304a", "https://tec.openplanner.team/stops/H1ms913a"], ["https://tec.openplanner.team/stops/H4ty329b", "https://tec.openplanner.team/stops/H4ty350b"], ["https://tec.openplanner.team/stops/X826abb", "https://tec.openplanner.team/stops/X860aaa"], ["https://tec.openplanner.team/stops/X616aca", "https://tec.openplanner.team/stops/X616aib"], ["https://tec.openplanner.team/stops/N533ada", "https://tec.openplanner.team/stops/N551aka"], ["https://tec.openplanner.team/stops/Cnacout2", "https://tec.openplanner.team/stops/Cnadepo2"], ["https://tec.openplanner.team/stops/LCIcent2", "https://tec.openplanner.team/stops/LCIpiet1"], ["https://tec.openplanner.team/stops/Blpgvil2", "https://tec.openplanner.team/stops/Cbtstac1"], ["https://tec.openplanner.team/stops/X634aba", "https://tec.openplanner.team/stops/X654aab"], ["https://tec.openplanner.team/stops/LMuvill1", "https://tec.openplanner.team/stops/LMuvill2"], ["https://tec.openplanner.team/stops/Bcbqa362", "https://tec.openplanner.team/stops/Bhaltre2"], ["https://tec.openplanner.team/stops/X614aga", "https://tec.openplanner.team/stops/X614ayb"], ["https://tec.openplanner.team/stops/LHUcomp1", "https://tec.openplanner.team/stops/LHUmala2"], ["https://tec.openplanner.team/stops/H1mk111b", "https://tec.openplanner.team/stops/H1mk114b"], ["https://tec.openplanner.team/stops/LLrc1992", "https://tec.openplanner.team/stops/LLrmaq-2"], ["https://tec.openplanner.team/stops/Ljubeyn1", "https://tec.openplanner.team/stops/Ljubods1"], ["https://tec.openplanner.team/stops/N544ada", "https://tec.openplanner.team/stops/N577aaa"], ["https://tec.openplanner.team/stops/N313aea", "https://tec.openplanner.team/stops/N313aec"], ["https://tec.openplanner.team/stops/LSseg--1", "https://tec.openplanner.team/stops/LSsmond2"], ["https://tec.openplanner.team/stops/X623acb", "https://tec.openplanner.team/stops/X623aed"], ["https://tec.openplanner.team/stops/Bllncom1", "https://tec.openplanner.team/stops/Bllngar8"], ["https://tec.openplanner.team/stops/LVSpn--1", "https://tec.openplanner.team/stops/LVStige2"], ["https://tec.openplanner.team/stops/LBalacr1", "https://tec.openplanner.team/stops/LBamate1"], ["https://tec.openplanner.team/stops/H4wi164b", "https://tec.openplanner.team/stops/H5pe139a"], ["https://tec.openplanner.team/stops/X723aba", "https://tec.openplanner.team/stops/X766aga"], ["https://tec.openplanner.team/stops/NH21adb", "https://tec.openplanner.team/stops/NH21aea"], ["https://tec.openplanner.team/stops/Cmmceri1", "https://tec.openplanner.team/stops/Cmmceri2"], ["https://tec.openplanner.team/stops/Bernegl3", "https://tec.openplanner.team/stops/Bernrar2"], ["https://tec.openplanner.team/stops/X919ajc", "https://tec.openplanner.team/stops/X919ajd"], ["https://tec.openplanner.team/stops/Cmlhubi2", "https://tec.openplanner.team/stops/Cmlipsm2"], ["https://tec.openplanner.team/stops/N231abb", "https://tec.openplanner.team/stops/N242agb"], ["https://tec.openplanner.team/stops/Lgrbill1", "https://tec.openplanner.team/stops/Lgrchar2"], ["https://tec.openplanner.team/stops/N506bod", "https://tec.openplanner.team/stops/N506bsa"], ["https://tec.openplanner.team/stops/H1ms268b", "https://tec.openplanner.team/stops/H1ms281b"], ["https://tec.openplanner.team/stops/N232bqb", "https://tec.openplanner.team/stops/N261abb"], ["https://tec.openplanner.team/stops/X925alb", "https://tec.openplanner.team/stops/X925aoa"], ["https://tec.openplanner.team/stops/N346aab", "https://tec.openplanner.team/stops/N347aga"], ["https://tec.openplanner.team/stops/Lhr3jui2", "https://tec.openplanner.team/stops/Lhrmilm2"], ["https://tec.openplanner.team/stops/LRemonu2", "https://tec.openplanner.team/stops/LRemorr2"], ["https://tec.openplanner.team/stops/H4hu122a", "https://tec.openplanner.team/stops/H4ld124b"], ["https://tec.openplanner.team/stops/H4ch113b", "https://tec.openplanner.team/stops/H4ch120a"], ["https://tec.openplanner.team/stops/H4la196a", "https://tec.openplanner.team/stops/H4la199a"], ["https://tec.openplanner.team/stops/H2sv217b", "https://tec.openplanner.team/stops/H2sv219a"], ["https://tec.openplanner.team/stops/H5gr137b", "https://tec.openplanner.team/stops/H5gr138b"], ["https://tec.openplanner.team/stops/X617acb", "https://tec.openplanner.team/stops/X617agb"], ["https://tec.openplanner.team/stops/N581aaa", "https://tec.openplanner.team/stops/N581aab"], ["https://tec.openplanner.team/stops/Cgxalli2", "https://tec.openplanner.team/stops/CMleer1"], ["https://tec.openplanner.team/stops/X740aab", "https://tec.openplanner.team/stops/X740aga"], ["https://tec.openplanner.team/stops/Bllncyc1", "https://tec.openplanner.team/stops/Bllnmet2"], ["https://tec.openplanner.team/stops/Crapaep2", "https://tec.openplanner.team/stops/Crasocq2"], ["https://tec.openplanner.team/stops/N244aab", "https://tec.openplanner.team/stops/N244ada"], ["https://tec.openplanner.team/stops/LHSheur1", "https://tec.openplanner.team/stops/LHSheur2"], ["https://tec.openplanner.team/stops/X606abb", "https://tec.openplanner.team/stops/X620aeb"], ["https://tec.openplanner.team/stops/H1he104b", "https://tec.openplanner.team/stops/H1he108b"], ["https://tec.openplanner.team/stops/Cmlclos1", "https://tec.openplanner.team/stops/Cmmami2"], ["https://tec.openplanner.team/stops/X715aaa", "https://tec.openplanner.team/stops/X781adb"], ["https://tec.openplanner.team/stops/LHMbelv1", "https://tec.openplanner.team/stops/LHMbelv2"], ["https://tec.openplanner.team/stops/N529aba", "https://tec.openplanner.team/stops/N529abc"], ["https://tec.openplanner.team/stops/Bwavbar2", "https://tec.openplanner.team/stops/Bwavzno1"], ["https://tec.openplanner.team/stops/Cladura4", "https://tec.openplanner.team/stops/Claptcf2"], ["https://tec.openplanner.team/stops/LBabeco3", "https://tec.openplanner.team/stops/LBapepi3"], ["https://tec.openplanner.team/stops/H2gy103b", "https://tec.openplanner.team/stops/H2gy106a"], ["https://tec.openplanner.team/stops/LXobaty1", "https://tec.openplanner.team/stops/X599aga"], ["https://tec.openplanner.team/stops/LSebott1", "https://tec.openplanner.team/stops/LSemc--2"], ["https://tec.openplanner.team/stops/N111adb", "https://tec.openplanner.team/stops/N111afa"], ["https://tec.openplanner.team/stops/Brsga812", "https://tec.openplanner.team/stops/Brsgepr1"], ["https://tec.openplanner.team/stops/LHrfang1", "https://tec.openplanner.team/stops/LREchal1"], ["https://tec.openplanner.team/stops/Cgualno1", "https://tec.openplanner.team/stops/Cnapair1"], ["https://tec.openplanner.team/stops/X641ara", "https://tec.openplanner.team/stops/X641aza"], ["https://tec.openplanner.team/stops/X615aha", "https://tec.openplanner.team/stops/X615asb"], ["https://tec.openplanner.team/stops/X898aka", "https://tec.openplanner.team/stops/X898amb"], ["https://tec.openplanner.team/stops/Llglema2", "https://tec.openplanner.team/stops/Llgriva2"], ["https://tec.openplanner.team/stops/N349aia", "https://tec.openplanner.team/stops/X349aic"], ["https://tec.openplanner.team/stops/Bquecge2", "https://tec.openplanner.team/stops/Bquegen1"], ["https://tec.openplanner.team/stops/N507aab", "https://tec.openplanner.team/stops/NL30aka"], ["https://tec.openplanner.team/stops/H4te248b", "https://tec.openplanner.team/stops/H4te253a"], ["https://tec.openplanner.team/stops/N229ara", "https://tec.openplanner.team/stops/N230aba"], ["https://tec.openplanner.team/stops/X820aha", "https://tec.openplanner.team/stops/X820ahb"], ["https://tec.openplanner.team/stops/LBIvill2", "https://tec.openplanner.team/stops/LBIvill3"], ["https://tec.openplanner.team/stops/Cdogrro1", "https://tec.openplanner.team/stops/Cdostco1"], ["https://tec.openplanner.team/stops/N512asb", "https://tec.openplanner.team/stops/N512atb"], ["https://tec.openplanner.team/stops/Lsebegu2", "https://tec.openplanner.team/stops/Lsetrav1"], ["https://tec.openplanner.team/stops/H1hy127a", "https://tec.openplanner.team/stops/H1hy130a"], ["https://tec.openplanner.team/stops/LWRbois1", "https://tec.openplanner.team/stops/LWRvert1"], ["https://tec.openplanner.team/stops/H4ff117b", "https://tec.openplanner.team/stops/H4mb143d"], ["https://tec.openplanner.team/stops/LTyh24-1", "https://tec.openplanner.team/stops/LTyh51-2"], ["https://tec.openplanner.team/stops/LTPreco1", "https://tec.openplanner.team/stops/LTPreco2"], ["https://tec.openplanner.team/stops/Bbrlvil1", "https://tec.openplanner.team/stops/Bbrlvil2"], ["https://tec.openplanner.team/stops/H1mb135a", "https://tec.openplanner.team/stops/H1mb135b"], ["https://tec.openplanner.team/stops/LAuchau1", "https://tec.openplanner.team/stops/LMubras1"], ["https://tec.openplanner.team/stops/H4ty267b", "https://tec.openplanner.team/stops/H4ty327b"], ["https://tec.openplanner.team/stops/Bquecar1", "https://tec.openplanner.team/stops/Bquegob3"], ["https://tec.openplanner.team/stops/LHMbami1", "https://tec.openplanner.team/stops/LMNheme1"], ["https://tec.openplanner.team/stops/X646aca", "https://tec.openplanner.team/stops/X646ada"], ["https://tec.openplanner.team/stops/Lcepont6", "https://tec.openplanner.team/stops/Lceviei1"], ["https://tec.openplanner.team/stops/H4ro157a", "https://tec.openplanner.team/stops/H4ro157b"], ["https://tec.openplanner.team/stops/N207adb", "https://tec.openplanner.team/stops/N207adc"], ["https://tec.openplanner.team/stops/LGorysa1", "https://tec.openplanner.team/stops/Lpeflec1"], ["https://tec.openplanner.team/stops/LFFmarc1", "https://tec.openplanner.team/stops/LFFpier2"], ["https://tec.openplanner.team/stops/Bmrqpla1", "https://tec.openplanner.team/stops/Bmrqpla2"], ["https://tec.openplanner.team/stops/X390ana", "https://tec.openplanner.team/stops/X390anb"], ["https://tec.openplanner.team/stops/X610acb", "https://tec.openplanner.team/stops/X610ada"], ["https://tec.openplanner.team/stops/LwYbruc1", "https://tec.openplanner.team/stops/LwYsour4"], ["https://tec.openplanner.team/stops/Cfrcoqu4", "https://tec.openplanner.team/stops/Cfrgare3"], ["https://tec.openplanner.team/stops/Lemarde2", "https://tec.openplanner.team/stops/Lemcort2"], ["https://tec.openplanner.team/stops/Louazot2", "https://tec.openplanner.team/stops/Loureno1"], ["https://tec.openplanner.team/stops/X899aca", "https://tec.openplanner.team/stops/X899aea"], ["https://tec.openplanner.team/stops/Ccucroi1", "https://tec.openplanner.team/stops/Ccuphai4"], ["https://tec.openplanner.team/stops/N234acb", "https://tec.openplanner.team/stops/N549aib"], ["https://tec.openplanner.team/stops/H2go118a", "https://tec.openplanner.team/stops/H2go118b"], ["https://tec.openplanner.team/stops/LSGhagn1", "https://tec.openplanner.team/stops/LSGsolo1"], ["https://tec.openplanner.team/stops/LETec--1", "https://tec.openplanner.team/stops/LMIcamp2"], ["https://tec.openplanner.team/stops/Cmlfeba1", "https://tec.openplanner.team/stops/Cmlhubi1"], ["https://tec.openplanner.team/stops/Lbrplai1", "https://tec.openplanner.team/stops/Llgplai1"], ["https://tec.openplanner.team/stops/Bwatms09", "https://tec.openplanner.team/stops/Bwatmsj6"], ["https://tec.openplanner.team/stops/N533aqc", "https://tec.openplanner.team/stops/N533aqd"], ["https://tec.openplanner.team/stops/Ltibell2", "https://tec.openplanner.team/stops/Ltimarr2"], ["https://tec.openplanner.team/stops/X661aoa", "https://tec.openplanner.team/stops/X839adb"], ["https://tec.openplanner.team/stops/N523abb", "https://tec.openplanner.team/stops/N523acb"], ["https://tec.openplanner.team/stops/H2hl111b", "https://tec.openplanner.team/stops/H2pe155a"], ["https://tec.openplanner.team/stops/N153adb", "https://tec.openplanner.team/stops/N154aaa"], ["https://tec.openplanner.team/stops/X804aga", "https://tec.openplanner.team/stops/X804aib"], ["https://tec.openplanner.team/stops/Cmlhauc2", "https://tec.openplanner.team/stops/Cmlstgi2"], ["https://tec.openplanner.team/stops/Lmoboeu2", "https://tec.openplanner.team/stops/Lmodeni2"], ["https://tec.openplanner.team/stops/N135aba", "https://tec.openplanner.team/stops/N135abb"], ["https://tec.openplanner.team/stops/Blnzcar1", "https://tec.openplanner.team/stops/N522acb"], ["https://tec.openplanner.team/stops/Lhrmura1", "https://tec.openplanner.team/stops/Lhrthie2"], ["https://tec.openplanner.team/stops/LJeeg--2", "https://tec.openplanner.team/stops/LJetrih2"], ["https://tec.openplanner.team/stops/Lmldama1", "https://tec.openplanner.team/stops/Lmlprie2"], ["https://tec.openplanner.team/stops/N248aba", "https://tec.openplanner.team/stops/N248abb"], ["https://tec.openplanner.team/stops/N506bmb", "https://tec.openplanner.team/stops/N506bqa"], ["https://tec.openplanner.team/stops/LBEabba1", "https://tec.openplanner.team/stops/LBEnina4"], ["https://tec.openplanner.team/stops/X607aab", "https://tec.openplanner.team/stops/X607abb"], ["https://tec.openplanner.team/stops/LbHzent1", "https://tec.openplanner.team/stops/LrUkult2"], ["https://tec.openplanner.team/stops/Lgrclos2", "https://tec.openplanner.team/stops/Lgreg--2"], ["https://tec.openplanner.team/stops/X907adb", "https://tec.openplanner.team/stops/X907aia"], ["https://tec.openplanner.team/stops/LTB105-1", "https://tec.openplanner.team/stops/X714abb"], ["https://tec.openplanner.team/stops/N532aba", "https://tec.openplanner.team/stops/N532aia"], ["https://tec.openplanner.team/stops/Cfmcent2", "https://tec.openplanner.team/stops/Cfmsncb1"], ["https://tec.openplanner.team/stops/Cgxptt1", "https://tec.openplanner.team/stops/CMmorg1"], ["https://tec.openplanner.team/stops/LHdvill1", "https://tec.openplanner.team/stops/LTatult4"], ["https://tec.openplanner.team/stops/Lbocruc2", "https://tec.openplanner.team/stops/Lsebonc1"], ["https://tec.openplanner.team/stops/LSAvieu1", "https://tec.openplanner.team/stops/LSAvieu2"], ["https://tec.openplanner.team/stops/Cfachap2", "https://tec.openplanner.team/stops/Cfanoci2"], ["https://tec.openplanner.team/stops/Lmojoan2", "https://tec.openplanner.team/stops/Lmolama2"], ["https://tec.openplanner.team/stops/X733afa", "https://tec.openplanner.team/stops/X733aja"], ["https://tec.openplanner.team/stops/N874aja", "https://tec.openplanner.team/stops/N874amb"], ["https://tec.openplanner.team/stops/Blthbss2", "https://tec.openplanner.team/stops/Bmlnbpr1"], ["https://tec.openplanner.team/stops/N534amg", "https://tec.openplanner.team/stops/N534apg"], ["https://tec.openplanner.team/stops/Bhmmgar1", "https://tec.openplanner.team/stops/Bhmmmon2"], ["https://tec.openplanner.team/stops/N140aaa", "https://tec.openplanner.team/stops/N146afb"], ["https://tec.openplanner.team/stops/Llgarmu1", "https://tec.openplanner.team/stops/Llgarmu4"], ["https://tec.openplanner.team/stops/Llgamer1", "https://tec.openplanner.team/stops/Llgbwez1"], ["https://tec.openplanner.team/stops/H4ka193b", "https://tec.openplanner.team/stops/H4ty359b"], ["https://tec.openplanner.team/stops/X837aaa", "https://tec.openplanner.team/stops/X837aba"], ["https://tec.openplanner.team/stops/Brixaug3", "https://tec.openplanner.team/stops/Brixpro3"], ["https://tec.openplanner.team/stops/X769apa", "https://tec.openplanner.team/stops/X769aqb"], ["https://tec.openplanner.team/stops/N503alb", "https://tec.openplanner.team/stops/N509bga"], ["https://tec.openplanner.team/stops/LBTchai1", "https://tec.openplanner.team/stops/LCHsaul2"], ["https://tec.openplanner.team/stops/N355abb", "https://tec.openplanner.team/stops/N355ada"], ["https://tec.openplanner.team/stops/Bezegar2", "https://tec.openplanner.team/stops/Blanath1"], ["https://tec.openplanner.team/stops/Baudsta2", "https://tec.openplanner.team/stops/Bwolvan2"], ["https://tec.openplanner.team/stops/Lladete3", "https://tec.openplanner.team/stops/Lladete4"], ["https://tec.openplanner.team/stops/Bjaugar5", "https://tec.openplanner.team/stops/Bjaupro2"], ["https://tec.openplanner.team/stops/X630abb", "https://tec.openplanner.team/stops/X630aca"], ["https://tec.openplanner.team/stops/Bsaumlk2", "https://tec.openplanner.team/stops/Bsaumlk3"], ["https://tec.openplanner.team/stops/Cmyboci1", "https://tec.openplanner.team/stops/Cmyvert2"], ["https://tec.openplanner.team/stops/H4mo148b", "https://tec.openplanner.team/stops/H4mo184b"], ["https://tec.openplanner.team/stops/N517add", "https://tec.openplanner.team/stops/NL75aab"], ["https://tec.openplanner.team/stops/LCljose1", "https://tec.openplanner.team/stops/LFdbagu2"], ["https://tec.openplanner.team/stops/LwYkirc2", "https://tec.openplanner.team/stops/LwYsarl2"], ["https://tec.openplanner.team/stops/LNveg--2", "https://tec.openplanner.team/stops/LNvrout2"], ["https://tec.openplanner.team/stops/Lpeptle1", "https://tec.openplanner.team/stops/LWeatel2"], ["https://tec.openplanner.team/stops/LGEvill1", "https://tec.openplanner.team/stops/LGEwalk1"], ["https://tec.openplanner.team/stops/H4bd109a", "https://tec.openplanner.team/stops/H4te257a"], ["https://tec.openplanner.team/stops/X601cia", "https://tec.openplanner.team/stops/X601cja"], ["https://tec.openplanner.team/stops/H1bo110a", "https://tec.openplanner.team/stops/H1bo110b"], ["https://tec.openplanner.team/stops/Ctm4che2", "https://tec.openplanner.team/stops/Ctmazeb1"], ["https://tec.openplanner.team/stops/LBPrueg2", "https://tec.openplanner.team/stops/LSLfler1"], ["https://tec.openplanner.team/stops/X614asa", "https://tec.openplanner.team/stops/X614ata"], ["https://tec.openplanner.team/stops/X359aab", "https://tec.openplanner.team/stops/X371afa"], ["https://tec.openplanner.team/stops/Bwatb4s1", "https://tec.openplanner.team/stops/Bwatbno2"], ["https://tec.openplanner.team/stops/H1wa132b", "https://tec.openplanner.team/stops/H1wa155b"], ["https://tec.openplanner.team/stops/H1po132b", "https://tec.openplanner.team/stops/H1po137a"], ["https://tec.openplanner.team/stops/LFsconc1", "https://tec.openplanner.team/stops/LFsec--1"], ["https://tec.openplanner.team/stops/X927aba", "https://tec.openplanner.team/stops/X927acb"], ["https://tec.openplanner.team/stops/H2ha129b", "https://tec.openplanner.team/stops/H2ha141a"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lenhosp1"], ["https://tec.openplanner.team/stops/X818afa", "https://tec.openplanner.team/stops/X818afb"], ["https://tec.openplanner.team/stops/Cmmbsit1", "https://tec.openplanner.team/stops/Cmmbsit2"], ["https://tec.openplanner.team/stops/Cbmind3", "https://tec.openplanner.team/stops/Cssgare2"], ["https://tec.openplanner.team/stops/N215aca", "https://tec.openplanner.team/stops/N215acc"], ["https://tec.openplanner.team/stops/Loureno2", "https://tec.openplanner.team/stops/Lstchas1"], ["https://tec.openplanner.team/stops/H4ty301b", "https://tec.openplanner.team/stops/H4ty335b"], ["https://tec.openplanner.team/stops/Bhenpla2", "https://tec.openplanner.team/stops/Bhenrcr1"], ["https://tec.openplanner.team/stops/H4er121b", "https://tec.openplanner.team/stops/H4oq228a"], ["https://tec.openplanner.team/stops/X738aab", "https://tec.openplanner.team/stops/X779ada"], ["https://tec.openplanner.team/stops/X637abb", "https://tec.openplanner.team/stops/X637aca"], ["https://tec.openplanner.team/stops/H1hl127a", "https://tec.openplanner.team/stops/H1hl127b"], ["https://tec.openplanner.team/stops/Bovetdo2", "https://tec.openplanner.team/stops/Brsregl4"], ["https://tec.openplanner.team/stops/Bgemibb2", "https://tec.openplanner.team/stops/N522aca"], ["https://tec.openplanner.team/stops/Cbwegl2", "https://tec.openplanner.team/stops/Cmgvpa"], ["https://tec.openplanner.team/stops/LbUmolk2", "https://tec.openplanner.team/stops/LbUwirt2"], ["https://tec.openplanner.team/stops/N525aed", "https://tec.openplanner.team/stops/N525alb"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LCxross1"], ["https://tec.openplanner.team/stops/LHYdogn1", "https://tec.openplanner.team/stops/LHYnoid2"], ["https://tec.openplanner.team/stops/LaAlinz2", "https://tec.openplanner.team/stops/LaAneul1"], ["https://tec.openplanner.team/stops/Bbealon4", "https://tec.openplanner.team/stops/Bbeascl2"], ["https://tec.openplanner.team/stops/X607abb", "https://tec.openplanner.team/stops/X621aca"], ["https://tec.openplanner.team/stops/X512aib", "https://tec.openplanner.team/stops/X595abb"], ["https://tec.openplanner.team/stops/Bhevgar1", "https://tec.openplanner.team/stops/Bhevhha1"], ["https://tec.openplanner.team/stops/Btancnd1", "https://tec.openplanner.team/stops/Btancre2"], ["https://tec.openplanner.team/stops/LeUclou2", "https://tec.openplanner.team/stops/LrAbe601"], ["https://tec.openplanner.team/stops/H1qv114b", "https://tec.openplanner.team/stops/H1qv115b"], ["https://tec.openplanner.team/stops/N534asa", "https://tec.openplanner.team/stops/N534ava"], ["https://tec.openplanner.team/stops/H4ss157a", "https://tec.openplanner.team/stops/H5rx100a"], ["https://tec.openplanner.team/stops/H1ms271a", "https://tec.openplanner.team/stops/H1ms310a"], ["https://tec.openplanner.team/stops/Bottcpl2", "https://tec.openplanner.team/stops/Bottpin1"], ["https://tec.openplanner.team/stops/LLteg--2", "https://tec.openplanner.team/stops/LLtrout1"], ["https://tec.openplanner.team/stops/LgHdorf1", "https://tec.openplanner.team/stops/LwSschw1"], ["https://tec.openplanner.team/stops/N308aea", "https://tec.openplanner.team/stops/N308afb"], ["https://tec.openplanner.team/stops/LBpecco1", "https://tec.openplanner.team/stops/LGEhosp2"], ["https://tec.openplanner.team/stops/N229aab", "https://tec.openplanner.team/stops/N270aga"], ["https://tec.openplanner.team/stops/X840aaa", "https://tec.openplanner.team/stops/X840aga"], ["https://tec.openplanner.team/stops/LBzec--1", "https://tec.openplanner.team/stops/LBzvill2"], ["https://tec.openplanner.team/stops/N551afb", "https://tec.openplanner.team/stops/N551aja"], ["https://tec.openplanner.team/stops/N501avb", "https://tec.openplanner.team/stops/N501mga"], ["https://tec.openplanner.team/stops/LFRsp1-1", "https://tec.openplanner.team/stops/LFRspa-1"], ["https://tec.openplanner.team/stops/Bwatcoq1", "https://tec.openplanner.team/stops/Bwatcrf1"], ["https://tec.openplanner.team/stops/X664aca", "https://tec.openplanner.team/stops/X664adc"], ["https://tec.openplanner.team/stops/X735aca", "https://tec.openplanner.team/stops/X736aia"], ["https://tec.openplanner.team/stops/X783aba", "https://tec.openplanner.team/stops/X783acd"], ["https://tec.openplanner.team/stops/H5el104a", "https://tec.openplanner.team/stops/H5el117a"], ["https://tec.openplanner.team/stops/X307aba", "https://tec.openplanner.team/stops/X307acb"], ["https://tec.openplanner.team/stops/X727ada", "https://tec.openplanner.team/stops/X727adb"], ["https://tec.openplanner.team/stops/NL37aia", "https://tec.openplanner.team/stops/NL37aja"], ["https://tec.openplanner.team/stops/Brebchb1", "https://tec.openplanner.team/stops/Brebchb2"], ["https://tec.openplanner.team/stops/LMIgare1", "https://tec.openplanner.team/stops/LMIgare2"], ["https://tec.openplanner.team/stops/LHUchh-1", "https://tec.openplanner.team/stops/NL80aia"], ["https://tec.openplanner.team/stops/LbOdorf1", "https://tec.openplanner.team/stops/LbOre151"], ["https://tec.openplanner.team/stops/NR21aga", "https://tec.openplanner.team/stops/NR21agb"], ["https://tec.openplanner.team/stops/Lhuecol1", "https://tec.openplanner.team/stops/Lmnhorl2"], ["https://tec.openplanner.team/stops/N222aaa", "https://tec.openplanner.team/stops/N222abb"], ["https://tec.openplanner.team/stops/LhUdenk1", "https://tec.openplanner.team/stops/LhUrich2"], ["https://tec.openplanner.team/stops/Llgdarc2", "https://tec.openplanner.team/stops/LlgPTAV3"], ["https://tec.openplanner.team/stops/Llgstvi1", "https://tec.openplanner.team/stops/Llgstvi2"], ["https://tec.openplanner.team/stops/LRGderr1", "https://tec.openplanner.team/stops/LRGunio3"], ["https://tec.openplanner.team/stops/Bbiecoc1", "https://tec.openplanner.team/stops/Bgzdast1"], ["https://tec.openplanner.team/stops/LCxhame2", "https://tec.openplanner.team/stops/LCxwarr2"], ["https://tec.openplanner.team/stops/X939abb", "https://tec.openplanner.team/stops/X939aca"], ["https://tec.openplanner.team/stops/Lvccime1", "https://tec.openplanner.team/stops/Lvcpost1"], ["https://tec.openplanner.team/stops/X994ala", "https://tec.openplanner.team/stops/X994amb"], ["https://tec.openplanner.team/stops/X805abb", "https://tec.openplanner.team/stops/X805afb"], ["https://tec.openplanner.team/stops/H5rx145a", "https://tec.openplanner.team/stops/H5rx145b"], ["https://tec.openplanner.team/stops/Canbruy2", "https://tec.openplanner.team/stops/Canfief1"], ["https://tec.openplanner.team/stops/X601ana", "https://tec.openplanner.team/stops/X601ceb"], ["https://tec.openplanner.team/stops/X610afa", "https://tec.openplanner.team/stops/X610aja"], ["https://tec.openplanner.team/stops/H1je217a", "https://tec.openplanner.team/stops/H1je221a"], ["https://tec.openplanner.team/stops/X740adb", "https://tec.openplanner.team/stops/X740afb"], ["https://tec.openplanner.team/stops/LCxcour2", "https://tec.openplanner.team/stops/LCxfawe2"], ["https://tec.openplanner.team/stops/H1wa158b", "https://tec.openplanner.team/stops/H1wa163a"], ["https://tec.openplanner.team/stops/Cfmgrmo2", "https://tec.openplanner.team/stops/Cfmmart2"], ["https://tec.openplanner.team/stops/Cci4bra2", "https://tec.openplanner.team/stops/NC02apb"], ["https://tec.openplanner.team/stops/LMFmerl1", "https://tec.openplanner.team/stops/LMFmerl2"], ["https://tec.openplanner.team/stops/X783aaa", "https://tec.openplanner.team/stops/X783aab"], ["https://tec.openplanner.team/stops/LBabeco4", "https://tec.openplanner.team/stops/LBapepi6"], ["https://tec.openplanner.team/stops/N531ajb", "https://tec.openplanner.team/stops/N534bog"], ["https://tec.openplanner.team/stops/Cmlgche2", "https://tec.openplanner.team/stops/Cmltemp1"], ["https://tec.openplanner.team/stops/Bblaece2", "https://tec.openplanner.team/stops/Bblasmo1"], ["https://tec.openplanner.team/stops/Cbmind3", "https://tec.openplanner.team/stops/Cbmviv1"], ["https://tec.openplanner.team/stops/Bblabfo2", "https://tec.openplanner.team/stops/Bblager1"], ["https://tec.openplanner.team/stops/H1mc126b", "https://tec.openplanner.team/stops/H1mc127a"], ["https://tec.openplanner.team/stops/H4mx117a", "https://tec.openplanner.team/stops/H4po128b"], ["https://tec.openplanner.team/stops/NL57afa", "https://tec.openplanner.team/stops/NL57afb"], ["https://tec.openplanner.team/stops/Bsaubra2", "https://tec.openplanner.team/stops/Bsauvmo2"], ["https://tec.openplanner.team/stops/LOumaro1", "https://tec.openplanner.team/stops/LOumaro2"], ["https://tec.openplanner.team/stops/X660aea", "https://tec.openplanner.team/stops/X840aab"], ["https://tec.openplanner.team/stops/H5wo125a", "https://tec.openplanner.team/stops/H5wo125b"], ["https://tec.openplanner.team/stops/LOV48--1", "https://tec.openplanner.team/stops/LOV62--2"], ["https://tec.openplanner.team/stops/N538aoa", "https://tec.openplanner.team/stops/N538atb"], ["https://tec.openplanner.team/stops/Cauptsa2", "https://tec.openplanner.team/stops/Ctaprai3"], ["https://tec.openplanner.team/stops/X953afa", "https://tec.openplanner.team/stops/X954aga"], ["https://tec.openplanner.team/stops/Bohnbra1", "https://tec.openplanner.team/stops/Bohnrpl2"], ["https://tec.openplanner.team/stops/N221aaa", "https://tec.openplanner.team/stops/X221aad"], ["https://tec.openplanner.team/stops/LOTsav-2", "https://tec.openplanner.team/stops/LOTsava2"], ["https://tec.openplanner.team/stops/X837aba", "https://tec.openplanner.team/stops/X837aca"], ["https://tec.openplanner.team/stops/Ladmoli1", "https://tec.openplanner.team/stops/Ladpire1"], ["https://tec.openplanner.team/stops/LFRcoun2", "https://tec.openplanner.team/stops/LSTdero2"], ["https://tec.openplanner.team/stops/H4sm247b", "https://tec.openplanner.team/stops/H4ty322a"], ["https://tec.openplanner.team/stops/Llgamer4", "https://tec.openplanner.team/stops/Llglair1"], ["https://tec.openplanner.team/stops/Cmymaco1", "https://tec.openplanner.team/stops/Cmypost1"], ["https://tec.openplanner.team/stops/Cbwdoua2", "https://tec.openplanner.team/stops/Cbweco2"], ["https://tec.openplanner.team/stops/Bhalcbr1", "https://tec.openplanner.team/stops/Bhalvel2"], ["https://tec.openplanner.team/stops/H1ha185b", "https://tec.openplanner.team/stops/H1ha190a"], ["https://tec.openplanner.team/stops/LWZeg--2", "https://tec.openplanner.team/stops/LWZponh1"], ["https://tec.openplanner.team/stops/LHexhav1", "https://tec.openplanner.team/stops/LWOwaer1"], ["https://tec.openplanner.team/stops/LOTawan2", "https://tec.openplanner.team/stops/LOTdelv2"], ["https://tec.openplanner.team/stops/H1by106a", "https://tec.openplanner.team/stops/H1sy139b"], ["https://tec.openplanner.team/stops/LlgLEOP1", "https://tec.openplanner.team/stops/Llgrege2"], ["https://tec.openplanner.team/stops/Llgbene1", "https://tec.openplanner.team/stops/Llgptlo1"], ["https://tec.openplanner.team/stops/H2tz117a", "https://tec.openplanner.team/stops/H2tz117b"], ["https://tec.openplanner.team/stops/N118ava", "https://tec.openplanner.team/stops/N118bbb"], ["https://tec.openplanner.team/stops/LbOre151", "https://tec.openplanner.team/stops/LbOre152"], ["https://tec.openplanner.team/stops/Livroch2", "https://tec.openplanner.team/stops/LRachen2"], ["https://tec.openplanner.team/stops/H1by103b", "https://tec.openplanner.team/stops/H1by108a"], ["https://tec.openplanner.team/stops/LMfpral2", "https://tec.openplanner.team/stops/NL57amb"], ["https://tec.openplanner.team/stops/H4ea134a", "https://tec.openplanner.team/stops/H4ea134b"], ["https://tec.openplanner.team/stops/Cchcaya2", "https://tec.openplanner.team/stops/Cchlamb1"], ["https://tec.openplanner.team/stops/X999aaa", "https://tec.openplanner.team/stops/X999abb"], ["https://tec.openplanner.team/stops/LHCbran2", "https://tec.openplanner.team/stops/LWEwilc2"], ["https://tec.openplanner.team/stops/X809aab", "https://tec.openplanner.team/stops/X812aua"], ["https://tec.openplanner.team/stops/X637ala", "https://tec.openplanner.team/stops/X637aqb"], ["https://tec.openplanner.team/stops/N554aga", "https://tec.openplanner.team/stops/N554ahb"], ["https://tec.openplanner.team/stops/N287aab", "https://tec.openplanner.team/stops/N287adb"], ["https://tec.openplanner.team/stops/LmD163-1", "https://tec.openplanner.team/stops/LmYamel2"], ["https://tec.openplanner.team/stops/Clfmonu3", "https://tec.openplanner.team/stops/Cstmarz2"], ["https://tec.openplanner.team/stops/X631acb", "https://tec.openplanner.team/stops/X631adb"], ["https://tec.openplanner.team/stops/X983aca", "https://tec.openplanner.team/stops/X983adb"], ["https://tec.openplanner.team/stops/Livgera6", "https://tec.openplanner.team/stops/Livjeu-1"], ["https://tec.openplanner.team/stops/N543cba", "https://tec.openplanner.team/stops/N543cfa"], ["https://tec.openplanner.team/stops/Bquepos1", "https://tec.openplanner.team/stops/Bquepos2"], ["https://tec.openplanner.team/stops/LCRf14-1", "https://tec.openplanner.team/stops/LCRgdrt2"], ["https://tec.openplanner.team/stops/LnDdorf1", "https://tec.openplanner.team/stops/LnDrund2"], ["https://tec.openplanner.team/stops/H1hc126b", "https://tec.openplanner.team/stops/H1hc152b"], ["https://tec.openplanner.team/stops/N507aha", "https://tec.openplanner.team/stops/N507akb"], ["https://tec.openplanner.team/stops/LDAbois1", "https://tec.openplanner.team/stops/LDArich1"], ["https://tec.openplanner.team/stops/LLLvill1", "https://tec.openplanner.team/stops/X576acb"], ["https://tec.openplanner.team/stops/Cmaplas3", "https://tec.openplanner.team/stops/Cromonn1"], ["https://tec.openplanner.team/stops/Crcgare2", "https://tec.openplanner.team/stops/Crcrgar2"], ["https://tec.openplanner.team/stops/N211aga", "https://tec.openplanner.team/stops/N211apa"], ["https://tec.openplanner.team/stops/X741abd", "https://tec.openplanner.team/stops/X741acb"], ["https://tec.openplanner.team/stops/Lfhhaso2", "https://tec.openplanner.team/stops/Lfhxhor2"], ["https://tec.openplanner.team/stops/Llggerm2", "https://tec.openplanner.team/stops/Lvtpepi1"], ["https://tec.openplanner.team/stops/N139ada", "https://tec.openplanner.team/stops/N139aea"], ["https://tec.openplanner.team/stops/Bbuzcom2", "https://tec.openplanner.team/stops/Bbuzeta2"], ["https://tec.openplanner.team/stops/LStgare*", "https://tec.openplanner.team/stops/LStroch2"], ["https://tec.openplanner.team/stops/Caibino1", "https://tec.openplanner.team/stops/Cairous1"], ["https://tec.openplanner.team/stops/LVlroua1", "https://tec.openplanner.team/stops/LVlroua4"], ["https://tec.openplanner.team/stops/H1do108b", "https://tec.openplanner.team/stops/H1do109a"], ["https://tec.openplanner.team/stops/N514aab", "https://tec.openplanner.team/stops/N514afb"], ["https://tec.openplanner.team/stops/N353aha", "https://tec.openplanner.team/stops/N353awa"], ["https://tec.openplanner.team/stops/LHUfali2", "https://tec.openplanner.team/stops/LHUfali4"], ["https://tec.openplanner.team/stops/Cauwauq2", "https://tec.openplanner.team/stops/Cvsbois2"], ["https://tec.openplanner.team/stops/N501bnb", "https://tec.openplanner.team/stops/N501chc"], ["https://tec.openplanner.team/stops/X952afa", "https://tec.openplanner.team/stops/X952aha"], ["https://tec.openplanner.team/stops/X657acb", "https://tec.openplanner.team/stops/X657ajb"], ["https://tec.openplanner.team/stops/X740aba", "https://tec.openplanner.team/stops/X740abd"], ["https://tec.openplanner.team/stops/X812bba", "https://tec.openplanner.team/stops/X812bbb"], ["https://tec.openplanner.team/stops/Canmonu3", "https://tec.openplanner.team/stops/Canterr1"], ["https://tec.openplanner.team/stops/Cgofleu2", "https://tec.openplanner.team/stops/Cgon52"], ["https://tec.openplanner.team/stops/N553aca", "https://tec.openplanner.team/stops/N553anb"], ["https://tec.openplanner.team/stops/LHocroi1", "https://tec.openplanner.team/stops/LJedonc4"], ["https://tec.openplanner.team/stops/LBJapol1", "https://tec.openplanner.team/stops/LMAcomm2"], ["https://tec.openplanner.team/stops/X879afb", "https://tec.openplanner.team/stops/X879aha"], ["https://tec.openplanner.team/stops/LHvvill*", "https://tec.openplanner.team/stops/LPTblan2"], ["https://tec.openplanner.team/stops/Bmlnegl3", "https://tec.openplanner.team/stops/Bmlngvi2"], ["https://tec.openplanner.team/stops/X638amb", "https://tec.openplanner.team/stops/X652afc"], ["https://tec.openplanner.team/stops/N207aab", "https://tec.openplanner.team/stops/N207afb"], ["https://tec.openplanner.team/stops/Loucent2", "https://tec.openplanner.team/stops/Louwuid1"], ["https://tec.openplanner.team/stops/Bhoegbr1", "https://tec.openplanner.team/stops/Brsgm802"], ["https://tec.openplanner.team/stops/N521aob", "https://tec.openplanner.team/stops/N521apb"], ["https://tec.openplanner.team/stops/LbTmons1", "https://tec.openplanner.team/stops/LbTmons2"], ["https://tec.openplanner.team/stops/LDOprev1", "https://tec.openplanner.team/stops/LDOprev2"], ["https://tec.openplanner.team/stops/H1au102a", "https://tec.openplanner.team/stops/H1au103b"], ["https://tec.openplanner.team/stops/Llgtunn2", "https://tec.openplanner.team/stops/Llgvalu2"], ["https://tec.openplanner.team/stops/X938aab", "https://tec.openplanner.team/stops/X938aca"], ["https://tec.openplanner.team/stops/N218aba", "https://tec.openplanner.team/stops/N218ada"], ["https://tec.openplanner.team/stops/Ccugend2", "https://tec.openplanner.team/stops/Ccuhsti1"], ["https://tec.openplanner.team/stops/Llochar1", "https://tec.openplanner.team/stops/Llochar4"], ["https://tec.openplanner.team/stops/N532aha", "https://tec.openplanner.team/stops/N532aja"], ["https://tec.openplanner.team/stops/X812baa", "https://tec.openplanner.team/stops/X812bba"], ["https://tec.openplanner.team/stops/H5rx129b", "https://tec.openplanner.team/stops/H5rx143b"], ["https://tec.openplanner.team/stops/LBRgare2", "https://tec.openplanner.team/stops/LMffoot1"], ["https://tec.openplanner.team/stops/LaSkape2", "https://tec.openplanner.team/stops/LaSneuh2"], ["https://tec.openplanner.team/stops/H1tt106b", "https://tec.openplanner.team/stops/H1tt107b"], ["https://tec.openplanner.team/stops/Bwatms10", "https://tec.openplanner.team/stops/Bwatmsj8"], ["https://tec.openplanner.team/stops/X661awb", "https://tec.openplanner.team/stops/X661ayc"], ["https://tec.openplanner.team/stops/N503aka", "https://tec.openplanner.team/stops/N503ala"], ["https://tec.openplanner.team/stops/Cpcgout1", "https://tec.openplanner.team/stops/Cpcplac4"], ["https://tec.openplanner.team/stops/H2an100a", "https://tec.openplanner.team/stops/H2an101a"], ["https://tec.openplanner.team/stops/N894ada", "https://tec.openplanner.team/stops/N894adb"], ["https://tec.openplanner.team/stops/Bblague1", "https://tec.openplanner.team/stops/Bblapje2"], ["https://tec.openplanner.team/stops/X601dia", "https://tec.openplanner.team/stops/X662aoa"], ["https://tec.openplanner.team/stops/LJU51--1", "https://tec.openplanner.team/stops/LJU51--2"], ["https://tec.openplanner.team/stops/Cbfegch1", "https://tec.openplanner.team/stops/Cbfegch2"], ["https://tec.openplanner.team/stops/N539aba", "https://tec.openplanner.team/stops/N539adc"], ["https://tec.openplanner.team/stops/Cgocalv1", "https://tec.openplanner.team/stops/Cgostro1"], ["https://tec.openplanner.team/stops/Cnating1", "https://tec.openplanner.team/stops/Cnating2"], ["https://tec.openplanner.team/stops/H1wa140a", "https://tec.openplanner.team/stops/H1wa164a"], ["https://tec.openplanner.team/stops/X790ada", "https://tec.openplanner.team/stops/X790afb"], ["https://tec.openplanner.team/stops/X741aga", "https://tec.openplanner.team/stops/X758aka"], ["https://tec.openplanner.team/stops/Cfrfede1", "https://tec.openplanner.team/stops/Csdpira2"], ["https://tec.openplanner.team/stops/Bcrnegl2", "https://tec.openplanner.team/stops/Bcrnnpl2"], ["https://tec.openplanner.team/stops/LORcomb2", "https://tec.openplanner.team/stops/LORmont2"], ["https://tec.openplanner.team/stops/N106afa", "https://tec.openplanner.team/stops/N106ahb"], ["https://tec.openplanner.team/stops/Bbauham2", "https://tec.openplanner.team/stops/Bnivhon1"], ["https://tec.openplanner.team/stops/X616aeb", "https://tec.openplanner.team/stops/X616afa"], ["https://tec.openplanner.team/stops/X606aaa", "https://tec.openplanner.team/stops/X648aaa"], ["https://tec.openplanner.team/stops/LPohoeg1", "https://tec.openplanner.team/stops/LPohoeg2"], ["https://tec.openplanner.team/stops/LHUcamp2", "https://tec.openplanner.team/stops/LTicent1"], ["https://tec.openplanner.team/stops/H4br109b", "https://tec.openplanner.team/stops/H4hn114a"], ["https://tec.openplanner.team/stops/Baeggar1", "https://tec.openplanner.team/stops/Baegm502"], ["https://tec.openplanner.team/stops/N512ata", "https://tec.openplanner.team/stops/N512atb"], ["https://tec.openplanner.team/stops/Bixlozo2", "https://tec.openplanner.team/stops/Buccham2"], ["https://tec.openplanner.team/stops/N150aeb", "https://tec.openplanner.team/stops/N150afb"], ["https://tec.openplanner.team/stops/X626ada", "https://tec.openplanner.team/stops/X626adb"], ["https://tec.openplanner.team/stops/Brxmbos1", "https://tec.openplanner.team/stops/Brxmbos2"], ["https://tec.openplanner.team/stops/H4ty348a", "https://tec.openplanner.team/stops/H4ty348b"], ["https://tec.openplanner.team/stops/Lghleon2", "https://tec.openplanner.team/stops/Lmlbaro2"], ["https://tec.openplanner.team/stops/N230aha", "https://tec.openplanner.team/stops/N230ahb"], ["https://tec.openplanner.team/stops/Ccpsecp2", "https://tec.openplanner.team/stops/H2ch125a"], ["https://tec.openplanner.team/stops/H2fa108a", "https://tec.openplanner.team/stops/H2lc170a"], ["https://tec.openplanner.team/stops/X879ana", "https://tec.openplanner.team/stops/X898aaa"], ["https://tec.openplanner.team/stops/LeYwald1", "https://tec.openplanner.team/stops/LlCauto2"], ["https://tec.openplanner.team/stops/N355ada", "https://tec.openplanner.team/stops/N894aga"], ["https://tec.openplanner.team/stops/X952aja", "https://tec.openplanner.team/stops/X952aka"], ["https://tec.openplanner.team/stops/X666aia", "https://tec.openplanner.team/stops/X666akb"], ["https://tec.openplanner.team/stops/X982apa", "https://tec.openplanner.team/stops/X982apb"], ["https://tec.openplanner.team/stops/LCxross1", "https://tec.openplanner.team/stops/LCxwade2"], ["https://tec.openplanner.team/stops/Ctaprai3", "https://tec.openplanner.team/stops/N543boa"], ["https://tec.openplanner.team/stops/LSkrena2", "https://tec.openplanner.team/stops/LSkrena3"], ["https://tec.openplanner.team/stops/Cwfdame1", "https://tec.openplanner.team/stops/Cwfreta1"], ["https://tec.openplanner.team/stops/LBrbern2", "https://tec.openplanner.team/stops/LBrec--1"], ["https://tec.openplanner.team/stops/Cbfgare2", "https://tec.openplanner.team/stops/Cctbois2"], ["https://tec.openplanner.team/stops/X941aeb", "https://tec.openplanner.team/stops/X941aha"], ["https://tec.openplanner.team/stops/Bblaegl1", "https://tec.openplanner.team/stops/Bwatcli2"], ["https://tec.openplanner.team/stops/H1hr121a", "https://tec.openplanner.team/stops/H1hr121d"], ["https://tec.openplanner.team/stops/Brsgecu1", "https://tec.openplanner.team/stops/Brsgfbl4"], ["https://tec.openplanner.team/stops/X658abb", "https://tec.openplanner.team/stops/X671aea"], ["https://tec.openplanner.team/stops/N512aia", "https://tec.openplanner.team/stops/NL68adb"], ["https://tec.openplanner.team/stops/Ccucroi2", "https://tec.openplanner.team/stops/Ccupetp1"], ["https://tec.openplanner.team/stops/H4pl114a", "https://tec.openplanner.team/stops/H4pl114b"], ["https://tec.openplanner.team/stops/N229aka", "https://tec.openplanner.team/stops/N229akb"], ["https://tec.openplanner.team/stops/LJOchar1", "https://tec.openplanner.team/stops/LSOvoie2"], ["https://tec.openplanner.team/stops/LMfbuck2", "https://tec.openplanner.team/stops/LMforba1"], ["https://tec.openplanner.team/stops/Bbgnton1", "https://tec.openplanner.team/stops/N530aba"], ["https://tec.openplanner.team/stops/NL78aea", "https://tec.openplanner.team/stops/NL78aeb"], ["https://tec.openplanner.team/stops/LkTdorf2", "https://tec.openplanner.team/stops/LkTtal-2"], ["https://tec.openplanner.team/stops/X734acb", "https://tec.openplanner.team/stops/X734ada"], ["https://tec.openplanner.team/stops/N232bbb", "https://tec.openplanner.team/stops/N232bgb"], ["https://tec.openplanner.team/stops/N525aob", "https://tec.openplanner.team/stops/N525atb"], ["https://tec.openplanner.team/stops/LVEbors2", "https://tec.openplanner.team/stops/LVEhali2"], ["https://tec.openplanner.team/stops/N534ata", "https://tec.openplanner.team/stops/N534bgb"], ["https://tec.openplanner.team/stops/N214afb", "https://tec.openplanner.team/stops/N214agb"], ["https://tec.openplanner.team/stops/N509acb", "https://tec.openplanner.team/stops/N511aqa"], ["https://tec.openplanner.team/stops/LBpberl1", "https://tec.openplanner.team/stops/LBpecco3"], ["https://tec.openplanner.team/stops/LnEmett1", "https://tec.openplanner.team/stops/LsVhunn1"], ["https://tec.openplanner.team/stops/N540akb", "https://tec.openplanner.team/stops/N540alb"], ["https://tec.openplanner.team/stops/H4ne143b", "https://tec.openplanner.team/stops/H4tf147a"], ["https://tec.openplanner.team/stops/Cgycime4", "https://tec.openplanner.team/stops/Cgytrie1"], ["https://tec.openplanner.team/stops/N574aab", "https://tec.openplanner.team/stops/N574ada"], ["https://tec.openplanner.team/stops/N513aua", "https://tec.openplanner.team/stops/N514aga"], ["https://tec.openplanner.team/stops/Bbeubos2", "https://tec.openplanner.team/stops/Bsdecdi2"], ["https://tec.openplanner.team/stops/N309aab", "https://tec.openplanner.team/stops/N313acb"], ["https://tec.openplanner.team/stops/Lgrfrcu2", "https://tec.openplanner.team/stops/Lgrlabo2"], ["https://tec.openplanner.team/stops/H2mo124a", "https://tec.openplanner.team/stops/H2mo127d"], ["https://tec.openplanner.team/stops/H1gh144a", "https://tec.openplanner.team/stops/H1gh144b"], ["https://tec.openplanner.team/stops/X608aca", "https://tec.openplanner.team/stops/X608aja"], ["https://tec.openplanner.team/stops/LBkcarr1", "https://tec.openplanner.team/stops/LBkdahl1"], ["https://tec.openplanner.team/stops/Bcrbcel1", "https://tec.openplanner.team/stops/Bcrbcel2"], ["https://tec.openplanner.team/stops/LGecime1", "https://tec.openplanner.team/stops/LGevygh2"], ["https://tec.openplanner.team/stops/Lroboeg1", "https://tec.openplanner.team/stops/Lroboeg2"], ["https://tec.openplanner.team/stops/X921afa", "https://tec.openplanner.team/stops/X921afb"], ["https://tec.openplanner.team/stops/X811akb", "https://tec.openplanner.team/stops/X811ala"], ["https://tec.openplanner.team/stops/N211adb", "https://tec.openplanner.team/stops/N211bba"], ["https://tec.openplanner.team/stops/Clbpepi2", "https://tec.openplanner.team/stops/Cthrlef1"], ["https://tec.openplanner.team/stops/Cprcalv2", "https://tec.openplanner.team/stops/NC44aga"], ["https://tec.openplanner.team/stops/X791aaa", "https://tec.openplanner.team/stops/X791adb"], ["https://tec.openplanner.team/stops/X921ala", "https://tec.openplanner.team/stops/X979aeb"], ["https://tec.openplanner.team/stops/N585abb", "https://tec.openplanner.team/stops/N585akb"], ["https://tec.openplanner.team/stops/X725aea", "https://tec.openplanner.team/stops/X725bea"], ["https://tec.openplanner.team/stops/Bwspcar2", "https://tec.openplanner.team/stops/Bwspm371"], ["https://tec.openplanner.team/stops/X664aga", "https://tec.openplanner.team/stops/X664aib"], ["https://tec.openplanner.team/stops/H5bl115d", "https://tec.openplanner.team/stops/H5bl141a"], ["https://tec.openplanner.team/stops/H1so137a", "https://tec.openplanner.team/stops/H1so146a"], ["https://tec.openplanner.team/stops/H5is174a", "https://tec.openplanner.team/stops/H5is174b"], ["https://tec.openplanner.team/stops/LBPeg--2", "https://tec.openplanner.team/stops/LBPrueg2"], ["https://tec.openplanner.team/stops/Bovesnh1", "https://tec.openplanner.team/stops/Bovesnh2"], ["https://tec.openplanner.team/stops/LLEfagn2", "https://tec.openplanner.team/stops/LQacabi2"], ["https://tec.openplanner.team/stops/N501ffb", "https://tec.openplanner.team/stops/N501fqa"], ["https://tec.openplanner.team/stops/N165aca", "https://tec.openplanner.team/stops/N165acb"], ["https://tec.openplanner.team/stops/Ljelamb1", "https://tec.openplanner.team/stops/Ljelamb2"], ["https://tec.openplanner.team/stops/N539abb", "https://tec.openplanner.team/stops/N539afa"], ["https://tec.openplanner.team/stops/Bblaadm1", "https://tec.openplanner.team/stops/Bblaadm2"], ["https://tec.openplanner.team/stops/LVIlore1", "https://tec.openplanner.team/stops/LVIlore2"], ["https://tec.openplanner.team/stops/X715aaa", "https://tec.openplanner.team/stops/X716aea"], ["https://tec.openplanner.team/stops/LFtcarr2", "https://tec.openplanner.team/stops/LMYvill1"], ["https://tec.openplanner.team/stops/N506bua", "https://tec.openplanner.team/stops/N506bub"], ["https://tec.openplanner.team/stops/LBAfort1", "https://tec.openplanner.team/stops/LBAfort2"], ["https://tec.openplanner.team/stops/LBgcroi2", "https://tec.openplanner.team/stops/LBgcroi5"], ["https://tec.openplanner.team/stops/H5pe145b", "https://tec.openplanner.team/stops/H5pe147b"], ["https://tec.openplanner.team/stops/LhEcolo2", "https://tec.openplanner.team/stops/LhElont2"], ["https://tec.openplanner.team/stops/X649aaa", "https://tec.openplanner.team/stops/X649aab"], ["https://tec.openplanner.team/stops/H1je369a", "https://tec.openplanner.team/stops/H1je369b"], ["https://tec.openplanner.team/stops/Bllnchv1", "https://tec.openplanner.team/stops/Bllnhoc1"], ["https://tec.openplanner.team/stops/Bllncyc2", "https://tec.openplanner.team/stops/Bllnrro2"], ["https://tec.openplanner.team/stops/LeLsied1", "https://tec.openplanner.team/stops/LnIkirc1"], ["https://tec.openplanner.team/stops/N501eta", "https://tec.openplanner.team/stops/N501gia"], ["https://tec.openplanner.team/stops/Lalchar1", "https://tec.openplanner.team/stops/Lalwaro2"], ["https://tec.openplanner.team/stops/N501kid", "https://tec.openplanner.team/stops/N501kka"], ["https://tec.openplanner.team/stops/H1pw121b", "https://tec.openplanner.team/stops/H1pw122a"], ["https://tec.openplanner.team/stops/Bsencen1", "https://tec.openplanner.team/stops/Bsenpbi1"], ["https://tec.openplanner.team/stops/Bsomh671", "https://tec.openplanner.team/stops/N584axb"], ["https://tec.openplanner.team/stops/H4bh103b", "https://tec.openplanner.team/stops/H4lp123a"], ["https://tec.openplanner.team/stops/LHanest2", "https://tec.openplanner.team/stops/LHaxhig2"], ["https://tec.openplanner.team/stops/H1ci103a", "https://tec.openplanner.team/stops/H1ci105b"], ["https://tec.openplanner.team/stops/H1ba102b", "https://tec.openplanner.team/stops/H1ba115b"], ["https://tec.openplanner.team/stops/H1ms252c", "https://tec.openplanner.team/stops/H1ms308c"], ["https://tec.openplanner.team/stops/Baudtri1", "https://tec.openplanner.team/stops/Baudtri2"], ["https://tec.openplanner.team/stops/LTHperr2", "https://tec.openplanner.team/stops/LTHperr3"], ["https://tec.openplanner.team/stops/LWLeg--1", "https://tec.openplanner.team/stops/LWLtamb2"], ["https://tec.openplanner.team/stops/LLnec--2", "https://tec.openplanner.team/stops/LPUlecl1"], ["https://tec.openplanner.team/stops/Llgcorn3", "https://tec.openplanner.team/stops/Llgcorn4"], ["https://tec.openplanner.team/stops/Csepost2", "https://tec.openplanner.team/stops/Cvtchap2"], ["https://tec.openplanner.team/stops/N211aka", "https://tec.openplanner.team/stops/N214aba"], ["https://tec.openplanner.team/stops/Llgborn2", "https://tec.openplanner.team/stops/Llgchat2"], ["https://tec.openplanner.team/stops/Cjuaero4", "https://tec.openplanner.team/stops/Cjudefi2"], ["https://tec.openplanner.team/stops/Brsgrol1", "https://tec.openplanner.team/stops/Brsgrol2"], ["https://tec.openplanner.team/stops/H4pi131a", "https://tec.openplanner.team/stops/H4pi134b"], ["https://tec.openplanner.team/stops/N526aeb", "https://tec.openplanner.team/stops/N527abb"], ["https://tec.openplanner.team/stops/H4rx143a", "https://tec.openplanner.team/stops/H4rx175a"], ["https://tec.openplanner.team/stops/LNEec--1", "https://tec.openplanner.team/stops/LVosoir2"], ["https://tec.openplanner.team/stops/Llieg--1", "https://tec.openplanner.team/stops/Llieg--3"], ["https://tec.openplanner.team/stops/Bbcocvb1", "https://tec.openplanner.team/stops/Bhencha2"], ["https://tec.openplanner.team/stops/H1mm126a", "https://tec.openplanner.team/stops/H1mm131a"], ["https://tec.openplanner.team/stops/LhGfl242", "https://tec.openplanner.team/stops/LhGrote2"], ["https://tec.openplanner.team/stops/H1nm138b", "https://tec.openplanner.team/stops/H1nm139b"], ["https://tec.openplanner.team/stops/H1he103b", "https://tec.openplanner.team/stops/H1he107a"], ["https://tec.openplanner.team/stops/H5pe142a", "https://tec.openplanner.team/stops/H5pe142b"], ["https://tec.openplanner.team/stops/X653afa", "https://tec.openplanner.team/stops/X653afb"], ["https://tec.openplanner.team/stops/H3bi115a", "https://tec.openplanner.team/stops/H3bi117b"], ["https://tec.openplanner.team/stops/N505ana", "https://tec.openplanner.team/stops/N505anb"], ["https://tec.openplanner.team/stops/Bjodced2", "https://tec.openplanner.team/stops/NR10acb"], ["https://tec.openplanner.team/stops/Bbstmco2", "https://tec.openplanner.team/stops/Bbstrpo1"], ["https://tec.openplanner.team/stops/N580aba", "https://tec.openplanner.team/stops/N580acb"], ["https://tec.openplanner.team/stops/H4bh101b", "https://tec.openplanner.team/stops/H4bh105a"], ["https://tec.openplanner.team/stops/H4ma200a", "https://tec.openplanner.team/stops/H4ma202b"], ["https://tec.openplanner.team/stops/Cchfaub2", "https://tec.openplanner.team/stops/Cchlefe1"], ["https://tec.openplanner.team/stops/Cfrmoul2", "https://tec.openplanner.team/stops/Cfrplac4"], ["https://tec.openplanner.team/stops/H1fy143a", "https://tec.openplanner.team/stops/H1ro134a"], ["https://tec.openplanner.team/stops/X716aca", "https://tec.openplanner.team/stops/X718aja"], ["https://tec.openplanner.team/stops/Cairous2", "https://tec.openplanner.team/stops/N543cjb"], ["https://tec.openplanner.team/stops/Cfmgara2", "https://tec.openplanner.team/stops/Cfmrrou1"], ["https://tec.openplanner.team/stops/X608aga", "https://tec.openplanner.team/stops/X608ara"], ["https://tec.openplanner.team/stops/X825adb", "https://tec.openplanner.team/stops/X826afa"], ["https://tec.openplanner.team/stops/LHUchh-2", "https://tec.openplanner.team/stops/LHUremy2"], ["https://tec.openplanner.team/stops/X888abb", "https://tec.openplanner.team/stops/X897aea"], ["https://tec.openplanner.team/stops/X621abb", "https://tec.openplanner.team/stops/X621aca"], ["https://tec.openplanner.team/stops/H4mt219b", "https://tec.openplanner.team/stops/H4ve137a"], ["https://tec.openplanner.team/stops/H1th180a", "https://tec.openplanner.team/stops/H3go105a"], ["https://tec.openplanner.team/stops/X886afa", "https://tec.openplanner.team/stops/X886agb"], ["https://tec.openplanner.team/stops/LSZchpl2", "https://tec.openplanner.team/stops/LSZstoc1"], ["https://tec.openplanner.team/stops/Bdlmflo1", "https://tec.openplanner.team/stops/Bdvmcbo2"], ["https://tec.openplanner.team/stops/Brsrber1", "https://tec.openplanner.team/stops/Brsrcha1"], ["https://tec.openplanner.team/stops/X897aoc", "https://tec.openplanner.team/stops/X897aod"], ["https://tec.openplanner.team/stops/X757aga", "https://tec.openplanner.team/stops/X757agb"], ["https://tec.openplanner.team/stops/H5bl118b", "https://tec.openplanner.team/stops/H5gr135a"], ["https://tec.openplanner.team/stops/H1sy139b", "https://tec.openplanner.team/stops/H1sy143a"], ["https://tec.openplanner.team/stops/X872aaa", "https://tec.openplanner.team/stops/X873acb"], ["https://tec.openplanner.team/stops/Lfhchaf2", "https://tec.openplanner.team/stops/Lfhgare1"], ["https://tec.openplanner.team/stops/Lmigare1", "https://tec.openplanner.team/stops/Lmigare2"], ["https://tec.openplanner.team/stops/Bspkdon2", "https://tec.openplanner.team/stops/H1en103a"], ["https://tec.openplanner.team/stops/Ladegli1", "https://tec.openplanner.team/stops/Lveptre2"], ["https://tec.openplanner.team/stops/LkAsonn2", "https://tec.openplanner.team/stops/LwR129-2"], ["https://tec.openplanner.team/stops/LBBabat2", "https://tec.openplanner.team/stops/LBBcarr1"], ["https://tec.openplanner.team/stops/N214ajb", "https://tec.openplanner.team/stops/N225aeb"], ["https://tec.openplanner.team/stops/Cfcecol3", "https://tec.openplanner.team/stops/Cfcecol4"], ["https://tec.openplanner.team/stops/Bblapin1", "https://tec.openplanner.team/stops/Brsgrol2"], ["https://tec.openplanner.team/stops/X636aab", "https://tec.openplanner.team/stops/X636ala"], ["https://tec.openplanner.team/stops/Bgoemho1", "https://tec.openplanner.team/stops/Bhakmkr1"], ["https://tec.openplanner.team/stops/Lhrtilm1", "https://tec.openplanner.team/stops/Lhrtilm2"], ["https://tec.openplanner.team/stops/Bpielom2", "https://tec.openplanner.team/stops/Bsjgmil2"], ["https://tec.openplanner.team/stops/Bvircen1", "https://tec.openplanner.team/stops/Bvircen2"], ["https://tec.openplanner.team/stops/N115aaa", "https://tec.openplanner.team/stops/N115afa"], ["https://tec.openplanner.team/stops/X766acb", "https://tec.openplanner.team/stops/X766ajb"], ["https://tec.openplanner.team/stops/Cplelec2", "https://tec.openplanner.team/stops/Crsstem2"], ["https://tec.openplanner.team/stops/H1me116b", "https://tec.openplanner.team/stops/H1mm125c"], ["https://tec.openplanner.team/stops/X806aeb", "https://tec.openplanner.team/stops/X806agb"], ["https://tec.openplanner.team/stops/LRE154-1", "https://tec.openplanner.team/stops/LREhaut1"], ["https://tec.openplanner.team/stops/X715ala", "https://tec.openplanner.team/stops/X715alb"], ["https://tec.openplanner.team/stops/H1mh113a", "https://tec.openplanner.team/stops/H1mh113b"], ["https://tec.openplanner.team/stops/Lemboul2", "https://tec.openplanner.team/stops/Lvchaus1"], ["https://tec.openplanner.team/stops/Crodebr1", "https://tec.openplanner.team/stops/Crolach2"], ["https://tec.openplanner.team/stops/Cflchel5", "https://tec.openplanner.team/stops/Cflhano2"], ["https://tec.openplanner.team/stops/H4wr173b", "https://tec.openplanner.team/stops/H5qu141a"], ["https://tec.openplanner.team/stops/LORec--*", "https://tec.openplanner.team/stops/LOreg--2"], ["https://tec.openplanner.team/stops/H4ty300a", "https://tec.openplanner.team/stops/H4ty331b"], ["https://tec.openplanner.team/stops/H4bu109b", "https://tec.openplanner.team/stops/H5el114b"], ["https://tec.openplanner.team/stops/Llgddef1", "https://tec.openplanner.team/stops/Llgrass1"], ["https://tec.openplanner.team/stops/H4ho121a", "https://tec.openplanner.team/stops/H4pl111a"], ["https://tec.openplanner.team/stops/LaAdiep2", "https://tec.openplanner.team/stops/LaAneul1"], ["https://tec.openplanner.team/stops/Bbuzeta2", "https://tec.openplanner.team/stops/Creshau1"], ["https://tec.openplanner.team/stops/H1ev113b", "https://tec.openplanner.team/stops/H1ev116b"], ["https://tec.openplanner.team/stops/H1pw121b", "https://tec.openplanner.team/stops/H1wg131a"], ["https://tec.openplanner.team/stops/N538aea", "https://tec.openplanner.team/stops/N538aja"], ["https://tec.openplanner.team/stops/LMAcime2", "https://tec.openplanner.team/stops/LMApl--2"], ["https://tec.openplanner.team/stops/LSZroqu1", "https://tec.openplanner.team/stops/LSZsolw1"], ["https://tec.openplanner.team/stops/X607abb", "https://tec.openplanner.team/stops/X608aqa"], ["https://tec.openplanner.team/stops/LkEcoop2", "https://tec.openplanner.team/stops/LkEgss-2"], ["https://tec.openplanner.team/stops/N501fyc", "https://tec.openplanner.team/stops/N501hvb"], ["https://tec.openplanner.team/stops/Brebcgi1", "https://tec.openplanner.team/stops/Brebrha2"], ["https://tec.openplanner.team/stops/LTHcent1", "https://tec.openplanner.team/stops/LTHcent2"], ["https://tec.openplanner.team/stops/X902ara", "https://tec.openplanner.team/stops/X902asa"], ["https://tec.openplanner.team/stops/N536aaa", "https://tec.openplanner.team/stops/N536abb"], ["https://tec.openplanner.team/stops/Baegpon1", "https://tec.openplanner.team/stops/Baegpon4"], ["https://tec.openplanner.team/stops/X666aaa", "https://tec.openplanner.team/stops/X666aga"], ["https://tec.openplanner.team/stops/LeLbegl2", "https://tec.openplanner.team/stops/LeLherz2"], ["https://tec.openplanner.team/stops/Cchcaya1", "https://tec.openplanner.team/stops/Clodrio4"], ["https://tec.openplanner.team/stops/Bnilcim1", "https://tec.openplanner.team/stops/Bnilreg1"], ["https://tec.openplanner.team/stops/Lrosaun1", "https://tec.openplanner.team/stops/Lvcchau2"], ["https://tec.openplanner.team/stops/LGAnovi1", "https://tec.openplanner.team/stops/LGAnovi2"], ["https://tec.openplanner.team/stops/N501iaa", "https://tec.openplanner.team/stops/N501idb"], ["https://tec.openplanner.team/stops/H4be113a", "https://tec.openplanner.team/stops/H4be149a"], ["https://tec.openplanner.team/stops/N261adb", "https://tec.openplanner.team/stops/N261afb"], ["https://tec.openplanner.team/stops/LJA65h-1", "https://tec.openplanner.team/stops/LJA65h-2"], ["https://tec.openplanner.team/stops/Bbiemse1", "https://tec.openplanner.team/stops/Bgzddub1"], ["https://tec.openplanner.team/stops/LHNhall2", "https://tec.openplanner.team/stops/LHNhv--2"], ["https://tec.openplanner.team/stops/X985afa", "https://tec.openplanner.team/stops/X985afb"], ["https://tec.openplanner.team/stops/X991afb", "https://tec.openplanner.team/stops/X991aha"], ["https://tec.openplanner.team/stops/LSOchau1", "https://tec.openplanner.team/stops/LSOdow%C3%A91"], ["https://tec.openplanner.team/stops/X904aga", "https://tec.openplanner.team/stops/X904ahb"], ["https://tec.openplanner.team/stops/LRGbett3", "https://tec.openplanner.team/stops/LRGderr1"], ["https://tec.openplanner.team/stops/LOdmonu1", "https://tec.openplanner.team/stops/LOdmonu4"], ["https://tec.openplanner.team/stops/H5st163a", "https://tec.openplanner.team/stops/H5st163b"], ["https://tec.openplanner.team/stops/N301asb", "https://tec.openplanner.team/stops/X301ara"], ["https://tec.openplanner.team/stops/LAMhopi1", "https://tec.openplanner.team/stops/LAMusin2"], ["https://tec.openplanner.team/stops/Ldihote2", "https://tec.openplanner.team/stops/Ldipl--4"], ["https://tec.openplanner.team/stops/N501avb", "https://tec.openplanner.team/stops/N501mub"], ["https://tec.openplanner.team/stops/H1ms256a", "https://tec.openplanner.team/stops/H1ms923a"], ["https://tec.openplanner.team/stops/Cgzlera1", "https://tec.openplanner.team/stops/Cgzrust1"], ["https://tec.openplanner.team/stops/Cfmchap1", "https://tec.openplanner.team/stops/Cfmltas1"], ["https://tec.openplanner.team/stops/Cfaecwa1", "https://tec.openplanner.team/stops/Cfawain2"], ["https://tec.openplanner.team/stops/H4ga147a", "https://tec.openplanner.team/stops/H4ga162a"], ["https://tec.openplanner.team/stops/LREaube2", "https://tec.openplanner.team/stops/LREsaul2"], ["https://tec.openplanner.team/stops/N534aqb", "https://tec.openplanner.team/stops/N534axa"], ["https://tec.openplanner.team/stops/X358acb", "https://tec.openplanner.team/stops/X358acc"], ["https://tec.openplanner.team/stops/Lseathe1", "https://tec.openplanner.team/stops/Lseprog1"], ["https://tec.openplanner.team/stops/Cptberg1", "https://tec.openplanner.team/stops/Cptplac2"], ["https://tec.openplanner.team/stops/LBpecco2", "https://tec.openplanner.team/stops/LGEwalk2"], ["https://tec.openplanner.team/stops/N551agc", "https://tec.openplanner.team/stops/N551aha"], ["https://tec.openplanner.team/stops/LPAbour1", "https://tec.openplanner.team/stops/LPAbour2"], ["https://tec.openplanner.team/stops/X761aba", "https://tec.openplanner.team/stops/X761acb"], ["https://tec.openplanner.team/stops/Cctjoue4", "https://tec.openplanner.team/stops/Cctwaut2"], ["https://tec.openplanner.team/stops/Lsecoop1", "https://tec.openplanner.team/stops/Lseresi2"], ["https://tec.openplanner.team/stops/LMfbacu1", "https://tec.openplanner.team/stops/LMfbacu2"], ["https://tec.openplanner.team/stops/X512aja", "https://tec.openplanner.team/stops/X713afa"], ["https://tec.openplanner.team/stops/Bmangen2", "https://tec.openplanner.team/stops/H2mg139c"], ["https://tec.openplanner.team/stops/LJAgoff1", "https://tec.openplanner.team/stops/LJAgoff2"], ["https://tec.openplanner.team/stops/Cfmgrmo1", "https://tec.openplanner.team/stops/Cfojoli1"], ["https://tec.openplanner.team/stops/LSkwarf3", "https://tec.openplanner.team/stops/LSkwarf4"], ["https://tec.openplanner.team/stops/X663axa", "https://tec.openplanner.team/stops/X663axb"], ["https://tec.openplanner.team/stops/X750aaa", "https://tec.openplanner.team/stops/X750aab"], ["https://tec.openplanner.team/stops/H4eh101b", "https://tec.openplanner.team/stops/H4po129a"], ["https://tec.openplanner.team/stops/Lmojans1", "https://tec.openplanner.team/stops/Lmovand2"], ["https://tec.openplanner.team/stops/Lhrathe2", "https://tec.openplanner.team/stops/Lhrjaur1"], ["https://tec.openplanner.team/stops/LHUecte2", "https://tec.openplanner.team/stops/LHUneuv2"], ["https://tec.openplanner.team/stops/LSPdesc2", "https://tec.openplanner.team/stops/LSPptch1"], ["https://tec.openplanner.team/stops/Cfojoli2", "https://tec.openplanner.team/stops/Cforepo1"], ["https://tec.openplanner.team/stops/H1fv100b", "https://tec.openplanner.team/stops/H1fv101b"], ["https://tec.openplanner.team/stops/Lalmitt1", "https://tec.openplanner.team/stops/LXhjupr4"], ["https://tec.openplanner.team/stops/X605acb", "https://tec.openplanner.team/stops/X636aoa"], ["https://tec.openplanner.team/stops/LBSneuv1", "https://tec.openplanner.team/stops/LHScite1"], ["https://tec.openplanner.team/stops/H1vs145a", "https://tec.openplanner.team/stops/H1vs145b"], ["https://tec.openplanner.team/stops/Bnivbau1", "https://tec.openplanner.team/stops/Bnivite2"], ["https://tec.openplanner.team/stops/LkEl3251", "https://tec.openplanner.team/stops/LkEl3252"], ["https://tec.openplanner.team/stops/LCHeg--1", "https://tec.openplanner.team/stops/LCHeg--2"], ["https://tec.openplanner.team/stops/Cmlcent2", "https://tec.openplanner.team/stops/Cmlpbay2"], ["https://tec.openplanner.team/stops/LdUespe2", "https://tec.openplanner.team/stops/LdUespe4"], ["https://tec.openplanner.team/stops/Bernpla1", "https://tec.openplanner.team/stops/Bernrar1"], ["https://tec.openplanner.team/stops/X658ada", "https://tec.openplanner.team/stops/X658aeb"], ["https://tec.openplanner.team/stops/X770aab", "https://tec.openplanner.team/stops/X770aba"], ["https://tec.openplanner.team/stops/H4hq133d", "https://tec.openplanner.team/stops/H4hq134a"], ["https://tec.openplanner.team/stops/H1at108c", "https://tec.openplanner.team/stops/H1at109b"], ["https://tec.openplanner.team/stops/H4mo149a", "https://tec.openplanner.team/stops/H4mo171a"], ["https://tec.openplanner.team/stops/LCF1spa1", "https://tec.openplanner.team/stops/LCF1spa2"], ["https://tec.openplanner.team/stops/X948ata", "https://tec.openplanner.team/stops/X948awa"], ["https://tec.openplanner.team/stops/Bgnvpap1", "https://tec.openplanner.team/stops/Bgnvpap2"], ["https://tec.openplanner.team/stops/Caccarr2", "https://tec.openplanner.team/stops/Cacscav1"], ["https://tec.openplanner.team/stops/X658aab", "https://tec.openplanner.team/stops/X659ata"], ["https://tec.openplanner.team/stops/LLxalle2", "https://tec.openplanner.team/stops/LLxeclu1"], ["https://tec.openplanner.team/stops/Cgdfras2", "https://tec.openplanner.team/stops/Csyplac2"], ["https://tec.openplanner.team/stops/Lstbarb6", "https://tec.openplanner.team/stops/Lstbold2"], ["https://tec.openplanner.team/stops/X736aia", "https://tec.openplanner.team/stops/X736aja"], ["https://tec.openplanner.team/stops/Ccuwil1", "https://tec.openplanner.team/stops/Ccuwil2"], ["https://tec.openplanner.team/stops/X620adb", "https://tec.openplanner.team/stops/X622afb"], ["https://tec.openplanner.team/stops/H2gy103b", "https://tec.openplanner.team/stops/H2gy109a"], ["https://tec.openplanner.team/stops/Cpljonc1", "https://tec.openplanner.team/stops/Cplrond1"], ["https://tec.openplanner.team/stops/LNCdoma4", "https://tec.openplanner.team/stops/LRRcarr1"], ["https://tec.openplanner.team/stops/Bclgpch2", "https://tec.openplanner.team/stops/Bwavdmo2"], ["https://tec.openplanner.team/stops/Ccupbro2", "https://tec.openplanner.team/stops/Ccuwil2"], ["https://tec.openplanner.team/stops/LoDcorn1", "https://tec.openplanner.team/stops/LoDcorn2"], ["https://tec.openplanner.team/stops/N125aca", "https://tec.openplanner.team/stops/N154aca"], ["https://tec.openplanner.team/stops/LHNtonn1", "https://tec.openplanner.team/stops/LHNtonn2"], ["https://tec.openplanner.team/stops/Cmlbeau1", "https://tec.openplanner.team/stops/Cmmbsit2"], ["https://tec.openplanner.team/stops/Blascim1", "https://tec.openplanner.team/stops/Bohnr732"], ["https://tec.openplanner.team/stops/Cgyrdid1", "https://tec.openplanner.team/stops/Clogfay2"], ["https://tec.openplanner.team/stops/Clocroi2", "https://tec.openplanner.team/stops/Clodupr1"], ["https://tec.openplanner.team/stops/N501gva", "https://tec.openplanner.team/stops/N501iza"], ["https://tec.openplanner.team/stops/Llgbron2", "https://tec.openplanner.team/stops/LlgguilF"], ["https://tec.openplanner.team/stops/X670aoa", "https://tec.openplanner.team/stops/X670apa"], ["https://tec.openplanner.team/stops/Bgoegma1", "https://tec.openplanner.team/stops/Bgoestu1"], ["https://tec.openplanner.team/stops/H4ty280a", "https://tec.openplanner.team/stops/H4ty354a"], ["https://tec.openplanner.team/stops/H4es111a", "https://tec.openplanner.team/stops/H4es117b"], ["https://tec.openplanner.team/stops/Llgmair1", "https://tec.openplanner.team/stops/Llgmair2"], ["https://tec.openplanner.team/stops/X750ana", "https://tec.openplanner.team/stops/X750anb"], ["https://tec.openplanner.team/stops/Lscbarg1", "https://tec.openplanner.team/stops/Ltiferb2"], ["https://tec.openplanner.team/stops/N501etb", "https://tec.openplanner.team/stops/N501kba"], ["https://tec.openplanner.team/stops/H4ln129a", "https://tec.openplanner.team/stops/H4ln130b"], ["https://tec.openplanner.team/stops/X741aha", "https://tec.openplanner.team/stops/X741apb"], ["https://tec.openplanner.team/stops/N312aba", "https://tec.openplanner.team/stops/N312abb"], ["https://tec.openplanner.team/stops/LFOcomb4", "https://tec.openplanner.team/stops/LVGeg--1"], ["https://tec.openplanner.team/stops/H4fr389a", "https://tec.openplanner.team/stops/H4fr390a"], ["https://tec.openplanner.team/stops/Btstw751", "https://tec.openplanner.team/stops/Btstw752"], ["https://tec.openplanner.team/stops/LeYfeld1", "https://tec.openplanner.team/stops/LeYfeld2"], ["https://tec.openplanner.team/stops/LSdsar51", "https://tec.openplanner.team/stops/LSdsar52"], ["https://tec.openplanner.team/stops/Bbaucba1", "https://tec.openplanner.team/stops/Bbaucba2"], ["https://tec.openplanner.team/stops/X307aaa", "https://tec.openplanner.team/stops/X307aba"], ["https://tec.openplanner.team/stops/N106aga", "https://tec.openplanner.team/stops/N106aib"], ["https://tec.openplanner.team/stops/Brsggol1", "https://tec.openplanner.team/stops/Brsgpbo1"], ["https://tec.openplanner.team/stops/N501jab", "https://tec.openplanner.team/stops/N501jcb"], ["https://tec.openplanner.team/stops/Lmlcher1", "https://tec.openplanner.team/stops/Lmlmaqu2"], ["https://tec.openplanner.team/stops/Bhandub1", "https://tec.openplanner.team/stops/Bhandub2"], ["https://tec.openplanner.team/stops/X748afa", "https://tec.openplanner.team/stops/X769ahb"], ["https://tec.openplanner.team/stops/N102aab", "https://tec.openplanner.team/stops/N102aca"], ["https://tec.openplanner.team/stops/H2hg152a", "https://tec.openplanner.team/stops/H2hg156b"], ["https://tec.openplanner.team/stops/Cbzfrom1", "https://tec.openplanner.team/stops/Cbzfrom2"], ["https://tec.openplanner.team/stops/Cmychap3", "https://tec.openplanner.team/stops/Cmypast2"], ["https://tec.openplanner.team/stops/NL77ajb", "https://tec.openplanner.team/stops/NL77alb"], ["https://tec.openplanner.team/stops/Ctrchat2", "https://tec.openplanner.team/stops/Ctrdelb2"], ["https://tec.openplanner.team/stops/H1hr125a", "https://tec.openplanner.team/stops/H2pr117a"], ["https://tec.openplanner.team/stops/H2bh103b", "https://tec.openplanner.team/stops/H2bh118a"], ["https://tec.openplanner.team/stops/H1ms284a", "https://tec.openplanner.team/stops/H1ms902a"], ["https://tec.openplanner.team/stops/Lghsimo3", "https://tec.openplanner.team/stops/Lghsimo4"], ["https://tec.openplanner.team/stops/LNIhaut1", "https://tec.openplanner.team/stops/LNIhaut2"], ["https://tec.openplanner.team/stops/Bfelcen1", "https://tec.openplanner.team/stops/Bfelpla1"], ["https://tec.openplanner.team/stops/LVLbovy1", "https://tec.openplanner.team/stops/LVLeg--3"], ["https://tec.openplanner.team/stops/Bottcco1", "https://tec.openplanner.team/stops/Bottegl4"], ["https://tec.openplanner.team/stops/H1gi121a", "https://tec.openplanner.team/stops/H1gi121b"], ["https://tec.openplanner.team/stops/LJEloum2", "https://tec.openplanner.team/stops/LJEtige2"], ["https://tec.openplanner.team/stops/Lhr2ave1", "https://tec.openplanner.team/stops/Lhrhurb1"], ["https://tec.openplanner.team/stops/N557aea", "https://tec.openplanner.team/stops/N560acb"], ["https://tec.openplanner.team/stops/H4co151a", "https://tec.openplanner.team/stops/H4pl116a"], ["https://tec.openplanner.team/stops/LMAgb--1", "https://tec.openplanner.team/stops/LMAptne1"], ["https://tec.openplanner.team/stops/X774ada", "https://tec.openplanner.team/stops/X774add"], ["https://tec.openplanner.team/stops/N562bsa", "https://tec.openplanner.team/stops/N562bsb"], ["https://tec.openplanner.team/stops/H2pe162d", "https://tec.openplanner.team/stops/H2pe163b"], ["https://tec.openplanner.team/stops/N538ayb", "https://tec.openplanner.team/stops/N538baa"], ["https://tec.openplanner.team/stops/LETfort3", "https://tec.openplanner.team/stops/LETmagn1"], ["https://tec.openplanner.team/stops/LBNruns2", "https://tec.openplanner.team/stops/LGObeth2"], ["https://tec.openplanner.team/stops/N539bgb", "https://tec.openplanner.team/stops/N540ajb"], ["https://tec.openplanner.team/stops/LFCkerk1", "https://tec.openplanner.team/stops/LFClage1"], ["https://tec.openplanner.team/stops/Cgygazo3", "https://tec.openplanner.team/stops/Cmtdepo2"], ["https://tec.openplanner.team/stops/Chpcarp1", "https://tec.openplanner.team/stops/Chprobi2"], ["https://tec.openplanner.team/stops/H5wo124a", "https://tec.openplanner.team/stops/H5wo134a"], ["https://tec.openplanner.team/stops/N547aja", "https://tec.openplanner.team/stops/N547ajb"], ["https://tec.openplanner.team/stops/Lvo60--1", "https://tec.openplanner.team/stops/Lvo60--2"], ["https://tec.openplanner.team/stops/X822aaa", "https://tec.openplanner.team/stops/X822aab"], ["https://tec.openplanner.team/stops/LnUneun2", "https://tec.openplanner.team/stops/LnUneun3"], ["https://tec.openplanner.team/stops/N120aoc", "https://tec.openplanner.team/stops/N340aba"], ["https://tec.openplanner.team/stops/H4wu375b", "https://tec.openplanner.team/stops/H4wu420b"], ["https://tec.openplanner.team/stops/H1je217b", "https://tec.openplanner.team/stops/H1je221a"], ["https://tec.openplanner.team/stops/Bbsigaz2", "https://tec.openplanner.team/stops/Bbsivil1"], ["https://tec.openplanner.team/stops/N351ajc", "https://tec.openplanner.team/stops/N351aub"], ["https://tec.openplanner.team/stops/H4br110b", "https://tec.openplanner.team/stops/H4br111b"], ["https://tec.openplanner.team/stops/H4ka191a", "https://tec.openplanner.team/stops/H4ka400a"], ["https://tec.openplanner.team/stops/X314aaa", "https://tec.openplanner.team/stops/X813aab"], ["https://tec.openplanner.team/stops/X608asa", "https://tec.openplanner.team/stops/X608asb"], ["https://tec.openplanner.team/stops/X999aga", "https://tec.openplanner.team/stops/X999agb"], ["https://tec.openplanner.team/stops/LTResse2", "https://tec.openplanner.team/stops/LTRfica1"], ["https://tec.openplanner.team/stops/NC11aia", "https://tec.openplanner.team/stops/NC11aib"], ["https://tec.openplanner.team/stops/Ccumasu2", "https://tec.openplanner.team/stops/Ccutail2"], ["https://tec.openplanner.team/stops/LCxhame1", "https://tec.openplanner.team/stops/LCxhame2"], ["https://tec.openplanner.team/stops/Lgdhura2", "https://tec.openplanner.team/stops/LWetrib2"], ["https://tec.openplanner.team/stops/N151aja", "https://tec.openplanner.team/stops/N151aje"], ["https://tec.openplanner.team/stops/N874alb", "https://tec.openplanner.team/stops/X874apb"], ["https://tec.openplanner.team/stops/Clpnapo2", "https://tec.openplanner.team/stops/Clpsola1"], ["https://tec.openplanner.team/stops/Bitrcen2", "https://tec.openplanner.team/stops/Bitrecu1"], ["https://tec.openplanner.team/stops/N501gia", "https://tec.openplanner.team/stops/N501gib"], ["https://tec.openplanner.team/stops/Bitrpri1", "https://tec.openplanner.team/stops/Bosqpqu1"], ["https://tec.openplanner.team/stops/Cctathe1", "https://tec.openplanner.team/stops/Cctathe2"], ["https://tec.openplanner.team/stops/Lvehv--4", "https://tec.openplanner.team/stops/Lvepala9"], ["https://tec.openplanner.team/stops/X742aba", "https://tec.openplanner.team/stops/X742aca"], ["https://tec.openplanner.team/stops/LHMa2321", "https://tec.openplanner.team/stops/LHMaube2"], ["https://tec.openplanner.team/stops/N232bab", "https://tec.openplanner.team/stops/N232brb"], ["https://tec.openplanner.team/stops/H1po135d", "https://tec.openplanner.team/stops/H1po137b"], ["https://tec.openplanner.team/stops/H3lr108a", "https://tec.openplanner.team/stops/H3lr108b"], ["https://tec.openplanner.team/stops/Bgemga09", "https://tec.openplanner.team/stops/Bgemga10"], ["https://tec.openplanner.team/stops/X354aaa", "https://tec.openplanner.team/stops/X858agb"], ["https://tec.openplanner.team/stops/X923ada", "https://tec.openplanner.team/stops/X923aqb"], ["https://tec.openplanner.team/stops/N874aca", "https://tec.openplanner.team/stops/X887aaa"], ["https://tec.openplanner.team/stops/X879aha", "https://tec.openplanner.team/stops/X879ahb"], ["https://tec.openplanner.team/stops/X743aaa", "https://tec.openplanner.team/stops/X743aba"], ["https://tec.openplanner.team/stops/Bgnvcha1", "https://tec.openplanner.team/stops/Blhumpo2"], ["https://tec.openplanner.team/stops/Broncli2", "https://tec.openplanner.team/stops/Bronfou2"], ["https://tec.openplanner.team/stops/LERdeho2", "https://tec.openplanner.team/stops/LHseg--1"], ["https://tec.openplanner.team/stops/LAmab751", "https://tec.openplanner.team/stops/LAmab752"], ["https://tec.openplanner.team/stops/LPLcent1", "https://tec.openplanner.team/stops/LPLcent2"], ["https://tec.openplanner.team/stops/LREheyd2", "https://tec.openplanner.team/stops/LREsp301"], ["https://tec.openplanner.team/stops/H4fo115a", "https://tec.openplanner.team/stops/H4ga152a"], ["https://tec.openplanner.team/stops/LVIhall1", "https://tec.openplanner.team/stops/LVIhall2"], ["https://tec.openplanner.team/stops/N149ahb", "https://tec.openplanner.team/stops/N149alb"], ["https://tec.openplanner.team/stops/H4ft135d", "https://tec.openplanner.team/stops/H4ft137b"], ["https://tec.openplanner.team/stops/LSpcarr2", "https://tec.openplanner.team/stops/LSphote1"], ["https://tec.openplanner.team/stops/Bhenard3", "https://tec.openplanner.team/stops/Bvirrbo2"], ["https://tec.openplanner.team/stops/N321aba", "https://tec.openplanner.team/stops/N355ada"], ["https://tec.openplanner.team/stops/Bbeacha2", "https://tec.openplanner.team/stops/Bbeamon1"], ["https://tec.openplanner.team/stops/Cnafont2", "https://tec.openplanner.team/stops/Cnawari2"], ["https://tec.openplanner.team/stops/Bitrcan2", "https://tec.openplanner.team/stops/Bitrmde1"], ["https://tec.openplanner.team/stops/Becepro1", "https://tec.openplanner.team/stops/H2mi124a"], ["https://tec.openplanner.team/stops/X943aba", "https://tec.openplanner.team/stops/X943abb"], ["https://tec.openplanner.team/stops/LRchaie1", "https://tec.openplanner.team/stops/LRchaie2"], ["https://tec.openplanner.team/stops/Bblmwma2", "https://tec.openplanner.team/stops/Bchamco2"], ["https://tec.openplanner.team/stops/LVbcoul2", "https://tec.openplanner.team/stops/LVbeg--2"], ["https://tec.openplanner.team/stops/Lseberg4", "https://tec.openplanner.team/stops/Lsemany1"], ["https://tec.openplanner.team/stops/Cfopetr2", "https://tec.openplanner.team/stops/Cforpet2"], ["https://tec.openplanner.team/stops/X614ajb", "https://tec.openplanner.team/stops/X623aab"], ["https://tec.openplanner.team/stops/Bhancom2", "https://tec.openplanner.team/stops/LHNgend2"], ["https://tec.openplanner.team/stops/LSPguer1", "https://tec.openplanner.team/stops/LSPvigi1"], ["https://tec.openplanner.team/stops/X886ada", "https://tec.openplanner.team/stops/X886adb"], ["https://tec.openplanner.team/stops/H4mo146a", "https://tec.openplanner.team/stops/H4mo148a"], ["https://tec.openplanner.team/stops/Lhrathe*", "https://tec.openplanner.team/stops/Lhrhosp2"], ["https://tec.openplanner.team/stops/Cjojonc1", "https://tec.openplanner.team/stops/NC24ajb"], ["https://tec.openplanner.team/stops/LFdchau1", "https://tec.openplanner.team/stops/LLMfond1"], ["https://tec.openplanner.team/stops/LHFappe2", "https://tec.openplanner.team/stops/LVEmohi2"], ["https://tec.openplanner.team/stops/X837agb", "https://tec.openplanner.team/stops/X837aib"], ["https://tec.openplanner.team/stops/LBJlieg1", "https://tec.openplanner.team/stops/LMAcite2"], ["https://tec.openplanner.team/stops/Lenplac1", "https://tec.openplanner.team/stops/Lpecroi1"], ["https://tec.openplanner.team/stops/LHTmala4", "https://tec.openplanner.team/stops/LHTptha4"], ["https://tec.openplanner.team/stops/H1bl105a", "https://tec.openplanner.team/stops/H1eq115a"], ["https://tec.openplanner.team/stops/H2ha129e", "https://tec.openplanner.team/stops/H2hg156a"], ["https://tec.openplanner.team/stops/X615ajb", "https://tec.openplanner.team/stops/X615akb"], ["https://tec.openplanner.team/stops/H4ta131a", "https://tec.openplanner.team/stops/H4ta132a"], ["https://tec.openplanner.team/stops/H2lh126a", "https://tec.openplanner.team/stops/H2lh129b"], ["https://tec.openplanner.team/stops/N551aga", "https://tec.openplanner.team/stops/N551aha"], ["https://tec.openplanner.team/stops/X907agb", "https://tec.openplanner.team/stops/X908apa"], ["https://tec.openplanner.team/stops/Bbiepon2", "https://tec.openplanner.team/stops/Bbiepre2"], ["https://tec.openplanner.team/stops/Bblmcel2", "https://tec.openplanner.team/stops/Bhvltol1"], ["https://tec.openplanner.team/stops/X637amb", "https://tec.openplanner.team/stops/X637aoa"], ["https://tec.openplanner.team/stops/Lglvand1", "https://tec.openplanner.team/stops/Llgchau1"], ["https://tec.openplanner.team/stops/H1ms907a", "https://tec.openplanner.team/stops/H1ms911a"], ["https://tec.openplanner.team/stops/Cnaplha1", "https://tec.openplanner.team/stops/Cnaplha2"], ["https://tec.openplanner.team/stops/LTibarb1", "https://tec.openplanner.team/stops/LTiflor1"], ["https://tec.openplanner.team/stops/X622aea", "https://tec.openplanner.team/stops/X622afa"], ["https://tec.openplanner.team/stops/Cmllecl4", "https://tec.openplanner.team/stops/Cmlm2411"], ["https://tec.openplanner.team/stops/H5rx100a", "https://tec.openplanner.team/stops/H5rx113a"], ["https://tec.openplanner.team/stops/H4hg157b", "https://tec.openplanner.team/stops/H4hg160a"], ["https://tec.openplanner.team/stops/LKmcabi1", "https://tec.openplanner.team/stops/LKmeg--1"], ["https://tec.openplanner.team/stops/LGLgare*", "https://tec.openplanner.team/stops/LSLhall*"], ["https://tec.openplanner.team/stops/H4gz114b", "https://tec.openplanner.team/stops/H4th142b"], ["https://tec.openplanner.team/stops/X609aab", "https://tec.openplanner.team/stops/X609aba"], ["https://tec.openplanner.team/stops/LHUgdpl2", "https://tec.openplanner.team/stops/NL80aha"], ["https://tec.openplanner.team/stops/LTHbelv1", "https://tec.openplanner.team/stops/LTHwaux1"], ["https://tec.openplanner.team/stops/N351ana", "https://tec.openplanner.team/stops/N351avb"], ["https://tec.openplanner.team/stops/H4og210a", "https://tec.openplanner.team/stops/H4og216b"], ["https://tec.openplanner.team/stops/N235abb", "https://tec.openplanner.team/stops/N236aib"], ["https://tec.openplanner.team/stops/Bnilpje1", "https://tec.openplanner.team/stops/Bnilwal1"], ["https://tec.openplanner.team/stops/X222ala", "https://tec.openplanner.team/stops/X222alb"], ["https://tec.openplanner.team/stops/H1bu140b", "https://tec.openplanner.team/stops/H1bu141a"], ["https://tec.openplanner.team/stops/Bllnald1", "https://tec.openplanner.team/stops/Bllncbr2"], ["https://tec.openplanner.team/stops/X950aaa", "https://tec.openplanner.team/stops/X950aab"], ["https://tec.openplanner.team/stops/LAYfoot1", "https://tec.openplanner.team/stops/LAYlieg1"], ["https://tec.openplanner.team/stops/H1gy115a", "https://tec.openplanner.team/stops/H1gy116b"], ["https://tec.openplanner.team/stops/X659aha", "https://tec.openplanner.team/stops/X659aja"], ["https://tec.openplanner.team/stops/LWM759-2", "https://tec.openplanner.team/stops/LWMchpl2"], ["https://tec.openplanner.team/stops/H1fr124b", "https://tec.openplanner.team/stops/H1fr127a"], ["https://tec.openplanner.team/stops/Cchvhau2", "https://tec.openplanner.team/stops/CMba1"], ["https://tec.openplanner.team/stops/Cvpcdec2", "https://tec.openplanner.team/stops/Cvpplan2"], ["https://tec.openplanner.team/stops/X652aca", "https://tec.openplanner.team/stops/X652aea"], ["https://tec.openplanner.team/stops/H3bi101a", "https://tec.openplanner.team/stops/H3bi119a"], ["https://tec.openplanner.team/stops/H1gr122b", "https://tec.openplanner.team/stops/H1mk110a"], ["https://tec.openplanner.team/stops/N501hcb", "https://tec.openplanner.team/stops/N501mib"], ["https://tec.openplanner.team/stops/LWAathe2", "https://tec.openplanner.team/stops/LWApt--2"], ["https://tec.openplanner.team/stops/LFMstat1", "https://tec.openplanner.team/stops/LFPknap1"], ["https://tec.openplanner.team/stops/Ccumasu1", "https://tec.openplanner.team/stops/Ccupomp1"], ["https://tec.openplanner.team/stops/Cmlener1", "https://tec.openplanner.team/stops/Cmlhaie1"], ["https://tec.openplanner.team/stops/Bpiejus2", "https://tec.openplanner.team/stops/Bsjgmil2"], ["https://tec.openplanner.team/stops/Lrclant3", "https://tec.openplanner.team/stops/Lrclohe2"], ["https://tec.openplanner.team/stops/N501anb", "https://tec.openplanner.team/stops/N501bfa"], ["https://tec.openplanner.team/stops/Cgysarr1", "https://tec.openplanner.team/stops/Cravold2"], ["https://tec.openplanner.team/stops/H1et101b", "https://tec.openplanner.team/stops/H1gh168a"], ["https://tec.openplanner.team/stops/N309abb", "https://tec.openplanner.team/stops/N309acb"], ["https://tec.openplanner.team/stops/Lbopote2", "https://tec.openplanner.team/stops/Lbotige1"], ["https://tec.openplanner.team/stops/X780aia", "https://tec.openplanner.team/stops/X780aib"], ["https://tec.openplanner.team/stops/Cjuchli3", "https://tec.openplanner.team/stops/Cjuchli4"], ["https://tec.openplanner.team/stops/X649aaa", "https://tec.openplanner.team/stops/X671aab"], ["https://tec.openplanner.team/stops/N558ana", "https://tec.openplanner.team/stops/N558anb"], ["https://tec.openplanner.team/stops/N513azb", "https://tec.openplanner.team/stops/N513baa"], ["https://tec.openplanner.team/stops/X650aab", "https://tec.openplanner.team/stops/X650ama"], ["https://tec.openplanner.team/stops/X651aeb", "https://tec.openplanner.team/stops/X658aaa"], ["https://tec.openplanner.team/stops/X661alb", "https://tec.openplanner.team/stops/X661awb"], ["https://tec.openplanner.team/stops/H1as101b", "https://tec.openplanner.team/stops/H1as103b"], ["https://tec.openplanner.team/stops/Cmonvci1", "https://tec.openplanner.team/stops/Cmopn1"], ["https://tec.openplanner.team/stops/LSGec--1", "https://tec.openplanner.team/stops/LSGfoua2"], ["https://tec.openplanner.team/stops/Brebmtg1", "https://tec.openplanner.team/stops/Brebraf1"], ["https://tec.openplanner.team/stops/LSOfech1", "https://tec.openplanner.team/stops/LSOgard2"], ["https://tec.openplanner.team/stops/Bllnlen2", "https://tec.openplanner.team/stops/Bllnrod3"], ["https://tec.openplanner.team/stops/H1gy111b", "https://tec.openplanner.team/stops/H1le119b"], ["https://tec.openplanner.team/stops/N501dhb", "https://tec.openplanner.team/stops/N501jtb"], ["https://tec.openplanner.team/stops/X780abb", "https://tec.openplanner.team/stops/X790aab"], ["https://tec.openplanner.team/stops/H4ka193a", "https://tec.openplanner.team/stops/H4ty359b"], ["https://tec.openplanner.team/stops/H1cu123a", "https://tec.openplanner.team/stops/H1cu125c"], ["https://tec.openplanner.team/stops/Clddeve1", "https://tec.openplanner.team/stops/Cmyland5"], ["https://tec.openplanner.team/stops/Bwolkra1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/LBBcamp2", "https://tec.openplanner.team/stops/NL82aga"], ["https://tec.openplanner.team/stops/Cmeloti1", "https://tec.openplanner.team/stops/Cmerdby2"], ["https://tec.openplanner.team/stops/H1mb127a", "https://tec.openplanner.team/stops/H1mb136b"], ["https://tec.openplanner.team/stops/Ccu6bra3", "https://tec.openplanner.team/stops/Cculgeo2"], ["https://tec.openplanner.team/stops/LJueg--2", "https://tec.openplanner.team/stops/LJuhaie2"], ["https://tec.openplanner.team/stops/LwAkape1", "https://tec.openplanner.team/stops/LwAlont2"], ["https://tec.openplanner.team/stops/LStroch2", "https://tec.openplanner.team/stops/LWNfani2"], ["https://tec.openplanner.team/stops/X725afg", "https://tec.openplanner.team/stops/X725bgb"], ["https://tec.openplanner.team/stops/Bnivcom2", "https://tec.openplanner.team/stops/Bthivil1"], ["https://tec.openplanner.team/stops/N141ala", "https://tec.openplanner.team/stops/N146afa"], ["https://tec.openplanner.team/stops/H1do126b", "https://tec.openplanner.team/stops/H1do130a"], ["https://tec.openplanner.team/stops/H1je218a", "https://tec.openplanner.team/stops/H1ms247a"], ["https://tec.openplanner.team/stops/X625aba", "https://tec.openplanner.team/stops/X625aca"], ["https://tec.openplanner.team/stops/H1ba110a", "https://tec.openplanner.team/stops/H1gh371a"], ["https://tec.openplanner.team/stops/H2ca112a", "https://tec.openplanner.team/stops/H2mo133a"], ["https://tec.openplanner.team/stops/H2ha132a", "https://tec.openplanner.team/stops/H2ha134a"], ["https://tec.openplanner.team/stops/LLrelec1", "https://tec.openplanner.team/stops/LLrlour2"], ["https://tec.openplanner.team/stops/Lgrwill1", "https://tec.openplanner.team/stops/Lgrwill2"], ["https://tec.openplanner.team/stops/LSOdow%C3%A91", "https://tec.openplanner.team/stops/LSOgott1"], ["https://tec.openplanner.team/stops/X910ada", "https://tec.openplanner.team/stops/X910afa"], ["https://tec.openplanner.team/stops/N505abb", "https://tec.openplanner.team/stops/N579abb"], ["https://tec.openplanner.team/stops/X346alb", "https://tec.openplanner.team/stops/X369aab"], ["https://tec.openplanner.team/stops/H4hx117b", "https://tec.openplanner.team/stops/H4hx119a"], ["https://tec.openplanner.team/stops/N254aab", "https://tec.openplanner.team/stops/N570agb"], ["https://tec.openplanner.team/stops/Cgzblob1", "https://tec.openplanner.team/stops/Cthha502"], ["https://tec.openplanner.team/stops/Brsrabe2", "https://tec.openplanner.team/stops/Brsrpch1"], ["https://tec.openplanner.team/stops/Bneeegl1", "https://tec.openplanner.team/stops/Bneeegl2"], ["https://tec.openplanner.team/stops/LFEland1", "https://tec.openplanner.team/stops/LFEland2"], ["https://tec.openplanner.team/stops/X948ana", "https://tec.openplanner.team/stops/X948aoa"], ["https://tec.openplanner.team/stops/Cctbifu1", "https://tec.openplanner.team/stops/Cctrjus1"], ["https://tec.openplanner.team/stops/Clolidl2", "https://tec.openplanner.team/stops/Clooues2"], ["https://tec.openplanner.team/stops/Ccoconf2", "https://tec.openplanner.team/stops/Cpcchau"], ["https://tec.openplanner.team/stops/N547ada", "https://tec.openplanner.team/stops/N565akb"], ["https://tec.openplanner.team/stops/H4fa126d", "https://tec.openplanner.team/stops/H4fa127b"], ["https://tec.openplanner.team/stops/Bottpin1", "https://tec.openplanner.team/stops/Bottpin2"], ["https://tec.openplanner.team/stops/LMIeg--1", "https://tec.openplanner.team/stops/LMIlac-1"], ["https://tec.openplanner.team/stops/Cbwegl1", "https://tec.openplanner.team/stops/Cmgpn1"], ["https://tec.openplanner.team/stops/N138aab", "https://tec.openplanner.team/stops/N423aga"], ["https://tec.openplanner.team/stops/LVncarr2", "https://tec.openplanner.team/stops/LVnourt1"], ["https://tec.openplanner.team/stops/N131aga", "https://tec.openplanner.team/stops/N131ahb"], ["https://tec.openplanner.team/stops/LMHmeha1", "https://tec.openplanner.team/stops/LMHoha-1"], ["https://tec.openplanner.team/stops/Ctabaty2", "https://tec.openplanner.team/stops/Ctachst1"], ["https://tec.openplanner.team/stops/H4ka186a", "https://tec.openplanner.team/stops/H4ka189b"], ["https://tec.openplanner.team/stops/LOumaro2", "https://tec.openplanner.team/stops/LTaabba1"], ["https://tec.openplanner.team/stops/X659aba", "https://tec.openplanner.team/stops/X659aca"], ["https://tec.openplanner.team/stops/Lsefori1", "https://tec.openplanner.team/stops/Lseprog1"], ["https://tec.openplanner.team/stops/Cmapeet1", "https://tec.openplanner.team/stops/Cmaroya1"], ["https://tec.openplanner.team/stops/LaUkirc*", "https://tec.openplanner.team/stops/LwPdorf1"], ["https://tec.openplanner.team/stops/Bosqcar1", "https://tec.openplanner.team/stops/Btubbot2"], ["https://tec.openplanner.team/stops/Bnilpco1", "https://tec.openplanner.team/stops/Bnilpje1"], ["https://tec.openplanner.team/stops/N894aba", "https://tec.openplanner.team/stops/X887aaa"], ["https://tec.openplanner.team/stops/H4lz121a", "https://tec.openplanner.team/stops/H4lz126a"], ["https://tec.openplanner.team/stops/N501fhb", "https://tec.openplanner.team/stops/N501lxa"], ["https://tec.openplanner.team/stops/LDpulve2", "https://tec.openplanner.team/stops/LFMrijk2"], ["https://tec.openplanner.team/stops/X892aha", "https://tec.openplanner.team/stops/X892aja"], ["https://tec.openplanner.team/stops/LoEauto1", "https://tec.openplanner.team/stops/LrEfeck1"], ["https://tec.openplanner.team/stops/X806abb", "https://tec.openplanner.team/stops/X806acb"], ["https://tec.openplanner.team/stops/N232aja", "https://tec.openplanner.team/stops/N232cda"], ["https://tec.openplanner.team/stops/LFPgeme1", "https://tec.openplanner.team/stops/LFPkast2"], ["https://tec.openplanner.team/stops/LENparc1", "https://tec.openplanner.team/stops/LGlbour2"], ["https://tec.openplanner.team/stops/X822aoa", "https://tec.openplanner.team/stops/X822aob"], ["https://tec.openplanner.team/stops/Lbhpeti2", "https://tec.openplanner.team/stops/LMFmerl1"], ["https://tec.openplanner.team/stops/Bnivmon2", "https://tec.openplanner.team/stops/Bptrvil2"], ["https://tec.openplanner.team/stops/H2hp261a", "https://tec.openplanner.team/stops/H2hp261b"], ["https://tec.openplanner.team/stops/N562alc", "https://tec.openplanner.team/stops/N562bfa"], ["https://tec.openplanner.team/stops/H4fg116b", "https://tec.openplanner.team/stops/H4wn139a"], ["https://tec.openplanner.team/stops/LWOcomm1", "https://tec.openplanner.team/stops/LWOmart1"], ["https://tec.openplanner.team/stops/Btstbbu1", "https://tec.openplanner.team/stops/Btstbbu2"], ["https://tec.openplanner.team/stops/Cfcstan1", "https://tec.openplanner.team/stops/Cfcstan2"], ["https://tec.openplanner.team/stops/X641ala", "https://tec.openplanner.team/stops/X641ama"], ["https://tec.openplanner.team/stops/N528ala", "https://tec.openplanner.team/stops/N551aab"], ["https://tec.openplanner.team/stops/LSNgerm2", "https://tec.openplanner.team/stops/LSNmoul2"], ["https://tec.openplanner.team/stops/Cmabegh1", "https://tec.openplanner.team/stops/Cmastch4"], ["https://tec.openplanner.team/stops/LRmstat1", "https://tec.openplanner.team/stops/LRmstat2"], ["https://tec.openplanner.team/stops/N214adb", "https://tec.openplanner.team/stops/N261aga"], ["https://tec.openplanner.team/stops/H5fl100a", "https://tec.openplanner.team/stops/H5wo128b"], ["https://tec.openplanner.team/stops/Crofrio1", "https://tec.openplanner.team/stops/Croplom4"], ["https://tec.openplanner.team/stops/N203aab", "https://tec.openplanner.team/stops/N560aba"], ["https://tec.openplanner.team/stops/Canboha1", "https://tec.openplanner.team/stops/Cptsncb1"], ["https://tec.openplanner.team/stops/N153aca", "https://tec.openplanner.team/stops/N153afa"], ["https://tec.openplanner.team/stops/X634agb", "https://tec.openplanner.team/stops/X634aha"], ["https://tec.openplanner.team/stops/Bitrsar2", "https://tec.openplanner.team/stops/Bvirgar2"], ["https://tec.openplanner.team/stops/N501epb", "https://tec.openplanner.team/stops/N501epd"], ["https://tec.openplanner.team/stops/Llgfusc6", "https://tec.openplanner.team/stops/Llgvero2"], ["https://tec.openplanner.team/stops/LOnec--1", "https://tec.openplanner.team/stops/LOnec--2"], ["https://tec.openplanner.team/stops/H1ho125b", "https://tec.openplanner.team/stops/H1wa143b"], ["https://tec.openplanner.team/stops/LsHlenz1", "https://tec.openplanner.team/stops/LsHlenz2"], ["https://tec.openplanner.team/stops/X955aeb", "https://tec.openplanner.team/stops/X955aga"], ["https://tec.openplanner.team/stops/LBNover1", "https://tec.openplanner.team/stops/LMeeg--1"], ["https://tec.openplanner.team/stops/Lenclar2", "https://tec.openplanner.team/stops/Lengran1"], ["https://tec.openplanner.team/stops/Bbcohou4", "https://tec.openplanner.team/stops/Bbcomar1"], ["https://tec.openplanner.team/stops/Cmachau1", "https://tec.openplanner.team/stops/Cmastni1"], ["https://tec.openplanner.team/stops/LSAjacq1", "https://tec.openplanner.team/stops/LSAtrih2"], ["https://tec.openplanner.team/stops/X979aba", "https://tec.openplanner.team/stops/X979adb"], ["https://tec.openplanner.team/stops/Lbobuil1", "https://tec.openplanner.team/stops/Lbobuil2"], ["https://tec.openplanner.team/stops/Cjupllo1", "https://tec.openplanner.team/stops/Cjupllo2"], ["https://tec.openplanner.team/stops/Lheente1", "https://tec.openplanner.team/stops/Lheterm*"], ["https://tec.openplanner.team/stops/N301aab", "https://tec.openplanner.team/stops/N301ahb"], ["https://tec.openplanner.team/stops/Bjodcad2", "https://tec.openplanner.team/stops/Bjodsje1"], ["https://tec.openplanner.team/stops/H4ru240b", "https://tec.openplanner.team/stops/H4wc372a"], ["https://tec.openplanner.team/stops/H1po137a", "https://tec.openplanner.team/stops/H1po138b"], ["https://tec.openplanner.team/stops/X804aib", "https://tec.openplanner.team/stops/X804ara"], ["https://tec.openplanner.team/stops/LPRvill1", "https://tec.openplanner.team/stops/LPRvill2"], ["https://tec.openplanner.team/stops/Bpiehvi1", "https://tec.openplanner.team/stops/Bpiepla1"], ["https://tec.openplanner.team/stops/N501mwa", "https://tec.openplanner.team/stops/N501mwb"], ["https://tec.openplanner.team/stops/H2re174b", "https://tec.openplanner.team/stops/H2re175a"], ["https://tec.openplanner.team/stops/Bcrnegl2", "https://tec.openplanner.team/stops/Bcrnsge2"], ["https://tec.openplanner.team/stops/Lgrlimi2", "https://tec.openplanner.team/stops/Llgmulh2"], ["https://tec.openplanner.team/stops/H4mb143a", "https://tec.openplanner.team/stops/H4mb143d"], ["https://tec.openplanner.team/stops/Cgxwaut1", "https://tec.openplanner.team/stops/Cmofosb2"], ["https://tec.openplanner.team/stops/N501dba", "https://tec.openplanner.team/stops/N533aha"], ["https://tec.openplanner.team/stops/LRmkerk1", "https://tec.openplanner.team/stops/LRmkerk2"], ["https://tec.openplanner.team/stops/Lhepaqu1", "https://tec.openplanner.team/stops/Lhepaqu2"], ["https://tec.openplanner.team/stops/Bsdapir1", "https://tec.openplanner.team/stops/Bsdapir2"], ["https://tec.openplanner.team/stops/X760afa", "https://tec.openplanner.team/stops/X760afb"], ["https://tec.openplanner.team/stops/X634aba", "https://tec.openplanner.team/stops/X634ahb"], ["https://tec.openplanner.team/stops/Cjubien1", "https://tec.openplanner.team/stops/Cjuloos2"], ["https://tec.openplanner.team/stops/H4hq133a", "https://tec.openplanner.team/stops/H4hq134a"], ["https://tec.openplanner.team/stops/N136aea", "https://tec.openplanner.team/stops/N143ada"], ["https://tec.openplanner.team/stops/X601cja", "https://tec.openplanner.team/stops/X601cwa"], ["https://tec.openplanner.team/stops/LFdchau2", "https://tec.openplanner.team/stops/LLMfond1"], ["https://tec.openplanner.team/stops/X780afa", "https://tec.openplanner.team/stops/X780afb"], ["https://tec.openplanner.team/stops/LBAcent1", "https://tec.openplanner.team/stops/LSAmous1"], ["https://tec.openplanner.team/stops/H2hg149b", "https://tec.openplanner.team/stops/H2hg270b"], ["https://tec.openplanner.team/stops/N230ama", "https://tec.openplanner.team/stops/N549aab"], ["https://tec.openplanner.team/stops/Cwfmonu2", "https://tec.openplanner.team/stops/Cwfplac1"], ["https://tec.openplanner.team/stops/H5el105b", "https://tec.openplanner.team/stops/H5el111b"], ["https://tec.openplanner.team/stops/Cchalou1", "https://tec.openplanner.team/stops/Cchwarm2"], ["https://tec.openplanner.team/stops/Bgemcro1", "https://tec.openplanner.team/stops/Bgemgjo1"], ["https://tec.openplanner.team/stops/X756ada", "https://tec.openplanner.team/stops/X756akb"], ["https://tec.openplanner.team/stops/N517adc", "https://tec.openplanner.team/stops/N581abb"], ["https://tec.openplanner.team/stops/N150aaa", "https://tec.openplanner.team/stops/N150aba"], ["https://tec.openplanner.team/stops/Caindsa2", "https://tec.openplanner.team/stops/Crsrose1"], ["https://tec.openplanner.team/stops/LROmorf2", "https://tec.openplanner.team/stops/LWLeg--1"], ["https://tec.openplanner.team/stops/H4mo137a", "https://tec.openplanner.team/stops/H4rx176a"], ["https://tec.openplanner.team/stops/LSPastr2", "https://tec.openplanner.team/stops/LSPgare*"], ["https://tec.openplanner.team/stops/X943aga", "https://tec.openplanner.team/stops/X943aha"], ["https://tec.openplanner.team/stops/H1el135a", "https://tec.openplanner.team/stops/H1wi152a"], ["https://tec.openplanner.team/stops/Ccpetan1", "https://tec.openplanner.team/stops/Cptchea2"], ["https://tec.openplanner.team/stops/LHUdeni1", "https://tec.openplanner.team/stops/LHUdeni2"], ["https://tec.openplanner.team/stops/Bwategp1", "https://tec.openplanner.team/stops/Bwatfau1"], ["https://tec.openplanner.team/stops/Lprorem1", "https://tec.openplanner.team/stops/Lprtill2"], ["https://tec.openplanner.team/stops/LFReg--1", "https://tec.openplanner.team/stops/LRffroi2"], ["https://tec.openplanner.team/stops/H4ag102a", "https://tec.openplanner.team/stops/H4fo118b"], ["https://tec.openplanner.team/stops/X636afb", "https://tec.openplanner.team/stops/X636agb"], ["https://tec.openplanner.team/stops/X953aaa", "https://tec.openplanner.team/stops/X953acb"], ["https://tec.openplanner.team/stops/N501ffa", "https://tec.openplanner.team/stops/N501lzb"], ["https://tec.openplanner.team/stops/X804ana", "https://tec.openplanner.team/stops/X804aob"], ["https://tec.openplanner.team/stops/X595aia", "https://tec.openplanner.team/stops/X713ada"], ["https://tec.openplanner.team/stops/H4ma204a", "https://tec.openplanner.team/stops/H4ma204b"], ["https://tec.openplanner.team/stops/LCUjonc1", "https://tec.openplanner.team/stops/NL73aab"], ["https://tec.openplanner.team/stops/Lmoboeu3", "https://tec.openplanner.team/stops/Lmoboeu4"], ["https://tec.openplanner.team/stops/Bsdavpe2", "https://tec.openplanner.team/stops/Csdnive4"], ["https://tec.openplanner.team/stops/Cfocobe1", "https://tec.openplanner.team/stops/Cforpet1"], ["https://tec.openplanner.team/stops/Bbstmco1", "https://tec.openplanner.team/stops/Csdetan2"], ["https://tec.openplanner.team/stops/LBSpail4", "https://tec.openplanner.team/stops/LBStong2"], ["https://tec.openplanner.team/stops/LbO52--1", "https://tec.openplanner.team/stops/LbOhoff2"], ["https://tec.openplanner.team/stops/N511asa", "https://tec.openplanner.team/stops/N511asb"], ["https://tec.openplanner.team/stops/LHFappe2", "https://tec.openplanner.team/stops/LHFwaut1"], ["https://tec.openplanner.team/stops/Bgoevli1", "https://tec.openplanner.team/stops/Bgoevli2"], ["https://tec.openplanner.team/stops/Bthscbl1", "https://tec.openplanner.team/stops/Bthscbl2"], ["https://tec.openplanner.team/stops/Cmycime1", "https://tec.openplanner.team/stops/Cmyvesa1"], ["https://tec.openplanner.team/stops/LCPbatt1", "https://tec.openplanner.team/stops/LMtcent2"], ["https://tec.openplanner.team/stops/Bhevcur2", "https://tec.openplanner.team/stops/Bmsgmon2"], ["https://tec.openplanner.team/stops/H4lz164a", "https://tec.openplanner.team/stops/H4tp143b"], ["https://tec.openplanner.team/stops/N539apa", "https://tec.openplanner.team/stops/N539apb"], ["https://tec.openplanner.team/stops/H4ne132d", "https://tec.openplanner.team/stops/H4tf147b"], ["https://tec.openplanner.team/stops/Llgfran1", "https://tec.openplanner.team/stops/Llglema3"], ["https://tec.openplanner.team/stops/H4mo161a", "https://tec.openplanner.team/stops/H4mo184b"], ["https://tec.openplanner.team/stops/Cvsduve1", "https://tec.openplanner.team/stops/N530aha"], ["https://tec.openplanner.team/stops/X901ada", "https://tec.openplanner.team/stops/X901bpa"], ["https://tec.openplanner.team/stops/LaNdord1", "https://tec.openplanner.team/stops/LaNmuhl1"], ["https://tec.openplanner.team/stops/H4co151a", "https://tec.openplanner.team/stops/H4wn131a"], ["https://tec.openplanner.team/stops/H1pe130b", "https://tec.openplanner.team/stops/H1pe132b"], ["https://tec.openplanner.team/stops/Louencl2", "https://tec.openplanner.team/stops/Loutroi1"], ["https://tec.openplanner.team/stops/Cmlsart2", "https://tec.openplanner.team/stops/Cnanoir1"], ["https://tec.openplanner.team/stops/N510aaa", "https://tec.openplanner.team/stops/N510aca"], ["https://tec.openplanner.team/stops/X742adb", "https://tec.openplanner.team/stops/X742aeb"], ["https://tec.openplanner.team/stops/Bperrcr1", "https://tec.openplanner.team/stops/Bperrcr2"], ["https://tec.openplanner.team/stops/Btstbes1", "https://tec.openplanner.team/stops/Btstbes2"], ["https://tec.openplanner.team/stops/LATcorp1", "https://tec.openplanner.team/stops/LATcorp2"], ["https://tec.openplanner.team/stops/Cbbcrbo1", "https://tec.openplanner.team/stops/Cbmgrav2"], ["https://tec.openplanner.team/stops/LCPaywa2", "https://tec.openplanner.team/stops/LMvgare2"], ["https://tec.openplanner.team/stops/Chppack2", "https://tec.openplanner.team/stops/Cracime2"], ["https://tec.openplanner.team/stops/N509aqa", "https://tec.openplanner.team/stops/N509avb"], ["https://tec.openplanner.team/stops/N512aib", "https://tec.openplanner.team/stops/N512aic"], ["https://tec.openplanner.team/stops/LsVbell2", "https://tec.openplanner.team/stops/LsVfrde2"], ["https://tec.openplanner.team/stops/Bohnmes1", "https://tec.openplanner.team/stops/Bohnmon1"], ["https://tec.openplanner.team/stops/Lmnsech1", "https://tec.openplanner.team/stops/Lmnsech2"], ["https://tec.openplanner.team/stops/X664aib", "https://tec.openplanner.team/stops/X664aid"], ["https://tec.openplanner.team/stops/LBOec--1", "https://tec.openplanner.team/stops/LBOec--2"], ["https://tec.openplanner.team/stops/X761abb", "https://tec.openplanner.team/stops/X793ada"], ["https://tec.openplanner.team/stops/Cchbrou2", "https://tec.openplanner.team/stops/Cchjaur2"], ["https://tec.openplanner.team/stops/X824aha", "https://tec.openplanner.team/stops/X824akb"], ["https://tec.openplanner.team/stops/H2gy106a", "https://tec.openplanner.team/stops/H2gy107a"], ["https://tec.openplanner.team/stops/H5pe141b", "https://tec.openplanner.team/stops/H5pe147b"], ["https://tec.openplanner.team/stops/LSChane2", "https://tec.openplanner.team/stops/LVEmohi1"], ["https://tec.openplanner.team/stops/H4co157a", "https://tec.openplanner.team/stops/H4co157b"], ["https://tec.openplanner.team/stops/Bfledpi1", "https://tec.openplanner.team/stops/Cflchap4"], ["https://tec.openplanner.team/stops/H1ha184b", "https://tec.openplanner.team/stops/H1ha187b"], ["https://tec.openplanner.team/stops/N512ada", "https://tec.openplanner.team/stops/N512aha"], ["https://tec.openplanner.team/stops/H1gr115b", "https://tec.openplanner.team/stops/H1gr120a"], ["https://tec.openplanner.team/stops/N230acb", "https://tec.openplanner.team/stops/N230aia"], ["https://tec.openplanner.team/stops/LLmcarr1", "https://tec.openplanner.team/stops/LLmpt--1"], ["https://tec.openplanner.team/stops/N152aaa", "https://tec.openplanner.team/stops/N152aad"], ["https://tec.openplanner.team/stops/H3th135c", "https://tec.openplanner.team/stops/H3th135e"], ["https://tec.openplanner.team/stops/X901boa", "https://tec.openplanner.team/stops/X901bob"], ["https://tec.openplanner.team/stops/Lhutill2", "https://tec.openplanner.team/stops/Lveherl1"], ["https://tec.openplanner.team/stops/LAMgare2", "https://tec.openplanner.team/stops/LOmpont1"], ["https://tec.openplanner.team/stops/LBGgeer1", "https://tec.openplanner.team/stops/LBGgeer2"], ["https://tec.openplanner.team/stops/LlgOPER3", "https://tec.openplanner.team/stops/LlgOPER4"], ["https://tec.openplanner.team/stops/Bblagar8", "https://tec.openplanner.team/stops/Bblagar9"], ["https://tec.openplanner.team/stops/N228aab", "https://tec.openplanner.team/stops/N228aeb"], ["https://tec.openplanner.team/stops/N501eta", "https://tec.openplanner.team/stops/N501etz"], ["https://tec.openplanner.team/stops/LBivi--1", "https://tec.openplanner.team/stops/LHCauwe3"], ["https://tec.openplanner.team/stops/Bbourel2", "https://tec.openplanner.team/stops/Bboutry2"], ["https://tec.openplanner.team/stops/LBvviem1", "https://tec.openplanner.team/stops/LBvviem4"], ["https://tec.openplanner.team/stops/LHanest2", "https://tec.openplanner.team/stops/LHaxhor2"], ["https://tec.openplanner.team/stops/LHcbaro2", "https://tec.openplanner.team/stops/LSxeg--2"], ["https://tec.openplanner.team/stops/H4ty286a", "https://tec.openplanner.team/stops/H4ty308e"], ["https://tec.openplanner.team/stops/X802ada", "https://tec.openplanner.team/stops/X802afb"], ["https://tec.openplanner.team/stops/H1ba113a", "https://tec.openplanner.team/stops/H1gh143a"], ["https://tec.openplanner.team/stops/LhIkirc*", "https://tec.openplanner.team/stops/LwTzent1"], ["https://tec.openplanner.team/stops/N576ana", "https://tec.openplanner.team/stops/N576anb"], ["https://tec.openplanner.team/stops/LVEjard1", "https://tec.openplanner.team/stops/LVEjard2"], ["https://tec.openplanner.team/stops/Bgemga10", "https://tec.openplanner.team/stops/Bgemga11"], ["https://tec.openplanner.team/stops/N522ahb", "https://tec.openplanner.team/stops/N522ama"], ["https://tec.openplanner.team/stops/Cflsabl1", "https://tec.openplanner.team/stops/Cwgpatr2"], ["https://tec.openplanner.team/stops/LbUmolk1", "https://tec.openplanner.team/stops/LhUkreu2"], ["https://tec.openplanner.team/stops/X667aea", "https://tec.openplanner.team/stops/X670arb"], ["https://tec.openplanner.team/stops/NL74ahb", "https://tec.openplanner.team/stops/NL74aib"], ["https://tec.openplanner.team/stops/H1em110a", "https://tec.openplanner.team/stops/H1hl129b"], ["https://tec.openplanner.team/stops/Lmocail2", "https://tec.openplanner.team/stops/Lsnfoot2"], ["https://tec.openplanner.team/stops/X922aga", "https://tec.openplanner.team/stops/X922alb"], ["https://tec.openplanner.team/stops/X725afe", "https://tec.openplanner.team/stops/X725afh"], ["https://tec.openplanner.team/stops/H5fl103b", "https://tec.openplanner.team/stops/H5wo136a"], ["https://tec.openplanner.team/stops/N425acb", "https://tec.openplanner.team/stops/N425ahb"], ["https://tec.openplanner.team/stops/H1mb128a", "https://tec.openplanner.team/stops/H1mb128b"], ["https://tec.openplanner.team/stops/LAMgare2", "https://tec.openplanner.team/stops/LAMhopi3"], ["https://tec.openplanner.team/stops/X808aaa", "https://tec.openplanner.team/stops/X808abc"], ["https://tec.openplanner.team/stops/LHHplac1", "https://tec.openplanner.team/stops/LHHtill1"], ["https://tec.openplanner.team/stops/LSXbecc1", "https://tec.openplanner.team/stops/LSXvill1"], ["https://tec.openplanner.team/stops/LFRhock1", "https://tec.openplanner.team/stops/LSZpiro2"], ["https://tec.openplanner.team/stops/LBPmais1", "https://tec.openplanner.team/stops/LGLcour4"], ["https://tec.openplanner.team/stops/Clrhava2", "https://tec.openplanner.team/stops/Clrrhau2"], ["https://tec.openplanner.team/stops/Cchba03", "https://tec.openplanner.team/stops/Cchba04"], ["https://tec.openplanner.team/stops/Bthsvil2", "https://tec.openplanner.team/stops/NL37aib"], ["https://tec.openplanner.team/stops/N501hqa", "https://tec.openplanner.team/stops/N501hta"], ["https://tec.openplanner.team/stops/Cchfaub2", "https://tec.openplanner.team/stops/Cchvil21"], ["https://tec.openplanner.team/stops/N532aea", "https://tec.openplanner.team/stops/N574aeb"], ["https://tec.openplanner.team/stops/Brixdec1", "https://tec.openplanner.team/stops/Brixpro1"], ["https://tec.openplanner.team/stops/N501dwa", "https://tec.openplanner.team/stops/N501eab"], ["https://tec.openplanner.team/stops/H4wi164b", "https://tec.openplanner.team/stops/H4wi168b"], ["https://tec.openplanner.team/stops/LaMwies1", "https://tec.openplanner.team/stops/LeIkreu1"], ["https://tec.openplanner.team/stops/X663awb", "https://tec.openplanner.team/stops/X663axa"], ["https://tec.openplanner.team/stops/N101adb", "https://tec.openplanner.team/stops/N101aja"], ["https://tec.openplanner.team/stops/H4mt216b", "https://tec.openplanner.team/stops/H4mt220a"], ["https://tec.openplanner.team/stops/LENcroi1", "https://tec.openplanner.team/stops/LENengi1"], ["https://tec.openplanner.team/stops/Btieast1", "https://tec.openplanner.team/stops/Btiegar2"], ["https://tec.openplanner.team/stops/Llgcham6", "https://tec.openplanner.team/stops/Llgmulh1"], ["https://tec.openplanner.team/stops/X716aca", "https://tec.openplanner.team/stops/X716acb"], ["https://tec.openplanner.team/stops/N232bgb", "https://tec.openplanner.team/stops/N232bla"], ["https://tec.openplanner.team/stops/LHrlorc1", "https://tec.openplanner.team/stops/LHrparc1"], ["https://tec.openplanner.team/stops/N512apb", "https://tec.openplanner.team/stops/N512ara"], ["https://tec.openplanner.team/stops/X754asb", "https://tec.openplanner.team/stops/X754aub"], ["https://tec.openplanner.team/stops/Bbch4br6", "https://tec.openplanner.team/stops/Bbchcab2"], ["https://tec.openplanner.team/stops/N557afb", "https://tec.openplanner.team/stops/N557agb"], ["https://tec.openplanner.team/stops/X877afb", "https://tec.openplanner.team/stops/X879abb"], ["https://tec.openplanner.team/stops/X369aab", "https://tec.openplanner.team/stops/X369aba"], ["https://tec.openplanner.team/stops/Bmonbri1", "https://tec.openplanner.team/stops/Bmonbri2"], ["https://tec.openplanner.team/stops/X641aea", "https://tec.openplanner.team/stops/X641afd"], ["https://tec.openplanner.team/stops/LENindu2", "https://tec.openplanner.team/stops/LENpt--2"], ["https://tec.openplanner.team/stops/LTobilz2", "https://tec.openplanner.team/stops/LTotrui1"], ["https://tec.openplanner.team/stops/LHUdelc3", "https://tec.openplanner.team/stops/LHUlebe0"], ["https://tec.openplanner.team/stops/LSdsa451", "https://tec.openplanner.team/stops/LSdsar51"], ["https://tec.openplanner.team/stops/Lseboia2", "https://tec.openplanner.team/stops/Lsemaha1"], ["https://tec.openplanner.team/stops/N501bla", "https://tec.openplanner.team/stops/N501lqa"], ["https://tec.openplanner.team/stops/Btubga03", "https://tec.openplanner.team/stops/Btubnav2"], ["https://tec.openplanner.team/stops/X601aua", "https://tec.openplanner.team/stops/X601bwa"], ["https://tec.openplanner.team/stops/X634aea", "https://tec.openplanner.team/stops/X634agb"], ["https://tec.openplanner.team/stops/Cmtneuv1", "https://tec.openplanner.team/stops/Cmtpaix2"], ["https://tec.openplanner.team/stops/N229ada", "https://tec.openplanner.team/stops/N291aba"], ["https://tec.openplanner.team/stops/Bgoekaz1", "https://tec.openplanner.team/stops/Bhakmkr1"], ["https://tec.openplanner.team/stops/Cjuheig1", "https://tec.openplanner.team/stops/Cjuheig4"], ["https://tec.openplanner.team/stops/X681aeb", "https://tec.openplanner.team/stops/X681afa"], ["https://tec.openplanner.team/stops/LPrcarr1", "https://tec.openplanner.team/stops/LWZbeem1"], ["https://tec.openplanner.team/stops/H1mq200a", "https://tec.openplanner.team/stops/H1mq200b"], ["https://tec.openplanner.team/stops/H1wz170b", "https://tec.openplanner.team/stops/H1wz171a"], ["https://tec.openplanner.team/stops/Lrccomm2", "https://tec.openplanner.team/stops/Lrclant1"], ["https://tec.openplanner.team/stops/X623afb", "https://tec.openplanner.team/stops/X624aab"], ["https://tec.openplanner.team/stops/LMastat3", "https://tec.openplanner.team/stops/LMawilh3"], ["https://tec.openplanner.team/stops/N254abb", "https://tec.openplanner.team/stops/N254aga"], ["https://tec.openplanner.team/stops/Bwavche1", "https://tec.openplanner.team/stops/Bwavnam3"], ["https://tec.openplanner.team/stops/H2pe154b", "https://tec.openplanner.team/stops/H2pe159a"], ["https://tec.openplanner.team/stops/X730agb", "https://tec.openplanner.team/stops/X731aia"], ["https://tec.openplanner.team/stops/LMHec--1", "https://tec.openplanner.team/stops/LMHec--2"], ["https://tec.openplanner.team/stops/Bhalark2", "https://tec.openplanner.team/stops/Bhalber2"], ["https://tec.openplanner.team/stops/X882afa", "https://tec.openplanner.team/stops/X882ajb"], ["https://tec.openplanner.team/stops/LROgeuz1", "https://tec.openplanner.team/stops/LWalibo2"], ["https://tec.openplanner.team/stops/Lanfran1", "https://tec.openplanner.team/stops/Lanyser2"], ["https://tec.openplanner.team/stops/X720aba", "https://tec.openplanner.team/stops/X720aeb"], ["https://tec.openplanner.team/stops/LAx17--2", "https://tec.openplanner.team/stops/LAx41--2"], ["https://tec.openplanner.team/stops/LHocroi1", "https://tec.openplanner.team/stops/LHocroi2"], ["https://tec.openplanner.team/stops/X763aab", "https://tec.openplanner.team/stops/X763adb"], ["https://tec.openplanner.team/stops/X730adb", "https://tec.openplanner.team/stops/X731afb"], ["https://tec.openplanner.team/stops/H3br100b", "https://tec.openplanner.team/stops/H3br122b"], ["https://tec.openplanner.team/stops/LWAbeec1", "https://tec.openplanner.team/stops/LWAbett2"], ["https://tec.openplanner.team/stops/H1he108a", "https://tec.openplanner.team/stops/H1he108b"], ["https://tec.openplanner.team/stops/N535ana", "https://tec.openplanner.team/stops/N535aob"], ["https://tec.openplanner.team/stops/H4am113a", "https://tec.openplanner.team/stops/H4rs118a"], ["https://tec.openplanner.team/stops/X756aec", "https://tec.openplanner.team/stops/X756aed"], ["https://tec.openplanner.team/stops/Cfrgivr1", "https://tec.openplanner.team/stops/Cfrgivr2"], ["https://tec.openplanner.team/stops/Cbbjfeu1", "https://tec.openplanner.team/stops/Cclbarb1"], ["https://tec.openplanner.team/stops/Ccychba1", "https://tec.openplanner.team/stops/Ccycont1"], ["https://tec.openplanner.team/stops/X359ada", "https://tec.openplanner.team/stops/X359adb"], ["https://tec.openplanner.team/stops/X740afa", "https://tec.openplanner.team/stops/X759aaa"], ["https://tec.openplanner.team/stops/Bqueaga1", "https://tec.openplanner.team/stops/Bquesta1"], ["https://tec.openplanner.team/stops/Bsaubbo1", "https://tec.openplanner.team/stops/N541aca"], ["https://tec.openplanner.team/stops/Lbhhomv1", "https://tec.openplanner.team/stops/Lbhmc--1"], ["https://tec.openplanner.team/stops/Lhrcols4", "https://tec.openplanner.team/stops/Lhrpaep2"], ["https://tec.openplanner.team/stops/Bnivgen1", "https://tec.openplanner.team/stops/Bnivgen2"], ["https://tec.openplanner.team/stops/Louense1", "https://tec.openplanner.team/stops/Louense2"], ["https://tec.openplanner.team/stops/Bmrspel2", "https://tec.openplanner.team/stops/Bohnrpl2"], ["https://tec.openplanner.team/stops/X736aea", "https://tec.openplanner.team/stops/X736aja"], ["https://tec.openplanner.team/stops/LHCmonu1", "https://tec.openplanner.team/stops/LHCmonu2"], ["https://tec.openplanner.team/stops/Brsgera1", "https://tec.openplanner.team/stops/Brsgera2"], ["https://tec.openplanner.team/stops/N554acb", "https://tec.openplanner.team/stops/N554afa"], ["https://tec.openplanner.team/stops/Cchabat1", "https://tec.openplanner.team/stops/Cchlamb2"], ["https://tec.openplanner.team/stops/Lflroms5", "https://tec.openplanner.team/stops/Lflsana2"], ["https://tec.openplanner.team/stops/LrTbahn1", "https://tec.openplanner.team/stops/LrTpost2"], ["https://tec.openplanner.team/stops/LBgcroi4", "https://tec.openplanner.team/stops/LBgnach2"], ["https://tec.openplanner.team/stops/H4ta134b", "https://tec.openplanner.team/stops/H4wu420b"], ["https://tec.openplanner.team/stops/H4fr145a", "https://tec.openplanner.team/stops/H4ma420a"], ["https://tec.openplanner.team/stops/X763aca", "https://tec.openplanner.team/stops/X763ada"], ["https://tec.openplanner.team/stops/Bnodeco2", "https://tec.openplanner.team/stops/Bnodtir2"], ["https://tec.openplanner.team/stops/H1cv102b", "https://tec.openplanner.team/stops/H1cv103b"], ["https://tec.openplanner.team/stops/X613aca", "https://tec.openplanner.team/stops/X613ada"], ["https://tec.openplanner.team/stops/LFClage2", "https://tec.openplanner.team/stops/LMamuse3"], ["https://tec.openplanner.team/stops/LPbover2", "https://tec.openplanner.team/stops/LSIters1"], ["https://tec.openplanner.team/stops/H1eo103a", "https://tec.openplanner.team/stops/H1gh147a"], ["https://tec.openplanner.team/stops/X608acb", "https://tec.openplanner.team/stops/X608afa"], ["https://tec.openplanner.team/stops/LCF2spa2", "https://tec.openplanner.team/stops/LOurena2"], ["https://tec.openplanner.team/stops/X369aca", "https://tec.openplanner.team/stops/X370adb"], ["https://tec.openplanner.team/stops/H4fr392a", "https://tec.openplanner.team/stops/H4ty301c"], ["https://tec.openplanner.team/stops/LAWcorn4", "https://tec.openplanner.team/stops/LAWmc--2"], ["https://tec.openplanner.team/stops/H4be101a", "https://tec.openplanner.team/stops/H5bs104a"], ["https://tec.openplanner.team/stops/Bbryfon1", "https://tec.openplanner.team/stops/Bmarcat2"], ["https://tec.openplanner.team/stops/N352ada", "https://tec.openplanner.team/stops/N353aba"], ["https://tec.openplanner.team/stops/Ccotemp1", "https://tec.openplanner.team/stops/Crowilb2"], ["https://tec.openplanner.team/stops/X801cda", "https://tec.openplanner.team/stops/X802azb"], ["https://tec.openplanner.team/stops/N232bwa", "https://tec.openplanner.team/stops/N260acb"], ["https://tec.openplanner.team/stops/X730aeb", "https://tec.openplanner.team/stops/X731afa"], ["https://tec.openplanner.team/stops/H1au111b", "https://tec.openplanner.team/stops/H1au114b"], ["https://tec.openplanner.team/stops/NL77anb", "https://tec.openplanner.team/stops/NL78aha"], ["https://tec.openplanner.team/stops/LHThall4", "https://tec.openplanner.team/stops/LWOwonc1"], ["https://tec.openplanner.team/stops/Bpergar1", "https://tec.openplanner.team/stops/Bperrma2"], ["https://tec.openplanner.team/stops/H1ry135a", "https://tec.openplanner.team/stops/H1ry135c"], ["https://tec.openplanner.team/stops/Bblafra1", "https://tec.openplanner.team/stops/Bblafra3"], ["https://tec.openplanner.team/stops/N543axa", "https://tec.openplanner.team/stops/N543aya"], ["https://tec.openplanner.team/stops/Llghoch1", "https://tec.openplanner.team/stops/Llghoch3"], ["https://tec.openplanner.team/stops/H2sb239a", "https://tec.openplanner.team/stops/H2sb239b"], ["https://tec.openplanner.team/stops/Lmohomv2", "https://tec.openplanner.team/stops/Lsnbrac1"], ["https://tec.openplanner.team/stops/N301agb", "https://tec.openplanner.team/stops/N340aeb"], ["https://tec.openplanner.team/stops/LwTkabi4", "https://tec.openplanner.team/stops/LwTzent2"], ["https://tec.openplanner.team/stops/Cpcha431", "https://tec.openplanner.team/stops/Cpcha432"], ["https://tec.openplanner.team/stops/H4ob124a", "https://tec.openplanner.team/stops/H4ob124b"], ["https://tec.openplanner.team/stops/LCSmagn1", "https://tec.openplanner.team/stops/LRArami2"], ["https://tec.openplanner.team/stops/LWDfuma2", "https://tec.openplanner.team/stops/LWDmass2"], ["https://tec.openplanner.team/stops/H2hg155c", "https://tec.openplanner.team/stops/H2ll195b"], ["https://tec.openplanner.team/stops/N527agb", "https://tec.openplanner.team/stops/N533apa"], ["https://tec.openplanner.team/stops/H1bo105a", "https://tec.openplanner.team/stops/H1bo106b"], ["https://tec.openplanner.team/stops/N573amb", "https://tec.openplanner.team/stops/N573aoa"], ["https://tec.openplanner.team/stops/H4ag104a", "https://tec.openplanner.team/stops/H4ag104b"], ["https://tec.openplanner.team/stops/X663ava", "https://tec.openplanner.team/stops/X663avb"], ["https://tec.openplanner.team/stops/H1ho123a", "https://tec.openplanner.team/stops/H1ho123b"], ["https://tec.openplanner.team/stops/H4ty314a", "https://tec.openplanner.team/stops/H4ty315a"], ["https://tec.openplanner.team/stops/Clocroi1", "https://tec.openplanner.team/stops/Clocroi2"], ["https://tec.openplanner.team/stops/LSoboul1", "https://tec.openplanner.team/stops/LSoeg--2"], ["https://tec.openplanner.team/stops/Bwaveur2", "https://tec.openplanner.team/stops/Bwavgar8"], ["https://tec.openplanner.team/stops/Canjon3", "https://tec.openplanner.team/stops/Canstat2"], ["https://tec.openplanner.team/stops/N516abb", "https://tec.openplanner.team/stops/N516acb"], ["https://tec.openplanner.team/stops/H1ms258a", "https://tec.openplanner.team/stops/H1ms305b"], ["https://tec.openplanner.team/stops/X888aca", "https://tec.openplanner.team/stops/X888aeb"], ["https://tec.openplanner.team/stops/H3lr108b", "https://tec.openplanner.team/stops/H3lr111a"], ["https://tec.openplanner.team/stops/X602aob", "https://tec.openplanner.team/stops/X663ajb"], ["https://tec.openplanner.team/stops/X818atb", "https://tec.openplanner.team/stops/X827aaa"], ["https://tec.openplanner.team/stops/LMOfrel1", "https://tec.openplanner.team/stops/LMOfrel2"], ["https://tec.openplanner.team/stops/Cgyplst2", "https://tec.openplanner.team/stops/Cgywaut1"], ["https://tec.openplanner.team/stops/Bkrapri2", "https://tec.openplanner.team/stops/Bkrawil2"], ["https://tec.openplanner.team/stops/LkAbahn*", "https://tec.openplanner.team/stops/LSoprom2"], ["https://tec.openplanner.team/stops/X547ahb", "https://tec.openplanner.team/stops/X547aja"], ["https://tec.openplanner.team/stops/X601bzb", "https://tec.openplanner.team/stops/X601dda"], ["https://tec.openplanner.team/stops/H4ga148b", "https://tec.openplanner.team/stops/H4ga157a"], ["https://tec.openplanner.team/stops/LFmbure2", "https://tec.openplanner.team/stops/LFmpoin1"], ["https://tec.openplanner.team/stops/X650aca", "https://tec.openplanner.team/stops/X650adb"], ["https://tec.openplanner.team/stops/Cfaetoi1", "https://tec.openplanner.team/stops/Cpiegli2"], ["https://tec.openplanner.team/stops/Ccoforr2", "https://tec.openplanner.team/stops/Ccogera1"], ["https://tec.openplanner.team/stops/Lstchu-4", "https://tec.openplanner.team/stops/LTIsupe1"], ["https://tec.openplanner.team/stops/X636apa", "https://tec.openplanner.team/stops/X636aqa"], ["https://tec.openplanner.team/stops/X661aua", "https://tec.openplanner.team/stops/X661aub"], ["https://tec.openplanner.team/stops/Llggill4", "https://tec.openplanner.team/stops/Llgsnap3"], ["https://tec.openplanner.team/stops/X602akb", "https://tec.openplanner.team/stops/X602aqa"], ["https://tec.openplanner.team/stops/LHMbelv1", "https://tec.openplanner.team/stops/LHMpatl1"], ["https://tec.openplanner.team/stops/LLevaux1", "https://tec.openplanner.team/stops/X547ana"], ["https://tec.openplanner.team/stops/X756aba", "https://tec.openplanner.team/stops/X757ana"], ["https://tec.openplanner.team/stops/Llgnico1", "https://tec.openplanner.team/stops/Lsnlibe2"], ["https://tec.openplanner.team/stops/Cmypela1", "https://tec.openplanner.team/stops/Cmyrens1"], ["https://tec.openplanner.team/stops/Bboueta1", "https://tec.openplanner.team/stops/Bbougbl1"], ["https://tec.openplanner.team/stops/H1bd102b", "https://tec.openplanner.team/stops/H1gy115a"], ["https://tec.openplanner.team/stops/Loudela1", "https://tec.openplanner.team/stops/Louegla2"], ["https://tec.openplanner.team/stops/H4ea128b", "https://tec.openplanner.team/stops/H5qu145b"], ["https://tec.openplanner.team/stops/LlNbene1", "https://tec.openplanner.team/stops/LwArabo2"], ["https://tec.openplanner.team/stops/X790aga", "https://tec.openplanner.team/stops/X790aha"], ["https://tec.openplanner.team/stops/Brsggar2", "https://tec.openplanner.team/stops/Bwatcoq1"], ["https://tec.openplanner.team/stops/LrUweve2", "https://tec.openplanner.team/stops/LsF39--1"], ["https://tec.openplanner.team/stops/H4jm117b", "https://tec.openplanner.team/stops/H4ry133a"], ["https://tec.openplanner.team/stops/Csdjeme1", "https://tec.openplanner.team/stops/Csdrofr1"], ["https://tec.openplanner.team/stops/N533aib", "https://tec.openplanner.team/stops/N551aba"], ["https://tec.openplanner.team/stops/H2sb232a", "https://tec.openplanner.team/stops/H3th131a"], ["https://tec.openplanner.team/stops/H1pw122a", "https://tec.openplanner.team/stops/H1wa158a"], ["https://tec.openplanner.team/stops/LFMkrut4", "https://tec.openplanner.team/stops/LFMveur2"], ["https://tec.openplanner.team/stops/Ljetomb2", "https://tec.openplanner.team/stops/Ljetout3"], ["https://tec.openplanner.team/stops/X954aca", "https://tec.openplanner.team/stops/X954ahb"], ["https://tec.openplanner.team/stops/LHGtige1", "https://tec.openplanner.team/stops/LHGtron2"], ["https://tec.openplanner.team/stops/LrAeife1", "https://tec.openplanner.team/stops/LrAeife2"], ["https://tec.openplanner.team/stops/Bnstgar1", "https://tec.openplanner.team/stops/Bnstgar2"], ["https://tec.openplanner.team/stops/Llgdony2", "https://tec.openplanner.team/stops/Llgthie2"], ["https://tec.openplanner.team/stops/Lemdieu1", "https://tec.openplanner.team/stops/Lemmc--1"], ["https://tec.openplanner.team/stops/LAYlieg2", "https://tec.openplanner.team/stops/LHrrard1"], ["https://tec.openplanner.team/stops/N529acb", "https://tec.openplanner.team/stops/N529adb"], ["https://tec.openplanner.team/stops/X619ajb", "https://tec.openplanner.team/stops/X619akb"], ["https://tec.openplanner.team/stops/X820acb", "https://tec.openplanner.team/stops/X820aga"], ["https://tec.openplanner.team/stops/N135ajb", "https://tec.openplanner.team/stops/N135aob"], ["https://tec.openplanner.team/stops/X917abb", "https://tec.openplanner.team/stops/X917aia"], ["https://tec.openplanner.team/stops/Lmopeup2", "https://tec.openplanner.team/stops/Lmovand4"], ["https://tec.openplanner.team/stops/Lbrbass1", "https://tec.openplanner.team/stops/Lbrbass2"], ["https://tec.openplanner.team/stops/Cflchel4", "https://tec.openplanner.team/stops/Cflecep2"], ["https://tec.openplanner.team/stops/X948anb", "https://tec.openplanner.team/stops/X948bbb"], ["https://tec.openplanner.team/stops/Ltibure1", "https://tec.openplanner.team/stops/Lticime2"], ["https://tec.openplanner.team/stops/LGmloti1", "https://tec.openplanner.team/stops/LGmloti2"], ["https://tec.openplanner.team/stops/LLrgara2", "https://tec.openplanner.team/stops/LSPmart2"], ["https://tec.openplanner.team/stops/NL76aab", "https://tec.openplanner.team/stops/NL76aob"], ["https://tec.openplanner.team/stops/H1cu112a", "https://tec.openplanner.team/stops/H1cu122b"], ["https://tec.openplanner.team/stops/Cfrtill2", "https://tec.openplanner.team/stops/Crebien3"], ["https://tec.openplanner.team/stops/H4ef163b", "https://tec.openplanner.team/stops/H4ef165b"], ["https://tec.openplanner.team/stops/LsBzent1", "https://tec.openplanner.team/stops/LsBzent2"], ["https://tec.openplanner.team/stops/H4rs117a", "https://tec.openplanner.team/stops/H4wt160a"], ["https://tec.openplanner.team/stops/N501afb", "https://tec.openplanner.team/stops/N501cla"], ["https://tec.openplanner.team/stops/N519abb", "https://tec.openplanner.team/stops/N519ara"], ["https://tec.openplanner.team/stops/X663aqc", "https://tec.openplanner.team/stops/X663awa"], ["https://tec.openplanner.team/stops/Lhrlaix1", "https://tec.openplanner.team/stops/Lhrsimo4"], ["https://tec.openplanner.team/stops/H3go103a", "https://tec.openplanner.team/stops/H3lr106a"], ["https://tec.openplanner.team/stops/X746aja", "https://tec.openplanner.team/stops/X746ajb"], ["https://tec.openplanner.team/stops/Bnivace2", "https://tec.openplanner.team/stops/Bnivind2"], ["https://tec.openplanner.team/stops/N521aka", "https://tec.openplanner.team/stops/N521ama"], ["https://tec.openplanner.team/stops/H1wi152b", "https://tec.openplanner.team/stops/H1wi152c"], ["https://tec.openplanner.team/stops/N513adb", "https://tec.openplanner.team/stops/N513aoa"], ["https://tec.openplanner.team/stops/NL74aba", "https://tec.openplanner.team/stops/NL74afb"], ["https://tec.openplanner.team/stops/X681aga", "https://tec.openplanner.team/stops/X681aia"], ["https://tec.openplanner.team/stops/LAWchpl2", "https://tec.openplanner.team/stops/LFOchpl2"], ["https://tec.openplanner.team/stops/Bhvltol2", "https://tec.openplanner.team/stops/Bvilcim1"], ["https://tec.openplanner.team/stops/N501ewa", "https://tec.openplanner.team/stops/N501hcb"], ["https://tec.openplanner.team/stops/N368aca", "https://tec.openplanner.team/stops/N368acb"], ["https://tec.openplanner.team/stops/LWDmass1", "https://tec.openplanner.team/stops/LWDmass2"], ["https://tec.openplanner.team/stops/N525abb", "https://tec.openplanner.team/stops/N525acb"], ["https://tec.openplanner.team/stops/NH21aea", "https://tec.openplanner.team/stops/NH21aeb"], ["https://tec.openplanner.team/stops/X806afa", "https://tec.openplanner.team/stops/X806agb"], ["https://tec.openplanner.team/stops/H4pl111a", "https://tec.openplanner.team/stops/H4pl117b"], ["https://tec.openplanner.team/stops/H1hl123b", "https://tec.openplanner.team/stops/H1hl129b"], ["https://tec.openplanner.team/stops/X637aaa", "https://tec.openplanner.team/stops/X637aba"], ["https://tec.openplanner.team/stops/H1bu136b", "https://tec.openplanner.team/stops/H1vb147b"], ["https://tec.openplanner.team/stops/LVHcent2", "https://tec.openplanner.team/stops/LVHweri1"], ["https://tec.openplanner.team/stops/Cgonvro1", "https://tec.openplanner.team/stops/Cmehame1"], ["https://tec.openplanner.team/stops/H1bo100b", "https://tec.openplanner.team/stops/H1ho140b"], ["https://tec.openplanner.team/stops/Bbghsar1", "https://tec.openplanner.team/stops/Bstesar2"], ["https://tec.openplanner.team/stops/LOTferm1", "https://tec.openplanner.team/stops/LOTtong1"], ["https://tec.openplanner.team/stops/X623aed", "https://tec.openplanner.team/stops/X623ajb"], ["https://tec.openplanner.team/stops/H4bv145b", "https://tec.openplanner.team/stops/H4bv146b"], ["https://tec.openplanner.team/stops/X619aba", "https://tec.openplanner.team/stops/X619amb"], ["https://tec.openplanner.team/stops/Bcrbmsg1", "https://tec.openplanner.team/stops/Bcrbrpb2"], ["https://tec.openplanner.team/stops/Bnivaba2", "https://tec.openplanner.team/stops/Bnivgam1"], ["https://tec.openplanner.team/stops/Lprsher1", "https://tec.openplanner.team/stops/Lprsher2"], ["https://tec.openplanner.team/stops/N525aja", "https://tec.openplanner.team/stops/N525aza"], ["https://tec.openplanner.team/stops/Bpte1ma1", "https://tec.openplanner.team/stops/Bptecar1"], ["https://tec.openplanner.team/stops/N533aeb", "https://tec.openplanner.team/stops/N551aja"], ["https://tec.openplanner.team/stops/H3br110b", "https://tec.openplanner.team/stops/H3br122b"], ["https://tec.openplanner.team/stops/Ccobinc1", "https://tec.openplanner.team/stops/Ccoforr2"], ["https://tec.openplanner.team/stops/X741aia", "https://tec.openplanner.team/stops/X741aid"], ["https://tec.openplanner.team/stops/X659aeb", "https://tec.openplanner.team/stops/X659aqb"], ["https://tec.openplanner.team/stops/Llggram2", "https://tec.openplanner.team/stops/Llgstvi1"], ["https://tec.openplanner.team/stops/Llxec--2", "https://tec.openplanner.team/stops/Llxeg--1"], ["https://tec.openplanner.team/stops/Blhubja1", "https://tec.openplanner.team/stops/Blhueso2"], ["https://tec.openplanner.team/stops/X608ava", "https://tec.openplanner.team/stops/X608aya"], ["https://tec.openplanner.team/stops/N347ada", "https://tec.openplanner.team/stops/X370acb"], ["https://tec.openplanner.team/stops/LLegare2", "https://tec.openplanner.team/stops/LLevaux1"], ["https://tec.openplanner.team/stops/X576aga", "https://tec.openplanner.team/stops/X717aia"], ["https://tec.openplanner.team/stops/LWelogi1", "https://tec.openplanner.team/stops/LWexhav1"], ["https://tec.openplanner.team/stops/X597ala", "https://tec.openplanner.team/stops/X796agb"], ["https://tec.openplanner.team/stops/H1at108b", "https://tec.openplanner.team/stops/H1at108c"], ["https://tec.openplanner.team/stops/Boppcen4", "https://tec.openplanner.team/stops/Bopprju2"], ["https://tec.openplanner.team/stops/Bmalwvi2", "https://tec.openplanner.team/stops/Btlbcha1"], ["https://tec.openplanner.team/stops/LTEkl121", "https://tec.openplanner.team/stops/LTEziho1"], ["https://tec.openplanner.team/stops/X636ala", "https://tec.openplanner.team/stops/X636bia"], ["https://tec.openplanner.team/stops/Bwspbbo2", "https://tec.openplanner.team/stops/Bwsppos1"], ["https://tec.openplanner.team/stops/LNCmc--2", "https://tec.openplanner.team/stops/LNCvill2"], ["https://tec.openplanner.team/stops/LSBjoli2", "https://tec.openplanner.team/stops/LSBrouf3"], ["https://tec.openplanner.team/stops/N535acb", "https://tec.openplanner.team/stops/N535atb"], ["https://tec.openplanner.team/stops/LBTcarr4", "https://tec.openplanner.team/stops/LCx728-2"], ["https://tec.openplanner.team/stops/LHrkin-1", "https://tec.openplanner.team/stops/LLEfagn1"], ["https://tec.openplanner.team/stops/Ljejoli2", "https://tec.openplanner.team/stops/Ljeorda1"], ["https://tec.openplanner.team/stops/X948ama", "https://tec.openplanner.team/stops/X948amb"], ["https://tec.openplanner.team/stops/Lstbota1", "https://tec.openplanner.team/stops/Lstbota3"], ["https://tec.openplanner.team/stops/Lstchu-*", "https://tec.openplanner.team/stops/Lstchu-4"], ["https://tec.openplanner.team/stops/H4ty283a", "https://tec.openplanner.team/stops/H4ty312b"], ["https://tec.openplanner.team/stops/X953adb", "https://tec.openplanner.team/stops/X953aeb"], ["https://tec.openplanner.team/stops/Bndb4ch2", "https://tec.openplanner.team/stops/Bndbgar1"], ["https://tec.openplanner.team/stops/LBsfer-1", "https://tec.openplanner.team/stops/LMHtill2"], ["https://tec.openplanner.team/stops/N501bda", "https://tec.openplanner.team/stops/N501iea"], ["https://tec.openplanner.team/stops/X801asa", "https://tec.openplanner.team/stops/X801aya"], ["https://tec.openplanner.team/stops/X796aib", "https://tec.openplanner.team/stops/X986akb"], ["https://tec.openplanner.team/stops/Bbsihau1", "https://tec.openplanner.team/stops/Bwaunop1"], ["https://tec.openplanner.team/stops/H5el110a", "https://tec.openplanner.team/stops/H5el117a"], ["https://tec.openplanner.team/stops/X675aaa", "https://tec.openplanner.team/stops/X675aab"], ["https://tec.openplanner.team/stops/LMolone2", "https://tec.openplanner.team/stops/LMovich1"], ["https://tec.openplanner.team/stops/LMfeg--2", "https://tec.openplanner.team/stops/LMforba1"], ["https://tec.openplanner.team/stops/Boffegl2", "https://tec.openplanner.team/stops/Bramrdf1"], ["https://tec.openplanner.team/stops/H4ag107a", "https://tec.openplanner.team/stops/H4ag107b"], ["https://tec.openplanner.team/stops/H4re226a", "https://tec.openplanner.team/stops/H5is169b"], ["https://tec.openplanner.team/stops/LFArela3", "https://tec.openplanner.team/stops/LFArela4"], ["https://tec.openplanner.team/stops/H4bo121a", "https://tec.openplanner.team/stops/H4ea128a"], ["https://tec.openplanner.team/stops/LHdvill2", "https://tec.openplanner.team/stops/LTatult4"], ["https://tec.openplanner.team/stops/Lseaite1", "https://tec.openplanner.team/stops/Lsebico2"], ["https://tec.openplanner.team/stops/N501grc", "https://tec.openplanner.team/stops/N501grd"], ["https://tec.openplanner.team/stops/LbTdoma1", "https://tec.openplanner.team/stops/LbThau11"], ["https://tec.openplanner.team/stops/H5rx113b", "https://tec.openplanner.team/stops/H5rx125a"], ["https://tec.openplanner.team/stops/Bpienod2", "https://tec.openplanner.team/stops/Bpiepnd1"], ["https://tec.openplanner.team/stops/Cdahtvi2", "https://tec.openplanner.team/stops/Cdaviol1"], ["https://tec.openplanner.team/stops/H5at118b", "https://tec.openplanner.team/stops/H5at235a"], ["https://tec.openplanner.team/stops/Canjonc1", "https://tec.openplanner.team/stops/Canstat2"], ["https://tec.openplanner.team/stops/Cluchbl2", "https://tec.openplanner.team/stops/Cpctunn2"], ["https://tec.openplanner.team/stops/LLxcite1", "https://tec.openplanner.team/stops/LVItcm-1"], ["https://tec.openplanner.team/stops/LOdbuis2", "https://tec.openplanner.team/stops/LVlledo2"], ["https://tec.openplanner.team/stops/X762acb", "https://tec.openplanner.team/stops/X786ajb"], ["https://tec.openplanner.team/stops/Cgxcite2", "https://tec.openplanner.team/stops/Cgxvkho3"], ["https://tec.openplanner.team/stops/H1ms267a", "https://tec.openplanner.team/stops/H1ms309b"], ["https://tec.openplanner.team/stops/H1sg148b", "https://tec.openplanner.team/stops/H1te182a"], ["https://tec.openplanner.team/stops/X948arb", "https://tec.openplanner.team/stops/X948asb"], ["https://tec.openplanner.team/stops/H4hs136b", "https://tec.openplanner.team/stops/H4hs137a"], ["https://tec.openplanner.team/stops/Bnivga22", "https://tec.openplanner.team/stops/Bnivsse1"], ["https://tec.openplanner.team/stops/Lghberl2", "https://tec.openplanner.team/stops/Lghviad2"], ["https://tec.openplanner.team/stops/Bblacim2", "https://tec.openplanner.team/stops/Bblaelo1"], ["https://tec.openplanner.team/stops/Ccoacie2", "https://tec.openplanner.team/stops/Ccobinc1"], ["https://tec.openplanner.team/stops/H1sg144b", "https://tec.openplanner.team/stops/H1sg149a"], ["https://tec.openplanner.team/stops/H1fr107c", "https://tec.openplanner.team/stops/H1fr113b"], ["https://tec.openplanner.team/stops/Cdacolu2", "https://tec.openplanner.team/stops/Cdalpla1"], ["https://tec.openplanner.team/stops/Ccipier1", "https://tec.openplanner.team/stops/Ccircar1"], ["https://tec.openplanner.team/stops/H1pe131a", "https://tec.openplanner.team/stops/H1pe131b"], ["https://tec.openplanner.team/stops/H1he102a", "https://tec.openplanner.team/stops/H1qv116a"], ["https://tec.openplanner.team/stops/Ccotrie1", "https://tec.openplanner.team/stops/Ccotrie3"], ["https://tec.openplanner.team/stops/X661ada", "https://tec.openplanner.team/stops/X661afa"], ["https://tec.openplanner.team/stops/X818aea", "https://tec.openplanner.team/stops/X818atb"], ["https://tec.openplanner.team/stops/X979aga", "https://tec.openplanner.team/stops/X982bwa"], ["https://tec.openplanner.team/stops/LAUneuv5", "https://tec.openplanner.team/stops/LAUnico1"], ["https://tec.openplanner.team/stops/LOuouff1", "https://tec.openplanner.team/stops/X982btb"], ["https://tec.openplanner.team/stops/H4ty309a", "https://tec.openplanner.team/stops/H4ty338a"], ["https://tec.openplanner.team/stops/Lstauna1", "https://tec.openplanner.team/stops/Lstetud1"], ["https://tec.openplanner.team/stops/H2ca100b", "https://tec.openplanner.team/stops/H2ca109a"], ["https://tec.openplanner.team/stops/Lhrmura1", "https://tec.openplanner.team/stops/Lhrmura2"], ["https://tec.openplanner.team/stops/Buccptj1", "https://tec.openplanner.team/stops/Buccptj2"], ["https://tec.openplanner.team/stops/X745aca", "https://tec.openplanner.team/stops/X745adb"], ["https://tec.openplanner.team/stops/LCSmagn1", "https://tec.openplanner.team/stops/LCSmagn2"], ["https://tec.openplanner.team/stops/Lcchala1", "https://tec.openplanner.team/stops/Lfhmarn2"], ["https://tec.openplanner.team/stops/H1hw118a", "https://tec.openplanner.team/stops/H1hw121a"], ["https://tec.openplanner.team/stops/Cgobruy2", "https://tec.openplanner.team/stops/Cgomoul1"], ["https://tec.openplanner.team/stops/X896aca", "https://tec.openplanner.team/stops/X896acb"], ["https://tec.openplanner.team/stops/Cchalou1", "https://tec.openplanner.team/stops/Cgyrdid2"], ["https://tec.openplanner.team/stops/Lcaboun4", "https://tec.openplanner.team/stops/Lcalaro2"], ["https://tec.openplanner.team/stops/Btlgmar1", "https://tec.openplanner.team/stops/Btlgmou1"], ["https://tec.openplanner.team/stops/Cgyrjau2", "https://tec.openplanner.team/stops/Cgystjo3"], ["https://tec.openplanner.team/stops/N514aha", "https://tec.openplanner.team/stops/N515asa"], ["https://tec.openplanner.team/stops/Llmbell2", "https://tec.openplanner.team/stops/Lprcite1"], ["https://tec.openplanner.team/stops/Lvecote2", "https://tec.openplanner.team/stops/Lvepire1"], ["https://tec.openplanner.team/stops/LOUchen1", "https://tec.openplanner.team/stops/LOUherm2"], ["https://tec.openplanner.team/stops/Ccyrmon1", "https://tec.openplanner.team/stops/Crbrgar2"], ["https://tec.openplanner.team/stops/X802aca", "https://tec.openplanner.team/stops/X802aea"], ["https://tec.openplanner.team/stops/N207aca", "https://tec.openplanner.team/stops/X206aza"], ["https://tec.openplanner.team/stops/H1el135b", "https://tec.openplanner.team/stops/H1wi148c"], ["https://tec.openplanner.team/stops/X948aha", "https://tec.openplanner.team/stops/X948aua"], ["https://tec.openplanner.team/stops/X754aba", "https://tec.openplanner.team/stops/X754aca"], ["https://tec.openplanner.team/stops/N562aca", "https://tec.openplanner.team/stops/N562acb"], ["https://tec.openplanner.team/stops/Cfvombo2", "https://tec.openplanner.team/stops/Ctilobb1"], ["https://tec.openplanner.team/stops/H4mo134a", "https://tec.openplanner.team/stops/H4mo174a"], ["https://tec.openplanner.team/stops/Bcharce1", "https://tec.openplanner.team/stops/Bhvltol2"], ["https://tec.openplanner.team/stops/Becegar1", "https://tec.openplanner.team/stops/Becepri1"], ["https://tec.openplanner.team/stops/N338aaa", "https://tec.openplanner.team/stops/N338ahb"], ["https://tec.openplanner.team/stops/NL76aca", "https://tec.openplanner.team/stops/NL80aca"], ["https://tec.openplanner.team/stops/X713ada", "https://tec.openplanner.team/stops/X713afb"], ["https://tec.openplanner.team/stops/Bflcpco1", "https://tec.openplanner.team/stops/N517aab"], ["https://tec.openplanner.team/stops/Clbchlo1", "https://tec.openplanner.team/stops/Clbpepi2"], ["https://tec.openplanner.team/stops/N528aaa", "https://tec.openplanner.team/stops/N528afc"], ["https://tec.openplanner.team/stops/N343aka", "https://tec.openplanner.team/stops/N350aea"], ["https://tec.openplanner.team/stops/N116aba", "https://tec.openplanner.team/stops/N151ajf"], ["https://tec.openplanner.team/stops/N331aca", "https://tec.openplanner.team/stops/N331akb"], ["https://tec.openplanner.team/stops/LPLarbo1", "https://tec.openplanner.team/stops/LPLg90-2"], ["https://tec.openplanner.team/stops/LMalarg3", "https://tec.openplanner.team/stops/LMgkrui1"], ["https://tec.openplanner.team/stops/N558ana", "https://tec.openplanner.team/stops/N559acb"], ["https://tec.openplanner.team/stops/X790amb", "https://tec.openplanner.team/stops/X793ada"], ["https://tec.openplanner.team/stops/H5bl123b", "https://tec.openplanner.team/stops/H5bl142a"], ["https://tec.openplanner.team/stops/X802asa", "https://tec.openplanner.team/stops/X802ayb"], ["https://tec.openplanner.team/stops/N539aib", "https://tec.openplanner.team/stops/N539aqb"], ["https://tec.openplanner.team/stops/Cwgmart1", "https://tec.openplanner.team/stops/Cwgrabi2"], ["https://tec.openplanner.team/stops/N501eby", "https://tec.openplanner.team/stops/N501gta"], ["https://tec.openplanner.team/stops/Cnamonn2", "https://tec.openplanner.team/stops/Cnaplha4"], ["https://tec.openplanner.team/stops/LmNha151", "https://tec.openplanner.team/stops/LmNmerl1"], ["https://tec.openplanner.team/stops/H1bd100a", "https://tec.openplanner.team/stops/H1bd102b"], ["https://tec.openplanner.team/stops/X670aga", "https://tec.openplanner.team/stops/X670agb"], ["https://tec.openplanner.team/stops/N139aeb", "https://tec.openplanner.team/stops/N140aaa"], ["https://tec.openplanner.team/stops/H2ma206a", "https://tec.openplanner.team/stops/H2ma263a"], ["https://tec.openplanner.team/stops/N302afa", "https://tec.openplanner.team/stops/N305aba"], ["https://tec.openplanner.team/stops/X836acb", "https://tec.openplanner.team/stops/X836adb"], ["https://tec.openplanner.team/stops/LCReg--1", "https://tec.openplanner.team/stops/LCReg--2"], ["https://tec.openplanner.team/stops/N521aga", "https://tec.openplanner.team/stops/N521aia"], ["https://tec.openplanner.team/stops/LCRfavr2", "https://tec.openplanner.team/stops/LCRgdrt1"], ["https://tec.openplanner.team/stops/Lemhenn1", "https://tec.openplanner.team/stops/Lemhenn2"], ["https://tec.openplanner.team/stops/LTIdonn1", "https://tec.openplanner.team/stops/LTIptme1"], ["https://tec.openplanner.team/stops/Lmlguis1", "https://tec.openplanner.team/stops/Lmlguis2"], ["https://tec.openplanner.team/stops/H1bo107a", "https://tec.openplanner.team/stops/H1bo109a"], ["https://tec.openplanner.team/stops/X793aka", "https://tec.openplanner.team/stops/X793akb"], ["https://tec.openplanner.team/stops/Ltibord1", "https://tec.openplanner.team/stops/Ltithie1"], ["https://tec.openplanner.team/stops/H4be108a", "https://tec.openplanner.team/stops/H4be147a"], ["https://tec.openplanner.team/stops/N501hob", "https://tec.openplanner.team/stops/N501iaa"], ["https://tec.openplanner.team/stops/X901apa", "https://tec.openplanner.team/stops/X901apb"], ["https://tec.openplanner.team/stops/X773acb", "https://tec.openplanner.team/stops/X908acb"], ["https://tec.openplanner.team/stops/X618aaa", "https://tec.openplanner.team/stops/X625acb"], ["https://tec.openplanner.team/stops/X765aab", "https://tec.openplanner.team/stops/X765afa"], ["https://tec.openplanner.team/stops/LHEecmo2", "https://tec.openplanner.team/stops/LHEnaza2"], ["https://tec.openplanner.team/stops/N525ana", "https://tec.openplanner.team/stops/N526acb"], ["https://tec.openplanner.team/stops/N501hsa", "https://tec.openplanner.team/stops/N501hwa"], ["https://tec.openplanner.team/stops/H4bn100b", "https://tec.openplanner.team/stops/H4ws158a"], ["https://tec.openplanner.team/stops/Lhufont2", "https://tec.openplanner.team/stops/Lhutann1"], ["https://tec.openplanner.team/stops/N150aia", "https://tec.openplanner.team/stops/N150aja"], ["https://tec.openplanner.team/stops/H1br127a", "https://tec.openplanner.team/stops/H1vs144a"], ["https://tec.openplanner.team/stops/N512aea", "https://tec.openplanner.team/stops/N512aha"], ["https://tec.openplanner.team/stops/LXobaty2", "https://tec.openplanner.team/stops/LXoroch1"], ["https://tec.openplanner.team/stops/N201ama", "https://tec.openplanner.team/stops/N211ala"], ["https://tec.openplanner.team/stops/LVBmonu2", "https://tec.openplanner.team/stops/LVBvill2"], ["https://tec.openplanner.team/stops/N212acb", "https://tec.openplanner.team/stops/N212afb"], ["https://tec.openplanner.team/stops/N338aia", "https://tec.openplanner.team/stops/N338aib"], ["https://tec.openplanner.team/stops/N244aua", "https://tec.openplanner.team/stops/N244aub"], ["https://tec.openplanner.team/stops/X595afb", "https://tec.openplanner.team/stops/X595agb"], ["https://tec.openplanner.team/stops/Blhueca1", "https://tec.openplanner.team/stops/Blhueca2"], ["https://tec.openplanner.team/stops/N501iha", "https://tec.openplanner.team/stops/N501ija"], ["https://tec.openplanner.team/stops/Cgocapu2", "https://tec.openplanner.team/stops/Cgostro1"], ["https://tec.openplanner.team/stops/X601bbe", "https://tec.openplanner.team/stops/X601cza"], ["https://tec.openplanner.team/stops/X802aqa", "https://tec.openplanner.team/stops/X802ara"], ["https://tec.openplanner.team/stops/Lmicoop1", "https://tec.openplanner.team/stops/Lvtlimi1"], ["https://tec.openplanner.team/stops/N552acb", "https://tec.openplanner.team/stops/N552ada"], ["https://tec.openplanner.team/stops/LATdony1", "https://tec.openplanner.team/stops/LATrori2"], ["https://tec.openplanner.team/stops/N504aba", "https://tec.openplanner.team/stops/N511aga"], ["https://tec.openplanner.team/stops/Beclaub2", "https://tec.openplanner.team/stops/H2me116b"], ["https://tec.openplanner.team/stops/N525aza", "https://tec.openplanner.team/stops/N525azb"], ["https://tec.openplanner.team/stops/Bjdscnd1", "https://tec.openplanner.team/stops/Bjdssta1"], ["https://tec.openplanner.team/stops/LMOchen1", "https://tec.openplanner.team/stops/LMOcorn2"], ["https://tec.openplanner.team/stops/Lflcle-5", "https://tec.openplanner.team/stops/Lflpaeu1"], ["https://tec.openplanner.team/stops/LbTkran1", "https://tec.openplanner.team/stops/LbTkran2"], ["https://tec.openplanner.team/stops/Bcbqa361", "https://tec.openplanner.team/stops/Bcbqa362"], ["https://tec.openplanner.team/stops/Caih1631", "https://tec.openplanner.team/stops/N543cpb"], ["https://tec.openplanner.team/stops/LNEolne1", "https://tec.openplanner.team/stops/LNEvpn-1"], ["https://tec.openplanner.team/stops/LSTgran1", "https://tec.openplanner.team/stops/LSTrema1"], ["https://tec.openplanner.team/stops/Cmltemp1", "https://tec.openplanner.team/stops/Cmlvpla2"], ["https://tec.openplanner.team/stops/LARgare2", "https://tec.openplanner.team/stops/Lchmarc2"], ["https://tec.openplanner.team/stops/LBk79--1", "https://tec.openplanner.team/stops/LMNpt--1"], ["https://tec.openplanner.team/stops/X609amb", "https://tec.openplanner.team/stops/X609ana"], ["https://tec.openplanner.team/stops/X605aaa", "https://tec.openplanner.team/stops/X619amb"], ["https://tec.openplanner.team/stops/LbOre151", "https://tec.openplanner.team/stops/LmOkape1"], ["https://tec.openplanner.team/stops/X608aib", "https://tec.openplanner.team/stops/X608ala"], ["https://tec.openplanner.team/stops/X762aaa", "https://tec.openplanner.team/stops/X762aab"], ["https://tec.openplanner.team/stops/N501hpa", "https://tec.openplanner.team/stops/N501jua"], ["https://tec.openplanner.team/stops/X768aea", "https://tec.openplanner.team/stops/X768ajb"], ["https://tec.openplanner.team/stops/N244aca", "https://tec.openplanner.team/stops/N244ajb"], ["https://tec.openplanner.team/stops/N242adc", "https://tec.openplanner.team/stops/N242agb"], ["https://tec.openplanner.team/stops/Bwavlav2", "https://tec.openplanner.team/stops/Bwavnep2"], ["https://tec.openplanner.team/stops/H4ty350b", "https://tec.openplanner.team/stops/H4ty358a"], ["https://tec.openplanner.team/stops/LSPmart2", "https://tec.openplanner.team/stops/LSPmart4"], ["https://tec.openplanner.team/stops/X996abb", "https://tec.openplanner.team/stops/X996aca"], ["https://tec.openplanner.team/stops/H1qu112a", "https://tec.openplanner.team/stops/H1qu112b"], ["https://tec.openplanner.team/stops/Bgnvtil2", "https://tec.openplanner.team/stops/Bgnvval2"], ["https://tec.openplanner.team/stops/X898ama", "https://tec.openplanner.team/stops/X899acb"], ["https://tec.openplanner.team/stops/LOucarr2", "https://tec.openplanner.team/stops/LOucarr3"], ["https://tec.openplanner.team/stops/H4mo165a", "https://tec.openplanner.team/stops/H4mo179a"], ["https://tec.openplanner.team/stops/Lagmair2", "https://tec.openplanner.team/stops/Lagtenn1"], ["https://tec.openplanner.team/stops/N232bia", "https://tec.openplanner.team/stops/N261adb"], ["https://tec.openplanner.team/stops/Lbeloui2", "https://tec.openplanner.team/stops/Ljuvieu2"], ["https://tec.openplanner.team/stops/N218acc", "https://tec.openplanner.team/stops/X301ara"], ["https://tec.openplanner.team/stops/H4ry129b", "https://tec.openplanner.team/stops/H4ry132a"], ["https://tec.openplanner.team/stops/H4hg155a", "https://tec.openplanner.team/stops/H4hg157a"], ["https://tec.openplanner.team/stops/LOurena1", "https://tec.openplanner.team/stops/X982adb"], ["https://tec.openplanner.team/stops/LROrtba1", "https://tec.openplanner.team/stops/LSorobe2"], ["https://tec.openplanner.team/stops/LXoharz6", "https://tec.openplanner.team/stops/X599aga"], ["https://tec.openplanner.team/stops/LBiberg2", "https://tec.openplanner.team/stops/LDOandr4"], ["https://tec.openplanner.team/stops/X343aha", "https://tec.openplanner.team/stops/X343ama"], ["https://tec.openplanner.team/stops/Blmlmco1", "https://tec.openplanner.team/stops/Blmlpla2"], ["https://tec.openplanner.team/stops/LHTmala4", "https://tec.openplanner.team/stops/LLxeclu1"], ["https://tec.openplanner.team/stops/H4ty272b", "https://tec.openplanner.team/stops/H4ty338b"], ["https://tec.openplanner.team/stops/Cbuegl2", "https://tec.openplanner.team/stops/Cbufron1"], ["https://tec.openplanner.team/stops/N368aaa", "https://tec.openplanner.team/stops/N368aba"], ["https://tec.openplanner.team/stops/H4ty325b", "https://tec.openplanner.team/stops/H4ty340b"], ["https://tec.openplanner.team/stops/H1fl135a", "https://tec.openplanner.team/stops/H1fl370a"], ["https://tec.openplanner.team/stops/LSPmart1", "https://tec.openplanner.team/stops/LSPmart4"], ["https://tec.openplanner.team/stops/H4mo142d", "https://tec.openplanner.team/stops/H4mo172a"], ["https://tec.openplanner.team/stops/LAYambl1", "https://tec.openplanner.team/stops/LAYcorn1"], ["https://tec.openplanner.team/stops/LcRmich2", "https://tec.openplanner.team/stops/LnUhohe1"], ["https://tec.openplanner.team/stops/H4ag102b", "https://tec.openplanner.team/stops/H4cl112b"], ["https://tec.openplanner.team/stops/Cmlange2", "https://tec.openplanner.team/stops/NC01afa"], ["https://tec.openplanner.team/stops/H1sg142a", "https://tec.openplanner.team/stops/H1sg148b"], ["https://tec.openplanner.team/stops/Bhevjac1", "https://tec.openplanner.team/stops/Bhevjac2"], ["https://tec.openplanner.team/stops/N120acb", "https://tec.openplanner.team/stops/N120adc"], ["https://tec.openplanner.team/stops/X512aaa", "https://tec.openplanner.team/stops/X512aba"], ["https://tec.openplanner.team/stops/H1hv130a", "https://tec.openplanner.team/stops/H1hv131a"], ["https://tec.openplanner.team/stops/Lflhott2", "https://tec.openplanner.team/stops/Lflmaxi4"], ["https://tec.openplanner.team/stops/X542aia", "https://tec.openplanner.team/stops/X777acb"], ["https://tec.openplanner.team/stops/H1gh157b", "https://tec.openplanner.team/stops/H1gh165a"], ["https://tec.openplanner.team/stops/LGOhevr2", "https://tec.openplanner.team/stops/LGOmous2"], ["https://tec.openplanner.team/stops/LAmsart2", "https://tec.openplanner.team/stops/LVLgotr3"], ["https://tec.openplanner.team/stops/N426adb", "https://tec.openplanner.team/stops/N426aeb"], ["https://tec.openplanner.team/stops/Ccacoup1", "https://tec.openplanner.team/stops/Ccacoup2"], ["https://tec.openplanner.team/stops/N507apb", "https://tec.openplanner.team/stops/N507aqa"], ["https://tec.openplanner.team/stops/N501bfa", "https://tec.openplanner.team/stops/N501bfz"], ["https://tec.openplanner.team/stops/N120abd", "https://tec.openplanner.team/stops/N301ajb"], ["https://tec.openplanner.team/stops/LbO52--2", "https://tec.openplanner.team/stops/LdEschw2"], ["https://tec.openplanner.team/stops/Bbstpan2", "https://tec.openplanner.team/stops/Cbtstac2"], ["https://tec.openplanner.team/stops/Ccybouc1", "https://tec.openplanner.team/stops/NH01aea"], ["https://tec.openplanner.team/stops/LkEbruc1", "https://tec.openplanner.team/stops/LkEhaag1"], ["https://tec.openplanner.team/stops/N301aab", "https://tec.openplanner.team/stops/N301aib"], ["https://tec.openplanner.team/stops/X899ahb", "https://tec.openplanner.team/stops/X899aib"], ["https://tec.openplanner.team/stops/H4eg106a", "https://tec.openplanner.team/stops/H4eg107a"], ["https://tec.openplanner.team/stops/Lbhfaye1", "https://tec.openplanner.team/stops/Lbhsion2"], ["https://tec.openplanner.team/stops/H4vz367a", "https://tec.openplanner.team/stops/H4vz371b"], ["https://tec.openplanner.team/stops/N145aia", "https://tec.openplanner.team/stops/N149aka"], ["https://tec.openplanner.team/stops/X615arb", "https://tec.openplanner.team/stops/X687aja"], ["https://tec.openplanner.team/stops/X636aba", "https://tec.openplanner.team/stops/X636abb"], ["https://tec.openplanner.team/stops/N211bca", "https://tec.openplanner.team/stops/N211bcb"], ["https://tec.openplanner.team/stops/H1hc152a", "https://tec.openplanner.team/stops/H1hc152b"], ["https://tec.openplanner.team/stops/Llxec--1", "https://tec.openplanner.team/stops/Llxeg--1"], ["https://tec.openplanner.team/stops/N519aad", "https://tec.openplanner.team/stops/N519aja"], ["https://tec.openplanner.team/stops/Bnilcab2", "https://tec.openplanner.team/stops/Bnilpor3"], ["https://tec.openplanner.team/stops/LESmc--1", "https://tec.openplanner.team/stops/LESpont2"], ["https://tec.openplanner.team/stops/X659acb", "https://tec.openplanner.team/stops/X659ada"], ["https://tec.openplanner.team/stops/N313aec", "https://tec.openplanner.team/stops/N365acb"], ["https://tec.openplanner.team/stops/H1si152c", "https://tec.openplanner.team/stops/H1si154a"], ["https://tec.openplanner.team/stops/H5wo123b", "https://tec.openplanner.team/stops/H5wo134a"], ["https://tec.openplanner.team/stops/Lalverr1", "https://tec.openplanner.team/stops/Llabrou2"], ["https://tec.openplanner.team/stops/X669aga", "https://tec.openplanner.team/stops/X672aec"], ["https://tec.openplanner.team/stops/Cmtfabi1", "https://tec.openplanner.team/stops/Cmtplac3"], ["https://tec.openplanner.team/stops/LwAlont1", "https://tec.openplanner.team/stops/LwAschu1"], ["https://tec.openplanner.team/stops/Bovetdo1", "https://tec.openplanner.team/stops/Bovetdo2"], ["https://tec.openplanner.team/stops/N501ada", "https://tec.openplanner.team/stops/N501agb"], ["https://tec.openplanner.team/stops/Bolphgr2", "https://tec.openplanner.team/stops/Bolppsn2"], ["https://tec.openplanner.team/stops/H1me115b", "https://tec.openplanner.team/stops/H1so141b"], ["https://tec.openplanner.team/stops/LeUbahn2", "https://tec.openplanner.team/stops/LeUbush1"], ["https://tec.openplanner.team/stops/LWEeg--1", "https://tec.openplanner.team/stops/LWEeg--2"], ["https://tec.openplanner.team/stops/H4pq118a", "https://tec.openplanner.team/stops/H4pq118b"], ["https://tec.openplanner.team/stops/Lstamph2", "https://tec.openplanner.team/stops/Lstauna1"], ["https://tec.openplanner.team/stops/Lceegth1", "https://tec.openplanner.team/stops/Lcepepi2"], ["https://tec.openplanner.team/stops/Lgrfrai1", "https://tec.openplanner.team/stops/Lgrfrhe2"], ["https://tec.openplanner.team/stops/Cptplac2", "https://tec.openplanner.team/stops/Cptplac5"], ["https://tec.openplanner.team/stops/LLrdrev1", "https://tec.openplanner.team/stops/LLrhaut1"], ["https://tec.openplanner.team/stops/Lsebuil2", "https://tec.openplanner.team/stops/Lsecime2"], ["https://tec.openplanner.team/stops/X879aia", "https://tec.openplanner.team/stops/X879akb"], ["https://tec.openplanner.team/stops/N242aea", "https://tec.openplanner.team/stops/N242aeb"], ["https://tec.openplanner.team/stops/LTRferm2", "https://tec.openplanner.team/stops/LTRthie2"], ["https://tec.openplanner.team/stops/H1on128a", "https://tec.openplanner.team/stops/H1on128c"], ["https://tec.openplanner.team/stops/N308aba", "https://tec.openplanner.team/stops/N337afb"], ["https://tec.openplanner.team/stops/X725ama", "https://tec.openplanner.team/stops/X725aqa"], ["https://tec.openplanner.team/stops/LWEeg--2", "https://tec.openplanner.team/stops/LWEpl--2"], ["https://tec.openplanner.team/stops/LoUpete1", "https://tec.openplanner.team/stops/LoUzent1"], ["https://tec.openplanner.team/stops/LHehacc2", "https://tec.openplanner.team/stops/LHexhav1"], ["https://tec.openplanner.team/stops/H1do126b", "https://tec.openplanner.team/stops/H1ho132a"], ["https://tec.openplanner.team/stops/H1ms294a", "https://tec.openplanner.team/stops/H1ms908a"], ["https://tec.openplanner.team/stops/X740ada", "https://tec.openplanner.team/stops/X740adb"], ["https://tec.openplanner.team/stops/X614ajb", "https://tec.openplanner.team/stops/X614ala"], ["https://tec.openplanner.team/stops/X658aaa", "https://tec.openplanner.team/stops/X658aab"], ["https://tec.openplanner.team/stops/Cmerlme1", "https://tec.openplanner.team/stops/Cmerlme2"], ["https://tec.openplanner.team/stops/X802adb", "https://tec.openplanner.team/stops/X802apa"], ["https://tec.openplanner.team/stops/X723afa", "https://tec.openplanner.team/stops/X723afb"], ["https://tec.openplanner.team/stops/LBHgile2", "https://tec.openplanner.team/stops/LGObeth1"], ["https://tec.openplanner.team/stops/LHUdeni1", "https://tec.openplanner.team/stops/LHUloui1"], ["https://tec.openplanner.team/stops/Ljeblum2", "https://tec.openplanner.team/stops/LjedTEC2"], ["https://tec.openplanner.team/stops/N209aba", "https://tec.openplanner.team/stops/N209acb"], ["https://tec.openplanner.team/stops/H4ne132a", "https://tec.openplanner.team/stops/H4ne139a"], ["https://tec.openplanner.team/stops/Bgrhche2", "https://tec.openplanner.team/stops/N519agb"], ["https://tec.openplanner.team/stops/H1sy140a", "https://tec.openplanner.team/stops/H1to155b"], ["https://tec.openplanner.team/stops/N201ada", "https://tec.openplanner.team/stops/N201afb"], ["https://tec.openplanner.team/stops/N390abb", "https://tec.openplanner.team/stops/N390afb"], ["https://tec.openplanner.team/stops/Cldvign1", "https://tec.openplanner.team/stops/Cldvign2"], ["https://tec.openplanner.team/stops/X793afa", "https://tec.openplanner.team/stops/X793afb"], ["https://tec.openplanner.team/stops/X349aaa", "https://tec.openplanner.team/stops/X349aab"], ["https://tec.openplanner.team/stops/X947aca", "https://tec.openplanner.team/stops/X947acb"], ["https://tec.openplanner.team/stops/Loualbe2", "https://tec.openplanner.team/stops/Loudemo2"], ["https://tec.openplanner.team/stops/H4be102a", "https://tec.openplanner.team/stops/H4be104d"], ["https://tec.openplanner.team/stops/Bwavrij2", "https://tec.openplanner.team/stops/Bwavzno2"], ["https://tec.openplanner.team/stops/LORgr8-1", "https://tec.openplanner.team/stops/LORthie1"], ["https://tec.openplanner.team/stops/Llggerm2", "https://tec.openplanner.team/stops/Lvtchpl4"], ["https://tec.openplanner.team/stops/LESmart1", "https://tec.openplanner.team/stops/LESryon1"], ["https://tec.openplanner.team/stops/H1wa156a", "https://tec.openplanner.team/stops/H1wa156b"], ["https://tec.openplanner.team/stops/Cnadepo1", "https://tec.openplanner.team/stops/Cnahahe2"], ["https://tec.openplanner.team/stops/N542aab", "https://tec.openplanner.team/stops/N542aac"], ["https://tec.openplanner.team/stops/H4eg108a", "https://tec.openplanner.team/stops/H4ev119a"], ["https://tec.openplanner.team/stops/H1ro133a", "https://tec.openplanner.team/stops/H4mg139b"], ["https://tec.openplanner.team/stops/N528apa", "https://tec.openplanner.team/stops/N528apb"], ["https://tec.openplanner.team/stops/N547aab", "https://tec.openplanner.team/stops/N547alb"], ["https://tec.openplanner.team/stops/LSPgare*", "https://tec.openplanner.team/stops/LSPvigi2"], ["https://tec.openplanner.team/stops/H4ty268b", "https://tec.openplanner.team/stops/H4ty348a"], ["https://tec.openplanner.team/stops/Cgofbru1", "https://tec.openplanner.team/stops/Cgofbru2"], ["https://tec.openplanner.team/stops/H1ob335b", "https://tec.openplanner.team/stops/H1ob335c"], ["https://tec.openplanner.team/stops/N167aea", "https://tec.openplanner.team/stops/N167aha"], ["https://tec.openplanner.team/stops/Lchsaro2", "https://tec.openplanner.team/stops/Lchsart1"], ["https://tec.openplanner.team/stops/H4ho119a", "https://tec.openplanner.team/stops/H4pl111b"], ["https://tec.openplanner.team/stops/Ladpara1", "https://tec.openplanner.team/stops/Ladpire1"], ["https://tec.openplanner.team/stops/N501eea", "https://tec.openplanner.team/stops/N501kfb"], ["https://tec.openplanner.team/stops/LAx41--2", "https://tec.openplanner.team/stops/LAxchpl2"], ["https://tec.openplanner.team/stops/H1so142c", "https://tec.openplanner.team/stops/H1so142d"], ["https://tec.openplanner.team/stops/X773abb", "https://tec.openplanner.team/stops/X911abb"], ["https://tec.openplanner.team/stops/LMRmont1", "https://tec.openplanner.team/stops/LMTfagn1"], ["https://tec.openplanner.team/stops/H1pa112a", "https://tec.openplanner.team/stops/H1pa166a"], ["https://tec.openplanner.team/stops/N232aea", "https://tec.openplanner.team/stops/N261abb"], ["https://tec.openplanner.team/stops/H5st162a", "https://tec.openplanner.team/stops/H5st167a"], ["https://tec.openplanner.team/stops/Cptrebe2", "https://tec.openplanner.team/stops/Cptsncb1"], ["https://tec.openplanner.team/stops/Canjonc2", "https://tec.openplanner.team/stops/Canrtth1"], ["https://tec.openplanner.team/stops/LSssurl2", "https://tec.openplanner.team/stops/N506bca"], ["https://tec.openplanner.team/stops/H2hp261a", "https://tec.openplanner.team/stops/H2lh126b"], ["https://tec.openplanner.team/stops/LAVpequ1", "https://tec.openplanner.team/stops/LLRrape4"], ["https://tec.openplanner.team/stops/NL76acb", "https://tec.openplanner.team/stops/NL76adb"], ["https://tec.openplanner.team/stops/Bbealbu3", "https://tec.openplanner.team/stops/Bbearwa1"], ["https://tec.openplanner.team/stops/LGEbern2", "https://tec.openplanner.team/stops/LGEcent2"], ["https://tec.openplanner.team/stops/N101abb", "https://tec.openplanner.team/stops/N101aca"], ["https://tec.openplanner.team/stops/X721aea", "https://tec.openplanner.team/stops/X723amb"], ["https://tec.openplanner.team/stops/X870aga", "https://tec.openplanner.team/stops/X870agb"], ["https://tec.openplanner.team/stops/X942aaa", "https://tec.openplanner.team/stops/X942abd"], ["https://tec.openplanner.team/stops/X641aib", "https://tec.openplanner.team/stops/X642aac"], ["https://tec.openplanner.team/stops/Clvimtr3", "https://tec.openplanner.team/stops/NC02aab"], ["https://tec.openplanner.team/stops/X736aba", "https://tec.openplanner.team/stops/X736abb"], ["https://tec.openplanner.team/stops/N501hhb", "https://tec.openplanner.team/stops/N501msb"], ["https://tec.openplanner.team/stops/X610aha", "https://tec.openplanner.team/stops/X610aia"], ["https://tec.openplanner.team/stops/H4lp120a", "https://tec.openplanner.team/stops/H4lp123a"], ["https://tec.openplanner.team/stops/X738ada", "https://tec.openplanner.team/stops/X771aib"], ["https://tec.openplanner.team/stops/Bolphgr1", "https://tec.openplanner.team/stops/Bolppsn2"], ["https://tec.openplanner.team/stops/H4gz115b", "https://tec.openplanner.team/stops/H4th139a"], ["https://tec.openplanner.team/stops/N542adb", "https://tec.openplanner.team/stops/N578abb"], ["https://tec.openplanner.team/stops/H4bx167a", "https://tec.openplanner.team/stops/H4ho119a"], ["https://tec.openplanner.team/stops/LHdkenn2", "https://tec.openplanner.team/stops/LHdvill2"], ["https://tec.openplanner.team/stops/X917agb", "https://tec.openplanner.team/stops/X917aia"], ["https://tec.openplanner.team/stops/Lanadmi1", "https://tec.openplanner.team/stops/Lanstat1"], ["https://tec.openplanner.team/stops/H1ms266b", "https://tec.openplanner.team/stops/H1ms288b"], ["https://tec.openplanner.team/stops/Cmtchet1", "https://tec.openplanner.team/stops/Cmtdepo2"], ["https://tec.openplanner.team/stops/X345aca", "https://tec.openplanner.team/stops/X346abb"], ["https://tec.openplanner.team/stops/X996aha", "https://tec.openplanner.team/stops/X996ahb"], ["https://tec.openplanner.team/stops/H4ty286a", "https://tec.openplanner.team/stops/H4ty312a"], ["https://tec.openplanner.team/stops/LNCsera2", "https://tec.openplanner.team/stops/LNCspor1"], ["https://tec.openplanner.team/stops/N534blh", "https://tec.openplanner.team/stops/N534bua"], ["https://tec.openplanner.team/stops/N201aia", "https://tec.openplanner.team/stops/N201aka"], ["https://tec.openplanner.team/stops/Llgcrah1", "https://tec.openplanner.team/stops/Llgcrah2"], ["https://tec.openplanner.team/stops/X750axa", "https://tec.openplanner.team/stops/X750blb"], ["https://tec.openplanner.team/stops/X999apa", "https://tec.openplanner.team/stops/X999asa"], ["https://tec.openplanner.team/stops/H4pq113a", "https://tec.openplanner.team/stops/H4pq113b"], ["https://tec.openplanner.team/stops/LFAwale2", "https://tec.openplanner.team/stops/LLTther2"], ["https://tec.openplanner.team/stops/LAWdefr2", "https://tec.openplanner.team/stops/LAWhein3"], ["https://tec.openplanner.team/stops/N508abb", "https://tec.openplanner.team/stops/N516aab"], ["https://tec.openplanner.team/stops/LHCkoul1", "https://tec.openplanner.team/stops/LHCruyf2"], ["https://tec.openplanner.team/stops/H2lh128a", "https://tec.openplanner.team/stops/H2mo129b"], ["https://tec.openplanner.team/stops/LDLbeau1", "https://tec.openplanner.team/stops/LDLgran2"], ["https://tec.openplanner.team/stops/Ccostan1", "https://tec.openplanner.team/stops/Ccostan2"], ["https://tec.openplanner.team/stops/X725ara", "https://tec.openplanner.team/stops/X725arb"], ["https://tec.openplanner.team/stops/Clrcite2", "https://tec.openplanner.team/stops/Clrecol1"], ["https://tec.openplanner.team/stops/Cgobruy2", "https://tec.openplanner.team/stops/Cgochfe1"], ["https://tec.openplanner.team/stops/LBEcroi1", "https://tec.openplanner.team/stops/LBEtrix2"], ["https://tec.openplanner.team/stops/Bmrl4ch1", "https://tec.openplanner.team/stops/Bolgcsa1"], ["https://tec.openplanner.team/stops/LLR4bra1", "https://tec.openplanner.team/stops/LLRptma1"], ["https://tec.openplanner.team/stops/H4og214a", "https://tec.openplanner.team/stops/H4to135a"], ["https://tec.openplanner.team/stops/Lbhmc--1", "https://tec.openplanner.team/stops/Lvcchev1"], ["https://tec.openplanner.team/stops/LeYmuhl1", "https://tec.openplanner.team/stops/LeYraaf2"], ["https://tec.openplanner.team/stops/X637acb", "https://tec.openplanner.team/stops/X637adb"], ["https://tec.openplanner.team/stops/Btgrpla1", "https://tec.openplanner.team/stops/N561aea"], ["https://tec.openplanner.team/stops/Bhaldbo1", "https://tec.openplanner.team/stops/Blemhon2"], ["https://tec.openplanner.team/stops/Barqhro4", "https://tec.openplanner.team/stops/Barqpla2"], ["https://tec.openplanner.team/stops/LLNcime2", "https://tec.openplanner.team/stops/LLNcruc1"], ["https://tec.openplanner.team/stops/NL67ada", "https://tec.openplanner.team/stops/NL67adb"], ["https://tec.openplanner.team/stops/X624aea", "https://tec.openplanner.team/stops/X624akb"], ["https://tec.openplanner.team/stops/H4co141a", "https://tec.openplanner.team/stops/H4co142a"], ["https://tec.openplanner.team/stops/N201aha", "https://tec.openplanner.team/stops/N201ata"], ["https://tec.openplanner.team/stops/Bbcoeco2", "https://tec.openplanner.team/stops/Bbcoser2"], ["https://tec.openplanner.team/stops/Bbstbxl2", "https://tec.openplanner.team/stops/Cbtlong1"], ["https://tec.openplanner.team/stops/N562amb", "https://tec.openplanner.team/stops/N562bqa"], ["https://tec.openplanner.team/stops/N132afa", "https://tec.openplanner.team/stops/N132agb"], ["https://tec.openplanner.team/stops/Laggare2", "https://tec.openplanner.team/stops/Lagjado5"], ["https://tec.openplanner.team/stops/Ccipech1", "https://tec.openplanner.team/stops/Cmtstan2"], ["https://tec.openplanner.team/stops/Ccucroi2", "https://tec.openplanner.team/stops/Ccufos72"], ["https://tec.openplanner.team/stops/X641apb", "https://tec.openplanner.team/stops/X641aqa"], ["https://tec.openplanner.team/stops/N542ahb", "https://tec.openplanner.team/stops/N542aib"], ["https://tec.openplanner.team/stops/N988aba", "https://tec.openplanner.team/stops/N988acb"], ["https://tec.openplanner.team/stops/N540agb", "https://tec.openplanner.team/stops/N540aha"], ["https://tec.openplanner.team/stops/H1ch102a", "https://tec.openplanner.team/stops/H5ma181a"], ["https://tec.openplanner.team/stops/Cchmamb2", "https://tec.openplanner.team/stops/Cchmonu4"], ["https://tec.openplanner.team/stops/Ccubric2", "https://tec.openplanner.team/stops/Ccucorb1"], ["https://tec.openplanner.team/stops/Bpersyn2", "https://tec.openplanner.team/stops/Btlbmel1"], ["https://tec.openplanner.team/stops/Cmlange1", "https://tec.openplanner.team/stops/Cmtrneu2"], ["https://tec.openplanner.team/stops/X739aab", "https://tec.openplanner.team/stops/X739ada"], ["https://tec.openplanner.team/stops/Cjxetri1", "https://tec.openplanner.team/stops/Cmmschw1"], ["https://tec.openplanner.team/stops/Cchwate3", "https://tec.openplanner.team/stops/Cchwate4"], ["https://tec.openplanner.team/stops/H1bu143b", "https://tec.openplanner.team/stops/H2le150b"], ["https://tec.openplanner.team/stops/LPbover2", "https://tec.openplanner.team/stops/LVkchap2"], ["https://tec.openplanner.team/stops/N122afb", "https://tec.openplanner.team/stops/N302aeb"], ["https://tec.openplanner.team/stops/H1hn202b", "https://tec.openplanner.team/stops/H1ms312a"], ["https://tec.openplanner.team/stops/Bwatceg1", "https://tec.openplanner.team/stops/Bwatceg2"], ["https://tec.openplanner.team/stops/LMAcomm1", "https://tec.openplanner.team/stops/LMAroch4"], ["https://tec.openplanner.team/stops/Llgfont4", "https://tec.openplanner.team/stops/Llghull2"], ["https://tec.openplanner.team/stops/X901aib", "https://tec.openplanner.team/stops/X901bga"], ["https://tec.openplanner.team/stops/LLmvict1", "https://tec.openplanner.team/stops/LLmvict2"], ["https://tec.openplanner.team/stops/X646ada", "https://tec.openplanner.team/stops/X823afd"], ["https://tec.openplanner.team/stops/Bhoeboo1", "https://tec.openplanner.team/stops/Blhupqu1"], ["https://tec.openplanner.team/stops/Cflsncb1", "https://tec.openplanner.team/stops/Cflsncb2"], ["https://tec.openplanner.team/stops/N158aba", "https://tec.openplanner.team/stops/N167aea"], ["https://tec.openplanner.team/stops/Bperqui2", "https://tec.openplanner.team/stops/N519aba"], ["https://tec.openplanner.team/stops/Blmlcle2", "https://tec.openplanner.team/stops/Blmlqlo2"], ["https://tec.openplanner.team/stops/LlZbell1", "https://tec.openplanner.team/stops/LmNha221"], ["https://tec.openplanner.team/stops/Bcrncen1", "https://tec.openplanner.team/stops/Bcrnpla2"], ["https://tec.openplanner.team/stops/H1lm105a", "https://tec.openplanner.team/stops/H1sy145a"], ["https://tec.openplanner.team/stops/H3so157a", "https://tec.openplanner.team/stops/H3so159a"], ["https://tec.openplanner.team/stops/LLmcheg3", "https://tec.openplanner.team/stops/LLmeg--2"], ["https://tec.openplanner.team/stops/H4ir161a", "https://tec.openplanner.team/stops/H4og209a"], ["https://tec.openplanner.team/stops/N521aea", "https://tec.openplanner.team/stops/N521afb"], ["https://tec.openplanner.team/stops/Bbxltou1", "https://tec.openplanner.team/stops/H4mn100a"], ["https://tec.openplanner.team/stops/LGecime1", "https://tec.openplanner.team/stops/LGecite1"], ["https://tec.openplanner.team/stops/LSJ38--1", "https://tec.openplanner.team/stops/LWRtroi2"], ["https://tec.openplanner.team/stops/H1cv100a", "https://tec.openplanner.team/stops/H1cv104b"], ["https://tec.openplanner.team/stops/LhM07--2", "https://tec.openplanner.team/stops/LhMwing2"], ["https://tec.openplanner.team/stops/X641ava", "https://tec.openplanner.team/stops/X641awb"], ["https://tec.openplanner.team/stops/X892acb", "https://tec.openplanner.team/stops/X892adb"], ["https://tec.openplanner.team/stops/Bdlmegl1", "https://tec.openplanner.team/stops/Bdvmtve2"], ["https://tec.openplanner.team/stops/LSkcomb2", "https://tec.openplanner.team/stops/LSkdouf1"], ["https://tec.openplanner.team/stops/Llmbouv1", "https://tec.openplanner.team/stops/LWexhav1"], ["https://tec.openplanner.team/stops/X359abb", "https://tec.openplanner.team/stops/X371aca"], ["https://tec.openplanner.team/stops/N205ada", "https://tec.openplanner.team/stops/N219adb"], ["https://tec.openplanner.team/stops/H1ht122b", "https://tec.openplanner.team/stops/H1ht129a"], ["https://tec.openplanner.team/stops/N501fpa", "https://tec.openplanner.team/stops/N501ltb"], ["https://tec.openplanner.team/stops/LBVclig1", "https://tec.openplanner.team/stops/LMAroch4"], ["https://tec.openplanner.team/stops/Bgntcoo1", "https://tec.openplanner.team/stops/Bgnteco1"], ["https://tec.openplanner.team/stops/X822ana", "https://tec.openplanner.team/stops/X822aqb"], ["https://tec.openplanner.team/stops/N532aca", "https://tec.openplanner.team/stops/N533aqc"], ["https://tec.openplanner.team/stops/Cmopn1", "https://tec.openplanner.team/stops/Cmoruau1"], ["https://tec.openplanner.team/stops/N167aba", "https://tec.openplanner.team/stops/N167aga"], ["https://tec.openplanner.team/stops/N117aga", "https://tec.openplanner.team/stops/N117agb"], ["https://tec.openplanner.team/stops/N513abb", "https://tec.openplanner.team/stops/N513acb"], ["https://tec.openplanner.team/stops/X608aka", "https://tec.openplanner.team/stops/X608ama"], ["https://tec.openplanner.team/stops/N584aob", "https://tec.openplanner.team/stops/N584apa"], ["https://tec.openplanner.team/stops/Cmamons1", "https://tec.openplanner.team/stops/Cmamons2"], ["https://tec.openplanner.team/stops/X638ala", "https://tec.openplanner.team/stops/X639acd"], ["https://tec.openplanner.team/stops/Cgxdeba1", "https://tec.openplanner.team/stops/Cgxwaut2"], ["https://tec.openplanner.team/stops/LBlplac1", "https://tec.openplanner.team/stops/LCn4---2"], ["https://tec.openplanner.team/stops/LCvoufn1", "https://tec.openplanner.team/stops/LWblesp1"], ["https://tec.openplanner.team/stops/N242ada", "https://tec.openplanner.team/stops/N242adc"], ["https://tec.openplanner.team/stops/X989aea", "https://tec.openplanner.team/stops/X989afa"], ["https://tec.openplanner.team/stops/H4rc231c", "https://tec.openplanner.team/stops/H4rc232b"], ["https://tec.openplanner.team/stops/LMaslav3", "https://tec.openplanner.team/stops/LMaslav4"], ["https://tec.openplanner.team/stops/Btubga04", "https://tec.openplanner.team/stops/Btubind1"], ["https://tec.openplanner.team/stops/LSU50--2", "https://tec.openplanner.team/stops/LSUvill1"], ["https://tec.openplanner.team/stops/Llgdepo6", "https://tec.openplanner.team/stops/Llghong1"], ["https://tec.openplanner.team/stops/N160aca", "https://tec.openplanner.team/stops/N160acb"], ["https://tec.openplanner.team/stops/X911abb", "https://tec.openplanner.team/stops/X911aca"], ["https://tec.openplanner.team/stops/LJedonc1", "https://tec.openplanner.team/stops/LJelava1"], ["https://tec.openplanner.team/stops/X802aba", "https://tec.openplanner.team/stops/X802acb"], ["https://tec.openplanner.team/stops/LXofans1", "https://tec.openplanner.team/stops/LXomc--4"], ["https://tec.openplanner.team/stops/H4bo114b", "https://tec.openplanner.team/stops/H4bo121b"], ["https://tec.openplanner.team/stops/H4wi162a", "https://tec.openplanner.team/stops/H4wi163b"], ["https://tec.openplanner.team/stops/LJAmari2", "https://tec.openplanner.team/stops/LMemora1"], ["https://tec.openplanner.team/stops/LAOpres1", "https://tec.openplanner.team/stops/LLSbajo1"], ["https://tec.openplanner.team/stops/Cmcgoch2", "https://tec.openplanner.team/stops/Cmgslo1"], ["https://tec.openplanner.team/stops/N214afb", "https://tec.openplanner.team/stops/N225aca"], ["https://tec.openplanner.team/stops/Ljupiet2", "https://tec.openplanner.team/stops/Ljuvieu1"], ["https://tec.openplanner.team/stops/Bhalcbr2", "https://tec.openplanner.team/stops/Bhaltre1"], ["https://tec.openplanner.team/stops/LBkwind2", "https://tec.openplanner.team/stops/LMNpann2"], ["https://tec.openplanner.team/stops/LTRcite1", "https://tec.openplanner.team/stops/LTRthie1"], ["https://tec.openplanner.team/stops/X624aca", "https://tec.openplanner.team/stops/X624ada"], ["https://tec.openplanner.team/stops/X602arb", "https://tec.openplanner.team/stops/X633aaa"], ["https://tec.openplanner.team/stops/X782aib", "https://tec.openplanner.team/stops/X782aja"], ["https://tec.openplanner.team/stops/Cbiferm1", "https://tec.openplanner.team/stops/Cbiferm2"], ["https://tec.openplanner.team/stops/Cgzcver1", "https://tec.openplanner.team/stops/Cgzlera2"], ["https://tec.openplanner.team/stops/Cvp3til1", "https://tec.openplanner.team/stops/Cvpplan2"], ["https://tec.openplanner.team/stops/N236aeb", "https://tec.openplanner.team/stops/N236afb"], ["https://tec.openplanner.team/stops/Bsdabja2", "https://tec.openplanner.team/stops/Csdnive2"], ["https://tec.openplanner.team/stops/X717ada", "https://tec.openplanner.team/stops/X783aab"], ["https://tec.openplanner.team/stops/LaAburt2", "https://tec.openplanner.team/stops/LaAhaup2"], ["https://tec.openplanner.team/stops/X836aab", "https://tec.openplanner.team/stops/X837aha"], ["https://tec.openplanner.team/stops/X925amb", "https://tec.openplanner.team/stops/X925aoa"], ["https://tec.openplanner.team/stops/LPLg90-1", "https://tec.openplanner.team/stops/LPLline1"], ["https://tec.openplanner.team/stops/X804bma", "https://tec.openplanner.team/stops/X804boa"], ["https://tec.openplanner.team/stops/Lhrherm1", "https://tec.openplanner.team/stops/Lhrherm2"], ["https://tec.openplanner.team/stops/X542aca", "https://tec.openplanner.team/stops/X542aib"], ["https://tec.openplanner.team/stops/Bvirgar1", "https://tec.openplanner.team/stops/Bvirvol2"], ["https://tec.openplanner.team/stops/X993ada", "https://tec.openplanner.team/stops/X993aga"], ["https://tec.openplanner.team/stops/LHApthe2", "https://tec.openplanner.team/stops/LHTmoul2"], ["https://tec.openplanner.team/stops/Cfomays1", "https://tec.openplanner.team/stops/Cgxmaco1"], ["https://tec.openplanner.team/stops/LBLplac2", "https://tec.openplanner.team/stops/LBLvici3"], ["https://tec.openplanner.team/stops/X354aab", "https://tec.openplanner.team/stops/X354aba"], ["https://tec.openplanner.team/stops/N501dja", "https://tec.openplanner.team/stops/N501jsb"], ["https://tec.openplanner.team/stops/Balswin3", "https://tec.openplanner.team/stops/Brsg7fo2"], ["https://tec.openplanner.team/stops/X879aqa", "https://tec.openplanner.team/stops/X898aab"], ["https://tec.openplanner.team/stops/N509ata", "https://tec.openplanner.team/stops/N511ama"], ["https://tec.openplanner.team/stops/H1ch141b", "https://tec.openplanner.team/stops/H1ch143b"], ["https://tec.openplanner.team/stops/Lflmc--1", "https://tec.openplanner.team/stops/Lflterm2"], ["https://tec.openplanner.team/stops/Bwatlbr1", "https://tec.openplanner.team/stops/Bwatle31"], ["https://tec.openplanner.team/stops/X614ama", "https://tec.openplanner.team/stops/X614anb"], ["https://tec.openplanner.team/stops/X779aca", "https://tec.openplanner.team/stops/X779aea"], ["https://tec.openplanner.team/stops/H4bc106b", "https://tec.openplanner.team/stops/H4bc108a"], ["https://tec.openplanner.team/stops/N551aba", "https://tec.openplanner.team/stops/N551afb"], ["https://tec.openplanner.team/stops/Btsleco1", "https://tec.openplanner.team/stops/Btslnil1"], ["https://tec.openplanner.team/stops/H2gy105b", "https://tec.openplanner.team/stops/H2gy106a"], ["https://tec.openplanner.team/stops/LLmwaut2", "https://tec.openplanner.team/stops/LRemorr4"], ["https://tec.openplanner.team/stops/X923aga", "https://tec.openplanner.team/stops/X923ama"], ["https://tec.openplanner.team/stops/LrUgeme2", "https://tec.openplanner.team/stops/LrUwenz2"], ["https://tec.openplanner.team/stops/Bnivpro2", "https://tec.openplanner.team/stops/Bnivsba2"], ["https://tec.openplanner.team/stops/N219aba", "https://tec.openplanner.team/stops/N224aba"], ["https://tec.openplanner.team/stops/N232apa", "https://tec.openplanner.team/stops/N261afa"], ["https://tec.openplanner.team/stops/Lmoknae1", "https://tec.openplanner.team/stops/Lmomarr2"], ["https://tec.openplanner.team/stops/X601awa", "https://tec.openplanner.team/stops/X601awb"], ["https://tec.openplanner.team/stops/Cmmheur2", "https://tec.openplanner.team/stops/Cmmphai1"], ["https://tec.openplanner.team/stops/Bohnegl2", "https://tec.openplanner.team/stops/Bohngai1"], ["https://tec.openplanner.team/stops/Cmastch1", "https://tec.openplanner.team/stops/Cmastch4"], ["https://tec.openplanner.team/stops/Cfocobe1", "https://tec.openplanner.team/stops/Cgzhour2"], ["https://tec.openplanner.team/stops/LJEpaqu1", "https://tec.openplanner.team/stops/LJEverd2"], ["https://tec.openplanner.team/stops/N557aca", "https://tec.openplanner.team/stops/N557aeb"], ["https://tec.openplanner.team/stops/X925aga", "https://tec.openplanner.team/stops/X947adb"], ["https://tec.openplanner.team/stops/X669agc", "https://tec.openplanner.team/stops/X672afa"], ["https://tec.openplanner.team/stops/LESchac1", "https://tec.openplanner.team/stops/LPOeg--2"], ["https://tec.openplanner.team/stops/H1bn113b", "https://tec.openplanner.team/stops/H1qg138b"], ["https://tec.openplanner.team/stops/N585aha", "https://tec.openplanner.team/stops/N585aja"], ["https://tec.openplanner.team/stops/Lreclou2", "https://tec.openplanner.team/stops/Lrelier1"], ["https://tec.openplanner.team/stops/X796aeb", "https://tec.openplanner.team/stops/X796afb"], ["https://tec.openplanner.team/stops/LBBlaga2", "https://tec.openplanner.team/stops/LBBmc--2"], ["https://tec.openplanner.team/stops/H4ir162a", "https://tec.openplanner.team/stops/H5at129b"], ["https://tec.openplanner.team/stops/Bneepne1", "https://tec.openplanner.team/stops/Bneesan1"], ["https://tec.openplanner.team/stops/LPohoeg1", "https://tec.openplanner.team/stops/LSZdepo1"], ["https://tec.openplanner.team/stops/H1si156d", "https://tec.openplanner.team/stops/H4gr110b"], ["https://tec.openplanner.team/stops/N509ara", "https://tec.openplanner.team/stops/N509asb"], ["https://tec.openplanner.team/stops/X937afa", "https://tec.openplanner.team/stops/X937aha"], ["https://tec.openplanner.team/stops/Cgoclad2", "https://tec.openplanner.team/stops/Cgoulb4"], ["https://tec.openplanner.team/stops/H1au101a", "https://tec.openplanner.team/stops/H1bx107a"], ["https://tec.openplanner.team/stops/X717age", "https://tec.openplanner.team/stops/X718aga"], ["https://tec.openplanner.team/stops/Lvesomm1", "https://tec.openplanner.team/stops/Lvewall1"], ["https://tec.openplanner.team/stops/H1hc150b", "https://tec.openplanner.team/stops/H5bl120b"], ["https://tec.openplanner.team/stops/X779aeb", "https://tec.openplanner.team/stops/X779aib"], ["https://tec.openplanner.team/stops/LTPplco2", "https://tec.openplanner.team/stops/LTPsalm1"], ["https://tec.openplanner.team/stops/N270aaa", "https://tec.openplanner.team/stops/N270aab"], ["https://tec.openplanner.team/stops/Lsebico1", "https://tec.openplanner.team/stops/Lsebico2"], ["https://tec.openplanner.team/stops/Bgnvqve1", "https://tec.openplanner.team/stops/Bgnvval1"], ["https://tec.openplanner.team/stops/H1hm173a", "https://tec.openplanner.team/stops/H1sp354b"], ["https://tec.openplanner.team/stops/H1te173b", "https://tec.openplanner.team/stops/H1te184b"], ["https://tec.openplanner.team/stops/H5rx114a", "https://tec.openplanner.team/stops/H5rx135a"], ["https://tec.openplanner.team/stops/LScd45-2", "https://tec.openplanner.team/stops/LScdina2"], ["https://tec.openplanner.team/stops/LCogara2", "https://tec.openplanner.team/stops/LTPpres2"], ["https://tec.openplanner.team/stops/Lchacie1", "https://tec.openplanner.team/stops/Lchacie2"], ["https://tec.openplanner.team/stops/LwR129-2", "https://tec.openplanner.team/stops/LwRkirc2"], ["https://tec.openplanner.team/stops/Bclgvse1", "https://tec.openplanner.team/stops/Bllnfle2"], ["https://tec.openplanner.team/stops/LOReg--1", "https://tec.openplanner.team/stops/LORgend2"], ["https://tec.openplanner.team/stops/LAnchat2", "https://tec.openplanner.team/stops/LAnvien2"], ["https://tec.openplanner.team/stops/H1ba100b", "https://tec.openplanner.team/stops/H1ba103a"], ["https://tec.openplanner.team/stops/H2hl112b", "https://tec.openplanner.team/stops/H2hp116b"], ["https://tec.openplanner.team/stops/Cmaplas3", "https://tec.openplanner.team/stops/Cmaroya1"], ["https://tec.openplanner.team/stops/X901aya", "https://tec.openplanner.team/stops/X901beb"], ["https://tec.openplanner.team/stops/LRRroth1", "https://tec.openplanner.team/stops/LRRroth2"], ["https://tec.openplanner.team/stops/H4pq114a", "https://tec.openplanner.team/stops/H4pq114b"], ["https://tec.openplanner.team/stops/LSzeg--1", "https://tec.openplanner.team/stops/LSzetoi1"], ["https://tec.openplanner.team/stops/X779aga", "https://tec.openplanner.team/stops/X779aha"], ["https://tec.openplanner.team/stops/N155acb", "https://tec.openplanner.team/stops/N155adb"], ["https://tec.openplanner.team/stops/N515akb", "https://tec.openplanner.team/stops/N515asa"], ["https://tec.openplanner.team/stops/Bbgewal2", "https://tec.openplanner.team/stops/Blmldmi1"], ["https://tec.openplanner.team/stops/X359ama", "https://tec.openplanner.team/stops/X858aeb"], ["https://tec.openplanner.team/stops/LSSfrai1", "https://tec.openplanner.team/stops/LSSjeun1"], ["https://tec.openplanner.team/stops/H1wa149a", "https://tec.openplanner.team/stops/H1wa149b"], ["https://tec.openplanner.team/stops/H1qu100b", "https://tec.openplanner.team/stops/H1qu100c"], ["https://tec.openplanner.team/stops/Blimvcg2", "https://tec.openplanner.team/stops/Bottvil2"], ["https://tec.openplanner.team/stops/LAweg--1", "https://tec.openplanner.team/stops/LAweg--2"], ["https://tec.openplanner.team/stops/LSecomm1", "https://tec.openplanner.team/stops/LTibarb1"], ["https://tec.openplanner.team/stops/N229ana", "https://tec.openplanner.team/stops/N229aqa"], ["https://tec.openplanner.team/stops/N501kmy", "https://tec.openplanner.team/stops/N501kmz"], ["https://tec.openplanner.team/stops/H4ar104a", "https://tec.openplanner.team/stops/H4ar173a"], ["https://tec.openplanner.team/stops/H4ty329b", "https://tec.openplanner.team/stops/H4ty356d"], ["https://tec.openplanner.team/stops/NL37aoa", "https://tec.openplanner.team/stops/NL37aob"], ["https://tec.openplanner.team/stops/H4ry129a", "https://tec.openplanner.team/stops/H4ry141a"], ["https://tec.openplanner.team/stops/Cwfghis2", "https://tec.openplanner.team/stops/Cwfplac3"], ["https://tec.openplanner.team/stops/Llmbell2", "https://tec.openplanner.team/stops/Llmvill2"], ["https://tec.openplanner.team/stops/X344adb", "https://tec.openplanner.team/stops/X344aeb"], ["https://tec.openplanner.team/stops/H1qv111b", "https://tec.openplanner.team/stops/H1qv112b"], ["https://tec.openplanner.team/stops/LWAchpg1", "https://tec.openplanner.team/stops/LWAperv1"], ["https://tec.openplanner.team/stops/Llghaye1", "https://tec.openplanner.team/stops/Llgsnap5"], ["https://tec.openplanner.team/stops/H1au100a", "https://tec.openplanner.team/stops/H1mr123b"], ["https://tec.openplanner.team/stops/X735abc", "https://tec.openplanner.team/stops/X736aia"], ["https://tec.openplanner.team/stops/H5ar104a", "https://tec.openplanner.team/stops/H5ar127b"], ["https://tec.openplanner.team/stops/Bclgpch1", "https://tec.openplanner.team/stops/Bclgpch2"], ["https://tec.openplanner.team/stops/N533afa", "https://tec.openplanner.team/stops/N551aba"], ["https://tec.openplanner.team/stops/Lkivolg1", "https://tec.openplanner.team/stops/Loureno2"], ["https://tec.openplanner.team/stops/Bgoemgr2", "https://tec.openplanner.team/stops/Bgoesch1"], ["https://tec.openplanner.team/stops/H1qu104a", "https://tec.openplanner.team/stops/H1qu104b"], ["https://tec.openplanner.team/stops/X394aca", "https://tec.openplanner.team/stops/X394adb"], ["https://tec.openplanner.team/stops/X780aab", "https://tec.openplanner.team/stops/X788aha"], ["https://tec.openplanner.team/stops/LTNeau-1", "https://tec.openplanner.team/stops/LTNegli1"], ["https://tec.openplanner.team/stops/H1mm128b", "https://tec.openplanner.team/stops/H1vb148a"], ["https://tec.openplanner.team/stops/N501hjc", "https://tec.openplanner.team/stops/N501nda"], ["https://tec.openplanner.team/stops/Cdalpla1", "https://tec.openplanner.team/stops/Cdalpla2"], ["https://tec.openplanner.team/stops/H1gh148a", "https://tec.openplanner.team/stops/H1gh162c"], ["https://tec.openplanner.team/stops/X636aia", "https://tec.openplanner.team/stops/X636baa"], ["https://tec.openplanner.team/stops/Ccyga3", "https://tec.openplanner.team/stops/Ccyga8"], ["https://tec.openplanner.team/stops/H4fo119a", "https://tec.openplanner.team/stops/H4ga153a"], ["https://tec.openplanner.team/stops/X669agd", "https://tec.openplanner.team/stops/X672aic"], ["https://tec.openplanner.team/stops/LSPdesc2", "https://tec.openplanner.team/stops/LSPec--2"], ["https://tec.openplanner.team/stops/LWAperv1", "https://tec.openplanner.team/stops/LWApt--2"], ["https://tec.openplanner.team/stops/Bblafab2", "https://tec.openplanner.team/stops/Bblague1"], ["https://tec.openplanner.team/stops/LCHrhou2", "https://tec.openplanner.team/stops/LThplen2"], ["https://tec.openplanner.team/stops/X986aea", "https://tec.openplanner.team/stops/X986ajb"], ["https://tec.openplanner.team/stops/LROhaie2", "https://tec.openplanner.team/stops/LROrtba1"], ["https://tec.openplanner.team/stops/Bpte1ma1", "https://tec.openplanner.team/stops/Brebrog2"], ["https://tec.openplanner.team/stops/LAWgill1", "https://tec.openplanner.team/stops/LAWvill1"], ["https://tec.openplanner.team/stops/N535aoa", "https://tec.openplanner.team/stops/N580aea"], ["https://tec.openplanner.team/stops/N521asa", "https://tec.openplanner.team/stops/N521asd"], ["https://tec.openplanner.team/stops/H4ga155a", "https://tec.openplanner.team/stops/H4ga155b"], ["https://tec.openplanner.team/stops/X671aba", "https://tec.openplanner.team/stops/X671acb"], ["https://tec.openplanner.team/stops/NC44afa", "https://tec.openplanner.team/stops/NC44afc"], ["https://tec.openplanner.team/stops/X768agb", "https://tec.openplanner.team/stops/X768ahb"], ["https://tec.openplanner.team/stops/LaLkirc*", "https://tec.openplanner.team/stops/LeSsaal*"], ["https://tec.openplanner.team/stops/LSSeg--1", "https://tec.openplanner.team/stops/LSSjeun2"], ["https://tec.openplanner.team/stops/Bnstmig1", "https://tec.openplanner.team/stops/H3go101a"], ["https://tec.openplanner.team/stops/LeSdorf1", "https://tec.openplanner.team/stops/LeSsaal*"], ["https://tec.openplanner.team/stops/X601dba", "https://tec.openplanner.team/stops/X626aea"], ["https://tec.openplanner.team/stops/X911aia", "https://tec.openplanner.team/stops/X911ata"], ["https://tec.openplanner.team/stops/LCaresi2", "https://tec.openplanner.team/stops/LHZpara2"], ["https://tec.openplanner.team/stops/X925aka", "https://tec.openplanner.team/stops/X925apa"], ["https://tec.openplanner.team/stops/Cacragu2", "https://tec.openplanner.team/stops/NC24abb"], ["https://tec.openplanner.team/stops/H2ec100b", "https://tec.openplanner.team/stops/H3br101b"], ["https://tec.openplanner.team/stops/LWEgare1", "https://tec.openplanner.team/stops/LWEpl--2"], ["https://tec.openplanner.team/stops/Bjaufca1", "https://tec.openplanner.team/stops/Bjaufca2"], ["https://tec.openplanner.team/stops/H2ca103a", "https://tec.openplanner.team/stops/H2ca103d"], ["https://tec.openplanner.team/stops/LDLgran1", "https://tec.openplanner.team/stops/LDLgran2"], ["https://tec.openplanner.team/stops/Cmlclos1", "https://tec.openplanner.team/stops/Cmlcons2"], ["https://tec.openplanner.team/stops/Brsregl3", "https://tec.openplanner.team/stops/Brsregl4"], ["https://tec.openplanner.team/stops/Lpedeta1", "https://tec.openplanner.team/stops/Lpefler1"], ["https://tec.openplanner.team/stops/X754aea", "https://tec.openplanner.team/stops/X754aeb"], ["https://tec.openplanner.team/stops/Cwgrabi1", "https://tec.openplanner.team/stops/Cwgrabi2"], ["https://tec.openplanner.team/stops/X750aka", "https://tec.openplanner.team/stops/X780aia"], ["https://tec.openplanner.team/stops/X636ala", "https://tec.openplanner.team/stops/X636bjb"], ["https://tec.openplanner.team/stops/Bclgavi2", "https://tec.openplanner.team/stops/Bdvmtve2"], ["https://tec.openplanner.team/stops/LHUlebo2", "https://tec.openplanner.team/stops/LHUmala1"], ["https://tec.openplanner.team/stops/N501cna", "https://tec.openplanner.team/stops/N501cob"], ["https://tec.openplanner.team/stops/N217abb", "https://tec.openplanner.team/stops/N218aea"], ["https://tec.openplanner.team/stops/N501aja", "https://tec.openplanner.team/stops/N501bfz"], ["https://tec.openplanner.team/stops/Bcrnpla1", "https://tec.openplanner.team/stops/Bcrnpla4"], ["https://tec.openplanner.team/stops/X762aba", "https://tec.openplanner.team/stops/X764aaa"], ["https://tec.openplanner.team/stops/LAOpres1", "https://tec.openplanner.team/stops/LAOpres2"], ["https://tec.openplanner.team/stops/LHThall3", "https://tec.openplanner.team/stops/LHTmoul1"], ["https://tec.openplanner.team/stops/Blasbgc2", "https://tec.openplanner.team/stops/Blasbti2"], ["https://tec.openplanner.team/stops/Lvehauz2", "https://tec.openplanner.team/stops/Lvehopi4"], ["https://tec.openplanner.team/stops/N338aea", "https://tec.openplanner.team/stops/N387acc"], ["https://tec.openplanner.team/stops/Cmypast2", "https://tec.openplanner.team/stops/Cmysncb2"], ["https://tec.openplanner.team/stops/N553afa", "https://tec.openplanner.team/stops/N553aoa"], ["https://tec.openplanner.team/stops/N528asa", "https://tec.openplanner.team/stops/N528ata"], ["https://tec.openplanner.team/stops/LoDmuhl2", "https://tec.openplanner.team/stops/LrUoudl1"], ["https://tec.openplanner.team/stops/N270aec", "https://tec.openplanner.team/stops/N270aga"], ["https://tec.openplanner.team/stops/H1cd111b", "https://tec.openplanner.team/stops/H1cd112a"], ["https://tec.openplanner.team/stops/X901ana", "https://tec.openplanner.team/stops/X901aua"], ["https://tec.openplanner.team/stops/X626afa", "https://tec.openplanner.team/stops/X626afb"], ["https://tec.openplanner.team/stops/Cgyrjau1", "https://tec.openplanner.team/stops/Cmtduch1"], ["https://tec.openplanner.team/stops/Cfawain2", "https://tec.openplanner.team/stops/Cflecga2"], ["https://tec.openplanner.team/stops/NC11ama", "https://tec.openplanner.team/stops/NC11aoa"], ["https://tec.openplanner.team/stops/H1si167a", "https://tec.openplanner.team/stops/H1vt195a"], ["https://tec.openplanner.team/stops/X741aha", "https://tec.openplanner.team/stops/X741aib"], ["https://tec.openplanner.team/stops/Bmanati2", "https://tec.openplanner.team/stops/H2mg149b"], ["https://tec.openplanner.team/stops/N287aaa", "https://tec.openplanner.team/stops/N287aab"], ["https://tec.openplanner.team/stops/Bgermco1", "https://tec.openplanner.team/stops/Bgermco2"], ["https://tec.openplanner.team/stops/H4av103a", "https://tec.openplanner.team/stops/H4av103b"], ["https://tec.openplanner.team/stops/Ladfran1", "https://tec.openplanner.team/stops/Lvegrap2"], ["https://tec.openplanner.team/stops/N529afb", "https://tec.openplanner.team/stops/N531apa"], ["https://tec.openplanner.team/stops/Llmbouv2", "https://tec.openplanner.team/stops/Llmdavi2"], ["https://tec.openplanner.team/stops/Bsdecdi1", "https://tec.openplanner.team/stops/N526aab"], ["https://tec.openplanner.team/stops/Llgdart4", "https://tec.openplanner.team/stops/LlgguilF"], ["https://tec.openplanner.team/stops/Bquebut2", "https://tec.openplanner.team/stops/Brebcgi1"], ["https://tec.openplanner.team/stops/N209ama", "https://tec.openplanner.team/stops/NL79aaa"], ["https://tec.openplanner.team/stops/X948apa", "https://tec.openplanner.team/stops/X948ara"], ["https://tec.openplanner.team/stops/LHTeg--2", "https://tec.openplanner.team/stops/LHTmc--2"], ["https://tec.openplanner.team/stops/LHTeg--1", "https://tec.openplanner.team/stops/LHTmc--1"], ["https://tec.openplanner.team/stops/N308bca", "https://tec.openplanner.team/stops/N308bcb"], ["https://tec.openplanner.team/stops/X601ccb", "https://tec.openplanner.team/stops/X601ccc"], ["https://tec.openplanner.team/stops/Ccoacie2", "https://tec.openplanner.team/stops/Ccocorb1"], ["https://tec.openplanner.team/stops/Bclgeco1", "https://tec.openplanner.team/stops/Bgisman2"], ["https://tec.openplanner.team/stops/N202afb", "https://tec.openplanner.team/stops/N202ahb"], ["https://tec.openplanner.team/stops/X652afb", "https://tec.openplanner.team/stops/X652agb"], ["https://tec.openplanner.team/stops/LWHwaas3", "https://tec.openplanner.team/stops/LWHwaas4"], ["https://tec.openplanner.team/stops/LBaeg--1", "https://tec.openplanner.team/stops/LBamate2"], ["https://tec.openplanner.team/stops/N564afa", "https://tec.openplanner.team/stops/N580aea"], ["https://tec.openplanner.team/stops/X604aca", "https://tec.openplanner.team/stops/X604acb"], ["https://tec.openplanner.team/stops/X826abb", "https://tec.openplanner.team/stops/X826acb"], ["https://tec.openplanner.team/stops/LEntrix1", "https://tec.openplanner.team/stops/LEnvill1"], ["https://tec.openplanner.team/stops/H1wa144a", "https://tec.openplanner.team/stops/H1wa152a"], ["https://tec.openplanner.team/stops/N351anb", "https://tec.openplanner.team/stops/N357afa"], ["https://tec.openplanner.team/stops/LBDcarr2", "https://tec.openplanner.team/stops/LBDtill1"], ["https://tec.openplanner.team/stops/Cchwarm2", "https://tec.openplanner.team/stops/Cmtneuv2"], ["https://tec.openplanner.team/stops/LBEbelf1", "https://tec.openplanner.team/stops/LTIsain2"], ["https://tec.openplanner.team/stops/LJeeg--2", "https://tec.openplanner.team/stops/LJetrih1"], ["https://tec.openplanner.team/stops/X602aba", "https://tec.openplanner.team/stops/X623ajb"], ["https://tec.openplanner.team/stops/Ljugode1", "https://tec.openplanner.team/stops/Ljuplpr1"], ["https://tec.openplanner.team/stops/X654afa", "https://tec.openplanner.team/stops/X654ahb"], ["https://tec.openplanner.team/stops/Cfmltas2", "https://tec.openplanner.team/stops/Cfmsncb2"], ["https://tec.openplanner.team/stops/LTatult4", "https://tec.openplanner.team/stops/LVnvieg1"], ["https://tec.openplanner.team/stops/X636beb", "https://tec.openplanner.team/stops/X649adc"], ["https://tec.openplanner.team/stops/Bsensab1", "https://tec.openplanner.team/stops/H2se110a"], ["https://tec.openplanner.team/stops/N141aqa", "https://tec.openplanner.team/stops/N141aqb"], ["https://tec.openplanner.team/stops/Cmysncb1", "https://tec.openplanner.team/stops/Cmysncb2"], ["https://tec.openplanner.team/stops/Cthoues2", "https://tec.openplanner.team/stops/Cthpano1"], ["https://tec.openplanner.team/stops/Cgon51", "https://tec.openplanner.team/stops/Cgon52"], ["https://tec.openplanner.team/stops/Bhen5ma2", "https://tec.openplanner.team/stops/Bquegen1"], ["https://tec.openplanner.team/stops/Bcharce1", "https://tec.openplanner.team/stops/Bcrnsge1"], ["https://tec.openplanner.team/stops/LTIgare1", "https://tec.openplanner.team/stops/LTIpres2"], ["https://tec.openplanner.team/stops/X601aaa", "https://tec.openplanner.team/stops/X601adb"], ["https://tec.openplanner.team/stops/Lfhborg1", "https://tec.openplanner.team/stops/Livgera3"], ["https://tec.openplanner.team/stops/LCAeg--2", "https://tec.openplanner.team/stops/LCAwals2"], ["https://tec.openplanner.team/stops/Cgogare2", "https://tec.openplanner.team/stops/Cralimi2"], ["https://tec.openplanner.team/stops/H2sv216a", "https://tec.openplanner.team/stops/H2sv216b"], ["https://tec.openplanner.team/stops/X653abb", "https://tec.openplanner.team/stops/X653aca"], ["https://tec.openplanner.team/stops/H4ss158a", "https://tec.openplanner.team/stops/H5rx101a"], ["https://tec.openplanner.team/stops/H4ag104a", "https://tec.openplanner.team/stops/H4br110a"], ["https://tec.openplanner.team/stops/X923aqa", "https://tec.openplanner.team/stops/X925ama"], ["https://tec.openplanner.team/stops/Bmartil2", "https://tec.openplanner.team/stops/Bvlvmar2"], ["https://tec.openplanner.team/stops/Lviweri1", "https://tec.openplanner.team/stops/Lviweri2"], ["https://tec.openplanner.team/stops/X888agb", "https://tec.openplanner.team/stops/X897aea"], ["https://tec.openplanner.team/stops/N532aaa", "https://tec.openplanner.team/stops/N574agb"], ["https://tec.openplanner.team/stops/Bblaegl1", "https://tec.openplanner.team/stops/Bblamsp1"], ["https://tec.openplanner.team/stops/H4au100b", "https://tec.openplanner.team/stops/H4tp145a"], ["https://tec.openplanner.team/stops/Cmmcver2", "https://tec.openplanner.team/stops/Cmmtomb1"], ["https://tec.openplanner.team/stops/H4ka194a", "https://tec.openplanner.team/stops/H4ob124a"], ["https://tec.openplanner.team/stops/Bthsset1", "https://tec.openplanner.team/stops/Bthsvil2"], ["https://tec.openplanner.team/stops/N539aja", "https://tec.openplanner.team/stops/N539akb"], ["https://tec.openplanner.team/stops/Bclgmev1", "https://tec.openplanner.team/stops/Bclgvse1"], ["https://tec.openplanner.team/stops/N501cwb", "https://tec.openplanner.team/stops/N528aia"], ["https://tec.openplanner.team/stops/H5rx131a", "https://tec.openplanner.team/stops/H5rx132b"], ["https://tec.openplanner.team/stops/X638aba", "https://tec.openplanner.team/stops/X638abb"], ["https://tec.openplanner.team/stops/H4wr175b", "https://tec.openplanner.team/stops/H4wr177a"], ["https://tec.openplanner.team/stops/Bthspha2", "https://tec.openplanner.team/stops/Bthsset1"], ["https://tec.openplanner.team/stops/N502aba", "https://tec.openplanner.team/stops/N503aaa"], ["https://tec.openplanner.team/stops/N425aba", "https://tec.openplanner.team/stops/N426aea"], ["https://tec.openplanner.team/stops/Cgzabau1", "https://tec.openplanner.team/stops/Cgzmira3"], ["https://tec.openplanner.team/stops/H1gh145a", "https://tec.openplanner.team/stops/H1gh157a"], ["https://tec.openplanner.team/stops/H4mo159a", "https://tec.openplanner.team/stops/H4mo190b"], ["https://tec.openplanner.team/stops/Cmacart4", "https://tec.openplanner.team/stops/Cmahotv1"], ["https://tec.openplanner.team/stops/LRGchap2", "https://tec.openplanner.team/stops/LRGgrov2"], ["https://tec.openplanner.team/stops/Bcrncen2", "https://tec.openplanner.team/stops/Bcrngat1"], ["https://tec.openplanner.team/stops/LHFcaqu2", "https://tec.openplanner.team/stops/LHFwaut2"], ["https://tec.openplanner.team/stops/X804bdb", "https://tec.openplanner.team/stops/X804bea"], ["https://tec.openplanner.team/stops/Bovecha1", "https://tec.openplanner.team/stops/Bovetsa2"], ["https://tec.openplanner.team/stops/Bsaupco2", "https://tec.openplanner.team/stops/Bsauvmo2"], ["https://tec.openplanner.team/stops/X765aba", "https://tec.openplanner.team/stops/X765aca"], ["https://tec.openplanner.team/stops/Bbgewal1", "https://tec.openplanner.team/stops/Blmldmi1"], ["https://tec.openplanner.team/stops/H4fo115b", "https://tec.openplanner.team/stops/H4fo116b"], ["https://tec.openplanner.team/stops/LTRlonh2", "https://tec.openplanner.team/stops/LTRsain2"], ["https://tec.openplanner.team/stops/LORgend2", "https://tec.openplanner.team/stops/LORvill3"], ["https://tec.openplanner.team/stops/N501ieb", "https://tec.openplanner.team/stops/N501iey"], ["https://tec.openplanner.team/stops/H4ka174a", "https://tec.openplanner.team/stops/H4ka174b"], ["https://tec.openplanner.team/stops/LgRzent2", "https://tec.openplanner.team/stops/LnUhohe2"], ["https://tec.openplanner.team/stops/LAwfans1", "https://tec.openplanner.team/stops/LAwfans2"], ["https://tec.openplanner.team/stops/X723aia", "https://tec.openplanner.team/stops/X723aib"], ["https://tec.openplanner.team/stops/N505ajb", "https://tec.openplanner.team/stops/N505aka"], ["https://tec.openplanner.team/stops/H4re225b", "https://tec.openplanner.team/stops/H4re226b"], ["https://tec.openplanner.team/stops/H5ar107a", "https://tec.openplanner.team/stops/H5ar127b"], ["https://tec.openplanner.team/stops/LSPecho1", "https://tec.openplanner.team/stops/LSPecho2"], ["https://tec.openplanner.team/stops/N531ana", "https://tec.openplanner.team/stops/N576aia"], ["https://tec.openplanner.team/stops/H2ha142a", "https://tec.openplanner.team/stops/H2hg156a"], ["https://tec.openplanner.team/stops/LMoelno2", "https://tec.openplanner.team/stops/LMovich2"], ["https://tec.openplanner.team/stops/N106aja", "https://tec.openplanner.team/stops/N106ala"], ["https://tec.openplanner.team/stops/LeUbell*", "https://tec.openplanner.team/stops/LeUbell1"], ["https://tec.openplanner.team/stops/X793abb", "https://tec.openplanner.team/stops/X793apb"], ["https://tec.openplanner.team/stops/Cflcoro2", "https://tec.openplanner.team/stops/Cflpost1"], ["https://tec.openplanner.team/stops/LSPClem1", "https://tec.openplanner.team/stops/LSProya1"], ["https://tec.openplanner.team/stops/LrAeife2", "https://tec.openplanner.team/stops/LrAverb2"], ["https://tec.openplanner.team/stops/N122aba", "https://tec.openplanner.team/stops/N123ada"], ["https://tec.openplanner.team/stops/LFsconc1", "https://tec.openplanner.team/stops/LFslign2"], ["https://tec.openplanner.team/stops/X925ala", "https://tec.openplanner.team/stops/X925amb"], ["https://tec.openplanner.team/stops/Ctm4che1", "https://tec.openplanner.team/stops/Ctmmath1"], ["https://tec.openplanner.team/stops/N554afb", "https://tec.openplanner.team/stops/N573aqa"], ["https://tec.openplanner.team/stops/X992aja", "https://tec.openplanner.team/stops/X992ajb"], ["https://tec.openplanner.team/stops/Lpomart2", "https://tec.openplanner.team/stops/Lpoprie2"], ["https://tec.openplanner.team/stops/Bjdspon1", "https://tec.openplanner.team/stops/Bjdssta2"], ["https://tec.openplanner.team/stops/X725aec", "https://tec.openplanner.team/stops/X725aza"], ["https://tec.openplanner.team/stops/X664aia", "https://tec.openplanner.team/stops/X664aic"], ["https://tec.openplanner.team/stops/X750aza", "https://tec.openplanner.team/stops/X794aaa"], ["https://tec.openplanner.team/stops/H3bi107a", "https://tec.openplanner.team/stops/H3bi107b"], ["https://tec.openplanner.team/stops/LHAlacr2", "https://tec.openplanner.team/stops/LHAleru2"], ["https://tec.openplanner.team/stops/X640aib", "https://tec.openplanner.team/stops/X640aub"], ["https://tec.openplanner.team/stops/H2fa105b", "https://tec.openplanner.team/stops/H2fa109b"], ["https://tec.openplanner.team/stops/X669aea", "https://tec.openplanner.team/stops/X672aic"], ["https://tec.openplanner.team/stops/Lvemahe2", "https://tec.openplanner.team/stops/Lvesomm1"], ["https://tec.openplanner.team/stops/X806acb", "https://tec.openplanner.team/stops/X806adb"], ["https://tec.openplanner.team/stops/Bmelegl1", "https://tec.openplanner.team/stops/Bmelsab1"], ["https://tec.openplanner.team/stops/Blincal2", "https://tec.openplanner.team/stops/Blincoo2"], ["https://tec.openplanner.team/stops/H1mb138b", "https://tec.openplanner.team/stops/H1mx123b"], ["https://tec.openplanner.team/stops/X837afb", "https://tec.openplanner.team/stops/X837aga"], ["https://tec.openplanner.team/stops/X609aba", "https://tec.openplanner.team/stops/X609abb"], ["https://tec.openplanner.team/stops/H2ch102a", "https://tec.openplanner.team/stops/H2ch104a"], ["https://tec.openplanner.team/stops/H4or113a", "https://tec.openplanner.team/stops/H4or114a"], ["https://tec.openplanner.team/stops/X670aba", "https://tec.openplanner.team/stops/X670aib"], ["https://tec.openplanner.team/stops/LLxalle1", "https://tec.openplanner.team/stops/LVIcarm1"], ["https://tec.openplanner.team/stops/X890aab", "https://tec.openplanner.team/stops/X890afa"], ["https://tec.openplanner.team/stops/LTibarb1", "https://tec.openplanner.team/stops/LTipont1"], ["https://tec.openplanner.team/stops/X604ama", "https://tec.openplanner.team/stops/X604amb"], ["https://tec.openplanner.team/stops/N308aea", "https://tec.openplanner.team/stops/N308ahb"], ["https://tec.openplanner.team/stops/H5at116a", "https://tec.openplanner.team/stops/H5at116d"], ["https://tec.openplanner.team/stops/LGEpt--1", "https://tec.openplanner.team/stops/LLYplac1"], ["https://tec.openplanner.team/stops/Bgzdgth1", "https://tec.openplanner.team/stops/Bgzdpis1"], ["https://tec.openplanner.team/stops/H4ty274a", "https://tec.openplanner.team/stops/H4ty308c"], ["https://tec.openplanner.team/stops/Lceegth2", "https://tec.openplanner.team/stops/Lcepepi2"], ["https://tec.openplanner.team/stops/H1pa103a", "https://tec.openplanner.team/stops/H1pa103b"], ["https://tec.openplanner.team/stops/N555aba", "https://tec.openplanner.team/stops/N573aia"], ["https://tec.openplanner.team/stops/H3so160b", "https://tec.openplanner.team/stops/H3so177a"], ["https://tec.openplanner.team/stops/N519adb", "https://tec.openplanner.team/stops/N519ara"], ["https://tec.openplanner.team/stops/LFCalte2", "https://tec.openplanner.team/stops/LFCvoer1"], ["https://tec.openplanner.team/stops/Ccigill3", "https://tec.openplanner.team/stops/Ccisart1"], ["https://tec.openplanner.team/stops/LAMvert1", "https://tec.openplanner.team/stops/LOmecol1"], ["https://tec.openplanner.team/stops/LCOcarr1", "https://tec.openplanner.team/stops/LCOeg--2"], ["https://tec.openplanner.team/stops/Ccyga4", "https://tec.openplanner.team/stops/Ccyga6"], ["https://tec.openplanner.team/stops/Bronn391", "https://tec.openplanner.team/stops/Bvirfpo2"], ["https://tec.openplanner.team/stops/N528aob", "https://tec.openplanner.team/stops/N538aab"], ["https://tec.openplanner.team/stops/Bnivace1", "https://tec.openplanner.team/stops/Bnivace2"], ["https://tec.openplanner.team/stops/H4ty270a", "https://tec.openplanner.team/stops/H4ty359b"], ["https://tec.openplanner.team/stops/H3lr106b", "https://tec.openplanner.team/stops/H3th133b"], ["https://tec.openplanner.team/stops/H2ca102a", "https://tec.openplanner.team/stops/H2ca111b"], ["https://tec.openplanner.team/stops/X790afb", "https://tec.openplanner.team/stops/X790aia"], ["https://tec.openplanner.team/stops/LSGec--2", "https://tec.openplanner.team/stops/LSGhagn1"], ["https://tec.openplanner.team/stops/LOdbuis1", "https://tec.openplanner.team/stops/LOdmonu3"], ["https://tec.openplanner.team/stops/H1wa142a", "https://tec.openplanner.team/stops/H1wa147b"], ["https://tec.openplanner.team/stops/Llgamer2", "https://tec.openplanner.team/stops/Llgoutr3"], ["https://tec.openplanner.team/stops/N353afb", "https://tec.openplanner.team/stops/N353ahb"], ["https://tec.openplanner.team/stops/N135afb", "https://tec.openplanner.team/stops/N135aob"], ["https://tec.openplanner.team/stops/H4fr139a", "https://tec.openplanner.team/stops/H4ma418a"], ["https://tec.openplanner.team/stops/X618apa", "https://tec.openplanner.team/stops/X696ada"], ["https://tec.openplanner.team/stops/LAVstat2", "https://tec.openplanner.team/stops/LLRvill1"], ["https://tec.openplanner.team/stops/N521ala", "https://tec.openplanner.team/stops/N525aua"], ["https://tec.openplanner.team/stops/LWEgend1", "https://tec.openplanner.team/stops/LWEgend2"], ["https://tec.openplanner.team/stops/LLAeg--2", "https://tec.openplanner.team/stops/LLAvi651"], ["https://tec.openplanner.team/stops/LbOlier1", "https://tec.openplanner.team/stops/LbOre3b2"], ["https://tec.openplanner.team/stops/Caiegli1", "https://tec.openplanner.team/stops/Caiegli2"], ["https://tec.openplanner.team/stops/Bplnfpa2", "https://tec.openplanner.team/stops/Clpalli1"], ["https://tec.openplanner.team/stops/N312aaa", "https://tec.openplanner.team/stops/N312aab"], ["https://tec.openplanner.team/stops/Bwagcus1", "https://tec.openplanner.team/stops/Bwagcus2"], ["https://tec.openplanner.team/stops/H4bw100a", "https://tec.openplanner.team/stops/H4bw101b"], ["https://tec.openplanner.team/stops/LMNeg--1", "https://tec.openplanner.team/stops/LMNpt--1"], ["https://tec.openplanner.team/stops/LHegame4", "https://tec.openplanner.team/stops/LHehacc2"], ["https://tec.openplanner.team/stops/N201aga", "https://tec.openplanner.team/stops/N201awa"], ["https://tec.openplanner.team/stops/LPRfour2", "https://tec.openplanner.team/stops/LTRcarr1"], ["https://tec.openplanner.team/stops/X661aab", "https://tec.openplanner.team/stops/X839aca"], ["https://tec.openplanner.team/stops/LaNmuhl3", "https://tec.openplanner.team/stops/LaNmuhl4"], ["https://tec.openplanner.team/stops/H1hn204a", "https://tec.openplanner.team/stops/H1hn210a"], ["https://tec.openplanner.team/stops/N501apb", "https://tec.openplanner.team/stops/N501gba"], ["https://tec.openplanner.team/stops/Lmldama2", "https://tec.openplanner.team/stops/Lpocent1"], ["https://tec.openplanner.team/stops/X639aeb", "https://tec.openplanner.team/stops/X640asb"], ["https://tec.openplanner.team/stops/H4bx108b", "https://tec.openplanner.team/stops/H4ep129a"], ["https://tec.openplanner.team/stops/NL57afa", "https://tec.openplanner.team/stops/NL57aia"], ["https://tec.openplanner.team/stops/Ccinali1", "https://tec.openplanner.team/stops/Cmllecl4"], ["https://tec.openplanner.team/stops/N206aaa", "https://tec.openplanner.team/stops/N221aab"], ["https://tec.openplanner.team/stops/NH01ata", "https://tec.openplanner.team/stops/NH01atb"], ["https://tec.openplanner.team/stops/Bhtibru1", "https://tec.openplanner.team/stops/Bhtibru2"], ["https://tec.openplanner.team/stops/LNIbas-1", "https://tec.openplanner.team/stops/LSZstoc2"], ["https://tec.openplanner.team/stops/H4ka190a", "https://tec.openplanner.team/stops/H4ka190b"], ["https://tec.openplanner.team/stops/X740aca", "https://tec.openplanner.team/stops/X912adb"], ["https://tec.openplanner.team/stops/LWepost3", "https://tec.openplanner.team/stops/LWepost4"], ["https://tec.openplanner.team/stops/LlSzoll1", "https://tec.openplanner.team/stops/LlSzoll2"], ["https://tec.openplanner.team/stops/Clshafa1", "https://tec.openplanner.team/stops/Clsstpi1"], ["https://tec.openplanner.team/stops/X801bjb", "https://tec.openplanner.team/stops/X801bka"], ["https://tec.openplanner.team/stops/Brsrber2", "https://tec.openplanner.team/stops/Brsrmon1"], ["https://tec.openplanner.team/stops/X789ada", "https://tec.openplanner.team/stops/X789afa"], ["https://tec.openplanner.team/stops/N425ada", "https://tec.openplanner.team/stops/N426aea"], ["https://tec.openplanner.team/stops/X901asa", "https://tec.openplanner.team/stops/X901asb"], ["https://tec.openplanner.team/stops/Cvpchat2", "https://tec.openplanner.team/stops/Cvpsncb2"], ["https://tec.openplanner.team/stops/Lvoec--2", "https://tec.openplanner.team/stops/Lvoeg--2"], ["https://tec.openplanner.team/stops/X615ada", "https://tec.openplanner.team/stops/X681aia"], ["https://tec.openplanner.team/stops/N423afa", "https://tec.openplanner.team/stops/N423afb"], ["https://tec.openplanner.team/stops/H4ty318b", "https://tec.openplanner.team/stops/H4ty324c"], ["https://tec.openplanner.team/stops/X775ajb", "https://tec.openplanner.team/stops/X775ana"], ["https://tec.openplanner.team/stops/Bvirflu1", "https://tec.openplanner.team/stops/Bvirvol2"], ["https://tec.openplanner.team/stops/Lhubriq1", "https://tec.openplanner.team/stops/Lhuwaid2"], ["https://tec.openplanner.team/stops/H3bi106b", "https://tec.openplanner.team/stops/H3bi113b"], ["https://tec.openplanner.team/stops/X733aja", "https://tec.openplanner.team/stops/X734aqb"], ["https://tec.openplanner.team/stops/X808adb", "https://tec.openplanner.team/stops/X811ada"], ["https://tec.openplanner.team/stops/H2ca108a", "https://tec.openplanner.team/stops/H2ca116b"], ["https://tec.openplanner.team/stops/N501loa", "https://tec.openplanner.team/stops/N528aob"], ["https://tec.openplanner.team/stops/Bbghcar2", "https://tec.openplanner.team/stops/Bbghpln1"], ["https://tec.openplanner.team/stops/N501hjb", "https://tec.openplanner.team/stops/N501lca"], ["https://tec.openplanner.team/stops/N501hma", "https://tec.openplanner.team/stops/N501hmb"], ["https://tec.openplanner.team/stops/Bpiehte1", "https://tec.openplanner.team/stops/Bpiepnd1"], ["https://tec.openplanner.team/stops/Bgrmfon1", "https://tec.openplanner.team/stops/Bgrmpsn2"], ["https://tec.openplanner.team/stops/Lseberg2", "https://tec.openplanner.team/stops/Lsebuil2"], ["https://tec.openplanner.team/stops/Bblabos2", "https://tec.openplanner.team/stops/Bblasmo2"], ["https://tec.openplanner.team/stops/H1ms294a", "https://tec.openplanner.team/stops/H1ms294c"], ["https://tec.openplanner.team/stops/H1br130b", "https://tec.openplanner.team/stops/H1br131a"], ["https://tec.openplanner.team/stops/H1me117d", "https://tec.openplanner.team/stops/H1me117e"], ["https://tec.openplanner.team/stops/N218acc", "https://tec.openplanner.team/stops/N301aka"], ["https://tec.openplanner.team/stops/Cgxbeau1", "https://tec.openplanner.team/stops/Cgxwaut2"], ["https://tec.openplanner.team/stops/LOljean1", "https://tec.openplanner.team/stops/LOmvill4"], ["https://tec.openplanner.team/stops/LBMecol2", "https://tec.openplanner.team/stops/X982bqb"], ["https://tec.openplanner.team/stops/LHEches3", "https://tec.openplanner.team/stops/LHEpriv1"], ["https://tec.openplanner.team/stops/X750bgb", "https://tec.openplanner.team/stops/X750bna"], ["https://tec.openplanner.team/stops/Bwavbwa2", "https://tec.openplanner.team/stops/Bwavche2"], ["https://tec.openplanner.team/stops/N501ana", "https://tec.openplanner.team/stops/N501beb"], ["https://tec.openplanner.team/stops/N207add", "https://tec.openplanner.team/stops/N209ama"], ["https://tec.openplanner.team/stops/X757ahb", "https://tec.openplanner.team/stops/X757aja"], ["https://tec.openplanner.team/stops/Cmtgrim1", "https://tec.openplanner.team/stops/Cmtstan2"], ["https://tec.openplanner.team/stops/X833aab", "https://tec.openplanner.team/stops/X833abb"], ["https://tec.openplanner.team/stops/Llgjoie1", "https://tec.openplanner.team/stops/Llgjoie4"], ["https://tec.openplanner.team/stops/X837ada", "https://tec.openplanner.team/stops/X837adb"], ["https://tec.openplanner.team/stops/Bsmgegl1", "https://tec.openplanner.team/stops/Bsmgegl2"], ["https://tec.openplanner.team/stops/H2pe154a", "https://tec.openplanner.team/stops/H3bi106b"], ["https://tec.openplanner.team/stops/H1ni316b", "https://tec.openplanner.team/stops/H1ni319a"], ["https://tec.openplanner.team/stops/X837aca", "https://tec.openplanner.team/stops/X837afb"], ["https://tec.openplanner.team/stops/H1ms282a", "https://tec.openplanner.team/stops/H1ss352b"], ["https://tec.openplanner.team/stops/H1wa156a", "https://tec.openplanner.team/stops/H1wa160a"], ["https://tec.openplanner.team/stops/LGAholl2", "https://tec.openplanner.team/stops/LHggeer1"], ["https://tec.openplanner.team/stops/H1ht128a", "https://tec.openplanner.team/stops/H1ht133a"], ["https://tec.openplanner.team/stops/Bwavlav1", "https://tec.openplanner.team/stops/Bwavrij1"], ["https://tec.openplanner.team/stops/N305aab", "https://tec.openplanner.team/stops/N305acb"], ["https://tec.openplanner.team/stops/Cmlfstt1", "https://tec.openplanner.team/stops/Cmlthym2"], ["https://tec.openplanner.team/stops/Blaneli2", "https://tec.openplanner.team/stops/Blankal3"], ["https://tec.openplanner.team/stops/H1hw119b", "https://tec.openplanner.team/stops/H1hw122b"], ["https://tec.openplanner.team/stops/H1mh114a", "https://tec.openplanner.team/stops/H1mh116a"], ["https://tec.openplanner.team/stops/X952afa", "https://tec.openplanner.team/stops/X954adb"], ["https://tec.openplanner.team/stops/H4ba102b", "https://tec.openplanner.team/stops/H4ml209b"], ["https://tec.openplanner.team/stops/Canmonu3", "https://tec.openplanner.team/stops/Canrsta1"], ["https://tec.openplanner.team/stops/H5wo133a", "https://tec.openplanner.team/stops/H5wo134a"], ["https://tec.openplanner.team/stops/N121aaa", "https://tec.openplanner.team/stops/N121aea"], ["https://tec.openplanner.team/stops/Btlbegl1", "https://tec.openplanner.team/stops/Btlbtbe3"], ["https://tec.openplanner.team/stops/Lgrclos1", "https://tec.openplanner.team/stops/Lgreg--2"], ["https://tec.openplanner.team/stops/N260aaa", "https://tec.openplanner.team/stops/N270aga"], ["https://tec.openplanner.team/stops/Lhrbass1", "https://tec.openplanner.team/stops/Lhrdron1"], ["https://tec.openplanner.team/stops/LHFec--3", "https://tec.openplanner.team/stops/LHFec--4"], ["https://tec.openplanner.team/stops/Bsgebou1", "https://tec.openplanner.team/stops/Bsgebou2"], ["https://tec.openplanner.team/stops/Cptccas1", "https://tec.openplanner.team/stops/Cptplac3"], ["https://tec.openplanner.team/stops/X879aba", "https://tec.openplanner.team/stops/X879abb"], ["https://tec.openplanner.team/stops/LTicime2", "https://tec.openplanner.team/stops/LTigera2"], ["https://tec.openplanner.team/stops/H4hx110b", "https://tec.openplanner.team/stops/H4hx117a"], ["https://tec.openplanner.team/stops/N207aab", "https://tec.openplanner.team/stops/N209alb"], ["https://tec.openplanner.team/stops/LMAbass1", "https://tec.openplanner.team/stops/LMAchod2"], ["https://tec.openplanner.team/stops/N101adc", "https://tec.openplanner.team/stops/N118aob"], ["https://tec.openplanner.team/stops/N351aja", "https://tec.openplanner.team/stops/N351ajc"], ["https://tec.openplanner.team/stops/X801adb", "https://tec.openplanner.team/stops/X801afb"], ["https://tec.openplanner.team/stops/H2sb223b", "https://tec.openplanner.team/stops/H2sb239b"], ["https://tec.openplanner.team/stops/LJSeg--2", "https://tec.openplanner.team/stops/LJSforg2"], ["https://tec.openplanner.team/stops/N512ana", "https://tec.openplanner.team/stops/N512aqb"], ["https://tec.openplanner.team/stops/X774aga", "https://tec.openplanner.team/stops/X775aaa"], ["https://tec.openplanner.team/stops/Blaneli1", "https://tec.openplanner.team/stops/LLaover3"], ["https://tec.openplanner.team/stops/H1si153b", "https://tec.openplanner.team/stops/H1si163a"], ["https://tec.openplanner.team/stops/LHUamer1", "https://tec.openplanner.team/stops/LHUbatt1"], ["https://tec.openplanner.team/stops/X731agb", "https://tec.openplanner.team/stops/X731akb"], ["https://tec.openplanner.team/stops/LBRpier1", "https://tec.openplanner.team/stops/LLRrape4"], ["https://tec.openplanner.team/stops/Clrrhau2", "https://tec.openplanner.team/stops/Clrwesp2"], ["https://tec.openplanner.team/stops/Bmanati1", "https://tec.openplanner.team/stops/Bmanati2"], ["https://tec.openplanner.team/stops/H4av106a", "https://tec.openplanner.team/stops/H4wt160b"], ["https://tec.openplanner.team/stops/N577agb", "https://tec.openplanner.team/stops/N577ajb"], ["https://tec.openplanner.team/stops/N516ahb", "https://tec.openplanner.team/stops/N516aib"], ["https://tec.openplanner.team/stops/Cflecga1", "https://tec.openplanner.team/stops/Cflvxca1"], ["https://tec.openplanner.team/stops/Lmimili1", "https://tec.openplanner.team/stops/Lmimili4"], ["https://tec.openplanner.team/stops/NL74aga", "https://tec.openplanner.team/stops/NL74aha"], ["https://tec.openplanner.team/stops/LTotrui1", "https://tec.openplanner.team/stops/LTotrui2"], ["https://tec.openplanner.team/stops/Cmlbulp3", "https://tec.openplanner.team/stops/Cmlstni2"], ["https://tec.openplanner.team/stops/LBNeup22", "https://tec.openplanner.team/stops/LBNplei1"], ["https://tec.openplanner.team/stops/LClange2", "https://tec.openplanner.team/stops/LCljose1"], ["https://tec.openplanner.team/stops/X766aeb", "https://tec.openplanner.team/stops/X766afb"], ["https://tec.openplanner.team/stops/X923aea", "https://tec.openplanner.team/stops/X923afa"], ["https://tec.openplanner.team/stops/Lemlami2", "https://tec.openplanner.team/stops/Lemsart2"], ["https://tec.openplanner.team/stops/Cvretan1", "https://tec.openplanner.team/stops/Cvretan2"], ["https://tec.openplanner.team/stops/N201ahb", "https://tec.openplanner.team/stops/N201atb"], ["https://tec.openplanner.team/stops/H1em105a", "https://tec.openplanner.team/stops/H1em111c"], ["https://tec.openplanner.team/stops/Bhenard1", "https://tec.openplanner.team/stops/Bhengri1"], ["https://tec.openplanner.team/stops/Llgcamp2", "https://tec.openplanner.team/stops/Llgpire2"], ["https://tec.openplanner.team/stops/Bgnpchb1", "https://tec.openplanner.team/stops/Cgnquer1"], ["https://tec.openplanner.team/stops/N501dbb", "https://tec.openplanner.team/stops/N528aja"], ["https://tec.openplanner.team/stops/N226ada", "https://tec.openplanner.team/stops/N367ada"], ["https://tec.openplanner.team/stops/N235ada", "https://tec.openplanner.team/stops/N235afb"], ["https://tec.openplanner.team/stops/H2hg145b", "https://tec.openplanner.team/stops/H2hg149b"], ["https://tec.openplanner.team/stops/Brixaug1", "https://tec.openplanner.team/stops/Brixaug3"], ["https://tec.openplanner.team/stops/LrcarsT2", "https://tec.openplanner.team/stops/Lrcprin1"], ["https://tec.openplanner.team/stops/H5bl123a", "https://tec.openplanner.team/stops/H5bl124b"], ["https://tec.openplanner.team/stops/Bernpon2", "https://tec.openplanner.team/stops/Bgemrom4"], ["https://tec.openplanner.team/stops/X638alb", "https://tec.openplanner.team/stops/X639aea"], ["https://tec.openplanner.team/stops/H1au112a", "https://tec.openplanner.team/stops/H1au114a"], ["https://tec.openplanner.team/stops/X783adb", "https://tec.openplanner.team/stops/X784aja"], ["https://tec.openplanner.team/stops/H4rc232a", "https://tec.openplanner.team/stops/H4rc232b"], ["https://tec.openplanner.team/stops/Lstamph2", "https://tec.openplanner.team/stops/Lstetud1"], ["https://tec.openplanner.team/stops/N548aab", "https://tec.openplanner.team/stops/N569aea"], ["https://tec.openplanner.team/stops/X896abb", "https://tec.openplanner.team/stops/X896adb"], ["https://tec.openplanner.team/stops/H4gu109a", "https://tec.openplanner.team/stops/H4we134a"], ["https://tec.openplanner.team/stops/Cblsall2", "https://tec.openplanner.team/stops/Cslegli2"], ["https://tec.openplanner.team/stops/Btubhoq2", "https://tec.openplanner.team/stops/Btubmar1"], ["https://tec.openplanner.team/stops/X662anb", "https://tec.openplanner.team/stops/X662aoa"], ["https://tec.openplanner.team/stops/Brsgecu1", "https://tec.openplanner.team/stops/Brsgpbo1"], ["https://tec.openplanner.team/stops/N232axa", "https://tec.openplanner.team/stops/N232aya"], ["https://tec.openplanner.team/stops/LAIrout2", "https://tec.openplanner.team/stops/LSCchap1"], ["https://tec.openplanner.team/stops/Croplom3", "https://tec.openplanner.team/stops/Croplom5"], ["https://tec.openplanner.team/stops/Bblmwma2", "https://tec.openplanner.team/stops/Bwlhppg4"], ["https://tec.openplanner.team/stops/N539apb", "https://tec.openplanner.team/stops/N539aqa"], ["https://tec.openplanner.team/stops/Lghprea1", "https://tec.openplanner.team/stops/Lghprea4"], ["https://tec.openplanner.team/stops/Llgavoc1", "https://tec.openplanner.team/stops/LlgnicT1"], ["https://tec.openplanner.team/stops/H4es108b", "https://tec.openplanner.team/stops/H4es113a"], ["https://tec.openplanner.team/stops/Bllncyc2", "https://tec.openplanner.team/stops/Bllnein3"], ["https://tec.openplanner.team/stops/N510aab", "https://tec.openplanner.team/stops/N510abb"], ["https://tec.openplanner.team/stops/LHAprei2", "https://tec.openplanner.team/stops/LHAvall1"], ["https://tec.openplanner.team/stops/Bgdhpco1", "https://tec.openplanner.team/stops/Bthspha1"], ["https://tec.openplanner.team/stops/N535aib", "https://tec.openplanner.team/stops/N535aub"], ["https://tec.openplanner.team/stops/X908acb", "https://tec.openplanner.team/stops/X908adb"], ["https://tec.openplanner.team/stops/X390aka", "https://tec.openplanner.team/stops/X390akb"], ["https://tec.openplanner.team/stops/X804abb", "https://tec.openplanner.team/stops/X804bka"], ["https://tec.openplanner.team/stops/LdE179-1", "https://tec.openplanner.team/stops/LdEschw1"], ["https://tec.openplanner.team/stops/LLrbuis1", "https://tec.openplanner.team/stops/LLrisa-*"], ["https://tec.openplanner.team/stops/H4ty310a", "https://tec.openplanner.team/stops/H4ty312a"], ["https://tec.openplanner.team/stops/Broncli1", "https://tec.openplanner.team/stops/Bronfou1"], ["https://tec.openplanner.team/stops/X758aaa", "https://tec.openplanner.team/stops/X758abb"], ["https://tec.openplanner.team/stops/N553aia", "https://tec.openplanner.team/stops/N553aib"], ["https://tec.openplanner.team/stops/LELchap1", "https://tec.openplanner.team/stops/LHCquat4"], ["https://tec.openplanner.team/stops/LBLplas1", "https://tec.openplanner.team/stops/LBLplas2"], ["https://tec.openplanner.team/stops/Bbsicen1", "https://tec.openplanner.team/stops/Bbsicen2"], ["https://tec.openplanner.team/stops/Ldifoye2", "https://tec.openplanner.team/stops/Lprorph1"], ["https://tec.openplanner.team/stops/Lra4bra2", "https://tec.openplanner.team/stops/Lrafusi2"], ["https://tec.openplanner.team/stops/N543ala", "https://tec.openplanner.team/stops/N543cga"], ["https://tec.openplanner.team/stops/N562bha", "https://tec.openplanner.team/stops/N562bhb"], ["https://tec.openplanner.team/stops/Baegd741", "https://tec.openplanner.team/stops/Bnvmfba1"], ["https://tec.openplanner.team/stops/H4oq226b", "https://tec.openplanner.team/stops/H4oq226c"], ["https://tec.openplanner.team/stops/H4mb202a", "https://tec.openplanner.team/stops/H4va231a"], ["https://tec.openplanner.team/stops/H4bn100a", "https://tec.openplanner.team/stops/H4ws158a"], ["https://tec.openplanner.team/stops/Lgrlimi1", "https://tec.openplanner.team/stops/Llgvinc2"], ["https://tec.openplanner.team/stops/Cmbcime4", "https://tec.openplanner.team/stops/Crclorc1"], ["https://tec.openplanner.team/stops/X662abb", "https://tec.openplanner.team/stops/X662ata"], ["https://tec.openplanner.team/stops/N515aob", "https://tec.openplanner.team/stops/N515asb"], ["https://tec.openplanner.team/stops/N229akc", "https://tec.openplanner.team/stops/N229apb"], ["https://tec.openplanner.team/stops/H4lp121a", "https://tec.openplanner.team/stops/H4lp123b"], ["https://tec.openplanner.team/stops/LWAgare*", "https://tec.openplanner.team/stops/LWAlong3"], ["https://tec.openplanner.team/stops/X746aca", "https://tec.openplanner.team/stops/X746alb"], ["https://tec.openplanner.team/stops/LLOchpl2", "https://tec.openplanner.team/stops/LLOspin2"], ["https://tec.openplanner.team/stops/X669ahb", "https://tec.openplanner.team/stops/X672aic"], ["https://tec.openplanner.team/stops/Blingar3", "https://tec.openplanner.team/stops/Bracrpe2"], ["https://tec.openplanner.team/stops/X721alb", "https://tec.openplanner.team/stops/X721arb"], ["https://tec.openplanner.team/stops/N352adb", "https://tec.openplanner.team/stops/N352aea"], ["https://tec.openplanner.team/stops/LHTmonu1", "https://tec.openplanner.team/stops/LHTmonu2"], ["https://tec.openplanner.team/stops/H4ch118a", "https://tec.openplanner.team/stops/H4ch119b"], ["https://tec.openplanner.team/stops/N232cda", "https://tec.openplanner.team/stops/N232cdb"], ["https://tec.openplanner.team/stops/Lhrpepi1", "https://tec.openplanner.team/stops/Ljuauto2"], ["https://tec.openplanner.team/stops/Bbcoroy2", "https://tec.openplanner.team/stops/Bhenfla2"], ["https://tec.openplanner.team/stops/X880agb", "https://tec.openplanner.team/stops/X880ahb"], ["https://tec.openplanner.team/stops/LHmferm2", "https://tec.openplanner.team/stops/LLbrecu1"], ["https://tec.openplanner.team/stops/NL73ada", "https://tec.openplanner.team/stops/NL73adb"], ["https://tec.openplanner.team/stops/LGObeth1", "https://tec.openplanner.team/stops/LGObeth2"], ["https://tec.openplanner.team/stops/X982bfa", "https://tec.openplanner.team/stops/X982bmb"], ["https://tec.openplanner.team/stops/X818aga", "https://tec.openplanner.team/stops/X820aab"], ["https://tec.openplanner.team/stops/X615axa", "https://tec.openplanner.team/stops/X615bgb"], ["https://tec.openplanner.team/stops/X612abb", "https://tec.openplanner.team/stops/X612ada"], ["https://tec.openplanner.team/stops/Cchhopi1", "https://tec.openplanner.team/stops/Cchwate2"], ["https://tec.openplanner.team/stops/H1ch100a", "https://tec.openplanner.team/stops/H1ch106b"], ["https://tec.openplanner.team/stops/H4ty345a", "https://tec.openplanner.team/stops/H4ty356d"], ["https://tec.openplanner.team/stops/H1ha184a", "https://tec.openplanner.team/stops/H1ss348b"], ["https://tec.openplanner.team/stops/N232anb", "https://tec.openplanner.team/stops/N232aob"], ["https://tec.openplanner.team/stops/LCSpoud2", "https://tec.openplanner.team/stops/LENoule2"], ["https://tec.openplanner.team/stops/LFTeg--2", "https://tec.openplanner.team/stops/LNAbois2"], ["https://tec.openplanner.team/stops/LAWaube2", "https://tec.openplanner.team/stops/LAWcite1"], ["https://tec.openplanner.team/stops/LCTgare3", "https://tec.openplanner.team/stops/LCTmonu2"], ["https://tec.openplanner.team/stops/X784ada", "https://tec.openplanner.team/stops/X784aeb"], ["https://tec.openplanner.team/stops/H4br110a", "https://tec.openplanner.team/stops/H4pe124a"], ["https://tec.openplanner.team/stops/Bnivfra1", "https://tec.openplanner.team/stops/Bnivfra2"], ["https://tec.openplanner.team/stops/Lflcle-1", "https://tec.openplanner.team/stops/Lflcle-2"], ["https://tec.openplanner.team/stops/Lsmcime*", "https://tec.openplanner.team/stops/Lsmrcim1"], ["https://tec.openplanner.team/stops/X758agb", "https://tec.openplanner.team/stops/X758aib"], ["https://tec.openplanner.team/stops/H1wi147a", "https://tec.openplanner.team/stops/H1wi147b"], ["https://tec.openplanner.team/stops/LETsaiv2", "https://tec.openplanner.team/stops/LETtemp2"], ["https://tec.openplanner.team/stops/LsVgend2", "https://tec.openplanner.team/stops/LsVviel2"], ["https://tec.openplanner.team/stops/Btstbbu1", "https://tec.openplanner.team/stops/N524aca"], ["https://tec.openplanner.team/stops/LMnlogi2", "https://tec.openplanner.team/stops/N222aca"], ["https://tec.openplanner.team/stops/N101ajb", "https://tec.openplanner.team/stops/N101ama"], ["https://tec.openplanner.team/stops/X756aea", "https://tec.openplanner.team/stops/X756aeb"], ["https://tec.openplanner.team/stops/X601aga", "https://tec.openplanner.team/stops/X601aib"], ["https://tec.openplanner.team/stops/Llgwiar1", "https://tec.openplanner.team/stops/Llgwiar2"], ["https://tec.openplanner.team/stops/Cctpche2", "https://tec.openplanner.team/stops/NC44aeb"], ["https://tec.openplanner.team/stops/Cfrgare3", "https://tec.openplanner.team/stops/Cfrgare4"], ["https://tec.openplanner.team/stops/Lsemaqu1", "https://tec.openplanner.team/stops/Lseruis2"], ["https://tec.openplanner.team/stops/N518aab", "https://tec.openplanner.team/stops/N520aib"], ["https://tec.openplanner.team/stops/Bmrshan1", "https://tec.openplanner.team/stops/Cgncail2"], ["https://tec.openplanner.team/stops/H4ty341b", "https://tec.openplanner.team/stops/H4ty358a"], ["https://tec.openplanner.team/stops/H1gr120a", "https://tec.openplanner.team/stops/H1mk110b"], ["https://tec.openplanner.team/stops/Ladstat2", "https://tec.openplanner.team/stops/LThplen1"], ["https://tec.openplanner.team/stops/Btslcel1", "https://tec.openplanner.team/stops/Bwlhswc2"], ["https://tec.openplanner.team/stops/X660acb", "https://tec.openplanner.team/stops/X660aia"], ["https://tec.openplanner.team/stops/Cplcite1", "https://tec.openplanner.team/stops/Cplcite2"], ["https://tec.openplanner.team/stops/NC14amb", "https://tec.openplanner.team/stops/NC14aob"], ["https://tec.openplanner.team/stops/Bperalv2", "https://tec.openplanner.team/stops/Bpergar3"], ["https://tec.openplanner.team/stops/N894abb", "https://tec.openplanner.team/stops/N894aea"], ["https://tec.openplanner.team/stops/LGLbrus2", "https://tec.openplanner.team/stops/LSLdall2"], ["https://tec.openplanner.team/stops/N525ata", "https://tec.openplanner.team/stops/N526abb"], ["https://tec.openplanner.team/stops/LVEjard2", "https://tec.openplanner.team/stops/LVEstat2"], ["https://tec.openplanner.team/stops/LHrreal1", "https://tec.openplanner.team/stops/LHseg--1"], ["https://tec.openplanner.team/stops/LROchap2", "https://tec.openplanner.team/stops/LROhaie2"], ["https://tec.openplanner.team/stops/X941abb", "https://tec.openplanner.team/stops/X941aea"], ["https://tec.openplanner.team/stops/LVIsouv1", "https://tec.openplanner.team/stops/LVIsouv3"], ["https://tec.openplanner.team/stops/LBEabba1", "https://tec.openplanner.team/stops/LBEabbe2"], ["https://tec.openplanner.team/stops/Bwatbce1", "https://tec.openplanner.team/stops/Bwatnro2"], ["https://tec.openplanner.team/stops/N519aoa", "https://tec.openplanner.team/stops/N519apa"], ["https://tec.openplanner.team/stops/LSOathe1", "https://tec.openplanner.team/stops/LSOfech1"], ["https://tec.openplanner.team/stops/Bnivphm2", "https://tec.openplanner.team/stops/Bnivtra2"], ["https://tec.openplanner.team/stops/LOrchau1", "https://tec.openplanner.team/stops/LOrpont2"], ["https://tec.openplanner.team/stops/N204acb", "https://tec.openplanner.team/stops/N205abb"], ["https://tec.openplanner.team/stops/H4ef164a", "https://tec.openplanner.team/stops/H4fa127b"], ["https://tec.openplanner.team/stops/Lan14ve1", "https://tec.openplanner.team/stops/Llgnani2"], ["https://tec.openplanner.team/stops/LEMfort2", "https://tec.openplanner.team/stops/LWOcomm2"], ["https://tec.openplanner.team/stops/LPOleli2", "https://tec.openplanner.team/stops/LSdbvue1"], ["https://tec.openplanner.team/stops/LORcomb1", "https://tec.openplanner.team/stops/LORec--*"], ["https://tec.openplanner.team/stops/H4av106d", "https://tec.openplanner.team/stops/H4ff121b"], ["https://tec.openplanner.team/stops/N506bab", "https://tec.openplanner.team/stops/N506bmb"], ["https://tec.openplanner.team/stops/N343amb", "https://tec.openplanner.team/stops/N343ana"], ["https://tec.openplanner.team/stops/H1fr113a", "https://tec.openplanner.team/stops/H1fr125a"], ["https://tec.openplanner.team/stops/LHUeuro2", "https://tec.openplanner.team/stops/LHUlebe5"], ["https://tec.openplanner.team/stops/Clcfall1", "https://tec.openplanner.team/stops/Csscrot2"], ["https://tec.openplanner.team/stops/LaMwies1", "https://tec.openplanner.team/stops/LeIkirr1"], ["https://tec.openplanner.team/stops/X673aea", "https://tec.openplanner.team/stops/X674aaa"], ["https://tec.openplanner.team/stops/N543aca", "https://tec.openplanner.team/stops/N543bxa"], ["https://tec.openplanner.team/stops/X925ama", "https://tec.openplanner.team/stops/X949aeb"], ["https://tec.openplanner.team/stops/Ladegli1", "https://tec.openplanner.team/stops/Ladneuv1"], ["https://tec.openplanner.team/stops/X734afa", "https://tec.openplanner.team/stops/X734arb"], ["https://tec.openplanner.team/stops/LDaeg--1", "https://tec.openplanner.team/stops/LDaeg--2"], ["https://tec.openplanner.team/stops/LGlcite1", "https://tec.openplanner.team/stops/LHZ8mai2"], ["https://tec.openplanner.team/stops/N548adb", "https://tec.openplanner.team/stops/N548ama"], ["https://tec.openplanner.team/stops/Cairous2", "https://tec.openplanner.team/stops/N543cfb"], ["https://tec.openplanner.team/stops/H4we137c", "https://tec.openplanner.team/stops/H4we138b"], ["https://tec.openplanner.team/stops/H4bq154a", "https://tec.openplanner.team/stops/H4bq154b"], ["https://tec.openplanner.team/stops/LGeduc-1", "https://tec.openplanner.team/stops/LGefron1"], ["https://tec.openplanner.team/stops/N543bpa", "https://tec.openplanner.team/stops/N543bpb"], ["https://tec.openplanner.team/stops/Lhr3jui2", "https://tec.openplanner.team/stops/Lhrrhee*"], ["https://tec.openplanner.team/stops/N501ffa", "https://tec.openplanner.team/stops/N501haa"], ["https://tec.openplanner.team/stops/H2pr117a", "https://tec.openplanner.team/stops/H2pr119a"], ["https://tec.openplanner.team/stops/N501jba", "https://tec.openplanner.team/stops/N501jpa"], ["https://tec.openplanner.team/stops/LHtdros2", "https://tec.openplanner.team/stops/LHthest2"], ["https://tec.openplanner.team/stops/Bcbqh451", "https://tec.openplanner.team/stops/Bcbqp252"], ["https://tec.openplanner.team/stops/Lmndari1", "https://tec.openplanner.team/stops/Lmndari2"], ["https://tec.openplanner.team/stops/LPRcasi2", "https://tec.openplanner.team/stops/LPRpeti2"], ["https://tec.openplanner.team/stops/H1bn113b", "https://tec.openplanner.team/stops/H1bn148b"], ["https://tec.openplanner.team/stops/Cwgmart2", "https://tec.openplanner.team/stops/Cwgplac1"], ["https://tec.openplanner.team/stops/X979aha", "https://tec.openplanner.team/stops/X979aia"], ["https://tec.openplanner.team/stops/LPbover1", "https://tec.openplanner.team/stops/LVkchap2"], ["https://tec.openplanner.team/stops/Lghgend2", "https://tec.openplanner.team/stops/Ljerouy1"], ["https://tec.openplanner.team/stops/Cctptsa1", "https://tec.openplanner.team/stops/Ccutrav1"], ["https://tec.openplanner.team/stops/N508ajb", "https://tec.openplanner.team/stops/N508ajd"], ["https://tec.openplanner.team/stops/N340afb", "https://tec.openplanner.team/stops/N340ahb"], ["https://tec.openplanner.team/stops/Cgregli1", "https://tec.openplanner.team/stops/Cgrsaul1"], ["https://tec.openplanner.team/stops/X923adb", "https://tec.openplanner.team/stops/X941afa"], ["https://tec.openplanner.team/stops/H4ka191b", "https://tec.openplanner.team/stops/H4ty270a"], ["https://tec.openplanner.team/stops/Bblagar4", "https://tec.openplanner.team/stops/Bblagar5"], ["https://tec.openplanner.team/stops/H1cu108a", "https://tec.openplanner.team/stops/H1ms920a"], ["https://tec.openplanner.team/stops/N547ana", "https://tec.openplanner.team/stops/N553aqa"], ["https://tec.openplanner.team/stops/X636aab", "https://tec.openplanner.team/stops/X636abb"], ["https://tec.openplanner.team/stops/H1ro132b", "https://tec.openplanner.team/stops/H1ro141b"], ["https://tec.openplanner.team/stops/X911aka", "https://tec.openplanner.team/stops/X911ala"], ["https://tec.openplanner.team/stops/X618ana", "https://tec.openplanner.team/stops/X618anb"], ["https://tec.openplanner.team/stops/H2na132b", "https://tec.openplanner.team/stops/H2na135a"], ["https://tec.openplanner.team/stops/LNCfawe1", "https://tec.openplanner.team/stops/LNCsart2"], ["https://tec.openplanner.team/stops/X904ala", "https://tec.openplanner.team/stops/X942adb"], ["https://tec.openplanner.team/stops/H1gi120b", "https://tec.openplanner.team/stops/H1vs145b"], ["https://tec.openplanner.team/stops/Bcsebea4", "https://tec.openplanner.team/stops/Bsmgsuz1"], ["https://tec.openplanner.team/stops/N501dza", "https://tec.openplanner.team/stops/N501dzb"], ["https://tec.openplanner.team/stops/X880aea", "https://tec.openplanner.team/stops/X880aha"], ["https://tec.openplanner.team/stops/X688aaa", "https://tec.openplanner.team/stops/X688aab"], ["https://tec.openplanner.team/stops/H1bo101a", "https://tec.openplanner.team/stops/H1bo105a"], ["https://tec.openplanner.team/stops/H2bh108a", "https://tec.openplanner.team/stops/H2bh108b"], ["https://tec.openplanner.team/stops/X657agb", "https://tec.openplanner.team/stops/X657ala"], ["https://tec.openplanner.team/stops/N232ana", "https://tec.openplanner.team/stops/N232anb"], ["https://tec.openplanner.team/stops/X779acb", "https://tec.openplanner.team/stops/X779aea"], ["https://tec.openplanner.team/stops/Bblarbe1", "https://tec.openplanner.team/stops/Bblavba1"], ["https://tec.openplanner.team/stops/X754aeb", "https://tec.openplanner.team/stops/X754afb"], ["https://tec.openplanner.team/stops/H1gn150a", "https://tec.openplanner.team/stops/H1gq153a"], ["https://tec.openplanner.team/stops/X715ala", "https://tec.openplanner.team/stops/X715aqb"], ["https://tec.openplanner.team/stops/Bnivchh2", "https://tec.openplanner.team/stops/Bnivfhu1"], ["https://tec.openplanner.team/stops/Lscatme2", "https://tec.openplanner.team/stops/Lscbour1"], ["https://tec.openplanner.team/stops/Lfljupi1", "https://tec.openplanner.team/stops/Lrecroi1"], ["https://tec.openplanner.team/stops/Cgncail1", "https://tec.openplanner.team/stops/Clproi2"], ["https://tec.openplanner.team/stops/N577aba", "https://tec.openplanner.team/stops/N577ada"], ["https://tec.openplanner.team/stops/X780aha", "https://tec.openplanner.team/stops/X780ahb"], ["https://tec.openplanner.team/stops/H2ca112a", "https://tec.openplanner.team/stops/H2ch107b"], ["https://tec.openplanner.team/stops/Bcrbbou1", "https://tec.openplanner.team/stops/Bcrbros1"], ["https://tec.openplanner.team/stops/H2bh107b", "https://tec.openplanner.team/stops/H2jo162a"], ["https://tec.openplanner.team/stops/N385aac", "https://tec.openplanner.team/stops/N385aad"], ["https://tec.openplanner.team/stops/LcRmich1", "https://tec.openplanner.team/stops/LrDhund1"], ["https://tec.openplanner.team/stops/N135axb", "https://tec.openplanner.team/stops/N135bga"], ["https://tec.openplanner.team/stops/LLTeg--2", "https://tec.openplanner.team/stops/LMffoot1"], ["https://tec.openplanner.team/stops/Ccoptca2", "https://tec.openplanner.team/stops/Crowall1"], ["https://tec.openplanner.team/stops/LLebrux1", "https://tec.openplanner.team/stops/LVRchpl1"], ["https://tec.openplanner.team/stops/Lbrbass1", "https://tec.openplanner.team/stops/Lbrfagn2"], ["https://tec.openplanner.team/stops/LBApak2*", "https://tec.openplanner.team/stops/LETmagn2"], ["https://tec.openplanner.team/stops/Lfhbail1", "https://tec.openplanner.team/stops/Lfhhaso2"], ["https://tec.openplanner.team/stops/Lmobols2", "https://tec.openplanner.team/stops/Lmopech1"], ["https://tec.openplanner.team/stops/N245aba", "https://tec.openplanner.team/stops/N287ada"], ["https://tec.openplanner.team/stops/Caibino2", "https://tec.openplanner.team/stops/Caioign3"], ["https://tec.openplanner.team/stops/X561aab", "https://tec.openplanner.team/stops/X576afa"], ["https://tec.openplanner.team/stops/LBIcabi1", "https://tec.openplanner.team/stops/LBIcabi2"], ["https://tec.openplanner.team/stops/H1ob339a", "https://tec.openplanner.team/stops/H1ob339b"], ["https://tec.openplanner.team/stops/LMNcite2", "https://tec.openplanner.team/stops/LMNjard2"], ["https://tec.openplanner.team/stops/N539adc", "https://tec.openplanner.team/stops/N539aeb"], ["https://tec.openplanner.team/stops/H2lc169b", "https://tec.openplanner.team/stops/H2lc170b"], ["https://tec.openplanner.team/stops/Lsmgdry2", "https://tec.openplanner.team/stops/Lvecase2"], ["https://tec.openplanner.team/stops/Llggill1", "https://tec.openplanner.team/stops/Llgmaus1"], ["https://tec.openplanner.team/stops/N220aab", "https://tec.openplanner.team/stops/X394aca"], ["https://tec.openplanner.team/stops/N308bcb", "https://tec.openplanner.team/stops/N331adb"], ["https://tec.openplanner.team/stops/LPLcarr1", "https://tec.openplanner.team/stops/LPLcarr2"], ["https://tec.openplanner.team/stops/LSdcarr2", "https://tec.openplanner.team/stops/LSdcent1"], ["https://tec.openplanner.team/stops/N502aaa", "https://tec.openplanner.team/stops/N503aab"], ["https://tec.openplanner.team/stops/Ccygara2", "https://tec.openplanner.team/stops/Ccypn2"], ["https://tec.openplanner.team/stops/LTieg--2", "https://tec.openplanner.team/stops/LTiforg1"], ["https://tec.openplanner.team/stops/LCSfagn1", "https://tec.openplanner.team/stops/LCSpoud2"], ["https://tec.openplanner.team/stops/X750baa", "https://tec.openplanner.team/stops/X750bab"], ["https://tec.openplanner.team/stops/Cfmchap1", "https://tec.openplanner.team/stops/Cfmchap2"], ["https://tec.openplanner.team/stops/N132acb", "https://tec.openplanner.team/stops/N135adc"], ["https://tec.openplanner.team/stops/X982bda", "https://tec.openplanner.team/stops/X982bdb"], ["https://tec.openplanner.team/stops/N569aab", "https://tec.openplanner.team/stops/N569aca"], ["https://tec.openplanner.team/stops/N137ahb", "https://tec.openplanner.team/stops/N137aib"], ["https://tec.openplanner.team/stops/LVLf37-2", "https://tec.openplanner.team/stops/LVLsabl1"], ["https://tec.openplanner.team/stops/H1em103a", "https://tec.openplanner.team/stops/H1fa120b"], ["https://tec.openplanner.team/stops/H1at110a", "https://tec.openplanner.team/stops/H1at110c"], ["https://tec.openplanner.team/stops/N548aya", "https://tec.openplanner.team/stops/N548ayb"], ["https://tec.openplanner.team/stops/X818aua", "https://tec.openplanner.team/stops/X818awb"], ["https://tec.openplanner.team/stops/Cmyquen1", "https://tec.openplanner.team/stops/Cmywarc1"], ["https://tec.openplanner.team/stops/LLUlieg1", "https://tec.openplanner.team/stops/LLUtill4"], ["https://tec.openplanner.team/stops/LFFchal2", "https://tec.openplanner.team/stops/LVLsabl4"], ["https://tec.openplanner.team/stops/Cloauln1", "https://tec.openplanner.team/stops/Cloravi1"], ["https://tec.openplanner.team/stops/Bwatb4s1", "https://tec.openplanner.team/stops/Bwatnrs2"], ["https://tec.openplanner.team/stops/Baudulb1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/Lalbout2", "https://tec.openplanner.team/stops/Laltrap2"], ["https://tec.openplanner.team/stops/LeUnopr1", "https://tec.openplanner.team/stops/LeUnopr2"], ["https://tec.openplanner.team/stops/H4hx115a", "https://tec.openplanner.team/stops/H4hx124a"], ["https://tec.openplanner.team/stops/Lgrclas1", "https://tec.openplanner.team/stops/Lgrcoll1"], ["https://tec.openplanner.team/stops/N501caa", "https://tec.openplanner.team/stops/N502adb"], ["https://tec.openplanner.team/stops/X982aba", "https://tec.openplanner.team/stops/X982bza"], ["https://tec.openplanner.team/stops/N554aaa", "https://tec.openplanner.team/stops/N555acb"], ["https://tec.openplanner.team/stops/X809aca", "https://tec.openplanner.team/stops/X809ada"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X745abb"], ["https://tec.openplanner.team/stops/Blhusor1", "https://tec.openplanner.team/stops/Bovepla1"], ["https://tec.openplanner.team/stops/Cgxpair1", "https://tec.openplanner.team/stops/Cgxvkho3"], ["https://tec.openplanner.team/stops/H4mo133b", "https://tec.openplanner.team/stops/H4rk101b"], ["https://tec.openplanner.team/stops/N573apa", "https://tec.openplanner.team/stops/N573apb"], ["https://tec.openplanner.team/stops/Llghong1", "https://tec.openplanner.team/stops/Llgkurt1"], ["https://tec.openplanner.team/stops/LESgran1", "https://tec.openplanner.team/stops/LFNlato1"], ["https://tec.openplanner.team/stops/X989aca", "https://tec.openplanner.team/stops/X989acb"], ["https://tec.openplanner.team/stops/H4bx167a", "https://tec.openplanner.team/stops/H4ne139a"], ["https://tec.openplanner.team/stops/LkEl1211", "https://tec.openplanner.team/stops/LlNsc651"], ["https://tec.openplanner.team/stops/N219aba", "https://tec.openplanner.team/stops/N349aca"], ["https://tec.openplanner.team/stops/Llglys-2", "https://tec.openplanner.team/stops/Llgnaim2"], ["https://tec.openplanner.team/stops/LeSdorf1", "https://tec.openplanner.team/stops/LeSkreu1"], ["https://tec.openplanner.team/stops/LdUespe1", "https://tec.openplanner.team/stops/LdUespe3"], ["https://tec.openplanner.team/stops/X801ahb", "https://tec.openplanner.team/stops/X801aib"], ["https://tec.openplanner.team/stops/H5fl104b", "https://tec.openplanner.team/stops/H5wo123a"], ["https://tec.openplanner.team/stops/N538awa", "https://tec.openplanner.team/stops/N539ava"], ["https://tec.openplanner.team/stops/Bwspbos1", "https://tec.openplanner.team/stops/Bwspmon3"], ["https://tec.openplanner.team/stops/NL57alb", "https://tec.openplanner.team/stops/NL57ama"], ["https://tec.openplanner.team/stops/Cmmtomb1", "https://tec.openplanner.team/stops/Cmmtomb2"], ["https://tec.openplanner.team/stops/LCEcent2", "https://tec.openplanner.team/stops/LCEeg--1"], ["https://tec.openplanner.team/stops/N501dqa", "https://tec.openplanner.team/stops/N501dqb"], ["https://tec.openplanner.team/stops/Bhlvlou2", "https://tec.openplanner.team/stops/Blpghou2"], ["https://tec.openplanner.team/stops/Cmllait1", "https://tec.openplanner.team/stops/Cmlstgi1"], ["https://tec.openplanner.team/stops/X663acb", "https://tec.openplanner.team/stops/X663adb"], ["https://tec.openplanner.team/stops/Clpalli1", "https://tec.openplanner.team/stops/Clpnapo1"], ["https://tec.openplanner.team/stops/Cprvill1", "https://tec.openplanner.team/stops/NC11ana"], ["https://tec.openplanner.team/stops/N260aca", "https://tec.openplanner.team/stops/N260acb"], ["https://tec.openplanner.team/stops/Bcer4br1", "https://tec.openplanner.team/stops/Bcer4br5"], ["https://tec.openplanner.team/stops/Cjxpris2", "https://tec.openplanner.team/stops/Cnachcu1"], ["https://tec.openplanner.team/stops/Lhrsimo1", "https://tec.openplanner.team/stops/Lhrsimo4"], ["https://tec.openplanner.team/stops/LAyfren2", "https://tec.openplanner.team/stops/Lflrhot1"], ["https://tec.openplanner.team/stops/X670apc", "https://tec.openplanner.team/stops/X670asa"], ["https://tec.openplanner.team/stops/N207adc", "https://tec.openplanner.team/stops/N209aab"], ["https://tec.openplanner.team/stops/X769afa", "https://tec.openplanner.team/stops/X769ajb"], ["https://tec.openplanner.team/stops/X659agb", "https://tec.openplanner.team/stops/X659ata"], ["https://tec.openplanner.team/stops/X652afa", "https://tec.openplanner.team/stops/X652afd"], ["https://tec.openplanner.team/stops/Bnstpla1", "https://tec.openplanner.team/stops/H2na133a"], ["https://tec.openplanner.team/stops/LBAtign2", "https://tec.openplanner.team/stops/LSAchef1"], ["https://tec.openplanner.team/stops/H2lh127a", "https://tec.openplanner.team/stops/H2lh131b"], ["https://tec.openplanner.team/stops/LHUchpl1", "https://tec.openplanner.team/stops/LHUfonc2"], ["https://tec.openplanner.team/stops/N536aba", "https://tec.openplanner.team/stops/N563aaa"], ["https://tec.openplanner.team/stops/Csschat1", "https://tec.openplanner.team/stops/Csscrot1"], ["https://tec.openplanner.team/stops/N512aia", "https://tec.openplanner.team/stops/N512aoa"], ["https://tec.openplanner.team/stops/LHGleje1", "https://tec.openplanner.team/stops/LHGtige2"], ["https://tec.openplanner.team/stops/Lhubarl2", "https://tec.openplanner.team/stops/LPoxhav1"], ["https://tec.openplanner.team/stops/LNEcouc1", "https://tec.openplanner.team/stops/LNEec--1"], ["https://tec.openplanner.team/stops/Llgfoss1", "https://tec.openplanner.team/stops/Llglonh1"], ["https://tec.openplanner.team/stops/N554adb", "https://tec.openplanner.team/stops/N566afb"], ["https://tec.openplanner.team/stops/H1gh163b", "https://tec.openplanner.team/stops/H1gh171b"], ["https://tec.openplanner.team/stops/N323aba", "https://tec.openplanner.team/stops/N360aab"], ["https://tec.openplanner.team/stops/Llgbago1", "https://tec.openplanner.team/stops/Llgware2"], ["https://tec.openplanner.team/stops/H4oe151b", "https://tec.openplanner.team/stops/H4oe152b"], ["https://tec.openplanner.team/stops/Lhulibe1", "https://tec.openplanner.team/stops/Lhutran2"], ["https://tec.openplanner.team/stops/Lcebarr2", "https://tec.openplanner.team/stops/Lceviei1"], ["https://tec.openplanner.team/stops/LHrchez2", "https://tec.openplanner.team/stops/LHrreal2"], ["https://tec.openplanner.team/stops/Bgnvdep2", "https://tec.openplanner.team/stops/Bgnvpco3"], ["https://tec.openplanner.team/stops/Bgembhe1", "https://tec.openplanner.team/stops/N576adb"], ["https://tec.openplanner.team/stops/Brsggol1", "https://tec.openplanner.team/stops/Brsggol2"], ["https://tec.openplanner.team/stops/X672aaa", "https://tec.openplanner.team/stops/X817aga"], ["https://tec.openplanner.team/stops/LSPguer2", "https://tec.openplanner.team/stops/LSPsorb1"], ["https://tec.openplanner.team/stops/Ldichat1", "https://tec.openplanner.team/stops/Ldifoye2"], ["https://tec.openplanner.team/stops/N313aab", "https://tec.openplanner.team/stops/N313aba"], ["https://tec.openplanner.team/stops/H1sy145b", "https://tec.openplanner.team/stops/H1to155b"], ["https://tec.openplanner.team/stops/H1gh147a", "https://tec.openplanner.team/stops/H1gh165c"], ["https://tec.openplanner.team/stops/LHuetat1", "https://tec.openplanner.team/stops/LHuetat2"], ["https://tec.openplanner.team/stops/Btilmon1", "https://tec.openplanner.team/stops/Btilsnc1"], ["https://tec.openplanner.team/stops/X779abb", "https://tec.openplanner.team/stops/X779aeb"], ["https://tec.openplanner.team/stops/X601bgb", "https://tec.openplanner.team/stops/X601bha"], ["https://tec.openplanner.team/stops/LkTgutl2", "https://tec.openplanner.team/stops/LkTraer2"], ["https://tec.openplanner.team/stops/H1ho133b", "https://tec.openplanner.team/stops/H1ho135b"], ["https://tec.openplanner.team/stops/X770aga", "https://tec.openplanner.team/stops/X774aad"], ["https://tec.openplanner.team/stops/Bnivbpe3", "https://tec.openplanner.team/stops/Bptrcra2"], ["https://tec.openplanner.team/stops/Cchparc4", "https://tec.openplanner.team/stops/CMparc2"], ["https://tec.openplanner.team/stops/Cjuvign1", "https://tec.openplanner.team/stops/Cjuvign2"], ["https://tec.openplanner.team/stops/X649abb", "https://tec.openplanner.team/stops/X671adb"], ["https://tec.openplanner.team/stops/H4we136a", "https://tec.openplanner.team/stops/H4we137d"], ["https://tec.openplanner.team/stops/H2ll178d", "https://tec.openplanner.team/stops/H2ll258b"], ["https://tec.openplanner.team/stops/Cgzlera1", "https://tec.openplanner.team/stops/Cmyrays2"], ["https://tec.openplanner.team/stops/LXoeg--4", "https://tec.openplanner.team/stops/LXofont2"], ["https://tec.openplanner.team/stops/Lbrptbr5", "https://tec.openplanner.team/stops/Llgmara1"], ["https://tec.openplanner.team/stops/LJAdeho1", "https://tec.openplanner.team/stops/LJAdeho4"], ["https://tec.openplanner.team/stops/H1cd111d", "https://tec.openplanner.team/stops/H1hr126b"], ["https://tec.openplanner.team/stops/X614aib", "https://tec.openplanner.team/stops/X614ajb"], ["https://tec.openplanner.team/stops/X831ada", "https://tec.openplanner.team/stops/X831aeb"], ["https://tec.openplanner.team/stops/X897aca", "https://tec.openplanner.team/stops/X897ada"], ["https://tec.openplanner.team/stops/X805aba", "https://tec.openplanner.team/stops/X805afb"], ["https://tec.openplanner.team/stops/H1le121a", "https://tec.openplanner.team/stops/H1le122d"], ["https://tec.openplanner.team/stops/X879aab", "https://tec.openplanner.team/stops/X879aqb"], ["https://tec.openplanner.team/stops/Btubbai1", "https://tec.openplanner.team/stops/Btubsal1"], ["https://tec.openplanner.team/stops/H1be104b", "https://tec.openplanner.team/stops/H1hw118a"], ["https://tec.openplanner.team/stops/N308aga", "https://tec.openplanner.team/stops/N308aob"], ["https://tec.openplanner.team/stops/LLegare1", "https://tec.openplanner.team/stops/X547aeb"], ["https://tec.openplanner.team/stops/Bgzdgst1", "https://tec.openplanner.team/stops/Bgzdgst2"], ["https://tec.openplanner.team/stops/Cfodepo1", "https://tec.openplanner.team/stops/Cfoermi2"], ["https://tec.openplanner.team/stops/H4mb138a", "https://tec.openplanner.team/stops/H4mb143d"], ["https://tec.openplanner.team/stops/H4tu170b", "https://tec.openplanner.team/stops/H4tu172b"], ["https://tec.openplanner.team/stops/LAMcime1", "https://tec.openplanner.team/stops/LAMpirk2"], ["https://tec.openplanner.team/stops/LScdina2", "https://tec.openplanner.team/stops/LTNcarr4"], ["https://tec.openplanner.team/stops/Bhalber2", "https://tec.openplanner.team/stops/Bhaldbo1"], ["https://tec.openplanner.team/stops/Cjuhame1", "https://tec.openplanner.team/stops/Cjulamb1"], ["https://tec.openplanner.team/stops/LsVfrie2", "https://tec.openplanner.team/stops/LsVrodt1"], ["https://tec.openplanner.team/stops/LAUberg2", "https://tec.openplanner.team/stops/LFdbagu1"], ["https://tec.openplanner.team/stops/Bcsecar2", "https://tec.openplanner.team/stops/Bcseeco2"], ["https://tec.openplanner.team/stops/X681ada", "https://tec.openplanner.team/stops/X681aeb"], ["https://tec.openplanner.team/stops/H1wz170a", "https://tec.openplanner.team/stops/H1wz170b"], ["https://tec.openplanner.team/stops/N351alb", "https://tec.openplanner.team/stops/N351ana"], ["https://tec.openplanner.team/stops/H4rc231b", "https://tec.openplanner.team/stops/H4rc232c"], ["https://tec.openplanner.team/stops/Crgegli2", "https://tec.openplanner.team/stops/Crgmgri1"], ["https://tec.openplanner.team/stops/Bjaugaz1", "https://tec.openplanner.team/stops/Bjaugaz2"], ["https://tec.openplanner.team/stops/LHNvill1", "https://tec.openplanner.team/stops/LHNvill2"], ["https://tec.openplanner.team/stops/X661axa", "https://tec.openplanner.team/stops/X661axb"], ["https://tec.openplanner.team/stops/H1hn204a", "https://tec.openplanner.team/stops/H1mv242b"], ["https://tec.openplanner.team/stops/LSHfief1", "https://tec.openplanner.team/stops/LSOgott2"], ["https://tec.openplanner.team/stops/N125acb", "https://tec.openplanner.team/stops/N149alb"], ["https://tec.openplanner.team/stops/LSU50--1", "https://tec.openplanner.team/stops/LSUvill1"], ["https://tec.openplanner.team/stops/Bnivasa2", "https://tec.openplanner.team/stops/Bnivplt1"], ["https://tec.openplanner.team/stops/H4ea134b", "https://tec.openplanner.team/stops/H4tp145a"], ["https://tec.openplanner.team/stops/Crapaep2", "https://tec.openplanner.team/stops/Crasabl3"], ["https://tec.openplanner.team/stops/H4og214b", "https://tec.openplanner.team/stops/H4og215a"], ["https://tec.openplanner.team/stops/H4ry133a", "https://tec.openplanner.team/stops/H4ry133b"], ["https://tec.openplanner.team/stops/Btubdeh2", "https://tec.openplanner.team/stops/Btubind2"], ["https://tec.openplanner.team/stops/Ldilyce*", "https://tec.openplanner.team/stops/Lprdavi2"], ["https://tec.openplanner.team/stops/Bsmgbsa2", "https://tec.openplanner.team/stops/Bsmgegl2"], ["https://tec.openplanner.team/stops/Bsdapir1", "https://tec.openplanner.team/stops/Csdrofr2"], ["https://tec.openplanner.team/stops/LLreque1", "https://tec.openplanner.team/stops/LLrisa-*"], ["https://tec.openplanner.team/stops/H4ka191b", "https://tec.openplanner.team/stops/H4ka193b"], ["https://tec.openplanner.team/stops/LbTgeme1", "https://tec.openplanner.team/stops/LsHfrie2"], ["https://tec.openplanner.team/stops/LAWroug1", "https://tec.openplanner.team/stops/LAWroug2"], ["https://tec.openplanner.team/stops/X910aea", "https://tec.openplanner.team/stops/X910afa"], ["https://tec.openplanner.team/stops/N241aba", "https://tec.openplanner.team/stops/N539aya"], ["https://tec.openplanner.team/stops/X995afa", "https://tec.openplanner.team/stops/X995afb"], ["https://tec.openplanner.team/stops/H1cu113b", "https://tec.openplanner.team/stops/H1hn206b"], ["https://tec.openplanner.team/stops/X725azb", "https://tec.openplanner.team/stops/X725bab"], ["https://tec.openplanner.team/stops/N141aba", "https://tec.openplanner.team/stops/N141aoa"], ["https://tec.openplanner.team/stops/LAmab751", "https://tec.openplanner.team/stops/LATguis1"], ["https://tec.openplanner.team/stops/Cgotech1", "https://tec.openplanner.team/stops/Cwxplac1"], ["https://tec.openplanner.team/stops/LClange1", "https://tec.openplanner.team/stops/LCljose1"], ["https://tec.openplanner.team/stops/H1ba115b", "https://tec.openplanner.team/stops/H1te174a"], ["https://tec.openplanner.team/stops/X746aea", "https://tec.openplanner.team/stops/X749aea"], ["https://tec.openplanner.team/stops/N542aqa", "https://tec.openplanner.team/stops/N542asa"], ["https://tec.openplanner.team/stops/H1hy125b", "https://tec.openplanner.team/stops/H1hy126a"], ["https://tec.openplanner.team/stops/Cbfpoti1", "https://tec.openplanner.team/stops/Cctsold1"], ["https://tec.openplanner.team/stops/H4bv145a", "https://tec.openplanner.team/stops/H4bv145c"], ["https://tec.openplanner.team/stops/Cgylami1", "https://tec.openplanner.team/stops/Cgynoir2"], ["https://tec.openplanner.team/stops/Cgoloca1", "https://tec.openplanner.team/stops/Cgoloca2"], ["https://tec.openplanner.team/stops/X761acb", "https://tec.openplanner.team/stops/X761ada"], ["https://tec.openplanner.team/stops/X994aba", "https://tec.openplanner.team/stops/X994aeb"], ["https://tec.openplanner.team/stops/H4wi169a", "https://tec.openplanner.team/stops/H4wi169b"], ["https://tec.openplanner.team/stops/Cfodepo1", "https://tec.openplanner.team/stops/CMpara1"], ["https://tec.openplanner.team/stops/LLApavi1", "https://tec.openplanner.team/stops/LMgwith2"], ["https://tec.openplanner.team/stops/Bgnpchb1", "https://tec.openplanner.team/stops/Bvxgegl2"], ["https://tec.openplanner.team/stops/LBYwez-1", "https://tec.openplanner.team/stops/LXHeg--2"], ["https://tec.openplanner.team/stops/N520aha", "https://tec.openplanner.team/stops/N520aja"], ["https://tec.openplanner.team/stops/N121ada", "https://tec.openplanner.team/stops/N121afa"], ["https://tec.openplanner.team/stops/N311acb", "https://tec.openplanner.team/stops/N360aab"], ["https://tec.openplanner.team/stops/Cflcoro1", "https://tec.openplanner.team/stops/Cflmarq2"], ["https://tec.openplanner.team/stops/X724abb", "https://tec.openplanner.team/stops/X724acb"], ["https://tec.openplanner.team/stops/X731ada", "https://tec.openplanner.team/stops/X731adb"], ["https://tec.openplanner.team/stops/LWLeg--2", "https://tec.openplanner.team/stops/LWLeg--3"], ["https://tec.openplanner.team/stops/Bblacea1", "https://tec.openplanner.team/stops/Bblacea2"], ["https://tec.openplanner.team/stops/N338aha", "https://tec.openplanner.team/stops/N338ahb"], ["https://tec.openplanner.team/stops/LFochap1", "https://tec.openplanner.team/stops/LGOmonu1"], ["https://tec.openplanner.team/stops/Bottpar1", "https://tec.openplanner.team/stops/Bottpar2"], ["https://tec.openplanner.team/stops/H1eu102b", "https://tec.openplanner.team/stops/H1eu103b"], ["https://tec.openplanner.team/stops/X992aha", "https://tec.openplanner.team/stops/X992aia"], ["https://tec.openplanner.team/stops/LSpschi1", "https://tec.openplanner.team/stops/LSpshin2"], ["https://tec.openplanner.team/stops/X614aea", "https://tec.openplanner.team/stops/X614aeb"], ["https://tec.openplanner.team/stops/Bfelagb1", "https://tec.openplanner.team/stops/Bfelbri3"], ["https://tec.openplanner.team/stops/X358acd", "https://tec.openplanner.team/stops/X993abd"], ["https://tec.openplanner.team/stops/X621acb", "https://tec.openplanner.team/stops/X622adb"], ["https://tec.openplanner.team/stops/LOuilc-*", "https://tec.openplanner.team/stops/LOunebl2"], ["https://tec.openplanner.team/stops/H4rm112a", "https://tec.openplanner.team/stops/H4rm114a"], ["https://tec.openplanner.team/stops/LTPnoup1", "https://tec.openplanner.team/stops/LTPpreh2"], ["https://tec.openplanner.team/stops/X601ajb", "https://tec.openplanner.team/stops/X601bta"], ["https://tec.openplanner.team/stops/Bove4ko2", "https://tec.openplanner.team/stops/Brsregl4"], ["https://tec.openplanner.team/stops/Bsgeegl4", "https://tec.openplanner.team/stops/Bvilcha2"], ["https://tec.openplanner.team/stops/H2hg271a", "https://tec.openplanner.team/stops/H2ll199a"], ["https://tec.openplanner.team/stops/H4ga151a", "https://tec.openplanner.team/stops/H4vz371a"], ["https://tec.openplanner.team/stops/H5rx138a", "https://tec.openplanner.team/stops/H5rx143b"], ["https://tec.openplanner.team/stops/Brsrpar1", "https://tec.openplanner.team/stops/Brsrpar2"], ["https://tec.openplanner.team/stops/LMEeg--2", "https://tec.openplanner.team/stops/LMEwerg2"], ["https://tec.openplanner.team/stops/LHecime1", "https://tec.openplanner.team/stops/LHecime2"], ["https://tec.openplanner.team/stops/X878acb", "https://tec.openplanner.team/stops/X878adb"], ["https://tec.openplanner.team/stops/Bhaless1", "https://tec.openplanner.team/stops/Bhalomo1"], ["https://tec.openplanner.team/stops/H2bh103a", "https://tec.openplanner.team/stops/H2bh103b"], ["https://tec.openplanner.team/stops/N501fwy", "https://tec.openplanner.team/stops/N501hhb"], ["https://tec.openplanner.team/stops/Cctchav1", "https://tec.openplanner.team/stops/NC11aga"], ["https://tec.openplanner.team/stops/Clomakr1", "https://tec.openplanner.team/stops/Clomari5"], ["https://tec.openplanner.team/stops/LWahetr1", "https://tec.openplanner.team/stops/LWalyce1"], ["https://tec.openplanner.team/stops/Cgzfarc1", "https://tec.openplanner.team/stops/Cgzfarc2"], ["https://tec.openplanner.team/stops/N516ada", "https://tec.openplanner.team/stops/N516adb"], ["https://tec.openplanner.team/stops/Cflchel2", "https://tec.openplanner.team/stops/Cflchel6"], ["https://tec.openplanner.team/stops/Lenauln2", "https://tec.openplanner.team/stops/Lvedepo*"], ["https://tec.openplanner.team/stops/N501aob", "https://tec.openplanner.team/stops/N501mja"], ["https://tec.openplanner.team/stops/LHZ8mai1", "https://tec.openplanner.team/stops/LHZec--1"], ["https://tec.openplanner.team/stops/LtH37c-2", "https://tec.openplanner.team/stops/LtHkirc3"], ["https://tec.openplanner.team/stops/H1ba106a", "https://tec.openplanner.team/stops/H1te173a"], ["https://tec.openplanner.team/stops/Bgrhcen2", "https://tec.openplanner.team/stops/Bgrhcro2"], ["https://tec.openplanner.team/stops/X663aub", "https://tec.openplanner.team/stops/X663ava"], ["https://tec.openplanner.team/stops/Bhevjal2", "https://tec.openplanner.team/stops/Bhevl3l2"], ["https://tec.openplanner.team/stops/LLrdigu1", "https://tec.openplanner.team/stops/LLrgara1"], ["https://tec.openplanner.team/stops/Cnacout1", "https://tec.openplanner.team/stops/Cnacroc2"], ["https://tec.openplanner.team/stops/LAuvill1", "https://tec.openplanner.team/stops/LWRcruc1"], ["https://tec.openplanner.team/stops/X644aab", "https://tec.openplanner.team/stops/X644aba"], ["https://tec.openplanner.team/stops/X813ada", "https://tec.openplanner.team/stops/X813adb"], ["https://tec.openplanner.team/stops/Buccdho1", "https://tec.openplanner.team/stops/Buccdho2"], ["https://tec.openplanner.team/stops/LrAbe601", "https://tec.openplanner.team/stops/LrAbe602"], ["https://tec.openplanner.team/stops/H3bi101a", "https://tec.openplanner.team/stops/H3bi110b"], ["https://tec.openplanner.team/stops/N115aab", "https://tec.openplanner.team/stops/N115ada"], ["https://tec.openplanner.team/stops/X793afb", "https://tec.openplanner.team/stops/X793ajb"], ["https://tec.openplanner.team/stops/H2ll194b", "https://tec.openplanner.team/stops/H2ll201a"], ["https://tec.openplanner.team/stops/Bdvmcsa1", "https://tec.openplanner.team/stops/Bdvmcsa2"], ["https://tec.openplanner.team/stops/Bwatath1", "https://tec.openplanner.team/stops/Bwatlbs1"], ["https://tec.openplanner.team/stops/X946abb", "https://tec.openplanner.team/stops/X946acb"], ["https://tec.openplanner.team/stops/Lbhpeti1", "https://tec.openplanner.team/stops/LMFmoul1"], ["https://tec.openplanner.team/stops/Llgbrab2", "https://tec.openplanner.team/stops/Llgstvi1"], ["https://tec.openplanner.team/stops/Buccpes2", "https://tec.openplanner.team/stops/Bwbfckr1"], ["https://tec.openplanner.team/stops/N577aia", "https://tec.openplanner.team/stops/N577aja"], ["https://tec.openplanner.team/stops/LeIkreu1", "https://tec.openplanner.team/stops/LeIkreu4"], ["https://tec.openplanner.team/stops/LCRvert2", "https://tec.openplanner.team/stops/LKmdani1"], ["https://tec.openplanner.team/stops/X839aea", "https://tec.openplanner.team/stops/X839afa"], ["https://tec.openplanner.team/stops/Ccotrie2", "https://tec.openplanner.team/stops/Ccotrie4"], ["https://tec.openplanner.team/stops/H4es117a", "https://tec.openplanner.team/stops/H4ln155a"], ["https://tec.openplanner.team/stops/LjeGRPMB", "https://tec.openplanner.team/stops/LjeGRPMD"], ["https://tec.openplanner.team/stops/N520aeb", "https://tec.openplanner.team/stops/N521aob"], ["https://tec.openplanner.team/stops/Cgd4ven1", "https://tec.openplanner.team/stops/Cgd4ven2"], ["https://tec.openplanner.team/stops/H2fy123c", "https://tec.openplanner.team/stops/H2fy123d"], ["https://tec.openplanner.team/stops/X757afa", "https://tec.openplanner.team/stops/X757afb"], ["https://tec.openplanner.team/stops/LDObell2", "https://tec.openplanner.team/stops/LSubass1"], ["https://tec.openplanner.team/stops/X767aaa", "https://tec.openplanner.team/stops/X768aca"], ["https://tec.openplanner.team/stops/H1nm138a", "https://tec.openplanner.team/stops/H1si164b"], ["https://tec.openplanner.team/stops/NL76aja", "https://tec.openplanner.team/stops/NL76aka"], ["https://tec.openplanner.team/stops/LCTfair2", "https://tec.openplanner.team/stops/LCTmonu2"], ["https://tec.openplanner.team/stops/Ldichat1", "https://tec.openplanner.team/stops/Lprorem2"], ["https://tec.openplanner.team/stops/N229aca", "https://tec.openplanner.team/stops/N229aea"], ["https://tec.openplanner.team/stops/H4fr391a", "https://tec.openplanner.team/stops/H4fr392a"], ["https://tec.openplanner.team/stops/N507afb", "https://tec.openplanner.team/stops/N507aob"], ["https://tec.openplanner.team/stops/H1ro133a", "https://tec.openplanner.team/stops/H4wi166b"], ["https://tec.openplanner.team/stops/Lsephar1", "https://tec.openplanner.team/stops/Ltihala2"], ["https://tec.openplanner.team/stops/X954afa", "https://tec.openplanner.team/stops/X954afb"], ["https://tec.openplanner.team/stops/X804apb", "https://tec.openplanner.team/stops/X805aba"], ["https://tec.openplanner.team/stops/LVTeg--1", "https://tec.openplanner.team/stops/LVTforg1"], ["https://tec.openplanner.team/stops/X941aca", "https://tec.openplanner.team/stops/X941ada"], ["https://tec.openplanner.team/stops/Lbrfusi1", "https://tec.openplanner.team/stops/Lgrfort1"], ["https://tec.openplanner.team/stops/H2pr116a", "https://tec.openplanner.team/stops/H2pr117b"], ["https://tec.openplanner.team/stops/N501hsa", "https://tec.openplanner.team/stops/N501hsz"], ["https://tec.openplanner.team/stops/Cpljonc2", "https://tec.openplanner.team/stops/NC11afa"], ["https://tec.openplanner.team/stops/Lvcchev1", "https://tec.openplanner.team/stops/Lvcchev2"], ["https://tec.openplanner.team/stops/Bhanmou1", "https://tec.openplanner.team/stops/Bhanmou2"], ["https://tec.openplanner.team/stops/H4mt215a", "https://tec.openplanner.team/stops/H4mx118a"], ["https://tec.openplanner.team/stops/Cwfdame2", "https://tec.openplanner.team/stops/Cwfmonu1"], ["https://tec.openplanner.team/stops/X919aaa", "https://tec.openplanner.team/stops/X919abb"], ["https://tec.openplanner.team/stops/X597ana", "https://tec.openplanner.team/stops/X597anb"], ["https://tec.openplanner.team/stops/Bnivcma1", "https://tec.openplanner.team/stops/Bnivcma2"], ["https://tec.openplanner.team/stops/N501gpa", "https://tec.openplanner.team/stops/N501msa"], ["https://tec.openplanner.team/stops/Cgocapu2", "https://tec.openplanner.team/stops/Cgohnda1"], ["https://tec.openplanner.team/stops/Lfhdone1", "https://tec.openplanner.team/stops/Lfhdone2"], ["https://tec.openplanner.team/stops/Buccfja2", "https://tec.openplanner.team/stops/Buccrac2"], ["https://tec.openplanner.team/stops/LWieg--*", "https://tec.openplanner.team/stops/LWipaif1"], ["https://tec.openplanner.team/stops/X923abb", "https://tec.openplanner.team/stops/X923ama"], ["https://tec.openplanner.team/stops/Bhmmvdu1", "https://tec.openplanner.team/stops/Bnetace2"], ["https://tec.openplanner.team/stops/Ltiecch1", "https://tec.openplanner.team/stops/Ltinico1"], ["https://tec.openplanner.team/stops/N501aca", "https://tec.openplanner.team/stops/N503acb"], ["https://tec.openplanner.team/stops/N562ata", "https://tec.openplanner.team/stops/N562bsb"], ["https://tec.openplanner.team/stops/H4co150b", "https://tec.openplanner.team/stops/H4co162a"], ["https://tec.openplanner.team/stops/H4fr143a", "https://tec.openplanner.team/stops/H4ma401b"], ["https://tec.openplanner.team/stops/Brxmcha1", "https://tec.openplanner.team/stops/Brxmhai4"], ["https://tec.openplanner.team/stops/H1gn149a", "https://tec.openplanner.team/stops/H1mq200a"], ["https://tec.openplanner.team/stops/LVNwanz1", "https://tec.openplanner.team/stops/LVNwanz2"], ["https://tec.openplanner.team/stops/Lchsa631", "https://tec.openplanner.team/stops/Lchsaec2"], ["https://tec.openplanner.team/stops/LBRmc--1", "https://tec.openplanner.team/stops/LBRmc--4"], ["https://tec.openplanner.team/stops/H4mb139a", "https://tec.openplanner.team/stops/H4mb141a"], ["https://tec.openplanner.team/stops/H1ci105a", "https://tec.openplanner.team/stops/H1ci105b"], ["https://tec.openplanner.team/stops/X982afa", "https://tec.openplanner.team/stops/X982afb"], ["https://tec.openplanner.team/stops/LHUpost2", "https://tec.openplanner.team/stops/LHUpost3"], ["https://tec.openplanner.team/stops/LBAcarr1", "https://tec.openplanner.team/stops/LBAcarr2"], ["https://tec.openplanner.team/stops/Lbrlama1", "https://tec.openplanner.team/stops/Lgrmagd1"], ["https://tec.openplanner.team/stops/LMOford1", "https://tec.openplanner.team/stops/LMOlens2"], ["https://tec.openplanner.team/stops/H1hr116a", "https://tec.openplanner.team/stops/H2pr117a"], ["https://tec.openplanner.team/stops/X858aeb", "https://tec.openplanner.team/stops/X858ahb"], ["https://tec.openplanner.team/stops/LSNbouh3", "https://tec.openplanner.team/stops/LSNness1"], ["https://tec.openplanner.team/stops/X822aba", "https://tec.openplanner.team/stops/X822anb"], ["https://tec.openplanner.team/stops/H2bh109a", "https://tec.openplanner.team/stops/H2bh117b"], ["https://tec.openplanner.team/stops/N203aab", "https://tec.openplanner.team/stops/N204aeb"], ["https://tec.openplanner.team/stops/Beclfde1", "https://tec.openplanner.team/stops/Bfelfde1"], ["https://tec.openplanner.team/stops/H4ty282a", "https://tec.openplanner.team/stops/H4ty282b"], ["https://tec.openplanner.team/stops/Bnivbne2", "https://tec.openplanner.team/stops/Bnivbos1"], ["https://tec.openplanner.team/stops/N211aia", "https://tec.openplanner.team/stops/N211aib"], ["https://tec.openplanner.team/stops/N534ara", "https://tec.openplanner.team/stops/N534auc"], ["https://tec.openplanner.team/stops/LBCaube2", "https://tec.openplanner.team/stops/LCdchod2"], ["https://tec.openplanner.team/stops/X756aca", "https://tec.openplanner.team/stops/X756ada"], ["https://tec.openplanner.team/stops/H1bb117a", "https://tec.openplanner.team/stops/H1bb117b"], ["https://tec.openplanner.team/stops/X786aib", "https://tec.openplanner.team/stops/X789aca"], ["https://tec.openplanner.team/stops/H1cu111a", "https://tec.openplanner.team/stops/H1ms922a"], ["https://tec.openplanner.team/stops/H4wa155a", "https://tec.openplanner.team/stops/H4wa155b"], ["https://tec.openplanner.team/stops/H4eq123b", "https://tec.openplanner.team/stops/H4pq114a"], ["https://tec.openplanner.team/stops/LREelse2", "https://tec.openplanner.team/stops/LREsoug4"], ["https://tec.openplanner.team/stops/N213aab", "https://tec.openplanner.team/stops/N213aca"], ["https://tec.openplanner.team/stops/X661aua", "https://tec.openplanner.team/stops/X817agb"], ["https://tec.openplanner.team/stops/H1ms281b", "https://tec.openplanner.team/stops/H1ni322b"], ["https://tec.openplanner.team/stops/H1pa108b", "https://tec.openplanner.team/stops/H1pa116b"], ["https://tec.openplanner.team/stops/H4ea131b", "https://tec.openplanner.team/stops/H5qu154a"], ["https://tec.openplanner.team/stops/Cmiegli2", "https://tec.openplanner.team/stops/Cmitrie2"], ["https://tec.openplanner.team/stops/X650aea", "https://tec.openplanner.team/stops/X650aeb"], ["https://tec.openplanner.team/stops/NL77aba", "https://tec.openplanner.team/stops/NL77aca"], ["https://tec.openplanner.team/stops/Bblaast1", "https://tec.openplanner.team/stops/Bblacim2"], ["https://tec.openplanner.team/stops/Cjufrat1", "https://tec.openplanner.team/stops/Cjurevo2"], ["https://tec.openplanner.team/stops/X614aoa", "https://tec.openplanner.team/stops/X614aob"], ["https://tec.openplanner.team/stops/LWAclos1", "https://tec.openplanner.team/stops/LWAmois2"], ["https://tec.openplanner.team/stops/X615anb", "https://tec.openplanner.team/stops/X615aua"], ["https://tec.openplanner.team/stops/N204aha", "https://tec.openplanner.team/stops/N204aia"], ["https://tec.openplanner.team/stops/LJeeg--1", "https://tec.openplanner.team/stops/LJetrih2"], ["https://tec.openplanner.team/stops/N211ada", "https://tec.openplanner.team/stops/N211afa"], ["https://tec.openplanner.team/stops/N501cca", "https://tec.openplanner.team/stops/N521aua"], ["https://tec.openplanner.team/stops/X652aca", "https://tec.openplanner.team/stops/X652acc"], ["https://tec.openplanner.team/stops/N521ada", "https://tec.openplanner.team/stops/N521asb"], ["https://tec.openplanner.team/stops/LAUneuv3", "https://tec.openplanner.team/stops/LAUvict4"], ["https://tec.openplanner.team/stops/Lscferr1", "https://tec.openplanner.team/stops/Lscpamp1"], ["https://tec.openplanner.team/stops/N122aca", "https://tec.openplanner.team/stops/N122acb"], ["https://tec.openplanner.team/stops/X601cdb", "https://tec.openplanner.team/stops/X601cea"], ["https://tec.openplanner.team/stops/Bwatavo1", "https://tec.openplanner.team/stops/Bwatcro2"], ["https://tec.openplanner.team/stops/Cctfrbe2", "https://tec.openplanner.team/stops/NC11aia"], ["https://tec.openplanner.team/stops/X746afa", "https://tec.openplanner.team/stops/X746ahc"], ["https://tec.openplanner.team/stops/LAWdefu4", "https://tec.openplanner.team/stops/LAWvold1"], ["https://tec.openplanner.team/stops/H1te174a", "https://tec.openplanner.team/stops/H1te185a"], ["https://tec.openplanner.team/stops/N217aca", "https://tec.openplanner.team/stops/N217acd"], ["https://tec.openplanner.team/stops/H1eo108b", "https://tec.openplanner.team/stops/H1gh148a"], ["https://tec.openplanner.team/stops/H1pa116a", "https://tec.openplanner.team/stops/H1wa155b"], ["https://tec.openplanner.team/stops/Bbaubon1", "https://tec.openplanner.team/stops/Bnivphs1"], ["https://tec.openplanner.team/stops/LHUsauv1", "https://tec.openplanner.team/stops/LHUsauv4"], ["https://tec.openplanner.team/stops/N244aib", "https://tec.openplanner.team/stops/N287aab"], ["https://tec.openplanner.team/stops/N512atb", "https://tec.openplanner.team/stops/NL68adc"], ["https://tec.openplanner.team/stops/Lvesomm2", "https://tec.openplanner.team/stops/Lvesomm3"], ["https://tec.openplanner.team/stops/LAicarr2", "https://tec.openplanner.team/stops/LAivill2"], ["https://tec.openplanner.team/stops/H1ne141b", "https://tec.openplanner.team/stops/H1ne145b"], ["https://tec.openplanner.team/stops/LCTgare3", "https://tec.openplanner.team/stops/LGmcent1"], ["https://tec.openplanner.team/stops/N501faa", "https://tec.openplanner.team/stops/N501mab"], ["https://tec.openplanner.team/stops/Lbralbe1", "https://tec.openplanner.team/stops/Lbrresi2"], ["https://tec.openplanner.team/stops/H2fy123c", "https://tec.openplanner.team/stops/H2jo161d"], ["https://tec.openplanner.team/stops/LBPunic1", "https://tec.openplanner.team/stops/LGLgeer1"], ["https://tec.openplanner.team/stops/H2sv211b", "https://tec.openplanner.team/stops/H2sv220b"], ["https://tec.openplanner.team/stops/Cfoermi2", "https://tec.openplanner.team/stops/CMpara1"], ["https://tec.openplanner.team/stops/N111afa", "https://tec.openplanner.team/stops/N111afb"], ["https://tec.openplanner.team/stops/X811aba", "https://tec.openplanner.team/stops/X811abb"], ["https://tec.openplanner.team/stops/LERpouh1", "https://tec.openplanner.team/stops/LERpouh2"], ["https://tec.openplanner.team/stops/Ctaallo1", "https://tec.openplanner.team/stops/Ctapn1"], ["https://tec.openplanner.team/stops/X850aeb", "https://tec.openplanner.team/stops/X850aia"], ["https://tec.openplanner.team/stops/N529afb", "https://tec.openplanner.team/stops/N576afb"], ["https://tec.openplanner.team/stops/LWApr%C3%A9s3", "https://tec.openplanner.team/stops/LWAwegg2"], ["https://tec.openplanner.team/stops/LVbpave2", "https://tec.openplanner.team/stops/LVbstre2"], ["https://tec.openplanner.team/stops/Lvicitw2", "https://tec.openplanner.team/stops/Lviweri2"], ["https://tec.openplanner.team/stops/H1ms276a", "https://tec.openplanner.team/stops/H1ms906a"], ["https://tec.openplanner.team/stops/LSZarbe2", "https://tec.openplanner.team/stops/LTgbalm2"], ["https://tec.openplanner.team/stops/LSCc39-1", "https://tec.openplanner.team/stops/LSCc39-2"], ["https://tec.openplanner.team/stops/H4ty326a", "https://tec.openplanner.team/stops/H4vx361a"], ["https://tec.openplanner.team/stops/X923ada", "https://tec.openplanner.team/stops/X949ala"], ["https://tec.openplanner.team/stops/N215aab", "https://tec.openplanner.team/stops/N261agb"], ["https://tec.openplanner.team/stops/LmHbien1", "https://tec.openplanner.team/stops/LmHburg1"], ["https://tec.openplanner.team/stops/LOtthie2", "https://tec.openplanner.team/stops/LVHbrai2"], ["https://tec.openplanner.team/stops/LpEbins1", "https://tec.openplanner.team/stops/LtEnatu2"], ["https://tec.openplanner.team/stops/LaLkabi1", "https://tec.openplanner.team/stops/LaLkirc*"], ["https://tec.openplanner.team/stops/X725ada", "https://tec.openplanner.team/stops/X725aha"], ["https://tec.openplanner.team/stops/X747afa", "https://tec.openplanner.team/stops/X747afb"], ["https://tec.openplanner.team/stops/X892afb", "https://tec.openplanner.team/stops/X892aga"], ["https://tec.openplanner.team/stops/H1og135a", "https://tec.openplanner.team/stops/H1og135b"], ["https://tec.openplanner.team/stops/Crcrgar2", "https://tec.openplanner.team/stops/NH03aga"], ["https://tec.openplanner.team/stops/LHHtill1", "https://tec.openplanner.team/stops/LSG111-1"], ["https://tec.openplanner.team/stops/Ccoha602", "https://tec.openplanner.team/stops/Ctrstro1"], ["https://tec.openplanner.team/stops/H1al108a", "https://tec.openplanner.team/stops/H1go169a"], ["https://tec.openplanner.team/stops/Blemkap1", "https://tec.openplanner.team/stops/Blemwob3"], ["https://tec.openplanner.team/stops/LBahaut1", "https://tec.openplanner.team/stops/LTAairi2"], ["https://tec.openplanner.team/stops/LHHlomb1", "https://tec.openplanner.team/stops/LOmlime2"], ["https://tec.openplanner.team/stops/LdUkreu1", "https://tec.openplanner.team/stops/LlE02--2"], ["https://tec.openplanner.team/stops/LATfont2", "https://tec.openplanner.team/stops/LVNbale1"], ["https://tec.openplanner.team/stops/Bhalber3", "https://tec.openplanner.team/stops/Bhalrat2"], ["https://tec.openplanner.team/stops/N117ana", "https://tec.openplanner.team/stops/N117anb"], ["https://tec.openplanner.team/stops/H4te258a", "https://tec.openplanner.team/stops/H4te259a"], ["https://tec.openplanner.team/stops/H4ty269a", "https://tec.openplanner.team/stops/H4ty294a"], ["https://tec.openplanner.team/stops/LENaout1", "https://tec.openplanner.team/stops/LENchem2"], ["https://tec.openplanner.team/stops/Llgbass2", "https://tec.openplanner.team/stops/Llghec-1"], ["https://tec.openplanner.team/stops/H1hr120b", "https://tec.openplanner.team/stops/H1hr129a"], ["https://tec.openplanner.team/stops/Cmmcarr1", "https://tec.openplanner.team/stops/Cmmptno2"], ["https://tec.openplanner.team/stops/N501akb", "https://tec.openplanner.team/stops/N501aob"], ["https://tec.openplanner.team/stops/Bmelsab2", "https://tec.openplanner.team/stops/Btilmon2"], ["https://tec.openplanner.team/stops/X741ahb", "https://tec.openplanner.team/stops/X741anb"], ["https://tec.openplanner.team/stops/H4bi100a", "https://tec.openplanner.team/stops/H4eg101d"], ["https://tec.openplanner.team/stops/N507ada", "https://tec.openplanner.team/stops/NL30akb"], ["https://tec.openplanner.team/stops/X912aeb", "https://tec.openplanner.team/stops/X912aja"], ["https://tec.openplanner.team/stops/X940aab", "https://tec.openplanner.team/stops/X940adb"], ["https://tec.openplanner.team/stops/LlgPTAV1", "https://tec.openplanner.team/stops/LlgPTAV4"], ["https://tec.openplanner.team/stops/LFreg--1", "https://tec.openplanner.team/stops/LNEcouc1"], ["https://tec.openplanner.team/stops/Bbgeegl1", "https://tec.openplanner.team/stops/Bwavlep2"], ["https://tec.openplanner.team/stops/LNIec--2", "https://tec.openplanner.team/stops/LSZnive1"], ["https://tec.openplanner.team/stops/LdEkreu1", "https://tec.openplanner.team/stops/LdEschw1"], ["https://tec.openplanner.team/stops/X802ara", "https://tec.openplanner.team/stops/X802asb"], ["https://tec.openplanner.team/stops/N211awa", "https://tec.openplanner.team/stops/N212abb"], ["https://tec.openplanner.team/stops/H4ga167a", "https://tec.openplanner.team/stops/H4ga168b"], ["https://tec.openplanner.team/stops/Cpicite2", "https://tec.openplanner.team/stops/Cpictra2"], ["https://tec.openplanner.team/stops/N513aeb", "https://tec.openplanner.team/stops/N513aoa"], ["https://tec.openplanner.team/stops/Cgycvie1", "https://tec.openplanner.team/stops/Cgymast2"], ["https://tec.openplanner.team/stops/N554abb", "https://tec.openplanner.team/stops/N555aba"], ["https://tec.openplanner.team/stops/H1le124b", "https://tec.openplanner.team/stops/H1le128c"], ["https://tec.openplanner.team/stops/Bbgevil2", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://tec.openplanner.team/stops/Lbrfune*", "https://tec.openplanner.team/stops/Lgrfrai2"], ["https://tec.openplanner.team/stops/X364aaa", "https://tec.openplanner.team/stops/X371agb"], ["https://tec.openplanner.team/stops/N506anb", "https://tec.openplanner.team/stops/N537alb"], ["https://tec.openplanner.team/stops/Bgnvcom2", "https://tec.openplanner.team/stops/Bgnvqve1"], ["https://tec.openplanner.team/stops/N541abb", "https://tec.openplanner.team/stops/N541aca"], ["https://tec.openplanner.team/stops/LChxhav2", "https://tec.openplanner.team/stops/LSW26--1"], ["https://tec.openplanner.team/stops/LeUhutt1", "https://tec.openplanner.team/stops/LeUmeie1"], ["https://tec.openplanner.team/stops/X610adb", "https://tec.openplanner.team/stops/X610aha"], ["https://tec.openplanner.team/stops/Cmqbasv2", "https://tec.openplanner.team/stops/H1ro133a"], ["https://tec.openplanner.team/stops/N120aib", "https://tec.openplanner.team/stops/N120ala"], ["https://tec.openplanner.team/stops/X986aga", "https://tec.openplanner.team/stops/X986aja"], ["https://tec.openplanner.team/stops/LsVbell2", "https://tec.openplanner.team/stops/LsVhunn2"], ["https://tec.openplanner.team/stops/X818ala", "https://tec.openplanner.team/stops/X818alb"], ["https://tec.openplanner.team/stops/LOcgdro2", "https://tec.openplanner.team/stops/LOcgdro4"], ["https://tec.openplanner.team/stops/Bcsgcou1", "https://tec.openplanner.team/stops/Bmrssmc1"], ["https://tec.openplanner.team/stops/LRtmame2", "https://tec.openplanner.team/stops/LSevitu2"], ["https://tec.openplanner.team/stops/Bdoncar1", "https://tec.openplanner.team/stops/Bincdon2"], ["https://tec.openplanner.team/stops/LmObahn*", "https://tec.openplanner.team/stops/LmOkape1"], ["https://tec.openplanner.team/stops/Cblcent2", "https://tec.openplanner.team/stops/Cblcent4"], ["https://tec.openplanner.team/stops/Lmndeso1", "https://tec.openplanner.team/stops/Lsmberg2"], ["https://tec.openplanner.team/stops/H1mv238b", "https://tec.openplanner.team/stops/H1mv242a"], ["https://tec.openplanner.team/stops/Clfmonu3", "https://tec.openplanner.team/stops/Clftour2"], ["https://tec.openplanner.team/stops/X731aea", "https://tec.openplanner.team/stops/X986ala"], ["https://tec.openplanner.team/stops/X818aqa", "https://tec.openplanner.team/stops/X818arb"], ["https://tec.openplanner.team/stops/LElgerd5", "https://tec.openplanner.team/stops/LOucarr2"], ["https://tec.openplanner.team/stops/LCSpoud2", "https://tec.openplanner.team/stops/LEN183-2"], ["https://tec.openplanner.team/stops/X763aeb", "https://tec.openplanner.team/stops/X765aga"], ["https://tec.openplanner.team/stops/H4ne135b", "https://tec.openplanner.team/stops/H4ne141b"], ["https://tec.openplanner.team/stops/LBBcarr2", "https://tec.openplanner.team/stops/N223aab"], ["https://tec.openplanner.team/stops/Lsefoot2", "https://tec.openplanner.team/stops/Lsestap1"], ["https://tec.openplanner.team/stops/Lcacaps1", "https://tec.openplanner.team/stops/LNipre-1"], ["https://tec.openplanner.team/stops/Cmofosb2", "https://tec.openplanner.team/stops/Cmoprov2"], ["https://tec.openplanner.team/stops/LaAhaup2", "https://tec.openplanner.team/stops/LaAnorm2"], ["https://tec.openplanner.team/stops/Claptcf2", "https://tec.openplanner.team/stops/NC23afb"], ["https://tec.openplanner.team/stops/LBThaut2", "https://tec.openplanner.team/stops/Lprmana5"], ["https://tec.openplanner.team/stops/N117aoc", "https://tec.openplanner.team/stops/N117aua"], ["https://tec.openplanner.team/stops/LHCandr1", "https://tec.openplanner.team/stops/LHCbran1"], ["https://tec.openplanner.team/stops/LRIcite1", "https://tec.openplanner.team/stops/LRIhous2"], ["https://tec.openplanner.team/stops/X773aia", "https://tec.openplanner.team/stops/X773akb"], ["https://tec.openplanner.team/stops/Bcsepes1", "https://tec.openplanner.team/stops/Bcsepes2"], ["https://tec.openplanner.team/stops/Ccodubo1", "https://tec.openplanner.team/stops/Ccojaur4"], ["https://tec.openplanner.team/stops/Bchapir1", "https://tec.openplanner.team/stops/Bhvltol2"], ["https://tec.openplanner.team/stops/N539aya", "https://tec.openplanner.team/stops/N564acb"], ["https://tec.openplanner.team/stops/Cfmnoci2", "https://tec.openplanner.team/stops/Cfoperz2"], ["https://tec.openplanner.team/stops/Lcebail1", "https://tec.openplanner.team/stops/Lceleje1"], ["https://tec.openplanner.team/stops/LHrbast1", "https://tec.openplanner.team/stops/LHrchat1"], ["https://tec.openplanner.team/stops/Btanbth2", "https://tec.openplanner.team/stops/Btannda2"], ["https://tec.openplanner.team/stops/Bjancha1", "https://tec.openplanner.team/stops/Bjanegl2"], ["https://tec.openplanner.team/stops/X653aab", "https://tec.openplanner.team/stops/X653afa"], ["https://tec.openplanner.team/stops/Cwgmutu1", "https://tec.openplanner.team/stops/Cwgrans4"], ["https://tec.openplanner.team/stops/Lpeflec1", "https://tec.openplanner.team/stops/Lpelouh2"], ["https://tec.openplanner.team/stops/Cmocime1", "https://tec.openplanner.team/stops/Cmohame1"], ["https://tec.openplanner.team/stops/Cfaecmo1", "https://tec.openplanner.team/stops/Cfarcam2"], ["https://tec.openplanner.team/stops/Lagcolo1", "https://tec.openplanner.team/stops/Lemsart2"], ["https://tec.openplanner.team/stops/N519aja", "https://tec.openplanner.team/stops/N519aob"], ["https://tec.openplanner.team/stops/Lhracec2", "https://tec.openplanner.team/stops/Lhrstev1"], ["https://tec.openplanner.team/stops/X601cua", "https://tec.openplanner.team/stops/X601cva"], ["https://tec.openplanner.team/stops/H4ta127a", "https://tec.openplanner.team/stops/H4ta127b"], ["https://tec.openplanner.team/stops/Lghcham2", "https://tec.openplanner.team/stops/Lghreyn1"], ["https://tec.openplanner.team/stops/Llgmara2", "https://tec.openplanner.team/stops/Llgnyst2"], ["https://tec.openplanner.team/stops/LMYmont2", "https://tec.openplanner.team/stops/LVvbouv2"], ["https://tec.openplanner.team/stops/Cvregl2", "https://tec.openplanner.team/stops/Cvrhaie2"], ["https://tec.openplanner.team/stops/LwYkirc1", "https://tec.openplanner.team/stops/LwYkirc2"], ["https://tec.openplanner.team/stops/H1pw123b", "https://tec.openplanner.team/stops/H1wa158a"], ["https://tec.openplanner.team/stops/LFArela4", "https://tec.openplanner.team/stops/LFAwale2"], ["https://tec.openplanner.team/stops/X788afa", "https://tec.openplanner.team/stops/X788agb"], ["https://tec.openplanner.team/stops/H1bx106a", "https://tec.openplanner.team/stops/H1qv111b"], ["https://tec.openplanner.team/stops/N349aab", "https://tec.openplanner.team/stops/N349adb"], ["https://tec.openplanner.team/stops/X641aia", "https://tec.openplanner.team/stops/X641aib"], ["https://tec.openplanner.team/stops/Canpeup1", "https://tec.openplanner.team/stops/Canpeup2"], ["https://tec.openplanner.team/stops/H3br112b", "https://tec.openplanner.team/stops/H3br122b"], ["https://tec.openplanner.team/stops/X601aka", "https://tec.openplanner.team/stops/X601ama"], ["https://tec.openplanner.team/stops/LMAbijo2", "https://tec.openplanner.team/stops/LMAgb--2"], ["https://tec.openplanner.team/stops/N568aca", "https://tec.openplanner.team/stops/N568ada"], ["https://tec.openplanner.team/stops/Blascvi1", "https://tec.openplanner.team/stops/Blascvi2"], ["https://tec.openplanner.team/stops/X982aua", "https://tec.openplanner.team/stops/X982aub"], ["https://tec.openplanner.team/stops/Balswin3", "https://tec.openplanner.team/stops/Brsgfon2"], ["https://tec.openplanner.team/stops/LTaeg--1", "https://tec.openplanner.team/stops/LTaouch2"], ["https://tec.openplanner.team/stops/H1ms273a", "https://tec.openplanner.team/stops/H1ms914a"], ["https://tec.openplanner.team/stops/N230aea", "https://tec.openplanner.team/stops/N230ala"], ["https://tec.openplanner.team/stops/LMIbois2", "https://tec.openplanner.team/stops/LMIeg--2"], ["https://tec.openplanner.team/stops/Cmaest2", "https://tec.openplanner.team/stops/Cmmn1172"], ["https://tec.openplanner.team/stops/H1th181a", "https://tec.openplanner.team/stops/H3go105a"], ["https://tec.openplanner.team/stops/N539ata", "https://tec.openplanner.team/stops/N539bfa"], ["https://tec.openplanner.team/stops/X658abb", "https://tec.openplanner.team/stops/X671afa"], ["https://tec.openplanner.team/stops/Cgxbeau1", "https://tec.openplanner.team/stops/Cgxbeau2"], ["https://tec.openplanner.team/stops/H4ty333b", "https://tec.openplanner.team/stops/H4ty359b"], ["https://tec.openplanner.team/stops/LThhoul2", "https://tec.openplanner.team/stops/LThplen1"], ["https://tec.openplanner.team/stops/LTRgare0", "https://tec.openplanner.team/stops/LTRgare4"], ["https://tec.openplanner.team/stops/N564adb", "https://tec.openplanner.team/stops/N564aeb"], ["https://tec.openplanner.team/stops/N501ira", "https://tec.openplanner.team/stops/N501jca"], ["https://tec.openplanner.team/stops/Bopprju1", "https://tec.openplanner.team/stops/Bopprju2"], ["https://tec.openplanner.team/stops/LBUchpl1", "https://tec.openplanner.team/stops/LBUmara2"], ["https://tec.openplanner.team/stops/N311adb", "https://tec.openplanner.team/stops/N368abb"], ["https://tec.openplanner.team/stops/X725aha", "https://tec.openplanner.team/stops/X725bda"], ["https://tec.openplanner.team/stops/LSPhapa1", "https://tec.openplanner.team/stops/LSPsorb2"], ["https://tec.openplanner.team/stops/Lccawir1", "https://tec.openplanner.team/stops/Lccawir2"], ["https://tec.openplanner.team/stops/X786aha", "https://tec.openplanner.team/stops/X786aib"], ["https://tec.openplanner.team/stops/N347aca", "https://tec.openplanner.team/stops/N347acb"], ["https://tec.openplanner.team/stops/Lsemany1", "https://tec.openplanner.team/stops/Lsetroq2"], ["https://tec.openplanner.team/stops/N517aga", "https://tec.openplanner.team/stops/N517agb"], ["https://tec.openplanner.team/stops/Bfelcen2", "https://tec.openplanner.team/stops/Bfelpmo2"], ["https://tec.openplanner.team/stops/X764aaa", "https://tec.openplanner.team/stops/X764agb"], ["https://tec.openplanner.team/stops/Ccygara1", "https://tec.openplanner.team/stops/NH01aca"], ["https://tec.openplanner.team/stops/Cflvxsa2", "https://tec.openplanner.team/stops/Cpicite1"], ["https://tec.openplanner.team/stops/N524aab", "https://tec.openplanner.team/stops/N524aba"], ["https://tec.openplanner.team/stops/H2mo122c", "https://tec.openplanner.team/stops/H2mo145a"], ["https://tec.openplanner.team/stops/LwTkabi3", "https://tec.openplanner.team/stops/LwTkabi4"], ["https://tec.openplanner.team/stops/H2ch110a", "https://tec.openplanner.team/stops/H2ch123b"], ["https://tec.openplanner.team/stops/Crsapol1", "https://tec.openplanner.team/stops/Crsmonu2"], ["https://tec.openplanner.team/stops/Bincbbo2", "https://tec.openplanner.team/stops/Boppcar2"], ["https://tec.openplanner.team/stops/N248adb", "https://tec.openplanner.team/stops/N248aeb"], ["https://tec.openplanner.team/stops/Lhrherm2", "https://tec.openplanner.team/stops/Lhrmemo2"], ["https://tec.openplanner.team/stops/Bgoemho2", "https://tec.openplanner.team/stops/Bhakmkr1"], ["https://tec.openplanner.team/stops/LlOdrei2", "https://tec.openplanner.team/stops/LsTgren2"], ["https://tec.openplanner.team/stops/X919afb", "https://tec.openplanner.team/stops/X919ahb"], ["https://tec.openplanner.team/stops/N501gzz", "https://tec.openplanner.team/stops/N501zba"], ["https://tec.openplanner.team/stops/NR21aia", "https://tec.openplanner.team/stops/NR21aib"], ["https://tec.openplanner.team/stops/Bcsen252", "https://tec.openplanner.team/stops/Bsmgmar1"], ["https://tec.openplanner.team/stops/LeYberl2", "https://tec.openplanner.team/stops/LeYwess2"], ["https://tec.openplanner.team/stops/LJAbois1", "https://tec.openplanner.team/stops/Ljhsart2"], ["https://tec.openplanner.team/stops/H1ms275b", "https://tec.openplanner.team/stops/H1ms281b"], ["https://tec.openplanner.team/stops/H4ef109b", "https://tec.openplanner.team/stops/H4ef112a"], ["https://tec.openplanner.team/stops/LSSvill2", "https://tec.openplanner.team/stops/LSSvill4"], ["https://tec.openplanner.team/stops/H2bh114b", "https://tec.openplanner.team/stops/H2bh119a"], ["https://tec.openplanner.team/stops/LARauto1", "https://tec.openplanner.team/stops/LRItour1"], ["https://tec.openplanner.team/stops/N501fby", "https://tec.openplanner.team/stops/N501fbz"], ["https://tec.openplanner.team/stops/H1ob328a", "https://tec.openplanner.team/stops/H1ob336a"], ["https://tec.openplanner.team/stops/Lstchim2", "https://tec.openplanner.team/stops/Lsteduc2"], ["https://tec.openplanner.team/stops/LBVplan1", "https://tec.openplanner.team/stops/LBVplan2"], ["https://tec.openplanner.team/stops/X826aaa", "https://tec.openplanner.team/stops/X834aab"], ["https://tec.openplanner.team/stops/Bgemrom3", "https://tec.openplanner.team/stops/Bgrmfga1"], ["https://tec.openplanner.team/stops/X681afb", "https://tec.openplanner.team/stops/X681agb"], ["https://tec.openplanner.team/stops/LBjflor2", "https://tec.openplanner.team/stops/LBjvill2"], ["https://tec.openplanner.team/stops/Bnivrsh1", "https://tec.openplanner.team/stops/Bnivzon2"], ["https://tec.openplanner.team/stops/X359afa", "https://tec.openplanner.team/stops/X359aib"], ["https://tec.openplanner.team/stops/Borbod92", "https://tec.openplanner.team/stops/Borbode2"], ["https://tec.openplanner.team/stops/Bmarmco2", "https://tec.openplanner.team/stops/Bmarpla2"], ["https://tec.openplanner.team/stops/H1ag107a", "https://tec.openplanner.team/stops/H1an102a"], ["https://tec.openplanner.team/stops/Llmlaro1", "https://tec.openplanner.team/stops/Lprcite1"], ["https://tec.openplanner.team/stops/N135aub", "https://tec.openplanner.team/stops/N135bfb"], ["https://tec.openplanner.team/stops/Lpeatel2", "https://tec.openplanner.team/stops/Lpeptle2"], ["https://tec.openplanner.team/stops/LcRmuhl2", "https://tec.openplanner.team/stops/LnUhohe1"], ["https://tec.openplanner.team/stops/N117arb", "https://tec.openplanner.team/stops/N117baa"], ["https://tec.openplanner.team/stops/H4fa125a", "https://tec.openplanner.team/stops/H4hq129b"], ["https://tec.openplanner.team/stops/X766agb", "https://tec.openplanner.team/stops/X766aja"], ["https://tec.openplanner.team/stops/Lgrmagd2", "https://tec.openplanner.team/stops/Lgrrein2"], ["https://tec.openplanner.team/stops/Cnaplan1", "https://tec.openplanner.team/stops/NC14aqa"], ["https://tec.openplanner.team/stops/H1do122a", "https://tec.openplanner.team/stops/H1do131a"], ["https://tec.openplanner.team/stops/N209amb", "https://tec.openplanner.team/stops/NL81ahb"], ["https://tec.openplanner.team/stops/LbTkreu2", "https://tec.openplanner.team/stops/LbTkreu3"], ["https://tec.openplanner.team/stops/Bbcolno2", "https://tec.openplanner.team/stops/H3br102a"], ["https://tec.openplanner.team/stops/H1au101b", "https://tec.openplanner.team/stops/H1au103b"], ["https://tec.openplanner.team/stops/X768ald", "https://tec.openplanner.team/stops/X791aaa"], ["https://tec.openplanner.team/stops/Bfelada1", "https://tec.openplanner.team/stops/Bfelbri2"], ["https://tec.openplanner.team/stops/H4lz127b", "https://tec.openplanner.team/stops/H4tp147b"], ["https://tec.openplanner.team/stops/X657adb", "https://tec.openplanner.team/stops/X657anb"], ["https://tec.openplanner.team/stops/Cjochap1", "https://tec.openplanner.team/stops/Cjojonc2"], ["https://tec.openplanner.team/stops/Buccbou1", "https://tec.openplanner.team/stops/Bucccre2"], ["https://tec.openplanner.team/stops/LBgbaga2", "https://tec.openplanner.team/stops/LWahott2"], ["https://tec.openplanner.team/stops/N512aqa", "https://tec.openplanner.team/stops/N512arb"], ["https://tec.openplanner.team/stops/Cmlm2411", "https://tec.openplanner.team/stops/Cmlphai1"], ["https://tec.openplanner.team/stops/X721aaa", "https://tec.openplanner.team/stops/X721afb"], ["https://tec.openplanner.team/stops/X904aca", "https://tec.openplanner.team/stops/X904acb"], ["https://tec.openplanner.team/stops/LFsphar1", "https://tec.openplanner.team/stops/LFsphar2"], ["https://tec.openplanner.team/stops/H4oe150a", "https://tec.openplanner.team/stops/H4oe151a"], ["https://tec.openplanner.team/stops/Lbocruc1", "https://tec.openplanner.team/stops/Lbofrai2"], ["https://tec.openplanner.team/stops/Lsmberg1", "https://tec.openplanner.team/stops/Lveinva2"], ["https://tec.openplanner.team/stops/Bnivgam1", "https://tec.openplanner.team/stops/Bnivh%C3%B4p2"], ["https://tec.openplanner.team/stops/N308azb", "https://tec.openplanner.team/stops/N368aaa"], ["https://tec.openplanner.team/stops/LVIcarm1", "https://tec.openplanner.team/stops/LVIcarm2"], ["https://tec.openplanner.team/stops/X595adb", "https://tec.openplanner.team/stops/X595aeb"], ["https://tec.openplanner.team/stops/N117aub", "https://tec.openplanner.team/stops/N117aud"], ["https://tec.openplanner.team/stops/Cchparc3", "https://tec.openplanner.team/stops/Cchparc5"], ["https://tec.openplanner.team/stops/N515apa", "https://tec.openplanner.team/stops/N515ara"], ["https://tec.openplanner.team/stops/H4fl113b", "https://tec.openplanner.team/stops/H4fl115a"], ["https://tec.openplanner.team/stops/LAo161-1", "https://tec.openplanner.team/stops/LAo170-1"], ["https://tec.openplanner.team/stops/X982bda", "https://tec.openplanner.team/stops/X982bja"], ["https://tec.openplanner.team/stops/LATdony1", "https://tec.openplanner.team/stops/LHUtfal1"], ["https://tec.openplanner.team/stops/N351ata", "https://tec.openplanner.team/stops/X358afa"], ["https://tec.openplanner.team/stops/Livgera1", "https://tec.openplanner.team/stops/Livmoul2"], ["https://tec.openplanner.team/stops/H4ce101b", "https://tec.openplanner.team/stops/H4ce102a"], ["https://tec.openplanner.team/stops/N540acc", "https://tec.openplanner.team/stops/N540ana"], ["https://tec.openplanner.team/stops/Clibrun1", "https://tec.openplanner.team/stops/Clihame2"], ["https://tec.openplanner.team/stops/H4ga168b", "https://tec.openplanner.team/stops/H4ga169a"], ["https://tec.openplanner.team/stops/H1hh113b", "https://tec.openplanner.team/stops/H1hh114a"], ["https://tec.openplanner.team/stops/LLecarr3", "https://tec.openplanner.team/stops/X547ahb"], ["https://tec.openplanner.team/stops/LOmrela1", "https://tec.openplanner.team/stops/LOmrela2"], ["https://tec.openplanner.team/stops/Btgrpla1", "https://tec.openplanner.team/stops/N584aga"], ["https://tec.openplanner.team/stops/H4ty311b", "https://tec.openplanner.team/stops/H4vx366b"], ["https://tec.openplanner.team/stops/X898afa", "https://tec.openplanner.team/stops/X898afb"], ["https://tec.openplanner.team/stops/LQafond1", "https://tec.openplanner.team/stops/LQafond2"], ["https://tec.openplanner.team/stops/Cgpleco1", "https://tec.openplanner.team/stops/Cgpmoul2"], ["https://tec.openplanner.team/stops/LLOchpl1", "https://tec.openplanner.team/stops/LRRecsc*"], ["https://tec.openplanner.team/stops/Lsnfont2", "https://tec.openplanner.team/stops/Ltihorl1"], ["https://tec.openplanner.team/stops/N352acb", "https://tec.openplanner.team/stops/N352aeb"], ["https://tec.openplanner.team/stops/X601ada", "https://tec.openplanner.team/stops/X601ala"], ["https://tec.openplanner.team/stops/H1te180b", "https://tec.openplanner.team/stops/H1te191a"], ["https://tec.openplanner.team/stops/LNCesne1", "https://tec.openplanner.team/stops/LNCtour1"], ["https://tec.openplanner.team/stops/Ladneuv1", "https://tec.openplanner.team/stops/Lvecrot2"], ["https://tec.openplanner.team/stops/H1at109a", "https://tec.openplanner.team/stops/H1at110b"], ["https://tec.openplanner.team/stops/LSTchal1", "https://tec.openplanner.team/stops/LSTchal4"], ["https://tec.openplanner.team/stops/Lthfagn2", "https://tec.openplanner.team/stops/LWarema1"], ["https://tec.openplanner.team/stops/LBkwind1", "https://tec.openplanner.team/stops/LWEfati2"], ["https://tec.openplanner.team/stops/Bgligra2", "https://tec.openplanner.team/stops/Btlbche1"], ["https://tec.openplanner.team/stops/X641asa", "https://tec.openplanner.team/stops/X641asb"], ["https://tec.openplanner.team/stops/H1qp140b", "https://tec.openplanner.team/stops/H1qp142b"], ["https://tec.openplanner.team/stops/N202aec", "https://tec.openplanner.team/stops/N203afa"], ["https://tec.openplanner.team/stops/X804afa", "https://tec.openplanner.team/stops/X804bdb"], ["https://tec.openplanner.team/stops/Clbhvil1", "https://tec.openplanner.team/stops/Clbhvil2"], ["https://tec.openplanner.team/stops/LhEtivo2", "https://tec.openplanner.team/stops/LlNsc652"], ["https://tec.openplanner.team/stops/Lvegend2", "https://tec.openplanner.team/stops/Lvelobe2"], ["https://tec.openplanner.team/stops/H4ga167b", "https://tec.openplanner.team/stops/H4ga168b"], ["https://tec.openplanner.team/stops/Lveecol2", "https://tec.openplanner.team/stops/Lvehv--4"], ["https://tec.openplanner.team/stops/Bjodint2", "https://tec.openplanner.team/stops/NR10aba"], ["https://tec.openplanner.team/stops/H4bc102a", "https://tec.openplanner.team/stops/H4bc108a"], ["https://tec.openplanner.team/stops/LhSschn1", "https://tec.openplanner.team/stops/LhSwind2"], ["https://tec.openplanner.team/stops/N519aac", "https://tec.openplanner.team/stops/N519acb"], ["https://tec.openplanner.team/stops/Bgnvdep1", "https://tec.openplanner.team/stops/Bgnvoha6"], ["https://tec.openplanner.team/stops/N501dha", "https://tec.openplanner.team/stops/N501lkb"], ["https://tec.openplanner.team/stops/X731acb", "https://tec.openplanner.team/stops/X731aja"], ["https://tec.openplanner.team/stops/LhGadap1", "https://tec.openplanner.team/stops/LhGfl241"], ["https://tec.openplanner.team/stops/Lghencl2", "https://tec.openplanner.team/stops/Lghflot3"], ["https://tec.openplanner.team/stops/X636aqb", "https://tec.openplanner.team/stops/X636aqc"], ["https://tec.openplanner.team/stops/Bllnlen1", "https://tec.openplanner.team/stops/Bmsgaxp1"], ["https://tec.openplanner.team/stops/Bstecou2", "https://tec.openplanner.team/stops/Bstemco2"], ["https://tec.openplanner.team/stops/Lfhgara1", "https://tec.openplanner.team/stops/Lpomart1"], ["https://tec.openplanner.team/stops/X992afa", "https://tec.openplanner.team/stops/X992afb"], ["https://tec.openplanner.team/stops/H4ru241b", "https://tec.openplanner.team/stops/H4ru245b"], ["https://tec.openplanner.team/stops/X354afa", "https://tec.openplanner.team/stops/X354agb"], ["https://tec.openplanner.team/stops/X601boa", "https://tec.openplanner.team/stops/X601bob"], ["https://tec.openplanner.team/stops/LWechea1", "https://tec.openplanner.team/stops/LWelogi1"], ["https://tec.openplanner.team/stops/N244aka", "https://tec.openplanner.team/stops/N244asa"], ["https://tec.openplanner.team/stops/LNAbass2", "https://tec.openplanner.team/stops/LNAmart1"], ["https://tec.openplanner.team/stops/Blmlbif2", "https://tec.openplanner.team/stops/Brixpbs2"], ["https://tec.openplanner.team/stops/H4ce100a", "https://tec.openplanner.team/stops/H4mx115b"], ["https://tec.openplanner.team/stops/N534bda", "https://tec.openplanner.team/stops/N534byb"], ["https://tec.openplanner.team/stops/X663aca", "https://tec.openplanner.team/stops/X769arb"], ["https://tec.openplanner.team/stops/LNEbois1", "https://tec.openplanner.team/stops/LOLvill1"], ["https://tec.openplanner.team/stops/X661bca", "https://tec.openplanner.team/stops/X661bcb"], ["https://tec.openplanner.team/stops/LDOandr4", "https://tec.openplanner.team/stops/LDOjose1"], ["https://tec.openplanner.team/stops/X604aaa", "https://tec.openplanner.team/stops/X605afa"], ["https://tec.openplanner.team/stops/H4hu119a", "https://tec.openplanner.team/stops/H4hu120b"], ["https://tec.openplanner.team/stops/N158aab", "https://tec.openplanner.team/stops/N158aba"], ["https://tec.openplanner.team/stops/X715apa", "https://tec.openplanner.team/stops/X731aba"], ["https://tec.openplanner.team/stops/Clvorle1", "https://tec.openplanner.team/stops/Cmlsart2"], ["https://tec.openplanner.team/stops/H3bi102b", "https://tec.openplanner.team/stops/H3bi116b"], ["https://tec.openplanner.team/stops/Llgcadr4", "https://tec.openplanner.team/stops/Llgelis1"], ["https://tec.openplanner.team/stops/Cgpauln2", "https://tec.openplanner.team/stops/H2gy113b"], ["https://tec.openplanner.team/stops/LLUdoya2", "https://tec.openplanner.team/stops/LLUtill1"], ["https://tec.openplanner.team/stops/N501dga", "https://tec.openplanner.team/stops/N501dgb"], ["https://tec.openplanner.team/stops/X754ada", "https://tec.openplanner.team/stops/X754aqb"], ["https://tec.openplanner.team/stops/LCSpoud2", "https://tec.openplanner.team/stops/LCSpoud4"], ["https://tec.openplanner.team/stops/Cjuhopi1", "https://tec.openplanner.team/stops/Cjuhopi2"], ["https://tec.openplanner.team/stops/Bjcljau2", "https://tec.openplanner.team/stops/Bjdspon1"], ["https://tec.openplanner.team/stops/X727adb", "https://tec.openplanner.team/stops/X746aaa"], ["https://tec.openplanner.team/stops/N170aca", "https://tec.openplanner.team/stops/N170afa"], ["https://tec.openplanner.team/stops/LBkgrae2", "https://tec.openplanner.team/stops/LBkjenn1"], ["https://tec.openplanner.team/stops/H4wi161a", "https://tec.openplanner.team/stops/H4wi170b"], ["https://tec.openplanner.team/stops/LBJapol2", "https://tec.openplanner.team/stops/LBJlieg1"], ["https://tec.openplanner.team/stops/Cvrchap1", "https://tec.openplanner.team/stops/Cvrfcho2"], ["https://tec.openplanner.team/stops/N229ajb", "https://tec.openplanner.team/stops/N229akc"], ["https://tec.openplanner.team/stops/LREchif1", "https://tec.openplanner.team/stops/LREchif2"], ["https://tec.openplanner.team/stops/X993aba", "https://tec.openplanner.team/stops/X993abd"], ["https://tec.openplanner.team/stops/Crccano2", "https://tec.openplanner.team/stops/Crccano4"], ["https://tec.openplanner.team/stops/Bgliopp2", "https://tec.openplanner.team/stops/Bincdon2"], ["https://tec.openplanner.team/stops/LLUcdoy2", "https://tec.openplanner.team/stops/LLUlieg1"], ["https://tec.openplanner.team/stops/NR21abc", "https://tec.openplanner.team/stops/NR21abd"], ["https://tec.openplanner.team/stops/H1bl102a", "https://tec.openplanner.team/stops/H1bl104b"], ["https://tec.openplanner.team/stops/Ccyga05", "https://tec.openplanner.team/stops/Ccyga6"], ["https://tec.openplanner.team/stops/Bnivfch2", "https://tec.openplanner.team/stops/Bnivgen1"], ["https://tec.openplanner.team/stops/X718aba", "https://tec.openplanner.team/stops/X718afa"], ["https://tec.openplanner.team/stops/N312aab", "https://tec.openplanner.team/stops/N312aca"], ["https://tec.openplanner.team/stops/LHDpota1", "https://tec.openplanner.team/stops/LHDpota4"], ["https://tec.openplanner.team/stops/H1ch102a", "https://tec.openplanner.team/stops/H1ch102b"], ["https://tec.openplanner.team/stops/H1cd114a", "https://tec.openplanner.team/stops/H1cd114b"], ["https://tec.openplanner.team/stops/Bove4ko2", "https://tec.openplanner.team/stops/Bovetdo2"], ["https://tec.openplanner.team/stops/Bgzdgpa1", "https://tec.openplanner.team/stops/Bwavpar1"], ["https://tec.openplanner.team/stops/N145aka", "https://tec.openplanner.team/stops/N150abb"], ["https://tec.openplanner.team/stops/LGLgare*", "https://tec.openplanner.team/stops/LWidepo2"], ["https://tec.openplanner.team/stops/X979aga", "https://tec.openplanner.team/stops/X979agb"], ["https://tec.openplanner.team/stops/LBpecco3", "https://tec.openplanner.team/stops/LGEhosp1"], ["https://tec.openplanner.team/stops/X644ada", "https://tec.openplanner.team/stops/X644aeb"], ["https://tec.openplanner.team/stops/X796aeb", "https://tec.openplanner.team/stops/X986aka"], ["https://tec.openplanner.team/stops/LXoharz5", "https://tec.openplanner.team/stops/X599aga"], ["https://tec.openplanner.team/stops/LBslama1", "https://tec.openplanner.team/stops/NL73ada"], ["https://tec.openplanner.team/stops/X754akb", "https://tec.openplanner.team/stops/X754awa"], ["https://tec.openplanner.team/stops/LLg9---2", "https://tec.openplanner.team/stops/LLgmini2"], ["https://tec.openplanner.team/stops/LTIcime2", "https://tec.openplanner.team/stops/LTIdumo2"], ["https://tec.openplanner.team/stops/X743agb", "https://tec.openplanner.team/stops/X756aga"], ["https://tec.openplanner.team/stops/H4lz117a", "https://tec.openplanner.team/stops/H4lz117b"], ["https://tec.openplanner.team/stops/LHTbaud1", "https://tec.openplanner.team/stops/LHTbonn2"], ["https://tec.openplanner.team/stops/H4eq123a", "https://tec.openplanner.team/stops/H4rc231b"], ["https://tec.openplanner.team/stops/Lseathe1", "https://tec.openplanner.team/stops/Lsefori2"], ["https://tec.openplanner.team/stops/LVnflox1", "https://tec.openplanner.team/stops/LVnflox2"], ["https://tec.openplanner.team/stops/LWEbr051", "https://tec.openplanner.team/stops/LWEbr511"], ["https://tec.openplanner.team/stops/H2me116b", "https://tec.openplanner.team/stops/H2me117a"], ["https://tec.openplanner.team/stops/H4ag102b", "https://tec.openplanner.team/stops/H4ga163a"], ["https://tec.openplanner.team/stops/Crebrux1", "https://tec.openplanner.team/stops/Crecouc1"], ["https://tec.openplanner.team/stops/X891aab", "https://tec.openplanner.team/stops/X891abb"], ["https://tec.openplanner.team/stops/H4wa149a", "https://tec.openplanner.team/stops/H4wa149b"], ["https://tec.openplanner.team/stops/Llgbavi1", "https://tec.openplanner.team/stops/Llgongr4"], ["https://tec.openplanner.team/stops/X911aja", "https://tec.openplanner.team/stops/X911ajb"], ["https://tec.openplanner.team/stops/H1ha185a", "https://tec.openplanner.team/stops/H1ha185b"], ["https://tec.openplanner.team/stops/Bspkbeu1", "https://tec.openplanner.team/stops/H1bd102b"], ["https://tec.openplanner.team/stops/Llgbago1", "https://tec.openplanner.team/stops/Llgglai2"], ["https://tec.openplanner.team/stops/N145aea", "https://tec.openplanner.team/stops/N145aeb"], ["https://tec.openplanner.team/stops/X664apa", "https://tec.openplanner.team/stops/X664apb"], ["https://tec.openplanner.team/stops/H1tl120b", "https://tec.openplanner.team/stops/H1tl121a"], ["https://tec.openplanner.team/stops/X713aib", "https://tec.openplanner.team/stops/X713ama"], ["https://tec.openplanner.team/stops/Btlgast1", "https://tec.openplanner.team/stops/Btlgfto2"], ["https://tec.openplanner.team/stops/N501adb", "https://tec.openplanner.team/stops/N501aia"], ["https://tec.openplanner.team/stops/X901baa", "https://tec.openplanner.team/stops/X943aca"], ["https://tec.openplanner.team/stops/Lbbbuse1", "https://tec.openplanner.team/stops/Ljubruy2"], ["https://tec.openplanner.team/stops/H1ne149a", "https://tec.openplanner.team/stops/H1ne149b"], ["https://tec.openplanner.team/stops/Caircen1", "https://tec.openplanner.team/stops/Crsprai3"], ["https://tec.openplanner.team/stops/LGreg--1", "https://tec.openplanner.team/stops/LHDmc--1"], ["https://tec.openplanner.team/stops/N337aha", "https://tec.openplanner.team/stops/N337aia"], ["https://tec.openplanner.team/stops/LJSec--2", "https://tec.openplanner.team/stops/Lpevove2"], ["https://tec.openplanner.team/stops/Bnivchh1", "https://tec.openplanner.team/stops/Bnivfhu1"], ["https://tec.openplanner.team/stops/Clcfall3", "https://tec.openplanner.team/stops/Csscrot2"], ["https://tec.openplanner.team/stops/H1fl140b", "https://tec.openplanner.team/stops/H1fl142a"], ["https://tec.openplanner.team/stops/Bwatjbo2", "https://tec.openplanner.team/stops/Bwatpai1"], ["https://tec.openplanner.team/stops/LBNforg1", "https://tec.openplanner.team/stops/LDObran1"], ["https://tec.openplanner.team/stops/LEMeg--1", "https://tec.openplanner.team/stops/LLAchpl1"], ["https://tec.openplanner.team/stops/H1hn203a", "https://tec.openplanner.team/stops/H1hn203b"], ["https://tec.openplanner.team/stops/H4ha167a", "https://tec.openplanner.team/stops/H4me213b"], ["https://tec.openplanner.team/stops/X903afb", "https://tec.openplanner.team/stops/X904aaa"], ["https://tec.openplanner.team/stops/N532aeb", "https://tec.openplanner.team/stops/N532ajb"], ["https://tec.openplanner.team/stops/LAUmerc2", "https://tec.openplanner.team/stops/LRmha262"], ["https://tec.openplanner.team/stops/LaAdiep1", "https://tec.openplanner.team/stops/LaAzwei2"], ["https://tec.openplanner.team/stops/H1nm140a", "https://tec.openplanner.team/stops/H1nm141a"], ["https://tec.openplanner.team/stops/Lagfour2", "https://tec.openplanner.team/stops/Lagkink1"], ["https://tec.openplanner.team/stops/LCOcrom2", "https://tec.openplanner.team/stops/Lpelouh2"], ["https://tec.openplanner.team/stops/H4hg154a", "https://tec.openplanner.team/stops/H4hg154b"], ["https://tec.openplanner.team/stops/H4ty274b", "https://tec.openplanner.team/stops/H4ty352a"], ["https://tec.openplanner.team/stops/Bllncyc1", "https://tec.openplanner.team/stops/Bllnrge2"], ["https://tec.openplanner.team/stops/X716afa", "https://tec.openplanner.team/stops/X736aia"], ["https://tec.openplanner.team/stops/Cchicet1", "https://tec.openplanner.team/stops/Clomart2"], ["https://tec.openplanner.team/stops/Cmlclos1", "https://tec.openplanner.team/stops/Cmmbsit2"], ["https://tec.openplanner.team/stops/Brsrbbo2", "https://tec.openplanner.team/stops/Brsreco1"], ["https://tec.openplanner.team/stops/LNIbas-1", "https://tec.openplanner.team/stops/LSPsauv1"], ["https://tec.openplanner.team/stops/N141aoa", "https://tec.openplanner.team/stops/N141aob"], ["https://tec.openplanner.team/stops/H1ht126b", "https://tec.openplanner.team/stops/H1ht131a"], ["https://tec.openplanner.team/stops/LVAbuss1", "https://tec.openplanner.team/stops/LVAmaas1"], ["https://tec.openplanner.team/stops/LMoeg--2", "https://tec.openplanner.team/stops/LMovieu2"], ["https://tec.openplanner.team/stops/H1gh157a", "https://tec.openplanner.team/stops/H1gh165a"], ["https://tec.openplanner.team/stops/X804ama", "https://tec.openplanner.team/stops/X804amb"], ["https://tec.openplanner.team/stops/Lchcomm1", "https://tec.openplanner.team/stops/LHOmc--2"], ["https://tec.openplanner.team/stops/H4ty278a", "https://tec.openplanner.team/stops/H4ty299e"], ["https://tec.openplanner.team/stops/Loubiez3", "https://tec.openplanner.team/stops/Loubour1"], ["https://tec.openplanner.team/stops/Ccodubo2", "https://tec.openplanner.team/stops/Ccojaur4"], ["https://tec.openplanner.team/stops/Bllnfla2", "https://tec.openplanner.team/stops/Bllnfla3"], ["https://tec.openplanner.team/stops/Bmalcar2", "https://tec.openplanner.team/stops/Boppegl2"], ["https://tec.openplanner.team/stops/X224aea", "https://tec.openplanner.team/stops/X224aeb"], ["https://tec.openplanner.team/stops/X805adb", "https://tec.openplanner.team/stops/X805afb"], ["https://tec.openplanner.team/stops/LBBabat1", "https://tec.openplanner.team/stops/LBBcarr1"], ["https://tec.openplanner.team/stops/X818ada", "https://tec.openplanner.team/stops/X818aea"], ["https://tec.openplanner.team/stops/LBahaut1", "https://tec.openplanner.team/stops/LLrbecc1"], ["https://tec.openplanner.team/stops/Caujonc2", "https://tec.openplanner.team/stops/N543cqa"], ["https://tec.openplanner.team/stops/N353afd", "https://tec.openplanner.team/stops/N353ahb"], ["https://tec.openplanner.team/stops/Bspkbeu1", "https://tec.openplanner.team/stops/H1by101b"], ["https://tec.openplanner.team/stops/LBgbaga2", "https://tec.openplanner.team/stops/LBgnach1"], ["https://tec.openplanner.team/stops/Bbgeegl2", "https://tec.openplanner.team/stops/Bbgewal1"], ["https://tec.openplanner.team/stops/N343aeb", "https://tec.openplanner.team/stops/N343aob"], ["https://tec.openplanner.team/stops/H2hl113a", "https://tec.openplanner.team/stops/H2pe157a"], ["https://tec.openplanner.team/stops/H4bo121a", "https://tec.openplanner.team/stops/H4ea132b"], ["https://tec.openplanner.team/stops/X994aga", "https://tec.openplanner.team/stops/X995afb"], ["https://tec.openplanner.team/stops/Cgxfo141", "https://tec.openplanner.team/stops/Csochea1"], ["https://tec.openplanner.team/stops/Lseconc2", "https://tec.openplanner.team/stops/Lsecroi2"], ["https://tec.openplanner.team/stops/X774aba", "https://tec.openplanner.team/stops/X953ada"], ["https://tec.openplanner.team/stops/H2pe158a", "https://tec.openplanner.team/stops/H2pe158b"], ["https://tec.openplanner.team/stops/LmDgeme1", "https://tec.openplanner.team/stops/LmYeich1"], ["https://tec.openplanner.team/stops/LaLkabi1", "https://tec.openplanner.team/stops/LmAaldr2"], ["https://tec.openplanner.team/stops/Cmchai1", "https://tec.openplanner.team/stops/Cmchai2"], ["https://tec.openplanner.team/stops/X804baa", "https://tec.openplanner.team/stops/X804bab"], ["https://tec.openplanner.team/stops/Bhanmou2", "https://tec.openplanner.team/stops/LHNland2"], ["https://tec.openplanner.team/stops/N528awa", "https://tec.openplanner.team/stops/N528awb"], ["https://tec.openplanner.team/stops/LwLfuss2", "https://tec.openplanner.team/stops/LwLprum2"], ["https://tec.openplanner.team/stops/H2bh109b", "https://tec.openplanner.team/stops/H2bh117b"], ["https://tec.openplanner.team/stops/Louaout1", "https://tec.openplanner.team/stops/Loujouh1"], ["https://tec.openplanner.team/stops/N302aba", "https://tec.openplanner.team/stops/N302aca"], ["https://tec.openplanner.team/stops/Bptegna1", "https://tec.openplanner.team/stops/H3st119a"], ["https://tec.openplanner.team/stops/Cgobl%C3%A9r1", "https://tec.openplanner.team/stops/Cgoulb4"], ["https://tec.openplanner.team/stops/H4pq112a", "https://tec.openplanner.team/stops/H4wg122a"], ["https://tec.openplanner.team/stops/Bblagar1", "https://tec.openplanner.team/stops/Bblagar2"], ["https://tec.openplanner.team/stops/Bfelagb1", "https://tec.openplanner.team/stops/Bfelgar3"], ["https://tec.openplanner.team/stops/Bbsicea1", "https://tec.openplanner.team/stops/Bbsicea2"], ["https://tec.openplanner.team/stops/LhM07--2", "https://tec.openplanner.team/stops/LmCkirc2"], ["https://tec.openplanner.team/stops/X775aha", "https://tec.openplanner.team/stops/X775aib"], ["https://tec.openplanner.team/stops/LVttarg1", "https://tec.openplanner.team/stops/LVttarg2"], ["https://tec.openplanner.team/stops/LDmwaef2", "https://tec.openplanner.team/stops/LSGmale2"], ["https://tec.openplanner.team/stops/Ctarpoi2", "https://tec.openplanner.team/stops/N543bpb"], ["https://tec.openplanner.team/stops/Bjod7co2", "https://tec.openplanner.team/stops/Bjodcar2"], ["https://tec.openplanner.team/stops/Btubeur1", "https://tec.openplanner.team/stops/Btubmar2"], ["https://tec.openplanner.team/stops/LSPecho2", "https://tec.openplanner.team/stops/LWM759-1"], ["https://tec.openplanner.team/stops/LABvill2", "https://tec.openplanner.team/stops/LHNtonn1"], ["https://tec.openplanner.team/stops/H4ty309a", "https://tec.openplanner.team/stops/H4ty332c"], ["https://tec.openplanner.team/stops/Llgancd2", "https://tec.openplanner.team/stops/Llgoise1"], ["https://tec.openplanner.team/stops/H1ma231b", "https://tec.openplanner.team/stops/H1mj123b"], ["https://tec.openplanner.team/stops/Lagjard1", "https://tec.openplanner.team/stops/Lagrask1"], ["https://tec.openplanner.team/stops/Lmieg--2", "https://tec.openplanner.team/stops/Lmimc--2"], ["https://tec.openplanner.team/stops/H2sb228c", "https://tec.openplanner.team/stops/H2sb239c"], ["https://tec.openplanner.team/stops/Ldihvce2", "https://tec.openplanner.team/stops/Ldilyce*"], ["https://tec.openplanner.team/stops/Cfvplac2", "https://tec.openplanner.team/stops/H1fv100a"], ["https://tec.openplanner.team/stops/N534avb", "https://tec.openplanner.team/stops/N534bea"], ["https://tec.openplanner.team/stops/X769anb", "https://tec.openplanner.team/stops/X769aoa"], ["https://tec.openplanner.team/stops/LAYathe1", "https://tec.openplanner.team/stops/LAYathe2"], ["https://tec.openplanner.team/stops/Lgrmc--1", "https://tec.openplanner.team/stops/Lgrstou2"], ["https://tec.openplanner.team/stops/LCsraws2", "https://tec.openplanner.team/stops/LWDchpl1"], ["https://tec.openplanner.team/stops/Bwatath2", "https://tec.openplanner.team/stops/Bwatclo1"], ["https://tec.openplanner.team/stops/H1ms250a", "https://tec.openplanner.team/stops/H1ms298a"], ["https://tec.openplanner.team/stops/LHdvill2", "https://tec.openplanner.team/stops/LVtvalu1"], ["https://tec.openplanner.team/stops/Ladegli2", "https://tec.openplanner.team/stops/Ladfoot2"], ["https://tec.openplanner.team/stops/LLNogne2", "https://tec.openplanner.team/stops/LSpxhig2"], ["https://tec.openplanner.team/stops/H4bd108a", "https://tec.openplanner.team/stops/H4ma203a"], ["https://tec.openplanner.team/stops/Bbcocvb2", "https://tec.openplanner.team/stops/Bhptpla2"], ["https://tec.openplanner.team/stops/Cgythio2", "https://tec.openplanner.team/stops/CMsartc2"], ["https://tec.openplanner.team/stops/X870aba", "https://tec.openplanner.team/stops/X870aib"], ["https://tec.openplanner.team/stops/LHUzoni2", "https://tec.openplanner.team/stops/LTieg--1"], ["https://tec.openplanner.team/stops/X983adb", "https://tec.openplanner.team/stops/X983aga"], ["https://tec.openplanner.team/stops/Lrahoig1", "https://tec.openplanner.team/stops/LSAchef2"], ["https://tec.openplanner.team/stops/N531aab", "https://tec.openplanner.team/stops/N532amb"], ["https://tec.openplanner.team/stops/X615aya", "https://tec.openplanner.team/stops/X615azb"], ["https://tec.openplanner.team/stops/H4ha167a", "https://tec.openplanner.team/stops/H4mt222b"], ["https://tec.openplanner.team/stops/N548awb", "https://tec.openplanner.team/stops/N548ayb"], ["https://tec.openplanner.team/stops/X715agb", "https://tec.openplanner.team/stops/X715aha"], ["https://tec.openplanner.team/stops/H4ft132b", "https://tec.openplanner.team/stops/H4oq229b"], ["https://tec.openplanner.team/stops/X782aob", "https://tec.openplanner.team/stops/X783aba"], ["https://tec.openplanner.team/stops/N211ana", "https://tec.openplanner.team/stops/N211anb"], ["https://tec.openplanner.team/stops/Bmouegl1", "https://tec.openplanner.team/stops/Bottegl1"], ["https://tec.openplanner.team/stops/H4eh102b", "https://tec.openplanner.team/stops/H4he101a"], ["https://tec.openplanner.team/stops/X362abb", "https://tec.openplanner.team/stops/X371ajb"], ["https://tec.openplanner.team/stops/LmD181-2", "https://tec.openplanner.team/stops/LmDhoch3"], ["https://tec.openplanner.team/stops/Bdvmc431", "https://tec.openplanner.team/stops/Bdvmccu1"], ["https://tec.openplanner.team/stops/LHolexh1", "https://tec.openplanner.team/stops/LNvrout1"], ["https://tec.openplanner.team/stops/H3th126b", "https://tec.openplanner.team/stops/H3th129b"], ["https://tec.openplanner.team/stops/Lsnbure1", "https://tec.openplanner.team/stops/Lticime2"], ["https://tec.openplanner.team/stops/N122afb", "https://tec.openplanner.team/stops/N122agb"], ["https://tec.openplanner.team/stops/LHFcaqu2", "https://tec.openplanner.team/stops/LHFwaut1"], ["https://tec.openplanner.team/stops/X640anb", "https://tec.openplanner.team/stops/X640ava"], ["https://tec.openplanner.team/stops/Bgzddge1", "https://tec.openplanner.team/stops/Bgzddmo1"], ["https://tec.openplanner.team/stops/H1hc125b", "https://tec.openplanner.team/stops/H1hc127c"], ["https://tec.openplanner.team/stops/H1pw121a", "https://tec.openplanner.team/stops/H1pw121b"], ["https://tec.openplanner.team/stops/N101ana", "https://tec.openplanner.team/stops/N101anb"], ["https://tec.openplanner.team/stops/Bgdhlai1", "https://tec.openplanner.team/stops/Bgdhlai2"], ["https://tec.openplanner.team/stops/Llglaha1", "https://tec.openplanner.team/stops/Llglys-2"], ["https://tec.openplanner.team/stops/NL35aca", "https://tec.openplanner.team/stops/NL35acb"], ["https://tec.openplanner.team/stops/X910afd", "https://tec.openplanner.team/stops/X910aga"], ["https://tec.openplanner.team/stops/Csbplac1", "https://tec.openplanner.team/stops/H1sa114b"], ["https://tec.openplanner.team/stops/X739aba", "https://tec.openplanner.team/stops/X739aca"], ["https://tec.openplanner.team/stops/N234adb", "https://tec.openplanner.team/stops/N243adb"], ["https://tec.openplanner.team/stops/N343aoa", "https://tec.openplanner.team/stops/N350aeb"], ["https://tec.openplanner.team/stops/Bbstchn2", "https://tec.openplanner.team/stops/Bbsttab2"], ["https://tec.openplanner.team/stops/Ctipoui1", "https://tec.openplanner.team/stops/Ctisart1"], ["https://tec.openplanner.team/stops/LOuhalb1", "https://tec.openplanner.team/stops/LOuhalb2"], ["https://tec.openplanner.team/stops/H1sb146a", "https://tec.openplanner.team/stops/H1sb148b"], ["https://tec.openplanner.team/stops/H1br125a", "https://tec.openplanner.team/stops/H1br125b"], ["https://tec.openplanner.team/stops/X757aca", "https://tec.openplanner.team/stops/X757aea"], ["https://tec.openplanner.team/stops/LCsfize1", "https://tec.openplanner.team/stops/LFFruel2"], ["https://tec.openplanner.team/stops/N545aaa", "https://tec.openplanner.team/stops/N545aca"], ["https://tec.openplanner.team/stops/Bsjgegl2", "https://tec.openplanner.team/stops/Bzluegl1"], ["https://tec.openplanner.team/stops/Brebgar1", "https://tec.openplanner.team/stops/Brebhos1"], ["https://tec.openplanner.team/stops/LaMhe421", "https://tec.openplanner.team/stops/LaMwies1"], ["https://tec.openplanner.team/stops/H4eg105a", "https://tec.openplanner.team/stops/H4sl154b"], ["https://tec.openplanner.team/stops/Cchccom1", "https://tec.openplanner.team/stops/Cchccom2"], ["https://tec.openplanner.team/stops/H1pa103b", "https://tec.openplanner.team/stops/H1wa163b"], ["https://tec.openplanner.team/stops/LAWeg--2", "https://tec.openplanner.team/stops/LAWgill2"], ["https://tec.openplanner.team/stops/LLbquar1", "https://tec.openplanner.team/stops/LLbquar2"], ["https://tec.openplanner.team/stops/X870aab", "https://tec.openplanner.team/stops/X870ada"], ["https://tec.openplanner.team/stops/LCx728-2", "https://tec.openplanner.team/stops/LCxhame2"], ["https://tec.openplanner.team/stops/X919aeb", "https://tec.openplanner.team/stops/X919afb"], ["https://tec.openplanner.team/stops/LaTcolo1", "https://tec.openplanner.team/stops/LmCkirc1"], ["https://tec.openplanner.team/stops/N505aea", "https://tec.openplanner.team/stops/N505aeb"], ["https://tec.openplanner.team/stops/Lvcchau1", "https://tec.openplanner.team/stops/Lvcchau2"], ["https://tec.openplanner.team/stops/Caih1631", "https://tec.openplanner.team/stops/N543cca"], ["https://tec.openplanner.team/stops/Bvilcoq1", "https://tec.openplanner.team/stops/Bvilpar2"], ["https://tec.openplanner.team/stops/Lligara2", "https://tec.openplanner.team/stops/Lvochev2"], ["https://tec.openplanner.team/stops/H2ha129b", "https://tec.openplanner.team/stops/H2ha136b"], ["https://tec.openplanner.team/stops/N201aaa", "https://tec.openplanner.team/stops/N201aab"], ["https://tec.openplanner.team/stops/X601caa", "https://tec.openplanner.team/stops/X601dfa"], ["https://tec.openplanner.team/stops/Lcealig1", "https://tec.openplanner.team/stops/Lcesart2"], ["https://tec.openplanner.team/stops/X615aba", "https://tec.openplanner.team/stops/X615bia"], ["https://tec.openplanner.team/stops/H5el112d", "https://tec.openplanner.team/stops/H5el114b"], ["https://tec.openplanner.team/stops/Barcast1", "https://tec.openplanner.team/stops/Barcast2"], ["https://tec.openplanner.team/stops/LsVprum2", "https://tec.openplanner.team/stops/LsVprum3"], ["https://tec.openplanner.team/stops/Lanetie2", "https://tec.openplanner.team/stops/Llgnani2"], ["https://tec.openplanner.team/stops/N160adb", "https://tec.openplanner.team/stops/N160aeb"], ["https://tec.openplanner.team/stops/N549aea", "https://tec.openplanner.team/stops/N550ana"], ["https://tec.openplanner.team/stops/X812aaa", "https://tec.openplanner.team/stops/X812bab"], ["https://tec.openplanner.team/stops/X992aad", "https://tec.openplanner.team/stops/X992aca"], ["https://tec.openplanner.team/stops/H1gc122b", "https://tec.openplanner.team/stops/H1qy136a"], ["https://tec.openplanner.team/stops/H4de112b", "https://tec.openplanner.team/stops/H4de113b"], ["https://tec.openplanner.team/stops/Lgdmaye2", "https://tec.openplanner.team/stops/LWechpl2"], ["https://tec.openplanner.team/stops/LWOsudr1", "https://tec.openplanner.team/stops/LWOsudr2"], ["https://tec.openplanner.team/stops/H4co133b", "https://tec.openplanner.team/stops/H4rx142a"], ["https://tec.openplanner.team/stops/LbUjost2", "https://tec.openplanner.team/stops/LhUkreu2"], ["https://tec.openplanner.team/stops/Bhmmcge1", "https://tec.openplanner.team/stops/Bhmmlad2"], ["https://tec.openplanner.team/stops/H5el101b", "https://tec.openplanner.team/stops/H5el102b"], ["https://tec.openplanner.team/stops/Blascsl1", "https://tec.openplanner.team/stops/Blascsl2"], ["https://tec.openplanner.team/stops/H1bn114a", "https://tec.openplanner.team/stops/H1bn114b"], ["https://tec.openplanner.team/stops/Bottcpl2", "https://tec.openplanner.team/stops/Bottpry1"], ["https://tec.openplanner.team/stops/Llgcamp2", "https://tec.openplanner.team/stops/Llghugo1"], ["https://tec.openplanner.team/stops/X775agb", "https://tec.openplanner.team/stops/X775aja"], ["https://tec.openplanner.team/stops/Bquebut1", "https://tec.openplanner.team/stops/Bquereb1"], ["https://tec.openplanner.team/stops/H4ty307a", "https://tec.openplanner.team/stops/H4ty307b"], ["https://tec.openplanner.team/stops/LESlieg1", "https://tec.openplanner.team/stops/LESmc--1"], ["https://tec.openplanner.team/stops/Ccohotv1", "https://tec.openplanner.team/stops/Ccohuli2"], ["https://tec.openplanner.team/stops/H4fr144a", "https://tec.openplanner.team/stops/H4fr390a"], ["https://tec.openplanner.team/stops/H5pe153a", "https://tec.openplanner.team/stops/H5pe176a"], ["https://tec.openplanner.team/stops/X892abb", "https://tec.openplanner.team/stops/X892aia"], ["https://tec.openplanner.team/stops/X639aob", "https://tec.openplanner.team/stops/X639arb"], ["https://tec.openplanner.team/stops/N536adb", "https://tec.openplanner.team/stops/N536aea"], ["https://tec.openplanner.team/stops/LBTchai4", "https://tec.openplanner.team/stops/LBThaut1"], ["https://tec.openplanner.team/stops/LJEloum1", "https://tec.openplanner.team/stops/LJEniho1"], ["https://tec.openplanner.team/stops/H4ta116a", "https://tec.openplanner.team/stops/H4ta125c"], ["https://tec.openplanner.team/stops/N390abb", "https://tec.openplanner.team/stops/X349aaa"], ["https://tec.openplanner.team/stops/NL76alb", "https://tec.openplanner.team/stops/NL76bcb"], ["https://tec.openplanner.team/stops/Bcrncce1", "https://tec.openplanner.team/stops/N529acb"], ["https://tec.openplanner.team/stops/Becepon1", "https://tec.openplanner.team/stops/H2mi123b"], ["https://tec.openplanner.team/stops/Cmlgoff2", "https://tec.openplanner.team/stops/Cmltemp5"], ["https://tec.openplanner.team/stops/H2hg147b", "https://tec.openplanner.team/stops/H2hg153b"], ["https://tec.openplanner.team/stops/Blhufro2", "https://tec.openplanner.team/stops/Blhuibm2"], ["https://tec.openplanner.team/stops/LJeeg--1", "https://tec.openplanner.team/stops/LJelava2"], ["https://tec.openplanner.team/stops/N536agb", "https://tec.openplanner.team/stops/N536aqb"], ["https://tec.openplanner.team/stops/Ltichif1", "https://tec.openplanner.team/stops/Ltichif2"], ["https://tec.openplanner.team/stops/Bnivpri1", "https://tec.openplanner.team/stops/Bnivvcw1"], ["https://tec.openplanner.team/stops/LAWcite3", "https://tec.openplanner.team/stops/LHGikea2"], ["https://tec.openplanner.team/stops/N360adb", "https://tec.openplanner.team/stops/N360aea"], ["https://tec.openplanner.team/stops/X364aca", "https://tec.openplanner.team/stops/X364ada"], ["https://tec.openplanner.team/stops/Broscha1", "https://tec.openplanner.team/stops/Brosegl1"], ["https://tec.openplanner.team/stops/H1hr117b", "https://tec.openplanner.team/stops/H1hr126a"], ["https://tec.openplanner.team/stops/LLVboss1", "https://tec.openplanner.team/stops/X575aca"], ["https://tec.openplanner.team/stops/Cchba02", "https://tec.openplanner.team/stops/Cchfort1"], ["https://tec.openplanner.team/stops/Cdaptca2", "https://tec.openplanner.team/stops/Cmlthym2"], ["https://tec.openplanner.team/stops/H4ty312a", "https://tec.openplanner.team/stops/H4ty318a"], ["https://tec.openplanner.team/stops/Ljeheur1", "https://tec.openplanner.team/stops/Ljemake2"], ["https://tec.openplanner.team/stops/LDppana1", "https://tec.openplanner.team/stops/LDppana2"], ["https://tec.openplanner.team/stops/Btilgar1", "https://tec.openplanner.team/stops/Btilgar2"], ["https://tec.openplanner.team/stops/H4wu375a", "https://tec.openplanner.team/stops/H4wu375b"], ["https://tec.openplanner.team/stops/Lmodeja2", "https://tec.openplanner.team/stops/Lmoknae2"], ["https://tec.openplanner.team/stops/N244aoa", "https://tec.openplanner.team/stops/N244aob"], ["https://tec.openplanner.team/stops/N118acc", "https://tec.openplanner.team/stops/N118aya"], ["https://tec.openplanner.team/stops/X907acb", "https://tec.openplanner.team/stops/X907adb"], ["https://tec.openplanner.team/stops/X637aca", "https://tec.openplanner.team/stops/X637acb"], ["https://tec.openplanner.team/stops/Bchgegl1", "https://tec.openplanner.team/stops/Bchgpap1"], ["https://tec.openplanner.team/stops/H2se113a", "https://tec.openplanner.team/stops/H2se115a"], ["https://tec.openplanner.team/stops/LAYharz1", "https://tec.openplanner.team/stops/LAYthir2"], ["https://tec.openplanner.team/stops/H1mg108a", "https://tec.openplanner.team/stops/H1mg109a"], ["https://tec.openplanner.team/stops/Ljeegli6", "https://tec.openplanner.team/stops/Ljestat2"], ["https://tec.openplanner.team/stops/Cwgmart1", "https://tec.openplanner.team/stops/Cwgmart2"], ["https://tec.openplanner.team/stops/H4ve134a", "https://tec.openplanner.team/stops/H4ve134b"], ["https://tec.openplanner.team/stops/X757aic", "https://tec.openplanner.team/stops/X757anb"], ["https://tec.openplanner.team/stops/X948asb", "https://tec.openplanner.team/stops/X948aua"], ["https://tec.openplanner.team/stops/LAieg--3", "https://tec.openplanner.team/stops/LGlcarr1"], ["https://tec.openplanner.team/stops/H4am100a", "https://tec.openplanner.team/stops/H4am100b"], ["https://tec.openplanner.team/stops/H1gi118a", "https://tec.openplanner.team/stops/H1gi120a"], ["https://tec.openplanner.team/stops/LXomc--4", "https://tec.openplanner.team/stops/LXopeti1"], ["https://tec.openplanner.team/stops/H4ru242a", "https://tec.openplanner.team/stops/H4ru243a"], ["https://tec.openplanner.team/stops/Lsnecco1", "https://tec.openplanner.team/stops/Lsnecco3"], ["https://tec.openplanner.team/stops/H1gr119b", "https://tec.openplanner.team/stops/H1hr127b"], ["https://tec.openplanner.team/stops/LmHabzw2", "https://tec.openplanner.team/stops/LmHbien1"], ["https://tec.openplanner.team/stops/X899aba", "https://tec.openplanner.team/stops/X899ada"], ["https://tec.openplanner.team/stops/LREaube2", "https://tec.openplanner.team/stops/LREgar-1"], ["https://tec.openplanner.team/stops/LSerout2", "https://tec.openplanner.team/stops/LSetrix2"], ["https://tec.openplanner.team/stops/X371aba", "https://tec.openplanner.team/stops/X371abb"], ["https://tec.openplanner.team/stops/LwAlont1", "https://tec.openplanner.team/stops/LwAlont2"], ["https://tec.openplanner.team/stops/Bwancal1", "https://tec.openplanner.team/stops/Bwanthi1"], ["https://tec.openplanner.team/stops/Blascvi2", "https://tec.openplanner.team/stops/Blasvil2"], ["https://tec.openplanner.team/stops/X664ajb", "https://tec.openplanner.team/stops/X664ata"], ["https://tec.openplanner.team/stops/Ladmoli1", "https://tec.openplanner.team/stops/Ladverv2"], ["https://tec.openplanner.team/stops/Cthathe1", "https://tec.openplanner.team/stops/Cthrlef2"], ["https://tec.openplanner.team/stops/Bbchm381", "https://tec.openplanner.team/stops/Bwaucan1"], ["https://tec.openplanner.team/stops/N501kuc", "https://tec.openplanner.team/stops/N501lia"], ["https://tec.openplanner.team/stops/LCHeg--2", "https://tec.openplanner.team/stops/LCHsaul2"], ["https://tec.openplanner.team/stops/Cjubien1", "https://tec.openplanner.team/stops/Cjugohi2"], ["https://tec.openplanner.team/stops/N232aob", "https://tec.openplanner.team/stops/N286aab"], ["https://tec.openplanner.team/stops/H4gu111a", "https://tec.openplanner.team/stops/H4ta126b"], ["https://tec.openplanner.team/stops/X869aea", "https://tec.openplanner.team/stops/X870adb"], ["https://tec.openplanner.team/stops/LbRfrie1", "https://tec.openplanner.team/stops/LbRkirc1"], ["https://tec.openplanner.team/stops/H1gg114a", "https://tec.openplanner.team/stops/H1gg114b"], ["https://tec.openplanner.team/stops/H4mo154a", "https://tec.openplanner.team/stops/H4mo184b"], ["https://tec.openplanner.team/stops/Clggrfe1", "https://tec.openplanner.team/stops/Clgmaco1"], ["https://tec.openplanner.team/stops/N423acb", "https://tec.openplanner.team/stops/N423aea"], ["https://tec.openplanner.team/stops/X601aqa", "https://tec.openplanner.team/stops/X601aqb"], ["https://tec.openplanner.team/stops/N115aba", "https://tec.openplanner.team/stops/N147afb"], ["https://tec.openplanner.team/stops/Brixcme1", "https://tec.openplanner.team/stops/Brixpbs2"], ["https://tec.openplanner.team/stops/LREheyd1", "https://tec.openplanner.team/stops/LRErive1"], ["https://tec.openplanner.team/stops/N321aba", "https://tec.openplanner.team/stops/N323acb"], ["https://tec.openplanner.team/stops/X941ada", "https://tec.openplanner.team/stops/X942acb"], ["https://tec.openplanner.team/stops/Cchdrai2", "https://tec.openplanner.team/stops/CMwate2"], ["https://tec.openplanner.team/stops/H1ms360a", "https://tec.openplanner.team/stops/H1ms920a"], ["https://tec.openplanner.team/stops/H1je223a", "https://tec.openplanner.team/stops/H1je369a"], ["https://tec.openplanner.team/stops/H1bd101b", "https://tec.openplanner.team/stops/H1hq126a"], ["https://tec.openplanner.team/stops/LHAheml2", "https://tec.openplanner.team/stops/Lvicitw2"], ["https://tec.openplanner.team/stops/Bhalalb1", "https://tec.openplanner.team/stops/Bhalwat2"], ["https://tec.openplanner.team/stops/Bkrawil1", "https://tec.openplanner.team/stops/Bovesol1"], ["https://tec.openplanner.team/stops/X756ada", "https://tec.openplanner.team/stops/X756adb"], ["https://tec.openplanner.team/stops/Llgwild1", "https://tec.openplanner.team/stops/Llgwild6"], ["https://tec.openplanner.team/stops/LTGsucr1", "https://tec.openplanner.team/stops/LTGvill1"], ["https://tec.openplanner.team/stops/N505ala", "https://tec.openplanner.team/stops/N579acb"], ["https://tec.openplanner.team/stops/Ljuargi1", "https://tec.openplanner.team/stops/Ljumiux1"], ["https://tec.openplanner.team/stops/LFFchal1", "https://tec.openplanner.team/stops/LFFeg--2"], ["https://tec.openplanner.team/stops/H4ha171b", "https://tec.openplanner.team/stops/H4me213b"], ["https://tec.openplanner.team/stops/X767ada", "https://tec.openplanner.team/stops/X769aaa"], ["https://tec.openplanner.team/stops/X768aha", "https://tec.openplanner.team/stops/X768ahb"], ["https://tec.openplanner.team/stops/N308aaa", "https://tec.openplanner.team/stops/N308aba"], ["https://tec.openplanner.team/stops/LClsacr1", "https://tec.openplanner.team/stops/LThchar2"], ["https://tec.openplanner.team/stops/Crolema2", "https://tec.openplanner.team/stops/Crorpai1"], ["https://tec.openplanner.team/stops/LVbeg--1", "https://tec.openplanner.team/stops/LVbgend2"], ["https://tec.openplanner.team/stops/LMtegli2", "https://tec.openplanner.team/stops/LMttrou2"], ["https://tec.openplanner.team/stops/LCEhayo1", "https://tec.openplanner.team/stops/LCEhayo2"], ["https://tec.openplanner.team/stops/X952afb", "https://tec.openplanner.team/stops/X954aea"], ["https://tec.openplanner.team/stops/N540aia", "https://tec.openplanner.team/stops/N540alb"], ["https://tec.openplanner.team/stops/Cmaegal2", "https://tec.openplanner.team/stops/Cmastni1"], ["https://tec.openplanner.team/stops/Cjugend3", "https://tec.openplanner.team/stops/Cjuvign2"], ["https://tec.openplanner.team/stops/LLbmalm2", "https://tec.openplanner.team/stops/LLbvith2"], ["https://tec.openplanner.team/stops/Cgrchfe1", "https://tec.openplanner.team/stops/NC02aab"], ["https://tec.openplanner.team/stops/LOltill2", "https://tec.openplanner.team/stops/LOlvill2"], ["https://tec.openplanner.team/stops/LRObarr2", "https://tec.openplanner.team/stops/LWLtamb2"], ["https://tec.openplanner.team/stops/Cmaprov1", "https://tec.openplanner.team/stops/CMprov1"], ["https://tec.openplanner.team/stops/LBTnors2", "https://tec.openplanner.team/stops/LBTxhen1"], ["https://tec.openplanner.team/stops/LFRgode2", "https://tec.openplanner.team/stops/LFRrohe2"], ["https://tec.openplanner.team/stops/H1le117a", "https://tec.openplanner.team/stops/H1le125b"], ["https://tec.openplanner.team/stops/Bmsgbur2", "https://tec.openplanner.team/stops/Bmsgfon1"], ["https://tec.openplanner.team/stops/H4fr386a", "https://tec.openplanner.team/stops/H4fr393a"], ["https://tec.openplanner.team/stops/Lsmberg1", "https://tec.openplanner.team/stops/Lsmpost1"], ["https://tec.openplanner.team/stops/H2ha134a", "https://tec.openplanner.team/stops/H2ha135b"], ["https://tec.openplanner.team/stops/N527aaa", "https://tec.openplanner.team/stops/N533apb"], ["https://tec.openplanner.team/stops/Lhubriq2", "https://tec.openplanner.team/stops/Lhutann2"], ["https://tec.openplanner.team/stops/X354aha", "https://tec.openplanner.team/stops/X354ahb"], ["https://tec.openplanner.team/stops/Cprgran1", "https://tec.openplanner.team/stops/Cprgran2"], ["https://tec.openplanner.team/stops/X601aea", "https://tec.openplanner.team/stops/X601ala"], ["https://tec.openplanner.team/stops/Bsomh671", "https://tec.openplanner.team/stops/Bsompri1"], ["https://tec.openplanner.team/stops/LHUmess2", "https://tec.openplanner.team/stops/LTiec--1"], ["https://tec.openplanner.team/stops/H4ty329a", "https://tec.openplanner.team/stops/H4ty339b"], ["https://tec.openplanner.team/stops/LkEheyg2", "https://tec.openplanner.team/stops/LkEspor1"], ["https://tec.openplanner.team/stops/LWRcruc1", "https://tec.openplanner.team/stops/LWRgare1"], ["https://tec.openplanner.team/stops/N260aaa", "https://tec.openplanner.team/stops/N260aeb"], ["https://tec.openplanner.team/stops/H1pa112a", "https://tec.openplanner.team/stops/H1pa112b"], ["https://tec.openplanner.team/stops/N220aaa", "https://tec.openplanner.team/stops/X394aaa"], ["https://tec.openplanner.team/stops/Bauddel1", "https://tec.openplanner.team/stops/Baudhan2"], ["https://tec.openplanner.team/stops/Cjulamb2", "https://tec.openplanner.team/stops/Cjulamb4"], ["https://tec.openplanner.team/stops/LBkjenn1", "https://tec.openplanner.team/stops/LBkjenn2"], ["https://tec.openplanner.team/stops/X723aja", "https://tec.openplanner.team/stops/X723ajb"], ["https://tec.openplanner.team/stops/H1fa118a", "https://tec.openplanner.team/stops/H1pe131a"], ["https://tec.openplanner.team/stops/H4hu114a", "https://tec.openplanner.team/stops/H4hu122b"], ["https://tec.openplanner.team/stops/N207aab", "https://tec.openplanner.team/stops/N207acb"], ["https://tec.openplanner.team/stops/Lmndeso1", "https://tec.openplanner.team/stops/Lsmtini1"], ["https://tec.openplanner.team/stops/N534atc", "https://tec.openplanner.team/stops/N534ava"], ["https://tec.openplanner.team/stops/X901aqa", "https://tec.openplanner.team/stops/X901aqb"], ["https://tec.openplanner.team/stops/LLrlour1", "https://tec.openplanner.team/stops/LLrquar1"], ["https://tec.openplanner.team/stops/N501bfb", "https://tec.openplanner.team/stops/N501hsz"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N313aca"], ["https://tec.openplanner.team/stops/X824aja", "https://tec.openplanner.team/stops/X824ajb"], ["https://tec.openplanner.team/stops/N127aia", "https://tec.openplanner.team/stops/N127aib"], ["https://tec.openplanner.team/stops/X805aac", "https://tec.openplanner.team/stops/X805agb"], ["https://tec.openplanner.team/stops/Blilgar1", "https://tec.openplanner.team/stops/Blilhay1"], ["https://tec.openplanner.team/stops/LeYgros1", "https://tec.openplanner.team/stops/LeYgros2"], ["https://tec.openplanner.team/stops/X640arb", "https://tec.openplanner.team/stops/X640asa"], ["https://tec.openplanner.team/stops/H1et101b", "https://tec.openplanner.team/stops/H1et102a"], ["https://tec.openplanner.team/stops/NL35aga", "https://tec.openplanner.team/stops/NL35agb"], ["https://tec.openplanner.team/stops/Bmoucnd1", "https://tec.openplanner.team/stops/Bmoucnd2"], ["https://tec.openplanner.team/stops/X362ada", "https://tec.openplanner.team/stops/X362adb"], ["https://tec.openplanner.team/stops/LRRecdu2", "https://tec.openplanner.team/stops/LRRtrix1"], ["https://tec.openplanner.team/stops/Cmmlong1", "https://tec.openplanner.team/stops/Cmmlong2"], ["https://tec.openplanner.team/stops/LBRmout4", "https://tec.openplanner.team/stops/LVHbrai2"], ["https://tec.openplanner.team/stops/Crajasm3", "https://tec.openplanner.team/stops/Crajasm4"], ["https://tec.openplanner.team/stops/Cfrcoop1", "https://tec.openplanner.team/stops/Cfrmon4"], ["https://tec.openplanner.team/stops/Lanegal1", "https://tec.openplanner.team/stops/Lanegal2"], ["https://tec.openplanner.team/stops/N232bcb", "https://tec.openplanner.team/stops/N232bgb"], ["https://tec.openplanner.team/stops/Bbaubon1", "https://tec.openplanner.team/stops/Bbaubru1"], ["https://tec.openplanner.team/stops/LSIespe1", "https://tec.openplanner.team/stops/LSImewi1"], ["https://tec.openplanner.team/stops/LHgroso1", "https://tec.openplanner.team/stops/LHgtomb1"], ["https://tec.openplanner.team/stops/X660agb", "https://tec.openplanner.team/stops/X660ajb"], ["https://tec.openplanner.team/stops/Ctuplac3", "https://tec.openplanner.team/stops/Ctusold1"], ["https://tec.openplanner.team/stops/H1ho122a", "https://tec.openplanner.team/stops/H1ho122b"], ["https://tec.openplanner.team/stops/X902aya", "https://tec.openplanner.team/stops/X902bgb"], ["https://tec.openplanner.team/stops/Ccogera1", "https://tec.openplanner.team/stops/Ccogera2"], ["https://tec.openplanner.team/stops/H1gn148b", "https://tec.openplanner.team/stops/H1ol146b"], ["https://tec.openplanner.team/stops/N234aaa", "https://tec.openplanner.team/stops/N243adb"], ["https://tec.openplanner.team/stops/X743aca", "https://tec.openplanner.team/stops/X743ada"], ["https://tec.openplanner.team/stops/LJAcent2", "https://tec.openplanner.team/stops/LJAherb1"], ["https://tec.openplanner.team/stops/Cflvxsa1", "https://tec.openplanner.team/stops/Cwgpatr1"], ["https://tec.openplanner.team/stops/N551adb", "https://tec.openplanner.team/stops/N551aqb"], ["https://tec.openplanner.team/stops/H4ch115b", "https://tec.openplanner.team/stops/H4ty321b"], ["https://tec.openplanner.team/stops/N503aba", "https://tec.openplanner.team/stops/N503alb"], ["https://tec.openplanner.team/stops/X982aja", "https://tec.openplanner.team/stops/X982bxa"], ["https://tec.openplanner.team/stops/H1ne146a", "https://tec.openplanner.team/stops/H1ne146b"], ["https://tec.openplanner.team/stops/LHAleru1", "https://tec.openplanner.team/stops/Lvicitw2"], ["https://tec.openplanner.team/stops/LaMhe831", "https://tec.openplanner.team/stops/LeIkirr1"], ["https://tec.openplanner.team/stops/H4ir163a", "https://tec.openplanner.team/stops/H4ir164b"], ["https://tec.openplanner.team/stops/H5rx126b", "https://tec.openplanner.team/stops/H5rx127a"], ["https://tec.openplanner.team/stops/Bpielom2", "https://tec.openplanner.team/stops/Bpiepla2"], ["https://tec.openplanner.team/stops/Cfrfaub2", "https://tec.openplanner.team/stops/Cvp3til4"], ["https://tec.openplanner.team/stops/LNCneuv2", "https://tec.openplanner.team/stops/LRachen2"], ["https://tec.openplanner.team/stops/LHFappe1", "https://tec.openplanner.team/stops/LHFappe4"], ["https://tec.openplanner.team/stops/X654aja", "https://tec.openplanner.team/stops/X670arb"], ["https://tec.openplanner.team/stops/N584ada", "https://tec.openplanner.team/stops/N584alb"], ["https://tec.openplanner.team/stops/Lghhaut2", "https://tec.openplanner.team/stops/Lghwass1"], ["https://tec.openplanner.team/stops/Bwavgar1", "https://tec.openplanner.team/stops/Bwavgar8"], ["https://tec.openplanner.team/stops/Bhmmhde1", "https://tec.openplanner.team/stops/Btlgmar1"], ["https://tec.openplanner.team/stops/LSDheus1", "https://tec.openplanner.team/stops/LSDvill1"], ["https://tec.openplanner.team/stops/X641ada", "https://tec.openplanner.team/stops/X641agb"], ["https://tec.openplanner.team/stops/H4mv191b", "https://tec.openplanner.team/stops/H4oe149b"], ["https://tec.openplanner.team/stops/H1so131e", "https://tec.openplanner.team/stops/H1so131f"], ["https://tec.openplanner.team/stops/Lvevert1", "https://tec.openplanner.team/stops/Lvevert2"], ["https://tec.openplanner.team/stops/X902awa", "https://tec.openplanner.team/stops/X902baa"], ["https://tec.openplanner.team/stops/N103afb", "https://tec.openplanner.team/stops/N131aeb"], ["https://tec.openplanner.team/stops/X949aeb", "https://tec.openplanner.team/stops/X949ala"], ["https://tec.openplanner.team/stops/H4hu113b", "https://tec.openplanner.team/stops/H4hu117a"], ["https://tec.openplanner.team/stops/Bbrycar1", "https://tec.openplanner.team/stops/Bbryfon1"], ["https://tec.openplanner.team/stops/N501doa", "https://tec.openplanner.team/stops/N501dqb"], ["https://tec.openplanner.team/stops/X614apa", "https://tec.openplanner.team/stops/X614atb"], ["https://tec.openplanner.team/stops/H3bi102a", "https://tec.openplanner.team/stops/H3bi108b"], ["https://tec.openplanner.team/stops/Brsgecu1", "https://tec.openplanner.team/stops/Brsgecu2"], ["https://tec.openplanner.team/stops/N145aca", "https://tec.openplanner.team/stops/N145aec"], ["https://tec.openplanner.team/stops/H4ty293b", "https://tec.openplanner.team/stops/H4ty310b"], ["https://tec.openplanner.team/stops/Brsrpch2", "https://tec.openplanner.team/stops/Brsrrcu2"], ["https://tec.openplanner.team/stops/N124acb", "https://tec.openplanner.team/stops/N150aba"], ["https://tec.openplanner.team/stops/Ladpara1", "https://tec.openplanner.team/stops/Lvehv--1"], ["https://tec.openplanner.team/stops/Llggosw1", "https://tec.openplanner.team/stops/Llgmare5"], ["https://tec.openplanner.team/stops/N211aya", "https://tec.openplanner.team/stops/N225ahb"], ["https://tec.openplanner.team/stops/Bbgnton1", "https://tec.openplanner.team/stops/N530ahb"], ["https://tec.openplanner.team/stops/H2bh115b", "https://tec.openplanner.team/stops/H2mg142a"], ["https://tec.openplanner.team/stops/N424aea", "https://tec.openplanner.team/stops/N425aaa"], ["https://tec.openplanner.team/stops/H4cl112b", "https://tec.openplanner.team/stops/H4cl113b"], ["https://tec.openplanner.team/stops/N525aka", "https://tec.openplanner.team/stops/N525aza"], ["https://tec.openplanner.team/stops/LSDheus2", "https://tec.openplanner.team/stops/LTreg--1"], ["https://tec.openplanner.team/stops/Ladgron2", "https://tec.openplanner.team/stops/Ladplen*"], ["https://tec.openplanner.team/stops/H1hr120a", "https://tec.openplanner.team/stops/H1hr122a"], ["https://tec.openplanner.team/stops/N501hfa", "https://tec.openplanner.team/stops/N501hjc"], ["https://tec.openplanner.team/stops/H1fr115a", "https://tec.openplanner.team/stops/H1fr151b"], ["https://tec.openplanner.team/stops/Bhalh311", "https://tec.openplanner.team/stops/Bhalrat2"], ["https://tec.openplanner.team/stops/X604aba", "https://tec.openplanner.team/stops/X604abb"], ["https://tec.openplanner.team/stops/LSTparf2", "https://tec.openplanner.team/stops/LTPtroi2"], ["https://tec.openplanner.team/stops/Lagtilf1", "https://tec.openplanner.team/stops/Lagtilf2"], ["https://tec.openplanner.team/stops/H4bo121b", "https://tec.openplanner.team/stops/H4og211b"], ["https://tec.openplanner.team/stops/NL81ada", "https://tec.openplanner.team/stops/NL81adb"], ["https://tec.openplanner.team/stops/LLVeg--1", "https://tec.openplanner.team/stops/X575aea"], ["https://tec.openplanner.team/stops/N501idb", "https://tec.openplanner.team/stops/N501imb"], ["https://tec.openplanner.team/stops/H1ho131b", "https://tec.openplanner.team/stops/H1ho143a"], ["https://tec.openplanner.team/stops/X720aaa", "https://tec.openplanner.team/stops/X720aab"], ["https://tec.openplanner.team/stops/Cvtegli1", "https://tec.openplanner.team/stops/Cvtvail2"], ["https://tec.openplanner.team/stops/Caiecol1", "https://tec.openplanner.team/stops/Caioign3"], ["https://tec.openplanner.team/stops/LsEdorf1", "https://tec.openplanner.team/stops/LsVfeye2"], ["https://tec.openplanner.team/stops/Llgdoth2", "https://tec.openplanner.team/stops/Llgnata4"], ["https://tec.openplanner.team/stops/LPoneuf1", "https://tec.openplanner.team/stops/LTgsous1"], ["https://tec.openplanner.team/stops/Bwatclo1", "https://tec.openplanner.team/stops/Bwatgar3"], ["https://tec.openplanner.team/stops/X612aca", "https://tec.openplanner.team/stops/X612adb"], ["https://tec.openplanner.team/stops/X602acb", "https://tec.openplanner.team/stops/X623acb"], ["https://tec.openplanner.team/stops/LVIferm1", "https://tec.openplanner.team/stops/LVIlore2"], ["https://tec.openplanner.team/stops/LCLstat2", "https://tec.openplanner.team/stops/NL35adc"], ["https://tec.openplanner.team/stops/Lfhweri1", "https://tec.openplanner.team/stops/Lfhxhor1"], ["https://tec.openplanner.team/stops/X756abb", "https://tec.openplanner.team/stops/X756ada"], ["https://tec.openplanner.team/stops/N308ayb", "https://tec.openplanner.team/stops/N339aab"], ["https://tec.openplanner.team/stops/LAicarr1", "https://tec.openplanner.team/stops/LAicarr2"], ["https://tec.openplanner.team/stops/N225aea", "https://tec.openplanner.team/stops/N225aeb"], ["https://tec.openplanner.team/stops/N577akb", "https://tec.openplanner.team/stops/N578aab"], ["https://tec.openplanner.team/stops/Cchbrou2", "https://tec.openplanner.team/stops/Cchwate2"], ["https://tec.openplanner.team/stops/LLAbure1", "https://tec.openplanner.team/stops/LPlpomp1"], ["https://tec.openplanner.team/stops/N513abb", "https://tec.openplanner.team/stops/N513bhb"], ["https://tec.openplanner.team/stops/Lcefoxh2", "https://tec.openplanner.team/stops/Lcelhon2"], ["https://tec.openplanner.team/stops/LSTvaul2", "https://tec.openplanner.team/stops/LWneg--1"], ["https://tec.openplanner.team/stops/Barqbar1", "https://tec.openplanner.team/stops/Bnivmon1"], ["https://tec.openplanner.team/stops/LRObruy2", "https://tec.openplanner.team/stops/LROmons2"], ["https://tec.openplanner.team/stops/X725bca", "https://tec.openplanner.team/stops/X725bda"], ["https://tec.openplanner.team/stops/H4pi131b", "https://tec.openplanner.team/stops/H4wp153b"], ["https://tec.openplanner.team/stops/H2ll183a", "https://tec.openplanner.team/stops/H2ll260b"], ["https://tec.openplanner.team/stops/H1mb138a", "https://tec.openplanner.team/stops/H1mb168b"], ["https://tec.openplanner.team/stops/NC02aab", "https://tec.openplanner.team/stops/NC02abb"], ["https://tec.openplanner.team/stops/Cgylami2", "https://tec.openplanner.team/stops/Craferr1"], ["https://tec.openplanner.team/stops/H1hm174b", "https://tec.openplanner.team/stops/H1vg359a"], ["https://tec.openplanner.team/stops/N521alb", "https://tec.openplanner.team/stops/N527aca"], ["https://tec.openplanner.team/stops/Louoran1", "https://tec.openplanner.team/stops/Lsebelv1"], ["https://tec.openplanner.team/stops/Laleg--1", "https://tec.openplanner.team/stops/Laltrav2"], ["https://tec.openplanner.team/stops/N874acb", "https://tec.openplanner.team/stops/N894acb"], ["https://tec.openplanner.team/stops/Cmtchet2", "https://tec.openplanner.team/stops/Cmtrbla1"], ["https://tec.openplanner.team/stops/Crcpla1", "https://tec.openplanner.team/stops/Crcplac4"], ["https://tec.openplanner.team/stops/Bbst4br1", "https://tec.openplanner.team/stops/Cbtgemi2"], ["https://tec.openplanner.team/stops/NC14aea", "https://tec.openplanner.team/stops/NC14afb"], ["https://tec.openplanner.team/stops/LJSeg--1", "https://tec.openplanner.team/stops/LJSforg1"], ["https://tec.openplanner.team/stops/X605aab", "https://tec.openplanner.team/stops/X606abb"], ["https://tec.openplanner.team/stops/Bbstbou1", "https://tec.openplanner.team/stops/Bbstfch1"], ["https://tec.openplanner.team/stops/LmNlieb1", "https://tec.openplanner.team/stops/LmNsied1"], ["https://tec.openplanner.team/stops/H4ma201a", "https://tec.openplanner.team/stops/H4oq226a"], ["https://tec.openplanner.team/stops/H1ne148a", "https://tec.openplanner.team/stops/H1ne150a"], ["https://tec.openplanner.team/stops/Cclrgiv1", "https://tec.openplanner.team/stops/Ctuplac2"], ["https://tec.openplanner.team/stops/Laltrap1", "https://tec.openplanner.team/stops/Laltrap2"], ["https://tec.openplanner.team/stops/LSpcarr1", "https://tec.openplanner.team/stops/LSpcarr2"], ["https://tec.openplanner.team/stops/LVbpave1", "https://tec.openplanner.team/stops/NL78acb"], ["https://tec.openplanner.team/stops/N542aac", "https://tec.openplanner.team/stops/N542asb"], ["https://tec.openplanner.team/stops/N501cpa", "https://tec.openplanner.team/stops/N538aya"], ["https://tec.openplanner.team/stops/Llmbouv1", "https://tec.openplanner.team/stops/Llmeg--*"], ["https://tec.openplanner.team/stops/X641arb", "https://tec.openplanner.team/stops/X641avb"], ["https://tec.openplanner.team/stops/N501evb", "https://tec.openplanner.team/stops/N538ara"], ["https://tec.openplanner.team/stops/X982bka", "https://tec.openplanner.team/stops/X982bla"], ["https://tec.openplanner.team/stops/X773ahb", "https://tec.openplanner.team/stops/X773aoa"], ["https://tec.openplanner.team/stops/Llivina2", "https://tec.openplanner.team/stops/Lvtchpl4"], ["https://tec.openplanner.team/stops/LOLbout2", "https://tec.openplanner.team/stops/LSOboeu2"], ["https://tec.openplanner.team/stops/N501aoa", "https://tec.openplanner.team/stops/N501apa"], ["https://tec.openplanner.team/stops/Cmlsana2", "https://tec.openplanner.team/stops/Cmlsart1"], ["https://tec.openplanner.team/stops/Cjxdesc1", "https://tec.openplanner.team/stops/Cjxvalh2"], ["https://tec.openplanner.team/stops/H2sb239b", "https://tec.openplanner.team/stops/H2sb239d"], ["https://tec.openplanner.team/stops/Lverain1", "https://tec.openplanner.team/stops/Lvesomm3"], ["https://tec.openplanner.team/stops/Bgemgcw1", "https://tec.openplanner.team/stops/N522aeb"], ["https://tec.openplanner.team/stops/LETmagn1", "https://tec.openplanner.team/stops/LETmagn2"], ["https://tec.openplanner.team/stops/X727aha", "https://tec.openplanner.team/stops/X747aac"], ["https://tec.openplanner.team/stops/H1he103b", "https://tec.openplanner.team/stops/H1he111a"], ["https://tec.openplanner.team/stops/N308alb", "https://tec.openplanner.team/stops/N308bab"], ["https://tec.openplanner.team/stops/Bbgelre2", "https://tec.openplanner.team/stops/Bwaveur1"], ["https://tec.openplanner.team/stops/N218adb", "https://tec.openplanner.team/stops/N218aeb"], ["https://tec.openplanner.team/stops/X661aha", "https://tec.openplanner.team/stops/X661aja"], ["https://tec.openplanner.team/stops/LTPcarr1", "https://tec.openplanner.team/stops/LTPsatr2"], ["https://tec.openplanner.team/stops/H4ag104b", "https://tec.openplanner.team/stops/H4ag105b"], ["https://tec.openplanner.team/stops/LGMforg2", "https://tec.openplanner.team/stops/LGMvoue2"], ["https://tec.openplanner.team/stops/Ccychco1", "https://tec.openplanner.team/stops/NH01amb"], ["https://tec.openplanner.team/stops/X771aaa", "https://tec.openplanner.team/stops/X771aab"], ["https://tec.openplanner.team/stops/Cchsud07", "https://tec.openplanner.team/stops/Cchsud08"], ["https://tec.openplanner.team/stops/Bboncha1", "https://tec.openplanner.team/stops/Bdvm4ca1"], ["https://tec.openplanner.team/stops/Cluchbl4", "https://tec.openplanner.team/stops/Cpctunn1"], ["https://tec.openplanner.team/stops/H2lc168b", "https://tec.openplanner.team/stops/H2lc171b"], ["https://tec.openplanner.team/stops/LCvneu-1", "https://tec.openplanner.team/stops/LCvneuv4"], ["https://tec.openplanner.team/stops/X921apa", "https://tec.openplanner.team/stops/X923aob"], ["https://tec.openplanner.team/stops/Lanpast1", "https://tec.openplanner.team/stops/Lanplat1"], ["https://tec.openplanner.team/stops/N584boa", "https://tec.openplanner.team/stops/N584bob"], ["https://tec.openplanner.team/stops/Cthnord2", "https://tec.openplanner.team/stops/Cthpibl1"], ["https://tec.openplanner.team/stops/X870acb", "https://tec.openplanner.team/stops/X870ada"], ["https://tec.openplanner.team/stops/X653adc", "https://tec.openplanner.team/stops/X653add"], ["https://tec.openplanner.team/stops/N110afa", "https://tec.openplanner.team/stops/N110afb"], ["https://tec.openplanner.team/stops/H1ag105b", "https://tec.openplanner.team/stops/H1ag107b"], ["https://tec.openplanner.team/stops/H1fl134a", "https://tec.openplanner.team/stops/H1fl134b"], ["https://tec.openplanner.team/stops/X925ama", "https://tec.openplanner.team/stops/X925aob"], ["https://tec.openplanner.team/stops/Llgnico3", "https://tec.openplanner.team/stops/Llgnico5"], ["https://tec.openplanner.team/stops/Cfrmoul2", "https://tec.openplanner.team/stops/Cfrtry2"], ["https://tec.openplanner.team/stops/H4rm107b", "https://tec.openplanner.team/stops/H4rm107c"], ["https://tec.openplanner.team/stops/H5qu145b", "https://tec.openplanner.team/stops/H5qu154a"], ["https://tec.openplanner.team/stops/X926aab", "https://tec.openplanner.team/stops/X927aab"], ["https://tec.openplanner.team/stops/Cmaacac2", "https://tec.openplanner.team/stops/Cmacoll2"], ["https://tec.openplanner.team/stops/H1hy126a", "https://tec.openplanner.team/stops/H1hy126b"], ["https://tec.openplanner.team/stops/Lenhosp2", "https://tec.openplanner.team/stops/Lenmivi*"], ["https://tec.openplanner.team/stops/N226aaa", "https://tec.openplanner.team/stops/N338ahb"], ["https://tec.openplanner.team/stops/LsVhupp1", "https://tec.openplanner.team/stops/LsVrodt1"], ["https://tec.openplanner.team/stops/LGetroi1", "https://tec.openplanner.team/stops/LPbover2"], ["https://tec.openplanner.team/stops/Lrchype2", "https://tec.openplanner.team/stops/Lrclant1"], ["https://tec.openplanner.team/stops/X952ahb", "https://tec.openplanner.team/stops/X954adb"], ["https://tec.openplanner.team/stops/LSZchpl2", "https://tec.openplanner.team/stops/LSZptwa1"], ["https://tec.openplanner.team/stops/N564afb", "https://tec.openplanner.team/stops/N585ahb"], ["https://tec.openplanner.team/stops/LVIjacq1", "https://tec.openplanner.team/stops/LVIlore1"], ["https://tec.openplanner.team/stops/LBslama1", "https://tec.openplanner.team/stops/LBslama2"], ["https://tec.openplanner.team/stops/Bohnegl2", "https://tec.openplanner.team/stops/Bohnrpl2"], ["https://tec.openplanner.team/stops/H1ha192b", "https://tec.openplanner.team/stops/H1vh136c"], ["https://tec.openplanner.team/stops/LSAeg--1", "https://tec.openplanner.team/stops/LSAmous1"], ["https://tec.openplanner.team/stops/H1ms297b", "https://tec.openplanner.team/stops/H1ms932a"], ["https://tec.openplanner.team/stops/Cjuchli2", "https://tec.openplanner.team/stops/Cjuchli3"], ["https://tec.openplanner.team/stops/X614agb", "https://tec.openplanner.team/stops/X624abb"], ["https://tec.openplanner.team/stops/Lseboia2", "https://tec.openplanner.team/stops/Lsecime1"], ["https://tec.openplanner.team/stops/Bjodced2", "https://tec.openplanner.team/stops/Bjodppe1"], ["https://tec.openplanner.team/stops/Lbrdepo2", "https://tec.openplanner.team/stops/Lbrfagn2"], ["https://tec.openplanner.team/stops/N547ala", "https://tec.openplanner.team/stops/N547ald"], ["https://tec.openplanner.team/stops/N543aab", "https://tec.openplanner.team/stops/N543aeb"], ["https://tec.openplanner.team/stops/X641aza", "https://tec.openplanner.team/stops/X641azb"], ["https://tec.openplanner.team/stops/H1fl141a", "https://tec.openplanner.team/stops/H1fl141b"], ["https://tec.openplanner.team/stops/Bgdhcsh1", "https://tec.openplanner.team/stops/Bgdhlai2"], ["https://tec.openplanner.team/stops/Crcrwas1", "https://tec.openplanner.team/stops/Crcrwas2"], ["https://tec.openplanner.team/stops/N549aha", "https://tec.openplanner.team/stops/N549ahb"], ["https://tec.openplanner.team/stops/H1cu118b", "https://tec.openplanner.team/stops/H1cu120b"], ["https://tec.openplanner.team/stops/H1em101a", "https://tec.openplanner.team/stops/H1em105b"], ["https://tec.openplanner.team/stops/N232bfa", "https://tec.openplanner.team/stops/N232bvb"], ["https://tec.openplanner.team/stops/LGemari2", "https://tec.openplanner.team/stops/LMsec--2"], ["https://tec.openplanner.team/stops/H5bl118a", "https://tec.openplanner.team/stops/H5bl118b"], ["https://tec.openplanner.team/stops/H5at107b", "https://tec.openplanner.team/stops/H5at112a"], ["https://tec.openplanner.team/stops/Bndb4ch2", "https://tec.openplanner.team/stops/Btlgreg1"], ["https://tec.openplanner.team/stops/Ljucomb1", "https://tec.openplanner.team/stops/Ljuplpr2"], ["https://tec.openplanner.team/stops/X639amd", "https://tec.openplanner.team/stops/X640aaa"], ["https://tec.openplanner.team/stops/Louairl2", "https://tec.openplanner.team/stops/Lscchat2"], ["https://tec.openplanner.team/stops/X670apb", "https://tec.openplanner.team/stops/X670asb"], ["https://tec.openplanner.team/stops/LEMec--1", "https://tec.openplanner.team/stops/LEMeg--1"], ["https://tec.openplanner.team/stops/Bgzdpco1", "https://tec.openplanner.team/stops/Bgzdpco2"], ["https://tec.openplanner.team/stops/Cmlener2", "https://tec.openplanner.team/stops/Cmllait2"], ["https://tec.openplanner.team/stops/H4gu107a", "https://tec.openplanner.team/stops/H4ta130b"], ["https://tec.openplanner.team/stops/Bnetegl4", "https://tec.openplanner.team/stops/Bpecvme1"], ["https://tec.openplanner.team/stops/X766acb", "https://tec.openplanner.team/stops/X766aeb"], ["https://tec.openplanner.team/stops/N501isa", "https://tec.openplanner.team/stops/N501iwa"], ["https://tec.openplanner.team/stops/Lflcle-5", "https://tec.openplanner.team/stops/Lmaetan*"], ["https://tec.openplanner.team/stops/X733aga", "https://tec.openplanner.team/stops/X733aja"], ["https://tec.openplanner.team/stops/H4hx119a", "https://tec.openplanner.team/stops/H4hx120b"], ["https://tec.openplanner.team/stops/LVnourt2", "https://tec.openplanner.team/stops/LVnourt3"], ["https://tec.openplanner.team/stops/Cfmsncb1", "https://tec.openplanner.team/stops/Cfmsncb2"], ["https://tec.openplanner.team/stops/Cmehels2", "https://tec.openplanner.team/stops/Cmerlme1"], ["https://tec.openplanner.team/stops/Bclglbu2", "https://tec.openplanner.team/stops/Bclgvse1"], ["https://tec.openplanner.team/stops/H4ta126a", "https://tec.openplanner.team/stops/H4ta128a"], ["https://tec.openplanner.team/stops/H3lr109b", "https://tec.openplanner.team/stops/H3lr109c"], ["https://tec.openplanner.team/stops/H1cu117b", "https://tec.openplanner.team/stops/H1cu131b"], ["https://tec.openplanner.team/stops/Bgrmfon2", "https://tec.openplanner.team/stops/N522ata"], ["https://tec.openplanner.team/stops/Bperqui2", "https://tec.openplanner.team/stops/Bperrsr2"], ["https://tec.openplanner.team/stops/Bgliaau1", "https://tec.openplanner.team/stops/Bgliopp4"], ["https://tec.openplanner.team/stops/Bsoigar2", "https://tec.openplanner.team/stops/H3so166d"], ["https://tec.openplanner.team/stops/Btubbsc1", "https://tec.openplanner.team/stops/Btubegy2"], ["https://tec.openplanner.team/stops/LrOgara3", "https://tec.openplanner.team/stops/LwR129-2"], ["https://tec.openplanner.team/stops/X608aba", "https://tec.openplanner.team/stops/X608ajb"], ["https://tec.openplanner.team/stops/H2ll184b", "https://tec.openplanner.team/stops/H2ll188a"], ["https://tec.openplanner.team/stops/LbOdorf2", "https://tec.openplanner.team/stops/LbOhoff1"], ["https://tec.openplanner.team/stops/X638aaa", "https://tec.openplanner.team/stops/X638ada"], ["https://tec.openplanner.team/stops/N121ada", "https://tec.openplanner.team/stops/N121ajb"], ["https://tec.openplanner.team/stops/LHMaube1", "https://tec.openplanner.team/stops/LLCeg--1"], ["https://tec.openplanner.team/stops/Brebblo1", "https://tec.openplanner.team/stops/Brebvic2"], ["https://tec.openplanner.team/stops/H1ha182a", "https://tec.openplanner.team/stops/H1ha183a"], ["https://tec.openplanner.team/stops/Lhrbrou1", "https://tec.openplanner.team/stops/Lhrbrou2"], ["https://tec.openplanner.team/stops/N528acb", "https://tec.openplanner.team/stops/N551aaa"], ["https://tec.openplanner.team/stops/X902ata", "https://tec.openplanner.team/stops/X902atb"], ["https://tec.openplanner.team/stops/LBUplac2", "https://tec.openplanner.team/stops/LBUvall1"], ["https://tec.openplanner.team/stops/X809aeb", "https://tec.openplanner.team/stops/X850acb"], ["https://tec.openplanner.team/stops/N529aja", "https://tec.openplanner.team/stops/N584aoa"], ["https://tec.openplanner.team/stops/N501fyc", "https://tec.openplanner.team/stops/N501hyb"], ["https://tec.openplanner.team/stops/Lvegc-1*", "https://tec.openplanner.team/stops/Lveveou1"], ["https://tec.openplanner.team/stops/LHycent*", "https://tec.openplanner.team/stops/LXoharz3"], ["https://tec.openplanner.team/stops/N505afb", "https://tec.openplanner.team/stops/N505aja"], ["https://tec.openplanner.team/stops/Bnivpeu1", "https://tec.openplanner.team/stops/Bnivver1"], ["https://tec.openplanner.team/stops/X636adb", "https://tec.openplanner.team/stops/X636aea"], ["https://tec.openplanner.team/stops/H1eu101b", "https://tec.openplanner.team/stops/H1eu102b"], ["https://tec.openplanner.team/stops/H1ho125a", "https://tec.openplanner.team/stops/H1ho125c"], ["https://tec.openplanner.team/stops/Bnivace2", "https://tec.openplanner.team/stops/Bnivver2"], ["https://tec.openplanner.team/stops/LLOberl1", "https://tec.openplanner.team/stops/LRRecsc*"], ["https://tec.openplanner.team/stops/X890aaa", "https://tec.openplanner.team/stops/X890afa"], ["https://tec.openplanner.team/stops/Bitrecu1", "https://tec.openplanner.team/stops/Bitrpsr2"], ["https://tec.openplanner.team/stops/LFHjamo2", "https://tec.openplanner.team/stops/LFHsucr1"], ["https://tec.openplanner.team/stops/H1eu101b", "https://tec.openplanner.team/stops/H1lb137a"], ["https://tec.openplanner.team/stops/Benggar1", "https://tec.openplanner.team/stops/Bstetre2"], ["https://tec.openplanner.team/stops/H4ty319a", "https://tec.openplanner.team/stops/H4ty319b"], ["https://tec.openplanner.team/stops/H4ty281b", "https://tec.openplanner.team/stops/H4ty339b"], ["https://tec.openplanner.team/stops/X601bbf", "https://tec.openplanner.team/stops/X601cza"], ["https://tec.openplanner.team/stops/NH01asb", "https://tec.openplanner.team/stops/NH01aub"], ["https://tec.openplanner.team/stops/X945aca", "https://tec.openplanner.team/stops/X945adb"], ["https://tec.openplanner.team/stops/H1hi122b", "https://tec.openplanner.team/stops/H1ht126b"], ["https://tec.openplanner.team/stops/Llggee52", "https://tec.openplanner.team/stops/Llgrass2"], ["https://tec.openplanner.team/stops/X738abb", "https://tec.openplanner.team/stops/X754aqa"], ["https://tec.openplanner.team/stops/Bspkbeu1", "https://tec.openplanner.team/stops/Bspkkhe1"], ["https://tec.openplanner.team/stops/Ltichif2", "https://tec.openplanner.team/stops/Ltiecch2"], ["https://tec.openplanner.team/stops/H4ar172a", "https://tec.openplanner.team/stops/H4ar173a"], ["https://tec.openplanner.team/stops/H4ga147a", "https://tec.openplanner.team/stops/H4ga167a"], ["https://tec.openplanner.team/stops/X938ada", "https://tec.openplanner.team/stops/X950aca"], ["https://tec.openplanner.team/stops/H4mo152a", "https://tec.openplanner.team/stops/H4mo205b"], ["https://tec.openplanner.team/stops/Cgymara2", "https://tec.openplanner.team/stops/Cgynoir1"], ["https://tec.openplanner.team/stops/N109ada", "https://tec.openplanner.team/stops/N123adb"], ["https://tec.openplanner.team/stops/LLrdigu2", "https://tec.openplanner.team/stops/LLrscie1"], ["https://tec.openplanner.team/stops/Bbeubos2", "https://tec.openplanner.team/stops/N574adb"], ["https://tec.openplanner.team/stops/N116adb", "https://tec.openplanner.team/stops/N151ajf"], ["https://tec.openplanner.team/stops/Csocime2", "https://tec.openplanner.team/stops/Csoplac2"], ["https://tec.openplanner.team/stops/Cwfaldi1", "https://tec.openplanner.team/stops/Cwfreta2"], ["https://tec.openplanner.team/stops/LsVthom1", "https://tec.openplanner.team/stops/LsVthom2"], ["https://tec.openplanner.team/stops/H1ss350a", "https://tec.openplanner.team/stops/H1ss350b"], ["https://tec.openplanner.team/stops/X796acc", "https://tec.openplanner.team/stops/X796ada"], ["https://tec.openplanner.team/stops/Lmojans1", "https://tec.openplanner.team/stops/Lmoweri2"], ["https://tec.openplanner.team/stops/H1hn205a", "https://tec.openplanner.team/stops/H1hn210a"], ["https://tec.openplanner.team/stops/Cloauln1", "https://tec.openplanner.team/stops/Cloauln2"], ["https://tec.openplanner.team/stops/LMOcorn1", "https://tec.openplanner.team/stops/LMOf35-2"], ["https://tec.openplanner.team/stops/Lvedepa*", "https://tec.openplanner.team/stops/Lvegest2"], ["https://tec.openplanner.team/stops/LkEherg1", "https://tec.openplanner.team/stops/LkEsouf1"], ["https://tec.openplanner.team/stops/N137afb", "https://tec.openplanner.team/stops/N137aja"], ["https://tec.openplanner.team/stops/H1ha183a", "https://tec.openplanner.team/stops/H3bo102a"], ["https://tec.openplanner.team/stops/H2hp119c", "https://tec.openplanner.team/stops/H2ll260a"], ["https://tec.openplanner.team/stops/LLbpt--1", "https://tec.openplanner.team/stops/LLbquar1"], ["https://tec.openplanner.team/stops/Bbxlple2", "https://tec.openplanner.team/stops/Bixlfla2"], ["https://tec.openplanner.team/stops/LSSeg--1", "https://tec.openplanner.team/stops/LSSeg--2"], ["https://tec.openplanner.team/stops/X731adb", "https://tec.openplanner.team/stops/X986ala"], ["https://tec.openplanner.team/stops/Clomakr2", "https://tec.openplanner.team/stops/CMdesc1"], ["https://tec.openplanner.team/stops/LTPbeau1", "https://tec.openplanner.team/stops/LTPbeau2"], ["https://tec.openplanner.team/stops/LaAneul2", "https://tec.openplanner.team/stops/LkOaugu2"], ["https://tec.openplanner.team/stops/Lbrrobe1", "https://tec.openplanner.team/stops/Lbrrobe2"], ["https://tec.openplanner.team/stops/Blkbavo1", "https://tec.openplanner.team/stops/Bucccre2"], ["https://tec.openplanner.team/stops/H2lh129b", "https://tec.openplanner.team/stops/H2mm144a"], ["https://tec.openplanner.team/stops/Clrecol1", "https://tec.openplanner.team/stops/Clrwesp1"], ["https://tec.openplanner.team/stops/Cflpost2", "https://tec.openplanner.team/stops/Cwgrabi2"], ["https://tec.openplanner.team/stops/LaM266-1", "https://tec.openplanner.team/stops/LaMschw2"], ["https://tec.openplanner.team/stops/N529aba", "https://tec.openplanner.team/stops/N529aha"], ["https://tec.openplanner.team/stops/LBYwez-2", "https://tec.openplanner.team/stops/LHEcruc1"], ["https://tec.openplanner.team/stops/H1je220b", "https://tec.openplanner.team/stops/H1je369a"], ["https://tec.openplanner.team/stops/Lpecroi1", "https://tec.openplanner.team/stops/LWenouv1"], ["https://tec.openplanner.team/stops/H1ms283a", "https://tec.openplanner.team/stops/H1ms292a"], ["https://tec.openplanner.team/stops/X768ada", "https://tec.openplanner.team/stops/X768afb"], ["https://tec.openplanner.team/stops/H4de114a", "https://tec.openplanner.team/stops/H4de114b"], ["https://tec.openplanner.team/stops/Cpljonc1", "https://tec.openplanner.team/stops/Cpljonc2"], ["https://tec.openplanner.team/stops/NL35abb", "https://tec.openplanner.team/stops/NL35aca"], ["https://tec.openplanner.team/stops/Bkrapri1", "https://tec.openplanner.team/stops/Bkrawil2"], ["https://tec.openplanner.team/stops/X723ahb", "https://tec.openplanner.team/stops/X723aia"], ["https://tec.openplanner.team/stops/H4ae100b", "https://tec.openplanner.team/stops/H4ef113b"], ["https://tec.openplanner.team/stops/LHEcoll1", "https://tec.openplanner.team/stops/LHEnaza1"], ["https://tec.openplanner.team/stops/X923aja", "https://tec.openplanner.team/stops/X923anb"], ["https://tec.openplanner.team/stops/X902bcb", "https://tec.openplanner.team/stops/X999aqb"], ["https://tec.openplanner.team/stops/H1bu137a", "https://tec.openplanner.team/stops/H3bi108b"], ["https://tec.openplanner.team/stops/Csecarr2", "https://tec.openplanner.team/stops/Csefour1"], ["https://tec.openplanner.team/stops/LmTgers2", "https://tec.openplanner.team/stops/LmTschi2"], ["https://tec.openplanner.team/stops/Barcbav1", "https://tec.openplanner.team/stops/Barcpre1"], ["https://tec.openplanner.team/stops/LCLacbi2", "https://tec.openplanner.team/stops/NL78afb"], ["https://tec.openplanner.team/stops/H1ro136a", "https://tec.openplanner.team/stops/H1ro139b"], ["https://tec.openplanner.team/stops/X823afb", "https://tec.openplanner.team/stops/X823afd"], ["https://tec.openplanner.team/stops/Ccomiau1", "https://tec.openplanner.team/stops/Cvvgrsa1"], ["https://tec.openplanner.team/stops/N518aaa", "https://tec.openplanner.team/stops/N518abb"], ["https://tec.openplanner.team/stops/N131aha", "https://tec.openplanner.team/stops/N138ajb"], ["https://tec.openplanner.team/stops/X609aaa", "https://tec.openplanner.team/stops/X627abb"], ["https://tec.openplanner.team/stops/N357acb", "https://tec.openplanner.team/stops/N357afb"], ["https://tec.openplanner.team/stops/N229aaa", "https://tec.openplanner.team/stops/N229ada"], ["https://tec.openplanner.team/stops/NL73abb", "https://tec.openplanner.team/stops/NL73acb"], ["https://tec.openplanner.team/stops/LVeeg--1", "https://tec.openplanner.team/stops/LVGeg--5"], ["https://tec.openplanner.team/stops/LSTchef1", "https://tec.openplanner.team/stops/LSTchef2"], ["https://tec.openplanner.team/stops/LRmsmvo1", "https://tec.openplanner.team/stops/LRmsmvo3"], ["https://tec.openplanner.team/stops/LLUadze2", "https://tec.openplanner.team/stops/LLUalou1"], ["https://tec.openplanner.team/stops/LAmeg--2", "https://tec.openplanner.team/stops/LNHbarr1"], ["https://tec.openplanner.team/stops/X307aaa", "https://tec.openplanner.team/stops/X314aab"], ["https://tec.openplanner.team/stops/X786aia", "https://tec.openplanner.team/stops/X788aaa"], ["https://tec.openplanner.team/stops/N566ada", "https://tec.openplanner.team/stops/N566adb"], ["https://tec.openplanner.team/stops/X664agb", "https://tec.openplanner.team/stops/X665aab"], ["https://tec.openplanner.team/stops/N551aca", "https://tec.openplanner.team/stops/N551acb"], ["https://tec.openplanner.team/stops/Bcerpco2", "https://tec.openplanner.team/stops/Blasbgc2"], ["https://tec.openplanner.team/stops/N202aec", "https://tec.openplanner.team/stops/N254aha"], ["https://tec.openplanner.team/stops/Bptecal2", "https://tec.openplanner.team/stops/Bptemch2"], ["https://tec.openplanner.team/stops/N155aib", "https://tec.openplanner.team/stops/N155ajb"], ["https://tec.openplanner.team/stops/Bhalpar2", "https://tec.openplanner.team/stops/Bhalsro2"], ["https://tec.openplanner.team/stops/X750aqa", "https://tec.openplanner.team/stops/X750ata"], ["https://tec.openplanner.team/stops/LESmecp*", "https://tec.openplanner.team/stops/LESryon1"], ["https://tec.openplanner.team/stops/X758aga", "https://tec.openplanner.team/stops/X758aia"], ["https://tec.openplanner.team/stops/LGefron2", "https://tec.openplanner.team/stops/LGegrun2"], ["https://tec.openplanner.team/stops/Cjucouc1", "https://tec.openplanner.team/stops/Cjupuis2"], ["https://tec.openplanner.team/stops/H5pe126a", "https://tec.openplanner.team/stops/H5pe126b"], ["https://tec.openplanner.team/stops/LeUgeme1", "https://tec.openplanner.team/stops/LeUgeme2"], ["https://tec.openplanner.team/stops/NL77afa", "https://tec.openplanner.team/stops/NL77agb"], ["https://tec.openplanner.team/stops/H4ka392b", "https://tec.openplanner.team/stops/H4ka394a"], ["https://tec.openplanner.team/stops/N501gka", "https://tec.openplanner.team/stops/N501kcb"], ["https://tec.openplanner.team/stops/LlOdrei2", "https://tec.openplanner.team/stops/LsVeite2"], ["https://tec.openplanner.team/stops/LFTcroi1", "https://tec.openplanner.team/stops/LFTec--3"], ["https://tec.openplanner.team/stops/N534brb", "https://tec.openplanner.team/stops/N534bub"], ["https://tec.openplanner.team/stops/X638ajb", "https://tec.openplanner.team/stops/X638alb"], ["https://tec.openplanner.team/stops/Bbeaap51", "https://tec.openplanner.team/stops/Bbealbu3"], ["https://tec.openplanner.team/stops/Bosqcar2", "https://tec.openplanner.team/stops/Bvirduj2"], ["https://tec.openplanner.team/stops/Bnodblt1", "https://tec.openplanner.team/stops/Bpienod1"], ["https://tec.openplanner.team/stops/Lhulibe1", "https://tec.openplanner.team/stops/Lmnrame1"], ["https://tec.openplanner.team/stops/N559aca", "https://tec.openplanner.team/stops/N559acb"], ["https://tec.openplanner.team/stops/Cdametr1", "https://tec.openplanner.team/stops/Cdaviol2"], ["https://tec.openplanner.team/stops/X651aca", "https://tec.openplanner.team/stops/X651acd"], ["https://tec.openplanner.team/stops/Cmldeto1", "https://tec.openplanner.team/stops/Cmldeto2"], ["https://tec.openplanner.team/stops/Cbmmafr1", "https://tec.openplanner.team/stops/Cbmmafr2"], ["https://tec.openplanner.team/stops/X781aca", "https://tec.openplanner.team/stops/X781acb"], ["https://tec.openplanner.team/stops/N135aha", "https://tec.openplanner.team/stops/N135akb"], ["https://tec.openplanner.team/stops/H4by115a", "https://tec.openplanner.team/stops/H4by117b"], ["https://tec.openplanner.team/stops/H2hg267a", "https://tec.openplanner.team/stops/H2ll198a"], ["https://tec.openplanner.team/stops/LSLvaux1", "https://tec.openplanner.team/stops/LSLvaux2"], ["https://tec.openplanner.team/stops/Clbchlo2", "https://tec.openplanner.team/stops/Cthrwai2"], ["https://tec.openplanner.team/stops/X725bba", "https://tec.openplanner.team/stops/X725bfa"], ["https://tec.openplanner.team/stops/X996aca", "https://tec.openplanner.team/stops/X996ada"], ["https://tec.openplanner.team/stops/LwAkett1", "https://tec.openplanner.team/stops/LwAkett2"], ["https://tec.openplanner.team/stops/LAwec--1", "https://tec.openplanner.team/stops/LAweg--1"], ["https://tec.openplanner.team/stops/Bwlhppg2", "https://tec.openplanner.team/stops/Bwlhppg4"], ["https://tec.openplanner.team/stops/N501eda", "https://tec.openplanner.team/stops/N501kqa"], ["https://tec.openplanner.team/stops/H1ms263a", "https://tec.openplanner.team/stops/H1ms271b"], ["https://tec.openplanner.team/stops/LBCaube1", "https://tec.openplanner.team/stops/LMAchod2"], ["https://tec.openplanner.team/stops/X749acb", "https://tec.openplanner.team/stops/X756aec"], ["https://tec.openplanner.team/stops/N219acb", "https://tec.openplanner.team/stops/N219ada"], ["https://tec.openplanner.team/stops/Cctchea2", "https://tec.openplanner.team/stops/NC11aka"], ["https://tec.openplanner.team/stops/Cfmcent1", "https://tec.openplanner.team/stops/Cfmgrmo2"], ["https://tec.openplanner.team/stops/LOlvill1", "https://tec.openplanner.team/stops/LOlvill2"], ["https://tec.openplanner.team/stops/LTResse2", "https://tec.openplanner.team/stops/LTRlonh2"], ["https://tec.openplanner.team/stops/N543aua", "https://tec.openplanner.team/stops/N543aya"], ["https://tec.openplanner.team/stops/LTrrich1", "https://tec.openplanner.team/stops/LTrrich2"], ["https://tec.openplanner.team/stops/X738ada", "https://tec.openplanner.team/stops/X738aea"], ["https://tec.openplanner.team/stops/H4ve131b", "https://tec.openplanner.team/stops/H4ve135b"], ["https://tec.openplanner.team/stops/Cfcrerp1", "https://tec.openplanner.team/stops/Cfcrerp2"], ["https://tec.openplanner.team/stops/X653aca", "https://tec.openplanner.team/stops/X663akb"], ["https://tec.openplanner.team/stops/X725ajb", "https://tec.openplanner.team/stops/X725ana"], ["https://tec.openplanner.team/stops/H4ty274b", "https://tec.openplanner.team/stops/H4ty317b"], ["https://tec.openplanner.team/stops/Bneeace1", "https://tec.openplanner.team/stops/Bneelaa2"], ["https://tec.openplanner.team/stops/LBIrout1", "https://tec.openplanner.team/stops/LFOcomb4"], ["https://tec.openplanner.team/stops/H2ch107b", "https://tec.openplanner.team/stops/H2lh130b"], ["https://tec.openplanner.team/stops/H4pq115a", "https://tec.openplanner.team/stops/H4pq120a"], ["https://tec.openplanner.team/stops/LAivill1", "https://tec.openplanner.team/stops/LAivill2"], ["https://tec.openplanner.team/stops/Csbplac1", "https://tec.openplanner.team/stops/H1sa115b"], ["https://tec.openplanner.team/stops/Bclgavi2", "https://tec.openplanner.team/stops/Bclgvse2"], ["https://tec.openplanner.team/stops/Cmocalv1", "https://tec.openplanner.team/stops/Cmopn1"], ["https://tec.openplanner.team/stops/N539ara", "https://tec.openplanner.team/stops/N539asb"], ["https://tec.openplanner.team/stops/Bgemcro2", "https://tec.openplanner.team/stops/N522afa"], ["https://tec.openplanner.team/stops/LWabela2", "https://tec.openplanner.team/stops/LWacime1"], ["https://tec.openplanner.team/stops/NL77aaa", "https://tec.openplanner.team/stops/NL77aab"], ["https://tec.openplanner.team/stops/LSIgehe2", "https://tec.openplanner.team/stops/LSInd--2"], ["https://tec.openplanner.team/stops/Lgrbonn1", "https://tec.openplanner.team/stops/Lgrbonn6"], ["https://tec.openplanner.team/stops/LOTcarr1", "https://tec.openplanner.team/stops/LOTjacq2"], ["https://tec.openplanner.team/stops/H1gh173a", "https://tec.openplanner.team/stops/H1ms942a"], ["https://tec.openplanner.team/stops/Bgnvcha1", "https://tec.openplanner.team/stops/Blhupa11"], ["https://tec.openplanner.team/stops/Cdamare2", "https://tec.openplanner.team/stops/Cdaviol1"], ["https://tec.openplanner.team/stops/H5bs102c", "https://tec.openplanner.team/stops/H5pe145a"], ["https://tec.openplanner.team/stops/H2ha142a", "https://tec.openplanner.team/stops/H2hg160a"], ["https://tec.openplanner.team/stops/X994afa", "https://tec.openplanner.team/stops/X994afb"], ["https://tec.openplanner.team/stops/Csedoua2", "https://tec.openplanner.team/stops/Csepote1"], ["https://tec.openplanner.team/stops/LSPClem1", "https://tec.openplanner.team/stops/LSPClem2"], ["https://tec.openplanner.team/stops/LNCdoma2", "https://tec.openplanner.team/stops/LNClila2"], ["https://tec.openplanner.team/stops/X745aba", "https://tec.openplanner.team/stops/X745acb"], ["https://tec.openplanner.team/stops/H1wa132b", "https://tec.openplanner.team/stops/H1wa160a"], ["https://tec.openplanner.team/stops/Blanmde2", "https://tec.openplanner.team/stops/Blanraa2"], ["https://tec.openplanner.team/stops/N539afc", "https://tec.openplanner.team/stops/N539aub"], ["https://tec.openplanner.team/stops/Ljemont2", "https://tec.openplanner.team/stops/Lmogerm1"], ["https://tec.openplanner.team/stops/LhGcasi2", "https://tec.openplanner.team/stops/LlNm%C3%BChl2"], ["https://tec.openplanner.team/stops/LHNtill2", "https://tec.openplanner.team/stops/LVParal1"], ["https://tec.openplanner.team/stops/Bhmmcim2", "https://tec.openplanner.team/stops/Btlgbro1"], ["https://tec.openplanner.team/stops/H1he110b", "https://tec.openplanner.team/stops/H4be106a"], ["https://tec.openplanner.team/stops/N149aaa", "https://tec.openplanner.team/stops/N149aab"], ["https://tec.openplanner.team/stops/X654agb", "https://tec.openplanner.team/stops/X654aha"], ["https://tec.openplanner.team/stops/X879aeb", "https://tec.openplanner.team/stops/X879aoa"], ["https://tec.openplanner.team/stops/N501bvb", "https://tec.openplanner.team/stops/N501bwa"], ["https://tec.openplanner.team/stops/N310acb", "https://tec.openplanner.team/stops/N313aab"], ["https://tec.openplanner.team/stops/Cfrempe2", "https://tec.openplanner.team/stops/Cfrptfe2"], ["https://tec.openplanner.team/stops/H1gh168a", "https://tec.openplanner.team/stops/H1gh168b"], ["https://tec.openplanner.team/stops/H2ec103a", "https://tec.openplanner.team/stops/H2ec103b"], ["https://tec.openplanner.team/stops/Bottbou1", "https://tec.openplanner.team/stops/Bottppa4"], ["https://tec.openplanner.team/stops/N245abb", "https://tec.openplanner.team/stops/N287ada"], ["https://tec.openplanner.team/stops/N383aaa", "https://tec.openplanner.team/stops/N874ana"], ["https://tec.openplanner.team/stops/X754acb", "https://tec.openplanner.team/stops/X754arb"], ["https://tec.openplanner.team/stops/Lsearbo2", "https://tec.openplanner.team/stops/Lseathe2"], ["https://tec.openplanner.team/stops/Brxmcha2", "https://tec.openplanner.team/stops/Brxmcna2"], ["https://tec.openplanner.team/stops/Cmmptno1", "https://tec.openplanner.team/stops/Cmmramb1"], ["https://tec.openplanner.team/stops/N353ahb", "https://tec.openplanner.team/stops/N353awb"], ["https://tec.openplanner.team/stops/LLStrid1", "https://tec.openplanner.team/stops/LLStrid4"], ["https://tec.openplanner.team/stops/H1bb121a", "https://tec.openplanner.team/stops/H1bb146a"], ["https://tec.openplanner.team/stops/N241aaa", "https://tec.openplanner.team/stops/N241agb"], ["https://tec.openplanner.team/stops/Csecout2", "https://tec.openplanner.team/stops/Csemacq2"], ["https://tec.openplanner.team/stops/X822ada", "https://tec.openplanner.team/stops/X822ama"], ["https://tec.openplanner.team/stops/N533aab", "https://tec.openplanner.team/stops/N533aia"], ["https://tec.openplanner.team/stops/X661ara", "https://tec.openplanner.team/stops/X661arc"], ["https://tec.openplanner.team/stops/H1mb136b", "https://tec.openplanner.team/stops/H1mb168b"], ["https://tec.openplanner.team/stops/H1ms278b", "https://tec.openplanner.team/stops/H1ms926a"], ["https://tec.openplanner.team/stops/H3bi112b", "https://tec.openplanner.team/stops/H3bi115a"], ["https://tec.openplanner.team/stops/X633adc", "https://tec.openplanner.team/stops/X633alb"], ["https://tec.openplanner.team/stops/H1bo107a", "https://tec.openplanner.team/stops/H1hi124b"], ["https://tec.openplanner.team/stops/Brsgfbl4", "https://tec.openplanner.team/stops/Brsgman2"], ["https://tec.openplanner.team/stops/LeUarno1", "https://tec.openplanner.team/stops/LeUmeie2"], ["https://tec.openplanner.team/stops/Lceegth2", "https://tec.openplanner.team/stops/Lcemeta1"], ["https://tec.openplanner.team/stops/Bwatmlo2", "https://tec.openplanner.team/stops/Bwatpcs2"], ["https://tec.openplanner.team/stops/X609aga", "https://tec.openplanner.team/stops/X609aoa"], ["https://tec.openplanner.team/stops/N501fqd", "https://tec.openplanner.team/stops/N501lyb"], ["https://tec.openplanner.team/stops/Bobacou2", "https://tec.openplanner.team/stops/Cobvill2"], ["https://tec.openplanner.team/stops/N874abb", "https://tec.openplanner.team/stops/N874aeb"], ["https://tec.openplanner.team/stops/Bbwacol2", "https://tec.openplanner.team/stops/Bwavdel1"], ["https://tec.openplanner.team/stops/Llgbour2", "https://tec.openplanner.team/stops/Lscatme2"], ["https://tec.openplanner.team/stops/LTHbelv1", "https://tec.openplanner.team/stops/LTHroch1"], ["https://tec.openplanner.team/stops/Cwgcamp2", "https://tec.openplanner.team/stops/Cwgdeba2"], ["https://tec.openplanner.team/stops/Lrebriq1", "https://tec.openplanner.team/stops/Lrevaul1"], ["https://tec.openplanner.team/stops/H1mk117a", "https://tec.openplanner.team/stops/H1mk123b"], ["https://tec.openplanner.team/stops/Ccoha602", "https://tec.openplanner.team/stops/Cgpauln1"], ["https://tec.openplanner.team/stops/Bbcocvb1", "https://tec.openplanner.team/stops/Bbcocvb2"], ["https://tec.openplanner.team/stops/LAYfoot1", "https://tec.openplanner.team/stops/LAYfoot2"], ["https://tec.openplanner.team/stops/LACwass1", "https://tec.openplanner.team/stops/LAvchpl1"], ["https://tec.openplanner.team/stops/N315aaa", "https://tec.openplanner.team/stops/X361aca"], ["https://tec.openplanner.team/stops/X801ava", "https://tec.openplanner.team/stops/X801aza"], ["https://tec.openplanner.team/stops/LHEepur1", "https://tec.openplanner.team/stops/LHEhv--1"], ["https://tec.openplanner.team/stops/Bjaugar1", "https://tec.openplanner.team/stops/Bjaugar2"], ["https://tec.openplanner.team/stops/N543bbc", "https://tec.openplanner.team/stops/N554acc"], ["https://tec.openplanner.team/stops/LLNbeau1", "https://tec.openplanner.team/stops/LLNogne1"], ["https://tec.openplanner.team/stops/H1he103a", "https://tec.openplanner.team/stops/H1po132b"], ["https://tec.openplanner.team/stops/X398ada", "https://tec.openplanner.team/stops/X398agb"], ["https://tec.openplanner.team/stops/X801chb", "https://tec.openplanner.team/stops/X836afa"], ["https://tec.openplanner.team/stops/LCvneu-2", "https://tec.openplanner.team/stops/LLEfagn1"], ["https://tec.openplanner.team/stops/H4ty308e", "https://tec.openplanner.team/stops/H4ty309a"], ["https://tec.openplanner.team/stops/N231aca", "https://tec.openplanner.team/stops/N231acb"], ["https://tec.openplanner.team/stops/X609apa", "https://tec.openplanner.team/stops/X645aaa"], ["https://tec.openplanner.team/stops/Livpost2", "https://tec.openplanner.team/stops/Livroch1"], ["https://tec.openplanner.team/stops/H4os217a", "https://tec.openplanner.team/stops/H4os220a"], ["https://tec.openplanner.team/stops/Loucham4", "https://tec.openplanner.team/stops/Louroos1"], ["https://tec.openplanner.team/stops/LbAhull2", "https://tec.openplanner.team/stops/LhLdorf2"], ["https://tec.openplanner.team/stops/N501bfb", "https://tec.openplanner.team/stops/N501nba"], ["https://tec.openplanner.team/stops/X811aka", "https://tec.openplanner.team/stops/X811ama"], ["https://tec.openplanner.team/stops/Bbea3he2", "https://tec.openplanner.team/stops/Bbeascl1"], ["https://tec.openplanner.team/stops/LATmals2", "https://tec.openplanner.team/stops/LATmonu1"], ["https://tec.openplanner.team/stops/Cctbois2", "https://tec.openplanner.team/stops/Cctkais1"], ["https://tec.openplanner.team/stops/H1og132a", "https://tec.openplanner.team/stops/H1og132b"], ["https://tec.openplanner.team/stops/LDAalbe2", "https://tec.openplanner.team/stops/LDAptbo1"], ["https://tec.openplanner.team/stops/LRmkult2", "https://tec.openplanner.team/stops/LTEkl122"], ["https://tec.openplanner.team/stops/Clihame1", "https://tec.openplanner.team/stops/Ctmwaut2"], ["https://tec.openplanner.team/stops/Bhtibru2", "https://tec.openplanner.team/stops/Bwaurge1"], ["https://tec.openplanner.team/stops/LSGbail2", "https://tec.openplanner.team/stops/LSGec--2"], ["https://tec.openplanner.team/stops/H1sp353b", "https://tec.openplanner.team/stops/H1ss351b"], ["https://tec.openplanner.team/stops/H4mo180a", "https://tec.openplanner.team/stops/H4mo188b"], ["https://tec.openplanner.team/stops/X767aba", "https://tec.openplanner.team/stops/X768aca"], ["https://tec.openplanner.team/stops/LLgmini2", "https://tec.openplanner.team/stops/LSPsauv1"], ["https://tec.openplanner.team/stops/NR21afa", "https://tec.openplanner.team/stops/NR21afb"], ["https://tec.openplanner.team/stops/H4bh101a", "https://tec.openplanner.team/stops/H4bh104a"], ["https://tec.openplanner.team/stops/LSTchat2", "https://tec.openplanner.team/stops/LSTparf1"], ["https://tec.openplanner.team/stops/LFyanto1", "https://tec.openplanner.team/stops/LFypont1"], ["https://tec.openplanner.team/stops/LmD181-2", "https://tec.openplanner.team/stops/LmD27--1"], ["https://tec.openplanner.team/stops/Cjufauv2", "https://tec.openplanner.team/stops/Cjupier2"], ["https://tec.openplanner.team/stops/H1hi123a", "https://tec.openplanner.team/stops/H1hi123b"], ["https://tec.openplanner.team/stops/N104akb", "https://tec.openplanner.team/stops/N106aab"], ["https://tec.openplanner.team/stops/X394abb", "https://tec.openplanner.team/stops/X394adb"], ["https://tec.openplanner.team/stops/X892ada", "https://tec.openplanner.team/stops/X892adb"], ["https://tec.openplanner.team/stops/X889aca", "https://tec.openplanner.team/stops/X889aea"], ["https://tec.openplanner.team/stops/Ccyrmon1", "https://tec.openplanner.team/stops/Ccyrmon2"], ["https://tec.openplanner.team/stops/Lghhoco1", "https://tec.openplanner.team/stops/Lghremy1"], ["https://tec.openplanner.team/stops/H1cu123a", "https://tec.openplanner.team/stops/H1cu129b"], ["https://tec.openplanner.team/stops/H4av100a", "https://tec.openplanner.team/stops/H4av103a"], ["https://tec.openplanner.team/stops/Bboueta2", "https://tec.openplanner.team/stops/Btancnd1"], ["https://tec.openplanner.team/stops/LESmart1", "https://tec.openplanner.team/stops/LPLhout2"], ["https://tec.openplanner.team/stops/H4hu114b", "https://tec.openplanner.team/stops/H4hu115a"], ["https://tec.openplanner.team/stops/LLegare2", "https://tec.openplanner.team/stops/X547ana"], ["https://tec.openplanner.team/stops/Bbldass2", "https://tec.openplanner.team/stops/Bhmmjco1"], ["https://tec.openplanner.team/stops/X716aaa", "https://tec.openplanner.team/stops/X716abb"], ["https://tec.openplanner.team/stops/LESmich2", "https://tec.openplanner.team/stops/LESslmo1"], ["https://tec.openplanner.team/stops/X390aka", "https://tec.openplanner.team/stops/X998azb"], ["https://tec.openplanner.team/stops/X615aqb", "https://tec.openplanner.team/stops/X615atb"], ["https://tec.openplanner.team/stops/N149ada", "https://tec.openplanner.team/stops/N149adb"], ["https://tec.openplanner.team/stops/N515arb", "https://tec.openplanner.team/stops/N515asa"], ["https://tec.openplanner.team/stops/H1gh149a", "https://tec.openplanner.team/stops/H1ms932a"], ["https://tec.openplanner.team/stops/H1ms296c", "https://tec.openplanner.team/stops/H1ms904a"], ["https://tec.openplanner.team/stops/N544agb", "https://tec.openplanner.team/stops/N547aab"], ["https://tec.openplanner.team/stops/LVnetan2", "https://tec.openplanner.team/stops/LVnourt4"], ["https://tec.openplanner.team/stops/Cclmoul1", "https://tec.openplanner.team/stops/Cclmoul2"], ["https://tec.openplanner.team/stops/LStgare*", "https://tec.openplanner.team/stops/NL80abb"], ["https://tec.openplanner.team/stops/LBichen1", "https://tec.openplanner.team/stops/LBichen2"], ["https://tec.openplanner.team/stops/X736aga", "https://tec.openplanner.team/stops/X753abb"], ["https://tec.openplanner.team/stops/LBEhaye1", "https://tec.openplanner.team/stops/LBEhaye2"], ["https://tec.openplanner.team/stops/Cgonvro1", "https://tec.openplanner.team/stops/Cwxchap2"], ["https://tec.openplanner.team/stops/LVIhall1", "https://tec.openplanner.team/stops/LVIlore2"], ["https://tec.openplanner.team/stops/Lfhborg2", "https://tec.openplanner.team/stops/Livjeu-1"], ["https://tec.openplanner.team/stops/LPRcha-*", "https://tec.openplanner.team/stops/LPRmc--1"], ["https://tec.openplanner.team/stops/LCPlacr1", "https://tec.openplanner.team/stops/LSdbote1"], ["https://tec.openplanner.team/stops/LWeec--2", "https://tec.openplanner.team/stops/LWelogi2"], ["https://tec.openplanner.team/stops/LTHmaka1", "https://tec.openplanner.team/stops/LTHperr3"], ["https://tec.openplanner.team/stops/LBHgile1", "https://tec.openplanner.team/stops/LBHhuyn1"], ["https://tec.openplanner.team/stops/N225aaa", "https://tec.openplanner.team/stops/N225aab"], ["https://tec.openplanner.team/stops/H1en100a", "https://tec.openplanner.team/stops/H1mk112b"], ["https://tec.openplanner.team/stops/X942acb", "https://tec.openplanner.team/stops/X942aga"], ["https://tec.openplanner.team/stops/N211ara", "https://tec.openplanner.team/stops/N211bca"], ["https://tec.openplanner.team/stops/Ccuplai2", "https://tec.openplanner.team/stops/Ccutail1"], ["https://tec.openplanner.team/stops/N202aab", "https://tec.openplanner.team/stops/N202aga"], ["https://tec.openplanner.team/stops/H4ma399a", "https://tec.openplanner.team/stops/H4ma401a"], ["https://tec.openplanner.team/stops/LREhenu2", "https://tec.openplanner.team/stops/LREsoug4"], ["https://tec.openplanner.team/stops/N532aea", "https://tec.openplanner.team/stops/N532aeb"], ["https://tec.openplanner.team/stops/LSPclai1", "https://tec.openplanner.team/stops/LSPgend1"], ["https://tec.openplanner.team/stops/H4gu110b", "https://tec.openplanner.team/stops/H4gu112b"], ["https://tec.openplanner.team/stops/H1gr112a", "https://tec.openplanner.team/stops/H1gr112b"], ["https://tec.openplanner.team/stops/X687ajb", "https://tec.openplanner.team/stops/X687akb"], ["https://tec.openplanner.team/stops/H1hn208b", "https://tec.openplanner.team/stops/H1ms940b"], ["https://tec.openplanner.team/stops/H4ty282a", "https://tec.openplanner.team/stops/H4ty332b"], ["https://tec.openplanner.team/stops/X991aga", "https://tec.openplanner.team/stops/X991agb"], ["https://tec.openplanner.team/stops/LSOchau2", "https://tec.openplanner.team/stops/LSOcime1"], ["https://tec.openplanner.team/stops/Ljecoqu1", "https://tec.openplanner.team/stops/Ljecoqu2"], ["https://tec.openplanner.team/stops/X750aob", "https://tec.openplanner.team/stops/X750apa"], ["https://tec.openplanner.team/stops/Csefour1", "https://tec.openplanner.team/stops/N424aaa"], ["https://tec.openplanner.team/stops/H1by109b", "https://tec.openplanner.team/stops/H1hq127b"], ["https://tec.openplanner.team/stops/Ljuchap2", "https://tec.openplanner.team/stops/Llgaba-1"], ["https://tec.openplanner.team/stops/N301afa", "https://tec.openplanner.team/stops/N302aaa"], ["https://tec.openplanner.team/stops/X714aeb", "https://tec.openplanner.team/stops/X715aib"], ["https://tec.openplanner.team/stops/X753aba", "https://tec.openplanner.team/stops/X753abd"], ["https://tec.openplanner.team/stops/N501daa", "https://tec.openplanner.team/stops/N501dea"], ["https://tec.openplanner.team/stops/H1ca105a", "https://tec.openplanner.team/stops/H1ml112a"], ["https://tec.openplanner.team/stops/LOeelbe2", "https://tec.openplanner.team/stops/LOewaut2"], ["https://tec.openplanner.team/stops/LWarema2", "https://tec.openplanner.team/stops/LWathir1"], ["https://tec.openplanner.team/stops/Ctufleu4", "https://tec.openplanner.team/stops/Ctupont2"], ["https://tec.openplanner.team/stops/N357aba", "https://tec.openplanner.team/stops/N357abb"], ["https://tec.openplanner.team/stops/H4lz121a", "https://tec.openplanner.team/stops/H4lz121d"], ["https://tec.openplanner.team/stops/LSSeg--2", "https://tec.openplanner.team/stops/LSShous2"], ["https://tec.openplanner.team/stops/N310abb", "https://tec.openplanner.team/stops/N310aeb"], ["https://tec.openplanner.team/stops/LFAec--1", "https://tec.openplanner.team/stops/LFAec--2"], ["https://tec.openplanner.team/stops/X858aba", "https://tec.openplanner.team/stops/X858abb"], ["https://tec.openplanner.team/stops/Lceavia2", "https://tec.openplanner.team/stops/Lceviei2"], ["https://tec.openplanner.team/stops/Bbrycar2", "https://tec.openplanner.team/stops/Bbryvil1"], ["https://tec.openplanner.team/stops/LHUsart2", "https://tec.openplanner.team/stops/LHUvege1"], ["https://tec.openplanner.team/stops/N543aib", "https://tec.openplanner.team/stops/N543ala"], ["https://tec.openplanner.team/stops/Cgpplac2", "https://tec.openplanner.team/stops/H2gy109a"], ["https://tec.openplanner.team/stops/Cctfaub1", "https://tec.openplanner.team/stops/Cctjust2"], ["https://tec.openplanner.team/stops/N552aba", "https://tec.openplanner.team/stops/N552aca"], ["https://tec.openplanner.team/stops/H1sg142a", "https://tec.openplanner.team/stops/H1sg145b"], ["https://tec.openplanner.team/stops/Bnivche2", "https://tec.openplanner.team/stops/Bnivsnu2"], ["https://tec.openplanner.team/stops/H1ht131a", "https://tec.openplanner.team/stops/H1ht133b"], ["https://tec.openplanner.team/stops/Cgyrjau1", "https://tec.openplanner.team/stops/Cgystjo3"], ["https://tec.openplanner.team/stops/Cfmchap2", "https://tec.openplanner.team/stops/Cfmmart1"], ["https://tec.openplanner.team/stops/Bzlucam1", "https://tec.openplanner.team/stops/Bzlufbo2"], ["https://tec.openplanner.team/stops/X986afb", "https://tec.openplanner.team/stops/X986aia"], ["https://tec.openplanner.team/stops/Bptrcra2", "https://tec.openplanner.team/stops/Bptrlux2"], ["https://tec.openplanner.team/stops/Baeggar2", "https://tec.openplanner.team/stops/NR38acb"], ["https://tec.openplanner.team/stops/N232aab", "https://tec.openplanner.team/stops/N232afa"], ["https://tec.openplanner.team/stops/H1pd146a", "https://tec.openplanner.team/stops/H1wg124b"], ["https://tec.openplanner.team/stops/H4be103a", "https://tec.openplanner.team/stops/H4be103b"], ["https://tec.openplanner.team/stops/X809aba", "https://tec.openplanner.team/stops/X809aca"], ["https://tec.openplanner.team/stops/LmYkirc1", "https://tec.openplanner.team/stops/LmYkreu1"], ["https://tec.openplanner.team/stops/N348aaa", "https://tec.openplanner.team/stops/N353awa"], ["https://tec.openplanner.team/stops/X995aaa", "https://tec.openplanner.team/stops/X995aab"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N331ahb"], ["https://tec.openplanner.team/stops/H4lg103b", "https://tec.openplanner.team/stops/H4rm112a"], ["https://tec.openplanner.team/stops/H1fl138a", "https://tec.openplanner.team/stops/H1fl138b"], ["https://tec.openplanner.team/stops/H4ty264a", "https://tec.openplanner.team/stops/H4ty352a"], ["https://tec.openplanner.team/stops/Bhticbr1", "https://tec.openplanner.team/stops/Bhticbr2"], ["https://tec.openplanner.team/stops/NH01aua", "https://tec.openplanner.team/stops/NH01aub"], ["https://tec.openplanner.team/stops/Bolgfon2", "https://tec.openplanner.team/stops/Bpthcai1"], ["https://tec.openplanner.team/stops/H2an100b", "https://tec.openplanner.team/stops/H2an111a"], ["https://tec.openplanner.team/stops/N150aea", "https://tec.openplanner.team/stops/N150afa"], ["https://tec.openplanner.team/stops/N501hxz", "https://tec.openplanner.team/stops/N501ikb"], ["https://tec.openplanner.team/stops/Cchba11", "https://tec.openplanner.team/stops/Ccheden2"], ["https://tec.openplanner.team/stops/N132adb", "https://tec.openplanner.team/stops/N138aja"], ["https://tec.openplanner.team/stops/LBWeg--3", "https://tec.openplanner.team/stops/LBWfusi2"], ["https://tec.openplanner.team/stops/LMIeg--1", "https://tec.openplanner.team/stops/LSOgott2"], ["https://tec.openplanner.team/stops/LVGeg--1", "https://tec.openplanner.team/stops/LVGeg--2"], ["https://tec.openplanner.team/stops/X756aia", "https://tec.openplanner.team/stops/X756aja"], ["https://tec.openplanner.team/stops/X768afb", "https://tec.openplanner.team/stops/X769amb"], ["https://tec.openplanner.team/stops/LLrcour1", "https://tec.openplanner.team/stops/LLrcour2"], ["https://tec.openplanner.team/stops/H4co133a", "https://tec.openplanner.team/stops/H4co148b"], ["https://tec.openplanner.team/stops/Bneepne2", "https://tec.openplanner.team/stops/Bneesan2"], ["https://tec.openplanner.team/stops/Clrecol2", "https://tec.openplanner.team/stops/Clrmarl2"], ["https://tec.openplanner.team/stops/LBjcent1", "https://tec.openplanner.team/stops/LTB105-1"], ["https://tec.openplanner.team/stops/Bjancha2", "https://tec.openplanner.team/stops/Bjanegl2"], ["https://tec.openplanner.team/stops/X790aia", "https://tec.openplanner.team/stops/X790aib"], ["https://tec.openplanner.team/stops/H1ma233a", "https://tec.openplanner.team/stops/H1ma237a"], ["https://tec.openplanner.team/stops/X727aab", "https://tec.openplanner.team/stops/X754axb"], ["https://tec.openplanner.team/stops/N512aga", "https://tec.openplanner.team/stops/N512agc"], ["https://tec.openplanner.team/stops/H5rx105a", "https://tec.openplanner.team/stops/H5rx134a"], ["https://tec.openplanner.team/stops/X614anb", "https://tec.openplanner.team/stops/X614aob"], ["https://tec.openplanner.team/stops/LeYauto2", "https://tec.openplanner.team/stops/LeYdorf1"], ["https://tec.openplanner.team/stops/Bbbksth2", "https://tec.openplanner.team/stops/Bhaawdr2"], ["https://tec.openplanner.team/stops/LAYgare1", "https://tec.openplanner.team/stops/LAYpl--3"], ["https://tec.openplanner.team/stops/Blpgbat1", "https://tec.openplanner.team/stops/Bvxgpro1"], ["https://tec.openplanner.team/stops/X878aca", "https://tec.openplanner.team/stops/X898abb"], ["https://tec.openplanner.team/stops/H4ga155b", "https://tec.openplanner.team/stops/H4ha171a"], ["https://tec.openplanner.team/stops/Lwaelme2", "https://tec.openplanner.team/stops/Lwakipe2"], ["https://tec.openplanner.team/stops/Bnivhut2", "https://tec.openplanner.team/stops/Bnivmfr2"], ["https://tec.openplanner.team/stops/LMupont1", "https://tec.openplanner.team/stops/LMupont2"], ["https://tec.openplanner.team/stops/X750axb", "https://tec.openplanner.team/stops/X750ayb"], ["https://tec.openplanner.team/stops/LCRfize1", "https://tec.openplanner.team/stops/LCRgdrt1"], ["https://tec.openplanner.team/stops/N540aba", "https://tec.openplanner.team/stops/N549aba"], ["https://tec.openplanner.team/stops/X542aaa", "https://tec.openplanner.team/stops/X750axb"], ["https://tec.openplanner.team/stops/X888acb", "https://tec.openplanner.team/stops/X899aia"], ["https://tec.openplanner.team/stops/N232ata", "https://tec.openplanner.team/stops/N232aua"], ["https://tec.openplanner.team/stops/LGeforg1", "https://tec.openplanner.team/stops/LGesent1"], ["https://tec.openplanner.team/stops/LMawilh4", "https://tec.openplanner.team/stops/LTolijn*"], ["https://tec.openplanner.team/stops/LSsaxhe1", "https://tec.openplanner.team/stops/LSseg--2"], ["https://tec.openplanner.team/stops/H1bo106c", "https://tec.openplanner.team/stops/H1bo109a"], ["https://tec.openplanner.team/stops/Bpecdel1", "https://tec.openplanner.team/stops/Bpechos1"], ["https://tec.openplanner.team/stops/X982bab", "https://tec.openplanner.team/stops/X982cfa"], ["https://tec.openplanner.team/stops/Bovehst2", "https://tec.openplanner.team/stops/Bovelge1"], ["https://tec.openplanner.team/stops/LXobaty1", "https://tec.openplanner.team/stops/LXofans2"], ["https://tec.openplanner.team/stops/LeUbahn2", "https://tec.openplanner.team/stops/LeUschn2"], ["https://tec.openplanner.team/stops/X780afa", "https://tec.openplanner.team/stops/X780ajb"], ["https://tec.openplanner.team/stops/H4ae100a", "https://tec.openplanner.team/stops/H4ae102a"], ["https://tec.openplanner.team/stops/Cmchai2", "https://tec.openplanner.team/stops/Cmggthi2"], ["https://tec.openplanner.team/stops/LFsguil2", "https://tec.openplanner.team/stops/LFsphar2"], ["https://tec.openplanner.team/stops/H4cl113b", "https://tec.openplanner.team/stops/H4vx360a"], ["https://tec.openplanner.team/stops/X604abb", "https://tec.openplanner.team/stops/X634aab"], ["https://tec.openplanner.team/stops/H4co105a", "https://tec.openplanner.team/stops/H4co158a"], ["https://tec.openplanner.team/stops/LOLrafh2", "https://tec.openplanner.team/stops/LSOchau1"], ["https://tec.openplanner.team/stops/Bnvmfba2", "https://tec.openplanner.team/stops/N518aab"], ["https://tec.openplanner.team/stops/LBAfort2", "https://tec.openplanner.team/stops/LSAchef2"], ["https://tec.openplanner.team/stops/H5pe132a", "https://tec.openplanner.team/stops/H5pe132b"], ["https://tec.openplanner.team/stops/H2hp118a", "https://tec.openplanner.team/stops/H2hp121a"], ["https://tec.openplanner.team/stops/Lhrbrou2", "https://tec.openplanner.team/stops/Lhrferr2"], ["https://tec.openplanner.team/stops/H1pa111a", "https://tec.openplanner.team/stops/H1pa167a"], ["https://tec.openplanner.team/stops/X614ava", "https://tec.openplanner.team/stops/X615ara"], ["https://tec.openplanner.team/stops/Cfbcabi2", "https://tec.openplanner.team/stops/Cfbegli1"], ["https://tec.openplanner.team/stops/LMemaza2", "https://tec.openplanner.team/stops/LMeperk2"], ["https://tec.openplanner.team/stops/H1cu110b", "https://tec.openplanner.team/stops/H1cu118b"], ["https://tec.openplanner.team/stops/X750ala", "https://tec.openplanner.team/stops/X750alb"], ["https://tec.openplanner.team/stops/X769aea", "https://tec.openplanner.team/stops/X769afa"], ["https://tec.openplanner.team/stops/Croplom2", "https://tec.openplanner.team/stops/Croplom4"], ["https://tec.openplanner.team/stops/X601ccc", "https://tec.openplanner.team/stops/X602aob"], ["https://tec.openplanner.team/stops/LLUmc--2", "https://tec.openplanner.team/stops/LLUmont2"], ["https://tec.openplanner.team/stops/N543aha", "https://tec.openplanner.team/stops/N543ayb"], ["https://tec.openplanner.team/stops/X764aeb", "https://tec.openplanner.team/stops/X764afb"], ["https://tec.openplanner.team/stops/N348aeb", "https://tec.openplanner.team/stops/N349aab"], ["https://tec.openplanner.team/stops/Cldvign1", "https://tec.openplanner.team/stops/Clrecol1"], ["https://tec.openplanner.team/stops/LSMgare1", "https://tec.openplanner.team/stops/LSMlier1"], ["https://tec.openplanner.team/stops/Bdvm4ca1", "https://tec.openplanner.team/stops/Bdvm4ca2"], ["https://tec.openplanner.team/stops/LTyh51-2", "https://tec.openplanner.team/stops/LTyhapp4"], ["https://tec.openplanner.team/stops/Lvtlimi1", "https://tec.openplanner.team/stops/Lvtpata1"], ["https://tec.openplanner.team/stops/Bnilreg1", "https://tec.openplanner.team/stops/Bnilreg2"], ["https://tec.openplanner.team/stops/LAascie1", "https://tec.openplanner.team/stops/LAascie2"], ["https://tec.openplanner.team/stops/Bnivall1", "https://tec.openplanner.team/stops/Bnivpba2"], ["https://tec.openplanner.team/stops/LaAbush*", "https://tec.openplanner.team/stops/LaAelis2"], ["https://tec.openplanner.team/stops/H1ch103b", "https://tec.openplanner.team/stops/H1ch107a"], ["https://tec.openplanner.team/stops/Bgntalt1", "https://tec.openplanner.team/stops/Bgntcoo2"], ["https://tec.openplanner.team/stops/Cvsduve1", "https://tec.openplanner.team/stops/N530aab"], ["https://tec.openplanner.team/stops/X608ala", "https://tec.openplanner.team/stops/X609ama"], ["https://tec.openplanner.team/stops/H1vh137b", "https://tec.openplanner.team/stops/H3go103a"], ["https://tec.openplanner.team/stops/Bwatcap1", "https://tec.openplanner.team/stops/Bwatcom1"], ["https://tec.openplanner.team/stops/N515aid", "https://tec.openplanner.team/stops/N515ala"], ["https://tec.openplanner.team/stops/Lbeloui1", "https://tec.openplanner.team/stops/Ljuvieu2"], ["https://tec.openplanner.team/stops/N562atb", "https://tec.openplanner.team/stops/N562bfb"], ["https://tec.openplanner.team/stops/LBEcomm2", "https://tec.openplanner.team/stops/LNipre-2"], ["https://tec.openplanner.team/stops/H1bd103a", "https://tec.openplanner.team/stops/H1bd103b"], ["https://tec.openplanner.team/stops/LFPchat1", "https://tec.openplanner.team/stops/LFPchat2"], ["https://tec.openplanner.team/stops/Bmarcha2", "https://tec.openplanner.team/stops/Bwagmco1"], ["https://tec.openplanner.team/stops/LAWdefr1", "https://tec.openplanner.team/stops/LHGtong1"], ["https://tec.openplanner.team/stops/LMYvill1", "https://tec.openplanner.team/stops/LMYvill2"], ["https://tec.openplanner.team/stops/Lbbviad3", "https://tec.openplanner.team/stops/Lbhfaye2"], ["https://tec.openplanner.team/stops/H4pe124a", "https://tec.openplanner.team/stops/H4pe126a"], ["https://tec.openplanner.team/stops/N117ata", "https://tec.openplanner.team/stops/N117atb"], ["https://tec.openplanner.team/stops/X812bea", "https://tec.openplanner.team/stops/X812beb"], ["https://tec.openplanner.team/stops/H4ty291b", "https://tec.openplanner.team/stops/H4ty291c"], ["https://tec.openplanner.team/stops/LLTfall2", "https://tec.openplanner.team/stops/LMffoot1"], ["https://tec.openplanner.team/stops/Cvtchap1", "https://tec.openplanner.team/stops/Cvtvail1"], ["https://tec.openplanner.team/stops/N138afa", "https://tec.openplanner.team/stops/N423aga"], ["https://tec.openplanner.team/stops/N204aeb", "https://tec.openplanner.team/stops/N208aab"], ["https://tec.openplanner.team/stops/Clvorle1", "https://tec.openplanner.team/stops/Clvorle2"], ["https://tec.openplanner.team/stops/Llgatla1", "https://tec.openplanner.team/stops/Llginte2"], ["https://tec.openplanner.team/stops/H1sy148b", "https://tec.openplanner.team/stops/H1sy148c"], ["https://tec.openplanner.team/stops/X725aob", "https://tec.openplanner.team/stops/X725apa"], ["https://tec.openplanner.team/stops/Cgotech1", "https://tec.openplanner.team/stops/Cgotech2"], ["https://tec.openplanner.team/stops/Cmccet2", "https://tec.openplanner.team/stops/Cmcwir2"], ["https://tec.openplanner.team/stops/Lprdavi1", "https://tec.openplanner.team/stops/Lvegazo1"], ["https://tec.openplanner.team/stops/N118aoa", "https://tec.openplanner.team/stops/N118aob"], ["https://tec.openplanner.team/stops/Lhrlalo3", "https://tec.openplanner.team/stops/Lhrmare4"], ["https://tec.openplanner.team/stops/NL74afa", "https://tec.openplanner.team/stops/NL74afb"], ["https://tec.openplanner.team/stops/X801aua", "https://tec.openplanner.team/stops/X801aub"], ["https://tec.openplanner.team/stops/Clrcime2", "https://tec.openplanner.team/stops/Clrcite2"], ["https://tec.openplanner.team/stops/N539bab", "https://tec.openplanner.team/stops/N539bba"], ["https://tec.openplanner.team/stops/Bbeaap11", "https://tec.openplanner.team/stops/Bbeaap12"], ["https://tec.openplanner.team/stops/Lhrjaur1", "https://tec.openplanner.team/stops/Lhrmine1"], ["https://tec.openplanner.team/stops/Lsnferr1", "https://tec.openplanner.team/stops/Lsnmala3"], ["https://tec.openplanner.team/stops/H1qv113a", "https://tec.openplanner.team/stops/H1qv115a"], ["https://tec.openplanner.team/stops/LCPlebl2", "https://tec.openplanner.team/stops/LGmcite1"], ["https://tec.openplanner.team/stops/Cbfgare2", "https://tec.openplanner.team/stops/Cbfpauc1"], ["https://tec.openplanner.team/stops/LBTfoot1", "https://tec.openplanner.team/stops/LBTwauc1"], ["https://tec.openplanner.team/stops/Cmmpjou2", "https://tec.openplanner.team/stops/Cmmpjou4"], ["https://tec.openplanner.team/stops/H4mo191b", "https://tec.openplanner.team/stops/H4wa155a"], ["https://tec.openplanner.team/stops/N538aeb", "https://tec.openplanner.team/stops/N538ahb"], ["https://tec.openplanner.team/stops/NH03afa", "https://tec.openplanner.team/stops/NH03afb"], ["https://tec.openplanner.team/stops/Cjulamb1", "https://tec.openplanner.team/stops/Craferr1"], ["https://tec.openplanner.team/stops/X651aba", "https://tec.openplanner.team/stops/X651aca"], ["https://tec.openplanner.team/stops/LREhenu1", "https://tec.openplanner.team/stops/LREraph3"], ["https://tec.openplanner.team/stops/Blsmvan2", "https://tec.openplanner.team/stops/Bpelegl1"], ["https://tec.openplanner.team/stops/X902aub", "https://tec.openplanner.team/stops/X902awa"], ["https://tec.openplanner.team/stops/LBJapol2", "https://tec.openplanner.team/stops/LBJplan2"], ["https://tec.openplanner.team/stops/N506azb", "https://tec.openplanner.team/stops/N506bjb"], ["https://tec.openplanner.team/stops/NR21ahb", "https://tec.openplanner.team/stops/NR38afa"], ["https://tec.openplanner.team/stops/H1ht121a", "https://tec.openplanner.team/stops/H1ht121b"], ["https://tec.openplanner.team/stops/H1bd101a", "https://tec.openplanner.team/stops/H1bd102a"], ["https://tec.openplanner.team/stops/X902bfb", "https://tec.openplanner.team/stops/X902bgb"], ["https://tec.openplanner.team/stops/X659aca", "https://tec.openplanner.team/stops/X659ava"], ["https://tec.openplanner.team/stops/N312aaa", "https://tec.openplanner.team/stops/N360aeb"], ["https://tec.openplanner.team/stops/H1gg117b", "https://tec.openplanner.team/stops/H1gg145b"], ["https://tec.openplanner.team/stops/Bgemkal1", "https://tec.openplanner.team/stops/Bsaubbo1"], ["https://tec.openplanner.team/stops/H4ba101a", "https://tec.openplanner.team/stops/H4ba102a"], ["https://tec.openplanner.team/stops/H1al107a", "https://tec.openplanner.team/stops/H1al107b"], ["https://tec.openplanner.team/stops/X615amb", "https://tec.openplanner.team/stops/X615ana"], ["https://tec.openplanner.team/stops/N101aib", "https://tec.openplanner.team/stops/N101aoa"], ["https://tec.openplanner.team/stops/LTIpire1", "https://tec.openplanner.team/stops/LTIpres2"], ["https://tec.openplanner.team/stops/LScgore2", "https://tec.openplanner.team/stops/LTNsarl1"], ["https://tec.openplanner.team/stops/H1te184b", "https://tec.openplanner.team/stops/H1te187a"], ["https://tec.openplanner.team/stops/X940acb", "https://tec.openplanner.team/stops/X940agb"], ["https://tec.openplanner.team/stops/H1so132a", "https://tec.openplanner.team/stops/H1so141b"], ["https://tec.openplanner.team/stops/N244asb", "https://tec.openplanner.team/stops/N244aub"], ["https://tec.openplanner.team/stops/N501gka", "https://tec.openplanner.team/stops/N501gkb"], ["https://tec.openplanner.team/stops/LOUpres1", "https://tec.openplanner.team/stops/LOUvign1"], ["https://tec.openplanner.team/stops/Lcebail1", "https://tec.openplanner.team/stops/Lcebail2"], ["https://tec.openplanner.team/stops/LVAakke1", "https://tec.openplanner.team/stops/LVAwolf2"], ["https://tec.openplanner.team/stops/X687aha", "https://tec.openplanner.team/stops/X687aia"], ["https://tec.openplanner.team/stops/H1hn207a", "https://tec.openplanner.team/stops/H1mv241b"], ["https://tec.openplanner.team/stops/Cbmmafr2", "https://tec.openplanner.team/stops/Cbmpano2"], ["https://tec.openplanner.team/stops/H4ty283b", "https://tec.openplanner.team/stops/H4ty286a"], ["https://tec.openplanner.team/stops/X946ada", "https://tec.openplanner.team/stops/X946aib"], ["https://tec.openplanner.team/stops/X779adb", "https://tec.openplanner.team/stops/X912aga"], ["https://tec.openplanner.team/stops/N532ada", "https://tec.openplanner.team/stops/N533apb"], ["https://tec.openplanner.team/stops/LLeeco-1", "https://tec.openplanner.team/stops/LLescie1"], ["https://tec.openplanner.team/stops/N167adc", "https://tec.openplanner.team/stops/N167add"], ["https://tec.openplanner.team/stops/Crachap2", "https://tec.openplanner.team/stops/Cracime1"], ["https://tec.openplanner.team/stops/LrEborn1", "https://tec.openplanner.team/stops/LrErauw1"], ["https://tec.openplanner.team/stops/Clodesc1", "https://tec.openplanner.team/stops/Clomakr1"], ["https://tec.openplanner.team/stops/H4bn100b", "https://tec.openplanner.team/stops/H4pi133a"], ["https://tec.openplanner.team/stops/LHe3com2", "https://tec.openplanner.team/stops/LHemoul2"], ["https://tec.openplanner.team/stops/LFrfrai2", "https://tec.openplanner.team/stops/LFrvesd2"], ["https://tec.openplanner.team/stops/X989aba", "https://tec.openplanner.team/stops/X994adb"], ["https://tec.openplanner.team/stops/LLR4bra1", "https://tec.openplanner.team/stops/LLR4bra2"], ["https://tec.openplanner.team/stops/Bhandub2", "https://tec.openplanner.team/stops/LABvill2"], ["https://tec.openplanner.team/stops/LREfloh1", "https://tec.openplanner.team/stops/LREhaut2"], ["https://tec.openplanner.team/stops/N531adb", "https://tec.openplanner.team/stops/N568aba"], ["https://tec.openplanner.team/stops/X780aea", "https://tec.openplanner.team/stops/X780aeb"], ["https://tec.openplanner.team/stops/Bwav4sa1", "https://tec.openplanner.team/stops/Bwavbva1"], ["https://tec.openplanner.team/stops/X650abb", "https://tec.openplanner.team/stops/X650amb"], ["https://tec.openplanner.team/stops/LMYlieg1", "https://tec.openplanner.team/stops/X597ala"], ["https://tec.openplanner.team/stops/X725ata", "https://tec.openplanner.team/stops/X767aca"], ["https://tec.openplanner.team/stops/LOljean2", "https://tec.openplanner.team/stops/LScd45-1"], ["https://tec.openplanner.team/stops/N145ada", "https://tec.openplanner.team/stops/N149aab"], ["https://tec.openplanner.team/stops/H3lr109a", "https://tec.openplanner.team/stops/H3lr121b"], ["https://tec.openplanner.team/stops/X882aea", "https://tec.openplanner.team/stops/X882alb"], ["https://tec.openplanner.team/stops/LrOkirc2", "https://tec.openplanner.team/stops/LrOtria2"], ["https://tec.openplanner.team/stops/H1el136b", "https://tec.openplanner.team/stops/H1el137a"], ["https://tec.openplanner.team/stops/Ladegli1", "https://tec.openplanner.team/stops/Ladlaur1"], ["https://tec.openplanner.team/stops/X820aba", "https://tec.openplanner.team/stops/X820abb"], ["https://tec.openplanner.team/stops/LBveg--1", "https://tec.openplanner.team/stops/LBvviem4"], ["https://tec.openplanner.team/stops/X773aba", "https://tec.openplanner.team/stops/X773abb"], ["https://tec.openplanner.team/stops/Bchamco1", "https://tec.openplanner.team/stops/Bchamco2"], ["https://tec.openplanner.team/stops/X760aga", "https://tec.openplanner.team/stops/X762aeb"], ["https://tec.openplanner.team/stops/H5bs103b", "https://tec.openplanner.team/stops/H5pe128a"], ["https://tec.openplanner.team/stops/X820aaa", "https://tec.openplanner.team/stops/X820aab"], ["https://tec.openplanner.team/stops/LRGgend1", "https://tec.openplanner.team/stops/LRGgend2"], ["https://tec.openplanner.team/stops/LwYbruc4", "https://tec.openplanner.team/stops/LwYnr261"], ["https://tec.openplanner.team/stops/Cmastni2", "https://tec.openplanner.team/stops/Cmocalv4"], ["https://tec.openplanner.team/stops/Cbbcent2", "https://tec.openplanner.team/stops/Crcfdom1"], ["https://tec.openplanner.team/stops/N509bda", "https://tec.openplanner.team/stops/N509bdb"], ["https://tec.openplanner.team/stops/X595aea", "https://tec.openplanner.team/stops/X595aga"], ["https://tec.openplanner.team/stops/Bbeamon2", "https://tec.openplanner.team/stops/Bbeapim2"], ["https://tec.openplanner.team/stops/LMEeg--1", "https://tec.openplanner.team/stops/LMEpech1"], ["https://tec.openplanner.team/stops/Lanyser2", "https://tec.openplanner.team/stops/Lmobols1"], ["https://tec.openplanner.team/stops/Bovesog1", "https://tec.openplanner.team/stops/Bovevri1"], ["https://tec.openplanner.team/stops/X623afb", "https://tec.openplanner.team/stops/X623ahb"], ["https://tec.openplanner.team/stops/Bcrnnpl1", "https://tec.openplanner.team/stops/Bcrnpla1"], ["https://tec.openplanner.team/stops/H4hx113a", "https://tec.openplanner.team/stops/H4hx122a"], ["https://tec.openplanner.team/stops/LBUplac1", "https://tec.openplanner.team/stops/LBUvall2"], ["https://tec.openplanner.team/stops/X638ada", "https://tec.openplanner.team/stops/X638aeb"], ["https://tec.openplanner.team/stops/X882afa", "https://tec.openplanner.team/stops/X882amd"], ["https://tec.openplanner.team/stops/X605afb", "https://tec.openplanner.team/stops/X634aib"], ["https://tec.openplanner.team/stops/LHCcroy2", "https://tec.openplanner.team/stops/LHChoek3"], ["https://tec.openplanner.team/stops/LBahaut1", "https://tec.openplanner.team/stops/LBapeup2"], ["https://tec.openplanner.team/stops/X872ada", "https://tec.openplanner.team/stops/X872afa"], ["https://tec.openplanner.team/stops/LAUbirv2", "https://tec.openplanner.team/stops/LHMparq2"], ["https://tec.openplanner.team/stops/Lseboia1", "https://tec.openplanner.team/stops/Lseboia2"], ["https://tec.openplanner.team/stops/LGMhadr2", "https://tec.openplanner.team/stops/LTRpery1"], ["https://tec.openplanner.team/stops/LHEelva1", "https://tec.openplanner.team/stops/LHEelva2"], ["https://tec.openplanner.team/stops/H1tl119b", "https://tec.openplanner.team/stops/H1tl122b"], ["https://tec.openplanner.team/stops/Cctmari2", "https://tec.openplanner.team/stops/Cctrjus1"], ["https://tec.openplanner.team/stops/H1hr122a", "https://tec.openplanner.team/stops/H1hr124a"], ["https://tec.openplanner.team/stops/H1hc127c", "https://tec.openplanner.team/stops/H1hc150b"], ["https://tec.openplanner.team/stops/H4ml207a", "https://tec.openplanner.team/stops/H4ml208b"], ["https://tec.openplanner.team/stops/X733ahb", "https://tec.openplanner.team/stops/X734aib"], ["https://tec.openplanner.team/stops/X758acb", "https://tec.openplanner.team/stops/X758amb"], ["https://tec.openplanner.team/stops/N501lwb", "https://tec.openplanner.team/stops/N501mrb"], ["https://tec.openplanner.team/stops/LBUchpl2", "https://tec.openplanner.team/stops/LBUmara3"], ["https://tec.openplanner.team/stops/H2mo126a", "https://tec.openplanner.team/stops/H2mo126b"], ["https://tec.openplanner.team/stops/Cvrhab21", "https://tec.openplanner.team/stops/Cvrhab22"], ["https://tec.openplanner.team/stops/X359aka", "https://tec.openplanner.team/stops/X359ala"], ["https://tec.openplanner.team/stops/LATdieu1", "https://tec.openplanner.team/stops/LATphar2"], ["https://tec.openplanner.team/stops/N535aca", "https://tec.openplanner.team/stops/N535acb"], ["https://tec.openplanner.team/stops/H4po124a", "https://tec.openplanner.team/stops/H4po126b"], ["https://tec.openplanner.team/stops/X773ala", "https://tec.openplanner.team/stops/X773alb"], ["https://tec.openplanner.team/stops/LSkmarq1", "https://tec.openplanner.team/stops/LSkyern2"], ["https://tec.openplanner.team/stops/X806ahb", "https://tec.openplanner.team/stops/X806ajb"], ["https://tec.openplanner.team/stops/Brsgera1", "https://tec.openplanner.team/stops/Brsgfso2"], ["https://tec.openplanner.team/stops/H4do101a", "https://tec.openplanner.team/stops/H4do107d"], ["https://tec.openplanner.team/stops/Lsefoot2", "https://tec.openplanner.team/stops/Lsemyrt1"], ["https://tec.openplanner.team/stops/X901bia", "https://tec.openplanner.team/stops/X901bta"], ["https://tec.openplanner.team/stops/X802aga", "https://tec.openplanner.team/stops/X802aib"], ["https://tec.openplanner.team/stops/Lmobols2", "https://tec.openplanner.team/stops/Lmogoff2"], ["https://tec.openplanner.team/stops/N138aha", "https://tec.openplanner.team/stops/N141agb"], ["https://tec.openplanner.team/stops/H4cw105a", "https://tec.openplanner.team/stops/H4cw105b"], ["https://tec.openplanner.team/stops/NL72aaa", "https://tec.openplanner.team/stops/NL76aeb"], ["https://tec.openplanner.team/stops/N104aaa", "https://tec.openplanner.team/stops/N104aad"], ["https://tec.openplanner.team/stops/LrUbrac3", "https://tec.openplanner.team/stops/LrUkult1"], ["https://tec.openplanner.team/stops/H1qv112a", "https://tec.openplanner.team/stops/H1qv112b"], ["https://tec.openplanner.team/stops/LBIcabi1", "https://tec.openplanner.team/stops/LBIvill3"], ["https://tec.openplanner.team/stops/Llghaye2", "https://tec.openplanner.team/stops/Llgsorb1"], ["https://tec.openplanner.team/stops/X657ajb", "https://tec.openplanner.team/stops/X657aka"], ["https://tec.openplanner.team/stops/Chhsncb2", "https://tec.openplanner.team/stops/Chhthui2"], ["https://tec.openplanner.team/stops/Cclbarb1", "https://tec.openplanner.team/stops/Cclbarb2"], ["https://tec.openplanner.team/stops/X672afb", "https://tec.openplanner.team/stops/X672aoa"], ["https://tec.openplanner.team/stops/X942afa", "https://tec.openplanner.team/stops/X943aea"], ["https://tec.openplanner.team/stops/Bbghgli2", "https://tec.openplanner.team/stops/Bbghpln1"], ["https://tec.openplanner.team/stops/H1ag104a", "https://tec.openplanner.team/stops/H1ro133a"], ["https://tec.openplanner.team/stops/H1ms256a", "https://tec.openplanner.team/stops/H1ms301a"], ["https://tec.openplanner.team/stops/Bblmcel1", "https://tec.openplanner.team/stops/Bblmcel2"], ["https://tec.openplanner.team/stops/H1wi148b", "https://tec.openplanner.team/stops/H1wi153a"], ["https://tec.openplanner.team/stops/Crestan1", "https://tec.openplanner.team/stops/Crestan2"], ["https://tec.openplanner.team/stops/N514aga", "https://tec.openplanner.team/stops/N514aha"], ["https://tec.openplanner.team/stops/Cgyrdid2", "https://tec.openplanner.team/stops/Cgystbe1"], ["https://tec.openplanner.team/stops/N352ada", "https://tec.openplanner.team/stops/N352aea"], ["https://tec.openplanner.team/stops/X618ala", "https://tec.openplanner.team/stops/X619acb"], ["https://tec.openplanner.team/stops/X716aab", "https://tec.openplanner.team/stops/X716aeb"], ["https://tec.openplanner.team/stops/X548aab", "https://tec.openplanner.team/stops/X548afb"], ["https://tec.openplanner.team/stops/H1cv104b", "https://tec.openplanner.team/stops/H1lm107b"], ["https://tec.openplanner.team/stops/H4ea128a", "https://tec.openplanner.team/stops/H5qu145a"], ["https://tec.openplanner.team/stops/Llmcoop1", "https://tec.openplanner.team/stops/LWetrib2"], ["https://tec.openplanner.team/stops/NC44aaa", "https://tec.openplanner.team/stops/NC44aea"], ["https://tec.openplanner.team/stops/LlOdrei1", "https://tec.openplanner.team/stops/LnDrund2"], ["https://tec.openplanner.team/stops/H1te175a", "https://tec.openplanner.team/stops/H1te175b"], ["https://tec.openplanner.team/stops/Bmarfjo2", "https://tec.openplanner.team/stops/Bmarmco1"], ["https://tec.openplanner.team/stops/LGMstin2", "https://tec.openplanner.team/stops/LLUlieg2"], ["https://tec.openplanner.team/stops/H4pq119a", "https://tec.openplanner.team/stops/H4pq119b"], ["https://tec.openplanner.team/stops/N155aec", "https://tec.openplanner.team/stops/N155aed"], ["https://tec.openplanner.team/stops/H2sb224a", "https://tec.openplanner.team/stops/H2sb239b"], ["https://tec.openplanner.team/stops/X982ala", "https://tec.openplanner.team/stops/X982alb"], ["https://tec.openplanner.team/stops/LATcham*", "https://tec.openplanner.team/stops/LATpatu2"], ["https://tec.openplanner.team/stops/N565aba", "https://tec.openplanner.team/stops/N565aca"], ["https://tec.openplanner.team/stops/X878ada", "https://tec.openplanner.team/stops/X878adb"], ["https://tec.openplanner.team/stops/Lseegva1", "https://tec.openplanner.team/stops/Lseegva2"], ["https://tec.openplanner.team/stops/LSNbouh4", "https://tec.openplanner.team/stops/LSNmoul2"], ["https://tec.openplanner.team/stops/X721apa", "https://tec.openplanner.team/stops/X786aaa"], ["https://tec.openplanner.team/stops/Bsmgegl2", "https://tec.openplanner.team/stops/Bsmgres2"], ["https://tec.openplanner.team/stops/H1mj122a", "https://tec.openplanner.team/stops/H1mj122b"], ["https://tec.openplanner.team/stops/X725ava", "https://tec.openplanner.team/stops/X725axa"], ["https://tec.openplanner.team/stops/X664afa", "https://tec.openplanner.team/stops/X667aaa"], ["https://tec.openplanner.team/stops/Cthnord1", "https://tec.openplanner.team/stops/Cthvbas3"], ["https://tec.openplanner.team/stops/X902abb", "https://tec.openplanner.team/stops/X902atb"], ["https://tec.openplanner.team/stops/H4ft135b", "https://tec.openplanner.team/stops/H4ft135c"], ["https://tec.openplanner.team/stops/H4ma420b", "https://tec.openplanner.team/stops/H4oq409a"], ["https://tec.openplanner.team/stops/Llgform1", "https://tec.openplanner.team/stops/Llggill4"], ["https://tec.openplanner.team/stops/X615aka", "https://tec.openplanner.team/stops/X615alb"], ["https://tec.openplanner.team/stops/H1qu119a", "https://tec.openplanner.team/stops/H1wa155b"], ["https://tec.openplanner.team/stops/Bwavbmo1", "https://tec.openplanner.team/stops/Bwavnam1"], ["https://tec.openplanner.team/stops/X601aud", "https://tec.openplanner.team/stops/X601aya"], ["https://tec.openplanner.team/stops/NL73aea", "https://tec.openplanner.team/stops/NL73aeb"], ["https://tec.openplanner.team/stops/Cmonsnc1", "https://tec.openplanner.team/stops/H1ms400d"], ["https://tec.openplanner.team/stops/H2lh129b", "https://tec.openplanner.team/stops/H2mo146b"], ["https://tec.openplanner.team/stops/X595ada", "https://tec.openplanner.team/stops/X595agb"], ["https://tec.openplanner.team/stops/LmNbirt1", "https://tec.openplanner.team/stops/LmNsv872"], ["https://tec.openplanner.team/stops/Lceembo1", "https://tec.openplanner.team/stops/Lcepoul1"], ["https://tec.openplanner.team/stops/N529aeb", "https://tec.openplanner.team/stops/N529afa"], ["https://tec.openplanner.team/stops/N385adb", "https://tec.openplanner.team/stops/N385aed"], ["https://tec.openplanner.team/stops/H1au101a", "https://tec.openplanner.team/stops/H1el132b"], ["https://tec.openplanner.team/stops/N222aya", "https://tec.openplanner.team/stops/X222alb"], ["https://tec.openplanner.team/stops/X725bbb", "https://tec.openplanner.team/stops/X725bda"], ["https://tec.openplanner.team/stops/Bjodint1", "https://tec.openplanner.team/stops/NR10aaa"], ["https://tec.openplanner.team/stops/H1ci102a", "https://tec.openplanner.team/stops/H1ci102b"], ["https://tec.openplanner.team/stops/N201aka", "https://tec.openplanner.team/stops/N201akb"], ["https://tec.openplanner.team/stops/LrEfeck2", "https://tec.openplanner.team/stops/LrEkape1"], ["https://tec.openplanner.team/stops/LHarenn1", "https://tec.openplanner.team/stops/LHarenn4"], ["https://tec.openplanner.team/stops/X614aza", "https://tec.openplanner.team/stops/X614baa"], ["https://tec.openplanner.team/stops/Cjxpris2", "https://tec.openplanner.team/stops/Cmymoha2"], ["https://tec.openplanner.team/stops/Blmlbif2", "https://tec.openplanner.team/stops/Brsreco2"], ["https://tec.openplanner.team/stops/Barqhpe1", "https://tec.openplanner.team/stops/Barqres1"], ["https://tec.openplanner.team/stops/H4bc101c", "https://tec.openplanner.team/stops/H4tu170a"], ["https://tec.openplanner.team/stops/X614avb", "https://tec.openplanner.team/stops/X615aqb"], ["https://tec.openplanner.team/stops/Bmrl4ch1", "https://tec.openplanner.team/stops/Bnodeco1"], ["https://tec.openplanner.team/stops/N565ajb", "https://tec.openplanner.team/stops/N565ala"], ["https://tec.openplanner.team/stops/Bbiehpo1", "https://tec.openplanner.team/stops/Bbiehss1"], ["https://tec.openplanner.team/stops/Cplelec1", "https://tec.openplanner.team/stops/Cplelec2"], ["https://tec.openplanner.team/stops/Bgzdn252", "https://tec.openplanner.team/stops/Bgzdsta2"], ["https://tec.openplanner.team/stops/X685agb", "https://tec.openplanner.team/stops/X685apb"], ["https://tec.openplanner.team/stops/Bsgibla2", "https://tec.openplanner.team/stops/Bsgipha2"], ["https://tec.openplanner.team/stops/N549acb", "https://tec.openplanner.team/stops/N549agb"], ["https://tec.openplanner.team/stops/LkEbbl-*", "https://tec.openplanner.team/stops/LkEmax-2"], ["https://tec.openplanner.team/stops/LATmale1", "https://tec.openplanner.team/stops/LATmale2"], ["https://tec.openplanner.team/stops/X809abb", "https://tec.openplanner.team/stops/X858aga"], ["https://tec.openplanner.team/stops/LSpfond2", "https://tec.openplanner.team/stops/LSpogne2"], ["https://tec.openplanner.team/stops/Lcacris2", "https://tec.openplanner.team/stops/Lvchaus2"], ["https://tec.openplanner.team/stops/NC24aia", "https://tec.openplanner.team/stops/NC24aib"], ["https://tec.openplanner.team/stops/H4fa167a", "https://tec.openplanner.team/stops/H5el111b"], ["https://tec.openplanner.team/stops/N525aec", "https://tec.openplanner.team/stops/N525ahb"], ["https://tec.openplanner.team/stops/NH01ara", "https://tec.openplanner.team/stops/NH01asa"], ["https://tec.openplanner.team/stops/N120agb", "https://tec.openplanner.team/stops/N120aha"], ["https://tec.openplanner.team/stops/X756aha", "https://tec.openplanner.team/stops/X757ajb"], ["https://tec.openplanner.team/stops/Bhevcur1", "https://tec.openplanner.team/stops/Bhevcur2"], ["https://tec.openplanner.team/stops/Ccucroi1", "https://tec.openplanner.team/stops/Cculpre2"], ["https://tec.openplanner.team/stops/LCeterm2", "https://tec.openplanner.team/stops/LGAnovi1"], ["https://tec.openplanner.team/stops/NC11ara", "https://tec.openplanner.team/stops/NC11ard"], ["https://tec.openplanner.team/stops/X750ava", "https://tec.openplanner.team/stops/X750bkb"], ["https://tec.openplanner.team/stops/N515aja", "https://tec.openplanner.team/stops/N515ajb"], ["https://tec.openplanner.team/stops/Cgythio1", "https://tec.openplanner.team/stops/Cgythio2"], ["https://tec.openplanner.team/stops/LHmcite1", "https://tec.openplanner.team/stops/LLocruc1"], ["https://tec.openplanner.team/stops/H1ha194b", "https://tec.openplanner.team/stops/H1vh135a"], ["https://tec.openplanner.team/stops/Crcgare1", "https://tec.openplanner.team/stops/Crcrgar2"], ["https://tec.openplanner.team/stops/X619acb", "https://tec.openplanner.team/stops/X619adb"], ["https://tec.openplanner.team/stops/N254ada", "https://tec.openplanner.team/stops/N254aea"], ["https://tec.openplanner.team/stops/H4co104a", "https://tec.openplanner.team/stops/H4co158a"], ["https://tec.openplanner.team/stops/Lhragri1", "https://tec.openplanner.team/stops/Lhrmura1"], ["https://tec.openplanner.team/stops/Bcerpco1", "https://tec.openplanner.team/stops/Blasbti1"], ["https://tec.openplanner.team/stops/Lbrfusi1", "https://tec.openplanner.team/stops/Lbrrobe2"], ["https://tec.openplanner.team/stops/LbOre3b1", "https://tec.openplanner.team/stops/LbOvith1"], ["https://tec.openplanner.team/stops/X811aib", "https://tec.openplanner.team/stops/X811akb"], ["https://tec.openplanner.team/stops/Clupcfe1", "https://tec.openplanner.team/stops/Cvvpotv2"], ["https://tec.openplanner.team/stops/LAMhaut1", "https://tec.openplanner.team/stops/LAMhaut2"], ["https://tec.openplanner.team/stops/N506bjb", "https://tec.openplanner.team/stops/N506bnb"], ["https://tec.openplanner.team/stops/H2mo117b", "https://tec.openplanner.team/stops/H2mo119b"], ["https://tec.openplanner.team/stops/H4mo181b", "https://tec.openplanner.team/stops/H4rk101b"], ["https://tec.openplanner.team/stops/LhGcasi1", "https://tec.openplanner.team/stops/LkEmax-1"], ["https://tec.openplanner.team/stops/X729aca", "https://tec.openplanner.team/stops/X729ada"], ["https://tec.openplanner.team/stops/Cctjoue5", "https://tec.openplanner.team/stops/Cctjoue6"], ["https://tec.openplanner.team/stops/Bgoegma2", "https://tec.openplanner.team/stops/Bgoewat2"], ["https://tec.openplanner.team/stops/NR38aea", "https://tec.openplanner.team/stops/NR38afa"], ["https://tec.openplanner.team/stops/LhOfrie2", "https://tec.openplanner.team/stops/LhOzent1"], ["https://tec.openplanner.team/stops/H2lh132b", "https://tec.openplanner.team/stops/H2mo133b"], ["https://tec.openplanner.team/stops/LATdame2", "https://tec.openplanner.team/stops/LATrori2"], ["https://tec.openplanner.team/stops/X911alb", "https://tec.openplanner.team/stops/X911amb"], ["https://tec.openplanner.team/stops/H4mo157a", "https://tec.openplanner.team/stops/H4mo204a"], ["https://tec.openplanner.team/stops/Lbbviad3", "https://tec.openplanner.team/stops/Lgrwill2"], ["https://tec.openplanner.team/stops/H4pl111a", "https://tec.openplanner.team/stops/H4pl112b"], ["https://tec.openplanner.team/stops/N544aaa", "https://tec.openplanner.team/stops/N544aab"], ["https://tec.openplanner.team/stops/H1ob334b", "https://tec.openplanner.team/stops/H1ob361a"], ["https://tec.openplanner.team/stops/LODarbr1", "https://tec.openplanner.team/stops/X561abb"], ["https://tec.openplanner.team/stops/N520aba", "https://tec.openplanner.team/stops/N520abb"], ["https://tec.openplanner.team/stops/LFdbagu1", "https://tec.openplanner.team/stops/LFdbagu2"], ["https://tec.openplanner.team/stops/Bsamlon1", "https://tec.openplanner.team/stops/Bwagdeb1"], ["https://tec.openplanner.team/stops/X637aaa", "https://tec.openplanner.team/stops/X637aqb"], ["https://tec.openplanner.team/stops/LmI129-2", "https://tec.openplanner.team/stops/LmIkirc2"], ["https://tec.openplanner.team/stops/Bgligli1", "https://tec.openplanner.team/stops/Bglitro2"], ["https://tec.openplanner.team/stops/LOuathe1", "https://tec.openplanner.team/stops/LOumaro2"], ["https://tec.openplanner.team/stops/X650afe", "https://tec.openplanner.team/stops/X671agb"], ["https://tec.openplanner.team/stops/Cvppost1", "https://tec.openplanner.team/stops/Cvppost2"], ["https://tec.openplanner.team/stops/Lsmlina*", "https://tec.openplanner.team/stops/Lsmtini2"], ["https://tec.openplanner.team/stops/X878aaa", "https://tec.openplanner.team/stops/X879aab"], ["https://tec.openplanner.team/stops/H4ty276a", "https://tec.openplanner.team/stops/H4ty315a"], ["https://tec.openplanner.team/stops/X631aca", "https://tec.openplanner.team/stops/X631acb"], ["https://tec.openplanner.team/stops/N321aca", "https://tec.openplanner.team/stops/N321afb"], ["https://tec.openplanner.team/stops/Borblim2", "https://tec.openplanner.team/stops/Borbod92"], ["https://tec.openplanner.team/stops/LHVetoi2", "https://tec.openplanner.team/stops/LJAroue2"], ["https://tec.openplanner.team/stops/LbUgend2", "https://tec.openplanner.team/stops/LbUpost1"], ["https://tec.openplanner.team/stops/Lstscie1", "https://tec.openplanner.team/stops/Lsttech2"], ["https://tec.openplanner.team/stops/H4lg102a", "https://tec.openplanner.team/stops/H4lg103a"], ["https://tec.openplanner.team/stops/LbRfrie2", "https://tec.openplanner.team/stops/LtHkirc4"], ["https://tec.openplanner.team/stops/H1ms258a", "https://tec.openplanner.team/stops/H1ms258b"], ["https://tec.openplanner.team/stops/H1ni317a", "https://tec.openplanner.team/stops/H1ni317b"], ["https://tec.openplanner.team/stops/X759aaa", "https://tec.openplanner.team/stops/X886aga"], ["https://tec.openplanner.team/stops/X615ava", "https://tec.openplanner.team/stops/X615awb"], ["https://tec.openplanner.team/stops/Ldipl--2", "https://tec.openplanner.team/stops/Ldipl--5"], ["https://tec.openplanner.team/stops/N501eba", "https://tec.openplanner.team/stops/N501eby"], ["https://tec.openplanner.team/stops/Cluchbl1", "https://tec.openplanner.team/stops/Cluplve3"], ["https://tec.openplanner.team/stops/Bsauvmo1", "https://tec.openplanner.team/stops/Bsauvmo2"], ["https://tec.openplanner.team/stops/H1ls105a", "https://tec.openplanner.team/stops/H1ls106a"], ["https://tec.openplanner.team/stops/H1nm140a", "https://tec.openplanner.team/stops/H1nm141b"], ["https://tec.openplanner.team/stops/Cmlcent2", "https://tec.openplanner.team/stops/NC01ahb"], ["https://tec.openplanner.team/stops/X741aga", "https://tec.openplanner.team/stops/X741ahb"], ["https://tec.openplanner.team/stops/H4eg106a", "https://tec.openplanner.team/stops/H4ne136b"], ["https://tec.openplanner.team/stops/X717abb", "https://tec.openplanner.team/stops/X782apa"], ["https://tec.openplanner.team/stops/Cgrchas1", "https://tec.openplanner.team/stops/Cgrchas2"], ["https://tec.openplanner.team/stops/N543cja", "https://tec.openplanner.team/stops/N543cjb"], ["https://tec.openplanner.team/stops/X636aba", "https://tec.openplanner.team/stops/X670aqa"], ["https://tec.openplanner.team/stops/LCPoneu2", "https://tec.openplanner.team/stops/LPOchan2"], ["https://tec.openplanner.team/stops/LAMgreg1", "https://tec.openplanner.team/stops/LAMrich2"], ["https://tec.openplanner.team/stops/X950aab", "https://tec.openplanner.team/stops/X955aca"], ["https://tec.openplanner.team/stops/LLUadze1", "https://tec.openplanner.team/stops/LLUadze2"], ["https://tec.openplanner.team/stops/N521ava", "https://tec.openplanner.team/stops/N521avb"], ["https://tec.openplanner.team/stops/Lanfran2", "https://tec.openplanner.team/stops/Lanyser2"], ["https://tec.openplanner.team/stops/N513aoa", "https://tec.openplanner.team/stops/N513bfb"], ["https://tec.openplanner.team/stops/X601cva", "https://tec.openplanner.team/stops/X601dca"], ["https://tec.openplanner.team/stops/Bblacar2", "https://tec.openplanner.team/stops/Bbsicea1"], ["https://tec.openplanner.team/stops/Benggar1", "https://tec.openplanner.team/stops/Bptegna2"], ["https://tec.openplanner.team/stops/Bglicsm1", "https://tec.openplanner.team/stops/Btlbtho1"], ["https://tec.openplanner.team/stops/Bwatmsj6", "https://tec.openplanner.team/stops/Bwatsan1"], ["https://tec.openplanner.team/stops/Cctfrbe2", "https://tec.openplanner.team/stops/Cctrjus2"], ["https://tec.openplanner.team/stops/LeYwald2", "https://tec.openplanner.team/stops/LhSheid1"], ["https://tec.openplanner.team/stops/Bbghepi1", "https://tec.openplanner.team/stops/Bbghsar1"], ["https://tec.openplanner.team/stops/LBBlaga1", "https://tec.openplanner.team/stops/LBBodet2"], ["https://tec.openplanner.team/stops/LSTmast1", "https://tec.openplanner.team/stops/LSTmeiz2"], ["https://tec.openplanner.team/stops/H4pq112b", "https://tec.openplanner.team/stops/H4pq113a"], ["https://tec.openplanner.team/stops/Lsebico1", "https://tec.openplanner.team/stops/Lsehosp2"], ["https://tec.openplanner.team/stops/N562ama", "https://tec.openplanner.team/stops/N562bqa"], ["https://tec.openplanner.team/stops/Llgandr1", "https://tec.openplanner.team/stops/Llgfail1"], ["https://tec.openplanner.team/stops/Lselimi2", "https://tec.openplanner.team/stops/Lsestap2"], ["https://tec.openplanner.team/stops/LBsfer-1", "https://tec.openplanner.team/stops/LMHoha-2"], ["https://tec.openplanner.team/stops/Bchgbru2", "https://tec.openplanner.team/stops/Btsllnd1"], ["https://tec.openplanner.team/stops/Ljetout1", "https://tec.openplanner.team/stops/Ljetout2"], ["https://tec.openplanner.team/stops/N113abb", "https://tec.openplanner.team/stops/N139aca"], ["https://tec.openplanner.team/stops/H2go113a", "https://tec.openplanner.team/stops/H2go113b"], ["https://tec.openplanner.team/stops/Cgon51", "https://tec.openplanner.team/stops/Cjuepee1"], ["https://tec.openplanner.team/stops/LbTweyn1", "https://tec.openplanner.team/stops/LbUvith1"], ["https://tec.openplanner.team/stops/LSCeg--1", "https://tec.openplanner.team/stops/LSCeg--4"], ["https://tec.openplanner.team/stops/LAWjaur1", "https://tec.openplanner.team/stops/LAWvold1"], ["https://tec.openplanner.team/stops/Bniltri1", "https://tec.openplanner.team/stops/Bniltri2"], ["https://tec.openplanner.team/stops/LLrelec2", "https://tec.openplanner.team/stops/LLrhest2"], ["https://tec.openplanner.team/stops/Bcrnnca1", "https://tec.openplanner.team/stops/Bcrnnra2"], ["https://tec.openplanner.team/stops/N211arb", "https://tec.openplanner.team/stops/N211baa"], ["https://tec.openplanner.team/stops/Csesabo1", "https://tec.openplanner.team/stops/N424aba"], ["https://tec.openplanner.team/stops/Llaeg--2", "https://tec.openplanner.team/stops/Llaflot1"], ["https://tec.openplanner.team/stops/X793aea", "https://tec.openplanner.team/stops/X793agb"], ["https://tec.openplanner.team/stops/H4ae132d", "https://tec.openplanner.team/stops/H4ea130a"], ["https://tec.openplanner.team/stops/N554aga", "https://tec.openplanner.team/stops/N566aea"], ["https://tec.openplanner.team/stops/LnDrund2", "https://tec.openplanner.team/stops/LnDthel1"], ["https://tec.openplanner.team/stops/Lghfore1", "https://tec.openplanner.team/stops/Lghfore2"], ["https://tec.openplanner.team/stops/LSUroyo1", "https://tec.openplanner.team/stops/LTgjalh2"], ["https://tec.openplanner.team/stops/H4my120a", "https://tec.openplanner.team/stops/H4my122b"], ["https://tec.openplanner.team/stops/H4ch113b", "https://tec.openplanner.team/stops/H4vx363b"], ["https://tec.openplanner.team/stops/X768aab", "https://tec.openplanner.team/stops/X768aba"], ["https://tec.openplanner.team/stops/Bcrncjo1", "https://tec.openplanner.team/stops/Bernpon1"], ["https://tec.openplanner.team/stops/LOdbuis1", "https://tec.openplanner.team/stops/LVlleme3"], ["https://tec.openplanner.team/stops/H3so187a", "https://tec.openplanner.team/stops/H3so187b"], ["https://tec.openplanner.team/stops/X834acb", "https://tec.openplanner.team/stops/X834ada"], ["https://tec.openplanner.team/stops/Llabrou1", "https://tec.openplanner.team/stops/Llaeg--1"], ["https://tec.openplanner.team/stops/Btsllib2", "https://tec.openplanner.team/stops/Btslnil1"], ["https://tec.openplanner.team/stops/LTiterr1", "https://tec.openplanner.team/stops/LTiterr2"], ["https://tec.openplanner.team/stops/LHUchin*", "https://tec.openplanner.team/stops/NL80ava"], ["https://tec.openplanner.team/stops/NH01akb", "https://tec.openplanner.team/stops/NH01ala"], ["https://tec.openplanner.team/stops/X912aca", "https://tec.openplanner.team/stops/X912acb"], ["https://tec.openplanner.team/stops/Bgzdgth2", "https://tec.openplanner.team/stops/Bgzdpis1"], ["https://tec.openplanner.team/stops/Buccdho2", "https://tec.openplanner.team/stops/Buccobs1"], ["https://tec.openplanner.team/stops/H5rx106b", "https://tec.openplanner.team/stops/H5rx139a"], ["https://tec.openplanner.team/stops/Lligare1", "https://tec.openplanner.team/stops/Lligare2"], ["https://tec.openplanner.team/stops/Cdacolu2", "https://tec.openplanner.team/stops/Cdadest1"], ["https://tec.openplanner.team/stops/N368aba", "https://tec.openplanner.team/stops/N368acb"], ["https://tec.openplanner.team/stops/X661arb", "https://tec.openplanner.team/stops/X661arc"], ["https://tec.openplanner.team/stops/Cchwate2", "https://tec.openplanner.team/stops/Cchwate3"], ["https://tec.openplanner.team/stops/X812aua", "https://tec.openplanner.team/stops/X812bab"], ["https://tec.openplanner.team/stops/LEScham2", "https://tec.openplanner.team/stops/LESsouv1"], ["https://tec.openplanner.team/stops/X657afa", "https://tec.openplanner.team/stops/X657afb"], ["https://tec.openplanner.team/stops/Bwatcci2", "https://tec.openplanner.team/stops/Bwatceg1"], ["https://tec.openplanner.team/stops/N135aed", "https://tec.openplanner.team/stops/N135alb"], ["https://tec.openplanner.team/stops/H5qu142a", "https://tec.openplanner.team/stops/H5qu150a"], ["https://tec.openplanner.team/stops/LAUneuv5", "https://tec.openplanner.team/stops/LAUtism2"], ["https://tec.openplanner.team/stops/H1ha190b", "https://tec.openplanner.team/stops/H1ha192b"], ["https://tec.openplanner.team/stops/H2pe156b", "https://tec.openplanner.team/stops/H2re163a"], ["https://tec.openplanner.team/stops/X640ana", "https://tec.openplanner.team/stops/X640aoa"], ["https://tec.openplanner.team/stops/Chhegli2", "https://tec.openplanner.team/stops/Chhegli4"], ["https://tec.openplanner.team/stops/N111acb", "https://tec.openplanner.team/stops/N111adb"], ["https://tec.openplanner.team/stops/X809ada", "https://tec.openplanner.team/stops/X809afa"], ["https://tec.openplanner.team/stops/LMttrou1", "https://tec.openplanner.team/stops/LMttrou2"], ["https://tec.openplanner.team/stops/N135bfa", "https://tec.openplanner.team/stops/N135bga"], ["https://tec.openplanner.team/stops/H1cu118a", "https://tec.openplanner.team/stops/H1cu121a"], ["https://tec.openplanner.team/stops/N566aea", "https://tec.openplanner.team/stops/N566afa"], ["https://tec.openplanner.team/stops/N145adb", "https://tec.openplanner.team/stops/N145agb"], ["https://tec.openplanner.team/stops/N351ana", "https://tec.openplanner.team/stops/N357ada"], ["https://tec.openplanner.team/stops/Cprcits1", "https://tec.openplanner.team/stops/Cprlpre1"], ["https://tec.openplanner.team/stops/Cwfdupo2", "https://tec.openplanner.team/stops/Cwfplac1"], ["https://tec.openplanner.team/stops/N551arb", "https://tec.openplanner.team/stops/N551arc"], ["https://tec.openplanner.team/stops/X896aga", "https://tec.openplanner.team/stops/X896agb"], ["https://tec.openplanner.team/stops/Bdoncar2", "https://tec.openplanner.team/stops/Bgligli1"], ["https://tec.openplanner.team/stops/X945aba", "https://tec.openplanner.team/stops/X947aaa"], ["https://tec.openplanner.team/stops/H1el135b", "https://tec.openplanner.team/stops/H1wi152d"], ["https://tec.openplanner.team/stops/X982bga", "https://tec.openplanner.team/stops/X986aha"], ["https://tec.openplanner.team/stops/LkEbbl-1", "https://tec.openplanner.team/stops/LkEkirc2"], ["https://tec.openplanner.team/stops/Lhutann2", "https://tec.openplanner.team/stops/Lmnbass1"], ["https://tec.openplanner.team/stops/LeUclou1", "https://tec.openplanner.team/stops/LHthest2"], ["https://tec.openplanner.team/stops/H4mo134a", "https://tec.openplanner.team/stops/H4mo181d"], ["https://tec.openplanner.team/stops/LFemoul1", "https://tec.openplanner.team/stops/LFemoul2"], ["https://tec.openplanner.team/stops/X804adb", "https://tec.openplanner.team/stops/X804bea"], ["https://tec.openplanner.team/stops/H1ho138b", "https://tec.openplanner.team/stops/H1wl121a"], ["https://tec.openplanner.team/stops/N106aoa", "https://tec.openplanner.team/stops/N106ara"], ["https://tec.openplanner.team/stops/LENmc--2", "https://tec.openplanner.team/stops/LENsent1"], ["https://tec.openplanner.team/stops/Ccoha601", "https://tec.openplanner.team/stops/H2tz120a"], ["https://tec.openplanner.team/stops/X695afa", "https://tec.openplanner.team/stops/X695ala"], ["https://tec.openplanner.team/stops/X359acb", "https://tec.openplanner.team/stops/X371aba"], ["https://tec.openplanner.team/stops/LmYamel1", "https://tec.openplanner.team/stops/LmYamel2"], ["https://tec.openplanner.team/stops/N543azb", "https://tec.openplanner.team/stops/N543cga"], ["https://tec.openplanner.team/stops/Ctrecol3", "https://tec.openplanner.team/stops/Ctrecol4"], ["https://tec.openplanner.team/stops/LESecco2", "https://tec.openplanner.team/stops/LESmich1"], ["https://tec.openplanner.team/stops/LrAdrie5", "https://tec.openplanner.team/stops/LrAtitf2"], ["https://tec.openplanner.team/stops/N104afa", "https://tec.openplanner.team/stops/N104afb"], ["https://tec.openplanner.team/stops/LnUneun1", "https://tec.openplanner.team/stops/LnUneun2"], ["https://tec.openplanner.team/stops/X608ana", "https://tec.openplanner.team/stops/X608atb"], ["https://tec.openplanner.team/stops/H4mx118b", "https://tec.openplanner.team/stops/H4ve131a"], ["https://tec.openplanner.team/stops/LhGrote2", "https://tec.openplanner.team/stops/LkEschi1"], ["https://tec.openplanner.team/stops/N551aiy", "https://tec.openplanner.team/stops/N551aiz"], ["https://tec.openplanner.team/stops/Bbstrpo1", "https://tec.openplanner.team/stops/Bbstrpo2"], ["https://tec.openplanner.team/stops/H4mv192a", "https://tec.openplanner.team/stops/H4oe147b"], ["https://tec.openplanner.team/stops/H4be146a", "https://tec.openplanner.team/stops/H5bl120a"], ["https://tec.openplanner.team/stops/NL76aja", "https://tec.openplanner.team/stops/NL77ajb"], ["https://tec.openplanner.team/stops/X836acb", "https://tec.openplanner.team/stops/X836aib"], ["https://tec.openplanner.team/stops/Bmsgeco1", "https://tec.openplanner.team/stops/Bmsgmon2"], ["https://tec.openplanner.team/stops/Bzluegl2", "https://tec.openplanner.team/stops/Bzluvil1"], ["https://tec.openplanner.team/stops/LHodomm1", "https://tec.openplanner.team/stops/LHovach1"], ["https://tec.openplanner.team/stops/Cpl4bra3", "https://tec.openplanner.team/stops/Cplrond2"], ["https://tec.openplanner.team/stops/Cgygazo5", "https://tec.openplanner.team/stops/Cgygazo8"], ["https://tec.openplanner.team/stops/X757akb", "https://tec.openplanner.team/stops/X779aaa"], ["https://tec.openplanner.team/stops/N529afb", "https://tec.openplanner.team/stops/N584aoa"], ["https://tec.openplanner.team/stops/LBvnico2", "https://tec.openplanner.team/stops/LBvnico4"], ["https://tec.openplanner.team/stops/N531aua", "https://tec.openplanner.team/stops/N568abb"], ["https://tec.openplanner.team/stops/Bthsset1", "https://tec.openplanner.team/stops/NL37aib"], ["https://tec.openplanner.team/stops/LMgbatt2", "https://tec.openplanner.team/stops/LMgbern2"], ["https://tec.openplanner.team/stops/X902aqa", "https://tec.openplanner.team/stops/X902asa"], ["https://tec.openplanner.team/stops/Bnivver1", "https://tec.openplanner.team/stops/Bnivver2"], ["https://tec.openplanner.team/stops/LFUfleu2", "https://tec.openplanner.team/stops/LFUfonc1"], ["https://tec.openplanner.team/stops/Btslcej2", "https://tec.openplanner.team/stops/Btsllsc2"], ["https://tec.openplanner.team/stops/LGEhosp2", "https://tec.openplanner.team/stops/LGEvill2"], ["https://tec.openplanner.team/stops/X904ala", "https://tec.openplanner.team/stops/X907aba"], ["https://tec.openplanner.team/stops/Ltibalt2", "https://tec.openplanner.team/stops/Ltibell1"], ["https://tec.openplanner.team/stops/LTPlegr1", "https://tec.openplanner.team/stops/LTPtroi2"], ["https://tec.openplanner.team/stops/Loudemo1", "https://tec.openplanner.team/stops/Louencl2"], ["https://tec.openplanner.team/stops/X801baa", "https://tec.openplanner.team/stops/X801bja"], ["https://tec.openplanner.team/stops/Bnetace1", "https://tec.openplanner.team/stops/Bnetrbr2"], ["https://tec.openplanner.team/stops/Llgdelb2", "https://tec.openplanner.team/stops/Llgsimo1"], ["https://tec.openplanner.team/stops/X750acb", "https://tec.openplanner.team/stops/X750afb"], ["https://tec.openplanner.team/stops/X904afb", "https://tec.openplanner.team/stops/X904ahb"], ["https://tec.openplanner.team/stops/H1ms296c", "https://tec.openplanner.team/stops/H1ms296d"], ["https://tec.openplanner.team/stops/X746afb", "https://tec.openplanner.team/stops/X746agb"], ["https://tec.openplanner.team/stops/Blimbet3", "https://tec.openplanner.team/stops/Bottcpl2"], ["https://tec.openplanner.team/stops/X725afg", "https://tec.openplanner.team/stops/X725afh"], ["https://tec.openplanner.team/stops/H5at115a", "https://tec.openplanner.team/stops/H5at118b"], ["https://tec.openplanner.team/stops/LCFcarr2", "https://tec.openplanner.team/stops/LCFeg--1"], ["https://tec.openplanner.team/stops/Bhoegbr2", "https://tec.openplanner.team/stops/Bwbfbon2"], ["https://tec.openplanner.team/stops/LWDbure1", "https://tec.openplanner.team/stops/LWDchpl1"], ["https://tec.openplanner.team/stops/N222aba", "https://tec.openplanner.team/stops/X222afb"], ["https://tec.openplanner.team/stops/H4eg107a", "https://tec.openplanner.team/stops/H4eg107b"], ["https://tec.openplanner.team/stops/Cprgran2", "https://tec.openplanner.team/stops/NC11aoa"], ["https://tec.openplanner.team/stops/Blhufro1", "https://tec.openplanner.team/stops/Blhupqu1"], ["https://tec.openplanner.team/stops/H4pl135a", "https://tec.openplanner.team/stops/H4pl135b"], ["https://tec.openplanner.team/stops/N141ala", "https://tec.openplanner.team/stops/N141alb"], ["https://tec.openplanner.team/stops/LHMmarq1", "https://tec.openplanner.team/stops/LHMparq2"], ["https://tec.openplanner.team/stops/X926afb", "https://tec.openplanner.team/stops/X947aeb"], ["https://tec.openplanner.team/stops/Cmgvpa", "https://tec.openplanner.team/stops/Csyplac2"], ["https://tec.openplanner.team/stops/X358aca", "https://tec.openplanner.team/stops/X358acc"], ["https://tec.openplanner.team/stops/Lbrddef3", "https://tec.openplanner.team/stops/Lbrgrot2"], ["https://tec.openplanner.team/stops/LhEklos1", "https://tec.openplanner.team/stops/LhEtivo1"], ["https://tec.openplanner.team/stops/X792aba", "https://tec.openplanner.team/stops/X793aoa"], ["https://tec.openplanner.team/stops/X982aab", "https://tec.openplanner.team/stops/X982aad"], ["https://tec.openplanner.team/stops/N311aea", "https://tec.openplanner.team/stops/N311aec"], ["https://tec.openplanner.team/stops/Binccha2", "https://tec.openplanner.team/stops/Brxmbos2"], ["https://tec.openplanner.team/stops/X790ala", "https://tec.openplanner.team/stops/X790ama"], ["https://tec.openplanner.team/stops/N510afb", "https://tec.openplanner.team/stops/N513azb"], ["https://tec.openplanner.team/stops/X769aqb", "https://tec.openplanner.team/stops/X769atb"], ["https://tec.openplanner.team/stops/LbUjost3", "https://tec.openplanner.team/stops/LhUdenk1"], ["https://tec.openplanner.team/stops/H5bl115c", "https://tec.openplanner.team/stops/H5bl124b"], ["https://tec.openplanner.team/stops/Cdapige2", "https://tec.openplanner.team/stops/CMsacm2"], ["https://tec.openplanner.team/stops/LJAsuri1", "https://tec.openplanner.team/stops/LJAverv1"], ["https://tec.openplanner.team/stops/N509aia", "https://tec.openplanner.team/stops/N509bdb"], ["https://tec.openplanner.team/stops/H4ef165c", "https://tec.openplanner.team/stops/H4mb143b"], ["https://tec.openplanner.team/stops/LmTzoll2", "https://tec.openplanner.team/stops/LrTpost1"], ["https://tec.openplanner.team/stops/N562afb", "https://tec.openplanner.team/stops/N562bhb"], ["https://tec.openplanner.team/stops/LHMgulp2", "https://tec.openplanner.team/stops/LHMthys2"], ["https://tec.openplanner.team/stops/X666aka", "https://tec.openplanner.team/stops/X729aaa"], ["https://tec.openplanner.team/stops/NL75aba", "https://tec.openplanner.team/stops/NL75aca"], ["https://tec.openplanner.team/stops/Bnodtir4", "https://tec.openplanner.team/stops/Boplsma4"], ["https://tec.openplanner.team/stops/H4mo162a", "https://tec.openplanner.team/stops/H4mo167a"], ["https://tec.openplanner.team/stops/LwTkabi1", "https://tec.openplanner.team/stops/LwTkabi3"], ["https://tec.openplanner.team/stops/H1wa136a", "https://tec.openplanner.team/stops/H1wa140a"], ["https://tec.openplanner.team/stops/LVIdepo3", "https://tec.openplanner.team/stops/LVIhala3"], ["https://tec.openplanner.team/stops/LBseg--2", "https://tec.openplanner.team/stops/LBsfer-2"], ["https://tec.openplanner.team/stops/X907aca", "https://tec.openplanner.team/stops/X907acb"], ["https://tec.openplanner.team/stops/Cmygbbo3", "https://tec.openplanner.team/stops/Cmyrens2"], ["https://tec.openplanner.team/stops/LThbatt1", "https://tec.openplanner.team/stops/LThgare1"], ["https://tec.openplanner.team/stops/H1bx106a", "https://tec.openplanner.team/stops/H1mh116a"], ["https://tec.openplanner.team/stops/Cmcbriq2", "https://tec.openplanner.team/stops/Csysans2"], ["https://tec.openplanner.team/stops/N501jhb", "https://tec.openplanner.team/stops/N501jkb"], ["https://tec.openplanner.team/stops/LpEbins1", "https://tec.openplanner.team/stops/LpEbins2"], ["https://tec.openplanner.team/stops/H5at134a", "https://tec.openplanner.team/stops/H5at134b"], ["https://tec.openplanner.team/stops/H4er122a", "https://tec.openplanner.team/stops/H4er122b"], ["https://tec.openplanner.team/stops/N501gcb", "https://tec.openplanner.team/stops/N538aeb"], ["https://tec.openplanner.team/stops/Crojume2", "https://tec.openplanner.team/stops/Cropcan2"], ["https://tec.openplanner.team/stops/X615azb", "https://tec.openplanner.team/stops/X615bdb"], ["https://tec.openplanner.team/stops/N512anb", "https://tec.openplanner.team/stops/N512apa"], ["https://tec.openplanner.team/stops/LNHhome1", "https://tec.openplanner.team/stops/LTipont1"], ["https://tec.openplanner.team/stops/H4qu230b", "https://tec.openplanner.team/stops/H4qu408b"], ["https://tec.openplanner.team/stops/Bbiecoc2", "https://tec.openplanner.team/stops/Bbiesbi2"], ["https://tec.openplanner.team/stops/X675aab", "https://tec.openplanner.team/stops/X675aba"], ["https://tec.openplanner.team/stops/Cbfpoti1", "https://tec.openplanner.team/stops/Cbfpoti2"], ["https://tec.openplanner.team/stops/LENtour1", "https://tec.openplanner.team/stops/LSBsere2"], ["https://tec.openplanner.team/stops/Bettcha1", "https://tec.openplanner.team/stops/Bixepla2"], ["https://tec.openplanner.team/stops/Bbghgli1", "https://tec.openplanner.team/stops/Bstesar1"], ["https://tec.openplanner.team/stops/LCPhall1", "https://tec.openplanner.team/stops/LCPhall2"], ["https://tec.openplanner.team/stops/LBDfran2", "https://tec.openplanner.team/stops/LVEbors2"], ["https://tec.openplanner.team/stops/X659aqb", "https://tec.openplanner.team/stops/X659ava"], ["https://tec.openplanner.team/stops/N988aaa", "https://tec.openplanner.team/stops/N988aab"], ["https://tec.openplanner.team/stops/Cgncail1", "https://tec.openplanner.team/stops/Cgnpass1"], ["https://tec.openplanner.team/stops/H1gh157b", "https://tec.openplanner.team/stops/H1gh158b"], ["https://tec.openplanner.team/stops/LGLgare*", "https://tec.openplanner.team/stops/LGLgeer2"], ["https://tec.openplanner.team/stops/N501fub", "https://tec.openplanner.team/stops/N501hyb"], ["https://tec.openplanner.team/stops/Cgofert2", "https://tec.openplanner.team/stops/Ctmmana2"], ["https://tec.openplanner.team/stops/Bwatmsj1", "https://tec.openplanner.team/stops/Bwatmsj2"], ["https://tec.openplanner.team/stops/H2sb226a", "https://tec.openplanner.team/stops/H2sb266b"], ["https://tec.openplanner.team/stops/Bjaufca2", "https://tec.openplanner.team/stops/Bjaurgo1"], ["https://tec.openplanner.team/stops/Bcbqh452", "https://tec.openplanner.team/stops/Bcbqhai1"], ["https://tec.openplanner.team/stops/LlCauto2", "https://tec.openplanner.team/stops/LlCland1"], ["https://tec.openplanner.team/stops/Bgzdegl3", "https://tec.openplanner.team/stops/Bgzdgpa2"], ["https://tec.openplanner.team/stops/X982cea", "https://tec.openplanner.team/stops/X986aab"], ["https://tec.openplanner.team/stops/H1ba103a", "https://tec.openplanner.team/stops/H1ba103b"], ["https://tec.openplanner.team/stops/H3so168a", "https://tec.openplanner.team/stops/H3so168b"], ["https://tec.openplanner.team/stops/LABvill1", "https://tec.openplanner.team/stops/LHNtonn1"], ["https://tec.openplanner.team/stops/LMalarg3", "https://tec.openplanner.team/stops/LMalarg4"], ["https://tec.openplanner.team/stops/LkEbruc1", "https://tec.openplanner.team/stops/LkEbruc2"], ["https://tec.openplanner.team/stops/Lfhmalv2", "https://tec.openplanner.team/stops/Livgera3"], ["https://tec.openplanner.team/stops/X354aib", "https://tec.openplanner.team/stops/X858aab"], ["https://tec.openplanner.team/stops/Ljexhav1", "https://tec.openplanner.team/stops/Ljexhav4"], ["https://tec.openplanner.team/stops/H4ce102a", "https://tec.openplanner.team/stops/H4ce104a"], ["https://tec.openplanner.team/stops/Llgcond1", "https://tec.openplanner.team/stops/Llgpont2"], ["https://tec.openplanner.team/stops/N229aha", "https://tec.openplanner.team/stops/N229aoa"], ["https://tec.openplanner.team/stops/Lfhbott2", "https://tec.openplanner.team/stops/Lfhcime2"], ["https://tec.openplanner.team/stops/X775ahb", "https://tec.openplanner.team/stops/X775aja"], ["https://tec.openplanner.team/stops/Llaacca1", "https://tec.openplanner.team/stops/Lladete4"], ["https://tec.openplanner.team/stops/N213aca", "https://tec.openplanner.team/stops/N352aca"], ["https://tec.openplanner.team/stops/LHUloui1", "https://tec.openplanner.team/stops/LHUremy2"], ["https://tec.openplanner.team/stops/LkEgss-2", "https://tec.openplanner.team/stops/LkEneus2"], ["https://tec.openplanner.team/stops/N508apa", "https://tec.openplanner.team/stops/N508apb"], ["https://tec.openplanner.team/stops/Cauwauq2", "https://tec.openplanner.team/stops/N530agb"], ["https://tec.openplanner.team/stops/X734aka", "https://tec.openplanner.team/stops/X734and"], ["https://tec.openplanner.team/stops/Ccupdes1", "https://tec.openplanner.team/stops/Ccupdes4"], ["https://tec.openplanner.team/stops/N540adb", "https://tec.openplanner.team/stops/N540aib"], ["https://tec.openplanner.team/stops/X922akb", "https://tec.openplanner.team/stops/X922ala"], ["https://tec.openplanner.team/stops/X897aab", "https://tec.openplanner.team/stops/X897aba"], ["https://tec.openplanner.team/stops/LAVpequ2", "https://tec.openplanner.team/stops/LVHweri1"], ["https://tec.openplanner.team/stops/LSfcoll*", "https://tec.openplanner.team/stops/X512aib"], ["https://tec.openplanner.team/stops/H1ro130a", "https://tec.openplanner.team/stops/H1ro130b"], ["https://tec.openplanner.team/stops/X720aeb", "https://tec.openplanner.team/stops/X733aab"], ["https://tec.openplanner.team/stops/LSXbecc2", "https://tec.openplanner.team/stops/LSXvill2"], ["https://tec.openplanner.team/stops/Cbctile", "https://tec.openplanner.team/stops/Clftour1"], ["https://tec.openplanner.team/stops/H2pr114b", "https://tec.openplanner.team/stops/H2pr118a"], ["https://tec.openplanner.team/stops/Cchba05", "https://tec.openplanner.team/stops/CMba1"], ["https://tec.openplanner.team/stops/Bblacar1", "https://tec.openplanner.team/stops/Bblapri1"], ["https://tec.openplanner.team/stops/Benimar2", "https://tec.openplanner.team/stops/NR21ajb"], ["https://tec.openplanner.team/stops/H1ba101a", "https://tec.openplanner.team/stops/H1ba102a"], ["https://tec.openplanner.team/stops/N512asa", "https://tec.openplanner.team/stops/N512ata"], ["https://tec.openplanner.team/stops/LFlabba1", "https://tec.openplanner.team/stops/LFlpark*"], ["https://tec.openplanner.team/stops/LCxreno1", "https://tec.openplanner.team/stops/LLM4rou4"], ["https://tec.openplanner.team/stops/H4ty264b", "https://tec.openplanner.team/stops/H4ty306b"], ["https://tec.openplanner.team/stops/Cchalou1", "https://tec.openplanner.team/stops/Cchmott1"], ["https://tec.openplanner.team/stops/Bbchmin2", "https://tec.openplanner.team/stops/Bitrmon2"], ["https://tec.openplanner.team/stops/Ljuinte1", "https://tec.openplanner.team/stops/Ljuinte2"], ["https://tec.openplanner.team/stops/N122aga", "https://tec.openplanner.team/stops/N122agb"], ["https://tec.openplanner.team/stops/X760aeb", "https://tec.openplanner.team/stops/X762aeb"], ["https://tec.openplanner.team/stops/LGOhevr1", "https://tec.openplanner.team/stops/LGOhevr2"], ["https://tec.openplanner.team/stops/H1qy134a", "https://tec.openplanner.team/stops/H1qy134b"], ["https://tec.openplanner.team/stops/LROhaie2", "https://tec.openplanner.team/stops/LSorobe2"], ["https://tec.openplanner.team/stops/H1lb134a", "https://tec.openplanner.team/stops/H1qu108a"], ["https://tec.openplanner.team/stops/X767ada", "https://tec.openplanner.team/stops/X769ata"], ["https://tec.openplanner.team/stops/X735aaa", "https://tec.openplanner.team/stops/X735abc"], ["https://tec.openplanner.team/stops/H2pe154a", "https://tec.openplanner.team/stops/H2pe154b"], ["https://tec.openplanner.team/stops/X804ada", "https://tec.openplanner.team/stops/X804aea"], ["https://tec.openplanner.team/stops/Cvvmonu1", "https://tec.openplanner.team/stops/Cvvmonu2"], ["https://tec.openplanner.team/stops/LCPbell2", "https://tec.openplanner.team/stops/LCPone92"], ["https://tec.openplanner.team/stops/Bincbbo2", "https://tec.openplanner.team/stops/Bincegl2"], ["https://tec.openplanner.team/stops/LJAcham1", "https://tec.openplanner.team/stops/LJAgoff2"], ["https://tec.openplanner.team/stops/LmCkirc1", "https://tec.openplanner.team/stops/LwEdorf1"], ["https://tec.openplanner.team/stops/LSGsolo1", "https://tec.openplanner.team/stops/LSGsolo2"], ["https://tec.openplanner.team/stops/X840afa", "https://tec.openplanner.team/stops/X840afb"], ["https://tec.openplanner.team/stops/X736ada", "https://tec.openplanner.team/stops/X736aea"], ["https://tec.openplanner.team/stops/LHUcamp1", "https://tec.openplanner.team/stops/LHUec--2"], ["https://tec.openplanner.team/stops/LBscasi1", "https://tec.openplanner.team/stops/NL72aaa"], ["https://tec.openplanner.team/stops/LCeterm2", "https://tec.openplanner.team/stops/LOMdodi2"], ["https://tec.openplanner.team/stops/Bgemgjo1", "https://tec.openplanner.team/stops/N522bvd"], ["https://tec.openplanner.team/stops/H1hc127c", "https://tec.openplanner.team/stops/H5gr135a"], ["https://tec.openplanner.team/stops/LBIpost1", "https://tec.openplanner.team/stops/Lghlogi2"], ["https://tec.openplanner.team/stops/LACwass2", "https://tec.openplanner.team/stops/LBUrout1"], ["https://tec.openplanner.team/stops/H5rx106a", "https://tec.openplanner.team/stops/H5rx106b"], ["https://tec.openplanner.team/stops/H1gh165b", "https://tec.openplanner.team/stops/H1gh165c"], ["https://tec.openplanner.team/stops/X654aba", "https://tec.openplanner.team/stops/X654abb"], ["https://tec.openplanner.team/stops/Bvirbru1", "https://tec.openplanner.team/stops/Bvirpla1"], ["https://tec.openplanner.team/stops/Lsmberg1", "https://tec.openplanner.team/stops/Lsmdams2"], ["https://tec.openplanner.team/stops/Llgbida1", "https://tec.openplanner.team/stops/Llglaur1"], ["https://tec.openplanner.team/stops/LLAbure2", "https://tec.openplanner.team/stops/LPleclu2"], ["https://tec.openplanner.team/stops/N563anb", "https://tec.openplanner.team/stops/N570acb"], ["https://tec.openplanner.team/stops/N501eua", "https://tec.openplanner.team/stops/N501exa"], ["https://tec.openplanner.team/stops/N576akc", "https://tec.openplanner.team/stops/N576akd"], ["https://tec.openplanner.team/stops/LATcorp1", "https://tec.openplanner.team/stops/LATmals2"], ["https://tec.openplanner.team/stops/H1br127a", "https://tec.openplanner.team/stops/H3bo101a"], ["https://tec.openplanner.team/stops/X601bwa", "https://tec.openplanner.team/stops/X601bxb"], ["https://tec.openplanner.team/stops/Bnivrsa1", "https://tec.openplanner.team/stops/Bnivrsa2"], ["https://tec.openplanner.team/stops/Btubind1", "https://tec.openplanner.team/stops/Btubpla1"], ["https://tec.openplanner.team/stops/Bgnvpco3", "https://tec.openplanner.team/stops/Brixroi2"], ["https://tec.openplanner.team/stops/H2ll178a", "https://tec.openplanner.team/stops/H2ll180a"], ["https://tec.openplanner.team/stops/LLrhaut3", "https://tec.openplanner.team/stops/LREhaut1"], ["https://tec.openplanner.team/stops/N520abb", "https://tec.openplanner.team/stops/N520ajb"], ["https://tec.openplanner.team/stops/Cjuathe2", "https://tec.openplanner.team/stops/Clostan1"], ["https://tec.openplanner.team/stops/Lpevove2", "https://tec.openplanner.team/stops/LWevand2"], ["https://tec.openplanner.team/stops/NL77ana", "https://tec.openplanner.team/stops/NL78acb"], ["https://tec.openplanner.team/stops/Bfelpla1", "https://tec.openplanner.team/stops/Bfelpla2"], ["https://tec.openplanner.team/stops/LBBodet1", "https://tec.openplanner.team/stops/LBBodet2"], ["https://tec.openplanner.team/stops/Lchcomm2", "https://tec.openplanner.team/stops/Lchsaeg2"], ["https://tec.openplanner.team/stops/Ctubpos1", "https://tec.openplanner.team/stops/Ctubpos2"], ["https://tec.openplanner.team/stops/N565aja", "https://tec.openplanner.team/stops/N565ajb"], ["https://tec.openplanner.team/stops/LAUabat1", "https://tec.openplanner.team/stops/LAUcose2"], ["https://tec.openplanner.team/stops/LBivill1", "https://tec.openplanner.team/stops/LDObell1"], ["https://tec.openplanner.team/stops/Ctmsncb1", "https://tec.openplanner.team/stops/Ctmsncb2"], ["https://tec.openplanner.team/stops/LaAmise2", "https://tec.openplanner.team/stops/LaAseba1"], ["https://tec.openplanner.team/stops/X806adb", "https://tec.openplanner.team/stops/X806ala"], ["https://tec.openplanner.team/stops/X898aaa", "https://tec.openplanner.team/stops/X898afa"], ["https://tec.openplanner.team/stops/Cjojonc2", "https://tec.openplanner.team/stops/NC24ajb"], ["https://tec.openplanner.team/stops/H3so160a", "https://tec.openplanner.team/stops/H3so177a"], ["https://tec.openplanner.team/stops/H4ce100b", "https://tec.openplanner.team/stops/H4mx119a"], ["https://tec.openplanner.team/stops/X342afb", "https://tec.openplanner.team/stops/X354aca"], ["https://tec.openplanner.team/stops/X604ahb", "https://tec.openplanner.team/stops/X604akb"], ["https://tec.openplanner.team/stops/NC14aab", "https://tec.openplanner.team/stops/NC14apa"], ["https://tec.openplanner.team/stops/X953aca", "https://tec.openplanner.team/stops/X953acb"], ["https://tec.openplanner.team/stops/Blindel3", "https://tec.openplanner.team/stops/Blindel4"], ["https://tec.openplanner.team/stops/LARgare4", "https://tec.openplanner.team/stops/Lchorme1"], ["https://tec.openplanner.team/stops/LSGcolo1", "https://tec.openplanner.team/stops/LSGcolo2"], ["https://tec.openplanner.team/stops/Llgboux1", "https://tec.openplanner.team/stops/Llgmair2"], ["https://tec.openplanner.team/stops/X601bra", "https://tec.openplanner.team/stops/X601dfa"], ["https://tec.openplanner.team/stops/LwSschw1", "https://tec.openplanner.team/stops/LwSschw2"], ["https://tec.openplanner.team/stops/LeLbutg1", "https://tec.openplanner.team/stops/LeLbutg4"], ["https://tec.openplanner.team/stops/X994aeb", "https://tec.openplanner.team/stops/X994agb"], ["https://tec.openplanner.team/stops/LMNeg--1", "https://tec.openplanner.team/stops/LMsheid1"], ["https://tec.openplanner.team/stops/X738ada", "https://tec.openplanner.team/stops/X771adb"], ["https://tec.openplanner.team/stops/X605aba", "https://tec.openplanner.team/stops/X605abb"], ["https://tec.openplanner.team/stops/Bolphgr1", "https://tec.openplanner.team/stops/Bolphgr2"], ["https://tec.openplanner.team/stops/Lflrhot2", "https://tec.openplanner.team/stops/Lre3che1"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lvehauz2"], ["https://tec.openplanner.team/stops/H1sp357b", "https://tec.openplanner.team/stops/H1ss350a"], ["https://tec.openplanner.team/stops/Lsmh1801", "https://tec.openplanner.team/stops/Lvepoud1"], ["https://tec.openplanner.team/stops/N207afb", "https://tec.openplanner.team/stops/N209aca"], ["https://tec.openplanner.team/stops/Lvieg--1", "https://tec.openplanner.team/stops/Lvitour1"], ["https://tec.openplanner.team/stops/X812aka", "https://tec.openplanner.team/stops/X812akb"], ["https://tec.openplanner.team/stops/N151ajc", "https://tec.openplanner.team/stops/N152aaa"], ["https://tec.openplanner.team/stops/Botteco1", "https://tec.openplanner.team/stops/Botteco2"], ["https://tec.openplanner.team/stops/N301aka", "https://tec.openplanner.team/stops/N301ama"], ["https://tec.openplanner.team/stops/H1bx106a", "https://tec.openplanner.team/stops/H1bx107a"], ["https://tec.openplanner.team/stops/X822adb", "https://tec.openplanner.team/stops/X822aeb"], ["https://tec.openplanner.team/stops/N501cwa", "https://tec.openplanner.team/stops/N501cxa"], ["https://tec.openplanner.team/stops/N103aab", "https://tec.openplanner.team/stops/N103ada"], ["https://tec.openplanner.team/stops/X601aja", "https://tec.openplanner.team/stops/X601ajb"], ["https://tec.openplanner.team/stops/H1pa105a", "https://tec.openplanner.team/stops/H1qu108b"], ["https://tec.openplanner.team/stops/X733aab", "https://tec.openplanner.team/stops/X775ada"], ["https://tec.openplanner.team/stops/LWDcime1", "https://tec.openplanner.team/stops/LWDcime2"], ["https://tec.openplanner.team/stops/X766aea", "https://tec.openplanner.team/stops/X766afb"], ["https://tec.openplanner.team/stops/H4ta118a", "https://tec.openplanner.team/stops/H4ta118b"], ["https://tec.openplanner.team/stops/LrAputz1", "https://tec.openplanner.team/stops/LrAputz2"], ["https://tec.openplanner.team/stops/N204aab", "https://tec.openplanner.team/stops/N205adb"], ["https://tec.openplanner.team/stops/Bstemco2", "https://tec.openplanner.team/stops/Bstetre1"], ["https://tec.openplanner.team/stops/Bottgar1", "https://tec.openplanner.team/stops/Bottgar7"], ["https://tec.openplanner.team/stops/Bwatali1", "https://tec.openplanner.team/stops/Bwatgar2"], ["https://tec.openplanner.team/stops/N501icy", "https://tec.openplanner.team/stops/N501ipa"], ["https://tec.openplanner.team/stops/H2fy121b", "https://tec.openplanner.team/stops/H2lh127a"], ["https://tec.openplanner.team/stops/X660aib", "https://tec.openplanner.team/stops/X672aca"], ["https://tec.openplanner.team/stops/N539afa", "https://tec.openplanner.team/stops/N539afb"], ["https://tec.openplanner.team/stops/N135aya", "https://tec.openplanner.team/stops/N135ayb"], ["https://tec.openplanner.team/stops/Bgemgjo2", "https://tec.openplanner.team/stops/Bgemman1"], ["https://tec.openplanner.team/stops/N207aea", "https://tec.openplanner.team/stops/N209aaa"], ["https://tec.openplanner.team/stops/N525afb", "https://tec.openplanner.team/stops/N525ala"], ["https://tec.openplanner.team/stops/N501aea", "https://tec.openplanner.team/stops/N501afb"], ["https://tec.openplanner.team/stops/Csobail1", "https://tec.openplanner.team/stops/Csobail2"], ["https://tec.openplanner.team/stops/LHSheur1", "https://tec.openplanner.team/stops/LWOpier1"], ["https://tec.openplanner.team/stops/H4ka393a", "https://tec.openplanner.team/stops/H4ka393b"], ["https://tec.openplanner.team/stops/Cblbaiv1", "https://tec.openplanner.team/stops/Cmivert1"], ["https://tec.openplanner.team/stops/Ccufos71", "https://tec.openplanner.team/stops/Cculpre2"], ["https://tec.openplanner.team/stops/X801cla", "https://tec.openplanner.team/stops/X801clb"], ["https://tec.openplanner.team/stops/H4am101a", "https://tec.openplanner.team/stops/H4am113b"], ["https://tec.openplanner.team/stops/N141aia", "https://tec.openplanner.team/stops/N143abb"], ["https://tec.openplanner.team/stops/LCFcafe2", "https://tec.openplanner.team/stops/LHaodei1"], ["https://tec.openplanner.team/stops/Chhclde1", "https://tec.openplanner.team/stops/Cnapetr1"], ["https://tec.openplanner.team/stops/X831aca", "https://tec.openplanner.team/stops/X831ada"], ["https://tec.openplanner.team/stops/X670aka", "https://tec.openplanner.team/stops/X670akb"], ["https://tec.openplanner.team/stops/LVSbleu1", "https://tec.openplanner.team/stops/LVSeg--1"], ["https://tec.openplanner.team/stops/LLEfagn1", "https://tec.openplanner.team/stops/LLEgare1"], ["https://tec.openplanner.team/stops/H4pq117a", "https://tec.openplanner.team/stops/H4pq118a"], ["https://tec.openplanner.team/stops/Cjuhame3", "https://tec.openplanner.team/stops/Cjulamb4"], ["https://tec.openplanner.team/stops/Lvomoul1", "https://tec.openplanner.team/stops/Lvomoul2"], ["https://tec.openplanner.team/stops/Bgnpjbe1", "https://tec.openplanner.team/stops/Bgnpjbe2"], ["https://tec.openplanner.team/stops/LRachen1", "https://tec.openplanner.team/stops/LRachen2"], ["https://tec.openplanner.team/stops/Bbiesbi2", "https://tec.openplanner.team/stops/Bptbsar2"], ["https://tec.openplanner.team/stops/Bblamsj2", "https://tec.openplanner.team/stops/Bwatcro1"], ["https://tec.openplanner.team/stops/LHYnoid1", "https://tec.openplanner.team/stops/LHYnoid2"], ["https://tec.openplanner.team/stops/N218aaa", "https://tec.openplanner.team/stops/N385aba"], ["https://tec.openplanner.team/stops/Bthspha1", "https://tec.openplanner.team/stops/Bthspha2"], ["https://tec.openplanner.team/stops/Lbocarr1", "https://tec.openplanner.team/stops/Lbocarr2"], ["https://tec.openplanner.team/stops/N501iba", "https://tec.openplanner.team/stops/N501ibb"], ["https://tec.openplanner.team/stops/Bwatbca2", "https://tec.openplanner.team/stops/Bwatcci1"], ["https://tec.openplanner.team/stops/Bbch4br5", "https://tec.openplanner.team/stops/Bbch4br6"], ["https://tec.openplanner.team/stops/X802aja", "https://tec.openplanner.team/stops/X802ajb"], ["https://tec.openplanner.team/stops/H1gi120c", "https://tec.openplanner.team/stops/H1vs145b"], ["https://tec.openplanner.team/stops/LFPkape3", "https://tec.openplanner.team/stops/LFPkast2"], ["https://tec.openplanner.team/stops/N584bob", "https://tec.openplanner.team/stops/N584bqb"], ["https://tec.openplanner.team/stops/H4bq100b", "https://tec.openplanner.team/stops/H4bq102b"], ["https://tec.openplanner.team/stops/LTIgare2", "https://tec.openplanner.team/stops/LTIgare4"], ["https://tec.openplanner.team/stops/Broncan2", "https://tec.openplanner.team/stops/Bronrch2"], ["https://tec.openplanner.team/stops/N244apb", "https://tec.openplanner.team/stops/N244aqa"], ["https://tec.openplanner.team/stops/Lhrchar2", "https://tec.openplanner.team/stops/Lhrchar4"], ["https://tec.openplanner.team/stops/N504aca", "https://tec.openplanner.team/stops/N511aea"], ["https://tec.openplanner.team/stops/Bhevgro1", "https://tec.openplanner.team/stops/Bovesnh1"], ["https://tec.openplanner.team/stops/Lgdec--2", "https://tec.openplanner.team/stops/Lgdmaye1"], ["https://tec.openplanner.team/stops/Llgdarc1", "https://tec.openplanner.team/stops/Llgdarc2"], ["https://tec.openplanner.team/stops/Bmalcar2", "https://tec.openplanner.team/stops/Bsrbbas2"], ["https://tec.openplanner.team/stops/H1hw119a", "https://tec.openplanner.team/stops/H1hw119b"], ["https://tec.openplanner.team/stops/N548afa", "https://tec.openplanner.team/stops/N548afb"], ["https://tec.openplanner.team/stops/N534adb", "https://tec.openplanner.team/stops/N534aea"], ["https://tec.openplanner.team/stops/H1ms247a", "https://tec.openplanner.team/stops/H1ms247b"], ["https://tec.openplanner.team/stops/Ladfoot1", "https://tec.openplanner.team/stops/Ladhomb1"], ["https://tec.openplanner.team/stops/X601bma", "https://tec.openplanner.team/stops/X601cab"], ["https://tec.openplanner.team/stops/H1sg146a", "https://tec.openplanner.team/stops/H1sg146b"], ["https://tec.openplanner.team/stops/LFehaut2", "https://tec.openplanner.team/stops/LFethie1"], ["https://tec.openplanner.team/stops/LbEkirc*", "https://tec.openplanner.team/stops/LeLbutg4"], ["https://tec.openplanner.team/stops/N232aeb", "https://tec.openplanner.team/stops/N232bpb"], ["https://tec.openplanner.team/stops/X879aca", "https://tec.openplanner.team/stops/X879aha"], ["https://tec.openplanner.team/stops/N548asa", "https://tec.openplanner.team/stops/N548asb"], ["https://tec.openplanner.team/stops/N145aja", "https://tec.openplanner.team/stops/N150aab"], ["https://tec.openplanner.team/stops/N521aja", "https://tec.openplanner.team/stops/N521ajb"], ["https://tec.openplanner.team/stops/X685aia", "https://tec.openplanner.team/stops/X687aga"], ["https://tec.openplanner.team/stops/Bbchgod2", "https://tec.openplanner.team/stops/Bbchume2"], ["https://tec.openplanner.team/stops/X740aga", "https://tec.openplanner.team/stops/X985aaa"], ["https://tec.openplanner.team/stops/LBStong1", "https://tec.openplanner.team/stops/LBStong2"], ["https://tec.openplanner.team/stops/Canvane1", "https://tec.openplanner.team/stops/Canvane2"], ["https://tec.openplanner.team/stops/X673aeb", "https://tec.openplanner.team/stops/X674aab"], ["https://tec.openplanner.team/stops/X922aja", "https://tec.openplanner.team/stops/X922amb"], ["https://tec.openplanner.team/stops/LBlhaut1", "https://tec.openplanner.team/stops/LLUg82-2"], ["https://tec.openplanner.team/stops/LAyabri2", "https://tec.openplanner.team/stops/LAyheid1"], ["https://tec.openplanner.team/stops/H4bo114a", "https://tec.openplanner.team/stops/H4bo114c"], ["https://tec.openplanner.team/stops/X917aca", "https://tec.openplanner.team/stops/X917aea"], ["https://tec.openplanner.team/stops/Bgemga11", "https://tec.openplanner.team/stops/N522bvh"], ["https://tec.openplanner.team/stops/X921aob", "https://tec.openplanner.team/stops/X925aea"], ["https://tec.openplanner.team/stops/X886ahb", "https://tec.openplanner.team/stops/X899aja"], ["https://tec.openplanner.team/stops/Csecroi1", "https://tec.openplanner.team/stops/Csecroi2"], ["https://tec.openplanner.team/stops/X666ada", "https://tec.openplanner.team/stops/X666ala"], ["https://tec.openplanner.team/stops/X901afa", "https://tec.openplanner.team/stops/X901afb"], ["https://tec.openplanner.team/stops/Cfrbrin1", "https://tec.openplanner.team/stops/Cfrcoop3"], ["https://tec.openplanner.team/stops/H4bf107b", "https://tec.openplanner.team/stops/H4bs113a"], ["https://tec.openplanner.team/stops/X397aba", "https://tec.openplanner.team/stops/X398aab"], ["https://tec.openplanner.team/stops/H1ha184a", "https://tec.openplanner.team/stops/H1ha186b"], ["https://tec.openplanner.team/stops/N505ama", "https://tec.openplanner.team/stops/N512awb"], ["https://tec.openplanner.team/stops/N160aca", "https://tec.openplanner.team/stops/N160agb"], ["https://tec.openplanner.team/stops/N550acb", "https://tec.openplanner.team/stops/N550ada"], ["https://tec.openplanner.team/stops/N212aca", "https://tec.openplanner.team/stops/N212afb"], ["https://tec.openplanner.team/stops/H1he109b", "https://tec.openplanner.team/stops/H1he110a"], ["https://tec.openplanner.team/stops/LXofans1", "https://tec.openplanner.team/stops/LXofans2"], ["https://tec.openplanner.team/stops/Lagcler1", "https://tec.openplanner.team/stops/Lagcler2"], ["https://tec.openplanner.team/stops/Bclgpla1", "https://tec.openplanner.team/stops/Bdvmcsa1"], ["https://tec.openplanner.team/stops/LAOpres1", "https://tec.openplanner.team/stops/LLStrid1"], ["https://tec.openplanner.team/stops/Cslbarb1", "https://tec.openplanner.team/stops/Cvtmaro2"], ["https://tec.openplanner.team/stops/N152aac", "https://tec.openplanner.team/stops/N152abb"], ["https://tec.openplanner.team/stops/N511alb", "https://tec.openplanner.team/stops/N511atb"], ["https://tec.openplanner.team/stops/Cbckios1", "https://tec.openplanner.team/stops/Cbctile"], ["https://tec.openplanner.team/stops/Blimmer2", "https://tec.openplanner.team/stops/Blimsob2"], ["https://tec.openplanner.team/stops/X640aab", "https://tec.openplanner.team/stops/X640ada"], ["https://tec.openplanner.team/stops/X713ana", "https://tec.openplanner.team/stops/X713anb"], ["https://tec.openplanner.team/stops/N313aec", "https://tec.openplanner.team/stops/N329aab"], ["https://tec.openplanner.team/stops/H2ch105c", "https://tec.openplanner.team/stops/H2ch112b"], ["https://tec.openplanner.team/stops/X634ala", "https://tec.openplanner.team/stops/X654aab"], ["https://tec.openplanner.team/stops/N501bpb", "https://tec.openplanner.team/stops/N501btb"], ["https://tec.openplanner.team/stops/Bbourel1", "https://tec.openplanner.team/stops/Bbsthpl2"], ["https://tec.openplanner.team/stops/H1mm121b", "https://tec.openplanner.team/stops/H1mm132a"], ["https://tec.openplanner.team/stops/H1me112b", "https://tec.openplanner.team/stops/H1me117c"], ["https://tec.openplanner.team/stops/H1el136a", "https://tec.openplanner.team/stops/H1tl121b"], ["https://tec.openplanner.team/stops/N248aab", "https://tec.openplanner.team/stops/N248abb"], ["https://tec.openplanner.team/stops/N201ana", "https://tec.openplanner.team/stops/N202aha"], ["https://tec.openplanner.team/stops/LPLg90-1", "https://tec.openplanner.team/stops/LPLroth1"], ["https://tec.openplanner.team/stops/Lseaven2", "https://tec.openplanner.team/stops/Lsepuit1"], ["https://tec.openplanner.team/stops/X664aja", "https://tec.openplanner.team/stops/X664aoa"], ["https://tec.openplanner.team/stops/LFPloob1", "https://tec.openplanner.team/stops/LFProt-1"], ["https://tec.openplanner.team/stops/Louairl1", "https://tec.openplanner.team/stops/Louhauf1"], ["https://tec.openplanner.team/stops/Bgzdcen1", "https://tec.openplanner.team/stops/Bgzdn252"], ["https://tec.openplanner.team/stops/H1gy115a", "https://tec.openplanner.team/stops/H1le121a"], ["https://tec.openplanner.team/stops/NR10aaa", "https://tec.openplanner.team/stops/NR21afb"], ["https://tec.openplanner.team/stops/Bblafra1", "https://tec.openplanner.team/stops/Bblasse2"], ["https://tec.openplanner.team/stops/LsVhupp2", "https://tec.openplanner.team/stops/LsVrodt2"], ["https://tec.openplanner.team/stops/LMOecsp1", "https://tec.openplanner.team/stops/LMOf35-1"], ["https://tec.openplanner.team/stops/X780aab", "https://tec.openplanner.team/stops/X780abb"], ["https://tec.openplanner.team/stops/H1ms280d", "https://tec.openplanner.team/stops/H1ms936a"], ["https://tec.openplanner.team/stops/N501kfb", "https://tec.openplanner.team/stops/N501kid"], ["https://tec.openplanner.team/stops/LmHflor1", "https://tec.openplanner.team/stops/LmTgers2"], ["https://tec.openplanner.team/stops/LHEcruc1", "https://tec.openplanner.team/stops/LHEoutr1"], ["https://tec.openplanner.team/stops/N241ada", "https://tec.openplanner.team/stops/N241afa"], ["https://tec.openplanner.team/stops/Brebeau2", "https://tec.openplanner.team/stops/Brebras1"], ["https://tec.openplanner.team/stops/H5el112b", "https://tec.openplanner.team/stops/H5el112d"], ["https://tec.openplanner.team/stops/X224aga", "https://tec.openplanner.team/stops/X398aha"], ["https://tec.openplanner.team/stops/H1ms313a", "https://tec.openplanner.team/stops/H1ms313b"], ["https://tec.openplanner.team/stops/H2ec101b", "https://tec.openplanner.team/stops/H2ec108b"], ["https://tec.openplanner.team/stops/Bnetegl1", "https://tec.openplanner.team/stops/Bpecsta1"], ["https://tec.openplanner.team/stops/Ccugilb2", "https://tec.openplanner.team/stops/Cflvxsa2"], ["https://tec.openplanner.team/stops/Bnivmat1", "https://tec.openplanner.team/stops/Bnivrec1"], ["https://tec.openplanner.team/stops/LHEoutr1", "https://tec.openplanner.team/stops/LHEzoni1"], ["https://tec.openplanner.team/stops/LwAlont4", "https://tec.openplanner.team/stops/LwAstum2"], ["https://tec.openplanner.team/stops/X624aaa", "https://tec.openplanner.team/stops/X624aab"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LFdchau2"], ["https://tec.openplanner.team/stops/H1wa154a", "https://tec.openplanner.team/stops/H1wa158b"], ["https://tec.openplanner.team/stops/X670aaa", "https://tec.openplanner.team/stops/X670arb"], ["https://tec.openplanner.team/stops/H4fr144b", "https://tec.openplanner.team/stops/H4ty301a"], ["https://tec.openplanner.team/stops/Bboseco2", "https://tec.openplanner.team/stops/Bbosgar2"], ["https://tec.openplanner.team/stops/LbUverb2", "https://tec.openplanner.team/stops/LhObull1"], ["https://tec.openplanner.team/stops/X641aha", "https://tec.openplanner.team/stops/X641ahb"], ["https://tec.openplanner.team/stops/N243aaa", "https://tec.openplanner.team/stops/N243aeb"], ["https://tec.openplanner.team/stops/X939aga", "https://tec.openplanner.team/stops/X939aha"], ["https://tec.openplanner.team/stops/Bitrhou2", "https://tec.openplanner.team/stops/Bitrh%C3%BBl2"], ["https://tec.openplanner.team/stops/Btileco2", "https://tec.openplanner.team/stops/Btilhti2"], ["https://tec.openplanner.team/stops/X991aca", "https://tec.openplanner.team/stops/X991ahb"], ["https://tec.openplanner.team/stops/N568aab", "https://tec.openplanner.team/stops/N568abb"], ["https://tec.openplanner.team/stops/N538awa", "https://tec.openplanner.team/stops/N538awb"], ["https://tec.openplanner.team/stops/Lseecol1", "https://tec.openplanner.team/stops/Lsehaut2"], ["https://tec.openplanner.team/stops/N577ajb", "https://tec.openplanner.team/stops/N577akb"], ["https://tec.openplanner.team/stops/N202abb", "https://tec.openplanner.team/stops/N202aca"], ["https://tec.openplanner.team/stops/H1ca106a", "https://tec.openplanner.team/stops/H1ne144a"], ["https://tec.openplanner.team/stops/Lsechev1", "https://tec.openplanner.team/stops/Lsestap1"], ["https://tec.openplanner.team/stops/X901ada", "https://tec.openplanner.team/stops/X901aea"], ["https://tec.openplanner.team/stops/X663apa", "https://tec.openplanner.team/stops/X663awa"], ["https://tec.openplanner.team/stops/H1gr113a", "https://tec.openplanner.team/stops/H1gr123c"], ["https://tec.openplanner.team/stops/X724ada", "https://tec.openplanner.team/stops/X724afb"], ["https://tec.openplanner.team/stops/LmHabzw1", "https://tec.openplanner.team/stops/LmHdrei1"], ["https://tec.openplanner.team/stops/LHHlomb2", "https://tec.openplanner.team/stops/LVTforg1"], ["https://tec.openplanner.team/stops/N242afa", "https://tec.openplanner.team/stops/N242afb"], ["https://tec.openplanner.team/stops/Cjucopp2", "https://tec.openplanner.team/stops/Cjuhden3"], ["https://tec.openplanner.team/stops/H1bo110b", "https://tec.openplanner.team/stops/H1bo111b"], ["https://tec.openplanner.team/stops/X601bjb", "https://tec.openplanner.team/stops/X601dia"], ["https://tec.openplanner.team/stops/Cliburl2", "https://tec.openplanner.team/stops/Clihame2"], ["https://tec.openplanner.team/stops/X948aic", "https://tec.openplanner.team/stops/X948ajb"], ["https://tec.openplanner.team/stops/H1br131b", "https://tec.openplanner.team/stops/H1br134b"], ["https://tec.openplanner.team/stops/X715amb", "https://tec.openplanner.team/stops/X715apb"], ["https://tec.openplanner.team/stops/H2pr115a", "https://tec.openplanner.team/stops/H3br103a"], ["https://tec.openplanner.team/stops/H1mh113c", "https://tec.openplanner.team/stops/H1mh115a"], ["https://tec.openplanner.team/stops/Cmadeli2", "https://tec.openplanner.team/stops/Cmasncb2"], ["https://tec.openplanner.team/stops/Cbblacb1", "https://tec.openplanner.team/stops/Cstmarz1"], ["https://tec.openplanner.team/stops/H4cr110a", "https://tec.openplanner.team/stops/H4wt160a"], ["https://tec.openplanner.team/stops/H4hx112b", "https://tec.openplanner.team/stops/H4hx124a"], ["https://tec.openplanner.team/stops/Bnivfdu2", "https://tec.openplanner.team/stops/Bnivn971"], ["https://tec.openplanner.team/stops/Caihai81", "https://tec.openplanner.team/stops/Crsaise1"], ["https://tec.openplanner.team/stops/X921abb", "https://tec.openplanner.team/stops/X921ada"], ["https://tec.openplanner.team/stops/LMaburg4", "https://tec.openplanner.team/stops/LMazonn4"], ["https://tec.openplanner.team/stops/Bgnvpap2", "https://tec.openplanner.team/stops/Brsrpar1"], ["https://tec.openplanner.team/stops/N210aab", "https://tec.openplanner.team/stops/X210azb"], ["https://tec.openplanner.team/stops/Lmocalv2", "https://tec.openplanner.team/stops/Lmopeup2"], ["https://tec.openplanner.team/stops/Llgbwez1", "https://tec.openplanner.team/stops/Llgcham3"], ["https://tec.openplanner.team/stops/Lgrcour2", "https://tec.openplanner.team/stops/Llgcorn3"], ["https://tec.openplanner.team/stops/LSTchef1", "https://tec.openplanner.team/stops/LSTdero1"], ["https://tec.openplanner.team/stops/LWAfabr2", "https://tec.openplanner.team/stops/LWAgare*"], ["https://tec.openplanner.team/stops/Lbrgrot1", "https://tec.openplanner.team/stops/Llgatel1"], ["https://tec.openplanner.team/stops/LTaxhos1", "https://tec.openplanner.team/stops/LTaxhos2"], ["https://tec.openplanner.team/stops/Bsmgmas1", "https://tec.openplanner.team/stops/Bsmgpon1"], ["https://tec.openplanner.team/stops/X873aba", "https://tec.openplanner.team/stops/X873acb"], ["https://tec.openplanner.team/stops/Cpibois1", "https://tec.openplanner.team/stops/Cpicite2"], ["https://tec.openplanner.team/stops/H1gq153b", "https://tec.openplanner.team/stops/H1sy145a"], ["https://tec.openplanner.team/stops/H1qu106a", "https://tec.openplanner.team/stops/H1qu107a"], ["https://tec.openplanner.team/stops/Bottppa1", "https://tec.openplanner.team/stops/Bottppa2"], ["https://tec.openplanner.team/stops/Lghcise1", "https://tec.openplanner.team/stops/Lghcise2"], ["https://tec.openplanner.team/stops/X809aeb", "https://tec.openplanner.team/stops/X858aba"], ["https://tec.openplanner.team/stops/LMNentr2", "https://tec.openplanner.team/stops/LMNpann1"], ["https://tec.openplanner.team/stops/H3br103a", "https://tec.openplanner.team/stops/H3so187b"], ["https://tec.openplanner.team/stops/H1wz171a", "https://tec.openplanner.team/stops/H2pe161b"], ["https://tec.openplanner.team/stops/LBgcroi4", "https://tec.openplanner.team/stops/LHmferm2"], ["https://tec.openplanner.team/stops/Bbwacol1", "https://tec.openplanner.team/stops/Bwavbwa2"], ["https://tec.openplanner.team/stops/LCpegli1", "https://tec.openplanner.team/stops/LSPvigi1"], ["https://tec.openplanner.team/stops/H4do108b", "https://tec.openplanner.team/stops/H4sl155a"], ["https://tec.openplanner.team/stops/H1gh150a", "https://tec.openplanner.team/stops/H1gh162c"], ["https://tec.openplanner.team/stops/H5rx126a", "https://tec.openplanner.team/stops/H5rx126b"], ["https://tec.openplanner.team/stops/Cchparc4", "https://tec.openplanner.team/stops/Cmtrneu1"], ["https://tec.openplanner.team/stops/N580aaa", "https://tec.openplanner.team/stops/N580ahb"], ["https://tec.openplanner.team/stops/LMemaza1", "https://tec.openplanner.team/stops/LMemaza2"], ["https://tec.openplanner.team/stops/X850aoa", "https://tec.openplanner.team/stops/X872aab"], ["https://tec.openplanner.team/stops/Cnapair2", "https://tec.openplanner.team/stops/N137ada"], ["https://tec.openplanner.team/stops/LScgore1", "https://tec.openplanner.team/stops/LScgore2"], ["https://tec.openplanner.team/stops/N501fdd", "https://tec.openplanner.team/stops/N501lwb"], ["https://tec.openplanner.team/stops/X651aga", "https://tec.openplanner.team/stops/X659abb"], ["https://tec.openplanner.team/stops/X757aaa", "https://tec.openplanner.team/stops/X757aga"], ["https://tec.openplanner.team/stops/H1qg138a", "https://tec.openplanner.team/stops/H1qy133a"], ["https://tec.openplanner.team/stops/Crcgmah1", "https://tec.openplanner.team/stops/NH03afb"], ["https://tec.openplanner.team/stops/LRRcarr1", "https://tec.openplanner.team/stops/LRRlimi1"], ["https://tec.openplanner.team/stops/H4ar172b", "https://tec.openplanner.team/stops/H4ho120b"], ["https://tec.openplanner.team/stops/Bnilhau1", "https://tec.openplanner.team/stops/Bnilspe1"], ["https://tec.openplanner.team/stops/X876aeb", "https://tec.openplanner.team/stops/X887aab"], ["https://tec.openplanner.team/stops/H4og209a", "https://tec.openplanner.team/stops/H4og212b"], ["https://tec.openplanner.team/stops/Cwfghis2", "https://tec.openplanner.team/stops/Cwfmonu1"], ["https://tec.openplanner.team/stops/N236ala", "https://tec.openplanner.team/stops/N236alb"], ["https://tec.openplanner.team/stops/X983aab", "https://tec.openplanner.team/stops/X983aba"], ["https://tec.openplanner.team/stops/Cctpano2", "https://tec.openplanner.team/stops/Cctvche2"], ["https://tec.openplanner.team/stops/N502aaa", "https://tec.openplanner.team/stops/N502abb"], ["https://tec.openplanner.team/stops/H4mx118a", "https://tec.openplanner.team/stops/H4mx118b"], ["https://tec.openplanner.team/stops/LhEcolo2", "https://tec.openplanner.team/stops/LWEgare1"], ["https://tec.openplanner.team/stops/LVBbvin", "https://tec.openplanner.team/stops/LVBvaux1"], ["https://tec.openplanner.team/stops/H4fr394a", "https://tec.openplanner.team/stops/H4ka176b"], ["https://tec.openplanner.team/stops/N501bna", "https://tec.openplanner.team/stops/N501bnb"], ["https://tec.openplanner.team/stops/N217aba", "https://tec.openplanner.team/stops/N261afa"], ["https://tec.openplanner.team/stops/X753abc", "https://tec.openplanner.team/stops/X753abd"], ["https://tec.openplanner.team/stops/N501ena", "https://tec.openplanner.team/stops/N501eoa"], ["https://tec.openplanner.team/stops/X825agb", "https://tec.openplanner.team/stops/X826agb"], ["https://tec.openplanner.team/stops/H1hi123b", "https://tec.openplanner.team/stops/H1hi124a"], ["https://tec.openplanner.team/stops/Lsedavy1", "https://tec.openplanner.team/stops/Lsepudd2"], ["https://tec.openplanner.team/stops/Lvimc--1", "https://tec.openplanner.team/stops/Lvitomb1"], ["https://tec.openplanner.team/stops/H4ne138b", "https://tec.openplanner.team/stops/H4te260a"], ["https://tec.openplanner.team/stops/H2ll173a", "https://tec.openplanner.team/stops/H2sv216b"], ["https://tec.openplanner.team/stops/X812ama", "https://tec.openplanner.team/stops/X812ana"], ["https://tec.openplanner.team/stops/N543bab", "https://tec.openplanner.team/stops/N543bia"], ["https://tec.openplanner.team/stops/N506afa", "https://tec.openplanner.team/stops/N506aja"], ["https://tec.openplanner.team/stops/Bclgvmo1", "https://tec.openplanner.team/stops/Bclgvmo2"], ["https://tec.openplanner.team/stops/Crebrux1", "https://tec.openplanner.team/stops/Crewaha2"], ["https://tec.openplanner.team/stops/N558ama", "https://tec.openplanner.team/stops/N558amb"], ["https://tec.openplanner.team/stops/LRObarr1", "https://tec.openplanner.team/stops/LRObarr2"], ["https://tec.openplanner.team/stops/LBssucr2", "https://tec.openplanner.team/stops/LWNcham2"], ["https://tec.openplanner.team/stops/Bhanath2", "https://tec.openplanner.team/stops/LHNecpr1"], ["https://tec.openplanner.team/stops/H2ha135c", "https://tec.openplanner.team/stops/H2tr245b"], ["https://tec.openplanner.team/stops/H1si163a", "https://tec.openplanner.team/stops/H4bo179a"], ["https://tec.openplanner.team/stops/Bohnmes4", "https://tec.openplanner.team/stops/Bohnmon1"], ["https://tec.openplanner.team/stops/LFslign1", "https://tec.openplanner.team/stops/LFslign2"], ["https://tec.openplanner.team/stops/H1ms901a", "https://tec.openplanner.team/stops/H1ms902a"], ["https://tec.openplanner.team/stops/Bwavfol1", "https://tec.openplanner.team/stops/Bwavfol2"], ["https://tec.openplanner.team/stops/H1ms267b", "https://tec.openplanner.team/stops/H1ni322b"], ["https://tec.openplanner.team/stops/Bnivaba2", "https://tec.openplanner.team/stops/Bnivrsa2"], ["https://tec.openplanner.team/stops/X879akb", "https://tec.openplanner.team/stops/X879aob"], ["https://tec.openplanner.team/stops/LHmcarr1", "https://tec.openplanner.team/stops/LHmferm2"], ["https://tec.openplanner.team/stops/Barcpre1", "https://tec.openplanner.team/stops/Bnettir1"], ["https://tec.openplanner.team/stops/H1em106b", "https://tec.openplanner.team/stops/H1em108a"], ["https://tec.openplanner.team/stops/X921alb", "https://tec.openplanner.team/stops/X925aea"], ["https://tec.openplanner.team/stops/N528awb", "https://tec.openplanner.team/stops/N542apb"], ["https://tec.openplanner.team/stops/H1sy140a", "https://tec.openplanner.team/stops/H1sy141b"], ["https://tec.openplanner.team/stops/X619aia", "https://tec.openplanner.team/stops/X619aic"], ["https://tec.openplanner.team/stops/LHUeuro1", "https://tec.openplanner.team/stops/LHUpala1"], ["https://tec.openplanner.team/stops/Brixmar3", "https://tec.openplanner.team/stops/Brixpbs1"], ["https://tec.openplanner.team/stops/N542aea", "https://tec.openplanner.team/stops/N542aja"], ["https://tec.openplanner.team/stops/H1nm138b", "https://tec.openplanner.team/stops/H1si157a"], ["https://tec.openplanner.team/stops/LFrvesd1", "https://tec.openplanner.team/stops/LFrvesd2"], ["https://tec.openplanner.team/stops/LREgar-1", "https://tec.openplanner.team/stops/LREgar-2"], ["https://tec.openplanner.team/stops/N538bba", "https://tec.openplanner.team/stops/N538bbb"], ["https://tec.openplanner.team/stops/Bbchcab1", "https://tec.openplanner.team/stops/Bbchcab2"], ["https://tec.openplanner.team/stops/Crewaba2", "https://tec.openplanner.team/stops/Crewaha1"], ["https://tec.openplanner.team/stops/X911aia", "https://tec.openplanner.team/stops/X911ana"], ["https://tec.openplanner.team/stops/X774ahb", "https://tec.openplanner.team/stops/X775aib"], ["https://tec.openplanner.team/stops/Bbiehss1", "https://tec.openplanner.team/stops/Bbiehss2"], ["https://tec.openplanner.team/stops/LGetroi1", "https://tec.openplanner.team/stops/LSIgera2"], ["https://tec.openplanner.team/stops/H2lh129b", "https://tec.openplanner.team/stops/H2mo145a"], ["https://tec.openplanner.team/stops/X925aka", "https://tec.openplanner.team/stops/X925akb"], ["https://tec.openplanner.team/stops/Bjaufca1", "https://tec.openplanner.team/stops/Bjaupro1"], ["https://tec.openplanner.team/stops/H1nm139b", "https://tec.openplanner.team/stops/H1nm140b"], ["https://tec.openplanner.team/stops/X813aab", "https://tec.openplanner.team/stops/X813acb"], ["https://tec.openplanner.team/stops/X756aba", "https://tec.openplanner.team/stops/X756acb"], ["https://tec.openplanner.team/stops/Llonaes1", "https://tec.openplanner.team/stops/Lloross1"], ["https://tec.openplanner.team/stops/H1ls109a", "https://tec.openplanner.team/stops/H1me113a"], ["https://tec.openplanner.team/stops/H4ne139a", "https://tec.openplanner.team/stops/H4ne139b"], ["https://tec.openplanner.team/stops/N426aca", "https://tec.openplanner.team/stops/N426ada"], ["https://tec.openplanner.team/stops/X823acb", "https://tec.openplanner.team/stops/X823aga"], ["https://tec.openplanner.team/stops/X955aca", "https://tec.openplanner.team/stops/X955acb"], ["https://tec.openplanner.team/stops/Bboueta1", "https://tec.openplanner.team/stops/Bcerpco2"], ["https://tec.openplanner.team/stops/X661axc", "https://tec.openplanner.team/stops/X822ala"], ["https://tec.openplanner.team/stops/N501hzc", "https://tec.openplanner.team/stops/N501inb"], ["https://tec.openplanner.team/stops/Bmrsayw1", "https://tec.openplanner.team/stops/Bmrsmco1"], ["https://tec.openplanner.team/stops/Loubiez3", "https://tec.openplanner.team/stops/Loucent2"], ["https://tec.openplanner.team/stops/Cfldand1", "https://tec.openplanner.team/stops/Cflfaub1"], ["https://tec.openplanner.team/stops/H4hu116b", "https://tec.openplanner.team/stops/H4ld130a"], ["https://tec.openplanner.team/stops/Ccodubo2", "https://tec.openplanner.team/stops/Ccovies2"], ["https://tec.openplanner.team/stops/X982bcb", "https://tec.openplanner.team/stops/X982bdb"], ["https://tec.openplanner.team/stops/X790aab", "https://tec.openplanner.team/stops/X790ana"], ["https://tec.openplanner.team/stops/LBNburg2", "https://tec.openplanner.team/stops/LeUgeme2"], ["https://tec.openplanner.team/stops/N522aha", "https://tec.openplanner.team/stops/N522ama"], ["https://tec.openplanner.team/stops/LWamass1", "https://tec.openplanner.team/stops/LWamass2"], ["https://tec.openplanner.team/stops/N308abb", "https://tec.openplanner.team/stops/N308bfb"], ["https://tec.openplanner.team/stops/LHApthe2", "https://tec.openplanner.team/stops/LHAstal2"], ["https://tec.openplanner.team/stops/X986afa", "https://tec.openplanner.team/stops/X986aia"], ["https://tec.openplanner.team/stops/Llgcrev2", "https://tec.openplanner.team/stops/Llgvelb2"], ["https://tec.openplanner.team/stops/LWazoni1", "https://tec.openplanner.team/stops/LWLhagi1"], ["https://tec.openplanner.team/stops/LBpbruy1", "https://tec.openplanner.team/stops/LBpecco2"], ["https://tec.openplanner.team/stops/Cctbois4", "https://tec.openplanner.team/stops/Ccupays2"], ["https://tec.openplanner.team/stops/X224ada", "https://tec.openplanner.team/stops/X398aha"], ["https://tec.openplanner.team/stops/X601cma", "https://tec.openplanner.team/stops/X601csb"], ["https://tec.openplanner.team/stops/X664afb", "https://tec.openplanner.team/stops/X664aga"], ["https://tec.openplanner.team/stops/Bsaupco1", "https://tec.openplanner.team/stops/Bsauvmo1"], ["https://tec.openplanner.team/stops/X788ada", "https://tec.openplanner.team/stops/X788aea"], ["https://tec.openplanner.team/stops/Clddelh1", "https://tec.openplanner.team/stops/Cldplac2"], ["https://tec.openplanner.team/stops/LmI129-1", "https://tec.openplanner.team/stops/LmI36--1"], ["https://tec.openplanner.team/stops/N209abb", "https://tec.openplanner.team/stops/N209aeb"], ["https://tec.openplanner.team/stops/Cbbcrbo2", "https://tec.openplanner.team/stops/Cbblacb1"], ["https://tec.openplanner.team/stops/Bbgerlr2", "https://tec.openplanner.team/stops/Blmldmi1"], ["https://tec.openplanner.team/stops/Bflcneu1", "https://tec.openplanner.team/stops/NR27aaa"], ["https://tec.openplanner.team/stops/H1le120a", "https://tec.openplanner.team/stops/H1le121b"], ["https://tec.openplanner.team/stops/Lemarde2", "https://tec.openplanner.team/stops/Lemhuet2"], ["https://tec.openplanner.team/stops/Bhenard2", "https://tec.openplanner.team/stops/Bhenard4"], ["https://tec.openplanner.team/stops/Bblaaca1", "https://tec.openplanner.team/stops/Bblague2"], ["https://tec.openplanner.team/stops/Ccogrha1", "https://tec.openplanner.team/stops/Cpcchau"], ["https://tec.openplanner.team/stops/LLteg--1", "https://tec.openplanner.team/stops/LLtwanz1"], ["https://tec.openplanner.team/stops/X741aic", "https://tec.openplanner.team/stops/X741anb"], ["https://tec.openplanner.team/stops/X898aga", "https://tec.openplanner.team/stops/X898agb"], ["https://tec.openplanner.team/stops/LBKmare2", "https://tec.openplanner.team/stops/LLnec--2"], ["https://tec.openplanner.team/stops/Lqbchat1", "https://tec.openplanner.team/stops/Lqbchat2"], ["https://tec.openplanner.team/stops/Btubbot1", "https://tec.openplanner.team/stops/Btubbot2"], ["https://tec.openplanner.team/stops/H4eg104b", "https://tec.openplanner.team/stops/H4eg108b"], ["https://tec.openplanner.team/stops/Cflchel3", "https://tec.openplanner.team/stops/Cflchel4"], ["https://tec.openplanner.team/stops/N501ixd", "https://tec.openplanner.team/stops/N501jdb"], ["https://tec.openplanner.team/stops/H4ho120a", "https://tec.openplanner.team/stops/H4ho120b"], ["https://tec.openplanner.team/stops/Bfelcen1", "https://tec.openplanner.team/stops/Bfelcen2"], ["https://tec.openplanner.team/stops/X758aba", "https://tec.openplanner.team/stops/X758abb"], ["https://tec.openplanner.team/stops/X813aaa", "https://tec.openplanner.team/stops/X857aba"], ["https://tec.openplanner.team/stops/Bmalwop2", "https://tec.openplanner.team/stops/Boppcen4"], ["https://tec.openplanner.team/stops/Bjod7co2", "https://tec.openplanner.team/stops/Bjodfab1"], ["https://tec.openplanner.team/stops/Llieg--2", "https://tec.openplanner.team/stops/Lvochev1"], ["https://tec.openplanner.team/stops/LSyeg--2", "https://tec.openplanner.team/stops/LTNsarl2"], ["https://tec.openplanner.team/stops/LChvill*", "https://tec.openplanner.team/stops/LSZprie1"], ["https://tec.openplanner.team/stops/LVLbovy1", "https://tec.openplanner.team/stops/LVLbovy2"], ["https://tec.openplanner.team/stops/Lselibe2", "https://tec.openplanner.team/stops/Lsevand1"], ["https://tec.openplanner.team/stops/Ldicorb2", "https://tec.openplanner.team/stops/Ldidefo1"], ["https://tec.openplanner.team/stops/H4bn174a", "https://tec.openplanner.team/stops/H4pi135b"], ["https://tec.openplanner.team/stops/Lrelier1", "https://tec.openplanner.team/stops/LSAtrih1"], ["https://tec.openplanner.team/stops/H4pe126a", "https://tec.openplanner.team/stops/H4pe128a"], ["https://tec.openplanner.team/stops/H1ms281b", "https://tec.openplanner.team/stops/H1ms309a"], ["https://tec.openplanner.team/stops/Bgliaau2", "https://tec.openplanner.team/stops/Bglicsm1"], ["https://tec.openplanner.team/stops/LHUpsar1", "https://tec.openplanner.team/stops/NL76ala"], ["https://tec.openplanner.team/stops/N579aba", "https://tec.openplanner.team/stops/N579aca"], ["https://tec.openplanner.team/stops/N501avb", "https://tec.openplanner.team/stops/N501cva"], ["https://tec.openplanner.team/stops/H1pe130a", "https://tec.openplanner.team/stops/H1pe131b"], ["https://tec.openplanner.team/stops/LCShoux2", "https://tec.openplanner.team/stops/LVTeg--1"], ["https://tec.openplanner.team/stops/LbAhenk1", "https://tec.openplanner.team/stops/LbAhull1"], ["https://tec.openplanner.team/stops/Bbealbu4", "https://tec.openplanner.team/stops/Bbealou2"], ["https://tec.openplanner.team/stops/X713aba", "https://tec.openplanner.team/stops/X713aca"], ["https://tec.openplanner.team/stops/X639aja", "https://tec.openplanner.team/stops/X639anb"], ["https://tec.openplanner.team/stops/Bchgflo1", "https://tec.openplanner.team/stops/Blontry2"], ["https://tec.openplanner.team/stops/X664ala", "https://tec.openplanner.team/stops/X664asa"], ["https://tec.openplanner.team/stops/LWOwa161", "https://tec.openplanner.team/stops/LWOwa162"], ["https://tec.openplanner.team/stops/Ctafran2", "https://tec.openplanner.team/stops/Ctaphaz1"], ["https://tec.openplanner.team/stops/Cgymara1", "https://tec.openplanner.team/stops/Cgywaut4"], ["https://tec.openplanner.team/stops/X720aab", "https://tec.openplanner.team/stops/X720adb"], ["https://tec.openplanner.team/stops/Lvochev1", "https://tec.openplanner.team/stops/Lvoplac2"], ["https://tec.openplanner.team/stops/H1as100a", "https://tec.openplanner.team/stops/H1as100b"], ["https://tec.openplanner.team/stops/Bnstver1", "https://tec.openplanner.team/stops/Bnstver2"], ["https://tec.openplanner.team/stops/LOewaut1", "https://tec.openplanner.team/stops/LOewaut2"], ["https://tec.openplanner.team/stops/LXoharz5", "https://tec.openplanner.team/stops/LXoharz6"], ["https://tec.openplanner.team/stops/H4fr142a", "https://tec.openplanner.team/stops/H4fr389a"], ["https://tec.openplanner.team/stops/LeYauss2", "https://tec.openplanner.team/stops/LeYdorf2"], ["https://tec.openplanner.team/stops/H4ty292a", "https://tec.openplanner.team/stops/H4ty330b"], ["https://tec.openplanner.team/stops/X666aba", "https://tec.openplanner.team/stops/X666aca"], ["https://tec.openplanner.team/stops/N509alb", "https://tec.openplanner.team/stops/N510adb"], ["https://tec.openplanner.team/stops/X896aab", "https://tec.openplanner.team/stops/X995adc"], ["https://tec.openplanner.team/stops/LaRkape2", "https://tec.openplanner.team/stops/LrUoudl2"], ["https://tec.openplanner.team/stops/Blhusor1", "https://tec.openplanner.team/stops/Brsrpar1"], ["https://tec.openplanner.team/stops/X633aka", "https://tec.openplanner.team/stops/X633akb"], ["https://tec.openplanner.team/stops/Bsenpeu1", "https://tec.openplanner.team/stops/Bsenpeu2"], ["https://tec.openplanner.team/stops/Bnivcol1", "https://tec.openplanner.team/stops/Bnivh%C3%B4p1"], ["https://tec.openplanner.team/stops/H1qp141b", "https://tec.openplanner.team/stops/H1qp150a"], ["https://tec.openplanner.team/stops/LmD181-2", "https://tec.openplanner.team/stops/LmDwei32"], ["https://tec.openplanner.team/stops/N501eby", "https://tec.openplanner.team/stops/N501fwa"], ["https://tec.openplanner.team/stops/Bnivhon2", "https://tec.openplanner.team/stops/Bthivil1"], ["https://tec.openplanner.team/stops/H2fy122b", "https://tec.openplanner.team/stops/H2fy123a"], ["https://tec.openplanner.team/stops/N519aha", "https://tec.openplanner.team/stops/N519ahb"], ["https://tec.openplanner.team/stops/Bgntffo1", "https://tec.openplanner.team/stops/Bgntpla1"], ["https://tec.openplanner.team/stops/N506aga", "https://tec.openplanner.team/stops/N556ada"], ["https://tec.openplanner.team/stops/Llmdavi2", "https://tec.openplanner.team/stops/Llmlaro2"], ["https://tec.openplanner.team/stops/Loubonc1", "https://tec.openplanner.team/stops/Loucorn1"], ["https://tec.openplanner.team/stops/Bovecha1", "https://tec.openplanner.team/stops/Bpecdel2"], ["https://tec.openplanner.team/stops/H1hr121d", "https://tec.openplanner.team/stops/H2pr119a"], ["https://tec.openplanner.team/stops/Bwatdco1", "https://tec.openplanner.team/stops/Bwatlbs1"], ["https://tec.openplanner.team/stops/N514aaa", "https://tec.openplanner.team/stops/N514akb"], ["https://tec.openplanner.team/stops/H4wn124a", "https://tec.openplanner.team/stops/H4wn131a"], ["https://tec.openplanner.team/stops/H5el105a", "https://tec.openplanner.team/stops/H5rx132b"], ["https://tec.openplanner.team/stops/H4fo115b", "https://tec.openplanner.team/stops/H4fo119b"], ["https://tec.openplanner.team/stops/H1fr114a", "https://tec.openplanner.team/stops/H1fr128b"], ["https://tec.openplanner.team/stops/Lmntast1", "https://tec.openplanner.team/stops/Lmntast3"], ["https://tec.openplanner.team/stops/LBHhuyn1", "https://tec.openplanner.team/stops/LBHinva2"], ["https://tec.openplanner.team/stops/H2hp123d", "https://tec.openplanner.team/stops/H2hp261b"], ["https://tec.openplanner.team/stops/Lrocort1", "https://tec.openplanner.team/stops/Lrosoxh1"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X770aaa"], ["https://tec.openplanner.team/stops/LmRkreu1", "https://tec.openplanner.team/stops/LmRkreu3"], ["https://tec.openplanner.team/stops/N165aba", "https://tec.openplanner.team/stops/N168aaa"], ["https://tec.openplanner.team/stops/N311aba", "https://tec.openplanner.team/stops/N311abb"], ["https://tec.openplanner.team/stops/X982bjb", "https://tec.openplanner.team/stops/X982bld"], ["https://tec.openplanner.team/stops/LCRecmo2", "https://tec.openplanner.team/stops/LCRfize1"], ["https://tec.openplanner.team/stops/LSPecho1", "https://tec.openplanner.team/stops/LSPgend2"], ["https://tec.openplanner.team/stops/X636ana", "https://tec.openplanner.team/stops/X648aab"], ["https://tec.openplanner.team/stops/Lcemalv2", "https://tec.openplanner.team/stops/Lgrorch2"], ["https://tec.openplanner.team/stops/LWOmart2", "https://tec.openplanner.team/stops/LWOwa162"], ["https://tec.openplanner.team/stops/Blthwav1", "https://tec.openplanner.team/stops/Blthwav4"], ["https://tec.openplanner.team/stops/X618abb", "https://tec.openplanner.team/stops/X618anb"], ["https://tec.openplanner.team/stops/H4ty314c", "https://tec.openplanner.team/stops/H4ty354b"], ["https://tec.openplanner.team/stops/LENengi1", "https://tec.openplanner.team/stops/LENengi2"], ["https://tec.openplanner.team/stops/Brixcab1", "https://tec.openplanner.team/stops/Brixpao3"], ["https://tec.openplanner.team/stops/H1mv239a", "https://tec.openplanner.team/stops/H1mv242b"], ["https://tec.openplanner.team/stops/X917ada", "https://tec.openplanner.team/stops/X917aea"], ["https://tec.openplanner.team/stops/LrDzoll4", "https://tec.openplanner.team/stops/LrEfeck1"], ["https://tec.openplanner.team/stops/X316acb", "https://tec.openplanner.team/stops/X317aaa"], ["https://tec.openplanner.team/stops/LKmdani2", "https://tec.openplanner.team/stops/LKmmelo1"], ["https://tec.openplanner.team/stops/LeUoe542", "https://tec.openplanner.team/stops/LeUwais1"], ["https://tec.openplanner.team/stops/Ltigare1", "https://tec.openplanner.team/stops/Ltipass2"], ["https://tec.openplanner.team/stops/Clrcomb1", "https://tec.openplanner.team/stops/Clrhava1"], ["https://tec.openplanner.team/stops/Cgocolo2", "https://tec.openplanner.team/stops/Cjuchli4"], ["https://tec.openplanner.team/stops/Lbrgrot2", "https://tec.openplanner.team/stops/Llgatel1"], ["https://tec.openplanner.team/stops/H1ms280a", "https://tec.openplanner.team/stops/H1ms280d"], ["https://tec.openplanner.team/stops/H4bo182a", "https://tec.openplanner.team/stops/H4og210a"], ["https://tec.openplanner.team/stops/LbOdorf2", "https://tec.openplanner.team/stops/LbOkalv2"], ["https://tec.openplanner.team/stops/Lhrdron1", "https://tec.openplanner.team/stops/Lhrmura2"], ["https://tec.openplanner.team/stops/N501aia", "https://tec.openplanner.team/stops/N501bka"], ["https://tec.openplanner.team/stops/N331acb", "https://tec.openplanner.team/stops/N331aja"], ["https://tec.openplanner.team/stops/H1hy130a", "https://tec.openplanner.team/stops/H1hy130b"], ["https://tec.openplanner.team/stops/LhRandl2", "https://tec.openplanner.team/stops/LmFdorf1"], ["https://tec.openplanner.team/stops/Ccacoup1", "https://tec.openplanner.team/stops/Cfnegli1"], ["https://tec.openplanner.team/stops/H1fr123b", "https://tec.openplanner.team/stops/H1fr128a"], ["https://tec.openplanner.team/stops/Cciferr1", "https://tec.openplanner.team/stops/Ccircar1"], ["https://tec.openplanner.team/stops/X882aba", "https://tec.openplanner.team/stops/X882ama"], ["https://tec.openplanner.team/stops/LHcaube1", "https://tec.openplanner.team/stops/LJAmari1"], ["https://tec.openplanner.team/stops/NL78aja", "https://tec.openplanner.team/stops/NL78ajb"], ["https://tec.openplanner.team/stops/H1bb117b", "https://tec.openplanner.team/stops/H1bb119b"], ["https://tec.openplanner.team/stops/N553ada", "https://tec.openplanner.team/stops/N553alb"], ["https://tec.openplanner.team/stops/X942abd", "https://tec.openplanner.team/stops/X942adb"], ["https://tec.openplanner.team/stops/Cmtpblo2", "https://tec.openplanner.team/stops/Cmtprey2"], ["https://tec.openplanner.team/stops/H1er113a", "https://tec.openplanner.team/stops/H1er113b"], ["https://tec.openplanner.team/stops/H1gr113b", "https://tec.openplanner.team/stops/H1gr115b"], ["https://tec.openplanner.team/stops/N138aga", "https://tec.openplanner.team/stops/N423abb"], ["https://tec.openplanner.team/stops/H4pp123b", "https://tec.openplanner.team/stops/H4qu230c"], ["https://tec.openplanner.team/stops/LeUcamp2", "https://tec.openplanner.team/stops/LMedoum1"], ["https://tec.openplanner.team/stops/H4ty341a", "https://tec.openplanner.team/stops/H4ty350b"], ["https://tec.openplanner.team/stops/Brixble5", "https://tec.openplanner.team/stops/Brixcab1"], ["https://tec.openplanner.team/stops/X725aub", "https://tec.openplanner.team/stops/X725avb"], ["https://tec.openplanner.team/stops/LMOm48-1", "https://tec.openplanner.team/stops/LMOpiss2"], ["https://tec.openplanner.team/stops/H4ca120a", "https://tec.openplanner.team/stops/H4ca120b"], ["https://tec.openplanner.team/stops/Bwavcui1", "https://tec.openplanner.team/stops/Bwavtas4"], ["https://tec.openplanner.team/stops/X818ajb", "https://tec.openplanner.team/stops/X818akb"], ["https://tec.openplanner.team/stops/Lheaaz-2", "https://tec.openplanner.team/stops/LHSvina2"], ["https://tec.openplanner.team/stops/LeUcamp1", "https://tec.openplanner.team/stops/LMedoum1"], ["https://tec.openplanner.team/stops/N311aab", "https://tec.openplanner.team/stops/N311adb"], ["https://tec.openplanner.team/stops/X921aia", "https://tec.openplanner.team/stops/X921aib"], ["https://tec.openplanner.team/stops/Cvstouv1", "https://tec.openplanner.team/stops/Cvstouv2"], ["https://tec.openplanner.team/stops/H3br102a", "https://tec.openplanner.team/stops/H3br107b"], ["https://tec.openplanner.team/stops/N562bib", "https://tec.openplanner.team/stops/N562bla"], ["https://tec.openplanner.team/stops/N517aaa", "https://tec.openplanner.team/stops/N517afb"], ["https://tec.openplanner.team/stops/H2fy122a", "https://tec.openplanner.team/stops/H2lh131b"], ["https://tec.openplanner.team/stops/N501gga", "https://tec.openplanner.team/stops/N501lqb"], ["https://tec.openplanner.team/stops/N501cmd", "https://tec.openplanner.team/stops/N501ehb"], ["https://tec.openplanner.team/stops/LHUdeni4", "https://tec.openplanner.team/stops/LHUgodi2"], ["https://tec.openplanner.team/stops/LDOanes1", "https://tec.openplanner.team/stops/LDOchev1"], ["https://tec.openplanner.team/stops/N555aba", "https://tec.openplanner.team/stops/N573aca"], ["https://tec.openplanner.team/stops/H1au100a", "https://tec.openplanner.team/stops/H1au103a"], ["https://tec.openplanner.team/stops/N118ada", "https://tec.openplanner.team/stops/N118alb"], ["https://tec.openplanner.team/stops/H1hw123b", "https://tec.openplanner.team/stops/H1so136c"], ["https://tec.openplanner.team/stops/N501hca", "https://tec.openplanner.team/stops/N501hcb"], ["https://tec.openplanner.team/stops/LBichat1", "https://tec.openplanner.team/stops/LBivi--2"], ["https://tec.openplanner.team/stops/Bhvlbet1", "https://tec.openplanner.team/stops/Bhvlpla1"], ["https://tec.openplanner.team/stops/N519adb", "https://tec.openplanner.team/stops/N519ala"], ["https://tec.openplanner.team/stops/LCOcarr1", "https://tec.openplanner.team/stops/LCOcarr2"], ["https://tec.openplanner.team/stops/LHaxhor1", "https://tec.openplanner.team/stops/X982aha"], ["https://tec.openplanner.team/stops/Bbst4br2", "https://tec.openplanner.team/stops/Bbst4br3"], ["https://tec.openplanner.team/stops/LTRpeec2", "https://tec.openplanner.team/stops/LTRpery1"], ["https://tec.openplanner.team/stops/LMIgare1", "https://tec.openplanner.team/stops/LMIpast2"], ["https://tec.openplanner.team/stops/N543bbc", "https://tec.openplanner.team/stops/N554acb"], ["https://tec.openplanner.team/stops/LPbeg--1", "https://tec.openplanner.team/stops/LPbusin1"], ["https://tec.openplanner.team/stops/LnUcamp1", "https://tec.openplanner.team/stops/LnUcamp2"], ["https://tec.openplanner.team/stops/N529aja", "https://tec.openplanner.team/stops/N529akb"], ["https://tec.openplanner.team/stops/LoDmuhl1", "https://tec.openplanner.team/stops/LoDulf-2"], ["https://tec.openplanner.team/stops/Llginte2", "https://tec.openplanner.team/stops/Llglill2"], ["https://tec.openplanner.team/stops/LaAlinz2", "https://tec.openplanner.team/stops/LkOaugu2"], ["https://tec.openplanner.team/stops/N519acb", "https://tec.openplanner.team/stops/N519aga"], ["https://tec.openplanner.team/stops/X904aeb", "https://tec.openplanner.team/stops/X904ana"], ["https://tec.openplanner.team/stops/H1ha193b", "https://tec.openplanner.team/stops/H1ms270a"], ["https://tec.openplanner.team/stops/LPLroth1", "https://tec.openplanner.team/stops/LRRcole1"], ["https://tec.openplanner.team/stops/LMOelva2", "https://tec.openplanner.team/stops/LMOmome1"], ["https://tec.openplanner.team/stops/Canbruy2", "https://tec.openplanner.team/stops/Canmonu5"], ["https://tec.openplanner.team/stops/H5pe126b", "https://tec.openplanner.team/stops/H5pe147b"], ["https://tec.openplanner.team/stops/LSPcomm1", "https://tec.openplanner.team/stops/LSProya2"], ["https://tec.openplanner.team/stops/H1ls105b", "https://tec.openplanner.team/stops/H1mc126b"], ["https://tec.openplanner.team/stops/N505akb", "https://tec.openplanner.team/stops/N511aib"], ["https://tec.openplanner.team/stops/X637aca", "https://tec.openplanner.team/stops/X637aqb"], ["https://tec.openplanner.team/stops/Bjanegl3", "https://tec.openplanner.team/stops/Bjaurgo1"], ["https://tec.openplanner.team/stops/LBoegli2", "https://tec.openplanner.team/stops/LBQmaye2"], ["https://tec.openplanner.team/stops/Bborcro1", "https://tec.openplanner.team/stops/Bfelpmo1"], ["https://tec.openplanner.team/stops/LHOmc--2", "https://tec.openplanner.team/stops/LSRbouh1"], ["https://tec.openplanner.team/stops/N509aca", "https://tec.openplanner.team/stops/N509afb"], ["https://tec.openplanner.team/stops/X696afa", "https://tec.openplanner.team/stops/X696aga"], ["https://tec.openplanner.team/stops/LSTdero1", "https://tec.openplanner.team/stops/LSTdero2"], ["https://tec.openplanner.team/stops/LCSgend1", "https://tec.openplanner.team/stops/LCSpoud1"], ["https://tec.openplanner.team/stops/X811abb", "https://tec.openplanner.team/stops/X811aqb"], ["https://tec.openplanner.team/stops/Lbhgare2", "https://tec.openplanner.team/stops/Lromerl1"], ["https://tec.openplanner.team/stops/H5bl117b", "https://tec.openplanner.team/stops/H5bl117c"], ["https://tec.openplanner.team/stops/LESpont1", "https://tec.openplanner.team/stops/LESpont4"], ["https://tec.openplanner.team/stops/X636agb", "https://tec.openplanner.team/stops/X636aib"], ["https://tec.openplanner.team/stops/Cdaptca1", "https://tec.openplanner.team/stops/Cdaptca2"], ["https://tec.openplanner.team/stops/N549aaa", "https://tec.openplanner.team/stops/N549aca"], ["https://tec.openplanner.team/stops/H5at124a", "https://tec.openplanner.team/stops/H5at137b"], ["https://tec.openplanner.team/stops/Broneco1", "https://tec.openplanner.team/stops/Bvirflu1"], ["https://tec.openplanner.team/stops/X979aaa", "https://tec.openplanner.team/stops/X979ahb"], ["https://tec.openplanner.team/stops/X925aja", "https://tec.openplanner.team/stops/X926aaa"], ["https://tec.openplanner.team/stops/LJueg--1", "https://tec.openplanner.team/stops/LJuhaie1"], ["https://tec.openplanner.team/stops/NL76ajb", "https://tec.openplanner.team/stops/NL77ajb"], ["https://tec.openplanner.team/stops/X602aib", "https://tec.openplanner.team/stops/X602ajb"], ["https://tec.openplanner.team/stops/X897aab", "https://tec.openplanner.team/stops/X898aha"], ["https://tec.openplanner.team/stops/N501esa", "https://tec.openplanner.team/stops/X501esb"], ["https://tec.openplanner.team/stops/H4ty318b", "https://tec.openplanner.team/stops/H4ty321a"], ["https://tec.openplanner.team/stops/X713aja", "https://tec.openplanner.team/stops/X713ajb"], ["https://tec.openplanner.team/stops/H1mj128a", "https://tec.openplanner.team/stops/H1mj128b"], ["https://tec.openplanner.team/stops/Bmoucoq1", "https://tec.openplanner.team/stops/Bottrfa4"], ["https://tec.openplanner.team/stops/Lantonn1", "https://tec.openplanner.team/stops/Lantonn2"], ["https://tec.openplanner.team/stops/Cmlpche1", "https://tec.openplanner.team/stops/Cmlpomm1"], ["https://tec.openplanner.team/stops/N505aja", "https://tec.openplanner.team/stops/N505ajb"], ["https://tec.openplanner.team/stops/LSGcolo2", "https://tec.openplanner.team/stops/LSkchwa2"], ["https://tec.openplanner.team/stops/LCtcref1", "https://tec.openplanner.team/stops/X780aca"], ["https://tec.openplanner.team/stops/N209aca", "https://tec.openplanner.team/stops/N209ada"], ["https://tec.openplanner.team/stops/X782afa", "https://tec.openplanner.team/stops/X782aga"], ["https://tec.openplanner.team/stops/X718aab", "https://tec.openplanner.team/stops/X718aka"], ["https://tec.openplanner.team/stops/X650adb", "https://tec.openplanner.team/stops/X650aib"], ["https://tec.openplanner.team/stops/H4mo154a", "https://tec.openplanner.team/stops/H4mo163a"], ["https://tec.openplanner.team/stops/NH01aia", "https://tec.openplanner.team/stops/NH01aoa"], ["https://tec.openplanner.team/stops/Cjudest1", "https://tec.openplanner.team/stops/Cjudest4"], ["https://tec.openplanner.team/stops/Ljhmany2", "https://tec.openplanner.team/stops/LPobois2"], ["https://tec.openplanner.team/stops/Cthcrom2", "https://tec.openplanner.team/stops/Cthpibl1"], ["https://tec.openplanner.team/stops/X724afa", "https://tec.openplanner.team/stops/X724aia"], ["https://tec.openplanner.team/stops/N534bpa", "https://tec.openplanner.team/stops/N553aoa"], ["https://tec.openplanner.team/stops/Cauushm2", "https://tec.openplanner.team/stops/Cauwauq2"], ["https://tec.openplanner.team/stops/X657aia", "https://tec.openplanner.team/stops/X657amb"], ["https://tec.openplanner.team/stops/X826ada", "https://tec.openplanner.team/stops/X826aha"], ["https://tec.openplanner.team/stops/N501etb", "https://tec.openplanner.team/stops/N501etz"], ["https://tec.openplanner.team/stops/X662arb", "https://tec.openplanner.team/stops/X662atb"], ["https://tec.openplanner.team/stops/Lcefoxh1", "https://tec.openplanner.team/stops/Lcesart1"], ["https://tec.openplanner.team/stops/H2ma208a", "https://tec.openplanner.team/stops/H2ma265a"], ["https://tec.openplanner.team/stops/H2fa103a", "https://tec.openplanner.team/stops/H2mg135a"], ["https://tec.openplanner.team/stops/H1hy125a", "https://tec.openplanner.team/stops/H1hy126a"], ["https://tec.openplanner.team/stops/Llgdepo2", "https://tec.openplanner.team/stops/Llgdepo6"], ["https://tec.openplanner.team/stops/LFLcent2", "https://tec.openplanner.team/stops/LFLcher1"], ["https://tec.openplanner.team/stops/LbOkalv1", "https://tec.openplanner.team/stops/LbOkalv2"], ["https://tec.openplanner.team/stops/Ccifies2", "https://tec.openplanner.team/stops/Clvimtr2"], ["https://tec.openplanner.team/stops/Bcbqcoi1", "https://tec.openplanner.team/stops/Bcbqcoi2"], ["https://tec.openplanner.team/stops/X923ala", "https://tec.openplanner.team/stops/X923aqb"], ["https://tec.openplanner.team/stops/LLxcite1", "https://tec.openplanner.team/stops/LMgberw2"], ["https://tec.openplanner.team/stops/Ccpbrun2", "https://tec.openplanner.team/stops/Ccppn2"], ["https://tec.openplanner.team/stops/LmHschm1", "https://tec.openplanner.team/stops/LmHschm2"], ["https://tec.openplanner.team/stops/N530aea", "https://tec.openplanner.team/stops/N530afa"], ["https://tec.openplanner.team/stops/Lsecoll1", "https://tec.openplanner.team/stops/Lsecoll2"], ["https://tec.openplanner.team/stops/NC44aha", "https://tec.openplanner.team/stops/NC44ahb"], ["https://tec.openplanner.team/stops/LGecite1", "https://tec.openplanner.team/stops/LGevygh2"], ["https://tec.openplanner.team/stops/X757ahb", "https://tec.openplanner.team/stops/X757ana"], ["https://tec.openplanner.team/stops/H4bs110b", "https://tec.openplanner.team/stops/H4bs112a"], ["https://tec.openplanner.team/stops/Llonaes2", "https://tec.openplanner.team/stops/Lloretr2"], ["https://tec.openplanner.team/stops/H4qu230a", "https://tec.openplanner.team/stops/H4qu230c"], ["https://tec.openplanner.team/stops/LENoule1", "https://tec.openplanner.team/stops/LENtour1"], ["https://tec.openplanner.team/stops/Llgcbat1", "https://tec.openplanner.team/stops/Llgjasm2"], ["https://tec.openplanner.team/stops/Lfhhaso2", "https://tec.openplanner.team/stops/Lfh-sci1"], ["https://tec.openplanner.team/stops/H4ff118a", "https://tec.openplanner.team/stops/H4ff120b"], ["https://tec.openplanner.team/stops/Llgauxc2", "https://tec.openplanner.team/stops/Llgborg2"], ["https://tec.openplanner.team/stops/N579abb", "https://tec.openplanner.team/stops/N580agb"], ["https://tec.openplanner.team/stops/Lghfors1", "https://tec.openplanner.team/stops/Lghneuv1"], ["https://tec.openplanner.team/stops/Bmarchn1", "https://tec.openplanner.team/stops/Bmarlor2"], ["https://tec.openplanner.team/stops/N219aea", "https://tec.openplanner.team/stops/N219aeb"], ["https://tec.openplanner.team/stops/X985adb", "https://tec.openplanner.team/stops/X985aeb"], ["https://tec.openplanner.team/stops/Beclpla1", "https://tec.openplanner.team/stops/H2ec102a"], ["https://tec.openplanner.team/stops/N152aaf", "https://tec.openplanner.team/stops/N152ade"], ["https://tec.openplanner.team/stops/N243aeb", "https://tec.openplanner.team/stops/N252abb"], ["https://tec.openplanner.team/stops/LCF2spa1", "https://tec.openplanner.team/stops/LCFmoul2"], ["https://tec.openplanner.team/stops/H1fr107e", "https://tec.openplanner.team/stops/H1fr123a"], ["https://tec.openplanner.team/stops/Cciqueu1", "https://tec.openplanner.team/stops/NC02ava"], ["https://tec.openplanner.team/stops/H1ha182b", "https://tec.openplanner.team/stops/H1ha188a"], ["https://tec.openplanner.team/stops/LWOcomm2", "https://tec.openplanner.team/stops/LWOunio2"], ["https://tec.openplanner.team/stops/H1hv131b", "https://tec.openplanner.team/stops/H1hv135b"], ["https://tec.openplanner.team/stops/LBRpt--1", "https://tec.openplanner.team/stops/LBRruel2"], ["https://tec.openplanner.team/stops/N323aca", "https://tec.openplanner.team/stops/N323acb"], ["https://tec.openplanner.team/stops/H4ga169a", "https://tec.openplanner.team/stops/H4ga169b"], ["https://tec.openplanner.team/stops/N241aea", "https://tec.openplanner.team/stops/N241afa"], ["https://tec.openplanner.team/stops/X615azb", "https://tec.openplanner.team/stops/X616ajb"], ["https://tec.openplanner.team/stops/N163aba", "https://tec.openplanner.team/stops/N569anb"], ["https://tec.openplanner.team/stops/LGObeth2", "https://tec.openplanner.team/stops/LGOmous1"], ["https://tec.openplanner.team/stops/N236ada", "https://tec.openplanner.team/stops/N236aeb"], ["https://tec.openplanner.team/stops/Bgnvfai2", "https://tec.openplanner.team/stops/Bgnvtil2"], ["https://tec.openplanner.team/stops/N501irb", "https://tec.openplanner.team/stops/N501isa"], ["https://tec.openplanner.team/stops/X638arb", "https://tec.openplanner.team/stops/X639aab"], ["https://tec.openplanner.team/stops/Btlbegl1", "https://tec.openplanner.team/stops/Btlbegl3"], ["https://tec.openplanner.team/stops/N580abb", "https://tec.openplanner.team/stops/N580aea"], ["https://tec.openplanner.team/stops/H1er111b", "https://tec.openplanner.team/stops/H1er113a"], ["https://tec.openplanner.team/stops/Bcbqrog2", "https://tec.openplanner.team/stops/Bcbqtub2"], ["https://tec.openplanner.team/stops/N201aeb", "https://tec.openplanner.team/stops/N201aef"], ["https://tec.openplanner.team/stops/N515ana", "https://tec.openplanner.team/stops/N515ata"], ["https://tec.openplanner.team/stops/LCSfagn2", "https://tec.openplanner.team/stops/LCSpoud4"], ["https://tec.openplanner.team/stops/H4mx114a", "https://tec.openplanner.team/stops/H4po128b"], ["https://tec.openplanner.team/stops/Cjudaxi2", "https://tec.openplanner.team/stops/Cralimi2"], ["https://tec.openplanner.team/stops/Cptccas1", "https://tec.openplanner.team/stops/Cptchea1"], ["https://tec.openplanner.team/stops/LBLgobc2", "https://tec.openplanner.team/stops/LCEboll2"], ["https://tec.openplanner.team/stops/NL76bca", "https://tec.openplanner.team/stops/NL77aha"], ["https://tec.openplanner.team/stops/LSlbail2", "https://tec.openplanner.team/stops/X919aab"], ["https://tec.openplanner.team/stops/Blthvil1", "https://tec.openplanner.team/stops/Bmlngvi2"], ["https://tec.openplanner.team/stops/Lglsana1", "https://tec.openplanner.team/stops/Lglvand1"], ["https://tec.openplanner.team/stops/Creespi1", "https://tec.openplanner.team/stops/Crewaha2"], ["https://tec.openplanner.team/stops/LTicime2", "https://tec.openplanner.team/stops/LTiforg2"], ["https://tec.openplanner.team/stops/N232asb", "https://tec.openplanner.team/stops/N291aca"], ["https://tec.openplanner.team/stops/N543anh", "https://tec.openplanner.team/stops/N543aoa"], ["https://tec.openplanner.team/stops/X652aea", "https://tec.openplanner.team/stops/X652aeb"], ["https://tec.openplanner.team/stops/LHCandr2", "https://tec.openplanner.team/stops/LHCcroy1"], ["https://tec.openplanner.team/stops/H5qu150a", "https://tec.openplanner.team/stops/H5qu150b"], ["https://tec.openplanner.team/stops/X638ahb", "https://tec.openplanner.team/stops/X638aib"], ["https://tec.openplanner.team/stops/H1au102a", "https://tec.openplanner.team/stops/H1au103a"], ["https://tec.openplanner.team/stops/Bglarha1", "https://tec.openplanner.team/stops/Bgnppra1"], ["https://tec.openplanner.team/stops/X938aab", "https://tec.openplanner.team/stops/X938abb"], ["https://tec.openplanner.team/stops/X658aca", "https://tec.openplanner.team/stops/X659aib"], ["https://tec.openplanner.team/stops/H4ru244b", "https://tec.openplanner.team/stops/H4wc374b"], ["https://tec.openplanner.team/stops/H4my121a", "https://tec.openplanner.team/stops/H4my121b"], ["https://tec.openplanner.team/stops/LAYfoot1", "https://tec.openplanner.team/stops/LMvrabo1"], ["https://tec.openplanner.team/stops/X870aeb", "https://tec.openplanner.team/stops/X880agb"], ["https://tec.openplanner.team/stops/NH01agd", "https://tec.openplanner.team/stops/NH01alb"], ["https://tec.openplanner.team/stops/LeYgros1", "https://tec.openplanner.team/stops/LeYmuhl1"], ["https://tec.openplanner.team/stops/H1ms301a", "https://tec.openplanner.team/stops/H1ms360a"], ["https://tec.openplanner.team/stops/N533aga", "https://tec.openplanner.team/stops/N533amb"], ["https://tec.openplanner.team/stops/LBRgend1", "https://tec.openplanner.team/stops/LBRpt--2"], ["https://tec.openplanner.team/stops/N351afb", "https://tec.openplanner.team/stops/N351ahb"], ["https://tec.openplanner.team/stops/N501hlx", "https://tec.openplanner.team/stops/N501nda"], ["https://tec.openplanner.team/stops/X811afa", "https://tec.openplanner.team/stops/X811afb"], ["https://tec.openplanner.team/stops/LMHmeha1", "https://tec.openplanner.team/stops/LWNcime1"], ["https://tec.openplanner.team/stops/Bvirflu2", "https://tec.openplanner.team/stops/Bvirfpo1"], ["https://tec.openplanner.team/stops/H4lz124b", "https://tec.openplanner.team/stops/H4lz127a"], ["https://tec.openplanner.team/stops/Bbeascl2", "https://tec.openplanner.team/stops/Bmlnbpr2"], ["https://tec.openplanner.team/stops/LTHroch2", "https://tec.openplanner.team/stops/LTHwaux1"], ["https://tec.openplanner.team/stops/N516ahb", "https://tec.openplanner.team/stops/N516ana"], ["https://tec.openplanner.team/stops/N311ada", "https://tec.openplanner.team/stops/N311adb"], ["https://tec.openplanner.team/stops/Bwatjbo1", "https://tec.openplanner.team/stops/Bwatjbo2"], ["https://tec.openplanner.team/stops/H1bl102a", "https://tec.openplanner.team/stops/H1eq116a"], ["https://tec.openplanner.team/stops/X804bfa", "https://tec.openplanner.team/stops/X804bfb"], ["https://tec.openplanner.team/stops/LENmc--1", "https://tec.openplanner.team/stops/LENmc--2"], ["https://tec.openplanner.team/stops/LSG172-1", "https://tec.openplanner.team/stops/LSG172-2"], ["https://tec.openplanner.team/stops/H1ms257a", "https://tec.openplanner.team/stops/H1ss349a"], ["https://tec.openplanner.team/stops/Lhuchev2", "https://tec.openplanner.team/stops/Lhuferm2"], ["https://tec.openplanner.team/stops/LTOcime1", "https://tec.openplanner.team/stops/LTOeg--1"], ["https://tec.openplanner.team/stops/Bbea3he1", "https://tec.openplanner.team/stops/Bbea3he2"], ["https://tec.openplanner.team/stops/LJU51--1", "https://tec.openplanner.team/stops/LJUfort1"], ["https://tec.openplanner.team/stops/H4mx118b", "https://tec.openplanner.team/stops/H4mx119a"], ["https://tec.openplanner.team/stops/Cjudest3", "https://tec.openplanner.team/stops/Clooues1"], ["https://tec.openplanner.team/stops/LClsacr2", "https://tec.openplanner.team/stops/LELeg--2"], ["https://tec.openplanner.team/stops/Llgstev1", "https://tec.openplanner.team/stops/Llgstev2"], ["https://tec.openplanner.team/stops/Becepco2", "https://tec.openplanner.team/stops/Becesbo1"], ["https://tec.openplanner.team/stops/LHecime2", "https://tec.openplanner.team/stops/LHSheur2"], ["https://tec.openplanner.team/stops/Bborche2", "https://tec.openplanner.team/stops/Bnivfhu1"], ["https://tec.openplanner.team/stops/Lmnhorl1", "https://tec.openplanner.team/stops/Lsmstad2"], ["https://tec.openplanner.team/stops/H4rk101a", "https://tec.openplanner.team/stops/H4tg162a"], ["https://tec.openplanner.team/stops/H1je219a", "https://tec.openplanner.team/stops/H1je221b"], ["https://tec.openplanner.team/stops/Bgzddge4", "https://tec.openplanner.team/stops/Bgzddur1"], ["https://tec.openplanner.team/stops/X717agd", "https://tec.openplanner.team/stops/X781adb"], ["https://tec.openplanner.team/stops/X595acb", "https://tec.openplanner.team/stops/X713anb"], ["https://tec.openplanner.team/stops/H4lz125a", "https://tec.openplanner.team/stops/H4lz162b"], ["https://tec.openplanner.team/stops/LOLcroi2", "https://tec.openplanner.team/stops/LOLvill1"], ["https://tec.openplanner.team/stops/Bblatet1", "https://tec.openplanner.team/stops/Bbsivi11"], ["https://tec.openplanner.team/stops/LLVerri1", "https://tec.openplanner.team/stops/X561aaa"], ["https://tec.openplanner.team/stops/N510acb", "https://tec.openplanner.team/stops/N510acf"], ["https://tec.openplanner.team/stops/X812aca", "https://tec.openplanner.team/stops/X812agb"], ["https://tec.openplanner.team/stops/N507aad", "https://tec.openplanner.team/stops/NL68aga"], ["https://tec.openplanner.team/stops/Cgyobse2", "https://tec.openplanner.team/stops/Cgyplst2"], ["https://tec.openplanner.team/stops/N534aub", "https://tec.openplanner.team/stops/N534bwb"], ["https://tec.openplanner.team/stops/LXocomb1", "https://tec.openplanner.team/stops/LXocomb2"], ["https://tec.openplanner.team/stops/N584baa", "https://tec.openplanner.team/stops/N584boa"], ["https://tec.openplanner.team/stops/LeUolen1", "https://tec.openplanner.team/stops/LeUrote2"], ["https://tec.openplanner.team/stops/X626ada", "https://tec.openplanner.team/stops/X626ala"], ["https://tec.openplanner.team/stops/LFacruc1", "https://tec.openplanner.team/stops/LVMfoli2"], ["https://tec.openplanner.team/stops/Cgofleu2", "https://tec.openplanner.team/stops/CMleop2"], ["https://tec.openplanner.team/stops/LkEgds-1", "https://tec.openplanner.team/stops/LkEheyg2"], ["https://tec.openplanner.team/stops/LHCauwe4", "https://tec.openplanner.team/stops/LHCponc3"], ["https://tec.openplanner.team/stops/X889aaa", "https://tec.openplanner.team/stops/X889aba"], ["https://tec.openplanner.team/stops/X615aqa", "https://tec.openplanner.team/stops/X615atb"], ["https://tec.openplanner.team/stops/LFLcher1", "https://tec.openplanner.team/stops/LFLcher2"], ["https://tec.openplanner.team/stops/LCeterm1", "https://tec.openplanner.team/stops/LLWchat1"], ["https://tec.openplanner.team/stops/LFFeg--1", "https://tec.openplanner.team/stops/LFFmagr1"], ["https://tec.openplanner.team/stops/Cbtstac2", "https://tec.openplanner.team/stops/Cgnbast1"], ["https://tec.openplanner.team/stops/H4wc373a", "https://tec.openplanner.team/stops/H4wc374a"], ["https://tec.openplanner.team/stops/LHUaron1", "https://tec.openplanner.team/stops/LHUlieg1"], ["https://tec.openplanner.team/stops/N106aea", "https://tec.openplanner.team/stops/N137ahb"], ["https://tec.openplanner.team/stops/H4av106c", "https://tec.openplanner.team/stops/H4cr111b"], ["https://tec.openplanner.team/stops/Ccuoise1", "https://tec.openplanner.team/stops/Ccuoise2"], ["https://tec.openplanner.team/stops/N547amb", "https://tec.openplanner.team/stops/N553aqa"], ["https://tec.openplanner.team/stops/LGMdrev2", "https://tec.openplanner.team/stops/LTRespe2"], ["https://tec.openplanner.team/stops/H4ca120b", "https://tec.openplanner.team/stops/H4wi162a"], ["https://tec.openplanner.team/stops/N501gsa", "https://tec.openplanner.team/stops/N501gza"], ["https://tec.openplanner.team/stops/LWAipes1", "https://tec.openplanner.team/stops/LWAloui2"], ["https://tec.openplanner.team/stops/H4fr141b", "https://tec.openplanner.team/stops/H4ma417a"], ["https://tec.openplanner.team/stops/Cvpsncb1", "https://tec.openplanner.team/stops/Cvpsthu1"], ["https://tec.openplanner.team/stops/H1bi101a", "https://tec.openplanner.team/stops/H1bu143a"], ["https://tec.openplanner.team/stops/LVEbors2", "https://tec.openplanner.team/stops/LVEcacq2"], ["https://tec.openplanner.team/stops/Broneco2", "https://tec.openplanner.team/stops/Bronrch2"], ["https://tec.openplanner.team/stops/Lmapomm1", "https://tec.openplanner.team/stops/LPRbayb1"], ["https://tec.openplanner.team/stops/X665aba", "https://tec.openplanner.team/stops/X666aba"], ["https://tec.openplanner.team/stops/X948ajb", "https://tec.openplanner.team/stops/X948ara"], ["https://tec.openplanner.team/stops/LbOvith1", "https://tec.openplanner.team/stops/LnErech2"], ["https://tec.openplanner.team/stops/N548awa", "https://tec.openplanner.team/stops/N571aca"], ["https://tec.openplanner.team/stops/N137ajb", "https://tec.openplanner.team/stops/N161aea"], ["https://tec.openplanner.team/stops/X860aaa", "https://tec.openplanner.team/stops/X860aba"], ["https://tec.openplanner.team/stops/H4ty310a", "https://tec.openplanner.team/stops/H4ty324a"], ["https://tec.openplanner.team/stops/N501hsy", "https://tec.openplanner.team/stops/N501nba"], ["https://tec.openplanner.team/stops/Lhrmemo2", "https://tec.openplanner.team/stops/Lvtlimi1"], ["https://tec.openplanner.team/stops/N539apa", "https://tec.openplanner.team/stops/N539bca"], ["https://tec.openplanner.team/stops/N167aeb", "https://tec.openplanner.team/stops/N167aha"], ["https://tec.openplanner.team/stops/X886aca", "https://tec.openplanner.team/stops/X886adb"], ["https://tec.openplanner.team/stops/X801aga", "https://tec.openplanner.team/stops/X801aha"], ["https://tec.openplanner.team/stops/N229aib", "https://tec.openplanner.team/stops/N231aba"], ["https://tec.openplanner.team/stops/LTrmort1", "https://tec.openplanner.team/stops/LTrmort2"], ["https://tec.openplanner.team/stops/X780aeb", "https://tec.openplanner.team/stops/X780afa"], ["https://tec.openplanner.team/stops/LkEhaag2", "https://tec.openplanner.team/stops/LkEkric1"], ["https://tec.openplanner.team/stops/X891aaa", "https://tec.openplanner.team/stops/X891aab"], ["https://tec.openplanner.team/stops/N548afb", "https://tec.openplanner.team/stops/N569ala"], ["https://tec.openplanner.team/stops/N244apa", "https://tec.openplanner.team/stops/N244apb"], ["https://tec.openplanner.team/stops/Brsgfso1", "https://tec.openplanner.team/stops/Brsgfso2"], ["https://tec.openplanner.team/stops/Caih1631", "https://tec.openplanner.team/stops/Ctaphaz1"], ["https://tec.openplanner.team/stops/LBQmaye1", "https://tec.openplanner.team/stops/LBQmaye2"], ["https://tec.openplanner.team/stops/N534bkh", "https://tec.openplanner.team/stops/N534bmb"], ["https://tec.openplanner.team/stops/LOVchen1", "https://tec.openplanner.team/stops/LOVhetr2"], ["https://tec.openplanner.team/stops/LLWcarr2", "https://tec.openplanner.team/stops/LVBdela1"], ["https://tec.openplanner.team/stops/X721alb", "https://tec.openplanner.team/stops/X721anb"], ["https://tec.openplanner.team/stops/LBIvill1", "https://tec.openplanner.team/stops/LBIvill3"], ["https://tec.openplanner.team/stops/H1mm125a", "https://tec.openplanner.team/stops/H1mm132b"], ["https://tec.openplanner.team/stops/H4ae100a", "https://tec.openplanner.team/stops/H4ef109a"], ["https://tec.openplanner.team/stops/LJveg--1", "https://tec.openplanner.team/stops/X576acb"], ["https://tec.openplanner.team/stops/N514afb", "https://tec.openplanner.team/stops/N514aga"], ["https://tec.openplanner.team/stops/LmDhoch3", "https://tec.openplanner.team/stops/LmDhoch4"], ["https://tec.openplanner.team/stops/X982bja", "https://tec.openplanner.team/stops/X982bua"], ["https://tec.openplanner.team/stops/X725aob", "https://tec.openplanner.team/stops/X725bgb"], ["https://tec.openplanner.team/stops/N542acb", "https://tec.openplanner.team/stops/N542ala"], ["https://tec.openplanner.team/stops/X938abb", "https://tec.openplanner.team/stops/X939afb"], ["https://tec.openplanner.team/stops/Cmamons1", "https://tec.openplanner.team/stops/Cmasncb1"], ["https://tec.openplanner.team/stops/X615ana", "https://tec.openplanner.team/stops/X615anb"], ["https://tec.openplanner.team/stops/Crefont2", "https://tec.openplanner.team/stops/Creha761"], ["https://tec.openplanner.team/stops/Cchhopi1", "https://tec.openplanner.team/stops/Cchvhau2"], ["https://tec.openplanner.team/stops/LPUmer-1", "https://tec.openplanner.team/stops/LPUmer-2"], ["https://tec.openplanner.team/stops/N167add", "https://tec.openplanner.team/stops/N167ahb"], ["https://tec.openplanner.team/stops/X869adb", "https://tec.openplanner.team/stops/X870ajb"], ["https://tec.openplanner.team/stops/H4mo204b", "https://tec.openplanner.team/stops/H4mo205b"], ["https://tec.openplanner.team/stops/Cpthaud2", "https://tec.openplanner.team/stops/Cptrebe2"], ["https://tec.openplanner.team/stops/X638aca", "https://tec.openplanner.team/stops/X638afb"], ["https://tec.openplanner.team/stops/Bhlvgar2", "https://tec.openplanner.team/stops/Blpgcmo1"], ["https://tec.openplanner.team/stops/Bblaadm1", "https://tec.openplanner.team/stops/Bblajap1"], ["https://tec.openplanner.team/stops/LmHdrei1", "https://tec.openplanner.team/stops/LmHdrei2"], ["https://tec.openplanner.team/stops/X653aaa", "https://tec.openplanner.team/stops/X667abb"], ["https://tec.openplanner.team/stops/N506aca", "https://tec.openplanner.team/stops/N506aqb"], ["https://tec.openplanner.team/stops/LPLphar1", "https://tec.openplanner.team/stops/LPLruis2"], ["https://tec.openplanner.team/stops/H2hg265a", "https://tec.openplanner.team/stops/H2hg270a"], ["https://tec.openplanner.team/stops/Bmrspel2", "https://tec.openplanner.team/stops/Bmrswag1"], ["https://tec.openplanner.team/stops/Bnivhon1", "https://tec.openplanner.team/stops/Bnivpgr2"], ["https://tec.openplanner.team/stops/N548agb", "https://tec.openplanner.team/stops/N548aia"], ["https://tec.openplanner.team/stops/N533ana", "https://tec.openplanner.team/stops/N533apb"], ["https://tec.openplanner.team/stops/Lvcdumo1", "https://tec.openplanner.team/stops/Lvcdumo2"], ["https://tec.openplanner.team/stops/H1hg180a", "https://tec.openplanner.team/stops/H1hg180b"], ["https://tec.openplanner.team/stops/Bgnpegl2", "https://tec.openplanner.team/stops/Bgnpegl3"], ["https://tec.openplanner.team/stops/N580afa", "https://tec.openplanner.team/stops/N580afb"], ["https://tec.openplanner.team/stops/X601abb", "https://tec.openplanner.team/stops/X601adb"], ["https://tec.openplanner.team/stops/LVIgare1", "https://tec.openplanner.team/stops/LVIgare2"], ["https://tec.openplanner.team/stops/Barchoc1", "https://tec.openplanner.team/stops/Bnettou1"], ["https://tec.openplanner.team/stops/X660acb", "https://tec.openplanner.team/stops/X660aea"], ["https://tec.openplanner.team/stops/N584bpa", "https://tec.openplanner.team/stops/N584bqb"], ["https://tec.openplanner.team/stops/N155aja", "https://tec.openplanner.team/stops/N160acb"], ["https://tec.openplanner.team/stops/Bchgbar1", "https://tec.openplanner.team/stops/Bchgqve1"], ["https://tec.openplanner.team/stops/N501axb", "https://tec.openplanner.team/stops/N501cdc"], ["https://tec.openplanner.team/stops/Cgrchea1", "https://tec.openplanner.team/stops/Cgrlorm2"], ["https://tec.openplanner.team/stops/Bnivfhu2", "https://tec.openplanner.team/stops/Bnivzon1"], ["https://tec.openplanner.team/stops/Bblagar7", "https://tec.openplanner.team/stops/Bblapje2"], ["https://tec.openplanner.team/stops/Beclron1", "https://tec.openplanner.team/stops/Bhptegl2"], ["https://tec.openplanner.team/stops/LCFcafe1", "https://tec.openplanner.team/stops/LCFmoul1"], ["https://tec.openplanner.team/stops/Ldilyce*", "https://tec.openplanner.team/stops/Lprorem2"], ["https://tec.openplanner.team/stops/Bcrbcel1", "https://tec.openplanner.team/stops/Bmsggra2"], ["https://tec.openplanner.team/stops/LCRfavr1", "https://tec.openplanner.team/stops/LCRfize2"], ["https://tec.openplanner.team/stops/N538aza", "https://tec.openplanner.team/stops/N539ayb"], ["https://tec.openplanner.team/stops/Lmocail2", "https://tec.openplanner.team/stops/Lsnpaqu2"], ["https://tec.openplanner.team/stops/Cbcha652", "https://tec.openplanner.team/stops/Cbckios2"], ["https://tec.openplanner.team/stops/LSGmall1", "https://tec.openplanner.team/stops/LSGsurf1"], ["https://tec.openplanner.team/stops/LTPabat1", "https://tec.openplanner.team/stops/LTPhenr1"], ["https://tec.openplanner.team/stops/N501aua", "https://tec.openplanner.team/stops/N501exa"], ["https://tec.openplanner.team/stops/LTNcarr4", "https://tec.openplanner.team/stops/LTNmont1"], ["https://tec.openplanner.team/stops/Bbcocvb1", "https://tec.openplanner.team/stops/Bhenrcr1"], ["https://tec.openplanner.team/stops/Blpgeco1", "https://tec.openplanner.team/stops/Blpgvil1"], ["https://tec.openplanner.team/stops/H4jm117b", "https://tec.openplanner.team/stops/H4jm117c"], ["https://tec.openplanner.team/stops/LHHecol2", "https://tec.openplanner.team/stops/LHHindu2"], ["https://tec.openplanner.team/stops/H4ff117b", "https://tec.openplanner.team/stops/H4ff121a"], ["https://tec.openplanner.team/stops/X789aaa", "https://tec.openplanner.team/stops/X789ajb"], ["https://tec.openplanner.team/stops/Llgerac2", "https://tec.openplanner.team/stops/Llglaur1"], ["https://tec.openplanner.team/stops/LOTmonu1", "https://tec.openplanner.team/stops/LOTtong1"], ["https://tec.openplanner.team/stops/H1he101a", "https://tec.openplanner.team/stops/H1he107a"], ["https://tec.openplanner.team/stops/X908amb", "https://tec.openplanner.team/stops/X908anb"], ["https://tec.openplanner.team/stops/Cmlipsm2", "https://tec.openplanner.team/stops/Cmlpche2"], ["https://tec.openplanner.team/stops/X921agb", "https://tec.openplanner.team/stops/X921akb"], ["https://tec.openplanner.team/stops/LJEchat4", "https://tec.openplanner.team/stops/LJEerno1"], ["https://tec.openplanner.team/stops/LWElanc1", "https://tec.openplanner.team/stops/LWElanc2"], ["https://tec.openplanner.team/stops/Bwatrsg1", "https://tec.openplanner.team/stops/Bwatrsg2"], ["https://tec.openplanner.team/stops/Cfohopi2", "https://tec.openplanner.team/stops/Cfovent1"], ["https://tec.openplanner.team/stops/Bbiecim1", "https://tec.openplanner.team/stops/Bbiecim2"], ["https://tec.openplanner.team/stops/Lhrathe2", "https://tec.openplanner.team/stops/Lhrpepi2"], ["https://tec.openplanner.team/stops/LrOkirc2", "https://tec.openplanner.team/stops/LrOn14-1"], ["https://tec.openplanner.team/stops/N312aaa", "https://tec.openplanner.team/stops/X892ajb"], ["https://tec.openplanner.team/stops/N117abb", "https://tec.openplanner.team/stops/N117ajb"], ["https://tec.openplanner.team/stops/N343aca", "https://tec.openplanner.team/stops/N343acb"], ["https://tec.openplanner.team/stops/H2tr247a", "https://tec.openplanner.team/stops/H2tr254a"], ["https://tec.openplanner.team/stops/LTgchar8", "https://tec.openplanner.team/stops/LTgcime2"], ["https://tec.openplanner.team/stops/Cgy4bra2", "https://tec.openplanner.team/stops/Cgymetr2"], ["https://tec.openplanner.team/stops/Cfocobe2", "https://tec.openplanner.team/stops/Cfosurs2"], ["https://tec.openplanner.team/stops/Llgcham6", "https://tec.openplanner.team/stops/Llgdouf1"], ["https://tec.openplanner.team/stops/Bjodint1", "https://tec.openplanner.team/stops/Bjodint2"], ["https://tec.openplanner.team/stops/H4he106b", "https://tec.openplanner.team/stops/H4ob124b"], ["https://tec.openplanner.team/stops/H4ty291c", "https://tec.openplanner.team/stops/H4ty310a"], ["https://tec.openplanner.team/stops/X608aga", "https://tec.openplanner.team/stops/X608ahb"], ["https://tec.openplanner.team/stops/Cragoss1", "https://tec.openplanner.team/stops/Cralimi2"], ["https://tec.openplanner.team/stops/X801aqb", "https://tec.openplanner.team/stops/X801ckb"], ["https://tec.openplanner.team/stops/H1cd111a", "https://tec.openplanner.team/stops/H1cd112a"], ["https://tec.openplanner.team/stops/N543bia", "https://tec.openplanner.team/stops/N543cpa"], ["https://tec.openplanner.team/stops/Bspkdon1", "https://tec.openplanner.team/stops/Bspkdon2"], ["https://tec.openplanner.team/stops/N308apa", "https://tec.openplanner.team/stops/N308bcb"], ["https://tec.openplanner.team/stops/X636ayb", "https://tec.openplanner.team/stops/X636aza"], ["https://tec.openplanner.team/stops/H4wi164a", "https://tec.openplanner.team/stops/H4wi164b"], ["https://tec.openplanner.team/stops/LBscasi2", "https://tec.openplanner.team/stops/NL72aab"], ["https://tec.openplanner.team/stops/NL57adc", "https://tec.openplanner.team/stops/NL57aha"], ["https://tec.openplanner.team/stops/Bgliopp2", "https://tec.openplanner.team/stops/Bgliopp3"], ["https://tec.openplanner.team/stops/H2an103b", "https://tec.openplanner.team/stops/H2an109b"], ["https://tec.openplanner.team/stops/N568aab", "https://tec.openplanner.team/stops/N568aeb"], ["https://tec.openplanner.team/stops/Llgjenn2", "https://tec.openplanner.team/stops/Llgsorb2"], ["https://tec.openplanner.team/stops/N343ada", "https://tec.openplanner.team/stops/X344aea"], ["https://tec.openplanner.team/stops/Bsomwav1", "https://tec.openplanner.team/stops/N584avb"], ["https://tec.openplanner.team/stops/H4au100a", "https://tec.openplanner.team/stops/H4au100b"], ["https://tec.openplanner.team/stops/H4li179d", "https://tec.openplanner.team/stops/H4mb202a"], ["https://tec.openplanner.team/stops/Crcegli2", "https://tec.openplanner.team/stops/Crcegli3"], ["https://tec.openplanner.team/stops/X721apb", "https://tec.openplanner.team/stops/X721ata"], ["https://tec.openplanner.team/stops/N501dha", "https://tec.openplanner.team/stops/N501jta"], ["https://tec.openplanner.team/stops/Cgyhaie2", "https://tec.openplanner.team/stops/Cgymest2"], ["https://tec.openplanner.team/stops/LFypfei2", "https://tec.openplanner.team/stops/LsHlenz2"], ["https://tec.openplanner.team/stops/LkTraer1", "https://tec.openplanner.team/stops/LrAbe601"], ["https://tec.openplanner.team/stops/H3so173a", "https://tec.openplanner.team/stops/H3so184b"], ["https://tec.openplanner.team/stops/N562aya", "https://tec.openplanner.team/stops/N562bfa"], ["https://tec.openplanner.team/stops/X637aab", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/Bwavche1", "https://tec.openplanner.team/stops/Bwavlca1"], ["https://tec.openplanner.team/stops/LAMcoll2", "https://tec.openplanner.team/stops/LAMjeha1"], ["https://tec.openplanner.team/stops/N141aaa", "https://tec.openplanner.team/stops/N141apb"], ["https://tec.openplanner.team/stops/X949ama", "https://tec.openplanner.team/stops/X949amb"], ["https://tec.openplanner.team/stops/H5at128a", "https://tec.openplanner.team/stops/H5ma185a"], ["https://tec.openplanner.team/stops/Chpplac1", "https://tec.openplanner.team/stops/Cwxplac2"], ["https://tec.openplanner.team/stops/LOLfoss1", "https://tec.openplanner.team/stops/LOLfoss2"], ["https://tec.openplanner.team/stops/N134aab", "https://tec.openplanner.team/stops/N134aac"], ["https://tec.openplanner.team/stops/X636aab", "https://tec.openplanner.team/stops/X636apa"], ["https://tec.openplanner.team/stops/X790afa", "https://tec.openplanner.team/stops/X790aib"], ["https://tec.openplanner.team/stops/H1gi120a", "https://tec.openplanner.team/stops/H1gi120d"], ["https://tec.openplanner.team/stops/Cmocime2", "https://tec.openplanner.team/stops/Cmogtri1"], ["https://tec.openplanner.team/stops/Cfrmon4", "https://tec.openplanner.team/stops/Cfrsour1"], ["https://tec.openplanner.team/stops/N214aca", "https://tec.openplanner.team/stops/N214aeb"], ["https://tec.openplanner.team/stops/LTPgare*", "https://tec.openplanner.team/stops/LTPpisc2"], ["https://tec.openplanner.team/stops/N539axa", "https://tec.openplanner.team/stops/N539axb"], ["https://tec.openplanner.team/stops/Lprsher2", "https://tec.openplanner.team/stops/Lprspra2"], ["https://tec.openplanner.team/stops/Lmihale2", "https://tec.openplanner.team/stops/Lmitroi2"], ["https://tec.openplanner.team/stops/Ljubrec1", "https://tec.openplanner.team/stops/Ljubrec3"], ["https://tec.openplanner.team/stops/LSMec--1", "https://tec.openplanner.team/stops/LSMec--2"], ["https://tec.openplanner.team/stops/X602apa", "https://tec.openplanner.team/stops/X602apb"], ["https://tec.openplanner.team/stops/N547aib", "https://tec.openplanner.team/stops/N548awb"], ["https://tec.openplanner.team/stops/N232asb", "https://tec.openplanner.team/stops/N232caa"], ["https://tec.openplanner.team/stops/H2hp124c", "https://tec.openplanner.team/stops/H2hp262b"], ["https://tec.openplanner.team/stops/X752aca", "https://tec.openplanner.team/stops/X752acb"], ["https://tec.openplanner.team/stops/H2re165a", "https://tec.openplanner.team/stops/H2re165b"], ["https://tec.openplanner.team/stops/H4bu109b", "https://tec.openplanner.team/stops/H4fa167a"], ["https://tec.openplanner.team/stops/Blinbru2", "https://tec.openplanner.team/stops/Brach121"], ["https://tec.openplanner.team/stops/H1cd110a", "https://tec.openplanner.team/stops/H1ne148a"], ["https://tec.openplanner.team/stops/H4ma204b", "https://tec.openplanner.team/stops/H4oq229b"], ["https://tec.openplanner.team/stops/LHUmari2", "https://tec.openplanner.team/stops/LHUtfal1"], ["https://tec.openplanner.team/stops/Lhrdeme3", "https://tec.openplanner.team/stops/Lhrstev1"], ["https://tec.openplanner.team/stops/X663aqb", "https://tec.openplanner.team/stops/X663aqc"], ["https://tec.openplanner.team/stops/Bwbfgar2", "https://tec.openplanner.team/stops/Bwbfhip1"], ["https://tec.openplanner.team/stops/H4mv189b", "https://tec.openplanner.team/stops/H4mv189c"], ["https://tec.openplanner.team/stops/N230aia", "https://tec.openplanner.team/stops/N230aib"], ["https://tec.openplanner.team/stops/H2ll180b", "https://tec.openplanner.team/stops/H2sv259a"], ["https://tec.openplanner.team/stops/LFFcouv1", "https://tec.openplanner.team/stops/LFFmonu2"], ["https://tec.openplanner.team/stops/H4mx117b", "https://tec.openplanner.team/stops/H4po127b"], ["https://tec.openplanner.team/stops/X804aqa", "https://tec.openplanner.team/stops/X804aza"], ["https://tec.openplanner.team/stops/Bdoncen2", "https://tec.openplanner.team/stops/Bgligli1"], ["https://tec.openplanner.team/stops/Cmopn4", "https://tec.openplanner.team/stops/Cmopn6"], ["https://tec.openplanner.team/stops/Bbaldot1", "https://tec.openplanner.team/stops/N584ama"], ["https://tec.openplanner.team/stops/X790aib", "https://tec.openplanner.team/stops/X790alb"], ["https://tec.openplanner.team/stops/N501kea", "https://tec.openplanner.team/stops/N501kga"], ["https://tec.openplanner.team/stops/Bquegob1", "https://tec.openplanner.team/stops/Bquegob4"], ["https://tec.openplanner.team/stops/H2hg154e", "https://tec.openplanner.team/stops/H3lr108a"], ["https://tec.openplanner.team/stops/Ladneuv1", "https://tec.openplanner.team/stops/Ladwooz1"], ["https://tec.openplanner.team/stops/X824aia", "https://tec.openplanner.team/stops/X824alb"], ["https://tec.openplanner.team/stops/X650akb", "https://tec.openplanner.team/stops/X650amb"], ["https://tec.openplanner.team/stops/LHocroi2", "https://tec.openplanner.team/stops/LJedonc4"], ["https://tec.openplanner.team/stops/Cfnegli1", "https://tec.openplanner.team/stops/N162adb"], ["https://tec.openplanner.team/stops/X771ada", "https://tec.openplanner.team/stops/X771aeb"], ["https://tec.openplanner.team/stops/LWDhous1", "https://tec.openplanner.team/stops/LWDsott3"], ["https://tec.openplanner.team/stops/N501aob", "https://tec.openplanner.team/stops/N501fjd"], ["https://tec.openplanner.team/stops/H4ry132a", "https://tec.openplanner.team/stops/H4ry132b"], ["https://tec.openplanner.team/stops/N232bya", "https://tec.openplanner.team/stops/N232bzb"], ["https://tec.openplanner.team/stops/Blineco1", "https://tec.openplanner.team/stops/Blineco2"], ["https://tec.openplanner.team/stops/Cwfaldi1", "https://tec.openplanner.team/stops/Cwfaldi2"], ["https://tec.openplanner.team/stops/Cjualed1", "https://tec.openplanner.team/stops/Cjuloos2"], ["https://tec.openplanner.team/stops/X982cbb", "https://tec.openplanner.team/stops/X986aha"], ["https://tec.openplanner.team/stops/LLOnand2", "https://tec.openplanner.team/stops/LTatult3"], ["https://tec.openplanner.team/stops/H4mo172a", "https://tec.openplanner.team/stops/H4mo208a"], ["https://tec.openplanner.team/stops/X750aaa", "https://tec.openplanner.team/stops/X750aka"], ["https://tec.openplanner.team/stops/H4oq225a", "https://tec.openplanner.team/stops/H4oq409b"], ["https://tec.openplanner.team/stops/LlOdrei1", "https://tec.openplanner.team/stops/LwSbrei2"], ["https://tec.openplanner.team/stops/H4pq116a", "https://tec.openplanner.team/stops/H4pq118a"], ["https://tec.openplanner.team/stops/N509ana", "https://tec.openplanner.team/stops/N510aab"], ["https://tec.openplanner.team/stops/X663ahc", "https://tec.openplanner.team/stops/X663ahd"], ["https://tec.openplanner.team/stops/Ldimont1", "https://tec.openplanner.team/stops/Ldineuf1"], ["https://tec.openplanner.team/stops/LbTathe1", "https://tec.openplanner.team/stops/LbTkreu4"], ["https://tec.openplanner.team/stops/Lbococh1", "https://tec.openplanner.team/stops/Lbotige1"], ["https://tec.openplanner.team/stops/H1hn205a", "https://tec.openplanner.team/stops/H1hn205b"], ["https://tec.openplanner.team/stops/Lmojans1", "https://tec.openplanner.team/stops/Lmopech2"], ["https://tec.openplanner.team/stops/Bbaltba1", "https://tec.openplanner.team/stops/N561aea"], ["https://tec.openplanner.team/stops/N118anc", "https://tec.openplanner.team/stops/N118apa"], ["https://tec.openplanner.team/stops/LeUnopr1", "https://tec.openplanner.team/stops/LeUrote1"], ["https://tec.openplanner.team/stops/LkEneus2", "https://tec.openplanner.team/stops/LkEsada2"], ["https://tec.openplanner.team/stops/N220acb", "https://tec.openplanner.team/stops/N220ada"], ["https://tec.openplanner.team/stops/X985abb", "https://tec.openplanner.team/stops/X985acb"], ["https://tec.openplanner.team/stops/NL74acb", "https://tec.openplanner.team/stops/NL74aia"], ["https://tec.openplanner.team/stops/LmHbahn1", "https://tec.openplanner.team/stops/LmHvenn1"], ["https://tec.openplanner.team/stops/Bwaveur2", "https://tec.openplanner.team/stops/Bwavtpi2"], ["https://tec.openplanner.team/stops/X614aab", "https://tec.openplanner.team/stops/X614aja"], ["https://tec.openplanner.team/stops/H2ha135b", "https://tec.openplanner.team/stops/H2tr245a"], ["https://tec.openplanner.team/stops/N521acb", "https://tec.openplanner.team/stops/N523aaa"], ["https://tec.openplanner.team/stops/LBPboir2", "https://tec.openplanner.team/stops/LBPrueg1"], ["https://tec.openplanner.team/stops/N534bnh", "https://tec.openplanner.team/stops/N534bog"], ["https://tec.openplanner.team/stops/X780ahb", "https://tec.openplanner.team/stops/X780ata"], ["https://tec.openplanner.team/stops/H3bi101b", "https://tec.openplanner.team/stops/H3bi119b"], ["https://tec.openplanner.team/stops/X925aga", "https://tec.openplanner.team/stops/X925aoa"], ["https://tec.openplanner.team/stops/Canplal2", "https://tec.openplanner.team/stops/H2an111b"], ["https://tec.openplanner.team/stops/N561aia", "https://tec.openplanner.team/stops/N584aqb"], ["https://tec.openplanner.team/stops/Ladloup2", "https://tec.openplanner.team/stops/Lvevert2"], ["https://tec.openplanner.team/stops/H1so142b", "https://tec.openplanner.team/stops/H1so142d"], ["https://tec.openplanner.team/stops/X658aab", "https://tec.openplanner.team/stops/X658abb"], ["https://tec.openplanner.team/stops/X639aaa", "https://tec.openplanner.team/stops/X639aba"], ["https://tec.openplanner.team/stops/X907aha", "https://tec.openplanner.team/stops/X907aia"], ["https://tec.openplanner.team/stops/N511arb", "https://tec.openplanner.team/stops/N511ata"], ["https://tec.openplanner.team/stops/Lsecast1", "https://tec.openplanner.team/stops/Lseresi1"], ["https://tec.openplanner.team/stops/X620adb", "https://tec.openplanner.team/stops/X621aab"], ["https://tec.openplanner.team/stops/N533amb", "https://tec.openplanner.team/stops/N533amc"], ["https://tec.openplanner.team/stops/LLbcafe2", "https://tec.openplanner.team/stops/LrErauw2"], ["https://tec.openplanner.team/stops/X788aba", "https://tec.openplanner.team/stops/X788abd"], ["https://tec.openplanner.team/stops/N548afb", "https://tec.openplanner.team/stops/N571afa"], ["https://tec.openplanner.team/stops/N543bgc", "https://tec.openplanner.team/stops/N543bgd"], ["https://tec.openplanner.team/stops/Btstbes2", "https://tec.openplanner.team/stops/N524ala"], ["https://tec.openplanner.team/stops/N529aka", "https://tec.openplanner.team/stops/N529akb"], ["https://tec.openplanner.team/stops/LTEcamp2", "https://tec.openplanner.team/stops/LTEnuro2"], ["https://tec.openplanner.team/stops/N534blg", "https://tec.openplanner.team/stops/N534bua"], ["https://tec.openplanner.team/stops/LoDcorn1", "https://tec.openplanner.team/stops/LoDulf-1"], ["https://tec.openplanner.team/stops/X612aaa", "https://tec.openplanner.team/stops/X612aea"], ["https://tec.openplanner.team/stops/H4ta124a", "https://tec.openplanner.team/stops/H4ta124b"], ["https://tec.openplanner.team/stops/LFebas-1", "https://tec.openplanner.team/stops/LSReg--2"], ["https://tec.openplanner.team/stops/H4lu126a", "https://tec.openplanner.team/stops/H4mo193b"], ["https://tec.openplanner.team/stops/X601dbb", "https://tec.openplanner.team/stops/X612afb"], ["https://tec.openplanner.team/stops/X659add", "https://tec.openplanner.team/stops/X659ava"], ["https://tec.openplanner.team/stops/N561aga", "https://tec.openplanner.team/stops/N561aia"], ["https://tec.openplanner.team/stops/N501hda", "https://tec.openplanner.team/stops/N501hdb"], ["https://tec.openplanner.team/stops/X639asa", "https://tec.openplanner.team/stops/X639asb"], ["https://tec.openplanner.team/stops/Caujonc2", "https://tec.openplanner.team/stops/N543ang"], ["https://tec.openplanner.team/stops/N121aca", "https://tec.openplanner.team/stops/N121aea"], ["https://tec.openplanner.team/stops/N512aia", "https://tec.openplanner.team/stops/N512aid"], ["https://tec.openplanner.team/stops/N383aaa", "https://tec.openplanner.team/stops/N383aab"], ["https://tec.openplanner.team/stops/N232afb", "https://tec.openplanner.team/stops/N232aga"], ["https://tec.openplanner.team/stops/H4mo174a", "https://tec.openplanner.team/stops/H4mo181d"], ["https://tec.openplanner.team/stops/N205abb", "https://tec.openplanner.team/stops/N205ada"], ["https://tec.openplanner.team/stops/X663akb", "https://tec.openplanner.team/stops/X663alb"], ["https://tec.openplanner.team/stops/H2ll197a", "https://tec.openplanner.team/stops/H2ll197b"], ["https://tec.openplanner.team/stops/Ccoconf2", "https://tec.openplanner.team/stops/Ccocorb1"], ["https://tec.openplanner.team/stops/H1en104d", "https://tec.openplanner.team/stops/H1en105a"], ["https://tec.openplanner.team/stops/Cmymarb2", "https://tec.openplanner.team/stops/Cmyronc2"], ["https://tec.openplanner.team/stops/LeIjoha1", "https://tec.openplanner.team/stops/LeIkreu4"], ["https://tec.openplanner.team/stops/N512acb", "https://tec.openplanner.team/stops/N512agd"], ["https://tec.openplanner.team/stops/LCaalou2", "https://tec.openplanner.team/stops/LCacoop1"], ["https://tec.openplanner.team/stops/LHUremy1", "https://tec.openplanner.team/stops/NL80ahb"], ["https://tec.openplanner.team/stops/Cchmont2", "https://tec.openplanner.team/stops/Cchrmon1"], ["https://tec.openplanner.team/stops/X721aga", "https://tec.openplanner.team/stops/X721ahb"], ["https://tec.openplanner.team/stops/X342aca", "https://tec.openplanner.team/stops/X342ada"], ["https://tec.openplanner.team/stops/Lmabott1", "https://tec.openplanner.team/stops/Lmaelhe2"], ["https://tec.openplanner.team/stops/LAwfans2", "https://tec.openplanner.team/stops/LHrchat1"], ["https://tec.openplanner.team/stops/X779abb", "https://tec.openplanner.team/stops/X779aib"], ["https://tec.openplanner.team/stops/Lflsana1", "https://tec.openplanner.team/stops/Lropass1"], ["https://tec.openplanner.team/stops/H4ta129b", "https://tec.openplanner.team/stops/H4ta130b"], ["https://tec.openplanner.team/stops/N351akc", "https://tec.openplanner.team/stops/N351asb"], ["https://tec.openplanner.team/stops/H1br132b", "https://tec.openplanner.team/stops/H1ev113b"], ["https://tec.openplanner.team/stops/LOmpont1", "https://tec.openplanner.team/stops/LOmpont2"], ["https://tec.openplanner.team/stops/Ccubric1", "https://tec.openplanner.team/stops/Ccupays1"], ["https://tec.openplanner.team/stops/Cgualno2", "https://tec.openplanner.team/stops/Ctybaco2"], ["https://tec.openplanner.team/stops/X653aba", "https://tec.openplanner.team/stops/X653aca"], ["https://tec.openplanner.team/stops/Btubbot1", "https://tec.openplanner.team/stops/Btubpir1"], ["https://tec.openplanner.team/stops/Llggrav1", "https://tec.openplanner.team/stops/Llgstap2"], ["https://tec.openplanner.team/stops/Bcrbast1", "https://tec.openplanner.team/stops/Bcrbhir1"], ["https://tec.openplanner.team/stops/Bmlngvi1", "https://tec.openplanner.team/stops/Bmlngvi2"], ["https://tec.openplanner.team/stops/Cgdberl2", "https://tec.openplanner.team/stops/H1mb125a"], ["https://tec.openplanner.team/stops/X363aca", "https://tec.openplanner.team/stops/X363acb"], ["https://tec.openplanner.team/stops/H5el101a", "https://tec.openplanner.team/stops/H5rx131a"], ["https://tec.openplanner.team/stops/H4he107b", "https://tec.openplanner.team/stops/H4wg121a"], ["https://tec.openplanner.team/stops/X939afa", "https://tec.openplanner.team/stops/X939afb"], ["https://tec.openplanner.team/stops/LHueg--2", "https://tec.openplanner.team/stops/LHupont2"], ["https://tec.openplanner.team/stops/Cvscomb1", "https://tec.openplanner.team/stops/N530ahb"], ["https://tec.openplanner.team/stops/H2ep145a", "https://tec.openplanner.team/stops/H3bi113b"], ["https://tec.openplanner.team/stops/X633abb", "https://tec.openplanner.team/stops/X633aca"], ["https://tec.openplanner.team/stops/LVBvill2", "https://tec.openplanner.team/stops/LWDchpl1"], ["https://tec.openplanner.team/stops/LWAchpg1", "https://tec.openplanner.team/stops/LWAmouh2"], ["https://tec.openplanner.team/stops/Cpclarm2", "https://tec.openplanner.team/stops/Cpclibe3"], ["https://tec.openplanner.team/stops/Bbeagae2", "https://tec.openplanner.team/stops/Bsrgm102"], ["https://tec.openplanner.team/stops/Btstche1", "https://tec.openplanner.team/stops/Btstche2"], ["https://tec.openplanner.team/stops/LCRabbe1", "https://tec.openplanner.team/stops/LCRchpl2"], ["https://tec.openplanner.team/stops/H5ar104a", "https://tec.openplanner.team/stops/H5me106a"], ["https://tec.openplanner.team/stops/LeYberl1", "https://tec.openplanner.team/stops/LeYberl2"], ["https://tec.openplanner.team/stops/Cgylami1", "https://tec.openplanner.team/stops/Cjulamb1"], ["https://tec.openplanner.team/stops/Bboupde2", "https://tec.openplanner.team/stops/Bsmgmas1"], ["https://tec.openplanner.team/stops/Bbonbcr1", "https://tec.openplanner.team/stops/Bbonegl1"], ["https://tec.openplanner.team/stops/X788adb", "https://tec.openplanner.team/stops/X788aea"], ["https://tec.openplanner.team/stops/Lrcauto2", "https://tec.openplanner.team/stops/Lrctec-1"], ["https://tec.openplanner.team/stops/LmI129-2", "https://tec.openplanner.team/stops/LmI36--1"], ["https://tec.openplanner.team/stops/LATcorn2", "https://tec.openplanner.team/stops/LATpatu2"], ["https://tec.openplanner.team/stops/X626afb", "https://tec.openplanner.team/stops/X663aca"], ["https://tec.openplanner.team/stops/Bneecha3", "https://tec.openplanner.team/stops/Bneeegl2"], ["https://tec.openplanner.team/stops/Loubiez1", "https://tec.openplanner.team/stops/Loubiez2"], ["https://tec.openplanner.team/stops/X657aeb", "https://tec.openplanner.team/stops/X658aeb"], ["https://tec.openplanner.team/stops/H4ff120a", "https://tec.openplanner.team/stops/H4ff120b"], ["https://tec.openplanner.team/stops/X358aea", "https://tec.openplanner.team/stops/X358aeb"], ["https://tec.openplanner.team/stops/LHrparc1", "https://tec.openplanner.team/stops/LHrprie1"], ["https://tec.openplanner.team/stops/N221aba", "https://tec.openplanner.team/stops/X394aga"], ["https://tec.openplanner.team/stops/N579ada", "https://tec.openplanner.team/stops/N579adb"], ["https://tec.openplanner.team/stops/X781aba", "https://tec.openplanner.team/stops/X781aha"], ["https://tec.openplanner.team/stops/LGe4bra1", "https://tec.openplanner.team/stops/LGepeck2"], ["https://tec.openplanner.team/stops/N511ana", "https://tec.openplanner.team/stops/N511arb"], ["https://tec.openplanner.team/stops/LSPpomp1", "https://tec.openplanner.team/stops/LSPpomp2"], ["https://tec.openplanner.team/stops/LCxbeau1", "https://tec.openplanner.team/stops/LHEpriv2"], ["https://tec.openplanner.team/stops/X858ada", "https://tec.openplanner.team/stops/X858ahb"], ["https://tec.openplanner.team/stops/LrEochs1", "https://tec.openplanner.team/stops/LrEochs2"], ["https://tec.openplanner.team/stops/LHTboul2", "https://tec.openplanner.team/stops/LHTeg--5"], ["https://tec.openplanner.team/stops/X615aya", "https://tec.openplanner.team/stops/X615bgb"], ["https://tec.openplanner.team/stops/Ldidefo2", "https://tec.openplanner.team/stops/Ldihusq2"], ["https://tec.openplanner.team/stops/N132ada", "https://tec.openplanner.team/stops/N138aja"], ["https://tec.openplanner.team/stops/LHcaube1", "https://tec.openplanner.team/stops/LHceg--1"], ["https://tec.openplanner.team/stops/Lghflot3", "https://tec.openplanner.team/stops/Lghwall2"], ["https://tec.openplanner.team/stops/Lpegole2", "https://tec.openplanner.team/stops/LWegdry2"], ["https://tec.openplanner.team/stops/N512aka", "https://tec.openplanner.team/stops/N512ara"], ["https://tec.openplanner.team/stops/H1ls105a", "https://tec.openplanner.team/stops/H1ls106b"], ["https://tec.openplanner.team/stops/H1gn148b", "https://tec.openplanner.team/stops/H1gn151a"], ["https://tec.openplanner.team/stops/H2fy120d", "https://tec.openplanner.team/stops/H2mg142b"], ["https://tec.openplanner.team/stops/LNEbo472", "https://tec.openplanner.team/stops/LSNfays2"], ["https://tec.openplanner.team/stops/Lfhchaf4", "https://tec.openplanner.team/stops/Lfhgare2"], ["https://tec.openplanner.team/stops/N150aab", "https://tec.openplanner.team/stops/N150abb"], ["https://tec.openplanner.team/stops/Cgzhour3", "https://tec.openplanner.team/stops/Cgzoctr2"], ["https://tec.openplanner.team/stops/Bmrleco3", "https://tec.openplanner.team/stops/Bmrlnce1"], ["https://tec.openplanner.team/stops/N562bhb", "https://tec.openplanner.team/stops/N562bjb"], ["https://tec.openplanner.team/stops/Lhrbell1", "https://tec.openplanner.team/stops/Lhrmare1"], ["https://tec.openplanner.team/stops/N509aab", "https://tec.openplanner.team/stops/N513bib"], ["https://tec.openplanner.team/stops/Btubdeh2", "https://tec.openplanner.team/stops/Btubnav2"], ["https://tec.openplanner.team/stops/Cauwauq1", "https://tec.openplanner.team/stops/N534beb"], ["https://tec.openplanner.team/stops/N550alb", "https://tec.openplanner.team/stops/N565ada"], ["https://tec.openplanner.team/stops/LbTgeme1", "https://tec.openplanner.team/stops/LsHlenz2"], ["https://tec.openplanner.team/stops/Bgoesch1", "https://tec.openplanner.team/stops/Bgoesch3"], ["https://tec.openplanner.team/stops/H4be101a", "https://tec.openplanner.team/stops/H4be108a"], ["https://tec.openplanner.team/stops/Lagptba2", "https://tec.openplanner.team/stops/Lgrside1"], ["https://tec.openplanner.team/stops/X982baa", "https://tec.openplanner.team/stops/X982cda"], ["https://tec.openplanner.team/stops/X397aab", "https://tec.openplanner.team/stops/X397aac"], ["https://tec.openplanner.team/stops/Creha761", "https://tec.openplanner.team/stops/Creha762"], ["https://tec.openplanner.team/stops/H4ka175b", "https://tec.openplanner.team/stops/H4ob108b"], ["https://tec.openplanner.team/stops/LHCpaci2", "https://tec.openplanner.team/stops/LMNswar1"], ["https://tec.openplanner.team/stops/N544abc", "https://tec.openplanner.team/stops/N544aea"], ["https://tec.openplanner.team/stops/H1et101a", "https://tec.openplanner.team/stops/H1ju119b"], ["https://tec.openplanner.team/stops/X801bva", "https://tec.openplanner.team/stops/X801bxa"], ["https://tec.openplanner.team/stops/Bgemcha1", "https://tec.openplanner.team/stops/Bgrmfon1"], ["https://tec.openplanner.team/stops/Blascsl2", "https://tec.openplanner.team/stops/Bohnr731"], ["https://tec.openplanner.team/stops/Blhugai1", "https://tec.openplanner.team/stops/Bohnhan1"], ["https://tec.openplanner.team/stops/X670ara", "https://tec.openplanner.team/stops/X670arb"], ["https://tec.openplanner.team/stops/Cjudaxi1", "https://tec.openplanner.team/stops/Cjudaxi2"], ["https://tec.openplanner.team/stops/H4ty267b", "https://tec.openplanner.team/stops/H4ty287b"], ["https://tec.openplanner.team/stops/H4an104b", "https://tec.openplanner.team/stops/H4an111b"], ["https://tec.openplanner.team/stops/LFUfonc2", "https://tec.openplanner.team/stops/LWDfuma1"], ["https://tec.openplanner.team/stops/H4eh104b", "https://tec.openplanner.team/stops/H4he101b"], ["https://tec.openplanner.team/stops/H1he110b", "https://tec.openplanner.team/stops/H4be101a"], ["https://tec.openplanner.team/stops/LBTchai2", "https://tec.openplanner.team/stops/LCHsaul2"], ["https://tec.openplanner.team/stops/LWAathe1", "https://tec.openplanner.team/stops/LWAathe2"], ["https://tec.openplanner.team/stops/LFTcroi2", "https://tec.openplanner.team/stops/LNAbois2"], ["https://tec.openplanner.team/stops/Ctrpn2", "https://tec.openplanner.team/stops/Ctrrpla1"], ["https://tec.openplanner.team/stops/X801abb", "https://tec.openplanner.team/stops/X898ama"], ["https://tec.openplanner.team/stops/LFochap1", "https://tec.openplanner.team/stops/LGOcana1"], ["https://tec.openplanner.team/stops/LBahome1", "https://tec.openplanner.team/stops/LBalacr2"], ["https://tec.openplanner.team/stops/Bbchdra2", "https://tec.openplanner.team/stops/Bbchmin1"], ["https://tec.openplanner.team/stops/N302afa", "https://tec.openplanner.team/stops/N331aaa"], ["https://tec.openplanner.team/stops/N160ada", "https://tec.openplanner.team/stops/N160aha"], ["https://tec.openplanner.team/stops/H1hv132a", "https://tec.openplanner.team/stops/H1hv136b"], ["https://tec.openplanner.team/stops/H2bh111b", "https://tec.openplanner.team/stops/H2mg143b"], ["https://tec.openplanner.team/stops/Bllngar4", "https://tec.openplanner.team/stops/Bllnmet1"], ["https://tec.openplanner.team/stops/N229aia", "https://tec.openplanner.team/stops/N229ajb"], ["https://tec.openplanner.team/stops/N305aba", "https://tec.openplanner.team/stops/N305aca"], ["https://tec.openplanner.team/stops/Bgdhbvu1", "https://tec.openplanner.team/stops/Bgdhmet2"], ["https://tec.openplanner.team/stops/LJEchat1", "https://tec.openplanner.team/stops/LJEpaqu2"], ["https://tec.openplanner.team/stops/X752aba", "https://tec.openplanner.team/stops/X757aca"], ["https://tec.openplanner.team/stops/X898aba", "https://tec.openplanner.team/stops/X898afa"], ["https://tec.openplanner.team/stops/Ctucomm2", "https://tec.openplanner.team/stops/NC28aha"], ["https://tec.openplanner.team/stops/H4au143a", "https://tec.openplanner.team/stops/H4au144b"], ["https://tec.openplanner.team/stops/LBCaube2", "https://tec.openplanner.team/stops/LBCtros2"], ["https://tec.openplanner.team/stops/Clrrhau1", "https://tec.openplanner.team/stops/Clrwesp2"], ["https://tec.openplanner.team/stops/H1ms907a", "https://tec.openplanner.team/stops/H1ms910a"], ["https://tec.openplanner.team/stops/H4ga151a", "https://tec.openplanner.team/stops/H4vz367a"], ["https://tec.openplanner.team/stops/H1ht121b", "https://tec.openplanner.team/stops/H1tl120a"], ["https://tec.openplanner.team/stops/Bmelenf2", "https://tec.openplanner.team/stops/Btilhti2"], ["https://tec.openplanner.team/stops/Ccobour1", "https://tec.openplanner.team/stops/Csochea2"], ["https://tec.openplanner.team/stops/X901bla", "https://tec.openplanner.team/stops/X901bma"], ["https://tec.openplanner.team/stops/H4vx362b", "https://tec.openplanner.team/stops/H4vx364c"], ["https://tec.openplanner.team/stops/N562bib", "https://tec.openplanner.team/stops/N562bsa"], ["https://tec.openplanner.team/stops/H4ma398b", "https://tec.openplanner.team/stops/H4oq226a"], ["https://tec.openplanner.team/stops/LJeeg--2", "https://tec.openplanner.team/stops/LJelava2"], ["https://tec.openplanner.team/stops/H1he109a", "https://tec.openplanner.team/stops/H1qv112b"], ["https://tec.openplanner.team/stops/LCscarr2", "https://tec.openplanner.team/stops/LCschen1"], ["https://tec.openplanner.team/stops/X362aab", "https://tec.openplanner.team/stops/X362abb"], ["https://tec.openplanner.team/stops/X773aca", "https://tec.openplanner.team/stops/X908acb"], ["https://tec.openplanner.team/stops/N548agd", "https://tec.openplanner.team/stops/N569adb"], ["https://tec.openplanner.team/stops/N501bbc", "https://tec.openplanner.team/stops/N501cvb"], ["https://tec.openplanner.team/stops/H2ha139a", "https://tec.openplanner.team/stops/H2ha139b"], ["https://tec.openplanner.team/stops/Bitrbvo2", "https://tec.openplanner.team/stops/Bosqgar2"], ["https://tec.openplanner.team/stops/H4bw102a", "https://tec.openplanner.team/stops/H4co151a"], ["https://tec.openplanner.team/stops/X839afa", "https://tec.openplanner.team/stops/X840abb"], ["https://tec.openplanner.team/stops/LTecent1", "https://tec.openplanner.team/stops/LTecent4"], ["https://tec.openplanner.team/stops/X940aea", "https://tec.openplanner.team/stops/X941ada"], ["https://tec.openplanner.team/stops/LBWfusi1", "https://tec.openplanner.team/stops/LBWfusi2"], ["https://tec.openplanner.team/stops/Bllnald1", "https://tec.openplanner.team/stops/Bllngar2"], ["https://tec.openplanner.team/stops/X742afa", "https://tec.openplanner.team/stops/X743aab"], ["https://tec.openplanner.team/stops/Lrofont*", "https://tec.openplanner.team/stops/Lrofont1"], ["https://tec.openplanner.team/stops/H1hr127b", "https://tec.openplanner.team/stops/H1to152a"], ["https://tec.openplanner.team/stops/H2jo162b", "https://tec.openplanner.team/stops/H2jo164b"], ["https://tec.openplanner.team/stops/N550abd", "https://tec.openplanner.team/stops/N550anb"], ["https://tec.openplanner.team/stops/Bhen5ma1", "https://tec.openplanner.team/stops/Bhenfla2"], ["https://tec.openplanner.team/stops/N538amb", "https://tec.openplanner.team/stops/N538amc"], ["https://tec.openplanner.team/stops/LeIkirr1", "https://tec.openplanner.team/stops/LeIkreu1"], ["https://tec.openplanner.team/stops/X354ada", "https://tec.openplanner.team/stops/X354aeb"], ["https://tec.openplanner.team/stops/X793afb", "https://tec.openplanner.team/stops/X793afd"], ["https://tec.openplanner.team/stops/X917aha", "https://tec.openplanner.team/stops/X917aka"], ["https://tec.openplanner.team/stops/X801axb", "https://tec.openplanner.team/stops/X801aza"], ["https://tec.openplanner.team/stops/H1hh113a", "https://tec.openplanner.team/stops/H1hh113b"], ["https://tec.openplanner.team/stops/LBSchar2", "https://tec.openplanner.team/stops/LBSvi321"], ["https://tec.openplanner.team/stops/H4er121b", "https://tec.openplanner.team/stops/H4er125a"], ["https://tec.openplanner.team/stops/H4ty347a", "https://tec.openplanner.team/stops/H4ty416a"], ["https://tec.openplanner.team/stops/Cmychpl1", "https://tec.openplanner.team/stops/Cmychpl2"], ["https://tec.openplanner.team/stops/Crocpai2", "https://tec.openplanner.team/stops/Crorogn2"], ["https://tec.openplanner.team/stops/Lbopote2", "https://tec.openplanner.team/stops/Lbotige2"], ["https://tec.openplanner.team/stops/N501fxb", "https://tec.openplanner.team/stops/N501lbd"], ["https://tec.openplanner.team/stops/H2hp114b", "https://tec.openplanner.team/stops/H2ll172d"], ["https://tec.openplanner.team/stops/LAvchpl1", "https://tec.openplanner.team/stops/LBUrout1"], ["https://tec.openplanner.team/stops/Cctmari2", "https://tec.openplanner.team/stops/NC11aib"], ["https://tec.openplanner.team/stops/X615aub", "https://tec.openplanner.team/stops/X615bda"], ["https://tec.openplanner.team/stops/Bgntcom1", "https://tec.openplanner.team/stops/Bmelegl2"], ["https://tec.openplanner.team/stops/N506ama", "https://tec.openplanner.team/stops/NL67ada"], ["https://tec.openplanner.team/stops/X394aea", "https://tec.openplanner.team/stops/X396aea"], ["https://tec.openplanner.team/stops/LWelogi2", "https://tec.openplanner.team/stops/LWepost4"], ["https://tec.openplanner.team/stops/H4ir167b", "https://tec.openplanner.team/stops/H5at129b"], ["https://tec.openplanner.team/stops/X746aba", "https://tec.openplanner.team/stops/X746abb"], ["https://tec.openplanner.team/stops/N501fdb", "https://tec.openplanner.team/stops/N501fdd"], ["https://tec.openplanner.team/stops/Bcrncor1", "https://tec.openplanner.team/stops/Bsgeqpb1"], ["https://tec.openplanner.team/stops/X942afb", "https://tec.openplanner.team/stops/X943aea"], ["https://tec.openplanner.team/stops/H2ma206a", "https://tec.openplanner.team/stops/H2ma206b"], ["https://tec.openplanner.team/stops/H1gy111b", "https://tec.openplanner.team/stops/H1le129a"], ["https://tec.openplanner.team/stops/Lcelhon3", "https://tec.openplanner.team/stops/Lcemc--2"], ["https://tec.openplanner.team/stops/LeYloos2", "https://tec.openplanner.team/stops/LeYmero2"], ["https://tec.openplanner.team/stops/N513aea", "https://tec.openplanner.team/stops/N513aeb"], ["https://tec.openplanner.team/stops/LBUchpl1", "https://tec.openplanner.team/stops/NL68afa"], ["https://tec.openplanner.team/stops/LWDeg--1", "https://tec.openplanner.team/stops/LWDplac1"], ["https://tec.openplanner.team/stops/H1qy135a", "https://tec.openplanner.team/stops/H1qy135b"], ["https://tec.openplanner.team/stops/Bnetrbr1", "https://tec.openplanner.team/stops/Bnetvan1"], ["https://tec.openplanner.team/stops/Brsrfen1", "https://tec.openplanner.team/stops/Brsrpch2"], ["https://tec.openplanner.team/stops/Bchgrco1", "https://tec.openplanner.team/stops/Bgisber2"], ["https://tec.openplanner.team/stops/LLmeg--2", "https://tec.openplanner.team/stops/LLmvand1"], ["https://tec.openplanner.team/stops/Blimegl2", "https://tec.openplanner.team/stops/Blimeur2"], ["https://tec.openplanner.team/stops/Lpecaze2", "https://tec.openplanner.team/stops/Lpeprev2"], ["https://tec.openplanner.team/stops/H4hx118a", "https://tec.openplanner.team/stops/H4hx120b"], ["https://tec.openplanner.team/stops/LHZ8mai2", "https://tec.openplanner.team/stops/LHZec--2"], ["https://tec.openplanner.team/stops/H4ms145a", "https://tec.openplanner.team/stops/H4ms145b"], ["https://tec.openplanner.team/stops/Bhenfer1", "https://tec.openplanner.team/stops/Bquegen2"], ["https://tec.openplanner.team/stops/LBEairp1", "https://tec.openplanner.team/stops/LBEhaye1"], ["https://tec.openplanner.team/stops/LCPaywa1", "https://tec.openplanner.team/stops/LCPhall1"], ["https://tec.openplanner.team/stops/Bwavgar4", "https://tec.openplanner.team/stops/Bwavtpi2"], ["https://tec.openplanner.team/stops/LLWcarr1", "https://tec.openplanner.team/stops/LTOcime2"], ["https://tec.openplanner.team/stops/LNOning1", "https://tec.openplanner.team/stops/LNOsedo1"], ["https://tec.openplanner.team/stops/H2re165b", "https://tec.openplanner.team/stops/H2re168a"], ["https://tec.openplanner.team/stops/LeUbahn5", "https://tec.openplanner.team/stops/LeUschn2"], ["https://tec.openplanner.team/stops/LLRptma2", "https://tec.openplanner.team/stops/LLRvill2"], ["https://tec.openplanner.team/stops/Crg3arb1", "https://tec.openplanner.team/stops/Cthgend2"], ["https://tec.openplanner.team/stops/X953ada", "https://tec.openplanner.team/stops/X954aga"], ["https://tec.openplanner.team/stops/N501loa", "https://tec.openplanner.team/stops/N528ahb"], ["https://tec.openplanner.team/stops/Lseaite2", "https://tec.openplanner.team/stops/Lsestap2"], ["https://tec.openplanner.team/stops/H4ty300b", "https://tec.openplanner.team/stops/H4ty329b"], ["https://tec.openplanner.team/stops/LBEhaye1", "https://tec.openplanner.team/stops/LBEtroo1"], ["https://tec.openplanner.team/stops/X731aha", "https://tec.openplanner.team/stops/X731aia"], ["https://tec.openplanner.team/stops/H1he106a", "https://tec.openplanner.team/stops/H1he106b"], ["https://tec.openplanner.team/stops/H2ml110a", "https://tec.openplanner.team/stops/H2ml110b"], ["https://tec.openplanner.team/stops/X801bzb", "https://tec.openplanner.team/stops/X801caa"], ["https://tec.openplanner.team/stops/Bcsebde2", "https://tec.openplanner.team/stops/Bcsemon2"], ["https://tec.openplanner.team/stops/X912acb", "https://tec.openplanner.team/stops/X912aea"], ["https://tec.openplanner.team/stops/Lcefoxh1", "https://tec.openplanner.team/stops/Lcepass1"], ["https://tec.openplanner.team/stops/X733abb", "https://tec.openplanner.team/stops/X733acb"], ["https://tec.openplanner.team/stops/N140aaa", "https://tec.openplanner.team/stops/N140aab"], ["https://tec.openplanner.team/stops/X850aca", "https://tec.openplanner.team/stops/X850acb"], ["https://tec.openplanner.team/stops/H1mb131b", "https://tec.openplanner.team/stops/H1mb137b"], ["https://tec.openplanner.team/stops/Cgrcent1", "https://tec.openplanner.team/stops/NC14anb"], ["https://tec.openplanner.team/stops/X611aba", "https://tec.openplanner.team/stops/X643aab"], ["https://tec.openplanner.team/stops/H1hw118a", "https://tec.openplanner.team/stops/H1so136b"], ["https://tec.openplanner.team/stops/Ljuinte2", "https://tec.openplanner.team/stops/Llgchan1"], ["https://tec.openplanner.team/stops/X882ajb", "https://tec.openplanner.team/stops/X882aka"], ["https://tec.openplanner.team/stops/H4ty384a", "https://tec.openplanner.team/stops/H4ty384b"], ["https://tec.openplanner.team/stops/X396aaa", "https://tec.openplanner.team/stops/X396aba"], ["https://tec.openplanner.team/stops/X804aca", "https://tec.openplanner.team/stops/X882alb"], ["https://tec.openplanner.team/stops/LMici091", "https://tec.openplanner.team/stops/LMisour1"], ["https://tec.openplanner.team/stops/N503aca", "https://tec.openplanner.team/stops/N503acb"], ["https://tec.openplanner.team/stops/X831aba", "https://tec.openplanner.team/stops/X831abb"], ["https://tec.openplanner.team/stops/X631aab", "https://tec.openplanner.team/stops/X631adb"], ["https://tec.openplanner.team/stops/LWeec--1", "https://tec.openplanner.team/stops/LWeec--2"], ["https://tec.openplanner.team/stops/Lvebiol1", "https://tec.openplanner.team/stops/Lvewall1"], ["https://tec.openplanner.team/stops/X942aga", "https://tec.openplanner.team/stops/X942agb"], ["https://tec.openplanner.team/stops/X758aeb", "https://tec.openplanner.team/stops/X758afa"], ["https://tec.openplanner.team/stops/H1ba113a", "https://tec.openplanner.team/stops/H1ba113b"], ["https://tec.openplanner.team/stops/Llocime1", "https://tec.openplanner.team/stops/Llocime2"], ["https://tec.openplanner.team/stops/H1sg144b", "https://tec.openplanner.team/stops/H1te177b"], ["https://tec.openplanner.team/stops/Cvlcen1", "https://tec.openplanner.team/stops/NH21aca"], ["https://tec.openplanner.team/stops/LScgore2", "https://tec.openplanner.team/stops/LScread2"], ["https://tec.openplanner.team/stops/N528aea", "https://tec.openplanner.team/stops/N528aeb"], ["https://tec.openplanner.team/stops/LAxbott1", "https://tec.openplanner.team/stops/Lhepaqu2"], ["https://tec.openplanner.team/stops/Ccupres2", "https://tec.openplanner.team/stops/Ccusole1"], ["https://tec.openplanner.team/stops/H4wn138a", "https://tec.openplanner.team/stops/H4wn138b"], ["https://tec.openplanner.team/stops/N534ara", "https://tec.openplanner.team/stops/N534arb"], ["https://tec.openplanner.team/stops/LWAclos2", "https://tec.openplanner.team/stops/LWAipes1"], ["https://tec.openplanner.team/stops/LElcent2", "https://tec.openplanner.team/stops/LElgerd4"], ["https://tec.openplanner.team/stops/N141alb", "https://tec.openplanner.team/stops/N143abb"], ["https://tec.openplanner.team/stops/Lsecime2", "https://tec.openplanner.team/stops/Lsefive1"], ["https://tec.openplanner.team/stops/LDLbeau2", "https://tec.openplanner.team/stops/LDLgran2"], ["https://tec.openplanner.team/stops/Lhrdeme1", "https://tec.openplanner.team/stops/Lhrpwan2"], ["https://tec.openplanner.team/stops/X948ada", "https://tec.openplanner.team/stops/X948adb"], ["https://tec.openplanner.team/stops/Llgbaya1", "https://tec.openplanner.team/stops/Llgbaya4"], ["https://tec.openplanner.team/stops/Bblmcel1", "https://tec.openplanner.team/stops/Bnil3fo1"], ["https://tec.openplanner.team/stops/Lsekubo2", "https://tec.openplanner.team/stops/Lsekubo3"], ["https://tec.openplanner.team/stops/Ldimeun2", "https://tec.openplanner.team/stops/Ldipl--2"], ["https://tec.openplanner.team/stops/Clibrun2", "https://tec.openplanner.team/stops/Cvvmonu2"], ["https://tec.openplanner.team/stops/H4ty273a", "https://tec.openplanner.team/stops/H4ty295d"], ["https://tec.openplanner.team/stops/Brixcme2", "https://tec.openplanner.team/stops/Brsrber1"], ["https://tec.openplanner.team/stops/LSTchen1", "https://tec.openplanner.team/stops/LSTdero1"], ["https://tec.openplanner.team/stops/X780ada", "https://tec.openplanner.team/stops/X780aga"], ["https://tec.openplanner.team/stops/LHemoul1", "https://tec.openplanner.team/stops/LOUsorb1"], ["https://tec.openplanner.team/stops/LCPhall2", "https://tec.openplanner.team/stops/LHycent*"], ["https://tec.openplanner.team/stops/X806abb", "https://tec.openplanner.team/stops/X806akb"], ["https://tec.openplanner.team/stops/X650aea", "https://tec.openplanner.team/stops/X650aib"], ["https://tec.openplanner.team/stops/H1hh109a", "https://tec.openplanner.team/stops/H1hh114a"], ["https://tec.openplanner.team/stops/N214aea", "https://tec.openplanner.team/stops/N214afa"], ["https://tec.openplanner.team/stops/Bneeblo1", "https://tec.openplanner.team/stops/Bneehou2"], ["https://tec.openplanner.team/stops/H4ve137a", "https://tec.openplanner.team/stops/H4ve137b"], ["https://tec.openplanner.team/stops/H4ga150b", "https://tec.openplanner.team/stops/H4ha168a"], ["https://tec.openplanner.team/stops/X991aka", "https://tec.openplanner.team/stops/X993aea"], ["https://tec.openplanner.team/stops/Llgcroi1", "https://tec.openplanner.team/stops/Llgfred1"], ["https://tec.openplanner.team/stops/X734aib", "https://tec.openplanner.team/stops/X734ajb"], ["https://tec.openplanner.team/stops/Cplbbro2", "https://tec.openplanner.team/stops/NC11ama"], ["https://tec.openplanner.team/stops/H2ma264a", "https://tec.openplanner.team/stops/H2tr248b"], ["https://tec.openplanner.team/stops/LENparc1", "https://tec.openplanner.team/stops/LENparc2"], ["https://tec.openplanner.team/stops/LLGramk1", "https://tec.openplanner.team/stops/LORvill2"], ["https://tec.openplanner.team/stops/Csecout1", "https://tec.openplanner.team/stops/Csemacq2"], ["https://tec.openplanner.team/stops/X713aia", "https://tec.openplanner.team/stops/X714aea"], ["https://tec.openplanner.team/stops/Cpclarm1", "https://tec.openplanner.team/stops/Cpcndce2"], ["https://tec.openplanner.team/stops/Bwatabs1", "https://tec.openplanner.team/stops/Bwatrsg1"], ["https://tec.openplanner.team/stops/Bbstbou2", "https://tec.openplanner.team/stops/Bbstfch2"], ["https://tec.openplanner.team/stops/Cmaest1", "https://tec.openplanner.team/stops/Cmmn1172"], ["https://tec.openplanner.team/stops/LHUhaum3", "https://tec.openplanner.team/stops/LHUpsar2"], ["https://tec.openplanner.team/stops/Blmlcar1", "https://tec.openplanner.team/stops/Blmlcim2"], ["https://tec.openplanner.team/stops/H2an100b", "https://tec.openplanner.team/stops/H2an104a"], ["https://tec.openplanner.team/stops/H1hl122a", "https://tec.openplanner.team/stops/H1hl124a"], ["https://tec.openplanner.team/stops/H2gy100a", "https://tec.openplanner.team/stops/H2tz117b"], ["https://tec.openplanner.team/stops/H4fa124b", "https://tec.openplanner.team/stops/H4fa126a"], ["https://tec.openplanner.team/stops/H4fa126c", "https://tec.openplanner.team/stops/H4fa126d"], ["https://tec.openplanner.team/stops/H1ci104a", "https://tec.openplanner.team/stops/H1mv243b"], ["https://tec.openplanner.team/stops/LOMeg--1", "https://tec.openplanner.team/stops/LOMeg--2"], ["https://tec.openplanner.team/stops/H1pd145a", "https://tec.openplanner.team/stops/H1sb149a"], ["https://tec.openplanner.team/stops/LMHec--1", "https://tec.openplanner.team/stops/NL73aea"], ["https://tec.openplanner.team/stops/Bbaubon1", "https://tec.openplanner.team/stops/Bnivpba1"], ["https://tec.openplanner.team/stops/N360aca", "https://tec.openplanner.team/stops/N360acb"], ["https://tec.openplanner.team/stops/X654ada", "https://tec.openplanner.team/stops/X654aeb"], ["https://tec.openplanner.team/stops/H2sb258b", "https://tec.openplanner.team/stops/H3lr110a"], ["https://tec.openplanner.team/stops/Bnetegl2", "https://tec.openplanner.team/stops/Bnetegl3"], ["https://tec.openplanner.team/stops/H4ty324a", "https://tec.openplanner.team/stops/H4ty324c"], ["https://tec.openplanner.team/stops/H1ne141b", "https://tec.openplanner.team/stops/H1ne149b"], ["https://tec.openplanner.team/stops/N501baa", "https://tec.openplanner.team/stops/N501beb"], ["https://tec.openplanner.team/stops/LkTlibe2", "https://tec.openplanner.team/stops/LwAkett2"], ["https://tec.openplanner.team/stops/H1gi122a", "https://tec.openplanner.team/stops/H1gi154a"], ["https://tec.openplanner.team/stops/H1cd114a", "https://tec.openplanner.team/stops/H1ne138a"], ["https://tec.openplanner.team/stops/N145aia", "https://tec.openplanner.team/stops/N145aja"], ["https://tec.openplanner.team/stops/LHhchau2", "https://tec.openplanner.team/stops/LHhvivi1"], ["https://tec.openplanner.team/stops/H1ob330a", "https://tec.openplanner.team/stops/H1ob339a"], ["https://tec.openplanner.team/stops/X637akb", "https://tec.openplanner.team/stops/X638aea"], ["https://tec.openplanner.team/stops/Cgpauln1", "https://tec.openplanner.team/stops/Cgplhoi1"], ["https://tec.openplanner.team/stops/X779adb", "https://tec.openplanner.team/stops/X779aib"], ["https://tec.openplanner.team/stops/N501gzy", "https://tec.openplanner.team/stops/N501zca"], ["https://tec.openplanner.team/stops/Cthvbas1", "https://tec.openplanner.team/stops/Cthvbas2"], ["https://tec.openplanner.team/stops/Ctaallo1", "https://tec.openplanner.team/stops/Ctaallo2"], ["https://tec.openplanner.team/stops/X771adb", "https://tec.openplanner.team/stops/X771aib"], ["https://tec.openplanner.team/stops/X804akb", "https://tec.openplanner.team/stops/X804bwa"], ["https://tec.openplanner.team/stops/X773ama", "https://tec.openplanner.team/stops/X773ana"], ["https://tec.openplanner.team/stops/LHDmc--1", "https://tec.openplanner.team/stops/LHDmc--2"], ["https://tec.openplanner.team/stops/N509arb", "https://tec.openplanner.team/stops/N509avb"], ["https://tec.openplanner.team/stops/LBPauto2", "https://tec.openplanner.team/stops/LBPboir1"], ["https://tec.openplanner.team/stops/N232ata", "https://tec.openplanner.team/stops/N232bgb"], ["https://tec.openplanner.team/stops/H2mo124b", "https://tec.openplanner.team/stops/H2mo131b"], ["https://tec.openplanner.team/stops/X948asa", "https://tec.openplanner.team/stops/X948awa"], ["https://tec.openplanner.team/stops/X747afa", "https://tec.openplanner.team/stops/X747akb"], ["https://tec.openplanner.team/stops/LTecent2", "https://tec.openplanner.team/stops/LTestat1"], ["https://tec.openplanner.team/stops/Btslhau1", "https://tec.openplanner.team/stops/Btsllsc1"], ["https://tec.openplanner.team/stops/LFmeg--1", "https://tec.openplanner.team/stops/LFmeg--2"], ["https://tec.openplanner.team/stops/N104afb", "https://tec.openplanner.team/stops/N104akb"], ["https://tec.openplanner.team/stops/NR21aab", "https://tec.openplanner.team/stops/NR21aha"], ["https://tec.openplanner.team/stops/Bnivfro1", "https://tec.openplanner.team/stops/Bnivzep1"], ["https://tec.openplanner.team/stops/Bchacen1", "https://tec.openplanner.team/stops/Bhvltol2"], ["https://tec.openplanner.team/stops/Bitrh%C3%BBl1", "https://tec.openplanner.team/stops/Bronpfe2"], ["https://tec.openplanner.team/stops/N513ahb", "https://tec.openplanner.team/stops/N513bfb"], ["https://tec.openplanner.team/stops/Bcrncjo2", "https://tec.openplanner.team/stops/Bcrntru1"], ["https://tec.openplanner.team/stops/N231afb", "https://tec.openplanner.team/stops/N231agb"], ["https://tec.openplanner.team/stops/LhOfrie1", "https://tec.openplanner.team/stops/LhOokat2"], ["https://tec.openplanner.team/stops/H1ho122c", "https://tec.openplanner.team/stops/H1ho137a"], ["https://tec.openplanner.team/stops/Llgcrah2", "https://tec.openplanner.team/stops/Llgwild6"], ["https://tec.openplanner.team/stops/LMRmont2", "https://tec.openplanner.team/stops/LtEnatu1"], ["https://tec.openplanner.team/stops/N232beb", "https://tec.openplanner.team/stops/N261aea"], ["https://tec.openplanner.team/stops/LRmha261", "https://tec.openplanner.team/stops/LRmhage8"], ["https://tec.openplanner.team/stops/H4ta117a", "https://tec.openplanner.team/stops/H4ta117b"], ["https://tec.openplanner.team/stops/Blonegl1", "https://tec.openplanner.team/stops/Blonegl2"], ["https://tec.openplanner.team/stops/LSPastr2", "https://tec.openplanner.team/stops/LSPClem1"], ["https://tec.openplanner.team/stops/LNIdoma2", "https://tec.openplanner.team/stops/LSPfrai2"], ["https://tec.openplanner.team/stops/LeYauss1", "https://tec.openplanner.team/stops/LeYvoge1"], ["https://tec.openplanner.team/stops/Bchgqve2", "https://tec.openplanner.team/stops/Btsllbv2"], ["https://tec.openplanner.team/stops/H4ka181b", "https://tec.openplanner.team/stops/H4ty270b"], ["https://tec.openplanner.team/stops/X660adb", "https://tec.openplanner.team/stops/X660afa"], ["https://tec.openplanner.team/stops/Bbxlple2", "https://tec.openplanner.team/stops/Bbxltou1"], ["https://tec.openplanner.team/stops/N543aha", "https://tec.openplanner.team/stops/N543ahb"], ["https://tec.openplanner.team/stops/Cchdigu1", "https://tec.openplanner.team/stops/CMvil2"], ["https://tec.openplanner.team/stops/H1ba101b", "https://tec.openplanner.team/stops/H1te185a"], ["https://tec.openplanner.team/stops/X667aab", "https://tec.openplanner.team/stops/X667adb"], ["https://tec.openplanner.team/stops/X786aaa", "https://tec.openplanner.team/stops/X786ajb"], ["https://tec.openplanner.team/stops/LMsbusc2", "https://tec.openplanner.team/stops/LMspont2"], ["https://tec.openplanner.team/stops/Clomart1", "https://tec.openplanner.team/stops/CMtsan2"], ["https://tec.openplanner.team/stops/LmEdorf1", "https://tec.openplanner.team/stops/LmNlieb2"], ["https://tec.openplanner.team/stops/Cjuchli2", "https://tec.openplanner.team/stops/Cjumall6"], ["https://tec.openplanner.team/stops/Bdonlat2", "https://tec.openplanner.team/stops/Bincdon1"], ["https://tec.openplanner.team/stops/N516ama", "https://tec.openplanner.team/stops/N516aqb"], ["https://tec.openplanner.team/stops/Bmelegl1", "https://tec.openplanner.team/stops/Bsmgbsa1"], ["https://tec.openplanner.team/stops/N501heb", "https://tec.openplanner.team/stops/N501zea"], ["https://tec.openplanner.team/stops/N138aab", "https://tec.openplanner.team/stops/N138aac"], ["https://tec.openplanner.team/stops/H1ca184b", "https://tec.openplanner.team/stops/H1ne144a"], ["https://tec.openplanner.team/stops/X747aja", "https://tec.openplanner.team/stops/X749adb"], ["https://tec.openplanner.team/stops/LBieg--3", "https://tec.openplanner.team/stops/LHCbois1"], ["https://tec.openplanner.team/stops/LwYbrkr1", "https://tec.openplanner.team/stops/LwYnr261"], ["https://tec.openplanner.team/stops/LnEkirc1", "https://tec.openplanner.team/stops/LnEleje1"], ["https://tec.openplanner.team/stops/H4ru243a", "https://tec.openplanner.team/stops/H4ru245a"], ["https://tec.openplanner.team/stops/N212adb", "https://tec.openplanner.team/stops/N348aab"], ["https://tec.openplanner.team/stops/Lcaboun4", "https://tec.openplanner.team/stops/Lrofont1"], ["https://tec.openplanner.team/stops/H4ty335a", "https://tec.openplanner.team/stops/H4ty335b"], ["https://tec.openplanner.team/stops/LaSbahn2", "https://tec.openplanner.team/stops/LaSkape2"], ["https://tec.openplanner.team/stops/X633aca", "https://tec.openplanner.team/stops/X633ada"], ["https://tec.openplanner.team/stops/H4tg162a", "https://tec.openplanner.team/stops/H4tg162b"], ["https://tec.openplanner.team/stops/X948amc", "https://tec.openplanner.team/stops/X948ana"], ["https://tec.openplanner.team/stops/LVIferm2", "https://tec.openplanner.team/stops/LVImons2"], ["https://tec.openplanner.team/stops/X662aba", "https://tec.openplanner.team/stops/X662aeb"], ["https://tec.openplanner.team/stops/LMgbatt1", "https://tec.openplanner.team/stops/LMgkrui1"], ["https://tec.openplanner.team/stops/Cbwmato2", "https://tec.openplanner.team/stops/Cbwmvri1"], ["https://tec.openplanner.team/stops/N146adb", "https://tec.openplanner.team/stops/N146aea"], ["https://tec.openplanner.team/stops/Cthegli2", "https://tec.openplanner.team/stops/Cthrlef2"], ["https://tec.openplanner.team/stops/N557agb", "https://tec.openplanner.team/stops/N557ahb"], ["https://tec.openplanner.team/stops/X770afa", "https://tec.openplanner.team/stops/X770afb"], ["https://tec.openplanner.team/stops/H2ca112b", "https://tec.openplanner.team/stops/H2ca115a"], ["https://tec.openplanner.team/stops/H4eg101a", "https://tec.openplanner.team/stops/H4eg101c"], ["https://tec.openplanner.team/stops/Bcsgcou1", "https://tec.openplanner.team/stops/Bmrscol1"], ["https://tec.openplanner.team/stops/Lmopota2", "https://tec.openplanner.team/stops/Lmovand4"], ["https://tec.openplanner.team/stops/Cgofert2", "https://tec.openplanner.team/stops/Cgorosa2"], ["https://tec.openplanner.team/stops/Bkrawil1", "https://tec.openplanner.team/stops/Bwolkra2"], ["https://tec.openplanner.team/stops/H4ef163a", "https://tec.openplanner.team/stops/H4hq130a"], ["https://tec.openplanner.team/stops/N538aia", "https://tec.openplanner.team/stops/N538alb"], ["https://tec.openplanner.team/stops/LWagare*", "https://tec.openplanner.team/stops/LWastei1"], ["https://tec.openplanner.team/stops/LBHgile1", "https://tec.openplanner.team/stops/LFochap2"], ["https://tec.openplanner.team/stops/H4bo119b", "https://tec.openplanner.team/stops/H5qu140a"], ["https://tec.openplanner.team/stops/N206ada", "https://tec.openplanner.team/stops/N220aab"], ["https://tec.openplanner.team/stops/Cmaroya1", "https://tec.openplanner.team/stops/Cmaroya2"], ["https://tec.openplanner.team/stops/Lagsauh2", "https://tec.openplanner.team/stops/Lemmath1"], ["https://tec.openplanner.team/stops/X902aub", "https://tec.openplanner.team/stops/X902bba"], ["https://tec.openplanner.team/stops/H4bn173a", "https://tec.openplanner.team/stops/H4pi130a"], ["https://tec.openplanner.team/stops/X358ada", "https://tec.openplanner.team/stops/X358aea"], ["https://tec.openplanner.team/stops/X923aaa", "https://tec.openplanner.team/stops/X923aoa"], ["https://tec.openplanner.team/stops/Ccogera1", "https://tec.openplanner.team/stops/Crocpai2"], ["https://tec.openplanner.team/stops/X788ahb", "https://tec.openplanner.team/stops/X790agb"], ["https://tec.openplanner.team/stops/X850ala", "https://tec.openplanner.team/stops/X850amb"], ["https://tec.openplanner.team/stops/N506bkb", "https://tec.openplanner.team/stops/N506bnb"], ["https://tec.openplanner.team/stops/N244aib", "https://tec.openplanner.team/stops/N251abb"], ["https://tec.openplanner.team/stops/Bgnvgir1", "https://tec.openplanner.team/stops/Blhumpo4"], ["https://tec.openplanner.team/stops/N120alb", "https://tec.openplanner.team/stops/N244aqa"], ["https://tec.openplanner.team/stops/X801bka", "https://tec.openplanner.team/stops/X801cgb"], ["https://tec.openplanner.team/stops/N528ada", "https://tec.openplanner.team/stops/N528arc"], ["https://tec.openplanner.team/stops/H1bl100a", "https://tec.openplanner.team/stops/H1sb147a"], ["https://tec.openplanner.team/stops/X908aia", "https://tec.openplanner.team/stops/X908aib"], ["https://tec.openplanner.team/stops/X653aab", "https://tec.openplanner.team/stops/X653abb"], ["https://tec.openplanner.team/stops/X757aeb", "https://tec.openplanner.team/stops/X757afb"], ["https://tec.openplanner.team/stops/Bhlvlou2", "https://tec.openplanner.team/stops/Bhlvvil2"], ["https://tec.openplanner.team/stops/Bcercsa2", "https://tec.openplanner.team/stops/Bmoucoq2"], ["https://tec.openplanner.team/stops/Btsllib1", "https://tec.openplanner.team/stops/Btsllib2"], ["https://tec.openplanner.team/stops/X640aca", "https://tec.openplanner.team/stops/X640acb"], ["https://tec.openplanner.team/stops/Cmocime1", "https://tec.openplanner.team/stops/Cmocime2"], ["https://tec.openplanner.team/stops/Cauushm2", "https://tec.openplanner.team/stops/N543aza"], ["https://tec.openplanner.team/stops/LNOning2", "https://tec.openplanner.team/stops/LREchif1"], ["https://tec.openplanner.team/stops/N101acb", "https://tec.openplanner.team/stops/N118aoa"], ["https://tec.openplanner.team/stops/Csychap4", "https://tec.openplanner.team/stops/Csyplac2"], ["https://tec.openplanner.team/stops/Bwatgar3", "https://tec.openplanner.team/stops/Bwatifr2"], ["https://tec.openplanner.team/stops/X982bba", "https://tec.openplanner.team/stops/X982cda"], ["https://tec.openplanner.team/stops/N519aja", "https://tec.openplanner.team/stops/N519ajb"], ["https://tec.openplanner.team/stops/Cvstouv1", "https://tec.openplanner.team/stops/N530aea"], ["https://tec.openplanner.team/stops/H2ll188b", "https://tec.openplanner.team/stops/H2ll267a"], ["https://tec.openplanner.team/stops/N113aea", "https://tec.openplanner.team/stops/N113agb"], ["https://tec.openplanner.team/stops/H2hp119a", "https://tec.openplanner.team/stops/H2hp119c"], ["https://tec.openplanner.team/stops/Lthfren2", "https://tec.openplanner.team/stops/LWazoni1"], ["https://tec.openplanner.team/stops/X672aea", "https://tec.openplanner.team/stops/X672aeb"], ["https://tec.openplanner.team/stops/LSerout1", "https://tec.openplanner.team/stops/LVbstre2"], ["https://tec.openplanner.team/stops/LkAmess1", "https://tec.openplanner.team/stops/LmTreic1"], ["https://tec.openplanner.team/stops/X636ava", "https://tec.openplanner.team/stops/X636bhb"], ["https://tec.openplanner.team/stops/H1au112a", "https://tec.openplanner.team/stops/H1on129a"], ["https://tec.openplanner.team/stops/Bptrgri1", "https://tec.openplanner.team/stops/Bptrpla2"], ["https://tec.openplanner.team/stops/Bsenpbi1", "https://tec.openplanner.team/stops/Bsensab1"], ["https://tec.openplanner.team/stops/Cgzhour1", "https://tec.openplanner.team/stops/Cgzhour3"], ["https://tec.openplanner.team/stops/H1ag106a", "https://tec.openplanner.team/stops/H1ag106b"], ["https://tec.openplanner.team/stops/X641aia", "https://tec.openplanner.team/stops/X641amb"], ["https://tec.openplanner.team/stops/H4ep127a", "https://tec.openplanner.team/stops/H4ep127b"], ["https://tec.openplanner.team/stops/Llxeg--2", "https://tec.openplanner.team/stops/Lwaaube1"], ["https://tec.openplanner.team/stops/X812acb", "https://tec.openplanner.team/stops/X860aaa"], ["https://tec.openplanner.team/stops/LsVgore1", "https://tec.openplanner.team/stops/LsVsage2"], ["https://tec.openplanner.team/stops/LOUvign1", "https://tec.openplanner.team/stops/Lvichpl1"], ["https://tec.openplanner.team/stops/Bdvmcbo1", "https://tec.openplanner.team/stops/Bdvmccu2"], ["https://tec.openplanner.team/stops/N552aca", "https://tec.openplanner.team/stops/N552adb"], ["https://tec.openplanner.team/stops/Lrecomp2", "https://tec.openplanner.team/stops/Lremonu2"], ["https://tec.openplanner.team/stops/N101alb", "https://tec.openplanner.team/stops/N153aab"], ["https://tec.openplanner.team/stops/LBQmaye2", "https://tec.openplanner.team/stops/LBQplac1"], ["https://tec.openplanner.team/stops/N423afb", "https://tec.openplanner.team/stops/NH21afa"], ["https://tec.openplanner.team/stops/H1th181a", "https://tec.openplanner.team/stops/H3go100b"], ["https://tec.openplanner.team/stops/H4vz368a", "https://tec.openplanner.team/stops/H4vz370b"], ["https://tec.openplanner.team/stops/LPAeg--1", "https://tec.openplanner.team/stops/LPAmc--1"], ["https://tec.openplanner.team/stops/X822aja", "https://tec.openplanner.team/stops/X836ajb"], ["https://tec.openplanner.team/stops/Cgxbeau1", "https://tec.openplanner.team/stops/Cgxcite2"], ["https://tec.openplanner.team/stops/X662aca", "https://tec.openplanner.team/stops/X662aga"], ["https://tec.openplanner.team/stops/Bwavgar2", "https://tec.openplanner.team/stops/Bwavgar8"], ["https://tec.openplanner.team/stops/LSLfler2", "https://tec.openplanner.team/stops/LSLprov2"], ["https://tec.openplanner.team/stops/Cfcrerp2", "https://tec.openplanner.team/stops/Cvrhab22"], ["https://tec.openplanner.team/stops/H1ms293b", "https://tec.openplanner.team/stops/H1ms296d"], ["https://tec.openplanner.team/stops/LBUchpl1", "https://tec.openplanner.team/stops/LBUplac1"], ["https://tec.openplanner.team/stops/Cfachap1", "https://tec.openplanner.team/stops/Cfaplma1"], ["https://tec.openplanner.team/stops/LRuegli1", "https://tec.openplanner.team/stops/LSegott1"], ["https://tec.openplanner.team/stops/LAbchpl2", "https://tec.openplanner.team/stops/LTNmont1"], ["https://tec.openplanner.team/stops/LmS11--2", "https://tec.openplanner.team/stops/LmSkape1"], ["https://tec.openplanner.team/stops/X982bkb", "https://tec.openplanner.team/stops/X982bld"], ["https://tec.openplanner.team/stops/Cmonvci2", "https://tec.openplanner.team/stops/Cmoprov2"], ["https://tec.openplanner.team/stops/LBVcent2", "https://tec.openplanner.team/stops/LBVplan1"], ["https://tec.openplanner.team/stops/Cfvombo1", "https://tec.openplanner.team/stops/Cfvplac2"], ["https://tec.openplanner.team/stops/X774add", "https://tec.openplanner.team/stops/X774afa"], ["https://tec.openplanner.team/stops/LGmeg--1", "https://tec.openplanner.team/stops/LGmloti1"], ["https://tec.openplanner.team/stops/LARgare3", "https://tec.openplanner.team/stops/LRIcent2"], ["https://tec.openplanner.team/stops/LwYbruc4", "https://tec.openplanner.team/stops/LwYneue2"], ["https://tec.openplanner.team/stops/Llgbour2", "https://tec.openplanner.team/stops/Llgcmes1"], ["https://tec.openplanner.team/stops/LCRfize2", "https://tec.openplanner.team/stops/LTyhapp1"], ["https://tec.openplanner.team/stops/X718aka", "https://tec.openplanner.team/stops/X718akb"], ["https://tec.openplanner.team/stops/H1ml109b", "https://tec.openplanner.team/stops/H1ml110a"], ["https://tec.openplanner.team/stops/Bpiepla1", "https://tec.openplanner.team/stops/Bpiesta2"], ["https://tec.openplanner.team/stops/Lsnferr2", "https://tec.openplanner.team/stops/Lsnlhon2"], ["https://tec.openplanner.team/stops/N504acb", "https://tec.openplanner.team/stops/N511aaa"], ["https://tec.openplanner.team/stops/LGe4bra1", "https://tec.openplanner.team/stops/LGe4bra2"], ["https://tec.openplanner.team/stops/LgRha211", "https://tec.openplanner.team/stops/LgRha212"], ["https://tec.openplanner.team/stops/LmNmerl1", "https://tec.openplanner.team/stops/LmNmerl2"], ["https://tec.openplanner.team/stops/Cmosaba1", "https://tec.openplanner.team/stops/Cmoscap1"], ["https://tec.openplanner.team/stops/LOVeg--1", "https://tec.openplanner.team/stops/LWLtamb2"], ["https://tec.openplanner.team/stops/Bbuzcom1", "https://tec.openplanner.team/stops/Bbuzeta2"], ["https://tec.openplanner.team/stops/X615ada", "https://tec.openplanner.team/stops/X615baa"], ["https://tec.openplanner.team/stops/Lsn184-2", "https://tec.openplanner.team/stops/Lsnagne1"], ["https://tec.openplanner.team/stops/X824aea", "https://tec.openplanner.team/stops/X824aeb"], ["https://tec.openplanner.team/stops/Llgbida1", "https://tec.openplanner.team/stops/Llghlau2"], ["https://tec.openplanner.team/stops/H2lc169a", "https://tec.openplanner.team/stops/H2lc169b"], ["https://tec.openplanner.team/stops/Cfobriq1", "https://tec.openplanner.team/stops/Cfoermi1"], ["https://tec.openplanner.team/stops/N509bfa", "https://tec.openplanner.team/stops/N509bfb"], ["https://tec.openplanner.team/stops/X734anc", "https://tec.openplanner.team/stops/X734apa"], ["https://tec.openplanner.team/stops/H4ar103b", "https://tec.openplanner.team/stops/H4lg103b"], ["https://tec.openplanner.team/stops/H4mo175a", "https://tec.openplanner.team/stops/H4mo175b"], ["https://tec.openplanner.team/stops/H4jm117b", "https://tec.openplanner.team/stops/H4we139b"], ["https://tec.openplanner.team/stops/Ccocoup2", "https://tec.openplanner.team/stops/Ccostan2"], ["https://tec.openplanner.team/stops/LBPmili2", "https://tec.openplanner.team/stops/LBPunic1"], ["https://tec.openplanner.team/stops/LLrfrai1", "https://tec.openplanner.team/stops/LLrmc--3"], ["https://tec.openplanner.team/stops/Bitrcan2", "https://tec.openplanner.team/stops/Bvirgar2"], ["https://tec.openplanner.team/stops/Bmaregl1", "https://tec.openplanner.team/stops/Bmarmru2"], ["https://tec.openplanner.team/stops/Llgcbat2", "https://tec.openplanner.team/stops/Llgtill1"], ["https://tec.openplanner.team/stops/H1ms253b", "https://tec.openplanner.team/stops/H1ms910a"], ["https://tec.openplanner.team/stops/N501agb", "https://tec.openplanner.team/stops/N501cla"], ["https://tec.openplanner.team/stops/X782aaa", "https://tec.openplanner.team/stops/X782apa"], ["https://tec.openplanner.team/stops/Bbsifmo2", "https://tec.openplanner.team/stops/Bwaunop1"], ["https://tec.openplanner.team/stops/N212aha", "https://tec.openplanner.team/stops/N212atb"], ["https://tec.openplanner.team/stops/H5rx101b", "https://tec.openplanner.team/stops/H5rx135b"], ["https://tec.openplanner.team/stops/LBLcalv1", "https://tec.openplanner.team/stops/LBLcalv2"], ["https://tec.openplanner.team/stops/Bbryvil1", "https://tec.openplanner.team/stops/Bbryvil2"], ["https://tec.openplanner.team/stops/N874aab", "https://tec.openplanner.team/stops/N874agb"], ["https://tec.openplanner.team/stops/Bwspmon1", "https://tec.openplanner.team/stops/Bwspmon2"], ["https://tec.openplanner.team/stops/H4ef111a", "https://tec.openplanner.team/stops/H4po127b"], ["https://tec.openplanner.team/stops/H4hx121a", "https://tec.openplanner.team/stops/H4mo160a"], ["https://tec.openplanner.team/stops/N232ara", "https://tec.openplanner.team/stops/N232bra"], ["https://tec.openplanner.team/stops/LON21--2", "https://tec.openplanner.team/stops/LONcroi2"], ["https://tec.openplanner.team/stops/X611aaa", "https://tec.openplanner.team/stops/X611aba"], ["https://tec.openplanner.team/stops/Bbcocou1", "https://tec.openplanner.team/stops/Bbcogpl1"], ["https://tec.openplanner.team/stops/LESamos2", "https://tec.openplanner.team/stops/LESecco1"], ["https://tec.openplanner.team/stops/LFEague1", "https://tec.openplanner.team/stops/LFtcarr2"], ["https://tec.openplanner.team/stops/H4we135a", "https://tec.openplanner.team/stops/H4we138b"], ["https://tec.openplanner.team/stops/X750ama", "https://tec.openplanner.team/stops/X750bna"], ["https://tec.openplanner.team/stops/Lghalli2", "https://tec.openplanner.team/stops/Lghpero1"], ["https://tec.openplanner.team/stops/X801bdc", "https://tec.openplanner.team/stops/X801bea"], ["https://tec.openplanner.team/stops/X783aca", "https://tec.openplanner.team/stops/X783acc"], ["https://tec.openplanner.team/stops/H4bs110a", "https://tec.openplanner.team/stops/H4bs113a"], ["https://tec.openplanner.team/stops/Boppcar1", "https://tec.openplanner.team/stops/Boppcen4"], ["https://tec.openplanner.team/stops/X649adb", "https://tec.openplanner.team/stops/X649adc"], ["https://tec.openplanner.team/stops/X812aja", "https://tec.openplanner.team/stops/X812ajb"], ["https://tec.openplanner.team/stops/H4hu121b", "https://tec.openplanner.team/stops/H4og214b"], ["https://tec.openplanner.team/stops/Buccvch1", "https://tec.openplanner.team/stops/Buccvch2"], ["https://tec.openplanner.team/stops/Cmlm2411", "https://tec.openplanner.team/stops/Cmlm2412"], ["https://tec.openplanner.team/stops/Cprlpre1", "https://tec.openplanner.team/stops/NC11arb"], ["https://tec.openplanner.team/stops/X713aab", "https://tec.openplanner.team/stops/X713aca"], ["https://tec.openplanner.team/stops/Canpeup2", "https://tec.openplanner.team/stops/Canresi1"], ["https://tec.openplanner.team/stops/H2mo125a", "https://tec.openplanner.team/stops/H2mo130c"], ["https://tec.openplanner.team/stops/Bllnfla2", "https://tec.openplanner.team/stops/Bwavcui1"], ["https://tec.openplanner.team/stops/N502ada", "https://tec.openplanner.team/stops/N502adb"], ["https://tec.openplanner.team/stops/Cdamest1", "https://tec.openplanner.team/stops/Cdamest2"], ["https://tec.openplanner.team/stops/Bwatcro2", "https://tec.openplanner.team/stops/Bwatifr1"], ["https://tec.openplanner.team/stops/Bnivgam1", "https://tec.openplanner.team/stops/Bnivgam2"], ["https://tec.openplanner.team/stops/N501ida", "https://tec.openplanner.team/stops/N501idb"], ["https://tec.openplanner.team/stops/LARauto4", "https://tec.openplanner.team/stops/LHAmonu1"], ["https://tec.openplanner.team/stops/LsVeite1", "https://tec.openplanner.team/stops/LwLkirc1"], ["https://tec.openplanner.team/stops/LTechpl1", "https://tec.openplanner.team/stops/LTechpl2"], ["https://tec.openplanner.team/stops/H1gn147b", "https://tec.openplanner.team/stops/H1gn150b"], ["https://tec.openplanner.team/stops/H1au100b", "https://tec.openplanner.team/stops/H1on128c"], ["https://tec.openplanner.team/stops/Lbrdepo1", "https://tec.openplanner.team/stops/Lbrfagn1"], ["https://tec.openplanner.team/stops/H4an105b", "https://tec.openplanner.team/stops/H4an111b"], ["https://tec.openplanner.team/stops/X985ada", "https://tec.openplanner.team/stops/X985afb"], ["https://tec.openplanner.team/stops/LWapl--1", "https://tec.openplanner.team/stops/LWapl--4"], ["https://tec.openplanner.team/stops/Crccarr2", "https://tec.openplanner.team/stops/Crclorc2"], ["https://tec.openplanner.team/stops/LHNgare2", "https://tec.openplanner.team/stops/LHNgend1"], ["https://tec.openplanner.team/stops/Bllnfla1", "https://tec.openplanner.team/stops/Bllnfla3"], ["https://tec.openplanner.team/stops/X993adb", "https://tec.openplanner.team/stops/X993aja"], ["https://tec.openplanner.team/stops/Bhen5ma2", "https://tec.openplanner.team/stops/Bhenasc2"], ["https://tec.openplanner.team/stops/Lenclar1", "https://tec.openplanner.team/stops/Llmhalt2"], ["https://tec.openplanner.team/stops/H4ep127a", "https://tec.openplanner.team/stops/H4ft134b"], ["https://tec.openplanner.team/stops/Blineco1", "https://tec.openplanner.team/stops/Blinhue2"], ["https://tec.openplanner.team/stops/N513alb", "https://tec.openplanner.team/stops/N513ara"], ["https://tec.openplanner.team/stops/X721agb", "https://tec.openplanner.team/stops/X721ajb"], ["https://tec.openplanner.team/stops/Lfllapi4", "https://tec.openplanner.team/stops/Lfllapi5"], ["https://tec.openplanner.team/stops/H4bv145a", "https://tec.openplanner.team/stops/H4os223a"], ["https://tec.openplanner.team/stops/X760aca", "https://tec.openplanner.team/stops/X760acb"], ["https://tec.openplanner.team/stops/LSygerm2", "https://tec.openplanner.team/stops/LWZponh1"], ["https://tec.openplanner.team/stops/H4mv191a", "https://tec.openplanner.team/stops/H4mv191b"], ["https://tec.openplanner.team/stops/N512avb", "https://tec.openplanner.team/stops/N512awb"], ["https://tec.openplanner.team/stops/Csoplac1", "https://tec.openplanner.team/stops/Csoplac2"], ["https://tec.openplanner.team/stops/Cbbcent1", "https://tec.openplanner.team/stops/Cbblacb2"], ["https://tec.openplanner.team/stops/H1bo105a", "https://tec.openplanner.team/stops/H1bo106a"], ["https://tec.openplanner.team/stops/LCLacbi1", "https://tec.openplanner.team/stops/LCLscie2"], ["https://tec.openplanner.team/stops/LSNbouh4", "https://tec.openplanner.team/stops/LSNchen3"], ["https://tec.openplanner.team/stops/Cmehels1", "https://tec.openplanner.team/stops/Cmesncv3"], ["https://tec.openplanner.team/stops/Bcrnpla4", "https://tec.openplanner.team/stops/Bcrnvic1"], ["https://tec.openplanner.team/stops/N558aea", "https://tec.openplanner.team/stops/N558ajb"], ["https://tec.openplanner.team/stops/Lanegal2", "https://tec.openplanner.team/stops/Lanpisc1"], ["https://tec.openplanner.team/stops/LeUkabe1", "https://tec.openplanner.team/stops/LeUmalm2"], ["https://tec.openplanner.team/stops/X638aka", "https://tec.openplanner.team/stops/X652aeb"], ["https://tec.openplanner.team/stops/H1ba105a", "https://tec.openplanner.team/stops/H1vt192a"], ["https://tec.openplanner.team/stops/N235aea", "https://tec.openplanner.team/stops/N235aeb"], ["https://tec.openplanner.team/stops/X670aaa", "https://tec.openplanner.team/stops/X670aab"], ["https://tec.openplanner.team/stops/H1ht135b", "https://tec.openplanner.team/stops/H1ht136a"], ["https://tec.openplanner.team/stops/N501hxb", "https://tec.openplanner.team/stops/N501hxy"], ["https://tec.openplanner.team/stops/H1bx105a", "https://tec.openplanner.team/stops/H1qv115a"], ["https://tec.openplanner.team/stops/LSZmonu4", "https://tec.openplanner.team/stops/LSZmonu5"], ["https://tec.openplanner.team/stops/Brsgece2", "https://tec.openplanner.team/stops/Brsgfso2"], ["https://tec.openplanner.team/stops/N543ajb", "https://tec.openplanner.team/stops/N543aoa"], ["https://tec.openplanner.team/stops/LSIcour2", "https://tec.openplanner.team/stops/LSIvieu2"], ["https://tec.openplanner.team/stops/H4ty308a", "https://tec.openplanner.team/stops/H4ty338b"], ["https://tec.openplanner.team/stops/H4mv187b", "https://tec.openplanner.team/stops/H4mv188a"], ["https://tec.openplanner.team/stops/X995aca", "https://tec.openplanner.team/stops/X995acb"], ["https://tec.openplanner.team/stops/H1fl140a", "https://tec.openplanner.team/stops/H1fl140b"], ["https://tec.openplanner.team/stops/H1mv240b", "https://tec.openplanner.team/stops/H1mv242a"], ["https://tec.openplanner.team/stops/LWZponb1", "https://tec.openplanner.team/stops/LWZponb2"], ["https://tec.openplanner.team/stops/Lsebelv2", "https://tec.openplanner.team/stops/Lsepaqu2"], ["https://tec.openplanner.team/stops/LFmbure2", "https://tec.openplanner.team/stops/LFmcarr1"], ["https://tec.openplanner.team/stops/H4ka182b", "https://tec.openplanner.team/stops/H4ka183a"], ["https://tec.openplanner.team/stops/N139aea", "https://tec.openplanner.team/stops/N140aaa"], ["https://tec.openplanner.team/stops/H4fr141a", "https://tec.openplanner.team/stops/H4ma401b"], ["https://tec.openplanner.team/stops/Bgnvdep1", "https://tec.openplanner.team/stops/Bgnvtil2"], ["https://tec.openplanner.team/stops/Cgzhour3", "https://tec.openplanner.team/stops/Cthrpoi1"], ["https://tec.openplanner.team/stops/LaM266-1", "https://tec.openplanner.team/stops/LaMbull2"], ["https://tec.openplanner.team/stops/X633aea", "https://tec.openplanner.team/stops/X633afb"], ["https://tec.openplanner.team/stops/X801avb", "https://tec.openplanner.team/stops/X801awb"], ["https://tec.openplanner.team/stops/Btstbbu1", "https://tec.openplanner.team/stops/N541ada"], ["https://tec.openplanner.team/stops/X601boa", "https://tec.openplanner.team/stops/X601bub"], ["https://tec.openplanner.team/stops/H4co142a", "https://tec.openplanner.team/stops/H4co144b"], ["https://tec.openplanner.team/stops/LnIkirc2", "https://tec.openplanner.team/stops/LnIschw1"], ["https://tec.openplanner.team/stops/LGLc12-3", "https://tec.openplanner.team/stops/LGLeg--2"], ["https://tec.openplanner.team/stops/Bblmcel1", "https://tec.openplanner.team/stops/Bcrbgro1"], ["https://tec.openplanner.team/stops/LCFmoul1", "https://tec.openplanner.team/stops/LHaodei2"], ["https://tec.openplanner.team/stops/X370aca", "https://tec.openplanner.team/stops/X370acb"], ["https://tec.openplanner.team/stops/N115aaa", "https://tec.openplanner.team/stops/N117baa"], ["https://tec.openplanner.team/stops/H4ce100a", "https://tec.openplanner.team/stops/H4mx119b"], ["https://tec.openplanner.team/stops/X901bbb", "https://tec.openplanner.team/stops/X922aba"], ["https://tec.openplanner.team/stops/LHTcerc1", "https://tec.openplanner.team/stops/LHTmonu1"], ["https://tec.openplanner.team/stops/LsHkirc1", "https://tec.openplanner.team/stops/LsHkreu3"], ["https://tec.openplanner.team/stops/Lghfore2", "https://tec.openplanner.team/stops/Lghreyn1"], ["https://tec.openplanner.team/stops/N251aba", "https://tec.openplanner.team/stops/N251abb"], ["https://tec.openplanner.team/stops/Bronn391", "https://tec.openplanner.team/stops/Bronn392"], ["https://tec.openplanner.team/stops/X621aba", "https://tec.openplanner.team/stops/X621abb"], ["https://tec.openplanner.team/stops/LmIvale4", "https://tec.openplanner.team/stops/LvAschr2"], ["https://tec.openplanner.team/stops/LVlleme4", "https://tec.openplanner.team/stops/LVlroua4"], ["https://tec.openplanner.team/stops/Blthbss1", "https://tec.openplanner.team/stops/Brxmhai1"], ["https://tec.openplanner.team/stops/H4lz122a", "https://tec.openplanner.team/stops/H4lz157a"], ["https://tec.openplanner.team/stops/H4vz368b", "https://tec.openplanner.team/stops/H4vz370b"], ["https://tec.openplanner.team/stops/LTaeg--2", "https://tec.openplanner.team/stops/LTatult1"], ["https://tec.openplanner.team/stops/X754ada", "https://tec.openplanner.team/stops/X754adb"], ["https://tec.openplanner.team/stops/X923aha", "https://tec.openplanner.team/stops/X923aia"], ["https://tec.openplanner.team/stops/H4ef163a", "https://tec.openplanner.team/stops/H4ef163b"], ["https://tec.openplanner.team/stops/N151aab", "https://tec.openplanner.team/stops/N151aib"], ["https://tec.openplanner.team/stops/Bcrncce1", "https://tec.openplanner.team/stops/Bcrncce2"], ["https://tec.openplanner.team/stops/LCxcouv2", "https://tec.openplanner.team/stops/LCxfawe1"], ["https://tec.openplanner.team/stops/N515aoa", "https://tec.openplanner.team/stops/NR27aaa"], ["https://tec.openplanner.team/stops/X659aga", "https://tec.openplanner.team/stops/X659ana"], ["https://tec.openplanner.team/stops/Canplch4", "https://tec.openplanner.team/stops/Clbhour1"], ["https://tec.openplanner.team/stops/Bixlaca1", "https://tec.openplanner.team/stops/Buccdef2"], ["https://tec.openplanner.team/stops/H4fr388a", "https://tec.openplanner.team/stops/H4fr393a"], ["https://tec.openplanner.team/stops/Caih1632", "https://tec.openplanner.team/stops/N543cbb"], ["https://tec.openplanner.team/stops/N134abb", "https://tec.openplanner.team/stops/N134aea"], ["https://tec.openplanner.team/stops/N502aab", "https://tec.openplanner.team/stops/N502aca"], ["https://tec.openplanner.team/stops/Cthalli1", "https://tec.openplanner.team/stops/Cthrlef2"], ["https://tec.openplanner.team/stops/X721abb", "https://tec.openplanner.team/stops/X721aia"], ["https://tec.openplanner.team/stops/N509bga", "https://tec.openplanner.team/stops/N511afb"], ["https://tec.openplanner.team/stops/N135aaa", "https://tec.openplanner.team/stops/N135aab"], ["https://tec.openplanner.team/stops/X925aib", "https://tec.openplanner.team/stops/X926aaa"], ["https://tec.openplanner.team/stops/H4bf107a", "https://tec.openplanner.team/stops/H4bf109b"], ["https://tec.openplanner.team/stops/X633aab", "https://tec.openplanner.team/stops/X633abb"], ["https://tec.openplanner.team/stops/H3go103a", "https://tec.openplanner.team/stops/H3lr116a"], ["https://tec.openplanner.team/stops/N505agb", "https://tec.openplanner.team/stops/N536acb"], ["https://tec.openplanner.team/stops/LHUgole2", "https://tec.openplanner.team/stops/LHUsauv3"], ["https://tec.openplanner.team/stops/LLSbajo2", "https://tec.openplanner.team/stops/LLStrid2"], ["https://tec.openplanner.team/stops/LVAgemm2", "https://tec.openplanner.team/stops/LVAwolf1"], ["https://tec.openplanner.team/stops/N170aea", "https://tec.openplanner.team/stops/N571aaa"], ["https://tec.openplanner.team/stops/H1bd103a", "https://tec.openplanner.team/stops/H1hq129a"], ["https://tec.openplanner.team/stops/Balswsa1", "https://tec.openplanner.team/stops/Balswsa2"], ["https://tec.openplanner.team/stops/Cbmgrav1", "https://tec.openplanner.team/stops/Cbmgrav2"], ["https://tec.openplanner.team/stops/H4ir161a", "https://tec.openplanner.team/stops/H4vd230a"], ["https://tec.openplanner.team/stops/LHTbaud1", "https://tec.openplanner.team/stops/LHTdelh1"], ["https://tec.openplanner.team/stops/N309acb", "https://tec.openplanner.team/stops/N350aea"], ["https://tec.openplanner.team/stops/N506aka", "https://tec.openplanner.team/stops/N558aab"], ["https://tec.openplanner.team/stops/N511aja", "https://tec.openplanner.team/stops/N511ala"], ["https://tec.openplanner.team/stops/X992ajb", "https://tec.openplanner.team/stops/X992akb"], ["https://tec.openplanner.team/stops/H4we135b", "https://tec.openplanner.team/stops/H4we137c"], ["https://tec.openplanner.team/stops/LELhard2", "https://tec.openplanner.team/stops/LHCquat4"], ["https://tec.openplanner.team/stops/Bbosdra2", "https://tec.openplanner.team/stops/Btiegoo2"], ["https://tec.openplanner.team/stops/LAYchal1", "https://tec.openplanner.team/stops/LAYecol2"], ["https://tec.openplanner.team/stops/LAYcorn2", "https://tec.openplanner.team/stops/LAYfoot1"], ["https://tec.openplanner.team/stops/X911aja", "https://tec.openplanner.team/stops/X911anb"], ["https://tec.openplanner.team/stops/N261aaa", "https://tec.openplanner.team/stops/N261aab"], ["https://tec.openplanner.team/stops/X653adb", "https://tec.openplanner.team/stops/X653adc"], ["https://tec.openplanner.team/stops/LBKmare1", "https://tec.openplanner.team/stops/LBKmoes2"], ["https://tec.openplanner.team/stops/H4te253b", "https://tec.openplanner.team/stops/H4te261a"], ["https://tec.openplanner.team/stops/N501dwa", "https://tec.openplanner.team/stops/N501kha"], ["https://tec.openplanner.team/stops/N527ada", "https://tec.openplanner.team/stops/N527adb"], ["https://tec.openplanner.team/stops/H5bl115a", "https://tec.openplanner.team/stops/H5bl115b"], ["https://tec.openplanner.team/stops/Clbbonn1", "https://tec.openplanner.team/stops/Clbbonn2"], ["https://tec.openplanner.team/stops/H5is170b", "https://tec.openplanner.team/stops/H5is171b"], ["https://tec.openplanner.team/stops/LJUfort1", "https://tec.openplanner.team/stops/Llaacca1"], ["https://tec.openplanner.team/stops/N151aba", "https://tec.openplanner.team/stops/N151akb"], ["https://tec.openplanner.team/stops/Bhalh312", "https://tec.openplanner.team/stops/Bhalrat2"], ["https://tec.openplanner.team/stops/Lmnhorl3", "https://tec.openplanner.team/stops/Lsmstad2"], ["https://tec.openplanner.team/stops/H4gu108c", "https://tec.openplanner.team/stops/H4we138a"], ["https://tec.openplanner.team/stops/LeYroth2", "https://tec.openplanner.team/stops/LhSwind2"], ["https://tec.openplanner.team/stops/X765abb", "https://tec.openplanner.team/stops/X765afa"], ["https://tec.openplanner.team/stops/H1bu136a", "https://tec.openplanner.team/stops/H1vb147a"], ["https://tec.openplanner.team/stops/N501caa", "https://tec.openplanner.team/stops/N501cab"], ["https://tec.openplanner.team/stops/H1ag104b", "https://tec.openplanner.team/stops/H1ag105b"], ["https://tec.openplanner.team/stops/X615agb", "https://tec.openplanner.team/stops/X615aib"], ["https://tec.openplanner.team/stops/N528aua", "https://tec.openplanner.team/stops/N528ava"], ["https://tec.openplanner.team/stops/N542aha", "https://tec.openplanner.team/stops/N542aia"], ["https://tec.openplanner.team/stops/Cvpcour1", "https://tec.openplanner.team/stops/Cvpplan1"], ["https://tec.openplanner.team/stops/H4og215b", "https://tec.openplanner.team/stops/H4to136b"], ["https://tec.openplanner.team/stops/Bwatcpl2", "https://tec.openplanner.team/stops/Bwatrsg1"], ["https://tec.openplanner.team/stops/N201ara", "https://tec.openplanner.team/stops/N201arb"], ["https://tec.openplanner.team/stops/H1ha188a", "https://tec.openplanner.team/stops/H1ha196a"], ["https://tec.openplanner.team/stops/Bhtipir2", "https://tec.openplanner.team/stops/Bhtipir3"], ["https://tec.openplanner.team/stops/LSNgerm1", "https://tec.openplanner.team/stops/LWevalf2"], ["https://tec.openplanner.team/stops/X396aba", "https://tec.openplanner.team/stops/X396acb"], ["https://tec.openplanner.team/stops/N511aha", "https://tec.openplanner.team/stops/N511ahb"], ["https://tec.openplanner.team/stops/LTgchar7", "https://tec.openplanner.team/stops/LTgcime2"], ["https://tec.openplanner.team/stops/X636aba", "https://tec.openplanner.team/stops/X670ala"], ["https://tec.openplanner.team/stops/N501fsa", "https://tec.openplanner.team/stops/N501fub"], ["https://tec.openplanner.team/stops/LDmdomm2", "https://tec.openplanner.team/stops/LDmeg--2"], ["https://tec.openplanner.team/stops/Llgtill1", "https://tec.openplanner.team/stops/Llgvalu1"], ["https://tec.openplanner.team/stops/Bboseco1", "https://tec.openplanner.team/stops/Bbosgar1"], ["https://tec.openplanner.team/stops/LFPchat2", "https://tec.openplanner.team/stops/LFProt-1"], ["https://tec.openplanner.team/stops/Llgegwa1", "https://tec.openplanner.team/stops/Llgplat2"], ["https://tec.openplanner.team/stops/Cgzchab3", "https://tec.openplanner.team/stops/Cgzfarc1"], ["https://tec.openplanner.team/stops/H4ef110a", "https://tec.openplanner.team/stops/H4ef113c"], ["https://tec.openplanner.team/stops/N576aka", "https://tec.openplanner.team/stops/N576akb"], ["https://tec.openplanner.team/stops/Bneeblo2", "https://tec.openplanner.team/stops/Bneesjo1"], ["https://tec.openplanner.team/stops/N506alb", "https://tec.openplanner.team/stops/N506boa"], ["https://tec.openplanner.team/stops/LCTfair1", "https://tec.openplanner.team/stops/LCTfair2"], ["https://tec.openplanner.team/stops/Bsdavpe1", "https://tec.openplanner.team/stops/Csdnive2"], ["https://tec.openplanner.team/stops/H2ec108b", "https://tec.openplanner.team/stops/H2ec110b"], ["https://tec.openplanner.team/stops/LHhvivi2", "https://tec.openplanner.team/stops/NL30ajb"], ["https://tec.openplanner.team/stops/H1gi120d", "https://tec.openplanner.team/stops/H1gi122a"], ["https://tec.openplanner.team/stops/N117bda", "https://tec.openplanner.team/stops/N117bdb"], ["https://tec.openplanner.team/stops/NH01aqb", "https://tec.openplanner.team/stops/NH01ara"], ["https://tec.openplanner.team/stops/N507aqb", "https://tec.openplanner.team/stops/N516aqa"], ["https://tec.openplanner.team/stops/H5fl100b", "https://tec.openplanner.team/stops/H5wo129a"], ["https://tec.openplanner.team/stops/Bsgimor1", "https://tec.openplanner.team/stops/Bsgipmo1"], ["https://tec.openplanner.team/stops/X740afa", "https://tec.openplanner.team/stops/X759afa"], ["https://tec.openplanner.team/stops/Cciqueu2", "https://tec.openplanner.team/stops/Ccisart1"], ["https://tec.openplanner.team/stops/Bllnpaf2", "https://tec.openplanner.team/stops/Bllnpaf4"], ["https://tec.openplanner.team/stops/X731akb", "https://tec.openplanner.team/stops/X731amb"], ["https://tec.openplanner.team/stops/X614aca", "https://tec.openplanner.team/stops/X614ada"], ["https://tec.openplanner.team/stops/N166aaa", "https://tec.openplanner.team/stops/N166ada"], ["https://tec.openplanner.team/stops/X623aca", "https://tec.openplanner.team/stops/X623acb"], ["https://tec.openplanner.team/stops/N123abb", "https://tec.openplanner.team/stops/N123aca"], ["https://tec.openplanner.team/stops/H5at111a", "https://tec.openplanner.team/stops/H5at111b"], ["https://tec.openplanner.team/stops/Bvircsj2", "https://tec.openplanner.team/stops/Bvirmbr1"], ["https://tec.openplanner.team/stops/H2ec101a", "https://tec.openplanner.team/stops/H2ec101b"], ["https://tec.openplanner.team/stops/X947abb", "https://tec.openplanner.team/stops/X948aia"], ["https://tec.openplanner.team/stops/Lstbota3", "https://tec.openplanner.team/stops/LTIdamr1"], ["https://tec.openplanner.team/stops/LSZclem1", "https://tec.openplanner.team/stops/LTgsous1"], ["https://tec.openplanner.team/stops/Bblagar1", "https://tec.openplanner.team/stops/Bblagard"], ["https://tec.openplanner.team/stops/LVEdTEC1", "https://tec.openplanner.team/stops/LVEjard1"], ["https://tec.openplanner.team/stops/Cvlcalv1", "https://tec.openplanner.team/stops/Cvlcalv2"], ["https://tec.openplanner.team/stops/X756acb", "https://tec.openplanner.team/stops/X756adb"], ["https://tec.openplanner.team/stops/LLmpt--1", "https://tec.openplanner.team/stops/LLmvand1"], ["https://tec.openplanner.team/stops/LHAheml1", "https://tec.openplanner.team/stops/LHAlacr2"], ["https://tec.openplanner.team/stops/N153aba", "https://tec.openplanner.team/stops/N153ada"], ["https://tec.openplanner.team/stops/X542aab", "https://tec.openplanner.team/stops/X542abb"], ["https://tec.openplanner.team/stops/H4pl116a", "https://tec.openplanner.team/stops/H4pl116b"], ["https://tec.openplanner.team/stops/X641afb", "https://tec.openplanner.team/stops/X641aqa"], ["https://tec.openplanner.team/stops/N212afa", "https://tec.openplanner.team/stops/N212afb"], ["https://tec.openplanner.team/stops/Btubeur1", "https://tec.openplanner.team/stops/Btubnco2"], ["https://tec.openplanner.team/stops/Cmmbmad1", "https://tec.openplanner.team/stops/Cmmpjou4"], ["https://tec.openplanner.team/stops/N134afa", "https://tec.openplanner.team/stops/N153abb"], ["https://tec.openplanner.team/stops/Lflheid2", "https://tec.openplanner.team/stops/Lqbchat1"], ["https://tec.openplanner.team/stops/N501kmy", "https://tec.openplanner.team/stops/N501nea"], ["https://tec.openplanner.team/stops/LBzec--1", "https://tec.openplanner.team/stops/LCewaut1"], ["https://tec.openplanner.team/stops/X902afc", "https://tec.openplanner.team/stops/X999aia"], ["https://tec.openplanner.team/stops/H2go116a", "https://tec.openplanner.team/stops/H2go116b"], ["https://tec.openplanner.team/stops/Lmldama1", "https://tec.openplanner.team/stops/Lmlec--4"], ["https://tec.openplanner.team/stops/LAWbrou2", "https://tec.openplanner.team/stops/LBIpont1"], ["https://tec.openplanner.team/stops/LESflag1", "https://tec.openplanner.team/stops/LLNcime1"], ["https://tec.openplanner.team/stops/LBIcarg1", "https://tec.openplanner.team/stops/Lmlpech2"], ["https://tec.openplanner.team/stops/H2ca105a", "https://tec.openplanner.team/stops/H2ca116a"], ["https://tec.openplanner.team/stops/LLtrout2", "https://tec.openplanner.team/stops/NL57aha"], ["https://tec.openplanner.team/stops/Crcpla2", "https://tec.openplanner.team/stops/Crcplac4"], ["https://tec.openplanner.team/stops/N231aga", "https://tec.openplanner.team/stops/N231aha"], ["https://tec.openplanner.team/stops/H4pq119b", "https://tec.openplanner.team/stops/H4pq120b"], ["https://tec.openplanner.team/stops/H1po135a", "https://tec.openplanner.team/stops/H1po135d"], ["https://tec.openplanner.team/stops/LCscarr1", "https://tec.openplanner.team/stops/LCscarr2"], ["https://tec.openplanner.team/stops/Crswaut1", "https://tec.openplanner.team/stops/N543cnb"], ["https://tec.openplanner.team/stops/Bmarlor2", "https://tec.openplanner.team/stops/Bmarvil1"], ["https://tec.openplanner.team/stops/LVBeg--2", "https://tec.openplanner.team/stops/LVBvaux1"], ["https://tec.openplanner.team/stops/Cselibe2", "https://tec.openplanner.team/stops/Csemacq1"], ["https://tec.openplanner.team/stops/LeUmalm1", "https://tec.openplanner.team/stops/LeUoe541"], ["https://tec.openplanner.team/stops/N101aab", "https://tec.openplanner.team/stops/N101aia"], ["https://tec.openplanner.team/stops/N509aub", "https://tec.openplanner.team/stops/N509ava"], ["https://tec.openplanner.team/stops/H1by102a", "https://tec.openplanner.team/stops/H1by106b"], ["https://tec.openplanner.team/stops/N232asa", "https://tec.openplanner.team/stops/N270aga"], ["https://tec.openplanner.team/stops/Cmmjami1", "https://tec.openplanner.team/stops/Cmmjami3"], ["https://tec.openplanner.team/stops/X818apb", "https://tec.openplanner.team/stops/X818aqb"], ["https://tec.openplanner.team/stops/X742aga", "https://tec.openplanner.team/stops/X743aaa"], ["https://tec.openplanner.team/stops/X921aha", "https://tec.openplanner.team/stops/X921ahb"], ["https://tec.openplanner.team/stops/H1ci106a", "https://tec.openplanner.team/stops/H1fr151b"], ["https://tec.openplanner.team/stops/LWAathe2", "https://tec.openplanner.team/stops/LWAfabr1"], ["https://tec.openplanner.team/stops/Cvssncv1", "https://tec.openplanner.team/stops/Cvssncv2"], ["https://tec.openplanner.team/stops/Cgocnor2", "https://tec.openplanner.team/stops/Cgoetun5"], ["https://tec.openplanner.team/stops/Cptchea1", "https://tec.openplanner.team/stops/H2tz117a"], ["https://tec.openplanner.team/stops/X602ana", "https://tec.openplanner.team/stops/X602apa"], ["https://tec.openplanner.team/stops/LOLbout1", "https://tec.openplanner.team/stops/LOLcroi1"], ["https://tec.openplanner.team/stops/N531afh", "https://tec.openplanner.team/stops/N534bma"], ["https://tec.openplanner.team/stops/LFyanto2", "https://tec.openplanner.team/stops/LFyWarc1"], ["https://tec.openplanner.team/stops/H1ml110a", "https://tec.openplanner.team/stops/H1ml110b"], ["https://tec.openplanner.team/stops/H4th140b", "https://tec.openplanner.team/stops/H4th142b"], ["https://tec.openplanner.team/stops/LBhsign1", "https://tec.openplanner.team/stops/LMRmont1"], ["https://tec.openplanner.team/stops/Lfhcoop2", "https://tec.openplanner.team/stops/Lfhpast1"], ["https://tec.openplanner.team/stops/H1qu101b", "https://tec.openplanner.team/stops/H1qu111a"], ["https://tec.openplanner.team/stops/Canplch3", "https://tec.openplanner.team/stops/Canplch4"], ["https://tec.openplanner.team/stops/X825abb", "https://tec.openplanner.team/stops/X825agb"], ["https://tec.openplanner.team/stops/Cmtchas1", "https://tec.openplanner.team/stops/Cmtduch1"], ["https://tec.openplanner.team/stops/LTaabba2", "https://tec.openplanner.team/stops/LTaeg--2"], ["https://tec.openplanner.team/stops/Lhrdeme2", "https://tec.openplanner.team/stops/Lhrpwan2"], ["https://tec.openplanner.team/stops/N106akb", "https://tec.openplanner.team/stops/N137aja"], ["https://tec.openplanner.team/stops/H4av105a", "https://tec.openplanner.team/stops/H4av107b"], ["https://tec.openplanner.team/stops/X782aga", "https://tec.openplanner.team/stops/X782ajb"], ["https://tec.openplanner.team/stops/LWOpier1", "https://tec.openplanner.team/stops/LWOruis1"], ["https://tec.openplanner.team/stops/Bmlnpab2", "https://tec.openplanner.team/stops/Bmlnsms2"], ["https://tec.openplanner.team/stops/H4te250a", "https://tec.openplanner.team/stops/H4te256b"], ["https://tec.openplanner.team/stops/LCReg--1", "https://tec.openplanner.team/stops/LCRrape1"], ["https://tec.openplanner.team/stops/H4pe124b", "https://tec.openplanner.team/stops/H4pe125b"], ["https://tec.openplanner.team/stops/N501ckb", "https://tec.openplanner.team/stops/N501joa"], ["https://tec.openplanner.team/stops/X639ara", "https://tec.openplanner.team/stops/X639asb"], ["https://tec.openplanner.team/stops/LCpvill2", "https://tec.openplanner.team/stops/LWM759-1"], ["https://tec.openplanner.team/stops/N232bvb", "https://tec.openplanner.team/stops/N260aea"], ["https://tec.openplanner.team/stops/H3lr113b", "https://tec.openplanner.team/stops/H3lr132a"], ["https://tec.openplanner.team/stops/Llgnaes2", "https://tec.openplanner.team/stops/Llgnani1"], ["https://tec.openplanner.team/stops/N301aca", "https://tec.openplanner.team/stops/N301ada"], ["https://tec.openplanner.team/stops/LREgare1", "https://tec.openplanner.team/stops/LREgrot1"], ["https://tec.openplanner.team/stops/Llgatla2", "https://tec.openplanner.team/stops/Llginte1"], ["https://tec.openplanner.team/stops/X664amb", "https://tec.openplanner.team/stops/X664ana"], ["https://tec.openplanner.team/stops/Cgyaudu2", "https://tec.openplanner.team/stops/Cgyhstj2"], ["https://tec.openplanner.team/stops/X982aca", "https://tec.openplanner.team/stops/X982bta"], ["https://tec.openplanner.team/stops/Lglcoun2", "https://tec.openplanner.team/stops/Lglsana2"], ["https://tec.openplanner.team/stops/LaAneul1", "https://tec.openplanner.team/stops/LaAneul2"], ["https://tec.openplanner.team/stops/N581abb", "https://tec.openplanner.team/stops/N581aca"], ["https://tec.openplanner.team/stops/X982axb", "https://tec.openplanner.team/stops/X982cda"], ["https://tec.openplanner.team/stops/N207ada", "https://tec.openplanner.team/stops/N207adb"], ["https://tec.openplanner.team/stops/Lghbonn2", "https://tec.openplanner.team/stops/Lghremy1"], ["https://tec.openplanner.team/stops/X886aba", "https://tec.openplanner.team/stops/X886aca"], ["https://tec.openplanner.team/stops/N506ara", "https://tec.openplanner.team/stops/N506asb"], ["https://tec.openplanner.team/stops/H1mm125d", "https://tec.openplanner.team/stops/H1mm127b"], ["https://tec.openplanner.team/stops/N515agb", "https://tec.openplanner.team/stops/N515aja"], ["https://tec.openplanner.team/stops/X771aba", "https://tec.openplanner.team/stops/X771aeb"], ["https://tec.openplanner.team/stops/Lagmoli2", "https://tec.openplanner.team/stops/Llgpari1"], ["https://tec.openplanner.team/stops/Cli4bra2", "https://tec.openplanner.team/stops/Clulidl2"], ["https://tec.openplanner.team/stops/Bcsebde2", "https://tec.openplanner.team/stops/Bcseeco1"], ["https://tec.openplanner.team/stops/H2gy101b", "https://tec.openplanner.team/stops/H2gy106b"], ["https://tec.openplanner.team/stops/Lheazz-1", "https://tec.openplanner.team/stops/Lheente1"], ["https://tec.openplanner.team/stops/LSTgran1", "https://tec.openplanner.team/stops/LSTgran2"], ["https://tec.openplanner.team/stops/LCPcomb1", "https://tec.openplanner.team/stops/LCPcomb2"], ["https://tec.openplanner.team/stops/Cdagoss1", "https://tec.openplanner.team/stops/Cmaest1"], ["https://tec.openplanner.team/stops/LFFmonu1", "https://tec.openplanner.team/stops/LFFmonu2"], ["https://tec.openplanner.team/stops/N117ama", "https://tec.openplanner.team/stops/N117aqb"], ["https://tec.openplanner.team/stops/Cnahahe2", "https://tec.openplanner.team/stops/Cnamonn2"], ["https://tec.openplanner.team/stops/Cmregli4", "https://tec.openplanner.team/stops/N162abb"], ["https://tec.openplanner.team/stops/LAvcani2", "https://tec.openplanner.team/stops/LMXroye2"], ["https://tec.openplanner.team/stops/H1bo103a", "https://tec.openplanner.team/stops/H1sg145b"], ["https://tec.openplanner.team/stops/H1eu105b", "https://tec.openplanner.team/stops/H1sb145b"], ["https://tec.openplanner.team/stops/Cgxcite2", "https://tec.openplanner.team/stops/Cgxptt1"], ["https://tec.openplanner.team/stops/Cronova1", "https://tec.openplanner.team/stops/Crowall1"], ["https://tec.openplanner.team/stops/LROcham2", "https://tec.openplanner.team/stops/LWabela2"], ["https://tec.openplanner.team/stops/Lstbota2", "https://tec.openplanner.team/stops/Lstchim2"], ["https://tec.openplanner.team/stops/Lbrlama1", "https://tec.openplanner.team/stops/Lgrfort1"], ["https://tec.openplanner.team/stops/X723acb", "https://tec.openplanner.team/stops/X723ala"], ["https://tec.openplanner.team/stops/Cjuhden1", "https://tec.openplanner.team/stops/Cjuhden4"], ["https://tec.openplanner.team/stops/X619ahb", "https://tec.openplanner.team/stops/X619aka"], ["https://tec.openplanner.team/stops/Lhr3jui1", "https://tec.openplanner.team/stops/Lhrbrou2"], ["https://tec.openplanner.team/stops/H5el101b", "https://tec.openplanner.team/stops/H5el110b"], ["https://tec.openplanner.team/stops/X641asb", "https://tec.openplanner.team/stops/X821aaa"], ["https://tec.openplanner.team/stops/H1ms305a", "https://tec.openplanner.team/stops/H1ob361b"], ["https://tec.openplanner.team/stops/H1ms942a", "https://tec.openplanner.team/stops/H1ni323b"], ["https://tec.openplanner.team/stops/LFEland1", "https://tec.openplanner.team/stops/LFtcarr2"], ["https://tec.openplanner.team/stops/H4ca121b", "https://tec.openplanner.team/stops/H4ca123a"], ["https://tec.openplanner.team/stops/X897aub", "https://tec.openplanner.team/stops/X897ava"], ["https://tec.openplanner.team/stops/H4bc108a", "https://tec.openplanner.team/stops/H4wr177a"], ["https://tec.openplanner.team/stops/Lsephar1", "https://tec.openplanner.team/stops/Lsephar2"], ["https://tec.openplanner.team/stops/X646aba", "https://tec.openplanner.team/stops/X646aca"], ["https://tec.openplanner.team/stops/H2fy120c", "https://tec.openplanner.team/stops/H2mg142b"], ["https://tec.openplanner.team/stops/Crorpai1", "https://tec.openplanner.team/stops/Crorpai2"], ["https://tec.openplanner.team/stops/NR10aab", "https://tec.openplanner.team/stops/NR10aba"], ["https://tec.openplanner.team/stops/H1by108e", "https://tec.openplanner.team/stops/H1sy143d"], ["https://tec.openplanner.team/stops/Csbberg1", "https://tec.openplanner.team/stops/H1fv102b"], ["https://tec.openplanner.team/stops/LAUjean1", "https://tec.openplanner.team/stops/LSJlabe2"], ["https://tec.openplanner.team/stops/Bjodgai1", "https://tec.openplanner.team/stops/Bmlngvi1"], ["https://tec.openplanner.team/stops/X633agc", "https://tec.openplanner.team/stops/X653adc"], ["https://tec.openplanner.team/stops/LAMceri2", "https://tec.openplanner.team/stops/LAMcloc1"], ["https://tec.openplanner.team/stops/LFLcher2", "https://tec.openplanner.team/stops/LFLetoi2"], ["https://tec.openplanner.team/stops/Cfrcham1", "https://tec.openplanner.team/stops/Cfrplac6"], ["https://tec.openplanner.team/stops/LDLboul1", "https://tec.openplanner.team/stops/LDLheid1"], ["https://tec.openplanner.team/stops/X672acb", "https://tec.openplanner.team/stops/X672alb"], ["https://tec.openplanner.team/stops/N232aja", "https://tec.openplanner.team/stops/N232ajb"], ["https://tec.openplanner.team/stops/LLAcalv1", "https://tec.openplanner.team/stops/LLAcalv2"], ["https://tec.openplanner.team/stops/H5fl102c", "https://tec.openplanner.team/stops/H5fl103b"], ["https://tec.openplanner.team/stops/X307aba", "https://tec.openplanner.team/stops/X359agb"], ["https://tec.openplanner.team/stops/LNCmarc1", "https://tec.openplanner.team/stops/LRachen*"], ["https://tec.openplanner.team/stops/H4er125b", "https://tec.openplanner.team/stops/H4wu420a"], ["https://tec.openplanner.team/stops/Cladura4", "https://tec.openplanner.team/stops/NC23aeb"], ["https://tec.openplanner.team/stops/N166aba", "https://tec.openplanner.team/stops/N565aia"], ["https://tec.openplanner.team/stops/H1fr113a", "https://tec.openplanner.team/stops/H1lb136a"], ["https://tec.openplanner.team/stops/N308ahb", "https://tec.openplanner.team/stops/N308ama"], ["https://tec.openplanner.team/stops/H4hq129a", "https://tec.openplanner.team/stops/H4hq133a"], ["https://tec.openplanner.team/stops/X723aea", "https://tec.openplanner.team/stops/X766aga"], ["https://tec.openplanner.team/stops/LLirout1", "https://tec.openplanner.team/stops/LLirout2"], ["https://tec.openplanner.team/stops/LFMstat1", "https://tec.openplanner.team/stops/LFMvoge1"], ["https://tec.openplanner.team/stops/N579aaa", "https://tec.openplanner.team/stops/N580aaa"], ["https://tec.openplanner.team/stops/Llg20ao1", "https://tec.openplanner.team/stops/Llgcroi4"], ["https://tec.openplanner.team/stops/Bhenron2", "https://tec.openplanner.team/stops/Bquevel2"], ["https://tec.openplanner.team/stops/X870aeb", "https://tec.openplanner.team/stops/X870aga"], ["https://tec.openplanner.team/stops/Llgstev2", "https://tec.openplanner.team/stops/Llgvalu2"], ["https://tec.openplanner.team/stops/Bblaniv1", "https://tec.openplanner.team/stops/Bblavhu2"], ["https://tec.openplanner.team/stops/X802akb", "https://tec.openplanner.team/stops/X802aza"], ["https://tec.openplanner.team/stops/N141anb", "https://tec.openplanner.team/stops/N141aoa"], ["https://tec.openplanner.team/stops/X857aab", "https://tec.openplanner.team/stops/X857aba"], ["https://tec.openplanner.team/stops/X982cea", "https://tec.openplanner.team/stops/X983acb"], ["https://tec.openplanner.team/stops/X644aba", "https://tec.openplanner.team/stops/X644aca"], ["https://tec.openplanner.team/stops/Cdasama1", "https://tec.openplanner.team/stops/CMsacm2"], ["https://tec.openplanner.team/stops/LESchpl1", "https://tec.openplanner.team/stops/LPOpass2"], ["https://tec.openplanner.team/stops/N501cba", "https://tec.openplanner.team/stops/N501mpa"], ["https://tec.openplanner.team/stops/H3so153a", "https://tec.openplanner.team/stops/H3so160a"], ["https://tec.openplanner.team/stops/X651adb", "https://tec.openplanner.team/stops/X651afb"], ["https://tec.openplanner.team/stops/Llgfont1", "https://tec.openplanner.team/stops/Llghull2"], ["https://tec.openplanner.team/stops/Cgzoctr2", "https://tec.openplanner.team/stops/Cthha501"], ["https://tec.openplanner.team/stops/Cfrplac1", "https://tec.openplanner.team/stops/Cfrplac4"], ["https://tec.openplanner.team/stops/LFOchpl1", "https://tec.openplanner.team/stops/LFOmc--1"], ["https://tec.openplanner.team/stops/X756aja", "https://tec.openplanner.team/stops/X756ajb"], ["https://tec.openplanner.team/stops/N211aeb", "https://tec.openplanner.team/stops/N211awb"], ["https://tec.openplanner.team/stops/Ctrplac1", "https://tec.openplanner.team/stops/Ctrrpla2"], ["https://tec.openplanner.team/stops/X804bua", "https://tec.openplanner.team/stops/X827aab"], ["https://tec.openplanner.team/stops/X731acc", "https://tec.openplanner.team/stops/X731aja"], ["https://tec.openplanner.team/stops/Lve-isi2", "https://tec.openplanner.team/stops/Lvepris1"], ["https://tec.openplanner.team/stops/Cbfbies1", "https://tec.openplanner.team/stops/Cbfgare1"], ["https://tec.openplanner.team/stops/LHNgend3", "https://tec.openplanner.team/stops/LVPcoeu1"], ["https://tec.openplanner.team/stops/Cbcegli6", "https://tec.openplanner.team/stops/Cbckios1"], ["https://tec.openplanner.team/stops/H4an105b", "https://tec.openplanner.team/stops/H4rs119b"], ["https://tec.openplanner.team/stops/Cgoboll4", "https://tec.openplanner.team/stops/Cgostex1"], ["https://tec.openplanner.team/stops/LCnvill1", "https://tec.openplanner.team/stops/LLUadze1"], ["https://tec.openplanner.team/stops/X547afb", "https://tec.openplanner.team/stops/X547ana"], ["https://tec.openplanner.team/stops/LSDvill1", "https://tec.openplanner.team/stops/LSDvill2"], ["https://tec.openplanner.team/stops/X358acc", "https://tec.openplanner.team/stops/X991aaa"], ["https://tec.openplanner.team/stops/Bottcbp1", "https://tec.openplanner.team/stops/Bottpar1"], ["https://tec.openplanner.team/stops/LOMdTEC2", "https://tec.openplanner.team/stops/LOMware2"], ["https://tec.openplanner.team/stops/X601alb", "https://tec.openplanner.team/stops/X601ctb"], ["https://tec.openplanner.team/stops/LAivill1", "https://tec.openplanner.team/stops/Lccawir1"], ["https://tec.openplanner.team/stops/Cmlhubi1", "https://tec.openplanner.team/stops/Cmlipsm2"], ["https://tec.openplanner.team/stops/X738acb", "https://tec.openplanner.team/stops/X738ada"], ["https://tec.openplanner.team/stops/Cslegli1", "https://tec.openplanner.team/stops/Cslegli2"], ["https://tec.openplanner.team/stops/N513bib", "https://tec.openplanner.team/stops/N516acb"], ["https://tec.openplanner.team/stops/LFemoul2", "https://tec.openplanner.team/stops/LRIhous2"], ["https://tec.openplanner.team/stops/N232aya", "https://tec.openplanner.team/stops/N232bob"], ["https://tec.openplanner.team/stops/H4wi168b", "https://tec.openplanner.team/stops/H4wi169b"], ["https://tec.openplanner.team/stops/Bgoegma1", "https://tec.openplanner.team/stops/Bpiepnd2"], ["https://tec.openplanner.team/stops/LHrcarr1", "https://tec.openplanner.team/stops/LHrparc1"], ["https://tec.openplanner.team/stops/H1vt193b", "https://tec.openplanner.team/stops/H1vt196b"], ["https://tec.openplanner.team/stops/LGorysa2", "https://tec.openplanner.team/stops/Lpeflec2"], ["https://tec.openplanner.team/stops/H1sb145a", "https://tec.openplanner.team/stops/H1sb148a"], ["https://tec.openplanner.team/stops/X802adb", "https://tec.openplanner.team/stops/X802aea"], ["https://tec.openplanner.team/stops/Llglamb1", "https://tec.openplanner.team/stops/Llgsorb1"], ["https://tec.openplanner.team/stops/Bblamsj1", "https://tec.openplanner.team/stops/Bblamsj2"], ["https://tec.openplanner.team/stops/Bhoealt2", "https://tec.openplanner.team/stops/Btiegar1"], ["https://tec.openplanner.team/stops/X601agb", "https://tec.openplanner.team/stops/X663ahd"], ["https://tec.openplanner.team/stops/N505aca", "https://tec.openplanner.team/stops/N505afb"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X670aha"], ["https://tec.openplanner.team/stops/LVefont1", "https://tec.openplanner.team/stops/LVevill2"], ["https://tec.openplanner.team/stops/H4ff118b", "https://tec.openplanner.team/stops/H4ff122a"], ["https://tec.openplanner.team/stops/LhPhale2", "https://tec.openplanner.team/stops/LvAwere1"], ["https://tec.openplanner.team/stops/N202ahb", "https://tec.openplanner.team/stops/N204ajb"], ["https://tec.openplanner.team/stops/Cgyruis2", "https://tec.openplanner.team/stops/CMsartc2"], ["https://tec.openplanner.team/stops/Lghjans2", "https://tec.openplanner.team/stops/Lghviad1"], ["https://tec.openplanner.team/stops/Llgcbat1", "https://tec.openplanner.team/stops/Llgoise2"], ["https://tec.openplanner.team/stops/LaHzoll*", "https://tec.openplanner.team/stops/LmHflor2"], ["https://tec.openplanner.team/stops/H5st163b", "https://tec.openplanner.team/stops/H5st168a"], ["https://tec.openplanner.team/stops/N501beb", "https://tec.openplanner.team/stops/N501nca"], ["https://tec.openplanner.team/stops/X804apa", "https://tec.openplanner.team/stops/X804apb"], ["https://tec.openplanner.team/stops/LENchem1", "https://tec.openplanner.team/stops/LENchem2"], ["https://tec.openplanner.team/stops/LCReg--2", "https://tec.openplanner.team/stops/LCRrape1"], ["https://tec.openplanner.team/stops/Lpedeta2", "https://tec.openplanner.team/stops/LTAchau2"], ["https://tec.openplanner.team/stops/Llgboux1", "https://tec.openplanner.team/stops/Lvtlomb4"], ["https://tec.openplanner.team/stops/H4ws159a", "https://tec.openplanner.team/stops/H4ws160b"], ["https://tec.openplanner.team/stops/H1ms305a", "https://tec.openplanner.team/stops/H1ms313a"], ["https://tec.openplanner.team/stops/LFtcarr1", "https://tec.openplanner.team/stops/LFtcarr2"], ["https://tec.openplanner.team/stops/N153afa", "https://tec.openplanner.team/stops/N153afb"], ["https://tec.openplanner.team/stops/H4hq133c", "https://tec.openplanner.team/stops/H4hq133d"], ["https://tec.openplanner.team/stops/H1hw124b", "https://tec.openplanner.team/stops/H1ls105a"], ["https://tec.openplanner.team/stops/LFrcent1", "https://tec.openplanner.team/stops/LFReg--1"], ["https://tec.openplanner.team/stops/Caibino1", "https://tec.openplanner.team/stops/Caiegli1"], ["https://tec.openplanner.team/stops/LERboss2", "https://tec.openplanner.team/stops/LERpouh1"], ["https://tec.openplanner.team/stops/H1le117a", "https://tec.openplanner.team/stops/H1le120b"], ["https://tec.openplanner.team/stops/X804awb", "https://tec.openplanner.team/stops/X804bgb"], ["https://tec.openplanner.team/stops/N531aib", "https://tec.openplanner.team/stops/N531amb"], ["https://tec.openplanner.team/stops/LHrchat2", "https://tec.openplanner.team/stops/LHreg--1"], ["https://tec.openplanner.team/stops/X820aga", "https://tec.openplanner.team/stops/X821aab"], ["https://tec.openplanner.team/stops/N528aca", "https://tec.openplanner.team/stops/N528acb"], ["https://tec.openplanner.team/stops/Lcemc--2", "https://tec.openplanner.team/stops/Lcepont6"], ["https://tec.openplanner.team/stops/LlNhube2", "https://tec.openplanner.team/stops/LlNlimb1"], ["https://tec.openplanner.team/stops/Bracgar1", "https://tec.openplanner.team/stops/Brach122"], ["https://tec.openplanner.team/stops/Bniv4co1", "https://tec.openplanner.team/stops/Bnivrwi1"], ["https://tec.openplanner.team/stops/Cbbcrbo1", "https://tec.openplanner.team/stops/Cbbcrbo2"], ["https://tec.openplanner.team/stops/Cplelec2", "https://tec.openplanner.team/stops/Cplrmon2"], ["https://tec.openplanner.team/stops/Lvcfogu6", "https://tec.openplanner.team/stops/Lvcvand2"], ["https://tec.openplanner.team/stops/H1ba101b", "https://tec.openplanner.team/stops/H1ba102b"], ["https://tec.openplanner.team/stops/N534bsb", "https://tec.openplanner.team/stops/N568aeb"], ["https://tec.openplanner.team/stops/N211aib", "https://tec.openplanner.team/stops/N211ala"], ["https://tec.openplanner.team/stops/LSssurl2", "https://tec.openplanner.team/stops/N506azb"], ["https://tec.openplanner.team/stops/Cwgcamp1", "https://tec.openplanner.team/stops/Cwgdeba2"], ["https://tec.openplanner.team/stops/NL76ahb", "https://tec.openplanner.team/stops/NL77abb"], ["https://tec.openplanner.team/stops/Bbstegl1", "https://tec.openplanner.team/stops/Bbstegl2"], ["https://tec.openplanner.team/stops/Cdagoss1", "https://tec.openplanner.team/stops/Cdagoss2"], ["https://tec.openplanner.team/stops/LSkathe1", "https://tec.openplanner.team/stops/LYechpl1"], ["https://tec.openplanner.team/stops/Berncim1", "https://tec.openplanner.team/stops/Bwlhpmt4"], ["https://tec.openplanner.team/stops/H3so160a", "https://tec.openplanner.team/stops/H3so162a"], ["https://tec.openplanner.team/stops/H1bd101b", "https://tec.openplanner.team/stops/H1bd103a"], ["https://tec.openplanner.team/stops/LOcalbe1", "https://tec.openplanner.team/stops/LTNmont1"], ["https://tec.openplanner.team/stops/LTestat1", "https://tec.openplanner.team/stops/NL35add"], ["https://tec.openplanner.team/stops/LSkb1351", "https://tec.openplanner.team/stops/LSkmarq1"], ["https://tec.openplanner.team/stops/X901ala", "https://tec.openplanner.team/stops/X901aub"], ["https://tec.openplanner.team/stops/H4ch114a", "https://tec.openplanner.team/stops/H4ch116b"], ["https://tec.openplanner.team/stops/X740aeb", "https://tec.openplanner.team/stops/X912aga"], ["https://tec.openplanner.team/stops/H1do116a", "https://tec.openplanner.team/stops/H1do116b"], ["https://tec.openplanner.team/stops/X637aqa", "https://tec.openplanner.team/stops/X637aqb"], ["https://tec.openplanner.team/stops/Lghgend1", "https://tec.openplanner.team/stops/Lghgoll1"], ["https://tec.openplanner.team/stops/Llgbois1", "https://tec.openplanner.team/stops/Llgcrah2"], ["https://tec.openplanner.team/stops/LBDcarr2", "https://tec.openplanner.team/stops/LVEbors1"], ["https://tec.openplanner.team/stops/LaAnorm1", "https://tec.openplanner.team/stops/LlCgren1"], ["https://tec.openplanner.team/stops/H4lp122b", "https://tec.openplanner.team/stops/H4mg139a"], ["https://tec.openplanner.team/stops/N212abb", "https://tec.openplanner.team/stops/N212ada"], ["https://tec.openplanner.team/stops/LATfont1", "https://tec.openplanner.team/stops/LVNcoop1"], ["https://tec.openplanner.team/stops/H4mo135a", "https://tec.openplanner.team/stops/H4mo167a"], ["https://tec.openplanner.team/stops/LBIbois1", "https://tec.openplanner.team/stops/LBIcabi1"], ["https://tec.openplanner.team/stops/X728aba", "https://tec.openplanner.team/stops/X748aca"], ["https://tec.openplanner.team/stops/N542abb", "https://tec.openplanner.team/stops/N542ara"], ["https://tec.openplanner.team/stops/Bwatcrf1", "https://tec.openplanner.team/stops/Bwatlbs1"], ["https://tec.openplanner.team/stops/Cgymest2", "https://tec.openplanner.team/stops/Cgystbe2"], ["https://tec.openplanner.team/stops/Bbea3he1", "https://tec.openplanner.team/stops/Bbeascl1"], ["https://tec.openplanner.team/stops/N501bza", "https://tec.openplanner.team/stops/N502ada"], ["https://tec.openplanner.team/stops/X717agc", "https://tec.openplanner.team/stops/X717aia"], ["https://tec.openplanner.team/stops/Llgbavi1", "https://tec.openplanner.team/stops/Llgpoli2"], ["https://tec.openplanner.team/stops/X837aea", "https://tec.openplanner.team/stops/X837aed"], ["https://tec.openplanner.team/stops/H2lh125b", "https://tec.openplanner.team/stops/H2lh129b"], ["https://tec.openplanner.team/stops/X316aba", "https://tec.openplanner.team/stops/X318aca"], ["https://tec.openplanner.team/stops/Bjodced1", "https://tec.openplanner.team/stops/Bjodpvi1"], ["https://tec.openplanner.team/stops/N206aaa", "https://tec.openplanner.team/stops/N207aca"], ["https://tec.openplanner.team/stops/Livfays2", "https://tec.openplanner.team/stops/LRacime2"], ["https://tec.openplanner.team/stops/LSOboeu2", "https://tec.openplanner.team/stops/LSOtrou2"], ["https://tec.openplanner.team/stops/H4ss154b", "https://tec.openplanner.team/stops/H4ss158b"], ["https://tec.openplanner.team/stops/H4er122a", "https://tec.openplanner.team/stops/H4sm247a"], ["https://tec.openplanner.team/stops/Cthalou2", "https://tec.openplanner.team/stops/Cthrpoi1"], ["https://tec.openplanner.team/stops/N513aza", "https://tec.openplanner.team/stops/N513azb"], ["https://tec.openplanner.team/stops/N542aga", "https://tec.openplanner.team/stops/N542ahb"], ["https://tec.openplanner.team/stops/X661ala", "https://tec.openplanner.team/stops/X661axa"], ["https://tec.openplanner.team/stops/LwMzoll2", "https://tec.openplanner.team/stops/X769arb"], ["https://tec.openplanner.team/stops/Bhlvlou1", "https://tec.openplanner.team/stops/Bhlvvil1"], ["https://tec.openplanner.team/stops/N562aeb", "https://tec.openplanner.team/stops/N562afb"], ["https://tec.openplanner.team/stops/H4mo156b", "https://tec.openplanner.team/stops/H4mo204b"], ["https://tec.openplanner.team/stops/Cvlgrta1", "https://tec.openplanner.team/stops/Cvllerm2"], ["https://tec.openplanner.team/stops/H1hw122a", "https://tec.openplanner.team/stops/H1hw125a"], ["https://tec.openplanner.team/stops/Bbcogar1", "https://tec.openplanner.team/stops/Bbcoser2"], ["https://tec.openplanner.team/stops/N513ana", "https://tec.openplanner.team/stops/N513anb"], ["https://tec.openplanner.team/stops/LBkdahl1", "https://tec.openplanner.team/stops/LBkdahl2"], ["https://tec.openplanner.team/stops/H4ft138a", "https://tec.openplanner.team/stops/H4wu375a"], ["https://tec.openplanner.team/stops/Ltibalt1", "https://tec.openplanner.team/stops/Ltithie2"], ["https://tec.openplanner.team/stops/H1ha200b", "https://tec.openplanner.team/stops/H1vh135a"], ["https://tec.openplanner.team/stops/LeUkirc1", "https://tec.openplanner.team/stops/LeUsch%C3%B61"], ["https://tec.openplanner.team/stops/H1ht124b", "https://tec.openplanner.team/stops/H1po139a"], ["https://tec.openplanner.team/stops/LBNlong1", "https://tec.openplanner.team/stops/LBNvill1"], ["https://tec.openplanner.team/stops/Bquereb1", "https://tec.openplanner.team/stops/Bquereb2"], ["https://tec.openplanner.team/stops/Bptecal1", "https://tec.openplanner.team/stops/H1hv131a"], ["https://tec.openplanner.team/stops/Croheig2", "https://tec.openplanner.team/stops/Cropcan1"], ["https://tec.openplanner.team/stops/H1ci106a", "https://tec.openplanner.team/stops/H1mv240a"], ["https://tec.openplanner.team/stops/H4es117b", "https://tec.openplanner.team/stops/H4ev120a"], ["https://tec.openplanner.team/stops/N527aca", "https://tec.openplanner.team/stops/N527ada"], ["https://tec.openplanner.team/stops/Bsgihmo1", "https://tec.openplanner.team/stops/Bsgipha1"], ["https://tec.openplanner.team/stops/N343aca", "https://tec.openplanner.team/stops/N343amb"], ["https://tec.openplanner.team/stops/H4wu376b", "https://tec.openplanner.team/stops/H4wu420a"], ["https://tec.openplanner.team/stops/LaNmuhl1", "https://tec.openplanner.team/stops/LeMnr12"], ["https://tec.openplanner.team/stops/LRChote2", "https://tec.openplanner.team/stops/LRCviad2"], ["https://tec.openplanner.team/stops/N231abb", "https://tec.openplanner.team/stops/N231ada"], ["https://tec.openplanner.team/stops/N501mua", "https://tec.openplanner.team/stops/N527aca"], ["https://tec.openplanner.team/stops/H1to153a", "https://tec.openplanner.team/stops/H1to153d"], ["https://tec.openplanner.team/stops/LHFappe2", "https://tec.openplanner.team/stops/LSChane2"], ["https://tec.openplanner.team/stops/Lsccdor1", "https://tec.openplanner.team/stops/Lscchat2"], ["https://tec.openplanner.team/stops/Ccubric2", "https://tec.openplanner.team/stops/Ccucora2"], ["https://tec.openplanner.team/stops/LPLcarr2", "https://tec.openplanner.team/stops/LPLcarr4"], ["https://tec.openplanner.team/stops/N560acb", "https://tec.openplanner.team/stops/N560adb"], ["https://tec.openplanner.team/stops/Lvomoul1", "https://tec.openplanner.team/stops/Lvovent2"], ["https://tec.openplanner.team/stops/X614agb", "https://tec.openplanner.team/stops/X616aja"], ["https://tec.openplanner.team/stops/LNveg--1", "https://tec.openplanner.team/stops/LNveg--2"], ["https://tec.openplanner.team/stops/NR30aaa", "https://tec.openplanner.team/stops/NR30aba"], ["https://tec.openplanner.team/stops/H3so177b", "https://tec.openplanner.team/stops/H3so178b"], ["https://tec.openplanner.team/stops/N569ala", "https://tec.openplanner.team/stops/N569ama"], ["https://tec.openplanner.team/stops/N209akb", "https://tec.openplanner.team/stops/N209alb"], ["https://tec.openplanner.team/stops/Llgfont4", "https://tec.openplanner.team/stops/Llgjose1"], ["https://tec.openplanner.team/stops/NL30aka", "https://tec.openplanner.team/stops/NL68aab"], ["https://tec.openplanner.team/stops/X822aba", "https://tec.openplanner.team/stops/X822abb"], ["https://tec.openplanner.team/stops/X769aab", "https://tec.openplanner.team/stops/X769abb"], ["https://tec.openplanner.team/stops/Cmtrbra2", "https://tec.openplanner.team/stops/Cmtrneu2"], ["https://tec.openplanner.team/stops/X396ada", "https://tec.openplanner.team/stops/X396adb"], ["https://tec.openplanner.team/stops/Bpthcai1", "https://tec.openplanner.team/stops/Bpthrsp1"], ["https://tec.openplanner.team/stops/LhGkirc4", "https://tec.openplanner.team/stops/LhGknip1"], ["https://tec.openplanner.team/stops/Lbrchur1", "https://tec.openplanner.team/stops/Lbrfoid3"], ["https://tec.openplanner.team/stops/X633afb", "https://tec.openplanner.team/stops/X633agb"], ["https://tec.openplanner.team/stops/N501aka", "https://tec.openplanner.team/stops/N501bca"], ["https://tec.openplanner.team/stops/H1gh144a", "https://tec.openplanner.team/stops/H1gh155b"], ["https://tec.openplanner.team/stops/Lmlec--1", "https://tec.openplanner.team/stops/Lmlmaqu1"], ["https://tec.openplanner.team/stops/X747adb", "https://tec.openplanner.team/stops/X747aea"], ["https://tec.openplanner.team/stops/LmNkess1", "https://tec.openplanner.team/stops/LmNkrew1"], ["https://tec.openplanner.team/stops/LMgberw1", "https://tec.openplanner.team/stops/LVImons2"], ["https://tec.openplanner.team/stops/Lghcise1", "https://tec.openplanner.team/stops/Lmopeup1"], ["https://tec.openplanner.team/stops/X925apa", "https://tec.openplanner.team/stops/X925ata"], ["https://tec.openplanner.team/stops/LMotrem2", "https://tec.openplanner.team/stops/LTrrich1"], ["https://tec.openplanner.team/stops/LBiroch1", "https://tec.openplanner.team/stops/LDOastr1"], ["https://tec.openplanner.team/stops/H4ml208a", "https://tec.openplanner.team/stops/H4ml208b"], ["https://tec.openplanner.team/stops/X911afa", "https://tec.openplanner.team/stops/X911ata"], ["https://tec.openplanner.team/stops/LLmcheg3", "https://tec.openplanner.team/stops/LLmcheg4"], ["https://tec.openplanner.team/stops/X805aka", "https://tec.openplanner.team/stops/X805akb"], ["https://tec.openplanner.team/stops/Lrchero2", "https://tec.openplanner.team/stops/Lrcpaqu1"], ["https://tec.openplanner.team/stops/N521aea", "https://tec.openplanner.team/stops/N521afa"], ["https://tec.openplanner.team/stops/LATguis2", "https://tec.openplanner.team/stops/LATlena1"], ["https://tec.openplanner.team/stops/Cmlfeba2", "https://tec.openplanner.team/stops/Cmlipsm2"], ["https://tec.openplanner.team/stops/H1hw119a", "https://tec.openplanner.team/stops/H1hw124a"], ["https://tec.openplanner.team/stops/N385aad", "https://tec.openplanner.team/stops/N385acb"], ["https://tec.openplanner.team/stops/X615bda", "https://tec.openplanner.team/stops/X695aka"], ["https://tec.openplanner.team/stops/H1sg146a", "https://tec.openplanner.team/stops/H1sg149a"], ["https://tec.openplanner.team/stops/H4lz118b", "https://tec.openplanner.team/stops/H4lz128a"], ["https://tec.openplanner.team/stops/Bmarcat2", "https://tec.openplanner.team/stops/Bmaregl1"], ["https://tec.openplanner.team/stops/Bwaubru1", "https://tec.openplanner.team/stops/Bwaunou1"], ["https://tec.openplanner.team/stops/H1gh162c", "https://tec.openplanner.team/stops/H1gh165a"], ["https://tec.openplanner.team/stops/LeUcroi1", "https://tec.openplanner.team/stops/LeUmalm2"], ["https://tec.openplanner.team/stops/Bcbqa361", "https://tec.openplanner.team/stops/Bcbqrog2"], ["https://tec.openplanner.team/stops/Canboni2", "https://tec.openplanner.team/stops/Canfief2"], ["https://tec.openplanner.team/stops/N539aca", "https://tec.openplanner.team/stops/N540aeb"], ["https://tec.openplanner.team/stops/LrAeife1", "https://tec.openplanner.team/stops/LrAwald1"], ["https://tec.openplanner.team/stops/X850aga", "https://tec.openplanner.team/stops/X850aja"], ["https://tec.openplanner.team/stops/X986aja", "https://tec.openplanner.team/stops/X986ama"], ["https://tec.openplanner.team/stops/X801chb", "https://tec.openplanner.team/stops/X801cia"], ["https://tec.openplanner.team/stops/LAMecse*", "https://tec.openplanner.team/stops/LAmshel2"], ["https://tec.openplanner.team/stops/Cgdfoca1", "https://tec.openplanner.team/stops/Cgdfoca2"], ["https://tec.openplanner.team/stops/N541aba", "https://tec.openplanner.team/stops/N541abb"], ["https://tec.openplanner.team/stops/N103aea", "https://tec.openplanner.team/stops/N103agb"], ["https://tec.openplanner.team/stops/LCSpoud2", "https://tec.openplanner.team/stops/LENindu1"], ["https://tec.openplanner.team/stops/N501icb", "https://tec.openplanner.team/stops/N501ipb"], ["https://tec.openplanner.team/stops/H1be101b", "https://tec.openplanner.team/stops/H1mc129a"], ["https://tec.openplanner.team/stops/LhRwere1", "https://tec.openplanner.team/stops/LwEdorf1"], ["https://tec.openplanner.team/stops/Lagfour2", "https://tec.openplanner.team/stops/Llgpont2"], ["https://tec.openplanner.team/stops/X871aba", "https://tec.openplanner.team/stops/X871acb"], ["https://tec.openplanner.team/stops/Bvirbru2", "https://tec.openplanner.team/stops/Bvirvol1"], ["https://tec.openplanner.team/stops/LMOlens1", "https://tec.openplanner.team/stops/LTychev2"], ["https://tec.openplanner.team/stops/X998aaa", "https://tec.openplanner.team/stops/X998aza"], ["https://tec.openplanner.team/stops/N211acb", "https://tec.openplanner.team/stops/N211avb"], ["https://tec.openplanner.team/stops/H1mm127b", "https://tec.openplanner.team/stops/H1mm128b"], ["https://tec.openplanner.team/stops/Lmohomv1", "https://tec.openplanner.team/stops/Lsnbrac1"], ["https://tec.openplanner.team/stops/N559abb", "https://tec.openplanner.team/stops/N559aea"], ["https://tec.openplanner.team/stops/X669agb", "https://tec.openplanner.team/stops/X672aea"], ["https://tec.openplanner.team/stops/N518aab", "https://tec.openplanner.team/stops/N518acc"], ["https://tec.openplanner.team/stops/H2pe155a", "https://tec.openplanner.team/stops/H2pe160a"], ["https://tec.openplanner.team/stops/H5qu139a", "https://tec.openplanner.team/stops/H5qu154b"], ["https://tec.openplanner.team/stops/Cfmnoci2", "https://tec.openplanner.team/stops/Cfmtrie2"], ["https://tec.openplanner.team/stops/H1wi148c", "https://tec.openplanner.team/stops/H1wi157a"], ["https://tec.openplanner.team/stops/H1qu102b", "https://tec.openplanner.team/stops/H1wl121b"], ["https://tec.openplanner.team/stops/Clolidl1", "https://tec.openplanner.team/stops/Clooues4"], ["https://tec.openplanner.team/stops/Cfcctru2", "https://tec.openplanner.team/stops/Cfcrerp2"], ["https://tec.openplanner.team/stops/N423agb", "https://tec.openplanner.team/stops/NH21ahb"], ["https://tec.openplanner.team/stops/H4bh100b", "https://tec.openplanner.team/stops/H4bh101b"], ["https://tec.openplanner.team/stops/LBichat2", "https://tec.openplanner.team/stops/LBichen2"], ["https://tec.openplanner.team/stops/Bpthcgo2", "https://tec.openplanner.team/stops/Bpthrsp1"], ["https://tec.openplanner.team/stops/Bglache1", "https://tec.openplanner.team/stops/Bglacsr1"], ["https://tec.openplanner.team/stops/H4av107a", "https://tec.openplanner.team/stops/H4av107b"], ["https://tec.openplanner.team/stops/Bchgcha1", "https://tec.openplanner.team/stops/Btslpic6"], ["https://tec.openplanner.team/stops/LWegdry1", "https://tec.openplanner.team/stops/LWerola1"], ["https://tec.openplanner.team/stops/X607aba", "https://tec.openplanner.team/stops/X607abb"], ["https://tec.openplanner.team/stops/N501ema", "https://tec.openplanner.team/stops/N501emb"], ["https://tec.openplanner.team/stops/N578aca", "https://tec.openplanner.team/stops/N578acb"], ["https://tec.openplanner.team/stops/X804aeb", "https://tec.openplanner.team/stops/X804beb"], ["https://tec.openplanner.team/stops/Lmndeso2", "https://tec.openplanner.team/stops/Lsmtini1"], ["https://tec.openplanner.team/stops/LSceg--2", "https://tec.openplanner.team/stops/LVTtrou2"], ["https://tec.openplanner.team/stops/X344aca", "https://tec.openplanner.team/stops/X344ada"], ["https://tec.openplanner.team/stops/X921ama", "https://tec.openplanner.team/stops/X921amb"], ["https://tec.openplanner.team/stops/LOcalbe2", "https://tec.openplanner.team/stops/LOcchat2"], ["https://tec.openplanner.team/stops/X757aea", "https://tec.openplanner.team/stops/X757aia"], ["https://tec.openplanner.team/stops/N543bpb", "https://tec.openplanner.team/stops/N543bpc"], ["https://tec.openplanner.team/stops/N223aaa", "https://tec.openplanner.team/stops/N223aab"], ["https://tec.openplanner.team/stops/LCOeg--1", "https://tec.openplanner.team/stops/Lpelouh1"], ["https://tec.openplanner.team/stops/N125abb", "https://tec.openplanner.team/stops/N125acb"], ["https://tec.openplanner.team/stops/H1bs110a", "https://tec.openplanner.team/stops/H1bs110c"], ["https://tec.openplanner.team/stops/X754ala", "https://tec.openplanner.team/stops/X754ama"], ["https://tec.openplanner.team/stops/NL74aha", "https://tec.openplanner.team/stops/NL74ahc"], ["https://tec.openplanner.team/stops/X394afa", "https://tec.openplanner.team/stops/X394aga"], ["https://tec.openplanner.team/stops/N118anc", "https://tec.openplanner.team/stops/N118axb"], ["https://tec.openplanner.team/stops/X664aid", "https://tec.openplanner.team/stops/X665aab"], ["https://tec.openplanner.team/stops/LlgguilC", "https://tec.openplanner.team/stops/Llgoise1"], ["https://tec.openplanner.team/stops/N516ajb", "https://tec.openplanner.team/stops/N516aoa"], ["https://tec.openplanner.team/stops/H4rm107b", "https://tec.openplanner.team/stops/H4rm111b"], ["https://tec.openplanner.team/stops/LXHeg--2", "https://tec.openplanner.team/stops/LXHfond2"], ["https://tec.openplanner.team/stops/N581aab", "https://tec.openplanner.team/stops/N581acb"], ["https://tec.openplanner.team/stops/H2gy100a", "https://tec.openplanner.team/stops/H2gy103a"], ["https://tec.openplanner.team/stops/Btubfab2", "https://tec.openplanner.team/stops/Btubnco2"], ["https://tec.openplanner.team/stops/Ltibord2", "https://tec.openplanner.team/stops/Ltimarr2"], ["https://tec.openplanner.team/stops/H4lz127b", "https://tec.openplanner.team/stops/H4lz164a"], ["https://tec.openplanner.team/stops/Bohnegl2", "https://tec.openplanner.team/stops/Bohnmon2"], ["https://tec.openplanner.team/stops/LBahome2", "https://tec.openplanner.team/stops/LLUalou1"], ["https://tec.openplanner.team/stops/LLGcarr1", "https://tec.openplanner.team/stops/LLGec--*"], ["https://tec.openplanner.team/stops/X743afa", "https://tec.openplanner.team/stops/X744aab"], ["https://tec.openplanner.team/stops/Ctrdelb2", "https://tec.openplanner.team/stops/Ctrterm2"], ["https://tec.openplanner.team/stops/X948ajc", "https://tec.openplanner.team/stops/X948aka"], ["https://tec.openplanner.team/stops/N535aba", "https://tec.openplanner.team/stops/N535acd"], ["https://tec.openplanner.team/stops/X872aaa", "https://tec.openplanner.team/stops/X872aab"], ["https://tec.openplanner.team/stops/LPAbrun1", "https://tec.openplanner.team/stops/LPAbrun2"], ["https://tec.openplanner.team/stops/X773aja", "https://tec.openplanner.team/stops/X774aad"], ["https://tec.openplanner.team/stops/X879ahb", "https://tec.openplanner.team/stops/X879anb"], ["https://tec.openplanner.team/stops/Csylaha2", "https://tec.openplanner.team/stops/Csyplac2"], ["https://tec.openplanner.team/stops/H1em101a", "https://tec.openplanner.team/stops/H1em101b"], ["https://tec.openplanner.team/stops/Clusncb1", "https://tec.openplanner.team/stops/H2lu100d"], ["https://tec.openplanner.team/stops/Lmochpl1", "https://tec.openplanner.team/stops/Lmopast2"], ["https://tec.openplanner.team/stops/LHHplac2", "https://tec.openplanner.team/stops/LHHtill2"], ["https://tec.openplanner.team/stops/LTRlonh1", "https://tec.openplanner.team/stops/LTRsain2"], ["https://tec.openplanner.team/stops/LNvrout1", "https://tec.openplanner.team/stops/LNvrout2"], ["https://tec.openplanner.team/stops/H1gr111b", "https://tec.openplanner.team/stops/H1hr128c"], ["https://tec.openplanner.team/stops/LPT97--2", "https://tec.openplanner.team/stops/LPurech2"], ["https://tec.openplanner.team/stops/X641axb", "https://tec.openplanner.team/stops/X641ayb"], ["https://tec.openplanner.team/stops/LWechea1", "https://tec.openplanner.team/stops/LWetrib1"], ["https://tec.openplanner.team/stops/N310aab", "https://tec.openplanner.team/stops/N313aaa"], ["https://tec.openplanner.team/stops/H5at107a", "https://tec.openplanner.team/stops/H5at142a"], ["https://tec.openplanner.team/stops/LLUreut1", "https://tec.openplanner.team/stops/LLUtrol1"], ["https://tec.openplanner.team/stops/H4hu116b", "https://tec.openplanner.team/stops/H4ld125a"], ["https://tec.openplanner.team/stops/H4wa148a", "https://tec.openplanner.team/stops/H4wa156a"], ["https://tec.openplanner.team/stops/Brixape2", "https://tec.openplanner.team/stops/Brixpbs1"], ["https://tec.openplanner.team/stops/Bbgepau1", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://tec.openplanner.team/stops/Ljuvieu1", "https://tec.openplanner.team/stops/LMFmerl1"], ["https://tec.openplanner.team/stops/X601bma", "https://tec.openplanner.team/stops/X601bmb"], ["https://tec.openplanner.team/stops/Bwatle32", "https://tec.openplanner.team/stops/Bwatmbv1"], ["https://tec.openplanner.team/stops/LTPgare*", "https://tec.openplanner.team/stops/LTPpisc1"], ["https://tec.openplanner.team/stops/N894aga", "https://tec.openplanner.team/stops/N894age"], ["https://tec.openplanner.team/stops/X927acb", "https://tec.openplanner.team/stops/X986ala"], ["https://tec.openplanner.team/stops/Lbocond2", "https://tec.openplanner.team/stops/LPLstri2"], ["https://tec.openplanner.team/stops/Clsferr1", "https://tec.openplanner.team/stops/H1ls108a"], ["https://tec.openplanner.team/stops/H2mo117a", "https://tec.openplanner.team/stops/H2mo130b"], ["https://tec.openplanner.team/stops/LrApont1", "https://tec.openplanner.team/stops/LrApont2"], ["https://tec.openplanner.team/stops/Bgemman2", "https://tec.openplanner.team/stops/N522afb"], ["https://tec.openplanner.team/stops/H4bo121a", "https://tec.openplanner.team/stops/H4og211a"], ["https://tec.openplanner.team/stops/N149aka", "https://tec.openplanner.team/stops/N149akb"], ["https://tec.openplanner.team/stops/Bhengri2", "https://tec.openplanner.team/stops/Bvirbru1"], ["https://tec.openplanner.team/stops/X364acb", "https://tec.openplanner.team/stops/X364ada"], ["https://tec.openplanner.team/stops/Bwlhppg1", "https://tec.openplanner.team/stops/Bwlhppg4"], ["https://tec.openplanner.team/stops/LLVcent1", "https://tec.openplanner.team/stops/X575aea"], ["https://tec.openplanner.team/stops/LHHindu2", "https://tec.openplanner.team/stops/LHHronh1"], ["https://tec.openplanner.team/stops/X361abb", "https://tec.openplanner.team/stops/X362aaa"], ["https://tec.openplanner.team/stops/N534aph", "https://tec.openplanner.team/stops/N534caa"], ["https://tec.openplanner.team/stops/Llxec--2", "https://tec.openplanner.team/stops/Lwapomp1"], ["https://tec.openplanner.team/stops/X886ahb", "https://tec.openplanner.team/stops/X889acb"], ["https://tec.openplanner.team/stops/X361aaa", "https://tec.openplanner.team/stops/X371afb"], ["https://tec.openplanner.team/stops/H1hm176a", "https://tec.openplanner.team/stops/H1hm177a"], ["https://tec.openplanner.team/stops/LhSbruc1", "https://tec.openplanner.team/stops/LhSschn1"], ["https://tec.openplanner.team/stops/Lvteg--1", "https://tec.openplanner.team/stops/Lvtfrai2"], ["https://tec.openplanner.team/stops/Bgliegl1", "https://tec.openplanner.team/stops/Bgliron1"], ["https://tec.openplanner.team/stops/N123abb", "https://tec.openplanner.team/stops/N150aba"], ["https://tec.openplanner.team/stops/Loucent1", "https://tec.openplanner.team/stops/Lougoff1"], ["https://tec.openplanner.team/stops/Bwaubru2", "https://tec.openplanner.team/stops/Bwaunce2"], ["https://tec.openplanner.team/stops/LOLrafh1", "https://tec.openplanner.team/stops/LSOchau1"], ["https://tec.openplanner.team/stops/X801bdd", "https://tec.openplanner.team/stops/X801ckb"], ["https://tec.openplanner.team/stops/Cchcaya1", "https://tec.openplanner.team/stops/Clomart2"], ["https://tec.openplanner.team/stops/LPOecol1", "https://tec.openplanner.team/stops/LPOwaut1"], ["https://tec.openplanner.team/stops/Bquegob1", "https://tec.openplanner.team/stops/Brebcgi1"], ["https://tec.openplanner.team/stops/Cfmgara1", "https://tec.openplanner.team/stops/Csostoc2"], ["https://tec.openplanner.team/stops/Cjugohi4", "https://tec.openplanner.team/stops/Cjuquai2"], ["https://tec.openplanner.team/stops/Crccano3", "https://tec.openplanner.team/stops/Crccano4"], ["https://tec.openplanner.team/stops/H1ml109a", "https://tec.openplanner.team/stops/H1ml111a"], ["https://tec.openplanner.team/stops/X888aba", "https://tec.openplanner.team/stops/X888abb"], ["https://tec.openplanner.team/stops/Lhufila1", "https://tec.openplanner.team/stops/LPoxhav1"], ["https://tec.openplanner.team/stops/H2ca105b", "https://tec.openplanner.team/stops/H2ca115a"], ["https://tec.openplanner.team/stops/H4ty281b", "https://tec.openplanner.team/stops/H4ty334b"], ["https://tec.openplanner.team/stops/N222abb", "https://tec.openplanner.team/stops/X222afb"], ["https://tec.openplanner.team/stops/N235aha", "https://tec.openplanner.team/stops/N236anb"], ["https://tec.openplanner.team/stops/N501gzy", "https://tec.openplanner.team/stops/N501hia"], ["https://tec.openplanner.team/stops/Ccoforr1", "https://tec.openplanner.team/stops/Ccorian1"], ["https://tec.openplanner.team/stops/LBGcent2", "https://tec.openplanner.team/stops/LBGjacq1"], ["https://tec.openplanner.team/stops/X663ada", "https://tec.openplanner.team/stops/X663aeb"], ["https://tec.openplanner.team/stops/Ctaallo2", "https://tec.openplanner.team/stops/Ctapn1"], ["https://tec.openplanner.team/stops/Cgxvvel1", "https://tec.openplanner.team/stops/Crorogn2"], ["https://tec.openplanner.team/stops/Bcrncce2", "https://tec.openplanner.team/stops/Bsgeqpb2"], ["https://tec.openplanner.team/stops/Lghmaha1", "https://tec.openplanner.team/stops/Lghmaha2"], ["https://tec.openplanner.team/stops/H5qu139b", "https://tec.openplanner.team/stops/H5qu150b"], ["https://tec.openplanner.team/stops/H1he101b", "https://tec.openplanner.team/stops/H1he102a"], ["https://tec.openplanner.team/stops/N513asb", "https://tec.openplanner.team/stops/N513ata"], ["https://tec.openplanner.team/stops/X982aac", "https://tec.openplanner.team/stops/X982aad"], ["https://tec.openplanner.team/stops/X605aea", "https://tec.openplanner.team/stops/X605agb"], ["https://tec.openplanner.team/stops/H2lh131a", "https://tec.openplanner.team/stops/H2lh131b"], ["https://tec.openplanner.team/stops/H2mm140a", "https://tec.openplanner.team/stops/H2mm140b"], ["https://tec.openplanner.team/stops/Ljubonf1", "https://tec.openplanner.team/stops/Ljuchaf2"], ["https://tec.openplanner.team/stops/Cjuvand1", "https://tec.openplanner.team/stops/Cjuvand2"], ["https://tec.openplanner.team/stops/LBTchai3", "https://tec.openplanner.team/stops/LBTxhen4"], ["https://tec.openplanner.team/stops/LFPdeme2", "https://tec.openplanner.team/stops/LFProt-2"], ["https://tec.openplanner.team/stops/N535ahb", "https://tec.openplanner.team/stops/N535ama"], ["https://tec.openplanner.team/stops/LNCchev2", "https://tec.openplanner.team/stops/LNCpi331"], ["https://tec.openplanner.team/stops/Livvill2", "https://tec.openplanner.team/stops/LRagrch2"], ["https://tec.openplanner.team/stops/X925agb", "https://tec.openplanner.team/stops/X925aka"], ["https://tec.openplanner.team/stops/H1do117a", "https://tec.openplanner.team/stops/H1do117b"], ["https://tec.openplanner.team/stops/Llgrass2", "https://tec.openplanner.team/stops/Llgrull1"], ["https://tec.openplanner.team/stops/Btsleco2", "https://tec.openplanner.team/stops/Btsllnd2"], ["https://tec.openplanner.team/stops/H4th142a", "https://tec.openplanner.team/stops/H4th142b"], ["https://tec.openplanner.team/stops/N528atb", "https://tec.openplanner.team/stops/N542aob"], ["https://tec.openplanner.team/stops/LmHbahn1", "https://tec.openplanner.team/stops/LmHbahn2"], ["https://tec.openplanner.team/stops/H1ci104a", "https://tec.openplanner.team/stops/H1ci104b"], ["https://tec.openplanner.team/stops/X784ahb", "https://tec.openplanner.team/stops/X784aia"], ["https://tec.openplanner.team/stops/Blhumga2", "https://tec.openplanner.team/stops/Blhunys2"], ["https://tec.openplanner.team/stops/N501kla", "https://tec.openplanner.team/stops/N501klb"], ["https://tec.openplanner.team/stops/Blsmcha1", "https://tec.openplanner.team/stops/Blsmjja1"], ["https://tec.openplanner.team/stops/LbUkrin1", "https://tec.openplanner.team/stops/LlSbuch1"], ["https://tec.openplanner.team/stops/LhGknip1", "https://tec.openplanner.team/stops/LhGlang1"], ["https://tec.openplanner.team/stops/N501cta", "https://tec.openplanner.team/stops/N501ctb"], ["https://tec.openplanner.team/stops/Cchdrai1", "https://tec.openplanner.team/stops/Cchdrai2"], ["https://tec.openplanner.team/stops/Cciarfr2", "https://tec.openplanner.team/stops/Ccipano1"], ["https://tec.openplanner.team/stops/H4to136a", "https://tec.openplanner.team/stops/H4to136b"], ["https://tec.openplanner.team/stops/LrAdrie5", "https://tec.openplanner.team/stops/LrAneue1"], ["https://tec.openplanner.team/stops/LNCrami1", "https://tec.openplanner.team/stops/LNCvann1"], ["https://tec.openplanner.team/stops/H1cd113a", "https://tec.openplanner.team/stops/H1ne145b"], ["https://tec.openplanner.team/stops/LSSeg--1", "https://tec.openplanner.team/stops/LSSjeun1"], ["https://tec.openplanner.team/stops/H4hg154a", "https://tec.openplanner.team/stops/H4mv187a"], ["https://tec.openplanner.team/stops/NH01aba", "https://tec.openplanner.team/stops/NH01anb"], ["https://tec.openplanner.team/stops/X817aca", "https://tec.openplanner.team/stops/X817acb"], ["https://tec.openplanner.team/stops/H4mb202b", "https://tec.openplanner.team/stops/H4mb205b"], ["https://tec.openplanner.team/stops/Bjdsjso1", "https://tec.openplanner.team/stops/Bjdspon2"], ["https://tec.openplanner.team/stops/Bmsgcap1", "https://tec.openplanner.team/stops/Bmsgstj2"], ["https://tec.openplanner.team/stops/NH21afa", "https://tec.openplanner.team/stops/NH21aga"], ["https://tec.openplanner.team/stops/Lpebeco1", "https://tec.openplanner.team/stops/Lpeflec2"], ["https://tec.openplanner.team/stops/LNIbas-2", "https://tec.openplanner.team/stops/LSZpont2"], ["https://tec.openplanner.team/stops/H1vh135a", "https://tec.openplanner.team/stops/H1vh135b"], ["https://tec.openplanner.team/stops/H2ca103a", "https://tec.openplanner.team/stops/H2ca103c"], ["https://tec.openplanner.team/stops/H2ll172a", "https://tec.openplanner.team/stops/H2ll196b"], ["https://tec.openplanner.team/stops/LeI39--3", "https://tec.openplanner.team/stops/LeIpiro3"], ["https://tec.openplanner.team/stops/H4ty273b", "https://tec.openplanner.team/stops/H4ty273d"], ["https://tec.openplanner.team/stops/Lmiensp*", "https://tec.openplanner.team/stops/Lmimili1"], ["https://tec.openplanner.team/stops/N501axb", "https://tec.openplanner.team/stops/N501azb"], ["https://tec.openplanner.team/stops/X754aea", "https://tec.openplanner.team/stops/X754ana"], ["https://tec.openplanner.team/stops/Bborche2", "https://tec.openplanner.team/stops/Bmoncab1"], ["https://tec.openplanner.team/stops/N535aea", "https://tec.openplanner.team/stops/N535aeb"], ["https://tec.openplanner.team/stops/Beclron1", "https://tec.openplanner.team/stops/Beclron2"], ["https://tec.openplanner.team/stops/Cmllait1", "https://tec.openplanner.team/stops/Cmllait2"], ["https://tec.openplanner.team/stops/LsVeite1", "https://tec.openplanner.team/stops/LsVeite2"], ["https://tec.openplanner.team/stops/Baegd741", "https://tec.openplanner.team/stops/Baegd742"], ["https://tec.openplanner.team/stops/Bmrl4ch2", "https://tec.openplanner.team/stops/Bmrlegl1"], ["https://tec.openplanner.team/stops/Cflchap4", "https://tec.openplanner.team/stops/Cwgmell4"], ["https://tec.openplanner.team/stops/LCLgend2", "https://tec.openplanner.team/stops/LCLstat1"], ["https://tec.openplanner.team/stops/Cjxpris2", "https://tec.openplanner.team/stops/Cnapetr2"], ["https://tec.openplanner.team/stops/Bohncha2", "https://tec.openplanner.team/stops/Bohnpla1"], ["https://tec.openplanner.team/stops/LFyec--1", "https://tec.openplanner.team/stops/LFymare4"], ["https://tec.openplanner.team/stops/N501dzb", "https://tec.openplanner.team/stops/N501eaa"], ["https://tec.openplanner.team/stops/N101aha", "https://tec.openplanner.team/stops/N101apa"], ["https://tec.openplanner.team/stops/N235aga", "https://tec.openplanner.team/stops/N235aha"], ["https://tec.openplanner.team/stops/Cmamons2", "https://tec.openplanner.team/stops/Cmasncb2"], ["https://tec.openplanner.team/stops/N519amb", "https://tec.openplanner.team/stops/N525afb"], ["https://tec.openplanner.team/stops/N507aia", "https://tec.openplanner.team/stops/N507aib"], ["https://tec.openplanner.team/stops/NL78abb", "https://tec.openplanner.team/stops/NL78aka"], ["https://tec.openplanner.team/stops/Bmlnbpr2", "https://tec.openplanner.team/stops/Bmlnmbo1"], ["https://tec.openplanner.team/stops/N383acb", "https://tec.openplanner.team/stops/N383aeb"], ["https://tec.openplanner.team/stops/X741aba", "https://tec.openplanner.team/stops/X741abc"], ["https://tec.openplanner.team/stops/LAbbass2", "https://tec.openplanner.team/stops/LRtmame2"], ["https://tec.openplanner.team/stops/Cdajume2", "https://tec.openplanner.team/stops/Cmabegh2"], ["https://tec.openplanner.team/stops/H4bc101b", "https://tec.openplanner.team/stops/H5bl116b"], ["https://tec.openplanner.team/stops/Llgsime2", "https://tec.openplanner.team/stops/Llgtcha2"], ["https://tec.openplanner.team/stops/LSkathe1", "https://tec.openplanner.team/stops/LSkdouf1"], ["https://tec.openplanner.team/stops/Cfcecol1", "https://tec.openplanner.team/stops/Cfcsaut3"], ["https://tec.openplanner.team/stops/LdUkreu1", "https://tec.openplanner.team/stops/LeSkreu2"], ["https://tec.openplanner.team/stops/Bbaubru1", "https://tec.openplanner.team/stops/Bniv4co1"], ["https://tec.openplanner.team/stops/Lbrfagn2", "https://tec.openplanner.team/stops/Lbrfune*"], ["https://tec.openplanner.team/stops/LRGcana1", "https://tec.openplanner.team/stops/LRGgend3"], ["https://tec.openplanner.team/stops/X782aba", "https://tec.openplanner.team/stops/X782ada"], ["https://tec.openplanner.team/stops/Llglamb1", "https://tec.openplanner.team/stops/Llglamb2"], ["https://tec.openplanner.team/stops/LCltrib2", "https://tec.openplanner.team/stops/LThnouv1"], ["https://tec.openplanner.team/stops/NL37aba", "https://tec.openplanner.team/stops/NL37aob"], ["https://tec.openplanner.team/stops/LeYloos1", "https://tec.openplanner.team/stops/LeYteeh2"], ["https://tec.openplanner.team/stops/N508acb", "https://tec.openplanner.team/stops/N516aqb"], ["https://tec.openplanner.team/stops/LHuetat1", "https://tec.openplanner.team/stops/LHurobi1"], ["https://tec.openplanner.team/stops/Lemcort2", "https://tec.openplanner.team/stops/Lemparc2"], ["https://tec.openplanner.team/stops/Bblaaca1", "https://tec.openplanner.team/stops/Bblaelo1"], ["https://tec.openplanner.team/stops/N138aha", "https://tec.openplanner.team/stops/N426aab"], ["https://tec.openplanner.team/stops/X659aaa", "https://tec.openplanner.team/stops/X659aya"], ["https://tec.openplanner.team/stops/LrOfrie1", "https://tec.openplanner.team/stops/LrOgara2"], ["https://tec.openplanner.team/stops/Blemmar2", "https://tec.openplanner.team/stops/Blemwob1"], ["https://tec.openplanner.team/stops/N501fdc", "https://tec.openplanner.team/stops/N501lzb"], ["https://tec.openplanner.team/stops/Ctuosso1", "https://tec.openplanner.team/stops/NC28agb"], ["https://tec.openplanner.team/stops/N141ahb", "https://tec.openplanner.team/stops/N143ada"], ["https://tec.openplanner.team/stops/N542aac", "https://tec.openplanner.team/stops/N542acc"], ["https://tec.openplanner.team/stops/X601aeb", "https://tec.openplanner.team/stops/X601btb"], ["https://tec.openplanner.team/stops/X925adb", "https://tec.openplanner.team/stops/X925afa"], ["https://tec.openplanner.team/stops/X390akb", "https://tec.openplanner.team/stops/X991aea"], ["https://tec.openplanner.team/stops/X876afa", "https://tec.openplanner.team/stops/X877acb"], ["https://tec.openplanner.team/stops/LTrchar2", "https://tec.openplanner.team/stops/LTrgibe2"], ["https://tec.openplanner.team/stops/N507aka", "https://tec.openplanner.team/stops/N507alc"], ["https://tec.openplanner.team/stops/X661aaa", "https://tec.openplanner.team/stops/X661abb"], ["https://tec.openplanner.team/stops/Bbeaap51", "https://tec.openplanner.team/stops/Bbeaneu3"], ["https://tec.openplanner.team/stops/Cluberl2", "https://tec.openplanner.team/stops/Cluplve4"], ["https://tec.openplanner.team/stops/LMfbuck1", "https://tec.openplanner.team/stops/LOtthie2"], ["https://tec.openplanner.team/stops/LBamate1", "https://tec.openplanner.team/stops/LBamate2"], ["https://tec.openplanner.team/stops/Bjausan1", "https://tec.openplanner.team/stops/Bmrl4ch2"], ["https://tec.openplanner.team/stops/H2ma203b", "https://tec.openplanner.team/stops/H2ma206b"], ["https://tec.openplanner.team/stops/LARarge1", "https://tec.openplanner.team/stops/LRIcent2"], ["https://tec.openplanner.team/stops/N562aha", "https://tec.openplanner.team/stops/N562aia"], ["https://tec.openplanner.team/stops/H5rx134a", "https://tec.openplanner.team/stops/H5rx134b"], ["https://tec.openplanner.team/stops/LNEbo471", "https://tec.openplanner.team/stops/LXHfalh1"], ["https://tec.openplanner.team/stops/H4to133a", "https://tec.openplanner.team/stops/H5at136a"], ["https://tec.openplanner.team/stops/X781aca", "https://tec.openplanner.team/stops/X781ahb"], ["https://tec.openplanner.team/stops/X802apa", "https://tec.openplanner.team/stops/X802apb"], ["https://tec.openplanner.team/stops/LMechpl1", "https://tec.openplanner.team/stops/LMemora2"], ["https://tec.openplanner.team/stops/LMOf21-1", "https://tec.openplanner.team/stops/LMOf21-2"], ["https://tec.openplanner.team/stops/Cwfmoul2", "https://tec.openplanner.team/stops/NC12aab"], ["https://tec.openplanner.team/stops/Llgdony2", "https://tec.openplanner.team/stops/Llgmair2"], ["https://tec.openplanner.team/stops/Cbfdufa1", "https://tec.openplanner.team/stops/Cctlimi1"], ["https://tec.openplanner.team/stops/X624afa", "https://tec.openplanner.team/stops/X624ala"], ["https://tec.openplanner.team/stops/LSZlegr1", "https://tec.openplanner.team/stops/LWycarr2"], ["https://tec.openplanner.team/stops/Cgocrus1", "https://tec.openplanner.team/stops/Cgocrus2"], ["https://tec.openplanner.team/stops/H4rx175b", "https://tec.openplanner.team/stops/H4tf147b"], ["https://tec.openplanner.team/stops/Lanpast2", "https://tec.openplanner.team/stops/Lanplat1"], ["https://tec.openplanner.team/stops/N135axa", "https://tec.openplanner.team/stops/N135bha"], ["https://tec.openplanner.team/stops/X806aja", "https://tec.openplanner.team/stops/X807adb"], ["https://tec.openplanner.team/stops/X911ala", "https://tec.openplanner.team/stops/X911amb"], ["https://tec.openplanner.team/stops/LPAeg--2", "https://tec.openplanner.team/stops/LSLhall*"], ["https://tec.openplanner.team/stops/LSNchen3", "https://tec.openplanner.team/stops/LSNnoul2"], ["https://tec.openplanner.team/stops/H4va231a", "https://tec.openplanner.team/stops/H4va234b"], ["https://tec.openplanner.team/stops/N351ata", "https://tec.openplanner.team/stops/N351atc"], ["https://tec.openplanner.team/stops/Blhugai1", "https://tec.openplanner.team/stops/Bwatber1"], ["https://tec.openplanner.team/stops/LJelava2", "https://tec.openplanner.team/stops/LJetrih1"], ["https://tec.openplanner.team/stops/NR21aaa", "https://tec.openplanner.team/stops/NR21afb"], ["https://tec.openplanner.team/stops/Cmareun1", "https://tec.openplanner.team/stops/CMprov1"], ["https://tec.openplanner.team/stops/LAMmc--1", "https://tec.openplanner.team/stops/LAMrich2"], ["https://tec.openplanner.team/stops/N261aba", "https://tec.openplanner.team/stops/N261acb"], ["https://tec.openplanner.team/stops/N137aeb", "https://tec.openplanner.team/stops/N137aec"], ["https://tec.openplanner.team/stops/Cjuhame1", "https://tec.openplanner.team/stops/Cjuhame2"], ["https://tec.openplanner.team/stops/Ljexhav3", "https://tec.openplanner.team/stops/Lmomine1"], ["https://tec.openplanner.team/stops/Lfhcime1", "https://tec.openplanner.team/stops/Lfhcime2"], ["https://tec.openplanner.team/stops/H4bh100a", "https://tec.openplanner.team/stops/H4jm117a"], ["https://tec.openplanner.team/stops/Ccuhaie1", "https://tec.openplanner.team/stops/Ccutrav4"], ["https://tec.openplanner.team/stops/Lsearbo2", "https://tec.openplanner.team/stops/Lsevill2"], ["https://tec.openplanner.team/stops/Llgfont1", "https://tec.openplanner.team/stops/Llgfont2"], ["https://tec.openplanner.team/stops/LaMadam2", "https://tec.openplanner.team/stops/LmI82--2"], ["https://tec.openplanner.team/stops/LwLprum1", "https://tec.openplanner.team/stops/LwLprum2"], ["https://tec.openplanner.team/stops/X730afb", "https://tec.openplanner.team/stops/X730aga"], ["https://tec.openplanner.team/stops/Cfcchas1", "https://tec.openplanner.team/stops/Cfcchas2"], ["https://tec.openplanner.team/stops/LlgOPER2", "https://tec.openplanner.team/stops/LlgOPER3"], ["https://tec.openplanner.team/stops/X687aaa", "https://tec.openplanner.team/stops/X687afa"], ["https://tec.openplanner.team/stops/LBBcamp1", "https://tec.openplanner.team/stops/LBBodet1"], ["https://tec.openplanner.team/stops/N505aba", "https://tec.openplanner.team/stops/N505ala"], ["https://tec.openplanner.team/stops/H1bu136b", "https://tec.openplanner.team/stops/H1bu138a"], ["https://tec.openplanner.team/stops/X949aib", "https://tec.openplanner.team/stops/X949aka"], ["https://tec.openplanner.team/stops/LWOrout1", "https://tec.openplanner.team/stops/LWOrout2"], ["https://tec.openplanner.team/stops/Cmocalv1", "https://tec.openplanner.team/stops/Cmoruau2"], ["https://tec.openplanner.team/stops/LWAalou1", "https://tec.openplanner.team/stops/LWAmouh2"], ["https://tec.openplanner.team/stops/N537abb", "https://tec.openplanner.team/stops/N537acb"], ["https://tec.openplanner.team/stops/X725aqb", "https://tec.openplanner.team/stops/X725beb"], ["https://tec.openplanner.team/stops/N110aaa", "https://tec.openplanner.team/stops/N110aab"], ["https://tec.openplanner.team/stops/Cdajume1", "https://tec.openplanner.team/stops/Cmafafe1"], ["https://tec.openplanner.team/stops/Lgrlimi1", "https://tec.openplanner.team/stops/Llgguer1"], ["https://tec.openplanner.team/stops/Bbrycar1", "https://tec.openplanner.team/stops/Bsampli1"], ["https://tec.openplanner.team/stops/LENengi1", "https://tec.openplanner.team/stops/LENpt--2"], ["https://tec.openplanner.team/stops/Cfasamb2", "https://tec.openplanner.team/stops/Cplrmon2"], ["https://tec.openplanner.team/stops/H5qu149a", "https://tec.openplanner.team/stops/H5qu152a"], ["https://tec.openplanner.team/stops/H1so133a", "https://tec.openplanner.team/stops/H1so139c"], ["https://tec.openplanner.team/stops/X812acb", "https://tec.openplanner.team/stops/X812aia"], ["https://tec.openplanner.team/stops/H1he107b", "https://tec.openplanner.team/stops/H1he111b"], ["https://tec.openplanner.team/stops/LAtaube1", "https://tec.openplanner.team/stops/LOCloup1"], ["https://tec.openplanner.team/stops/Cprgran2", "https://tec.openplanner.team/stops/NC44aga"], ["https://tec.openplanner.team/stops/Lagmoli2", "https://tec.openplanner.team/stops/Llgrome1"], ["https://tec.openplanner.team/stops/X595aha", "https://tec.openplanner.team/stops/X595ahb"], ["https://tec.openplanner.team/stops/H1au111a", "https://tec.openplanner.team/stops/H1au113a"], ["https://tec.openplanner.team/stops/Bitrcan2", "https://tec.openplanner.team/stops/Bitrcha2"], ["https://tec.openplanner.team/stops/X616abb", "https://tec.openplanner.team/stops/X616adb"], ["https://tec.openplanner.team/stops/X758aca", "https://tec.openplanner.team/stops/X758acb"], ["https://tec.openplanner.team/stops/LNCdoma3", "https://tec.openplanner.team/stops/LRRchen1"], ["https://tec.openplanner.team/stops/N236ama", "https://tec.openplanner.team/stops/N236amb"], ["https://tec.openplanner.team/stops/H1at109b", "https://tec.openplanner.team/stops/H1do119a"], ["https://tec.openplanner.team/stops/LbOdorf2", "https://tec.openplanner.team/stops/LbOvith2"], ["https://tec.openplanner.team/stops/N501dsa", "https://tec.openplanner.team/stops/N501dsb"], ["https://tec.openplanner.team/stops/H1je221a", "https://tec.openplanner.team/stops/H1je360a"], ["https://tec.openplanner.team/stops/H1cd110a", "https://tec.openplanner.team/stops/H1cd114a"], ["https://tec.openplanner.team/stops/X631ada", "https://tec.openplanner.team/stops/X644aea"], ["https://tec.openplanner.team/stops/Lanadmi2", "https://tec.openplanner.team/stops/Lanschu2"], ["https://tec.openplanner.team/stops/N501hab", "https://tec.openplanner.team/stops/N501icy"], ["https://tec.openplanner.team/stops/H2pe155b", "https://tec.openplanner.team/stops/H2pe157b"], ["https://tec.openplanner.team/stops/N535ajb", "https://tec.openplanner.team/stops/N539ayb"], ["https://tec.openplanner.team/stops/N549aca", "https://tec.openplanner.team/stops/N549acb"], ["https://tec.openplanner.team/stops/H1mm128a", "https://tec.openplanner.team/stops/H1mm128b"], ["https://tec.openplanner.team/stops/LGrchpl1", "https://tec.openplanner.team/stops/LHDpota3"], ["https://tec.openplanner.team/stops/H5rx104a", "https://tec.openplanner.team/stops/H5rx121a"], ["https://tec.openplanner.team/stops/Bquegob4", "https://tec.openplanner.team/stops/Brebeau1"], ["https://tec.openplanner.team/stops/X614aea", "https://tec.openplanner.team/stops/X614ayb"], ["https://tec.openplanner.team/stops/LlNsc652", "https://tec.openplanner.team/stops/LlNschu1"], ["https://tec.openplanner.team/stops/X607ada", "https://tec.openplanner.team/stops/X607aib"], ["https://tec.openplanner.team/stops/LCRfavr2", "https://tec.openplanner.team/stops/LTywyna2"], ["https://tec.openplanner.team/stops/LeI39--4", "https://tec.openplanner.team/stops/LeIpiro3"], ["https://tec.openplanner.team/stops/N584avb", "https://tec.openplanner.team/stops/N584axb"], ["https://tec.openplanner.team/stops/H1cu120a", "https://tec.openplanner.team/stops/H1je221a"], ["https://tec.openplanner.team/stops/X713aca", "https://tec.openplanner.team/stops/X713acb"], ["https://tec.openplanner.team/stops/NL80aca", "https://tec.openplanner.team/stops/NL80aib"], ["https://tec.openplanner.team/stops/H2hp116a", "https://tec.openplanner.team/stops/H2ll172d"], ["https://tec.openplanner.team/stops/Lghneuv2", "https://tec.openplanner.team/stops/Lghprea4"], ["https://tec.openplanner.team/stops/Crccamp1", "https://tec.openplanner.team/stops/Crccamp2"], ["https://tec.openplanner.team/stops/H1go174a", "https://tec.openplanner.team/stops/H1mx122b"], ["https://tec.openplanner.team/stops/X695ada", "https://tec.openplanner.team/stops/X696aja"], ["https://tec.openplanner.team/stops/Bquebut1", "https://tec.openplanner.team/stops/Bquecge1"], ["https://tec.openplanner.team/stops/X664aab", "https://tec.openplanner.team/stops/X665aab"], ["https://tec.openplanner.team/stops/LNCpi331", "https://tec.openplanner.team/stops/LRR2egl1"], ["https://tec.openplanner.team/stops/Blhulor2", "https://tec.openplanner.team/stops/Blhurcl1"], ["https://tec.openplanner.team/stops/NL78aca", "https://tec.openplanner.team/stops/NL78afa"], ["https://tec.openplanner.team/stops/X342aaa", "https://tec.openplanner.team/stops/X342aab"], ["https://tec.openplanner.team/stops/N531aka", "https://tec.openplanner.team/stops/N576aia"], ["https://tec.openplanner.team/stops/Bgnvcha2", "https://tec.openplanner.team/stops/Blhumpo3"], ["https://tec.openplanner.team/stops/H4ms144a", "https://tec.openplanner.team/stops/H4ms166a"], ["https://tec.openplanner.team/stops/N230aab", "https://tec.openplanner.team/stops/N230aja"], ["https://tec.openplanner.team/stops/Cbecarr1", "https://tec.openplanner.team/stops/N161abc"], ["https://tec.openplanner.team/stops/Llgbavi4", "https://tec.openplanner.team/stops/Llgsime2"], ["https://tec.openplanner.team/stops/X804bjb", "https://tec.openplanner.team/stops/X804bya"], ["https://tec.openplanner.team/stops/LACeg--1", "https://tec.openplanner.team/stops/LACeg--2"], ["https://tec.openplanner.team/stops/N501cmd", "https://tec.openplanner.team/stops/N501eha"], ["https://tec.openplanner.team/stops/LXoeg--3", "https://tec.openplanner.team/stops/LXopier2"], ["https://tec.openplanner.team/stops/LCTpt--1", "https://tec.openplanner.team/stops/LCTpt--2"], ["https://tec.openplanner.team/stops/H4ty268a", "https://tec.openplanner.team/stops/H4ty268b"], ["https://tec.openplanner.team/stops/LjeGRPME", "https://tec.openplanner.team/stops/Lsekubo4"], ["https://tec.openplanner.team/stops/N302aab", "https://tec.openplanner.team/stops/N302acb"], ["https://tec.openplanner.team/stops/X666aha", "https://tec.openplanner.team/stops/X666aib"], ["https://tec.openplanner.team/stops/H1vb141a", "https://tec.openplanner.team/stops/H1vb142b"], ["https://tec.openplanner.team/stops/H1ry137a", "https://tec.openplanner.team/stops/H1ry137b"], ["https://tec.openplanner.team/stops/LCEcent1", "https://tec.openplanner.team/stops/LCEcent2"], ["https://tec.openplanner.team/stops/X940aea", "https://tec.openplanner.team/stops/X940aed"], ["https://tec.openplanner.team/stops/N503aaa", "https://tec.openplanner.team/stops/N503aab"], ["https://tec.openplanner.team/stops/Bdoncar2", "https://tec.openplanner.team/stops/Bdoncen1"], ["https://tec.openplanner.team/stops/H5pe129b", "https://tec.openplanner.team/stops/H5pe142a"], ["https://tec.openplanner.team/stops/H1to151a", "https://tec.openplanner.team/stops/H1to152a"], ["https://tec.openplanner.team/stops/N521aib", "https://tec.openplanner.team/stops/N521aob"], ["https://tec.openplanner.team/stops/X725aoa", "https://tec.openplanner.team/stops/X725bgb"], ["https://tec.openplanner.team/stops/N523aaa", "https://tec.openplanner.team/stops/N523aca"], ["https://tec.openplanner.team/stops/LbTgeme2", "https://tec.openplanner.team/stops/LwYbruc4"], ["https://tec.openplanner.team/stops/Llgcham7", "https://tec.openplanner.team/stops/Llgguer1"], ["https://tec.openplanner.team/stops/LSBdelc2", "https://tec.openplanner.team/stops/LSGec--1"], ["https://tec.openplanner.team/stops/NL74aab", "https://tec.openplanner.team/stops/NL74aad"], ["https://tec.openplanner.team/stops/H4an111a", "https://tec.openplanner.team/stops/H4rs118a"], ["https://tec.openplanner.team/stops/LLAbure1", "https://tec.openplanner.team/stops/LLAbure2"], ["https://tec.openplanner.team/stops/H4mo137a", "https://tec.openplanner.team/stops/H4wa148a"], ["https://tec.openplanner.team/stops/LFrfrai1", "https://tec.openplanner.team/stops/LTRryta1"], ["https://tec.openplanner.team/stops/X601coa", "https://tec.openplanner.team/stops/X601cva"], ["https://tec.openplanner.team/stops/H1hw125b", "https://tec.openplanner.team/stops/H1ls109b"], ["https://tec.openplanner.team/stops/Lmimili2", "https://tec.openplanner.team/stops/Lvtcime1"], ["https://tec.openplanner.team/stops/Btieast1", "https://tec.openplanner.team/stops/LMastat4"], ["https://tec.openplanner.team/stops/LOTferm1", "https://tec.openplanner.team/stops/LXhmara2"], ["https://tec.openplanner.team/stops/LBavive1", "https://tec.openplanner.team/stops/LBavive2"], ["https://tec.openplanner.team/stops/N504aaa", "https://tec.openplanner.team/stops/N504aab"], ["https://tec.openplanner.team/stops/N536aga", "https://tec.openplanner.team/stops/N536agb"], ["https://tec.openplanner.team/stops/Balssvi2", "https://tec.openplanner.team/stops/Balswin2"], ["https://tec.openplanner.team/stops/NL74aca", "https://tec.openplanner.team/stops/NL74afa"], ["https://tec.openplanner.team/stops/H2sb258b", "https://tec.openplanner.team/stops/H2sb259b"], ["https://tec.openplanner.team/stops/N301aba", "https://tec.openplanner.team/stops/N301aib"], ["https://tec.openplanner.team/stops/X993abc", "https://tec.openplanner.team/stops/X993aha"], ["https://tec.openplanner.team/stops/Bgzdcwa1", "https://tec.openplanner.team/stops/Bgzdgli2"], ["https://tec.openplanner.team/stops/LAWdefu3", "https://tec.openplanner.team/stops/LAWeg--2"], ["https://tec.openplanner.team/stops/Cbufron2", "https://tec.openplanner.team/stops/Ccacoup2"], ["https://tec.openplanner.team/stops/LSTchat2", "https://tec.openplanner.team/stops/LSTgran1"], ["https://tec.openplanner.team/stops/NL68aab", "https://tec.openplanner.team/stops/NL68aad"], ["https://tec.openplanner.team/stops/Bohngai2", "https://tec.openplanner.team/stops/Bohnrph1"], ["https://tec.openplanner.team/stops/H4ha169b", "https://tec.openplanner.team/stops/H4ha170b"], ["https://tec.openplanner.team/stops/Cchcime1", "https://tec.openplanner.team/stops/Cchfaub2"], ["https://tec.openplanner.team/stops/Bsomtnd2", "https://tec.openplanner.team/stops/N584ada"], ["https://tec.openplanner.team/stops/NB33ajb", "https://tec.openplanner.team/stops/NB59akb"], ["https://tec.openplanner.team/stops/LtH37c-1", "https://tec.openplanner.team/stops/LtH37c-2"], ["https://tec.openplanner.team/stops/LWDcime1", "https://tec.openplanner.team/stops/LWDmass2"], ["https://tec.openplanner.team/stops/LlgguilF", "https://tec.openplanner.team/stops/Llgjoie2"], ["https://tec.openplanner.team/stops/LBhcent2", "https://tec.openplanner.team/stops/LBhsign2"], ["https://tec.openplanner.team/stops/X919aab", "https://tec.openplanner.team/stops/X921ada"], ["https://tec.openplanner.team/stops/Lvoec--2", "https://tec.openplanner.team/stops/Lvoeg--1"], ["https://tec.openplanner.team/stops/Lseathe2", "https://tec.openplanner.team/stops/Lseboia1"], ["https://tec.openplanner.team/stops/X801aia", "https://tec.openplanner.team/stops/X801aib"], ["https://tec.openplanner.team/stops/LFRgode1", "https://tec.openplanner.team/stops/LFRgode2"], ["https://tec.openplanner.team/stops/Clooues2", "https://tec.openplanner.team/stops/Clooues3"], ["https://tec.openplanner.team/stops/LkEhaag1", "https://tec.openplanner.team/stops/LlNsc651"], ["https://tec.openplanner.team/stops/H1hr118c", "https://tec.openplanner.team/stops/H1hr122b"], ["https://tec.openplanner.team/stops/X939ahb", "https://tec.openplanner.team/stops/X940aha"], ["https://tec.openplanner.team/stops/N528aka", "https://tec.openplanner.team/stops/N528ara"], ["https://tec.openplanner.team/stops/H1gh158a", "https://tec.openplanner.team/stops/H1gh165a"], ["https://tec.openplanner.team/stops/X982baa", "https://tec.openplanner.team/stops/X996acb"], ["https://tec.openplanner.team/stops/N564aba", "https://tec.openplanner.team/stops/N564acb"], ["https://tec.openplanner.team/stops/LBEmich1", "https://tec.openplanner.team/stops/LBEssab1"], ["https://tec.openplanner.team/stops/H1qy134b", "https://tec.openplanner.team/stops/H1qy136b"], ["https://tec.openplanner.team/stops/LHUhsar1", "https://tec.openplanner.team/stops/LHUhsar2"], ["https://tec.openplanner.team/stops/Lmoknae3", "https://tec.openplanner.team/stops/Lmoknae4"], ["https://tec.openplanner.team/stops/H1qu105a", "https://tec.openplanner.team/stops/H1wl123a"], ["https://tec.openplanner.team/stops/LhGkirc1", "https://tec.openplanner.team/stops/LhGlang1"], ["https://tec.openplanner.team/stops/Laltrav1", "https://tec.openplanner.team/stops/Llaeg--2"], ["https://tec.openplanner.team/stops/X714aea", "https://tec.openplanner.team/stops/X731aja"], ["https://tec.openplanner.team/stops/Cnabult3", "https://tec.openplanner.team/stops/Cnaplan2"], ["https://tec.openplanner.team/stops/N573aba", "https://tec.openplanner.team/stops/N573acb"], ["https://tec.openplanner.team/stops/LATcorp1", "https://tec.openplanner.team/stops/LHUzoni2"], ["https://tec.openplanner.team/stops/X639aka", "https://tec.openplanner.team/stops/X639akb"], ["https://tec.openplanner.team/stops/LWOplat1", "https://tec.openplanner.team/stops/LWOunio1"], ["https://tec.openplanner.team/stops/X937aba", "https://tec.openplanner.team/stops/X937aga"], ["https://tec.openplanner.team/stops/LSOboeu1", "https://tec.openplanner.team/stops/LSOtrou1"], ["https://tec.openplanner.team/stops/H1qu106b", "https://tec.openplanner.team/stops/H1qu116a"], ["https://tec.openplanner.team/stops/Blilwit1", "https://tec.openplanner.team/stops/Clproi1"], ["https://tec.openplanner.team/stops/H1ht121b", "https://tec.openplanner.team/stops/H1ht135a"], ["https://tec.openplanner.team/stops/X908adb", "https://tec.openplanner.team/stops/X911aoa"], ["https://tec.openplanner.team/stops/X653ada", "https://tec.openplanner.team/stops/X653adc"], ["https://tec.openplanner.team/stops/N311adb", "https://tec.openplanner.team/stops/N311afb"], ["https://tec.openplanner.team/stops/Brsrabe2", "https://tec.openplanner.team/stops/Brsrbbo2"], ["https://tec.openplanner.team/stops/LBItnt-*", "https://tec.openplanner.team/stops/Lmltrix*"], ["https://tec.openplanner.team/stops/LWechpl1", "https://tec.openplanner.team/stops/LWechpl2"], ["https://tec.openplanner.team/stops/N211aca", "https://tec.openplanner.team/stops/N211acb"], ["https://tec.openplanner.team/stops/Llgjoie1", "https://tec.openplanner.team/stops/Llgjoie3"], ["https://tec.openplanner.team/stops/X601bha", "https://tec.openplanner.team/stops/X601ceb"], ["https://tec.openplanner.team/stops/X771aab", "https://tec.openplanner.team/stops/X773aaa"], ["https://tec.openplanner.team/stops/H4ch117a", "https://tec.openplanner.team/stops/H4ch120b"], ["https://tec.openplanner.team/stops/NC14aaa", "https://tec.openplanner.team/stops/NC14apa"], ["https://tec.openplanner.team/stops/Blmlfau2", "https://tec.openplanner.team/stops/Blmlvex1"], ["https://tec.openplanner.team/stops/LTEkerk2", "https://tec.openplanner.team/stops/LTEziho1"], ["https://tec.openplanner.team/stops/N562bmb", "https://tec.openplanner.team/stops/N562boa"], ["https://tec.openplanner.team/stops/H4fg116a", "https://tec.openplanner.team/stops/H4fg116b"], ["https://tec.openplanner.team/stops/H1hh117a", "https://tec.openplanner.team/stops/H1hh117b"], ["https://tec.openplanner.team/stops/Ccabois1", "https://tec.openplanner.team/stops/Ccaegli2"], ["https://tec.openplanner.team/stops/X784aab", "https://tec.openplanner.team/stops/X784abb"], ["https://tec.openplanner.team/stops/X615aea", "https://tec.openplanner.team/stops/X615aib"], ["https://tec.openplanner.team/stops/Lbocorn2", "https://tec.openplanner.team/stops/Louaout2"], ["https://tec.openplanner.team/stops/Ljecoqu1", "https://tec.openplanner.team/stops/LjeGRPME"], ["https://tec.openplanner.team/stops/N534adb", "https://tec.openplanner.team/stops/N553ahb"], ["https://tec.openplanner.team/stops/LGOcana1", "https://tec.openplanner.team/stops/LGOdelv2"], ["https://tec.openplanner.team/stops/Bhmmpos1", "https://tec.openplanner.team/stops/Bhmmpos2"], ["https://tec.openplanner.team/stops/NH01aja", "https://tec.openplanner.team/stops/NH01ajb"], ["https://tec.openplanner.team/stops/LWDplac2", "https://tec.openplanner.team/stops/LWDsott1"], ["https://tec.openplanner.team/stops/N549adb", "https://tec.openplanner.team/stops/N549aib"], ["https://tec.openplanner.team/stops/X801bra", "https://tec.openplanner.team/stops/X801bzb"], ["https://tec.openplanner.team/stops/LSsaxhe2", "https://tec.openplanner.team/stops/LSznoel1"], ["https://tec.openplanner.team/stops/LHMbami2", "https://tec.openplanner.team/stops/LHMsipp2"], ["https://tec.openplanner.team/stops/Crebrux2", "https://tec.openplanner.team/stops/Crefont2"], ["https://tec.openplanner.team/stops/X910afb", "https://tec.openplanner.team/stops/X910agb"], ["https://tec.openplanner.team/stops/H4ta130a", "https://tec.openplanner.team/stops/H4ta132b"], ["https://tec.openplanner.team/stops/H4pi132b", "https://tec.openplanner.team/stops/H4pi134a"], ["https://tec.openplanner.team/stops/N501bwa", "https://tec.openplanner.team/stops/N501bwb"], ["https://tec.openplanner.team/stops/Bfledpi2", "https://tec.openplanner.team/stops/Cflchel4"], ["https://tec.openplanner.team/stops/Bolgeva2", "https://tec.openplanner.team/stops/Bolgmpl1"], ["https://tec.openplanner.team/stops/X991aka", "https://tec.openplanner.team/stops/X991ala"], ["https://tec.openplanner.team/stops/LBhschu1", "https://tec.openplanner.team/stops/X792abb"], ["https://tec.openplanner.team/stops/H4fg116b", "https://tec.openplanner.team/stops/H4wn125a"], ["https://tec.openplanner.team/stops/N532aca", "https://tec.openplanner.team/stops/N532ada"], ["https://tec.openplanner.team/stops/X908aqa", "https://tec.openplanner.team/stops/X910aab"], ["https://tec.openplanner.team/stops/LEnchan1", "https://tec.openplanner.team/stops/LEnvill2"], ["https://tec.openplanner.team/stops/Bbgnvel1", "https://tec.openplanner.team/stops/N584bqa"], ["https://tec.openplanner.team/stops/LDapota1", "https://tec.openplanner.team/stops/LOMcabi2"], ["https://tec.openplanner.team/stops/Cfovent1", "https://tec.openplanner.team/stops/Cfowall1"], ["https://tec.openplanner.team/stops/Lmibove3", "https://tec.openplanner.team/stops/Lmicoop1"], ["https://tec.openplanner.team/stops/LROcent1", "https://tec.openplanner.team/stops/LROrtba2"], ["https://tec.openplanner.team/stops/H2pr114a", "https://tec.openplanner.team/stops/H2pr114b"], ["https://tec.openplanner.team/stops/X754anb", "https://tec.openplanner.team/stops/X754aob"], ["https://tec.openplanner.team/stops/LPrcarr2", "https://tec.openplanner.team/stops/X261aaa"], ["https://tec.openplanner.team/stops/H1ob339a", "https://tec.openplanner.team/stops/H1sd344a"], ["https://tec.openplanner.team/stops/H4fr143a", "https://tec.openplanner.team/stops/H4te254a"], ["https://tec.openplanner.team/stops/H1sa113b", "https://tec.openplanner.team/stops/H1sa115b"], ["https://tec.openplanner.team/stops/Bbgerlr2", "https://tec.openplanner.team/stops/Bbgewal2"], ["https://tec.openplanner.team/stops/Ccybouc2", "https://tec.openplanner.team/stops/NH01aea"], ["https://tec.openplanner.team/stops/LAyabri1", "https://tec.openplanner.team/stops/LSHmais1"], ["https://tec.openplanner.team/stops/Lfhdonn2", "https://tec.openplanner.team/stops/Lsecris3"], ["https://tec.openplanner.team/stops/H5rx139a", "https://tec.openplanner.team/stops/H5rx140a"], ["https://tec.openplanner.team/stops/Lccawir1", "https://tec.openplanner.team/stops/LENgend1"], ["https://tec.openplanner.team/stops/Lancolr1", "https://tec.openplanner.team/stops/Lanegal1"], ["https://tec.openplanner.team/stops/LBWbatt1", "https://tec.openplanner.team/stops/LVImons1"], ["https://tec.openplanner.team/stops/X639apa", "https://tec.openplanner.team/stops/X639asb"], ["https://tec.openplanner.team/stops/Buccdch1", "https://tec.openplanner.team/stops/Buccdch2"], ["https://tec.openplanner.team/stops/Bneersa2", "https://tec.openplanner.team/stops/Bneesj32"], ["https://tec.openplanner.team/stops/X901adb", "https://tec.openplanner.team/stops/X901aea"], ["https://tec.openplanner.team/stops/LWAeloi1", "https://tec.openplanner.team/stops/LWAeloi2"], ["https://tec.openplanner.team/stops/H4hq130b", "https://tec.openplanner.team/stops/H4mb143b"], ["https://tec.openplanner.team/stops/X725aka", "https://tec.openplanner.team/stops/X725ama"], ["https://tec.openplanner.team/stops/X601bub", "https://tec.openplanner.team/stops/X601dha"], ["https://tec.openplanner.team/stops/H5at106a", "https://tec.openplanner.team/stops/H5at116a"], ["https://tec.openplanner.team/stops/N509aca", "https://tec.openplanner.team/stops/N511aqa"], ["https://tec.openplanner.team/stops/LFCkett1", "https://tec.openplanner.team/stops/LWRchem2"], ["https://tec.openplanner.team/stops/X663aea", "https://tec.openplanner.team/stops/X663aga"], ["https://tec.openplanner.team/stops/Bjodcad2", "https://tec.openplanner.team/stops/Bjodgar1"], ["https://tec.openplanner.team/stops/X608aeb", "https://tec.openplanner.team/stops/X608ayb"], ["https://tec.openplanner.team/stops/N201aoa", "https://tec.openplanner.team/stops/N201aob"], ["https://tec.openplanner.team/stops/X908aca", "https://tec.openplanner.team/stops/X954aba"], ["https://tec.openplanner.team/stops/X630ada", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/X637aba", "https://tec.openplanner.team/stops/X637abb"], ["https://tec.openplanner.team/stops/Cmtplac3", "https://tec.openplanner.team/stops/Cmtplac4"], ["https://tec.openplanner.team/stops/LBDcarr1", "https://tec.openplanner.team/stops/LVEcacq1"], ["https://tec.openplanner.team/stops/LTiflor2", "https://tec.openplanner.team/stops/LTiruel1"], ["https://tec.openplanner.team/stops/Lprmerc*", "https://tec.openplanner.team/stops/Lprthie2"], ["https://tec.openplanner.team/stops/N337aga", "https://tec.openplanner.team/stops/N337agb"], ["https://tec.openplanner.team/stops/X716acb", "https://tec.openplanner.team/stops/X736aia"], ["https://tec.openplanner.team/stops/N201aqb", "https://tec.openplanner.team/stops/N201awa"], ["https://tec.openplanner.team/stops/Lsemaha2", "https://tec.openplanner.team/stops/Lserena2"], ["https://tec.openplanner.team/stops/Lrcchpl2", "https://tec.openplanner.team/stops/Lvoplac1"], ["https://tec.openplanner.team/stops/X771adb", "https://tec.openplanner.team/stops/X773amb"], ["https://tec.openplanner.team/stops/LnEkirc2", "https://tec.openplanner.team/stops/LnEkirc3"], ["https://tec.openplanner.team/stops/H3bi108a", "https://tec.openplanner.team/stops/H3bi108b"], ["https://tec.openplanner.team/stops/H1hh109b", "https://tec.openplanner.team/stops/H1hh113a"], ["https://tec.openplanner.team/stops/LATmale2", "https://tec.openplanner.team/stops/LWNfani1"], ["https://tec.openplanner.team/stops/N513axb", "https://tec.openplanner.team/stops/N520aba"], ["https://tec.openplanner.team/stops/N513aza", "https://tec.openplanner.team/stops/N516adb"], ["https://tec.openplanner.team/stops/Bgnpgar2", "https://tec.openplanner.team/stops/Bwaypon1"], ["https://tec.openplanner.team/stops/X775aaa", "https://tec.openplanner.team/stops/X953aaa"], ["https://tec.openplanner.team/stops/Cpllimi1", "https://tec.openplanner.team/stops/Cpllimi3"], ["https://tec.openplanner.team/stops/H4bf108b", "https://tec.openplanner.team/stops/H4bn173a"], ["https://tec.openplanner.team/stops/Bixlozo2", "https://tec.openplanner.team/stops/Buccvch2"], ["https://tec.openplanner.team/stops/LWAcham1", "https://tec.openplanner.team/stops/LWAhart1"], ["https://tec.openplanner.team/stops/LFUfonc2", "https://tec.openplanner.team/stops/LHuetat1"], ["https://tec.openplanner.team/stops/X901agb", "https://tec.openplanner.team/stops/X902aub"], ["https://tec.openplanner.team/stops/H4oq229b", "https://tec.openplanner.team/stops/H4oq409b"], ["https://tec.openplanner.team/stops/N160aea", "https://tec.openplanner.team/stops/N160afa"], ["https://tec.openplanner.team/stops/LHueg--1", "https://tec.openplanner.team/stops/NL73acb"], ["https://tec.openplanner.team/stops/X804btb", "https://tec.openplanner.team/stops/X818aaa"], ["https://tec.openplanner.team/stops/X822agb", "https://tec.openplanner.team/stops/X822aka"], ["https://tec.openplanner.team/stops/Buccchu1", "https://tec.openplanner.team/stops/Buccgob1"], ["https://tec.openplanner.team/stops/LBegare1", "https://tec.openplanner.team/stops/LBegare2"], ["https://tec.openplanner.team/stops/Bbgelre2", "https://tec.openplanner.team/stops/Bwavbmo1"], ["https://tec.openplanner.team/stops/H5el104a", "https://tec.openplanner.team/stops/H5wo130a"], ["https://tec.openplanner.team/stops/Brebgpl1", "https://tec.openplanner.team/stops/Brebhos1"], ["https://tec.openplanner.team/stops/Llggcha1", "https://tec.openplanner.team/stops/Lsntvbi2"], ["https://tec.openplanner.team/stops/Lgrorch1", "https://tec.openplanner.team/stops/Lgrorch2"], ["https://tec.openplanner.team/stops/LCPcomm1", "https://tec.openplanner.team/stops/LCPlebl1"], ["https://tec.openplanner.team/stops/N544aba", "https://tec.openplanner.team/stops/N544afb"], ["https://tec.openplanner.team/stops/Cfaterg6", "https://tec.openplanner.team/stops/Crsapol2"], ["https://tec.openplanner.team/stops/Brsreco1", "https://tec.openplanner.team/stops/Brsreco2"], ["https://tec.openplanner.team/stops/LVNroua2", "https://tec.openplanner.team/stops/LWzwanz2"], ["https://tec.openplanner.team/stops/Bnivpla2", "https://tec.openplanner.team/stops/Bnivsse1"], ["https://tec.openplanner.team/stops/N510aca", "https://tec.openplanner.team/stops/N510aea"], ["https://tec.openplanner.team/stops/H4gu107b", "https://tec.openplanner.team/stops/H4ry130a"], ["https://tec.openplanner.team/stops/LCAwals2", "https://tec.openplanner.team/stops/LPcforg1"], ["https://tec.openplanner.team/stops/Blanath2", "https://tec.openplanner.team/stops/Blankal4"], ["https://tec.openplanner.team/stops/H1bl104b", "https://tec.openplanner.team/stops/H1bl105b"], ["https://tec.openplanner.team/stops/X621aca", "https://tec.openplanner.team/stops/X621adb"], ["https://tec.openplanner.team/stops/Brixpje2", "https://tec.openplanner.team/stops/Brixpro2"], ["https://tec.openplanner.team/stops/Cgrgrce2", "https://tec.openplanner.team/stops/Cnaplan1"], ["https://tec.openplanner.team/stops/Lprorem1", "https://tec.openplanner.team/stops/Lprorem2"], ["https://tec.openplanner.team/stops/X351aba", "https://tec.openplanner.team/stops/X351acb"], ["https://tec.openplanner.team/stops/H1fl133b", "https://tec.openplanner.team/stops/H1fl141a"], ["https://tec.openplanner.team/stops/H4br110a", "https://tec.openplanner.team/stops/H4cl114a"], ["https://tec.openplanner.team/stops/N501arb", "https://tec.openplanner.team/stops/N501cdb"], ["https://tec.openplanner.team/stops/Ccyfroi1", "https://tec.openplanner.team/stops/NH01aea"], ["https://tec.openplanner.team/stops/Bgemkal2", "https://tec.openplanner.team/stops/N522aca"], ["https://tec.openplanner.team/stops/H1vt193a", "https://tec.openplanner.team/stops/H1vt194b"], ["https://tec.openplanner.team/stops/LOuouff1", "https://tec.openplanner.team/stops/LOurena1"], ["https://tec.openplanner.team/stops/X925akb", "https://tec.openplanner.team/stops/X947aeb"], ["https://tec.openplanner.team/stops/X665aba", "https://tec.openplanner.team/stops/X666ahb"], ["https://tec.openplanner.team/stops/Llgbry-1", "https://tec.openplanner.team/stops/Llghori1"], ["https://tec.openplanner.team/stops/N501coa", "https://tec.openplanner.team/stops/N535aaa"], ["https://tec.openplanner.team/stops/LBTcarr4", "https://tec.openplanner.team/stops/LHEbeau1"], ["https://tec.openplanner.team/stops/H1pe131a", "https://tec.openplanner.team/stops/H1vb143a"], ["https://tec.openplanner.team/stops/LMEwerg1", "https://tec.openplanner.team/stops/LSOladr2"], ["https://tec.openplanner.team/stops/X907abb", "https://tec.openplanner.team/stops/X907ajb"], ["https://tec.openplanner.team/stops/Lvefluc2", "https://tec.openplanner.team/stops/Lvepire1"], ["https://tec.openplanner.team/stops/X724aha", "https://tec.openplanner.team/stops/X766aaa"], ["https://tec.openplanner.team/stops/Bgntalt1", "https://tec.openplanner.team/stops/Bgntalt4"], ["https://tec.openplanner.team/stops/LLecolo1", "https://tec.openplanner.team/stops/X547ahb"], ["https://tec.openplanner.team/stops/LOUbarr1", "https://tec.openplanner.team/stops/LOUbarr3"], ["https://tec.openplanner.team/stops/H2jo163a", "https://tec.openplanner.team/stops/H2jo164b"], ["https://tec.openplanner.team/stops/X773acb", "https://tec.openplanner.team/stops/X954aba"], ["https://tec.openplanner.team/stops/X818adb", "https://tec.openplanner.team/stops/X818aeb"], ["https://tec.openplanner.team/stops/H2ll184a", "https://tec.openplanner.team/stops/H2ll187c"], ["https://tec.openplanner.team/stops/LPAmc--2", "https://tec.openplanner.team/stops/LSLhall*"], ["https://tec.openplanner.team/stops/X623aea", "https://tec.openplanner.team/stops/X623aeb"], ["https://tec.openplanner.team/stops/NL67abb", "https://tec.openplanner.team/stops/NL72acb"], ["https://tec.openplanner.team/stops/Bmaregl1", "https://tec.openplanner.team/stops/Btilmar1"], ["https://tec.openplanner.team/stops/X607aha", "https://tec.openplanner.team/stops/X607aia"], ["https://tec.openplanner.team/stops/LHGbeur3", "https://tec.openplanner.team/stops/LXhvina1"], ["https://tec.openplanner.team/stops/N501grd", "https://tec.openplanner.team/stops/N501grg"], ["https://tec.openplanner.team/stops/H4pp122b", "https://tec.openplanner.team/stops/H4qu408a"], ["https://tec.openplanner.team/stops/LBpcren2", "https://tec.openplanner.team/stops/LBpecco4"], ["https://tec.openplanner.team/stops/X986abb", "https://tec.openplanner.team/stops/X986asa"], ["https://tec.openplanner.team/stops/LWHtrui1", "https://tec.openplanner.team/stops/LWHwaas4"], ["https://tec.openplanner.team/stops/Lprdavi1", "https://tec.openplanner.team/stops/Lvefanc2"], ["https://tec.openplanner.team/stops/Cbuegl1", "https://tec.openplanner.team/stops/Cbupla1"], ["https://tec.openplanner.team/stops/LhP25--2", "https://tec.openplanner.team/stops/LhPhale1"], ["https://tec.openplanner.team/stops/LSochal2", "https://tec.openplanner.team/stops/LSoeg--2"], ["https://tec.openplanner.team/stops/Cmamonu2", "https://tec.openplanner.team/stops/Cmychap4"], ["https://tec.openplanner.team/stops/LsVgesc1", "https://tec.openplanner.team/stops/LsVhupp2"], ["https://tec.openplanner.team/stops/H4ef111a", "https://tec.openplanner.team/stops/H4ef111b"], ["https://tec.openplanner.team/stops/Bsences2", "https://tec.openplanner.team/stops/H2se107a"], ["https://tec.openplanner.team/stops/N512ada", "https://tec.openplanner.team/stops/N512apb"], ["https://tec.openplanner.team/stops/Cchba04", "https://tec.openplanner.team/stops/CMba1"], ["https://tec.openplanner.team/stops/Bnivbpe1", "https://tec.openplanner.team/stops/Bptrlux1"], ["https://tec.openplanner.team/stops/H1gh171a", "https://tec.openplanner.team/stops/H1gh171b"], ["https://tec.openplanner.team/stops/LOucarr3", "https://tec.openplanner.team/stops/LOucarr4"], ["https://tec.openplanner.team/stops/X979ada", "https://tec.openplanner.team/stops/X979adb"], ["https://tec.openplanner.team/stops/N137aec", "https://tec.openplanner.team/stops/N137agb"], ["https://tec.openplanner.team/stops/Lhuecol1", "https://tec.openplanner.team/stops/Lhuecol2"], ["https://tec.openplanner.team/stops/N501lda", "https://tec.openplanner.team/stops/N538abb"], ["https://tec.openplanner.team/stops/LAUmerc1", "https://tec.openplanner.team/stops/LAUmerc2"], ["https://tec.openplanner.team/stops/Bptrman1", "https://tec.openplanner.team/stops/Bptrman2"], ["https://tec.openplanner.team/stops/X734aha", "https://tec.openplanner.team/stops/X953aaa"], ["https://tec.openplanner.team/stops/N209ada", "https://tec.openplanner.team/stops/N209aea"], ["https://tec.openplanner.team/stops/Bblmpro1", "https://tec.openplanner.team/stops/Bnilpie1"], ["https://tec.openplanner.team/stops/Cmesncv3", "https://tec.openplanner.team/stops/Cvpcour1"], ["https://tec.openplanner.team/stops/H4mo204a", "https://tec.openplanner.team/stops/H4mo205b"], ["https://tec.openplanner.team/stops/H2ma203a", "https://tec.openplanner.team/stops/H2ma210a"], ["https://tec.openplanner.team/stops/X882aha", "https://tec.openplanner.team/stops/X898aeb"], ["https://tec.openplanner.team/stops/N139aeb", "https://tec.openplanner.team/stops/N146afb"], ["https://tec.openplanner.team/stops/X620aga", "https://tec.openplanner.team/stops/X620agb"], ["https://tec.openplanner.team/stops/X889adb", "https://tec.openplanner.team/stops/X889aeb"], ["https://tec.openplanner.team/stops/Blimrof1", "https://tec.openplanner.team/stops/Brixble5"], ["https://tec.openplanner.team/stops/H4bo116a", "https://tec.openplanner.team/stops/H4bo122b"], ["https://tec.openplanner.team/stops/Bvircen2", "https://tec.openplanner.team/stops/Bvirmav2"], ["https://tec.openplanner.team/stops/N501dqa", "https://tec.openplanner.team/stops/N501mvd"], ["https://tec.openplanner.team/stops/N530ada", "https://tec.openplanner.team/stops/N530aja"], ["https://tec.openplanner.team/stops/Lfhmalv1", "https://tec.openplanner.team/stops/Livgera3"], ["https://tec.openplanner.team/stops/H2hp119b", "https://tec.openplanner.team/stops/H2ll260a"], ["https://tec.openplanner.team/stops/Cmocime1", "https://tec.openplanner.team/stops/Cmosaba3"], ["https://tec.openplanner.team/stops/LLbmalm1", "https://tec.openplanner.team/stops/LLbpt--2"], ["https://tec.openplanner.team/stops/LGetroi1", "https://tec.openplanner.team/stops/LGetroi2"], ["https://tec.openplanner.team/stops/X946ada", "https://tec.openplanner.team/stops/X946adb"], ["https://tec.openplanner.team/stops/NC44ada", "https://tec.openplanner.team/stops/NC44adb"], ["https://tec.openplanner.team/stops/Cgocrus2", "https://tec.openplanner.team/stops/Cgon52"], ["https://tec.openplanner.team/stops/H1fv103b", "https://tec.openplanner.team/stops/H1ls105b"], ["https://tec.openplanner.team/stops/N513acd", "https://tec.openplanner.team/stops/N513adb"], ["https://tec.openplanner.team/stops/Chthttr2", "https://tec.openplanner.team/stops/Cthbifu1"], ["https://tec.openplanner.team/stops/N235aba", "https://tec.openplanner.team/stops/N235abb"], ["https://tec.openplanner.team/stops/Cchsud10", "https://tec.openplanner.team/stops/Cchsud18"], ["https://tec.openplanner.team/stops/H1ch101b", "https://tec.openplanner.team/stops/H1hh116a"], ["https://tec.openplanner.team/stops/H4ma202b", "https://tec.openplanner.team/stops/H4ma400a"], ["https://tec.openplanner.team/stops/LLR4bra1", "https://tec.openplanner.team/stops/LLRgdma1"], ["https://tec.openplanner.team/stops/Bnivgpl2", "https://tec.openplanner.team/stops/Bnivpso2"], ["https://tec.openplanner.team/stops/LWbboeg2", "https://tec.openplanner.team/stops/LWbregn1"], ["https://tec.openplanner.team/stops/N512adb", "https://tec.openplanner.team/stops/N512aua"], ["https://tec.openplanner.team/stops/N348abb", "https://tec.openplanner.team/stops/N348acb"], ["https://tec.openplanner.team/stops/N204acb", "https://tec.openplanner.team/stops/N204afa"], ["https://tec.openplanner.team/stops/Lghcoqs2", "https://tec.openplanner.team/stops/Lghpier1"], ["https://tec.openplanner.team/stops/LWRferm1", "https://tec.openplanner.team/stops/LWRtroi2"], ["https://tec.openplanner.team/stops/H4ct111a", "https://tec.openplanner.team/stops/H5pe130a"], ["https://tec.openplanner.team/stops/Bhaldbo1", "https://tec.openplanner.team/stops/Blempuc2"], ["https://tec.openplanner.team/stops/LFCscho2", "https://tec.openplanner.team/stops/LFCvoge4"], ["https://tec.openplanner.team/stops/H1ho123b", "https://tec.openplanner.team/stops/H1ho140b"], ["https://tec.openplanner.team/stops/N522ata", "https://tec.openplanner.team/stops/N529aea"], ["https://tec.openplanner.team/stops/LGrfont1", "https://tec.openplanner.team/stops/LORherl1"], ["https://tec.openplanner.team/stops/Bmalper1", "https://tec.openplanner.team/stops/Borbod91"], ["https://tec.openplanner.team/stops/LNCesne1", "https://tec.openplanner.team/stops/LNCesne2"], ["https://tec.openplanner.team/stops/X735abb", "https://tec.openplanner.team/stops/X735acb"], ["https://tec.openplanner.team/stops/X925ama", "https://tec.openplanner.team/stops/X949aea"], ["https://tec.openplanner.team/stops/Bblaece1", "https://tec.openplanner.team/stops/Bblapri1"], ["https://tec.openplanner.team/stops/Cstdona5", "https://tec.openplanner.team/stops/Cstdona6"], ["https://tec.openplanner.team/stops/LHMa2322", "https://tec.openplanner.team/stops/LRmmabr2"], ["https://tec.openplanner.team/stops/X717aaa", "https://tec.openplanner.team/stops/X717aeb"], ["https://tec.openplanner.team/stops/Bitrcha2", "https://tec.openplanner.team/stops/Bitrmde1"], ["https://tec.openplanner.team/stops/X662aca", "https://tec.openplanner.team/stops/X663afb"], ["https://tec.openplanner.team/stops/LLRgdma2", "https://tec.openplanner.team/stops/LLStour2"], ["https://tec.openplanner.team/stops/N214aga", "https://tec.openplanner.team/stops/N214ahb"], ["https://tec.openplanner.team/stops/Lrahoig1", "https://tec.openplanner.team/stops/Lrahoig2"], ["https://tec.openplanner.team/stops/Bborbif1", "https://tec.openplanner.team/stops/Bborche1"], ["https://tec.openplanner.team/stops/X904ada", "https://tec.openplanner.team/stops/X904aeb"], ["https://tec.openplanner.team/stops/X823aaa", "https://tec.openplanner.team/stops/X823aba"], ["https://tec.openplanner.team/stops/N311adb", "https://tec.openplanner.team/stops/N368aca"], ["https://tec.openplanner.team/stops/H5rx110a", "https://tec.openplanner.team/stops/H5rx110b"], ["https://tec.openplanner.team/stops/X670ana", "https://tec.openplanner.team/stops/X670aob"], ["https://tec.openplanner.team/stops/X801abb", "https://tec.openplanner.team/stops/X802aqa"], ["https://tec.openplanner.team/stops/Ccipier2", "https://tec.openplanner.team/stops/Cmtcapi2"], ["https://tec.openplanner.team/stops/N202aha", "https://tec.openplanner.team/stops/N202aib"], ["https://tec.openplanner.team/stops/LGe4bra1", "https://tec.openplanner.team/stops/LGesent1"], ["https://tec.openplanner.team/stops/N228aea", "https://tec.openplanner.team/stops/N228aeb"], ["https://tec.openplanner.team/stops/X627aba", "https://tec.openplanner.team/stops/X627abb"], ["https://tec.openplanner.team/stops/Bsammon2", "https://tec.openplanner.team/stops/Bsammon3"], ["https://tec.openplanner.team/stops/H1bi100a", "https://tec.openplanner.team/stops/H1bi104b"], ["https://tec.openplanner.team/stops/Cgyblob1", "https://tec.openplanner.team/stops/Cgygayo4"], ["https://tec.openplanner.team/stops/N534awb", "https://tec.openplanner.team/stops/N534awc"], ["https://tec.openplanner.team/stops/Cmazone2", "https://tec.openplanner.team/stops/Cmazsnc1"], ["https://tec.openplanner.team/stops/NB33aha", "https://tec.openplanner.team/stops/NB33ahb"], ["https://tec.openplanner.team/stops/Bllngar3", "https://tec.openplanner.team/stops/Bllngar4"], ["https://tec.openplanner.team/stops/Bhancre1", "https://tec.openplanner.team/stops/Bhanmou1"], ["https://tec.openplanner.team/stops/X615ada", "https://tec.openplanner.team/stops/X615afb"], ["https://tec.openplanner.team/stops/Blkbavo1", "https://tec.openplanner.team/stops/Blkbbvh1"], ["https://tec.openplanner.team/stops/X804aqb", "https://tec.openplanner.team/stops/X804ara"], ["https://tec.openplanner.team/stops/X636aea", "https://tec.openplanner.team/stops/X636aha"], ["https://tec.openplanner.team/stops/Llgrome1", "https://tec.openplanner.team/stops/Llgrome2"], ["https://tec.openplanner.team/stops/N245aaa", "https://tec.openplanner.team/stops/N248aca"], ["https://tec.openplanner.team/stops/X801amb", "https://tec.openplanner.team/stops/X899abb"], ["https://tec.openplanner.team/stops/H5qu140a", "https://tec.openplanner.team/stops/H5st169a"], ["https://tec.openplanner.team/stops/LBNburg2", "https://tec.openplanner.team/stops/LBNover1"], ["https://tec.openplanner.team/stops/Bolggar1", "https://tec.openplanner.team/stops/Bolggar2"], ["https://tec.openplanner.team/stops/LOchalo1", "https://tec.openplanner.team/stops/NL35agb"], ["https://tec.openplanner.team/stops/Lvtpata1", "https://tec.openplanner.team/stops/Lvtpata2"], ["https://tec.openplanner.team/stops/X879agb", "https://tec.openplanner.team/stops/X879asb"], ["https://tec.openplanner.team/stops/Lmihale2", "https://tec.openplanner.team/stops/Lmimc--1"], ["https://tec.openplanner.team/stops/N552aba", "https://tec.openplanner.team/stops/N568adb"], ["https://tec.openplanner.team/stops/N528amb", "https://tec.openplanner.team/stops/N528atb"], ["https://tec.openplanner.team/stops/H4ce107a", "https://tec.openplanner.team/stops/H4ef112a"], ["https://tec.openplanner.team/stops/Csawagn1", "https://tec.openplanner.team/stops/Csawagn2"], ["https://tec.openplanner.team/stops/LREaube1", "https://tec.openplanner.team/stops/LREgare1"], ["https://tec.openplanner.team/stops/X779acb", "https://tec.openplanner.team/stops/X779aib"], ["https://tec.openplanner.team/stops/X919aja", "https://tec.openplanner.team/stops/X919aka"], ["https://tec.openplanner.team/stops/LmTgers1", "https://tec.openplanner.team/stops/LmTgers2"], ["https://tec.openplanner.team/stops/LWEcool1", "https://tec.openplanner.team/stops/LWEcool2"], ["https://tec.openplanner.team/stops/Bgembsg1", "https://tec.openplanner.team/stops/N522akb"], ["https://tec.openplanner.team/stops/Blhugai1", "https://tec.openplanner.team/stops/Brsgm802"], ["https://tec.openplanner.team/stops/H4og216a", "https://tec.openplanner.team/stops/H4og216b"], ["https://tec.openplanner.team/stops/N220aca", "https://tec.openplanner.team/stops/N220acb"], ["https://tec.openplanner.team/stops/N352afa", "https://tec.openplanner.team/stops/N352afb"], ["https://tec.openplanner.team/stops/N538aeb", "https://tec.openplanner.team/stops/N539ana"], ["https://tec.openplanner.team/stops/Lceprog1", "https://tec.openplanner.team/stops/Lceprog2"], ["https://tec.openplanner.team/stops/Llgcong1", "https://tec.openplanner.team/stops/Llgcong2"], ["https://tec.openplanner.team/stops/X876aca", "https://tec.openplanner.team/stops/X877adb"], ["https://tec.openplanner.team/stops/Bwlhpmt1", "https://tec.openplanner.team/stops/Bwlhpmt4"], ["https://tec.openplanner.team/stops/Bosqcim2", "https://tec.openplanner.team/stops/Btubois1"], ["https://tec.openplanner.team/stops/Lsefoot2", "https://tec.openplanner.team/stops/Lsemaqu1"], ["https://tec.openplanner.team/stops/Lrcastr2", "https://tec.openplanner.team/stops/Lrclant2"], ["https://tec.openplanner.team/stops/N501hja", "https://tec.openplanner.team/stops/N501hjb"], ["https://tec.openplanner.team/stops/Cgynoir1", "https://tec.openplanner.team/stops/CMmarab1"], ["https://tec.openplanner.team/stops/H2sb225b", "https://tec.openplanner.team/stops/H3lr132b"], ["https://tec.openplanner.team/stops/X696aaa", "https://tec.openplanner.team/stops/X696aca"], ["https://tec.openplanner.team/stops/LrAneue1", "https://tec.openplanner.team/stops/LrApont1"], ["https://tec.openplanner.team/stops/H4hs137a", "https://tec.openplanner.team/stops/H4mb139a"], ["https://tec.openplanner.team/stops/Bdlvpco2", "https://tec.openplanner.team/stops/Bdvm4ca2"], ["https://tec.openplanner.team/stops/Cmlbevu2", "https://tec.openplanner.team/stops/Cmlvitf2"], ["https://tec.openplanner.team/stops/Bronfou1", "https://tec.openplanner.team/stops/Bvirmbr2"], ["https://tec.openplanner.team/stops/X576aga", "https://tec.openplanner.team/stops/X576agb"], ["https://tec.openplanner.team/stops/H4tp143b", "https://tec.openplanner.team/stops/H4tp145b"], ["https://tec.openplanner.team/stops/N501ajb", "https://tec.openplanner.team/stops/N501aob"], ["https://tec.openplanner.team/stops/H4au100a", "https://tec.openplanner.team/stops/H4ea132c"], ["https://tec.openplanner.team/stops/X763ada", "https://tec.openplanner.team/stops/X763aea"], ["https://tec.openplanner.team/stops/Bmlngch1", "https://tec.openplanner.team/stops/Bmlngch2"], ["https://tec.openplanner.team/stops/Lsebeau*", "https://tec.openplanner.team/stops/Lsebeau1"], ["https://tec.openplanner.team/stops/LWbburn1", "https://tec.openplanner.team/stops/LWberno2"], ["https://tec.openplanner.team/stops/X734abb", "https://tec.openplanner.team/stops/X735abc"], ["https://tec.openplanner.team/stops/N134aea", "https://tec.openplanner.team/stops/N134ala"], ["https://tec.openplanner.team/stops/LFabraa1", "https://tec.openplanner.team/stops/LFacruc2"], ["https://tec.openplanner.team/stops/X789aca", "https://tec.openplanner.team/stops/X789acb"], ["https://tec.openplanner.team/stops/Btileco1", "https://tec.openplanner.team/stops/Btilmon1"], ["https://tec.openplanner.team/stops/X639akb", "https://tec.openplanner.team/stops/X639amd"], ["https://tec.openplanner.team/stops/Ccugrtr1", "https://tec.openplanner.team/stops/Ccutill3"], ["https://tec.openplanner.team/stops/Lfhdone2", "https://tec.openplanner.team/stops/Lfhnrou1"], ["https://tec.openplanner.team/stops/LlgLEOP1", "https://tec.openplanner.team/stops/Llgnage2"], ["https://tec.openplanner.team/stops/H2pe160a", "https://tec.openplanner.team/stops/H2pe160b"], ["https://tec.openplanner.team/stops/H1as100b", "https://tec.openplanner.team/stops/H1bn113a"], ["https://tec.openplanner.team/stops/N215acb", "https://tec.openplanner.team/stops/N215acd"], ["https://tec.openplanner.team/stops/X872abb", "https://tec.openplanner.team/stops/X872afa"], ["https://tec.openplanner.team/stops/LsVbs--*", "https://tec.openplanner.team/stops/LsVgore1"], ["https://tec.openplanner.team/stops/Cjxplac1", "https://tec.openplanner.team/stops/Cjxplac2"], ["https://tec.openplanner.team/stops/LFFmonu2", "https://tec.openplanner.team/stops/LFFruel2"], ["https://tec.openplanner.team/stops/Ljubonf1", "https://tec.openplanner.team/stops/Ljudeme4"], ["https://tec.openplanner.team/stops/X738aba", "https://tec.openplanner.team/stops/X739aca"], ["https://tec.openplanner.team/stops/Becebju1", "https://tec.openplanner.team/stops/Becebju2"], ["https://tec.openplanner.team/stops/Lsehtsa1", "https://tec.openplanner.team/stops/Lsehtsa2"], ["https://tec.openplanner.team/stops/Cfcchas2", "https://tec.openplanner.team/stops/Crccarr1"], ["https://tec.openplanner.team/stops/N528abb", "https://tec.openplanner.team/stops/N528afy"], ["https://tec.openplanner.team/stops/X823afa", "https://tec.openplanner.team/stops/X823aff"], ["https://tec.openplanner.team/stops/N531ama", "https://tec.openplanner.team/stops/N531amb"], ["https://tec.openplanner.team/stops/Clrmarl4", "https://tec.openplanner.team/stops/Clrpast1"], ["https://tec.openplanner.team/stops/Ccimont2", "https://tec.openplanner.team/stops/Ccisolv2"], ["https://tec.openplanner.team/stops/N557aib", "https://tec.openplanner.team/stops/N557ajb"], ["https://tec.openplanner.team/stops/H2sb224a", "https://tec.openplanner.team/stops/H2sb225a"], ["https://tec.openplanner.team/stops/LEN101-2", "https://tec.openplanner.team/stops/LENoule2"], ["https://tec.openplanner.team/stops/Ccpblpo2", "https://tec.openplanner.team/stops/H2ch108b"], ["https://tec.openplanner.team/stops/X896aec", "https://tec.openplanner.team/stops/X995aca"], ["https://tec.openplanner.team/stops/Btubhoq1", "https://tec.openplanner.team/stops/Btubstq1"], ["https://tec.openplanner.team/stops/N232bja", "https://tec.openplanner.team/stops/N232cba"], ["https://tec.openplanner.team/stops/N244atb", "https://tec.openplanner.team/stops/N244ava"], ["https://tec.openplanner.team/stops/X921alb", "https://tec.openplanner.team/stops/X921ara"], ["https://tec.openplanner.team/stops/Bsmgegl2", "https://tec.openplanner.team/stops/Bsmgmas2"], ["https://tec.openplanner.team/stops/X636aga", "https://tec.openplanner.team/stops/X636aib"], ["https://tec.openplanner.team/stops/LJUmate1", "https://tec.openplanner.team/stops/LJUmc--1"], ["https://tec.openplanner.team/stops/Cnadrev2", "https://tec.openplanner.team/stops/Cnaplbu2"], ["https://tec.openplanner.team/stops/N425aea", "https://tec.openplanner.team/stops/N425aeb"], ["https://tec.openplanner.team/stops/H1fl137b", "https://tec.openplanner.team/stops/H1fl370a"], ["https://tec.openplanner.team/stops/H2ch105d", "https://tec.openplanner.team/stops/H2ch112a"], ["https://tec.openplanner.team/stops/X850aka", "https://tec.openplanner.team/stops/X850akb"], ["https://tec.openplanner.team/stops/Cnaha561", "https://tec.openplanner.team/stops/Cnaha562"], ["https://tec.openplanner.team/stops/Lhrdron2", "https://tec.openplanner.team/stops/Lhrhenr1"], ["https://tec.openplanner.team/stops/X801abb", "https://tec.openplanner.team/stops/X801abc"], ["https://tec.openplanner.team/stops/H1hr115b", "https://tec.openplanner.team/stops/H1hr124b"], ["https://tec.openplanner.team/stops/X757aha", "https://tec.openplanner.team/stops/X757ahb"], ["https://tec.openplanner.team/stops/Bnodlce1", "https://tec.openplanner.team/stops/Boplham1"], ["https://tec.openplanner.team/stops/H4ka174b", "https://tec.openplanner.team/stops/H4ka188a"], ["https://tec.openplanner.team/stops/X820ahb", "https://tec.openplanner.team/stops/X820aib"], ["https://tec.openplanner.team/stops/X746aab", "https://tec.openplanner.team/stops/X746abb"], ["https://tec.openplanner.team/stops/Bhenmal2", "https://tec.openplanner.team/stops/Bhenrcr2"], ["https://tec.openplanner.team/stops/N529aeb", "https://tec.openplanner.team/stops/N529akb"], ["https://tec.openplanner.team/stops/LBNeup22", "https://tec.openplanner.team/stops/LhElont2"], ["https://tec.openplanner.team/stops/LBUvall1", "https://tec.openplanner.team/stops/LLtrout2"], ["https://tec.openplanner.team/stops/N538ata", "https://tec.openplanner.team/stops/N538atc"], ["https://tec.openplanner.team/stops/LgRzent2", "https://tec.openplanner.team/stops/LoDscha2"], ["https://tec.openplanner.team/stops/Ccyfroi1", "https://tec.openplanner.team/stops/Ccyfroi2"], ["https://tec.openplanner.team/stops/H5qu149b", "https://tec.openplanner.team/stops/H5qu182b"], ["https://tec.openplanner.team/stops/Cgofbru1", "https://tec.openplanner.team/stops/CMfbru2"], ["https://tec.openplanner.team/stops/H1lb138a", "https://tec.openplanner.team/stops/H1lb152b"], ["https://tec.openplanner.team/stops/X917aaa", "https://tec.openplanner.team/stops/X917aab"], ["https://tec.openplanner.team/stops/N232aba", "https://tec.openplanner.team/stops/N261acb"], ["https://tec.openplanner.team/stops/X817aeb", "https://tec.openplanner.team/stops/X817aga"], ["https://tec.openplanner.team/stops/Barqhpe1", "https://tec.openplanner.team/stops/Barqhpe2"], ["https://tec.openplanner.team/stops/Lsebuil1", "https://tec.openplanner.team/stops/Lsehtsa1"], ["https://tec.openplanner.team/stops/N509aea", "https://tec.openplanner.team/stops/N509aeb"], ["https://tec.openplanner.team/stops/LnEleje1", "https://tec.openplanner.team/stops/LnEmett2"], ["https://tec.openplanner.team/stops/Bblmwma1", "https://tec.openplanner.team/stops/Bwlhpma1"], ["https://tec.openplanner.team/stops/LWRbois1", "https://tec.openplanner.team/stops/LWRbois2"], ["https://tec.openplanner.team/stops/LAyheid1", "https://tec.openplanner.team/stops/Lflrhot1"], ["https://tec.openplanner.team/stops/X760aca", "https://tec.openplanner.team/stops/X788aea"], ["https://tec.openplanner.team/stops/X942abe", "https://tec.openplanner.team/stops/X942aca"], ["https://tec.openplanner.team/stops/Craappa2", "https://tec.openplanner.team/stops/Cracave2"], ["https://tec.openplanner.team/stops/H4po127b", "https://tec.openplanner.team/stops/H4po128b"], ["https://tec.openplanner.team/stops/LkEbbl-*", "https://tec.openplanner.team/stops/LkEkirc2"], ["https://tec.openplanner.team/stops/LHUdeni2", "https://tec.openplanner.team/stops/LHUfonc2"], ["https://tec.openplanner.team/stops/N210aab", "https://tec.openplanner.team/stops/NL81ahb"], ["https://tec.openplanner.team/stops/LmI82--1", "https://tec.openplanner.team/stops/LmIcafe2"], ["https://tec.openplanner.team/stops/LNIhaut2", "https://tec.openplanner.team/stops/LSZpont2"], ["https://tec.openplanner.team/stops/LhOholz2", "https://tec.openplanner.team/stops/LhOukat2"], ["https://tec.openplanner.team/stops/H4lz155a", "https://tec.openplanner.team/stops/H4lz160a"], ["https://tec.openplanner.team/stops/H1gg145a", "https://tec.openplanner.team/stops/H1gg146b"], ["https://tec.openplanner.team/stops/LWahott1", "https://tec.openplanner.team/stops/LWahott2"], ["https://tec.openplanner.team/stops/X818aka", "https://tec.openplanner.team/stops/X818alb"], ["https://tec.openplanner.team/stops/X910acb", "https://tec.openplanner.team/stops/X951acb"], ["https://tec.openplanner.team/stops/Lhulibe1", "https://tec.openplanner.team/stops/Lhurouh1"], ["https://tec.openplanner.team/stops/X607adb", "https://tec.openplanner.team/stops/X621aba"], ["https://tec.openplanner.team/stops/LLEgare1", "https://tec.openplanner.team/stops/LSMgare2"], ["https://tec.openplanner.team/stops/LPUalbe2", "https://tec.openplanner.team/stops/LPUmer-2"], ["https://tec.openplanner.team/stops/N576aca", "https://tec.openplanner.team/stops/N576acb"], ["https://tec.openplanner.team/stops/Bllnlb12", "https://tec.openplanner.team/stops/Bllnpsc1"], ["https://tec.openplanner.team/stops/X766adb", "https://tec.openplanner.team/stops/X766afb"], ["https://tec.openplanner.team/stops/Lagcile1", "https://tec.openplanner.team/stops/Lgrside1"], ["https://tec.openplanner.team/stops/N515aja", "https://tec.openplanner.team/stops/N515aoa"], ["https://tec.openplanner.team/stops/LCOdrol1", "https://tec.openplanner.team/stops/LSNretr1"], ["https://tec.openplanner.team/stops/LMNgare1", "https://tec.openplanner.team/stops/LPbtene1"], ["https://tec.openplanner.team/stops/Ccubric1", "https://tec.openplanner.team/stops/Ccucorb1"], ["https://tec.openplanner.team/stops/LNEpass1", "https://tec.openplanner.team/stops/LNEpass2"], ["https://tec.openplanner.team/stops/Lboastr1", "https://tec.openplanner.team/stops/Lbomc--5"], ["https://tec.openplanner.team/stops/LARarge2", "https://tec.openplanner.team/stops/LRIcent2"], ["https://tec.openplanner.team/stops/Bbealon3", "https://tec.openplanner.team/stops/Bbealon4"], ["https://tec.openplanner.team/stops/LVlplan1", "https://tec.openplanner.team/stops/LVlplan2"], ["https://tec.openplanner.team/stops/X941afb", "https://tec.openplanner.team/stops/X941ahb"], ["https://tec.openplanner.team/stops/N115abb", "https://tec.openplanner.team/stops/N115ada"], ["https://tec.openplanner.team/stops/N557aea", "https://tec.openplanner.team/stops/N557aib"], ["https://tec.openplanner.team/stops/X948afa", "https://tec.openplanner.team/stops/X948afb"], ["https://tec.openplanner.team/stops/N501aka", "https://tec.openplanner.team/stops/N501mca"], ["https://tec.openplanner.team/stops/N201awa", "https://tec.openplanner.team/stops/N201awb"], ["https://tec.openplanner.team/stops/Bjodcoi1", "https://tec.openplanner.team/stops/Bjodcoi2"], ["https://tec.openplanner.team/stops/Lgdstoc1", "https://tec.openplanner.team/stops/Lgdstoc2"], ["https://tec.openplanner.team/stops/Bchgflo2", "https://tec.openplanner.team/stops/Bchgqve3"], ["https://tec.openplanner.team/stops/Caihai81", "https://tec.openplanner.team/stops/Caistro2"], ["https://tec.openplanner.team/stops/LaTcolo2", "https://tec.openplanner.team/stops/LmCkirc1"], ["https://tec.openplanner.team/stops/X624adb", "https://tec.openplanner.team/stops/X624akb"], ["https://tec.openplanner.team/stops/N501aja", "https://tec.openplanner.team/stops/N501akb"], ["https://tec.openplanner.team/stops/LBafagn1", "https://tec.openplanner.team/stops/LLUcdoy1"], ["https://tec.openplanner.team/stops/N287aba", "https://tec.openplanner.team/stops/N287aca"], ["https://tec.openplanner.team/stops/H1pa108a", "https://tec.openplanner.team/stops/H1pa109b"], ["https://tec.openplanner.team/stops/X673aba", "https://tec.openplanner.team/stops/X821aab"], ["https://tec.openplanner.team/stops/H1ss348a", "https://tec.openplanner.team/stops/H1ss348b"], ["https://tec.openplanner.team/stops/N544aaa", "https://tec.openplanner.team/stops/N544aea"], ["https://tec.openplanner.team/stops/Buccbas1", "https://tec.openplanner.team/stops/Buccbas2"], ["https://tec.openplanner.team/stops/LSLhale2", "https://tec.openplanner.team/stops/LSLvaux2"], ["https://tec.openplanner.team/stops/X911ala", "https://tec.openplanner.team/stops/X911aua"], ["https://tec.openplanner.team/stops/N535ada", "https://tec.openplanner.team/stops/N535ana"], ["https://tec.openplanner.team/stops/H1ms282a", "https://tec.openplanner.team/stops/H1ms282b"], ["https://tec.openplanner.team/stops/N543cfa", "https://tec.openplanner.team/stops/N543cfb"], ["https://tec.openplanner.team/stops/N349aaa", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/Bmartil2", "https://tec.openplanner.team/stops/Csa4mai2"], ["https://tec.openplanner.team/stops/H4ta118b", "https://tec.openplanner.team/stops/H4ta123a"], ["https://tec.openplanner.team/stops/X878aaa", "https://tec.openplanner.team/stops/X878aab"], ["https://tec.openplanner.team/stops/LHaxhor1", "https://tec.openplanner.team/stops/LHaxhor2"], ["https://tec.openplanner.team/stops/Brixroi1", "https://tec.openplanner.team/stops/Brixroi2"], ["https://tec.openplanner.team/stops/Cptrebe1", "https://tec.openplanner.team/stops/Cptrebe2"], ["https://tec.openplanner.team/stops/Bcsepes2", "https://tec.openplanner.team/stops/Bmoucnd1"], ["https://tec.openplanner.team/stops/Cmychau1", "https://tec.openplanner.team/stops/Cmychau2"], ["https://tec.openplanner.team/stops/H2ha135c", "https://tec.openplanner.team/stops/H2ha137b"], ["https://tec.openplanner.team/stops/Cmcbriq4", "https://tec.openplanner.team/stops/Cmchai2"], ["https://tec.openplanner.team/stops/LaAmise1", "https://tec.openplanner.team/stops/LaApost2"], ["https://tec.openplanner.team/stops/Lccuner2", "https://tec.openplanner.team/stops/LRArami1"], ["https://tec.openplanner.team/stops/H1hr121c", "https://tec.openplanner.team/stops/H1hr125a"], ["https://tec.openplanner.team/stops/H1ba109b", "https://tec.openplanner.team/stops/H1ba117a"], ["https://tec.openplanner.team/stops/N228acb", "https://tec.openplanner.team/stops/N261aga"], ["https://tec.openplanner.team/stops/H5st168a", "https://tec.openplanner.team/stops/H5st169a"], ["https://tec.openplanner.team/stops/X948aka", "https://tec.openplanner.team/stops/X948ala"], ["https://tec.openplanner.team/stops/LHTboul2", "https://tec.openplanner.team/stops/LHTcarr2"], ["https://tec.openplanner.team/stops/H5el112a", "https://tec.openplanner.team/stops/H5el114b"], ["https://tec.openplanner.team/stops/Cflchap1", "https://tec.openplanner.team/stops/Cfldand1"], ["https://tec.openplanner.team/stops/LHTboul1", "https://tec.openplanner.team/stops/LHTcarr1"], ["https://tec.openplanner.team/stops/X664aqa", "https://tec.openplanner.team/stops/X664ara"], ["https://tec.openplanner.team/stops/Ccuhaie1", "https://tec.openplanner.team/stops/Ccuhaie2"], ["https://tec.openplanner.team/stops/Lvtathe1", "https://tec.openplanner.team/stops/Lvtfrai2"], ["https://tec.openplanner.team/stops/N507afa", "https://tec.openplanner.team/stops/N507aib"], ["https://tec.openplanner.team/stops/X661aob", "https://tec.openplanner.team/stops/X661aqb"], ["https://tec.openplanner.team/stops/LAWchpl1", "https://tec.openplanner.team/stops/LFOchpl1"], ["https://tec.openplanner.team/stops/LFochap2", "https://tec.openplanner.team/stops/LJAdeho4"], ["https://tec.openplanner.team/stops/H4ty287a", "https://tec.openplanner.team/stops/H4ty383b"], ["https://tec.openplanner.team/stops/Bcbqegl2", "https://tec.openplanner.team/stops/Bcbqpon1"], ["https://tec.openplanner.team/stops/LTgjalh2", "https://tec.openplanner.team/stops/LTgvill2"], ["https://tec.openplanner.team/stops/Llgegwa1", "https://tec.openplanner.team/stops/Llgwild1"], ["https://tec.openplanner.team/stops/N346aaa", "https://tec.openplanner.team/stops/N347acb"], ["https://tec.openplanner.team/stops/LSx309-2", "https://tec.openplanner.team/stops/LSxeg--1"], ["https://tec.openplanner.team/stops/N533aaa", "https://tec.openplanner.team/stops/N551aba"], ["https://tec.openplanner.team/stops/LBRbriv2", "https://tec.openplanner.team/stops/LBRpier2"], ["https://tec.openplanner.team/stops/Lsnagne1", "https://tec.openplanner.team/stops/Lsnecco3"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X774ada"], ["https://tec.openplanner.team/stops/X659awb", "https://tec.openplanner.team/stops/X659baa"], ["https://tec.openplanner.team/stops/X777aba", "https://tec.openplanner.team/stops/X784abb"], ["https://tec.openplanner.team/stops/NL77ada", "https://tec.openplanner.team/stops/NL77aga"], ["https://tec.openplanner.team/stops/Bhencha1", "https://tec.openplanner.team/stops/Bhenhau1"], ["https://tec.openplanner.team/stops/Lagrask1", "https://tec.openplanner.team/stops/Lemjoba1"], ["https://tec.openplanner.team/stops/Caccent1", "https://tec.openplanner.team/stops/NC24afb"], ["https://tec.openplanner.team/stops/N562aka", "https://tec.openplanner.team/stops/N562asb"], ["https://tec.openplanner.team/stops/Bbsggot2", "https://tec.openplanner.team/stops/Bndbnod2"], ["https://tec.openplanner.team/stops/H4ta117b", "https://tec.openplanner.team/stops/H4ta122a"], ["https://tec.openplanner.team/stops/Bbsivil1", "https://tec.openplanner.team/stops/Bbsivil2"], ["https://tec.openplanner.team/stops/Bchgbru2", "https://tec.openplanner.team/stops/Btsllbv1"], ["https://tec.openplanner.team/stops/H5bl141a", "https://tec.openplanner.team/stops/H5qu182b"], ["https://tec.openplanner.team/stops/Bcbqcht2", "https://tec.openplanner.team/stops/Bcbqegl1"], ["https://tec.openplanner.team/stops/X608aua", "https://tec.openplanner.team/stops/X608ayb"], ["https://tec.openplanner.team/stops/Llghenr2", "https://tec.openplanner.team/stops/Llgrain1"], ["https://tec.openplanner.team/stops/X601bsa", "https://tec.openplanner.team/stops/X601cca"], ["https://tec.openplanner.team/stops/Llgmara1", "https://tec.openplanner.team/stops/Llgnyst2"], ["https://tec.openplanner.team/stops/X922aja", "https://tec.openplanner.team/stops/X942agb"], ["https://tec.openplanner.team/stops/H2ec103b", "https://tec.openplanner.team/stops/H3br101b"], ["https://tec.openplanner.team/stops/LODvill1", "https://tec.openplanner.team/stops/XODvill2"], ["https://tec.openplanner.team/stops/H1gg146b", "https://tec.openplanner.team/stops/H1pe130b"], ["https://tec.openplanner.team/stops/H1he111b", "https://tec.openplanner.team/stops/H4be106a"], ["https://tec.openplanner.team/stops/N501fta", "https://tec.openplanner.team/stops/N501fyc"], ["https://tec.openplanner.team/stops/Csesabo1", "https://tec.openplanner.team/stops/N425aaa"], ["https://tec.openplanner.team/stops/N229aaa", "https://tec.openplanner.team/stops/N232asa"], ["https://tec.openplanner.team/stops/X602ada", "https://tec.openplanner.team/stops/X602aea"], ["https://tec.openplanner.team/stops/N106ada", "https://tec.openplanner.team/stops/N106aqb"], ["https://tec.openplanner.team/stops/N519aba", "https://tec.openplanner.team/stops/N519abb"], ["https://tec.openplanner.team/stops/LWHkape1", "https://tec.openplanner.team/stops/LWHkape2"], ["https://tec.openplanner.team/stops/Cjumarc2", "https://tec.openplanner.team/stops/Cjumarc3"], ["https://tec.openplanner.team/stops/X351ada", "https://tec.openplanner.team/stops/X351adb"], ["https://tec.openplanner.team/stops/X891aca", "https://tec.openplanner.team/stops/X892abb"], ["https://tec.openplanner.team/stops/Lougare2", "https://tec.openplanner.team/stops/Loutras1"], ["https://tec.openplanner.team/stops/X354aga", "https://tec.openplanner.team/stops/X354ahb"], ["https://tec.openplanner.team/stops/Bmalsmc2", "https://tec.openplanner.team/stops/Bmalwop1"], ["https://tec.openplanner.team/stops/N522ajb", "https://tec.openplanner.team/stops/N522ara"], ["https://tec.openplanner.team/stops/H1wa144b", "https://tec.openplanner.team/stops/H1wa146a"], ["https://tec.openplanner.team/stops/Lhrlaix1", "https://tec.openplanner.team/stops/Lhrlamb2"], ["https://tec.openplanner.team/stops/H4lz121d", "https://tec.openplanner.team/stops/H4lz157a"], ["https://tec.openplanner.team/stops/H2ll196a", "https://tec.openplanner.team/stops/H2ll196b"], ["https://tec.openplanner.team/stops/X986aia", "https://tec.openplanner.team/stops/X986ata"], ["https://tec.openplanner.team/stops/Lhecarc2", "https://tec.openplanner.team/stops/Lhelait2"], ["https://tec.openplanner.team/stops/Bgnvcom2", "https://tec.openplanner.team/stops/Brixala2"], ["https://tec.openplanner.team/stops/X713aaa", "https://tec.openplanner.team/stops/X713aab"], ["https://tec.openplanner.team/stops/H1ha190b", "https://tec.openplanner.team/stops/H1ha196b"], ["https://tec.openplanner.team/stops/H4eh100a", "https://tec.openplanner.team/stops/H4eh100b"], ["https://tec.openplanner.team/stops/N351ara", "https://tec.openplanner.team/stops/N351arb"], ["https://tec.openplanner.team/stops/Bbsgbos1", "https://tec.openplanner.team/stops/Bbsggot1"], ["https://tec.openplanner.team/stops/LEnchan1", "https://tec.openplanner.team/stops/NL67abb"], ["https://tec.openplanner.team/stops/N535aaa", "https://tec.openplanner.team/stops/N535adb"], ["https://tec.openplanner.team/stops/N209ana", "https://tec.openplanner.team/stops/N209anb"], ["https://tec.openplanner.team/stops/X908aab", "https://tec.openplanner.team/stops/X908anb"], ["https://tec.openplanner.team/stops/Cfrcham1", "https://tec.openplanner.team/stops/Cfrfaub2"], ["https://tec.openplanner.team/stops/X637agd", "https://tec.openplanner.team/stops/X637aja"], ["https://tec.openplanner.team/stops/X744aeb", "https://tec.openplanner.team/stops/X746ahb"], ["https://tec.openplanner.team/stops/Lalverr2", "https://tec.openplanner.team/stops/Llabrou2"], ["https://tec.openplanner.team/stops/N337aia", "https://tec.openplanner.team/stops/N338aia"], ["https://tec.openplanner.team/stops/H4ma400b", "https://tec.openplanner.team/stops/H4ma401b"], ["https://tec.openplanner.team/stops/LFfeg--1", "https://tec.openplanner.team/stops/LFfeg--2"], ["https://tec.openplanner.team/stops/LFPstro2", "https://tec.openplanner.team/stops/LVu40--1"], ["https://tec.openplanner.team/stops/H2hp123c", "https://tec.openplanner.team/stops/H2hp262a"], ["https://tec.openplanner.team/stops/LAo170-1", "https://tec.openplanner.team/stops/LTPnoup2"], ["https://tec.openplanner.team/stops/LCTmonu1", "https://tec.openplanner.team/stops/LGmhumb1"], ["https://tec.openplanner.team/stops/Buccdho1", "https://tec.openplanner.team/stops/Buccobs1"], ["https://tec.openplanner.team/stops/H1ms245b", "https://tec.openplanner.team/stops/H1ms269a"], ["https://tec.openplanner.team/stops/Crcplac3", "https://tec.openplanner.team/stops/NH03aga"], ["https://tec.openplanner.team/stops/LdElamb2", "https://tec.openplanner.team/stops/LiVdorf2"], ["https://tec.openplanner.team/stops/LDppana2", "https://tec.openplanner.team/stops/LDpulve1"], ["https://tec.openplanner.team/stops/Ladchat1", "https://tec.openplanner.team/stops/Ladchat2"], ["https://tec.openplanner.team/stops/X999aja", "https://tec.openplanner.team/stops/X999aub"], ["https://tec.openplanner.team/stops/Blhuone1", "https://tec.openplanner.team/stops/Blhupcl2"], ["https://tec.openplanner.team/stops/N232asa", "https://tec.openplanner.team/stops/N260aeb"], ["https://tec.openplanner.team/stops/N232aaa", "https://tec.openplanner.team/stops/N232aga"], ["https://tec.openplanner.team/stops/LFIeg--1", "https://tec.openplanner.team/stops/LMYmont2"], ["https://tec.openplanner.team/stops/LAYambl2", "https://tec.openplanner.team/stops/LAYthir2"], ["https://tec.openplanner.team/stops/Cthoues1", "https://tec.openplanner.team/stops/Cthrwai2"], ["https://tec.openplanner.team/stops/H4mo132a", "https://tec.openplanner.team/stops/H4mo162a"], ["https://tec.openplanner.team/stops/X713ada", "https://tec.openplanner.team/stops/X713anb"], ["https://tec.openplanner.team/stops/H5bl122a", "https://tec.openplanner.team/stops/H5bl143a"], ["https://tec.openplanner.team/stops/LHTbaud2", "https://tec.openplanner.team/stops/LHTmonu1"], ["https://tec.openplanner.team/stops/H4or116b", "https://tec.openplanner.team/stops/H4rs117a"], ["https://tec.openplanner.team/stops/LWApt--1", "https://tec.openplanner.team/stops/LWApt--2"], ["https://tec.openplanner.team/stops/LAyegli2", "https://tec.openplanner.team/stops/LMIeg--1"], ["https://tec.openplanner.team/stops/H4hs135b", "https://tec.openplanner.team/stops/H4th141a"], ["https://tec.openplanner.team/stops/Cgogrco2", "https://tec.openplanner.team/stops/Ctmazeb1"], ["https://tec.openplanner.team/stops/N232bma", "https://tec.openplanner.team/stops/N232bna"], ["https://tec.openplanner.team/stops/Bstecou1", "https://tec.openplanner.team/stops/Bstecou2"], ["https://tec.openplanner.team/stops/Louduna*", "https://tec.openplanner.team/stops/Loutras1"], ["https://tec.openplanner.team/stops/H1pa104a", "https://tec.openplanner.team/stops/H1pa108b"], ["https://tec.openplanner.team/stops/LHgdari1", "https://tec.openplanner.team/stops/LHgroso2"], ["https://tec.openplanner.team/stops/LSkoran1", "https://tec.openplanner.team/stops/LSktinc2"], ["https://tec.openplanner.team/stops/H1do109a", "https://tec.openplanner.team/stops/H1do117b"], ["https://tec.openplanner.team/stops/LLReg--1", "https://tec.openplanner.team/stops/LLRsalm1"], ["https://tec.openplanner.team/stops/NC11afa", "https://tec.openplanner.team/stops/NC11ama"], ["https://tec.openplanner.team/stops/H1mk114a", "https://tec.openplanner.team/stops/H1mk114b"], ["https://tec.openplanner.team/stops/LaUkirc*", "https://tec.openplanner.team/stops/LsF39--1"], ["https://tec.openplanner.team/stops/N241afa", "https://tec.openplanner.team/stops/N585abb"], ["https://tec.openplanner.team/stops/Cgogrco1", "https://tec.openplanner.team/stops/Cjucar01"], ["https://tec.openplanner.team/stops/N113ada", "https://tec.openplanner.team/stops/N113aga"], ["https://tec.openplanner.team/stops/Bstmpla2", "https://tec.openplanner.team/stops/N561aba"], ["https://tec.openplanner.team/stops/N508abb", "https://tec.openplanner.team/stops/N508aea"], ["https://tec.openplanner.team/stops/H5rx103a", "https://tec.openplanner.team/stops/H5rx128b"], ["https://tec.openplanner.team/stops/X731aba", "https://tec.openplanner.team/stops/X731aga"], ["https://tec.openplanner.team/stops/LAweg--2", "https://tec.openplanner.team/stops/LAYfoot1"], ["https://tec.openplanner.team/stops/Bsjgegl2", "https://tec.openplanner.team/stops/Bsjgmil1"], ["https://tec.openplanner.team/stops/N525ana", "https://tec.openplanner.team/stops/N525anb"], ["https://tec.openplanner.team/stops/H1gr118a", "https://tec.openplanner.team/stops/H1gr122a"], ["https://tec.openplanner.team/stops/N501ehb", "https://tec.openplanner.team/stops/N501emb"], ["https://tec.openplanner.team/stops/Lvcdumo2", "https://tec.openplanner.team/stops/Lvcsapi1"], ["https://tec.openplanner.team/stops/Cthdeco1", "https://tec.openplanner.team/stops/Cthrpoi1"], ["https://tec.openplanner.team/stops/X731afb", "https://tec.openplanner.team/stops/X986ala"], ["https://tec.openplanner.team/stops/NL76abb", "https://tec.openplanner.team/stops/NL76asa"], ["https://tec.openplanner.team/stops/LVBmonu2", "https://tec.openplanner.team/stops/LVBmonu3"], ["https://tec.openplanner.team/stops/LaAburt1", "https://tec.openplanner.team/stops/LaAburt2"], ["https://tec.openplanner.team/stops/X904afb", "https://tec.openplanner.team/stops/X904anb"], ["https://tec.openplanner.team/stops/Ccotemp1", "https://tec.openplanner.team/stops/Ccotemp2"], ["https://tec.openplanner.team/stops/Llgborn1", "https://tec.openplanner.team/stops/Llgborn2"], ["https://tec.openplanner.team/stops/N122aia", "https://tec.openplanner.team/stops/N122aib"], ["https://tec.openplanner.team/stops/H1pa103b", "https://tec.openplanner.team/stops/H1wa138b"], ["https://tec.openplanner.team/stops/H1te178b", "https://tec.openplanner.team/stops/H1te191b"], ["https://tec.openplanner.team/stops/H4lg102b", "https://tec.openplanner.team/stops/H4rm112b"], ["https://tec.openplanner.team/stops/H4gu109a", "https://tec.openplanner.team/stops/H4sm247a"], ["https://tec.openplanner.team/stops/X658agc", "https://tec.openplanner.team/stops/X659aib"], ["https://tec.openplanner.team/stops/Bglibui1", "https://tec.openplanner.team/stops/NB59akb"], ["https://tec.openplanner.team/stops/N232afa", "https://tec.openplanner.team/stops/N286aab"], ["https://tec.openplanner.team/stops/H2tr247b", "https://tec.openplanner.team/stops/H2tr253b"], ["https://tec.openplanner.team/stops/Cfrempe1", "https://tec.openplanner.team/stops/Cfrfaub4"], ["https://tec.openplanner.team/stops/N509acc", "https://tec.openplanner.team/stops/N509afa"], ["https://tec.openplanner.team/stops/H1si167a", "https://tec.openplanner.team/stops/H1si167b"], ["https://tec.openplanner.team/stops/Bjodfab1", "https://tec.openplanner.team/stops/Bjodrrg1"], ["https://tec.openplanner.team/stops/N230adb", "https://tec.openplanner.team/stops/N230ajb"], ["https://tec.openplanner.team/stops/LhMwing2", "https://tec.openplanner.team/stops/LsCbrau2"], ["https://tec.openplanner.team/stops/H4mo137a", "https://tec.openplanner.team/stops/H4mo137b"], ["https://tec.openplanner.team/stops/LeIpiro4", "https://tec.openplanner.team/stops/LsHlenz1"], ["https://tec.openplanner.team/stops/Cgysole1", "https://tec.openplanner.team/stops/CMsolei1"], ["https://tec.openplanner.team/stops/N349agb", "https://tec.openplanner.team/stops/X349aic"], ["https://tec.openplanner.team/stops/LmYwall1", "https://tec.openplanner.team/stops/LsVgend2"], ["https://tec.openplanner.team/stops/X982aka", "https://tec.openplanner.team/stops/X982bya"], ["https://tec.openplanner.team/stops/X669aea", "https://tec.openplanner.team/stops/X669aeb"], ["https://tec.openplanner.team/stops/Bleugar1", "https://tec.openplanner.team/stops/Bwolkra2"], ["https://tec.openplanner.team/stops/Beclbse1", "https://tec.openplanner.team/stops/Beclpla2"], ["https://tec.openplanner.team/stops/LlgCATH1", "https://tec.openplanner.team/stops/Llgcroi1"], ["https://tec.openplanner.team/stops/N229asa", "https://tec.openplanner.team/stops/N230aaa"], ["https://tec.openplanner.team/stops/LeYloos2", "https://tec.openplanner.team/stops/LhSwind2"], ["https://tec.openplanner.team/stops/Cfcctru1", "https://tec.openplanner.team/stops/Cfcctru2"], ["https://tec.openplanner.team/stops/H4rx143b", "https://tec.openplanner.team/stops/H4tf147b"], ["https://tec.openplanner.team/stops/Buccpin2", "https://tec.openplanner.team/stops/Buccpor2"], ["https://tec.openplanner.team/stops/Csycant2", "https://tec.openplanner.team/stops/Csysans1"], ["https://tec.openplanner.team/stops/Lalecmo1", "https://tec.openplanner.team/stops/Lalecmo2"], ["https://tec.openplanner.team/stops/N337aea", "https://tec.openplanner.team/stops/N337aeb"], ["https://tec.openplanner.team/stops/Bcbqcim1", "https://tec.openplanner.team/stops/Blemsta1"], ["https://tec.openplanner.team/stops/N515anb", "https://tec.openplanner.team/stops/N516aoc"], ["https://tec.openplanner.team/stops/X358afa", "https://tec.openplanner.team/stops/X358afb"], ["https://tec.openplanner.team/stops/LLelans2", "https://tec.openplanner.team/stops/X576afb"], ["https://tec.openplanner.team/stops/LElgerd1", "https://tec.openplanner.team/stops/LElgerd4"], ["https://tec.openplanner.team/stops/Cnacent1", "https://tec.openplanner.team/stops/Cnadepo2"], ["https://tec.openplanner.team/stops/LLnlimb1", "https://tec.openplanner.team/stops/LOeelbe1"], ["https://tec.openplanner.team/stops/Bpelegl4", "https://tec.openplanner.team/stops/Bpelf962"], ["https://tec.openplanner.team/stops/LFychpl1", "https://tec.openplanner.team/stops/LONcroi2"], ["https://tec.openplanner.team/stops/Cgogb2", "https://tec.openplanner.team/stops/Cjumade4"], ["https://tec.openplanner.team/stops/LoEauto1", "https://tec.openplanner.team/stops/LrD28--2"], ["https://tec.openplanner.team/stops/H1ho128a", "https://tec.openplanner.team/stops/H1wa137b"], ["https://tec.openplanner.team/stops/LSHmais2", "https://tec.openplanner.team/stops/LSOtheu2"], ["https://tec.openplanner.team/stops/Lanfont1", "https://tec.openplanner.team/stops/Llgchau1"], ["https://tec.openplanner.team/stops/N134ajb", "https://tec.openplanner.team/stops/N152abd"], ["https://tec.openplanner.team/stops/Bblaast1", "https://tec.openplanner.team/stops/Bblagar4"], ["https://tec.openplanner.team/stops/N525acb", "https://tec.openplanner.team/stops/N525aua"], ["https://tec.openplanner.team/stops/H4my121b", "https://tec.openplanner.team/stops/H4my123b"], ["https://tec.openplanner.team/stops/LBSgeer2", "https://tec.openplanner.team/stops/LBSkann2"], ["https://tec.openplanner.team/stops/H1em102b", "https://tec.openplanner.team/stops/H1em110b"], ["https://tec.openplanner.team/stops/N117aab", "https://tec.openplanner.team/stops/N117aca"], ["https://tec.openplanner.team/stops/Bbiemor1", "https://tec.openplanner.team/stops/Bgzdast1"], ["https://tec.openplanner.team/stops/LLAvi651", "https://tec.openplanner.team/stops/LMgkrui2"], ["https://tec.openplanner.team/stops/Bmarlor2", "https://tec.openplanner.team/stops/Bmartil1"], ["https://tec.openplanner.team/stops/X659ava", "https://tec.openplanner.team/stops/X659bab"], ["https://tec.openplanner.team/stops/Lvochev2", "https://tec.openplanner.team/stops/Lvoplac2"], ["https://tec.openplanner.team/stops/Bptrcra2", "https://tec.openplanner.team/stops/Bptrman2"], ["https://tec.openplanner.team/stops/X604aja", "https://tec.openplanner.team/stops/X624alb"], ["https://tec.openplanner.team/stops/H2gy109b", "https://tec.openplanner.team/stops/H2gy113b"], ["https://tec.openplanner.team/stops/Cfmltas1", "https://tec.openplanner.team/stops/Cfmsncb2"], ["https://tec.openplanner.team/stops/X901aqa", "https://tec.openplanner.team/stops/X901blb"], ["https://tec.openplanner.team/stops/Chhdubr2", "https://tec.openplanner.team/stops/Chhthui1"], ["https://tec.openplanner.team/stops/H1ms253a", "https://tec.openplanner.team/stops/H1ms276a"], ["https://tec.openplanner.team/stops/X636ara", "https://tec.openplanner.team/stops/X636aua"], ["https://tec.openplanner.team/stops/H1cu115b", "https://tec.openplanner.team/stops/H1cu118a"], ["https://tec.openplanner.team/stops/H3bi105d", "https://tec.openplanner.team/stops/H3bi119b"], ["https://tec.openplanner.team/stops/Cjufauv1", "https://tec.openplanner.team/stops/Cjufauv2"], ["https://tec.openplanner.team/stops/Llgmagh2", "https://tec.openplanner.team/stops/Llgmare1"], ["https://tec.openplanner.team/stops/X758ada", "https://tec.openplanner.team/stops/X758amb"], ["https://tec.openplanner.team/stops/H4lp125b", "https://tec.openplanner.team/stops/H4lp126b"], ["https://tec.openplanner.team/stops/N557aga", "https://tec.openplanner.team/stops/N558aja"], ["https://tec.openplanner.team/stops/Blpgcmo1", "https://tec.openplanner.team/stops/Bnivfdu2"], ["https://tec.openplanner.team/stops/Bpercsp1", "https://tec.openplanner.team/stops/Bpercsp2"], ["https://tec.openplanner.team/stops/X613acb", "https://tec.openplanner.team/stops/X613ada"], ["https://tec.openplanner.team/stops/LhLdorf2", "https://tec.openplanner.team/stops/LlSzoll2"], ["https://tec.openplanner.team/stops/Crcegli3", "https://tec.openplanner.team/stops/Crcegli4"], ["https://tec.openplanner.team/stops/X888aea", "https://tec.openplanner.team/stops/X888aeb"], ["https://tec.openplanner.team/stops/Bgemfbo2", "https://tec.openplanner.team/stops/N522bvf"], ["https://tec.openplanner.team/stops/Cmlgche2", "https://tec.openplanner.team/stops/Cmlvxmo2"], ["https://tec.openplanner.team/stops/N548awa", "https://tec.openplanner.team/stops/N548ayb"], ["https://tec.openplanner.team/stops/LBNforg2", "https://tec.openplanner.team/stops/LDOandr3"], ["https://tec.openplanner.team/stops/Braclin1", "https://tec.openplanner.team/stops/Braclin2"], ["https://tec.openplanner.team/stops/Lvtathe2", "https://tec.openplanner.team/stops/Lvteg--1"], ["https://tec.openplanner.team/stops/H1br122b", "https://tec.openplanner.team/stops/H1ev116a"], ["https://tec.openplanner.team/stops/Buccron2", "https://tec.openplanner.team/stops/Buccvbe2"], ["https://tec.openplanner.team/stops/H1cd114a", "https://tec.openplanner.team/stops/H1ne150a"], ["https://tec.openplanner.team/stops/LEMgren*", "https://tec.openplanner.team/stops/LMalamb4"], ["https://tec.openplanner.team/stops/Bcseaba2", "https://tec.openplanner.team/stops/Bcsebea4"], ["https://tec.openplanner.team/stops/Bosqcim1", "https://tec.openplanner.team/stops/Bosqsam1"], ["https://tec.openplanner.team/stops/N543avh", "https://tec.openplanner.team/stops/N543cqb"], ["https://tec.openplanner.team/stops/X939adb", "https://tec.openplanner.team/stops/X939aea"], ["https://tec.openplanner.team/stops/Cbblacb2", "https://tec.openplanner.team/stops/Cclbarb1"], ["https://tec.openplanner.team/stops/H1bu137b", "https://tec.openplanner.team/stops/H2ep145b"], ["https://tec.openplanner.team/stops/X946adb", "https://tec.openplanner.team/stops/X946aia"], ["https://tec.openplanner.team/stops/N355aba", "https://tec.openplanner.team/stops/N355abb"], ["https://tec.openplanner.team/stops/Lghhoco1", "https://tec.openplanner.team/stops/Lghmavi1"], ["https://tec.openplanner.team/stops/N501bsa", "https://tec.openplanner.team/stops/N501bxa"], ["https://tec.openplanner.team/stops/H1fr114a", "https://tec.openplanner.team/stops/H1fr124a"], ["https://tec.openplanner.team/stops/Ccoacie1", "https://tec.openplanner.team/stops/Ccocorb1"], ["https://tec.openplanner.team/stops/X734aba", "https://tec.openplanner.team/stops/X734abb"], ["https://tec.openplanner.team/stops/N115abb", "https://tec.openplanner.team/stops/N147afa"], ["https://tec.openplanner.team/stops/Ljuchap2", "https://tec.openplanner.team/stops/Ljulieg1"], ["https://tec.openplanner.team/stops/N540adb", "https://tec.openplanner.team/stops/N540amb"], ["https://tec.openplanner.team/stops/Bwancal2", "https://tec.openplanner.team/stops/Bwancal3"], ["https://tec.openplanner.team/stops/LHTdelh1", "https://tec.openplanner.team/stops/LHTdelh2"], ["https://tec.openplanner.team/stops/LwAlont1", "https://tec.openplanner.team/stops/LwAprei1"], ["https://tec.openplanner.team/stops/N232bwa", "https://tec.openplanner.team/stops/N232bwb"], ["https://tec.openplanner.team/stops/X991akb", "https://tec.openplanner.team/stops/X991ala"], ["https://tec.openplanner.team/stops/H1gh143b", "https://tec.openplanner.team/stops/H1je225a"], ["https://tec.openplanner.team/stops/N222aca", "https://tec.openplanner.team/stops/N223aaa"], ["https://tec.openplanner.team/stops/LHFhard1", "https://tec.openplanner.team/stops/LVEroum1"], ["https://tec.openplanner.team/stops/H2hg144a", "https://tec.openplanner.team/stops/H2ll176c"], ["https://tec.openplanner.team/stops/X808afa", "https://tec.openplanner.team/stops/X834adb"], ["https://tec.openplanner.team/stops/Blasclo1", "https://tec.openplanner.team/stops/Bohnr731"], ["https://tec.openplanner.team/stops/Lghalle1", "https://tec.openplanner.team/stops/Lghcoqs2"], ["https://tec.openplanner.team/stops/LVEhali1", "https://tec.openplanner.team/stops/LVEhali2"], ["https://tec.openplanner.team/stops/N501cpb", "https://tec.openplanner.team/stops/N501cub"], ["https://tec.openplanner.team/stops/H1ch100a", "https://tec.openplanner.team/stops/H5ma181a"], ["https://tec.openplanner.team/stops/Cdajume1", "https://tec.openplanner.team/stops/Cdanvpr2"], ["https://tec.openplanner.team/stops/LLrdrev1", "https://tec.openplanner.team/stops/LLrmeno1"], ["https://tec.openplanner.team/stops/Cmchai2", "https://tec.openplanner.team/stops/Cmgtour2"], ["https://tec.openplanner.team/stops/Bkrabhu2", "https://tec.openplanner.team/stops/Bovelge1"], ["https://tec.openplanner.team/stops/H1gr110b", "https://tec.openplanner.team/stops/H1hr127b"], ["https://tec.openplanner.team/stops/H4lp119a", "https://tec.openplanner.team/stops/H4lp119b"], ["https://tec.openplanner.team/stops/N874aga", "https://tec.openplanner.team/stops/N874aha"], ["https://tec.openplanner.team/stops/X793aja", "https://tec.openplanner.team/stops/X793aka"], ["https://tec.openplanner.team/stops/Bblabos2", "https://tec.openplanner.team/stops/Bblacar2"], ["https://tec.openplanner.team/stops/LENecol2", "https://tec.openplanner.team/stops/LENmc--1"], ["https://tec.openplanner.team/stops/LMoeg--1", "https://tec.openplanner.team/stops/LMoeg--2"], ["https://tec.openplanner.team/stops/N518aba", "https://tec.openplanner.team/stops/N519aha"], ["https://tec.openplanner.team/stops/X927aab", "https://tec.openplanner.team/stops/X927aba"], ["https://tec.openplanner.team/stops/N503agb", "https://tec.openplanner.team/stops/N535aoa"], ["https://tec.openplanner.team/stops/Blanath2", "https://tec.openplanner.team/stops/Blanraa2"], ["https://tec.openplanner.team/stops/LSTparf1", "https://tec.openplanner.team/stops/LTPtroi1"], ["https://tec.openplanner.team/stops/X836aaa", "https://tec.openplanner.team/stops/X836aab"], ["https://tec.openplanner.team/stops/LHGtron1", "https://tec.openplanner.team/stops/LHGtron2"], ["https://tec.openplanner.team/stops/N232bha", "https://tec.openplanner.team/stops/N232bla"], ["https://tec.openplanner.team/stops/Cmlasie2", "https://tec.openplanner.team/stops/Cmlcazi1"], ["https://tec.openplanner.team/stops/Bsompri1", "https://tec.openplanner.team/stops/Bsompri2"], ["https://tec.openplanner.team/stops/Bplncsd2", "https://tec.openplanner.team/stops/Bwatvco2"], ["https://tec.openplanner.team/stops/LSUroyo1", "https://tec.openplanner.team/stops/LSUroyo2"], ["https://tec.openplanner.team/stops/LeUstad1", "https://tec.openplanner.team/stops/LeUstad2"], ["https://tec.openplanner.team/stops/N243aca", "https://tec.openplanner.team/stops/N243acb"], ["https://tec.openplanner.team/stops/LHMbelv2", "https://tec.openplanner.team/stops/LHMhind1"], ["https://tec.openplanner.team/stops/Cgzabur1", "https://tec.openplanner.team/stops/Cgzplac4"], ["https://tec.openplanner.team/stops/Bsmgegl1", "https://tec.openplanner.team/stops/Bvilpar1"], ["https://tec.openplanner.team/stops/X982axa", "https://tec.openplanner.team/stops/X982axb"], ["https://tec.openplanner.team/stops/N509akb", "https://tec.openplanner.team/stops/N509alb"], ["https://tec.openplanner.team/stops/Cvp3til4", "https://tec.openplanner.team/stops/Cvp3til5"], ["https://tec.openplanner.team/stops/X756aja", "https://tec.openplanner.team/stops/X779aga"], ["https://tec.openplanner.team/stops/Bbchboi1", "https://tec.openplanner.team/stops/Bwaucig1"], ["https://tec.openplanner.team/stops/X639ana", "https://tec.openplanner.team/stops/X640ata"], ["https://tec.openplanner.team/stops/X833aba", "https://tec.openplanner.team/stops/X833acb"], ["https://tec.openplanner.team/stops/N153aeb", "https://tec.openplanner.team/stops/N154ada"], ["https://tec.openplanner.team/stops/Bwatcap1", "https://tec.openplanner.team/stops/Bwatprp2"], ["https://tec.openplanner.team/stops/Lhrpaep*", "https://tec.openplanner.team/stops/Lhrthie1"], ["https://tec.openplanner.team/stops/Bqueblo2", "https://tec.openplanner.team/stops/Btubren2"], ["https://tec.openplanner.team/stops/Blilton1", "https://tec.openplanner.team/stops/Blilwit1"], ["https://tec.openplanner.team/stops/Lflcime1", "https://tec.openplanner.team/stops/Lflmc--1"], ["https://tec.openplanner.team/stops/Cgplhoi2", "https://tec.openplanner.team/stops/H2gy108a"], ["https://tec.openplanner.team/stops/H1el133b", "https://tec.openplanner.team/stops/H1el136b"], ["https://tec.openplanner.team/stops/Bbeamon1", "https://tec.openplanner.team/stops/Bbeapim2"], ["https://tec.openplanner.team/stops/X823afc", "https://tec.openplanner.team/stops/X823aff"], ["https://tec.openplanner.team/stops/LlOdrei1", "https://tec.openplanner.team/stops/LsVeite2"], ["https://tec.openplanner.team/stops/H5pe147a", "https://tec.openplanner.team/stops/H5pe175a"], ["https://tec.openplanner.team/stops/X897acb", "https://tec.openplanner.team/stops/X897aja"], ["https://tec.openplanner.team/stops/H5rx120a", "https://tec.openplanner.team/stops/H5rx120b"], ["https://tec.openplanner.team/stops/X654aia", "https://tec.openplanner.team/stops/X654aib"], ["https://tec.openplanner.team/stops/X601bga", "https://tec.openplanner.team/stops/X601bxb"], ["https://tec.openplanner.team/stops/X770afa", "https://tec.openplanner.team/stops/X774acb"], ["https://tec.openplanner.team/stops/LAWcite4", "https://tec.openplanner.team/stops/LAWcite6"], ["https://tec.openplanner.team/stops/NL77ana", "https://tec.openplanner.team/stops/NL78ahb"], ["https://tec.openplanner.team/stops/X982abb", "https://tec.openplanner.team/stops/X982btb"], ["https://tec.openplanner.team/stops/Bblaadm2", "https://tec.openplanner.team/stops/Bblajap1"], ["https://tec.openplanner.team/stops/LAMcime2", "https://tec.openplanner.team/stops/LAMpirk2"], ["https://tec.openplanner.team/stops/Binclib1", "https://tec.openplanner.team/stops/Binclib2"], ["https://tec.openplanner.team/stops/LWscona1", "https://tec.openplanner.team/stops/LWscona2"], ["https://tec.openplanner.team/stops/LAUabat1", "https://tec.openplanner.team/stops/LAUbour4"], ["https://tec.openplanner.team/stops/Lsmdepo1", "https://tec.openplanner.team/stops/Lsmecol1"], ["https://tec.openplanner.team/stops/Lhrmine1", "https://tec.openplanner.team/stops/Ljuauto2"], ["https://tec.openplanner.team/stops/H4ea131a", "https://tec.openplanner.team/stops/H4ea131b"], ["https://tec.openplanner.team/stops/X898aaa", "https://tec.openplanner.team/stops/X898aab"], ["https://tec.openplanner.team/stops/Lflec--1", "https://tec.openplanner.team/stops/Lflweri2"], ["https://tec.openplanner.team/stops/X390ala", "https://tec.openplanner.team/stops/X390ana"], ["https://tec.openplanner.team/stops/X818aqa", "https://tec.openplanner.team/stops/X818ara"], ["https://tec.openplanner.team/stops/N513ava", "https://tec.openplanner.team/stops/N514aga"], ["https://tec.openplanner.team/stops/LHAcite2", "https://tec.openplanner.team/stops/LHAclin2"], ["https://tec.openplanner.team/stops/LeUkehr3", "https://tec.openplanner.team/stops/LeUkirc1"], ["https://tec.openplanner.team/stops/H1gh163a", "https://tec.openplanner.team/stops/H1gh167a"], ["https://tec.openplanner.team/stops/H1hc125b", "https://tec.openplanner.team/stops/H5gr137b"], ["https://tec.openplanner.team/stops/Bincegl2", "https://tec.openplanner.team/stops/Boppcen3"], ["https://tec.openplanner.team/stops/H4an111a", "https://tec.openplanner.team/stops/H4an111c"], ["https://tec.openplanner.team/stops/N117aoc", "https://tec.openplanner.team/stops/N117bcb"], ["https://tec.openplanner.team/stops/Bchgbar2", "https://tec.openplanner.team/stops/Bchgqve1"], ["https://tec.openplanner.team/stops/X719aab", "https://tec.openplanner.team/stops/X720aaa"], ["https://tec.openplanner.team/stops/H4bn173a", "https://tec.openplanner.team/stops/H4wp151b"], ["https://tec.openplanner.team/stops/H5wo127b", "https://tec.openplanner.team/stops/H5wo136b"], ["https://tec.openplanner.team/stops/Bdlvpco2", "https://tec.openplanner.team/stops/Bgzdfpo1"], ["https://tec.openplanner.team/stops/X723aca", "https://tec.openplanner.team/stops/X723acb"], ["https://tec.openplanner.team/stops/X808aac", "https://tec.openplanner.team/stops/X808aja"], ["https://tec.openplanner.team/stops/X654aga", "https://tec.openplanner.team/stops/X654aha"], ["https://tec.openplanner.team/stops/N390ada", "https://tec.openplanner.team/stops/N390adb"], ["https://tec.openplanner.team/stops/Cmtchet1", "https://tec.openplanner.team/stops/Cmtneuv2"], ["https://tec.openplanner.team/stops/Bwatcpl1", "https://tec.openplanner.team/stops/Bwatcpl2"], ["https://tec.openplanner.team/stops/Bronn392", "https://tec.openplanner.team/stops/Bronpfe2"], ["https://tec.openplanner.team/stops/X354aha", "https://tec.openplanner.team/stops/X858aha"], ["https://tec.openplanner.team/stops/LVLecco1", "https://tec.openplanner.team/stops/LVLmart1"], ["https://tec.openplanner.team/stops/Cgdberl1", "https://tec.openplanner.team/stops/Cgdfras1"], ["https://tec.openplanner.team/stops/LTRcite1", "https://tec.openplanner.team/stops/LTRferm1"], ["https://tec.openplanner.team/stops/Ldichat2", "https://tec.openplanner.team/stops/Ldihusq2"], ["https://tec.openplanner.team/stops/H1gc122a", "https://tec.openplanner.team/stops/H1gc124a"], ["https://tec.openplanner.team/stops/N506aza", "https://tec.openplanner.team/stops/N506beb"], ["https://tec.openplanner.team/stops/H4ss154b", "https://tec.openplanner.team/stops/H4ss158a"], ["https://tec.openplanner.team/stops/Bcer4br2", "https://tec.openplanner.team/stops/Bcer4br4"], ["https://tec.openplanner.team/stops/H4rm111b", "https://tec.openplanner.team/stops/H4ta120a"], ["https://tec.openplanner.team/stops/LPtchpl1", "https://tec.openplanner.team/stops/LRchaie2"], ["https://tec.openplanner.team/stops/N211aea", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/LSZarbe2", "https://tec.openplanner.team/stops/LSZheid2"], ["https://tec.openplanner.team/stops/H1hm173a", "https://tec.openplanner.team/stops/H1nv324b"], ["https://tec.openplanner.team/stops/N201aob", "https://tec.openplanner.team/stops/N201aoc"], ["https://tec.openplanner.team/stops/H4wp152b", "https://tec.openplanner.team/stops/H4wp153b"], ["https://tec.openplanner.team/stops/Lghcham2", "https://tec.openplanner.team/stops/Lghwass2"], ["https://tec.openplanner.team/stops/N557afa", "https://tec.openplanner.team/stops/N557ahb"], ["https://tec.openplanner.team/stops/N501cmb", "https://tec.openplanner.team/stops/N501eoa"], ["https://tec.openplanner.team/stops/LMipoti2", "https://tec.openplanner.team/stops/LMisour2"], ["https://tec.openplanner.team/stops/N516ala", "https://tec.openplanner.team/stops/N516alb"], ["https://tec.openplanner.team/stops/N121aha", "https://tec.openplanner.team/stops/N121ahb"], ["https://tec.openplanner.team/stops/X664ama", "https://tec.openplanner.team/stops/X664amb"], ["https://tec.openplanner.team/stops/N501gpa", "https://tec.openplanner.team/stops/N501gpb"], ["https://tec.openplanner.team/stops/LBVclig2", "https://tec.openplanner.team/stops/LSTmeiz1"], ["https://tec.openplanner.team/stops/H3so161b", "https://tec.openplanner.team/stops/H3so176b"], ["https://tec.openplanner.team/stops/N121adb", "https://tec.openplanner.team/stops/N121ajb"], ["https://tec.openplanner.team/stops/X946aia", "https://tec.openplanner.team/stops/X948aba"], ["https://tec.openplanner.team/stops/Cgyduss4", "https://tec.openplanner.team/stops/Cjuhame3"], ["https://tec.openplanner.team/stops/Cprcits2", "https://tec.openplanner.team/stops/Cprvsar2"], ["https://tec.openplanner.team/stops/H1fr111b", "https://tec.openplanner.team/stops/H1ge116a"], ["https://tec.openplanner.team/stops/Cchsud07", "https://tec.openplanner.team/stops/Cchsud13"], ["https://tec.openplanner.team/stops/H4mo132b", "https://tec.openplanner.team/stops/H4mo170a"], ["https://tec.openplanner.team/stops/LhEherb1", "https://tec.openplanner.team/stops/LhElont1"], ["https://tec.openplanner.team/stops/N511afb", "https://tec.openplanner.team/stops/N511agb"], ["https://tec.openplanner.team/stops/X912aaa", "https://tec.openplanner.team/stops/X912aab"], ["https://tec.openplanner.team/stops/Bnivlpa1", "https://tec.openplanner.team/stops/Bnivlpa2"], ["https://tec.openplanner.team/stops/H4mt216b", "https://tec.openplanner.team/stops/H4mx116b"], ["https://tec.openplanner.team/stops/LTHmont1", "https://tec.openplanner.team/stops/LTHmont2"], ["https://tec.openplanner.team/stops/Ctafran1", "https://tec.openplanner.team/stops/Ctafran2"], ["https://tec.openplanner.team/stops/X561aba", "https://tec.openplanner.team/stops/X561aca"], ["https://tec.openplanner.team/stops/LHEches2", "https://tec.openplanner.team/stops/LHEchex1"], ["https://tec.openplanner.team/stops/Cmmadma1", "https://tec.openplanner.team/stops/Cmmpast1"], ["https://tec.openplanner.team/stops/Ladpara1", "https://tec.openplanner.team/stops/Lverain1"], ["https://tec.openplanner.team/stops/Lmndari2", "https://tec.openplanner.team/stops/Lsmtini3"], ["https://tec.openplanner.team/stops/LHYlinc4", "https://tec.openplanner.team/stops/LHYnoid2"], ["https://tec.openplanner.team/stops/N103acc", "https://tec.openplanner.team/stops/N131aeb"], ["https://tec.openplanner.team/stops/LaAzwei1", "https://tec.openplanner.team/stops/LkOaugu2"], ["https://tec.openplanner.team/stops/LOehart1", "https://tec.openplanner.team/stops/LWAeloi1"], ["https://tec.openplanner.team/stops/N162aab", "https://tec.openplanner.team/stops/N162abb"], ["https://tec.openplanner.team/stops/N512aca", "https://tec.openplanner.team/stops/NL57aeb"], ["https://tec.openplanner.team/stops/N569afa", "https://tec.openplanner.team/stops/N569afb"], ["https://tec.openplanner.team/stops/X747aea", "https://tec.openplanner.team/stops/X747aeb"], ["https://tec.openplanner.team/stops/Llgpire1", "https://tec.openplanner.team/stops/Llgpire2"], ["https://tec.openplanner.team/stops/X786aha", "https://tec.openplanner.team/stops/X786aia"], ["https://tec.openplanner.team/stops/Bglacsr1", "https://tec.openplanner.team/stops/Bgnppra1"], ["https://tec.openplanner.team/stops/LGAbois1", "https://tec.openplanner.team/stops/LWAaxhe1"], ["https://tec.openplanner.team/stops/LlgPRVo2", "https://tec.openplanner.team/stops/Llgverg1"], ["https://tec.openplanner.team/stops/X901aib", "https://tec.openplanner.team/stops/X901bsa"], ["https://tec.openplanner.team/stops/LBPmais2", "https://tec.openplanner.team/stops/LSLfler1"], ["https://tec.openplanner.team/stops/N537aga", "https://tec.openplanner.team/stops/N537ajb"], ["https://tec.openplanner.team/stops/Bcbqtub2", "https://tec.openplanner.team/stops/Bitrpri1"], ["https://tec.openplanner.team/stops/H4bn101a", "https://tec.openplanner.team/stops/H4bn101b"], ["https://tec.openplanner.team/stops/N874aaa", "https://tec.openplanner.team/stops/N874aab"], ["https://tec.openplanner.team/stops/X804bga", "https://tec.openplanner.team/stops/X804bqa"], ["https://tec.openplanner.team/stops/H1bo112a", "https://tec.openplanner.team/stops/H1sg145b"], ["https://tec.openplanner.team/stops/N501hmb", "https://tec.openplanner.team/stops/N501isb"], ["https://tec.openplanner.team/stops/Cpclibe1", "https://tec.openplanner.team/stops/Cpclibe4"], ["https://tec.openplanner.team/stops/Lprchat2", "https://tec.openplanner.team/stops/Lprpous1"], ["https://tec.openplanner.team/stops/X608aca", "https://tec.openplanner.team/stops/X608acb"], ["https://tec.openplanner.team/stops/N141aga", "https://tec.openplanner.team/stops/N141agb"], ["https://tec.openplanner.team/stops/Bosqcar1", "https://tec.openplanner.team/stops/Bosqcar2"], ["https://tec.openplanner.team/stops/Canterr2", "https://tec.openplanner.team/stops/H2an104a"], ["https://tec.openplanner.team/stops/LOmlime1", "https://tec.openplanner.team/stops/LOmlime2"], ["https://tec.openplanner.team/stops/LLAchpl2", "https://tec.openplanner.team/stops/LLAeg--2"], ["https://tec.openplanner.team/stops/X824aea", "https://tec.openplanner.team/stops/X824aga"], ["https://tec.openplanner.team/stops/X901bba", "https://tec.openplanner.team/stops/X901bma"], ["https://tec.openplanner.team/stops/Clb4dgi2", "https://tec.openplanner.team/stops/Clbpepi1"], ["https://tec.openplanner.team/stops/N145acb", "https://tec.openplanner.team/stops/N145agb"], ["https://tec.openplanner.team/stops/H4ma398b", "https://tec.openplanner.team/stops/H4ma419b"], ["https://tec.openplanner.team/stops/LaMahof1", "https://tec.openplanner.team/stops/LsHkreu4"], ["https://tec.openplanner.team/stops/Ladchat2", "https://tec.openplanner.team/stops/LThplen1"], ["https://tec.openplanner.team/stops/Lhrlalo4", "https://tec.openplanner.team/stops/Ljudeme4"], ["https://tec.openplanner.team/stops/LnEfrie1", "https://tec.openplanner.team/stops/LnErech1"], ["https://tec.openplanner.team/stops/Blaneli1", "https://tec.openplanner.team/stops/Blankal3"], ["https://tec.openplanner.team/stops/X801bha", "https://tec.openplanner.team/stops/X801bjb"], ["https://tec.openplanner.team/stops/Bvirhsa2", "https://tec.openplanner.team/stops/Bvirrbo1"], ["https://tec.openplanner.team/stops/LHChomb2", "https://tec.openplanner.team/stops/LHMhof-2"], ["https://tec.openplanner.team/stops/Bwatmch1", "https://tec.openplanner.team/stops/Bwatmch3"], ["https://tec.openplanner.team/stops/X731aka", "https://tec.openplanner.team/stops/X731ama"], ["https://tec.openplanner.team/stops/Csiegli1", "https://tec.openplanner.team/stops/N106afb"], ["https://tec.openplanner.team/stops/H4mv195a", "https://tec.openplanner.team/stops/H4mv197a"], ["https://tec.openplanner.team/stops/Bneedia1", "https://tec.openplanner.team/stops/Bneeegl1"], ["https://tec.openplanner.team/stops/Clb4bra1", "https://tec.openplanner.team/stops/Clb4bra2"], ["https://tec.openplanner.team/stops/Llgjenn1", "https://tec.openplanner.team/stops/Llgjenn4"], ["https://tec.openplanner.team/stops/H4ka192a", "https://tec.openplanner.team/stops/H4ka399a"], ["https://tec.openplanner.team/stops/N205aca", "https://tec.openplanner.team/stops/N220adb"], ["https://tec.openplanner.team/stops/N117aga", "https://tec.openplanner.team/stops/N117ata"], ["https://tec.openplanner.team/stops/Bdvmcsa2", "https://tec.openplanner.team/stops/Bdvmsar2"], ["https://tec.openplanner.team/stops/N874amc", "https://tec.openplanner.team/stops/N874ana"], ["https://tec.openplanner.team/stops/H4bo118a", "https://tec.openplanner.team/stops/H4bo118b"], ["https://tec.openplanner.team/stops/Bhlvgar1", "https://tec.openplanner.team/stops/Crewaba1"], ["https://tec.openplanner.team/stops/Cnahous1", "https://tec.openplanner.team/stops/NC14aqa"], ["https://tec.openplanner.team/stops/X766agb", "https://tec.openplanner.team/stops/X766ahb"], ["https://tec.openplanner.team/stops/H4be112a", "https://tec.openplanner.team/stops/H4be112b"], ["https://tec.openplanner.team/stops/LOcchat2", "https://tec.openplanner.team/stops/LOchalo2"], ["https://tec.openplanner.team/stops/X763aaa", "https://tec.openplanner.team/stops/X763adb"], ["https://tec.openplanner.team/stops/X812aba", "https://tec.openplanner.team/stops/X812ata"], ["https://tec.openplanner.team/stops/X749aab", "https://tec.openplanner.team/stops/X754acb"], ["https://tec.openplanner.team/stops/Bbsicen2", "https://tec.openplanner.team/stops/Bhtihau1"], ["https://tec.openplanner.team/stops/LJSforg2", "https://tec.openplanner.team/stops/Lpechin2"], ["https://tec.openplanner.team/stops/N529abb", "https://tec.openplanner.team/stops/N529aia"], ["https://tec.openplanner.team/stops/H2ec103a", "https://tec.openplanner.team/stops/H3br101b"], ["https://tec.openplanner.team/stops/H4og215a", "https://tec.openplanner.team/stops/H4og215b"], ["https://tec.openplanner.team/stops/N331aab", "https://tec.openplanner.team/stops/N331afc"], ["https://tec.openplanner.team/stops/LWbburn2", "https://tec.openplanner.team/stops/LWberno2"], ["https://tec.openplanner.team/stops/X637aeb", "https://tec.openplanner.team/stops/X637aga"], ["https://tec.openplanner.team/stops/LWAloui1", "https://tec.openplanner.team/stops/LWAloui2"], ["https://tec.openplanner.team/stops/H1sy138a", "https://tec.openplanner.team/stops/H1sy147b"], ["https://tec.openplanner.team/stops/Llgangl1", "https://tec.openplanner.team/stops/Llgelis1"], ["https://tec.openplanner.team/stops/Cmorgof1", "https://tec.openplanner.team/stops/Cmosaba4"], ["https://tec.openplanner.team/stops/N323acb", "https://tec.openplanner.team/stops/N894adb"], ["https://tec.openplanner.team/stops/N501crb", "https://tec.openplanner.team/stops/N501csb"], ["https://tec.openplanner.team/stops/X620aca", "https://tec.openplanner.team/stops/X622afa"], ["https://tec.openplanner.team/stops/Blmlbou2", "https://tec.openplanner.team/stops/Blmlvex2"], ["https://tec.openplanner.team/stops/X917afa", "https://tec.openplanner.team/stops/X917afb"], ["https://tec.openplanner.team/stops/Bbourel1", "https://tec.openplanner.team/stops/Bbstcoi2"], ["https://tec.openplanner.team/stops/Cvp3til1", "https://tec.openplanner.team/stops/Cvp3til2"], ["https://tec.openplanner.team/stops/LVIhall2", "https://tec.openplanner.team/stops/LVIjacq2"], ["https://tec.openplanner.team/stops/N211aka", "https://tec.openplanner.team/stops/N214ajb"], ["https://tec.openplanner.team/stops/H1cu124b", "https://tec.openplanner.team/stops/H1cu130a"], ["https://tec.openplanner.team/stops/H3so158b", "https://tec.openplanner.team/stops/H3so162b"], ["https://tec.openplanner.team/stops/LSPastr1", "https://tec.openplanner.team/stops/LSProya1"], ["https://tec.openplanner.team/stops/N501ixc", "https://tec.openplanner.team/stops/N501jba"], ["https://tec.openplanner.team/stops/Llglill1", "https://tec.openplanner.team/stops/Llgrass2"], ["https://tec.openplanner.team/stops/Cacragu2", "https://tec.openplanner.team/stops/Cacscav1"], ["https://tec.openplanner.team/stops/LLNcruc2", "https://tec.openplanner.team/stops/LSpxhig2"], ["https://tec.openplanner.team/stops/Bgzdcen1", "https://tec.openplanner.team/stops/Bgzdsta2"], ["https://tec.openplanner.team/stops/N543axa", "https://tec.openplanner.team/stops/N543cpa"], ["https://tec.openplanner.team/stops/LJEchat4", "https://tec.openplanner.team/stops/LJEverd2"], ["https://tec.openplanner.team/stops/LRMeg--1", "https://tec.openplanner.team/stops/X595abb"], ["https://tec.openplanner.team/stops/LFR201-1", "https://tec.openplanner.team/stops/LFRsp1-1"], ["https://tec.openplanner.team/stops/H2hg265b", "https://tec.openplanner.team/stops/H2hg270b"], ["https://tec.openplanner.team/stops/Cmmgadi1", "https://tec.openplanner.team/stops/Cmypela1"], ["https://tec.openplanner.team/stops/X576aea", "https://tec.openplanner.team/stops/X576agb"], ["https://tec.openplanner.team/stops/X617ahb", "https://tec.openplanner.team/stops/X618apa"], ["https://tec.openplanner.team/stops/N204aca", "https://tec.openplanner.team/stops/N204afb"], ["https://tec.openplanner.team/stops/X801bqa", "https://tec.openplanner.team/stops/X801bra"], ["https://tec.openplanner.team/stops/LFdchau4", "https://tec.openplanner.team/stops/LLMfond1"], ["https://tec.openplanner.team/stops/Lenhosp1", "https://tec.openplanner.team/stops/Lenplac5"], ["https://tec.openplanner.team/stops/H4ir165b", "https://tec.openplanner.team/stops/H4ir166b"], ["https://tec.openplanner.team/stops/X659avb", "https://tec.openplanner.team/stops/X659bab"], ["https://tec.openplanner.team/stops/H4bh103a", "https://tec.openplanner.team/stops/H4ry129b"], ["https://tec.openplanner.team/stops/H5st167a", "https://tec.openplanner.team/stops/H5st168a"], ["https://tec.openplanner.team/stops/H1hw125b", "https://tec.openplanner.team/stops/H1so136c"], ["https://tec.openplanner.team/stops/LPRmc--3", "https://tec.openplanner.team/stops/LPRvill2"], ["https://tec.openplanner.team/stops/LkEfrie2", "https://tec.openplanner.team/stops/LkEmax-1"], ["https://tec.openplanner.team/stops/Clvmesa2", "https://tec.openplanner.team/stops/Clvndam2"], ["https://tec.openplanner.team/stops/N501aia", "https://tec.openplanner.team/stops/N502adb"], ["https://tec.openplanner.team/stops/Cci4bra4", "https://tec.openplanner.team/stops/Cmlhauc2"], ["https://tec.openplanner.team/stops/LLxcana1", "https://tec.openplanner.team/stops/LLxmonu1"], ["https://tec.openplanner.team/stops/N104aad", "https://tec.openplanner.team/stops/N118avb"], ["https://tec.openplanner.team/stops/LnErech1", "https://tec.openplanner.team/stops/LoEbach2"], ["https://tec.openplanner.team/stops/Brsggea1", "https://tec.openplanner.team/stops/Brsggea2"], ["https://tec.openplanner.team/stops/LAicarr2", "https://tec.openplanner.team/stops/LENarde2"], ["https://tec.openplanner.team/stops/N522aia", "https://tec.openplanner.team/stops/N576aaa"], ["https://tec.openplanner.team/stops/Bchgbru1", "https://tec.openplanner.team/stops/Bchgbru2"], ["https://tec.openplanner.team/stops/H4mo188a", "https://tec.openplanner.team/stops/H4mo188b"], ["https://tec.openplanner.team/stops/H4ra159a", "https://tec.openplanner.team/stops/H4tu170a"], ["https://tec.openplanner.team/stops/LbUgend1", "https://tec.openplanner.team/stops/LbUgend2"], ["https://tec.openplanner.team/stops/H3go101b", "https://tec.openplanner.team/stops/H3go104a"], ["https://tec.openplanner.team/stops/X714acb", "https://tec.openplanner.team/stops/X715ajb"], ["https://tec.openplanner.team/stops/Cthnord1", "https://tec.openplanner.team/stops/Cthnord2"], ["https://tec.openplanner.team/stops/Bdvminc1", "https://tec.openplanner.team/stops/Bdvmtve1"], ["https://tec.openplanner.team/stops/H4pq113b", "https://tec.openplanner.team/stops/H4pq115b"], ["https://tec.openplanner.team/stops/Lmodeja1", "https://tec.openplanner.team/stops/Lmodeja2"], ["https://tec.openplanner.team/stops/Lfh-sci1", "https://tec.openplanner.team/stops/Lseivoz2"], ["https://tec.openplanner.team/stops/N425afb", "https://tec.openplanner.team/stops/N425aga"], ["https://tec.openplanner.team/stops/Btubbot2", "https://tec.openplanner.team/stops/Btubsal1"], ["https://tec.openplanner.team/stops/H4ty327a", "https://tec.openplanner.team/stops/H4ty348a"], ["https://tec.openplanner.team/stops/LSCc39-2", "https://tec.openplanner.team/stops/LSCeg--4"], ["https://tec.openplanner.team/stops/Lfhgare1", "https://tec.openplanner.team/stops/Lfhnrou1"], ["https://tec.openplanner.team/stops/LMAcime1", "https://tec.openplanner.team/stops/LMApl--1"], ["https://tec.openplanner.team/stops/Bcrbast2", "https://tec.openplanner.team/stops/Bcrbhir1"], ["https://tec.openplanner.team/stops/LAmeclu1", "https://tec.openplanner.team/stops/LATpatu1"], ["https://tec.openplanner.team/stops/Bsgetri2", "https://tec.openplanner.team/stops/Bvilpar2"], ["https://tec.openplanner.team/stops/H4ka182b", "https://tec.openplanner.team/stops/H4ka394a"], ["https://tec.openplanner.team/stops/X902aba", "https://tec.openplanner.team/stops/X999aqa"], ["https://tec.openplanner.team/stops/X650aeb", "https://tec.openplanner.team/stops/X650aia"], ["https://tec.openplanner.team/stops/Bllncyc1", "https://tec.openplanner.team/stops/Bllngal1"], ["https://tec.openplanner.team/stops/N538amc", "https://tec.openplanner.team/stops/N538amd"], ["https://tec.openplanner.team/stops/Blemwob3", "https://tec.openplanner.team/stops/Bstecal1"], ["https://tec.openplanner.team/stops/Bbeubos1", "https://tec.openplanner.team/stops/N524aba"], ["https://tec.openplanner.team/stops/H2hp114a", "https://tec.openplanner.team/stops/H2hp119b"], ["https://tec.openplanner.team/stops/LeYwess1", "https://tec.openplanner.team/stops/LlCland1"], ["https://tec.openplanner.team/stops/H2ca100b", "https://tec.openplanner.team/stops/H2mo127c"], ["https://tec.openplanner.team/stops/LmHabzw1", "https://tec.openplanner.team/stops/LmHabzw2"], ["https://tec.openplanner.team/stops/X784agb", "https://tec.openplanner.team/stops/X784aha"], ["https://tec.openplanner.team/stops/X774ada", "https://tec.openplanner.team/stops/X774aec"], ["https://tec.openplanner.team/stops/Csepote1", "https://tec.openplanner.team/stops/Csepote2"], ["https://tec.openplanner.team/stops/LGmcent1", "https://tec.openplanner.team/stops/LGmcite1"], ["https://tec.openplanner.team/stops/X717afa", "https://tec.openplanner.team/stops/X717aja"], ["https://tec.openplanner.team/stops/N149akb", "https://tec.openplanner.team/stops/N149ala"], ["https://tec.openplanner.team/stops/Ceregl1", "https://tec.openplanner.team/stops/Ceregl2"], ["https://tec.openplanner.team/stops/X653add", "https://tec.openplanner.team/stops/X653aea"], ["https://tec.openplanner.team/stops/Cctmine1", "https://tec.openplanner.team/stops/Ccunvus2"], ["https://tec.openplanner.team/stops/LSevitu3", "https://tec.openplanner.team/stops/LSevitu4"], ["https://tec.openplanner.team/stops/X890abb", "https://tec.openplanner.team/stops/X890afa"], ["https://tec.openplanner.team/stops/X658aha", "https://tec.openplanner.team/stops/X658ahb"], ["https://tec.openplanner.team/stops/N501gnb", "https://tec.openplanner.team/stops/N501hhb"], ["https://tec.openplanner.team/stops/Cgxchan1", "https://tec.openplanner.team/stops/Cgxwaut1"], ["https://tec.openplanner.team/stops/LPOchan1", "https://tec.openplanner.team/stops/LPOecol2"], ["https://tec.openplanner.team/stops/H1em103b", "https://tec.openplanner.team/stops/H1em108b"], ["https://tec.openplanner.team/stops/NL76ala", "https://tec.openplanner.team/stops/NL76alc"], ["https://tec.openplanner.team/stops/H5rx114a", "https://tec.openplanner.team/stops/H5rx126a"], ["https://tec.openplanner.team/stops/Cfaecwa1", "https://tec.openplanner.team/stops/Cflvxsa2"], ["https://tec.openplanner.team/stops/LOeelbe1", "https://tec.openplanner.team/stops/LOeelbe2"], ["https://tec.openplanner.team/stops/X824abb", "https://tec.openplanner.team/stops/X824aca"], ["https://tec.openplanner.team/stops/X661ama", "https://tec.openplanner.team/stops/X661aob"], ["https://tec.openplanner.team/stops/N424acb", "https://tec.openplanner.team/stops/N424ada"], ["https://tec.openplanner.team/stops/LMalune3", "https://tec.openplanner.team/stops/LMawilh3"], ["https://tec.openplanner.team/stops/Bbch4br3", "https://tec.openplanner.team/stops/Bbchcbl2"], ["https://tec.openplanner.team/stops/X896afb", "https://tec.openplanner.team/stops/X896ahb"], ["https://tec.openplanner.team/stops/H2ll181a", "https://tec.openplanner.team/stops/H2ll196a"], ["https://tec.openplanner.team/stops/N501bxa", "https://tec.openplanner.team/stops/N501bxb"], ["https://tec.openplanner.team/stops/LWEbruy2", "https://tec.openplanner.team/stops/LWEwilc2"], ["https://tec.openplanner.team/stops/Llglema1", "https://tec.openplanner.team/stops/Llgrome2"], ["https://tec.openplanner.team/stops/Llgelis2", "https://tec.openplanner.team/stops/Llghugo1"], ["https://tec.openplanner.team/stops/N501ejd", "https://tec.openplanner.team/stops/N501ena"], ["https://tec.openplanner.team/stops/X601bpa", "https://tec.openplanner.team/stops/X601bpb"], ["https://tec.openplanner.team/stops/Bcrncce1", "https://tec.openplanner.team/stops/Bcrncor1"], ["https://tec.openplanner.team/stops/LAyegli2", "https://tec.openplanner.team/stops/LSOtheu2"], ["https://tec.openplanner.team/stops/Cobbuze1", "https://tec.openplanner.team/stops/Cobmara2"], ["https://tec.openplanner.team/stops/LWahott1", "https://tec.openplanner.team/stops/LWazoni1"], ["https://tec.openplanner.team/stops/N507akb", "https://tec.openplanner.team/stops/N507ama"], ["https://tec.openplanner.team/stops/N229ajb", "https://tec.openplanner.team/stops/N229aua"], ["https://tec.openplanner.team/stops/Bjcljau1", "https://tec.openplanner.team/stops/Bjcljau2"], ["https://tec.openplanner.team/stops/N508ama", "https://tec.openplanner.team/stops/N508amb"], ["https://tec.openplanner.team/stops/Barqbco1", "https://tec.openplanner.team/stops/Bborbif2"], ["https://tec.openplanner.team/stops/LHUhaum2", "https://tec.openplanner.team/stops/LHUhaum3"], ["https://tec.openplanner.team/stops/H4ro156a", "https://tec.openplanner.team/stops/H5pe135b"], ["https://tec.openplanner.team/stops/H1sy144a", "https://tec.openplanner.team/stops/H1sy144b"], ["https://tec.openplanner.team/stops/X725aia", "https://tec.openplanner.team/stops/X725aib"], ["https://tec.openplanner.team/stops/Chhegli3", "https://tec.openplanner.team/stops/Cmx4che2"], ["https://tec.openplanner.team/stops/H1gh150a", "https://tec.openplanner.team/stops/H1gh157a"], ["https://tec.openplanner.team/stops/X812ava", "https://tec.openplanner.team/stops/X812baa"], ["https://tec.openplanner.team/stops/H1to152a", "https://tec.openplanner.team/stops/H1to154a"], ["https://tec.openplanner.team/stops/X773akb", "https://tec.openplanner.team/stops/X773ala"], ["https://tec.openplanner.team/stops/X601bbb", "https://tec.openplanner.team/stops/X601bbe"], ["https://tec.openplanner.team/stops/LLUvent2", "https://tec.openplanner.team/stops/LLUvent5"], ["https://tec.openplanner.team/stops/LlgCATH1", "https://tec.openplanner.team/stops/Llgpier2"], ["https://tec.openplanner.team/stops/X609aib", "https://tec.openplanner.team/stops/X609alb"], ["https://tec.openplanner.team/stops/Csuptou2", "https://tec.openplanner.team/stops/Csysans2"], ["https://tec.openplanner.team/stops/H4fl115a", "https://tec.openplanner.team/stops/H4mg139a"], ["https://tec.openplanner.team/stops/H1te183a", "https://tec.openplanner.team/stops/H1te187a"], ["https://tec.openplanner.team/stops/LVAbloe1", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://tec.openplanner.team/stops/H5bs102a", "https://tec.openplanner.team/stops/H5bs102d"], ["https://tec.openplanner.team/stops/Cgy3012", "https://tec.openplanner.team/stops/Cgystjo4"], ["https://tec.openplanner.team/stops/H4bh102b", "https://tec.openplanner.team/stops/H4bh102d"], ["https://tec.openplanner.team/stops/N501crc", "https://tec.openplanner.team/stops/N501csa"], ["https://tec.openplanner.team/stops/Cmgbrou2", "https://tec.openplanner.team/stops/Cmgpla2"], ["https://tec.openplanner.team/stops/Bsmgmar1", "https://tec.openplanner.team/stops/Bvilvil4"], ["https://tec.openplanner.team/stops/Bblapri1", "https://tec.openplanner.team/stops/Brsggar2"], ["https://tec.openplanner.team/stops/LRRelec2", "https://tec.openplanner.team/stops/LRRelec3"], ["https://tec.openplanner.team/stops/X731afb", "https://tec.openplanner.team/stops/X928aab"], ["https://tec.openplanner.team/stops/NL74ada", "https://tec.openplanner.team/stops/NL74afa"], ["https://tec.openplanner.team/stops/X901axa", "https://tec.openplanner.team/stops/X901baa"], ["https://tec.openplanner.team/stops/H1hi122b", "https://tec.openplanner.team/stops/H1tl120a"], ["https://tec.openplanner.team/stops/H1ml111b", "https://tec.openplanner.team/stops/H1ml112b"], ["https://tec.openplanner.team/stops/N531ana", "https://tec.openplanner.team/stops/N531anb"], ["https://tec.openplanner.team/stops/LFFmarc2", "https://tec.openplanner.team/stops/LVEbors2"], ["https://tec.openplanner.team/stops/LLTcent2", "https://tec.openplanner.team/stops/LLTeg--1"], ["https://tec.openplanner.team/stops/N209aab", "https://tec.openplanner.team/stops/N209ama"], ["https://tec.openplanner.team/stops/X652afc", "https://tec.openplanner.team/stops/X652agb"], ["https://tec.openplanner.team/stops/Ctubpos4", "https://tec.openplanner.team/stops/Ctucour2"], ["https://tec.openplanner.team/stops/N551aeb", "https://tec.openplanner.team/stops/N551aec"], ["https://tec.openplanner.team/stops/LHFec--2", "https://tec.openplanner.team/stops/LHFec--3"], ["https://tec.openplanner.team/stops/LMfpeni*", "https://tec.openplanner.team/stops/LMfpral2"], ["https://tec.openplanner.team/stops/X749acb", "https://tec.openplanner.team/stops/X749afb"], ["https://tec.openplanner.team/stops/X346akb", "https://tec.openplanner.team/stops/X369aab"], ["https://tec.openplanner.team/stops/H1so131b", "https://tec.openplanner.team/stops/H1so133b"], ["https://tec.openplanner.team/stops/Bheneco2", "https://tec.openplanner.team/stops/Bhenpln2"], ["https://tec.openplanner.team/stops/LHmcarr1", "https://tec.openplanner.team/stops/LHmcite1"], ["https://tec.openplanner.team/stops/Llgcadr3", "https://tec.openplanner.team/stops/Llgcadr4"], ["https://tec.openplanner.team/stops/H1gn149a", "https://tec.openplanner.team/stops/H1gn152a"], ["https://tec.openplanner.team/stops/Lsehya-1", "https://tec.openplanner.team/stops/Lsehya-4"], ["https://tec.openplanner.team/stops/Bgzddmo2", "https://tec.openplanner.team/stops/Bgzddur2"], ["https://tec.openplanner.team/stops/X614aab", "https://tec.openplanner.team/stops/X614aka"], ["https://tec.openplanner.team/stops/X601dba", "https://tec.openplanner.team/stops/X601dca"], ["https://tec.openplanner.team/stops/X733aia", "https://tec.openplanner.team/stops/X733aib"], ["https://tec.openplanner.team/stops/LrUkult1", "https://tec.openplanner.team/stops/LsBzent1"], ["https://tec.openplanner.team/stops/LeUkabe1", "https://tec.openplanner.team/stops/LeUolen1"], ["https://tec.openplanner.team/stops/H4ma162a", "https://tec.openplanner.team/stops/H4mg139b"], ["https://tec.openplanner.team/stops/LEHhaut1", "https://tec.openplanner.team/stops/LEHpech2"], ["https://tec.openplanner.team/stops/LHUeuro1", "https://tec.openplanner.team/stops/LHUlebe5"], ["https://tec.openplanner.team/stops/N542aea", "https://tec.openplanner.team/stops/N542afa"], ["https://tec.openplanner.team/stops/Ljucrah2", "https://tec.openplanner.team/stops/Ljuetie3"], ["https://tec.openplanner.team/stops/LBEpier1", "https://tec.openplanner.team/stops/Lcaboun3"], ["https://tec.openplanner.team/stops/X607ahb", "https://tec.openplanner.team/stops/X607akb"], ["https://tec.openplanner.team/stops/H4ba101a", "https://tec.openplanner.team/stops/H4ga151a"], ["https://tec.openplanner.team/stops/LVleg--3", "https://tec.openplanner.team/stops/LVleg--5"], ["https://tec.openplanner.team/stops/X979afb", "https://tec.openplanner.team/stops/X979agb"], ["https://tec.openplanner.team/stops/Cwfmoul1", "https://tec.openplanner.team/stops/NC23aaa"], ["https://tec.openplanner.team/stops/LwLkirc1", "https://tec.openplanner.team/stops/LwLprum1"], ["https://tec.openplanner.team/stops/Blhurcl1", "https://tec.openplanner.team/stops/Bovejme2"], ["https://tec.openplanner.team/stops/N524ada", "https://tec.openplanner.team/stops/N524adb"], ["https://tec.openplanner.team/stops/LrDhind2", "https://tec.openplanner.team/stops/LrDkirc1"], ["https://tec.openplanner.team/stops/N229agb", "https://tec.openplanner.team/stops/N229amb"], ["https://tec.openplanner.team/stops/X779aba", "https://tec.openplanner.team/stops/X779abb"], ["https://tec.openplanner.team/stops/Ladabot2", "https://tec.openplanner.team/stops/Ladstat1"], ["https://tec.openplanner.team/stops/N540aea", "https://tec.openplanner.team/stops/N540afa"], ["https://tec.openplanner.team/stops/LRmrode1", "https://tec.openplanner.team/stops/LVu40--2"], ["https://tec.openplanner.team/stops/H2bh103a", "https://tec.openplanner.team/stops/H2mg135b"], ["https://tec.openplanner.team/stops/N507aea", "https://tec.openplanner.team/stops/N507aia"], ["https://tec.openplanner.team/stops/Ljecocc2", "https://tec.openplanner.team/stops/Ljejoli1"], ["https://tec.openplanner.team/stops/X836aba", "https://tec.openplanner.team/stops/X836abb"], ["https://tec.openplanner.team/stops/N135aqa", "https://tec.openplanner.team/stops/N135aqb"], ["https://tec.openplanner.team/stops/LAUneuv3", "https://tec.openplanner.team/stops/LRmhage7"], ["https://tec.openplanner.team/stops/Cfaauln1", "https://tec.openplanner.team/stops/Cflspir2"], ["https://tec.openplanner.team/stops/Lpeptle2", "https://tec.openplanner.team/stops/LWeec--1"], ["https://tec.openplanner.team/stops/Csdbosq1", "https://tec.openplanner.team/stops/Csdjeme2"], ["https://tec.openplanner.team/stops/Lsebico2", "https://tec.openplanner.team/stops/Lsevand1"], ["https://tec.openplanner.team/stops/Bpecsta1", "https://tec.openplanner.team/stops/Bpecvme1"], ["https://tec.openplanner.team/stops/X801coa", "https://tec.openplanner.team/stops/X801cob"], ["https://tec.openplanner.team/stops/LWAlieg2", "https://tec.openplanner.team/stops/LWAvand1"], ["https://tec.openplanner.team/stops/H1ju120c", "https://tec.openplanner.team/stops/H1ju121b"], ["https://tec.openplanner.team/stops/LlNbusc2", "https://tec.openplanner.team/stops/LlNsc651"], ["https://tec.openplanner.team/stops/X661ala", "https://tec.openplanner.team/stops/X817afb"], ["https://tec.openplanner.team/stops/N522aha", "https://tec.openplanner.team/stops/N522ahb"], ["https://tec.openplanner.team/stops/Cprlpre2", "https://tec.openplanner.team/stops/NC11arb"], ["https://tec.openplanner.team/stops/H1gc123b", "https://tec.openplanner.team/stops/H1qy136a"], ["https://tec.openplanner.team/stops/X615aaa", "https://tec.openplanner.team/stops/X615bia"], ["https://tec.openplanner.team/stops/LBLplac1", "https://tec.openplanner.team/stops/LBLplac4"], ["https://tec.openplanner.team/stops/Blhutco1", "https://tec.openplanner.team/stops/Blhutco4"], ["https://tec.openplanner.team/stops/LSBjoli1", "https://tec.openplanner.team/stops/LSBrouf3"], ["https://tec.openplanner.team/stops/X910aha", "https://tec.openplanner.team/stops/X910ahb"], ["https://tec.openplanner.team/stops/X938aba", "https://tec.openplanner.team/stops/X938abb"], ["https://tec.openplanner.team/stops/LrOgara2", "https://tec.openplanner.team/stops/LrOgara3"], ["https://tec.openplanner.team/stops/Lflcle-2", "https://tec.openplanner.team/stops/Lflpaeu1"], ["https://tec.openplanner.team/stops/LmDgeme1", "https://tec.openplanner.team/stops/LmYkreu2"], ["https://tec.openplanner.team/stops/LhSgete2", "https://tec.openplanner.team/stops/LhSkirc2"], ["https://tec.openplanner.team/stops/LSGcarr2", "https://tec.openplanner.team/stops/LSGeg--4"], ["https://tec.openplanner.team/stops/Lvcfogu1", "https://tec.openplanner.team/stops/Lvcpost1"], ["https://tec.openplanner.team/stops/Barqpla1", "https://tec.openplanner.team/stops/Bfelagb1"], ["https://tec.openplanner.team/stops/H4an106b", "https://tec.openplanner.team/stops/H4an107b"], ["https://tec.openplanner.team/stops/X663aga", "https://tec.openplanner.team/stops/X663aha"], ["https://tec.openplanner.team/stops/LaR1G--1", "https://tec.openplanner.team/stops/LbHzent1"], ["https://tec.openplanner.team/stops/X756aha", "https://tec.openplanner.team/stops/X756ahb"], ["https://tec.openplanner.team/stops/Blemhon2", "https://tec.openplanner.team/stops/Blemmar2"], ["https://tec.openplanner.team/stops/X671abb", "https://tec.openplanner.team/stops/X671adb"], ["https://tec.openplanner.team/stops/LSChane1", "https://tec.openplanner.team/stops/LSChane2"], ["https://tec.openplanner.team/stops/N232boa", "https://tec.openplanner.team/stops/N232bob"], ["https://tec.openplanner.team/stops/N515aeb", "https://tec.openplanner.team/stops/N517aab"], ["https://tec.openplanner.team/stops/LOLvill1", "https://tec.openplanner.team/stops/LOLvill4"], ["https://tec.openplanner.team/stops/X636apb", "https://tec.openplanner.team/stops/X636aqd"], ["https://tec.openplanner.team/stops/Lemcort2", "https://tec.openplanner.team/stops/Lemeg--1"], ["https://tec.openplanner.team/stops/Bbch4br1", "https://tec.openplanner.team/stops/Bbch4br4"], ["https://tec.openplanner.team/stops/LaHzoll*", "https://tec.openplanner.team/stops/LmNlieb1"], ["https://tec.openplanner.team/stops/N501iob", "https://tec.openplanner.team/stops/N501isb"], ["https://tec.openplanner.team/stops/Cfamonu1", "https://tec.openplanner.team/stops/Cfamonu2"], ["https://tec.openplanner.team/stops/LAMjaur1", "https://tec.openplanner.team/stops/LAMjaur2"], ["https://tec.openplanner.team/stops/Bglibui1", "https://tec.openplanner.team/stops/Bjodpce2"], ["https://tec.openplanner.team/stops/Brebeau1", "https://tec.openplanner.team/stops/Brebmtg2"], ["https://tec.openplanner.team/stops/H1je215a", "https://tec.openplanner.team/stops/H1je217a"], ["https://tec.openplanner.team/stops/H1he109b", "https://tec.openplanner.team/stops/H1qv112b"], ["https://tec.openplanner.team/stops/LBdcarr1", "https://tec.openplanner.team/stops/LSMec--2"], ["https://tec.openplanner.team/stops/Blineco2", "https://tec.openplanner.team/stops/Blingar3"], ["https://tec.openplanner.team/stops/Bquebre1", "https://tec.openplanner.team/stops/Bquebth3"], ["https://tec.openplanner.team/stops/LBaeg--1", "https://tec.openplanner.team/stops/LBafagn2"], ["https://tec.openplanner.team/stops/H1ht128a", "https://tec.openplanner.team/stops/H1vt195b"], ["https://tec.openplanner.team/stops/H1fv102a", "https://tec.openplanner.team/stops/H1sa112a"], ["https://tec.openplanner.team/stops/X390apa", "https://tec.openplanner.team/stops/X390apb"], ["https://tec.openplanner.team/stops/Crcpcom1", "https://tec.openplanner.team/stops/Crcpcom2"], ["https://tec.openplanner.team/stops/Lagjard1", "https://tec.openplanner.team/stops/Lagjard2"], ["https://tec.openplanner.team/stops/Crclorc1", "https://tec.openplanner.team/stops/Crclorc2"], ["https://tec.openplanner.team/stops/Cmldeto1", "https://tec.openplanner.team/stops/Cmlpbay2"], ["https://tec.openplanner.team/stops/H1sd344a", "https://tec.openplanner.team/stops/H1sd347a"], ["https://tec.openplanner.team/stops/N134aaa", "https://tec.openplanner.team/stops/N134abb"], ["https://tec.openplanner.team/stops/N512axa", "https://tec.openplanner.team/stops/N512axb"], ["https://tec.openplanner.team/stops/LOTsav-1", "https://tec.openplanner.team/stops/LRUhama1"], ["https://tec.openplanner.team/stops/X762adb", "https://tec.openplanner.team/stops/X764aaa"], ["https://tec.openplanner.team/stops/X664aaa", "https://tec.openplanner.team/stops/X667aba"], ["https://tec.openplanner.team/stops/LvAwere1", "https://tec.openplanner.team/stops/LvAwere2"], ["https://tec.openplanner.team/stops/X663ana", "https://tec.openplanner.team/stops/X663ara"], ["https://tec.openplanner.team/stops/N532aba", "https://tec.openplanner.team/stops/N532amb"], ["https://tec.openplanner.team/stops/N534ayb", "https://tec.openplanner.team/stops/N534cbh"], ["https://tec.openplanner.team/stops/X640aqb", "https://tec.openplanner.team/stops/X640aua"], ["https://tec.openplanner.team/stops/Bjodath3", "https://tec.openplanner.team/stops/Bjodint2"], ["https://tec.openplanner.team/stops/Lcemalv2", "https://tec.openplanner.team/stops/Lcepepi1"], ["https://tec.openplanner.team/stops/LSpshin2", "https://tec.openplanner.team/stops/LSpunio2"], ["https://tec.openplanner.team/stops/H4do105a", "https://tec.openplanner.team/stops/H4mo195b"], ["https://tec.openplanner.team/stops/Csecarr1", "https://tec.openplanner.team/stops/N424aba"], ["https://tec.openplanner.team/stops/LCscarr1", "https://tec.openplanner.team/stops/LCseg--1"], ["https://tec.openplanner.team/stops/H1ms250a", "https://tec.openplanner.team/stops/H1ms259a"], ["https://tec.openplanner.team/stops/H4rm108a", "https://tec.openplanner.team/stops/H4ta127a"], ["https://tec.openplanner.team/stops/Bgrhcro2", "https://tec.openplanner.team/stops/Bgrhhot2"], ["https://tec.openplanner.team/stops/Lprmoin2", "https://tec.openplanner.team/stops/Lprorph2"], ["https://tec.openplanner.team/stops/H4ob109a", "https://tec.openplanner.team/stops/H4ob124a"], ["https://tec.openplanner.team/stops/H1mh112a", "https://tec.openplanner.team/stops/H1mh116a"], ["https://tec.openplanner.team/stops/N505agb", "https://tec.openplanner.team/stops/N505aoa"], ["https://tec.openplanner.team/stops/N534amg", "https://tec.openplanner.team/stops/N534asb"], ["https://tec.openplanner.team/stops/LATpatu1", "https://tec.openplanner.team/stops/LATpatu2"], ["https://tec.openplanner.team/stops/Bperalv1", "https://tec.openplanner.team/stops/Btlbegl4"], ["https://tec.openplanner.team/stops/LeMdorf1", "https://tec.openplanner.team/stops/LeMnr11"], ["https://tec.openplanner.team/stops/LESfoot2", "https://tec.openplanner.team/stops/LESmont2"], ["https://tec.openplanner.team/stops/Cthathe4", "https://tec.openplanner.team/stops/Cthgend1"], ["https://tec.openplanner.team/stops/LOdcris1", "https://tec.openplanner.team/stops/LOdmonu2"], ["https://tec.openplanner.team/stops/N155aaa", "https://tec.openplanner.team/stops/N155agb"], ["https://tec.openplanner.team/stops/LBPxhav2", "https://tec.openplanner.team/stops/LSLhale1"], ["https://tec.openplanner.team/stops/X730aaa", "https://tec.openplanner.team/stops/X730aba"], ["https://tec.openplanner.team/stops/LRObruy4", "https://tec.openplanner.team/stops/LROcham1"], ["https://tec.openplanner.team/stops/H1mr126a", "https://tec.openplanner.team/stops/H1mr126b"], ["https://tec.openplanner.team/stops/X943ada", "https://tec.openplanner.team/stops/X943adb"], ["https://tec.openplanner.team/stops/X630aab", "https://tec.openplanner.team/stops/X638ajb"], ["https://tec.openplanner.team/stops/H3so184a", "https://tec.openplanner.team/stops/H3so185b"], ["https://tec.openplanner.team/stops/LBEairp2", "https://tec.openplanner.team/stops/LBEhaye1"], ["https://tec.openplanner.team/stops/X724agb", "https://tec.openplanner.team/stops/X724ahb"], ["https://tec.openplanner.team/stops/Lrocort1", "https://tec.openplanner.team/stops/Lronamo1"], ["https://tec.openplanner.team/stops/Bllnhoc2", "https://tec.openplanner.team/stops/Bwavtas1"], ["https://tec.openplanner.team/stops/N311aba", "https://tec.openplanner.team/stops/N311afa"], ["https://tec.openplanner.team/stops/LCF2spa2", "https://tec.openplanner.team/stops/LCFmoul2"], ["https://tec.openplanner.team/stops/Cgyhaie1", "https://tec.openplanner.team/stops/Cgyralb1"], ["https://tec.openplanner.team/stops/N539afb", "https://tec.openplanner.team/stops/N539afd"], ["https://tec.openplanner.team/stops/H4ft133a", "https://tec.openplanner.team/stops/H4ft135b"], ["https://tec.openplanner.team/stops/NL74adb", "https://tec.openplanner.team/stops/NL74afb"], ["https://tec.openplanner.team/stops/X774agb", "https://tec.openplanner.team/stops/X775aga"], ["https://tec.openplanner.team/stops/LBPrueg2", "https://tec.openplanner.team/stops/LSLvaux1"], ["https://tec.openplanner.team/stops/Bmouegl2", "https://tec.openplanner.team/stops/Bottegl1"], ["https://tec.openplanner.team/stops/X624aeb", "https://tec.openplanner.team/stops/X624alb"], ["https://tec.openplanner.team/stops/LLebrux1", "https://tec.openplanner.team/stops/LLefali1"], ["https://tec.openplanner.team/stops/H1wa132b", "https://tec.openplanner.team/stops/H1wa151a"], ["https://tec.openplanner.team/stops/H1sb149a", "https://tec.openplanner.team/stops/H1sb149b"], ["https://tec.openplanner.team/stops/Cjxpris1", "https://tec.openplanner.team/stops/Cnachcu1"], ["https://tec.openplanner.team/stops/Cchvhau1", "https://tec.openplanner.team/stops/Cchvhau2"], ["https://tec.openplanner.team/stops/Cwgplac1", "https://tec.openplanner.team/stops/Cwgrabi1"], ["https://tec.openplanner.team/stops/N501fya", "https://tec.openplanner.team/stops/N501fyc"], ["https://tec.openplanner.team/stops/LCLacbi2", "https://tec.openplanner.team/stops/LCLstat2"], ["https://tec.openplanner.team/stops/N539afc", "https://tec.openplanner.team/stops/N540aga"], ["https://tec.openplanner.team/stops/N584bnb", "https://tec.openplanner.team/stops/N584cbb"], ["https://tec.openplanner.team/stops/Laleg--2", "https://tec.openplanner.team/stops/Lancoop2"], ["https://tec.openplanner.team/stops/LCPcomb1", "https://tec.openplanner.team/stops/LCPconf1"], ["https://tec.openplanner.team/stops/H1at109b", "https://tec.openplanner.team/stops/H1do119b"], ["https://tec.openplanner.team/stops/H4er121b", "https://tec.openplanner.team/stops/H4oq223a"], ["https://tec.openplanner.team/stops/X765acb", "https://tec.openplanner.team/stops/X765afa"], ["https://tec.openplanner.team/stops/H4to139a", "https://tec.openplanner.team/stops/H4to139c"], ["https://tec.openplanner.team/stops/X754asb", "https://tec.openplanner.team/stops/X779afb"], ["https://tec.openplanner.team/stops/Bjodeco3", "https://tec.openplanner.team/stops/Bjodsje2"], ["https://tec.openplanner.team/stops/N538aua", "https://tec.openplanner.team/stops/N538bbb"], ["https://tec.openplanner.team/stops/LCPhall1", "https://tec.openplanner.team/stops/LMvgare2"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LSJeg--1"], ["https://tec.openplanner.team/stops/N519ajb", "https://tec.openplanner.team/stops/N525aga"], ["https://tec.openplanner.team/stops/LFTec--2", "https://tec.openplanner.team/stops/LSygerm1"], ["https://tec.openplanner.team/stops/LDLbois1", "https://tec.openplanner.team/stops/LDLbois2"], ["https://tec.openplanner.team/stops/LPRfour2", "https://tec.openplanner.team/stops/LSHmais2"], ["https://tec.openplanner.team/stops/Lmlhaut2", "https://tec.openplanner.team/stops/Lmlmaqu1"], ["https://tec.openplanner.team/stops/X633akb", "https://tec.openplanner.team/stops/X634aab"], ["https://tec.openplanner.team/stops/N308asa", "https://tec.openplanner.team/stops/N308asb"], ["https://tec.openplanner.team/stops/H1eo108a", "https://tec.openplanner.team/stops/H1mj128b"], ["https://tec.openplanner.team/stops/H4ty341a", "https://tec.openplanner.team/stops/H4ty356a"], ["https://tec.openplanner.team/stops/LHehacc1", "https://tec.openplanner.team/stops/LOUbleu1"], ["https://tec.openplanner.team/stops/X773acb", "https://tec.openplanner.team/stops/X773adb"], ["https://tec.openplanner.team/stops/X615aua", "https://tec.openplanner.team/stops/X615ava"], ["https://tec.openplanner.team/stops/H1ch102b", "https://tec.openplanner.team/stops/H5ma181a"], ["https://tec.openplanner.team/stops/X912abb", "https://tec.openplanner.team/stops/X912adb"], ["https://tec.openplanner.team/stops/X768aaa", "https://tec.openplanner.team/stops/X768aab"], ["https://tec.openplanner.team/stops/X725aga", "https://tec.openplanner.team/stops/X725aib"], ["https://tec.openplanner.team/stops/Lsephar1", "https://tec.openplanner.team/stops/Lsepuit1"], ["https://tec.openplanner.team/stops/X908aoa", "https://tec.openplanner.team/stops/X908aob"], ["https://tec.openplanner.team/stops/N501eab", "https://tec.openplanner.team/stops/N501epd"], ["https://tec.openplanner.team/stops/N132aaa", "https://tec.openplanner.team/stops/N135aab"], ["https://tec.openplanner.team/stops/LAWcite6", "https://tec.openplanner.team/stops/LAWdefu3"], ["https://tec.openplanner.team/stops/N524akb", "https://tec.openplanner.team/stops/N524ama"], ["https://tec.openplanner.team/stops/X901bba", "https://tec.openplanner.team/stops/X922abb"], ["https://tec.openplanner.team/stops/H4og206a", "https://tec.openplanner.team/stops/H4og212a"], ["https://tec.openplanner.team/stops/N517aaa", "https://tec.openplanner.team/stops/N517aca"], ["https://tec.openplanner.team/stops/Cci28ju1", "https://tec.openplanner.team/stops/Cciethi1"], ["https://tec.openplanner.team/stops/H4es112b", "https://tec.openplanner.team/stops/H4es113a"], ["https://tec.openplanner.team/stops/H4fr146a", "https://tec.openplanner.team/stops/H4fr390a"], ["https://tec.openplanner.team/stops/N353afc", "https://tec.openplanner.team/stops/N353afd"], ["https://tec.openplanner.team/stops/Lseespe2", "https://tec.openplanner.team/stops/Lsetroq1"], ["https://tec.openplanner.team/stops/X922aba", "https://tec.openplanner.team/stops/X922acb"], ["https://tec.openplanner.team/stops/H1mb135b", "https://tec.openplanner.team/stops/H1mb166a"], ["https://tec.openplanner.team/stops/LAMvert1", "https://tec.openplanner.team/stops/LOmvill3"], ["https://tec.openplanner.team/stops/H4co106a", "https://tec.openplanner.team/stops/H4co134a"], ["https://tec.openplanner.team/stops/X806aia", "https://tec.openplanner.team/stops/X808aka"], ["https://tec.openplanner.team/stops/Lreclou1", "https://tec.openplanner.team/stops/Lreec--2"], ["https://tec.openplanner.team/stops/X342ada", "https://tec.openplanner.team/stops/X342afa"], ["https://tec.openplanner.team/stops/X788aaa", "https://tec.openplanner.team/stops/X789aia"], ["https://tec.openplanner.team/stops/Blmlcle1", "https://tec.openplanner.team/stops/Blmldmi2"], ["https://tec.openplanner.team/stops/Ladjaur1", "https://tec.openplanner.team/stops/Ladjaur2"], ["https://tec.openplanner.team/stops/Ccpetan2", "https://tec.openplanner.team/stops/Cptrebe2"], ["https://tec.openplanner.team/stops/Loucorn1", "https://tec.openplanner.team/stops/Lousimo2"], ["https://tec.openplanner.team/stops/X670ala", "https://tec.openplanner.team/stops/X670amb"], ["https://tec.openplanner.team/stops/N532aga", "https://tec.openplanner.team/stops/N532ajb"], ["https://tec.openplanner.team/stops/Clvchar2", "https://tec.openplanner.team/stops/Clvlove1"], ["https://tec.openplanner.team/stops/Bplnbal1", "https://tec.openplanner.team/stops/Bplnbal2"], ["https://tec.openplanner.team/stops/H1an103b", "https://tec.openplanner.team/stops/H1bx104b"], ["https://tec.openplanner.team/stops/H4ha168b", "https://tec.openplanner.team/stops/H4ha171b"], ["https://tec.openplanner.team/stops/X850afb", "https://tec.openplanner.team/stops/X850aja"], ["https://tec.openplanner.team/stops/Lmitech2", "https://tec.openplanner.team/stops/Lvtcime2"], ["https://tec.openplanner.team/stops/H5is168b", "https://tec.openplanner.team/stops/H5is174b"], ["https://tec.openplanner.team/stops/H1ms264a", "https://tec.openplanner.team/stops/H1ms264b"], ["https://tec.openplanner.team/stops/N544aea", "https://tec.openplanner.team/stops/N544aeb"], ["https://tec.openplanner.team/stops/H4bi156b", "https://tec.openplanner.team/stops/H4ne136b"], ["https://tec.openplanner.team/stops/Bgdhbvu2", "https://tec.openplanner.team/stops/Bgdhdet1"], ["https://tec.openplanner.team/stops/N565aaa", "https://tec.openplanner.team/stops/N565aab"], ["https://tec.openplanner.team/stops/N204ala", "https://tec.openplanner.team/stops/N204alb"], ["https://tec.openplanner.team/stops/X748abb", "https://tec.openplanner.team/stops/X748adb"], ["https://tec.openplanner.team/stops/NB33aka", "https://tec.openplanner.team/stops/NB33akb"], ["https://tec.openplanner.team/stops/N521ala", "https://tec.openplanner.team/stops/N527aaa"], ["https://tec.openplanner.team/stops/Bmlnbpr1", "https://tec.openplanner.team/stops/Bmlnbpr2"], ["https://tec.openplanner.team/stops/LBBlaga2", "https://tec.openplanner.team/stops/X222ala"], ["https://tec.openplanner.team/stops/LMYmont1", "https://tec.openplanner.team/stops/X796agb"], ["https://tec.openplanner.team/stops/X637aca", "https://tec.openplanner.team/stops/X637ala"], ["https://tec.openplanner.team/stops/Cgdcent2", "https://tec.openplanner.team/stops/Cgdrhau2"], ["https://tec.openplanner.team/stops/N501hkb", "https://tec.openplanner.team/stops/N501lra"], ["https://tec.openplanner.team/stops/H4co108b", "https://tec.openplanner.team/stops/H4co146a"], ["https://tec.openplanner.team/stops/H1ba109a", "https://tec.openplanner.team/stops/H1ba109b"], ["https://tec.openplanner.team/stops/LODarbr1", "https://tec.openplanner.team/stops/LODvill1"], ["https://tec.openplanner.team/stops/Cchba1", "https://tec.openplanner.team/stops/CMba1"], ["https://tec.openplanner.team/stops/H4wp150b", "https://tec.openplanner.team/stops/H4wp152b"], ["https://tec.openplanner.team/stops/H4am100a", "https://tec.openplanner.team/stops/H4an107a"], ["https://tec.openplanner.team/stops/Llxec--1", "https://tec.openplanner.team/stops/Lrafusi2"], ["https://tec.openplanner.team/stops/Lsnecco1", "https://tec.openplanner.team/stops/Lsnlibe1"], ["https://tec.openplanner.team/stops/LBQmaye2", "https://tec.openplanner.team/stops/LSlbail2"], ["https://tec.openplanner.team/stops/LgAnr491", "https://tec.openplanner.team/stops/LgAnr492"], ["https://tec.openplanner.team/stops/H4ha167b", "https://tec.openplanner.team/stops/H4ha168a"], ["https://tec.openplanner.team/stops/X641aua", "https://tec.openplanner.team/stops/X641avb"], ["https://tec.openplanner.team/stops/Bohnbra1", "https://tec.openplanner.team/stops/Bohnrpl1"], ["https://tec.openplanner.team/stops/N549ada", "https://tec.openplanner.team/stops/N578aaa"], ["https://tec.openplanner.team/stops/NL77ada", "https://tec.openplanner.team/stops/NL78ajb"], ["https://tec.openplanner.team/stops/Cmomoul3", "https://tec.openplanner.team/stops/Cmopn4"], ["https://tec.openplanner.team/stops/X982bfb", "https://tec.openplanner.team/stops/X982bua"], ["https://tec.openplanner.team/stops/Cjucouc2", "https://tec.openplanner.team/stops/Cjuvand2"], ["https://tec.openplanner.team/stops/N308ada", "https://tec.openplanner.team/stops/N311agb"], ["https://tec.openplanner.team/stops/N534aqa", "https://tec.openplanner.team/stops/N534asb"], ["https://tec.openplanner.team/stops/Cmmami1", "https://tec.openplanner.team/stops/Cmmbmad2"], ["https://tec.openplanner.team/stops/Bchgflo1", "https://tec.openplanner.team/stops/Bchgflo2"], ["https://tec.openplanner.team/stops/LNEgaul2", "https://tec.openplanner.team/stops/LNEvand2"], ["https://tec.openplanner.team/stops/Bgrhhot2", "https://tec.openplanner.team/stops/N518abb"], ["https://tec.openplanner.team/stops/Llgcime1", "https://tec.openplanner.team/stops/Llggerm1"], ["https://tec.openplanner.team/stops/LHNcoll1", "https://tec.openplanner.team/stops/LHNhall2"], ["https://tec.openplanner.team/stops/X907ajb", "https://tec.openplanner.team/stops/X908asb"], ["https://tec.openplanner.team/stops/N217ada", "https://tec.openplanner.team/stops/N217adb"], ["https://tec.openplanner.team/stops/H1pa106c", "https://tec.openplanner.team/stops/H1pa120b"], ["https://tec.openplanner.team/stops/Llgbene1", "https://tec.openplanner.team/stops/Llgcour3"], ["https://tec.openplanner.team/stops/Lcapisc2", "https://tec.openplanner.team/stops/Lrosaun1"], ["https://tec.openplanner.team/stops/LHCbran2", "https://tec.openplanner.team/stops/LWEwilc1"], ["https://tec.openplanner.team/stops/Bdoncar1", "https://tec.openplanner.team/stops/Bgliopp1"], ["https://tec.openplanner.team/stops/X826ada", "https://tec.openplanner.team/stops/X826adb"], ["https://tec.openplanner.team/stops/X637ala", "https://tec.openplanner.team/stops/X637alb"], ["https://tec.openplanner.team/stops/LJvmart1", "https://tec.openplanner.team/stops/X576ada"], ["https://tec.openplanner.team/stops/LSOdow%C3%A91", "https://tec.openplanner.team/stops/LSOdow%C3%A92"], ["https://tec.openplanner.team/stops/H1sb145a", "https://tec.openplanner.team/stops/H1sb151b"], ["https://tec.openplanner.team/stops/Llghaye2", "https://tec.openplanner.team/stops/Llglamb1"], ["https://tec.openplanner.team/stops/Cbmclar2", "https://tec.openplanner.team/stops/Cbmgare1"], ["https://tec.openplanner.team/stops/LbOkalv1", "https://tec.openplanner.team/stops/LbOvith1"], ["https://tec.openplanner.team/stops/Ljudeme1", "https://tec.openplanner.team/stops/Ljudeme2"], ["https://tec.openplanner.team/stops/Ljeblum2", "https://tec.openplanner.team/stops/Ljeheur2"], ["https://tec.openplanner.team/stops/N501dsb", "https://tec.openplanner.team/stops/N501jta"], ["https://tec.openplanner.team/stops/NH01aoa", "https://tec.openplanner.team/stops/NH01apb"], ["https://tec.openplanner.team/stops/N505aca", "https://tec.openplanner.team/stops/N505aoa"], ["https://tec.openplanner.team/stops/LRmrode2", "https://tec.openplanner.team/stops/LRmsmvo2"], ["https://tec.openplanner.team/stops/Lflmaxi2", "https://tec.openplanner.team/stops/Lflmaxi4"], ["https://tec.openplanner.team/stops/H1et100a", "https://tec.openplanner.team/stops/H1et100b"], ["https://tec.openplanner.team/stops/LVbeg--1", "https://tec.openplanner.team/stops/LVbsurr1"], ["https://tec.openplanner.team/stops/N501hxa", "https://tec.openplanner.team/stops/N501icb"], ["https://tec.openplanner.team/stops/Lgrlimi4", "https://tec.openplanner.team/stops/Llgmulh2"], ["https://tec.openplanner.team/stops/Canboha2", "https://tec.openplanner.team/stops/Canh1942"], ["https://tec.openplanner.team/stops/Ljeblum1", "https://tec.openplanner.team/stops/Ljeblum2"], ["https://tec.openplanner.team/stops/Clbptno3", "https://tec.openplanner.team/stops/Cthpano1"], ["https://tec.openplanner.team/stops/LmIvale1", "https://tec.openplanner.team/stops/LmIvale2"], ["https://tec.openplanner.team/stops/LBTwauc2", "https://tec.openplanner.team/stops/LLMeg--2"], ["https://tec.openplanner.team/stops/N106aia", "https://tec.openplanner.team/stops/N106ajb"], ["https://tec.openplanner.team/stops/X396aeb", "https://tec.openplanner.team/stops/X397aab"], ["https://tec.openplanner.team/stops/N509acb", "https://tec.openplanner.team/stops/N509acc"], ["https://tec.openplanner.team/stops/N540aia", "https://tec.openplanner.team/stops/N540ama"], ["https://tec.openplanner.team/stops/Cdapige1", "https://tec.openplanner.team/stops/CMpige1"], ["https://tec.openplanner.team/stops/N537agb", "https://tec.openplanner.team/stops/N537aha"], ["https://tec.openplanner.team/stops/Cflcarr2", "https://tec.openplanner.team/stops/Cflcent1"], ["https://tec.openplanner.team/stops/Csyjumo2", "https://tec.openplanner.team/stops/Csysans1"], ["https://tec.openplanner.team/stops/Ccstord2", "https://tec.openplanner.team/stops/Chhegli2"], ["https://tec.openplanner.team/stops/X646aab", "https://tec.openplanner.team/stops/X646aca"], ["https://tec.openplanner.team/stops/LSteg--1", "https://tec.openplanner.team/stops/LStroch2"], ["https://tec.openplanner.team/stops/X717aba", "https://tec.openplanner.team/stops/X782aab"], ["https://tec.openplanner.team/stops/Bmarchn1", "https://tec.openplanner.team/stops/Bmarchn2"], ["https://tec.openplanner.team/stops/H4la197a", "https://tec.openplanner.team/stops/H4ma203b"], ["https://tec.openplanner.team/stops/LWblesp1", "https://tec.openplanner.team/stops/X512ajb"], ["https://tec.openplanner.team/stops/Bcbqcha1", "https://tec.openplanner.team/stops/Bcbqcim2"], ["https://tec.openplanner.team/stops/N331aha", "https://tec.openplanner.team/stops/N331akb"], ["https://tec.openplanner.team/stops/H4fl114a", "https://tec.openplanner.team/stops/H4fl179a"], ["https://tec.openplanner.team/stops/NL76adb", "https://tec.openplanner.team/stops/NL76aea"], ["https://tec.openplanner.team/stops/LbTaral1", "https://tec.openplanner.team/stops/LsHfrie2"], ["https://tec.openplanner.team/stops/Chhbiet1", "https://tec.openplanner.team/stops/Chhdubr2"], ["https://tec.openplanner.team/stops/LVBcarr1", "https://tec.openplanner.team/stops/LVBrmon1"], ["https://tec.openplanner.team/stops/Cbcegli3", "https://tec.openplanner.team/stops/Cbckios2"], ["https://tec.openplanner.team/stops/N212ahb", "https://tec.openplanner.team/stops/N212ajb"], ["https://tec.openplanner.team/stops/Bmanati1", "https://tec.openplanner.team/stops/H2mg144b"], ["https://tec.openplanner.team/stops/Cjualtr1", "https://tec.openplanner.team/stops/Cjudevo1"], ["https://tec.openplanner.team/stops/H1bl100a", "https://tec.openplanner.team/stops/H1bl106a"], ["https://tec.openplanner.team/stops/LAxbott2", "https://tec.openplanner.team/stops/LFsec--2"], ["https://tec.openplanner.team/stops/N501irb", "https://tec.openplanner.team/stops/N501iwa"], ["https://tec.openplanner.team/stops/H4hq134a", "https://tec.openplanner.team/stops/H4hq134b"], ["https://tec.openplanner.team/stops/LBivill1", "https://tec.openplanner.team/stops/LDOprev2"], ["https://tec.openplanner.team/stops/N232aqa", "https://tec.openplanner.team/stops/N232aza"], ["https://tec.openplanner.team/stops/Bitrbvo1", "https://tec.openplanner.team/stops/Bosqsam2"], ["https://tec.openplanner.team/stops/Bcbqcht1", "https://tec.openplanner.team/stops/Bcbqpon2"], ["https://tec.openplanner.team/stops/X663aeb", "https://tec.openplanner.team/stops/X663afb"], ["https://tec.openplanner.team/stops/H4th139a", "https://tec.openplanner.team/stops/H4th139b"], ["https://tec.openplanner.team/stops/LmNha152", "https://tec.openplanner.team/stops/LmNkrew2"], ["https://tec.openplanner.team/stops/LmDdenk1", "https://tec.openplanner.team/stops/LmDkirc1"], ["https://tec.openplanner.team/stops/N547amb", "https://tec.openplanner.team/stops/N547anb"], ["https://tec.openplanner.team/stops/N533aga", "https://tec.openplanner.team/stops/N533aha"], ["https://tec.openplanner.team/stops/LPLhest2", "https://tec.openplanner.team/stops/LRRcole1"], ["https://tec.openplanner.team/stops/X634aga", "https://tec.openplanner.team/stops/X634agb"], ["https://tec.openplanner.team/stops/LWAeloi1", "https://tec.openplanner.team/stops/LWAlpre1"], ["https://tec.openplanner.team/stops/Bnivbos2", "https://tec.openplanner.team/stops/Bnivsci1"], ["https://tec.openplanner.team/stops/H4fo117b", "https://tec.openplanner.team/stops/H4fo117c"], ["https://tec.openplanner.team/stops/LTaabba2", "https://tec.openplanner.team/stops/LVnvieg1"], ["https://tec.openplanner.team/stops/Lmodeni2", "https://tec.openplanner.team/stops/Lmoknae2"], ["https://tec.openplanner.team/stops/LmYamel2", "https://tec.openplanner.team/stops/LwL100-2"], ["https://tec.openplanner.team/stops/H1el134a", "https://tec.openplanner.team/stops/H1el140b"], ["https://tec.openplanner.team/stops/LLApavi2", "https://tec.openplanner.team/stops/Llxcite2"], ["https://tec.openplanner.team/stops/LhSfrei1", "https://tec.openplanner.team/stops/LhSfrei2"], ["https://tec.openplanner.team/stops/Csasncb1", "https://tec.openplanner.team/stops/Csasncb2"], ["https://tec.openplanner.team/stops/LHUfont1", "https://tec.openplanner.team/stops/LSteg--2"], ["https://tec.openplanner.team/stops/LAUbour2", "https://tec.openplanner.team/stops/LAUvict4"], ["https://tec.openplanner.team/stops/N539aba", "https://tec.openplanner.team/stops/N539aga"], ["https://tec.openplanner.team/stops/N534apg", "https://tec.openplanner.team/stops/N543agb"], ["https://tec.openplanner.team/stops/Bsteegl1", "https://tec.openplanner.team/stops/Bstesar1"], ["https://tec.openplanner.team/stops/Bbchdev1", "https://tec.openplanner.team/stops/Bbchndb2"], ["https://tec.openplanner.team/stops/NL74ahc", "https://tec.openplanner.team/stops/NL74ahd"], ["https://tec.openplanner.team/stops/Bjodced1", "https://tec.openplanner.team/stops/Bjodced2"], ["https://tec.openplanner.team/stops/X775aca", "https://tec.openplanner.team/stops/X775aea"], ["https://tec.openplanner.team/stops/Lgrlimi2", "https://tec.openplanner.team/stops/Lgrlimi3"], ["https://tec.openplanner.team/stops/LFFpier1", "https://tec.openplanner.team/stops/LFFpier2"], ["https://tec.openplanner.team/stops/X720ada", "https://tec.openplanner.team/stops/X721arb"], ["https://tec.openplanner.team/stops/N521abb", "https://tec.openplanner.team/stops/N521ada"], ["https://tec.openplanner.team/stops/N244aub", "https://tec.openplanner.team/stops/N244ava"], ["https://tec.openplanner.team/stops/X715afb", "https://tec.openplanner.team/stops/X715aga"], ["https://tec.openplanner.team/stops/Cthalou2", "https://tec.openplanner.team/stops/Cthenmi1"], ["https://tec.openplanner.team/stops/Lccaigr1", "https://tec.openplanner.team/stops/Lccuner2"], ["https://tec.openplanner.team/stops/N542aga", "https://tec.openplanner.team/stops/N542aka"], ["https://tec.openplanner.team/stops/LrcarsT2", "https://tec.openplanner.team/stops/Lrchero1"], ["https://tec.openplanner.team/stops/H4ka392a", "https://tec.openplanner.team/stops/H4ob108b"], ["https://tec.openplanner.team/stops/Cbfcham3", "https://tec.openplanner.team/stops/Cbfcham4"], ["https://tec.openplanner.team/stops/H1so131e", "https://tec.openplanner.team/stops/H1so142b"], ["https://tec.openplanner.team/stops/LFR201-1", "https://tec.openplanner.team/stops/LFRbaro2"], ["https://tec.openplanner.team/stops/LMIeg--2", "https://tec.openplanner.team/stops/LSOdow%C3%A92"], ["https://tec.openplanner.team/stops/X754apa", "https://tec.openplanner.team/stops/X754avb"], ["https://tec.openplanner.team/stops/LStroch1", "https://tec.openplanner.team/stops/LWNwavr2"], ["https://tec.openplanner.team/stops/N988aca", "https://tec.openplanner.team/stops/X874apa"], ["https://tec.openplanner.team/stops/H1mk107b", "https://tec.openplanner.team/stops/H1mk123a"], ["https://tec.openplanner.team/stops/LSMeg--1", "https://tec.openplanner.team/stops/LSMpoin1"], ["https://tec.openplanner.team/stops/X818anb", "https://tec.openplanner.team/stops/X820ama"], ["https://tec.openplanner.team/stops/Bthscbl2", "https://tec.openplanner.team/stops/NL37aka"], ["https://tec.openplanner.team/stops/NL68abb", "https://tec.openplanner.team/stops/NL68afa"], ["https://tec.openplanner.team/stops/Lenauln1", "https://tec.openplanner.team/stops/Lvehauz3"], ["https://tec.openplanner.team/stops/Bzluqga1", "https://tec.openplanner.team/stops/Bzluvil2"], ["https://tec.openplanner.team/stops/X601afb", "https://tec.openplanner.team/stops/X662aqa"], ["https://tec.openplanner.team/stops/H5rx115a", "https://tec.openplanner.team/stops/H5rx149a"], ["https://tec.openplanner.team/stops/X601bfa", "https://tec.openplanner.team/stops/X601bgb"], ["https://tec.openplanner.team/stops/Cobhaut1", "https://tec.openplanner.team/stops/Cobnive1"], ["https://tec.openplanner.team/stops/Llggosw1", "https://tec.openplanner.team/stops/Llgmare6"], ["https://tec.openplanner.team/stops/X609adb", "https://tec.openplanner.team/stops/X609afa"], ["https://tec.openplanner.team/stops/N514acb", "https://tec.openplanner.team/stops/N516aob"], ["https://tec.openplanner.team/stops/Ccyga1", "https://tec.openplanner.team/stops/Ccyga4"], ["https://tec.openplanner.team/stops/X747aab", "https://tec.openplanner.team/stops/X747abb"], ["https://tec.openplanner.team/stops/Cfcgar1", "https://tec.openplanner.team/stops/Cfcgrat2"], ["https://tec.openplanner.team/stops/LFOchab1", "https://tec.openplanner.team/stops/LVlfooz3"], ["https://tec.openplanner.team/stops/LlNbruc2", "https://tec.openplanner.team/stops/LlNlimb2"], ["https://tec.openplanner.team/stops/Llgamer1", "https://tec.openplanner.team/stops/Llgdouf1"], ["https://tec.openplanner.team/stops/N387aha", "https://tec.openplanner.team/stops/N387ahb"], ["https://tec.openplanner.team/stops/LHGikea1", "https://tec.openplanner.team/stops/LHGikea2"], ["https://tec.openplanner.team/stops/X801aib", "https://tec.openplanner.team/stops/X801alb"], ["https://tec.openplanner.team/stops/N301adb", "https://tec.openplanner.team/stops/N301aib"], ["https://tec.openplanner.team/stops/H4og207a", "https://tec.openplanner.team/stops/H4vd230a"], ["https://tec.openplanner.team/stops/Cflglav2", "https://tec.openplanner.team/stops/Cflmarq2"], ["https://tec.openplanner.team/stops/Lgrfalc2", "https://tec.openplanner.team/stops/Lgrrein2"], ["https://tec.openplanner.team/stops/X790acb", "https://tec.openplanner.team/stops/X790anb"], ["https://tec.openplanner.team/stops/LBpberl1", "https://tec.openplanner.team/stops/LBpberl2"], ["https://tec.openplanner.team/stops/Cgxalli2", "https://tec.openplanner.team/stops/Cgxmaco2"], ["https://tec.openplanner.team/stops/N506abb", "https://tec.openplanner.team/stops/N512axa"], ["https://tec.openplanner.team/stops/H4gr108b", "https://tec.openplanner.team/stops/H4gr111b"], ["https://tec.openplanner.team/stops/N232bxa", "https://tec.openplanner.team/stops/N291aca"], ["https://tec.openplanner.team/stops/Clomari5", "https://tec.openplanner.team/stops/Clostan2"], ["https://tec.openplanner.team/stops/Lghjans1", "https://tec.openplanner.team/stops/Lghmeun4"], ["https://tec.openplanner.team/stops/X804boa", "https://tec.openplanner.team/stops/X804bpb"], ["https://tec.openplanner.team/stops/LTrchar1", "https://tec.openplanner.team/stops/LTrmort2"], ["https://tec.openplanner.team/stops/Cgzcver1", "https://tec.openplanner.team/stops/Cmyjaci2"], ["https://tec.openplanner.team/stops/X608aca", "https://tec.openplanner.team/stops/X608afb"], ["https://tec.openplanner.team/stops/N134afa", "https://tec.openplanner.team/stops/N134afb"], ["https://tec.openplanner.team/stops/H3so157a", "https://tec.openplanner.team/stops/H3so178b"], ["https://tec.openplanner.team/stops/LTamag1", "https://tec.openplanner.team/stops/LTaouch1"], ["https://tec.openplanner.team/stops/Cmechnd2", "https://tec.openplanner.team/stops/Cmesafi2"], ["https://tec.openplanner.team/stops/H2ep144a", "https://tec.openplanner.team/stops/H2re174b"], ["https://tec.openplanner.team/stops/LTipont1", "https://tec.openplanner.team/stops/LTipont2"], ["https://tec.openplanner.team/stops/H1pw122b", "https://tec.openplanner.team/stops/H1wg131a"], ["https://tec.openplanner.team/stops/X925aia", "https://tec.openplanner.team/stops/X996aab"], ["https://tec.openplanner.team/stops/LFAsauv1", "https://tec.openplanner.team/stops/LFAsauv2"], ["https://tec.openplanner.team/stops/Bgrmpsn1", "https://tec.openplanner.team/stops/Bgrmpsn2"], ["https://tec.openplanner.team/stops/LBichen1", "https://tec.openplanner.team/stops/LDOastr1"], ["https://tec.openplanner.team/stops/Llgandr1", "https://tec.openplanner.team/stops/Llgbruy1"], ["https://tec.openplanner.team/stops/LClange1", "https://tec.openplanner.team/stops/LFdbruy2"], ["https://tec.openplanner.team/stops/N147acb", "https://tec.openplanner.team/stops/N147ada"], ["https://tec.openplanner.team/stops/Llggram2", "https://tec.openplanner.team/stops/Llghoub2"], ["https://tec.openplanner.team/stops/Clupcfe2", "https://tec.openplanner.team/stops/Cvvcime1"], ["https://tec.openplanner.team/stops/LBPmili2", "https://tec.openplanner.team/stops/LGLbrus2"], ["https://tec.openplanner.team/stops/Clfbarr1", "https://tec.openplanner.team/stops/Clfpomm1"], ["https://tec.openplanner.team/stops/Bmarcat2", "https://tec.openplanner.team/stops/Bmargve2"], ["https://tec.openplanner.team/stops/LCPgare1", "https://tec.openplanner.team/stops/LCPscay2"], ["https://tec.openplanner.team/stops/LrUweve1", "https://tec.openplanner.team/stops/LrUweve2"], ["https://tec.openplanner.team/stops/Bbosdra1", "https://tec.openplanner.team/stops/Bbosdra2"], ["https://tec.openplanner.team/stops/X621adb", "https://tec.openplanner.team/stops/X621aeb"], ["https://tec.openplanner.team/stops/LRmkast*", "https://tec.openplanner.team/stops/LTEzinn2"], ["https://tec.openplanner.team/stops/X923ana", "https://tec.openplanner.team/stops/X923anb"], ["https://tec.openplanner.team/stops/LESchac1", "https://tec.openplanner.team/stops/LFNfo161"], ["https://tec.openplanner.team/stops/N521ara", "https://tec.openplanner.team/stops/N521arb"], ["https://tec.openplanner.team/stops/N135bea", "https://tec.openplanner.team/stops/N135beb"], ["https://tec.openplanner.team/stops/Cjudewe1", "https://tec.openplanner.team/stops/Cjudewe2"], ["https://tec.openplanner.team/stops/N532aab", "https://tec.openplanner.team/stops/N574aeb"], ["https://tec.openplanner.team/stops/X747alb", "https://tec.openplanner.team/stops/X754afb"], ["https://tec.openplanner.team/stops/H1mk109a", "https://tec.openplanner.team/stops/H1mk117a"], ["https://tec.openplanner.team/stops/LgAnr491", "https://tec.openplanner.team/stops/LsVlust2"], ["https://tec.openplanner.team/stops/Bnivhon1", "https://tec.openplanner.team/stops/Bnivpal1"], ["https://tec.openplanner.team/stops/Blthwav3", "https://tec.openplanner.team/stops/Blthwav4"], ["https://tec.openplanner.team/stops/H1ba117b", "https://tec.openplanner.team/stops/H1ba119c"], ["https://tec.openplanner.team/stops/Loucoti2", "https://tec.openplanner.team/stops/Louwuid1"], ["https://tec.openplanner.team/stops/Bgzdfpo1", "https://tec.openplanner.team/stops/Bgzdfpo2"], ["https://tec.openplanner.team/stops/H1al107a", "https://tec.openplanner.team/stops/H1bs110a"], ["https://tec.openplanner.team/stops/LHFec--1", "https://tec.openplanner.team/stops/LHFec--3"], ["https://tec.openplanner.team/stops/Brixga11", "https://tec.openplanner.team/stops/Brixpje1"], ["https://tec.openplanner.team/stops/Ccojaur1", "https://tec.openplanner.team/stops/Ccotrie3"], ["https://tec.openplanner.team/stops/X802ada", "https://tec.openplanner.team/stops/X802asb"], ["https://tec.openplanner.team/stops/Bhalkrk1", "https://tec.openplanner.team/stops/Bhalomo1"], ["https://tec.openplanner.team/stops/Cvrfema1", "https://tec.openplanner.team/stops/Cvrfema2"], ["https://tec.openplanner.team/stops/H4fr140b", "https://tec.openplanner.team/stops/H4fr143b"], ["https://tec.openplanner.team/stops/Bnivace2", "https://tec.openplanner.team/stops/Bnivfle2"], ["https://tec.openplanner.team/stops/Bovetsa2", "https://tec.openplanner.team/stops/Brsregl2"], ["https://tec.openplanner.team/stops/H1wg125b", "https://tec.openplanner.team/stops/H1wg125c"], ["https://tec.openplanner.team/stops/LEMec--1", "https://tec.openplanner.team/stops/LLAchpl1"], ["https://tec.openplanner.team/stops/X614aqa", "https://tec.openplanner.team/stops/X614aqb"], ["https://tec.openplanner.team/stops/NC44aea", "https://tec.openplanner.team/stops/NC44aga"], ["https://tec.openplanner.team/stops/H4al100b", "https://tec.openplanner.team/stops/H4ty353a"], ["https://tec.openplanner.team/stops/H2sv211a", "https://tec.openplanner.team/stops/H2sv220b"], ["https://tec.openplanner.team/stops/Llgomal1", "https://tec.openplanner.team/stops/Llgschm1"], ["https://tec.openplanner.team/stops/H2mg150b", "https://tec.openplanner.team/stops/H2se115a"], ["https://tec.openplanner.team/stops/X610aca", "https://tec.openplanner.team/stops/X610adb"], ["https://tec.openplanner.team/stops/Llgcmes1", "https://tec.openplanner.team/stops/Llgcmes2"], ["https://tec.openplanner.team/stops/N540aab", "https://tec.openplanner.team/stops/N540abb"], ["https://tec.openplanner.team/stops/LMtcent1", "https://tec.openplanner.team/stops/LMtegli1"], ["https://tec.openplanner.team/stops/X685afb", "https://tec.openplanner.team/stops/X685agb"], ["https://tec.openplanner.team/stops/LOrchau1", "https://tec.openplanner.team/stops/LORec--*"], ["https://tec.openplanner.team/stops/N103aaa", "https://tec.openplanner.team/stops/N103acc"], ["https://tec.openplanner.team/stops/H4ty265a", "https://tec.openplanner.team/stops/H4ty276a"], ["https://tec.openplanner.team/stops/H4fa125a", "https://tec.openplanner.team/stops/H4ms145a"], ["https://tec.openplanner.team/stops/Bplnbal2", "https://tec.openplanner.team/stops/Clpalli1"], ["https://tec.openplanner.team/stops/Bbcogpl1", "https://tec.openplanner.team/stops/Bbcolno2"], ["https://tec.openplanner.team/stops/Clb4dgi1", "https://tec.openplanner.team/stops/Clbchar2"], ["https://tec.openplanner.team/stops/LTRfica1", "https://tec.openplanner.team/stops/LTRgare1"], ["https://tec.openplanner.team/stops/H1sy140b", "https://tec.openplanner.team/stops/H1sy145b"], ["https://tec.openplanner.team/stops/N501mxb", "https://tec.openplanner.team/stops/N533anb"], ["https://tec.openplanner.team/stops/Cfacamp1", "https://tec.openplanner.team/stops/Cfacamp4"], ["https://tec.openplanner.team/stops/X809aab", "https://tec.openplanner.team/stops/X858afb"], ["https://tec.openplanner.team/stops/X602aaa", "https://tec.openplanner.team/stops/X602adb"], ["https://tec.openplanner.team/stops/LBdcime1", "https://tec.openplanner.team/stops/LBdcime2"], ["https://tec.openplanner.team/stops/Cjuecha2", "https://tec.openplanner.team/stops/Cragill2"], ["https://tec.openplanner.team/stops/Cctsncb3", "https://tec.openplanner.team/stops/Cctsncb4"], ["https://tec.openplanner.team/stops/H4jm116b", "https://tec.openplanner.team/stops/H4we138b"], ["https://tec.openplanner.team/stops/Cjuchli1", "https://tec.openplanner.team/stops/Cjuchli4"], ["https://tec.openplanner.team/stops/Canjon3", "https://tec.openplanner.team/stops/Canjonc2"], ["https://tec.openplanner.team/stops/LwYcafe1", "https://tec.openplanner.team/stops/LwYkirc1"], ["https://tec.openplanner.team/stops/H1ms271b", "https://tec.openplanner.team/stops/H1ms313b"], ["https://tec.openplanner.team/stops/X850aka", "https://tec.openplanner.team/stops/X872acb"], ["https://tec.openplanner.team/stops/Bottcro2", "https://tec.openplanner.team/stops/Bottgar8"], ["https://tec.openplanner.team/stops/N101ajb", "https://tec.openplanner.team/stops/N151aka"], ["https://tec.openplanner.team/stops/Lpeptra1", "https://tec.openplanner.team/stops/LWevand1"], ["https://tec.openplanner.team/stops/H4ne137a", "https://tec.openplanner.team/stops/H4ne145b"], ["https://tec.openplanner.team/stops/H4rm109a", "https://tec.openplanner.team/stops/H4rm111b"], ["https://tec.openplanner.team/stops/Cpcbrig1", "https://tec.openplanner.team/stops/Cpccpas1"], ["https://tec.openplanner.team/stops/Llgmart1", "https://tec.openplanner.team/stops/Llgmart2"], ["https://tec.openplanner.team/stops/H5st166b", "https://tec.openplanner.team/stops/H5st168a"], ["https://tec.openplanner.team/stops/H4ty340a", "https://tec.openplanner.team/stops/H4ty384a"], ["https://tec.openplanner.team/stops/Canrsta1", "https://tec.openplanner.team/stops/Canrsta2"], ["https://tec.openplanner.team/stops/LJEpaqu1", "https://tec.openplanner.team/stops/LJEpaqu2"], ["https://tec.openplanner.team/stops/H1ro137a", "https://tec.openplanner.team/stops/H1ro137b"], ["https://tec.openplanner.team/stops/H1qu101a", "https://tec.openplanner.team/stops/H1qu101b"], ["https://tec.openplanner.team/stops/Cgualno2", "https://tec.openplanner.team/stops/Cnapair2"], ["https://tec.openplanner.team/stops/LBhsign1", "https://tec.openplanner.team/stops/LBhsign2"], ["https://tec.openplanner.team/stops/LbTaral1", "https://tec.openplanner.team/stops/LbTgeme1"], ["https://tec.openplanner.team/stops/LWHkape2", "https://tec.openplanner.team/stops/LWHkerk1"], ["https://tec.openplanner.team/stops/LaMbrei1", "https://tec.openplanner.team/stops/LaMbrei2"], ["https://tec.openplanner.team/stops/Cgyblob1", "https://tec.openplanner.team/stops/Cgyplvi2"], ["https://tec.openplanner.team/stops/LBTwauc2", "https://tec.openplanner.team/stops/LThpoli2"], ["https://tec.openplanner.team/stops/X307ada", "https://tec.openplanner.team/stops/X316aca"], ["https://tec.openplanner.team/stops/N124aaa", "https://tec.openplanner.team/stops/N124aac"], ["https://tec.openplanner.team/stops/X901awa", "https://tec.openplanner.team/stops/X901aza"], ["https://tec.openplanner.team/stops/X371aca", "https://tec.openplanner.team/stops/X371adb"], ["https://tec.openplanner.team/stops/N115aaa", "https://tec.openplanner.team/stops/N115aab"], ["https://tec.openplanner.team/stops/Lhrmemo2", "https://tec.openplanner.team/stops/Lhrspi-2"], ["https://tec.openplanner.team/stops/LbAhenk2", "https://tec.openplanner.team/stops/LmNsied1"], ["https://tec.openplanner.team/stops/H1br130a", "https://tec.openplanner.team/stops/H1br131a"], ["https://tec.openplanner.team/stops/H1je212b", "https://tec.openplanner.team/stops/H1je360b"], ["https://tec.openplanner.team/stops/X595adb", "https://tec.openplanner.team/stops/X713anb"], ["https://tec.openplanner.team/stops/X986abb", "https://tec.openplanner.team/stops/X986acb"], ["https://tec.openplanner.team/stops/H1bo101a", "https://tec.openplanner.team/stops/H1bo111b"], ["https://tec.openplanner.team/stops/Beclesp1", "https://tec.openplanner.team/stops/Beclpla2"], ["https://tec.openplanner.team/stops/Lhrchar4", "https://tec.openplanner.team/stops/Llghori1"], ["https://tec.openplanner.team/stops/X804aka", "https://tec.openplanner.team/stops/X804bqa"], ["https://tec.openplanner.team/stops/LLgcent1", "https://tec.openplanner.team/stops/LRCviad1"], ["https://tec.openplanner.team/stops/N261afa", "https://tec.openplanner.team/stops/N261afb"], ["https://tec.openplanner.team/stops/NL76aba", "https://tec.openplanner.team/stops/NL76afa"], ["https://tec.openplanner.team/stops/Lgrcrac2", "https://tec.openplanner.team/stops/Lgrdeni1"], ["https://tec.openplanner.team/stops/H1ge115a", "https://tec.openplanner.team/stops/H1ge115b"], ["https://tec.openplanner.team/stops/Ladclem1", "https://tec.openplanner.team/stops/Ladpire3"], ["https://tec.openplanner.team/stops/Bfelcsa1", "https://tec.openplanner.team/stops/Bfelfde1"], ["https://tec.openplanner.team/stops/LmI129-1", "https://tec.openplanner.team/stops/LmRmuhl2"], ["https://tec.openplanner.team/stops/LHHindu2", "https://tec.openplanner.team/stops/LHHlomb2"], ["https://tec.openplanner.team/stops/Cjuplho2", "https://tec.openplanner.team/stops/Cjurevo1"], ["https://tec.openplanner.team/stops/H4ch120a", "https://tec.openplanner.team/stops/H4vx364c"], ["https://tec.openplanner.team/stops/LaAdiep2", "https://tec.openplanner.team/stops/LaAneul2"], ["https://tec.openplanner.team/stops/H4we134b", "https://tec.openplanner.team/stops/H4we135a"], ["https://tec.openplanner.team/stops/Clvmesa1", "https://tec.openplanner.team/stops/Clvmesa2"], ["https://tec.openplanner.team/stops/X801cga", "https://tec.openplanner.team/stops/X801cgb"], ["https://tec.openplanner.team/stops/H4wn128b", "https://tec.openplanner.team/stops/H4wn138b"], ["https://tec.openplanner.team/stops/H2bh103c", "https://tec.openplanner.team/stops/H2bh103d"], ["https://tec.openplanner.team/stops/LTRespe1", "https://tec.openplanner.team/stops/LTRespe2"], ["https://tec.openplanner.team/stops/N538aea", "https://tec.openplanner.team/stops/N538afb"], ["https://tec.openplanner.team/stops/Cmmcomb1", "https://tec.openplanner.team/stops/Cmymoha2"], ["https://tec.openplanner.team/stops/LEHpech1", "https://tec.openplanner.team/stops/LRAgrot2"], ["https://tec.openplanner.team/stops/H5wo129b", "https://tec.openplanner.team/stops/H5wo130a"], ["https://tec.openplanner.team/stops/H4be102b", "https://tec.openplanner.team/stops/H4be105a"], ["https://tec.openplanner.team/stops/X880aca", "https://tec.openplanner.team/stops/X880ada"], ["https://tec.openplanner.team/stops/Cctberg1", "https://tec.openplanner.team/stops/Cctmine1"], ["https://tec.openplanner.team/stops/X796afa", "https://tec.openplanner.team/stops/X796agb"], ["https://tec.openplanner.team/stops/X725axa", "https://tec.openplanner.team/stops/X725beb"], ["https://tec.openplanner.team/stops/Cjucouc1", "https://tec.openplanner.team/stops/Cjucouc2"], ["https://tec.openplanner.team/stops/LHDlibi2", "https://tec.openplanner.team/stops/LHDmc--2"], ["https://tec.openplanner.team/stops/X666aaa", "https://tec.openplanner.team/stops/X666abb"], ["https://tec.openplanner.team/stops/Lsmh3021", "https://tec.openplanner.team/stops/Lvepoud1"], ["https://tec.openplanner.team/stops/X561aab", "https://tec.openplanner.team/stops/X561aea"], ["https://tec.openplanner.team/stops/Lsedavy2", "https://tec.openplanner.team/stops/Lseivoz1"], ["https://tec.openplanner.team/stops/X615beb", "https://tec.openplanner.team/stops/X616abb"], ["https://tec.openplanner.team/stops/LPutins1", "https://tec.openplanner.team/stops/X792abb"], ["https://tec.openplanner.team/stops/LTibarb2", "https://tec.openplanner.team/stops/LTipont1"], ["https://tec.openplanner.team/stops/Bnivind1", "https://tec.openplanner.team/stops/Bnivrec2"], ["https://tec.openplanner.team/stops/LLOberl1", "https://tec.openplanner.team/stops/LRRtrix1"], ["https://tec.openplanner.team/stops/X661ada", "https://tec.openplanner.team/stops/X661ayc"], ["https://tec.openplanner.team/stops/H1cu108a", "https://tec.openplanner.team/stops/H1cu108b"], ["https://tec.openplanner.team/stops/X982aha", "https://tec.openplanner.team/stops/X982ahb"], ["https://tec.openplanner.team/stops/H1ha187a", "https://tec.openplanner.team/stops/H1ha187b"], ["https://tec.openplanner.team/stops/H1be100a", "https://tec.openplanner.team/stops/H1er108a"], ["https://tec.openplanner.team/stops/LhSwind2", "https://tec.openplanner.team/stops/LwAschu1"], ["https://tec.openplanner.team/stops/LAmeg--2", "https://tec.openplanner.team/stops/LAmwaut1"], ["https://tec.openplanner.team/stops/X763aba", "https://tec.openplanner.team/stops/X763aeb"], ["https://tec.openplanner.team/stops/LFTeg--2", "https://tec.openplanner.team/stops/LFTneur*"], ["https://tec.openplanner.team/stops/Bhmmcha1", "https://tec.openplanner.team/stops/Bhmmpos2"], ["https://tec.openplanner.team/stops/LAwfans2", "https://tec.openplanner.team/stops/LMvgare1"], ["https://tec.openplanner.team/stops/H5bl115b", "https://tec.openplanner.team/stops/H5bl115d"], ["https://tec.openplanner.team/stops/X993ada", "https://tec.openplanner.team/stops/X993adb"], ["https://tec.openplanner.team/stops/N507ahb", "https://tec.openplanner.team/stops/N507aia"], ["https://tec.openplanner.team/stops/Llgschm1", "https://tec.openplanner.team/stops/Llgschm2"], ["https://tec.openplanner.team/stops/LCxeg--2", "https://tec.openplanner.team/stops/LCxfawe2"], ["https://tec.openplanner.team/stops/LLrc1992", "https://tec.openplanner.team/stops/LLrcour2"], ["https://tec.openplanner.team/stops/LlNlimb2", "https://tec.openplanner.team/stops/LlNschu2"], ["https://tec.openplanner.team/stops/LwYcafe2", "https://tec.openplanner.team/stops/LwYsarl2"], ["https://tec.openplanner.team/stops/Loutrix2", "https://tec.openplanner.team/stops/Loutroi1"], ["https://tec.openplanner.team/stops/X757aia", "https://tec.openplanner.team/stops/X757anb"], ["https://tec.openplanner.team/stops/LAYsupe1", "https://tec.openplanner.team/stops/LAYsupe2"], ["https://tec.openplanner.team/stops/N509ana", "https://tec.openplanner.team/stops/N510aea"], ["https://tec.openplanner.team/stops/Bheneco2", "https://tec.openplanner.team/stops/Bhensei2"], ["https://tec.openplanner.team/stops/X725aja", "https://tec.openplanner.team/stops/X725ana"], ["https://tec.openplanner.team/stops/Bcrntru2", "https://tec.openplanner.team/stops/N529abc"], ["https://tec.openplanner.team/stops/N534bng", "https://tec.openplanner.team/stops/N534cbg"], ["https://tec.openplanner.team/stops/Bnivmat1", "https://tec.openplanner.team/stops/Bnivvco2"], ["https://tec.openplanner.team/stops/Blthbss2", "https://tec.openplanner.team/stops/Blthwav3"], ["https://tec.openplanner.team/stops/H1cu121a", "https://tec.openplanner.team/stops/H1cu128a"], ["https://tec.openplanner.team/stops/Bnodblt2", "https://tec.openplanner.team/stops/Boplsma4"], ["https://tec.openplanner.team/stops/Csurela2", "https://tec.openplanner.team/stops/Csurela4"], ["https://tec.openplanner.team/stops/H4ir165a", "https://tec.openplanner.team/stops/H4ir165b"], ["https://tec.openplanner.team/stops/Blhusor1", "https://tec.openplanner.team/stops/Bovevri1"], ["https://tec.openplanner.team/stops/Lemeg--2", "https://tec.openplanner.team/stops/Lemmc--2"], ["https://tec.openplanner.team/stops/X801cja", "https://tec.openplanner.team/stops/X801cjb"], ["https://tec.openplanner.team/stops/Lmocalv1", "https://tec.openplanner.team/stops/Lmocalv2"], ["https://tec.openplanner.team/stops/H4gr109a", "https://tec.openplanner.team/stops/H4gr112b"], ["https://tec.openplanner.team/stops/Cgygazo1", "https://tec.openplanner.team/stops/Cgygazo2"], ["https://tec.openplanner.team/stops/LaSkape1", "https://tec.openplanner.team/stops/LhGbahn4"], ["https://tec.openplanner.team/stops/N543ajb", "https://tec.openplanner.team/stops/N543cga"], ["https://tec.openplanner.team/stops/N225aha", "https://tec.openplanner.team/stops/N225ahb"], ["https://tec.openplanner.team/stops/X595aba", "https://tec.openplanner.team/stops/X595acb"], ["https://tec.openplanner.team/stops/LRChote1", "https://tec.openplanner.team/stops/LTPsatr1"], ["https://tec.openplanner.team/stops/N301aia", "https://tec.openplanner.team/stops/N301aib"], ["https://tec.openplanner.team/stops/X782ala", "https://tec.openplanner.team/stops/X782alb"], ["https://tec.openplanner.team/stops/N545aab", "https://tec.openplanner.team/stops/N552abb"], ["https://tec.openplanner.team/stops/LbUverb1", "https://tec.openplanner.team/stops/LbUverb2"], ["https://tec.openplanner.team/stops/X982ara", "https://tec.openplanner.team/stops/X982arb"], ["https://tec.openplanner.team/stops/N538aaa", "https://tec.openplanner.team/stops/N538aab"], ["https://tec.openplanner.team/stops/Bernpla1", "https://tec.openplanner.team/stops/Bwlhpmt4"], ["https://tec.openplanner.team/stops/Cmonsnc1", "https://tec.openplanner.team/stops/H1ms280d"], ["https://tec.openplanner.team/stops/Bnivtra1", "https://tec.openplanner.team/stops/Bnivtra2"], ["https://tec.openplanner.team/stops/X318aba", "https://tec.openplanner.team/stops/X318abb"], ["https://tec.openplanner.team/stops/Lmlbaro1", "https://tec.openplanner.team/stops/Lmleg--1"], ["https://tec.openplanner.team/stops/N162aaa", "https://tec.openplanner.team/stops/N162aab"], ["https://tec.openplanner.team/stops/N260aab", "https://tec.openplanner.team/stops/N260abb"], ["https://tec.openplanner.team/stops/X636ala", "https://tec.openplanner.team/stops/X636apa"], ["https://tec.openplanner.team/stops/LBKmoes1", "https://tec.openplanner.team/stops/LWAeloi2"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Lanpont1"], ["https://tec.openplanner.team/stops/N120adc", "https://tec.openplanner.team/stops/N120aeb"], ["https://tec.openplanner.team/stops/LsVmolk1", "https://tec.openplanner.team/stops/LwSgeme2"], ["https://tec.openplanner.team/stops/H1by106b", "https://tec.openplanner.team/stops/H1sy140b"], ["https://tec.openplanner.team/stops/N532akb", "https://tec.openplanner.team/stops/N568abb"], ["https://tec.openplanner.team/stops/Bkrapri1", "https://tec.openplanner.team/stops/Bkrawil1"], ["https://tec.openplanner.team/stops/LWHzave1", "https://tec.openplanner.team/stops/LWscona1"], ["https://tec.openplanner.team/stops/Bbcodam4", "https://tec.openplanner.team/stops/Bbcopre1"], ["https://tec.openplanner.team/stops/Bolgcsa2", "https://tec.openplanner.team/stops/Bolgsha2"], ["https://tec.openplanner.team/stops/H5at120a", "https://tec.openplanner.team/stops/H5at120b"], ["https://tec.openplanner.team/stops/H4pp123a", "https://tec.openplanner.team/stops/H4qu230c"], ["https://tec.openplanner.team/stops/N550aaa", "https://tec.openplanner.team/stops/N550aab"], ["https://tec.openplanner.team/stops/N501goa", "https://tec.openplanner.team/stops/N501ikb"], ["https://tec.openplanner.team/stops/X769afa", "https://tec.openplanner.team/stops/X769asa"], ["https://tec.openplanner.team/stops/X614avb", "https://tec.openplanner.team/stops/X615ala"], ["https://tec.openplanner.team/stops/H4bo112a", "https://tec.openplanner.team/stops/H4bo118c"], ["https://tec.openplanner.team/stops/Brxmcna2", "https://tec.openplanner.team/stops/Brxmhai4"], ["https://tec.openplanner.team/stops/N353afd", "https://tec.openplanner.team/stops/N383aab"], ["https://tec.openplanner.team/stops/Lemjacq1", "https://tec.openplanner.team/stops/Lemsart1"], ["https://tec.openplanner.team/stops/Bdvminc2", "https://tec.openplanner.team/stops/Bgisber2"], ["https://tec.openplanner.team/stops/X919acb", "https://tec.openplanner.team/stops/X919ada"], ["https://tec.openplanner.team/stops/N562aea", "https://tec.openplanner.team/stops/N562azb"], ["https://tec.openplanner.team/stops/Bnivpve2", "https://tec.openplanner.team/stops/Bnivsba1"], ["https://tec.openplanner.team/stops/X601bpa", "https://tec.openplanner.team/stops/X601bza"], ["https://tec.openplanner.team/stops/Cgobl%C3%A9r2", "https://tec.openplanner.team/stops/Cgonvro1"], ["https://tec.openplanner.team/stops/H1ma230a", "https://tec.openplanner.team/stops/H1ob339b"], ["https://tec.openplanner.team/stops/X762aab", "https://tec.openplanner.team/stops/X763aga"], ["https://tec.openplanner.team/stops/N115acb", "https://tec.openplanner.team/stops/N118aka"], ["https://tec.openplanner.team/stops/X773agb", "https://tec.openplanner.team/stops/X773aob"], ["https://tec.openplanner.team/stops/Brsrfen2", "https://tec.openplanner.team/stops/Brsrpar1"], ["https://tec.openplanner.team/stops/LBNgarn1", "https://tec.openplanner.team/stops/LBNgarn2"], ["https://tec.openplanner.team/stops/H4ta116b", "https://tec.openplanner.team/stops/H4ta117a"], ["https://tec.openplanner.team/stops/LMIcamp2", "https://tec.openplanner.team/stops/LMIeg--2"], ["https://tec.openplanner.team/stops/N529ahb", "https://tec.openplanner.team/stops/N529aja"], ["https://tec.openplanner.team/stops/Bgzddge2", "https://tec.openplanner.team/stops/Bgzdpis2"], ["https://tec.openplanner.team/stops/X982akb", "https://tec.openplanner.team/stops/X982bra"], ["https://tec.openplanner.team/stops/LaMahof1", "https://tec.openplanner.team/stops/LaMgeme*"], ["https://tec.openplanner.team/stops/Bpthfus2", "https://tec.openplanner.team/stops/Bwanthi1"], ["https://tec.openplanner.team/stops/Cgzclef1", "https://tec.openplanner.team/stops/Cgzplac4"], ["https://tec.openplanner.team/stops/LCHfond2", "https://tec.openplanner.team/stops/Lprthie2"], ["https://tec.openplanner.team/stops/LFsphar2", "https://tec.openplanner.team/stops/LSLstra2"], ["https://tec.openplanner.team/stops/X872afa", "https://tec.openplanner.team/stops/X872aga"], ["https://tec.openplanner.team/stops/N519abb", "https://tec.openplanner.team/stops/N519adb"], ["https://tec.openplanner.team/stops/NH03aea", "https://tec.openplanner.team/stops/NH03afb"], ["https://tec.openplanner.team/stops/X762aea", "https://tec.openplanner.team/stops/X764afb"], ["https://tec.openplanner.team/stops/LSsaxhe1", "https://tec.openplanner.team/stops/N506bfa"], ["https://tec.openplanner.team/stops/H4ht172b", "https://tec.openplanner.team/stops/H4ht173b"], ["https://tec.openplanner.team/stops/Bwatgge1", "https://tec.openplanner.team/stops/Bwatzod1"], ["https://tec.openplanner.team/stops/H4ma203a", "https://tec.openplanner.team/stops/H4ma411a"], ["https://tec.openplanner.team/stops/LVLgotr4", "https://tec.openplanner.team/stops/LVLgrum2"], ["https://tec.openplanner.team/stops/LVBmonu3", "https://tec.openplanner.team/stops/LVBrmon1"], ["https://tec.openplanner.team/stops/H4bo120b", "https://tec.openplanner.team/stops/H4bo181a"], ["https://tec.openplanner.team/stops/Cvscomb1", "https://tec.openplanner.team/stops/N530aba"], ["https://tec.openplanner.team/stops/Llgbois2", "https://tec.openplanner.team/stops/Llgseel2"], ["https://tec.openplanner.team/stops/N557aea", "https://tec.openplanner.team/stops/N560aba"], ["https://tec.openplanner.team/stops/X948afa", "https://tec.openplanner.team/stops/X948aub"], ["https://tec.openplanner.team/stops/H1cu108b", "https://tec.openplanner.team/stops/H1ms247b"], ["https://tec.openplanner.team/stops/Bperros1", "https://tec.openplanner.team/stops/Bperros2"], ["https://tec.openplanner.team/stops/X897ara", "https://tec.openplanner.team/stops/X897arb"], ["https://tec.openplanner.team/stops/X636acb", "https://tec.openplanner.team/stops/X636bia"], ["https://tec.openplanner.team/stops/Lghwall1", "https://tec.openplanner.team/stops/Lghwall2"], ["https://tec.openplanner.team/stops/Caibras1", "https://tec.openplanner.team/stops/N543chb"], ["https://tec.openplanner.team/stops/X725aaa", "https://tec.openplanner.team/stops/X754axa"], ["https://tec.openplanner.team/stops/X718afb", "https://tec.openplanner.team/stops/X718aga"], ["https://tec.openplanner.team/stops/Brebchb2", "https://tec.openplanner.team/stops/Brebpca1"], ["https://tec.openplanner.team/stops/H1ma233c", "https://tec.openplanner.team/stops/H1ma237b"], ["https://tec.openplanner.team/stops/Lemjoba2", "https://tec.openplanner.team/stops/Lemmath2"], ["https://tec.openplanner.team/stops/X602aba", "https://tec.openplanner.team/stops/X624alb"], ["https://tec.openplanner.team/stops/Bstmpla1", "https://tec.openplanner.team/stops/N561afa"], ["https://tec.openplanner.team/stops/N118alb", "https://tec.openplanner.team/stops/N118aoa"], ["https://tec.openplanner.team/stops/H1ne140a", "https://tec.openplanner.team/stops/H1ne142a"], ["https://tec.openplanner.team/stops/LLegare1", "https://tec.openplanner.team/stops/LLegare2"], ["https://tec.openplanner.team/stops/X789aab", "https://tec.openplanner.team/stops/X789abb"], ["https://tec.openplanner.team/stops/H1qu109a", "https://tec.openplanner.team/stops/H1qu112b"], ["https://tec.openplanner.team/stops/LWaanto2", "https://tec.openplanner.team/stops/LWarema2"], ["https://tec.openplanner.team/stops/N538apb", "https://tec.openplanner.team/stops/N538asa"], ["https://tec.openplanner.team/stops/N120aha", "https://tec.openplanner.team/stops/N120ahb"], ["https://tec.openplanner.team/stops/H5bl116a", "https://tec.openplanner.team/stops/H5bl143b"], ["https://tec.openplanner.team/stops/N501hua", "https://tec.openplanner.team/stops/N501hzc"], ["https://tec.openplanner.team/stops/N242aeb", "https://tec.openplanner.team/stops/N242afa"], ["https://tec.openplanner.team/stops/H4te257a", "https://tec.openplanner.team/stops/H4te257b"], ["https://tec.openplanner.team/stops/Lvo60--1", "https://tec.openplanner.team/stops/Lvomoul2"], ["https://tec.openplanner.team/stops/H4do105a", "https://tec.openplanner.team/stops/H4do202a"], ["https://tec.openplanner.team/stops/N351ama", "https://tec.openplanner.team/stops/N351ava"], ["https://tec.openplanner.team/stops/N170aab", "https://tec.openplanner.team/stops/N170aba"], ["https://tec.openplanner.team/stops/Clrmarl2", "https://tec.openplanner.team/stops/CMpara2"], ["https://tec.openplanner.team/stops/LAugara1", "https://tec.openplanner.team/stops/LBOande1"], ["https://tec.openplanner.team/stops/H4ba103a", "https://tec.openplanner.team/stops/H4ml206a"], ["https://tec.openplanner.team/stops/H5rx143b", "https://tec.openplanner.team/stops/H5rx149a"], ["https://tec.openplanner.team/stops/X822aaa", "https://tec.openplanner.team/stops/X822aea"], ["https://tec.openplanner.team/stops/Barqpla2", "https://tec.openplanner.team/stops/Barqpwa1"], ["https://tec.openplanner.team/stops/LAbbass1", "https://tec.openplanner.team/stops/LSevitu2"], ["https://tec.openplanner.team/stops/X667aca", "https://tec.openplanner.team/stops/X667aeb"], ["https://tec.openplanner.team/stops/Bjodcoi2", "https://tec.openplanner.team/stops/NR21aca"], ["https://tec.openplanner.team/stops/Crebien1", "https://tec.openplanner.team/stops/Crestan1"], ["https://tec.openplanner.team/stops/LTAchau1", "https://tec.openplanner.team/stops/LTAchau2"], ["https://tec.openplanner.team/stops/N118aha", "https://tec.openplanner.team/stops/N118ata"], ["https://tec.openplanner.team/stops/Cfmcent1", "https://tec.openplanner.team/stops/Cfmgrmo1"], ["https://tec.openplanner.team/stops/X390aib", "https://tec.openplanner.team/stops/X992abb"], ["https://tec.openplanner.team/stops/LBLcalv1", "https://tec.openplanner.team/stops/LCEplac2"], ["https://tec.openplanner.team/stops/Bolgsha1", "https://tec.openplanner.team/stops/Bolgsha2"], ["https://tec.openplanner.team/stops/H1ha193b", "https://tec.openplanner.team/stops/H1ob341a"], ["https://tec.openplanner.team/stops/H1hm175b", "https://tec.openplanner.team/stops/H1ss351a"], ["https://tec.openplanner.team/stops/Cfbcal1", "https://tec.openplanner.team/stops/Cfcecol1"], ["https://tec.openplanner.team/stops/Lanpisc2", "https://tec.openplanner.team/stops/Lglmoul2"], ["https://tec.openplanner.team/stops/Llghaut1", "https://tec.openplanner.team/stops/Llgseel1"], ["https://tec.openplanner.team/stops/Bottegl3", "https://tec.openplanner.team/stops/Bottegl4"], ["https://tec.openplanner.team/stops/N106acb", "https://tec.openplanner.team/stops/N106adb"], ["https://tec.openplanner.team/stops/H1te180a", "https://tec.openplanner.team/stops/H1te191a"], ["https://tec.openplanner.team/stops/Ljuauto2", "https://tec.openplanner.team/stops/Lsweg--2"], ["https://tec.openplanner.team/stops/H1so131a", "https://tec.openplanner.team/stops/H1so131f"], ["https://tec.openplanner.team/stops/N535aib", "https://tec.openplanner.team/stops/N564acb"], ["https://tec.openplanner.team/stops/Barqbar2", "https://tec.openplanner.team/stops/Bptrgri2"], ["https://tec.openplanner.team/stops/H1bo104a", "https://tec.openplanner.team/stops/H1bo150a"], ["https://tec.openplanner.team/stops/H1al106a", "https://tec.openplanner.team/stops/H1qp142b"], ["https://tec.openplanner.team/stops/X721aoa", "https://tec.openplanner.team/stops/X721aob"], ["https://tec.openplanner.team/stops/Cgxvkho2", "https://tec.openplanner.team/stops/Cgxvkho3"], ["https://tec.openplanner.team/stops/Blthwav2", "https://tec.openplanner.team/stops/Bmlnegl1"], ["https://tec.openplanner.team/stops/Cmacart4", "https://tec.openplanner.team/stops/CMcart2"], ["https://tec.openplanner.team/stops/X923aeb", "https://tec.openplanner.team/stops/X923afa"], ["https://tec.openplanner.team/stops/N204aga", "https://tec.openplanner.team/stops/N204agb"], ["https://tec.openplanner.team/stops/X925aka", "https://tec.openplanner.team/stops/X947adb"], ["https://tec.openplanner.team/stops/N301aka", "https://tec.openplanner.team/stops/N331aea"], ["https://tec.openplanner.team/stops/Bgnvpap1", "https://tec.openplanner.team/stops/Brixpje2"], ["https://tec.openplanner.team/stops/Cnagrro2", "https://tec.openplanner.team/stops/Cnanoir1"], ["https://tec.openplanner.team/stops/H4ty287a", "https://tec.openplanner.team/stops/H4ty346a"], ["https://tec.openplanner.team/stops/N501cnb", "https://tec.openplanner.team/stops/N501cua"], ["https://tec.openplanner.team/stops/LWAor--1", "https://tec.openplanner.team/stops/LWAvand1"], ["https://tec.openplanner.team/stops/Lanfran2", "https://tec.openplanner.team/stops/Lanfran3"], ["https://tec.openplanner.team/stops/X636aqc", "https://tec.openplanner.team/stops/X636ara"], ["https://tec.openplanner.team/stops/LHMa2321", "https://tec.openplanner.team/stops/LHMaube1"], ["https://tec.openplanner.team/stops/X660aab", "https://tec.openplanner.team/stops/X661akb"], ["https://tec.openplanner.team/stops/X649aba", "https://tec.openplanner.team/stops/X649abb"], ["https://tec.openplanner.team/stops/Ctmazeb1", "https://tec.openplanner.team/stops/Ctmsncb1"], ["https://tec.openplanner.team/stops/X657ada", "https://tec.openplanner.team/stops/X742adb"], ["https://tec.openplanner.team/stops/H1hn207b", "https://tec.openplanner.team/stops/H1hn363a"], ["https://tec.openplanner.team/stops/N204aib", "https://tec.openplanner.team/stops/N204akb"], ["https://tec.openplanner.team/stops/X907aib", "https://tec.openplanner.team/stops/X950aaa"], ["https://tec.openplanner.team/stops/LCxwarr1", "https://tec.openplanner.team/stops/LHEpriv1"], ["https://tec.openplanner.team/stops/H4fr394a", "https://tec.openplanner.team/stops/H4ty340a"], ["https://tec.openplanner.team/stops/X999aeb", "https://tec.openplanner.team/stops/X999afa"], ["https://tec.openplanner.team/stops/N308aic", "https://tec.openplanner.team/stops/N308alb"], ["https://tec.openplanner.team/stops/H4ty358a", "https://tec.openplanner.team/stops/H4ty381b"], ["https://tec.openplanner.team/stops/LSPtonn1", "https://tec.openplanner.team/stops/LSPtonn2"], ["https://tec.openplanner.team/stops/X801ata", "https://tec.openplanner.team/stops/X801atb"], ["https://tec.openplanner.team/stops/NH01alb", "https://tec.openplanner.team/stops/NH01ama"], ["https://tec.openplanner.team/stops/N346ada", "https://tec.openplanner.team/stops/X892abb"], ["https://tec.openplanner.team/stops/Crg3arb2", "https://tec.openplanner.team/stops/Crgmgri2"], ["https://tec.openplanner.team/stops/Cgogb1", "https://tec.openplanner.team/stops/CMleop2"], ["https://tec.openplanner.team/stops/X808afa", "https://tec.openplanner.team/stops/X808amb"], ["https://tec.openplanner.team/stops/H1gr110b", "https://tec.openplanner.team/stops/H1gr116a"], ["https://tec.openplanner.team/stops/X616abb", "https://tec.openplanner.team/stops/X616aia"], ["https://tec.openplanner.team/stops/H4wr173b", "https://tec.openplanner.team/stops/H4wr173c"], ["https://tec.openplanner.team/stops/N131aha", "https://tec.openplanner.team/stops/N131ahb"], ["https://tec.openplanner.team/stops/NL76aea", "https://tec.openplanner.team/stops/NL76aeb"], ["https://tec.openplanner.team/stops/H4bh103a", "https://tec.openplanner.team/stops/H4ma162a"], ["https://tec.openplanner.team/stops/H1fr130a", "https://tec.openplanner.team/stops/H1fr130b"], ["https://tec.openplanner.team/stops/X804bja", "https://tec.openplanner.team/stops/X804byb"], ["https://tec.openplanner.team/stops/Clrhava1", "https://tec.openplanner.team/stops/Clrhava2"], ["https://tec.openplanner.team/stops/Cbwcab2", "https://tec.openplanner.team/stops/Cbwdoua1"], ["https://tec.openplanner.team/stops/H4co109a", "https://tec.openplanner.team/stops/H4co144b"], ["https://tec.openplanner.team/stops/N423aba", "https://tec.openplanner.team/stops/N423abb"], ["https://tec.openplanner.team/stops/X766abb", "https://tec.openplanner.team/stops/X768amb"], ["https://tec.openplanner.team/stops/X619aja", "https://tec.openplanner.team/stops/X619ajb"], ["https://tec.openplanner.team/stops/Bllnchv1", "https://tec.openplanner.team/stops/Bllngar1"], ["https://tec.openplanner.team/stops/LORgend1", "https://tec.openplanner.team/stops/LORvill3"], ["https://tec.openplanner.team/stops/H1ro135a", "https://tec.openplanner.team/stops/H1ro140b"], ["https://tec.openplanner.team/stops/N558ana", "https://tec.openplanner.team/stops/NL76aeb"], ["https://tec.openplanner.team/stops/N315aab", "https://tec.openplanner.team/stops/N365aab"], ["https://tec.openplanner.team/stops/N383aaa", "https://tec.openplanner.team/stops/N988abb"], ["https://tec.openplanner.team/stops/X992aha", "https://tec.openplanner.team/stops/X993aga"], ["https://tec.openplanner.team/stops/X811aaa", "https://tec.openplanner.team/stops/X811adb"], ["https://tec.openplanner.team/stops/LWbcarr2", "https://tec.openplanner.team/stops/LWbregn2"], ["https://tec.openplanner.team/stops/LSMlier1", "https://tec.openplanner.team/stops/LSMpoin2"], ["https://tec.openplanner.team/stops/Cctbinc1", "https://tec.openplanner.team/stops/NC11afb"], ["https://tec.openplanner.team/stops/Llgnaim1", "https://tec.openplanner.team/stops/Llgnani2"], ["https://tec.openplanner.team/stops/N528aia", "https://tec.openplanner.team/stops/N528aib"], ["https://tec.openplanner.team/stops/Crccano1", "https://tec.openplanner.team/stops/Crcrwas1"], ["https://tec.openplanner.team/stops/H4an106a", "https://tec.openplanner.team/stops/H4an106b"], ["https://tec.openplanner.team/stops/Bgdhbvu1", "https://tec.openplanner.team/stops/Bgdhbvu2"], ["https://tec.openplanner.team/stops/NL57aeb", "https://tec.openplanner.team/stops/NL57aka"], ["https://tec.openplanner.team/stops/X765aga", "https://tec.openplanner.team/stops/X765agb"], ["https://tec.openplanner.team/stops/N576aba", "https://tec.openplanner.team/stops/N576abb"], ["https://tec.openplanner.team/stops/N543alb", "https://tec.openplanner.team/stops/N543cga"], ["https://tec.openplanner.team/stops/H1fr107c", "https://tec.openplanner.team/stops/H1fr128b"], ["https://tec.openplanner.team/stops/Cfmchau2", "https://tec.openplanner.team/stops/Cfmpui81"], ["https://tec.openplanner.team/stops/Lmlcrot*", "https://tec.openplanner.team/stops/Lmlcrot3"], ["https://tec.openplanner.team/stops/H5rx104b", "https://tec.openplanner.team/stops/H5rx121b"], ["https://tec.openplanner.team/stops/X911aha", "https://tec.openplanner.team/stops/X911ahb"], ["https://tec.openplanner.team/stops/N135avb", "https://tec.openplanner.team/stops/N135bfa"], ["https://tec.openplanner.team/stops/Lrccomm1", "https://tec.openplanner.team/stops/Lrccomm2"], ["https://tec.openplanner.team/stops/X623aeb", "https://tec.openplanner.team/stops/X624amb"], ["https://tec.openplanner.team/stops/H4ta121b", "https://tec.openplanner.team/stops/H4ta129a"], ["https://tec.openplanner.team/stops/LLRsalm1", "https://tec.openplanner.team/stops/LLRsalm2"], ["https://tec.openplanner.team/stops/X801afb", "https://tec.openplanner.team/stops/X801aga"], ["https://tec.openplanner.team/stops/Blhulor2", "https://tec.openplanner.team/stops/Blhuone2"], ["https://tec.openplanner.team/stops/X601aja", "https://tec.openplanner.team/stops/X662atb"], ["https://tec.openplanner.team/stops/Blemwob2", "https://tec.openplanner.team/stops/Blemwob4"], ["https://tec.openplanner.team/stops/X609aoa", "https://tec.openplanner.team/stops/X631aaa"], ["https://tec.openplanner.team/stops/H1he109a", "https://tec.openplanner.team/stops/H1qv116b"], ["https://tec.openplanner.team/stops/H1ca100a", "https://tec.openplanner.team/stops/H1ca108b"], ["https://tec.openplanner.team/stops/Bbiefon1", "https://tec.openplanner.team/stops/Bndbdra1"], ["https://tec.openplanner.team/stops/N106ajb", "https://tec.openplanner.team/stops/N106aka"], ["https://tec.openplanner.team/stops/LGecime1", "https://tec.openplanner.team/stops/LVkinst1"], ["https://tec.openplanner.team/stops/N539aka", "https://tec.openplanner.team/stops/N539ama"], ["https://tec.openplanner.team/stops/H4lh161a", "https://tec.openplanner.team/stops/H5el104b"], ["https://tec.openplanner.team/stops/LJAboli1", "https://tec.openplanner.team/stops/LJAwerf1"], ["https://tec.openplanner.team/stops/LVthest4", "https://tec.openplanner.team/stops/LVtvalu2"], ["https://tec.openplanner.team/stops/Lbhhomv2", "https://tec.openplanner.team/stops/Ljumart2"], ["https://tec.openplanner.team/stops/LWZdtec2", "https://tec.openplanner.team/stops/LWZeg--1"], ["https://tec.openplanner.team/stops/X629acb", "https://tec.openplanner.team/stops/X647aab"], ["https://tec.openplanner.team/stops/Llgatla1", "https://tec.openplanner.team/stops/Llgatla2"], ["https://tec.openplanner.team/stops/LOurena1", "https://tec.openplanner.team/stops/LOurena2"], ["https://tec.openplanner.team/stops/LHEepur1", "https://tec.openplanner.team/stops/LHEepur2"], ["https://tec.openplanner.team/stops/X818agb", "https://tec.openplanner.team/stops/X818avb"], ["https://tec.openplanner.team/stops/Ccocoup1", "https://tec.openplanner.team/stops/Ccostan1"], ["https://tec.openplanner.team/stops/Cbiseur1", "https://tec.openplanner.team/stops/Cgzblob2"], ["https://tec.openplanner.team/stops/LHAarge1", "https://tec.openplanner.team/stops/LHTlieg2"], ["https://tec.openplanner.team/stops/X608avb", "https://tec.openplanner.team/stops/X608aza"], ["https://tec.openplanner.team/stops/Lkinyst2", "https://tec.openplanner.team/stops/Lkivolg1"], ["https://tec.openplanner.team/stops/H4hg156a", "https://tec.openplanner.team/stops/H4hg159a"], ["https://tec.openplanner.team/stops/X222aza", "https://tec.openplanner.team/stops/X222azb"], ["https://tec.openplanner.team/stops/Cnapetr1", "https://tec.openplanner.team/stops/Cnapetr2"], ["https://tec.openplanner.team/stops/N534bog", "https://tec.openplanner.team/stops/N534byb"], ["https://tec.openplanner.team/stops/N343aka", "https://tec.openplanner.team/stops/N343akb"], ["https://tec.openplanner.team/stops/Lagviad2", "https://tec.openplanner.team/stops/Lemdupo1"], ["https://tec.openplanner.team/stops/LrApark2", "https://tec.openplanner.team/stops/LrAverb1"], ["https://tec.openplanner.team/stops/X626aeb", "https://tec.openplanner.team/stops/X626afa"], ["https://tec.openplanner.team/stops/Cnapair1", "https://tec.openplanner.team/stops/Cnapair2"], ["https://tec.openplanner.team/stops/Bbiecim2", "https://tec.openplanner.team/stops/Bbiepre2"], ["https://tec.openplanner.team/stops/H4fa124a", "https://tec.openplanner.team/stops/H4ms145b"], ["https://tec.openplanner.team/stops/NL76aha", "https://tec.openplanner.team/stops/NL76amb"], ["https://tec.openplanner.team/stops/LFEhoup1", "https://tec.openplanner.team/stops/X597aob"], ["https://tec.openplanner.team/stops/Bsomwav2", "https://tec.openplanner.team/stops/N584asa"], ["https://tec.openplanner.team/stops/X619aab", "https://tec.openplanner.team/stops/X620afb"], ["https://tec.openplanner.team/stops/LACwass2", "https://tec.openplanner.team/stops/NL30ajb"], ["https://tec.openplanner.team/stops/H4lz125b", "https://tec.openplanner.team/stops/H4lz128b"], ["https://tec.openplanner.team/stops/X767aaa", "https://tec.openplanner.team/stops/X767aac"], ["https://tec.openplanner.team/stops/N201aia", "https://tec.openplanner.team/stops/N201ava"], ["https://tec.openplanner.team/stops/X307adb", "https://tec.openplanner.team/stops/X317aba"], ["https://tec.openplanner.team/stops/Bllnlen2", "https://tec.openplanner.team/stops/Bllnrod4"], ["https://tec.openplanner.team/stops/LMYroin2", "https://tec.openplanner.team/stops/X597alb"], ["https://tec.openplanner.team/stops/LOehart2", "https://tec.openplanner.team/stops/LWAhart1"], ["https://tec.openplanner.team/stops/Llgnico*", "https://tec.openplanner.team/stops/Llgnico1"], ["https://tec.openplanner.team/stops/Lougare1", "https://tec.openplanner.team/stops/Lougare3"], ["https://tec.openplanner.team/stops/X649acb", "https://tec.openplanner.team/stops/X649adc"], ["https://tec.openplanner.team/stops/H3th126a", "https://tec.openplanner.team/stops/H3th129a"], ["https://tec.openplanner.team/stops/X954afb", "https://tec.openplanner.team/stops/X954agb"], ["https://tec.openplanner.team/stops/Llgatla2", "https://tec.openplanner.team/stops/Llgfoy-1"], ["https://tec.openplanner.team/stops/N215aab", "https://tec.openplanner.team/stops/N228acb"], ["https://tec.openplanner.team/stops/N564aeb", "https://tec.openplanner.team/stops/N585ahb"], ["https://tec.openplanner.team/stops/LSGcarr2", "https://tec.openplanner.team/stops/LYechpl1"], ["https://tec.openplanner.team/stops/Cctpano1", "https://tec.openplanner.team/stops/Cctpche2"], ["https://tec.openplanner.team/stops/N236abb", "https://tec.openplanner.team/stops/N236acb"], ["https://tec.openplanner.team/stops/X763agb", "https://tec.openplanner.team/stops/X763aia"], ["https://tec.openplanner.team/stops/LeUath%C3%A41", "https://tec.openplanner.team/stops/LeUgend2"], ["https://tec.openplanner.team/stops/N120ahb", "https://tec.openplanner.team/stops/N248aeb"], ["https://tec.openplanner.team/stops/Crg3arb1", "https://tec.openplanner.team/stops/Cthhvil6"], ["https://tec.openplanner.team/stops/N235afa", "https://tec.openplanner.team/stops/N235agb"], ["https://tec.openplanner.team/stops/Cgolimi1", "https://tec.openplanner.team/stops/Cgolimi2"], ["https://tec.openplanner.team/stops/H1sd343a", "https://tec.openplanner.team/stops/H3go100b"], ["https://tec.openplanner.team/stops/LPRcha-*", "https://tec.openplanner.team/stops/LPReg--1"], ["https://tec.openplanner.team/stops/H1og130a", "https://tec.openplanner.team/stops/H1og134b"], ["https://tec.openplanner.team/stops/LrAkape2", "https://tec.openplanner.team/stops/LrAplat2"], ["https://tec.openplanner.team/stops/Lghcham1", "https://tec.openplanner.team/stops/Lghfore2"], ["https://tec.openplanner.team/stops/Lre3che1", "https://tec.openplanner.team/stops/Lrevaul2"], ["https://tec.openplanner.team/stops/H1pa106c", "https://tec.openplanner.team/stops/H1pa111b"], ["https://tec.openplanner.team/stops/X713ajc", "https://tec.openplanner.team/stops/X713ana"], ["https://tec.openplanner.team/stops/Bbsigaz2", "https://tec.openplanner.team/stops/Blilgar1"], ["https://tec.openplanner.team/stops/N506aqb", "https://tec.openplanner.team/stops/N506asb"], ["https://tec.openplanner.team/stops/Lstpoly1", "https://tec.openplanner.team/stops/Lstscie1"], ["https://tec.openplanner.team/stops/H4ty264b", "https://tec.openplanner.team/stops/H4ty320b"], ["https://tec.openplanner.team/stops/LRmmabr1", "https://tec.openplanner.team/stops/LRmstat1"], ["https://tec.openplanner.team/stops/LMsalen1", "https://tec.openplanner.team/stops/LMsalen2"], ["https://tec.openplanner.team/stops/X955aea", "https://tec.openplanner.team/stops/X955ahb"], ["https://tec.openplanner.team/stops/Ljubord1", "https://tec.openplanner.team/stops/Ljubrec2"], ["https://tec.openplanner.team/stops/X735aba", "https://tec.openplanner.team/stops/X735abc"], ["https://tec.openplanner.team/stops/Bchgbel1", "https://tec.openplanner.team/stops/Bchgbel2"], ["https://tec.openplanner.team/stops/Bgrhcen1", "https://tec.openplanner.team/stops/Bgrhcen2"], ["https://tec.openplanner.team/stops/Llgvero2", "https://tec.openplanner.team/stops/Llgvero3"], ["https://tec.openplanner.team/stops/Cbwmato2", "https://tec.openplanner.team/stops/Cmqcend2"], ["https://tec.openplanner.team/stops/LCx728-1", "https://tec.openplanner.team/stops/LCxhame1"], ["https://tec.openplanner.team/stops/X713adb", "https://tec.openplanner.team/stops/X713ajc"], ["https://tec.openplanner.team/stops/Lalchar2", "https://tec.openplanner.team/stops/Laltrav1"], ["https://tec.openplanner.team/stops/LBEnina4", "https://tec.openplanner.team/stops/LBEnina6"], ["https://tec.openplanner.team/stops/H4ty285b", "https://tec.openplanner.team/stops/H4ty346b"], ["https://tec.openplanner.team/stops/H1ge179a", "https://tec.openplanner.team/stops/H1no141a"], ["https://tec.openplanner.team/stops/Cobobjo2", "https://tec.openplanner.team/stops/Cpcplac4"], ["https://tec.openplanner.team/stops/LESmont1", "https://tec.openplanner.team/stops/LESmont2"], ["https://tec.openplanner.team/stops/LRMeg--1", "https://tec.openplanner.team/stops/LSfcoll*"], ["https://tec.openplanner.team/stops/Cgobl%C3%A9r1", "https://tec.openplanner.team/stops/Cgoboll3"], ["https://tec.openplanner.team/stops/N503aca", "https://tec.openplanner.team/stops/N503agb"], ["https://tec.openplanner.team/stops/X890adb", "https://tec.openplanner.team/stops/X891acb"], ["https://tec.openplanner.team/stops/H2pe154a", "https://tec.openplanner.team/stops/H3bi118b"], ["https://tec.openplanner.team/stops/LTEnuro1", "https://tec.openplanner.team/stops/LTEzinn2"], ["https://tec.openplanner.team/stops/N544aab", "https://tec.openplanner.team/stops/N544aeb"], ["https://tec.openplanner.team/stops/LPRvill1", "https://tec.openplanner.team/stops/LTRcite1"], ["https://tec.openplanner.team/stops/X363aab", "https://tec.openplanner.team/stops/X363ada"], ["https://tec.openplanner.team/stops/X672adb", "https://tec.openplanner.team/stops/X672apa"], ["https://tec.openplanner.team/stops/LLrc1652", "https://tec.openplanner.team/stops/LLrc1992"], ["https://tec.openplanner.team/stops/Cmafafe2", "https://tec.openplanner.team/stops/Cmmbsit2"], ["https://tec.openplanner.team/stops/H1hw124b", "https://tec.openplanner.team/stops/H1mc126b"], ["https://tec.openplanner.team/stops/LLTcoop2", "https://tec.openplanner.team/stops/LLThosd1"], ["https://tec.openplanner.team/stops/H4ty307b", "https://tec.openplanner.team/stops/H4ty338a"], ["https://tec.openplanner.team/stops/Lhujonc1", "https://tec.openplanner.team/stops/Lhutran1"], ["https://tec.openplanner.team/stops/N522acb", "https://tec.openplanner.team/stops/N522afb"], ["https://tec.openplanner.team/stops/Brebvic1", "https://tec.openplanner.team/stops/Brebvic2"], ["https://tec.openplanner.team/stops/Ljuchap2", "https://tec.openplanner.team/stops/Llgatel1"], ["https://tec.openplanner.team/stops/LREelse2", "https://tec.openplanner.team/stops/LREgrot3"], ["https://tec.openplanner.team/stops/X721akb", "https://tec.openplanner.team/stops/X721amb"], ["https://tec.openplanner.team/stops/LmRh%C3%B6811", "https://tec.openplanner.team/stops/LmRh%C3%B6812"], ["https://tec.openplanner.team/stops/H1ms364a", "https://tec.openplanner.team/stops/H1ms908a"], ["https://tec.openplanner.team/stops/Ccugend2", "https://tec.openplanner.team/stops/NC02aob"], ["https://tec.openplanner.team/stops/N501fhb", "https://tec.openplanner.team/stops/N501ltb"], ["https://tec.openplanner.team/stops/LFAec--1", "https://tec.openplanner.team/stops/LFAsauv2"], ["https://tec.openplanner.team/stops/Cgyduss1", "https://tec.openplanner.team/stops/Cjulamb1"], ["https://tec.openplanner.team/stops/X780ada", "https://tec.openplanner.team/stops/X780akb"], ["https://tec.openplanner.team/stops/LDpulve2", "https://tec.openplanner.team/stops/LFMkrin2"], ["https://tec.openplanner.team/stops/LVLcent1", "https://tec.openplanner.team/stops/LVNcoop1"], ["https://tec.openplanner.team/stops/H1an100a", "https://tec.openplanner.team/stops/H1an101b"], ["https://tec.openplanner.team/stops/X769aga", "https://tec.openplanner.team/stops/X769arb"], ["https://tec.openplanner.team/stops/Lhrcols1", "https://tec.openplanner.team/stops/Lhrcols4"], ["https://tec.openplanner.team/stops/H4cw107a", "https://tec.openplanner.team/stops/H4gz115a"], ["https://tec.openplanner.team/stops/Lemsart1", "https://tec.openplanner.team/stops/Lemsely1"], ["https://tec.openplanner.team/stops/LJAboli1", "https://tec.openplanner.team/stops/LJAfawe2"], ["https://tec.openplanner.team/stops/LhRkirc1", "https://tec.openplanner.team/stops/LhRkirc2"], ["https://tec.openplanner.team/stops/X599afc", "https://tec.openplanner.team/stops/X599afd"], ["https://tec.openplanner.team/stops/LBSchpl2", "https://tec.openplanner.team/stops/LMalamb4"], ["https://tec.openplanner.team/stops/N571aca", "https://tec.openplanner.team/stops/N573amb"], ["https://tec.openplanner.team/stops/LLzcruc2", "https://tec.openplanner.team/stops/LSTvaul1"], ["https://tec.openplanner.team/stops/Bwatgar1", "https://tec.openplanner.team/stops/Bwattri1"], ["https://tec.openplanner.team/stops/LFRrohe2", "https://tec.openplanner.team/stops/LFRspa-2"], ["https://tec.openplanner.team/stops/LBvviem3", "https://tec.openplanner.team/stops/LBvviem4"], ["https://tec.openplanner.team/stops/CMtirou1", "https://tec.openplanner.team/stops/NC01aha"], ["https://tec.openplanner.team/stops/X734ada", "https://tec.openplanner.team/stops/X734adb"], ["https://tec.openplanner.team/stops/X871aab", "https://tec.openplanner.team/stops/X871abb"], ["https://tec.openplanner.team/stops/H1do110a", "https://tec.openplanner.team/stops/H1do124a"], ["https://tec.openplanner.team/stops/H4bq154b", "https://tec.openplanner.team/stops/H4li178a"], ["https://tec.openplanner.team/stops/LTBeg--1", "https://tec.openplanner.team/stops/LTBeg--2"], ["https://tec.openplanner.team/stops/X954abb", "https://tec.openplanner.team/stops/X954aha"], ["https://tec.openplanner.team/stops/LThbatt2", "https://tec.openplanner.team/stops/LTheg--2"], ["https://tec.openplanner.team/stops/LaNmuhl3", "https://tec.openplanner.team/stops/LmNbirt1"], ["https://tec.openplanner.team/stops/LMOcorn2", "https://tec.openplanner.team/stops/LMOcorn4"], ["https://tec.openplanner.team/stops/X828aaa", "https://tec.openplanner.team/stops/X828aab"], ["https://tec.openplanner.team/stops/LOmvill3", "https://tec.openplanner.team/stops/LOmvill4"], ["https://tec.openplanner.team/stops/H4lg103b", "https://tec.openplanner.team/stops/H4rm112b"], ["https://tec.openplanner.team/stops/H2sb223b", "https://tec.openplanner.team/stops/H2sb243b"], ["https://tec.openplanner.team/stops/H4po130a", "https://tec.openplanner.team/stops/H4po130b"], ["https://tec.openplanner.team/stops/X640arb", "https://tec.openplanner.team/stops/X642aac"], ["https://tec.openplanner.team/stops/X736adb", "https://tec.openplanner.team/stops/X736agb"], ["https://tec.openplanner.team/stops/Lgrfalc2", "https://tec.openplanner.team/stops/Llgstap1"], ["https://tec.openplanner.team/stops/LmNkess2", "https://tec.openplanner.team/stops/LmNkrew1"], ["https://tec.openplanner.team/stops/N134aga", "https://tec.openplanner.team/stops/N154aba"], ["https://tec.openplanner.team/stops/LPLfp2-1", "https://tec.openplanner.team/stops/LPLstat2"], ["https://tec.openplanner.team/stops/LMHmeha1", "https://tec.openplanner.team/stops/LWzfuma1"], ["https://tec.openplanner.team/stops/H1bu136a", "https://tec.openplanner.team/stops/H3bi108a"], ["https://tec.openplanner.team/stops/LHolexh2", "https://tec.openplanner.team/stops/LHolone1"], ["https://tec.openplanner.team/stops/X739ahb", "https://tec.openplanner.team/stops/X912aja"], ["https://tec.openplanner.team/stops/LhUkape1", "https://tec.openplanner.team/stops/LhUkape2"], ["https://tec.openplanner.team/stops/Bwatpro1", "https://tec.openplanner.team/stops/Bwatpro2"], ["https://tec.openplanner.team/stops/H4lg101a", "https://tec.openplanner.team/stops/H4rm111a"], ["https://tec.openplanner.team/stops/Lprcard2", "https://tec.openplanner.team/stops/LWetrib2"], ["https://tec.openplanner.team/stops/LFPdeme1", "https://tec.openplanner.team/stops/LFPdeme2"], ["https://tec.openplanner.team/stops/N565aib", "https://tec.openplanner.team/stops/N565aic"], ["https://tec.openplanner.team/stops/N577aaa", "https://tec.openplanner.team/stops/N577aab"], ["https://tec.openplanner.team/stops/LEMgren*", "https://tec.openplanner.team/stops/LMazonn4"], ["https://tec.openplanner.team/stops/Bleugar1", "https://tec.openplanner.team/stops/Bleunaa1"], ["https://tec.openplanner.team/stops/X801atb", "https://tec.openplanner.team/stops/X889aeb"], ["https://tec.openplanner.team/stops/LDmhave2", "https://tec.openplanner.team/stops/LSGsolo1"], ["https://tec.openplanner.team/stops/LSPbass2", "https://tec.openplanner.team/stops/LSPfrai1"], ["https://tec.openplanner.team/stops/X597aaa", "https://tec.openplanner.team/stops/X597ana"], ["https://tec.openplanner.team/stops/X610aja", "https://tec.openplanner.team/stops/X611aba"], ["https://tec.openplanner.team/stops/X224aca", "https://tec.openplanner.team/stops/X398aha"], ["https://tec.openplanner.team/stops/N127baa", "https://tec.openplanner.team/stops/N127bja"], ["https://tec.openplanner.team/stops/Bmalsmc1", "https://tec.openplanner.team/stops/Bopprju1"], ["https://tec.openplanner.team/stops/N501aeb", "https://tec.openplanner.team/stops/N501agb"], ["https://tec.openplanner.team/stops/H1so131f", "https://tec.openplanner.team/stops/H1so133b"], ["https://tec.openplanner.team/stops/X662aia", "https://tec.openplanner.team/stops/X662aja"], ["https://tec.openplanner.team/stops/LSZarbe2", "https://tec.openplanner.team/stops/LTgwarf2"], ["https://tec.openplanner.team/stops/LeUarno1", "https://tec.openplanner.team/stops/LHthest2"], ["https://tec.openplanner.team/stops/H1le124a", "https://tec.openplanner.team/stops/H1le124b"], ["https://tec.openplanner.team/stops/Ccppn1", "https://tec.openplanner.team/stops/Ccppn2"], ["https://tec.openplanner.team/stops/N536afa", "https://tec.openplanner.team/stops/N536afb"], ["https://tec.openplanner.team/stops/N538anb", "https://tec.openplanner.team/stops/N538apa"], ["https://tec.openplanner.team/stops/Lvecase1", "https://tec.openplanner.team/stops/Lvecite2"], ["https://tec.openplanner.team/stops/H2mo124b", "https://tec.openplanner.team/stops/H2mo143b"], ["https://tec.openplanner.team/stops/LVLgotr2", "https://tec.openplanner.team/stops/LVLmart1"], ["https://tec.openplanner.team/stops/N551aha", "https://tec.openplanner.team/stops/N551ahb"], ["https://tec.openplanner.team/stops/Bbstpan1", "https://tec.openplanner.team/stops/Bbstpan2"], ["https://tec.openplanner.team/stops/Bnivfle1", "https://tec.openplanner.team/stops/Bnivpeu2"], ["https://tec.openplanner.team/stops/LSTchat1", "https://tec.openplanner.team/stops/LSTvaul2"], ["https://tec.openplanner.team/stops/LCUgale1", "https://tec.openplanner.team/stops/LCUgale2"], ["https://tec.openplanner.team/stops/H4jm117b", "https://tec.openplanner.team/stops/H4le128a"], ["https://tec.openplanner.team/stops/Btslhau1", "https://tec.openplanner.team/stops/Btsllec1"], ["https://tec.openplanner.team/stops/Cfmltas2", "https://tec.openplanner.team/stops/Cptcamb1"], ["https://tec.openplanner.team/stops/Buccchu1", "https://tec.openplanner.team/stops/Buccdho2"], ["https://tec.openplanner.team/stops/LWOmart1", "https://tec.openplanner.team/stops/LWOmart2"], ["https://tec.openplanner.team/stops/H5qu146a", "https://tec.openplanner.team/stops/H5qu153a"], ["https://tec.openplanner.team/stops/LeLdorf2", "https://tec.openplanner.team/stops/LwRkirc2"], ["https://tec.openplanner.team/stops/LTIp%C3%A9pi2", "https://tec.openplanner.team/stops/LTIsain1"], ["https://tec.openplanner.team/stops/X897amb", "https://tec.openplanner.team/stops/X897ana"], ["https://tec.openplanner.team/stops/Lglsana1", "https://tec.openplanner.team/stops/Llgchau1"], ["https://tec.openplanner.team/stops/Ccyfede1", "https://tec.openplanner.team/stops/Csrcant2"], ["https://tec.openplanner.team/stops/Cmlcaya2", "https://tec.openplanner.team/stops/Cmllait2"], ["https://tec.openplanner.team/stops/H1sd342a", "https://tec.openplanner.team/stops/H1sd347a"], ["https://tec.openplanner.team/stops/Ctucour1", "https://tec.openplanner.team/stops/Cturoge2"], ["https://tec.openplanner.team/stops/Lprhodi1", "https://tec.openplanner.team/stops/Lprhodi2"], ["https://tec.openplanner.team/stops/N151aia", "https://tec.openplanner.team/stops/N153abb"], ["https://tec.openplanner.team/stops/H4ld123a", "https://tec.openplanner.team/stops/H4ld129b"], ["https://tec.openplanner.team/stops/LBslama2", "https://tec.openplanner.team/stops/NL67abb"], ["https://tec.openplanner.team/stops/N426aab", "https://tec.openplanner.team/stops/N426afa"], ["https://tec.openplanner.team/stops/Bixllep2", "https://tec.openplanner.team/stops/Bsgimca2"], ["https://tec.openplanner.team/stops/X793ahb", "https://tec.openplanner.team/stops/X793ajb"], ["https://tec.openplanner.team/stops/Cfvombo1", "https://tec.openplanner.team/stops/Csbberg1"], ["https://tec.openplanner.team/stops/H1eo104a", "https://tec.openplanner.team/stops/H1eo107b"], ["https://tec.openplanner.team/stops/X685aca", "https://tec.openplanner.team/stops/X685aib"], ["https://tec.openplanner.team/stops/Llgfusc4", "https://tec.openplanner.team/stops/Llghec-1"], ["https://tec.openplanner.team/stops/H1gi121b", "https://tec.openplanner.team/stops/H1gi122b"], ["https://tec.openplanner.team/stops/LBLwaid1", "https://tec.openplanner.team/stops/LTrrich1"], ["https://tec.openplanner.team/stops/Btileco2", "https://tec.openplanner.team/stops/Bvlvmar2"], ["https://tec.openplanner.team/stops/X657aca", "https://tec.openplanner.team/stops/X657ada"], ["https://tec.openplanner.team/stops/H2ca100a", "https://tec.openplanner.team/stops/H2ca100b"], ["https://tec.openplanner.team/stops/LSBrouf2", "https://tec.openplanner.team/stops/LSBrouf3"], ["https://tec.openplanner.team/stops/H5el112c", "https://tec.openplanner.team/stops/H5el116b"], ["https://tec.openplanner.team/stops/N137ajb", "https://tec.openplanner.team/stops/N162afa"], ["https://tec.openplanner.team/stops/LHFappe2", "https://tec.openplanner.team/stops/LHFappe4"], ["https://tec.openplanner.team/stops/Cgzlera2", "https://tec.openplanner.team/stops/Cgzrust2"], ["https://tec.openplanner.team/stops/N539apa", "https://tec.openplanner.team/stops/N539ava"], ["https://tec.openplanner.team/stops/Bspkbeu2", "https://tec.openplanner.team/stops/Bspkker2"], ["https://tec.openplanner.team/stops/LHgpost2", "https://tec.openplanner.team/stops/LHgtomb2"], ["https://tec.openplanner.team/stops/Cflglav1", "https://tec.openplanner.team/stops/Cflpost1"], ["https://tec.openplanner.team/stops/X829aeb", "https://tec.openplanner.team/stops/X831aca"], ["https://tec.openplanner.team/stops/LFmlens2", "https://tec.openplanner.team/stops/LFmpoin2"], ["https://tec.openplanner.team/stops/H1ch107b", "https://tec.openplanner.team/stops/H1hh116a"], ["https://tec.openplanner.team/stops/N558amb", "https://tec.openplanner.team/stops/N559aba"], ["https://tec.openplanner.team/stops/Lgrlimi1", "https://tec.openplanner.team/stops/Llgsimo1"], ["https://tec.openplanner.team/stops/N310aba", "https://tec.openplanner.team/stops/N310abb"], ["https://tec.openplanner.team/stops/Bnivasa1", "https://tec.openplanner.team/stops/Bnivsba2"], ["https://tec.openplanner.team/stops/H4bo115b", "https://tec.openplanner.team/stops/H4hu113a"], ["https://tec.openplanner.team/stops/Lchsa632", "https://tec.openplanner.team/stops/Lchtche2"], ["https://tec.openplanner.team/stops/X743aba", "https://tec.openplanner.team/stops/X743aca"], ["https://tec.openplanner.team/stops/Lalmakr2", "https://tec.openplanner.team/stops/Lanpast1"], ["https://tec.openplanner.team/stops/Cnacent3", "https://tec.openplanner.team/stops/Cnaha562"], ["https://tec.openplanner.team/stops/Bperrcr1", "https://tec.openplanner.team/stops/Bperrsr1"], ["https://tec.openplanner.team/stops/LTobilz1", "https://tec.openplanner.team/stops/LToluik1"], ["https://tec.openplanner.team/stops/N135aea", "https://tec.openplanner.team/stops/N135aeb"], ["https://tec.openplanner.team/stops/N555aba", "https://tec.openplanner.team/stops/N555acb"], ["https://tec.openplanner.team/stops/N551aha", "https://tec.openplanner.team/stops/N568acb"], ["https://tec.openplanner.team/stops/Lrcpaqu1", "https://tec.openplanner.team/stops/Lrcrars1"], ["https://tec.openplanner.team/stops/LAmcorn1", "https://tec.openplanner.team/stops/LNHbarr1"], ["https://tec.openplanner.team/stops/Boveklo2", "https://tec.openplanner.team/stops/Bovepla2"], ["https://tec.openplanner.team/stops/Bcrnegl1", "https://tec.openplanner.team/stops/Bcrnnpl1"], ["https://tec.openplanner.team/stops/H4mv191b", "https://tec.openplanner.team/stops/H4os223b"], ["https://tec.openplanner.team/stops/X685aia", "https://tec.openplanner.team/stops/X696aea"], ["https://tec.openplanner.team/stops/H1qg138d", "https://tec.openplanner.team/stops/H1qy134a"], ["https://tec.openplanner.team/stops/Cmccet2", "https://tec.openplanner.team/stops/Cmcceta1"], ["https://tec.openplanner.team/stops/Bndb4ch1", "https://tec.openplanner.team/stops/Bndbpco1"], ["https://tec.openplanner.team/stops/N104aac", "https://tec.openplanner.team/stops/N104acb"], ["https://tec.openplanner.team/stops/LSPjoli2", "https://tec.openplanner.team/stops/LSPwarf1"], ["https://tec.openplanner.team/stops/LlNhube1", "https://tec.openplanner.team/stops/LlNhube2"], ["https://tec.openplanner.team/stops/Lseconc2", "https://tec.openplanner.team/stops/Lsetroq2"], ["https://tec.openplanner.team/stops/X808aba", "https://tec.openplanner.team/stops/X808ajb"], ["https://tec.openplanner.team/stops/X342afb", "https://tec.openplanner.team/stops/X359aaa"], ["https://tec.openplanner.team/stops/N512ada", "https://tec.openplanner.team/stops/N512adb"], ["https://tec.openplanner.team/stops/X608adb", "https://tec.openplanner.team/stops/X608afa"], ["https://tec.openplanner.team/stops/N506acb", "https://tec.openplanner.team/stops/N506bia"], ["https://tec.openplanner.team/stops/X774aca", "https://tec.openplanner.team/stops/X774acb"], ["https://tec.openplanner.team/stops/N511aka", "https://tec.openplanner.team/stops/N511akb"], ["https://tec.openplanner.team/stops/H1gr115b", "https://tec.openplanner.team/stops/H1gr120b"], ["https://tec.openplanner.team/stops/LWRchem2", "https://tec.openplanner.team/stops/LWRcruc1"], ["https://tec.openplanner.team/stops/X878aaa", "https://tec.openplanner.team/stops/X995aga"], ["https://tec.openplanner.team/stops/LDoeg--1", "https://tec.openplanner.team/stops/LHFcaqu2"], ["https://tec.openplanner.team/stops/LTreg--1", "https://tec.openplanner.team/stops/LTrrich2"], ["https://tec.openplanner.team/stops/H2pe157b", "https://tec.openplanner.team/stops/H2pe158a"], ["https://tec.openplanner.team/stops/LVLf10-1", "https://tec.openplanner.team/stops/LVLf10-2"], ["https://tec.openplanner.team/stops/H1er109a", "https://tec.openplanner.team/stops/H1er109b"], ["https://tec.openplanner.team/stops/X923aaa", "https://tec.openplanner.team/stops/X923aab"], ["https://tec.openplanner.team/stops/H1ht121a", "https://tec.openplanner.team/stops/H1ht136a"], ["https://tec.openplanner.team/stops/Bolggar2", "https://tec.openplanner.team/stops/Bolppla2"], ["https://tec.openplanner.team/stops/Cjuapca2", "https://tec.openplanner.team/stops/Cjutrou1"], ["https://tec.openplanner.team/stops/H1cu119a", "https://tec.openplanner.team/stops/H1cu128a"], ["https://tec.openplanner.team/stops/Bgnvcom1", "https://tec.openplanner.team/stops/Brixala1"], ["https://tec.openplanner.team/stops/X734apb", "https://tec.openplanner.team/stops/X734aqa"], ["https://tec.openplanner.team/stops/X724aaa", "https://tec.openplanner.team/stops/X724abb"], ["https://tec.openplanner.team/stops/H1qv110b", "https://tec.openplanner.team/stops/H1qv114a"], ["https://tec.openplanner.team/stops/X782alb", "https://tec.openplanner.team/stops/X782ana"], ["https://tec.openplanner.team/stops/X717afb", "https://tec.openplanner.team/stops/X718aga"], ["https://tec.openplanner.team/stops/Cmtplac7", "https://tec.openplanner.team/stops/Cmtplac8"], ["https://tec.openplanner.team/stops/X669agb", "https://tec.openplanner.team/stops/X669agc"], ["https://tec.openplanner.team/stops/H2fa105a", "https://tec.openplanner.team/stops/H2hg268b"], ["https://tec.openplanner.team/stops/LCEinst1", "https://tec.openplanner.team/stops/LCEplac1"], ["https://tec.openplanner.team/stops/LlZbell2", "https://tec.openplanner.team/stops/LmNmerl2"], ["https://tec.openplanner.team/stops/H2ma208b", "https://tec.openplanner.team/stops/H2sb232b"], ["https://tec.openplanner.team/stops/Bnivhon2", "https://tec.openplanner.team/stops/Bnivpgr2"], ["https://tec.openplanner.team/stops/Lcemc--1", "https://tec.openplanner.team/stops/Lcepont1"], ["https://tec.openplanner.team/stops/Cgzmira3", "https://tec.openplanner.team/stops/Cthha501"], ["https://tec.openplanner.team/stops/Llgcurt1", "https://tec.openplanner.team/stops/Llghong1"], ["https://tec.openplanner.team/stops/N501fla", "https://tec.openplanner.team/stops/N501lwa"], ["https://tec.openplanner.team/stops/N145aec", "https://tec.openplanner.team/stops/N149aca"], ["https://tec.openplanner.team/stops/H4lp124b", "https://tec.openplanner.team/stops/H4my121b"], ["https://tec.openplanner.team/stops/H2ca116a", "https://tec.openplanner.team/stops/H2ca116b"], ["https://tec.openplanner.team/stops/LAMec--1", "https://tec.openplanner.team/stops/LAMec--2"], ["https://tec.openplanner.team/stops/H4ty303a", "https://tec.openplanner.team/stops/H4ty353b"], ["https://tec.openplanner.team/stops/N425acb", "https://tec.openplanner.team/stops/N425ada"], ["https://tec.openplanner.team/stops/X925ajb", "https://tec.openplanner.team/stops/X996aha"], ["https://tec.openplanner.team/stops/H1sg149b", "https://tec.openplanner.team/stops/H1te182a"], ["https://tec.openplanner.team/stops/H4ty306b", "https://tec.openplanner.team/stops/H4ty352a"], ["https://tec.openplanner.team/stops/N538akb", "https://tec.openplanner.team/stops/N538ara"], ["https://tec.openplanner.team/stops/Beclaub2", "https://tec.openplanner.team/stops/H2ec104b"], ["https://tec.openplanner.team/stops/LSPbalm2", "https://tec.openplanner.team/stops/LSPcomm1"], ["https://tec.openplanner.team/stops/Baegegl2", "https://tec.openplanner.team/stops/Baeggar1"], ["https://tec.openplanner.team/stops/N522bvg", "https://tec.openplanner.team/stops/N522bvh"], ["https://tec.openplanner.team/stops/H1ju119a", "https://tec.openplanner.team/stops/H1ju120c"], ["https://tec.openplanner.team/stops/LFArela5", "https://tec.openplanner.team/stops/LVBbvin"], ["https://tec.openplanner.team/stops/LsTgren1", "https://tec.openplanner.team/stops/LwPdorf2"], ["https://tec.openplanner.team/stops/H5at114a", "https://tec.openplanner.team/stops/H5at142a"], ["https://tec.openplanner.team/stops/LTiec--2", "https://tec.openplanner.team/stops/LTiforg2"], ["https://tec.openplanner.team/stops/H4mt216b", "https://tec.openplanner.team/stops/H4mt220b"], ["https://tec.openplanner.team/stops/N248aeb", "https://tec.openplanner.team/stops/N340agb"], ["https://tec.openplanner.team/stops/H4ve135a", "https://tec.openplanner.team/stops/H4ve140a"], ["https://tec.openplanner.team/stops/N536acb", "https://tec.openplanner.team/stops/N562blb"], ["https://tec.openplanner.team/stops/Balsnay2", "https://tec.openplanner.team/stops/Balswsa2"], ["https://tec.openplanner.team/stops/H1ms296a", "https://tec.openplanner.team/stops/H1ms296d"], ["https://tec.openplanner.team/stops/Bsrbbas2", "https://tec.openplanner.team/stops/Bsrbtil1"], ["https://tec.openplanner.team/stops/X804aia", "https://tec.openplanner.team/stops/X804aya"], ["https://tec.openplanner.team/stops/LHHroua1", "https://tec.openplanner.team/stops/LSGmall2"], ["https://tec.openplanner.team/stops/LaLkirc*", "https://tec.openplanner.team/stops/LBhschu2"], ["https://tec.openplanner.team/stops/H4bx167a", "https://tec.openplanner.team/stops/H4rm110a"], ["https://tec.openplanner.team/stops/LTPbeau1", "https://tec.openplanner.team/stops/LTPpisc1"], ["https://tec.openplanner.team/stops/H1mb137a", "https://tec.openplanner.team/stops/H1mb137b"], ["https://tec.openplanner.team/stops/Bbldgar1", "https://tec.openplanner.team/stops/Bbldgar2"], ["https://tec.openplanner.team/stops/H4ty310a", "https://tec.openplanner.team/stops/H4ty310b"], ["https://tec.openplanner.team/stops/LWblesp2", "https://tec.openplanner.team/stops/LWbregn2"], ["https://tec.openplanner.team/stops/N534arb", "https://tec.openplanner.team/stops/N534bga"], ["https://tec.openplanner.team/stops/N508apb", "https://tec.openplanner.team/stops/N516abb"], ["https://tec.openplanner.team/stops/Bovetsa2", "https://tec.openplanner.team/stops/Bwavtrt1"], ["https://tec.openplanner.team/stops/X780aeb", "https://tec.openplanner.team/stops/X790aja"], ["https://tec.openplanner.team/stops/H1qu119b", "https://tec.openplanner.team/stops/H1wa147b"], ["https://tec.openplanner.team/stops/H5el107a", "https://tec.openplanner.team/stops/H5el107b"], ["https://tec.openplanner.team/stops/Ljuvieu1", "https://tec.openplanner.team/stops/Ljuvieu2"], ["https://tec.openplanner.team/stops/N501gca", "https://tec.openplanner.team/stops/N501ljb"], ["https://tec.openplanner.team/stops/X614afa", "https://tec.openplanner.team/stops/X614awb"], ["https://tec.openplanner.team/stops/N254abb", "https://tec.openplanner.team/stops/N254acb"], ["https://tec.openplanner.team/stops/X638ada", "https://tec.openplanner.team/stops/X638aea"], ["https://tec.openplanner.team/stops/X659ana", "https://tec.openplanner.team/stops/X659aza"], ["https://tec.openplanner.team/stops/Cgyduss1", "https://tec.openplanner.team/stops/Cgyduss4"], ["https://tec.openplanner.team/stops/Cfobriq1", "https://tec.openplanner.team/stops/Cfomays1"], ["https://tec.openplanner.team/stops/LBkcarr2", "https://tec.openplanner.team/stops/LlNbusc1"], ["https://tec.openplanner.team/stops/X601aab", "https://tec.openplanner.team/stops/X601ada"], ["https://tec.openplanner.team/stops/Chpceri2", "https://tec.openplanner.team/stops/Chpplac2"], ["https://tec.openplanner.team/stops/N203acb", "https://tec.openplanner.team/stops/N562aza"], ["https://tec.openplanner.team/stops/Bitrgnt2", "https://tec.openplanner.team/stops/Bitrmde2"], ["https://tec.openplanner.team/stops/H2pe162a", "https://tec.openplanner.team/stops/H2sv217b"], ["https://tec.openplanner.team/stops/N516alb", "https://tec.openplanner.team/stops/N516anb"], ["https://tec.openplanner.team/stops/X627aab", "https://tec.openplanner.team/stops/X629aab"], ["https://tec.openplanner.team/stops/X879aca", "https://tec.openplanner.team/stops/X879acb"], ["https://tec.openplanner.team/stops/Llgform1", "https://tec.openplanner.team/stops/Llgsnap3"], ["https://tec.openplanner.team/stops/H4ea127b", "https://tec.openplanner.team/stops/H4ea134b"], ["https://tec.openplanner.team/stops/LLrlour1", "https://tec.openplanner.team/stops/LTHmont1"], ["https://tec.openplanner.team/stops/Ljhsart1", "https://tec.openplanner.team/stops/Lmnjeha1"], ["https://tec.openplanner.team/stops/Bmonbor1", "https://tec.openplanner.team/stops/Bmonbor2"], ["https://tec.openplanner.team/stops/Cwgcamp1", "https://tec.openplanner.team/stops/Cwgplac1"], ["https://tec.openplanner.team/stops/X672aaa", "https://tec.openplanner.team/stops/X672apa"], ["https://tec.openplanner.team/stops/LFMstat2", "https://tec.openplanner.team/stops/LFPknap1"], ["https://tec.openplanner.team/stops/Lpegiet2", "https://tec.openplanner.team/stops/Lpeptle2"], ["https://tec.openplanner.team/stops/X985aca", "https://tec.openplanner.team/stops/X985ada"], ["https://tec.openplanner.team/stops/N135aec", "https://tec.openplanner.team/stops/N135aed"], ["https://tec.openplanner.team/stops/Lsnbrac1", "https://tec.openplanner.team/stops/Lsnbrac3"], ["https://tec.openplanner.team/stops/H4am101b", "https://tec.openplanner.team/stops/H4rs117a"], ["https://tec.openplanner.team/stops/Bqueaga1", "https://tec.openplanner.team/stops/Bquepbr1"], ["https://tec.openplanner.team/stops/N212aha", "https://tec.openplanner.team/stops/N212ahb"], ["https://tec.openplanner.team/stops/LFTcroi3", "https://tec.openplanner.team/stops/LFTeg--2"], ["https://tec.openplanner.team/stops/H2mo126a", "https://tec.openplanner.team/stops/H2mo145a"], ["https://tec.openplanner.team/stops/LOCbois1", "https://tec.openplanner.team/stops/N223abb"], ["https://tec.openplanner.team/stops/N501aha", "https://tec.openplanner.team/stops/N501cla"], ["https://tec.openplanner.team/stops/X615apa", "https://tec.openplanner.team/stops/X615asa"], ["https://tec.openplanner.team/stops/H2ma204b", "https://tec.openplanner.team/stops/H3th130b"], ["https://tec.openplanner.team/stops/N522abb", "https://tec.openplanner.team/stops/N522afa"], ["https://tec.openplanner.team/stops/Croegli1", "https://tec.openplanner.team/stops/Crojume2"], ["https://tec.openplanner.team/stops/LTPsatr1", "https://tec.openplanner.team/stops/LTPsatr2"], ["https://tec.openplanner.team/stops/N202aba", "https://tec.openplanner.team/stops/N254aha"], ["https://tec.openplanner.team/stops/Cchprun2", "https://tec.openplanner.team/stops/Cchtiro3"], ["https://tec.openplanner.team/stops/N120abb", "https://tec.openplanner.team/stops/N120abd"], ["https://tec.openplanner.team/stops/N521aba", "https://tec.openplanner.team/stops/N521aqa"], ["https://tec.openplanner.team/stops/N117bca", "https://tec.openplanner.team/stops/N117bcb"], ["https://tec.openplanner.team/stops/X757aab", "https://tec.openplanner.team/stops/X758aea"], ["https://tec.openplanner.team/stops/Lrcastr2", "https://tec.openplanner.team/stops/Lrcastr4"], ["https://tec.openplanner.team/stops/Btslcej1", "https://tec.openplanner.team/stops/Btslcej2"], ["https://tec.openplanner.team/stops/Lsmcime*", "https://tec.openplanner.team/stops/Lsmh3022"], ["https://tec.openplanner.team/stops/Bbcocou1", "https://tec.openplanner.team/stops/Bbcopre1"], ["https://tec.openplanner.team/stops/H1fr151a", "https://tec.openplanner.team/stops/H1fr151b"], ["https://tec.openplanner.team/stops/X650aba", "https://tec.openplanner.team/stops/X650abb"], ["https://tec.openplanner.team/stops/H1ci103a", "https://tec.openplanner.team/stops/H1hn206b"], ["https://tec.openplanner.team/stops/N234aaa", "https://tec.openplanner.team/stops/N234aca"], ["https://tec.openplanner.team/stops/H1al106a", "https://tec.openplanner.team/stops/H1go169a"], ["https://tec.openplanner.team/stops/Bfelada1", "https://tec.openplanner.team/stops/Bfelrav1"], ["https://tec.openplanner.team/stops/X640aab", "https://tec.openplanner.team/stops/X675aab"], ["https://tec.openplanner.team/stops/N540ada", "https://tec.openplanner.team/stops/N540adb"], ["https://tec.openplanner.team/stops/Lbocomm2", "https://tec.openplanner.team/stops/Lstchu-4"], ["https://tec.openplanner.team/stops/Llgnico1", "https://tec.openplanner.team/stops/LlgnicT1"], ["https://tec.openplanner.team/stops/LBieg--3", "https://tec.openplanner.team/stops/LSubass1"], ["https://tec.openplanner.team/stops/Cjuheig1", "https://tec.openplanner.team/stops/Crojume1"], ["https://tec.openplanner.team/stops/X902ajb", "https://tec.openplanner.team/stops/X902ama"], ["https://tec.openplanner.team/stops/X715aia", "https://tec.openplanner.team/stops/X715aqa"], ["https://tec.openplanner.team/stops/LBIcabi1", "https://tec.openplanner.team/stops/LBIhann2"], ["https://tec.openplanner.team/stops/LkEcoop1", "https://tec.openplanner.team/stops/LkEwolf1"], ["https://tec.openplanner.team/stops/H1br132a", "https://tec.openplanner.team/stops/H1ev149b"], ["https://tec.openplanner.team/stops/LMolone1", "https://tec.openplanner.team/stops/LMovich1"], ["https://tec.openplanner.team/stops/N547ama", "https://tec.openplanner.team/stops/N548acb"], ["https://tec.openplanner.team/stops/Cjumall1", "https://tec.openplanner.team/stops/Cjuspin1"], ["https://tec.openplanner.team/stops/H1as102b", "https://tec.openplanner.team/stops/H1nv324a"], ["https://tec.openplanner.team/stops/H1he104a", "https://tec.openplanner.team/stops/H1he104b"], ["https://tec.openplanner.team/stops/H1ag104a", "https://tec.openplanner.team/stops/H1ro140a"], ["https://tec.openplanner.team/stops/X904aba", "https://tec.openplanner.team/stops/X904abb"], ["https://tec.openplanner.team/stops/N560aab", "https://tec.openplanner.team/stops/N560adb"], ["https://tec.openplanner.team/stops/Louencl1", "https://tec.openplanner.team/stops/Louencl2"], ["https://tec.openplanner.team/stops/Lrelier1", "https://tec.openplanner.team/stops/Lrelier2"], ["https://tec.openplanner.team/stops/X622aaa", "https://tec.openplanner.team/stops/X622aea"], ["https://tec.openplanner.team/stops/X805akb", "https://tec.openplanner.team/stops/X873aba"], ["https://tec.openplanner.team/stops/Bnivgam1", "https://tec.openplanner.team/stops/Bnivmet2"], ["https://tec.openplanner.team/stops/Llghugo2", "https://tec.openplanner.team/stops/Llgplat2"], ["https://tec.openplanner.team/stops/Cauushm1", "https://tec.openplanner.team/stops/N543aja"], ["https://tec.openplanner.team/stops/N111aca", "https://tec.openplanner.team/stops/N111aeb"], ["https://tec.openplanner.team/stops/N232bwa", "https://tec.openplanner.team/stops/N260afa"], ["https://tec.openplanner.team/stops/Cmldeto1", "https://tec.openplanner.team/stops/Cmlrang1"], ["https://tec.openplanner.team/stops/Laddelc2", "https://tec.openplanner.team/stops/Ladxhen2"], ["https://tec.openplanner.team/stops/H1ss350b", "https://tec.openplanner.team/stops/H1ss351b"], ["https://tec.openplanner.team/stops/X669abc", "https://tec.openplanner.team/stops/X672aeb"], ["https://tec.openplanner.team/stops/LBEchan2", "https://tec.openplanner.team/stops/LBEhaye2"], ["https://tec.openplanner.team/stops/Bwavnam2", "https://tec.openplanner.team/stops/Bwavnam4"], ["https://tec.openplanner.team/stops/Lghmaha1", "https://tec.openplanner.team/stops/Lghpier2"], ["https://tec.openplanner.team/stops/N146aea", "https://tec.openplanner.team/stops/N146aeb"], ["https://tec.openplanner.team/stops/X892aga", "https://tec.openplanner.team/stops/X892agb"], ["https://tec.openplanner.team/stops/X993adb", "https://tec.openplanner.team/stops/X995aca"], ["https://tec.openplanner.team/stops/Ctachst2", "https://tec.openplanner.team/stops/Ctaprai3"], ["https://tec.openplanner.team/stops/Bpthcgo1", "https://tec.openplanner.team/stops/Bpthcgo2"], ["https://tec.openplanner.team/stops/Lagarde1", "https://tec.openplanner.team/stops/Lgrgoff1"], ["https://tec.openplanner.team/stops/LmUkape2", "https://tec.openplanner.team/stops/LrOtria2"], ["https://tec.openplanner.team/stops/H2ll177b", "https://tec.openplanner.team/stops/H2ll190b"], ["https://tec.openplanner.team/stops/X898afa", "https://tec.openplanner.team/stops/X898aob"], ["https://tec.openplanner.team/stops/Lcealig2", "https://tec.openplanner.team/stops/Lceludg1"], ["https://tec.openplanner.team/stops/N208aab", "https://tec.openplanner.team/stops/N209alb"], ["https://tec.openplanner.team/stops/LHUanth1", "https://tec.openplanner.team/stops/LHUfont2"], ["https://tec.openplanner.team/stops/LATcham*", "https://tec.openplanner.team/stops/LATfont1"], ["https://tec.openplanner.team/stops/X897axa", "https://tec.openplanner.team/stops/X951acb"], ["https://tec.openplanner.team/stops/N132afa", "https://tec.openplanner.team/stops/N136aaa"], ["https://tec.openplanner.team/stops/LWAmois2", "https://tec.openplanner.team/stops/LWAor--2"], ["https://tec.openplanner.team/stops/N528aqb", "https://tec.openplanner.team/stops/N528ata"], ["https://tec.openplanner.team/stops/X618aeb", "https://tec.openplanner.team/stops/X696ada"], ["https://tec.openplanner.team/stops/LLUgend2", "https://tec.openplanner.team/stops/LLUpier1"], ["https://tec.openplanner.team/stops/Clocroi1", "https://tec.openplanner.team/stops/Clogfay1"], ["https://tec.openplanner.team/stops/LBkwind1", "https://tec.openplanner.team/stops/LWEmito1"], ["https://tec.openplanner.team/stops/Cmehels1", "https://tec.openplanner.team/stops/Cmerdby2"], ["https://tec.openplanner.team/stops/Cgzabau2", "https://tec.openplanner.team/stops/Cgzdeve1"], ["https://tec.openplanner.team/stops/LSoboul1", "https://tec.openplanner.team/stops/LSoeg--1"], ["https://tec.openplanner.team/stops/LAvambr1", "https://tec.openplanner.team/stops/LAvatri2"], ["https://tec.openplanner.team/stops/H1mj122a", "https://tec.openplanner.team/stops/H1mj129a"], ["https://tec.openplanner.team/stops/LFIinse2", "https://tec.openplanner.team/stops/LMYroin2"], ["https://tec.openplanner.team/stops/N543bia", "https://tec.openplanner.team/stops/N543bta"], ["https://tec.openplanner.team/stops/H4do202a", "https://tec.openplanner.team/stops/H4mo192a"], ["https://tec.openplanner.team/stops/H3bi101b", "https://tec.openplanner.team/stops/H3bi110b"], ["https://tec.openplanner.team/stops/LGegare1", "https://tec.openplanner.team/stops/LkEsouf2"], ["https://tec.openplanner.team/stops/H4ty343b", "https://tec.openplanner.team/stops/H4ty345b"], ["https://tec.openplanner.team/stops/Bjodcar1", "https://tec.openplanner.team/stops/Bjodgar1"], ["https://tec.openplanner.team/stops/Bsengma1", "https://tec.openplanner.team/stops/Bsenpeu2"], ["https://tec.openplanner.team/stops/Brsgece2", "https://tec.openplanner.team/stops/Brsgera2"], ["https://tec.openplanner.team/stops/Bitrpri2", "https://tec.openplanner.team/stops/Bosqpqu2"], ["https://tec.openplanner.team/stops/H1ev112a", "https://tec.openplanner.team/stops/H1ev114a"], ["https://tec.openplanner.team/stops/Cgy4bra1", "https://tec.openplanner.team/stops/Cgyhstj2"], ["https://tec.openplanner.team/stops/N218aab", "https://tec.openplanner.team/stops/N218aba"], ["https://tec.openplanner.team/stops/LNAmart2", "https://tec.openplanner.team/stops/LSSvill2"], ["https://tec.openplanner.team/stops/Bsengma2", "https://tec.openplanner.team/stops/H2se105a"], ["https://tec.openplanner.team/stops/Becepri1", "https://tec.openplanner.team/stops/H2ec106b"], ["https://tec.openplanner.team/stops/X808aha", "https://tec.openplanner.team/stops/X808akb"], ["https://tec.openplanner.team/stops/H4mo181d", "https://tec.openplanner.team/stops/H4mo183a"], ["https://tec.openplanner.team/stops/X757aka", "https://tec.openplanner.team/stops/X757ala"], ["https://tec.openplanner.team/stops/Cfaheni1", "https://tec.openplanner.team/stops/Cpl4bra2"], ["https://tec.openplanner.team/stops/H1ol137b", "https://tec.openplanner.team/stops/H1ol145b"], ["https://tec.openplanner.team/stops/Loudela2", "https://tec.openplanner.team/stops/Lseblan*"], ["https://tec.openplanner.team/stops/X657afa", "https://tec.openplanner.team/stops/X670aoa"], ["https://tec.openplanner.team/stops/X361aca", "https://tec.openplanner.team/stops/X362ada"], ["https://tec.openplanner.team/stops/LBjvill3", "https://tec.openplanner.team/stops/LTB105-2"], ["https://tec.openplanner.team/stops/H1je216a", "https://tec.openplanner.team/stops/H1qu101b"], ["https://tec.openplanner.team/stops/LAWkone2", "https://tec.openplanner.team/stops/LAWroug1"], ["https://tec.openplanner.team/stops/Bcrbrpb1", "https://tec.openplanner.team/stops/Bmsgrco1"], ["https://tec.openplanner.team/stops/Bnivrsa2", "https://tec.openplanner.team/stops/Bnivsba1"], ["https://tec.openplanner.team/stops/X897axb", "https://tec.openplanner.team/stops/X993aja"], ["https://tec.openplanner.team/stops/LSdbote2", "https://tec.openplanner.team/stops/LSdsar52"], ["https://tec.openplanner.team/stops/NL76arb", "https://tec.openplanner.team/stops/NL76asb"], ["https://tec.openplanner.team/stops/N390adb", "https://tec.openplanner.team/stops/X991aeb"], ["https://tec.openplanner.team/stops/Blhumpo2", "https://tec.openplanner.team/stops/Blhumpo3"], ["https://tec.openplanner.team/stops/N501bcb", "https://tec.openplanner.team/stops/N501mca"], ["https://tec.openplanner.team/stops/Chhclde2", "https://tec.openplanner.team/stops/Ctybaco1"], ["https://tec.openplanner.team/stops/X616afb", "https://tec.openplanner.team/stops/X625agb"], ["https://tec.openplanner.team/stops/LrUweve2", "https://tec.openplanner.team/stops/LsF39--2"], ["https://tec.openplanner.team/stops/LCsraws2", "https://tec.openplanner.team/stops/LVBneuv1"], ["https://tec.openplanner.team/stops/N501hvb", "https://tec.openplanner.team/stops/N501hyb"], ["https://tec.openplanner.team/stops/Cmtcapi1", "https://tec.openplanner.team/stops/Cmtfoye2"], ["https://tec.openplanner.team/stops/LHUchpl1", "https://tec.openplanner.team/stops/LHUec--1"], ["https://tec.openplanner.team/stops/LSEquar1", "https://tec.openplanner.team/stops/LSpfond2"], ["https://tec.openplanner.team/stops/X752acb", "https://tec.openplanner.team/stops/X757acb"], ["https://tec.openplanner.team/stops/LlNbruc1", "https://tec.openplanner.team/stops/LlNlimb2"], ["https://tec.openplanner.team/stops/H1ms254d", "https://tec.openplanner.team/stops/H1ms260b"], ["https://tec.openplanner.team/stops/X896afb", "https://tec.openplanner.team/stops/X897apb"], ["https://tec.openplanner.team/stops/X750bab", "https://tec.openplanner.team/stops/X780aja"], ["https://tec.openplanner.team/stops/H1eu105a", "https://tec.openplanner.team/stops/H1eu105b"], ["https://tec.openplanner.team/stops/Brsgsan1", "https://tec.openplanner.team/stops/Buccptj1"], ["https://tec.openplanner.team/stops/Brosegl1", "https://tec.openplanner.team/stops/H2gy101b"], ["https://tec.openplanner.team/stops/LMHoha-2", "https://tec.openplanner.team/stops/LMHtill2"], ["https://tec.openplanner.team/stops/Lscbour2", "https://tec.openplanner.team/stops/Lscpamp1"], ["https://tec.openplanner.team/stops/LTIgare3", "https://tec.openplanner.team/stops/LTIpres1"], ["https://tec.openplanner.team/stops/N312abb", "https://tec.openplanner.team/stops/N312ada"], ["https://tec.openplanner.team/stops/LCxc6192", "https://tec.openplanner.team/stops/LCxcour2"], ["https://tec.openplanner.team/stops/LCsbors2", "https://tec.openplanner.team/stops/LCscarr4"], ["https://tec.openplanner.team/stops/H2ha138b", "https://tec.openplanner.team/stops/H2ha139b"], ["https://tec.openplanner.team/stops/N534aph", "https://tec.openplanner.team/stops/N534awb"], ["https://tec.openplanner.team/stops/N529acb", "https://tec.openplanner.team/stops/N529aia"], ["https://tec.openplanner.team/stops/H4wi161a", "https://tec.openplanner.team/stops/H4wi161b"], ["https://tec.openplanner.team/stops/X804ayb", "https://tec.openplanner.team/stops/X804baa"], ["https://tec.openplanner.team/stops/Cctvche2", "https://tec.openplanner.team/stops/NC11ala"], ["https://tec.openplanner.team/stops/Bmelegl2", "https://tec.openplanner.team/stops/Bmelmqu2"], ["https://tec.openplanner.team/stops/X659aga", "https://tec.openplanner.team/stops/X659ata"], ["https://tec.openplanner.team/stops/X764afb", "https://tec.openplanner.team/stops/X791aab"], ["https://tec.openplanner.team/stops/N349aga", "https://tec.openplanner.team/stops/X349aic"], ["https://tec.openplanner.team/stops/LFCotte2", "https://tec.openplanner.team/stops/LFMrijk2"], ["https://tec.openplanner.team/stops/H4do106b", "https://tec.openplanner.team/stops/H4ev119a"], ["https://tec.openplanner.team/stops/LhSfrei2", "https://tec.openplanner.team/stops/LhSkape2"], ["https://tec.openplanner.team/stops/N201aoc", "https://tec.openplanner.team/stops/N201awb"], ["https://tec.openplanner.team/stops/LAWaube1", "https://tec.openplanner.team/stops/LAWvold2"], ["https://tec.openplanner.team/stops/H5el111b", "https://tec.openplanner.team/stops/H5rx104a"], ["https://tec.openplanner.team/stops/H1cu111b", "https://tec.openplanner.team/stops/H1cu113a"], ["https://tec.openplanner.team/stops/X662aga", "https://tec.openplanner.team/stops/X662ana"], ["https://tec.openplanner.team/stops/Bwatms09", "https://tec.openplanner.team/stops/Bwatmsj8"], ["https://tec.openplanner.team/stops/Cmlchan1", "https://tec.openplanner.team/stops/Cmltomb2"], ["https://tec.openplanner.team/stops/N512anb", "https://tec.openplanner.team/stops/NL68adc"], ["https://tec.openplanner.team/stops/N118aqb", "https://tec.openplanner.team/stops/N118aub"], ["https://tec.openplanner.team/stops/H4to133b", "https://tec.openplanner.team/stops/H5at136a"], ["https://tec.openplanner.team/stops/N528aoa", "https://tec.openplanner.team/stops/N528apb"], ["https://tec.openplanner.team/stops/X760aaa", "https://tec.openplanner.team/stops/X760abb"], ["https://tec.openplanner.team/stops/X939afa", "https://tec.openplanner.team/stops/X940aga"], ["https://tec.openplanner.team/stops/X664alb", "https://tec.openplanner.team/stops/X664ama"], ["https://tec.openplanner.team/stops/Llgchai1", "https://tec.openplanner.team/stops/Llggerm2"], ["https://tec.openplanner.team/stops/X991aaa", "https://tec.openplanner.team/stops/X991afb"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X774aec"], ["https://tec.openplanner.team/stops/Crsaise4", "https://tec.openplanner.team/stops/Crswaut2"], ["https://tec.openplanner.team/stops/H4ka178b", "https://tec.openplanner.team/stops/H4ka185b"], ["https://tec.openplanner.team/stops/N538aza", "https://tec.openplanner.team/stops/N538azb"], ["https://tec.openplanner.team/stops/Cfmnoci1", "https://tec.openplanner.team/stops/Cfmnoci2"], ["https://tec.openplanner.team/stops/Cgocolo1", "https://tec.openplanner.team/stops/Cgorosa2"], ["https://tec.openplanner.team/stops/LClsacr1", "https://tec.openplanner.team/stops/LClsacr2"], ["https://tec.openplanner.team/stops/H2fy122a", "https://tec.openplanner.team/stops/H2fy122b"], ["https://tec.openplanner.team/stops/H4lz117a", "https://tec.openplanner.team/stops/H4lz128a"], ["https://tec.openplanner.team/stops/LRReg--1", "https://tec.openplanner.team/stops/LRReg--2"], ["https://tec.openplanner.team/stops/LVBmonu1", "https://tec.openplanner.team/stops/LVBvill2"], ["https://tec.openplanner.team/stops/Cgdfoca2", "https://tec.openplanner.team/stops/Csylaha2"], ["https://tec.openplanner.team/stops/X758afa", "https://tec.openplanner.team/stops/X758agb"], ["https://tec.openplanner.team/stops/Ljemont1", "https://tec.openplanner.team/stops/Ljexhav3"], ["https://tec.openplanner.team/stops/N204aaa", "https://tec.openplanner.team/stops/N205aba"], ["https://tec.openplanner.team/stops/Csocime1", "https://tec.openplanner.team/stops/Ctrepin2"], ["https://tec.openplanner.team/stops/N254aga", "https://tec.openplanner.team/stops/N254agb"], ["https://tec.openplanner.team/stops/H1ss348a", "https://tec.openplanner.team/stops/H1ss351a"], ["https://tec.openplanner.team/stops/H1hl123b", "https://tec.openplanner.team/stops/H1hl126a"], ["https://tec.openplanner.team/stops/X877aca", "https://tec.openplanner.team/stops/X877ada"], ["https://tec.openplanner.team/stops/X736afa", "https://tec.openplanner.team/stops/X753abb"], ["https://tec.openplanner.team/stops/Bwatran2", "https://tec.openplanner.team/stops/Bwatrte1"], ["https://tec.openplanner.team/stops/X801bbb", "https://tec.openplanner.team/stops/X801bha"], ["https://tec.openplanner.team/stops/Bblapra2", "https://tec.openplanner.team/stops/Bwaunce1"], ["https://tec.openplanner.team/stops/X695aba", "https://tec.openplanner.team/stops/X695aca"], ["https://tec.openplanner.team/stops/N232arb", "https://tec.openplanner.team/stops/N232bra"], ["https://tec.openplanner.team/stops/Lvearle4", "https://tec.openplanner.team/stops/Lvewaut1"], ["https://tec.openplanner.team/stops/LTIgare1", "https://tec.openplanner.team/stops/LTIgare3"], ["https://tec.openplanner.team/stops/Bhanath2", "https://tec.openplanner.team/stops/LHNathe1"], ["https://tec.openplanner.team/stops/X911adb", "https://tec.openplanner.team/stops/X911ava"], ["https://tec.openplanner.team/stops/LVSpn--1", "https://tec.openplanner.team/stops/LVSpn--2"], ["https://tec.openplanner.team/stops/H1fy121a", "https://tec.openplanner.team/stops/H1fy142a"], ["https://tec.openplanner.team/stops/LERdeho1", "https://tec.openplanner.team/stops/LHseg--1"], ["https://tec.openplanner.team/stops/Cragoss2", "https://tec.openplanner.team/stops/Crasocq1"], ["https://tec.openplanner.team/stops/Bpernov1", "https://tec.openplanner.team/stops/Bperrsr1"], ["https://tec.openplanner.team/stops/LkAmess2", "https://tec.openplanner.team/stops/LkAsonn1"], ["https://tec.openplanner.team/stops/N337aha", "https://tec.openplanner.team/stops/N339aca"], ["https://tec.openplanner.team/stops/LSTparf1", "https://tec.openplanner.team/stops/LSTparf2"], ["https://tec.openplanner.team/stops/Ccaegli3", "https://tec.openplanner.team/stops/Ccaegli4"], ["https://tec.openplanner.team/stops/Llgbobu1", "https://tec.openplanner.team/stops/Lmochar1"], ["https://tec.openplanner.team/stops/LCPaube1", "https://tec.openplanner.team/stops/LCPaube2"], ["https://tec.openplanner.team/stops/X777aab", "https://tec.openplanner.team/stops/X777aba"], ["https://tec.openplanner.team/stops/LTRferm1", "https://tec.openplanner.team/stops/LTRferm2"], ["https://tec.openplanner.team/stops/N551agb", "https://tec.openplanner.team/stops/N551aqb"], ["https://tec.openplanner.team/stops/Cmaleri2", "https://tec.openplanner.team/stops/Cmastma4"], ["https://tec.openplanner.team/stops/N121aea", "https://tec.openplanner.team/stops/N121aeb"], ["https://tec.openplanner.team/stops/LThhoul1", "https://tec.openplanner.team/stops/LThsere1"], ["https://tec.openplanner.team/stops/X731aga", "https://tec.openplanner.team/stops/X731ahb"], ["https://tec.openplanner.team/stops/LmHschm2", "https://tec.openplanner.team/stops/LrOwahl1"], ["https://tec.openplanner.team/stops/N348aeb", "https://tec.openplanner.team/stops/N351ara"], ["https://tec.openplanner.team/stops/LCvmonu1", "https://tec.openplanner.team/stops/LLEgare1"], ["https://tec.openplanner.team/stops/X734and", "https://tec.openplanner.team/stops/X775acb"], ["https://tec.openplanner.team/stops/N201akb", "https://tec.openplanner.team/stops/N211akb"], ["https://tec.openplanner.team/stops/Lbotilf1", "https://tec.openplanner.team/stops/Lbotilf2"], ["https://tec.openplanner.team/stops/H4mv190a", "https://tec.openplanner.team/stops/H4mv195a"], ["https://tec.openplanner.team/stops/LaAdiep1", "https://tec.openplanner.team/stops/LaAlinz2"], ["https://tec.openplanner.team/stops/H1vs144a", "https://tec.openplanner.team/stops/H1vs146a"], ["https://tec.openplanner.team/stops/LAWdefu3", "https://tec.openplanner.team/stops/LBIpont2"], ["https://tec.openplanner.team/stops/LmTkirc1", "https://tec.openplanner.team/stops/LmTkirc2"], ["https://tec.openplanner.team/stops/X740aab", "https://tec.openplanner.team/stops/X740aca"], ["https://tec.openplanner.team/stops/Bglacsr1", "https://tec.openplanner.team/stops/Bwaypav1"], ["https://tec.openplanner.team/stops/H1bn114b", "https://tec.openplanner.team/stops/H1bn148b"], ["https://tec.openplanner.team/stops/X622aca", "https://tec.openplanner.team/stops/X622ada"], ["https://tec.openplanner.team/stops/Llglave1", "https://tec.openplanner.team/stops/Llglave2"], ["https://tec.openplanner.team/stops/Bcbqegl2", "https://tec.openplanner.team/stops/Bcbqufo2"], ["https://tec.openplanner.team/stops/H4bc104b", "https://tec.openplanner.team/stops/H5bl116a"], ["https://tec.openplanner.team/stops/Llgcoro2", "https://tec.openplanner.team/stops/Llgtir-2"], ["https://tec.openplanner.team/stops/X922ada", "https://tec.openplanner.team/stops/X922aeb"], ["https://tec.openplanner.team/stops/Cvvmonu2", "https://tec.openplanner.team/stops/Cvvsncb1"], ["https://tec.openplanner.team/stops/Bbcolno1", "https://tec.openplanner.team/stops/H3br102a"], ["https://tec.openplanner.team/stops/N232aha", "https://tec.openplanner.team/stops/N232bpb"], ["https://tec.openplanner.team/stops/LVPgrot1", "https://tec.openplanner.team/stops/LVPgrot4"], ["https://tec.openplanner.team/stops/LHarenn1", "https://tec.openplanner.team/stops/LOurena2"], ["https://tec.openplanner.team/stops/Ccyga7", "https://tec.openplanner.team/stops/NH01akb"], ["https://tec.openplanner.team/stops/X777aba", "https://tec.openplanner.team/stops/X784aia"], ["https://tec.openplanner.team/stops/N533ada", "https://tec.openplanner.team/stops/N568aca"], ["https://tec.openplanner.team/stops/Bsencen2", "https://tec.openplanner.team/stops/Bsences2"], ["https://tec.openplanner.team/stops/Clbecol1", "https://tec.openplanner.team/stops/Clbecol2"], ["https://tec.openplanner.team/stops/LERpouh1", "https://tec.openplanner.team/stops/X512aib"], ["https://tec.openplanner.team/stops/LMNjard1", "https://tec.openplanner.team/stops/LMNjard2"], ["https://tec.openplanner.team/stops/Csspn1", "https://tec.openplanner.team/stops/Csygare1"], ["https://tec.openplanner.team/stops/H4bc101c", "https://tec.openplanner.team/stops/H5pe128a"], ["https://tec.openplanner.team/stops/Cgoloca1", "https://tec.openplanner.team/stops/Cgosoux2"], ["https://tec.openplanner.team/stops/X952adb", "https://tec.openplanner.team/stops/X952aia"], ["https://tec.openplanner.team/stops/Lcapisc2", "https://tec.openplanner.team/stops/Lvcchau2"], ["https://tec.openplanner.team/stops/H1al146a", "https://tec.openplanner.team/stops/H1fy143a"], ["https://tec.openplanner.team/stops/H1nm138a", "https://tec.openplanner.team/stops/H1nm139b"], ["https://tec.openplanner.team/stops/LWabela1", "https://tec.openplanner.team/stops/LWargeu1"], ["https://tec.openplanner.team/stops/X725ala", "https://tec.openplanner.team/stops/X725ama"], ["https://tec.openplanner.team/stops/H1ge116b", "https://tec.openplanner.team/stops/H1sb144b"], ["https://tec.openplanner.team/stops/N551ahb", "https://tec.openplanner.team/stops/N552acb"], ["https://tec.openplanner.team/stops/N161aab", "https://tec.openplanner.team/stops/N161abd"], ["https://tec.openplanner.team/stops/X910adb", "https://tec.openplanner.team/stops/X910afc"], ["https://tec.openplanner.team/stops/LLYtir-1", "https://tec.openplanner.team/stops/LOMdTEC2"], ["https://tec.openplanner.team/stops/X774aba", "https://tec.openplanner.team/stops/X954agb"], ["https://tec.openplanner.team/stops/H4bo178a", "https://tec.openplanner.team/stops/H4bo178b"], ["https://tec.openplanner.team/stops/Bsomtce1", "https://tec.openplanner.team/stops/N584bna"], ["https://tec.openplanner.team/stops/H1ro135b", "https://tec.openplanner.team/stops/H1ro138a"], ["https://tec.openplanner.team/stops/N501meb", "https://tec.openplanner.team/stops/N501mez"], ["https://tec.openplanner.team/stops/N111aeb", "https://tec.openplanner.team/stops/N113aba"], ["https://tec.openplanner.team/stops/X899aaa", "https://tec.openplanner.team/stops/X899adb"], ["https://tec.openplanner.team/stops/LROchap1", "https://tec.openplanner.team/stops/LWaruth2"], ["https://tec.openplanner.team/stops/N501lgb", "https://tec.openplanner.team/stops/N501ljb"], ["https://tec.openplanner.team/stops/Cmofosb2", "https://tec.openplanner.team/stops/Cmogrbu2"], ["https://tec.openplanner.team/stops/Llmcomb1", "https://tec.openplanner.team/stops/Llmdavi2"], ["https://tec.openplanner.team/stops/Bcsebde1", "https://tec.openplanner.team/stops/Bcsepes2"], ["https://tec.openplanner.team/stops/H1mk110a", "https://tec.openplanner.team/stops/H1mk116b"], ["https://tec.openplanner.team/stops/LBSneuv1", "https://tec.openplanner.team/stops/LBStec-2"], ["https://tec.openplanner.team/stops/Bquebut2", "https://tec.openplanner.team/stops/Bquecar1"], ["https://tec.openplanner.team/stops/LGrchpl1", "https://tec.openplanner.team/stops/LGrchpl2"], ["https://tec.openplanner.team/stops/X948arb", "https://tec.openplanner.team/stops/X948awa"], ["https://tec.openplanner.team/stops/N117aba", "https://tec.openplanner.team/stops/N117ajb"], ["https://tec.openplanner.team/stops/LBTwauc1", "https://tec.openplanner.team/stops/LBTwauc2"], ["https://tec.openplanner.team/stops/H1gn148b", "https://tec.openplanner.team/stops/H1gn149b"], ["https://tec.openplanner.team/stops/H2go114a", "https://tec.openplanner.team/stops/H2go114c"], ["https://tec.openplanner.team/stops/X742aaa", "https://tec.openplanner.team/stops/X742abb"], ["https://tec.openplanner.team/stops/H4ir162a", "https://tec.openplanner.team/stops/H4ir163c"], ["https://tec.openplanner.team/stops/Cflfaub1", "https://tec.openplanner.team/stops/Cflgazo2"], ["https://tec.openplanner.team/stops/N387aab", "https://tec.openplanner.team/stops/N387aha"], ["https://tec.openplanner.team/stops/N501dpb", "https://tec.openplanner.team/stops/N501ggb"], ["https://tec.openplanner.team/stops/X908ajb", "https://tec.openplanner.team/stops/X908amb"], ["https://tec.openplanner.team/stops/H1ho133a", "https://tec.openplanner.team/stops/H1ho135a"], ["https://tec.openplanner.team/stops/LMNcite2", "https://tec.openplanner.team/stops/LPbec--2"], ["https://tec.openplanner.team/stops/N230ahb", "https://tec.openplanner.team/stops/N231abb"], ["https://tec.openplanner.team/stops/Cchsud06", "https://tec.openplanner.team/stops/Cchsud07"], ["https://tec.openplanner.team/stops/LCpeg-*", "https://tec.openplanner.team/stops/LWMcent1"], ["https://tec.openplanner.team/stops/LESfont2", "https://tec.openplanner.team/stops/LFNtill1"], ["https://tec.openplanner.team/stops/Bjanegl1", "https://tec.openplanner.team/stops/Bjanegl2"], ["https://tec.openplanner.team/stops/LBEtroo1", "https://tec.openplanner.team/stops/LBEtroo2"], ["https://tec.openplanner.team/stops/LVIcarm2", "https://tec.openplanner.team/stops/LVIcarm3"], ["https://tec.openplanner.team/stops/X654aab", "https://tec.openplanner.team/stops/X654abb"], ["https://tec.openplanner.team/stops/Bquegen2", "https://tec.openplanner.team/stops/Brebcgi1"], ["https://tec.openplanner.team/stops/Cthhvil1", "https://tec.openplanner.team/stops/Cthnsnc"], ["https://tec.openplanner.team/stops/LrOgara3", "https://tec.openplanner.team/stops/LrOn14-1"], ["https://tec.openplanner.team/stops/X754aoa", "https://tec.openplanner.team/stops/X754apb"], ["https://tec.openplanner.team/stops/Bnivari2", "https://tec.openplanner.team/stops/Bnivphm2"], ["https://tec.openplanner.team/stops/Bvxgeta1", "https://tec.openplanner.team/stops/Cgnquer1"], ["https://tec.openplanner.team/stops/X907aba", "https://tec.openplanner.team/stops/X939acb"], ["https://tec.openplanner.team/stops/Cgycvie2", "https://tec.openplanner.team/stops/Cgynuto2"], ["https://tec.openplanner.team/stops/LNEbo471", "https://tec.openplanner.team/stops/LOLbout1"], ["https://tec.openplanner.team/stops/LScgore1", "https://tec.openplanner.team/stops/LYEphar1"], ["https://tec.openplanner.team/stops/Bgrmpsn2", "https://tec.openplanner.team/stops/N522aua"], ["https://tec.openplanner.team/stops/LVBeg--2", "https://tec.openplanner.team/stops/LVBrmon1"], ["https://tec.openplanner.team/stops/Caiegli2", "https://tec.openplanner.team/stops/Caircen1"], ["https://tec.openplanner.team/stops/LbAhenk1", "https://tec.openplanner.team/stops/LmNsied1"], ["https://tec.openplanner.team/stops/Cfachap2", "https://tec.openplanner.team/stops/Cfaheni4"], ["https://tec.openplanner.team/stops/LPAeg--2", "https://tec.openplanner.team/stops/LPAmc--1"], ["https://tec.openplanner.team/stops/NL57afb", "https://tec.openplanner.team/stops/NL57aha"], ["https://tec.openplanner.team/stops/LnErech1", "https://tec.openplanner.team/stops/LrEfeck2"], ["https://tec.openplanner.team/stops/Lagpn6-1", "https://tec.openplanner.team/stops/LTIgare3"], ["https://tec.openplanner.team/stops/LHMaube1", "https://tec.openplanner.team/stops/LHMaube2"], ["https://tec.openplanner.team/stops/Bwatmco2", "https://tec.openplanner.team/stops/Bwatnro1"], ["https://tec.openplanner.team/stops/Bjaneco1", "https://tec.openplanner.team/stops/Bjanegl1"], ["https://tec.openplanner.team/stops/Bmarlor1", "https://tec.openplanner.team/stops/Bvlvmar2"], ["https://tec.openplanner.team/stops/LAUjean1", "https://tec.openplanner.team/stops/LFProt-1"], ["https://tec.openplanner.team/stops/Bwaveur1", "https://tec.openplanner.team/stops/Bwavtpi2"], ["https://tec.openplanner.team/stops/LCPcomp2", "https://tec.openplanner.team/stops/LCPvign2"], ["https://tec.openplanner.team/stops/LNCchev1", "https://tec.openplanner.team/stops/LNCneuv3"], ["https://tec.openplanner.team/stops/X790amb", "https://tec.openplanner.team/stops/X793aab"], ["https://tec.openplanner.team/stops/Bgzdpco2", "https://tec.openplanner.team/stops/Bgzdpos3"], ["https://tec.openplanner.team/stops/N229ala", "https://tec.openplanner.team/stops/N229asa"], ["https://tec.openplanner.team/stops/Lcchala1", "https://tec.openplanner.team/stops/LRarami2"], ["https://tec.openplanner.team/stops/X943aab", "https://tec.openplanner.team/stops/X943agb"], ["https://tec.openplanner.team/stops/H4ro154b", "https://tec.openplanner.team/stops/H4ro157b"], ["https://tec.openplanner.team/stops/Llgbida1", "https://tec.openplanner.team/stops/Llgware2"], ["https://tec.openplanner.team/stops/Lbhbalt1", "https://tec.openplanner.team/stops/LMFmoul1"], ["https://tec.openplanner.team/stops/H4ev118b", "https://tec.openplanner.team/stops/H4ev126b"], ["https://tec.openplanner.team/stops/Bcrbgro2", "https://tec.openplanner.team/stops/Bcrbtho2"], ["https://tec.openplanner.team/stops/Lghwall2", "https://tec.openplanner.team/stops/Llochar1"], ["https://tec.openplanner.team/stops/Bnivfch1", "https://tec.openplanner.team/stops/Bnivpso2"], ["https://tec.openplanner.team/stops/Lsehcoc2", "https://tec.openplanner.team/stops/Lsetrav2"], ["https://tec.openplanner.team/stops/LFChofv2", "https://tec.openplanner.team/stops/LFClage2"], ["https://tec.openplanner.team/stops/H1sa115a", "https://tec.openplanner.team/stops/H1sa115b"], ["https://tec.openplanner.team/stops/Bmsgeco1", "https://tec.openplanner.team/stops/Bmsgpap1"], ["https://tec.openplanner.team/stops/X836abb", "https://tec.openplanner.team/stops/X836aca"], ["https://tec.openplanner.team/stops/N232ahb", "https://tec.openplanner.team/stops/N261abb"], ["https://tec.openplanner.team/stops/N513ala", "https://tec.openplanner.team/stops/N513ara"], ["https://tec.openplanner.team/stops/LAYpl--1", "https://tec.openplanner.team/stops/LAYpl--2"], ["https://tec.openplanner.team/stops/Cflspir2", "https://tec.openplanner.team/stops/Cflvxca2"], ["https://tec.openplanner.team/stops/Csubosa2", "https://tec.openplanner.team/stops/Csygare3"], ["https://tec.openplanner.team/stops/N343aaa", "https://tec.openplanner.team/stops/N343aab"], ["https://tec.openplanner.team/stops/LCRgdrt1", "https://tec.openplanner.team/stops/LCRgdrt2"], ["https://tec.openplanner.team/stops/Lticime2", "https://tec.openplanner.team/stops/Ltiegl-*"], ["https://tec.openplanner.team/stops/Llglamb2", "https://tec.openplanner.team/stops/Llgsorb2"], ["https://tec.openplanner.team/stops/Btslcej2", "https://tec.openplanner.team/stops/Btslegl1"], ["https://tec.openplanner.team/stops/X601ctb", "https://tec.openplanner.team/stops/X601dia"], ["https://tec.openplanner.team/stops/X747afb", "https://tec.openplanner.team/stops/X747aia"], ["https://tec.openplanner.team/stops/LSdencl*", "https://tec.openplanner.team/stops/LSdsa452"], ["https://tec.openplanner.team/stops/Bhenmal1", "https://tec.openplanner.team/stops/Bhenmal2"], ["https://tec.openplanner.team/stops/Bllnlb52", "https://tec.openplanner.team/stops/Bllnrge2"], ["https://tec.openplanner.team/stops/H4bl104a", "https://tec.openplanner.team/stops/H4ha169b"], ["https://tec.openplanner.team/stops/Loudemo1", "https://tec.openplanner.team/stops/Louroos2"], ["https://tec.openplanner.team/stops/H4ef111b", "https://tec.openplanner.team/stops/H4ef112a"], ["https://tec.openplanner.team/stops/X634aka", "https://tec.openplanner.team/stops/X634akb"], ["https://tec.openplanner.team/stops/Lhrjaur2", "https://tec.openplanner.team/stops/Lhrmine2"], ["https://tec.openplanner.team/stops/Bwatsan1", "https://tec.openplanner.team/stops/Bwatsan2"], ["https://tec.openplanner.team/stops/H1fr119a", "https://tec.openplanner.team/stops/H1no141b"], ["https://tec.openplanner.team/stops/X601cba", "https://tec.openplanner.team/stops/X602aob"], ["https://tec.openplanner.team/stops/X808adb", "https://tec.openplanner.team/stops/X808agb"], ["https://tec.openplanner.team/stops/LPAvill2", "https://tec.openplanner.team/stops/LWinavi1"], ["https://tec.openplanner.team/stops/LbUmurr1", "https://tec.openplanner.team/stops/LhUrich1"], ["https://tec.openplanner.team/stops/X806ada", "https://tec.openplanner.team/stops/X806ala"], ["https://tec.openplanner.team/stops/H2ha133b", "https://tec.openplanner.team/stops/H2hg146a"], ["https://tec.openplanner.team/stops/Cgocolo2", "https://tec.openplanner.team/stops/Cjugend3"], ["https://tec.openplanner.team/stops/H4mb204a", "https://tec.openplanner.team/stops/H4mb205a"], ["https://tec.openplanner.team/stops/H2tr245a", "https://tec.openplanner.team/stops/H2tr245b"], ["https://tec.openplanner.team/stops/X837aec", "https://tec.openplanner.team/stops/X837aed"], ["https://tec.openplanner.team/stops/X359ahb", "https://tec.openplanner.team/stops/X359aib"], ["https://tec.openplanner.team/stops/Cfcgrat2", "https://tec.openplanner.team/stops/Cfcstan1"], ["https://tec.openplanner.team/stops/X639aka", "https://tec.openplanner.team/stops/X639ata"], ["https://tec.openplanner.team/stops/H3bo100d", "https://tec.openplanner.team/stops/H3bo101a"], ["https://tec.openplanner.team/stops/N562ata", "https://tec.openplanner.team/stops/N562atb"], ["https://tec.openplanner.team/stops/Cmastfi2", "https://tec.openplanner.team/stops/Cmomoul4"], ["https://tec.openplanner.team/stops/H4te250b", "https://tec.openplanner.team/stops/H4te257a"], ["https://tec.openplanner.team/stops/H1pa100a", "https://tec.openplanner.team/stops/H1pd145a"], ["https://tec.openplanner.team/stops/Cgrcent2", "https://tec.openplanner.team/stops/NC14anb"], ["https://tec.openplanner.team/stops/H4ga165a", "https://tec.openplanner.team/stops/H4ga171b"], ["https://tec.openplanner.team/stops/H1fr118b", "https://tec.openplanner.team/stops/H1fr119a"], ["https://tec.openplanner.team/stops/LaMschr1", "https://tec.openplanner.team/stops/LeIdeid1"], ["https://tec.openplanner.team/stops/CMjans1", "https://tec.openplanner.team/stops/Cmtpire1"], ["https://tec.openplanner.team/stops/LROcent2", "https://tec.openplanner.team/stops/LROchap1"], ["https://tec.openplanner.team/stops/H1fl136b", "https://tec.openplanner.team/stops/H1fl136c"], ["https://tec.openplanner.team/stops/H1do109b", "https://tec.openplanner.team/stops/H1do129a"], ["https://tec.openplanner.team/stops/X982cba", "https://tec.openplanner.team/stops/X986aha"], ["https://tec.openplanner.team/stops/N513agc", "https://tec.openplanner.team/stops/N513bab"], ["https://tec.openplanner.team/stops/LHYdogn1", "https://tec.openplanner.team/stops/LHYdogn2"], ["https://tec.openplanner.team/stops/N584asa", "https://tec.openplanner.team/stops/N584asb"], ["https://tec.openplanner.team/stops/N506aaa", "https://tec.openplanner.team/stops/N506aab"], ["https://tec.openplanner.team/stops/N308aab", "https://tec.openplanner.team/stops/N308acb"], ["https://tec.openplanner.team/stops/Bpthfus1", "https://tec.openplanner.team/stops/Bthspha1"], ["https://tec.openplanner.team/stops/LrDschl2", "https://tec.openplanner.team/stops/LrEmeil1"], ["https://tec.openplanner.team/stops/H2hp124a", "https://tec.openplanner.team/stops/H2hp124b"], ["https://tec.openplanner.team/stops/Cml5ave2", "https://tec.openplanner.team/stops/Cmlsart1"], ["https://tec.openplanner.team/stops/X766aeb", "https://tec.openplanner.team/stops/X791aca"], ["https://tec.openplanner.team/stops/N988aba", "https://tec.openplanner.team/stops/X876aaa"], ["https://tec.openplanner.team/stops/Lbocorn2", "https://tec.openplanner.team/stops/Loumatt1"], ["https://tec.openplanner.team/stops/N509awa", "https://tec.openplanner.team/stops/N511aqa"], ["https://tec.openplanner.team/stops/LESlieg1", "https://tec.openplanner.team/stops/LESslmo1"], ["https://tec.openplanner.team/stops/H4gr112a", "https://tec.openplanner.team/stops/H4gr112b"], ["https://tec.openplanner.team/stops/Llgbruy2", "https://tec.openplanner.team/stops/Llgfail2"], ["https://tec.openplanner.team/stops/H5pe125b", "https://tec.openplanner.team/stops/H5pe128b"], ["https://tec.openplanner.team/stops/Ccunove2", "https://tec.openplanner.team/stops/Cgysarr1"], ["https://tec.openplanner.team/stops/LSZptwa2", "https://tec.openplanner.team/stops/LWycabi1"], ["https://tec.openplanner.team/stops/N132aaa", "https://tec.openplanner.team/stops/N132acb"], ["https://tec.openplanner.team/stops/H5ma181a", "https://tec.openplanner.team/stops/H5ma186b"], ["https://tec.openplanner.team/stops/Cjxthom1", "https://tec.openplanner.team/stops/Cmymoha2"], ["https://tec.openplanner.team/stops/Lmoboeu4", "https://tec.openplanner.team/stops/Lmoknae4"], ["https://tec.openplanner.team/stops/LMHplac1", "https://tec.openplanner.team/stops/LMHplac4"], ["https://tec.openplanner.team/stops/LVBneuv1", "https://tec.openplanner.team/stops/LVBneuv2"], ["https://tec.openplanner.team/stops/Cbuegl2", "https://tec.openplanner.team/stops/Cbuplac4"], ["https://tec.openplanner.team/stops/H4ag107b", "https://tec.openplanner.team/stops/H4fo118b"], ["https://tec.openplanner.team/stops/X602aab", "https://tec.openplanner.team/stops/X602aba"], ["https://tec.openplanner.team/stops/H4ss156a", "https://tec.openplanner.team/stops/H4ss156b"], ["https://tec.openplanner.team/stops/LHUpsar1", "https://tec.openplanner.team/stops/LHUpsar2"], ["https://tec.openplanner.team/stops/Cbfdufa1", "https://tec.openplanner.team/stops/Cci4092"], ["https://tec.openplanner.team/stops/H4ty270a", "https://tec.openplanner.team/stops/H4ty270b"], ["https://tec.openplanner.team/stops/LAYambl1", "https://tec.openplanner.team/stops/LAYambl2"], ["https://tec.openplanner.team/stops/N516aqa", "https://tec.openplanner.team/stops/N581acb"], ["https://tec.openplanner.team/stops/H4av103b", "https://tec.openplanner.team/stops/H4de112b"], ["https://tec.openplanner.team/stops/N166aba", "https://tec.openplanner.team/stops/N565abb"], ["https://tec.openplanner.team/stops/Llgphol2", "https://tec.openplanner.team/stops/Llgphol3"], ["https://tec.openplanner.team/stops/H4ep127a", "https://tec.openplanner.team/stops/H4la197a"], ["https://tec.openplanner.team/stops/N153acb", "https://tec.openplanner.team/stops/N153afb"], ["https://tec.openplanner.team/stops/Bcrnnca1", "https://tec.openplanner.team/stops/Bwlhpec1"], ["https://tec.openplanner.team/stops/H1wi147b", "https://tec.openplanner.team/stops/H1wi153a"], ["https://tec.openplanner.team/stops/N569ada", "https://tec.openplanner.team/stops/N569adb"], ["https://tec.openplanner.team/stops/LMAwavr2", "https://tec.openplanner.team/stops/LMisour1"], ["https://tec.openplanner.team/stops/Cgoathe2", "https://tec.openplanner.team/stops/Ctmsncb1"], ["https://tec.openplanner.team/stops/N549afb", "https://tec.openplanner.team/stops/N549aib"], ["https://tec.openplanner.team/stops/Loufleu1", "https://tec.openplanner.team/stops/Lousite3"], ["https://tec.openplanner.team/stops/N228aeb", "https://tec.openplanner.team/stops/N270aaa"], ["https://tec.openplanner.team/stops/N574aba", "https://tec.openplanner.team/stops/N574agb"], ["https://tec.openplanner.team/stops/H1ls107a", "https://tec.openplanner.team/stops/H1ls107b"], ["https://tec.openplanner.team/stops/X945ada", "https://tec.openplanner.team/stops/X945aea"], ["https://tec.openplanner.team/stops/LSEec--1", "https://tec.openplanner.team/stops/LSEec--2"], ["https://tec.openplanner.team/stops/LSPjoli1", "https://tec.openplanner.team/stops/LSZdepo1"], ["https://tec.openplanner.team/stops/H3so153a", "https://tec.openplanner.team/stops/H3so164a"], ["https://tec.openplanner.team/stops/H4ld128b", "https://tec.openplanner.team/stops/H4to138b"], ["https://tec.openplanner.team/stops/LVRchpl1", "https://tec.openplanner.team/stops/X782aha"], ["https://tec.openplanner.team/stops/LCTcret2", "https://tec.openplanner.team/stops/LFIinse2"], ["https://tec.openplanner.team/stops/X839aab", "https://tec.openplanner.team/stops/X839abb"], ["https://tec.openplanner.team/stops/H4ty296b", "https://tec.openplanner.team/stops/H4ty379a"], ["https://tec.openplanner.team/stops/LCSgend1", "https://tec.openplanner.team/stops/LCSgend2"], ["https://tec.openplanner.team/stops/H1an101b", "https://tec.openplanner.team/stops/H1an103a"], ["https://tec.openplanner.team/stops/Ctusold1", "https://tec.openplanner.team/stops/NC28aea"], ["https://tec.openplanner.team/stops/Cmaegli2", "https://tec.openplanner.team/stops/Cmarroy1"], ["https://tec.openplanner.team/stops/X672aia", "https://tec.openplanner.team/stops/X672aid"], ["https://tec.openplanner.team/stops/X634afb", "https://tec.openplanner.team/stops/X634agb"], ["https://tec.openplanner.team/stops/Bsgetri2", "https://tec.openplanner.team/stops/Bsgevil2"], ["https://tec.openplanner.team/stops/LHUloui1", "https://tec.openplanner.team/stops/NL80apa"], ["https://tec.openplanner.team/stops/H1hc152a", "https://tec.openplanner.team/stops/H1he103a"], ["https://tec.openplanner.team/stops/Cbmind3", "https://tec.openplanner.team/stops/Cbmmafr2"], ["https://tec.openplanner.team/stops/Livgera3", "https://tec.openplanner.team/stops/Livpost1"], ["https://tec.openplanner.team/stops/H1hh110a", "https://tec.openplanner.team/stops/H1hh115a"], ["https://tec.openplanner.team/stops/Cctrobe1", "https://tec.openplanner.team/stops/Cctsold1"], ["https://tec.openplanner.team/stops/Csachas1", "https://tec.openplanner.team/stops/Cwgmell3"], ["https://tec.openplanner.team/stops/Cbfbies1", "https://tec.openplanner.team/stops/Cbfpoti1"], ["https://tec.openplanner.team/stops/H2jo162a", "https://tec.openplanner.team/stops/H2jo162b"], ["https://tec.openplanner.team/stops/N501bsa", "https://tec.openplanner.team/stops/N501bsb"], ["https://tec.openplanner.team/stops/X658agb", "https://tec.openplanner.team/stops/X658agc"], ["https://tec.openplanner.team/stops/Bdoncen1", "https://tec.openplanner.team/stops/Bdonlat2"], ["https://tec.openplanner.team/stops/X734aka", "https://tec.openplanner.team/stops/X734apa"], ["https://tec.openplanner.team/stops/LCeterm2", "https://tec.openplanner.team/stops/LLWpier1"], ["https://tec.openplanner.team/stops/H1mb128b", "https://tec.openplanner.team/stops/H1mb129a"], ["https://tec.openplanner.team/stops/H5wo122a", "https://tec.openplanner.team/stops/H5wo122b"], ["https://tec.openplanner.team/stops/X912aba", "https://tec.openplanner.team/stops/X912acb"], ["https://tec.openplanner.team/stops/LWApr%C3%A9s3", "https://tec.openplanner.team/stops/LWApr%C3%A9s4"], ["https://tec.openplanner.team/stops/X736abb", "https://tec.openplanner.team/stops/X952aeb"], ["https://tec.openplanner.team/stops/N141acb", "https://tec.openplanner.team/stops/N141agb"], ["https://tec.openplanner.team/stops/LFCdree1", "https://tec.openplanner.team/stops/LFChofv2"], ["https://tec.openplanner.team/stops/Clafaub1", "https://tec.openplanner.team/stops/Clafaub2"], ["https://tec.openplanner.team/stops/LBTwauc1", "https://tec.openplanner.team/stops/LThpoli1"], ["https://tec.openplanner.team/stops/H1ba116a", "https://tec.openplanner.team/stops/H1qu104b"], ["https://tec.openplanner.team/stops/N501lcy", "https://tec.openplanner.team/stops/N501lcz"], ["https://tec.openplanner.team/stops/N308ada", "https://tec.openplanner.team/stops/N311aga"], ["https://tec.openplanner.team/stops/H1ge116a", "https://tec.openplanner.team/stops/H1sb144b"], ["https://tec.openplanner.team/stops/Lflcime2", "https://tec.openplanner.team/stops/Lflpaeu1"], ["https://tec.openplanner.team/stops/X869aea", "https://tec.openplanner.team/stops/X871abb"], ["https://tec.openplanner.team/stops/LWEcite1", "https://tec.openplanner.team/stops/LWEgend1"], ["https://tec.openplanner.team/stops/Cjxpann1", "https://tec.openplanner.team/stops/Cmyboci1"], ["https://tec.openplanner.team/stops/Cmlhubi1", "https://tec.openplanner.team/stops/Cmlmatc2"], ["https://tec.openplanner.team/stops/Laddelc1", "https://tec.openplanner.team/stops/Ladfoot1"], ["https://tec.openplanner.team/stops/Lceegth1", "https://tec.openplanner.team/stops/Lcesart1"], ["https://tec.openplanner.team/stops/Lvehv--1", "https://tec.openplanner.team/stops/Lvevert1"], ["https://tec.openplanner.team/stops/LTRsain1", "https://tec.openplanner.team/stops/LTRthie1"], ["https://tec.openplanner.team/stops/X901aab", "https://tec.openplanner.team/stops/X901bsa"], ["https://tec.openplanner.team/stops/X765aaa", "https://tec.openplanner.team/stops/X766afa"], ["https://tec.openplanner.team/stops/LFlabba1", "https://tec.openplanner.team/stops/LFlabba3"], ["https://tec.openplanner.team/stops/N424aca", "https://tec.openplanner.team/stops/N425aaa"], ["https://tec.openplanner.team/stops/N534abb", "https://tec.openplanner.team/stops/N534ada"], ["https://tec.openplanner.team/stops/LLAcalv2", "https://tec.openplanner.team/stops/LLAeg--1"], ["https://tec.openplanner.team/stops/Bboupde1", "https://tec.openplanner.team/stops/Bcerldo1"], ["https://tec.openplanner.team/stops/LJvmale1", "https://tec.openplanner.team/stops/X576ahb"], ["https://tec.openplanner.team/stops/Lbrcygn1", "https://tec.openplanner.team/stops/Lbrddef3"], ["https://tec.openplanner.team/stops/Bmsgcap2", "https://tec.openplanner.team/stops/Bmsgstj2"], ["https://tec.openplanner.team/stops/Lvegc--5", "https://tec.openplanner.team/stops/Lvethea1"], ["https://tec.openplanner.team/stops/LGlbour1", "https://tec.openplanner.team/stops/LGlcite2"], ["https://tec.openplanner.team/stops/LCEhayo2", "https://tec.openplanner.team/stops/LETfort4"], ["https://tec.openplanner.team/stops/LaRkape2", "https://tec.openplanner.team/stops/LmSluxh2"], ["https://tec.openplanner.team/stops/N353aea", "https://tec.openplanner.team/stops/N353aeb"], ["https://tec.openplanner.team/stops/Bjaurgo2", "https://tec.openplanner.team/stops/Bolphgr1"], ["https://tec.openplanner.team/stops/N209aba", "https://tec.openplanner.team/stops/N209aca"], ["https://tec.openplanner.team/stops/N425aga", "https://tec.openplanner.team/stops/N426acb"], ["https://tec.openplanner.team/stops/LDAbois1", "https://tec.openplanner.team/stops/LDAcite1"], ["https://tec.openplanner.team/stops/H4br110a", "https://tec.openplanner.team/stops/H4br111b"], ["https://tec.openplanner.team/stops/LJAhanq3", "https://tec.openplanner.team/stops/LJAhanq4"], ["https://tec.openplanner.team/stops/Lagpaix2", "https://tec.openplanner.team/stops/Lagresi2"], ["https://tec.openplanner.team/stops/Blsmbfe2", "https://tec.openplanner.team/stops/Blsmjja2"], ["https://tec.openplanner.team/stops/Blnzcar1", "https://tec.openplanner.team/stops/Blnzcar2"], ["https://tec.openplanner.team/stops/X898agb", "https://tec.openplanner.team/stops/X898akb"], ["https://tec.openplanner.team/stops/Lbrfagn1", "https://tec.openplanner.team/stops/Ljuathe1"], ["https://tec.openplanner.team/stops/X739adb", "https://tec.openplanner.team/stops/X739aeb"], ["https://tec.openplanner.team/stops/LDAbois1", "https://tec.openplanner.team/stops/LVIferm1"], ["https://tec.openplanner.team/stops/Cnadepo1", "https://tec.openplanner.team/stops/Cnalava4"], ["https://tec.openplanner.team/stops/Ccychco2", "https://tec.openplanner.team/stops/Ccyga7"], ["https://tec.openplanner.team/stops/Cchba2", "https://tec.openplanner.team/stops/Cchdaup1"], ["https://tec.openplanner.team/stops/Lfhvoye1", "https://tec.openplanner.team/stops/Lpocent2"], ["https://tec.openplanner.team/stops/LVLm10-2", "https://tec.openplanner.team/stops/LVLmabi1"], ["https://tec.openplanner.team/stops/X754afa", "https://tec.openplanner.team/stops/X754ana"], ["https://tec.openplanner.team/stops/Blnzcar2", "https://tec.openplanner.team/stops/N522aha"], ["https://tec.openplanner.team/stops/H2fa100b", "https://tec.openplanner.team/stops/H2fa107b"], ["https://tec.openplanner.team/stops/LHMchev2", "https://tec.openplanner.team/stops/LRmmabr2"], ["https://tec.openplanner.team/stops/H5at104b", "https://tec.openplanner.team/stops/H5at132a"], ["https://tec.openplanner.team/stops/LmOkape1", "https://tec.openplanner.team/stops/LrEkais3"], ["https://tec.openplanner.team/stops/X820aga", "https://tec.openplanner.team/stops/X820agd"], ["https://tec.openplanner.team/stops/LETec--1", "https://tec.openplanner.team/stops/LETfort4"], ["https://tec.openplanner.team/stops/LElgerd4", "https://tec.openplanner.team/stops/LElgerd5"], ["https://tec.openplanner.team/stops/N528aoa", "https://tec.openplanner.team/stops/N538adb"], ["https://tec.openplanner.team/stops/H1br120b", "https://tec.openplanner.team/stops/H1br128a"], ["https://tec.openplanner.team/stops/Bauddel2", "https://tec.openplanner.team/stops/Baudtri2"], ["https://tec.openplanner.team/stops/Lghneuv1", "https://tec.openplanner.team/stops/Lghprea4"], ["https://tec.openplanner.team/stops/X808agb", "https://tec.openplanner.team/stops/X811afb"], ["https://tec.openplanner.team/stops/N352aca", "https://tec.openplanner.team/stops/N352acb"], ["https://tec.openplanner.team/stops/H4ka189a", "https://tec.openplanner.team/stops/H4ka399a"], ["https://tec.openplanner.team/stops/H1po135b", "https://tec.openplanner.team/stops/H1po137b"], ["https://tec.openplanner.team/stops/LHUmess2", "https://tec.openplanner.team/stops/LTicime1"], ["https://tec.openplanner.team/stops/N571aaa", "https://tec.openplanner.team/stops/N571aab"], ["https://tec.openplanner.team/stops/H4wi167b", "https://tec.openplanner.team/stops/H4wi170a"], ["https://tec.openplanner.team/stops/Cmllait2", "https://tec.openplanner.team/stops/Cmlours1"], ["https://tec.openplanner.team/stops/X622ada", "https://tec.openplanner.team/stops/X622adb"], ["https://tec.openplanner.team/stops/H1he103b", "https://tec.openplanner.team/stops/H1mh115a"], ["https://tec.openplanner.team/stops/LLTcoop1", "https://tec.openplanner.team/stops/LLTcoop2"], ["https://tec.openplanner.team/stops/Bottgar2", "https://tec.openplanner.team/stops/Bottgar7"], ["https://tec.openplanner.team/stops/Ljerobi2", "https://tec.openplanner.team/stops/Ljerouy2"], ["https://tec.openplanner.team/stops/H1ba101b", "https://tec.openplanner.team/stops/H1ba106b"], ["https://tec.openplanner.team/stops/H1ca104a", "https://tec.openplanner.team/stops/H1ca104b"], ["https://tec.openplanner.team/stops/X619abc", "https://tec.openplanner.team/stops/X619ama"], ["https://tec.openplanner.team/stops/H2ll186a", "https://tec.openplanner.team/stops/H2sv259b"], ["https://tec.openplanner.team/stops/LCsraws2", "https://tec.openplanner.team/stops/LVLzoni1"], ["https://tec.openplanner.team/stops/LMOeg--2", "https://tec.openplanner.team/stops/LMOford1"], ["https://tec.openplanner.team/stops/X659ama", "https://tec.openplanner.team/stops/X742aba"], ["https://tec.openplanner.team/stops/LElcent1", "https://tec.openplanner.team/stops/LFTneur*"], ["https://tec.openplanner.team/stops/H5is169a", "https://tec.openplanner.team/stops/H5is169b"], ["https://tec.openplanner.team/stops/Cmgcabi1", "https://tec.openplanner.team/stops/Cmggthi1"], ["https://tec.openplanner.team/stops/N501jgb", "https://tec.openplanner.team/stops/N521aca"], ["https://tec.openplanner.team/stops/Bbosdra1", "https://tec.openplanner.team/stops/Bbosgar2"], ["https://tec.openplanner.team/stops/X902aca", "https://tec.openplanner.team/stops/X902anb"], ["https://tec.openplanner.team/stops/X615apb", "https://tec.openplanner.team/stops/X615aqb"], ["https://tec.openplanner.team/stops/Bptrman2", "https://tec.openplanner.team/stops/Bptrmar2"], ["https://tec.openplanner.team/stops/N232bda", "https://tec.openplanner.team/stops/N232bva"], ["https://tec.openplanner.team/stops/X640abb", "https://tec.openplanner.team/stops/X640aia"], ["https://tec.openplanner.team/stops/Bchgqve3", "https://tec.openplanner.team/stops/Bchgqve4"], ["https://tec.openplanner.team/stops/N501fmb", "https://tec.openplanner.team/stops/N501fna"], ["https://tec.openplanner.team/stops/LMubras1", "https://tec.openplanner.team/stops/LMupont2"], ["https://tec.openplanner.team/stops/LFtcarr1", "https://tec.openplanner.team/stops/LRMn58-2"], ["https://tec.openplanner.team/stops/X661amb", "https://tec.openplanner.team/stops/X661apa"], ["https://tec.openplanner.team/stops/Ccychap2", "https://tec.openplanner.team/stops/Ccypn2"], ["https://tec.openplanner.team/stops/N501ezb", "https://tec.openplanner.team/stops/N501lmb"], ["https://tec.openplanner.team/stops/Cmacart1", "https://tec.openplanner.team/stops/Cmareun2"], ["https://tec.openplanner.team/stops/X658aca", "https://tec.openplanner.team/stops/X658afa"], ["https://tec.openplanner.team/stops/H1mv238a", "https://tec.openplanner.team/stops/H1mv242a"], ["https://tec.openplanner.team/stops/Bgoevli2", "https://tec.openplanner.team/stops/Bgoewat2"], ["https://tec.openplanner.team/stops/N528aub", "https://tec.openplanner.team/stops/N528ava"], ["https://tec.openplanner.team/stops/N506boc", "https://tec.openplanner.team/stops/N506bsb"], ["https://tec.openplanner.team/stops/H5rx129b", "https://tec.openplanner.team/stops/H5rx149a"], ["https://tec.openplanner.team/stops/X782apa", "https://tec.openplanner.team/stops/X782apb"], ["https://tec.openplanner.team/stops/Lsn130-1", "https://tec.openplanner.team/stops/Lsnmala1"], ["https://tec.openplanner.team/stops/Bsaucre2", "https://tec.openplanner.team/stops/N541aca"], ["https://tec.openplanner.team/stops/N516anb", "https://tec.openplanner.team/stops/N516apa"], ["https://tec.openplanner.team/stops/X547aaa", "https://tec.openplanner.team/stops/X547acb"], ["https://tec.openplanner.team/stops/N131afb", "https://tec.openplanner.team/stops/N131agb"], ["https://tec.openplanner.team/stops/N232ada", "https://tec.openplanner.team/stops/N261acb"], ["https://tec.openplanner.team/stops/NL68adb", "https://tec.openplanner.team/stops/NL68add"], ["https://tec.openplanner.team/stops/Cgymest2", "https://tec.openplanner.team/stops/Cgyrrep2"], ["https://tec.openplanner.team/stops/Bjanegl4", "https://tec.openplanner.team/stops/NR30aba"], ["https://tec.openplanner.team/stops/X812aja", "https://tec.openplanner.team/stops/X812beb"], ["https://tec.openplanner.team/stops/X316aba", "https://tec.openplanner.team/stops/X316abb"], ["https://tec.openplanner.team/stops/Bpersyn1", "https://tec.openplanner.team/stops/Bpersyn2"], ["https://tec.openplanner.team/stops/X630abb", "https://tec.openplanner.team/stops/X644aea"], ["https://tec.openplanner.team/stops/LkAkirc1", "https://tec.openplanner.team/stops/LkAmess1"], ["https://tec.openplanner.team/stops/Ccacoup2", "https://tec.openplanner.team/stops/Ccaegli2"], ["https://tec.openplanner.team/stops/H1ba112b", "https://tec.openplanner.team/stops/H1ch142b"], ["https://tec.openplanner.team/stops/Lsepaqu1", "https://tec.openplanner.team/stops/Lseserv4"], ["https://tec.openplanner.team/stops/Cbufron1", "https://tec.openplanner.team/stops/Cbuplac4"], ["https://tec.openplanner.team/stops/Llgbaro1", "https://tec.openplanner.team/stops/Llgbaro2"], ["https://tec.openplanner.team/stops/Blindel1", "https://tec.openplanner.team/stops/Blindel2"], ["https://tec.openplanner.team/stops/Cmcceta1", "https://tec.openplanner.team/stops/Cmcwir2"], ["https://tec.openplanner.team/stops/H1je220a", "https://tec.openplanner.team/stops/H1je366b"], ["https://tec.openplanner.team/stops/Cfmtrie2", "https://tec.openplanner.team/stops/Cfobriq1"], ["https://tec.openplanner.team/stops/Bcrbgro1", "https://tec.openplanner.team/stops/Bnil3fo1"], ["https://tec.openplanner.team/stops/N533ala", "https://tec.openplanner.team/stops/N533anb"], ["https://tec.openplanner.team/stops/X939ada", "https://tec.openplanner.team/stops/X940agb"], ["https://tec.openplanner.team/stops/LMfange1", "https://tec.openplanner.team/stops/LMfbuck2"], ["https://tec.openplanner.team/stops/X911ajb", "https://tec.openplanner.team/stops/X911akb"], ["https://tec.openplanner.team/stops/LeUkirc1", "https://tec.openplanner.team/stops/LeUroll1"], ["https://tec.openplanner.team/stops/Bwavgar3", "https://tec.openplanner.team/stops/Bwavtpi2"], ["https://tec.openplanner.team/stops/Bmarcha1", "https://tec.openplanner.team/stops/Bwagcus2"], ["https://tec.openplanner.team/stops/LLNcime2", "https://tec.openplanner.team/stops/LLNeg--2"], ["https://tec.openplanner.team/stops/LMObouh1", "https://tec.openplanner.team/stops/LMObouh2"], ["https://tec.openplanner.team/stops/LbUmalm1", "https://tec.openplanner.team/stops/LbUmalm2"], ["https://tec.openplanner.team/stops/N353aaa", "https://tec.openplanner.team/stops/N353ada"], ["https://tec.openplanner.team/stops/X901aea", "https://tec.openplanner.team/stops/X902aza"], ["https://tec.openplanner.team/stops/LeUcroi1", "https://tec.openplanner.team/stops/LHthest1"], ["https://tec.openplanner.team/stops/LRmkast*", "https://tec.openplanner.team/stops/LRmmabr2"], ["https://tec.openplanner.team/stops/X949afa", "https://tec.openplanner.team/stops/X949ala"], ["https://tec.openplanner.team/stops/H1gi119b", "https://tec.openplanner.team/stops/H1hl122b"], ["https://tec.openplanner.team/stops/Laggare2", "https://tec.openplanner.team/stops/Lagjado6"], ["https://tec.openplanner.team/stops/H4mt216b", "https://tec.openplanner.team/stops/H4mx120b"], ["https://tec.openplanner.team/stops/Brebrog2", "https://tec.openplanner.team/stops/H2pr115b"], ["https://tec.openplanner.team/stops/N127acb", "https://tec.openplanner.team/stops/N127aea"], ["https://tec.openplanner.team/stops/Crolach2", "https://tec.openplanner.team/stops/Cronova2"], ["https://tec.openplanner.team/stops/LESevie1", "https://tec.openplanner.team/stops/LESgare*"], ["https://tec.openplanner.team/stops/N988aba", "https://tec.openplanner.team/stops/N988aca"], ["https://tec.openplanner.team/stops/H4ag102a", "https://tec.openplanner.team/stops/H4ga150a"], ["https://tec.openplanner.team/stops/Lsnecco3", "https://tec.openplanner.team/stops/Lsnferr2"], ["https://tec.openplanner.team/stops/LFreg--1", "https://tec.openplanner.team/stops/LFrvesd2"], ["https://tec.openplanner.team/stops/N211anb", "https://tec.openplanner.team/stops/N211azb"], ["https://tec.openplanner.team/stops/X663ata", "https://tec.openplanner.team/stops/X664amd"], ["https://tec.openplanner.team/stops/Lhrmemo2", "https://tec.openplanner.team/stops/Lmicoop1"], ["https://tec.openplanner.team/stops/Canresi2", "https://tec.openplanner.team/stops/Canterr2"], ["https://tec.openplanner.team/stops/Ccucorb3", "https://tec.openplanner.team/stops/Cgycorv2"], ["https://tec.openplanner.team/stops/X721aca", "https://tec.openplanner.team/stops/X721aib"], ["https://tec.openplanner.team/stops/N544aca", "https://tec.openplanner.team/stops/N544afb"], ["https://tec.openplanner.team/stops/Cdostco1", "https://tec.openplanner.team/stops/Cstbasc2"], ["https://tec.openplanner.team/stops/X903aea", "https://tec.openplanner.team/stops/X903agb"], ["https://tec.openplanner.team/stops/Bhenard4", "https://tec.openplanner.team/stops/Bhensei2"], ["https://tec.openplanner.team/stops/LCPlacr1", "https://tec.openplanner.team/stops/LCPlacr2"], ["https://tec.openplanner.team/stops/N513aua", "https://tec.openplanner.team/stops/N513ava"], ["https://tec.openplanner.team/stops/LBHhuyn2", "https://tec.openplanner.team/stops/LGObeth2"], ["https://tec.openplanner.team/stops/N554afa", "https://tec.openplanner.team/stops/N566aea"], ["https://tec.openplanner.team/stops/H2ll182a", "https://tec.openplanner.team/stops/H2ll196a"], ["https://tec.openplanner.team/stops/Bbonegl1", "https://tec.openplanner.team/stops/Bbonegl2"], ["https://tec.openplanner.team/stops/N158aba", "https://tec.openplanner.team/stops/N168aab"], ["https://tec.openplanner.team/stops/LVlfooz1", "https://tec.openplanner.team/stops/LVlfooz4"], ["https://tec.openplanner.team/stops/Lccawir2", "https://tec.openplanner.team/stops/LENgend1"], ["https://tec.openplanner.team/stops/Cfccabi2", "https://tec.openplanner.team/stops/Cfccol1"], ["https://tec.openplanner.team/stops/Cmbcime4", "https://tec.openplanner.team/stops/Crccano4"], ["https://tec.openplanner.team/stops/LlgOPER1", "https://tec.openplanner.team/stops/LlgOPER6"], ["https://tec.openplanner.team/stops/Bflcneu1", "https://tec.openplanner.team/stops/Bflcpco2"], ["https://tec.openplanner.team/stops/N331aia", "https://tec.openplanner.team/stops/N331ajb"], ["https://tec.openplanner.team/stops/H4bq100b", "https://tec.openplanner.team/stops/H4bq102a"], ["https://tec.openplanner.team/stops/LRteg--*", "https://tec.openplanner.team/stops/NL78afa"], ["https://tec.openplanner.team/stops/LTIgare2", "https://tec.openplanner.team/stops/LTIgare3"], ["https://tec.openplanner.team/stops/LrOn14-1", "https://tec.openplanner.team/stops/LrOwahl1"], ["https://tec.openplanner.team/stops/Cbweco1", "https://tec.openplanner.team/stops/Cbweco2"], ["https://tec.openplanner.team/stops/X696aka", "https://tec.openplanner.team/stops/X696ala"], ["https://tec.openplanner.team/stops/X636bdb", "https://tec.openplanner.team/stops/X636bha"], ["https://tec.openplanner.team/stops/X779afb", "https://tec.openplanner.team/stops/X779aga"], ["https://tec.openplanner.team/stops/H1cv100a", "https://tec.openplanner.team/stops/H1cv102a"], ["https://tec.openplanner.team/stops/X607aab", "https://tec.openplanner.team/stops/X629aab"], ["https://tec.openplanner.team/stops/N548afa", "https://tec.openplanner.team/stops/N548asa"], ["https://tec.openplanner.team/stops/LOMbrou1", "https://tec.openplanner.team/stops/LOMtomb2"], ["https://tec.openplanner.team/stops/NL75aaa", "https://tec.openplanner.team/stops/NL75aca"], ["https://tec.openplanner.team/stops/X801bdb", "https://tec.openplanner.team/stops/X801bea"], ["https://tec.openplanner.team/stops/X754aaa", "https://tec.openplanner.team/stops/X754abb"], ["https://tec.openplanner.team/stops/H1gn147a", "https://tec.openplanner.team/stops/H1gn147b"], ["https://tec.openplanner.team/stops/LPTblan2", "https://tec.openplanner.team/stops/LPTeg--2"], ["https://tec.openplanner.team/stops/LFMstat2", "https://tec.openplanner.team/stops/LFMvoge1"], ["https://tec.openplanner.team/stops/N538aba", "https://tec.openplanner.team/stops/N539aka"], ["https://tec.openplanner.team/stops/X641aga", "https://tec.openplanner.team/stops/X641agb"], ["https://tec.openplanner.team/stops/N349aca", "https://tec.openplanner.team/stops/N349adb"], ["https://tec.openplanner.team/stops/LAx17--1", "https://tec.openplanner.team/stops/LAxbott2"], ["https://tec.openplanner.team/stops/Cfoperz2", "https://tec.openplanner.team/stops/Cfovent1"], ["https://tec.openplanner.team/stops/X756aeb", "https://tec.openplanner.team/stops/X756aec"], ["https://tec.openplanner.team/stops/N217ada", "https://tec.openplanner.team/stops/N261afa"], ["https://tec.openplanner.team/stops/H3th133a", "https://tec.openplanner.team/stops/H3th135d"], ["https://tec.openplanner.team/stops/H1em104a", "https://tec.openplanner.team/stops/H1em106b"], ["https://tec.openplanner.team/stops/N110acb", "https://tec.openplanner.team/stops/N110ada"], ["https://tec.openplanner.team/stops/Bwatcha1", "https://tec.openplanner.team/stops/Bwategp1"], ["https://tec.openplanner.team/stops/H4ta125a", "https://tec.openplanner.team/stops/H4ta133b"], ["https://tec.openplanner.team/stops/N152abb", "https://tec.openplanner.team/stops/N152abd"], ["https://tec.openplanner.team/stops/X718aaa", "https://tec.openplanner.team/stops/X718aab"], ["https://tec.openplanner.team/stops/N352aba", "https://tec.openplanner.team/stops/N352aja"], ["https://tec.openplanner.team/stops/H3so156a", "https://tec.openplanner.team/stops/H3so174b"], ["https://tec.openplanner.team/stops/Cmtchet2", "https://tec.openplanner.team/stops/Cmtyern2"], ["https://tec.openplanner.team/stops/Bspkkhe2", "https://tec.openplanner.team/stops/H1mk110b"], ["https://tec.openplanner.team/stops/X802aba", "https://tec.openplanner.team/stops/X802aca"], ["https://tec.openplanner.team/stops/H4wi162a", "https://tec.openplanner.team/stops/H4wi163a"], ["https://tec.openplanner.team/stops/H1gr115a", "https://tec.openplanner.team/stops/H1gr123b"], ["https://tec.openplanner.team/stops/Lbocomm2", "https://tec.openplanner.team/stops/Lstvill2"], ["https://tec.openplanner.team/stops/X802aib", "https://tec.openplanner.team/stops/X802ajb"], ["https://tec.openplanner.team/stops/H1sa113a", "https://tec.openplanner.team/stops/H1sa115b"], ["https://tec.openplanner.team/stops/N539ala", "https://tec.openplanner.team/stops/N539aob"], ["https://tec.openplanner.team/stops/X642aac", "https://tec.openplanner.team/stops/X643aba"], ["https://tec.openplanner.team/stops/H2sv219a", "https://tec.openplanner.team/stops/H2sv221b"], ["https://tec.openplanner.team/stops/H1bx106b", "https://tec.openplanner.team/stops/H1bx107b"], ["https://tec.openplanner.team/stops/LnNzent2", "https://tec.openplanner.team/stops/LnUneun3"], ["https://tec.openplanner.team/stops/X954aea", "https://tec.openplanner.team/stops/X954aha"], ["https://tec.openplanner.team/stops/LHTlieg1", "https://tec.openplanner.team/stops/LHTlieg2"], ["https://tec.openplanner.team/stops/X782ana", "https://tec.openplanner.team/stops/X784ada"], ["https://tec.openplanner.team/stops/LSGcent1", "https://tec.openplanner.team/stops/LSGeg--4"], ["https://tec.openplanner.team/stops/Cprvsar2", "https://tec.openplanner.team/stops/N554aaa"], ["https://tec.openplanner.team/stops/X813aaa", "https://tec.openplanner.team/stops/X813abb"], ["https://tec.openplanner.team/stops/Lfhnrou2", "https://tec.openplanner.team/stops/Lfhtrxc1"], ["https://tec.openplanner.team/stops/X922amb", "https://tec.openplanner.team/stops/X923akb"], ["https://tec.openplanner.team/stops/H1gh159a", "https://tec.openplanner.team/stops/H1gh167b"], ["https://tec.openplanner.team/stops/Llmbouv1", "https://tec.openplanner.team/stops/Llmbouv2"], ["https://tec.openplanner.team/stops/NB33aja", "https://tec.openplanner.team/stops/NR38afb"], ["https://tec.openplanner.team/stops/LFAsauv2", "https://tec.openplanner.team/stops/LFAtomb1"], ["https://tec.openplanner.team/stops/N351atc", "https://tec.openplanner.team/stops/N390ama"], ["https://tec.openplanner.team/stops/N106aqa", "https://tec.openplanner.team/stops/N106aqb"], ["https://tec.openplanner.team/stops/X601cja", "https://tec.openplanner.team/stops/X626aea"], ["https://tec.openplanner.team/stops/LHAbont2", "https://tec.openplanner.team/stops/LHTlieg1"], ["https://tec.openplanner.team/stops/X717ada", "https://tec.openplanner.team/stops/X783aaa"], ["https://tec.openplanner.team/stops/LhGfrie1", "https://tec.openplanner.team/stops/LkEmax-1"], ["https://tec.openplanner.team/stops/N531ata", "https://tec.openplanner.team/stops/N534bkh"], ["https://tec.openplanner.team/stops/N514ahb", "https://tec.openplanner.team/stops/N514anb"], ["https://tec.openplanner.team/stops/H3so158b", "https://tec.openplanner.team/stops/H3so177b"], ["https://tec.openplanner.team/stops/H2ch102b", "https://tec.openplanner.team/stops/H2ch105d"], ["https://tec.openplanner.team/stops/Ljerose3", "https://tec.openplanner.team/stops/Ljerose4"], ["https://tec.openplanner.team/stops/X901beb", "https://tec.openplanner.team/stops/X901bqb"], ["https://tec.openplanner.team/stops/N351ata", "https://tec.openplanner.team/stops/X351ada"], ["https://tec.openplanner.team/stops/LATfont1", "https://tec.openplanner.team/stops/LATmonu1"], ["https://tec.openplanner.team/stops/LBImili1", "https://tec.openplanner.team/stops/LBIrout1"], ["https://tec.openplanner.team/stops/LVMcent1", "https://tec.openplanner.team/stops/LVMchpl1"], ["https://tec.openplanner.team/stops/Bwavcen1", "https://tec.openplanner.team/stops/Bwavgar1"], ["https://tec.openplanner.team/stops/N135ava", "https://tec.openplanner.team/stops/N135bfb"], ["https://tec.openplanner.team/stops/LFsbasc1", "https://tec.openplanner.team/stops/LFsphar2"], ["https://tec.openplanner.team/stops/H1ju120b", "https://tec.openplanner.team/stops/H1ju120c"], ["https://tec.openplanner.team/stops/X618aba", "https://tec.openplanner.team/stops/X625acb"], ["https://tec.openplanner.team/stops/N539aaa", "https://tec.openplanner.team/stops/N539abb"], ["https://tec.openplanner.team/stops/LPOpass2", "https://tec.openplanner.team/stops/LSdcent2"], ["https://tec.openplanner.team/stops/LHcgare2", "https://tec.openplanner.team/stops/LSWeg--3"], ["https://tec.openplanner.team/stops/Cchoues1", "https://tec.openplanner.team/stops/Cchoues3"], ["https://tec.openplanner.team/stops/Bbiecoc1", "https://tec.openplanner.team/stops/Bbsggot2"], ["https://tec.openplanner.team/stops/X615aja", "https://tec.openplanner.team/stops/X615aka"], ["https://tec.openplanner.team/stops/N501iab", "https://tec.openplanner.team/stops/N501idb"], ["https://tec.openplanner.team/stops/Bgnvgir2", "https://tec.openplanner.team/stops/Blasren2"], ["https://tec.openplanner.team/stops/X597aga", "https://tec.openplanner.team/stops/X597agb"], ["https://tec.openplanner.team/stops/LlgLAMB1", "https://tec.openplanner.team/stops/Llgrege2"], ["https://tec.openplanner.team/stops/LTAairi2", "https://tec.openplanner.team/stops/LTAbran2"], ["https://tec.openplanner.team/stops/LNAbass1", "https://tec.openplanner.team/stops/LNAbass2"], ["https://tec.openplanner.team/stops/X811ala", "https://tec.openplanner.team/stops/X811alb"], ["https://tec.openplanner.team/stops/X911aab", "https://tec.openplanner.team/stops/X911awa"], ["https://tec.openplanner.team/stops/H4co134a", "https://tec.openplanner.team/stops/H4co158b"], ["https://tec.openplanner.team/stops/LlSzoll2", "https://tec.openplanner.team/stops/LrOwahl1"], ["https://tec.openplanner.team/stops/H1ls109b", "https://tec.openplanner.team/stops/H1ls110b"], ["https://tec.openplanner.team/stops/Cnahous1", "https://tec.openplanner.team/stops/Cnaplbu2"], ["https://tec.openplanner.team/stops/Cchba1", "https://tec.openplanner.team/stops/Cchfort1"], ["https://tec.openplanner.team/stops/X804aaa", "https://tec.openplanner.team/stops/X818abb"], ["https://tec.openplanner.team/stops/Cgyobse1", "https://tec.openplanner.team/stops/Cgyplvi2"], ["https://tec.openplanner.team/stops/X908aca", "https://tec.openplanner.team/stops/X908acb"], ["https://tec.openplanner.team/stops/LLMjacq2", "https://tec.openplanner.team/stops/LThbatt2"], ["https://tec.openplanner.team/stops/H4ro155b", "https://tec.openplanner.team/stops/H5pe148b"], ["https://tec.openplanner.team/stops/N106aca", "https://tec.openplanner.team/stops/N137abb"], ["https://tec.openplanner.team/stops/H4er122b", "https://tec.openplanner.team/stops/H4er124b"], ["https://tec.openplanner.team/stops/LMucarr1", "https://tec.openplanner.team/stops/LMupont1"], ["https://tec.openplanner.team/stops/N509aga", "https://tec.openplanner.team/stops/N509agb"], ["https://tec.openplanner.team/stops/X919akd", "https://tec.openplanner.team/stops/X919aoa"], ["https://tec.openplanner.team/stops/Ljetout2", "https://tec.openplanner.team/stops/Ljetout3"], ["https://tec.openplanner.team/stops/H2hg160a", "https://tec.openplanner.team/stops/H2hg160b"], ["https://tec.openplanner.team/stops/LSdencl*", "https://tec.openplanner.team/stops/LVtchai1"], ["https://tec.openplanner.team/stops/X633aja", "https://tec.openplanner.team/stops/X634aaa"], ["https://tec.openplanner.team/stops/H1ml112a", "https://tec.openplanner.team/stops/H1ne140a"], ["https://tec.openplanner.team/stops/LHUcamp1", "https://tec.openplanner.team/stops/LTimalv2"], ["https://tec.openplanner.team/stops/H1do119a", "https://tec.openplanner.team/stops/H1do129a"], ["https://tec.openplanner.team/stops/X601axa", "https://tec.openplanner.team/stops/X601axb"], ["https://tec.openplanner.team/stops/X996ada", "https://tec.openplanner.team/stops/X996adb"], ["https://tec.openplanner.team/stops/Baudstr2", "https://tec.openplanner.team/stops/Bettars2"], ["https://tec.openplanner.team/stops/H5at107a", "https://tec.openplanner.team/stops/H5at134b"], ["https://tec.openplanner.team/stops/Llgatla2", "https://tec.openplanner.team/stops/Llgbaya1"], ["https://tec.openplanner.team/stops/X872ada", "https://tec.openplanner.team/stops/X890aea"], ["https://tec.openplanner.team/stops/H4hu114a", "https://tec.openplanner.team/stops/H4hu114b"], ["https://tec.openplanner.team/stops/X812ala", "https://tec.openplanner.team/stops/X812ama"], ["https://tec.openplanner.team/stops/Csbrago1", "https://tec.openplanner.team/stops/H1ls130a"], ["https://tec.openplanner.team/stops/N501loa", "https://tec.openplanner.team/stops/N501lob"], ["https://tec.openplanner.team/stops/X741ajb", "https://tec.openplanner.team/stops/X741ajc"], ["https://tec.openplanner.team/stops/Bbsicas1", "https://tec.openplanner.team/stops/Bbsicas2"], ["https://tec.openplanner.team/stops/H1bx104b", "https://tec.openplanner.team/stops/H1bx107b"], ["https://tec.openplanner.team/stops/Bbcoben2", "https://tec.openplanner.team/stops/H3br102a"], ["https://tec.openplanner.team/stops/H1ro132a", "https://tec.openplanner.team/stops/H1ro141b"], ["https://tec.openplanner.team/stops/H2sb243b", "https://tec.openplanner.team/stops/H2sb243c"], ["https://tec.openplanner.team/stops/LrUweve1", "https://tec.openplanner.team/stops/LsBzent2"], ["https://tec.openplanner.team/stops/LNEcouc1", "https://tec.openplanner.team/stops/LNEvand2"], ["https://tec.openplanner.team/stops/X723adb", "https://tec.openplanner.team/stops/X723afb"], ["https://tec.openplanner.team/stops/Crodebr1", "https://tec.openplanner.team/stops/Croegli2"], ["https://tec.openplanner.team/stops/H4lu125b", "https://tec.openplanner.team/stops/H4lu126b"], ["https://tec.openplanner.team/stops/Brebcha1", "https://tec.openplanner.team/stops/Brebmtg1"], ["https://tec.openplanner.team/stops/LlA43--1", "https://tec.openplanner.team/stops/LrUgeme1"], ["https://tec.openplanner.team/stops/X796acb", "https://tec.openplanner.team/stops/X796aga"], ["https://tec.openplanner.team/stops/LLrfont2", "https://tec.openplanner.team/stops/LLrmeno2"], ["https://tec.openplanner.team/stops/H2se106a", "https://tec.openplanner.team/stops/H2se115a"], ["https://tec.openplanner.team/stops/X614asb", "https://tec.openplanner.team/stops/X614ata"], ["https://tec.openplanner.team/stops/Bjodath1", "https://tec.openplanner.team/stops/Bjodcad1"], ["https://tec.openplanner.team/stops/LDOeg--1", "https://tec.openplanner.team/stops/LDOjose1"], ["https://tec.openplanner.team/stops/N385aab", "https://tec.openplanner.team/stops/N385aac"], ["https://tec.openplanner.team/stops/Lbrbass1", "https://tec.openplanner.team/stops/Lbrhvl-*"], ["https://tec.openplanner.team/stops/Csobrou2", "https://tec.openplanner.team/stops/Csostoc2"], ["https://tec.openplanner.team/stops/H4be106a", "https://tec.openplanner.team/stops/H4be109a"], ["https://tec.openplanner.team/stops/Cobmven1", "https://tec.openplanner.team/stops/Cpcegli2"], ["https://tec.openplanner.team/stops/H2mg149a", "https://tec.openplanner.team/stops/H2mg149b"], ["https://tec.openplanner.team/stops/H4ef113b", "https://tec.openplanner.team/stops/H4ef113d"], ["https://tec.openplanner.team/stops/N550ala", "https://tec.openplanner.team/stops/N550alb"], ["https://tec.openplanner.team/stops/LbThau11", "https://tec.openplanner.team/stops/LmRh%C3%B6812"], ["https://tec.openplanner.team/stops/H4we134a", "https://tec.openplanner.team/stops/H4we139b"], ["https://tec.openplanner.team/stops/LPbhaut2", "https://tec.openplanner.team/stops/LPbtene2"], ["https://tec.openplanner.team/stops/Bgntcha2", "https://tec.openplanner.team/stops/Bgntpla1"], ["https://tec.openplanner.team/stops/X713acb", "https://tec.openplanner.team/stops/X731aja"], ["https://tec.openplanner.team/stops/N521agb", "https://tec.openplanner.team/stops/N521aic"], ["https://tec.openplanner.team/stops/LrUbahn2", "https://tec.openplanner.team/stops/LrUbrac1"], ["https://tec.openplanner.team/stops/LWNberg1", "https://tec.openplanner.team/stops/LWNcime1"], ["https://tec.openplanner.team/stops/LSebott2", "https://tec.openplanner.team/stops/LSemc--4"], ["https://tec.openplanner.team/stops/H4mo198a", "https://tec.openplanner.team/stops/H4mo205b"], ["https://tec.openplanner.team/stops/N229ana", "https://tec.openplanner.team/stops/N229atb"], ["https://tec.openplanner.team/stops/LBslama2", "https://tec.openplanner.team/stops/LBsoha-2"], ["https://tec.openplanner.team/stops/H1ci102b", "https://tec.openplanner.team/stops/H1hn202b"], ["https://tec.openplanner.team/stops/X371abb", "https://tec.openplanner.team/stops/X371acb"], ["https://tec.openplanner.team/stops/H4mn100a", "https://tec.openplanner.team/stops/H4rx142a"], ["https://tec.openplanner.team/stops/H4ga154a", "https://tec.openplanner.team/stops/H4ha167a"], ["https://tec.openplanner.team/stops/H2ll178d", "https://tec.openplanner.team/stops/H2ll186b"], ["https://tec.openplanner.team/stops/H2pr115a", "https://tec.openplanner.team/stops/H2pr118a"], ["https://tec.openplanner.team/stops/N226ada", "https://tec.openplanner.team/stops/N338afb"], ["https://tec.openplanner.team/stops/LeIpiro3", "https://tec.openplanner.team/stops/LiV19--2"], ["https://tec.openplanner.team/stops/LHdfays1", "https://tec.openplanner.team/stops/LVtvalu1"], ["https://tec.openplanner.team/stops/X879ama", "https://tec.openplanner.team/stops/X879amb"], ["https://tec.openplanner.team/stops/LFTneur*", "https://tec.openplanner.team/stops/LNAbouh2"], ["https://tec.openplanner.team/stops/H5pe128a", "https://tec.openplanner.team/stops/H5pe148a"], ["https://tec.openplanner.team/stops/LSPmari2", "https://tec.openplanner.team/stops/LSPtonn2"], ["https://tec.openplanner.team/stops/H1mj129a", "https://tec.openplanner.team/stops/H1mj132b"], ["https://tec.openplanner.team/stops/Crebrux1", "https://tec.openplanner.team/stops/Creluth1"], ["https://tec.openplanner.team/stops/Bsamc7d1", "https://tec.openplanner.team/stops/Bsamfma2"], ["https://tec.openplanner.team/stops/LOdcris2", "https://tec.openplanner.team/stops/LRUhama2"], ["https://tec.openplanner.team/stops/X804aua", "https://tec.openplanner.team/stops/X804brb"], ["https://tec.openplanner.team/stops/X744aca", "https://tec.openplanner.team/stops/X744acb"], ["https://tec.openplanner.team/stops/Bllngar2", "https://tec.openplanner.team/stops/Bllnpeq1"], ["https://tec.openplanner.team/stops/LRGeg--1", "https://tec.openplanner.team/stops/LRGgrov2"], ["https://tec.openplanner.team/stops/N425abb", "https://tec.openplanner.team/stops/N425aha"], ["https://tec.openplanner.team/stops/LBEchan1", "https://tec.openplanner.team/stops/LBEtroo2"], ["https://tec.openplanner.team/stops/Bcrncor2", "https://tec.openplanner.team/stops/N529abb"], ["https://tec.openplanner.team/stops/Bwavfol1", "https://tec.openplanner.team/stops/Bwavmes2"], ["https://tec.openplanner.team/stops/H4hx115a", "https://tec.openplanner.team/stops/H4hx115b"], ["https://tec.openplanner.team/stops/Bmrspel2", "https://tec.openplanner.team/stops/Bwatvco2"], ["https://tec.openplanner.team/stops/NC14aba", "https://tec.openplanner.team/stops/NC44agb"], ["https://tec.openplanner.team/stops/Cchbrou1", "https://tec.openplanner.team/stops/Cchjaur2"], ["https://tec.openplanner.team/stops/Lglmoul2", "https://tec.openplanner.team/stops/Lmomarr1"], ["https://tec.openplanner.team/stops/N244ada", "https://tec.openplanner.team/stops/N244aea"], ["https://tec.openplanner.team/stops/X640alb", "https://tec.openplanner.team/stops/X640amb"], ["https://tec.openplanner.team/stops/H4ef113a", "https://tec.openplanner.team/stops/H4ef113c"], ["https://tec.openplanner.team/stops/Btstcar2", "https://tec.openplanner.team/stops/Btstcar4"], ["https://tec.openplanner.team/stops/Bjaugaz2", "https://tec.openplanner.team/stops/Bmrl4ch2"], ["https://tec.openplanner.team/stops/LsVprum3", "https://tec.openplanner.team/stops/LwL100-1"], ["https://tec.openplanner.team/stops/H4bo114c", "https://tec.openplanner.team/stops/H4bo119a"], ["https://tec.openplanner.team/stops/N501haa", "https://tec.openplanner.team/stops/N501icz"], ["https://tec.openplanner.team/stops/Cciarfr2", "https://tec.openplanner.team/stops/Ccigene2"], ["https://tec.openplanner.team/stops/N548ada", "https://tec.openplanner.team/stops/N548aka"], ["https://tec.openplanner.team/stops/H5rx137a", "https://tec.openplanner.team/stops/H5rx151a"], ["https://tec.openplanner.team/stops/Cjuecha1", "https://tec.openplanner.team/stops/Cjufrat2"], ["https://tec.openplanner.team/stops/X671aba", "https://tec.openplanner.team/stops/X671aca"], ["https://tec.openplanner.team/stops/X687aia", "https://tec.openplanner.team/stops/X687aja"], ["https://tec.openplanner.team/stops/H1bn148b", "https://tec.openplanner.team/stops/H1qp141b"], ["https://tec.openplanner.team/stops/Bnivall2", "https://tec.openplanner.team/stops/Bnivfhu2"], ["https://tec.openplanner.team/stops/X670aha", "https://tec.openplanner.team/stops/X670aib"], ["https://tec.openplanner.team/stops/Cgrbert2", "https://tec.openplanner.team/stops/NC14aia"], ["https://tec.openplanner.team/stops/X342aab", "https://tec.openplanner.team/stops/X342aca"], ["https://tec.openplanner.team/stops/H4ry130a", "https://tec.openplanner.team/stops/H4ta119a"], ["https://tec.openplanner.team/stops/LXhhaka2", "https://tec.openplanner.team/stops/LXhjupr3"], ["https://tec.openplanner.team/stops/Crgegli1", "https://tec.openplanner.team/stops/Cstdona6"], ["https://tec.openplanner.team/stops/Bovejme2", "https://tec.openplanner.team/stops/Bovelge2"], ["https://tec.openplanner.team/stops/H2be101a", "https://tec.openplanner.team/stops/H2be102a"], ["https://tec.openplanner.team/stops/Blmlvex2", "https://tec.openplanner.team/stops/Brsreco2"], ["https://tec.openplanner.team/stops/X734apa", "https://tec.openplanner.team/stops/X734aqa"], ["https://tec.openplanner.team/stops/N535aea", "https://tec.openplanner.team/stops/N535amb"], ["https://tec.openplanner.team/stops/H1wa155b", "https://tec.openplanner.team/stops/H1wa155d"], ["https://tec.openplanner.team/stops/LlgLAMB5", "https://tec.openplanner.team/stops/LlgLAMB7"], ["https://tec.openplanner.team/stops/X904ana", "https://tec.openplanner.team/stops/X904anb"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/Crcverr2"], ["https://tec.openplanner.team/stops/LETfort1", "https://tec.openplanner.team/stops/LETfort4"], ["https://tec.openplanner.team/stops/LDomoul1", "https://tec.openplanner.team/stops/LListie2"], ["https://tec.openplanner.team/stops/Cmlbeau1", "https://tec.openplanner.team/stops/Cmlthym2"], ["https://tec.openplanner.team/stops/LBTfoot2", "https://tec.openplanner.team/stops/LCxchal2"], ["https://tec.openplanner.team/stops/N528afy", "https://tec.openplanner.team/stops/N528afz"], ["https://tec.openplanner.team/stops/Bjodfco1", "https://tec.openplanner.team/stops/NR21agb"], ["https://tec.openplanner.team/stops/N501fpb", "https://tec.openplanner.team/stops/N501mfa"], ["https://tec.openplanner.team/stops/X601azb", "https://tec.openplanner.team/stops/X601bbd"], ["https://tec.openplanner.team/stops/H4or114a", "https://tec.openplanner.team/stops/H4or116a"], ["https://tec.openplanner.team/stops/Bnivga62", "https://tec.openplanner.team/stops/Bnivrwi2"], ["https://tec.openplanner.team/stops/LeUclou1", "https://tec.openplanner.team/stops/LeUclou2"], ["https://tec.openplanner.team/stops/Bblaece1", "https://tec.openplanner.team/stops/Bwatali1"], ["https://tec.openplanner.team/stops/X664ara", "https://tec.openplanner.team/stops/X664ata"], ["https://tec.openplanner.team/stops/LSNmoul1", "https://tec.openplanner.team/stops/LSNmoul4"], ["https://tec.openplanner.team/stops/N229aua", "https://tec.openplanner.team/stops/N230acb"], ["https://tec.openplanner.team/stops/Cmlavch1", "https://tec.openplanner.team/stops/Cmlbuis3"], ["https://tec.openplanner.team/stops/N501hjc", "https://tec.openplanner.team/stops/N501hlx"], ["https://tec.openplanner.team/stops/H1do116b", "https://tec.openplanner.team/stops/H1do126b"], ["https://tec.openplanner.team/stops/NR38ada", "https://tec.openplanner.team/stops/NR38aea"], ["https://tec.openplanner.team/stops/Cfcecol1", "https://tec.openplanner.team/stops/Cfcpla1"], ["https://tec.openplanner.team/stops/Lbococh2", "https://tec.openplanner.team/stops/Lseblan*"], ["https://tec.openplanner.team/stops/Ljhcarr1", "https://tec.openplanner.team/stops/Ljhheus2"], ["https://tec.openplanner.team/stops/X601bea", "https://tec.openplanner.team/stops/X601bha"], ["https://tec.openplanner.team/stops/Cgoathe1", "https://tec.openplanner.team/stops/Cgocapu2"], ["https://tec.openplanner.team/stops/LRGcana1", "https://tec.openplanner.team/stops/LRGcana2"], ["https://tec.openplanner.team/stops/H4er124b", "https://tec.openplanner.team/stops/H4ty322c"], ["https://tec.openplanner.team/stops/Llmbouv2", "https://tec.openplanner.team/stops/Llmeg--*"], ["https://tec.openplanner.team/stops/LVHbrai2", "https://tec.openplanner.team/stops/LVHtill1"], ["https://tec.openplanner.team/stops/Bhengou2", "https://tec.openplanner.team/stops/Bhenpln2"], ["https://tec.openplanner.team/stops/Bcsebde1", "https://tec.openplanner.team/stops/Bcseeco3"], ["https://tec.openplanner.team/stops/Bblapet1", "https://tec.openplanner.team/stops/Bblasol1"], ["https://tec.openplanner.team/stops/LGEpt--2", "https://tec.openplanner.team/stops/LLYcham1"], ["https://tec.openplanner.team/stops/N501lbd", "https://tec.openplanner.team/stops/N501lca"], ["https://tec.openplanner.team/stops/Bhenard2", "https://tec.openplanner.team/stops/Bhenmal1"], ["https://tec.openplanner.team/stops/N507aad", "https://tec.openplanner.team/stops/N512atb"], ["https://tec.openplanner.team/stops/Lghferr2", "https://tec.openplanner.team/stops/Lghvold2"], ["https://tec.openplanner.team/stops/N501aaz", "https://tec.openplanner.team/stops/N501hba"], ["https://tec.openplanner.team/stops/Lcegeor1", "https://tec.openplanner.team/stops/Lvcreve1"], ["https://tec.openplanner.team/stops/LVlledo1", "https://tec.openplanner.team/stops/LVlledo2"], ["https://tec.openplanner.team/stops/LWEpl--1", "https://tec.openplanner.team/stops/LWEpl--2"], ["https://tec.openplanner.team/stops/X752aba", "https://tec.openplanner.team/stops/X752acb"], ["https://tec.openplanner.team/stops/Cchdelf1", "https://tec.openplanner.team/stops/Cchvil21"], ["https://tec.openplanner.team/stops/Ldifoye1", "https://tec.openplanner.team/stops/Lprmerc*"], ["https://tec.openplanner.team/stops/H3so155a", "https://tec.openplanner.team/stops/H3so155b"], ["https://tec.openplanner.team/stops/H1pd141a", "https://tec.openplanner.team/stops/H1pd143a"], ["https://tec.openplanner.team/stops/N215aaa", "https://tec.openplanner.team/stops/N215aba"], ["https://tec.openplanner.team/stops/X947afa", "https://tec.openplanner.team/stops/X947afb"], ["https://tec.openplanner.team/stops/Llgborn2", "https://tec.openplanner.team/stops/Llgmaus2"], ["https://tec.openplanner.team/stops/N544afa", "https://tec.openplanner.team/stops/N547adb"], ["https://tec.openplanner.team/stops/Bbiefon1", "https://tec.openplanner.team/stops/Bbiesbi1"], ["https://tec.openplanner.team/stops/H1mq198a", "https://tec.openplanner.team/stops/H1mq200b"], ["https://tec.openplanner.team/stops/N501bib", "https://tec.openplanner.team/stops/N501bvb"], ["https://tec.openplanner.team/stops/Cvpbifu2", "https://tec.openplanner.team/stops/Cvpchat1"], ["https://tec.openplanner.team/stops/X624afa", "https://tec.openplanner.team/stops/X624aha"], ["https://tec.openplanner.team/stops/LCUmonu2", "https://tec.openplanner.team/stops/LEntrix2"], ["https://tec.openplanner.team/stops/LSIvieu1", "https://tec.openplanner.team/stops/LSIvieu2"], ["https://tec.openplanner.team/stops/N252acc", "https://tec.openplanner.team/stops/N252acd"], ["https://tec.openplanner.team/stops/LSPbalm1", "https://tec.openplanner.team/stops/LSPpelz2"], ["https://tec.openplanner.team/stops/LELhard2", "https://tec.openplanner.team/stops/LHCbois1"], ["https://tec.openplanner.team/stops/Cchalou2", "https://tec.openplanner.team/stops/Cchmott2"], ["https://tec.openplanner.team/stops/H1ge116b", "https://tec.openplanner.team/stops/H1ge117a"], ["https://tec.openplanner.team/stops/Lceavia1", "https://tec.openplanner.team/stops/Lceprog2"], ["https://tec.openplanner.team/stops/LFPkast2", "https://tec.openplanner.team/stops/LFPkerk1"], ["https://tec.openplanner.team/stops/X664ala", "https://tec.openplanner.team/stops/X664alb"], ["https://tec.openplanner.team/stops/LTIgare1", "https://tec.openplanner.team/stops/LTIpire1"], ["https://tec.openplanner.team/stops/Cmazsnc2", "https://tec.openplanner.team/stops/Cmomoul6"], ["https://tec.openplanner.team/stops/N508afb", "https://tec.openplanner.team/stops/N508ajb"], ["https://tec.openplanner.team/stops/LTywaut1", "https://tec.openplanner.team/stops/LTywyna2"], ["https://tec.openplanner.team/stops/H1ms263a", "https://tec.openplanner.team/stops/H1ms263b"], ["https://tec.openplanner.team/stops/N547aea", "https://tec.openplanner.team/stops/N547aeb"], ["https://tec.openplanner.team/stops/Cfrgare2", "https://tec.openplanner.team/stops/Cfrgare3"], ["https://tec.openplanner.team/stops/LAMpirk1", "https://tec.openplanner.team/stops/LAMpirk2"], ["https://tec.openplanner.team/stops/N509aub", "https://tec.openplanner.team/stops/N511ana"], ["https://tec.openplanner.team/stops/Cjumest1", "https://tec.openplanner.team/stops/Cjuvand2"], ["https://tec.openplanner.team/stops/X636avb", "https://tec.openplanner.team/stops/X636awb"], ["https://tec.openplanner.team/stops/H4ty292a", "https://tec.openplanner.team/stops/H4ty323a"], ["https://tec.openplanner.team/stops/LGreg--1", "https://tec.openplanner.team/stops/LGreg--2"], ["https://tec.openplanner.team/stops/LBgbaga2", "https://tec.openplanner.team/stops/LGDgdou2"], ["https://tec.openplanner.team/stops/Bgemkal2", "https://tec.openplanner.team/stops/N541acb"], ["https://tec.openplanner.team/stops/Cfmcent1", "https://tec.openplanner.team/stops/Cfmwaut2"], ["https://tec.openplanner.team/stops/LAYfoot2", "https://tec.openplanner.team/stops/LFLcarr1"], ["https://tec.openplanner.team/stops/H4wn127a", "https://tec.openplanner.team/stops/H4wn127b"], ["https://tec.openplanner.team/stops/Lpechin1", "https://tec.openplanner.team/stops/Lpecime1"], ["https://tec.openplanner.team/stops/Brebchb2", "https://tec.openplanner.team/stops/H3br107b"], ["https://tec.openplanner.team/stops/X739aea", "https://tec.openplanner.team/stops/X739aia"], ["https://tec.openplanner.team/stops/X784aca", "https://tec.openplanner.team/stops/X784afa"], ["https://tec.openplanner.team/stops/N543aua", "https://tec.openplanner.team/stops/N543bka"], ["https://tec.openplanner.team/stops/Cjumade0", "https://tec.openplanner.team/stops/Cjumade4"], ["https://tec.openplanner.team/stops/X608aoa", "https://tec.openplanner.team/stops/X608ara"], ["https://tec.openplanner.team/stops/Brixcro1", "https://tec.openplanner.team/stops/Brixeur5"], ["https://tec.openplanner.team/stops/LEN101-1", "https://tec.openplanner.team/stops/LENoule2"], ["https://tec.openplanner.team/stops/Lpegiet1", "https://tec.openplanner.team/stops/Lpeptle2"], ["https://tec.openplanner.team/stops/LWastei1", "https://tec.openplanner.team/stops/LWathir1"], ["https://tec.openplanner.team/stops/H5rx131a", "https://tec.openplanner.team/stops/H5rx132a"], ["https://tec.openplanner.team/stops/LLevaux1", "https://tec.openplanner.team/stops/LLevaux2"], ["https://tec.openplanner.team/stops/LLTcent1", "https://tec.openplanner.team/stops/LLTcent2"], ["https://tec.openplanner.team/stops/X837aaa", "https://tec.openplanner.team/stops/X839aea"], ["https://tec.openplanner.team/stops/LWycabi2", "https://tec.openplanner.team/stops/LWycarr2"], ["https://tec.openplanner.team/stops/Bwanorp2", "https://tec.openplanner.team/stops/Bwanwar1"], ["https://tec.openplanner.team/stops/H4ty333a", "https://tec.openplanner.team/stops/H4ty333b"], ["https://tec.openplanner.team/stops/LLNcime1", "https://tec.openplanner.team/stops/LLNeg--1"], ["https://tec.openplanner.team/stops/Bezegar2", "https://tec.openplanner.team/stops/Bezeksj1"], ["https://tec.openplanner.team/stops/N573aaa", "https://tec.openplanner.team/stops/N573aab"], ["https://tec.openplanner.team/stops/Ljumart2", "https://tec.openplanner.team/stops/Ljumesa1"], ["https://tec.openplanner.team/stops/LON02--1", "https://tec.openplanner.team/stops/Lthfagn1"], ["https://tec.openplanner.team/stops/X754ara", "https://tec.openplanner.team/stops/X754asb"], ["https://tec.openplanner.team/stops/H4pq114b", "https://tec.openplanner.team/stops/H4pq117b"], ["https://tec.openplanner.team/stops/LLvgare2", "https://tec.openplanner.team/stops/NL81aea"], ["https://tec.openplanner.team/stops/X899aga", "https://tec.openplanner.team/stops/X899aia"], ["https://tec.openplanner.team/stops/N101ana", "https://tec.openplanner.team/stops/N101aqb"], ["https://tec.openplanner.team/stops/Bjaugar5", "https://tec.openplanner.team/stops/Bjauvch2"], ["https://tec.openplanner.team/stops/Bbxlner2", "https://tec.openplanner.team/stops/Bettgle2"], ["https://tec.openplanner.team/stops/X761ada", "https://tec.openplanner.team/stops/X790aha"], ["https://tec.openplanner.team/stops/Ladpire1", "https://tec.openplanner.team/stops/Ladpire2"], ["https://tec.openplanner.team/stops/N501ioa", "https://tec.openplanner.team/stops/N501ira"], ["https://tec.openplanner.team/stops/LVSpota2", "https://tec.openplanner.team/stops/LVSslin4"], ["https://tec.openplanner.team/stops/Bllnhoc2", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://tec.openplanner.team/stops/LnEfrie1", "https://tec.openplanner.team/stops/LoEbach2"], ["https://tec.openplanner.team/stops/LBUvall2", "https://tec.openplanner.team/stops/NL68abb"], ["https://tec.openplanner.team/stops/Bobacar2", "https://tec.openplanner.team/stops/Bptrmar1"], ["https://tec.openplanner.team/stops/LCRecmo2", "https://tec.openplanner.team/stops/LCRfize2"], ["https://tec.openplanner.team/stops/H1at108a", "https://tec.openplanner.team/stops/H1at109a"], ["https://tec.openplanner.team/stops/H2be100a", "https://tec.openplanner.team/stops/H2ch101b"], ["https://tec.openplanner.team/stops/H1do120a", "https://tec.openplanner.team/stops/H1do120b"], ["https://tec.openplanner.team/stops/Bgemga12", "https://tec.openplanner.team/stops/N522bva"], ["https://tec.openplanner.team/stops/Btubcal1", "https://tec.openplanner.team/stops/Btubsam1"], ["https://tec.openplanner.team/stops/H1bi104b", "https://tec.openplanner.team/stops/H1mm131a"], ["https://tec.openplanner.team/stops/X904aab", "https://tec.openplanner.team/stops/X904abb"], ["https://tec.openplanner.team/stops/Ccogibr2", "https://tec.openplanner.team/stops/Ccopeti2"], ["https://tec.openplanner.team/stops/Cflcoro2", "https://tec.openplanner.team/stops/Cflspir1"], ["https://tec.openplanner.team/stops/Brsga151", "https://tec.openplanner.team/stops/Bwatcoq1"], ["https://tec.openplanner.team/stops/Llgerac1", "https://tec.openplanner.team/stops/Llgfoss2"], ["https://tec.openplanner.team/stops/N211apa", "https://tec.openplanner.team/stops/N211ava"], ["https://tec.openplanner.team/stops/H4wn130b", "https://tec.openplanner.team/stops/H4wn138a"], ["https://tec.openplanner.team/stops/X949ahb", "https://tec.openplanner.team/stops/X949ajb"], ["https://tec.openplanner.team/stops/LHmferm1", "https://tec.openplanner.team/stops/LHmferm2"], ["https://tec.openplanner.team/stops/N206aab", "https://tec.openplanner.team/stops/X206aza"], ["https://tec.openplanner.team/stops/Blonegl1", "https://tec.openplanner.team/stops/Bptbmco2"], ["https://tec.openplanner.team/stops/X658abb", "https://tec.openplanner.team/stops/X658aeb"], ["https://tec.openplanner.team/stops/Llgchau1", "https://tec.openplanner.team/stops/Llgpere2"], ["https://tec.openplanner.team/stops/Cfabnat2", "https://tec.openplanner.team/stops/Cfastan2"], ["https://tec.openplanner.team/stops/N244ama", "https://tec.openplanner.team/stops/N244ana"], ["https://tec.openplanner.team/stops/LAMdelh*", "https://tec.openplanner.team/stops/LAMdelh2"], ["https://tec.openplanner.team/stops/X721anb", "https://tec.openplanner.team/stops/X721arb"], ["https://tec.openplanner.team/stops/N501ika", "https://tec.openplanner.team/stops/N501ikb"], ["https://tec.openplanner.team/stops/H2fa105b", "https://tec.openplanner.team/stops/H2fa108a"], ["https://tec.openplanner.team/stops/LJAdeho4", "https://tec.openplanner.team/stops/LJAhanq2"], ["https://tec.openplanner.team/stops/X669aea", "https://tec.openplanner.team/stops/X672aid"], ["https://tec.openplanner.team/stops/Bcerpco1", "https://tec.openplanner.team/stops/Bottpin2"], ["https://tec.openplanner.team/stops/H1sy145b", "https://tec.openplanner.team/stops/H1sy150b"], ["https://tec.openplanner.team/stops/N139aca", "https://tec.openplanner.team/stops/N140aab"], ["https://tec.openplanner.team/stops/LWepost2", "https://tec.openplanner.team/stops/LWevand2"], ["https://tec.openplanner.team/stops/N543bob", "https://tec.openplanner.team/stops/N543cmb"], ["https://tec.openplanner.team/stops/X605aga", "https://tec.openplanner.team/stops/X605agb"], ["https://tec.openplanner.team/stops/N301ada", "https://tec.openplanner.team/stops/N301aib"], ["https://tec.openplanner.team/stops/Boplcar1", "https://tec.openplanner.team/stops/Boplcar2"], ["https://tec.openplanner.team/stops/Loudela2", "https://tec.openplanner.team/stops/Loutroi1"], ["https://tec.openplanner.team/stops/Lvegc--3", "https://tec.openplanner.team/stops/Lvevict1"], ["https://tec.openplanner.team/stops/LWibare2", "https://tec.openplanner.team/stops/LWipaif4"], ["https://tec.openplanner.team/stops/Crccano1", "https://tec.openplanner.team/stops/Crccano2"], ["https://tec.openplanner.team/stops/H4av107b", "https://tec.openplanner.team/stops/H4ss156a"], ["https://tec.openplanner.team/stops/Bolgcsa1", "https://tec.openplanner.team/stops/Bolphgr2"], ["https://tec.openplanner.team/stops/X790aca", "https://tec.openplanner.team/stops/X790acb"], ["https://tec.openplanner.team/stops/N106aka", "https://tec.openplanner.team/stops/N106akb"], ["https://tec.openplanner.team/stops/H4ga154b", "https://tec.openplanner.team/stops/H4ha167a"], ["https://tec.openplanner.team/stops/H1cu120a", "https://tec.openplanner.team/stops/H1je360a"], ["https://tec.openplanner.team/stops/H4mo138b", "https://tec.openplanner.team/stops/H4mo158b"], ["https://tec.openplanner.team/stops/X662afa", "https://tec.openplanner.team/stops/X662agb"], ["https://tec.openplanner.team/stops/LoUpete2", "https://tec.openplanner.team/stops/LsCback2"], ["https://tec.openplanner.team/stops/H1lm107a", "https://tec.openplanner.team/stops/H1to152a"], ["https://tec.openplanner.team/stops/X641abb", "https://tec.openplanner.team/stops/X641aca"], ["https://tec.openplanner.team/stops/X823afd", "https://tec.openplanner.team/stops/X823agb"], ["https://tec.openplanner.team/stops/Lrcauto1", "https://tec.openplanner.team/stops/Lrcrars1"], ["https://tec.openplanner.team/stops/LRmkerk2", "https://tec.openplanner.team/stops/LTEkl122"], ["https://tec.openplanner.team/stops/H4do102a", "https://tec.openplanner.team/stops/H4ev119a"], ["https://tec.openplanner.team/stops/LtHfrie1", "https://tec.openplanner.team/stops/LtHkirc3"], ["https://tec.openplanner.team/stops/H1bn113a", "https://tec.openplanner.team/stops/H1qy133b"], ["https://tec.openplanner.team/stops/LSogite1", "https://tec.openplanner.team/stops/LSogite2"], ["https://tec.openplanner.team/stops/H1ho128a", "https://tec.openplanner.team/stops/H1wa164b"], ["https://tec.openplanner.team/stops/N121aab", "https://tec.openplanner.team/stops/N158aaa"], ["https://tec.openplanner.team/stops/Lra4bra1", "https://tec.openplanner.team/stops/Lrapays1"], ["https://tec.openplanner.team/stops/LVu40--1", "https://tec.openplanner.team/stops/LVukabi1"], ["https://tec.openplanner.team/stops/LAUneuv4", "https://tec.openplanner.team/stops/LAUneuv6"], ["https://tec.openplanner.team/stops/Cslegli1", "https://tec.openplanner.team/stops/Cvtvail2"], ["https://tec.openplanner.team/stops/CMparc2", "https://tec.openplanner.team/stops/Cmtrneu1"], ["https://tec.openplanner.team/stops/Lhurigu1", "https://tec.openplanner.team/stops/Lhurigu2"], ["https://tec.openplanner.team/stops/N223aab", "https://tec.openplanner.team/stops/N223abb"], ["https://tec.openplanner.team/stops/H1ms288a", "https://tec.openplanner.team/stops/H1ms313a"], ["https://tec.openplanner.team/stops/X758adb", "https://tec.openplanner.team/stops/X758aea"], ["https://tec.openplanner.team/stops/LLOchpl1", "https://tec.openplanner.team/stops/LLOchpl2"], ["https://tec.openplanner.team/stops/N135aoa", "https://tec.openplanner.team/stops/N135aob"], ["https://tec.openplanner.team/stops/N508aab", "https://tec.openplanner.team/stops/N508afa"], ["https://tec.openplanner.team/stops/H1hl124b", "https://tec.openplanner.team/stops/H1hl126a"], ["https://tec.openplanner.team/stops/Ldipl--3", "https://tec.openplanner.team/stops/Ldipl--4"], ["https://tec.openplanner.team/stops/Cmtfabi2", "https://tec.openplanner.team/stops/Cmtstth2"], ["https://tec.openplanner.team/stops/LmHflor1", "https://tec.openplanner.team/stops/LmHflor2"], ["https://tec.openplanner.team/stops/NH01arb", "https://tec.openplanner.team/stops/NH01asa"], ["https://tec.openplanner.team/stops/Llgcham7", "https://tec.openplanner.team/stops/Llghars7"], ["https://tec.openplanner.team/stops/Lkinyst1", "https://tec.openplanner.team/stops/Lscatme1"], ["https://tec.openplanner.team/stops/X650aaa", "https://tec.openplanner.team/stops/X650aob"], ["https://tec.openplanner.team/stops/LOucarr4", "https://tec.openplanner.team/stops/LOumaro1"], ["https://tec.openplanner.team/stops/LSGec--2", "https://tec.openplanner.team/stops/LSGsolo2"], ["https://tec.openplanner.team/stops/X650ana", "https://tec.openplanner.team/stops/X652aab"], ["https://tec.openplanner.team/stops/Ccumasu1", "https://tec.openplanner.team/stops/Ccupdes3"], ["https://tec.openplanner.team/stops/Lbemc--2", "https://tec.openplanner.team/stops/Ljuvieu1"], ["https://tec.openplanner.team/stops/H1ms264a", "https://tec.openplanner.team/stops/H1ms269a"], ["https://tec.openplanner.team/stops/H1ms254b", "https://tec.openplanner.team/stops/H1ms266b"], ["https://tec.openplanner.team/stops/N111aba", "https://tec.openplanner.team/stops/N127bha"], ["https://tec.openplanner.team/stops/Btubmar1", "https://tec.openplanner.team/stops/Btubstq1"], ["https://tec.openplanner.team/stops/H4mo136a", "https://tec.openplanner.team/stops/H4mo184b"], ["https://tec.openplanner.team/stops/H1bb119a", "https://tec.openplanner.team/stops/H1bb120b"], ["https://tec.openplanner.team/stops/Bhenard3", "https://tec.openplanner.team/stops/Bhengri1"], ["https://tec.openplanner.team/stops/H1he110a", "https://tec.openplanner.team/stops/H1he110b"], ["https://tec.openplanner.team/stops/N581aba", "https://tec.openplanner.team/stops/N581abb"], ["https://tec.openplanner.team/stops/N521ala", "https://tec.openplanner.team/stops/N525alb"], ["https://tec.openplanner.team/stops/H3go100b", "https://tec.openplanner.team/stops/H3go103a"], ["https://tec.openplanner.team/stops/LMsec--1", "https://tec.openplanner.team/stops/LMsvill1"], ["https://tec.openplanner.team/stops/Caiegli1", "https://tec.openplanner.team/stops/Caioign3"], ["https://tec.openplanner.team/stops/Cprrvil2", "https://tec.openplanner.team/stops/NC11aob"], ["https://tec.openplanner.team/stops/LeIdeid1", "https://tec.openplanner.team/stops/LiVgirk2"], ["https://tec.openplanner.team/stops/LPRfour2", "https://tec.openplanner.team/stops/LTRchpl2"], ["https://tec.openplanner.team/stops/N201aga", "https://tec.openplanner.team/stops/N202acb"], ["https://tec.openplanner.team/stops/X802apb", "https://tec.openplanner.team/stops/X802aqa"], ["https://tec.openplanner.team/stops/Cthvbas2", "https://tec.openplanner.team/stops/Cthvbas3"], ["https://tec.openplanner.team/stops/H4es113a", "https://tec.openplanner.team/stops/H4ev125b"], ["https://tec.openplanner.team/stops/H1on129a", "https://tec.openplanner.team/stops/H1on129b"], ["https://tec.openplanner.team/stops/Csabrun1", "https://tec.openplanner.team/stops/Csabrun2"], ["https://tec.openplanner.team/stops/X619aab", "https://tec.openplanner.team/stops/X619adb"], ["https://tec.openplanner.team/stops/Cfccuch1", "https://tec.openplanner.team/stops/Cvrfema1"], ["https://tec.openplanner.team/stops/Bsgeegl2", "https://tec.openplanner.team/stops/Bsgeqpb2"], ["https://tec.openplanner.team/stops/LESpont1", "https://tec.openplanner.team/stops/LESpont3"], ["https://tec.openplanner.team/stops/NH21aga", "https://tec.openplanner.team/stops/NH21agb"], ["https://tec.openplanner.team/stops/Llgblon1", "https://tec.openplanner.team/stops/Llgcont1"], ["https://tec.openplanner.team/stops/LsHfrie1", "https://tec.openplanner.team/stops/LsHkirc1"], ["https://tec.openplanner.team/stops/N136ada", "https://tec.openplanner.team/stops/N143aaa"], ["https://tec.openplanner.team/stops/H2ha129d", "https://tec.openplanner.team/stops/H2ha141b"], ["https://tec.openplanner.team/stops/Lsebuis2", "https://tec.openplanner.team/stops/Lseruis2"], ["https://tec.openplanner.team/stops/X359aga", "https://tec.openplanner.team/stops/X359aja"], ["https://tec.openplanner.team/stops/H4oe147a", "https://tec.openplanner.team/stops/H4oe149a"], ["https://tec.openplanner.team/stops/Cvlbvir1", "https://tec.openplanner.team/stops/Cvlgrta1"], ["https://tec.openplanner.team/stops/Bborcro2", "https://tec.openplanner.team/stops/Bitrpar2"], ["https://tec.openplanner.team/stops/Llghugo1", "https://tec.openplanner.team/stops/Llghugo2"], ["https://tec.openplanner.team/stops/Bbosdra2", "https://tec.openplanner.team/stops/Bbosgar2"], ["https://tec.openplanner.team/stops/LrDsage2", "https://tec.openplanner.team/stops/LrDzoll3"], ["https://tec.openplanner.team/stops/H1hr118c", "https://tec.openplanner.team/stops/H1hr118d"], ["https://tec.openplanner.team/stops/H1by100c", "https://tec.openplanner.team/stops/H1by104a"], ["https://tec.openplanner.team/stops/H1cv104b", "https://tec.openplanner.team/stops/H1ml112b"], ["https://tec.openplanner.team/stops/H1gh158a", "https://tec.openplanner.team/stops/H1gh158b"], ["https://tec.openplanner.team/stops/N118aqa", "https://tec.openplanner.team/stops/N118aqb"], ["https://tec.openplanner.team/stops/H5bs102c", "https://tec.openplanner.team/stops/H5bs102d"], ["https://tec.openplanner.team/stops/Bvirflu1", "https://tec.openplanner.team/stops/Bvirvol1"], ["https://tec.openplanner.team/stops/H2an102b", "https://tec.openplanner.team/stops/H2an103a"], ["https://tec.openplanner.team/stops/N141aeb", "https://tec.openplanner.team/stops/N141apb"], ["https://tec.openplanner.team/stops/LBEmich1", "https://tec.openplanner.team/stops/LBEmich2"], ["https://tec.openplanner.team/stops/Bblacar1", "https://tec.openplanner.team/stops/Bblacar2"], ["https://tec.openplanner.team/stops/Lroeg--1", "https://tec.openplanner.team/stops/Lroeg--2"], ["https://tec.openplanner.team/stops/N143aab", "https://tec.openplanner.team/stops/N143acb"], ["https://tec.openplanner.team/stops/Lhrjaur2", "https://tec.openplanner.team/stops/Lhrlaix1"], ["https://tec.openplanner.team/stops/Bblamer1", "https://tec.openplanner.team/stops/Bblasta1"], ["https://tec.openplanner.team/stops/LAYnias2", "https://tec.openplanner.team/stops/LAYwerb1"], ["https://tec.openplanner.team/stops/X601bbe", "https://tec.openplanner.team/stops/X601bqa"], ["https://tec.openplanner.team/stops/Cfabnat1", "https://tec.openplanner.team/stops/Cfanvmo1"], ["https://tec.openplanner.team/stops/Bjodcsb2", "https://tec.openplanner.team/stops/Bjodmal1"], ["https://tec.openplanner.team/stops/LOrpont2", "https://tec.openplanner.team/stops/LTyhall1"], ["https://tec.openplanner.team/stops/LCFcarr2", "https://tec.openplanner.team/stops/LHarenn3"], ["https://tec.openplanner.team/stops/H2go117b", "https://tec.openplanner.team/stops/H2se115a"], ["https://tec.openplanner.team/stops/Llgbene1", "https://tec.openplanner.team/stops/Llgcroi4"], ["https://tec.openplanner.team/stops/X770adb", "https://tec.openplanner.team/stops/X770aea"], ["https://tec.openplanner.team/stops/X811aia", "https://tec.openplanner.team/stops/X811aib"], ["https://tec.openplanner.team/stops/LLWmonu1", "https://tec.openplanner.team/stops/LLWmonu2"], ["https://tec.openplanner.team/stops/LMHeg--1", "https://tec.openplanner.team/stops/LMHplac1"], ["https://tec.openplanner.team/stops/Cmastfi2", "https://tec.openplanner.team/stops/Cmocalv1"], ["https://tec.openplanner.team/stops/H1gy113a", "https://tec.openplanner.team/stops/H1og133a"], ["https://tec.openplanner.team/stops/X904ada", "https://tec.openplanner.team/stops/X992aga"], ["https://tec.openplanner.team/stops/H1em108a", "https://tec.openplanner.team/stops/H1em111b"], ["https://tec.openplanner.team/stops/Bgemga08", "https://tec.openplanner.team/stops/N522bvg"], ["https://tec.openplanner.team/stops/N577aha", "https://tec.openplanner.team/stops/N577ahb"], ["https://tec.openplanner.team/stops/LwYneue1", "https://tec.openplanner.team/stops/LwYneue2"], ["https://tec.openplanner.team/stops/Lvearle2", "https://tec.openplanner.team/stops/Lvewaut1"], ["https://tec.openplanner.team/stops/N385aeb", "https://tec.openplanner.team/stops/N385aec"], ["https://tec.openplanner.team/stops/N387aca", "https://tec.openplanner.team/stops/N387acc"], ["https://tec.openplanner.team/stops/LRRandr2", "https://tec.openplanner.team/stops/LRRrimi2"], ["https://tec.openplanner.team/stops/H4ty318a", "https://tec.openplanner.team/stops/H4ty324a"], ["https://tec.openplanner.team/stops/LrDrose4", "https://tec.openplanner.team/stops/LrDzoll4"], ["https://tec.openplanner.team/stops/Bndbdra2", "https://tec.openplanner.team/stops/Bndbpco2"], ["https://tec.openplanner.team/stops/LPTeg--2", "https://tec.openplanner.team/stops/X794aaa"], ["https://tec.openplanner.team/stops/H2pe154a", "https://tec.openplanner.team/stops/H3bi100a"], ["https://tec.openplanner.team/stops/N519ajb", "https://tec.openplanner.team/stops/N519akb"], ["https://tec.openplanner.team/stops/X602ama", "https://tec.openplanner.team/stops/X602apb"], ["https://tec.openplanner.team/stops/X994aea", "https://tec.openplanner.team/stops/X994afa"], ["https://tec.openplanner.team/stops/Cfrmoul1", "https://tec.openplanner.team/stops/Cfrtill1"], ["https://tec.openplanner.team/stops/X837aca", "https://tec.openplanner.team/stops/X837ada"], ["https://tec.openplanner.team/stops/N501bdb", "https://tec.openplanner.team/stops/N501mla"], ["https://tec.openplanner.team/stops/Cwflouv4", "https://tec.openplanner.team/stops/Cwfzola1"], ["https://tec.openplanner.team/stops/Lbrfagn1", "https://tec.openplanner.team/stops/Ljulieg1"], ["https://tec.openplanner.team/stops/H3so185b", "https://tec.openplanner.team/stops/H3so187b"], ["https://tec.openplanner.team/stops/Canh1941", "https://tec.openplanner.team/stops/Canpeup1"], ["https://tec.openplanner.team/stops/LFMrijk1", "https://tec.openplanner.team/stops/LFMvoge*"], ["https://tec.openplanner.team/stops/H1bn114b", "https://tec.openplanner.team/stops/H1ge179a"], ["https://tec.openplanner.team/stops/LMYchpl1", "https://tec.openplanner.team/stops/X796agb"], ["https://tec.openplanner.team/stops/LMfpeni*", "https://tec.openplanner.team/stops/NL57ala"], ["https://tec.openplanner.team/stops/LnIfrie2", "https://tec.openplanner.team/stops/LnIschw2"], ["https://tec.openplanner.team/stops/X801aha", "https://tec.openplanner.team/stops/X801ahb"], ["https://tec.openplanner.team/stops/X624ama", "https://tec.openplanner.team/stops/X624amb"], ["https://tec.openplanner.team/stops/X715aga", "https://tec.openplanner.team/stops/X715agb"], ["https://tec.openplanner.team/stops/LWOcomm2", "https://tec.openplanner.team/stops/LWOmart1"], ["https://tec.openplanner.team/stops/Cgycvie1", "https://tec.openplanner.team/stops/Cgyrrep1"], ["https://tec.openplanner.team/stops/Bmrqpla1", "https://tec.openplanner.team/stops/H1mk108d"], ["https://tec.openplanner.team/stops/X609aia", "https://tec.openplanner.team/stops/X609alb"], ["https://tec.openplanner.team/stops/H1em109b", "https://tec.openplanner.team/stops/H1ev115a"], ["https://tec.openplanner.team/stops/N532aja", "https://tec.openplanner.team/stops/N532ajb"], ["https://tec.openplanner.team/stops/H2tr252b", "https://tec.openplanner.team/stops/H2tr257b"], ["https://tec.openplanner.team/stops/Brebras1", "https://tec.openplanner.team/stops/Brebvic2"], ["https://tec.openplanner.team/stops/H1hg179a", "https://tec.openplanner.team/stops/H1hg181b"], ["https://tec.openplanner.team/stops/LlNhube2", "https://tec.openplanner.team/stops/LlNschu2"], ["https://tec.openplanner.team/stops/Llgmont2", "https://tec.openplanner.team/stops/Llgrain2"], ["https://tec.openplanner.team/stops/H4ba102b", "https://tec.openplanner.team/stops/H4ml206b"], ["https://tec.openplanner.team/stops/Bclgvmo2", "https://tec.openplanner.team/stops/Bcrbast2"], ["https://tec.openplanner.team/stops/Canmonu3", "https://tec.openplanner.team/stops/Canrsta2"], ["https://tec.openplanner.team/stops/Lsmrcim1", "https://tec.openplanner.team/stops/Lsmrcim2"], ["https://tec.openplanner.team/stops/H3so177a", "https://tec.openplanner.team/stops/H3so178a"], ["https://tec.openplanner.team/stops/H4ru238a", "https://tec.openplanner.team/stops/H4ty311a"], ["https://tec.openplanner.team/stops/H4os221a", "https://tec.openplanner.team/stops/H5wo132a"], ["https://tec.openplanner.team/stops/LAweg--2", "https://tec.openplanner.team/stops/LHrrard1"], ["https://tec.openplanner.team/stops/NL80aaa", "https://tec.openplanner.team/stops/NL80aab"], ["https://tec.openplanner.team/stops/N149aba", "https://tec.openplanner.team/stops/N149aca"], ["https://tec.openplanner.team/stops/H2be100a", "https://tec.openplanner.team/stops/H2mg152a"], ["https://tec.openplanner.team/stops/LPAbour2", "https://tec.openplanner.team/stops/LPAmosa2"], ["https://tec.openplanner.team/stops/Llgbert2", "https://tec.openplanner.team/stops/Llgbida1"], ["https://tec.openplanner.team/stops/Cfamonu8", "https://tec.openplanner.team/stops/Cpl4bra3"], ["https://tec.openplanner.team/stops/Cctfaub1", "https://tec.openplanner.team/stops/Cctrjus2"], ["https://tec.openplanner.team/stops/LHUfont1", "https://tec.openplanner.team/stops/NL80abb"], ["https://tec.openplanner.team/stops/Cbcegli1", "https://tec.openplanner.team/stops/Cbcha652"], ["https://tec.openplanner.team/stops/H4hx115b", "https://tec.openplanner.team/stops/H4wa150a"], ["https://tec.openplanner.team/stops/LoUhein2", "https://tec.openplanner.team/stops/LoUwelc2"], ["https://tec.openplanner.team/stops/LDapota1", "https://tec.openplanner.team/stops/LOMeg--2"], ["https://tec.openplanner.team/stops/X793aeb", "https://tec.openplanner.team/stops/X793aqa"], ["https://tec.openplanner.team/stops/X608aha", "https://tec.openplanner.team/stops/X621aea"], ["https://tec.openplanner.team/stops/Cmtdepo1", "https://tec.openplanner.team/stops/Cmtneuv2"], ["https://tec.openplanner.team/stops/X342afb", "https://tec.openplanner.team/stops/X363acb"], ["https://tec.openplanner.team/stops/N351aja", "https://tec.openplanner.team/stops/N351amb"], ["https://tec.openplanner.team/stops/Lropass1", "https://tec.openplanner.team/stops/Lrosoxh2"], ["https://tec.openplanner.team/stops/LGrfont2", "https://tec.openplanner.team/stops/LLGec--*"], ["https://tec.openplanner.team/stops/H2pe161a", "https://tec.openplanner.team/stops/H2tr251a"], ["https://tec.openplanner.team/stops/X750ayb", "https://tec.openplanner.team/stops/X750azb"], ["https://tec.openplanner.team/stops/N557aaa", "https://tec.openplanner.team/stops/N557aac"], ["https://tec.openplanner.team/stops/Bdlmflo2", "https://tec.openplanner.team/stops/Bwavbva2"], ["https://tec.openplanner.team/stops/LBRgend1", "https://tec.openplanner.team/stops/LBRtrag1"], ["https://tec.openplanner.team/stops/Blsmcha3", "https://tec.openplanner.team/stops/Blsmcha4"], ["https://tec.openplanner.team/stops/LaAzwei1", "https://tec.openplanner.team/stops/LhGscha*"], ["https://tec.openplanner.team/stops/LTRfend2", "https://tec.openplanner.team/stops/LTRmosb2"], ["https://tec.openplanner.team/stops/X725aka", "https://tec.openplanner.team/stops/X725ara"], ["https://tec.openplanner.team/stops/X317aab", "https://tec.openplanner.team/stops/X317aba"], ["https://tec.openplanner.team/stops/LBIbois1", "https://tec.openplanner.team/stops/LBIpont1"], ["https://tec.openplanner.team/stops/LHUetie*", "https://tec.openplanner.team/stops/LHUfont2"], ["https://tec.openplanner.team/stops/LHHgare2", "https://tec.openplanner.team/stops/LHHindu1"], ["https://tec.openplanner.team/stops/Ljeegli6", "https://tec.openplanner.team/stops/Ljelamb2"], ["https://tec.openplanner.team/stops/LLUtrol1", "https://tec.openplanner.team/stops/LLUtrol2"], ["https://tec.openplanner.team/stops/H4fo117a", "https://tec.openplanner.team/stops/H4fo117d"], ["https://tec.openplanner.team/stops/H4au143a", "https://tec.openplanner.team/stops/H4mb203a"], ["https://tec.openplanner.team/stops/LAUbour2", "https://tec.openplanner.team/stops/LAUcose2"], ["https://tec.openplanner.team/stops/LClange2", "https://tec.openplanner.team/stops/LCljose2"], ["https://tec.openplanner.team/stops/Ctrecol2", "https://tec.openplanner.team/stops/Ctrleju1"], ["https://tec.openplanner.team/stops/Broscha2", "https://tec.openplanner.team/stops/Cgpmoul2"], ["https://tec.openplanner.team/stops/X670adb", "https://tec.openplanner.team/stops/X670aka"], ["https://tec.openplanner.team/stops/LVnourt4", "https://tec.openplanner.team/stops/LVnrock1"], ["https://tec.openplanner.team/stops/N201aqb", "https://tec.openplanner.team/stops/N201arb"], ["https://tec.openplanner.team/stops/N127baa", "https://tec.openplanner.team/stops/N134afb"], ["https://tec.openplanner.team/stops/X359aga", "https://tec.openplanner.team/stops/X359amb"], ["https://tec.openplanner.team/stops/LJAcent1", "https://tec.openplanner.team/stops/LJAcime2"], ["https://tec.openplanner.team/stops/N305aaa", "https://tec.openplanner.team/stops/N305aab"], ["https://tec.openplanner.team/stops/Cclchap2", "https://tec.openplanner.team/stops/Cclrgiv1"], ["https://tec.openplanner.team/stops/H5qu140a", "https://tec.openplanner.team/stops/H5qu146a"], ["https://tec.openplanner.team/stops/H1hv131a", "https://tec.openplanner.team/stops/H1hv135a"], ["https://tec.openplanner.team/stops/N513axb", "https://tec.openplanner.team/stops/N520aha"], ["https://tec.openplanner.team/stops/N548ama", "https://tec.openplanner.team/stops/N548amb"], ["https://tec.openplanner.team/stops/N313ada", "https://tec.openplanner.team/stops/N313adb"], ["https://tec.openplanner.team/stops/LXocomb1", "https://tec.openplanner.team/stops/LXopier1"], ["https://tec.openplanner.team/stops/X818ara", "https://tec.openplanner.team/stops/X818awb"], ["https://tec.openplanner.team/stops/H1el140b", "https://tec.openplanner.team/stops/H1el140c"], ["https://tec.openplanner.team/stops/LVtchai2", "https://tec.openplanner.team/stops/LVtespo1"], ["https://tec.openplanner.team/stops/N127aeb", "https://tec.openplanner.team/stops/N139aca"], ["https://tec.openplanner.team/stops/Bernpon2", "https://tec.openplanner.team/stops/Bgemrom3"], ["https://tec.openplanner.team/stops/N501esz", "https://tec.openplanner.team/stops/X501esb"], ["https://tec.openplanner.team/stops/Bovehst2", "https://tec.openplanner.team/stops/Bovevnd1"], ["https://tec.openplanner.team/stops/Lveoctr3", "https://tec.openplanner.team/stops/Lverdep1"], ["https://tec.openplanner.team/stops/N501jda", "https://tec.openplanner.team/stops/N501jdb"], ["https://tec.openplanner.team/stops/Lfhcoop1", "https://tec.openplanner.team/stops/Lfhcoop2"], ["https://tec.openplanner.team/stops/LCEboll2", "https://tec.openplanner.team/stops/LCEinst2"], ["https://tec.openplanner.team/stops/LFRsp1-1", "https://tec.openplanner.team/stops/LSZpiro1"], ["https://tec.openplanner.team/stops/X757adb", "https://tec.openplanner.team/stops/X757aeb"], ["https://tec.openplanner.team/stops/N543acb", "https://tec.openplanner.team/stops/N543bdb"], ["https://tec.openplanner.team/stops/N232aya", "https://tec.openplanner.team/stops/N232ayb"], ["https://tec.openplanner.team/stops/N501bha", "https://tec.openplanner.team/stops/N501bib"], ["https://tec.openplanner.team/stops/Brsga151", "https://tec.openplanner.team/stops/Brsga811"], ["https://tec.openplanner.team/stops/LFebas-1", "https://tec.openplanner.team/stops/LFebas-2"], ["https://tec.openplanner.team/stops/Llgdart5", "https://tec.openplanner.team/stops/LlgguilB"], ["https://tec.openplanner.team/stops/X801bfa", "https://tec.openplanner.team/stops/X801bia"], ["https://tec.openplanner.team/stops/Bgntcbo1", "https://tec.openplanner.team/stops/Bgntcbo2"], ["https://tec.openplanner.team/stops/X608asa", "https://tec.openplanner.team/stops/X621aeb"], ["https://tec.openplanner.team/stops/LNEgaul1", "https://tec.openplanner.team/stops/LNEgaul4"], ["https://tec.openplanner.team/stops/Bwategp1", "https://tec.openplanner.team/stops/Bwatlbs2"], ["https://tec.openplanner.team/stops/Lcelhon2", "https://tec.openplanner.team/stops/Lcelhon3"], ["https://tec.openplanner.team/stops/H1hr120b", "https://tec.openplanner.team/stops/H1hr121b"], ["https://tec.openplanner.team/stops/LSsmond2", "https://tec.openplanner.team/stops/N506bsa"], ["https://tec.openplanner.team/stops/Cmqegl1", "https://tec.openplanner.team/stops/Cmqegl2"], ["https://tec.openplanner.team/stops/LDOastr1", "https://tec.openplanner.team/stops/LDOprev2"], ["https://tec.openplanner.team/stops/X986ajb", "https://tec.openplanner.team/stops/X986ala"], ["https://tec.openplanner.team/stops/Bperalv1", "https://tec.openplanner.team/stops/Bpergar3"], ["https://tec.openplanner.team/stops/LORruis1", "https://tec.openplanner.team/stops/LORvill1"], ["https://tec.openplanner.team/stops/LATguis2", "https://tec.openplanner.team/stops/LVLchem2"], ["https://tec.openplanner.team/stops/LOV62--1", "https://tec.openplanner.team/stops/LROrtba1"], ["https://tec.openplanner.team/stops/H4eg108a", "https://tec.openplanner.team/stops/H4sl154b"], ["https://tec.openplanner.team/stops/Bnilhau2", "https://tec.openplanner.team/stops/Bnilreg2"], ["https://tec.openplanner.team/stops/LSNfays1", "https://tec.openplanner.team/stops/LSNness2"], ["https://tec.openplanner.team/stops/Llgboux1", "https://tec.openplanner.team/stops/Lvtboux2"], ["https://tec.openplanner.team/stops/LOMcabi1", "https://tec.openplanner.team/stops/LOMeg--1"], ["https://tec.openplanner.team/stops/LaMwies1", "https://tec.openplanner.team/stops/LaMwies2"], ["https://tec.openplanner.team/stops/LHUsauv3", "https://tec.openplanner.team/stops/LHUsauv4"], ["https://tec.openplanner.team/stops/Bwlhcsr2", "https://tec.openplanner.team/stops/Bwlhswc1"], ["https://tec.openplanner.team/stops/N543ala", "https://tec.openplanner.team/stops/N543cla"], ["https://tec.openplanner.team/stops/N501cfc", "https://tec.openplanner.team/stops/N501cky"], ["https://tec.openplanner.team/stops/Bptrpla1", "https://tec.openplanner.team/stops/Bptrvil1"], ["https://tec.openplanner.team/stops/LVNleco2", "https://tec.openplanner.team/stops/LVNwanz1"], ["https://tec.openplanner.team/stops/Bglicsm2", "https://tec.openplanner.team/stops/Bglitro2"], ["https://tec.openplanner.team/stops/Lantonn2", "https://tec.openplanner.team/stops/Lrctec-1"], ["https://tec.openplanner.team/stops/Lghmavi1", "https://tec.openplanner.team/stops/Lmopota1"], ["https://tec.openplanner.team/stops/H4ag100a", "https://tec.openplanner.team/stops/H4ag106a"], ["https://tec.openplanner.team/stops/Csbsart1", "https://tec.openplanner.team/stops/H1sa112a"], ["https://tec.openplanner.team/stops/LSOdow%C3%A92", "https://tec.openplanner.team/stops/LSOgard2"], ["https://tec.openplanner.team/stops/Bcseaba1", "https://tec.openplanner.team/stops/Bcsegar1"], ["https://tec.openplanner.team/stops/X992aaa", "https://tec.openplanner.team/stops/X993aea"], ["https://tec.openplanner.team/stops/N526aaa", "https://tec.openplanner.team/stops/N526aba"], ["https://tec.openplanner.team/stops/N230aeb", "https://tec.openplanner.team/stops/N230afa"], ["https://tec.openplanner.team/stops/Cchccom2", "https://tec.openplanner.team/stops/Cmtneuv1"], ["https://tec.openplanner.team/stops/NL76aia", "https://tec.openplanner.team/stops/NL77acb"], ["https://tec.openplanner.team/stops/X604aab", "https://tec.openplanner.team/stops/X604abb"], ["https://tec.openplanner.team/stops/LFEmala1", "https://tec.openplanner.team/stops/X597apb"], ["https://tec.openplanner.team/stops/LWRcruc1", "https://tec.openplanner.team/stops/LWRcruc2"], ["https://tec.openplanner.team/stops/Ctilobb1", "https://tec.openplanner.team/stops/H1mc128a"], ["https://tec.openplanner.team/stops/H4tm140a", "https://tec.openplanner.team/stops/H4to131b"], ["https://tec.openplanner.team/stops/Bplnegl1", "https://tec.openplanner.team/stops/Cgncail2"], ["https://tec.openplanner.team/stops/H5rx120b", "https://tec.openplanner.team/stops/H5rx127a"], ["https://tec.openplanner.team/stops/LBWeg--4", "https://tec.openplanner.team/stops/LFCdree1"], ["https://tec.openplanner.team/stops/N236aia", "https://tec.openplanner.team/stops/N236aja"], ["https://tec.openplanner.team/stops/Cradado1", "https://tec.openplanner.team/stops/Crajasm4"], ["https://tec.openplanner.team/stops/N357ada", "https://tec.openplanner.team/stops/N357afb"], ["https://tec.openplanner.team/stops/Lhepaqu2", "https://tec.openplanner.team/stops/Lhrmeta2"], ["https://tec.openplanner.team/stops/X809aaa", "https://tec.openplanner.team/stops/X809aba"], ["https://tec.openplanner.team/stops/Bolgmpl1", "https://tec.openplanner.team/stops/Bpelf962"], ["https://tec.openplanner.team/stops/H1ch100a", "https://tec.openplanner.team/stops/H1ch104a"], ["https://tec.openplanner.team/stops/X734aha", "https://tec.openplanner.team/stops/X734aia"], ["https://tec.openplanner.team/stops/Bndbgar1", "https://tec.openplanner.team/stops/Btlgmou1"], ["https://tec.openplanner.team/stops/LFebas-2", "https://tec.openplanner.team/stops/LFemoul2"], ["https://tec.openplanner.team/stops/Cgoathe1", "https://tec.openplanner.team/stops/Cgofabr1"], ["https://tec.openplanner.team/stops/Lsephar2", "https://tec.openplanner.team/stops/Lsetrav1"], ["https://tec.openplanner.team/stops/Cci4bra3", "https://tec.openplanner.team/stops/Cmlaili2"], ["https://tec.openplanner.team/stops/LAYecol1", "https://tec.openplanner.team/stops/LAYpl--2"], ["https://tec.openplanner.team/stops/Bllngal1", "https://tec.openplanner.team/stops/Bllnmet2"], ["https://tec.openplanner.team/stops/N302aaa", "https://tec.openplanner.team/stops/N302aab"], ["https://tec.openplanner.team/stops/Ccoacar2", "https://tec.openplanner.team/stops/Ccohotv2"], ["https://tec.openplanner.team/stops/Llglave2", "https://tec.openplanner.team/stops/Llgmako1"], ["https://tec.openplanner.team/stops/X623ajb", "https://tec.openplanner.team/stops/X624ahb"], ["https://tec.openplanner.team/stops/Lvcdumo1", "https://tec.openplanner.team/stops/Lvcsapi2"], ["https://tec.openplanner.team/stops/Lstbold1", "https://tec.openplanner.team/stops/Lstbold2"], ["https://tec.openplanner.team/stops/LDppana1", "https://tec.openplanner.team/stops/LTErest2"], ["https://tec.openplanner.team/stops/Blimrof1", "https://tec.openplanner.team/stops/Brixcro1"], ["https://tec.openplanner.team/stops/H1ci103a", "https://tec.openplanner.team/stops/H1fr151b"], ["https://tec.openplanner.team/stops/X818asb", "https://tec.openplanner.team/stops/X818asd"], ["https://tec.openplanner.team/stops/X660acb", "https://tec.openplanner.team/stops/X660aib"], ["https://tec.openplanner.team/stops/H2ll176a", "https://tec.openplanner.team/stops/H2ll186a"], ["https://tec.openplanner.team/stops/LMfbuck1", "https://tec.openplanner.team/stops/LMffoot1"], ["https://tec.openplanner.team/stops/N117aqb", "https://tec.openplanner.team/stops/N117bcc"], ["https://tec.openplanner.team/stops/H4by115d", "https://tec.openplanner.team/stops/H4wp148a"], ["https://tec.openplanner.team/stops/Lrc594-1", "https://tec.openplanner.team/stops/Lrclohe1"], ["https://tec.openplanner.team/stops/H4ty308c", "https://tec.openplanner.team/stops/H4ty317b"], ["https://tec.openplanner.team/stops/Lhrlico2", "https://tec.openplanner.team/stops/Lhrtilm1"], ["https://tec.openplanner.team/stops/Brixwav2", "https://tec.openplanner.team/stops/Brixwav3"], ["https://tec.openplanner.team/stops/H4lh120b", "https://tec.openplanner.team/stops/H5wo127b"], ["https://tec.openplanner.team/stops/X672aba", "https://tec.openplanner.team/stops/X672adb"], ["https://tec.openplanner.team/stops/Bbiehpo2", "https://tec.openplanner.team/stops/Blontry2"], ["https://tec.openplanner.team/stops/X750avb", "https://tec.openplanner.team/stops/X750bfb"], ["https://tec.openplanner.team/stops/N522aja", "https://tec.openplanner.team/stops/N522aka"], ["https://tec.openplanner.team/stops/LHrreal1", "https://tec.openplanner.team/stops/LHrwaya1"], ["https://tec.openplanner.team/stops/Lthfren2", "https://tec.openplanner.team/stops/LWaccom1"], ["https://tec.openplanner.team/stops/N539aqb", "https://tec.openplanner.team/stops/N539ara"], ["https://tec.openplanner.team/stops/LGMhadr1", "https://tec.openplanner.team/stops/LGMhadr2"], ["https://tec.openplanner.team/stops/X746aea", "https://tec.openplanner.team/stops/X746agc"], ["https://tec.openplanner.team/stops/Bnivpal1", "https://tec.openplanner.team/stops/Bthivil3"], ["https://tec.openplanner.team/stops/H2sb239b", "https://tec.openplanner.team/stops/H2sb243d"], ["https://tec.openplanner.team/stops/Bwatbca1", "https://tec.openplanner.team/stops/Bwatcbo1"], ["https://tec.openplanner.team/stops/X952acb", "https://tec.openplanner.team/stops/X952aea"], ["https://tec.openplanner.team/stops/Brsggar2", "https://tec.openplanner.team/stops/Brsgtou1"], ["https://tec.openplanner.team/stops/N540acc", "https://tec.openplanner.team/stops/N540acd"], ["https://tec.openplanner.team/stops/Cjuecho1", "https://tec.openplanner.team/stops/Cjutrou1"], ["https://tec.openplanner.team/stops/Bnivphm2", "https://tec.openplanner.team/stops/Bnivvri1"], ["https://tec.openplanner.team/stops/Cmacart2", "https://tec.openplanner.team/stops/Cmadeli1"], ["https://tec.openplanner.team/stops/N150aka", "https://tec.openplanner.team/stops/N165acb"], ["https://tec.openplanner.team/stops/X789aaa", "https://tec.openplanner.team/stops/X789abb"], ["https://tec.openplanner.team/stops/Crojume1", "https://tec.openplanner.team/stops/Cropcan2"], ["https://tec.openplanner.team/stops/Clddelh2", "https://tec.openplanner.team/stops/Cldvign1"], ["https://tec.openplanner.team/stops/H4mo166a", "https://tec.openplanner.team/stops/H4mo177a"], ["https://tec.openplanner.team/stops/LDLbaye2", "https://tec.openplanner.team/stops/LDLboul1"], ["https://tec.openplanner.team/stops/Bhaldbo1", "https://tec.openplanner.team/stops/Blemwro2"], ["https://tec.openplanner.team/stops/Bgnpchb1", "https://tec.openplanner.team/stops/Bgnpjbe1"], ["https://tec.openplanner.team/stops/Cchdagn1", "https://tec.openplanner.team/stops/Cchdigu2"], ["https://tec.openplanner.team/stops/Crocona1", "https://tec.openplanner.team/stops/Cromart1"], ["https://tec.openplanner.team/stops/N509atb", "https://tec.openplanner.team/stops/N509aua"], ["https://tec.openplanner.team/stops/LBEnina1", "https://tec.openplanner.team/stops/LBEnina4"], ["https://tec.openplanner.team/stops/LPOleli2", "https://tec.openplanner.team/stops/LSdcent2"], ["https://tec.openplanner.team/stops/H4ft137b", "https://tec.openplanner.team/stops/H4wu377b"], ["https://tec.openplanner.team/stops/Ccuwain1", "https://tec.openplanner.team/stops/CMsolei1"], ["https://tec.openplanner.team/stops/N501jjb", "https://tec.openplanner.team/stops/N521adb"], ["https://tec.openplanner.team/stops/LHUgdpl2", "https://tec.openplanner.team/stops/LHUremy1"], ["https://tec.openplanner.team/stops/H1ms273a", "https://tec.openplanner.team/stops/H1ms314b"], ["https://tec.openplanner.team/stops/H4ru236b", "https://tec.openplanner.team/stops/H4ru243b"], ["https://tec.openplanner.team/stops/LEHhaut2", "https://tec.openplanner.team/stops/LEHmarc1"], ["https://tec.openplanner.team/stops/N236amb", "https://tec.openplanner.team/stops/N236aob"], ["https://tec.openplanner.team/stops/Lgrrein2", "https://tec.openplanner.team/stops/Lgrstou1"], ["https://tec.openplanner.team/stops/X619aka", "https://tec.openplanner.team/stops/X622aba"], ["https://tec.openplanner.team/stops/X879apa", "https://tec.openplanner.team/stops/X879asb"], ["https://tec.openplanner.team/stops/LXofont1", "https://tec.openplanner.team/stops/X599afc"], ["https://tec.openplanner.team/stops/Bbeaegl2", "https://tec.openplanner.team/stops/Bbearwa1"], ["https://tec.openplanner.team/stops/Bclgpla2", "https://tec.openplanner.team/stops/Bdvmcsa1"], ["https://tec.openplanner.team/stops/Lvcfogu4", "https://tec.openplanner.team/stops/Lvcpost1"], ["https://tec.openplanner.team/stops/Bjanfer2", "https://tec.openplanner.team/stops/NL75adb"], ["https://tec.openplanner.team/stops/Lflhott1", "https://tec.openplanner.team/stops/Lflmaxi4"], ["https://tec.openplanner.team/stops/N241afa", "https://tec.openplanner.team/stops/N241aga"], ["https://tec.openplanner.team/stops/X663aqa", "https://tec.openplanner.team/stops/X663aqb"], ["https://tec.openplanner.team/stops/LTPsatr2", "https://tec.openplanner.team/stops/LTPspay2"], ["https://tec.openplanner.team/stops/H4ir166b", "https://tec.openplanner.team/stops/H5at135a"], ["https://tec.openplanner.team/stops/H2ll180b", "https://tec.openplanner.team/stops/H2ll188a"], ["https://tec.openplanner.team/stops/LmYkirc2", "https://tec.openplanner.team/stops/LmYkreu2"], ["https://tec.openplanner.team/stops/Bbea3he2", "https://tec.openplanner.team/stops/Bmlncha2"], ["https://tec.openplanner.team/stops/N528ata", "https://tec.openplanner.team/stops/N542apa"], ["https://tec.openplanner.team/stops/H4ln127a", "https://tec.openplanner.team/stops/H4ne148a"], ["https://tec.openplanner.team/stops/N248ada", "https://tec.openplanner.team/stops/N248adb"], ["https://tec.openplanner.team/stops/H2hg271b", "https://tec.openplanner.team/stops/H2hg272b"], ["https://tec.openplanner.team/stops/Bottbru2", "https://tec.openplanner.team/stops/Bottppa2"], ["https://tec.openplanner.team/stops/X877aba", "https://tec.openplanner.team/stops/X877aga"], ["https://tec.openplanner.team/stops/X802ata", "https://tec.openplanner.team/stops/X802ayb"], ["https://tec.openplanner.team/stops/N501fsa", "https://tec.openplanner.team/stops/N501mra"], ["https://tec.openplanner.team/stops/N309aab", "https://tec.openplanner.team/stops/N309aac"], ["https://tec.openplanner.team/stops/H4hg158a", "https://tec.openplanner.team/stops/H4hg158b"], ["https://tec.openplanner.team/stops/LWRheyd1", "https://tec.openplanner.team/stops/LWRheyd2"], ["https://tec.openplanner.team/stops/N501grg", "https://tec.openplanner.team/stops/N501zea"], ["https://tec.openplanner.team/stops/LVAakke2", "https://tec.openplanner.team/stops/LVAwolf2"], ["https://tec.openplanner.team/stops/H1ht132b", "https://tec.openplanner.team/stops/H1si163a"], ["https://tec.openplanner.team/stops/X750aoa", "https://tec.openplanner.team/stops/X750blb"], ["https://tec.openplanner.team/stops/Cfaheni1", "https://tec.openplanner.team/stops/Cfaheni4"], ["https://tec.openplanner.team/stops/LmCkirc1", "https://tec.openplanner.team/stops/LmDelek2"], ["https://tec.openplanner.team/stops/X829aaa", "https://tec.openplanner.team/stops/X831aea"], ["https://tec.openplanner.team/stops/Cgregli1", "https://tec.openplanner.team/stops/Cgregli2"], ["https://tec.openplanner.team/stops/H4my122b", "https://tec.openplanner.team/stops/H4vz368a"], ["https://tec.openplanner.team/stops/LHbcent1", "https://tec.openplanner.team/stops/LJAchat2"], ["https://tec.openplanner.team/stops/LVParal2", "https://tec.openplanner.team/stops/LVPgrot2"], ["https://tec.openplanner.team/stops/LmD163-2", "https://tec.openplanner.team/stops/LmD27--1"], ["https://tec.openplanner.team/stops/H5ar100a", "https://tec.openplanner.team/stops/H5ar102a"], ["https://tec.openplanner.team/stops/N125aca", "https://tec.openplanner.team/stops/N125acb"], ["https://tec.openplanner.team/stops/LSHries2", "https://tec.openplanner.team/stops/LSOtheu2"], ["https://tec.openplanner.team/stops/Blilhay1", "https://tec.openplanner.team/stops/Blilwit1"], ["https://tec.openplanner.team/stops/H1te186a", "https://tec.openplanner.team/stops/H1te186b"], ["https://tec.openplanner.team/stops/Llgcour2", "https://tec.openplanner.team/stops/Llgcour3"], ["https://tec.openplanner.team/stops/LtHkreu3", "https://tec.openplanner.team/stops/LtHkreu4"], ["https://tec.openplanner.team/stops/LmD163-2", "https://tec.openplanner.team/stops/LmYamel2"], ["https://tec.openplanner.team/stops/Bjaugar4", "https://tec.openplanner.team/stops/Bjauvch2"], ["https://tec.openplanner.team/stops/H4av103b", "https://tec.openplanner.team/stops/H4av103c"], ["https://tec.openplanner.team/stops/N501era", "https://tec.openplanner.team/stops/N501erb"], ["https://tec.openplanner.team/stops/H1lb154a", "https://tec.openplanner.team/stops/H1qu108a"], ["https://tec.openplanner.team/stops/H1gn150a", "https://tec.openplanner.team/stops/H1gn150b"], ["https://tec.openplanner.team/stops/X626aaa", "https://tec.openplanner.team/stops/X626aab"], ["https://tec.openplanner.team/stops/Llgglai2", "https://tec.openplanner.team/stops/Llgoeil1"], ["https://tec.openplanner.team/stops/Blhugar1", "https://tec.openplanner.team/stops/Blhuone1"], ["https://tec.openplanner.team/stops/LAUcarr1", "https://tec.openplanner.team/stops/LAUpind1"], ["https://tec.openplanner.team/stops/N232asb", "https://tec.openplanner.team/stops/N232bsb"], ["https://tec.openplanner.team/stops/LrEdic71", "https://tec.openplanner.team/stops/LrEkape2"], ["https://tec.openplanner.team/stops/X756aaa", "https://tec.openplanner.team/stops/X756abb"], ["https://tec.openplanner.team/stops/Lhemilm1", "https://tec.openplanner.team/stops/Lhrmeta2"], ["https://tec.openplanner.team/stops/Cfrfaub1", "https://tec.openplanner.team/stops/Cfrfaub4"], ["https://tec.openplanner.team/stops/H5pe129a", "https://tec.openplanner.team/stops/H5pe146a"], ["https://tec.openplanner.team/stops/X615apa", "https://tec.openplanner.team/stops/X615brb"], ["https://tec.openplanner.team/stops/X982aea", "https://tec.openplanner.team/stops/X982bza"], ["https://tec.openplanner.team/stops/X394aeb", "https://tec.openplanner.team/stops/X396aeb"], ["https://tec.openplanner.team/stops/LMEense2", "https://tec.openplanner.team/stops/LMIterr2"], ["https://tec.openplanner.team/stops/Cml3fon1", "https://tec.openplanner.team/stops/Cmlhubi1"], ["https://tec.openplanner.team/stops/Cgopier2", "https://tec.openplanner.team/stops/Cgopier3"], ["https://tec.openplanner.team/stops/Bmarcat1", "https://tec.openplanner.team/stops/Btilsnc2"], ["https://tec.openplanner.team/stops/X876aca", "https://tec.openplanner.team/stops/X876afa"], ["https://tec.openplanner.team/stops/X766aga", "https://tec.openplanner.team/stops/X766ahb"], ["https://tec.openplanner.team/stops/H4me211b", "https://tec.openplanner.team/stops/H4me213a"], ["https://tec.openplanner.team/stops/H4hg155b", "https://tec.openplanner.team/stops/H4mv187a"], ["https://tec.openplanner.team/stops/X696aaa", "https://tec.openplanner.team/stops/X696aka"], ["https://tec.openplanner.team/stops/LBgcroi4", "https://tec.openplanner.team/stops/LBgcroi5"], ["https://tec.openplanner.team/stops/Llmbell1", "https://tec.openplanner.team/stops/Lvegazo1"], ["https://tec.openplanner.team/stops/X670anb", "https://tec.openplanner.team/stops/X670asa"], ["https://tec.openplanner.team/stops/LTHcent1", "https://tec.openplanner.team/stops/LTHmaka2"], ["https://tec.openplanner.team/stops/LEMeg--1", "https://tec.openplanner.team/stops/LEMeg--2"], ["https://tec.openplanner.team/stops/LHhmohe2", "https://tec.openplanner.team/stops/NL30ajb"], ["https://tec.openplanner.team/stops/LkTdorf1", "https://tec.openplanner.team/stops/LkTdorf2"], ["https://tec.openplanner.team/stops/X746aha", "https://tec.openplanner.team/stops/X746ahb"], ["https://tec.openplanner.team/stops/LFFeg--2", "https://tec.openplanner.team/stops/LFFmonu2"], ["https://tec.openplanner.team/stops/X804bua", "https://tec.openplanner.team/stops/X818aba"], ["https://tec.openplanner.team/stops/X759adb", "https://tec.openplanner.team/stops/X759agb"], ["https://tec.openplanner.team/stops/LFsherm1", "https://tec.openplanner.team/stops/LSLhale1"], ["https://tec.openplanner.team/stops/Lfhsoux1", "https://tec.openplanner.team/stops/Lfhsoux2"], ["https://tec.openplanner.team/stops/X822akb", "https://tec.openplanner.team/stops/X822alb"], ["https://tec.openplanner.team/stops/Cbzfrom1", "https://tec.openplanner.team/stops/Cluberl1"], ["https://tec.openplanner.team/stops/Lsmgdry2", "https://tec.openplanner.team/stops/Lvegest2"], ["https://tec.openplanner.team/stops/Cjumall1", "https://tec.openplanner.team/stops/Cjumall2"], ["https://tec.openplanner.team/stops/Lpecime2", "https://tec.openplanner.team/stops/Lpepano1"], ["https://tec.openplanner.team/stops/LhOzent2", "https://tec.openplanner.team/stops/LhUkape2"], ["https://tec.openplanner.team/stops/Cfmltas2", "https://tec.openplanner.team/stops/H2tz115b"], ["https://tec.openplanner.team/stops/LLbrecu2", "https://tec.openplanner.team/stops/LRcjard2"], ["https://tec.openplanner.team/stops/H4er125b", "https://tec.openplanner.team/stops/H4gu109a"], ["https://tec.openplanner.team/stops/LKmdrie1", "https://tec.openplanner.team/stops/LKmdrie2"], ["https://tec.openplanner.team/stops/N501cmb", "https://tec.openplanner.team/stops/N501cmc"], ["https://tec.openplanner.team/stops/LCPone91", "https://tec.openplanner.team/stops/LOncar-*"], ["https://tec.openplanner.team/stops/LSTgran2", "https://tec.openplanner.team/stops/LSTparf1"], ["https://tec.openplanner.team/stops/LLg9---1", "https://tec.openplanner.team/stops/LLg9---2"], ["https://tec.openplanner.team/stops/LeYteeh1", "https://tec.openplanner.team/stops/LrAbe602"], ["https://tec.openplanner.team/stops/LVLm10-1", "https://tec.openplanner.team/stops/LVLmart1"], ["https://tec.openplanner.team/stops/Bmlncle1", "https://tec.openplanner.team/stops/Bmlnpab2"], ["https://tec.openplanner.team/stops/LPRmc--1", "https://tec.openplanner.team/stops/LPRpeti1"], ["https://tec.openplanner.team/stops/X639aja", "https://tec.openplanner.team/stops/X640ata"], ["https://tec.openplanner.team/stops/Llgbonn2", "https://tec.openplanner.team/stops/Llgfoy-1"], ["https://tec.openplanner.team/stops/H4ga159a", "https://tec.openplanner.team/stops/H4vz370a"], ["https://tec.openplanner.team/stops/Ljubonf1", "https://tec.openplanner.team/stops/Ljufore1"], ["https://tec.openplanner.team/stops/H1wa157a", "https://tec.openplanner.team/stops/H1wa157b"], ["https://tec.openplanner.team/stops/H1no141a", "https://tec.openplanner.team/stops/H1no143b"], ["https://tec.openplanner.team/stops/N501cca", "https://tec.openplanner.team/stops/N502acb"], ["https://tec.openplanner.team/stops/N286aaa", "https://tec.openplanner.team/stops/N286aab"], ["https://tec.openplanner.team/stops/Lbococh1", "https://tec.openplanner.team/stops/Lbococh2"], ["https://tec.openplanner.team/stops/N301agb", "https://tec.openplanner.team/stops/N340aib"], ["https://tec.openplanner.team/stops/H1bs110c", "https://tec.openplanner.team/stops/H1qp142b"], ["https://tec.openplanner.team/stops/H4ka175a", "https://tec.openplanner.team/stops/H4ka175b"], ["https://tec.openplanner.team/stops/X949adb", "https://tec.openplanner.team/stops/X949ala"], ["https://tec.openplanner.team/stops/Lprcite2", "https://tec.openplanner.team/stops/Lprhodi1"], ["https://tec.openplanner.team/stops/X880aha", "https://tec.openplanner.team/stops/X880ahb"], ["https://tec.openplanner.team/stops/H4wr177a", "https://tec.openplanner.team/stops/H4wr177b"], ["https://tec.openplanner.team/stops/X939aaa", "https://tec.openplanner.team/stops/X939aab"], ["https://tec.openplanner.team/stops/Cgywaut1", "https://tec.openplanner.team/stops/CMmarab1"], ["https://tec.openplanner.team/stops/LOunebl2", "https://tec.openplanner.team/stops/LWZponb1"], ["https://tec.openplanner.team/stops/Btannda1", "https://tec.openplanner.team/stops/Btannda2"], ["https://tec.openplanner.team/stops/LMeeg--1", "https://tec.openplanner.team/stops/LMemaza2"], ["https://tec.openplanner.team/stops/Llgarmu1", "https://tec.openplanner.team/stops/Llgmare5"], ["https://tec.openplanner.team/stops/X636bfb", "https://tec.openplanner.team/stops/X636bga"], ["https://tec.openplanner.team/stops/Blhusor1", "https://tec.openplanner.team/stops/Bovesog2"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X744aba"], ["https://tec.openplanner.team/stops/H4ga155a", "https://tec.openplanner.team/stops/H4ha170a"], ["https://tec.openplanner.team/stops/LGegrun2", "https://tec.openplanner.team/stops/LVAwolf2"], ["https://tec.openplanner.team/stops/X595aba", "https://tec.openplanner.team/stops/X595aia"], ["https://tec.openplanner.team/stops/Llgegwa1", "https://tec.openplanner.team/stops/Llglimb1"], ["https://tec.openplanner.team/stops/H4mv187b", "https://tec.openplanner.team/stops/H4oe150a"], ["https://tec.openplanner.team/stops/Bchgcha2", "https://tec.openplanner.team/stops/Btsllbv2"], ["https://tec.openplanner.team/stops/Bquebre2", "https://tec.openplanner.team/stops/Bsteegl1"], ["https://tec.openplanner.team/stops/H2le176a", "https://tec.openplanner.team/stops/H2re175a"], ["https://tec.openplanner.team/stops/LLSba4-1", "https://tec.openplanner.team/stops/LLSba4-2"], ["https://tec.openplanner.team/stops/X908anb", "https://tec.openplanner.team/stops/X955aca"], ["https://tec.openplanner.team/stops/LNIbas-2", "https://tec.openplanner.team/stops/LSZheid2"], ["https://tec.openplanner.team/stops/Bottegl2", "https://tec.openplanner.team/stops/Bottpma1"], ["https://tec.openplanner.team/stops/LVleg--6", "https://tec.openplanner.team/stops/LVlroua2"], ["https://tec.openplanner.team/stops/N507ajb", "https://tec.openplanner.team/stops/N507aoa"], ["https://tec.openplanner.team/stops/Brebeau1", "https://tec.openplanner.team/stops/Bsteegl1"], ["https://tec.openplanner.team/stops/Bmartil1", "https://tec.openplanner.team/stops/Bmartil2"], ["https://tec.openplanner.team/stops/H4bo110b", "https://tec.openplanner.team/stops/H5qu140a"], ["https://tec.openplanner.team/stops/N118aga", "https://tec.openplanner.team/stops/N118agb"], ["https://tec.openplanner.team/stops/X739aia", "https://tec.openplanner.team/stops/X739aja"], ["https://tec.openplanner.team/stops/N539aga", "https://tec.openplanner.team/stops/N539agb"], ["https://tec.openplanner.team/stops/X902axa", "https://tec.openplanner.team/stops/X902aya"], ["https://tec.openplanner.team/stops/LWaruth1", "https://tec.openplanner.team/stops/LwYsarl1"], ["https://tec.openplanner.team/stops/LPcforg2", "https://tec.openplanner.team/stops/LTGsucr2"], ["https://tec.openplanner.team/stops/H4am113a", "https://tec.openplanner.team/stops/H4an108b"], ["https://tec.openplanner.team/stops/N551aia", "https://tec.openplanner.team/stops/N551akb"], ["https://tec.openplanner.team/stops/Caimeno3", "https://tec.openplanner.team/stops/N543chb"], ["https://tec.openplanner.team/stops/Lhuecol2", "https://tec.openplanner.team/stops/Lmnhorl1"], ["https://tec.openplanner.team/stops/Bolgcsa2", "https://tec.openplanner.team/stops/Bolggar2"], ["https://tec.openplanner.team/stops/Bhmmcha2", "https://tec.openplanner.team/stops/Bhmmpos2"], ["https://tec.openplanner.team/stops/NH01aab", "https://tec.openplanner.team/stops/NH01ajb"], ["https://tec.openplanner.team/stops/LGMdrev1", "https://tec.openplanner.team/stops/LGMhadr2"], ["https://tec.openplanner.team/stops/N558aeb", "https://tec.openplanner.team/stops/N558ama"], ["https://tec.openplanner.team/stops/Bwagpco1", "https://tec.openplanner.team/stops/Cwgmell4"], ["https://tec.openplanner.team/stops/X890aea", "https://tec.openplanner.team/stops/X890afa"], ["https://tec.openplanner.team/stops/LSTchat2", "https://tec.openplanner.team/stops/LWneg--1"], ["https://tec.openplanner.team/stops/N501goa", "https://tec.openplanner.team/stops/N501hya"], ["https://tec.openplanner.team/stops/H1ag107a", "https://tec.openplanner.team/stops/H1qv114b"], ["https://tec.openplanner.team/stops/H4og208b", "https://tec.openplanner.team/stops/H4og213a"], ["https://tec.openplanner.team/stops/Ccpetan2", "https://tec.openplanner.team/stops/Ccpsecp2"], ["https://tec.openplanner.team/stops/NH01aod", "https://tec.openplanner.team/stops/NH01aub"], ["https://tec.openplanner.team/stops/H1ne138b", "https://tec.openplanner.team/stops/H1ne146a"], ["https://tec.openplanner.team/stops/X994aia", "https://tec.openplanner.team/stops/X994ala"], ["https://tec.openplanner.team/stops/Llgjasm1", "https://tec.openplanner.team/stops/Llgjasm2"], ["https://tec.openplanner.team/stops/X224afb", "https://tec.openplanner.team/stops/X394abb"], ["https://tec.openplanner.team/stops/LHGleje1", "https://tec.openplanner.team/stops/LHGleje2"], ["https://tec.openplanner.team/stops/Lgdec--1", "https://tec.openplanner.team/stops/Lgdhura1"], ["https://tec.openplanner.team/stops/N551aja", "https://tec.openplanner.team/stops/N551akb"], ["https://tec.openplanner.team/stops/H1hq128a", "https://tec.openplanner.team/stops/H1hq129a"], ["https://tec.openplanner.team/stops/N569aic", "https://tec.openplanner.team/stops/N569aja"], ["https://tec.openplanner.team/stops/X986asa", "https://tec.openplanner.team/stops/X986ata"], ["https://tec.openplanner.team/stops/Bixlfla1", "https://tec.openplanner.team/stops/Bixlfla2"], ["https://tec.openplanner.team/stops/N562aea", "https://tec.openplanner.team/stops/N562afb"], ["https://tec.openplanner.team/stops/N577afa", "https://tec.openplanner.team/stops/N577ahb"], ["https://tec.openplanner.team/stops/Lmncasi1", "https://tec.openplanner.team/stops/Lmnfawe2"], ["https://tec.openplanner.team/stops/Cjuathe1", "https://tec.openplanner.team/stops/Cjubrul4"], ["https://tec.openplanner.team/stops/N501gab", "https://tec.openplanner.team/stops/N501iga"], ["https://tec.openplanner.team/stops/N501mey", "https://tec.openplanner.team/stops/N501mez"], ["https://tec.openplanner.team/stops/H2sb225b", "https://tec.openplanner.team/stops/H2sb259a"], ["https://tec.openplanner.team/stops/H4ft132b", "https://tec.openplanner.team/stops/H4ft136a"], ["https://tec.openplanner.team/stops/Llgnico7", "https://tec.openplanner.team/stops/LlgnicT1"], ["https://tec.openplanner.team/stops/Bwavbmo2", "https://tec.openplanner.team/stops/Bwavnam2"], ["https://tec.openplanner.team/stops/LWAaxhe1", "https://tec.openplanner.team/stops/LWAlong1"], ["https://tec.openplanner.team/stops/X740acb", "https://tec.openplanner.team/stops/X740agb"], ["https://tec.openplanner.team/stops/N244aia", "https://tec.openplanner.team/stops/N245aab"], ["https://tec.openplanner.team/stops/Ccogrbu1", "https://tec.openplanner.team/stops/Ccosart2"], ["https://tec.openplanner.team/stops/X602aoa", "https://tec.openplanner.team/stops/X602aob"], ["https://tec.openplanner.team/stops/H1em106a", "https://tec.openplanner.team/stops/H1em106b"], ["https://tec.openplanner.team/stops/N302ada", "https://tec.openplanner.team/stops/N302adb"], ["https://tec.openplanner.team/stops/Clodupr1", "https://tec.openplanner.team/stops/Clogfay1"], ["https://tec.openplanner.team/stops/Lhuchev1", "https://tec.openplanner.team/stops/Lhulibe1"], ["https://tec.openplanner.team/stops/X953aeb", "https://tec.openplanner.team/stops/X954aga"], ["https://tec.openplanner.team/stops/Bbstasa2", "https://tec.openplanner.team/stops/Bbstpan2"], ["https://tec.openplanner.team/stops/LLrcomb2", "https://tec.openplanner.team/stops/LLrfrai1"], ["https://tec.openplanner.team/stops/H1og131a", "https://tec.openplanner.team/stops/H1og135a"], ["https://tec.openplanner.team/stops/H1cu117c", "https://tec.openplanner.team/stops/H1cu122b"], ["https://tec.openplanner.team/stops/LJAdeho1", "https://tec.openplanner.team/stops/LJAgoff1"], ["https://tec.openplanner.team/stops/LHStrez1", "https://tec.openplanner.team/stops/LHStrez2"], ["https://tec.openplanner.team/stops/LmR90--2", "https://tec.openplanner.team/stops/LmRkape2"], ["https://tec.openplanner.team/stops/LeYauto2", "https://tec.openplanner.team/stops/LhSwind1"], ["https://tec.openplanner.team/stops/H1ms270a", "https://tec.openplanner.team/stops/H1ms282b"], ["https://tec.openplanner.team/stops/H4os220a", "https://tec.openplanner.team/stops/H4os221b"], ["https://tec.openplanner.team/stops/Bhvlbet2", "https://tec.openplanner.team/stops/Bmsgbay1"], ["https://tec.openplanner.team/stops/LoUhein1", "https://tec.openplanner.team/stops/LoUhein2"], ["https://tec.openplanner.team/stops/Lflprev1", "https://tec.openplanner.team/stops/Lflprev2"], ["https://tec.openplanner.team/stops/X952aaa", "https://tec.openplanner.team/stops/X952ama"], ["https://tec.openplanner.team/stops/H1gh165a", "https://tec.openplanner.team/stops/H1gh165b"], ["https://tec.openplanner.team/stops/Lflprev2", "https://tec.openplanner.team/stops/Lrovand1"], ["https://tec.openplanner.team/stops/X718ada", "https://tec.openplanner.team/stops/X733afb"], ["https://tec.openplanner.team/stops/N214aia", "https://tec.openplanner.team/stops/N225aaa"], ["https://tec.openplanner.team/stops/Bwatabs2", "https://tec.openplanner.team/stops/Bwatbca2"], ["https://tec.openplanner.team/stops/X902aja", "https://tec.openplanner.team/stops/X902ama"], ["https://tec.openplanner.team/stops/N203adb", "https://tec.openplanner.team/stops/N203aea"], ["https://tec.openplanner.team/stops/N506atb", "https://tec.openplanner.team/stops/N506baa"], ["https://tec.openplanner.team/stops/N501edb", "https://tec.openplanner.team/stops/N501epb"], ["https://tec.openplanner.team/stops/LOTferm1", "https://tec.openplanner.team/stops/LOTmonu1"], ["https://tec.openplanner.team/stops/X804asa", "https://tec.openplanner.team/stops/X804avb"], ["https://tec.openplanner.team/stops/Bwatran1", "https://tec.openplanner.team/stops/Bwatran2"], ["https://tec.openplanner.team/stops/Lmlchev1", "https://tec.openplanner.team/stops/Lmlchev2"], ["https://tec.openplanner.team/stops/H1he105b", "https://tec.openplanner.team/stops/H1mh113b"], ["https://tec.openplanner.team/stops/H1ba109b", "https://tec.openplanner.team/stops/H1ba120a"], ["https://tec.openplanner.team/stops/X758ahb", "https://tec.openplanner.team/stops/X759aga"], ["https://tec.openplanner.team/stops/H5at111b", "https://tec.openplanner.team/stops/H5at235a"], ["https://tec.openplanner.team/stops/X661ahb", "https://tec.openplanner.team/stops/X661aib"], ["https://tec.openplanner.team/stops/Cfccol1", "https://tec.openplanner.team/stops/Cfcstan1"], ["https://tec.openplanner.team/stops/X897ava", "https://tec.openplanner.team/stops/X897awa"], ["https://tec.openplanner.team/stops/LBEbelf2", "https://tec.openplanner.team/stops/LBEoblu2"], ["https://tec.openplanner.team/stops/X837aeb", "https://tec.openplanner.team/stops/X837aec"], ["https://tec.openplanner.team/stops/Bthsset2", "https://tec.openplanner.team/stops/NL37aia"], ["https://tec.openplanner.team/stops/LDAcite2", "https://tec.openplanner.team/stops/LFemoul2"], ["https://tec.openplanner.team/stops/H4do103a", "https://tec.openplanner.team/stops/H4do104a"], ["https://tec.openplanner.team/stops/LhOukat1", "https://tec.openplanner.team/stops/LhOzent2"], ["https://tec.openplanner.team/stops/Lmogerm1", "https://tec.openplanner.team/stops/Lmovand4"], ["https://tec.openplanner.team/stops/H1hb197a", "https://tec.openplanner.team/stops/H1ht128b"], ["https://tec.openplanner.team/stops/Brsrcha1", "https://tec.openplanner.team/stops/Brsrpar2"], ["https://tec.openplanner.team/stops/Chhbiet2", "https://tec.openplanner.team/stops/Chhprai1"], ["https://tec.openplanner.team/stops/LFochap2", "https://tec.openplanner.team/stops/LJAhanq2"], ["https://tec.openplanner.team/stops/H4lp122a", "https://tec.openplanner.team/stops/H4lp125a"], ["https://tec.openplanner.team/stops/Brsggar1", "https://tec.openplanner.team/stops/Brsgtou1"], ["https://tec.openplanner.team/stops/N535afa", "https://tec.openplanner.team/stops/N535aub"], ["https://tec.openplanner.team/stops/Llgdelc1", "https://tec.openplanner.team/stops/Llgdelc2"], ["https://tec.openplanner.team/stops/Bhalwat1", "https://tec.openplanner.team/stops/Bhalwat2"], ["https://tec.openplanner.team/stops/Lvepala2", "https://tec.openplanner.team/stops/Lverain1"], ["https://tec.openplanner.team/stops/LvA12--4", "https://tec.openplanner.team/stops/LvAschw2"], ["https://tec.openplanner.team/stops/Cfrcham2", "https://tec.openplanner.team/stops/Cmeptmi2"], ["https://tec.openplanner.team/stops/Cmqbasv2", "https://tec.openplanner.team/stops/Cmqn5911"], ["https://tec.openplanner.team/stops/N501bpa", "https://tec.openplanner.team/stops/N501jma"], ["https://tec.openplanner.team/stops/N350aea", "https://tec.openplanner.team/stops/N350aeb"], ["https://tec.openplanner.team/stops/X904aia", "https://tec.openplanner.team/stops/X904ajb"], ["https://tec.openplanner.team/stops/X660aab", "https://tec.openplanner.team/stops/X661apa"], ["https://tec.openplanner.team/stops/LTychev1", "https://tec.openplanner.team/stops/LTyhapp4"], ["https://tec.openplanner.team/stops/LDmdomm1", "https://tec.openplanner.team/stops/LDmhave2"], ["https://tec.openplanner.team/stops/N212aka", "https://tec.openplanner.team/stops/N226ada"], ["https://tec.openplanner.team/stops/NC02bbb", "https://tec.openplanner.team/stops/NC14ahb"], ["https://tec.openplanner.team/stops/LBIbois2", "https://tec.openplanner.team/stops/LBIhann2"], ["https://tec.openplanner.team/stops/Bblapra1", "https://tec.openplanner.team/stops/Bblapra2"], ["https://tec.openplanner.team/stops/Louoran2", "https://tec.openplanner.team/stops/Lsepaqu2"], ["https://tec.openplanner.team/stops/LOtthie1", "https://tec.openplanner.team/stops/LVHbrai2"], ["https://tec.openplanner.team/stops/Cmoprov1", "https://tec.openplanner.team/stops/Cmoprov2"], ["https://tec.openplanner.team/stops/H4ga149b", "https://tec.openplanner.team/stops/H4ga165b"], ["https://tec.openplanner.team/stops/X877aia", "https://tec.openplanner.team/stops/X880acb"], ["https://tec.openplanner.team/stops/Cchparc2", "https://tec.openplanner.team/stops/Cchvhau2"], ["https://tec.openplanner.team/stops/H1br131a", "https://tec.openplanner.team/stops/H1br134b"], ["https://tec.openplanner.team/stops/Bspkbeu1", "https://tec.openplanner.team/stops/H1by109b"], ["https://tec.openplanner.team/stops/Llgcmes1", "https://tec.openplanner.team/stops/Lsccime2"], ["https://tec.openplanner.team/stops/N217aea", "https://tec.openplanner.team/stops/N287abb"], ["https://tec.openplanner.team/stops/Bnil3fo2", "https://tec.openplanner.team/stops/Bnilcab2"], ["https://tec.openplanner.team/stops/N501fta", "https://tec.openplanner.team/stops/N501fuz"], ["https://tec.openplanner.team/stops/X897alc", "https://tec.openplanner.team/stops/X897arb"], ["https://tec.openplanner.team/stops/LBCtros2", "https://tec.openplanner.team/stops/LCdchod2"], ["https://tec.openplanner.team/stops/LOcgdro3", "https://tec.openplanner.team/stops/NL35aga"], ["https://tec.openplanner.team/stops/Bsomtce1", "https://tec.openplanner.team/stops/N584aja"], ["https://tec.openplanner.team/stops/Loureno2", "https://tec.openplanner.team/stops/Lsttech1"], ["https://tec.openplanner.team/stops/N538aya", "https://tec.openplanner.team/stops/N538ayb"], ["https://tec.openplanner.team/stops/N512arb", "https://tec.openplanner.team/stops/N512asb"], ["https://tec.openplanner.team/stops/N501gda", "https://tec.openplanner.team/stops/N501mta"], ["https://tec.openplanner.team/stops/H1wa156b", "https://tec.openplanner.team/stops/H1wa160b"], ["https://tec.openplanner.team/stops/X643aaa", "https://tec.openplanner.team/stops/X643aab"], ["https://tec.openplanner.team/stops/LCsange1", "https://tec.openplanner.team/stops/LCsange2"], ["https://tec.openplanner.team/stops/LFemoul2", "https://tec.openplanner.team/stops/LFethie1"], ["https://tec.openplanner.team/stops/Bblacea1", "https://tec.openplanner.team/stops/Bblaece2"], ["https://tec.openplanner.team/stops/H1ms267a", "https://tec.openplanner.team/stops/H1ms281b"], ["https://tec.openplanner.team/stops/X939aba", "https://tec.openplanner.team/stops/X939aeb"], ["https://tec.openplanner.team/stops/X801abb", "https://tec.openplanner.team/stops/X898afb"], ["https://tec.openplanner.team/stops/N537acb", "https://tec.openplanner.team/stops/N562bib"], ["https://tec.openplanner.team/stops/X717aga", "https://tec.openplanner.team/stops/X717age"], ["https://tec.openplanner.team/stops/X922aea", "https://tec.openplanner.team/stops/X922afb"], ["https://tec.openplanner.team/stops/Bbchdra2", "https://tec.openplanner.team/stops/Bbchmin2"], ["https://tec.openplanner.team/stops/N118anb", "https://tec.openplanner.team/stops/N118atb"], ["https://tec.openplanner.team/stops/N368acb", "https://tec.openplanner.team/stops/N368ada"], ["https://tec.openplanner.team/stops/Cna4che1", "https://tec.openplanner.team/stops/Cna4che2"], ["https://tec.openplanner.team/stops/H4pe128a", "https://tec.openplanner.team/stops/H4pe128b"], ["https://tec.openplanner.team/stops/LSPxhou1", "https://tec.openplanner.team/stops/LSPxhou2"], ["https://tec.openplanner.team/stops/X770abb", "https://tec.openplanner.team/stops/X770aca"], ["https://tec.openplanner.team/stops/Bove4ko2", "https://tec.openplanner.team/stops/Brsrbbo2"], ["https://tec.openplanner.team/stops/X982boa", "https://tec.openplanner.team/stops/X982brb"], ["https://tec.openplanner.team/stops/NL77afb", "https://tec.openplanner.team/stops/NL77agb"], ["https://tec.openplanner.team/stops/LChvill*", "https://tec.openplanner.team/stops/LSW26--1"], ["https://tec.openplanner.team/stops/N137aea", "https://tec.openplanner.team/stops/N137aeb"], ["https://tec.openplanner.team/stops/X636awb", "https://tec.openplanner.team/stops/X636bba"], ["https://tec.openplanner.team/stops/Clomakr1", "https://tec.openplanner.team/stops/Clostan1"], ["https://tec.openplanner.team/stops/X713acb", "https://tec.openplanner.team/stops/X796ahb"], ["https://tec.openplanner.team/stops/CMcart1", "https://tec.openplanner.team/stops/CMcart2"], ["https://tec.openplanner.team/stops/Cgzfarc1", "https://tec.openplanner.team/stops/Cgzm1482"], ["https://tec.openplanner.team/stops/N548afb", "https://tec.openplanner.team/stops/N548agc"], ["https://tec.openplanner.team/stops/X903aca", "https://tec.openplanner.team/stops/X903adb"], ["https://tec.openplanner.team/stops/LNCneuv1", "https://tec.openplanner.team/stops/LNCneuv2"], ["https://tec.openplanner.team/stops/X999aba", "https://tec.openplanner.team/stops/X999abb"], ["https://tec.openplanner.team/stops/Bmarvil1", "https://tec.openplanner.team/stops/Csawagn1"], ["https://tec.openplanner.team/stops/Lalverr2", "https://tec.openplanner.team/stops/Lladete4"], ["https://tec.openplanner.team/stops/LHZ8mai1", "https://tec.openplanner.team/stops/LHZ8mai2"], ["https://tec.openplanner.team/stops/LTecent1", "https://tec.openplanner.team/stops/LTestat1"], ["https://tec.openplanner.team/stops/X796aaa", "https://tec.openplanner.team/stops/X796abb"], ["https://tec.openplanner.team/stops/Cliburl1", "https://tec.openplanner.team/stops/Cliegli2"], ["https://tec.openplanner.team/stops/Ljegare2", "https://tec.openplanner.team/stops/Ljeorda1"], ["https://tec.openplanner.team/stops/Lseaven1", "https://tec.openplanner.team/stops/Lsemara1"], ["https://tec.openplanner.team/stops/Llgbavi1", "https://tec.openplanner.team/stops/Llgbavi4"], ["https://tec.openplanner.team/stops/X654ahb", "https://tec.openplanner.team/stops/X670aaa"], ["https://tec.openplanner.team/stops/LDObell1", "https://tec.openplanner.team/stops/LDOprev2"], ["https://tec.openplanner.team/stops/X724afb", "https://tec.openplanner.team/stops/X724agb"], ["https://tec.openplanner.team/stops/LCTgare4", "https://tec.openplanner.team/stops/LCTmonu2"], ["https://tec.openplanner.team/stops/H4ty291a", "https://tec.openplanner.team/stops/H4ty352a"], ["https://tec.openplanner.team/stops/H1hv130a", "https://tec.openplanner.team/stops/H1hv133b"], ["https://tec.openplanner.team/stops/H4mo134a", "https://tec.openplanner.team/stops/H4mo165b"], ["https://tec.openplanner.team/stops/Canchbr1", "https://tec.openplanner.team/stops/Canchbr2"], ["https://tec.openplanner.team/stops/X354ada", "https://tec.openplanner.team/stops/X354aea"], ["https://tec.openplanner.team/stops/H5pe135b", "https://tec.openplanner.team/stops/H5pe146b"], ["https://tec.openplanner.team/stops/H1el137b", "https://tec.openplanner.team/stops/H1wi153a"], ["https://tec.openplanner.team/stops/LAYambl2", "https://tec.openplanner.team/stops/LAYnias1"], ["https://tec.openplanner.team/stops/X771ahb", "https://tec.openplanner.team/stops/X771ana"], ["https://tec.openplanner.team/stops/N166aab", "https://tec.openplanner.team/stops/N167aeb"], ["https://tec.openplanner.team/stops/H4os217a", "https://tec.openplanner.team/stops/H4os222b"], ["https://tec.openplanner.team/stops/H5bl122a", "https://tec.openplanner.team/stops/H5bl122b"], ["https://tec.openplanner.team/stops/Lmibove2", "https://tec.openplanner.team/stops/Lmieg--1"], ["https://tec.openplanner.team/stops/X818akb", "https://tec.openplanner.team/stops/X818ama"], ["https://tec.openplanner.team/stops/N540aca", "https://tec.openplanner.team/stops/N540afa"], ["https://tec.openplanner.team/stops/H1em111a", "https://tec.openplanner.team/stops/H1hl128a"], ["https://tec.openplanner.team/stops/N425aba", "https://tec.openplanner.team/stops/N425aca"], ["https://tec.openplanner.team/stops/Bclgeco1", "https://tec.openplanner.team/stops/Bnilhau1"], ["https://tec.openplanner.team/stops/H1fr109a", "https://tec.openplanner.team/stops/H1fr109b"], ["https://tec.openplanner.team/stops/N390aaa", "https://tec.openplanner.team/stops/X390aka"], ["https://tec.openplanner.team/stops/Ctynamu1", "https://tec.openplanner.team/stops/N137aea"], ["https://tec.openplanner.team/stops/N244aga", "https://tec.openplanner.team/stops/N244aha"], ["https://tec.openplanner.team/stops/H1nm138a", "https://tec.openplanner.team/stops/H1si164a"], ["https://tec.openplanner.team/stops/Bhvlpla1", "https://tec.openplanner.team/stops/Bhvltol2"], ["https://tec.openplanner.team/stops/Bbeaech2", "https://tec.openplanner.team/stops/Bbealon4"], ["https://tec.openplanner.team/stops/X346aka", "https://tec.openplanner.team/stops/X346alb"], ["https://tec.openplanner.team/stops/Lsephar1", "https://tec.openplanner.team/stops/Ltihala1"], ["https://tec.openplanner.team/stops/X804apb", "https://tec.openplanner.team/stops/X804bza"], ["https://tec.openplanner.team/stops/X759ada", "https://tec.openplanner.team/stops/X759afb"], ["https://tec.openplanner.team/stops/X620agb", "https://tec.openplanner.team/stops/X620ahb"], ["https://tec.openplanner.team/stops/X801apb", "https://tec.openplanner.team/stops/X801ckb"], ["https://tec.openplanner.team/stops/H4fr146b", "https://tec.openplanner.team/stops/H4ty348b"], ["https://tec.openplanner.team/stops/N343aaa", "https://tec.openplanner.team/stops/N365aca"], ["https://tec.openplanner.team/stops/H2pr116a", "https://tec.openplanner.team/stops/H2pr117a"], ["https://tec.openplanner.team/stops/X669acb", "https://tec.openplanner.team/stops/X669adb"], ["https://tec.openplanner.team/stops/N501hsa", "https://tec.openplanner.team/stops/N501hsy"], ["https://tec.openplanner.team/stops/LMOfleu2", "https://tec.openplanner.team/stops/LMOstat1"], ["https://tec.openplanner.team/stops/LCsfize1", "https://tec.openplanner.team/stops/LFFcouv2"], ["https://tec.openplanner.team/stops/LaAronh1", "https://tec.openplanner.team/stops/LaAseba1"], ["https://tec.openplanner.team/stops/X663abb", "https://tec.openplanner.team/stops/X663ada"], ["https://tec.openplanner.team/stops/X919aaa", "https://tec.openplanner.team/stops/X919aba"], ["https://tec.openplanner.team/stops/Bwavtas1", "https://tec.openplanner.team/stops/Bwavtas4"], ["https://tec.openplanner.team/stops/Cmobeau2", "https://tec.openplanner.team/stops/Cmovies2"], ["https://tec.openplanner.team/stops/Cobbuze2", "https://tec.openplanner.team/stops/Cobhaut2"], ["https://tec.openplanner.team/stops/H4ne138b", "https://tec.openplanner.team/stops/H4ne144b"], ["https://tec.openplanner.team/stops/X801ala", "https://tec.openplanner.team/stops/X801apa"], ["https://tec.openplanner.team/stops/X652ada", "https://tec.openplanner.team/stops/X652adb"], ["https://tec.openplanner.team/stops/H5qu149a", "https://tec.openplanner.team/stops/H5qu149b"], ["https://tec.openplanner.team/stops/X659ama", "https://tec.openplanner.team/stops/X659asa"], ["https://tec.openplanner.team/stops/Bwatmbv2", "https://tec.openplanner.team/stops/Bwatmlo2"], ["https://tec.openplanner.team/stops/LCvneuv5", "https://tec.openplanner.team/stops/LCvoufn2"], ["https://tec.openplanner.team/stops/X768aja", "https://tec.openplanner.team/stops/X768ajb"], ["https://tec.openplanner.team/stops/Cgyaudu1", "https://tec.openplanner.team/stops/Cgyaudu2"], ["https://tec.openplanner.team/stops/Brebblo2", "https://tec.openplanner.team/stops/Bstesar1"], ["https://tec.openplanner.team/stops/H1mk109b", "https://tec.openplanner.team/stops/H1mk117b"], ["https://tec.openplanner.team/stops/Bbstbxl2", "https://tec.openplanner.team/stops/Bwaypon2"], ["https://tec.openplanner.team/stops/LmRh%C3%B6fe1", "https://tec.openplanner.team/stops/LmRkape2"], ["https://tec.openplanner.team/stops/X618aib", "https://tec.openplanner.team/stops/X618akb"], ["https://tec.openplanner.team/stops/Bjodcsb1", "https://tec.openplanner.team/stops/Bjodmal2"], ["https://tec.openplanner.team/stops/H1bo112a", "https://tec.openplanner.team/stops/H1bo112b"], ["https://tec.openplanner.team/stops/Bborcro1", "https://tec.openplanner.team/stops/Bronpfe2"], ["https://tec.openplanner.team/stops/H5qu144a", "https://tec.openplanner.team/stops/H5qu144b"], ["https://tec.openplanner.team/stops/H3th130a", "https://tec.openplanner.team/stops/H3th133a"], ["https://tec.openplanner.team/stops/Cmlbras1", "https://tec.openplanner.team/stops/Cmlbras2"], ["https://tec.openplanner.team/stops/LLYchpl1", "https://tec.openplanner.team/stops/LLYchpl2"], ["https://tec.openplanner.team/stops/Bnivvai2", "https://tec.openplanner.team/stops/Bthivil1"], ["https://tec.openplanner.team/stops/Llgbell1", "https://tec.openplanner.team/stops/Llgstap2"], ["https://tec.openplanner.team/stops/Lourose5", "https://tec.openplanner.team/stops/Lousite4"], ["https://tec.openplanner.team/stops/Cmaduna2", "https://tec.openplanner.team/stops/Cmaleri2"], ["https://tec.openplanner.team/stops/N539ayb", "https://tec.openplanner.team/stops/N539aza"], ["https://tec.openplanner.team/stops/Cfrchfe1", "https://tec.openplanner.team/stops/Cfrchro1"], ["https://tec.openplanner.team/stops/X898ama", "https://tec.openplanner.team/stops/X898anb"], ["https://tec.openplanner.team/stops/X639acb", "https://tec.openplanner.team/stops/X639apa"], ["https://tec.openplanner.team/stops/X640aaa", "https://tec.openplanner.team/stops/X675aab"], ["https://tec.openplanner.team/stops/X886agb", "https://tec.openplanner.team/stops/X897afa"], ["https://tec.openplanner.team/stops/H4to133b", "https://tec.openplanner.team/stops/H5at130a"], ["https://tec.openplanner.team/stops/LAxchpl1", "https://tec.openplanner.team/stops/Lmitech1"], ["https://tec.openplanner.team/stops/Lfhgara1", "https://tec.openplanner.team/stops/Lfhrogn1"], ["https://tec.openplanner.team/stops/X724aia", "https://tec.openplanner.team/stops/X724aib"], ["https://tec.openplanner.team/stops/N337aea", "https://tec.openplanner.team/stops/N337aib"], ["https://tec.openplanner.team/stops/H4ff121a", "https://tec.openplanner.team/stops/H4ff121b"], ["https://tec.openplanner.team/stops/Ctarpoi1", "https://tec.openplanner.team/stops/N543bqa"], ["https://tec.openplanner.team/stops/H1bu140a", "https://tec.openplanner.team/stops/H1bu143b"], ["https://tec.openplanner.team/stops/N538axa", "https://tec.openplanner.team/stops/N538aya"], ["https://tec.openplanner.team/stops/H5pe125b", "https://tec.openplanner.team/stops/H5pe148a"], ["https://tec.openplanner.team/stops/X923aia", "https://tec.openplanner.team/stops/X923ajb"], ["https://tec.openplanner.team/stops/H2ca111a", "https://tec.openplanner.team/stops/H2ml114a"], ["https://tec.openplanner.team/stops/X659aba", "https://tec.openplanner.team/stops/X659avb"], ["https://tec.openplanner.team/stops/Lhucime1", "https://tec.openplanner.team/stops/Lhulibe1"], ["https://tec.openplanner.team/stops/LBgbaga4", "https://tec.openplanner.team/stops/LWahott1"], ["https://tec.openplanner.team/stops/Bgrmfon2", "https://tec.openplanner.team/stops/Bgrmpsn2"], ["https://tec.openplanner.team/stops/N509adb", "https://tec.openplanner.team/stops/N509aka"], ["https://tec.openplanner.team/stops/N503afa", "https://tec.openplanner.team/stops/N503afb"], ["https://tec.openplanner.team/stops/H4bf105b", "https://tec.openplanner.team/stops/H4bf109b"], ["https://tec.openplanner.team/stops/N501jha", "https://tec.openplanner.team/stops/N501jhb"], ["https://tec.openplanner.team/stops/Lousimo2", "https://tec.openplanner.team/stops/Louvand2"], ["https://tec.openplanner.team/stops/LWEhang1", "https://tec.openplanner.team/stops/LWEhosp3"], ["https://tec.openplanner.team/stops/H4do100a", "https://tec.openplanner.team/stops/H4do203a"], ["https://tec.openplanner.team/stops/X614aoa", "https://tec.openplanner.team/stops/X614aua"], ["https://tec.openplanner.team/stops/Cvp3til2", "https://tec.openplanner.team/stops/Cvpchat2"], ["https://tec.openplanner.team/stops/LSPec--2", "https://tec.openplanner.team/stops/LSPpomp1"], ["https://tec.openplanner.team/stops/H1vb143a", "https://tec.openplanner.team/stops/H1wz170a"], ["https://tec.openplanner.team/stops/Cgrlorm1", "https://tec.openplanner.team/stops/N160ahb"], ["https://tec.openplanner.team/stops/X601bnb", "https://tec.openplanner.team/stops/X601dda"], ["https://tec.openplanner.team/stops/H4ld127a", "https://tec.openplanner.team/stops/H4ld128a"], ["https://tec.openplanner.team/stops/LMsalen2", "https://tec.openplanner.team/stops/LPbpeti1"], ["https://tec.openplanner.team/stops/Bmarlor2", "https://tec.openplanner.team/stops/Bmarmco1"], ["https://tec.openplanner.team/stops/Ltithie1", "https://tec.openplanner.team/stops/Ltitill*"], ["https://tec.openplanner.team/stops/LROandr2", "https://tec.openplanner.team/stops/LROhaie2"], ["https://tec.openplanner.team/stops/LeUmalm1", "https://tec.openplanner.team/stops/LeUmalm2"], ["https://tec.openplanner.team/stops/N211aha", "https://tec.openplanner.team/stops/N211ahb"], ["https://tec.openplanner.team/stops/N135aeb", "https://tec.openplanner.team/stops/N135aoa"], ["https://tec.openplanner.team/stops/Llgcont1", "https://tec.openplanner.team/stops/Llgpara2"], ["https://tec.openplanner.team/stops/Cfmltas1", "https://tec.openplanner.team/stops/Cfmmart2"], ["https://tec.openplanner.team/stops/X713aia", "https://tec.openplanner.team/stops/X713ajd"], ["https://tec.openplanner.team/stops/H5qu144b", "https://tec.openplanner.team/stops/H5qu146a"], ["https://tec.openplanner.team/stops/X824aja", "https://tec.openplanner.team/stops/X831aca"], ["https://tec.openplanner.team/stops/X757aba", "https://tec.openplanner.team/stops/X757agb"], ["https://tec.openplanner.team/stops/N501lea", "https://tec.openplanner.team/stops/N501leb"], ["https://tec.openplanner.team/stops/H4ta128b", "https://tec.openplanner.team/stops/H4ta132b"], ["https://tec.openplanner.team/stops/X941aea", "https://tec.openplanner.team/stops/X941afb"], ["https://tec.openplanner.team/stops/Bvirbie4", "https://tec.openplanner.team/stops/Bvirpos2"], ["https://tec.openplanner.team/stops/N522aba", "https://tec.openplanner.team/stops/N522ala"], ["https://tec.openplanner.team/stops/LhDkreu1", "https://tec.openplanner.team/stops/LhPheps1"], ["https://tec.openplanner.team/stops/N301agb", "https://tec.openplanner.team/stops/N301ahb"], ["https://tec.openplanner.team/stops/Lemeg--1", "https://tec.openplanner.team/stops/Lemhenn1"], ["https://tec.openplanner.team/stops/LHAvall2", "https://tec.openplanner.team/stops/LHTlieg1"], ["https://tec.openplanner.team/stops/Crobass1", "https://tec.openplanner.team/stops/Crojume2"], ["https://tec.openplanner.team/stops/H4ty353a", "https://tec.openplanner.team/stops/H4ty360a"], ["https://tec.openplanner.team/stops/Bclgapi1", "https://tec.openplanner.team/stops/Bdlmflo1"], ["https://tec.openplanner.team/stops/Cgrchea2", "https://tec.openplanner.team/stops/Cgrsaul1"], ["https://tec.openplanner.team/stops/H1ch104a", "https://tec.openplanner.team/stops/H1ch104b"], ["https://tec.openplanner.team/stops/X979ahb", "https://tec.openplanner.team/stops/X979aia"], ["https://tec.openplanner.team/stops/X940aga", "https://tec.openplanner.team/stops/X940aha"], ["https://tec.openplanner.team/stops/X879aoa", "https://tec.openplanner.team/stops/X879apa"], ["https://tec.openplanner.team/stops/LBNforg2", "https://tec.openplanner.team/stops/LDObran1"], ["https://tec.openplanner.team/stops/X616ahb", "https://tec.openplanner.team/stops/X617aea"], ["https://tec.openplanner.team/stops/Bnivga11", "https://tec.openplanner.team/stops/Bnivrwi1"], ["https://tec.openplanner.team/stops/H1cd114a", "https://tec.openplanner.team/stops/H1ne146a"], ["https://tec.openplanner.team/stops/H4ru242a", "https://tec.openplanner.team/stops/H4wc374a"], ["https://tec.openplanner.team/stops/LHYlinc2", "https://tec.openplanner.team/stops/LHYlinc4"], ["https://tec.openplanner.team/stops/H2ep145b", "https://tec.openplanner.team/stops/H3bi113b"], ["https://tec.openplanner.team/stops/X623ada", "https://tec.openplanner.team/stops/X623aea"], ["https://tec.openplanner.team/stops/Llaeg--2", "https://tec.openplanner.team/stops/LXhcite1"], ["https://tec.openplanner.team/stops/LAIchpl2", "https://tec.openplanner.team/stops/LVBneuv2"], ["https://tec.openplanner.team/stops/X763acb", "https://tec.openplanner.team/stops/X763ada"], ["https://tec.openplanner.team/stops/Ccojaur3", "https://tec.openplanner.team/stops/Ccojaur4"], ["https://tec.openplanner.team/stops/X652aga", "https://tec.openplanner.team/stops/X652aha"], ["https://tec.openplanner.team/stops/LLTgole1", "https://tec.openplanner.team/stops/LLThosd1"], ["https://tec.openplanner.team/stops/Chpchea1", "https://tec.openplanner.team/stops/Cmesafi1"], ["https://tec.openplanner.team/stops/H4co110a", "https://tec.openplanner.team/stops/H4co142a"], ["https://tec.openplanner.team/stops/H4ga150a", "https://tec.openplanner.team/stops/H4ga163a"], ["https://tec.openplanner.team/stops/H1do115a", "https://tec.openplanner.team/stops/H1do115b"], ["https://tec.openplanner.team/stops/Landeja1", "https://tec.openplanner.team/stops/Landeja2"], ["https://tec.openplanner.team/stops/Bwancal1", "https://tec.openplanner.team/stops/Bwancal4"], ["https://tec.openplanner.team/stops/H4de114a", "https://tec.openplanner.team/stops/H5rx125b"], ["https://tec.openplanner.team/stops/Cfmtrie2", "https://tec.openplanner.team/stops/Cfomays1"], ["https://tec.openplanner.team/stops/H1ho124a", "https://tec.openplanner.team/stops/H1ho125c"], ["https://tec.openplanner.team/stops/Bwatnro1", "https://tec.openplanner.team/stops/Bwatnrs1"], ["https://tec.openplanner.team/stops/LTgbalm1", "https://tec.openplanner.team/stops/LTgbalm2"], ["https://tec.openplanner.team/stops/LLrfagn1", "https://tec.openplanner.team/stops/LLrfagn2"], ["https://tec.openplanner.team/stops/Llgblon2", "https://tec.openplanner.team/stops/Llgblon4"], ["https://tec.openplanner.team/stops/LBapeup2", "https://tec.openplanner.team/stops/LBavive2"], ["https://tec.openplanner.team/stops/Bjodcsb2", "https://tec.openplanner.team/stops/Bsrgcur1"], ["https://tec.openplanner.team/stops/Blemkap1", "https://tec.openplanner.team/stops/Blemkap2"], ["https://tec.openplanner.team/stops/Lemarti2", "https://tec.openplanner.team/stops/Lemboul1"], ["https://tec.openplanner.team/stops/NC14aua", "https://tec.openplanner.team/stops/NC14aub"], ["https://tec.openplanner.team/stops/H1ms360a", "https://tec.openplanner.team/stops/H1ms400d"], ["https://tec.openplanner.team/stops/Lmaelhe1", "https://tec.openplanner.team/stops/Lmaelhe2"], ["https://tec.openplanner.team/stops/Lmidarc1", "https://tec.openplanner.team/stops/Lvtlimi2"], ["https://tec.openplanner.team/stops/LHEgare1", "https://tec.openplanner.team/stops/LHEpriv2"], ["https://tec.openplanner.team/stops/N261agb", "https://tec.openplanner.team/stops/N261ahb"], ["https://tec.openplanner.team/stops/LVIeg--4", "https://tec.openplanner.team/stops/LVIjacq1"], ["https://tec.openplanner.team/stops/X653afb", "https://tec.openplanner.team/stops/X667aeb"], ["https://tec.openplanner.team/stops/H1bo109b", "https://tec.openplanner.team/stops/H1bo145a"], ["https://tec.openplanner.team/stops/Blascsl2", "https://tec.openplanner.team/stops/Blasren2"], ["https://tec.openplanner.team/stops/X808aja", "https://tec.openplanner.team/stops/X808alb"], ["https://tec.openplanner.team/stops/Cjugohi1", "https://tec.openplanner.team/stops/Cjuquai2"], ["https://tec.openplanner.team/stops/N241aca", "https://tec.openplanner.team/stops/N241afa"], ["https://tec.openplanner.team/stops/Cchfran2", "https://tec.openplanner.team/stops/Cchture1"], ["https://tec.openplanner.team/stops/X808aea", "https://tec.openplanner.team/stops/X811aaa"], ["https://tec.openplanner.team/stops/X608avb", "https://tec.openplanner.team/stops/X627aaa"], ["https://tec.openplanner.team/stops/X713aga", "https://tec.openplanner.team/stops/X713ahb"], ["https://tec.openplanner.team/stops/LAYsupe2", "https://tec.openplanner.team/stops/LFLetoi2"], ["https://tec.openplanner.team/stops/X739aca", "https://tec.openplanner.team/stops/X739ada"], ["https://tec.openplanner.team/stops/H4mt214b", "https://tec.openplanner.team/stops/H4mt220b"], ["https://tec.openplanner.team/stops/LhIfrie2", "https://tec.openplanner.team/stops/LhIkirc*"], ["https://tec.openplanner.team/stops/LHMbelv2", "https://tec.openplanner.team/stops/LHMec--1"], ["https://tec.openplanner.team/stops/Bnstmig1", "https://tec.openplanner.team/stops/H2na131a"], ["https://tec.openplanner.team/stops/LhPheps2", "https://tec.openplanner.team/stops/LhPprum2"], ["https://tec.openplanner.team/stops/X639aca", "https://tec.openplanner.team/stops/X639acd"], ["https://tec.openplanner.team/stops/X805aca", "https://tec.openplanner.team/stops/X805acb"], ["https://tec.openplanner.team/stops/Cmyecur1", "https://tec.openplanner.team/stops/Cmygrbr1"], ["https://tec.openplanner.team/stops/X614agb", "https://tec.openplanner.team/stops/X615aya"], ["https://tec.openplanner.team/stops/X641akb", "https://tec.openplanner.team/stops/X641arb"], ["https://tec.openplanner.team/stops/LVbcoul1", "https://tec.openplanner.team/stops/NL77anb"], ["https://tec.openplanner.team/stops/Lemarde1", "https://tec.openplanner.team/stops/Lemhenn1"], ["https://tec.openplanner.team/stops/LBkjenn2", "https://tec.openplanner.team/stops/LMNpt--2"], ["https://tec.openplanner.team/stops/LFemoul1", "https://tec.openplanner.team/stops/LTrmaro2"], ["https://tec.openplanner.team/stops/LPUmang2", "https://tec.openplanner.team/stops/LPUmer-2"], ["https://tec.openplanner.team/stops/H2le148a", "https://tec.openplanner.team/stops/H2le153b"], ["https://tec.openplanner.team/stops/H2ch101b", "https://tec.openplanner.team/stops/H2ch107a"], ["https://tec.openplanner.team/stops/X889aba", "https://tec.openplanner.team/stops/X889acb"], ["https://tec.openplanner.team/stops/H2mg138a", "https://tec.openplanner.team/stops/H2mg144b"], ["https://tec.openplanner.team/stops/Cgycvie1", "https://tec.openplanner.team/stops/Cgycvie2"], ["https://tec.openplanner.team/stops/N554abb", "https://tec.openplanner.team/stops/N554acc"], ["https://tec.openplanner.team/stops/Lveharm1", "https://tec.openplanner.team/stops/Lvethea1"], ["https://tec.openplanner.team/stops/X926adb", "https://tec.openplanner.team/stops/X927ada"], ["https://tec.openplanner.team/stops/Llgbaya1", "https://tec.openplanner.team/stops/Llgfoy-1"], ["https://tec.openplanner.team/stops/X892aea", "https://tec.openplanner.team/stops/X892aeb"], ["https://tec.openplanner.team/stops/LSNchen4", "https://tec.openplanner.team/stops/LSNfays2"], ["https://tec.openplanner.team/stops/N505alb", "https://tec.openplanner.team/stops/N579ada"], ["https://tec.openplanner.team/stops/LHvvill*", "https://tec.openplanner.team/stops/LrEochs1"], ["https://tec.openplanner.team/stops/X662aba", "https://tec.openplanner.team/stops/X662arb"], ["https://tec.openplanner.team/stops/X721asa", "https://tec.openplanner.team/stops/X786aab"], ["https://tec.openplanner.team/stops/Lghgros2", "https://tec.openplanner.team/stops/Lghmaha2"], ["https://tec.openplanner.team/stops/Cflchmo2", "https://tec.openplanner.team/stops/Cflsncb1"], ["https://tec.openplanner.team/stops/X982abb", "https://tec.openplanner.team/stops/X982bya"], ["https://tec.openplanner.team/stops/Bjodbat2", "https://tec.openplanner.team/stops/Bjodpce2"], ["https://tec.openplanner.team/stops/H1mv238b", "https://tec.openplanner.team/stops/H1mv240b"], ["https://tec.openplanner.team/stops/Btlgfto2", "https://tec.openplanner.team/stops/Btlgmee1"], ["https://tec.openplanner.team/stops/H4ef163a", "https://tec.openplanner.team/stops/H4hq134b"], ["https://tec.openplanner.team/stops/Bnivaig1", "https://tec.openplanner.team/stops/Bnivga71"], ["https://tec.openplanner.team/stops/Bblamsp1", "https://tec.openplanner.team/stops/Bblamsp3"], ["https://tec.openplanner.team/stops/N501hrb", "https://tec.openplanner.team/stops/N501iub"], ["https://tec.openplanner.team/stops/Lengran2", "https://tec.openplanner.team/stops/Lenplac5"], ["https://tec.openplanner.team/stops/LAYharz2", "https://tec.openplanner.team/stops/LAYnias2"], ["https://tec.openplanner.team/stops/Btlbcha2", "https://tec.openplanner.team/stops/Btlbtbe1"], ["https://tec.openplanner.team/stops/LFUchpl1", "https://tec.openplanner.team/stops/LFUfonc1"], ["https://tec.openplanner.team/stops/LCRabbe1", "https://tec.openplanner.team/stops/LRUhama2"], ["https://tec.openplanner.team/stops/LLmcarr1", "https://tec.openplanner.team/stops/LLmcarr2"], ["https://tec.openplanner.team/stops/Lbotige1", "https://tec.openplanner.team/stops/Lbotige2"], ["https://tec.openplanner.team/stops/LEntrix2", "https://tec.openplanner.team/stops/NL67aab"], ["https://tec.openplanner.team/stops/H1eo105b", "https://tec.openplanner.team/stops/H1eo107b"], ["https://tec.openplanner.team/stops/X979aab", "https://tec.openplanner.team/stops/X979aca"], ["https://tec.openplanner.team/stops/H4ce103a", "https://tec.openplanner.team/stops/H4ve135a"], ["https://tec.openplanner.team/stops/H1gi119c", "https://tec.openplanner.team/stops/H1ry137b"], ["https://tec.openplanner.team/stops/H1fa117a", "https://tec.openplanner.team/stops/H1fa120b"], ["https://tec.openplanner.team/stops/LFLcent1", "https://tec.openplanner.team/stops/LFLgara2"], ["https://tec.openplanner.team/stops/Cdamarc1", "https://tec.openplanner.team/stops/Cmarroy2"], ["https://tec.openplanner.team/stops/Becepro2", "https://tec.openplanner.team/stops/H3br101b"], ["https://tec.openplanner.team/stops/X801bea", "https://tec.openplanner.team/stops/X801cla"], ["https://tec.openplanner.team/stops/Bgrmpco1", "https://tec.openplanner.team/stops/N522asa"], ["https://tec.openplanner.team/stops/X770agb", "https://tec.openplanner.team/stops/X773ana"], ["https://tec.openplanner.team/stops/X742abb", "https://tec.openplanner.team/stops/X742aca"], ["https://tec.openplanner.team/stops/N331aab", "https://tec.openplanner.team/stops/N331adb"], ["https://tec.openplanner.team/stops/LOcchat1", "https://tec.openplanner.team/stops/LOchalo2"], ["https://tec.openplanner.team/stops/H4br108a", "https://tec.openplanner.team/stops/H4br108b"], ["https://tec.openplanner.team/stops/X753aca", "https://tec.openplanner.team/stops/X928aab"], ["https://tec.openplanner.team/stops/Ltihorl1", "https://tec.openplanner.team/stops/Ltihorl2"], ["https://tec.openplanner.team/stops/H4ry133b", "https://tec.openplanner.team/stops/H4ry140b"], ["https://tec.openplanner.team/stops/H1le118a", "https://tec.openplanner.team/stops/H1le118b"], ["https://tec.openplanner.team/stops/X739ala", "https://tec.openplanner.team/stops/X771abb"], ["https://tec.openplanner.team/stops/Ccyfroi2", "https://tec.openplanner.team/stops/Ccyga7"], ["https://tec.openplanner.team/stops/X614baa", "https://tec.openplanner.team/stops/X614bab"], ["https://tec.openplanner.team/stops/Cwgmutu1", "https://tec.openplanner.team/stops/Cwgmutu2"], ["https://tec.openplanner.team/stops/X991ada", "https://tec.openplanner.team/stops/X991adb"], ["https://tec.openplanner.team/stops/X749aaa", "https://tec.openplanner.team/stops/X749aab"], ["https://tec.openplanner.team/stops/Llgm%C3%A9di1", "https://tec.openplanner.team/stops/Llgm%C3%A9di2"], ["https://tec.openplanner.team/stops/N506aza", "https://tec.openplanner.team/stops/N506bjb"], ["https://tec.openplanner.team/stops/Bllncom2", "https://tec.openplanner.team/stops/Bllngle1"], ["https://tec.openplanner.team/stops/Lbocruc1", "https://tec.openplanner.team/stops/Lbooffe2"], ["https://tec.openplanner.team/stops/LSZstoc1", "https://tec.openplanner.team/stops/LWycabi1"], ["https://tec.openplanner.team/stops/N501ita", "https://tec.openplanner.team/stops/N501iua"], ["https://tec.openplanner.team/stops/Llgptlo2", "https://tec.openplanner.team/stops/Llgptlo3"], ["https://tec.openplanner.team/stops/N229ama", "https://tec.openplanner.team/stops/N229asa"], ["https://tec.openplanner.team/stops/H5rx101a", "https://tec.openplanner.team/stops/H5rx135a"], ["https://tec.openplanner.team/stops/LSTamer2", "https://tec.openplanner.team/stops/LSTdero2"], ["https://tec.openplanner.team/stops/N226ada", "https://tec.openplanner.team/stops/N387aba"], ["https://tec.openplanner.team/stops/LAvatri1", "https://tec.openplanner.team/stops/LAvatri2"], ["https://tec.openplanner.team/stops/N513ata", "https://tec.openplanner.team/stops/N513avb"], ["https://tec.openplanner.team/stops/Csschat2", "https://tec.openplanner.team/stops/Cssgare2"], ["https://tec.openplanner.team/stops/H1cu126b", "https://tec.openplanner.team/stops/H1cu132b"], ["https://tec.openplanner.team/stops/X817aaa", "https://tec.openplanner.team/stops/X820aha"], ["https://tec.openplanner.team/stops/H4es111b", "https://tec.openplanner.team/stops/H4ev120a"], ["https://tec.openplanner.team/stops/H1be103a", "https://tec.openplanner.team/stops/H1mc129a"], ["https://tec.openplanner.team/stops/LLrbecc1", "https://tec.openplanner.team/stops/LLrfont1"], ["https://tec.openplanner.team/stops/X812acb", "https://tec.openplanner.team/stops/X860aab"], ["https://tec.openplanner.team/stops/N543bma", "https://tec.openplanner.team/stops/N543bmb"], ["https://tec.openplanner.team/stops/LHAprei2", "https://tec.openplanner.team/stops/LVIvert1"], ["https://tec.openplanner.team/stops/X801bxb", "https://tec.openplanner.team/stops/X802aza"], ["https://tec.openplanner.team/stops/LTaeg--1", "https://tec.openplanner.team/stops/LTatult1"], ["https://tec.openplanner.team/stops/X793aab", "https://tec.openplanner.team/stops/X793ada"], ["https://tec.openplanner.team/stops/Ccufos71", "https://tec.openplanner.team/stops/Ccufos72"], ["https://tec.openplanner.team/stops/N501ejd", "https://tec.openplanner.team/stops/N501mvc"], ["https://tec.openplanner.team/stops/Llgddef1", "https://tec.openplanner.team/stops/Llgddef2"], ["https://tec.openplanner.team/stops/Clafaub1", "https://tec.openplanner.team/stops/NC23acb"], ["https://tec.openplanner.team/stops/N501dra", "https://tec.openplanner.team/stops/N501eea"], ["https://tec.openplanner.team/stops/N139aab", "https://tec.openplanner.team/stops/N139aba"], ["https://tec.openplanner.team/stops/Cgobl%C3%A9r1", "https://tec.openplanner.team/stops/Cwxchap1"], ["https://tec.openplanner.team/stops/Lhufont2", "https://tec.openplanner.team/stops/Lmndari2"], ["https://tec.openplanner.team/stops/X602aca", "https://tec.openplanner.team/stops/X602acb"], ["https://tec.openplanner.team/stops/N141aia", "https://tec.openplanner.team/stops/N141aja"], ["https://tec.openplanner.team/stops/Llgbass2", "https://tec.openplanner.team/stops/Llgomal2"], ["https://tec.openplanner.team/stops/H4bo110a", "https://tec.openplanner.team/stops/H5st162b"], ["https://tec.openplanner.team/stops/LNCcedr2", "https://tec.openplanner.team/stops/LNCspor1"], ["https://tec.openplanner.team/stops/N562alb", "https://tec.openplanner.team/stops/N562alc"], ["https://tec.openplanner.team/stops/N162aab", "https://tec.openplanner.team/stops/N162afb"], ["https://tec.openplanner.team/stops/Cauushm1", "https://tec.openplanner.team/stops/Cauwauq2"], ["https://tec.openplanner.team/stops/Bwspbos2", "https://tec.openplanner.team/stops/Bwspmon2"], ["https://tec.openplanner.team/stops/X786aha", "https://tec.openplanner.team/stops/X788abd"], ["https://tec.openplanner.team/stops/H4po124b", "https://tec.openplanner.team/stops/H4po129a"], ["https://tec.openplanner.team/stops/NR21abb", "https://tec.openplanner.team/stops/NR21acb"], ["https://tec.openplanner.team/stops/Bpersyn2", "https://tec.openplanner.team/stops/Btlbcul1"], ["https://tec.openplanner.team/stops/Cgyhstj1", "https://tec.openplanner.team/stops/Cgyplvi2"], ["https://tec.openplanner.team/stops/X818ana", "https://tec.openplanner.team/stops/X818anb"], ["https://tec.openplanner.team/stops/Llgcouv2", "https://tec.openplanner.team/stops/Llgcouv4"], ["https://tec.openplanner.team/stops/Crccamp2", "https://tec.openplanner.team/stops/Crcpla1"], ["https://tec.openplanner.team/stops/H1ms908a", "https://tec.openplanner.team/stops/H1ms926a"], ["https://tec.openplanner.team/stops/Bjaneco2", "https://tec.openplanner.team/stops/NR30aba"], ["https://tec.openplanner.team/stops/Lghferr1", "https://tec.openplanner.team/stops/Lghvold1"], ["https://tec.openplanner.team/stops/LBscime1", "https://tec.openplanner.team/stops/LBsoha-1"], ["https://tec.openplanner.team/stops/X636axb", "https://tec.openplanner.team/stops/X636ayb"], ["https://tec.openplanner.team/stops/LTPbeau1", "https://tec.openplanner.team/stops/LTPpreh2"], ["https://tec.openplanner.team/stops/LhRwere2", "https://tec.openplanner.team/stops/LwEdorf1"], ["https://tec.openplanner.team/stops/X601aua", "https://tec.openplanner.team/stops/X601baa"], ["https://tec.openplanner.team/stops/LhZkape2", "https://tec.openplanner.team/stops/LmFdorf2"], ["https://tec.openplanner.team/stops/LbUwirt1", "https://tec.openplanner.team/stops/LwRkirc1"], ["https://tec.openplanner.team/stops/N501knb", "https://tec.openplanner.team/stops/N501kpb"], ["https://tec.openplanner.team/stops/Lqbchat2", "https://tec.openplanner.team/stops/LSAhaye1"], ["https://tec.openplanner.team/stops/Btsllec2", "https://tec.openplanner.team/stops/Btsllsc1"], ["https://tec.openplanner.team/stops/N153ada", "https://tec.openplanner.team/stops/N153aeb"], ["https://tec.openplanner.team/stops/H4pp121b", "https://tec.openplanner.team/stops/H4pp123a"], ["https://tec.openplanner.team/stops/Bperqui2", "https://tec.openplanner.team/stops/N519asb"], ["https://tec.openplanner.team/stops/Llglema3", "https://tec.openplanner.team/stops/Llgtill2"], ["https://tec.openplanner.team/stops/LbTgeme1", "https://tec.openplanner.team/stops/LbTgeme2"], ["https://tec.openplanner.team/stops/X615ada", "https://tec.openplanner.team/stops/X615asb"], ["https://tec.openplanner.team/stops/Canterr2", "https://tec.openplanner.team/stops/H2an111b"], ["https://tec.openplanner.team/stops/H4ev120a", "https://tec.openplanner.team/stops/H4ev120b"], ["https://tec.openplanner.team/stops/X609aoa", "https://tec.openplanner.team/stops/X609aqb"], ["https://tec.openplanner.team/stops/X805aka", "https://tec.openplanner.team/stops/X807abb"], ["https://tec.openplanner.team/stops/X911afa", "https://tec.openplanner.team/stops/X911afb"], ["https://tec.openplanner.team/stops/Ctrsema1", "https://tec.openplanner.team/stops/Ctrsema2"], ["https://tec.openplanner.team/stops/Berncim2", "https://tec.openplanner.team/stops/Berngrt1"], ["https://tec.openplanner.team/stops/Lsepcha1", "https://tec.openplanner.team/stops/Lseserv4"], ["https://tec.openplanner.team/stops/LaNdord1", "https://tec.openplanner.team/stops/LhRandl2"], ["https://tec.openplanner.team/stops/X902afb", "https://tec.openplanner.team/stops/X902afc"], ["https://tec.openplanner.team/stops/LhM07--2", "https://tec.openplanner.team/stops/LhMdorf2"], ["https://tec.openplanner.team/stops/Cgonvro2", "https://tec.openplanner.team/stops/Clihame1"], ["https://tec.openplanner.team/stops/X923aba", "https://tec.openplanner.team/stops/X923abb"], ["https://tec.openplanner.team/stops/LXhjupr1", "https://tec.openplanner.team/stops/LXhvina2"], ["https://tec.openplanner.team/stops/X801bdb", "https://tec.openplanner.team/stops/X801cka"], ["https://tec.openplanner.team/stops/Benggar1", "https://tec.openplanner.team/stops/H1en104d"], ["https://tec.openplanner.team/stops/X903agb", "https://tec.openplanner.team/stops/X943aaa"], ["https://tec.openplanner.team/stops/H4ff117b", "https://tec.openplanner.team/stops/H4mb138a"], ["https://tec.openplanner.team/stops/Ccosart2", "https://tec.openplanner.team/stops/Crorogn2"], ["https://tec.openplanner.team/stops/LHMchbl1", "https://tec.openplanner.team/stops/LMNswar1"], ["https://tec.openplanner.team/stops/Llgcour1", "https://tec.openplanner.team/stops/Llgdouf1"], ["https://tec.openplanner.team/stops/Clfmonu2", "https://tec.openplanner.team/stops/H1tt104b"], ["https://tec.openplanner.team/stops/N150agb", "https://tec.openplanner.team/stops/N150ahb"], ["https://tec.openplanner.team/stops/N510abb", "https://tec.openplanner.team/stops/N513bha"], ["https://tec.openplanner.team/stops/Brsgfbl2", "https://tec.openplanner.team/stops/Brsgfbl3"], ["https://tec.openplanner.team/stops/X812aya", "https://tec.openplanner.team/stops/X812bba"], ["https://tec.openplanner.team/stops/X612aba", "https://tec.openplanner.team/stops/X623afa"], ["https://tec.openplanner.team/stops/X607agb", "https://tec.openplanner.team/stops/X607akb"], ["https://tec.openplanner.team/stops/Lveoctr2", "https://tec.openplanner.team/stops/Lveoctr3"], ["https://tec.openplanner.team/stops/LwSgeme1", "https://tec.openplanner.team/stops/LwSgeme2"], ["https://tec.openplanner.team/stops/H5el116a", "https://tec.openplanner.team/stops/H5el116b"], ["https://tec.openplanner.team/stops/Cnabult3", "https://tec.openplanner.team/stops/NC14aeb"], ["https://tec.openplanner.team/stops/H2ll177a", "https://tec.openplanner.team/stops/H2ll177b"], ["https://tec.openplanner.team/stops/H2lc169c", "https://tec.openplanner.team/stops/H2lc172b"], ["https://tec.openplanner.team/stops/LVIcarm4", "https://tec.openplanner.team/stops/LVIdeva1"], ["https://tec.openplanner.team/stops/X602aob", "https://tec.openplanner.team/stops/X602asa"], ["https://tec.openplanner.team/stops/X801bxa", "https://tec.openplanner.team/stops/X801cda"], ["https://tec.openplanner.team/stops/Lcepont1", "https://tec.openplanner.team/stops/Lcepont2"], ["https://tec.openplanner.team/stops/Cjumarc1", "https://tec.openplanner.team/stops/Cjumarc3"], ["https://tec.openplanner.team/stops/H1wi152c", "https://tec.openplanner.team/stops/H1wi157c"], ["https://tec.openplanner.team/stops/Bjodtpo1", "https://tec.openplanner.team/stops/Bpiejus2"], ["https://tec.openplanner.team/stops/X801bdc", "https://tec.openplanner.team/stops/X801bde"], ["https://tec.openplanner.team/stops/N507aac", "https://tec.openplanner.team/stops/NL30aka"], ["https://tec.openplanner.team/stops/N301abb", "https://tec.openplanner.team/stops/N301ada"], ["https://tec.openplanner.team/stops/Lhutill1", "https://tec.openplanner.team/stops/Lhutill2"], ["https://tec.openplanner.team/stops/X871aea", "https://tec.openplanner.team/stops/X877aia"], ["https://tec.openplanner.team/stops/Blontry1", "https://tec.openplanner.team/stops/Blontry2"], ["https://tec.openplanner.team/stops/X345aba", "https://tec.openplanner.team/stops/X345abb"], ["https://tec.openplanner.team/stops/X663aab", "https://tec.openplanner.team/stops/X663aqa"], ["https://tec.openplanner.team/stops/Cgxalli1", "https://tec.openplanner.team/stops/CMleer2"], ["https://tec.openplanner.team/stops/X610aja", "https://tec.openplanner.team/stops/X622aba"], ["https://tec.openplanner.team/stops/LBpcren1", "https://tec.openplanner.team/stops/LCAeg--1"], ["https://tec.openplanner.team/stops/Cpccpas1", "https://tec.openplanner.team/stops/Cpceclu2"], ["https://tec.openplanner.team/stops/Bdvmccu1", "https://tec.openplanner.team/stops/Bdvmsar2"], ["https://tec.openplanner.team/stops/Lhrlico2", "https://tec.openplanner.team/stops/Lhrlico3"], ["https://tec.openplanner.team/stops/LMibouv4", "https://tec.openplanner.team/stops/LMisour2"], ["https://tec.openplanner.team/stops/LACwass1", "https://tec.openplanner.team/stops/LACwass2"], ["https://tec.openplanner.team/stops/X904aba", "https://tec.openplanner.team/stops/X904aea"], ["https://tec.openplanner.team/stops/Bgliopp1", "https://tec.openplanner.team/stops/Bgliopp4"], ["https://tec.openplanner.team/stops/LBpecco2", "https://tec.openplanner.team/stops/LLStrid1"], ["https://tec.openplanner.team/stops/Bbchcbl2", "https://tec.openplanner.team/stops/Bbchrra3"], ["https://tec.openplanner.team/stops/H1mq198a", "https://tec.openplanner.team/stops/H1ol145b"], ["https://tec.openplanner.team/stops/Ctmdema1", "https://tec.openplanner.team/stops/Cvvmonu2"], ["https://tec.openplanner.team/stops/H2hp125a", "https://tec.openplanner.team/stops/H2hp125b"], ["https://tec.openplanner.team/stops/LHdfays1", "https://tec.openplanner.team/stops/LVnourt1"], ["https://tec.openplanner.team/stops/Btlbcul1", "https://tec.openplanner.team/stops/Btstw751"], ["https://tec.openplanner.team/stops/Lsebegu2", "https://tec.openplanner.team/stops/Lsephar2"], ["https://tec.openplanner.team/stops/LAUcarr2", "https://tec.openplanner.team/stops/LFdchau1"], ["https://tec.openplanner.team/stops/Clibrun1", "https://tec.openplanner.team/stops/Cliegli1"], ["https://tec.openplanner.team/stops/H5pe137a", "https://tec.openplanner.team/stops/H5pe147a"], ["https://tec.openplanner.team/stops/Llgpbay2", "https://tec.openplanner.team/stops/Llgpiet2"], ["https://tec.openplanner.team/stops/Cfomays1", "https://tec.openplanner.team/stops/Cgxcime1"], ["https://tec.openplanner.team/stops/Bhaldbo1", "https://tec.openplanner.team/stops/Bhalh311"], ["https://tec.openplanner.team/stops/X721agb", "https://tec.openplanner.team/stops/X721aka"], ["https://tec.openplanner.team/stops/H1hv136a", "https://tec.openplanner.team/stops/H1mk123b"], ["https://tec.openplanner.team/stops/X796aha", "https://tec.openplanner.team/stops/X796aia"], ["https://tec.openplanner.team/stops/X750bga", "https://tec.openplanner.team/stops/X750bna"], ["https://tec.openplanner.team/stops/H4cp103a", "https://tec.openplanner.team/stops/H4cw106a"], ["https://tec.openplanner.team/stops/N557aib", "https://tec.openplanner.team/stops/N562afb"], ["https://tec.openplanner.team/stops/N548akb", "https://tec.openplanner.team/stops/N548amb"], ["https://tec.openplanner.team/stops/Cgygazo2", "https://tec.openplanner.team/stops/Cgygazo5"], ["https://tec.openplanner.team/stops/Bmarpla1", "https://tec.openplanner.team/stops/Bvlvmar2"], ["https://tec.openplanner.team/stops/Livcoll2", "https://tec.openplanner.team/stops/Livpost1"], ["https://tec.openplanner.team/stops/LNCesne1", "https://tec.openplanner.team/stops/LNCrami1"], ["https://tec.openplanner.team/stops/Bhenfer2", "https://tec.openplanner.team/stops/Brebcgi1"], ["https://tec.openplanner.team/stops/H4oq225a", "https://tec.openplanner.team/stops/H4wu375a"], ["https://tec.openplanner.team/stops/Boppegl2", "https://tec.openplanner.team/stops/Borbod91"], ["https://tec.openplanner.team/stops/Bkrawil1", "https://tec.openplanner.team/stops/Bleugar1"], ["https://tec.openplanner.team/stops/LWEcite2", "https://tec.openplanner.team/stops/LWEcomp2"], ["https://tec.openplanner.team/stops/X829acb", "https://tec.openplanner.team/stops/X829adb"], ["https://tec.openplanner.team/stops/X870aea", "https://tec.openplanner.team/stops/X870agb"], ["https://tec.openplanner.team/stops/LmDbw--*", "https://tec.openplanner.team/stops/LmDkape2"], ["https://tec.openplanner.team/stops/H2me113a", "https://tec.openplanner.team/stops/H2me115a"], ["https://tec.openplanner.team/stops/Bixlaca2", "https://tec.openplanner.team/stops/Bixleix2"], ["https://tec.openplanner.team/stops/N538aka", "https://tec.openplanner.team/stops/N538asa"], ["https://tec.openplanner.team/stops/LBRtrag2", "https://tec.openplanner.team/stops/LLSba4-2"], ["https://tec.openplanner.team/stops/H4pq113b", "https://tec.openplanner.team/stops/H4pq119b"], ["https://tec.openplanner.team/stops/NL30aja", "https://tec.openplanner.team/stops/NL30ajb"], ["https://tec.openplanner.team/stops/N501ica", "https://tec.openplanner.team/stops/N501icb"], ["https://tec.openplanner.team/stops/X898aia", "https://tec.openplanner.team/stops/X898ajb"], ["https://tec.openplanner.team/stops/Cmeptmi6", "https://tec.openplanner.team/stops/Cmewaya2"], ["https://tec.openplanner.team/stops/X826aga", "https://tec.openplanner.team/stops/X826agb"], ["https://tec.openplanner.team/stops/Llgblon1", "https://tec.openplanner.team/stops/Llgvero3"], ["https://tec.openplanner.team/stops/H1hl124a", "https://tec.openplanner.team/stops/H1vs145b"], ["https://tec.openplanner.team/stops/X768aia", "https://tec.openplanner.team/stops/X768aka"], ["https://tec.openplanner.team/stops/Bllnjpa1", "https://tec.openplanner.team/stops/Bllnlb52"], ["https://tec.openplanner.team/stops/LAmeclu1", "https://tec.openplanner.team/stops/LATlena1"], ["https://tec.openplanner.team/stops/N536aob", "https://tec.openplanner.team/stops/N562aoa"], ["https://tec.openplanner.team/stops/X993abd", "https://tec.openplanner.team/stops/X993aca"], ["https://tec.openplanner.team/stops/H1ev113a", "https://tec.openplanner.team/stops/H1ev113b"], ["https://tec.openplanner.team/stops/LlgOPER5", "https://tec.openplanner.team/stops/LlgOPER6"], ["https://tec.openplanner.team/stops/LAivill2", "https://tec.openplanner.team/stops/LENgend1"], ["https://tec.openplanner.team/stops/Bgnvdep1", "https://tec.openplanner.team/stops/Bgnvoha4"], ["https://tec.openplanner.team/stops/X741aea", "https://tec.openplanner.team/stops/X741afa"], ["https://tec.openplanner.team/stops/X908aoa", "https://tec.openplanner.team/stops/X950aab"], ["https://tec.openplanner.team/stops/LhGadap1", "https://tec.openplanner.team/stops/LhGknip1"], ["https://tec.openplanner.team/stops/LWNcham1", "https://tec.openplanner.team/stops/LWNcime2"], ["https://tec.openplanner.team/stops/X806aab", "https://tec.openplanner.team/stops/X850ana"], ["https://tec.openplanner.team/stops/N231agb", "https://tec.openplanner.team/stops/N291aca"], ["https://tec.openplanner.team/stops/N311afa", "https://tec.openplanner.team/stops/N312aaa"], ["https://tec.openplanner.team/stops/LGLc12-3", "https://tec.openplanner.team/stops/LGLc50-3"], ["https://tec.openplanner.team/stops/Ladclem1", "https://tec.openplanner.team/stops/Ldimeun1"], ["https://tec.openplanner.team/stops/LCUgale2", "https://tec.openplanner.team/stops/LCUmora2"], ["https://tec.openplanner.team/stops/LSeaque3", "https://tec.openplanner.team/stops/LSeaque4"], ["https://tec.openplanner.team/stops/LeYauto1", "https://tec.openplanner.team/stops/LeYauto2"], ["https://tec.openplanner.team/stops/Bllngar7", "https://tec.openplanner.team/stops/Bllngar8"], ["https://tec.openplanner.team/stops/H2lh124b", "https://tec.openplanner.team/stops/H2mm140a"], ["https://tec.openplanner.team/stops/N501dtb", "https://tec.openplanner.team/stops/N501kjb"], ["https://tec.openplanner.team/stops/LGesent1", "https://tec.openplanner.team/stops/LGevygh1"], ["https://tec.openplanner.team/stops/H4ea131b", "https://tec.openplanner.team/stops/H4ea134a"], ["https://tec.openplanner.team/stops/LeUhook2", "https://tec.openplanner.team/stops/LeUwert1"], ["https://tec.openplanner.team/stops/Caiegli1", "https://tec.openplanner.team/stops/N554aaa"], ["https://tec.openplanner.team/stops/N215acb", "https://tec.openplanner.team/stops/N232bfb"], ["https://tec.openplanner.team/stops/Bblagar3", "https://tec.openplanner.team/stops/Bblagard"], ["https://tec.openplanner.team/stops/N214aia", "https://tec.openplanner.team/stops/N214aja"], ["https://tec.openplanner.team/stops/Lscbour2", "https://tec.openplanner.team/stops/Lscgare2"], ["https://tec.openplanner.team/stops/N150agb", "https://tec.openplanner.team/stops/N168aaa"], ["https://tec.openplanner.team/stops/LLUdoya2", "https://tec.openplanner.team/stops/LLUvent4"], ["https://tec.openplanner.team/stops/LHGtige1", "https://tec.openplanner.team/stops/LHGtige2"], ["https://tec.openplanner.team/stops/X754ada", "https://tec.openplanner.team/stops/X754aoa"], ["https://tec.openplanner.team/stops/LrEfeck1", "https://tec.openplanner.team/stops/LrEkape1"], ["https://tec.openplanner.team/stops/Bjodfco2", "https://tec.openplanner.team/stops/Bmrlsau2"], ["https://tec.openplanner.team/stops/LmR90--1", "https://tec.openplanner.team/stops/LmRmuhl2"], ["https://tec.openplanner.team/stops/Lvegera2", "https://tec.openplanner.team/stops/Lvehout1"], ["https://tec.openplanner.team/stops/N101aaa", "https://tec.openplanner.team/stops/N118aka"], ["https://tec.openplanner.team/stops/H1bb118a", "https://tec.openplanner.team/stops/H1bo107b"], ["https://tec.openplanner.team/stops/X640ata", "https://tec.openplanner.team/stops/X640atb"], ["https://tec.openplanner.team/stops/H5rx130a", "https://tec.openplanner.team/stops/H5rx130b"], ["https://tec.openplanner.team/stops/N501cya", "https://tec.openplanner.team/stops/N528aga"], ["https://tec.openplanner.team/stops/X622aeb", "https://tec.openplanner.team/stops/X622afb"], ["https://tec.openplanner.team/stops/Bquegob2", "https://tec.openplanner.team/stops/Brebraf2"], ["https://tec.openplanner.team/stops/Llgdepo1", "https://tec.openplanner.team/stops/Llgmagh2"], ["https://tec.openplanner.team/stops/Blinbru2", "https://tec.openplanner.team/stops/Blindel2"], ["https://tec.openplanner.team/stops/Bbrlvil2", "https://tec.openplanner.team/stops/Bhaless1"], ["https://tec.openplanner.team/stops/LBkcarr3", "https://tec.openplanner.team/stops/LMsheid1"], ["https://tec.openplanner.team/stops/N544afb", "https://tec.openplanner.team/stops/N547adb"], ["https://tec.openplanner.team/stops/LSZclem1", "https://tec.openplanner.team/stops/LSZclem2"], ["https://tec.openplanner.team/stops/H3so159a", "https://tec.openplanner.team/stops/H3so172a"], ["https://tec.openplanner.team/stops/Bclgpla1", "https://tec.openplanner.team/stops/Bclgvse2"], ["https://tec.openplanner.team/stops/Blaspch1", "https://tec.openplanner.team/stops/Blaspch2"], ["https://tec.openplanner.team/stops/Lagsauh1", "https://tec.openplanner.team/stops/Lemmath1"], ["https://tec.openplanner.team/stops/N106aba", "https://tec.openplanner.team/stops/N137abb"], ["https://tec.openplanner.team/stops/LlCgren1", "https://tec.openplanner.team/stops/LrAputz1"], ["https://tec.openplanner.team/stops/H1en102a", "https://tec.openplanner.team/stops/H1mk107a"], ["https://tec.openplanner.team/stops/H1ni315a", "https://tec.openplanner.team/stops/H1ni320b"], ["https://tec.openplanner.team/stops/X601bbb", "https://tec.openplanner.team/stops/X601cza"], ["https://tec.openplanner.team/stops/LMibouv4", "https://tec.openplanner.team/stops/LSTmast2"], ["https://tec.openplanner.team/stops/Lrcchpl2", "https://tec.openplanner.team/stops/Lrchero2"], ["https://tec.openplanner.team/stops/H1do115b", "https://tec.openplanner.team/stops/H1do125a"], ["https://tec.openplanner.team/stops/N550afa", "https://tec.openplanner.team/stops/N550afb"], ["https://tec.openplanner.team/stops/Lemlacr1", "https://tec.openplanner.team/stops/Lemlacr2"], ["https://tec.openplanner.team/stops/LMfpeni*", "https://tec.openplanner.team/stops/NL73aab"], ["https://tec.openplanner.team/stops/LHUomni2", "https://tec.openplanner.team/stops/LHUsaul1"], ["https://tec.openplanner.team/stops/Bnstpla2", "https://tec.openplanner.team/stops/H2na136a"], ["https://tec.openplanner.team/stops/Bmarcha2", "https://tec.openplanner.team/stops/Bmarchn1"], ["https://tec.openplanner.team/stops/Ljegoss2", "https://tec.openplanner.team/stops/Ljehotv1"], ["https://tec.openplanner.team/stops/Cbmgrav1", "https://tec.openplanner.team/stops/Cbmvalt2"], ["https://tec.openplanner.team/stops/LWNfani1", "https://tec.openplanner.team/stops/LWNwavr2"], ["https://tec.openplanner.team/stops/Blpgvil2", "https://tec.openplanner.team/stops/Cbtstac2"], ["https://tec.openplanner.team/stops/X736aab", "https://tec.openplanner.team/stops/X937aja"], ["https://tec.openplanner.team/stops/H1bb116b", "https://tec.openplanner.team/stops/H1bo104b"], ["https://tec.openplanner.team/stops/Bblagar6", "https://tec.openplanner.team/stops/Bblapje2"], ["https://tec.openplanner.team/stops/H4ru238b", "https://tec.openplanner.team/stops/H4ru239b"], ["https://tec.openplanner.team/stops/H4eq123a", "https://tec.openplanner.team/stops/H4rc232d"], ["https://tec.openplanner.team/stops/LNHhome2", "https://tec.openplanner.team/stops/LTipont1"], ["https://tec.openplanner.team/stops/Cmyvesa2", "https://tec.openplanner.team/stops/Cmyvesa3"], ["https://tec.openplanner.team/stops/Lrechap1", "https://tec.openplanner.team/stops/Lrechap2"], ["https://tec.openplanner.team/stops/LHUcomp1", "https://tec.openplanner.team/stops/LHUmari1"], ["https://tec.openplanner.team/stops/H1on128b", "https://tec.openplanner.team/stops/H1on129b"], ["https://tec.openplanner.team/stops/Ljubeyn1", "https://tec.openplanner.team/stops/Ljubeyn2"], ["https://tec.openplanner.team/stops/LWEpaul1", "https://tec.openplanner.team/stops/LWEpaul2"], ["https://tec.openplanner.team/stops/H1hy128a", "https://tec.openplanner.team/stops/H1qy131b"], ["https://tec.openplanner.team/stops/X727ada", "https://tec.openplanner.team/stops/X746aaa"], ["https://tec.openplanner.team/stops/LAYcorn2", "https://tec.openplanner.team/stops/LAYfoot2"], ["https://tec.openplanner.team/stops/Lmncasi2", "https://tec.openplanner.team/stops/Lmnfawe2"], ["https://tec.openplanner.team/stops/N313aea", "https://tec.openplanner.team/stops/N313aeb"], ["https://tec.openplanner.team/stops/LLTcent2", "https://tec.openplanner.team/stops/LLThosd2"], ["https://tec.openplanner.team/stops/LVNbale1", "https://tec.openplanner.team/stops/LVNbale2"], ["https://tec.openplanner.team/stops/LLMcouv1", "https://tec.openplanner.team/stops/LLMcouv2"], ["https://tec.openplanner.team/stops/Bllncom1", "https://tec.openplanner.team/stops/Bllngar9"], ["https://tec.openplanner.team/stops/H1gr116a", "https://tec.openplanner.team/stops/H1gr116b"], ["https://tec.openplanner.team/stops/H4bh103a", "https://tec.openplanner.team/stops/H4bh105b"], ["https://tec.openplanner.team/stops/X661aka", "https://tec.openplanner.team/stops/X661asb"], ["https://tec.openplanner.team/stops/LBalacr1", "https://tec.openplanner.team/stops/LBalacr2"], ["https://tec.openplanner.team/stops/Bgnvfai1", "https://tec.openplanner.team/stops/Blhugar2"], ["https://tec.openplanner.team/stops/Bernegl3", "https://tec.openplanner.team/stops/Bernrar1"], ["https://tec.openplanner.team/stops/H4ms146a", "https://tec.openplanner.team/stops/H4ms146b"], ["https://tec.openplanner.team/stops/Cgocnor2", "https://tec.openplanner.team/stops/Cgocnor4"], ["https://tec.openplanner.team/stops/Bpte1ma1", "https://tec.openplanner.team/stops/Brebpca2"], ["https://tec.openplanner.team/stops/LSHhade2", "https://tec.openplanner.team/stops/LSHries2"], ["https://tec.openplanner.team/stops/N506bod", "https://tec.openplanner.team/stops/N506bsb"], ["https://tec.openplanner.team/stops/H1ms268b", "https://tec.openplanner.team/stops/H1ms281a"], ["https://tec.openplanner.team/stops/Lsehya-1", "https://tec.openplanner.team/stops/Lsepair1"], ["https://tec.openplanner.team/stops/H2mo144a", "https://tec.openplanner.team/stops/H2mo144b"], ["https://tec.openplanner.team/stops/Bgnvgir2", "https://tec.openplanner.team/stops/Blhumga2"], ["https://tec.openplanner.team/stops/LEMeg--1", "https://tec.openplanner.team/stops/LLAbure2"], ["https://tec.openplanner.team/stops/X601asb", "https://tec.openplanner.team/stops/X601bwa"], ["https://tec.openplanner.team/stops/N501hya", "https://tec.openplanner.team/stops/N501ikb"], ["https://tec.openplanner.team/stops/H4la196a", "https://tec.openplanner.team/stops/H4la197a"], ["https://tec.openplanner.team/stops/LSRbouh2", "https://tec.openplanner.team/stops/LSReg--1"], ["https://tec.openplanner.team/stops/H2sv217b", "https://tec.openplanner.team/stops/H2sv221b"], ["https://tec.openplanner.team/stops/X617acb", "https://tec.openplanner.team/stops/X617aga"], ["https://tec.openplanner.team/stops/X786ahb", "https://tec.openplanner.team/stops/X786aib"], ["https://tec.openplanner.team/stops/N581aaa", "https://tec.openplanner.team/stops/N581aba"], ["https://tec.openplanner.team/stops/X730aga", "https://tec.openplanner.team/stops/X731afa"], ["https://tec.openplanner.team/stops/Bllncbr2", "https://tec.openplanner.team/stops/Bllnpaf2"], ["https://tec.openplanner.team/stops/N244aab", "https://tec.openplanner.team/stops/N244aca"], ["https://tec.openplanner.team/stops/Bsaupco1", "https://tec.openplanner.team/stops/N541abb"], ["https://tec.openplanner.team/stops/X606abb", "https://tec.openplanner.team/stops/X620afa"], ["https://tec.openplanner.team/stops/Lsecris3", "https://tec.openplanner.team/stops/Lsecris4"], ["https://tec.openplanner.team/stops/X804avb", "https://tec.openplanner.team/stops/X804bua"], ["https://tec.openplanner.team/stops/Canfief2", "https://tec.openplanner.team/stops/Canrsta1"], ["https://tec.openplanner.team/stops/N529aba", "https://tec.openplanner.team/stops/N529abd"], ["https://tec.openplanner.team/stops/N566aeb", "https://tec.openplanner.team/stops/N566afb"], ["https://tec.openplanner.team/stops/Bbghepi2", "https://tec.openplanner.team/stops/Bstecou1"], ["https://tec.openplanner.team/stops/H4by119b", "https://tec.openplanner.team/stops/H4ro155b"], ["https://tec.openplanner.team/stops/Bsaumlk1", "https://tec.openplanner.team/stops/Bsaumlk2"], ["https://tec.openplanner.team/stops/LMApl--2", "https://tec.openplanner.team/stops/LMAstei2"], ["https://tec.openplanner.team/stops/LXobaty1", "https://tec.openplanner.team/stops/X599agb"], ["https://tec.openplanner.team/stops/H4ty397a", "https://tec.openplanner.team/stops/H4ty397b"], ["https://tec.openplanner.team/stops/X615aha", "https://tec.openplanner.team/stops/X615apa"], ["https://tec.openplanner.team/stops/LTNmont1", "https://tec.openplanner.team/stops/LTNmont2"], ["https://tec.openplanner.team/stops/LAx41--2", "https://tec.openplanner.team/stops/LFsgend1"], ["https://tec.openplanner.team/stops/Cnacout1", "https://tec.openplanner.team/stops/NC14aqb"], ["https://tec.openplanner.team/stops/N231aba", "https://tec.openplanner.team/stops/N231abb"], ["https://tec.openplanner.team/stops/X741ala", "https://tec.openplanner.team/stops/X741aob"], ["https://tec.openplanner.team/stops/H4mt221b", "https://tec.openplanner.team/stops/H4mt222a"], ["https://tec.openplanner.team/stops/Lhrlico1", "https://tec.openplanner.team/stops/Lhrpwan2"], ["https://tec.openplanner.team/stops/LHEcoll1", "https://tec.openplanner.team/stops/LHEhv--1"], ["https://tec.openplanner.team/stops/Bwatbce2", "https://tec.openplanner.team/stops/Bwatmco2"], ["https://tec.openplanner.team/stops/Bquecge2", "https://tec.openplanner.team/stops/Bquegen2"], ["https://tec.openplanner.team/stops/H4te248b", "https://tec.openplanner.team/stops/H4te252b"], ["https://tec.openplanner.team/stops/LFCkett2", "https://tec.openplanner.team/stops/LFCvoer2"], ["https://tec.openplanner.team/stops/Llgchal1", "https://tec.openplanner.team/stops/Llgchal2"], ["https://tec.openplanner.team/stops/Cdogrro1", "https://tec.openplanner.team/stops/Cdogrro2"], ["https://tec.openplanner.team/stops/X741ajc", "https://tec.openplanner.team/stops/X741aka"], ["https://tec.openplanner.team/stops/Cmlipsm3", "https://tec.openplanner.team/stops/Cmmbmad2"], ["https://tec.openplanner.team/stops/LBkcare*", "https://tec.openplanner.team/stops/LBkgrae1"], ["https://tec.openplanner.team/stops/H1hy127a", "https://tec.openplanner.team/stops/H1hy130b"], ["https://tec.openplanner.team/stops/Ladloup2", "https://tec.openplanner.team/stops/Ladpara1"], ["https://tec.openplanner.team/stops/LBEtrix2", "https://tec.openplanner.team/stops/LDLbois1"], ["https://tec.openplanner.team/stops/Bbcodam3", "https://tec.openplanner.team/stops/Bbcohou4"], ["https://tec.openplanner.team/stops/Lsechan1", "https://tec.openplanner.team/stops/Lsestap4"], ["https://tec.openplanner.team/stops/Bbaucba2", "https://tec.openplanner.team/stops/Bbautri1"], ["https://tec.openplanner.team/stops/LCOdrol2", "https://tec.openplanner.team/stops/Lpejonc1"], ["https://tec.openplanner.team/stops/Lagindu2", "https://tec.openplanner.team/stops/Lagsauh1"], ["https://tec.openplanner.team/stops/X901ana", "https://tec.openplanner.team/stops/X901bna"], ["https://tec.openplanner.team/stops/Cbbcent2", "https://tec.openplanner.team/stops/Cbblacb1"], ["https://tec.openplanner.team/stops/X850agb", "https://tec.openplanner.team/stops/X850anb"], ["https://tec.openplanner.team/stops/LLAeg--1", "https://tec.openplanner.team/stops/LLAvi651"], ["https://tec.openplanner.team/stops/LHMbami1", "https://tec.openplanner.team/stops/LMNheme2"], ["https://tec.openplanner.team/stops/X607agb", "https://tec.openplanner.team/stops/X620agb"], ["https://tec.openplanner.team/stops/Llianix3", "https://tec.openplanner.team/stops/Lmitech2"], ["https://tec.openplanner.team/stops/H4bw100b", "https://tec.openplanner.team/stops/H4co149a"], ["https://tec.openplanner.team/stops/X684aab", "https://tec.openplanner.team/stops/X688aaa"], ["https://tec.openplanner.team/stops/N118agb", "https://tec.openplanner.team/stops/N118ayb"], ["https://tec.openplanner.team/stops/Bnetegl3", "https://tec.openplanner.team/stops/Bnetrec2"], ["https://tec.openplanner.team/stops/N539bca", "https://tec.openplanner.team/stops/N539bda"], ["https://tec.openplanner.team/stops/X610acb", "https://tec.openplanner.team/stops/X610adb"], ["https://tec.openplanner.team/stops/X899aca", "https://tec.openplanner.team/stops/X899adb"], ["https://tec.openplanner.team/stops/N117aua", "https://tec.openplanner.team/stops/N117aud"], ["https://tec.openplanner.team/stops/LHFcaqu1", "https://tec.openplanner.team/stops/LHFec--2"], ["https://tec.openplanner.team/stops/LREairp1", "https://tec.openplanner.team/stops/LREhenu1"], ["https://tec.openplanner.team/stops/H4bv146b", "https://tec.openplanner.team/stops/H5at141a"], ["https://tec.openplanner.team/stops/Ladabot1", "https://tec.openplanner.team/stops/Ladabot2"], ["https://tec.openplanner.team/stops/X659apb", "https://tec.openplanner.team/stops/X659aua"], ["https://tec.openplanner.team/stops/LSGhagn1", "https://tec.openplanner.team/stops/LSGsolo2"], ["https://tec.openplanner.team/stops/H1ms293a", "https://tec.openplanner.team/stops/H1ms921a"], ["https://tec.openplanner.team/stops/H1br132b", "https://tec.openplanner.team/stops/H1ev116b"], ["https://tec.openplanner.team/stops/Lvteg--2", "https://tec.openplanner.team/stops/Lvtegli*"], ["https://tec.openplanner.team/stops/Ctarpoi2", "https://tec.openplanner.team/stops/N543bqb"], ["https://tec.openplanner.team/stops/Cpcathe2", "https://tec.openplanner.team/stops/Cpcegli1"], ["https://tec.openplanner.team/stops/H2ll189b", "https://tec.openplanner.team/stops/H2ll257a"], ["https://tec.openplanner.team/stops/LTPpreh1", "https://tec.openplanner.team/stops/LTPpreh2"], ["https://tec.openplanner.team/stops/H1ci102b", "https://tec.openplanner.team/stops/H1mv243b"], ["https://tec.openplanner.team/stops/LLVe75-1", "https://tec.openplanner.team/stops/X575adb"], ["https://tec.openplanner.team/stops/LBseg--1", "https://tec.openplanner.team/stops/LBsfer-2"], ["https://tec.openplanner.team/stops/Ljemeca2", "https://tec.openplanner.team/stops/Lsetroq2"], ["https://tec.openplanner.team/stops/Blnzcar1", "https://tec.openplanner.team/stops/N522aca"], ["https://tec.openplanner.team/stops/Bgoegma2", "https://tec.openplanner.team/stops/Bpienod2"], ["https://tec.openplanner.team/stops/H4ty274a", "https://tec.openplanner.team/stops/H4ty317b"], ["https://tec.openplanner.team/stops/H4ep127b", "https://tec.openplanner.team/stops/H4ep130b"], ["https://tec.openplanner.team/stops/N528agb", "https://tec.openplanner.team/stops/N528apa"], ["https://tec.openplanner.team/stops/H4mo178a", "https://tec.openplanner.team/stops/H4mo205a"], ["https://tec.openplanner.team/stops/X762adb", "https://tec.openplanner.team/stops/X762aea"], ["https://tec.openplanner.team/stops/Cgonvro2", "https://tec.openplanner.team/stops/Cgonvro3"], ["https://tec.openplanner.team/stops/N529aea", "https://tec.openplanner.team/stops/N529aeb"], ["https://tec.openplanner.team/stops/LbHzent1", "https://tec.openplanner.team/stops/LrUbrac3"], ["https://tec.openplanner.team/stops/N524acb", "https://tec.openplanner.team/stops/N541ada"], ["https://tec.openplanner.team/stops/N528abb", "https://tec.openplanner.team/stops/N528ara"], ["https://tec.openplanner.team/stops/Lvcbalt1", "https://tec.openplanner.team/stops/Lvcecol1"], ["https://tec.openplanner.team/stops/Bllncom1", "https://tec.openplanner.team/stops/Bllnfla2"], ["https://tec.openplanner.team/stops/LFyanto1", "https://tec.openplanner.team/stops/LsHlenz2"], ["https://tec.openplanner.team/stops/H2hg152b", "https://tec.openplanner.team/stops/H2hg156b"], ["https://tec.openplanner.team/stops/N232aab", "https://tec.openplanner.team/stops/N286aaa"], ["https://tec.openplanner.team/stops/LDmcruc1", "https://tec.openplanner.team/stops/LDmdegi1"], ["https://tec.openplanner.team/stops/X870aba", "https://tec.openplanner.team/stops/X870afa"], ["https://tec.openplanner.team/stops/N534amg", "https://tec.openplanner.team/stops/N534amh"], ["https://tec.openplanner.team/stops/H1qy132b", "https://tec.openplanner.team/stops/H1qy137a"], ["https://tec.openplanner.team/stops/Bhmmgar1", "https://tec.openplanner.team/stops/Bhmmpos1"], ["https://tec.openplanner.team/stops/N501bma", "https://tec.openplanner.team/stops/N501bna"], ["https://tec.openplanner.team/stops/Bbsggot1", "https://tec.openplanner.team/stops/Bhmmcge1"], ["https://tec.openplanner.team/stops/X983adb", "https://tec.openplanner.team/stops/X983aeb"], ["https://tec.openplanner.team/stops/N562blb", "https://tec.openplanner.team/stops/N562bnb"], ["https://tec.openplanner.team/stops/Lhrgall1", "https://tec.openplanner.team/stops/Lhrtunn1"], ["https://tec.openplanner.team/stops/N531aab", "https://tec.openplanner.team/stops/N531aua"], ["https://tec.openplanner.team/stops/CMmorg2", "https://tec.openplanner.team/stops/Cmoecol2"], ["https://tec.openplanner.team/stops/LAUbour2", "https://tec.openplanner.team/stops/LAUbour3"], ["https://tec.openplanner.team/stops/LPLarbo1", "https://tec.openplanner.team/stops/LPLaube2"], ["https://tec.openplanner.team/stops/X825abb", "https://tec.openplanner.team/stops/X826agb"], ["https://tec.openplanner.team/stops/H2hp114b", "https://tec.openplanner.team/stops/H2hp262b"], ["https://tec.openplanner.team/stops/X837aaa", "https://tec.openplanner.team/stops/X837abb"], ["https://tec.openplanner.team/stops/LOTmonu2", "https://tec.openplanner.team/stops/LOTsava1"], ["https://tec.openplanner.team/stops/LFLetoi2", "https://tec.openplanner.team/stops/LREraph3"], ["https://tec.openplanner.team/stops/H4mo159a", "https://tec.openplanner.team/stops/H4mo169a"], ["https://tec.openplanner.team/stops/X730aaa", "https://tec.openplanner.team/stops/X730afa"], ["https://tec.openplanner.team/stops/H2ml113b", "https://tec.openplanner.team/stops/H2mo119a"], ["https://tec.openplanner.team/stops/Cjufauv2", "https://tec.openplanner.team/stops/Cjuheig1"], ["https://tec.openplanner.team/stops/H1mq198a", "https://tec.openplanner.team/stops/H5is171b"], ["https://tec.openplanner.team/stops/X619afb", "https://tec.openplanner.team/stops/X696ada"], ["https://tec.openplanner.team/stops/X640anb", "https://tec.openplanner.team/stops/X640apb"], ["https://tec.openplanner.team/stops/Bptblma2", "https://tec.openplanner.team/stops/Bptbmco1"], ["https://tec.openplanner.team/stops/LHFwaut1", "https://tec.openplanner.team/stops/LHFwaut2"], ["https://tec.openplanner.team/stops/H4mt215b", "https://tec.openplanner.team/stops/H4mt216b"], ["https://tec.openplanner.team/stops/H1ca106a", "https://tec.openplanner.team/stops/H3so164a"], ["https://tec.openplanner.team/stops/H1fl133a", "https://tec.openplanner.team/stops/H1fl133f"], ["https://tec.openplanner.team/stops/Lsepapi1", "https://tec.openplanner.team/stops/Lsepapi3"], ["https://tec.openplanner.team/stops/Cmyboci1", "https://tec.openplanner.team/stops/Cmyvert1"], ["https://tec.openplanner.team/stops/H4mo148b", "https://tec.openplanner.team/stops/H4mo184a"], ["https://tec.openplanner.team/stops/Bincbbo3", "https://tec.openplanner.team/stops/Bincdon1"], ["https://tec.openplanner.team/stops/Cbmpano2", "https://tec.openplanner.team/stops/H1bt100a"], ["https://tec.openplanner.team/stops/X625abb", "https://tec.openplanner.team/stops/X625afb"], ["https://tec.openplanner.team/stops/N501eeb", "https://tec.openplanner.team/stops/N501kfb"], ["https://tec.openplanner.team/stops/Lrocort1", "https://tec.openplanner.team/stops/Lromc--2"], ["https://tec.openplanner.team/stops/N509ajb", "https://tec.openplanner.team/stops/N509ala"], ["https://tec.openplanner.team/stops/LSogare2", "https://tec.openplanner.team/stops/LtEnach1"], ["https://tec.openplanner.team/stops/Cpl4bra1", "https://tec.openplanner.team/stops/Cplcite1"], ["https://tec.openplanner.team/stops/Lghpero2", "https://tec.openplanner.team/stops/Lghremy2"], ["https://tec.openplanner.team/stops/X359aab", "https://tec.openplanner.team/stops/X371afb"], ["https://tec.openplanner.team/stops/X614asa", "https://tec.openplanner.team/stops/X614asb"], ["https://tec.openplanner.team/stops/X359adb", "https://tec.openplanner.team/stops/X359aka"], ["https://tec.openplanner.team/stops/Ccicent2", "https://tec.openplanner.team/stops/Ccipech1"], ["https://tec.openplanner.team/stops/N120amb", "https://tec.openplanner.team/stops/N121ahb"], ["https://tec.openplanner.team/stops/H1po132b", "https://tec.openplanner.team/stops/H1po135d"], ["https://tec.openplanner.team/stops/X650afe", "https://tec.openplanner.team/stops/X650aia"], ["https://tec.openplanner.team/stops/Cloravi1", "https://tec.openplanner.team/stops/Cloravi2"], ["https://tec.openplanner.team/stops/X927aba", "https://tec.openplanner.team/stops/X927ada"], ["https://tec.openplanner.team/stops/X611aca", "https://tec.openplanner.team/stops/X611aea"], ["https://tec.openplanner.team/stops/Caccarr2", "https://tec.openplanner.team/stops/NC24aka"], ["https://tec.openplanner.team/stops/X639aoa", "https://tec.openplanner.team/stops/X639apb"], ["https://tec.openplanner.team/stops/Cnahahe2", "https://tec.openplanner.team/stops/Cnarmon1"], ["https://tec.openplanner.team/stops/LCLscie1", "https://tec.openplanner.team/stops/LCLscie2"], ["https://tec.openplanner.team/stops/N215aca", "https://tec.openplanner.team/stops/N215acb"], ["https://tec.openplanner.team/stops/N101aea", "https://tec.openplanner.team/stops/N101ana"], ["https://tec.openplanner.team/stops/N202aba", "https://tec.openplanner.team/stops/N202aca"], ["https://tec.openplanner.team/stops/Cflcoro1", "https://tec.openplanner.team/stops/Cflcoro2"], ["https://tec.openplanner.team/stops/X742aea", "https://tec.openplanner.team/stops/X742aeb"], ["https://tec.openplanner.team/stops/LaMhe831", "https://tec.openplanner.team/stops/LmDwei31"], ["https://tec.openplanner.team/stops/X750aca", "https://tec.openplanner.team/stops/X750acb"], ["https://tec.openplanner.team/stops/LVleg--1", "https://tec.openplanner.team/stops/LVlroua4"], ["https://tec.openplanner.team/stops/Ccobour1", "https://tec.openplanner.team/stops/Cgxfo141"], ["https://tec.openplanner.team/stops/Bgemibb2", "https://tec.openplanner.team/stops/N522acb"], ["https://tec.openplanner.team/stops/N525aed", "https://tec.openplanner.team/stops/N525ala"], ["https://tec.openplanner.team/stops/N501ebz", "https://tec.openplanner.team/stops/N501kbb"], ["https://tec.openplanner.team/stops/H1gg146a", "https://tec.openplanner.team/stops/H1gg146b"], ["https://tec.openplanner.team/stops/N549aea", "https://tec.openplanner.team/stops/N550afb"], ["https://tec.openplanner.team/stops/LaAlinz2", "https://tec.openplanner.team/stops/LaAneul2"], ["https://tec.openplanner.team/stops/Bbealon4", "https://tec.openplanner.team/stops/Bbeascl1"], ["https://tec.openplanner.team/stops/H2ll194a", "https://tec.openplanner.team/stops/H2ll201b"], ["https://tec.openplanner.team/stops/X601caa", "https://tec.openplanner.team/stops/X612aba"], ["https://tec.openplanner.team/stops/H2lh126a", "https://tec.openplanner.team/stops/H2mo146a"], ["https://tec.openplanner.team/stops/LHMa2322", "https://tec.openplanner.team/stops/LHMaube2"], ["https://tec.openplanner.team/stops/Bhevgar1", "https://tec.openplanner.team/stops/Bhevgro2"], ["https://tec.openplanner.team/stops/H1me115a", "https://tec.openplanner.team/stops/H1me115b"], ["https://tec.openplanner.team/stops/Bpelegl2", "https://tec.openplanner.team/stops/Bpelegl4"], ["https://tec.openplanner.team/stops/Lbrchur2", "https://tec.openplanner.team/stops/Llgcorn3"], ["https://tec.openplanner.team/stops/H4mv196a", "https://tec.openplanner.team/stops/H4oe149a"], ["https://tec.openplanner.team/stops/X647aaa", "https://tec.openplanner.team/stops/X647aab"], ["https://tec.openplanner.team/stops/LeLkalt2", "https://tec.openplanner.team/stops/LeLzost2"], ["https://tec.openplanner.team/stops/Blascsl1", "https://tec.openplanner.team/stops/Blasren1"], ["https://tec.openplanner.team/stops/LHAvall1", "https://tec.openplanner.team/stops/LHAvall2"], ["https://tec.openplanner.team/stops/H2hl112a", "https://tec.openplanner.team/stops/H2hp118b"], ["https://tec.openplanner.team/stops/X609ama", "https://tec.openplanner.team/stops/X609ana"], ["https://tec.openplanner.team/stops/LmIkirc2", "https://tec.openplanner.team/stops/LmIzent1"], ["https://tec.openplanner.team/stops/H1br121a", "https://tec.openplanner.team/stops/H1br121b"], ["https://tec.openplanner.team/stops/Lrcastr1", "https://tec.openplanner.team/stops/Lrcastr4"], ["https://tec.openplanner.team/stops/N548aib", "https://tec.openplanner.team/stops/N569ada"], ["https://tec.openplanner.team/stops/LLteg--2", "https://tec.openplanner.team/stops/LLtrout2"], ["https://tec.openplanner.team/stops/N534bva", "https://tec.openplanner.team/stops/N534bvb"], ["https://tec.openplanner.team/stops/N503ala", "https://tec.openplanner.team/stops/N509bga"], ["https://tec.openplanner.team/stops/X834aca", "https://tec.openplanner.team/stops/X834acb"], ["https://tec.openplanner.team/stops/LBRruel1", "https://tec.openplanner.team/stops/LBRruel2"], ["https://tec.openplanner.team/stops/X925ada", "https://tec.openplanner.team/stops/X925ala"], ["https://tec.openplanner.team/stops/Lpecroi2", "https://tec.openplanner.team/stops/Lpevove1"], ["https://tec.openplanner.team/stops/LLAcalv1", "https://tec.openplanner.team/stops/LMgkrui2"], ["https://tec.openplanner.team/stops/X840aaa", "https://tec.openplanner.team/stops/X840agb"], ["https://tec.openplanner.team/stops/LKmcabi1", "https://tec.openplanner.team/stops/LKmcabi2"], ["https://tec.openplanner.team/stops/Bnilpco1", "https://tec.openplanner.team/stops/Bnilwal1"], ["https://tec.openplanner.team/stops/X919ada", "https://tec.openplanner.team/stops/X979ahb"], ["https://tec.openplanner.team/stops/Lkiblan1", "https://tec.openplanner.team/stops/Lkirenk1"], ["https://tec.openplanner.team/stops/H4me213b", "https://tec.openplanner.team/stops/H4mt222a"], ["https://tec.openplanner.team/stops/X664aca", "https://tec.openplanner.team/stops/X664add"], ["https://tec.openplanner.team/stops/X735aca", "https://tec.openplanner.team/stops/X736aja"], ["https://tec.openplanner.team/stops/Bnilpje1", "https://tec.openplanner.team/stops/Bniltri2"], ["https://tec.openplanner.team/stops/LBichat1", "https://tec.openplanner.team/stops/LBieg--3"], ["https://tec.openplanner.team/stops/Cmlgoff2", "https://tec.openplanner.team/stops/Cmlvpla1"], ["https://tec.openplanner.team/stops/LhRwere1", "https://tec.openplanner.team/stops/LhRwere2"], ["https://tec.openplanner.team/stops/N529aaa", "https://tec.openplanner.team/stops/N529aeb"], ["https://tec.openplanner.team/stops/X720aca", "https://tec.openplanner.team/stops/X720aeb"], ["https://tec.openplanner.team/stops/LBzec--2", "https://tec.openplanner.team/stops/LVBchau2"], ["https://tec.openplanner.team/stops/LCxchal1", "https://tec.openplanner.team/stops/LCxreno2"], ["https://tec.openplanner.team/stops/NL37aia", "https://tec.openplanner.team/stops/NL37ajb"], ["https://tec.openplanner.team/stops/Lreclou1", "https://tec.openplanner.team/stops/Lreclou2"], ["https://tec.openplanner.team/stops/N167aab", "https://tec.openplanner.team/stops/N167aga"], ["https://tec.openplanner.team/stops/H1fr113a", "https://tec.openplanner.team/stops/H1lb136b"], ["https://tec.openplanner.team/stops/NR21aga", "https://tec.openplanner.team/stops/NR21aha"], ["https://tec.openplanner.team/stops/Blimd672", "https://tec.openplanner.team/stops/Blimegl2"], ["https://tec.openplanner.team/stops/Lhrlalo2", "https://tec.openplanner.team/stops/Lhrlalo3"], ["https://tec.openplanner.team/stops/H1mb125a", "https://tec.openplanner.team/stops/H1mb130a"], ["https://tec.openplanner.team/stops/H1bo100a", "https://tec.openplanner.team/stops/H1bo109b"], ["https://tec.openplanner.team/stops/Lmitech2", "https://tec.openplanner.team/stops/Lvtcalv2"], ["https://tec.openplanner.team/stops/X363abb", "https://tec.openplanner.team/stops/X363adb"], ["https://tec.openplanner.team/stops/H2sb259a", "https://tec.openplanner.team/stops/H3lr113b"], ["https://tec.openplanner.team/stops/N501hhb", "https://tec.openplanner.team/stops/N501hia"], ["https://tec.openplanner.team/stops/H1ch132a", "https://tec.openplanner.team/stops/H5at131a"], ["https://tec.openplanner.team/stops/X601ana", "https://tec.openplanner.team/stops/X601cda"], ["https://tec.openplanner.team/stops/X750aea", "https://tec.openplanner.team/stops/X780adb"], ["https://tec.openplanner.team/stops/N508ajd", "https://tec.openplanner.team/stops/N513bib"], ["https://tec.openplanner.team/stops/LCxcour2", "https://tec.openplanner.team/stops/LCxfawe1"], ["https://tec.openplanner.team/stops/X812ara", "https://tec.openplanner.team/stops/X812aua"], ["https://tec.openplanner.team/stops/Cmlphai2", "https://tec.openplanner.team/stops/Cmlpomm1"], ["https://tec.openplanner.team/stops/Btgrdoc1", "https://tec.openplanner.team/stops/N584aga"], ["https://tec.openplanner.team/stops/X601bob", "https://tec.openplanner.team/stops/X601dga"], ["https://tec.openplanner.team/stops/LHUfoss*", "https://tec.openplanner.team/stops/NL80aca"], ["https://tec.openplanner.team/stops/Llgfont1", "https://tec.openplanner.team/stops/Llgjose1"], ["https://tec.openplanner.team/stops/LBEssab2", "https://tec.openplanner.team/stops/LPReg--1"], ["https://tec.openplanner.team/stops/N390ada", "https://tec.openplanner.team/stops/X390ana"], ["https://tec.openplanner.team/stops/H1te179b", "https://tec.openplanner.team/stops/H1te186a"], ["https://tec.openplanner.team/stops/LLrpape1", "https://tec.openplanner.team/stops/LLrpape4"], ["https://tec.openplanner.team/stops/LWDeg--2", "https://tec.openplanner.team/stops/LWDsieg1"], ["https://tec.openplanner.team/stops/X660aea", "https://tec.openplanner.team/stops/X840aaa"], ["https://tec.openplanner.team/stops/Bhevgro2", "https://tec.openplanner.team/stops/Bleunaa2"], ["https://tec.openplanner.team/stops/X623aba", "https://tec.openplanner.team/stops/X623acc"], ["https://tec.openplanner.team/stops/X784aha", "https://tec.openplanner.team/stops/X784aia"], ["https://tec.openplanner.team/stops/H5wo125a", "https://tec.openplanner.team/stops/H5wo126a"], ["https://tec.openplanner.team/stops/X899aba", "https://tec.openplanner.team/stops/X899agb"], ["https://tec.openplanner.team/stops/LOV48--1", "https://tec.openplanner.team/stops/LOVchen1"], ["https://tec.openplanner.team/stops/H1ms276a", "https://tec.openplanner.team/stops/H1ms284a"], ["https://tec.openplanner.team/stops/LHTdelh1", "https://tec.openplanner.team/stops/LHTmonu2"], ["https://tec.openplanner.team/stops/X770aea", "https://tec.openplanner.team/stops/X770aeb"], ["https://tec.openplanner.team/stops/LLWmonu2", "https://tec.openplanner.team/stops/LLWpier1"], ["https://tec.openplanner.team/stops/X837aba", "https://tec.openplanner.team/stops/X837acb"], ["https://tec.openplanner.team/stops/Bblapri1", "https://tec.openplanner.team/stops/Bwatali1"], ["https://tec.openplanner.team/stops/Bnilwal2", "https://tec.openplanner.team/stops/Bwspcar1"], ["https://tec.openplanner.team/stops/X614abb", "https://tec.openplanner.team/stops/X614ara"], ["https://tec.openplanner.team/stops/Cmymaco1", "https://tec.openplanner.team/stops/Cmypost2"], ["https://tec.openplanner.team/stops/N501jbb", "https://tec.openplanner.team/stops/N999aab"], ["https://tec.openplanner.team/stops/Bhalcbr1", "https://tec.openplanner.team/stops/Bhalvla1"], ["https://tec.openplanner.team/stops/X902aib", "https://tec.openplanner.team/stops/X992aba"], ["https://tec.openplanner.team/stops/H1ha185b", "https://tec.openplanner.team/stops/H1ha189b"], ["https://tec.openplanner.team/stops/LHUhsar1", "https://tec.openplanner.team/stops/LHUtrin1"], ["https://tec.openplanner.team/stops/X896ada", "https://tec.openplanner.team/stops/X896adb"], ["https://tec.openplanner.team/stops/Bllnald1", "https://tec.openplanner.team/stops/Bllnpeq1"], ["https://tec.openplanner.team/stops/LHNcoll1", "https://tec.openplanner.team/stops/LHNecpr1"], ["https://tec.openplanner.team/stops/N544ada", "https://tec.openplanner.team/stops/N545aab"], ["https://tec.openplanner.team/stops/X870aab", "https://tec.openplanner.team/stops/X880age"], ["https://tec.openplanner.team/stops/H1te190a", "https://tec.openplanner.team/stops/H1vt192a"], ["https://tec.openplanner.team/stops/N501jdb", "https://tec.openplanner.team/stops/N501jfb"], ["https://tec.openplanner.team/stops/LREheyd1", "https://tec.openplanner.team/stops/LREprea1"], ["https://tec.openplanner.team/stops/H1ne139b", "https://tec.openplanner.team/stops/H1ne150b"], ["https://tec.openplanner.team/stops/X654aib", "https://tec.openplanner.team/stops/X654ala"], ["https://tec.openplanner.team/stops/X765aaa", "https://tec.openplanner.team/stops/X765aab"], ["https://tec.openplanner.team/stops/X999aaa", "https://tec.openplanner.team/stops/X999acb"], ["https://tec.openplanner.team/stops/LmNha221", "https://tec.openplanner.team/stops/LmNstaa1"], ["https://tec.openplanner.team/stops/LJedonc3", "https://tec.openplanner.team/stops/LJedonc4"], ["https://tec.openplanner.team/stops/N135aga", "https://tec.openplanner.team/stops/N135aqb"], ["https://tec.openplanner.team/stops/LLAcalv2", "https://tec.openplanner.team/stops/LLApavi1"], ["https://tec.openplanner.team/stops/Lhrcols1", "https://tec.openplanner.team/stops/Lvtboux1"], ["https://tec.openplanner.team/stops/Cchcaya2", "https://tec.openplanner.team/stops/Cchicet1"], ["https://tec.openplanner.team/stops/H4mb140a", "https://tec.openplanner.team/stops/H4mb143d"], ["https://tec.openplanner.team/stops/Lvtauna2", "https://tec.openplanner.team/stops/Lvtlimi2"], ["https://tec.openplanner.team/stops/Btancre1", "https://tec.openplanner.team/stops/Btancre2"], ["https://tec.openplanner.team/stops/LLRbleh2", "https://tec.openplanner.team/stops/LPctrog2"], ["https://tec.openplanner.team/stops/LmHdrei2", "https://tec.openplanner.team/stops/LmHperl1"], ["https://tec.openplanner.team/stops/N214ada", "https://tec.openplanner.team/stops/N214aeb"], ["https://tec.openplanner.team/stops/X617adb", "https://tec.openplanner.team/stops/X617aeb"], ["https://tec.openplanner.team/stops/LGLeg--1", "https://tec.openplanner.team/stops/LGLeg--2"], ["https://tec.openplanner.team/stops/LnDdorf1", "https://tec.openplanner.team/stops/LnDthel1"], ["https://tec.openplanner.team/stops/H1bb119a", "https://tec.openplanner.team/stops/H1do120b"], ["https://tec.openplanner.team/stops/LRRchea1", "https://tec.openplanner.team/stops/LRRchea6"], ["https://tec.openplanner.team/stops/X773aga", "https://tec.openplanner.team/stops/X773aib"], ["https://tec.openplanner.team/stops/N211aca", "https://tec.openplanner.team/stops/N211avb"], ["https://tec.openplanner.team/stops/Bbcoeco1", "https://tec.openplanner.team/stops/Bbcogpl2"], ["https://tec.openplanner.team/stops/LMtegli2", "https://tec.openplanner.team/stops/LMttrou1"], ["https://tec.openplanner.team/stops/H4wu377b", "https://tec.openplanner.team/stops/H4wu420b"], ["https://tec.openplanner.team/stops/Lvealbe2", "https://tec.openplanner.team/stops/Lvevert1"], ["https://tec.openplanner.team/stops/LTatult1", "https://tec.openplanner.team/stops/LTatult2"], ["https://tec.openplanner.team/stops/Bbuzcom2", "https://tec.openplanner.team/stops/Bbuztai1"], ["https://tec.openplanner.team/stops/Ctuhouz1", "https://tec.openplanner.team/stops/Cturoge1"], ["https://tec.openplanner.team/stops/N201afa", "https://tec.openplanner.team/stops/N201afb"], ["https://tec.openplanner.team/stops/Lveherl2", "https://tec.openplanner.team/stops/Lvevieu2"], ["https://tec.openplanner.team/stops/Bblapin2", "https://tec.openplanner.team/stops/Brsg7fo2"], ["https://tec.openplanner.team/stops/Clgpavi1", "https://tec.openplanner.team/stops/Csslesc2"], ["https://tec.openplanner.team/stops/LeYmero2", "https://tec.openplanner.team/stops/LwAschu1"], ["https://tec.openplanner.team/stops/N353aha", "https://tec.openplanner.team/stops/N353ahb"], ["https://tec.openplanner.team/stops/LeUbush1", "https://tec.openplanner.team/stops/LeUgend1"], ["https://tec.openplanner.team/stops/LHUfali2", "https://tec.openplanner.team/stops/LHUfali3"], ["https://tec.openplanner.team/stops/Bwatlbs2", "https://tec.openplanner.team/stops/Bwatle31"], ["https://tec.openplanner.team/stops/H4bw102b", "https://tec.openplanner.team/stops/H4fg116b"], ["https://tec.openplanner.team/stops/X750baa", "https://tec.openplanner.team/stops/X780aia"], ["https://tec.openplanner.team/stops/X633abb", "https://tec.openplanner.team/stops/X653adc"], ["https://tec.openplanner.team/stops/LEnchan1", "https://tec.openplanner.team/stops/NL73ada"], ["https://tec.openplanner.team/stops/H2tr246a", "https://tec.openplanner.team/stops/H2tr254b"], ["https://tec.openplanner.team/stops/NL37aaa", "https://tec.openplanner.team/stops/NL37aob"], ["https://tec.openplanner.team/stops/H1ca100b", "https://tec.openplanner.team/stops/H1ca104a"], ["https://tec.openplanner.team/stops/X657acb", "https://tec.openplanner.team/stops/X657aja"], ["https://tec.openplanner.team/stops/Canmonu3", "https://tec.openplanner.team/stops/Canterr2"], ["https://tec.openplanner.team/stops/LLUalou2", "https://tec.openplanner.team/stops/LLUdoya1"], ["https://tec.openplanner.team/stops/LCnvill1", "https://tec.openplanner.team/stops/LREraph3"], ["https://tec.openplanner.team/stops/H4br109b", "https://tec.openplanner.team/stops/H4pe127b"], ["https://tec.openplanner.team/stops/Bgnpgar1", "https://tec.openplanner.team/stops/Bgnpgar2"], ["https://tec.openplanner.team/stops/Blingar3", "https://tec.openplanner.team/stops/Bpelegl3"], ["https://tec.openplanner.team/stops/X753aab", "https://tec.openplanner.team/stops/X945ada"], ["https://tec.openplanner.team/stops/X725arb", "https://tec.openplanner.team/stops/X725aua"], ["https://tec.openplanner.team/stops/Lchcomm2", "https://tec.openplanner.team/stops/Lchplai2"], ["https://tec.openplanner.team/stops/Cjugohi2", "https://tec.openplanner.team/stops/Cjumarc1"], ["https://tec.openplanner.team/stops/Cclbarb2", "https://tec.openplanner.team/stops/Cclrgiv2"], ["https://tec.openplanner.team/stops/H1tt104a", "https://tec.openplanner.team/stops/H1tt109a"], ["https://tec.openplanner.team/stops/LHUvege1", "https://tec.openplanner.team/stops/LHUvege2"], ["https://tec.openplanner.team/stops/X713afa", "https://tec.openplanner.team/stops/X713agb"], ["https://tec.openplanner.team/stops/X870aca", "https://tec.openplanner.team/stops/X870ada"], ["https://tec.openplanner.team/stops/H4fa125a", "https://tec.openplanner.team/stops/H4fa127a"], ["https://tec.openplanner.team/stops/X662aha", "https://tec.openplanner.team/stops/X662ara"], ["https://tec.openplanner.team/stops/Llgtunn2", "https://tec.openplanner.team/stops/Llgvalu1"], ["https://tec.openplanner.team/stops/Bbaulil2", "https://tec.openplanner.team/stops/Bnivpri2"], ["https://tec.openplanner.team/stops/Bbldvaa1", "https://tec.openplanner.team/stops/Bhevwzw1"], ["https://tec.openplanner.team/stops/Llochar1", "https://tec.openplanner.team/stops/Llochar3"], ["https://tec.openplanner.team/stops/Crajasm3", "https://tec.openplanner.team/stops/Crapaep2"], ["https://tec.openplanner.team/stops/H4co150a", "https://tec.openplanner.team/stops/H4co151a"], ["https://tec.openplanner.team/stops/H4hx110a", "https://tec.openplanner.team/stops/H4hx122b"], ["https://tec.openplanner.team/stops/LBRgend1", "https://tec.openplanner.team/stops/LBRmc--4"], ["https://tec.openplanner.team/stops/X812baa", "https://tec.openplanner.team/stops/X812bab"], ["https://tec.openplanner.team/stops/N516amc", "https://tec.openplanner.team/stops/N516aqb"], ["https://tec.openplanner.team/stops/LnEkirc3", "https://tec.openplanner.team/stops/LnEkirc4"], ["https://tec.openplanner.team/stops/X661aea", "https://tec.openplanner.team/stops/X661aha"], ["https://tec.openplanner.team/stops/H1tt106b", "https://tec.openplanner.team/stops/H1tt107a"], ["https://tec.openplanner.team/stops/LHScite2", "https://tec.openplanner.team/stops/LHSlava2"], ["https://tec.openplanner.team/stops/H2an100a", "https://tec.openplanner.team/stops/H2an100b"], ["https://tec.openplanner.team/stops/Bmrlegl2", "https://tec.openplanner.team/stops/Bnodeco1"], ["https://tec.openplanner.team/stops/N551adb", "https://tec.openplanner.team/stops/N551alb"], ["https://tec.openplanner.team/stops/Canrobe2", "https://tec.openplanner.team/stops/Canrtth2"], ["https://tec.openplanner.team/stops/N539aba", "https://tec.openplanner.team/stops/N539adb"], ["https://tec.openplanner.team/stops/X908aia", "https://tec.openplanner.team/stops/X910aja"], ["https://tec.openplanner.team/stops/NL74ahc", "https://tec.openplanner.team/stops/NL75abb"], ["https://tec.openplanner.team/stops/Bhancom1", "https://tec.openplanner.team/stops/LVParal2"], ["https://tec.openplanner.team/stops/Crbegli1", "https://tec.openplanner.team/stops/Crbegli2"], ["https://tec.openplanner.team/stops/X789aha", "https://tec.openplanner.team/stops/X789ahb"], ["https://tec.openplanner.team/stops/Cfrfede1", "https://tec.openplanner.team/stops/Csdpira1"], ["https://tec.openplanner.team/stops/LVMborl1", "https://tec.openplanner.team/stops/LVMborl2"], ["https://tec.openplanner.team/stops/N106afa", "https://tec.openplanner.team/stops/N106aga"], ["https://tec.openplanner.team/stops/Benimar4", "https://tec.openplanner.team/stops/NR21ajb"], ["https://tec.openplanner.team/stops/N241afb", "https://tec.openplanner.team/stops/N241aga"], ["https://tec.openplanner.team/stops/H4lz125a", "https://tec.openplanner.team/stops/H4lz125b"], ["https://tec.openplanner.team/stops/LSPplat1", "https://tec.openplanner.team/stops/LSPtonn2"], ["https://tec.openplanner.team/stops/X616aeb", "https://tec.openplanner.team/stops/X616ahb"], ["https://tec.openplanner.team/stops/H4br109b", "https://tec.openplanner.team/stops/H4hn114b"], ["https://tec.openplanner.team/stops/X673adb", "https://tec.openplanner.team/stops/X673aea"], ["https://tec.openplanner.team/stops/X721ata", "https://tec.openplanner.team/stops/X721atb"], ["https://tec.openplanner.team/stops/X641ada", "https://tec.openplanner.team/stops/X641adb"], ["https://tec.openplanner.team/stops/LSDheus1", "https://tec.openplanner.team/stops/LSDheus2"], ["https://tec.openplanner.team/stops/X939ada", "https://tec.openplanner.team/stops/X939adb"], ["https://tec.openplanner.team/stops/N110aba", "https://tec.openplanner.team/stops/N123acb"], ["https://tec.openplanner.team/stops/N230afb", "https://tec.openplanner.team/stops/N234adb"], ["https://tec.openplanner.team/stops/Landolh2", "https://tec.openplanner.team/stops/Lanfont1"], ["https://tec.openplanner.team/stops/X952aja", "https://tec.openplanner.team/stops/X952ajb"], ["https://tec.openplanner.team/stops/X666aia", "https://tec.openplanner.team/stops/X666aja"], ["https://tec.openplanner.team/stops/H1by104a", "https://tec.openplanner.team/stops/H1by104b"], ["https://tec.openplanner.team/stops/X796aaa", "https://tec.openplanner.team/stops/X986aca"], ["https://tec.openplanner.team/stops/H4ms144b", "https://tec.openplanner.team/stops/H4ms166b"], ["https://tec.openplanner.team/stops/X820aab", "https://tec.openplanner.team/stops/X820abb"], ["https://tec.openplanner.team/stops/H4lz126b", "https://tec.openplanner.team/stops/H4th142b"], ["https://tec.openplanner.team/stops/N135bba", "https://tec.openplanner.team/stops/N135bha"], ["https://tec.openplanner.team/stops/X941aeb", "https://tec.openplanner.team/stops/X941afb"], ["https://tec.openplanner.team/stops/Lsevecq1", "https://tec.openplanner.team/stops/Lsevecq2"], ["https://tec.openplanner.team/stops/Ccipech1", "https://tec.openplanner.team/stops/Cmttrie2"], ["https://tec.openplanner.team/stops/Llgbry-1", "https://tec.openplanner.team/stops/Lvtboux1"], ["https://tec.openplanner.team/stops/LHoetie2", "https://tec.openplanner.team/stops/LJesole2"], ["https://tec.openplanner.team/stops/X897aja", "https://tec.openplanner.team/stops/X897alc"], ["https://tec.openplanner.team/stops/Bovejme1", "https://tec.openplanner.team/stops/Bovelge2"], ["https://tec.openplanner.team/stops/H4pl114a", "https://tec.openplanner.team/stops/H4pl115a"], ["https://tec.openplanner.team/stops/N229aka", "https://tec.openplanner.team/stops/N229akc"], ["https://tec.openplanner.team/stops/LOTdelv2", "https://tec.openplanner.team/stops/LVlplan2"], ["https://tec.openplanner.team/stops/N514acb", "https://tec.openplanner.team/stops/N514aoa"], ["https://tec.openplanner.team/stops/Bbeacha1", "https://tec.openplanner.team/stops/Bbeamon1"], ["https://tec.openplanner.team/stops/H1hw125b", "https://tec.openplanner.team/stops/H1me117e"], ["https://tec.openplanner.team/stops/LMfbuck2", "https://tec.openplanner.team/stops/LMfeg--2"], ["https://tec.openplanner.team/stops/Lsccdor1", "https://tec.openplanner.team/stops/Lscferr1"], ["https://tec.openplanner.team/stops/H1le117a", "https://tec.openplanner.team/stops/H5is168b"], ["https://tec.openplanner.team/stops/N232bbb", "https://tec.openplanner.team/stops/N232bga"], ["https://tec.openplanner.team/stops/X911aca", "https://tec.openplanner.team/stops/X911ava"], ["https://tec.openplanner.team/stops/LhRandl1", "https://tec.openplanner.team/stops/LhRkirc2"], ["https://tec.openplanner.team/stops/H1hn364a", "https://tec.openplanner.team/stops/H1sp355a"], ["https://tec.openplanner.team/stops/Lseberg1", "https://tec.openplanner.team/stops/Lseberg4"], ["https://tec.openplanner.team/stops/LeUgb--1", "https://tec.openplanner.team/stops/LeUgutl1"], ["https://tec.openplanner.team/stops/H5pe145a", "https://tec.openplanner.team/stops/H5pe145b"], ["https://tec.openplanner.team/stops/NC14aoa", "https://tec.openplanner.team/stops/NC14apb"], ["https://tec.openplanner.team/stops/N506anb", "https://tec.openplanner.team/stops/N506bpb"], ["https://tec.openplanner.team/stops/H4mo133a", "https://tec.openplanner.team/stops/H4rk101b"], ["https://tec.openplanner.team/stops/X805aga", "https://tec.openplanner.team/stops/X807aba"], ["https://tec.openplanner.team/stops/LFMkrut1", "https://tec.openplanner.team/stops/LFPgeme2"], ["https://tec.openplanner.team/stops/Cgycime4", "https://tec.openplanner.team/stops/Cgytrie2"], ["https://tec.openplanner.team/stops/N574aab", "https://tec.openplanner.team/stops/N574adb"], ["https://tec.openplanner.team/stops/LCRvert1", "https://tec.openplanner.team/stops/LKmdrie1"], ["https://tec.openplanner.team/stops/LkEcoop1", "https://tec.openplanner.team/stops/LkEcoop2"], ["https://tec.openplanner.team/stops/LMOm64-1", "https://tec.openplanner.team/stops/LMOpiss1"], ["https://tec.openplanner.team/stops/N528aga", "https://tec.openplanner.team/stops/N528ahb"], ["https://tec.openplanner.team/stops/X869aaa", "https://tec.openplanner.team/stops/X869afb"], ["https://tec.openplanner.team/stops/Cobbusc1", "https://tec.openplanner.team/stops/Cobmven1"], ["https://tec.openplanner.team/stops/Cgocitn1", "https://tec.openplanner.team/stops/Cgocnor1"], ["https://tec.openplanner.team/stops/LeUauto2", "https://tec.openplanner.team/stops/LeUcamp2"], ["https://tec.openplanner.team/stops/Cchoues4", "https://tec.openplanner.team/stops/Cdapige2"], ["https://tec.openplanner.team/stops/H1bo103a", "https://tec.openplanner.team/stops/H1bo103b"], ["https://tec.openplanner.team/stops/H4eq123b", "https://tec.openplanner.team/stops/H4rc231c"], ["https://tec.openplanner.team/stops/H2ma202b", "https://tec.openplanner.team/stops/H2ma205a"], ["https://tec.openplanner.team/stops/LOUbarr1", "https://tec.openplanner.team/stops/LOUherm1"], ["https://tec.openplanner.team/stops/LOreg--2", "https://tec.openplanner.team/stops/LTotrui2"], ["https://tec.openplanner.team/stops/X618ada", "https://tec.openplanner.team/stops/X618aea"], ["https://tec.openplanner.team/stops/X608aca", "https://tec.openplanner.team/stops/X608ajb"], ["https://tec.openplanner.team/stops/N538awb", "https://tec.openplanner.team/stops/N539alb"], ["https://tec.openplanner.team/stops/Lan14ve1", "https://tec.openplanner.team/stops/Lanetie2"], ["https://tec.openplanner.team/stops/X723aba", "https://tec.openplanner.team/stops/X724aga"], ["https://tec.openplanner.team/stops/Cwgcamp2", "https://tec.openplanner.team/stops/Cwgrabi1"], ["https://tec.openplanner.team/stops/LCeanne1", "https://tec.openplanner.team/stops/LCeanne2"], ["https://tec.openplanner.team/stops/LLncime1", "https://tec.openplanner.team/stops/LLnpomp1"], ["https://tec.openplanner.team/stops/Bgisman1", "https://tec.openplanner.team/stops/Bgisman2"], ["https://tec.openplanner.team/stops/LmD163-2", "https://tec.openplanner.team/stops/LmDhoch4"], ["https://tec.openplanner.team/stops/N560aaa", "https://tec.openplanner.team/stops/N560aca"], ["https://tec.openplanner.team/stops/H1ba107b", "https://tec.openplanner.team/stops/H1qu111a"], ["https://tec.openplanner.team/stops/Btlgegl1", "https://tec.openplanner.team/stops/Btlgreg1"], ["https://tec.openplanner.team/stops/N536aeb", "https://tec.openplanner.team/stops/N580aaa"], ["https://tec.openplanner.team/stops/Ldimeun1", "https://tec.openplanner.team/stops/Ldipost1"], ["https://tec.openplanner.team/stops/LARgare3", "https://tec.openplanner.team/stops/LFebas-1"], ["https://tec.openplanner.team/stops/X921ala", "https://tec.openplanner.team/stops/X979aea"], ["https://tec.openplanner.team/stops/Lcegare2", "https://tec.openplanner.team/stops/Lcemc--2"], ["https://tec.openplanner.team/stops/Bmarcat2", "https://tec.openplanner.team/stops/Bmarmru2"], ["https://tec.openplanner.team/stops/N211apb", "https://tec.openplanner.team/stops/N211arb"], ["https://tec.openplanner.team/stops/X547adb", "https://tec.openplanner.team/stops/X547atb"], ["https://tec.openplanner.team/stops/LFEmala1", "https://tec.openplanner.team/stops/LFEplac1"], ["https://tec.openplanner.team/stops/Cplrmon1", "https://tec.openplanner.team/stops/Cplrond1"], ["https://tec.openplanner.team/stops/Bhmmcge2", "https://tec.openplanner.team/stops/Bndbnod2"], ["https://tec.openplanner.team/stops/X638ala", "https://tec.openplanner.team/stops/X638alb"], ["https://tec.openplanner.team/stops/N501epd", "https://tec.openplanner.team/stops/N501etz"], ["https://tec.openplanner.team/stops/LAMmc--2", "https://tec.openplanner.team/stops/LAMwall1"], ["https://tec.openplanner.team/stops/Bbcocou2", "https://tec.openplanner.team/stops/Bbcolno1"], ["https://tec.openplanner.team/stops/N352afa", "https://tec.openplanner.team/stops/N367ada"], ["https://tec.openplanner.team/stops/Ccobinc2", "https://tec.openplanner.team/stops/Ccoforr2"], ["https://tec.openplanner.team/stops/N539abb", "https://tec.openplanner.team/stops/N539afb"], ["https://tec.openplanner.team/stops/X747alb", "https://tec.openplanner.team/stops/X754akb"], ["https://tec.openplanner.team/stops/LMHoha-2", "https://tec.openplanner.team/stops/LWNcham1"], ["https://tec.openplanner.team/stops/N244abc", "https://tec.openplanner.team/stops/N244aca"], ["https://tec.openplanner.team/stops/LsVbell1", "https://tec.openplanner.team/stops/LsVbell2"], ["https://tec.openplanner.team/stops/H4br110a", "https://tec.openplanner.team/stops/H4pe128a"], ["https://tec.openplanner.team/stops/Ljhmany1", "https://tec.openplanner.team/stops/LPoewer1"], ["https://tec.openplanner.team/stops/LRMeg--1", "https://tec.openplanner.team/stops/LRMeg--2"], ["https://tec.openplanner.team/stops/N205aba", "https://tec.openplanner.team/stops/N205adb"], ["https://tec.openplanner.team/stops/LhEcolo2", "https://tec.openplanner.team/stops/LhElont1"], ["https://tec.openplanner.team/stops/X394aaa", "https://tec.openplanner.team/stops/X394aca"], ["https://tec.openplanner.team/stops/Lvelobe2", "https://tec.openplanner.team/stops/Lvepire1"], ["https://tec.openplanner.team/stops/H1as102a", "https://tec.openplanner.team/stops/H1hg178a"], ["https://tec.openplanner.team/stops/X743acb", "https://tec.openplanner.team/stops/X756aaa"], ["https://tec.openplanner.team/stops/N109aia", "https://tec.openplanner.team/stops/N122agb"], ["https://tec.openplanner.team/stops/Bohngai1", "https://tec.openplanner.team/stops/Bohnmon2"], ["https://tec.openplanner.team/stops/N501kid", "https://tec.openplanner.team/stops/N501kkb"], ["https://tec.openplanner.team/stops/LHrbast2", "https://tec.openplanner.team/stops/LHrreal2"], ["https://tec.openplanner.team/stops/H1ci103a", "https://tec.openplanner.team/stops/H1ci105a"], ["https://tec.openplanner.team/stops/X636aha", "https://tec.openplanner.team/stops/X636aja"], ["https://tec.openplanner.team/stops/N501byb", "https://tec.openplanner.team/stops/N501ckb"], ["https://tec.openplanner.team/stops/Cchdigu2", "https://tec.openplanner.team/stops/CMvil2"], ["https://tec.openplanner.team/stops/H4am100a", "https://tec.openplanner.team/stops/H4or115b"], ["https://tec.openplanner.team/stops/N563ana", "https://tec.openplanner.team/stops/N563anb"], ["https://tec.openplanner.team/stops/Lagarde1", "https://tec.openplanner.team/stops/Lagarde2"], ["https://tec.openplanner.team/stops/X641arb", "https://tec.openplanner.team/stops/X641aza"], ["https://tec.openplanner.team/stops/X817adb", "https://tec.openplanner.team/stops/X817afb"], ["https://tec.openplanner.team/stops/N313aeb", "https://tec.openplanner.team/stops/N331ajb"], ["https://tec.openplanner.team/stops/H4ro157b", "https://tec.openplanner.team/stops/H5pe127b"], ["https://tec.openplanner.team/stops/N211aka", "https://tec.openplanner.team/stops/N214aab"], ["https://tec.openplanner.team/stops/Bpthcgo2", "https://tec.openplanner.team/stops/Bpthfus2"], ["https://tec.openplanner.team/stops/H5gr135b", "https://tec.openplanner.team/stops/H5gr138b"], ["https://tec.openplanner.team/stops/H1ni315b", "https://tec.openplanner.team/stops/H1ni320a"], ["https://tec.openplanner.team/stops/Brsgrol1", "https://tec.openplanner.team/stops/Brsgter1"], ["https://tec.openplanner.team/stops/Ljejoli1", "https://tec.openplanner.team/stops/Ljejoli2"], ["https://tec.openplanner.team/stops/N301aka", "https://tec.openplanner.team/stops/X301ara"], ["https://tec.openplanner.team/stops/N526aeb", "https://tec.openplanner.team/stops/N527aba"], ["https://tec.openplanner.team/stops/LmUkape2", "https://tec.openplanner.team/stops/LmUzent2"], ["https://tec.openplanner.team/stops/LSZarbe1", "https://tec.openplanner.team/stops/LTgvill1"], ["https://tec.openplanner.team/stops/H4rx143a", "https://tec.openplanner.team/stops/H4rx175b"], ["https://tec.openplanner.team/stops/N577abb", "https://tec.openplanner.team/stops/N577ada"], ["https://tec.openplanner.team/stops/Llieg--1", "https://tec.openplanner.team/stops/Llieg--4"], ["https://tec.openplanner.team/stops/Lhrdelv2", "https://tec.openplanner.team/stops/Lhrstev2"], ["https://tec.openplanner.team/stops/H1mm126a", "https://tec.openplanner.team/stops/H1mm131b"], ["https://tec.openplanner.team/stops/Brixaug1", "https://tec.openplanner.team/stops/Brixpro3"], ["https://tec.openplanner.team/stops/H5rx125a", "https://tec.openplanner.team/stops/H5rx125b"], ["https://tec.openplanner.team/stops/X654ala", "https://tec.openplanner.team/stops/X654alb"], ["https://tec.openplanner.team/stops/LRemorr1", "https://tec.openplanner.team/stops/LRemorr4"], ["https://tec.openplanner.team/stops/X754aqa", "https://tec.openplanner.team/stops/X754arb"], ["https://tec.openplanner.team/stops/Bbchcbl1", "https://tec.openplanner.team/stops/Bbchndb1"], ["https://tec.openplanner.team/stops/Lhubarl2", "https://tec.openplanner.team/stops/Lmnrame1"], ["https://tec.openplanner.team/stops/H1ms280d", "https://tec.openplanner.team/stops/H1ms400d"], ["https://tec.openplanner.team/stops/Bjodced2", "https://tec.openplanner.team/stops/NR10aca"], ["https://tec.openplanner.team/stops/Lenauln2", "https://tec.openplanner.team/stops/Lenhouc1"], ["https://tec.openplanner.team/stops/Cluchbl4", "https://tec.openplanner.team/stops/Cpcndce2"], ["https://tec.openplanner.team/stops/LSTchef2", "https://tec.openplanner.team/stops/LSTcomm2"], ["https://tec.openplanner.team/stops/Btancnd2", "https://tec.openplanner.team/stops/Bvlvbth2"], ["https://tec.openplanner.team/stops/Cfrmoul2", "https://tec.openplanner.team/stops/Cfrplac1"], ["https://tec.openplanner.team/stops/LBApak2*", "https://tec.openplanner.team/stops/LSAmous1"], ["https://tec.openplanner.team/stops/Bcsemon1", "https://tec.openplanner.team/stops/Bcsemon2"], ["https://tec.openplanner.team/stops/H4fo116b", "https://tec.openplanner.team/stops/H4vz369b"], ["https://tec.openplanner.team/stops/LNIdoma2", "https://tec.openplanner.team/stops/LSPwarf2"], ["https://tec.openplanner.team/stops/Cgy4bra2", "https://tec.openplanner.team/stops/Cgygazo8"], ["https://tec.openplanner.team/stops/LbUbisc1", "https://tec.openplanner.team/stops/LbUpost1"], ["https://tec.openplanner.team/stops/H4ne135b", "https://tec.openplanner.team/stops/H4te260b"], ["https://tec.openplanner.team/stops/LLYcalv2", "https://tec.openplanner.team/stops/LTOcime1"], ["https://tec.openplanner.team/stops/N170aea", "https://tec.openplanner.team/stops/N170aeb"], ["https://tec.openplanner.team/stops/H2mo129a", "https://tec.openplanner.team/stops/H2mo143b"], ["https://tec.openplanner.team/stops/LhEcolo1", "https://tec.openplanner.team/stops/LhEklos2"], ["https://tec.openplanner.team/stops/LhIkirc*", "https://tec.openplanner.team/stops/LPutins2"], ["https://tec.openplanner.team/stops/Cmlcaya1", "https://tec.openplanner.team/stops/Cmllait2"], ["https://tec.openplanner.team/stops/Brsrber1", "https://tec.openplanner.team/stops/Brsrber2"], ["https://tec.openplanner.team/stops/H4ty308a", "https://tec.openplanner.team/stops/H4ty308d"], ["https://tec.openplanner.team/stops/H4fa124a", "https://tec.openplanner.team/stops/H4fa125a"], ["https://tec.openplanner.team/stops/H4bo179b", "https://tec.openplanner.team/stops/H4gr110b"], ["https://tec.openplanner.team/stops/LSSjeun1", "https://tec.openplanner.team/stops/LSSvill3"], ["https://tec.openplanner.team/stops/NR21aib", "https://tec.openplanner.team/stops/NR38aba"], ["https://tec.openplanner.team/stops/X664acb", "https://tec.openplanner.team/stops/X664adc"], ["https://tec.openplanner.team/stops/X921acb", "https://tec.openplanner.team/stops/X921apa"], ["https://tec.openplanner.team/stops/H1sy139b", "https://tec.openplanner.team/stops/H1sy140b"], ["https://tec.openplanner.team/stops/LBImili2", "https://tec.openplanner.team/stops/Lmltrix*"], ["https://tec.openplanner.team/stops/Cgzchab1", "https://tec.openplanner.team/stops/Cgzfarc1"], ["https://tec.openplanner.team/stops/Lsntvbi2", "https://tec.openplanner.team/stops/Lsntvbi3"], ["https://tec.openplanner.team/stops/LbUwirt1", "https://tec.openplanner.team/stops/LwR129-1"], ["https://tec.openplanner.team/stops/LACeg--1", "https://tec.openplanner.team/stops/NL74aja"], ["https://tec.openplanner.team/stops/H4hu121b", "https://tec.openplanner.team/stops/H4og207b"], ["https://tec.openplanner.team/stops/X307ada", "https://tec.openplanner.team/stops/X307adb"], ["https://tec.openplanner.team/stops/LLreque2", "https://tec.openplanner.team/stops/LLrmc--3"], ["https://tec.openplanner.team/stops/X908aoa", "https://tec.openplanner.team/stops/X955aca"], ["https://tec.openplanner.team/stops/LHaodei2", "https://tec.openplanner.team/stops/LOurena2"], ["https://tec.openplanner.team/stops/Cmmschw1", "https://tec.openplanner.team/stops/Cmmschw2"], ["https://tec.openplanner.team/stops/Cfawain2", "https://tec.openplanner.team/stops/Cfawain4"], ["https://tec.openplanner.team/stops/Llglema3", "https://tec.openplanner.team/stops/Llgrome2"], ["https://tec.openplanner.team/stops/N124aaa", "https://tec.openplanner.team/stops/N125abb"], ["https://tec.openplanner.team/stops/N501hka", "https://tec.openplanner.team/stops/N501hkb"], ["https://tec.openplanner.team/stops/LLYcham1", "https://tec.openplanner.team/stops/LLYplac1"], ["https://tec.openplanner.team/stops/Btsllec1", "https://tec.openplanner.team/stops/Bwspspa1"], ["https://tec.openplanner.team/stops/X671aab", "https://tec.openplanner.team/stops/X671aba"], ["https://tec.openplanner.team/stops/Cmadeli2", "https://tec.openplanner.team/stops/Cmahotv1"], ["https://tec.openplanner.team/stops/Cgxchan1", "https://tec.openplanner.team/stops/Cgxpair1"], ["https://tec.openplanner.team/stops/N115aaa", "https://tec.openplanner.team/stops/N115aeb"], ["https://tec.openplanner.team/stops/H3br107a", "https://tec.openplanner.team/stops/H3br107b"], ["https://tec.openplanner.team/stops/H1pw120a", "https://tec.openplanner.team/stops/H1wa146b"], ["https://tec.openplanner.team/stops/N501isa", "https://tec.openplanner.team/stops/N501isb"], ["https://tec.openplanner.team/stops/N501goa", "https://tec.openplanner.team/stops/N501lsb"], ["https://tec.openplanner.team/stops/Cjucopp1", "https://tec.openplanner.team/stops/Cjugill6"], ["https://tec.openplanner.team/stops/N547aja", "https://tec.openplanner.team/stops/N573apb"], ["https://tec.openplanner.team/stops/H4ty281a", "https://tec.openplanner.team/stops/H4ty307b"], ["https://tec.openplanner.team/stops/LhDkreu2", "https://tec.openplanner.team/stops/LhDkreu4"], ["https://tec.openplanner.team/stops/Canstat1", "https://tec.openplanner.team/stops/Canstat2"], ["https://tec.openplanner.team/stops/Brsgm301", "https://tec.openplanner.team/stops/Brsgm801"], ["https://tec.openplanner.team/stops/H1ge115a", "https://tec.openplanner.team/stops/H1ge179b"], ["https://tec.openplanner.team/stops/Cradest1", "https://tec.openplanner.team/stops/Crasabl1"], ["https://tec.openplanner.team/stops/H3so176a", "https://tec.openplanner.team/stops/H3so178a"], ["https://tec.openplanner.team/stops/Lpechin2", "https://tec.openplanner.team/stops/Lpeptle2"], ["https://tec.openplanner.team/stops/X662aqa", "https://tec.openplanner.team/stops/X662ara"], ["https://tec.openplanner.team/stops/H1ls130a", "https://tec.openplanner.team/stops/H1mm122c"], ["https://tec.openplanner.team/stops/N538aea", "https://tec.openplanner.team/stops/N538ajb"], ["https://tec.openplanner.team/stops/Bwatmgo4", "https://tec.openplanner.team/stops/Bwatms09"], ["https://tec.openplanner.team/stops/H4tu170a", "https://tec.openplanner.team/stops/H4wr174a"], ["https://tec.openplanner.team/stops/LSZroqu1", "https://tec.openplanner.team/stops/LSZroqu2"], ["https://tec.openplanner.team/stops/H4mb203a", "https://tec.openplanner.team/stops/H4vd230b"], ["https://tec.openplanner.team/stops/LaAzwei1", "https://tec.openplanner.team/stops/LhSfrei1"], ["https://tec.openplanner.team/stops/Brebblo1", "https://tec.openplanner.team/stops/Brebras1"], ["https://tec.openplanner.team/stops/H5st164a", "https://tec.openplanner.team/stops/H5st167a"], ["https://tec.openplanner.team/stops/Llithon1", "https://tec.openplanner.team/stops/Lvochev2"], ["https://tec.openplanner.team/stops/LkEcoop2", "https://tec.openplanner.team/stops/LkEgend2"], ["https://tec.openplanner.team/stops/Cgocalv4", "https://tec.openplanner.team/stops/Cgofabr2"], ["https://tec.openplanner.team/stops/Loucent1", "https://tec.openplanner.team/stops/Lougoff2"], ["https://tec.openplanner.team/stops/LATabba2", "https://tec.openplanner.team/stops/LATdieu1"], ["https://tec.openplanner.team/stops/Cmlhotv1", "https://tec.openplanner.team/stops/Cmlhotv2"], ["https://tec.openplanner.team/stops/X666aaa", "https://tec.openplanner.team/stops/X666agb"], ["https://tec.openplanner.team/stops/Cchcaya1", "https://tec.openplanner.team/stops/Clodrio3"], ["https://tec.openplanner.team/stops/N229aha", "https://tec.openplanner.team/stops/N291aaa"], ["https://tec.openplanner.team/stops/Bnilcim1", "https://tec.openplanner.team/stops/Bnilreg2"], ["https://tec.openplanner.team/stops/Bbiemse1", "https://tec.openplanner.team/stops/Bgzddmo2"], ["https://tec.openplanner.team/stops/LlChebs1", "https://tec.openplanner.team/stops/LrAmuhl1"], ["https://tec.openplanner.team/stops/X347ajb", "https://tec.openplanner.team/stops/X891acb"], ["https://tec.openplanner.team/stops/LBEoblu2", "https://tec.openplanner.team/stops/Lcacris2"], ["https://tec.openplanner.team/stops/X937ajb", "https://tec.openplanner.team/stops/X952ajb"], ["https://tec.openplanner.team/stops/N501avb", "https://tec.openplanner.team/stops/N501mua"], ["https://tec.openplanner.team/stops/Bnodblt1", "https://tec.openplanner.team/stops/Boplcsj2"], ["https://tec.openplanner.team/stops/Cfmchap1", "https://tec.openplanner.team/stops/Cfmgrmo2"], ["https://tec.openplanner.team/stops/Cfaecwa1", "https://tec.openplanner.team/stops/Cfawain1"], ["https://tec.openplanner.team/stops/X907aea", "https://tec.openplanner.team/stops/X907aia"], ["https://tec.openplanner.team/stops/X659aka", "https://tec.openplanner.team/stops/X659ama"], ["https://tec.openplanner.team/stops/N308aza", "https://tec.openplanner.team/stops/N311aea"], ["https://tec.openplanner.team/stops/X358acb", "https://tec.openplanner.team/stops/X358acd"], ["https://tec.openplanner.team/stops/Bcsebea3", "https://tec.openplanner.team/stops/Bmsgpap2"], ["https://tec.openplanner.team/stops/H2bh117b", "https://tec.openplanner.team/stops/H2bh119b"], ["https://tec.openplanner.team/stops/LeUarno2", "https://tec.openplanner.team/stops/LeUclou1"], ["https://tec.openplanner.team/stops/LBrmeiz1", "https://tec.openplanner.team/stops/LMici091"], ["https://tec.openplanner.team/stops/X790alb", "https://tec.openplanner.team/stops/X790amb"], ["https://tec.openplanner.team/stops/LAnchat1", "https://tec.openplanner.team/stops/LAnchat2"], ["https://tec.openplanner.team/stops/Lsecoop1", "https://tec.openplanner.team/stops/Lseresi1"], ["https://tec.openplanner.team/stops/LXoharz6", "https://tec.openplanner.team/stops/LXoroch1"], ["https://tec.openplanner.team/stops/H4ht173b", "https://tec.openplanner.team/stops/H4la196b"], ["https://tec.openplanner.team/stops/X640atb", "https://tec.openplanner.team/stops/X640aub"], ["https://tec.openplanner.team/stops/X663axa", "https://tec.openplanner.team/stops/X663aya"], ["https://tec.openplanner.team/stops/N230alb", "https://tec.openplanner.team/stops/N234aba"], ["https://tec.openplanner.team/stops/Lbrnanc2", "https://tec.openplanner.team/stops/Llgplai2"], ["https://tec.openplanner.team/stops/Clulidl1", "https://tec.openplanner.team/stops/Cvvcime2"], ["https://tec.openplanner.team/stops/Cblsall2", "https://tec.openplanner.team/stops/Crbreve2"], ["https://tec.openplanner.team/stops/X746aga", "https://tec.openplanner.team/stops/X746agd"], ["https://tec.openplanner.team/stops/N501cob", "https://tec.openplanner.team/stops/N501csb"], ["https://tec.openplanner.team/stops/Cobcent2", "https://tec.openplanner.team/stops/Cobmven1"], ["https://tec.openplanner.team/stops/Bblasse2", "https://tec.openplanner.team/stops/Bblasta1"], ["https://tec.openplanner.team/stops/N543cla", "https://tec.openplanner.team/stops/N543clb"], ["https://tec.openplanner.team/stops/Lfhbail1", "https://tec.openplanner.team/stops/Lsecris3"], ["https://tec.openplanner.team/stops/X952abb", "https://tec.openplanner.team/stops/X952aia"], ["https://tec.openplanner.team/stops/X316abb", "https://tec.openplanner.team/stops/X318aca"], ["https://tec.openplanner.team/stops/Bjodfco1", "https://tec.openplanner.team/stops/Bjodfco2"], ["https://tec.openplanner.team/stops/LdUespe2", "https://tec.openplanner.team/stops/LdUespe3"], ["https://tec.openplanner.team/stops/N201aab", "https://tec.openplanner.team/stops/N201aja"], ["https://tec.openplanner.team/stops/X937aaa", "https://tec.openplanner.team/stops/X937aga"], ["https://tec.openplanner.team/stops/LbUjost2", "https://tec.openplanner.team/stops/LkRrauw1"], ["https://tec.openplanner.team/stops/Cgzmarb1", "https://tec.openplanner.team/stops/Cgzvivi1"], ["https://tec.openplanner.team/stops/Cgxprad1", "https://tec.openplanner.team/stops/Cgxptt1"], ["https://tec.openplanner.team/stops/N118aua", "https://tec.openplanner.team/stops/N118avb"], ["https://tec.openplanner.team/stops/N543bka", "https://tec.openplanner.team/stops/N543cbc"], ["https://tec.openplanner.team/stops/Ccoforr2", "https://tec.openplanner.team/stops/Crocpai2"], ["https://tec.openplanner.team/stops/Lvtnico1", "https://tec.openplanner.team/stops/Lvtnico2"], ["https://tec.openplanner.team/stops/Bgrmfga1", "https://tec.openplanner.team/stops/Bgrmfga2"], ["https://tec.openplanner.team/stops/NL68aab", "https://tec.openplanner.team/stops/NL68aeb"], ["https://tec.openplanner.team/stops/LaLkirc*", "https://tec.openplanner.team/stops/X793afb"], ["https://tec.openplanner.team/stops/N526aba", "https://tec.openplanner.team/stops/N526abb"], ["https://tec.openplanner.team/stops/Lflrhot1", "https://tec.openplanner.team/stops/Lre3che1"], ["https://tec.openplanner.team/stops/Lcacaps1", "https://tec.openplanner.team/stops/Lcalaro1"], ["https://tec.openplanner.team/stops/Ctrsema1", "https://tec.openplanner.team/stops/H2tz115b"], ["https://tec.openplanner.team/stops/Cpljonc1", "https://tec.openplanner.team/stops/Cplrymo2"], ["https://tec.openplanner.team/stops/N141aoa", "https://tec.openplanner.team/stops/N146aab"], ["https://tec.openplanner.team/stops/Bquecge2", "https://tec.openplanner.team/stops/Bquevel1"], ["https://tec.openplanner.team/stops/LHUfali1", "https://tec.openplanner.team/stops/LHUresi3"], ["https://tec.openplanner.team/stops/H1cu122b", "https://tec.openplanner.team/stops/H1cu127a"], ["https://tec.openplanner.team/stops/H4mo190b", "https://tec.openplanner.team/stops/H4mo192a"], ["https://tec.openplanner.team/stops/Csecarr2", "https://tec.openplanner.team/stops/Csecout1"], ["https://tec.openplanner.team/stops/N125aca", "https://tec.openplanner.team/stops/N154acb"], ["https://tec.openplanner.team/stops/Lvehauz2", "https://tec.openplanner.team/stops/Lvehauz3"], ["https://tec.openplanner.team/stops/Lsebuil1", "https://tec.openplanner.team/stops/Lsebuil2"], ["https://tec.openplanner.team/stops/Bettgle2", "https://tec.openplanner.team/stops/Bettlha2"], ["https://tec.openplanner.team/stops/Lghcoqs1", "https://tec.openplanner.team/stops/Lghleon2"], ["https://tec.openplanner.team/stops/Bcrnrpc1", "https://tec.openplanner.team/stops/Bcrnrpc2"], ["https://tec.openplanner.team/stops/LMRmont1", "https://tec.openplanner.team/stops/LMRmont2"], ["https://tec.openplanner.team/stops/X804bza", "https://tec.openplanner.team/stops/X804bzb"], ["https://tec.openplanner.team/stops/LHhelia1", "https://tec.openplanner.team/stops/LHhvivi1"], ["https://tec.openplanner.team/stops/LJUmc--2", "https://tec.openplanner.team/stops/LVSslin3"], ["https://tec.openplanner.team/stops/Cjuspin2", "https://tec.openplanner.team/stops/Cjuunio1"], ["https://tec.openplanner.team/stops/H2ch108b", "https://tec.openplanner.team/stops/H2ch123c"], ["https://tec.openplanner.team/stops/Cmlasie1", "https://tec.openplanner.team/stops/Cmlstni1"], ["https://tec.openplanner.team/stops/Bgoegma1", "https://tec.openplanner.team/stops/Bgoestu2"], ["https://tec.openplanner.team/stops/Bbst4br2", "https://tec.openplanner.team/stops/Csdetan1"], ["https://tec.openplanner.team/stops/H1ma230a", "https://tec.openplanner.team/stops/H1ob333b"], ["https://tec.openplanner.team/stops/H2le146a", "https://tec.openplanner.team/stops/H2le176b"], ["https://tec.openplanner.team/stops/X741aha", "https://tec.openplanner.team/stops/X741apa"], ["https://tec.openplanner.team/stops/H4fr389a", "https://tec.openplanner.team/stops/H4fr393a"], ["https://tec.openplanner.team/stops/Lhrdron1", "https://tec.openplanner.team/stops/Lhrdron2"], ["https://tec.openplanner.team/stops/X636aib", "https://tec.openplanner.team/stops/X636amb"], ["https://tec.openplanner.team/stops/Becepri2", "https://tec.openplanner.team/stops/H2ec108a"], ["https://tec.openplanner.team/stops/X307aaa", "https://tec.openplanner.team/stops/X307aab"], ["https://tec.openplanner.team/stops/N562aia", "https://tec.openplanner.team/stops/N562atb"], ["https://tec.openplanner.team/stops/LeUbael2", "https://tec.openplanner.team/stops/LhEauto2"], ["https://tec.openplanner.team/stops/Bgnpegl3", "https://tec.openplanner.team/stops/Bgnppem1"], ["https://tec.openplanner.team/stops/Cbetrie1", "https://tec.openplanner.team/stops/Ccstord1"], ["https://tec.openplanner.team/stops/X870agb", "https://tec.openplanner.team/stops/X882aga"], ["https://tec.openplanner.team/stops/Lglmoul1", "https://tec.openplanner.team/stops/Lmochar1"], ["https://tec.openplanner.team/stops/Lmlcher1", "https://tec.openplanner.team/stops/Lmlmaqu4"], ["https://tec.openplanner.team/stops/X748afa", "https://tec.openplanner.team/stops/X769aga"], ["https://tec.openplanner.team/stops/LVAflat2", "https://tec.openplanner.team/stops/LVApark1"], ["https://tec.openplanner.team/stops/H4li179a", "https://tec.openplanner.team/stops/H4li179c"], ["https://tec.openplanner.team/stops/LmYwall1", "https://tec.openplanner.team/stops/LnEleje2"], ["https://tec.openplanner.team/stops/LMOeg--1", "https://tec.openplanner.team/stops/LMOelva1"], ["https://tec.openplanner.team/stops/N528aaa", "https://tec.openplanner.team/stops/N551aaa"], ["https://tec.openplanner.team/stops/LeUjuge2", "https://tec.openplanner.team/stops/LeUolen2"], ["https://tec.openplanner.team/stops/Crecouc2", "https://tec.openplanner.team/stops/Creshau2"], ["https://tec.openplanner.team/stops/X618aea", "https://tec.openplanner.team/stops/X618aeb"], ["https://tec.openplanner.team/stops/N101apb", "https://tec.openplanner.team/stops/N151aab"], ["https://tec.openplanner.team/stops/Brsgepr1", "https://tec.openplanner.team/stops/Brsggea2"], ["https://tec.openplanner.team/stops/H1ms284a", "https://tec.openplanner.team/stops/H1ms905a"], ["https://tec.openplanner.team/stops/Lvcecol1", "https://tec.openplanner.team/stops/Lvcreve1"], ["https://tec.openplanner.team/stops/Bglibui1", "https://tec.openplanner.team/stops/Bjdsjso2"], ["https://tec.openplanner.team/stops/X801awa", "https://tec.openplanner.team/stops/X801aza"], ["https://tec.openplanner.team/stops/N565aka", "https://tec.openplanner.team/stops/N565alb"], ["https://tec.openplanner.team/stops/Bfelcen1", "https://tec.openplanner.team/stops/Bfelpla2"], ["https://tec.openplanner.team/stops/Bblavhu2", "https://tec.openplanner.team/stops/Bwatwsc1"], ["https://tec.openplanner.team/stops/N894aca", "https://tec.openplanner.team/stops/N894acb"], ["https://tec.openplanner.team/stops/N569aeb", "https://tec.openplanner.team/stops/N569afb"], ["https://tec.openplanner.team/stops/Bcseeco1", "https://tec.openplanner.team/stops/Bcseeco3"], ["https://tec.openplanner.team/stops/Bmlncha2", "https://tec.openplanner.team/stops/Bmlngvi2"], ["https://tec.openplanner.team/stops/LOdmonu1", "https://tec.openplanner.team/stops/LVlleme1"], ["https://tec.openplanner.team/stops/N513adb", "https://tec.openplanner.team/stops/N513bbd"], ["https://tec.openplanner.team/stops/LaAneul2", "https://tec.openplanner.team/stops/LaAzwei2"], ["https://tec.openplanner.team/stops/X608aqa", "https://tec.openplanner.team/stops/X608aza"], ["https://tec.openplanner.team/stops/Cdametr1", "https://tec.openplanner.team/stops/Cdaviol1"], ["https://tec.openplanner.team/stops/Cmychau2", "https://tec.openplanner.team/stops/Cmypast1"], ["https://tec.openplanner.team/stops/X982aqa", "https://tec.openplanner.team/stops/X982aqc"], ["https://tec.openplanner.team/stops/Bwbfbon1", "https://tec.openplanner.team/stops/Bwbfbon2"], ["https://tec.openplanner.team/stops/LSktinc1", "https://tec.openplanner.team/stops/LSkwarf2"], ["https://tec.openplanner.team/stops/Lseathe1", "https://tec.openplanner.team/stops/Lseathe2"], ["https://tec.openplanner.team/stops/LMAhall1", "https://tec.openplanner.team/stops/LMAhall2"], ["https://tec.openplanner.team/stops/H4ka392a", "https://tec.openplanner.team/stops/H4ka394a"], ["https://tec.openplanner.team/stops/LSPbalm1", "https://tec.openplanner.team/stops/LSPpelz1"], ["https://tec.openplanner.team/stops/LHarenn3", "https://tec.openplanner.team/stops/LHarenn4"], ["https://tec.openplanner.team/stops/Bmalper1", "https://tec.openplanner.team/stops/Bmalper2"], ["https://tec.openplanner.team/stops/Chpcarp1", "https://tec.openplanner.team/stops/Chprobi1"], ["https://tec.openplanner.team/stops/N242aeb", "https://tec.openplanner.team/stops/N243ada"], ["https://tec.openplanner.team/stops/N530aga", "https://tec.openplanner.team/stops/N530ahb"], ["https://tec.openplanner.team/stops/H1ca109a", "https://tec.openplanner.team/stops/H1ca184a"], ["https://tec.openplanner.team/stops/X609ahb", "https://tec.openplanner.team/stops/X610abb"], ["https://tec.openplanner.team/stops/LHUtrin1", "https://tec.openplanner.team/stops/LTiespe4"], ["https://tec.openplanner.team/stops/N120aoc", "https://tec.openplanner.team/stops/N340abb"], ["https://tec.openplanner.team/stops/LgRhouf1", "https://tec.openplanner.team/stops/LgRhouf2"], ["https://tec.openplanner.team/stops/Boveker2", "https://tec.openplanner.team/stops/Bovetwe2"], ["https://tec.openplanner.team/stops/LSHhade1", "https://tec.openplanner.team/stops/LSHneuv1"], ["https://tec.openplanner.team/stops/Cwgpatr1", "https://tec.openplanner.team/stops/Cwgtill2"], ["https://tec.openplanner.team/stops/H1ca101a", "https://tec.openplanner.team/stops/H1sd344b"], ["https://tec.openplanner.team/stops/LBRpier2", "https://tec.openplanner.team/stops/LLRrape4"], ["https://tec.openplanner.team/stops/X601ayb", "https://tec.openplanner.team/stops/X601bra"], ["https://tec.openplanner.team/stops/Btubpla2", "https://tec.openplanner.team/stops/Btubsca1"], ["https://tec.openplanner.team/stops/Bgzdpis1", "https://tec.openplanner.team/stops/Bgzdpis2"], ["https://tec.openplanner.team/stops/N506bdb", "https://tec.openplanner.team/stops/N506bna"], ["https://tec.openplanner.team/stops/H1le127a", "https://tec.openplanner.team/stops/H1le127b"], ["https://tec.openplanner.team/stops/N558aja", "https://tec.openplanner.team/stops/N558ajb"], ["https://tec.openplanner.team/stops/LEnvill2", "https://tec.openplanner.team/stops/NL73aca"], ["https://tec.openplanner.team/stops/Bgrmfon1", "https://tec.openplanner.team/stops/N522akb"], ["https://tec.openplanner.team/stops/LkAbahn*", "https://tec.openplanner.team/stops/LmTreic1"], ["https://tec.openplanner.team/stops/LlgLAMB5", "https://tec.openplanner.team/stops/LlgR-Fr3"], ["https://tec.openplanner.team/stops/X801aja", "https://tec.openplanner.team/stops/X801alb"], ["https://tec.openplanner.team/stops/N151aja", "https://tec.openplanner.team/stops/N151ajf"], ["https://tec.openplanner.team/stops/Canmonu5", "https://tec.openplanner.team/stops/Canrsta1"], ["https://tec.openplanner.team/stops/Lceourt1", "https://tec.openplanner.team/stops/Lcepoul1"], ["https://tec.openplanner.team/stops/H2mi124a", "https://tec.openplanner.team/stops/H2mi124b"], ["https://tec.openplanner.team/stops/Lousite1", "https://tec.openplanner.team/stops/Lousite4"], ["https://tec.openplanner.team/stops/Llgnico2", "https://tec.openplanner.team/stops/Lsnlibe2"], ["https://tec.openplanner.team/stops/N501hsy", "https://tec.openplanner.team/stops/N501ida"], ["https://tec.openplanner.team/stops/Cfrmonu1", "https://tec.openplanner.team/stops/Cfrmonu5"], ["https://tec.openplanner.team/stops/LAieg--2", "https://tec.openplanner.team/stops/LENalun1"], ["https://tec.openplanner.team/stops/LJesole1", "https://tec.openplanner.team/stops/LJetrih1"], ["https://tec.openplanner.team/stops/N501daa", "https://tec.openplanner.team/stops/N501mua"], ["https://tec.openplanner.team/stops/Cgxchea2", "https://tec.openplanner.team/stops/Cgxdeba2"], ["https://tec.openplanner.team/stops/X742aba", "https://tec.openplanner.team/stops/X742acb"], ["https://tec.openplanner.team/stops/N232bab", "https://tec.openplanner.team/stops/N232bra"], ["https://tec.openplanner.team/stops/N231agb", "https://tec.openplanner.team/stops/N242adc"], ["https://tec.openplanner.team/stops/Lhrbass2", "https://tec.openplanner.team/stops/Lhrhenr1"], ["https://tec.openplanner.team/stops/H4ka174a", "https://tec.openplanner.team/stops/H4ka192b"], ["https://tec.openplanner.team/stops/Cgocat1", "https://tec.openplanner.team/stops/Cgorobe1"], ["https://tec.openplanner.team/stops/Lsestap2", "https://tec.openplanner.team/stops/Lsevill1"], ["https://tec.openplanner.team/stops/X923ada", "https://tec.openplanner.team/stops/X923ara"], ["https://tec.openplanner.team/stops/X743aaa", "https://tec.openplanner.team/stops/X743abb"], ["https://tec.openplanner.team/stops/Cdamare2", "https://tec.openplanner.team/stops/Cdamest2"], ["https://tec.openplanner.team/stops/Cgylouv2", "https://tec.openplanner.team/stops/Cgymetr1"], ["https://tec.openplanner.team/stops/LmIkirc1", "https://tec.openplanner.team/stops/LmIzent1"], ["https://tec.openplanner.team/stops/LGesent1", "https://tec.openplanner.team/stops/LMschap1"], ["https://tec.openplanner.team/stops/X908aaa", "https://tec.openplanner.team/stops/X908ala"], ["https://tec.openplanner.team/stops/NH01alb", "https://tec.openplanner.team/stops/NH01apb"], ["https://tec.openplanner.team/stops/X901bca", "https://tec.openplanner.team/stops/X943acb"], ["https://tec.openplanner.team/stops/LMibouv3", "https://tec.openplanner.team/stops/LMisour2"], ["https://tec.openplanner.team/stops/N149ahb", "https://tec.openplanner.team/stops/N149aia"], ["https://tec.openplanner.team/stops/H1qu102b", "https://tec.openplanner.team/stops/H1qu107b"], ["https://tec.openplanner.team/stops/H1bo108d", "https://tec.openplanner.team/stops/H1bo112b"], ["https://tec.openplanner.team/stops/Ccppn1", "https://tec.openplanner.team/stops/H2ch110b"], ["https://tec.openplanner.team/stops/Lfhchaf*", "https://tec.openplanner.team/stops/Lfhchaf2"], ["https://tec.openplanner.team/stops/X637aea", "https://tec.openplanner.team/stops/X637aka"], ["https://tec.openplanner.team/stops/N131aha", "https://tec.openplanner.team/stops/N132adb"], ["https://tec.openplanner.team/stops/LWAlieg1", "https://tec.openplanner.team/stops/LWAvisi2"], ["https://tec.openplanner.team/stops/Barqbco1", "https://tec.openplanner.team/stops/Bmoncab2"], ["https://tec.openplanner.team/stops/H4ty301b", "https://tec.openplanner.team/stops/H4ty301d"], ["https://tec.openplanner.team/stops/LFFchab1", "https://tec.openplanner.team/stops/LVLf37-1"], ["https://tec.openplanner.team/stops/X886ada", "https://tec.openplanner.team/stops/X886aea"], ["https://tec.openplanner.team/stops/LPobois2", "https://tec.openplanner.team/stops/LTgjalh2"], ["https://tec.openplanner.team/stops/LAo161-1", "https://tec.openplanner.team/stops/LTPwann1"], ["https://tec.openplanner.team/stops/Brebrha1", "https://tec.openplanner.team/stops/Brebvic2"], ["https://tec.openplanner.team/stops/LHFappe2", "https://tec.openplanner.team/stops/LVEmohi1"], ["https://tec.openplanner.team/stops/H2ec103a", "https://tec.openplanner.team/stops/H2ec110a"], ["https://tec.openplanner.team/stops/X837agb", "https://tec.openplanner.team/stops/X837aia"], ["https://tec.openplanner.team/stops/X903aab", "https://tec.openplanner.team/stops/X992aba"], ["https://tec.openplanner.team/stops/Ladboti1", "https://tec.openplanner.team/stops/Ladmoul2"], ["https://tec.openplanner.team/stops/N248adb", "https://tec.openplanner.team/stops/N340agb"], ["https://tec.openplanner.team/stops/H5rx104a", "https://tec.openplanner.team/stops/H5rx104b"], ["https://tec.openplanner.team/stops/X615ajb", "https://tec.openplanner.team/stops/X615aka"], ["https://tec.openplanner.team/stops/X907agb", "https://tec.openplanner.team/stops/X908ara"], ["https://tec.openplanner.team/stops/N222ayb", "https://tec.openplanner.team/stops/X222ala"], ["https://tec.openplanner.team/stops/H2ca106a", "https://tec.openplanner.team/stops/H2mo130b"], ["https://tec.openplanner.team/stops/H4ma201a", "https://tec.openplanner.team/stops/H4ma205b"], ["https://tec.openplanner.team/stops/Bohnegl2", "https://tec.openplanner.team/stops/Bwatber1"], ["https://tec.openplanner.team/stops/N548aga", "https://tec.openplanner.team/stops/N548agd"], ["https://tec.openplanner.team/stops/Lstchu-1", "https://tec.openplanner.team/stops/Lstchu-3"], ["https://tec.openplanner.team/stops/N323aaa", "https://tec.openplanner.team/stops/N387ahb"], ["https://tec.openplanner.team/stops/N531asb", "https://tec.openplanner.team/stops/N561aga"], ["https://tec.openplanner.team/stops/Cmaleri1", "https://tec.openplanner.team/stops/Cmazsnc2"], ["https://tec.openplanner.team/stops/LHChaut6", "https://tec.openplanner.team/stops/LHCponc3"], ["https://tec.openplanner.team/stops/Bblmcel2", "https://tec.openplanner.team/stops/Bhvltol2"], ["https://tec.openplanner.team/stops/Lglvand1", "https://tec.openplanner.team/stops/Llgchau2"], ["https://tec.openplanner.team/stops/X626aab", "https://tec.openplanner.team/stops/X626abb"], ["https://tec.openplanner.team/stops/Cnaplha1", "https://tec.openplanner.team/stops/Cnaplha3"], ["https://tec.openplanner.team/stops/LlgR-F1*", "https://tec.openplanner.team/stops/LlgR-Fr3"], ["https://tec.openplanner.team/stops/X622aea", "https://tec.openplanner.team/stops/X622afb"], ["https://tec.openplanner.team/stops/H5el111a", "https://tec.openplanner.team/stops/H5rx121a"], ["https://tec.openplanner.team/stops/H1ms278b", "https://tec.openplanner.team/stops/H1ms940b"], ["https://tec.openplanner.team/stops/Lhehoux1", "https://tec.openplanner.team/stops/Lhehoux2"], ["https://tec.openplanner.team/stops/LAwfans2", "https://tec.openplanner.team/stops/LSfcoll*"], ["https://tec.openplanner.team/stops/LHbcent2", "https://tec.openplanner.team/stops/LJAherb2"], ["https://tec.openplanner.team/stops/H4lz162b", "https://tec.openplanner.team/stops/H4lz164a"], ["https://tec.openplanner.team/stops/Bobacou2", "https://tec.openplanner.team/stops/Cobmven1"], ["https://tec.openplanner.team/stops/N874abb", "https://tec.openplanner.team/stops/N874afa"], ["https://tec.openplanner.team/stops/X774aha", "https://tec.openplanner.team/stops/X775aga"], ["https://tec.openplanner.team/stops/LAWchau2", "https://tec.openplanner.team/stops/LAWhein2"], ["https://tec.openplanner.team/stops/N349aba", "https://tec.openplanner.team/stops/N351aqa"], ["https://tec.openplanner.team/stops/Bfelcsa2", "https://tec.openplanner.team/stops/Bsenpeu1"], ["https://tec.openplanner.team/stops/H1bu140b", "https://tec.openplanner.team/stops/H1bu141b"], ["https://tec.openplanner.team/stops/N501hsb", "https://tec.openplanner.team/stops/N501hsz"], ["https://tec.openplanner.team/stops/N514ama", "https://tec.openplanner.team/stops/N515akb"], ["https://tec.openplanner.team/stops/Bbcocvb1", "https://tec.openplanner.team/stops/Bbcohou4"], ["https://tec.openplanner.team/stops/X618amb", "https://tec.openplanner.team/stops/X618aoa"], ["https://tec.openplanner.team/stops/H1fr124b", "https://tec.openplanner.team/stops/H1fr127b"], ["https://tec.openplanner.team/stops/X945aba", "https://tec.openplanner.team/stops/X948aqa"], ["https://tec.openplanner.team/stops/Cvpcdec2", "https://tec.openplanner.team/stops/Cvppost1"], ["https://tec.openplanner.team/stops/Cchvhau2", "https://tec.openplanner.team/stops/CMba2"], ["https://tec.openplanner.team/stops/LlgguilD", "https://tec.openplanner.team/stops/Llgoise1"], ["https://tec.openplanner.team/stops/LMalarg4", "https://tec.openplanner.team/stops/LPldoua3"], ["https://tec.openplanner.team/stops/N243acb", "https://tec.openplanner.team/stops/N243adb"], ["https://tec.openplanner.team/stops/X652aca", "https://tec.openplanner.team/stops/X652aeb"], ["https://tec.openplanner.team/stops/Loucorn1", "https://tec.openplanner.team/stops/Lougoff2"], ["https://tec.openplanner.team/stops/LeUhaas2", "https://tec.openplanner.team/stops/LeUolen2"], ["https://tec.openplanner.team/stops/H2ll191a", "https://tec.openplanner.team/stops/H2ll191b"], ["https://tec.openplanner.team/stops/X801cba", "https://tec.openplanner.team/stops/X801cca"], ["https://tec.openplanner.team/stops/H4mo132a", "https://tec.openplanner.team/stops/H4mo155b"], ["https://tec.openplanner.team/stops/X902ada", "https://tec.openplanner.team/stops/X902afa"], ["https://tec.openplanner.team/stops/N553adb", "https://tec.openplanner.team/stops/N553afb"], ["https://tec.openplanner.team/stops/N309abb", "https://tec.openplanner.team/stops/N309aca"], ["https://tec.openplanner.team/stops/X876aba", "https://tec.openplanner.team/stops/X876adb"], ["https://tec.openplanner.team/stops/N581aab", "https://tec.openplanner.team/stops/NL74aca"], ["https://tec.openplanner.team/stops/LFMkrin2", "https://tec.openplanner.team/stops/LFMveur2"], ["https://tec.openplanner.team/stops/Cbugara2", "https://tec.openplanner.team/stops/Cfnsenz1"], ["https://tec.openplanner.team/stops/N135aua", "https://tec.openplanner.team/stops/N135bfb"], ["https://tec.openplanner.team/stops/H1ba113b", "https://tec.openplanner.team/stops/H1je216a"], ["https://tec.openplanner.team/stops/Lbbgare2", "https://tec.openplanner.team/stops/Lcemalv2"], ["https://tec.openplanner.team/stops/X661alb", "https://tec.openplanner.team/stops/X661axa"], ["https://tec.openplanner.team/stops/H1as101b", "https://tec.openplanner.team/stops/H1as103c"], ["https://tec.openplanner.team/stops/X822ama", "https://tec.openplanner.team/stops/X822amb"], ["https://tec.openplanner.team/stops/LDaeg--1", "https://tec.openplanner.team/stops/LOMcabi2"], ["https://tec.openplanner.team/stops/N503aea", "https://tec.openplanner.team/stops/N580afa"], ["https://tec.openplanner.team/stops/Cmonvci1", "https://tec.openplanner.team/stops/Cmonvci2"], ["https://tec.openplanner.team/stops/X396aab", "https://tec.openplanner.team/stops/X396abb"], ["https://tec.openplanner.team/stops/H2ch112a", "https://tec.openplanner.team/stops/H2ch112b"], ["https://tec.openplanner.team/stops/N512abb", "https://tec.openplanner.team/stops/N512afb"], ["https://tec.openplanner.team/stops/LaFbruc1", "https://tec.openplanner.team/stops/LmCkirc2"], ["https://tec.openplanner.team/stops/LTIdonn1", "https://tec.openplanner.team/stops/LTIdumo1"], ["https://tec.openplanner.team/stops/H4av100a", "https://tec.openplanner.team/stops/H4av107a"], ["https://tec.openplanner.team/stops/Bwolkra1", "https://tec.openplanner.team/stops/Bwolvan1"], ["https://tec.openplanner.team/stops/LBafagn2", "https://tec.openplanner.team/stops/LNEcouc2"], ["https://tec.openplanner.team/stops/H1hn208a", "https://tec.openplanner.team/stops/H1hn210a"], ["https://tec.openplanner.team/stops/LFrcent1", "https://tec.openplanner.team/stops/LrEochs1"], ["https://tec.openplanner.team/stops/H4hq130a", "https://tec.openplanner.team/stops/H4hs135b"], ["https://tec.openplanner.team/stops/Cmeloti1", "https://tec.openplanner.team/stops/Cmerdby1"], ["https://tec.openplanner.team/stops/X716aaa", "https://tec.openplanner.team/stops/X716aba"], ["https://tec.openplanner.team/stops/Cpllimi2", "https://tec.openplanner.team/stops/Cpllimi5"], ["https://tec.openplanner.team/stops/N564aba", "https://tec.openplanner.team/stops/N564aca"], ["https://tec.openplanner.team/stops/Lhelait1", "https://tec.openplanner.team/stops/Lheterm*"], ["https://tec.openplanner.team/stops/Bgrhhot2", "https://tec.openplanner.team/stops/N519ahb"], ["https://tec.openplanner.team/stops/Lselimi1", "https://tec.openplanner.team/stops/Lsevecq1"], ["https://tec.openplanner.team/stops/N353aab", "https://tec.openplanner.team/stops/N353awa"], ["https://tec.openplanner.team/stops/H4wu377a", "https://tec.openplanner.team/stops/H4wu420b"], ["https://tec.openplanner.team/stops/Bbstcoi1", "https://tec.openplanner.team/stops/Bbstcoi2"], ["https://tec.openplanner.team/stops/H1og130a", "https://tec.openplanner.team/stops/H1og130b"], ["https://tec.openplanner.team/stops/N115aba", "https://tec.openplanner.team/stops/N170adb"], ["https://tec.openplanner.team/stops/X637ajb", "https://tec.openplanner.team/stops/X638aeb"], ["https://tec.openplanner.team/stops/X897ana", "https://tec.openplanner.team/stops/X897aqa"], ["https://tec.openplanner.team/stops/X625aba", "https://tec.openplanner.team/stops/X625acb"], ["https://tec.openplanner.team/stops/Bjdscnd1", "https://tec.openplanner.team/stops/Bjdscnd2"], ["https://tec.openplanner.team/stops/N543bbc", "https://tec.openplanner.team/stops/N543bfb"], ["https://tec.openplanner.team/stops/LHNgare1", "https://tec.openplanner.team/stops/LHNgare2"], ["https://tec.openplanner.team/stops/Lglvict2", "https://tec.openplanner.team/stops/Llgbobu1"], ["https://tec.openplanner.team/stops/N574abb", "https://tec.openplanner.team/stops/N576alb"], ["https://tec.openplanner.team/stops/LHNecpr4", "https://tec.openplanner.team/stops/LHNhall2"], ["https://tec.openplanner.team/stops/Blhutco3", "https://tec.openplanner.team/stops/Blhutco4"], ["https://tec.openplanner.team/stops/X993aib", "https://tec.openplanner.team/stops/X994aka"], ["https://tec.openplanner.team/stops/LAVstat2", "https://tec.openplanner.team/stops/LVPcrok2"], ["https://tec.openplanner.team/stops/N501cgb", "https://tec.openplanner.team/stops/N501cia"], ["https://tec.openplanner.team/stops/H1si157b", "https://tec.openplanner.team/stops/H1si167b"], ["https://tec.openplanner.team/stops/N353aea", "https://tec.openplanner.team/stops/N383acb"], ["https://tec.openplanner.team/stops/Csshouy1", "https://tec.openplanner.team/stops/Csshouy2"], ["https://tec.openplanner.team/stops/X601bja", "https://tec.openplanner.team/stops/X601bjb"], ["https://tec.openplanner.team/stops/Llgdelc2", "https://tec.openplanner.team/stops/Lsnlibe1"], ["https://tec.openplanner.team/stops/Bosqsam1", "https://tec.openplanner.team/stops/Bosqsam2"], ["https://tec.openplanner.team/stops/Lougros1", "https://tec.openplanner.team/stops/Loujouh2"], ["https://tec.openplanner.team/stops/LCIsucr1", "https://tec.openplanner.team/stops/LMXempe1"], ["https://tec.openplanner.team/stops/Cjubert1", "https://tec.openplanner.team/stops/Cjuregi2"], ["https://tec.openplanner.team/stops/X804ada", "https://tec.openplanner.team/stops/X804aza"], ["https://tec.openplanner.team/stops/X756aia", "https://tec.openplanner.team/stops/X779abb"], ["https://tec.openplanner.team/stops/Bpienod1", "https://tec.openplanner.team/stops/Bpienod2"], ["https://tec.openplanner.team/stops/LCpegli1", "https://tec.openplanner.team/stops/LCpvill1"], ["https://tec.openplanner.team/stops/LREhenu2", "https://tec.openplanner.team/stops/LREsoug3"], ["https://tec.openplanner.team/stops/LTEnuro1", "https://tec.openplanner.team/stops/LTEnuro2"], ["https://tec.openplanner.team/stops/N544aab", "https://tec.openplanner.team/stops/N544aba"], ["https://tec.openplanner.team/stops/H1ms268a", "https://tec.openplanner.team/stops/H1ms268b"], ["https://tec.openplanner.team/stops/LHolexh2", "https://tec.openplanner.team/stops/LHZcouv1"], ["https://tec.openplanner.team/stops/H1ol145b", "https://tec.openplanner.team/stops/H1ol146a"], ["https://tec.openplanner.team/stops/Crseuro1", "https://tec.openplanner.team/stops/Crspana4"], ["https://tec.openplanner.team/stops/LFmroye1", "https://tec.openplanner.team/stops/LFmroye2"], ["https://tec.openplanner.team/stops/N874aha", "https://tec.openplanner.team/stops/N874ahb"], ["https://tec.openplanner.team/stops/H4to131a", "https://tec.openplanner.team/stops/H4to131b"], ["https://tec.openplanner.team/stops/Bnivpro1", "https://tec.openplanner.team/stops/Bnivpro2"], ["https://tec.openplanner.team/stops/N503afb", "https://tec.openplanner.team/stops/N503aga"], ["https://tec.openplanner.team/stops/X901aeb", "https://tec.openplanner.team/stops/X901afb"], ["https://tec.openplanner.team/stops/N138aab", "https://tec.openplanner.team/stops/N423agb"], ["https://tec.openplanner.team/stops/Llgfusc1", "https://tec.openplanner.team/stops/Llghec-2"], ["https://tec.openplanner.team/stops/LAUhost2", "https://tec.openplanner.team/stops/LAUscha1"], ["https://tec.openplanner.team/stops/LMHmeha1", "https://tec.openplanner.team/stops/LMHmeha2"], ["https://tec.openplanner.team/stops/X750aob", "https://tec.openplanner.team/stops/X750bfa"], ["https://tec.openplanner.team/stops/H4ka186a", "https://tec.openplanner.team/stops/H4ka189a"], ["https://tec.openplanner.team/stops/LPReg--1", "https://tec.openplanner.team/stops/LTRespe1"], ["https://tec.openplanner.team/stops/X659aba", "https://tec.openplanner.team/stops/X659abb"], ["https://tec.openplanner.team/stops/N230ada", "https://tec.openplanner.team/stops/N230aka"], ["https://tec.openplanner.team/stops/H2pe154b", "https://tec.openplanner.team/stops/H3bi118b"], ["https://tec.openplanner.team/stops/Cmapeet1", "https://tec.openplanner.team/stops/Cmastch2"], ["https://tec.openplanner.team/stops/X921ajb", "https://tec.openplanner.team/stops/X921arb"], ["https://tec.openplanner.team/stops/Bblaall1", "https://tec.openplanner.team/stops/Bblague1"], ["https://tec.openplanner.team/stops/LhGfrie2", "https://tec.openplanner.team/stops/LhGgeme2"], ["https://tec.openplanner.team/stops/H1ms265b", "https://tec.openplanner.team/stops/H1ss352a"], ["https://tec.openplanner.team/stops/H4hx114b", "https://tec.openplanner.team/stops/H4hx122a"], ["https://tec.openplanner.team/stops/LHUecte1", "https://tec.openplanner.team/stops/NL80aha"], ["https://tec.openplanner.team/stops/Bnivbpe2", "https://tec.openplanner.team/stops/Bnivmon1"], ["https://tec.openplanner.team/stops/N543aib", "https://tec.openplanner.team/stops/N543ara"], ["https://tec.openplanner.team/stops/Cbfcham1", "https://tec.openplanner.team/stops/NC11aja"], ["https://tec.openplanner.team/stops/X624ada", "https://tec.openplanner.team/stops/X624aia"], ["https://tec.openplanner.team/stops/LFPgeme1", "https://tec.openplanner.team/stops/LFPkast1"], ["https://tec.openplanner.team/stops/LFR201-1", "https://tec.openplanner.team/stops/LSxeg--1"], ["https://tec.openplanner.team/stops/Lsecroi2", "https://tec.openplanner.team/stops/Lseespe2"], ["https://tec.openplanner.team/stops/LWAclos1", "https://tec.openplanner.team/stops/LWAeloi1"], ["https://tec.openplanner.team/stops/Bwavcar2", "https://tec.openplanner.team/stops/Bwavnep1"], ["https://tec.openplanner.team/stops/Bwatbno1", "https://tec.openplanner.team/stops/Bwatchb1"], ["https://tec.openplanner.team/stops/H4fg116b", "https://tec.openplanner.team/stops/H4wn129b"], ["https://tec.openplanner.team/stops/LaM266-2", "https://tec.openplanner.team/stops/LaMschw1"], ["https://tec.openplanner.team/stops/Clbchba2", "https://tec.openplanner.team/stops/Clbgare1"], ["https://tec.openplanner.team/stops/H4rm107c", "https://tec.openplanner.team/stops/H4rm107d"], ["https://tec.openplanner.team/stops/X614aeb", "https://tec.openplanner.team/stops/X614bab"], ["https://tec.openplanner.team/stops/X641ala", "https://tec.openplanner.team/stops/X641alb"], ["https://tec.openplanner.team/stops/Bvxgegl2", "https://tec.openplanner.team/stops/Cgnquer1"], ["https://tec.openplanner.team/stops/Bbcogar2", "https://tec.openplanner.team/stops/H3br108d"], ["https://tec.openplanner.team/stops/N232asa", "https://tec.openplanner.team/stops/N232btb"], ["https://tec.openplanner.team/stops/LBglign2", "https://tec.openplanner.team/stops/Lthfren1"], ["https://tec.openplanner.team/stops/H2mg149b", "https://tec.openplanner.team/stops/H2se114b"], ["https://tec.openplanner.team/stops/LLteg--2", "https://tec.openplanner.team/stops/NL57aha"], ["https://tec.openplanner.team/stops/Crofrio1", "https://tec.openplanner.team/stops/Croplom3"], ["https://tec.openplanner.team/stops/N203aab", "https://tec.openplanner.team/stops/N560abb"], ["https://tec.openplanner.team/stops/Cmchai1", "https://tec.openplanner.team/stops/Csecroi2"], ["https://tec.openplanner.team/stops/X316aca", "https://tec.openplanner.team/stops/X316acb"], ["https://tec.openplanner.team/stops/Bllnpsc1", "https://tec.openplanner.team/stops/Bllnpsc2"], ["https://tec.openplanner.team/stops/X948aua", "https://tec.openplanner.team/stops/X948aub"], ["https://tec.openplanner.team/stops/H1br128a", "https://tec.openplanner.team/stops/H1br128b"], ["https://tec.openplanner.team/stops/X945ada", "https://tec.openplanner.team/stops/X948aqa"], ["https://tec.openplanner.team/stops/X955aeb", "https://tec.openplanner.team/stops/X955agb"], ["https://tec.openplanner.team/stops/LFAscie2", "https://tec.openplanner.team/stops/LFUchpl2"], ["https://tec.openplanner.team/stops/LSAjacq1", "https://tec.openplanner.team/stops/LSAtrih1"], ["https://tec.openplanner.team/stops/X979aba", "https://tec.openplanner.team/stops/X979ada"], ["https://tec.openplanner.team/stops/N501cba", "https://tec.openplanner.team/stops/N501cja"], ["https://tec.openplanner.team/stops/Bnivros1", "https://tec.openplanner.team/stops/Bnivvcw1"], ["https://tec.openplanner.team/stops/N310aea", "https://tec.openplanner.team/stops/N343aeb"], ["https://tec.openplanner.team/stops/Baegm502", "https://tec.openplanner.team/stops/NR38adb"], ["https://tec.openplanner.team/stops/X898aoa", "https://tec.openplanner.team/stops/X898aob"], ["https://tec.openplanner.team/stops/Bbghepi2", "https://tec.openplanner.team/stops/Benggar1"], ["https://tec.openplanner.team/stops/X804aib", "https://tec.openplanner.team/stops/X804arb"], ["https://tec.openplanner.team/stops/H1al105b", "https://tec.openplanner.team/stops/H1al108a"], ["https://tec.openplanner.team/stops/LDAalbe2", "https://tec.openplanner.team/stops/LTrmaro2"], ["https://tec.openplanner.team/stops/LCPcomp1", "https://tec.openplanner.team/stops/LCPvign2"], ["https://tec.openplanner.team/stops/N531anb", "https://tec.openplanner.team/stops/N576afb"], ["https://tec.openplanner.team/stops/N501gdb", "https://tec.openplanner.team/stops/N501mta"], ["https://tec.openplanner.team/stops/X899abb", "https://tec.openplanner.team/stops/X899acb"], ["https://tec.openplanner.team/stops/H2re174b", "https://tec.openplanner.team/stops/H2re175b"], ["https://tec.openplanner.team/stops/Lhufont1", "https://tec.openplanner.team/stops/Lhutann1"], ["https://tec.openplanner.team/stops/X716acb", "https://tec.openplanner.team/stops/X735abc"], ["https://tec.openplanner.team/stops/Lbhfaye1", "https://tec.openplanner.team/stops/Ljuvert1"], ["https://tec.openplanner.team/stops/X878aca", "https://tec.openplanner.team/stops/X898aca"], ["https://tec.openplanner.team/stops/Lrcchpl2", "https://tec.openplanner.team/stops/Lvochev1"], ["https://tec.openplanner.team/stops/X614aka", "https://tec.openplanner.team/stops/X623aia"], ["https://tec.openplanner.team/stops/Bcrnegl2", "https://tec.openplanner.team/stops/Bcrnsge1"], ["https://tec.openplanner.team/stops/Berneco1", "https://tec.openplanner.team/stops/Berneco2"], ["https://tec.openplanner.team/stops/Canh1942", "https://tec.openplanner.team/stops/Canlalu1"], ["https://tec.openplanner.team/stops/X637aob", "https://tec.openplanner.team/stops/X638apa"], ["https://tec.openplanner.team/stops/LRmkerk1", "https://tec.openplanner.team/stops/LRmmabr1"], ["https://tec.openplanner.team/stops/H4fr391a", "https://tec.openplanner.team/stops/H4ty301d"], ["https://tec.openplanner.team/stops/H1ms303a", "https://tec.openplanner.team/stops/H1ms901a"], ["https://tec.openplanner.team/stops/H4ob108a", "https://tec.openplanner.team/stops/H4ob108b"], ["https://tec.openplanner.team/stops/LaR1G--1", "https://tec.openplanner.team/stops/LrUlasc2"], ["https://tec.openplanner.team/stops/Crodebr2", "https://tec.openplanner.team/stops/Crofrio1"], ["https://tec.openplanner.team/stops/H3lr113a", "https://tec.openplanner.team/stops/H3lr120a"], ["https://tec.openplanner.team/stops/Bdvmalo1", "https://tec.openplanner.team/stops/Bdvmcbo1"], ["https://tec.openplanner.team/stops/X761aaa", "https://tec.openplanner.team/stops/X762agb"], ["https://tec.openplanner.team/stops/N569aaa", "https://tec.openplanner.team/stops/N569aab"], ["https://tec.openplanner.team/stops/Buccchu1", "https://tec.openplanner.team/stops/Buccchu2"], ["https://tec.openplanner.team/stops/N553ahb", "https://tec.openplanner.team/stops/N553aqb"], ["https://tec.openplanner.team/stops/LFdchau2", "https://tec.openplanner.team/stops/LLMfond2"], ["https://tec.openplanner.team/stops/LoDulf-1", "https://tec.openplanner.team/stops/LoDulf-2"], ["https://tec.openplanner.team/stops/Lmndeso1", "https://tec.openplanner.team/stops/Lmneg--2"], ["https://tec.openplanner.team/stops/H5qu146a", "https://tec.openplanner.team/stops/H5qu158a"], ["https://tec.openplanner.team/stops/N547aeb", "https://tec.openplanner.team/stops/N550aja"], ["https://tec.openplanner.team/stops/LrEdic11", "https://tec.openplanner.team/stops/LrEdic71"], ["https://tec.openplanner.team/stops/N145ahb", "https://tec.openplanner.team/stops/N149aab"], ["https://tec.openplanner.team/stops/LBrbern2", "https://tec.openplanner.team/stops/LBrmeiz2"], ["https://tec.openplanner.team/stops/Lchsaro1", "https://tec.openplanner.team/stops/Lchsart1"], ["https://tec.openplanner.team/stops/Bgemcro1", "https://tec.openplanner.team/stops/Bgemgjo2"], ["https://tec.openplanner.team/stops/H1gh154b", "https://tec.openplanner.team/stops/H1gh159b"], ["https://tec.openplanner.team/stops/N150aaa", "https://tec.openplanner.team/stops/N150aab"], ["https://tec.openplanner.team/stops/X982blb", "https://tec.openplanner.team/stops/X982bqb"], ["https://tec.openplanner.team/stops/X911anb", "https://tec.openplanner.team/stops/X911aub"], ["https://tec.openplanner.team/stops/LHUdeni1", "https://tec.openplanner.team/stops/LHUdeni3"], ["https://tec.openplanner.team/stops/X750apa", "https://tec.openplanner.team/stops/X750blb"], ["https://tec.openplanner.team/stops/Lcegare1", "https://tec.openplanner.team/stops/Lcemc--1"], ["https://tec.openplanner.team/stops/X791aab", "https://tec.openplanner.team/stops/X791ada"], ["https://tec.openplanner.team/stops/X636afb", "https://tec.openplanner.team/stops/X636aha"], ["https://tec.openplanner.team/stops/X953aaa", "https://tec.openplanner.team/stops/X953aca"], ["https://tec.openplanner.team/stops/LSMgare1", "https://tec.openplanner.team/stops/LSMgare2"], ["https://tec.openplanner.team/stops/LBPeg--1", "https://tec.openplanner.team/stops/LBPeg--2"], ["https://tec.openplanner.team/stops/N524aha", "https://tec.openplanner.team/stops/N524ahb"], ["https://tec.openplanner.team/stops/Bmrlcch1", "https://tec.openplanner.team/stops/Bmrllgr1"], ["https://tec.openplanner.team/stops/N127aaa", "https://tec.openplanner.team/stops/N127acb"], ["https://tec.openplanner.team/stops/H1vt193a", "https://tec.openplanner.team/stops/H1vt196a"], ["https://tec.openplanner.team/stops/Cfocobe1", "https://tec.openplanner.team/stops/Cfosurs2"], ["https://tec.openplanner.team/stops/X948aaa", "https://tec.openplanner.team/stops/X948bab"], ["https://tec.openplanner.team/stops/Cjuchli2", "https://tec.openplanner.team/stops/Cjuhopi1"], ["https://tec.openplanner.team/stops/LBSpail4", "https://tec.openplanner.team/stops/LBStong1"], ["https://tec.openplanner.team/stops/Clodesc2", "https://tec.openplanner.team/stops/CMdesc1"], ["https://tec.openplanner.team/stops/H4by117b", "https://tec.openplanner.team/stops/H4tu172b"], ["https://tec.openplanner.team/stops/Barcsta2", "https://tec.openplanner.team/stops/Bgzdgth1"], ["https://tec.openplanner.team/stops/X741afb", "https://tec.openplanner.team/stops/X741apb"], ["https://tec.openplanner.team/stops/H4ne132d", "https://tec.openplanner.team/stops/H4tf147a"], ["https://tec.openplanner.team/stops/Llgfran1", "https://tec.openplanner.team/stops/Llglema2"], ["https://tec.openplanner.team/stops/X618ahb", "https://tec.openplanner.team/stops/X618aib"], ["https://tec.openplanner.team/stops/LwYbrkr1", "https://tec.openplanner.team/stops/LwYbruc3"], ["https://tec.openplanner.team/stops/H4co151a", "https://tec.openplanner.team/stops/H4wn130b"], ["https://tec.openplanner.team/stops/Bwatfva1", "https://tec.openplanner.team/stops/Bwatgib1"], ["https://tec.openplanner.team/stops/N510aaa", "https://tec.openplanner.team/stops/N510acb"], ["https://tec.openplanner.team/stops/Clsghoy1", "https://tec.openplanner.team/stops/H1ls108b"], ["https://tec.openplanner.team/stops/H2mo145a", "https://tec.openplanner.team/stops/H2mo145b"], ["https://tec.openplanner.team/stops/H5pe130a", "https://tec.openplanner.team/stops/H5pe130b"], ["https://tec.openplanner.team/stops/H2hl110a", "https://tec.openplanner.team/stops/H2sv216a"], ["https://tec.openplanner.team/stops/LHvvill*", "https://tec.openplanner.team/stops/LRfbeau2"], ["https://tec.openplanner.team/stops/LLescie1", "https://tec.openplanner.team/stops/LVRchpl1"], ["https://tec.openplanner.team/stops/N525aha", "https://tec.openplanner.team/stops/N525ahb"], ["https://tec.openplanner.team/stops/LlgguilE", "https://tec.openplanner.team/stops/LlgguilF"], ["https://tec.openplanner.team/stops/Cbbcrbo1", "https://tec.openplanner.team/stops/Cbmgrav1"], ["https://tec.openplanner.team/stops/H1hr118b", "https://tec.openplanner.team/stops/H1hr118d"], ["https://tec.openplanner.team/stops/Lgrclos1", "https://tec.openplanner.team/stops/Lgrclos2"], ["https://tec.openplanner.team/stops/H1ms905a", "https://tec.openplanner.team/stops/H1ms925a"], ["https://tec.openplanner.team/stops/LBSchpl1", "https://tec.openplanner.team/stops/LBSnouw1"], ["https://tec.openplanner.team/stops/X804anb", "https://tec.openplanner.team/stops/X804cba"], ["https://tec.openplanner.team/stops/Bohnmes1", "https://tec.openplanner.team/stops/Bohnmes4"], ["https://tec.openplanner.team/stops/LESslmo1", "https://tec.openplanner.team/stops/LTIcime1"], ["https://tec.openplanner.team/stops/X750anb", "https://tec.openplanner.team/stops/X750boa"], ["https://tec.openplanner.team/stops/H2gy106a", "https://tec.openplanner.team/stops/H2gy106b"], ["https://tec.openplanner.team/stops/H1je365a", "https://tec.openplanner.team/stops/H1je368a"], ["https://tec.openplanner.team/stops/X818aga", "https://tec.openplanner.team/stops/X818ahb"], ["https://tec.openplanner.team/stops/H1ha184b", "https://tec.openplanner.team/stops/H1ha187a"], ["https://tec.openplanner.team/stops/N525ala", "https://tec.openplanner.team/stops/N525alb"], ["https://tec.openplanner.team/stops/LBTfoot1", "https://tec.openplanner.team/stops/LBTfoot2"], ["https://tec.openplanner.team/stops/LLrlour1", "https://tec.openplanner.team/stops/LLrlour2"], ["https://tec.openplanner.team/stops/N562aga", "https://tec.openplanner.team/stops/N562aia"], ["https://tec.openplanner.team/stops/Lhemilm1", "https://tec.openplanner.team/stops/Lhrspi-1"], ["https://tec.openplanner.team/stops/Lprperr1", "https://tec.openplanner.team/stops/Lprperr2"], ["https://tec.openplanner.team/stops/N501ezb", "https://tec.openplanner.team/stops/N501jrb"], ["https://tec.openplanner.team/stops/LLmcarr1", "https://tec.openplanner.team/stops/LLmvand2"], ["https://tec.openplanner.team/stops/X601cha", "https://tec.openplanner.team/stops/X601cia"], ["https://tec.openplanner.team/stops/H4mo148a", "https://tec.openplanner.team/stops/H4mo148b"], ["https://tec.openplanner.team/stops/LmHdrei1", "https://tec.openplanner.team/stops/LmHvenn1"], ["https://tec.openplanner.team/stops/N152aaa", "https://tec.openplanner.team/stops/N152aaf"], ["https://tec.openplanner.team/stops/LBWfusi2", "https://tec.openplanner.team/stops/LWRgare2"], ["https://tec.openplanner.team/stops/LFychpl1", "https://tec.openplanner.team/stops/LiVkreu4"], ["https://tec.openplanner.team/stops/Bnivsto1", "https://tec.openplanner.team/stops/Bnivsto2"], ["https://tec.openplanner.team/stops/H1gc124b", "https://tec.openplanner.team/stops/H1go118a"], ["https://tec.openplanner.team/stops/LaAhaup2", "https://tec.openplanner.team/stops/LaAkapi2"], ["https://tec.openplanner.team/stops/X359aaa", "https://tec.openplanner.team/stops/X359abb"], ["https://tec.openplanner.team/stops/X765ada", "https://tec.openplanner.team/stops/X765afa"], ["https://tec.openplanner.team/stops/H1hm177b", "https://tec.openplanner.team/stops/H1ss351a"], ["https://tec.openplanner.team/stops/Cjuhopi2", "https://tec.openplanner.team/stops/CMcarr1"], ["https://tec.openplanner.team/stops/LTiruel1", "https://tec.openplanner.team/stops/LTiruel2"], ["https://tec.openplanner.team/stops/N103aia", "https://tec.openplanner.team/stops/N104aaa"], ["https://tec.openplanner.team/stops/Lkiecol1", "https://tec.openplanner.team/stops/Lkirenk1"], ["https://tec.openplanner.team/stops/Ltihorl1", "https://tec.openplanner.team/stops/Ltithie2"], ["https://tec.openplanner.team/stops/LHanest2", "https://tec.openplanner.team/stops/LHaxhor1"], ["https://tec.openplanner.team/stops/LeYdorf1", "https://tec.openplanner.team/stops/LeYmosc1"], ["https://tec.openplanner.team/stops/X802ada", "https://tec.openplanner.team/stops/X802afa"], ["https://tec.openplanner.team/stops/LHMchbl2", "https://tec.openplanner.team/stops/LSIgehe1"], ["https://tec.openplanner.team/stops/LNAbras2", "https://tec.openplanner.team/stops/LNAbras3"], ["https://tec.openplanner.team/stops/N512apa", "https://tec.openplanner.team/stops/N512apb"], ["https://tec.openplanner.team/stops/Bgerd321", "https://tec.openplanner.team/stops/NB33afa"], ["https://tec.openplanner.team/stops/N543aaa", "https://tec.openplanner.team/stops/N543acb"], ["https://tec.openplanner.team/stops/H4hu121a", "https://tec.openplanner.team/stops/H4og216b"], ["https://tec.openplanner.team/stops/H4vx365a", "https://tec.openplanner.team/stops/H4vx365b"], ["https://tec.openplanner.team/stops/Bsgeegl4", "https://tec.openplanner.team/stops/Bsgeqpb1"], ["https://tec.openplanner.team/stops/H4tp143a", "https://tec.openplanner.team/stops/H4tp145b"], ["https://tec.openplanner.team/stops/X610aeb", "https://tec.openplanner.team/stops/X610afa"], ["https://tec.openplanner.team/stops/Lmndeso2", "https://tec.openplanner.team/stops/Lmneg--2"], ["https://tec.openplanner.team/stops/X911asb", "https://tec.openplanner.team/stops/X911avb"], ["https://tec.openplanner.team/stops/H4cw104b", "https://tec.openplanner.team/stops/H4lz163a"], ["https://tec.openplanner.team/stops/N501aab", "https://tec.openplanner.team/stops/N501aaz"], ["https://tec.openplanner.team/stops/H1ca103b", "https://tec.openplanner.team/stops/H1ne144a"], ["https://tec.openplanner.team/stops/Bviravi1", "https://tec.openplanner.team/stops/Bviravi2"], ["https://tec.openplanner.team/stops/X901bna", "https://tec.openplanner.team/stops/X901bnb"], ["https://tec.openplanner.team/stops/LhP25--1", "https://tec.openplanner.team/stops/LhPhale1"], ["https://tec.openplanner.team/stops/X925ajb", "https://tec.openplanner.team/stops/X996aba"], ["https://tec.openplanner.team/stops/X901aha", "https://tec.openplanner.team/stops/X901aob"], ["https://tec.openplanner.team/stops/X808aaa", "https://tec.openplanner.team/stops/X808ada"], ["https://tec.openplanner.team/stops/LHHplac1", "https://tec.openplanner.team/stops/LHHtill2"], ["https://tec.openplanner.team/stops/X825aeb", "https://tec.openplanner.team/stops/X826abb"], ["https://tec.openplanner.team/stops/Lhrecol2", "https://tec.openplanner.team/stops/Lhrhenr1"], ["https://tec.openplanner.team/stops/Bcrncce2", "https://tec.openplanner.team/stops/Bgntalt3"], ["https://tec.openplanner.team/stops/LFRhock1", "https://tec.openplanner.team/stops/LSZpiro1"], ["https://tec.openplanner.team/stops/Lpebier2", "https://tec.openplanner.team/stops/Lpelouh1"], ["https://tec.openplanner.team/stops/H1fr111b", "https://tec.openplanner.team/stops/H1fr124b"], ["https://tec.openplanner.team/stops/Cfrcomp2", "https://tec.openplanner.team/stops/Cfrmon4"], ["https://tec.openplanner.team/stops/Cjualed1", "https://tec.openplanner.team/stops/Cjudest1"], ["https://tec.openplanner.team/stops/N563ama", "https://tec.openplanner.team/stops/N563amb"], ["https://tec.openplanner.team/stops/Lhrmemo1", "https://tec.openplanner.team/stops/Lhrunir1"], ["https://tec.openplanner.team/stops/N501anb", "https://tec.openplanner.team/stops/N501nca"], ["https://tec.openplanner.team/stops/LaMwies1", "https://tec.openplanner.team/stops/LeIkreu3"], ["https://tec.openplanner.team/stops/LSHhade1", "https://tec.openplanner.team/stops/LSOtheu2"], ["https://tec.openplanner.team/stops/Ladegli1", "https://tec.openplanner.team/stops/Ladlaur2"], ["https://tec.openplanner.team/stops/Bneecha2", "https://tec.openplanner.team/stops/Bneedia1"], ["https://tec.openplanner.team/stops/Btieast1", "https://tec.openplanner.team/stops/Btiegma1"], ["https://tec.openplanner.team/stops/LLzcruc1", "https://tec.openplanner.team/stops/LLzcruc2"], ["https://tec.openplanner.team/stops/LhMdorf1", "https://tec.openplanner.team/stops/LhMdorf2"], ["https://tec.openplanner.team/stops/Lrahoig1", "https://tec.openplanner.team/stops/Lrapays2"], ["https://tec.openplanner.team/stops/LeUmalm2", "https://tec.openplanner.team/stops/LeUschi1"], ["https://tec.openplanner.team/stops/Cvsduve2", "https://tec.openplanner.team/stops/Cvssncv2"], ["https://tec.openplanner.team/stops/X369aab", "https://tec.openplanner.team/stops/X369abb"], ["https://tec.openplanner.team/stops/H2ll182b", "https://tec.openplanner.team/stops/H2ll200a"], ["https://tec.openplanner.team/stops/Llgjenn2", "https://tec.openplanner.team/stops/Llgwiar4"], ["https://tec.openplanner.team/stops/LTobilz2", "https://tec.openplanner.team/stops/LTotrui2"], ["https://tec.openplanner.team/stops/LGe4bra1", "https://tec.openplanner.team/stops/LGeforg2"], ["https://tec.openplanner.team/stops/Cbufron2", "https://tec.openplanner.team/stops/Ceregl2"], ["https://tec.openplanner.team/stops/Loudemo2", "https://tec.openplanner.team/stops/Loutrix1"], ["https://tec.openplanner.team/stops/Cauptsa2", "https://tec.openplanner.team/stops/N530aca"], ["https://tec.openplanner.team/stops/X681aeb", "https://tec.openplanner.team/stops/X681afb"], ["https://tec.openplanner.team/stops/H5pe144a", "https://tec.openplanner.team/stops/H5pe150a"], ["https://tec.openplanner.team/stops/Bwavche1", "https://tec.openplanner.team/stops/Bwavnam4"], ["https://tec.openplanner.team/stops/LHUetie*", "https://tec.openplanner.team/stops/LSteg--2"], ["https://tec.openplanner.team/stops/Bhalgja2", "https://tec.openplanner.team/stops/Bhalrat1"], ["https://tec.openplanner.team/stops/LWEchat1", "https://tec.openplanner.team/stops/LWEcomp2"], ["https://tec.openplanner.team/stops/Bhalark2", "https://tec.openplanner.team/stops/Bhalber3"], ["https://tec.openplanner.team/stops/H1wa162b", "https://tec.openplanner.team/stops/H1wg131a"], ["https://tec.openplanner.team/stops/Blsmjja1", "https://tec.openplanner.team/stops/Blsmjja2"], ["https://tec.openplanner.team/stops/LFychpl2", "https://tec.openplanner.team/stops/LsHlenz1"], ["https://tec.openplanner.team/stops/LROgeuz1", "https://tec.openplanner.team/stops/LWalibo1"], ["https://tec.openplanner.team/stops/X720aba", "https://tec.openplanner.team/stops/X720aca"], ["https://tec.openplanner.team/stops/LSG172-2", "https://tec.openplanner.team/stops/LSGmall1"], ["https://tec.openplanner.team/stops/Ccohuli1", "https://tec.openplanner.team/stops/Ccotemp2"], ["https://tec.openplanner.team/stops/Lbogonh2", "https://tec.openplanner.team/stops/Lbotilf2"], ["https://tec.openplanner.team/stops/Cmadeli2", "https://tec.openplanner.team/stops/CMcart2"], ["https://tec.openplanner.team/stops/N551afa", "https://tec.openplanner.team/stops/N551afb"], ["https://tec.openplanner.team/stops/X614awa", "https://tec.openplanner.team/stops/X615anb"], ["https://tec.openplanner.team/stops/Chpceri2", "https://tec.openplanner.team/stops/Chpchea1"], ["https://tec.openplanner.team/stops/Csiegli1", "https://tec.openplanner.team/stops/N103aca"], ["https://tec.openplanner.team/stops/Bsgebou2", "https://tec.openplanner.team/stops/Bsgetri1"], ["https://tec.openplanner.team/stops/H4am113a", "https://tec.openplanner.team/stops/H4rs118b"], ["https://tec.openplanner.team/stops/X756aec", "https://tec.openplanner.team/stops/X756agd"], ["https://tec.openplanner.team/stops/Cfrgivr1", "https://tec.openplanner.team/stops/Cfrmonu1"], ["https://tec.openplanner.team/stops/X661aqb", "https://tec.openplanner.team/stops/X839aeb"], ["https://tec.openplanner.team/stops/X804aka", "https://tec.openplanner.team/stops/X804akb"], ["https://tec.openplanner.team/stops/Ccychba1", "https://tec.openplanner.team/stops/Ccycont2"], ["https://tec.openplanner.team/stops/Bjodath2", "https://tec.openplanner.team/stops/Bjodcar1"], ["https://tec.openplanner.team/stops/LDoeg--1", "https://tec.openplanner.team/stops/LDomoul2"], ["https://tec.openplanner.team/stops/Lalparc2", "https://tec.openplanner.team/stops/Lalverr2"], ["https://tec.openplanner.team/stops/Caiecol2", "https://tec.openplanner.team/stops/N543cia"], ["https://tec.openplanner.team/stops/Bqueaga1", "https://tec.openplanner.team/stops/Bquesta2"], ["https://tec.openplanner.team/stops/X812bab", "https://tec.openplanner.team/stops/X812bga"], ["https://tec.openplanner.team/stops/N554adb", "https://tec.openplanner.team/stops/N573apa"], ["https://tec.openplanner.team/stops/Cflchmo1", "https://tec.openplanner.team/stops/Cflchmo2"], ["https://tec.openplanner.team/stops/Cnachat2", "https://tec.openplanner.team/stops/Cnacout1"], ["https://tec.openplanner.team/stops/Cgywaut1", "https://tec.openplanner.team/stops/Cgywaut2"], ["https://tec.openplanner.team/stops/LGLbrus1", "https://tec.openplanner.team/stops/LGLbrus2"], ["https://tec.openplanner.team/stops/H1ne139a", "https://tec.openplanner.team/stops/H1ne139b"], ["https://tec.openplanner.team/stops/Cmgtour1", "https://tec.openplanner.team/stops/Cmgtour2"], ["https://tec.openplanner.team/stops/NC02aab", "https://tec.openplanner.team/stops/NC14ahb"], ["https://tec.openplanner.team/stops/LPohoeg2", "https://tec.openplanner.team/stops/LPoneuf1"], ["https://tec.openplanner.team/stops/X736aea", "https://tec.openplanner.team/stops/X736aga"], ["https://tec.openplanner.team/stops/LAufech1", "https://tec.openplanner.team/stops/LAuvici1"], ["https://tec.openplanner.team/stops/LHehacc1", "https://tec.openplanner.team/stops/LHTmoul2"], ["https://tec.openplanner.team/stops/LkAmess1", "https://tec.openplanner.team/stops/LkAsonn1"], ["https://tec.openplanner.team/stops/N538aea", "https://tec.openplanner.team/stops/N538ajd"], ["https://tec.openplanner.team/stops/LRaplac1", "https://tec.openplanner.team/stops/LRaplac2"], ["https://tec.openplanner.team/stops/Cstcent2", "https://tec.openplanner.team/stops/Cstdona6"], ["https://tec.openplanner.team/stops/LBgcroi4", "https://tec.openplanner.team/stops/LBgnach1"], ["https://tec.openplanner.team/stops/H4ta134b", "https://tec.openplanner.team/stops/H4wu420a"], ["https://tec.openplanner.team/stops/LLrgare1", "https://tec.openplanner.team/stops/LLrgare2"], ["https://tec.openplanner.team/stops/X763aca", "https://tec.openplanner.team/stops/X763acb"], ["https://tec.openplanner.team/stops/H1qg138b", "https://tec.openplanner.team/stops/H1qy133b"], ["https://tec.openplanner.team/stops/N201aoa", "https://tec.openplanner.team/stops/N219adb"], ["https://tec.openplanner.team/stops/Bnodeco2", "https://tec.openplanner.team/stops/Bnodtir1"], ["https://tec.openplanner.team/stops/LBStong2", "https://tec.openplanner.team/stops/LRGbett3"], ["https://tec.openplanner.team/stops/X911ama", "https://tec.openplanner.team/stops/X911aua"], ["https://tec.openplanner.team/stops/X804aja", "https://tec.openplanner.team/stops/X804aka"], ["https://tec.openplanner.team/stops/H5wo128b", "https://tec.openplanner.team/stops/H5wo129a"], ["https://tec.openplanner.team/stops/H4bd112b", "https://tec.openplanner.team/stops/H4ma411a"], ["https://tec.openplanner.team/stops/X869aaa", "https://tec.openplanner.team/stops/X869aba"], ["https://tec.openplanner.team/stops/Cwxchap1", "https://tec.openplanner.team/stops/Cwxplac1"], ["https://tec.openplanner.team/stops/H4fr392a", "https://tec.openplanner.team/stops/H4ty301d"], ["https://tec.openplanner.team/stops/N551aoa", "https://tec.openplanner.team/stops/N551aob"], ["https://tec.openplanner.team/stops/X512abb", "https://tec.openplanner.team/stops/X512aja"], ["https://tec.openplanner.team/stops/H1sa112b", "https://tec.openplanner.team/stops/H1sa114a"], ["https://tec.openplanner.team/stops/H4ru240a", "https://tec.openplanner.team/stops/H4ru244a"], ["https://tec.openplanner.team/stops/H1er109b", "https://tec.openplanner.team/stops/H1so142c"], ["https://tec.openplanner.team/stops/Bblabar1", "https://tec.openplanner.team/stops/Clpsola1"], ["https://tec.openplanner.team/stops/N584aea", "https://tec.openplanner.team/stops/N584aja"], ["https://tec.openplanner.team/stops/N308bjb", "https://tec.openplanner.team/stops/N312adb"], ["https://tec.openplanner.team/stops/N135ata", "https://tec.openplanner.team/stops/N135aua"], ["https://tec.openplanner.team/stops/NL76afa", "https://tec.openplanner.team/stops/NL76agb"], ["https://tec.openplanner.team/stops/LBEairp1", "https://tec.openplanner.team/stops/LBEairp2"], ["https://tec.openplanner.team/stops/X602aba", "https://tec.openplanner.team/stops/X633abb"], ["https://tec.openplanner.team/stops/X730aeb", "https://tec.openplanner.team/stops/X731afb"], ["https://tec.openplanner.team/stops/LWacime1", "https://tec.openplanner.team/stops/LWacime2"], ["https://tec.openplanner.team/stops/N236aca", "https://tec.openplanner.team/stops/N236acb"], ["https://tec.openplanner.team/stops/Csepost1", "https://tec.openplanner.team/stops/Cvtndam2"], ["https://tec.openplanner.team/stops/LQacabi1", "https://tec.openplanner.team/stops/LQafond2"], ["https://tec.openplanner.team/stops/H1ry135a", "https://tec.openplanner.team/stops/H1ry136a"], ["https://tec.openplanner.team/stops/Bblafra1", "https://tec.openplanner.team/stops/Bblafra2"], ["https://tec.openplanner.team/stops/N543axa", "https://tec.openplanner.team/stops/N543axb"], ["https://tec.openplanner.team/stops/LMoviel1", "https://tec.openplanner.team/stops/LMovieu2"], ["https://tec.openplanner.team/stops/H4mo156a", "https://tec.openplanner.team/stops/H4mo204b"], ["https://tec.openplanner.team/stops/H2sb239a", "https://tec.openplanner.team/stops/H2sb239c"], ["https://tec.openplanner.team/stops/Ccumasu2", "https://tec.openplanner.team/stops/Cpicite1"], ["https://tec.openplanner.team/stops/H5rx112a", "https://tec.openplanner.team/stops/H5rx145b"], ["https://tec.openplanner.team/stops/Llgjonr2", "https://tec.openplanner.team/stops/Llgmare1"], ["https://tec.openplanner.team/stops/LHDpota1", "https://tec.openplanner.team/stops/LLmcarr2"], ["https://tec.openplanner.team/stops/X768aib", "https://tec.openplanner.team/stops/X768ajb"], ["https://tec.openplanner.team/stops/N515afa", "https://tec.openplanner.team/stops/N517aca"], ["https://tec.openplanner.team/stops/H4ep127a", "https://tec.openplanner.team/stops/H4rm108a"], ["https://tec.openplanner.team/stops/H4le128b", "https://tec.openplanner.team/stops/H4ry130a"], ["https://tec.openplanner.team/stops/X806ajb", "https://tec.openplanner.team/stops/X808aka"], ["https://tec.openplanner.team/stops/H4ss158a", "https://tec.openplanner.team/stops/H4ss158b"], ["https://tec.openplanner.team/stops/X601aya", "https://tec.openplanner.team/stops/X601bka"], ["https://tec.openplanner.team/stops/Cgzabau2", "https://tec.openplanner.team/stops/Cgzchen2"], ["https://tec.openplanner.team/stops/Canjon3", "https://tec.openplanner.team/stops/Canstat1"], ["https://tec.openplanner.team/stops/H1mj122a", "https://tec.openplanner.team/stops/H1mj125a"], ["https://tec.openplanner.team/stops/N501epa", "https://tec.openplanner.team/stops/N501kqa"], ["https://tec.openplanner.team/stops/X888aca", "https://tec.openplanner.team/stops/X888ada"], ["https://tec.openplanner.team/stops/H3lr108b", "https://tec.openplanner.team/stops/H3lr110b"], ["https://tec.openplanner.team/stops/LAbchpl2", "https://tec.openplanner.team/stops/LTechpl1"], ["https://tec.openplanner.team/stops/Cmlbrac1", "https://tec.openplanner.team/stops/Cmlrous2"], ["https://tec.openplanner.team/stops/H3bi101b", "https://tec.openplanner.team/stops/H3bi105d"], ["https://tec.openplanner.team/stops/H1qu104a", "https://tec.openplanner.team/stops/H1wl123a"], ["https://tec.openplanner.team/stops/Bcseeco2", "https://tec.openplanner.team/stops/Bcseeco3"], ["https://tec.openplanner.team/stops/Cgyplst2", "https://tec.openplanner.team/stops/Cgywaut2"], ["https://tec.openplanner.team/stops/N502aba", "https://tec.openplanner.team/stops/N509ajb"], ["https://tec.openplanner.team/stops/LlNlimb1", "https://tec.openplanner.team/stops/LlNschu2"], ["https://tec.openplanner.team/stops/N577acb", "https://tec.openplanner.team/stops/N577aeb"], ["https://tec.openplanner.team/stops/H1te187a", "https://tec.openplanner.team/stops/H1te187b"], ["https://tec.openplanner.team/stops/Csychap1", "https://tec.openplanner.team/stops/Csychap3"], ["https://tec.openplanner.team/stops/H1ch102b", "https://tec.openplanner.team/stops/H4ab102a"], ["https://tec.openplanner.team/stops/LXHbois1", "https://tec.openplanner.team/stops/LXHbois2"], ["https://tec.openplanner.team/stops/Bnetace2", "https://tec.openplanner.team/stops/Bnetcor1"], ["https://tec.openplanner.team/stops/X547ahb", "https://tec.openplanner.team/stops/X547aib"], ["https://tec.openplanner.team/stops/Ctabaty3", "https://tec.openplanner.team/stops/Ctapn2"], ["https://tec.openplanner.team/stops/LiVdorf2", "https://tec.openplanner.team/stops/LmObahn*"], ["https://tec.openplanner.team/stops/H4ga148b", "https://tec.openplanner.team/stops/H4ga160a"], ["https://tec.openplanner.team/stops/Bnivbos1", "https://tec.openplanner.team/stops/Bnivbos2"], ["https://tec.openplanner.team/stops/LDomoul2", "https://tec.openplanner.team/stops/LLiforg2"], ["https://tec.openplanner.team/stops/H1br120b", "https://tec.openplanner.team/stops/H2tr248b"], ["https://tec.openplanner.team/stops/Cgosoux2", "https://tec.openplanner.team/stops/Cjuaero1"], ["https://tec.openplanner.team/stops/LNIbas-2", "https://tec.openplanner.team/stops/LTgcime1"], ["https://tec.openplanner.team/stops/Bvilcha2", "https://tec.openplanner.team/stops/Bvilcoq2"], ["https://tec.openplanner.team/stops/X636apa", "https://tec.openplanner.team/stops/X636apb"], ["https://tec.openplanner.team/stops/X661aua", "https://tec.openplanner.team/stops/X661ava"], ["https://tec.openplanner.team/stops/LLmvict1", "https://tec.openplanner.team/stops/LReeg--1"], ["https://tec.openplanner.team/stops/Lagbeno5", "https://tec.openplanner.team/stops/Lagmoli2"], ["https://tec.openplanner.team/stops/N424ada", "https://tec.openplanner.team/stops/N424adb"], ["https://tec.openplanner.team/stops/X354adb", "https://tec.openplanner.team/stops/X354aea"], ["https://tec.openplanner.team/stops/Cgxalli1", "https://tec.openplanner.team/stops/Cgxcite1"], ["https://tec.openplanner.team/stops/N343aeb", "https://tec.openplanner.team/stops/X343aic"], ["https://tec.openplanner.team/stops/Cmypela1", "https://tec.openplanner.team/stops/Cmyrens2"], ["https://tec.openplanner.team/stops/N507aba", "https://tec.openplanner.team/stops/NL30aka"], ["https://tec.openplanner.team/stops/H4oe152a", "https://tec.openplanner.team/stops/H4oe152b"], ["https://tec.openplanner.team/stops/Blig4br2", "https://tec.openplanner.team/stops/N584bpa"], ["https://tec.openplanner.team/stops/Bboueta1", "https://tec.openplanner.team/stops/Bbougar2"], ["https://tec.openplanner.team/stops/N110aha", "https://tec.openplanner.team/stops/N127aha"], ["https://tec.openplanner.team/stops/H4ea128b", "https://tec.openplanner.team/stops/H5qu145a"], ["https://tec.openplanner.team/stops/LAmeclu2", "https://tec.openplanner.team/stops/LTiterr1"], ["https://tec.openplanner.team/stops/N515asa", "https://tec.openplanner.team/stops/N515asb"], ["https://tec.openplanner.team/stops/LWeatel1", "https://tec.openplanner.team/stops/LWeatel2"], ["https://tec.openplanner.team/stops/X790aga", "https://tec.openplanner.team/stops/X790ahb"], ["https://tec.openplanner.team/stops/LMOfleu1", "https://tec.openplanner.team/stops/LMOstat1"], ["https://tec.openplanner.team/stops/LBJapol1", "https://tec.openplanner.team/stops/LMAalli2"], ["https://tec.openplanner.team/stops/N505aaa", "https://tec.openplanner.team/stops/N505ama"], ["https://tec.openplanner.team/stops/H4eg104a", "https://tec.openplanner.team/stops/H4ne135a"], ["https://tec.openplanner.team/stops/LHUlebe4", "https://tec.openplanner.team/stops/LHUlebe8"], ["https://tec.openplanner.team/stops/H4to136b", "https://tec.openplanner.team/stops/H4to137b"], ["https://tec.openplanner.team/stops/X850acb", "https://tec.openplanner.team/stops/X850adb"], ["https://tec.openplanner.team/stops/LNEtonv2", "https://tec.openplanner.team/stops/LNEvpn-1"], ["https://tec.openplanner.team/stops/N115afa", "https://tec.openplanner.team/stops/N115afb"], ["https://tec.openplanner.team/stops/N513aba", "https://tec.openplanner.team/stops/N513aea"], ["https://tec.openplanner.team/stops/Cmacreu2", "https://tec.openplanner.team/stops/Cmmecol1"], ["https://tec.openplanner.team/stops/Bnstgar1", "https://tec.openplanner.team/stops/Bnstmig1"], ["https://tec.openplanner.team/stops/Bhmmtou2", "https://tec.openplanner.team/stops/Bndbnod2"], ["https://tec.openplanner.team/stops/LFrcent2", "https://tec.openplanner.team/stops/LFReg--1"], ["https://tec.openplanner.team/stops/LATmale1", "https://tec.openplanner.team/stops/LATrori2"], ["https://tec.openplanner.team/stops/N538ahb", "https://tec.openplanner.team/stops/N538aib"], ["https://tec.openplanner.team/stops/H1ci105b", "https://tec.openplanner.team/stops/H1mv243a"], ["https://tec.openplanner.team/stops/Ljuprev3", "https://tec.openplanner.team/stops/Llgcouv2"], ["https://tec.openplanner.team/stops/Lhutran1", "https://tec.openplanner.team/stops/LPohoeg1"], ["https://tec.openplanner.team/stops/H4ne133b", "https://tec.openplanner.team/stops/H4ne140a"], ["https://tec.openplanner.team/stops/X630aca", "https://tec.openplanner.team/stops/X630adb"], ["https://tec.openplanner.team/stops/H1do116a", "https://tec.openplanner.team/stops/H1pd141a"], ["https://tec.openplanner.team/stops/H1je220d", "https://tec.openplanner.team/stops/H1je366b"], ["https://tec.openplanner.team/stops/H4cr111a", "https://tec.openplanner.team/stops/H4ff118a"], ["https://tec.openplanner.team/stops/H4ir166a", "https://tec.openplanner.team/stops/H5at141b"], ["https://tec.openplanner.team/stops/H1cu112a", "https://tec.openplanner.team/stops/H1cu123a"], ["https://tec.openplanner.team/stops/H3so170a", "https://tec.openplanner.team/stops/H3so173a"], ["https://tec.openplanner.team/stops/N569abb", "https://tec.openplanner.team/stops/N569aeb"], ["https://tec.openplanner.team/stops/X904aea", "https://tec.openplanner.team/stops/X904ana"], ["https://tec.openplanner.team/stops/Bmrlhau1", "https://tec.openplanner.team/stops/Bnodegl1"], ["https://tec.openplanner.team/stops/H4lp125a", "https://tec.openplanner.team/stops/H4pe127b"], ["https://tec.openplanner.team/stops/H3go103a", "https://tec.openplanner.team/stops/H3go105a"], ["https://tec.openplanner.team/stops/H4co104a", "https://tec.openplanner.team/stops/H4co110a"], ["https://tec.openplanner.team/stops/H1ms277a", "https://tec.openplanner.team/stops/H1ms302a"], ["https://tec.openplanner.team/stops/H4be105a", "https://tec.openplanner.team/stops/H4be111a"], ["https://tec.openplanner.team/stops/Cbmpopr2", "https://tec.openplanner.team/stops/H1bt100a"], ["https://tec.openplanner.team/stops/H4ve133b", "https://tec.openplanner.team/stops/H4ve134a"], ["https://tec.openplanner.team/stops/CMcarr1", "https://tec.openplanner.team/stops/CMcarr2"], ["https://tec.openplanner.team/stops/LHTcent2", "https://tec.openplanner.team/stops/LLxcana2"], ["https://tec.openplanner.team/stops/X991aaa", "https://tec.openplanner.team/stops/X991aab"], ["https://tec.openplanner.team/stops/N554aba", "https://tec.openplanner.team/stops/N555aba"], ["https://tec.openplanner.team/stops/H4hx109a", "https://tec.openplanner.team/stops/H4mo161a"], ["https://tec.openplanner.team/stops/LCAcruc1", "https://tec.openplanner.team/stops/LCAeg--2"], ["https://tec.openplanner.team/stops/LCxwarr1", "https://tec.openplanner.team/stops/LHEches3"], ["https://tec.openplanner.team/stops/X224aea", "https://tec.openplanner.team/stops/X398aha"], ["https://tec.openplanner.team/stops/Cmlhaie1", "https://tec.openplanner.team/stops/Cmlhaie2"], ["https://tec.openplanner.team/stops/N501ewa", "https://tec.openplanner.team/stops/N501hcc"], ["https://tec.openplanner.team/stops/H2ep145a", "https://tec.openplanner.team/stops/H2re166b"], ["https://tec.openplanner.team/stops/LSZarbe1", "https://tec.openplanner.team/stops/LSZheid1"], ["https://tec.openplanner.team/stops/X763aba", "https://tec.openplanner.team/stops/X765agb"], ["https://tec.openplanner.team/stops/NH21aea", "https://tec.openplanner.team/stops/NH21afa"], ["https://tec.openplanner.team/stops/H4mo157a", "https://tec.openplanner.team/stops/H4mo177a"], ["https://tec.openplanner.team/stops/Brsregl2", "https://tec.openplanner.team/stops/Brsregl4"], ["https://tec.openplanner.team/stops/Lmolagu2", "https://tec.openplanner.team/stops/Lmopota1"], ["https://tec.openplanner.team/stops/N539adb", "https://tec.openplanner.team/stops/N539aga"], ["https://tec.openplanner.team/stops/N573aeb", "https://tec.openplanner.team/stops/N573aib"], ["https://tec.openplanner.team/stops/X877aca", "https://tec.openplanner.team/stops/X877aia"], ["https://tec.openplanner.team/stops/N520aba", "https://tec.openplanner.team/stops/N520aha"], ["https://tec.openplanner.team/stops/X817aea", "https://tec.openplanner.team/stops/X817afb"], ["https://tec.openplanner.team/stops/LNEbo471", "https://tec.openplanner.team/stops/LNEbois2"], ["https://tec.openplanner.team/stops/H2ll198b", "https://tec.openplanner.team/stops/H2ll199a"], ["https://tec.openplanner.team/stops/Bblaniv2", "https://tec.openplanner.team/stops/Bwatwsc1"], ["https://tec.openplanner.team/stops/X637aaa", "https://tec.openplanner.team/stops/X637abb"], ["https://tec.openplanner.team/stops/X734afb", "https://tec.openplanner.team/stops/X734aga"], ["https://tec.openplanner.team/stops/X661aga", "https://tec.openplanner.team/stops/X661aya"], ["https://tec.openplanner.team/stops/X771acb", "https://tec.openplanner.team/stops/X773amb"], ["https://tec.openplanner.team/stops/X623aed", "https://tec.openplanner.team/stops/X623aja"], ["https://tec.openplanner.team/stops/Bcrbmsg1", "https://tec.openplanner.team/stops/Bcrbrpb1"], ["https://tec.openplanner.team/stops/Bcbqufo1", "https://tec.openplanner.team/stops/Btubcvi2"], ["https://tec.openplanner.team/stops/N525aja", "https://tec.openplanner.team/stops/N525azb"], ["https://tec.openplanner.team/stops/Llgptlo1", "https://tec.openplanner.team/stops/Llgptlo3"], ["https://tec.openplanner.team/stops/H2mo133b", "https://tec.openplanner.team/stops/H2mo135a"], ["https://tec.openplanner.team/stops/N533aeb", "https://tec.openplanner.team/stops/N551ajb"], ["https://tec.openplanner.team/stops/H1mv238a", "https://tec.openplanner.team/stops/H1mv238b"], ["https://tec.openplanner.team/stops/X636ama", "https://tec.openplanner.team/stops/X636ara"], ["https://tec.openplanner.team/stops/H1cv103a", "https://tec.openplanner.team/stops/H1lm105b"], ["https://tec.openplanner.team/stops/Bgnvoha2", "https://tec.openplanner.team/stops/Bgnvvol2"], ["https://tec.openplanner.team/stops/X759aaa", "https://tec.openplanner.team/stops/X886acb"], ["https://tec.openplanner.team/stops/X950abb", "https://tec.openplanner.team/stops/X950ada"], ["https://tec.openplanner.team/stops/N351alb", "https://tec.openplanner.team/stops/N351asa"], ["https://tec.openplanner.team/stops/LSCeg--3", "https://tec.openplanner.team/stops/LSChane1"], ["https://tec.openplanner.team/stops/Lsnfont1", "https://tec.openplanner.team/stops/Lsnlhon1"], ["https://tec.openplanner.team/stops/Lalecmo2", "https://tec.openplanner.team/stops/Laltrav2"], ["https://tec.openplanner.team/stops/X636aba", "https://tec.openplanner.team/stops/X670asb"], ["https://tec.openplanner.team/stops/LMOecsp3", "https://tec.openplanner.team/stops/LMOm48-1"], ["https://tec.openplanner.team/stops/X614aha", "https://tec.openplanner.team/stops/X614aya"], ["https://tec.openplanner.team/stops/H5bl117a", "https://tec.openplanner.team/stops/H5qu182a"], ["https://tec.openplanner.team/stops/X982aqb", "https://tec.openplanner.team/stops/X982aqc"], ["https://tec.openplanner.team/stops/Bwspbbo2", "https://tec.openplanner.team/stops/Bwsppos2"], ["https://tec.openplanner.team/stops/LBabeco3", "https://tec.openplanner.team/stops/LBabeco4"], ["https://tec.openplanner.team/stops/LSktinc2", "https://tec.openplanner.team/stops/LSkwarf2"], ["https://tec.openplanner.team/stops/N550alb", "https://tec.openplanner.team/stops/N565aaa"], ["https://tec.openplanner.team/stops/Lemcarm2", "https://tec.openplanner.team/stops/Lemmeha2"], ["https://tec.openplanner.team/stops/Loumatt1", "https://tec.openplanner.team/stops/Louvivi2"], ["https://tec.openplanner.team/stops/X723abb", "https://tec.openplanner.team/stops/X723aca"], ["https://tec.openplanner.team/stops/H4tm140b", "https://tec.openplanner.team/stops/H4to136b"], ["https://tec.openplanner.team/stops/Lstbota1", "https://tec.openplanner.team/stops/Lstbota2"], ["https://tec.openplanner.team/stops/Bblacha2", "https://tec.openplanner.team/stops/Bwatbca1"], ["https://tec.openplanner.team/stops/N219adb", "https://tec.openplanner.team/stops/N219afb"], ["https://tec.openplanner.team/stops/X953adb", "https://tec.openplanner.team/stops/X953aea"], ["https://tec.openplanner.team/stops/N501fpb", "https://tec.openplanner.team/stops/N501kvb"], ["https://tec.openplanner.team/stops/Bnivcma1", "https://tec.openplanner.team/stops/Bnivsnu1"], ["https://tec.openplanner.team/stops/X801asa", "https://tec.openplanner.team/stops/X801axb"], ["https://tec.openplanner.team/stops/N501bda", "https://tec.openplanner.team/stops/N501ieb"], ["https://tec.openplanner.team/stops/H5at119a", "https://tec.openplanner.team/stops/H5at127a"], ["https://tec.openplanner.team/stops/X780ajb", "https://tec.openplanner.team/stops/X793aoa"], ["https://tec.openplanner.team/stops/H5el110a", "https://tec.openplanner.team/stops/H5el117b"], ["https://tec.openplanner.team/stops/LMolone2", "https://tec.openplanner.team/stops/LMovich2"], ["https://tec.openplanner.team/stops/N501bia", "https://tec.openplanner.team/stops/N501bib"], ["https://tec.openplanner.team/stops/N113acb", "https://tec.openplanner.team/stops/N113aea"], ["https://tec.openplanner.team/stops/LSyeg--1", "https://tec.openplanner.team/stops/LSypesy1"], ["https://tec.openplanner.team/stops/LCLgend1", "https://tec.openplanner.team/stops/LCLgend2"], ["https://tec.openplanner.team/stops/Baudhan1", "https://tec.openplanner.team/stops/Baudsju1"], ["https://tec.openplanner.team/stops/LbTdoma1", "https://tec.openplanner.team/stops/LbThau12"], ["https://tec.openplanner.team/stops/N537aba", "https://tec.openplanner.team/stops/N537aha"], ["https://tec.openplanner.team/stops/H5at118b", "https://tec.openplanner.team/stops/H5at235b"], ["https://tec.openplanner.team/stops/Lbrplai2", "https://tec.openplanner.team/stops/Llgplai1"], ["https://tec.openplanner.team/stops/H1ho128a", "https://tec.openplanner.team/stops/H1ho140a"], ["https://tec.openplanner.team/stops/LSUroyo1", "https://tec.openplanner.team/stops/LTgvill2"], ["https://tec.openplanner.team/stops/X818afa", "https://tec.openplanner.team/stops/X818aua"], ["https://tec.openplanner.team/stops/Cluchbl2", "https://tec.openplanner.team/stops/Cpctunn1"], ["https://tec.openplanner.team/stops/Cmmbsit1", "https://tec.openplanner.team/stops/Cmmn1172"], ["https://tec.openplanner.team/stops/LOdbuis2", "https://tec.openplanner.team/stops/LVlledo1"], ["https://tec.openplanner.team/stops/Btslcej1", "https://tec.openplanner.team/stops/Btslegl2"], ["https://tec.openplanner.team/stops/Lhrathe*", "https://tec.openplanner.team/stops/Lhrhome1"], ["https://tec.openplanner.team/stops/Cgxcite2", "https://tec.openplanner.team/stops/Cgxwaut2"], ["https://tec.openplanner.team/stops/Lrc594-2", "https://tec.openplanner.team/stops/Lrclohe2"], ["https://tec.openplanner.team/stops/X879aaa", "https://tec.openplanner.team/stops/X879aqb"], ["https://tec.openplanner.team/stops/Lceconf2", "https://tec.openplanner.team/stops/Lceprog2"], ["https://tec.openplanner.team/stops/N501blb", "https://tec.openplanner.team/stops/N501bua"], ["https://tec.openplanner.team/stops/NL72aea", "https://tec.openplanner.team/stops/NL72afb"], ["https://tec.openplanner.team/stops/Lsepcha3", "https://tec.openplanner.team/stops/Lsepcha4"], ["https://tec.openplanner.team/stops/X948arb", "https://tec.openplanner.team/stops/X948asa"], ["https://tec.openplanner.team/stops/Ccabois2", "https://tec.openplanner.team/stops/Cerrver4"], ["https://tec.openplanner.team/stops/N528adb", "https://tec.openplanner.team/stops/N528asb"], ["https://tec.openplanner.team/stops/H4ch116a", "https://tec.openplanner.team/stops/H4ty278b"], ["https://tec.openplanner.team/stops/Cmogrbu2", "https://tec.openplanner.team/stops/Cmoscap1"], ["https://tec.openplanner.team/stops/LHexhav1", "https://tec.openplanner.team/stops/LHSheur2"], ["https://tec.openplanner.team/stops/Lrogene*", "https://tec.openplanner.team/stops/Lrogene2"], ["https://tec.openplanner.team/stops/H4rx176a", "https://tec.openplanner.team/stops/H4wa148a"], ["https://tec.openplanner.team/stops/X812aoa", "https://tec.openplanner.team/stops/X812ata"], ["https://tec.openplanner.team/stops/H5rx106b", "https://tec.openplanner.team/stops/H5rx139b"], ["https://tec.openplanner.team/stops/Crsrose1", "https://tec.openplanner.team/stops/Crsrose2"], ["https://tec.openplanner.team/stops/H1fr107c", "https://tec.openplanner.team/stops/H1fr113a"], ["https://tec.openplanner.team/stops/X812ana", "https://tec.openplanner.team/stops/X812ara"], ["https://tec.openplanner.team/stops/Ccotrie1", "https://tec.openplanner.team/stops/Ccotrie2"], ["https://tec.openplanner.team/stops/Llgbour1", "https://tec.openplanner.team/stops/Llgbour2"], ["https://tec.openplanner.team/stops/H1hc151b", "https://tec.openplanner.team/stops/H1hc152a"], ["https://tec.openplanner.team/stops/X661ada", "https://tec.openplanner.team/stops/X661aea"], ["https://tec.openplanner.team/stops/LSPchap2", "https://tec.openplanner.team/stops/LSPther2"], ["https://tec.openplanner.team/stops/H4li178a", "https://tec.openplanner.team/stops/H4li179a"], ["https://tec.openplanner.team/stops/LAUneuv5", "https://tec.openplanner.team/stops/LAUneuv6"], ["https://tec.openplanner.team/stops/X889aab", "https://tec.openplanner.team/stops/X889abb"], ["https://tec.openplanner.team/stops/X788abc", "https://tec.openplanner.team/stops/X789ahd"], ["https://tec.openplanner.team/stops/N106aab", "https://tec.openplanner.team/stops/N155acb"], ["https://tec.openplanner.team/stops/Lcchala1", "https://tec.openplanner.team/stops/Lfhmarn1"], ["https://tec.openplanner.team/stops/LHUfonc2", "https://tec.openplanner.team/stops/LHUhaum3"], ["https://tec.openplanner.team/stops/Cchalou1", "https://tec.openplanner.team/stops/Cgyrdid1"], ["https://tec.openplanner.team/stops/H4pl121a", "https://tec.openplanner.team/stops/H4pl137b"], ["https://tec.openplanner.team/stops/LHemoul1", "https://tec.openplanner.team/stops/LOUchen1"], ["https://tec.openplanner.team/stops/X770afb", "https://tec.openplanner.team/stops/X770agb"], ["https://tec.openplanner.team/stops/N145aha", "https://tec.openplanner.team/stops/N145aia"], ["https://tec.openplanner.team/stops/X685apa", "https://tec.openplanner.team/stops/X685apb"], ["https://tec.openplanner.team/stops/X769arb", "https://tec.openplanner.team/stops/X791aab"], ["https://tec.openplanner.team/stops/N113aga", "https://tec.openplanner.team/stops/N113agb"], ["https://tec.openplanner.team/stops/Bclgavi1", "https://tec.openplanner.team/stops/Bclgfva1"], ["https://tec.openplanner.team/stops/H4lg105a", "https://tec.openplanner.team/stops/H4lg106a"], ["https://tec.openplanner.team/stops/Ccyrmon1", "https://tec.openplanner.team/stops/Crbrgar1"], ["https://tec.openplanner.team/stops/N501jta", "https://tec.openplanner.team/stops/N501jtb"], ["https://tec.openplanner.team/stops/H1el135b", "https://tec.openplanner.team/stops/H1wi148b"], ["https://tec.openplanner.team/stops/X754aba", "https://tec.openplanner.team/stops/X754abb"], ["https://tec.openplanner.team/stops/H1pa109a", "https://tec.openplanner.team/stops/H1pa109b"], ["https://tec.openplanner.team/stops/N304aab", "https://tec.openplanner.team/stops/N304aba"], ["https://tec.openplanner.team/stops/LHMpatl1", "https://tec.openplanner.team/stops/LMNswar2"], ["https://tec.openplanner.team/stops/N501edb", "https://tec.openplanner.team/stops/N501gdb"], ["https://tec.openplanner.team/stops/N501fmb", "https://tec.openplanner.team/stops/N501lwa"], ["https://tec.openplanner.team/stops/LPOeg--2", "https://tec.openplanner.team/stops/LPOpass1"], ["https://tec.openplanner.team/stops/NL76aca", "https://tec.openplanner.team/stops/NL80acb"], ["https://tec.openplanner.team/stops/X713ada", "https://tec.openplanner.team/stops/X713aea"], ["https://tec.openplanner.team/stops/X946abb", "https://tec.openplanner.team/stops/X948afb"], ["https://tec.openplanner.team/stops/Bbaualz1", "https://tec.openplanner.team/stops/Bbaucai1"], ["https://tec.openplanner.team/stops/LSAjacq2", "https://tec.openplanner.team/stops/LSAmous1"], ["https://tec.openplanner.team/stops/H1og136b", "https://tec.openplanner.team/stops/H5fl101a"], ["https://tec.openplanner.team/stops/H4ar107a", "https://tec.openplanner.team/stops/H4ar177a"], ["https://tec.openplanner.team/stops/N331aca", "https://tec.openplanner.team/stops/N331aja"], ["https://tec.openplanner.team/stops/Bwaveur1", "https://tec.openplanner.team/stops/Bwavpao2"], ["https://tec.openplanner.team/stops/Cjucpui2", "https://tec.openplanner.team/stops/Cmacoll2"], ["https://tec.openplanner.team/stops/Cnanoir2", "https://tec.openplanner.team/stops/Cnarmon1"], ["https://tec.openplanner.team/stops/Cchbaza1", "https://tec.openplanner.team/stops/Cchwate4"], ["https://tec.openplanner.team/stops/H5bl123b", "https://tec.openplanner.team/stops/H5bl142b"], ["https://tec.openplanner.team/stops/LBHhuyn2", "https://tec.openplanner.team/stops/LBHinva2"], ["https://tec.openplanner.team/stops/Bovesol1", "https://tec.openplanner.team/stops/Bovesol2"], ["https://tec.openplanner.team/stops/Cwgmart1", "https://tec.openplanner.team/stops/Cwgrabi1"], ["https://tec.openplanner.team/stops/N229ala", "https://tec.openplanner.team/stops/N229aoa"], ["https://tec.openplanner.team/stops/Cbmgare2", "https://tec.openplanner.team/stops/H1tt109b"], ["https://tec.openplanner.team/stops/H4mv192a", "https://tec.openplanner.team/stops/H4oe152a"], ["https://tec.openplanner.team/stops/N501ega", "https://tec.openplanner.team/stops/N501ela"], ["https://tec.openplanner.team/stops/X735acb", "https://tec.openplanner.team/stops/X736ada"], ["https://tec.openplanner.team/stops/H1bo102a", "https://tec.openplanner.team/stops/H1hi122a"], ["https://tec.openplanner.team/stops/X661aua", "https://tec.openplanner.team/stops/X672abb"], ["https://tec.openplanner.team/stops/X836acb", "https://tec.openplanner.team/stops/X836ada"], ["https://tec.openplanner.team/stops/LeUmoor1", "https://tec.openplanner.team/stops/LeUnopr1"], ["https://tec.openplanner.team/stops/H1bo107a", "https://tec.openplanner.team/stops/H1bo109b"], ["https://tec.openplanner.team/stops/H4be108a", "https://tec.openplanner.team/stops/H4be147b"], ["https://tec.openplanner.team/stops/N548amb", "https://tec.openplanner.team/stops/N548ayb"], ["https://tec.openplanner.team/stops/X773acb", "https://tec.openplanner.team/stops/X908aca"], ["https://tec.openplanner.team/stops/N229alb", "https://tec.openplanner.team/stops/N229ara"], ["https://tec.openplanner.team/stops/Ltiferb1", "https://tec.openplanner.team/stops/Ltipass2"], ["https://tec.openplanner.team/stops/H1ob330b", "https://tec.openplanner.team/stops/H1ob335c"], ["https://tec.openplanner.team/stops/Bchgbel2", "https://tec.openplanner.team/stops/Btsllnd1"], ["https://tec.openplanner.team/stops/Ccusole1", "https://tec.openplanner.team/stops/Cgycime2"], ["https://tec.openplanner.team/stops/LBpecco1", "https://tec.openplanner.team/stops/LBpecco3"], ["https://tec.openplanner.team/stops/N150aia", "https://tec.openplanner.team/stops/N150aib"], ["https://tec.openplanner.team/stops/Lgrbonn1", "https://tec.openplanner.team/stops/Lgrlimi1"], ["https://tec.openplanner.team/stops/LhPhale1", "https://tec.openplanner.team/stops/LhPkirc2"], ["https://tec.openplanner.team/stops/Bnetace1", "https://tec.openplanner.team/stops/Bnetace2"], ["https://tec.openplanner.team/stops/H4fr146a", "https://tec.openplanner.team/stops/H4oq223b"], ["https://tec.openplanner.team/stops/N584aub", "https://tec.openplanner.team/stops/N584bpa"], ["https://tec.openplanner.team/stops/Bwbfckr2", "https://tec.openplanner.team/stops/Bwbfgar1"], ["https://tec.openplanner.team/stops/Barqhro4", "https://tec.openplanner.team/stops/Bfelbri2"], ["https://tec.openplanner.team/stops/Bsdafra1", "https://tec.openplanner.team/stops/Csdrofr1"], ["https://tec.openplanner.team/stops/X639ajb", "https://tec.openplanner.team/stops/X640ata"], ["https://tec.openplanner.team/stops/N501dgb", "https://tec.openplanner.team/stops/N501dja"], ["https://tec.openplanner.team/stops/N525aza", "https://tec.openplanner.team/stops/N525baa"], ["https://tec.openplanner.team/stops/Bjdscnd1", "https://tec.openplanner.team/stops/Bjdssta2"], ["https://tec.openplanner.team/stops/Crg3arb1", "https://tec.openplanner.team/stops/Crgmgri1"], ["https://tec.openplanner.team/stops/LbTkran1", "https://tec.openplanner.team/stops/LbTkreu1"], ["https://tec.openplanner.team/stops/Blhufro1", "https://tec.openplanner.team/stops/Blhutma1"], ["https://tec.openplanner.team/stops/Ltigare1", "https://tec.openplanner.team/stops/Ltigare2"], ["https://tec.openplanner.team/stops/Lligara2", "https://tec.openplanner.team/stops/LVSpn--2"], ["https://tec.openplanner.team/stops/N506bfb", "https://tec.openplanner.team/stops/N512axa"], ["https://tec.openplanner.team/stops/Lsn130-2", "https://tec.openplanner.team/stops/Lsnhoco2"], ["https://tec.openplanner.team/stops/X897afb", "https://tec.openplanner.team/stops/X897axa"], ["https://tec.openplanner.team/stops/N573ada", "https://tec.openplanner.team/stops/N573adb"], ["https://tec.openplanner.team/stops/N117aqa", "https://tec.openplanner.team/stops/N117ara"], ["https://tec.openplanner.team/stops/N152aba", "https://tec.openplanner.team/stops/N152abb"], ["https://tec.openplanner.team/stops/LLxnive1", "https://tec.openplanner.team/stops/LLxnive2"], ["https://tec.openplanner.team/stops/H4mo146a", "https://tec.openplanner.team/stops/H4mo182a"], ["https://tec.openplanner.team/stops/Bcsegal2", "https://tec.openplanner.team/stops/Bcsempl2"], ["https://tec.openplanner.team/stops/Bnivvcw1", "https://tec.openplanner.team/stops/Bnivvcw2"], ["https://tec.openplanner.team/stops/X908adb", "https://tec.openplanner.team/stops/X908afa"], ["https://tec.openplanner.team/stops/X996abb", "https://tec.openplanner.team/stops/X996adb"], ["https://tec.openplanner.team/stops/NL37aab", "https://tec.openplanner.team/stops/NL37aob"], ["https://tec.openplanner.team/stops/Lfhmarn1", "https://tec.openplanner.team/stops/Lfhncha1"], ["https://tec.openplanner.team/stops/N501aba", "https://tec.openplanner.team/stops/N503aab"], ["https://tec.openplanner.team/stops/Bgnvtil2", "https://tec.openplanner.team/stops/Bgnvvol2"], ["https://tec.openplanner.team/stops/Cchoues1", "https://tec.openplanner.team/stops/CMoues1"], ["https://tec.openplanner.team/stops/N232bia", "https://tec.openplanner.team/stops/N261aea"], ["https://tec.openplanner.team/stops/N538asa", "https://tec.openplanner.team/stops/N538axb"], ["https://tec.openplanner.team/stops/X982ana", "https://tec.openplanner.team/stops/X982aqc"], ["https://tec.openplanner.team/stops/Blhupri2", "https://tec.openplanner.team/stops/Bohnhan1"], ["https://tec.openplanner.team/stops/X725aff", "https://tec.openplanner.team/stops/X725bcb"], ["https://tec.openplanner.team/stops/LmTkirc2", "https://tec.openplanner.team/stops/LmTreic1"], ["https://tec.openplanner.team/stops/LSLabba1", "https://tec.openplanner.team/stops/LSLstra2"], ["https://tec.openplanner.team/stops/LrAberg1", "https://tec.openplanner.team/stops/LrAtitf1"], ["https://tec.openplanner.team/stops/H1ms297a", "https://tec.openplanner.team/stops/H1ms942a"], ["https://tec.openplanner.team/stops/LESlieg1", "https://tec.openplanner.team/stops/LESpaix1"], ["https://tec.openplanner.team/stops/Boppcen3", "https://tec.openplanner.team/stops/Bopprju1"], ["https://tec.openplanner.team/stops/X641abb", "https://tec.openplanner.team/stops/X646ada"], ["https://tec.openplanner.team/stops/H2ha142b", "https://tec.openplanner.team/stops/H2hg152a"], ["https://tec.openplanner.team/stops/H1ms265b", "https://tec.openplanner.team/stops/H1ms302a"], ["https://tec.openplanner.team/stops/LSLeg--1", "https://tec.openplanner.team/stops/LSLhall*"], ["https://tec.openplanner.team/stops/X769alb", "https://tec.openplanner.team/stops/X769ama"], ["https://tec.openplanner.team/stops/Balswwe1", "https://tec.openplanner.team/stops/Bbrlrph2"], ["https://tec.openplanner.team/stops/Crojume2", "https://tec.openplanner.team/stops/Cromart1"], ["https://tec.openplanner.team/stops/Bniv4co1", "https://tec.openplanner.team/stops/Bnivche2"], ["https://tec.openplanner.team/stops/H4jm118a", "https://tec.openplanner.team/stops/H4we136b"], ["https://tec.openplanner.team/stops/LCSfagn2", "https://tec.openplanner.team/stops/LHHcite2"], ["https://tec.openplanner.team/stops/N221aba", "https://tec.openplanner.team/stops/N221abb"], ["https://tec.openplanner.team/stops/Bspkbeu1", "https://tec.openplanner.team/stops/H1mk116a"], ["https://tec.openplanner.team/stops/Lvehv--2", "https://tec.openplanner.team/stops/Lverain1"], ["https://tec.openplanner.team/stops/LRccent1", "https://tec.openplanner.team/stops/LRfcent1"], ["https://tec.openplanner.team/stops/LMawilh3", "https://tec.openplanner.team/stops/LMawilh4"], ["https://tec.openplanner.team/stops/X512aaa", "https://tec.openplanner.team/stops/X512aab"], ["https://tec.openplanner.team/stops/Lghsimo3", "https://tec.openplanner.team/stops/Lmolagu1"], ["https://tec.openplanner.team/stops/N513awb", "https://tec.openplanner.team/stops/N523abb"], ["https://tec.openplanner.team/stops/X604aja", "https://tec.openplanner.team/stops/X625agb"], ["https://tec.openplanner.team/stops/H1ms302a", "https://tec.openplanner.team/stops/H1ss352b"], ["https://tec.openplanner.team/stops/N426adb", "https://tec.openplanner.team/stops/N426aea"], ["https://tec.openplanner.team/stops/H2pe159a", "https://tec.openplanner.team/stops/H3bi106b"], ["https://tec.openplanner.team/stops/Lagmair2", "https://tec.openplanner.team/stops/Lkiecol2"], ["https://tec.openplanner.team/stops/H4ty312a", "https://tec.openplanner.team/stops/H4ty322b"], ["https://tec.openplanner.team/stops/Cgrgrce1", "https://tec.openplanner.team/stops/NC14aqb"], ["https://tec.openplanner.team/stops/Cmlhauc2", "https://tec.openplanner.team/stops/NC02apa"], ["https://tec.openplanner.team/stops/H4oq224b", "https://tec.openplanner.team/stops/H4ty327b"], ["https://tec.openplanner.team/stops/Cflpost1", "https://tec.openplanner.team/stops/Cflpost2"], ["https://tec.openplanner.team/stops/N538ama", "https://tec.openplanner.team/stops/N538amb"], ["https://tec.openplanner.team/stops/N561aib", "https://tec.openplanner.team/stops/N561aic"], ["https://tec.openplanner.team/stops/LWEbruy1", "https://tec.openplanner.team/stops/LWEpaul1"], ["https://tec.openplanner.team/stops/H4eg106a", "https://tec.openplanner.team/stops/H4eg107b"], ["https://tec.openplanner.team/stops/X615arb", "https://tec.openplanner.team/stops/X687aia"], ["https://tec.openplanner.team/stops/H4ka393b", "https://tec.openplanner.team/stops/H4ka394b"], ["https://tec.openplanner.team/stops/X659acb", "https://tec.openplanner.team/stops/X659adb"], ["https://tec.openplanner.team/stops/H4ab101a", "https://tec.openplanner.team/stops/H4ab103a"], ["https://tec.openplanner.team/stops/Bbcoeco2", "https://tec.openplanner.team/stops/H3br102a"], ["https://tec.openplanner.team/stops/H4fo118a", "https://tec.openplanner.team/stops/H4fo118b"], ["https://tec.openplanner.team/stops/Cgzvivi1", "https://tec.openplanner.team/stops/Cgzvivi2"], ["https://tec.openplanner.team/stops/LbUbutg1", "https://tec.openplanner.team/stops/LbUpost1"], ["https://tec.openplanner.team/stops/Lvedepo*", "https://tec.openplanner.team/stops/Lverdep1"], ["https://tec.openplanner.team/stops/LSythie1", "https://tec.openplanner.team/stops/LSythie2"], ["https://tec.openplanner.team/stops/Lveabat1", "https://tec.openplanner.team/stops/Lvepala5"], ["https://tec.openplanner.team/stops/X823aba", "https://tec.openplanner.team/stops/X823abb"], ["https://tec.openplanner.team/stops/Balswsa1", "https://tec.openplanner.team/stops/Brsgrol2"], ["https://tec.openplanner.team/stops/X775ajb", "https://tec.openplanner.team/stops/X775aka"], ["https://tec.openplanner.team/stops/Bcsebea4", "https://tec.openplanner.team/stops/Bottcba1"], ["https://tec.openplanner.team/stops/Cjxpann1", "https://tec.openplanner.team/stops/Cmx3arb1"], ["https://tec.openplanner.team/stops/N207aaa", "https://tec.openplanner.team/stops/N207afb"], ["https://tec.openplanner.team/stops/LHuetat1", "https://tec.openplanner.team/stops/LMHmeha1"], ["https://tec.openplanner.team/stops/Llglonh1", "https://tec.openplanner.team/stops/Llglonh2"], ["https://tec.openplanner.team/stops/Lbhbalt1", "https://tec.openplanner.team/stops/Lflprev2"], ["https://tec.openplanner.team/stops/Lmndeso1", "https://tec.openplanner.team/stops/Lmntast2"], ["https://tec.openplanner.team/stops/Bwav4sa1", "https://tec.openplanner.team/stops/Bwavche2"], ["https://tec.openplanner.team/stops/N351afb", "https://tec.openplanner.team/stops/X351abb"], ["https://tec.openplanner.team/stops/LLrdrev1", "https://tec.openplanner.team/stops/LLrhaut2"], ["https://tec.openplanner.team/stops/N117azb", "https://tec.openplanner.team/stops/N147adb"], ["https://tec.openplanner.team/stops/X621aab", "https://tec.openplanner.team/stops/X622adb"], ["https://tec.openplanner.team/stops/Bhalvla1", "https://tec.openplanner.team/stops/Bwaucan1"], ["https://tec.openplanner.team/stops/H1on128a", "https://tec.openplanner.team/stops/H1on128b"], ["https://tec.openplanner.team/stops/H1gh143a", "https://tec.openplanner.team/stops/H1hh117b"], ["https://tec.openplanner.team/stops/N534abb", "https://tec.openplanner.team/stops/N534apg"], ["https://tec.openplanner.team/stops/LTicent1", "https://tec.openplanner.team/stops/LTimalv1"], ["https://tec.openplanner.team/stops/N537aha", "https://tec.openplanner.team/stops/N537ahb"], ["https://tec.openplanner.team/stops/X640aeb", "https://tec.openplanner.team/stops/X640afa"], ["https://tec.openplanner.team/stops/H2le146a", "https://tec.openplanner.team/stops/H2le146b"], ["https://tec.openplanner.team/stops/LaNmuhl1", "https://tec.openplanner.team/stops/LaNmuhl4"], ["https://tec.openplanner.team/stops/Cmlcaya2", "https://tec.openplanner.team/stops/Cmlvxmo2"], ["https://tec.openplanner.team/stops/X614ajb", "https://tec.openplanner.team/stops/X614aka"], ["https://tec.openplanner.team/stops/H4cw105b", "https://tec.openplanner.team/stops/H4cw106a"], ["https://tec.openplanner.team/stops/X802adb", "https://tec.openplanner.team/stops/X802apb"], ["https://tec.openplanner.team/stops/H1ba119b", "https://tec.openplanner.team/stops/H1ba119c"], ["https://tec.openplanner.team/stops/LBaeg--1", "https://tec.openplanner.team/stops/LNEgaul4"], ["https://tec.openplanner.team/stops/N151aia", "https://tec.openplanner.team/stops/N151aib"], ["https://tec.openplanner.team/stops/LBHgile2", "https://tec.openplanner.team/stops/LGObeth2"], ["https://tec.openplanner.team/stops/Ljeblum2", "https://tec.openplanner.team/stops/LjedTEC1"], ["https://tec.openplanner.team/stops/X641aza", "https://tec.openplanner.team/stops/X823aab"], ["https://tec.openplanner.team/stops/H1sy140a", "https://tec.openplanner.team/stops/H1to155a"], ["https://tec.openplanner.team/stops/Cmerdby1", "https://tec.openplanner.team/stops/Cmestas1"], ["https://tec.openplanner.team/stops/Lmojoan1", "https://tec.openplanner.team/stops/Lmolama2"], ["https://tec.openplanner.team/stops/LBAcent1", "https://tec.openplanner.team/stops/LBAcent2"], ["https://tec.openplanner.team/stops/H4ty285a", "https://tec.openplanner.team/stops/H4ty285c"], ["https://tec.openplanner.team/stops/Bnivind2", "https://tec.openplanner.team/stops/Bnivphm2"], ["https://tec.openplanner.team/stops/LLgmini2", "https://tec.openplanner.team/stops/LRCviad2"], ["https://tec.openplanner.team/stops/X639aca", "https://tec.openplanner.team/stops/X639apa"], ["https://tec.openplanner.team/stops/H2ca100a", "https://tec.openplanner.team/stops/H2ca109b"], ["https://tec.openplanner.team/stops/X261aaa", "https://tec.openplanner.team/stops/X261aab"], ["https://tec.openplanner.team/stops/LORgr8-1", "https://tec.openplanner.team/stops/LORruis1"], ["https://tec.openplanner.team/stops/Bllngar4", "https://tec.openplanner.team/stops/Bllngar5"], ["https://tec.openplanner.team/stops/Lrclant1", "https://tec.openplanner.team/stops/Lrcpaqu1"], ["https://tec.openplanner.team/stops/X618aia", "https://tec.openplanner.team/stops/X618aib"], ["https://tec.openplanner.team/stops/LAWchau1", "https://tec.openplanner.team/stops/LAWhein2"], ["https://tec.openplanner.team/stops/Lvefran1", "https://tec.openplanner.team/stops/Lveherl2"], ["https://tec.openplanner.team/stops/Bnivall1", "https://tec.openplanner.team/stops/Bnivchh1"], ["https://tec.openplanner.team/stops/N531aaa", "https://tec.openplanner.team/stops/N531aba"], ["https://tec.openplanner.team/stops/X639ana", "https://tec.openplanner.team/stops/X640aia"], ["https://tec.openplanner.team/stops/H1le117a", "https://tec.openplanner.team/stops/H1le129b"], ["https://tec.openplanner.team/stops/N547aab", "https://tec.openplanner.team/stops/N547ala"], ["https://tec.openplanner.team/stops/Lbrddef4", "https://tec.openplanner.team/stops/Llgrull1"], ["https://tec.openplanner.team/stops/X993ajb", "https://tec.openplanner.team/stops/X995aca"], ["https://tec.openplanner.team/stops/X892aea", "https://tec.openplanner.team/stops/X892ajb"], ["https://tec.openplanner.team/stops/LMYchpl1", "https://tec.openplanner.team/stops/LMYchpl2"], ["https://tec.openplanner.team/stops/N349aba", "https://tec.openplanner.team/stops/N349aeb"], ["https://tec.openplanner.team/stops/X758aea", "https://tec.openplanner.team/stops/X758aeb"], ["https://tec.openplanner.team/stops/N352aca", "https://tec.openplanner.team/stops/N352ajb"], ["https://tec.openplanner.team/stops/H4mo195a", "https://tec.openplanner.team/stops/H4mo195b"], ["https://tec.openplanner.team/stops/Bbeaap12", "https://tec.openplanner.team/stops/Bbeaegl2"], ["https://tec.openplanner.team/stops/N531aob", "https://tec.openplanner.team/stops/N531apb"], ["https://tec.openplanner.team/stops/LLTcoop1", "https://tec.openplanner.team/stops/LLTgole2"], ["https://tec.openplanner.team/stops/Ljerobi2", "https://tec.openplanner.team/stops/Ljetomb2"], ["https://tec.openplanner.team/stops/N232aea", "https://tec.openplanner.team/stops/N261aba"], ["https://tec.openplanner.team/stops/N501ksb", "https://tec.openplanner.team/stops/N501kxb"], ["https://tec.openplanner.team/stops/NL76acb", "https://tec.openplanner.team/stops/NL76ada"], ["https://tec.openplanner.team/stops/Bjodmal2", "https://tec.openplanner.team/stops/Bjodpce1"], ["https://tec.openplanner.team/stops/LHCmonu2", "https://tec.openplanner.team/stops/LHCmonu3"], ["https://tec.openplanner.team/stops/Lflec--1", "https://tec.openplanner.team/stops/Lflmc--1"], ["https://tec.openplanner.team/stops/Cmtpire2", "https://tec.openplanner.team/stops/Cmtrbla1"], ["https://tec.openplanner.team/stops/H1hl126a", "https://tec.openplanner.team/stops/H1vs144a"], ["https://tec.openplanner.team/stops/Llgbwez1", "https://tec.openplanner.team/stops/Llglair2"], ["https://tec.openplanner.team/stops/H4po125a", "https://tec.openplanner.team/stops/H4po127a"], ["https://tec.openplanner.team/stops/X610aha", "https://tec.openplanner.team/stops/X610aib"], ["https://tec.openplanner.team/stops/Llgcong1", "https://tec.openplanner.team/stops/Llgparc1"], ["https://tec.openplanner.team/stops/H4lp120a", "https://tec.openplanner.team/stops/H4lp122b"], ["https://tec.openplanner.team/stops/LSPmari1", "https://tec.openplanner.team/stops/LSPsous1"], ["https://tec.openplanner.team/stops/Cstplac1", "https://tec.openplanner.team/stops/Cstplac2"], ["https://tec.openplanner.team/stops/X734aqa", "https://tec.openplanner.team/stops/X734aqb"], ["https://tec.openplanner.team/stops/Ccuplai1", "https://tec.openplanner.team/stops/Ccuplai2"], ["https://tec.openplanner.team/stops/N542adb", "https://tec.openplanner.team/stops/N578aba"], ["https://tec.openplanner.team/stops/Lpebeco2", "https://tec.openplanner.team/stops/LTAairi2"], ["https://tec.openplanner.team/stops/N541aea", "https://tec.openplanner.team/stops/N541aeb"], ["https://tec.openplanner.team/stops/Ccodubo1", "https://tec.openplanner.team/stops/Ccodubo2"], ["https://tec.openplanner.team/stops/Clodrio3", "https://tec.openplanner.team/stops/Clodrio4"], ["https://tec.openplanner.team/stops/X612adb", "https://tec.openplanner.team/stops/X623aea"], ["https://tec.openplanner.team/stops/Lanadmi1", "https://tec.openplanner.team/stops/Lanstat2"], ["https://tec.openplanner.team/stops/LFIcabi1", "https://tec.openplanner.team/stops/LFIeg--2"], ["https://tec.openplanner.team/stops/Lhuchev2", "https://tec.openplanner.team/stops/Lhulibe2"], ["https://tec.openplanner.team/stops/H4ty286a", "https://tec.openplanner.team/stops/H4ty312b"], ["https://tec.openplanner.team/stops/N201aia", "https://tec.openplanner.team/stops/N201ajb"], ["https://tec.openplanner.team/stops/Bhoeboo1", "https://tec.openplanner.team/stops/Bovejme2"], ["https://tec.openplanner.team/stops/Lhrlico3", "https://tec.openplanner.team/stops/Lhrpwan1"], ["https://tec.openplanner.team/stops/N225acb", "https://tec.openplanner.team/stops/N225aeb"], ["https://tec.openplanner.team/stops/LMTdeho1", "https://tec.openplanner.team/stops/LXfcore1"], ["https://tec.openplanner.team/stops/H3bo103a", "https://tec.openplanner.team/stops/H3th127a"], ["https://tec.openplanner.team/stops/X999apa", "https://tec.openplanner.team/stops/X999asb"], ["https://tec.openplanner.team/stops/X759aca", "https://tec.openplanner.team/stops/X759acb"], ["https://tec.openplanner.team/stops/Llgandr2", "https://tec.openplanner.team/stops/Llgfail1"], ["https://tec.openplanner.team/stops/N507aoa", "https://tec.openplanner.team/stops/N507aob"], ["https://tec.openplanner.team/stops/N348aba", "https://tec.openplanner.team/stops/N353awb"], ["https://tec.openplanner.team/stops/Ccoh1211", "https://tec.openplanner.team/stops/Ccomiau2"], ["https://tec.openplanner.team/stops/Ctmdema1", "https://tec.openplanner.team/stops/Ctmdema2"], ["https://tec.openplanner.team/stops/Bclgvmo2", "https://tec.openplanner.team/stops/Bnilcim1"], ["https://tec.openplanner.team/stops/LLR4bra1", "https://tec.openplanner.team/stops/LLRptma2"], ["https://tec.openplanner.team/stops/LmHflor2", "https://tec.openplanner.team/stops/LmHschm1"], ["https://tec.openplanner.team/stops/H4ka175b", "https://tec.openplanner.team/stops/H4ka183b"], ["https://tec.openplanner.team/stops/X912aia", "https://tec.openplanner.team/stops/X912aja"], ["https://tec.openplanner.team/stops/LBhcent1", "https://tec.openplanner.team/stops/LBhsign2"], ["https://tec.openplanner.team/stops/LrDkirc1", "https://tec.openplanner.team/stops/LrEfeck1"], ["https://tec.openplanner.team/stops/H1by100a", "https://tec.openplanner.team/stops/H1by104a"], ["https://tec.openplanner.team/stops/X637acb", "https://tec.openplanner.team/stops/X637ada"], ["https://tec.openplanner.team/stops/LAVdepr1", "https://tec.openplanner.team/stops/LAVdepr2"], ["https://tec.openplanner.team/stops/N501aea", "https://tec.openplanner.team/stops/N501afa"], ["https://tec.openplanner.team/stops/LTaeg--1", "https://tec.openplanner.team/stops/LTaeg--2"], ["https://tec.openplanner.team/stops/Cfogaul2", "https://tec.openplanner.team/stops/Cfohopi1"], ["https://tec.openplanner.team/stops/Buccrac1", "https://tec.openplanner.team/stops/Buccrac2"], ["https://tec.openplanner.team/stops/H4wa151b", "https://tec.openplanner.team/stops/H4wa159b"], ["https://tec.openplanner.team/stops/LaMbull2", "https://tec.openplanner.team/stops/LaMmark1"], ["https://tec.openplanner.team/stops/Llggill2", "https://tec.openplanner.team/stops/Lsntvbi1"], ["https://tec.openplanner.team/stops/X614apa", "https://tec.openplanner.team/stops/X614apb"], ["https://tec.openplanner.team/stops/Bbcoeco2", "https://tec.openplanner.team/stops/Bbcoser1"], ["https://tec.openplanner.team/stops/X999ada", "https://tec.openplanner.team/stops/X999adb"], ["https://tec.openplanner.team/stops/Ccipech1", "https://tec.openplanner.team/stops/Cmtstan3"], ["https://tec.openplanner.team/stops/Bfledpi2", "https://tec.openplanner.team/stops/Bsamfma1"], ["https://tec.openplanner.team/stops/H1bb113b", "https://tec.openplanner.team/stops/H1bb114a"], ["https://tec.openplanner.team/stops/N127acb", "https://tec.openplanner.team/stops/N127bba"], ["https://tec.openplanner.team/stops/X948ala", "https://tec.openplanner.team/stops/X948amb"], ["https://tec.openplanner.team/stops/X561aba", "https://tec.openplanner.team/stops/X561aea"], ["https://tec.openplanner.team/stops/LBGvill1", "https://tec.openplanner.team/stops/LBGvill2"], ["https://tec.openplanner.team/stops/H4am101a", "https://tec.openplanner.team/stops/H4an108a"], ["https://tec.openplanner.team/stops/LhEbruc1", "https://tec.openplanner.team/stops/LhEcolo1"], ["https://tec.openplanner.team/stops/X608aga", "https://tec.openplanner.team/stops/X608aza"], ["https://tec.openplanner.team/stops/H1sy143a", "https://tec.openplanner.team/stops/H1sy150b"], ["https://tec.openplanner.team/stops/X802aba", "https://tec.openplanner.team/stops/X882ala"], ["https://tec.openplanner.team/stops/Cchmamb2", "https://tec.openplanner.team/stops/Cchmonu3"], ["https://tec.openplanner.team/stops/Lbobuil1", "https://tec.openplanner.team/stops/Lbomidi1"], ["https://tec.openplanner.team/stops/X739aab", "https://tec.openplanner.team/stops/X739aeb"], ["https://tec.openplanner.team/stops/X820aca", "https://tec.openplanner.team/stops/X820afa"], ["https://tec.openplanner.team/stops/Lvealbe2", "https://tec.openplanner.team/stops/Lvefran1"], ["https://tec.openplanner.team/stops/Llgbwez2", "https://tec.openplanner.team/stops/Llgcham3"], ["https://tec.openplanner.team/stops/LRRchea3", "https://tec.openplanner.team/stops/LRRelec3"], ["https://tec.openplanner.team/stops/LFPgeme1", "https://tec.openplanner.team/stops/LWRferm2"], ["https://tec.openplanner.team/stops/Lbocarr1", "https://tec.openplanner.team/stops/Lbocond2"], ["https://tec.openplanner.team/stops/Brsrabe1", "https://tec.openplanner.team/stops/Brsrbbo2"], ["https://tec.openplanner.team/stops/N549aaa", "https://tec.openplanner.team/stops/N578aab"], ["https://tec.openplanner.team/stops/N343aba", "https://tec.openplanner.team/stops/N343abb"], ["https://tec.openplanner.team/stops/Cmbcime4", "https://tec.openplanner.team/stops/Crbreve2"], ["https://tec.openplanner.team/stops/LHZcime1", "https://tec.openplanner.team/stops/LHZcime2"], ["https://tec.openplanner.team/stops/LWaruth1", "https://tec.openplanner.team/stops/LWaruth2"], ["https://tec.openplanner.team/stops/Lsmh1802", "https://tec.openplanner.team/stops/Lsmh3021"], ["https://tec.openplanner.team/stops/Bwavzno1", "https://tec.openplanner.team/stops/Bwavzno2"], ["https://tec.openplanner.team/stops/X774adc", "https://tec.openplanner.team/stops/X774afa"], ["https://tec.openplanner.team/stops/Cfmwaut2", "https://tec.openplanner.team/stops/Ctrsema1"], ["https://tec.openplanner.team/stops/Lvegazo1", "https://tec.openplanner.team/stops/Lveptle4"], ["https://tec.openplanner.team/stops/N244apb", "https://tec.openplanner.team/stops/N244ata"], ["https://tec.openplanner.team/stops/LGecime1", "https://tec.openplanner.team/stops/LGecime2"], ["https://tec.openplanner.team/stops/H3lr109c", "https://tec.openplanner.team/stops/H3lr117a"], ["https://tec.openplanner.team/stops/LMHec--1", "https://tec.openplanner.team/stops/LMHplac1"], ["https://tec.openplanner.team/stops/LBEairp4", "https://tec.openplanner.team/stops/LBEtroo1"], ["https://tec.openplanner.team/stops/X595ahb", "https://tec.openplanner.team/stops/X796aia"], ["https://tec.openplanner.team/stops/N357aca", "https://tec.openplanner.team/stops/X351ada"], ["https://tec.openplanner.team/stops/Crehout1", "https://tec.openplanner.team/stops/Crehout2"], ["https://tec.openplanner.team/stops/LHMchbl2", "https://tec.openplanner.team/stops/LHMhind2"], ["https://tec.openplanner.team/stops/LSkcomb2", "https://tec.openplanner.team/stops/LSkdouf2"], ["https://tec.openplanner.team/stops/X801bdb", "https://tec.openplanner.team/stops/X801bma"], ["https://tec.openplanner.team/stops/Cfaeclu2", "https://tec.openplanner.team/stops/Crseuro2"], ["https://tec.openplanner.team/stops/X685aia", "https://tec.openplanner.team/stops/X687afa"], ["https://tec.openplanner.team/stops/LLxcrem1", "https://tec.openplanner.team/stops/LLxcrem2"], ["https://tec.openplanner.team/stops/Bgntcoo1", "https://tec.openplanner.team/stops/Bgntcoo2"], ["https://tec.openplanner.team/stops/N122aaa", "https://tec.openplanner.team/stops/N122aba"], ["https://tec.openplanner.team/stops/N532aca", "https://tec.openplanner.team/stops/N533aqb"], ["https://tec.openplanner.team/stops/LVNbale2", "https://tec.openplanner.team/stops/LWzwanz2"], ["https://tec.openplanner.team/stops/H2ca109a", "https://tec.openplanner.team/stops/H2ca109b"], ["https://tec.openplanner.team/stops/Bsenpbi2", "https://tec.openplanner.team/stops/H2se109a"], ["https://tec.openplanner.team/stops/H4wp148a", "https://tec.openplanner.team/stops/H4wp148b"], ["https://tec.openplanner.team/stops/N513abb", "https://tec.openplanner.team/stops/N513acd"], ["https://tec.openplanner.team/stops/Cmopn1", "https://tec.openplanner.team/stops/Cmopn6"], ["https://tec.openplanner.team/stops/H1gy114b", "https://tec.openplanner.team/stops/H1le125a"], ["https://tec.openplanner.team/stops/LVPcoeu1", "https://tec.openplanner.team/stops/LVPcoeu2"], ["https://tec.openplanner.team/stops/N155ada", "https://tec.openplanner.team/stops/N155akb"], ["https://tec.openplanner.team/stops/X661ajb", "https://tec.openplanner.team/stops/X661bca"], ["https://tec.openplanner.team/stops/N584aka", "https://tec.openplanner.team/stops/N584alb"], ["https://tec.openplanner.team/stops/H2go117b", "https://tec.openplanner.team/stops/H2gy105b"], ["https://tec.openplanner.team/stops/Bhenhau2", "https://tec.openplanner.team/stops/Bhenmal1"], ["https://tec.openplanner.team/stops/N117aga", "https://tec.openplanner.team/stops/N145aib"], ["https://tec.openplanner.team/stops/X725acb", "https://tec.openplanner.team/stops/X725ahb"], ["https://tec.openplanner.team/stops/Cmtpblo1", "https://tec.openplanner.team/stops/Cmtprey1"], ["https://tec.openplanner.team/stops/LCvoufn1", "https://tec.openplanner.team/stops/LWblesp2"], ["https://tec.openplanner.team/stops/Lancolr2", "https://tec.openplanner.team/stops/Lanyser1"], ["https://tec.openplanner.team/stops/Cgysole2", "https://tec.openplanner.team/stops/CMsolei1"], ["https://tec.openplanner.team/stops/H2ll183a", "https://tec.openplanner.team/stops/H2ll201b"], ["https://tec.openplanner.team/stops/X989aea", "https://tec.openplanner.team/stops/X989afb"], ["https://tec.openplanner.team/stops/N340acb", "https://tec.openplanner.team/stops/N340acc"], ["https://tec.openplanner.team/stops/X641ahb", "https://tec.openplanner.team/stops/X641aib"], ["https://tec.openplanner.team/stops/LSU50--2", "https://tec.openplanner.team/stops/LSUroyo2"], ["https://tec.openplanner.team/stops/X318abb", "https://tec.openplanner.team/stops/X318ada"], ["https://tec.openplanner.team/stops/H2le147a", "https://tec.openplanner.team/stops/H2le150a"], ["https://tec.openplanner.team/stops/Cfcbobr2", "https://tec.openplanner.team/stops/Cfccuch2"], ["https://tec.openplanner.team/stops/Ccucorb1", "https://tec.openplanner.team/stops/Ccucorb2"], ["https://tec.openplanner.team/stops/H4wn126b", "https://tec.openplanner.team/stops/H4wn127a"], ["https://tec.openplanner.team/stops/X907acb", "https://tec.openplanner.team/stops/X939acb"], ["https://tec.openplanner.team/stops/N501dib", "https://tec.openplanner.team/stops/N501leb"], ["https://tec.openplanner.team/stops/H2lh132a", "https://tec.openplanner.team/stops/H2mo133b"], ["https://tec.openplanner.team/stops/H1hw125a", "https://tec.openplanner.team/stops/H1hw125b"], ["https://tec.openplanner.team/stops/H2hg268b", "https://tec.openplanner.team/stops/H2hg268c"], ["https://tec.openplanner.team/stops/Bbgerlr1", "https://tec.openplanner.team/stops/Bbgerlr2"], ["https://tec.openplanner.team/stops/H4ne143b", "https://tec.openplanner.team/stops/H4wa155b"], ["https://tec.openplanner.team/stops/X782aib", "https://tec.openplanner.team/stops/X782ajb"], ["https://tec.openplanner.team/stops/N347aeb", "https://tec.openplanner.team/stops/N347afb"], ["https://tec.openplanner.team/stops/H1mm121b", "https://tec.openplanner.team/stops/H1mm126b"], ["https://tec.openplanner.team/stops/LhSheid2", "https://tec.openplanner.team/stops/LkOgren2"], ["https://tec.openplanner.team/stops/Bsdabja2", "https://tec.openplanner.team/stops/Csdnive4"], ["https://tec.openplanner.team/stops/X615afb", "https://tec.openplanner.team/stops/X615bia"], ["https://tec.openplanner.team/stops/H4ce104a", "https://tec.openplanner.team/stops/H4ce108b"], ["https://tec.openplanner.team/stops/LMYmont2", "https://tec.openplanner.team/stops/X796aba"], ["https://tec.openplanner.team/stops/N577afb", "https://tec.openplanner.team/stops/N577ahb"], ["https://tec.openplanner.team/stops/Cmtplac1", "https://tec.openplanner.team/stops/Cmtplac7"], ["https://tec.openplanner.team/stops/N132aca", "https://tec.openplanner.team/stops/N152abc"], ["https://tec.openplanner.team/stops/H4lh120a", "https://tec.openplanner.team/stops/H4lh161b"], ["https://tec.openplanner.team/stops/X925amb", "https://tec.openplanner.team/stops/X925aob"], ["https://tec.openplanner.team/stops/X542aca", "https://tec.openplanner.team/stops/X542aia"], ["https://tec.openplanner.team/stops/LLrgobe1", "https://tec.openplanner.team/stops/LLrisa-*"], ["https://tec.openplanner.team/stops/H4ru245b", "https://tec.openplanner.team/stops/H4wc373b"], ["https://tec.openplanner.team/stops/H4wp148b", "https://tec.openplanner.team/stops/H4wp152b"], ["https://tec.openplanner.team/stops/X993ada", "https://tec.openplanner.team/stops/X993agb"], ["https://tec.openplanner.team/stops/LHApthe2", "https://tec.openplanner.team/stops/LHTmoul1"], ["https://tec.openplanner.team/stops/Bnilcab1", "https://tec.openplanner.team/stops/Bnilpor3"], ["https://tec.openplanner.team/stops/Cfomays1", "https://tec.openplanner.team/stops/Cgxfo142"], ["https://tec.openplanner.team/stops/Cjxpann1", "https://tec.openplanner.team/stops/Cjxpann2"], ["https://tec.openplanner.team/stops/X822abb", "https://tec.openplanner.team/stops/X822ana"], ["https://tec.openplanner.team/stops/X696aca", "https://tec.openplanner.team/stops/X696afa"], ["https://tec.openplanner.team/stops/X542aba", "https://tec.openplanner.team/stops/X777acb"], ["https://tec.openplanner.team/stops/N357aea", "https://tec.openplanner.team/stops/N988aaa"], ["https://tec.openplanner.team/stops/Bbsifmo2", "https://tec.openplanner.team/stops/Bbsipos2"], ["https://tec.openplanner.team/stops/X782aha", "https://tec.openplanner.team/stops/X784aea"], ["https://tec.openplanner.team/stops/H4me211c", "https://tec.openplanner.team/stops/H4ve134a"], ["https://tec.openplanner.team/stops/Bwatlbr1", "https://tec.openplanner.team/stops/Bwatle32"], ["https://tec.openplanner.team/stops/Cctsncb3", "https://tec.openplanner.team/stops/Cculgeo2"], ["https://tec.openplanner.team/stops/H4he103a", "https://tec.openplanner.team/stops/H4he106a"], ["https://tec.openplanner.team/stops/N551aba", "https://tec.openplanner.team/stops/N551afa"], ["https://tec.openplanner.team/stops/Btsleco1", "https://tec.openplanner.team/stops/Btslnil2"], ["https://tec.openplanner.team/stops/H2gy105b", "https://tec.openplanner.team/stops/H2gy106b"], ["https://tec.openplanner.team/stops/N170afa", "https://tec.openplanner.team/stops/NC14aba"], ["https://tec.openplanner.team/stops/Cacecol2", "https://tec.openplanner.team/stops/NC24aeb"], ["https://tec.openplanner.team/stops/Cflmarq1", "https://tec.openplanner.team/stops/Cflspir1"], ["https://tec.openplanner.team/stops/LGDgdou1", "https://tec.openplanner.team/stops/LXftche1"], ["https://tec.openplanner.team/stops/H4bo110a", "https://tec.openplanner.team/stops/H4bo179a"], ["https://tec.openplanner.team/stops/X752aaa", "https://tec.openplanner.team/stops/X752aab"], ["https://tec.openplanner.team/stops/H1po139b", "https://tec.openplanner.team/stops/H5gr137a"], ["https://tec.openplanner.team/stops/LSZchpl2", "https://tec.openplanner.team/stops/LSZeg--1"], ["https://tec.openplanner.team/stops/H2hp116b", "https://tec.openplanner.team/stops/H2ll181b"], ["https://tec.openplanner.team/stops/H1ba113b", "https://tec.openplanner.team/stops/H1qu111a"], ["https://tec.openplanner.team/stops/LEMgren*", "https://tec.openplanner.team/stops/LPldoua4"], ["https://tec.openplanner.team/stops/X768aia", "https://tec.openplanner.team/stops/X768amb"], ["https://tec.openplanner.team/stops/H5rx138b", "https://tec.openplanner.team/stops/H5rx143b"], ["https://tec.openplanner.team/stops/Btileco2", "https://tec.openplanner.team/stops/Btilsnc1"], ["https://tec.openplanner.team/stops/H5qu156c", "https://tec.openplanner.team/stops/H5qu182a"], ["https://tec.openplanner.team/stops/N141aja", "https://tec.openplanner.team/stops/N141anb"], ["https://tec.openplanner.team/stops/X669agc", "https://tec.openplanner.team/stops/X672afb"], ["https://tec.openplanner.team/stops/LaAhaup1", "https://tec.openplanner.team/stops/LaAhaup2"], ["https://tec.openplanner.team/stops/X684abb", "https://tec.openplanner.team/stops/X685afb"], ["https://tec.openplanner.team/stops/N521akb", "https://tec.openplanner.team/stops/N525afb"], ["https://tec.openplanner.team/stops/Lreclou2", "https://tec.openplanner.team/stops/Lrelier2"], ["https://tec.openplanner.team/stops/Bhmmcim1", "https://tec.openplanner.team/stops/Bhmmvdu1"], ["https://tec.openplanner.team/stops/LBBlaga2", "https://tec.openplanner.team/stops/LBBmc--1"], ["https://tec.openplanner.team/stops/Lkivolg1", "https://tec.openplanner.team/stops/Lkivolg2"], ["https://tec.openplanner.team/stops/Cchlamb1", "https://tec.openplanner.team/stops/Cchlamb2"], ["https://tec.openplanner.team/stops/Bneepne1", "https://tec.openplanner.team/stops/Bneervc2"], ["https://tec.openplanner.team/stops/LGMdrev2", "https://tec.openplanner.team/stops/LGMforg2"], ["https://tec.openplanner.team/stops/H4hn113a", "https://tec.openplanner.team/stops/H4hn115a"], ["https://tec.openplanner.team/stops/X937afa", "https://tec.openplanner.team/stops/X937ahb"], ["https://tec.openplanner.team/stops/Cgoclad2", "https://tec.openplanner.team/stops/Cgoulb1"], ["https://tec.openplanner.team/stops/N550agb", "https://tec.openplanner.team/stops/N550ana"], ["https://tec.openplanner.team/stops/N531aja", "https://tec.openplanner.team/stops/N531aqa"], ["https://tec.openplanner.team/stops/LVbsurr1", "https://tec.openplanner.team/stops/LVbsurr2"], ["https://tec.openplanner.team/stops/H2sv215a", "https://tec.openplanner.team/stops/H2sv218b"], ["https://tec.openplanner.team/stops/N501emb", "https://tec.openplanner.team/stops/N501kkb"], ["https://tec.openplanner.team/stops/Bfelrav2", "https://tec.openplanner.team/stops/H2se105a"], ["https://tec.openplanner.team/stops/LeYauto1", "https://tec.openplanner.team/stops/LeYdorf1"], ["https://tec.openplanner.team/stops/X897aaa", "https://tec.openplanner.team/stops/X898ahb"], ["https://tec.openplanner.team/stops/N141aaa", "https://tec.openplanner.team/stops/N425aba"], ["https://tec.openplanner.team/stops/H1qv110a", "https://tec.openplanner.team/stops/H1qv110b"], ["https://tec.openplanner.team/stops/H4ch114b", "https://tec.openplanner.team/stops/H4sm247b"], ["https://tec.openplanner.team/stops/Cjufrat1", "https://tec.openplanner.team/stops/Clocroi1"], ["https://tec.openplanner.team/stops/X897afa", "https://tec.openplanner.team/stops/X985ada"], ["https://tec.openplanner.team/stops/X921abb", "https://tec.openplanner.team/stops/X921adb"], ["https://tec.openplanner.team/stops/N538ava", "https://tec.openplanner.team/stops/N539awa"], ["https://tec.openplanner.team/stops/Chppack1", "https://tec.openplanner.team/stops/Cradest1"], ["https://tec.openplanner.team/stops/LGmhedo1", "https://tec.openplanner.team/stops/LGmhedo2"], ["https://tec.openplanner.team/stops/Bptemch1", "https://tec.openplanner.team/stops/Bptemch2"], ["https://tec.openplanner.team/stops/LKmdrie2", "https://tec.openplanner.team/stops/LKmeg--1"], ["https://tec.openplanner.team/stops/H1ro132a", "https://tec.openplanner.team/stops/H1ro137b"], ["https://tec.openplanner.team/stops/LWOcour1", "https://tec.openplanner.team/stops/LWOsass2"], ["https://tec.openplanner.team/stops/H2mo117a", "https://tec.openplanner.team/stops/H2mo119b"], ["https://tec.openplanner.team/stops/X940aeb", "https://tec.openplanner.team/stops/X940aed"], ["https://tec.openplanner.team/stops/Cchmott1", "https://tec.openplanner.team/stops/Cchmott2"], ["https://tec.openplanner.team/stops/LHAclin1", "https://tec.openplanner.team/stops/LVIhala4"], ["https://tec.openplanner.team/stops/X801cgb", "https://tec.openplanner.team/stops/X801cha"], ["https://tec.openplanner.team/stops/Clddelh1", "https://tec.openplanner.team/stops/Clddeve2"], ["https://tec.openplanner.team/stops/X361abb", "https://tec.openplanner.team/stops/X371aja"], ["https://tec.openplanner.team/stops/Balsnie1", "https://tec.openplanner.team/stops/Brsgfon2"], ["https://tec.openplanner.team/stops/X886aeb", "https://tec.openplanner.team/stops/X886afa"], ["https://tec.openplanner.team/stops/X663ara", "https://tec.openplanner.team/stops/X664apb"], ["https://tec.openplanner.team/stops/Crbhurt2", "https://tec.openplanner.team/stops/Crbreve1"], ["https://tec.openplanner.team/stops/LOmpont2", "https://tec.openplanner.team/stops/LOmrela2"], ["https://tec.openplanner.team/stops/N423abb", "https://tec.openplanner.team/stops/N423afa"], ["https://tec.openplanner.team/stops/N501anb", "https://tec.openplanner.team/stops/N501mbb"], ["https://tec.openplanner.team/stops/X812aba", "https://tec.openplanner.team/stops/X812aoa"], ["https://tec.openplanner.team/stops/N565afa", "https://tec.openplanner.team/stops/N565aib"], ["https://tec.openplanner.team/stops/Lanstat2", "https://tec.openplanner.team/stops/Llojeme4"], ["https://tec.openplanner.team/stops/Cpibois1", "https://tec.openplanner.team/stops/Cpipost1"], ["https://tec.openplanner.team/stops/LBbhupp2", "https://tec.openplanner.team/stops/LTPhenr1"], ["https://tec.openplanner.team/stops/N531aha", "https://tec.openplanner.team/stops/N531akb"], ["https://tec.openplanner.team/stops/Cmlange2", "https://tec.openplanner.team/stops/Cmtrbra2"], ["https://tec.openplanner.team/stops/Lglvict1", "https://tec.openplanner.team/stops/Lglvict2"], ["https://tec.openplanner.team/stops/LSzeg--1", "https://tec.openplanner.team/stops/LSzetoi2"], ["https://tec.openplanner.team/stops/Bborcro1", "https://tec.openplanner.team/stops/Bborcro2"], ["https://tec.openplanner.team/stops/X779aga", "https://tec.openplanner.team/stops/X779agb"], ["https://tec.openplanner.team/stops/Bcrnpla3", "https://tec.openplanner.team/stops/Bcrnpla4"], ["https://tec.openplanner.team/stops/Cflathe1", "https://tec.openplanner.team/stops/NC12adb"], ["https://tec.openplanner.team/stops/Loucent1", "https://tec.openplanner.team/stops/Lousite1"], ["https://tec.openplanner.team/stops/H1eu102a", "https://tec.openplanner.team/stops/H1eu102b"], ["https://tec.openplanner.team/stops/Lghberl1", "https://tec.openplanner.team/stops/Lmochan1"], ["https://tec.openplanner.team/stops/Ctrpn2", "https://tec.openplanner.team/stops/H2tz120a"], ["https://tec.openplanner.team/stops/LjeGRPMC", "https://tec.openplanner.team/stops/LjeGRPMD"], ["https://tec.openplanner.team/stops/H2ca101a", "https://tec.openplanner.team/stops/H2ca106b"], ["https://tec.openplanner.team/stops/LPRbayb2", "https://tec.openplanner.team/stops/LPRfour1"], ["https://tec.openplanner.team/stops/H3lr112a", "https://tec.openplanner.team/stops/H3lr120a"], ["https://tec.openplanner.team/stops/Bdlmgla2", "https://tec.openplanner.team/stops/Bwavlca2"], ["https://tec.openplanner.team/stops/Bwatmch3", "https://tec.openplanner.team/stops/Bwatpcs1"], ["https://tec.openplanner.team/stops/LaMadam1", "https://tec.openplanner.team/stops/LaMjous1"], ["https://tec.openplanner.team/stops/Bnivind1", "https://tec.openplanner.team/stops/Bnivtra1"], ["https://tec.openplanner.team/stops/Lrcchpl2", "https://tec.openplanner.team/stops/Lrcpaqu1"], ["https://tec.openplanner.team/stops/Bgnvgar1", "https://tec.openplanner.team/stops/Blhusor1"], ["https://tec.openplanner.team/stops/N534bub", "https://tec.openplanner.team/stops/N534bvb"], ["https://tec.openplanner.team/stops/X371abb", "https://tec.openplanner.team/stops/X371agb"], ["https://tec.openplanner.team/stops/N501hlb", "https://tec.openplanner.team/stops/N501hlx"], ["https://tec.openplanner.team/stops/H4ry129a", "https://tec.openplanner.team/stops/H4ry133b"], ["https://tec.openplanner.team/stops/LGetroi2", "https://tec.openplanner.team/stops/LSIgera2"], ["https://tec.openplanner.team/stops/N502aaa", "https://tec.openplanner.team/stops/N502aba"], ["https://tec.openplanner.team/stops/H1qv111b", "https://tec.openplanner.team/stops/H1qv113a"], ["https://tec.openplanner.team/stops/LhPprum1", "https://tec.openplanner.team/stops/LhPprum2"], ["https://tec.openplanner.team/stops/H1at110b", "https://tec.openplanner.team/stops/H1at110c"], ["https://tec.openplanner.team/stops/N170aga", "https://tec.openplanner.team/stops/N571akb"], ["https://tec.openplanner.team/stops/LkEbbl-2", "https://tec.openplanner.team/stops/LkEgds-1"], ["https://tec.openplanner.team/stops/Bperros2", "https://tec.openplanner.team/stops/NB33aeb"], ["https://tec.openplanner.team/stops/N501jna", "https://tec.openplanner.team/stops/N501jpa"], ["https://tec.openplanner.team/stops/H1au100a", "https://tec.openplanner.team/stops/H1mr123a"], ["https://tec.openplanner.team/stops/Csobail2", "https://tec.openplanner.team/stops/Csostoc1"], ["https://tec.openplanner.team/stops/H5ar104a", "https://tec.openplanner.team/stops/H5ar107a"], ["https://tec.openplanner.team/stops/Clacast1", "https://tec.openplanner.team/stops/Clafaub2"], ["https://tec.openplanner.team/stops/Bqueegl2", "https://tec.openplanner.team/stops/Bquepla2"], ["https://tec.openplanner.team/stops/N521asd", "https://tec.openplanner.team/stops/N521ata"], ["https://tec.openplanner.team/stops/X658adb", "https://tec.openplanner.team/stops/X658aeb"], ["https://tec.openplanner.team/stops/LSseg--1", "https://tec.openplanner.team/stops/LSseg--2"], ["https://tec.openplanner.team/stops/H1au111b", "https://tec.openplanner.team/stops/H1ro139a"], ["https://tec.openplanner.team/stops/N115ada", "https://tec.openplanner.team/stops/N115adb"], ["https://tec.openplanner.team/stops/LTNeau-1", "https://tec.openplanner.team/stops/LTNeau-2"], ["https://tec.openplanner.team/stops/Bbaualz2", "https://tec.openplanner.team/stops/Bbauham1"], ["https://tec.openplanner.team/stops/LLUlieg1", "https://tec.openplanner.team/stops/LLUmont1"], ["https://tec.openplanner.team/stops/LBKmoes2", "https://tec.openplanner.team/stops/LOeelbe1"], ["https://tec.openplanner.team/stops/N117bab", "https://tec.openplanner.team/stops/N147aea"], ["https://tec.openplanner.team/stops/LmDkirc1", "https://tec.openplanner.team/stops/LmDkirc2"], ["https://tec.openplanner.team/stops/H1gh147b", "https://tec.openplanner.team/stops/H1gh159a"], ["https://tec.openplanner.team/stops/NC14aqa", "https://tec.openplanner.team/stops/NC14aqb"], ["https://tec.openplanner.team/stops/Ccyga3", "https://tec.openplanner.team/stops/Ccygara1"], ["https://tec.openplanner.team/stops/Lthfagn2", "https://tec.openplanner.team/stops/LWalyce1"], ["https://tec.openplanner.team/stops/N534bng", "https://tec.openplanner.team/stops/N534bog"], ["https://tec.openplanner.team/stops/Bhalomo2", "https://tec.openplanner.team/stops/Bhalwat2"], ["https://tec.openplanner.team/stops/H1lb134a", "https://tec.openplanner.team/stops/H1lb134b"], ["https://tec.openplanner.team/stops/H1fr118a", "https://tec.openplanner.team/stops/H1no143b"], ["https://tec.openplanner.team/stops/N311aca", "https://tec.openplanner.team/stops/N311afa"], ["https://tec.openplanner.team/stops/N521asa", "https://tec.openplanner.team/stops/N521ata"], ["https://tec.openplanner.team/stops/N504aaa", "https://tec.openplanner.team/stops/N511aga"], ["https://tec.openplanner.team/stops/N132ada", "https://tec.openplanner.team/stops/N136aaa"], ["https://tec.openplanner.team/stops/NC44afa", "https://tec.openplanner.team/stops/NC44afb"], ["https://tec.openplanner.team/stops/X719abb", "https://tec.openplanner.team/stops/X720abb"], ["https://tec.openplanner.team/stops/Bzlufbo1", "https://tec.openplanner.team/stops/Bzluvil2"], ["https://tec.openplanner.team/stops/H2sv217b", "https://tec.openplanner.team/stops/H2tr257a"], ["https://tec.openplanner.team/stops/Lsnferr2", "https://tec.openplanner.team/stops/Lsnpaqu2"], ["https://tec.openplanner.team/stops/Crewaba2", "https://tec.openplanner.team/stops/Crewath2"], ["https://tec.openplanner.team/stops/X342aab", "https://tec.openplanner.team/stops/X342aha"], ["https://tec.openplanner.team/stops/LTHcent2", "https://tec.openplanner.team/stops/LTHec--2"], ["https://tec.openplanner.team/stops/LHCbois1", "https://tec.openplanner.team/stops/LHCquat4"], ["https://tec.openplanner.team/stops/X614bca", "https://tec.openplanner.team/stops/X626ala"], ["https://tec.openplanner.team/stops/X359aea", "https://tec.openplanner.team/stops/X359alb"], ["https://tec.openplanner.team/stops/Blsmcha2", "https://tec.openplanner.team/stops/Blsmcha3"], ["https://tec.openplanner.team/stops/X396adb", "https://tec.openplanner.team/stops/X396aea"], ["https://tec.openplanner.team/stops/Bmsgcap1", "https://tec.openplanner.team/stops/Bmsgcap2"], ["https://tec.openplanner.team/stops/Cvpcime1", "https://tec.openplanner.team/stops/Cvpcour2"], ["https://tec.openplanner.team/stops/N355aeb", "https://tec.openplanner.team/stops/N874agb"], ["https://tec.openplanner.team/stops/LWEgare1", "https://tec.openplanner.team/stops/LWEpl--1"], ["https://tec.openplanner.team/stops/H5rx126a", "https://tec.openplanner.team/stops/H5rx137b"], ["https://tec.openplanner.team/stops/Bjaufca1", "https://tec.openplanner.team/stops/Bjaugar3"], ["https://tec.openplanner.team/stops/Lghfors1", "https://tec.openplanner.team/stops/Ljerose4"], ["https://tec.openplanner.team/stops/Lmobrac2", "https://tec.openplanner.team/stops/Lsnbrac4"], ["https://tec.openplanner.team/stops/H1hh116a", "https://tec.openplanner.team/stops/H1hh117a"], ["https://tec.openplanner.team/stops/LJelava1", "https://tec.openplanner.team/stops/LMOstat2"], ["https://tec.openplanner.team/stops/N509aga", "https://tec.openplanner.team/stops/N509aka"], ["https://tec.openplanner.team/stops/Lpedeta1", "https://tec.openplanner.team/stops/Lpeflec2"], ["https://tec.openplanner.team/stops/Cpcarse1", "https://tec.openplanner.team/stops/Cpctrau2"], ["https://tec.openplanner.team/stops/X824aib", "https://tec.openplanner.team/stops/X824alb"], ["https://tec.openplanner.team/stops/LSHneuv1", "https://tec.openplanner.team/stops/LSHneuv2"], ["https://tec.openplanner.team/stops/X750aka", "https://tec.openplanner.team/stops/X780ata"], ["https://tec.openplanner.team/stops/X806aab", "https://tec.openplanner.team/stops/X806aia"], ["https://tec.openplanner.team/stops/Lsmrwan2", "https://tec.openplanner.team/stops/Lsmsech4"], ["https://tec.openplanner.team/stops/H4ty272a", "https://tec.openplanner.team/stops/H4ty313b"], ["https://tec.openplanner.team/stops/N234acb", "https://tec.openplanner.team/stops/N234afa"], ["https://tec.openplanner.team/stops/N217abb", "https://tec.openplanner.team/stops/N218aeb"], ["https://tec.openplanner.team/stops/H1fr112b", "https://tec.openplanner.team/stops/H1no143a"], ["https://tec.openplanner.team/stops/Bgemga10", "https://tec.openplanner.team/stops/N522bvh"], ["https://tec.openplanner.team/stops/N390aab", "https://tec.openplanner.team/stops/N390abb"], ["https://tec.openplanner.team/stops/Lghhoco2", "https://tec.openplanner.team/stops/Lghremy1"], ["https://tec.openplanner.team/stops/X904aka", "https://tec.openplanner.team/stops/X904ala"], ["https://tec.openplanner.team/stops/LLrmc--1", "https://tec.openplanner.team/stops/LLrmc--4"], ["https://tec.openplanner.team/stops/Cmlipsm3", "https://tec.openplanner.team/stops/Cmlrbru1"], ["https://tec.openplanner.team/stops/N528afy", "https://tec.openplanner.team/stops/N528ajb"], ["https://tec.openplanner.team/stops/Lghcoqs1", "https://tec.openplanner.team/stops/Lghcoqs2"], ["https://tec.openplanner.team/stops/LBjcent1", "https://tec.openplanner.team/stops/X715aka"], ["https://tec.openplanner.team/stops/N149aca", "https://tec.openplanner.team/stops/N149adb"], ["https://tec.openplanner.team/stops/LBNburg1", "https://tec.openplanner.team/stops/LBNover1"], ["https://tec.openplanner.team/stops/X910aha", "https://tec.openplanner.team/stops/X911aib"], ["https://tec.openplanner.team/stops/Cgyrjau1", "https://tec.openplanner.team/stops/Cmtduch2"], ["https://tec.openplanner.team/stops/H4wr173b", "https://tec.openplanner.team/stops/H4wr175b"], ["https://tec.openplanner.team/stops/Ljerobi1", "https://tec.openplanner.team/stops/Ljerouy2"], ["https://tec.openplanner.team/stops/NC11ama", "https://tec.openplanner.team/stops/NC11anb"], ["https://tec.openplanner.team/stops/LMfange2", "https://tec.openplanner.team/stops/LMffoot1"], ["https://tec.openplanner.team/stops/X633aia", "https://tec.openplanner.team/stops/X633aib"], ["https://tec.openplanner.team/stops/Bblaang2", "https://tec.openplanner.team/stops/Blilhay1"], ["https://tec.openplanner.team/stops/Louegla1", "https://tec.openplanner.team/stops/Louroos3"], ["https://tec.openplanner.team/stops/X344aeb", "https://tec.openplanner.team/stops/X363abb"], ["https://tec.openplanner.team/stops/H4bw100b", "https://tec.openplanner.team/stops/H4co103b"], ["https://tec.openplanner.team/stops/Cmlaili2", "https://tec.openplanner.team/stops/NC01afa"], ["https://tec.openplanner.team/stops/Bwatabs1", "https://tec.openplanner.team/stops/Bwatcci2"], ["https://tec.openplanner.team/stops/Bsdecdi1", "https://tec.openplanner.team/stops/N526aaa"], ["https://tec.openplanner.team/stops/Cthgend2", "https://tec.openplanner.team/stops/Cthhvil6"], ["https://tec.openplanner.team/stops/X636bfa", "https://tec.openplanner.team/stops/X636bga"], ["https://tec.openplanner.team/stops/H1bd100b", "https://tec.openplanner.team/stops/H1ol140b"], ["https://tec.openplanner.team/stops/Lemarde2", "https://tec.openplanner.team/stops/Lemfort1"], ["https://tec.openplanner.team/stops/X999ana", "https://tec.openplanner.team/stops/X999asa"], ["https://tec.openplanner.team/stops/Cmcbriq3", "https://tec.openplanner.team/stops/Cmcgoch1"], ["https://tec.openplanner.team/stops/LHUfrai1", "https://tec.openplanner.team/stops/LTiespe1"], ["https://tec.openplanner.team/stops/LlgCATH1", "https://tec.openplanner.team/stops/LlgOPER1"], ["https://tec.openplanner.team/stops/LMheg--1", "https://tec.openplanner.team/stops/LMheg--2"], ["https://tec.openplanner.team/stops/LHTeg--1", "https://tec.openplanner.team/stops/LHTmc--2"], ["https://tec.openplanner.team/stops/Cmlfeba1", "https://tec.openplanner.team/stops/Cmlipsm2"], ["https://tec.openplanner.team/stops/H4hx109b", "https://tec.openplanner.team/stops/H4mo191b"], ["https://tec.openplanner.team/stops/N234aba", "https://tec.openplanner.team/stops/N234aca"], ["https://tec.openplanner.team/stops/Lthfren1", "https://tec.openplanner.team/stops/Lthgros1"], ["https://tec.openplanner.team/stops/Ccicloc1", "https://tec.openplanner.team/stops/Ccicloc2"], ["https://tec.openplanner.team/stops/N540aaa", "https://tec.openplanner.team/stops/N540afa"], ["https://tec.openplanner.team/stops/Cflbrun1", "https://tec.openplanner.team/stops/Cflsncb3"], ["https://tec.openplanner.team/stops/X952aka", "https://tec.openplanner.team/stops/X955aaa"], ["https://tec.openplanner.team/stops/Bbeaap51", "https://tec.openplanner.team/stops/Bbeacha1"], ["https://tec.openplanner.team/stops/Ldicorb2", "https://tec.openplanner.team/stops/Ldihusq1"], ["https://tec.openplanner.team/stops/H4hx109a", "https://tec.openplanner.team/stops/H4mo148b"], ["https://tec.openplanner.team/stops/N538ada", "https://tec.openplanner.team/stops/N538adb"], ["https://tec.openplanner.team/stops/LEntrix1", "https://tec.openplanner.team/stops/LEnvill2"], ["https://tec.openplanner.team/stops/X937ala", "https://tec.openplanner.team/stops/X937alb"], ["https://tec.openplanner.team/stops/LPRbayb1", "https://tec.openplanner.team/stops/LPRmoul2"], ["https://tec.openplanner.team/stops/Cmychau2", "https://tec.openplanner.team/stops/Cmychpl2"], ["https://tec.openplanner.team/stops/LBPmili1", "https://tec.openplanner.team/stops/LGLc12-3"], ["https://tec.openplanner.team/stops/Ljugode1", "https://tec.openplanner.team/stops/Ljumiux1"], ["https://tec.openplanner.team/stops/H1ms362a", "https://tec.openplanner.team/stops/H1ob361a"], ["https://tec.openplanner.team/stops/X663ana", "https://tec.openplanner.team/stops/X664aoa"], ["https://tec.openplanner.team/stops/X639aja", "https://tec.openplanner.team/stops/X639akb"], ["https://tec.openplanner.team/stops/X925ahb", "https://tec.openplanner.team/stops/X925ana"], ["https://tec.openplanner.team/stops/Bvlvmar1", "https://tec.openplanner.team/stops/Bvlvpco1"], ["https://tec.openplanner.team/stops/LTIgare1", "https://tec.openplanner.team/stops/LTIpres1"], ["https://tec.openplanner.team/stops/LMFmerl2", "https://tec.openplanner.team/stops/Lqbecco1"], ["https://tec.openplanner.team/stops/N538acb", "https://tec.openplanner.team/stops/N538anb"], ["https://tec.openplanner.team/stops/Lanetie2", "https://tec.openplanner.team/stops/Lanrask1"], ["https://tec.openplanner.team/stops/X829adb", "https://tec.openplanner.team/stops/X829aea"], ["https://tec.openplanner.team/stops/LLYchpl2", "https://tec.openplanner.team/stops/LLYplac2"], ["https://tec.openplanner.team/stops/LDmcruc1", "https://tec.openplanner.team/stops/LDmhave2"], ["https://tec.openplanner.team/stops/H2sv216a", "https://tec.openplanner.team/stops/H2sv218a"], ["https://tec.openplanner.team/stops/N528aib", "https://tec.openplanner.team/stops/N528ara"], ["https://tec.openplanner.team/stops/X982aga", "https://tec.openplanner.team/stops/X982ahb"], ["https://tec.openplanner.team/stops/Cmygrbr4", "https://tec.openplanner.team/stops/Cmyoasi2"], ["https://tec.openplanner.team/stops/H1ho138b", "https://tec.openplanner.team/stops/H1wa143b"], ["https://tec.openplanner.team/stops/X781agb", "https://tec.openplanner.team/stops/X781ahb"], ["https://tec.openplanner.team/stops/H4ma398a", "https://tec.openplanner.team/stops/H4ma399a"], ["https://tec.openplanner.team/stops/Cgpmoul1", "https://tec.openplanner.team/stops/Cpcegli1"], ["https://tec.openplanner.team/stops/Cvpplan2", "https://tec.openplanner.team/stops/Cvpsawe1"], ["https://tec.openplanner.team/stops/H2tr251b", "https://tec.openplanner.team/stops/H2tr255a"], ["https://tec.openplanner.team/stops/N106acb", "https://tec.openplanner.team/stops/N106arb"], ["https://tec.openplanner.team/stops/Bclgmev1", "https://tec.openplanner.team/stops/Bclgvse2"], ["https://tec.openplanner.team/stops/LWAalou2", "https://tec.openplanner.team/stops/LWAlong3"], ["https://tec.openplanner.team/stops/X754awa", "https://tec.openplanner.team/stops/X754awb"], ["https://tec.openplanner.team/stops/Cchcase4", "https://tec.openplanner.team/stops/Cchparc2"], ["https://tec.openplanner.team/stops/H4ft134b", "https://tec.openplanner.team/stops/H4ma205b"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LAUvdab1"], ["https://tec.openplanner.team/stops/N425aba", "https://tec.openplanner.team/stops/N426aeb"], ["https://tec.openplanner.team/stops/Bchapir1", "https://tec.openplanner.team/stops/Bcharce2"], ["https://tec.openplanner.team/stops/H2ml113b", "https://tec.openplanner.team/stops/H2ml114b"], ["https://tec.openplanner.team/stops/Cctjust1", "https://tec.openplanner.team/stops/Cctrjus2"], ["https://tec.openplanner.team/stops/LLUgend1", "https://tec.openplanner.team/stops/LLUreut1"], ["https://tec.openplanner.team/stops/LRGchap2", "https://tec.openplanner.team/stops/LRGgrov1"], ["https://tec.openplanner.team/stops/LSkchwa1", "https://tec.openplanner.team/stops/LSkwarf3"], ["https://tec.openplanner.team/stops/Llmdavi2", "https://tec.openplanner.team/stops/Llmvill2"], ["https://tec.openplanner.team/stops/Bcrncen2", "https://tec.openplanner.team/stops/Bcrnegl2"], ["https://tec.openplanner.team/stops/H1ch103b", "https://tec.openplanner.team/stops/H1hh116a"], ["https://tec.openplanner.team/stops/LTHcime1", "https://tec.openplanner.team/stops/LTHjevo1"], ["https://tec.openplanner.team/stops/X804bdb", "https://tec.openplanner.team/stops/X804bfb"], ["https://tec.openplanner.team/stops/N204aba", "https://tec.openplanner.team/stops/N204abb"], ["https://tec.openplanner.team/stops/LNCrami1", "https://tec.openplanner.team/stops/LRRchea5"], ["https://tec.openplanner.team/stops/Bgemfbo1", "https://tec.openplanner.team/stops/Bgemrom4"], ["https://tec.openplanner.team/stops/X723ala", "https://tec.openplanner.team/stops/X723alb"], ["https://tec.openplanner.team/stops/X765aba", "https://tec.openplanner.team/stops/X765acb"], ["https://tec.openplanner.team/stops/LPRmc--2", "https://tec.openplanner.team/stops/LPRvill2"], ["https://tec.openplanner.team/stops/Bqueblo2", "https://tec.openplanner.team/stops/Bquevel1"], ["https://tec.openplanner.team/stops/X619aga", "https://tec.openplanner.team/stops/X619aha"], ["https://tec.openplanner.team/stops/Bbougbl2", "https://tec.openplanner.team/stops/Btanbth2"], ["https://tec.openplanner.team/stops/X640akb", "https://tec.openplanner.team/stops/X640ama"], ["https://tec.openplanner.team/stops/H4co103b", "https://tec.openplanner.team/stops/H4co141b"], ["https://tec.openplanner.team/stops/N343aja", "https://tec.openplanner.team/stops/N343ajb"], ["https://tec.openplanner.team/stops/H4re225b", "https://tec.openplanner.team/stops/H4re226a"], ["https://tec.openplanner.team/stops/N501hwa", "https://tec.openplanner.team/stops/N501iaa"], ["https://tec.openplanner.team/stops/LESmagr1", "https://tec.openplanner.team/stops/LESryon1"], ["https://tec.openplanner.team/stops/H4ty282b", "https://tec.openplanner.team/stops/H4ty307b"], ["https://tec.openplanner.team/stops/LSGcolo2", "https://tec.openplanner.team/stops/LSktinc1"], ["https://tec.openplanner.team/stops/LCEeg--1", "https://tec.openplanner.team/stops/LMIcamp1"], ["https://tec.openplanner.team/stops/Ccogibr2", "https://tec.openplanner.team/stops/Ccostan1"], ["https://tec.openplanner.team/stops/Lhrhenr1", "https://tec.openplanner.team/stops/Lhrsimo1"], ["https://tec.openplanner.team/stops/N106aja", "https://tec.openplanner.team/stops/N106alb"], ["https://tec.openplanner.team/stops/Cflcoro2", "https://tec.openplanner.team/stops/Cflmart2"], ["https://tec.openplanner.team/stops/X542adb", "https://tec.openplanner.team/stops/X542agb"], ["https://tec.openplanner.team/stops/LESathe1", "https://tec.openplanner.team/stops/LESmont1"], ["https://tec.openplanner.team/stops/Bcseche1", "https://tec.openplanner.team/stops/Bcseche2"], ["https://tec.openplanner.team/stops/Ljhcarr2", "https://tec.openplanner.team/stops/Ljhheus1"], ["https://tec.openplanner.team/stops/Bmrleco1", "https://tec.openplanner.team/stops/Bmrlhau1"], ["https://tec.openplanner.team/stops/X837aec", "https://tec.openplanner.team/stops/X837alb"], ["https://tec.openplanner.team/stops/N211apa", "https://tec.openplanner.team/stops/N211baa"], ["https://tec.openplanner.team/stops/H1ci106a", "https://tec.openplanner.team/stops/H1mv238a"], ["https://tec.openplanner.team/stops/X664aia", "https://tec.openplanner.team/stops/X664aid"], ["https://tec.openplanner.team/stops/H5wo128a", "https://tec.openplanner.team/stops/H5wo130a"], ["https://tec.openplanner.team/stops/N534axb", "https://tec.openplanner.team/stops/N534aya"], ["https://tec.openplanner.team/stops/H4ru236a", "https://tec.openplanner.team/stops/H4ru244a"], ["https://tec.openplanner.team/stops/LhSbruc2", "https://tec.openplanner.team/stops/LhSschn1"], ["https://tec.openplanner.team/stops/LHAlacr2", "https://tec.openplanner.team/stops/LHAleru1"], ["https://tec.openplanner.team/stops/X640aib", "https://tec.openplanner.team/stops/X640aua"], ["https://tec.openplanner.team/stops/Lpeeg--1", "https://tec.openplanner.team/stops/Lpejonc2"], ["https://tec.openplanner.team/stops/LeUnisp1", "https://tec.openplanner.team/stops/LeUstad1"], ["https://tec.openplanner.team/stops/Lverdep1", "https://tec.openplanner.team/stops/Lverdep2"], ["https://tec.openplanner.team/stops/Bmelegl1", "https://tec.openplanner.team/stops/Bmelsab2"], ["https://tec.openplanner.team/stops/LWepost2", "https://tec.openplanner.team/stops/LWepost4"], ["https://tec.openplanner.team/stops/Blincal2", "https://tec.openplanner.team/stops/Blincoo1"], ["https://tec.openplanner.team/stops/N512akb", "https://tec.openplanner.team/stops/N512ala"], ["https://tec.openplanner.team/stops/N525aoa", "https://tec.openplanner.team/stops/N525ata"], ["https://tec.openplanner.team/stops/Bneelaa1", "https://tec.openplanner.team/stops/Bracgar1"], ["https://tec.openplanner.team/stops/X609aba", "https://tec.openplanner.team/stops/X609aca"], ["https://tec.openplanner.team/stops/H4or113a", "https://tec.openplanner.team/stops/H4or113b"], ["https://tec.openplanner.team/stops/H4ma401b", "https://tec.openplanner.team/stops/H4ma417b"], ["https://tec.openplanner.team/stops/N565ada", "https://tec.openplanner.team/stops/N565aea"], ["https://tec.openplanner.team/stops/Bdvmccu2", "https://tec.openplanner.team/stops/Bdvmcsa2"], ["https://tec.openplanner.team/stops/Canlemo1", "https://tec.openplanner.team/stops/Canplch2"], ["https://tec.openplanner.team/stops/LeLzost1", "https://tec.openplanner.team/stops/LnIkirc1"], ["https://tec.openplanner.team/stops/Lflroms5", "https://tec.openplanner.team/stops/Lropass1"], ["https://tec.openplanner.team/stops/X804ala", "https://tec.openplanner.team/stops/X804anb"], ["https://tec.openplanner.team/stops/Ccygara1", "https://tec.openplanner.team/stops/Cvlcalv2"], ["https://tec.openplanner.team/stops/X602arb", "https://tec.openplanner.team/stops/X653aea"], ["https://tec.openplanner.team/stops/LAMec--2", "https://tec.openplanner.team/stops/LAMmc--1"], ["https://tec.openplanner.team/stops/N308aea", "https://tec.openplanner.team/stops/N308aia"], ["https://tec.openplanner.team/stops/LPTeg--1", "https://tec.openplanner.team/stops/X794aaa"], ["https://tec.openplanner.team/stops/N531anb", "https://tec.openplanner.team/stops/N531apb"], ["https://tec.openplanner.team/stops/N109aaa", "https://tec.openplanner.team/stops/N110adb"], ["https://tec.openplanner.team/stops/N501fqd", "https://tec.openplanner.team/stops/N501mkb"], ["https://tec.openplanner.team/stops/Livvill1", "https://tec.openplanner.team/stops/LRaplac2"], ["https://tec.openplanner.team/stops/N118akb", "https://tec.openplanner.team/stops/N147afb"], ["https://tec.openplanner.team/stops/N517aaa", "https://tec.openplanner.team/stops/N517afa"], ["https://tec.openplanner.team/stops/X619aha", "https://tec.openplanner.team/stops/X619ahb"], ["https://tec.openplanner.team/stops/X879aea", "https://tec.openplanner.team/stops/X879aeb"], ["https://tec.openplanner.team/stops/H1an100a", "https://tec.openplanner.team/stops/H1au100b"], ["https://tec.openplanner.team/stops/X979aja", "https://tec.openplanner.team/stops/X979akb"], ["https://tec.openplanner.team/stops/Ccocroi2", "https://tec.openplanner.team/stops/Ctrepin1"], ["https://tec.openplanner.team/stops/Brixga12", "https://tec.openplanner.team/stops/Brixga13"], ["https://tec.openplanner.team/stops/X743ada", "https://tec.openplanner.team/stops/X743adb"], ["https://tec.openplanner.team/stops/LGeforg2", "https://tec.openplanner.team/stops/LGepeck1"], ["https://tec.openplanner.team/stops/LWbboeg1", "https://tec.openplanner.team/stops/X512abb"], ["https://tec.openplanner.team/stops/LLOcreu2", "https://tec.openplanner.team/stops/LTatult3"], ["https://tec.openplanner.team/stops/X316aaa", "https://tec.openplanner.team/stops/X317aaa"], ["https://tec.openplanner.team/stops/N519adb", "https://tec.openplanner.team/stops/N519arb"], ["https://tec.openplanner.team/stops/LFCalte2", "https://tec.openplanner.team/stops/LFCvoer2"], ["https://tec.openplanner.team/stops/LAMvert1", "https://tec.openplanner.team/stops/LOmecol2"], ["https://tec.openplanner.team/stops/H4he103b", "https://tec.openplanner.team/stops/H4he107b"], ["https://tec.openplanner.team/stops/Bronn391", "https://tec.openplanner.team/stops/Bvirfpo1"], ["https://tec.openplanner.team/stops/Bsgeegl3", "https://tec.openplanner.team/stops/Bsgevil2"], ["https://tec.openplanner.team/stops/X342ada", "https://tec.openplanner.team/stops/X345aca"], ["https://tec.openplanner.team/stops/H1bb115a", "https://tec.openplanner.team/stops/H1bb117b"], ["https://tec.openplanner.team/stops/X942aab", "https://tec.openplanner.team/stops/X942abd"], ["https://tec.openplanner.team/stops/LBRmc--4", "https://tec.openplanner.team/stops/LBRtrag1"], ["https://tec.openplanner.team/stops/H4hx121b", "https://tec.openplanner.team/stops/H4hx122a"], ["https://tec.openplanner.team/stops/Bernegl4", "https://tec.openplanner.team/stops/Berngrt1"], ["https://tec.openplanner.team/stops/X620aba", "https://tec.openplanner.team/stops/X620ahb"], ["https://tec.openplanner.team/stops/Bnivbau2", "https://tec.openplanner.team/stops/Bnivite2"], ["https://tec.openplanner.team/stops/H4la198a", "https://tec.openplanner.team/stops/H4la198b"], ["https://tec.openplanner.team/stops/LOdbuis1", "https://tec.openplanner.team/stops/LOdmonu4"], ["https://tec.openplanner.team/stops/LkEherg1", "https://tec.openplanner.team/stops/LkEherg2"], ["https://tec.openplanner.team/stops/Cchbrou1", "https://tec.openplanner.team/stops/Cchbrou2"], ["https://tec.openplanner.team/stops/H1ho122b", "https://tec.openplanner.team/stops/H1ho139a"], ["https://tec.openplanner.team/stops/Btlgbro1", "https://tec.openplanner.team/stops/Btlgbro2"], ["https://tec.openplanner.team/stops/LHNland1", "https://tec.openplanner.team/stops/LHNland2"], ["https://tec.openplanner.team/stops/LbUpost1", "https://tec.openplanner.team/stops/LbUpost2"], ["https://tec.openplanner.team/stops/Bernpon1", "https://tec.openplanner.team/stops/Bernpon2"], ["https://tec.openplanner.team/stops/N135afb", "https://tec.openplanner.team/stops/N135aja"], ["https://tec.openplanner.team/stops/Lceourt2", "https://tec.openplanner.team/stops/Lemmeha2"], ["https://tec.openplanner.team/stops/LLAeg--2", "https://tec.openplanner.team/stops/LLAvi652"], ["https://tec.openplanner.team/stops/Bgdhcsh2", "https://tec.openplanner.team/stops/Bgdhpco2"], ["https://tec.openplanner.team/stops/LSPcomm1", "https://tec.openplanner.team/stops/LSPpomp1"], ["https://tec.openplanner.team/stops/Crgegli2", "https://tec.openplanner.team/stops/Cstdona6"], ["https://tec.openplanner.team/stops/Bsamfma1", "https://tec.openplanner.team/stops/Bsamlon2"], ["https://tec.openplanner.team/stops/Bgzdcwa1", "https://tec.openplanner.team/stops/Bgzdcwa2"], ["https://tec.openplanner.team/stops/N109aia", "https://tec.openplanner.team/stops/N110adb"], ["https://tec.openplanner.team/stops/H1hn204a", "https://tec.openplanner.team/stops/H1hn209b"], ["https://tec.openplanner.team/stops/H4ta122a", "https://tec.openplanner.team/stops/H4ta131a"], ["https://tec.openplanner.team/stops/N515aea", "https://tec.openplanner.team/stops/N515aeb"], ["https://tec.openplanner.team/stops/X618afb", "https://tec.openplanner.team/stops/X618apa"], ["https://tec.openplanner.team/stops/H2ch102a", "https://tec.openplanner.team/stops/H2ch109b"], ["https://tec.openplanner.team/stops/LSTchat2", "https://tec.openplanner.team/stops/LSTrema1"], ["https://tec.openplanner.team/stops/Lvtvici1", "https://tec.openplanner.team/stops/Lvtvici2"], ["https://tec.openplanner.team/stops/H4lh118a", "https://tec.openplanner.team/stops/H4oe149b"], ["https://tec.openplanner.team/stops/N501jia", "https://tec.openplanner.team/stops/N501jpa"], ["https://tec.openplanner.team/stops/X639aeb", "https://tec.openplanner.team/stops/X640ata"], ["https://tec.openplanner.team/stops/Bblabfo2", "https://tec.openplanner.team/stops/Bblamer1"], ["https://tec.openplanner.team/stops/X636agb", "https://tec.openplanner.team/stops/X636aja"], ["https://tec.openplanner.team/stops/Csychap2", "https://tec.openplanner.team/stops/Csyplac1"], ["https://tec.openplanner.team/stops/H1ba107a", "https://tec.openplanner.team/stops/H1ba113a"], ["https://tec.openplanner.team/stops/LBvnico2", "https://tec.openplanner.team/stops/LSChane2"], ["https://tec.openplanner.team/stops/N213aca", "https://tec.openplanner.team/stops/N367ada"], ["https://tec.openplanner.team/stops/H1qy131b", "https://tec.openplanner.team/stops/H1qy132a"], ["https://tec.openplanner.team/stops/Cflmarc1", "https://tec.openplanner.team/stops/Cwgmart1"], ["https://tec.openplanner.team/stops/H1mb128b", "https://tec.openplanner.team/stops/H1mb166a"], ["https://tec.openplanner.team/stops/Lsebuis2", "https://tec.openplanner.team/stops/Lsercha1"], ["https://tec.openplanner.team/stops/LBSnouw1", "https://tec.openplanner.team/stops/LRGbett3"], ["https://tec.openplanner.team/stops/Loucham2", "https://tec.openplanner.team/stops/Lougare2"], ["https://tec.openplanner.team/stops/Cvpchat2", "https://tec.openplanner.team/stops/Cvpsthu1"], ["https://tec.openplanner.team/stops/N423afa", "https://tec.openplanner.team/stops/N423aga"], ["https://tec.openplanner.team/stops/H4be145b", "https://tec.openplanner.team/stops/H5bl117c"], ["https://tec.openplanner.team/stops/LwAschu1", "https://tec.openplanner.team/stops/LwAstum2"], ["https://tec.openplanner.team/stops/Cragill1", "https://tec.openplanner.team/stops/Cramadi1"], ["https://tec.openplanner.team/stops/X908asa", "https://tec.openplanner.team/stops/X910aab"], ["https://tec.openplanner.team/stops/LFAbouc2", "https://tec.openplanner.team/stops/LFAtomb2"], ["https://tec.openplanner.team/stops/N505aja", "https://tec.openplanner.team/stops/N505ama"], ["https://tec.openplanner.team/stops/Cmmami1", "https://tec.openplanner.team/stops/Cmmcver1"], ["https://tec.openplanner.team/stops/H5bl123a", "https://tec.openplanner.team/stops/H5qu148a"], ["https://tec.openplanner.team/stops/H5pe149a", "https://tec.openplanner.team/stops/H5pe150b"], ["https://tec.openplanner.team/stops/X808adb", "https://tec.openplanner.team/stops/X811afb"], ["https://tec.openplanner.team/stops/Llgbene1", "https://tec.openplanner.team/stops/Llgptlo3"], ["https://tec.openplanner.team/stops/X650adb", "https://tec.openplanner.team/stops/X650aea"], ["https://tec.openplanner.team/stops/Bbghcar2", "https://tec.openplanner.team/stops/Bbghgli2"], ["https://tec.openplanner.team/stops/H2pe159b", "https://tec.openplanner.team/stops/H2pe160a"], ["https://tec.openplanner.team/stops/LCFcarr2", "https://tec.openplanner.team/stops/LHaodei1"], ["https://tec.openplanner.team/stops/N548aya", "https://tec.openplanner.team/stops/N571aca"], ["https://tec.openplanner.team/stops/Bwateco2", "https://tec.openplanner.team/stops/Bwatwsc1"], ["https://tec.openplanner.team/stops/Bettars2", "https://tec.openplanner.team/stops/Bettbue2"], ["https://tec.openplanner.team/stops/Lseberg2", "https://tec.openplanner.team/stops/Lsebuil1"], ["https://tec.openplanner.team/stops/LSkwarf2", "https://tec.openplanner.team/stops/LSkwarf4"], ["https://tec.openplanner.team/stops/H3go102a", "https://tec.openplanner.team/stops/H3lr116a"], ["https://tec.openplanner.team/stops/Llgnaim1", "https://tec.openplanner.team/stops/Llgwesp1"], ["https://tec.openplanner.team/stops/Balsbeg2", "https://tec.openplanner.team/stops/Bbrlrph1"], ["https://tec.openplanner.team/stops/Lrafusi2", "https://tec.openplanner.team/stops/Lwakipe1"], ["https://tec.openplanner.team/stops/Buccdef2", "https://tec.openplanner.team/stops/Buccgob2"], ["https://tec.openplanner.team/stops/N150abb", "https://tec.openplanner.team/stops/N150acb"], ["https://tec.openplanner.team/stops/X897aob", "https://tec.openplanner.team/stops/X897aod"], ["https://tec.openplanner.team/stops/X652abb", "https://tec.openplanner.team/stops/X652acd"], ["https://tec.openplanner.team/stops/Cbfplch1", "https://tec.openplanner.team/stops/Cbfstry2"], ["https://tec.openplanner.team/stops/N207add", "https://tec.openplanner.team/stops/N209amb"], ["https://tec.openplanner.team/stops/Bmalwop2", "https://tec.openplanner.team/stops/Bmalwvi1"], ["https://tec.openplanner.team/stops/Bdvm4ca1", "https://tec.openplanner.team/stops/Bdvmtve1"], ["https://tec.openplanner.team/stops/X789aja", "https://tec.openplanner.team/stops/X789ajb"], ["https://tec.openplanner.team/stops/Bpersyn2", "https://tec.openplanner.team/stops/Btstw751"], ["https://tec.openplanner.team/stops/LTiflor1", "https://tec.openplanner.team/stops/LTiruel1"], ["https://tec.openplanner.team/stops/N560aba", "https://tec.openplanner.team/stops/N560aca"], ["https://tec.openplanner.team/stops/Lmnchal2", "https://tec.openplanner.team/stops/Lsmh3022"], ["https://tec.openplanner.team/stops/H1bb146a", "https://tec.openplanner.team/stops/H1do115a"], ["https://tec.openplanner.team/stops/Lch179-1", "https://tec.openplanner.team/stops/Lchcomm2"], ["https://tec.openplanner.team/stops/X733aeb", "https://tec.openplanner.team/stops/X733afb"], ["https://tec.openplanner.team/stops/H5rx139b", "https://tec.openplanner.team/stops/H5rx140b"], ["https://tec.openplanner.team/stops/H1ni316b", "https://tec.openplanner.team/stops/H1ni317b"], ["https://tec.openplanner.team/stops/X837aca", "https://tec.openplanner.team/stops/X837aga"], ["https://tec.openplanner.team/stops/N512agd", "https://tec.openplanner.team/stops/NL57aea"], ["https://tec.openplanner.team/stops/X725aff", "https://tec.openplanner.team/stops/X725aha"], ["https://tec.openplanner.team/stops/H4mo167a", "https://tec.openplanner.team/stops/H4mo183a"], ["https://tec.openplanner.team/stops/H1me114b", "https://tec.openplanner.team/stops/H1me118b"], ["https://tec.openplanner.team/stops/H4ty350a", "https://tec.openplanner.team/stops/H4ty358b"], ["https://tec.openplanner.team/stops/X687aba", "https://tec.openplanner.team/stops/X687aca"], ["https://tec.openplanner.team/stops/Llgfusc1", "https://tec.openplanner.team/stops/Llgfusc6"], ["https://tec.openplanner.team/stops/N509awa", "https://tec.openplanner.team/stops/N509beb"], ["https://tec.openplanner.team/stops/Lmocail2", "https://tec.openplanner.team/stops/Lmomarr3"], ["https://tec.openplanner.team/stops/LWAclos2", "https://tec.openplanner.team/stops/LWAeloi2"], ["https://tec.openplanner.team/stops/Blaneli2", "https://tec.openplanner.team/stops/Blankal4"], ["https://tec.openplanner.team/stops/Cvvpotv1", "https://tec.openplanner.team/stops/Cvvsncb1"], ["https://tec.openplanner.team/stops/X733akb", "https://tec.openplanner.team/stops/X733alb"], ["https://tec.openplanner.team/stops/Cgywaut4", "https://tec.openplanner.team/stops/CMsartc1"], ["https://tec.openplanner.team/stops/Bhmmjco1", "https://tec.openplanner.team/stops/Bleugar1"], ["https://tec.openplanner.team/stops/H5bl119d", "https://tec.openplanner.team/stops/H5qu148a"], ["https://tec.openplanner.team/stops/Cgxpair2", "https://tec.openplanner.team/stops/Cmogtri2"], ["https://tec.openplanner.team/stops/LFlabba2", "https://tec.openplanner.team/stops/LOmlime1"], ["https://tec.openplanner.team/stops/N533alf", "https://tec.openplanner.team/stops/N533ana"], ["https://tec.openplanner.team/stops/H4vd230a", "https://tec.openplanner.team/stops/H4vd230b"], ["https://tec.openplanner.team/stops/Blimbet3", "https://tec.openplanner.team/stops/Blmlcim1"], ["https://tec.openplanner.team/stops/LHYwach2", "https://tec.openplanner.team/stops/LSpcarr2"], ["https://tec.openplanner.team/stops/H1ge117a", "https://tec.openplanner.team/stops/H1ge179a"], ["https://tec.openplanner.team/stops/Cselait1", "https://tec.openplanner.team/stops/Cselait2"], ["https://tec.openplanner.team/stops/LHYec--2", "https://tec.openplanner.team/stops/LHYnoid2"], ["https://tec.openplanner.team/stops/H4ld127b", "https://tec.openplanner.team/stops/H4ld128a"], ["https://tec.openplanner.team/stops/H1cu122a", "https://tec.openplanner.team/stops/H1je212b"], ["https://tec.openplanner.team/stops/N236ada", "https://tec.openplanner.team/stops/N236aha"], ["https://tec.openplanner.team/stops/N121aaa", "https://tec.openplanner.team/stops/N121aeb"], ["https://tec.openplanner.team/stops/Btlbegl1", "https://tec.openplanner.team/stops/Btlbtbe4"], ["https://tec.openplanner.team/stops/Ljuathe2", "https://tec.openplanner.team/stops/Ljucrah2"], ["https://tec.openplanner.team/stops/N260aaa", "https://tec.openplanner.team/stops/N270afd"], ["https://tec.openplanner.team/stops/LHFec--3", "https://tec.openplanner.team/stops/LHFwaut1"], ["https://tec.openplanner.team/stops/N501fbb", "https://tec.openplanner.team/stops/N501fhb"], ["https://tec.openplanner.team/stops/Cchvil1", "https://tec.openplanner.team/stops/CMvil2"], ["https://tec.openplanner.team/stops/N571aca", "https://tec.openplanner.team/stops/N571afa"], ["https://tec.openplanner.team/stops/NL76acb", "https://tec.openplanner.team/stops/NL80aba"], ["https://tec.openplanner.team/stops/N121aca", "https://tec.openplanner.team/stops/N121aia"], ["https://tec.openplanner.team/stops/LmDkape2", "https://tec.openplanner.team/stops/LsVfeye1"], ["https://tec.openplanner.team/stops/X947acb", "https://tec.openplanner.team/stops/X948aja"], ["https://tec.openplanner.team/stops/LSlbail2", "https://tec.openplanner.team/stops/X919afa"], ["https://tec.openplanner.team/stops/LBVlamo1", "https://tec.openplanner.team/stops/LRcsilo1"], ["https://tec.openplanner.team/stops/LJAverv1", "https://tec.openplanner.team/stops/LJAverv2"], ["https://tec.openplanner.team/stops/H1be102a", "https://tec.openplanner.team/stops/H1mb125a"], ["https://tec.openplanner.team/stops/N101adc", "https://tec.openplanner.team/stops/N118aoa"], ["https://tec.openplanner.team/stops/N351aja", "https://tec.openplanner.team/stops/N351ajd"], ["https://tec.openplanner.team/stops/X801adb", "https://tec.openplanner.team/stops/X801aga"], ["https://tec.openplanner.team/stops/X685ama", "https://tec.openplanner.team/stops/X685apb"], ["https://tec.openplanner.team/stops/H1le120b", "https://tec.openplanner.team/stops/H1le121b"], ["https://tec.openplanner.team/stops/H1sp354a", "https://tec.openplanner.team/stops/H1sp357a"], ["https://tec.openplanner.team/stops/X802aga", "https://tec.openplanner.team/stops/X822ahb"], ["https://tec.openplanner.team/stops/X774aga", "https://tec.openplanner.team/stops/X775aba"], ["https://tec.openplanner.team/stops/LHUhaum3", "https://tec.openplanner.team/stops/LHUhaut1"], ["https://tec.openplanner.team/stops/Lhuecol1", "https://tec.openplanner.team/stops/Lhurouh1"], ["https://tec.openplanner.team/stops/LLrchat1", "https://tec.openplanner.team/stops/LLreque1"], ["https://tec.openplanner.team/stops/H2ha138a", "https://tec.openplanner.team/stops/H2ha142a"], ["https://tec.openplanner.team/stops/Ccucora1", "https://tec.openplanner.team/stops/Cmtproc2"], ["https://tec.openplanner.team/stops/Llgcite1", "https://tec.openplanner.team/stops/Llgnage2"], ["https://tec.openplanner.team/stops/N501gaa", "https://tec.openplanner.team/stops/N501gab"], ["https://tec.openplanner.team/stops/N577agb", "https://tec.openplanner.team/stops/N577aja"], ["https://tec.openplanner.team/stops/LaFbruc2", "https://tec.openplanner.team/stops/LrGzent2"], ["https://tec.openplanner.team/stops/Bptrcra1", "https://tec.openplanner.team/stops/Bptrpla1"], ["https://tec.openplanner.team/stops/N151ajd", "https://tec.openplanner.team/stops/N152aac"], ["https://tec.openplanner.team/stops/LBscasi1", "https://tec.openplanner.team/stops/LBsfer-1"], ["https://tec.openplanner.team/stops/N516ahb", "https://tec.openplanner.team/stops/N516aja"], ["https://tec.openplanner.team/stops/LPUalbe1", "https://tec.openplanner.team/stops/LPUlecl2"], ["https://tec.openplanner.team/stops/LSzetoi2", "https://tec.openplanner.team/stops/N506bvb"], ["https://tec.openplanner.team/stops/H4ft132a", "https://tec.openplanner.team/stops/H4ft137b"], ["https://tec.openplanner.team/stops/X725awa", "https://tec.openplanner.team/stops/X725beb"], ["https://tec.openplanner.team/stops/N229aha", "https://tec.openplanner.team/stops/N229ahb"], ["https://tec.openplanner.team/stops/Bbea3he1", "https://tec.openplanner.team/stops/Bbeaech1"], ["https://tec.openplanner.team/stops/N426ada", "https://tec.openplanner.team/stops/N426adb"], ["https://tec.openplanner.team/stops/LLNeg--1", "https://tec.openplanner.team/stops/LLNeg--2"], ["https://tec.openplanner.team/stops/Lghcise2", "https://tec.openplanner.team/stops/Lmopeup2"], ["https://tec.openplanner.team/stops/Cgogrco1", "https://tec.openplanner.team/stops/Cgogrco2"], ["https://tec.openplanner.team/stops/H1gh145b", "https://tec.openplanner.team/stops/H1gh145d"], ["https://tec.openplanner.team/stops/X766aeb", "https://tec.openplanner.team/stops/X766afa"], ["https://tec.openplanner.team/stops/Bmrsayw2", "https://tec.openplanner.team/stops/Bmrsmco1"], ["https://tec.openplanner.team/stops/LAigrim1", "https://tec.openplanner.team/stops/LAigrim2"], ["https://tec.openplanner.team/stops/NL73aba", "https://tec.openplanner.team/stops/NL73abb"], ["https://tec.openplanner.team/stops/LCelabi1", "https://tec.openplanner.team/stops/LCelabi2"], ["https://tec.openplanner.team/stops/H1em105a", "https://tec.openplanner.team/stops/H1em111d"], ["https://tec.openplanner.team/stops/Cmlbuis4", "https://tec.openplanner.team/stops/Cmlm2411"], ["https://tec.openplanner.team/stops/Bgnpchb1", "https://tec.openplanner.team/stops/Cgnquer2"], ["https://tec.openplanner.team/stops/H1bs111b", "https://tec.openplanner.team/stops/H1bs112a"], ["https://tec.openplanner.team/stops/H1je220a", "https://tec.openplanner.team/stops/H1je220c"], ["https://tec.openplanner.team/stops/X344ada", "https://tec.openplanner.team/stops/X362ada"], ["https://tec.openplanner.team/stops/N235ada", "https://tec.openplanner.team/stops/N235afa"], ["https://tec.openplanner.team/stops/N254acb", "https://tec.openplanner.team/stops/N254aea"], ["https://tec.openplanner.team/stops/H4ty346a", "https://tec.openplanner.team/stops/H4ty383b"], ["https://tec.openplanner.team/stops/NC23aba", "https://tec.openplanner.team/stops/NC23abb"], ["https://tec.openplanner.team/stops/H1ge117b", "https://tec.openplanner.team/stops/H1ge151a"], ["https://tec.openplanner.team/stops/Brixaug1", "https://tec.openplanner.team/stops/Brixaug2"], ["https://tec.openplanner.team/stops/Lbrptbr3", "https://tec.openplanner.team/stops/Llgmara1"], ["https://tec.openplanner.team/stops/Lstchu-3", "https://tec.openplanner.team/stops/Lsteduc1"], ["https://tec.openplanner.team/stops/Chhegli1", "https://tec.openplanner.team/stops/Chhegli4"], ["https://tec.openplanner.team/stops/X775aga", "https://tec.openplanner.team/stops/X775ahb"], ["https://tec.openplanner.team/stops/LCtcref1", "https://tec.openplanner.team/stops/X788aga"], ["https://tec.openplanner.team/stops/N874ama", "https://tec.openplanner.team/stops/N874amb"], ["https://tec.openplanner.team/stops/Blingar3", "https://tec.openplanner.team/stops/Blingar4"], ["https://tec.openplanner.team/stops/X617aia", "https://tec.openplanner.team/stops/X625ada"], ["https://tec.openplanner.team/stops/LHCauwe4", "https://tec.openplanner.team/stops/LHChoof4"], ["https://tec.openplanner.team/stops/N548aab", "https://tec.openplanner.team/stops/N569afb"], ["https://tec.openplanner.team/stops/X688aaa", "https://tec.openplanner.team/stops/X769arb"], ["https://tec.openplanner.team/stops/LSMeg--1", "https://tec.openplanner.team/stops/LSMeg--2"], ["https://tec.openplanner.team/stops/H4av106b", "https://tec.openplanner.team/stops/H4mb143c"], ["https://tec.openplanner.team/stops/LCPcomm1", "https://tec.openplanner.team/stops/LCPcomm2"], ["https://tec.openplanner.team/stops/N544aba", "https://tec.openplanner.team/stops/N547aeb"], ["https://tec.openplanner.team/stops/Lloauto2", "https://tec.openplanner.team/stops/Llocime1"], ["https://tec.openplanner.team/stops/X626ala", "https://tec.openplanner.team/stops/X687ada"], ["https://tec.openplanner.team/stops/N218aca", "https://tec.openplanner.team/stops/N331aea"], ["https://tec.openplanner.team/stops/X811acb", "https://tec.openplanner.team/stops/X811akb"], ["https://tec.openplanner.team/stops/Brsgm802", "https://tec.openplanner.team/stops/Bwatmch1"], ["https://tec.openplanner.team/stops/N232axa", "https://tec.openplanner.team/stops/N232axb"], ["https://tec.openplanner.team/stops/Laggare2", "https://tec.openplanner.team/stops/Lagptba2"], ["https://tec.openplanner.team/stops/H2hp118a", "https://tec.openplanner.team/stops/H2hp125b"], ["https://tec.openplanner.team/stops/LCSgend2", "https://tec.openplanner.team/stops/LSGsurf2"], ["https://tec.openplanner.team/stops/Ccucroi2", "https://tec.openplanner.team/stops/Ccutill1"], ["https://tec.openplanner.team/stops/H4ld123a", "https://tec.openplanner.team/stops/H4ld126a"], ["https://tec.openplanner.team/stops/H1hr120b", "https://tec.openplanner.team/stops/H1hr125b"], ["https://tec.openplanner.team/stops/X638aka", "https://tec.openplanner.team/stops/X638amb"], ["https://tec.openplanner.team/stops/LTIchev1", "https://tec.openplanner.team/stops/LTIptme2"], ["https://tec.openplanner.team/stops/H4wa151a", "https://tec.openplanner.team/stops/H4wa159a"], ["https://tec.openplanner.team/stops/Llgavoc1", "https://tec.openplanner.team/stops/Llgnico7"], ["https://tec.openplanner.team/stops/LOVeg--2", "https://tec.openplanner.team/stops/LWLtamb2"], ["https://tec.openplanner.team/stops/H1ha188b", "https://tec.openplanner.team/stops/H1ha195a"], ["https://tec.openplanner.team/stops/Blmldmi1", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://tec.openplanner.team/stops/X804aia", "https://tec.openplanner.team/stops/X804aib"], ["https://tec.openplanner.team/stops/N510aab", "https://tec.openplanner.team/stops/N510aba"], ["https://tec.openplanner.team/stops/H4ty285a", "https://tec.openplanner.team/stops/H4ty335b"], ["https://tec.openplanner.team/stops/LdE179-1", "https://tec.openplanner.team/stops/LdElamb2"], ["https://tec.openplanner.team/stops/N121afb", "https://tec.openplanner.team/stops/N121agb"], ["https://tec.openplanner.team/stops/Lrecomp1", "https://tec.openplanner.team/stops/Lremonu1"], ["https://tec.openplanner.team/stops/LMEwerg1", "https://tec.openplanner.team/stops/LSOfech2"], ["https://tec.openplanner.team/stops/X826aab", "https://tec.openplanner.team/stops/X831aca"], ["https://tec.openplanner.team/stops/Crcpcom2", "https://tec.openplanner.team/stops/Crcplac4"], ["https://tec.openplanner.team/stops/Cbetrie1", "https://tec.openplanner.team/stops/Ctybaco1"], ["https://tec.openplanner.team/stops/X770aba", "https://tec.openplanner.team/stops/X771aia"], ["https://tec.openplanner.team/stops/N203aaa", "https://tec.openplanner.team/stops/N203afb"], ["https://tec.openplanner.team/stops/LhGrote1", "https://tec.openplanner.team/stops/LkEschi1"], ["https://tec.openplanner.team/stops/H1no143a", "https://tec.openplanner.team/stops/H1no143b"], ["https://tec.openplanner.team/stops/LFUgare2", "https://tec.openplanner.team/stops/LHupont1"], ["https://tec.openplanner.team/stops/LkEschi1", "https://tec.openplanner.team/stops/LkEzoll2"], ["https://tec.openplanner.team/stops/Bsomtnd1", "https://tec.openplanner.team/stops/N584aka"], ["https://tec.openplanner.team/stops/LpEzoll*", "https://tec.openplanner.team/stops/LrTbahn1"], ["https://tec.openplanner.team/stops/H3so157a", "https://tec.openplanner.team/stops/H3so169b"], ["https://tec.openplanner.team/stops/X804bka", "https://tec.openplanner.team/stops/X804bwb"], ["https://tec.openplanner.team/stops/N511akb", "https://tec.openplanner.team/stops/N511ala"], ["https://tec.openplanner.team/stops/H1me117f", "https://tec.openplanner.team/stops/H1mm127b"], ["https://tec.openplanner.team/stops/N501deb", "https://tec.openplanner.team/stops/N528aka"], ["https://tec.openplanner.team/stops/H2sb242a", "https://tec.openplanner.team/stops/H2sb266b"], ["https://tec.openplanner.team/stops/Cciecol1", "https://tec.openplanner.team/stops/Ccigill2"], ["https://tec.openplanner.team/stops/N514afb", "https://tec.openplanner.team/stops/N514ajb"], ["https://tec.openplanner.team/stops/Cfaeclu1", "https://tec.openplanner.team/stops/Cfaterg3"], ["https://tec.openplanner.team/stops/LBhschu1", "https://tec.openplanner.team/stops/X793anb"], ["https://tec.openplanner.team/stops/Lseaite2", "https://tec.openplanner.team/stops/Lselimi1"], ["https://tec.openplanner.team/stops/H1ho144a", "https://tec.openplanner.team/stops/H1ho147a"], ["https://tec.openplanner.team/stops/LHe3com1", "https://tec.openplanner.team/stops/LHexhav2"], ["https://tec.openplanner.team/stops/N120amb", "https://tec.openplanner.team/stops/N120anb"], ["https://tec.openplanner.team/stops/Bgnvbsi2", "https://tec.openplanner.team/stops/Bgnvtas1"], ["https://tec.openplanner.team/stops/X809aaa", "https://tec.openplanner.team/stops/X811aab"], ["https://tec.openplanner.team/stops/LBRbriv1", "https://tec.openplanner.team/stops/LVHbrai1"], ["https://tec.openplanner.team/stops/Cchhopi1", "https://tec.openplanner.team/stops/Cchwate3"], ["https://tec.openplanner.team/stops/Lhufont2", "https://tec.openplanner.team/stops/Lsmjalh1"], ["https://tec.openplanner.team/stops/LVLgotr1", "https://tec.openplanner.team/stops/LVLgotr2"], ["https://tec.openplanner.team/stops/N562aga", "https://tec.openplanner.team/stops/N562bsa"], ["https://tec.openplanner.team/stops/H4mt220a", "https://tec.openplanner.team/stops/H4mt220b"], ["https://tec.openplanner.team/stops/LCSpoud2", "https://tec.openplanner.team/stops/LENoule1"], ["https://tec.openplanner.team/stops/H1wi152d", "https://tec.openplanner.team/stops/H1wi157c"], ["https://tec.openplanner.team/stops/Ccurtra2", "https://tec.openplanner.team/stops/Ccuseba1"], ["https://tec.openplanner.team/stops/H1fl133d", "https://tec.openplanner.team/stops/H1fl133f"], ["https://tec.openplanner.team/stops/LTPec--2", "https://tec.openplanner.team/stops/LTPsalm2"], ["https://tec.openplanner.team/stops/H1bo108b", "https://tec.openplanner.team/stops/H1bo108c"], ["https://tec.openplanner.team/stops/Ctmmonu2", "https://tec.openplanner.team/stops/Ctmwaut1"], ["https://tec.openplanner.team/stops/H1mk109a", "https://tec.openplanner.team/stops/H1mk111a"], ["https://tec.openplanner.team/stops/N521asb", "https://tec.openplanner.team/stops/N521atb"], ["https://tec.openplanner.team/stops/X758agb", "https://tec.openplanner.team/stops/X758aia"], ["https://tec.openplanner.team/stops/Blpgcmo1", "https://tec.openplanner.team/stops/Blpgcmo2"], ["https://tec.openplanner.team/stops/LBRtrag1", "https://tec.openplanner.team/stops/LLReg--2"], ["https://tec.openplanner.team/stops/X623ajb", "https://tec.openplanner.team/stops/X624alb"], ["https://tec.openplanner.team/stops/Llglimb1", "https://tec.openplanner.team/stops/Llgwild1"], ["https://tec.openplanner.team/stops/H4ty341b", "https://tec.openplanner.team/stops/H4ty356c"], ["https://tec.openplanner.team/stops/X576aba", "https://tec.openplanner.team/stops/X576ada"], ["https://tec.openplanner.team/stops/LTIpire1", "https://tec.openplanner.team/stops/LTIpire2"], ["https://tec.openplanner.team/stops/Lprcite1", "https://tec.openplanner.team/stops/Lprcite2"], ["https://tec.openplanner.team/stops/Cctpche2", "https://tec.openplanner.team/stops/NC44aea"], ["https://tec.openplanner.team/stops/N534bqb", "https://tec.openplanner.team/stops/N534bsb"], ["https://tec.openplanner.team/stops/LWNberg2", "https://tec.openplanner.team/stops/LWNcime2"], ["https://tec.openplanner.team/stops/N117aca", "https://tec.openplanner.team/stops/N117bdd"], ["https://tec.openplanner.team/stops/H1gr120a", "https://tec.openplanner.team/stops/H1mk110a"], ["https://tec.openplanner.team/stops/H4ir164b", "https://tec.openplanner.team/stops/H4og215b"], ["https://tec.openplanner.team/stops/X822aia", "https://tec.openplanner.team/stops/X836aia"], ["https://tec.openplanner.team/stops/LGLobor1", "https://tec.openplanner.team/stops/LGLspor1"], ["https://tec.openplanner.team/stops/H4by115d", "https://tec.openplanner.team/stops/H4wp152b"], ["https://tec.openplanner.team/stops/Bbonegl1", "https://tec.openplanner.team/stops/Bdvm4ca1"], ["https://tec.openplanner.team/stops/Lboeg--1", "https://tec.openplanner.team/stops/Lbosart1"], ["https://tec.openplanner.team/stops/X614aqa", "https://tec.openplanner.team/stops/X614baa"], ["https://tec.openplanner.team/stops/LGLbrus2", "https://tec.openplanner.team/stops/LSLdall1"], ["https://tec.openplanner.team/stops/N525ata", "https://tec.openplanner.team/stops/N526aca"], ["https://tec.openplanner.team/stops/N117bba", "https://tec.openplanner.team/stops/N117bbb"], ["https://tec.openplanner.team/stops/N501dbb", "https://tec.openplanner.team/stops/N533aha"], ["https://tec.openplanner.team/stops/X661aaa", "https://tec.openplanner.team/stops/X822aja"], ["https://tec.openplanner.team/stops/H4lz158a", "https://tec.openplanner.team/stops/H4lz160a"], ["https://tec.openplanner.team/stops/LmDkoel2", "https://tec.openplanner.team/stops/LmDwei32"], ["https://tec.openplanner.team/stops/X941abb", "https://tec.openplanner.team/stops/X941acd"], ["https://tec.openplanner.team/stops/LBEabba1", "https://tec.openplanner.team/stops/LBEairp1"], ["https://tec.openplanner.team/stops/LBssucr2", "https://tec.openplanner.team/stops/NL72aea"], ["https://tec.openplanner.team/stops/Bwatbce1", "https://tec.openplanner.team/stops/Bwatnrs1"], ["https://tec.openplanner.team/stops/Bmartil1", "https://tec.openplanner.team/stops/Csa4mai2"], ["https://tec.openplanner.team/stops/N519aoa", "https://tec.openplanner.team/stops/N519aob"], ["https://tec.openplanner.team/stops/Crcpcom1", "https://tec.openplanner.team/stops/NH03aga"], ["https://tec.openplanner.team/stops/X661ata", "https://tec.openplanner.team/stops/X661atb"], ["https://tec.openplanner.team/stops/Cmacart2", "https://tec.openplanner.team/stops/Cmacart3"], ["https://tec.openplanner.team/stops/H4ef164a", "https://tec.openplanner.team/stops/H4fa127a"], ["https://tec.openplanner.team/stops/N580aea", "https://tec.openplanner.team/stops/N580aeb"], ["https://tec.openplanner.team/stops/LBichat1", "https://tec.openplanner.team/stops/LHCquat1"], ["https://tec.openplanner.team/stops/X750afb", "https://tec.openplanner.team/stops/X750bga"], ["https://tec.openplanner.team/stops/X759aeb", "https://tec.openplanner.team/stops/X837acb"], ["https://tec.openplanner.team/stops/LMIterr1", "https://tec.openplanner.team/stops/LSOathe1"], ["https://tec.openplanner.team/stops/LPRcha-*", "https://tec.openplanner.team/stops/LTRferm2"], ["https://tec.openplanner.team/stops/LMomonc2", "https://tec.openplanner.team/stops/LSDvill2"], ["https://tec.openplanner.team/stops/X673aea", "https://tec.openplanner.team/stops/X673aeb"], ["https://tec.openplanner.team/stops/N543aca", "https://tec.openplanner.team/stops/N543bxb"], ["https://tec.openplanner.team/stops/Cthalli3", "https://tec.openplanner.team/stops/Cthrlef2"], ["https://tec.openplanner.team/stops/X734afa", "https://tec.openplanner.team/stops/X734ara"], ["https://tec.openplanner.team/stops/H4al100a", "https://tec.openplanner.team/stops/H4ty278b"], ["https://tec.openplanner.team/stops/Lvcfogu4", "https://tec.openplanner.team/stops/Lvcvesd*"], ["https://tec.openplanner.team/stops/X717aaa", "https://tec.openplanner.team/stops/X718abb"], ["https://tec.openplanner.team/stops/NL76apb", "https://tec.openplanner.team/stops/NL76aqb"], ["https://tec.openplanner.team/stops/LDpzol-2", "https://tec.openplanner.team/stops/LFCotte2"], ["https://tec.openplanner.team/stops/Cgy4bra2", "https://tec.openplanner.team/stops/Cgyaudu1"], ["https://tec.openplanner.team/stops/Cmtplac5", "https://tec.openplanner.team/stops/Cmtplac8"], ["https://tec.openplanner.team/stops/N548adb", "https://tec.openplanner.team/stops/N548akb"], ["https://tec.openplanner.team/stops/Cfogaul1", "https://tec.openplanner.team/stops/Cfometr2"], ["https://tec.openplanner.team/stops/X825adb", "https://tec.openplanner.team/stops/X826aea"], ["https://tec.openplanner.team/stops/H4ro155a", "https://tec.openplanner.team/stops/H5pe148b"], ["https://tec.openplanner.team/stops/N501ffa", "https://tec.openplanner.team/stops/N501hab"], ["https://tec.openplanner.team/stops/Lghgoll1", "https://tec.openplanner.team/stops/Lghprea4"], ["https://tec.openplanner.team/stops/Lrchype2", "https://tec.openplanner.team/stops/Lrcpaqu1"], ["https://tec.openplanner.team/stops/LBjpech1", "https://tec.openplanner.team/stops/X576aea"], ["https://tec.openplanner.team/stops/Bottcro2", "https://tec.openplanner.team/stops/Bottpma1"], ["https://tec.openplanner.team/stops/LMXroye1", "https://tec.openplanner.team/stops/LMXroye2"], ["https://tec.openplanner.team/stops/H4pq112a", "https://tec.openplanner.team/stops/H4pq116a"], ["https://tec.openplanner.team/stops/N211ayb", "https://tec.openplanner.team/stops/N211bcb"], ["https://tec.openplanner.team/stops/LARparc1", "https://tec.openplanner.team/stops/LRIhous1"], ["https://tec.openplanner.team/stops/X820aaa", "https://tec.openplanner.team/stops/X822aab"], ["https://tec.openplanner.team/stops/LENalun2", "https://tec.openplanner.team/stops/LENarde2"], ["https://tec.openplanner.team/stops/LeYvoge1", "https://tec.openplanner.team/stops/LeYvoge2"], ["https://tec.openplanner.team/stops/H4bo113a", "https://tec.openplanner.team/stops/H4bo115b"], ["https://tec.openplanner.team/stops/Lghferr1", "https://tec.openplanner.team/stops/Lghferr2"], ["https://tec.openplanner.team/stops/N154aaa", "https://tec.openplanner.team/stops/N154aab"], ["https://tec.openplanner.team/stops/N106akb", "https://tec.openplanner.team/stops/N106alb"], ["https://tec.openplanner.team/stops/LPbover1", "https://tec.openplanner.team/stops/LVkinst1"], ["https://tec.openplanner.team/stops/N343akb", "https://tec.openplanner.team/stops/X345aaa"], ["https://tec.openplanner.team/stops/Lghgend2", "https://tec.openplanner.team/stops/Ljerouy2"], ["https://tec.openplanner.team/stops/H1hc126a", "https://tec.openplanner.team/stops/H1hc126b"], ["https://tec.openplanner.team/stops/N349ada", "https://tec.openplanner.team/stops/N349aea"], ["https://tec.openplanner.team/stops/X721apb", "https://tec.openplanner.team/stops/X721aqb"], ["https://tec.openplanner.team/stops/X636apa", "https://tec.openplanner.team/stops/X636aqd"], ["https://tec.openplanner.team/stops/Cgpcime2", "https://tec.openplanner.team/stops/H2gy100b"], ["https://tec.openplanner.team/stops/Lmigare1", "https://tec.openplanner.team/stops/Lmirca-2"], ["https://tec.openplanner.team/stops/Cci28ju2", "https://tec.openplanner.team/stops/Cciarfr1"], ["https://tec.openplanner.team/stops/X923aia", "https://tec.openplanner.team/stops/X923aqb"], ["https://tec.openplanner.team/stops/LBhcent1", "https://tec.openplanner.team/stops/LSochal1"], ["https://tec.openplanner.team/stops/LGeforg1", "https://tec.openplanner.team/stops/LMschap1"], ["https://tec.openplanner.team/stops/LBUchpl1", "https://tec.openplanner.team/stops/NL68abb"], ["https://tec.openplanner.team/stops/LGLcour4", "https://tec.openplanner.team/stops/LTolijn*"], ["https://tec.openplanner.team/stops/H1le128b", "https://tec.openplanner.team/stops/H1le129b"], ["https://tec.openplanner.team/stops/LBahome1", "https://tec.openplanner.team/stops/LLUalou1"], ["https://tec.openplanner.team/stops/X986agb", "https://tec.openplanner.team/stops/X986aja"], ["https://tec.openplanner.team/stops/H1ch107a", "https://tec.openplanner.team/stops/H1ch107b"], ["https://tec.openplanner.team/stops/X911aka", "https://tec.openplanner.team/stops/X911alb"], ["https://tec.openplanner.team/stops/LRAgrot1", "https://tec.openplanner.team/stops/LRArami1"], ["https://tec.openplanner.team/stops/LkEgend2", "https://tec.openplanner.team/stops/LkEkirc2"], ["https://tec.openplanner.team/stops/H2na132b", "https://tec.openplanner.team/stops/H2na133b"], ["https://tec.openplanner.team/stops/H1cu122a", "https://tec.openplanner.team/stops/H1cu122b"], ["https://tec.openplanner.team/stops/X904ala", "https://tec.openplanner.team/stops/X942acb"], ["https://tec.openplanner.team/stops/X742agb", "https://tec.openplanner.team/stops/X743aab"], ["https://tec.openplanner.team/stops/Lhrlalo4", "https://tec.openplanner.team/stops/Lhrmine2"], ["https://tec.openplanner.team/stops/Cbbjfeu1", "https://tec.openplanner.team/stops/Cbblacb2"], ["https://tec.openplanner.team/stops/Llgamer3", "https://tec.openplanner.team/stops/Llgongr1"], ["https://tec.openplanner.team/stops/H1mh113a", "https://tec.openplanner.team/stops/H1mh117a"], ["https://tec.openplanner.team/stops/H4bf105a", "https://tec.openplanner.team/stops/H4bf108a"], ["https://tec.openplanner.team/stops/LHMbach1", "https://tec.openplanner.team/stops/LHMthys1"], ["https://tec.openplanner.team/stops/N505anb", "https://tec.openplanner.team/stops/N512aua"], ["https://tec.openplanner.team/stops/H4ty313a", "https://tec.openplanner.team/stops/H4ty344b"], ["https://tec.openplanner.team/stops/Lvevert2", "https://tec.openplanner.team/stops/Lvevert4"], ["https://tec.openplanner.team/stops/Bnivaig1", "https://tec.openplanner.team/stops/Bnivaig2"], ["https://tec.openplanner.team/stops/N577aba", "https://tec.openplanner.team/stops/N577acb"], ["https://tec.openplanner.team/stops/Ladclem1", "https://tec.openplanner.team/stops/Ladmoli1"], ["https://tec.openplanner.team/stops/H5pe129a", "https://tec.openplanner.team/stops/H5pe129b"], ["https://tec.openplanner.team/stops/Lagpass2", "https://tec.openplanner.team/stops/Lemjacq2"], ["https://tec.openplanner.team/stops/X650aka", "https://tec.openplanner.team/stops/X650akb"], ["https://tec.openplanner.team/stops/Cblsall1", "https://tec.openplanner.team/stops/Cblsall2"], ["https://tec.openplanner.team/stops/N220aaa", "https://tec.openplanner.team/stops/N220aab"], ["https://tec.openplanner.team/stops/H4mo151a", "https://tec.openplanner.team/stops/H4mo151b"], ["https://tec.openplanner.team/stops/N232bta", "https://tec.openplanner.team/stops/N232btb"], ["https://tec.openplanner.team/stops/N209amb", "https://tec.openplanner.team/stops/NL79aaa"], ["https://tec.openplanner.team/stops/Becepco1", "https://tec.openplanner.team/stops/H2mi123a"], ["https://tec.openplanner.team/stops/LBApak2*", "https://tec.openplanner.team/stops/LETmagn1"], ["https://tec.openplanner.team/stops/N138aha", "https://tec.openplanner.team/stops/N143ada"], ["https://tec.openplanner.team/stops/LBRgare2", "https://tec.openplanner.team/stops/LLTeg--2"], ["https://tec.openplanner.team/stops/X615aga", "https://tec.openplanner.team/stops/X615aha"], ["https://tec.openplanner.team/stops/X670anb", "https://tec.openplanner.team/stops/X670aob"], ["https://tec.openplanner.team/stops/Blingar1", "https://tec.openplanner.team/stops/Blingar4"], ["https://tec.openplanner.team/stops/Caistro1", "https://tec.openplanner.team/stops/Caistro2"], ["https://tec.openplanner.team/stops/X667aba", "https://tec.openplanner.team/stops/X667abb"], ["https://tec.openplanner.team/stops/Lhujonc2", "https://tec.openplanner.team/stops/Lhulibe2"], ["https://tec.openplanner.team/stops/N357aca", "https://tec.openplanner.team/stops/N357afa"], ["https://tec.openplanner.team/stops/Cthalli1", "https://tec.openplanner.team/stops/Cthalli2"], ["https://tec.openplanner.team/stops/X876aaa", "https://tec.openplanner.team/stops/X877adb"], ["https://tec.openplanner.team/stops/Lfhsoux1", "https://tec.openplanner.team/stops/Lfhvoye2"], ["https://tec.openplanner.team/stops/Cculgeo2", "https://tec.openplanner.team/stops/Ccuwil2"], ["https://tec.openplanner.team/stops/X725aab", "https://tec.openplanner.team/stops/X754aja"], ["https://tec.openplanner.team/stops/LESmart2", "https://tec.openplanner.team/stops/LPLhout2"], ["https://tec.openplanner.team/stops/X750abb", "https://tec.openplanner.team/stops/X750ada"], ["https://tec.openplanner.team/stops/LHUlieg2", "https://tec.openplanner.team/stops/LHUpost4"], ["https://tec.openplanner.team/stops/H1hn363a", "https://tec.openplanner.team/stops/H1hn363b"], ["https://tec.openplanner.team/stops/N506ahb", "https://tec.openplanner.team/stops/N506ara"], ["https://tec.openplanner.team/stops/N135aha", "https://tec.openplanner.team/stops/N135ata"], ["https://tec.openplanner.team/stops/LREaube2", "https://tec.openplanner.team/stops/LREsp301"], ["https://tec.openplanner.team/stops/X637alb", "https://tec.openplanner.team/stops/X637aqb"], ["https://tec.openplanner.team/stops/X658aga", "https://tec.openplanner.team/stops/X658ahb"], ["https://tec.openplanner.team/stops/X925aia", "https://tec.openplanner.team/stops/X925apa"], ["https://tec.openplanner.team/stops/H5rx121a", "https://tec.openplanner.team/stops/H5rx134a"], ["https://tec.openplanner.team/stops/Ljubonf1", "https://tec.openplanner.team/stops/Ljuhava2"], ["https://tec.openplanner.team/stops/Cmyquen1", "https://tec.openplanner.team/stops/Cmywarc2"], ["https://tec.openplanner.team/stops/Cloauln1", "https://tec.openplanner.team/stops/Cloravi2"], ["https://tec.openplanner.team/stops/H1og133a", "https://tec.openplanner.team/stops/H1og133b"], ["https://tec.openplanner.team/stops/Lgrclas1", "https://tec.openplanner.team/stops/Lgrcoll2"], ["https://tec.openplanner.team/stops/LElgerd3", "https://tec.openplanner.team/stops/LTaxhos2"], ["https://tec.openplanner.team/stops/LBlplac1", "https://tec.openplanner.team/stops/LBlplac2"], ["https://tec.openplanner.team/stops/LOewaut2", "https://tec.openplanner.team/stops/LWAbett2"], ["https://tec.openplanner.team/stops/X982aba", "https://tec.openplanner.team/stops/X982bzb"], ["https://tec.openplanner.team/stops/Bosqsam1", "https://tec.openplanner.team/stops/Bvirdco1"], ["https://tec.openplanner.team/stops/H4he106b", "https://tec.openplanner.team/stops/H4pq114a"], ["https://tec.openplanner.team/stops/X809aca", "https://tec.openplanner.team/stops/X809acb"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X745aba"], ["https://tec.openplanner.team/stops/Cgxpair1", "https://tec.openplanner.team/stops/Cgxvkho2"], ["https://tec.openplanner.team/stops/LmHbahn1", "https://tec.openplanner.team/stops/LmTgers2"], ["https://tec.openplanner.team/stops/Btlbche2", "https://tec.openplanner.team/stops/NB33aeb"], ["https://tec.openplanner.team/stops/N988aaa", "https://tec.openplanner.team/stops/X876aaa"], ["https://tec.openplanner.team/stops/LeSdorf1", "https://tec.openplanner.team/stops/LeSkreu2"], ["https://tec.openplanner.team/stops/LdUespe1", "https://tec.openplanner.team/stops/LdUespe4"], ["https://tec.openplanner.team/stops/LCPbell1", "https://tec.openplanner.team/stops/LCPone92"], ["https://tec.openplanner.team/stops/Blmlcar1", "https://tec.openplanner.team/stops/Bottpry1"], ["https://tec.openplanner.team/stops/H5fl104b", "https://tec.openplanner.team/stops/H5wo123b"], ["https://tec.openplanner.team/stops/LTHcent2", "https://tec.openplanner.team/stops/LTHroch2"], ["https://tec.openplanner.team/stops/Cdostco2", "https://tec.openplanner.team/stops/Ctufleu1"], ["https://tec.openplanner.team/stops/N204abb", "https://tec.openplanner.team/stops/N204afa"], ["https://tec.openplanner.team/stops/Bjdsjso1", "https://tec.openplanner.team/stops/Bjdssta2"], ["https://tec.openplanner.team/stops/Bquecja1", "https://tec.openplanner.team/stops/Bqueegl2"], ["https://tec.openplanner.team/stops/LRacime1", "https://tec.openplanner.team/stops/LRaplac1"], ["https://tec.openplanner.team/stops/H5rx136a", "https://tec.openplanner.team/stops/H5rx137a"], ["https://tec.openplanner.team/stops/LFIcabi1", "https://tec.openplanner.team/stops/LVvbouv2"], ["https://tec.openplanner.team/stops/LCEcent2", "https://tec.openplanner.team/stops/LCEeg--2"], ["https://tec.openplanner.team/stops/Bhlvlou2", "https://tec.openplanner.team/stops/Blpglon1"], ["https://tec.openplanner.team/stops/X811alb", "https://tec.openplanner.team/stops/X811ama"], ["https://tec.openplanner.team/stops/Lheloti1", "https://tec.openplanner.team/stops/LOUsorb1"], ["https://tec.openplanner.team/stops/LCAwals1", "https://tec.openplanner.team/stops/LWHzave1"], ["https://tec.openplanner.team/stops/Baudvdu2", "https://tec.openplanner.team/stops/Bwbfeta2"], ["https://tec.openplanner.team/stops/X604afb", "https://tec.openplanner.team/stops/X604afc"], ["https://tec.openplanner.team/stops/LBVclig1", "https://tec.openplanner.team/stops/LBVclig2"], ["https://tec.openplanner.team/stops/H5at107a", "https://tec.openplanner.team/stops/H5at107b"], ["https://tec.openplanner.team/stops/NH01aab", "https://tec.openplanner.team/stops/NH01anb"], ["https://tec.openplanner.team/stops/X629aba", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/N141aaa", "https://tec.openplanner.team/stops/N426aeb"], ["https://tec.openplanner.team/stops/X670apc", "https://tec.openplanner.team/stops/X670asb"], ["https://tec.openplanner.team/stops/LPLline2", "https://tec.openplanner.team/stops/LRRcole1"], ["https://tec.openplanner.team/stops/H1br125b", "https://tec.openplanner.team/stops/H2pe161a"], ["https://tec.openplanner.team/stops/Cmqn5911", "https://tec.openplanner.team/stops/Cmqn5912"], ["https://tec.openplanner.team/stops/N506bva", "https://tec.openplanner.team/stops/N506bvb"], ["https://tec.openplanner.team/stops/X615ata", "https://tec.openplanner.team/stops/X687aja"], ["https://tec.openplanner.team/stops/Llgrame1", "https://tec.openplanner.team/stops/Llgrame2"], ["https://tec.openplanner.team/stops/LVlleno1", "https://tec.openplanner.team/stops/LVlroua1"], ["https://tec.openplanner.team/stops/Bclgvmo1", "https://tec.openplanner.team/stops/Bnilreg2"], ["https://tec.openplanner.team/stops/Csschat1", "https://tec.openplanner.team/stops/Csscrot2"], ["https://tec.openplanner.team/stops/LHGleje1", "https://tec.openplanner.team/stops/LHGtige1"], ["https://tec.openplanner.team/stops/X760aca", "https://tec.openplanner.team/stops/X786aha"], ["https://tec.openplanner.team/stops/LNEcouc1", "https://tec.openplanner.team/stops/LNEcouc2"], ["https://tec.openplanner.team/stops/Llgfoss1", "https://tec.openplanner.team/stops/Llglonh2"], ["https://tec.openplanner.team/stops/LHAclin1", "https://tec.openplanner.team/stops/LVIsouv3"], ["https://tec.openplanner.team/stops/N118acd", "https://tec.openplanner.team/stops/N118aha"], ["https://tec.openplanner.team/stops/LHUdeni2", "https://tec.openplanner.team/stops/LHUhaum3"], ["https://tec.openplanner.team/stops/Cplrond1", "https://tec.openplanner.team/stops/Cplrymo2"], ["https://tec.openplanner.team/stops/Barcpre1", "https://tec.openplanner.team/stops/Bgzdgli1"], ["https://tec.openplanner.team/stops/Bquecar1", "https://tec.openplanner.team/stops/Bquecar2"], ["https://tec.openplanner.team/stops/Ladfran1", "https://tec.openplanner.team/stops/Lvehodi4"], ["https://tec.openplanner.team/stops/X718aca", "https://tec.openplanner.team/stops/X718afb"], ["https://tec.openplanner.team/stops/Cjuathe1", "https://tec.openplanner.team/stops/Cjucomb2"], ["https://tec.openplanner.team/stops/Boplcar2", "https://tec.openplanner.team/stops/Boplsma3"], ["https://tec.openplanner.team/stops/Ldimont2", "https://tec.openplanner.team/stops/Lprdavi1"], ["https://tec.openplanner.team/stops/Llgbago1", "https://tec.openplanner.team/stops/Llgware1"], ["https://tec.openplanner.team/stops/LAMcloc1", "https://tec.openplanner.team/stops/LAMgare2"], ["https://tec.openplanner.team/stops/LROmons2", "https://tec.openplanner.team/stops/LWabela2"], ["https://tec.openplanner.team/stops/H1bo112b", "https://tec.openplanner.team/stops/H1ho131a"], ["https://tec.openplanner.team/stops/Llgongr3", "https://tec.openplanner.team/stops/Llgsime2"], ["https://tec.openplanner.team/stops/H2sb225b", "https://tec.openplanner.team/stops/H2sb243a"], ["https://tec.openplanner.team/stops/X342aca", "https://tec.openplanner.team/stops/X342ahb"], ["https://tec.openplanner.team/stops/X898ana", "https://tec.openplanner.team/stops/X898anb"], ["https://tec.openplanner.team/stops/LrAbe961", "https://tec.openplanner.team/stops/LrAbe962"], ["https://tec.openplanner.team/stops/LSPguer2", "https://tec.openplanner.team/stops/LSPsorb2"], ["https://tec.openplanner.team/stops/H1ba117b", "https://tec.openplanner.team/stops/H1ho129a"], ["https://tec.openplanner.team/stops/X982akb", "https://tec.openplanner.team/stops/X982bob"], ["https://tec.openplanner.team/stops/X890ada", "https://tec.openplanner.team/stops/X890aga"], ["https://tec.openplanner.team/stops/Crbreve1", "https://tec.openplanner.team/stops/Cslbhau2"], ["https://tec.openplanner.team/stops/X779abb", "https://tec.openplanner.team/stops/X779afa"], ["https://tec.openplanner.team/stops/X661aja", "https://tec.openplanner.team/stops/X661bca"], ["https://tec.openplanner.team/stops/N501dja", "https://tec.openplanner.team/stops/N538aqa"], ["https://tec.openplanner.team/stops/Blhugmo1", "https://tec.openplanner.team/stops/Blhutco3"], ["https://tec.openplanner.team/stops/Lgdec--2", "https://tec.openplanner.team/stops/LWetrib2"], ["https://tec.openplanner.team/stops/H2ha132b", "https://tec.openplanner.team/stops/H2sb235a"], ["https://tec.openplanner.team/stops/N201aja", "https://tec.openplanner.team/stops/N201alb"], ["https://tec.openplanner.team/stops/X982acb", "https://tec.openplanner.team/stops/X982bta"], ["https://tec.openplanner.team/stops/Lousite2", "https://tec.openplanner.team/stops/Lousite6"], ["https://tec.openplanner.team/stops/N385aaa", "https://tec.openplanner.team/stops/N385aab"], ["https://tec.openplanner.team/stops/Cmmbmad1", "https://tec.openplanner.team/stops/Cmmcver1"], ["https://tec.openplanner.team/stops/Bmalsmc1", "https://tec.openplanner.team/stops/Bsrbtil2"], ["https://tec.openplanner.team/stops/Lhecarc1", "https://tec.openplanner.team/stops/Lhelait2"], ["https://tec.openplanner.team/stops/LHbcent2", "https://tec.openplanner.team/stops/LJAhanq4"], ["https://tec.openplanner.team/stops/Cgzlera1", "https://tec.openplanner.team/stops/Cmyvesa2"], ["https://tec.openplanner.team/stops/H4wa149b", "https://tec.openplanner.team/stops/H4wa153b"], ["https://tec.openplanner.team/stops/LDOgare1", "https://tec.openplanner.team/stops/LDOviad2"], ["https://tec.openplanner.team/stops/Cmacart3", "https://tec.openplanner.team/stops/Cmamarc1"], ["https://tec.openplanner.team/stops/Bbeagae2", "https://tec.openplanner.team/stops/Bsrgcur1"], ["https://tec.openplanner.team/stops/H1cd111d", "https://tec.openplanner.team/stops/H1hr127a"], ["https://tec.openplanner.team/stops/LNEbois2", "https://tec.openplanner.team/stops/LOLcroi1"], ["https://tec.openplanner.team/stops/LLbquar2", "https://tec.openplanner.team/stops/LLbrecu1"], ["https://tec.openplanner.team/stops/Ccicent3", "https://tec.openplanner.team/stops/Ccicent4"], ["https://tec.openplanner.team/stops/LPRfond1", "https://tec.openplanner.team/stops/LPRpeti2"], ["https://tec.openplanner.team/stops/X831ada", "https://tec.openplanner.team/stops/X831aea"], ["https://tec.openplanner.team/stops/Llgdony2", "https://tec.openplanner.team/stops/Llgjonr2"], ["https://tec.openplanner.team/stops/H1el133a", "https://tec.openplanner.team/stops/H1el140b"], ["https://tec.openplanner.team/stops/X897aca", "https://tec.openplanner.team/stops/X897acb"], ["https://tec.openplanner.team/stops/Lemjacq2", "https://tec.openplanner.team/stops/Lempass1"], ["https://tec.openplanner.team/stops/X940aba", "https://tec.openplanner.team/stops/X948awa"], ["https://tec.openplanner.team/stops/LSZheid1", "https://tec.openplanner.team/stops/LTgsous1"], ["https://tec.openplanner.team/stops/N134aca", "https://tec.openplanner.team/stops/N134acb"], ["https://tec.openplanner.team/stops/H3so158a", "https://tec.openplanner.team/stops/H3so158b"], ["https://tec.openplanner.team/stops/N538aga", "https://tec.openplanner.team/stops/N538avb"], ["https://tec.openplanner.team/stops/X826afa", "https://tec.openplanner.team/stops/X826afb"], ["https://tec.openplanner.team/stops/LCOcrom1", "https://tec.openplanner.team/stops/LCOcrom2"], ["https://tec.openplanner.team/stops/X790aka", "https://tec.openplanner.team/stops/X790ama"], ["https://tec.openplanner.team/stops/Lghgoll2", "https://tec.openplanner.team/stops/Lghlieg1"], ["https://tec.openplanner.team/stops/Boveker2", "https://tec.openplanner.team/stops/Bovesol1"], ["https://tec.openplanner.team/stops/H4tu170b", "https://tec.openplanner.team/stops/H4tu172a"], ["https://tec.openplanner.team/stops/H1gr110a", "https://tec.openplanner.team/stops/H1hr126a"], ["https://tec.openplanner.team/stops/X741aja", "https://tec.openplanner.team/stops/X741ala"], ["https://tec.openplanner.team/stops/X715aja", "https://tec.openplanner.team/stops/X715akb"], ["https://tec.openplanner.team/stops/N521arb", "https://tec.openplanner.team/stops/N521ava"], ["https://tec.openplanner.team/stops/N310ada", "https://tec.openplanner.team/stops/N310aea"], ["https://tec.openplanner.team/stops/LELeg--1", "https://tec.openplanner.team/stops/LELhard1"], ["https://tec.openplanner.team/stops/LOmmer-1", "https://tec.openplanner.team/stops/LSeaque1"], ["https://tec.openplanner.team/stops/N235aea", "https://tec.openplanner.team/stops/N241aeb"], ["https://tec.openplanner.team/stops/LrAbotz1", "https://tec.openplanner.team/stops/LrApley2"], ["https://tec.openplanner.team/stops/LOuplac2", "https://tec.openplanner.team/stops/LOuplac3"], ["https://tec.openplanner.team/stops/LThhoul1", "https://tec.openplanner.team/stops/LThhoul2"], ["https://tec.openplanner.team/stops/LBscime2", "https://tec.openplanner.team/stops/LBsfer-1"], ["https://tec.openplanner.team/stops/Bwatifr1", "https://tec.openplanner.team/stops/Bwatrdu1"], ["https://tec.openplanner.team/stops/X681ada", "https://tec.openplanner.team/stops/X681aga"], ["https://tec.openplanner.team/stops/H1wz170a", "https://tec.openplanner.team/stops/H1wz173a"], ["https://tec.openplanner.team/stops/LFMkrut2", "https://tec.openplanner.team/stops/LFPkape4"], ["https://tec.openplanner.team/stops/H4rc231b", "https://tec.openplanner.team/stops/H4rc232b"], ["https://tec.openplanner.team/stops/X653aca", "https://tec.openplanner.team/stops/X663avb"], ["https://tec.openplanner.team/stops/N270aca", "https://tec.openplanner.team/stops/N270acb"], ["https://tec.openplanner.team/stops/N562bla", "https://tec.openplanner.team/stops/N562bsa"], ["https://tec.openplanner.team/stops/N501afb", "https://tec.openplanner.team/stops/N501aga"], ["https://tec.openplanner.team/stops/Lmobols1", "https://tec.openplanner.team/stops/Lmogoff2"], ["https://tec.openplanner.team/stops/X872aga", "https://tec.openplanner.team/stops/X890afa"], ["https://tec.openplanner.team/stops/Caccarr2", "https://tec.openplanner.team/stops/Cbfchla2"], ["https://tec.openplanner.team/stops/N123aba", "https://tec.openplanner.team/stops/N123abb"], ["https://tec.openplanner.team/stops/X664aoa", "https://tec.openplanner.team/stops/X769arb"], ["https://tec.openplanner.team/stops/Bcrnnpl2", "https://tec.openplanner.team/stops/Bcrnsge1"], ["https://tec.openplanner.team/stops/LHGbeur1", "https://tec.openplanner.team/stops/LOTcloe2"], ["https://tec.openplanner.team/stops/LTBeg--1", "https://tec.openplanner.team/stops/X714abb"], ["https://tec.openplanner.team/stops/Baegd741", "https://tec.openplanner.team/stops/Bramgar1"], ["https://tec.openplanner.team/stops/H1do108a", "https://tec.openplanner.team/stops/H1do114b"], ["https://tec.openplanner.team/stops/LCAeg--2", "https://tec.openplanner.team/stops/LTGvill2"], ["https://tec.openplanner.team/stops/Btubdeh2", "https://tec.openplanner.team/stops/Btubind1"], ["https://tec.openplanner.team/stops/Ldilyce*", "https://tec.openplanner.team/stops/Lprdavi1"], ["https://tec.openplanner.team/stops/X636afa", "https://tec.openplanner.team/stops/X636afb"], ["https://tec.openplanner.team/stops/H1gh365a", "https://tec.openplanner.team/stops/H1ni319a"], ["https://tec.openplanner.team/stops/N110aga", "https://tec.openplanner.team/stops/N124aba"], ["https://tec.openplanner.team/stops/LTychev1", "https://tec.openplanner.team/stops/LTyh24-2"], ["https://tec.openplanner.team/stops/H1hn207b", "https://tec.openplanner.team/stops/H1hn363b"], ["https://tec.openplanner.team/stops/LREsp901", "https://tec.openplanner.team/stops/LREsp902"], ["https://tec.openplanner.team/stops/X910aea", "https://tec.openplanner.team/stops/X910aeb"], ["https://tec.openplanner.team/stops/H1mr123b", "https://tec.openplanner.team/stops/H1mr125a"], ["https://tec.openplanner.team/stops/LHNtill2", "https://tec.openplanner.team/stops/LHNtonn1"], ["https://tec.openplanner.team/stops/Csesabo2", "https://tec.openplanner.team/stops/N425aha"], ["https://tec.openplanner.team/stops/X626aja", "https://tec.openplanner.team/stops/X626ajb"], ["https://tec.openplanner.team/stops/N573aoa", "https://tec.openplanner.team/stops/N573aob"], ["https://tec.openplanner.team/stops/H1cu113b", "https://tec.openplanner.team/stops/H1hn206a"], ["https://tec.openplanner.team/stops/Bottath1", "https://tec.openplanner.team/stops/Bottegl4"], ["https://tec.openplanner.team/stops/Cgotech1", "https://tec.openplanner.team/stops/Cwxplac2"], ["https://tec.openplanner.team/stops/N562ama", "https://tec.openplanner.team/stops/N562ata"], ["https://tec.openplanner.team/stops/H1cu124a", "https://tec.openplanner.team/stops/H1cu129a"], ["https://tec.openplanner.team/stops/N542aqa", "https://tec.openplanner.team/stops/N542asb"], ["https://tec.openplanner.team/stops/H4bv145a", "https://tec.openplanner.team/stops/H4bv145b"], ["https://tec.openplanner.team/stops/LLSba6-2", "https://tec.openplanner.team/stops/LLYhoch2"], ["https://tec.openplanner.team/stops/Lghbonn2", "https://tec.openplanner.team/stops/Lghhoco2"], ["https://tec.openplanner.team/stops/H1et101a", "https://tec.openplanner.team/stops/H1ju120c"], ["https://tec.openplanner.team/stops/N118azb", "https://tec.openplanner.team/stops/N118baa"], ["https://tec.openplanner.team/stops/H2lc171a", "https://tec.openplanner.team/stops/H2ll200a"], ["https://tec.openplanner.team/stops/X994aba", "https://tec.openplanner.team/stops/X994afa"], ["https://tec.openplanner.team/stops/X983aea", "https://tec.openplanner.team/stops/X996aga"], ["https://tec.openplanner.team/stops/LESchac1", "https://tec.openplanner.team/stops/LESflag1"], ["https://tec.openplanner.team/stops/Laleg--2", "https://tec.openplanner.team/stops/Lanschu2"], ["https://tec.openplanner.team/stops/H1be100b", "https://tec.openplanner.team/stops/H1so137a"], ["https://tec.openplanner.team/stops/LMforba2", "https://tec.openplanner.team/stops/LMfpral2"], ["https://tec.openplanner.team/stops/Cfrchro1", "https://tec.openplanner.team/stops/Cfrptfe2"], ["https://tec.openplanner.team/stops/N520aha", "https://tec.openplanner.team/stops/N520aib"], ["https://tec.openplanner.team/stops/Llgavro2", "https://tec.openplanner.team/stops/Llgbavr1"], ["https://tec.openplanner.team/stops/X664ana", "https://tec.openplanner.team/stops/X664anb"], ["https://tec.openplanner.team/stops/LvAkirc2", "https://tec.openplanner.team/stops/LvAschr1"], ["https://tec.openplanner.team/stops/Cpcgout2", "https://tec.openplanner.team/stops/Cpcplac4"], ["https://tec.openplanner.team/stops/X643aaa", "https://tec.openplanner.team/stops/X644acb"], ["https://tec.openplanner.team/stops/N537akb", "https://tec.openplanner.team/stops/N537alb"], ["https://tec.openplanner.team/stops/X982aka", "https://tec.openplanner.team/stops/X982bzb"], ["https://tec.openplanner.team/stops/H4lz127b", "https://tec.openplanner.team/stops/H4wp150b"], ["https://tec.openplanner.team/stops/LORgend1", "https://tec.openplanner.team/stops/LORgend2"], ["https://tec.openplanner.team/stops/N338aha", "https://tec.openplanner.team/stops/N338aia"], ["https://tec.openplanner.team/stops/Lsehya-4", "https://tec.openplanner.team/stops/Lsepair1"], ["https://tec.openplanner.team/stops/LScd45-1", "https://tec.openplanner.team/stops/LSevitu4"], ["https://tec.openplanner.team/stops/Bottbou1", "https://tec.openplanner.team/stops/Bottbou2"], ["https://tec.openplanner.team/stops/H1eu102b", "https://tec.openplanner.team/stops/H1eu104a"], ["https://tec.openplanner.team/stops/LbOvith2", "https://tec.openplanner.team/stops/LnEleje2"], ["https://tec.openplanner.team/stops/X954aba", "https://tec.openplanner.team/stops/X954abb"], ["https://tec.openplanner.team/stops/LLmeg--1", "https://tec.openplanner.team/stops/LLmvict1"], ["https://tec.openplanner.team/stops/Blinbru1", "https://tec.openplanner.team/stops/Blinbru2"], ["https://tec.openplanner.team/stops/LTPnoup1", "https://tec.openplanner.team/stops/LTPpreh1"], ["https://tec.openplanner.team/stops/LVLbovy1", "https://tec.openplanner.team/stops/LVLruis1"], ["https://tec.openplanner.team/stops/X750apb", "https://tec.openplanner.team/stops/X750bdb"], ["https://tec.openplanner.team/stops/Bquebre1", "https://tec.openplanner.team/stops/Brebeau1"], ["https://tec.openplanner.team/stops/Cplstfa2", "https://tec.openplanner.team/stops/Cplstfa3"], ["https://tec.openplanner.team/stops/Bhaless1", "https://tec.openplanner.team/stops/Bhalkrk1"], ["https://tec.openplanner.team/stops/X982caa", "https://tec.openplanner.team/stops/X986aaa"], ["https://tec.openplanner.team/stops/Bjodgai1", "https://tec.openplanner.team/stops/Bjodgai2"], ["https://tec.openplanner.team/stops/N501dpa", "https://tec.openplanner.team/stops/N501era"], ["https://tec.openplanner.team/stops/X801aaa", "https://tec.openplanner.team/stops/X802aub"], ["https://tec.openplanner.team/stops/LoUpete2", "https://tec.openplanner.team/stops/LoUwelc2"], ["https://tec.openplanner.team/stops/H1mk117a", "https://tec.openplanner.team/stops/H1mk117b"], ["https://tec.openplanner.team/stops/N501bbc", "https://tec.openplanner.team/stops/N501cza"], ["https://tec.openplanner.team/stops/N527acb", "https://tec.openplanner.team/stops/N527afb"], ["https://tec.openplanner.team/stops/H4ta119b", "https://tec.openplanner.team/stops/H4ta124a"], ["https://tec.openplanner.team/stops/Cbbjfeu2", "https://tec.openplanner.team/stops/Ccabois2"], ["https://tec.openplanner.team/stops/H5qu150b", "https://tec.openplanner.team/stops/H5qu154b"], ["https://tec.openplanner.team/stops/X955aba", "https://tec.openplanner.team/stops/X955adb"], ["https://tec.openplanner.team/stops/H1mh113b", "https://tec.openplanner.team/stops/H1mh115a"], ["https://tec.openplanner.team/stops/Cfacamp4", "https://tec.openplanner.team/stops/Cfaetoi2"], ["https://tec.openplanner.team/stops/LCseg--2", "https://tec.openplanner.team/stops/LCsfize1"], ["https://tec.openplanner.team/stops/LFIeg--1", "https://tec.openplanner.team/stops/LFIeg--2"], ["https://tec.openplanner.team/stops/Blmlvex1", "https://tec.openplanner.team/stops/Blmlvex2"], ["https://tec.openplanner.team/stops/H1ms245b", "https://tec.openplanner.team/stops/H1ms260b"], ["https://tec.openplanner.team/stops/N140aab", "https://tec.openplanner.team/stops/N143aaa"], ["https://tec.openplanner.team/stops/Ccocoup1", "https://tec.openplanner.team/stops/Ccohuli1"], ["https://tec.openplanner.team/stops/N115aab", "https://tec.openplanner.team/stops/N115adb"], ["https://tec.openplanner.team/stops/Btannda2", "https://tec.openplanner.team/stops/Btanpla4"], ["https://tec.openplanner.team/stops/Lbocond2", "https://tec.openplanner.team/stops/LTIcime1"], ["https://tec.openplanner.team/stops/N538amb", "https://tec.openplanner.team/stops/N538arb"], ["https://tec.openplanner.team/stops/LVEcacq1", "https://tec.openplanner.team/stops/LVEfize1"], ["https://tec.openplanner.team/stops/LAwfans1", "https://tec.openplanner.team/stops/LXoharz6"], ["https://tec.openplanner.team/stops/LkTgutl1", "https://tec.openplanner.team/stops/LkTgutl2"], ["https://tec.openplanner.team/stops/LHuherm2", "https://tec.openplanner.team/stops/NL73adb"], ["https://tec.openplanner.team/stops/Bernpon1", "https://tec.openplanner.team/stops/Bgemrom3"], ["https://tec.openplanner.team/stops/Bquebth1", "https://tec.openplanner.team/stops/Bquecro1"], ["https://tec.openplanner.team/stops/X836ada", "https://tec.openplanner.team/stops/X836adb"], ["https://tec.openplanner.team/stops/Llgbrab2", "https://tec.openplanner.team/stops/Llgstvi2"], ["https://tec.openplanner.team/stops/X836aca", "https://tec.openplanner.team/stops/X836acb"], ["https://tec.openplanner.team/stops/Cgysole1", "https://tec.openplanner.team/stops/Cgytrie2"], ["https://tec.openplanner.team/stops/H1qu101b", "https://tec.openplanner.team/stops/H1qu103b"], ["https://tec.openplanner.team/stops/Bgerd322", "https://tec.openplanner.team/stops/Bgerprg1"], ["https://tec.openplanner.team/stops/LeIkreu1", "https://tec.openplanner.team/stops/LeIpiro3"], ["https://tec.openplanner.team/stops/H1po130a", "https://tec.openplanner.team/stops/H1po130b"], ["https://tec.openplanner.team/stops/H5at112a", "https://tec.openplanner.team/stops/H5at134b"], ["https://tec.openplanner.team/stops/Cdamare1", "https://tec.openplanner.team/stops/Cloravi1"], ["https://tec.openplanner.team/stops/Cobbusc2", "https://tec.openplanner.team/stops/Cobmara2"], ["https://tec.openplanner.team/stops/LjeGRPMB", "https://tec.openplanner.team/stops/LjeGRPME"], ["https://tec.openplanner.team/stops/N584aba", "https://tec.openplanner.team/stops/N584aca"], ["https://tec.openplanner.team/stops/Bgntalt2", "https://tec.openplanner.team/stops/Bgntalt4"], ["https://tec.openplanner.team/stops/H4ch119a", "https://tec.openplanner.team/stops/H4ty278b"], ["https://tec.openplanner.team/stops/N528ava", "https://tec.openplanner.team/stops/N542apa"], ["https://tec.openplanner.team/stops/Lmlmich2", "https://tec.openplanner.team/stops/Lmlscie1"], ["https://tec.openplanner.team/stops/H4ag101b", "https://tec.openplanner.team/stops/H4ag104a"], ["https://tec.openplanner.team/stops/Bgdhlai2", "https://tec.openplanner.team/stops/Bgdhpco1"], ["https://tec.openplanner.team/stops/Bcer4br5", "https://tec.openplanner.team/stops/Bcerldo1"], ["https://tec.openplanner.team/stops/Lprceri2", "https://tec.openplanner.team/stops/Lprpous2"], ["https://tec.openplanner.team/stops/LPoneuf2", "https://tec.openplanner.team/stops/LPoxhav2"], ["https://tec.openplanner.team/stops/LWOpier1", "https://tec.openplanner.team/stops/LWOplat2"], ["https://tec.openplanner.team/stops/LBglign1", "https://tec.openplanner.team/stops/LLbvith2"], ["https://tec.openplanner.team/stops/X783abb", "https://tec.openplanner.team/stops/X783adb"], ["https://tec.openplanner.team/stops/X767aaa", "https://tec.openplanner.team/stops/X768acb"], ["https://tec.openplanner.team/stops/Bjodsme1", "https://tec.openplanner.team/stops/Bjodsme2"], ["https://tec.openplanner.team/stops/N571aab", "https://tec.openplanner.team/stops/N571abb"], ["https://tec.openplanner.team/stops/NL76aja", "https://tec.openplanner.team/stops/NL76ajb"], ["https://tec.openplanner.team/stops/Llmbell1", "https://tec.openplanner.team/stops/Llmbell2"], ["https://tec.openplanner.team/stops/Buccmer1", "https://tec.openplanner.team/stops/Buccmer2"], ["https://tec.openplanner.team/stops/N562acb", "https://tec.openplanner.team/stops/N562ahb"], ["https://tec.openplanner.team/stops/Llglaha1", "https://tec.openplanner.team/stops/Llgoeil1"], ["https://tec.openplanner.team/stops/LHodomm1", "https://tec.openplanner.team/stops/LHolexh2"], ["https://tec.openplanner.team/stops/Ltibord1", "https://tec.openplanner.team/stops/Ltihorl2"], ["https://tec.openplanner.team/stops/H1bb121a", "https://tec.openplanner.team/stops/H1hi124b"], ["https://tec.openplanner.team/stops/Bbaltba1", "https://tec.openplanner.team/stops/Bbgnton1"], ["https://tec.openplanner.team/stops/Lpemata2", "https://tec.openplanner.team/stops/Lpeprev1"], ["https://tec.openplanner.team/stops/X941aca", "https://tec.openplanner.team/stops/X941acd"], ["https://tec.openplanner.team/stops/Llieg--2", "https://tec.openplanner.team/stops/Llithon2"], ["https://tec.openplanner.team/stops/N155aha", "https://tec.openplanner.team/stops/N155ahb"], ["https://tec.openplanner.team/stops/Clfbarr4", "https://tec.openplanner.team/stops/Clfpomm2"], ["https://tec.openplanner.team/stops/Lvcchev1", "https://tec.openplanner.team/stops/Lvcchev3"], ["https://tec.openplanner.team/stops/LXHfond1", "https://tec.openplanner.team/stops/LXHfond2"], ["https://tec.openplanner.team/stops/Cwfdame2", "https://tec.openplanner.team/stops/Cwflouv4"], ["https://tec.openplanner.team/stops/Bqueblo1", "https://tec.openplanner.team/stops/Bquecge1"], ["https://tec.openplanner.team/stops/H1ms254e", "https://tec.openplanner.team/stops/H1ms279b"], ["https://tec.openplanner.team/stops/H1au111b", "https://tec.openplanner.team/stops/H1fy118a"], ["https://tec.openplanner.team/stops/Cctpano1", "https://tec.openplanner.team/stops/Cctvche2"], ["https://tec.openplanner.team/stops/LaAburt1", "https://tec.openplanner.team/stops/LaAmise1"], ["https://tec.openplanner.team/stops/LSceg--2", "https://tec.openplanner.team/stops/LTNsarl1"], ["https://tec.openplanner.team/stops/Bmalper2", "https://tec.openplanner.team/stops/Btstcar4"], ["https://tec.openplanner.team/stops/Cchprun2", "https://tec.openplanner.team/stops/CMtirou1"], ["https://tec.openplanner.team/stops/X953ada", "https://tec.openplanner.team/stops/X954agb"], ["https://tec.openplanner.team/stops/LSEquar1", "https://tec.openplanner.team/stops/LSEvill1"], ["https://tec.openplanner.team/stops/LGogare1", "https://tec.openplanner.team/stops/LGorysa2"], ["https://tec.openplanner.team/stops/Bcbqcoi2", "https://tec.openplanner.team/stops/Bcbqp252"], ["https://tec.openplanner.team/stops/N425aha", "https://tec.openplanner.team/stops/N425ahb"], ["https://tec.openplanner.team/stops/H1cu132a", "https://tec.openplanner.team/stops/H1je218b"], ["https://tec.openplanner.team/stops/H1bo103b", "https://tec.openplanner.team/stops/H1sg146b"], ["https://tec.openplanner.team/stops/H4ea129b", "https://tec.openplanner.team/stops/H4ea130b"], ["https://tec.openplanner.team/stops/N501aca", "https://tec.openplanner.team/stops/N503aca"], ["https://tec.openplanner.team/stops/Llgbrab1", "https://tec.openplanner.team/stops/Llgnati2"], ["https://tec.openplanner.team/stops/H4rc232c", "https://tec.openplanner.team/stops/H4rc232d"], ["https://tec.openplanner.team/stops/N562ata", "https://tec.openplanner.team/stops/N562bsa"], ["https://tec.openplanner.team/stops/H2ll180a", "https://tec.openplanner.team/stops/H2ll258a"], ["https://tec.openplanner.team/stops/X626aea", "https://tec.openplanner.team/stops/X626afa"], ["https://tec.openplanner.team/stops/LVthest1", "https://tec.openplanner.team/stops/LVtvalu2"], ["https://tec.openplanner.team/stops/LhObull1", "https://tec.openplanner.team/stops/LhPheps2"], ["https://tec.openplanner.team/stops/X764afb", "https://tec.openplanner.team/stops/X769arb"], ["https://tec.openplanner.team/stops/H4ae101b", "https://tec.openplanner.team/stops/H4ef113d"], ["https://tec.openplanner.team/stops/N308afb", "https://tec.openplanner.team/stops/N308asa"], ["https://tec.openplanner.team/stops/Cfrgivr2", "https://tec.openplanner.team/stops/Cfrsour1"], ["https://tec.openplanner.team/stops/X636afb", "https://tec.openplanner.team/stops/X636baa"], ["https://tec.openplanner.team/stops/Bnivaba1", "https://tec.openplanner.team/stops/Bnivpve2"], ["https://tec.openplanner.team/stops/LELchap2", "https://tec.openplanner.team/stops/LHChaut5"], ["https://tec.openplanner.team/stops/H4mb139a", "https://tec.openplanner.team/stops/H4mb140a"], ["https://tec.openplanner.team/stops/LHUpost2", "https://tec.openplanner.team/stops/LHUpost4"], ["https://tec.openplanner.team/stops/X820agb", "https://tec.openplanner.team/stops/X820ahb"], ["https://tec.openplanner.team/stops/LbUjost2", "https://tec.openplanner.team/stops/LhUdenk2"], ["https://tec.openplanner.team/stops/X733aeb", "https://tec.openplanner.team/stops/X734apb"], ["https://tec.openplanner.team/stops/LOUbarr2", "https://tec.openplanner.team/stops/Lvitour2"], ["https://tec.openplanner.team/stops/X822aba", "https://tec.openplanner.team/stops/X822apa"], ["https://tec.openplanner.team/stops/Llgabat2", "https://tec.openplanner.team/stops/Llgmare5"], ["https://tec.openplanner.team/stops/H1sg144b", "https://tec.openplanner.team/stops/H1te175a"], ["https://tec.openplanner.team/stops/N211aia", "https://tec.openplanner.team/stops/N211ala"], ["https://tec.openplanner.team/stops/Cmlphai1", "https://tec.openplanner.team/stops/Cmlphai2"], ["https://tec.openplanner.team/stops/X756aca", "https://tec.openplanner.team/stops/X756acb"], ["https://tec.openplanner.team/stops/H2mi125a", "https://tec.openplanner.team/stops/H2mi125b"], ["https://tec.openplanner.team/stops/N506aba", "https://tec.openplanner.team/stops/N506abb"], ["https://tec.openplanner.team/stops/Causart2", "https://tec.openplanner.team/stops/N543avh"], ["https://tec.openplanner.team/stops/N514aab", "https://tec.openplanner.team/stops/N514anb"], ["https://tec.openplanner.team/stops/H1bl101a", "https://tec.openplanner.team/stops/H1bl102a"], ["https://tec.openplanner.team/stops/NR27aaa", "https://tec.openplanner.team/stops/NR27aab"], ["https://tec.openplanner.team/stops/LMNgend2", "https://tec.openplanner.team/stops/LMNpann2"], ["https://tec.openplanner.team/stops/LaAgold2", "https://tec.openplanner.team/stops/LaAzwei2"], ["https://tec.openplanner.team/stops/N104aca", "https://tec.openplanner.team/stops/N104aea"], ["https://tec.openplanner.team/stops/H4wa155a", "https://tec.openplanner.team/stops/H4wa156a"], ["https://tec.openplanner.team/stops/Lcacasi1", "https://tec.openplanner.team/stops/Lcapisc2"], ["https://tec.openplanner.team/stops/Croball2", "https://tec.openplanner.team/stops/Crorpai2"], ["https://tec.openplanner.team/stops/Llojeme2", "https://tec.openplanner.team/stops/Llojeme3"], ["https://tec.openplanner.team/stops/Lsekubo2", "https://tec.openplanner.team/stops/Lsemara1"], ["https://tec.openplanner.team/stops/H1bb146b", "https://tec.openplanner.team/stops/H1do120a"], ["https://tec.openplanner.team/stops/H5rx125b", "https://tec.openplanner.team/stops/H5rx146a"], ["https://tec.openplanner.team/stops/H1nm139a", "https://tec.openplanner.team/stops/H1nm140b"], ["https://tec.openplanner.team/stops/Bosqcar1", "https://tec.openplanner.team/stops/Btubpir1"], ["https://tec.openplanner.team/stops/N101aba", "https://tec.openplanner.team/stops/N118aoa"], ["https://tec.openplanner.team/stops/N383afa", "https://tec.openplanner.team/stops/N874amc"], ["https://tec.openplanner.team/stops/Cmiegli2", "https://tec.openplanner.team/stops/Cmivert1"], ["https://tec.openplanner.team/stops/Bjodpvi2", "https://tec.openplanner.team/stops/Bjodsje2"], ["https://tec.openplanner.team/stops/Bvilcoq2", "https://tec.openplanner.team/stops/Bvilpar2"], ["https://tec.openplanner.team/stops/Csebasc2", "https://tec.openplanner.team/stops/Cselibe1"], ["https://tec.openplanner.team/stops/LaAkapi1", "https://tec.openplanner.team/stops/LaAlinz1"], ["https://tec.openplanner.team/stops/LREelse2", "https://tec.openplanner.team/stops/LREgar-2"], ["https://tec.openplanner.team/stops/LChxhav1", "https://tec.openplanner.team/stops/LJA65h-1"], ["https://tec.openplanner.team/stops/NL77aba", "https://tec.openplanner.team/stops/NL77abb"], ["https://tec.openplanner.team/stops/H4ea131a", "https://tec.openplanner.team/stops/H4tp145a"], ["https://tec.openplanner.team/stops/X670aqa", "https://tec.openplanner.team/stops/X670asb"], ["https://tec.openplanner.team/stops/N309aca", "https://tec.openplanner.team/stops/N343alb"], ["https://tec.openplanner.team/stops/N543aea", "https://tec.openplanner.team/stops/N543ara"], ["https://tec.openplanner.team/stops/LbTathe2", "https://tec.openplanner.team/stops/LbTkreu4"], ["https://tec.openplanner.team/stops/N204aha", "https://tec.openplanner.team/stops/N204ahb"], ["https://tec.openplanner.team/stops/LAWbrou1", "https://tec.openplanner.team/stops/LBIbois2"], ["https://tec.openplanner.team/stops/N562alc", "https://tec.openplanner.team/stops/N562bwa"], ["https://tec.openplanner.team/stops/H1ob335c", "https://tec.openplanner.team/stops/H1ob341a"], ["https://tec.openplanner.team/stops/LVEmohi1", "https://tec.openplanner.team/stops/LVEtomb1"], ["https://tec.openplanner.team/stops/LSBdelc2", "https://tec.openplanner.team/stops/LSktinc1"], ["https://tec.openplanner.team/stops/Cgrchfe1", "https://tec.openplanner.team/stops/Clvimtr3"], ["https://tec.openplanner.team/stops/LrDhind1", "https://tec.openplanner.team/stops/LrDhind2"], ["https://tec.openplanner.team/stops/N111abb", "https://tec.openplanner.team/stops/N111ada"], ["https://tec.openplanner.team/stops/H4mo136a", "https://tec.openplanner.team/stops/H4mo154a"], ["https://tec.openplanner.team/stops/LmYkirc2", "https://tec.openplanner.team/stops/LvA12--4"], ["https://tec.openplanner.team/stops/X771aca", "https://tec.openplanner.team/stops/X771aeb"], ["https://tec.openplanner.team/stops/LNEgare*", "https://tec.openplanner.team/stops/LNEvpn-2"], ["https://tec.openplanner.team/stops/LJU493-1", "https://tec.openplanner.team/stops/LXhcite1"], ["https://tec.openplanner.team/stops/X758ada", "https://tec.openplanner.team/stops/X758adb"], ["https://tec.openplanner.team/stops/X750asb", "https://tec.openplanner.team/stops/X750bab"], ["https://tec.openplanner.team/stops/H4lp122b", "https://tec.openplanner.team/stops/H4lp125b"], ["https://tec.openplanner.team/stops/Bbgerlr1", "https://tec.openplanner.team/stops/Blmlcle1"], ["https://tec.openplanner.team/stops/X801abc", "https://tec.openplanner.team/stops/X801acb"], ["https://tec.openplanner.team/stops/H3so153a", "https://tec.openplanner.team/stops/H3so169b"], ["https://tec.openplanner.team/stops/X741alb", "https://tec.openplanner.team/stops/X840aeb"], ["https://tec.openplanner.team/stops/Bwavdel1", "https://tec.openplanner.team/stops/Bwavfbe1"], ["https://tec.openplanner.team/stops/LXhjupr3", "https://tec.openplanner.team/stops/LXhnouv2"], ["https://tec.openplanner.team/stops/LMNeg--1", "https://tec.openplanner.team/stops/LMNeg--2"], ["https://tec.openplanner.team/stops/Cmlchan2", "https://tec.openplanner.team/stops/Cmlvxmo2"], ["https://tec.openplanner.team/stops/LAicarr2", "https://tec.openplanner.team/stops/LAivill1"], ["https://tec.openplanner.team/stops/H1ne141b", "https://tec.openplanner.team/stops/H1ne145a"], ["https://tec.openplanner.team/stops/Lheente1", "https://tec.openplanner.team/stops/Lheente2"], ["https://tec.openplanner.team/stops/Cctbinc2", "https://tec.openplanner.team/stops/NC11amb"], ["https://tec.openplanner.team/stops/N501baa", "https://tec.openplanner.team/stops/N501bab"], ["https://tec.openplanner.team/stops/X740aca", "https://tec.openplanner.team/stops/X740adb"], ["https://tec.openplanner.team/stops/H2sb231a", "https://tec.openplanner.team/stops/H2sb231d"], ["https://tec.openplanner.team/stops/Lbralbe1", "https://tec.openplanner.team/stops/Lbrquai1"], ["https://tec.openplanner.team/stops/Cmldupu1", "https://tec.openplanner.team/stops/Cmlrang1"], ["https://tec.openplanner.team/stops/H1mr124b", "https://tec.openplanner.team/stops/H1on128b"], ["https://tec.openplanner.team/stops/N308apb", "https://tec.openplanner.team/stops/N331agb"], ["https://tec.openplanner.team/stops/H4mo133a", "https://tec.openplanner.team/stops/H4mo181b"], ["https://tec.openplanner.team/stops/H1pa105a", "https://tec.openplanner.team/stops/H1pa110b"], ["https://tec.openplanner.team/stops/X674aaa", "https://tec.openplanner.team/stops/X820agb"], ["https://tec.openplanner.team/stops/H4mo158b", "https://tec.openplanner.team/stops/H4mo169a"], ["https://tec.openplanner.team/stops/X850aeb", "https://tec.openplanner.team/stops/X850alb"], ["https://tec.openplanner.team/stops/Ccodubo2", "https://tec.openplanner.team/stops/Cpcchau"], ["https://tec.openplanner.team/stops/X804akb", "https://tec.openplanner.team/stops/X804bwb"], ["https://tec.openplanner.team/stops/LSZarbe2", "https://tec.openplanner.team/stops/LTgbalm1"], ["https://tec.openplanner.team/stops/LSCc39-1", "https://tec.openplanner.team/stops/LSCchap1"], ["https://tec.openplanner.team/stops/H4ty326a", "https://tec.openplanner.team/stops/H4vx361b"], ["https://tec.openplanner.team/stops/N551aha", "https://tec.openplanner.team/stops/N551arb"], ["https://tec.openplanner.team/stops/LpEbins1", "https://tec.openplanner.team/stops/LtEnatu1"], ["https://tec.openplanner.team/stops/N541ada", "https://tec.openplanner.team/stops/N541adb"], ["https://tec.openplanner.team/stops/Bbghgli1", "https://tec.openplanner.team/stops/Bbghgli2"], ["https://tec.openplanner.team/stops/LsVmolk1", "https://tec.openplanner.team/stops/LsVmolk2"], ["https://tec.openplanner.team/stops/Cchplan1", "https://tec.openplanner.team/stops/CMlpla2"], ["https://tec.openplanner.team/stops/LHHtill1", "https://tec.openplanner.team/stops/LSG111-2"], ["https://tec.openplanner.team/stops/X718aab", "https://tec.openplanner.team/stops/X718abb"], ["https://tec.openplanner.team/stops/N573ama", "https://tec.openplanner.team/stops/N573aoa"], ["https://tec.openplanner.team/stops/H4ag102b", "https://tec.openplanner.team/stops/H4ag104b"], ["https://tec.openplanner.team/stops/N531aca", "https://tec.openplanner.team/stops/N531ada"], ["https://tec.openplanner.team/stops/LNCgene1", "https://tec.openplanner.team/stops/LNClila1"], ["https://tec.openplanner.team/stops/H1br124a", "https://tec.openplanner.team/stops/H1br124b"], ["https://tec.openplanner.team/stops/Bkrabhu2", "https://tec.openplanner.team/stops/Bovevnd1"], ["https://tec.openplanner.team/stops/LGeduc-2", "https://tec.openplanner.team/stops/LGeschr2"], ["https://tec.openplanner.team/stops/NL76ana", "https://tec.openplanner.team/stops/NL76aoa"], ["https://tec.openplanner.team/stops/N531acb", "https://tec.openplanner.team/stops/N531akb"], ["https://tec.openplanner.team/stops/Lbofrai1", "https://tec.openplanner.team/stops/Lbopote1"], ["https://tec.openplanner.team/stops/H4te258a", "https://tec.openplanner.team/stops/H4te259b"], ["https://tec.openplanner.team/stops/H1by104b", "https://tec.openplanner.team/stops/H1sy137a"], ["https://tec.openplanner.team/stops/LHUaron1", "https://tec.openplanner.team/stops/LHUecte1"], ["https://tec.openplanner.team/stops/N551apa", "https://tec.openplanner.team/stops/N551aqb"], ["https://tec.openplanner.team/stops/Lcealig1", "https://tec.openplanner.team/stops/Lceavia2"], ["https://tec.openplanner.team/stops/Ccyfede2", "https://tec.openplanner.team/stops/Crbhurt1"], ["https://tec.openplanner.team/stops/Ccupres1", "https://tec.openplanner.team/stops/Ccutill3"], ["https://tec.openplanner.team/stops/H1fl140b", "https://tec.openplanner.team/stops/H1je368a"], ["https://tec.openplanner.team/stops/H4an104a", "https://tec.openplanner.team/stops/H4cr110a"], ["https://tec.openplanner.team/stops/LMHeg--2", "https://tec.openplanner.team/stops/LMHplac1"], ["https://tec.openplanner.team/stops/X601bha", "https://tec.openplanner.team/stops/X601bhb"], ["https://tec.openplanner.team/stops/Cfaamio4", "https://tec.openplanner.team/stops/Cfaplma2"], ["https://tec.openplanner.team/stops/Csygare2", "https://tec.openplanner.team/stops/Csygare4"], ["https://tec.openplanner.team/stops/Lrcchar1", "https://tec.openplanner.team/stops/Lrccomm1"], ["https://tec.openplanner.team/stops/N507ada", "https://tec.openplanner.team/stops/NL30aka"], ["https://tec.openplanner.team/stops/Bnivbng1", "https://tec.openplanner.team/stops/Bnivbos1"], ["https://tec.openplanner.team/stops/X911afb", "https://tec.openplanner.team/stops/X911asa"], ["https://tec.openplanner.team/stops/LNIec--2", "https://tec.openplanner.team/stops/LSZjona2"], ["https://tec.openplanner.team/stops/Cgzlera2", "https://tec.openplanner.team/stops/Cgzrust1"], ["https://tec.openplanner.team/stops/H1ms299a", "https://tec.openplanner.team/stops/H1ms314a"], ["https://tec.openplanner.team/stops/N543bda", "https://tec.openplanner.team/stops/N566aeb"], ["https://tec.openplanner.team/stops/H3so167a", "https://tec.openplanner.team/stops/H3so173a"], ["https://tec.openplanner.team/stops/Cflcarr1", "https://tec.openplanner.team/stops/Cflchel4"], ["https://tec.openplanner.team/stops/Lbrfune*", "https://tec.openplanner.team/stops/Lgrfrai1"], ["https://tec.openplanner.team/stops/X364aaa", "https://tec.openplanner.team/stops/X371aia"], ["https://tec.openplanner.team/stops/N506anb", "https://tec.openplanner.team/stops/N537ala"], ["https://tec.openplanner.team/stops/Cgrgend1", "https://tec.openplanner.team/stops/NC14aob"], ["https://tec.openplanner.team/stops/N134aab", "https://tec.openplanner.team/stops/N135azb"], ["https://tec.openplanner.team/stops/H1ms247a", "https://tec.openplanner.team/stops/H1ms936a"], ["https://tec.openplanner.team/stops/X610adb", "https://tec.openplanner.team/stops/X610ahb"], ["https://tec.openplanner.team/stops/X907aba", "https://tec.openplanner.team/stops/X907ajb"], ["https://tec.openplanner.team/stops/Ljujaur2", "https://tec.openplanner.team/stops/Ljuplpr1"], ["https://tec.openplanner.team/stops/Lstchim1", "https://tec.openplanner.team/stops/Lstphys1"], ["https://tec.openplanner.team/stops/Btslegl1", "https://tec.openplanner.team/stops/Btsllbv2"], ["https://tec.openplanner.team/stops/X639aqb", "https://tec.openplanner.team/stops/X639aub"], ["https://tec.openplanner.team/stops/X901arb", "https://tec.openplanner.team/stops/X901bia"], ["https://tec.openplanner.team/stops/LCxbeau2", "https://tec.openplanner.team/stops/LCxwarr2"], ["https://tec.openplanner.team/stops/Cgofert2", "https://tec.openplanner.team/stops/Cgorosa3"], ["https://tec.openplanner.team/stops/LBSneuv2", "https://tec.openplanner.team/stops/LHScite1"], ["https://tec.openplanner.team/stops/LmObahn*", "https://tec.openplanner.team/stops/LmOkape2"], ["https://tec.openplanner.team/stops/N244aeb", "https://tec.openplanner.team/stops/N248aab"], ["https://tec.openplanner.team/stops/N501gma", "https://tec.openplanner.team/stops/N501iza"], ["https://tec.openplanner.team/stops/X725aqa", "https://tec.openplanner.team/stops/X725arb"], ["https://tec.openplanner.team/stops/N113aba", "https://tec.openplanner.team/stops/N127aeb"], ["https://tec.openplanner.team/stops/Laltrap2", "https://tec.openplanner.team/stops/Llabrou1"], ["https://tec.openplanner.team/stops/Clfmonu3", "https://tec.openplanner.team/stops/Clftour1"], ["https://tec.openplanner.team/stops/X793aha", "https://tec.openplanner.team/stops/X793aib"], ["https://tec.openplanner.team/stops/X896aaa", "https://tec.openplanner.team/stops/X896aba"], ["https://tec.openplanner.team/stops/X986aea", "https://tec.openplanner.team/stops/X986ata"], ["https://tec.openplanner.team/stops/X763aeb", "https://tec.openplanner.team/stops/X765agb"], ["https://tec.openplanner.team/stops/X624acb", "https://tec.openplanner.team/stops/X624ada"], ["https://tec.openplanner.team/stops/Livcoll1", "https://tec.openplanner.team/stops/Livcoll2"], ["https://tec.openplanner.team/stops/X760agb", "https://tec.openplanner.team/stops/X788aea"], ["https://tec.openplanner.team/stops/LDoeg--1", "https://tec.openplanner.team/stops/LHFcaqu1"], ["https://tec.openplanner.team/stops/LHAcite2", "https://tec.openplanner.team/stops/LHAprei1"], ["https://tec.openplanner.team/stops/LeLbutg1", "https://tec.openplanner.team/stops/LeLdorf2"], ["https://tec.openplanner.team/stops/X912aea", "https://tec.openplanner.team/stops/X912afb"], ["https://tec.openplanner.team/stops/LBIhann1", "https://tec.openplanner.team/stops/LBIvill1"], ["https://tec.openplanner.team/stops/LESecco1", "https://tec.openplanner.team/stops/LESecco2"], ["https://tec.openplanner.team/stops/X669afb", "https://tec.openplanner.team/stops/X669agd"], ["https://tec.openplanner.team/stops/LBThaut2", "https://tec.openplanner.team/stops/Lprmana4"], ["https://tec.openplanner.team/stops/H1wi147a", "https://tec.openplanner.team/stops/H1wi153b"], ["https://tec.openplanner.team/stops/H1ma237a", "https://tec.openplanner.team/stops/H1ma237b"], ["https://tec.openplanner.team/stops/Lrogene1", "https://tec.openplanner.team/stops/Lrogene2"], ["https://tec.openplanner.team/stops/LBNpleg2", "https://tec.openplanner.team/stops/LBNplei2"], ["https://tec.openplanner.team/stops/H5is168a", "https://tec.openplanner.team/stops/H5is168b"], ["https://tec.openplanner.team/stops/Cpcegli1", "https://tec.openplanner.team/stops/Cpcegli2"], ["https://tec.openplanner.team/stops/Cmitrie1", "https://tec.openplanner.team/stops/Cselait1"], ["https://tec.openplanner.team/stops/Crbreve1", "https://tec.openplanner.team/stops/Crclorc2"], ["https://tec.openplanner.team/stops/LVBchau1", "https://tec.openplanner.team/stops/LVBmonu4"], ["https://tec.openplanner.team/stops/Cpcarse2", "https://tec.openplanner.team/stops/Cpctrau2"], ["https://tec.openplanner.team/stops/LTiespe1", "https://tec.openplanner.team/stops/LTiruel2"], ["https://tec.openplanner.team/stops/N539aya", "https://tec.openplanner.team/stops/N564aca"], ["https://tec.openplanner.team/stops/LHFappe4", "https://tec.openplanner.team/stops/LHFhard1"], ["https://tec.openplanner.team/stops/X653aab", "https://tec.openplanner.team/stops/X653aeb"], ["https://tec.openplanner.team/stops/Bjancha1", "https://tec.openplanner.team/stops/Bjanegl1"], ["https://tec.openplanner.team/stops/Cgymast1", "https://tec.openplanner.team/stops/Cgyrrep2"], ["https://tec.openplanner.team/stops/H2mg142a", "https://tec.openplanner.team/stops/H2mg142b"], ["https://tec.openplanner.team/stops/LBLwaid2", "https://tec.openplanner.team/stops/LTrchar2"], ["https://tec.openplanner.team/stops/Ljeegli3", "https://tec.openplanner.team/stops/Ljejoli2"], ["https://tec.openplanner.team/stops/Cfaecmo1", "https://tec.openplanner.team/stops/Cfapiro1"], ["https://tec.openplanner.team/stops/X618alb", "https://tec.openplanner.team/stops/X619amb"], ["https://tec.openplanner.team/stops/LhRkirc2", "https://tec.openplanner.team/stops/LhRwere2"], ["https://tec.openplanner.team/stops/N584axb", "https://tec.openplanner.team/stops/N584ayb"], ["https://tec.openplanner.team/stops/LoDscha1", "https://tec.openplanner.team/stops/LtHkreu4"], ["https://tec.openplanner.team/stops/LESoneu3", "https://tec.openplanner.team/stops/LESoneu4"], ["https://tec.openplanner.team/stops/LHVgoro2", "https://tec.openplanner.team/stops/Lsmh3021"], ["https://tec.openplanner.team/stops/Cbfdufa2", "https://tec.openplanner.team/stops/Cbfplch2"], ["https://tec.openplanner.team/stops/H4fr143b", "https://tec.openplanner.team/stops/H4rc231c"], ["https://tec.openplanner.team/stops/X601cua", "https://tec.openplanner.team/stops/X601cub"], ["https://tec.openplanner.team/stops/X922aga", "https://tec.openplanner.team/stops/X922akb"], ["https://tec.openplanner.team/stops/LSGmall1", "https://tec.openplanner.team/stops/LSkoran1"], ["https://tec.openplanner.team/stops/X806aga", "https://tec.openplanner.team/stops/X873acb"], ["https://tec.openplanner.team/stops/Cmgarsi1", "https://tec.openplanner.team/stops/Cmgpla1"], ["https://tec.openplanner.team/stops/LSNretr1", "https://tec.openplanner.team/stops/LSNretr2"], ["https://tec.openplanner.team/stops/N201anb", "https://tec.openplanner.team/stops/N201aoa"], ["https://tec.openplanner.team/stops/X610aab", "https://tec.openplanner.team/stops/X610ahb"], ["https://tec.openplanner.team/stops/H4ty297a", "https://tec.openplanner.team/stops/H4ty314a"], ["https://tec.openplanner.team/stops/H4bo112b", "https://tec.openplanner.team/stops/H4hu120a"], ["https://tec.openplanner.team/stops/LdUkreu3", "https://tec.openplanner.team/stops/LeSdorf1"], ["https://tec.openplanner.team/stops/X604aea", "https://tec.openplanner.team/stops/X604aeb"], ["https://tec.openplanner.team/stops/N540apa", "https://tec.openplanner.team/stops/N540aqa"], ["https://tec.openplanner.team/stops/Bbgever1", "https://tec.openplanner.team/stops/Blmlvex2"], ["https://tec.openplanner.team/stops/H1ol137a", "https://tec.openplanner.team/stops/H5is168a"], ["https://tec.openplanner.team/stops/N313aca", "https://tec.openplanner.team/stops/N313aea"], ["https://tec.openplanner.team/stops/H1ms273a", "https://tec.openplanner.team/stops/H1ms913a"], ["https://tec.openplanner.team/stops/N552aca", "https://tec.openplanner.team/stops/N552ada"], ["https://tec.openplanner.team/stops/H4co109b", "https://tec.openplanner.team/stops/H4co142a"], ["https://tec.openplanner.team/stops/X879adb", "https://tec.openplanner.team/stops/X879afa"], ["https://tec.openplanner.team/stops/N539ata", "https://tec.openplanner.team/stops/N539beb"], ["https://tec.openplanner.team/stops/Bgrmpco1", "https://tec.openplanner.team/stops/Bgrmver1"], ["https://tec.openplanner.team/stops/X658abb", "https://tec.openplanner.team/stops/X671aeb"], ["https://tec.openplanner.team/stops/LhGgeme1", "https://tec.openplanner.team/stops/LhGkirc6"], ["https://tec.openplanner.team/stops/H1gr122a", "https://tec.openplanner.team/stops/H1sy140b"], ["https://tec.openplanner.team/stops/Bettgar1", "https://tec.openplanner.team/stops/Bixepla2"], ["https://tec.openplanner.team/stops/LTRgare0", "https://tec.openplanner.team/stops/LTRgare1"], ["https://tec.openplanner.team/stops/Lmndari2", "https://tec.openplanner.team/stops/Lsmnico2"], ["https://tec.openplanner.team/stops/N501ira", "https://tec.openplanner.team/stops/N501jcb"], ["https://tec.openplanner.team/stops/LBUchpl1", "https://tec.openplanner.team/stops/LBUmara3"], ["https://tec.openplanner.team/stops/H4ha168a", "https://tec.openplanner.team/stops/H4ha171b"], ["https://tec.openplanner.team/stops/X725aha", "https://tec.openplanner.team/stops/X725bcb"], ["https://tec.openplanner.team/stops/LAWgill1", "https://tec.openplanner.team/stops/LBIpost1"], ["https://tec.openplanner.team/stops/LmS11--2", "https://tec.openplanner.team/stops/LmSkape2"], ["https://tec.openplanner.team/stops/Lmopast1", "https://tec.openplanner.team/stops/Lmopave2"], ["https://tec.openplanner.team/stops/X599aga", "https://tec.openplanner.team/stops/X599agb"], ["https://tec.openplanner.team/stops/X764aaa", "https://tec.openplanner.team/stops/X764aga"], ["https://tec.openplanner.team/stops/Bfelcen2", "https://tec.openplanner.team/stops/Bfelpmo1"], ["https://tec.openplanner.team/stops/X718aka", "https://tec.openplanner.team/stops/X719ada"], ["https://tec.openplanner.team/stops/N524aab", "https://tec.openplanner.team/stops/N524abb"], ["https://tec.openplanner.team/stops/LwTkabi3", "https://tec.openplanner.team/stops/LwTzent1"], ["https://tec.openplanner.team/stops/X877aba", "https://tec.openplanner.team/stops/X880ada"], ["https://tec.openplanner.team/stops/X898abb", "https://tec.openplanner.team/stops/X898adb"], ["https://tec.openplanner.team/stops/N534arb", "https://tec.openplanner.team/stops/N534aua"], ["https://tec.openplanner.team/stops/Bincbbo2", "https://tec.openplanner.team/stops/Boppcar1"], ["https://tec.openplanner.team/stops/N506bta", "https://tec.openplanner.team/stops/N506bxa"], ["https://tec.openplanner.team/stops/N309aab", "https://tec.openplanner.team/stops/N313aea"], ["https://tec.openplanner.team/stops/Cgofbru1", "https://tec.openplanner.team/stops/Ctmsncb2"], ["https://tec.openplanner.team/stops/H2fy120c", "https://tec.openplanner.team/stops/H2fy120d"], ["https://tec.openplanner.team/stops/X791ada", "https://tec.openplanner.team/stops/X791adb"], ["https://tec.openplanner.team/stops/Llmcoop1", "https://tec.openplanner.team/stops/Llmeg--2"], ["https://tec.openplanner.team/stops/LLYcalv1", "https://tec.openplanner.team/stops/LTOplac1"], ["https://tec.openplanner.team/stops/H4hx119b", "https://tec.openplanner.team/stops/H4hx123a"], ["https://tec.openplanner.team/stops/Bbuzcom1", "https://tec.openplanner.team/stops/Bbuzeta1"], ["https://tec.openplanner.team/stops/N301apa", "https://tec.openplanner.team/stops/N302aea"], ["https://tec.openplanner.team/stops/LeYberl2", "https://tec.openplanner.team/stops/LeYwess1"], ["https://tec.openplanner.team/stops/LARauto1", "https://tec.openplanner.team/stops/LRItour2"], ["https://tec.openplanner.team/stops/H4mo175a", "https://tec.openplanner.team/stops/H4mo181b"], ["https://tec.openplanner.team/stops/H1ms920a", "https://tec.openplanner.team/stops/H1ms922a"], ["https://tec.openplanner.team/stops/LTRmosb1", "https://tec.openplanner.team/stops/LTRsain2"], ["https://tec.openplanner.team/stops/X826aaa", "https://tec.openplanner.team/stops/X833abb"], ["https://tec.openplanner.team/stops/X638aga", "https://tec.openplanner.team/stops/X638aob"], ["https://tec.openplanner.team/stops/N204aeb", "https://tec.openplanner.team/stops/N204afa"], ["https://tec.openplanner.team/stops/Lemboul1", "https://tec.openplanner.team/stops/Lemmusc1"], ["https://tec.openplanner.team/stops/X359afa", "https://tec.openplanner.team/stops/X359aja"], ["https://tec.openplanner.team/stops/Bsoihci1", "https://tec.openplanner.team/stops/H3so170a"], ["https://tec.openplanner.team/stops/Llmlaro1", "https://tec.openplanner.team/stops/Lprcite2"], ["https://tec.openplanner.team/stops/N207aeb", "https://tec.openplanner.team/stops/N207afa"], ["https://tec.openplanner.team/stops/Lpeatel2", "https://tec.openplanner.team/stops/Lpeptle1"], ["https://tec.openplanner.team/stops/Bcercab2", "https://tec.openplanner.team/stops/Bcerpco1"], ["https://tec.openplanner.team/stops/X623adb", "https://tec.openplanner.team/stops/X624amb"], ["https://tec.openplanner.team/stops/N349aga", "https://tec.openplanner.team/stops/N351aqa"], ["https://tec.openplanner.team/stops/LAMfrai1", "https://tec.openplanner.team/stops/LAMhaut1"], ["https://tec.openplanner.team/stops/H1bs110c", "https://tec.openplanner.team/stops/H1ge117a"], ["https://tec.openplanner.team/stops/LWAloui2", "https://tec.openplanner.team/stops/LWArege2"], ["https://tec.openplanner.team/stops/X719aeb", "https://tec.openplanner.team/stops/X719afa"], ["https://tec.openplanner.team/stops/H4hx121a", "https://tec.openplanner.team/stops/H4mo161a"], ["https://tec.openplanner.team/stops/H2sb257c", "https://tec.openplanner.team/stops/H3lr108a"], ["https://tec.openplanner.team/stops/H4br108a", "https://tec.openplanner.team/stops/H4jm118a"], ["https://tec.openplanner.team/stops/LTyhapp2", "https://tec.openplanner.team/stops/LTyhapp4"], ["https://tec.openplanner.team/stops/H1hr122a", "https://tec.openplanner.team/stops/H3so156a"], ["https://tec.openplanner.team/stops/H2pe161a", "https://tec.openplanner.team/stops/H2pe163a"], ["https://tec.openplanner.team/stops/H2fa107a", "https://tec.openplanner.team/stops/H2fa108b"], ["https://tec.openplanner.team/stops/LGreg--1", "https://tec.openplanner.team/stops/LORherl1"], ["https://tec.openplanner.team/stops/Bblaccm1", "https://tec.openplanner.team/stops/Bblamsj3"], ["https://tec.openplanner.team/stops/Bfelada1", "https://tec.openplanner.team/stops/Bfelbri3"], ["https://tec.openplanner.team/stops/LTicime1", "https://tec.openplanner.team/stops/LTigera1"], ["https://tec.openplanner.team/stops/Bbstcoi2", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/Lflmaxi1", "https://tec.openplanner.team/stops/Lflrhot2"], ["https://tec.openplanner.team/stops/N118aea", "https://tec.openplanner.team/stops/N118afb"], ["https://tec.openplanner.team/stops/H4we135a", "https://tec.openplanner.team/stops/H4we135b"], ["https://tec.openplanner.team/stops/Lceourt1", "https://tec.openplanner.team/stops/Lemdupo1"], ["https://tec.openplanner.team/stops/LmImirf1", "https://tec.openplanner.team/stops/LmR50--1"], ["https://tec.openplanner.team/stops/LBIcabi1", "https://tec.openplanner.team/stops/LBIpont1"], ["https://tec.openplanner.team/stops/X721aaa", "https://tec.openplanner.team/stops/X721aba"], ["https://tec.openplanner.team/stops/LSPsorb1", "https://tec.openplanner.team/stops/LSPsorb2"], ["https://tec.openplanner.team/stops/Blmlbou2", "https://tec.openplanner.team/stops/Blmlcim2"], ["https://tec.openplanner.team/stops/H1ho138a", "https://tec.openplanner.team/stops/H1ho138b"], ["https://tec.openplanner.team/stops/Bbeubos1", "https://tec.openplanner.team/stops/Bgembhe1"], ["https://tec.openplanner.team/stops/H4hx109a", "https://tec.openplanner.team/stops/H4hx124a"], ["https://tec.openplanner.team/stops/N117aub", "https://tec.openplanner.team/stops/N117aya"], ["https://tec.openplanner.team/stops/LkRrauw1", "https://tec.openplanner.team/stops/LkRrauw2"], ["https://tec.openplanner.team/stops/Cchparc3", "https://tec.openplanner.team/stops/Cchparc4"], ["https://tec.openplanner.team/stops/N515apa", "https://tec.openplanner.team/stops/N515aqd"], ["https://tec.openplanner.team/stops/LOmrela2", "https://tec.openplanner.team/stops/LRuegli1"], ["https://tec.openplanner.team/stops/N501esb", "https://tec.openplanner.team/stops/N501esy"], ["https://tec.openplanner.team/stops/LAo161-1", "https://tec.openplanner.team/stops/LAo170-2"], ["https://tec.openplanner.team/stops/Livgera1", "https://tec.openplanner.team/stops/Livpost1"], ["https://tec.openplanner.team/stops/N347aca", "https://tec.openplanner.team/stops/X346akb"], ["https://tec.openplanner.team/stops/Bgnpgen2", "https://tec.openplanner.team/stops/Bwaypon1"], ["https://tec.openplanner.team/stops/LLecarr3", "https://tec.openplanner.team/stops/X547aib"], ["https://tec.openplanner.team/stops/Lgrclas2", "https://tec.openplanner.team/stops/Llgcorn1"], ["https://tec.openplanner.team/stops/NC44acb", "https://tec.openplanner.team/stops/NC44ada"], ["https://tec.openplanner.team/stops/H4ty311b", "https://tec.openplanner.team/stops/H4vx366a"], ["https://tec.openplanner.team/stops/N501fgb", "https://tec.openplanner.team/stops/N501meb"], ["https://tec.openplanner.team/stops/Clvlove1", "https://tec.openplanner.team/stops/Clvndam2"], ["https://tec.openplanner.team/stops/X723aaa", "https://tec.openplanner.team/stops/X723aha"], ["https://tec.openplanner.team/stops/LBEtrix1", "https://tec.openplanner.team/stops/LDLbois1"], ["https://tec.openplanner.team/stops/Livvill2", "https://tec.openplanner.team/stops/LRarami2"], ["https://tec.openplanner.team/stops/H1te180b", "https://tec.openplanner.team/stops/H1te191b"], ["https://tec.openplanner.team/stops/X640ahb", "https://tec.openplanner.team/stops/X640aua"], ["https://tec.openplanner.team/stops/H1pa120a", "https://tec.openplanner.team/stops/H1pa120b"], ["https://tec.openplanner.team/stops/Llgelis2", "https://tec.openplanner.team/stops/Llgplat2"], ["https://tec.openplanner.team/stops/Lbrgrot1", "https://tec.openplanner.team/stops/Ljulieg2"], ["https://tec.openplanner.team/stops/N501hba", "https://tec.openplanner.team/stops/N501nda"], ["https://tec.openplanner.team/stops/LCLacbi1", "https://tec.openplanner.team/stops/LCLscie1"], ["https://tec.openplanner.team/stops/X663ahb", "https://tec.openplanner.team/stops/X663ahc"], ["https://tec.openplanner.team/stops/Bmarlor1", "https://tec.openplanner.team/stops/Bmartil2"], ["https://tec.openplanner.team/stops/X601aya", "https://tec.openplanner.team/stops/X601ayb"], ["https://tec.openplanner.team/stops/N564adb", "https://tec.openplanner.team/stops/N585ahb"], ["https://tec.openplanner.team/stops/Lhrlalo1", "https://tec.openplanner.team/stops/Lhrlalo2"], ["https://tec.openplanner.team/stops/LAvambr1", "https://tec.openplanner.team/stops/LAvatri1"], ["https://tec.openplanner.team/stops/N558aea", "https://tec.openplanner.team/stops/N558aga"], ["https://tec.openplanner.team/stops/Lmlcrot1", "https://tec.openplanner.team/stops/Lmlmich1"], ["https://tec.openplanner.team/stops/H1fa117b", "https://tec.openplanner.team/stops/H1pe132b"], ["https://tec.openplanner.team/stops/N516abb", "https://tec.openplanner.team/stops/N516alb"], ["https://tec.openplanner.team/stops/Buccdst1", "https://tec.openplanner.team/stops/Buccdst2"], ["https://tec.openplanner.team/stops/LmDbw--*", "https://tec.openplanner.team/stops/LmDelek2"], ["https://tec.openplanner.team/stops/Btsllsc2", "https://tec.openplanner.team/stops/Btslpic6"], ["https://tec.openplanner.team/stops/N229anb", "https://tec.openplanner.team/stops/N229aqa"], ["https://tec.openplanner.team/stops/Bllngar5", "https://tec.openplanner.team/stops/Bllngle1"], ["https://tec.openplanner.team/stops/H1qp140b", "https://tec.openplanner.team/stops/H1qp142a"], ["https://tec.openplanner.team/stops/Btlbmel2", "https://tec.openplanner.team/stops/Btlbtbe1"], ["https://tec.openplanner.team/stops/Lsmberg2", "https://tec.openplanner.team/stops/Lsmdams2"], ["https://tec.openplanner.team/stops/NC44afa", "https://tec.openplanner.team/stops/NC44aha"], ["https://tec.openplanner.team/stops/Cfccabi2", "https://tec.openplanner.team/stops/Cfcsaut4"], ["https://tec.openplanner.team/stops/Cthalli2", "https://tec.openplanner.team/stops/Cthhttr3"], ["https://tec.openplanner.team/stops/LSCc39-2", "https://tec.openplanner.team/stops/LSCchap2"], ["https://tec.openplanner.team/stops/Cfaterg6", "https://tec.openplanner.team/stops/Cfaysle1"], ["https://tec.openplanner.team/stops/Lfhgare1", "https://tec.openplanner.team/stops/Lfhtrxc1"], ["https://tec.openplanner.team/stops/Bgembsg1", "https://tec.openplanner.team/stops/Bgembsg2"], ["https://tec.openplanner.team/stops/H1bs110a", "https://tec.openplanner.team/stops/H1sb144b"], ["https://tec.openplanner.team/stops/LSIcour2", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://tec.openplanner.team/stops/LaAelis2", "https://tec.openplanner.team/stops/LaApost1"], ["https://tec.openplanner.team/stops/LTgsous1", "https://tec.openplanner.team/stops/LTgsous2"], ["https://tec.openplanner.team/stops/H4bc102a", "https://tec.openplanner.team/stops/H4bc108b"], ["https://tec.openplanner.team/stops/Cmonsnc1", "https://tec.openplanner.team/stops/H1ms936a"], ["https://tec.openplanner.team/stops/H1ev113a", "https://tec.openplanner.team/stops/H1ev149b"], ["https://tec.openplanner.team/stops/Bdlvpco1", "https://tec.openplanner.team/stops/Bdvmc031"], ["https://tec.openplanner.team/stops/Bobacou1", "https://tec.openplanner.team/stops/Cobmven1"], ["https://tec.openplanner.team/stops/Bhmmcim1", "https://tec.openplanner.team/stops/Bhmmlad1"], ["https://tec.openplanner.team/stops/H4co108a", "https://tec.openplanner.team/stops/H4co108b"], ["https://tec.openplanner.team/stops/N519aac", "https://tec.openplanner.team/stops/N519aca"], ["https://tec.openplanner.team/stops/LOchalo2", "https://tec.openplanner.team/stops/NL35agb"], ["https://tec.openplanner.team/stops/N507aib", "https://tec.openplanner.team/stops/N507aja"], ["https://tec.openplanner.team/stops/H1cu118b", "https://tec.openplanner.team/stops/H1fl139b"], ["https://tec.openplanner.team/stops/LBHinva1", "https://tec.openplanner.team/stops/LMemaza2"], ["https://tec.openplanner.team/stops/LPRpeti1", "https://tec.openplanner.team/stops/LPRpeti2"], ["https://tec.openplanner.team/stops/Lhuderu2", "https://tec.openplanner.team/stops/Lhuleke1"], ["https://tec.openplanner.team/stops/Bblaast2", "https://tec.openplanner.team/stops/Bblagar4"], ["https://tec.openplanner.team/stops/N228aaa", "https://tec.openplanner.team/stops/N228aca"], ["https://tec.openplanner.team/stops/Cchpala2", "https://tec.openplanner.team/stops/Cchriga1"], ["https://tec.openplanner.team/stops/H1hq124b", "https://tec.openplanner.team/stops/H1hq158a"], ["https://tec.openplanner.team/stops/N110afb", "https://tec.openplanner.team/stops/N114aab"], ["https://tec.openplanner.team/stops/NL68aca", "https://tec.openplanner.team/stops/NL68aga"], ["https://tec.openplanner.team/stops/X638afb", "https://tec.openplanner.team/stops/X638aga"], ["https://tec.openplanner.team/stops/Bwlhcsr1", "https://tec.openplanner.team/stops/Bwlhcsr2"], ["https://tec.openplanner.team/stops/LWeatel1", "https://tec.openplanner.team/stops/LWeec--2"], ["https://tec.openplanner.team/stops/LAWkone1", "https://tec.openplanner.team/stops/LAWkone2"], ["https://tec.openplanner.team/stops/Cmyoasi2", "https://tec.openplanner.team/stops/Cmyvesa1"], ["https://tec.openplanner.team/stops/LMOfleu1", "https://tec.openplanner.team/stops/LMOfleu2"], ["https://tec.openplanner.team/stops/LNAbass2", "https://tec.openplanner.team/stops/LNAmart2"], ["https://tec.openplanner.team/stops/LPLheid2", "https://tec.openplanner.team/stops/LPLstat2"], ["https://tec.openplanner.team/stops/H4ce100a", "https://tec.openplanner.team/stops/H4mx115a"], ["https://tec.openplanner.team/stops/N534bda", "https://tec.openplanner.team/stops/N534bya"], ["https://tec.openplanner.team/stops/N383ada", "https://tec.openplanner.team/stops/N383adb"], ["https://tec.openplanner.team/stops/H4lg100a", "https://tec.openplanner.team/stops/H4lg106a"], ["https://tec.openplanner.team/stops/H4av106b", "https://tec.openplanner.team/stops/H4av106d"], ["https://tec.openplanner.team/stops/LFTec--3", "https://tec.openplanner.team/stops/LTNsarl2"], ["https://tec.openplanner.team/stops/N519arb", "https://tec.openplanner.team/stops/N519asd"], ["https://tec.openplanner.team/stops/LBIaepo4", "https://tec.openplanner.team/stops/LBIairp1"], ["https://tec.openplanner.team/stops/NL37abb", "https://tec.openplanner.team/stops/NL37aob"], ["https://tec.openplanner.team/stops/Cgysarr2", "https://tec.openplanner.team/stops/Cravold2"], ["https://tec.openplanner.team/stops/N235acb", "https://tec.openplanner.team/stops/N235ada"], ["https://tec.openplanner.team/stops/X750aha", "https://tec.openplanner.team/stops/X750ala"], ["https://tec.openplanner.team/stops/Llgpier1", "https://tec.openplanner.team/stops/Llgqmar2"], ["https://tec.openplanner.team/stops/N135aib", "https://tec.openplanner.team/stops/N135aqb"], ["https://tec.openplanner.team/stops/Bjauvch1", "https://tec.openplanner.team/stops/Bjauwar1"], ["https://tec.openplanner.team/stops/LBkgrae2", "https://tec.openplanner.team/stops/LBkjenn2"], ["https://tec.openplanner.team/stops/X796acb", "https://tec.openplanner.team/stops/X796acc"], ["https://tec.openplanner.team/stops/Blinbru2", "https://tec.openplanner.team/stops/Blingar2"], ["https://tec.openplanner.team/stops/X993aba", "https://tec.openplanner.team/stops/X993abc"], ["https://tec.openplanner.team/stops/Crccano2", "https://tec.openplanner.team/stops/Crccano3"], ["https://tec.openplanner.team/stops/H4ar100b", "https://tec.openplanner.team/stops/H4ar104b"], ["https://tec.openplanner.team/stops/LSOtheu1", "https://tec.openplanner.team/stops/LSOtheu2"], ["https://tec.openplanner.team/stops/H4lp119b", "https://tec.openplanner.team/stops/H4lp126b"], ["https://tec.openplanner.team/stops/X723aib", "https://tec.openplanner.team/stops/X723ama"], ["https://tec.openplanner.team/stops/LVlledo1", "https://tec.openplanner.team/stops/LVlleme4"], ["https://tec.openplanner.team/stops/H1ch102a", "https://tec.openplanner.team/stops/H1ch104a"], ["https://tec.openplanner.team/stops/Bohnrpl1", "https://tec.openplanner.team/stops/Bwatgge2"], ["https://tec.openplanner.team/stops/X614atb", "https://tec.openplanner.team/stops/X614aub"], ["https://tec.openplanner.team/stops/Cmbborn2", "https://tec.openplanner.team/stops/Csuptou2"], ["https://tec.openplanner.team/stops/X775aaa", "https://tec.openplanner.team/stops/X775aba"], ["https://tec.openplanner.team/stops/Cmcegli3", "https://tec.openplanner.team/stops/Cmivert1"], ["https://tec.openplanner.team/stops/LBslama1", "https://tec.openplanner.team/stops/NL73adb"], ["https://tec.openplanner.team/stops/Cfaauln1", "https://tec.openplanner.team/stops/Cfawain2"], ["https://tec.openplanner.team/stops/X606aaa", "https://tec.openplanner.team/stops/X620ahb"], ["https://tec.openplanner.team/stops/H2mo123b", "https://tec.openplanner.team/stops/H2mo131a"], ["https://tec.openplanner.team/stops/X663ada", "https://tec.openplanner.team/stops/X663apa"], ["https://tec.openplanner.team/stops/H1wg125a", "https://tec.openplanner.team/stops/H1wg125c"], ["https://tec.openplanner.team/stops/H4hn113a", "https://tec.openplanner.team/stops/H4jm117c"], ["https://tec.openplanner.team/stops/X758afa", "https://tec.openplanner.team/stops/X758ama"], ["https://tec.openplanner.team/stops/Ljubeyn1", "https://tec.openplanner.team/stops/Ljugode1"], ["https://tec.openplanner.team/stops/H2gy103a", "https://tec.openplanner.team/stops/H2gy109a"], ["https://tec.openplanner.team/stops/X891aab", "https://tec.openplanner.team/stops/X891aba"], ["https://tec.openplanner.team/stops/Crebrux1", "https://tec.openplanner.team/stops/Crebrux2"], ["https://tec.openplanner.team/stops/X636akb", "https://tec.openplanner.team/stops/X636bcb"], ["https://tec.openplanner.team/stops/LAYchal1", "https://tec.openplanner.team/stops/LAYecol1"], ["https://tec.openplanner.team/stops/LTrgibe1", "https://tec.openplanner.team/stops/LTrmort1"], ["https://tec.openplanner.team/stops/H1ms282a", "https://tec.openplanner.team/stops/H1ms302a"], ["https://tec.openplanner.team/stops/Ljubonf1", "https://tec.openplanner.team/stops/Ljuroch1"], ["https://tec.openplanner.team/stops/Bboncha1", "https://tec.openplanner.team/stops/Bgzdfpo1"], ["https://tec.openplanner.team/stops/Bmrlhau2", "https://tec.openplanner.team/stops/Bpiehte1"], ["https://tec.openplanner.team/stops/H1tl120b", "https://tec.openplanner.team/stops/H1tl121b"], ["https://tec.openplanner.team/stops/NL74aad", "https://tec.openplanner.team/stops/NL74aea"], ["https://tec.openplanner.team/stops/H1gr116a", "https://tec.openplanner.team/stops/H1gr122b"], ["https://tec.openplanner.team/stops/Btlgast1", "https://tec.openplanner.team/stops/Btlgreg1"], ["https://tec.openplanner.team/stops/H1so131b", "https://tec.openplanner.team/stops/H1so142c"], ["https://tec.openplanner.team/stops/N390acb", "https://tec.openplanner.team/stops/N390adb"], ["https://tec.openplanner.team/stops/H1au102b", "https://tec.openplanner.team/stops/H1el132b"], ["https://tec.openplanner.team/stops/LHUsauv2", "https://tec.openplanner.team/stops/LHUsauv4"], ["https://tec.openplanner.team/stops/N337aha", "https://tec.openplanner.team/stops/N337aib"], ["https://tec.openplanner.team/stops/Bbiecoc1", "https://tec.openplanner.team/stops/Bbiepre1"], ["https://tec.openplanner.team/stops/X923aqa", "https://tec.openplanner.team/stops/X949aeb"], ["https://tec.openplanner.team/stops/H1gr115b", "https://tec.openplanner.team/stops/H1mk113a"], ["https://tec.openplanner.team/stops/Cfcstan2", "https://tec.openplanner.team/stops/Crccarr1"], ["https://tec.openplanner.team/stops/LeUkehr1", "https://tec.openplanner.team/stops/LeUstad1"], ["https://tec.openplanner.team/stops/Cci4bra1", "https://tec.openplanner.team/stops/Cmllait1"], ["https://tec.openplanner.team/stops/H1sy140a", "https://tec.openplanner.team/stops/H1sy145b"], ["https://tec.openplanner.team/stops/N501caa", "https://tec.openplanner.team/stops/N501cgb"], ["https://tec.openplanner.team/stops/Bdvminc1", "https://tec.openplanner.team/stops/Bgisman1"], ["https://tec.openplanner.team/stops/LAUmerc2", "https://tec.openplanner.team/stops/LRmha261"], ["https://tec.openplanner.team/stops/LaMjous1", "https://tec.openplanner.team/stops/LaMmark2"], ["https://tec.openplanner.team/stops/H4bd107a", "https://tec.openplanner.team/stops/H4bd108a"], ["https://tec.openplanner.team/stops/LClberw1", "https://tec.openplanner.team/stops/LClberw2"], ["https://tec.openplanner.team/stops/H1nm140a", "https://tec.openplanner.team/stops/H1nm140b"], ["https://tec.openplanner.team/stops/LAmeclu1", "https://tec.openplanner.team/stops/LAmvent3"], ["https://tec.openplanner.team/stops/LmDkape1", "https://tec.openplanner.team/stops/LmYeich1"], ["https://tec.openplanner.team/stops/H1me114b", "https://tec.openplanner.team/stops/H1me116b"], ["https://tec.openplanner.team/stops/N501fsa", "https://tec.openplanner.team/stops/N501fuz"], ["https://tec.openplanner.team/stops/Bquebth3", "https://tec.openplanner.team/stops/Brebeau1"], ["https://tec.openplanner.team/stops/Bhenrcr1", "https://tec.openplanner.team/stops/Bhenrcr2"], ["https://tec.openplanner.team/stops/LcRmuhl1", "https://tec.openplanner.team/stops/LcRmuhl2"], ["https://tec.openplanner.team/stops/N534ara", "https://tec.openplanner.team/stops/N561ada"], ["https://tec.openplanner.team/stops/X669ada", "https://tec.openplanner.team/stops/X669aea"], ["https://tec.openplanner.team/stops/X982aqb", "https://tec.openplanner.team/stops/X982bob"], ["https://tec.openplanner.team/stops/N507aea", "https://tec.openplanner.team/stops/N507apb"], ["https://tec.openplanner.team/stops/Brsga812", "https://tec.openplanner.team/stops/Brsggea2"], ["https://tec.openplanner.team/stops/Ccugail1", "https://tec.openplanner.team/stops/Ccugail2"], ["https://tec.openplanner.team/stops/X922aaa", "https://tec.openplanner.team/stops/X922abb"], ["https://tec.openplanner.team/stops/Lrcarse2", "https://tec.openplanner.team/stops/Lrclohe2"], ["https://tec.openplanner.team/stops/X224aea", "https://tec.openplanner.team/stops/X224afa"], ["https://tec.openplanner.team/stops/X754ava", "https://tec.openplanner.team/stops/X754avb"], ["https://tec.openplanner.team/stops/LCPlacr1", "https://tec.openplanner.team/stops/LPOchan2"], ["https://tec.openplanner.team/stops/Lhr1ave5", "https://tec.openplanner.team/stops/Lhrhurb1"], ["https://tec.openplanner.team/stops/LBRmout3", "https://tec.openplanner.team/stops/LVHbrai1"], ["https://tec.openplanner.team/stops/X818ada", "https://tec.openplanner.team/stops/X818adb"], ["https://tec.openplanner.team/stops/CMmari1", "https://tec.openplanner.team/stops/CMmari2"], ["https://tec.openplanner.team/stops/X889aaa", "https://tec.openplanner.team/stops/X899aja"], ["https://tec.openplanner.team/stops/X808afa", "https://tec.openplanner.team/stops/X808aha"], ["https://tec.openplanner.team/stops/H5fl100b", "https://tec.openplanner.team/stops/H5wo128b"], ["https://tec.openplanner.team/stops/LAVdepr1", "https://tec.openplanner.team/stops/LCIsucr2"], ["https://tec.openplanner.team/stops/X941aab", "https://tec.openplanner.team/stops/X948ata"], ["https://tec.openplanner.team/stops/Ccspla", "https://tec.openplanner.team/stops/Cmxpleg2"], ["https://tec.openplanner.team/stops/X768acb", "https://tec.openplanner.team/stops/X768adb"], ["https://tec.openplanner.team/stops/Bengvma1", "https://tec.openplanner.team/stops/H1en105a"], ["https://tec.openplanner.team/stops/LWabela1", "https://tec.openplanner.team/stops/LWargeu2"], ["https://tec.openplanner.team/stops/H4bo121a", "https://tec.openplanner.team/stops/H4ea132c"], ["https://tec.openplanner.team/stops/Bbgeegl2", "https://tec.openplanner.team/stops/Bbgerlr2"], ["https://tec.openplanner.team/stops/H4wi166a", "https://tec.openplanner.team/stops/H5pe144a"], ["https://tec.openplanner.team/stops/H1ms313b", "https://tec.openplanner.team/stops/H1ob331b"], ["https://tec.openplanner.team/stops/X774aca", "https://tec.openplanner.team/stops/X775aaa"], ["https://tec.openplanner.team/stops/Bvlvpco1", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/N533adb", "https://tec.openplanner.team/stops/N533aeb"], ["https://tec.openplanner.team/stops/Bhlvgar2", "https://tec.openplanner.team/stops/Bnivn971"], ["https://tec.openplanner.team/stops/Bgntalt3", "https://tec.openplanner.team/stops/Bgntalt4"], ["https://tec.openplanner.team/stops/LGrchpl2", "https://tec.openplanner.team/stops/LGreg--2"], ["https://tec.openplanner.team/stops/Cfbcabi1", "https://tec.openplanner.team/stops/NH03adb"], ["https://tec.openplanner.team/stops/LJEerno2", "https://tec.openplanner.team/stops/LJEverd2"], ["https://tec.openplanner.team/stops/LmIcafe1", "https://tec.openplanner.team/stops/LmRmuhl1"], ["https://tec.openplanner.team/stops/Cvtgsar2", "https://tec.openplanner.team/stops/Cvtvois2"], ["https://tec.openplanner.team/stops/LPAchpl1", "https://tec.openplanner.team/stops/LPAmc--2"], ["https://tec.openplanner.team/stops/LMubras1", "https://tec.openplanner.team/stops/LSDheus2"], ["https://tec.openplanner.team/stops/N554acb", "https://tec.openplanner.team/stops/N573aqa"], ["https://tec.openplanner.team/stops/LFChuis1", "https://tec.openplanner.team/stops/LFCkerk2"], ["https://tec.openplanner.team/stops/LRChote1", "https://tec.openplanner.team/stops/LRCviad1"], ["https://tec.openplanner.team/stops/H3bi118a", "https://tec.openplanner.team/stops/H3bi118b"], ["https://tec.openplanner.team/stops/LFychpl1", "https://tec.openplanner.team/stops/LFymare3"], ["https://tec.openplanner.team/stops/H4er124b", "https://tec.openplanner.team/stops/H4ty283b"], ["https://tec.openplanner.team/stops/LwLfuss2", "https://tec.openplanner.team/stops/LwLprum1"], ["https://tec.openplanner.team/stops/N254aab", "https://tec.openplanner.team/stops/N570aaa"], ["https://tec.openplanner.team/stops/Bvircsj2", "https://tec.openplanner.team/stops/Bvirmbr2"], ["https://tec.openplanner.team/stops/LOVhetr2", "https://tec.openplanner.team/stops/LSorobe2"], ["https://tec.openplanner.team/stops/Cpthaud2", "https://tec.openplanner.team/stops/H2ca105b"], ["https://tec.openplanner.team/stops/LMvrabo2", "https://tec.openplanner.team/stops/LSphote1"], ["https://tec.openplanner.team/stops/Lhrlaix2", "https://tec.openplanner.team/stops/Lhrsimo4"], ["https://tec.openplanner.team/stops/Chhegli3", "https://tec.openplanner.team/stops/Chhprai1"], ["https://tec.openplanner.team/stops/X898aga", "https://tec.openplanner.team/stops/X898akb"], ["https://tec.openplanner.team/stops/X756acb", "https://tec.openplanner.team/stops/X756ahb"], ["https://tec.openplanner.team/stops/Cchlefe1", "https://tec.openplanner.team/stops/CMsama1"], ["https://tec.openplanner.team/stops/X911ahb", "https://tec.openplanner.team/stops/X911ata"], ["https://tec.openplanner.team/stops/LTrchar2", "https://tec.openplanner.team/stops/LTrrich2"], ["https://tec.openplanner.team/stops/N554aeb", "https://tec.openplanner.team/stops/N554agb"], ["https://tec.openplanner.team/stops/Bitrmde1", "https://tec.openplanner.team/stops/Bitrmde2"], ["https://tec.openplanner.team/stops/N539bbb", "https://tec.openplanner.team/stops/N540aqa"], ["https://tec.openplanner.team/stops/LAo161-2", "https://tec.openplanner.team/stops/LAo170-2"], ["https://tec.openplanner.team/stops/LABvill2", "https://tec.openplanner.team/stops/LHNtonn2"], ["https://tec.openplanner.team/stops/LLGcarr2", "https://tec.openplanner.team/stops/LLGramk1"], ["https://tec.openplanner.team/stops/H4mo144a", "https://tec.openplanner.team/stops/H4mo154a"], ["https://tec.openplanner.team/stops/X728aba", "https://tec.openplanner.team/stops/X729aca"], ["https://tec.openplanner.team/stops/Lvevieu1", "https://tec.openplanner.team/stops/Lvevieu2"], ["https://tec.openplanner.team/stops/Bcer4br4", "https://tec.openplanner.team/stops/Bcercab2"], ["https://tec.openplanner.team/stops/H5fl102d", "https://tec.openplanner.team/stops/H5wo136a"], ["https://tec.openplanner.team/stops/X633agc", "https://tec.openplanner.team/stops/X633aha"], ["https://tec.openplanner.team/stops/Lsmtini2", "https://tec.openplanner.team/stops/Lsmtini3"], ["https://tec.openplanner.team/stops/X770afb", "https://tec.openplanner.team/stops/X774acb"], ["https://tec.openplanner.team/stops/Brsgsan2", "https://tec.openplanner.team/stops/Brsgtou2"], ["https://tec.openplanner.team/stops/LBIcarg1", "https://tec.openplanner.team/stops/Lmltrix*"], ["https://tec.openplanner.team/stops/N534avb", "https://tec.openplanner.team/stops/N534beb"], ["https://tec.openplanner.team/stops/N234aea", "https://tec.openplanner.team/stops/N550acb"], ["https://tec.openplanner.team/stops/H2hg267a", "https://tec.openplanner.team/stops/H2ll176c"], ["https://tec.openplanner.team/stops/N554ahb", "https://tec.openplanner.team/stops/N566aea"], ["https://tec.openplanner.team/stops/H4mt219a", "https://tec.openplanner.team/stops/H4mx118a"], ["https://tec.openplanner.team/stops/H2hg154c", "https://tec.openplanner.team/stops/H2hg154e"], ["https://tec.openplanner.team/stops/H4we135b", "https://tec.openplanner.team/stops/H4we139a"], ["https://tec.openplanner.team/stops/LLtrout2", "https://tec.openplanner.team/stops/NL57akb"], ["https://tec.openplanner.team/stops/H5rx129a", "https://tec.openplanner.team/stops/H5rx138b"], ["https://tec.openplanner.team/stops/X769anb", "https://tec.openplanner.team/stops/X769apb"], ["https://tec.openplanner.team/stops/LAYathe1", "https://tec.openplanner.team/stops/LAYcher1"], ["https://tec.openplanner.team/stops/N222aba", "https://tec.openplanner.team/stops/X394aga"], ["https://tec.openplanner.team/stops/Cfmcent2", "https://tec.openplanner.team/stops/Cfmgrmo2"], ["https://tec.openplanner.team/stops/Lgrdefr1", "https://tec.openplanner.team/stops/Lgrdefr4"], ["https://tec.openplanner.team/stops/Loubour1", "https://tec.openplanner.team/stops/Loubour2"], ["https://tec.openplanner.team/stops/LMEgare1", "https://tec.openplanner.team/stops/LMEwerg1"], ["https://tec.openplanner.team/stops/X817acb", "https://tec.openplanner.team/stops/X817ada"], ["https://tec.openplanner.team/stops/H3lr106b", "https://tec.openplanner.team/stops/H3lr116a"], ["https://tec.openplanner.team/stops/Bbeagae1", "https://tec.openplanner.team/stops/Bmlngvi2"], ["https://tec.openplanner.team/stops/X605adb", "https://tec.openplanner.team/stops/X605afb"], ["https://tec.openplanner.team/stops/Ladegli2", "https://tec.openplanner.team/stops/Ladfoot1"], ["https://tec.openplanner.team/stops/H4bh104b", "https://tec.openplanner.team/stops/H4lp120a"], ["https://tec.openplanner.team/stops/N501dwb", "https://tec.openplanner.team/stops/N501kmb"], ["https://tec.openplanner.team/stops/X804adb", "https://tec.openplanner.team/stops/X804aea"], ["https://tec.openplanner.team/stops/X949ada", "https://tec.openplanner.team/stops/X949aga"], ["https://tec.openplanner.team/stops/H2bh120a", "https://tec.openplanner.team/stops/H2mg141b"], ["https://tec.openplanner.team/stops/Lgdhura1", "https://tec.openplanner.team/stops/LMheg--1"], ["https://tec.openplanner.team/stops/Bblaegl1", "https://tec.openplanner.team/stops/Bblaegl2"], ["https://tec.openplanner.team/stops/N543aua", "https://tec.openplanner.team/stops/N543aub"], ["https://tec.openplanner.team/stops/Brixaug3", "https://tec.openplanner.team/stops/Brixchw1"], ["https://tec.openplanner.team/stops/Bjanfer1", "https://tec.openplanner.team/stops/NL75adb"], ["https://tec.openplanner.team/stops/X362abb", "https://tec.openplanner.team/stops/X371aja"], ["https://tec.openplanner.team/stops/H2tz115a", "https://tec.openplanner.team/stops/H2tz115b"], ["https://tec.openplanner.team/stops/N211akb", "https://tec.openplanner.team/stops/N211ayb"], ["https://tec.openplanner.team/stops/LHolexh1", "https://tec.openplanner.team/stops/LNvrout2"], ["https://tec.openplanner.team/stops/X779aia", "https://tec.openplanner.team/stops/X779aib"], ["https://tec.openplanner.team/stops/Cmlbeau2", "https://tec.openplanner.team/stops/Cmlbeau4"], ["https://tec.openplanner.team/stops/Cchsud10", "https://tec.openplanner.team/stops/CMsud1"], ["https://tec.openplanner.team/stops/N521aga", "https://tec.openplanner.team/stops/N521apb"], ["https://tec.openplanner.team/stops/H1hc125b", "https://tec.openplanner.team/stops/H1hc127d"], ["https://tec.openplanner.team/stops/X910afd", "https://tec.openplanner.team/stops/X910agb"], ["https://tec.openplanner.team/stops/Bgdhlai1", "https://tec.openplanner.team/stops/Bgdhmet1"], ["https://tec.openplanner.team/stops/LMAgdfa2", "https://tec.openplanner.team/stops/LMApl--2"], ["https://tec.openplanner.team/stops/H1ha186a", "https://tec.openplanner.team/stops/H1ha195b"], ["https://tec.openplanner.team/stops/LBSchpl2", "https://tec.openplanner.team/stops/LBSvi322"], ["https://tec.openplanner.team/stops/H1sb146a", "https://tec.openplanner.team/stops/H1sb148a"], ["https://tec.openplanner.team/stops/X664amb", "https://tec.openplanner.team/stops/X664amd"], ["https://tec.openplanner.team/stops/X757aca", "https://tec.openplanner.team/stops/X757aeb"], ["https://tec.openplanner.team/stops/LCsfize1", "https://tec.openplanner.team/stops/LFFruel1"], ["https://tec.openplanner.team/stops/N545aaa", "https://tec.openplanner.team/stops/N545acb"], ["https://tec.openplanner.team/stops/Lghencl1", "https://tec.openplanner.team/stops/Lghfore1"], ["https://tec.openplanner.team/stops/H2mo119b", "https://tec.openplanner.team/stops/H2mo131a"], ["https://tec.openplanner.team/stops/Cfmcoro1", "https://tec.openplanner.team/stops/Cfmnoci1"], ["https://tec.openplanner.team/stops/Ctm4che2", "https://tec.openplanner.team/stops/Ctmmana2"], ["https://tec.openplanner.team/stops/N509afa", "https://tec.openplanner.team/stops/N509agb"], ["https://tec.openplanner.team/stops/H2se105a", "https://tec.openplanner.team/stops/H2se107a"], ["https://tec.openplanner.team/stops/Ccuwain1", "https://tec.openplanner.team/stops/Cgyruis1"], ["https://tec.openplanner.team/stops/H4ir167a", "https://tec.openplanner.team/stops/H4ir167b"], ["https://tec.openplanner.team/stops/NL35adc", "https://tec.openplanner.team/stops/NL35add"], ["https://tec.openplanner.team/stops/LATdony1", "https://tec.openplanner.team/stops/LATmale1"], ["https://tec.openplanner.team/stops/LLbquar1", "https://tec.openplanner.team/stops/LLbrecu1"], ["https://tec.openplanner.team/stops/X806ada", "https://tec.openplanner.team/stops/X806adb"], ["https://tec.openplanner.team/stops/Ccicent2", "https://tec.openplanner.team/stops/Ccicent4"], ["https://tec.openplanner.team/stops/Bwatb4s1", "https://tec.openplanner.team/stops/Bwatb4s2"], ["https://tec.openplanner.team/stops/N501hma", "https://tec.openplanner.team/stops/N501iub"], ["https://tec.openplanner.team/stops/LMOchen1", "https://tec.openplanner.team/stops/LMOeg--1"], ["https://tec.openplanner.team/stops/H2tr245a", "https://tec.openplanner.team/stops/H2tr254a"], ["https://tec.openplanner.team/stops/Cmeloti2", "https://tec.openplanner.team/stops/Cmerued2"], ["https://tec.openplanner.team/stops/Cbfcham2", "https://tec.openplanner.team/stops/Cbfpoti2"], ["https://tec.openplanner.team/stops/Crasabl1", "https://tec.openplanner.team/stops/Crasabl3"], ["https://tec.openplanner.team/stops/X872acb", "https://tec.openplanner.team/stops/X872adb"], ["https://tec.openplanner.team/stops/H2ha129b", "https://tec.openplanner.team/stops/H2ha137b"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lenhosp2"], ["https://tec.openplanner.team/stops/Cdagoss1", "https://tec.openplanner.team/stops/Cmacreu2"], ["https://tec.openplanner.team/stops/H4bv145c", "https://tec.openplanner.team/stops/H5at235a"], ["https://tec.openplanner.team/stops/Lcebois1", "https://tec.openplanner.team/stops/Lcebois2"], ["https://tec.openplanner.team/stops/N501anz", "https://tec.openplanner.team/stops/N501mbb"], ["https://tec.openplanner.team/stops/X818afa", "https://tec.openplanner.team/stops/X818ala"], ["https://tec.openplanner.team/stops/X601caa", "https://tec.openplanner.team/stops/X601dea"], ["https://tec.openplanner.team/stops/CMjans1", "https://tec.openplanner.team/stops/Cmtrneu1"], ["https://tec.openplanner.team/stops/X882agb", "https://tec.openplanner.team/stops/X882akb"], ["https://tec.openplanner.team/stops/H1on128d", "https://tec.openplanner.team/stops/H1ro140b"], ["https://tec.openplanner.team/stops/LROcent2", "https://tec.openplanner.team/stops/LROhaie2"], ["https://tec.openplanner.team/stops/H4be111a", "https://tec.openplanner.team/stops/H4be149a"], ["https://tec.openplanner.team/stops/X808ada", "https://tec.openplanner.team/stops/X808adb"], ["https://tec.openplanner.team/stops/N524afa", "https://tec.openplanner.team/stops/N524ahb"], ["https://tec.openplanner.team/stops/X818afb", "https://tec.openplanner.team/stops/X818awb"], ["https://tec.openplanner.team/stops/LAOpres2", "https://tec.openplanner.team/stops/LLStour2"], ["https://tec.openplanner.team/stops/LkEhatt2", "https://tec.openplanner.team/stops/LkEzoll1"], ["https://tec.openplanner.team/stops/LSAeg--2", "https://tec.openplanner.team/stops/LSAvieu1"], ["https://tec.openplanner.team/stops/Lmnfawe1", "https://tec.openplanner.team/stops/Lmnrame2"], ["https://tec.openplanner.team/stops/N506aaa", "https://tec.openplanner.team/stops/N506aka"], ["https://tec.openplanner.team/stops/H4de112b", "https://tec.openplanner.team/stops/H4de114a"], ["https://tec.openplanner.team/stops/H2ll194a", "https://tec.openplanner.team/stops/H2ll260b"], ["https://tec.openplanner.team/stops/Cbcha652", "https://tec.openplanner.team/stops/Cthstre2"], ["https://tec.openplanner.team/stops/H5el101b", "https://tec.openplanner.team/stops/H5el102a"], ["https://tec.openplanner.team/stops/Lmopave1", "https://tec.openplanner.team/stops/Lsnlhon2"], ["https://tec.openplanner.team/stops/Bbsgrve2", "https://tec.openplanner.team/stops/Bnetcor1"], ["https://tec.openplanner.team/stops/Bottcpl2", "https://tec.openplanner.team/stops/Bottpry2"], ["https://tec.openplanner.team/stops/X804ala", "https://tec.openplanner.team/stops/X804bma"], ["https://tec.openplanner.team/stops/N512aid", "https://tec.openplanner.team/stops/NL57aeb"], ["https://tec.openplanner.team/stops/LmDelek1", "https://tec.openplanner.team/stops/LmYkirc1"], ["https://tec.openplanner.team/stops/LESlieg1", "https://tec.openplanner.team/stops/LESmich2"], ["https://tec.openplanner.team/stops/H4fa128b", "https://tec.openplanner.team/stops/H4fa167a"], ["https://tec.openplanner.team/stops/LNOpt--1", "https://tec.openplanner.team/stops/LNOpt--2"], ["https://tec.openplanner.team/stops/H2ha142b", "https://tec.openplanner.team/stops/H2hg160a"], ["https://tec.openplanner.team/stops/Bblacha2", "https://tec.openplanner.team/stops/Bblamsp4"], ["https://tec.openplanner.team/stops/N113aeb", "https://tec.openplanner.team/stops/N113afb"], ["https://tec.openplanner.team/stops/Cmbcime4", "https://tec.openplanner.team/stops/Csufrom6"], ["https://tec.openplanner.team/stops/X717agd", "https://tec.openplanner.team/stops/X718aja"], ["https://tec.openplanner.team/stops/N230aab", "https://tec.openplanner.team/stops/N230abb"], ["https://tec.openplanner.team/stops/LWAathe1", "https://tec.openplanner.team/stops/LWApt--2"], ["https://tec.openplanner.team/stops/H4ta116a", "https://tec.openplanner.team/stops/H4ta125b"], ["https://tec.openplanner.team/stops/Cmltomb1", "https://tec.openplanner.team/stops/Cmltomb2"], ["https://tec.openplanner.team/stops/Becepon1", "https://tec.openplanner.team/stops/H2mi123a"], ["https://tec.openplanner.team/stops/H2mg150a", "https://tec.openplanner.team/stops/H2se113b"], ["https://tec.openplanner.team/stops/H4co106a", "https://tec.openplanner.team/stops/H4co157b"], ["https://tec.openplanner.team/stops/LXofont1", "https://tec.openplanner.team/stops/LXofont2"], ["https://tec.openplanner.team/stops/Bhticbr2", "https://tec.openplanner.team/stops/Bhtihau1"], ["https://tec.openplanner.team/stops/LoUwelc2", "https://tec.openplanner.team/stops/LsF39--1"], ["https://tec.openplanner.team/stops/Lmopans1", "https://tec.openplanner.team/stops/Lmopans4"], ["https://tec.openplanner.team/stops/Btstw751", "https://tec.openplanner.team/stops/N524ala"], ["https://tec.openplanner.team/stops/X897aba", "https://tec.openplanner.team/stops/X897aeb"], ["https://tec.openplanner.team/stops/N536agb", "https://tec.openplanner.team/stops/N536aqa"], ["https://tec.openplanner.team/stops/Ltichif1", "https://tec.openplanner.team/stops/Ltichif3"], ["https://tec.openplanner.team/stops/Bnivpri1", "https://tec.openplanner.team/stops/Bnivvcw2"], ["https://tec.openplanner.team/stops/H1hl123a", "https://tec.openplanner.team/stops/H1hl123b"], ["https://tec.openplanner.team/stops/Cfobriq2", "https://tec.openplanner.team/stops/Cfoperz1"], ["https://tec.openplanner.team/stops/LARarge2", "https://tec.openplanner.team/stops/LARparc2"], ["https://tec.openplanner.team/stops/LAyfren1", "https://tec.openplanner.team/stops/Lflhott1"], ["https://tec.openplanner.team/stops/H1te177a", "https://tec.openplanner.team/stops/H1te188a"], ["https://tec.openplanner.team/stops/LBIhann2", "https://tec.openplanner.team/stops/LBIvill2"], ["https://tec.openplanner.team/stops/LAWcite3", "https://tec.openplanner.team/stops/LHGikea1"], ["https://tec.openplanner.team/stops/N548acd", "https://tec.openplanner.team/stops/N548akb"], ["https://tec.openplanner.team/stops/N347afb", "https://tec.openplanner.team/stops/X347aaa"], ["https://tec.openplanner.team/stops/N360adb", "https://tec.openplanner.team/stops/N360aeb"], ["https://tec.openplanner.team/stops/X621aea", "https://tec.openplanner.team/stops/X621aeb"], ["https://tec.openplanner.team/stops/H1hr117b", "https://tec.openplanner.team/stops/H1hr126b"], ["https://tec.openplanner.team/stops/Broscha1", "https://tec.openplanner.team/stops/Broscha2"], ["https://tec.openplanner.team/stops/LBSchpl2", "https://tec.openplanner.team/stops/LWOunio2"], ["https://tec.openplanner.team/stops/LHGikea2", "https://tec.openplanner.team/stops/LHGtong2"], ["https://tec.openplanner.team/stops/X609aca", "https://tec.openplanner.team/stops/X609ada"], ["https://tec.openplanner.team/stops/H2ch108a", "https://tec.openplanner.team/stops/H2ch111b"], ["https://tec.openplanner.team/stops/Blmlpla1", "https://tec.openplanner.team/stops/Blmlpla2"], ["https://tec.openplanner.team/stops/H4ty312a", "https://tec.openplanner.team/stops/H4ty318b"], ["https://tec.openplanner.team/stops/N217aca", "https://tec.openplanner.team/stops/N218adb"], ["https://tec.openplanner.team/stops/Cdasama1", "https://tec.openplanner.team/stops/CMsacm1"], ["https://tec.openplanner.team/stops/LaAgold1", "https://tec.openplanner.team/stops/LaAgold2"], ["https://tec.openplanner.team/stops/X907acb", "https://tec.openplanner.team/stops/X907ada"], ["https://tec.openplanner.team/stops/LSPcomm1", "https://tec.openplanner.team/stops/LSPcomm2"], ["https://tec.openplanner.team/stops/H2ma204a", "https://tec.openplanner.team/stops/H2ma208a"], ["https://tec.openplanner.team/stops/H1mg108a", "https://tec.openplanner.team/stops/H1mg108b"], ["https://tec.openplanner.team/stops/H1mc126b", "https://tec.openplanner.team/stops/H1mc129b"], ["https://tec.openplanner.team/stops/H4ve134a", "https://tec.openplanner.team/stops/H4ve136a"], ["https://tec.openplanner.team/stops/N338aeb", "https://tec.openplanner.team/stops/N338afb"], ["https://tec.openplanner.team/stops/Bsaubra2", "https://tec.openplanner.team/stops/Bsaumlk3"], ["https://tec.openplanner.team/stops/H1gi118a", "https://tec.openplanner.team/stops/H1gi120b"], ["https://tec.openplanner.team/stops/LeUjuge1", "https://tec.openplanner.team/stops/LeUolen2"], ["https://tec.openplanner.team/stops/H1ma234a", "https://tec.openplanner.team/stops/H1ms281b"], ["https://tec.openplanner.team/stops/LPtrefa1", "https://tec.openplanner.team/stops/LRfcent1"], ["https://tec.openplanner.team/stops/H1je367a", "https://tec.openplanner.team/stops/H1qu112b"], ["https://tec.openplanner.team/stops/X899aba", "https://tec.openplanner.team/stops/X899acb"], ["https://tec.openplanner.team/stops/N501hsa", "https://tec.openplanner.team/stops/N501ida"], ["https://tec.openplanner.team/stops/N302acb", "https://tec.openplanner.team/stops/N302adb"], ["https://tec.openplanner.team/stops/Bwancal1", "https://tec.openplanner.team/stops/Bwanorp2"], ["https://tec.openplanner.team/stops/LHTcerc4", "https://tec.openplanner.team/stops/LHTeg--1"], ["https://tec.openplanner.team/stops/Bitrcen1", "https://tec.openplanner.team/stops/Bitrmon1"], ["https://tec.openplanner.team/stops/Cjucouc2", "https://tec.openplanner.team/stops/Cjupuis2"], ["https://tec.openplanner.team/stops/NL74ajb", "https://tec.openplanner.team/stops/NL75aca"], ["https://tec.openplanner.team/stops/H1gg114a", "https://tec.openplanner.team/stops/H1gg116a"], ["https://tec.openplanner.team/stops/LiVkreu1", "https://tec.openplanner.team/stops/LiVkreu2"], ["https://tec.openplanner.team/stops/N308abb", "https://tec.openplanner.team/stops/N385adb"], ["https://tec.openplanner.team/stops/H4eh104b", "https://tec.openplanner.team/stops/H4po124a"], ["https://tec.openplanner.team/stops/X747abb", "https://tec.openplanner.team/stops/X747acb"], ["https://tec.openplanner.team/stops/LBSvi521", "https://tec.openplanner.team/stops/LBSvi522"], ["https://tec.openplanner.team/stops/H5pe132b", "https://tec.openplanner.team/stops/H5pe142a"], ["https://tec.openplanner.team/stops/Clggrfe1", "https://tec.openplanner.team/stops/Clgmaco2"], ["https://tec.openplanner.team/stops/Bdlmgla3", "https://tec.openplanner.team/stops/Bdlmgla4"], ["https://tec.openplanner.team/stops/N544ada", "https://tec.openplanner.team/stops/N544adb"], ["https://tec.openplanner.team/stops/LREheyd1", "https://tec.openplanner.team/stops/LRErive2"], ["https://tec.openplanner.team/stops/N321aba", "https://tec.openplanner.team/stops/N321ada"], ["https://tec.openplanner.team/stops/H1je223a", "https://tec.openplanner.team/stops/H1je369b"], ["https://tec.openplanner.team/stops/H1bd101b", "https://tec.openplanner.team/stops/H1hq126b"], ["https://tec.openplanner.team/stops/H1fl134a", "https://tec.openplanner.team/stops/H1je368a"], ["https://tec.openplanner.team/stops/X858aaa", "https://tec.openplanner.team/stops/X858agb"], ["https://tec.openplanner.team/stops/Btstbbu2", "https://tec.openplanner.team/stops/N524adb"], ["https://tec.openplanner.team/stops/N501ila", "https://tec.openplanner.team/stops/N501iqb"], ["https://tec.openplanner.team/stops/Llgchai1", "https://tec.openplanner.team/stops/Llgplop2"], ["https://tec.openplanner.team/stops/LLmpt--2", "https://tec.openplanner.team/stops/LLmvict2"], ["https://tec.openplanner.team/stops/Llgwild1", "https://tec.openplanner.team/stops/Llgwild8"], ["https://tec.openplanner.team/stops/Bbgncnd2", "https://tec.openplanner.team/stops/Bbgnvel2"], ["https://tec.openplanner.team/stops/Cgpchgo2", "https://tec.openplanner.team/stops/Cgpcime2"], ["https://tec.openplanner.team/stops/X620aeb", "https://tec.openplanner.team/stops/X620afa"], ["https://tec.openplanner.team/stops/H1po138a", "https://tec.openplanner.team/stops/H1po138b"], ["https://tec.openplanner.team/stops/LOljean1", "https://tec.openplanner.team/stops/LOltill1"], ["https://tec.openplanner.team/stops/H4ss155b", "https://tec.openplanner.team/stops/H4ss158a"], ["https://tec.openplanner.team/stops/H1hc126b", "https://tec.openplanner.team/stops/H1he103a"], ["https://tec.openplanner.team/stops/LaNmuhl3", "https://tec.openplanner.team/stops/LeMdorf2"], ["https://tec.openplanner.team/stops/Bwavbwa2", "https://tec.openplanner.team/stops/Bwavlon2"], ["https://tec.openplanner.team/stops/Bboufsm1", "https://tec.openplanner.team/stops/Bbstcoi1"], ["https://tec.openplanner.team/stops/LATguis2", "https://tec.openplanner.team/stops/LVLpane2"], ["https://tec.openplanner.team/stops/LClsacr1", "https://tec.openplanner.team/stops/LThchar1"], ["https://tec.openplanner.team/stops/LWAipes1", "https://tec.openplanner.team/stops/LWAor--2"], ["https://tec.openplanner.team/stops/LVbeg--1", "https://tec.openplanner.team/stops/LVbgend1"], ["https://tec.openplanner.team/stops/X618adb", "https://tec.openplanner.team/stops/X619afb"], ["https://tec.openplanner.team/stops/Balsbeg1", "https://tec.openplanner.team/stops/Bbrlrph1"], ["https://tec.openplanner.team/stops/H5wo129a", "https://tec.openplanner.team/stops/H5wo129b"], ["https://tec.openplanner.team/stops/N555aca", "https://tec.openplanner.team/stops/NC11ara"], ["https://tec.openplanner.team/stops/Cgystjo3", "https://tec.openplanner.team/stops/Cgystjo4"], ["https://tec.openplanner.team/stops/Loualbe2", "https://tec.openplanner.team/stops/Louroos2"], ["https://tec.openplanner.team/stops/LLbmalm2", "https://tec.openplanner.team/stops/LLbvith1"], ["https://tec.openplanner.team/stops/Cmaprov1", "https://tec.openplanner.team/stops/CMprov2"], ["https://tec.openplanner.team/stops/H5pe147b", "https://tec.openplanner.team/stops/H5pe147c"], ["https://tec.openplanner.team/stops/X824aaa", "https://tec.openplanner.team/stops/X824aba"], ["https://tec.openplanner.team/stops/LoEauto2", "https://tec.openplanner.team/stops/LoEbach2"], ["https://tec.openplanner.team/stops/Becepro1", "https://tec.openplanner.team/stops/Beceres1"], ["https://tec.openplanner.team/stops/X608ala", "https://tec.openplanner.team/stops/X608ana"], ["https://tec.openplanner.team/stops/H1do108b", "https://tec.openplanner.team/stops/H1do117b"], ["https://tec.openplanner.team/stops/H4ma200b", "https://tec.openplanner.team/stops/H4ma203b"], ["https://tec.openplanner.team/stops/N141aaa", "https://tec.openplanner.team/stops/N146aeb"], ["https://tec.openplanner.team/stops/Lmopech2", "https://tec.openplanner.team/stops/Lmopota1"], ["https://tec.openplanner.team/stops/X725asa", "https://tec.openplanner.team/stops/X725aub"], ["https://tec.openplanner.team/stops/H4fr386a", "https://tec.openplanner.team/stops/H4fr392a"], ["https://tec.openplanner.team/stops/H5at104b", "https://tec.openplanner.team/stops/H5at116d"], ["https://tec.openplanner.team/stops/N531aib", "https://tec.openplanner.team/stops/N531ara"], ["https://tec.openplanner.team/stops/LETec--1", "https://tec.openplanner.team/stops/LETmagn1"], ["https://tec.openplanner.team/stops/H2ha134a", "https://tec.openplanner.team/stops/H2ha134b"], ["https://tec.openplanner.team/stops/Llggerm1", "https://tec.openplanner.team/stops/Llgtawe0"], ["https://tec.openplanner.team/stops/X758aea", "https://tec.openplanner.team/stops/X758aha"], ["https://tec.openplanner.team/stops/LNCchev4", "https://tec.openplanner.team/stops/LNCloui1"], ["https://tec.openplanner.team/stops/Cgzoctr1", "https://tec.openplanner.team/stops/Cgzoctr3"], ["https://tec.openplanner.team/stops/Bracgar1", "https://tec.openplanner.team/stops/Bracrpe1"], ["https://tec.openplanner.team/stops/Cfmchau1", "https://tec.openplanner.team/stops/Cfmnoci1"], ["https://tec.openplanner.team/stops/LMOecsp2", "https://tec.openplanner.team/stops/LMOfleu1"], ["https://tec.openplanner.team/stops/N501bwa", "https://tec.openplanner.team/stops/N501mib"], ["https://tec.openplanner.team/stops/Crebien3", "https://tec.openplanner.team/stops/Creespi1"], ["https://tec.openplanner.team/stops/N506bbb", "https://tec.openplanner.team/stops/N506bdb"], ["https://tec.openplanner.team/stops/H2tr245b", "https://tec.openplanner.team/stops/H2tr254a"], ["https://tec.openplanner.team/stops/LSssurl2", "https://tec.openplanner.team/stops/N506bma"], ["https://tec.openplanner.team/stops/H4hx114a", "https://tec.openplanner.team/stops/H4hx114b"], ["https://tec.openplanner.team/stops/LaM266-2", "https://tec.openplanner.team/stops/LaMbull2"], ["https://tec.openplanner.team/stops/LEnchan1", "https://tec.openplanner.team/stops/LEnchan2"], ["https://tec.openplanner.team/stops/X741aab", "https://tec.openplanner.team/stops/X741abb"], ["https://tec.openplanner.team/stops/LeUcroi1", "https://tec.openplanner.team/stops/LeUoe541"], ["https://tec.openplanner.team/stops/H1bu142a", "https://tec.openplanner.team/stops/H2ep172b"], ["https://tec.openplanner.team/stops/LSPentr1", "https://tec.openplanner.team/stops/LSProya1"], ["https://tec.openplanner.team/stops/LAx41--1", "https://tec.openplanner.team/stops/LAxchpl1"], ["https://tec.openplanner.team/stops/X685afa", "https://tec.openplanner.team/stops/X685ama"], ["https://tec.openplanner.team/stops/LOCeg--1", "https://tec.openplanner.team/stops/LOChuy-1"], ["https://tec.openplanner.team/stops/LWagare*", "https://tec.openplanner.team/stops/LWathir2"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N313abb"], ["https://tec.openplanner.team/stops/X741agb", "https://tec.openplanner.team/stops/X741ahb"], ["https://tec.openplanner.team/stops/Becebju2", "https://tec.openplanner.team/stops/H3br100b"], ["https://tec.openplanner.team/stops/Ccpetan2", "https://tec.openplanner.team/stops/H2ch125a"], ["https://tec.openplanner.team/stops/X640arb", "https://tec.openplanner.team/stops/X640asb"], ["https://tec.openplanner.team/stops/H1et101b", "https://tec.openplanner.team/stops/H1et102b"], ["https://tec.openplanner.team/stops/LeYgros1", "https://tec.openplanner.team/stops/LeYheid1"], ["https://tec.openplanner.team/stops/Bmoucnd1", "https://tec.openplanner.team/stops/Bmoucoq1"], ["https://tec.openplanner.team/stops/Cmmlong1", "https://tec.openplanner.team/stops/Cmmmarb1"], ["https://tec.openplanner.team/stops/Lagtilf2", "https://tec.openplanner.team/stops/Lcebois1"], ["https://tec.openplanner.team/stops/Ccybeau2", "https://tec.openplanner.team/stops/Crbrgar1"], ["https://tec.openplanner.team/stops/LBRmout4", "https://tec.openplanner.team/stops/LVHbrai1"], ["https://tec.openplanner.team/stops/N232bcb", "https://tec.openplanner.team/stops/N232bga"], ["https://tec.openplanner.team/stops/Llgavoc2", "https://tec.openplanner.team/stops/Llgrame2"], ["https://tec.openplanner.team/stops/LSIespe1", "https://tec.openplanner.team/stops/LSImewi2"], ["https://tec.openplanner.team/stops/LWenouv1", "https://tec.openplanner.team/stops/LWexhav2"], ["https://tec.openplanner.team/stops/H1ho122a", "https://tec.openplanner.team/stops/H1ho122c"], ["https://tec.openplanner.team/stops/H2na134b", "https://tec.openplanner.team/stops/H2na136a"], ["https://tec.openplanner.team/stops/X743aca", "https://tec.openplanner.team/stops/X743adb"], ["https://tec.openplanner.team/stops/N522ata", "https://tec.openplanner.team/stops/N576ama"], ["https://tec.openplanner.team/stops/Ladthom1", "https://tec.openplanner.team/stops/Lvehomb2"], ["https://tec.openplanner.team/stops/LCEcent1", "https://tec.openplanner.team/stops/LMIcamp1"], ["https://tec.openplanner.team/stops/H2ep144b", "https://tec.openplanner.team/stops/H2ep172a"], ["https://tec.openplanner.team/stops/LCHeg--2", "https://tec.openplanner.team/stops/Lprspra1"], ["https://tec.openplanner.team/stops/LAOeg--2", "https://tec.openplanner.team/stops/LBpecco2"], ["https://tec.openplanner.team/stops/H1pa110a", "https://tec.openplanner.team/stops/H1pa110b"], ["https://tec.openplanner.team/stops/H2ll257c", "https://tec.openplanner.team/stops/H2ll257d"], ["https://tec.openplanner.team/stops/X721ama", "https://tec.openplanner.team/stops/X721anb"], ["https://tec.openplanner.team/stops/Cfrfede1", "https://tec.openplanner.team/stops/Csdetan1"], ["https://tec.openplanner.team/stops/LHCkoul1", "https://tec.openplanner.team/stops/LHCmonu4"], ["https://tec.openplanner.team/stops/H5rx126b", "https://tec.openplanner.team/stops/H5rx127b"], ["https://tec.openplanner.team/stops/H1cu114a", "https://tec.openplanner.team/stops/H1cu122a"], ["https://tec.openplanner.team/stops/LLrmc--2", "https://tec.openplanner.team/stops/LLrmc--4"], ["https://tec.openplanner.team/stops/X764acb", "https://tec.openplanner.team/stops/X764adb"], ["https://tec.openplanner.team/stops/LREsoug2", "https://tec.openplanner.team/stops/LREsoug4"], ["https://tec.openplanner.team/stops/LPclaro1", "https://tec.openplanner.team/stops/LPctrog2"], ["https://tec.openplanner.team/stops/H1em106a", "https://tec.openplanner.team/stops/H1vb143a"], ["https://tec.openplanner.team/stops/Lghhaut2", "https://tec.openplanner.team/stops/Lghwass2"], ["https://tec.openplanner.team/stops/Ljekess2", "https://tec.openplanner.team/stops/Lseespe2"], ["https://tec.openplanner.team/stops/LWLhagi2", "https://tec.openplanner.team/stops/LXfsolw1"], ["https://tec.openplanner.team/stops/X626ada", "https://tec.openplanner.team/stops/X626aha"], ["https://tec.openplanner.team/stops/H4ne136b", "https://tec.openplanner.team/stops/H4te256a"], ["https://tec.openplanner.team/stops/LSDheus1", "https://tec.openplanner.team/stops/LSDvill2"], ["https://tec.openplanner.team/stops/H2fy119b", "https://tec.openplanner.team/stops/H2fy123a"], ["https://tec.openplanner.team/stops/LCxwade2", "https://tec.openplanner.team/stops/LJueg--1"], ["https://tec.openplanner.team/stops/LHGtige2", "https://tec.openplanner.team/stops/LHGtron2"], ["https://tec.openplanner.team/stops/Cbfcham3", "https://tec.openplanner.team/stops/Cbfpoti2"], ["https://tec.openplanner.team/stops/Ctufleu2", "https://tec.openplanner.team/stops/Cturoge2"], ["https://tec.openplanner.team/stops/LeUkirc1", "https://tec.openplanner.team/stops/LeUvoul1"], ["https://tec.openplanner.team/stops/H4ty334b", "https://tec.openplanner.team/stops/H4ty343b"], ["https://tec.openplanner.team/stops/Ljewale1", "https://tec.openplanner.team/stops/Ljewale3"], ["https://tec.openplanner.team/stops/NL80aba", "https://tec.openplanner.team/stops/NL80acb"], ["https://tec.openplanner.team/stops/LBWeg--4", "https://tec.openplanner.team/stops/LBWfusi2"], ["https://tec.openplanner.team/stops/LBKmoes1", "https://tec.openplanner.team/stops/LBKmoes2"], ["https://tec.openplanner.team/stops/Bbrycar1", "https://tec.openplanner.team/stops/Bbrycar2"], ["https://tec.openplanner.team/stops/X982apb", "https://tec.openplanner.team/stops/X982aub"], ["https://tec.openplanner.team/stops/X897agb", "https://tec.openplanner.team/stops/X897ara"], ["https://tec.openplanner.team/stops/LTPsalm1", "https://tec.openplanner.team/stops/LTPsalm2"], ["https://tec.openplanner.team/stops/H4ep131a", "https://tec.openplanner.team/stops/H4rm109a"], ["https://tec.openplanner.team/stops/LHUhaum2", "https://tec.openplanner.team/stops/LTimalv2"], ["https://tec.openplanner.team/stops/H3bi102a", "https://tec.openplanner.team/stops/H3bi108a"], ["https://tec.openplanner.team/stops/N145aca", "https://tec.openplanner.team/stops/N145aed"], ["https://tec.openplanner.team/stops/H1cu112b", "https://tec.openplanner.team/stops/H1cu121b"], ["https://tec.openplanner.team/stops/N211aya", "https://tec.openplanner.team/stops/N225aha"], ["https://tec.openplanner.team/stops/LkEbruc2", "https://tec.openplanner.team/stops/LkEkric2"], ["https://tec.openplanner.team/stops/Cjubert1", "https://tec.openplanner.team/stops/Cjufagn4"], ["https://tec.openplanner.team/stops/Cmlaili1", "https://tec.openplanner.team/stops/Cmtrdec2"], ["https://tec.openplanner.team/stops/H4av102a", "https://tec.openplanner.team/stops/H4av106b"], ["https://tec.openplanner.team/stops/N232bbb", "https://tec.openplanner.team/stops/N232bca"], ["https://tec.openplanner.team/stops/H1hn364a", "https://tec.openplanner.team/stops/H1ss349a"], ["https://tec.openplanner.team/stops/H2bh115b", "https://tec.openplanner.team/stops/H2mg142b"], ["https://tec.openplanner.team/stops/H1wz171a", "https://tec.openplanner.team/stops/H1wz171b"], ["https://tec.openplanner.team/stops/X359aha", "https://tec.openplanner.team/stops/X359aia"], ["https://tec.openplanner.team/stops/H4pl112b", "https://tec.openplanner.team/stops/H4wn126b"], ["https://tec.openplanner.team/stops/N424aea", "https://tec.openplanner.team/stops/N425aab"], ["https://tec.openplanner.team/stops/H5qu141b", "https://tec.openplanner.team/stops/H5qu144b"], ["https://tec.openplanner.team/stops/LHGvill2", "https://tec.openplanner.team/stops/LVltige2"], ["https://tec.openplanner.team/stops/X614agb", "https://tec.openplanner.team/stops/X616adb"], ["https://tec.openplanner.team/stops/N501hfa", "https://tec.openplanner.team/stops/N501hjb"], ["https://tec.openplanner.team/stops/H2bh109a", "https://tec.openplanner.team/stops/H2lc169b"], ["https://tec.openplanner.team/stops/Lprferm1", "https://tec.openplanner.team/stops/Lprtill2"], ["https://tec.openplanner.team/stops/Lagtilf1", "https://tec.openplanner.team/stops/Lagviad1"], ["https://tec.openplanner.team/stops/LOMdTEC1", "https://tec.openplanner.team/stops/LOMdTEC2"], ["https://tec.openplanner.team/stops/H4mt222a", "https://tec.openplanner.team/stops/H4mt222b"], ["https://tec.openplanner.team/stops/Beclfde1", "https://tec.openplanner.team/stops/Broncan2"], ["https://tec.openplanner.team/stops/N229aab", "https://tec.openplanner.team/stops/N232asa"], ["https://tec.openplanner.team/stops/X923adb", "https://tec.openplanner.team/stops/X923afa"], ["https://tec.openplanner.team/stops/H2ca115a", "https://tec.openplanner.team/stops/H2ch125a"], ["https://tec.openplanner.team/stops/LBiroch1", "https://tec.openplanner.team/stops/LDOastr2"], ["https://tec.openplanner.team/stops/Lvegazo1", "https://tec.openplanner.team/stops/Lveveou2"], ["https://tec.openplanner.team/stops/H4ag100a", "https://tec.openplanner.team/stops/H4ag101b"], ["https://tec.openplanner.team/stops/N543aga", "https://tec.openplanner.team/stops/N543byb"], ["https://tec.openplanner.team/stops/Bgrmver1", "https://tec.openplanner.team/stops/N522ara"], ["https://tec.openplanner.team/stops/H2hg149a", "https://tec.openplanner.team/stops/H2hg154b"], ["https://tec.openplanner.team/stops/LmNelis2", "https://tec.openplanner.team/stops/LmNha152"], ["https://tec.openplanner.team/stops/X619afa", "https://tec.openplanner.team/stops/X619afb"], ["https://tec.openplanner.team/stops/N501gbb", "https://tec.openplanner.team/stops/N501lda"], ["https://tec.openplanner.team/stops/H1wz169a", "https://tec.openplanner.team/stops/H3bi115b"], ["https://tec.openplanner.team/stops/H1vh137a", "https://tec.openplanner.team/stops/H3go103a"], ["https://tec.openplanner.team/stops/LCLstat2", "https://tec.openplanner.team/stops/NL35add"], ["https://tec.openplanner.team/stops/Lfllapi2", "https://tec.openplanner.team/stops/Lflroms5"], ["https://tec.openplanner.team/stops/Lfhweri1", "https://tec.openplanner.team/stops/Lfhweri2"], ["https://tec.openplanner.team/stops/LOMbrou1", "https://tec.openplanner.team/stops/LOMdodi1"], ["https://tec.openplanner.team/stops/N308ayb", "https://tec.openplanner.team/stops/N339aaa"], ["https://tec.openplanner.team/stops/N207aeb", "https://tec.openplanner.team/stops/N209aba"], ["https://tec.openplanner.team/stops/N577akb", "https://tec.openplanner.team/stops/N578aaa"], ["https://tec.openplanner.team/stops/H4ry141a", "https://tec.openplanner.team/stops/H4ry141b"], ["https://tec.openplanner.team/stops/Bwaubru1", "https://tec.openplanner.team/stops/Bwaubru2"], ["https://tec.openplanner.team/stops/LHMbach1", "https://tec.openplanner.team/stops/LHMbach4"], ["https://tec.openplanner.team/stops/H1gh162c", "https://tec.openplanner.team/stops/H1gh166b"], ["https://tec.openplanner.team/stops/LHUmess1", "https://tec.openplanner.team/stops/LHUmess2"], ["https://tec.openplanner.team/stops/H4ka187a", "https://tec.openplanner.team/stops/H4ty397a"], ["https://tec.openplanner.team/stops/Lcefoxh2", "https://tec.openplanner.team/stops/Lcelhon3"], ["https://tec.openplanner.team/stops/LLxcana2", "https://tec.openplanner.team/stops/LLxeclu2"], ["https://tec.openplanner.team/stops/LLrhaut3", "https://tec.openplanner.team/stops/LNOning2"], ["https://tec.openplanner.team/stops/Cmtpblo1", "https://tec.openplanner.team/stops/Cmtpblo2"], ["https://tec.openplanner.team/stops/Boppegl2", "https://tec.openplanner.team/stops/Bsrbbas1"], ["https://tec.openplanner.team/stops/H4mt220a", "https://tec.openplanner.team/stops/H4mx116b"], ["https://tec.openplanner.team/stops/X725bca", "https://tec.openplanner.team/stops/X725bcb"], ["https://tec.openplanner.team/stops/H4ft135c", "https://tec.openplanner.team/stops/H4ft135d"], ["https://tec.openplanner.team/stops/X615ala", "https://tec.openplanner.team/stops/X615alb"], ["https://tec.openplanner.team/stops/X754ana", "https://tec.openplanner.team/stops/X754anb"], ["https://tec.openplanner.team/stops/LVLruis1", "https://tec.openplanner.team/stops/LVLzoni2"], ["https://tec.openplanner.team/stops/X802aeb", "https://tec.openplanner.team/stops/X818aia"], ["https://tec.openplanner.team/stops/Cgzchab2", "https://tec.openplanner.team/stops/Cgzpjeu1"], ["https://tec.openplanner.team/stops/LrAgier1", "https://tec.openplanner.team/stops/LrAplat2"], ["https://tec.openplanner.team/stops/Cgofert1", "https://tec.openplanner.team/stops/Cvvgrsa1"], ["https://tec.openplanner.team/stops/LJSeg--1", "https://tec.openplanner.team/stops/LJSeg--2"], ["https://tec.openplanner.team/stops/Lceludg1", "https://tec.openplanner.team/stops/Lceviei2"], ["https://tec.openplanner.team/stops/H5qu139a", "https://tec.openplanner.team/stops/H5qu150b"], ["https://tec.openplanner.team/stops/H1ag104a", "https://tec.openplanner.team/stops/H1ag104b"], ["https://tec.openplanner.team/stops/X716afb", "https://tec.openplanner.team/stops/X736aia"], ["https://tec.openplanner.team/stops/LCxwarr2", "https://tec.openplanner.team/stops/LHEchex2"], ["https://tec.openplanner.team/stops/H3br110a", "https://tec.openplanner.team/stops/H3br110b"], ["https://tec.openplanner.team/stops/X729aab", "https://tec.openplanner.team/stops/X729aac"], ["https://tec.openplanner.team/stops/N574ada", "https://tec.openplanner.team/stops/N574aea"], ["https://tec.openplanner.team/stops/H2le151b", "https://tec.openplanner.team/stops/H2le152a"], ["https://tec.openplanner.team/stops/X624aca", "https://tec.openplanner.team/stops/X624ama"], ["https://tec.openplanner.team/stops/LWNbeto1", "https://tec.openplanner.team/stops/LWNbeto2"], ["https://tec.openplanner.team/stops/N534amg", "https://tec.openplanner.team/stops/N543ckb"], ["https://tec.openplanner.team/stops/Lagarde1", "https://tec.openplanner.team/stops/Lagcler2"], ["https://tec.openplanner.team/stops/H4bh100b", "https://tec.openplanner.team/stops/H4bh105a"], ["https://tec.openplanner.team/stops/Bmargve1", "https://tec.openplanner.team/stops/Bvlvmar2"], ["https://tec.openplanner.team/stops/Bwatcpe1", "https://tec.openplanner.team/stops/Bwatvco1"], ["https://tec.openplanner.team/stops/X982bka", "https://tec.openplanner.team/stops/X982bkb"], ["https://tec.openplanner.team/stops/Ctubpos1", "https://tec.openplanner.team/stops/NC28aea"], ["https://tec.openplanner.team/stops/H4ch118a", "https://tec.openplanner.team/stops/H4vx364b"], ["https://tec.openplanner.team/stops/X624afb", "https://tec.openplanner.team/stops/X624alb"], ["https://tec.openplanner.team/stops/N501aoa", "https://tec.openplanner.team/stops/N501apb"], ["https://tec.openplanner.team/stops/N304abb", "https://tec.openplanner.team/stops/N315aaa"], ["https://tec.openplanner.team/stops/LBVclig2", "https://tec.openplanner.team/stops/LMAfali2"], ["https://tec.openplanner.team/stops/Braccen2", "https://tec.openplanner.team/stops/Braclin1"], ["https://tec.openplanner.team/stops/H4be103b", "https://tec.openplanner.team/stops/H4be112a"], ["https://tec.openplanner.team/stops/LATmale1", "https://tec.openplanner.team/stops/LWNwavr3"], ["https://tec.openplanner.team/stops/H4hg157a", "https://tec.openplanner.team/stops/H4hg160a"], ["https://tec.openplanner.team/stops/N241aca", "https://tec.openplanner.team/stops/N585alb"], ["https://tec.openplanner.team/stops/X727aha", "https://tec.openplanner.team/stops/X747aba"], ["https://tec.openplanner.team/stops/LHUanth2", "https://tec.openplanner.team/stops/LHUfont2"], ["https://tec.openplanner.team/stops/LJU51--1", "https://tec.openplanner.team/stops/LVSslin2"], ["https://tec.openplanner.team/stops/LPOleli2", "https://tec.openplanner.team/stops/LPOpass2"], ["https://tec.openplanner.team/stops/X801cfb", "https://tec.openplanner.team/stops/X801cla"], ["https://tec.openplanner.team/stops/Cjudaxi2", "https://tec.openplanner.team/stops/Cjurevo2"], ["https://tec.openplanner.team/stops/Cstdona4", "https://tec.openplanner.team/stops/Cstdona5"], ["https://tec.openplanner.team/stops/Cbmzoni2", "https://tec.openplanner.team/stops/H1tt106a"], ["https://tec.openplanner.team/stops/N501hza", "https://tec.openplanner.team/stops/N501hzc"], ["https://tec.openplanner.team/stops/N534aya", "https://tec.openplanner.team/stops/N534byb"], ["https://tec.openplanner.team/stops/LaAbush*", "https://tec.openplanner.team/stops/LMastat4"], ["https://tec.openplanner.team/stops/N149aia", "https://tec.openplanner.team/stops/N149ala"], ["https://tec.openplanner.team/stops/LGMforg2", "https://tec.openplanner.team/stops/LGMvoue1"], ["https://tec.openplanner.team/stops/H4ag104b", "https://tec.openplanner.team/stops/H4ag105a"], ["https://tec.openplanner.team/stops/LSPbalm2", "https://tec.openplanner.team/stops/LSPwarf1"], ["https://tec.openplanner.team/stops/Lghwall*", "https://tec.openplanner.team/stops/Llochar1"], ["https://tec.openplanner.team/stops/H2lc168b", "https://tec.openplanner.team/stops/H2lc171a"], ["https://tec.openplanner.team/stops/LCvneu-1", "https://tec.openplanner.team/stops/LCvneuf2"], ["https://tec.openplanner.team/stops/H1ms273a", "https://tec.openplanner.team/stops/H1ms289a"], ["https://tec.openplanner.team/stops/N351agb", "https://tec.openplanner.team/stops/N351amb"], ["https://tec.openplanner.team/stops/Cthnord2", "https://tec.openplanner.team/stops/Cthpibl2"], ["https://tec.openplanner.team/stops/H1er112a", "https://tec.openplanner.team/stops/H1so142c"], ["https://tec.openplanner.team/stops/N110afa", "https://tec.openplanner.team/stops/N110aga"], ["https://tec.openplanner.team/stops/LBvviem2", "https://tec.openplanner.team/stops/LBvviem4"], ["https://tec.openplanner.team/stops/X926aab", "https://tec.openplanner.team/stops/X927aaa"], ["https://tec.openplanner.team/stops/LTHec--1", "https://tec.openplanner.team/stops/LTHjevo1"], ["https://tec.openplanner.team/stops/H2ll200a", "https://tec.openplanner.team/stops/H2ll200b"], ["https://tec.openplanner.team/stops/Btsleco1", "https://tec.openplanner.team/stops/Btsllib1"], ["https://tec.openplanner.team/stops/Lprhodi1", "https://tec.openplanner.team/stops/Lprorem1"], ["https://tec.openplanner.team/stops/Cgy4bra2", "https://tec.openplanner.team/stops/Cgylouv2"], ["https://tec.openplanner.team/stops/H1ba105a", "https://tec.openplanner.team/stops/H1te190a"], ["https://tec.openplanner.team/stops/N232ava", "https://tec.openplanner.team/stops/N232bha"], ["https://tec.openplanner.team/stops/LTIdonn2", "https://tec.openplanner.team/stops/LTIptme1"], ["https://tec.openplanner.team/stops/Btubfab2", "https://tec.openplanner.team/stops/Btubmfa1"], ["https://tec.openplanner.team/stops/Bhevhha1", "https://tec.openplanner.team/stops/Bovesnh2"], ["https://tec.openplanner.team/stops/X657afb", "https://tec.openplanner.team/stops/X657aha"], ["https://tec.openplanner.team/stops/Lpeptra1", "https://tec.openplanner.team/stops/LWenouv1"], ["https://tec.openplanner.team/stops/Canresi1", "https://tec.openplanner.team/stops/H2an102b"], ["https://tec.openplanner.team/stops/H1ba104b", "https://tec.openplanner.team/stops/H1ba119b"], ["https://tec.openplanner.team/stops/Cprvsar1", "https://tec.openplanner.team/stops/N554aaa"], ["https://tec.openplanner.team/stops/Clgmaco2", "https://tec.openplanner.team/stops/H1be103a"], ["https://tec.openplanner.team/stops/H1ms297b", "https://tec.openplanner.team/stops/H1ms935a"], ["https://tec.openplanner.team/stops/Canjon3", "https://tec.openplanner.team/stops/Cfocobe1"], ["https://tec.openplanner.team/stops/N343ada", "https://tec.openplanner.team/stops/X343aha"], ["https://tec.openplanner.team/stops/X614agb", "https://tec.openplanner.team/stops/X624aba"], ["https://tec.openplanner.team/stops/LaAhaup1", "https://tec.openplanner.team/stops/LaAmise1"], ["https://tec.openplanner.team/stops/Lbrdepo2", "https://tec.openplanner.team/stops/Lbrfagn1"], ["https://tec.openplanner.team/stops/H4bl105a", "https://tec.openplanner.team/stops/H4bl106b"], ["https://tec.openplanner.team/stops/Beclesp1", "https://tec.openplanner.team/stops/H2ec104b"], ["https://tec.openplanner.team/stops/Bhevhha1", "https://tec.openplanner.team/stops/Bhevl3l2"], ["https://tec.openplanner.team/stops/LBUmara2", "https://tec.openplanner.team/stops/NL30aja"], ["https://tec.openplanner.team/stops/Llgjenn1", "https://tec.openplanner.team/stops/Llgwiar4"], ["https://tec.openplanner.team/stops/X659ara", "https://tec.openplanner.team/stops/X660aga"], ["https://tec.openplanner.team/stops/LaMbrei1", "https://tec.openplanner.team/stops/LaMwies2"], ["https://tec.openplanner.team/stops/X636apa", "https://tec.openplanner.team/stops/X636bjb"], ["https://tec.openplanner.team/stops/Bgdhcsh1", "https://tec.openplanner.team/stops/Bgdhmet1"], ["https://tec.openplanner.team/stops/Cmqchap2", "https://tec.openplanner.team/stops/Cmqegl2"], ["https://tec.openplanner.team/stops/N302aea", "https://tec.openplanner.team/stops/N302afa"], ["https://tec.openplanner.team/stops/LWAbett2", "https://tec.openplanner.team/stops/LWAwila1"], ["https://tec.openplanner.team/stops/Brsg7fo2", "https://tec.openplanner.team/stops/Bwaunou1"], ["https://tec.openplanner.team/stops/N232bua", "https://tec.openplanner.team/stops/N232bub"], ["https://tec.openplanner.team/stops/Ljucomb1", "https://tec.openplanner.team/stops/Ljuprev1"], ["https://tec.openplanner.team/stops/LHXfont2", "https://tec.openplanner.team/stops/LHXn47-3"], ["https://tec.openplanner.team/stops/H1ml112a", "https://tec.openplanner.team/stops/H1ne146a"], ["https://tec.openplanner.team/stops/Louairl2", "https://tec.openplanner.team/stops/Lscchat1"], ["https://tec.openplanner.team/stops/N241aeb", "https://tec.openplanner.team/stops/N270aab"], ["https://tec.openplanner.team/stops/N337aeb", "https://tec.openplanner.team/stops/N337afb"], ["https://tec.openplanner.team/stops/Cmlener2", "https://tec.openplanner.team/stops/Cmllait1"], ["https://tec.openplanner.team/stops/Bbgepau1", "https://tec.openplanner.team/stops/Bwaveur1"], ["https://tec.openplanner.team/stops/H4ta119a", "https://tec.openplanner.team/stops/H4ta119b"], ["https://tec.openplanner.team/stops/X636bga", "https://tec.openplanner.team/stops/X649aca"], ["https://tec.openplanner.team/stops/N501isa", "https://tec.openplanner.team/stops/N501iwb"], ["https://tec.openplanner.team/stops/H4hq129b", "https://tec.openplanner.team/stops/H4hq133c"], ["https://tec.openplanner.team/stops/H4be146b", "https://tec.openplanner.team/stops/H5bl120b"], ["https://tec.openplanner.team/stops/Cmehels2", "https://tec.openplanner.team/stops/Cmerlme2"], ["https://tec.openplanner.team/stops/Bwavfbe2", "https://tec.openplanner.team/stops/Bwavnam3"], ["https://tec.openplanner.team/stops/X738adb", "https://tec.openplanner.team/stops/X754aha"], ["https://tec.openplanner.team/stops/X771abb", "https://tec.openplanner.team/stops/X773afb"], ["https://tec.openplanner.team/stops/Clsferr1", "https://tec.openplanner.team/stops/H1ls108b"], ["https://tec.openplanner.team/stops/H4ta126a", "https://tec.openplanner.team/stops/H4ta128b"], ["https://tec.openplanner.team/stops/LCogara2", "https://tec.openplanner.team/stops/LTPlegr2"], ["https://tec.openplanner.team/stops/Bjaurgo1", "https://tec.openplanner.team/stops/NR30abb"], ["https://tec.openplanner.team/stops/N531abb", "https://tec.openplanner.team/stops/N531aua"], ["https://tec.openplanner.team/stops/Llgcong3", "https://tec.openplanner.team/stops/Llgpier1"], ["https://tec.openplanner.team/stops/N874aia", "https://tec.openplanner.team/stops/N874aka"], ["https://tec.openplanner.team/stops/LVIacac1", "https://tec.openplanner.team/stops/LVItcm-1"], ["https://tec.openplanner.team/stops/N501fya", "https://tec.openplanner.team/stops/N501zaa"], ["https://tec.openplanner.team/stops/Btubbsc1", "https://tec.openplanner.team/stops/Btubcim1"], ["https://tec.openplanner.team/stops/X747acb", "https://tec.openplanner.team/stops/X747aia"], ["https://tec.openplanner.team/stops/Lbrptbr1", "https://tec.openplanner.team/stops/Llgbarb2"], ["https://tec.openplanner.team/stops/LVvbouv1", "https://tec.openplanner.team/stops/LVvbouv2"], ["https://tec.openplanner.team/stops/LGOdelv2", "https://tec.openplanner.team/stops/LHVeg--2"], ["https://tec.openplanner.team/stops/H2ll184b", "https://tec.openplanner.team/stops/H2ll188b"], ["https://tec.openplanner.team/stops/LNClila1", "https://tec.openplanner.team/stops/LRRcarr1"], ["https://tec.openplanner.team/stops/LbOdorf2", "https://tec.openplanner.team/stops/LbOhoff2"], ["https://tec.openplanner.team/stops/Bwavdmo2", "https://tec.openplanner.team/stops/Bwavvpr2"], ["https://tec.openplanner.team/stops/X650ada", "https://tec.openplanner.team/stops/X650ahb"], ["https://tec.openplanner.team/stops/LCxbeau1", "https://tec.openplanner.team/stops/LCxeg--1"], ["https://tec.openplanner.team/stops/N232ara", "https://tec.openplanner.team/stops/N232arb"], ["https://tec.openplanner.team/stops/X938aaa", "https://tec.openplanner.team/stops/X939aeb"], ["https://tec.openplanner.team/stops/H1ha182a", "https://tec.openplanner.team/stops/H1ha182b"], ["https://tec.openplanner.team/stops/X870agb", "https://tec.openplanner.team/stops/X870ahb"], ["https://tec.openplanner.team/stops/Bcrncor1", "https://tec.openplanner.team/stops/Bcrnsge2"], ["https://tec.openplanner.team/stops/N102aca", "https://tec.openplanner.team/stops/N104aaa"], ["https://tec.openplanner.team/stops/N552abb", "https://tec.openplanner.team/stops/N553aca"], ["https://tec.openplanner.team/stops/Bnivpeu1", "https://tec.openplanner.team/stops/Bnivver2"], ["https://tec.openplanner.team/stops/H1eu101b", "https://tec.openplanner.team/stops/H1eu103a"], ["https://tec.openplanner.team/stops/N308aha", "https://tec.openplanner.team/stops/N308aka"], ["https://tec.openplanner.team/stops/N501ida", "https://tec.openplanner.team/stops/N501nba"], ["https://tec.openplanner.team/stops/X398abb", "https://tec.openplanner.team/stops/X398aea"], ["https://tec.openplanner.team/stops/Llggee52", "https://tec.openplanner.team/stops/Llgrass1"], ["https://tec.openplanner.team/stops/LTamag2", "https://tec.openplanner.team/stops/LTamoul2"], ["https://tec.openplanner.team/stops/H4ar172a", "https://tec.openplanner.team/stops/H4ar173b"], ["https://tec.openplanner.team/stops/Ccugrtr1", "https://tec.openplanner.team/stops/Ccuplai2"], ["https://tec.openplanner.team/stops/X659aka", "https://tec.openplanner.team/stops/X659asa"], ["https://tec.openplanner.team/stops/N513acb", "https://tec.openplanner.team/stops/N513acd"], ["https://tec.openplanner.team/stops/Cgxwaut1", "https://tec.openplanner.team/stops/Cgxwaut2"], ["https://tec.openplanner.team/stops/Bohnmon1", "https://tec.openplanner.team/stops/Bohnrph2"], ["https://tec.openplanner.team/stops/LkEbbl-2", "https://tec.openplanner.team/stops/LkEkirc2"], ["https://tec.openplanner.team/stops/N109ada", "https://tec.openplanner.team/stops/N123ada"], ["https://tec.openplanner.team/stops/Cmobeau2", "https://tec.openplanner.team/stops/Cromart1"], ["https://tec.openplanner.team/stops/Cptberg1", "https://tec.openplanner.team/stops/Cpttraz1"], ["https://tec.openplanner.team/stops/Bnivfdu1", "https://tec.openplanner.team/stops/Clproi1"], ["https://tec.openplanner.team/stops/N110aba", "https://tec.openplanner.team/stops/N110ada"], ["https://tec.openplanner.team/stops/X663avb", "https://tec.openplanner.team/stops/X667aaa"], ["https://tec.openplanner.team/stops/Bbsivil1", "https://tec.openplanner.team/stops/Blilhay1"], ["https://tec.openplanner.team/stops/X921aib", "https://tec.openplanner.team/stops/X921arb"], ["https://tec.openplanner.team/stops/NC02aba", "https://tec.openplanner.team/stops/NC24aib"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X724ada"], ["https://tec.openplanner.team/stops/Cwfaldi1", "https://tec.openplanner.team/stops/Cwfreta1"], ["https://tec.openplanner.team/stops/H4te251a", "https://tec.openplanner.team/stops/H4te253b"], ["https://tec.openplanner.team/stops/Csocime2", "https://tec.openplanner.team/stops/Csoplac1"], ["https://tec.openplanner.team/stops/LAnchat1", "https://tec.openplanner.team/stops/LAncoup2"], ["https://tec.openplanner.team/stops/H4wa159a", "https://tec.openplanner.team/stops/H4wa159b"], ["https://tec.openplanner.team/stops/H4ty276b", "https://tec.openplanner.team/stops/H4ty299a"], ["https://tec.openplanner.team/stops/Chhclde2", "https://tec.openplanner.team/stops/Chhsncb1"], ["https://tec.openplanner.team/stops/H1wg124b", "https://tec.openplanner.team/stops/H1wg125b"], ["https://tec.openplanner.team/stops/Lmopast2", "https://tec.openplanner.team/stops/Lsnfoot2"], ["https://tec.openplanner.team/stops/H3so171a", "https://tec.openplanner.team/stops/H3so171b"], ["https://tec.openplanner.team/stops/Lhubarl1", "https://tec.openplanner.team/stops/LPoewer1"], ["https://tec.openplanner.team/stops/Cgymest1", "https://tec.openplanner.team/stops/Cgyrrep1"], ["https://tec.openplanner.team/stops/NL74acb", "https://tec.openplanner.team/stops/NL74afa"], ["https://tec.openplanner.team/stops/LWaccom1", "https://tec.openplanner.team/stops/LWahetr2"], ["https://tec.openplanner.team/stops/H1ca106b", "https://tec.openplanner.team/stops/H1ca108b"], ["https://tec.openplanner.team/stops/LLbpt--1", "https://tec.openplanner.team/stops/LLbquar2"], ["https://tec.openplanner.team/stops/Lsnvand1", "https://tec.openplanner.team/stops/Lsnvand3"], ["https://tec.openplanner.team/stops/N244adb", "https://tec.openplanner.team/stops/N244aea"], ["https://tec.openplanner.team/stops/Bmrllgr1", "https://tec.openplanner.team/stops/Bmrllgr2"], ["https://tec.openplanner.team/stops/X937aaa", "https://tec.openplanner.team/stops/X937aab"], ["https://tec.openplanner.team/stops/H4ef162a", "https://tec.openplanner.team/stops/H4ef164b"], ["https://tec.openplanner.team/stops/X636ada", "https://tec.openplanner.team/stops/X636adb"], ["https://tec.openplanner.team/stops/X681aha", "https://tec.openplanner.team/stops/X681aia"], ["https://tec.openplanner.team/stops/H4be114a", "https://tec.openplanner.team/stops/H4be147a"], ["https://tec.openplanner.team/stops/Bbeaneu4", "https://tec.openplanner.team/stops/Btlgfto1"], ["https://tec.openplanner.team/stops/H2lh129b", "https://tec.openplanner.team/stops/H2mm144b"], ["https://tec.openplanner.team/stops/X804apa", "https://tec.openplanner.team/stops/X882agb"], ["https://tec.openplanner.team/stops/N562bob", "https://tec.openplanner.team/stops/N562bwb"], ["https://tec.openplanner.team/stops/X615aab", "https://tec.openplanner.team/stops/X615afb"], ["https://tec.openplanner.team/stops/X637ara", "https://tec.openplanner.team/stops/X637arb"], ["https://tec.openplanner.team/stops/Lagchen1", "https://tec.openplanner.team/stops/Lkiecol2"], ["https://tec.openplanner.team/stops/N534bqa", "https://tec.openplanner.team/stops/N553aoa"], ["https://tec.openplanner.team/stops/N529aba", "https://tec.openplanner.team/stops/N529ahb"], ["https://tec.openplanner.team/stops/H4ty285c", "https://tec.openplanner.team/stops/H4ty287b"], ["https://tec.openplanner.team/stops/NL77adb", "https://tec.openplanner.team/stops/NL77afa"], ["https://tec.openplanner.team/stops/X661abb", "https://tec.openplanner.team/stops/X661aca"], ["https://tec.openplanner.team/stops/LHSfexh1", "https://tec.openplanner.team/stops/LHStrez1"], ["https://tec.openplanner.team/stops/Blascim1", "https://tec.openplanner.team/stops/Blascim2"], ["https://tec.openplanner.team/stops/Lfhtrca1", "https://tec.openplanner.team/stops/Lfhtrxc1"], ["https://tec.openplanner.team/stops/X768ada", "https://tec.openplanner.team/stops/X768aga"], ["https://tec.openplanner.team/stops/H1gh144a", "https://tec.openplanner.team/stops/H1je212b"], ["https://tec.openplanner.team/stops/X768aga", "https://tec.openplanner.team/stops/X768ahb"], ["https://tec.openplanner.team/stops/X713ajb", "https://tec.openplanner.team/stops/X713ajd"], ["https://tec.openplanner.team/stops/LbUhuge2", "https://tec.openplanner.team/stops/LhUkreu2"], ["https://tec.openplanner.team/stops/LAyabri2", "https://tec.openplanner.team/stops/Lre3che1"], ["https://tec.openplanner.team/stops/LSerout1", "https://tec.openplanner.team/stops/LSerout2"], ["https://tec.openplanner.team/stops/X620ada", "https://tec.openplanner.team/stops/X621aab"], ["https://tec.openplanner.team/stops/X923aja", "https://tec.openplanner.team/stops/X923ana"], ["https://tec.openplanner.team/stops/LkTgutl2", "https://tec.openplanner.team/stops/LwAkett1"], ["https://tec.openplanner.team/stops/X949afb", "https://tec.openplanner.team/stops/X949aga"], ["https://tec.openplanner.team/stops/Csecarr2", "https://tec.openplanner.team/stops/Csefour2"], ["https://tec.openplanner.team/stops/LFyec--1", "https://tec.openplanner.team/stops/LFypont1"], ["https://tec.openplanner.team/stops/H4tp146b", "https://tec.openplanner.team/stops/H4wp150c"], ["https://tec.openplanner.team/stops/X766acb", "https://tec.openplanner.team/stops/X791adb"], ["https://tec.openplanner.team/stops/X640ajb", "https://tec.openplanner.team/stops/X640aua"], ["https://tec.openplanner.team/stops/LkEkric1", "https://tec.openplanner.team/stops/LkEkric2"], ["https://tec.openplanner.team/stops/N506bha", "https://tec.openplanner.team/stops/N506bnb"], ["https://tec.openplanner.team/stops/X762ada", "https://tec.openplanner.team/stops/X762adb"], ["https://tec.openplanner.team/stops/Llgcorn1", "https://tec.openplanner.team/stops/Llgcorn3"], ["https://tec.openplanner.team/stops/LFdeg--2", "https://tec.openplanner.team/stops/LFdeg--4"], ["https://tec.openplanner.team/stops/H2hg266b", "https://tec.openplanner.team/stops/H2hg267a"], ["https://tec.openplanner.team/stops/H1ma230a", "https://tec.openplanner.team/stops/H1ob327b"], ["https://tec.openplanner.team/stops/Lmncasi1", "https://tec.openplanner.team/stops/Lmnrame2"], ["https://tec.openplanner.team/stops/N229aaa", "https://tec.openplanner.team/stops/N229adb"], ["https://tec.openplanner.team/stops/X746alb", "https://tec.openplanner.team/stops/X746ama"], ["https://tec.openplanner.team/stops/Cvlcen2", "https://tec.openplanner.team/stops/NH01aha"], ["https://tec.openplanner.team/stops/Ctychen3", "https://tec.openplanner.team/stops/N137aec"], ["https://tec.openplanner.team/stops/Cfcecol1", "https://tec.openplanner.team/stops/Cfcecol2"], ["https://tec.openplanner.team/stops/Ljhcarr1", "https://tec.openplanner.team/stops/Ljhmany2"], ["https://tec.openplanner.team/stops/LRmsmvo1", "https://tec.openplanner.team/stops/LRmsmvo2"], ["https://tec.openplanner.team/stops/X801cfa", "https://tec.openplanner.team/stops/X801cfb"], ["https://tec.openplanner.team/stops/Becepri2", "https://tec.openplanner.team/stops/H2ec103a"], ["https://tec.openplanner.team/stops/Bbaucba1", "https://tec.openplanner.team/stops/Bbaulos1"], ["https://tec.openplanner.team/stops/H5el102a", "https://tec.openplanner.team/stops/H5el110a"], ["https://tec.openplanner.team/stops/X307aaa", "https://tec.openplanner.team/stops/X314aaa"], ["https://tec.openplanner.team/stops/Cmlbruy2", "https://tec.openplanner.team/stops/Cmlsana1"], ["https://tec.openplanner.team/stops/H4hg159b", "https://tec.openplanner.team/stops/H4mv189c"], ["https://tec.openplanner.team/stops/Bitrecu2", "https://tec.openplanner.team/stops/Bitrgnt1"], ["https://tec.openplanner.team/stops/X880aca", "https://tec.openplanner.team/stops/X880afb"], ["https://tec.openplanner.team/stops/H1go169a", "https://tec.openplanner.team/stops/H1go174a"], ["https://tec.openplanner.team/stops/N513apa", "https://tec.openplanner.team/stops/N513arb"], ["https://tec.openplanner.team/stops/N223aba", "https://tec.openplanner.team/stops/N223abb"], ["https://tec.openplanner.team/stops/X624aja", "https://tec.openplanner.team/stops/X624ajb"], ["https://tec.openplanner.team/stops/X982akb", "https://tec.openplanner.team/stops/X982bzb"], ["https://tec.openplanner.team/stops/N221ada", "https://tec.openplanner.team/stops/X210azb"], ["https://tec.openplanner.team/stops/H1ms293a", "https://tec.openplanner.team/stops/H1ms296d"], ["https://tec.openplanner.team/stops/Lmobras2", "https://tec.openplanner.team/stops/Lmochpl1"], ["https://tec.openplanner.team/stops/N123aaa", "https://tec.openplanner.team/stops/N150aea"], ["https://tec.openplanner.team/stops/N542aac", "https://tec.openplanner.team/stops/N542aoa"], ["https://tec.openplanner.team/stops/Bsences1", "https://tec.openplanner.team/stops/Bsences2"], ["https://tec.openplanner.team/stops/X876afa", "https://tec.openplanner.team/stops/X877aia"], ["https://tec.openplanner.team/stops/LPLmonu1", "https://tec.openplanner.team/stops/LPLstri1"], ["https://tec.openplanner.team/stops/Bbeaap51", "https://tec.openplanner.team/stops/Bbealbu4"], ["https://tec.openplanner.team/stops/H4ga160a", "https://tec.openplanner.team/stops/H4ha170b"], ["https://tec.openplanner.team/stops/LSZstoc1", "https://tec.openplanner.team/stops/LSZstoc2"], ["https://tec.openplanner.team/stops/X651aca", "https://tec.openplanner.team/stops/X651ada"], ["https://tec.openplanner.team/stops/LFOchab2", "https://tec.openplanner.team/stops/LVlledo2"], ["https://tec.openplanner.team/stops/N538ayb", "https://tec.openplanner.team/stops/N538bab"], ["https://tec.openplanner.team/stops/N511aja", "https://tec.openplanner.team/stops/N511asa"], ["https://tec.openplanner.team/stops/LMffoot1", "https://tec.openplanner.team/stops/LVHbrai2"], ["https://tec.openplanner.team/stops/H4ka185b", "https://tec.openplanner.team/stops/H4mt218a"], ["https://tec.openplanner.team/stops/LClange2", "https://tec.openplanner.team/stops/LLMjacq1"], ["https://tec.openplanner.team/stops/Bsamlon1", "https://tec.openplanner.team/stops/Bsamlon2"], ["https://tec.openplanner.team/stops/Bmsgfon2", "https://tec.openplanner.team/stops/Bmsgstj1"], ["https://tec.openplanner.team/stops/Clbchlo2", "https://tec.openplanner.team/stops/Cthrwai1"], ["https://tec.openplanner.team/stops/H5gr135a", "https://tec.openplanner.team/stops/H5qu144b"], ["https://tec.openplanner.team/stops/X996aca", "https://tec.openplanner.team/stops/X996adb"], ["https://tec.openplanner.team/stops/N502acb", "https://tec.openplanner.team/stops/N510abb"], ["https://tec.openplanner.team/stops/LAwec--1", "https://tec.openplanner.team/stops/LAwec--2"], ["https://tec.openplanner.team/stops/X992adb", "https://tec.openplanner.team/stops/X992aia"], ["https://tec.openplanner.team/stops/Bwlhppg2", "https://tec.openplanner.team/stops/Bwlhppg3"], ["https://tec.openplanner.team/stops/N217aab", "https://tec.openplanner.team/stops/N217aba"], ["https://tec.openplanner.team/stops/LSevitu2", "https://tec.openplanner.team/stops/LSevitu3"], ["https://tec.openplanner.team/stops/H1bo102a", "https://tec.openplanner.team/stops/H1te178a"], ["https://tec.openplanner.team/stops/H1je217b", "https://tec.openplanner.team/stops/H1je219b"], ["https://tec.openplanner.team/stops/N540afa", "https://tec.openplanner.team/stops/N540afb"], ["https://tec.openplanner.team/stops/LOMcabi2", "https://tec.openplanner.team/stops/LOMdTEC1"], ["https://tec.openplanner.team/stops/Cfmcent1", "https://tec.openplanner.team/stops/Cfmwaut1"], ["https://tec.openplanner.team/stops/Bchgbel1", "https://tec.openplanner.team/stops/Blontry2"], ["https://tec.openplanner.team/stops/LHTcarr1", "https://tec.openplanner.team/stops/LVIvert1"], ["https://tec.openplanner.team/stops/N549aeb", "https://tec.openplanner.team/stops/N577aab"], ["https://tec.openplanner.team/stops/LHAleru1", "https://tec.openplanner.team/stops/LHAstal1"], ["https://tec.openplanner.team/stops/Cmehame2", "https://tec.openplanner.team/stops/Cmewaya1"], ["https://tec.openplanner.team/stops/X738ada", "https://tec.openplanner.team/stops/X738aeb"], ["https://tec.openplanner.team/stops/Cflchap1", "https://tec.openplanner.team/stops/Cflmarc2"], ["https://tec.openplanner.team/stops/X811ama", "https://tec.openplanner.team/stops/X811ana"], ["https://tec.openplanner.team/stops/Lmopave1", "https://tec.openplanner.team/stops/Lmopave2"], ["https://tec.openplanner.team/stops/LHUecte1", "https://tec.openplanner.team/stops/LHUecte2"], ["https://tec.openplanner.team/stops/N208aab", "https://tec.openplanner.team/stops/N559acb"], ["https://tec.openplanner.team/stops/H1si157a", "https://tec.openplanner.team/stops/H1vt195a"], ["https://tec.openplanner.team/stops/H1ma237a", "https://tec.openplanner.team/stops/H1ob331b"], ["https://tec.openplanner.team/stops/LAUabat2", "https://tec.openplanner.team/stops/LAUneuv3"], ["https://tec.openplanner.team/stops/Cgzabau1", "https://tec.openplanner.team/stops/Cgzchen2"], ["https://tec.openplanner.team/stops/H2ch107b", "https://tec.openplanner.team/stops/H2lh130a"], ["https://tec.openplanner.team/stops/Lvccime2", "https://tec.openplanner.team/stops/Lvcpost1"], ["https://tec.openplanner.team/stops/N506beb", "https://tec.openplanner.team/stops/N506bib"], ["https://tec.openplanner.team/stops/LBdcime2", "https://tec.openplanner.team/stops/LLrfagn2"], ["https://tec.openplanner.team/stops/Bquebth3", "https://tec.openplanner.team/stops/Bquebuc1"], ["https://tec.openplanner.team/stops/H5bs102b", "https://tec.openplanner.team/stops/H5pe145b"], ["https://tec.openplanner.team/stops/Csa4mai2", "https://tec.openplanner.team/stops/Csasncb2"], ["https://tec.openplanner.team/stops/H1do114a", "https://tec.openplanner.team/stops/H1do117a"], ["https://tec.openplanner.team/stops/H2bh121b", "https://tec.openplanner.team/stops/H2fa108a"], ["https://tec.openplanner.team/stops/Bgemcro2", "https://tec.openplanner.team/stops/N522aeb"], ["https://tec.openplanner.team/stops/LAUmerc1", "https://tec.openplanner.team/stops/LRmmabr1"], ["https://tec.openplanner.team/stops/Lrc594-1", "https://tec.openplanner.team/stops/Lvopaqu1"], ["https://tec.openplanner.team/stops/N103abb", "https://tec.openplanner.team/stops/N106afa"], ["https://tec.openplanner.team/stops/Lemlami1", "https://tec.openplanner.team/stops/Lemlami2"], ["https://tec.openplanner.team/stops/X917aja", "https://tec.openplanner.team/stops/X917aka"], ["https://tec.openplanner.team/stops/Lroeg--2", "https://tec.openplanner.team/stops/Lroeg--4"], ["https://tec.openplanner.team/stops/Lgrbonn1", "https://tec.openplanner.team/stops/Lgrbonn3"], ["https://tec.openplanner.team/stops/H4og210a", "https://tec.openplanner.team/stops/H4og211b"], ["https://tec.openplanner.team/stops/LlgPRVo1", "https://tec.openplanner.team/stops/Lrcstad1"], ["https://tec.openplanner.team/stops/H5bs102c", "https://tec.openplanner.team/stops/H5pe145b"], ["https://tec.openplanner.team/stops/X999aeb", "https://tec.openplanner.team/stops/X999aoa"], ["https://tec.openplanner.team/stops/X925ana", "https://tec.openplanner.team/stops/X925ata"], ["https://tec.openplanner.team/stops/X359aab", "https://tec.openplanner.team/stops/X361aaa"], ["https://tec.openplanner.team/stops/H1mv242a", "https://tec.openplanner.team/stops/H1mv242b"], ["https://tec.openplanner.team/stops/LESathe1", "https://tec.openplanner.team/stops/LESecco1"], ["https://tec.openplanner.team/stops/Bbstchv2", "https://tec.openplanner.team/stops/Btancre1"], ["https://tec.openplanner.team/stops/H1wa132b", "https://tec.openplanner.team/stops/H1wa160b"], ["https://tec.openplanner.team/stops/LTNegli2", "https://tec.openplanner.team/stops/LTNmont1"], ["https://tec.openplanner.team/stops/X948alb", "https://tec.openplanner.team/stops/X948baa"], ["https://tec.openplanner.team/stops/LRchaie1", "https://tec.openplanner.team/stops/LRcsilo1"], ["https://tec.openplanner.team/stops/X731afa", "https://tec.openplanner.team/stops/X731aka"], ["https://tec.openplanner.team/stops/Cfrchro1", "https://tec.openplanner.team/stops/Cfrchro2"], ["https://tec.openplanner.team/stops/Cctkais1", "https://tec.openplanner.team/stops/Cctkais2"], ["https://tec.openplanner.team/stops/X750agb", "https://tec.openplanner.team/stops/X750bfa"], ["https://tec.openplanner.team/stops/X770aca", "https://tec.openplanner.team/stops/X770acb"], ["https://tec.openplanner.team/stops/X654agb", "https://tec.openplanner.team/stops/X654ahb"], ["https://tec.openplanner.team/stops/Lmochpl2", "https://tec.openplanner.team/stops/Lmodeni1"], ["https://tec.openplanner.team/stops/H1je221a", "https://tec.openplanner.team/stops/H1je221b"], ["https://tec.openplanner.team/stops/LNIdoma2", "https://tec.openplanner.team/stops/LSZjona2"], ["https://tec.openplanner.team/stops/LPutins2", "https://tec.openplanner.team/stops/LrDsage1"], ["https://tec.openplanner.team/stops/X619aea", "https://tec.openplanner.team/stops/X619afa"], ["https://tec.openplanner.team/stops/H1bb119b", "https://tec.openplanner.team/stops/H1bb120b"], ["https://tec.openplanner.team/stops/X663atb", "https://tec.openplanner.team/stops/X663ava"], ["https://tec.openplanner.team/stops/X939afb", "https://tec.openplanner.team/stops/X939aga"], ["https://tec.openplanner.team/stops/Ccheden2", "https://tec.openplanner.team/stops/Cchture1"], ["https://tec.openplanner.team/stops/LATdony1", "https://tec.openplanner.team/stops/LWNwavr3"], ["https://tec.openplanner.team/stops/NL81aeb", "https://tec.openplanner.team/stops/NL81afb"], ["https://tec.openplanner.team/stops/Cjupuis2", "https://tec.openplanner.team/stops/Clooues4"], ["https://tec.openplanner.team/stops/N310acb", "https://tec.openplanner.team/stops/N313aaa"], ["https://tec.openplanner.team/stops/H1gh168a", "https://tec.openplanner.team/stops/H1gh171a"], ["https://tec.openplanner.team/stops/LPRcasi1", "https://tec.openplanner.team/stops/LTRlonh2"], ["https://tec.openplanner.team/stops/Bquegob4", "https://tec.openplanner.team/stops/Brebmtg2"], ["https://tec.openplanner.team/stops/LLxconj1", "https://tec.openplanner.team/stops/LLxmonu2"], ["https://tec.openplanner.team/stops/Lstchu-1", "https://tec.openplanner.team/stops/Lsteduc1"], ["https://tec.openplanner.team/stops/N231aha", "https://tec.openplanner.team/stops/N291aab"], ["https://tec.openplanner.team/stops/N539aya", "https://tec.openplanner.team/stops/N539baa"], ["https://tec.openplanner.team/stops/X604afc", "https://tec.openplanner.team/stops/X633akb"], ["https://tec.openplanner.team/stops/Cmmptno1", "https://tec.openplanner.team/stops/Cmmramb2"], ["https://tec.openplanner.team/stops/N584avb", "https://tec.openplanner.team/stops/N584bnb"], ["https://tec.openplanner.team/stops/N501heb", "https://tec.openplanner.team/stops/N501mqa"], ["https://tec.openplanner.team/stops/LVSslin3", "https://tec.openplanner.team/stops/LVSslin4"], ["https://tec.openplanner.team/stops/Bgnvoha1", "https://tec.openplanner.team/stops/Bgnvoha2"], ["https://tec.openplanner.team/stops/X750alb", "https://tec.openplanner.team/stops/X750ama"], ["https://tec.openplanner.team/stops/LAMec--2", "https://tec.openplanner.team/stops/LAMrich2"], ["https://tec.openplanner.team/stops/H1bb121a", "https://tec.openplanner.team/stops/H1bb121b"], ["https://tec.openplanner.team/stops/N241aaa", "https://tec.openplanner.team/stops/N241aga"], ["https://tec.openplanner.team/stops/Cramadi1", "https://tec.openplanner.team/stops/Cramadi2"], ["https://tec.openplanner.team/stops/X661ara", "https://tec.openplanner.team/stops/X661arb"], ["https://tec.openplanner.team/stops/Lmlguis1", "https://tec.openplanner.team/stops/Lpomart1"], ["https://tec.openplanner.team/stops/Bwatmlo2", "https://tec.openplanner.team/stops/Bwatpcs1"], ["https://tec.openplanner.team/stops/Bbwacol2", "https://tec.openplanner.team/stops/Bwavdel2"], ["https://tec.openplanner.team/stops/LTHbelv1", "https://tec.openplanner.team/stops/LTHroch2"], ["https://tec.openplanner.team/stops/LJAbois1", "https://tec.openplanner.team/stops/Lmnjeha2"], ["https://tec.openplanner.team/stops/N542aoa", "https://tec.openplanner.team/stops/N542aqa"], ["https://tec.openplanner.team/stops/X790ama", "https://tec.openplanner.team/stops/X793aha"], ["https://tec.openplanner.team/stops/N543bib", "https://tec.openplanner.team/stops/N543bta"], ["https://tec.openplanner.team/stops/Cfrcham1", "https://tec.openplanner.team/stops/Cfrcham2"], ["https://tec.openplanner.team/stops/X779aab", "https://tec.openplanner.team/stops/X779aba"], ["https://tec.openplanner.team/stops/Bbstasa1", "https://tec.openplanner.team/stops/Bbstasa2"], ["https://tec.openplanner.team/stops/H2sv213a", "https://tec.openplanner.team/stops/H2sv220b"], ["https://tec.openplanner.team/stops/LWHwaas1", "https://tec.openplanner.team/stops/LWHwaas3"], ["https://tec.openplanner.team/stops/LAMcoll1", "https://tec.openplanner.team/stops/LAMcoll2"], ["https://tec.openplanner.team/stops/LWAfabr1", "https://tec.openplanner.team/stops/LWAgare*"], ["https://tec.openplanner.team/stops/X758adb", "https://tec.openplanner.team/stops/X758amb"], ["https://tec.openplanner.team/stops/X730ada", "https://tec.openplanner.team/stops/X730aeb"], ["https://tec.openplanner.team/stops/Bbststa1", "https://tec.openplanner.team/stops/Blpgeco2"], ["https://tec.openplanner.team/stops/N315aaa", "https://tec.openplanner.team/stops/X361acb"], ["https://tec.openplanner.team/stops/LSzsurl1", "https://tec.openplanner.team/stops/LSzsurl2"], ["https://tec.openplanner.team/stops/Bbgever2", "https://tec.openplanner.team/stops/Bwavrij2"], ["https://tec.openplanner.team/stops/N501fbb", "https://tec.openplanner.team/stops/N501lyb"], ["https://tec.openplanner.team/stops/Bquebth2", "https://tec.openplanner.team/stops/Bquebuc1"], ["https://tec.openplanner.team/stops/X725aoa", "https://tec.openplanner.team/stops/X725bca"], ["https://tec.openplanner.team/stops/Bhen5ma1", "https://tec.openplanner.team/stops/Bhenasc2"], ["https://tec.openplanner.team/stops/LHYec--1", "https://tec.openplanner.team/stops/LHYlinc1"], ["https://tec.openplanner.team/stops/X398ada", "https://tec.openplanner.team/stops/X398aga"], ["https://tec.openplanner.team/stops/Barcast2", "https://tec.openplanner.team/stops/Bgzdcen1"], ["https://tec.openplanner.team/stops/X547ana", "https://tec.openplanner.team/stops/X547anb"], ["https://tec.openplanner.team/stops/LSBdelc2", "https://tec.openplanner.team/stops/LSGmale2"], ["https://tec.openplanner.team/stops/H4au144a", "https://tec.openplanner.team/stops/H4mb203a"], ["https://tec.openplanner.team/stops/X638afa", "https://tec.openplanner.team/stops/X638aga"], ["https://tec.openplanner.team/stops/N513awb", "https://tec.openplanner.team/stops/N521ada"], ["https://tec.openplanner.team/stops/Lsecris1", "https://tec.openplanner.team/stops/Lsefive1"], ["https://tec.openplanner.team/stops/Lfljupi1", "https://tec.openplanner.team/stops/Lrelier1"], ["https://tec.openplanner.team/stops/N101ala", "https://tec.openplanner.team/stops/N151aaa"], ["https://tec.openplanner.team/stops/X991aja", "https://tec.openplanner.team/stops/X991ajb"], ["https://tec.openplanner.team/stops/LToluik1", "https://tec.openplanner.team/stops/LTowijk2"], ["https://tec.openplanner.team/stops/Caibino1", "https://tec.openplanner.team/stops/N543cja"], ["https://tec.openplanner.team/stops/X750bmb", "https://tec.openplanner.team/stops/X784aaa"], ["https://tec.openplanner.team/stops/N101aka", "https://tec.openplanner.team/stops/N101aua"], ["https://tec.openplanner.team/stops/LGHplai2", "https://tec.openplanner.team/stops/X542aeb"], ["https://tec.openplanner.team/stops/H4os217a", "https://tec.openplanner.team/stops/H4os217b"], ["https://tec.openplanner.team/stops/Ccobinc1", "https://tec.openplanner.team/stops/Csoplac1"], ["https://tec.openplanner.team/stops/LVBvaux1", "https://tec.openplanner.team/stops/LWDchpl2"], ["https://tec.openplanner.team/stops/H4hn115b", "https://tec.openplanner.team/stops/H4lp125a"], ["https://tec.openplanner.team/stops/X663ama", "https://tec.openplanner.team/stops/X663aob"], ["https://tec.openplanner.team/stops/X664anb", "https://tec.openplanner.team/stops/X664asa"], ["https://tec.openplanner.team/stops/N501bfb", "https://tec.openplanner.team/stops/N501nbb"], ["https://tec.openplanner.team/stops/LGorysa1", "https://tec.openplanner.team/stops/LNEbois2"], ["https://tec.openplanner.team/stops/LHuetat2", "https://tec.openplanner.team/stops/LHurobi2"], ["https://tec.openplanner.team/stops/X811aka", "https://tec.openplanner.team/stops/X811alb"], ["https://tec.openplanner.team/stops/LOTferm1", "https://tec.openplanner.team/stops/LXhhaka1"], ["https://tec.openplanner.team/stops/N311aca", "https://tec.openplanner.team/stops/N360aab"], ["https://tec.openplanner.team/stops/H2mg136a", "https://tec.openplanner.team/stops/H2mg136b"], ["https://tec.openplanner.team/stops/N141apb", "https://tec.openplanner.team/stops/N426aaa"], ["https://tec.openplanner.team/stops/LTaabba2", "https://tec.openplanner.team/stops/LTaouch2"], ["https://tec.openplanner.team/stops/LBdcarr1", "https://tec.openplanner.team/stops/LBdcime1"], ["https://tec.openplanner.team/stops/LMEwerg1", "https://tec.openplanner.team/stops/LMEwerg2"], ["https://tec.openplanner.team/stops/Cjxetri1", "https://tec.openplanner.team/stops/Cjxvalh2"], ["https://tec.openplanner.team/stops/H1sp353b", "https://tec.openplanner.team/stops/H1ss351a"], ["https://tec.openplanner.team/stops/LSGbail2", "https://tec.openplanner.team/stops/LSGec--1"], ["https://tec.openplanner.team/stops/N531ajb", "https://tec.openplanner.team/stops/N534bxb"], ["https://tec.openplanner.team/stops/N501eta", "https://tec.openplanner.team/stops/N501kma"], ["https://tec.openplanner.team/stops/LFyanto1", "https://tec.openplanner.team/stops/LFypfei2"], ["https://tec.openplanner.team/stops/N141agb", "https://tec.openplanner.team/stops/N426aab"], ["https://tec.openplanner.team/stops/X394abb", "https://tec.openplanner.team/stops/X394aca"], ["https://tec.openplanner.team/stops/N501fjb", "https://tec.openplanner.team/stops/N501meb"], ["https://tec.openplanner.team/stops/LaAelis1", "https://tec.openplanner.team/stops/LaAelis2"], ["https://tec.openplanner.team/stops/H5bl117a", "https://tec.openplanner.team/stops/H5bl118b"], ["https://tec.openplanner.team/stops/X601cqa", "https://tec.openplanner.team/stops/X601cxa"], ["https://tec.openplanner.team/stops/N501hob", "https://tec.openplanner.team/stops/N501iqb"], ["https://tec.openplanner.team/stops/Bboueta2", "https://tec.openplanner.team/stops/Btancnd2"], ["https://tec.openplanner.team/stops/X789ada", "https://tec.openplanner.team/stops/X789ajb"], ["https://tec.openplanner.team/stops/H4ce105a", "https://tec.openplanner.team/stops/H4ce106b"], ["https://tec.openplanner.team/stops/Lveabat1", "https://tec.openplanner.team/stops/Lvecote2"], ["https://tec.openplanner.team/stops/H4be145b", "https://tec.openplanner.team/stops/H5bl122a"], ["https://tec.openplanner.team/stops/Lmoboeu1", "https://tec.openplanner.team/stops/Lmoknae4"], ["https://tec.openplanner.team/stops/H4ty314c", "https://tec.openplanner.team/stops/H4ty314d"], ["https://tec.openplanner.team/stops/Cfcrdpr1", "https://tec.openplanner.team/stops/Cfcrdpr2"], ["https://tec.openplanner.team/stops/H4mt215a", "https://tec.openplanner.team/stops/H4mt222b"], ["https://tec.openplanner.team/stops/N531ana", "https://tec.openplanner.team/stops/N576afb"], ["https://tec.openplanner.team/stops/LrAiter2", "https://tec.openplanner.team/stops/LrAplat2"], ["https://tec.openplanner.team/stops/LHumoul1", "https://tec.openplanner.team/stops/LHumoul2"], ["https://tec.openplanner.team/stops/Crg3arb1", "https://tec.openplanner.team/stops/Cthstre1"], ["https://tec.openplanner.team/stops/Cthha502", "https://tec.openplanner.team/stops/Cthrpoi2"], ["https://tec.openplanner.team/stops/LVIhall1", "https://tec.openplanner.team/stops/LVIlore1"], ["https://tec.openplanner.team/stops/N560adb", "https://tec.openplanner.team/stops/N562aza"], ["https://tec.openplanner.team/stops/H1ba110b", "https://tec.openplanner.team/stops/H1gh371a"], ["https://tec.openplanner.team/stops/X912afa", "https://tec.openplanner.team/stops/X912aia"], ["https://tec.openplanner.team/stops/N544aba", "https://tec.openplanner.team/stops/N550aka"], ["https://tec.openplanner.team/stops/Cchriga1", "https://tec.openplanner.team/stops/Cchriga2"], ["https://tec.openplanner.team/stops/H4hu117a", "https://tec.openplanner.team/stops/H4hu119b"], ["https://tec.openplanner.team/stops/X723agb", "https://tec.openplanner.team/stops/X723ala"], ["https://tec.openplanner.team/stops/H4ka187a", "https://tec.openplanner.team/stops/H4ty342b"], ["https://tec.openplanner.team/stops/X733abb", "https://tec.openplanner.team/stops/X734aob"], ["https://tec.openplanner.team/stops/LAuchau1", "https://tec.openplanner.team/stops/LAugara1"], ["https://tec.openplanner.team/stops/X765aca", "https://tec.openplanner.team/stops/X765ada"], ["https://tec.openplanner.team/stops/H1ms313a", "https://tec.openplanner.team/stops/H1ob361b"], ["https://tec.openplanner.team/stops/N211ara", "https://tec.openplanner.team/stops/N211bcb"], ["https://tec.openplanner.team/stops/N147abb", "https://tec.openplanner.team/stops/N147afb"], ["https://tec.openplanner.team/stops/LBMecol2", "https://tec.openplanner.team/stops/X982bmb"], ["https://tec.openplanner.team/stops/X898aja", "https://tec.openplanner.team/stops/X898anb"], ["https://tec.openplanner.team/stops/X908aja", "https://tec.openplanner.team/stops/X908aka"], ["https://tec.openplanner.team/stops/Bneeegl1", "https://tec.openplanner.team/stops/Bneesan2"], ["https://tec.openplanner.team/stops/X660abb", "https://tec.openplanner.team/stops/X660aca"], ["https://tec.openplanner.team/stops/LFNfo161", "https://tec.openplanner.team/stops/LFNlato1"], ["https://tec.openplanner.team/stops/N211aga", "https://tec.openplanner.team/stops/N212acb"], ["https://tec.openplanner.team/stops/Bwatpct1", "https://tec.openplanner.team/stops/Bwatpct2"], ["https://tec.openplanner.team/stops/LOucarr2", "https://tec.openplanner.team/stops/LOuplac3"], ["https://tec.openplanner.team/stops/LSPclai1", "https://tec.openplanner.team/stops/LSPgare*"], ["https://tec.openplanner.team/stops/LTEkerk2", "https://tec.openplanner.team/stops/LTEzinn2"], ["https://tec.openplanner.team/stops/N106aba", "https://tec.openplanner.team/stops/N106arb"], ["https://tec.openplanner.team/stops/N525aib", "https://tec.openplanner.team/stops/N525aza"], ["https://tec.openplanner.team/stops/H4ty282a", "https://tec.openplanner.team/stops/H4ty332a"], ["https://tec.openplanner.team/stops/LVncarr2", "https://tec.openplanner.team/stops/LVnrock2"], ["https://tec.openplanner.team/stops/N234afa", "https://tec.openplanner.team/stops/N234afb"], ["https://tec.openplanner.team/stops/Csefour1", "https://tec.openplanner.team/stops/N424aab"], ["https://tec.openplanner.team/stops/H1by109b", "https://tec.openplanner.team/stops/H1hq127a"], ["https://tec.openplanner.team/stops/LMHcant2", "https://tec.openplanner.team/stops/LMHec--1"], ["https://tec.openplanner.team/stops/Lhucime1", "https://tec.openplanner.team/stops/Lhurouh1"], ["https://tec.openplanner.team/stops/Bmrqpla1", "https://tec.openplanner.team/stops/H1mk117b"], ["https://tec.openplanner.team/stops/N230ada", "https://tec.openplanner.team/stops/N230aga"], ["https://tec.openplanner.team/stops/H2ma202b", "https://tec.openplanner.team/stops/H3bo103a"], ["https://tec.openplanner.team/stops/LWDplac2", "https://tec.openplanner.team/stops/LWDsieg2"], ["https://tec.openplanner.team/stops/H2ch104b", "https://tec.openplanner.team/stops/H2ch112a"], ["https://tec.openplanner.team/stops/H1eu107a", "https://tec.openplanner.team/stops/H1lb136b"], ["https://tec.openplanner.team/stops/X901abb", "https://tec.openplanner.team/stops/X901bra"], ["https://tec.openplanner.team/stops/LSSeg--2", "https://tec.openplanner.team/stops/LSSfont1"], ["https://tec.openplanner.team/stops/N310abb", "https://tec.openplanner.team/stops/N310aea"], ["https://tec.openplanner.team/stops/Bsenbmc2", "https://tec.openplanner.team/stops/Bsenpbi2"], ["https://tec.openplanner.team/stops/Cjudest2", "https://tec.openplanner.team/stops/Cloauln2"], ["https://tec.openplanner.team/stops/Lpeathe*", "https://tec.openplanner.team/stops/Lpejonc2"], ["https://tec.openplanner.team/stops/Cbmind1", "https://tec.openplanner.team/stops/Cbmind4"], ["https://tec.openplanner.team/stops/N120add", "https://tec.openplanner.team/stops/N301ajb"], ["https://tec.openplanner.team/stops/N387aaa", "https://tec.openplanner.team/stops/N387aab"], ["https://tec.openplanner.team/stops/Cmlgoff2", "https://tec.openplanner.team/stops/Cmlmatc1"], ["https://tec.openplanner.team/stops/N552aba", "https://tec.openplanner.team/stops/N552abb"], ["https://tec.openplanner.team/stops/H2mo131a", "https://tec.openplanner.team/stops/H2mo131b"], ["https://tec.openplanner.team/stops/H1sg142a", "https://tec.openplanner.team/stops/H1sg145a"], ["https://tec.openplanner.team/stops/Cgocnor4", "https://tec.openplanner.team/stops/Cjuaero2"], ["https://tec.openplanner.team/stops/LNAbass2", "https://tec.openplanner.team/stops/LTamag1"], ["https://tec.openplanner.team/stops/Cmlbruy1", "https://tec.openplanner.team/stops/Cmlsana1"], ["https://tec.openplanner.team/stops/H4te248a", "https://tec.openplanner.team/stops/H4te259a"], ["https://tec.openplanner.team/stops/Cjugohi2", "https://tec.openplanner.team/stops/Cjuquai2"], ["https://tec.openplanner.team/stops/H1ht131a", "https://tec.openplanner.team/stops/H1ht136a"], ["https://tec.openplanner.team/stops/H4tp146a", "https://tec.openplanner.team/stops/H4tu171b"], ["https://tec.openplanner.team/stops/X793aeb", "https://tec.openplanner.team/stops/X793agb"], ["https://tec.openplanner.team/stops/N501bpa", "https://tec.openplanner.team/stops/N999aab"], ["https://tec.openplanner.team/stops/Lagpass2", "https://tec.openplanner.team/stops/Lagstre1"], ["https://tec.openplanner.team/stops/Bptrcra2", "https://tec.openplanner.team/stops/Bptrlux1"], ["https://tec.openplanner.team/stops/Baeggar2", "https://tec.openplanner.team/stops/NR38aca"], ["https://tec.openplanner.team/stops/H4be103a", "https://tec.openplanner.team/stops/H4be104d"], ["https://tec.openplanner.team/stops/X809aba", "https://tec.openplanner.team/stops/X809abb"], ["https://tec.openplanner.team/stops/LmYkirc1", "https://tec.openplanner.team/stops/LmYkirc2"], ["https://tec.openplanner.team/stops/X780agb", "https://tec.openplanner.team/stops/X780aia"], ["https://tec.openplanner.team/stops/LBKmare1", "https://tec.openplanner.team/stops/LLnec--2"], ["https://tec.openplanner.team/stops/LLVfour1", "https://tec.openplanner.team/stops/LTB105-2"], ["https://tec.openplanner.team/stops/Crewaha1", "https://tec.openplanner.team/stops/Crewatb2"], ["https://tec.openplanner.team/stops/N150aea", "https://tec.openplanner.team/stops/N150aed"], ["https://tec.openplanner.team/stops/Buccdch1", "https://tec.openplanner.team/stops/Buccdst1"], ["https://tec.openplanner.team/stops/N533aea", "https://tec.openplanner.team/stops/N551afa"], ["https://tec.openplanner.team/stops/Lveleje1", "https://tec.openplanner.team/stops/Lveoctr3"], ["https://tec.openplanner.team/stops/LATlena2", "https://tec.openplanner.team/stops/LATpatu2"], ["https://tec.openplanner.team/stops/N225ahb", "https://tec.openplanner.team/stops/N226aba"], ["https://tec.openplanner.team/stops/Lbobuil1", "https://tec.openplanner.team/stops/Lbocorn2"], ["https://tec.openplanner.team/stops/Bwatpro1", "https://tec.openplanner.team/stops/Bwatsuc1"], ["https://tec.openplanner.team/stops/NL79aaa", "https://tec.openplanner.team/stops/NL79aab"], ["https://tec.openplanner.team/stops/N501dia", "https://tec.openplanner.team/stops/N501dib"], ["https://tec.openplanner.team/stops/H2pe161a", "https://tec.openplanner.team/stops/H2tr253a"], ["https://tec.openplanner.team/stops/LFPdeme1", "https://tec.openplanner.team/stops/LFProt-1"], ["https://tec.openplanner.team/stops/Bjancha2", "https://tec.openplanner.team/stops/Bjanegl3"], ["https://tec.openplanner.team/stops/H1eu102a", "https://tec.openplanner.team/stops/H1lb137a"], ["https://tec.openplanner.team/stops/X662agb", "https://tec.openplanner.team/stops/X662ara"], ["https://tec.openplanner.team/stops/H1by106b", "https://tec.openplanner.team/stops/H1mk116a"], ["https://tec.openplanner.team/stops/LHUbatt1", "https://tec.openplanner.team/stops/NL80aib"], ["https://tec.openplanner.team/stops/N501ega", "https://tec.openplanner.team/stops/N501kla"], ["https://tec.openplanner.team/stops/Cgzcour1", "https://tec.openplanner.team/stops/Cgzcour2"], ["https://tec.openplanner.team/stops/N512aga", "https://tec.openplanner.team/stops/N512agb"], ["https://tec.openplanner.team/stops/X804aib", "https://tec.openplanner.team/stops/X804aya"], ["https://tec.openplanner.team/stops/Lghchap1", "https://tec.openplanner.team/stops/Lghhoco2"], ["https://tec.openplanner.team/stops/Baegd741", "https://tec.openplanner.team/stops/Boffegl2"], ["https://tec.openplanner.team/stops/LLGec--*", "https://tec.openplanner.team/stops/LORvill2"], ["https://tec.openplanner.team/stops/Bbbksth2", "https://tec.openplanner.team/stops/Bhaawdr1"], ["https://tec.openplanner.team/stops/X695aea", "https://tec.openplanner.team/stops/X695afa"], ["https://tec.openplanner.team/stops/Crcfdom2", "https://tec.openplanner.team/stops/Crcrlf2"], ["https://tec.openplanner.team/stops/Bbstpon2", "https://tec.openplanner.team/stops/Bbststa1"], ["https://tec.openplanner.team/stops/LPAmc--2", "https://tec.openplanner.team/stops/LVSpota1"], ["https://tec.openplanner.team/stops/LCRfize1", "https://tec.openplanner.team/stops/LCRfize2"], ["https://tec.openplanner.team/stops/X781adb", "https://tec.openplanner.team/stops/X781aea"], ["https://tec.openplanner.team/stops/Bblabfo1", "https://tec.openplanner.team/stops/Bblavhu2"], ["https://tec.openplanner.team/stops/H2tr254a", "https://tec.openplanner.team/stops/H2tr254b"], ["https://tec.openplanner.team/stops/X542aaa", "https://tec.openplanner.team/stops/X750axa"], ["https://tec.openplanner.team/stops/N557aac", "https://tec.openplanner.team/stops/N557abb"], ["https://tec.openplanner.team/stops/X995afb", "https://tec.openplanner.team/stops/X995aga"], ["https://tec.openplanner.team/stops/X811anb", "https://tec.openplanner.team/stops/X811apb"], ["https://tec.openplanner.team/stops/Bpecdel1", "https://tec.openplanner.team/stops/Bpecdel2"], ["https://tec.openplanner.team/stops/X901agb", "https://tec.openplanner.team/stops/X902bba"], ["https://tec.openplanner.team/stops/Lghmont1", "https://tec.openplanner.team/stops/Lghmont2"], ["https://tec.openplanner.team/stops/LCtcref1", "https://tec.openplanner.team/stops/X780adb"], ["https://tec.openplanner.team/stops/LBegare1", "https://tec.openplanner.team/stops/LBevill1"], ["https://tec.openplanner.team/stops/Lstamph2", "https://tec.openplanner.team/stops/Lsttech2"], ["https://tec.openplanner.team/stops/LmDdenk2", "https://tec.openplanner.team/stops/LmDkirc2"], ["https://tec.openplanner.team/stops/H4ae100a", "https://tec.openplanner.team/stops/H4ae102b"], ["https://tec.openplanner.team/stops/LFsguil2", "https://tec.openplanner.team/stops/LFsphar1"], ["https://tec.openplanner.team/stops/X979aia", "https://tec.openplanner.team/stops/X979aib"], ["https://tec.openplanner.team/stops/Cstbasc1", "https://tec.openplanner.team/stops/Cstplac1"], ["https://tec.openplanner.team/stops/Blhumpo1", "https://tec.openplanner.team/stops/Blhumpo2"], ["https://tec.openplanner.team/stops/X802abb", "https://tec.openplanner.team/stops/X804aca"], ["https://tec.openplanner.team/stops/LOLcroi1", "https://tec.openplanner.team/stops/LOLvill1"], ["https://tec.openplanner.team/stops/LeUoe541", "https://tec.openplanner.team/stops/LHthest1"], ["https://tec.openplanner.team/stops/Cmmadma2", "https://tec.openplanner.team/stops/Cmmpast1"], ["https://tec.openplanner.team/stops/LBAcarr2", "https://tec.openplanner.team/stops/LBAfort2"], ["https://tec.openplanner.team/stops/LHUaron1", "https://tec.openplanner.team/stops/LHUgdpl1"], ["https://tec.openplanner.team/stops/X725aya", "https://tec.openplanner.team/stops/X725azb"], ["https://tec.openplanner.team/stops/N163aba", "https://tec.openplanner.team/stops/N163abb"], ["https://tec.openplanner.team/stops/Cauglac1", "https://tec.openplanner.team/stops/N543aza"], ["https://tec.openplanner.team/stops/X941aba", "https://tec.openplanner.team/stops/X941abb"], ["https://tec.openplanner.team/stops/N548aha", "https://tec.openplanner.team/stops/N569ada"], ["https://tec.openplanner.team/stops/X982blb", "https://tec.openplanner.team/stops/X982bld"], ["https://tec.openplanner.team/stops/Cmivert1", "https://tec.openplanner.team/stops/Cvtmaro1"], ["https://tec.openplanner.team/stops/Bwaak102", "https://tec.openplanner.team/stops/Bwaakap1"], ["https://tec.openplanner.team/stops/X653aaa", "https://tec.openplanner.team/stops/X653aab"], ["https://tec.openplanner.team/stops/LaMahof2", "https://tec.openplanner.team/stops/LaMpark2"], ["https://tec.openplanner.team/stops/Llgbass2", "https://tec.openplanner.team/stops/Llgfusc6"], ["https://tec.openplanner.team/stops/X351aba", "https://tec.openplanner.team/stops/X351aca"], ["https://tec.openplanner.team/stops/X601bla", "https://tec.openplanner.team/stops/X612acb"], ["https://tec.openplanner.team/stops/LCpegli2", "https://tec.openplanner.team/stops/LSPclai1"], ["https://tec.openplanner.team/stops/H4ro155a", "https://tec.openplanner.team/stops/H5pe127b"], ["https://tec.openplanner.team/stops/X801abc", "https://tec.openplanner.team/stops/X899abb"], ["https://tec.openplanner.team/stops/X769aea", "https://tec.openplanner.team/stops/X769aeb"], ["https://tec.openplanner.team/stops/LARauto3", "https://tec.openplanner.team/stops/LRIcent2"], ["https://tec.openplanner.team/stops/Croplom2", "https://tec.openplanner.team/stops/Croplom3"], ["https://tec.openplanner.team/stops/Bsrbbas1", "https://tec.openplanner.team/stops/Bsrbtil1"], ["https://tec.openplanner.team/stops/N508acb", "https://tec.openplanner.team/stops/N516aab"], ["https://tec.openplanner.team/stops/LTyh51-2", "https://tec.openplanner.team/stops/LTyhapp3"], ["https://tec.openplanner.team/stops/N501fxa", "https://tec.openplanner.team/stops/N501zba"], ["https://tec.openplanner.team/stops/H1to154a", "https://tec.openplanner.team/stops/H1to154b"], ["https://tec.openplanner.team/stops/Lvtlimi1", "https://tec.openplanner.team/stops/Lvtpata2"], ["https://tec.openplanner.team/stops/LAUabat1", "https://tec.openplanner.team/stops/LAUbour1"], ["https://tec.openplanner.team/stops/X804abb", "https://tec.openplanner.team/stops/X804cbb"], ["https://tec.openplanner.team/stops/X921afb", "https://tec.openplanner.team/stops/X921apa"], ["https://tec.openplanner.team/stops/N534ava", "https://tec.openplanner.team/stops/N534bbb"], ["https://tec.openplanner.team/stops/Bblamp5", "https://tec.openplanner.team/stops/Bblamsp4"], ["https://tec.openplanner.team/stops/LBjvill1", "https://tec.openplanner.team/stops/X575aib"], ["https://tec.openplanner.team/stops/H1br132a", "https://tec.openplanner.team/stops/H1br132b"], ["https://tec.openplanner.team/stops/LVLbovy2", "https://tec.openplanner.team/stops/LVLeg--2"], ["https://tec.openplanner.team/stops/LHNvill2", "https://tec.openplanner.team/stops/NL37aob"], ["https://tec.openplanner.team/stops/H1ms299a", "https://tec.openplanner.team/stops/H1ni322b"], ["https://tec.openplanner.team/stops/N506aba", "https://tec.openplanner.team/stops/N506bla"], ["https://tec.openplanner.team/stops/Bgntalt1", "https://tec.openplanner.team/stops/Bgntcoo1"], ["https://tec.openplanner.team/stops/X342abb", "https://tec.openplanner.team/stops/X354aca"], ["https://tec.openplanner.team/stops/LeLsied2", "https://tec.openplanner.team/stops/LeLzost2"], ["https://tec.openplanner.team/stops/Lgrtomb1", "https://tec.openplanner.team/stops/Lgrtomb2"], ["https://tec.openplanner.team/stops/Cwfcast2", "https://tec.openplanner.team/stops/N543bma"], ["https://tec.openplanner.team/stops/Ltihala2", "https://tec.openplanner.team/stops/Ltimarq2"], ["https://tec.openplanner.team/stops/LhOokat2", "https://tec.openplanner.team/stops/LhOzent1"], ["https://tec.openplanner.team/stops/X780aba", "https://tec.openplanner.team/stops/X780aeb"], ["https://tec.openplanner.team/stops/Csobrou1", "https://tec.openplanner.team/stops/Csostoc2"], ["https://tec.openplanner.team/stops/Bmarcha2", "https://tec.openplanner.team/stops/Bwagmco2"], ["https://tec.openplanner.team/stops/X612aab", "https://tec.openplanner.team/stops/X613aaa"], ["https://tec.openplanner.team/stops/X901aub", "https://tec.openplanner.team/stops/X901beb"], ["https://tec.openplanner.team/stops/Llgdarc1", "https://tec.openplanner.team/stops/Llghec-2"], ["https://tec.openplanner.team/stops/LStroch1", "https://tec.openplanner.team/stops/LStroch2"], ["https://tec.openplanner.team/stops/Bblasmo2", "https://tec.openplanner.team/stops/Bblatet1"], ["https://tec.openplanner.team/stops/Ljehotv1", "https://tec.openplanner.team/stops/Lsekubo4"], ["https://tec.openplanner.team/stops/H4tm140a", "https://tec.openplanner.team/stops/H4to139a"], ["https://tec.openplanner.team/stops/Llggeer3", "https://tec.openplanner.team/stops/Llgrass1"], ["https://tec.openplanner.team/stops/N580abb", "https://tec.openplanner.team/stops/N580adb"], ["https://tec.openplanner.team/stops/Bohnmes1", "https://tec.openplanner.team/stops/Bohnrph2"], ["https://tec.openplanner.team/stops/Bglarha1", "https://tec.openplanner.team/stops/Cglbras2"], ["https://tec.openplanner.team/stops/X714aea", "https://tec.openplanner.team/stops/X714aeb"], ["https://tec.openplanner.team/stops/X991afa", "https://tec.openplanner.team/stops/X991afb"], ["https://tec.openplanner.team/stops/Lhrlalo3", "https://tec.openplanner.team/stops/Lhrmare8"], ["https://tec.openplanner.team/stops/Cchbrou2", "https://tec.openplanner.team/stops/Cchmonu4"], ["https://tec.openplanner.team/stops/X801aua", "https://tec.openplanner.team/stops/X801ava"], ["https://tec.openplanner.team/stops/Lcefoxh2", "https://tec.openplanner.team/stops/Lcesart2"], ["https://tec.openplanner.team/stops/Csrcant1", "https://tec.openplanner.team/stops/NH01apa"], ["https://tec.openplanner.team/stops/Lsnferr1", "https://tec.openplanner.team/stops/Lsnmala4"], ["https://tec.openplanner.team/stops/X719aca", "https://tec.openplanner.team/stops/X719aeb"], ["https://tec.openplanner.team/stops/H1qv113a", "https://tec.openplanner.team/stops/H1qv114b"], ["https://tec.openplanner.team/stops/Llgchar1", "https://tec.openplanner.team/stops/Llgvero2"], ["https://tec.openplanner.team/stops/H4co146a", "https://tec.openplanner.team/stops/H4co146b"], ["https://tec.openplanner.team/stops/X820ada", "https://tec.openplanner.team/stops/X820adb"], ["https://tec.openplanner.team/stops/LBTfoot1", "https://tec.openplanner.team/stops/LBTwauc2"], ["https://tec.openplanner.team/stops/Cmmpjou2", "https://tec.openplanner.team/stops/Cmmpjou3"], ["https://tec.openplanner.team/stops/N577aeb", "https://tec.openplanner.team/stops/N577agb"], ["https://tec.openplanner.team/stops/X763aeb", "https://tec.openplanner.team/stops/X763afb"], ["https://tec.openplanner.team/stops/X615ala", "https://tec.openplanner.team/stops/X615apb"], ["https://tec.openplanner.team/stops/Lmieg--1", "https://tec.openplanner.team/stops/Lmieg--2"], ["https://tec.openplanner.team/stops/NH03afa", "https://tec.openplanner.team/stops/NH03aga"], ["https://tec.openplanner.team/stops/N352afb", "https://tec.openplanner.team/stops/N355ada"], ["https://tec.openplanner.team/stops/X979ada", "https://tec.openplanner.team/stops/X979aga"], ["https://tec.openplanner.team/stops/X902aub", "https://tec.openplanner.team/stops/X902ava"], ["https://tec.openplanner.team/stops/LTreg--1", "https://tec.openplanner.team/stops/LTrgibe1"], ["https://tec.openplanner.team/stops/LrDhund1", "https://tec.openplanner.team/stops/LrDhund2"], ["https://tec.openplanner.team/stops/N501gaa", "https://tec.openplanner.team/stops/N501iga"], ["https://tec.openplanner.team/stops/H1ho131a", "https://tec.openplanner.team/stops/H1sg147a"], ["https://tec.openplanner.team/stops/Bbsifmo1", "https://tec.openplanner.team/stops/Bhtipir2"], ["https://tec.openplanner.team/stops/H1bd101a", "https://tec.openplanner.team/stops/H1bd101b"], ["https://tec.openplanner.team/stops/X902bfb", "https://tec.openplanner.team/stops/X902bga"], ["https://tec.openplanner.team/stops/X982arb", "https://tec.openplanner.team/stops/X982asb"], ["https://tec.openplanner.team/stops/X773ajb", "https://tec.openplanner.team/stops/X954ahb"], ["https://tec.openplanner.team/stops/N308baa", "https://tec.openplanner.team/stops/N308bab"], ["https://tec.openplanner.team/stops/X770agb", "https://tec.openplanner.team/stops/X771ana"], ["https://tec.openplanner.team/stops/H2fa101a", "https://tec.openplanner.team/stops/H2fa103a"], ["https://tec.openplanner.team/stops/X982bob", "https://tec.openplanner.team/stops/X982brb"], ["https://tec.openplanner.team/stops/N103aia", "https://tec.openplanner.team/stops/N104ada"], ["https://tec.openplanner.team/stops/LaTcolo1", "https://tec.openplanner.team/stops/LaTcolo2"], ["https://tec.openplanner.team/stops/Btslpic5", "https://tec.openplanner.team/stops/Btslpic6"], ["https://tec.openplanner.team/stops/H4rs117a", "https://tec.openplanner.team/stops/H5rx112a"], ["https://tec.openplanner.team/stops/X804amb", "https://tec.openplanner.team/stops/X804byb"], ["https://tec.openplanner.team/stops/H1so132a", "https://tec.openplanner.team/stops/H1so141a"], ["https://tec.openplanner.team/stops/Lpebeco2", "https://tec.openplanner.team/stops/Lpeflec2"], ["https://tec.openplanner.team/stops/LdE179-2", "https://tec.openplanner.team/stops/LdEkreu1"], ["https://tec.openplanner.team/stops/Cfcsaut3", "https://tec.openplanner.team/stops/Cfcsaut4"], ["https://tec.openplanner.team/stops/LOUpres1", "https://tec.openplanner.team/stops/LOUvign2"], ["https://tec.openplanner.team/stops/H4bo116a", "https://tec.openplanner.team/stops/H4bo178a"], ["https://tec.openplanner.team/stops/LmRh%C3%B6fe2", "https://tec.openplanner.team/stops/LmRkape2"], ["https://tec.openplanner.team/stops/Bhoeboo1", "https://tec.openplanner.team/stops/Bovejei1"], ["https://tec.openplanner.team/stops/LeYdepo1", "https://tec.openplanner.team/stops/LeYfeld1"], ["https://tec.openplanner.team/stops/H1si156d", "https://tec.openplanner.team/stops/H1si163a"], ["https://tec.openplanner.team/stops/X926aea", "https://tec.openplanner.team/stops/X926aeb"], ["https://tec.openplanner.team/stops/Bwatgar3", "https://tec.openplanner.team/stops/Bwatgar4"], ["https://tec.openplanner.team/stops/X672aba", "https://tec.openplanner.team/stops/X672aob"], ["https://tec.openplanner.team/stops/N532ada", "https://tec.openplanner.team/stops/N533aqc"], ["https://tec.openplanner.team/stops/LLeeco-1", "https://tec.openplanner.team/stops/LLescie2"], ["https://tec.openplanner.team/stops/N167adc", "https://tec.openplanner.team/stops/N167aga"], ["https://tec.openplanner.team/stops/Chthttr2", "https://tec.openplanner.team/stops/Cthdeco2"], ["https://tec.openplanner.team/stops/Clodesc1", "https://tec.openplanner.team/stops/Clomakr2"], ["https://tec.openplanner.team/stops/X903ada", "https://tec.openplanner.team/stops/X903adb"], ["https://tec.openplanner.team/stops/LHe3com2", "https://tec.openplanner.team/stops/LHemoul1"], ["https://tec.openplanner.team/stops/X760aab", "https://tec.openplanner.team/stops/X760abb"], ["https://tec.openplanner.team/stops/LCocasc2", "https://tec.openplanner.team/stops/LRChote2"], ["https://tec.openplanner.team/stops/X901bma", "https://tec.openplanner.team/stops/X901bmb"], ["https://tec.openplanner.team/stops/H4fr385a", "https://tec.openplanner.team/stops/H4fr392a"], ["https://tec.openplanner.team/stops/H1qu103a", "https://tec.openplanner.team/stops/H1qu109a"], ["https://tec.openplanner.team/stops/X818amb", "https://tec.openplanner.team/stops/X818aub"], ["https://tec.openplanner.team/stops/N501chb", "https://tec.openplanner.team/stops/N501jla"], ["https://tec.openplanner.team/stops/X789aaa", "https://tec.openplanner.team/stops/X789aib"], ["https://tec.openplanner.team/stops/NC11arb", "https://tec.openplanner.team/stops/NC44ada"], ["https://tec.openplanner.team/stops/N531adb", "https://tec.openplanner.team/stops/N568abb"], ["https://tec.openplanner.team/stops/H1by100a", "https://tec.openplanner.team/stops/H1by101a"], ["https://tec.openplanner.team/stops/Cprcits2", "https://tec.openplanner.team/stops/Cprlpre1"], ["https://tec.openplanner.team/stops/LCRecmo1", "https://tec.openplanner.team/stops/LTyhapp2"], ["https://tec.openplanner.team/stops/LVIeg--1", "https://tec.openplanner.team/stops/LVIhv--2"], ["https://tec.openplanner.team/stops/LAwfans2", "https://tec.openplanner.team/stops/LXoroch2"], ["https://tec.openplanner.team/stops/H4hu116a", "https://tec.openplanner.team/stops/H4hu116b"], ["https://tec.openplanner.team/stops/LPRcha-*", "https://tec.openplanner.team/stops/LTRcite1"], ["https://tec.openplanner.team/stops/LHthest1", "https://tec.openplanner.team/stops/LMedoum1"], ["https://tec.openplanner.team/stops/X937aba", "https://tec.openplanner.team/stops/X952ama"], ["https://tec.openplanner.team/stops/LBkcarr4", "https://tec.openplanner.team/stops/LBkgrae1"], ["https://tec.openplanner.team/stops/Bsdampe1", "https://tec.openplanner.team/stops/Bsdampe2"], ["https://tec.openplanner.team/stops/LHEoutr1", "https://tec.openplanner.team/stops/LHEoutr2"], ["https://tec.openplanner.team/stops/LeUmalm2", "https://tec.openplanner.team/stops/LeUolen1"], ["https://tec.openplanner.team/stops/X747aab", "https://tec.openplanner.team/stops/X754azb"], ["https://tec.openplanner.team/stops/LHrlorc1", "https://tec.openplanner.team/stops/LHrprie1"], ["https://tec.openplanner.team/stops/X820aba", "https://tec.openplanner.team/stops/X820ada"], ["https://tec.openplanner.team/stops/N550aja", "https://tec.openplanner.team/stops/N550ajb"], ["https://tec.openplanner.team/stops/X651aeb", "https://tec.openplanner.team/stops/X651afb"], ["https://tec.openplanner.team/stops/LGmeg--1", "https://tec.openplanner.team/stops/LGmeg--2"], ["https://tec.openplanner.team/stops/Lprmana2", "https://tec.openplanner.team/stops/Lprmana3"], ["https://tec.openplanner.team/stops/X818ana", "https://tec.openplanner.team/stops/X820ama"], ["https://tec.openplanner.team/stops/N552aaa", "https://tec.openplanner.team/stops/N552adb"], ["https://tec.openplanner.team/stops/LSCc39-2", "https://tec.openplanner.team/stops/LVEtomb2"], ["https://tec.openplanner.team/stops/N355aba", "https://tec.openplanner.team/stops/N874agb"], ["https://tec.openplanner.team/stops/N509bda", "https://tec.openplanner.team/stops/N509bea"], ["https://tec.openplanner.team/stops/X595aea", "https://tec.openplanner.team/stops/X595afc"], ["https://tec.openplanner.team/stops/LCPconf2", "https://tec.openplanner.team/stops/LCPlacr2"], ["https://tec.openplanner.team/stops/X620aea", "https://tec.openplanner.team/stops/X620afa"], ["https://tec.openplanner.team/stops/LLOhest2", "https://tec.openplanner.team/stops/LVttarg1"], ["https://tec.openplanner.team/stops/Lgdegli1", "https://tec.openplanner.team/stops/Lgdegli2"], ["https://tec.openplanner.team/stops/Lrcstad1", "https://tec.openplanner.team/stops/Lrcstad2"], ["https://tec.openplanner.team/stops/Bovesog1", "https://tec.openplanner.team/stops/Bovevnd2"], ["https://tec.openplanner.team/stops/H4hx113a", "https://tec.openplanner.team/stops/H4hx122b"], ["https://tec.openplanner.team/stops/N245aaa", "https://tec.openplanner.team/stops/N245aab"], ["https://tec.openplanner.team/stops/Bhalgja2", "https://tec.openplanner.team/stops/Bhalh312"], ["https://tec.openplanner.team/stops/Cctmine1", "https://tec.openplanner.team/stops/Cctvill2"], ["https://tec.openplanner.team/stops/LBNburg2", "https://tec.openplanner.team/stops/LBNgarn2"], ["https://tec.openplanner.team/stops/LBahaut1", "https://tec.openplanner.team/stops/LBapeup1"], ["https://tec.openplanner.team/stops/Lanfran1", "https://tec.openplanner.team/stops/Lansarm1"], ["https://tec.openplanner.team/stops/N139aba", "https://tec.openplanner.team/stops/N139abb"], ["https://tec.openplanner.team/stops/X872ada", "https://tec.openplanner.team/stops/X872afb"], ["https://tec.openplanner.team/stops/LDmdegi1", "https://tec.openplanner.team/stops/LHocroi2"], ["https://tec.openplanner.team/stops/Bblasmo2", "https://tec.openplanner.team/stops/Bbsivi11"], ["https://tec.openplanner.team/stops/Bjaneco2", "https://tec.openplanner.team/stops/Bjanegl4"], ["https://tec.openplanner.team/stops/H1hr122a", "https://tec.openplanner.team/stops/H1hr122b"], ["https://tec.openplanner.team/stops/Clrcime2", "https://tec.openplanner.team/stops/CMleer1"], ["https://tec.openplanner.team/stops/X910aaa", "https://tec.openplanner.team/stops/X910aab"], ["https://tec.openplanner.team/stops/Bnivrsh1", "https://tec.openplanner.team/stops/Bnivrsh2"], ["https://tec.openplanner.team/stops/H4ml207a", "https://tec.openplanner.team/stops/H4ml209a"], ["https://tec.openplanner.team/stops/H1by100b", "https://tec.openplanner.team/stops/H1by100c"], ["https://tec.openplanner.team/stops/X626aaa", "https://tec.openplanner.team/stops/X626aka"], ["https://tec.openplanner.team/stops/Cmtduch1", "https://tec.openplanner.team/stops/Cmtfabi1"], ["https://tec.openplanner.team/stops/X758acb", "https://tec.openplanner.team/stops/X758ama"], ["https://tec.openplanner.team/stops/Bllnfeq1", "https://tec.openplanner.team/stops/Bllnpeq1"], ["https://tec.openplanner.team/stops/Cflgazo1", "https://tec.openplanner.team/stops/Cflsncb2"], ["https://tec.openplanner.team/stops/LSeaque2", "https://tec.openplanner.team/stops/LSeec--2"], ["https://tec.openplanner.team/stops/N501grc", "https://tec.openplanner.team/stops/N501mha"], ["https://tec.openplanner.team/stops/Ljeespe1", "https://tec.openplanner.team/stops/Lsetroq2"], ["https://tec.openplanner.team/stops/X359aka", "https://tec.openplanner.team/stops/X359alb"], ["https://tec.openplanner.team/stops/LSkmarq1", "https://tec.openplanner.team/stops/LSkyern1"], ["https://tec.openplanner.team/stops/H4we134b", "https://tec.openplanner.team/stops/H4we139b"], ["https://tec.openplanner.team/stops/X809abb", "https://tec.openplanner.team/stops/X809aca"], ["https://tec.openplanner.team/stops/Bezeksj1", "https://tec.openplanner.team/stops/Bezeksj2"], ["https://tec.openplanner.team/stops/H4ab102a", "https://tec.openplanner.team/stops/H4ab103a"], ["https://tec.openplanner.team/stops/N102aca", "https://tec.openplanner.team/stops/N152aac"], ["https://tec.openplanner.team/stops/Bbghsta3", "https://tec.openplanner.team/stops/Bbghsta4"], ["https://tec.openplanner.team/stops/N539alb", "https://tec.openplanner.team/stops/N539ana"], ["https://tec.openplanner.team/stops/Bbaucba1", "https://tec.openplanner.team/stops/Bnivpri2"], ["https://tec.openplanner.team/stops/X650aba", "https://tec.openplanner.team/stops/X650ajb"], ["https://tec.openplanner.team/stops/LMNentr2", "https://tec.openplanner.team/stops/LMNgend2"], ["https://tec.openplanner.team/stops/N505aga", "https://tec.openplanner.team/stops/N505agb"], ["https://tec.openplanner.team/stops/Bniv4co2", "https://tec.openplanner.team/stops/Bnivche2"], ["https://tec.openplanner.team/stops/LREairp1", "https://tec.openplanner.team/stops/LREchal2"], ["https://tec.openplanner.team/stops/N104aaa", "https://tec.openplanner.team/stops/N104aba"], ["https://tec.openplanner.team/stops/H5gr138b", "https://tec.openplanner.team/stops/H5st169a"], ["https://tec.openplanner.team/stops/H4cl112a", "https://tec.openplanner.team/stops/H4cl113a"], ["https://tec.openplanner.team/stops/X801ama", "https://tec.openplanner.team/stops/X899aib"], ["https://tec.openplanner.team/stops/X651aga", "https://tec.openplanner.team/stops/X659aya"], ["https://tec.openplanner.team/stops/X672afb", "https://tec.openplanner.team/stops/X672alb"], ["https://tec.openplanner.team/stops/X942afa", "https://tec.openplanner.team/stops/X943aeb"], ["https://tec.openplanner.team/stops/Cpccpas1", "https://tec.openplanner.team/stops/Cpcwaut1"], ["https://tec.openplanner.team/stops/LXHeg--1", "https://tec.openplanner.team/stops/LXHmart1"], ["https://tec.openplanner.team/stops/Lsepaqu1", "https://tec.openplanner.team/stops/Lsercha1"], ["https://tec.openplanner.team/stops/H1hg179b", "https://tec.openplanner.team/stops/H1hg181b"], ["https://tec.openplanner.team/stops/H2mo125a", "https://tec.openplanner.team/stops/H2mo125b"], ["https://tec.openplanner.team/stops/Clshafa1", "https://tec.openplanner.team/stops/H1ls130a"], ["https://tec.openplanner.team/stops/Cmmgadi2", "https://tec.openplanner.team/stops/Cmmlong2"], ["https://tec.openplanner.team/stops/X917ajb", "https://tec.openplanner.team/stops/X919anb"], ["https://tec.openplanner.team/stops/X398afa", "https://tec.openplanner.team/stops/X398aia"], ["https://tec.openplanner.team/stops/Ccychco1", "https://tec.openplanner.team/stops/Ccyga4"], ["https://tec.openplanner.team/stops/N514aga", "https://tec.openplanner.team/stops/N514agb"], ["https://tec.openplanner.team/stops/N352ada", "https://tec.openplanner.team/stops/N352adb"], ["https://tec.openplanner.team/stops/LhGkirc2", "https://tec.openplanner.team/stops/LhGlang1"], ["https://tec.openplanner.team/stops/Cmlthym1", "https://tec.openplanner.team/stops/Cmmbsit2"], ["https://tec.openplanner.team/stops/Cfcctru1", "https://tec.openplanner.team/stops/Cfcrerp1"], ["https://tec.openplanner.team/stops/LBBodet2", "https://tec.openplanner.team/stops/X222afa"], ["https://tec.openplanner.team/stops/X774acb", "https://tec.openplanner.team/stops/X774afa"], ["https://tec.openplanner.team/stops/H4ha171a", "https://tec.openplanner.team/stops/H4me213a"], ["https://tec.openplanner.team/stops/H2fa100a", "https://tec.openplanner.team/stops/H2fa112b"], ["https://tec.openplanner.team/stops/N551agc", "https://tec.openplanner.team/stops/N551ara"], ["https://tec.openplanner.team/stops/LSZarze3", "https://tec.openplanner.team/stops/LSZarze4"], ["https://tec.openplanner.team/stops/Bmarfjo2", "https://tec.openplanner.team/stops/Bmargve2"], ["https://tec.openplanner.team/stops/LsVprum4", "https://tec.openplanner.team/stops/LwLfuss1"], ["https://tec.openplanner.team/stops/Lsechan1", "https://tec.openplanner.team/stops/Lsefoot2"], ["https://tec.openplanner.team/stops/Bpielom1", "https://tec.openplanner.team/stops/Bpielom2"], ["https://tec.openplanner.team/stops/X614apb", "https://tec.openplanner.team/stops/X614aqa"], ["https://tec.openplanner.team/stops/Llgbavi1", "https://tec.openplanner.team/stops/Llgkurt1"], ["https://tec.openplanner.team/stops/H4ty311b", "https://tec.openplanner.team/stops/H4wc373b"], ["https://tec.openplanner.team/stops/H4bl106a", "https://tec.openplanner.team/stops/H4ga156a"], ["https://tec.openplanner.team/stops/LCpeg-*", "https://tec.openplanner.team/stops/LSPherd1"], ["https://tec.openplanner.team/stops/Lhrathe1", "https://tec.openplanner.team/stops/Lhrpepi2"], ["https://tec.openplanner.team/stops/Cci4bra1", "https://tec.openplanner.team/stops/Ccinali1"], ["https://tec.openplanner.team/stops/H2ha135c", "https://tec.openplanner.team/stops/H2hg153a"], ["https://tec.openplanner.team/stops/Btubhoq1", "https://tec.openplanner.team/stops/Btubhoq2"], ["https://tec.openplanner.team/stops/N565aba", "https://tec.openplanner.team/stops/N565abb"], ["https://tec.openplanner.team/stops/H1gh153b", "https://tec.openplanner.team/stops/H1je211a"], ["https://tec.openplanner.team/stops/Bndbgar1", "https://tec.openplanner.team/stops/Bndbgar2"], ["https://tec.openplanner.team/stops/LGMforg1", "https://tec.openplanner.team/stops/LGMforg2"], ["https://tec.openplanner.team/stops/LkOgren2", "https://tec.openplanner.team/stops/LkOzoll2"], ["https://tec.openplanner.team/stops/Bsmgegl2", "https://tec.openplanner.team/stops/Bsmgres1"], ["https://tec.openplanner.team/stops/H1ba105a", "https://tec.openplanner.team/stops/H1vt196a"], ["https://tec.openplanner.team/stops/Cnadrev2", "https://tec.openplanner.team/stops/Cnanoir1"], ["https://tec.openplanner.team/stops/X902abb", "https://tec.openplanner.team/stops/X902ata"], ["https://tec.openplanner.team/stops/X623aaa", "https://tec.openplanner.team/stops/X623aka"], ["https://tec.openplanner.team/stops/X757aha", "https://tec.openplanner.team/stops/X757ajb"], ["https://tec.openplanner.team/stops/X750aeb", "https://tec.openplanner.team/stops/X750bma"], ["https://tec.openplanner.team/stops/LLReg--2", "https://tec.openplanner.team/stops/LLStour2"], ["https://tec.openplanner.team/stops/X669agc", "https://tec.openplanner.team/stops/X669agd"], ["https://tec.openplanner.team/stops/LBmbara2", "https://tec.openplanner.team/stops/LJAbell2"], ["https://tec.openplanner.team/stops/LDpzol-2", "https://tec.openplanner.team/stops/LTEcamp2"], ["https://tec.openplanner.team/stops/X601aud", "https://tec.openplanner.team/stops/X601axb"], ["https://tec.openplanner.team/stops/X789aia", "https://tec.openplanner.team/stops/X789aib"], ["https://tec.openplanner.team/stops/X595ada", "https://tec.openplanner.team/stops/X595aea"], ["https://tec.openplanner.team/stops/X911aaa", "https://tec.openplanner.team/stops/X911awa"], ["https://tec.openplanner.team/stops/N501dhb", "https://tec.openplanner.team/stops/N501gcb"], ["https://tec.openplanner.team/stops/X602akb", "https://tec.openplanner.team/stops/X602alb"], ["https://tec.openplanner.team/stops/Bohnegl1", "https://tec.openplanner.team/stops/Bohngai1"], ["https://tec.openplanner.team/stops/X770aeb", "https://tec.openplanner.team/stops/X774ada"], ["https://tec.openplanner.team/stops/H1qu105a", "https://tec.openplanner.team/stops/H1qu110b"], ["https://tec.openplanner.team/stops/H1mc126a", "https://tec.openplanner.team/stops/H1mc128b"], ["https://tec.openplanner.team/stops/X661abb", "https://tec.openplanner.team/stops/X661axa"], ["https://tec.openplanner.team/stops/X725bbb", "https://tec.openplanner.team/stops/X725bdb"], ["https://tec.openplanner.team/stops/LFIcabi1", "https://tec.openplanner.team/stops/LMYmont2"], ["https://tec.openplanner.team/stops/H1ho141a", "https://tec.openplanner.team/stops/H1ho142b"], ["https://tec.openplanner.team/stops/LFPgeme2", "https://tec.openplanner.team/stops/LFPkerk2"], ["https://tec.openplanner.team/stops/LBPboir1", "https://tec.openplanner.team/stops/LRGmoul1"], ["https://tec.openplanner.team/stops/Lhrchar2", "https://tec.openplanner.team/stops/Lhrpaep2"], ["https://tec.openplanner.team/stops/N232aca", "https://tec.openplanner.team/stops/N232ada"], ["https://tec.openplanner.team/stops/H2jo161d", "https://tec.openplanner.team/stops/H2jo162a"], ["https://tec.openplanner.team/stops/X938ada", "https://tec.openplanner.team/stops/X938adb"], ["https://tec.openplanner.team/stops/H5bl143a", "https://tec.openplanner.team/stops/H5bl143b"], ["https://tec.openplanner.team/stops/Cfldand1", "https://tec.openplanner.team/stops/Cflsncb3"], ["https://tec.openplanner.team/stops/LBpbruy2", "https://tec.openplanner.team/stops/LBpcren1"], ["https://tec.openplanner.team/stops/Cwgmell3", "https://tec.openplanner.team/stops/Cwgmell4"], ["https://tec.openplanner.team/stops/X614aza", "https://tec.openplanner.team/stops/X614azb"], ["https://tec.openplanner.team/stops/Bdlmgla1", "https://tec.openplanner.team/stops/Bdlmgla2"], ["https://tec.openplanner.team/stops/Cfcecol2", "https://tec.openplanner.team/stops/Cfcrdpr1"], ["https://tec.openplanner.team/stops/Bbldass1", "https://tec.openplanner.team/stops/Bbldgar1"], ["https://tec.openplanner.team/stops/Bbiehpo1", "https://tec.openplanner.team/stops/Bbiehpo2"], ["https://tec.openplanner.team/stops/H1do119b", "https://tec.openplanner.team/stops/H1fy119a"], ["https://tec.openplanner.team/stops/N562bma", "https://tec.openplanner.team/stops/N562bob"], ["https://tec.openplanner.team/stops/N551aja", "https://tec.openplanner.team/stops/N551aka"], ["https://tec.openplanner.team/stops/LkEl1212", "https://tec.openplanner.team/stops/LMsvill1"], ["https://tec.openplanner.team/stops/LLrhest1", "https://tec.openplanner.team/stops/LLrquar2"], ["https://tec.openplanner.team/stops/Lmitroi1", "https://tec.openplanner.team/stops/Lvtbocl2"], ["https://tec.openplanner.team/stops/N549acb", "https://tec.openplanner.team/stops/N549aga"], ["https://tec.openplanner.team/stops/Lalhomb1", "https://tec.openplanner.team/stops/Lancoop1"], ["https://tec.openplanner.team/stops/Cmastch2", "https://tec.openplanner.team/stops/Cmastch4"], ["https://tec.openplanner.team/stops/Ctuplac2", "https://tec.openplanner.team/stops/NC28agb"], ["https://tec.openplanner.team/stops/Bwatfau1", "https://tec.openplanner.team/stops/Bwatlbs2"], ["https://tec.openplanner.team/stops/LCn4---1", "https://tec.openplanner.team/stops/LLUg82-2"], ["https://tec.openplanner.team/stops/H4ae102b", "https://tec.openplanner.team/stops/H5rx112a"], ["https://tec.openplanner.team/stops/Lghbonn1", "https://tec.openplanner.team/stops/Lghbonn2"], ["https://tec.openplanner.team/stops/H4bw100b", "https://tec.openplanner.team/stops/H4bw101b"], ["https://tec.openplanner.team/stops/X734aja", "https://tec.openplanner.team/stops/X953aaa"], ["https://tec.openplanner.team/stops/Lmncasi1", "https://tec.openplanner.team/stops/Lsmjalh1"], ["https://tec.openplanner.team/stops/LTRespe1", "https://tec.openplanner.team/stops/LTRoasi2"], ["https://tec.openplanner.team/stops/H1gy114a", "https://tec.openplanner.team/stops/H1gy114b"], ["https://tec.openplanner.team/stops/X659aga", "https://tec.openplanner.team/stops/X659agb"], ["https://tec.openplanner.team/stops/Louetan2", "https://tec.openplanner.team/stops/Lougoff2"], ["https://tec.openplanner.team/stops/X818aka", "https://tec.openplanner.team/stops/X818ala"], ["https://tec.openplanner.team/stops/X739aga", "https://tec.openplanner.team/stops/X739agb"], ["https://tec.openplanner.team/stops/Bglitro2", "https://tec.openplanner.team/stops/Bglitro3"], ["https://tec.openplanner.team/stops/LOVeg--1", "https://tec.openplanner.team/stops/LSogite1"], ["https://tec.openplanner.team/stops/N534aba", "https://tec.openplanner.team/stops/N534aga"], ["https://tec.openplanner.team/stops/Laggare1", "https://tec.openplanner.team/stops/Laggare2"], ["https://tec.openplanner.team/stops/H1cv101a", "https://tec.openplanner.team/stops/H1et100a"], ["https://tec.openplanner.team/stops/NC11ara", "https://tec.openplanner.team/stops/NC11arb"], ["https://tec.openplanner.team/stops/Bhaltre1", "https://tec.openplanner.team/stops/Bhaltre2"], ["https://tec.openplanner.team/stops/N308bca", "https://tec.openplanner.team/stops/N331adb"], ["https://tec.openplanner.team/stops/X733aea", "https://tec.openplanner.team/stops/X734apb"], ["https://tec.openplanner.team/stops/X750aga", "https://tec.openplanner.team/stops/X750alb"], ["https://tec.openplanner.team/stops/N254ada", "https://tec.openplanner.team/stops/N254adb"], ["https://tec.openplanner.team/stops/X788aca", "https://tec.openplanner.team/stops/X788ada"], ["https://tec.openplanner.team/stops/LPbover1", "https://tec.openplanner.team/stops/LPbpl--1"], ["https://tec.openplanner.team/stops/N115abb", "https://tec.openplanner.team/stops/N115afb"], ["https://tec.openplanner.team/stops/LRmhage7", "https://tec.openplanner.team/stops/LRmhage8"], ["https://tec.openplanner.team/stops/N270afa", "https://tec.openplanner.team/stops/N270aga"], ["https://tec.openplanner.team/stops/H2ma203b", "https://tec.openplanner.team/stops/H2ma209a"], ["https://tec.openplanner.team/stops/LFRbaro2", "https://tec.openplanner.team/stops/LFRhock4"], ["https://tec.openplanner.team/stops/H2mo117b", "https://tec.openplanner.team/stops/H2mo119a"], ["https://tec.openplanner.team/stops/H2hl110a", "https://tec.openplanner.team/stops/H2pe157a"], ["https://tec.openplanner.team/stops/H1gg116a", "https://tec.openplanner.team/stops/H1mb125a"], ["https://tec.openplanner.team/stops/Lkinyst2", "https://tec.openplanner.team/stops/Loureno2"], ["https://tec.openplanner.team/stops/X756agb", "https://tec.openplanner.team/stops/X756agd"], ["https://tec.openplanner.team/stops/X624adb", "https://tec.openplanner.team/stops/X624aga"], ["https://tec.openplanner.team/stops/Bottcbp2", "https://tec.openplanner.team/stops/Botteco2"], ["https://tec.openplanner.team/stops/LVBmonu1", "https://tec.openplanner.team/stops/LVBmonu3"], ["https://tec.openplanner.team/stops/H2lh132b", "https://tec.openplanner.team/stops/H2mo135a"], ["https://tec.openplanner.team/stops/LBTcarr1", "https://tec.openplanner.team/stops/LBTcarr2"], ["https://tec.openplanner.team/stops/Ctucamb1", "https://tec.openplanner.team/stops/Ctucamb2"], ["https://tec.openplanner.team/stops/N501aib", "https://tec.openplanner.team/stops/N501bqa"], ["https://tec.openplanner.team/stops/X637aaa", "https://tec.openplanner.team/stops/X637ara"], ["https://tec.openplanner.team/stops/N349aaa", "https://tec.openplanner.team/stops/N349aab"], ["https://tec.openplanner.team/stops/Cchheig1", "https://tec.openplanner.team/stops/Cchoues5"], ["https://tec.openplanner.team/stops/LAyfren1", "https://tec.openplanner.team/stops/LAyfren2"], ["https://tec.openplanner.team/stops/X657aeb", "https://tec.openplanner.team/stops/X658abb"], ["https://tec.openplanner.team/stops/NL77akb", "https://tec.openplanner.team/stops/NL78akb"], ["https://tec.openplanner.team/stops/X619aba", "https://tec.openplanner.team/stops/X619abc"], ["https://tec.openplanner.team/stops/N101apa", "https://tec.openplanner.team/stops/N101apb"], ["https://tec.openplanner.team/stops/H1mj127a", "https://tec.openplanner.team/stops/H1mj131a"], ["https://tec.openplanner.team/stops/N111aba", "https://tec.openplanner.team/stops/N111ada"], ["https://tec.openplanner.team/stops/H4lg102a", "https://tec.openplanner.team/stops/H4lg102b"], ["https://tec.openplanner.team/stops/N536aea", "https://tec.openplanner.team/stops/N580ada"], ["https://tec.openplanner.team/stops/LBSneuv1", "https://tec.openplanner.team/stops/LHStrez1"], ["https://tec.openplanner.team/stops/LsVgrun1", "https://tec.openplanner.team/stops/LsVsimo1"], ["https://tec.openplanner.team/stops/N301aga", "https://tec.openplanner.team/stops/N301ahb"], ["https://tec.openplanner.team/stops/X651afa", "https://tec.openplanner.team/stops/X658aaa"], ["https://tec.openplanner.team/stops/LCUjonc1", "https://tec.openplanner.team/stops/NL57ala"], ["https://tec.openplanner.team/stops/N501eba", "https://tec.openplanner.team/stops/N501ebz"], ["https://tec.openplanner.team/stops/H4ty299a", "https://tec.openplanner.team/stops/H4ty299c"], ["https://tec.openplanner.team/stops/H1ls105a", "https://tec.openplanner.team/stops/H1ls105b"], ["https://tec.openplanner.team/stops/LJEmalg1", "https://tec.openplanner.team/stops/LJEpaqu2"], ["https://tec.openplanner.team/stops/N551aob", "https://tec.openplanner.team/stops/N577aca"], ["https://tec.openplanner.team/stops/Bhevcur2", "https://tec.openplanner.team/stops/Bhvlbet2"], ["https://tec.openplanner.team/stops/H2sb223a", "https://tec.openplanner.team/stops/H2sb228c"], ["https://tec.openplanner.team/stops/LBgnach2", "https://tec.openplanner.team/stops/LGmeg--2"], ["https://tec.openplanner.team/stops/H4mt214a", "https://tec.openplanner.team/stops/H4mt214b"], ["https://tec.openplanner.team/stops/Bborppa1", "https://tec.openplanner.team/stops/Bitrpar1"], ["https://tec.openplanner.team/stops/LFlabba4", "https://tec.openplanner.team/stops/LFlpark*"], ["https://tec.openplanner.team/stops/N118adb", "https://tec.openplanner.team/stops/N118aea"], ["https://tec.openplanner.team/stops/N346aaa", "https://tec.openplanner.team/stops/N347aga"], ["https://tec.openplanner.team/stops/H4cw107b", "https://tec.openplanner.team/stops/H4lz155a"], ["https://tec.openplanner.team/stops/H4lz127a", "https://tec.openplanner.team/stops/H4lz127b"], ["https://tec.openplanner.team/stops/LBRmc--2", "https://tec.openplanner.team/stops/LBRmc--3"], ["https://tec.openplanner.team/stops/Bwaab122", "https://tec.openplanner.team/stops/Bwaak102"], ["https://tec.openplanner.team/stops/H5qu156b", "https://tec.openplanner.team/stops/H5qu156d"], ["https://tec.openplanner.team/stops/Bblacar2", "https://tec.openplanner.team/stops/Bbsicea2"], ["https://tec.openplanner.team/stops/X747aca", "https://tec.openplanner.team/stops/X747afb"], ["https://tec.openplanner.team/stops/X601axb", "https://tec.openplanner.team/stops/X601ayb"], ["https://tec.openplanner.team/stops/N103aeb", "https://tec.openplanner.team/stops/N131aeb"], ["https://tec.openplanner.team/stops/LBBlaga1", "https://tec.openplanner.team/stops/LBBmc--1"], ["https://tec.openplanner.team/stops/Bblacha2", "https://tec.openplanner.team/stops/Bwatcbo1"], ["https://tec.openplanner.team/stops/N235aca", "https://tec.openplanner.team/stops/N235afa"], ["https://tec.openplanner.team/stops/H4ka185b", "https://tec.openplanner.team/stops/H4ru243b"], ["https://tec.openplanner.team/stops/Cgotech1", "https://tec.openplanner.team/stops/Cwxchap1"], ["https://tec.openplanner.team/stops/Lselimi2", "https://tec.openplanner.team/stops/Lsestap3"], ["https://tec.openplanner.team/stops/Llgandr1", "https://tec.openplanner.team/stops/Llgfail2"], ["https://tec.openplanner.team/stops/Cmoprov1", "https://tec.openplanner.team/stops/Cmovies1"], ["https://tec.openplanner.team/stops/X775aea", "https://tec.openplanner.team/stops/X775aeb"], ["https://tec.openplanner.team/stops/N501bda", "https://tec.openplanner.team/stops/N501ihy"], ["https://tec.openplanner.team/stops/LWAcost2", "https://tec.openplanner.team/stops/LWApr%C3%A9s4"], ["https://tec.openplanner.team/stops/H1ni323a", "https://tec.openplanner.team/stops/H1ni323b"], ["https://tec.openplanner.team/stops/X869ada", "https://tec.openplanner.team/stops/X869adb"], ["https://tec.openplanner.team/stops/X773amb", "https://tec.openplanner.team/stops/X773ana"], ["https://tec.openplanner.team/stops/Lflgare1", "https://tec.openplanner.team/stops/Lfllapi4"], ["https://tec.openplanner.team/stops/Lancoop1", "https://tec.openplanner.team/stops/Lancoop2"], ["https://tec.openplanner.team/stops/LLrelec2", "https://tec.openplanner.team/stops/LLrhest1"], ["https://tec.openplanner.team/stops/LHNtill2", "https://tec.openplanner.team/stops/LPcforg1"], ["https://tec.openplanner.team/stops/H1te173a", "https://tec.openplanner.team/stops/H1te184a"], ["https://tec.openplanner.team/stops/H2pe158a", "https://tec.openplanner.team/stops/H2re167b"], ["https://tec.openplanner.team/stops/Bllnlb11", "https://tec.openplanner.team/stops/Bllnlb12"], ["https://tec.openplanner.team/stops/N106ada", "https://tec.openplanner.team/stops/N106adb"], ["https://tec.openplanner.team/stops/LPOleli1", "https://tec.openplanner.team/stops/LPOleli2"], ["https://tec.openplanner.team/stops/H4ta115a", "https://tec.openplanner.team/stops/H4ta127b"], ["https://tec.openplanner.team/stops/X684aab", "https://tec.openplanner.team/stops/X684abb"], ["https://tec.openplanner.team/stops/LHUfrai1", "https://tec.openplanner.team/stops/LHUvege2"], ["https://tec.openplanner.team/stops/Loutrix1", "https://tec.openplanner.team/stops/Loutrix2"], ["https://tec.openplanner.team/stops/Barqbco1", "https://tec.openplanner.team/stops/Barqpwa1"], ["https://tec.openplanner.team/stops/Cjuledo2", "https://tec.openplanner.team/stops/Cjuplco3"], ["https://tec.openplanner.team/stops/N521aca", "https://tec.openplanner.team/stops/N521acb"], ["https://tec.openplanner.team/stops/Bgnvbsi1", "https://tec.openplanner.team/stops/Blhugar1"], ["https://tec.openplanner.team/stops/H1ba100a", "https://tec.openplanner.team/stops/H1ba105b"], ["https://tec.openplanner.team/stops/X576agb", "https://tec.openplanner.team/stops/X782apa"], ["https://tec.openplanner.team/stops/Ceqcfra1", "https://tec.openplanner.team/stops/H1er107a"], ["https://tec.openplanner.team/stops/Bllnein4", "https://tec.openplanner.team/stops/Bllnrge2"], ["https://tec.openplanner.team/stops/Bblager1", "https://tec.openplanner.team/stops/Clpnapo1"], ["https://tec.openplanner.team/stops/N301akb", "https://tec.openplanner.team/stops/N301ama"], ["https://tec.openplanner.team/stops/NL76aib", "https://tec.openplanner.team/stops/NL76ama"], ["https://tec.openplanner.team/stops/H1fr107c", "https://tec.openplanner.team/stops/H1fr107d"], ["https://tec.openplanner.team/stops/H1sd344b", "https://tec.openplanner.team/stops/H1sd347a"], ["https://tec.openplanner.team/stops/N547aba", "https://tec.openplanner.team/stops/N547ada"], ["https://tec.openplanner.team/stops/X812aua", "https://tec.openplanner.team/stops/X812bea"], ["https://tec.openplanner.team/stops/Cchwate2", "https://tec.openplanner.team/stops/Cchwate4"], ["https://tec.openplanner.team/stops/Bezeksj4", "https://tec.openplanner.team/stops/Bneeblo2"], ["https://tec.openplanner.team/stops/Bwatcci2", "https://tec.openplanner.team/stops/Bwatceg2"], ["https://tec.openplanner.team/stops/H5qu142a", "https://tec.openplanner.team/stops/H5qu150b"], ["https://tec.openplanner.team/stops/Brsgfbl4", "https://tec.openplanner.team/stops/Brsggol1"], ["https://tec.openplanner.team/stops/X809ada", "https://tec.openplanner.team/stops/X809aeb"], ["https://tec.openplanner.team/stops/X738abb", "https://tec.openplanner.team/stops/X739aca"], ["https://tec.openplanner.team/stops/X342aaa", "https://tec.openplanner.team/stops/X354aga"], ["https://tec.openplanner.team/stops/LBkcarr3", "https://tec.openplanner.team/stops/LBkdahl1"], ["https://tec.openplanner.team/stops/X837afa", "https://tec.openplanner.team/stops/X837aja"], ["https://tec.openplanner.team/stops/H1cu118a", "https://tec.openplanner.team/stops/H1cu120b"], ["https://tec.openplanner.team/stops/H4pl121a", "https://tec.openplanner.team/stops/H4pl121b"], ["https://tec.openplanner.team/stops/N566aea", "https://tec.openplanner.team/stops/N566aeb"], ["https://tec.openplanner.team/stops/N151abb", "https://tec.openplanner.team/stops/N151ajc"], ["https://tec.openplanner.team/stops/H1hl124b", "https://tec.openplanner.team/stops/H1ry137b"], ["https://tec.openplanner.team/stops/N145adb", "https://tec.openplanner.team/stops/N145aga"], ["https://tec.openplanner.team/stops/H4ta121a", "https://tec.openplanner.team/stops/H4ta122b"], ["https://tec.openplanner.team/stops/H4bw102a", "https://tec.openplanner.team/stops/H4bw102b"], ["https://tec.openplanner.team/stops/X602anb", "https://tec.openplanner.team/stops/X602asa"], ["https://tec.openplanner.team/stops/X896aga", "https://tec.openplanner.team/stops/X896ahb"], ["https://tec.openplanner.team/stops/X601ala", "https://tec.openplanner.team/stops/X601bxb"], ["https://tec.openplanner.team/stops/LkTraer2", "https://tec.openplanner.team/stops/LwAschu1"], ["https://tec.openplanner.team/stops/X837aab", "https://tec.openplanner.team/stops/X837aca"], ["https://tec.openplanner.team/stops/Clbhvil2", "https://tec.openplanner.team/stops/Clbptno1"], ["https://tec.openplanner.team/stops/LGEcons1", "https://tec.openplanner.team/stops/LGEcons2"], ["https://tec.openplanner.team/stops/LPAbour1", "https://tec.openplanner.team/stops/LWipaif3"], ["https://tec.openplanner.team/stops/H4gu108c", "https://tec.openplanner.team/stops/H4we138b"], ["https://tec.openplanner.team/stops/N106aoa", "https://tec.openplanner.team/stops/N106apa"], ["https://tec.openplanner.team/stops/Llgarmu1", "https://tec.openplanner.team/stops/Llgbonn2"], ["https://tec.openplanner.team/stops/LeLdorf2", "https://tec.openplanner.team/stops/LkAsonn2"], ["https://tec.openplanner.team/stops/Bblaccm1", "https://tec.openplanner.team/stops/Bwatcro2"], ["https://tec.openplanner.team/stops/H1og136b", "https://tec.openplanner.team/stops/H5fl104b"], ["https://tec.openplanner.team/stops/X601cca", "https://tec.openplanner.team/stops/X602ahb"], ["https://tec.openplanner.team/stops/LPLarbo1", "https://tec.openplanner.team/stops/LPLphar1"], ["https://tec.openplanner.team/stops/H2ch103b", "https://tec.openplanner.team/stops/H2ch105a"], ["https://tec.openplanner.team/stops/H4bn174b", "https://tec.openplanner.team/stops/H4pi136b"], ["https://tec.openplanner.team/stops/LnUneun1", "https://tec.openplanner.team/stops/LnUneun3"], ["https://tec.openplanner.team/stops/H1ha183a", "https://tec.openplanner.team/stops/H1vg359b"], ["https://tec.openplanner.team/stops/H4do202a", "https://tec.openplanner.team/stops/H4do202b"], ["https://tec.openplanner.team/stops/X804bob", "https://tec.openplanner.team/stops/X804bra"], ["https://tec.openplanner.team/stops/Chhbiet2", "https://tec.openplanner.team/stops/Cmx3arb2"], ["https://tec.openplanner.team/stops/X650aab", "https://tec.openplanner.team/stops/X650abb"], ["https://tec.openplanner.team/stops/Brixaug3", "https://tec.openplanner.team/stops/Brixwav3"], ["https://tec.openplanner.team/stops/LaMadam2", "https://tec.openplanner.team/stops/LmIzent1"], ["https://tec.openplanner.team/stops/LhGrote2", "https://tec.openplanner.team/stops/LkEschi2"], ["https://tec.openplanner.team/stops/H1mh115a", "https://tec.openplanner.team/stops/H1po132b"], ["https://tec.openplanner.team/stops/X937adb", "https://tec.openplanner.team/stops/X937akb"], ["https://tec.openplanner.team/stops/Bmanati2", "https://tec.openplanner.team/stops/H2mg139c"], ["https://tec.openplanner.team/stops/LSJeg--2", "https://tec.openplanner.team/stops/LSJlabe2"], ["https://tec.openplanner.team/stops/N146aaa", "https://tec.openplanner.team/stops/N146aba"], ["https://tec.openplanner.team/stops/LFEmala2", "https://tec.openplanner.team/stops/X597aga"], ["https://tec.openplanner.team/stops/LaTcolo2", "https://tec.openplanner.team/stops/LrGzent1"], ["https://tec.openplanner.team/stops/N260aba", "https://tec.openplanner.team/stops/N270aca"], ["https://tec.openplanner.team/stops/Bbchboi1", "https://tec.openplanner.team/stops/Bbchsac1"], ["https://tec.openplanner.team/stops/Csubosa2", "https://tec.openplanner.team/stops/Csuegli"], ["https://tec.openplanner.team/stops/LMgbatt2", "https://tec.openplanner.team/stops/LMgbern1"], ["https://tec.openplanner.team/stops/X902aqa", "https://tec.openplanner.team/stops/X902ara"], ["https://tec.openplanner.team/stops/Bnivfhu1", "https://tec.openplanner.team/stops/Bnivlpa1"], ["https://tec.openplanner.team/stops/N562aoa", "https://tec.openplanner.team/stops/N570aaa"], ["https://tec.openplanner.team/stops/Lbocarr2", "https://tec.openplanner.team/stops/Lbotilf2"], ["https://tec.openplanner.team/stops/H4ef164b", "https://tec.openplanner.team/stops/H4ss153a"], ["https://tec.openplanner.team/stops/Lpeptle1", "https://tec.openplanner.team/stops/LWeec--1"], ["https://tec.openplanner.team/stops/LLSbajo1", "https://tec.openplanner.team/stops/LLStrid1"], ["https://tec.openplanner.team/stops/N135aab", "https://tec.openplanner.team/stops/N135aba"], ["https://tec.openplanner.team/stops/Llgcadr6", "https://tec.openplanner.team/stops/LlgOPER5"], ["https://tec.openplanner.team/stops/LaAburt1", "https://tec.openplanner.team/stops/LaAhaup2"], ["https://tec.openplanner.team/stops/X750acb", "https://tec.openplanner.team/stops/X750afa"], ["https://tec.openplanner.team/stops/Bgnvcha1", "https://tec.openplanner.team/stops/Bgnvtil2"], ["https://tec.openplanner.team/stops/LBzvill1", "https://tec.openplanner.team/stops/LCeanne2"], ["https://tec.openplanner.team/stops/H1cu131a", "https://tec.openplanner.team/stops/H1cu131b"], ["https://tec.openplanner.team/stops/H5at115a", "https://tec.openplanner.team/stops/H5at120b"], ["https://tec.openplanner.team/stops/Bhoegbr2", "https://tec.openplanner.team/stops/Bwbfbon1"], ["https://tec.openplanner.team/stops/LWDbure1", "https://tec.openplanner.team/stops/LWDchpl2"], ["https://tec.openplanner.team/stops/LSMec--2", "https://tec.openplanner.team/stops/LSMpoin2"], ["https://tec.openplanner.team/stops/LlgPTAV3", "https://tec.openplanner.team/stops/LlgPTAV6"], ["https://tec.openplanner.team/stops/Ctucour2", "https://tec.openplanner.team/stops/Cturoge2"], ["https://tec.openplanner.team/stops/Bnivfro1", "https://tec.openplanner.team/stops/Bnivfro2"], ["https://tec.openplanner.team/stops/Lflcle-3", "https://tec.openplanner.team/stops/Lflcle-4"], ["https://tec.openplanner.team/stops/Cgyaudu1", "https://tec.openplanner.team/stops/Cgygazo5"], ["https://tec.openplanner.team/stops/X718afa", "https://tec.openplanner.team/stops/X718afb"], ["https://tec.openplanner.team/stops/Csoplac1", "https://tec.openplanner.team/stops/Ctrepin2"], ["https://tec.openplanner.team/stops/LDAandr2", "https://tec.openplanner.team/stops/LDAchau1"], ["https://tec.openplanner.team/stops/Lligara2", "https://tec.openplanner.team/stops/LVSbleu2"], ["https://tec.openplanner.team/stops/Bnivjli2", "https://tec.openplanner.team/stops/Bnivphs2"], ["https://tec.openplanner.team/stops/X358aca", "https://tec.openplanner.team/stops/X358acb"], ["https://tec.openplanner.team/stops/Lvtauna2", "https://tec.openplanner.team/stops/Lvtbocl2"], ["https://tec.openplanner.team/stops/LhEklos1", "https://tec.openplanner.team/stops/LhEtivo2"], ["https://tec.openplanner.team/stops/H4ca124b", "https://tec.openplanner.team/stops/H4fl115a"], ["https://tec.openplanner.team/stops/LATdame2", "https://tec.openplanner.team/stops/LWNbeto1"], ["https://tec.openplanner.team/stops/LmTreic1", "https://tec.openplanner.team/stops/LmTzoll1"], ["https://tec.openplanner.team/stops/X747aka", "https://tec.openplanner.team/stops/X747ala"], ["https://tec.openplanner.team/stops/LFRhock4", "https://tec.openplanner.team/stops/LSx309-1"], ["https://tec.openplanner.team/stops/H1ch141a", "https://tec.openplanner.team/stops/H1ch141b"], ["https://tec.openplanner.team/stops/H3so159b", "https://tec.openplanner.team/stops/H3so178b"], ["https://tec.openplanner.team/stops/X790ala", "https://tec.openplanner.team/stops/X790amb"], ["https://tec.openplanner.team/stops/LbUjost3", "https://tec.openplanner.team/stops/LhUdenk2"], ["https://tec.openplanner.team/stops/Cmtpire1", "https://tec.openplanner.team/stops/Cmtrbra2"], ["https://tec.openplanner.team/stops/LJAsuri1", "https://tec.openplanner.team/stops/LJAverv2"], ["https://tec.openplanner.team/stops/Ccigill1", "https://tec.openplanner.team/stops/Cciqueu2"], ["https://tec.openplanner.team/stops/H5bl115c", "https://tec.openplanner.team/stops/H5bl141a"], ["https://tec.openplanner.team/stops/LOmecol2", "https://tec.openplanner.team/stops/LOmvill2"], ["https://tec.openplanner.team/stops/Cdapige2", "https://tec.openplanner.team/stops/CMsacm1"], ["https://tec.openplanner.team/stops/N509aia", "https://tec.openplanner.team/stops/N509bda"], ["https://tec.openplanner.team/stops/LSOgott2", "https://tec.openplanner.team/stops/LSOtheu1"], ["https://tec.openplanner.team/stops/Lougare2", "https://tec.openplanner.team/stops/Lscbarg2"], ["https://tec.openplanner.team/stops/X801aqa", "https://tec.openplanner.team/stops/X801asa"], ["https://tec.openplanner.team/stops/N531ala", "https://tec.openplanner.team/stops/N531alb"], ["https://tec.openplanner.team/stops/Lsefoot1", "https://tec.openplanner.team/stops/Lsefoot2"], ["https://tec.openplanner.team/stops/LwTkabi1", "https://tec.openplanner.team/stops/LwTkabi4"], ["https://tec.openplanner.team/stops/LBseg--2", "https://tec.openplanner.team/stops/LBsfer-1"], ["https://tec.openplanner.team/stops/Llgbaro4", "https://tec.openplanner.team/stops/Llghesb1"], ["https://tec.openplanner.team/stops/H4ef163b", "https://tec.openplanner.team/stops/H4hq133d"], ["https://tec.openplanner.team/stops/N121aba", "https://tec.openplanner.team/stops/N122ahb"], ["https://tec.openplanner.team/stops/NL76amb", "https://tec.openplanner.team/stops/NL76ana"], ["https://tec.openplanner.team/stops/LHmcite1", "https://tec.openplanner.team/stops/LMAbijo1"], ["https://tec.openplanner.team/stops/LSkmarq2", "https://tec.openplanner.team/stops/LYechpl2"], ["https://tec.openplanner.team/stops/Llghoch4", "https://tec.openplanner.team/stops/Llgmart2"], ["https://tec.openplanner.team/stops/Bwavbwa1", "https://tec.openplanner.team/stops/Bwavbwa2"], ["https://tec.openplanner.team/stops/H4ry129b", "https://tec.openplanner.team/stops/H4ry141b"], ["https://tec.openplanner.team/stops/Bperalv2", "https://tec.openplanner.team/stops/Btlbegl4"], ["https://tec.openplanner.team/stops/N229ada", "https://tec.openplanner.team/stops/N229adb"], ["https://tec.openplanner.team/stops/Ljuetie2", "https://tec.openplanner.team/stops/Ljuetie3"], ["https://tec.openplanner.team/stops/X742aaa", "https://tec.openplanner.team/stops/X752aba"], ["https://tec.openplanner.team/stops/Lalecmo1", "https://tec.openplanner.team/stops/Lalhomb1"], ["https://tec.openplanner.team/stops/NH01anb", "https://tec.openplanner.team/stops/NH01atb"], ["https://tec.openplanner.team/stops/N501jhb", "https://tec.openplanner.team/stops/N501jka"], ["https://tec.openplanner.team/stops/LLnlimb1", "https://tec.openplanner.team/stops/LOewaut2"], ["https://tec.openplanner.team/stops/Cvstouv1", "https://tec.openplanner.team/stops/Cwfdupo2"], ["https://tec.openplanner.team/stops/Lvtnico*", "https://tec.openplanner.team/stops/Lvtnico2"], ["https://tec.openplanner.team/stops/H1th182a", "https://tec.openplanner.team/stops/H3go104a"], ["https://tec.openplanner.team/stops/Becepro2", "https://tec.openplanner.team/stops/Becesbo1"], ["https://tec.openplanner.team/stops/N501iea", "https://tec.openplanner.team/stops/N501iqa"], ["https://tec.openplanner.team/stops/N117arb", "https://tec.openplanner.team/stops/N571agb"], ["https://tec.openplanner.team/stops/N565aia", "https://tec.openplanner.team/stops/N565aic"], ["https://tec.openplanner.team/stops/Cjxplac2", "https://tec.openplanner.team/stops/Cjxpris2"], ["https://tec.openplanner.team/stops/LDOanes1", "https://tec.openplanner.team/stops/LDOanes2"], ["https://tec.openplanner.team/stops/H3so154b", "https://tec.openplanner.team/stops/H3so155b"], ["https://tec.openplanner.team/stops/X901aaa", "https://tec.openplanner.team/stops/X901aib"], ["https://tec.openplanner.team/stops/Llgbron1", "https://tec.openplanner.team/stops/Llgvero3"], ["https://tec.openplanner.team/stops/Cgpplac2", "https://tec.openplanner.team/stops/H2gy100b"], ["https://tec.openplanner.team/stops/NH01asa", "https://tec.openplanner.team/stops/NH01ata"], ["https://tec.openplanner.team/stops/N214aja", "https://tec.openplanner.team/stops/N236aha"], ["https://tec.openplanner.team/stops/Cjugohi2", "https://tec.openplanner.team/stops/Cjugohi4"], ["https://tec.openplanner.team/stops/Ltichif1", "https://tec.openplanner.team/stops/Ltiferb1"], ["https://tec.openplanner.team/stops/X660aha", "https://tec.openplanner.team/stops/X660aia"], ["https://tec.openplanner.team/stops/X616abb", "https://tec.openplanner.team/stops/X695aaa"], ["https://tec.openplanner.team/stops/X901baa", "https://tec.openplanner.team/stops/X922aka"], ["https://tec.openplanner.team/stops/LCPcomp1", "https://tec.openplanner.team/stops/LXocomb1"], ["https://tec.openplanner.team/stops/Cfmltas1", "https://tec.openplanner.team/stops/Cfmsncb1"], ["https://tec.openplanner.team/stops/H1pa112b", "https://tec.openplanner.team/stops/H1pa118a"], ["https://tec.openplanner.team/stops/Lanothe1", "https://tec.openplanner.team/stops/Lrcchar1"], ["https://tec.openplanner.team/stops/Bwatmsj1", "https://tec.openplanner.team/stops/Bwatmsj5"], ["https://tec.openplanner.team/stops/LsC216-1", "https://tec.openplanner.team/stops/LsCback2"], ["https://tec.openplanner.team/stops/N351aha", "https://tec.openplanner.team/stops/X351abb"], ["https://tec.openplanner.team/stops/H2sb226a", "https://tec.openplanner.team/stops/H2sb266a"], ["https://tec.openplanner.team/stops/Bwavvpr1", "https://tec.openplanner.team/stops/Bwavvpr2"], ["https://tec.openplanner.team/stops/Lmlcrot2", "https://tec.openplanner.team/stops/Lmlhaut1"], ["https://tec.openplanner.team/stops/Llgjoie3", "https://tec.openplanner.team/stops/Llgwall1"], ["https://tec.openplanner.team/stops/LlCauto2", "https://tec.openplanner.team/stops/LlCland2"], ["https://tec.openplanner.team/stops/Lstchas2", "https://tec.openplanner.team/stops/Lsttech2"], ["https://tec.openplanner.team/stops/Lsemany1", "https://tec.openplanner.team/stops/Lsemany2"], ["https://tec.openplanner.team/stops/LdUespe4", "https://tec.openplanner.team/stops/LeSkreu2"], ["https://tec.openplanner.team/stops/H4te254a", "https://tec.openplanner.team/stops/H4te256b"], ["https://tec.openplanner.team/stops/H4fa126b", "https://tec.openplanner.team/stops/H4fa127b"], ["https://tec.openplanner.team/stops/Lgrfass1", "https://tec.openplanner.team/stops/Lgrjobe2"], ["https://tec.openplanner.team/stops/N533amc", "https://tec.openplanner.team/stops/N533aqb"], ["https://tec.openplanner.team/stops/Bfelrav2", "https://tec.openplanner.team/stops/Bptrgri2"], ["https://tec.openplanner.team/stops/N301aab", "https://tec.openplanner.team/stops/N301apb"], ["https://tec.openplanner.team/stops/N501cka", "https://tec.openplanner.team/stops/N501ckz"], ["https://tec.openplanner.team/stops/Cwfanci1", "https://tec.openplanner.team/stops/Cwfzola1"], ["https://tec.openplanner.team/stops/X946adb", "https://tec.openplanner.team/stops/X946aib"], ["https://tec.openplanner.team/stops/Lghhoco1", "https://tec.openplanner.team/stops/Lghmont2"], ["https://tec.openplanner.team/stops/NL57ala", "https://tec.openplanner.team/stops/NL73aaa"], ["https://tec.openplanner.team/stops/Bsaumlp2", "https://tec.openplanner.team/stops/N541ada"], ["https://tec.openplanner.team/stops/H5wo123b", "https://tec.openplanner.team/stops/H5wo124b"], ["https://tec.openplanner.team/stops/N145akb", "https://tec.openplanner.team/stops/N150ada"], ["https://tec.openplanner.team/stops/Cfacamp1", "https://tec.openplanner.team/stops/Cpl4bra2"], ["https://tec.openplanner.team/stops/X719aaa", "https://tec.openplanner.team/stops/X789aba"], ["https://tec.openplanner.team/stops/H1qu100a", "https://tec.openplanner.team/stops/H1qu102a"], ["https://tec.openplanner.team/stops/H4ga150a", "https://tec.openplanner.team/stops/H4ga150b"], ["https://tec.openplanner.team/stops/LLOberl1", "https://tec.openplanner.team/stops/LLOberl2"], ["https://tec.openplanner.team/stops/Lsefori1", "https://tec.openplanner.team/stops/Lseverh2"], ["https://tec.openplanner.team/stops/LLefali1", "https://tec.openplanner.team/stops/LVRchpl1"], ["https://tec.openplanner.team/stops/LAmvent2", "https://tec.openplanner.team/stops/LVLchem1"], ["https://tec.openplanner.team/stops/LkTlibe1", "https://tec.openplanner.team/stops/LwAkett2"], ["https://tec.openplanner.team/stops/N501ada", "https://tec.openplanner.team/stops/N501aia"], ["https://tec.openplanner.team/stops/X877aaa", "https://tec.openplanner.team/stops/X877aga"], ["https://tec.openplanner.team/stops/Lgreg--2", "https://tec.openplanner.team/stops/Lgrgoff2"], ["https://tec.openplanner.team/stops/Bqueblo1", "https://tec.openplanner.team/stops/Bquesta1"], ["https://tec.openplanner.team/stops/LSXbecc2", "https://tec.openplanner.team/stops/LSXvill1"], ["https://tec.openplanner.team/stops/Lhecarc*", "https://tec.openplanner.team/stops/Lheneuv1"], ["https://tec.openplanner.team/stops/LTgbalm1", "https://tec.openplanner.team/stops/LTgvill2"], ["https://tec.openplanner.team/stops/Bnilcha1", "https://tec.openplanner.team/stops/Bwlhpmt3"], ["https://tec.openplanner.team/stops/Bblacar1", "https://tec.openplanner.team/stops/Bblapra2"], ["https://tec.openplanner.team/stops/Bbautri1", "https://tec.openplanner.team/stops/Bnivpri2"], ["https://tec.openplanner.team/stops/Bwaypav1", "https://tec.openplanner.team/stops/Cwspavi1"], ["https://tec.openplanner.team/stops/LHFhard1", "https://tec.openplanner.team/stops/LVEstat1"], ["https://tec.openplanner.team/stops/H1ba101a", "https://tec.openplanner.team/stops/H1ba101b"], ["https://tec.openplanner.team/stops/X715aab", "https://tec.openplanner.team/stops/X716aab"], ["https://tec.openplanner.team/stops/N512asa", "https://tec.openplanner.team/stops/N512atb"], ["https://tec.openplanner.team/stops/Bgnppem1", "https://tec.openplanner.team/stops/Bwaypon1"], ["https://tec.openplanner.team/stops/Lemarti2", "https://tec.openplanner.team/stops/Lemfort1"], ["https://tec.openplanner.team/stops/LrAkape2", "https://tec.openplanner.team/stops/LrAputz1"], ["https://tec.openplanner.team/stops/Bkrabhu2", "https://tec.openplanner.team/stops/Bovejei1"], ["https://tec.openplanner.team/stops/Bclgmev2", "https://tec.openplanner.team/stops/Bclgpla2"], ["https://tec.openplanner.team/stops/LCxreno1", "https://tec.openplanner.team/stops/LLM4rou5"], ["https://tec.openplanner.team/stops/H4ne134b", "https://tec.openplanner.team/stops/H4ne138a"], ["https://tec.openplanner.team/stops/N531acb", "https://tec.openplanner.team/stops/N531aha"], ["https://tec.openplanner.team/stops/Blhugai1", "https://tec.openplanner.team/stops/Blhuibm2"], ["https://tec.openplanner.team/stops/H2fy121a", "https://tec.openplanner.team/stops/H2fy122b"], ["https://tec.openplanner.team/stops/H4hx124a", "https://tec.openplanner.team/stops/H4hx124b"], ["https://tec.openplanner.team/stops/H1bi101b", "https://tec.openplanner.team/stops/H1mg109b"], ["https://tec.openplanner.team/stops/X723afa", "https://tec.openplanner.team/stops/X723aja"], ["https://tec.openplanner.team/stops/X754ata", "https://tec.openplanner.team/stops/X754aub"], ["https://tec.openplanner.team/stops/LSZcock2", "https://tec.openplanner.team/stops/LSZgare2"], ["https://tec.openplanner.team/stops/X640ala", "https://tec.openplanner.team/stops/X640alb"], ["https://tec.openplanner.team/stops/X661aia", "https://tec.openplanner.team/stops/X661atb"], ["https://tec.openplanner.team/stops/LeUstad1", "https://tec.openplanner.team/stops/LeUwert3"], ["https://tec.openplanner.team/stops/LDLboul1", "https://tec.openplanner.team/stops/LLNbeau2"], ["https://tec.openplanner.team/stops/Cvvmonu1", "https://tec.openplanner.team/stops/Cvvsncb1"], ["https://tec.openplanner.team/stops/X634aja", "https://tec.openplanner.team/stops/X634aka"], ["https://tec.openplanner.team/stops/Lbhgare1", "https://tec.openplanner.team/stops/Ljuvieu1"], ["https://tec.openplanner.team/stops/X595aia", "https://tec.openplanner.team/stops/X713anb"], ["https://tec.openplanner.team/stops/Llgangl2", "https://tec.openplanner.team/stops/Llghoch3"], ["https://tec.openplanner.team/stops/H5qu141b", "https://tec.openplanner.team/stops/H5qu152b"], ["https://tec.openplanner.team/stops/Bdonlat2", "https://tec.openplanner.team/stops/Brxmbos1"], ["https://tec.openplanner.team/stops/X639aca", "https://tec.openplanner.team/stops/X639acc"], ["https://tec.openplanner.team/stops/Bgzdgpa2", "https://tec.openplanner.team/stops/Bpecvme2"], ["https://tec.openplanner.team/stops/LORgr8-1", "https://tec.openplanner.team/stops/LORlieg1"], ["https://tec.openplanner.team/stops/X833aaa", "https://tec.openplanner.team/stops/X833aca"], ["https://tec.openplanner.team/stops/LHUfoss*", "https://tec.openplanner.team/stops/LHUneuv2"], ["https://tec.openplanner.team/stops/H4ty287b", "https://tec.openplanner.team/stops/H4ty358b"], ["https://tec.openplanner.team/stops/X629aab", "https://tec.openplanner.team/stops/X647aab"], ["https://tec.openplanner.team/stops/LBsoha-2", "https://tec.openplanner.team/stops/NL72adb"], ["https://tec.openplanner.team/stops/LhGfrie2", "https://tec.openplanner.team/stops/LlNm%C3%BChl2"], ["https://tec.openplanner.team/stops/LSPplat2", "https://tec.openplanner.team/stops/LSPptch2"], ["https://tec.openplanner.team/stops/LsVfrde1", "https://tec.openplanner.team/stops/LsVviel1"], ["https://tec.openplanner.team/stops/N547aha", "https://tec.openplanner.team/stops/N547ahb"], ["https://tec.openplanner.team/stops/Blincal1", "https://tec.openplanner.team/stops/Blingar3"], ["https://tec.openplanner.team/stops/X991aab", "https://tec.openplanner.team/stops/X991acb"], ["https://tec.openplanner.team/stops/X657aaa", "https://tec.openplanner.team/stops/X657amb"], ["https://tec.openplanner.team/stops/LBIpost1", "https://tec.openplanner.team/stops/Lghlogi1"], ["https://tec.openplanner.team/stops/Bvirbru1", "https://tec.openplanner.team/stops/Bvirmbr2"], ["https://tec.openplanner.team/stops/LJuhaie1", "https://tec.openplanner.team/stops/LJuhaie2"], ["https://tec.openplanner.team/stops/X986ala", "https://tec.openplanner.team/stops/X986alc"], ["https://tec.openplanner.team/stops/Ctyhame2", "https://tec.openplanner.team/stops/N137aib"], ["https://tec.openplanner.team/stops/LMYchpl1", "https://tec.openplanner.team/stops/LMYlieg2"], ["https://tec.openplanner.team/stops/N563anb", "https://tec.openplanner.team/stops/N570aga"], ["https://tec.openplanner.team/stops/Ladpara1", "https://tec.openplanner.team/stops/Ladthom1"], ["https://tec.openplanner.team/stops/H5at115b", "https://tec.openplanner.team/stops/H5at120b"], ["https://tec.openplanner.team/stops/Cmeptmi2", "https://tec.openplanner.team/stops/Cmerued1"], ["https://tec.openplanner.team/stops/N117atb", "https://tec.openplanner.team/stops/N569aib"], ["https://tec.openplanner.team/stops/Bovesnh2", "https://tec.openplanner.team/stops/Bovetwe2"], ["https://tec.openplanner.team/stops/LhOfrie2", "https://tec.openplanner.team/stops/LhUkreu2"], ["https://tec.openplanner.team/stops/H4ce104b", "https://tec.openplanner.team/stops/H4ce108b"], ["https://tec.openplanner.team/stops/N540ajb", "https://tec.openplanner.team/stops/N540aka"], ["https://tec.openplanner.team/stops/NL77ana", "https://tec.openplanner.team/stops/NL78aaa"], ["https://tec.openplanner.team/stops/H5pe127b", "https://tec.openplanner.team/stops/H5pe148b"], ["https://tec.openplanner.team/stops/Cgocat2", "https://tec.openplanner.team/stops/Cgocnor4"], ["https://tec.openplanner.team/stops/X753aab", "https://tec.openplanner.team/stops/X753abd"], ["https://tec.openplanner.team/stops/Ccocroi1", "https://tec.openplanner.team/stops/Ctrepin1"], ["https://tec.openplanner.team/stops/LaAmise2", "https://tec.openplanner.team/stops/LaAronh2"], ["https://tec.openplanner.team/stops/LbTmons1", "https://tec.openplanner.team/stops/LnIschw1"], ["https://tec.openplanner.team/stops/H4os220b", "https://tec.openplanner.team/stops/H4os222b"], ["https://tec.openplanner.team/stops/X898aaa", "https://tec.openplanner.team/stops/X898afb"], ["https://tec.openplanner.team/stops/NL77aha", "https://tec.openplanner.team/stops/NL77aib"], ["https://tec.openplanner.team/stops/H1hl122b", "https://tec.openplanner.team/stops/H1vs145b"], ["https://tec.openplanner.team/stops/H1so143b", "https://tec.openplanner.team/stops/H1so145b"], ["https://tec.openplanner.team/stops/LeUoe541", "https://tec.openplanner.team/stops/LeUoe542"], ["https://tec.openplanner.team/stops/N321afb", "https://tec.openplanner.team/stops/N367adb"], ["https://tec.openplanner.team/stops/Ctabaty3", "https://tec.openplanner.team/stops/N543cfb"], ["https://tec.openplanner.team/stops/Bvilcha1", "https://tec.openplanner.team/stops/Bvilvil1"], ["https://tec.openplanner.team/stops/Cfrgare4", "https://tec.openplanner.team/stops/Cfrmonu1"], ["https://tec.openplanner.team/stops/NL74aaa", "https://tec.openplanner.team/stops/NL74aac"], ["https://tec.openplanner.team/stops/N501aia", "https://tec.openplanner.team/stops/N501aib"], ["https://tec.openplanner.team/stops/H1hh116a", "https://tec.openplanner.team/stops/H5me105a"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lvehauz3"], ["https://tec.openplanner.team/stops/Lbrmour2", "https://tec.openplanner.team/stops/Llglill2"], ["https://tec.openplanner.team/stops/X601bub", "https://tec.openplanner.team/stops/X601bva"], ["https://tec.openplanner.team/stops/Bnivros1", "https://tec.openplanner.team/stops/Bnivros2"], ["https://tec.openplanner.team/stops/H4me211a", "https://tec.openplanner.team/stops/H4ve137b"], ["https://tec.openplanner.team/stops/X812aka", "https://tec.openplanner.team/stops/X812ala"], ["https://tec.openplanner.team/stops/LAmcorn2", "https://tec.openplanner.team/stops/LAMecse*"], ["https://tec.openplanner.team/stops/X818aob", "https://tec.openplanner.team/stops/X818apa"], ["https://tec.openplanner.team/stops/Cmmheur1", "https://tec.openplanner.team/stops/Cmmheur2"], ["https://tec.openplanner.team/stops/Clgmaco2", "https://tec.openplanner.team/stops/H1mc128b"], ["https://tec.openplanner.team/stops/N312ada", "https://tec.openplanner.team/stops/N312adb"], ["https://tec.openplanner.team/stops/H1bx106a", "https://tec.openplanner.team/stops/H1bx106b"], ["https://tec.openplanner.team/stops/H4ty356b", "https://tec.openplanner.team/stops/H4ty356c"], ["https://tec.openplanner.team/stops/X561adb", "https://tec.openplanner.team/stops/X561aea"], ["https://tec.openplanner.team/stops/Bincfer1", "https://tec.openplanner.team/stops/Bincfer2"], ["https://tec.openplanner.team/stops/N501cwa", "https://tec.openplanner.team/stops/N501cxb"], ["https://tec.openplanner.team/stops/X739ala", "https://tec.openplanner.team/stops/X773aaa"], ["https://tec.openplanner.team/stops/Cmmschw2", "https://tec.openplanner.team/stops/Cmygbbo2"], ["https://tec.openplanner.team/stops/X601aja", "https://tec.openplanner.team/stops/X601aka"], ["https://tec.openplanner.team/stops/LVLecco1", "https://tec.openplanner.team/stops/LVLgotr2"], ["https://tec.openplanner.team/stops/H1mr124a", "https://tec.openplanner.team/stops/H1mr126a"], ["https://tec.openplanner.team/stops/Lsehcoc1", "https://tec.openplanner.team/stops/Lsephar2"], ["https://tec.openplanner.team/stops/Lagcolo1", "https://tec.openplanner.team/stops/Lemmath2"], ["https://tec.openplanner.team/stops/LNCchau2", "https://tec.openplanner.team/stops/LNCvill1"], ["https://tec.openplanner.team/stops/Bhmmbog1", "https://tec.openplanner.team/stops/Bleugar1"], ["https://tec.openplanner.team/stops/Cgxwaut1", "https://tec.openplanner.team/stops/Crorogn2"], ["https://tec.openplanner.team/stops/LVEdTEC2", "https://tec.openplanner.team/stops/LVEfize2"], ["https://tec.openplanner.team/stops/X610aab", "https://tec.openplanner.team/stops/X610aia"], ["https://tec.openplanner.team/stops/H2me114b", "https://tec.openplanner.team/stops/H2me117a"], ["https://tec.openplanner.team/stops/Bottgar1", "https://tec.openplanner.team/stops/Bottgar8"], ["https://tec.openplanner.team/stops/Bwatali1", "https://tec.openplanner.team/stops/Bwatgar1"], ["https://tec.openplanner.team/stops/LMfange1", "https://tec.openplanner.team/stops/LMfsart1"], ["https://tec.openplanner.team/stops/X636aaa", "https://tec.openplanner.team/stops/X636aab"], ["https://tec.openplanner.team/stops/LAVdepr1", "https://tec.openplanner.team/stops/LAVstat2"], ["https://tec.openplanner.team/stops/X818aab", "https://tec.openplanner.team/stops/X818abb"], ["https://tec.openplanner.team/stops/LHAprei2", "https://tec.openplanner.team/stops/LVIpneu2"], ["https://tec.openplanner.team/stops/LbTcarm2", "https://tec.openplanner.team/stops/LbTweyn2"], ["https://tec.openplanner.team/stops/Cmmgadi1", "https://tec.openplanner.team/stops/Cmmphai1"], ["https://tec.openplanner.team/stops/H4ka393a", "https://tec.openplanner.team/stops/H4ka394a"], ["https://tec.openplanner.team/stops/Buccrac1", "https://tec.openplanner.team/stops/Buccvoi2"], ["https://tec.openplanner.team/stops/Cjufagn4", "https://tec.openplanner.team/stops/CMmade1"], ["https://tec.openplanner.team/stops/NL57add", "https://tec.openplanner.team/stops/NL57aia"], ["https://tec.openplanner.team/stops/H4rm108a", "https://tec.openplanner.team/stops/H4rm113b"], ["https://tec.openplanner.team/stops/Ccufos71", "https://tec.openplanner.team/stops/Cculpre1"], ["https://tec.openplanner.team/stops/Cnaferr1", "https://tec.openplanner.team/stops/Cnanoir1"], ["https://tec.openplanner.team/stops/Cfrplac6", "https://tec.openplanner.team/stops/Cliburl2"], ["https://tec.openplanner.team/stops/H1ev114a", "https://tec.openplanner.team/stops/H1ev115b"], ["https://tec.openplanner.team/stops/Bolgegl4", "https://tec.openplanner.team/stops/Bolgeva1"], ["https://tec.openplanner.team/stops/Lwaeau-2", "https://tec.openplanner.team/stops/Lwaelme2"], ["https://tec.openplanner.team/stops/Lhuleke2", "https://tec.openplanner.team/stops/Lvelobe1"], ["https://tec.openplanner.team/stops/LWNchar1", "https://tec.openplanner.team/stops/LWNcime2"], ["https://tec.openplanner.team/stops/LMYmont1", "https://tec.openplanner.team/stops/LMYroin1"], ["https://tec.openplanner.team/stops/X938aab", "https://tec.openplanner.team/stops/X950acb"], ["https://tec.openplanner.team/stops/Lrcarse1", "https://tec.openplanner.team/stops/Lrcarse2"], ["https://tec.openplanner.team/stops/LCFcafe2", "https://tec.openplanner.team/stops/LHaodei2"], ["https://tec.openplanner.team/stops/H1mm131a", "https://tec.openplanner.team/stops/H1vb147b"], ["https://tec.openplanner.team/stops/X831aca", "https://tec.openplanner.team/stops/X831acb"], ["https://tec.openplanner.team/stops/Bbeacha1", "https://tec.openplanner.team/stops/Btlgmee2"], ["https://tec.openplanner.team/stops/X670aka", "https://tec.openplanner.team/stops/X670ala"], ["https://tec.openplanner.team/stops/LVSbleu1", "https://tec.openplanner.team/stops/LVSeg--2"], ["https://tec.openplanner.team/stops/H4pq117a", "https://tec.openplanner.team/stops/H4pq117b"], ["https://tec.openplanner.team/stops/Cjuhame3", "https://tec.openplanner.team/stops/Cjulamb3"], ["https://tec.openplanner.team/stops/LRGcana2", "https://tec.openplanner.team/stops/LRGgend1"], ["https://tec.openplanner.team/stops/Cgpchgo1", "https://tec.openplanner.team/stops/Cgpcime1"], ["https://tec.openplanner.team/stops/Btlbcha1", "https://tec.openplanner.team/stops/Btlbcul2"], ["https://tec.openplanner.team/stops/LWZeg--1", "https://tec.openplanner.team/stops/LWZponh1"], ["https://tec.openplanner.team/stops/Bblamsj2", "https://tec.openplanner.team/stops/Bwatcro2"], ["https://tec.openplanner.team/stops/Bjaugar3", "https://tec.openplanner.team/stops/Bjaugar4"], ["https://tec.openplanner.team/stops/Bthspha1", "https://tec.openplanner.team/stops/Bthsset1"], ["https://tec.openplanner.team/stops/LMamuse3", "https://tec.openplanner.team/stops/LMaslav3"], ["https://tec.openplanner.team/stops/LROmorf1", "https://tec.openplanner.team/stops/LWLeg--3"], ["https://tec.openplanner.team/stops/LgRha211", "https://tec.openplanner.team/stops/LgRzent1"], ["https://tec.openplanner.team/stops/N147ada", "https://tec.openplanner.team/stops/N147adb"], ["https://tec.openplanner.team/stops/X659ara", "https://tec.openplanner.team/stops/X659awb"], ["https://tec.openplanner.team/stops/Cflpost2", "https://tec.openplanner.team/stops/Cwgdeba2"], ["https://tec.openplanner.team/stops/Lmlec--1", "https://tec.openplanner.team/stops/Lmlec--2"], ["https://tec.openplanner.team/stops/LHOgymn1", "https://tec.openplanner.team/stops/LHOmc--1"], ["https://tec.openplanner.team/stops/Bwatfva1", "https://tec.openplanner.team/stops/Bwatnrs2"], ["https://tec.openplanner.team/stops/Bwavtas2", "https://tec.openplanner.team/stops/Bwavtas4"], ["https://tec.openplanner.team/stops/H4bq100a", "https://tec.openplanner.team/stops/H4og211a"], ["https://tec.openplanner.team/stops/LDObell1", "https://tec.openplanner.team/stops/LSubass1"], ["https://tec.openplanner.team/stops/X602aba", "https://tec.openplanner.team/stops/X602abb"], ["https://tec.openplanner.team/stops/Cmoscap1", "https://tec.openplanner.team/stops/Cmoscap2"], ["https://tec.openplanner.team/stops/Lgdec--2", "https://tec.openplanner.team/stops/Lgdhura2"], ["https://tec.openplanner.team/stops/LlZkirc1", "https://tec.openplanner.team/stops/LmNsv872"], ["https://tec.openplanner.team/stops/X892acb", "https://tec.openplanner.team/stops/X892aha"], ["https://tec.openplanner.team/stops/Crehout1", "https://tec.openplanner.team/stops/Creshau2"], ["https://tec.openplanner.team/stops/LCvoufn1", "https://tec.openplanner.team/stops/LTBeg--1"], ["https://tec.openplanner.team/stops/X879aca", "https://tec.openplanner.team/stops/X879ahb"], ["https://tec.openplanner.team/stops/N521aja", "https://tec.openplanner.team/stops/N521aka"], ["https://tec.openplanner.team/stops/X685aia", "https://tec.openplanner.team/stops/X685ama"], ["https://tec.openplanner.team/stops/H4hg156a", "https://tec.openplanner.team/stops/H4mv189c"], ["https://tec.openplanner.team/stops/Csslesc2", "https://tec.openplanner.team/stops/Csygare1"], ["https://tec.openplanner.team/stops/LBegare2", "https://tec.openplanner.team/stops/LWHkape1"], ["https://tec.openplanner.team/stops/H4bo114a", "https://tec.openplanner.team/stops/H4bo114b"], ["https://tec.openplanner.team/stops/N543ara", "https://tec.openplanner.team/stops/N543arb"], ["https://tec.openplanner.team/stops/Bbeaap11", "https://tec.openplanner.team/stops/Bmlncle1"], ["https://tec.openplanner.team/stops/LSZsolw1", "https://tec.openplanner.team/stops/LWycarr2"], ["https://tec.openplanner.team/stops/X807aba", "https://tec.openplanner.team/stops/X807abb"], ["https://tec.openplanner.team/stops/N206ada", "https://tec.openplanner.team/stops/N206adb"], ["https://tec.openplanner.team/stops/H4ta125a", "https://tec.openplanner.team/stops/H4ta125c"], ["https://tec.openplanner.team/stops/X641ahb", "https://tec.openplanner.team/stops/X641amb"], ["https://tec.openplanner.team/stops/X666ada", "https://tec.openplanner.team/stops/X666alb"], ["https://tec.openplanner.team/stops/X763aaa", "https://tec.openplanner.team/stops/X764aaa"], ["https://tec.openplanner.team/stops/N539awb", "https://tec.openplanner.team/stops/N539bab"], ["https://tec.openplanner.team/stops/Caibras1", "https://tec.openplanner.team/stops/Caimeno4"], ["https://tec.openplanner.team/stops/H1hn204b", "https://tec.openplanner.team/stops/H1mv241b"], ["https://tec.openplanner.team/stops/Cmtchet2", "https://tec.openplanner.team/stops/Cmtdepo2"], ["https://tec.openplanner.team/stops/N212aca", "https://tec.openplanner.team/stops/N212aea"], ["https://tec.openplanner.team/stops/X882ahb", "https://tec.openplanner.team/stops/X882alb"], ["https://tec.openplanner.team/stops/Bfelgar2", "https://tec.openplanner.team/stops/Bfelgar3"], ["https://tec.openplanner.team/stops/Bhalath1", "https://tec.openplanner.team/stops/Blkbbvh2"], ["https://tec.openplanner.team/stops/Lcehipp2", "https://tec.openplanner.team/stops/Lgrorch2"], ["https://tec.openplanner.team/stops/X775alb", "https://tec.openplanner.team/stops/X775ama"], ["https://tec.openplanner.team/stops/Bgnvgir1", "https://tec.openplanner.team/stops/Bgnvgir2"], ["https://tec.openplanner.team/stops/LLYplac1", "https://tec.openplanner.team/stops/LLYplac2"], ["https://tec.openplanner.team/stops/LVSslin1", "https://tec.openplanner.team/stops/LVSslin2"], ["https://tec.openplanner.team/stops/N201ajb", "https://tec.openplanner.team/stops/N201ala"], ["https://tec.openplanner.team/stops/LaAzwei1", "https://tec.openplanner.team/stops/LaAzwei2"], ["https://tec.openplanner.team/stops/Bhercsj1", "https://tec.openplanner.team/stops/Bpiepla1"], ["https://tec.openplanner.team/stops/Berngrt2", "https://tec.openplanner.team/stops/Bwspbos2"], ["https://tec.openplanner.team/stops/LLRbleh1", "https://tec.openplanner.team/stops/LPctrog2"], ["https://tec.openplanner.team/stops/LSPherd1", "https://tec.openplanner.team/stops/LSPsauv1"], ["https://tec.openplanner.team/stops/N516ama", "https://tec.openplanner.team/stops/N581abb"], ["https://tec.openplanner.team/stops/LHNcreh1", "https://tec.openplanner.team/stops/LHNwaut2"], ["https://tec.openplanner.team/stops/H5gr135b", "https://tec.openplanner.team/stops/H5gr138a"], ["https://tec.openplanner.team/stops/N501aaa", "https://tec.openplanner.team/stops/N501giz"], ["https://tec.openplanner.team/stops/LBYwez-1", "https://tec.openplanner.team/stops/Lgdblom2"], ["https://tec.openplanner.team/stops/LBBodet2", "https://tec.openplanner.team/stops/NL82aga"], ["https://tec.openplanner.team/stops/LgAdorf1", "https://tec.openplanner.team/stops/LnUneun2"], ["https://tec.openplanner.team/stops/Cfaterg6", "https://tec.openplanner.team/stops/N543cna"], ["https://tec.openplanner.team/stops/X805ada", "https://tec.openplanner.team/stops/X805adb"], ["https://tec.openplanner.team/stops/H1lb137b", "https://tec.openplanner.team/stops/H1lb154b"], ["https://tec.openplanner.team/stops/LAnfall1", "https://tec.openplanner.team/stops/LVtespo2"], ["https://tec.openplanner.team/stops/X651acd", "https://tec.openplanner.team/stops/X651afb"], ["https://tec.openplanner.team/stops/X664aja", "https://tec.openplanner.team/stops/X664aob"], ["https://tec.openplanner.team/stops/Bcharce2", "https://tec.openplanner.team/stops/Bhvltol2"], ["https://tec.openplanner.team/stops/Bosqpco1", "https://tec.openplanner.team/stops/Bosqpqu2"], ["https://tec.openplanner.team/stops/X614aba", "https://tec.openplanner.team/stops/X614aob"], ["https://tec.openplanner.team/stops/X996aga", "https://tec.openplanner.team/stops/X996agb"], ["https://tec.openplanner.team/stops/H1gy115a", "https://tec.openplanner.team/stops/H1le122d"], ["https://tec.openplanner.team/stops/N565abb", "https://tec.openplanner.team/stops/N565aea"], ["https://tec.openplanner.team/stops/X783aab", "https://tec.openplanner.team/stops/X783adb"], ["https://tec.openplanner.team/stops/X802afa", "https://tec.openplanner.team/stops/X802aya"], ["https://tec.openplanner.team/stops/N513alb", "https://tec.openplanner.team/stops/N513bbc"], ["https://tec.openplanner.team/stops/Boplcar4", "https://tec.openplanner.team/stops/Boplham2"], ["https://tec.openplanner.team/stops/X780aab", "https://tec.openplanner.team/stops/X780aca"], ["https://tec.openplanner.team/stops/H1fr130b", "https://tec.openplanner.team/stops/H1fr152a"], ["https://tec.openplanner.team/stops/H1hw125b", "https://tec.openplanner.team/stops/H1so132a"], ["https://tec.openplanner.team/stops/Cchfaub2", "https://tec.openplanner.team/stops/Cchmott2"], ["https://tec.openplanner.team/stops/X609acb", "https://tec.openplanner.team/stops/X609ada"], ["https://tec.openplanner.team/stops/N568adb", "https://tec.openplanner.team/stops/N568aeb"], ["https://tec.openplanner.team/stops/N528aib", "https://tec.openplanner.team/stops/N528aka"], ["https://tec.openplanner.team/stops/LHCauwe3", "https://tec.openplanner.team/stops/LHChoof4"], ["https://tec.openplanner.team/stops/X715aaa", "https://tec.openplanner.team/stops/X715aab"], ["https://tec.openplanner.team/stops/X792aba", "https://tec.openplanner.team/stops/X792abb"], ["https://tec.openplanner.team/stops/H1hr116a", "https://tec.openplanner.team/stops/H1hr116b"], ["https://tec.openplanner.team/stops/LWerola1", "https://tec.openplanner.team/stops/LWevalf2"], ["https://tec.openplanner.team/stops/Bfelbri1", "https://tec.openplanner.team/stops/Bfelbri3"], ["https://tec.openplanner.team/stops/Bchgbru1", "https://tec.openplanner.team/stops/Bchgqve1"], ["https://tec.openplanner.team/stops/Bhevhha2", "https://tec.openplanner.team/stops/Bhevl3l2"], ["https://tec.openplanner.team/stops/LAVdepr2", "https://tec.openplanner.team/stops/LCIsucr2"], ["https://tec.openplanner.team/stops/Lanpisc2", "https://tec.openplanner.team/stops/Lglvict1"], ["https://tec.openplanner.team/stops/H4fr144b", "https://tec.openplanner.team/stops/H4ty301d"], ["https://tec.openplanner.team/stops/Bitrhou2", "https://tec.openplanner.team/stops/Bitrmde1"], ["https://tec.openplanner.team/stops/LEMgren*", "https://tec.openplanner.team/stops/LPlchpl2"], ["https://tec.openplanner.team/stops/Btileco2", "https://tec.openplanner.team/stops/Btilhti1"], ["https://tec.openplanner.team/stops/N568aab", "https://tec.openplanner.team/stops/N568aba"], ["https://tec.openplanner.team/stops/Cjxegli2", "https://tec.openplanner.team/stops/Cjxplac2"], ["https://tec.openplanner.team/stops/Bllncyc1", "https://tec.openplanner.team/stops/Bllnein4"], ["https://tec.openplanner.team/stops/Bolgegl1", "https://tec.openplanner.team/stops/Bolgegl4"], ["https://tec.openplanner.team/stops/X773aja", "https://tec.openplanner.team/stops/X773alb"], ["https://tec.openplanner.team/stops/X901ada", "https://tec.openplanner.team/stops/X901adb"], ["https://tec.openplanner.team/stops/Lsmpost1", "https://tec.openplanner.team/stops/Lsmtini2"], ["https://tec.openplanner.team/stops/LrAneud1", "https://tec.openplanner.team/stops/LrApley1"], ["https://tec.openplanner.team/stops/X801bua", "https://tec.openplanner.team/stops/X802aua"], ["https://tec.openplanner.team/stops/Bbsivil2", "https://tec.openplanner.team/stops/Bbsivil3"], ["https://tec.openplanner.team/stops/LmHabzw1", "https://tec.openplanner.team/stops/LmHdrei2"], ["https://tec.openplanner.team/stops/X784agb", "https://tec.openplanner.team/stops/X784alb"], ["https://tec.openplanner.team/stops/N230aja", "https://tec.openplanner.team/stops/N540aab"], ["https://tec.openplanner.team/stops/X768akb", "https://tec.openplanner.team/stops/X768amb"], ["https://tec.openplanner.team/stops/X948aic", "https://tec.openplanner.team/stops/X948aja"], ["https://tec.openplanner.team/stops/LWHzave1", "https://tec.openplanner.team/stops/LWHzave2"], ["https://tec.openplanner.team/stops/X779aeb", "https://tec.openplanner.team/stops/X779afa"], ["https://tec.openplanner.team/stops/LCPconf1", "https://tec.openplanner.team/stops/LCPconf2"], ["https://tec.openplanner.team/stops/H1mh113c", "https://tec.openplanner.team/stops/H1mh115b"], ["https://tec.openplanner.team/stops/LaNdorf2", "https://tec.openplanner.team/stops/LhRandl1"], ["https://tec.openplanner.team/stops/Chprobi1", "https://tec.openplanner.team/stops/Chprobi2"], ["https://tec.openplanner.team/stops/Cmltemp3", "https://tec.openplanner.team/stops/Cmltemp5"], ["https://tec.openplanner.team/stops/H4ga162a", "https://tec.openplanner.team/stops/H4vz369a"], ["https://tec.openplanner.team/stops/H2bh113a", "https://tec.openplanner.team/stops/H2ll194a"], ["https://tec.openplanner.team/stops/H1og133a", "https://tec.openplanner.team/stops/H4os217a"], ["https://tec.openplanner.team/stops/Bbch4br3", "https://tec.openplanner.team/stops/Bbch4br4"], ["https://tec.openplanner.team/stops/H2mo117a", "https://tec.openplanner.team/stops/H2mo125a"], ["https://tec.openplanner.team/stops/LhOfrie1", "https://tec.openplanner.team/stops/LhZkape1"], ["https://tec.openplanner.team/stops/LAUbirv1", "https://tec.openplanner.team/stops/LLCeg--1"], ["https://tec.openplanner.team/stops/Llgbry-1", "https://tec.openplanner.team/stops/Llgpiet2"], ["https://tec.openplanner.team/stops/Cgonvro1", "https://tec.openplanner.team/stops/Cgorobe1"], ["https://tec.openplanner.team/stops/Bbiehec2", "https://tec.openplanner.team/stops/Bbiehev1"], ["https://tec.openplanner.team/stops/LVIdeva2", "https://tec.openplanner.team/stops/LVIecol1"], ["https://tec.openplanner.team/stops/NL37aka", "https://tec.openplanner.team/stops/NL74aja"], ["https://tec.openplanner.team/stops/LbUmors2", "https://tec.openplanner.team/stops/LhDkreu1"], ["https://tec.openplanner.team/stops/Bptbsar1", "https://tec.openplanner.team/stops/Bptbsar2"], ["https://tec.openplanner.team/stops/LSTchef1", "https://tec.openplanner.team/stops/LSTdero2"], ["https://tec.openplanner.team/stops/X820abb", "https://tec.openplanner.team/stops/X820ada"], ["https://tec.openplanner.team/stops/Brixpje1", "https://tec.openplanner.team/stops/Brsrber1"], ["https://tec.openplanner.team/stops/LWAlong1", "https://tec.openplanner.team/stops/LWAlong5"], ["https://tec.openplanner.team/stops/Bsmgmas1", "https://tec.openplanner.team/stops/Bsmgpon2"], ["https://tec.openplanner.team/stops/Bcercab1", "https://tec.openplanner.team/stops/Bcercab2"], ["https://tec.openplanner.team/stops/LTB105-2", "https://tec.openplanner.team/stops/LTBeg--2"], ["https://tec.openplanner.team/stops/H1qu106a", "https://tec.openplanner.team/stops/H1qu107b"], ["https://tec.openplanner.team/stops/H5st164a", "https://tec.openplanner.team/stops/H5st166b"], ["https://tec.openplanner.team/stops/Bottppa1", "https://tec.openplanner.team/stops/Bottppa4"], ["https://tec.openplanner.team/stops/Lbbgare2", "https://tec.openplanner.team/stops/Ljubrec1"], ["https://tec.openplanner.team/stops/Cmaegal2", "https://tec.openplanner.team/stops/Crobass2"], ["https://tec.openplanner.team/stops/X774adb", "https://tec.openplanner.team/stops/X774adc"], ["https://tec.openplanner.team/stops/Lprferm2", "https://tec.openplanner.team/stops/LWetrib2"], ["https://tec.openplanner.team/stops/LAWaube1", "https://tec.openplanner.team/stops/LAWcorn1"], ["https://tec.openplanner.team/stops/Cgoobse1", "https://tec.openplanner.team/stops/Cgostro2"], ["https://tec.openplanner.team/stops/LkAsonn2", "https://tec.openplanner.team/stops/LmHschm2"], ["https://tec.openplanner.team/stops/H4be100a", "https://tec.openplanner.team/stops/H4be149b"], ["https://tec.openplanner.team/stops/H1bo108a", "https://tec.openplanner.team/stops/H1bo110a"], ["https://tec.openplanner.team/stops/X796aba", "https://tec.openplanner.team/stops/X796aga"], ["https://tec.openplanner.team/stops/N232ada", "https://tec.openplanner.team/stops/N232aga"], ["https://tec.openplanner.team/stops/LWbcarr1", "https://tec.openplanner.team/stops/X512aaa"], ["https://tec.openplanner.team/stops/Blimrof1", "https://tec.openplanner.team/stops/Brixape1"], ["https://tec.openplanner.team/stops/Bblavba1", "https://tec.openplanner.team/stops/Bwatbca2"], ["https://tec.openplanner.team/stops/H4do108b", "https://tec.openplanner.team/stops/H4sl155b"], ["https://tec.openplanner.team/stops/LBieg--3", "https://tec.openplanner.team/stops/LDObell1"], ["https://tec.openplanner.team/stops/LeUschn1", "https://tec.openplanner.team/stops/LeUwert1"], ["https://tec.openplanner.team/stops/Bnivace2", "https://tec.openplanner.team/stops/Bnivrec2"], ["https://tec.openplanner.team/stops/Bviravi2", "https://tec.openplanner.team/stops/Bvirduj2"], ["https://tec.openplanner.team/stops/H4ar172b", "https://tec.openplanner.team/stops/H4ho120a"], ["https://tec.openplanner.team/stops/Bnilhau1", "https://tec.openplanner.team/stops/Bnilspe2"], ["https://tec.openplanner.team/stops/LVAbloe1", "https://tec.openplanner.team/stops/LVAmaas1"], ["https://tec.openplanner.team/stops/H1pa117a", "https://tec.openplanner.team/stops/H1pa166b"], ["https://tec.openplanner.team/stops/Bjodbat1", "https://tec.openplanner.team/stops/Bjodpce1"], ["https://tec.openplanner.team/stops/X908asa", "https://tec.openplanner.team/stops/X951acb"], ["https://tec.openplanner.team/stops/H1hi123b", "https://tec.openplanner.team/stops/H1hi124b"], ["https://tec.openplanner.team/stops/X825agb", "https://tec.openplanner.team/stops/X826aga"], ["https://tec.openplanner.team/stops/N347aca", "https://tec.openplanner.team/stops/X347aab"], ["https://tec.openplanner.team/stops/Cladura5", "https://tec.openplanner.team/stops/NC23aeb"], ["https://tec.openplanner.team/stops/X812ama", "https://tec.openplanner.team/stops/X812aqa"], ["https://tec.openplanner.team/stops/N543bab", "https://tec.openplanner.team/stops/N543bfb"], ["https://tec.openplanner.team/stops/LWaanto2", "https://tec.openplanner.team/stops/LWacime1"], ["https://tec.openplanner.team/stops/N202aia", "https://tec.openplanner.team/stops/N204ajb"], ["https://tec.openplanner.team/stops/Bgdhdet1", "https://tec.openplanner.team/stops/Bwaak102"], ["https://tec.openplanner.team/stops/LbAhenk1", "https://tec.openplanner.team/stops/LhBdorf1"], ["https://tec.openplanner.team/stops/N506afa", "https://tec.openplanner.team/stops/N506ajb"], ["https://tec.openplanner.team/stops/Cfmmart2", "https://tec.openplanner.team/stops/Cfmsncb1"], ["https://tec.openplanner.team/stops/X824ala", "https://tec.openplanner.team/stops/X824alb"], ["https://tec.openplanner.team/stops/LOltill1", "https://tec.openplanner.team/stops/LOltill2"], ["https://tec.openplanner.team/stops/H1mj123a", "https://tec.openplanner.team/stops/H1mj123b"], ["https://tec.openplanner.team/stops/N551anb", "https://tec.openplanner.team/stops/N551aoa"], ["https://tec.openplanner.team/stops/LCvneu-2", "https://tec.openplanner.team/stops/LHrparc1"], ["https://tec.openplanner.team/stops/N501bba", "https://tec.openplanner.team/stops/N501cda"], ["https://tec.openplanner.team/stops/H1cv104a", "https://tec.openplanner.team/stops/H1lm105b"], ["https://tec.openplanner.team/stops/X602ada", "https://tec.openplanner.team/stops/X602apb"], ["https://tec.openplanner.team/stops/H2ha135c", "https://tec.openplanner.team/stops/H2tr246a"], ["https://tec.openplanner.team/stops/LaAnorm1", "https://tec.openplanner.team/stops/LrTbahn2"], ["https://tec.openplanner.team/stops/N501cqb", "https://tec.openplanner.team/stops/N501ctb"], ["https://tec.openplanner.team/stops/N505aob", "https://tec.openplanner.team/stops/N579abb"], ["https://tec.openplanner.team/stops/X902anb", "https://tec.openplanner.team/stops/X902bcb"], ["https://tec.openplanner.team/stops/Ccpblpo2", "https://tec.openplanner.team/stops/H2ch123c"], ["https://tec.openplanner.team/stops/NH01ana", "https://tec.openplanner.team/stops/NH01aub"], ["https://tec.openplanner.team/stops/H1do117a", "https://tec.openplanner.team/stops/H1do124a"], ["https://tec.openplanner.team/stops/Bnivaba2", "https://tec.openplanner.team/stops/Bnivrsa1"], ["https://tec.openplanner.team/stops/H1fl133c", "https://tec.openplanner.team/stops/H1fl137a"], ["https://tec.openplanner.team/stops/X986aea", "https://tec.openplanner.team/stops/X986afa"], ["https://tec.openplanner.team/stops/H1gn149a", "https://tec.openplanner.team/stops/H1gq153b"], ["https://tec.openplanner.team/stops/Bgzddmo2", "https://tec.openplanner.team/stops/Bgzdgli1"], ["https://tec.openplanner.team/stops/LHUtrin2", "https://tec.openplanner.team/stops/NL76bca"], ["https://tec.openplanner.team/stops/Lagpass1", "https://tec.openplanner.team/stops/Lagpass2"], ["https://tec.openplanner.team/stops/N346aab", "https://tec.openplanner.team/stops/N346ada"], ["https://tec.openplanner.team/stops/H4fl179a", "https://tec.openplanner.team/stops/H4fl179b"], ["https://tec.openplanner.team/stops/X804alb", "https://tec.openplanner.team/stops/X804alc"], ["https://tec.openplanner.team/stops/Bwatnro2", "https://tec.openplanner.team/stops/Bwatnrs1"], ["https://tec.openplanner.team/stops/LLrc_ip3", "https://tec.openplanner.team/stops/LWMchpl2"], ["https://tec.openplanner.team/stops/N501haa", "https://tec.openplanner.team/stops/N501hxa"], ["https://tec.openplanner.team/stops/Brixmar3", "https://tec.openplanner.team/stops/Brixpbs2"], ["https://tec.openplanner.team/stops/Cchba03", "https://tec.openplanner.team/stops/CMba1"], ["https://tec.openplanner.team/stops/H1nm138b", "https://tec.openplanner.team/stops/H1si155b"], ["https://tec.openplanner.team/stops/H5rx137a", "https://tec.openplanner.team/stops/H5rx138a"], ["https://tec.openplanner.team/stops/X660aaa", "https://tec.openplanner.team/stops/X660aba"], ["https://tec.openplanner.team/stops/Cdogrro2", "https://tec.openplanner.team/stops/Cstplac2"], ["https://tec.openplanner.team/stops/X719abb", "https://tec.openplanner.team/stops/X719ada"], ["https://tec.openplanner.team/stops/LREgar-1", "https://tec.openplanner.team/stops/LREgare1"], ["https://tec.openplanner.team/stops/H5pe125a", "https://tec.openplanner.team/stops/H5pe127b"], ["https://tec.openplanner.team/stops/X670aha", "https://tec.openplanner.team/stops/X670ara"], ["https://tec.openplanner.team/stops/H4an107b", "https://tec.openplanner.team/stops/H4pp121b"], ["https://tec.openplanner.team/stops/H4ea129a", "https://tec.openplanner.team/stops/H4ea132b"], ["https://tec.openplanner.team/stops/LDAcite2", "https://tec.openplanner.team/stops/LDArich1"], ["https://tec.openplanner.team/stops/H2sv212a", "https://tec.openplanner.team/stops/H2sv217b"], ["https://tec.openplanner.team/stops/Cmtplac4", "https://tec.openplanner.team/stops/Cmtplac8"], ["https://tec.openplanner.team/stops/X911aia", "https://tec.openplanner.team/stops/X911anb"], ["https://tec.openplanner.team/stops/N501hia", "https://tec.openplanner.team/stops/N501mqa"], ["https://tec.openplanner.team/stops/Bbcohou3", "https://tec.openplanner.team/stops/Bhenasc1"], ["https://tec.openplanner.team/stops/N874afa", "https://tec.openplanner.team/stops/N874aha"], ["https://tec.openplanner.team/stops/X774ahb", "https://tec.openplanner.team/stops/X775aga"], ["https://tec.openplanner.team/stops/Cgplutt1", "https://tec.openplanner.team/stops/H2gy108a"], ["https://tec.openplanner.team/stops/LGetroi1", "https://tec.openplanner.team/stops/LSIgera1"], ["https://tec.openplanner.team/stops/N540aka", "https://tec.openplanner.team/stops/N540alb"], ["https://tec.openplanner.team/stops/LeI39--3", "https://tec.openplanner.team/stops/LeI39--4"], ["https://tec.openplanner.team/stops/X813aab", "https://tec.openplanner.team/stops/X813aca"], ["https://tec.openplanner.team/stops/H4an107a", "https://tec.openplanner.team/stops/H4or115a"], ["https://tec.openplanner.team/stops/LVMfoli1", "https://tec.openplanner.team/stops/LVMfoli2"], ["https://tec.openplanner.team/stops/N232bva", "https://tec.openplanner.team/stops/N260aea"], ["https://tec.openplanner.team/stops/Llonaes1", "https://tec.openplanner.team/stops/Lloretr2"], ["https://tec.openplanner.team/stops/N515aib", "https://tec.openplanner.team/stops/N515ata"], ["https://tec.openplanner.team/stops/LHEcoll1", "https://tec.openplanner.team/stops/LHEepur2"], ["https://tec.openplanner.team/stops/N507aab", "https://tec.openplanner.team/stops/NL68aaa"], ["https://tec.openplanner.team/stops/LAmvent1", "https://tec.openplanner.team/stops/LAmvent3"], ["https://tec.openplanner.team/stops/Bottath1", "https://tec.openplanner.team/stops/Bottgar3"], ["https://tec.openplanner.team/stops/Bgercen2", "https://tec.openplanner.team/stops/NB33aia"], ["https://tec.openplanner.team/stops/Cbimonu2", "https://tec.openplanner.team/stops/Cthalou2"], ["https://tec.openplanner.team/stops/LWAlong2", "https://tec.openplanner.team/stops/LWAloui1"], ["https://tec.openplanner.team/stops/Ccoh1211", "https://tec.openplanner.team/stops/Cronova1"], ["https://tec.openplanner.team/stops/Btubren1", "https://tec.openplanner.team/stops/Bvirrbo1"], ["https://tec.openplanner.team/stops/N553afa", "https://tec.openplanner.team/stops/N553ajb"], ["https://tec.openplanner.team/stops/X634aca", "https://tec.openplanner.team/stops/X634aea"], ["https://tec.openplanner.team/stops/N222aeb", "https://tec.openplanner.team/stops/X222azb"], ["https://tec.openplanner.team/stops/N501ima", "https://tec.openplanner.team/stops/N501nca"], ["https://tec.openplanner.team/stops/H3br100a", "https://tec.openplanner.team/stops/H3br110a"], ["https://tec.openplanner.team/stops/LHNgend2", "https://tec.openplanner.team/stops/LHNgend3"], ["https://tec.openplanner.team/stops/N501fya", "https://tec.openplanner.team/stops/N501iga"], ["https://tec.openplanner.team/stops/Cfrmon3", "https://tec.openplanner.team/stops/Cfrmonu1"], ["https://tec.openplanner.team/stops/LAUcose2", "https://tec.openplanner.team/stops/LFdbagu2"], ["https://tec.openplanner.team/stops/N161aab", "https://tec.openplanner.team/stops/N161aeb"], ["https://tec.openplanner.team/stops/H1te185b", "https://tec.openplanner.team/stops/H1te187b"], ["https://tec.openplanner.team/stops/X910adb", "https://tec.openplanner.team/stops/X910aia"], ["https://tec.openplanner.team/stops/Bsaupco1", "https://tec.openplanner.team/stops/Bsaupco2"], ["https://tec.openplanner.team/stops/LAUbirv1", "https://tec.openplanner.team/stops/LClflor1"], ["https://tec.openplanner.team/stops/X788ada", "https://tec.openplanner.team/stops/X788adb"], ["https://tec.openplanner.team/stops/Lhemilm1", "https://tec.openplanner.team/stops/Lhemilm2"], ["https://tec.openplanner.team/stops/LMfange2", "https://tec.openplanner.team/stops/LMfbacu1"], ["https://tec.openplanner.team/stops/H2an109a", "https://tec.openplanner.team/stops/H2ml114a"], ["https://tec.openplanner.team/stops/LFMkrut1", "https://tec.openplanner.team/stops/LVu03--1"], ["https://tec.openplanner.team/stops/Crobass2", "https://tec.openplanner.team/stops/Cromonn1"], ["https://tec.openplanner.team/stops/LmI129-1", "https://tec.openplanner.team/stops/LmI129-2"], ["https://tec.openplanner.team/stops/X782akb", "https://tec.openplanner.team/stops/X782ala"], ["https://tec.openplanner.team/stops/N209abb", "https://tec.openplanner.team/stops/N209afa"], ["https://tec.openplanner.team/stops/N562bia", "https://tec.openplanner.team/stops/N562bkb"], ["https://tec.openplanner.team/stops/Cvtgsar2", "https://tec.openplanner.team/stops/Cvthoeu1"], ["https://tec.openplanner.team/stops/LrEdic11", "https://tec.openplanner.team/stops/LrEviel2"], ["https://tec.openplanner.team/stops/Lmohomv2", "https://tec.openplanner.team/stops/Lmoweri1"], ["https://tec.openplanner.team/stops/Lvcfogu1", "https://tec.openplanner.team/stops/Lvcvand2"], ["https://tec.openplanner.team/stops/X983abb", "https://tec.openplanner.team/stops/X986aab"], ["https://tec.openplanner.team/stops/Cfnegli2", "https://tec.openplanner.team/stops/N162aea"], ["https://tec.openplanner.team/stops/Blemwob1", "https://tec.openplanner.team/stops/Blemwob2"], ["https://tec.openplanner.team/stops/LFCvoge3", "https://tec.openplanner.team/stops/LWRchem2"], ["https://tec.openplanner.team/stops/Bottcco2", "https://tec.openplanner.team/stops/Bottcro2"], ["https://tec.openplanner.team/stops/Bcrnsge2", "https://tec.openplanner.team/stops/Bsgeqpb1"], ["https://tec.openplanner.team/stops/H4ch113a", "https://tec.openplanner.team/stops/H4vx364d"], ["https://tec.openplanner.team/stops/Cmyedpa2", "https://tec.openplanner.team/stops/Cmyronc2"], ["https://tec.openplanner.team/stops/LMvrabo2", "https://tec.openplanner.team/stops/LSpcarr2"], ["https://tec.openplanner.team/stops/Bbryfon2", "https://tec.openplanner.team/stops/Bwagdeb2"], ["https://tec.openplanner.team/stops/LWNbeto2", "https://tec.openplanner.team/stops/LWNfani2"], ["https://tec.openplanner.team/stops/Lqbchat1", "https://tec.openplanner.team/stops/Lqbeg--1"], ["https://tec.openplanner.team/stops/N202afa", "https://tec.openplanner.team/stops/N204alb"], ["https://tec.openplanner.team/stops/LVLeg--1", "https://tec.openplanner.team/stops/LVLeg--2"], ["https://tec.openplanner.team/stops/LHUalbe1", "https://tec.openplanner.team/stops/LHUpost4"], ["https://tec.openplanner.team/stops/H4ho120a", "https://tec.openplanner.team/stops/H4ho121a"], ["https://tec.openplanner.team/stops/X758aba", "https://tec.openplanner.team/stops/X758aca"], ["https://tec.openplanner.team/stops/Bfelcen1", "https://tec.openplanner.team/stops/Bfelcsa1"], ["https://tec.openplanner.team/stops/X813aaa", "https://tec.openplanner.team/stops/X857abb"], ["https://tec.openplanner.team/stops/Bjod7co2", "https://tec.openplanner.team/stops/Bjodeco3"], ["https://tec.openplanner.team/stops/H1wa136b", "https://tec.openplanner.team/stops/H1wa137a"], ["https://tec.openplanner.team/stops/Lvejeha2", "https://tec.openplanner.team/stops/Lvelobe2"], ["https://tec.openplanner.team/stops/H4pe126a", "https://tec.openplanner.team/stops/H4pe128b"], ["https://tec.openplanner.team/stops/LwL100-2", "https://tec.openplanner.team/stops/LwLkirc2"], ["https://tec.openplanner.team/stops/N579aba", "https://tec.openplanner.team/stops/N579acb"], ["https://tec.openplanner.team/stops/Ldihvce2", "https://tec.openplanner.team/stops/Ldineuf2"], ["https://tec.openplanner.team/stops/H2tr249a", "https://tec.openplanner.team/stops/H2tr256b"], ["https://tec.openplanner.team/stops/Bbealbu4", "https://tec.openplanner.team/stops/Bbealou1"], ["https://tec.openplanner.team/stops/X773aha", "https://tec.openplanner.team/stops/X773aoa"], ["https://tec.openplanner.team/stops/Cprcits1", "https://tec.openplanner.team/stops/Cprvsar2"], ["https://tec.openplanner.team/stops/X713aba", "https://tec.openplanner.team/stops/X713acb"], ["https://tec.openplanner.team/stops/X769aba", "https://tec.openplanner.team/stops/X769abb"], ["https://tec.openplanner.team/stops/X639aja", "https://tec.openplanner.team/stops/X639ana"], ["https://tec.openplanner.team/stops/N534ayb", "https://tec.openplanner.team/stops/N534byb"], ["https://tec.openplanner.team/stops/H2jo162b", "https://tec.openplanner.team/stops/H2lh129a"], ["https://tec.openplanner.team/stops/LHEgare2", "https://tec.openplanner.team/stops/LHEpriv1"], ["https://tec.openplanner.team/stops/Cgocnor4", "https://tec.openplanner.team/stops/Cgosoux2"], ["https://tec.openplanner.team/stops/N343akb", "https://tec.openplanner.team/stops/N343alb"], ["https://tec.openplanner.team/stops/Lcemalv2", "https://tec.openplanner.team/stops/Lcemalv3"], ["https://tec.openplanner.team/stops/LMNheme1", "https://tec.openplanner.team/stops/LMNswar1"], ["https://tec.openplanner.team/stops/LTIdjal2", "https://tec.openplanner.team/stops/LTIp%C3%A9pi1"], ["https://tec.openplanner.team/stops/X595afc", "https://tec.openplanner.team/stops/X796aha"], ["https://tec.openplanner.team/stops/N538acb", "https://tec.openplanner.team/stops/N538akb"], ["https://tec.openplanner.team/stops/LElgerd3", "https://tec.openplanner.team/stops/LOumaro1"], ["https://tec.openplanner.team/stops/LeYauss2", "https://tec.openplanner.team/stops/LeYdorf1"], ["https://tec.openplanner.team/stops/H4bd110b", "https://tec.openplanner.team/stops/H4ht172a"], ["https://tec.openplanner.team/stops/LCxcouv1", "https://tec.openplanner.team/stops/LCxwade2"], ["https://tec.openplanner.team/stops/X666aba", "https://tec.openplanner.team/stops/X666acb"], ["https://tec.openplanner.team/stops/Caibras2", "https://tec.openplanner.team/stops/Caiecol1"], ["https://tec.openplanner.team/stops/Bpercsp2", "https://tec.openplanner.team/stops/Bpergar1"], ["https://tec.openplanner.team/stops/N501bfb", "https://tec.openplanner.team/stops/N501bfz"], ["https://tec.openplanner.team/stops/N301aaa", "https://tec.openplanner.team/stops/N301ahb"], ["https://tec.openplanner.team/stops/Bgercen2", "https://tec.openplanner.team/stops/Bgrhcro1"], ["https://tec.openplanner.team/stops/LAMmc--1", "https://tec.openplanner.team/stops/LAMmc--2"], ["https://tec.openplanner.team/stops/LsVgils2", "https://tec.openplanner.team/stops/LsVhunn1"], ["https://tec.openplanner.team/stops/LMIpatr4", "https://tec.openplanner.team/stops/LMIterr2"], ["https://tec.openplanner.team/stops/LJU493-1", "https://tec.openplanner.team/stops/LWinavi1"], ["https://tec.openplanner.team/stops/Bclgmev1", "https://tec.openplanner.team/stops/Bclgmev2"], ["https://tec.openplanner.team/stops/N516aoa", "https://tec.openplanner.team/stops/N516aob"], ["https://tec.openplanner.team/stops/H2ch121a", "https://tec.openplanner.team/stops/H2ch121b"], ["https://tec.openplanner.team/stops/Bbeaegl1", "https://tec.openplanner.team/stops/Bbeaegl2"], ["https://tec.openplanner.team/stops/N516aha", "https://tec.openplanner.team/stops/N516aib"], ["https://tec.openplanner.team/stops/Bjanfer1", "https://tec.openplanner.team/stops/NR30aba"], ["https://tec.openplanner.team/stops/H1si154a", "https://tec.openplanner.team/stops/H1si169b"], ["https://tec.openplanner.team/stops/N535abb", "https://tec.openplanner.team/stops/N535ada"], ["https://tec.openplanner.team/stops/Bnivhon2", "https://tec.openplanner.team/stops/Bthivil2"], ["https://tec.openplanner.team/stops/X695aha", "https://tec.openplanner.team/stops/X695ala"], ["https://tec.openplanner.team/stops/Lsnbure1", "https://tec.openplanner.team/stops/Ltihorl2"], ["https://tec.openplanner.team/stops/Bgntffo1", "https://tec.openplanner.team/stops/Bgntffo2"], ["https://tec.openplanner.team/stops/Lceourt1", "https://tec.openplanner.team/stops/Lceourt2"], ["https://tec.openplanner.team/stops/LVPeg--1", "https://tec.openplanner.team/stops/LVPeg--2"], ["https://tec.openplanner.team/stops/LBEbelf1", "https://tec.openplanner.team/stops/LBEoblu1"], ["https://tec.openplanner.team/stops/N211aea", "https://tec.openplanner.team/stops/N211awb"], ["https://tec.openplanner.team/stops/LHZbren1", "https://tec.openplanner.team/stops/LHZcime1"], ["https://tec.openplanner.team/stops/N514aaa", "https://tec.openplanner.team/stops/N514aka"], ["https://tec.openplanner.team/stops/H1fr114a", "https://tec.openplanner.team/stops/H1fr129a"], ["https://tec.openplanner.team/stops/Bblaeur1", "https://tec.openplanner.team/stops/Bblamer2"], ["https://tec.openplanner.team/stops/Lmntast1", "https://tec.openplanner.team/stops/Lmntast2"], ["https://tec.openplanner.team/stops/Bblapin1", "https://tec.openplanner.team/stops/Bblapri1"], ["https://tec.openplanner.team/stops/X808aab", "https://tec.openplanner.team/stops/X808adb"], ["https://tec.openplanner.team/stops/LmRkreu1", "https://tec.openplanner.team/stops/LmRkreu2"], ["https://tec.openplanner.team/stops/N201aec", "https://tec.openplanner.team/stops/N201aef"], ["https://tec.openplanner.team/stops/N501mia", "https://tec.openplanner.team/stops/N501mib"], ["https://tec.openplanner.team/stops/H2sb221b", "https://tec.openplanner.team/stops/H2sb223a"], ["https://tec.openplanner.team/stops/Cgxmorg1", "https://tec.openplanner.team/stops/Cgxprad1"], ["https://tec.openplanner.team/stops/N343aja", "https://tec.openplanner.team/stops/N343aob"], ["https://tec.openplanner.team/stops/N311aba", "https://tec.openplanner.team/stops/N311aca"], ["https://tec.openplanner.team/stops/Bbcohou4", "https://tec.openplanner.team/stops/H2ec110b"], ["https://tec.openplanner.team/stops/H1hh114a", "https://tec.openplanner.team/stops/H1hh118a"], ["https://tec.openplanner.team/stops/LSPecho1", "https://tec.openplanner.team/stops/LSPgend1"], ["https://tec.openplanner.team/stops/H1do120a", "https://tec.openplanner.team/stops/H1do131d"], ["https://tec.openplanner.team/stops/H2mo119b", "https://tec.openplanner.team/stops/H2mo125b"], ["https://tec.openplanner.team/stops/LwAkape1", "https://tec.openplanner.team/stops/LwArabo1"], ["https://tec.openplanner.team/stops/Lvehopi4", "https://tec.openplanner.team/stops/Lvehopi5"], ["https://tec.openplanner.team/stops/LLNcruc1", "https://tec.openplanner.team/stops/LLNcruc2"], ["https://tec.openplanner.team/stops/H2ha142a", "https://tec.openplanner.team/stops/H2ha142b"], ["https://tec.openplanner.team/stops/N349aab", "https://tec.openplanner.team/stops/N351aqa"], ["https://tec.openplanner.team/stops/LGHplai1", "https://tec.openplanner.team/stops/LTPbeau1"], ["https://tec.openplanner.team/stops/Bgnvpco3", "https://tec.openplanner.team/stops/Blasren2"], ["https://tec.openplanner.team/stops/H4er125a", "https://tec.openplanner.team/stops/H4gu109a"], ["https://tec.openplanner.team/stops/LKmdani2", "https://tec.openplanner.team/stops/LKmdrie2"], ["https://tec.openplanner.team/stops/Ccogibr2", "https://tec.openplanner.team/stops/Ccovies1"], ["https://tec.openplanner.team/stops/Cauromi2", "https://tec.openplanner.team/stops/N543awh"], ["https://tec.openplanner.team/stops/H2sb235a", "https://tec.openplanner.team/stops/H2sb238a"], ["https://tec.openplanner.team/stops/LVPcoeu2", "https://tec.openplanner.team/stops/LVPduvi2"], ["https://tec.openplanner.team/stops/Clrcomb1", "https://tec.openplanner.team/stops/Clrhava2"], ["https://tec.openplanner.team/stops/X952aha", "https://tec.openplanner.team/stops/X954adb"], ["https://tec.openplanner.team/stops/Brsga151", "https://tec.openplanner.team/stops/Bwategp1"], ["https://tec.openplanner.team/stops/N584bnb", "https://tec.openplanner.team/stops/N584cba"], ["https://tec.openplanner.team/stops/Cbmmafr1", "https://tec.openplanner.team/stops/Cssgare2"], ["https://tec.openplanner.team/stops/N524abb", "https://tec.openplanner.team/stops/N524amb"], ["https://tec.openplanner.team/stops/X739aja", "https://tec.openplanner.team/stops/X912aga"], ["https://tec.openplanner.team/stops/LVEeg--1", "https://tec.openplanner.team/stops/LVEeg--2"], ["https://tec.openplanner.team/stops/H4bo182a", "https://tec.openplanner.team/stops/H4og210b"], ["https://tec.openplanner.team/stops/H2lc169d", "https://tec.openplanner.team/stops/H2lc172b"], ["https://tec.openplanner.team/stops/LFProt-2", "https://tec.openplanner.team/stops/LVukabi1"], ["https://tec.openplanner.team/stops/LeUnisp1", "https://tec.openplanner.team/stops/LeUwert3"], ["https://tec.openplanner.team/stops/NL78aja", "https://tec.openplanner.team/stops/NL78aka"], ["https://tec.openplanner.team/stops/LVSeg--2", "https://tec.openplanner.team/stops/LVSslin1"], ["https://tec.openplanner.team/stops/H1bb117b", "https://tec.openplanner.team/stops/H1bb120a"], ["https://tec.openplanner.team/stops/Bgntcom1", "https://tec.openplanner.team/stops/Bgnttma1"], ["https://tec.openplanner.team/stops/Llgangl2", "https://tec.openplanner.team/stops/Llgelis1"], ["https://tec.openplanner.team/stops/X937aha", "https://tec.openplanner.team/stops/X937aia"], ["https://tec.openplanner.team/stops/X870afa", "https://tec.openplanner.team/stops/X870aib"], ["https://tec.openplanner.team/stops/X607ada", "https://tec.openplanner.team/stops/X607adb"], ["https://tec.openplanner.team/stops/X342aeb", "https://tec.openplanner.team/stops/X354aca"], ["https://tec.openplanner.team/stops/N134acb", "https://tec.openplanner.team/stops/N134aja"], ["https://tec.openplanner.team/stops/LFTeg--1", "https://tec.openplanner.team/stops/LFTneur*"], ["https://tec.openplanner.team/stops/Bolgcsa1", "https://tec.openplanner.team/stops/Bolgegl2"], ["https://tec.openplanner.team/stops/LRRoser2", "https://tec.openplanner.team/stops/LTaeg--1"], ["https://tec.openplanner.team/stops/H4fr144a", "https://tec.openplanner.team/stops/H4ty328a"], ["https://tec.openplanner.team/stops/Ladotto1", "https://tec.openplanner.team/stops/Ladotto2"], ["https://tec.openplanner.team/stops/H1mm122a", "https://tec.openplanner.team/stops/H1mm122b"], ["https://tec.openplanner.team/stops/LeUcamp2", "https://tec.openplanner.team/stops/LMedoum2"], ["https://tec.openplanner.team/stops/Lheloti1", "https://tec.openplanner.team/stops/Lheterm*"], ["https://tec.openplanner.team/stops/Blingar1", "https://tec.openplanner.team/stops/Brach121"], ["https://tec.openplanner.team/stops/H4pl121b", "https://tec.openplanner.team/stops/H4pl122b"], ["https://tec.openplanner.team/stops/Cgocitn1", "https://tec.openplanner.team/stops/Cgomoul1"], ["https://tec.openplanner.team/stops/H2sv221a", "https://tec.openplanner.team/stops/H2sv221b"], ["https://tec.openplanner.team/stops/LBrneli2", "https://tec.openplanner.team/stops/LMApape2"], ["https://tec.openplanner.team/stops/H5el101a", "https://tec.openplanner.team/stops/H5el102b"], ["https://tec.openplanner.team/stops/N558ada", "https://tec.openplanner.team/stops/N558agb"], ["https://tec.openplanner.team/stops/H5rx104b", "https://tec.openplanner.team/stops/H5rx105a"], ["https://tec.openplanner.team/stops/Bnivn971", "https://tec.openplanner.team/stops/Bnivvai2"], ["https://tec.openplanner.team/stops/N109aaa", "https://tec.openplanner.team/stops/N109aia"], ["https://tec.openplanner.team/stops/LFsbasc2", "https://tec.openplanner.team/stops/LVSpn--2"], ["https://tec.openplanner.team/stops/LWOsass2", "https://tec.openplanner.team/stops/LWOwa162"], ["https://tec.openplanner.team/stops/H4th140a", "https://tec.openplanner.team/stops/H4th141b"], ["https://tec.openplanner.team/stops/N517aaa", "https://tec.openplanner.team/stops/N517aba"], ["https://tec.openplanner.team/stops/N118akb", "https://tec.openplanner.team/stops/N147abb"], ["https://tec.openplanner.team/stops/N501gga", "https://tec.openplanner.team/stops/N501lqa"], ["https://tec.openplanner.team/stops/N338aab", "https://tec.openplanner.team/stops/N338agb"], ["https://tec.openplanner.team/stops/N501cmd", "https://tec.openplanner.team/stops/N501emb"], ["https://tec.openplanner.team/stops/LHemoul1", "https://tec.openplanner.team/stops/LOUherm1"], ["https://tec.openplanner.team/stops/H1me112a", "https://tec.openplanner.team/stops/H1me117e"], ["https://tec.openplanner.team/stops/Canh1941", "https://tec.openplanner.team/stops/Cfosurs2"], ["https://tec.openplanner.team/stops/LJEloum1", "https://tec.openplanner.team/stops/LJEloum2"], ["https://tec.openplanner.team/stops/Cmyfoym1", "https://tec.openplanner.team/stops/Cmyquen1"], ["https://tec.openplanner.team/stops/H1au100a", "https://tec.openplanner.team/stops/H1au102b"], ["https://tec.openplanner.team/stops/LAMcoll1", "https://tec.openplanner.team/stops/LAMjeha1"], ["https://tec.openplanner.team/stops/N118ada", "https://tec.openplanner.team/stops/N118ala"], ["https://tec.openplanner.team/stops/H1hw123b", "https://tec.openplanner.team/stops/H1so136b"], ["https://tec.openplanner.team/stops/Bhvlbet1", "https://tec.openplanner.team/stops/Bhvlpla2"], ["https://tec.openplanner.team/stops/N519adb", "https://tec.openplanner.team/stops/N519alb"], ["https://tec.openplanner.team/stops/Lcheg--2", "https://tec.openplanner.team/stops/Lvieg--1"], ["https://tec.openplanner.team/stops/X897aba", "https://tec.openplanner.team/stops/X897aod"], ["https://tec.openplanner.team/stops/LMIgare1", "https://tec.openplanner.team/stops/LMIpatr3"], ["https://tec.openplanner.team/stops/LbOdorf1", "https://tec.openplanner.team/stops/LbOkalv2"], ["https://tec.openplanner.team/stops/LnUcamp1", "https://tec.openplanner.team/stops/LnUhohe1"], ["https://tec.openplanner.team/stops/Ceqmeti1", "https://tec.openplanner.team/stops/H1er113a"], ["https://tec.openplanner.team/stops/Cchoues2", "https://tec.openplanner.team/stops/CMoues1"], ["https://tec.openplanner.team/stops/H4wi167a", "https://tec.openplanner.team/stops/H4wi170a"], ["https://tec.openplanner.team/stops/X604aja", "https://tec.openplanner.team/stops/X604ajb"], ["https://tec.openplanner.team/stops/LOucarr4", "https://tec.openplanner.team/stops/LOuplac3"], ["https://tec.openplanner.team/stops/Llginte2", "https://tec.openplanner.team/stops/Llglill1"], ["https://tec.openplanner.team/stops/Beclbse2", "https://tec.openplanner.team/stops/Beclesp2"], ["https://tec.openplanner.team/stops/X850afb", "https://tec.openplanner.team/stops/X850agb"], ["https://tec.openplanner.team/stops/LOdcris2", "https://tec.openplanner.team/stops/LOdmonu3"], ["https://tec.openplanner.team/stops/H1ho122b", "https://tec.openplanner.team/stops/H1ho134b"], ["https://tec.openplanner.team/stops/X663aac", "https://tec.openplanner.team/stops/X769arb"], ["https://tec.openplanner.team/stops/Bllnfle1", "https://tec.openplanner.team/stops/Bmsggra2"], ["https://tec.openplanner.team/stops/X640aoa", "https://tec.openplanner.team/stops/X641aia"], ["https://tec.openplanner.team/stops/N244aea", "https://tec.openplanner.team/stops/N244aub"], ["https://tec.openplanner.team/stops/Crsapol2", "https://tec.openplanner.team/stops/Crsmonu2"], ["https://tec.openplanner.team/stops/N505akb", "https://tec.openplanner.team/stops/N511aia"], ["https://tec.openplanner.team/stops/Bbuzeta1", "https://tec.openplanner.team/stops/Cobhaut2"], ["https://tec.openplanner.team/stops/NL76aha", "https://tec.openplanner.team/stops/NL77aba"], ["https://tec.openplanner.team/stops/N501jfb", "https://tec.openplanner.team/stops/N501jgb"], ["https://tec.openplanner.team/stops/H4co107a", "https://tec.openplanner.team/stops/H4co158a"], ["https://tec.openplanner.team/stops/LFEhoup1", "https://tec.openplanner.team/stops/X595aha"], ["https://tec.openplanner.team/stops/LBgcroi4", "https://tec.openplanner.team/stops/LGmhedo1"], ["https://tec.openplanner.team/stops/X811abb", "https://tec.openplanner.team/stops/X811ama"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/NH03ada"], ["https://tec.openplanner.team/stops/H2na131a", "https://tec.openplanner.team/stops/H2na131b"], ["https://tec.openplanner.team/stops/LMYlieg1", "https://tec.openplanner.team/stops/LMYroin2"], ["https://tec.openplanner.team/stops/Bnivbng1", "https://tec.openplanner.team/stops/Bptrmar1"], ["https://tec.openplanner.team/stops/LGrchpl2", "https://tec.openplanner.team/stops/LORroma1"], ["https://tec.openplanner.team/stops/LOccarr1", "https://tec.openplanner.team/stops/LOccarr2"], ["https://tec.openplanner.team/stops/Cwgcroi2", "https://tec.openplanner.team/stops/Cwgdeba1"], ["https://tec.openplanner.team/stops/H1cu110a", "https://tec.openplanner.team/stops/H1fl136b"], ["https://tec.openplanner.team/stops/H5wo125a", "https://tec.openplanner.team/stops/H5wo136b"], ["https://tec.openplanner.team/stops/H4bw101b", "https://tec.openplanner.team/stops/H4co150a"], ["https://tec.openplanner.team/stops/H1ca100b", "https://tec.openplanner.team/stops/H1ne144a"], ["https://tec.openplanner.team/stops/LPTblan1", "https://tec.openplanner.team/stops/LPTblan2"], ["https://tec.openplanner.team/stops/Cjxcoll1", "https://tec.openplanner.team/stops/Cjxcoll2"], ["https://tec.openplanner.team/stops/H1fr125b", "https://tec.openplanner.team/stops/H1lb153b"], ["https://tec.openplanner.team/stops/Bohnbra1", "https://tec.openplanner.team/stops/Bohnbra2"], ["https://tec.openplanner.team/stops/Loucoti1", "https://tec.openplanner.team/stops/Loucoti2"], ["https://tec.openplanner.team/stops/X985acb", "https://tec.openplanner.team/stops/X985adb"], ["https://tec.openplanner.team/stops/Lsnbrac2", "https://tec.openplanner.team/stops/Lsnbrac4"], ["https://tec.openplanner.team/stops/Cragill1", "https://tec.openplanner.team/stops/Cragill2"], ["https://tec.openplanner.team/stops/Llgjasm2", "https://tec.openplanner.team/stops/Llgmont2"], ["https://tec.openplanner.team/stops/H4ga159a", "https://tec.openplanner.team/stops/H4ga164a"], ["https://tec.openplanner.team/stops/X651aab", "https://tec.openplanner.team/stops/X651abb"], ["https://tec.openplanner.team/stops/X869aea", "https://tec.openplanner.team/stops/X871aeb"], ["https://tec.openplanner.team/stops/Bvirflu1", "https://tec.openplanner.team/stops/Bvirfpo1"], ["https://tec.openplanner.team/stops/LSGcolo2", "https://tec.openplanner.team/stops/LSkchwa1"], ["https://tec.openplanner.team/stops/N209aca", "https://tec.openplanner.team/stops/N209acb"], ["https://tec.openplanner.team/stops/X782afa", "https://tec.openplanner.team/stops/X782agb"], ["https://tec.openplanner.team/stops/LKmeg--1", "https://tec.openplanner.team/stops/LKmmelo1"], ["https://tec.openplanner.team/stops/Lghalle1", "https://tec.openplanner.team/stops/Lghprea2"], ["https://tec.openplanner.team/stops/Cfabnat1", "https://tec.openplanner.team/stops/Cfaecmo1"], ["https://tec.openplanner.team/stops/Cnabult3", "https://tec.openplanner.team/stops/Cnabult4"], ["https://tec.openplanner.team/stops/Cprcalv2", "https://tec.openplanner.team/stops/Cprgran2"], ["https://tec.openplanner.team/stops/N501ila", "https://tec.openplanner.team/stops/N501ilb"], ["https://tec.openplanner.team/stops/X826ada", "https://tec.openplanner.team/stops/X826ahb"], ["https://tec.openplanner.team/stops/X662arb", "https://tec.openplanner.team/stops/X662ata"], ["https://tec.openplanner.team/stops/N501etb", "https://tec.openplanner.team/stops/N501ety"], ["https://tec.openplanner.team/stops/H4jm117c", "https://tec.openplanner.team/stops/H4jm118a"], ["https://tec.openplanner.team/stops/LDaeg--2", "https://tec.openplanner.team/stops/LLYtir-1"], ["https://tec.openplanner.team/stops/H4ga161a", "https://tec.openplanner.team/stops/H4ga167a"], ["https://tec.openplanner.team/stops/Lchplai1", "https://tec.openplanner.team/stops/Lchtche1"], ["https://tec.openplanner.team/stops/Ljeblum2", "https://tec.openplanner.team/stops/Ljegare1"], ["https://tec.openplanner.team/stops/N531aqb", "https://tec.openplanner.team/stops/N531asc"], ["https://tec.openplanner.team/stops/LmHschm1", "https://tec.openplanner.team/stops/LmHumge1"], ["https://tec.openplanner.team/stops/LFFcouv2", "https://tec.openplanner.team/stops/LSCchap2"], ["https://tec.openplanner.team/stops/X757ahb", "https://tec.openplanner.team/stops/X757amb"], ["https://tec.openplanner.team/stops/LGecite1", "https://tec.openplanner.team/stops/LGevygh1"], ["https://tec.openplanner.team/stops/H4bs110b", "https://tec.openplanner.team/stops/H4bs113a"], ["https://tec.openplanner.team/stops/H2sb238b", "https://tec.openplanner.team/stops/H2sb271a"], ["https://tec.openplanner.team/stops/H1po139b", "https://tec.openplanner.team/stops/H5st162b"], ["https://tec.openplanner.team/stops/H4qu230a", "https://tec.openplanner.team/stops/H4qu230b"], ["https://tec.openplanner.team/stops/Lfhhaso2", "https://tec.openplanner.team/stops/Lfh-sci2"], ["https://tec.openplanner.team/stops/H4ff118a", "https://tec.openplanner.team/stops/H4ff122a"], ["https://tec.openplanner.team/stops/N106aba", "https://tec.openplanner.team/stops/N106abb"], ["https://tec.openplanner.team/stops/Bsaumlp1", "https://tec.openplanner.team/stops/Bwlhcsr2"], ["https://tec.openplanner.team/stops/X714aba", "https://tec.openplanner.team/stops/X714abb"], ["https://tec.openplanner.team/stops/Cmmplac1", "https://tec.openplanner.team/stops/Cmmplac2"], ["https://tec.openplanner.team/stops/LFebas-2", "https://tec.openplanner.team/stops/LRIhous2"], ["https://tec.openplanner.team/stops/X793aga", "https://tec.openplanner.team/stops/X793ahb"], ["https://tec.openplanner.team/stops/N152aaf", "https://tec.openplanner.team/stops/N152abe"], ["https://tec.openplanner.team/stops/Bezegar2", "https://tec.openplanner.team/stops/Btiegma1"], ["https://tec.openplanner.team/stops/Lveanne1", "https://tec.openplanner.team/stops/Lvewall1"], ["https://tec.openplanner.team/stops/X771ala", "https://tec.openplanner.team/stops/X771alb"], ["https://tec.openplanner.team/stops/LPleclu1", "https://tec.openplanner.team/stops/LPlpomp1"], ["https://tec.openplanner.team/stops/Cciqueu1", "https://tec.openplanner.team/stops/NC02avb"], ["https://tec.openplanner.team/stops/H1hv131b", "https://tec.openplanner.team/stops/H1hv135a"], ["https://tec.openplanner.team/stops/LAMrich1", "https://tec.openplanner.team/stops/LJEpaqu1"], ["https://tec.openplanner.team/stops/H4ga169a", "https://tec.openplanner.team/stops/H4ga170a"], ["https://tec.openplanner.team/stops/N241aea", "https://tec.openplanner.team/stops/N241aeb"], ["https://tec.openplanner.team/stops/N352aca", "https://tec.openplanner.team/stops/N367ada"], ["https://tec.openplanner.team/stops/N121aaa", "https://tec.openplanner.team/stops/N121aab"], ["https://tec.openplanner.team/stops/H5at235a", "https://tec.openplanner.team/stops/H5at235b"], ["https://tec.openplanner.team/stops/X638arb", "https://tec.openplanner.team/stops/X639aba"], ["https://tec.openplanner.team/stops/Btlbegl1", "https://tec.openplanner.team/stops/Btlbegl4"], ["https://tec.openplanner.team/stops/LCscarr3", "https://tec.openplanner.team/stops/LCscarr4"], ["https://tec.openplanner.team/stops/N501dza", "https://tec.openplanner.team/stops/N501jra"], ["https://tec.openplanner.team/stops/N580abb", "https://tec.openplanner.team/stops/N580afb"], ["https://tec.openplanner.team/stops/Lhrbass1", "https://tec.openplanner.team/stops/Lhrdron2"], ["https://tec.openplanner.team/stops/Cjufrat1", "https://tec.openplanner.team/stops/Cjufrat2"], ["https://tec.openplanner.team/stops/Cptccas1", "https://tec.openplanner.team/stops/Cptccas2"], ["https://tec.openplanner.team/stops/X902aca", "https://tec.openplanner.team/stops/X902bcb"], ["https://tec.openplanner.team/stops/Creespi1", "https://tec.openplanner.team/stops/Crewath1"], ["https://tec.openplanner.team/stops/X614awb", "https://tec.openplanner.team/stops/X615ava"], ["https://tec.openplanner.team/stops/LREgar-2", "https://tec.openplanner.team/stops/LREgrot3"], ["https://tec.openplanner.team/stops/Cmtdepo1", "https://tec.openplanner.team/stops/Cmtdepo2"], ["https://tec.openplanner.team/stops/Bvlvmar2", "https://tec.openplanner.team/stops/Bvlvpco2"], ["https://tec.openplanner.team/stops/LWaatel2", "https://tec.openplanner.team/stops/LWazoni1"], ["https://tec.openplanner.team/stops/N501fub", "https://tec.openplanner.team/stops/N501fuz"], ["https://tec.openplanner.team/stops/H4lg104a", "https://tec.openplanner.team/stops/H4ta115b"], ["https://tec.openplanner.team/stops/H1al107b", "https://tec.openplanner.team/stops/H1al108b"], ["https://tec.openplanner.team/stops/Llmdeba1", "https://tec.openplanner.team/stops/Llmdela1"], ["https://tec.openplanner.team/stops/X754arb", "https://tec.openplanner.team/stops/X754asb"], ["https://tec.openplanner.team/stops/H1au102a", "https://tec.openplanner.team/stops/H1au102b"], ["https://tec.openplanner.team/stops/X938aab", "https://tec.openplanner.team/stops/X938aba"], ["https://tec.openplanner.team/stops/H4ru244b", "https://tec.openplanner.team/stops/H4wc374a"], ["https://tec.openplanner.team/stops/H1gg146a", "https://tec.openplanner.team/stops/H1pe130b"], ["https://tec.openplanner.team/stops/X754ahb", "https://tec.openplanner.team/stops/X754akb"], ["https://tec.openplanner.team/stops/LCleg--1", "https://tec.openplanner.team/stops/LHChoof4"], ["https://tec.openplanner.team/stops/X805ahb", "https://tec.openplanner.team/stops/X869aeb"], ["https://tec.openplanner.team/stops/LHUbatt1", "https://tec.openplanner.team/stops/LHUecte2"], ["https://tec.openplanner.team/stops/N351afb", "https://tec.openplanner.team/stops/N351aha"], ["https://tec.openplanner.team/stops/LBEssab2", "https://tec.openplanner.team/stops/LTRpeec2"], ["https://tec.openplanner.team/stops/Bgntffo2", "https://tec.openplanner.team/stops/Bgntpla2"], ["https://tec.openplanner.team/stops/H4lz124b", "https://tec.openplanner.team/stops/H4lz128b"], ["https://tec.openplanner.team/stops/LTRchpl1", "https://tec.openplanner.team/stops/LTRmosb2"], ["https://tec.openplanner.team/stops/N516ahb", "https://tec.openplanner.team/stops/N516anb"], ["https://tec.openplanner.team/stops/LHHgare2", "https://tec.openplanner.team/stops/LHHtill1"], ["https://tec.openplanner.team/stops/LeYraaf2", "https://tec.openplanner.team/stops/LeYwess2"], ["https://tec.openplanner.team/stops/H4mo155a", "https://tec.openplanner.team/stops/H4rx175a"], ["https://tec.openplanner.team/stops/N549aab", "https://tec.openplanner.team/stops/N578aca"], ["https://tec.openplanner.team/stops/N516amb", "https://tec.openplanner.team/stops/N581abb"], ["https://tec.openplanner.team/stops/LhSfrei1", "https://tec.openplanner.team/stops/LhSgete3"], ["https://tec.openplanner.team/stops/Cnapair2", "https://tec.openplanner.team/stops/Cnating2"], ["https://tec.openplanner.team/stops/Lhuchev2", "https://tec.openplanner.team/stops/Lhuferm1"], ["https://tec.openplanner.team/stops/LTOcime1", "https://tec.openplanner.team/stops/LTOcime2"], ["https://tec.openplanner.team/stops/N539azb", "https://tec.openplanner.team/stops/N539bab"], ["https://tec.openplanner.team/stops/LJU51--1", "https://tec.openplanner.team/stops/LJUfort2"], ["https://tec.openplanner.team/stops/H4lp125a", "https://tec.openplanner.team/stops/H4lp126a"], ["https://tec.openplanner.team/stops/Bitrhou1", "https://tec.openplanner.team/stops/Bitrpar1"], ["https://tec.openplanner.team/stops/LTPnoup2", "https://tec.openplanner.team/stops/LTPsatr2"], ["https://tec.openplanner.team/stops/H5rx106a", "https://tec.openplanner.team/stops/H5rx147a"], ["https://tec.openplanner.team/stops/Bgzddge4", "https://tec.openplanner.team/stops/Bgzddur2"], ["https://tec.openplanner.team/stops/X994aja", "https://tec.openplanner.team/stops/X995add"], ["https://tec.openplanner.team/stops/Bhengou1", "https://tec.openplanner.team/stops/Bhensei1"], ["https://tec.openplanner.team/stops/X834aab", "https://tec.openplanner.team/stops/X860aab"], ["https://tec.openplanner.team/stops/N203aba", "https://tec.openplanner.team/stops/N560aaa"], ["https://tec.openplanner.team/stops/N534aub", "https://tec.openplanner.team/stops/N534bwa"], ["https://tec.openplanner.team/stops/X728aaa", "https://tec.openplanner.team/stops/X748aca"], ["https://tec.openplanner.team/stops/Cgyobse2", "https://tec.openplanner.team/stops/Cgyplvi1"], ["https://tec.openplanner.team/stops/H1ho124b", "https://tec.openplanner.team/stops/H1ho130b"], ["https://tec.openplanner.team/stops/N134ajb", "https://tec.openplanner.team/stops/N135bib"], ["https://tec.openplanner.team/stops/Ccyga05", "https://tec.openplanner.team/stops/NH01acb"], ["https://tec.openplanner.team/stops/Lagjado1", "https://tec.openplanner.team/stops/Lagpaix2"], ["https://tec.openplanner.team/stops/X817aaa", "https://tec.openplanner.team/stops/X817aeb"], ["https://tec.openplanner.team/stops/H2ch100c", "https://tec.openplanner.team/stops/H2ch108b"], ["https://tec.openplanner.team/stops/X512ajb", "https://tec.openplanner.team/stops/X713ala"], ["https://tec.openplanner.team/stops/X371aeb", "https://tec.openplanner.team/stops/X371aga"], ["https://tec.openplanner.team/stops/LkEgds-1", "https://tec.openplanner.team/stops/LkEkirc2"], ["https://tec.openplanner.team/stops/X889aaa", "https://tec.openplanner.team/stops/X889abb"], ["https://tec.openplanner.team/stops/N270aed", "https://tec.openplanner.team/stops/N270afa"], ["https://tec.openplanner.team/stops/LTRcarr1", "https://tec.openplanner.team/stops/LTRryta2"], ["https://tec.openplanner.team/stops/Cchsud0", "https://tec.openplanner.team/stops/Cchvil1"], ["https://tec.openplanner.team/stops/LBk79--1", "https://tec.openplanner.team/stops/LMsheid1"], ["https://tec.openplanner.team/stops/LhSgete3", "https://tec.openplanner.team/stops/LhSkape2"], ["https://tec.openplanner.team/stops/N501hqa", "https://tec.openplanner.team/stops/N501iba"], ["https://tec.openplanner.team/stops/Bclgapi2", "https://tec.openplanner.team/stops/Bdvmalo2"], ["https://tec.openplanner.team/stops/Bmsgfon1", "https://tec.openplanner.team/stops/Bmsgstj1"], ["https://tec.openplanner.team/stops/X896aia", "https://tec.openplanner.team/stops/X898aga"], ["https://tec.openplanner.team/stops/X727aea", "https://tec.openplanner.team/stops/X727afa"], ["https://tec.openplanner.team/stops/H1by104b", "https://tec.openplanner.team/stops/H1sy148b"], ["https://tec.openplanner.team/stops/Cctchea1", "https://tec.openplanner.team/stops/Cctchea2"], ["https://tec.openplanner.team/stops/LHggeer2", "https://tec.openplanner.team/stops/LOMdodi2"], ["https://tec.openplanner.team/stops/Ctucour1", "https://tec.openplanner.team/stops/Ctuecol1"], ["https://tec.openplanner.team/stops/N533aca", "https://tec.openplanner.team/stops/N551afa"], ["https://tec.openplanner.team/stops/H4cp103a", "https://tec.openplanner.team/stops/H4tp145b"], ["https://tec.openplanner.team/stops/X609adb", "https://tec.openplanner.team/stops/X609aeb"], ["https://tec.openplanner.team/stops/Bgembhe1", "https://tec.openplanner.team/stops/N541aeb"], ["https://tec.openplanner.team/stops/Cfamonu2", "https://tec.openplanner.team/stops/Cfamonu8"], ["https://tec.openplanner.team/stops/Clomari1", "https://tec.openplanner.team/stops/CMmari1"], ["https://tec.openplanner.team/stops/N501gsa", "https://tec.openplanner.team/stops/N501hba"], ["https://tec.openplanner.team/stops/Bblabos1", "https://tec.openplanner.team/stops/Bblacar1"], ["https://tec.openplanner.team/stops/Ccyfroi1", "https://tec.openplanner.team/stops/NH01aka"], ["https://tec.openplanner.team/stops/H4fr141b", "https://tec.openplanner.team/stops/H4ma411b"], ["https://tec.openplanner.team/stops/H1je360a", "https://tec.openplanner.team/stops/H1je360b"], ["https://tec.openplanner.team/stops/Lhuferm1", "https://tec.openplanner.team/stops/Lhurfay1"], ["https://tec.openplanner.team/stops/Cvpsncb1", "https://tec.openplanner.team/stops/Cvpsncb2"], ["https://tec.openplanner.team/stops/N562ala", "https://tec.openplanner.team/stops/N562alb"], ["https://tec.openplanner.team/stops/LbEkirc*", "https://tec.openplanner.team/stops/LwR140-2"], ["https://tec.openplanner.team/stops/LOuouff1", "https://tec.openplanner.team/stops/LOuouff2"], ["https://tec.openplanner.team/stops/Bottcli2", "https://tec.openplanner.team/stops/Bottvil2"], ["https://tec.openplanner.team/stops/H4pl116b", "https://tec.openplanner.team/stops/H4pl122b"], ["https://tec.openplanner.team/stops/N136aeb", "https://tec.openplanner.team/stops/N143ada"], ["https://tec.openplanner.team/stops/N137ajb", "https://tec.openplanner.team/stops/N161aab"], ["https://tec.openplanner.team/stops/LOmmer-2", "https://tec.openplanner.team/stops/LOmrela1"], ["https://tec.openplanner.team/stops/X812aia", "https://tec.openplanner.team/stops/X812aya"], ["https://tec.openplanner.team/stops/X860aaa", "https://tec.openplanner.team/stops/X860aab"], ["https://tec.openplanner.team/stops/N574aab", "https://tec.openplanner.team/stops/N576aea"], ["https://tec.openplanner.team/stops/LSEcent1", "https://tec.openplanner.team/stops/LSEquar1"], ["https://tec.openplanner.team/stops/Crgegli1", "https://tec.openplanner.team/stops/Crglyre1"], ["https://tec.openplanner.team/stops/N236acb", "https://tec.openplanner.team/stops/N236adb"], ["https://tec.openplanner.team/stops/X801aga", "https://tec.openplanner.team/stops/X801agb"], ["https://tec.openplanner.team/stops/H2ha139b", "https://tec.openplanner.team/stops/H2sb233c"], ["https://tec.openplanner.team/stops/Bspkbeu2", "https://tec.openplanner.team/stops/Bstetre2"], ["https://tec.openplanner.team/stops/X840abb", "https://tec.openplanner.team/stops/X840acb"], ["https://tec.openplanner.team/stops/LSAchef1", "https://tec.openplanner.team/stops/LSAvieu2"], ["https://tec.openplanner.team/stops/H4tg162b", "https://tec.openplanner.team/stops/H4tg170b"], ["https://tec.openplanner.team/stops/N203aaa", "https://tec.openplanner.team/stops/N203abb"], ["https://tec.openplanner.team/stops/Lghjans1", "https://tec.openplanner.team/stops/Lghmeun3"], ["https://tec.openplanner.team/stops/LhGrote1", "https://tec.openplanner.team/stops/LkEzoll2"], ["https://tec.openplanner.team/stops/LNCfawe1", "https://tec.openplanner.team/stops/LRRchea6"], ["https://tec.openplanner.team/stops/X390ajb", "https://tec.openplanner.team/stops/X390aka"], ["https://tec.openplanner.team/stops/LHMcruc1", "https://tec.openplanner.team/stops/LHMcruc2"], ["https://tec.openplanner.team/stops/N548afb", "https://tec.openplanner.team/stops/N569ajb"], ["https://tec.openplanner.team/stops/H1me112b", "https://tec.openplanner.team/stops/H1me117f"], ["https://tec.openplanner.team/stops/X723aba", "https://tec.openplanner.team/stops/X723alb"], ["https://tec.openplanner.team/stops/Bcseaba1", "https://tec.openplanner.team/stops/Bcseaba2"], ["https://tec.openplanner.team/stops/LGecime1", "https://tec.openplanner.team/stops/LGemari2"], ["https://tec.openplanner.team/stops/H1bu139a", "https://tec.openplanner.team/stops/H1bu139b"], ["https://tec.openplanner.team/stops/H1en101a", "https://tec.openplanner.team/stops/H1mk107a"], ["https://tec.openplanner.team/stops/Bsmgbsa1", "https://tec.openplanner.team/stops/Bsmgbsa2"], ["https://tec.openplanner.team/stops/N350ada", "https://tec.openplanner.team/stops/N350aeb"], ["https://tec.openplanner.team/stops/X869aeb", "https://tec.openplanner.team/stops/X873aaa"], ["https://tec.openplanner.team/stops/H1mm125a", "https://tec.openplanner.team/stops/H1mm132a"], ["https://tec.openplanner.team/stops/N506ava", "https://tec.openplanner.team/stops/N506awa"], ["https://tec.openplanner.team/stops/LBEpier2", "https://tec.openplanner.team/stops/LNipre-2"], ["https://tec.openplanner.team/stops/N390afa", "https://tec.openplanner.team/stops/N390afb"], ["https://tec.openplanner.team/stops/Cjubien2", "https://tec.openplanner.team/stops/Cjuquai1"], ["https://tec.openplanner.team/stops/Bernegl4", "https://tec.openplanner.team/stops/Bernrar2"], ["https://tec.openplanner.team/stops/N501hrb", "https://tec.openplanner.team/stops/N501hua"], ["https://tec.openplanner.team/stops/Bmasegl2", "https://tec.openplanner.team/stops/NB33aeb"], ["https://tec.openplanner.team/stops/Cpthaud2", "https://tec.openplanner.team/stops/Cptrebe1"], ["https://tec.openplanner.team/stops/Bhlvgar2", "https://tec.openplanner.team/stops/Blpgcmo2"], ["https://tec.openplanner.team/stops/X877abb", "https://tec.openplanner.team/stops/X877aca"], ["https://tec.openplanner.team/stops/N135bea", "https://tec.openplanner.team/stops/N135bha"], ["https://tec.openplanner.team/stops/Cmlbras2", "https://tec.openplanner.team/stops/Cmlhotv2"], ["https://tec.openplanner.team/stops/Lflcle-4", "https://tec.openplanner.team/stops/Lflcle-6"], ["https://tec.openplanner.team/stops/LTPec--2", "https://tec.openplanner.team/stops/LTPplco2"], ["https://tec.openplanner.team/stops/X747alb", "https://tec.openplanner.team/stops/X754afa"], ["https://tec.openplanner.team/stops/N533ahb", "https://tec.openplanner.team/stops/N551aba"], ["https://tec.openplanner.team/stops/Bmrlcch2", "https://tec.openplanner.team/stops/Bmrlsau2"], ["https://tec.openplanner.team/stops/X982azb", "https://tec.openplanner.team/stops/X982cda"], ["https://tec.openplanner.team/stops/Bmelmqu1", "https://tec.openplanner.team/stops/Bsmgbsa1"], ["https://tec.openplanner.team/stops/LmTzoll2", "https://tec.openplanner.team/stops/LtEnach2"], ["https://tec.openplanner.team/stops/H1sy144b", "https://tec.openplanner.team/stops/H1sy144c"], ["https://tec.openplanner.team/stops/LAYcher2", "https://tec.openplanner.team/stops/LAYcorn2"], ["https://tec.openplanner.team/stops/Bbxlmid1", "https://tec.openplanner.team/stops/Bsgipha3"], ["https://tec.openplanner.team/stops/LGLeg--2", "https://tec.openplanner.team/stops/LGLlaur2"], ["https://tec.openplanner.team/stops/H5bl120b", "https://tec.openplanner.team/stops/H5gr135a"], ["https://tec.openplanner.team/stops/CMdesc1", "https://tec.openplanner.team/stops/CMdesc2"], ["https://tec.openplanner.team/stops/LLnlimb2", "https://tec.openplanner.team/stops/LORroma1"], ["https://tec.openplanner.team/stops/H1so143a", "https://tec.openplanner.team/stops/H1so143b"], ["https://tec.openplanner.team/stops/Bbxlple2", "https://tec.openplanner.team/stops/Bettgle2"], ["https://tec.openplanner.team/stops/LAMweha1", "https://tec.openplanner.team/stops/LAMweha2"], ["https://tec.openplanner.team/stops/LLncime2", "https://tec.openplanner.team/stops/LPUmer-1"], ["https://tec.openplanner.team/stops/Ladandr1", "https://tec.openplanner.team/stops/Ladotto2"], ["https://tec.openplanner.team/stops/X879aja", "https://tec.openplanner.team/stops/X879aob"], ["https://tec.openplanner.team/stops/X601abb", "https://tec.openplanner.team/stops/X601ada"], ["https://tec.openplanner.team/stops/H4hx109b", "https://tec.openplanner.team/stops/H4hx124a"], ["https://tec.openplanner.team/stops/H4rm108b", "https://tec.openplanner.team/stops/H4ta115a"], ["https://tec.openplanner.team/stops/LlNbene1", "https://tec.openplanner.team/stops/LlNbene2"], ["https://tec.openplanner.team/stops/Cgrchea1", "https://tec.openplanner.team/stops/Cgrlorm1"], ["https://tec.openplanner.team/stops/LCFcafe1", "https://tec.openplanner.team/stops/LCFeg--2"], ["https://tec.openplanner.team/stops/LHUcomp2", "https://tec.openplanner.team/stops/LHUpala1"], ["https://tec.openplanner.team/stops/X917aab", "https://tec.openplanner.team/stops/X917aba"], ["https://tec.openplanner.team/stops/H2sv211a", "https://tec.openplanner.team/stops/H2sv220a"], ["https://tec.openplanner.team/stops/X750ara", "https://tec.openplanner.team/stops/X750bha"], ["https://tec.openplanner.team/stops/H4pi131a", "https://tec.openplanner.team/stops/H4pi131b"], ["https://tec.openplanner.team/stops/Cplstfa1", "https://tec.openplanner.team/stops/Cplstfa2"], ["https://tec.openplanner.team/stops/X660afb", "https://tec.openplanner.team/stops/X840aeb"], ["https://tec.openplanner.team/stops/Bmlncha1", "https://tec.openplanner.team/stops/Bmlnegl1"], ["https://tec.openplanner.team/stops/X946acb", "https://tec.openplanner.team/stops/X946adb"], ["https://tec.openplanner.team/stops/LBEabba1", "https://tec.openplanner.team/stops/LBEcomm1"], ["https://tec.openplanner.team/stops/X758aab", "https://tec.openplanner.team/stops/X840acb"], ["https://tec.openplanner.team/stops/Bmartil1", "https://tec.openplanner.team/stops/Csawagn2"], ["https://tec.openplanner.team/stops/Blpgeco1", "https://tec.openplanner.team/stops/Blpglon2"], ["https://tec.openplanner.team/stops/Llochar4", "https://tec.openplanner.team/stops/Lloross2"], ["https://tec.openplanner.team/stops/Cmacart2", "https://tec.openplanner.team/stops/Cmamarc1"], ["https://tec.openplanner.team/stops/X943aca", "https://tec.openplanner.team/stops/X943afb"], ["https://tec.openplanner.team/stops/X616aab", "https://tec.openplanner.team/stops/X616aea"], ["https://tec.openplanner.team/stops/N120aaa", "https://tec.openplanner.team/stops/N120ama"], ["https://tec.openplanner.team/stops/NR38aca", "https://tec.openplanner.team/stops/NR38ada"], ["https://tec.openplanner.team/stops/X369aaa", "https://tec.openplanner.team/stops/X858abb"], ["https://tec.openplanner.team/stops/Ccychco1", "https://tec.openplanner.team/stops/NH01aha"], ["https://tec.openplanner.team/stops/Clb4dgi1", "https://tec.openplanner.team/stops/Clbbonn3"], ["https://tec.openplanner.team/stops/Cgoetun2", "https://tec.openplanner.team/stops/Cgopier3"], ["https://tec.openplanner.team/stops/H4rm108a", "https://tec.openplanner.team/stops/H4ta118a"], ["https://tec.openplanner.team/stops/H2ca102a", "https://tec.openplanner.team/stops/H2ml114a"], ["https://tec.openplanner.team/stops/X818aja", "https://tec.openplanner.team/stops/X818ajb"], ["https://tec.openplanner.team/stops/H1ht136a", "https://tec.openplanner.team/stops/H1ht136b"], ["https://tec.openplanner.team/stops/X633aib", "https://tec.openplanner.team/stops/X633ama"], ["https://tec.openplanner.team/stops/Cgynoir2", "https://tec.openplanner.team/stops/Cgytrie1"], ["https://tec.openplanner.team/stops/X730aab", "https://tec.openplanner.team/stops/X730aba"], ["https://tec.openplanner.team/stops/H2tr247a", "https://tec.openplanner.team/stops/H2tr253b"], ["https://tec.openplanner.team/stops/H5me105a", "https://tec.openplanner.team/stops/H5me106a"], ["https://tec.openplanner.team/stops/X898aha", "https://tec.openplanner.team/stops/X898aia"], ["https://tec.openplanner.team/stops/Cradest2", "https://tec.openplanner.team/stops/Crasabl2"], ["https://tec.openplanner.team/stops/X687aja", "https://tec.openplanner.team/stops/X687akb"], ["https://tec.openplanner.team/stops/Cbmplac1", "https://tec.openplanner.team/stops/Cbmpopr2"], ["https://tec.openplanner.team/stops/H1cd111a", "https://tec.openplanner.team/stops/H1cd111d"], ["https://tec.openplanner.team/stops/Ccacoup1", "https://tec.openplanner.team/stops/Cmregli4"], ["https://tec.openplanner.team/stops/Bolgegl2", "https://tec.openplanner.team/stops/Bolgsha2"], ["https://tec.openplanner.team/stops/LLescie2", "https://tec.openplanner.team/stops/LVRchpl1"], ["https://tec.openplanner.team/stops/Bitrhou2", "https://tec.openplanner.team/stops/Bitrpar1"], ["https://tec.openplanner.team/stops/X925akb", "https://tec.openplanner.team/stops/X925apa"], ["https://tec.openplanner.team/stops/H4bo113a", "https://tec.openplanner.team/stops/H4bo118d"], ["https://tec.openplanner.team/stops/N568aab", "https://tec.openplanner.team/stops/N568aea"], ["https://tec.openplanner.team/stops/Llgjenn2", "https://tec.openplanner.team/stops/Llgsnap3"], ["https://tec.openplanner.team/stops/Lvegend2", "https://tec.openplanner.team/stops/Lvevieu2"], ["https://tec.openplanner.team/stops/N343ada", "https://tec.openplanner.team/stops/X344acb"], ["https://tec.openplanner.team/stops/Clodesc2", "https://tec.openplanner.team/stops/Clomari2"], ["https://tec.openplanner.team/stops/LOCerzy1", "https://tec.openplanner.team/stops/LOCponc*"], ["https://tec.openplanner.team/stops/Lagviad1", "https://tec.openplanner.team/stops/Lceourt1"], ["https://tec.openplanner.team/stops/H4fa126a", "https://tec.openplanner.team/stops/H4fa128a"], ["https://tec.openplanner.team/stops/H1ne141a", "https://tec.openplanner.team/stops/H1ne141b"], ["https://tec.openplanner.team/stops/X616aha", "https://tec.openplanner.team/stops/X625ada"], ["https://tec.openplanner.team/stops/N539asa", "https://tec.openplanner.team/stops/N539beb"], ["https://tec.openplanner.team/stops/LVAakke2", "https://tec.openplanner.team/stops/LVAgemm2"], ["https://tec.openplanner.team/stops/X664aka", "https://tec.openplanner.team/stops/X664akb"], ["https://tec.openplanner.team/stops/H1te191a", "https://tec.openplanner.team/stops/H1te191b"], ["https://tec.openplanner.team/stops/N501dha", "https://tec.openplanner.team/stops/N501jtb"], ["https://tec.openplanner.team/stops/Lchsaec1", "https://tec.openplanner.team/stops/LHOmc--2"], ["https://tec.openplanner.team/stops/Bhanwav2", "https://tec.openplanner.team/stops/NL37alb"], ["https://tec.openplanner.team/stops/N562aya", "https://tec.openplanner.team/stops/N562azb"], ["https://tec.openplanner.team/stops/X637aab", "https://tec.openplanner.team/stops/X637ara"], ["https://tec.openplanner.team/stops/N218aaa", "https://tec.openplanner.team/stops/N218aab"], ["https://tec.openplanner.team/stops/N141aaa", "https://tec.openplanner.team/stops/N141aqa"], ["https://tec.openplanner.team/stops/Llgbida1", "https://tec.openplanner.team/stops/Llgerac2"], ["https://tec.openplanner.team/stops/Bbauegl1", "https://tec.openplanner.team/stops/Bbaulos1"], ["https://tec.openplanner.team/stops/H1gi120a", "https://tec.openplanner.team/stops/H1gi120c"], ["https://tec.openplanner.team/stops/Lglcoun1", "https://tec.openplanner.team/stops/Lglvict2"], ["https://tec.openplanner.team/stops/LHUathe1", "https://tec.openplanner.team/stops/LHUeuro1"], ["https://tec.openplanner.team/stops/LaRkape1", "https://tec.openplanner.team/stops/LaRkape2"], ["https://tec.openplanner.team/stops/X316aab", "https://tec.openplanner.team/stops/X317aaa"], ["https://tec.openplanner.team/stops/N214aca", "https://tec.openplanner.team/stops/N214aea"], ["https://tec.openplanner.team/stops/LBPauto1", "https://tec.openplanner.team/stops/LBPmais2"], ["https://tec.openplanner.team/stops/N539axa", "https://tec.openplanner.team/stops/N539aza"], ["https://tec.openplanner.team/stops/Ljubrec1", "https://tec.openplanner.team/stops/Ljubrec2"], ["https://tec.openplanner.team/stops/N501lwa", "https://tec.openplanner.team/stops/N501lwb"], ["https://tec.openplanner.team/stops/N528amb", "https://tec.openplanner.team/stops/N528aqa"], ["https://tec.openplanner.team/stops/N543cia", "https://tec.openplanner.team/stops/N543cib"], ["https://tec.openplanner.team/stops/Bblarbe1", "https://tec.openplanner.team/stops/Bblarbe2"], ["https://tec.openplanner.team/stops/X979aka", "https://tec.openplanner.team/stops/X982bsa"], ["https://tec.openplanner.team/stops/N501gra", "https://tec.openplanner.team/stops/N501grf"], ["https://tec.openplanner.team/stops/Blhupqu1", "https://tec.openplanner.team/stops/Blhutma1"], ["https://tec.openplanner.team/stops/Bperrsr2", "https://tec.openplanner.team/stops/Bperwil1"], ["https://tec.openplanner.team/stops/H2sb236c", "https://tec.openplanner.team/stops/H2sb236d"], ["https://tec.openplanner.team/stops/N547aib", "https://tec.openplanner.team/stops/N548awa"], ["https://tec.openplanner.team/stops/Cgyplvi1", "https://tec.openplanner.team/stops/Cgyplvi2"], ["https://tec.openplanner.team/stops/Btubbsc1", "https://tec.openplanner.team/stops/Btubmon1"], ["https://tec.openplanner.team/stops/Ladclem1", "https://tec.openplanner.team/stops/Ladpire2"], ["https://tec.openplanner.team/stops/Lmocalv2", "https://tec.openplanner.team/stops/Lmochan2"], ["https://tec.openplanner.team/stops/Lpechin2", "https://tec.openplanner.team/stops/Lpegiet2"], ["https://tec.openplanner.team/stops/Cml3fon1", "https://tec.openplanner.team/stops/Cmlfeba1"], ["https://tec.openplanner.team/stops/Croegli1", "https://tec.openplanner.team/stops/Croplom4"], ["https://tec.openplanner.team/stops/Cvthoeu2", "https://tec.openplanner.team/stops/Cvtndam2"], ["https://tec.openplanner.team/stops/Bjaugaz2", "https://tec.openplanner.team/stops/Bjauvch2"], ["https://tec.openplanner.team/stops/N502abb", "https://tec.openplanner.team/stops/N509ana"], ["https://tec.openplanner.team/stops/Brixblh3", "https://tec.openplanner.team/stops/Brixpla1"], ["https://tec.openplanner.team/stops/N106aha", "https://tec.openplanner.team/stops/N106aib"], ["https://tec.openplanner.team/stops/X922aib", "https://tec.openplanner.team/stops/X922alb"], ["https://tec.openplanner.team/stops/LFFcouv1", "https://tec.openplanner.team/stops/LFFmonu1"], ["https://tec.openplanner.team/stops/X639acd", "https://tec.openplanner.team/stops/X639adb"], ["https://tec.openplanner.team/stops/Cgocalv4", "https://tec.openplanner.team/stops/Cgomoul1"], ["https://tec.openplanner.team/stops/LEMgren*", "https://tec.openplanner.team/stops/LMaburg4"], ["https://tec.openplanner.team/stops/Caibino2", "https://tec.openplanner.team/stops/Caioign4"], ["https://tec.openplanner.team/stops/LSSfrai1", "https://tec.openplanner.team/stops/LSSjeun2"], ["https://tec.openplanner.team/stops/Cci4bra1", "https://tec.openplanner.team/stops/NC02apb"], ["https://tec.openplanner.team/stops/N261adb", "https://tec.openplanner.team/stops/N261aea"], ["https://tec.openplanner.team/stops/X991afb", "https://tec.openplanner.team/stops/X991agb"], ["https://tec.openplanner.team/stops/Berngrt2", "https://tec.openplanner.team/stops/Bgemkal1"], ["https://tec.openplanner.team/stops/LSOchau1", "https://tec.openplanner.team/stops/LSOcime1"], ["https://tec.openplanner.team/stops/Bohnhan2", "https://tec.openplanner.team/stops/Bohnrph1"], ["https://tec.openplanner.team/stops/LHNhall2", "https://tec.openplanner.team/stops/LHNwaut2"], ["https://tec.openplanner.team/stops/Bcbqcha1", "https://tec.openplanner.team/stops/Bhalker1"], ["https://tec.openplanner.team/stops/X650akb", "https://tec.openplanner.team/stops/X650ama"], ["https://tec.openplanner.team/stops/H1gc123a", "https://tec.openplanner.team/stops/H1gc123b"], ["https://tec.openplanner.team/stops/N132acb", "https://tec.openplanner.team/stops/N134ajb"], ["https://tec.openplanner.team/stops/Cfnegli1", "https://tec.openplanner.team/stops/N162ada"], ["https://tec.openplanner.team/stops/Lhurfay1", "https://tec.openplanner.team/stops/LTHroch1"], ["https://tec.openplanner.team/stops/Cmcegli2", "https://tec.openplanner.team/stops/Cmcwir2"], ["https://tec.openplanner.team/stops/N513acb", "https://tec.openplanner.team/stops/N513bha"], ["https://tec.openplanner.team/stops/Bcercsa1", "https://tec.openplanner.team/stops/Bcerldo2"], ["https://tec.openplanner.team/stops/X662afb", "https://tec.openplanner.team/stops/X662ara"], ["https://tec.openplanner.team/stops/LBGvill2", "https://tec.openplanner.team/stops/LLnlimb2"], ["https://tec.openplanner.team/stops/Lvc4bra1", "https://tec.openplanner.team/stops/Lvcbalt2"], ["https://tec.openplanner.team/stops/Lcacaps2", "https://tec.openplanner.team/stops/Lcapisc1"], ["https://tec.openplanner.team/stops/H4ry132a", "https://tec.openplanner.team/stops/H4ry140a"], ["https://tec.openplanner.team/stops/LHUcomp1", "https://tec.openplanner.team/stops/LHUfali3"], ["https://tec.openplanner.team/stops/Cfrcoop3", "https://tec.openplanner.team/stops/Cfrplac4"], ["https://tec.openplanner.team/stops/H4ob109b", "https://tec.openplanner.team/stops/H4ob110b"], ["https://tec.openplanner.team/stops/Lalexpa1", "https://tec.openplanner.team/stops/Lalexpa2"], ["https://tec.openplanner.team/stops/Cwfcule2", "https://tec.openplanner.team/stops/Cwfzola1"], ["https://tec.openplanner.team/stops/Lprchat1", "https://tec.openplanner.team/stops/Lprorph1"], ["https://tec.openplanner.team/stops/LPLcond1", "https://tec.openplanner.team/stops/LRRchen2"], ["https://tec.openplanner.team/stops/Cmmceri2", "https://tec.openplanner.team/stops/Cmmcver1"], ["https://tec.openplanner.team/stops/LPRmc--3", "https://tec.openplanner.team/stops/LTRcite1"], ["https://tec.openplanner.team/stops/Cjualed1", "https://tec.openplanner.team/stops/Cjumest1"], ["https://tec.openplanner.team/stops/Cbiseur2", "https://tec.openplanner.team/stops/Ctuhouz2"], ["https://tec.openplanner.team/stops/X796acc", "https://tec.openplanner.team/stops/X796aga"], ["https://tec.openplanner.team/stops/N509ana", "https://tec.openplanner.team/stops/N510aaa"], ["https://tec.openplanner.team/stops/X601baa", "https://tec.openplanner.team/stops/X601bda"], ["https://tec.openplanner.team/stops/H1wg124b", "https://tec.openplanner.team/stops/H1wg131b"], ["https://tec.openplanner.team/stops/Ldimont1", "https://tec.openplanner.team/stops/Ldineuf2"], ["https://tec.openplanner.team/stops/X791aba", "https://tec.openplanner.team/stops/X791acb"], ["https://tec.openplanner.team/stops/N522ala", "https://tec.openplanner.team/stops/N522apb"], ["https://tec.openplanner.team/stops/X878ada", "https://tec.openplanner.team/stops/X879aqa"], ["https://tec.openplanner.team/stops/Llabrou2", "https://tec.openplanner.team/stops/Llaflot2"], ["https://tec.openplanner.team/stops/NL74acb", "https://tec.openplanner.team/stops/NL74aib"], ["https://tec.openplanner.team/stops/X641aob", "https://tec.openplanner.team/stops/X823agb"], ["https://tec.openplanner.team/stops/X804alb", "https://tec.openplanner.team/stops/X804bma"], ["https://tec.openplanner.team/stops/Lhr3jui2", "https://tec.openplanner.team/stops/Lhrbrou2"], ["https://tec.openplanner.team/stops/X614ahb", "https://tec.openplanner.team/stops/X614baa"], ["https://tec.openplanner.team/stops/N534bnh", "https://tec.openplanner.team/stops/N534boh"], ["https://tec.openplanner.team/stops/Baudstr1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/H2ca106a", "https://tec.openplanner.team/stops/H2ca106b"], ["https://tec.openplanner.team/stops/LNCchev1", "https://tec.openplanner.team/stops/LNCchev4"], ["https://tec.openplanner.team/stops/Bchgcha2", "https://tec.openplanner.team/stops/Btslpic6"], ["https://tec.openplanner.team/stops/N561aia", "https://tec.openplanner.team/stops/N584aqa"], ["https://tec.openplanner.team/stops/Ladloup2", "https://tec.openplanner.team/stops/Lvevert4"], ["https://tec.openplanner.team/stops/X658aab", "https://tec.openplanner.team/stops/X658aba"], ["https://tec.openplanner.team/stops/H1ch101b", "https://tec.openplanner.team/stops/H5me105a"], ["https://tec.openplanner.team/stops/H4tp145b", "https://tec.openplanner.team/stops/H4wr174b"], ["https://tec.openplanner.team/stops/H5wo127a", "https://tec.openplanner.team/stops/H5wo127b"], ["https://tec.openplanner.team/stops/X639aaa", "https://tec.openplanner.team/stops/X639aab"], ["https://tec.openplanner.team/stops/Bwspbos1", "https://tec.openplanner.team/stops/Bwspbos2"], ["https://tec.openplanner.team/stops/LLz21--1", "https://tec.openplanner.team/stops/LLz21--2"], ["https://tec.openplanner.team/stops/X624ahb", "https://tec.openplanner.team/stops/X624alb"], ["https://tec.openplanner.team/stops/X801cib", "https://tec.openplanner.team/stops/X836aaa"], ["https://tec.openplanner.team/stops/N118aaa", "https://tec.openplanner.team/stops/N155acb"], ["https://tec.openplanner.team/stops/Lsmgdry2", "https://tec.openplanner.team/stops/Lsmstad2"], ["https://tec.openplanner.team/stops/LOMbrou2", "https://tec.openplanner.team/stops/LOMeg--1"], ["https://tec.openplanner.team/stops/N260aab", "https://tec.openplanner.team/stops/N260afb"], ["https://tec.openplanner.team/stops/Cmlpbay2", "https://tec.openplanner.team/stops/Cmlrang1"], ["https://tec.openplanner.team/stops/H4do102b", "https://tec.openplanner.team/stops/H4sl155b"], ["https://tec.openplanner.team/stops/H4ty317a", "https://tec.openplanner.team/stops/H4ty317b"], ["https://tec.openplanner.team/stops/Lgrclin3", "https://tec.openplanner.team/stops/Lgrwill2"], ["https://tec.openplanner.team/stops/Loucham1", "https://tec.openplanner.team/stops/Lougare1"], ["https://tec.openplanner.team/stops/N230afa", "https://tec.openplanner.team/stops/N230afb"], ["https://tec.openplanner.team/stops/Loubiez2", "https://tec.openplanner.team/stops/Louvira1"], ["https://tec.openplanner.team/stops/Lbocorn2", "https://tec.openplanner.team/stops/Lbosart2"], ["https://tec.openplanner.team/stops/H4vx362a", "https://tec.openplanner.team/stops/H4vx362b"], ["https://tec.openplanner.team/stops/LoDcorn1", "https://tec.openplanner.team/stops/LoDulf-2"], ["https://tec.openplanner.team/stops/X612aaa", "https://tec.openplanner.team/stops/X612aeb"], ["https://tec.openplanner.team/stops/H4lu126a", "https://tec.openplanner.team/stops/H4mo193a"], ["https://tec.openplanner.team/stops/N579aab", "https://tec.openplanner.team/stops/N579aeb"], ["https://tec.openplanner.team/stops/LNAanne2", "https://tec.openplanner.team/stops/LSSfont1"], ["https://tec.openplanner.team/stops/H1hq124a", "https://tec.openplanner.team/stops/H1hq124b"], ["https://tec.openplanner.team/stops/N424aba", "https://tec.openplanner.team/stops/N424aca"], ["https://tec.openplanner.team/stops/Csygare3", "https://tec.openplanner.team/stops/Csygare4"], ["https://tec.openplanner.team/stops/Csschat1", "https://tec.openplanner.team/stops/Csspn2"], ["https://tec.openplanner.team/stops/H1cu126a", "https://tec.openplanner.team/stops/H1cu132b"], ["https://tec.openplanner.team/stops/N235aaa", "https://tec.openplanner.team/stops/N236anb"], ["https://tec.openplanner.team/stops/LNEcouc1", "https://tec.openplanner.team/stops/LNEgaul3"], ["https://tec.openplanner.team/stops/X818acb", "https://tec.openplanner.team/stops/X818ala"], ["https://tec.openplanner.team/stops/H2hg266b", "https://tec.openplanner.team/stops/H2hg270b"], ["https://tec.openplanner.team/stops/N564aea", "https://tec.openplanner.team/stops/N564afb"], ["https://tec.openplanner.team/stops/Bwatle31", "https://tec.openplanner.team/stops/Bwatras1"], ["https://tec.openplanner.team/stops/Lghgros1", "https://tec.openplanner.team/stops/Lghgros2"], ["https://tec.openplanner.team/stops/Boveklo1", "https://tec.openplanner.team/stops/Boveklo2"], ["https://tec.openplanner.team/stops/H2mi122b", "https://tec.openplanner.team/stops/H2mi123b"], ["https://tec.openplanner.team/stops/Ccigill1", "https://tec.openplanner.team/stops/Cmlavch1"], ["https://tec.openplanner.team/stops/Bsdabja1", "https://tec.openplanner.team/stops/Bvlvpco2"], ["https://tec.openplanner.team/stops/Bblagar2", "https://tec.openplanner.team/stops/Bblagar3"], ["https://tec.openplanner.team/stops/Cgocalv6", "https://tec.openplanner.team/stops/CMcalv2"], ["https://tec.openplanner.team/stops/LHUremy1", "https://tec.openplanner.team/stops/NL80aha"], ["https://tec.openplanner.team/stops/Cchmont2", "https://tec.openplanner.team/stops/Cchrmon4"], ["https://tec.openplanner.team/stops/NL75acb", "https://tec.openplanner.team/stops/NL75adb"], ["https://tec.openplanner.team/stops/N127aja", "https://tec.openplanner.team/stops/N134ahb"], ["https://tec.openplanner.team/stops/LMTdeho1", "https://tec.openplanner.team/stops/LMTvill2"], ["https://tec.openplanner.team/stops/Bgnvdep2", "https://tec.openplanner.team/stops/Bgnvtil2"], ["https://tec.openplanner.team/stops/X937ahb", "https://tec.openplanner.team/stops/X937aib"], ["https://tec.openplanner.team/stops/X342aca", "https://tec.openplanner.team/stops/X342acb"], ["https://tec.openplanner.team/stops/Blmlcim1", "https://tec.openplanner.team/stops/Blmlcim2"], ["https://tec.openplanner.team/stops/Lmabott1", "https://tec.openplanner.team/stops/Lmaetan*"], ["https://tec.openplanner.team/stops/N226aaa", "https://tec.openplanner.team/stops/N226ada"], ["https://tec.openplanner.team/stops/N531apa", "https://tec.openplanner.team/stops/N584apa"], ["https://tec.openplanner.team/stops/X307abb", "https://tec.openplanner.team/stops/X307adb"], ["https://tec.openplanner.team/stops/H4bh102c", "https://tec.openplanner.team/stops/H4bh102d"], ["https://tec.openplanner.team/stops/N134aha", "https://tec.openplanner.team/stops/N154aba"], ["https://tec.openplanner.team/stops/H4ef163b", "https://tec.openplanner.team/stops/H4fa125b"], ["https://tec.openplanner.team/stops/X950aba", "https://tec.openplanner.team/stops/X950ada"], ["https://tec.openplanner.team/stops/Lvichpl2", "https://tec.openplanner.team/stops/Lvieg--1"], ["https://tec.openplanner.team/stops/N525aia", "https://tec.openplanner.team/stops/N525aza"], ["https://tec.openplanner.team/stops/H4ta129b", "https://tec.openplanner.team/stops/H4ta130a"], ["https://tec.openplanner.team/stops/X609aka", "https://tec.openplanner.team/stops/X609akb"], ["https://tec.openplanner.team/stops/Llggrav1", "https://tec.openplanner.team/stops/Llgstap1"], ["https://tec.openplanner.team/stops/LVBmonu3", "https://tec.openplanner.team/stops/LVBvill1"], ["https://tec.openplanner.team/stops/Llgcouv1", "https://tec.openplanner.team/stops/Llgcouv4"], ["https://tec.openplanner.team/stops/Ccoptca1", "https://tec.openplanner.team/stops/Cgofert1"], ["https://tec.openplanner.team/stops/H5el101a", "https://tec.openplanner.team/stops/H5rx131b"], ["https://tec.openplanner.team/stops/X363aca", "https://tec.openplanner.team/stops/X363ada"], ["https://tec.openplanner.team/stops/X939afa", "https://tec.openplanner.team/stops/X939aga"], ["https://tec.openplanner.team/stops/LHueg--2", "https://tec.openplanner.team/stops/LHupont1"], ["https://tec.openplanner.team/stops/LjedTEC2", "https://tec.openplanner.team/stops/Ljekess2"], ["https://tec.openplanner.team/stops/LSLdall2", "https://tec.openplanner.team/stops/LSLhall*"], ["https://tec.openplanner.team/stops/LDOgare1", "https://tec.openplanner.team/stops/LDOjose1"], ["https://tec.openplanner.team/stops/Bbst4br3", "https://tec.openplanner.team/stops/Bbst4br4"], ["https://tec.openplanner.team/stops/Binclon1", "https://tec.openplanner.team/stops/Brxmbos2"], ["https://tec.openplanner.team/stops/H2le147c", "https://tec.openplanner.team/stops/H2le151a"], ["https://tec.openplanner.team/stops/LVBvill2", "https://tec.openplanner.team/stops/LWDchpl2"], ["https://tec.openplanner.team/stops/N501aaa", "https://tec.openplanner.team/stops/N501aay"], ["https://tec.openplanner.team/stops/H4bd109a", "https://tec.openplanner.team/stops/H4bd111a"], ["https://tec.openplanner.team/stops/LWEbr051", "https://tec.openplanner.team/stops/LWEwall1"], ["https://tec.openplanner.team/stops/H5ar104a", "https://tec.openplanner.team/stops/H5me105a"], ["https://tec.openplanner.team/stops/N522abd", "https://tec.openplanner.team/stops/N522aga"], ["https://tec.openplanner.team/stops/X664aaa", "https://tec.openplanner.team/stops/X667acb"], ["https://tec.openplanner.team/stops/Cmyjaci2", "https://tec.openplanner.team/stops/Cmyronc2"], ["https://tec.openplanner.team/stops/H4bh102a", "https://tec.openplanner.team/stops/H4bh102c"], ["https://tec.openplanner.team/stops/Cgofabr2", "https://tec.openplanner.team/stops/CMbruy2"], ["https://tec.openplanner.team/stops/Lrcauto2", "https://tec.openplanner.team/stops/Lrctec-2"], ["https://tec.openplanner.team/stops/LmI129-2", "https://tec.openplanner.team/stops/LmI36--2"], ["https://tec.openplanner.team/stops/LATcorn2", "https://tec.openplanner.team/stops/LATpatu1"], ["https://tec.openplanner.team/stops/H1ms259a", "https://tec.openplanner.team/stops/H1ms936a"], ["https://tec.openplanner.team/stops/Bbxlmid4", "https://tec.openplanner.team/stops/Bbxltrv1"], ["https://tec.openplanner.team/stops/Cmlceri1", "https://tec.openplanner.team/stops/Cmmbmad2"], ["https://tec.openplanner.team/stops/X742ada", "https://tec.openplanner.team/stops/X742adb"], ["https://tec.openplanner.team/stops/N538acb", "https://tec.openplanner.team/stops/N538agb"], ["https://tec.openplanner.team/stops/X657aeb", "https://tec.openplanner.team/stops/X658aea"], ["https://tec.openplanner.team/stops/N167aaa", "https://tec.openplanner.team/stops/N167aba"], ["https://tec.openplanner.team/stops/LHVetoi2", "https://tec.openplanner.team/stops/LJAbois2"], ["https://tec.openplanner.team/stops/X369abb", "https://tec.openplanner.team/stops/X369aca"], ["https://tec.openplanner.team/stops/Bmoncab1", "https://tec.openplanner.team/stops/Bmoncab2"], ["https://tec.openplanner.team/stops/X750aza", "https://tec.openplanner.team/stops/X750azb"], ["https://tec.openplanner.team/stops/X609afa", "https://tec.openplanner.team/stops/X609ama"], ["https://tec.openplanner.team/stops/Cfmcent1", "https://tec.openplanner.team/stops/Cfmcent2"], ["https://tec.openplanner.team/stops/LaAnorm2", "https://tec.openplanner.team/stops/LlCgren1"], ["https://tec.openplanner.team/stops/Bhalber2", "https://tec.openplanner.team/stops/Bhalh311"], ["https://tec.openplanner.team/stops/Bbstmco2", "https://tec.openplanner.team/stops/Cbtlong1"], ["https://tec.openplanner.team/stops/Cgpcime2", "https://tec.openplanner.team/stops/Cgpplac1"], ["https://tec.openplanner.team/stops/Cmlbrac1", "https://tec.openplanner.team/stops/Cmlbrac2"], ["https://tec.openplanner.team/stops/X723ada", "https://tec.openplanner.team/stops/X723aea"], ["https://tec.openplanner.team/stops/H1so131a", "https://tec.openplanner.team/stops/H1so131e"], ["https://tec.openplanner.team/stops/Bvirbie3", "https://tec.openplanner.team/stops/Bvirmav2"], ["https://tec.openplanner.team/stops/X601cka", "https://tec.openplanner.team/stops/X601cwa"], ["https://tec.openplanner.team/stops/LNAbois2", "https://tec.openplanner.team/stops/LNAbouh2"], ["https://tec.openplanner.team/stops/X811aha", "https://tec.openplanner.team/stops/X811aia"], ["https://tec.openplanner.team/stops/Cbzfrom2", "https://tec.openplanner.team/stops/Creoudo1"], ["https://tec.openplanner.team/stops/H1ms272b", "https://tec.openplanner.team/stops/H1ms305a"], ["https://tec.openplanner.team/stops/H1gn148b", "https://tec.openplanner.team/stops/H1gn151b"], ["https://tec.openplanner.team/stops/X657aha", "https://tec.openplanner.team/stops/X657aka"], ["https://tec.openplanner.team/stops/N252aab", "https://tec.openplanner.team/stops/N252acd"], ["https://tec.openplanner.team/stops/X773aab", "https://tec.openplanner.team/stops/X773abb"], ["https://tec.openplanner.team/stops/LSDgris1", "https://tec.openplanner.team/stops/LSDgris2"], ["https://tec.openplanner.team/stops/H1al106a", "https://tec.openplanner.team/stops/H1qp150a"], ["https://tec.openplanner.team/stops/LeYmero1", "https://tec.openplanner.team/stops/LeYmero2"], ["https://tec.openplanner.team/stops/Cauglac2", "https://tec.openplanner.team/stops/Cauptsa1"], ["https://tec.openplanner.team/stops/LBzvill1", "https://tec.openplanner.team/stops/LLWchat2"], ["https://tec.openplanner.team/stops/Bmrleco3", "https://tec.openplanner.team/stops/Bmrlnce2"], ["https://tec.openplanner.team/stops/Llgdouf1", "https://tec.openplanner.team/stops/Llgm%C3%A9di2"], ["https://tec.openplanner.team/stops/LSU50--1", "https://tec.openplanner.team/stops/LSU50--2"], ["https://tec.openplanner.team/stops/LTBeg--1", "https://tec.openplanner.team/stops/X713alb"], ["https://tec.openplanner.team/stops/Lenplac1", "https://tec.openplanner.team/stops/Lenplac5"], ["https://tec.openplanner.team/stops/Csa4mai2", "https://tec.openplanner.team/stops/Csdbosq1"], ["https://tec.openplanner.team/stops/H1do108a", "https://tec.openplanner.team/stops/H1do108e"], ["https://tec.openplanner.team/stops/X619aga", "https://tec.openplanner.team/stops/X620afb"], ["https://tec.openplanner.team/stops/Csbsart1", "https://tec.openplanner.team/stops/H1fv102a"], ["https://tec.openplanner.team/stops/X922aha", "https://tec.openplanner.team/stops/X922ama"], ["https://tec.openplanner.team/stops/Cgxvkho1", "https://tec.openplanner.team/stops/Cmoecol1"], ["https://tec.openplanner.team/stops/N550alb", "https://tec.openplanner.team/stops/N565adb"], ["https://tec.openplanner.team/stops/H4ka174a", "https://tec.openplanner.team/stops/H4ka421a"], ["https://tec.openplanner.team/stops/Ctmazeb1", "https://tec.openplanner.team/stops/Ctmazeb2"], ["https://tec.openplanner.team/stops/Blonegl2", "https://tec.openplanner.team/stops/Blontry2"], ["https://tec.openplanner.team/stops/X781ada", "https://tec.openplanner.team/stops/X781aea"], ["https://tec.openplanner.team/stops/Lvoec--1", "https://tec.openplanner.team/stops/Lvoec--2"], ["https://tec.openplanner.team/stops/Crcverr1", "https://tec.openplanner.team/stops/NH03afa"], ["https://tec.openplanner.team/stops/H2mg141b", "https://tec.openplanner.team/stops/H2mg142a"], ["https://tec.openplanner.team/stops/Lchchau2", "https://tec.openplanner.team/stops/Lchec--1"], ["https://tec.openplanner.team/stops/LAYdieu1", "https://tec.openplanner.team/stops/LFLcher2"], ["https://tec.openplanner.team/stops/N562aka", "https://tec.openplanner.team/stops/N562bfb"], ["https://tec.openplanner.team/stops/LWOsass1", "https://tec.openplanner.team/stops/LWOwaer1"], ["https://tec.openplanner.team/stops/LAvcani1", "https://tec.openplanner.team/stops/LAvcani2"], ["https://tec.openplanner.team/stops/Bbrlpar1", "https://tec.openplanner.team/stops/Bbrlvil2"], ["https://tec.openplanner.team/stops/H4ty282b", "https://tec.openplanner.team/stops/H4ty332a"], ["https://tec.openplanner.team/stops/X982baa", "https://tec.openplanner.team/stops/X982cca"], ["https://tec.openplanner.team/stops/X651aaa", "https://tec.openplanner.team/stops/X651aeb"], ["https://tec.openplanner.team/stops/X982axb", "https://tec.openplanner.team/stops/X982aza"], ["https://tec.openplanner.team/stops/H4ea130a", "https://tec.openplanner.team/stops/H4ea134b"], ["https://tec.openplanner.team/stops/H4bv146a", "https://tec.openplanner.team/stops/H5at141a"], ["https://tec.openplanner.team/stops/Bnilegl1", "https://tec.openplanner.team/stops/Bnilhau2"], ["https://tec.openplanner.team/stops/X922afa", "https://tec.openplanner.team/stops/X922agb"], ["https://tec.openplanner.team/stops/X801bva", "https://tec.openplanner.team/stops/X801bxb"], ["https://tec.openplanner.team/stops/Bquecge1", "https://tec.openplanner.team/stops/Bquecge2"], ["https://tec.openplanner.team/stops/H3bi102b", "https://tec.openplanner.team/stops/H3bi108b"], ["https://tec.openplanner.team/stops/Bgemcha1", "https://tec.openplanner.team/stops/Bgrmfon2"], ["https://tec.openplanner.team/stops/LBThaut2", "https://tec.openplanner.team/stops/LCHsaul2"], ["https://tec.openplanner.team/stops/Bgembsg2", "https://tec.openplanner.team/stops/N522aja"], ["https://tec.openplanner.team/stops/H1gr110b", "https://tec.openplanner.team/stops/H1gr122b"], ["https://tec.openplanner.team/stops/Blhugai1", "https://tec.openplanner.team/stops/Bohnhan2"], ["https://tec.openplanner.team/stops/LDAbois2", "https://tec.openplanner.team/stops/LDArich1"], ["https://tec.openplanner.team/stops/LBpvue-2", "https://tec.openplanner.team/stops/LGEcons1"], ["https://tec.openplanner.team/stops/Lsemyrt2", "https://tec.openplanner.team/stops/Lsepcha2"], ["https://tec.openplanner.team/stops/N538asb", "https://tec.openplanner.team/stops/N538atb"], ["https://tec.openplanner.team/stops/H2le146a", "https://tec.openplanner.team/stops/H2re174b"], ["https://tec.openplanner.team/stops/LFUfonc2", "https://tec.openplanner.team/stops/LWDfuma2"], ["https://tec.openplanner.team/stops/N232beb", "https://tec.openplanner.team/stops/N232bfb"], ["https://tec.openplanner.team/stops/LVbcoul2", "https://tec.openplanner.team/stops/LVbsurr2"], ["https://tec.openplanner.team/stops/LFTcroi2", "https://tec.openplanner.team/stops/LNAbois1"], ["https://tec.openplanner.team/stops/LVLcent1", "https://tec.openplanner.team/stops/LWDplac1"], ["https://tec.openplanner.team/stops/Ccogode1", "https://tec.openplanner.team/stops/Ccoh1212"], ["https://tec.openplanner.team/stops/N101agc", "https://tec.openplanner.team/stops/N101aib"], ["https://tec.openplanner.team/stops/X615aba", "https://tec.openplanner.team/stops/X615ajb"], ["https://tec.openplanner.team/stops/Cpcegli2", "https://tec.openplanner.team/stops/Cpcplac3"], ["https://tec.openplanner.team/stops/Bohnmes2", "https://tec.openplanner.team/stops/Bohnpla1"], ["https://tec.openplanner.team/stops/H1ol140b", "https://tec.openplanner.team/stops/H1ol146b"], ["https://tec.openplanner.team/stops/Ctuhouz2", "https://tec.openplanner.team/stops/Ctupont4"], ["https://tec.openplanner.team/stops/X882aba", "https://tec.openplanner.team/stops/X882afb"], ["https://tec.openplanner.team/stops/Brixpla1", "https://tec.openplanner.team/stops/Brixrmo1"], ["https://tec.openplanner.team/stops/Binccha1", "https://tec.openplanner.team/stops/Binccha2"], ["https://tec.openplanner.team/stops/H4cw105a", "https://tec.openplanner.team/stops/H4hg159a"], ["https://tec.openplanner.team/stops/Bbealon4", "https://tec.openplanner.team/stops/Bbeardu2"], ["https://tec.openplanner.team/stops/LOTawan1", "https://tec.openplanner.team/stops/LOTdelv2"], ["https://tec.openplanner.team/stops/Bblacco2", "https://tec.openplanner.team/stops/Bwatbno2"], ["https://tec.openplanner.team/stops/Lpepano1", "https://tec.openplanner.team/stops/Lpetenn1"], ["https://tec.openplanner.team/stops/Bblacim2", "https://tec.openplanner.team/stops/Bblaljo1"], ["https://tec.openplanner.team/stops/H2bh111b", "https://tec.openplanner.team/stops/H2mg144a"], ["https://tec.openplanner.team/stops/N506aoa", "https://tec.openplanner.team/stops/N506bpb"], ["https://tec.openplanner.team/stops/X949aha", "https://tec.openplanner.team/stops/X949ajb"], ["https://tec.openplanner.team/stops/X621acb", "https://tec.openplanner.team/stops/X621aeb"], ["https://tec.openplanner.team/stops/Bgdhbvu1", "https://tec.openplanner.team/stops/Bgdhlai1"], ["https://tec.openplanner.team/stops/N357aaa", "https://tec.openplanner.team/stops/N357afb"], ["https://tec.openplanner.team/stops/H2ll196a", "https://tec.openplanner.team/stops/H2ll200b"], ["https://tec.openplanner.team/stops/X898aba", "https://tec.openplanner.team/stops/X898adb"], ["https://tec.openplanner.team/stops/LEScham2", "https://tec.openplanner.team/stops/LESfoot1"], ["https://tec.openplanner.team/stops/Bbgncnd2", "https://tec.openplanner.team/stops/N584alb"], ["https://tec.openplanner.team/stops/LATfont2", "https://tec.openplanner.team/stops/LATmonu2"], ["https://tec.openplanner.team/stops/X901bla", "https://tec.openplanner.team/stops/X901blb"], ["https://tec.openplanner.team/stops/Lrcauto1", "https://tec.openplanner.team/stops/Lrcauto2"], ["https://tec.openplanner.team/stops/Blasren1", "https://tec.openplanner.team/stops/Brixres1"], ["https://tec.openplanner.team/stops/H2fy122a", "https://tec.openplanner.team/stops/H2mg137a"], ["https://tec.openplanner.team/stops/N149abb", "https://tec.openplanner.team/stops/N149aia"], ["https://tec.openplanner.team/stops/X362aab", "https://tec.openplanner.team/stops/X362aba"], ["https://tec.openplanner.team/stops/N338aab", "https://tec.openplanner.team/stops/N339aab"], ["https://tec.openplanner.team/stops/H4gu107a", "https://tec.openplanner.team/stops/H4gu112a"], ["https://tec.openplanner.team/stops/LACwass2", "https://tec.openplanner.team/stops/LHhvivi2"], ["https://tec.openplanner.team/stops/N548agd", "https://tec.openplanner.team/stops/N569ada"], ["https://tec.openplanner.team/stops/N312adb", "https://tec.openplanner.team/stops/N313aaa"], ["https://tec.openplanner.team/stops/N145aha", "https://tec.openplanner.team/stops/N149aka"], ["https://tec.openplanner.team/stops/LlAdorf1", "https://tec.openplanner.team/stops/LoUober2"], ["https://tec.openplanner.team/stops/LSPfrai2", "https://tec.openplanner.team/stops/LSPwarf2"], ["https://tec.openplanner.team/stops/LTecent1", "https://tec.openplanner.team/stops/LTechpl1"], ["https://tec.openplanner.team/stops/Bllnald1", "https://tec.openplanner.team/stops/Bllngar3"], ["https://tec.openplanner.team/stops/Blpgvil1", "https://tec.openplanner.team/stops/Bvxgegl2"], ["https://tec.openplanner.team/stops/X742afa", "https://tec.openplanner.team/stops/X742aga"], ["https://tec.openplanner.team/stops/LPtrefa2", "https://tec.openplanner.team/stops/LRccent2"], ["https://tec.openplanner.team/stops/H1as104a", "https://tec.openplanner.team/stops/H1as154b"], ["https://tec.openplanner.team/stops/LCHgele1", "https://tec.openplanner.team/stops/LCHrhou2"], ["https://tec.openplanner.team/stops/LLOchpl1", "https://tec.openplanner.team/stops/LLOnand2"], ["https://tec.openplanner.team/stops/H4ev118a", "https://tec.openplanner.team/stops/H4ev120a"], ["https://tec.openplanner.team/stops/H2hp123c", "https://tec.openplanner.team/stops/H2hp123d"], ["https://tec.openplanner.team/stops/Bbldass1", "https://tec.openplanner.team/stops/Bnetegl2"], ["https://tec.openplanner.team/stops/X826aba", "https://tec.openplanner.team/stops/X826abb"], ["https://tec.openplanner.team/stops/Bnilcha1", "https://tec.openplanner.team/stops/Bnilcha2"], ["https://tec.openplanner.team/stops/Cmtfabi2", "https://tec.openplanner.team/stops/Cmtfoye1"], ["https://tec.openplanner.team/stops/X608aea", "https://tec.openplanner.team/stops/X608aeb"], ["https://tec.openplanner.team/stops/H3br112a", "https://tec.openplanner.team/stops/H3br112b"], ["https://tec.openplanner.team/stops/LoUwelc1", "https://tec.openplanner.team/stops/LsBzent2"], ["https://tec.openplanner.team/stops/Bosqgar1", "https://tec.openplanner.team/stops/Bosqgar2"], ["https://tec.openplanner.team/stops/X879alb", "https://tec.openplanner.team/stops/X879ama"], ["https://tec.openplanner.team/stops/Bgemga09", "https://tec.openplanner.team/stops/N522bvg"], ["https://tec.openplanner.team/stops/LVParal1", "https://tec.openplanner.team/stops/LVPgrot2"], ["https://tec.openplanner.team/stops/X650afc", "https://tec.openplanner.team/stops/X671aga"], ["https://tec.openplanner.team/stops/N232aaa", "https://tec.openplanner.team/stops/N232ana"], ["https://tec.openplanner.team/stops/LLrchat2", "https://tec.openplanner.team/stops/LLrfont2"], ["https://tec.openplanner.team/stops/LAwfans1", "https://tec.openplanner.team/stops/LXoroch2"], ["https://tec.openplanner.team/stops/LWAathe2", "https://tec.openplanner.team/stops/LWApr%C3%A9s4"], ["https://tec.openplanner.team/stops/LNIdoma1", "https://tec.openplanner.team/stops/LNIdoma2"], ["https://tec.openplanner.team/stops/Ljubois2", "https://tec.openplanner.team/stops/Ljuplpr1"], ["https://tec.openplanner.team/stops/Cmychpl1", "https://tec.openplanner.team/stops/Cmychpl4"], ["https://tec.openplanner.team/stops/LHEches3", "https://tec.openplanner.team/stops/LHEches4"], ["https://tec.openplanner.team/stops/X910aga", "https://tec.openplanner.team/stops/X910aib"], ["https://tec.openplanner.team/stops/H2fa109b", "https://tec.openplanner.team/stops/H2hg268b"], ["https://tec.openplanner.team/stops/Lhrgall1", "https://tec.openplanner.team/stops/Lhrlalo2"], ["https://tec.openplanner.team/stops/LHovach2", "https://tec.openplanner.team/stops/LHovill2"], ["https://tec.openplanner.team/stops/H4ty333a", "https://tec.openplanner.team/stops/H4ty397b"], ["https://tec.openplanner.team/stops/LHSheur2", "https://tec.openplanner.team/stops/LWOpier1"], ["https://tec.openplanner.team/stops/X618aab", "https://tec.openplanner.team/stops/X618aob"], ["https://tec.openplanner.team/stops/LNIhaut1", "https://tec.openplanner.team/stops/LSPsauv1"], ["https://tec.openplanner.team/stops/H4ms145b", "https://tec.openplanner.team/stops/H4ms146b"], ["https://tec.openplanner.team/stops/X759aaa", "https://tec.openplanner.team/stops/X759abb"], ["https://tec.openplanner.team/stops/H1sp353b", "https://tec.openplanner.team/stops/H1ss350b"], ["https://tec.openplanner.team/stops/X659aea", "https://tec.openplanner.team/stops/X659aoa"], ["https://tec.openplanner.team/stops/N501dia", "https://tec.openplanner.team/stops/N501jtb"], ["https://tec.openplanner.team/stops/LMYlieg2", "https://tec.openplanner.team/stops/LMYvill2"], ["https://tec.openplanner.team/stops/Bgntalt2", "https://tec.openplanner.team/stops/Bgntcoo2"], ["https://tec.openplanner.team/stops/X829ada", "https://tec.openplanner.team/stops/X830aab"], ["https://tec.openplanner.team/stops/N219aca", "https://tec.openplanner.team/stops/N219acb"], ["https://tec.openplanner.team/stops/N506ama", "https://tec.openplanner.team/stops/NL67adb"], ["https://tec.openplanner.team/stops/N501kcb", "https://tec.openplanner.team/stops/N501kqa"], ["https://tec.openplanner.team/stops/LSGbail2", "https://tec.openplanner.team/stops/LSGfoua2"], ["https://tec.openplanner.team/stops/Cgd4ven1", "https://tec.openplanner.team/stops/Cgdfoca1"], ["https://tec.openplanner.team/stops/N501fdb", "https://tec.openplanner.team/stops/N501fdc"], ["https://tec.openplanner.team/stops/H1pa104a", "https://tec.openplanner.team/stops/H1qu119a"], ["https://tec.openplanner.team/stops/LOUpres1", "https://tec.openplanner.team/stops/LOUpres2"], ["https://tec.openplanner.team/stops/LwL100-1", "https://tec.openplanner.team/stops/LwLfuss2"], ["https://tec.openplanner.team/stops/Cbiferm1", "https://tec.openplanner.team/stops/Crg3arb1"], ["https://tec.openplanner.team/stops/X942afb", "https://tec.openplanner.team/stops/X943adb"], ["https://tec.openplanner.team/stops/H1gy111b", "https://tec.openplanner.team/stops/H1le129b"], ["https://tec.openplanner.team/stops/H2ha134b", "https://tec.openplanner.team/stops/H2ha136b"], ["https://tec.openplanner.team/stops/LeYloos2", "https://tec.openplanner.team/stops/LeYmero1"], ["https://tec.openplanner.team/stops/Llgmean2", "https://tec.openplanner.team/stops/Llgptlo5"], ["https://tec.openplanner.team/stops/Bnivfch1", "https://tec.openplanner.team/stops/Bnivgpl3"], ["https://tec.openplanner.team/stops/H1qy135a", "https://tec.openplanner.team/stops/H1qy137a"], ["https://tec.openplanner.team/stops/X601bka", "https://tec.openplanner.team/stops/X601bqa"], ["https://tec.openplanner.team/stops/LHcbaro2", "https://tec.openplanner.team/stops/LHcgare1"], ["https://tec.openplanner.team/stops/Bbiehpo2", "https://tec.openplanner.team/stops/Bbiehss2"], ["https://tec.openplanner.team/stops/Berneco1", "https://tec.openplanner.team/stops/Bgemrom4"], ["https://tec.openplanner.team/stops/Blimegl2", "https://tec.openplanner.team/stops/Blimmer2"], ["https://tec.openplanner.team/stops/X756aab", "https://tec.openplanner.team/stops/X757ana"], ["https://tec.openplanner.team/stops/H4hx118a", "https://tec.openplanner.team/stops/H4hx119a"], ["https://tec.openplanner.team/stops/LHZ8mai2", "https://tec.openplanner.team/stops/LHZec--1"], ["https://tec.openplanner.team/stops/H4mt215a", "https://tec.openplanner.team/stops/H4mt222a"], ["https://tec.openplanner.team/stops/Bhenfer1", "https://tec.openplanner.team/stops/Bquegen1"], ["https://tec.openplanner.team/stops/H1gh173a", "https://tec.openplanner.team/stops/H1ms250a"], ["https://tec.openplanner.team/stops/Cfojoli1", "https://tec.openplanner.team/stops/Cforepo1"], ["https://tec.openplanner.team/stops/N121aeb", "https://tec.openplanner.team/stops/N121ajb"], ["https://tec.openplanner.team/stops/LLvferm2", "https://tec.openplanner.team/stops/LLvgare1"], ["https://tec.openplanner.team/stops/H4eg105a", "https://tec.openplanner.team/stops/H4sl154a"], ["https://tec.openplanner.team/stops/LNOning1", "https://tec.openplanner.team/stops/LNOsedo2"], ["https://tec.openplanner.team/stops/X604akb", "https://tec.openplanner.team/stops/X618aab"], ["https://tec.openplanner.team/stops/X818asa", "https://tec.openplanner.team/stops/X818aua"], ["https://tec.openplanner.team/stops/H4ty300b", "https://tec.openplanner.team/stops/H4ty329a"], ["https://tec.openplanner.team/stops/X731aha", "https://tec.openplanner.team/stops/X731aib"], ["https://tec.openplanner.team/stops/Bengvma2", "https://tec.openplanner.team/stops/H1en102a"], ["https://tec.openplanner.team/stops/Bnivgen2", "https://tec.openplanner.team/stops/Bnivsto1"], ["https://tec.openplanner.team/stops/Bwateco2", "https://tec.openplanner.team/stops/Bwatmsj2"], ["https://tec.openplanner.team/stops/LRmmabr1", "https://tec.openplanner.team/stops/LRmmabr2"], ["https://tec.openplanner.team/stops/X912acb", "https://tec.openplanner.team/stops/X912adb"], ["https://tec.openplanner.team/stops/X902aha", "https://tec.openplanner.team/stops/X999aaa"], ["https://tec.openplanner.team/stops/LBYegli1", "https://tec.openplanner.team/stops/LBYwez-1"], ["https://tec.openplanner.team/stops/H1fl133d", "https://tec.openplanner.team/stops/H1je369b"], ["https://tec.openplanner.team/stops/X910ada", "https://tec.openplanner.team/stops/X910aea"], ["https://tec.openplanner.team/stops/Bllnchv2", "https://tec.openplanner.team/stops/Bllnhoc1"], ["https://tec.openplanner.team/stops/Ljuinte2", "https://tec.openplanner.team/stops/Llgchan2"], ["https://tec.openplanner.team/stops/X882ajb", "https://tec.openplanner.team/stops/X882alb"], ["https://tec.openplanner.team/stops/H2sb225b", "https://tec.openplanner.team/stops/H3th135c"], ["https://tec.openplanner.team/stops/X396aaa", "https://tec.openplanner.team/stops/X396aab"], ["https://tec.openplanner.team/stops/Lseberg1", "https://tec.openplanner.team/stops/Lsebuil1"], ["https://tec.openplanner.team/stops/Cvtegli2", "https://tec.openplanner.team/stops/Cvtvois2"], ["https://tec.openplanner.team/stops/Bsgimca1", "https://tec.openplanner.team/stops/Bsgimor2"], ["https://tec.openplanner.team/stops/Cptegli3", "https://tec.openplanner.team/stops/Cptplac3"], ["https://tec.openplanner.team/stops/X664akb", "https://tec.openplanner.team/stops/X664ata"], ["https://tec.openplanner.team/stops/LMAalli1", "https://tec.openplanner.team/stops/LMAgdfa1"], ["https://tec.openplanner.team/stops/Ccupres2", "https://tec.openplanner.team/stops/Ccusole2"], ["https://tec.openplanner.team/stops/Lveanne1", "https://tec.openplanner.team/stops/Lvemahe2"], ["https://tec.openplanner.team/stops/X750aob", "https://tec.openplanner.team/stops/X750boa"], ["https://tec.openplanner.team/stops/LLOhest1", "https://tec.openplanner.team/stops/LVttarg1"], ["https://tec.openplanner.team/stops/LOTcarr2", "https://tec.openplanner.team/stops/LOTjacq1"], ["https://tec.openplanner.team/stops/Cmcegli3", "https://tec.openplanner.team/stops/Cmcegli4"], ["https://tec.openplanner.team/stops/X741acb", "https://tec.openplanner.team/stops/X741aea"], ["https://tec.openplanner.team/stops/Bcercsa2", "https://tec.openplanner.team/stops/Bcsepes1"], ["https://tec.openplanner.team/stops/Chpplac1", "https://tec.openplanner.team/stops/Chpplac2"], ["https://tec.openplanner.team/stops/LmRh%C3%B6811", "https://tec.openplanner.team/stops/LmRkreu3"], ["https://tec.openplanner.team/stops/LRachen*", "https://tec.openplanner.team/stops/LRagrch2"], ["https://tec.openplanner.team/stops/Bllncom2", "https://tec.openplanner.team/stops/Bllnfla3"], ["https://tec.openplanner.team/stops/Bblacco1", "https://tec.openplanner.team/stops/Bblacco2"], ["https://tec.openplanner.team/stops/LBkjenn2", "https://tec.openplanner.team/stops/LBkwind1"], ["https://tec.openplanner.team/stops/X806abb", "https://tec.openplanner.team/stops/X806aka"], ["https://tec.openplanner.team/stops/Bbaubru2", "https://tec.openplanner.team/stops/Bnivpba1"], ["https://tec.openplanner.team/stops/H4ty296a", "https://tec.openplanner.team/stops/H4ty305a"], ["https://tec.openplanner.team/stops/H3so154b", "https://tec.openplanner.team/stops/H3so175b"], ["https://tec.openplanner.team/stops/X907afb", "https://tec.openplanner.team/stops/X907agb"], ["https://tec.openplanner.team/stops/H1ms288a", "https://tec.openplanner.team/stops/H1ms288b"], ["https://tec.openplanner.team/stops/Bbiesbi1", "https://tec.openplanner.team/stops/Bptbsar1"], ["https://tec.openplanner.team/stops/Lvegend1", "https://tec.openplanner.team/stops/Lvevieu2"], ["https://tec.openplanner.team/stops/X954abb", "https://tec.openplanner.team/stops/X954aca"], ["https://tec.openplanner.team/stops/H1ba118a", "https://tec.openplanner.team/stops/H1ba118b"], ["https://tec.openplanner.team/stops/X904ajb", "https://tec.openplanner.team/stops/X904ala"], ["https://tec.openplanner.team/stops/H1tl119a", "https://tec.openplanner.team/stops/H1tl121a"], ["https://tec.openplanner.team/stops/N509ada", "https://tec.openplanner.team/stops/N509afa"], ["https://tec.openplanner.team/stops/LGAbois1", "https://tec.openplanner.team/stops/LGAnovi1"], ["https://tec.openplanner.team/stops/LPbpeti1", "https://tec.openplanner.team/stops/LVkinst1"], ["https://tec.openplanner.team/stops/N524aba", "https://tec.openplanner.team/stops/N525ajb"], ["https://tec.openplanner.team/stops/LVLgrum2", "https://tec.openplanner.team/stops/LVLmabi1"], ["https://tec.openplanner.team/stops/N203ada", "https://tec.openplanner.team/stops/N203aeb"], ["https://tec.openplanner.team/stops/Barqpla1", "https://tec.openplanner.team/stops/Bborbif2"], ["https://tec.openplanner.team/stops/H2gy100a", "https://tec.openplanner.team/stops/H2tz117a"], ["https://tec.openplanner.team/stops/Ccucora1", "https://tec.openplanner.team/stops/Cmtmoul1"], ["https://tec.openplanner.team/stops/X542ada", "https://tec.openplanner.team/stops/X542adb"], ["https://tec.openplanner.team/stops/Crobass1", "https://tec.openplanner.team/stops/Crobass2"], ["https://tec.openplanner.team/stops/H4ry131a", "https://tec.openplanner.team/stops/H4ry132b"], ["https://tec.openplanner.team/stops/LAUcent2", "https://tec.openplanner.team/stops/LFPstro1"], ["https://tec.openplanner.team/stops/H5at112a", "https://tec.openplanner.team/stops/H5at124a"], ["https://tec.openplanner.team/stops/H2fa102b", "https://tec.openplanner.team/stops/H2me114b"], ["https://tec.openplanner.team/stops/LBEmich1", "https://tec.openplanner.team/stops/LTRpery1"], ["https://tec.openplanner.team/stops/X715aea", "https://tec.openplanner.team/stops/X715amb"], ["https://tec.openplanner.team/stops/Cdaptca1", "https://tec.openplanner.team/stops/Cmlfstt2"], ["https://tec.openplanner.team/stops/Buccdef1", "https://tec.openplanner.team/stops/Buccdef2"], ["https://tec.openplanner.team/stops/LBavive2", "https://tec.openplanner.team/stops/LGogare1"], ["https://tec.openplanner.team/stops/X354afb", "https://tec.openplanner.team/stops/X359aba"], ["https://tec.openplanner.team/stops/X622adb", "https://tec.openplanner.team/stops/X622afb"], ["https://tec.openplanner.team/stops/Lbrmour2", "https://tec.openplanner.team/stops/Lbrplai1"], ["https://tec.openplanner.team/stops/LESmc--1", "https://tec.openplanner.team/stops/LESmich1"], ["https://tec.openplanner.team/stops/N506bcb", "https://tec.openplanner.team/stops/N506bda"], ["https://tec.openplanner.team/stops/X943aaa", "https://tec.openplanner.team/stops/X943agb"], ["https://tec.openplanner.team/stops/LOUpres1", "https://tec.openplanner.team/stops/Lviweri2"], ["https://tec.openplanner.team/stops/H3so162a", "https://tec.openplanner.team/stops/H3so162b"], ["https://tec.openplanner.team/stops/LMOf35-2", "https://tec.openplanner.team/stops/LMOfrel2"], ["https://tec.openplanner.team/stops/H1ch101b", "https://tec.openplanner.team/stops/H1ch104b"], ["https://tec.openplanner.team/stops/N509arb", "https://tec.openplanner.team/stops/N509ava"], ["https://tec.openplanner.team/stops/X771adb", "https://tec.openplanner.team/stops/X771aia"], ["https://tec.openplanner.team/stops/X773ama", "https://tec.openplanner.team/stops/X773amb"], ["https://tec.openplanner.team/stops/X719aaa", "https://tec.openplanner.team/stops/X786abb"], ["https://tec.openplanner.team/stops/LCljose2", "https://tec.openplanner.team/stops/LLMjacq1"], ["https://tec.openplanner.team/stops/X910aba", "https://tec.openplanner.team/stops/X910aja"], ["https://tec.openplanner.team/stops/N106aab", "https://tec.openplanner.team/stops/N137adb"], ["https://tec.openplanner.team/stops/Lhrthie1", "https://tec.openplanner.team/stops/Lhrvert1"], ["https://tec.openplanner.team/stops/N229aga", "https://tec.openplanner.team/stops/N229agb"], ["https://tec.openplanner.team/stops/Balsnie2", "https://tec.openplanner.team/stops/Balswsa2"], ["https://tec.openplanner.team/stops/LPurech2", "https://tec.openplanner.team/stops/LrEochs1"], ["https://tec.openplanner.team/stops/Cgncail2", "https://tec.openplanner.team/stops/Clproi2"], ["https://tec.openplanner.team/stops/Cbmmafr2", "https://tec.openplanner.team/stops/H1bt100a"], ["https://tec.openplanner.team/stops/Lceegth1", "https://tec.openplanner.team/stops/Lgrcral1"], ["https://tec.openplanner.team/stops/X601cja", "https://tec.openplanner.team/stops/X601cka"], ["https://tec.openplanner.team/stops/H2fy123a", "https://tec.openplanner.team/stops/H2fy123b"], ["https://tec.openplanner.team/stops/N301ana", "https://tec.openplanner.team/stops/N301anb"], ["https://tec.openplanner.team/stops/Cgpcime1", "https://tec.openplanner.team/stops/Cgpplac1"], ["https://tec.openplanner.team/stops/N104afb", "https://tec.openplanner.team/stops/N104aka"], ["https://tec.openplanner.team/stops/Bnivfro1", "https://tec.openplanner.team/stops/Bnivzep2"], ["https://tec.openplanner.team/stops/N231afb", "https://tec.openplanner.team/stops/N231aga"], ["https://tec.openplanner.team/stops/X784akb", "https://tec.openplanner.team/stops/X784ala"], ["https://tec.openplanner.team/stops/N528aba", "https://tec.openplanner.team/stops/N528afc"], ["https://tec.openplanner.team/stops/Ccogode2", "https://tec.openplanner.team/stops/Ccoh1212"], ["https://tec.openplanner.team/stops/Cgxchan2", "https://tec.openplanner.team/stops/Cgxwaut1"], ["https://tec.openplanner.team/stops/LMRmont2", "https://tec.openplanner.team/stops/LtEnatu2"], ["https://tec.openplanner.team/stops/Llgchai1", "https://tec.openplanner.team/stops/Llgtawe0"], ["https://tec.openplanner.team/stops/LBKmare1", "https://tec.openplanner.team/stops/LOeelbe1"], ["https://tec.openplanner.team/stops/H5wo130a", "https://tec.openplanner.team/stops/H5wo130b"], ["https://tec.openplanner.team/stops/LSPastr2", "https://tec.openplanner.team/stops/LSPClem2"], ["https://tec.openplanner.team/stops/N501gkb", "https://tec.openplanner.team/stops/N501kcb"], ["https://tec.openplanner.team/stops/H1so136b", "https://tec.openplanner.team/stops/H1so137b"], ["https://tec.openplanner.team/stops/Cfcplac3", "https://tec.openplanner.team/stops/Cfcplac4"], ["https://tec.openplanner.team/stops/Cgzchab2", "https://tec.openplanner.team/stops/Cgzchab3"], ["https://tec.openplanner.team/stops/LRMn58-1", "https://tec.openplanner.team/stops/LRMn58-2"], ["https://tec.openplanner.team/stops/X820aeb", "https://tec.openplanner.team/stops/X820aga"], ["https://tec.openplanner.team/stops/X741ahb", "https://tec.openplanner.team/stops/X741aib"], ["https://tec.openplanner.team/stops/H2sb257b", "https://tec.openplanner.team/stops/H2sb258a"], ["https://tec.openplanner.team/stops/Cmlcpar1", "https://tec.openplanner.team/stops/Cmltomb1"], ["https://tec.openplanner.team/stops/X713aea", "https://tec.openplanner.team/stops/X713afb"], ["https://tec.openplanner.team/stops/H1eo104a", "https://tec.openplanner.team/stops/H1eo106a"], ["https://tec.openplanner.team/stops/Chhplbe2", "https://tec.openplanner.team/stops/Chhsncb1"], ["https://tec.openplanner.team/stops/N127aaa", "https://tec.openplanner.team/stops/N127aja"], ["https://tec.openplanner.team/stops/H1bb146a", "https://tec.openplanner.team/stops/H1el137a"], ["https://tec.openplanner.team/stops/H1hl124a", "https://tec.openplanner.team/stops/H1ry137b"], ["https://tec.openplanner.team/stops/Clbentr1", "https://tec.openplanner.team/stops/Clbhvil1"], ["https://tec.openplanner.team/stops/X948aaa", "https://tec.openplanner.team/stops/X948apb"], ["https://tec.openplanner.team/stops/H5qu143d", "https://tec.openplanner.team/stops/H5qu156d"], ["https://tec.openplanner.team/stops/LCeanne2", "https://tec.openplanner.team/stops/LLWchat1"], ["https://tec.openplanner.team/stops/X547aqa", "https://tec.openplanner.team/stops/X547aqb"], ["https://tec.openplanner.team/stops/LDAbois1", "https://tec.openplanner.team/stops/LVImons1"], ["https://tec.openplanner.team/stops/H1ma233a", "https://tec.openplanner.team/stops/H1ms313b"], ["https://tec.openplanner.team/stops/H4hs136b", "https://tec.openplanner.team/stops/H4th141a"], ["https://tec.openplanner.team/stops/LsVfrde1", "https://tec.openplanner.team/stops/LsVfrde2"], ["https://tec.openplanner.team/stops/Bpelegl1", "https://tec.openplanner.team/stops/Bpelegl4"], ["https://tec.openplanner.team/stops/X637aka", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/LwYbrkr1", "https://tec.openplanner.team/stops/LwYnr262"], ["https://tec.openplanner.team/stops/H3so185a", "https://tec.openplanner.team/stops/H3so187a"], ["https://tec.openplanner.team/stops/H1br122a", "https://tec.openplanner.team/stops/H1br130b"], ["https://tec.openplanner.team/stops/X891aba", "https://tec.openplanner.team/stops/X891ada"], ["https://tec.openplanner.team/stops/H4ve132a", "https://tec.openplanner.team/stops/H4ve132b"], ["https://tec.openplanner.team/stops/X633aca", "https://tec.openplanner.team/stops/X633acb"], ["https://tec.openplanner.team/stops/Cgrgend1", "https://tec.openplanner.team/stops/NC14aub"], ["https://tec.openplanner.team/stops/Bbbksth1", "https://tec.openplanner.team/stops/Bnetace1"], ["https://tec.openplanner.team/stops/Cmastma1", "https://tec.openplanner.team/stops/Cmazsnc2"], ["https://tec.openplanner.team/stops/H4bw101a", "https://tec.openplanner.team/stops/H4co149a"], ["https://tec.openplanner.team/stops/Cchccom2", "https://tec.openplanner.team/stops/CMsama1"], ["https://tec.openplanner.team/stops/LHocroi1", "https://tec.openplanner.team/stops/LJesole2"], ["https://tec.openplanner.team/stops/N146adb", "https://tec.openplanner.team/stops/N146afb"], ["https://tec.openplanner.team/stops/N534bbb", "https://tec.openplanner.team/stops/N534bdb"], ["https://tec.openplanner.team/stops/H4eg101a", "https://tec.openplanner.team/stops/H4eg101d"], ["https://tec.openplanner.team/stops/Bcbqa361", "https://tec.openplanner.team/stops/Bhaltre2"], ["https://tec.openplanner.team/stops/H4ra159b", "https://tec.openplanner.team/stops/H4wr174b"], ["https://tec.openplanner.team/stops/Lhrmine1", "https://tec.openplanner.team/stops/Ljubonf2"], ["https://tec.openplanner.team/stops/LGEbern2", "https://tec.openplanner.team/stops/LGEpt--2"], ["https://tec.openplanner.team/stops/X763aea", "https://tec.openplanner.team/stops/X763afb"], ["https://tec.openplanner.team/stops/X808aba", "https://tec.openplanner.team/stops/X808abc"], ["https://tec.openplanner.team/stops/Ljuathe1", "https://tec.openplanner.team/stops/Ljuchap2"], ["https://tec.openplanner.team/stops/LmLbeil2", "https://tec.openplanner.team/stops/LoUzent1"], ["https://tec.openplanner.team/stops/H5el102b", "https://tec.openplanner.team/stops/H5el107b"], ["https://tec.openplanner.team/stops/Ljeegli6", "https://tec.openplanner.team/stops/Lseespe1"], ["https://tec.openplanner.team/stops/X658afa", "https://tec.openplanner.team/stops/X658afb"], ["https://tec.openplanner.team/stops/N206ada", "https://tec.openplanner.team/stops/N220aaa"], ["https://tec.openplanner.team/stops/N235aeb", "https://tec.openplanner.team/stops/N241acb"], ["https://tec.openplanner.team/stops/Cchsud11", "https://tec.openplanner.team/stops/CMsud1"], ["https://tec.openplanner.team/stops/X613abb", "https://tec.openplanner.team/stops/X614ana"], ["https://tec.openplanner.team/stops/N528aab", "https://tec.openplanner.team/stops/N528abb"], ["https://tec.openplanner.team/stops/LREhenu1", "https://tec.openplanner.team/stops/LREsoug3"], ["https://tec.openplanner.team/stops/N585aja", "https://tec.openplanner.team/stops/N585akb"], ["https://tec.openplanner.team/stops/Becepro2", "https://tec.openplanner.team/stops/H2ec100b"], ["https://tec.openplanner.team/stops/X358ada", "https://tec.openplanner.team/stops/X358adb"], ["https://tec.openplanner.team/stops/Bmangen1", "https://tec.openplanner.team/stops/Bmangen2"], ["https://tec.openplanner.team/stops/X744aab", "https://tec.openplanner.team/stops/X744abb"], ["https://tec.openplanner.team/stops/H2ma203a", "https://tec.openplanner.team/stops/H2ma206a"], ["https://tec.openplanner.team/stops/H1qv110b", "https://tec.openplanner.team/stops/H1qv112b"], ["https://tec.openplanner.team/stops/N120alb", "https://tec.openplanner.team/stops/N244apb"], ["https://tec.openplanner.team/stops/LBivi--1", "https://tec.openplanner.team/stops/LHChoof3"], ["https://tec.openplanner.team/stops/Lmlguis2", "https://tec.openplanner.team/stops/Lpoprie1"], ["https://tec.openplanner.team/stops/H4ty296b", "https://tec.openplanner.team/stops/H4ty314c"], ["https://tec.openplanner.team/stops/Lbhpeti1", "https://tec.openplanner.team/stops/Lbhpeti2"], ["https://tec.openplanner.team/stops/Bnilhau1", "https://tec.openplanner.team/stops/Btsllib1"], ["https://tec.openplanner.team/stops/N501drb", "https://tec.openplanner.team/stops/N501eea"], ["https://tec.openplanner.team/stops/X630ada", "https://tec.openplanner.team/stops/X638ada"], ["https://tec.openplanner.team/stops/LbUmolk1", "https://tec.openplanner.team/stops/LbUwirt1"], ["https://tec.openplanner.team/stops/Lvecrot1", "https://tec.openplanner.team/stops/Lvecrot2"], ["https://tec.openplanner.team/stops/H1bl100a", "https://tec.openplanner.team/stops/H1sb146b"], ["https://tec.openplanner.team/stops/X653aab", "https://tec.openplanner.team/stops/X653aba"], ["https://tec.openplanner.team/stops/Bhlvlou2", "https://tec.openplanner.team/stops/Bhlvvil3"], ["https://tec.openplanner.team/stops/H2mo127d", "https://tec.openplanner.team/stops/H2mo130c"], ["https://tec.openplanner.team/stops/Lpeflec1", "https://tec.openplanner.team/stops/Lpefler2"], ["https://tec.openplanner.team/stops/Cgzmira3", "https://tec.openplanner.team/stops/Cthha502"], ["https://tec.openplanner.team/stops/Csychap4", "https://tec.openplanner.team/stops/Csyplac1"], ["https://tec.openplanner.team/stops/N113aea", "https://tec.openplanner.team/stops/N114aab"], ["https://tec.openplanner.team/stops/H2hp119a", "https://tec.openplanner.team/stops/H2hp119d"], ["https://tec.openplanner.team/stops/H1bx105b", "https://tec.openplanner.team/stops/H1bx107b"], ["https://tec.openplanner.team/stops/X922aga", "https://tec.openplanner.team/stops/X922agb"], ["https://tec.openplanner.team/stops/H1cv100a", "https://tec.openplanner.team/stops/H1ml110a"], ["https://tec.openplanner.team/stops/H1te179a", "https://tec.openplanner.team/stops/H1te186a"], ["https://tec.openplanner.team/stops/LGLc50-3", "https://tec.openplanner.team/stops/LGLcour4"], ["https://tec.openplanner.team/stops/N118aia", "https://tec.openplanner.team/stops/N155acb"], ["https://tec.openplanner.team/stops/H1sg149b", "https://tec.openplanner.team/stops/H1te176b"], ["https://tec.openplanner.team/stops/LoUzent1", "https://tec.openplanner.team/stops/X685agb"], ["https://tec.openplanner.team/stops/LTNcarr2", "https://tec.openplanner.team/stops/LTNcarr4"], ["https://tec.openplanner.team/stops/LHhelia2", "https://tec.openplanner.team/stops/LHhmohe2"], ["https://tec.openplanner.team/stops/H1cu124a", "https://tec.openplanner.team/stops/H1fr115a"], ["https://tec.openplanner.team/stops/H4bl106a", "https://tec.openplanner.team/stops/H4tg262a"], ["https://tec.openplanner.team/stops/Lflheid1", "https://tec.openplanner.team/stops/LMFmoul2"], ["https://tec.openplanner.team/stops/Louairl1", "https://tec.openplanner.team/stops/Loubour1"], ["https://tec.openplanner.team/stops/Cgzhour1", "https://tec.openplanner.team/stops/Cgzhour2"], ["https://tec.openplanner.team/stops/LCRabbe2", "https://tec.openplanner.team/stops/LOdcris2"], ["https://tec.openplanner.team/stops/X769aia", "https://tec.openplanner.team/stops/X769asa"], ["https://tec.openplanner.team/stops/Bcrbbou2", "https://tec.openplanner.team/stops/Bcrbcel2"], ["https://tec.openplanner.team/stops/LBRgare2", "https://tec.openplanner.team/stops/LBRgend2"], ["https://tec.openplanner.team/stops/H1ch106a", "https://tec.openplanner.team/stops/H5ma181a"], ["https://tec.openplanner.team/stops/Cfrcomp2", "https://tec.openplanner.team/stops/Cfrempe1"], ["https://tec.openplanner.team/stops/X713ajd", "https://tec.openplanner.team/stops/X714aea"], ["https://tec.openplanner.team/stops/Cfvombo2", "https://tec.openplanner.team/stops/H1fv101b"], ["https://tec.openplanner.team/stops/LVNroua2", "https://tec.openplanner.team/stops/LWzfuma1"], ["https://tec.openplanner.team/stops/N230aea", "https://tec.openplanner.team/stops/N230afa"], ["https://tec.openplanner.team/stops/LFTcroi4", "https://tec.openplanner.team/stops/LFTeg--2"], ["https://tec.openplanner.team/stops/Lghmaha3", "https://tec.openplanner.team/stops/Lmlpech1"], ["https://tec.openplanner.team/stops/X850amb", "https://tec.openplanner.team/stops/X850anb"], ["https://tec.openplanner.team/stops/H4mt216b", "https://tec.openplanner.team/stops/H4mt217a"], ["https://tec.openplanner.team/stops/Ladegli1", "https://tec.openplanner.team/stops/Ladegli2"], ["https://tec.openplanner.team/stops/N234aba", "https://tec.openplanner.team/stops/N549aib"], ["https://tec.openplanner.team/stops/Cgxbeau1", "https://tec.openplanner.team/stops/Cgxcite1"], ["https://tec.openplanner.team/stops/H5at132b", "https://tec.openplanner.team/stops/H5ma185a"], ["https://tec.openplanner.team/stops/H1ms296a", "https://tec.openplanner.team/stops/H1ms296c"], ["https://tec.openplanner.team/stops/LhMdorf1", "https://tec.openplanner.team/stops/LhMmeil2"], ["https://tec.openplanner.team/stops/Cragoss1", "https://tec.openplanner.team/stops/Cravign2"], ["https://tec.openplanner.team/stops/N510afa", "https://tec.openplanner.team/stops/N510afb"], ["https://tec.openplanner.team/stops/X823aaa", "https://tec.openplanner.team/stops/X824agb"], ["https://tec.openplanner.team/stops/H1qu119a", "https://tec.openplanner.team/stops/H1qu119b"], ["https://tec.openplanner.team/stops/H4au100b", "https://tec.openplanner.team/stops/H4bq154a"], ["https://tec.openplanner.team/stops/Cgorosa2", "https://tec.openplanner.team/stops/Cgorosa3"], ["https://tec.openplanner.team/stops/X774add", "https://tec.openplanner.team/stops/X774afb"], ["https://tec.openplanner.team/stops/LwYbruc4", "https://tec.openplanner.team/stops/LwYneue1"], ["https://tec.openplanner.team/stops/N573aia", "https://tec.openplanner.team/stops/N573amb"], ["https://tec.openplanner.team/stops/LCRfize2", "https://tec.openplanner.team/stops/LTyhapp2"], ["https://tec.openplanner.team/stops/LGLecol2", "https://tec.openplanner.team/stops/LGLlaur1"], ["https://tec.openplanner.team/stops/N521afa", "https://tec.openplanner.team/stops/N521afb"], ["https://tec.openplanner.team/stops/Ccigene1", "https://tec.openplanner.team/stops/Ccisart2"], ["https://tec.openplanner.team/stops/X612ada", "https://tec.openplanner.team/stops/X623aea"], ["https://tec.openplanner.team/stops/Cthpibl2", "https://tec.openplanner.team/stops/Cthwaib1"], ["https://tec.openplanner.team/stops/N116aaa", "https://tec.openplanner.team/stops/N116aad"], ["https://tec.openplanner.team/stops/Llgpiet2", "https://tec.openplanner.team/stops/Llgthie1"], ["https://tec.openplanner.team/stops/H1be104a", "https://tec.openplanner.team/stops/H1be104b"], ["https://tec.openplanner.team/stops/Clb4dgi2", "https://tec.openplanner.team/stops/Clbecol2"], ["https://tec.openplanner.team/stops/H2lc169a", "https://tec.openplanner.team/stops/H2lc169c"], ["https://tec.openplanner.team/stops/Clsghoy1", "https://tec.openplanner.team/stops/H1hw119a"], ["https://tec.openplanner.team/stops/N509bfa", "https://tec.openplanner.team/stops/N509bga"], ["https://tec.openplanner.team/stops/H3lr109c", "https://tec.openplanner.team/stops/H3lr112b"], ["https://tec.openplanner.team/stops/X882afa", "https://tec.openplanner.team/stops/X882afb"], ["https://tec.openplanner.team/stops/LHDchar4", "https://tec.openplanner.team/stops/LHDlibi1"], ["https://tec.openplanner.team/stops/X734anc", "https://tec.openplanner.team/stops/X734aob"], ["https://tec.openplanner.team/stops/LBPmili2", "https://tec.openplanner.team/stops/LBPunic2"], ["https://tec.openplanner.team/stops/H1fl134b", "https://tec.openplanner.team/stops/H1fl140b"], ["https://tec.openplanner.team/stops/LOtthie1", "https://tec.openplanner.team/stops/LVsbrux1"], ["https://tec.openplanner.team/stops/Bbrlpar1", "https://tec.openplanner.team/stops/Brsgtou1"], ["https://tec.openplanner.team/stops/LBvnico1", "https://tec.openplanner.team/stops/LBvnico4"], ["https://tec.openplanner.team/stops/N232ana", "https://tec.openplanner.team/stops/N232bqb"], ["https://tec.openplanner.team/stops/Cgrlorm1", "https://tec.openplanner.team/stops/Cgrlorm2"], ["https://tec.openplanner.team/stops/N539aca", "https://tec.openplanner.team/stops/N542akb"], ["https://tec.openplanner.team/stops/X595aeb", "https://tec.openplanner.team/stops/X713anb"], ["https://tec.openplanner.team/stops/H4ne137b", "https://tec.openplanner.team/stops/H4ne143b"], ["https://tec.openplanner.team/stops/Cluchbl2", "https://tec.openplanner.team/stops/Clusncb4"], ["https://tec.openplanner.team/stops/Brixbou1", "https://tec.openplanner.team/stops/Brixdec1"], ["https://tec.openplanner.team/stops/LAMfrai1", "https://tec.openplanner.team/stops/LAMfrai2"], ["https://tec.openplanner.team/stops/H1do122a", "https://tec.openplanner.team/stops/H1do125a"], ["https://tec.openplanner.team/stops/Brsgera1", "https://tec.openplanner.team/stops/Brsggea2"], ["https://tec.openplanner.team/stops/X869aba", "https://tec.openplanner.team/stops/X882agb"], ["https://tec.openplanner.team/stops/X718aaa", "https://tec.openplanner.team/stops/X718akb"], ["https://tec.openplanner.team/stops/Cfmpui81", "https://tec.openplanner.team/stops/Cfmrrou2"], ["https://tec.openplanner.team/stops/N577ada", "https://tec.openplanner.team/stops/N577aib"], ["https://tec.openplanner.team/stops/Lemhenn2", "https://tec.openplanner.team/stops/Lvcreve1"], ["https://tec.openplanner.team/stops/LmNkirc1", "https://tec.openplanner.team/stops/LmNpost1"], ["https://tec.openplanner.team/stops/LHolone1", "https://tec.openplanner.team/stops/LHZec--1"], ["https://tec.openplanner.team/stops/Llgdepo1", "https://tec.openplanner.team/stops/Llgdepo6"], ["https://tec.openplanner.team/stops/Bbcocou1", "https://tec.openplanner.team/stops/Bbcoubo3"], ["https://tec.openplanner.team/stops/Cravign3", "https://tec.openplanner.team/stops/Cravign4"], ["https://tec.openplanner.team/stops/N506aab", "https://tec.openplanner.team/stops/N506bub"], ["https://tec.openplanner.team/stops/LFEague1", "https://tec.openplanner.team/stops/LFtcarr1"], ["https://tec.openplanner.team/stops/Cravign1", "https://tec.openplanner.team/stops/Cravign2"], ["https://tec.openplanner.team/stops/Lflmaxi1", "https://tec.openplanner.team/stops/Lflmaxi4"], ["https://tec.openplanner.team/stops/H4we135a", "https://tec.openplanner.team/stops/H4we139a"], ["https://tec.openplanner.team/stops/LMforba1", "https://tec.openplanner.team/stops/LMforba2"], ["https://tec.openplanner.team/stops/X783aca", "https://tec.openplanner.team/stops/X783acb"], ["https://tec.openplanner.team/stops/H4hu121b", "https://tec.openplanner.team/stops/H4og214a"], ["https://tec.openplanner.team/stops/Lceleje1", "https://tec.openplanner.team/stops/Lvcreve1"], ["https://tec.openplanner.team/stops/Caujonc2", "https://tec.openplanner.team/stops/Causart1"], ["https://tec.openplanner.team/stops/LBgcroi1", "https://tec.openplanner.team/stops/LBgcroi3"], ["https://tec.openplanner.team/stops/N501msa", "https://tec.openplanner.team/stops/N501msb"], ["https://tec.openplanner.team/stops/LOurena2", "https://tec.openplanner.team/stops/LVnvieg2"], ["https://tec.openplanner.team/stops/X804alc", "https://tec.openplanner.team/stops/X804bma"], ["https://tec.openplanner.team/stops/H2mo125a", "https://tec.openplanner.team/stops/H2mo130b"], ["https://tec.openplanner.team/stops/Bettbue2", "https://tec.openplanner.team/stops/Bixepla2"], ["https://tec.openplanner.team/stops/Btlbgla1", "https://tec.openplanner.team/stops/Btstcar4"], ["https://tec.openplanner.team/stops/X877afa", "https://tec.openplanner.team/stops/X877aga"], ["https://tec.openplanner.team/stops/Btlbche1", "https://tec.openplanner.team/stops/NB33aeb"], ["https://tec.openplanner.team/stops/Cpllimi3", "https://tec.openplanner.team/stops/Cpllimi5"], ["https://tec.openplanner.team/stops/Llivina2", "https://tec.openplanner.team/stops/Lvochev1"], ["https://tec.openplanner.team/stops/H1gn147b", "https://tec.openplanner.team/stops/H1gn151a"], ["https://tec.openplanner.team/stops/H1en101a", "https://tec.openplanner.team/stops/H1en101b"], ["https://tec.openplanner.team/stops/Cchoues3", "https://tec.openplanner.team/stops/Cchoues4"], ["https://tec.openplanner.team/stops/H4ty313b", "https://tec.openplanner.team/stops/H4ty323a"], ["https://tec.openplanner.team/stops/H4bl104a", "https://tec.openplanner.team/stops/H4bl105b"], ["https://tec.openplanner.team/stops/Cfohopi1", "https://tec.openplanner.team/stops/Cfowall1"], ["https://tec.openplanner.team/stops/LDomoul1", "https://tec.openplanner.team/stops/LReeg--1"], ["https://tec.openplanner.team/stops/Crccarr2", "https://tec.openplanner.team/stops/Crclorc1"], ["https://tec.openplanner.team/stops/LHNgare2", "https://tec.openplanner.team/stops/LHNgend4"], ["https://tec.openplanner.team/stops/H1po133a", "https://tec.openplanner.team/stops/H1po154a"], ["https://tec.openplanner.team/stops/LPbchat1", "https://tec.openplanner.team/stops/LPbover1"], ["https://tec.openplanner.team/stops/N116ada", "https://tec.openplanner.team/stops/N116adb"], ["https://tec.openplanner.team/stops/Bllnfla1", "https://tec.openplanner.team/stops/Bllnfla2"], ["https://tec.openplanner.team/stops/NC14ama", "https://tec.openplanner.team/stops/NC14aoe"], ["https://tec.openplanner.team/stops/Lenclar1", "https://tec.openplanner.team/stops/Llmhalt1"], ["https://tec.openplanner.team/stops/LAYchal1", "https://tec.openplanner.team/stops/LAYcont2"], ["https://tec.openplanner.team/stops/H1ol142b", "https://tec.openplanner.team/stops/H1ol144b"], ["https://tec.openplanner.team/stops/LrEkreu2", "https://tec.openplanner.team/stops/LrEviel2"], ["https://tec.openplanner.team/stops/X597alb", "https://tec.openplanner.team/stops/X796agb"], ["https://tec.openplanner.team/stops/Lvcpost1", "https://tec.openplanner.team/stops/Lvcvesd*"], ["https://tec.openplanner.team/stops/Cgpleco1", "https://tec.openplanner.team/stops/Cgpmoul1"], ["https://tec.openplanner.team/stops/N557aib", "https://tec.openplanner.team/stops/N560adb"], ["https://tec.openplanner.team/stops/H1me115a", "https://tec.openplanner.team/stops/H1so131b"], ["https://tec.openplanner.team/stops/X901aua", "https://tec.openplanner.team/stops/X901aub"], ["https://tec.openplanner.team/stops/Bsdacab2", "https://tec.openplanner.team/stops/Bvlvpco1"], ["https://tec.openplanner.team/stops/X650afc", "https://tec.openplanner.team/stops/X650afd"], ["https://tec.openplanner.team/stops/X939aaa", "https://tec.openplanner.team/stops/X940aea"], ["https://tec.openplanner.team/stops/Cbbcent1", "https://tec.openplanner.team/stops/Cbblacb1"], ["https://tec.openplanner.team/stops/H1bo105a", "https://tec.openplanner.team/stops/H1bo105b"], ["https://tec.openplanner.team/stops/Cmehels1", "https://tec.openplanner.team/stops/Cmesncv1"], ["https://tec.openplanner.team/stops/Bbeubos1", "https://tec.openplanner.team/stops/N541aeb"], ["https://tec.openplanner.team/stops/N562aib", "https://tec.openplanner.team/stops/N562aya"], ["https://tec.openplanner.team/stops/Louetan2", "https://tec.openplanner.team/stops/Loutroi1"], ["https://tec.openplanner.team/stops/Bclglbu1", "https://tec.openplanner.team/stops/Bcrbast1"], ["https://tec.openplanner.team/stops/X902aga", "https://tec.openplanner.team/stops/X902ahb"], ["https://tec.openplanner.team/stops/H4fr388a", "https://tec.openplanner.team/stops/H4ka393b"], ["https://tec.openplanner.team/stops/Cchdrai1", "https://tec.openplanner.team/stops/Cchwate1"], ["https://tec.openplanner.team/stops/X623aaa", "https://tec.openplanner.team/stops/X623agb"], ["https://tec.openplanner.team/stops/H1mg109a", "https://tec.openplanner.team/stops/H2an109b"], ["https://tec.openplanner.team/stops/H1ag105a", "https://tec.openplanner.team/stops/H1ag105b"], ["https://tec.openplanner.team/stops/Blhumpo4", "https://tec.openplanner.team/stops/Blhutco4"], ["https://tec.openplanner.team/stops/LFEland2", "https://tec.openplanner.team/stops/LMYvill1"], ["https://tec.openplanner.team/stops/LPAmosa2", "https://tec.openplanner.team/stops/LWidepo2"], ["https://tec.openplanner.team/stops/LWahott2", "https://tec.openplanner.team/stops/LWazoni2"], ["https://tec.openplanner.team/stops/H2pe158b", "https://tec.openplanner.team/stops/H2re167b"], ["https://tec.openplanner.team/stops/Bmrsayw2", "https://tec.openplanner.team/stops/Bohnmon2"], ["https://tec.openplanner.team/stops/LAmeclu1", "https://tec.openplanner.team/stops/LATcorn1"], ["https://tec.openplanner.team/stops/H4ka182b", "https://tec.openplanner.team/stops/H4ka183b"], ["https://tec.openplanner.team/stops/X610aea", "https://tec.openplanner.team/stops/X610afa"], ["https://tec.openplanner.team/stops/X808aha", "https://tec.openplanner.team/stops/X808aka"], ["https://tec.openplanner.team/stops/Ccypn1", "https://tec.openplanner.team/stops/NH01aea"], ["https://tec.openplanner.team/stops/Lveharm2", "https://tec.openplanner.team/stops/Lvevict1"], ["https://tec.openplanner.team/stops/LaM266-1", "https://tec.openplanner.team/stops/LaMbull1"], ["https://tec.openplanner.team/stops/Cgxalli1", "https://tec.openplanner.team/stops/Cgxprad4"], ["https://tec.openplanner.team/stops/LMnlogi1", "https://tec.openplanner.team/stops/N222aea"], ["https://tec.openplanner.team/stops/LDOandr3", "https://tec.openplanner.team/stops/LDOandr4"], ["https://tec.openplanner.team/stops/Cjucopp2", "https://tec.openplanner.team/stops/Cjudevo2"], ["https://tec.openplanner.team/stops/N110afb", "https://tec.openplanner.team/stops/N113ada"], ["https://tec.openplanner.team/stops/LbAhenk2", "https://tec.openplanner.team/stops/LhLbalt2"], ["https://tec.openplanner.team/stops/X897aaa", "https://tec.openplanner.team/stops/X897aba"], ["https://tec.openplanner.team/stops/Cmyoasi2", "https://tec.openplanner.team/stops/Cmyrays2"], ["https://tec.openplanner.team/stops/LDOandr2", "https://tec.openplanner.team/stops/LDOeg--1"], ["https://tec.openplanner.team/stops/Cbfstry2", "https://tec.openplanner.team/stops/NC24aia"], ["https://tec.openplanner.team/stops/H4ce100a", "https://tec.openplanner.team/stops/H4mx119a"], ["https://tec.openplanner.team/stops/N505aaa", "https://tec.openplanner.team/stops/N505aeb"], ["https://tec.openplanner.team/stops/Cnagrro1", "https://tec.openplanner.team/stops/Cnaplha1"], ["https://tec.openplanner.team/stops/X901bbb", "https://tec.openplanner.team/stops/X922acb"], ["https://tec.openplanner.team/stops/H1do111b", "https://tec.openplanner.team/stops/H1do129b"], ["https://tec.openplanner.team/stops/LAVeg--2", "https://tec.openplanner.team/stops/LAVpequ2"], ["https://tec.openplanner.team/stops/LHTcerc1", "https://tec.openplanner.team/stops/LHTmonu2"], ["https://tec.openplanner.team/stops/LmIvale4", "https://tec.openplanner.team/stops/LvAschr1"], ["https://tec.openplanner.team/stops/H4hu119a", "https://tec.openplanner.team/stops/H4hu121a"], ["https://tec.openplanner.team/stops/LMalune3", "https://tec.openplanner.team/stops/LMalune4"], ["https://tec.openplanner.team/stops/N532acb", "https://tec.openplanner.team/stops/N533aga"], ["https://tec.openplanner.team/stops/LBYwez-2", "https://tec.openplanner.team/stops/LXHeg--2"], ["https://tec.openplanner.team/stops/H4os217b", "https://tec.openplanner.team/stops/H4os220a"], ["https://tec.openplanner.team/stops/LRGile-1", "https://tec.openplanner.team/stops/LRGile-2"], ["https://tec.openplanner.team/stops/H4vz368b", "https://tec.openplanner.team/stops/H4vz370a"], ["https://tec.openplanner.team/stops/LTaeg--2", "https://tec.openplanner.team/stops/LTaouch2"], ["https://tec.openplanner.team/stops/H4ef163a", "https://tec.openplanner.team/stops/H4ef165a"], ["https://tec.openplanner.team/stops/X923aha", "https://tec.openplanner.team/stops/X923aja"], ["https://tec.openplanner.team/stops/X636aka", "https://tec.openplanner.team/stops/X636bcb"], ["https://tec.openplanner.team/stops/Bjdssta1", "https://tec.openplanner.team/stops/Bjdssta2"], ["https://tec.openplanner.team/stops/X983ada", "https://tec.openplanner.team/stops/X983adb"], ["https://tec.openplanner.team/stops/Lsmtini1", "https://tec.openplanner.team/stops/Lsmtini2"], ["https://tec.openplanner.team/stops/LHNhv--1", "https://tec.openplanner.team/stops/LHNland1"], ["https://tec.openplanner.team/stops/Blig4br2", "https://tec.openplanner.team/stops/Bsomtpm1"], ["https://tec.openplanner.team/stops/Cvrchap1", "https://tec.openplanner.team/stops/Cvrfcho1"], ["https://tec.openplanner.team/stops/Bquegob2", "https://tec.openplanner.team/stops/Brebcgi1"], ["https://tec.openplanner.team/stops/LwSgeme2", "https://tec.openplanner.team/stops/LwSschw2"], ["https://tec.openplanner.team/stops/N155aib", "https://tec.openplanner.team/stops/N170aab"], ["https://tec.openplanner.team/stops/LAWaube1", "https://tec.openplanner.team/stops/LAWvold1"], ["https://tec.openplanner.team/stops/N244ata", "https://tec.openplanner.team/stops/N244ava"], ["https://tec.openplanner.team/stops/Llgauxc2", "https://tec.openplanner.team/stops/Llggee52"], ["https://tec.openplanner.team/stops/Csabrun2", "https://tec.openplanner.team/stops/Cvpsncb1"], ["https://tec.openplanner.team/stops/LlgR-Fr*", "https://tec.openplanner.team/stops/LlgR-Fr3"], ["https://tec.openplanner.team/stops/Bnivbpe3", "https://tec.openplanner.team/stops/Bptrvil1"], ["https://tec.openplanner.team/stops/Ccofayt1", "https://tec.openplanner.team/stops/Ccomott1"], ["https://tec.openplanner.team/stops/H4bf107a", "https://tec.openplanner.team/stops/H4bf109a"], ["https://tec.openplanner.team/stops/LHUgole2", "https://tec.openplanner.team/stops/LHUsauv4"], ["https://tec.openplanner.team/stops/H1ms277a", "https://tec.openplanner.team/stops/H1ms311a"], ["https://tec.openplanner.team/stops/LCvneuv5", "https://tec.openplanner.team/stops/LWblesp2"], ["https://tec.openplanner.team/stops/N513bhb", "https://tec.openplanner.team/stops/N521asd"], ["https://tec.openplanner.team/stops/H1hn208a", "https://tec.openplanner.team/stops/H1ms278a"], ["https://tec.openplanner.team/stops/Bnivfle2", "https://tec.openplanner.team/stops/Bnivver2"], ["https://tec.openplanner.team/stops/LBTnors1", "https://tec.openplanner.team/stops/LBTxhen1"], ["https://tec.openplanner.team/stops/Bperwil1", "https://tec.openplanner.team/stops/N519aac"], ["https://tec.openplanner.team/stops/X749ada", "https://tec.openplanner.team/stops/X749afb"], ["https://tec.openplanner.team/stops/N309acb", "https://tec.openplanner.team/stops/N350adb"], ["https://tec.openplanner.team/stops/LRReg--1", "https://tec.openplanner.team/stops/LRRpost1"], ["https://tec.openplanner.team/stops/X901aga", "https://tec.openplanner.team/stops/X901ama"], ["https://tec.openplanner.team/stops/Csedoua1", "https://tec.openplanner.team/stops/Cselibe2"], ["https://tec.openplanner.team/stops/LAYchal1", "https://tec.openplanner.team/stops/LAYgare1"], ["https://tec.openplanner.team/stops/N111aab", "https://tec.openplanner.team/stops/N111aeb"], ["https://tec.openplanner.team/stops/H1ha185a", "https://tec.openplanner.team/stops/H1ha190a"], ["https://tec.openplanner.team/stops/Crebien2", "https://tec.openplanner.team/stops/Crebien3"], ["https://tec.openplanner.team/stops/X713aib", "https://tec.openplanner.team/stops/X713alb"], ["https://tec.openplanner.team/stops/N527ada", "https://tec.openplanner.team/stops/N527aea"], ["https://tec.openplanner.team/stops/Clbbonn1", "https://tec.openplanner.team/stops/Clbbonn3"], ["https://tec.openplanner.team/stops/LSJgrae2", "https://tec.openplanner.team/stops/LSJlabe2"], ["https://tec.openplanner.team/stops/LAUberg1", "https://tec.openplanner.team/stops/LAUmerc2"], ["https://tec.openplanner.team/stops/Cctsold2", "https://tec.openplanner.team/stops/Cctvict1"], ["https://tec.openplanner.team/stops/Lenauln1", "https://tec.openplanner.team/stops/Lenauln2"], ["https://tec.openplanner.team/stops/X615agb", "https://tec.openplanner.team/stops/X615aha"], ["https://tec.openplanner.team/stops/H1ci104a", "https://tec.openplanner.team/stops/H1hn206a"], ["https://tec.openplanner.team/stops/H4eh100b", "https://tec.openplanner.team/stops/H4eh101a"], ["https://tec.openplanner.team/stops/Cli4bra1", "https://tec.openplanner.team/stops/Clibrun2"], ["https://tec.openplanner.team/stops/X610afa", "https://tec.openplanner.team/stops/X622aba"], ["https://tec.openplanner.team/stops/X615ava", "https://tec.openplanner.team/stops/X615bha"], ["https://tec.openplanner.team/stops/N542aha", "https://tec.openplanner.team/stops/N542aib"], ["https://tec.openplanner.team/stops/LCAcruc2", "https://tec.openplanner.team/stops/LTGvill1"], ["https://tec.openplanner.team/stops/LBapeup1", "https://tec.openplanner.team/stops/LLUadze2"], ["https://tec.openplanner.team/stops/Lghchap2", "https://tec.openplanner.team/stops/Lghomni2"], ["https://tec.openplanner.team/stops/N118aza", "https://tec.openplanner.team/stops/N118baa"], ["https://tec.openplanner.team/stops/LHAvall2", "https://tec.openplanner.team/stops/LVIvert1"], ["https://tec.openplanner.team/stops/Cvpcour1", "https://tec.openplanner.team/stops/Cvpcour2"], ["https://tec.openplanner.team/stops/H4og215b", "https://tec.openplanner.team/stops/H4to136a"], ["https://tec.openplanner.team/stops/Bblafab1", "https://tec.openplanner.team/stops/Bblatet2"], ["https://tec.openplanner.team/stops/H2sv212a", "https://tec.openplanner.team/stops/H2tr257a"], ["https://tec.openplanner.team/stops/H4co149b", "https://tec.openplanner.team/stops/H4co162a"], ["https://tec.openplanner.team/stops/X741aga", "https://tec.openplanner.team/stops/X741ala"], ["https://tec.openplanner.team/stops/H1wz169b", "https://tec.openplanner.team/stops/H3bi115b"], ["https://tec.openplanner.team/stops/Bborppa1", "https://tec.openplanner.team/stops/Bitrcen1"], ["https://tec.openplanner.team/stops/Lkithie1", "https://tec.openplanner.team/stops/Lstchas2"], ["https://tec.openplanner.team/stops/N229agb", "https://tec.openplanner.team/stops/N229aqb"], ["https://tec.openplanner.team/stops/X805aea", "https://tec.openplanner.team/stops/X807acb"], ["https://tec.openplanner.team/stops/Bboseco1", "https://tec.openplanner.team/stops/Bboseco2"], ["https://tec.openplanner.team/stops/N260afa", "https://tec.openplanner.team/stops/N260afb"], ["https://tec.openplanner.team/stops/LFPchat2", "https://tec.openplanner.team/stops/LFProt-2"], ["https://tec.openplanner.team/stops/Cgzchab3", "https://tec.openplanner.team/stops/Cgzfarc2"], ["https://tec.openplanner.team/stops/H4ef110a", "https://tec.openplanner.team/stops/H4ef113b"], ["https://tec.openplanner.team/stops/N513aoa", "https://tec.openplanner.team/stops/N513apb"], ["https://tec.openplanner.team/stops/N576aka", "https://tec.openplanner.team/stops/N576ala"], ["https://tec.openplanner.team/stops/H1lm105a", "https://tec.openplanner.team/stops/H1to155b"], ["https://tec.openplanner.team/stops/LMgberw1", "https://tec.openplanner.team/stops/LVIferm2"], ["https://tec.openplanner.team/stops/LVAbuss1", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://tec.openplanner.team/stops/H2ll173b", "https://tec.openplanner.team/stops/H2ll193b"], ["https://tec.openplanner.team/stops/LMIpast2", "https://tec.openplanner.team/stops/LMIpatr4"], ["https://tec.openplanner.team/stops/X641ara", "https://tec.openplanner.team/stops/X641arb"], ["https://tec.openplanner.team/stops/X747aca", "https://tec.openplanner.team/stops/X747ala"], ["https://tec.openplanner.team/stops/X839ada", "https://tec.openplanner.team/stops/X839agb"], ["https://tec.openplanner.team/stops/N311aec", "https://tec.openplanner.team/stops/N311afa"], ["https://tec.openplanner.team/stops/LHUfali1", "https://tec.openplanner.team/stops/LHUfali2"], ["https://tec.openplanner.team/stops/Bwatlbs1", "https://tec.openplanner.team/stops/Bwatlbs2"], ["https://tec.openplanner.team/stops/H4te248b", "https://tec.openplanner.team/stops/H4te260b"], ["https://tec.openplanner.team/stops/N562aka", "https://tec.openplanner.team/stops/N562bwb"], ["https://tec.openplanner.team/stops/H2ec108b", "https://tec.openplanner.team/stops/H2ec110a"], ["https://tec.openplanner.team/stops/Cfcbosq2", "https://tec.openplanner.team/stops/Cfcsaut3"], ["https://tec.openplanner.team/stops/X746aaa", "https://tec.openplanner.team/stops/X747ajb"], ["https://tec.openplanner.team/stops/LLelava3", "https://tec.openplanner.team/stops/X547acb"], ["https://tec.openplanner.team/stops/X657aba", "https://tec.openplanner.team/stops/X657ada"], ["https://tec.openplanner.team/stops/Cmmcime1", "https://tec.openplanner.team/stops/Cmmmarb2"], ["https://tec.openplanner.team/stops/N510adb", "https://tec.openplanner.team/stops/N513bib"], ["https://tec.openplanner.team/stops/H4co107b", "https://tec.openplanner.team/stops/H4co144b"], ["https://tec.openplanner.team/stops/N113acb", "https://tec.openplanner.team/stops/N113adb"], ["https://tec.openplanner.team/stops/Bsgimor2", "https://tec.openplanner.team/stops/Bsgipmo1"], ["https://tec.openplanner.team/stops/Llglair2", "https://tec.openplanner.team/stops/Llgrema2"], ["https://tec.openplanner.team/stops/H1nm138a", "https://tec.openplanner.team/stops/H1nm139a"], ["https://tec.openplanner.team/stops/X614aca", "https://tec.openplanner.team/stops/X614adb"], ["https://tec.openplanner.team/stops/X897aga", "https://tec.openplanner.team/stops/X897agb"], ["https://tec.openplanner.team/stops/N503aea", "https://tec.openplanner.team/stops/N503aga"], ["https://tec.openplanner.team/stops/X623aca", "https://tec.openplanner.team/stops/X623acc"], ["https://tec.openplanner.team/stops/H1wg126a", "https://tec.openplanner.team/stops/H1wg126b"], ["https://tec.openplanner.team/stops/Llglill1", "https://tec.openplanner.team/stops/Llglill2"], ["https://tec.openplanner.team/stops/Cvtgsar2", "https://tec.openplanner.team/stops/Cvthoeu2"], ["https://tec.openplanner.team/stops/LCvneuv4", "https://tec.openplanner.team/stops/LCvoufn2"], ["https://tec.openplanner.team/stops/LHDlibi2", "https://tec.openplanner.team/stops/LLmcheg4"], ["https://tec.openplanner.team/stops/H4le127a", "https://tec.openplanner.team/stops/H4ry140b"], ["https://tec.openplanner.team/stops/N161aaa", "https://tec.openplanner.team/stops/N161afb"], ["https://tec.openplanner.team/stops/LRffroi1", "https://tec.openplanner.team/stops/LRffroi2"], ["https://tec.openplanner.team/stops/X955aab", "https://tec.openplanner.team/stops/X955abb"], ["https://tec.openplanner.team/stops/LwYbruc1", "https://tec.openplanner.team/stops/LwYbruc4"], ["https://tec.openplanner.team/stops/Cjuledo2", "https://tec.openplanner.team/stops/Cjuspin2"], ["https://tec.openplanner.team/stops/H4ft135c", "https://tec.openplanner.team/stops/H4ta118b"], ["https://tec.openplanner.team/stops/Cmacreu1", "https://tec.openplanner.team/stops/Cmmn1171"], ["https://tec.openplanner.team/stops/Ladjaur2", "https://tec.openplanner.team/stops/Ladpire2"], ["https://tec.openplanner.team/stops/N117asb", "https://tec.openplanner.team/stops/N571agb"], ["https://tec.openplanner.team/stops/Cna4che1", "https://tec.openplanner.team/stops/Cnapetr2"], ["https://tec.openplanner.team/stops/LLmpt--1", "https://tec.openplanner.team/stops/LLmvand2"], ["https://tec.openplanner.team/stops/N576aba", "https://tec.openplanner.team/stops/N576akd"], ["https://tec.openplanner.team/stops/H1le125b", "https://tec.openplanner.team/stops/H4re226a"], ["https://tec.openplanner.team/stops/H2hp116a", "https://tec.openplanner.team/stops/H2hp125a"], ["https://tec.openplanner.team/stops/N501dpb", "https://tec.openplanner.team/stops/N501erb"], ["https://tec.openplanner.team/stops/X614afb", "https://tec.openplanner.team/stops/X615bhb"], ["https://tec.openplanner.team/stops/Cmychap2", "https://tec.openplanner.team/stops/Cmypast2"], ["https://tec.openplanner.team/stops/Llgancd2", "https://tec.openplanner.team/stops/Llgmont1"], ["https://tec.openplanner.team/stops/H4bn100a", "https://tec.openplanner.team/stops/H4pi135b"], ["https://tec.openplanner.team/stops/Lvecase2", "https://tec.openplanner.team/stops/Lvecite2"], ["https://tec.openplanner.team/stops/N533alb", "https://tec.openplanner.team/stops/N533ana"], ["https://tec.openplanner.team/stops/LAWbrou2", "https://tec.openplanner.team/stops/LBIpont2"], ["https://tec.openplanner.team/stops/X982aqc", "https://tec.openplanner.team/stops/X982aya"], ["https://tec.openplanner.team/stops/Lmldama1", "https://tec.openplanner.team/stops/Lmleg--1"], ["https://tec.openplanner.team/stops/N531adb", "https://tec.openplanner.team/stops/N531amb"], ["https://tec.openplanner.team/stops/Crewaba1", "https://tec.openplanner.team/stops/Crewaha2"], ["https://tec.openplanner.team/stops/H1ms309a", "https://tec.openplanner.team/stops/H1ms309b"], ["https://tec.openplanner.team/stops/Cfaplma1", "https://tec.openplanner.team/stops/Cfaysle1"], ["https://tec.openplanner.team/stops/LBLfoxh2", "https://tec.openplanner.team/stops/LBLgobc2"], ["https://tec.openplanner.team/stops/H4cp103b", "https://tec.openplanner.team/stops/H4cw106a"], ["https://tec.openplanner.team/stops/N565aca", "https://tec.openplanner.team/stops/N565ada"], ["https://tec.openplanner.team/stops/N506bba", "https://tec.openplanner.team/stops/N506bda"], ["https://tec.openplanner.team/stops/X896aga", "https://tec.openplanner.team/stops/X898aga"], ["https://tec.openplanner.team/stops/LTEziho1", "https://tec.openplanner.team/stops/LTEziho2"], ["https://tec.openplanner.team/stops/X801bga", "https://tec.openplanner.team/stops/X801bha"], ["https://tec.openplanner.team/stops/Lgrmc--1", "https://tec.openplanner.team/stops/Lgrside1"], ["https://tec.openplanner.team/stops/Crcpla2", "https://tec.openplanner.team/stops/Crcplac3"], ["https://tec.openplanner.team/stops/X986aka", "https://tec.openplanner.team/stops/X986akb"], ["https://tec.openplanner.team/stops/X607aia", "https://tec.openplanner.team/stops/X607aka"], ["https://tec.openplanner.team/stops/H1mk116a", "https://tec.openplanner.team/stops/H1mk116b"], ["https://tec.openplanner.team/stops/H4de113a", "https://tec.openplanner.team/stops/H4wt159b"], ["https://tec.openplanner.team/stops/X346akb", "https://tec.openplanner.team/stops/X346alb"], ["https://tec.openplanner.team/stops/H4fo119a", "https://tec.openplanner.team/stops/H4ga166a"], ["https://tec.openplanner.team/stops/X818apb", "https://tec.openplanner.team/stops/X818ara"], ["https://tec.openplanner.team/stops/H1by102a", "https://tec.openplanner.team/stops/H1by103a"], ["https://tec.openplanner.team/stops/LaRkape1", "https://tec.openplanner.team/stops/LmSluxh2"], ["https://tec.openplanner.team/stops/Cmmjami1", "https://tec.openplanner.team/stops/Cmmjami4"], ["https://tec.openplanner.team/stops/LROhael1", "https://tec.openplanner.team/stops/LROrtba2"], ["https://tec.openplanner.team/stops/LESevie1", "https://tec.openplanner.team/stops/LFNlato1"], ["https://tec.openplanner.team/stops/H4ag102a", "https://tec.openplanner.team/stops/H4ag102b"], ["https://tec.openplanner.team/stops/Clrmarl1", "https://tec.openplanner.team/stops/CMpara1"], ["https://tec.openplanner.team/stops/Llghaut1", "https://tec.openplanner.team/stops/Llgwesp2"], ["https://tec.openplanner.team/stops/LFrec--1", "https://tec.openplanner.team/stops/LFreg--1"], ["https://tec.openplanner.team/stops/Loubonc2", "https://tec.openplanner.team/stops/Lourose4"], ["https://tec.openplanner.team/stops/LHUecte1", "https://tec.openplanner.team/stops/LHUpost1"], ["https://tec.openplanner.team/stops/LMheg--1", "https://tec.openplanner.team/stops/Lprceri2"], ["https://tec.openplanner.team/stops/H1ms272b", "https://tec.openplanner.team/stops/H1ms272c"], ["https://tec.openplanner.team/stops/N501kxb", "https://tec.openplanner.team/stops/N501mta"], ["https://tec.openplanner.team/stops/LiV19--2", "https://tec.openplanner.team/stops/LiVgirk2"], ["https://tec.openplanner.team/stops/Bbxlfro1", "https://tec.openplanner.team/stops/Bettgle2"], ["https://tec.openplanner.team/stops/H1te176a", "https://tec.openplanner.team/stops/H1te177a"], ["https://tec.openplanner.team/stops/H4bc101a", "https://tec.openplanner.team/stops/H4bc102a"], ["https://tec.openplanner.team/stops/H4te250a", "https://tec.openplanner.team/stops/H4te257a"], ["https://tec.openplanner.team/stops/Cacscav1", "https://tec.openplanner.team/stops/Cjojonc1"], ["https://tec.openplanner.team/stops/N229aca", "https://tec.openplanner.team/stops/N229ana"], ["https://tec.openplanner.team/stops/H4pe124b", "https://tec.openplanner.team/stops/H4pe125a"], ["https://tec.openplanner.team/stops/H1fv102a", "https://tec.openplanner.team/stops/H1ls129a"], ["https://tec.openplanner.team/stops/N501ckb", "https://tec.openplanner.team/stops/N501jla"], ["https://tec.openplanner.team/stops/X904aga", "https://tec.openplanner.team/stops/X943aga"], ["https://tec.openplanner.team/stops/NC44aga", "https://tec.openplanner.team/stops/NC44agb"], ["https://tec.openplanner.team/stops/N101arb", "https://tec.openplanner.team/stops/N145aea"], ["https://tec.openplanner.team/stops/LHUalbe2", "https://tec.openplanner.team/stops/NL80afa"], ["https://tec.openplanner.team/stops/Bnilcha2", "https://tec.openplanner.team/stops/Bniltri2"], ["https://tec.openplanner.team/stops/Boffegl1", "https://tec.openplanner.team/stops/Bramcom1"], ["https://tec.openplanner.team/stops/H3lr113b", "https://tec.openplanner.team/stops/H3lr121b"], ["https://tec.openplanner.team/stops/N301aca", "https://tec.openplanner.team/stops/N301adb"], ["https://tec.openplanner.team/stops/LREgare1", "https://tec.openplanner.team/stops/LREgrot2"], ["https://tec.openplanner.team/stops/Lsmcime1", "https://tec.openplanner.team/stops/Lsmrcim2"], ["https://tec.openplanner.team/stops/Llgatla2", "https://tec.openplanner.team/stops/Llginte2"], ["https://tec.openplanner.team/stops/N519ama", "https://tec.openplanner.team/stops/N520aeb"], ["https://tec.openplanner.team/stops/LHueg--1", "https://tec.openplanner.team/stops/LHumoul2"], ["https://tec.openplanner.team/stops/H4bl104a", "https://tec.openplanner.team/stops/H4ha169a"], ["https://tec.openplanner.team/stops/H1sy141a", "https://tec.openplanner.team/stops/H1to153c"], ["https://tec.openplanner.team/stops/H4ar104a", "https://tec.openplanner.team/stops/H4pl136a"], ["https://tec.openplanner.team/stops/N135aab", "https://tec.openplanner.team/stops/N135aed"], ["https://tec.openplanner.team/stops/H1ho122d", "https://tec.openplanner.team/stops/H1ho143a"], ["https://tec.openplanner.team/stops/X774agb", "https://tec.openplanner.team/stops/X775aba"], ["https://tec.openplanner.team/stops/Cgobruy1", "https://tec.openplanner.team/stops/CMfbru1"], ["https://tec.openplanner.team/stops/LHumoul2", "https://tec.openplanner.team/stops/LMfpeni*"], ["https://tec.openplanner.team/stops/X886aba", "https://tec.openplanner.team/stops/X886acb"], ["https://tec.openplanner.team/stops/LeUbell*", "https://tec.openplanner.team/stops/LeUvoss1"], ["https://tec.openplanner.team/stops/LATdony1", "https://tec.openplanner.team/stops/LATgill1"], ["https://tec.openplanner.team/stops/Cli4bra2", "https://tec.openplanner.team/stops/Clulidl1"], ["https://tec.openplanner.team/stops/H4mo146b", "https://tec.openplanner.team/stops/H4mo187a"], ["https://tec.openplanner.team/stops/H1bd101b", "https://tec.openplanner.team/stops/H1ol140b"], ["https://tec.openplanner.team/stops/Lvcchau1", "https://tec.openplanner.team/stops/Lvcsapi1"], ["https://tec.openplanner.team/stops/Lbhpeti1", "https://tec.openplanner.team/stops/Lroeg--1"], ["https://tec.openplanner.team/stops/Ltipass1", "https://tec.openplanner.team/stops/Ltipass2"], ["https://tec.openplanner.team/stops/Llgbavi0", "https://tec.openplanner.team/stops/Llgbavi1"], ["https://tec.openplanner.team/stops/N117ama", "https://tec.openplanner.team/stops/N117ara"], ["https://tec.openplanner.team/stops/LFFmonu1", "https://tec.openplanner.team/stops/LFFpier1"], ["https://tec.openplanner.team/stops/H1so141a", "https://tec.openplanner.team/stops/H1so141b"], ["https://tec.openplanner.team/stops/X902ada", "https://tec.openplanner.team/stops/X999aba"], ["https://tec.openplanner.team/stops/X792aba", "https://tec.openplanner.team/stops/X793ana"], ["https://tec.openplanner.team/stops/Lghmeun1", "https://tec.openplanner.team/stops/Ljetout4"], ["https://tec.openplanner.team/stops/H3lr112b", "https://tec.openplanner.team/stops/H3lr121a"], ["https://tec.openplanner.team/stops/H1on128d", "https://tec.openplanner.team/stops/H1ro136b"], ["https://tec.openplanner.team/stops/LbO52--2", "https://tec.openplanner.team/stops/LbOhoff2"], ["https://tec.openplanner.team/stops/Lpeeg--1", "https://tec.openplanner.team/stops/Lpeeg--2"], ["https://tec.openplanner.team/stops/Llgnico2", "https://tec.openplanner.team/stops/LlgnicT1"], ["https://tec.openplanner.team/stops/X812aaa", "https://tec.openplanner.team/stops/X812asa"], ["https://tec.openplanner.team/stops/Cfrchfe1", "https://tec.openplanner.team/stops/Cfrgare3"], ["https://tec.openplanner.team/stops/Balsbeg1", "https://tec.openplanner.team/stops/Balswsa2"], ["https://tec.openplanner.team/stops/Cgplhoi2", "https://tec.openplanner.team/stops/Cgplutt1"], ["https://tec.openplanner.team/stops/H4mo162a", "https://tec.openplanner.team/stops/H4mo174a"], ["https://tec.openplanner.team/stops/X636bbb", "https://tec.openplanner.team/stops/X636beb"], ["https://tec.openplanner.team/stops/X723acb", "https://tec.openplanner.team/stops/X723alb"], ["https://tec.openplanner.team/stops/Llgangl2", "https://tec.openplanner.team/stops/Llghoch1"], ["https://tec.openplanner.team/stops/Cmaleri1", "https://tec.openplanner.team/stops/Cmmplac3"], ["https://tec.openplanner.team/stops/H1hv132a", "https://tec.openplanner.team/stops/H1hv132b"], ["https://tec.openplanner.team/stops/H5el101b", "https://tec.openplanner.team/stops/H5el110a"], ["https://tec.openplanner.team/stops/N340afa", "https://tec.openplanner.team/stops/N340afb"], ["https://tec.openplanner.team/stops/LOTdelv1", "https://tec.openplanner.team/stops/LVlplan1"], ["https://tec.openplanner.team/stops/NL80aca", "https://tec.openplanner.team/stops/NL80acb"], ["https://tec.openplanner.team/stops/LMOelva1", "https://tec.openplanner.team/stops/LMOelva2"], ["https://tec.openplanner.team/stops/Bcrbrpb1", "https://tec.openplanner.team/stops/Bcrbrpb2"], ["https://tec.openplanner.team/stops/LThbatt1", "https://tec.openplanner.team/stops/LThsere1"], ["https://tec.openplanner.team/stops/N202aaa", "https://tec.openplanner.team/stops/N202aab"], ["https://tec.openplanner.team/stops/X646aba", "https://tec.openplanner.team/stops/X646abb"], ["https://tec.openplanner.team/stops/X659aba", "https://tec.openplanner.team/stops/X659ayb"], ["https://tec.openplanner.team/stops/Bgzdcen2", "https://tec.openplanner.team/stops/Bgzddub1"], ["https://tec.openplanner.team/stops/Bolgfon1", "https://tec.openplanner.team/stops/Bolgsha1"], ["https://tec.openplanner.team/stops/N132aaa", "https://tec.openplanner.team/stops/N132afa"], ["https://tec.openplanner.team/stops/Blmlmco1", "https://tec.openplanner.team/stops/Blmlqlo2"], ["https://tec.openplanner.team/stops/LAUjean1", "https://tec.openplanner.team/stops/LSJlabe1"], ["https://tec.openplanner.team/stops/H1er107a", "https://tec.openplanner.team/stops/H1er110b"], ["https://tec.openplanner.team/stops/Lanfran4", "https://tec.openplanner.team/stops/Lansarm2"], ["https://tec.openplanner.team/stops/Crocona2", "https://tec.openplanner.team/stops/Croplom2"], ["https://tec.openplanner.team/stops/N501iea", "https://tec.openplanner.team/stops/N501ieb"], ["https://tec.openplanner.team/stops/Cmyfoym1", "https://tec.openplanner.team/stops/Cmyfoym2"], ["https://tec.openplanner.team/stops/Lromc--1", "https://tec.openplanner.team/stops/Lromc--2"], ["https://tec.openplanner.team/stops/X672acb", "https://tec.openplanner.team/stops/X672aka"], ["https://tec.openplanner.team/stops/H4lh161a", "https://tec.openplanner.team/stops/H5el114b"], ["https://tec.openplanner.team/stops/H4hq131b", "https://tec.openplanner.team/stops/H4th139a"], ["https://tec.openplanner.team/stops/Blhulor1", "https://tec.openplanner.team/stops/Blhulor2"], ["https://tec.openplanner.team/stops/N584aqa", "https://tec.openplanner.team/stops/N584aqb"], ["https://tec.openplanner.team/stops/Cgzmira1", "https://tec.openplanner.team/stops/Cgzmira2"], ["https://tec.openplanner.team/stops/H2hg147b", "https://tec.openplanner.team/stops/H2hg157a"], ["https://tec.openplanner.team/stops/LCxchal1", "https://tec.openplanner.team/stops/LCxchal2"], ["https://tec.openplanner.team/stops/Cladura4", "https://tec.openplanner.team/stops/NC23afa"], ["https://tec.openplanner.team/stops/LHScite1", "https://tec.openplanner.team/stops/LHSfexh2"], ["https://tec.openplanner.team/stops/Cfobriq2", "https://tec.openplanner.team/stops/Cfogaul2"], ["https://tec.openplanner.team/stops/H1je211b", "https://tec.openplanner.team/stops/H1je369a"], ["https://tec.openplanner.team/stops/X740abd", "https://tec.openplanner.team/stops/X985adb"], ["https://tec.openplanner.team/stops/LWOrout2", "https://tec.openplanner.team/stops/LWOwa161"], ["https://tec.openplanner.team/stops/LMAgare*", "https://tec.openplanner.team/stops/LMApl--1"], ["https://tec.openplanner.team/stops/LFdeg--4", "https://tec.openplanner.team/stops/LLMfond1"], ["https://tec.openplanner.team/stops/N579aaa", "https://tec.openplanner.team/stops/N580aab"], ["https://tec.openplanner.team/stops/Lprmc--1", "https://tec.openplanner.team/stops/Lprmc--2"], ["https://tec.openplanner.team/stops/X910aia", "https://tec.openplanner.team/stops/X910ajb"], ["https://tec.openplanner.team/stops/H1vb142b", "https://tec.openplanner.team/stops/H1vb148b"], ["https://tec.openplanner.team/stops/LHegame1", "https://tec.openplanner.team/stops/LOUbleu2"], ["https://tec.openplanner.team/stops/LAWdefu4", "https://tec.openplanner.team/stops/LAWeg--2"], ["https://tec.openplanner.team/stops/Llgstev2", "https://tec.openplanner.team/stops/Llgvalu1"], ["https://tec.openplanner.team/stops/Bbxlmid1", "https://tec.openplanner.team/stops/Bbxlmid4"], ["https://tec.openplanner.team/stops/N551ara", "https://tec.openplanner.team/stops/N551arb"], ["https://tec.openplanner.team/stops/H4wu375a", "https://tec.openplanner.team/stops/H4wu420a"], ["https://tec.openplanner.team/stops/X644aba", "https://tec.openplanner.team/stops/X644abb"], ["https://tec.openplanner.team/stops/N501cga", "https://tec.openplanner.team/stops/N501cia"], ["https://tec.openplanner.team/stops/X614aaa", "https://tec.openplanner.team/stops/X614arb"], ["https://tec.openplanner.team/stops/LBEfagn1", "https://tec.openplanner.team/stops/LBEtroo1"], ["https://tec.openplanner.team/stops/H1si157a", "https://tec.openplanner.team/stops/H1si157b"], ["https://tec.openplanner.team/stops/NL81agb", "https://tec.openplanner.team/stops/NL81aha"], ["https://tec.openplanner.team/stops/X602aob", "https://tec.openplanner.team/stops/X653aca"], ["https://tec.openplanner.team/stops/Bvirhsa1", "https://tec.openplanner.team/stops/Bvirmav2"], ["https://tec.openplanner.team/stops/N501kcb", "https://tec.openplanner.team/stops/N501lfb"], ["https://tec.openplanner.team/stops/LNChock1", "https://tec.openplanner.team/stops/LRachen*"], ["https://tec.openplanner.team/stops/Cfrplac1", "https://tec.openplanner.team/stops/Cfrplac6"], ["https://tec.openplanner.team/stops/H1hh110a", "https://tec.openplanner.team/stops/H1hh111b"], ["https://tec.openplanner.team/stops/Ctrplac1", "https://tec.openplanner.team/stops/Ctrrpla4"], ["https://tec.openplanner.team/stops/H1by101a", "https://tec.openplanner.team/stops/H1by107b"], ["https://tec.openplanner.team/stops/Cgzvivi2", "https://tec.openplanner.team/stops/Ctuosso1"], ["https://tec.openplanner.team/stops/H1bo103b", "https://tec.openplanner.team/stops/H1bo112a"], ["https://tec.openplanner.team/stops/H4an105b", "https://tec.openplanner.team/stops/H4rs119a"], ["https://tec.openplanner.team/stops/X912aba", "https://tec.openplanner.team/stops/X912adb"], ["https://tec.openplanner.team/stops/X641aua", "https://tec.openplanner.team/stops/X641azb"], ["https://tec.openplanner.team/stops/X669aga", "https://tec.openplanner.team/stops/X672afb"], ["https://tec.openplanner.team/stops/N241afb", "https://tec.openplanner.team/stops/N270aab"], ["https://tec.openplanner.team/stops/H2ha137a", "https://tec.openplanner.team/stops/H2hg153a"], ["https://tec.openplanner.team/stops/X888acb", "https://tec.openplanner.team/stops/X897afa"], ["https://tec.openplanner.team/stops/N501kuc", "https://tec.openplanner.team/stops/N501lna"], ["https://tec.openplanner.team/stops/Bcseaba1", "https://tec.openplanner.team/stops/Bmoufil2"], ["https://tec.openplanner.team/stops/N136aea", "https://tec.openplanner.team/stops/N138aia"], ["https://tec.openplanner.team/stops/H4ag107b", "https://tec.openplanner.team/stops/H4pe128b"], ["https://tec.openplanner.team/stops/Cmymaco1", "https://tec.openplanner.team/stops/Cmywarc2"], ["https://tec.openplanner.team/stops/LAYsupe1", "https://tec.openplanner.team/stops/LREairp1"], ["https://tec.openplanner.team/stops/Cmlhubi1", "https://tec.openplanner.team/stops/Cmlhubi2"], ["https://tec.openplanner.team/stops/NL81afb", "https://tec.openplanner.team/stops/NL81agb"], ["https://tec.openplanner.team/stops/N343aab", "https://tec.openplanner.team/stops/X344acb"], ["https://tec.openplanner.team/stops/X839abc", "https://tec.openplanner.team/stops/X839acb"], ["https://tec.openplanner.team/stops/H2fa106a", "https://tec.openplanner.team/stops/H2fa109a"], ["https://tec.openplanner.team/stops/Crewatb1", "https://tec.openplanner.team/stops/Crewath1"], ["https://tec.openplanner.team/stops/Lpegole1", "https://tec.openplanner.team/stops/Lpemata2"], ["https://tec.openplanner.team/stops/Lsebuil2", "https://tec.openplanner.team/stops/Lsefive1"], ["https://tec.openplanner.team/stops/H1gh143a", "https://tec.openplanner.team/stops/H1hh110b"], ["https://tec.openplanner.team/stops/LhM07--1", "https://tec.openplanner.team/stops/LmCkirc2"], ["https://tec.openplanner.team/stops/N533anb", "https://tec.openplanner.team/stops/N533apa"], ["https://tec.openplanner.team/stops/H4bi100b", "https://tec.openplanner.team/stops/H4pq114a"], ["https://tec.openplanner.team/stops/N571abb", "https://tec.openplanner.team/stops/N571acb"], ["https://tec.openplanner.team/stops/LFFchal1", "https://tec.openplanner.team/stops/LFFmonu1"], ["https://tec.openplanner.team/stops/LBslama2", "https://tec.openplanner.team/stops/NL72adb"], ["https://tec.openplanner.team/stops/Bbchmai1", "https://tec.openplanner.team/stops/Bbchmin2"], ["https://tec.openplanner.team/stops/H5at127a", "https://tec.openplanner.team/stops/H5at139a"], ["https://tec.openplanner.team/stops/H4br110a", "https://tec.openplanner.team/stops/H4br111a"], ["https://tec.openplanner.team/stops/LhPhale2", "https://tec.openplanner.team/stops/LvAwere2"], ["https://tec.openplanner.team/stops/LHTcarr2", "https://tec.openplanner.team/stops/LHTptha4"], ["https://tec.openplanner.team/stops/N501hxa", "https://tec.openplanner.team/stops/N501inb"], ["https://tec.openplanner.team/stops/LBTwauc2", "https://tec.openplanner.team/stops/LLM4rou4"], ["https://tec.openplanner.team/stops/X601ccc", "https://tec.openplanner.team/stops/X602aha"], ["https://tec.openplanner.team/stops/LSZpiro1", "https://tec.openplanner.team/stops/LSZpiro2"], ["https://tec.openplanner.team/stops/H5st163b", "https://tec.openplanner.team/stops/H5st169b"], ["https://tec.openplanner.team/stops/N501beb", "https://tec.openplanner.team/stops/N501ncb"], ["https://tec.openplanner.team/stops/X681afa", "https://tec.openplanner.team/stops/X687aia"], ["https://tec.openplanner.team/stops/Lhrferr1", "https://tec.openplanner.team/stops/Lhrlaix1"], ["https://tec.openplanner.team/stops/H4hx117a", "https://tec.openplanner.team/stops/H4hx122a"], ["https://tec.openplanner.team/stops/N501bka", "https://tec.openplanner.team/stops/N501bqb"], ["https://tec.openplanner.team/stops/Cchtram2", "https://tec.openplanner.team/stops/Cchvil1"], ["https://tec.openplanner.team/stops/LmR50--1", "https://tec.openplanner.team/stops/LmRh%C3%B6fe1"], ["https://tec.openplanner.team/stops/H5el114a", "https://tec.openplanner.team/stops/H5el116a"], ["https://tec.openplanner.team/stops/N519aob", "https://tec.openplanner.team/stops/N519apb"], ["https://tec.openplanner.team/stops/X775aba", "https://tec.openplanner.team/stops/X775aca"], ["https://tec.openplanner.team/stops/H1le117a", "https://tec.openplanner.team/stops/H1le120a"], ["https://tec.openplanner.team/stops/Bdvmalo2", "https://tec.openplanner.team/stops/Bdvmcbo1"], ["https://tec.openplanner.team/stops/X804awb", "https://tec.openplanner.team/stops/X804bga"], ["https://tec.openplanner.team/stops/X769acb", "https://tec.openplanner.team/stops/X769aob"], ["https://tec.openplanner.team/stops/Cvsbois1", "https://tec.openplanner.team/stops/Cvsbois2"], ["https://tec.openplanner.team/stops/X901abb", "https://tec.openplanner.team/stops/X901acb"], ["https://tec.openplanner.team/stops/Bauddel2", "https://tec.openplanner.team/stops/Baudvdr1"], ["https://tec.openplanner.team/stops/N528aca", "https://tec.openplanner.team/stops/N528ada"], ["https://tec.openplanner.team/stops/Cfmchau1", "https://tec.openplanner.team/stops/Cfmtrie1"], ["https://tec.openplanner.team/stops/Cacecol2", "https://tec.openplanner.team/stops/Cacgare1"], ["https://tec.openplanner.team/stops/Bniv4co1", "https://tec.openplanner.team/stops/Bnivrwi2"], ["https://tec.openplanner.team/stops/N260aaa", "https://tec.openplanner.team/stops/N260aab"], ["https://tec.openplanner.team/stops/Lprmana1", "https://tec.openplanner.team/stops/Lprmana5"], ["https://tec.openplanner.team/stops/LAWcite4", "https://tec.openplanner.team/stops/LAWvold1"], ["https://tec.openplanner.team/stops/X908aaa", "https://tec.openplanner.team/stops/X955adb"], ["https://tec.openplanner.team/stops/Cfbcal2", "https://tec.openplanner.team/stops/Cfbegli1"], ["https://tec.openplanner.team/stops/LhSkape1", "https://tec.openplanner.team/stops/LwAschu1"], ["https://tec.openplanner.team/stops/Bovepla1", "https://tec.openplanner.team/stops/Bovevri2"], ["https://tec.openplanner.team/stops/Bjodcar2", "https://tec.openplanner.team/stops/Bsjgmil1"], ["https://tec.openplanner.team/stops/LSChane2", "https://tec.openplanner.team/stops/LVMcent1"], ["https://tec.openplanner.team/stops/LROcent1", "https://tec.openplanner.team/stops/LROchap1"], ["https://tec.openplanner.team/stops/H4fr145b", "https://tec.openplanner.team/stops/H4ma420a"], ["https://tec.openplanner.team/stops/H5at123a", "https://tec.openplanner.team/stops/H5at124a"], ["https://tec.openplanner.team/stops/X953aca", "https://tec.openplanner.team/stops/X953afb"], ["https://tec.openplanner.team/stops/NL74aaa", "https://tec.openplanner.team/stops/NL75aba"], ["https://tec.openplanner.team/stops/H4av106c", "https://tec.openplanner.team/stops/H4av106d"], ["https://tec.openplanner.team/stops/LmNha152", "https://tec.openplanner.team/stops/LmNmerl2"], ["https://tec.openplanner.team/stops/Bcrnvic1", "https://tec.openplanner.team/stops/Bcrnvic2"], ["https://tec.openplanner.team/stops/X370acb", "https://tec.openplanner.team/stops/X850ajb"], ["https://tec.openplanner.team/stops/X910aeb", "https://tec.openplanner.team/stops/X911akb"], ["https://tec.openplanner.team/stops/LEScarr2", "https://tec.openplanner.team/stops/LESmecp*"], ["https://tec.openplanner.team/stops/Bnetcor1", "https://tec.openplanner.team/stops/Bnetrtb1"], ["https://tec.openplanner.team/stops/Lghgend1", "https://tec.openplanner.team/stops/Lghgend2"], ["https://tec.openplanner.team/stops/Cfrcoop1", "https://tec.openplanner.team/stops/Cfrcoop3"], ["https://tec.openplanner.team/stops/N506ata", "https://tec.openplanner.team/stops/N506ava"], ["https://tec.openplanner.team/stops/N515ajb", "https://tec.openplanner.team/stops/N515aua"], ["https://tec.openplanner.team/stops/H1wl124a", "https://tec.openplanner.team/stops/H1wl126a"], ["https://tec.openplanner.team/stops/X902aya", "https://tec.openplanner.team/stops/X902baa"], ["https://tec.openplanner.team/stops/X576aba", "https://tec.openplanner.team/stops/X576aga"], ["https://tec.openplanner.team/stops/LBIbois1", "https://tec.openplanner.team/stops/LBIbois2"], ["https://tec.openplanner.team/stops/Ccodubo1", "https://tec.openplanner.team/stops/Ccogrha1"], ["https://tec.openplanner.team/stops/X728aba", "https://tec.openplanner.team/stops/X748adb"], ["https://tec.openplanner.team/stops/X850afa", "https://tec.openplanner.team/stops/X850alb"], ["https://tec.openplanner.team/stops/H5bl117b", "https://tec.openplanner.team/stops/H5qu182a"], ["https://tec.openplanner.team/stops/X609aqa", "https://tec.openplanner.team/stops/X627aca"], ["https://tec.openplanner.team/stops/N501bza", "https://tec.openplanner.team/stops/N502acb"], ["https://tec.openplanner.team/stops/N234aab", "https://tec.openplanner.team/stops/N244axa"], ["https://tec.openplanner.team/stops/X837aea", "https://tec.openplanner.team/stops/X837afa"], ["https://tec.openplanner.team/stops/X358acc", "https://tec.openplanner.team/stops/X358acd"], ["https://tec.openplanner.team/stops/X780abb", "https://tec.openplanner.team/stops/X780aca"], ["https://tec.openplanner.team/stops/Bmanfbg2", "https://tec.openplanner.team/stops/Bmangar1"], ["https://tec.openplanner.team/stops/H1pa105a", "https://tec.openplanner.team/stops/H1qu119a"], ["https://tec.openplanner.team/stops/N229amb", "https://tec.openplanner.team/stops/N229atb"], ["https://tec.openplanner.team/stops/LSOboeu2", "https://tec.openplanner.team/stops/LSOvoie1"], ["https://tec.openplanner.team/stops/X634aib", "https://tec.openplanner.team/stops/X634akb"], ["https://tec.openplanner.team/stops/X641ama", "https://tec.openplanner.team/stops/X641ayb"], ["https://tec.openplanner.team/stops/LmHbien2", "https://tec.openplanner.team/stops/LmHschm2"], ["https://tec.openplanner.team/stops/X804ata", "https://tec.openplanner.team/stops/X804avb"], ["https://tec.openplanner.team/stops/LbHzent1", "https://tec.openplanner.team/stops/LbHzent2"], ["https://tec.openplanner.team/stops/Bgzdast1", "https://tec.openplanner.team/stops/Bgzdast2"], ["https://tec.openplanner.team/stops/Lhuderu1", "https://tec.openplanner.team/stops/Lhuderu2"], ["https://tec.openplanner.team/stops/X626aja", "https://tec.openplanner.team/stops/X687aba"], ["https://tec.openplanner.team/stops/H1wz169a", "https://tec.openplanner.team/stops/H1wz169b"], ["https://tec.openplanner.team/stops/LSEquar2", "https://tec.openplanner.team/stops/LSEvill1"], ["https://tec.openplanner.team/stops/LBEcroi1", "https://tec.openplanner.team/stops/LBEmich1"], ["https://tec.openplanner.team/stops/N534aub", "https://tec.openplanner.team/stops/N534bdb"], ["https://tec.openplanner.team/stops/Cmgbras2", "https://tec.openplanner.team/stops/Cmgpn2"], ["https://tec.openplanner.team/stops/Bhlvlou1", "https://tec.openplanner.team/stops/Bhlvlou2"], ["https://tec.openplanner.team/stops/N562aeb", "https://tec.openplanner.team/stops/N562afa"], ["https://tec.openplanner.team/stops/H4an105b", "https://tec.openplanner.team/stops/H4cr110a"], ["https://tec.openplanner.team/stops/LWAcham1", "https://tec.openplanner.team/stops/LWAvisi1"], ["https://tec.openplanner.team/stops/Cctgiss1", "https://tec.openplanner.team/stops/Cctkais1"], ["https://tec.openplanner.team/stops/LJOchar2", "https://tec.openplanner.team/stops/LSOvoie2"], ["https://tec.openplanner.team/stops/H2pe160a", "https://tec.openplanner.team/stops/H2sv214a"], ["https://tec.openplanner.team/stops/X879asa", "https://tec.openplanner.team/stops/X879asb"], ["https://tec.openplanner.team/stops/Csemacq4", "https://tec.openplanner.team/stops/Csesabo1"], ["https://tec.openplanner.team/stops/Cbfcham3", "https://tec.openplanner.team/stops/Cbfgare2"], ["https://tec.openplanner.team/stops/H4mb142a", "https://tec.openplanner.team/stops/H4mb143b"], ["https://tec.openplanner.team/stops/H3so163b", "https://tec.openplanner.team/stops/H3so172a"], ["https://tec.openplanner.team/stops/N517aba", "https://tec.openplanner.team/stops/N581abb"], ["https://tec.openplanner.team/stops/X604aea", "https://tec.openplanner.team/stops/X604alb"], ["https://tec.openplanner.team/stops/LBNlong1", "https://tec.openplanner.team/stops/LBNvill2"], ["https://tec.openplanner.team/stops/Cwfdame1", "https://tec.openplanner.team/stops/Cwfdame2"], ["https://tec.openplanner.team/stops/X820aab", "https://tec.openplanner.team/stops/X820aib"], ["https://tec.openplanner.team/stops/X922aka", "https://tec.openplanner.team/stops/X922akb"], ["https://tec.openplanner.team/stops/NL78ahc", "https://tec.openplanner.team/stops/NL78akb"], ["https://tec.openplanner.team/stops/X982apb", "https://tec.openplanner.team/stops/X982aqc"], ["https://tec.openplanner.team/stops/X807acb", "https://tec.openplanner.team/stops/X808aha"], ["https://tec.openplanner.team/stops/H3bi102a", "https://tec.openplanner.team/stops/H3bi102b"], ["https://tec.openplanner.team/stops/N527aca", "https://tec.openplanner.team/stops/N527adb"], ["https://tec.openplanner.team/stops/Cnadrev1", "https://tec.openplanner.team/stops/Cnadrev2"], ["https://tec.openplanner.team/stops/N343aca", "https://tec.openplanner.team/stops/N343ana"], ["https://tec.openplanner.team/stops/H1ne143b", "https://tec.openplanner.team/stops/H1ne144a"], ["https://tec.openplanner.team/stops/N231abb", "https://tec.openplanner.team/stops/N231afb"], ["https://tec.openplanner.team/stops/Lrcarse1", "https://tec.openplanner.team/stops/Lrcprin1"], ["https://tec.openplanner.team/stops/LDOastr1", "https://tec.openplanner.team/stops/LDOastr2"], ["https://tec.openplanner.team/stops/LeUnopr2", "https://tec.openplanner.team/stops/LeUwais2"], ["https://tec.openplanner.team/stops/Lsccdor1", "https://tec.openplanner.team/stops/Lscchat1"], ["https://tec.openplanner.team/stops/X663ata", "https://tec.openplanner.team/stops/X664ana"], ["https://tec.openplanner.team/stops/X829aab", "https://tec.openplanner.team/stops/X831aca"], ["https://tec.openplanner.team/stops/LBVcent2", "https://tec.openplanner.team/stops/LBVzand2"], ["https://tec.openplanner.team/stops/N116aba", "https://tec.openplanner.team/stops/N116adb"], ["https://tec.openplanner.team/stops/Lmopast1", "https://tec.openplanner.team/stops/Lmoweri1"], ["https://tec.openplanner.team/stops/N560acb", "https://tec.openplanner.team/stops/N560ada"], ["https://tec.openplanner.team/stops/X669adb", "https://tec.openplanner.team/stops/X672aic"], ["https://tec.openplanner.team/stops/Lglvand2", "https://tec.openplanner.team/stops/Llgbago2"], ["https://tec.openplanner.team/stops/LHrkin-1", "https://tec.openplanner.team/stops/LREprea1"], ["https://tec.openplanner.team/stops/Ladlimi1", "https://tec.openplanner.team/stops/Ldineuf1"], ["https://tec.openplanner.team/stops/Ljuetie3", "https://tec.openplanner.team/stops/Ljujaur2"], ["https://tec.openplanner.team/stops/H2bh107a", "https://tec.openplanner.team/stops/H2ll194a"], ["https://tec.openplanner.team/stops/NR30aaa", "https://tec.openplanner.team/stops/NR30abb"], ["https://tec.openplanner.team/stops/LCSgend2", "https://tec.openplanner.team/stops/LHHroua2"], ["https://tec.openplanner.team/stops/H3so177b", "https://tec.openplanner.team/stops/H3so178a"], ["https://tec.openplanner.team/stops/N569ala", "https://tec.openplanner.team/stops/N569alb"], ["https://tec.openplanner.team/stops/N209akb", "https://tec.openplanner.team/stops/N209ala"], ["https://tec.openplanner.team/stops/LBPxhav2", "https://tec.openplanner.team/stops/LRGmoul2"], ["https://tec.openplanner.team/stops/NC11aja", "https://tec.openplanner.team/stops/NC11ajb"], ["https://tec.openplanner.team/stops/Benimar2", "https://tec.openplanner.team/stops/Benimar4"], ["https://tec.openplanner.team/stops/Bhalh311", "https://tec.openplanner.team/stops/Bhalh312"], ["https://tec.openplanner.team/stops/LROmorf1", "https://tec.openplanner.team/stops/LWLtamb1"], ["https://tec.openplanner.team/stops/Cchprun2", "https://tec.openplanner.team/stops/NC01aha"], ["https://tec.openplanner.team/stops/Bsompri1", "https://tec.openplanner.team/stops/N584axb"], ["https://tec.openplanner.team/stops/LhGkirc4", "https://tec.openplanner.team/stops/LhGkirc6"], ["https://tec.openplanner.team/stops/X747adb", "https://tec.openplanner.team/stops/X747afb"], ["https://tec.openplanner.team/stops/Cfocmed2", "https://tec.openplanner.team/stops/Cforepo1"], ["https://tec.openplanner.team/stops/LACwass2", "https://tec.openplanner.team/stops/LBUmara3"], ["https://tec.openplanner.team/stops/Bquepla1", "https://tec.openplanner.team/stops/Bquepla2"], ["https://tec.openplanner.team/stops/Lghcise1", "https://tec.openplanner.team/stops/Lmopeup2"], ["https://tec.openplanner.team/stops/N161abd", "https://tec.openplanner.team/stops/N161aeb"], ["https://tec.openplanner.team/stops/Csa4mai1", "https://tec.openplanner.team/stops/Csachas1"], ["https://tec.openplanner.team/stops/N521aea", "https://tec.openplanner.team/stops/N521aeb"], ["https://tec.openplanner.team/stops/Bmasegl2", "https://tec.openplanner.team/stops/Bmsaegl1"], ["https://tec.openplanner.team/stops/LATguis2", "https://tec.openplanner.team/stops/LATlena2"], ["https://tec.openplanner.team/stops/Cmlfeba2", "https://tec.openplanner.team/stops/Cmlipsm3"], ["https://tec.openplanner.team/stops/H1hw119a", "https://tec.openplanner.team/stops/H1hw124b"], ["https://tec.openplanner.team/stops/Lfllapi2", "https://tec.openplanner.team/stops/Lflmc--2"], ["https://tec.openplanner.team/stops/N385aad", "https://tec.openplanner.team/stops/N385aca"], ["https://tec.openplanner.team/stops/H1sg146a", "https://tec.openplanner.team/stops/H1sg149b"], ["https://tec.openplanner.team/stops/Lfljupi1", "https://tec.openplanner.team/stops/Lflweri2"], ["https://tec.openplanner.team/stops/H1cd111c", "https://tec.openplanner.team/stops/H1hr117a"], ["https://tec.openplanner.team/stops/N559aab", "https://tec.openplanner.team/stops/N560abb"], ["https://tec.openplanner.team/stops/X734aab", "https://tec.openplanner.team/stops/X734aba"], ["https://tec.openplanner.team/stops/Cmlbruy1", "https://tec.openplanner.team/stops/Cmlipsm3"], ["https://tec.openplanner.team/stops/Cmopn1", "https://tec.openplanner.team/stops/Cmovies1"], ["https://tec.openplanner.team/stops/X822aaa", "https://tec.openplanner.team/stops/X822amb"], ["https://tec.openplanner.team/stops/N349aca", "https://tec.openplanner.team/stops/N349ada"], ["https://tec.openplanner.team/stops/LeUcroi1", "https://tec.openplanner.team/stops/LeUmalm1"], ["https://tec.openplanner.team/stops/LSZptwa1", "https://tec.openplanner.team/stops/LSZptwa2"], ["https://tec.openplanner.team/stops/LaMmark1", "https://tec.openplanner.team/stops/LaMpost2"], ["https://tec.openplanner.team/stops/Cgxdeba1", "https://tec.openplanner.team/stops/Cgxdeba2"], ["https://tec.openplanner.team/stops/X986aja", "https://tec.openplanner.team/stops/X986aka"], ["https://tec.openplanner.team/stops/H1em111b", "https://tec.openplanner.team/stops/H1em111d"], ["https://tec.openplanner.team/stops/LAMecse*", "https://tec.openplanner.team/stops/LAmshel1"], ["https://tec.openplanner.team/stops/N541aba", "https://tec.openplanner.team/stops/N541aca"], ["https://tec.openplanner.team/stops/H1ni317b", "https://tec.openplanner.team/stops/H1ni318b"], ["https://tec.openplanner.team/stops/X733afb", "https://tec.openplanner.team/stops/X733agb"], ["https://tec.openplanner.team/stops/LREsech2", "https://tec.openplanner.team/stops/LREsoug4"], ["https://tec.openplanner.team/stops/Lanclon2", "https://tec.openplanner.team/stops/Llglaha2"], ["https://tec.openplanner.team/stops/LBDcarr1", "https://tec.openplanner.team/stops/LJEerno1"], ["https://tec.openplanner.team/stops/H3so156a", "https://tec.openplanner.team/stops/H3so178a"], ["https://tec.openplanner.team/stops/Bvirbru2", "https://tec.openplanner.team/stops/Bvirvol2"], ["https://tec.openplanner.team/stops/LHAheml2", "https://tec.openplanner.team/stops/LHAlacr2"], ["https://tec.openplanner.team/stops/X998aaa", "https://tec.openplanner.team/stops/X998azb"], ["https://tec.openplanner.team/stops/Cmmphai1", "https://tec.openplanner.team/stops/Cmmserv2"], ["https://tec.openplanner.team/stops/H2ll177a", "https://tec.openplanner.team/stops/H2ll189c"], ["https://tec.openplanner.team/stops/CMleer2", "https://tec.openplanner.team/stops/Cmoecol2"], ["https://tec.openplanner.team/stops/H4ty290a", "https://tec.openplanner.team/stops/H4ty302b"], ["https://tec.openplanner.team/stops/N538azb", "https://tec.openplanner.team/stops/N539axb"], ["https://tec.openplanner.team/stops/LAWcite2", "https://tec.openplanner.team/stops/LAWvold2"], ["https://tec.openplanner.team/stops/N211acb", "https://tec.openplanner.team/stops/N211ava"], ["https://tec.openplanner.team/stops/X724aaa", "https://tec.openplanner.team/stops/X725bfb"], ["https://tec.openplanner.team/stops/N518aab", "https://tec.openplanner.team/stops/N518acd"], ["https://tec.openplanner.team/stops/H2pe155a", "https://tec.openplanner.team/stops/H2pe159b"], ["https://tec.openplanner.team/stops/X542aaa", "https://tec.openplanner.team/stops/X542aab"], ["https://tec.openplanner.team/stops/X663aob", "https://tec.openplanner.team/stops/X663awa"], ["https://tec.openplanner.team/stops/Cfcctru2", "https://tec.openplanner.team/stops/Cfcrerp1"], ["https://tec.openplanner.team/stops/X750bda", "https://tec.openplanner.team/stops/X750bea"], ["https://tec.openplanner.team/stops/N232bjb", "https://tec.openplanner.team/stops/N261ada"], ["https://tec.openplanner.team/stops/Bbchsac1", "https://tec.openplanner.team/stops/Bbsifmo2"], ["https://tec.openplanner.team/stops/H1gh159a", "https://tec.openplanner.team/stops/H1gh160b"], ["https://tec.openplanner.team/stops/H4bc102a", "https://tec.openplanner.team/stops/H4tu170a"], ["https://tec.openplanner.team/stops/N423agb", "https://tec.openplanner.team/stops/NH21aha"], ["https://tec.openplanner.team/stops/LmD27--2", "https://tec.openplanner.team/stops/LmDdenk2"], ["https://tec.openplanner.team/stops/N526adb", "https://tec.openplanner.team/stops/N533apb"], ["https://tec.openplanner.team/stops/X769abb", "https://tec.openplanner.team/stops/X769ana"], ["https://tec.openplanner.team/stops/H2hp261b", "https://tec.openplanner.team/stops/H2mo146a"], ["https://tec.openplanner.team/stops/Bosqcar2", "https://tec.openplanner.team/stops/Bosqcim2"], ["https://tec.openplanner.team/stops/Ccpbrun2", "https://tec.openplanner.team/stops/H2ch123c"], ["https://tec.openplanner.team/stops/Cgzcorn2", "https://tec.openplanner.team/stops/Cgzcour2"], ["https://tec.openplanner.team/stops/Llgplat2", "https://tec.openplanner.team/stops/Llgvott1"], ["https://tec.openplanner.team/stops/X344aca", "https://tec.openplanner.team/stops/X344acb"], ["https://tec.openplanner.team/stops/Blmlqlo1", "https://tec.openplanner.team/stops/Blmlqlo2"], ["https://tec.openplanner.team/stops/N584aja", "https://tec.openplanner.team/stops/N584alb"], ["https://tec.openplanner.team/stops/LHEbeau2", "https://tec.openplanner.team/stops/LHEchex2"], ["https://tec.openplanner.team/stops/Broncan1", "https://tec.openplanner.team/stops/Bvirflu1"], ["https://tec.openplanner.team/stops/LTPcarr1", "https://tec.openplanner.team/stops/LTPcarr2"], ["https://tec.openplanner.team/stops/LMFmerl2", "https://tec.openplanner.team/stops/LMFmoul1"], ["https://tec.openplanner.team/stops/H4ty332b", "https://tec.openplanner.team/stops/H4ty332c"], ["https://tec.openplanner.team/stops/X880acb", "https://tec.openplanner.team/stops/X880ada"], ["https://tec.openplanner.team/stops/H1bo106b", "https://tec.openplanner.team/stops/H1bo109b"], ["https://tec.openplanner.team/stops/Ccufos71", "https://tec.openplanner.team/stops/Ccupbro1"], ["https://tec.openplanner.team/stops/Cdametr1", "https://tec.openplanner.team/stops/CMdamp2"], ["https://tec.openplanner.team/stops/H1bs110a", "https://tec.openplanner.team/stops/H1bs110b"], ["https://tec.openplanner.team/stops/LPUchpl1", "https://tec.openplanner.team/stops/LPUchpl2"], ["https://tec.openplanner.team/stops/X754ala", "https://tec.openplanner.team/stops/X754alb"], ["https://tec.openplanner.team/stops/X763afa", "https://tec.openplanner.team/stops/X763aha"], ["https://tec.openplanner.team/stops/NL74aha", "https://tec.openplanner.team/stops/NL74ahd"], ["https://tec.openplanner.team/stops/X664aid", "https://tec.openplanner.team/stops/X665aaa"], ["https://tec.openplanner.team/stops/Bsomtnd1", "https://tec.openplanner.team/stops/Bsomtpm1"], ["https://tec.openplanner.team/stops/Llgavoc2", "https://tec.openplanner.team/stops/Llgdelc*"], ["https://tec.openplanner.team/stops/X898aha", "https://tec.openplanner.team/stops/X898aib"], ["https://tec.openplanner.team/stops/Lqbecco1", "https://tec.openplanner.team/stops/Lqbeg--2"], ["https://tec.openplanner.team/stops/Bgligra2", "https://tec.openplanner.team/stops/Btlbtbe2"], ["https://tec.openplanner.team/stops/X921aoa", "https://tec.openplanner.team/stops/X979aea"], ["https://tec.openplanner.team/stops/LLmwaut2", "https://tec.openplanner.team/stops/LRemorr2"], ["https://tec.openplanner.team/stops/LGe4bra2", "https://tec.openplanner.team/stops/LGeschr1"], ["https://tec.openplanner.team/stops/LeUgeme2", "https://tec.openplanner.team/stops/LeUindu1"], ["https://tec.openplanner.team/stops/Bbchtry1", "https://tec.openplanner.team/stops/Bwaucan2"], ["https://tec.openplanner.team/stops/X626aca", "https://tec.openplanner.team/stops/X626acb"], ["https://tec.openplanner.team/stops/Brsrrcu1", "https://tec.openplanner.team/stops/Brsrrcu2"], ["https://tec.openplanner.team/stops/N581aab", "https://tec.openplanner.team/stops/N581aca"], ["https://tec.openplanner.team/stops/N501cba", "https://tec.openplanner.team/stops/N521aub"], ["https://tec.openplanner.team/stops/N501lnb", "https://tec.openplanner.team/stops/N501mfa"], ["https://tec.openplanner.team/stops/Lagmair4", "https://tec.openplanner.team/stops/Lagmair5"], ["https://tec.openplanner.team/stops/H1ms252d", "https://tec.openplanner.team/stops/H1ms940a"], ["https://tec.openplanner.team/stops/LBahome2", "https://tec.openplanner.team/stops/LLUalou2"], ["https://tec.openplanner.team/stops/Brsgleq1", "https://tec.openplanner.team/stops/Buccpes1"], ["https://tec.openplanner.team/stops/LSWscie2", "https://tec.openplanner.team/stops/LSZprie1"], ["https://tec.openplanner.team/stops/LBkdahl2", "https://tec.openplanner.team/stops/LMsalen1"], ["https://tec.openplanner.team/stops/H5el100a", "https://tec.openplanner.team/stops/H5rx134a"], ["https://tec.openplanner.team/stops/N547ahb", "https://tec.openplanner.team/stops/N573apb"], ["https://tec.openplanner.team/stops/N141aja", "https://tec.openplanner.team/stops/N141aoa"], ["https://tec.openplanner.team/stops/Bsambra2", "https://tec.openplanner.team/stops/Bsamlon2"], ["https://tec.openplanner.team/stops/N535aba", "https://tec.openplanner.team/stops/N535aea"], ["https://tec.openplanner.team/stops/LCPconf2", "https://tec.openplanner.team/stops/LCPscay1"], ["https://tec.openplanner.team/stops/X872aaa", "https://tec.openplanner.team/stops/X872aba"], ["https://tec.openplanner.team/stops/N556afb", "https://tec.openplanner.team/stops/N557aia"], ["https://tec.openplanner.team/stops/LPAbrun1", "https://tec.openplanner.team/stops/LPAchpl1"], ["https://tec.openplanner.team/stops/N561aba", "https://tec.openplanner.team/stops/N561aca"], ["https://tec.openplanner.team/stops/X681aeb", "https://tec.openplanner.team/stops/X696aea"], ["https://tec.openplanner.team/stops/LkAsonn2", "https://tec.openplanner.team/stops/LrOwahl1"], ["https://tec.openplanner.team/stops/LOMware1", "https://tec.openplanner.team/stops/LOMware2"], ["https://tec.openplanner.team/stops/X829aaa", "https://tec.openplanner.team/stops/X829aab"], ["https://tec.openplanner.team/stops/LAMcoll2", "https://tec.openplanner.team/stops/LAMviam2"], ["https://tec.openplanner.team/stops/N310aab", "https://tec.openplanner.team/stops/N312adb"], ["https://tec.openplanner.team/stops/Lreec--1", "https://tec.openplanner.team/stops/Lretill2"], ["https://tec.openplanner.team/stops/H4wa148a", "https://tec.openplanner.team/stops/H4wa156b"], ["https://tec.openplanner.team/stops/H1ne145a", "https://tec.openplanner.team/stops/H1ne149a"], ["https://tec.openplanner.team/stops/Lmicoop1", "https://tec.openplanner.team/stops/Lmidarc1"], ["https://tec.openplanner.team/stops/N220aaa", "https://tec.openplanner.team/stops/X224abb"], ["https://tec.openplanner.team/stops/LnUneun2", "https://tec.openplanner.team/stops/LsVlust1"], ["https://tec.openplanner.team/stops/X629aaa", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/X921abb", "https://tec.openplanner.team/stops/X921ama"], ["https://tec.openplanner.team/stops/H4gu108a", "https://tec.openplanner.team/stops/H4we134a"], ["https://tec.openplanner.team/stops/X738adb", "https://tec.openplanner.team/stops/X754ama"], ["https://tec.openplanner.team/stops/X604aaa", "https://tec.openplanner.team/stops/X604aab"], ["https://tec.openplanner.team/stops/N501kma", "https://tec.openplanner.team/stops/N501nea"], ["https://tec.openplanner.team/stops/LnDthel1", "https://tec.openplanner.team/stops/LwSgeme1"], ["https://tec.openplanner.team/stops/H1gy114b", "https://tec.openplanner.team/stops/H1gy116b"], ["https://tec.openplanner.team/stops/H1lb137a", "https://tec.openplanner.team/stops/H1pa106b"], ["https://tec.openplanner.team/stops/Cgonvro1", "https://tec.openplanner.team/stops/Cgosoux1"], ["https://tec.openplanner.team/stops/N149aka", "https://tec.openplanner.team/stops/N150aaa"], ["https://tec.openplanner.team/stops/H4bo121a", "https://tec.openplanner.team/stops/H4og211b"], ["https://tec.openplanner.team/stops/N248aaa", "https://tec.openplanner.team/stops/N248abb"], ["https://tec.openplanner.team/stops/X361abb", "https://tec.openplanner.team/stops/X362aab"], ["https://tec.openplanner.team/stops/Bgzdgst1", "https://tec.openplanner.team/stops/Bgzdgth1"], ["https://tec.openplanner.team/stops/Bcrbbou1", "https://tec.openplanner.team/stops/Bcrbbou2"], ["https://tec.openplanner.team/stops/N122afa", "https://tec.openplanner.team/stops/N122ahb"], ["https://tec.openplanner.team/stops/LAnchat2", "https://tec.openplanner.team/stops/LAnfall2"], ["https://tec.openplanner.team/stops/LBRgare1", "https://tec.openplanner.team/stops/LBRgare2"], ["https://tec.openplanner.team/stops/LaNmuhl4", "https://tec.openplanner.team/stops/LeMnr12"], ["https://tec.openplanner.team/stops/Livjeu-2", "https://tec.openplanner.team/stops/Lseivoz1"], ["https://tec.openplanner.team/stops/Bbcocvb2", "https://tec.openplanner.team/stops/Bbcohou4"], ["https://tec.openplanner.team/stops/H4he101a", "https://tec.openplanner.team/stops/H4he104b"], ["https://tec.openplanner.team/stops/X650ada", "https://tec.openplanner.team/stops/X650adb"], ["https://tec.openplanner.team/stops/LBIaepo2", "https://tec.openplanner.team/stops/LBIairp2"], ["https://tec.openplanner.team/stops/H1hm176a", "https://tec.openplanner.team/stops/H1hm176b"], ["https://tec.openplanner.team/stops/LBivi--1", "https://tec.openplanner.team/stops/LBivi--2"], ["https://tec.openplanner.team/stops/Lgrcour1", "https://tec.openplanner.team/stops/Llgcorn1"], ["https://tec.openplanner.team/stops/H2ma204a", "https://tec.openplanner.team/stops/H3th131a"], ["https://tec.openplanner.team/stops/Cmaegal2", "https://tec.openplanner.team/stops/Cromonn1"], ["https://tec.openplanner.team/stops/Ljuprev2", "https://tec.openplanner.team/stops/Ljuprev4"], ["https://tec.openplanner.team/stops/N351afa", "https://tec.openplanner.team/stops/N351afb"], ["https://tec.openplanner.team/stops/N102abb", "https://tec.openplanner.team/stops/N152aac"], ["https://tec.openplanner.team/stops/Bgliegl1", "https://tec.openplanner.team/stops/Bglitro1"], ["https://tec.openplanner.team/stops/H4hu113a", "https://tec.openplanner.team/stops/H4hu113b"], ["https://tec.openplanner.team/stops/N201aee", "https://tec.openplanner.team/stops/N201asb"], ["https://tec.openplanner.team/stops/LSJ38--1", "https://tec.openplanner.team/stops/LSJlabe2"], ["https://tec.openplanner.team/stops/Cgdfras2", "https://tec.openplanner.team/stops/Cgdrhau2"], ["https://tec.openplanner.team/stops/N501jsa", "https://tec.openplanner.team/stops/N538aqa"], ["https://tec.openplanner.team/stops/H4lz118a", "https://tec.openplanner.team/stops/H4th141b"], ["https://tec.openplanner.team/stops/H1eo103a", "https://tec.openplanner.team/stops/H1eo106b"], ["https://tec.openplanner.team/stops/LWNberg1", "https://tec.openplanner.team/stops/LWNberg2"], ["https://tec.openplanner.team/stops/X888aba", "https://tec.openplanner.team/stops/X888aca"], ["https://tec.openplanner.team/stops/H1ml109a", "https://tec.openplanner.team/stops/H1ml110b"], ["https://tec.openplanner.team/stops/Lmlboul2", "https://tec.openplanner.team/stops/Lmlcite*"], ["https://tec.openplanner.team/stops/H1qg138a", "https://tec.openplanner.team/stops/H1qy136a"], ["https://tec.openplanner.team/stops/Ldihote2", "https://tec.openplanner.team/stops/Ldiinte1"], ["https://tec.openplanner.team/stops/Lgrcoll1", "https://tec.openplanner.team/stops/Lgrrein1"], ["https://tec.openplanner.team/stops/N222abb", "https://tec.openplanner.team/stops/X222afa"], ["https://tec.openplanner.team/stops/Ljegoss2", "https://tec.openplanner.team/stops/Ljexhav2"], ["https://tec.openplanner.team/stops/H4do103b", "https://tec.openplanner.team/stops/H4do106a"], ["https://tec.openplanner.team/stops/Ccoforr1", "https://tec.openplanner.team/stops/Ccorian2"], ["https://tec.openplanner.team/stops/X738abb", "https://tec.openplanner.team/stops/X754atb"], ["https://tec.openplanner.team/stops/LTamag2", "https://tec.openplanner.team/stops/LTaxhos2"], ["https://tec.openplanner.team/stops/Cnacout2", "https://tec.openplanner.team/stops/Cnarmon1"], ["https://tec.openplanner.team/stops/LBGcent2", "https://tec.openplanner.team/stops/LBGgeer2"], ["https://tec.openplanner.team/stops/N501iza", "https://tec.openplanner.team/stops/N501jca"], ["https://tec.openplanner.team/stops/LkEbbl-2", "https://tec.openplanner.team/stops/LkEmax-2"], ["https://tec.openplanner.team/stops/LAyfren2", "https://tec.openplanner.team/stops/LAyheid1"], ["https://tec.openplanner.team/stops/Bblaelo1", "https://tec.openplanner.team/stops/Bblahop1"], ["https://tec.openplanner.team/stops/N534bga", "https://tec.openplanner.team/stops/N534bgb"], ["https://tec.openplanner.team/stops/Lghmaha1", "https://tec.openplanner.team/stops/Lghmaha3"], ["https://tec.openplanner.team/stops/Clvimtr1", "https://tec.openplanner.team/stops/Clvimtr3"], ["https://tec.openplanner.team/stops/Llggram4", "https://tec.openplanner.team/stops/Llgpari1"], ["https://tec.openplanner.team/stops/N506afa", "https://tec.openplanner.team/stops/N506asa"], ["https://tec.openplanner.team/stops/Lhefoot2", "https://tec.openplanner.team/stops/Lhehoux2"], ["https://tec.openplanner.team/stops/H1ha185a", "https://tec.openplanner.team/stops/H1ha191a"], ["https://tec.openplanner.team/stops/X923aca", "https://tec.openplanner.team/stops/X923acb"], ["https://tec.openplanner.team/stops/X939aca", "https://tec.openplanner.team/stops/X939aeb"], ["https://tec.openplanner.team/stops/LCPoneu1", "https://tec.openplanner.team/stops/LCPoneu2"], ["https://tec.openplanner.team/stops/Bwavfol1", "https://tec.openplanner.team/stops/Bwavpar1"], ["https://tec.openplanner.team/stops/Lmlprie1", "https://tec.openplanner.team/stops/Lmlscie2"], ["https://tec.openplanner.team/stops/Lloauto1", "https://tec.openplanner.team/stops/Llocime2"], ["https://tec.openplanner.team/stops/LSPdesc2", "https://tec.openplanner.team/stops/LSPherd1"], ["https://tec.openplanner.team/stops/N528atb", "https://tec.openplanner.team/stops/N542aoa"], ["https://tec.openplanner.team/stops/H1sy137a", "https://tec.openplanner.team/stops/H1sy148b"], ["https://tec.openplanner.team/stops/N304aab", "https://tec.openplanner.team/stops/N315aab"], ["https://tec.openplanner.team/stops/X818apa", "https://tec.openplanner.team/stops/X818aqb"], ["https://tec.openplanner.team/stops/Blsmcha1", "https://tec.openplanner.team/stops/Blsmcha4"], ["https://tec.openplanner.team/stops/LhGknip1", "https://tec.openplanner.team/stops/LhGknip2"], ["https://tec.openplanner.team/stops/H2sb234a", "https://tec.openplanner.team/stops/H2sb266a"], ["https://tec.openplanner.team/stops/N244adb", "https://tec.openplanner.team/stops/N244arb"], ["https://tec.openplanner.team/stops/LrAdrie5", "https://tec.openplanner.team/stops/LrAneue2"], ["https://tec.openplanner.team/stops/H5pe125a", "https://tec.openplanner.team/stops/H5pe145b"], ["https://tec.openplanner.team/stops/H1he109b", "https://tec.openplanner.team/stops/H1qv110b"], ["https://tec.openplanner.team/stops/LSSeg--1", "https://tec.openplanner.team/stops/LSShous2"], ["https://tec.openplanner.team/stops/Ccicouc2", "https://tec.openplanner.team/stops/Cmlaili1"], ["https://tec.openplanner.team/stops/LFPchat1", "https://tec.openplanner.team/stops/LVu40--1"], ["https://tec.openplanner.team/stops/Blimch%C3%A22", "https://tec.openplanner.team/stops/Bottpry2"], ["https://tec.openplanner.team/stops/NH21afa", "https://tec.openplanner.team/stops/NH21agb"], ["https://tec.openplanner.team/stops/LNIbas-2", "https://tec.openplanner.team/stops/LSZpont1"], ["https://tec.openplanner.team/stops/LFIinse1", "https://tec.openplanner.team/stops/LXoeg--4"], ["https://tec.openplanner.team/stops/X793acb", "https://tec.openplanner.team/stops/X793apa"], ["https://tec.openplanner.team/stops/H4ne132d", "https://tec.openplanner.team/stops/H4ne143b"], ["https://tec.openplanner.team/stops/LeI39--3", "https://tec.openplanner.team/stops/LeIkreu1"], ["https://tec.openplanner.team/stops/H2ll172a", "https://tec.openplanner.team/stops/H2ll196a"], ["https://tec.openplanner.team/stops/H2ca103a", "https://tec.openplanner.team/stops/H2ca103b"], ["https://tec.openplanner.team/stops/LATcham*", "https://tec.openplanner.team/stops/LVLmabi2"], ["https://tec.openplanner.team/stops/Cgotech2", "https://tec.openplanner.team/stops/Cwxchap1"], ["https://tec.openplanner.team/stops/Bborche2", "https://tec.openplanner.team/stops/Bmoncab2"], ["https://tec.openplanner.team/stops/N535aea", "https://tec.openplanner.team/stops/N535ahb"], ["https://tec.openplanner.team/stops/LENindu1", "https://tec.openplanner.team/stops/LENoule2"], ["https://tec.openplanner.team/stops/LsVeite1", "https://tec.openplanner.team/stops/LsVfeye1"], ["https://tec.openplanner.team/stops/Ccomott2", "https://tec.openplanner.team/stops/Cgofert1"], ["https://tec.openplanner.team/stops/Bohncha2", "https://tec.openplanner.team/stops/Bohnpla2"], ["https://tec.openplanner.team/stops/Btstbbu2", "https://tec.openplanner.team/stops/Btstpch2"], ["https://tec.openplanner.team/stops/H4ce103b", "https://tec.openplanner.team/stops/H4ce108a"], ["https://tec.openplanner.team/stops/N235aga", "https://tec.openplanner.team/stops/N235agb"], ["https://tec.openplanner.team/stops/H4po128a", "https://tec.openplanner.team/stops/H4po128b"], ["https://tec.openplanner.team/stops/X745acb", "https://tec.openplanner.team/stops/X745ada"], ["https://tec.openplanner.team/stops/Crcrgar1", "https://tec.openplanner.team/stops/Crcrgar2"], ["https://tec.openplanner.team/stops/NL78abb", "https://tec.openplanner.team/stops/NL78akb"], ["https://tec.openplanner.team/stops/Cthpano1", "https://tec.openplanner.team/stops/Cthrwai2"], ["https://tec.openplanner.team/stops/Bopplon1", "https://tec.openplanner.team/stops/Bsrbbas1"], ["https://tec.openplanner.team/stops/LWieg--*", "https://tec.openplanner.team/stops/LXhmara2"], ["https://tec.openplanner.team/stops/N383acb", "https://tec.openplanner.team/stops/N383aea"], ["https://tec.openplanner.team/stops/X741aba", "https://tec.openplanner.team/stops/X741abb"], ["https://tec.openplanner.team/stops/H1pa116a", "https://tec.openplanner.team/stops/H1pa116b"], ["https://tec.openplanner.team/stops/Ccychco2", "https://tec.openplanner.team/stops/NH01alb"], ["https://tec.openplanner.team/stops/X744aaa", "https://tec.openplanner.team/stops/X744aba"], ["https://tec.openplanner.team/stops/Cgobl%C3%A9r2", "https://tec.openplanner.team/stops/Cgoloca2"], ["https://tec.openplanner.team/stops/Bgntalt3", "https://tec.openplanner.team/stops/Bgnttma2"], ["https://tec.openplanner.team/stops/X741aha", "https://tec.openplanner.team/stops/X741ahb"], ["https://tec.openplanner.team/stops/H2mm136b", "https://tec.openplanner.team/stops/H2mo123b"], ["https://tec.openplanner.team/stops/N323aba", "https://tec.openplanner.team/stops/N368aea"], ["https://tec.openplanner.team/stops/H5fl102a", "https://tec.openplanner.team/stops/H5fl103b"], ["https://tec.openplanner.team/stops/X796afb", "https://tec.openplanner.team/stops/X986aka"], ["https://tec.openplanner.team/stops/N139aaa", "https://tec.openplanner.team/stops/N146aea"], ["https://tec.openplanner.team/stops/LAmeg--2", "https://tec.openplanner.team/stops/LNHhome2"], ["https://tec.openplanner.team/stops/X782aba", "https://tec.openplanner.team/stops/X782adb"], ["https://tec.openplanner.team/stops/Bnivga12", "https://tec.openplanner.team/stops/Bnivga21"], ["https://tec.openplanner.team/stops/Bflcpco1", "https://tec.openplanner.team/stops/N515aeb"], ["https://tec.openplanner.team/stops/H4er124a", "https://tec.openplanner.team/stops/H4ty322c"], ["https://tec.openplanner.team/stops/LMebove1", "https://tec.openplanner.team/stops/LMechpl2"], ["https://tec.openplanner.team/stops/LCltrib2", "https://tec.openplanner.team/stops/LThnouv2"], ["https://tec.openplanner.team/stops/Lmlcher1", "https://tec.openplanner.team/stops/Lmlcrot1"], ["https://tec.openplanner.team/stops/Cgymast2", "https://tec.openplanner.team/stops/Cjuhame3"], ["https://tec.openplanner.team/stops/Ctmmana2", "https://tec.openplanner.team/stops/Cvvsncb2"], ["https://tec.openplanner.team/stops/Lemcort2", "https://tec.openplanner.team/stops/Lemparc1"], ["https://tec.openplanner.team/stops/Cfbcabi1", "https://tec.openplanner.team/stops/Cfbegli1"], ["https://tec.openplanner.team/stops/LVEdTEC1", "https://tec.openplanner.team/stops/LVEstat2"], ["https://tec.openplanner.team/stops/Ctrchat2", "https://tec.openplanner.team/stops/Ctrrpla4"], ["https://tec.openplanner.team/stops/Lbopote2", "https://tec.openplanner.team/stops/Lsebonc1"], ["https://tec.openplanner.team/stops/NL68afa", "https://tec.openplanner.team/stops/NL68afb"], ["https://tec.openplanner.team/stops/NL78aab", "https://tec.openplanner.team/stops/NL78abb"], ["https://tec.openplanner.team/stops/LHCmais1", "https://tec.openplanner.team/stops/LHCmais2"], ["https://tec.openplanner.team/stops/X804aob", "https://tec.openplanner.team/stops/X804bsa"], ["https://tec.openplanner.team/stops/LSSfrai2", "https://tec.openplanner.team/stops/LSSvill1"], ["https://tec.openplanner.team/stops/Brsgepr1", "https://tec.openplanner.team/stops/Brsgepr2"], ["https://tec.openplanner.team/stops/Ctuosso1", "https://tec.openplanner.team/stops/NC28aga"], ["https://tec.openplanner.team/stops/N501fdc", "https://tec.openplanner.team/stops/N501lzy"], ["https://tec.openplanner.team/stops/X625aca", "https://tec.openplanner.team/stops/X625acb"], ["https://tec.openplanner.team/stops/Bbghsta2", "https://tec.openplanner.team/stops/Bbghsta4"], ["https://tec.openplanner.team/stops/Btubbot1", "https://tec.openplanner.team/stops/Btubcim2"], ["https://tec.openplanner.team/stops/LENarde1", "https://tec.openplanner.team/stops/LENgend2"], ["https://tec.openplanner.team/stops/X925adb", "https://tec.openplanner.team/stops/X925aea"], ["https://tec.openplanner.team/stops/X669afa", "https://tec.openplanner.team/stops/X669agd"], ["https://tec.openplanner.team/stops/LTrchar2", "https://tec.openplanner.team/stops/LTrmort1"], ["https://tec.openplanner.team/stops/N507aka", "https://tec.openplanner.team/stops/N507ald"], ["https://tec.openplanner.team/stops/H3so155a", "https://tec.openplanner.team/stops/H3so161a"], ["https://tec.openplanner.team/stops/Cluberl2", "https://tec.openplanner.team/stops/Cluplve3"], ["https://tec.openplanner.team/stops/Bjausan1", "https://tec.openplanner.team/stops/Bmrlcch1"], ["https://tec.openplanner.team/stops/Cfaauln1", "https://tec.openplanner.team/stops/Cfaauln2"], ["https://tec.openplanner.team/stops/Brach122", "https://tec.openplanner.team/stops/Bwaak102"], ["https://tec.openplanner.team/stops/N505adb", "https://tec.openplanner.team/stops/N505ahb"], ["https://tec.openplanner.team/stops/N527aaa", "https://tec.openplanner.team/stops/N527abb"], ["https://tec.openplanner.team/stops/H3lr106a", "https://tec.openplanner.team/stops/H3th126a"], ["https://tec.openplanner.team/stops/H4wi162b", "https://tec.openplanner.team/stops/H4wi163b"], ["https://tec.openplanner.team/stops/LSkbo832", "https://tec.openplanner.team/stops/LSkrena3"], ["https://tec.openplanner.team/stops/X715akb", "https://tec.openplanner.team/stops/X781abb"], ["https://tec.openplanner.team/stops/LChxhav1", "https://tec.openplanner.team/stops/LChxhav2"], ["https://tec.openplanner.team/stops/X806aja", "https://tec.openplanner.team/stops/X807ada"], ["https://tec.openplanner.team/stops/X713aba", "https://tec.openplanner.team/stops/X713ana"], ["https://tec.openplanner.team/stops/X919aea", "https://tec.openplanner.team/stops/X919aoa"], ["https://tec.openplanner.team/stops/N308anb", "https://tec.openplanner.team/stops/N312adb"], ["https://tec.openplanner.team/stops/N135axa", "https://tec.openplanner.team/stops/N135bhb"], ["https://tec.openplanner.team/stops/LBPeg--2", "https://tec.openplanner.team/stops/LSLhale1"], ["https://tec.openplanner.team/stops/N150afb", "https://tec.openplanner.team/stops/N150aga"], ["https://tec.openplanner.team/stops/N202acb", "https://tec.openplanner.team/stops/N202aga"], ["https://tec.openplanner.team/stops/Bwatath2", "https://tec.openplanner.team/stops/Bwatmco2"], ["https://tec.openplanner.team/stops/LARauto3", "https://tec.openplanner.team/stops/LARauto4"], ["https://tec.openplanner.team/stops/Lpelouh2", "https://tec.openplanner.team/stops/LTAchpl2"], ["https://tec.openplanner.team/stops/N218abb", "https://tec.openplanner.team/stops/N218aca"], ["https://tec.openplanner.team/stops/Cjuvpla1", "https://tec.openplanner.team/stops/Cmacoll1"], ["https://tec.openplanner.team/stops/LeUkehr1", "https://tec.openplanner.team/stops/LeUkirc1"], ["https://tec.openplanner.team/stops/LSNbouh4", "https://tec.openplanner.team/stops/LSNnoul2"], ["https://tec.openplanner.team/stops/Lalparc1", "https://tec.openplanner.team/stops/Lalverr2"], ["https://tec.openplanner.team/stops/H1ch142b", "https://tec.openplanner.team/stops/H1nm140a"], ["https://tec.openplanner.team/stops/X946afa", "https://tec.openplanner.team/stops/X946ahb"], ["https://tec.openplanner.team/stops/LTResse2", "https://tec.openplanner.team/stops/LTRmosb1"], ["https://tec.openplanner.team/stops/H2bh103c", "https://tec.openplanner.team/stops/H2mg135b"], ["https://tec.openplanner.team/stops/H4ve131b", "https://tec.openplanner.team/stops/H4ve132a"], ["https://tec.openplanner.team/stops/X982aaa", "https://tec.openplanner.team/stops/X982aab"], ["https://tec.openplanner.team/stops/X889abb", "https://tec.openplanner.team/stops/X889aea"], ["https://tec.openplanner.team/stops/Lghfors2", "https://tec.openplanner.team/stops/Ljerose4"], ["https://tec.openplanner.team/stops/N573aaa", "https://tec.openplanner.team/stops/N573aea"], ["https://tec.openplanner.team/stops/LBgcroi2", "https://tec.openplanner.team/stops/LGmhedo2"], ["https://tec.openplanner.team/stops/N506ajb", "https://tec.openplanner.team/stops/N506aqa"], ["https://tec.openplanner.team/stops/N131aeb", "https://tec.openplanner.team/stops/N423agb"], ["https://tec.openplanner.team/stops/Cmtfoye2", "https://tec.openplanner.team/stops/Cmtyern2"], ["https://tec.openplanner.team/stops/Cctsncb3", "https://tec.openplanner.team/stops/NC02aob"], ["https://tec.openplanner.team/stops/X721ajb", "https://tec.openplanner.team/stops/X721akb"], ["https://tec.openplanner.team/stops/H4pq115a", "https://tec.openplanner.team/stops/H4pq115b"], ["https://tec.openplanner.team/stops/LWEgare1", "https://tec.openplanner.team/stops/LWElanc1"], ["https://tec.openplanner.team/stops/X687aaa", "https://tec.openplanner.team/stops/X687aca"], ["https://tec.openplanner.team/stops/Cgrbert1", "https://tec.openplanner.team/stops/NC14aga"], ["https://tec.openplanner.team/stops/LBEbelf1", "https://tec.openplanner.team/stops/LBEbelf2"], ["https://tec.openplanner.team/stops/H1gg116b", "https://tec.openplanner.team/stops/H1gg117a"], ["https://tec.openplanner.team/stops/NC14apa", "https://tec.openplanner.team/stops/NC14apb"], ["https://tec.openplanner.team/stops/LBBcamp1", "https://tec.openplanner.team/stops/LBBodet2"], ["https://tec.openplanner.team/stops/Bgzdast2", "https://tec.openplanner.team/stops/Bgzdpco2"], ["https://tec.openplanner.team/stops/X949aib", "https://tec.openplanner.team/stops/X949akb"], ["https://tec.openplanner.team/stops/N531asa", "https://tec.openplanner.team/stops/N534bxa"], ["https://tec.openplanner.team/stops/X716acb", "https://tec.openplanner.team/stops/X718ajb"], ["https://tec.openplanner.team/stops/X640akb", "https://tec.openplanner.team/stops/X640ava"], ["https://tec.openplanner.team/stops/N542agb", "https://tec.openplanner.team/stops/N542aka"], ["https://tec.openplanner.team/stops/Cmocalv1", "https://tec.openplanner.team/stops/Cmoruau1"], ["https://tec.openplanner.team/stops/X715amb", "https://tec.openplanner.team/stops/X731abb"], ["https://tec.openplanner.team/stops/Lgrfrai2", "https://tec.openplanner.team/stops/Lgrfrhe2"], ["https://tec.openplanner.team/stops/LTPbeau2", "https://tec.openplanner.team/stops/LTPpisc2"], ["https://tec.openplanner.team/stops/N110aaa", "https://tec.openplanner.team/stops/N110aba"], ["https://tec.openplanner.team/stops/X925aob", "https://tec.openplanner.team/stops/X949amb"], ["https://tec.openplanner.team/stops/H1at108a", "https://tec.openplanner.team/stops/H1at108c"], ["https://tec.openplanner.team/stops/Cclchap1", "https://tec.openplanner.team/stops/Cclchap2"], ["https://tec.openplanner.team/stops/X767afa", "https://tec.openplanner.team/stops/X767aga"], ["https://tec.openplanner.team/stops/H4he103b", "https://tec.openplanner.team/stops/H4wg122a"], ["https://tec.openplanner.team/stops/N528arb", "https://tec.openplanner.team/stops/N528arc"], ["https://tec.openplanner.team/stops/X908aaa", "https://tec.openplanner.team/stops/X908aab"], ["https://tec.openplanner.team/stops/X762aca", "https://tec.openplanner.team/stops/X762acb"], ["https://tec.openplanner.team/stops/LrEkape2", "https://tec.openplanner.team/stops/LrEkirc1"], ["https://tec.openplanner.team/stops/H1sy138b", "https://tec.openplanner.team/stops/H1sy147b"], ["https://tec.openplanner.team/stops/X347aja", "https://tec.openplanner.team/stops/X370acb"], ["https://tec.openplanner.team/stops/Lflec--2", "https://tec.openplanner.team/stops/Lflmc--2"], ["https://tec.openplanner.team/stops/Cfrptfe2", "https://tec.openplanner.team/stops/Cvp3til4"], ["https://tec.openplanner.team/stops/H2pe156a", "https://tec.openplanner.team/stops/H2re163a"], ["https://tec.openplanner.team/stops/LETeg--1", "https://tec.openplanner.team/stops/LMIcamp2"], ["https://tec.openplanner.team/stops/X793abb", "https://tec.openplanner.team/stops/X793agb"], ["https://tec.openplanner.team/stops/X713aha", "https://tec.openplanner.team/stops/X713ama"], ["https://tec.openplanner.team/stops/LVIastr1", "https://tec.openplanner.team/stops/LVIgare1"], ["https://tec.openplanner.team/stops/X359adb", "https://tec.openplanner.team/stops/X371aba"], ["https://tec.openplanner.team/stops/Clrcomb1", "https://tec.openplanner.team/stops/Clrpast1"], ["https://tec.openplanner.team/stops/Cjxpris1", "https://tec.openplanner.team/stops/Cml5ave2"], ["https://tec.openplanner.team/stops/X595aha", "https://tec.openplanner.team/stops/X597aaa"], ["https://tec.openplanner.team/stops/X896aec", "https://tec.openplanner.team/stops/X896aib"], ["https://tec.openplanner.team/stops/Llgerac1", "https://tec.openplanner.team/stops/Llgerac2"], ["https://tec.openplanner.team/stops/X616abb", "https://tec.openplanner.team/stops/X616ada"], ["https://tec.openplanner.team/stops/LDAbois2", "https://tec.openplanner.team/stops/LDAcite2"], ["https://tec.openplanner.team/stops/LGLchap2", "https://tec.openplanner.team/stops/LGLdeni2"], ["https://tec.openplanner.team/stops/X731afa", "https://tec.openplanner.team/stops/X731afb"], ["https://tec.openplanner.team/stops/X658abb", "https://tec.openplanner.team/stops/X658ahb"], ["https://tec.openplanner.team/stops/X664aia", "https://tec.openplanner.team/stops/X664asa"], ["https://tec.openplanner.team/stops/H4bh100a", "https://tec.openplanner.team/stops/H4bh101a"], ["https://tec.openplanner.team/stops/N535ajb", "https://tec.openplanner.team/stops/N539aya"], ["https://tec.openplanner.team/stops/N506btb", "https://tec.openplanner.team/stops/N506bxb"], ["https://tec.openplanner.team/stops/N229aec", "https://tec.openplanner.team/stops/N229afb"], ["https://tec.openplanner.team/stops/Bkrawil2", "https://tec.openplanner.team/stops/Bwolkra2"], ["https://tec.openplanner.team/stops/LPbhaut1", "https://tec.openplanner.team/stops/LVkinst1"], ["https://tec.openplanner.team/stops/LClberw1", "https://tec.openplanner.team/stops/LLCeg--2"], ["https://tec.openplanner.team/stops/H1cd110b", "https://tec.openplanner.team/stops/H1cd113b"], ["https://tec.openplanner.team/stops/LSNbouh3", "https://tec.openplanner.team/stops/LSNchen4"], ["https://tec.openplanner.team/stops/X904ahb", "https://tec.openplanner.team/stops/X904aib"], ["https://tec.openplanner.team/stops/N501heb", "https://tec.openplanner.team/stops/N501mha"], ["https://tec.openplanner.team/stops/N232bsa", "https://tec.openplanner.team/stops/N232btb"], ["https://tec.openplanner.team/stops/X695ada", "https://tec.openplanner.team/stops/X696aia"], ["https://tec.openplanner.team/stops/Bquebut1", "https://tec.openplanner.team/stops/Bquecar2"], ["https://tec.openplanner.team/stops/X994ada", "https://tec.openplanner.team/stops/X994adb"], ["https://tec.openplanner.team/stops/LSPchap2", "https://tec.openplanner.team/stops/LSPchap3"], ["https://tec.openplanner.team/stops/Boplham1", "https://tec.openplanner.team/stops/Boplham2"], ["https://tec.openplanner.team/stops/LNIec--1", "https://tec.openplanner.team/stops/LNIec--2"], ["https://tec.openplanner.team/stops/H1qu100d", "https://tec.openplanner.team/stops/H1qu116a"], ["https://tec.openplanner.team/stops/Lagjado6", "https://tec.openplanner.team/stops/Llgcond2"], ["https://tec.openplanner.team/stops/LClbloc2", "https://tec.openplanner.team/stops/LCljose2"], ["https://tec.openplanner.team/stops/Bbaucai1", "https://tec.openplanner.team/stops/Bbaucai2"], ["https://tec.openplanner.team/stops/LHheg--2", "https://tec.openplanner.team/stops/LHhelia2"], ["https://tec.openplanner.team/stops/LACwass2", "https://tec.openplanner.team/stops/LAvchpl1"], ["https://tec.openplanner.team/stops/Bgnvcha2", "https://tec.openplanner.team/stops/Blhumpo4"], ["https://tec.openplanner.team/stops/N503ajb", "https://tec.openplanner.team/stops/N503ala"], ["https://tec.openplanner.team/stops/H4ms144a", "https://tec.openplanner.team/stops/H4ms146b"], ["https://tec.openplanner.team/stops/Bwatcoq1", "https://tec.openplanner.team/stops/Bwatlbs1"], ["https://tec.openplanner.team/stops/LLgcent1", "https://tec.openplanner.team/stops/LSMfroi1"], ["https://tec.openplanner.team/stops/Ccoha602", "https://tec.openplanner.team/stops/Cgpleco1"], ["https://tec.openplanner.team/stops/X666aha", "https://tec.openplanner.team/stops/X666aja"], ["https://tec.openplanner.team/stops/X718aea", "https://tec.openplanner.team/stops/X718agb"], ["https://tec.openplanner.team/stops/LABbert2", "https://tec.openplanner.team/stops/LBevill2"], ["https://tec.openplanner.team/stops/Cvtchap2", "https://tec.openplanner.team/stops/Cvtvail2"], ["https://tec.openplanner.team/stops/Ctmwaut1", "https://tec.openplanner.team/stops/Ctmwaut2"], ["https://tec.openplanner.team/stops/Cbctile", "https://tec.openplanner.team/stops/Csbberg1"], ["https://tec.openplanner.team/stops/LaAronh2", "https://tec.openplanner.team/stops/LkEherg2"], ["https://tec.openplanner.team/stops/H1to151a", "https://tec.openplanner.team/stops/H1to151b"], ["https://tec.openplanner.team/stops/H4os222a", "https://tec.openplanner.team/stops/H4os222b"], ["https://tec.openplanner.team/stops/Canpeup2", "https://tec.openplanner.team/stops/H2an102a"], ["https://tec.openplanner.team/stops/Bquebth2", "https://tec.openplanner.team/stops/Bquecro1"], ["https://tec.openplanner.team/stops/Lrcvinc2", "https://tec.openplanner.team/stops/Lvopaqu1"], ["https://tec.openplanner.team/stops/H5pe135b", "https://tec.openplanner.team/stops/H5pe153b"], ["https://tec.openplanner.team/stops/H1ht126a", "https://tec.openplanner.team/stops/H1te191b"], ["https://tec.openplanner.team/stops/H4an111a", "https://tec.openplanner.team/stops/H4rs118b"], ["https://tec.openplanner.team/stops/N111aba", "https://tec.openplanner.team/stops/N127aha"], ["https://tec.openplanner.team/stops/LHMaube2", "https://tec.openplanner.team/stops/LHMchev2"], ["https://tec.openplanner.team/stops/H4mo136a", "https://tec.openplanner.team/stops/H4mo161a"], ["https://tec.openplanner.team/stops/H1hw125b", "https://tec.openplanner.team/stops/H1ls109a"], ["https://tec.openplanner.team/stops/Lmimili2", "https://tec.openplanner.team/stops/Lvtcime2"], ["https://tec.openplanner.team/stops/N508aaa", "https://tec.openplanner.team/stops/N508afa"], ["https://tec.openplanner.team/stops/LFRhock1", "https://tec.openplanner.team/stops/LFRhock4"], ["https://tec.openplanner.team/stops/N521ala", "https://tec.openplanner.team/stops/N525ana"], ["https://tec.openplanner.team/stops/N535amd", "https://tec.openplanner.team/stops/N564acb"], ["https://tec.openplanner.team/stops/H2mg136a", "https://tec.openplanner.team/stops/H2mg141b"], ["https://tec.openplanner.team/stops/N536aga", "https://tec.openplanner.team/stops/N536aoa"], ["https://tec.openplanner.team/stops/X801ceb", "https://tec.openplanner.team/stops/X802aja"], ["https://tec.openplanner.team/stops/N135aua", "https://tec.openplanner.team/stops/N135aub"], ["https://tec.openplanner.team/stops/H4we137a", "https://tec.openplanner.team/stops/H4we137c"], ["https://tec.openplanner.team/stops/Bsamfma1", "https://tec.openplanner.team/stops/Bsamlon1"], ["https://tec.openplanner.team/stops/LARgare1", "https://tec.openplanner.team/stops/Lchorme2"], ["https://tec.openplanner.team/stops/LAvchpl2", "https://tec.openplanner.team/stops/NL74aja"], ["https://tec.openplanner.team/stops/Lsehosp1", "https://tec.openplanner.team/stops/Lseptsa2"], ["https://tec.openplanner.team/stops/CMmorg1", "https://tec.openplanner.team/stops/Cmoecol1"], ["https://tec.openplanner.team/stops/Cbufron2", "https://tec.openplanner.team/stops/Ccacoup1"], ["https://tec.openplanner.team/stops/X619aab", "https://tec.openplanner.team/stops/X619aga"], ["https://tec.openplanner.team/stops/LFyanto1", "https://tec.openplanner.team/stops/LFyanto2"], ["https://tec.openplanner.team/stops/Bohngai2", "https://tec.openplanner.team/stops/Bohnrph2"], ["https://tec.openplanner.team/stops/N510aeb", "https://tec.openplanner.team/stops/N513aza"], ["https://tec.openplanner.team/stops/H4he102b", "https://tec.openplanner.team/stops/H4he106b"], ["https://tec.openplanner.team/stops/N501coa", "https://tec.openplanner.team/stops/N501mdb"], ["https://tec.openplanner.team/stops/Bwsppos1", "https://tec.openplanner.team/stops/Bwsppos2"], ["https://tec.openplanner.team/stops/Bbchsac1", "https://tec.openplanner.team/stops/Bhtirin2"], ["https://tec.openplanner.team/stops/LHUalbe1", "https://tec.openplanner.team/stops/LHUaveu1"], ["https://tec.openplanner.team/stops/H1ro130b", "https://tec.openplanner.team/stops/H1ro133a"], ["https://tec.openplanner.team/stops/H4bw101b", "https://tec.openplanner.team/stops/H4co142a"], ["https://tec.openplanner.team/stops/N215aaa", "https://tec.openplanner.team/stops/N228aca"], ["https://tec.openplanner.team/stops/Lvoec--2", "https://tec.openplanner.team/stops/Lvoec--3"], ["https://tec.openplanner.team/stops/LBNlong2", "https://tec.openplanner.team/stops/LBNvill6"], ["https://tec.openplanner.team/stops/N331aga", "https://tec.openplanner.team/stops/N331aka"], ["https://tec.openplanner.team/stops/LSIgera2", "https://tec.openplanner.team/stops/LVAwolf2"], ["https://tec.openplanner.team/stops/N539afa", "https://tec.openplanner.team/stops/N539bfb"], ["https://tec.openplanner.team/stops/LrApark1", "https://tec.openplanner.team/stops/LtEnatu2"], ["https://tec.openplanner.team/stops/Cnabult3", "https://tec.openplanner.team/stops/Cnaplbu1"], ["https://tec.openplanner.team/stops/N423acb", "https://tec.openplanner.team/stops/N424adb"], ["https://tec.openplanner.team/stops/H2hl113a", "https://tec.openplanner.team/stops/H2hp124c"], ["https://tec.openplanner.team/stops/N574abb", "https://tec.openplanner.team/stops/N576aea"], ["https://tec.openplanner.team/stops/Beclpla1", "https://tec.openplanner.team/stops/Beclpla2"], ["https://tec.openplanner.team/stops/Lvichpl1", "https://tec.openplanner.team/stops/Lvichpl2"], ["https://tec.openplanner.team/stops/LTHec--2", "https://tec.openplanner.team/stops/LTHperr2"], ["https://tec.openplanner.team/stops/X937aba", "https://tec.openplanner.team/stops/X937adb"], ["https://tec.openplanner.team/stops/H2ha132a", "https://tec.openplanner.team/stops/H2ha141c"], ["https://tec.openplanner.team/stops/Bnodcab1", "https://tec.openplanner.team/stops/Bnodegl1"], ["https://tec.openplanner.team/stops/Ccybeau2", "https://tec.openplanner.team/stops/Ccyrmon2"], ["https://tec.openplanner.team/stops/Ljemeca1", "https://tec.openplanner.team/stops/Ljemeca2"], ["https://tec.openplanner.team/stops/H1ha189b", "https://tec.openplanner.team/stops/H1vh136a"], ["https://tec.openplanner.team/stops/N232aia", "https://tec.openplanner.team/stops/N232caa"], ["https://tec.openplanner.team/stops/Bhoealt2", "https://tec.openplanner.team/stops/Bzluqga2"], ["https://tec.openplanner.team/stops/H4ne145b", "https://tec.openplanner.team/stops/H4wa151b"], ["https://tec.openplanner.team/stops/H1ht121b", "https://tec.openplanner.team/stops/H1ht135b"], ["https://tec.openplanner.team/stops/H1do109b", "https://tec.openplanner.team/stops/H1do117b"], ["https://tec.openplanner.team/stops/X666adb", "https://tec.openplanner.team/stops/X666aea"], ["https://tec.openplanner.team/stops/H2bh120a", "https://tec.openplanner.team/stops/H2bh120b"], ["https://tec.openplanner.team/stops/Bboufsm1", "https://tec.openplanner.team/stops/Bbougar1"], ["https://tec.openplanner.team/stops/X653ada", "https://tec.openplanner.team/stops/X653adb"], ["https://tec.openplanner.team/stops/LbUgend1", "https://tec.openplanner.team/stops/LbUvith2"], ["https://tec.openplanner.team/stops/Llgjoie1", "https://tec.openplanner.team/stops/Llgjoie2"], ["https://tec.openplanner.team/stops/N538aua", "https://tec.openplanner.team/stops/N539awa"], ["https://tec.openplanner.team/stops/X771aab", "https://tec.openplanner.team/stops/X771abb"], ["https://tec.openplanner.team/stops/H4tu170a", "https://tec.openplanner.team/stops/H4tu172a"], ["https://tec.openplanner.team/stops/N211aga", "https://tec.openplanner.team/stops/N212agc"], ["https://tec.openplanner.team/stops/X760abb", "https://tec.openplanner.team/stops/X786ada"], ["https://tec.openplanner.team/stops/N511aqa", "https://tec.openplanner.team/stops/N511avb"], ["https://tec.openplanner.team/stops/Canh1941", "https://tec.openplanner.team/stops/Canlalu1"], ["https://tec.openplanner.team/stops/X801alb", "https://tec.openplanner.team/stops/X801amb"], ["https://tec.openplanner.team/stops/X661ara", "https://tec.openplanner.team/stops/X661bca"], ["https://tec.openplanner.team/stops/Bbsicas2", "https://tec.openplanner.team/stops/Bbsifml2"], ["https://tec.openplanner.team/stops/H1eu107a", "https://tec.openplanner.team/stops/H1lb152b"], ["https://tec.openplanner.team/stops/X940aec", "https://tec.openplanner.team/stops/X940afa"], ["https://tec.openplanner.team/stops/H4ba102b", "https://tec.openplanner.team/stops/H4ga151a"], ["https://tec.openplanner.team/stops/H2tr252b", "https://tec.openplanner.team/stops/H2tr254a"], ["https://tec.openplanner.team/stops/H1ms247b", "https://tec.openplanner.team/stops/H1ms936a"], ["https://tec.openplanner.team/stops/N501ewa", "https://tec.openplanner.team/stops/N501exa"], ["https://tec.openplanner.team/stops/X801bra", "https://tec.openplanner.team/stops/X801caa"], ["https://tec.openplanner.team/stops/LSsaxhe2", "https://tec.openplanner.team/stops/LSznoel2"], ["https://tec.openplanner.team/stops/Crebrux2", "https://tec.openplanner.team/stops/Creha761"], ["https://tec.openplanner.team/stops/H1ro134a", "https://tec.openplanner.team/stops/H1ro137a"], ["https://tec.openplanner.team/stops/N501lea", "https://tec.openplanner.team/stops/N538ahb"], ["https://tec.openplanner.team/stops/Blhueca2", "https://tec.openplanner.team/stops/Blhupa14"], ["https://tec.openplanner.team/stops/LCRchpl1", "https://tec.openplanner.team/stops/LTymahr2"], ["https://tec.openplanner.team/stops/N520aia", "https://tec.openplanner.team/stops/N520ajb"], ["https://tec.openplanner.team/stops/Bfledpi2", "https://tec.openplanner.team/stops/Cflchel3"], ["https://tec.openplanner.team/stops/Bgntcbo2", "https://tec.openplanner.team/stops/Bsomh671"], ["https://tec.openplanner.team/stops/Cgxmaco2", "https://tec.openplanner.team/stops/CMleer1"], ["https://tec.openplanner.team/stops/H4wr173c", "https://tec.openplanner.team/stops/H5qu148a"], ["https://tec.openplanner.team/stops/Cctfaub1", "https://tec.openplanner.team/stops/Cctstro3"], ["https://tec.openplanner.team/stops/H4lz161a", "https://tec.openplanner.team/stops/H4lz162a"], ["https://tec.openplanner.team/stops/X991aka", "https://tec.openplanner.team/stops/X991akb"], ["https://tec.openplanner.team/stops/H4ar107b", "https://tec.openplanner.team/stops/H4ar172b"], ["https://tec.openplanner.team/stops/N532aca", "https://tec.openplanner.team/stops/N532acb"], ["https://tec.openplanner.team/stops/LaM266-2", "https://tec.openplanner.team/stops/LaMjous2"], ["https://tec.openplanner.team/stops/N536aab", "https://tec.openplanner.team/stops/N563aaa"], ["https://tec.openplanner.team/stops/X808aba", "https://tec.openplanner.team/stops/X809afa"], ["https://tec.openplanner.team/stops/LWEgend2", "https://tec.openplanner.team/stops/LWEpl--1"], ["https://tec.openplanner.team/stops/H2sb223b", "https://tec.openplanner.team/stops/H2sb228c"], ["https://tec.openplanner.team/stops/H5rx139a", "https://tec.openplanner.team/stops/H5rx139b"], ["https://tec.openplanner.team/stops/H1en103a", "https://tec.openplanner.team/stops/H1en104d"], ["https://tec.openplanner.team/stops/Bneersa2", "https://tec.openplanner.team/stops/Bneesj31"], ["https://tec.openplanner.team/stops/X925afa", "https://tec.openplanner.team/stops/X925ama"], ["https://tec.openplanner.team/stops/X947aba", "https://tec.openplanner.team/stops/X947aeb"], ["https://tec.openplanner.team/stops/Cmachau1", "https://tec.openplanner.team/stops/Cmaprov2"], ["https://tec.openplanner.team/stops/X725aka", "https://tec.openplanner.team/stops/X725ala"], ["https://tec.openplanner.team/stops/Bmouegl1", "https://tec.openplanner.team/stops/Bottrfa1"], ["https://tec.openplanner.team/stops/Cmlchan2", "https://tec.openplanner.team/stops/Cmlours2"], ["https://tec.openplanner.team/stops/Ccheden1", "https://tec.openplanner.team/stops/Ccheden2"], ["https://tec.openplanner.team/stops/LkEspor1", "https://tec.openplanner.team/stops/LkEwolf1"], ["https://tec.openplanner.team/stops/Ladandr1", "https://tec.openplanner.team/stops/Ladboti2"], ["https://tec.openplanner.team/stops/N201aoa", "https://tec.openplanner.team/stops/N201apb"], ["https://tec.openplanner.team/stops/LeLdorf1", "https://tec.openplanner.team/stops/LkAsonn2"], ["https://tec.openplanner.team/stops/X609akb", "https://tec.openplanner.team/stops/X610afa"], ["https://tec.openplanner.team/stops/LNEcite2", "https://tec.openplanner.team/stops/LNEgare*"], ["https://tec.openplanner.team/stops/Cbiferm2", "https://tec.openplanner.team/stops/Cdogrro2"], ["https://tec.openplanner.team/stops/H1hr115a", "https://tec.openplanner.team/stops/H1hr129b"], ["https://tec.openplanner.team/stops/LSNmoul2", "https://tec.openplanner.team/stops/LSNretr2"], ["https://tec.openplanner.team/stops/LLOberl2", "https://tec.openplanner.team/stops/LRRcole1"], ["https://tec.openplanner.team/stops/Lbrnanc1", "https://tec.openplanner.team/stops/Lbrplai2"], ["https://tec.openplanner.team/stops/N501bua", "https://tec.openplanner.team/stops/N501eoa"], ["https://tec.openplanner.team/stops/N118apa", "https://tec.openplanner.team/stops/N118azb"], ["https://tec.openplanner.team/stops/LTiflor2", "https://tec.openplanner.team/stops/LTiruel2"], ["https://tec.openplanner.team/stops/Lhrchar3", "https://tec.openplanner.team/stops/Lhrdron1"], ["https://tec.openplanner.team/stops/Chhbiet1", "https://tec.openplanner.team/stops/Cmx3arb2"], ["https://tec.openplanner.team/stops/Bllnein3", "https://tec.openplanner.team/stops/Bllnrro2"], ["https://tec.openplanner.team/stops/LCPlacr2", "https://tec.openplanner.team/stops/LSdbote1"], ["https://tec.openplanner.team/stops/Cvlbvir1", "https://tec.openplanner.team/stops/Cvlpeau1"], ["https://tec.openplanner.team/stops/LJAcent1", "https://tec.openplanner.team/stops/LJAfawe1"], ["https://tec.openplanner.team/stops/LSZarze4", "https://tec.openplanner.team/stops/LSZsolw1"], ["https://tec.openplanner.team/stops/H1as104b", "https://tec.openplanner.team/stops/H1mv240b"], ["https://tec.openplanner.team/stops/X542afa", "https://tec.openplanner.team/stops/X750aza"], ["https://tec.openplanner.team/stops/Cbmind2", "https://tec.openplanner.team/stops/Cbmpano2"], ["https://tec.openplanner.team/stops/Cbmplac2", "https://tec.openplanner.team/stops/H1bt100a"], ["https://tec.openplanner.team/stops/H2sv213b", "https://tec.openplanner.team/stops/H2sv215b"], ["https://tec.openplanner.team/stops/N503ajc", "https://tec.openplanner.team/stops/N503akb"], ["https://tec.openplanner.team/stops/LCnvill1", "https://tec.openplanner.team/stops/LSpshin2"], ["https://tec.openplanner.team/stops/Cpllimi1", "https://tec.openplanner.team/stops/Cpllimi2"], ["https://tec.openplanner.team/stops/X877aea", "https://tec.openplanner.team/stops/X877aeb"], ["https://tec.openplanner.team/stops/LHHpt--3", "https://tec.openplanner.team/stops/LSkbo832"], ["https://tec.openplanner.team/stops/X901agb", "https://tec.openplanner.team/stops/X902ava"], ["https://tec.openplanner.team/stops/H1cd111c", "https://tec.openplanner.team/stops/H1cd111d"], ["https://tec.openplanner.team/stops/N160aea", "https://tec.openplanner.team/stops/N160aeb"], ["https://tec.openplanner.team/stops/Bhmmcsc1", "https://tec.openplanner.team/stops/Bhmmhde1"], ["https://tec.openplanner.team/stops/Buccchu1", "https://tec.openplanner.team/stops/Buccgob2"], ["https://tec.openplanner.team/stops/Cctjoue4", "https://tec.openplanner.team/stops/Cctjoue6"], ["https://tec.openplanner.team/stops/LXobaty1", "https://tec.openplanner.team/stops/LXobaty2"], ["https://tec.openplanner.team/stops/H5el104a", "https://tec.openplanner.team/stops/H5wo130b"], ["https://tec.openplanner.team/stops/LhUrich1", "https://tec.openplanner.team/stops/LmUzent2"], ["https://tec.openplanner.team/stops/Llggcha1", "https://tec.openplanner.team/stops/Lsntvbi1"], ["https://tec.openplanner.team/stops/LATdame1", "https://tec.openplanner.team/stops/LATrori2"], ["https://tec.openplanner.team/stops/Blhumpo1", "https://tec.openplanner.team/stops/Blhupa11"], ["https://tec.openplanner.team/stops/N365aaa", "https://tec.openplanner.team/stops/X361aca"], ["https://tec.openplanner.team/stops/Bllnfeq1", "https://tec.openplanner.team/stops/Bottbru2"], ["https://tec.openplanner.team/stops/X764aab", "https://tec.openplanner.team/stops/X765aea"], ["https://tec.openplanner.team/stops/H1mm131b", "https://tec.openplanner.team/stops/H1vb147b"], ["https://tec.openplanner.team/stops/H4co105a", "https://tec.openplanner.team/stops/H4co149a"], ["https://tec.openplanner.team/stops/N510aca", "https://tec.openplanner.team/stops/N510aeb"], ["https://tec.openplanner.team/stops/Llgbavi0", "https://tec.openplanner.team/stops/Llgkurt1"], ["https://tec.openplanner.team/stops/LHrcarr1", "https://tec.openplanner.team/stops/LHrfang1"], ["https://tec.openplanner.team/stops/X879afa", "https://tec.openplanner.team/stops/X879afb"], ["https://tec.openplanner.team/stops/X902afd", "https://tec.openplanner.team/stops/X902bca"], ["https://tec.openplanner.team/stops/N101aga", "https://tec.openplanner.team/stops/N101agc"], ["https://tec.openplanner.team/stops/H1ms285a", "https://tec.openplanner.team/stops/H1ms309a"], ["https://tec.openplanner.team/stops/N102aba", "https://tec.openplanner.team/stops/N151ajd"], ["https://tec.openplanner.team/stops/Bbstcha2", "https://tec.openplanner.team/stops/Cbtstac1"], ["https://tec.openplanner.team/stops/LSZcock1", "https://tec.openplanner.team/stops/LSZgare2"], ["https://tec.openplanner.team/stops/N348aeb", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/Cmlcpar1", "https://tec.openplanner.team/stops/Cmlmatc1"], ["https://tec.openplanner.team/stops/Ccyfroi1", "https://tec.openplanner.team/stops/NH01aeb"], ["https://tec.openplanner.team/stops/LPOleli1", "https://tec.openplanner.team/stops/LSdbvue2"], ["https://tec.openplanner.team/stops/X616acb", "https://tec.openplanner.team/stops/X616aja"], ["https://tec.openplanner.team/stops/Bbxlmid4", "https://tec.openplanner.team/stops/H1gy115b"], ["https://tec.openplanner.team/stops/X925akb", "https://tec.openplanner.team/stops/X947ada"], ["https://tec.openplanner.team/stops/Llgbwez2", "https://tec.openplanner.team/stops/Llgdouf1"], ["https://tec.openplanner.team/stops/H4ar177a", "https://tec.openplanner.team/stops/H4ar178a"], ["https://tec.openplanner.team/stops/H1ho141b", "https://tec.openplanner.team/stops/H1wg126a"], ["https://tec.openplanner.team/stops/Barcsta1", "https://tec.openplanner.team/stops/Bpecvme1"], ["https://tec.openplanner.team/stops/X901aia", "https://tec.openplanner.team/stops/X901arb"], ["https://tec.openplanner.team/stops/N547aha", "https://tec.openplanner.team/stops/N548awb"], ["https://tec.openplanner.team/stops/Lloretr1", "https://tec.openplanner.team/stops/Lloretr2"], ["https://tec.openplanner.team/stops/H4es108a", "https://tec.openplanner.team/stops/H4es108b"], ["https://tec.openplanner.team/stops/H1hm173a", "https://tec.openplanner.team/stops/H1hm173b"], ["https://tec.openplanner.team/stops/H2jo163a", "https://tec.openplanner.team/stops/H2jo164a"], ["https://tec.openplanner.team/stops/N231agb", "https://tec.openplanner.team/stops/N232byb"], ["https://tec.openplanner.team/stops/N528afa", "https://tec.openplanner.team/stops/N551aaa"], ["https://tec.openplanner.team/stops/X901avb", "https://tec.openplanner.team/stops/X901awb"], ["https://tec.openplanner.team/stops/H1wz169a", "https://tec.openplanner.team/stops/H3bi102a"], ["https://tec.openplanner.team/stops/H4ty295a", "https://tec.openplanner.team/stops/H4ty295d"], ["https://tec.openplanner.team/stops/LBLfoxh2", "https://tec.openplanner.team/stops/LBXhacb2"], ["https://tec.openplanner.team/stops/X607aha", "https://tec.openplanner.team/stops/X607ahb"], ["https://tec.openplanner.team/stops/Bsomtnd2", "https://tec.openplanner.team/stops/Bsomtpm1"], ["https://tec.openplanner.team/stops/H4pp122b", "https://tec.openplanner.team/stops/H4qu408b"], ["https://tec.openplanner.team/stops/Cbuegl1", "https://tec.openplanner.team/stops/Cbupla2"], ["https://tec.openplanner.team/stops/Bsammon1", "https://tec.openplanner.team/stops/Bsammon3"], ["https://tec.openplanner.team/stops/X804bzb", "https://tec.openplanner.team/stops/X831aaa"], ["https://tec.openplanner.team/stops/LWDsott1", "https://tec.openplanner.team/stops/LWDsott2"], ["https://tec.openplanner.team/stops/N137aec", "https://tec.openplanner.team/stops/N137aha"], ["https://tec.openplanner.team/stops/X839aba", "https://tec.openplanner.team/stops/X839acb"], ["https://tec.openplanner.team/stops/Lfhgare2", "https://tec.openplanner.team/stops/Lfhmalv2"], ["https://tec.openplanner.team/stops/Bndbgar1", "https://tec.openplanner.team/stops/Btlgegl1"], ["https://tec.openplanner.team/stops/H1fl142a", "https://tec.openplanner.team/stops/H1qu114a"], ["https://tec.openplanner.team/stops/N209ada", "https://tec.openplanner.team/stops/N209adb"], ["https://tec.openplanner.team/stops/Lrogene1", "https://tec.openplanner.team/stops/Lrosaun1"], ["https://tec.openplanner.team/stops/N244aja", "https://tec.openplanner.team/stops/N244ala"], ["https://tec.openplanner.team/stops/H4ha170a", "https://tec.openplanner.team/stops/H4ha171a"], ["https://tec.openplanner.team/stops/LHHindu1", "https://tec.openplanner.team/stops/LHHpt--4"], ["https://tec.openplanner.team/stops/Bwaygrg1", "https://tec.openplanner.team/stops/Bwaypav1"], ["https://tec.openplanner.team/stops/X621ada", "https://tec.openplanner.team/stops/X621aeb"], ["https://tec.openplanner.team/stops/X620aga", "https://tec.openplanner.team/stops/X621aaa"], ["https://tec.openplanner.team/stops/X889adb", "https://tec.openplanner.team/stops/X889aea"], ["https://tec.openplanner.team/stops/LPOpass1", "https://tec.openplanner.team/stops/LPOpass2"], ["https://tec.openplanner.team/stops/LaSbahn1", "https://tec.openplanner.team/stops/LaSkape1"], ["https://tec.openplanner.team/stops/N549afa", "https://tec.openplanner.team/stops/N549afb"], ["https://tec.openplanner.team/stops/X899ada", "https://tec.openplanner.team/stops/X899adb"], ["https://tec.openplanner.team/stops/Lghfors2", "https://tec.openplanner.team/stops/Lghleon2"], ["https://tec.openplanner.team/stops/Creluth1", "https://tec.openplanner.team/stops/Crestan1"], ["https://tec.openplanner.team/stops/Cplcite1", "https://tec.openplanner.team/stops/Cplstfa3"], ["https://tec.openplanner.team/stops/N501dtc", "https://tec.openplanner.team/stops/N501jtb"], ["https://tec.openplanner.team/stops/Brxmhai3", "https://tec.openplanner.team/stops/Brxmhai4"], ["https://tec.openplanner.team/stops/N543aaa", "https://tec.openplanner.team/stops/N543apa"], ["https://tec.openplanner.team/stops/N501dqa", "https://tec.openplanner.team/stops/N501mvc"], ["https://tec.openplanner.team/stops/LONcroi1", "https://tec.openplanner.team/stops/Lthfagn1"], ["https://tec.openplanner.team/stops/Bperalv2", "https://tec.openplanner.team/stops/Bpersyn2"], ["https://tec.openplanner.team/stops/H1do121a", "https://tec.openplanner.team/stops/H1el137b"], ["https://tec.openplanner.team/stops/H1cu111a", "https://tec.openplanner.team/stops/H1hn202a"], ["https://tec.openplanner.team/stops/H4wp150a", "https://tec.openplanner.team/stops/H4wp150c"], ["https://tec.openplanner.team/stops/N513acd", "https://tec.openplanner.team/stops/N513aea"], ["https://tec.openplanner.team/stops/LVPcrok1", "https://tec.openplanner.team/stops/LVPgrot3"], ["https://tec.openplanner.team/stops/H4ma202b", "https://tec.openplanner.team/stops/H4ma400b"], ["https://tec.openplanner.team/stops/Bbsiabb1", "https://tec.openplanner.team/stops/Bbsiabb2"], ["https://tec.openplanner.team/stops/LHTbeau2", "https://tec.openplanner.team/stops/LHTmoul1"], ["https://tec.openplanner.team/stops/LCn4---2", "https://tec.openplanner.team/stops/LCnvill1"], ["https://tec.openplanner.team/stops/Bwatbca1", "https://tec.openplanner.team/stops/Bwatbca2"], ["https://tec.openplanner.team/stops/N501bya", "https://tec.openplanner.team/stops/N501ckb"], ["https://tec.openplanner.team/stops/Lprceri1", "https://tec.openplanner.team/stops/Lprceri2"], ["https://tec.openplanner.team/stops/N522abc", "https://tec.openplanner.team/stops/N522aga"], ["https://tec.openplanner.team/stops/N120aaa", "https://tec.openplanner.team/stops/N120aab"], ["https://tec.openplanner.team/stops/Llgcite4", "https://tec.openplanner.team/stops/Llgcock2"], ["https://tec.openplanner.team/stops/X369aaa", "https://tec.openplanner.team/stops/X858agb"], ["https://tec.openplanner.team/stops/Bottpry1", "https://tec.openplanner.team/stops/Brixape2"], ["https://tec.openplanner.team/stops/LeUindu1", "https://tec.openplanner.team/stops/LkTkabi2"], ["https://tec.openplanner.team/stops/X725ata", "https://tec.openplanner.team/stops/X767aib"], ["https://tec.openplanner.team/stops/X979adb", "https://tec.openplanner.team/stops/X979aka"], ["https://tec.openplanner.team/stops/H4bo115a", "https://tec.openplanner.team/stops/H4bo178b"], ["https://tec.openplanner.team/stops/Lsesabl2", "https://tec.openplanner.team/stops/Lsevill1"], ["https://tec.openplanner.team/stops/Clbchba1", "https://tec.openplanner.team/stops/Cthgrat1"], ["https://tec.openplanner.team/stops/Lrecomp2", "https://tec.openplanner.team/stops/Lrevaul2"], ["https://tec.openplanner.team/stops/Bmalper1", "https://tec.openplanner.team/stops/Borbod92"], ["https://tec.openplanner.team/stops/LNCesne1", "https://tec.openplanner.team/stops/LNCfawe1"], ["https://tec.openplanner.team/stops/H4jm116b", "https://tec.openplanner.team/stops/H4we137d"], ["https://tec.openplanner.team/stops/X608agb", "https://tec.openplanner.team/stops/X608aza"], ["https://tec.openplanner.team/stops/X948aga", "https://tec.openplanner.team/stops/X948aha"], ["https://tec.openplanner.team/stops/X605aeb", "https://tec.openplanner.team/stops/X605afb"], ["https://tec.openplanner.team/stops/X734afa", "https://tec.openplanner.team/stops/X734agb"], ["https://tec.openplanner.team/stops/H1no140a", "https://tec.openplanner.team/stops/H1no142a"], ["https://tec.openplanner.team/stops/X618aha", "https://tec.openplanner.team/stops/X618ana"], ["https://tec.openplanner.team/stops/LHEoutr1", "https://tec.openplanner.team/stops/LHEvign1"], ["https://tec.openplanner.team/stops/N539aha", "https://tec.openplanner.team/stops/N539ara"], ["https://tec.openplanner.team/stops/N528afa", "https://tec.openplanner.team/stops/N528afb"], ["https://tec.openplanner.team/stops/X811aca", "https://tec.openplanner.team/stops/X811aia"], ["https://tec.openplanner.team/stops/Cselibe1", "https://tec.openplanner.team/stops/Cselibe2"], ["https://tec.openplanner.team/stops/Bborbif1", "https://tec.openplanner.team/stops/Bborbif2"], ["https://tec.openplanner.team/stops/LrUkult1", "https://tec.openplanner.team/stops/LrUkult2"], ["https://tec.openplanner.team/stops/H4ae102a", "https://tec.openplanner.team/stops/H5rx112a"], ["https://tec.openplanner.team/stops/Lcehipp2", "https://tec.openplanner.team/stops/Lcemeta2"], ["https://tec.openplanner.team/stops/X823aaa", "https://tec.openplanner.team/stops/X823aab"], ["https://tec.openplanner.team/stops/H1ms271b", "https://tec.openplanner.team/stops/H1ms288b"], ["https://tec.openplanner.team/stops/Lagmair1", "https://tec.openplanner.team/stops/Lkiecol2"], ["https://tec.openplanner.team/stops/LPRcasi2", "https://tec.openplanner.team/stops/LPRvill2"], ["https://tec.openplanner.team/stops/LFTcroi1", "https://tec.openplanner.team/stops/LNAdemo1"], ["https://tec.openplanner.team/stops/Ccipier2", "https://tec.openplanner.team/stops/Cmtcapi1"], ["https://tec.openplanner.team/stops/X877aba", "https://tec.openplanner.team/stops/X877abb"], ["https://tec.openplanner.team/stops/H4hq132b", "https://tec.openplanner.team/stops/H4hs135a"], ["https://tec.openplanner.team/stops/LhEtivo1", "https://tec.openplanner.team/stops/LlNbruc1"], ["https://tec.openplanner.team/stops/H1ch101b", "https://tec.openplanner.team/stops/H5ar102a"], ["https://tec.openplanner.team/stops/LWRheyd1", "https://tec.openplanner.team/stops/LWRtroi1"], ["https://tec.openplanner.team/stops/LaMbrei1", "https://tec.openplanner.team/stops/LaMhe421"], ["https://tec.openplanner.team/stops/Baudhde1", "https://tec.openplanner.team/stops/Baudvdu2"], ["https://tec.openplanner.team/stops/Bhanwav2", "https://tec.openplanner.team/stops/NL37aba"], ["https://tec.openplanner.team/stops/X911amb", "https://tec.openplanner.team/stops/X911aua"], ["https://tec.openplanner.team/stops/Lagcile1", "https://tec.openplanner.team/stops/Laggare1"], ["https://tec.openplanner.team/stops/LGogare2", "https://tec.openplanner.team/stops/LNEbois1"], ["https://tec.openplanner.team/stops/Blkbavo1", "https://tec.openplanner.team/stops/Blkbbvh2"], ["https://tec.openplanner.team/stops/Lsn184-2", "https://tec.openplanner.team/stops/Lsnlibe2"], ["https://tec.openplanner.team/stops/H4ka192b", "https://tec.openplanner.team/stops/H4ka399a"], ["https://tec.openplanner.team/stops/Cgocat1", "https://tec.openplanner.team/stops/Cgocat2"], ["https://tec.openplanner.team/stops/H5wo123a", "https://tec.openplanner.team/stops/H5wo134b"], ["https://tec.openplanner.team/stops/N562bkb", "https://tec.openplanner.team/stops/N562bsa"], ["https://tec.openplanner.team/stops/Lemacac1", "https://tec.openplanner.team/stops/Lemcarm2"], ["https://tec.openplanner.team/stops/Lhrlalo4", "https://tec.openplanner.team/stops/Lhrlamb1"], ["https://tec.openplanner.team/stops/H4ce107a", "https://tec.openplanner.team/stops/H4ef111b"], ["https://tec.openplanner.team/stops/N390abb", "https://tec.openplanner.team/stops/X998azb"], ["https://tec.openplanner.team/stops/H4ea127b", "https://tec.openplanner.team/stops/H4ea130a"], ["https://tec.openplanner.team/stops/NL77aab", "https://tec.openplanner.team/stops/NL77aca"], ["https://tec.openplanner.team/stops/LSMec--1", "https://tec.openplanner.team/stops/LSMeg--2"], ["https://tec.openplanner.team/stops/X618afa", "https://tec.openplanner.team/stops/X618ama"], ["https://tec.openplanner.team/stops/N531abb", "https://tec.openplanner.team/stops/N531ala"], ["https://tec.openplanner.team/stops/Cmtduch1", "https://tec.openplanner.team/stops/Cmtmath1"], ["https://tec.openplanner.team/stops/X919aja", "https://tec.openplanner.team/stops/X919ajd"], ["https://tec.openplanner.team/stops/LeUdepo1", "https://tec.openplanner.team/stops/LeUdepo2"], ["https://tec.openplanner.team/stops/X602aca", "https://tec.openplanner.team/stops/X623abb"], ["https://tec.openplanner.team/stops/LBUchpl2", "https://tec.openplanner.team/stops/LBUplac1"], ["https://tec.openplanner.team/stops/N220aca", "https://tec.openplanner.team/stops/N220ada"], ["https://tec.openplanner.team/stops/H4ma398a", "https://tec.openplanner.team/stops/H4oq226a"], ["https://tec.openplanner.team/stops/X982aza", "https://tec.openplanner.team/stops/X982cda"], ["https://tec.openplanner.team/stops/Cbwcab1", "https://tec.openplanner.team/stops/Cmggthi1"], ["https://tec.openplanner.team/stops/Bllngar1", "https://tec.openplanner.team/stops/Bllngar2"], ["https://tec.openplanner.team/stops/H4ep126b", "https://tec.openplanner.team/stops/H4ep128b"], ["https://tec.openplanner.team/stops/NC14agb", "https://tec.openplanner.team/stops/NC14ahb"], ["https://tec.openplanner.team/stops/X941adb", "https://tec.openplanner.team/stops/X942acb"], ["https://tec.openplanner.team/stops/N308beb", "https://tec.openplanner.team/stops/N308bfb"], ["https://tec.openplanner.team/stops/H4hn114a", "https://tec.openplanner.team/stops/H4hn114b"], ["https://tec.openplanner.team/stops/LClberw2", "https://tec.openplanner.team/stops/LLCeg--2"], ["https://tec.openplanner.team/stops/H5at108b", "https://tec.openplanner.team/stops/H5at116a"], ["https://tec.openplanner.team/stops/Bdlvpco2", "https://tec.openplanner.team/stops/Bdvm4ca1"], ["https://tec.openplanner.team/stops/H4ty287b", "https://tec.openplanner.team/stops/H4ty327b"], ["https://tec.openplanner.team/stops/Bmrspel1", "https://tec.openplanner.team/stops/Bohnrpl2"], ["https://tec.openplanner.team/stops/H2hg154b", "https://tec.openplanner.team/stops/H2hg154f"], ["https://tec.openplanner.team/stops/N360aab", "https://tec.openplanner.team/stops/N360adb"], ["https://tec.openplanner.team/stops/H4ar172b", "https://tec.openplanner.team/stops/H4pl135b"], ["https://tec.openplanner.team/stops/H2gy105a", "https://tec.openplanner.team/stops/H2gy106a"], ["https://tec.openplanner.team/stops/X763ada", "https://tec.openplanner.team/stops/X763adb"], ["https://tec.openplanner.team/stops/LAtaube1", "https://tec.openplanner.team/stops/NL35aba"], ["https://tec.openplanner.team/stops/N543bba", "https://tec.openplanner.team/stops/N543cpa"], ["https://tec.openplanner.team/stops/X871aea", "https://tec.openplanner.team/stops/X880acb"], ["https://tec.openplanner.team/stops/Btubfab1", "https://tec.openplanner.team/stops/Btubsam2"], ["https://tec.openplanner.team/stops/H1hi124a", "https://tec.openplanner.team/stops/H1hi124b"], ["https://tec.openplanner.team/stops/H4ve133b", "https://tec.openplanner.team/stops/H4ve140b"], ["https://tec.openplanner.team/stops/Cmcgoch1", "https://tec.openplanner.team/stops/Cmgcabi1"], ["https://tec.openplanner.team/stops/X639akb", "https://tec.openplanner.team/stops/X639alb"], ["https://tec.openplanner.team/stops/H1ms296d", "https://tec.openplanner.team/stops/H1ms923a"], ["https://tec.openplanner.team/stops/Ccugrtr1", "https://tec.openplanner.team/stops/Ccutill2"], ["https://tec.openplanner.team/stops/Bblagar6", "https://tec.openplanner.team/stops/Bblagar7"], ["https://tec.openplanner.team/stops/NC14abb", "https://tec.openplanner.team/stops/NC14ava"], ["https://tec.openplanner.team/stops/Cgosmoi2", "https://tec.openplanner.team/stops/Cjufauv2"], ["https://tec.openplanner.team/stops/Lsehya-2", "https://tec.openplanner.team/stops/Lsepapi1"], ["https://tec.openplanner.team/stops/Cflchap3", "https://tec.openplanner.team/stops/Cflchmo1"], ["https://tec.openplanner.team/stops/Blsmcha4", "https://tec.openplanner.team/stops/Bneelaa1"], ["https://tec.openplanner.team/stops/X783aab", "https://tec.openplanner.team/stops/X789aha"], ["https://tec.openplanner.team/stops/Lmncasi2", "https://tec.openplanner.team/stops/Lmnmart1"], ["https://tec.openplanner.team/stops/Lgdblom2", "https://tec.openplanner.team/stops/Lgdstoc2"], ["https://tec.openplanner.team/stops/N528abb", "https://tec.openplanner.team/stops/N528afc"], ["https://tec.openplanner.team/stops/N123aca", "https://tec.openplanner.team/stops/N123adb"], ["https://tec.openplanner.team/stops/X823afa", "https://tec.openplanner.team/stops/X823afd"], ["https://tec.openplanner.team/stops/X631aaa", "https://tec.openplanner.team/stops/X644aeb"], ["https://tec.openplanner.team/stops/Ccimont2", "https://tec.openplanner.team/stops/Ccisolv1"], ["https://tec.openplanner.team/stops/H2sb224a", "https://tec.openplanner.team/stops/H2sb224b"], ["https://tec.openplanner.team/stops/N120amb", "https://tec.openplanner.team/stops/N244ava"], ["https://tec.openplanner.team/stops/X999adb", "https://tec.openplanner.team/stops/X999aeb"], ["https://tec.openplanner.team/stops/LDLbeau1", "https://tec.openplanner.team/stops/LLNbeau2"], ["https://tec.openplanner.team/stops/Ccpblpo2", "https://tec.openplanner.team/stops/H2ch108a"], ["https://tec.openplanner.team/stops/H4va232b", "https://tec.openplanner.team/stops/H4vd230a"], ["https://tec.openplanner.team/stops/N232bja", "https://tec.openplanner.team/stops/N232cbb"], ["https://tec.openplanner.team/stops/X725aja", "https://tec.openplanner.team/stops/X725bgb"], ["https://tec.openplanner.team/stops/Bkrabhu1", "https://tec.openplanner.team/stops/Boveklo1"], ["https://tec.openplanner.team/stops/X636aga", "https://tec.openplanner.team/stops/X636aia"], ["https://tec.openplanner.team/stops/LJUmate1", "https://tec.openplanner.team/stops/LJUmate2"], ["https://tec.openplanner.team/stops/Cmlcent2", "https://tec.openplanner.team/stops/Cmlecha2"], ["https://tec.openplanner.team/stops/N331afb", "https://tec.openplanner.team/stops/N331afc"], ["https://tec.openplanner.team/stops/LhSfrep2", "https://tec.openplanner.team/stops/LkOzoll2"], ["https://tec.openplanner.team/stops/H4ty343b", "https://tec.openplanner.team/stops/H4ty405b"], ["https://tec.openplanner.team/stops/N514aca", "https://tec.openplanner.team/stops/N514aka"], ["https://tec.openplanner.team/stops/H1hn209a", "https://tec.openplanner.team/stops/H1ms312b"], ["https://tec.openplanner.team/stops/LAvchpl1", "https://tec.openplanner.team/stops/LAvrout2"], ["https://tec.openplanner.team/stops/Ccicloc2", "https://tec.openplanner.team/stops/Clvimtr3"], ["https://tec.openplanner.team/stops/X793aba", "https://tec.openplanner.team/stops/X793aea"], ["https://tec.openplanner.team/stops/N501lda", "https://tec.openplanner.team/stops/N501lnb"], ["https://tec.openplanner.team/stops/H4wn124d", "https://tec.openplanner.team/stops/H4wn128b"], ["https://tec.openplanner.team/stops/LCIneuv1", "https://tec.openplanner.team/stops/LCIpiet1"], ["https://tec.openplanner.team/stops/LOV48--2", "https://tec.openplanner.team/stops/LRObarr2"], ["https://tec.openplanner.team/stops/N203aba", "https://tec.openplanner.team/stops/N203afa"], ["https://tec.openplanner.team/stops/LTEkerk1", "https://tec.openplanner.team/stops/LTEkl121"], ["https://tec.openplanner.team/stops/H1hr115a", "https://tec.openplanner.team/stops/H1ne137a"], ["https://tec.openplanner.team/stops/LCRgdrt2", "https://tec.openplanner.team/stops/LCRrape1"], ["https://tec.openplanner.team/stops/LGEwalk1", "https://tec.openplanner.team/stops/LLSba9-1"], ["https://tec.openplanner.team/stops/X361aca", "https://tec.openplanner.team/stops/X361acb"], ["https://tec.openplanner.team/stops/N232bfa", "https://tec.openplanner.team/stops/N232bfb"], ["https://tec.openplanner.team/stops/X616aea", "https://tec.openplanner.team/stops/X616aeb"], ["https://tec.openplanner.team/stops/Cselait2", "https://tec.openplanner.team/stops/Csepost2"], ["https://tec.openplanner.team/stops/N260aab", "https://tec.openplanner.team/stops/N270acb"], ["https://tec.openplanner.team/stops/LJAbois1", "https://tec.openplanner.team/stops/LSU50--1"], ["https://tec.openplanner.team/stops/N538ata", "https://tec.openplanner.team/stops/N538atb"], ["https://tec.openplanner.team/stops/H2ec104b", "https://tec.openplanner.team/stops/H2ec105a"], ["https://tec.openplanner.team/stops/X907aeb", "https://tec.openplanner.team/stops/X907afb"], ["https://tec.openplanner.team/stops/X612aea", "https://tec.openplanner.team/stops/X612aeb"], ["https://tec.openplanner.team/stops/H1do108e", "https://tec.openplanner.team/stops/H1do109a"], ["https://tec.openplanner.team/stops/H2bh119a", "https://tec.openplanner.team/stops/H2bh121a"], ["https://tec.openplanner.team/stops/H1bo107b", "https://tec.openplanner.team/stops/H1bo109b"], ["https://tec.openplanner.team/stops/N528aca", "https://tec.openplanner.team/stops/N528ala"], ["https://tec.openplanner.team/stops/Lvtcime2", "https://tec.openplanner.team/stops/Lvtegli*"], ["https://tec.openplanner.team/stops/H5qu149b", "https://tec.openplanner.team/stops/H5qu156b"], ["https://tec.openplanner.team/stops/N110aha", "https://tec.openplanner.team/stops/N125aaa"], ["https://tec.openplanner.team/stops/Cgofbru1", "https://tec.openplanner.team/stops/CMfbru1"], ["https://tec.openplanner.team/stops/X955aaa", "https://tec.openplanner.team/stops/X955aga"], ["https://tec.openplanner.team/stops/Cfldand1", "https://tec.openplanner.team/stops/Cflmart1"], ["https://tec.openplanner.team/stops/LBVclig1", "https://tec.openplanner.team/stops/LBVzand2"], ["https://tec.openplanner.team/stops/Loubiez2", "https://tec.openplanner.team/stops/Louvira2"], ["https://tec.openplanner.team/stops/Bsaubra1", "https://tec.openplanner.team/stops/Bwspm372"], ["https://tec.openplanner.team/stops/X947adb", "https://tec.openplanner.team/stops/X948aka"], ["https://tec.openplanner.team/stops/H4vx362a", "https://tec.openplanner.team/stops/H4vx366a"], ["https://tec.openplanner.team/stops/X817aeb", "https://tec.openplanner.team/stops/X817agb"], ["https://tec.openplanner.team/stops/Lsebuil1", "https://tec.openplanner.team/stops/Lsehtsa2"], ["https://tec.openplanner.team/stops/Bglabra1", "https://tec.openplanner.team/stops/Bglarha1"], ["https://tec.openplanner.team/stops/Ccomott1", "https://tec.openplanner.team/stops/Crowall1"], ["https://tec.openplanner.team/stops/H2ec102a", "https://tec.openplanner.team/stops/H2ec110b"], ["https://tec.openplanner.team/stops/Bperrma1", "https://tec.openplanner.team/stops/Bpersyn1"], ["https://tec.openplanner.team/stops/Lghcoqs1", "https://tec.openplanner.team/stops/Lghprea4"], ["https://tec.openplanner.team/stops/H2bh108a", "https://tec.openplanner.team/stops/H2fa108b"], ["https://tec.openplanner.team/stops/H1ne138b", "https://tec.openplanner.team/stops/H1ne141a"], ["https://tec.openplanner.team/stops/N215acb", "https://tec.openplanner.team/stops/N232ceb"], ["https://tec.openplanner.team/stops/X829abb", "https://tec.openplanner.team/stops/X829aca"], ["https://tec.openplanner.team/stops/Beceres1", "https://tec.openplanner.team/stops/H2mi124a"], ["https://tec.openplanner.team/stops/LON02--2", "https://tec.openplanner.team/stops/LON21--1"], ["https://tec.openplanner.team/stops/Llgfoss1", "https://tec.openplanner.team/stops/Llghull2"], ["https://tec.openplanner.team/stops/X637aja", "https://tec.openplanner.team/stops/X638aoa"], ["https://tec.openplanner.team/stops/Bstemco1", "https://tec.openplanner.team/stops/Bstemco2"], ["https://tec.openplanner.team/stops/LHHroua1", "https://tec.openplanner.team/stops/LHHroua2"], ["https://tec.openplanner.team/stops/Bcrnnca1", "https://tec.openplanner.team/stops/Bernpla1"], ["https://tec.openplanner.team/stops/H4ty267b", "https://tec.openplanner.team/stops/H4ty268a"], ["https://tec.openplanner.team/stops/X662asa", "https://tec.openplanner.team/stops/X662ata"], ["https://tec.openplanner.team/stops/Bwatcoc1", "https://tec.openplanner.team/stops/Bwatmsj6"], ["https://tec.openplanner.team/stops/LbOlier2", "https://tec.openplanner.team/stops/LbOre152"], ["https://tec.openplanner.team/stops/NL81afa", "https://tec.openplanner.team/stops/NL81aga"], ["https://tec.openplanner.team/stops/H4hx113b", "https://tec.openplanner.team/stops/H4mo160a"], ["https://tec.openplanner.team/stops/H2ca108b", "https://tec.openplanner.team/stops/H2ca112b"], ["https://tec.openplanner.team/stops/NC14aob", "https://tec.openplanner.team/stops/NC14aoe"], ["https://tec.openplanner.team/stops/Cmyedpa4", "https://tec.openplanner.team/stops/Cmyronc2"], ["https://tec.openplanner.team/stops/X762acb", "https://tec.openplanner.team/stops/X762adb"], ["https://tec.openplanner.team/stops/LJEchat2", "https://tec.openplanner.team/stops/LJEerno1"], ["https://tec.openplanner.team/stops/H1el134b", "https://tec.openplanner.team/stops/H1el135b"], ["https://tec.openplanner.team/stops/Livmoul1", "https://tec.openplanner.team/stops/Livpost1"], ["https://tec.openplanner.team/stops/N120agb", "https://tec.openplanner.team/stops/N120anb"], ["https://tec.openplanner.team/stops/Laggare1", "https://tec.openplanner.team/stops/Lagjado6"], ["https://tec.openplanner.team/stops/LCLgend1", "https://tec.openplanner.team/stops/NL35adc"], ["https://tec.openplanner.team/stops/Ltibure1", "https://tec.openplanner.team/stops/Ltibure2"], ["https://tec.openplanner.team/stops/N507aad", "https://tec.openplanner.team/stops/N507abb"], ["https://tec.openplanner.team/stops/CMsartc2", "https://tec.openplanner.team/stops/CMsolei2"], ["https://tec.openplanner.team/stops/Bblaaca1", "https://tec.openplanner.team/stops/Bblaqsj2"], ["https://tec.openplanner.team/stops/Cfnegli2", "https://tec.openplanner.team/stops/Cfnsenz1"], ["https://tec.openplanner.team/stops/H1as154a", "https://tec.openplanner.team/stops/H1as154b"], ["https://tec.openplanner.team/stops/LbUmors2", "https://tec.openplanner.team/stops/LmRh%C3%B6812"], ["https://tec.openplanner.team/stops/X982ahb", "https://tec.openplanner.team/stops/X982aia"], ["https://tec.openplanner.team/stops/Lveherl1", "https://tec.openplanner.team/stops/Lvehopi4"], ["https://tec.openplanner.team/stops/Lboastr1", "https://tec.openplanner.team/stops/Lbomc--6"], ["https://tec.openplanner.team/stops/LNCecdo1", "https://tec.openplanner.team/stops/LNCspor1"], ["https://tec.openplanner.team/stops/N501aka", "https://tec.openplanner.team/stops/N501mbb"], ["https://tec.openplanner.team/stops/Lbrdepo1", "https://tec.openplanner.team/stops/Ljucrah2"], ["https://tec.openplanner.team/stops/X942aba", "https://tec.openplanner.team/stops/X942abb"], ["https://tec.openplanner.team/stops/H5at137a", "https://tec.openplanner.team/stops/H5at137b"], ["https://tec.openplanner.team/stops/Cmlpomm1", "https://tec.openplanner.team/stops/Cmltomb1"], ["https://tec.openplanner.team/stops/H1gg116a", "https://tec.openplanner.team/stops/H1mb130a"], ["https://tec.openplanner.team/stops/Ljupiet1", "https://tec.openplanner.team/stops/Ljupiet2"], ["https://tec.openplanner.team/stops/Caihai81", "https://tec.openplanner.team/stops/Caistro1"], ["https://tec.openplanner.team/stops/H4os220a", "https://tec.openplanner.team/stops/H4os222b"], ["https://tec.openplanner.team/stops/X779aab", "https://tec.openplanner.team/stops/X912aga"], ["https://tec.openplanner.team/stops/Cplbbro1", "https://tec.openplanner.team/stops/Cplelec1"], ["https://tec.openplanner.team/stops/LWAchpg1", "https://tec.openplanner.team/stops/LWAchpg2"], ["https://tec.openplanner.team/stops/X624adb", "https://tec.openplanner.team/stops/X624aka"], ["https://tec.openplanner.team/stops/Ldihusq1", "https://tec.openplanner.team/stops/Ldihusq2"], ["https://tec.openplanner.team/stops/LATjaur1", "https://tec.openplanner.team/stops/LATjaur2"], ["https://tec.openplanner.team/stops/Lsntvbi1", "https://tec.openplanner.team/stops/Lsntvbi2"], ["https://tec.openplanner.team/stops/N287aba", "https://tec.openplanner.team/stops/N287acb"], ["https://tec.openplanner.team/stops/Bettbue1", "https://tec.openplanner.team/stops/Bettlha1"], ["https://tec.openplanner.team/stops/Bnivn972", "https://tec.openplanner.team/stops/Bnivvai2"], ["https://tec.openplanner.team/stops/X601bfb", "https://tec.openplanner.team/stops/X601bgb"], ["https://tec.openplanner.team/stops/LSLhale2", "https://tec.openplanner.team/stops/LSLvaux1"], ["https://tec.openplanner.team/stops/H5bl116a", "https://tec.openplanner.team/stops/H5bl116b"], ["https://tec.openplanner.team/stops/LLnec--1", "https://tec.openplanner.team/stops/LLnpomp2"], ["https://tec.openplanner.team/stops/H4fr139b", "https://tec.openplanner.team/stops/H4ma418a"], ["https://tec.openplanner.team/stops/H4ta118b", "https://tec.openplanner.team/stops/H4ta123b"], ["https://tec.openplanner.team/stops/H2ha135c", "https://tec.openplanner.team/stops/H2ha136b"], ["https://tec.openplanner.team/stops/X639aab", "https://tec.openplanner.team/stops/X652ahb"], ["https://tec.openplanner.team/stops/N521aoa", "https://tec.openplanner.team/stops/N523aaa"], ["https://tec.openplanner.team/stops/NC14aba", "https://tec.openplanner.team/stops/NC44ahb"], ["https://tec.openplanner.team/stops/LSOtrou2", "https://tec.openplanner.team/stops/LSOvoie2"], ["https://tec.openplanner.team/stops/Bblafab2", "https://tec.openplanner.team/stops/Bblatet2"], ["https://tec.openplanner.team/stops/LrEkais2", "https://tec.openplanner.team/stops/Ltheg--2"], ["https://tec.openplanner.team/stops/LEHmarc1", "https://tec.openplanner.team/stops/LNCmc--1"], ["https://tec.openplanner.team/stops/Laltrap1", "https://tec.openplanner.team/stops/Llaeg--2"], ["https://tec.openplanner.team/stops/LrAbotz1", "https://tec.openplanner.team/stops/LrAbotz2"], ["https://tec.openplanner.team/stops/X948aka", "https://tec.openplanner.team/stops/X948akb"], ["https://tec.openplanner.team/stops/H4ma162a", "https://tec.openplanner.team/stops/H4ry132b"], ["https://tec.openplanner.team/stops/Bwatifr1", "https://tec.openplanner.team/stops/Bwatifr2"], ["https://tec.openplanner.team/stops/LHTboul1", "https://tec.openplanner.team/stops/LHTboul2"], ["https://tec.openplanner.team/stops/X664aqa", "https://tec.openplanner.team/stops/X664arb"], ["https://tec.openplanner.team/stops/X617aha", "https://tec.openplanner.team/stops/X625ada"], ["https://tec.openplanner.team/stops/H4bc106a", "https://tec.openplanner.team/stops/H4bc108b"], ["https://tec.openplanner.team/stops/H1hh110b", "https://tec.openplanner.team/stops/H1hh118b"], ["https://tec.openplanner.team/stops/Cbugara1", "https://tec.openplanner.team/stops/N103aea"], ["https://tec.openplanner.team/stops/X801ama", "https://tec.openplanner.team/stops/X801apa"], ["https://tec.openplanner.team/stops/N507afa", "https://tec.openplanner.team/stops/N507aga"], ["https://tec.openplanner.team/stops/LEBdoct2", "https://tec.openplanner.team/stops/LEBeg--2"], ["https://tec.openplanner.team/stops/H4te252a", "https://tec.openplanner.team/stops/H4te252b"], ["https://tec.openplanner.team/stops/N346aaa", "https://tec.openplanner.team/stops/N347aca"], ["https://tec.openplanner.team/stops/X910afd", "https://tec.openplanner.team/stops/X910aib"], ["https://tec.openplanner.team/stops/X616aea", "https://tec.openplanner.team/stops/X624aba"], ["https://tec.openplanner.team/stops/LaMahof1", "https://tec.openplanner.team/stops/LmRmuhl1"], ["https://tec.openplanner.team/stops/Bmalwvi2", "https://tec.openplanner.team/stops/Btlbtbe2"], ["https://tec.openplanner.team/stops/LHaodei2", "https://tec.openplanner.team/stops/LHarenn4"], ["https://tec.openplanner.team/stops/LLVboss1", "https://tec.openplanner.team/stops/LLVerri1"], ["https://tec.openplanner.team/stops/N529aab", "https://tec.openplanner.team/stops/N529aeb"], ["https://tec.openplanner.team/stops/Lagsauh2", "https://tec.openplanner.team/stops/Lagtenn2"], ["https://tec.openplanner.team/stops/Cjuecho2", "https://tec.openplanner.team/stops/Cjuplho2"], ["https://tec.openplanner.team/stops/H1ls109a", "https://tec.openplanner.team/stops/H1ls110b"], ["https://tec.openplanner.team/stops/Bhevcur2", "https://tec.openplanner.team/stops/Bvilcha1"], ["https://tec.openplanner.team/stops/N501nea", "https://tec.openplanner.team/stops/N501neb"], ["https://tec.openplanner.team/stops/Lemcarm2", "https://tec.openplanner.team/stops/Lemhenn2"], ["https://tec.openplanner.team/stops/Lsnagne1", "https://tec.openplanner.team/stops/Lsnecco1"], ["https://tec.openplanner.team/stops/N232acb", "https://tec.openplanner.team/stops/N286abb"], ["https://tec.openplanner.team/stops/X992aab", "https://tec.openplanner.team/stops/X992afa"], ["https://tec.openplanner.team/stops/N503aeb", "https://tec.openplanner.team/stops/N503afb"], ["https://tec.openplanner.team/stops/NL77ada", "https://tec.openplanner.team/stops/NL77afb"], ["https://tec.openplanner.team/stops/N558aab", "https://tec.openplanner.team/stops/N558ama"], ["https://tec.openplanner.team/stops/H1be100a", "https://tec.openplanner.team/stops/H1be100b"], ["https://tec.openplanner.team/stops/LRmstat2", "https://tec.openplanner.team/stops/LTEzinn1"], ["https://tec.openplanner.team/stops/LHe3com2", "https://tec.openplanner.team/stops/LHecime1"], ["https://tec.openplanner.team/stops/Lmoboeu1", "https://tec.openplanner.team/stops/Lmoboeu4"], ["https://tec.openplanner.team/stops/LDLbaye1", "https://tec.openplanner.team/stops/LDLbeau2"], ["https://tec.openplanner.team/stops/H2bh121a", "https://tec.openplanner.team/stops/H2fa108b"], ["https://tec.openplanner.team/stops/LFocent1", "https://tec.openplanner.team/stops/LFothie2"], ["https://tec.openplanner.team/stops/N232aoa", "https://tec.openplanner.team/stops/N251aab"], ["https://tec.openplanner.team/stops/N510adb", "https://tec.openplanner.team/stops/N513bia"], ["https://tec.openplanner.team/stops/N115aaa", "https://tec.openplanner.team/stops/N170aga"], ["https://tec.openplanner.team/stops/X608aua", "https://tec.openplanner.team/stops/X608aza"], ["https://tec.openplanner.team/stops/X869ada", "https://tec.openplanner.team/stops/X870ajb"], ["https://tec.openplanner.team/stops/Broncan1", "https://tec.openplanner.team/stops/Broncan2"], ["https://tec.openplanner.team/stops/Ccogrha2", "https://tec.openplanner.team/stops/Ccotrie4"], ["https://tec.openplanner.team/stops/Llghenr2", "https://tec.openplanner.team/stops/Llgrain2"], ["https://tec.openplanner.team/stops/H1cr100a", "https://tec.openplanner.team/stops/H1hl126b"], ["https://tec.openplanner.team/stops/X714adb", "https://tec.openplanner.team/stops/X715aib"], ["https://tec.openplanner.team/stops/Lhrlalo3", "https://tec.openplanner.team/stops/Ljudeme4"], ["https://tec.openplanner.team/stops/Cmestas1", "https://tec.openplanner.team/stops/Cmestas2"], ["https://tec.openplanner.team/stops/LESathe1", "https://tec.openplanner.team/stops/LESathe2"], ["https://tec.openplanner.team/stops/X982atb", "https://tec.openplanner.team/stops/X982baa"], ["https://tec.openplanner.team/stops/Cmlasie1", "https://tec.openplanner.team/stops/Cmlasie2"], ["https://tec.openplanner.team/stops/Ccugilb1", "https://tec.openplanner.team/stops/Ccugilb2"], ["https://tec.openplanner.team/stops/Bgisman2", "https://tec.openplanner.team/stops/Bnilhau1"], ["https://tec.openplanner.team/stops/Bndbgar2", "https://tec.openplanner.team/stops/Btlgmou1"], ["https://tec.openplanner.team/stops/N204aia", "https://tec.openplanner.team/stops/N204akb"], ["https://tec.openplanner.team/stops/N517adb", "https://tec.openplanner.team/stops/N517add"], ["https://tec.openplanner.team/stops/Cmghay1", "https://tec.openplanner.team/stops/Cmgpla1"], ["https://tec.openplanner.team/stops/LHUsart2", "https://tec.openplanner.team/stops/LTiespe1"], ["https://tec.openplanner.team/stops/H4ty290b", "https://tec.openplanner.team/stops/H4ty298a"], ["https://tec.openplanner.team/stops/LlEzoll1", "https://tec.openplanner.team/stops/LmLbeil1"], ["https://tec.openplanner.team/stops/Bgntalt3", "https://tec.openplanner.team/stops/Bsgeqpb2"], ["https://tec.openplanner.team/stops/N519aba", "https://tec.openplanner.team/stops/N519ada"], ["https://tec.openplanner.team/stops/LWHkape1", "https://tec.openplanner.team/stops/LWHmath1"], ["https://tec.openplanner.team/stops/Cgpmoul1", "https://tec.openplanner.team/stops/Cgpmoul2"], ["https://tec.openplanner.team/stops/Btslcej1", "https://tec.openplanner.team/stops/Btsllsc2"], ["https://tec.openplanner.team/stops/X731ada", "https://tec.openplanner.team/stops/X731ama"], ["https://tec.openplanner.team/stops/LTyhall1", "https://tec.openplanner.team/stops/LTywaut1"], ["https://tec.openplanner.team/stops/Lrc594-2", "https://tec.openplanner.team/stops/Lrccomm2"], ["https://tec.openplanner.team/stops/X891aca", "https://tec.openplanner.team/stops/X891ada"], ["https://tec.openplanner.team/stops/LDAptbo1", "https://tec.openplanner.team/stops/LDArich2"], ["https://tec.openplanner.team/stops/X750afa", "https://tec.openplanner.team/stops/X784aaa"], ["https://tec.openplanner.team/stops/N551aga", "https://tec.openplanner.team/stops/N551aib"], ["https://tec.openplanner.team/stops/LFyec--2", "https://tec.openplanner.team/stops/LWamass1"], ["https://tec.openplanner.team/stops/Bgntcha2", "https://tec.openplanner.team/stops/Bsgetri1"], ["https://tec.openplanner.team/stops/LRmkult2", "https://tec.openplanner.team/stops/LRmrode2"], ["https://tec.openplanner.team/stops/N539aya", "https://tec.openplanner.team/stops/N540aqa"], ["https://tec.openplanner.team/stops/LHEjose1", "https://tec.openplanner.team/stops/LJOchar1"], ["https://tec.openplanner.team/stops/LPlchpl1", "https://tec.openplanner.team/stops/LPldoua3"], ["https://tec.openplanner.team/stops/LMalune4", "https://tec.openplanner.team/stops/LMamuse4"], ["https://tec.openplanner.team/stops/LHMsipp1", "https://tec.openplanner.team/stops/LHMsipp2"], ["https://tec.openplanner.team/stops/N230ahb", "https://tec.openplanner.team/stops/N230aib"], ["https://tec.openplanner.team/stops/Beclbse2", "https://tec.openplanner.team/stops/H2ec108a"], ["https://tec.openplanner.team/stops/Cfmmart1", "https://tec.openplanner.team/stops/Cfmmart2"], ["https://tec.openplanner.team/stops/X713aaa", "https://tec.openplanner.team/stops/X713aba"], ["https://tec.openplanner.team/stops/H1ha190b", "https://tec.openplanner.team/stops/H1ha196a"], ["https://tec.openplanner.team/stops/H4eh100a", "https://tec.openplanner.team/stops/H4eh101a"], ["https://tec.openplanner.team/stops/N351ara", "https://tec.openplanner.team/stops/N351asa"], ["https://tec.openplanner.team/stops/X911aea", "https://tec.openplanner.team/stops/X911asa"], ["https://tec.openplanner.team/stops/Bbsgbos1", "https://tec.openplanner.team/stops/Bbsgrve2"], ["https://tec.openplanner.team/stops/LEnchan1", "https://tec.openplanner.team/stops/NL67aba"], ["https://tec.openplanner.team/stops/Blasren1", "https://tec.openplanner.team/stops/Brixchw1"], ["https://tec.openplanner.team/stops/Bhercsj1", "https://tec.openplanner.team/stops/Bhercsj2"], ["https://tec.openplanner.team/stops/NC24aga", "https://tec.openplanner.team/stops/NC24agb"], ["https://tec.openplanner.team/stops/Lsmeg--2", "https://tec.openplanner.team/stops/Lsmnico2"], ["https://tec.openplanner.team/stops/X609aab", "https://tec.openplanner.team/stops/X609aqb"], ["https://tec.openplanner.team/stops/H2mg137a", "https://tec.openplanner.team/stops/H2mg149a"], ["https://tec.openplanner.team/stops/Cfrcham1", "https://tec.openplanner.team/stops/Cfrfaub3"], ["https://tec.openplanner.team/stops/N501ena", "https://tec.openplanner.team/stops/N501klb"], ["https://tec.openplanner.team/stops/LNCneuv1", "https://tec.openplanner.team/stops/LNCsart2"], ["https://tec.openplanner.team/stops/H4wi167b", "https://tec.openplanner.team/stops/H5pe144a"], ["https://tec.openplanner.team/stops/X602anb", "https://tec.openplanner.team/stops/X602aoa"], ["https://tec.openplanner.team/stops/N585ahb", "https://tec.openplanner.team/stops/N585aia"], ["https://tec.openplanner.team/stops/LMupont2", "https://tec.openplanner.team/stops/LMuvill1"], ["https://tec.openplanner.team/stops/LPtrefa2", "https://tec.openplanner.team/stops/LRchaie2"], ["https://tec.openplanner.team/stops/H4ma400b", "https://tec.openplanner.team/stops/H4ma411a"], ["https://tec.openplanner.team/stops/N120aia", "https://tec.openplanner.team/stops/N120aib"], ["https://tec.openplanner.team/stops/Bdoncar2", "https://tec.openplanner.team/stops/Bgliopp4"], ["https://tec.openplanner.team/stops/X764aea", "https://tec.openplanner.team/stops/X764afb"], ["https://tec.openplanner.team/stops/N550abd", "https://tec.openplanner.team/stops/N550abe"], ["https://tec.openplanner.team/stops/Bnilcha1", "https://tec.openplanner.team/stops/Bnilpie1"], ["https://tec.openplanner.team/stops/LDppana2", "https://tec.openplanner.team/stops/LDpzol-2"], ["https://tec.openplanner.team/stops/Ladchat1", "https://tec.openplanner.team/stops/Laddelc2"], ["https://tec.openplanner.team/stops/LCPecli2", "https://tec.openplanner.team/stops/LMtcent1"], ["https://tec.openplanner.team/stops/N260abc", "https://tec.openplanner.team/stops/N270acb"], ["https://tec.openplanner.team/stops/LrUlasc1", "https://tec.openplanner.team/stops/LrUoudl2"], ["https://tec.openplanner.team/stops/H4mb138a", "https://tec.openplanner.team/stops/H4mb141a"], ["https://tec.openplanner.team/stops/Lsnlhon1", "https://tec.openplanner.team/stops/Lsnmala2"], ["https://tec.openplanner.team/stops/LTolijn*", "https://tec.openplanner.team/stops/LTowijk1"], ["https://tec.openplanner.team/stops/N538aca", "https://tec.openplanner.team/stops/N538akb"], ["https://tec.openplanner.team/stops/Lmojoan2", "https://tec.openplanner.team/stops/Lmopans1"], ["https://tec.openplanner.team/stops/H1ho138b", "https://tec.openplanner.team/stops/H1wl126a"], ["https://tec.openplanner.team/stops/LThgare2", "https://tec.openplanner.team/stops/LThnouv1"], ["https://tec.openplanner.team/stops/H1bi101b", "https://tec.openplanner.team/stops/H1bu143a"], ["https://tec.openplanner.team/stops/LHTbaud2", "https://tec.openplanner.team/stops/LHTmonu2"], ["https://tec.openplanner.team/stops/Lgdhura1", "https://tec.openplanner.team/stops/LMhvina2"], ["https://tec.openplanner.team/stops/N506baa", "https://tec.openplanner.team/stops/N506bad"], ["https://tec.openplanner.team/stops/Cgymetr1", "https://tec.openplanner.team/stops/Cgymetr2"], ["https://tec.openplanner.team/stops/Lrolecl1", "https://tec.openplanner.team/stops/Lrolecl2"], ["https://tec.openplanner.team/stops/Crapaep1", "https://tec.openplanner.team/stops/Cravign3"], ["https://tec.openplanner.team/stops/X646abb", "https://tec.openplanner.team/stops/X646aca"], ["https://tec.openplanner.team/stops/Crbhurt1", "https://tec.openplanner.team/stops/Crbreve1"], ["https://tec.openplanner.team/stops/N118acc", "https://tec.openplanner.team/stops/N118afa"], ["https://tec.openplanner.team/stops/N132ada", "https://tec.openplanner.team/stops/N132adb"], ["https://tec.openplanner.team/stops/H1ho128b", "https://tec.openplanner.team/stops/H1ho130b"], ["https://tec.openplanner.team/stops/N123acb", "https://tec.openplanner.team/stops/N124aca"], ["https://tec.openplanner.team/stops/H4wn123a", "https://tec.openplanner.team/stops/H4wn138a"], ["https://tec.openplanner.team/stops/N535amc", "https://tec.openplanner.team/stops/N564abb"], ["https://tec.openplanner.team/stops/Canegbr2", "https://tec.openplanner.team/stops/Canlemo1"], ["https://tec.openplanner.team/stops/LjeGRPMB", "https://tec.openplanner.team/stops/Ljelamb2"], ["https://tec.openplanner.team/stops/N501eta", "https://tec.openplanner.team/stops/N501kba"], ["https://tec.openplanner.team/stops/X223acb", "https://tec.openplanner.team/stops/X919aba"], ["https://tec.openplanner.team/stops/Ctynamu1", "https://tec.openplanner.team/stops/N137afa"], ["https://tec.openplanner.team/stops/H4or116a", "https://tec.openplanner.team/stops/H4or116b"], ["https://tec.openplanner.team/stops/N512abb", "https://tec.openplanner.team/stops/N512axb"], ["https://tec.openplanner.team/stops/H1pa104a", "https://tec.openplanner.team/stops/H1pa108a"], ["https://tec.openplanner.team/stops/X390aia", "https://tec.openplanner.team/stops/X902aha"], ["https://tec.openplanner.team/stops/H1bs112a", "https://tec.openplanner.team/stops/H1bs112b"], ["https://tec.openplanner.team/stops/X625afb", "https://tec.openplanner.team/stops/X625aga"], ["https://tec.openplanner.team/stops/LLbcafe1", "https://tec.openplanner.team/stops/LLbpt--1"], ["https://tec.openplanner.team/stops/LOrchau2", "https://tec.openplanner.team/stops/LORpave2"], ["https://tec.openplanner.team/stops/H4wa150a", "https://tec.openplanner.team/stops/H4wa159a"], ["https://tec.openplanner.team/stops/Lsmgdry1", "https://tec.openplanner.team/stops/Lveinva2"], ["https://tec.openplanner.team/stops/LaMades1", "https://tec.openplanner.team/stops/LaMades2"], ["https://tec.openplanner.team/stops/Ldihusq2", "https://tec.openplanner.team/stops/Ldilyce*"], ["https://tec.openplanner.team/stops/X902aqa", "https://tec.openplanner.team/stops/X902axa"], ["https://tec.openplanner.team/stops/N301aca", "https://tec.openplanner.team/stops/N302aea"], ["https://tec.openplanner.team/stops/H4lz122b", "https://tec.openplanner.team/stops/H4lz156b"], ["https://tec.openplanner.team/stops/Lvcdumo2", "https://tec.openplanner.team/stops/Lvcsapi2"], ["https://tec.openplanner.team/stops/H4ev126b", "https://tec.openplanner.team/stops/H4hx116b"], ["https://tec.openplanner.team/stops/Cthdeco1", "https://tec.openplanner.team/stops/Cthrlef2"], ["https://tec.openplanner.team/stops/NL76abb", "https://tec.openplanner.team/stops/NL76arb"], ["https://tec.openplanner.team/stops/Bclgpch1", "https://tec.openplanner.team/stops/Bllnlb51"], ["https://tec.openplanner.team/stops/LBSchpl2", "https://tec.openplanner.team/stops/LGLcour4"], ["https://tec.openplanner.team/stops/N117bda", "https://tec.openplanner.team/stops/N145acb"], ["https://tec.openplanner.team/stops/Cthalou1", "https://tec.openplanner.team/stops/Cthdeco2"], ["https://tec.openplanner.team/stops/H5rx135a", "https://tec.openplanner.team/stops/H5rx136a"], ["https://tec.openplanner.team/stops/Loudela1", "https://tec.openplanner.team/stops/Lsedese2"], ["https://tec.openplanner.team/stops/LhPkirc2", "https://tec.openplanner.team/stops/LhPprum2"], ["https://tec.openplanner.team/stops/LHUaron2", "https://tec.openplanner.team/stops/LHUlebe0"], ["https://tec.openplanner.team/stops/Ccomiau1", "https://tec.openplanner.team/stops/Cronova1"], ["https://tec.openplanner.team/stops/Cvlgrta1", "https://tec.openplanner.team/stops/NH21adb"], ["https://tec.openplanner.team/stops/Cgocapu2", "https://tec.openplanner.team/stops/Cgofabr1"], ["https://tec.openplanner.team/stops/LGmhedo1", "https://tec.openplanner.team/stops/LHmcarr2"], ["https://tec.openplanner.team/stops/Cjuhden3", "https://tec.openplanner.team/stops/Cjupllo1"], ["https://tec.openplanner.team/stops/Bglibui1", "https://tec.openplanner.team/stops/NB33alb"], ["https://tec.openplanner.team/stops/N232afa", "https://tec.openplanner.team/stops/N286aaa"], ["https://tec.openplanner.team/stops/H2tr247b", "https://tec.openplanner.team/stops/H2tr254a"], ["https://tec.openplanner.team/stops/X926afb", "https://tec.openplanner.team/stops/X947aab"], ["https://tec.openplanner.team/stops/Cmmcarr2", "https://tec.openplanner.team/stops/Cmmcime1"], ["https://tec.openplanner.team/stops/Lemparc2", "https://tec.openplanner.team/stops/Lemsely2"], ["https://tec.openplanner.team/stops/NB33afa", "https://tec.openplanner.team/stops/NB33ahb"], ["https://tec.openplanner.team/stops/Lhubouq2", "https://tec.openplanner.team/stops/Lhueg--1"], ["https://tec.openplanner.team/stops/Cgymetr2", "https://tec.openplanner.team/stops/CMgill1"], ["https://tec.openplanner.team/stops/X670aca", "https://tec.openplanner.team/stops/X670acb"], ["https://tec.openplanner.team/stops/Canmonu1", "https://tec.openplanner.team/stops/Canmonu2"], ["https://tec.openplanner.team/stops/Bjodfab1", "https://tec.openplanner.team/stops/Bjodrga2"], ["https://tec.openplanner.team/stops/Bhevgar2", "https://tec.openplanner.team/stops/Bhevgro2"], ["https://tec.openplanner.team/stops/N232aia", "https://tec.openplanner.team/stops/N232ajb"], ["https://tec.openplanner.team/stops/H5bl115c", "https://tec.openplanner.team/stops/H5bl121a"], ["https://tec.openplanner.team/stops/Bsomjon2", "https://tec.openplanner.team/stops/Bsomwav2"], ["https://tec.openplanner.team/stops/Cflcent1", "https://tec.openplanner.team/stops/Cflchmo2"], ["https://tec.openplanner.team/stops/N244aca", "https://tec.openplanner.team/stops/N251adb"], ["https://tec.openplanner.team/stops/Cgysole1", "https://tec.openplanner.team/stops/CMsolei2"], ["https://tec.openplanner.team/stops/LmYwall1", "https://tec.openplanner.team/stops/LsVgend1"], ["https://tec.openplanner.team/stops/H1hm174b", "https://tec.openplanner.team/stops/H1hm176a"], ["https://tec.openplanner.team/stops/X601csb", "https://tec.openplanner.team/stops/X601dib"], ["https://tec.openplanner.team/stops/N535afb", "https://tec.openplanner.team/stops/N535aib"], ["https://tec.openplanner.team/stops/Ljemabo1", "https://tec.openplanner.team/stops/Lmocoop2"], ["https://tec.openplanner.team/stops/Ladhomb1", "https://tec.openplanner.team/stops/Ladmoul2"], ["https://tec.openplanner.team/stops/N501hxa", "https://tec.openplanner.team/stops/N501hxy"], ["https://tec.openplanner.team/stops/Bleugar1", "https://tec.openplanner.team/stops/Bwolkra1"], ["https://tec.openplanner.team/stops/Canlemo1", "https://tec.openplanner.team/stops/Clbhour1"], ["https://tec.openplanner.team/stops/H2ec105a", "https://tec.openplanner.team/stops/H2me115a"], ["https://tec.openplanner.team/stops/Bsencen2", "https://tec.openplanner.team/stops/H2se107a"], ["https://tec.openplanner.team/stops/Bjdsjso2", "https://tec.openplanner.team/stops/Bjdssta2"], ["https://tec.openplanner.team/stops/Bflegar6", "https://tec.openplanner.team/stops/Cflsncb1"], ["https://tec.openplanner.team/stops/Cthenmi2", "https://tec.openplanner.team/stops/Cthrpoi1"], ["https://tec.openplanner.team/stops/LFabraa2", "https://tec.openplanner.team/stops/LFacruc2"], ["https://tec.openplanner.team/stops/Lwapomp1", "https://tec.openplanner.team/stops/Lwapont1"], ["https://tec.openplanner.team/stops/Llgborg2", "https://tec.openplanner.team/stops/Llgvolg2"], ["https://tec.openplanner.team/stops/Ljubods2", "https://tec.openplanner.team/stops/Ljubonf1"], ["https://tec.openplanner.team/stops/LGorysa1", "https://tec.openplanner.team/stops/LGorysa2"], ["https://tec.openplanner.team/stops/N244asa", "https://tec.openplanner.team/stops/N244asb"], ["https://tec.openplanner.team/stops/X746ajb", "https://tec.openplanner.team/stops/X746akb"], ["https://tec.openplanner.team/stops/N211aia", "https://tec.openplanner.team/stops/N211azb"], ["https://tec.openplanner.team/stops/Bnivbne2", "https://tec.openplanner.team/stops/Bnivbng1"], ["https://tec.openplanner.team/stops/H4rx143b", "https://tec.openplanner.team/stops/H4tf147a"], ["https://tec.openplanner.team/stops/LSyeg--2", "https://tec.openplanner.team/stops/LSygerm1"], ["https://tec.openplanner.team/stops/Bcbqcim1", "https://tec.openplanner.team/stops/Blemsta2"], ["https://tec.openplanner.team/stops/X901acb", "https://tec.openplanner.team/stops/X901bka"], ["https://tec.openplanner.team/stops/X804bsb", "https://tec.openplanner.team/stops/X804bua"], ["https://tec.openplanner.team/stops/N538axa", "https://tec.openplanner.team/stops/N538bbb"], ["https://tec.openplanner.team/stops/LCSmagn2", "https://tec.openplanner.team/stops/LSShous2"], ["https://tec.openplanner.team/stops/H4do103b", "https://tec.openplanner.team/stops/H4ev119a"], ["https://tec.openplanner.team/stops/H2hl110a", "https://tec.openplanner.team/stops/H2hl110b"], ["https://tec.openplanner.team/stops/N308aia", "https://tec.openplanner.team/stops/N308baa"], ["https://tec.openplanner.team/stops/X717aeb", "https://tec.openplanner.team/stops/X717afa"], ["https://tec.openplanner.team/stops/X608aqa", "https://tec.openplanner.team/stops/X621ada"], ["https://tec.openplanner.team/stops/N301aob", "https://tec.openplanner.team/stops/N302aea"], ["https://tec.openplanner.team/stops/LoEauto1", "https://tec.openplanner.team/stops/LrD28--1"], ["https://tec.openplanner.team/stops/N527aea", "https://tec.openplanner.team/stops/N527aeb"], ["https://tec.openplanner.team/stops/Cchdagn2", "https://tec.openplanner.team/stops/Cchsud01"], ["https://tec.openplanner.team/stops/Bblaast1", "https://tec.openplanner.team/stops/Bblagar1"], ["https://tec.openplanner.team/stops/N525acb", "https://tec.openplanner.team/stops/N525aub"], ["https://tec.openplanner.team/stops/Llgjose1", "https://tec.openplanner.team/stops/Llgnaim1"], ["https://tec.openplanner.team/stops/X659aha", "https://tec.openplanner.team/stops/X659aza"], ["https://tec.openplanner.team/stops/Clsghoy1", "https://tec.openplanner.team/stops/Clsstpi1"], ["https://tec.openplanner.team/stops/LETeg--2", "https://tec.openplanner.team/stops/LETmagn2"], ["https://tec.openplanner.team/stops/H5bs104b", "https://tec.openplanner.team/stops/H5pe125b"], ["https://tec.openplanner.team/stops/Bptrcra2", "https://tec.openplanner.team/stops/Bptrman1"], ["https://tec.openplanner.team/stops/X758aia", "https://tec.openplanner.team/stops/X758aka"], ["https://tec.openplanner.team/stops/Cfmltas1", "https://tec.openplanner.team/stops/Cfmmart1"], ["https://tec.openplanner.team/stops/X614aub", "https://tec.openplanner.team/stops/X614avb"], ["https://tec.openplanner.team/stops/X713aia", "https://tec.openplanner.team/stops/X714aba"], ["https://tec.openplanner.team/stops/N218ada", "https://tec.openplanner.team/stops/N218aeb"], ["https://tec.openplanner.team/stops/Llgmair2", "https://tec.openplanner.team/stops/Lvtnico*"], ["https://tec.openplanner.team/stops/LWDfuma1", "https://tec.openplanner.team/stops/LWDfuma2"], ["https://tec.openplanner.team/stops/X739aea", "https://tec.openplanner.team/stops/X739aeb"], ["https://tec.openplanner.team/stops/Bplncsd2", "https://tec.openplanner.team/stops/Bplnegl2"], ["https://tec.openplanner.team/stops/X636aja", "https://tec.openplanner.team/stops/X636ajb"], ["https://tec.openplanner.team/stops/N120abd", "https://tec.openplanner.team/stops/N302aba"], ["https://tec.openplanner.team/stops/X626ahb", "https://tec.openplanner.team/stops/X626aib"], ["https://tec.openplanner.team/stops/H1hv135a", "https://tec.openplanner.team/stops/H1mk123a"], ["https://tec.openplanner.team/stops/N138aga", "https://tec.openplanner.team/stops/N138aia"], ["https://tec.openplanner.team/stops/Blpgcmo1", "https://tec.openplanner.team/stops/Bnivfdu1"], ["https://tec.openplanner.team/stops/X615axb", "https://tec.openplanner.team/stops/X615bbb"], ["https://tec.openplanner.team/stops/X764ada", "https://tec.openplanner.team/stops/X765aea"], ["https://tec.openplanner.team/stops/Buccdef1", "https://tec.openplanner.team/stops/Buccgob1"], ["https://tec.openplanner.team/stops/Buccron2", "https://tec.openplanner.team/stops/Buccvbe1"], ["https://tec.openplanner.team/stops/N209ajc", "https://tec.openplanner.team/stops/N209akb"], ["https://tec.openplanner.team/stops/LBWbatt2", "https://tec.openplanner.team/stops/LBWfusi1"], ["https://tec.openplanner.team/stops/H1wz170b", "https://tec.openplanner.team/stops/H2pe161b"], ["https://tec.openplanner.team/stops/X716aba", "https://tec.openplanner.team/stops/X716afb"], ["https://tec.openplanner.team/stops/X811aba", "https://tec.openplanner.team/stops/X811ama"], ["https://tec.openplanner.team/stops/N501flb", "https://tec.openplanner.team/stops/N501fqa"], ["https://tec.openplanner.team/stops/N529afa", "https://tec.openplanner.team/stops/N529aja"], ["https://tec.openplanner.team/stops/H4bo110b", "https://tec.openplanner.team/stops/H5st161b"], ["https://tec.openplanner.team/stops/X804awa", "https://tec.openplanner.team/stops/X804bda"], ["https://tec.openplanner.team/stops/Balssvi1", "https://tec.openplanner.team/stops/Balswwe2"], ["https://tec.openplanner.team/stops/H1fr114a", "https://tec.openplanner.team/stops/H1fr122a"], ["https://tec.openplanner.team/stops/Lflchan1", "https://tec.openplanner.team/stops/Lmabott1"], ["https://tec.openplanner.team/stops/Bbourel1", "https://tec.openplanner.team/stops/Bcsgres1"], ["https://tec.openplanner.team/stops/N115abb", "https://tec.openplanner.team/stops/N147afb"], ["https://tec.openplanner.team/stops/N141acb", "https://tec.openplanner.team/stops/N143ada"], ["https://tec.openplanner.team/stops/Cmtfabi1", "https://tec.openplanner.team/stops/Cmtmath1"], ["https://tec.openplanner.team/stops/Bwancal2", "https://tec.openplanner.team/stops/Bwancal4"], ["https://tec.openplanner.team/stops/H4po125b", "https://tec.openplanner.team/stops/H4po127a"], ["https://tec.openplanner.team/stops/H1ha187a", "https://tec.openplanner.team/stops/H1ob330a"], ["https://tec.openplanner.team/stops/LWRbomb3", "https://tec.openplanner.team/stops/LWRbomb4"], ["https://tec.openplanner.team/stops/Bbeaneu3", "https://tec.openplanner.team/stops/Bbeaneu4"], ["https://tec.openplanner.team/stops/X877aaa", "https://tec.openplanner.team/stops/X877aca"], ["https://tec.openplanner.team/stops/X725afd", "https://tec.openplanner.team/stops/X725afe"], ["https://tec.openplanner.team/stops/Cjubien1", "https://tec.openplanner.team/stops/Cjuquai2"], ["https://tec.openplanner.team/stops/N531aea", "https://tec.openplanner.team/stops/N531afh"], ["https://tec.openplanner.team/stops/X601alb", "https://tec.openplanner.team/stops/X601bwa"], ["https://tec.openplanner.team/stops/H4ma400a", "https://tec.openplanner.team/stops/H4ma401a"], ["https://tec.openplanner.team/stops/Llglonh1", "https://tec.openplanner.team/stops/Llgmart2"], ["https://tec.openplanner.team/stops/Blnzcar2", "https://tec.openplanner.team/stops/N576aba"], ["https://tec.openplanner.team/stops/H3bi107b", "https://tec.openplanner.team/stops/H3bi112b"], ["https://tec.openplanner.team/stops/X986aaa", "https://tec.openplanner.team/stops/X986aab"], ["https://tec.openplanner.team/stops/Lghalle1", "https://tec.openplanner.team/stops/Lghcoqs1"], ["https://tec.openplanner.team/stops/Bblabar1", "https://tec.openplanner.team/stops/Bblapet1"], ["https://tec.openplanner.team/stops/Cctjoue6", "https://tec.openplanner.team/stops/Cpllimi1"], ["https://tec.openplanner.team/stops/Cvssncv2", "https://tec.openplanner.team/stops/N530aab"], ["https://tec.openplanner.team/stops/N501cpb", "https://tec.openplanner.team/stops/N501cua"], ["https://tec.openplanner.team/stops/X801aeb", "https://tec.openplanner.team/stops/X801ahb"], ["https://tec.openplanner.team/stops/LLrdrev1", "https://tec.openplanner.team/stops/LLrmeno2"], ["https://tec.openplanner.team/stops/Cmchai2", "https://tec.openplanner.team/stops/Cmgtour1"], ["https://tec.openplanner.team/stops/Lsebuil2", "https://tec.openplanner.team/stops/Lsecime1"], ["https://tec.openplanner.team/stops/H1lb137a", "https://tec.openplanner.team/stops/H1lb139b"], ["https://tec.openplanner.team/stops/N508aba", "https://tec.openplanner.team/stops/N508ada"], ["https://tec.openplanner.team/stops/Croegli2", "https://tec.openplanner.team/stops/Crojume2"], ["https://tec.openplanner.team/stops/N874aga", "https://tec.openplanner.team/stops/N874ahb"], ["https://tec.openplanner.team/stops/Lmleg--1", "https://tec.openplanner.team/stops/Lmleg--2"], ["https://tec.openplanner.team/stops/X793aja", "https://tec.openplanner.team/stops/X793ajb"], ["https://tec.openplanner.team/stops/H1ss351a", "https://tec.openplanner.team/stops/H1ss351b"], ["https://tec.openplanner.team/stops/H2lh130b", "https://tec.openplanner.team/stops/H2mo133a"], ["https://tec.openplanner.team/stops/N531acb", "https://tec.openplanner.team/stops/N531ada"], ["https://tec.openplanner.team/stops/Lhurouh2", "https://tec.openplanner.team/stops/Lhuwaid1"], ["https://tec.openplanner.team/stops/N540ala", "https://tec.openplanner.team/stops/N540ama"], ["https://tec.openplanner.team/stops/LPLbiol2", "https://tec.openplanner.team/stops/LPLc49-2"], ["https://tec.openplanner.team/stops/H2ca103c", "https://tec.openplanner.team/stops/H2ca116b"], ["https://tec.openplanner.team/stops/LENecol2", "https://tec.openplanner.team/stops/LENmc--2"], ["https://tec.openplanner.team/stops/LeLbutg4", "https://tec.openplanner.team/stops/LeLdorf2"], ["https://tec.openplanner.team/stops/LGegrun2", "https://tec.openplanner.team/stops/LGeschr2"], ["https://tec.openplanner.team/stops/Lhr4ave1", "https://tec.openplanner.team/stops/LOUchen2"], ["https://tec.openplanner.team/stops/H2re166b", "https://tec.openplanner.team/stops/H3bi106b"], ["https://tec.openplanner.team/stops/X734acb", "https://tec.openplanner.team/stops/X734adb"], ["https://tec.openplanner.team/stops/LROhael1", "https://tec.openplanner.team/stops/LWargeu2"], ["https://tec.openplanner.team/stops/Cjupn4", "https://tec.openplanner.team/stops/Clomakr2"], ["https://tec.openplanner.team/stops/N202ahb", "https://tec.openplanner.team/stops/N202aib"], ["https://tec.openplanner.team/stops/LwLfuss1", "https://tec.openplanner.team/stops/LwLprum2"], ["https://tec.openplanner.team/stops/Bnivind2", "https://tec.openplanner.team/stops/Bnivrec2"], ["https://tec.openplanner.team/stops/Bwspjon1", "https://tec.openplanner.team/stops/Bwspspa1"], ["https://tec.openplanner.team/stops/Bbgeegl1", "https://tec.openplanner.team/stops/Bwavrij2"], ["https://tec.openplanner.team/stops/N218afa", "https://tec.openplanner.team/stops/N337aea"], ["https://tec.openplanner.team/stops/LeLgrie1", "https://tec.openplanner.team/stops/LeLzost2"], ["https://tec.openplanner.team/stops/Lagkink1", "https://tec.openplanner.team/stops/Lagvall2"], ["https://tec.openplanner.team/stops/X660aba", "https://tec.openplanner.team/stops/X661akb"], ["https://tec.openplanner.team/stops/Blkbavo2", "https://tec.openplanner.team/stops/Blkbbeu2"], ["https://tec.openplanner.team/stops/N338afa", "https://tec.openplanner.team/stops/N387abb"], ["https://tec.openplanner.team/stops/Cjugill1", "https://tec.openplanner.team/stops/Cjugill4"], ["https://tec.openplanner.team/stops/Lvefran1", "https://tec.openplanner.team/stops/Lvegc--5"], ["https://tec.openplanner.team/stops/H1ms299a", "https://tec.openplanner.team/stops/H1ms314b"], ["https://tec.openplanner.team/stops/Bbchboi1", "https://tec.openplanner.team/stops/Bwaucig2"], ["https://tec.openplanner.team/stops/Bhercsj2", "https://tec.openplanner.team/stops/Bpiesta1"], ["https://tec.openplanner.team/stops/H1br122a", "https://tec.openplanner.team/stops/H1br126b"], ["https://tec.openplanner.team/stops/Cfrfede2", "https://tec.openplanner.team/stops/Cvpsncb2"], ["https://tec.openplanner.team/stops/LBIpost1", "https://tec.openplanner.team/stops/Lghhaut2"], ["https://tec.openplanner.team/stops/H1ca105a", "https://tec.openplanner.team/stops/H1mj125b"], ["https://tec.openplanner.team/stops/H2fa100b", "https://tec.openplanner.team/stops/H2fa102b"], ["https://tec.openplanner.team/stops/LBEfagn2", "https://tec.openplanner.team/stops/LNipre-2"], ["https://tec.openplanner.team/stops/H1el133b", "https://tec.openplanner.team/stops/H1el136a"], ["https://tec.openplanner.team/stops/H1bo101b", "https://tec.openplanner.team/stops/H1bo111b"], ["https://tec.openplanner.team/stops/X823afc", "https://tec.openplanner.team/stops/X823afd"], ["https://tec.openplanner.team/stops/X661axc", "https://tec.openplanner.team/stops/X817aca"], ["https://tec.openplanner.team/stops/H1ho137a", "https://tec.openplanner.team/stops/H1ho143c"], ["https://tec.openplanner.team/stops/N525aca", "https://tec.openplanner.team/stops/N525ajb"], ["https://tec.openplanner.team/stops/Btstbes1", "https://tec.openplanner.team/stops/Btstcar3"], ["https://tec.openplanner.team/stops/Btubind1", "https://tec.openplanner.team/stops/Btubsca1"], ["https://tec.openplanner.team/stops/LSubass1", "https://tec.openplanner.team/stops/LSubass2"], ["https://tec.openplanner.team/stops/N425agb", "https://tec.openplanner.team/stops/N425ahb"], ["https://tec.openplanner.team/stops/X907aba", "https://tec.openplanner.team/stops/X907abb"], ["https://tec.openplanner.team/stops/H1fl138b", "https://tec.openplanner.team/stops/H1lb134b"], ["https://tec.openplanner.team/stops/H2ca112b", "https://tec.openplanner.team/stops/H2ch107b"], ["https://tec.openplanner.team/stops/X734aab", "https://tec.openplanner.team/stops/X735aaa"], ["https://tec.openplanner.team/stops/Bnivn972", "https://tec.openplanner.team/stops/Bthivil3"], ["https://tec.openplanner.team/stops/X898aaa", "https://tec.openplanner.team/stops/X898aba"], ["https://tec.openplanner.team/stops/X783ada", "https://tec.openplanner.team/stops/X783adb"], ["https://tec.openplanner.team/stops/H4ce100b", "https://tec.openplanner.team/stops/H4mx115b"], ["https://tec.openplanner.team/stops/X390ala", "https://tec.openplanner.team/stops/X390anb"], ["https://tec.openplanner.team/stops/Blemkap1", "https://tec.openplanner.team/stops/Btubbai1"], ["https://tec.openplanner.team/stops/X818aqa", "https://tec.openplanner.team/stops/X818aqb"], ["https://tec.openplanner.team/stops/LHNgend1", "https://tec.openplanner.team/stops/LHNgend2"], ["https://tec.openplanner.team/stops/Crarmas2", "https://tec.openplanner.team/stops/Cravign1"], ["https://tec.openplanner.team/stops/LkEfrie1", "https://tec.openplanner.team/stops/LkEheyg1"], ["https://tec.openplanner.team/stops/X612aba", "https://tec.openplanner.team/stops/X612ada"], ["https://tec.openplanner.team/stops/LBahaut2", "https://tec.openplanner.team/stops/LTAairi2"], ["https://tec.openplanner.team/stops/X371adb", "https://tec.openplanner.team/stops/X371afa"], ["https://tec.openplanner.team/stops/X901boa", "https://tec.openplanner.team/stops/X901bsa"], ["https://tec.openplanner.team/stops/Lagcler2", "https://tec.openplanner.team/stops/Laggare2"], ["https://tec.openplanner.team/stops/Brixbai1", "https://tec.openplanner.team/stops/Brixblh3"], ["https://tec.openplanner.team/stops/N170aba", "https://tec.openplanner.team/stops/NC14aba"], ["https://tec.openplanner.team/stops/Bhalomo1", "https://tec.openplanner.team/stops/Bhalwat1"], ["https://tec.openplanner.team/stops/Cdasama1", "https://tec.openplanner.team/stops/CMlpla1"], ["https://tec.openplanner.team/stops/Bhantui1", "https://tec.openplanner.team/stops/Bthsvil1"], ["https://tec.openplanner.team/stops/N241aab", "https://tec.openplanner.team/stops/N270adb"], ["https://tec.openplanner.team/stops/X719aab", "https://tec.openplanner.team/stops/X719afb"], ["https://tec.openplanner.team/stops/N501blb", "https://tec.openplanner.team/stops/N501lqa"], ["https://tec.openplanner.team/stops/N207afb", "https://tec.openplanner.team/stops/N209ala"], ["https://tec.openplanner.team/stops/LAMdelh3", "https://tec.openplanner.team/stops/LAMhopi1"], ["https://tec.openplanner.team/stops/X654aga", "https://tec.openplanner.team/stops/X654agb"], ["https://tec.openplanner.team/stops/Candett1", "https://tec.openplanner.team/stops/H1bi103b"], ["https://tec.openplanner.team/stops/N390ada", "https://tec.openplanner.team/stops/N390aea"], ["https://tec.openplanner.team/stops/H1ol144a", "https://tec.openplanner.team/stops/H1ol145a"], ["https://tec.openplanner.team/stops/N501ixd", "https://tec.openplanner.team/stops/N521ahb"], ["https://tec.openplanner.team/stops/Bwanwar1", "https://tec.openplanner.team/stops/Bwanwar2"], ["https://tec.openplanner.team/stops/Bitrhou1", "https://tec.openplanner.team/stops/Bitrmde1"], ["https://tec.openplanner.team/stops/H1ry135c", "https://tec.openplanner.team/stops/H1ry136b"], ["https://tec.openplanner.team/stops/X771anb", "https://tec.openplanner.team/stops/X773ana"], ["https://tec.openplanner.team/stops/H1em110b", "https://tec.openplanner.team/stops/H1em111b"], ["https://tec.openplanner.team/stops/Cgpauln1", "https://tec.openplanner.team/stops/Cgpchen1"], ["https://tec.openplanner.team/stops/Cgdberl1", "https://tec.openplanner.team/stops/Cgdfras2"], ["https://tec.openplanner.team/stops/N571ada", "https://tec.openplanner.team/stops/N573aab"], ["https://tec.openplanner.team/stops/N522ahb", "https://tec.openplanner.team/stops/N522ana"], ["https://tec.openplanner.team/stops/X749aaa", "https://tec.openplanner.team/stops/X749afa"], ["https://tec.openplanner.team/stops/H1gc122a", "https://tec.openplanner.team/stops/H1gc123b"], ["https://tec.openplanner.team/stops/X760ada", "https://tec.openplanner.team/stops/X760aga"], ["https://tec.openplanner.team/stops/X716acb", "https://tec.openplanner.team/stops/X734abb"], ["https://tec.openplanner.team/stops/LeYberl1", "https://tec.openplanner.team/stops/LrApont1"], ["https://tec.openplanner.team/stops/Bcer4br2", "https://tec.openplanner.team/stops/Bcer4br3"], ["https://tec.openplanner.team/stops/N523aba", "https://tec.openplanner.team/stops/N523abb"], ["https://tec.openplanner.team/stops/X512abb", "https://tec.openplanner.team/stops/X595aad"], ["https://tec.openplanner.team/stops/X754ama", "https://tec.openplanner.team/stops/X754amb"], ["https://tec.openplanner.team/stops/Bhenfla2", "https://tec.openplanner.team/stops/Brebcgi1"], ["https://tec.openplanner.team/stops/LAMhaut1", "https://tec.openplanner.team/stops/LFlpark*"], ["https://tec.openplanner.team/stops/Bnstgar1", "https://tec.openplanner.team/stops/H2na131a"], ["https://tec.openplanner.team/stops/Bhmmcha2", "https://tec.openplanner.team/stops/Bndbnod2"], ["https://tec.openplanner.team/stops/N501evb", "https://tec.openplanner.team/stops/N501kfb"], ["https://tec.openplanner.team/stops/N501cmb", "https://tec.openplanner.team/stops/N501ena"], ["https://tec.openplanner.team/stops/LMipoti2", "https://tec.openplanner.team/stops/LMisour1"], ["https://tec.openplanner.team/stops/N121aha", "https://tec.openplanner.team/stops/N121aia"], ["https://tec.openplanner.team/stops/X664ama", "https://tec.openplanner.team/stops/X664amc"], ["https://tec.openplanner.team/stops/H1ms281a", "https://tec.openplanner.team/stops/H1ms309a"], ["https://tec.openplanner.team/stops/Cgyblob2", "https://tec.openplanner.team/stops/Cgynuto2"], ["https://tec.openplanner.team/stops/N501gpa", "https://tec.openplanner.team/stops/N501gpc"], ["https://tec.openplanner.team/stops/X660aib", "https://tec.openplanner.team/stops/X672aga"], ["https://tec.openplanner.team/stops/Bcrnncb2", "https://tec.openplanner.team/stops/Bcrnsge1"], ["https://tec.openplanner.team/stops/N151aaa", "https://tec.openplanner.team/stops/N151aia"], ["https://tec.openplanner.team/stops/N163aab", "https://tec.openplanner.team/stops/N569aaa"], ["https://tec.openplanner.team/stops/LAibego1", "https://tec.openplanner.team/stops/Lccaigr2"], ["https://tec.openplanner.team/stops/H1fr111b", "https://tec.openplanner.team/stops/H1ge115b"], ["https://tec.openplanner.team/stops/LBahaut1", "https://tec.openplanner.team/stops/LTHmont1"], ["https://tec.openplanner.team/stops/X650aja", "https://tec.openplanner.team/stops/X650ajb"], ["https://tec.openplanner.team/stops/N145ada", "https://tec.openplanner.team/stops/N149aca"], ["https://tec.openplanner.team/stops/Bgrhche2", "https://tec.openplanner.team/stops/NB33aeb"], ["https://tec.openplanner.team/stops/Lanc14v1", "https://tec.openplanner.team/stops/Lanrask1"], ["https://tec.openplanner.team/stops/Brebrog2", "https://tec.openplanner.team/stops/H2pr119b"], ["https://tec.openplanner.team/stops/N505aha", "https://tec.openplanner.team/stops/N505anb"], ["https://tec.openplanner.team/stops/N103acc", "https://tec.openplanner.team/stops/N131aea"], ["https://tec.openplanner.team/stops/Cauushm1", "https://tec.openplanner.team/stops/Cauwauq1"], ["https://tec.openplanner.team/stops/N531alb", "https://tec.openplanner.team/stops/N531aua"], ["https://tec.openplanner.team/stops/X786aha", "https://tec.openplanner.team/stops/X786ahb"], ["https://tec.openplanner.team/stops/Cchdelf2", "https://tec.openplanner.team/stops/Cchicet1"], ["https://tec.openplanner.team/stops/Ljucrah1", "https://tec.openplanner.team/stops/Ljucrah2"], ["https://tec.openplanner.team/stops/LSHfief1", "https://tec.openplanner.team/stops/LSHneuv1"], ["https://tec.openplanner.team/stops/H4hu120a", "https://tec.openplanner.team/stops/H4hu121a"], ["https://tec.openplanner.team/stops/X801bwb", "https://tec.openplanner.team/stops/X802aya"], ["https://tec.openplanner.team/stops/Bglitro1", "https://tec.openplanner.team/stops/Bglitro3"], ["https://tec.openplanner.team/stops/H1bu137b", "https://tec.openplanner.team/stops/H3bi113a"], ["https://tec.openplanner.team/stops/H2ch101b", "https://tec.openplanner.team/stops/H2ch109b"], ["https://tec.openplanner.team/stops/Bbcocvb2", "https://tec.openplanner.team/stops/H2ec110b"], ["https://tec.openplanner.team/stops/Llgnaes1", "https://tec.openplanner.team/stops/Llgverg2"], ["https://tec.openplanner.team/stops/Btsllec1", "https://tec.openplanner.team/stops/Btsllec2"], ["https://tec.openplanner.team/stops/Cthathe2", "https://tec.openplanner.team/stops/Cthathe4"], ["https://tec.openplanner.team/stops/X824aea", "https://tec.openplanner.team/stops/X824agb"], ["https://tec.openplanner.team/stops/H4ma398b", "https://tec.openplanner.team/stops/H4ma420a"], ["https://tec.openplanner.team/stops/Cjulamb3", "https://tec.openplanner.team/stops/Cjulamb4"], ["https://tec.openplanner.team/stops/H1er105a", "https://tec.openplanner.team/stops/H1er113a"], ["https://tec.openplanner.team/stops/N874anb", "https://tec.openplanner.team/stops/X874apa"], ["https://tec.openplanner.team/stops/N212ada", "https://tec.openplanner.team/stops/N213abb"], ["https://tec.openplanner.team/stops/Bvirhsa2", "https://tec.openplanner.team/stops/Bvirrbo2"], ["https://tec.openplanner.team/stops/Cbbjfeu2", "https://tec.openplanner.team/stops/Cerrver4"], ["https://tec.openplanner.team/stops/X731aka", "https://tec.openplanner.team/stops/X731akb"], ["https://tec.openplanner.team/stops/Cctvill1", "https://tec.openplanner.team/stops/Cctvill2"], ["https://tec.openplanner.team/stops/LCvneuv6", "https://tec.openplanner.team/stops/LCvoufn2"], ["https://tec.openplanner.team/stops/H4mv195a", "https://tec.openplanner.team/stops/H4mv197b"], ["https://tec.openplanner.team/stops/Bneedia1", "https://tec.openplanner.team/stops/Bneedia2"], ["https://tec.openplanner.team/stops/X763aab", "https://tec.openplanner.team/stops/X765afb"], ["https://tec.openplanner.team/stops/X822ajb", "https://tec.openplanner.team/stops/X836ajb"], ["https://tec.openplanner.team/stops/LmLbeil1", "https://tec.openplanner.team/stops/LwMzoll1"], ["https://tec.openplanner.team/stops/LCHgele2", "https://tec.openplanner.team/stops/Lprmerc*"], ["https://tec.openplanner.team/stops/N232ana", "https://tec.openplanner.team/stops/N232cca"], ["https://tec.openplanner.team/stops/N205aca", "https://tec.openplanner.team/stops/N220ada"], ["https://tec.openplanner.team/stops/LTPcarr2", "https://tec.openplanner.team/stops/LTPsalm1"], ["https://tec.openplanner.team/stops/Llgcadr4", "https://tec.openplanner.team/stops/LlgLAMB7"], ["https://tec.openplanner.team/stops/X870aaa", "https://tec.openplanner.team/stops/X870aia"], ["https://tec.openplanner.team/stops/N874amc", "https://tec.openplanner.team/stops/N874anb"], ["https://tec.openplanner.team/stops/H4bo118a", "https://tec.openplanner.team/stops/H4bo118c"], ["https://tec.openplanner.team/stops/H2me116a", "https://tec.openplanner.team/stops/H2me117a"], ["https://tec.openplanner.team/stops/LVnetan1", "https://tec.openplanner.team/stops/LVnourt1"], ["https://tec.openplanner.team/stops/H4do107c", "https://tec.openplanner.team/stops/H4do202b"], ["https://tec.openplanner.team/stops/Lanclon2", "https://tec.openplanner.team/stops/Llglys-2"], ["https://tec.openplanner.team/stops/N501etc", "https://tec.openplanner.team/stops/N501kba"], ["https://tec.openplanner.team/stops/Bgemkal1", "https://tec.openplanner.team/stops/Bgemkal2"], ["https://tec.openplanner.team/stops/N577ada", "https://tec.openplanner.team/stops/N577aea"], ["https://tec.openplanner.team/stops/N562bqa", "https://tec.openplanner.team/stops/N562bsb"], ["https://tec.openplanner.team/stops/Lvelobe1", "https://tec.openplanner.team/stops/Lvelobe2"], ["https://tec.openplanner.team/stops/H1gg114b", "https://tec.openplanner.team/stops/H1gg115a"], ["https://tec.openplanner.team/stops/Bwatmgo4", "https://tec.openplanner.team/stops/Bwatsan2"], ["https://tec.openplanner.team/stops/Cnabult3", "https://tec.openplanner.team/stops/NC14afa"], ["https://tec.openplanner.team/stops/X897ama", "https://tec.openplanner.team/stops/X897amb"], ["https://tec.openplanner.team/stops/N508ajd", "https://tec.openplanner.team/stops/N508apb"], ["https://tec.openplanner.team/stops/Livrame2", "https://tec.openplanner.team/stops/LRacime2"], ["https://tec.openplanner.team/stops/H2bh106a", "https://tec.openplanner.team/stops/H2bh114a"], ["https://tec.openplanner.team/stops/X766aaa", "https://tec.openplanner.team/stops/X766aab"], ["https://tec.openplanner.team/stops/N506aab", "https://tec.openplanner.team/stops/N506bwa"], ["https://tec.openplanner.team/stops/N331aab", "https://tec.openplanner.team/stops/N331afb"], ["https://tec.openplanner.team/stops/LJAmari2", "https://tec.openplanner.team/stops/LMechpl1"], ["https://tec.openplanner.team/stops/X637aeb", "https://tec.openplanner.team/stops/X637agd"], ["https://tec.openplanner.team/stops/Cjuepee1", "https://tec.openplanner.team/stops/Cjutrou1"], ["https://tec.openplanner.team/stops/LHMgulp1", "https://tec.openplanner.team/stops/LHMparq2"], ["https://tec.openplanner.team/stops/N515afa", "https://tec.openplanner.team/stops/NR27aaa"], ["https://tec.openplanner.team/stops/H4er122b", "https://tec.openplanner.team/stops/H4ty339b"], ["https://tec.openplanner.team/stops/Lhragri1", "https://tec.openplanner.team/stops/Lhrbrou1"], ["https://tec.openplanner.team/stops/N501gdb", "https://tec.openplanner.team/stops/N501gkb"], ["https://tec.openplanner.team/stops/LSGcent1", "https://tec.openplanner.team/stops/LSGcent2"], ["https://tec.openplanner.team/stops/N323acb", "https://tec.openplanner.team/stops/N894ada"], ["https://tec.openplanner.team/stops/H4av100b", "https://tec.openplanner.team/stops/H4ss156b"], ["https://tec.openplanner.team/stops/Berngrt2", "https://tec.openplanner.team/stops/Bwspmon2"], ["https://tec.openplanner.team/stops/N124aba", "https://tec.openplanner.team/stops/N124aca"], ["https://tec.openplanner.team/stops/H4bo179a", "https://tec.openplanner.team/stops/H4bo179b"], ["https://tec.openplanner.team/stops/H1te178a", "https://tec.openplanner.team/stops/H1te179b"], ["https://tec.openplanner.team/stops/H5st161b", "https://tec.openplanner.team/stops/H5st163a"], ["https://tec.openplanner.team/stops/H4li178a", "https://tec.openplanner.team/stops/H4mv197b"], ["https://tec.openplanner.team/stops/N501crb", "https://tec.openplanner.team/stops/N501csa"], ["https://tec.openplanner.team/stops/Lsechan2", "https://tec.openplanner.team/stops/Lselimi1"], ["https://tec.openplanner.team/stops/Cvp3til1", "https://tec.openplanner.team/stops/Cvp3til5"], ["https://tec.openplanner.team/stops/X790agb", "https://tec.openplanner.team/stops/X790aha"], ["https://tec.openplanner.team/stops/LHUcomp2", "https://tec.openplanner.team/stops/LHUfali3"], ["https://tec.openplanner.team/stops/LAmab752", "https://tec.openplanner.team/stops/LAmvent1"], ["https://tec.openplanner.team/stops/N524afb", "https://tec.openplanner.team/stops/N524aha"], ["https://tec.openplanner.team/stops/X623aja", "https://tec.openplanner.team/stops/X623ajb"], ["https://tec.openplanner.team/stops/H4ea130b", "https://tec.openplanner.team/stops/H4ea134a"], ["https://tec.openplanner.team/stops/LBafagn2", "https://tec.openplanner.team/stops/LLUcdoy1"], ["https://tec.openplanner.team/stops/H4ty313b", "https://tec.openplanner.team/stops/H4ty344b"], ["https://tec.openplanner.team/stops/X801cia", "https://tec.openplanner.team/stops/X836ada"], ["https://tec.openplanner.team/stops/H4gu110a", "https://tec.openplanner.team/stops/H4ta134a"], ["https://tec.openplanner.team/stops/N501ixc", "https://tec.openplanner.team/stops/N501jbb"], ["https://tec.openplanner.team/stops/H4rc234a", "https://tec.openplanner.team/stops/H4rc234c"], ["https://tec.openplanner.team/stops/X664aja", "https://tec.openplanner.team/stops/X664ata"], ["https://tec.openplanner.team/stops/Caicalv2", "https://tec.openplanner.team/stops/Cprsapv1"], ["https://tec.openplanner.team/stops/N254afb", "https://tec.openplanner.team/stops/N254agb"], ["https://tec.openplanner.team/stops/X717aba", "https://tec.openplanner.team/stops/X717abb"], ["https://tec.openplanner.team/stops/H1bs111a", "https://tec.openplanner.team/stops/H1bs112a"], ["https://tec.openplanner.team/stops/N340ada", "https://tec.openplanner.team/stops/N340aga"], ["https://tec.openplanner.team/stops/LRMeg--1", "https://tec.openplanner.team/stops/X595aca"], ["https://tec.openplanner.team/stops/Bwavfbe1", "https://tec.openplanner.team/stops/Bwavfbe2"], ["https://tec.openplanner.team/stops/N509ata", "https://tec.openplanner.team/stops/N509atb"], ["https://tec.openplanner.team/stops/X576aea", "https://tec.openplanner.team/stops/X576ahb"], ["https://tec.openplanner.team/stops/LCEboll2", "https://tec.openplanner.team/stops/LCEcent1"], ["https://tec.openplanner.team/stops/H2hg265b", "https://tec.openplanner.team/stops/H2hg270a"], ["https://tec.openplanner.team/stops/H4ir165b", "https://tec.openplanner.team/stops/H4ir166a"], ["https://tec.openplanner.team/stops/LHEcruc1", "https://tec.openplanner.team/stops/LHEvign1"], ["https://tec.openplanner.team/stops/N544acb", "https://tec.openplanner.team/stops/N544aea"], ["https://tec.openplanner.team/stops/Bwatb4s1", "https://tec.openplanner.team/stops/Bwatcpr1"], ["https://tec.openplanner.team/stops/Bwatmsj2", "https://tec.openplanner.team/stops/Bwatpai1"], ["https://tec.openplanner.team/stops/LBXhacb2", "https://tec.openplanner.team/stops/LMovieu1"], ["https://tec.openplanner.team/stops/H4fr142a", "https://tec.openplanner.team/stops/H4ka392a"], ["https://tec.openplanner.team/stops/Louaout2", "https://tec.openplanner.team/stops/Lstvill2"], ["https://tec.openplanner.team/stops/N501cla", "https://tec.openplanner.team/stops/N535aaa"], ["https://tec.openplanner.team/stops/LWEcite2", "https://tec.openplanner.team/stops/LWEeg--1"], ["https://tec.openplanner.team/stops/H1eu103a", "https://tec.openplanner.team/stops/H1eu104b"], ["https://tec.openplanner.team/stops/N104aad", "https://tec.openplanner.team/stops/N118ava"], ["https://tec.openplanner.team/stops/X641asa", "https://tec.openplanner.team/stops/X641azb"], ["https://tec.openplanner.team/stops/N425aea", "https://tec.openplanner.team/stops/N426ada"], ["https://tec.openplanner.team/stops/H3go101b", "https://tec.openplanner.team/stops/H3go104b"], ["https://tec.openplanner.team/stops/Bdvminc1", "https://tec.openplanner.team/stops/Bdvmtve2"], ["https://tec.openplanner.team/stops/Bbsicea2", "https://tec.openplanner.team/stops/Bwaunop1"], ["https://tec.openplanner.team/stops/Bgnvbsi1", "https://tec.openplanner.team/stops/Bgnvgar1"], ["https://tec.openplanner.team/stops/LGrfont1", "https://tec.openplanner.team/stops/LLGec--*"], ["https://tec.openplanner.team/stops/Btubbot2", "https://tec.openplanner.team/stops/Btubren2"], ["https://tec.openplanner.team/stops/Lfhgare1", "https://tec.openplanner.team/stops/Lfhnrou2"], ["https://tec.openplanner.team/stops/LMAcime1", "https://tec.openplanner.team/stops/LMApl--2"], ["https://tec.openplanner.team/stops/X613aab", "https://tec.openplanner.team/stops/X623aab"], ["https://tec.openplanner.team/stops/LESchac1", "https://tec.openplanner.team/stops/LPOwaut1"], ["https://tec.openplanner.team/stops/H4gr112a", "https://tec.openplanner.team/stops/H4ld124b"], ["https://tec.openplanner.team/stops/X902aba", "https://tec.openplanner.team/stops/X999aqb"], ["https://tec.openplanner.team/stops/Cthpibl1", "https://tec.openplanner.team/stops/Cthpibl2"], ["https://tec.openplanner.team/stops/X639aea", "https://tec.openplanner.team/stops/X639aub"], ["https://tec.openplanner.team/stops/H1pd143a", "https://tec.openplanner.team/stops/H1pd144b"], ["https://tec.openplanner.team/stops/Baudvdu2", "https://tec.openplanner.team/stops/Baudwav2"], ["https://tec.openplanner.team/stops/LHmferm1", "https://tec.openplanner.team/stops/LRcjard1"], ["https://tec.openplanner.team/stops/H1je213b", "https://tec.openplanner.team/stops/H1je225b"], ["https://tec.openplanner.team/stops/H2ca100b", "https://tec.openplanner.team/stops/H2mo127d"], ["https://tec.openplanner.team/stops/X806aab", "https://tec.openplanner.team/stops/X850aob"], ["https://tec.openplanner.team/stops/LeLherz1", "https://tec.openplanner.team/stops/LeLherz2"], ["https://tec.openplanner.team/stops/X784agb", "https://tec.openplanner.team/stops/X784ahb"], ["https://tec.openplanner.team/stops/Ljuauto1", "https://tec.openplanner.team/stops/Lsweg--1"], ["https://tec.openplanner.team/stops/X774ada", "https://tec.openplanner.team/stops/X774aeb"], ["https://tec.openplanner.team/stops/Llghaut1", "https://tec.openplanner.team/stops/Llglefe1"], ["https://tec.openplanner.team/stops/Ceregl1", "https://tec.openplanner.team/stops/Cerrver3"], ["https://tec.openplanner.team/stops/Blimbet3", "https://tec.openplanner.team/stops/Blimvcg2"], ["https://tec.openplanner.team/stops/LDpulve2", "https://tec.openplanner.team/stops/LDpzol-2"], ["https://tec.openplanner.team/stops/Cdamarc1", "https://tec.openplanner.team/stops/Cdaviol2"], ["https://tec.openplanner.team/stops/Bbiemor2", "https://tec.openplanner.team/stops/Bgzdpco2"], ["https://tec.openplanner.team/stops/X746agc", "https://tec.openplanner.team/stops/X746ahd"], ["https://tec.openplanner.team/stops/Bwlhcsr1", "https://tec.openplanner.team/stops/Bwlhswc1"], ["https://tec.openplanner.team/stops/LHUathe1", "https://tec.openplanner.team/stops/LHUomni2"], ["https://tec.openplanner.team/stops/Cbfstry2", "https://tec.openplanner.team/stops/NC02aba"], ["https://tec.openplanner.team/stops/NL76ala", "https://tec.openplanner.team/stops/NL76alb"], ["https://tec.openplanner.team/stops/Bnivhut1", "https://tec.openplanner.team/stops/Bnivhut2"], ["https://tec.openplanner.team/stops/X818ahb", "https://tec.openplanner.team/stops/X822agb"], ["https://tec.openplanner.team/stops/Bcrnrpc1", "https://tec.openplanner.team/stops/Bernpla1"], ["https://tec.openplanner.team/stops/H4bx167b", "https://tec.openplanner.team/stops/H4rm110a"], ["https://tec.openplanner.team/stops/LJvmale1", "https://tec.openplanner.team/stops/X781aaa"], ["https://tec.openplanner.team/stops/LMalune3", "https://tec.openplanner.team/stops/LMawilh4"], ["https://tec.openplanner.team/stops/LCn4---2", "https://tec.openplanner.team/stops/LSEec--1"], ["https://tec.openplanner.team/stops/LSEquar1", "https://tec.openplanner.team/stops/LSpshin2"], ["https://tec.openplanner.team/stops/Llgrame1", "https://tec.openplanner.team/stops/Llgwiar1"], ["https://tec.openplanner.team/stops/H1le128a", "https://tec.openplanner.team/stops/H1le129a"], ["https://tec.openplanner.team/stops/N534boh", "https://tec.openplanner.team/stops/N534bua"], ["https://tec.openplanner.team/stops/X747aha", "https://tec.openplanner.team/stops/X747aja"], ["https://tec.openplanner.team/stops/H4os217b", "https://tec.openplanner.team/stops/H4os222a"], ["https://tec.openplanner.team/stops/Cmqbasv2", "https://tec.openplanner.team/stops/X611aea"], ["https://tec.openplanner.team/stops/LWEbruy2", "https://tec.openplanner.team/stops/LWEwilc1"], ["https://tec.openplanner.team/stops/NC14aod", "https://tec.openplanner.team/stops/NC14aoe"], ["https://tec.openplanner.team/stops/Bcrncce1", "https://tec.openplanner.team/stops/Bcrncor2"], ["https://tec.openplanner.team/stops/LFArela5", "https://tec.openplanner.team/stops/LWDcime1"], ["https://tec.openplanner.team/stops/H4bh102d", "https://tec.openplanner.team/stops/H4bh104b"], ["https://tec.openplanner.team/stops/N101apa", "https://tec.openplanner.team/stops/N151aab"], ["https://tec.openplanner.team/stops/X364aba", "https://tec.openplanner.team/stops/X364abb"], ["https://tec.openplanner.team/stops/Bmlnsms1", "https://tec.openplanner.team/stops/Bmlnsms2"], ["https://tec.openplanner.team/stops/Bpieh171", "https://tec.openplanner.team/stops/Bpieh172"], ["https://tec.openplanner.team/stops/Cobbuze1", "https://tec.openplanner.team/stops/Cobmara1"], ["https://tec.openplanner.team/stops/H5rx110b", "https://tec.openplanner.team/stops/H5rx128a"], ["https://tec.openplanner.team/stops/LjeGRPMD", "https://tec.openplanner.team/stops/LjeGRPME"], ["https://tec.openplanner.team/stops/Cblsall1", "https://tec.openplanner.team/stops/Cslbarb1"], ["https://tec.openplanner.team/stops/X926aaa", "https://tec.openplanner.team/stops/X947aeb"], ["https://tec.openplanner.team/stops/Bnilpie1", "https://tec.openplanner.team/stops/Bwlhpec2"], ["https://tec.openplanner.team/stops/X633ahb", "https://tec.openplanner.team/stops/X633ala"], ["https://tec.openplanner.team/stops/LHthest1", "https://tec.openplanner.team/stops/LJAmari2"], ["https://tec.openplanner.team/stops/LVEmoul1", "https://tec.openplanner.team/stops/LYegeor2"], ["https://tec.openplanner.team/stops/LCpegli1", "https://tec.openplanner.team/stops/LSPvigi2"], ["https://tec.openplanner.team/stops/Blaspch1", "https://tec.openplanner.team/stops/Blasvil3"], ["https://tec.openplanner.team/stops/LCleg--1", "https://tec.openplanner.team/stops/LELchap2"], ["https://tec.openplanner.team/stops/H4me211a", "https://tec.openplanner.team/stops/H4me211c"], ["https://tec.openplanner.team/stops/X812ava", "https://tec.openplanner.team/stops/X812bab"], ["https://tec.openplanner.team/stops/Bndbdra1", "https://tec.openplanner.team/stops/Bndbnod1"], ["https://tec.openplanner.team/stops/X775aia", "https://tec.openplanner.team/stops/X775ajb"], ["https://tec.openplanner.team/stops/LLUvent2", "https://tec.openplanner.team/stops/LLUvent6"], ["https://tec.openplanner.team/stops/H4mv189a", "https://tec.openplanner.team/stops/H4mv189c"], ["https://tec.openplanner.team/stops/LNIec--1", "https://tec.openplanner.team/stops/LSPsauv1"], ["https://tec.openplanner.team/stops/LlgCATH1", "https://tec.openplanner.team/stops/Llgpier1"], ["https://tec.openplanner.team/stops/LMfpeni*", "https://tec.openplanner.team/stops/NL73aaa"], ["https://tec.openplanner.team/stops/LLrgare2", "https://tec.openplanner.team/stops/LSXvill2"], ["https://tec.openplanner.team/stops/Cselait1", "https://tec.openplanner.team/stops/Cvtchap2"], ["https://tec.openplanner.team/stops/N501dva", "https://tec.openplanner.team/stops/N501dvb"], ["https://tec.openplanner.team/stops/LHecime1", "https://tec.openplanner.team/stops/LHemoul2"], ["https://tec.openplanner.team/stops/H1te183a", "https://tec.openplanner.team/stops/H1te187b"], ["https://tec.openplanner.team/stops/Cmlstni1", "https://tec.openplanner.team/stops/Cmlstni2"], ["https://tec.openplanner.team/stops/X224adb", "https://tec.openplanner.team/stops/X224ahb"], ["https://tec.openplanner.team/stops/N244afa", "https://tec.openplanner.team/stops/N244anb"], ["https://tec.openplanner.team/stops/Bbeagae2", "https://tec.openplanner.team/stops/Btiegar2"], ["https://tec.openplanner.team/stops/LAWcorn2", "https://tec.openplanner.team/stops/LAWcorn4"], ["https://tec.openplanner.team/stops/Csobail2", "https://tec.openplanner.team/stops/Csochea1"], ["https://tec.openplanner.team/stops/H4pq119b", "https://tec.openplanner.team/stops/H4sl154a"], ["https://tec.openplanner.team/stops/X882aeb", "https://tec.openplanner.team/stops/X882amb"], ["https://tec.openplanner.team/stops/X601baa", "https://tec.openplanner.team/stops/X601bca"], ["https://tec.openplanner.team/stops/Bhmmcge2", "https://tec.openplanner.team/stops/Bhmmcha1"], ["https://tec.openplanner.team/stops/X749acb", "https://tec.openplanner.team/stops/X749afa"], ["https://tec.openplanner.team/stops/LHUanth1", "https://tec.openplanner.team/stops/LHUlebo1"], ["https://tec.openplanner.team/stops/X879akb", "https://tec.openplanner.team/stops/X879ala"], ["https://tec.openplanner.team/stops/H1fl133c", "https://tec.openplanner.team/stops/H1fl133f"], ["https://tec.openplanner.team/stops/Bwagsta1", "https://tec.openplanner.team/stops/Bwagsta2"], ["https://tec.openplanner.team/stops/N231abb", "https://tec.openplanner.team/stops/N242adc"], ["https://tec.openplanner.team/stops/H4mo150b", "https://tec.openplanner.team/stops/H4mo198a"], ["https://tec.openplanner.team/stops/Lgrbill1", "https://tec.openplanner.team/stops/Lgrcoll2"], ["https://tec.openplanner.team/stops/LBsfer-1", "https://tec.openplanner.team/stops/LBspiet1"], ["https://tec.openplanner.team/stops/Cchdrai1", "https://tec.openplanner.team/stops/CMwate2"], ["https://tec.openplanner.team/stops/N551agb", "https://tec.openplanner.team/stops/N551apa"], ["https://tec.openplanner.team/stops/X601dba", "https://tec.openplanner.team/stops/X601dbb"], ["https://tec.openplanner.team/stops/X641afa", "https://tec.openplanner.team/stops/X641afc"], ["https://tec.openplanner.team/stops/Cgynoir1", "https://tec.openplanner.team/stops/Cgytrie1"], ["https://tec.openplanner.team/stops/Llggill3", "https://tec.openplanner.team/stops/Llggill4"], ["https://tec.openplanner.team/stops/Borblim1", "https://tec.openplanner.team/stops/Borborb2"], ["https://tec.openplanner.team/stops/X788acb", "https://tec.openplanner.team/stops/X788ada"], ["https://tec.openplanner.team/stops/Ljucaba1", "https://tec.openplanner.team/stops/Ljuroch1"], ["https://tec.openplanner.team/stops/H1ht133a", "https://tec.openplanner.team/stops/H1vt194a"], ["https://tec.openplanner.team/stops/X602aoa", "https://tec.openplanner.team/stops/X653aca"], ["https://tec.openplanner.team/stops/X911aia", "https://tec.openplanner.team/stops/X911ajb"], ["https://tec.openplanner.team/stops/LTamoul1", "https://tec.openplanner.team/stops/LTaxhos1"], ["https://tec.openplanner.team/stops/X979afb", "https://tec.openplanner.team/stops/X979aga"], ["https://tec.openplanner.team/stops/LCaalou1", "https://tec.openplanner.team/stops/LCacoop1"], ["https://tec.openplanner.team/stops/LHUlebo1", "https://tec.openplanner.team/stops/LHUlebo2"], ["https://tec.openplanner.team/stops/LHUaveu2", "https://tec.openplanner.team/stops/NL80abb"], ["https://tec.openplanner.team/stops/N542akb", "https://tec.openplanner.team/stops/N542arb"], ["https://tec.openplanner.team/stops/X606abb", "https://tec.openplanner.team/stops/X620ahb"], ["https://tec.openplanner.team/stops/Bgnppra1", "https://tec.openplanner.team/stops/Cgnquer2"], ["https://tec.openplanner.team/stops/LSMchat2", "https://tec.openplanner.team/stops/LSMfroi1"], ["https://tec.openplanner.team/stops/N540aea", "https://tec.openplanner.team/stops/N540aeb"], ["https://tec.openplanner.team/stops/LRmrode1", "https://tec.openplanner.team/stops/LVu40--1"], ["https://tec.openplanner.team/stops/Blpghou1", "https://tec.openplanner.team/stops/Cgnpass1"], ["https://tec.openplanner.team/stops/H1cu119b", "https://tec.openplanner.team/stops/H1cu122a"], ["https://tec.openplanner.team/stops/LETsaiv1", "https://tec.openplanner.team/stops/Lretill2"], ["https://tec.openplanner.team/stops/Bpecsta1", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://tec.openplanner.team/stops/N231aba", "https://tec.openplanner.team/stops/N231afa"], ["https://tec.openplanner.team/stops/LCHgele2", "https://tec.openplanner.team/stops/Ldicorb2"], ["https://tec.openplanner.team/stops/Cbmclar1", "https://tec.openplanner.team/stops/Cbmclar2"], ["https://tec.openplanner.team/stops/Llgjenn2", "https://tec.openplanner.team/stops/Llgjenn3"], ["https://tec.openplanner.team/stops/N229ara", "https://tec.openplanner.team/stops/N229asb"], ["https://tec.openplanner.team/stops/Bmonbor2", "https://tec.openplanner.team/stops/Bnivmon1"], ["https://tec.openplanner.team/stops/Bbeaech1", "https://tec.openplanner.team/stops/Bbeascl1"], ["https://tec.openplanner.team/stops/Lemdieu2", "https://tec.openplanner.team/stops/Lemdupo2"], ["https://tec.openplanner.team/stops/LNAanne1", "https://tec.openplanner.team/stops/LNAplac2"], ["https://tec.openplanner.team/stops/H4mt222b", "https://tec.openplanner.team/stops/H4ru235a"], ["https://tec.openplanner.team/stops/N501fga", "https://tec.openplanner.team/stops/N501mjc"], ["https://tec.openplanner.team/stops/N235aga", "https://tec.openplanner.team/stops/N241aca"], ["https://tec.openplanner.team/stops/X396aca", "https://tec.openplanner.team/stops/X396ada"], ["https://tec.openplanner.team/stops/X661ala", "https://tec.openplanner.team/stops/X817afa"], ["https://tec.openplanner.team/stops/Cjuaero2", "https://tec.openplanner.team/stops/Cjuapca2"], ["https://tec.openplanner.team/stops/Bgoestu1", "https://tec.openplanner.team/stops/Bgoestu2"], ["https://tec.openplanner.team/stops/H4ty313a", "https://tec.openplanner.team/stops/H4ty405b"], ["https://tec.openplanner.team/stops/Bbeabme2", "https://tec.openplanner.team/stops/Bbeaegl2"], ["https://tec.openplanner.team/stops/LBLplac1", "https://tec.openplanner.team/stops/LBLplac2"], ["https://tec.openplanner.team/stops/LBEairp3", "https://tec.openplanner.team/stops/LBEairp4"], ["https://tec.openplanner.team/stops/X910aha", "https://tec.openplanner.team/stops/X910aja"], ["https://tec.openplanner.team/stops/Llg20ao3", "https://tec.openplanner.team/stops/Llgcock2"], ["https://tec.openplanner.team/stops/H1hh111b", "https://tec.openplanner.team/stops/H1hh115a"], ["https://tec.openplanner.team/stops/X604ahb", "https://tec.openplanner.team/stops/X625afb"], ["https://tec.openplanner.team/stops/Cbfgare2", "https://tec.openplanner.team/stops/Cctlimi2"], ["https://tec.openplanner.team/stops/Bitrbvo1", "https://tec.openplanner.team/stops/Bitrsar1"], ["https://tec.openplanner.team/stops/H4mb140a", "https://tec.openplanner.team/stops/H4mb141a"], ["https://tec.openplanner.team/stops/X812aya", "https://tec.openplanner.team/stops/X860aab"], ["https://tec.openplanner.team/stops/Louegla1", "https://tec.openplanner.team/stops/Louoran2"], ["https://tec.openplanner.team/stops/Llgplop2", "https://tec.openplanner.team/stops/Lvtfrai1"], ["https://tec.openplanner.team/stops/X836aja", "https://tec.openplanner.team/stops/X836ajb"], ["https://tec.openplanner.team/stops/Bsmgpla1", "https://tec.openplanner.team/stops/Bsmgpla2"], ["https://tec.openplanner.team/stops/X671aea", "https://tec.openplanner.team/stops/X671afb"], ["https://tec.openplanner.team/stops/LSGcarr2", "https://tec.openplanner.team/stops/LSGeg--3"], ["https://tec.openplanner.team/stops/Barqpla1", "https://tec.openplanner.team/stops/Bfelbri1"], ["https://tec.openplanner.team/stops/LLStrid2", "https://tec.openplanner.team/stops/LLStrid3"], ["https://tec.openplanner.team/stops/X663aga", "https://tec.openplanner.team/stops/X663agb"], ["https://tec.openplanner.team/stops/N522afb", "https://tec.openplanner.team/stops/N522aga"], ["https://tec.openplanner.team/stops/LPT97--1", "https://tec.openplanner.team/stops/LPTgran1"], ["https://tec.openplanner.team/stops/H1th180a", "https://tec.openplanner.team/stops/H1th181a"], ["https://tec.openplanner.team/stops/N528afc", "https://tec.openplanner.team/stops/N551aaa"], ["https://tec.openplanner.team/stops/H1ms267a", "https://tec.openplanner.team/stops/H1ms913a"], ["https://tec.openplanner.team/stops/X756aha", "https://tec.openplanner.team/stops/X756aia"], ["https://tec.openplanner.team/stops/LHHcite1", "https://tec.openplanner.team/stops/LHHtill1"], ["https://tec.openplanner.team/stops/Blemhon2", "https://tec.openplanner.team/stops/Blempuc1"], ["https://tec.openplanner.team/stops/Bottcco2", "https://tec.openplanner.team/stops/Bottgar1"], ["https://tec.openplanner.team/stops/Bgzdgpa2", "https://tec.openplanner.team/stops/Bgzdgst2"], ["https://tec.openplanner.team/stops/N501iob", "https://tec.openplanner.team/stops/N501isa"], ["https://tec.openplanner.team/stops/LFochap1", "https://tec.openplanner.team/stops/LFochap2"], ["https://tec.openplanner.team/stops/H2go114d", "https://tec.openplanner.team/stops/H2go116a"], ["https://tec.openplanner.team/stops/H1ms261a", "https://tec.openplanner.team/stops/H1ms272b"], ["https://tec.openplanner.team/stops/H2sb225a", "https://tec.openplanner.team/stops/H2sb243d"], ["https://tec.openplanner.team/stops/H1le118a", "https://tec.openplanner.team/stops/H1ol143a"], ["https://tec.openplanner.team/stops/Csregli1", "https://tec.openplanner.team/stops/NH01apa"], ["https://tec.openplanner.team/stops/LFOchab1", "https://tec.openplanner.team/stops/LFOchab2"], ["https://tec.openplanner.team/stops/Cciferr2", "https://tec.openplanner.team/stops/Ccivill1"], ["https://tec.openplanner.team/stops/H2hp119b", "https://tec.openplanner.team/stops/H2hp262a"], ["https://tec.openplanner.team/stops/X804bpa", "https://tec.openplanner.team/stops/X804bpb"], ["https://tec.openplanner.team/stops/Lhuchev1", "https://tec.openplanner.team/stops/Lhuchev2"], ["https://tec.openplanner.team/stops/N212afa", "https://tec.openplanner.team/stops/N212akb"], ["https://tec.openplanner.team/stops/H1au101a", "https://tec.openplanner.team/stops/H1mh112a"], ["https://tec.openplanner.team/stops/X982asa", "https://tec.openplanner.team/stops/X982bwa"], ["https://tec.openplanner.team/stops/H4wn125b", "https://tec.openplanner.team/stops/H4wn129b"], ["https://tec.openplanner.team/stops/Bbghsta1", "https://tec.openplanner.team/stops/Bstesar2"], ["https://tec.openplanner.team/stops/LHanest1", "https://tec.openplanner.team/stops/LHarenn1"], ["https://tec.openplanner.team/stops/N585aia", "https://tec.openplanner.team/stops/N585aib"], ["https://tec.openplanner.team/stops/N134aaa", "https://tec.openplanner.team/stops/N134ada"], ["https://tec.openplanner.team/stops/N234aea", "https://tec.openplanner.team/stops/N549aeb"], ["https://tec.openplanner.team/stops/X663ana", "https://tec.openplanner.team/stops/X663aqa"], ["https://tec.openplanner.team/stops/LSceg--2", "https://tec.openplanner.team/stops/LSceg--3"], ["https://tec.openplanner.team/stops/N101aca", "https://tec.openplanner.team/stops/N101acb"], ["https://tec.openplanner.team/stops/LCscarr1", "https://tec.openplanner.team/stops/LCschri2"], ["https://tec.openplanner.team/stops/H4do105a", "https://tec.openplanner.team/stops/H4mo195a"], ["https://tec.openplanner.team/stops/LPRecol1", "https://tec.openplanner.team/stops/LTRfica1"], ["https://tec.openplanner.team/stops/H1hr117a", "https://tec.openplanner.team/stops/H1hr128c"], ["https://tec.openplanner.team/stops/LSzetoi1", "https://tec.openplanner.team/stops/LSzsurl2"], ["https://tec.openplanner.team/stops/Bblaegl2", "https://tec.openplanner.team/stops/Bblasmo2"], ["https://tec.openplanner.team/stops/LBssucr1", "https://tec.openplanner.team/stops/NL72aeb"], ["https://tec.openplanner.team/stops/Bgrhcro2", "https://tec.openplanner.team/stops/Bgrhhot1"], ["https://tec.openplanner.team/stops/Lchorme1", "https://tec.openplanner.team/stops/Lchorme2"], ["https://tec.openplanner.team/stops/LSPmalc1", "https://tec.openplanner.team/stops/LWycabi1"], ["https://tec.openplanner.team/stops/Cmareun1", "https://tec.openplanner.team/stops/Cmareun2"], ["https://tec.openplanner.team/stops/H1ba114c", "https://tec.openplanner.team/stops/H1ba118a"], ["https://tec.openplanner.team/stops/H4ob109a", "https://tec.openplanner.team/stops/H4ob124b"], ["https://tec.openplanner.team/stops/Lsecoll2", "https://tec.openplanner.team/stops/Lsepuit1"], ["https://tec.openplanner.team/stops/N874aja", "https://tec.openplanner.team/stops/N874ajb"], ["https://tec.openplanner.team/stops/LVkchap1", "https://tec.openplanner.team/stops/LVkchap2"], ["https://tec.openplanner.team/stops/X661bba", "https://tec.openplanner.team/stops/X672abb"], ["https://tec.openplanner.team/stops/LWApt--1", "https://tec.openplanner.team/stops/LWAvisi1"], ["https://tec.openplanner.team/stops/LHChoek3", "https://tec.openplanner.team/stops/LHChoek4"], ["https://tec.openplanner.team/stops/LAMhopi3", "https://tec.openplanner.team/stops/LAMjaur2"], ["https://tec.openplanner.team/stops/LBmbara2", "https://tec.openplanner.team/stops/LMRmont2"], ["https://tec.openplanner.team/stops/N531aab", "https://tec.openplanner.team/stops/N531aub"], ["https://tec.openplanner.team/stops/X647aab", "https://tec.openplanner.team/stops/X648aab"], ["https://tec.openplanner.team/stops/LWHmath2", "https://tec.openplanner.team/stops/LWHtrui1"], ["https://tec.openplanner.team/stops/Cdagoss2", "https://tec.openplanner.team/stops/CMprov1"], ["https://tec.openplanner.team/stops/LESfoot2", "https://tec.openplanner.team/stops/LESmont1"], ["https://tec.openplanner.team/stops/LTAchpl1", "https://tec.openplanner.team/stops/LTHmont2"], ["https://tec.openplanner.team/stops/N211ana", "https://tec.openplanner.team/stops/N211bcb"], ["https://tec.openplanner.team/stops/X769apa", "https://tec.openplanner.team/stops/X769apb"], ["https://tec.openplanner.team/stops/N553ama", "https://tec.openplanner.team/stops/N553anb"], ["https://tec.openplanner.team/stops/Ccuhaie1", "https://tec.openplanner.team/stops/Ccuoise2"], ["https://tec.openplanner.team/stops/H4hn115a", "https://tec.openplanner.team/stops/H4jm117c"], ["https://tec.openplanner.team/stops/N520aeb", "https://tec.openplanner.team/stops/N523aca"], ["https://tec.openplanner.team/stops/X730aaa", "https://tec.openplanner.team/stops/X730aab"], ["https://tec.openplanner.team/stops/Cctjust1", "https://tec.openplanner.team/stops/Cctjust2"], ["https://tec.openplanner.team/stops/Buccron2", "https://tec.openplanner.team/stops/Bwbfhip2"], ["https://tec.openplanner.team/stops/N529aca", "https://tec.openplanner.team/stops/N529acb"], ["https://tec.openplanner.team/stops/N519aha", "https://tec.openplanner.team/stops/N519apa"], ["https://tec.openplanner.team/stops/LAYharz1", "https://tec.openplanner.team/stops/LHrrard2"], ["https://tec.openplanner.team/stops/Lcemeta1", "https://tec.openplanner.team/stops/Lcemeta2"], ["https://tec.openplanner.team/stops/Bjaugar5", "https://tec.openplanner.team/stops/Bjaugaz2"], ["https://tec.openplanner.team/stops/Ccohuli2", "https://tec.openplanner.team/stops/Ccostan1"], ["https://tec.openplanner.team/stops/LHHgare1", "https://tec.openplanner.team/stops/LSkrena3"], ["https://tec.openplanner.team/stops/N569aea", "https://tec.openplanner.team/stops/N569afb"], ["https://tec.openplanner.team/stops/H1br120a", "https://tec.openplanner.team/stops/H1ev112a"], ["https://tec.openplanner.team/stops/Bllnhoc2", "https://tec.openplanner.team/stops/Bwavtas2"], ["https://tec.openplanner.team/stops/N311aba", "https://tec.openplanner.team/stops/N311afb"], ["https://tec.openplanner.team/stops/N539aia", "https://tec.openplanner.team/stops/N539apa"], ["https://tec.openplanner.team/stops/N539afb", "https://tec.openplanner.team/stops/N539afc"], ["https://tec.openplanner.team/stops/Bbchmin1", "https://tec.openplanner.team/stops/Bbchmin2"], ["https://tec.openplanner.team/stops/Cgzcour2", "https://tec.openplanner.team/stops/Cgzplac3"], ["https://tec.openplanner.team/stops/Brebgar1", "https://tec.openplanner.team/stops/Brebrha2"], ["https://tec.openplanner.team/stops/H4br111a", "https://tec.openplanner.team/stops/H4pe127b"], ["https://tec.openplanner.team/stops/LaMhe421", "https://tec.openplanner.team/stops/LaMthei2"], ["https://tec.openplanner.team/stops/Lsedese1", "https://tec.openplanner.team/stops/Lseserv1"], ["https://tec.openplanner.team/stops/LBPrueg2", "https://tec.openplanner.team/stops/LSLprov1"], ["https://tec.openplanner.team/stops/LbOdorf1", "https://tec.openplanner.team/stops/LbOhoff1"], ["https://tec.openplanner.team/stops/LeUbell*", "https://tec.openplanner.team/stops/LeUmeie1"], ["https://tec.openplanner.team/stops/Bengvma2", "https://tec.openplanner.team/stops/H1en106a"], ["https://tec.openplanner.team/stops/N537ahb", "https://tec.openplanner.team/stops/N537aja"], ["https://tec.openplanner.team/stops/LrAeife2", "https://tec.openplanner.team/stops/LrAiter2"], ["https://tec.openplanner.team/stops/H4pl122a", "https://tec.openplanner.team/stops/H4pl122b"], ["https://tec.openplanner.team/stops/Cwgplac1", "https://tec.openplanner.team/stops/Cwgplac2"], ["https://tec.openplanner.team/stops/N122aba", "https://tec.openplanner.team/stops/N122acb"], ["https://tec.openplanner.team/stops/Lglvict2", "https://tec.openplanner.team/stops/Llgavoc2"], ["https://tec.openplanner.team/stops/N244ajb", "https://tec.openplanner.team/stops/N244amb"], ["https://tec.openplanner.team/stops/LFabraa2", "https://tec.openplanner.team/stops/LVMfoli2"], ["https://tec.openplanner.team/stops/N501ahb", "https://tec.openplanner.team/stops/N501bub"], ["https://tec.openplanner.team/stops/Ccyfede1", "https://tec.openplanner.team/stops/Cvtegli2"], ["https://tec.openplanner.team/stops/H2lc168a", "https://tec.openplanner.team/stops/H2lc171a"], ["https://tec.openplanner.team/stops/N202aca", "https://tec.openplanner.team/stops/N236aba"], ["https://tec.openplanner.team/stops/H4wi161a", "https://tec.openplanner.team/stops/H5pe139b"], ["https://tec.openplanner.team/stops/LROcent2", "https://tec.openplanner.team/stops/LROrtba1"], ["https://tec.openplanner.team/stops/H1ob328a", "https://tec.openplanner.team/stops/H1sd346a"], ["https://tec.openplanner.team/stops/H2sv218a", "https://tec.openplanner.team/stops/H2sv259a"], ["https://tec.openplanner.team/stops/H4to139a", "https://tec.openplanner.team/stops/H4to139d"], ["https://tec.openplanner.team/stops/Ladandr2", "https://tec.openplanner.team/stops/Ldimeun1"], ["https://tec.openplanner.team/stops/X806acb", "https://tec.openplanner.team/stops/X806ala"], ["https://tec.openplanner.team/stops/Lvtbocl1", "https://tec.openplanner.team/stops/Lvtbocl2"], ["https://tec.openplanner.team/stops/LWalyce1", "https://tec.openplanner.team/stops/LWalyce2"], ["https://tec.openplanner.team/stops/Bhevgar1", "https://tec.openplanner.team/stops/Bhevgro1"], ["https://tec.openplanner.team/stops/Crccano4", "https://tec.openplanner.team/stops/Crcrwas2"], ["https://tec.openplanner.team/stops/N531aua", "https://tec.openplanner.team/stops/N531aub"], ["https://tec.openplanner.team/stops/LLg9---1", "https://tec.openplanner.team/stops/LSMfroi1"], ["https://tec.openplanner.team/stops/H1cd110b", "https://tec.openplanner.team/stops/H1cd113a"], ["https://tec.openplanner.team/stops/Cchdigu4", "https://tec.openplanner.team/stops/Cchoues1"], ["https://tec.openplanner.team/stops/LBNplei1", "https://tec.openplanner.team/stops/LhElont2"], ["https://tec.openplanner.team/stops/Bolgcsa1", "https://tec.openplanner.team/stops/Bolgmpl1"], ["https://tec.openplanner.team/stops/Lrebriq2", "https://tec.openplanner.team/stops/Lrevaul1"], ["https://tec.openplanner.team/stops/LMvgare1", "https://tec.openplanner.team/stops/LMvrabo1"], ["https://tec.openplanner.team/stops/LHehacc1", "https://tec.openplanner.team/stops/LOUbleu2"], ["https://tec.openplanner.team/stops/X773acb", "https://tec.openplanner.team/stops/X773ada"], ["https://tec.openplanner.team/stops/LRmkult1", "https://tec.openplanner.team/stops/LRmmabr1"], ["https://tec.openplanner.team/stops/H1ch102b", "https://tec.openplanner.team/stops/H5ma181b"], ["https://tec.openplanner.team/stops/H4ca120a", "https://tec.openplanner.team/stops/H4ca124a"], ["https://tec.openplanner.team/stops/H2hg157b", "https://tec.openplanner.team/stops/H2hg265b"], ["https://tec.openplanner.team/stops/Bwavgar6", "https://tec.openplanner.team/stops/Bwavmes2"], ["https://tec.openplanner.team/stops/X908aoa", "https://tec.openplanner.team/stops/X908apb"], ["https://tec.openplanner.team/stops/N501eab", "https://tec.openplanner.team/stops/N501epb"], ["https://tec.openplanner.team/stops/LSIters2", "https://tec.openplanner.team/stops/LVApark2"], ["https://tec.openplanner.team/stops/X801apb", "https://tec.openplanner.team/stops/X889abb"], ["https://tec.openplanner.team/stops/H4bd109b", "https://tec.openplanner.team/stops/H4ma411b"], ["https://tec.openplanner.team/stops/X666aja", "https://tec.openplanner.team/stops/X666akb"], ["https://tec.openplanner.team/stops/Lsepcha2", "https://tec.openplanner.team/stops/Lsepcha3"], ["https://tec.openplanner.team/stops/X948ara", "https://tec.openplanner.team/stops/X948arb"], ["https://tec.openplanner.team/stops/N524akb", "https://tec.openplanner.team/stops/N524amb"], ["https://tec.openplanner.team/stops/LmIzent1", "https://tec.openplanner.team/stops/LvAschr2"], ["https://tec.openplanner.team/stops/H4og206a", "https://tec.openplanner.team/stops/H4og212b"], ["https://tec.openplanner.team/stops/LmNha222", "https://tec.openplanner.team/stops/LmNpost2"], ["https://tec.openplanner.team/stops/X639amb", "https://tec.openplanner.team/stops/X639arb"], ["https://tec.openplanner.team/stops/N501cmd", "https://tec.openplanner.team/stops/N501dna"], ["https://tec.openplanner.team/stops/H1ba111a", "https://tec.openplanner.team/stops/H1ba112b"], ["https://tec.openplanner.team/stops/Cmyfoym1", "https://tec.openplanner.team/stops/Cmypast1"], ["https://tec.openplanner.team/stops/X643aba", "https://tec.openplanner.team/stops/X646aaa"], ["https://tec.openplanner.team/stops/Cmlhauc1", "https://tec.openplanner.team/stops/Cmlhauc4"], ["https://tec.openplanner.team/stops/H4pp121a", "https://tec.openplanner.team/stops/H4ve140a"], ["https://tec.openplanner.team/stops/N543aea", "https://tec.openplanner.team/stops/N543ckb"], ["https://tec.openplanner.team/stops/N309aca", "https://tec.openplanner.team/stops/N309acb"], ["https://tec.openplanner.team/stops/H1mr123a", "https://tec.openplanner.team/stops/H1mr123b"], ["https://tec.openplanner.team/stops/Cflchel1", "https://tec.openplanner.team/stops/Cflchel2"], ["https://tec.openplanner.team/stops/Blmlcle1", "https://tec.openplanner.team/stops/Blmlgar1"], ["https://tec.openplanner.team/stops/X650afe", "https://tec.openplanner.team/stops/X658abb"], ["https://tec.openplanner.team/stops/X659ala", "https://tec.openplanner.team/stops/X742aba"], ["https://tec.openplanner.team/stops/LnNkirc2", "https://tec.openplanner.team/stops/LnNzent2"], ["https://tec.openplanner.team/stops/H1wa145b", "https://tec.openplanner.team/stops/H1wa150a"], ["https://tec.openplanner.team/stops/Bcrntru1", "https://tec.openplanner.team/stops/Bcrntru2"], ["https://tec.openplanner.team/stops/X769ala", "https://tec.openplanner.team/stops/X769ama"], ["https://tec.openplanner.team/stops/X619akb", "https://tec.openplanner.team/stops/X622aea"], ["https://tec.openplanner.team/stops/H1bo100a", "https://tec.openplanner.team/stops/H1bo145a"], ["https://tec.openplanner.team/stops/Llgmont1", "https://tec.openplanner.team/stops/Llgmont2"], ["https://tec.openplanner.team/stops/N215acc", "https://tec.openplanner.team/stops/N232ceb"], ["https://tec.openplanner.team/stops/N241agb", "https://tec.openplanner.team/stops/N270acb"], ["https://tec.openplanner.team/stops/X748abb", "https://tec.openplanner.team/stops/X748aca"], ["https://tec.openplanner.team/stops/X813aba", "https://tec.openplanner.team/stops/X813aca"], ["https://tec.openplanner.team/stops/NL77agb", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/H2ch110b", "https://tec.openplanner.team/stops/H2ch121a"], ["https://tec.openplanner.team/stops/LbOlier1", "https://tec.openplanner.team/stops/LbOlier2"], ["https://tec.openplanner.team/stops/LBBlaga2", "https://tec.openplanner.team/stops/X222azb"], ["https://tec.openplanner.team/stops/LMYmont1", "https://tec.openplanner.team/stops/X796aga"], ["https://tec.openplanner.team/stops/Cgdcent2", "https://tec.openplanner.team/stops/Cgdrhau1"], ["https://tec.openplanner.team/stops/H4ab102a", "https://tec.openplanner.team/stops/H5ma181b"], ["https://tec.openplanner.team/stops/N501hkb", "https://tec.openplanner.team/stops/N501lrb"], ["https://tec.openplanner.team/stops/X661aab", "https://tec.openplanner.team/stops/X836abb"], ["https://tec.openplanner.team/stops/H4co108b", "https://tec.openplanner.team/stops/H4co142a"], ["https://tec.openplanner.team/stops/H4co107a", "https://tec.openplanner.team/stops/H4co108b"], ["https://tec.openplanner.team/stops/N571ajb", "https://tec.openplanner.team/stops/N571aka"], ["https://tec.openplanner.team/stops/Cmttrie2", "https://tec.openplanner.team/stops/Cmtyern1"], ["https://tec.openplanner.team/stops/H4ta122a", "https://tec.openplanner.team/stops/H4ta123b"], ["https://tec.openplanner.team/stops/N509aca", "https://tec.openplanner.team/stops/N509acb"], ["https://tec.openplanner.team/stops/X642aab", "https://tec.openplanner.team/stops/X646aab"], ["https://tec.openplanner.team/stops/H4mx117a", "https://tec.openplanner.team/stops/H4po127b"], ["https://tec.openplanner.team/stops/LJelava2", "https://tec.openplanner.team/stops/LMOstat1"], ["https://tec.openplanner.team/stops/H4am100a", "https://tec.openplanner.team/stops/H4an107b"], ["https://tec.openplanner.team/stops/X639ama", "https://tec.openplanner.team/stops/X639ara"], ["https://tec.openplanner.team/stops/N347agb", "https://tec.openplanner.team/stops/X347ajb"], ["https://tec.openplanner.team/stops/X695aea", "https://tec.openplanner.team/stops/X695aja"], ["https://tec.openplanner.team/stops/Bhtibru1", "https://tec.openplanner.team/stops/Bitrfsc2"], ["https://tec.openplanner.team/stops/Louencl2", "https://tec.openplanner.team/stops/Louroos3"], ["https://tec.openplanner.team/stops/LmHabzw2", "https://tec.openplanner.team/stops/LmHdrei2"], ["https://tec.openplanner.team/stops/Bnivath2", "https://tec.openplanner.team/stops/Bnivver1"], ["https://tec.openplanner.team/stops/X784aha", "https://tec.openplanner.team/stops/X784alb"], ["https://tec.openplanner.team/stops/H4ha167b", "https://tec.openplanner.team/stops/H4ha168b"], ["https://tec.openplanner.team/stops/NB33aja", "https://tec.openplanner.team/stops/NB33aka"], ["https://tec.openplanner.team/stops/X760afb", "https://tec.openplanner.team/stops/X788afa"], ["https://tec.openplanner.team/stops/Bbgepau2", "https://tec.openplanner.team/stops/Bbgevil1"], ["https://tec.openplanner.team/stops/Cchhopi4", "https://tec.openplanner.team/stops/Cchwate3"], ["https://tec.openplanner.team/stops/N501awb", "https://tec.openplanner.team/stops/N501azb"], ["https://tec.openplanner.team/stops/H1so142a", "https://tec.openplanner.team/stops/H1so142b"], ["https://tec.openplanner.team/stops/Cjxcoll1", "https://tec.openplanner.team/stops/Cjxpann2"], ["https://tec.openplanner.team/stops/X601aba", "https://tec.openplanner.team/stops/X601adb"], ["https://tec.openplanner.team/stops/Bmsgbur1", "https://tec.openplanner.team/stops/Bottbru2"], ["https://tec.openplanner.team/stops/X817aba", "https://tec.openplanner.team/stops/X817aca"], ["https://tec.openplanner.team/stops/H4lh161a", "https://tec.openplanner.team/stops/H4oe151a"], ["https://tec.openplanner.team/stops/LWOcour2", "https://tec.openplanner.team/stops/LWOruis1"], ["https://tec.openplanner.team/stops/H4sm247b", "https://tec.openplanner.team/stops/H4ty322c"], ["https://tec.openplanner.team/stops/X614abb", "https://tec.openplanner.team/stops/X614amb"], ["https://tec.openplanner.team/stops/X729aaa", "https://tec.openplanner.team/stops/X745aea"], ["https://tec.openplanner.team/stops/LAYfoot1", "https://tec.openplanner.team/stops/LFLcarr2"], ["https://tec.openplanner.team/stops/X818aba", "https://tec.openplanner.team/stops/X818aca"], ["https://tec.openplanner.team/stops/Cgpchen1", "https://tec.openplanner.team/stops/H2gy113a"], ["https://tec.openplanner.team/stops/X917afb", "https://tec.openplanner.team/stops/X921ana"], ["https://tec.openplanner.team/stops/LNEgaul2", "https://tec.openplanner.team/stops/LNEvand1"], ["https://tec.openplanner.team/stops/X666aea", "https://tec.openplanner.team/stops/X666aeb"], ["https://tec.openplanner.team/stops/H5pe132b", "https://tec.openplanner.team/stops/H5pe149b"], ["https://tec.openplanner.team/stops/Bhmmmon1", "https://tec.openplanner.team/stops/Bhmmpos2"], ["https://tec.openplanner.team/stops/Cgxbeau2", "https://tec.openplanner.team/stops/Cgxmaco2"], ["https://tec.openplanner.team/stops/H4ry131b", "https://tec.openplanner.team/stops/H4ry140b"], ["https://tec.openplanner.team/stops/Croegli2", "https://tec.openplanner.team/stops/Cropcan2"], ["https://tec.openplanner.team/stops/LLAcalv2", "https://tec.openplanner.team/stops/LLAeg--2"], ["https://tec.openplanner.team/stops/H4ka175a", "https://tec.openplanner.team/stops/H4ob108a"], ["https://tec.openplanner.team/stops/Btanpla3", "https://tec.openplanner.team/stops/Btanvil1"], ["https://tec.openplanner.team/stops/X826ada", "https://tec.openplanner.team/stops/X826add"], ["https://tec.openplanner.team/stops/LLYcalv2", "https://tec.openplanner.team/stops/LLYchpl1"], ["https://tec.openplanner.team/stops/N222aba", "https://tec.openplanner.team/stops/N222ayb"], ["https://tec.openplanner.team/stops/H1ha189b", "https://tec.openplanner.team/stops/H1vh136b"], ["https://tec.openplanner.team/stops/NL74aja", "https://tec.openplanner.team/stops/NL74ajb"], ["https://tec.openplanner.team/stops/LmNelis1", "https://tec.openplanner.team/stops/LmNelis2"], ["https://tec.openplanner.team/stops/H1do130a", "https://tec.openplanner.team/stops/H1do130b"], ["https://tec.openplanner.team/stops/Bjodcsb1", "https://tec.openplanner.team/stops/Bjodcsb2"], ["https://tec.openplanner.team/stops/X983aca", "https://tec.openplanner.team/stops/X983acb"], ["https://tec.openplanner.team/stops/Cbmclar2", "https://tec.openplanner.team/stops/Cbmgrav2"], ["https://tec.openplanner.team/stops/X362aaa", "https://tec.openplanner.team/stops/X371aja"], ["https://tec.openplanner.team/stops/LCRf14-1", "https://tec.openplanner.team/stops/LCRf14-2"], ["https://tec.openplanner.team/stops/LSPec--1", "https://tec.openplanner.team/stops/LSPec--2"], ["https://tec.openplanner.team/stops/N507aha", "https://tec.openplanner.team/stops/N507aia"], ["https://tec.openplanner.team/stops/LBUplac2", "https://tec.openplanner.team/stops/NL30afa"], ["https://tec.openplanner.team/stops/H4ag102a", "https://tec.openplanner.team/stops/H4ga166a"], ["https://tec.openplanner.team/stops/LGecite1", "https://tec.openplanner.team/stops/LGeschr1"], ["https://tec.openplanner.team/stops/N211aca", "https://tec.openplanner.team/stops/N211bba"], ["https://tec.openplanner.team/stops/N501dvb", "https://tec.openplanner.team/stops/N501ejc"], ["https://tec.openplanner.team/stops/N515aga", "https://tec.openplanner.team/stops/N515aua"], ["https://tec.openplanner.team/stops/LVbeg--1", "https://tec.openplanner.team/stops/LVbeg--2"], ["https://tec.openplanner.team/stops/N212agc", "https://tec.openplanner.team/stops/N225ahb"], ["https://tec.openplanner.team/stops/LDAandr2", "https://tec.openplanner.team/stops/LMuvill2"], ["https://tec.openplanner.team/stops/X512aia", "https://tec.openplanner.team/stops/X512aib"], ["https://tec.openplanner.team/stops/LERboss1", "https://tec.openplanner.team/stops/LWberno1"], ["https://tec.openplanner.team/stops/N106aia", "https://tec.openplanner.team/stops/N106aka"], ["https://tec.openplanner.team/stops/N540aia", "https://tec.openplanner.team/stops/N540amb"], ["https://tec.openplanner.team/stops/N117aca", "https://tec.openplanner.team/stops/N147aaa"], ["https://tec.openplanner.team/stops/X651agb", "https://tec.openplanner.team/stops/X652aba"], ["https://tec.openplanner.team/stops/LLUpier2", "https://tec.openplanner.team/stops/LLUreut2"], ["https://tec.openplanner.team/stops/N229ahb", "https://tec.openplanner.team/stops/N291aaa"], ["https://tec.openplanner.team/stops/Ccstord2", "https://tec.openplanner.team/stops/Chhegli3"], ["https://tec.openplanner.team/stops/X646aab", "https://tec.openplanner.team/stops/X646ada"], ["https://tec.openplanner.team/stops/LLrc1652", "https://tec.openplanner.team/stops/LLrmaq-2"], ["https://tec.openplanner.team/stops/LAWchau1", "https://tec.openplanner.team/stops/LAWchau2"], ["https://tec.openplanner.team/stops/Cmmp2051", "https://tec.openplanner.team/stops/Cmmptno1"], ["https://tec.openplanner.team/stops/Bcbqcha1", "https://tec.openplanner.team/stops/Bcbqcoi1"], ["https://tec.openplanner.team/stops/N514aab", "https://tec.openplanner.team/stops/N514ajb"], ["https://tec.openplanner.team/stops/N542aab", "https://tec.openplanner.team/stops/N542acc"], ["https://tec.openplanner.team/stops/H5rx106a", "https://tec.openplanner.team/stops/H5rx113a"], ["https://tec.openplanner.team/stops/Ljhheus2", "https://tec.openplanner.team/stops/Ljhmany1"], ["https://tec.openplanner.team/stops/LFTneur*", "https://tec.openplanner.team/stops/LTamag1"], ["https://tec.openplanner.team/stops/X740aba", "https://tec.openplanner.team/stops/X740agb"], ["https://tec.openplanner.team/stops/X879aea", "https://tec.openplanner.team/stops/X882aab"], ["https://tec.openplanner.team/stops/N212ahb", "https://tec.openplanner.team/stops/N212aja"], ["https://tec.openplanner.team/stops/LSCeg--2", "https://tec.openplanner.team/stops/LVEtomb2"], ["https://tec.openplanner.team/stops/X870ada", "https://tec.openplanner.team/stops/X880aca"], ["https://tec.openplanner.team/stops/Lqbeg--2", "https://tec.openplanner.team/stops/LSAhaye2"], ["https://tec.openplanner.team/stops/X793ajb", "https://tec.openplanner.team/stops/X793akb"], ["https://tec.openplanner.team/stops/Cslbhau1", "https://tec.openplanner.team/stops/Cslbhau2"], ["https://tec.openplanner.team/stops/N553aab", "https://tec.openplanner.team/stops/N553aib"], ["https://tec.openplanner.team/stops/H4ty280a", "https://tec.openplanner.team/stops/H4ty315a"], ["https://tec.openplanner.team/stops/N501fub", "https://tec.openplanner.team/stops/N501fyc"], ["https://tec.openplanner.team/stops/H4ir165b", "https://tec.openplanner.team/stops/H5at119a"], ["https://tec.openplanner.team/stops/X369aba", "https://tec.openplanner.team/stops/X370adb"], ["https://tec.openplanner.team/stops/X901ala", "https://tec.openplanner.team/stops/X901bmb"], ["https://tec.openplanner.team/stops/N512ana", "https://tec.openplanner.team/stops/N512apa"], ["https://tec.openplanner.team/stops/LmDdenk1", "https://tec.openplanner.team/stops/LmDkirc2"], ["https://tec.openplanner.team/stops/LLrchat1", "https://tec.openplanner.team/stops/LLrhaut2"], ["https://tec.openplanner.team/stops/N533aga", "https://tec.openplanner.team/stops/N533agb"], ["https://tec.openplanner.team/stops/N547amb", "https://tec.openplanner.team/stops/N547ana"], ["https://tec.openplanner.team/stops/Barcast1", "https://tec.openplanner.team/stops/Bgzdn252"], ["https://tec.openplanner.team/stops/LCEboll1", "https://tec.openplanner.team/stops/LCEcent1"], ["https://tec.openplanner.team/stops/H4ga168a", "https://tec.openplanner.team/stops/H4ga168b"], ["https://tec.openplanner.team/stops/Cmlm2412", "https://tec.openplanner.team/stops/Cmlphai1"], ["https://tec.openplanner.team/stops/Cmachau1", "https://tec.openplanner.team/stops/Cmachau2"], ["https://tec.openplanner.team/stops/X607ahb", "https://tec.openplanner.team/stops/X620agb"], ["https://tec.openplanner.team/stops/Lmodeni2", "https://tec.openplanner.team/stops/Lmoknae3"], ["https://tec.openplanner.team/stops/Ccheden1", "https://tec.openplanner.team/stops/Cchpala2"], ["https://tec.openplanner.team/stops/X661awb", "https://tec.openplanner.team/stops/X661azb"], ["https://tec.openplanner.team/stops/LSG172-1", "https://tec.openplanner.team/stops/LSGmall1"], ["https://tec.openplanner.team/stops/H1el134a", "https://tec.openplanner.team/stops/H1el140c"], ["https://tec.openplanner.team/stops/Bwatgar4", "https://tec.openplanner.team/stops/Bwatgar5"], ["https://tec.openplanner.team/stops/H4bc104b", "https://tec.openplanner.team/stops/H4bc108a"], ["https://tec.openplanner.team/stops/Cblbaiv2", "https://tec.openplanner.team/stops/Cblcent1"], ["https://tec.openplanner.team/stops/Ladthom1", "https://tec.openplanner.team/stops/Lverain1"], ["https://tec.openplanner.team/stops/LLVcent1", "https://tec.openplanner.team/stops/LTBeg--2"], ["https://tec.openplanner.team/stops/Cbfegch1", "https://tec.openplanner.team/stops/Cbfpauc2"], ["https://tec.openplanner.team/stops/Bbchdev1", "https://tec.openplanner.team/stops/Bbchndb1"], ["https://tec.openplanner.team/stops/Cmyoasi1", "https://tec.openplanner.team/stops/Cmyvesa1"], ["https://tec.openplanner.team/stops/X715afb", "https://tec.openplanner.team/stops/X715ahb"], ["https://tec.openplanner.team/stops/N220ada", "https://tec.openplanner.team/stops/N224aba"], ["https://tec.openplanner.team/stops/LFClage1", "https://tec.openplanner.team/stops/LFClage2"], ["https://tec.openplanner.team/stops/X717agd", "https://tec.openplanner.team/stops/X781aha"], ["https://tec.openplanner.team/stops/X763aga", "https://tec.openplanner.team/stops/X763aha"], ["https://tec.openplanner.team/stops/X713ala", "https://tec.openplanner.team/stops/X713amb"], ["https://tec.openplanner.team/stops/X901aja", "https://tec.openplanner.team/stops/X901bpa"], ["https://tec.openplanner.team/stops/N212aba", "https://tec.openplanner.team/stops/N212ata"], ["https://tec.openplanner.team/stops/LGOmous1", "https://tec.openplanner.team/stops/LGOvill1"], ["https://tec.openplanner.team/stops/Cthalou2", "https://tec.openplanner.team/stops/Cthenmi2"], ["https://tec.openplanner.team/stops/H1cu114a", "https://tec.openplanner.team/stops/H1cu117a"], ["https://tec.openplanner.team/stops/Brebhos1", "https://tec.openplanner.team/stops/Brebrha1"], ["https://tec.openplanner.team/stops/LFMvoge*", "https://tec.openplanner.team/stops/LFMvoge2"], ["https://tec.openplanner.team/stops/N542aga", "https://tec.openplanner.team/stops/N542akb"], ["https://tec.openplanner.team/stops/NH01aea", "https://tec.openplanner.team/stops/NH01aeb"], ["https://tec.openplanner.team/stops/H4to133a", "https://tec.openplanner.team/stops/H4to133b"], ["https://tec.openplanner.team/stops/Cmychpl2", "https://tec.openplanner.team/stops/Cmyland5"], ["https://tec.openplanner.team/stops/X741aaa", "https://tec.openplanner.team/stops/X741aab"], ["https://tec.openplanner.team/stops/H4ty303a", "https://tec.openplanner.team/stops/H4ty314c"], ["https://tec.openplanner.team/stops/Bbaldot1", "https://tec.openplanner.team/stops/Bbgnton1"], ["https://tec.openplanner.team/stops/H1so131e", "https://tec.openplanner.team/stops/H1so142a"], ["https://tec.openplanner.team/stops/Lbocorn1", "https://tec.openplanner.team/stops/Louvivi1"], ["https://tec.openplanner.team/stops/X754apa", "https://tec.openplanner.team/stops/X754ava"], ["https://tec.openplanner.team/stops/Blimegl1", "https://tec.openplanner.team/stops/Blimeur1"], ["https://tec.openplanner.team/stops/X952aja", "https://tec.openplanner.team/stops/X955aaa"], ["https://tec.openplanner.team/stops/H1ca186a", "https://tec.openplanner.team/stops/H1sd344b"], ["https://tec.openplanner.team/stops/N531aia", "https://tec.openplanner.team/stops/N531amb"], ["https://tec.openplanner.team/stops/Bthscbl2", "https://tec.openplanner.team/stops/NL37alb"], ["https://tec.openplanner.team/stops/X773abb", "https://tec.openplanner.team/stops/X773ada"], ["https://tec.openplanner.team/stops/H1gg115a", "https://tec.openplanner.team/stops/H1gg145a"], ["https://tec.openplanner.team/stops/Cwfdame1", "https://tec.openplanner.team/stops/Cwflouv4"], ["https://tec.openplanner.team/stops/N353aaa", "https://tec.openplanner.team/stops/N353afc"], ["https://tec.openplanner.team/stops/Bneeace2", "https://tec.openplanner.team/stops/Bneeblo1"], ["https://tec.openplanner.team/stops/N223aba", "https://tec.openplanner.team/stops/X919ajb"], ["https://tec.openplanner.team/stops/H1qu108b", "https://tec.openplanner.team/stops/H1qu114b"], ["https://tec.openplanner.team/stops/Cctpano2", "https://tec.openplanner.team/stops/NC11ala"], ["https://tec.openplanner.team/stops/Cmlcpar2", "https://tec.openplanner.team/stops/Cmlhubi2"], ["https://tec.openplanner.team/stops/LRE154-2", "https://tec.openplanner.team/stops/LREhaut1"], ["https://tec.openplanner.team/stops/Clsferr1", "https://tec.openplanner.team/stops/Clsghoy1"], ["https://tec.openplanner.team/stops/H5rx115a", "https://tec.openplanner.team/stops/H5rx148a"], ["https://tec.openplanner.team/stops/Crbecol1", "https://tec.openplanner.team/stops/Crbecol2"], ["https://tec.openplanner.team/stops/X616aba", "https://tec.openplanner.team/stops/X616abb"], ["https://tec.openplanner.team/stops/N505aha", "https://tec.openplanner.team/stops/N506abb"], ["https://tec.openplanner.team/stops/N104aad", "https://tec.openplanner.team/stops/N104acb"], ["https://tec.openplanner.team/stops/N514acb", "https://tec.openplanner.team/stops/N514aob"], ["https://tec.openplanner.team/stops/Ccyga1", "https://tec.openplanner.team/stops/Ccyga3"], ["https://tec.openplanner.team/stops/LHcaube1", "https://tec.openplanner.team/stops/LJAbell1"], ["https://tec.openplanner.team/stops/X663ata", "https://tec.openplanner.team/stops/X663atb"], ["https://tec.openplanner.team/stops/N102aab", "https://tec.openplanner.team/stops/N104aad"], ["https://tec.openplanner.team/stops/LPLcarr2", "https://tec.openplanner.team/stops/LPLcite2"], ["https://tec.openplanner.team/stops/X790acb", "https://tec.openplanner.team/stops/X790ana"], ["https://tec.openplanner.team/stops/X805aga", "https://tec.openplanner.team/stops/X807acb"], ["https://tec.openplanner.team/stops/N232bxa", "https://tec.openplanner.team/stops/N291acb"], ["https://tec.openplanner.team/stops/N533ald", "https://tec.openplanner.team/stops/N533aob"], ["https://tec.openplanner.team/stops/LHTbonn2", "https://tec.openplanner.team/stops/LHTmc--1"], ["https://tec.openplanner.team/stops/X601aua", "https://tec.openplanner.team/stops/X601cra"], ["https://tec.openplanner.team/stops/LOMdTEC1", "https://tec.openplanner.team/stops/LOMware1"], ["https://tec.openplanner.team/stops/H2pe157a", "https://tec.openplanner.team/stops/H2pe158a"], ["https://tec.openplanner.team/stops/H2go116b", "https://tec.openplanner.team/stops/H2gy105b"], ["https://tec.openplanner.team/stops/N501nda", "https://tec.openplanner.team/stops/N501ndb"], ["https://tec.openplanner.team/stops/H4co151a", "https://tec.openplanner.team/stops/H4wn123a"], ["https://tec.openplanner.team/stops/Baegpon2", "https://tec.openplanner.team/stops/NR38adb"], ["https://tec.openplanner.team/stops/H2an103a", "https://tec.openplanner.team/stops/H2ml114a"], ["https://tec.openplanner.team/stops/LBLfoxh2", "https://tec.openplanner.team/stops/LMovieu1"], ["https://tec.openplanner.team/stops/LBOholt1", "https://tec.openplanner.team/stops/LBOholt2"], ["https://tec.openplanner.team/stops/Bcbqcim1", "https://tec.openplanner.team/stops/Bcbqcim2"], ["https://tec.openplanner.team/stops/Bdvmcbo2", "https://tec.openplanner.team/stops/Bwavbva1"], ["https://tec.openplanner.team/stops/LTamag1", "https://tec.openplanner.team/stops/LTaouch2"], ["https://tec.openplanner.team/stops/LPlpomp1", "https://tec.openplanner.team/stops/LPlpomp2"], ["https://tec.openplanner.team/stops/LSMfroi1", "https://tec.openplanner.team/stops/LTPhenr2"], ["https://tec.openplanner.team/stops/X925aia", "https://tec.openplanner.team/stops/X996aaa"], ["https://tec.openplanner.team/stops/LFEmala1", "https://tec.openplanner.team/stops/X597aga"], ["https://tec.openplanner.team/stops/X769aaa", "https://tec.openplanner.team/stops/X769abb"], ["https://tec.openplanner.team/stops/Llgandr1", "https://tec.openplanner.team/stops/Llgbruy2"], ["https://tec.openplanner.team/stops/Bwatfon1", "https://tec.openplanner.team/stops/Bwatpct2"], ["https://tec.openplanner.team/stops/Cprcalv2", "https://tec.openplanner.team/stops/NC44abb"], ["https://tec.openplanner.team/stops/Lflfort*", "https://tec.openplanner.team/stops/Lrecroi2"], ["https://tec.openplanner.team/stops/H2hg155d", "https://tec.openplanner.team/stops/H2hg158a"], ["https://tec.openplanner.team/stops/Bnvmfba1", "https://tec.openplanner.team/stops/Boffegl2"], ["https://tec.openplanner.team/stops/N548ahb", "https://tec.openplanner.team/stops/N548aib"], ["https://tec.openplanner.team/stops/Bbosdra1", "https://tec.openplanner.team/stops/Bbosgar1"], ["https://tec.openplanner.team/stops/H4ff115a", "https://tec.openplanner.team/stops/H4qu230c"], ["https://tec.openplanner.team/stops/LaSbahn2", "https://tec.openplanner.team/stops/LwArabo1"], ["https://tec.openplanner.team/stops/X752aca", "https://tec.openplanner.team/stops/X758aia"], ["https://tec.openplanner.team/stops/Buccfja1", "https://tec.openplanner.team/stops/Buccrac1"], ["https://tec.openplanner.team/stops/Cjulucq1", "https://tec.openplanner.team/stops/Cjuvand2"], ["https://tec.openplanner.team/stops/N150aja", "https://tec.openplanner.team/stops/N168aab"], ["https://tec.openplanner.team/stops/N534bxa", "https://tec.openplanner.team/stops/N534bxb"], ["https://tec.openplanner.team/stops/N125aab", "https://tec.openplanner.team/stops/N125abb"], ["https://tec.openplanner.team/stops/LHFappe1", "https://tec.openplanner.team/stops/LVEmohi2"], ["https://tec.openplanner.team/stops/LHFec--1", "https://tec.openplanner.team/stops/LHFec--2"], ["https://tec.openplanner.team/stops/Bsensab1", "https://tec.openplanner.team/stops/Bsensab2"], ["https://tec.openplanner.team/stops/Bcrbast2", "https://tec.openplanner.team/stops/Bnilcim1"], ["https://tec.openplanner.team/stops/N155acb", "https://tec.openplanner.team/stops/N155akb"], ["https://tec.openplanner.team/stops/Ccovies1", "https://tec.openplanner.team/stops/Ccovies2"], ["https://tec.openplanner.team/stops/LCIpiet2", "https://tec.openplanner.team/stops/LVHweri2"], ["https://tec.openplanner.team/stops/LSImewi1", "https://tec.openplanner.team/stops/LSImewi2"], ["https://tec.openplanner.team/stops/X802ada", "https://tec.openplanner.team/stops/X802asa"], ["https://tec.openplanner.team/stops/N212aea", "https://tec.openplanner.team/stops/N212aeb"], ["https://tec.openplanner.team/stops/Beclaub2", "https://tec.openplanner.team/stops/Beclesp1"], ["https://tec.openplanner.team/stops/LbUbutg2", "https://tec.openplanner.team/stops/LbUmalm2"], ["https://tec.openplanner.team/stops/LmNlieb2", "https://tec.openplanner.team/stops/LmNsied2"], ["https://tec.openplanner.team/stops/N501fwy", "https://tec.openplanner.team/stops/N501gta"], ["https://tec.openplanner.team/stops/X898akb", "https://tec.openplanner.team/stops/X898ana"], ["https://tec.openplanner.team/stops/N211aka", "https://tec.openplanner.team/stops/N214aaa"], ["https://tec.openplanner.team/stops/LDLboul2", "https://tec.openplanner.team/stops/LDLheid2"], ["https://tec.openplanner.team/stops/Cjuaero4", "https://tec.openplanner.team/stops/Cjudaxi1"], ["https://tec.openplanner.team/stops/Bmlncha1", "https://tec.openplanner.team/stops/Bmlnmbo1"], ["https://tec.openplanner.team/stops/X911asa", "https://tec.openplanner.team/stops/X911asb"], ["https://tec.openplanner.team/stops/Cjxdesc1", "https://tec.openplanner.team/stops/Cjxetri2"], ["https://tec.openplanner.team/stops/Brixaug1", "https://tec.openplanner.team/stops/Brixblh3"], ["https://tec.openplanner.team/stops/Croball1", "https://tec.openplanner.team/stops/Crorpai2"], ["https://tec.openplanner.team/stops/Ccpsecp1", "https://tec.openplanner.team/stops/Ccpsecp2"], ["https://tec.openplanner.team/stops/LSG111-1", "https://tec.openplanner.team/stops/LSG111-2"], ["https://tec.openplanner.team/stops/N103aaa", "https://tec.openplanner.team/stops/N103aba"], ["https://tec.openplanner.team/stops/N202aia", "https://tec.openplanner.team/stops/N219adb"], ["https://tec.openplanner.team/stops/LHApthe2", "https://tec.openplanner.team/stops/LHTboul2"], ["https://tec.openplanner.team/stops/H4ty265a", "https://tec.openplanner.team/stops/H4ty278b"], ["https://tec.openplanner.team/stops/Cjudaxi2", "https://tec.openplanner.team/stops/Cjuphil1"], ["https://tec.openplanner.team/stops/H1he101a", "https://tec.openplanner.team/stops/H1he102a"], ["https://tec.openplanner.team/stops/N236ajb", "https://tec.openplanner.team/stops/N236apa"], ["https://tec.openplanner.team/stops/X661aha", "https://tec.openplanner.team/stops/X661aia"], ["https://tec.openplanner.team/stops/Clb4dgi1", "https://tec.openplanner.team/stops/Clbecol1"], ["https://tec.openplanner.team/stops/LLrfagn1", "https://tec.openplanner.team/stops/LSMlier1"], ["https://tec.openplanner.team/stops/H4ty301c", "https://tec.openplanner.team/stops/H4ty340a"], ["https://tec.openplanner.team/stops/X921apa", "https://tec.openplanner.team/stops/X925afb"], ["https://tec.openplanner.team/stops/N501mxb", "https://tec.openplanner.team/stops/N533apa"], ["https://tec.openplanner.team/stops/Cdametr1", "https://tec.openplanner.team/stops/CMdamp1"], ["https://tec.openplanner.team/stops/X809aab", "https://tec.openplanner.team/stops/X858aga"], ["https://tec.openplanner.team/stops/H4ma200a", "https://tec.openplanner.team/stops/H4ma205b"], ["https://tec.openplanner.team/stops/LOmvill1", "https://tec.openplanner.team/stops/LOmvill3"], ["https://tec.openplanner.team/stops/N527adb", "https://tec.openplanner.team/stops/N527aeb"], ["https://tec.openplanner.team/stops/Btancre1", "https://tec.openplanner.team/stops/Bvlvbth2"], ["https://tec.openplanner.team/stops/H1ag105b", "https://tec.openplanner.team/stops/H1ag106b"], ["https://tec.openplanner.team/stops/H2gy105b", "https://tec.openplanner.team/stops/H2gy107b"], ["https://tec.openplanner.team/stops/Canjon3", "https://tec.openplanner.team/stops/Canjonc1"], ["https://tec.openplanner.team/stops/NH01aha", "https://tec.openplanner.team/stops/NH01amb"], ["https://tec.openplanner.team/stops/X750aja", "https://tec.openplanner.team/stops/X750bkb"], ["https://tec.openplanner.team/stops/H4lp126a", "https://tec.openplanner.team/stops/H4pe127b"], ["https://tec.openplanner.team/stops/LwYcafe1", "https://tec.openplanner.team/stops/LwYkirc2"], ["https://tec.openplanner.team/stops/N501mxa", "https://tec.openplanner.team/stops/N501mya"], ["https://tec.openplanner.team/stops/LBdmarr2", "https://tec.openplanner.team/stops/LLrfagn2"], ["https://tec.openplanner.team/stops/H4er121a", "https://tec.openplanner.team/stops/H4er123a"], ["https://tec.openplanner.team/stops/LAweg--1", "https://tec.openplanner.team/stops/LMvrabo1"], ["https://tec.openplanner.team/stops/LhEcolo1", "https://tec.openplanner.team/stops/LhElont3"], ["https://tec.openplanner.team/stops/H2ll180b", "https://tec.openplanner.team/stops/H2ll192a"], ["https://tec.openplanner.team/stops/N501hub", "https://tec.openplanner.team/stops/N501hzc"], ["https://tec.openplanner.team/stops/Cbckios1", "https://tec.openplanner.team/stops/Clfbarr4"], ["https://tec.openplanner.team/stops/Lpeptra1", "https://tec.openplanner.team/stops/LWevand2"], ["https://tec.openplanner.team/stops/Blhunys2", "https://tec.openplanner.team/stops/Bohngen2"], ["https://tec.openplanner.team/stops/LBOande2", "https://tec.openplanner.team/stops/LWRgare2"], ["https://tec.openplanner.team/stops/X757aga", "https://tec.openplanner.team/stops/X757ala"], ["https://tec.openplanner.team/stops/X870afb", "https://tec.openplanner.team/stops/X870ahb"], ["https://tec.openplanner.team/stops/Canmonu2", "https://tec.openplanner.team/stops/H2an106d"], ["https://tec.openplanner.team/stops/Cnacent4", "https://tec.openplanner.team/stops/Cnadepo2"], ["https://tec.openplanner.team/stops/X801ahb", "https://tec.openplanner.team/stops/X801amb"], ["https://tec.openplanner.team/stops/Lhrunir1", "https://tec.openplanner.team/stops/Lvtpata1"], ["https://tec.openplanner.team/stops/X812awa", "https://tec.openplanner.team/stops/X812baa"], ["https://tec.openplanner.team/stops/Chpchea1", "https://tec.openplanner.team/stops/Cwgmutu2"], ["https://tec.openplanner.team/stops/Cgzchab1", "https://tec.openplanner.team/stops/Cgzchab3"], ["https://tec.openplanner.team/stops/N505aab", "https://tec.openplanner.team/stops/N505ana"], ["https://tec.openplanner.team/stops/LWHkape2", "https://tec.openplanner.team/stops/LWHkerk2"], ["https://tec.openplanner.team/stops/LBAbooz2", "https://tec.openplanner.team/stops/LBLtroi1"], ["https://tec.openplanner.team/stops/LaMbrei1", "https://tec.openplanner.team/stops/LaMbull1"], ["https://tec.openplanner.team/stops/Lchsaec1", "https://tec.openplanner.team/stops/LHOgymn2"], ["https://tec.openplanner.team/stops/Cmoecol1", "https://tec.openplanner.team/stops/Cmychpl2"], ["https://tec.openplanner.team/stops/LBBcarr1", "https://tec.openplanner.team/stops/LCLacbi1"], ["https://tec.openplanner.team/stops/LLevaux1", "https://tec.openplanner.team/stops/X576afb"], ["https://tec.openplanner.team/stops/N124aaa", "https://tec.openplanner.team/stops/N124aab"], ["https://tec.openplanner.team/stops/LAMcoll2", "https://tec.openplanner.team/stops/LAMpirk2"], ["https://tec.openplanner.team/stops/LOLfoss1", "https://tec.openplanner.team/stops/LOLvill2"], ["https://tec.openplanner.team/stops/X345abb", "https://tec.openplanner.team/stops/X345aca"], ["https://tec.openplanner.team/stops/Cpiegli1", "https://tec.openplanner.team/stops/Cpiegli2"], ["https://tec.openplanner.team/stops/Ladfran1", "https://tec.openplanner.team/stops/Ldimont1"], ["https://tec.openplanner.team/stops/X664aca", "https://tec.openplanner.team/stops/X667ada"], ["https://tec.openplanner.team/stops/Cgotech2", "https://tec.openplanner.team/stops/Craplac3"], ["https://tec.openplanner.team/stops/X904ala", "https://tec.openplanner.team/stops/X943aeb"], ["https://tec.openplanner.team/stops/H1br130a", "https://tec.openplanner.team/stops/H1br130b"], ["https://tec.openplanner.team/stops/LTPgare*", "https://tec.openplanner.team/stops/LTPsalm1"], ["https://tec.openplanner.team/stops/Lsebegu2", "https://tec.openplanner.team/stops/Ltihala2"], ["https://tec.openplanner.team/stops/H4bf105b", "https://tec.openplanner.team/stops/H4ro156a"], ["https://tec.openplanner.team/stops/LDOchev1", "https://tec.openplanner.team/stops/LDOdavi2"], ["https://tec.openplanner.team/stops/LREaube1", "https://tec.openplanner.team/stops/LREaube2"], ["https://tec.openplanner.team/stops/X754aub", "https://tec.openplanner.team/stops/X779afb"], ["https://tec.openplanner.team/stops/H1bo101a", "https://tec.openplanner.team/stops/H1bo111a"], ["https://tec.openplanner.team/stops/X771abb", "https://tec.openplanner.team/stops/X773ala"], ["https://tec.openplanner.team/stops/X806aeb", "https://tec.openplanner.team/stops/X806ahb"], ["https://tec.openplanner.team/stops/H4to134a", "https://tec.openplanner.team/stops/H4to137b"], ["https://tec.openplanner.team/stops/H1ms265a", "https://tec.openplanner.team/stops/H1ss352a"], ["https://tec.openplanner.team/stops/X879amb", "https://tec.openplanner.team/stops/X879apa"], ["https://tec.openplanner.team/stops/N261afa", "https://tec.openplanner.team/stops/N261aha"], ["https://tec.openplanner.team/stops/N531asb", "https://tec.openplanner.team/stops/N534bxa"], ["https://tec.openplanner.team/stops/X602apa", "https://tec.openplanner.team/stops/X602asa"], ["https://tec.openplanner.team/stops/Lgrcrac2", "https://tec.openplanner.team/stops/Lgrdeni2"], ["https://tec.openplanner.team/stops/LFTcroi3", "https://tec.openplanner.team/stops/LFTcroi4"], ["https://tec.openplanner.team/stops/H1qu107a", "https://tec.openplanner.team/stops/H1qu107b"], ["https://tec.openplanner.team/stops/Livfays1", "https://tec.openplanner.team/stops/Livvill1"], ["https://tec.openplanner.team/stops/N501bma", "https://tec.openplanner.team/stops/N502adb"], ["https://tec.openplanner.team/stops/H5pe135a", "https://tec.openplanner.team/stops/H5pe142b"], ["https://tec.openplanner.team/stops/LSOcime2", "https://tec.openplanner.team/stops/LSOladr1"], ["https://tec.openplanner.team/stops/LLrfont2", "https://tec.openplanner.team/stops/LLrvill1"], ["https://tec.openplanner.team/stops/Clvmesa1", "https://tec.openplanner.team/stops/Clvorle1"], ["https://tec.openplanner.team/stops/Blindel5", "https://tec.openplanner.team/stops/Blinhue1"], ["https://tec.openplanner.team/stops/H4wn128b", "https://tec.openplanner.team/stops/H4wn139a"], ["https://tec.openplanner.team/stops/Bkrapri2", "https://tec.openplanner.team/stops/Bwolvan2"], ["https://tec.openplanner.team/stops/LOCloup1", "https://tec.openplanner.team/stops/NL35aca"], ["https://tec.openplanner.team/stops/LkAsonn1", "https://tec.openplanner.team/stops/LmHperl1"], ["https://tec.openplanner.team/stops/Cjuhame1", "https://tec.openplanner.team/stops/Crajasm2"], ["https://tec.openplanner.team/stops/X880aca", "https://tec.openplanner.team/stops/X880acb"], ["https://tec.openplanner.team/stops/Cjuplco2", "https://tec.openplanner.team/stops/Cjuplco3"], ["https://tec.openplanner.team/stops/Lagcler1", "https://tec.openplanner.team/stops/Lagrask2"], ["https://tec.openplanner.team/stops/LmDhoch1", "https://tec.openplanner.team/stops/LmDhoch2"], ["https://tec.openplanner.team/stops/LBIfore1", "https://tec.openplanner.team/stops/Lghwall1"], ["https://tec.openplanner.team/stops/N507aad", "https://tec.openplanner.team/stops/N507alc"], ["https://tec.openplanner.team/stops/N510aba", "https://tec.openplanner.team/stops/N510abb"], ["https://tec.openplanner.team/stops/LBgbaga3", "https://tec.openplanner.team/stops/LBgbaga4"], ["https://tec.openplanner.team/stops/Lmimili2", "https://tec.openplanner.team/stops/Lmimili4"], ["https://tec.openplanner.team/stops/Brsrber1", "https://tec.openplanner.team/stops/Brsrrcu2"], ["https://tec.openplanner.team/stops/LATabba2", "https://tec.openplanner.team/stops/LAThach2"], ["https://tec.openplanner.team/stops/LHDlibi2", "https://tec.openplanner.team/stops/LHDmc--1"], ["https://tec.openplanner.team/stops/X663agb", "https://tec.openplanner.team/stops/X663aia"], ["https://tec.openplanner.team/stops/LPutins1", "https://tec.openplanner.team/stops/X792aba"], ["https://tec.openplanner.team/stops/H1be100b", "https://tec.openplanner.team/stops/H1be104b"], ["https://tec.openplanner.team/stops/N232brb", "https://tec.openplanner.team/stops/N232bsb"], ["https://tec.openplanner.team/stops/Lmnmart2", "https://tec.openplanner.team/stops/Lsmrwan1"], ["https://tec.openplanner.team/stops/LESmart2", "https://tec.openplanner.team/stops/LPLstri2"], ["https://tec.openplanner.team/stops/Bcseche2", "https://tec.openplanner.team/stops/Bsmgsuz2"], ["https://tec.openplanner.team/stops/X982aha", "https://tec.openplanner.team/stops/X982aia"], ["https://tec.openplanner.team/stops/NB33alb", "https://tec.openplanner.team/stops/NB59akb"], ["https://tec.openplanner.team/stops/CMfont1", "https://tec.openplanner.team/stops/CMfont2"], ["https://tec.openplanner.team/stops/Ccoforr1", "https://tec.openplanner.team/stops/Ccostan2"], ["https://tec.openplanner.team/stops/LHUlieg2", "https://tec.openplanner.team/stops/LHUmala2"], ["https://tec.openplanner.team/stops/X750bpb", "https://tec.openplanner.team/stops/X784aba"], ["https://tec.openplanner.team/stops/LBGcent2", "https://tec.openplanner.team/stops/LBGroma1"], ["https://tec.openplanner.team/stops/N201ana", "https://tec.openplanner.team/stops/N201aoa"], ["https://tec.openplanner.team/stops/Lvegrap2", "https://tec.openplanner.team/stops/Lvehodi4"], ["https://tec.openplanner.team/stops/Cfaterg6", "https://tec.openplanner.team/stops/N543bmb"], ["https://tec.openplanner.team/stops/Llgwesp1", "https://tec.openplanner.team/stops/Llgwesp2"], ["https://tec.openplanner.team/stops/H5bl115b", "https://tec.openplanner.team/stops/H5bl115c"], ["https://tec.openplanner.team/stops/LLrc1992", "https://tec.openplanner.team/stops/LLrcour1"], ["https://tec.openplanner.team/stops/Cauglac1", "https://tec.openplanner.team/stops/N530aja"], ["https://tec.openplanner.team/stops/N232arb", "https://tec.openplanner.team/stops/N232bka"], ["https://tec.openplanner.team/stops/LXhmara1", "https://tec.openplanner.team/stops/LXhnouv1"], ["https://tec.openplanner.team/stops/Lhefoot2", "https://tec.openplanner.team/stops/Lheneuv4"], ["https://tec.openplanner.team/stops/Cchba08", "https://tec.openplanner.team/stops/CMba1"], ["https://tec.openplanner.team/stops/LXoharz6", "https://tec.openplanner.team/stops/LXoroch2"], ["https://tec.openplanner.team/stops/N166abb", "https://tec.openplanner.team/stops/N166aea"], ["https://tec.openplanner.team/stops/Bcrncjo2", "https://tec.openplanner.team/stops/Bgrmfga2"], ["https://tec.openplanner.team/stops/Lprhodi1", "https://tec.openplanner.team/stops/LWetrib2"], ["https://tec.openplanner.team/stops/H1sg149a", "https://tec.openplanner.team/stops/H1te176b"], ["https://tec.openplanner.team/stops/LLxeclu1", "https://tec.openplanner.team/stops/LLxeclu2"], ["https://tec.openplanner.team/stops/X601baa", "https://tec.openplanner.team/stops/X601bia"], ["https://tec.openplanner.team/stops/X746aga", "https://tec.openplanner.team/stops/X746agc"], ["https://tec.openplanner.team/stops/Lhrathe1", "https://tec.openplanner.team/stops/Lhrtilm2"], ["https://tec.openplanner.team/stops/H1cu121a", "https://tec.openplanner.team/stops/H1cu127b"], ["https://tec.openplanner.team/stops/N270aba", "https://tec.openplanner.team/stops/N270aca"], ["https://tec.openplanner.team/stops/Llgchai1", "https://tec.openplanner.team/stops/Lvtnico*"], ["https://tec.openplanner.team/stops/Llochar1", "https://tec.openplanner.team/stops/Lloross1"], ["https://tec.openplanner.team/stops/H2sb234a", "https://tec.openplanner.team/stops/H2sb234b"], ["https://tec.openplanner.team/stops/H2sb227a", "https://tec.openplanner.team/stops/H2sb258a"], ["https://tec.openplanner.team/stops/LVAflat1", "https://tec.openplanner.team/stops/LVAgemm1"], ["https://tec.openplanner.team/stops/N988aaa", "https://tec.openplanner.team/stops/X877adb"], ["https://tec.openplanner.team/stops/LPobois2", "https://tec.openplanner.team/stops/LPoewer2"], ["https://tec.openplanner.team/stops/N348aea", "https://tec.openplanner.team/stops/N348aeb"], ["https://tec.openplanner.team/stops/Blpgbat1", "https://tec.openplanner.team/stops/Cglfrom1"], ["https://tec.openplanner.team/stops/LTgcime2", "https://tec.openplanner.team/stops/LTgwarf2"], ["https://tec.openplanner.team/stops/N538aaa", "https://tec.openplanner.team/stops/N538aba"], ["https://tec.openplanner.team/stops/Bnivtra1", "https://tec.openplanner.team/stops/Bnivvai2"], ["https://tec.openplanner.team/stops/Bwatber1", "https://tec.openplanner.team/stops/Bwatgge2"], ["https://tec.openplanner.team/stops/LNCsera2", "https://tec.openplanner.team/stops/LPLcond1"], ["https://tec.openplanner.team/stops/H2hp114a", "https://tec.openplanner.team/stops/H2hp114b"], ["https://tec.openplanner.team/stops/X670aib", "https://tec.openplanner.team/stops/X670ara"], ["https://tec.openplanner.team/stops/LSxeg--1", "https://tec.openplanner.team/stops/LSxeg--2"], ["https://tec.openplanner.team/stops/Cpcarse1", "https://tec.openplanner.team/stops/Cpcchau"], ["https://tec.openplanner.team/stops/N162aaa", "https://tec.openplanner.team/stops/N162aca"], ["https://tec.openplanner.team/stops/N260aab", "https://tec.openplanner.team/stops/N260abc"], ["https://tec.openplanner.team/stops/LBKmoes1", "https://tec.openplanner.team/stops/LWAeloi1"], ["https://tec.openplanner.team/stops/LwYboui2", "https://tec.openplanner.team/stops/LwYsarl2"], ["https://tec.openplanner.team/stops/H2na136a", "https://tec.openplanner.team/stops/H2na136b"], ["https://tec.openplanner.team/stops/Cvvgrsa1", "https://tec.openplanner.team/stops/Cvvgrsa2"], ["https://tec.openplanner.team/stops/Bkrapri1", "https://tec.openplanner.team/stops/Bkrapri2"], ["https://tec.openplanner.team/stops/X940aaa", "https://tec.openplanner.team/stops/X940ada"], ["https://tec.openplanner.team/stops/N515aib", "https://tec.openplanner.team/stops/N515ala"], ["https://tec.openplanner.team/stops/LVSpota1", "https://tec.openplanner.team/stops/LVStige2"], ["https://tec.openplanner.team/stops/H4fr143b", "https://tec.openplanner.team/stops/H4ma399b"], ["https://tec.openplanner.team/stops/H4ep127b", "https://tec.openplanner.team/stops/H4rm108a"], ["https://tec.openplanner.team/stops/X769afa", "https://tec.openplanner.team/stops/X769arb"], ["https://tec.openplanner.team/stops/N141aea", "https://tec.openplanner.team/stops/N141aeb"], ["https://tec.openplanner.team/stops/X659agb", "https://tec.openplanner.team/stops/X659aha"], ["https://tec.openplanner.team/stops/Bnstver2", "https://tec.openplanner.team/stops/H3so187b"], ["https://tec.openplanner.team/stops/H1ro136a", "https://tec.openplanner.team/stops/H1ro136b"], ["https://tec.openplanner.team/stops/H1fr107a", "https://tec.openplanner.team/stops/H1fr113b"], ["https://tec.openplanner.team/stops/H1lb136a", "https://tec.openplanner.team/stops/H1lb138b"], ["https://tec.openplanner.team/stops/Louairl2", "https://tec.openplanner.team/stops/Louazot2"], ["https://tec.openplanner.team/stops/Llgfran1", "https://tec.openplanner.team/stops/Llgriva2"], ["https://tec.openplanner.team/stops/Bcrnrpc1", "https://tec.openplanner.team/stops/Bcrnvic1"], ["https://tec.openplanner.team/stops/Cpclarm1", "https://tec.openplanner.team/stops/Cvvpotv1"], ["https://tec.openplanner.team/stops/N115afa", "https://tec.openplanner.team/stops/N170agb"], ["https://tec.openplanner.team/stops/N508afa", "https://tec.openplanner.team/stops/N508afb"], ["https://tec.openplanner.team/stops/Bdvminc2", "https://tec.openplanner.team/stops/Bgisber1"], ["https://tec.openplanner.team/stops/N532abb", "https://tec.openplanner.team/stops/N532akb"], ["https://tec.openplanner.team/stops/Lmlchev2", "https://tec.openplanner.team/stops/Lpocent1"], ["https://tec.openplanner.team/stops/H4po127a", "https://tec.openplanner.team/stops/H4po128a"], ["https://tec.openplanner.team/stops/LFOcomb4", "https://tec.openplanner.team/stops/LVGeg--5"], ["https://tec.openplanner.team/stops/N115acb", "https://tec.openplanner.team/stops/N118akb"], ["https://tec.openplanner.team/stops/N501gfa", "https://tec.openplanner.team/stops/N501jaa"], ["https://tec.openplanner.team/stops/Ccuwain2", "https://tec.openplanner.team/stops/Cgyruis1"], ["https://tec.openplanner.team/stops/N534aba", "https://tec.openplanner.team/stops/N534abb"], ["https://tec.openplanner.team/stops/Bwavbmo2", "https://tec.openplanner.team/stops/Bwaveur1"], ["https://tec.openplanner.team/stops/N513apa", "https://tec.openplanner.team/stops/N513ara"], ["https://tec.openplanner.team/stops/LWAaxhe1", "https://tec.openplanner.team/stops/LWAloui1"], ["https://tec.openplanner.team/stops/X750aqa", "https://tec.openplanner.team/stops/X750bfb"], ["https://tec.openplanner.team/stops/Bnivga22", "https://tec.openplanner.team/stops/Bnivga32"], ["https://tec.openplanner.team/stops/X672aoa", "https://tec.openplanner.team/stops/X672aob"], ["https://tec.openplanner.team/stops/H1wi152c", "https://tec.openplanner.team/stops/H1wi152d"], ["https://tec.openplanner.team/stops/Bpthfus1", "https://tec.openplanner.team/stops/Bwanthi1"], ["https://tec.openplanner.team/stops/N501eia", "https://tec.openplanner.team/stops/N501eib"], ["https://tec.openplanner.team/stops/X872afa", "https://tec.openplanner.team/stops/X872agb"], ["https://tec.openplanner.team/stops/H4ta129b", "https://tec.openplanner.team/stops/H4ta134a"], ["https://tec.openplanner.team/stops/X812axa", "https://tec.openplanner.team/stops/X812aza"], ["https://tec.openplanner.team/stops/Ccubric1", "https://tec.openplanner.team/stops/Ccupays2"], ["https://tec.openplanner.team/stops/H4ht172b", "https://tec.openplanner.team/stops/H4ht173a"], ["https://tec.openplanner.team/stops/N528apb", "https://tec.openplanner.team/stops/N538adb"], ["https://tec.openplanner.team/stops/X370aca", "https://tec.openplanner.team/stops/X872acb"], ["https://tec.openplanner.team/stops/H4bo120b", "https://tec.openplanner.team/stops/H4bo182b"], ["https://tec.openplanner.team/stops/Cthegli1", "https://tec.openplanner.team/stops/Cthrlef2"], ["https://tec.openplanner.team/stops/X637aoa", "https://tec.openplanner.team/stops/X652aab"], ["https://tec.openplanner.team/stops/Cvscomb1", "https://tec.openplanner.team/stops/N530aha"], ["https://tec.openplanner.team/stops/N557aea", "https://tec.openplanner.team/stops/N560abb"], ["https://tec.openplanner.team/stops/X948afa", "https://tec.openplanner.team/stops/X948aua"], ["https://tec.openplanner.team/stops/X877ada", "https://tec.openplanner.team/stops/X877adb"], ["https://tec.openplanner.team/stops/H1cu108b", "https://tec.openplanner.team/stops/H1ms247a"], ["https://tec.openplanner.team/stops/N547ald", "https://tec.openplanner.team/stops/N547anb"], ["https://tec.openplanner.team/stops/LHbcent2", "https://tec.openplanner.team/stops/LJAchat2"], ["https://tec.openplanner.team/stops/X739aaa", "https://tec.openplanner.team/stops/X739aab"], ["https://tec.openplanner.team/stops/H1wi148b", "https://tec.openplanner.team/stops/H1wi148c"], ["https://tec.openplanner.team/stops/Cfometr1", "https://tec.openplanner.team/stops/Cfometr2"], ["https://tec.openplanner.team/stops/Ccychco1", "https://tec.openplanner.team/stops/Ccychco2"], ["https://tec.openplanner.team/stops/N522bvb", "https://tec.openplanner.team/stops/N522bvc"], ["https://tec.openplanner.team/stops/Cprbevu1", "https://tec.openplanner.team/stops/NC11aoa"], ["https://tec.openplanner.team/stops/LbTweyn2", "https://tec.openplanner.team/stops/LwR140-2"], ["https://tec.openplanner.team/stops/Cmacart3", "https://tec.openplanner.team/stops/Cmadeli1"], ["https://tec.openplanner.team/stops/Lseathe1", "https://tec.openplanner.team/stops/Lsebeau2"], ["https://tec.openplanner.team/stops/X792abb", "https://tec.openplanner.team/stops/X793anb"], ["https://tec.openplanner.team/stops/N209ahb", "https://tec.openplanner.team/stops/N209aic"], ["https://tec.openplanner.team/stops/Ljegare2", "https://tec.openplanner.team/stops/Ljekess1"], ["https://tec.openplanner.team/stops/H4mo137b", "https://tec.openplanner.team/stops/H4wa156a"], ["https://tec.openplanner.team/stops/Cgygazo3", "https://tec.openplanner.team/stops/Cmtchet2"], ["https://tec.openplanner.team/stops/X759abb", "https://tec.openplanner.team/stops/X759afa"], ["https://tec.openplanner.team/stops/Lvo60--1", "https://tec.openplanner.team/stops/Lvopaqu1"], ["https://tec.openplanner.team/stops/N346adb", "https://tec.openplanner.team/stops/X892acb"], ["https://tec.openplanner.team/stops/X937aib", "https://tec.openplanner.team/stops/X952aab"], ["https://tec.openplanner.team/stops/N501fmb", "https://tec.openplanner.team/stops/N501kwb"], ["https://tec.openplanner.team/stops/LCUmonu1", "https://tec.openplanner.team/stops/LCUmora1"], ["https://tec.openplanner.team/stops/H4ta117a", "https://tec.openplanner.team/stops/H4ta133a"], ["https://tec.openplanner.team/stops/Cragoss2", "https://tec.openplanner.team/stops/Craplac1"], ["https://tec.openplanner.team/stops/LTAchau1", "https://tec.openplanner.team/stops/LTAchpl1"], ["https://tec.openplanner.team/stops/Clftour2", "https://tec.openplanner.team/stops/Crglyre1"], ["https://tec.openplanner.team/stops/Ladjuif1", "https://tec.openplanner.team/stops/Ladjuif2"], ["https://tec.openplanner.team/stops/Lvefanc1", "https://tec.openplanner.team/stops/Lvegrap2"], ["https://tec.openplanner.team/stops/X888agb", "https://tec.openplanner.team/stops/X897ara"], ["https://tec.openplanner.team/stops/N506bdb", "https://tec.openplanner.team/stops/N506bhb"], ["https://tec.openplanner.team/stops/X641afa", "https://tec.openplanner.team/stops/X641akb"], ["https://tec.openplanner.team/stops/N511ana", "https://tec.openplanner.team/stops/N511anb"], ["https://tec.openplanner.team/stops/Ccobinc1", "https://tec.openplanner.team/stops/Ccobinc2"], ["https://tec.openplanner.team/stops/Llgpari2", "https://tec.openplanner.team/stops/Llgstvi3"], ["https://tec.openplanner.team/stops/H4mv190a", "https://tec.openplanner.team/stops/H4mv190b"], ["https://tec.openplanner.team/stops/N512aka", "https://tec.openplanner.team/stops/N512aua"], ["https://tec.openplanner.team/stops/Lgdhall*", "https://tec.openplanner.team/stops/Lgdmaye2"], ["https://tec.openplanner.team/stops/N209aja", "https://tec.openplanner.team/stops/N209aka"], ["https://tec.openplanner.team/stops/X613aab", "https://tec.openplanner.team/stops/X614ala"], ["https://tec.openplanner.team/stops/X597aaa", "https://tec.openplanner.team/stops/X796aia"], ["https://tec.openplanner.team/stops/X721aoa", "https://tec.openplanner.team/stops/X721apa"], ["https://tec.openplanner.team/stops/N533acb", "https://tec.openplanner.team/stops/N533adb"], ["https://tec.openplanner.team/stops/X925aka", "https://tec.openplanner.team/stops/X947ada"], ["https://tec.openplanner.team/stops/N543aeb", "https://tec.openplanner.team/stops/N543bxb"], ["https://tec.openplanner.team/stops/Bnivasa2", "https://tec.openplanner.team/stops/Bnivgen1"], ["https://tec.openplanner.team/stops/N230aaa", "https://tec.openplanner.team/stops/N540acd"], ["https://tec.openplanner.team/stops/H4ty287a", "https://tec.openplanner.team/stops/H4ty346b"], ["https://tec.openplanner.team/stops/Lcemeta1", "https://tec.openplanner.team/stops/Lcepepi2"], ["https://tec.openplanner.team/stops/X636aqc", "https://tec.openplanner.team/stops/X636aqd"], ["https://tec.openplanner.team/stops/Bsomh672", "https://tec.openplanner.team/stops/Bsomjon1"], ["https://tec.openplanner.team/stops/LHMa2321", "https://tec.openplanner.team/stops/LHMa2322"], ["https://tec.openplanner.team/stops/LPLruis1", "https://tec.openplanner.team/stops/LPLruis2"], ["https://tec.openplanner.team/stops/Llgcoro1", "https://tec.openplanner.team/stops/Llgtir-1"], ["https://tec.openplanner.team/stops/Cmg4bra1", "https://tec.openplanner.team/stops/Cmg4bra2"], ["https://tec.openplanner.team/stops/Bclgpch2", "https://tec.openplanner.team/stops/Bllnfla1"], ["https://tec.openplanner.team/stops/Cgobruy2", "https://tec.openplanner.team/stops/CMfbru1"], ["https://tec.openplanner.team/stops/X873aca", "https://tec.openplanner.team/stops/X873acb"], ["https://tec.openplanner.team/stops/Cpicite1", "https://tec.openplanner.team/stops/Cpicite2"], ["https://tec.openplanner.team/stops/H5rx101a", "https://tec.openplanner.team/stops/H5rx135b"], ["https://tec.openplanner.team/stops/N204aib", "https://tec.openplanner.team/stops/N204ala"], ["https://tec.openplanner.team/stops/X890aba", "https://tec.openplanner.team/stops/X890aea"], ["https://tec.openplanner.team/stops/H4fr394a", "https://tec.openplanner.team/stops/H4ty340b"], ["https://tec.openplanner.team/stops/Bnilegl2", "https://tec.openplanner.team/stops/Bnilspe4"], ["https://tec.openplanner.team/stops/X636bga", "https://tec.openplanner.team/stops/X636bgb"], ["https://tec.openplanner.team/stops/N308aic", "https://tec.openplanner.team/stops/N308ajb"], ["https://tec.openplanner.team/stops/H1bu142b", "https://tec.openplanner.team/stops/H2ep172a"], ["https://tec.openplanner.team/stops/N213aaa", "https://tec.openplanner.team/stops/N213aba"], ["https://tec.openplanner.team/stops/Cmltemp2", "https://tec.openplanner.team/stops/Cmltemp5"], ["https://tec.openplanner.team/stops/NH01alb", "https://tec.openplanner.team/stops/NH01amb"], ["https://tec.openplanner.team/stops/LBUvall1", "https://tec.openplanner.team/stops/LBUvall2"], ["https://tec.openplanner.team/stops/Lbbremy2", "https://tec.openplanner.team/stops/Ljubrec1"], ["https://tec.openplanner.team/stops/Ltibalt1", "https://tec.openplanner.team/stops/Ltibalt2"], ["https://tec.openplanner.team/stops/Cvpchat1", "https://tec.openplanner.team/stops/Cvpsthu1"], ["https://tec.openplanner.team/stops/LVIastr1", "https://tec.openplanner.team/stops/LVIdepo3"], ["https://tec.openplanner.team/stops/H4ft135a", "https://tec.openplanner.team/stops/H4ft135d"], ["https://tec.openplanner.team/stops/Lsnfont2", "https://tec.openplanner.team/stops/Lsnhorl1"], ["https://tec.openplanner.team/stops/LMAbass1", "https://tec.openplanner.team/stops/LMAcime1"], ["https://tec.openplanner.team/stops/X937aib", "https://tec.openplanner.team/stops/X937ajb"], ["https://tec.openplanner.team/stops/H1ms308c", "https://tec.openplanner.team/stops/H1ms940a"], ["https://tec.openplanner.team/stops/LBafagn1", "https://tec.openplanner.team/stops/LBahome2"], ["https://tec.openplanner.team/stops/X808aia", "https://tec.openplanner.team/stops/X808alb"], ["https://tec.openplanner.team/stops/X696ada", "https://tec.openplanner.team/stops/X696aea"], ["https://tec.openplanner.team/stops/H1ol140b", "https://tec.openplanner.team/stops/H1ol142b"], ["https://tec.openplanner.team/stops/H1pw122a", "https://tec.openplanner.team/stops/H1pw123b"], ["https://tec.openplanner.team/stops/NL72aea", "https://tec.openplanner.team/stops/NL76adb"], ["https://tec.openplanner.team/stops/LBJlieg1", "https://tec.openplanner.team/stops/LMAcomm2"], ["https://tec.openplanner.team/stops/N315aab", "https://tec.openplanner.team/stops/N365aaa"], ["https://tec.openplanner.team/stops/N383aaa", "https://tec.openplanner.team/stops/N988aca"], ["https://tec.openplanner.team/stops/LWbcarr2", "https://tec.openplanner.team/stops/LWbregn1"], ["https://tec.openplanner.team/stops/Bnivga22", "https://tec.openplanner.team/stops/Bnivga71"], ["https://tec.openplanner.team/stops/Bblacco2", "https://tec.openplanner.team/stops/Bwatb4s1"], ["https://tec.openplanner.team/stops/X837afb", "https://tec.openplanner.team/stops/X837aib"], ["https://tec.openplanner.team/stops/H1fr107c", "https://tec.openplanner.team/stops/H1fr125a"], ["https://tec.openplanner.team/stops/X658aba", "https://tec.openplanner.team/stops/X658abb"], ["https://tec.openplanner.team/stops/Cctbois1", "https://tec.openplanner.team/stops/Cctbois2"], ["https://tec.openplanner.team/stops/Cmecime2", "https://tec.openplanner.team/stops/Cvpplan1"], ["https://tec.openplanner.team/stops/H1ht121b", "https://tec.openplanner.team/stops/H1tl120b"], ["https://tec.openplanner.team/stops/LFRfagn2", "https://tec.openplanner.team/stops/LFRrohe2"], ["https://tec.openplanner.team/stops/LLelans2", "https://tec.openplanner.team/stops/X561aaa"], ["https://tec.openplanner.team/stops/LeUarno1", "https://tec.openplanner.team/stops/LeUclou1"], ["https://tec.openplanner.team/stops/X801afb", "https://tec.openplanner.team/stops/X801agb"], ["https://tec.openplanner.team/stops/X609aab", "https://tec.openplanner.team/stops/X609aob"], ["https://tec.openplanner.team/stops/LTHbelv1", "https://tec.openplanner.team/stops/LTHjevo1"], ["https://tec.openplanner.team/stops/H2sb228c", "https://tec.openplanner.team/stops/H2tr248a"], ["https://tec.openplanner.team/stops/Cmesafi2", "https://tec.openplanner.team/stops/Csasncb1"], ["https://tec.openplanner.team/stops/LSPfrai2", "https://tec.openplanner.team/stops/LSPtonn2"], ["https://tec.openplanner.team/stops/N501lia", "https://tec.openplanner.team/stops/N501lja"], ["https://tec.openplanner.team/stops/N539aka", "https://tec.openplanner.team/stops/N539amb"], ["https://tec.openplanner.team/stops/LMOchpl1", "https://tec.openplanner.team/stops/LMOfrel1"], ["https://tec.openplanner.team/stops/LFAwale1", "https://tec.openplanner.team/stops/LVBdela1"], ["https://tec.openplanner.team/stops/N511aua", "https://tec.openplanner.team/stops/N511aub"], ["https://tec.openplanner.team/stops/H4ht172a", "https://tec.openplanner.team/stops/H4ma203b"], ["https://tec.openplanner.team/stops/X730ada", "https://tec.openplanner.team/stops/X730aea"], ["https://tec.openplanner.team/stops/Bnivace1", "https://tec.openplanner.team/stops/Bnivcma1"], ["https://tec.openplanner.team/stops/LHMbami2", "https://tec.openplanner.team/stops/LMNheme2"], ["https://tec.openplanner.team/stops/Cjufagn4", "https://tec.openplanner.team/stops/Cjuregi2"], ["https://tec.openplanner.team/stops/X624aba", "https://tec.openplanner.team/stops/X624ama"], ["https://tec.openplanner.team/stops/X801chb", "https://tec.openplanner.team/stops/X836aea"], ["https://tec.openplanner.team/stops/X638afa", "https://tec.openplanner.team/stops/X638aob"], ["https://tec.openplanner.team/stops/LBLfoxh1", "https://tec.openplanner.team/stops/LBLgobc1"], ["https://tec.openplanner.team/stops/X730aba", "https://tec.openplanner.team/stops/X730aca"], ["https://tec.openplanner.team/stops/Llgcont1", "https://tec.openplanner.team/stops/LlgguilB"], ["https://tec.openplanner.team/stops/Cchcase3", "https://tec.openplanner.team/stops/Cchhopi2"], ["https://tec.openplanner.team/stops/X627aca", "https://tec.openplanner.team/stops/X627ada"], ["https://tec.openplanner.team/stops/Bsammon4", "https://tec.openplanner.team/stops/Bsampli1"], ["https://tec.openplanner.team/stops/Ladplen*", "https://tec.openplanner.team/stops/LThchar2"], ["https://tec.openplanner.team/stops/H1ms253a", "https://tec.openplanner.team/stops/H1ms912a"], ["https://tec.openplanner.team/stops/Lrclant3", "https://tec.openplanner.team/stops/Lrclant4"], ["https://tec.openplanner.team/stops/N501anb", "https://tec.openplanner.team/stops/N501anz"], ["https://tec.openplanner.team/stops/LMYchpl2", "https://tec.openplanner.team/stops/X597ala"], ["https://tec.openplanner.team/stops/N521ala", "https://tec.openplanner.team/stops/N525aba"], ["https://tec.openplanner.team/stops/N534bog", "https://tec.openplanner.team/stops/N534bya"], ["https://tec.openplanner.team/stops/Lagviad2", "https://tec.openplanner.team/stops/Lemdupo2"], ["https://tec.openplanner.team/stops/X757abb", "https://tec.openplanner.team/stops/X757aoa"], ["https://tec.openplanner.team/stops/N244aea", "https://tec.openplanner.team/stops/N248aca"], ["https://tec.openplanner.team/stops/X618aab", "https://tec.openplanner.team/stops/X618abb"], ["https://tec.openplanner.team/stops/X982bea", "https://tec.openplanner.team/stops/X982bka"], ["https://tec.openplanner.team/stops/X672aab", "https://tec.openplanner.team/stops/X817aga"], ["https://tec.openplanner.team/stops/X649aaa", "https://tec.openplanner.team/stops/X670aqb"], ["https://tec.openplanner.team/stops/H4wc372a", "https://tec.openplanner.team/stops/H4wc374a"], ["https://tec.openplanner.team/stops/H4eg108a", "https://tec.openplanner.team/stops/H4ln130a"], ["https://tec.openplanner.team/stops/X661alb", "https://tec.openplanner.team/stops/X661ava"], ["https://tec.openplanner.team/stops/Bsomwav2", "https://tec.openplanner.team/stops/N584asb"], ["https://tec.openplanner.team/stops/X394aea", "https://tec.openplanner.team/stops/X394afa"], ["https://tec.openplanner.team/stops/LSGec--1", "https://tec.openplanner.team/stops/LSGhagn2"], ["https://tec.openplanner.team/stops/X743aea", "https://tec.openplanner.team/stops/X744aaa"], ["https://tec.openplanner.team/stops/LAmarbo1", "https://tec.openplanner.team/stops/LAmbach1"], ["https://tec.openplanner.team/stops/X780abb", "https://tec.openplanner.team/stops/X790abb"], ["https://tec.openplanner.team/stops/H1cu110a", "https://tec.openplanner.team/stops/H1fl370a"], ["https://tec.openplanner.team/stops/LLUhotc2", "https://tec.openplanner.team/stops/LREfloh2"], ["https://tec.openplanner.team/stops/Ltibord1", "https://tec.openplanner.team/stops/Ltichif3"], ["https://tec.openplanner.team/stops/LFypfei1", "https://tec.openplanner.team/stops/LFypfei2"], ["https://tec.openplanner.team/stops/H1ha187b", "https://tec.openplanner.team/stops/H1ha195b"], ["https://tec.openplanner.team/stops/Bolpmre1", "https://tec.openplanner.team/stops/Bolpmre2"], ["https://tec.openplanner.team/stops/Lbocond2", "https://tec.openplanner.team/stops/Lbomidi2"], ["https://tec.openplanner.team/stops/LWDeg--1", "https://tec.openplanner.team/stops/LWDeg--2"], ["https://tec.openplanner.team/stops/Cmlcons1", "https://tec.openplanner.team/stops/Cmlgoff2"], ["https://tec.openplanner.team/stops/N212afb", "https://tec.openplanner.team/stops/N212ahb"], ["https://tec.openplanner.team/stops/N579aca", "https://tec.openplanner.team/stops/N579acb"], ["https://tec.openplanner.team/stops/H1me114a", "https://tec.openplanner.team/stops/H1me116b"], ["https://tec.openplanner.team/stops/X723ajb", "https://tec.openplanner.team/stops/X723akb"], ["https://tec.openplanner.team/stops/H4ev125b", "https://tec.openplanner.team/stops/H4ev126b"], ["https://tec.openplanner.team/stops/H1br131b", "https://tec.openplanner.team/stops/H1ev149b"], ["https://tec.openplanner.team/stops/H3th126a", "https://tec.openplanner.team/stops/H3th129b"], ["https://tec.openplanner.team/stops/Ctuplac3", "https://tec.openplanner.team/stops/NC28aea"], ["https://tec.openplanner.team/stops/X954afb", "https://tec.openplanner.team/stops/X954aha"], ["https://tec.openplanner.team/stops/N117agb", "https://tec.openplanner.team/stops/N117ajb"], ["https://tec.openplanner.team/stops/Cprrvil1", "https://tec.openplanner.team/stops/NC11aob"], ["https://tec.openplanner.team/stops/Lpecaze2", "https://tec.openplanner.team/stops/Lpegole2"], ["https://tec.openplanner.team/stops/LBBcamp2", "https://tec.openplanner.team/stops/NL81afa"], ["https://tec.openplanner.team/stops/N501ela", "https://tec.openplanner.team/stops/N501geb"], ["https://tec.openplanner.team/stops/H4hx118a", "https://tec.openplanner.team/stops/H4hx123a"], ["https://tec.openplanner.team/stops/Cmtchas2", "https://tec.openplanner.team/stops/Cmttkai1"], ["https://tec.openplanner.team/stops/Ccstord1", "https://tec.openplanner.team/stops/Chhsncb2"], ["https://tec.openplanner.team/stops/N501esb", "https://tec.openplanner.team/stops/N501nez"], ["https://tec.openplanner.team/stops/X738aea", "https://tec.openplanner.team/stops/X771aib"], ["https://tec.openplanner.team/stops/X636bgb", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/N539amb", "https://tec.openplanner.team/stops/N539ana"], ["https://tec.openplanner.team/stops/Cfojoli1", "https://tec.openplanner.team/stops/Cfojoli2"], ["https://tec.openplanner.team/stops/Bwavcin1", "https://tec.openplanner.team/stops/Bwavtrt1"], ["https://tec.openplanner.team/stops/LAibego1", "https://tec.openplanner.team/stops/LAicarr1"], ["https://tec.openplanner.team/stops/NL68aga", "https://tec.openplanner.team/stops/NL68agb"], ["https://tec.openplanner.team/stops/N120ahb", "https://tec.openplanner.team/stops/N248aea"], ["https://tec.openplanner.team/stops/LStgare*", "https://tec.openplanner.team/stops/NL80aab"], ["https://tec.openplanner.team/stops/X761abb", "https://tec.openplanner.team/stops/X761acb"], ["https://tec.openplanner.team/stops/X892aaa", "https://tec.openplanner.team/stops/X892aeb"], ["https://tec.openplanner.team/stops/LMNgend1", "https://tec.openplanner.team/stops/LMsheid2"], ["https://tec.openplanner.team/stops/N509beb", "https://tec.openplanner.team/stops/N509bfb"], ["https://tec.openplanner.team/stops/X809aab", "https://tec.openplanner.team/stops/X809aba"], ["https://tec.openplanner.team/stops/LhSgete1", "https://tec.openplanner.team/stops/LhSgete2"], ["https://tec.openplanner.team/stops/Lpeptwa1", "https://tec.openplanner.team/stops/Lpeptwa2"], ["https://tec.openplanner.team/stops/Brixbou2", "https://tec.openplanner.team/stops/Brixdec2"], ["https://tec.openplanner.team/stops/H1ca103b", "https://tec.openplanner.team/stops/H3so164a"], ["https://tec.openplanner.team/stops/N225aba", "https://tec.openplanner.team/stops/N225acb"], ["https://tec.openplanner.team/stops/X735aba", "https://tec.openplanner.team/stops/X735abb"], ["https://tec.openplanner.team/stops/Lansarm2", "https://tec.openplanner.team/stops/Lmogoff2"], ["https://tec.openplanner.team/stops/LCx728-1", "https://tec.openplanner.team/stops/LCxhame2"], ["https://tec.openplanner.team/stops/H1cu115b", "https://tec.openplanner.team/stops/H1je360b"], ["https://tec.openplanner.team/stops/N116abb", "https://tec.openplanner.team/stops/N151aja"], ["https://tec.openplanner.team/stops/LBVplan2", "https://tec.openplanner.team/stops/LLscent1"], ["https://tec.openplanner.team/stops/Bbgeegl1", "https://tec.openplanner.team/stops/Bbgever2"], ["https://tec.openplanner.team/stops/Llgomal1", "https://tec.openplanner.team/stops/Llgomal2"], ["https://tec.openplanner.team/stops/X636bfa", "https://tec.openplanner.team/stops/X649adc"], ["https://tec.openplanner.team/stops/Cflecga1", "https://tec.openplanner.team/stops/Cwgpatr2"], ["https://tec.openplanner.team/stops/X390aha", "https://tec.openplanner.team/stops/X390aja"], ["https://tec.openplanner.team/stops/X782aja", "https://tec.openplanner.team/stops/X782aka"], ["https://tec.openplanner.team/stops/N308aoa", "https://tec.openplanner.team/stops/X308akb"], ["https://tec.openplanner.team/stops/H2pe154a", "https://tec.openplanner.team/stops/H3bi118a"], ["https://tec.openplanner.team/stops/LEHhaut2", "https://tec.openplanner.team/stops/LRRmeta1"], ["https://tec.openplanner.team/stops/Cctbifu1", "https://tec.openplanner.team/stops/Cctmari1"], ["https://tec.openplanner.team/stops/LTEkerk2", "https://tec.openplanner.team/stops/LTEkl121"], ["https://tec.openplanner.team/stops/Btlbmel1", "https://tec.openplanner.team/stops/Btlbmel2"], ["https://tec.openplanner.team/stops/X639acb", "https://tec.openplanner.team/stops/X639acc"], ["https://tec.openplanner.team/stops/H2re163a", "https://tec.openplanner.team/stops/H2re174b"], ["https://tec.openplanner.team/stops/CMpara1", "https://tec.openplanner.team/stops/CMpara2"], ["https://tec.openplanner.team/stops/LLrc1652", "https://tec.openplanner.team/stops/LLrc1991"], ["https://tec.openplanner.team/stops/LLTcoop2", "https://tec.openplanner.team/stops/LLTgole2"], ["https://tec.openplanner.team/stops/LOurena1", "https://tec.openplanner.team/stops/X982bxb"], ["https://tec.openplanner.team/stops/Lhujonc1", "https://tec.openplanner.team/stops/Lhutran2"], ["https://tec.openplanner.team/stops/N135afa", "https://tec.openplanner.team/stops/N140aab"], ["https://tec.openplanner.team/stops/N301afa", "https://tec.openplanner.team/stops/N301aib"], ["https://tec.openplanner.team/stops/H4bf109a", "https://tec.openplanner.team/stops/H4bs114a"], ["https://tec.openplanner.team/stops/LPclaro1", "https://tec.openplanner.team/stops/LTGsucr1"], ["https://tec.openplanner.team/stops/X721akb", "https://tec.openplanner.team/stops/X721ama"], ["https://tec.openplanner.team/stops/Bobacar2", "https://tec.openplanner.team/stops/Bobacar3"], ["https://tec.openplanner.team/stops/H1ma231b", "https://tec.openplanner.team/stops/H1ni317a"], ["https://tec.openplanner.team/stops/Ccicouc1", "https://tec.openplanner.team/stops/Cciecol2"], ["https://tec.openplanner.team/stops/Cmlsart2", "https://tec.openplanner.team/stops/Cmlstni1"], ["https://tec.openplanner.team/stops/Ldimeun2", "https://tec.openplanner.team/stops/Ldipl--5"], ["https://tec.openplanner.team/stops/LNAmart1", "https://tec.openplanner.team/stops/LNAmart2"], ["https://tec.openplanner.team/stops/LFAec--1", "https://tec.openplanner.team/stops/LFAscie1"], ["https://tec.openplanner.team/stops/H4fr140a", "https://tec.openplanner.team/stops/H4ma420a"], ["https://tec.openplanner.team/stops/LDpulve2", "https://tec.openplanner.team/stops/LFMkrin1"], ["https://tec.openplanner.team/stops/N525aca", "https://tec.openplanner.team/stops/N525aub"], ["https://tec.openplanner.team/stops/X892aha", "https://tec.openplanner.team/stops/X892ahb"], ["https://tec.openplanner.team/stops/X639aba", "https://tec.openplanner.team/stops/X639aca"], ["https://tec.openplanner.team/stops/Lemsart1", "https://tec.openplanner.team/stops/Lemsart2"], ["https://tec.openplanner.team/stops/N543aea", "https://tec.openplanner.team/stops/N543aeb"], ["https://tec.openplanner.team/stops/Bblaast1", "https://tec.openplanner.team/stops/Bblaast2"], ["https://tec.openplanner.team/stops/Lsecroi2", "https://tec.openplanner.team/stops/Lsemara2"], ["https://tec.openplanner.team/stops/X937aka", "https://tec.openplanner.team/stops/X945aeb"], ["https://tec.openplanner.team/stops/N147aeb", "https://tec.openplanner.team/stops/N147afa"], ["https://tec.openplanner.team/stops/X734ada", "https://tec.openplanner.team/stops/X734aga"], ["https://tec.openplanner.team/stops/X871aab", "https://tec.openplanner.team/stops/X871aba"], ["https://tec.openplanner.team/stops/X641ala", "https://tec.openplanner.team/stops/X641axb"], ["https://tec.openplanner.team/stops/Bblamsp1", "https://tec.openplanner.team/stops/Bblaphi1"], ["https://tec.openplanner.team/stops/Cchheig2", "https://tec.openplanner.team/stops/CMdamp1"], ["https://tec.openplanner.team/stops/Llgmare1", "https://tec.openplanner.team/stops/Llgpoli2"], ["https://tec.openplanner.team/stops/N534apg", "https://tec.openplanner.team/stops/N534aph"], ["https://tec.openplanner.team/stops/Crs74em4", "https://tec.openplanner.team/stops/Crseuro1"], ["https://tec.openplanner.team/stops/H4ef162b", "https://tec.openplanner.team/stops/H4ef165b"], ["https://tec.openplanner.team/stops/H4ff115b", "https://tec.openplanner.team/stops/H4ff118a"], ["https://tec.openplanner.team/stops/LLvgare1", "https://tec.openplanner.team/stops/LLvgare2"], ["https://tec.openplanner.team/stops/X979aba", "https://tec.openplanner.team/stops/X979aeb"], ["https://tec.openplanner.team/stops/H5at112a", "https://tec.openplanner.team/stops/H5at132a"], ["https://tec.openplanner.team/stops/X739ahb", "https://tec.openplanner.team/stops/X912aia"], ["https://tec.openplanner.team/stops/N501cba", "https://tec.openplanner.team/stops/N501cia"], ["https://tec.openplanner.team/stops/Lscchat2", "https://tec.openplanner.team/stops/Lscferr1"], ["https://tec.openplanner.team/stops/Lceourt2", "https://tec.openplanner.team/stops/Lcepoul2"], ["https://tec.openplanner.team/stops/X601bob", "https://tec.openplanner.team/stops/X601bub"], ["https://tec.openplanner.team/stops/H4lg101a", "https://tec.openplanner.team/stops/H4rm111b"], ["https://tec.openplanner.team/stops/N565aib", "https://tec.openplanner.team/stops/N565aka"], ["https://tec.openplanner.team/stops/N301aab", "https://tec.openplanner.team/stops/N301aba"], ["https://tec.openplanner.team/stops/LHrchez1", "https://tec.openplanner.team/stops/LHrchez2"], ["https://tec.openplanner.team/stops/LeLdorf1", "https://tec.openplanner.team/stops/LkAsonn1"], ["https://tec.openplanner.team/stops/H4fa128b", "https://tec.openplanner.team/stops/H4ms144b"], ["https://tec.openplanner.team/stops/X640aha", "https://tec.openplanner.team/stops/X640ahb"], ["https://tec.openplanner.team/stops/X801atb", "https://tec.openplanner.team/stops/X889aea"], ["https://tec.openplanner.team/stops/N538alb", "https://tec.openplanner.team/stops/N538ama"], ["https://tec.openplanner.team/stops/LNEbo472", "https://tec.openplanner.team/stops/LXHfalh1"], ["https://tec.openplanner.team/stops/Lghchap1", "https://tec.openplanner.team/stops/Lghmont1"], ["https://tec.openplanner.team/stops/LSPbass2", "https://tec.openplanner.team/stops/LSPfrai2"], ["https://tec.openplanner.team/stops/Lmlbaro2", "https://tec.openplanner.team/stops/Lmlchev2"], ["https://tec.openplanner.team/stops/LeYauto2", "https://tec.openplanner.team/stops/LeYroth1"], ["https://tec.openplanner.team/stops/Lgdegli2", "https://tec.openplanner.team/stops/Lgdrena2"], ["https://tec.openplanner.team/stops/Cgymast1", "https://tec.openplanner.team/stops/Cgyrdid1"], ["https://tec.openplanner.team/stops/Cmastma2", "https://tec.openplanner.team/stops/CMmoul1"], ["https://tec.openplanner.team/stops/Bchadpt1", "https://tec.openplanner.team/stops/Bcrnnca2"], ["https://tec.openplanner.team/stops/X904aib", "https://tec.openplanner.team/stops/X904aka"], ["https://tec.openplanner.team/stops/Bmalsmc1", "https://tec.openplanner.team/stops/Bopprju2"], ["https://tec.openplanner.team/stops/Ldipiss1", "https://tec.openplanner.team/stops/Ldipost1"], ["https://tec.openplanner.team/stops/N209acb", "https://tec.openplanner.team/stops/N209adb"], ["https://tec.openplanner.team/stops/H2lh128a", "https://tec.openplanner.team/stops/H2lh132a"], ["https://tec.openplanner.team/stops/LBPauto2", "https://tec.openplanner.team/stops/LBPmais2"], ["https://tec.openplanner.team/stops/LSZarbe2", "https://tec.openplanner.team/stops/LTgwarf1"], ["https://tec.openplanner.team/stops/Llithon2", "https://tec.openplanner.team/stops/Lvochev2"], ["https://tec.openplanner.team/stops/LESchat2", "https://tec.openplanner.team/stops/LTIptme1"], ["https://tec.openplanner.team/stops/X614bra", "https://tec.openplanner.team/stops/X615arb"], ["https://tec.openplanner.team/stops/H2mo124b", "https://tec.openplanner.team/stops/H2mo144a"], ["https://tec.openplanner.team/stops/X634aba", "https://tec.openplanner.team/stops/X634acb"], ["https://tec.openplanner.team/stops/Lgreg--2", "https://tec.openplanner.team/stops/Lgrside2"], ["https://tec.openplanner.team/stops/Bhmmpos2", "https://tec.openplanner.team/stops/Bhmmtou1"], ["https://tec.openplanner.team/stops/LCUgale1", "https://tec.openplanner.team/stops/LCUjonc1"], ["https://tec.openplanner.team/stops/LTecent2", "https://tec.openplanner.team/stops/LTecent4"], ["https://tec.openplanner.team/stops/LsVgore2", "https://tec.openplanner.team/stops/LsVmolk2"], ["https://tec.openplanner.team/stops/Btslhau1", "https://tec.openplanner.team/stops/Btsllec2"], ["https://tec.openplanner.team/stops/X651aaa", "https://tec.openplanner.team/stops/X658aaa"], ["https://tec.openplanner.team/stops/N501gpb", "https://tec.openplanner.team/stops/N501gpz"], ["https://tec.openplanner.team/stops/H4ef164a", "https://tec.openplanner.team/stops/H4ef164b"], ["https://tec.openplanner.team/stops/Blemwro1", "https://tec.openplanner.team/stops/Blemwro2"], ["https://tec.openplanner.team/stops/X636anb", "https://tec.openplanner.team/stops/X636aqc"], ["https://tec.openplanner.team/stops/X605adb", "https://tec.openplanner.team/stops/X634akb"], ["https://tec.openplanner.team/stops/X750ana", "https://tec.openplanner.team/stops/X777acb"], ["https://tec.openplanner.team/stops/X641awa", "https://tec.openplanner.team/stops/X641awb"], ["https://tec.openplanner.team/stops/N120aca", "https://tec.openplanner.team/stops/N120acb"], ["https://tec.openplanner.team/stops/LHHecol1", "https://tec.openplanner.team/stops/LHHplac1"], ["https://tec.openplanner.team/stops/LJueg--2", "https://tec.openplanner.team/stops/LMolone2"], ["https://tec.openplanner.team/stops/Cfcchen2", "https://tec.openplanner.team/stops/Cvretan2"], ["https://tec.openplanner.team/stops/Clcfall3", "https://tec.openplanner.team/stops/Clcfall4"], ["https://tec.openplanner.team/stops/H1sd342a", "https://tec.openplanner.team/stops/H1sd346a"], ["https://tec.openplanner.team/stops/Llghaye2", "https://tec.openplanner.team/stops/Llghenr1"], ["https://tec.openplanner.team/stops/LaMahof2", "https://tec.openplanner.team/stops/LaMjous1"], ["https://tec.openplanner.team/stops/X739aga", "https://tec.openplanner.team/stops/X773abb"], ["https://tec.openplanner.team/stops/LmD163-1", "https://tec.openplanner.team/stops/LmD163-2"], ["https://tec.openplanner.team/stops/Cthcrom1", "https://tec.openplanner.team/stops/Cthwaib1"], ["https://tec.openplanner.team/stops/Ccycont2", "https://tec.openplanner.team/stops/Crbreve1"], ["https://tec.openplanner.team/stops/Cgzchab2", "https://tec.openplanner.team/stops/Cgzcour2"], ["https://tec.openplanner.team/stops/X820aeb", "https://tec.openplanner.team/stops/X820ama"], ["https://tec.openplanner.team/stops/H1ms285a", "https://tec.openplanner.team/stops/H1ms910a"], ["https://tec.openplanner.team/stops/NH01aqa", "https://tec.openplanner.team/stops/NH01aqb"], ["https://tec.openplanner.team/stops/X995adc", "https://tec.openplanner.team/stops/X995add"], ["https://tec.openplanner.team/stops/Bhptcha1", "https://tec.openplanner.team/stops/Bhptcha2"], ["https://tec.openplanner.team/stops/H1fl142a", "https://tec.openplanner.team/stops/H1fl142b"], ["https://tec.openplanner.team/stops/X657aca", "https://tec.openplanner.team/stops/X657adb"], ["https://tec.openplanner.team/stops/H1ob331b", "https://tec.openplanner.team/stops/H1ob341b"], ["https://tec.openplanner.team/stops/Bnstver1", "https://tec.openplanner.team/stops/H2mi125a"], ["https://tec.openplanner.team/stops/H1br121a", "https://tec.openplanner.team/stops/H1em110a"], ["https://tec.openplanner.team/stops/Caicalv2", "https://tec.openplanner.team/stops/NC11ana"], ["https://tec.openplanner.team/stops/H4do104a", "https://tec.openplanner.team/stops/H4do104b"], ["https://tec.openplanner.team/stops/H4mo161a", "https://tec.openplanner.team/stops/H4mo180a"], ["https://tec.openplanner.team/stops/H2ll182a", "https://tec.openplanner.team/stops/H2ll257a"], ["https://tec.openplanner.team/stops/Bspkbeu2", "https://tec.openplanner.team/stops/Bspkkhe1"], ["https://tec.openplanner.team/stops/Cbfchla1", "https://tec.openplanner.team/stops/Cbfusin1"], ["https://tec.openplanner.team/stops/Bwatpas1", "https://tec.openplanner.team/stops/Bwatrdu1"], ["https://tec.openplanner.team/stops/H4co151a", "https://tec.openplanner.team/stops/H4wn138a"], ["https://tec.openplanner.team/stops/LFmlens2", "https://tec.openplanner.team/stops/LFmpoin1"], ["https://tec.openplanner.team/stops/X773afb", "https://tec.openplanner.team/stops/X773agb"], ["https://tec.openplanner.team/stops/N558amb", "https://tec.openplanner.team/stops/N558amd"], ["https://tec.openplanner.team/stops/Bhenhau1", "https://tec.openplanner.team/stops/Bhenmal1"], ["https://tec.openplanner.team/stops/H1ht124a", "https://tec.openplanner.team/stops/H1ht135a"], ["https://tec.openplanner.team/stops/Bixllep1", "https://tec.openplanner.team/stops/Bixlpat1"], ["https://tec.openplanner.team/stops/H1gc123a", "https://tec.openplanner.team/stops/H1hy125a"], ["https://tec.openplanner.team/stops/LLxcbr-1", "https://tec.openplanner.team/stops/LLxcrem1"], ["https://tec.openplanner.team/stops/Lsmberg1", "https://tec.openplanner.team/stops/Lsmberg2"], ["https://tec.openplanner.team/stops/X743aba", "https://tec.openplanner.team/stops/X743acb"], ["https://tec.openplanner.team/stops/LmD181-1", "https://tec.openplanner.team/stops/LmDhoch3"], ["https://tec.openplanner.team/stops/H4ef109b", "https://tec.openplanner.team/stops/H4ef138a"], ["https://tec.openplanner.team/stops/X601aea", "https://tec.openplanner.team/stops/X601ara"], ["https://tec.openplanner.team/stops/LTobilz1", "https://tec.openplanner.team/stops/LTolijn*"], ["https://tec.openplanner.team/stops/N555aba", "https://tec.openplanner.team/stops/N555aca"], ["https://tec.openplanner.team/stops/N506bxa", "https://tec.openplanner.team/stops/N506bxb"], ["https://tec.openplanner.team/stops/Cchheig2", "https://tec.openplanner.team/stops/Cdadest1"], ["https://tec.openplanner.team/stops/LAascie2", "https://tec.openplanner.team/stops/LOChuy-1"], ["https://tec.openplanner.team/stops/Lrcpaqu1", "https://tec.openplanner.team/stops/Lrcrars2"], ["https://tec.openplanner.team/stops/Bcrnegl1", "https://tec.openplanner.team/stops/Bcrnnpl2"], ["https://tec.openplanner.team/stops/X725aea", "https://tec.openplanner.team/stops/X725awa"], ["https://tec.openplanner.team/stops/Btslegl1", "https://tec.openplanner.team/stops/Btslpic6"], ["https://tec.openplanner.team/stops/Cfrbrin2", "https://tec.openplanner.team/stops/Cfrsour2"], ["https://tec.openplanner.team/stops/Bndb4ch1", "https://tec.openplanner.team/stops/Bndbpco2"], ["https://tec.openplanner.team/stops/NB33akb", "https://tec.openplanner.team/stops/NB33alb"], ["https://tec.openplanner.team/stops/X818aga", "https://tec.openplanner.team/stops/X818aha"], ["https://tec.openplanner.team/stops/Bsmgres1", "https://tec.openplanner.team/stops/Bsmgres2"], ["https://tec.openplanner.team/stops/N214adb", "https://tec.openplanner.team/stops/N228aba"], ["https://tec.openplanner.team/stops/Ljuathe1", "https://tec.openplanner.team/stops/Ljuathe2"], ["https://tec.openplanner.team/stops/Buccfja1", "https://tec.openplanner.team/stops/Buccplj1"], ["https://tec.openplanner.team/stops/Lmagara2", "https://tec.openplanner.team/stops/Lrosoxh1"], ["https://tec.openplanner.team/stops/LNAdemo2", "https://tec.openplanner.team/stops/LYEphar2"], ["https://tec.openplanner.team/stops/Lagcler2", "https://tec.openplanner.team/stops/Lagtilf1"], ["https://tec.openplanner.team/stops/H2ha128b", "https://tec.openplanner.team/stops/H2hg145a"], ["https://tec.openplanner.team/stops/H1er109a", "https://tec.openplanner.team/stops/H1er110a"], ["https://tec.openplanner.team/stops/X923aaa", "https://tec.openplanner.team/stops/X923aba"], ["https://tec.openplanner.team/stops/H1ht121a", "https://tec.openplanner.team/stops/H1ht135b"], ["https://tec.openplanner.team/stops/Ccybeau1", "https://tec.openplanner.team/stops/Ccybeau2"], ["https://tec.openplanner.team/stops/X738aaa", "https://tec.openplanner.team/stops/X738aab"], ["https://tec.openplanner.team/stops/Bolggar2", "https://tec.openplanner.team/stops/Bolppla1"], ["https://tec.openplanner.team/stops/N528ada", "https://tec.openplanner.team/stops/N528aua"], ["https://tec.openplanner.team/stops/LJAroue1", "https://tec.openplanner.team/stops/LSU50--1"], ["https://tec.openplanner.team/stops/Cci4091", "https://tec.openplanner.team/stops/Cci4092"], ["https://tec.openplanner.team/stops/H4hx109b", "https://tec.openplanner.team/stops/H4hx115a"], ["https://tec.openplanner.team/stops/Lgrdemo1", "https://tec.openplanner.team/stops/Lgrdemo2"], ["https://tec.openplanner.team/stops/LlZbell2", "https://tec.openplanner.team/stops/LmNmerl1"], ["https://tec.openplanner.team/stops/Bvircen2", "https://tec.openplanner.team/stops/Bvirduj2"], ["https://tec.openplanner.team/stops/LORlieg1", "https://tec.openplanner.team/stops/LORmont2"], ["https://tec.openplanner.team/stops/Blemwob2", "https://tec.openplanner.team/stops/Bstecal2"], ["https://tec.openplanner.team/stops/Bbst4br3", "https://tec.openplanner.team/stops/Cbtbras1"], ["https://tec.openplanner.team/stops/Llglaha2", "https://tec.openplanner.team/stops/Llgoeil2"], ["https://tec.openplanner.team/stops/X879acb", "https://tec.openplanner.team/stops/X879aqb"], ["https://tec.openplanner.team/stops/Btsllib1", "https://tec.openplanner.team/stops/Btslnil1"], ["https://tec.openplanner.team/stops/N236afa", "https://tec.openplanner.team/stops/N236afb"], ["https://tec.openplanner.team/stops/Bovesog2", "https://tec.openplanner.team/stops/Bovevnd2"], ["https://tec.openplanner.team/stops/LAWdefr2", "https://tec.openplanner.team/stops/LAWxhen1"], ["https://tec.openplanner.team/stops/X943adb", "https://tec.openplanner.team/stops/X943aea"], ["https://tec.openplanner.team/stops/Lfhmalv1", "https://tec.openplanner.team/stops/Lfhmalv2"], ["https://tec.openplanner.team/stops/N229ama", "https://tec.openplanner.team/stops/N229aoa"], ["https://tec.openplanner.team/stops/H2bh118a", "https://tec.openplanner.team/stops/H2bh119a"], ["https://tec.openplanner.team/stops/LAYdieu2", "https://tec.openplanner.team/stops/LFLetoi2"], ["https://tec.openplanner.team/stops/Cblbaiv1", "https://tec.openplanner.team/stops/Cblbaiv2"], ["https://tec.openplanner.team/stops/LSSfont2", "https://tec.openplanner.team/stops/LSSfrai1"], ["https://tec.openplanner.team/stops/N145aec", "https://tec.openplanner.team/stops/N149acb"], ["https://tec.openplanner.team/stops/Loumatt1", "https://tec.openplanner.team/stops/Loumatt2"], ["https://tec.openplanner.team/stops/H4ce104a", "https://tec.openplanner.team/stops/H4ce106b"], ["https://tec.openplanner.team/stops/LHrreal1", "https://tec.openplanner.team/stops/LHrreal2"], ["https://tec.openplanner.team/stops/LhIfrie1", "https://tec.openplanner.team/stops/LrDneun1"], ["https://tec.openplanner.team/stops/LWHkerk2", "https://tec.openplanner.team/stops/LWHzave2"], ["https://tec.openplanner.team/stops/X725afe", "https://tec.openplanner.team/stops/X725aff"], ["https://tec.openplanner.team/stops/Lancoop2", "https://tec.openplanner.team/stops/Lanschu1"], ["https://tec.openplanner.team/stops/X940afa", "https://tec.openplanner.team/stops/X940agb"], ["https://tec.openplanner.team/stops/Bjaugar2", "https://tec.openplanner.team/stops/Bjaugar5"], ["https://tec.openplanner.team/stops/H2hg267a", "https://tec.openplanner.team/stops/H2hg267b"], ["https://tec.openplanner.team/stops/Bbgepau1", "https://tec.openplanner.team/stops/Bbgepau2"], ["https://tec.openplanner.team/stops/H1el140b", "https://tec.openplanner.team/stops/H1tl121a"], ["https://tec.openplanner.team/stops/X789aaa", "https://tec.openplanner.team/stops/X789aab"], ["https://tec.openplanner.team/stops/Cmqbert1", "https://tec.openplanner.team/stops/Cmqcend1"], ["https://tec.openplanner.team/stops/N576akb", "https://tec.openplanner.team/stops/N576akc"], ["https://tec.openplanner.team/stops/N506bqb", "https://tec.openplanner.team/stops/N506bsa"], ["https://tec.openplanner.team/stops/X736aaa", "https://tec.openplanner.team/stops/X736aab"], ["https://tec.openplanner.team/stops/Cfrcomp2", "https://tec.openplanner.team/stops/Cfrcoop1"], ["https://tec.openplanner.team/stops/Ljubord2", "https://tec.openplanner.team/stops/Ljubrec1"], ["https://tec.openplanner.team/stops/LeUkehr2", "https://tec.openplanner.team/stops/LeUkehr4"], ["https://tec.openplanner.team/stops/H4og211a", "https://tec.openplanner.team/stops/H4og211b"], ["https://tec.openplanner.team/stops/N221ada", "https://tec.openplanner.team/stops/N221adb"], ["https://tec.openplanner.team/stops/Lagstre1", "https://tec.openplanner.team/stops/Lemlami1"], ["https://tec.openplanner.team/stops/LTIdamr1", "https://tec.openplanner.team/stops/LTIecma1"], ["https://tec.openplanner.team/stops/H4ve135a", "https://tec.openplanner.team/stops/H4ve137b"], ["https://tec.openplanner.team/stops/N536acb", "https://tec.openplanner.team/stops/N562bla"], ["https://tec.openplanner.team/stops/Lchmarc2", "https://tec.openplanner.team/stops/Lchsaro2"], ["https://tec.openplanner.team/stops/Balsnay2", "https://tec.openplanner.team/stops/Balswwe1"], ["https://tec.openplanner.team/stops/X659adb", "https://tec.openplanner.team/stops/X659add"], ["https://tec.openplanner.team/stops/X943abb", "https://tec.openplanner.team/stops/X943acb"], ["https://tec.openplanner.team/stops/H1bd101a", "https://tec.openplanner.team/stops/H1hq127b"], ["https://tec.openplanner.team/stops/X652aaa", "https://tec.openplanner.team/stops/X652aba"], ["https://tec.openplanner.team/stops/LLmcheg4", "https://tec.openplanner.team/stops/LLmeg--2"], ["https://tec.openplanner.team/stops/Bbgncnd1", "https://tec.openplanner.team/stops/Bbgnvel2"], ["https://tec.openplanner.team/stops/LAVcime1", "https://tec.openplanner.team/stops/LAVpequ1"], ["https://tec.openplanner.team/stops/H2ll179a", "https://tec.openplanner.team/stops/H2sv216b"], ["https://tec.openplanner.team/stops/N311abb", "https://tec.openplanner.team/stops/N368ada"], ["https://tec.openplanner.team/stops/H1bo102b", "https://tec.openplanner.team/stops/H1te178a"], ["https://tec.openplanner.team/stops/LSPptch1", "https://tec.openplanner.team/stops/LSPptch2"], ["https://tec.openplanner.team/stops/H1ma233a", "https://tec.openplanner.team/stops/H1mj130b"], ["https://tec.openplanner.team/stops/Csiegli2", "https://tec.openplanner.team/stops/N106afb"], ["https://tec.openplanner.team/stops/LESoneu3", "https://tec.openplanner.team/stops/LVtchai1"], ["https://tec.openplanner.team/stops/Bchgcha2", "https://tec.openplanner.team/stops/Bchgqve2"], ["https://tec.openplanner.team/stops/Cjuheig1", "https://tec.openplanner.team/stops/Cjupier1"], ["https://tec.openplanner.team/stops/Llianix1", "https://tec.openplanner.team/stops/Lligare2"], ["https://tec.openplanner.team/stops/LFothie1", "https://tec.openplanner.team/stops/LJAdeho2"], ["https://tec.openplanner.team/stops/Ladegli1", "https://tec.openplanner.team/stops/Lveinva2"], ["https://tec.openplanner.team/stops/LPLbiol1", "https://tec.openplanner.team/stops/LPLbiol2"], ["https://tec.openplanner.team/stops/H5pe144a", "https://tec.openplanner.team/stops/H5pe146a"], ["https://tec.openplanner.team/stops/N501lja", "https://tec.openplanner.team/stops/N501lmb"], ["https://tec.openplanner.team/stops/Blsmjja1", "https://tec.openplanner.team/stops/Bolgmpl1"], ["https://tec.openplanner.team/stops/LNEec--1", "https://tec.openplanner.team/stops/LOL6che2"], ["https://tec.openplanner.team/stops/H1fr122a", "https://tec.openplanner.team/stops/H1fr124a"], ["https://tec.openplanner.team/stops/X317aaa", "https://tec.openplanner.team/stops/X317aab"], ["https://tec.openplanner.team/stops/X606aba", "https://tec.openplanner.team/stops/X636aoa"], ["https://tec.openplanner.team/stops/H4by115d", "https://tec.openplanner.team/stops/H4by116b"], ["https://tec.openplanner.team/stops/H1sb147b", "https://tec.openplanner.team/stops/H1sb150a"], ["https://tec.openplanner.team/stops/X638ada", "https://tec.openplanner.team/stops/X638adb"], ["https://tec.openplanner.team/stops/H4ws158b", "https://tec.openplanner.team/stops/H4ws159a"], ["https://tec.openplanner.team/stops/H2jo163a", "https://tec.openplanner.team/stops/H2ll260b"], ["https://tec.openplanner.team/stops/LSzcoop1", "https://tec.openplanner.team/stops/LSzsurl1"], ["https://tec.openplanner.team/stops/N543aga", "https://tec.openplanner.team/stops/N543agb"], ["https://tec.openplanner.team/stops/LAx17--2", "https://tec.openplanner.team/stops/LAxbott2"], ["https://tec.openplanner.team/stops/LAUbirv2", "https://tec.openplanner.team/stops/LHMchev1"], ["https://tec.openplanner.team/stops/LHDchar3", "https://tec.openplanner.team/stops/LHDmc--2"], ["https://tec.openplanner.team/stops/N424abb", "https://tec.openplanner.team/stops/N424acb"], ["https://tec.openplanner.team/stops/X790aaa", "https://tec.openplanner.team/stops/X790acb"], ["https://tec.openplanner.team/stops/H2ch104a", "https://tec.openplanner.team/stops/H2ch106a"], ["https://tec.openplanner.team/stops/LLrfrai1", "https://tec.openplanner.team/stops/LLrgobe2"], ["https://tec.openplanner.team/stops/Bsgebou2", "https://tec.openplanner.team/stops/Bsgetri2"], ["https://tec.openplanner.team/stops/LbEkirc*", "https://tec.openplanner.team/stops/LeLdorf2"], ["https://tec.openplanner.team/stops/X879aca", "https://tec.openplanner.team/stops/X879ada"], ["https://tec.openplanner.team/stops/Cwgcamp1", "https://tec.openplanner.team/stops/Cwgpatr2"], ["https://tec.openplanner.team/stops/H4ar103b", "https://tec.openplanner.team/stops/H4ar173b"], ["https://tec.openplanner.team/stops/Llghopo1", "https://tec.openplanner.team/stops/Llgparc1"], ["https://tec.openplanner.team/stops/X985aca", "https://tec.openplanner.team/stops/X985acb"], ["https://tec.openplanner.team/stops/Lsnbrac1", "https://tec.openplanner.team/stops/Lsnbrac2"], ["https://tec.openplanner.team/stops/Bllnfle2", "https://tec.openplanner.team/stops/Bllnjpa1"], ["https://tec.openplanner.team/stops/H4bo114a", "https://tec.openplanner.team/stops/H4bo181b"], ["https://tec.openplanner.team/stops/LOCbois1", "https://tec.openplanner.team/stops/N223aba"], ["https://tec.openplanner.team/stops/H1ca102b", "https://tec.openplanner.team/stops/H1ca103b"], ["https://tec.openplanner.team/stops/N511aia", "https://tec.openplanner.team/stops/N512ama"], ["https://tec.openplanner.team/stops/LsVrodt2", "https://tec.openplanner.team/stops/LsVsimo1"], ["https://tec.openplanner.team/stops/Cchcaya1", "https://tec.openplanner.team/stops/Cchicet1"], ["https://tec.openplanner.team/stops/H4do101a", "https://tec.openplanner.team/stops/H4do101b"], ["https://tec.openplanner.team/stops/N521aba", "https://tec.openplanner.team/stops/N521arb"], ["https://tec.openplanner.team/stops/H4ka179b", "https://tec.openplanner.team/stops/H4ka180a"], ["https://tec.openplanner.team/stops/LNCimpe1", "https://tec.openplanner.team/stops/LRRbonr1"], ["https://tec.openplanner.team/stops/X607aga", "https://tec.openplanner.team/stops/X607agb"], ["https://tec.openplanner.team/stops/LTiforg1", "https://tec.openplanner.team/stops/LTiterr2"], ["https://tec.openplanner.team/stops/H4ta134b", "https://tec.openplanner.team/stops/H4wu377b"], ["https://tec.openplanner.team/stops/N139aaa", "https://tec.openplanner.team/stops/N139aeb"], ["https://tec.openplanner.team/stops/H4bo114b", "https://tec.openplanner.team/stops/H4bo114c"], ["https://tec.openplanner.team/stops/N234aaa", "https://tec.openplanner.team/stops/N234abb"], ["https://tec.openplanner.team/stops/Bfelada1", "https://tec.openplanner.team/stops/Bfelrav2"], ["https://tec.openplanner.team/stops/N501kea", "https://tec.openplanner.team/stops/N501kna"], ["https://tec.openplanner.team/stops/N584cba", "https://tec.openplanner.team/stops/N584cbb"], ["https://tec.openplanner.team/stops/LkEcoop1", "https://tec.openplanner.team/stops/LkEwolf2"], ["https://tec.openplanner.team/stops/X601bda", "https://tec.openplanner.team/stops/X601bfb"], ["https://tec.openplanner.team/stops/H1ms257a", "https://tec.openplanner.team/stops/H1ms260b"], ["https://tec.openplanner.team/stops/Llgcurt1", "https://tec.openplanner.team/stops/Llgdepo2"], ["https://tec.openplanner.team/stops/LEnchan2", "https://tec.openplanner.team/stops/NL67aab"], ["https://tec.openplanner.team/stops/N534amg", "https://tec.openplanner.team/stops/N543aga"], ["https://tec.openplanner.team/stops/X664ata", "https://tec.openplanner.team/stops/X664atb"], ["https://tec.openplanner.team/stops/Cacgare1", "https://tec.openplanner.team/stops/Cacgare2"], ["https://tec.openplanner.team/stops/H1nm140a", "https://tec.openplanner.team/stops/H1si164a"], ["https://tec.openplanner.team/stops/Bperwil1", "https://tec.openplanner.team/stops/Bperwil2"], ["https://tec.openplanner.team/stops/H1ag104a", "https://tec.openplanner.team/stops/H1ro140b"], ["https://tec.openplanner.team/stops/H4ro157b", "https://tec.openplanner.team/stops/H5pe176a"], ["https://tec.openplanner.team/stops/N560aab", "https://tec.openplanner.team/stops/N560ada"], ["https://tec.openplanner.team/stops/LScgore1", "https://tec.openplanner.team/stops/LVTtrou2"], ["https://tec.openplanner.team/stops/LBieg--4", "https://tec.openplanner.team/stops/LBivill2"], ["https://tec.openplanner.team/stops/Bnivgam1", "https://tec.openplanner.team/stops/Bnivmet1"], ["https://tec.openplanner.team/stops/Cdamest1", "https://tec.openplanner.team/stops/Cdaviol1"], ["https://tec.openplanner.team/stops/LNoenne2", "https://tec.openplanner.team/stops/X917aia"], ["https://tec.openplanner.team/stops/Ccobour1", "https://tec.openplanner.team/stops/Cgxfo142"], ["https://tec.openplanner.team/stops/X618ala", "https://tec.openplanner.team/stops/X618alb"], ["https://tec.openplanner.team/stops/N501kva", "https://tec.openplanner.team/stops/N501kzb"], ["https://tec.openplanner.team/stops/N232bwa", "https://tec.openplanner.team/stops/N260afb"], ["https://tec.openplanner.team/stops/Lrcauto1", "https://tec.openplanner.team/stops/Lvtpepi2"], ["https://tec.openplanner.team/stops/Cgosmoi2", "https://tec.openplanner.team/stops/Cjuheig1"], ["https://tec.openplanner.team/stops/X736aca", "https://tec.openplanner.team/stops/X736ada"], ["https://tec.openplanner.team/stops/LESathe2", "https://tec.openplanner.team/stops/LESecco2"], ["https://tec.openplanner.team/stops/Lsefore1", "https://tec.openplanner.team/stops/Lsevill2"], ["https://tec.openplanner.team/stops/LBEchan2", "https://tec.openplanner.team/stops/LBEhaye1"], ["https://tec.openplanner.team/stops/LmNkrew1", "https://tec.openplanner.team/stops/LoUpete2"], ["https://tec.openplanner.team/stops/Bcseche1", "https://tec.openplanner.team/stops/Bsmgsuz1"], ["https://tec.openplanner.team/stops/LHThall4", "https://tec.openplanner.team/stops/LWOwaer1"], ["https://tec.openplanner.team/stops/Ctachst2", "https://tec.openplanner.team/stops/Ctapn2"], ["https://tec.openplanner.team/stops/LsVbs--*", "https://tec.openplanner.team/stops/LsVgrun1"], ["https://tec.openplanner.team/stops/H4ty325a", "https://tec.openplanner.team/stops/H4ty330c"], ["https://tec.openplanner.team/stops/X759acb", "https://tec.openplanner.team/stops/X759ada"], ["https://tec.openplanner.team/stops/Lre3che1", "https://tec.openplanner.team/stops/Lrebriq2"], ["https://tec.openplanner.team/stops/X921aba", "https://tec.openplanner.team/stops/X921abb"], ["https://tec.openplanner.team/stops/Bgnvfai1", "https://tec.openplanner.team/stops/Bgnvfai2"], ["https://tec.openplanner.team/stops/H5rx112a", "https://tec.openplanner.team/stops/H5rx136a"], ["https://tec.openplanner.team/stops/H2gy100b", "https://tec.openplanner.team/stops/H2gy109a"], ["https://tec.openplanner.team/stops/Lsebelv1", "https://tec.openplanner.team/stops/Lsebelv2"], ["https://tec.openplanner.team/stops/Cplrymo1", "https://tec.openplanner.team/stops/NC11aga"], ["https://tec.openplanner.team/stops/Ctufleu1", "https://tec.openplanner.team/stops/Cturoge2"], ["https://tec.openplanner.team/stops/LWAmois2", "https://tec.openplanner.team/stops/LWAor--1"], ["https://tec.openplanner.team/stops/LElgerd3", "https://tec.openplanner.team/stops/LTaabba1"], ["https://tec.openplanner.team/stops/Clocroi1", "https://tec.openplanner.team/stops/Clogfay2"], ["https://tec.openplanner.team/stops/N218acc", "https://tec.openplanner.team/stops/N331aea"], ["https://tec.openplanner.team/stops/X741aid", "https://tec.openplanner.team/stops/X741aoa"], ["https://tec.openplanner.team/stops/X991adb", "https://tec.openplanner.team/stops/X991ahb"], ["https://tec.openplanner.team/stops/Cgzabau2", "https://tec.openplanner.team/stops/Cgzfarc1"], ["https://tec.openplanner.team/stops/X727aga", "https://tec.openplanner.team/stops/X754axb"], ["https://tec.openplanner.team/stops/LBNhegg2", "https://tec.openplanner.team/stops/LBNruns2"], ["https://tec.openplanner.team/stops/N505aoa", "https://tec.openplanner.team/stops/N536acb"], ["https://tec.openplanner.team/stops/H1gh167b", "https://tec.openplanner.team/stops/H1gh168b"], ["https://tec.openplanner.team/stops/H4mb203a", "https://tec.openplanner.team/stops/H4mb205a"], ["https://tec.openplanner.team/stops/LeUrath1", "https://tec.openplanner.team/stops/LeUrath2"], ["https://tec.openplanner.team/stops/Boveker1", "https://tec.openplanner.team/stops/Bovesol1"], ["https://tec.openplanner.team/stops/Ccychap1", "https://tec.openplanner.team/stops/Ccygara1"], ["https://tec.openplanner.team/stops/Cnaha561", "https://tec.openplanner.team/stops/Cnating1"], ["https://tec.openplanner.team/stops/LGegare1", "https://tec.openplanner.team/stops/LkEsouf1"], ["https://tec.openplanner.team/stops/Bitrpri2", "https://tec.openplanner.team/stops/Bosqpco1"], ["https://tec.openplanner.team/stops/H4rc232b", "https://tec.openplanner.team/stops/H4rc232c"], ["https://tec.openplanner.team/stops/N209aeb", "https://tec.openplanner.team/stops/N209afa"], ["https://tec.openplanner.team/stops/Bbsttab1", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/X952alb", "https://tec.openplanner.team/stops/X955aaa"], ["https://tec.openplanner.team/stops/H1mk108d", "https://tec.openplanner.team/stops/H1mk117b"], ["https://tec.openplanner.team/stops/X774aeb", "https://tec.openplanner.team/stops/X774afb"], ["https://tec.openplanner.team/stops/Lalexpa1", "https://tec.openplanner.team/stops/Lrccomm1"], ["https://tec.openplanner.team/stops/Cgxcime1", "https://tec.openplanner.team/stops/Cgxmaco1"], ["https://tec.openplanner.team/stops/X604ada", "https://tec.openplanner.team/stops/X604aea"], ["https://tec.openplanner.team/stops/H4ga148b", "https://tec.openplanner.team/stops/H4ga165a"], ["https://tec.openplanner.team/stops/H1ms266a", "https://tec.openplanner.team/stops/H1ms266b"], ["https://tec.openplanner.team/stops/Blpgbat2", "https://tec.openplanner.team/stops/Blpghou2"], ["https://tec.openplanner.team/stops/Llgbaya2", "https://tec.openplanner.team/stops/Llgborg2"], ["https://tec.openplanner.team/stops/LBhcent1", "https://tec.openplanner.team/stops/LLycent*"], ["https://tec.openplanner.team/stops/X757aka", "https://tec.openplanner.team/stops/X757akb"], ["https://tec.openplanner.team/stops/X657afa", "https://tec.openplanner.team/stops/X670aob"], ["https://tec.openplanner.team/stops/LBjvill3", "https://tec.openplanner.team/stops/LTB105-1"], ["https://tec.openplanner.team/stops/X608afb", "https://tec.openplanner.team/stops/X608aib"], ["https://tec.openplanner.team/stops/LBHinva1", "https://tec.openplanner.team/stops/LMechpl1"], ["https://tec.openplanner.team/stops/LHMbelv1", "https://tec.openplanner.team/stops/LHMgulp1"], ["https://tec.openplanner.team/stops/LHXfont2", "https://tec.openplanner.team/stops/LSMtarg1"], ["https://tec.openplanner.team/stops/LaM266-1", "https://tec.openplanner.team/stops/LaMades2"], ["https://tec.openplanner.team/stops/Cgxalli1", "https://tec.openplanner.team/stops/Cgxalli2"], ["https://tec.openplanner.team/stops/N512aic", "https://tec.openplanner.team/stops/N512aid"], ["https://tec.openplanner.team/stops/LAOeg--1", "https://tec.openplanner.team/stops/LBpecco2"], ["https://tec.openplanner.team/stops/N166acb", "https://tec.openplanner.team/stops/N168aaa"], ["https://tec.openplanner.team/stops/H1sy139a", "https://tec.openplanner.team/stops/H1sy143a"], ["https://tec.openplanner.team/stops/LCHrhou1", "https://tec.openplanner.team/stops/LCHrhou2"], ["https://tec.openplanner.team/stops/H4mv195b", "https://tec.openplanner.team/stops/H4va231a"], ["https://tec.openplanner.team/stops/N150adb", "https://tec.openplanner.team/stops/N150aka"], ["https://tec.openplanner.team/stops/Lmlboul1", "https://tec.openplanner.team/stops/Lmlmich2"], ["https://tec.openplanner.team/stops/X663aia", "https://tec.openplanner.team/stops/X663ama"], ["https://tec.openplanner.team/stops/X629aba", "https://tec.openplanner.team/stops/X636atb"], ["https://tec.openplanner.team/stops/Lfhvoye1", "https://tec.openplanner.team/stops/Lfhvoye2"], ["https://tec.openplanner.team/stops/X902aia", "https://tec.openplanner.team/stops/X902ara"], ["https://tec.openplanner.team/stops/LAnvien1", "https://tec.openplanner.team/stops/LAnvien2"], ["https://tec.openplanner.team/stops/Bbgevil2", "https://tec.openplanner.team/stops/Bbgewal1"], ["https://tec.openplanner.team/stops/Cfomays1", "https://tec.openplanner.team/stops/CMpara2"], ["https://tec.openplanner.team/stops/N505aaa", "https://tec.openplanner.team/stops/N505aab"], ["https://tec.openplanner.team/stops/Lbhbalt2", "https://tec.openplanner.team/stops/LMFmoul1"], ["https://tec.openplanner.team/stops/LrUweve2", "https://tec.openplanner.team/stops/LsFcafe1"], ["https://tec.openplanner.team/stops/Cmtcapi1", "https://tec.openplanner.team/stops/Cmtfoye1"], ["https://tec.openplanner.team/stops/Csdjeme1", "https://tec.openplanner.team/stops/Csdjeme2"], ["https://tec.openplanner.team/stops/LSMec--1", "https://tec.openplanner.team/stops/LSMpoin2"], ["https://tec.openplanner.team/stops/X896afb", "https://tec.openplanner.team/stops/X897apa"], ["https://tec.openplanner.team/stops/N117aya", "https://tec.openplanner.team/stops/N147adb"], ["https://tec.openplanner.team/stops/X829abb", "https://tec.openplanner.team/stops/X829aeb"], ["https://tec.openplanner.team/stops/N261aab", "https://tec.openplanner.team/stops/N338ahb"], ["https://tec.openplanner.team/stops/LHGtige1", "https://tec.openplanner.team/stops/LHGvill2"], ["https://tec.openplanner.team/stops/LCxc6192", "https://tec.openplanner.team/stops/LCxcour1"], ["https://tec.openplanner.team/stops/X641aja", "https://tec.openplanner.team/stops/X641aka"], ["https://tec.openplanner.team/stops/LCsbors2", "https://tec.openplanner.team/stops/LCschen1"], ["https://tec.openplanner.team/stops/Llgpier1", "https://tec.openplanner.team/stops/Llgterr1"], ["https://tec.openplanner.team/stops/X756aaa", "https://tec.openplanner.team/stops/X756akb"], ["https://tec.openplanner.team/stops/H2ha138b", "https://tec.openplanner.team/stops/H2ha139a"], ["https://tec.openplanner.team/stops/LFAtomb2", "https://tec.openplanner.team/stops/LLTfall2"], ["https://tec.openplanner.team/stops/LHNhv--1", "https://tec.openplanner.team/stops/LHNwaut1"], ["https://tec.openplanner.team/stops/H1mk107a", "https://tec.openplanner.team/stops/H1mk107b"], ["https://tec.openplanner.team/stops/H5qu156a", "https://tec.openplanner.team/stops/H5qu156b"], ["https://tec.openplanner.team/stops/LCeanne2", "https://tec.openplanner.team/stops/LCewaut1"], ["https://tec.openplanner.team/stops/X361aaa", "https://tec.openplanner.team/stops/X361abb"], ["https://tec.openplanner.team/stops/Bmelegl2", "https://tec.openplanner.team/stops/Bmelmqu1"], ["https://tec.openplanner.team/stops/Lsecris4", "https://tec.openplanner.team/stops/Lsevico2"], ["https://tec.openplanner.team/stops/N340abb", "https://tec.openplanner.team/stops/N340aeb"], ["https://tec.openplanner.team/stops/LJUxhen2", "https://tec.openplanner.team/stops/LJUxhen3"], ["https://tec.openplanner.team/stops/H1wa149b", "https://tec.openplanner.team/stops/H1wa149c"], ["https://tec.openplanner.team/stops/N525aec", "https://tec.openplanner.team/stops/N525aed"], ["https://tec.openplanner.team/stops/Buccbou2", "https://tec.openplanner.team/stops/Bucceng2"], ["https://tec.openplanner.team/stops/Crolach1", "https://tec.openplanner.team/stops/Cronova1"], ["https://tec.openplanner.team/stops/Bnetrec1", "https://tec.openplanner.team/stops/Bnettou1"], ["https://tec.openplanner.team/stops/X982akb", "https://tec.openplanner.team/stops/X982aqb"], ["https://tec.openplanner.team/stops/H1cu112a", "https://tec.openplanner.team/stops/H1cu117c"], ["https://tec.openplanner.team/stops/X636ada", "https://tec.openplanner.team/stops/X670aqa"], ["https://tec.openplanner.team/stops/Lsepudd2", "https://tec.openplanner.team/stops/Lsevico2"], ["https://tec.openplanner.team/stops/Berneco2", "https://tec.openplanner.team/stops/Bgemman1"], ["https://tec.openplanner.team/stops/H1as103a", "https://tec.openplanner.team/stops/H1nv325a"], ["https://tec.openplanner.team/stops/N229arb", "https://tec.openplanner.team/stops/N230acb"], ["https://tec.openplanner.team/stops/NR27aab", "https://tec.openplanner.team/stops/NR27abb"], ["https://tec.openplanner.team/stops/H4co104a", "https://tec.openplanner.team/stops/H4co142a"], ["https://tec.openplanner.team/stops/LkEl1211", "https://tec.openplanner.team/stops/LkEl3251"], ["https://tec.openplanner.team/stops/H1ms277a", "https://tec.openplanner.team/stops/H1ms362a"], ["https://tec.openplanner.team/stops/X818aoa", "https://tec.openplanner.team/stops/X818apb"], ["https://tec.openplanner.team/stops/X638agb", "https://tec.openplanner.team/stops/X638ajb"], ["https://tec.openplanner.team/stops/X995abb", "https://tec.openplanner.team/stops/X995adb"], ["https://tec.openplanner.team/stops/N501gpc", "https://tec.openplanner.team/stops/N501gpd"], ["https://tec.openplanner.team/stops/X939afa", "https://tec.openplanner.team/stops/X940agb"], ["https://tec.openplanner.team/stops/X822ada", "https://tec.openplanner.team/stops/X822adb"], ["https://tec.openplanner.team/stops/Cbblacb1", "https://tec.openplanner.team/stops/Cbmvalt1"], ["https://tec.openplanner.team/stops/N101acb", "https://tec.openplanner.team/stops/N101ama"], ["https://tec.openplanner.team/stops/Louvivi1", "https://tec.openplanner.team/stops/Louvivi2"], ["https://tec.openplanner.team/stops/N543bda", "https://tec.openplanner.team/stops/N543bgc"], ["https://tec.openplanner.team/stops/N141abb", "https://tec.openplanner.team/stops/N141aoa"], ["https://tec.openplanner.team/stops/Lsmgdry1", "https://tec.openplanner.team/stops/Lsmgdry2"], ["https://tec.openplanner.team/stops/X601atb", "https://tec.openplanner.team/stops/X601cra"], ["https://tec.openplanner.team/stops/H2lh132b", "https://tec.openplanner.team/stops/H2mo135b"], ["https://tec.openplanner.team/stops/Lbopote1", "https://tec.openplanner.team/stops/Lbopote2"], ["https://tec.openplanner.team/stops/Cgdfoca2", "https://tec.openplanner.team/stops/Csylaha1"], ["https://tec.openplanner.team/stops/Ccorian2", "https://tec.openplanner.team/stops/Ccostan2"], ["https://tec.openplanner.team/stops/LVnflox1", "https://tec.openplanner.team/stops/LVnvieg1"], ["https://tec.openplanner.team/stops/X654aia", "https://tec.openplanner.team/stops/X667aea"], ["https://tec.openplanner.team/stops/H4te258b", "https://tec.openplanner.team/stops/H4te259b"], ["https://tec.openplanner.team/stops/H1ss348a", "https://tec.openplanner.team/stops/H1ss351b"], ["https://tec.openplanner.team/stops/X877aca", "https://tec.openplanner.team/stops/X877acb"], ["https://tec.openplanner.team/stops/LAYcorn2", "https://tec.openplanner.team/stops/LAYlieg1"], ["https://tec.openplanner.team/stops/LOuathe1", "https://tec.openplanner.team/stops/LOuplac2"], ["https://tec.openplanner.team/stops/X661aga", "https://tec.openplanner.team/stops/X661aub"], ["https://tec.openplanner.team/stops/LLApavi1", "https://tec.openplanner.team/stops/LLxcite1"], ["https://tec.openplanner.team/stops/Cgymara1", "https://tec.openplanner.team/stops/Cgynoir1"], ["https://tec.openplanner.team/stops/N101aeb", "https://tec.openplanner.team/stops/N147aab"], ["https://tec.openplanner.team/stops/X613aba", "https://tec.openplanner.team/stops/X613abb"], ["https://tec.openplanner.team/stops/H1fy121a", "https://tec.openplanner.team/stops/H1fy143a"], ["https://tec.openplanner.team/stops/H2tr255b", "https://tec.openplanner.team/stops/H2tr256b"], ["https://tec.openplanner.team/stops/Llgcrgu2", "https://tec.openplanner.team/stops/Llghoub2"], ["https://tec.openplanner.team/stops/X640aba", "https://tec.openplanner.team/stops/X640abb"], ["https://tec.openplanner.team/stops/Cfbcal1", "https://tec.openplanner.team/stops/Cfbcal2"], ["https://tec.openplanner.team/stops/LACeg--2", "https://tec.openplanner.team/stops/LAChann2"], ["https://tec.openplanner.team/stops/N337aha", "https://tec.openplanner.team/stops/N339acb"], ["https://tec.openplanner.team/stops/LBDcarr1", "https://tec.openplanner.team/stops/LBDcarr2"], ["https://tec.openplanner.team/stops/Bbchcab2", "https://tec.openplanner.team/stops/Bbchpil1"], ["https://tec.openplanner.team/stops/N528ama", "https://tec.openplanner.team/stops/N528anb"], ["https://tec.openplanner.team/stops/Brsgepr2", "https://tec.openplanner.team/stops/Brsggol2"], ["https://tec.openplanner.team/stops/Baegegl1", "https://tec.openplanner.team/stops/Bflcneu1"], ["https://tec.openplanner.team/stops/Lgrside1", "https://tec.openplanner.team/stops/Lgrside2"], ["https://tec.openplanner.team/stops/N101anb", "https://tec.openplanner.team/stops/N101arb"], ["https://tec.openplanner.team/stops/LTHturo2", "https://tec.openplanner.team/stops/LTHturo4"], ["https://tec.openplanner.team/stops/LHoetie1", "https://tec.openplanner.team/stops/LJesole2"], ["https://tec.openplanner.team/stops/H1pd142a", "https://tec.openplanner.team/stops/H1pd146a"], ["https://tec.openplanner.team/stops/N501eib", "https://tec.openplanner.team/stops/N501kcb"], ["https://tec.openplanner.team/stops/X601asb", "https://tec.openplanner.team/stops/X601cma"], ["https://tec.openplanner.team/stops/X734and", "https://tec.openplanner.team/stops/X775ada"], ["https://tec.openplanner.team/stops/LaAdiep1", "https://tec.openplanner.team/stops/LaAneul1"], ["https://tec.openplanner.team/stops/X872aga", "https://tec.openplanner.team/stops/X887aaa"], ["https://tec.openplanner.team/stops/H1fr109a", "https://tec.openplanner.team/stops/H1fr125b"], ["https://tec.openplanner.team/stops/Cgystjo3", "https://tec.openplanner.team/stops/Cmtmath1"], ["https://tec.openplanner.team/stops/N135aza", "https://tec.openplanner.team/stops/N135bia"], ["https://tec.openplanner.team/stops/N211aea", "https://tec.openplanner.team/stops/N219aca"], ["https://tec.openplanner.team/stops/N244aab", "https://tec.openplanner.team/stops/N244aha"], ["https://tec.openplanner.team/stops/Ccuhsti1", "https://tec.openplanner.team/stops/Ccuhsti2"], ["https://tec.openplanner.team/stops/LHmferm1", "https://tec.openplanner.team/stops/LLocruc2"], ["https://tec.openplanner.team/stops/Bcbqegl2", "https://tec.openplanner.team/stops/Bcbqufo1"], ["https://tec.openplanner.team/stops/H1ne147b", "https://tec.openplanner.team/stops/H1ne149b"], ["https://tec.openplanner.team/stops/Cvvmonu2", "https://tec.openplanner.team/stops/Cvvsncb2"], ["https://tec.openplanner.team/stops/Cmitrie1", "https://tec.openplanner.team/stops/Cvtmaro1"], ["https://tec.openplanner.team/stops/LBRmc--2", "https://tec.openplanner.team/stops/LBRpt--2"], ["https://tec.openplanner.team/stops/Bbghepi2", "https://tec.openplanner.team/stops/Bstetre2"], ["https://tec.openplanner.team/stops/X734ajb", "https://tec.openplanner.team/stops/X734aka"], ["https://tec.openplanner.team/stops/N217abb", "https://tec.openplanner.team/stops/N217acb"], ["https://tec.openplanner.team/stops/H1bd103b", "https://tec.openplanner.team/stops/H1hq128a"], ["https://tec.openplanner.team/stops/N214aea", "https://tec.openplanner.team/stops/N236ahb"], ["https://tec.openplanner.team/stops/LMAstei1", "https://tec.openplanner.team/stops/LMAstei2"], ["https://tec.openplanner.team/stops/N120ahb", "https://tec.openplanner.team/stops/N340aga"], ["https://tec.openplanner.team/stops/LeUgend2", "https://tec.openplanner.team/stops/LeUlasc1"], ["https://tec.openplanner.team/stops/N349aia", "https://tec.openplanner.team/stops/N351arb"], ["https://tec.openplanner.team/stops/N501awa", "https://tec.openplanner.team/stops/N527adb"], ["https://tec.openplanner.team/stops/Buccfja2", "https://tec.openplanner.team/stops/Buccham2"], ["https://tec.openplanner.team/stops/Lflsana2", "https://tec.openplanner.team/stops/Lmaetan*"], ["https://tec.openplanner.team/stops/N539aoa", "https://tec.openplanner.team/stops/N539apa"], ["https://tec.openplanner.team/stops/H4mo192a", "https://tec.openplanner.team/stops/H4mo206a"], ["https://tec.openplanner.team/stops/H4rx142a", "https://tec.openplanner.team/stops/H4tg170b"], ["https://tec.openplanner.team/stops/H2na135b", "https://tec.openplanner.team/stops/H3so172a"], ["https://tec.openplanner.team/stops/N161aab", "https://tec.openplanner.team/stops/N161aea"], ["https://tec.openplanner.team/stops/X999agb", "https://tec.openplanner.team/stops/X999aoa"], ["https://tec.openplanner.team/stops/LREsp302", "https://tec.openplanner.team/stops/LREsp902"], ["https://tec.openplanner.team/stops/H4bo178a", "https://tec.openplanner.team/stops/H4bo179a"], ["https://tec.openplanner.team/stops/X750bmb", "https://tec.openplanner.team/stops/X750bpa"], ["https://tec.openplanner.team/stops/N501meb", "https://tec.openplanner.team/stops/N501mey"], ["https://tec.openplanner.team/stops/Cbbcrbo2", "https://tec.openplanner.team/stops/Cbmvalt1"], ["https://tec.openplanner.team/stops/Crccarr2", "https://tec.openplanner.team/stops/NH03aeb"], ["https://tec.openplanner.team/stops/X899aaa", "https://tec.openplanner.team/stops/X899afa"], ["https://tec.openplanner.team/stops/LaMbull1", "https://tec.openplanner.team/stops/LaMmark1"], ["https://tec.openplanner.team/stops/H4le127a", "https://tec.openplanner.team/stops/H4ry130a"], ["https://tec.openplanner.team/stops/Lgrcour2", "https://tec.openplanner.team/stops/Lgrmagd2"], ["https://tec.openplanner.team/stops/N501lgb", "https://tec.openplanner.team/stops/N501lkb"], ["https://tec.openplanner.team/stops/Btslcej1", "https://tec.openplanner.team/stops/Btslenf1"], ["https://tec.openplanner.team/stops/Cjupuis2", "https://tec.openplanner.team/stops/Cmaacac2"], ["https://tec.openplanner.team/stops/LCxcham2", "https://tec.openplanner.team/stops/LCxfawe2"], ["https://tec.openplanner.team/stops/X631aba", "https://tec.openplanner.team/stops/X631abb"], ["https://tec.openplanner.team/stops/N501blb", "https://tec.openplanner.team/stops/N501bob"], ["https://tec.openplanner.team/stops/X734aca", "https://tec.openplanner.team/stops/X734adb"], ["https://tec.openplanner.team/stops/LHAcite1", "https://tec.openplanner.team/stops/LHAclin1"], ["https://tec.openplanner.team/stops/Buccdho2", "https://tec.openplanner.team/stops/Buccvch1"], ["https://tec.openplanner.team/stops/X657aha", "https://tec.openplanner.team/stops/X657aib"], ["https://tec.openplanner.team/stops/X742aaa", "https://tec.openplanner.team/stops/X742aca"], ["https://tec.openplanner.team/stops/H4ir162a", "https://tec.openplanner.team/stops/H4ir163d"], ["https://tec.openplanner.team/stops/H2sb225a", "https://tec.openplanner.team/stops/H2sb225b"], ["https://tec.openplanner.team/stops/LMalune4", "https://tec.openplanner.team/stops/LMawilh4"], ["https://tec.openplanner.team/stops/X904acb", "https://tec.openplanner.team/stops/X904aeb"], ["https://tec.openplanner.team/stops/Bcrbtho1", "https://tec.openplanner.team/stops/Bcrbtho2"], ["https://tec.openplanner.team/stops/H1ho133a", "https://tec.openplanner.team/stops/H1ho135b"], ["https://tec.openplanner.team/stops/LMNcite2", "https://tec.openplanner.team/stops/LPbec--1"], ["https://tec.openplanner.team/stops/Bsaubbo1", "https://tec.openplanner.team/stops/Bsaubbo2"], ["https://tec.openplanner.team/stops/LHChoof3", "https://tec.openplanner.team/stops/LHChoof4"], ["https://tec.openplanner.team/stops/LVIcarm2", "https://tec.openplanner.team/stops/LVIcarm4"], ["https://tec.openplanner.team/stops/X396aba", "https://tec.openplanner.team/stops/X901ala"], ["https://tec.openplanner.team/stops/N209aic", "https://tec.openplanner.team/stops/N209anb"], ["https://tec.openplanner.team/stops/Bsmgmar1", "https://tec.openplanner.team/stops/Bsmgmar2"], ["https://tec.openplanner.team/stops/LhGkirc3", "https://tec.openplanner.team/stops/LhGkirc4"], ["https://tec.openplanner.team/stops/Cthhvil1", "https://tec.openplanner.team/stops/Cthhvil6"], ["https://tec.openplanner.team/stops/H1cu118a", "https://tec.openplanner.team/stops/H1cu128a"], ["https://tec.openplanner.team/stops/N521aeb", "https://tec.openplanner.team/stops/N523abb"], ["https://tec.openplanner.team/stops/H4bd111a", "https://tec.openplanner.team/stops/H4te257b"], ["https://tec.openplanner.team/stops/X671aca", "https://tec.openplanner.team/stops/X671acb"], ["https://tec.openplanner.team/stops/Caicalv2", "https://tec.openplanner.team/stops/Crspair2"], ["https://tec.openplanner.team/stops/H2se109a", "https://tec.openplanner.team/stops/H2se114a"], ["https://tec.openplanner.team/stops/X769aba", "https://tec.openplanner.team/stops/X769aqb"], ["https://tec.openplanner.team/stops/Bclgavi1", "https://tec.openplanner.team/stops/Bclgavi2"], ["https://tec.openplanner.team/stops/N506afa", "https://tec.openplanner.team/stops/N506bpa"], ["https://tec.openplanner.team/stops/LBRbriv1", "https://tec.openplanner.team/stops/LBRbriv2"], ["https://tec.openplanner.team/stops/X663aub", "https://tec.openplanner.team/stops/X664anb"], ["https://tec.openplanner.team/stops/H2hl111a", "https://tec.openplanner.team/stops/H2sv211b"], ["https://tec.openplanner.team/stops/LBlhaut2", "https://tec.openplanner.team/stops/LLUmont1"], ["https://tec.openplanner.team/stops/Cfmcent2", "https://tec.openplanner.team/stops/Cfmwaut2"], ["https://tec.openplanner.team/stops/X615ayb", "https://tec.openplanner.team/stops/X615bbb"], ["https://tec.openplanner.team/stops/LTB105-1", "https://tec.openplanner.team/stops/X575aib"], ["https://tec.openplanner.team/stops/N562aca", "https://tec.openplanner.team/stops/N562agb"], ["https://tec.openplanner.team/stops/N243acb", "https://tec.openplanner.team/stops/N252ada"], ["https://tec.openplanner.team/stops/H1pa111b", "https://tec.openplanner.team/stops/H1pa167a"], ["https://tec.openplanner.team/stops/LVBeg--2", "https://tec.openplanner.team/stops/LVBrmon2"], ["https://tec.openplanner.team/stops/Cchwarm1", "https://tec.openplanner.team/stops/Cchwarm2"], ["https://tec.openplanner.team/stops/H2bh117a", "https://tec.openplanner.team/stops/H2bh119b"], ["https://tec.openplanner.team/stops/Lalbout2", "https://tec.openplanner.team/stops/Lalexpa2"], ["https://tec.openplanner.team/stops/N101aab", "https://tec.openplanner.team/stops/N101abb"], ["https://tec.openplanner.team/stops/H4fo119a", "https://tec.openplanner.team/stops/H4ga170a"], ["https://tec.openplanner.team/stops/Balswin2", "https://tec.openplanner.team/stops/Balswin3"], ["https://tec.openplanner.team/stops/Caiegli2", "https://tec.openplanner.team/stops/Caircen2"], ["https://tec.openplanner.team/stops/Lhrabho2", "https://tec.openplanner.team/stops/Lhrpont2"], ["https://tec.openplanner.team/stops/X390akb", "https://tec.openplanner.team/stops/X390alb"], ["https://tec.openplanner.team/stops/LFIeg--1", "https://tec.openplanner.team/stops/LMYroin2"], ["https://tec.openplanner.team/stops/N501bma", "https://tec.openplanner.team/stops/N501chc"], ["https://tec.openplanner.team/stops/N351aaa", "https://tec.openplanner.team/stops/N351agb"], ["https://tec.openplanner.team/stops/Bjaneco1", "https://tec.openplanner.team/stops/Bjaneco2"], ["https://tec.openplanner.team/stops/Cfccuch2", "https://tec.openplanner.team/stops/Cvretan2"], ["https://tec.openplanner.team/stops/LLelava1", "https://tec.openplanner.team/stops/LLescie2"], ["https://tec.openplanner.team/stops/LAUjean1", "https://tec.openplanner.team/stops/LFPloob1"], ["https://tec.openplanner.team/stops/X804afb", "https://tec.openplanner.team/stops/X804bdb"], ["https://tec.openplanner.team/stops/LTHchiv1", "https://tec.openplanner.team/stops/LTHturo1"], ["https://tec.openplanner.team/stops/H1cu130a", "https://tec.openplanner.team/stops/H1fr115a"], ["https://tec.openplanner.team/stops/LBIrout1", "https://tec.openplanner.team/stops/LBIvill4"], ["https://tec.openplanner.team/stops/X607ada", "https://tec.openplanner.team/stops/X647aab"], ["https://tec.openplanner.team/stops/N230aca", "https://tec.openplanner.team/stops/N230acb"], ["https://tec.openplanner.team/stops/LMheg--1", "https://tec.openplanner.team/stops/Lprmana4"], ["https://tec.openplanner.team/stops/Cwgmutu2", "https://tec.openplanner.team/stops/Cwgtill1"], ["https://tec.openplanner.team/stops/LDmhave1", "https://tec.openplanner.team/stops/LHFhard1"], ["https://tec.openplanner.team/stops/N501kxb", "https://tec.openplanner.team/stops/N501lib"], ["https://tec.openplanner.team/stops/X872aga", "https://tec.openplanner.team/stops/X876adb"], ["https://tec.openplanner.team/stops/Bgzdpco2", "https://tec.openplanner.team/stops/Bgzdpos2"], ["https://tec.openplanner.team/stops/X943aab", "https://tec.openplanner.team/stops/X943aga"], ["https://tec.openplanner.team/stops/H1mm127a", "https://tec.openplanner.team/stops/H1mm127b"], ["https://tec.openplanner.team/stops/H2fa109a", "https://tec.openplanner.team/stops/H2fa109b"], ["https://tec.openplanner.team/stops/Cgxmorg2", "https://tec.openplanner.team/stops/Cgxprad3"], ["https://tec.openplanner.team/stops/Clgmaco1", "https://tec.openplanner.team/stops/Clgrsoc1"], ["https://tec.openplanner.team/stops/N521aga", "https://tec.openplanner.team/stops/N521aha"], ["https://tec.openplanner.team/stops/Lretill2", "https://tec.openplanner.team/stops/LSAtrih1"], ["https://tec.openplanner.team/stops/X615afb", "https://tec.openplanner.team/stops/X681aca"], ["https://tec.openplanner.team/stops/H2an103a", "https://tec.openplanner.team/stops/H2an103b"], ["https://tec.openplanner.team/stops/H4mo148b", "https://tec.openplanner.team/stops/H4mo161a"], ["https://tec.openplanner.team/stops/H4bw101b", "https://tec.openplanner.team/stops/H4bw102b"], ["https://tec.openplanner.team/stops/NC14aoe", "https://tec.openplanner.team/stops/NC14apb"], ["https://tec.openplanner.team/stops/N517add", "https://tec.openplanner.team/stops/NL74ahc"], ["https://tec.openplanner.team/stops/N141aha", "https://tec.openplanner.team/stops/N141aib"], ["https://tec.openplanner.team/stops/N513ala", "https://tec.openplanner.team/stops/N513apb"], ["https://tec.openplanner.team/stops/N537aia", "https://tec.openplanner.team/stops/N537ajb"], ["https://tec.openplanner.team/stops/LAYpl--1", "https://tec.openplanner.team/stops/LAYpl--3"], ["https://tec.openplanner.team/stops/N351aka", "https://tec.openplanner.team/stops/N351akb"], ["https://tec.openplanner.team/stops/N501fjd", "https://tec.openplanner.team/stops/N501mjc"], ["https://tec.openplanner.team/stops/Bsgeegl1", "https://tec.openplanner.team/stops/Bsgeegl3"], ["https://tec.openplanner.team/stops/N550aga", "https://tec.openplanner.team/stops/N550ajb"], ["https://tec.openplanner.team/stops/Llglamb2", "https://tec.openplanner.team/stops/Llgsorb1"], ["https://tec.openplanner.team/stops/X601ctb", "https://tec.openplanner.team/stops/X601dib"], ["https://tec.openplanner.team/stops/LlCland1", "https://tec.openplanner.team/stops/LlCland2"], ["https://tec.openplanner.team/stops/LSdencl*", "https://tec.openplanner.team/stops/LSdsa451"], ["https://tec.openplanner.team/stops/Louoran2", "https://tec.openplanner.team/stops/Lsebelv2"], ["https://tec.openplanner.team/stops/N201ama", "https://tec.openplanner.team/stops/N211anb"], ["https://tec.openplanner.team/stops/X542abb", "https://tec.openplanner.team/stops/X542aca"], ["https://tec.openplanner.team/stops/Ccychba2", "https://tec.openplanner.team/stops/Ccycont2"], ["https://tec.openplanner.team/stops/Llgcadr6", "https://tec.openplanner.team/stops/Llgmart2"], ["https://tec.openplanner.team/stops/H1br123b", "https://tec.openplanner.team/stops/H1vg358a"], ["https://tec.openplanner.team/stops/Bquepbr1", "https://tec.openplanner.team/stops/Bstetre1"], ["https://tec.openplanner.team/stops/Cvrhaie1", "https://tec.openplanner.team/stops/Cvrhaie2"], ["https://tec.openplanner.team/stops/N235afb", "https://tec.openplanner.team/stops/N241acb"], ["https://tec.openplanner.team/stops/X801ala", "https://tec.openplanner.team/stops/X801ama"], ["https://tec.openplanner.team/stops/Bquecge1", "https://tec.openplanner.team/stops/Bquesta1"], ["https://tec.openplanner.team/stops/H1bl106a", "https://tec.openplanner.team/stops/H1pd146a"], ["https://tec.openplanner.team/stops/LeUbell*", "https://tec.openplanner.team/stops/LeUwetz2"], ["https://tec.openplanner.team/stops/Bsdafra1", "https://tec.openplanner.team/stops/Csdfboi1"], ["https://tec.openplanner.team/stops/H1ht122a", "https://tec.openplanner.team/stops/H1ht135b"], ["https://tec.openplanner.team/stops/X759acb", "https://tec.openplanner.team/stops/X759afb"], ["https://tec.openplanner.team/stops/LMOchen1", "https://tec.openplanner.team/stops/LMOchpl1"], ["https://tec.openplanner.team/stops/X791aca", "https://tec.openplanner.team/stops/X791ada"], ["https://tec.openplanner.team/stops/H4mb204a", "https://tec.openplanner.team/stops/H4mb204b"], ["https://tec.openplanner.team/stops/N308aba", "https://tec.openplanner.team/stops/N308asa"], ["https://tec.openplanner.team/stops/NL78aba", "https://tec.openplanner.team/stops/NL78abb"], ["https://tec.openplanner.team/stops/LHehacc2", "https://tec.openplanner.team/stops/LHTmoul2"], ["https://tec.openplanner.team/stops/Cgrcent2", "https://tec.openplanner.team/stops/NC14ama"], ["https://tec.openplanner.team/stops/X897abb", "https://tec.openplanner.team/stops/X897aca"], ["https://tec.openplanner.team/stops/LaMschr1", "https://tec.openplanner.team/stops/LeIkirr1"], ["https://tec.openplanner.team/stops/H4ty332a", "https://tec.openplanner.team/stops/H4ty332b"], ["https://tec.openplanner.team/stops/Bllngar1", "https://tec.openplanner.team/stops/Bllngar8"], ["https://tec.openplanner.team/stops/H1em102a", "https://tec.openplanner.team/stops/H1em111d"], ["https://tec.openplanner.team/stops/LSythie2", "https://tec.openplanner.team/stops/LWZbeem1"], ["https://tec.openplanner.team/stops/N117aqa", "https://tec.openplanner.team/stops/N117aub"], ["https://tec.openplanner.team/stops/H5rx113a", "https://tec.openplanner.team/stops/H5rx140b"], ["https://tec.openplanner.team/stops/H2fa101b", "https://tec.openplanner.team/stops/H2fa102b"], ["https://tec.openplanner.team/stops/H1do109b", "https://tec.openplanner.team/stops/H1do129b"], ["https://tec.openplanner.team/stops/N231afa", "https://tec.openplanner.team/stops/N291aaa"], ["https://tec.openplanner.team/stops/X775acb", "https://tec.openplanner.team/stops/X775ada"], ["https://tec.openplanner.team/stops/NL57ama", "https://tec.openplanner.team/stops/NL57amb"], ["https://tec.openplanner.team/stops/LHYdogn1", "https://tec.openplanner.team/stops/LHYec--1"], ["https://tec.openplanner.team/stops/H1hn209a", "https://tec.openplanner.team/stops/H1hn210b"], ["https://tec.openplanner.team/stops/N515aua", "https://tec.openplanner.team/stops/N515aub"], ["https://tec.openplanner.team/stops/Cgzclef1", "https://tec.openplanner.team/stops/Cgzclef2"], ["https://tec.openplanner.team/stops/X985aba", "https://tec.openplanner.team/stops/X985ada"], ["https://tec.openplanner.team/stops/H5gr138b", "https://tec.openplanner.team/stops/H5qu144a"], ["https://tec.openplanner.team/stops/N536aca", "https://tec.openplanner.team/stops/N562bnb"], ["https://tec.openplanner.team/stops/H2hp124a", "https://tec.openplanner.team/stops/H2hp124c"], ["https://tec.openplanner.team/stops/Ctrleju2", "https://tec.openplanner.team/stops/H2tz120a"], ["https://tec.openplanner.team/stops/X766aeb", "https://tec.openplanner.team/stops/X791abb"], ["https://tec.openplanner.team/stops/H1sy141b", "https://tec.openplanner.team/stops/H1to151a"], ["https://tec.openplanner.team/stops/Creespi2", "https://tec.openplanner.team/stops/Creluth1"], ["https://tec.openplanner.team/stops/H4hg155a", "https://tec.openplanner.team/stops/H4hg155b"], ["https://tec.openplanner.team/stops/X801atb", "https://tec.openplanner.team/stops/X836aaa"], ["https://tec.openplanner.team/stops/LOurena1", "https://tec.openplanner.team/stops/X982agb"], ["https://tec.openplanner.team/stops/H1ro134b", "https://tec.openplanner.team/stops/H1ro137a"], ["https://tec.openplanner.team/stops/Cfaecwa2", "https://tec.openplanner.team/stops/Cfanvmo1"], ["https://tec.openplanner.team/stops/H1vb141b", "https://tec.openplanner.team/stops/H1wz169a"], ["https://tec.openplanner.team/stops/LaAgold2", "https://tec.openplanner.team/stops/LaAronh2"], ["https://tec.openplanner.team/stops/Clafaub2", "https://tec.openplanner.team/stops/NC23afb"], ["https://tec.openplanner.team/stops/LWEcarr1", "https://tec.openplanner.team/stops/LWElanc2"], ["https://tec.openplanner.team/stops/N536apb", "https://tec.openplanner.team/stops/N562aob"], ["https://tec.openplanner.team/stops/LSZptwa2", "https://tec.openplanner.team/stops/LWycabi2"], ["https://tec.openplanner.team/stops/Bgzdcen2", "https://tec.openplanner.team/stops/Bgzdgli2"], ["https://tec.openplanner.team/stops/Csyplac1", "https://tec.openplanner.team/stops/Csyplac2"], ["https://tec.openplanner.team/stops/X903aaa", "https://tec.openplanner.team/stops/X903aab"], ["https://tec.openplanner.team/stops/X604aib", "https://tec.openplanner.team/stops/X604aja"], ["https://tec.openplanner.team/stops/N132aaa", "https://tec.openplanner.team/stops/N132aba"], ["https://tec.openplanner.team/stops/Lhelait2", "https://tec.openplanner.team/stops/LHSlava2"], ["https://tec.openplanner.team/stops/Bolgfon1", "https://tec.openplanner.team/stops/Bolgfon2"], ["https://tec.openplanner.team/stops/Cjxthom1", "https://tec.openplanner.team/stops/Cmymoha1"], ["https://tec.openplanner.team/stops/LRachen*", "https://tec.openplanner.team/stops/LRachen1"], ["https://tec.openplanner.team/stops/Brsgecu2", "https://tec.openplanner.team/stops/Brsgm302"], ["https://tec.openplanner.team/stops/Bbghsta1", "https://tec.openplanner.team/stops/Bbghsta4"], ["https://tec.openplanner.team/stops/Csylaha1", "https://tec.openplanner.team/stops/Csylaha2"], ["https://tec.openplanner.team/stops/N123aab", "https://tec.openplanner.team/stops/N123aba"], ["https://tec.openplanner.team/stops/X902bga", "https://tec.openplanner.team/stops/X902bgb"], ["https://tec.openplanner.team/stops/Lagboil1", "https://tec.openplanner.team/stops/Lkiecol2"], ["https://tec.openplanner.team/stops/LtHfrie1", "https://tec.openplanner.team/stops/LtHfrie2"], ["https://tec.openplanner.team/stops/LJEloum1", "https://tec.openplanner.team/stops/LJEtige1"], ["https://tec.openplanner.team/stops/X901aaa", "https://tec.openplanner.team/stops/X901arb"], ["https://tec.openplanner.team/stops/X822aab", "https://tec.openplanner.team/stops/X822aoa"], ["https://tec.openplanner.team/stops/LOuilc-*", "https://tec.openplanner.team/stops/X982btb"], ["https://tec.openplanner.team/stops/Brsggar2", "https://tec.openplanner.team/stops/Bwatali1"], ["https://tec.openplanner.team/stops/LHUchpl2", "https://tec.openplanner.team/stops/LHUfonc2"], ["https://tec.openplanner.team/stops/LcRmich2", "https://tec.openplanner.team/stops/LnNzent2"], ["https://tec.openplanner.team/stops/X748aca", "https://tec.openplanner.team/stops/X748adb"], ["https://tec.openplanner.team/stops/Llglave1", "https://tec.openplanner.team/stops/Llgschm2"], ["https://tec.openplanner.team/stops/H4av103b", "https://tec.openplanner.team/stops/H4de113a"], ["https://tec.openplanner.team/stops/Llgbago2", "https://tec.openplanner.team/stops/Llgglai2"], ["https://tec.openplanner.team/stops/X740abd", "https://tec.openplanner.team/stops/X985aaa"], ["https://tec.openplanner.team/stops/H4ty314b", "https://tec.openplanner.team/stops/H4ty314e"], ["https://tec.openplanner.team/stops/N516aia", "https://tec.openplanner.team/stops/N516aja"], ["https://tec.openplanner.team/stops/H4hq129a", "https://tec.openplanner.team/stops/H4hq129b"], ["https://tec.openplanner.team/stops/N153acb", "https://tec.openplanner.team/stops/N153afa"], ["https://tec.openplanner.team/stops/N346ada", "https://tec.openplanner.team/stops/X346ala"], ["https://tec.openplanner.team/stops/H1wi147b", "https://tec.openplanner.team/stops/H1wi153b"], ["https://tec.openplanner.team/stops/X911ada", "https://tec.openplanner.team/stops/X911aea"], ["https://tec.openplanner.team/stops/H4gr111a", "https://tec.openplanner.team/stops/H4gr111b"], ["https://tec.openplanner.team/stops/N166aab", "https://tec.openplanner.team/stops/N166ada"], ["https://tec.openplanner.team/stops/LHdvill1", "https://tec.openplanner.team/stops/LLOcreu1"], ["https://tec.openplanner.team/stops/X801agb", "https://tec.openplanner.team/stops/X801ahb"], ["https://tec.openplanner.team/stops/N501iva", "https://tec.openplanner.team/stops/N501iwb"], ["https://tec.openplanner.team/stops/LBEfagn1", "https://tec.openplanner.team/stops/LBEpier1"], ["https://tec.openplanner.team/stops/Btilhti1", "https://tec.openplanner.team/stops/Bvlvmar2"], ["https://tec.openplanner.team/stops/X602aja", "https://tec.openplanner.team/stops/X602ajb"], ["https://tec.openplanner.team/stops/N894aca", "https://tec.openplanner.team/stops/X887aaa"], ["https://tec.openplanner.team/stops/X750asa", "https://tec.openplanner.team/stops/X792aba"], ["https://tec.openplanner.team/stops/X646aaa", "https://tec.openplanner.team/stops/X646aab"], ["https://tec.openplanner.team/stops/Baudhde2", "https://tec.openplanner.team/stops/Bwbfckr2"], ["https://tec.openplanner.team/stops/Cmaegli2", "https://tec.openplanner.team/stops/Cmarroy2"], ["https://tec.openplanner.team/stops/Lrogene*", "https://tec.openplanner.team/stops/Lvcchau2"], ["https://tec.openplanner.team/stops/X672aia", "https://tec.openplanner.team/stops/X672aja"], ["https://tec.openplanner.team/stops/H1hh110a", "https://tec.openplanner.team/stops/H1hh115b"], ["https://tec.openplanner.team/stops/LESmc--1", "https://tec.openplanner.team/stops/LESpont4"], ["https://tec.openplanner.team/stops/H1br122a", "https://tec.openplanner.team/stops/H1ev116a"], ["https://tec.openplanner.team/stops/LSOladr2", "https://tec.openplanner.team/stops/LSOvoie2"], ["https://tec.openplanner.team/stops/Loutroi1", "https://tec.openplanner.team/stops/Louvand1"], ["https://tec.openplanner.team/stops/LBhschu2", "https://tec.openplanner.team/stops/X793akb"], ["https://tec.openplanner.team/stops/Cciecol2", "https://tec.openplanner.team/stops/Ccinali2"], ["https://tec.openplanner.team/stops/H2ha137a", "https://tec.openplanner.team/stops/H2hg156a"], ["https://tec.openplanner.team/stops/Clafaub1", "https://tec.openplanner.team/stops/Claptcf1"], ["https://tec.openplanner.team/stops/H1sy137d", "https://tec.openplanner.team/stops/H1sy147a"], ["https://tec.openplanner.team/stops/LBTwauc1", "https://tec.openplanner.team/stops/LThpoli2"], ["https://tec.openplanner.team/stops/Cbctile", "https://tec.openplanner.team/stops/Clfbarr4"], ["https://tec.openplanner.team/stops/H1cr100a", "https://tec.openplanner.team/stops/H1fa120b"], ["https://tec.openplanner.team/stops/H1ch101a", "https://tec.openplanner.team/stops/H1ch104a"], ["https://tec.openplanner.team/stops/H4eg105a", "https://tec.openplanner.team/stops/H4pq120b"], ["https://tec.openplanner.team/stops/X371aaa", "https://tec.openplanner.team/stops/X371agb"], ["https://tec.openplanner.team/stops/X839abc", "https://tec.openplanner.team/stops/X839agb"], ["https://tec.openplanner.team/stops/N132aea", "https://tec.openplanner.team/stops/N132agb"], ["https://tec.openplanner.team/stops/LSNgerm2", "https://tec.openplanner.team/stops/LWechpl2"], ["https://tec.openplanner.team/stops/H1ch100b", "https://tec.openplanner.team/stops/H1ch105b"], ["https://tec.openplanner.team/stops/X901afb", "https://tec.openplanner.team/stops/X901bga"], ["https://tec.openplanner.team/stops/NC14acb", "https://tec.openplanner.team/stops/NC14ada"], ["https://tec.openplanner.team/stops/Laddelc1", "https://tec.openplanner.team/stops/Ladfoot2"], ["https://tec.openplanner.team/stops/Lceegth1", "https://tec.openplanner.team/stops/Lceprog2"], ["https://tec.openplanner.team/stops/Cgywaut2", "https://tec.openplanner.team/stops/CMsartc2"], ["https://tec.openplanner.team/stops/X739agb", "https://tec.openplanner.team/stops/X739aia"], ["https://tec.openplanner.team/stops/X901aab", "https://tec.openplanner.team/stops/X901bsb"], ["https://tec.openplanner.team/stops/LAtaube1", "https://tec.openplanner.team/stops/LPrcarr2"], ["https://tec.openplanner.team/stops/Bottpma1", "https://tec.openplanner.team/stops/Bottvtc1"], ["https://tec.openplanner.team/stops/LFlabba1", "https://tec.openplanner.team/stops/LFlabba2"], ["https://tec.openplanner.team/stops/N236aib", "https://tec.openplanner.team/stops/N236ajb"], ["https://tec.openplanner.team/stops/Ltiecch1", "https://tec.openplanner.team/stops/Ltihorl2"], ["https://tec.openplanner.team/stops/N230aib", "https://tec.openplanner.team/stops/N230ajb"], ["https://tec.openplanner.team/stops/Lmaelhe1", "https://tec.openplanner.team/stops/Lmapomm1"], ["https://tec.openplanner.team/stops/Bhalalb1", "https://tec.openplanner.team/stops/Bhalkrk1"], ["https://tec.openplanner.team/stops/Cmtgrim2", "https://tec.openplanner.team/stops/Cmtstan3"], ["https://tec.openplanner.team/stops/LJvmale1", "https://tec.openplanner.team/stops/X576aib"], ["https://tec.openplanner.team/stops/Bgoemgr1", "https://tec.openplanner.team/stops/Bgoemgr2"], ["https://tec.openplanner.team/stops/H1ha189a", "https://tec.openplanner.team/stops/H1ha189b"], ["https://tec.openplanner.team/stops/Lbrcygn1", "https://tec.openplanner.team/stops/Lbrddef4"], ["https://tec.openplanner.team/stops/LAmshel2", "https://tec.openplanner.team/stops/LOmmer-1"], ["https://tec.openplanner.team/stops/LNEtonv2", "https://tec.openplanner.team/stops/LVosoir2"], ["https://tec.openplanner.team/stops/LFreg--2", "https://tec.openplanner.team/stops/LRfbeau2"], ["https://tec.openplanner.team/stops/Cmerlme1", "https://tec.openplanner.team/stops/Cmesncv3"], ["https://tec.openplanner.team/stops/Ljuargi1", "https://tec.openplanner.team/stops/Ljuhava1"], ["https://tec.openplanner.team/stops/LHEelva2", "https://tec.openplanner.team/stops/LMhvina2"], ["https://tec.openplanner.team/stops/H1he107a", "https://tec.openplanner.team/stops/H1he111a"], ["https://tec.openplanner.team/stops/N167aga", "https://tec.openplanner.team/stops/N167agb"], ["https://tec.openplanner.team/stops/LBaeg--1", "https://tec.openplanner.team/stops/LNEcouc2"], ["https://tec.openplanner.team/stops/Cfrcomp1", "https://tec.openplanner.team/stops/Cfrempe1"], ["https://tec.openplanner.team/stops/N209aba", "https://tec.openplanner.team/stops/N209abb"], ["https://tec.openplanner.team/stops/Bitrnus1", "https://tec.openplanner.team/stops/Bitrnus2"], ["https://tec.openplanner.team/stops/H1mb137b", "https://tec.openplanner.team/stops/H1mb138a"], ["https://tec.openplanner.team/stops/Btubaig1", "https://tec.openplanner.team/stops/Btubbsc1"], ["https://tec.openplanner.team/stops/H4au100b", "https://tec.openplanner.team/stops/H4ea134b"], ["https://tec.openplanner.team/stops/Loualbe2", "https://tec.openplanner.team/stops/Louense1"], ["https://tec.openplanner.team/stops/Bhenpla1", "https://tec.openplanner.team/stops/Bhenron2"], ["https://tec.openplanner.team/stops/Brebras2", "https://tec.openplanner.team/stops/Brebvic2"], ["https://tec.openplanner.team/stops/LAWchau1", "https://tec.openplanner.team/stops/LAWlonc2"], ["https://tec.openplanner.team/stops/LHVeg--1", "https://tec.openplanner.team/stops/LHVetoi1"], ["https://tec.openplanner.team/stops/Ccychco2", "https://tec.openplanner.team/stops/Ccyga6"], ["https://tec.openplanner.team/stops/H5pe130b", "https://tec.openplanner.team/stops/H5pe145a"], ["https://tec.openplanner.team/stops/X725afc", "https://tec.openplanner.team/stops/X725bca"], ["https://tec.openplanner.team/stops/N207add", "https://tec.openplanner.team/stops/X210azb"], ["https://tec.openplanner.team/stops/N501jqa", "https://tec.openplanner.team/stops/X501esb"], ["https://tec.openplanner.team/stops/X754afa", "https://tec.openplanner.team/stops/X754amb"], ["https://tec.openplanner.team/stops/LPLaube2", "https://tec.openplanner.team/stops/LPLroth2"], ["https://tec.openplanner.team/stops/H2fa100b", "https://tec.openplanner.team/stops/H2fa107a"], ["https://tec.openplanner.team/stops/H5at104b", "https://tec.openplanner.team/stops/H5at131a"], ["https://tec.openplanner.team/stops/Bmlncle2", "https://tec.openplanner.team/stops/Bmlnsmv2"], ["https://tec.openplanner.team/stops/LElgerd4", "https://tec.openplanner.team/stops/LElgerd6"], ["https://tec.openplanner.team/stops/H4ma202b", "https://tec.openplanner.team/stops/H4oq226a"], ["https://tec.openplanner.team/stops/Balswwe1", "https://tec.openplanner.team/stops/Balswwe2"], ["https://tec.openplanner.team/stops/H1eu101a", "https://tec.openplanner.team/stops/H1lb152a"], ["https://tec.openplanner.team/stops/Lcemc--2", "https://tec.openplanner.team/stops/Lceviei1"], ["https://tec.openplanner.team/stops/Bchadpt1", "https://tec.openplanner.team/stops/Bwlhpma2"], ["https://tec.openplanner.team/stops/N543aoa", "https://tec.openplanner.team/stops/N543awh"], ["https://tec.openplanner.team/stops/H4mo160a", "https://tec.openplanner.team/stops/H4mo172a"], ["https://tec.openplanner.team/stops/N501eea", "https://tec.openplanner.team/stops/N501kha"], ["https://tec.openplanner.team/stops/Cmllait2", "https://tec.openplanner.team/stops/Cmlours2"], ["https://tec.openplanner.team/stops/Candett2", "https://tec.openplanner.team/stops/Clbchar1"], ["https://tec.openplanner.team/stops/Lhrbass1", "https://tec.openplanner.team/stops/Lhrchar3"], ["https://tec.openplanner.team/stops/N232aea", "https://tec.openplanner.team/stops/N261afa"], ["https://tec.openplanner.team/stops/Bmangar1", "https://tec.openplanner.team/stops/H2mg137a"], ["https://tec.openplanner.team/stops/LCsraws2", "https://tec.openplanner.team/stops/LVLzoni2"], ["https://tec.openplanner.team/stops/X901bmb", "https://tec.openplanner.team/stops/X922aaa"], ["https://tec.openplanner.team/stops/X659ama", "https://tec.openplanner.team/stops/X742aab"], ["https://tec.openplanner.team/stops/X902bbb", "https://tec.openplanner.team/stops/X999aqa"], ["https://tec.openplanner.team/stops/LSlbail2", "https://tec.openplanner.team/stops/X919aoa"], ["https://tec.openplanner.team/stops/Cmgcabi1", "https://tec.openplanner.team/stops/Cmggthi2"], ["https://tec.openplanner.team/stops/H5is169a", "https://tec.openplanner.team/stops/H5is171a"], ["https://tec.openplanner.team/stops/X695aaa", "https://tec.openplanner.team/stops/X695aab"], ["https://tec.openplanner.team/stops/Cbmzoni1", "https://tec.openplanner.team/stops/Cbmzoni2"], ["https://tec.openplanner.team/stops/Cgoathe2", "https://tec.openplanner.team/stops/Cgofabr2"], ["https://tec.openplanner.team/stops/LeUvoss1", "https://tec.openplanner.team/stops/LkTraer1"], ["https://tec.openplanner.team/stops/Bptrman2", "https://tec.openplanner.team/stops/Bptrmar1"], ["https://tec.openplanner.team/stops/X942aaa", "https://tec.openplanner.team/stops/X942afa"], ["https://tec.openplanner.team/stops/H1bd101b", "https://tec.openplanner.team/stops/H1bd103b"], ["https://tec.openplanner.team/stops/N532aaa", "https://tec.openplanner.team/stops/N532ahb"], ["https://tec.openplanner.team/stops/H4hs137b", "https://tec.openplanner.team/stops/H4mb139a"], ["https://tec.openplanner.team/stops/LHNgend1", "https://tec.openplanner.team/stops/LHNtill1"], ["https://tec.openplanner.team/stops/X658aca", "https://tec.openplanner.team/stops/X658afb"], ["https://tec.openplanner.team/stops/X344aea", "https://tec.openplanner.team/stops/X363aaa"], ["https://tec.openplanner.team/stops/Bgoevli2", "https://tec.openplanner.team/stops/Bgoewat1"], ["https://tec.openplanner.team/stops/N150aja", "https://tec.openplanner.team/stops/N150ajb"], ["https://tec.openplanner.team/stops/LRRecdu2", "https://tec.openplanner.team/stops/LRReg--2"], ["https://tec.openplanner.team/stops/Lfhborg1", "https://tec.openplanner.team/stops/Lfhmalv1"], ["https://tec.openplanner.team/stops/X714acb", "https://tec.openplanner.team/stops/X714adb"], ["https://tec.openplanner.team/stops/N353afa", "https://tec.openplanner.team/stops/N353afc"], ["https://tec.openplanner.team/stops/N501gaa", "https://tec.openplanner.team/stops/N501hdb"], ["https://tec.openplanner.team/stops/H1hm174a", "https://tec.openplanner.team/stops/H1hm176a"], ["https://tec.openplanner.team/stops/N501aay", "https://tec.openplanner.team/stops/N501aua"], ["https://tec.openplanner.team/stops/X910aca", "https://tec.openplanner.team/stops/X910adb"], ["https://tec.openplanner.team/stops/Brsggol2", "https://tec.openplanner.team/stops/Brsgpbo1"], ["https://tec.openplanner.team/stops/LCRecmo1", "https://tec.openplanner.team/stops/LFmpoin1"], ["https://tec.openplanner.team/stops/N212aib", "https://tec.openplanner.team/stops/N212ajb"], ["https://tec.openplanner.team/stops/Cmtchet1", "https://tec.openplanner.team/stops/Cmtchet2"], ["https://tec.openplanner.team/stops/N232ada", "https://tec.openplanner.team/stops/N261aca"], ["https://tec.openplanner.team/stops/Bblmcel2", "https://tec.openplanner.team/stops/Bblmpro2"], ["https://tec.openplanner.team/stops/Cchblne1", "https://tec.openplanner.team/stops/Cchtour2"], ["https://tec.openplanner.team/stops/Bjanegl4", "https://tec.openplanner.team/stops/NR30abb"], ["https://tec.openplanner.team/stops/N501ljb", "https://tec.openplanner.team/stops/N501lna"], ["https://tec.openplanner.team/stops/N201aia", "https://tec.openplanner.team/stops/N201ala"], ["https://tec.openplanner.team/stops/N501joa", "https://tec.openplanner.team/stops/N521ada"], ["https://tec.openplanner.team/stops/X619aaa", "https://tec.openplanner.team/stops/X619abc"], ["https://tec.openplanner.team/stops/Bjodced1", "https://tec.openplanner.team/stops/Bjodsme1"], ["https://tec.openplanner.team/stops/X733aab", "https://tec.openplanner.team/stops/X775ama"], ["https://tec.openplanner.team/stops/H4pq113a", "https://tec.openplanner.team/stops/H4pq116b"], ["https://tec.openplanner.team/stops/LkAkirc1", "https://tec.openplanner.team/stops/LkAkirc2"], ["https://tec.openplanner.team/stops/N540adb", "https://tec.openplanner.team/stops/N540agb"], ["https://tec.openplanner.team/stops/Llgbaro1", "https://tec.openplanner.team/stops/Llgbaro4"], ["https://tec.openplanner.team/stops/N501fqb", "https://tec.openplanner.team/stops/N501fqd"], ["https://tec.openplanner.team/stops/X626agb", "https://tec.openplanner.team/stops/X626ajb"], ["https://tec.openplanner.team/stops/H1al105a", "https://tec.openplanner.team/stops/H1al107b"], ["https://tec.openplanner.team/stops/N506ala", "https://tec.openplanner.team/stops/N506ara"], ["https://tec.openplanner.team/stops/X804btb", "https://tec.openplanner.team/stops/X804cba"], ["https://tec.openplanner.team/stops/Bcrbgro1", "https://tec.openplanner.team/stops/Bnil3fo2"], ["https://tec.openplanner.team/stops/LoDscha1", "https://tec.openplanner.team/stops/LoDulf-1"], ["https://tec.openplanner.team/stops/H2hg145b", "https://tec.openplanner.team/stops/H2hg157b"], ["https://tec.openplanner.team/stops/Bbougar1", "https://tec.openplanner.team/stops/Bcerpco2"], ["https://tec.openplanner.team/stops/N120aib", "https://tec.openplanner.team/stops/N244aqa"], ["https://tec.openplanner.team/stops/X741aaa", "https://tec.openplanner.team/stops/X742aab"], ["https://tec.openplanner.team/stops/H1ms281a", "https://tec.openplanner.team/stops/H1ms281b"], ["https://tec.openplanner.team/stops/N573aqb", "https://tec.openplanner.team/stops/N573ara"], ["https://tec.openplanner.team/stops/Cglbras1", "https://tec.openplanner.team/stops/Cglbras2"], ["https://tec.openplanner.team/stops/LMfange1", "https://tec.openplanner.team/stops/LMfeg--1"], ["https://tec.openplanner.team/stops/X747aac", "https://tec.openplanner.team/stops/X747abb"], ["https://tec.openplanner.team/stops/Lretill1", "https://tec.openplanner.team/stops/Lretill2"], ["https://tec.openplanner.team/stops/H4ty334a", "https://tec.openplanner.team/stops/H4ty336b"], ["https://tec.openplanner.team/stops/LiVkreu4", "https://tec.openplanner.team/stops/LsHlenz1"], ["https://tec.openplanner.team/stops/Clomari2", "https://tec.openplanner.team/stops/CMmari2"], ["https://tec.openplanner.team/stops/Bsaubbo2", "https://tec.openplanner.team/stops/Bsaucre2"], ["https://tec.openplanner.team/stops/X750afb", "https://tec.openplanner.team/stops/X750ahb"], ["https://tec.openplanner.team/stops/Cgzgrru2", "https://tec.openplanner.team/stops/Cgzm1482"], ["https://tec.openplanner.team/stops/X820aab", "https://tec.openplanner.team/stops/X820afb"], ["https://tec.openplanner.team/stops/X840acb", "https://tec.openplanner.team/stops/X840acd"], ["https://tec.openplanner.team/stops/Croheig2", "https://tec.openplanner.team/stops/Crolach2"], ["https://tec.openplanner.team/stops/Cnaferr1", "https://tec.openplanner.team/stops/Cnaferr2"], ["https://tec.openplanner.team/stops/LScread2", "https://tec.openplanner.team/stops/LVTtrou2"], ["https://tec.openplanner.team/stops/X912aaa", "https://tec.openplanner.team/stops/X912aea"], ["https://tec.openplanner.team/stops/LMYroin1", "https://tec.openplanner.team/stops/X597alb"], ["https://tec.openplanner.team/stops/LBEfagn2", "https://tec.openplanner.team/stops/LBEpier2"], ["https://tec.openplanner.team/stops/X948ala", "https://tec.openplanner.team/stops/X948ama"], ["https://tec.openplanner.team/stops/Crolach2", "https://tec.openplanner.team/stops/Cropcan1"], ["https://tec.openplanner.team/stops/N988aba", "https://tec.openplanner.team/stops/N988abb"], ["https://tec.openplanner.team/stops/X725ana", "https://tec.openplanner.team/stops/X725aqb"], ["https://tec.openplanner.team/stops/Lsnecco3", "https://tec.openplanner.team/stops/Lsnferr1"], ["https://tec.openplanner.team/stops/H4ag106b", "https://tec.openplanner.team/stops/H4pe128a"], ["https://tec.openplanner.team/stops/X608ata", "https://tec.openplanner.team/stops/X608atb"], ["https://tec.openplanner.team/stops/LAWlonc1", "https://tec.openplanner.team/stops/LAWxhen2"], ["https://tec.openplanner.team/stops/X721aca", "https://tec.openplanner.team/stops/X721aia"], ["https://tec.openplanner.team/stops/H4ma418b", "https://tec.openplanner.team/stops/H4oq409a"], ["https://tec.openplanner.team/stops/Cdostco1", "https://tec.openplanner.team/stops/Cstbasc1"], ["https://tec.openplanner.team/stops/X903aea", "https://tec.openplanner.team/stops/X903afa"], ["https://tec.openplanner.team/stops/H1mk113a", "https://tec.openplanner.team/stops/H1mk114a"], ["https://tec.openplanner.team/stops/X979afa", "https://tec.openplanner.team/stops/X979aga"], ["https://tec.openplanner.team/stops/N513aua", "https://tec.openplanner.team/stops/N513aub"], ["https://tec.openplanner.team/stops/Bndbdra2", "https://tec.openplanner.team/stops/Btlgbro2"], ["https://tec.openplanner.team/stops/Blimegl2", "https://tec.openplanner.team/stops/Bottgar5"], ["https://tec.openplanner.team/stops/Lligare*", "https://tec.openplanner.team/stops/Lligare1"], ["https://tec.openplanner.team/stops/Ctuyser2", "https://tec.openplanner.team/stops/NC28aha"], ["https://tec.openplanner.team/stops/Btlgmee1", "https://tec.openplanner.team/stops/Btlgmee2"], ["https://tec.openplanner.team/stops/H3br107b", "https://tec.openplanner.team/stops/H3br122b"], ["https://tec.openplanner.team/stops/LLirout2", "https://tec.openplanner.team/stops/LRepous2"], ["https://tec.openplanner.team/stops/Bottcli1", "https://tec.openplanner.team/stops/Bottcli2"], ["https://tec.openplanner.team/stops/X757ajb", "https://tec.openplanner.team/stops/X757ama"], ["https://tec.openplanner.team/stops/H4bq100b", "https://tec.openplanner.team/stops/H4bq100c"], ["https://tec.openplanner.team/stops/Cgycime3", "https://tec.openplanner.team/stops/Cracave1"], ["https://tec.openplanner.team/stops/LWneg--1", "https://tec.openplanner.team/stops/X542afa"], ["https://tec.openplanner.team/stops/Lceavia2", "https://tec.openplanner.team/stops/Lcebarr2"], ["https://tec.openplanner.team/stops/H4ho119a", "https://tec.openplanner.team/stops/H4rx142a"], ["https://tec.openplanner.team/stops/Cvlcen2", "https://tec.openplanner.team/stops/Cvlpeau2"], ["https://tec.openplanner.team/stops/Lghfors2", "https://tec.openplanner.team/stops/Lmlbaro2"], ["https://tec.openplanner.team/stops/H1po137a", "https://tec.openplanner.team/stops/H5gr137a"], ["https://tec.openplanner.team/stops/N522ama", "https://tec.openplanner.team/stops/N522apb"], ["https://tec.openplanner.team/stops/LOMbrou1", "https://tec.openplanner.team/stops/LOMtomb1"], ["https://tec.openplanner.team/stops/NL75aaa", "https://tec.openplanner.team/stops/NL75acb"], ["https://tec.openplanner.team/stops/LWbregn1", "https://tec.openplanner.team/stops/LWbregn2"], ["https://tec.openplanner.team/stops/Clrpast1", "https://tec.openplanner.team/stops/Clrrhau2"], ["https://tec.openplanner.team/stops/H4ce104b", "https://tec.openplanner.team/stops/H4ce106b"], ["https://tec.openplanner.team/stops/Lfljupi1", "https://tec.openplanner.team/stops/Lfljupi2"], ["https://tec.openplanner.team/stops/H1ht122b", "https://tec.openplanner.team/stops/H1ht128a"], ["https://tec.openplanner.team/stops/LSpbawe2", "https://tec.openplanner.team/stops/LSpxhig1"], ["https://tec.openplanner.team/stops/LLelans1", "https://tec.openplanner.team/stops/X576aea"], ["https://tec.openplanner.team/stops/LbEkirc*", "https://tec.openplanner.team/stops/LbThau12"], ["https://tec.openplanner.team/stops/H1gi119c", "https://tec.openplanner.team/stops/H1hl122b"], ["https://tec.openplanner.team/stops/H3th133a", "https://tec.openplanner.team/stops/H3th135e"], ["https://tec.openplanner.team/stops/LCOcarr2", "https://tec.openplanner.team/stops/LCOeg--1"], ["https://tec.openplanner.team/stops/N343aja", "https://tec.openplanner.team/stops/X345aca"], ["https://tec.openplanner.team/stops/H1em104a", "https://tec.openplanner.team/stops/H1em107a"], ["https://tec.openplanner.team/stops/H2go117b", "https://tec.openplanner.team/stops/H2gy101a"], ["https://tec.openplanner.team/stops/LaMmark1", "https://tec.openplanner.team/stops/LaMmark2"], ["https://tec.openplanner.team/stops/Bhevjac1", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://tec.openplanner.team/stops/Cobobjo1", "https://tec.openplanner.team/stops/Cpcgout1"], ["https://tec.openplanner.team/stops/LCSpoud2", "https://tec.openplanner.team/stops/LENengi2"], ["https://tec.openplanner.team/stops/N511ajb", "https://tec.openplanner.team/stops/N511aka"], ["https://tec.openplanner.team/stops/H2ll183a", "https://tec.openplanner.team/stops/H2ll260a"], ["https://tec.openplanner.team/stops/H1qu102a", "https://tec.openplanner.team/stops/H1qu116a"], ["https://tec.openplanner.team/stops/N206ada", "https://tec.openplanner.team/stops/N208aaa"], ["https://tec.openplanner.team/stops/H4ta125a", "https://tec.openplanner.team/stops/H4ta133a"], ["https://tec.openplanner.team/stops/LFIinse1", "https://tec.openplanner.team/stops/LMYlieg1"], ["https://tec.openplanner.team/stops/N152abb", "https://tec.openplanner.team/stops/N152abc"], ["https://tec.openplanner.team/stops/Bvirbru2", "https://tec.openplanner.team/stops/Bvirmbr2"], ["https://tec.openplanner.team/stops/X397aba", "https://tec.openplanner.team/stops/X397abb"], ["https://tec.openplanner.team/stops/LCxreno1", "https://tec.openplanner.team/stops/LCxreno2"], ["https://tec.openplanner.team/stops/LAnvien1", "https://tec.openplanner.team/stops/LVnroch2"], ["https://tec.openplanner.team/stops/X802aba", "https://tec.openplanner.team/stops/X802abb"], ["https://tec.openplanner.team/stops/H4wi162a", "https://tec.openplanner.team/stops/H4wi162b"], ["https://tec.openplanner.team/stops/Cmacreu1", "https://tec.openplanner.team/stops/Cmacreu2"], ["https://tec.openplanner.team/stops/Bmanfbg1", "https://tec.openplanner.team/stops/H2mg138a"], ["https://tec.openplanner.team/stops/X808aga", "https://tec.openplanner.team/stops/X834aca"], ["https://tec.openplanner.team/stops/Barchez1", "https://tec.openplanner.team/stops/Bnettou1"], ["https://tec.openplanner.team/stops/Bcrbhir1", "https://tec.openplanner.team/stops/Bcrbros1"], ["https://tec.openplanner.team/stops/H1le119b", "https://tec.openplanner.team/stops/H1le125b"], ["https://tec.openplanner.team/stops/H3th134b", "https://tec.openplanner.team/stops/H3th135c"], ["https://tec.openplanner.team/stops/NL72aaa", "https://tec.openplanner.team/stops/NL72aba"], ["https://tec.openplanner.team/stops/LwArabo1", "https://tec.openplanner.team/stops/LwArabo2"], ["https://tec.openplanner.team/stops/N214afb", "https://tec.openplanner.team/stops/N226aaa"], ["https://tec.openplanner.team/stops/H2pe155a", "https://tec.openplanner.team/stops/H2pe155b"], ["https://tec.openplanner.team/stops/X721aja", "https://tec.openplanner.team/stops/X721ajb"], ["https://tec.openplanner.team/stops/Ladstat2", "https://tec.openplanner.team/stops/LThhoul1"], ["https://tec.openplanner.team/stops/X740aea", "https://tec.openplanner.team/stops/X757alb"], ["https://tec.openplanner.team/stops/Cmlecha1", "https://tec.openplanner.team/stops/Cmlecha2"], ["https://tec.openplanner.team/stops/LRCviad1", "https://tec.openplanner.team/stops/LTPhenr2"], ["https://tec.openplanner.team/stops/LlNbene1", "https://tec.openplanner.team/stops/LlNm%C3%BChl1"], ["https://tec.openplanner.team/stops/H4mo157b", "https://tec.openplanner.team/stops/H4mo170a"], ["https://tec.openplanner.team/stops/H1bl101a", "https://tec.openplanner.team/stops/H1pd143a"], ["https://tec.openplanner.team/stops/LAvrout1", "https://tec.openplanner.team/stops/LCIneuv1"], ["https://tec.openplanner.team/stops/LBLghuy2", "https://tec.openplanner.team/stops/LBLplac1"], ["https://tec.openplanner.team/stops/Bitrcro3", "https://tec.openplanner.team/stops/Bitrh%C3%BBl1"], ["https://tec.openplanner.team/stops/N351atc", "https://tec.openplanner.team/stops/N390amb"], ["https://tec.openplanner.team/stops/LmNkrew1", "https://tec.openplanner.team/stops/LsC216-2"], ["https://tec.openplanner.team/stops/X917aab", "https://tec.openplanner.team/stops/X919anb"], ["https://tec.openplanner.team/stops/N339aaa", "https://tec.openplanner.team/stops/N339aab"], ["https://tec.openplanner.team/stops/Ladlaur2", "https://tec.openplanner.team/stops/Ladwooz2"], ["https://tec.openplanner.team/stops/N509aaa", "https://tec.openplanner.team/stops/N509aea"], ["https://tec.openplanner.team/stops/X342ahb", "https://tec.openplanner.team/stops/X354aba"], ["https://tec.openplanner.team/stops/H2mg135a", "https://tec.openplanner.team/stops/H2mg144b"], ["https://tec.openplanner.team/stops/Bbautri1", "https://tec.openplanner.team/stops/Bbautri2"], ["https://tec.openplanner.team/stops/X989aba", "https://tec.openplanner.team/stops/X989acb"], ["https://tec.openplanner.team/stops/Brixaug1", "https://tec.openplanner.team/stops/Brixwav3"], ["https://tec.openplanner.team/stops/X758aab", "https://tec.openplanner.team/stops/X840aea"], ["https://tec.openplanner.team/stops/H2ch104a", "https://tec.openplanner.team/stops/H2ch112a"], ["https://tec.openplanner.team/stops/LXhnouv1", "https://tec.openplanner.team/stops/LXhnouv2"], ["https://tec.openplanner.team/stops/H1hg180b", "https://tec.openplanner.team/stops/H1qy131a"], ["https://tec.openplanner.team/stops/LVMcent1", "https://tec.openplanner.team/stops/LVMchpl2"], ["https://tec.openplanner.team/stops/Bwatali1", "https://tec.openplanner.team/stops/Bwattri1"], ["https://tec.openplanner.team/stops/X733ajb", "https://tec.openplanner.team/stops/X733aka"], ["https://tec.openplanner.team/stops/Cfvplac1", "https://tec.openplanner.team/stops/Cfvplac2"], ["https://tec.openplanner.team/stops/LCPhall2", "https://tec.openplanner.team/stops/LMvgare2"], ["https://tec.openplanner.team/stops/X757aea", "https://tec.openplanner.team/stops/X757aeb"], ["https://tec.openplanner.team/stops/LTPcarr1", "https://tec.openplanner.team/stops/LTPnoup1"], ["https://tec.openplanner.team/stops/H4ty357a", "https://tec.openplanner.team/stops/H4ty406a"], ["https://tec.openplanner.team/stops/Lhrchar1", "https://tec.openplanner.team/stops/Lhrpaep*"], ["https://tec.openplanner.team/stops/Cchoues1", "https://tec.openplanner.team/stops/Cchoues2"], ["https://tec.openplanner.team/stops/N351agb", "https://tec.openplanner.team/stops/N351avb"], ["https://tec.openplanner.team/stops/X657aia", "https://tec.openplanner.team/stops/X670aha"], ["https://tec.openplanner.team/stops/H4ef165c", "https://tec.openplanner.team/stops/H4hq130b"], ["https://tec.openplanner.team/stops/N234aeb", "https://tec.openplanner.team/stops/N550ada"], ["https://tec.openplanner.team/stops/X394afa", "https://tec.openplanner.team/stops/X396aea"], ["https://tec.openplanner.team/stops/X826adb", "https://tec.openplanner.team/stops/X826aea"], ["https://tec.openplanner.team/stops/N127aba", "https://tec.openplanner.team/stops/N134aea"], ["https://tec.openplanner.team/stops/LTNcarr1", "https://tec.openplanner.team/stops/LTNeau-2"], ["https://tec.openplanner.team/stops/Bgligra2", "https://tec.openplanner.team/stops/Btlbegl2"], ["https://tec.openplanner.team/stops/N232ava", "https://tec.openplanner.team/stops/N232ayb"], ["https://tec.openplanner.team/stops/LTAairi2", "https://tec.openplanner.team/stops/LTAbran1"], ["https://tec.openplanner.team/stops/Llgavoc1", "https://tec.openplanner.team/stops/Llgavoc2"], ["https://tec.openplanner.team/stops/LBmbara1", "https://tec.openplanner.team/stops/LMRmont2"], ["https://tec.openplanner.team/stops/X902afa", "https://tec.openplanner.team/stops/X902afd"], ["https://tec.openplanner.team/stops/Cgzchen1", "https://tec.openplanner.team/stops/Cgzmira3"], ["https://tec.openplanner.team/stops/LNAbass1", "https://tec.openplanner.team/stops/LNAbouh1"], ["https://tec.openplanner.team/stops/LOUbleu1", "https://tec.openplanner.team/stops/LOUpres1"], ["https://tec.openplanner.team/stops/H4co134a", "https://tec.openplanner.team/stops/H4co158a"], ["https://tec.openplanner.team/stops/N585aha", "https://tec.openplanner.team/stops/N585aka"], ["https://tec.openplanner.team/stops/LPAbrun1", "https://tec.openplanner.team/stops/LPAvill1"], ["https://tec.openplanner.team/stops/N538amc", "https://tec.openplanner.team/stops/N538arb"], ["https://tec.openplanner.team/stops/H4er122b", "https://tec.openplanner.team/stops/H4er124a"], ["https://tec.openplanner.team/stops/LCFchir2", "https://tec.openplanner.team/stops/LHaxhig1"], ["https://tec.openplanner.team/stops/H2hp114a", "https://tec.openplanner.team/stops/H2hp262a"], ["https://tec.openplanner.team/stops/X663aac", "https://tec.openplanner.team/stops/X664aoa"], ["https://tec.openplanner.team/stops/Llabriq1", "https://tec.openplanner.team/stops/Llabriq2"], ["https://tec.openplanner.team/stops/H4he102a", "https://tec.openplanner.team/stops/H4he105a"], ["https://tec.openplanner.team/stops/H1si169a", "https://tec.openplanner.team/stops/H1vt196b"], ["https://tec.openplanner.team/stops/X361aba", "https://tec.openplanner.team/stops/X371aib"], ["https://tec.openplanner.team/stops/X633aja", "https://tec.openplanner.team/stops/X633amb"], ["https://tec.openplanner.team/stops/Llgatla2", "https://tec.openplanner.team/stops/Llgbaya2"], ["https://tec.openplanner.team/stops/Llgbaya1", "https://tec.openplanner.team/stops/Llgpbay1"], ["https://tec.openplanner.team/stops/Croplom5", "https://tec.openplanner.team/stops/Crorpai1"], ["https://tec.openplanner.team/stops/X741ajb", "https://tec.openplanner.team/stops/X741aka"], ["https://tec.openplanner.team/stops/H1fr112a", "https://tec.openplanner.team/stops/H1no143a"], ["https://tec.openplanner.team/stops/Cjufrat1", "https://tec.openplanner.team/stops/Clogfay2"], ["https://tec.openplanner.team/stops/LFsec--1", "https://tec.openplanner.team/stops/LHSlava2"], ["https://tec.openplanner.team/stops/LMalune3", "https://tec.openplanner.team/stops/LMastat3"], ["https://tec.openplanner.team/stops/LeUgulc1", "https://tec.openplanner.team/stops/LeUwetz1"], ["https://tec.openplanner.team/stops/LNEcouc1", "https://tec.openplanner.team/stops/LNEvand1"], ["https://tec.openplanner.team/stops/H2go115b", "https://tec.openplanner.team/stops/H2go116a"], ["https://tec.openplanner.team/stops/N505anb", "https://tec.openplanner.team/stops/N512adb"], ["https://tec.openplanner.team/stops/Lgrcrac2", "https://tec.openplanner.team/stops/Lgrmagd2"], ["https://tec.openplanner.team/stops/Canresi1", "https://tec.openplanner.team/stops/Canrobe1"], ["https://tec.openplanner.team/stops/Crodebr1", "https://tec.openplanner.team/stops/Croegli1"], ["https://tec.openplanner.team/stops/N501ejc", "https://tec.openplanner.team/stops/N501ejd"], ["https://tec.openplanner.team/stops/X945aea", "https://tec.openplanner.team/stops/X945aeb"], ["https://tec.openplanner.team/stops/H1mm132a", "https://tec.openplanner.team/stops/H1mm132b"], ["https://tec.openplanner.team/stops/H1gh171a", "https://tec.openplanner.team/stops/H1hh117b"], ["https://tec.openplanner.team/stops/X666aab", "https://tec.openplanner.team/stops/X666abb"], ["https://tec.openplanner.team/stops/LSCeg--1", "https://tec.openplanner.team/stops/LVEtomb2"], ["https://tec.openplanner.team/stops/Balsnie1", "https://tec.openplanner.team/stops/Brsgfon1"], ["https://tec.openplanner.team/stops/H1hw121a", "https://tec.openplanner.team/stops/H1hw124b"], ["https://tec.openplanner.team/stops/Lagpass2", "https://tec.openplanner.team/stops/Lempass1"], ["https://tec.openplanner.team/stops/X633aia", "https://tec.openplanner.team/stops/X653adb"], ["https://tec.openplanner.team/stops/Brebcha1", "https://tec.openplanner.team/stops/Brebhos1"], ["https://tec.openplanner.team/stops/Cmobeau1", "https://tec.openplanner.team/stops/Cmomalg1"], ["https://tec.openplanner.team/stops/Lvearle1", "https://tec.openplanner.team/stops/Lvearle4"], ["https://tec.openplanner.team/stops/X938aaa", "https://tec.openplanner.team/stops/X938abb"], ["https://tec.openplanner.team/stops/N117aud", "https://tec.openplanner.team/stops/N117azb"], ["https://tec.openplanner.team/stops/N231afa", "https://tec.openplanner.team/stops/N231aha"], ["https://tec.openplanner.team/stops/Cmmpjou1", "https://tec.openplanner.team/stops/Cmmpjou3"], ["https://tec.openplanner.team/stops/H4be106a", "https://tec.openplanner.team/stops/H4be108a"], ["https://tec.openplanner.team/stops/X641avb", "https://tec.openplanner.team/stops/X641awb"], ["https://tec.openplanner.team/stops/N120abd", "https://tec.openplanner.team/stops/N120acb"], ["https://tec.openplanner.team/stops/H2mg149a", "https://tec.openplanner.team/stops/H2mg151a"], ["https://tec.openplanner.team/stops/N353aeb", "https://tec.openplanner.team/stops/N353afc"], ["https://tec.openplanner.team/stops/Bgliegl1", "https://tec.openplanner.team/stops/Bgligli2"], ["https://tec.openplanner.team/stops/Bbchsac1", "https://tec.openplanner.team/stops/Bwaucig2"], ["https://tec.openplanner.team/stops/LOdkeme1", "https://tec.openplanner.team/stops/LOdkeme2"], ["https://tec.openplanner.team/stops/N521agb", "https://tec.openplanner.team/stops/N521ahb"], ["https://tec.openplanner.team/stops/X721amb", "https://tec.openplanner.team/stops/X721aoa"], ["https://tec.openplanner.team/stops/N580aaa", "https://tec.openplanner.team/stops/N580aab"], ["https://tec.openplanner.team/stops/Blasren1", "https://tec.openplanner.team/stops/Blasren2"], ["https://tec.openplanner.team/stops/X982aya", "https://tec.openplanner.team/stops/X982bba"], ["https://tec.openplanner.team/stops/Lmlboul2", "https://tec.openplanner.team/stops/Lmlprie1"], ["https://tec.openplanner.team/stops/LSomonu1", "https://tec.openplanner.team/stops/LSomonu2"], ["https://tec.openplanner.team/stops/H4ty336a", "https://tec.openplanner.team/stops/H4ty343b"], ["https://tec.openplanner.team/stops/X813acb", "https://tec.openplanner.team/stops/X813adb"], ["https://tec.openplanner.team/stops/N501bna", "https://tec.openplanner.team/stops/N501bub"], ["https://tec.openplanner.team/stops/X614bbb", "https://tec.openplanner.team/stops/X614bca"], ["https://tec.openplanner.team/stops/Bptblma1", "https://tec.openplanner.team/stops/Bptblma2"], ["https://tec.openplanner.team/stops/X879ama", "https://tec.openplanner.team/stops/X879aoa"], ["https://tec.openplanner.team/stops/X901aha", "https://tec.openplanner.team/stops/X901bpa"], ["https://tec.openplanner.team/stops/Lthfren1", "https://tec.openplanner.team/stops/LWahott1"], ["https://tec.openplanner.team/stops/H4ba103a", "https://tec.openplanner.team/stops/H4ba103b"], ["https://tec.openplanner.team/stops/Csobail2", "https://tec.openplanner.team/stops/Csoplac2"], ["https://tec.openplanner.team/stops/N106adb", "https://tec.openplanner.team/stops/N106arb"], ["https://tec.openplanner.team/stops/Csdjeme2", "https://tec.openplanner.team/stops/Cvpsncb2"], ["https://tec.openplanner.team/stops/LSPmari2", "https://tec.openplanner.team/stops/LSPtonn1"], ["https://tec.openplanner.team/stops/Crebrux1", "https://tec.openplanner.team/stops/Crehout2"], ["https://tec.openplanner.team/stops/Bgoemgr2", "https://tec.openplanner.team/stops/Bgoevli1"], ["https://tec.openplanner.team/stops/H1cv104a", "https://tec.openplanner.team/stops/H1lm107b"], ["https://tec.openplanner.team/stops/X725aua", "https://tec.openplanner.team/stops/X725avb"], ["https://tec.openplanner.team/stops/LRGeg--1", "https://tec.openplanner.team/stops/LRGgrov1"], ["https://tec.openplanner.team/stops/N524aaa", "https://tec.openplanner.team/stops/N524aja"], ["https://tec.openplanner.team/stops/Bdoncar1", "https://tec.openplanner.team/stops/Bdonlat2"], ["https://tec.openplanner.team/stops/Livvill2", "https://tec.openplanner.team/stops/LRaplac2"], ["https://tec.openplanner.team/stops/NC14aba", "https://tec.openplanner.team/stops/NC44aga"], ["https://tec.openplanner.team/stops/N578aba", "https://tec.openplanner.team/stops/N578abb"], ["https://tec.openplanner.team/stops/H1ry134b", "https://tec.openplanner.team/stops/H1ry136b"], ["https://tec.openplanner.team/stops/Bsgimca2", "https://tec.openplanner.team/stops/Buccdst2"], ["https://tec.openplanner.team/stops/N244ada", "https://tec.openplanner.team/stops/N244adb"], ["https://tec.openplanner.team/stops/X640alb", "https://tec.openplanner.team/stops/X640ama"], ["https://tec.openplanner.team/stops/H5bl121a", "https://tec.openplanner.team/stops/H5bl121b"], ["https://tec.openplanner.team/stops/H2bh110c", "https://tec.openplanner.team/stops/H2bh111b"], ["https://tec.openplanner.team/stops/Btstcar2", "https://tec.openplanner.team/stops/Btstcar3"], ["https://tec.openplanner.team/stops/LBrbern1", "https://tec.openplanner.team/stops/LFRfagn2"], ["https://tec.openplanner.team/stops/H4ep126a", "https://tec.openplanner.team/stops/H4rm114a"], ["https://tec.openplanner.team/stops/LeUkabe1", "https://tec.openplanner.team/stops/LeUwais1"], ["https://tec.openplanner.team/stops/LKmcite2", "https://tec.openplanner.team/stops/LKmdani2"], ["https://tec.openplanner.team/stops/H5rx137a", "https://tec.openplanner.team/stops/H5rx150a"], ["https://tec.openplanner.team/stops/Bclgmev1", "https://tec.openplanner.team/stops/Bllnfle2"], ["https://tec.openplanner.team/stops/X671aba", "https://tec.openplanner.team/stops/X671abb"], ["https://tec.openplanner.team/stops/N501eba", "https://tec.openplanner.team/stops/N501fwz"], ["https://tec.openplanner.team/stops/LBNplei2", "https://tec.openplanner.team/stops/LBNvill6"], ["https://tec.openplanner.team/stops/LSSeg--1", "https://tec.openplanner.team/stops/LSSvill2"], ["https://tec.openplanner.team/stops/H2sv212a", "https://tec.openplanner.team/stops/H2sv219a"], ["https://tec.openplanner.team/stops/LkEhaag1", "https://tec.openplanner.team/stops/LkEhaag2"], ["https://tec.openplanner.team/stops/LSG111-2", "https://tec.openplanner.team/stops/LSG172-2"], ["https://tec.openplanner.team/stops/Ccomott1", "https://tec.openplanner.team/stops/Ccomott2"], ["https://tec.openplanner.team/stops/H1ms911a", "https://tec.openplanner.team/stops/H1ms914a"], ["https://tec.openplanner.team/stops/Cfldand2", "https://tec.openplanner.team/stops/Cflmart2"], ["https://tec.openplanner.team/stops/H4do104a", "https://tec.openplanner.team/stops/H4ev118b"], ["https://tec.openplanner.team/stops/N540aka", "https://tec.openplanner.team/stops/N540ara"], ["https://tec.openplanner.team/stops/N111aea", "https://tec.openplanner.team/stops/N111aeb"], ["https://tec.openplanner.team/stops/LSMchat2", "https://tec.openplanner.team/stops/LSMec--2"], ["https://tec.openplanner.team/stops/Cmlclos1", "https://tec.openplanner.team/stops/Cmlclos2"], ["https://tec.openplanner.team/stops/Lkiblan2", "https://tec.openplanner.team/stops/Lkirenk1"], ["https://tec.openplanner.team/stops/Blmlvex2", "https://tec.openplanner.team/stops/Brsregl2"], ["https://tec.openplanner.team/stops/LsVmolk2", "https://tec.openplanner.team/stops/LsVprum3"], ["https://tec.openplanner.team/stops/X806aab", "https://tec.openplanner.team/stops/X806abb"], ["https://tec.openplanner.team/stops/N232bvb", "https://tec.openplanner.team/stops/N232bwa"], ["https://tec.openplanner.team/stops/LPbusin1", "https://tec.openplanner.team/stops/LPbusin2"], ["https://tec.openplanner.team/stops/X734apa", "https://tec.openplanner.team/stops/X734apb"], ["https://tec.openplanner.team/stops/X626ajb", "https://tec.openplanner.team/stops/X688abb"], ["https://tec.openplanner.team/stops/Ccuphai3", "https://tec.openplanner.team/stops/Ccuphai4"], ["https://tec.openplanner.team/stops/LHCbran1", "https://tec.openplanner.team/stops/LHCbran2"], ["https://tec.openplanner.team/stops/Cmychpl4", "https://tec.openplanner.team/stops/Cmyplac2"], ["https://tec.openplanner.team/stops/Bgligli2", "https://tec.openplanner.team/stops/Bglitro1"], ["https://tec.openplanner.team/stops/X982bca", "https://tec.openplanner.team/stops/X982bcb"], ["https://tec.openplanner.team/stops/LSLprov1", "https://tec.openplanner.team/stops/LSLprov2"], ["https://tec.openplanner.team/stops/Bgemga10", "https://tec.openplanner.team/stops/N522bvc"], ["https://tec.openplanner.team/stops/LHEcoll1", "https://tec.openplanner.team/stops/LHEnaza2"], ["https://tec.openplanner.team/stops/X608abb", "https://tec.openplanner.team/stops/X608afb"], ["https://tec.openplanner.team/stops/Bmrl4ch2", "https://tec.openplanner.team/stops/Bmrleco4"], ["https://tec.openplanner.team/stops/Blimeur2", "https://tec.openplanner.team/stops/Blmlpla2"], ["https://tec.openplanner.team/stops/LLrmc--1", "https://tec.openplanner.team/stops/LLrmc--3"], ["https://tec.openplanner.team/stops/Cjudelv3", "https://tec.openplanner.team/stops/Cjudelv4"], ["https://tec.openplanner.team/stops/X601azb", "https://tec.openplanner.team/stops/X601bca"], ["https://tec.openplanner.team/stops/X629aaa", "https://tec.openplanner.team/stops/X630ada"], ["https://tec.openplanner.team/stops/Beclbse1", "https://tec.openplanner.team/stops/H2ec101b"], ["https://tec.openplanner.team/stops/H4mx114a", "https://tec.openplanner.team/stops/H4mx114b"], ["https://tec.openplanner.team/stops/X602ara", "https://tec.openplanner.team/stops/X602arb"], ["https://tec.openplanner.team/stops/Cthpano1", "https://tec.openplanner.team/stops/Cthpano2"], ["https://tec.openplanner.team/stops/Lmlmaqu2", "https://tec.openplanner.team/stops/Lmlscie2"], ["https://tec.openplanner.team/stops/LVHweri1", "https://tec.openplanner.team/stops/LVHweri2"], ["https://tec.openplanner.team/stops/Llgfoss1", "https://tec.openplanner.team/stops/Llgmart1"], ["https://tec.openplanner.team/stops/Llgwild6", "https://tec.openplanner.team/stops/Llgwild8"], ["https://tec.openplanner.team/stops/N501esa", "https://tec.openplanner.team/stops/N501esb"], ["https://tec.openplanner.team/stops/X739aja", "https://tec.openplanner.team/stops/X779adb"], ["https://tec.openplanner.team/stops/Lbbremy1", "https://tec.openplanner.team/stops/Lbbviad2"], ["https://tec.openplanner.team/stops/N229aua", "https://tec.openplanner.team/stops/N230aca"], ["https://tec.openplanner.team/stops/Lseconc2", "https://tec.openplanner.team/stops/Lseresi1"], ["https://tec.openplanner.team/stops/Cgyrjau1", "https://tec.openplanner.team/stops/Cmtmath1"], ["https://tec.openplanner.team/stops/NR38ada", "https://tec.openplanner.team/stops/NR38aeb"], ["https://tec.openplanner.team/stops/LJEerno2", "https://tec.openplanner.team/stops/LJEtige2"], ["https://tec.openplanner.team/stops/H1bd100b", "https://tec.openplanner.team/stops/H1bd101b"], ["https://tec.openplanner.team/stops/LAmbach1", "https://tec.openplanner.team/stops/LAmsart2"], ["https://tec.openplanner.team/stops/N506bea", "https://tec.openplanner.team/stops/N506bib"], ["https://tec.openplanner.team/stops/Cvp3til5", "https://tec.openplanner.team/stops/Cvpsncb2"], ["https://tec.openplanner.team/stops/X602aga", "https://tec.openplanner.team/stops/X602agb"], ["https://tec.openplanner.team/stops/H5rx114b", "https://tec.openplanner.team/stops/H5rx127b"], ["https://tec.openplanner.team/stops/LMebove1", "https://tec.openplanner.team/stops/LMeeg--1"], ["https://tec.openplanner.team/stops/Bitrecu2", "https://tec.openplanner.team/stops/Bitrpsr2"], ["https://tec.openplanner.team/stops/LGEpt--2", "https://tec.openplanner.team/stops/LLYcham2"], ["https://tec.openplanner.team/stops/LOTcloe2", "https://tec.openplanner.team/stops/LXhvina1"], ["https://tec.openplanner.team/stops/Cfmrrou1", "https://tec.openplanner.team/stops/Cfmrrou2"], ["https://tec.openplanner.team/stops/X398aha", "https://tec.openplanner.team/stops/X398aia"], ["https://tec.openplanner.team/stops/N351aqa", "https://tec.openplanner.team/stops/N351aqb"], ["https://tec.openplanner.team/stops/Llghaye1", "https://tec.openplanner.team/stops/Llghaye2"], ["https://tec.openplanner.team/stops/H4mo207a", "https://tec.openplanner.team/stops/H4mo207b"], ["https://tec.openplanner.team/stops/N346aaa", "https://tec.openplanner.team/stops/X346alb"], ["https://tec.openplanner.team/stops/LrOfrie1", "https://tec.openplanner.team/stops/LrOkirc2"], ["https://tec.openplanner.team/stops/Cchcase2", "https://tec.openplanner.team/stops/Cmtrneu1"], ["https://tec.openplanner.team/stops/N540aaa", "https://tec.openplanner.team/stops/N540abb"], ["https://tec.openplanner.team/stops/H1au101a", "https://tec.openplanner.team/stops/H1mh116a"], ["https://tec.openplanner.team/stops/X952aka", "https://tec.openplanner.team/stops/X954adb"], ["https://tec.openplanner.team/stops/X759aca", "https://tec.openplanner.team/stops/X759afb"], ["https://tec.openplanner.team/stops/N215aaa", "https://tec.openplanner.team/stops/N215aab"], ["https://tec.openplanner.team/stops/N543bda", "https://tec.openplanner.team/stops/N543bxa"], ["https://tec.openplanner.team/stops/Bmlngch1", "https://tec.openplanner.team/stops/Bsrgcur1"], ["https://tec.openplanner.team/stops/LLWcarr2", "https://tec.openplanner.team/stops/LLWmonu2"], ["https://tec.openplanner.team/stops/Lwaaube1", "https://tec.openplanner.team/stops/Lwapomp2"], ["https://tec.openplanner.team/stops/H1hc151a", "https://tec.openplanner.team/stops/H1he103a"], ["https://tec.openplanner.team/stops/H4ty325b", "https://tec.openplanner.team/stops/H4ty384a"], ["https://tec.openplanner.team/stops/X633ada", "https://tec.openplanner.team/stops/X633aeb"], ["https://tec.openplanner.team/stops/Lagbeno2", "https://tec.openplanner.team/stops/Lagboil1"], ["https://tec.openplanner.team/stops/LVeeg--2", "https://tec.openplanner.team/stops/LVefont1"], ["https://tec.openplanner.team/stops/Bneervc1", "https://tec.openplanner.team/stops/Bneervc2"], ["https://tec.openplanner.team/stops/LGLgeer1", "https://tec.openplanner.team/stops/LGLgeer2"], ["https://tec.openplanner.team/stops/H1ge116b", "https://tec.openplanner.team/stops/H1ge117b"], ["https://tec.openplanner.team/stops/Lceavia1", "https://tec.openplanner.team/stops/Lceprog1"], ["https://tec.openplanner.team/stops/N554aea", "https://tec.openplanner.team/stops/N554agb"], ["https://tec.openplanner.team/stops/N214aia", "https://tec.openplanner.team/stops/N225aea"], ["https://tec.openplanner.team/stops/Cgocnor4", "https://tec.openplanner.team/stops/Cgon52"], ["https://tec.openplanner.team/stops/H4lg100a", "https://tec.openplanner.team/stops/H4ta135b"], ["https://tec.openplanner.team/stops/X739aab", "https://tec.openplanner.team/stops/X779ada"], ["https://tec.openplanner.team/stops/N508afb", "https://tec.openplanner.team/stops/N508aja"], ["https://tec.openplanner.team/stops/Cfcchen2", "https://tec.openplanner.team/stops/Cfcecol4"], ["https://tec.openplanner.team/stops/Lvcbalt1", "https://tec.openplanner.team/stops/Lvcpost2"], ["https://tec.openplanner.team/stops/N165aaa", "https://tec.openplanner.team/stops/N165aba"], ["https://tec.openplanner.team/stops/H1by108c", "https://tec.openplanner.team/stops/H1by108e"], ["https://tec.openplanner.team/stops/Cfrgare2", "https://tec.openplanner.team/stops/Cfrgare4"], ["https://tec.openplanner.team/stops/LFsconc2", "https://tec.openplanner.team/stops/LFsphar1"], ["https://tec.openplanner.team/stops/H1el137b", "https://tec.openplanner.team/stops/H1wi147b"], ["https://tec.openplanner.team/stops/H4ae102b", "https://tec.openplanner.team/stops/H4mn100a"], ["https://tec.openplanner.team/stops/N150aba", "https://tec.openplanner.team/stops/N150acb"], ["https://tec.openplanner.team/stops/H3so154a", "https://tec.openplanner.team/stops/H3so154b"], ["https://tec.openplanner.team/stops/Bpercsp2", "https://tec.openplanner.team/stops/Bperrma1"], ["https://tec.openplanner.team/stops/LBgbaga2", "https://tec.openplanner.team/stops/LGDgdou1"], ["https://tec.openplanner.team/stops/H4ga148d", "https://tec.openplanner.team/stops/H4ga165a"], ["https://tec.openplanner.team/stops/N525aja", "https://tec.openplanner.team/stops/N525ajb"], ["https://tec.openplanner.team/stops/N301aaa", "https://tec.openplanner.team/stops/N301aab"], ["https://tec.openplanner.team/stops/Bquesta1", "https://tec.openplanner.team/stops/Bquesta2"], ["https://tec.openplanner.team/stops/N528alb", "https://tec.openplanner.team/stops/N528awa"], ["https://tec.openplanner.team/stops/X661bba", "https://tec.openplanner.team/stops/X672aob"], ["https://tec.openplanner.team/stops/Lpechin1", "https://tec.openplanner.team/stops/Lpechin2"], ["https://tec.openplanner.team/stops/X739aea", "https://tec.openplanner.team/stops/X739aja"], ["https://tec.openplanner.team/stops/LLrcour2", "https://tec.openplanner.team/stops/LLrpape2"], ["https://tec.openplanner.team/stops/Livgera5", "https://tec.openplanner.team/stops/Livgera6"], ["https://tec.openplanner.team/stops/H5rx131a", "https://tec.openplanner.team/stops/H5rx131b"], ["https://tec.openplanner.team/stops/Bquecro2", "https://tec.openplanner.team/stops/Bqueegl1"], ["https://tec.openplanner.team/stops/LAUabat2", "https://tec.openplanner.team/stops/LAUvict4"], ["https://tec.openplanner.team/stops/N511anb", "https://tec.openplanner.team/stops/N511arb"], ["https://tec.openplanner.team/stops/Bwanorp2", "https://tec.openplanner.team/stops/Bwanwar2"], ["https://tec.openplanner.team/stops/H1gh145a", "https://tec.openplanner.team/stops/H1gh145d"], ["https://tec.openplanner.team/stops/X749afa", "https://tec.openplanner.team/stops/X749afb"], ["https://tec.openplanner.team/stops/LRObruy4", "https://tec.openplanner.team/stops/LROmorf2"], ["https://tec.openplanner.team/stops/X796aca", "https://tec.openplanner.team/stops/X796acb"], ["https://tec.openplanner.team/stops/Clihame1", "https://tec.openplanner.team/stops/Clihame2"], ["https://tec.openplanner.team/stops/Bmrleco3", "https://tec.openplanner.team/stops/Bmrlhan1"], ["https://tec.openplanner.team/stops/LHNathe1", "https://tec.openplanner.team/stops/LHNecpr4"], ["https://tec.openplanner.team/stops/Lgrbonn3", "https://tec.openplanner.team/stops/Lgrbonn6"], ["https://tec.openplanner.team/stops/H4eg102a", "https://tec.openplanner.team/stops/H4eg102b"], ["https://tec.openplanner.team/stops/X899aga", "https://tec.openplanner.team/stops/X899ahb"], ["https://tec.openplanner.team/stops/N101ana", "https://tec.openplanner.team/stops/N101aqa"], ["https://tec.openplanner.team/stops/Lmlec--2", "https://tec.openplanner.team/stops/Lmlmaqu2"], ["https://tec.openplanner.team/stops/LBPmili2", "https://tec.openplanner.team/stops/LSLdall1"], ["https://tec.openplanner.team/stops/LWOrout1", "https://tec.openplanner.team/stops/LWOwaer1"], ["https://tec.openplanner.team/stops/Btstbes2", "https://tec.openplanner.team/stops/Btstw752"], ["https://tec.openplanner.team/stops/H2lc145a", "https://tec.openplanner.team/stops/H2ll194b"], ["https://tec.openplanner.team/stops/H1mr122a", "https://tec.openplanner.team/stops/H1wi152a"], ["https://tec.openplanner.team/stops/LBmbara1", "https://tec.openplanner.team/stops/LJAbell2"], ["https://tec.openplanner.team/stops/LCF2spa2", "https://tec.openplanner.team/stops/LHaodei2"], ["https://tec.openplanner.team/stops/X609ala", "https://tec.openplanner.team/stops/X609amb"], ["https://tec.openplanner.team/stops/N201aec", "https://tec.openplanner.team/stops/N201aee"], ["https://tec.openplanner.team/stops/LNAbras1", "https://tec.openplanner.team/stops/LTNsarl1"], ["https://tec.openplanner.team/stops/Bllnhoc2", "https://tec.openplanner.team/stops/Bwavtas3"], ["https://tec.openplanner.team/stops/Lsestap2", "https://tec.openplanner.team/stops/Lsevand1"], ["https://tec.openplanner.team/stops/Bobacar2", "https://tec.openplanner.team/stops/Bptrpla2"], ["https://tec.openplanner.team/stops/LCRecmo2", "https://tec.openplanner.team/stops/LCRgdrt1"], ["https://tec.openplanner.team/stops/N539bda", "https://tec.openplanner.team/stops/N539bdb"], ["https://tec.openplanner.team/stops/Lempass1", "https://tec.openplanner.team/stops/Lempass2"], ["https://tec.openplanner.team/stops/N360adc", "https://tec.openplanner.team/stops/N894ada"], ["https://tec.openplanner.team/stops/N519amb", "https://tec.openplanner.team/stops/N519apa"], ["https://tec.openplanner.team/stops/Bezeksj2", "https://tec.openplanner.team/stops/Bneeace2"], ["https://tec.openplanner.team/stops/N215acb", "https://tec.openplanner.team/stops/N261aha"], ["https://tec.openplanner.team/stops/LeUgend2", "https://tec.openplanner.team/stops/LeUrath2"], ["https://tec.openplanner.team/stops/H5qu149a", "https://tec.openplanner.team/stops/H5qu156d"], ["https://tec.openplanner.team/stops/X904aab", "https://tec.openplanner.team/stops/X904aba"], ["https://tec.openplanner.team/stops/N511aea", "https://tec.openplanner.team/stops/N511atb"], ["https://tec.openplanner.team/stops/Lagindu1", "https://tec.openplanner.team/stops/Lkithie1"], ["https://tec.openplanner.team/stops/Bsdafra1", "https://tec.openplanner.team/stops/Csdrofr2"], ["https://tec.openplanner.team/stops/Cgon51", "https://tec.openplanner.team/stops/Cjuapca2"], ["https://tec.openplanner.team/stops/Bmrleco1", "https://tec.openplanner.team/stops/Bmrleco4"], ["https://tec.openplanner.team/stops/N211apa", "https://tec.openplanner.team/stops/N211ara"], ["https://tec.openplanner.team/stops/LFCvoer1", "https://tec.openplanner.team/stops/LFCvoer2"], ["https://tec.openplanner.team/stops/N206aab", "https://tec.openplanner.team/stops/X206azb"], ["https://tec.openplanner.team/stops/LJAcham2", "https://tec.openplanner.team/stops/LJAgoff2"], ["https://tec.openplanner.team/stops/Blonegl1", "https://tec.openplanner.team/stops/Bptbmco1"], ["https://tec.openplanner.team/stops/Ccimont1", "https://tec.openplanner.team/stops/Ccipier1"], ["https://tec.openplanner.team/stops/N244ama", "https://tec.openplanner.team/stops/N244amb"], ["https://tec.openplanner.team/stops/H1cd110a", "https://tec.openplanner.team/stops/H1cd110b"], ["https://tec.openplanner.team/stops/LVLf10-2", "https://tec.openplanner.team/stops/LVLruis1"], ["https://tec.openplanner.team/stops/LhSbruc2", "https://tec.openplanner.team/stops/LhSgete3"], ["https://tec.openplanner.team/stops/LAyheid1", "https://tec.openplanner.team/stops/LSHmais1"], ["https://tec.openplanner.team/stops/H4bh100a", "https://tec.openplanner.team/stops/H4bh104a"], ["https://tec.openplanner.team/stops/H2fa105b", "https://tec.openplanner.team/stops/H2fa108b"], ["https://tec.openplanner.team/stops/H1gc124a", "https://tec.openplanner.team/stops/H1go174a"], ["https://tec.openplanner.team/stops/H2bh115b", "https://tec.openplanner.team/stops/H2fy120c"], ["https://tec.openplanner.team/stops/LWepost2", "https://tec.openplanner.team/stops/LWevand1"], ["https://tec.openplanner.team/stops/N543bob", "https://tec.openplanner.team/stops/N543cna"], ["https://tec.openplanner.team/stops/LBUchpl1", "https://tec.openplanner.team/stops/LHhmohe1"], ["https://tec.openplanner.team/stops/LkTsch%C3%B61", "https://tec.openplanner.team/stops/LkTtal-2"], ["https://tec.openplanner.team/stops/X824aac", "https://tec.openplanner.team/stops/X824abb"], ["https://tec.openplanner.team/stops/N509awb", "https://tec.openplanner.team/stops/N511ava"], ["https://tec.openplanner.team/stops/N501bza", "https://tec.openplanner.team/stops/N501cca"], ["https://tec.openplanner.team/stops/H1gy112a", "https://tec.openplanner.team/stops/H1gy114b"], ["https://tec.openplanner.team/stops/Cmlchan1", "https://tec.openplanner.team/stops/Cmlours2"], ["https://tec.openplanner.team/stops/H1gr113b", "https://tec.openplanner.team/stops/H1gr123d"], ["https://tec.openplanner.team/stops/Cjumarc3", "https://tec.openplanner.team/stops/Cjumarc4"], ["https://tec.openplanner.team/stops/Louduna*", "https://tec.openplanner.team/stops/Loumair1"], ["https://tec.openplanner.team/stops/X733aha", "https://tec.openplanner.team/stops/X734abb"], ["https://tec.openplanner.team/stops/Landeja2", "https://tec.openplanner.team/stops/Lanegal1"], ["https://tec.openplanner.team/stops/X397aba", "https://tec.openplanner.team/stops/X901amb"], ["https://tec.openplanner.team/stops/Lfhgara1", "https://tec.openplanner.team/stops/Lfhlons2"], ["https://tec.openplanner.team/stops/Cgocitn1", "https://tec.openplanner.team/stops/Cgofleu3"], ["https://tec.openplanner.team/stops/Cgomart1", "https://tec.openplanner.team/stops/Cgostro1"], ["https://tec.openplanner.team/stops/X890aab", "https://tec.openplanner.team/stops/X890aca"], ["https://tec.openplanner.team/stops/Bmsgpfo2", "https://tec.openplanner.team/stops/Bmsgrco2"], ["https://tec.openplanner.team/stops/X669aeb", "https://tec.openplanner.team/stops/X672aia"], ["https://tec.openplanner.team/stops/Bbiemse1", "https://tec.openplanner.team/stops/Bgzdpco2"], ["https://tec.openplanner.team/stops/LHheg--2", "https://tec.openplanner.team/stops/LHhmohe2"], ["https://tec.openplanner.team/stops/N101ara", "https://tec.openplanner.team/stops/N101arb"], ["https://tec.openplanner.team/stops/LtHfrie1", "https://tec.openplanner.team/stops/LtHkirc4"], ["https://tec.openplanner.team/stops/H4ty272b", "https://tec.openplanner.team/stops/H4ty308c"], ["https://tec.openplanner.team/stops/LTHbelv1", "https://tec.openplanner.team/stops/LTHbelv2"], ["https://tec.openplanner.team/stops/LXoeg--3", "https://tec.openplanner.team/stops/LXomc--3"], ["https://tec.openplanner.team/stops/Lanfran4", "https://tec.openplanner.team/stops/Lanpisc1"], ["https://tec.openplanner.team/stops/H1pa103a", "https://tec.openplanner.team/stops/H1pa117b"], ["https://tec.openplanner.team/stops/Bwatcoq1", "https://tec.openplanner.team/stops/Bwategp1"], ["https://tec.openplanner.team/stops/Borborb2", "https://tec.openplanner.team/stops/Borbtre1"], ["https://tec.openplanner.team/stops/Bfelcsa2", "https://tec.openplanner.team/stops/Bsencen1"], ["https://tec.openplanner.team/stops/LGeborn1", "https://tec.openplanner.team/stops/LGeborn2"], ["https://tec.openplanner.team/stops/LEBeg--1", "https://tec.openplanner.team/stops/LEBeg--2"], ["https://tec.openplanner.team/stops/LVu40--1", "https://tec.openplanner.team/stops/LVukabi2"], ["https://tec.openplanner.team/stops/X750aua", "https://tec.openplanner.team/stops/X750bhb"], ["https://tec.openplanner.team/stops/LMOchpl1", "https://tec.openplanner.team/stops/LMOchpl2"], ["https://tec.openplanner.team/stops/X717abb", "https://tec.openplanner.team/stops/X717aea"], ["https://tec.openplanner.team/stops/LBLcalv2", "https://tec.openplanner.team/stops/LBLvici3"], ["https://tec.openplanner.team/stops/N508aab", "https://tec.openplanner.team/stops/N508aeb"], ["https://tec.openplanner.team/stops/Btlbegl4", "https://tec.openplanner.team/stops/Btlbmel1"], ["https://tec.openplanner.team/stops/H1hl124b", "https://tec.openplanner.team/stops/H1hl126b"], ["https://tec.openplanner.team/stops/LHdvill2", "https://tec.openplanner.team/stops/LVnvieg1"], ["https://tec.openplanner.team/stops/Lverdep2", "https://tec.openplanner.team/stops/Lverogi2"], ["https://tec.openplanner.team/stops/X941aaa", "https://tec.openplanner.team/stops/X941abb"], ["https://tec.openplanner.team/stops/Llgavro1", "https://tec.openplanner.team/stops/Llgfail1"], ["https://tec.openplanner.team/stops/X601awb", "https://tec.openplanner.team/stops/X601cya"], ["https://tec.openplanner.team/stops/Llgcham7", "https://tec.openplanner.team/stops/Llghars5"], ["https://tec.openplanner.team/stops/N536ada", "https://tec.openplanner.team/stops/N536aeb"], ["https://tec.openplanner.team/stops/Cmgpla2", "https://tec.openplanner.team/stops/Cmgslo2"], ["https://tec.openplanner.team/stops/N204aja", "https://tec.openplanner.team/stops/N219adb"], ["https://tec.openplanner.team/stops/X721aea", "https://tec.openplanner.team/stops/X721afa"], ["https://tec.openplanner.team/stops/LSGec--2", "https://tec.openplanner.team/stops/LSGsolo1"], ["https://tec.openplanner.team/stops/LAUpind2", "https://tec.openplanner.team/stops/LAUscha1"], ["https://tec.openplanner.team/stops/X921aha", "https://tec.openplanner.team/stops/X921aqb"], ["https://tec.openplanner.team/stops/N150akb", "https://tec.openplanner.team/stops/N165aab"], ["https://tec.openplanner.team/stops/LMAgare*", "https://tec.openplanner.team/stops/LMAgdfa1"], ["https://tec.openplanner.team/stops/N508aaa", "https://tec.openplanner.team/stops/N508ama"], ["https://tec.openplanner.team/stops/N894aaa", "https://tec.openplanner.team/stops/N894aba"], ["https://tec.openplanner.team/stops/Lceegli*", "https://tec.openplanner.team/stops/Lceviei1"], ["https://tec.openplanner.team/stops/N232aqb", "https://tec.openplanner.team/stops/N232bka"], ["https://tec.openplanner.team/stops/X910acb", "https://tec.openplanner.team/stops/X910ada"], ["https://tec.openplanner.team/stops/Lgrdemo2", "https://tec.openplanner.team/stops/Lgrspir1"], ["https://tec.openplanner.team/stops/LNOpt--2", "https://tec.openplanner.team/stops/LRErive1"], ["https://tec.openplanner.team/stops/H2ha127a", "https://tec.openplanner.team/stops/H2ha143a"], ["https://tec.openplanner.team/stops/Lpocent1", "https://tec.openplanner.team/stops/Lpoprie2"], ["https://tec.openplanner.team/stops/LSOgard1", "https://tec.openplanner.team/stops/LSOgard2"], ["https://tec.openplanner.team/stops/Cclplac2", "https://tec.openplanner.team/stops/Cclrgiv2"], ["https://tec.openplanner.team/stops/H1em101b", "https://tec.openplanner.team/stops/H1em107b"], ["https://tec.openplanner.team/stops/Blmldmi1", "https://tec.openplanner.team/stops/Blmldmi2"], ["https://tec.openplanner.team/stops/LESpont1", "https://tec.openplanner.team/stops/LESpont2"], ["https://tec.openplanner.team/stops/NH21aga", "https://tec.openplanner.team/stops/NH21aha"], ["https://tec.openplanner.team/stops/Ccoacar1", "https://tec.openplanner.team/stops/Ccogode1"], ["https://tec.openplanner.team/stops/Lsechev1", "https://tec.openplanner.team/stops/Lsefoot1"], ["https://tec.openplanner.team/stops/LBveg--2", "https://tec.openplanner.team/stops/LBvnico4"], ["https://tec.openplanner.team/stops/Cchcime1", "https://tec.openplanner.team/stops/Cchdelf1"], ["https://tec.openplanner.team/stops/Bbbksth2", "https://tec.openplanner.team/stops/Bhmmcsc1"], ["https://tec.openplanner.team/stops/Lmitroi2", "https://tec.openplanner.team/stops/Lvtlomb2"], ["https://tec.openplanner.team/stops/N501dpa", "https://tec.openplanner.team/stops/N501dpb"], ["https://tec.openplanner.team/stops/Cflstan3", "https://tec.openplanner.team/stops/NC12adb"], ["https://tec.openplanner.team/stops/H2ha129d", "https://tec.openplanner.team/stops/H2ha141a"], ["https://tec.openplanner.team/stops/X624aha", "https://tec.openplanner.team/stops/X624ala"], ["https://tec.openplanner.team/stops/H4oe147a", "https://tec.openplanner.team/stops/H4oe149b"], ["https://tec.openplanner.team/stops/N511apa", "https://tec.openplanner.team/stops/N511avb"], ["https://tec.openplanner.team/stops/Ladfoot2", "https://tec.openplanner.team/stops/Ladjuif1"], ["https://tec.openplanner.team/stops/Cjugohi3", "https://tec.openplanner.team/stops/Cjugohi4"], ["https://tec.openplanner.team/stops/X636aca", "https://tec.openplanner.team/stops/X636bia"], ["https://tec.openplanner.team/stops/Cjxdesc1", "https://tec.openplanner.team/stops/Cnapetr2"], ["https://tec.openplanner.team/stops/LBJplan1", "https://tec.openplanner.team/stops/LBJplan2"], ["https://tec.openplanner.team/stops/LrUgeme1", "https://tec.openplanner.team/stops/LrUlasc2"], ["https://tec.openplanner.team/stops/LNHbarr1", "https://tec.openplanner.team/stops/LNHhome2"], ["https://tec.openplanner.team/stops/NC02ava", "https://tec.openplanner.team/stops/NC02avb"], ["https://tec.openplanner.team/stops/Bhalcbr1", "https://tec.openplanner.team/stops/Bhalcbr2"], ["https://tec.openplanner.team/stops/LStroch2", "https://tec.openplanner.team/stops/LWNfani1"], ["https://tec.openplanner.team/stops/LHUaron2", "https://tec.openplanner.team/stops/LHUdelc3"], ["https://tec.openplanner.team/stops/X907afa", "https://tec.openplanner.team/stops/X907afb"], ["https://tec.openplanner.team/stops/Cfabnat1", "https://tec.openplanner.team/stops/Cfanoci2"], ["https://tec.openplanner.team/stops/LMAbijo2", "https://tec.openplanner.team/stops/LMAbruy1"], ["https://tec.openplanner.team/stops/LHe3com1", "https://tec.openplanner.team/stops/LHecime1"], ["https://tec.openplanner.team/stops/Brixcme1", "https://tec.openplanner.team/stops/Brsrber2"], ["https://tec.openplanner.team/stops/X811aia", "https://tec.openplanner.team/stops/X811aja"], ["https://tec.openplanner.team/stops/Bgemga08", "https://tec.openplanner.team/stops/N522bvf"], ["https://tec.openplanner.team/stops/N501etb", "https://tec.openplanner.team/stops/N501etd"], ["https://tec.openplanner.team/stops/Lvieg--2", "https://tec.openplanner.team/stops/Lvitour1"], ["https://tec.openplanner.team/stops/Bpernov2", "https://tec.openplanner.team/stops/Bperwil2"], ["https://tec.openplanner.team/stops/LHCcoul2", "https://tec.openplanner.team/stops/LHCprog1"], ["https://tec.openplanner.team/stops/H1fl133c", "https://tec.openplanner.team/stops/H1je365a"], ["https://tec.openplanner.team/stops/N576acb", "https://tec.openplanner.team/stops/N576akd"], ["https://tec.openplanner.team/stops/Bboufsm1", "https://tec.openplanner.team/stops/Bbourel1"], ["https://tec.openplanner.team/stops/Llgbell1", "https://tec.openplanner.team/stops/Llgpari1"], ["https://tec.openplanner.team/stops/H4ty318a", "https://tec.openplanner.team/stops/H4ty324c"], ["https://tec.openplanner.team/stops/Bndbdra2", "https://tec.openplanner.team/stops/Bndbpco1"], ["https://tec.openplanner.team/stops/Btslcel2", "https://tec.openplanner.team/stops/Btstbbu2"], ["https://tec.openplanner.team/stops/N515aga", "https://tec.openplanner.team/stops/N515agb"], ["https://tec.openplanner.team/stops/N211aga", "https://tec.openplanner.team/stops/N211ava"], ["https://tec.openplanner.team/stops/X837ada", "https://tec.openplanner.team/stops/X837afb"], ["https://tec.openplanner.team/stops/H4ae102a", "https://tec.openplanner.team/stops/H4rs117a"], ["https://tec.openplanner.team/stops/Bmsgbay1", "https://tec.openplanner.team/stops/Bmsgpfo1"], ["https://tec.openplanner.team/stops/X994aea", "https://tec.openplanner.team/stops/X994aeb"], ["https://tec.openplanner.team/stops/Caioign3", "https://tec.openplanner.team/stops/Caioign4"], ["https://tec.openplanner.team/stops/X342aeb", "https://tec.openplanner.team/stops/X342aga"], ["https://tec.openplanner.team/stops/LSPclai1", "https://tec.openplanner.team/stops/LSPclai2"], ["https://tec.openplanner.team/stops/LOTsava2", "https://tec.openplanner.team/stops/LOTtong1"], ["https://tec.openplanner.team/stops/Lcapisc1", "https://tec.openplanner.team/stops/Lcapisc2"], ["https://tec.openplanner.team/stops/Lhrhosp2", "https://tec.openplanner.team/stops/Lhrmilm1"], ["https://tec.openplanner.team/stops/X793aga", "https://tec.openplanner.team/stops/X793aha"], ["https://tec.openplanner.team/stops/X687aba", "https://tec.openplanner.team/stops/X688aaa"], ["https://tec.openplanner.team/stops/Lmocail1", "https://tec.openplanner.team/stops/Lsnecco3"], ["https://tec.openplanner.team/stops/X725afc", "https://tec.openplanner.team/stops/X725afg"], ["https://tec.openplanner.team/stops/H4bh105a", "https://tec.openplanner.team/stops/H4bh105b"], ["https://tec.openplanner.team/stops/X715aga", "https://tec.openplanner.team/stops/X715aha"], ["https://tec.openplanner.team/stops/LCxross2", "https://tec.openplanner.team/stops/LCxwade2"], ["https://tec.openplanner.team/stops/LbUjost1", "https://tec.openplanner.team/stops/LmUzent1"], ["https://tec.openplanner.team/stops/LmDelek1", "https://tec.openplanner.team/stops/LmDgeme2"], ["https://tec.openplanner.team/stops/X609aia", "https://tec.openplanner.team/stops/X609aka"], ["https://tec.openplanner.team/stops/Cgxpair2", "https://tec.openplanner.team/stops/Cmocime2"], ["https://tec.openplanner.team/stops/X661acb", "https://tec.openplanner.team/stops/X661bca"], ["https://tec.openplanner.team/stops/H4ba102b", "https://tec.openplanner.team/stops/H4ga156a"], ["https://tec.openplanner.team/stops/N508aca", "https://tec.openplanner.team/stops/N508acb"], ["https://tec.openplanner.team/stops/LFlabba3", "https://tec.openplanner.team/stops/LFlpark*"], ["https://tec.openplanner.team/stops/LHgdari1", "https://tec.openplanner.team/stops/LOMdodi2"], ["https://tec.openplanner.team/stops/N515atb", "https://tec.openplanner.team/stops/N515aua"], ["https://tec.openplanner.team/stops/H2ep144a", "https://tec.openplanner.team/stops/H2ep144b"], ["https://tec.openplanner.team/stops/H4ba102b", "https://tec.openplanner.team/stops/H4ml206a"], ["https://tec.openplanner.team/stops/X812anb", "https://tec.openplanner.team/stops/X812aua"], ["https://tec.openplanner.team/stops/Bclgvmo2", "https://tec.openplanner.team/stops/Bcrbast1"], ["https://tec.openplanner.team/stops/Llgtcha1", "https://tec.openplanner.team/stops/Llgtcha2"], ["https://tec.openplanner.team/stops/Lvc4bra2", "https://tec.openplanner.team/stops/Lvcbalt1"], ["https://tec.openplanner.team/stops/X901aaa", "https://tec.openplanner.team/stops/X901bja"], ["https://tec.openplanner.team/stops/H4an105a", "https://tec.openplanner.team/stops/H4rs119b"], ["https://tec.openplanner.team/stops/H4ru238a", "https://tec.openplanner.team/stops/H4ty311b"], ["https://tec.openplanner.team/stops/N525aha", "https://tec.openplanner.team/stops/N525aza"], ["https://tec.openplanner.team/stops/LnIfrie1", "https://tec.openplanner.team/stops/LnIfrie2"], ["https://tec.openplanner.team/stops/N309aca", "https://tec.openplanner.team/stops/N343abb"], ["https://tec.openplanner.team/stops/Lsnhoco1", "https://tec.openplanner.team/stops/Lsntvbi3"], ["https://tec.openplanner.team/stops/Ljuathe2", "https://tec.openplanner.team/stops/Ljuetie3"], ["https://tec.openplanner.team/stops/Cbcegli1", "https://tec.openplanner.team/stops/Cbcha651"], ["https://tec.openplanner.team/stops/Ljhheus1", "https://tec.openplanner.team/stops/Ljhmany1"], ["https://tec.openplanner.team/stops/H1fa121b", "https://tec.openplanner.team/stops/H1vb143a"], ["https://tec.openplanner.team/stops/LAUscha2", "https://tec.openplanner.team/stops/LFProt-1"], ["https://tec.openplanner.team/stops/H2hg270a", "https://tec.openplanner.team/stops/H2ll176c"], ["https://tec.openplanner.team/stops/X671afb", "https://tec.openplanner.team/stops/X671agb"], ["https://tec.openplanner.team/stops/LAmwaut2", "https://tec.openplanner.team/stops/LNHhome1"], ["https://tec.openplanner.team/stops/X994alb", "https://tec.openplanner.team/stops/X994amb"], ["https://tec.openplanner.team/stops/LSInd--1", "https://tec.openplanner.team/stops/LSIroch2"], ["https://tec.openplanner.team/stops/N170aaa", "https://tec.openplanner.team/stops/N170aba"], ["https://tec.openplanner.team/stops/Berncim1", "https://tec.openplanner.team/stops/Bwspbbo2"], ["https://tec.openplanner.team/stops/Bcbqcht1", "https://tec.openplanner.team/stops/Bcbqufo2"], ["https://tec.openplanner.team/stops/LeUroll1", "https://tec.openplanner.team/stops/LkTdorf1"], ["https://tec.openplanner.team/stops/X342afb", "https://tec.openplanner.team/stops/X363aca"], ["https://tec.openplanner.team/stops/H2pr114a", "https://tec.openplanner.team/stops/H2pr118a"], ["https://tec.openplanner.team/stops/NC14aab", "https://tec.openplanner.team/stops/NC44aha"], ["https://tec.openplanner.team/stops/LSGcolo1", "https://tec.openplanner.team/stops/LSkathe2"], ["https://tec.openplanner.team/stops/N536acb", "https://tec.openplanner.team/stops/N537aba"], ["https://tec.openplanner.team/stops/Cgzplac1", "https://tec.openplanner.team/stops/Cgzplac2"], ["https://tec.openplanner.team/stops/H1po139a", "https://tec.openplanner.team/stops/H5st162b"], ["https://tec.openplanner.team/stops/H4po125a", "https://tec.openplanner.team/stops/H4po129b"], ["https://tec.openplanner.team/stops/H1si153b", "https://tec.openplanner.team/stops/H1si156a"], ["https://tec.openplanner.team/stops/N512ana", "https://tec.openplanner.team/stops/N512atb"], ["https://tec.openplanner.team/stops/Cbbcrbo1", "https://tec.openplanner.team/stops/Cssgare2"], ["https://tec.openplanner.team/stops/Lhutill2", "https://tec.openplanner.team/stops/Lvevieu2"], ["https://tec.openplanner.team/stops/H4ty267a", "https://tec.openplanner.team/stops/H4ty267b"], ["https://tec.openplanner.team/stops/N557aaa", "https://tec.openplanner.team/stops/N557aad"], ["https://tec.openplanner.team/stops/H1ry136a", "https://tec.openplanner.team/stops/H1ry136b"], ["https://tec.openplanner.team/stops/LBRgend1", "https://tec.openplanner.team/stops/LBRtrag2"], ["https://tec.openplanner.team/stops/H2ca111b", "https://tec.openplanner.team/stops/H2ml114a"], ["https://tec.openplanner.team/stops/Cgzdeve1", "https://tec.openplanner.team/stops/Cgzoctr1"], ["https://tec.openplanner.team/stops/LXhcite1", "https://tec.openplanner.team/stops/LXhcite2"], ["https://tec.openplanner.team/stops/Llgbobu6", "https://tec.openplanner.team/stops/Llgdelc1"], ["https://tec.openplanner.team/stops/LBQplac1", "https://tec.openplanner.team/stops/N223aba"], ["https://tec.openplanner.team/stops/H1el134a", "https://tec.openplanner.team/stops/H1el138a"], ["https://tec.openplanner.team/stops/Bjancha2", "https://tec.openplanner.team/stops/Bjaurgo2"], ["https://tec.openplanner.team/stops/H5at141a", "https://tec.openplanner.team/stops/H5at141b"], ["https://tec.openplanner.team/stops/LDOordi1", "https://tec.openplanner.team/stops/LGOhevr1"], ["https://tec.openplanner.team/stops/Bblavba1", "https://tec.openplanner.team/stops/Bwatcro1"], ["https://tec.openplanner.team/stops/H4fo117a", "https://tec.openplanner.team/stops/H4fo118a"], ["https://tec.openplanner.team/stops/Cjupier2", "https://tec.openplanner.team/stops/Cjuspin2"], ["https://tec.openplanner.team/stops/Ctrecol2", "https://tec.openplanner.team/stops/Ctrleju2"], ["https://tec.openplanner.team/stops/H1hr121d", "https://tec.openplanner.team/stops/H3so171a"], ["https://tec.openplanner.team/stops/X923aea", "https://tec.openplanner.team/stops/X923aga"], ["https://tec.openplanner.team/stops/N222aca", "https://tec.openplanner.team/stops/X222aza"], ["https://tec.openplanner.team/stops/N127baa", "https://tec.openplanner.team/stops/N134afa"], ["https://tec.openplanner.team/stops/H4vx361a", "https://tec.openplanner.team/stops/H4vx361b"], ["https://tec.openplanner.team/stops/LvA12--3", "https://tec.openplanner.team/stops/LvAschr1"], ["https://tec.openplanner.team/stops/Bbauham2", "https://tec.openplanner.team/stops/Bnivpal2"], ["https://tec.openplanner.team/stops/LATmale2", "https://tec.openplanner.team/stops/LWNbeto1"], ["https://tec.openplanner.team/stops/LCOcrom1", "https://tec.openplanner.team/stops/LSNchen3"], ["https://tec.openplanner.team/stops/H2sv213b", "https://tec.openplanner.team/stops/H2sv219b"], ["https://tec.openplanner.team/stops/LHUcamp2", "https://tec.openplanner.team/stops/LTieg--1"], ["https://tec.openplanner.team/stops/Lghcham2", "https://tec.openplanner.team/stops/Lghecol*"], ["https://tec.openplanner.team/stops/Llmdela2", "https://tec.openplanner.team/stops/LWenouv1"], ["https://tec.openplanner.team/stops/LGeforg1", "https://tec.openplanner.team/stops/LGeforg2"], ["https://tec.openplanner.team/stops/H4ab100b", "https://tec.openplanner.team/stops/H4ab102a"], ["https://tec.openplanner.team/stops/Chhegli1", "https://tec.openplanner.team/stops/Chhegli3"], ["https://tec.openplanner.team/stops/X775aga", "https://tec.openplanner.team/stops/X775aha"], ["https://tec.openplanner.team/stops/X371aeb", "https://tec.openplanner.team/stops/X371afb"], ["https://tec.openplanner.team/stops/Bmrleco2", "https://tec.openplanner.team/stops/Bmrleco4"], ["https://tec.openplanner.team/stops/N501jda", "https://tec.openplanner.team/stops/N501jea"], ["https://tec.openplanner.team/stops/Crcgmah1", "https://tec.openplanner.team/stops/Crcrgar1"], ["https://tec.openplanner.team/stops/H4mo132b", "https://tec.openplanner.team/stops/H4mo155a"], ["https://tec.openplanner.team/stops/LhRandl2", "https://tec.openplanner.team/stops/LwEdorf1"], ["https://tec.openplanner.team/stops/X983acb", "https://tec.openplanner.team/stops/X983adb"], ["https://tec.openplanner.team/stops/N544aba", "https://tec.openplanner.team/stops/N544abc"], ["https://tec.openplanner.team/stops/X659ala", "https://tec.openplanner.team/stops/X659ama"], ["https://tec.openplanner.team/stops/LSGeg--3", "https://tec.openplanner.team/stops/LSGeg--4"], ["https://tec.openplanner.team/stops/Lsmrcim2", "https://tec.openplanner.team/stops/Lsmsech4"], ["https://tec.openplanner.team/stops/Bbiecoc1", "https://tec.openplanner.team/stops/Bgzdpos2"], ["https://tec.openplanner.team/stops/N561ada", "https://tec.openplanner.team/stops/N561aha"], ["https://tec.openplanner.team/stops/Brsgm802", "https://tec.openplanner.team/stops/Bwatpct2"], ["https://tec.openplanner.team/stops/Brsga151", "https://tec.openplanner.team/stops/Brsga152"], ["https://tec.openplanner.team/stops/H2hg268c", "https://tec.openplanner.team/stops/H2hg271a"], ["https://tec.openplanner.team/stops/Lansarm2", "https://tec.openplanner.team/stops/Lmobols1"], ["https://tec.openplanner.team/stops/Llgdart5", "https://tec.openplanner.team/stops/LlgguilC"], ["https://tec.openplanner.team/stops/N501mua", "https://tec.openplanner.team/stops/N527adb"], ["https://tec.openplanner.team/stops/X609adb", "https://tec.openplanner.team/stops/X609ama"], ["https://tec.openplanner.team/stops/H1hr120b", "https://tec.openplanner.team/stops/H1hr121c"], ["https://tec.openplanner.team/stops/LDOastr1", "https://tec.openplanner.team/stops/LDOprev1"], ["https://tec.openplanner.team/stops/X986ajb", "https://tec.openplanner.team/stops/X986alb"], ["https://tec.openplanner.team/stops/LORruis1", "https://tec.openplanner.team/stops/LORthie1"], ["https://tec.openplanner.team/stops/Bllngal1", "https://tec.openplanner.team/stops/Bllngar4"], ["https://tec.openplanner.team/stops/H4wa151a", "https://tec.openplanner.team/stops/H4wa151b"], ["https://tec.openplanner.team/stops/H4ka193b", "https://tec.openplanner.team/stops/H4ka400a"], ["https://tec.openplanner.team/stops/N501gsa", "https://tec.openplanner.team/stops/N501hla"], ["https://tec.openplanner.team/stops/H1ms285a", "https://tec.openplanner.team/stops/H1ms304a"], ["https://tec.openplanner.team/stops/H1en103a", "https://tec.openplanner.team/stops/H1mk115a"], ["https://tec.openplanner.team/stops/X911aca", "https://tec.openplanner.team/stops/X911acb"], ["https://tec.openplanner.team/stops/Cmlcpar1", "https://tec.openplanner.team/stops/Cmlhubi2"], ["https://tec.openplanner.team/stops/X902aba", "https://tec.openplanner.team/stops/X902abb"], ["https://tec.openplanner.team/stops/LRGchap1", "https://tec.openplanner.team/stops/LRGchap2"], ["https://tec.openplanner.team/stops/X629aca", "https://tec.openplanner.team/stops/X629acb"], ["https://tec.openplanner.team/stops/Cnahahe1", "https://tec.openplanner.team/stops/Cnahahe2"], ["https://tec.openplanner.team/stops/N301adb", "https://tec.openplanner.team/stops/N301afc"], ["https://tec.openplanner.team/stops/LHGikea1", "https://tec.openplanner.team/stops/LHGleje1"], ["https://tec.openplanner.team/stops/Lrchype1", "https://tec.openplanner.team/stops/Lrchype2"], ["https://tec.openplanner.team/stops/LARauto4", "https://tec.openplanner.team/stops/LARgare3"], ["https://tec.openplanner.team/stops/LBDfran2", "https://tec.openplanner.team/stops/LJEniho2"], ["https://tec.openplanner.team/stops/H4eg108b", "https://tec.openplanner.team/stops/H4sl154b"], ["https://tec.openplanner.team/stops/H5at108a", "https://tec.openplanner.team/stops/H5at119a"], ["https://tec.openplanner.team/stops/X672aec", "https://tec.openplanner.team/stops/X672afb"], ["https://tec.openplanner.team/stops/LMaburg3", "https://tec.openplanner.team/stops/LMamuse4"], ["https://tec.openplanner.team/stops/Bnilhau2", "https://tec.openplanner.team/stops/Bnilreg1"], ["https://tec.openplanner.team/stops/Bfelrav2", "https://tec.openplanner.team/stops/Bsengma2"], ["https://tec.openplanner.team/stops/Lsnmala3", "https://tec.openplanner.team/stops/Lsnmala4"], ["https://tec.openplanner.team/stops/Llgboux1", "https://tec.openplanner.team/stops/Lvtboux1"], ["https://tec.openplanner.team/stops/H4ty310a", "https://tec.openplanner.team/stops/H4ty317a"], ["https://tec.openplanner.team/stops/LROmorf1", "https://tec.openplanner.team/stops/LWalibo2"], ["https://tec.openplanner.team/stops/LCRgdrt2", "https://tec.openplanner.team/stops/LFmbure1"], ["https://tec.openplanner.team/stops/Cbetrie1", "https://tec.openplanner.team/stops/Ctyhame1"], ["https://tec.openplanner.team/stops/X608ala", "https://tec.openplanner.team/stops/X609aeb"], ["https://tec.openplanner.team/stops/LLecolo1", "https://tec.openplanner.team/stops/X547aqb"], ["https://tec.openplanner.team/stops/Bsgetri1", "https://tec.openplanner.team/stops/Bsgevil1"], ["https://tec.openplanner.team/stops/Bptrpla1", "https://tec.openplanner.team/stops/Bptrvil2"], ["https://tec.openplanner.team/stops/Lreec--2", "https://tec.openplanner.team/stops/Lretill1"], ["https://tec.openplanner.team/stops/N251aab", "https://tec.openplanner.team/stops/N251abb"], ["https://tec.openplanner.team/stops/LmI36--1", "https://tec.openplanner.team/stops/LmIvale4"], ["https://tec.openplanner.team/stops/H2ch107a", "https://tec.openplanner.team/stops/H2ch107b"], ["https://tec.openplanner.team/stops/LHMcruc1", "https://tec.openplanner.team/stops/LHMpatl1"], ["https://tec.openplanner.team/stops/LkEschi1", "https://tec.openplanner.team/stops/LkEschi2"], ["https://tec.openplanner.team/stops/N501ada", "https://tec.openplanner.team/stops/N502ada"], ["https://tec.openplanner.team/stops/LlgOPER2", "https://tec.openplanner.team/stops/LlgR-Fr*"], ["https://tec.openplanner.team/stops/H4ag100a", "https://tec.openplanner.team/stops/H4ag107b"], ["https://tec.openplanner.team/stops/N526aaa", "https://tec.openplanner.team/stops/N526abb"], ["https://tec.openplanner.team/stops/Lprdavi2", "https://tec.openplanner.team/stops/Lprorem2"], ["https://tec.openplanner.team/stops/LrUweve2", "https://tec.openplanner.team/stops/LsBzent2"], ["https://tec.openplanner.team/stops/Cmmegli2", "https://tec.openplanner.team/stops/Cmmpast1"], ["https://tec.openplanner.team/stops/LHXfont1", "https://tec.openplanner.team/stops/LHXn47-3"], ["https://tec.openplanner.team/stops/Ccpbrun1", "https://tec.openplanner.team/stops/H2ch123b"], ["https://tec.openplanner.team/stops/H4rx142b", "https://tec.openplanner.team/stops/H4rx175b"], ["https://tec.openplanner.team/stops/N236aia", "https://tec.openplanner.team/stops/N236aib"], ["https://tec.openplanner.team/stops/N357ada", "https://tec.openplanner.team/stops/N357afa"], ["https://tec.openplanner.team/stops/Bwspmon2", "https://tec.openplanner.team/stops/Bwspmon3"], ["https://tec.openplanner.team/stops/Lsnferr1", "https://tec.openplanner.team/stops/Lsnferr2"], ["https://tec.openplanner.team/stops/LReeg--1", "https://tec.openplanner.team/stops/LRemonu2"], ["https://tec.openplanner.team/stops/X809aaa", "https://tec.openplanner.team/stops/X809aab"], ["https://tec.openplanner.team/stops/Cgysarr1", "https://tec.openplanner.team/stops/Cwgtill2"], ["https://tec.openplanner.team/stops/X734aha", "https://tec.openplanner.team/stops/X734ahb"], ["https://tec.openplanner.team/stops/Cctjoue5", "https://tec.openplanner.team/stops/Cpllimi2"], ["https://tec.openplanner.team/stops/LMAbijo1", "https://tec.openplanner.team/stops/LMAgb--2"], ["https://tec.openplanner.team/stops/H1ha184a", "https://tec.openplanner.team/stops/H1ss351b"], ["https://tec.openplanner.team/stops/X804bzb", "https://tec.openplanner.team/stops/X831aea"], ["https://tec.openplanner.team/stops/H5qu143b", "https://tec.openplanner.team/stops/H5qu152b"], ["https://tec.openplanner.team/stops/X812ajb", "https://tec.openplanner.team/stops/X812ala"], ["https://tec.openplanner.team/stops/H2ca101b", "https://tec.openplanner.team/stops/H2ca103c"], ["https://tec.openplanner.team/stops/Bndbgar1", "https://tec.openplanner.team/stops/Btlgreg1"], ["https://tec.openplanner.team/stops/Llgelis1", "https://tec.openplanner.team/stops/Llgelis2"], ["https://tec.openplanner.team/stops/Ccunove1", "https://tec.openplanner.team/stops/Ccunove2"], ["https://tec.openplanner.team/stops/H4ru246a", "https://tec.openplanner.team/stops/H4ru246b"], ["https://tec.openplanner.team/stops/Cchba11", "https://tec.openplanner.team/stops/Cchba12"], ["https://tec.openplanner.team/stops/Loucoti2", "https://tec.openplanner.team/stops/Louvira1"], ["https://tec.openplanner.team/stops/X758agb", "https://tec.openplanner.team/stops/X758ajb"], ["https://tec.openplanner.team/stops/LAYecol1", "https://tec.openplanner.team/stops/LAYpl--1"], ["https://tec.openplanner.team/stops/Ccoacar2", "https://tec.openplanner.team/stops/Ccohotv1"], ["https://tec.openplanner.team/stops/Llglave2", "https://tec.openplanner.team/stops/Llgmako2"], ["https://tec.openplanner.team/stops/LCelabi2", "https://tec.openplanner.team/stops/LFabraa2"], ["https://tec.openplanner.team/stops/N224agc", "https://tec.openplanner.team/stops/X398afa"], ["https://tec.openplanner.team/stops/Cgd4ven1", "https://tec.openplanner.team/stops/Clgpavi2"], ["https://tec.openplanner.team/stops/X774aac", "https://tec.openplanner.team/stops/X774acb"], ["https://tec.openplanner.team/stops/Bmrlhau1", "https://tec.openplanner.team/stops/Bpienod1"], ["https://tec.openplanner.team/stops/Lghreyn1", "https://tec.openplanner.team/stops/Lghreyn2"], ["https://tec.openplanner.team/stops/LNCneuv2", "https://tec.openplanner.team/stops/Lsedavy2"], ["https://tec.openplanner.team/stops/LAWcite1", "https://tec.openplanner.team/stops/LAWvold1"], ["https://tec.openplanner.team/stops/X919ama", "https://tec.openplanner.team/stops/X919amb"], ["https://tec.openplanner.team/stops/X877acb", "https://tec.openplanner.team/stops/X877adb"], ["https://tec.openplanner.team/stops/Cvretan2", "https://tec.openplanner.team/stops/Cvrfcho1"], ["https://tec.openplanner.team/stops/LCRfavr1", "https://tec.openplanner.team/stops/LCRfavr2"], ["https://tec.openplanner.team/stops/LaMschw1", "https://tec.openplanner.team/stops/LaMschw2"], ["https://tec.openplanner.team/stops/N235aba", "https://tec.openplanner.team/stops/N235afa"], ["https://tec.openplanner.team/stops/Cchsud10", "https://tec.openplanner.team/stops/Cchtram2"], ["https://tec.openplanner.team/stops/Buccpin1", "https://tec.openplanner.team/stops/Buccvbe1"], ["https://tec.openplanner.team/stops/H2sv211a", "https://tec.openplanner.team/stops/H2sv211b"], ["https://tec.openplanner.team/stops/Bnivpal1", "https://tec.openplanner.team/stops/Bthivil2"], ["https://tec.openplanner.team/stops/H2sb239b", "https://tec.openplanner.team/stops/H2sb243c"], ["https://tec.openplanner.team/stops/Bwatbca1", "https://tec.openplanner.team/stops/Bwatcci1"], ["https://tec.openplanner.team/stops/Cgrchfe2", "https://tec.openplanner.team/stops/Clvmesa1"], ["https://tec.openplanner.team/stops/LTRgare1", "https://tec.openplanner.team/stops/LTRgare4"], ["https://tec.openplanner.team/stops/Brsggar2", "https://tec.openplanner.team/stops/Brsgtou2"], ["https://tec.openplanner.team/stops/X892aca", "https://tec.openplanner.team/stops/X892acb"], ["https://tec.openplanner.team/stops/Bptrgri1", "https://tec.openplanner.team/stops/Bptrgri2"], ["https://tec.openplanner.team/stops/X617aia", "https://tec.openplanner.team/stops/X618aja"], ["https://tec.openplanner.team/stops/Clddelh2", "https://tec.openplanner.team/stops/Cldvign2"], ["https://tec.openplanner.team/stops/LDLbaye2", "https://tec.openplanner.team/stops/LDLboul2"], ["https://tec.openplanner.team/stops/N385aca", "https://tec.openplanner.team/stops/N385aea"], ["https://tec.openplanner.team/stops/X892aba", "https://tec.openplanner.team/stops/X892abb"], ["https://tec.openplanner.team/stops/Bgnpchb1", "https://tec.openplanner.team/stops/Bgnpjbe2"], ["https://tec.openplanner.team/stops/Cchdagn1", "https://tec.openplanner.team/stops/Cchdigu4"], ["https://tec.openplanner.team/stops/Lprchat1", "https://tec.openplanner.team/stops/Lprchat2"], ["https://tec.openplanner.team/stops/Clb4dgi1", "https://tec.openplanner.team/stops/Clbpepi1"], ["https://tec.openplanner.team/stops/Cfrcomp2", "https://tec.openplanner.team/stops/Cfrplac6"], ["https://tec.openplanner.team/stops/Ctmazeb2", "https://tec.openplanner.team/stops/Ctmmana1"], ["https://tec.openplanner.team/stops/Ccuwain1", "https://tec.openplanner.team/stops/CMsolei2"], ["https://tec.openplanner.team/stops/X759aeb", "https://tec.openplanner.team/stops/X837aec"], ["https://tec.openplanner.team/stops/N506bab", "https://tec.openplanner.team/stops/N506bod"], ["https://tec.openplanner.team/stops/H1ho123b", "https://tec.openplanner.team/stops/H1ho135b"], ["https://tec.openplanner.team/stops/LHUgdpl2", "https://tec.openplanner.team/stops/LHUremy2"], ["https://tec.openplanner.team/stops/LAVstat1", "https://tec.openplanner.team/stops/LLRrape2"], ["https://tec.openplanner.team/stops/H4ru236b", "https://tec.openplanner.team/stops/H4ru243a"], ["https://tec.openplanner.team/stops/Bbiecim1", "https://tec.openplanner.team/stops/Bbiepon2"], ["https://tec.openplanner.team/stops/X879apa", "https://tec.openplanner.team/stops/X879asa"], ["https://tec.openplanner.team/stops/LAYnias1", "https://tec.openplanner.team/stops/LAYwerb1"], ["https://tec.openplanner.team/stops/LFRrohe2", "https://tec.openplanner.team/stops/LSxeg--1"], ["https://tec.openplanner.team/stops/LLmetat1", "https://tec.openplanner.team/stops/LLmvand1"], ["https://tec.openplanner.team/stops/LGlbour1", "https://tec.openplanner.team/stops/LHolone2"], ["https://tec.openplanner.team/stops/X925ama", "https://tec.openplanner.team/stops/X949ahb"], ["https://tec.openplanner.team/stops/Bbgnton1", "https://tec.openplanner.team/stops/N584alb"], ["https://tec.openplanner.team/stops/LNAbouh1", "https://tec.openplanner.team/stops/LNAmart1"], ["https://tec.openplanner.team/stops/X880adb", "https://tec.openplanner.team/stops/X880afb"], ["https://tec.openplanner.team/stops/N241afa", "https://tec.openplanner.team/stops/N241afb"], ["https://tec.openplanner.team/stops/Cctvche1", "https://tec.openplanner.team/stops/NC11agb"], ["https://tec.openplanner.team/stops/Llmcoop2", "https://tec.openplanner.team/stops/Llmlaro2"], ["https://tec.openplanner.team/stops/N528ata", "https://tec.openplanner.team/stops/N542apb"], ["https://tec.openplanner.team/stops/X759aaa", "https://tec.openplanner.team/stops/X837alb"], ["https://tec.openplanner.team/stops/X397aac", "https://tec.openplanner.team/stops/X398acb"], ["https://tec.openplanner.team/stops/LEBmoul1", "https://tec.openplanner.team/stops/LEMec--1"], ["https://tec.openplanner.team/stops/X746aca", "https://tec.openplanner.team/stops/X746ala"], ["https://tec.openplanner.team/stops/H4mo163a", "https://tec.openplanner.team/stops/H4mo169a"], ["https://tec.openplanner.team/stops/H2hg271b", "https://tec.openplanner.team/stops/H2hg272a"], ["https://tec.openplanner.team/stops/Bottbru2", "https://tec.openplanner.team/stops/Bottppa1"], ["https://tec.openplanner.team/stops/X831aab", "https://tec.openplanner.team/stops/X831acb"], ["https://tec.openplanner.team/stops/N501fsa", "https://tec.openplanner.team/stops/N501mrb"], ["https://tec.openplanner.team/stops/N542amb", "https://tec.openplanner.team/stops/N578abb"], ["https://tec.openplanner.team/stops/N501grg", "https://tec.openplanner.team/stops/N501zda"], ["https://tec.openplanner.team/stops/X733aca", "https://tec.openplanner.team/stops/X734aob"], ["https://tec.openplanner.team/stops/X664aka", "https://tec.openplanner.team/stops/X664asa"], ["https://tec.openplanner.team/stops/Bohnrpl1", "https://tec.openplanner.team/stops/Bohnrsc2"], ["https://tec.openplanner.team/stops/Lmobrac2", "https://tec.openplanner.team/stops/Ltibure3"], ["https://tec.openplanner.team/stops/LVAakke2", "https://tec.openplanner.team/stops/LVAwolf1"], ["https://tec.openplanner.team/stops/N501bsa", "https://tec.openplanner.team/stops/N501mwa"], ["https://tec.openplanner.team/stops/H1je220b", "https://tec.openplanner.team/stops/H1je220d"], ["https://tec.openplanner.team/stops/LFlabba2", "https://tec.openplanner.team/stops/LSkkeri2"], ["https://tec.openplanner.team/stops/Louairl2", "https://tec.openplanner.team/stops/Lscstan2"], ["https://tec.openplanner.team/stops/N506aha", "https://tec.openplanner.team/stops/N506ahb"], ["https://tec.openplanner.team/stops/H2mg152a", "https://tec.openplanner.team/stops/H2mg153a"], ["https://tec.openplanner.team/stops/LFCvoer1", "https://tec.openplanner.team/stops/LWRcruc1"], ["https://tec.openplanner.team/stops/N547ana", "https://tec.openplanner.team/stops/N553ama"], ["https://tec.openplanner.team/stops/N147aaa", "https://tec.openplanner.team/stops/N147acb"], ["https://tec.openplanner.team/stops/Cpl4bra2", "https://tec.openplanner.team/stops/Cplcite1"], ["https://tec.openplanner.team/stops/Blimegl1", "https://tec.openplanner.team/stops/Bottcro2"], ["https://tec.openplanner.team/stops/X808aka", "https://tec.openplanner.team/stops/X808akb"], ["https://tec.openplanner.team/stops/H4he104a", "https://tec.openplanner.team/stops/H4he104b"], ["https://tec.openplanner.team/stops/Brixpro2", "https://tec.openplanner.team/stops/Brixpro4"], ["https://tec.openplanner.team/stops/Lemacac1", "https://tec.openplanner.team/stops/Lemdupo2"], ["https://tec.openplanner.team/stops/X826aaa", "https://tec.openplanner.team/stops/X826aab"], ["https://tec.openplanner.team/stops/Bjaugar4", "https://tec.openplanner.team/stops/Bjauwar1"], ["https://tec.openplanner.team/stops/X660aja", "https://tec.openplanner.team/stops/X660ajb"], ["https://tec.openplanner.team/stops/X754aeb", "https://tec.openplanner.team/stops/X754anb"], ["https://tec.openplanner.team/stops/H4ka180a", "https://tec.openplanner.team/stops/H4ka190a"], ["https://tec.openplanner.team/stops/H4ld126b", "https://tec.openplanner.team/stops/H4to131b"], ["https://tec.openplanner.team/stops/LWEcool1", "https://tec.openplanner.team/stops/LWEgare1"], ["https://tec.openplanner.team/stops/X901ana", "https://tec.openplanner.team/stops/X901apb"], ["https://tec.openplanner.team/stops/X756aaa", "https://tec.openplanner.team/stops/X756aba"], ["https://tec.openplanner.team/stops/N558aaa", "https://tec.openplanner.team/stops/NL67aca"], ["https://tec.openplanner.team/stops/X982aea", "https://tec.openplanner.team/stops/X982bzb"], ["https://tec.openplanner.team/stops/H2bh107b", "https://tec.openplanner.team/stops/H2jo164b"], ["https://tec.openplanner.team/stops/Beclbar2", "https://tec.openplanner.team/stops/H2me117b"], ["https://tec.openplanner.team/stops/X394aeb", "https://tec.openplanner.team/stops/X397aab"], ["https://tec.openplanner.team/stops/LkRrauw1", "https://tec.openplanner.team/stops/LmUzent1"], ["https://tec.openplanner.team/stops/LEScarr1", "https://tec.openplanner.team/stops/LESryon1"], ["https://tec.openplanner.team/stops/LSTec--1", "https://tec.openplanner.team/stops/LSTec--2"], ["https://tec.openplanner.team/stops/Cbimonu2", "https://tec.openplanner.team/stops/Cbiseur1"], ["https://tec.openplanner.team/stops/X673aba", "https://tec.openplanner.team/stops/X673ada"], ["https://tec.openplanner.team/stops/LsVfrie1", "https://tec.openplanner.team/stops/LsVhupp1"], ["https://tec.openplanner.team/stops/Cchabat1", "https://tec.openplanner.team/stops/Cchmott2"], ["https://tec.openplanner.team/stops/N501gab", "https://tec.openplanner.team/stops/N501grb"], ["https://tec.openplanner.team/stops/LSemc--1", "https://tec.openplanner.team/stops/LSerout1"], ["https://tec.openplanner.team/stops/Clvndam1", "https://tec.openplanner.team/stops/Clvndam2"], ["https://tec.openplanner.team/stops/H1hw120b", "https://tec.openplanner.team/stops/H1hw125a"], ["https://tec.openplanner.team/stops/X641avb", "https://tec.openplanner.team/stops/X641azb"], ["https://tec.openplanner.team/stops/Cselait2", "https://tec.openplanner.team/stops/Cvtchap2"], ["https://tec.openplanner.team/stops/Bmrspel1", "https://tec.openplanner.team/stops/Bohnmon2"], ["https://tec.openplanner.team/stops/Bsaumlk3", "https://tec.openplanner.team/stops/Bsauvmo2"], ["https://tec.openplanner.team/stops/Lbrmc--2", "https://tec.openplanner.team/stops/Lbrquai1"], ["https://tec.openplanner.team/stops/H4fo116a", "https://tec.openplanner.team/stops/H4fo116b"], ["https://tec.openplanner.team/stops/Clrplac1", "https://tec.openplanner.team/stops/Clrplac2"], ["https://tec.openplanner.team/stops/LHhmohe2", "https://tec.openplanner.team/stops/NL30aja"], ["https://tec.openplanner.team/stops/Bmanati1", "https://tec.openplanner.team/stops/Bsenbmc1"], ["https://tec.openplanner.team/stops/LPOecol1", "https://tec.openplanner.team/stops/LPOecol2"], ["https://tec.openplanner.team/stops/N501ajb", "https://tec.openplanner.team/stops/N501bfb"], ["https://tec.openplanner.team/stops/LFFeg--2", "https://tec.openplanner.team/stops/LFFmonu1"], ["https://tec.openplanner.team/stops/Bboutry2", "https://tec.openplanner.team/stops/Bbsttab2"], ["https://tec.openplanner.team/stops/X615beb", "https://tec.openplanner.team/stops/X616ajb"], ["https://tec.openplanner.team/stops/H1an102b", "https://tec.openplanner.team/stops/H1an103a"], ["https://tec.openplanner.team/stops/Csachas1", "https://tec.openplanner.team/stops/Csachas2"], ["https://tec.openplanner.team/stops/X927aaa", "https://tec.openplanner.team/stops/X927aab"], ["https://tec.openplanner.team/stops/Llgangl1", "https://tec.openplanner.team/stops/Llghoch3"], ["https://tec.openplanner.team/stops/LFsherm1", "https://tec.openplanner.team/stops/LSLhale2"], ["https://tec.openplanner.team/stops/Lagcolo1", "https://tec.openplanner.team/stops/LTIpres1"], ["https://tec.openplanner.team/stops/Blasbpr1", "https://tec.openplanner.team/stops/Blasvil1"], ["https://tec.openplanner.team/stops/H4ml206a", "https://tec.openplanner.team/stops/H4pi136b"], ["https://tec.openplanner.team/stops/H4bx108b", "https://tec.openplanner.team/stops/H4te253b"], ["https://tec.openplanner.team/stops/Cbzfrom1", "https://tec.openplanner.team/stops/Cluberl2"], ["https://tec.openplanner.team/stops/H2tr250a", "https://tec.openplanner.team/stops/H2tr257a"], ["https://tec.openplanner.team/stops/Lsepaqu1", "https://tec.openplanner.team/stops/Lsepcha1"], ["https://tec.openplanner.team/stops/H1le119a", "https://tec.openplanner.team/stops/H1le119b"], ["https://tec.openplanner.team/stops/Bmarmco1", "https://tec.openplanner.team/stops/Bmarpla2"], ["https://tec.openplanner.team/stops/Cmmgadi2", "https://tec.openplanner.team/stops/Cmmphai2"], ["https://tec.openplanner.team/stops/X824aia", "https://tec.openplanner.team/stops/X824aib"], ["https://tec.openplanner.team/stops/Btileco1", "https://tec.openplanner.team/stops/Btileco2"], ["https://tec.openplanner.team/stops/LHYlinc1", "https://tec.openplanner.team/stops/LHYlinc2"], ["https://tec.openplanner.team/stops/N501cmb", "https://tec.openplanner.team/stops/N501cnb"], ["https://tec.openplanner.team/stops/Lanothe1", "https://tec.openplanner.team/stops/Lanothe2"], ["https://tec.openplanner.team/stops/N236ana", "https://tec.openplanner.team/stops/N236aoa"], ["https://tec.openplanner.team/stops/X983aaa", "https://tec.openplanner.team/stops/X986abb"], ["https://tec.openplanner.team/stops/H2fa100a", "https://tec.openplanner.team/stops/H2fa101b"], ["https://tec.openplanner.team/stops/Bottbou2", "https://tec.openplanner.team/stops/Bottppa1"], ["https://tec.openplanner.team/stops/H1hr128a", "https://tec.openplanner.team/stops/H1hr128b"], ["https://tec.openplanner.team/stops/X878abb", "https://tec.openplanner.team/stops/X995aga"], ["https://tec.openplanner.team/stops/Bhenfla1", "https://tec.openplanner.team/stops/Brebcgi1"], ["https://tec.openplanner.team/stops/LRRbonr1", "https://tec.openplanner.team/stops/LRRlimi2"], ["https://tec.openplanner.team/stops/LVLm10-1", "https://tec.openplanner.team/stops/LVLmart2"], ["https://tec.openplanner.team/stops/Lceavia1", "https://tec.openplanner.team/stops/Lceavia2"], ["https://tec.openplanner.team/stops/N308agb", "https://tec.openplanner.team/stops/N308aha"], ["https://tec.openplanner.team/stops/X762abb", "https://tec.openplanner.team/stops/X786ajb"], ["https://tec.openplanner.team/stops/H4ga159a", "https://tec.openplanner.team/stops/H4vz370b"], ["https://tec.openplanner.team/stops/Cjualed1", "https://tec.openplanner.team/stops/Cjuledo2"], ["https://tec.openplanner.team/stops/H5ar103a", "https://tec.openplanner.team/stops/H5me105a"], ["https://tec.openplanner.team/stops/Lflchan1", "https://tec.openplanner.team/stops/Lflchan2"], ["https://tec.openplanner.team/stops/X770acb", "https://tec.openplanner.team/stops/X770adb"], ["https://tec.openplanner.team/stops/X768aib", "https://tec.openplanner.team/stops/X769aka"], ["https://tec.openplanner.team/stops/LHhchau1", "https://tec.openplanner.team/stops/N507aeb"], ["https://tec.openplanner.team/stops/X982aga", "https://tec.openplanner.team/stops/X982bxb"], ["https://tec.openplanner.team/stops/Lgrclas1", "https://tec.openplanner.team/stops/Lgrcour1"], ["https://tec.openplanner.team/stops/N584bbb", "https://tec.openplanner.team/stops/N584boa"], ["https://tec.openplanner.team/stops/Btannda1", "https://tec.openplanner.team/stops/Btanpla1"], ["https://tec.openplanner.team/stops/NC44afb", "https://tec.openplanner.team/stops/NC44agb"], ["https://tec.openplanner.team/stops/Ladotto2", "https://tec.openplanner.team/stops/Ladthom1"], ["https://tec.openplanner.team/stops/X822anb", "https://tec.openplanner.team/stops/X822aoa"], ["https://tec.openplanner.team/stops/LAUberg2", "https://tec.openplanner.team/stops/LAUcose1"], ["https://tec.openplanner.team/stops/LNCchev1", "https://tec.openplanner.team/stops/LNCloui1"], ["https://tec.openplanner.team/stops/H2le176a", "https://tec.openplanner.team/stops/H2re174b"], ["https://tec.openplanner.team/stops/H4ty305d", "https://tec.openplanner.team/stops/H4ty357a"], ["https://tec.openplanner.team/stops/H1fl140a", "https://tec.openplanner.team/stops/H1je368a"], ["https://tec.openplanner.team/stops/LeUbush1", "https://tec.openplanner.team/stops/LkTkabi2"], ["https://tec.openplanner.team/stops/H4mo147a", "https://tec.openplanner.team/stops/H4mo208b"], ["https://tec.openplanner.team/stops/X811alb", "https://tec.openplanner.team/stops/X811aob"], ["https://tec.openplanner.team/stops/X839aaa", "https://tec.openplanner.team/stops/X839abb"], ["https://tec.openplanner.team/stops/Ccuhaie2", "https://tec.openplanner.team/stops/Ccutrav4"], ["https://tec.openplanner.team/stops/X941aga", "https://tec.openplanner.team/stops/X949aja"], ["https://tec.openplanner.team/stops/Lgrclin3", "https://tec.openplanner.team/stops/Lgrorch1"], ["https://tec.openplanner.team/stops/Bhmmcha2", "https://tec.openplanner.team/stops/Bhmmtou2"], ["https://tec.openplanner.team/stops/H5at107a", "https://tec.openplanner.team/stops/H5at114a"], ["https://tec.openplanner.team/stops/H5rx125a", "https://tec.openplanner.team/stops/H5rx140a"], ["https://tec.openplanner.team/stops/N558aeb", "https://tec.openplanner.team/stops/N558afb"], ["https://tec.openplanner.team/stops/Cnagrro1", "https://tec.openplanner.team/stops/Cnagrro2"], ["https://tec.openplanner.team/stops/X850aja", "https://tec.openplanner.team/stops/X850ajb"], ["https://tec.openplanner.team/stops/N501goa", "https://tec.openplanner.team/stops/N501hxz"], ["https://tec.openplanner.team/stops/LRRmeta1", "https://tec.openplanner.team/stops/LRRoser2"], ["https://tec.openplanner.team/stops/NH01aod", "https://tec.openplanner.team/stops/NH01aua"], ["https://tec.openplanner.team/stops/X615aaa", "https://tec.openplanner.team/stops/X615ajb"], ["https://tec.openplanner.team/stops/H2hg144a", "https://tec.openplanner.team/stops/H2hg270a"], ["https://tec.openplanner.team/stops/LVlleno1", "https://tec.openplanner.team/stops/LVltige2"], ["https://tec.openplanner.team/stops/LMsalen2", "https://tec.openplanner.team/stops/LMsviad2"], ["https://tec.openplanner.team/stops/X760aca", "https://tec.openplanner.team/stops/X788aba"], ["https://tec.openplanner.team/stops/H1hq128a", "https://tec.openplanner.team/stops/H1hq158a"], ["https://tec.openplanner.team/stops/N569aic", "https://tec.openplanner.team/stops/N569ajb"], ["https://tec.openplanner.team/stops/Bblafra3", "https://tec.openplanner.team/stops/Bblasta1"], ["https://tec.openplanner.team/stops/LNEcouc1", "https://tec.openplanner.team/stops/LNEpass2"], ["https://tec.openplanner.team/stops/Bixlfla1", "https://tec.openplanner.team/stops/Bixllep1"], ["https://tec.openplanner.team/stops/H2mg136b", "https://tec.openplanner.team/stops/H2mg140b"], ["https://tec.openplanner.team/stops/Craappa2", "https://tec.openplanner.team/stops/Cradest1"], ["https://tec.openplanner.team/stops/Lousimo1", "https://tec.openplanner.team/stops/Lousimo2"], ["https://tec.openplanner.team/stops/Boveklo1", "https://tec.openplanner.team/stops/Bovevri1"], ["https://tec.openplanner.team/stops/NC24aeb", "https://tec.openplanner.team/stops/NC24afa"], ["https://tec.openplanner.team/stops/H4hg160a", "https://tec.openplanner.team/stops/H4hg160b"], ["https://tec.openplanner.team/stops/H1ro131b", "https://tec.openplanner.team/stops/H1ro137a"], ["https://tec.openplanner.team/stops/Lhrdeme3", "https://tec.openplanner.team/stops/Lhrhome2"], ["https://tec.openplanner.team/stops/X609aja", "https://tec.openplanner.team/stops/X610aia"], ["https://tec.openplanner.team/stops/Lcebarr2", "https://tec.openplanner.team/stops/Lcepont5"], ["https://tec.openplanner.team/stops/LHrchez2", "https://tec.openplanner.team/stops/LHrwaya1"], ["https://tec.openplanner.team/stops/Lgdhura2", "https://tec.openplanner.team/stops/Lprtour2"], ["https://tec.openplanner.team/stops/N152aad", "https://tec.openplanner.team/stops/N152abb"], ["https://tec.openplanner.team/stops/X666aka", "https://tec.openplanner.team/stops/X745aeb"], ["https://tec.openplanner.team/stops/N508ada", "https://tec.openplanner.team/stops/N508ama"], ["https://tec.openplanner.team/stops/NL76aab", "https://tec.openplanner.team/stops/NL76asa"], ["https://tec.openplanner.team/stops/LBSvi521", "https://tec.openplanner.team/stops/LWOsudr2"], ["https://tec.openplanner.team/stops/H4ro154a", "https://tec.openplanner.team/stops/H4ro154b"], ["https://tec.openplanner.team/stops/N505agb", "https://tec.openplanner.team/stops/N537aib"], ["https://tec.openplanner.team/stops/Cjuhame2", "https://tec.openplanner.team/stops/Cjulamb1"], ["https://tec.openplanner.team/stops/Bjanegl2", "https://tec.openplanner.team/stops/Bjanegl3"], ["https://tec.openplanner.team/stops/Lhuchev1", "https://tec.openplanner.team/stops/Lhulibe2"], ["https://tec.openplanner.team/stops/Ladfran1", "https://tec.openplanner.team/stops/Ladfran3"], ["https://tec.openplanner.team/stops/H1el140c", "https://tec.openplanner.team/stops/H1tl121a"], ["https://tec.openplanner.team/stops/Cgy3012", "https://tec.openplanner.team/stops/Cgyaudu2"], ["https://tec.openplanner.team/stops/Bnodtir2", "https://tec.openplanner.team/stops/Bnodtir4"], ["https://tec.openplanner.team/stops/X754agb", "https://tec.openplanner.team/stops/X754akb"], ["https://tec.openplanner.team/stops/H1cu117c", "https://tec.openplanner.team/stops/H1cu123a"], ["https://tec.openplanner.team/stops/X681aga", "https://tec.openplanner.team/stops/X687aka"], ["https://tec.openplanner.team/stops/Lrebriq1", "https://tec.openplanner.team/stops/Lrecomp2"], ["https://tec.openplanner.team/stops/Lstauna2", "https://tec.openplanner.team/stops/Lsteg--2"], ["https://tec.openplanner.team/stops/Lvcchau2", "https://tec.openplanner.team/stops/Lvcchev3"], ["https://tec.openplanner.team/stops/Llgcour3", "https://tec.openplanner.team/stops/Llgpitt1"], ["https://tec.openplanner.team/stops/Lflprev1", "https://tec.openplanner.team/stops/Lflroms2"], ["https://tec.openplanner.team/stops/H4ty299f", "https://tec.openplanner.team/stops/H4ty326b"], ["https://tec.openplanner.team/stops/N254aha", "https://tec.openplanner.team/stops/N254ahb"], ["https://tec.openplanner.team/stops/Lemjoba2", "https://tec.openplanner.team/stops/Lemsart2"], ["https://tec.openplanner.team/stops/LFsec--1", "https://tec.openplanner.team/stops/LFsec--2"], ["https://tec.openplanner.team/stops/Bplnbal2", "https://tec.openplanner.team/stops/Bplnfpa2"], ["https://tec.openplanner.team/stops/LHhvivi1", "https://tec.openplanner.team/stops/N507aeb"], ["https://tec.openplanner.team/stops/LPLc65-2", "https://tec.openplanner.team/stops/LPLcarr1"], ["https://tec.openplanner.team/stops/Lseaven1", "https://tec.openplanner.team/stops/Lseaven2"], ["https://tec.openplanner.team/stops/LEN42--2", "https://tec.openplanner.team/stops/LENchem2"], ["https://tec.openplanner.team/stops/H3so158a", "https://tec.openplanner.team/stops/H3so162a"], ["https://tec.openplanner.team/stops/Cgzbouh1", "https://tec.openplanner.team/stops/Cgzgrru1"], ["https://tec.openplanner.team/stops/N103aba", "https://tec.openplanner.team/stops/N103acc"], ["https://tec.openplanner.team/stops/H1cr100a", "https://tec.openplanner.team/stops/H1ry135c"], ["https://tec.openplanner.team/stops/Lsmlina*", "https://tec.openplanner.team/stops/Lsmlina2"], ["https://tec.openplanner.team/stops/X902aja", "https://tec.openplanner.team/stops/X902ala"], ["https://tec.openplanner.team/stops/X639aqa", "https://tec.openplanner.team/stops/X639aqb"], ["https://tec.openplanner.team/stops/N203adb", "https://tec.openplanner.team/stops/N203aeb"], ["https://tec.openplanner.team/stops/LLegare1", "https://tec.openplanner.team/stops/X547ana"], ["https://tec.openplanner.team/stops/LLOnand1", "https://tec.openplanner.team/stops/LRRrimi2"], ["https://tec.openplanner.team/stops/X940aha", "https://tec.openplanner.team/stops/X946ahb"], ["https://tec.openplanner.team/stops/LaAmise1", "https://tec.openplanner.team/stops/LaApost1"], ["https://tec.openplanner.team/stops/N310ada", "https://tec.openplanner.team/stops/N313aaa"], ["https://tec.openplanner.team/stops/LELeg--1", "https://tec.openplanner.team/stops/LELeg--2"], ["https://tec.openplanner.team/stops/Baegegl1", "https://tec.openplanner.team/stops/Bflcpco2"], ["https://tec.openplanner.team/stops/LDAalbe1", "https://tec.openplanner.team/stops/LDAchau1"], ["https://tec.openplanner.team/stops/X661ahb", "https://tec.openplanner.team/stops/X661aja"], ["https://tec.openplanner.team/stops/N503agb", "https://tec.openplanner.team/stops/N535aaa"], ["https://tec.openplanner.team/stops/H1mm128a", "https://tec.openplanner.team/stops/H1vb148a"], ["https://tec.openplanner.team/stops/H1ca106b", "https://tec.openplanner.team/stops/H1ca106c"], ["https://tec.openplanner.team/stops/Lsefoot1", "https://tec.openplanner.team/stops/Lsestap1"], ["https://tec.openplanner.team/stops/X804afb", "https://tec.openplanner.team/stops/X804aia"], ["https://tec.openplanner.team/stops/Llgpari2", "https://tec.openplanner.team/stops/Llgstvi2"], ["https://tec.openplanner.team/stops/Bnivcol1", "https://tec.openplanner.team/stops/Bnivsoi2"], ["https://tec.openplanner.team/stops/N534atb", "https://tec.openplanner.team/stops/N534atc"], ["https://tec.openplanner.team/stops/Bthsset2", "https://tec.openplanner.team/stops/NL37ajb"], ["https://tec.openplanner.team/stops/Barqbar2", "https://tec.openplanner.team/stops/Bptrvil2"], ["https://tec.openplanner.team/stops/Lmodeja2", "https://tec.openplanner.team/stops/Lsnfoot2"], ["https://tec.openplanner.team/stops/H4do103a", "https://tec.openplanner.team/stops/H4do103b"], ["https://tec.openplanner.team/stops/Cflmarc2", "https://tec.openplanner.team/stops/Cwgmell4"], ["https://tec.openplanner.team/stops/X925aea", "https://tec.openplanner.team/stops/X925ala"], ["https://tec.openplanner.team/stops/NL76aka", "https://tec.openplanner.team/stops/NL76akb"], ["https://tec.openplanner.team/stops/Ladplen*", "https://tec.openplanner.team/stops/LClsacr2"], ["https://tec.openplanner.team/stops/LGrfont1", "https://tec.openplanner.team/stops/LGrfont2"], ["https://tec.openplanner.team/stops/H1gh371a", "https://tec.openplanner.team/stops/H1gh371b"], ["https://tec.openplanner.team/stops/H2sb238a", "https://tec.openplanner.team/stops/H2sb238b"], ["https://tec.openplanner.team/stops/LSecomm2", "https://tec.openplanner.team/stops/LVbsurr1"], ["https://tec.openplanner.team/stops/N125acb", "https://tec.openplanner.team/stops/N149ahc"], ["https://tec.openplanner.team/stops/Chhbiet2", "https://tec.openplanner.team/stops/Chhprai2"], ["https://tec.openplanner.team/stops/Ldijean2", "https://tec.openplanner.team/stops/Ldipost1"], ["https://tec.openplanner.team/stops/H2sb223a", "https://tec.openplanner.team/stops/H2sb238b"], ["https://tec.openplanner.team/stops/LLNogne1", "https://tec.openplanner.team/stops/LSpbawe2"], ["https://tec.openplanner.team/stops/LSNecol3", "https://tec.openplanner.team/stops/LXHfond2"], ["https://tec.openplanner.team/stops/X617aca", "https://tec.openplanner.team/stops/X617acb"], ["https://tec.openplanner.team/stops/LFochap2", "https://tec.openplanner.team/stops/LJAhanq3"], ["https://tec.openplanner.team/stops/Brsggar1", "https://tec.openplanner.team/stops/Brsgter2"], ["https://tec.openplanner.team/stops/Crcegli4", "https://tec.openplanner.team/stops/Crcverr2"], ["https://tec.openplanner.team/stops/N535afa", "https://tec.openplanner.team/stops/N535atb"], ["https://tec.openplanner.team/stops/N501gcb", "https://tec.openplanner.team/stops/N501lkb"], ["https://tec.openplanner.team/stops/LOesour2", "https://tec.openplanner.team/stops/LWAhart1"], ["https://tec.openplanner.team/stops/Cmqbasv2", "https://tec.openplanner.team/stops/Cmqegl2"], ["https://tec.openplanner.team/stops/X618aaa", "https://tec.openplanner.team/stops/X618aab"], ["https://tec.openplanner.team/stops/H1pa104b", "https://tec.openplanner.team/stops/H1pa110a"], ["https://tec.openplanner.team/stops/X992aab", "https://tec.openplanner.team/stops/X992aac"], ["https://tec.openplanner.team/stops/Bcbqtub1", "https://tec.openplanner.team/stops/Bcbqtub2"], ["https://tec.openplanner.team/stops/Canfief1", "https://tec.openplanner.team/stops/Canrsta1"], ["https://tec.openplanner.team/stops/LBkcarr1", "https://tec.openplanner.team/stops/LlNbusc1"], ["https://tec.openplanner.team/stops/N308aic", "https://tec.openplanner.team/stops/N308bhb"], ["https://tec.openplanner.team/stops/LMHeg--2", "https://tec.openplanner.team/stops/NL73aea"], ["https://tec.openplanner.team/stops/Cfrfaub2", "https://tec.openplanner.team/stops/Cfrfaub4"], ["https://tec.openplanner.team/stops/N511atb", "https://tec.openplanner.team/stops/N511aua"], ["https://tec.openplanner.team/stops/Bcbqcht2", "https://tec.openplanner.team/stops/Bcbqpon2"], ["https://tec.openplanner.team/stops/Bnilegl1", "https://tec.openplanner.team/stops/Bnilreg1"], ["https://tec.openplanner.team/stops/X601aia", "https://tec.openplanner.team/stops/X662ata"], ["https://tec.openplanner.team/stops/H1br131a", "https://tec.openplanner.team/stops/H1br134a"], ["https://tec.openplanner.team/stops/Cchhopi2", "https://tec.openplanner.team/stops/Cchwate3"], ["https://tec.openplanner.team/stops/Cchfort1", "https://tec.openplanner.team/stops/Cchmamb2"], ["https://tec.openplanner.team/stops/N137aab", "https://tec.openplanner.team/stops/N137aba"], ["https://tec.openplanner.team/stops/Cvrchap2", "https://tec.openplanner.team/stops/Cvregl2"], ["https://tec.openplanner.team/stops/X982atb", "https://tec.openplanner.team/stops/X982aub"], ["https://tec.openplanner.team/stops/N217aea", "https://tec.openplanner.team/stops/N287aba"], ["https://tec.openplanner.team/stops/Bnil3fo2", "https://tec.openplanner.team/stops/Bnilcab1"], ["https://tec.openplanner.team/stops/N501bha", "https://tec.openplanner.team/stops/N501lpb"], ["https://tec.openplanner.team/stops/H1ch143a", "https://tec.openplanner.team/stops/H1ch143b"], ["https://tec.openplanner.team/stops/LBjflor1", "https://tec.openplanner.team/stops/LBjpech1"], ["https://tec.openplanner.team/stops/H1fr130a", "https://tec.openplanner.team/stops/H1fr152a"], ["https://tec.openplanner.team/stops/LFdeg--1", "https://tec.openplanner.team/stops/LFdeg--3"], ["https://tec.openplanner.team/stops/Clusncb4", "https://tec.openplanner.team/stops/Cpctunn2"], ["https://tec.openplanner.team/stops/Bbeabme1", "https://tec.openplanner.team/stops/Bbeaneu3"], ["https://tec.openplanner.team/stops/X650acb", "https://tec.openplanner.team/stops/X650ajb"], ["https://tec.openplanner.team/stops/Lhutann1", "https://tec.openplanner.team/stops/Lhuwaid2"], ["https://tec.openplanner.team/stops/Bbch4br2", "https://tec.openplanner.team/stops/Bbch4br6"], ["https://tec.openplanner.team/stops/X764abb", "https://tec.openplanner.team/stops/X764aga"], ["https://tec.openplanner.team/stops/N512arb", "https://tec.openplanner.team/stops/N512asa"], ["https://tec.openplanner.team/stops/LMXaven1", "https://tec.openplanner.team/stops/LMXempe1"], ["https://tec.openplanner.team/stops/X808aia", "https://tec.openplanner.team/stops/X808aja"], ["https://tec.openplanner.team/stops/Cmyrens2", "https://tec.openplanner.team/stops/Cmyvert1"], ["https://tec.openplanner.team/stops/H4ha167a", "https://tec.openplanner.team/stops/H4ru238b"], ["https://tec.openplanner.team/stops/X766abb", "https://tec.openplanner.team/stops/X768akb"], ["https://tec.openplanner.team/stops/LFemoul2", "https://tec.openplanner.team/stops/LFethie2"], ["https://tec.openplanner.team/stops/N525aed", "https://tec.openplanner.team/stops/N525afa"], ["https://tec.openplanner.team/stops/Lhrpaix2", "https://tec.openplanner.team/stops/Llgcoro1"], ["https://tec.openplanner.team/stops/Cfosurs2", "https://tec.openplanner.team/stops/Cptsncb1"], ["https://tec.openplanner.team/stops/N310acb", "https://tec.openplanner.team/stops/N310adb"], ["https://tec.openplanner.team/stops/Bblacea1", "https://tec.openplanner.team/stops/Bblaegl1"], ["https://tec.openplanner.team/stops/Lsehya-4", "https://tec.openplanner.team/stops/Lsemaqu2"], ["https://tec.openplanner.team/stops/X949agb", "https://tec.openplanner.team/stops/X949aja"], ["https://tec.openplanner.team/stops/N506aaa", "https://tec.openplanner.team/stops/N506bvb"], ["https://tec.openplanner.team/stops/X907agb", "https://tec.openplanner.team/stops/X907aib"], ["https://tec.openplanner.team/stops/Bborcro1", "https://tec.openplanner.team/stops/Bitrpar2"], ["https://tec.openplanner.team/stops/X657abb", "https://tec.openplanner.team/stops/X657acb"], ["https://tec.openplanner.team/stops/LOuilc-*", "https://tec.openplanner.team/stops/LOuplac2"], ["https://tec.openplanner.team/stops/N202afa", "https://tec.openplanner.team/stops/N202ahb"], ["https://tec.openplanner.team/stops/X982boa", "https://tec.openplanner.team/stops/X982bra"], ["https://tec.openplanner.team/stops/X750alb", "https://tec.openplanner.team/stops/X750bna"], ["https://tec.openplanner.team/stops/LVLbovy1", "https://tec.openplanner.team/stops/LVLruis2"], ["https://tec.openplanner.team/stops/H4er123b", "https://tec.openplanner.team/stops/H4er125a"], ["https://tec.openplanner.team/stops/LWAvand2", "https://tec.openplanner.team/stops/LWAvisi2"], ["https://tec.openplanner.team/stops/Clomakr1", "https://tec.openplanner.team/stops/Clostan2"], ["https://tec.openplanner.team/stops/Cgzfarc1", "https://tec.openplanner.team/stops/Cgzm1481"], ["https://tec.openplanner.team/stops/H1ci102a", "https://tec.openplanner.team/stops/H1hn206a"], ["https://tec.openplanner.team/stops/LOcalbe2", "https://tec.openplanner.team/stops/LTecent4"], ["https://tec.openplanner.team/stops/X921ahb", "https://tec.openplanner.team/stops/X921ajd"], ["https://tec.openplanner.team/stops/Lvecote2", "https://tec.openplanner.team/stops/Lvejeha2"], ["https://tec.openplanner.team/stops/H4ta121a", "https://tec.openplanner.team/stops/H4ta130a"], ["https://tec.openplanner.team/stops/H4ca123a", "https://tec.openplanner.team/stops/H4ca124a"], ["https://tec.openplanner.team/stops/X903aca", "https://tec.openplanner.team/stops/X903aga"], ["https://tec.openplanner.team/stops/H1gg115b", "https://tec.openplanner.team/stops/H1gg117b"], ["https://tec.openplanner.team/stops/LHUzoni3", "https://tec.openplanner.team/stops/LTiforg1"], ["https://tec.openplanner.team/stops/X664aaa", "https://tec.openplanner.team/stops/X664aca"], ["https://tec.openplanner.team/stops/LtH37c-2", "https://tec.openplanner.team/stops/LtHkreu3"], ["https://tec.openplanner.team/stops/H5rx129a", "https://tec.openplanner.team/stops/H5rx130a"], ["https://tec.openplanner.team/stops/Lseaven1", "https://tec.openplanner.team/stops/Lsemara2"], ["https://tec.openplanner.team/stops/Bnstmig1", "https://tec.openplanner.team/stops/Bnstver2"], ["https://tec.openplanner.team/stops/Cmqbert1", "https://tec.openplanner.team/stops/Csecroi1"], ["https://tec.openplanner.team/stops/Cnacout1", "https://tec.openplanner.team/stops/Cnacout2"], ["https://tec.openplanner.team/stops/H4fr140a", "https://tec.openplanner.team/stops/H4fr140b"], ["https://tec.openplanner.team/stops/X654ahb", "https://tec.openplanner.team/stops/X670aab"], ["https://tec.openplanner.team/stops/LHScite1", "https://tec.openplanner.team/stops/LHStrez1"], ["https://tec.openplanner.team/stops/LDObell1", "https://tec.openplanner.team/stops/LDOprev1"], ["https://tec.openplanner.team/stops/Llgbago2", "https://tec.openplanner.team/stops/Llgmass1"], ["https://tec.openplanner.team/stops/Lanhoud2", "https://tec.openplanner.team/stops/Lanhoud3"], ["https://tec.openplanner.team/stops/Bnivfdu1", "https://tec.openplanner.team/stops/Bnivpal2"], ["https://tec.openplanner.team/stops/Bhevwzw2", "https://tec.openplanner.team/stops/Bleugar1"], ["https://tec.openplanner.team/stops/H1ms296b", "https://tec.openplanner.team/stops/H1ms903a"], ["https://tec.openplanner.team/stops/X354ada", "https://tec.openplanner.team/stops/X354adb"], ["https://tec.openplanner.team/stops/N501jjb", "https://tec.openplanner.team/stops/N501jkb"], ["https://tec.openplanner.team/stops/N232aaa", "https://tec.openplanner.team/stops/N232abb"], ["https://tec.openplanner.team/stops/N245acb", "https://tec.openplanner.team/stops/N340aha"], ["https://tec.openplanner.team/stops/X804cba", "https://tec.openplanner.team/stops/X804cbb"], ["https://tec.openplanner.team/stops/X723aeb", "https://tec.openplanner.team/stops/X766afa"], ["https://tec.openplanner.team/stops/H4os217a", "https://tec.openplanner.team/stops/H4os222a"], ["https://tec.openplanner.team/stops/N127bfa", "https://tec.openplanner.team/stops/N127bha"], ["https://tec.openplanner.team/stops/CMsud1", "https://tec.openplanner.team/stops/CMsud2"], ["https://tec.openplanner.team/stops/N220aaa", "https://tec.openplanner.team/stops/N224aba"], ["https://tec.openplanner.team/stops/Lhrgall1", "https://tec.openplanner.team/stops/Lhrsimo4"], ["https://tec.openplanner.team/stops/LFAsauv1", "https://tec.openplanner.team/stops/LWDchab2"], ["https://tec.openplanner.team/stops/X801ceb", "https://tec.openplanner.team/stops/X802azb"], ["https://tec.openplanner.team/stops/LHYlinc3", "https://tec.openplanner.team/stops/LHYlinc4"], ["https://tec.openplanner.team/stops/H2ha127a", "https://tec.openplanner.team/stops/H2ha139b"], ["https://tec.openplanner.team/stops/X640aob", "https://tec.openplanner.team/stops/X641aib"], ["https://tec.openplanner.team/stops/Bgemgcw1", "https://tec.openplanner.team/stops/Bgemgjo1"], ["https://tec.openplanner.team/stops/N425aba", "https://tec.openplanner.team/stops/N425acb"], ["https://tec.openplanner.team/stops/LNIbas-2", "https://tec.openplanner.team/stops/LNIhaut2"], ["https://tec.openplanner.team/stops/Bclgeco1", "https://tec.openplanner.team/stops/Bnilhau2"], ["https://tec.openplanner.team/stops/Bbaulil1", "https://tec.openplanner.team/stops/Bbaulos1"], ["https://tec.openplanner.team/stops/Cgogrco2", "https://tec.openplanner.team/stops/Ctmazeb2"], ["https://tec.openplanner.team/stops/H4hn115a", "https://tec.openplanner.team/stops/H4jm117a"], ["https://tec.openplanner.team/stops/N390aaa", "https://tec.openplanner.team/stops/X390akb"], ["https://tec.openplanner.team/stops/LEShony1", "https://tec.openplanner.team/stops/LTIdumo1"], ["https://tec.openplanner.team/stops/Lprceri2", "https://tec.openplanner.team/stops/Lprtour1"], ["https://tec.openplanner.team/stops/Bohnbra2", "https://tec.openplanner.team/stops/Bohnrsc2"], ["https://tec.openplanner.team/stops/X649ada", "https://tec.openplanner.team/stops/X649adc"], ["https://tec.openplanner.team/stops/LCTfair2", "https://tec.openplanner.team/stops/LCTgare4"], ["https://tec.openplanner.team/stops/Cjugill4", "https://tec.openplanner.team/stops/CMbert2"], ["https://tec.openplanner.team/stops/H1me113a", "https://tec.openplanner.team/stops/H1me117e"], ["https://tec.openplanner.team/stops/Llglaha1", "https://tec.openplanner.team/stops/Llgoeil2"], ["https://tec.openplanner.team/stops/Bnivath2", "https://tec.openplanner.team/stops/Bnivpla2"], ["https://tec.openplanner.team/stops/LbUhuge2", "https://tec.openplanner.team/stops/LbUverb2"], ["https://tec.openplanner.team/stops/H2na133a", "https://tec.openplanner.team/stops/H2na136b"], ["https://tec.openplanner.team/stops/H1mj124a", "https://tec.openplanner.team/stops/H1mj130a"], ["https://tec.openplanner.team/stops/Cchlefe1", "https://tec.openplanner.team/stops/Cchvil22"], ["https://tec.openplanner.team/stops/H1as101a", "https://tec.openplanner.team/stops/H1as154b"], ["https://tec.openplanner.team/stops/N501kic", "https://tec.openplanner.team/stops/N501kid"], ["https://tec.openplanner.team/stops/X731aba", "https://tec.openplanner.team/stops/X731aca"], ["https://tec.openplanner.team/stops/H2pr116a", "https://tec.openplanner.team/stops/H2pr116b"], ["https://tec.openplanner.team/stops/X669acb", "https://tec.openplanner.team/stops/X669ada"], ["https://tec.openplanner.team/stops/X756aab", "https://tec.openplanner.team/stops/X757aea"], ["https://tec.openplanner.team/stops/N501hsa", "https://tec.openplanner.team/stops/N501hsb"], ["https://tec.openplanner.team/stops/Lbrptbr3", "https://tec.openplanner.team/stops/Lbrptbr5"], ["https://tec.openplanner.team/stops/Bcrnpla1", "https://tec.openplanner.team/stops/Bcrnpla2"], ["https://tec.openplanner.team/stops/LHceg--1", "https://tec.openplanner.team/stops/LSWeg--3"], ["https://tec.openplanner.team/stops/X734aia", "https://tec.openplanner.team/stops/X734arb"], ["https://tec.openplanner.team/stops/Clogfay2", "https://tec.openplanner.team/stops/Clojone1"], ["https://tec.openplanner.team/stops/Bnivga32", "https://tec.openplanner.team/stops/Bnivga51"], ["https://tec.openplanner.team/stops/X919aaa", "https://tec.openplanner.team/stops/X919aab"], ["https://tec.openplanner.team/stops/N170aaa", "https://tec.openplanner.team/stops/NC14ava"], ["https://tec.openplanner.team/stops/Cctpano1", "https://tec.openplanner.team/stops/Cctvche1"], ["https://tec.openplanner.team/stops/N501bda", "https://tec.openplanner.team/stops/N501mkb"], ["https://tec.openplanner.team/stops/Bgnvcha1", "https://tec.openplanner.team/stops/Bgnvfai2"], ["https://tec.openplanner.team/stops/H4ne138b", "https://tec.openplanner.team/stops/H4ne144c"], ["https://tec.openplanner.team/stops/X801ala", "https://tec.openplanner.team/stops/X801amb"], ["https://tec.openplanner.team/stops/LrUbahn1", "https://tec.openplanner.team/stops/LrUweve2"], ["https://tec.openplanner.team/stops/LORec--*", "https://tec.openplanner.team/stops/LTotrui2"], ["https://tec.openplanner.team/stops/Cmtmath1", "https://tec.openplanner.team/stops/Cmtmath2"], ["https://tec.openplanner.team/stops/Bwategl1", "https://tec.openplanner.team/stops/Bwatras1"], ["https://tec.openplanner.team/stops/H1me116a", "https://tec.openplanner.team/stops/H1mm125c"], ["https://tec.openplanner.team/stops/H1fr117a", "https://tec.openplanner.team/stops/H1fr117b"], ["https://tec.openplanner.team/stops/Lflpaeu1", "https://tec.openplanner.team/stops/Lflweri1"], ["https://tec.openplanner.team/stops/X608asb", "https://tec.openplanner.team/stops/X621aeb"], ["https://tec.openplanner.team/stops/LeUindu1", "https://tec.openplanner.team/stops/LeUindu2"], ["https://tec.openplanner.team/stops/N106ada", "https://tec.openplanner.team/stops/N137ahb"], ["https://tec.openplanner.team/stops/X879aka", "https://tec.openplanner.team/stops/X879alb"], ["https://tec.openplanner.team/stops/N118aab", "https://tec.openplanner.team/stops/N118axa"], ["https://tec.openplanner.team/stops/H3th130a", "https://tec.openplanner.team/stops/H3th133b"], ["https://tec.openplanner.team/stops/N349agb", "https://tec.openplanner.team/stops/X349aab"], ["https://tec.openplanner.team/stops/H4an111c", "https://tec.openplanner.team/stops/H4rs118a"], ["https://tec.openplanner.team/stops/Lmlec--4", "https://tec.openplanner.team/stops/Lmleg--2"], ["https://tec.openplanner.team/stops/Beclbse1", "https://tec.openplanner.team/stops/Beclpla1"], ["https://tec.openplanner.team/stops/Lsmh1801", "https://tec.openplanner.team/stops/Lsmh3021"], ["https://tec.openplanner.team/stops/X907aca", "https://tec.openplanner.team/stops/X907ajb"], ["https://tec.openplanner.team/stops/H1ca186a", "https://tec.openplanner.team/stops/H1ma230a"], ["https://tec.openplanner.team/stops/Bgercen1", "https://tec.openplanner.team/stops/Bgercen2"], ["https://tec.openplanner.team/stops/LhBdorf2", "https://tec.openplanner.team/stops/LhLdorf1"], ["https://tec.openplanner.team/stops/LBbhupp1", "https://tec.openplanner.team/stops/LTPbeau1"], ["https://tec.openplanner.team/stops/LFHjamo2", "https://tec.openplanner.team/stops/LHZbren1"], ["https://tec.openplanner.team/stops/N531aeb", "https://tec.openplanner.team/stops/N531akb"], ["https://tec.openplanner.team/stops/N202aaa", "https://tec.openplanner.team/stops/N203afa"], ["https://tec.openplanner.team/stops/LOUbarr2", "https://tec.openplanner.team/stops/LOUbleu1"], ["https://tec.openplanner.team/stops/Lfhgara1", "https://tec.openplanner.team/stops/Lfhpast1"], ["https://tec.openplanner.team/stops/LGOcana1", "https://tec.openplanner.team/stops/LGOmonu1"], ["https://tec.openplanner.team/stops/X641abb", "https://tec.openplanner.team/stops/X642aac"], ["https://tec.openplanner.team/stops/H1bu140a", "https://tec.openplanner.team/stops/H1bu141a"], ["https://tec.openplanner.team/stops/N538axa", "https://tec.openplanner.team/stops/N538axb"], ["https://tec.openplanner.team/stops/Ctarpoi1", "https://tec.openplanner.team/stops/N543bqb"], ["https://tec.openplanner.team/stops/H5pe125b", "https://tec.openplanner.team/stops/H5pe148b"], ["https://tec.openplanner.team/stops/Ccicouc1", "https://tec.openplanner.team/stops/Ccinali2"], ["https://tec.openplanner.team/stops/Lhucime1", "https://tec.openplanner.team/stops/Lhuleke2"], ["https://tec.openplanner.team/stops/Llglave2", "https://tec.openplanner.team/stops/Llgschm1"], ["https://tec.openplanner.team/stops/Brsrfen1", "https://tec.openplanner.team/stops/Brsrrcu2"], ["https://tec.openplanner.team/stops/Brixala1", "https://tec.openplanner.team/stops/Brixala2"], ["https://tec.openplanner.team/stops/H4mv188b", "https://tec.openplanner.team/stops/H4mv192a"], ["https://tec.openplanner.team/stops/Cgochfe1", "https://tec.openplanner.team/stops/Cgoetun5"], ["https://tec.openplanner.team/stops/N501jha", "https://tec.openplanner.team/stops/N501jia"], ["https://tec.openplanner.team/stops/H1bg110a", "https://tec.openplanner.team/stops/H1gc123a"], ["https://tec.openplanner.team/stops/LaAkapi1", "https://tec.openplanner.team/stops/LaAnorm2"], ["https://tec.openplanner.team/stops/Bolgrga1", "https://tec.openplanner.team/stops/Bpelf961"], ["https://tec.openplanner.team/stops/LMOlens2", "https://tec.openplanner.team/stops/LMOlens3"], ["https://tec.openplanner.team/stops/Ljudeme3", "https://tec.openplanner.team/stops/Ljuinte2"], ["https://tec.openplanner.team/stops/Bbiecoc2", "https://tec.openplanner.team/stops/Bbiehev1"], ["https://tec.openplanner.team/stops/X991aka", "https://tec.openplanner.team/stops/X992afb"], ["https://tec.openplanner.team/stops/X662aqb", "https://tec.openplanner.team/stops/X662atb"], ["https://tec.openplanner.team/stops/X769aja", "https://tec.openplanner.team/stops/X769ajb"], ["https://tec.openplanner.team/stops/Cci4bra2", "https://tec.openplanner.team/stops/Cci4bra3"], ["https://tec.openplanner.team/stops/Lgrfort1", "https://tec.openplanner.team/stops/Lgrfrcu2"], ["https://tec.openplanner.team/stops/H4lh118b", "https://tec.openplanner.team/stops/H5wo127b"], ["https://tec.openplanner.team/stops/Cgrlorm1", "https://tec.openplanner.team/stops/N160aha"], ["https://tec.openplanner.team/stops/Clvorle2", "https://tec.openplanner.team/stops/NC14aea"], ["https://tec.openplanner.team/stops/H4ld127a", "https://tec.openplanner.team/stops/H4ld127b"], ["https://tec.openplanner.team/stops/LeYgros2", "https://tec.openplanner.team/stops/LhSfrep2"], ["https://tec.openplanner.team/stops/LMsalen2", "https://tec.openplanner.team/stops/LPbpeti2"], ["https://tec.openplanner.team/stops/LCObouh2", "https://tec.openplanner.team/stops/LCOeg--2"], ["https://tec.openplanner.team/stops/Bbgever1", "https://tec.openplanner.team/stops/Bwavcin2"], ["https://tec.openplanner.team/stops/Bwatgib1", "https://tec.openplanner.team/stops/Bwatgib2"], ["https://tec.openplanner.team/stops/Ccugend2", "https://tec.openplanner.team/stops/Ccupbro2"], ["https://tec.openplanner.team/stops/N557aeb", "https://tec.openplanner.team/stops/N559aaa"], ["https://tec.openplanner.team/stops/X684aba", "https://tec.openplanner.team/stops/X685afa"], ["https://tec.openplanner.team/stops/Llgcite1", "https://tec.openplanner.team/stops/Llgcite2"], ["https://tec.openplanner.team/stops/H4ry131a", "https://tec.openplanner.team/stops/H4ry132a"], ["https://tec.openplanner.team/stops/Cfrcoop1", "https://tec.openplanner.team/stops/Cfrplac4"], ["https://tec.openplanner.team/stops/Lghreyn2", "https://tec.openplanner.team/stops/Lghwass2"], ["https://tec.openplanner.team/stops/Bbgerlr1", "https://tec.openplanner.team/stops/Blmlcle2"], ["https://tec.openplanner.team/stops/H3lr110a", "https://tec.openplanner.team/stops/H3lr110b"], ["https://tec.openplanner.team/stops/X643abb", "https://tec.openplanner.team/stops/X646abb"], ["https://tec.openplanner.team/stops/X940aga", "https://tec.openplanner.team/stops/X940agb"], ["https://tec.openplanner.team/stops/X879aoa", "https://tec.openplanner.team/stops/X879aob"], ["https://tec.openplanner.team/stops/Lsebeau1", "https://tec.openplanner.team/stops/Lsebeau2"], ["https://tec.openplanner.team/stops/LLTther1", "https://tec.openplanner.team/stops/LTOcime2"], ["https://tec.openplanner.team/stops/X735aab", "https://tec.openplanner.team/stops/X735acb"], ["https://tec.openplanner.team/stops/Lmohomv1", "https://tec.openplanner.team/stops/Lmohomv2"], ["https://tec.openplanner.team/stops/LHYlinc2", "https://tec.openplanner.team/stops/LHYlinc3"], ["https://tec.openplanner.team/stops/Llgblon4", "https://tec.openplanner.team/stops/Llgvero3"], ["https://tec.openplanner.team/stops/LBItnt-*", "https://tec.openplanner.team/stops/LCaalou1"], ["https://tec.openplanner.team/stops/LBpvue-1", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://tec.openplanner.team/stops/LHMbelv2", "https://tec.openplanner.team/stops/LMNswar2"], ["https://tec.openplanner.team/stops/H2ep145b", "https://tec.openplanner.team/stops/H3bi113a"], ["https://tec.openplanner.team/stops/H1pa105a", "https://tec.openplanner.team/stops/H1pa110a"], ["https://tec.openplanner.team/stops/X623ada", "https://tec.openplanner.team/stops/X623adb"], ["https://tec.openplanner.team/stops/Lgrramp1", "https://tec.openplanner.team/stops/Llggrav2"], ["https://tec.openplanner.team/stops/X652aga", "https://tec.openplanner.team/stops/X652ahb"], ["https://tec.openplanner.team/stops/X768aca", "https://tec.openplanner.team/stops/X768adb"], ["https://tec.openplanner.team/stops/LrD28--1", "https://tec.openplanner.team/stops/LrD28--2"], ["https://tec.openplanner.team/stops/Bnivhut2", "https://tec.openplanner.team/stops/Bnivsci2"], ["https://tec.openplanner.team/stops/N110aaa", "https://tec.openplanner.team/stops/N124aba"], ["https://tec.openplanner.team/stops/N343ajb", "https://tec.openplanner.team/stops/X345aaa"], ["https://tec.openplanner.team/stops/N509aoa", "https://tec.openplanner.team/stops/N509ata"], ["https://tec.openplanner.team/stops/H2hg269b", "https://tec.openplanner.team/stops/H2hg270b"], ["https://tec.openplanner.team/stops/H2bh105a", "https://tec.openplanner.team/stops/H2lc146b"], ["https://tec.openplanner.team/stops/Bwatnro1", "https://tec.openplanner.team/stops/Bwatnro2"], ["https://tec.openplanner.team/stops/LHUgodi1", "https://tec.openplanner.team/stops/LHUgodi2"], ["https://tec.openplanner.team/stops/N127aeb", "https://tec.openplanner.team/stops/N135beb"], ["https://tec.openplanner.team/stops/N222aca", "https://tec.openplanner.team/stops/N222acb"], ["https://tec.openplanner.team/stops/H4oq226a", "https://tec.openplanner.team/stops/H4oq226b"], ["https://tec.openplanner.team/stops/Cflmart2", "https://tec.openplanner.team/stops/NC23acb"], ["https://tec.openplanner.team/stops/LFmeg--1", "https://tec.openplanner.team/stops/LFmroye1"], ["https://tec.openplanner.team/stops/N501bra", "https://tec.openplanner.team/stops/N501mwb"], ["https://tec.openplanner.team/stops/H3lr120a", "https://tec.openplanner.team/stops/H3lr132a"], ["https://tec.openplanner.team/stops/Bbiemor1", "https://tec.openplanner.team/stops/Bbiepon2"], ["https://tec.openplanner.team/stops/LTAbran1", "https://tec.openplanner.team/stops/LTAchau1"], ["https://tec.openplanner.team/stops/H1qu107a", "https://tec.openplanner.team/stops/H1wl121b"], ["https://tec.openplanner.team/stops/N504aab", "https://tec.openplanner.team/stops/N511afa"], ["https://tec.openplanner.team/stops/LVIeg--4", "https://tec.openplanner.team/stops/LVIjacq2"], ["https://tec.openplanner.team/stops/Bhalber3", "https://tec.openplanner.team/stops/Bhalh311"], ["https://tec.openplanner.team/stops/H2ca103c", "https://tec.openplanner.team/stops/H2ca109b"], ["https://tec.openplanner.team/stops/Ccyfede1", "https://tec.openplanner.team/stops/Cslbhau2"], ["https://tec.openplanner.team/stops/LBjflor2", "https://tec.openplanner.team/stops/X575agb"], ["https://tec.openplanner.team/stops/LMApape2", "https://tec.openplanner.team/stops/LMAroch3"], ["https://tec.openplanner.team/stops/LFFmagr1", "https://tec.openplanner.team/stops/LFFmagr2"], ["https://tec.openplanner.team/stops/LFarhuy1", "https://tec.openplanner.team/stops/LWAclos2"], ["https://tec.openplanner.team/stops/Lmofays1", "https://tec.openplanner.team/stops/Lmoweri1"], ["https://tec.openplanner.team/stops/Btilmon2", "https://tec.openplanner.team/stops/Btilsnc2"], ["https://tec.openplanner.team/stops/N544aga", "https://tec.openplanner.team/stops/N545aab"], ["https://tec.openplanner.team/stops/Cthcrom1", "https://tec.openplanner.team/stops/Cthrwai1"], ["https://tec.openplanner.team/stops/H4ne132a", "https://tec.openplanner.team/stops/H4ne143b"], ["https://tec.openplanner.team/stops/H2hg144b", "https://tec.openplanner.team/stops/H2hg158a"], ["https://tec.openplanner.team/stops/LeYauss1", "https://tec.openplanner.team/stops/LeYdorf1"], ["https://tec.openplanner.team/stops/X739aca", "https://tec.openplanner.team/stops/X739adb"], ["https://tec.openplanner.team/stops/N501bzb", "https://tec.openplanner.team/stops/N501cca"], ["https://tec.openplanner.team/stops/H1fl133b", "https://tec.openplanner.team/stops/H1fl135a"], ["https://tec.openplanner.team/stops/LARauto3", "https://tec.openplanner.team/stops/LRItour2"], ["https://tec.openplanner.team/stops/Bwagpco2", "https://tec.openplanner.team/stops/Bwagsta1"], ["https://tec.openplanner.team/stops/N543aha", "https://tec.openplanner.team/stops/N543aua"], ["https://tec.openplanner.team/stops/X902aba", "https://tec.openplanner.team/stops/X902bbb"], ["https://tec.openplanner.team/stops/Cgrlorm2", "https://tec.openplanner.team/stops/NC14aub"], ["https://tec.openplanner.team/stops/N232apa", "https://tec.openplanner.team/stops/N232axb"], ["https://tec.openplanner.team/stops/Bmrlcch2", "https://tec.openplanner.team/stops/Bpieh172"], ["https://tec.openplanner.team/stops/NH01aqa", "https://tec.openplanner.team/stops/NH01ata"], ["https://tec.openplanner.team/stops/Ljecoqu2", "https://tec.openplanner.team/stops/Ljexhav1"], ["https://tec.openplanner.team/stops/X805aca", "https://tec.openplanner.team/stops/X805ada"], ["https://tec.openplanner.team/stops/LHEclef1", "https://tec.openplanner.team/stops/LJOferm2"], ["https://tec.openplanner.team/stops/LGHplai1", "https://tec.openplanner.team/stops/X542ahb"], ["https://tec.openplanner.team/stops/N301ama", "https://tec.openplanner.team/stops/N301amb"], ["https://tec.openplanner.team/stops/H4hx117a", "https://tec.openplanner.team/stops/H4hx117b"], ["https://tec.openplanner.team/stops/H4mx117a", "https://tec.openplanner.team/stops/H4mx117b"], ["https://tec.openplanner.team/stops/Bsamegl1", "https://tec.openplanner.team/stops/Bsamfma2"], ["https://tec.openplanner.team/stops/X612aeb", "https://tec.openplanner.team/stops/X613adb"], ["https://tec.openplanner.team/stops/H2ch101b", "https://tec.openplanner.team/stops/H2ch107b"], ["https://tec.openplanner.team/stops/LBBcarr1", "https://tec.openplanner.team/stops/LBBcarr2"], ["https://tec.openplanner.team/stops/H1br122a", "https://tec.openplanner.team/stops/H1br122b"], ["https://tec.openplanner.team/stops/LFFruel1", "https://tec.openplanner.team/stops/LFFruel2"], ["https://tec.openplanner.team/stops/LHUfali2", "https://tec.openplanner.team/stops/LHUresi3"], ["https://tec.openplanner.team/stops/X926adb", "https://tec.openplanner.team/stops/X927acb"], ["https://tec.openplanner.team/stops/X721aca", "https://tec.openplanner.team/stops/X786aaa"], ["https://tec.openplanner.team/stops/LLbrecu1", "https://tec.openplanner.team/stops/LLbvith1"], ["https://tec.openplanner.team/stops/Lkiecol2", "https://tec.openplanner.team/stops/Lkigare2"], ["https://tec.openplanner.team/stops/Bvirbru1", "https://tec.openplanner.team/stops/Bvircsj2"], ["https://tec.openplanner.team/stops/H5at104b", "https://tec.openplanner.team/stops/H5at106a"], ["https://tec.openplanner.team/stops/X892aea", "https://tec.openplanner.team/stops/X892afa"], ["https://tec.openplanner.team/stops/Lsmberg1", "https://tec.openplanner.team/stops/Lsmgdry1"], ["https://tec.openplanner.team/stops/H4la196b", "https://tec.openplanner.team/stops/H4la198c"], ["https://tec.openplanner.team/stops/N101aia", "https://tec.openplanner.team/stops/N101aob"], ["https://tec.openplanner.team/stops/H2ha129c", "https://tec.openplanner.team/stops/H2ha138a"], ["https://tec.openplanner.team/stops/H4bu108a", "https://tec.openplanner.team/stops/H4bu109a"], ["https://tec.openplanner.team/stops/LrDrose3", "https://tec.openplanner.team/stops/LrDzoll4"], ["https://tec.openplanner.team/stops/Becepco1", "https://tec.openplanner.team/stops/Becepon1"], ["https://tec.openplanner.team/stops/X601bga", "https://tec.openplanner.team/stops/X601bgb"], ["https://tec.openplanner.team/stops/H4ta132b", "https://tec.openplanner.team/stops/H4ta133b"], ["https://tec.openplanner.team/stops/LMAchod1", "https://tec.openplanner.team/stops/LMAchod2"], ["https://tec.openplanner.team/stops/Ctubpos1", "https://tec.openplanner.team/stops/Ctuhouz1"], ["https://tec.openplanner.team/stops/LkEsada1", "https://tec.openplanner.team/stops/LkEsada2"], ["https://tec.openplanner.team/stops/X761abb", "https://tec.openplanner.team/stops/X790ahb"], ["https://tec.openplanner.team/stops/Lhrespe1", "https://tec.openplanner.team/stops/Lwachal2"], ["https://tec.openplanner.team/stops/LNEcouc2", "https://tec.openplanner.team/stops/LNEgaul3"], ["https://tec.openplanner.team/stops/LAYcont1", "https://tec.openplanner.team/stops/LAYwerb2"], ["https://tec.openplanner.team/stops/X725aqa", "https://tec.openplanner.team/stops/X725ava"], ["https://tec.openplanner.team/stops/X804asa", "https://tec.openplanner.team/stops/X831aea"], ["https://tec.openplanner.team/stops/N163aab", "https://tec.openplanner.team/stops/N166aca"], ["https://tec.openplanner.team/stops/X820ada", "https://tec.openplanner.team/stops/X820ahb"], ["https://tec.openplanner.team/stops/LKmdani1", "https://tec.openplanner.team/stops/LKmdrie2"], ["https://tec.openplanner.team/stops/LmR50--2", "https://tec.openplanner.team/stops/LmRh%C3%B6812"], ["https://tec.openplanner.team/stops/Ctupont1", "https://tec.openplanner.team/stops/Cturoge2"], ["https://tec.openplanner.team/stops/LAYharz2", "https://tec.openplanner.team/stops/LAYnias1"], ["https://tec.openplanner.team/stops/LFUchpl1", "https://tec.openplanner.team/stops/LFUfleu2"], ["https://tec.openplanner.team/stops/LGrfont2", "https://tec.openplanner.team/stops/LLGcarr2"], ["https://tec.openplanner.team/stops/Livcoll1", "https://tec.openplanner.team/stops/Livroch2"], ["https://tec.openplanner.team/stops/H1eo105b", "https://tec.openplanner.team/stops/H1eo107a"], ["https://tec.openplanner.team/stops/X979aab", "https://tec.openplanner.team/stops/X979acb"], ["https://tec.openplanner.team/stops/N552aab", "https://tec.openplanner.team/stops/N552aba"], ["https://tec.openplanner.team/stops/H4og209b", "https://tec.openplanner.team/stops/H4og213b"], ["https://tec.openplanner.team/stops/Cgzm1481", "https://tec.openplanner.team/stops/Cgzm1482"], ["https://tec.openplanner.team/stops/LFLetoi1", "https://tec.openplanner.team/stops/LSpschi1"], ["https://tec.openplanner.team/stops/H1ho132b", "https://tec.openplanner.team/stops/H1ho142b"], ["https://tec.openplanner.team/stops/Lflroms2", "https://tec.openplanner.team/stops/Lrovand2"], ["https://tec.openplanner.team/stops/LTRfend2", "https://tec.openplanner.team/stops/LTRgare4"], ["https://tec.openplanner.team/stops/LHCandr1", "https://tec.openplanner.team/stops/LHChomb2"], ["https://tec.openplanner.team/stops/LFLcent1", "https://tec.openplanner.team/stops/LFLgara1"], ["https://tec.openplanner.team/stops/Blasbpr2", "https://tec.openplanner.team/stops/Blascim1"], ["https://tec.openplanner.team/stops/X576aca", "https://tec.openplanner.team/stops/X576aga"], ["https://tec.openplanner.team/stops/Bgrmpco1", "https://tec.openplanner.team/stops/N522asb"], ["https://tec.openplanner.team/stops/N331aab", "https://tec.openplanner.team/stops/N331ada"], ["https://tec.openplanner.team/stops/X759aea", "https://tec.openplanner.team/stops/X759aeb"], ["https://tec.openplanner.team/stops/N545aab", "https://tec.openplanner.team/stops/N553anb"], ["https://tec.openplanner.team/stops/X654aga", "https://tec.openplanner.team/stops/X654akb"], ["https://tec.openplanner.team/stops/H4bh103b", "https://tec.openplanner.team/stops/H4ma162a"], ["https://tec.openplanner.team/stops/H4ry133b", "https://tec.openplanner.team/stops/H4ry141a"], ["https://tec.openplanner.team/stops/H1ro133a", "https://tec.openplanner.team/stops/H4fl114a"], ["https://tec.openplanner.team/stops/X804aib", "https://tec.openplanner.team/stops/X804aja"], ["https://tec.openplanner.team/stops/LMfbuck1", "https://tec.openplanner.team/stops/LMfpral1"], ["https://tec.openplanner.team/stops/H4wa155b", "https://tec.openplanner.team/stops/H4wa156b"], ["https://tec.openplanner.team/stops/Lrelier2", "https://tec.openplanner.team/stops/Lretill2"], ["https://tec.openplanner.team/stops/Cgymast1", "https://tec.openplanner.team/stops/Cgystbe1"], ["https://tec.openplanner.team/stops/N132aab", "https://tec.openplanner.team/stops/N152aac"], ["https://tec.openplanner.team/stops/X749aaa", "https://tec.openplanner.team/stops/X749aba"], ["https://tec.openplanner.team/stops/Llgptlo2", "https://tec.openplanner.team/stops/Llgptlo4"], ["https://tec.openplanner.team/stops/Lhufont1", "https://tec.openplanner.team/stops/Lhufont2"], ["https://tec.openplanner.team/stops/Bllncom2", "https://tec.openplanner.team/stops/Bllngar9"], ["https://tec.openplanner.team/stops/N574aaa", "https://tec.openplanner.team/stops/N574ada"], ["https://tec.openplanner.team/stops/LXomc--3", "https://tec.openplanner.team/stops/LXopier2"], ["https://tec.openplanner.team/stops/Bwbfeta1", "https://tec.openplanner.team/stops/Bwbfeta2"], ["https://tec.openplanner.team/stops/Lsmcime2", "https://tec.openplanner.team/stops/Lsmrcim2"], ["https://tec.openplanner.team/stops/N304abb", "https://tec.openplanner.team/stops/N305aca"], ["https://tec.openplanner.team/stops/LAvatri1", "https://tec.openplanner.team/stops/LAvchpl1"], ["https://tec.openplanner.team/stops/LWAcham1", "https://tec.openplanner.team/stops/LWAperv1"], ["https://tec.openplanner.team/stops/Loucorn2", "https://tec.openplanner.team/stops/Lougoff2"], ["https://tec.openplanner.team/stops/H2hg267a", "https://tec.openplanner.team/stops/H2hg270a"], ["https://tec.openplanner.team/stops/N349aab", "https://tec.openplanner.team/stops/N349acb"], ["https://tec.openplanner.team/stops/LaSneuh1", "https://tec.openplanner.team/stops/LhGlang1"], ["https://tec.openplanner.team/stops/X361aab", "https://tec.openplanner.team/stops/X371aga"], ["https://tec.openplanner.team/stops/LLrbecc1", "https://tec.openplanner.team/stops/LLrfont2"], ["https://tec.openplanner.team/stops/X769aia", "https://tec.openplanner.team/stops/X769aka"], ["https://tec.openplanner.team/stops/H1ag107b", "https://tec.openplanner.team/stops/H1an102b"], ["https://tec.openplanner.team/stops/LSPbalm2", "https://tec.openplanner.team/stops/LSPjoli1"], ["https://tec.openplanner.team/stops/N501fba", "https://tec.openplanner.team/stops/N501fby"], ["https://tec.openplanner.team/stops/X639ala", "https://tec.openplanner.team/stops/X639amb"], ["https://tec.openplanner.team/stops/X793aab", "https://tec.openplanner.team/stops/X793acb"], ["https://tec.openplanner.team/stops/Bnivpla2", "https://tec.openplanner.team/stops/Bnivpso1"], ["https://tec.openplanner.team/stops/H2se114a", "https://tec.openplanner.team/stops/H2se114b"], ["https://tec.openplanner.team/stops/N501ejd", "https://tec.openplanner.team/stops/N501mvd"], ["https://tec.openplanner.team/stops/N423aca", "https://tec.openplanner.team/stops/N423acb"], ["https://tec.openplanner.team/stops/X937aba", "https://tec.openplanner.team/stops/X950ada"], ["https://tec.openplanner.team/stops/X879adb", "https://tec.openplanner.team/stops/X879agb"], ["https://tec.openplanner.team/stops/N501dra", "https://tec.openplanner.team/stops/N501eha"], ["https://tec.openplanner.team/stops/LCewaut2", "https://tec.openplanner.team/stops/LFalieg2"], ["https://tec.openplanner.team/stops/Cgobl%C3%A9r1", "https://tec.openplanner.team/stops/Cwxchap2"], ["https://tec.openplanner.team/stops/Bpieh172", "https://tec.openplanner.team/stops/Bpiehte2"], ["https://tec.openplanner.team/stops/Lhufont2", "https://tec.openplanner.team/stops/Lmndari1"], ["https://tec.openplanner.team/stops/Bmarmru2", "https://tec.openplanner.team/stops/Btilmar1"], ["https://tec.openplanner.team/stops/N141aia", "https://tec.openplanner.team/stops/N141ajb"], ["https://tec.openplanner.team/stops/Cbfcham1", "https://tec.openplanner.team/stops/Cbfcham2"], ["https://tec.openplanner.team/stops/Bwspbos2", "https://tec.openplanner.team/stops/Bwspmon3"], ["https://tec.openplanner.team/stops/H1ms261b", "https://tec.openplanner.team/stops/H1ms362a"], ["https://tec.openplanner.team/stops/LATmonu2", "https://tec.openplanner.team/stops/LATphar2"], ["https://tec.openplanner.team/stops/H4po124b", "https://tec.openplanner.team/stops/H4po129b"], ["https://tec.openplanner.team/stops/NR21abb", "https://tec.openplanner.team/stops/NR21aca"], ["https://tec.openplanner.team/stops/Crccamp2", "https://tec.openplanner.team/stops/Crcpcom2"], ["https://tec.openplanner.team/stops/X818ana", "https://tec.openplanner.team/stops/X818apa"], ["https://tec.openplanner.team/stops/H1hh112a", "https://tec.openplanner.team/stops/H1hh116a"], ["https://tec.openplanner.team/stops/NL80aua", "https://tec.openplanner.team/stops/NL80ava"], ["https://tec.openplanner.team/stops/LLM4rou2", "https://tec.openplanner.team/stops/LLM4rou4"], ["https://tec.openplanner.team/stops/LBscime1", "https://tec.openplanner.team/stops/LBsoha-2"], ["https://tec.openplanner.team/stops/X636axb", "https://tec.openplanner.team/stops/X636aza"], ["https://tec.openplanner.team/stops/LBjvill1", "https://tec.openplanner.team/stops/X576aib"], ["https://tec.openplanner.team/stops/LMAcomm1", "https://tec.openplanner.team/stops/LMAcomm2"], ["https://tec.openplanner.team/stops/LJesole2", "https://tec.openplanner.team/stops/LJetrih1"], ["https://tec.openplanner.team/stops/Lqbchat2", "https://tec.openplanner.team/stops/LSAhaye2"], ["https://tec.openplanner.team/stops/N521akb", "https://tec.openplanner.team/stops/N525ala"], ["https://tec.openplanner.team/stops/LBk79--2", "https://tec.openplanner.team/stops/LBkcarr4"], ["https://tec.openplanner.team/stops/H1eo108a", "https://tec.openplanner.team/stops/H1eo108b"], ["https://tec.openplanner.team/stops/LMgwith1", "https://tec.openplanner.team/stops/LMgwith2"], ["https://tec.openplanner.team/stops/NL67aca", "https://tec.openplanner.team/stops/NL67acb"], ["https://tec.openplanner.team/stops/Ljhsart1", "https://tec.openplanner.team/stops/Ljhsart2"], ["https://tec.openplanner.team/stops/H4oq228b", "https://tec.openplanner.team/stops/H4oq409a"], ["https://tec.openplanner.team/stops/LBLwaid1", "https://tec.openplanner.team/stops/LBLwaid2"], ["https://tec.openplanner.team/stops/Bitrcro3", "https://tec.openplanner.team/stops/Bronpfe1"], ["https://tec.openplanner.team/stops/N153ada", "https://tec.openplanner.team/stops/N154aba"], ["https://tec.openplanner.team/stops/LMOhero1", "https://tec.openplanner.team/stops/LMOmome1"], ["https://tec.openplanner.team/stops/N160aaa", "https://tec.openplanner.team/stops/N160aga"], ["https://tec.openplanner.team/stops/Cwflouv3", "https://tec.openplanner.team/stops/Cwfnamu2"], ["https://tec.openplanner.team/stops/LWAlong3", "https://tec.openplanner.team/stops/LWAwila1"], ["https://tec.openplanner.team/stops/Lsepcha1", "https://tec.openplanner.team/stops/Lseserv2"], ["https://tec.openplanner.team/stops/X902afb", "https://tec.openplanner.team/stops/X902afd"], ["https://tec.openplanner.team/stops/X804asb", "https://tec.openplanner.team/stops/X804avb"], ["https://tec.openplanner.team/stops/Bjausan2", "https://tec.openplanner.team/stops/NR21aja"], ["https://tec.openplanner.team/stops/N352abb", "https://tec.openplanner.team/stops/N353awa"], ["https://tec.openplanner.team/stops/Benggar1", "https://tec.openplanner.team/stops/H1en104a"], ["https://tec.openplanner.team/stops/X754aaa", "https://tec.openplanner.team/stops/X754asb"], ["https://tec.openplanner.team/stops/LMIbois2", "https://tec.openplanner.team/stops/LSOgard2"], ["https://tec.openplanner.team/stops/N501hzb", "https://tec.openplanner.team/stops/N501inb"], ["https://tec.openplanner.team/stops/Lhubriq2", "https://tec.openplanner.team/stops/Lmnbass1"], ["https://tec.openplanner.team/stops/LeUhaas3", "https://tec.openplanner.team/stops/LeUjuge2"], ["https://tec.openplanner.team/stops/X946aga", "https://tec.openplanner.team/stops/X946aha"], ["https://tec.openplanner.team/stops/LmTgers1", "https://tec.openplanner.team/stops/LmTschi1"], ["https://tec.openplanner.team/stops/X609ana", "https://tec.openplanner.team/stops/X609aob"], ["https://tec.openplanner.team/stops/N110acb", "https://tec.openplanner.team/stops/N114aab"], ["https://tec.openplanner.team/stops/Bjaupro1", "https://tec.openplanner.team/stops/Bjaupro2"], ["https://tec.openplanner.team/stops/Lligara1", "https://tec.openplanner.team/stops/Lvochev2"], ["https://tec.openplanner.team/stops/LlSbuch2", "https://tec.openplanner.team/stops/LlSzoll1"], ["https://tec.openplanner.team/stops/LwSgeme1", "https://tec.openplanner.team/stops/LwSschw1"], ["https://tec.openplanner.team/stops/H5el116a", "https://tec.openplanner.team/stops/H5el117a"], ["https://tec.openplanner.team/stops/Laleg--1", "https://tec.openplanner.team/stops/Lancoop2"], ["https://tec.openplanner.team/stops/Llgdepo6", "https://tec.openplanner.team/stops/Llgkurt1"], ["https://tec.openplanner.team/stops/Llgdepo1", "https://tec.openplanner.team/stops/Llgdepo5"], ["https://tec.openplanner.team/stops/N529abb", "https://tec.openplanner.team/stops/N529acb"], ["https://tec.openplanner.team/stops/Lgrdeni1", "https://tec.openplanner.team/stops/Lgrstou2"], ["https://tec.openplanner.team/stops/Cmomalg1", "https://tec.openplanner.team/stops/Cromart1"], ["https://tec.openplanner.team/stops/H2bh106a", "https://tec.openplanner.team/stops/H2bh119a"], ["https://tec.openplanner.team/stops/Lcepont1", "https://tec.openplanner.team/stops/Lcepoul1"], ["https://tec.openplanner.team/stops/Cjumarc1", "https://tec.openplanner.team/stops/Cjumarc4"], ["https://tec.openplanner.team/stops/LmYwall1", "https://tec.openplanner.team/stops/LmYwall2"], ["https://tec.openplanner.team/stops/H4hn114a", "https://tec.openplanner.team/stops/H4jm117c"], ["https://tec.openplanner.team/stops/Ctrvert1", "https://tec.openplanner.team/stops/Ctrvert2"], ["https://tec.openplanner.team/stops/Cmahotv1", "https://tec.openplanner.team/stops/Cmazone2"], ["https://tec.openplanner.team/stops/H4mo185a", "https://tec.openplanner.team/stops/H4mo198a"], ["https://tec.openplanner.team/stops/Bjodtpo1", "https://tec.openplanner.team/stops/Bpiejus1"], ["https://tec.openplanner.team/stops/LLR4bra2", "https://tec.openplanner.team/stops/LLRrape1"], ["https://tec.openplanner.team/stops/LHMgulp1", "https://tec.openplanner.team/stops/LHMgulp2"], ["https://tec.openplanner.team/stops/X801bdc", "https://tec.openplanner.team/stops/X801bdd"], ["https://tec.openplanner.team/stops/X804apa", "https://tec.openplanner.team/stops/X805afb"], ["https://tec.openplanner.team/stops/LBkcarr2", "https://tec.openplanner.team/stops/LWEfati1"], ["https://tec.openplanner.team/stops/Lronamo2", "https://tec.openplanner.team/stops/Lrosoxh1"], ["https://tec.openplanner.team/stops/LkTtal-1", "https://tec.openplanner.team/stops/LkTtal-2"], ["https://tec.openplanner.team/stops/N301abb", "https://tec.openplanner.team/stops/N301acb"], ["https://tec.openplanner.team/stops/Bhandub2", "https://tec.openplanner.team/stops/LHNtonn2"], ["https://tec.openplanner.team/stops/Lemambi1", "https://tec.openplanner.team/stops/Lemeg--2"], ["https://tec.openplanner.team/stops/Cgxalli1", "https://tec.openplanner.team/stops/CMleer1"], ["https://tec.openplanner.team/stops/LBpcren1", "https://tec.openplanner.team/stops/LCAcruc2"], ["https://tec.openplanner.team/stops/H1ni316a", "https://tec.openplanner.team/stops/H1ni317b"], ["https://tec.openplanner.team/stops/LPLcond2", "https://tec.openplanner.team/stops/LRRroth1"], ["https://tec.openplanner.team/stops/Bglabra1", "https://tec.openplanner.team/stops/Cglbras2"], ["https://tec.openplanner.team/stops/Bpiejus1", "https://tec.openplanner.team/stops/Bpielon2"], ["https://tec.openplanner.team/stops/H1mm121b", "https://tec.openplanner.team/stops/H1mm122a"], ["https://tec.openplanner.team/stops/LVEmoul2", "https://tec.openplanner.team/stops/LVEstat1"], ["https://tec.openplanner.team/stops/X745abb", "https://tec.openplanner.team/stops/X746ajb"], ["https://tec.openplanner.team/stops/N515apa", "https://tec.openplanner.team/stops/N515aqc"], ["https://tec.openplanner.team/stops/N207abb", "https://tec.openplanner.team/stops/N207aca"], ["https://tec.openplanner.team/stops/H4fl113b", "https://tec.openplanner.team/stops/H4fl114a"], ["https://tec.openplanner.team/stops/H1em109a", "https://tec.openplanner.team/stops/H1ev112a"], ["https://tec.openplanner.team/stops/X780aja", "https://tec.openplanner.team/stops/X793aoa"], ["https://tec.openplanner.team/stops/LbUbutg2", "https://tec.openplanner.team/stops/LwR140-2"], ["https://tec.openplanner.team/stops/LVNroua1", "https://tec.openplanner.team/stops/LWDplac2"], ["https://tec.openplanner.team/stops/Bhaldbo1", "https://tec.openplanner.team/stops/Bhalh312"], ["https://tec.openplanner.team/stops/N513alb", "https://tec.openplanner.team/stops/N513asa"], ["https://tec.openplanner.team/stops/X796aha", "https://tec.openplanner.team/stops/X796ahb"], ["https://tec.openplanner.team/stops/X823afa", "https://tec.openplanner.team/stops/X823aga"], ["https://tec.openplanner.team/stops/X801bqa", "https://tec.openplanner.team/stops/X801caa"], ["https://tec.openplanner.team/stops/N136aaa", "https://tec.openplanner.team/stops/N136adb"], ["https://tec.openplanner.team/stops/LWDchpl1", "https://tec.openplanner.team/stops/LWDchpl2"], ["https://tec.openplanner.team/stops/Lanfont1", "https://tec.openplanner.team/stops/Lanfont2"], ["https://tec.openplanner.team/stops/N548akb", "https://tec.openplanner.team/stops/N548ama"], ["https://tec.openplanner.team/stops/N503adb", "https://tec.openplanner.team/stops/N503afa"], ["https://tec.openplanner.team/stops/Cgygazo2", "https://tec.openplanner.team/stops/Cgygazo3"], ["https://tec.openplanner.team/stops/H4bi100b", "https://tec.openplanner.team/stops/H4te254a"], ["https://tec.openplanner.team/stops/X664aid", "https://tec.openplanner.team/stops/X664aja"], ["https://tec.openplanner.team/stops/Lghflot4", "https://tec.openplanner.team/stops/Lghwall2"], ["https://tec.openplanner.team/stops/N501arc", "https://tec.openplanner.team/stops/N501cdc"], ["https://tec.openplanner.team/stops/Boppegl2", "https://tec.openplanner.team/stops/Borbode2"], ["https://tec.openplanner.team/stops/Buccdst1", "https://tec.openplanner.team/stops/Buccmer1"], ["https://tec.openplanner.team/stops/Bbrlmez1", "https://tec.openplanner.team/stops/Blkbbeu2"], ["https://tec.openplanner.team/stops/LMucarr3", "https://tec.openplanner.team/stops/LMupont1"], ["https://tec.openplanner.team/stops/H1ms258a", "https://tec.openplanner.team/stops/H1ms288a"], ["https://tec.openplanner.team/stops/LJEmalg2", "https://tec.openplanner.team/stops/LJEpaqu2"], ["https://tec.openplanner.team/stops/H2me113a", "https://tec.openplanner.team/stops/H2me115b"], ["https://tec.openplanner.team/stops/Bixlaca2", "https://tec.openplanner.team/stops/Bixleix1"], ["https://tec.openplanner.team/stops/N552aab", "https://tec.openplanner.team/stops/N577aaa"], ["https://tec.openplanner.team/stops/LBRtrag2", "https://tec.openplanner.team/stops/LLSba4-1"], ["https://tec.openplanner.team/stops/LLiforg1", "https://tec.openplanner.team/stops/LSChane2"], ["https://tec.openplanner.team/stops/H4pq113b", "https://tec.openplanner.team/stops/H4pq120a"], ["https://tec.openplanner.team/stops/H4mv187b", "https://tec.openplanner.team/stops/H4mv194b"], ["https://tec.openplanner.team/stops/Cgy4bra1", "https://tec.openplanner.team/stops/Cgyaudu2"], ["https://tec.openplanner.team/stops/Lbobuil2", "https://tec.openplanner.team/stops/Louaout2"], ["https://tec.openplanner.team/stops/Bllnjpa1", "https://tec.openplanner.team/stops/Bllnlb51"], ["https://tec.openplanner.team/stops/X911aab", "https://tec.openplanner.team/stops/X911acb"], ["https://tec.openplanner.team/stops/Ctrleju1", "https://tec.openplanner.team/stops/Ctrpn1"], ["https://tec.openplanner.team/stops/X921acb", "https://tec.openplanner.team/stops/X923aob"], ["https://tec.openplanner.team/stops/Lhrpaep1", "https://tec.openplanner.team/stops/Lhrpaep2"], ["https://tec.openplanner.team/stops/Bobacou1", "https://tec.openplanner.team/stops/Cobvill2"], ["https://tec.openplanner.team/stops/X639aea", "https://tec.openplanner.team/stops/X639aqa"], ["https://tec.openplanner.team/stops/Ladxhen1", "https://tec.openplanner.team/stops/LHCcoul2"], ["https://tec.openplanner.team/stops/N232aza", "https://tec.openplanner.team/stops/N232bma"], ["https://tec.openplanner.team/stops/X741aea", "https://tec.openplanner.team/stops/X741aeb"], ["https://tec.openplanner.team/stops/X901ata", "https://tec.openplanner.team/stops/X901atb"], ["https://tec.openplanner.team/stops/H1ro136b", "https://tec.openplanner.team/stops/H1ro137b"], ["https://tec.openplanner.team/stops/X354afa", "https://tec.openplanner.team/stops/X354afb"], ["https://tec.openplanner.team/stops/N110afb", "https://tec.openplanner.team/stops/N110ahb"], ["https://tec.openplanner.team/stops/Lcavign2", "https://tec.openplanner.team/stops/Lvchenn2"], ["https://tec.openplanner.team/stops/H4hu116b", "https://tec.openplanner.team/stops/H4hu118b"], ["https://tec.openplanner.team/stops/Cmybefe2", "https://tec.openplanner.team/stops/Cmywarc1"], ["https://tec.openplanner.team/stops/X955abb", "https://tec.openplanner.team/stops/X955adb"], ["https://tec.openplanner.team/stops/N232aoa", "https://tec.openplanner.team/stops/N286aab"], ["https://tec.openplanner.team/stops/H1ne138b", "https://tec.openplanner.team/stops/H1ne150b"], ["https://tec.openplanner.team/stops/H4gu107b", "https://tec.openplanner.team/stops/H4gu112b"], ["https://tec.openplanner.team/stops/N509aqb", "https://tec.openplanner.team/stops/N511aoc"], ["https://tec.openplanner.team/stops/N501aca", "https://tec.openplanner.team/stops/N501afa"], ["https://tec.openplanner.team/stops/Blthbss1", "https://tec.openplanner.team/stops/Brxmbos1"], ["https://tec.openplanner.team/stops/N214aia", "https://tec.openplanner.team/stops/N214aib"], ["https://tec.openplanner.team/stops/LSpcarr2", "https://tec.openplanner.team/stops/LSpvanr1"], ["https://tec.openplanner.team/stops/H4gr110a", "https://tec.openplanner.team/stops/H4gr110b"], ["https://tec.openplanner.team/stops/LVEcacq2", "https://tec.openplanner.team/stops/LVEfize1"], ["https://tec.openplanner.team/stops/N221adb", "https://tec.openplanner.team/stops/X210azb"], ["https://tec.openplanner.team/stops/N236aha", "https://tec.openplanner.team/stops/N236ahb"], ["https://tec.openplanner.team/stops/X948aca", "https://tec.openplanner.team/stops/X948ada"], ["https://tec.openplanner.team/stops/N513aba", "https://tec.openplanner.team/stops/N513bfa"], ["https://tec.openplanner.team/stops/X608aba", "https://tec.openplanner.team/stops/X608abb"], ["https://tec.openplanner.team/stops/Csoperi1", "https://tec.openplanner.team/stops/Csoperi2"], ["https://tec.openplanner.team/stops/Lvegera2", "https://tec.openplanner.team/stops/Lvehout2"], ["https://tec.openplanner.team/stops/Borbtre1", "https://tec.openplanner.team/stops/Borbtre2"], ["https://tec.openplanner.team/stops/H1bb118a", "https://tec.openplanner.team/stops/H1bo107a"], ["https://tec.openplanner.team/stops/H4wi166b", "https://tec.openplanner.team/stops/H4wi168b"], ["https://tec.openplanner.team/stops/Livjeu-2", "https://tec.openplanner.team/stops/Lsedavy2"], ["https://tec.openplanner.team/stops/N532ana", "https://tec.openplanner.team/stops/N532anb"], ["https://tec.openplanner.team/stops/LaLkabi2", "https://tec.openplanner.team/stops/LaLkirc*"], ["https://tec.openplanner.team/stops/H4ru241a", "https://tec.openplanner.team/stops/H4ru245b"], ["https://tec.openplanner.team/stops/Lhrdeme3", "https://tec.openplanner.team/stops/Lhrespe2"], ["https://tec.openplanner.team/stops/H2sb257c", "https://tec.openplanner.team/stops/H2sb271a"], ["https://tec.openplanner.team/stops/N365aba", "https://tec.openplanner.team/stops/N365abb"], ["https://tec.openplanner.team/stops/N558anb", "https://tec.openplanner.team/stops/NL67aaa"], ["https://tec.openplanner.team/stops/X661aab", "https://tec.openplanner.team/stops/X661aba"], ["https://tec.openplanner.team/stops/H1sg145a", "https://tec.openplanner.team/stops/H1sg145b"], ["https://tec.openplanner.team/stops/N137aba", "https://tec.openplanner.team/stops/N137abb"], ["https://tec.openplanner.team/stops/H4ty295d", "https://tec.openplanner.team/stops/H4ty347a"], ["https://tec.openplanner.team/stops/Blinbru2", "https://tec.openplanner.team/stops/Blindel1"], ["https://tec.openplanner.team/stops/LRRecdu1", "https://tec.openplanner.team/stops/LRRecdu2"], ["https://tec.openplanner.team/stops/Llghull2", "https://tec.openplanner.team/stops/Llgsevr4"], ["https://tec.openplanner.team/stops/X641aya", "https://tec.openplanner.team/stops/X641ayb"], ["https://tec.openplanner.team/stops/LHAprei1", "https://tec.openplanner.team/stops/LHAprei2"], ["https://tec.openplanner.team/stops/X723aib", "https://tec.openplanner.team/stops/X723amb"], ["https://tec.openplanner.team/stops/N117aca", "https://tec.openplanner.team/stops/N117acb"], ["https://tec.openplanner.team/stops/X652aba", "https://tec.openplanner.team/stops/X652acd"], ["https://tec.openplanner.team/stops/LRIcent2", "https://tec.openplanner.team/stops/LRItour2"], ["https://tec.openplanner.team/stops/LeUschn2", "https://tec.openplanner.team/stops/LkTsch%C3%B62"], ["https://tec.openplanner.team/stops/LRtcarr1", "https://tec.openplanner.team/stops/LRtrame1"], ["https://tec.openplanner.team/stops/Lhragri1", "https://tec.openplanner.team/stops/Lhrvert1"], ["https://tec.openplanner.team/stops/N547aba", "https://tec.openplanner.team/stops/N548aab"], ["https://tec.openplanner.team/stops/Bnivace2", "https://tec.openplanner.team/stops/Bnivphm2"], ["https://tec.openplanner.team/stops/Lhrhome2", "https://tec.openplanner.team/stops/Lhrstev2"], ["https://tec.openplanner.team/stops/Bmarcha2", "https://tec.openplanner.team/stops/Bmarchn2"], ["https://tec.openplanner.team/stops/X717aia", "https://tec.openplanner.team/stops/X782apa"], ["https://tec.openplanner.team/stops/Cctpano2", "https://tec.openplanner.team/stops/Cctpche2"], ["https://tec.openplanner.team/stops/X601aqb", "https://tec.openplanner.team/stops/X601ceb"], ["https://tec.openplanner.team/stops/N301aha", "https://tec.openplanner.team/stops/N301ajb"], ["https://tec.openplanner.team/stops/H1sp355a", "https://tec.openplanner.team/stops/H1ss349a"], ["https://tec.openplanner.team/stops/Cnacout2", "https://tec.openplanner.team/stops/Cnaha562"], ["https://tec.openplanner.team/stops/H4ru238b", "https://tec.openplanner.team/stops/H4ru239a"], ["https://tec.openplanner.team/stops/Lenabat1", "https://tec.openplanner.team/stops/Llmdavi1"], ["https://tec.openplanner.team/stops/H1au100b", "https://tec.openplanner.team/stops/H1au103a"], ["https://tec.openplanner.team/stops/H4og214a", "https://tec.openplanner.team/stops/H4og214b"], ["https://tec.openplanner.team/stops/Lveepar2", "https://tec.openplanner.team/stops/Lvegest2"], ["https://tec.openplanner.team/stops/Lcceg--2", "https://tec.openplanner.team/stops/Lfhtrxc*"], ["https://tec.openplanner.team/stops/N550abe", "https://tec.openplanner.team/stops/N550acc"], ["https://tec.openplanner.team/stops/LCRf14-2", "https://tec.openplanner.team/stops/LCRrape1"], ["https://tec.openplanner.team/stops/Bbstbxl2", "https://tec.openplanner.team/stops/Bgnpgar2"], ["https://tec.openplanner.team/stops/LFreg--2", "https://tec.openplanner.team/stops/LHvvill*"], ["https://tec.openplanner.team/stops/Cchtiro4", "https://tec.openplanner.team/stops/CMtirou2"], ["https://tec.openplanner.team/stops/LLecolo1", "https://tec.openplanner.team/stops/X782aba"], ["https://tec.openplanner.team/stops/Lghcfer1", "https://tec.openplanner.team/stops/Lghviad2"], ["https://tec.openplanner.team/stops/H1en100b", "https://tec.openplanner.team/stops/H1mk107a"], ["https://tec.openplanner.team/stops/H1hy128a", "https://tec.openplanner.team/stops/H1qy132a"], ["https://tec.openplanner.team/stops/Bmrqgar2", "https://tec.openplanner.team/stops/Bmrqpla1"], ["https://tec.openplanner.team/stops/N261ahb", "https://tec.openplanner.team/stops/N337aia"], ["https://tec.openplanner.team/stops/LLTcent2", "https://tec.openplanner.team/stops/LLThosd1"], ["https://tec.openplanner.team/stops/Lmaelhe2", "https://tec.openplanner.team/stops/Lmaetan*"], ["https://tec.openplanner.team/stops/Btlgast2", "https://tec.openplanner.team/stops/Btlgmar1"], ["https://tec.openplanner.team/stops/X782aha", "https://tec.openplanner.team/stops/X782aia"], ["https://tec.openplanner.team/stops/Ltiplat1", "https://tec.openplanner.team/stops/Ltitill*"], ["https://tec.openplanner.team/stops/X639aib", "https://tec.openplanner.team/stops/X639akc"], ["https://tec.openplanner.team/stops/X907aia", "https://tec.openplanner.team/stops/X939acb"], ["https://tec.openplanner.team/stops/H5bl115a", "https://tec.openplanner.team/stops/H5bl123a"], ["https://tec.openplanner.team/stops/X902anb", "https://tec.openplanner.team/stops/X902asa"], ["https://tec.openplanner.team/stops/X661aka", "https://tec.openplanner.team/stops/X661asa"], ["https://tec.openplanner.team/stops/H1et100b", "https://tec.openplanner.team/stops/H1gh171a"], ["https://tec.openplanner.team/stops/H1ho134b", "https://tec.openplanner.team/stops/H1ho138a"], ["https://tec.openplanner.team/stops/N346aab", "https://tec.openplanner.team/stops/X346ala"], ["https://tec.openplanner.team/stops/H5at123a", "https://tec.openplanner.team/stops/H5at137a"], ["https://tec.openplanner.team/stops/Cmmceri1", "https://tec.openplanner.team/stops/Cmmcime2"], ["https://tec.openplanner.team/stops/LBDcarr1", "https://tec.openplanner.team/stops/LBDtill1"], ["https://tec.openplanner.team/stops/LSHhade2", "https://tec.openplanner.team/stops/LSHries1"], ["https://tec.openplanner.team/stops/LHUtrin2", "https://tec.openplanner.team/stops/NL77aia"], ["https://tec.openplanner.team/stops/Crseuro2", "https://tec.openplanner.team/stops/Crspana4"], ["https://tec.openplanner.team/stops/Cctpano1", "https://tec.openplanner.team/stops/NC11agb"], ["https://tec.openplanner.team/stops/H2tr246b", "https://tec.openplanner.team/stops/H2tr257b"], ["https://tec.openplanner.team/stops/H4la196a", "https://tec.openplanner.team/stops/H4la196b"], ["https://tec.openplanner.team/stops/H4do104b", "https://tec.openplanner.team/stops/H4ev124b"], ["https://tec.openplanner.team/stops/X725aba", "https://tec.openplanner.team/stops/X725aca"], ["https://tec.openplanner.team/stops/X750adb", "https://tec.openplanner.team/stops/X750aeb"], ["https://tec.openplanner.team/stops/N563aaa", "https://tec.openplanner.team/stops/N585alb"], ["https://tec.openplanner.team/stops/Bbuzcom1", "https://tec.openplanner.team/stops/Cobhaut2"], ["https://tec.openplanner.team/stops/N581aaa", "https://tec.openplanner.team/stops/N581abb"], ["https://tec.openplanner.team/stops/Blhubja1", "https://tec.openplanner.team/stops/Blhunys1"], ["https://tec.openplanner.team/stops/N501ibb", "https://tec.openplanner.team/stops/N501ifb"], ["https://tec.openplanner.team/stops/Lsmh3021", "https://tec.openplanner.team/stops/LSuusin1"], ["https://tec.openplanner.team/stops/Bsaupco1", "https://tec.openplanner.team/stops/N541aba"], ["https://tec.openplanner.team/stops/H4ty326b", "https://tec.openplanner.team/stops/H4vx365a"], ["https://tec.openplanner.team/stops/H4by119b", "https://tec.openplanner.team/stops/H4ro156a"], ["https://tec.openplanner.team/stops/H1le122a", "https://tec.openplanner.team/stops/H1le122d"], ["https://tec.openplanner.team/stops/LAx41--2", "https://tec.openplanner.team/stops/LFsgend2"], ["https://tec.openplanner.team/stops/N351aua", "https://tec.openplanner.team/stops/N351aub"], ["https://tec.openplanner.team/stops/LCPcomm2", "https://tec.openplanner.team/stops/LGmcent1"], ["https://tec.openplanner.team/stops/H4eg105a", "https://tec.openplanner.team/stops/H4eg105b"], ["https://tec.openplanner.team/stops/N349aia", "https://tec.openplanner.team/stops/X349aaa"], ["https://tec.openplanner.team/stops/LHEcoll1", "https://tec.openplanner.team/stops/LHEhv--2"], ["https://tec.openplanner.team/stops/H4te248b", "https://tec.openplanner.team/stops/H4te252a"], ["https://tec.openplanner.team/stops/N121aab", "https://tec.openplanner.team/stops/N122aca"], ["https://tec.openplanner.team/stops/X626acb", "https://tec.openplanner.team/stops/X626aeb"], ["https://tec.openplanner.team/stops/LWAcost2", "https://tec.openplanner.team/stops/LWAwegg2"], ["https://tec.openplanner.team/stops/LAumari1", "https://tec.openplanner.team/stops/LAUvdab1"], ["https://tec.openplanner.team/stops/X902aeb", "https://tec.openplanner.team/stops/X902aib"], ["https://tec.openplanner.team/stops/LTIdumo2", "https://tec.openplanner.team/stops/LTIpire1"], ["https://tec.openplanner.team/stops/LTyh24-1", "https://tec.openplanner.team/stops/LTyh24-2"], ["https://tec.openplanner.team/stops/LSx309-1", "https://tec.openplanner.team/stops/LSx309-2"], ["https://tec.openplanner.team/stops/Bbcodam3", "https://tec.openplanner.team/stops/Bbcohou3"], ["https://tec.openplanner.team/stops/LsVlind*", "https://tec.openplanner.team/stops/LsVviel2"], ["https://tec.openplanner.team/stops/Cbbcent2", "https://tec.openplanner.team/stops/Cbbcrbo2"], ["https://tec.openplanner.team/stops/X897apa", "https://tec.openplanner.team/stops/X898agb"], ["https://tec.openplanner.team/stops/H4lg104a", "https://tec.openplanner.team/stops/H4ta127b"], ["https://tec.openplanner.team/stops/N571abb", "https://tec.openplanner.team/stops/NC14ada"], ["https://tec.openplanner.team/stops/Cchrmon4", "https://tec.openplanner.team/stops/Cchvhau1"], ["https://tec.openplanner.team/stops/Llianix3", "https://tec.openplanner.team/stops/Lmitech1"], ["https://tec.openplanner.team/stops/N118agb", "https://tec.openplanner.team/stops/N118axa"], ["https://tec.openplanner.team/stops/Lrocort2", "https://tec.openplanner.team/stops/Lromc--1"], ["https://tec.openplanner.team/stops/LFChuis1", "https://tec.openplanner.team/stops/LFCkerk1"], ["https://tec.openplanner.team/stops/N505aoa", "https://tec.openplanner.team/stops/N580aga"], ["https://tec.openplanner.team/stops/Crbreve2", "https://tec.openplanner.team/stops/Crclorc2"], ["https://tec.openplanner.team/stops/N539bca", "https://tec.openplanner.team/stops/N539bcb"], ["https://tec.openplanner.team/stops/Lvepala7", "https://tec.openplanner.team/stops/Lvepala8"], ["https://tec.openplanner.team/stops/N254aab", "https://tec.openplanner.team/stops/N570acb"], ["https://tec.openplanner.team/stops/Cfrcoqu4", "https://tec.openplanner.team/stops/Cfrgare1"], ["https://tec.openplanner.team/stops/NL57aib", "https://tec.openplanner.team/stops/NL57amb"], ["https://tec.openplanner.team/stops/Ladabot1", "https://tec.openplanner.team/stops/Ladarev1"], ["https://tec.openplanner.team/stops/X657aea", "https://tec.openplanner.team/stops/X742adb"], ["https://tec.openplanner.team/stops/H1bn114a", "https://tec.openplanner.team/stops/H1no142a"], ["https://tec.openplanner.team/stops/LFrfrai1", "https://tec.openplanner.team/stops/LFrvesd1"], ["https://tec.openplanner.team/stops/LXofans2", "https://tec.openplanner.team/stops/X599agb"], ["https://tec.openplanner.team/stops/H4ty298b", "https://tec.openplanner.team/stops/H4ty352a"], ["https://tec.openplanner.team/stops/N547ahb", "https://tec.openplanner.team/stops/N547aib"], ["https://tec.openplanner.team/stops/N534aga", "https://tec.openplanner.team/stops/N534caa"], ["https://tec.openplanner.team/stops/N351aga", "https://tec.openplanner.team/stops/X351aba"], ["https://tec.openplanner.team/stops/NL76aib", "https://tec.openplanner.team/stops/NL77ada"], ["https://tec.openplanner.team/stops/Cpcathe2", "https://tec.openplanner.team/stops/Cpcegli2"], ["https://tec.openplanner.team/stops/LLC170-1", "https://tec.openplanner.team/stops/LLCeg--2"], ["https://tec.openplanner.team/stops/X733aha", "https://tec.openplanner.team/stops/X734aib"], ["https://tec.openplanner.team/stops/LLVe75-1", "https://tec.openplanner.team/stops/X575aea"], ["https://tec.openplanner.team/stops/X661aoa", "https://tec.openplanner.team/stops/X839aeb"], ["https://tec.openplanner.team/stops/Cmychap2", "https://tec.openplanner.team/stops/Cmysncb2"], ["https://tec.openplanner.team/stops/Bnivfle2", "https://tec.openplanner.team/stops/Bnivpeu2"], ["https://tec.openplanner.team/stops/N347afb", "https://tec.openplanner.team/stops/N347agb"], ["https://tec.openplanner.team/stops/Bgdhlai1", "https://tec.openplanner.team/stops/Bthsset1"], ["https://tec.openplanner.team/stops/Cthhvil1", "https://tec.openplanner.team/stops/Cthpibl2"], ["https://tec.openplanner.team/stops/Bcer4br4", "https://tec.openplanner.team/stops/Bcercab1"], ["https://tec.openplanner.team/stops/Btubcim2", "https://tec.openplanner.team/stops/Btubegy1"], ["https://tec.openplanner.team/stops/Lmieg--2", "https://tec.openplanner.team/stops/Lmimc--1"], ["https://tec.openplanner.team/stops/N248aba", "https://tec.openplanner.team/stops/N248acb"], ["https://tec.openplanner.team/stops/Cmacart3", "https://tec.openplanner.team/stops/CMcart2"], ["https://tec.openplanner.team/stops/Bhlvlou1", "https://tec.openplanner.team/stops/Blpglon2"], ["https://tec.openplanner.team/stops/Bhensei2", "https://tec.openplanner.team/stops/Btubren1"], ["https://tec.openplanner.team/stops/N122acb", "https://tec.openplanner.team/stops/N150aea"], ["https://tec.openplanner.team/stops/Lrchero1", "https://tec.openplanner.team/stops/Lrcprin1"], ["https://tec.openplanner.team/stops/N528agb", "https://tec.openplanner.team/stops/N528apb"], ["https://tec.openplanner.team/stops/LAYcont2", "https://tec.openplanner.team/stops/LAYdieu1"], ["https://tec.openplanner.team/stops/X762adb", "https://tec.openplanner.team/stops/X762aeb"], ["https://tec.openplanner.team/stops/LHUtfal1", "https://tec.openplanner.team/stops/LHUtfal2"], ["https://tec.openplanner.team/stops/Llgbert2", "https://tec.openplanner.team/stops/Llgmass2"], ["https://tec.openplanner.team/stops/H4ty381a", "https://tec.openplanner.team/stops/H4ty382a"], ["https://tec.openplanner.team/stops/LHUlieg1", "https://tec.openplanner.team/stops/LHUmala2"], ["https://tec.openplanner.team/stops/H1hc150a", "https://tec.openplanner.team/stops/H4be149b"], ["https://tec.openplanner.team/stops/LMEgare1", "https://tec.openplanner.team/stops/LMEgare2"], ["https://tec.openplanner.team/stops/N524acb", "https://tec.openplanner.team/stops/N541adb"], ["https://tec.openplanner.team/stops/Llgavro1", "https://tec.openplanner.team/stops/Llgborn1"], ["https://tec.openplanner.team/stops/Bllncom1", "https://tec.openplanner.team/stops/Bllnfla3"], ["https://tec.openplanner.team/stops/X818aqb", "https://tec.openplanner.team/stops/X818avb"], ["https://tec.openplanner.team/stops/Llgnani1", "https://tec.openplanner.team/stops/Llgnani2"], ["https://tec.openplanner.team/stops/Cfarcam1", "https://tec.openplanner.team/stops/Cfarcam2"], ["https://tec.openplanner.team/stops/H2hg152b", "https://tec.openplanner.team/stops/H2hg157a"], ["https://tec.openplanner.team/stops/LVEcacq1", "https://tec.openplanner.team/stops/LVEphar2"], ["https://tec.openplanner.team/stops/LDmcruc1", "https://tec.openplanner.team/stops/LDmcruc2"], ["https://tec.openplanner.team/stops/N535alb", "https://tec.openplanner.team/stops/N535asb"], ["https://tec.openplanner.team/stops/Lsecoll2", "https://tec.openplanner.team/stops/Lsephar1"], ["https://tec.openplanner.team/stops/Lvtcalv1", "https://tec.openplanner.team/stops/Lvtchpl1"], ["https://tec.openplanner.team/stops/X870aba", "https://tec.openplanner.team/stops/X870afb"], ["https://tec.openplanner.team/stops/Blthbss2", "https://tec.openplanner.team/stops/Bmlncha1"], ["https://tec.openplanner.team/stops/H1ht121b", "https://tec.openplanner.team/stops/H1po139a"], ["https://tec.openplanner.team/stops/H1qy132b", "https://tec.openplanner.team/stops/H1qy135b"], ["https://tec.openplanner.team/stops/N501bma", "https://tec.openplanner.team/stops/N501bmb"], ["https://tec.openplanner.team/stops/LbThutt2", "https://tec.openplanner.team/stops/LbTkran1"], ["https://tec.openplanner.team/stops/Lgdblom1", "https://tec.openplanner.team/stops/Lgdstoc1"], ["https://tec.openplanner.team/stops/Bmrqgar1", "https://tec.openplanner.team/stops/Bspkdon2"], ["https://tec.openplanner.team/stops/Bolgfon2", "https://tec.openplanner.team/stops/Bolpmre2"], ["https://tec.openplanner.team/stops/N521ahb", "https://tec.openplanner.team/stops/N521ama"], ["https://tec.openplanner.team/stops/Lcavign1", "https://tec.openplanner.team/stops/Lcavign2"], ["https://tec.openplanner.team/stops/Lbooffe1", "https://tec.openplanner.team/stops/Lbooffe2"], ["https://tec.openplanner.team/stops/H4th140b", "https://tec.openplanner.team/stops/H4th141b"], ["https://tec.openplanner.team/stops/H1ho128b", "https://tec.openplanner.team/stops/H1ho140a"], ["https://tec.openplanner.team/stops/LOTmonu2", "https://tec.openplanner.team/stops/LOTsava2"], ["https://tec.openplanner.team/stops/LROandr1", "https://tec.openplanner.team/stops/LROandr2"], ["https://tec.openplanner.team/stops/Lbrchur2", "https://tec.openplanner.team/stops/Lbrlama2"], ["https://tec.openplanner.team/stops/Bhalath1", "https://tec.openplanner.team/stops/Bhalgar2"], ["https://tec.openplanner.team/stops/N503alb", "https://tec.openplanner.team/stops/N509bfa"], ["https://tec.openplanner.team/stops/LRObruy4", "https://tec.openplanner.team/stops/LROcham2"], ["https://tec.openplanner.team/stops/H4av105a", "https://tec.openplanner.team/stops/H4av105b"], ["https://tec.openplanner.team/stops/N577aka", "https://tec.openplanner.team/stops/N577akb"], ["https://tec.openplanner.team/stops/LHHpt--1", "https://tec.openplanner.team/stops/LHHpt--2"], ["https://tec.openplanner.team/stops/X837ala", "https://tec.openplanner.team/stops/X837alb"], ["https://tec.openplanner.team/stops/Loubonc1", "https://tec.openplanner.team/stops/Loubonc2"], ["https://tec.openplanner.team/stops/Bgzddge1", "https://tec.openplanner.team/stops/Bgzddge2"], ["https://tec.openplanner.team/stops/LVukabi1", "https://tec.openplanner.team/stops/LVukabi2"], ["https://tec.openplanner.team/stops/LLReg--1", "https://tec.openplanner.team/stops/LLReg--2"], ["https://tec.openplanner.team/stops/LHUdelc2", "https://tec.openplanner.team/stops/LHUdelc3"], ["https://tec.openplanner.team/stops/Bptblma2", "https://tec.openplanner.team/stops/Bptbsar2"], ["https://tec.openplanner.team/stops/N321aeb", "https://tec.openplanner.team/stops/N323acb"], ["https://tec.openplanner.team/stops/H1fl133a", "https://tec.openplanner.team/stops/H1fl135a"], ["https://tec.openplanner.team/stops/H1ca100a", "https://tec.openplanner.team/stops/H1th181a"], ["https://tec.openplanner.team/stops/X836abb", "https://tec.openplanner.team/stops/X839aga"], ["https://tec.openplanner.team/stops/Bincbbo3", "https://tec.openplanner.team/stops/Bincdon2"], ["https://tec.openplanner.team/stops/N517add", "https://tec.openplanner.team/stops/NL75abb"], ["https://tec.openplanner.team/stops/Lrocort1", "https://tec.openplanner.team/stops/Lromc--1"], ["https://tec.openplanner.team/stops/H4gr111b", "https://tec.openplanner.team/stops/H4ld129a"], ["https://tec.openplanner.team/stops/LBTxhen4", "https://tec.openplanner.team/stops/LHEbeau2"], ["https://tec.openplanner.team/stops/Louairl2", "https://tec.openplanner.team/stops/Lsttech1"], ["https://tec.openplanner.team/stops/N501ela", "https://tec.openplanner.team/stops/N501erb"], ["https://tec.openplanner.team/stops/LwYkirc2", "https://tec.openplanner.team/stops/LwYnr262"], ["https://tec.openplanner.team/stops/N509ajb", "https://tec.openplanner.team/stops/N509alb"], ["https://tec.openplanner.team/stops/N534aea", "https://tec.openplanner.team/stops/N534aeb"], ["https://tec.openplanner.team/stops/Cgyhaie1", "https://tec.openplanner.team/stops/Cgyhaie2"], ["https://tec.openplanner.team/stops/Lhubriq1", "https://tec.openplanner.team/stops/Lhubriq2"], ["https://tec.openplanner.team/stops/H1hq127a", "https://tec.openplanner.team/stops/H1sy148a"], ["https://tec.openplanner.team/stops/Bbchmai2", "https://tec.openplanner.team/stops/Bwaurge1"], ["https://tec.openplanner.team/stops/Blhueca1", "https://tec.openplanner.team/stops/Blhupa12"], ["https://tec.openplanner.team/stops/X879arb", "https://tec.openplanner.team/stops/X879asb"], ["https://tec.openplanner.team/stops/LSPmalc1", "https://tec.openplanner.team/stops/LSPsauv1"], ["https://tec.openplanner.team/stops/Cvvcime2", "https://tec.openplanner.team/stops/Cvvpotv2"], ["https://tec.openplanner.team/stops/LCLgend2", "https://tec.openplanner.team/stops/NL78afb"], ["https://tec.openplanner.team/stops/X870aab", "https://tec.openplanner.team/stops/X870aia"], ["https://tec.openplanner.team/stops/H1mm125d", "https://tec.openplanner.team/stops/H1mm132b"], ["https://tec.openplanner.team/stops/LGEhosp1", "https://tec.openplanner.team/stops/LGEhosp2"], ["https://tec.openplanner.team/stops/Bottcba2", "https://tec.openplanner.team/stops/Bottcbp1"], ["https://tec.openplanner.team/stops/Cmmcarr2", "https://tec.openplanner.team/stops/Cmmptno2"], ["https://tec.openplanner.team/stops/X611aca", "https://tec.openplanner.team/stops/X611ada"], ["https://tec.openplanner.team/stops/LATmals1", "https://tec.openplanner.team/stops/LHUsaul1"], ["https://tec.openplanner.team/stops/X639aoa", "https://tec.openplanner.team/stops/X639aqa"], ["https://tec.openplanner.team/stops/X618aib", "https://tec.openplanner.team/stops/X618apa"], ["https://tec.openplanner.team/stops/N202aba", "https://tec.openplanner.team/stops/N202abb"], ["https://tec.openplanner.team/stops/LPLc49-1", "https://tec.openplanner.team/stops/LRRtrix1"], ["https://tec.openplanner.team/stops/X750aca", "https://tec.openplanner.team/stops/X750ada"], ["https://tec.openplanner.team/stops/Lvearle2", "https://tec.openplanner.team/stops/Lvearle4"], ["https://tec.openplanner.team/stops/Bottpin2", "https://tec.openplanner.team/stops/Brixbai2"], ["https://tec.openplanner.team/stops/Loubonc2", "https://tec.openplanner.team/stops/Lousite4"], ["https://tec.openplanner.team/stops/N524afa", "https://tec.openplanner.team/stops/N524aja"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LCxcour1"], ["https://tec.openplanner.team/stops/Bplncba1", "https://tec.openplanner.team/stops/Clpnapo2"], ["https://tec.openplanner.team/stops/N501dvb", "https://tec.openplanner.team/stops/N501hkb"], ["https://tec.openplanner.team/stops/Bjodeco3", "https://tec.openplanner.team/stops/Bjodpvi2"], ["https://tec.openplanner.team/stops/Lmnfawe1", "https://tec.openplanner.team/stops/Lmnjeha1"], ["https://tec.openplanner.team/stops/H4de112b", "https://tec.openplanner.team/stops/H4de114b"], ["https://tec.openplanner.team/stops/X758akb", "https://tec.openplanner.team/stops/X840aea"], ["https://tec.openplanner.team/stops/Bcerldo1", "https://tec.openplanner.team/stops/Bmoucoq2"], ["https://tec.openplanner.team/stops/LmIkirc2", "https://tec.openplanner.team/stops/LmIzent2"], ["https://tec.openplanner.team/stops/Blascsl1", "https://tec.openplanner.team/stops/Blasren2"], ["https://tec.openplanner.team/stops/H1ms271a", "https://tec.openplanner.team/stops/H1ms313b"], ["https://tec.openplanner.team/stops/X903afa", "https://tec.openplanner.team/stops/X943aaa"], ["https://tec.openplanner.team/stops/LSecomm1", "https://tec.openplanner.team/stops/LTiflor1"], ["https://tec.openplanner.team/stops/LnDdorf1", "https://tec.openplanner.team/stops/LwSschw1"], ["https://tec.openplanner.team/stops/H4ty328a", "https://tec.openplanner.team/stops/H4ty348a"], ["https://tec.openplanner.team/stops/Cgofleu3", "https://tec.openplanner.team/stops/Cgon52"], ["https://tec.openplanner.team/stops/Btanpla2", "https://tec.openplanner.team/stops/Btanpla4"], ["https://tec.openplanner.team/stops/N525adb", "https://tec.openplanner.team/stops/N525alb"], ["https://tec.openplanner.team/stops/H2re166a", "https://tec.openplanner.team/stops/H2re168b"], ["https://tec.openplanner.team/stops/LGMvoue1", "https://tec.openplanner.team/stops/LSEcent2"], ["https://tec.openplanner.team/stops/H1ge116a", "https://tec.openplanner.team/stops/H1ge151b"], ["https://tec.openplanner.team/stops/Bbsthpl1", "https://tec.openplanner.team/stops/Bbsttab1"], ["https://tec.openplanner.team/stops/Ltimarr1", "https://tec.openplanner.team/stops/Ltimarr2"], ["https://tec.openplanner.team/stops/H4ea131b", "https://tec.openplanner.team/stops/H5qu145b"], ["https://tec.openplanner.team/stops/X919ada", "https://tec.openplanner.team/stops/X979aha"], ["https://tec.openplanner.team/stops/LFEhoup1", "https://tec.openplanner.team/stops/LRMeg--1"], ["https://tec.openplanner.team/stops/N383afa", "https://tec.openplanner.team/stops/N874amb"], ["https://tec.openplanner.team/stops/LWAathe1", "https://tec.openplanner.team/stops/LWApt--1"], ["https://tec.openplanner.team/stops/LHdfays2", "https://tec.openplanner.team/stops/LVtvalu2"], ["https://tec.openplanner.team/stops/Llgdony2", "https://tec.openplanner.team/stops/Llggosw1"], ["https://tec.openplanner.team/stops/X735aca", "https://tec.openplanner.team/stops/X736ada"], ["https://tec.openplanner.team/stops/LOuhalb1", "https://tec.openplanner.team/stops/LVnvieg1"], ["https://tec.openplanner.team/stops/N132aga", "https://tec.openplanner.team/stops/N136aaa"], ["https://tec.openplanner.team/stops/H5fl102c", "https://tec.openplanner.team/stops/H5fl102d"], ["https://tec.openplanner.team/stops/N117bda", "https://tec.openplanner.team/stops/N147aaa"], ["https://tec.openplanner.team/stops/X783aba", "https://tec.openplanner.team/stops/X783acb"], ["https://tec.openplanner.team/stops/N501gpb", "https://tec.openplanner.team/stops/N501zaa"], ["https://tec.openplanner.team/stops/Cgygazo3", "https://tec.openplanner.team/stops/CMgazo2"], ["https://tec.openplanner.team/stops/X720aca", "https://tec.openplanner.team/stops/X720aea"], ["https://tec.openplanner.team/stops/X754aka", "https://tec.openplanner.team/stops/X754awb"], ["https://tec.openplanner.team/stops/Lghlieg1", "https://tec.openplanner.team/stops/Lghprea2"], ["https://tec.openplanner.team/stops/NL37aia", "https://tec.openplanner.team/stops/NL37aka"], ["https://tec.openplanner.team/stops/Bitreco1", "https://tec.openplanner.team/stops/Bitregl2"], ["https://tec.openplanner.team/stops/X806aia", "https://tec.openplanner.team/stops/X806ala"], ["https://tec.openplanner.team/stops/Bhalrat1", "https://tec.openplanner.team/stops/Bhalrat2"], ["https://tec.openplanner.team/stops/LwAkape2", "https://tec.openplanner.team/stops/LwAkett1"], ["https://tec.openplanner.team/stops/H1do110a", "https://tec.openplanner.team/stops/H1do115b"], ["https://tec.openplanner.team/stops/LRGderr1", "https://tec.openplanner.team/stops/LRGmoul2"], ["https://tec.openplanner.team/stops/Lmitech2", "https://tec.openplanner.team/stops/Lvtcalv1"], ["https://tec.openplanner.team/stops/N557aab", "https://tec.openplanner.team/stops/N557ahb"], ["https://tec.openplanner.team/stops/X363abb", "https://tec.openplanner.team/stops/X363ada"], ["https://tec.openplanner.team/stops/X805abb", "https://tec.openplanner.team/stops/X805aca"], ["https://tec.openplanner.team/stops/N501jqa", "https://tec.openplanner.team/stops/N501kea"], ["https://tec.openplanner.team/stops/N503ajc", "https://tec.openplanner.team/stops/N580afa"], ["https://tec.openplanner.team/stops/X610afa", "https://tec.openplanner.team/stops/X610aia"], ["https://tec.openplanner.team/stops/LSMchat1", "https://tec.openplanner.team/stops/LSMfroi1"], ["https://tec.openplanner.team/stops/Bbxlmid1", "https://tec.openplanner.team/stops/Buccdch2"], ["https://tec.openplanner.team/stops/H1bu138a", "https://tec.openplanner.team/stops/H2ep144b"], ["https://tec.openplanner.team/stops/X783aaa", "https://tec.openplanner.team/stops/X783abb"], ["https://tec.openplanner.team/stops/N390adb", "https://tec.openplanner.team/stops/N390amb"], ["https://tec.openplanner.team/stops/N532ajb", "https://tec.openplanner.team/stops/N532anb"], ["https://tec.openplanner.team/stops/N203afa", "https://tec.openplanner.team/stops/N203afb"], ["https://tec.openplanner.team/stops/Lgrfass1", "https://tec.openplanner.team/stops/Lgrspir1"], ["https://tec.openplanner.team/stops/N390ada", "https://tec.openplanner.team/stops/X390anb"], ["https://tec.openplanner.team/stops/Lflweri1", "https://tec.openplanner.team/stops/Lflweri2"], ["https://tec.openplanner.team/stops/N533agb", "https://tec.openplanner.team/stops/N533aoa"], ["https://tec.openplanner.team/stops/LBvviem3", "https://tec.openplanner.team/stops/LWAclos2"], ["https://tec.openplanner.team/stops/X561aaa", "https://tec.openplanner.team/stops/X561aab"], ["https://tec.openplanner.team/stops/NL57aia", "https://tec.openplanner.team/stops/NL57ama"], ["https://tec.openplanner.team/stops/X713acb", "https://tec.openplanner.team/stops/X713ajd"], ["https://tec.openplanner.team/stops/Bsaubra2", "https://tec.openplanner.team/stops/Bsaupco2"], ["https://tec.openplanner.team/stops/LWDeg--2", "https://tec.openplanner.team/stops/LWDplac2"], ["https://tec.openplanner.team/stops/Canegbr1", "https://tec.openplanner.team/stops/Canegbr2"], ["https://tec.openplanner.team/stops/LjeGRPMA", "https://tec.openplanner.team/stops/LjeGRPMB"], ["https://tec.openplanner.team/stops/X623aba", "https://tec.openplanner.team/stops/X623ada"], ["https://tec.openplanner.team/stops/X784aha", "https://tec.openplanner.team/stops/X784ahb"], ["https://tec.openplanner.team/stops/H5wo125a", "https://tec.openplanner.team/stops/H5wo126b"], ["https://tec.openplanner.team/stops/X681aca", "https://tec.openplanner.team/stops/X681aeb"], ["https://tec.openplanner.team/stops/X602aib", "https://tec.openplanner.team/stops/X602ara"], ["https://tec.openplanner.team/stops/X897aab", "https://tec.openplanner.team/stops/X897apa"], ["https://tec.openplanner.team/stops/Bitrcen1", "https://tec.openplanner.team/stops/Bitregl2"], ["https://tec.openplanner.team/stops/X801aia", "https://tec.openplanner.team/stops/X801bpa"], ["https://tec.openplanner.team/stops/N501kuc", "https://tec.openplanner.team/stops/N501lja"], ["https://tec.openplanner.team/stops/X901ara", "https://tec.openplanner.team/stops/X901bta"], ["https://tec.openplanner.team/stops/LAivill1", "https://tec.openplanner.team/stops/Lccuner1"], ["https://tec.openplanner.team/stops/LBSchar3", "https://tec.openplanner.team/stops/LBSneuv1"], ["https://tec.openplanner.team/stops/X902aib", "https://tec.openplanner.team/stops/X992abb"], ["https://tec.openplanner.team/stops/H1ha185b", "https://tec.openplanner.team/stops/H1ha189a"], ["https://tec.openplanner.team/stops/LHUhsar1", "https://tec.openplanner.team/stops/LHUtrin2"], ["https://tec.openplanner.team/stops/Bflccav2", "https://tec.openplanner.team/stops/Bflcpco2"], ["https://tec.openplanner.team/stops/H2mo126b", "https://tec.openplanner.team/stops/H2mo145a"], ["https://tec.openplanner.team/stops/LHNcoll1", "https://tec.openplanner.team/stops/LHNecpr4"], ["https://tec.openplanner.team/stops/Clggrfe1", "https://tec.openplanner.team/stops/Clgpavi1"], ["https://tec.openplanner.team/stops/Cgxbeau2", "https://tec.openplanner.team/stops/Cgxcime2"], ["https://tec.openplanner.team/stops/N501jdb", "https://tec.openplanner.team/stops/N501jfa"], ["https://tec.openplanner.team/stops/LLAcalv2", "https://tec.openplanner.team/stops/LLApavi2"], ["https://tec.openplanner.team/stops/Llgbene1", "https://tec.openplanner.team/stops/Llgcite4"], ["https://tec.openplanner.team/stops/X986akb", "https://tec.openplanner.team/stops/X986amb"], ["https://tec.openplanner.team/stops/Bglibui1", "https://tec.openplanner.team/stops/NB33ahb"], ["https://tec.openplanner.team/stops/Lvtauna2", "https://tec.openplanner.team/stops/Lvtlimi1"], ["https://tec.openplanner.team/stops/Bwatmbv1", "https://tec.openplanner.team/stops/Bwatmch3"], ["https://tec.openplanner.team/stops/X617adb", "https://tec.openplanner.team/stops/X617aea"], ["https://tec.openplanner.team/stops/LeUgeme1", "https://tec.openplanner.team/stops/LlNbruc1"], ["https://tec.openplanner.team/stops/Bcbqcoi1", "https://tec.openplanner.team/stops/Bcbqrog1"], ["https://tec.openplanner.team/stops/N207acb", "https://tec.openplanner.team/stops/N209alb"], ["https://tec.openplanner.team/stops/LMOlens1", "https://tec.openplanner.team/stops/LMOlens2"], ["https://tec.openplanner.team/stops/Cciqueu2", "https://tec.openplanner.team/stops/NC02avb"], ["https://tec.openplanner.team/stops/N104aea", "https://tec.openplanner.team/stops/N118ava"], ["https://tec.openplanner.team/stops/N505aca", "https://tec.openplanner.team/stops/N505acb"], ["https://tec.openplanner.team/stops/N501lna", "https://tec.openplanner.team/stops/N501mfa"], ["https://tec.openplanner.team/stops/N211aca", "https://tec.openplanner.team/stops/N211awa"], ["https://tec.openplanner.team/stops/H1cu115a", "https://tec.openplanner.team/stops/H1cu118a"], ["https://tec.openplanner.team/stops/LAUcent2", "https://tec.openplanner.team/stops/LAUneuv4"], ["https://tec.openplanner.team/stops/Lpecroi1", "https://tec.openplanner.team/stops/Lpecroi2"], ["https://tec.openplanner.team/stops/N540aia", "https://tec.openplanner.team/stops/N540aib"], ["https://tec.openplanner.team/stops/N127ada", "https://tec.openplanner.team/stops/N127adb"], ["https://tec.openplanner.team/stops/LTatult1", "https://tec.openplanner.team/stops/LTatult3"], ["https://tec.openplanner.team/stops/N139ada", "https://tec.openplanner.team/stops/N140aaa"], ["https://tec.openplanner.team/stops/Lpedeta2", "https://tec.openplanner.team/stops/LTAbran2"], ["https://tec.openplanner.team/stops/N423aaa", "https://tec.openplanner.team/stops/N423aab"], ["https://tec.openplanner.team/stops/LbUverb1", "https://tec.openplanner.team/stops/LhObull1"], ["https://tec.openplanner.team/stops/H2fy123b", "https://tec.openplanner.team/stops/H2fy123d"], ["https://tec.openplanner.team/stops/N236alb", "https://tec.openplanner.team/stops/N236aoa"], ["https://tec.openplanner.team/stops/H4ka178b", "https://tec.openplanner.team/stops/H4ru243b"], ["https://tec.openplanner.team/stops/Lagbeno2", "https://tec.openplanner.team/stops/Llgpari1"], ["https://tec.openplanner.team/stops/H4ka178a", "https://tec.openplanner.team/stops/H4ru243a"], ["https://tec.openplanner.team/stops/LEnchan1", "https://tec.openplanner.team/stops/NL73acb"], ["https://tec.openplanner.team/stops/X766ada", "https://tec.openplanner.team/stops/X766adb"], ["https://tec.openplanner.team/stops/X740aba", "https://tec.openplanner.team/stops/X740acb"], ["https://tec.openplanner.team/stops/Bchadpt1", "https://tec.openplanner.team/stops/Bwlhppg3"], ["https://tec.openplanner.team/stops/H1hl124b", "https://tec.openplanner.team/stops/H1vs146b"], ["https://tec.openplanner.team/stops/X992aaa", "https://tec.openplanner.team/stops/X993agb"], ["https://tec.openplanner.team/stops/N511akb", "https://tec.openplanner.team/stops/N511atb"], ["https://tec.openplanner.team/stops/LSMfroi1", "https://tec.openplanner.team/stops/LSMfroi2"], ["https://tec.openplanner.team/stops/LmLbeil2", "https://tec.openplanner.team/stops/LwMzoll2"], ["https://tec.openplanner.team/stops/LBachpl2", "https://tec.openplanner.team/stops/LBapeup1"], ["https://tec.openplanner.team/stops/H4ne138a", "https://tec.openplanner.team/stops/H4ne144c"], ["https://tec.openplanner.team/stops/X753aab", "https://tec.openplanner.team/stops/X945adb"], ["https://tec.openplanner.team/stops/H1ms310a", "https://tec.openplanner.team/stops/H1ms313b"], ["https://tec.openplanner.team/stops/LeYmuhl2", "https://tec.openplanner.team/stops/LhSfrep2"], ["https://tec.openplanner.team/stops/H4pp122b", "https://tec.openplanner.team/stops/H4qu230a"], ["https://tec.openplanner.team/stops/Cjugohi2", "https://tec.openplanner.team/stops/Cjumarc2"], ["https://tec.openplanner.team/stops/H4hx114a", "https://tec.openplanner.team/stops/H4hx117a"], ["https://tec.openplanner.team/stops/Bcsegar1", "https://tec.openplanner.team/stops/Bcsegar2"], ["https://tec.openplanner.team/stops/H1tt104a", "https://tec.openplanner.team/stops/H1tt109b"], ["https://tec.openplanner.team/stops/Llgcour1", "https://tec.openplanner.team/stops/Llgoutr3"], ["https://tec.openplanner.team/stops/X601bba", "https://tec.openplanner.team/stops/X601bbe"], ["https://tec.openplanner.team/stops/X902aca", "https://tec.openplanner.team/stops/X902asa"], ["https://tec.openplanner.team/stops/N232cea", "https://tec.openplanner.team/stops/N260aca"], ["https://tec.openplanner.team/stops/Creespi1", "https://tec.openplanner.team/stops/Creluth1"], ["https://tec.openplanner.team/stops/Baudulb1", "https://tec.openplanner.team/stops/Baudwav1"], ["https://tec.openplanner.team/stops/X901ala", "https://tec.openplanner.team/stops/X901beb"], ["https://tec.openplanner.team/stops/LODamco1", "https://tec.openplanner.team/stops/X548aea"], ["https://tec.openplanner.team/stops/H4ce100b", "https://tec.openplanner.team/stops/H4ce104b"], ["https://tec.openplanner.team/stops/N508amb", "https://tec.openplanner.team/stops/N508aoa"], ["https://tec.openplanner.team/stops/X733aib", "https://tec.openplanner.team/stops/X733ala"], ["https://tec.openplanner.team/stops/N309abb", "https://tec.openplanner.team/stops/N350adb"], ["https://tec.openplanner.team/stops/Bnivpve1", "https://tec.openplanner.team/stops/Bnivsho1"], ["https://tec.openplanner.team/stops/X362ada", "https://tec.openplanner.team/stops/X363acb"], ["https://tec.openplanner.team/stops/Lsecris4", "https://tec.openplanner.team/stops/Lsepudd2"], ["https://tec.openplanner.team/stops/H4co150a", "https://tec.openplanner.team/stops/H4co150b"], ["https://tec.openplanner.team/stops/Cgzabau2", "https://tec.openplanner.team/stops/Cmyjaci2"], ["https://tec.openplanner.team/stops/Llgcite1", "https://tec.openplanner.team/stops/LlgLEOP3"], ["https://tec.openplanner.team/stops/Bbaubon1", "https://tec.openplanner.team/stops/Bbaulil1"], ["https://tec.openplanner.team/stops/X601ara", "https://tec.openplanner.team/stops/X662aqa"], ["https://tec.openplanner.team/stops/N501jfb", "https://tec.openplanner.team/stops/N501jja"], ["https://tec.openplanner.team/stops/N585ala", "https://tec.openplanner.team/stops/N585alb"], ["https://tec.openplanner.team/stops/Blimeur1", "https://tec.openplanner.team/stops/Blimeur2"], ["https://tec.openplanner.team/stops/X802aia", "https://tec.openplanner.team/stops/X802aib"], ["https://tec.openplanner.team/stops/H4gz115a", "https://tec.openplanner.team/stops/H4th139b"], ["https://tec.openplanner.team/stops/Canrobe2", "https://tec.openplanner.team/stops/Canrtth3"], ["https://tec.openplanner.team/stops/H4ty319a", "https://tec.openplanner.team/stops/H4ty356c"], ["https://tec.openplanner.team/stops/N534bdb", "https://tec.openplanner.team/stops/N534bfa"], ["https://tec.openplanner.team/stops/Clolidl1", "https://tec.openplanner.team/stops/Cmapeet2"], ["https://tec.openplanner.team/stops/Bhancom1", "https://tec.openplanner.team/stops/LVParal1"], ["https://tec.openplanner.team/stops/X715afb", "https://tec.openplanner.team/stops/X715alb"], ["https://tec.openplanner.team/stops/LVMborl1", "https://tec.openplanner.team/stops/LVMcent1"], ["https://tec.openplanner.team/stops/N106afa", "https://tec.openplanner.team/stops/N106agb"], ["https://tec.openplanner.team/stops/LSPplat1", "https://tec.openplanner.team/stops/LSPtonn1"], ["https://tec.openplanner.team/stops/X626aja", "https://tec.openplanner.team/stops/X688abb"], ["https://tec.openplanner.team/stops/Clrcite2", "https://tec.openplanner.team/stops/Clrmarl2"], ["https://tec.openplanner.team/stops/Crodrai1", "https://tec.openplanner.team/stops/Crowilb2"], ["https://tec.openplanner.team/stops/N134ajb", "https://tec.openplanner.team/stops/N135ayb"], ["https://tec.openplanner.team/stops/X636ana", "https://tec.openplanner.team/stops/X636aoa"], ["https://tec.openplanner.team/stops/LrcarsT2", "https://tec.openplanner.team/stops/Lrcastr1"], ["https://tec.openplanner.team/stops/X641ada", "https://tec.openplanner.team/stops/X641aea"], ["https://tec.openplanner.team/stops/H1eu105b", "https://tec.openplanner.team/stops/H1eu107b"], ["https://tec.openplanner.team/stops/H2fy119b", "https://tec.openplanner.team/stops/H2fy122b"], ["https://tec.openplanner.team/stops/N230afb", "https://tec.openplanner.team/stops/N234ada"], ["https://tec.openplanner.team/stops/Lkinyst2", "https://tec.openplanner.team/stops/Lstchas2"], ["https://tec.openplanner.team/stops/N501mez", "https://tec.openplanner.team/stops/N501mla"], ["https://tec.openplanner.team/stops/X952aja", "https://tec.openplanner.team/stops/X952alb"], ["https://tec.openplanner.team/stops/X666aia", "https://tec.openplanner.team/stops/X666ajb"], ["https://tec.openplanner.team/stops/X740afa", "https://tec.openplanner.team/stops/X740afb"], ["https://tec.openplanner.team/stops/X796aaa", "https://tec.openplanner.team/stops/X986acb"], ["https://tec.openplanner.team/stops/Ctaprai3", "https://tec.openplanner.team/stops/N543bna"], ["https://tec.openplanner.team/stops/N531aia", "https://tec.openplanner.team/stops/N531aib"], ["https://tec.openplanner.team/stops/N566adb", "https://tec.openplanner.team/stops/N566afb"], ["https://tec.openplanner.team/stops/X897agb", "https://tec.openplanner.team/stops/X897aya"], ["https://tec.openplanner.team/stops/X982apb", "https://tec.openplanner.team/stops/X982brb"], ["https://tec.openplanner.team/stops/H4es117b", "https://tec.openplanner.team/stops/H4ev118b"], ["https://tec.openplanner.team/stops/N522ata", "https://tec.openplanner.team/stops/N522aua"], ["https://tec.openplanner.team/stops/Bblaegl1", "https://tec.openplanner.team/stops/Bwatcpl1"], ["https://tec.openplanner.team/stops/NB33aia", "https://tec.openplanner.team/stops/NB33ajb"], ["https://tec.openplanner.team/stops/LRtcarr2", "https://tec.openplanner.team/stops/LSebott1"], ["https://tec.openplanner.team/stops/Bmarlor1", "https://tec.openplanner.team/stops/Bmarmco2"], ["https://tec.openplanner.team/stops/H4pl114a", "https://tec.openplanner.team/stops/H4pl115b"], ["https://tec.openplanner.team/stops/X747aab", "https://tec.openplanner.team/stops/X747aca"], ["https://tec.openplanner.team/stops/Bgrmver2", "https://tec.openplanner.team/stops/Bgrmver3"], ["https://tec.openplanner.team/stops/LGMdrev2", "https://tec.openplanner.team/stops/LTRoasi2"], ["https://tec.openplanner.team/stops/N155aga", "https://tec.openplanner.team/stops/N155aja"], ["https://tec.openplanner.team/stops/LAMjaur2", "https://tec.openplanner.team/stops/LAMrich2"], ["https://tec.openplanner.team/stops/H1le117a", "https://tec.openplanner.team/stops/H5is168a"], ["https://tec.openplanner.team/stops/LhRandl1", "https://tec.openplanner.team/stops/LhRkirc1"], ["https://tec.openplanner.team/stops/Cmlcpar1", "https://tec.openplanner.team/stops/Cmlcpar2"], ["https://tec.openplanner.team/stops/LeUgb--1", "https://tec.openplanner.team/stops/LeUgutl2"], ["https://tec.openplanner.team/stops/Lbrmour2", "https://tec.openplanner.team/stops/Llgplai1"], ["https://tec.openplanner.team/stops/H4rx176a", "https://tec.openplanner.team/stops/H4rx176b"], ["https://tec.openplanner.team/stops/X790acb", "https://tec.openplanner.team/stops/X790aja"], ["https://tec.openplanner.team/stops/LlNsc651", "https://tec.openplanner.team/stops/LlNschu1"], ["https://tec.openplanner.team/stops/N574aab", "https://tec.openplanner.team/stops/N574abb"], ["https://tec.openplanner.team/stops/LESgare1", "https://tec.openplanner.team/stops/LESmont2"], ["https://tec.openplanner.team/stops/LMOm64-1", "https://tec.openplanner.team/stops/LMOpiss2"], ["https://tec.openplanner.team/stops/X826aab", "https://tec.openplanner.team/stops/X826aga"], ["https://tec.openplanner.team/stops/Cobbusc1", "https://tec.openplanner.team/stops/Cobmara2"], ["https://tec.openplanner.team/stops/Lagjard2", "https://tec.openplanner.team/stops/Lagrask2"], ["https://tec.openplanner.team/stops/X720aaa", "https://tec.openplanner.team/stops/X720adb"], ["https://tec.openplanner.team/stops/H2mo124a", "https://tec.openplanner.team/stops/H2mo124b"], ["https://tec.openplanner.team/stops/N501aka", "https://tec.openplanner.team/stops/N501apa"], ["https://tec.openplanner.team/stops/N543cka", "https://tec.openplanner.team/stops/N543cla"], ["https://tec.openplanner.team/stops/LOUbarr1", "https://tec.openplanner.team/stops/LOUherm2"], ["https://tec.openplanner.team/stops/LTrchar1", "https://tec.openplanner.team/stops/LTrchar2"], ["https://tec.openplanner.team/stops/X618ada", "https://tec.openplanner.team/stops/X618aeb"], ["https://tec.openplanner.team/stops/H4ne139a", "https://tec.openplanner.team/stops/H4te249b"], ["https://tec.openplanner.team/stops/X805aka", "https://tec.openplanner.team/stops/X806aha"], ["https://tec.openplanner.team/stops/Cwgcamp2", "https://tec.openplanner.team/stops/Cwgrabi2"], ["https://tec.openplanner.team/stops/LBEairp4", "https://tec.openplanner.team/stops/LBEfagn1"], ["https://tec.openplanner.team/stops/H1pw122b", "https://tec.openplanner.team/stops/H1wg124a"], ["https://tec.openplanner.team/stops/Blaneli1", "https://tec.openplanner.team/stops/Blanove2"], ["https://tec.openplanner.team/stops/N560aaa", "https://tec.openplanner.team/stops/N560acb"], ["https://tec.openplanner.team/stops/H1ba107b", "https://tec.openplanner.team/stops/H1qu111b"], ["https://tec.openplanner.team/stops/LwLkirc2", "https://tec.openplanner.team/stops/LwLprum1"], ["https://tec.openplanner.team/stops/Bwatfon1", "https://tec.openplanner.team/stops/Bwatran2"], ["https://tec.openplanner.team/stops/Cmeloti2", "https://tec.openplanner.team/stops/Cmewaya1"], ["https://tec.openplanner.team/stops/N585abb", "https://tec.openplanner.team/stops/N585ajb"], ["https://tec.openplanner.team/stops/H1au103a", "https://tec.openplanner.team/stops/H1au103b"], ["https://tec.openplanner.team/stops/X636arb", "https://tec.openplanner.team/stops/X636atb"], ["https://tec.openplanner.team/stops/Bhevjal1", "https://tec.openplanner.team/stops/Bhevl3l1"], ["https://tec.openplanner.team/stops/H1gi154b", "https://tec.openplanner.team/stops/H1hg179a"], ["https://tec.openplanner.team/stops/H1hr118a", "https://tec.openplanner.team/stops/H1hr124b"], ["https://tec.openplanner.team/stops/H1wa149c", "https://tec.openplanner.team/stops/H1wa156b"], ["https://tec.openplanner.team/stops/Bbcocou2", "https://tec.openplanner.team/stops/Bbcolno2"], ["https://tec.openplanner.team/stops/Ccobinc2", "https://tec.openplanner.team/stops/Ccoforr1"], ["https://tec.openplanner.team/stops/LVkchap2", "https://tec.openplanner.team/stops/LVkinst2"], ["https://tec.openplanner.team/stops/N501ffb", "https://tec.openplanner.team/stops/N501fqd"], ["https://tec.openplanner.team/stops/LHXmonu1", "https://tec.openplanner.team/stops/LLVfoss1"], ["https://tec.openplanner.team/stops/X715aaa", "https://tec.openplanner.team/stops/X716aca"], ["https://tec.openplanner.team/stops/N501dqb", "https://tec.openplanner.team/stops/N501mvd"], ["https://tec.openplanner.team/stops/LMHoha-2", "https://tec.openplanner.team/stops/LWNcham2"], ["https://tec.openplanner.team/stops/N244abb", "https://tec.openplanner.team/stops/N244amb"], ["https://tec.openplanner.team/stops/X721aqa", "https://tec.openplanner.team/stops/X721aqb"], ["https://tec.openplanner.team/stops/Ljhmany1", "https://tec.openplanner.team/stops/LPoewer2"], ["https://tec.openplanner.team/stops/LVHbrai1", "https://tec.openplanner.team/stops/LVHbrai2"], ["https://tec.openplanner.team/stops/X630aca", "https://tec.openplanner.team/stops/X638ada"], ["https://tec.openplanner.team/stops/Crcpla1", "https://tec.openplanner.team/stops/Crcrgar2"], ["https://tec.openplanner.team/stops/Cmlcent1", "https://tec.openplanner.team/stops/Cmlpbay2"], ["https://tec.openplanner.team/stops/LHgpost2", "https://tec.openplanner.team/stops/LOMdodi2"], ["https://tec.openplanner.team/stops/LORroma1", "https://tec.openplanner.team/stops/LTotrui2"], ["https://tec.openplanner.team/stops/LMOchpl2", "https://tec.openplanner.team/stops/LMOfrel2"], ["https://tec.openplanner.team/stops/X938aeb", "https://tec.openplanner.team/stops/X950acb"], ["https://tec.openplanner.team/stops/Bjodeco3", "https://tec.openplanner.team/stops/Bsrgm101"], ["https://tec.openplanner.team/stops/N874ala", "https://tec.openplanner.team/stops/X887aab"], ["https://tec.openplanner.team/stops/Beclaub2", "https://tec.openplanner.team/stops/Beclron1"], ["https://tec.openplanner.team/stops/Louaout1", "https://tec.openplanner.team/stops/Lstvill2"], ["https://tec.openplanner.team/stops/LVbpave1", "https://tec.openplanner.team/stops/NL77anb"], ["https://tec.openplanner.team/stops/LTRoasi1", "https://tec.openplanner.team/stops/LTRoasi2"], ["https://tec.openplanner.team/stops/LWNbeto1", "https://tec.openplanner.team/stops/LWNcime1"], ["https://tec.openplanner.team/stops/H1qv110a", "https://tec.openplanner.team/stops/H1qv114a"], ["https://tec.openplanner.team/stops/N553aba", "https://tec.openplanner.team/stops/N553aoa"], ["https://tec.openplanner.team/stops/N539aua", "https://tec.openplanner.team/stops/N539aub"], ["https://tec.openplanner.team/stops/N562aob", "https://tec.openplanner.team/stops/N563ama"], ["https://tec.openplanner.team/stops/H1te179a", "https://tec.openplanner.team/stops/H1vt194b"], ["https://tec.openplanner.team/stops/H1gc122b", "https://tec.openplanner.team/stops/H1gc124b"], ["https://tec.openplanner.team/stops/LAUbirv1", "https://tec.openplanner.team/stops/LAUbirv2"], ["https://tec.openplanner.team/stops/Lhrherm1", "https://tec.openplanner.team/stops/Lhrmemo2"], ["https://tec.openplanner.team/stops/H4gu111a", "https://tec.openplanner.team/stops/H4ta119a"], ["https://tec.openplanner.team/stops/Brixaug1", "https://tec.openplanner.team/stops/Brixpro2"], ["https://tec.openplanner.team/stops/LATmale1", "https://tec.openplanner.team/stops/LWNwavr5"], ["https://tec.openplanner.team/stops/N312acb", "https://tec.openplanner.team/stops/N312ada"], ["https://tec.openplanner.team/stops/H1mm126a", "https://tec.openplanner.team/stops/H1mm128a"], ["https://tec.openplanner.team/stops/H5pe128a", "https://tec.openplanner.team/stops/H5pe128b"], ["https://tec.openplanner.team/stops/H2be102a", "https://tec.openplanner.team/stops/H2mg137a"], ["https://tec.openplanner.team/stops/LClbloc2", "https://tec.openplanner.team/stops/LThelse1"], ["https://tec.openplanner.team/stops/Lhubarl2", "https://tec.openplanner.team/stops/Lmnrame2"], ["https://tec.openplanner.team/stops/H2lc168b", "https://tec.openplanner.team/stops/H2lc169b"], ["https://tec.openplanner.team/stops/LSTchef2", "https://tec.openplanner.team/stops/LSTcomm1"], ["https://tec.openplanner.team/stops/X921apa", "https://tec.openplanner.team/stops/X923apb"], ["https://tec.openplanner.team/stops/N501mxb", "https://tec.openplanner.team/stops/N533ald"], ["https://tec.openplanner.team/stops/N580aba", "https://tec.openplanner.team/stops/N580abb"], ["https://tec.openplanner.team/stops/Llgddef1", "https://tec.openplanner.team/stops/Llggeer3"], ["https://tec.openplanner.team/stops/H3lr109a", "https://tec.openplanner.team/stops/H3lr109b"], ["https://tec.openplanner.team/stops/N501ifa", "https://tec.openplanner.team/stops/N501ifb"], ["https://tec.openplanner.team/stops/N506bab", "https://tec.openplanner.team/stops/N506bac"], ["https://tec.openplanner.team/stops/Lvtbocl2", "https://tec.openplanner.team/stops/Lvtmeun1"], ["https://tec.openplanner.team/stops/Btancnd2", "https://tec.openplanner.team/stops/Bvlvbth1"], ["https://tec.openplanner.team/stops/N209aha", "https://tec.openplanner.team/stops/N209aka"], ["https://tec.openplanner.team/stops/Lgrmc--2", "https://tec.openplanner.team/stops/Lgrside2"], ["https://tec.openplanner.team/stops/H4fo116b", "https://tec.openplanner.team/stops/H4vz369a"], ["https://tec.openplanner.team/stops/X717aaa", "https://tec.openplanner.team/stops/X717aab"], ["https://tec.openplanner.team/stops/X921aoa", "https://tec.openplanner.team/stops/X979aob"], ["https://tec.openplanner.team/stops/LbUbisc1", "https://tec.openplanner.team/stops/LbUpost2"], ["https://tec.openplanner.team/stops/NH01aha", "https://tec.openplanner.team/stops/NH01aib"], ["https://tec.openplanner.team/stops/H2ll180b", "https://tec.openplanner.team/stops/H2ll258a"], ["https://tec.openplanner.team/stops/X657afb", "https://tec.openplanner.team/stops/X657agb"], ["https://tec.openplanner.team/stops/Bdlmflo1", "https://tec.openplanner.team/stops/Bdvmalo2"], ["https://tec.openplanner.team/stops/H1go169a", "https://tec.openplanner.team/stops/H1qy136b"], ["https://tec.openplanner.team/stops/Lseprog1", "https://tec.openplanner.team/stops/Lseprog2"], ["https://tec.openplanner.team/stops/H4ty308a", "https://tec.openplanner.team/stops/H4ty308c"], ["https://tec.openplanner.team/stops/H4fa124a", "https://tec.openplanner.team/stops/H4fa124b"], ["https://tec.openplanner.team/stops/LSSjeun1", "https://tec.openplanner.team/stops/LSSvill2"], ["https://tec.openplanner.team/stops/Barchez1", "https://tec.openplanner.team/stops/Barcsta2"], ["https://tec.openplanner.team/stops/Bincbbo4", "https://tec.openplanner.team/stops/Bincegl1"], ["https://tec.openplanner.team/stops/H1mv240b", "https://tec.openplanner.team/stops/H1nv325a"], ["https://tec.openplanner.team/stops/Brsgcfl1", "https://tec.openplanner.team/stops/Brsggea1"], ["https://tec.openplanner.team/stops/Cgzchab1", "https://tec.openplanner.team/stops/Cgzcour2"], ["https://tec.openplanner.team/stops/Cmamonu1", "https://tec.openplanner.team/stops/Cmychap1"], ["https://tec.openplanner.team/stops/LSPbass1", "https://tec.openplanner.team/stops/LSPbass2"], ["https://tec.openplanner.team/stops/LHolexh1", "https://tec.openplanner.team/stops/LHZcouv1"], ["https://tec.openplanner.team/stops/Llianix1", "https://tec.openplanner.team/stops/Lligare*"], ["https://tec.openplanner.team/stops/Llglema3", "https://tec.openplanner.team/stops/Llgrome1"], ["https://tec.openplanner.team/stops/LEMec--1", "https://tec.openplanner.team/stops/LEMeg--2"], ["https://tec.openplanner.team/stops/N510acf", "https://tec.openplanner.team/stops/N510afb"], ["https://tec.openplanner.team/stops/Lghfors2", "https://tec.openplanner.team/stops/Lmlguis1"], ["https://tec.openplanner.team/stops/X766acb", "https://tec.openplanner.team/stops/X766ahb"], ["https://tec.openplanner.team/stops/H1je212b", "https://tec.openplanner.team/stops/H1je215a"], ["https://tec.openplanner.team/stops/N501goa", "https://tec.openplanner.team/stops/N501lsa"], ["https://tec.openplanner.team/stops/N311aeb", "https://tec.openplanner.team/stops/N368abb"], ["https://tec.openplanner.team/stops/N136aab", "https://tec.openplanner.team/stops/N136adb"], ["https://tec.openplanner.team/stops/N321ada", "https://tec.openplanner.team/stops/N321aea"], ["https://tec.openplanner.team/stops/N135aqb", "https://tec.openplanner.team/stops/N135aub"], ["https://tec.openplanner.team/stops/Cjucopp1", "https://tec.openplanner.team/stops/Cjugill4"], ["https://tec.openplanner.team/stops/H4ty281a", "https://tec.openplanner.team/stops/H4ty307a"], ["https://tec.openplanner.team/stops/LhDkreu2", "https://tec.openplanner.team/stops/LhDkreu3"], ["https://tec.openplanner.team/stops/Brsgm301", "https://tec.openplanner.team/stops/Brsgm302"], ["https://tec.openplanner.team/stops/Llgcmes2", "https://tec.openplanner.team/stops/Llgjasm2"], ["https://tec.openplanner.team/stops/H4ka188b", "https://tec.openplanner.team/stops/H4ka190b"], ["https://tec.openplanner.team/stops/H1ge115a", "https://tec.openplanner.team/stops/H1ge179a"], ["https://tec.openplanner.team/stops/Ccunove2", "https://tec.openplanner.team/stops/Ccuplai2"], ["https://tec.openplanner.team/stops/LAUabat2", "https://tec.openplanner.team/stops/LRmha261"], ["https://tec.openplanner.team/stops/Cradest1", "https://tec.openplanner.team/stops/Crasabl2"], ["https://tec.openplanner.team/stops/H3so176a", "https://tec.openplanner.team/stops/H3so178b"], ["https://tec.openplanner.team/stops/Cmlbras2", "https://tec.openplanner.team/stops/Cmlrang1"], ["https://tec.openplanner.team/stops/X662aqa", "https://tec.openplanner.team/stops/X662arb"], ["https://tec.openplanner.team/stops/H5pe135a", "https://tec.openplanner.team/stops/H5pe135b"], ["https://tec.openplanner.team/stops/LElgerd1", "https://tec.openplanner.team/stops/LWZponh2"], ["https://tec.openplanner.team/stops/H1bu138a", "https://tec.openplanner.team/stops/H1bu139a"], ["https://tec.openplanner.team/stops/N501cpa", "https://tec.openplanner.team/stops/N501cqa"], ["https://tec.openplanner.team/stops/LnIkirc1", "https://tec.openplanner.team/stops/LwYsour4"], ["https://tec.openplanner.team/stops/Lemmeha2", "https://tec.openplanner.team/stops/Lvcreve1"], ["https://tec.openplanner.team/stops/N874afb", "https://tec.openplanner.team/stops/N874ahb"], ["https://tec.openplanner.team/stops/N501bqb", "https://tec.openplanner.team/stops/N501bub"], ["https://tec.openplanner.team/stops/LFOchpl2", "https://tec.openplanner.team/stops/LFOmc--2"], ["https://tec.openplanner.team/stops/H5st164a", "https://tec.openplanner.team/stops/H5st167b"], ["https://tec.openplanner.team/stops/Lagcler1", "https://tec.openplanner.team/stops/Lagpaix2"], ["https://tec.openplanner.team/stops/LSyec--2", "https://tec.openplanner.team/stops/LSygerm2"], ["https://tec.openplanner.team/stops/LLrfont1", "https://tec.openplanner.team/stops/LLrfont2"], ["https://tec.openplanner.team/stops/X342aea", "https://tec.openplanner.team/stops/X342aeb"], ["https://tec.openplanner.team/stops/N505afb", "https://tec.openplanner.team/stops/N505aoa"], ["https://tec.openplanner.team/stops/N548acb", "https://tec.openplanner.team/stops/N548ayb"], ["https://tec.openplanner.team/stops/Cfmgara1", "https://tec.openplanner.team/stops/Csobrou2"], ["https://tec.openplanner.team/stops/X640aaa", "https://tec.openplanner.team/stops/X640acb"], ["https://tec.openplanner.team/stops/Llgbaro2", "https://tec.openplanner.team/stops/Llgglai2"], ["https://tec.openplanner.team/stops/Bnivace2", "https://tec.openplanner.team/stops/Bnivvri2"], ["https://tec.openplanner.team/stops/Lsmgdry2", "https://tec.openplanner.team/stops/Lvedepa*"], ["https://tec.openplanner.team/stops/N134aea", "https://tec.openplanner.team/stops/N134afa"], ["https://tec.openplanner.team/stops/X822aca", "https://tec.openplanner.team/stops/X822acb"], ["https://tec.openplanner.team/stops/NL76aoa", "https://tec.openplanner.team/stops/NL76apa"], ["https://tec.openplanner.team/stops/Brsgter1", "https://tec.openplanner.team/stops/Brsgtou1"], ["https://tec.openplanner.team/stops/N141amc", "https://tec.openplanner.team/stops/N141anb"], ["https://tec.openplanner.team/stops/Bnodblt1", "https://tec.openplanner.team/stops/Boplcsj3"], ["https://tec.openplanner.team/stops/X750baa", "https://tec.openplanner.team/stops/X750bia"], ["https://tec.openplanner.team/stops/X390ajb", "https://tec.openplanner.team/stops/X991aea"], ["https://tec.openplanner.team/stops/Cfmchap1", "https://tec.openplanner.team/stops/Cfmmart1"], ["https://tec.openplanner.team/stops/N118aia", "https://tec.openplanner.team/stops/N155aka"], ["https://tec.openplanner.team/stops/LCxchal2", "https://tec.openplanner.team/stops/LCxreno2"], ["https://tec.openplanner.team/stops/N201aqa", "https://tec.openplanner.team/stops/N211ala"], ["https://tec.openplanner.team/stops/Lemacac2", "https://tec.openplanner.team/stops/Lemmeha1"], ["https://tec.openplanner.team/stops/X659aka", "https://tec.openplanner.team/stops/X659ala"], ["https://tec.openplanner.team/stops/LFslign2", "https://tec.openplanner.team/stops/LFsphar2"], ["https://tec.openplanner.team/stops/LeUbell1", "https://tec.openplanner.team/stops/LeUschu1"], ["https://tec.openplanner.team/stops/LFacruc2", "https://tec.openplanner.team/stops/LVMfoli2"], ["https://tec.openplanner.team/stops/H1gr116b", "https://tec.openplanner.team/stops/H1gr123d"], ["https://tec.openplanner.team/stops/X604aab", "https://tec.openplanner.team/stops/X634aib"], ["https://tec.openplanner.team/stops/LBrmeiz1", "https://tec.openplanner.team/stops/LMici092"], ["https://tec.openplanner.team/stops/N331afc", "https://tec.openplanner.team/stops/N331afd"], ["https://tec.openplanner.team/stops/Bblaniv2", "https://tec.openplanner.team/stops/Bwatmgo3"], ["https://tec.openplanner.team/stops/LFdchau3", "https://tec.openplanner.team/stops/LFdchau4"], ["https://tec.openplanner.team/stops/NL77ala", "https://tec.openplanner.team/stops/NL77ama"], ["https://tec.openplanner.team/stops/LLMcouv1", "https://tec.openplanner.team/stops/LLMjacq1"], ["https://tec.openplanner.team/stops/Llgjonr2", "https://tec.openplanner.team/stops/Llgmair2"], ["https://tec.openplanner.team/stops/Ctubpos4", "https://tec.openplanner.team/stops/Ctuyser2"], ["https://tec.openplanner.team/stops/N501cob", "https://tec.openplanner.team/stops/N501csa"], ["https://tec.openplanner.team/stops/Lvegc--4", "https://tec.openplanner.team/stops/Lveharm2"], ["https://tec.openplanner.team/stops/Bgemcro2", "https://tec.openplanner.team/stops/Bgemgjo1"], ["https://tec.openplanner.team/stops/Bllnmet1", "https://tec.openplanner.team/stops/Bllnpaf4"], ["https://tec.openplanner.team/stops/LWAperv1", "https://tec.openplanner.team/stops/LWApt--1"], ["https://tec.openplanner.team/stops/Bmaregl2", "https://tec.openplanner.team/stops/Btilmar2"], ["https://tec.openplanner.team/stops/Lmofays2", "https://tec.openplanner.team/stops/Lmolama2"], ["https://tec.openplanner.team/stops/Cmlgoff1", "https://tec.openplanner.team/stops/Cmlvitf2"], ["https://tec.openplanner.team/stops/N530afa", "https://tec.openplanner.team/stops/N530aia"], ["https://tec.openplanner.team/stops/LgHdorf1", "https://tec.openplanner.team/stops/LsVbs--*"], ["https://tec.openplanner.team/stops/N153aab", "https://tec.openplanner.team/stops/N153aca"], ["https://tec.openplanner.team/stops/H4tu171b", "https://tec.openplanner.team/stops/H4wp148a"], ["https://tec.openplanner.team/stops/X658ada", "https://tec.openplanner.team/stops/X658afb"], ["https://tec.openplanner.team/stops/Lsmberg2", "https://tec.openplanner.team/stops/Lsmtini1"], ["https://tec.openplanner.team/stops/LTicent2", "https://tec.openplanner.team/stops/LTieg--1"], ["https://tec.openplanner.team/stops/LBRpier2", "https://tec.openplanner.team/stops/LBRruel1"], ["https://tec.openplanner.team/stops/Cgzmarb1", "https://tec.openplanner.team/stops/Cgzvivi2"], ["https://tec.openplanner.team/stops/N513aaa", "https://tec.openplanner.team/stops/N513aab"], ["https://tec.openplanner.team/stops/Bgrmfga1", "https://tec.openplanner.team/stops/Bgrmfon1"], ["https://tec.openplanner.team/stops/N120aeb", "https://tec.openplanner.team/stops/N120aha"], ["https://tec.openplanner.team/stops/H3th134a", "https://tec.openplanner.team/stops/H3th135c"], ["https://tec.openplanner.team/stops/N524ada", "https://tec.openplanner.team/stops/N524ama"], ["https://tec.openplanner.team/stops/X371aga", "https://tec.openplanner.team/stops/X371agb"], ["https://tec.openplanner.team/stops/LoEauto2", "https://tec.openplanner.team/stops/LrDhund2"], ["https://tec.openplanner.team/stops/N519apa", "https://tec.openplanner.team/stops/N520aia"], ["https://tec.openplanner.team/stops/X608aia", "https://tec.openplanner.team/stops/X627aba"], ["https://tec.openplanner.team/stops/H5at128b", "https://tec.openplanner.team/stops/H5ma186a"], ["https://tec.openplanner.team/stops/Lveharm2", "https://tec.openplanner.team/stops/Lvehodi1"], ["https://tec.openplanner.team/stops/Bramcar2", "https://tec.openplanner.team/stops/Bramrdf1"], ["https://tec.openplanner.team/stops/N152abd", "https://tec.openplanner.team/stops/N152abe"], ["https://tec.openplanner.team/stops/Lvesomm1", "https://tec.openplanner.team/stops/Lvesomm2"], ["https://tec.openplanner.team/stops/X768ada", "https://tec.openplanner.team/stops/X768aed"], ["https://tec.openplanner.team/stops/Cpljonc1", "https://tec.openplanner.team/stops/Cplrymo1"], ["https://tec.openplanner.team/stops/LbUkrin2", "https://tec.openplanner.team/stops/LrOtria2"], ["https://tec.openplanner.team/stops/X620ada", "https://tec.openplanner.team/stops/X621aaa"], ["https://tec.openplanner.team/stops/N534blg", "https://tec.openplanner.team/stops/N534blh"], ["https://tec.openplanner.team/stops/Ltiecch2", "https://tec.openplanner.team/stops/Ltinico1"], ["https://tec.openplanner.team/stops/X902bcb", "https://tec.openplanner.team/stops/X999alb"], ["https://tec.openplanner.team/stops/Lchec--1", "https://tec.openplanner.team/stops/Lchec--2"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/Crcfdom2"], ["https://tec.openplanner.team/stops/H1mm121a", "https://tec.openplanner.team/stops/H1mm122c"], ["https://tec.openplanner.team/stops/LCsbors1", "https://tec.openplanner.team/stops/LCsraws1"], ["https://tec.openplanner.team/stops/Lanfont1", "https://tec.openplanner.team/stops/Lglsana1"], ["https://tec.openplanner.team/stops/N118ada", "https://tec.openplanner.team/stops/N155aib"], ["https://tec.openplanner.team/stops/Lvehauz2", "https://tec.openplanner.team/stops/Lveherl1"], ["https://tec.openplanner.team/stops/X888afa", "https://tec.openplanner.team/stops/X888afb"], ["https://tec.openplanner.team/stops/X601avb", "https://tec.openplanner.team/stops/X601cxa"], ["https://tec.openplanner.team/stops/LJAsuri2", "https://tec.openplanner.team/stops/LSUhage2"], ["https://tec.openplanner.team/stops/Cvlpeau1", "https://tec.openplanner.team/stops/NH21acb"], ["https://tec.openplanner.team/stops/LeUclou1", "https://tec.openplanner.team/stops/LeUmeye1"], ["https://tec.openplanner.team/stops/LHhelia1", "https://tec.openplanner.team/stops/LHhvivi2"], ["https://tec.openplanner.team/stops/LJUmc--2", "https://tec.openplanner.team/stops/LVSslin4"], ["https://tec.openplanner.team/stops/Cmlbuis3", "https://tec.openplanner.team/stops/Cmlbulp3"], ["https://tec.openplanner.team/stops/X901ana", "https://tec.openplanner.team/stops/X901bqa"], ["https://tec.openplanner.team/stops/N509bea", "https://tec.openplanner.team/stops/N509bfa"], ["https://tec.openplanner.team/stops/X818abb", "https://tec.openplanner.team/stops/X818aca"], ["https://tec.openplanner.team/stops/H5bl142a", "https://tec.openplanner.team/stops/H5bl142b"], ["https://tec.openplanner.team/stops/N118avc", "https://tec.openplanner.team/stops/N118avd"], ["https://tec.openplanner.team/stops/X982aea", "https://tec.openplanner.team/stops/X982aeb"], ["https://tec.openplanner.team/stops/H4ln129a", "https://tec.openplanner.team/stops/H4ln129b"], ["https://tec.openplanner.team/stops/LSkathe1", "https://tec.openplanner.team/stops/LSkathe2"], ["https://tec.openplanner.team/stops/N501ctb", "https://tec.openplanner.team/stops/N535apb"], ["https://tec.openplanner.team/stops/H1ci104b", "https://tec.openplanner.team/stops/H1ci105b"], ["https://tec.openplanner.team/stops/X636aib", "https://tec.openplanner.team/stops/X636ajb"], ["https://tec.openplanner.team/stops/X318aca", "https://tec.openplanner.team/stops/X364acb"], ["https://tec.openplanner.team/stops/H1mg108b", "https://tec.openplanner.team/stops/H1mg109a"], ["https://tec.openplanner.team/stops/Bbsicea2", "https://tec.openplanner.team/stops/Bbsigaz1"], ["https://tec.openplanner.team/stops/H5bs104a", "https://tec.openplanner.team/stops/H5bs104b"], ["https://tec.openplanner.team/stops/Llgbois1", "https://tec.openplanner.team/stops/Llgbois2"], ["https://tec.openplanner.team/stops/H2sb225b", "https://tec.openplanner.team/stops/H2sb227b"], ["https://tec.openplanner.team/stops/Cbetrie1", "https://tec.openplanner.team/stops/Ccspla"], ["https://tec.openplanner.team/stops/X992aga", "https://tec.openplanner.team/stops/X992aia"], ["https://tec.openplanner.team/stops/X715aca", "https://tec.openplanner.team/stops/X715acb"], ["https://tec.openplanner.team/stops/H1sg148b", "https://tec.openplanner.team/stops/H1sg150c"], ["https://tec.openplanner.team/stops/X793aaa", "https://tec.openplanner.team/stops/X793aab"], ["https://tec.openplanner.team/stops/Clcfall2", "https://tec.openplanner.team/stops/Clcfall3"], ["https://tec.openplanner.team/stops/LHGbeur4", "https://tec.openplanner.team/stops/LXhvina1"], ["https://tec.openplanner.team/stops/Bhandub1", "https://tec.openplanner.team/stops/Bhanmou2"], ["https://tec.openplanner.team/stops/X748afa", "https://tec.openplanner.team/stops/X769aca"], ["https://tec.openplanner.team/stops/H2hg152a", "https://tec.openplanner.team/stops/H2hg157b"], ["https://tec.openplanner.team/stops/H4my123b", "https://tec.openplanner.team/stops/H4vz369b"], ["https://tec.openplanner.team/stops/N102aca", "https://tec.openplanner.team/stops/N103aha"], ["https://tec.openplanner.team/stops/H4li179a", "https://tec.openplanner.team/stops/H4li179b"], ["https://tec.openplanner.team/stops/Csrcant1", "https://tec.openplanner.team/stops/Cvtvois1"], ["https://tec.openplanner.team/stops/LMOeg--1", "https://tec.openplanner.team/stops/LMOelva2"], ["https://tec.openplanner.team/stops/N534bra", "https://tec.openplanner.team/stops/N534bsa"], ["https://tec.openplanner.team/stops/LBkgrae1", "https://tec.openplanner.team/stops/LBkjenn1"], ["https://tec.openplanner.team/stops/N543cha", "https://tec.openplanner.team/stops/N543cia"], ["https://tec.openplanner.team/stops/Cctsncb1", "https://tec.openplanner.team/stops/Cctsncb3"], ["https://tec.openplanner.team/stops/N543aza", "https://tec.openplanner.team/stops/N543azb"], ["https://tec.openplanner.team/stops/X618aea", "https://tec.openplanner.team/stops/X618afa"], ["https://tec.openplanner.team/stops/LBNvill2", "https://tec.openplanner.team/stops/LBNvill6"], ["https://tec.openplanner.team/stops/Buccpes1", "https://tec.openplanner.team/stops/Buccpin1"], ["https://tec.openplanner.team/stops/Cciferr2", "https://tec.openplanner.team/stops/Ccipano1"], ["https://tec.openplanner.team/stops/Bglibui1", "https://tec.openplanner.team/stops/Bjdsjso1"], ["https://tec.openplanner.team/stops/Cbicamp2", "https://tec.openplanner.team/stops/Ctupont4"], ["https://tec.openplanner.team/stops/Lvisere1", "https://tec.openplanner.team/stops/Lviweri2"], ["https://tec.openplanner.team/stops/H4bo120b", "https://tec.openplanner.team/stops/H4bo122b"], ["https://tec.openplanner.team/stops/X876afa", "https://tec.openplanner.team/stops/X877adb"], ["https://tec.openplanner.team/stops/X812aga", "https://tec.openplanner.team/stops/X812agb"], ["https://tec.openplanner.team/stops/H2mo120b", "https://tec.openplanner.team/stops/H2mo138c"], ["https://tec.openplanner.team/stops/Cvscomb1", "https://tec.openplanner.team/stops/N530aab"], ["https://tec.openplanner.team/stops/LhLdorf1", "https://tec.openplanner.team/stops/LhLdorf2"], ["https://tec.openplanner.team/stops/LeYauto2", "https://tec.openplanner.team/stops/LhSbruc1"], ["https://tec.openplanner.team/stops/Bbst4br2", "https://tec.openplanner.team/stops/Cbtgemi2"], ["https://tec.openplanner.team/stops/X982aqa", "https://tec.openplanner.team/stops/X982aqb"], ["https://tec.openplanner.team/stops/Bwbfbon1", "https://tec.openplanner.team/stops/Bwbfckr1"], ["https://tec.openplanner.team/stops/NC14abb", "https://tec.openplanner.team/stops/NC44aha"], ["https://tec.openplanner.team/stops/LSktinc1", "https://tec.openplanner.team/stops/LSktinc2"], ["https://tec.openplanner.team/stops/X806aja", "https://tec.openplanner.team/stops/X807aaa"], ["https://tec.openplanner.team/stops/LPLc65-2", "https://tec.openplanner.team/stops/LPLline2"], ["https://tec.openplanner.team/stops/H5wo124a", "https://tec.openplanner.team/stops/H5wo133a"], ["https://tec.openplanner.team/stops/N242aeb", "https://tec.openplanner.team/stops/N243aab"], ["https://tec.openplanner.team/stops/Loubour1", "https://tec.openplanner.team/stops/Louhauf2"], ["https://tec.openplanner.team/stops/H1ca109a", "https://tec.openplanner.team/stops/H1ca109b"], ["https://tec.openplanner.team/stops/X609ahb", "https://tec.openplanner.team/stops/X610aba"], ["https://tec.openplanner.team/stops/H1ms263a", "https://tec.openplanner.team/stops/H1ms275b"], ["https://tec.openplanner.team/stops/Llmdela2", "https://tec.openplanner.team/stops/Lpecroi1"], ["https://tec.openplanner.team/stops/Canchbr1", "https://tec.openplanner.team/stops/Canstat2"], ["https://tec.openplanner.team/stops/H4an111b", "https://tec.openplanner.team/stops/H4rs119a"], ["https://tec.openplanner.team/stops/H4tu172a", "https://tec.openplanner.team/stops/H4tu172c"], ["https://tec.openplanner.team/stops/Canboha1", "https://tec.openplanner.team/stops/Canh1941"], ["https://tec.openplanner.team/stops/Cna6che1", "https://tec.openplanner.team/stops/Cnapetr1"], ["https://tec.openplanner.team/stops/LSHhade1", "https://tec.openplanner.team/stops/LSHneuv2"], ["https://tec.openplanner.team/stops/LGreg--1", "https://tec.openplanner.team/stops/LGrfont1"], ["https://tec.openplanner.team/stops/LvAwere1", "https://tec.openplanner.team/stops/LwEdorf1"], ["https://tec.openplanner.team/stops/X314aaa", "https://tec.openplanner.team/stops/X813adb"], ["https://tec.openplanner.team/stops/LGEwalk2", "https://tec.openplanner.team/stops/LLStrid3"], ["https://tec.openplanner.team/stops/NL77aib", "https://tec.openplanner.team/stops/NL77ajb"], ["https://tec.openplanner.team/stops/LrAbotz1", "https://tec.openplanner.team/stops/LrAiter1"], ["https://tec.openplanner.team/stops/LEnvill2", "https://tec.openplanner.team/stops/NL73abb"], ["https://tec.openplanner.team/stops/Brixcro1", "https://tec.openplanner.team/stops/Brixpao3"], ["https://tec.openplanner.team/stops/LHTboul2", "https://tec.openplanner.team/stops/LHTmoul1"], ["https://tec.openplanner.team/stops/LlgLAMB5", "https://tec.openplanner.team/stops/LlgR-Fr*"], ["https://tec.openplanner.team/stops/Loubonc2", "https://tec.openplanner.team/stops/Loucent1"], ["https://tec.openplanner.team/stops/X919aba", "https://tec.openplanner.team/stops/X919abb"], ["https://tec.openplanner.team/stops/LBIrout1", "https://tec.openplanner.team/stops/LFOchpl2"], ["https://tec.openplanner.team/stops/X757acb", "https://tec.openplanner.team/stops/X758aga"], ["https://tec.openplanner.team/stops/X928aaa", "https://tec.openplanner.team/stops/X945adb"], ["https://tec.openplanner.team/stops/H1ho125b", "https://tec.openplanner.team/stops/H1ho125c"], ["https://tec.openplanner.team/stops/Ccybouc3", "https://tec.openplanner.team/stops/NH01aea"], ["https://tec.openplanner.team/stops/LBRtrag2", "https://tec.openplanner.team/stops/LTOplac1"], ["https://tec.openplanner.team/stops/Cnagrro2", "https://tec.openplanner.team/stops/Cnaplha2"], ["https://tec.openplanner.team/stops/Bhmmsca1", "https://tec.openplanner.team/stops/Btlgmar1"], ["https://tec.openplanner.team/stops/Bitrcen2", "https://tec.openplanner.team/stops/Bitregl2"], ["https://tec.openplanner.team/stops/N501gia", "https://tec.openplanner.team/stops/N501giz"], ["https://tec.openplanner.team/stops/Bwatdco1", "https://tec.openplanner.team/stops/Bwatfia1"], ["https://tec.openplanner.team/stops/Bvirvol1", "https://tec.openplanner.team/stops/Bvirvol2"], ["https://tec.openplanner.team/stops/Cfrmonu1", "https://tec.openplanner.team/stops/Cfrmonu2"], ["https://tec.openplanner.team/stops/LWDbure2", "https://tec.openplanner.team/stops/LWDchpl2"], ["https://tec.openplanner.team/stops/Lvehv--4", "https://tec.openplanner.team/stops/Lvepala7"], ["https://tec.openplanner.team/stops/LkEkirc2", "https://tec.openplanner.team/stops/LkEsada1"], ["https://tec.openplanner.team/stops/N584apa", "https://tec.openplanner.team/stops/N584apb"], ["https://tec.openplanner.team/stops/Loucoti1", "https://tec.openplanner.team/stops/Loutroi1"], ["https://tec.openplanner.team/stops/X805ajb", "https://tec.openplanner.team/stops/X833aca"], ["https://tec.openplanner.team/stops/N141aba", "https://tec.openplanner.team/stops/N141abb"], ["https://tec.openplanner.team/stops/H4ty382b", "https://tec.openplanner.team/stops/H4ty383a"], ["https://tec.openplanner.team/stops/X601aib", "https://tec.openplanner.team/stops/X601ama"], ["https://tec.openplanner.team/stops/H1ht126a", "https://tec.openplanner.team/stops/H1ht131a"], ["https://tec.openplanner.team/stops/N501cra", "https://tec.openplanner.team/stops/N501crc"], ["https://tec.openplanner.team/stops/LREheyd2", "https://tec.openplanner.team/stops/LREsp901"], ["https://tec.openplanner.team/stops/X811aob", "https://tec.openplanner.team/stops/X812aya"], ["https://tec.openplanner.team/stops/LVIhall1", "https://tec.openplanner.team/stops/LVIjacq1"], ["https://tec.openplanner.team/stops/H4bw102a", "https://tec.openplanner.team/stops/H4wn131a"], ["https://tec.openplanner.team/stops/N149ahb", "https://tec.openplanner.team/stops/N149ahc"], ["https://tec.openplanner.team/stops/Ccupdes2", "https://tec.openplanner.team/stops/Ccupomp1"], ["https://tec.openplanner.team/stops/Bbosgar2", "https://tec.openplanner.team/stops/Bhoealt1"], ["https://tec.openplanner.team/stops/Cli4bra2", "https://tec.openplanner.team/stops/Cliegli1"], ["https://tec.openplanner.team/stops/H1hr116b", "https://tec.openplanner.team/stops/H1hr129a"], ["https://tec.openplanner.team/stops/Lfhchaf*", "https://tec.openplanner.team/stops/Lfhchaf3"], ["https://tec.openplanner.team/stops/LmAkirc1", "https://tec.openplanner.team/stops/X792abb"], ["https://tec.openplanner.team/stops/N534aeb", "https://tec.openplanner.team/stops/N553aoa"], ["https://tec.openplanner.team/stops/Bsgipmo2", "https://tec.openplanner.team/stops/Buccdch2"], ["https://tec.openplanner.team/stops/LBafagn1", "https://tec.openplanner.team/stops/LBafagn2"], ["https://tec.openplanner.team/stops/H4ty301b", "https://tec.openplanner.team/stops/H4ty301c"], ["https://tec.openplanner.team/stops/X601cta", "https://tec.openplanner.team/stops/X662aha"], ["https://tec.openplanner.team/stops/LFFchab1", "https://tec.openplanner.team/stops/LVLf10-2"], ["https://tec.openplanner.team/stops/Cvlcalv2", "https://tec.openplanner.team/stops/Cvlpeau2"], ["https://tec.openplanner.team/stops/X663atb", "https://tec.openplanner.team/stops/X663ayb"], ["https://tec.openplanner.team/stops/LAMdelh*", "https://tec.openplanner.team/stops/LAMhopi1"], ["https://tec.openplanner.team/stops/H4mo146a", "https://tec.openplanner.team/stops/H4mo146b"], ["https://tec.openplanner.team/stops/Crowilb1", "https://tec.openplanner.team/stops/Crowilb2"], ["https://tec.openplanner.team/stops/Lhrathe*", "https://tec.openplanner.team/stops/Lhrhome2"], ["https://tec.openplanner.team/stops/N501hab", "https://tec.openplanner.team/stops/N501ihz"], ["https://tec.openplanner.team/stops/LeYvoge2", "https://tec.openplanner.team/stops/LrAbe602"], ["https://tec.openplanner.team/stops/H2ec103a", "https://tec.openplanner.team/stops/H2ec110b"], ["https://tec.openplanner.team/stops/LLxconj1", "https://tec.openplanner.team/stops/LLxmonu1"], ["https://tec.openplanner.team/stops/X907agb", "https://tec.openplanner.team/stops/X908aqa"], ["https://tec.openplanner.team/stops/N222ayb", "https://tec.openplanner.team/stops/X222azb"], ["https://tec.openplanner.team/stops/X754acb", "https://tec.openplanner.team/stops/X754adb"], ["https://tec.openplanner.team/stops/Lanlona1", "https://tec.openplanner.team/stops/Lanlona2"], ["https://tec.openplanner.team/stops/Lstchu-1", "https://tec.openplanner.team/stops/Lstchu-2"], ["https://tec.openplanner.team/stops/LbUwhon1", "https://tec.openplanner.team/stops/LbUwhon2"], ["https://tec.openplanner.team/stops/X746ahb", "https://tec.openplanner.team/stops/X746ahc"], ["https://tec.openplanner.team/stops/LnDkreu1", "https://tec.openplanner.team/stops/LwSgeme1"], ["https://tec.openplanner.team/stops/H5rx106b", "https://tec.openplanner.team/stops/H5rx130a"], ["https://tec.openplanner.team/stops/H4ch113a", "https://tec.openplanner.team/stops/H4ch120a"], ["https://tec.openplanner.team/stops/N512alb", "https://tec.openplanner.team/stops/N512ama"], ["https://tec.openplanner.team/stops/Cmaleri1", "https://tec.openplanner.team/stops/Cmazsnc1"], ["https://tec.openplanner.team/stops/LRemonu1", "https://tec.openplanner.team/stops/LRemonu2"], ["https://tec.openplanner.team/stops/Cnaplha1", "https://tec.openplanner.team/stops/Cnaplha4"], ["https://tec.openplanner.team/stops/N501grg", "https://tec.openplanner.team/stops/N501mha"], ["https://tec.openplanner.team/stops/NC14aca", "https://tec.openplanner.team/stops/NC44adb"], ["https://tec.openplanner.team/stops/N501lxb", "https://tec.openplanner.team/stops/N501mfa"], ["https://tec.openplanner.team/stops/Lrafusi1", "https://tec.openplanner.team/stops/LSAvieu2"], ["https://tec.openplanner.team/stops/LHXmonu1", "https://tec.openplanner.team/stops/LHXn47-3"], ["https://tec.openplanner.team/stops/H1mv240a", "https://tec.openplanner.team/stops/H1mv240b"], ["https://tec.openplanner.team/stops/X608aia", "https://tec.openplanner.team/stops/X609aba"], ["https://tec.openplanner.team/stops/Lgrchar2", "https://tec.openplanner.team/stops/Lgrcoll2"], ["https://tec.openplanner.team/stops/N135avb", "https://tec.openplanner.team/stops/N135bbb"], ["https://tec.openplanner.team/stops/H4ss153a", "https://tec.openplanner.team/stops/H4ss158b"], ["https://tec.openplanner.team/stops/X921ana", "https://tec.openplanner.team/stops/X922afa"], ["https://tec.openplanner.team/stops/H4lz162b", "https://tec.openplanner.team/stops/H4lz163a"], ["https://tec.openplanner.team/stops/LSNgerm1", "https://tec.openplanner.team/stops/LSNgerm2"], ["https://tec.openplanner.team/stops/N548agd", "https://tec.openplanner.team/stops/N569anb"], ["https://tec.openplanner.team/stops/Brsgfbl1", "https://tec.openplanner.team/stops/Brsggol1"], ["https://tec.openplanner.team/stops/N106ajb", "https://tec.openplanner.team/stops/N106ara"], ["https://tec.openplanner.team/stops/X743abb", "https://tec.openplanner.team/stops/X756aaa"], ["https://tec.openplanner.team/stops/X602aqb", "https://tec.openplanner.team/stops/X602arb"], ["https://tec.openplanner.team/stops/H4ta119b", "https://tec.openplanner.team/stops/H4ta135b"], ["https://tec.openplanner.team/stops/H4ba102a", "https://tec.openplanner.team/stops/H4ga151a"], ["https://tec.openplanner.team/stops/Bthsvil1", "https://tec.openplanner.team/stops/Bthsvil2"], ["https://tec.openplanner.team/stops/X825aaa", "https://tec.openplanner.team/stops/X825aab"], ["https://tec.openplanner.team/stops/X222ala", "https://tec.openplanner.team/stops/X222azb"], ["https://tec.openplanner.team/stops/H1te182a", "https://tec.openplanner.team/stops/H1te183a"], ["https://tec.openplanner.team/stops/X940aea", "https://tec.openplanner.team/stops/X940aeb"], ["https://tec.openplanner.team/stops/X359aba", "https://tec.openplanner.team/stops/X359acb"], ["https://tec.openplanner.team/stops/Lalwaro1", "https://tec.openplanner.team/stops/Lalwaro2"], ["https://tec.openplanner.team/stops/X758adb", "https://tec.openplanner.team/stops/X758aha"], ["https://tec.openplanner.team/stops/N521aib", "https://tec.openplanner.team/stops/N521aic"], ["https://tec.openplanner.team/stops/H5pe129b", "https://tec.openplanner.team/stops/H5pe132a"], ["https://tec.openplanner.team/stops/LXoharz4", "https://tec.openplanner.team/stops/LXoharz5"], ["https://tec.openplanner.team/stops/Lsedese1", "https://tec.openplanner.team/stops/Lsepcha1"], ["https://tec.openplanner.team/stops/Cvpcdec2", "https://tec.openplanner.team/stops/Cvppost2"], ["https://tec.openplanner.team/stops/Lsteg--1", "https://tec.openplanner.team/stops/Lsteg--2"], ["https://tec.openplanner.team/stops/N501dob", "https://tec.openplanner.team/stops/N501dra"], ["https://tec.openplanner.team/stops/LDAalbe1", "https://tec.openplanner.team/stops/LTreg--1"], ["https://tec.openplanner.team/stops/N243acb", "https://tec.openplanner.team/stops/N243aea"], ["https://tec.openplanner.team/stops/Boplcsj2", "https://tec.openplanner.team/stops/Bpienod1"], ["https://tec.openplanner.team/stops/N513awb", "https://tec.openplanner.team/stops/N521afb"], ["https://tec.openplanner.team/stops/X793afb", "https://tec.openplanner.team/stops/X793aqa"], ["https://tec.openplanner.team/stops/Lrcvinc2", "https://tec.openplanner.team/stops/Lvoec--1"], ["https://tec.openplanner.team/stops/N338aaa", "https://tec.openplanner.team/stops/N338aab"], ["https://tec.openplanner.team/stops/Lsebegu1", "https://tec.openplanner.team/stops/Lsetrav2"], ["https://tec.openplanner.team/stops/X638abb", "https://tec.openplanner.team/stops/X638acb"], ["https://tec.openplanner.team/stops/X801cba", "https://tec.openplanner.team/stops/X801cda"], ["https://tec.openplanner.team/stops/H4mo132a", "https://tec.openplanner.team/stops/H4mo157a"], ["https://tec.openplanner.team/stops/X663ama", "https://tec.openplanner.team/stops/X663aoa"], ["https://tec.openplanner.team/stops/LSemc--2", "https://tec.openplanner.team/stops/LVbpave2"], ["https://tec.openplanner.team/stops/H4au143b", "https://tec.openplanner.team/stops/H4og207b"], ["https://tec.openplanner.team/stops/N106acb", "https://tec.openplanner.team/stops/N137aab"], ["https://tec.openplanner.team/stops/Cgysole1", "https://tec.openplanner.team/stops/Cgysole2"], ["https://tec.openplanner.team/stops/LESgran1", "https://tec.openplanner.team/stops/LEShony1"], ["https://tec.openplanner.team/stops/H1ag104b", "https://tec.openplanner.team/stops/H1on128d"], ["https://tec.openplanner.team/stops/H4es117a", "https://tec.openplanner.team/stops/H4ln127a"], ["https://tec.openplanner.team/stops/LARgare1", "https://tec.openplanner.team/stops/Lchorme1"], ["https://tec.openplanner.team/stops/X985aea", "https://tec.openplanner.team/stops/X985aeb"], ["https://tec.openplanner.team/stops/X739aea", "https://tec.openplanner.team/stops/X779ada"], ["https://tec.openplanner.team/stops/X850ajb", "https://tec.openplanner.team/stops/X850akb"], ["https://tec.openplanner.team/stops/H4ga163b", "https://tec.openplanner.team/stops/H4ha167b"], ["https://tec.openplanner.team/stops/X886aha", "https://tec.openplanner.team/stops/X886ahb"], ["https://tec.openplanner.team/stops/H1fy118a", "https://tec.openplanner.team/stops/H1mr123b"], ["https://tec.openplanner.team/stops/LSGec--1", "https://tec.openplanner.team/stops/LSGec--2"], ["https://tec.openplanner.team/stops/Bmargve1", "https://tec.openplanner.team/stops/Bmarmpr1"], ["https://tec.openplanner.team/stops/Lan14ve2", "https://tec.openplanner.team/stops/Lanclon2"], ["https://tec.openplanner.team/stops/LSeec--3", "https://tec.openplanner.team/stops/LSerout2"], ["https://tec.openplanner.team/stops/LTIdonn1", "https://tec.openplanner.team/stops/LTIdonn2"], ["https://tec.openplanner.team/stops/LWDbure2", "https://tec.openplanner.team/stops/LWDsieg1"], ["https://tec.openplanner.team/stops/N501dpa", "https://tec.openplanner.team/stops/N501erb"], ["https://tec.openplanner.team/stops/LFochap2", "https://tec.openplanner.team/stops/LGOmonu1"], ["https://tec.openplanner.team/stops/H4ho119b", "https://tec.openplanner.team/stops/H4pl111b"], ["https://tec.openplanner.team/stops/X768ajb", "https://tec.openplanner.team/stops/X768akb"], ["https://tec.openplanner.team/stops/N501fla", "https://tec.openplanner.team/stops/N501fmb"], ["https://tec.openplanner.team/stops/H1cv104b", "https://tec.openplanner.team/stops/H1to152a"], ["https://tec.openplanner.team/stops/H4ce105a", "https://tec.openplanner.team/stops/H4ce106a"], ["https://tec.openplanner.team/stops/X992aca", "https://tec.openplanner.team/stops/X992aia"], ["https://tec.openplanner.team/stops/LLegare2", "https://tec.openplanner.team/stops/X547aeb"], ["https://tec.openplanner.team/stops/Lhrlico1", "https://tec.openplanner.team/stops/Lhrlico2"], ["https://tec.openplanner.team/stops/X716aaa", "https://tec.openplanner.team/stops/X716aab"], ["https://tec.openplanner.team/stops/X548aaa", "https://tec.openplanner.team/stops/X548aab"], ["https://tec.openplanner.team/stops/N564aba", "https://tec.openplanner.team/stops/N564abb"], ["https://tec.openplanner.team/stops/Cjutrou1", "https://tec.openplanner.team/stops/Cjutrou3"], ["https://tec.openplanner.team/stops/H4rm111a", "https://tec.openplanner.team/stops/H4rm112b"], ["https://tec.openplanner.team/stops/Bniltri1", "https://tec.openplanner.team/stops/Bwspbbo1"], ["https://tec.openplanner.team/stops/Bcbqcht1", "https://tec.openplanner.team/stops/Btubois2"], ["https://tec.openplanner.team/stops/LBNruns2", "https://tec.openplanner.team/stops/LBNvill6"], ["https://tec.openplanner.team/stops/Lancoop1", "https://tec.openplanner.team/stops/Lanstat1"], ["https://tec.openplanner.team/stops/Bettgle1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/H4oq228a", "https://tec.openplanner.team/stops/H4oq228b"], ["https://tec.openplanner.team/stops/H1ob328b", "https://tec.openplanner.team/stops/H1sd342a"], ["https://tec.openplanner.team/stops/Bblagar5", "https://tec.openplanner.team/stops/Bblagard"], ["https://tec.openplanner.team/stops/X729aca", "https://tec.openplanner.team/stops/X748afa"], ["https://tec.openplanner.team/stops/X993aib", "https://tec.openplanner.team/stops/X994aja"], ["https://tec.openplanner.team/stops/LTHec--2", "https://tec.openplanner.team/stops/LTHwaux2"], ["https://tec.openplanner.team/stops/LAVstat2", "https://tec.openplanner.team/stops/LVPduvi1"], ["https://tec.openplanner.team/stops/LLrelec1", "https://tec.openplanner.team/stops/LLrhest1"], ["https://tec.openplanner.team/stops/Bchgbel1", "https://tec.openplanner.team/stops/Bchgegl1"], ["https://tec.openplanner.team/stops/N202aab", "https://tec.openplanner.team/stops/N202afa"], ["https://tec.openplanner.team/stops/Llgdelc2", "https://tec.openplanner.team/stops/Lsnlibe2"], ["https://tec.openplanner.team/stops/LSygerm1", "https://tec.openplanner.team/stops/LSygerm2"], ["https://tec.openplanner.team/stops/Bbgeegl1", "https://tec.openplanner.team/stops/Bbgeegl2"], ["https://tec.openplanner.team/stops/Lougros1", "https://tec.openplanner.team/stops/Loujouh1"], ["https://tec.openplanner.team/stops/H3so178a", "https://tec.openplanner.team/stops/H3so178b"], ["https://tec.openplanner.team/stops/LSythie1", "https://tec.openplanner.team/stops/LWZbeem1"], ["https://tec.openplanner.team/stops/X804ada", "https://tec.openplanner.team/stops/X804azb"], ["https://tec.openplanner.team/stops/Brsrabe2", "https://tec.openplanner.team/stops/Brsrfen1"], ["https://tec.openplanner.team/stops/H4ma399a", "https://tec.openplanner.team/stops/H4ma400a"], ["https://tec.openplanner.team/stops/H1po139b", "https://tec.openplanner.team/stops/H5st168b"], ["https://tec.openplanner.team/stops/Bsmgegl1", "https://tec.openplanner.team/stops/Bsmgres1"], ["https://tec.openplanner.team/stops/X985aha", "https://tec.openplanner.team/stops/X985ahb"], ["https://tec.openplanner.team/stops/H1ms268a", "https://tec.openplanner.team/stops/H1ms269a"], ["https://tec.openplanner.team/stops/N528aia", "https://tec.openplanner.team/stops/N528akb"], ["https://tec.openplanner.team/stops/Cfanvmo1", "https://tec.openplanner.team/stops/Cpibois2"], ["https://tec.openplanner.team/stops/H1ha183a", "https://tec.openplanner.team/stops/H1ha200a"], ["https://tec.openplanner.team/stops/Lvebiol1", "https://tec.openplanner.team/stops/Lvesomm3"], ["https://tec.openplanner.team/stops/N503afb", "https://tec.openplanner.team/stops/N503agb"], ["https://tec.openplanner.team/stops/X664akb", "https://tec.openplanner.team/stops/X664alb"], ["https://tec.openplanner.team/stops/H2bh119b", "https://tec.openplanner.team/stops/H2lc172a"], ["https://tec.openplanner.team/stops/LGEpt--2", "https://tec.openplanner.team/stops/LGEvill2"], ["https://tec.openplanner.team/stops/LhPhale2", "https://tec.openplanner.team/stops/LhPkirc2"], ["https://tec.openplanner.team/stops/N131aga", "https://tec.openplanner.team/stops/N131agb"], ["https://tec.openplanner.team/stops/Bmelegl1", "https://tec.openplanner.team/stops/Btilsce1"], ["https://tec.openplanner.team/stops/Caindsa2", "https://tec.openplanner.team/stops/Caistro1"], ["https://tec.openplanner.team/stops/X663ajb", "https://tec.openplanner.team/stops/X663akb"], ["https://tec.openplanner.team/stops/Cblcent1", "https://tec.openplanner.team/stops/Cslbarb1"], ["https://tec.openplanner.team/stops/N501kwb", "https://tec.openplanner.team/stops/N501lwa"], ["https://tec.openplanner.team/stops/Lligare*", "https://tec.openplanner.team/stops/Llivina1"], ["https://tec.openplanner.team/stops/X753aba", "https://tec.openplanner.team/stops/X753acb"], ["https://tec.openplanner.team/stops/X739ahb", "https://tec.openplanner.team/stops/X739aja"], ["https://tec.openplanner.team/stops/N234aca", "https://tec.openplanner.team/stops/N549aib"], ["https://tec.openplanner.team/stops/X876acb", "https://tec.openplanner.team/stops/X877adb"], ["https://tec.openplanner.team/stops/LVtespo2", "https://tec.openplanner.team/stops/LVthest4"], ["https://tec.openplanner.team/stops/N215aba", "https://tec.openplanner.team/stops/N215acc"], ["https://tec.openplanner.team/stops/N357aba", "https://tec.openplanner.team/stops/N357aeb"], ["https://tec.openplanner.team/stops/H4ty340b", "https://tec.openplanner.team/stops/H4ty384a"], ["https://tec.openplanner.team/stops/Bblaall1", "https://tec.openplanner.team/stops/Bblagar9"], ["https://tec.openplanner.team/stops/Bbchndb2", "https://tec.openplanner.team/stops/Bitrcha2"], ["https://tec.openplanner.team/stops/Crebrux2", "https://tec.openplanner.team/stops/Crerevi2"], ["https://tec.openplanner.team/stops/X739afb", "https://tec.openplanner.team/stops/X739agb"], ["https://tec.openplanner.team/stops/H1ha196a", "https://tec.openplanner.team/stops/H1ha196b"], ["https://tec.openplanner.team/stops/X624ada", "https://tec.openplanner.team/stops/X624aib"], ["https://tec.openplanner.team/stops/Lsecroi2", "https://tec.openplanner.team/stops/Lseespe1"], ["https://tec.openplanner.team/stops/N355aea", "https://tec.openplanner.team/stops/N383acb"], ["https://tec.openplanner.team/stops/N111ada", "https://tec.openplanner.team/stops/N111afa"], ["https://tec.openplanner.team/stops/Cbctile", "https://tec.openplanner.team/stops/H1bi101a"], ["https://tec.openplanner.team/stops/LWOcomm1", "https://tec.openplanner.team/stops/LWOunio1"], ["https://tec.openplanner.team/stops/Bchamco2", "https://tec.openplanner.team/stops/Bwlhppg4"], ["https://tec.openplanner.team/stops/H1ml111a", "https://tec.openplanner.team/stops/H1ml112b"], ["https://tec.openplanner.team/stops/X790akc", "https://tec.openplanner.team/stops/X790alb"], ["https://tec.openplanner.team/stops/Brsgsan1", "https://tec.openplanner.team/stops/Brsgtou2"], ["https://tec.openplanner.team/stops/Cfodepo1", "https://tec.openplanner.team/stops/Clrmarl4"], ["https://tec.openplanner.team/stops/H2ca104b", "https://tec.openplanner.team/stops/H2ca108b"], ["https://tec.openplanner.team/stops/N232asa", "https://tec.openplanner.team/stops/N232bta"], ["https://tec.openplanner.team/stops/Bhoegbr1", "https://tec.openplanner.team/stops/Brsgpbo2"], ["https://tec.openplanner.team/stops/Lmibove3", "https://tec.openplanner.team/stops/Lmigare1"], ["https://tec.openplanner.team/stops/Bsmgsuz1", "https://tec.openplanner.team/stops/Bsmgsuz2"], ["https://tec.openplanner.team/stops/H1ci104b", "https://tec.openplanner.team/stops/H1mv243a"], ["https://tec.openplanner.team/stops/Ljeegli6", "https://tec.openplanner.team/stops/Lsemara1"], ["https://tec.openplanner.team/stops/Crofrio1", "https://tec.openplanner.team/stops/Croplom7"], ["https://tec.openplanner.team/stops/Bgemga11", "https://tec.openplanner.team/stops/N522aja"], ["https://tec.openplanner.team/stops/H1ca107b", "https://tec.openplanner.team/stops/H1ca186b"], ["https://tec.openplanner.team/stops/Cgoetun1", "https://tec.openplanner.team/stops/Cgopier2"], ["https://tec.openplanner.team/stops/H1hl122b", "https://tec.openplanner.team/stops/H1hl124a"], ["https://tec.openplanner.team/stops/Bllnpsc1", "https://tec.openplanner.team/stops/Bllnrge2"], ["https://tec.openplanner.team/stops/H2ha138a", "https://tec.openplanner.team/stops/H2ha138b"], ["https://tec.openplanner.team/stops/X604afa", "https://tec.openplanner.team/stops/X604amb"], ["https://tec.openplanner.team/stops/LFAscie2", "https://tec.openplanner.team/stops/LFUfleu1"], ["https://tec.openplanner.team/stops/LBWeg--3", "https://tec.openplanner.team/stops/LBWeg--4"], ["https://tec.openplanner.team/stops/H4ty310b", "https://tec.openplanner.team/stops/H4ty351b"], ["https://tec.openplanner.team/stops/Lchmarc2", "https://tec.openplanner.team/stops/LHAheml1"], ["https://tec.openplanner.team/stops/X908abb", "https://tec.openplanner.team/stops/X954aba"], ["https://tec.openplanner.team/stops/Cjupllo1", "https://tec.openplanner.team/stops/Cjupn2"], ["https://tec.openplanner.team/stops/Clfmonu2", "https://tec.openplanner.team/stops/Ctisar1"], ["https://tec.openplanner.team/stops/X923ajb", "https://tec.openplanner.team/stops/X923ala"], ["https://tec.openplanner.team/stops/H2fa105a", "https://tec.openplanner.team/stops/H2fa105b"], ["https://tec.openplanner.team/stops/X601dia", "https://tec.openplanner.team/stops/X662aia"], ["https://tec.openplanner.team/stops/LHSfexh2", "https://tec.openplanner.team/stops/LHStrez1"], ["https://tec.openplanner.team/stops/H1al105b", "https://tec.openplanner.team/stops/H1al107b"], ["https://tec.openplanner.team/stops/Cmlstgi1", "https://tec.openplanner.team/stops/Cmlstgi2"], ["https://tec.openplanner.team/stops/H1ma234a", "https://tec.openplanner.team/stops/H1ms310b"], ["https://tec.openplanner.team/stops/Bgntalt4", "https://tec.openplanner.team/stops/Bsgeqpb2"], ["https://tec.openplanner.team/stops/Ccoh1212", "https://tec.openplanner.team/stops/Ccotemp1"], ["https://tec.openplanner.team/stops/LJA65h-2", "https://tec.openplanner.team/stops/LSW26--1"], ["https://tec.openplanner.team/stops/Canh1942", "https://tec.openplanner.team/stops/Canlalu2"], ["https://tec.openplanner.team/stops/LSTamer2", "https://tec.openplanner.team/stops/LSTchef2"], ["https://tec.openplanner.team/stops/Cmyfoym2", "https://tec.openplanner.team/stops/Cmyplac1"], ["https://tec.openplanner.team/stops/H2sv213b", "https://tec.openplanner.team/stops/H2tr246a"], ["https://tec.openplanner.team/stops/LmHbien1", "https://tec.openplanner.team/stops/LmHumge1"], ["https://tec.openplanner.team/stops/X685aga", "https://tec.openplanner.team/stops/X685agb"], ["https://tec.openplanner.team/stops/H1ms303a", "https://tec.openplanner.team/stops/H1ms400d"], ["https://tec.openplanner.team/stops/Ctilobb1", "https://tec.openplanner.team/stops/Ctisar2"], ["https://tec.openplanner.team/stops/LAyegli1", "https://tec.openplanner.team/stops/LSHmais1"], ["https://tec.openplanner.team/stops/H4ob108a", "https://tec.openplanner.team/stops/H4ob109a"], ["https://tec.openplanner.team/stops/Crodebr2", "https://tec.openplanner.team/stops/Crodrai2"], ["https://tec.openplanner.team/stops/Brsgpbo2", "https://tec.openplanner.team/stops/Bwbfbon2"], ["https://tec.openplanner.team/stops/X761aaa", "https://tec.openplanner.team/stops/X762aga"], ["https://tec.openplanner.team/stops/Cci22ao2", "https://tec.openplanner.team/stops/Ccimont1"], ["https://tec.openplanner.team/stops/X780afa", "https://tec.openplanner.team/stops/X780agb"], ["https://tec.openplanner.team/stops/Lgrorch1", "https://tec.openplanner.team/stops/Lgrwill2"], ["https://tec.openplanner.team/stops/H2ma205a", "https://tec.openplanner.team/stops/H2ma205b"], ["https://tec.openplanner.team/stops/LGMstin2", "https://tec.openplanner.team/stops/LGMvoue2"], ["https://tec.openplanner.team/stops/LBrbern2", "https://tec.openplanner.team/stops/LBrmeiz1"], ["https://tec.openplanner.team/stops/N229afb", "https://tec.openplanner.team/stops/N270aec"], ["https://tec.openplanner.team/stops/LFPstro1", "https://tec.openplanner.team/stops/LRmhage5"], ["https://tec.openplanner.team/stops/Lchsaro1", "https://tec.openplanner.team/stops/Lchsaro2"], ["https://tec.openplanner.team/stops/LCaresi2", "https://tec.openplanner.team/stops/LVefont2"], ["https://tec.openplanner.team/stops/Lghpero1", "https://tec.openplanner.team/stops/Lghsimo4"], ["https://tec.openplanner.team/stops/H1gh154b", "https://tec.openplanner.team/stops/H1gh159a"], ["https://tec.openplanner.team/stops/LENaout1", "https://tec.openplanner.team/stops/LENparc1"], ["https://tec.openplanner.team/stops/LkEsouf2", "https://tec.openplanner.team/stops/LkEwolf1"], ["https://tec.openplanner.team/stops/LHUdeni1", "https://tec.openplanner.team/stops/LHUdeni4"], ["https://tec.openplanner.team/stops/X643aab", "https://tec.openplanner.team/stops/X643aba"], ["https://tec.openplanner.team/stops/X717ada", "https://tec.openplanner.team/stops/X717ahb"], ["https://tec.openplanner.team/stops/Bwspbbo1", "https://tec.openplanner.team/stops/Bwsppos1"], ["https://tec.openplanner.team/stops/LARparc1", "https://tec.openplanner.team/stops/LVIpneu2"], ["https://tec.openplanner.team/stops/Lrchype1", "https://tec.openplanner.team/stops/Lrcpaqu1"], ["https://tec.openplanner.team/stops/H4ma204a", "https://tec.openplanner.team/stops/H4ma205b"], ["https://tec.openplanner.team/stops/N315aab", "https://tec.openplanner.team/stops/N329aaa"], ["https://tec.openplanner.team/stops/H5at129a", "https://tec.openplanner.team/stops/H5at129b"], ["https://tec.openplanner.team/stops/N512ava", "https://tec.openplanner.team/stops/N512avb"], ["https://tec.openplanner.team/stops/Bmrlcch1", "https://tec.openplanner.team/stops/Bmrllgr2"], ["https://tec.openplanner.team/stops/H1ob331b", "https://tec.openplanner.team/stops/H1ob334b"], ["https://tec.openplanner.team/stops/Cfocobe1", "https://tec.openplanner.team/stops/Cfosurs1"], ["https://tec.openplanner.team/stops/Cjuchli2", "https://tec.openplanner.team/stops/Cjuhopi2"], ["https://tec.openplanner.team/stops/Bblamp5", "https://tec.openplanner.team/stops/Bblamsp1"], ["https://tec.openplanner.team/stops/LOMcabi1", "https://tec.openplanner.team/stops/LOMtomb1"], ["https://tec.openplanner.team/stops/Lalchar2", "https://tec.openplanner.team/stops/Lloretr1"], ["https://tec.openplanner.team/stops/LMEwerg1", "https://tec.openplanner.team/stops/LSOvoie2"], ["https://tec.openplanner.team/stops/LhP25--1", "https://tec.openplanner.team/stops/LmRkreu3"], ["https://tec.openplanner.team/stops/X901aia", "https://tec.openplanner.team/stops/X901aib"], ["https://tec.openplanner.team/stops/Blhumga1", "https://tec.openplanner.team/stops/Blhumga2"], ["https://tec.openplanner.team/stops/Bbcoeca1", "https://tec.openplanner.team/stops/Bbcogar1"], ["https://tec.openplanner.team/stops/H4mo161a", "https://tec.openplanner.team/stops/H4mo186a"], ["https://tec.openplanner.team/stops/X901ada", "https://tec.openplanner.team/stops/X901boa"], ["https://tec.openplanner.team/stops/X618ahb", "https://tec.openplanner.team/stops/X618aia"], ["https://tec.openplanner.team/stops/H4ga171a", "https://tec.openplanner.team/stops/H4ga171b"], ["https://tec.openplanner.team/stops/Cgzchen2", "https://tec.openplanner.team/stops/Cgzmira3"], ["https://tec.openplanner.team/stops/LHUchh-2", "https://tec.openplanner.team/stops/NL80aia"], ["https://tec.openplanner.team/stops/H1ht124a", "https://tec.openplanner.team/stops/H1ht129a"], ["https://tec.openplanner.team/stops/Cchba12", "https://tec.openplanner.team/stops/Cdapige2"], ["https://tec.openplanner.team/stops/X780aba", "https://tec.openplanner.team/stops/X780akb"], ["https://tec.openplanner.team/stops/Lglmoul1", "https://tec.openplanner.team/stops/Lglmoul2"], ["https://tec.openplanner.team/stops/H1ju120d", "https://tec.openplanner.team/stops/H1mj126b"], ["https://tec.openplanner.team/stops/Clsghoy1", "https://tec.openplanner.team/stops/H1ls108a"], ["https://tec.openplanner.team/stops/X742adb", "https://tec.openplanner.team/stops/X742afb"], ["https://tec.openplanner.team/stops/LBVzand2", "https://tec.openplanner.team/stops/LBVzand4"], ["https://tec.openplanner.team/stops/LHegame1", "https://tec.openplanner.team/stops/LHegame3"], ["https://tec.openplanner.team/stops/Bsamc7d2", "https://tec.openplanner.team/stops/Bsamegl2"], ["https://tec.openplanner.team/stops/X754ajb", "https://tec.openplanner.team/stops/X754aza"], ["https://tec.openplanner.team/stops/Btstbes1", "https://tec.openplanner.team/stops/Btstcar2"], ["https://tec.openplanner.team/stops/N501hnb", "https://tec.openplanner.team/stops/N501jub"], ["https://tec.openplanner.team/stops/Chppack2", "https://tec.openplanner.team/stops/Crachap2"], ["https://tec.openplanner.team/stops/H5rx114a", "https://tec.openplanner.team/stops/H5rx136a"], ["https://tec.openplanner.team/stops/H1ba112a", "https://tec.openplanner.team/stops/H1ba112b"], ["https://tec.openplanner.team/stops/LBSchpl1", "https://tec.openplanner.team/stops/LBSnouw2"], ["https://tec.openplanner.team/stops/Bcrnegl1", "https://tec.openplanner.team/stops/Bcrnegl2"], ["https://tec.openplanner.team/stops/Lvegend1", "https://tec.openplanner.team/stops/Lvegend2"], ["https://tec.openplanner.team/stops/Blnzcar1", "https://tec.openplanner.team/stops/N541acb"], ["https://tec.openplanner.team/stops/Lvemull2", "https://tec.openplanner.team/stops/Lvepala9"], ["https://tec.openplanner.team/stops/Bucceng1", "https://tec.openplanner.team/stops/Buccmer1"], ["https://tec.openplanner.team/stops/Bndb4ch1", "https://tec.openplanner.team/stops/Bndb4ch2"], ["https://tec.openplanner.team/stops/Brebrog1", "https://tec.openplanner.team/stops/Brebrog2"], ["https://tec.openplanner.team/stops/X719aca", "https://tec.openplanner.team/stops/X720aaa"], ["https://tec.openplanner.team/stops/LREgar-2", "https://tec.openplanner.team/stops/LREgare2"], ["https://tec.openplanner.team/stops/N214adb", "https://tec.openplanner.team/stops/N226aaa"], ["https://tec.openplanner.team/stops/X644adb", "https://tec.openplanner.team/stops/X645abb"], ["https://tec.openplanner.team/stops/N501ejd", "https://tec.openplanner.team/stops/N501kpa"], ["https://tec.openplanner.team/stops/N506acb", "https://tec.openplanner.team/stops/N506blb"], ["https://tec.openplanner.team/stops/N122agb", "https://tec.openplanner.team/stops/N304abb"], ["https://tec.openplanner.team/stops/H2ch106a", "https://tec.openplanner.team/stops/H2go113a"], ["https://tec.openplanner.team/stops/Llgmare5", "https://tec.openplanner.team/stops/Llgmare6"], ["https://tec.openplanner.team/stops/NC01afa", "https://tec.openplanner.team/stops/NC01afb"], ["https://tec.openplanner.team/stops/X359aaa", "https://tec.openplanner.team/stops/X359aba"], ["https://tec.openplanner.team/stops/Bgzdpos2", "https://tec.openplanner.team/stops/Bgzdpos3"], ["https://tec.openplanner.team/stops/Cgrchas2", "https://tec.openplanner.team/stops/Cgregli1"], ["https://tec.openplanner.team/stops/X765ada", "https://tec.openplanner.team/stops/X765afb"], ["https://tec.openplanner.team/stops/H4ba101a", "https://tec.openplanner.team/stops/H4ba103a"], ["https://tec.openplanner.team/stops/X770agb", "https://tec.openplanner.team/stops/X771ahb"], ["https://tec.openplanner.team/stops/LVBchau1", "https://tec.openplanner.team/stops/LVBsevr2"], ["https://tec.openplanner.team/stops/LBLghuy3", "https://tec.openplanner.team/stops/LBLplac1"], ["https://tec.openplanner.team/stops/H4rs117a", "https://tec.openplanner.team/stops/H5rx112b"], ["https://tec.openplanner.team/stops/Ltihorl1", "https://tec.openplanner.team/stops/Ltithie1"], ["https://tec.openplanner.team/stops/LMIgare2", "https://tec.openplanner.team/stops/LMIpast1"], ["https://tec.openplanner.team/stops/X610aba", "https://tec.openplanner.team/stops/X610aca"], ["https://tec.openplanner.team/stops/LeYdorf1", "https://tec.openplanner.team/stops/LeYmosc2"], ["https://tec.openplanner.team/stops/X802ada", "https://tec.openplanner.team/stops/X802aeb"], ["https://tec.openplanner.team/stops/LNIbas-1", "https://tec.openplanner.team/stops/LNIhaut1"], ["https://tec.openplanner.team/stops/X615bea", "https://tec.openplanner.team/stops/X695aka"], ["https://tec.openplanner.team/stops/N501gpd", "https://tec.openplanner.team/stops/N501zaa"], ["https://tec.openplanner.team/stops/Bsgeegl4", "https://tec.openplanner.team/stops/Bsgeqpb2"], ["https://tec.openplanner.team/stops/N155afc", "https://tec.openplanner.team/stops/N160acb"], ["https://tec.openplanner.team/stops/N522ahb", "https://tec.openplanner.team/stops/N522aib"], ["https://tec.openplanner.team/stops/LFrfrai2", "https://tec.openplanner.team/stops/LTRryta1"], ["https://tec.openplanner.team/stops/LbTschw2", "https://tec.openplanner.team/stops/LbTweyn2"], ["https://tec.openplanner.team/stops/X769aib", "https://tec.openplanner.team/stops/X769ajb"], ["https://tec.openplanner.team/stops/LCsgend1", "https://tec.openplanner.team/stops/LCsgend2"], ["https://tec.openplanner.team/stops/Loumatt1", "https://tec.openplanner.team/stops/Lourose3"], ["https://tec.openplanner.team/stops/NL74ahb", "https://tec.openplanner.team/stops/NL74ahd"], ["https://tec.openplanner.team/stops/Ctufleu3", "https://tec.openplanner.team/stops/Ctupont2"], ["https://tec.openplanner.team/stops/Landeja1", "https://tec.openplanner.team/stops/Lanrois2"], ["https://tec.openplanner.team/stops/N501aab", "https://tec.openplanner.team/stops/N501aay"], ["https://tec.openplanner.team/stops/Llggcha4", "https://tec.openplanner.team/stops/Lsntvbi2"], ["https://tec.openplanner.team/stops/Bblatet1", "https://tec.openplanner.team/stops/Bbsibou1"], ["https://tec.openplanner.team/stops/N360aaa", "https://tec.openplanner.team/stops/N360aab"], ["https://tec.openplanner.team/stops/LhP25--1", "https://tec.openplanner.team/stops/LhP25--2"], ["https://tec.openplanner.team/stops/X636ava", "https://tec.openplanner.team/stops/X636awa"], ["https://tec.openplanner.team/stops/Csedoua5", "https://tec.openplanner.team/stops/Csepier1"], ["https://tec.openplanner.team/stops/H1ge115b", "https://tec.openplanner.team/stops/H1ge116a"], ["https://tec.openplanner.team/stops/X901aha", "https://tec.openplanner.team/stops/X901aoa"], ["https://tec.openplanner.team/stops/H4ne141b", "https://tec.openplanner.team/stops/H4ne144b"], ["https://tec.openplanner.team/stops/Ccupdes3", "https://tec.openplanner.team/stops/Ccupdes4"], ["https://tec.openplanner.team/stops/X601dbb", "https://tec.openplanner.team/stops/X626aab"], ["https://tec.openplanner.team/stops/N512adb", "https://tec.openplanner.team/stops/N512apb"], ["https://tec.openplanner.team/stops/X808aaa", "https://tec.openplanner.team/stops/X808adb"], ["https://tec.openplanner.team/stops/Ccugilb2", "https://tec.openplanner.team/stops/Ccutail2"], ["https://tec.openplanner.team/stops/H1er106b", "https://tec.openplanner.team/stops/H1er107a"], ["https://tec.openplanner.team/stops/X640afb", "https://tec.openplanner.team/stops/X640aka"], ["https://tec.openplanner.team/stops/Btlbche2", "https://tec.openplanner.team/stops/Btlbtho2"], ["https://tec.openplanner.team/stops/N143abb", "https://tec.openplanner.team/stops/N143acb"], ["https://tec.openplanner.team/stops/H1hv136a", "https://tec.openplanner.team/stops/H1mk117a"], ["https://tec.openplanner.team/stops/Clrhava2", "https://tec.openplanner.team/stops/Clrwesp2"], ["https://tec.openplanner.team/stops/H2sv216b", "https://tec.openplanner.team/stops/H2sv218a"], ["https://tec.openplanner.team/stops/N241adb", "https://tec.openplanner.team/stops/N241aea"], ["https://tec.openplanner.team/stops/LOthiro2", "https://tec.openplanner.team/stops/NL57amb"], ["https://tec.openplanner.team/stops/LBTchai3", "https://tec.openplanner.team/stops/LHEelva2"], ["https://tec.openplanner.team/stops/H4wi164b", "https://tec.openplanner.team/stops/H4wi175b"], ["https://tec.openplanner.team/stops/Buccdef2", "https://tec.openplanner.team/stops/Buccvch2"], ["https://tec.openplanner.team/stops/N522akb", "https://tec.openplanner.team/stops/N522asa"], ["https://tec.openplanner.team/stops/Bneecha2", "https://tec.openplanner.team/stops/Bneecha3"], ["https://tec.openplanner.team/stops/X542aba", "https://tec.openplanner.team/stops/X542abb"], ["https://tec.openplanner.team/stops/N536aea", "https://tec.openplanner.team/stops/N536aeb"], ["https://tec.openplanner.team/stops/X926aca", "https://tec.openplanner.team/stops/X926acb"], ["https://tec.openplanner.team/stops/LrAberg2", "https://tec.openplanner.team/stops/LrAbotz2"], ["https://tec.openplanner.team/stops/H1hn204b", "https://tec.openplanner.team/stops/H1hn207a"], ["https://tec.openplanner.team/stops/Lghsimo2", "https://tec.openplanner.team/stops/Lmopota1"], ["https://tec.openplanner.team/stops/N553afb", "https://tec.openplanner.team/stops/N553akb"], ["https://tec.openplanner.team/stops/N104aeb", "https://tec.openplanner.team/stops/N104afb"], ["https://tec.openplanner.team/stops/X925akb", "https://tec.openplanner.team/stops/X947afa"], ["https://tec.openplanner.team/stops/X595aea", "https://tec.openplanner.team/stops/X595afb"], ["https://tec.openplanner.team/stops/H2ll182b", "https://tec.openplanner.team/stops/H2ll200b"], ["https://tec.openplanner.team/stops/H5el100a", "https://tec.openplanner.team/stops/H5el101a"], ["https://tec.openplanner.team/stops/Bllnjpa1", "https://tec.openplanner.team/stops/Bmsggra3"], ["https://tec.openplanner.team/stops/X831aab", "https://tec.openplanner.team/stops/X833aca"], ["https://tec.openplanner.team/stops/Cml5ave2", "https://tec.openplanner.team/stops/Cnanoir1"], ["https://tec.openplanner.team/stops/Loudemo2", "https://tec.openplanner.team/stops/Louvira1"], ["https://tec.openplanner.team/stops/LSPptch1", "https://tec.openplanner.team/stops/LSPsous1"], ["https://tec.openplanner.team/stops/LhSfrep1", "https://tec.openplanner.team/stops/LhSkirc1"], ["https://tec.openplanner.team/stops/N103agb", "https://tec.openplanner.team/stops/N131aeb"], ["https://tec.openplanner.team/stops/X681aeb", "https://tec.openplanner.team/stops/X681aga"], ["https://tec.openplanner.team/stops/H1wz170b", "https://tec.openplanner.team/stops/H1wz173a"], ["https://tec.openplanner.team/stops/Ctynamu1", "https://tec.openplanner.team/stops/Ctynamu2"], ["https://tec.openplanner.team/stops/LFothie1", "https://tec.openplanner.team/stops/LJAgoff2"], ["https://tec.openplanner.team/stops/LTPec--1", "https://tec.openplanner.team/stops/LTPgare*"], ["https://tec.openplanner.team/stops/Cmehame1", "https://tec.openplanner.team/stops/Cmewaya2"], ["https://tec.openplanner.team/stops/N254abb", "https://tec.openplanner.team/stops/N254aha"], ["https://tec.openplanner.team/stops/Bsaubra1", "https://tec.openplanner.team/stops/Bsaumlk1"], ["https://tec.openplanner.team/stops/N117anb", "https://tec.openplanner.team/stops/N117bbb"], ["https://tec.openplanner.team/stops/H2pe154b", "https://tec.openplanner.team/stops/H2pe160a"], ["https://tec.openplanner.team/stops/Lvegazo1", "https://tec.openplanner.team/stops/Lvegera2"], ["https://tec.openplanner.team/stops/LFychpl2", "https://tec.openplanner.team/stops/LsHlenz2"], ["https://tec.openplanner.team/stops/X720aba", "https://tec.openplanner.team/stops/X720abb"], ["https://tec.openplanner.team/stops/LAUbirv2", "https://tec.openplanner.team/stops/LHMpatl2"], ["https://tec.openplanner.team/stops/N235abb", "https://tec.openplanner.team/stops/N235aca"], ["https://tec.openplanner.team/stops/LAyegli1", "https://tec.openplanner.team/stops/LAyegli2"], ["https://tec.openplanner.team/stops/X824afa", "https://tec.openplanner.team/stops/X824ahb"], ["https://tec.openplanner.team/stops/Barcbav1", "https://tec.openplanner.team/stops/Bgzdcwa1"], ["https://tec.openplanner.team/stops/N120ajb", "https://tec.openplanner.team/stops/N167aea"], ["https://tec.openplanner.team/stops/X756aec", "https://tec.openplanner.team/stops/X756agb"], ["https://tec.openplanner.team/stops/N134aja", "https://tec.openplanner.team/stops/N152abd"], ["https://tec.openplanner.team/stops/Crerevi2", "https://tec.openplanner.team/stops/Crestan2"], ["https://tec.openplanner.team/stops/Cfrgivr1", "https://tec.openplanner.team/stops/Cfrmon4"], ["https://tec.openplanner.team/stops/Ladjuif2", "https://tec.openplanner.team/stops/Ladxhen2"], ["https://tec.openplanner.team/stops/LCLstat1", "https://tec.openplanner.team/stops/NL78afb"], ["https://tec.openplanner.team/stops/Bsgimor1", "https://tec.openplanner.team/stops/Buccdch2"], ["https://tec.openplanner.team/stops/X740afa", "https://tec.openplanner.team/stops/X759abb"], ["https://tec.openplanner.team/stops/LDoeg--1", "https://tec.openplanner.team/stops/LDomoul1"], ["https://tec.openplanner.team/stops/H4ka188b", "https://tec.openplanner.team/stops/H4ka394b"], ["https://tec.openplanner.team/stops/X921akb", "https://tec.openplanner.team/stops/X979aab"], ["https://tec.openplanner.team/stops/H4wi166a", "https://tec.openplanner.team/stops/H4wi170a"], ["https://tec.openplanner.team/stops/X750aha", "https://tec.openplanner.team/stops/X750alb"], ["https://tec.openplanner.team/stops/N117arb", "https://tec.openplanner.team/stops/N117asb"], ["https://tec.openplanner.team/stops/N310aaa", "https://tec.openplanner.team/stops/N310aab"], ["https://tec.openplanner.team/stops/LRcsilo1", "https://tec.openplanner.team/stops/LRcsilo2"], ["https://tec.openplanner.team/stops/Btiegma1", "https://tec.openplanner.team/stops/LMastat4"], ["https://tec.openplanner.team/stops/N242ada", "https://tec.openplanner.team/stops/N251aab"], ["https://tec.openplanner.team/stops/LVleg--5", "https://tec.openplanner.team/stops/LVlroua2"], ["https://tec.openplanner.team/stops/H2tr255a", "https://tec.openplanner.team/stops/H2tr255b"], ["https://tec.openplanner.team/stops/LPohoeg2", "https://tec.openplanner.team/stops/LPoneuf2"], ["https://tec.openplanner.team/stops/LAufech1", "https://tec.openplanner.team/stops/LAUvdab1"], ["https://tec.openplanner.team/stops/X736aea", "https://tec.openplanner.team/stops/X736agb"], ["https://tec.openplanner.team/stops/H4ka188a", "https://tec.openplanner.team/stops/H4ka190a"], ["https://tec.openplanner.team/stops/LkAmess1", "https://tec.openplanner.team/stops/LkAmess2"], ["https://tec.openplanner.team/stops/N244abb", "https://tec.openplanner.team/stops/N244abc"], ["https://tec.openplanner.team/stops/Ccaegli2", "https://tec.openplanner.team/stops/Ccaegli3"], ["https://tec.openplanner.team/stops/LREhaut2", "https://tec.openplanner.team/stops/LRErive2"], ["https://tec.openplanner.team/stops/LWEhosp1", "https://tec.openplanner.team/stops/LWEhosp3"], ["https://tec.openplanner.team/stops/X941adb", "https://tec.openplanner.team/stops/X941aeb"], ["https://tec.openplanner.team/stops/LBgcroi4", "https://tec.openplanner.team/stops/LBglign2"], ["https://tec.openplanner.team/stops/N139aaa", "https://tec.openplanner.team/stops/N139aab"], ["https://tec.openplanner.team/stops/X763aca", "https://tec.openplanner.team/stops/X763aea"], ["https://tec.openplanner.team/stops/LBiberg1", "https://tec.openplanner.team/stops/LBiberg2"], ["https://tec.openplanner.team/stops/Bblaccm1", "https://tec.openplanner.team/stops/Bblacco2"], ["https://tec.openplanner.team/stops/Cstvape1", "https://tec.openplanner.team/stops/Cstvape2"], ["https://tec.openplanner.team/stops/H4ef109a", "https://tec.openplanner.team/stops/H4ef111b"], ["https://tec.openplanner.team/stops/LLnlimb1", "https://tec.openplanner.team/stops/LWAbett2"], ["https://tec.openplanner.team/stops/X804aja", "https://tec.openplanner.team/stops/X804ajb"], ["https://tec.openplanner.team/stops/LmImirf1", "https://tec.openplanner.team/stops/LmRkape1"], ["https://tec.openplanner.team/stops/X657ajb", "https://tec.openplanner.team/stops/X657anb"], ["https://tec.openplanner.team/stops/N209amb", "https://tec.openplanner.team/stops/N210aab"], ["https://tec.openplanner.team/stops/Cobbusc1", "https://tec.openplanner.team/stops/Cobbusc2"], ["https://tec.openplanner.team/stops/H2hg271a", "https://tec.openplanner.team/stops/H2hg272a"], ["https://tec.openplanner.team/stops/X869aaa", "https://tec.openplanner.team/stops/X869aab"], ["https://tec.openplanner.team/stops/X725aab", "https://tec.openplanner.team/stops/X754aza"], ["https://tec.openplanner.team/stops/X512abb", "https://tec.openplanner.team/stops/X512ajb"], ["https://tec.openplanner.team/stops/X611aca", "https://tec.openplanner.team/stops/X825aaa"], ["https://tec.openplanner.team/stops/Llggerm1", "https://tec.openplanner.team/stops/Lvtpepi1"], ["https://tec.openplanner.team/stops/N120ana", "https://tec.openplanner.team/stops/N120anb"], ["https://tec.openplanner.team/stops/NL67aaa", "https://tec.openplanner.team/stops/NL67aab"], ["https://tec.openplanner.team/stops/N308acb", "https://tec.openplanner.team/stops/N308beb"], ["https://tec.openplanner.team/stops/N584aea", "https://tec.openplanner.team/stops/N584aha"], ["https://tec.openplanner.team/stops/Ljejoli1", "https://tec.openplanner.team/stops/Ljeorda1"], ["https://tec.openplanner.team/stops/Bwanorp1", "https://tec.openplanner.team/stops/Bwanorp2"], ["https://tec.openplanner.team/stops/Cchfran1", "https://tec.openplanner.team/stops/Cchpala2"], ["https://tec.openplanner.team/stops/X802aoa", "https://tec.openplanner.team/stops/X802aya"], ["https://tec.openplanner.team/stops/LPLc49-2", "https://tec.openplanner.team/stops/LPLc65-1"], ["https://tec.openplanner.team/stops/Bmoucnd2", "https://tec.openplanner.team/stops/Bmoufil2"], ["https://tec.openplanner.team/stops/N340aha", "https://tec.openplanner.team/stops/N340ahb"], ["https://tec.openplanner.team/stops/X595abb", "https://tec.openplanner.team/stops/X595aca"], ["https://tec.openplanner.team/stops/H4ty338b", "https://tec.openplanner.team/stops/H4ty344b"], ["https://tec.openplanner.team/stops/Csepost1", "https://tec.openplanner.team/stops/Cvtndam3"], ["https://tec.openplanner.team/stops/LsVprum4", "https://tec.openplanner.team/stops/LwLprum2"], ["https://tec.openplanner.team/stops/N542aeb", "https://tec.openplanner.team/stops/N542ajb"], ["https://tec.openplanner.team/stops/Bblafra1", "https://tec.openplanner.team/stops/Bblafrn2"], ["https://tec.openplanner.team/stops/X908aha", "https://tec.openplanner.team/stops/X908ahb"], ["https://tec.openplanner.team/stops/X595aab", "https://tec.openplanner.team/stops/X595aia"], ["https://tec.openplanner.team/stops/H2sb239a", "https://tec.openplanner.team/stops/H2sb239d"], ["https://tec.openplanner.team/stops/Ccumasu2", "https://tec.openplanner.team/stops/Cpicite2"], ["https://tec.openplanner.team/stops/LHEcruc1", "https://tec.openplanner.team/stops/LHEcruc4"], ["https://tec.openplanner.team/stops/H1wa154b", "https://tec.openplanner.team/stops/H1wa159a"], ["https://tec.openplanner.team/stops/N301agb", "https://tec.openplanner.team/stops/N340abb"], ["https://tec.openplanner.team/stops/H1fr124a", "https://tec.openplanner.team/stops/H1fr152a"], ["https://tec.openplanner.team/stops/H4mv191a", "https://tec.openplanner.team/stops/H4oe149a"], ["https://tec.openplanner.team/stops/Bbldmun1", "https://tec.openplanner.team/stops/Bhaawdr2"], ["https://tec.openplanner.team/stops/N565aba", "https://tec.openplanner.team/stops/N565afb"], ["https://tec.openplanner.team/stops/H4ag104a", "https://tec.openplanner.team/stops/H4ag105b"], ["https://tec.openplanner.team/stops/H5rx113a", "https://tec.openplanner.team/stops/H5rx122a"], ["https://tec.openplanner.team/stops/Cmehels1", "https://tec.openplanner.team/stops/Cmehels2"], ["https://tec.openplanner.team/stops/LSoboul1", "https://tec.openplanner.team/stops/LSoboul2"], ["https://tec.openplanner.team/stops/Ctrecol1", "https://tec.openplanner.team/stops/Ctrleju1"], ["https://tec.openplanner.team/stops/H1mj122a", "https://tec.openplanner.team/stops/H1mj125b"], ["https://tec.openplanner.team/stops/N529ajb", "https://tec.openplanner.team/stops/N584aqa"], ["https://tec.openplanner.team/stops/X888aca", "https://tec.openplanner.team/stops/X888adb"], ["https://tec.openplanner.team/stops/LHtdros1", "https://tec.openplanner.team/stops/LHthest2"], ["https://tec.openplanner.team/stops/LAbchpl2", "https://tec.openplanner.team/stops/LTechpl2"], ["https://tec.openplanner.team/stops/N564aaa", "https://tec.openplanner.team/stops/N564aea"], ["https://tec.openplanner.team/stops/Bgliopp2", "https://tec.openplanner.team/stops/Boppcar2"], ["https://tec.openplanner.team/stops/Cjuspin1", "https://tec.openplanner.team/stops/Cjuvign1"], ["https://tec.openplanner.team/stops/N426acb", "https://tec.openplanner.team/stops/N426afb"], ["https://tec.openplanner.team/stops/LJSforg1", "https://tec.openplanner.team/stops/Lpetenn2"], ["https://tec.openplanner.team/stops/Bcseeco2", "https://tec.openplanner.team/stops/Bcsegar1"], ["https://tec.openplanner.team/stops/Csychap1", "https://tec.openplanner.team/stops/Csychap4"], ["https://tec.openplanner.team/stops/X363aba", "https://tec.openplanner.team/stops/X363abb"], ["https://tec.openplanner.team/stops/N506bpa", "https://tec.openplanner.team/stops/N537alb"], ["https://tec.openplanner.team/stops/Lmopave1", "https://tec.openplanner.team/stops/Lsnpaqu1"], ["https://tec.openplanner.team/stops/N218aab", "https://tec.openplanner.team/stops/N218afa"], ["https://tec.openplanner.team/stops/LTEkl122", "https://tec.openplanner.team/stops/LTEkl162"], ["https://tec.openplanner.team/stops/N512aqb", "https://tec.openplanner.team/stops/N512ata"], ["https://tec.openplanner.team/stops/X911aaa", "https://tec.openplanner.team/stops/X911ara"], ["https://tec.openplanner.team/stops/N212agb", "https://tec.openplanner.team/stops/N225ahb"], ["https://tec.openplanner.team/stops/Bcrbrpb1", "https://tec.openplanner.team/stops/Bmsggra3"], ["https://tec.openplanner.team/stops/H1ev149a", "https://tec.openplanner.team/stops/H1ev149b"], ["https://tec.openplanner.team/stops/Brsgtou1", "https://tec.openplanner.team/stops/Buccptj2"], ["https://tec.openplanner.team/stops/N501eeb", "https://tec.openplanner.team/stops/N501ehb"], ["https://tec.openplanner.team/stops/LHhelia2", "https://tec.openplanner.team/stops/NL30ajb"], ["https://tec.openplanner.team/stops/Blig4br2", "https://tec.openplanner.team/stops/N584bpc"], ["https://tec.openplanner.team/stops/LHMbelv1", "https://tec.openplanner.team/stops/LMNswar2"], ["https://tec.openplanner.team/stops/LFPgeme2", "https://tec.openplanner.team/stops/LFPzwaa2"], ["https://tec.openplanner.team/stops/LBPboir1", "https://tec.openplanner.team/stops/LRGile-2"], ["https://tec.openplanner.team/stops/Bboueta1", "https://tec.openplanner.team/stops/Bbougar1"], ["https://tec.openplanner.team/stops/Bgrmver1", "https://tec.openplanner.team/stops/N522akb"], ["https://tec.openplanner.team/stops/N232aca", "https://tec.openplanner.team/stops/N232agb"], ["https://tec.openplanner.team/stops/Lchpniv1", "https://tec.openplanner.team/stops/Lchpniv2"], ["https://tec.openplanner.team/stops/Cmqchap1", "https://tec.openplanner.team/stops/Cmqegl1"], ["https://tec.openplanner.team/stops/Ladmoul2", "https://tec.openplanner.team/stops/Ladotto1"], ["https://tec.openplanner.team/stops/X760aab", "https://tec.openplanner.team/stops/X786ada"], ["https://tec.openplanner.team/stops/Blhumpo2", "https://tec.openplanner.team/stops/Blhupa11"], ["https://tec.openplanner.team/stops/Lmidarc1", "https://tec.openplanner.team/stops/Lmidarc2"], ["https://tec.openplanner.team/stops/LCPcomm2", "https://tec.openplanner.team/stops/LCPlebl*"], ["https://tec.openplanner.team/stops/N215acb", "https://tec.openplanner.team/stops/N232bwb"], ["https://tec.openplanner.team/stops/X615ata", "https://tec.openplanner.team/stops/X687aka"], ["https://tec.openplanner.team/stops/Lmnmart1", "https://tec.openplanner.team/stops/Lmnmart2"], ["https://tec.openplanner.team/stops/LHUlebe4", "https://tec.openplanner.team/stops/LHUlebe5"], ["https://tec.openplanner.team/stops/H1pw122a", "https://tec.openplanner.team/stops/H1wa154a"], ["https://tec.openplanner.team/stops/Ljetomb2", "https://tec.openplanner.team/stops/Ljetout1"], ["https://tec.openplanner.team/stops/X850acb", "https://tec.openplanner.team/stops/X850ada"], ["https://tec.openplanner.team/stops/N141ajb", "https://tec.openplanner.team/stops/N143abb"], ["https://tec.openplanner.team/stops/LmD163-2", "https://tec.openplanner.team/stops/LwLkirc2"], ["https://tec.openplanner.team/stops/Ccopeti1", "https://tec.openplanner.team/stops/Ccostan2"], ["https://tec.openplanner.team/stops/N501arc", "https://tec.openplanner.team/stops/N501awa"], ["https://tec.openplanner.team/stops/N135ajb", "https://tec.openplanner.team/stops/N135alb"], ["https://tec.openplanner.team/stops/X917abb", "https://tec.openplanner.team/stops/X917acb"], ["https://tec.openplanner.team/stops/LRObruy1", "https://tec.openplanner.team/stops/LRObruy3"], ["https://tec.openplanner.team/stops/LSegott1", "https://tec.openplanner.team/stops/LSegott2"], ["https://tec.openplanner.team/stops/LSpfond2", "https://tec.openplanner.team/stops/LSphote2"], ["https://tec.openplanner.team/stops/Ljuprev3", "https://tec.openplanner.team/stops/Llgcouv1"], ["https://tec.openplanner.team/stops/NR38afa", "https://tec.openplanner.team/stops/NR38afb"], ["https://tec.openplanner.team/stops/X739aga", "https://tec.openplanner.team/stops/X739ala"], ["https://tec.openplanner.team/stops/N201aea", "https://tec.openplanner.team/stops/N201ava"], ["https://tec.openplanner.team/stops/Bgrhche1", "https://tec.openplanner.team/stops/N519ahb"], ["https://tec.openplanner.team/stops/N525aec", "https://tec.openplanner.team/stops/N525aib"], ["https://tec.openplanner.team/stops/LwSbrei2", "https://tec.openplanner.team/stops/LwSgeme2"], ["https://tec.openplanner.team/stops/Lhrchar3", "https://tec.openplanner.team/stops/Llgtir-1"], ["https://tec.openplanner.team/stops/NL76aab", "https://tec.openplanner.team/stops/NL76anb"], ["https://tec.openplanner.team/stops/LeUnisp1", "https://tec.openplanner.team/stops/LkTdorf1"], ["https://tec.openplanner.team/stops/Bniv4co2", "https://tec.openplanner.team/stops/Bnivrwi2"], ["https://tec.openplanner.team/stops/Bwavcui2", "https://tec.openplanner.team/stops/Bwavtas4"], ["https://tec.openplanner.team/stops/Lvealbe1", "https://tec.openplanner.team/stops/Lvefran1"], ["https://tec.openplanner.team/stops/N101akb", "https://tec.openplanner.team/stops/N101aua"], ["https://tec.openplanner.team/stops/LVLeg--1", "https://tec.openplanner.team/stops/LVLmabi2"], ["https://tec.openplanner.team/stops/H4co104a", "https://tec.openplanner.team/stops/H4co109b"], ["https://tec.openplanner.team/stops/X746aja", "https://tec.openplanner.team/stops/X746akb"], ["https://tec.openplanner.team/stops/H4be105a", "https://tec.openplanner.team/stops/H4be112a"], ["https://tec.openplanner.team/stops/LHVeg--1", "https://tec.openplanner.team/stops/LJAroue2"], ["https://tec.openplanner.team/stops/X745adb", "https://tec.openplanner.team/stops/X745aeb"], ["https://tec.openplanner.team/stops/LWargeu1", "https://tec.openplanner.team/stops/LWaruth1"], ["https://tec.openplanner.team/stops/NL78acb", "https://tec.openplanner.team/stops/NL78aka"], ["https://tec.openplanner.team/stops/Bbstasa2", "https://tec.openplanner.team/stops/Bbstcha2"], ["https://tec.openplanner.team/stops/Lemjoba1", "https://tec.openplanner.team/stops/Lemjoba2"], ["https://tec.openplanner.team/stops/Cfmnoci1", "https://tec.openplanner.team/stops/Cfmtrie1"], ["https://tec.openplanner.team/stops/Chpcarp2", "https://tec.openplanner.team/stops/Chppack1"], ["https://tec.openplanner.team/stops/NH01aaa", "https://tec.openplanner.team/stops/NH01aab"], ["https://tec.openplanner.team/stops/LeUfuss1", "https://tec.openplanner.team/stops/LeUschu1"], ["https://tec.openplanner.team/stops/LBEbelf1", "https://tec.openplanner.team/stops/LTIchev1"], ["https://tec.openplanner.team/stops/LSZarbe1", "https://tec.openplanner.team/stops/LSZheid2"], ["https://tec.openplanner.team/stops/LLrgara1", "https://tec.openplanner.team/stops/LLrscie1"], ["https://tec.openplanner.team/stops/Lgdblom1", "https://tec.openplanner.team/stops/LSNmoul2"], ["https://tec.openplanner.team/stops/NH21aea", "https://tec.openplanner.team/stops/NH21afb"], ["https://tec.openplanner.team/stops/Clrcite2", "https://tec.openplanner.team/stops/CMleer2"], ["https://tec.openplanner.team/stops/Lbopote1", "https://tec.openplanner.team/stops/Lbotige2"], ["https://tec.openplanner.team/stops/H2lh132b", "https://tec.openplanner.team/stops/H2mo129b"], ["https://tec.openplanner.team/stops/Cml5ave1", "https://tec.openplanner.team/stops/Cml5ave2"], ["https://tec.openplanner.team/stops/LFsec--1", "https://tec.openplanner.team/stops/LFsherm1"], ["https://tec.openplanner.team/stops/Brsregl2", "https://tec.openplanner.team/stops/Brsregl3"], ["https://tec.openplanner.team/stops/X877aca", "https://tec.openplanner.team/stops/X877aha"], ["https://tec.openplanner.team/stops/Bsamlon1", "https://tec.openplanner.team/stops/Bwagmco1"], ["https://tec.openplanner.team/stops/LAYchal1", "https://tec.openplanner.team/stops/LAYwerb1"], ["https://tec.openplanner.team/stops/X695aba", "https://tec.openplanner.team/stops/X695aja"], ["https://tec.openplanner.team/stops/H2hg158b", "https://tec.openplanner.team/stops/H2hg265a"], ["https://tec.openplanner.team/stops/LLnec--1", "https://tec.openplanner.team/stops/LLnlimb2"], ["https://tec.openplanner.team/stops/X880ada", "https://tec.openplanner.team/stops/X880aea"], ["https://tec.openplanner.team/stops/X661aga", "https://tec.openplanner.team/stops/X661ayb"], ["https://tec.openplanner.team/stops/Ccusole2", "https://tec.openplanner.team/stops/Cgysole1"], ["https://tec.openplanner.team/stops/Bmanfbg2", "https://tec.openplanner.team/stops/H2mg139c"], ["https://tec.openplanner.team/stops/N321aca", "https://tec.openplanner.team/stops/N321acb"], ["https://tec.openplanner.team/stops/Bcrbmsg1", "https://tec.openplanner.team/stops/Bcrbtho2"], ["https://tec.openplanner.team/stops/LCPaube1", "https://tec.openplanner.team/stops/LCPhall1"], ["https://tec.openplanner.team/stops/Llgptlo1", "https://tec.openplanner.team/stops/Llgptlo2"], ["https://tec.openplanner.team/stops/H4mo150b", "https://tec.openplanner.team/stops/H4mo178a"], ["https://tec.openplanner.team/stops/LnE79--1", "https://tec.openplanner.team/stops/LnErech1"], ["https://tec.openplanner.team/stops/H1ag104b", "https://tec.openplanner.team/stops/H1an100b"], ["https://tec.openplanner.team/stops/X660ada", "https://tec.openplanner.team/stops/X660aeb"], ["https://tec.openplanner.team/stops/Bbstchv1", "https://tec.openplanner.team/stops/Btanpla3"], ["https://tec.openplanner.team/stops/LOLrafh1", "https://tec.openplanner.team/stops/LOLrafh2"], ["https://tec.openplanner.team/stops/X824aka", "https://tec.openplanner.team/stops/X824akb"], ["https://tec.openplanner.team/stops/LSemc--4", "https://tec.openplanner.team/stops/LSevitu3"], ["https://tec.openplanner.team/stops/N160ahb", "https://tec.openplanner.team/stops/NC14avb"], ["https://tec.openplanner.team/stops/Bpercsp1", "https://tec.openplanner.team/stops/Btstw751"], ["https://tec.openplanner.team/stops/LLGcarr1", "https://tec.openplanner.team/stops/LLGcarr2"], ["https://tec.openplanner.team/stops/Cchjaur1", "https://tec.openplanner.team/stops/CMsacm2"], ["https://tec.openplanner.team/stops/X786ahb", "https://tec.openplanner.team/stops/X789aga"], ["https://tec.openplanner.team/stops/H1vs144a", "https://tec.openplanner.team/stops/H1vs146b"], ["https://tec.openplanner.team/stops/Cfmgara1", "https://tec.openplanner.team/stops/Cfmgara2"], ["https://tec.openplanner.team/stops/X750bfa", "https://tec.openplanner.team/stops/X750bfb"], ["https://tec.openplanner.team/stops/Llgmako1", "https://tec.openplanner.team/stops/Llgrosa1"], ["https://tec.openplanner.team/stops/X734and", "https://tec.openplanner.team/stops/X734aoa"], ["https://tec.openplanner.team/stops/H4hs136a", "https://tec.openplanner.team/stops/H4ml207a"], ["https://tec.openplanner.team/stops/H4bc104b", "https://tec.openplanner.team/stops/H5bl123a"], ["https://tec.openplanner.team/stops/X822apa", "https://tec.openplanner.team/stops/X822apb"], ["https://tec.openplanner.team/stops/Ctrterm1", "https://tec.openplanner.team/stops/Ctrterm2"], ["https://tec.openplanner.team/stops/LSBjoli2", "https://tec.openplanner.team/stops/LSBrouf1"], ["https://tec.openplanner.team/stops/N535acb", "https://tec.openplanner.team/stops/N535apb"], ["https://tec.openplanner.team/stops/Loumatt1", "https://tec.openplanner.team/stops/Louvivi1"], ["https://tec.openplanner.team/stops/H4tm140b", "https://tec.openplanner.team/stops/H4to136a"], ["https://tec.openplanner.team/stops/Lsepair1", "https://tec.openplanner.team/stops/Lsepair4"], ["https://tec.openplanner.team/stops/Bnstlna1", "https://tec.openplanner.team/stops/H2mi125a"], ["https://tec.openplanner.team/stops/Lstchu-*", "https://tec.openplanner.team/stops/Lstchu-2"], ["https://tec.openplanner.team/stops/Bmalcar2", "https://tec.openplanner.team/stops/Borbod91"], ["https://tec.openplanner.team/stops/Bbeaech1", "https://tec.openplanner.team/stops/Bbeaech2"], ["https://tec.openplanner.team/stops/N506apb", "https://tec.openplanner.team/stops/N537ala"], ["https://tec.openplanner.team/stops/Lcacasi2", "https://tec.openplanner.team/stops/Lcavign2"], ["https://tec.openplanner.team/stops/N261ada", "https://tec.openplanner.team/stops/N261adb"], ["https://tec.openplanner.team/stops/H1fl139a", "https://tec.openplanner.team/stops/H1fl139b"], ["https://tec.openplanner.team/stops/X995aba", "https://tec.openplanner.team/stops/X995abb"], ["https://tec.openplanner.team/stops/Bnivcma1", "https://tec.openplanner.team/stops/Bnivsnu2"], ["https://tec.openplanner.team/stops/X801asa", "https://tec.openplanner.team/stops/X801awb"], ["https://tec.openplanner.team/stops/H4bl106a", "https://tec.openplanner.team/stops/H4ml209b"], ["https://tec.openplanner.team/stops/LBBabat1", "https://tec.openplanner.team/stops/LBBabat2"], ["https://tec.openplanner.team/stops/N507aja", "https://tec.openplanner.team/stops/N507ajb"], ["https://tec.openplanner.team/stops/LMNcite1", "https://tec.openplanner.team/stops/LMNcite2"], ["https://tec.openplanner.team/stops/H2sb221a", "https://tec.openplanner.team/stops/H2sb235a"], ["https://tec.openplanner.team/stops/N523aab", "https://tec.openplanner.team/stops/N523aba"], ["https://tec.openplanner.team/stops/Bnivga62", "https://tec.openplanner.team/stops/Bnivga71"], ["https://tec.openplanner.team/stops/Lflgare1", "https://tec.openplanner.team/stops/Lflgare2"], ["https://tec.openplanner.team/stops/X354aaa", "https://tec.openplanner.team/stops/X354aab"], ["https://tec.openplanner.team/stops/N308aya", "https://tec.openplanner.team/stops/N311agb"], ["https://tec.openplanner.team/stops/X597agb", "https://tec.openplanner.team/stops/X597amb"], ["https://tec.openplanner.team/stops/N505anb", "https://tec.openplanner.team/stops/N506abb"], ["https://tec.openplanner.team/stops/LAWjaur1", "https://tec.openplanner.team/stops/LAWmc--2"], ["https://tec.openplanner.team/stops/Blmlpla2", "https://tec.openplanner.team/stops/Blmlqlo2"], ["https://tec.openplanner.team/stops/Bgembsg2", "https://tec.openplanner.team/stops/N522bvh"], ["https://tec.openplanner.team/stops/H4bo121a", "https://tec.openplanner.team/stops/H4ea129a"], ["https://tec.openplanner.team/stops/LMalarg4", "https://tec.openplanner.team/stops/LMazonn4"], ["https://tec.openplanner.team/stops/N551ahb", "https://tec.openplanner.team/stops/N551arb"], ["https://tec.openplanner.team/stops/X999agb", "https://tec.openplanner.team/stops/X999ajb"], ["https://tec.openplanner.team/stops/Lfhchaf*", "https://tec.openplanner.team/stops/Lfhtrxc*"], ["https://tec.openplanner.team/stops/N537aba", "https://tec.openplanner.team/stops/N537ahb"], ["https://tec.openplanner.team/stops/H1he111b", "https://tec.openplanner.team/stops/H4be100a"], ["https://tec.openplanner.team/stops/Lalhomb1", "https://tec.openplanner.team/stops/Lalhomb2"], ["https://tec.openplanner.team/stops/N103afa", "https://tec.openplanner.team/stops/N103afb"], ["https://tec.openplanner.team/stops/N874aba", "https://tec.openplanner.team/stops/N874akb"], ["https://tec.openplanner.team/stops/LbRkirc2", "https://tec.openplanner.team/stops/LtH28a-1"], ["https://tec.openplanner.team/stops/Bcbqgar2", "https://tec.openplanner.team/stops/Btubnav2"], ["https://tec.openplanner.team/stops/LPT97--1", "https://tec.openplanner.team/stops/LPT97--2"], ["https://tec.openplanner.team/stops/Lrc594-2", "https://tec.openplanner.team/stops/Lrclohe1"], ["https://tec.openplanner.team/stops/LKmmelo1", "https://tec.openplanner.team/stops/LMObouh1"], ["https://tec.openplanner.team/stops/Cmogrbu2", "https://tec.openplanner.team/stops/Cmoscap2"], ["https://tec.openplanner.team/stops/Lghberl2", "https://tec.openplanner.team/stops/Lghvold2"], ["https://tec.openplanner.team/stops/Blincal1", "https://tec.openplanner.team/stops/Bolgrga1"], ["https://tec.openplanner.team/stops/H4rx176a", "https://tec.openplanner.team/stops/H4wa148b"], ["https://tec.openplanner.team/stops/LHUaveu2", "https://tec.openplanner.team/stops/LHUneuv1"], ["https://tec.openplanner.team/stops/Candett1", "https://tec.openplanner.team/stops/H1mg108a"], ["https://tec.openplanner.team/stops/LPLc65-1", "https://tec.openplanner.team/stops/Lsearbo2"], ["https://tec.openplanner.team/stops/X824acb", "https://tec.openplanner.team/stops/X824ajb"], ["https://tec.openplanner.team/stops/Ljuprev1", "https://tec.openplanner.team/stops/Ljuprev4"], ["https://tec.openplanner.team/stops/LLxcbr-2", "https://tec.openplanner.team/stops/LLxconj1"], ["https://tec.openplanner.team/stops/N137aea", "https://tec.openplanner.team/stops/N137aha"], ["https://tec.openplanner.team/stops/H1by108e", "https://tec.openplanner.team/stops/H1sy139b"], ["https://tec.openplanner.team/stops/N102aaa", "https://tec.openplanner.team/stops/N102aab"], ["https://tec.openplanner.team/stops/X661akb", "https://tec.openplanner.team/stops/X661amb"], ["https://tec.openplanner.team/stops/Btubcim2", "https://tec.openplanner.team/stops/Btubsal1"], ["https://tec.openplanner.team/stops/H4pl121a", "https://tec.openplanner.team/stops/H4pl137a"], ["https://tec.openplanner.team/stops/H5el104b", "https://tec.openplanner.team/stops/H5wo127a"], ["https://tec.openplanner.team/stops/X770afb", "https://tec.openplanner.team/stops/X770aga"], ["https://tec.openplanner.team/stops/N514aha", "https://tec.openplanner.team/stops/N515ara"], ["https://tec.openplanner.team/stops/Cfccabi1", "https://tec.openplanner.team/stops/Cfccol1"], ["https://tec.openplanner.team/stops/LAnfall2", "https://tec.openplanner.team/stops/LVtespo2"], ["https://tec.openplanner.team/stops/X903ada", "https://tec.openplanner.team/stops/X992aja"], ["https://tec.openplanner.team/stops/X610aaa", "https://tec.openplanner.team/stops/X610acb"], ["https://tec.openplanner.team/stops/Blmlfau1", "https://tec.openplanner.team/stops/Brixape2"], ["https://tec.openplanner.team/stops/Cnacout1", "https://tec.openplanner.team/stops/Cnarmon1"], ["https://tec.openplanner.team/stops/X644aab", "https://tec.openplanner.team/stops/X645abb"], ["https://tec.openplanner.team/stops/H1pa109a", "https://tec.openplanner.team/stops/H1pa109c"], ["https://tec.openplanner.team/stops/H1sg147a", "https://tec.openplanner.team/stops/H1sg148a"], ["https://tec.openplanner.team/stops/H4hx124b", "https://tec.openplanner.team/stops/H4wa153a"], ["https://tec.openplanner.team/stops/LHUtrin1", "https://tec.openplanner.team/stops/LTiruel1"], ["https://tec.openplanner.team/stops/Bbsibou2", "https://tec.openplanner.team/stops/Blilhay1"], ["https://tec.openplanner.team/stops/LABbert2", "https://tec.openplanner.team/stops/LABvill2"], ["https://tec.openplanner.team/stops/H3go101a", "https://tec.openplanner.team/stops/H3go104a"], ["https://tec.openplanner.team/stops/H4mo134a", "https://tec.openplanner.team/stops/H4mo175b"], ["https://tec.openplanner.team/stops/H4br108b", "https://tec.openplanner.team/stops/H4ch117a"], ["https://tec.openplanner.team/stops/LrUlasc1", "https://tec.openplanner.team/stops/LrUoudl1"], ["https://tec.openplanner.team/stops/N509aib", "https://tec.openplanner.team/stops/N509akb"], ["https://tec.openplanner.team/stops/Bbiehec2", "https://tec.openplanner.team/stops/Blontry2"], ["https://tec.openplanner.team/stops/LVEcacq1", "https://tec.openplanner.team/stops/LVEcacq2"], ["https://tec.openplanner.team/stops/LMObut-1", "https://tec.openplanner.team/stops/LMOeg--1"], ["https://tec.openplanner.team/stops/X804bzb", "https://tec.openplanner.team/stops/X805ajb"], ["https://tec.openplanner.team/stops/H2bh113b", "https://tec.openplanner.team/stops/H2lc145a"], ["https://tec.openplanner.team/stops/X784aia", "https://tec.openplanner.team/stops/X784aib"], ["https://tec.openplanner.team/stops/X713ada", "https://tec.openplanner.team/stops/X713aeb"], ["https://tec.openplanner.team/stops/LBLgobc1", "https://tec.openplanner.team/stops/LBLgobc2"], ["https://tec.openplanner.team/stops/H4bq154a", "https://tec.openplanner.team/stops/H4cp103b"], ["https://tec.openplanner.team/stops/N235aeb", "https://tec.openplanner.team/stops/N235afb"], ["https://tec.openplanner.team/stops/N229aoa", "https://tec.openplanner.team/stops/N229aob"], ["https://tec.openplanner.team/stops/X888aca", "https://tec.openplanner.team/stops/X899aga"], ["https://tec.openplanner.team/stops/N506baa", "https://tec.openplanner.team/stops/N506bac"], ["https://tec.openplanner.team/stops/Lenmare1", "https://tec.openplanner.team/stops/Lenmivi*"], ["https://tec.openplanner.team/stops/LFAec--2", "https://tec.openplanner.team/stops/LMffoot1"], ["https://tec.openplanner.team/stops/X773aaa", "https://tec.openplanner.team/stops/X773aab"], ["https://tec.openplanner.team/stops/Cgzabur1", "https://tec.openplanner.team/stops/Cgzabur2"], ["https://tec.openplanner.team/stops/Ctrecol3", "https://tec.openplanner.team/stops/Ctrplac1"], ["https://tec.openplanner.team/stops/LCdchod1", "https://tec.openplanner.team/stops/LGDgdou2"], ["https://tec.openplanner.team/stops/H1ha183a", "https://tec.openplanner.team/stops/H1vg359a"], ["https://tec.openplanner.team/stops/X608ana", "https://tec.openplanner.team/stops/X608asb"], ["https://tec.openplanner.team/stops/H1wa141a", "https://tec.openplanner.team/stops/H1wa153a"], ["https://tec.openplanner.team/stops/Llgfail2", "https://tec.openplanner.team/stops/Llgrain1"], ["https://tec.openplanner.team/stops/LBabeco4", "https://tec.openplanner.team/stops/LBamate1"], ["https://tec.openplanner.team/stops/H5bl123b", "https://tec.openplanner.team/stops/H5bl143a"], ["https://tec.openplanner.team/stops/Bblapin2", "https://tec.openplanner.team/stops/Bblapra1"], ["https://tec.openplanner.team/stops/X750asa", "https://tec.openplanner.team/stops/X780aja"], ["https://tec.openplanner.team/stops/X911acb", "https://tec.openplanner.team/stops/X911awa"], ["https://tec.openplanner.team/stops/LESoneu4", "https://tec.openplanner.team/stops/LVtchai1"], ["https://tec.openplanner.team/stops/H1pa104a", "https://tec.openplanner.team/stops/H1pa116a"], ["https://tec.openplanner.team/stops/Bgnvgar1", "https://tec.openplanner.team/stops/Brsrpar1"], ["https://tec.openplanner.team/stops/Lemhenn1", "https://tec.openplanner.team/stops/Lemhuet2"], ["https://tec.openplanner.team/stops/LSPbass2", "https://tec.openplanner.team/stops/LSPtonn2"], ["https://tec.openplanner.team/stops/Bosqgar2", "https://tec.openplanner.team/stops/Bosqpco1"], ["https://tec.openplanner.team/stops/Cmlaili2", "https://tec.openplanner.team/stops/Cmtrdec2"], ["https://tec.openplanner.team/stops/LMApape1", "https://tec.openplanner.team/stops/LMApape2"], ["https://tec.openplanner.team/stops/LBNplei1", "https://tec.openplanner.team/stops/LBNplei2"], ["https://tec.openplanner.team/stops/N136ada", "https://tec.openplanner.team/stops/N136aeb"], ["https://tec.openplanner.team/stops/Bmsgeco1", "https://tec.openplanner.team/stops/Bmsgeco2"], ["https://tec.openplanner.team/stops/N501isb", "https://tec.openplanner.team/stops/N501itb"], ["https://tec.openplanner.team/stops/X765aab", "https://tec.openplanner.team/stops/X765aga"], ["https://tec.openplanner.team/stops/N509afb", "https://tec.openplanner.team/stops/N509aqb"], ["https://tec.openplanner.team/stops/Buccobs1", "https://tec.openplanner.team/stops/Buccobs2"], ["https://tec.openplanner.team/stops/Ltiferb1", "https://tec.openplanner.team/stops/Ltipass1"], ["https://tec.openplanner.team/stops/X839adb", "https://tec.openplanner.team/stops/X839agb"], ["https://tec.openplanner.team/stops/Lticime2", "https://tec.openplanner.team/stops/Ltiegli1"], ["https://tec.openplanner.team/stops/LREgare1", "https://tec.openplanner.team/stops/LREsoug3"], ["https://tec.openplanner.team/stops/Btslcej2", "https://tec.openplanner.team/stops/Btslpic6"], ["https://tec.openplanner.team/stops/LBpecco1", "https://tec.openplanner.team/stops/LBpecco2"], ["https://tec.openplanner.team/stops/N519ama", "https://tec.openplanner.team/stops/N519amb"], ["https://tec.openplanner.team/stops/LhPhale1", "https://tec.openplanner.team/stops/LhPkirc1"], ["https://tec.openplanner.team/stops/Bgzdast1", "https://tec.openplanner.team/stops/Bgzdpos2"], ["https://tec.openplanner.team/stops/Bnetace1", "https://tec.openplanner.team/stops/Bnetcor1"], ["https://tec.openplanner.team/stops/Ccoha602", "https://tec.openplanner.team/stops/Cpcchau"], ["https://tec.openplanner.team/stops/X595afb", "https://tec.openplanner.team/stops/X595ahb"], ["https://tec.openplanner.team/stops/N501hda", "https://tec.openplanner.team/stops/N501zea"], ["https://tec.openplanner.team/stops/Cgolimi1", "https://tec.openplanner.team/stops/Cgorosa3"], ["https://tec.openplanner.team/stops/Bsdafra1", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/Blanath2", "https://tec.openplanner.team/stops/Brach122"], ["https://tec.openplanner.team/stops/Beceres1", "https://tec.openplanner.team/stops/H3br101b"], ["https://tec.openplanner.team/stops/Lghcham1", "https://tec.openplanner.team/stops/Lghreyn1"], ["https://tec.openplanner.team/stops/LSReg--1", "https://tec.openplanner.team/stops/LSReg--2"], ["https://tec.openplanner.team/stops/N504aba", "https://tec.openplanner.team/stops/N511aha"], ["https://tec.openplanner.team/stops/N501dgb", "https://tec.openplanner.team/stops/N501dib"], ["https://tec.openplanner.team/stops/X548aaa", "https://tec.openplanner.team/stops/X777aab"], ["https://tec.openplanner.team/stops/N511aaa", "https://tec.openplanner.team/stops/N511aea"], ["https://tec.openplanner.team/stops/H2ll188a", "https://tec.openplanner.team/stops/H2ll188b"], ["https://tec.openplanner.team/stops/Cfcgrat2", "https://tec.openplanner.team/stops/Cfcpcov2"], ["https://tec.openplanner.team/stops/Lligara2", "https://tec.openplanner.team/stops/LVSpn--1"], ["https://tec.openplanner.team/stops/LNCdoma3", "https://tec.openplanner.team/stops/LRRcarr1"], ["https://tec.openplanner.team/stops/Bboupde1", "https://tec.openplanner.team/stops/Bcsemar1"], ["https://tec.openplanner.team/stops/N524abb", "https://tec.openplanner.team/stops/N524afa"], ["https://tec.openplanner.team/stops/LFehaut2", "https://tec.openplanner.team/stops/LTrmaro2"], ["https://tec.openplanner.team/stops/N117aqa", "https://tec.openplanner.team/stops/N117aqb"], ["https://tec.openplanner.team/stops/X601caa", "https://tec.openplanner.team/stops/X601cab"], ["https://tec.openplanner.team/stops/X601bja", "https://tec.openplanner.team/stops/X601ctb"], ["https://tec.openplanner.team/stops/X908adb", "https://tec.openplanner.team/stops/X908afb"], ["https://tec.openplanner.team/stops/LOmlime2", "https://tec.openplanner.team/stops/LVTforg1"], ["https://tec.openplanner.team/stops/X614ala", "https://tec.openplanner.team/stops/X614amb"], ["https://tec.openplanner.team/stops/N118agb", "https://tec.openplanner.team/stops/N155aka"], ["https://tec.openplanner.team/stops/H4ty350b", "https://tec.openplanner.team/stops/H4ty356d"], ["https://tec.openplanner.team/stops/NL37aab", "https://tec.openplanner.team/stops/NL37aoa"], ["https://tec.openplanner.team/stops/Lfhmarn1", "https://tec.openplanner.team/stops/Lfhncha2"], ["https://tec.openplanner.team/stops/H4wn125a", "https://tec.openplanner.team/stops/H4wn125b"], ["https://tec.openplanner.team/stops/LeYdepo2", "https://tec.openplanner.team/stops/LeYdorf2"], ["https://tec.openplanner.team/stops/LVvboma2", "https://tec.openplanner.team/stops/X982bmb"], ["https://tec.openplanner.team/stops/H1so136a", "https://tec.openplanner.team/stops/H1so136b"], ["https://tec.openplanner.team/stops/LAWcorn1", "https://tec.openplanner.team/stops/LAWdefr2"], ["https://tec.openplanner.team/stops/N229ada", "https://tec.openplanner.team/stops/N229aga"], ["https://tec.openplanner.team/stops/N509awa", "https://tec.openplanner.team/stops/N511ava"], ["https://tec.openplanner.team/stops/Boppcen3", "https://tec.openplanner.team/stops/Bopprju2"], ["https://tec.openplanner.team/stops/X773aka", "https://tec.openplanner.team/stops/X773ala"], ["https://tec.openplanner.team/stops/N515anb", "https://tec.openplanner.team/stops/N515atb"], ["https://tec.openplanner.team/stops/Cgzhour2", "https://tec.openplanner.team/stops/Clbhour1"], ["https://tec.openplanner.team/stops/LElgerd1", "https://tec.openplanner.team/stops/LElgerd2"], ["https://tec.openplanner.team/stops/Bblamsp3", "https://tec.openplanner.team/stops/Bblamsp4"], ["https://tec.openplanner.team/stops/H1le129a", "https://tec.openplanner.team/stops/H1le129b"], ["https://tec.openplanner.team/stops/LVBneuv1", "https://tec.openplanner.team/stops/LVBsevr1"], ["https://tec.openplanner.team/stops/H2ec100a", "https://tec.openplanner.team/stops/H2ec100b"], ["https://tec.openplanner.team/stops/LHolone2", "https://tec.openplanner.team/stops/LSBjoli1"], ["https://tec.openplanner.team/stops/Ltheg--1", "https://tec.openplanner.team/stops/Ltheg--2"], ["https://tec.openplanner.team/stops/Llaacca2", "https://tec.openplanner.team/stops/Llabriq1"], ["https://tec.openplanner.team/stops/H1hi122a", "https://tec.openplanner.team/stops/H1hi124a"], ["https://tec.openplanner.team/stops/Cchsud12", "https://tec.openplanner.team/stops/Cchsud13"], ["https://tec.openplanner.team/stops/X850ada", "https://tec.openplanner.team/stops/X850aea"], ["https://tec.openplanner.team/stops/H2hg153a", "https://tec.openplanner.team/stops/H2hg153b"], ["https://tec.openplanner.team/stops/Lbrboul1", "https://tec.openplanner.team/stops/Lbrcygn2"], ["https://tec.openplanner.team/stops/LcRmich2", "https://tec.openplanner.team/stops/LnUcamp1"], ["https://tec.openplanner.team/stops/LREelse1", "https://tec.openplanner.team/stops/LREsp301"], ["https://tec.openplanner.team/stops/LAYcont1", "https://tec.openplanner.team/stops/LAYcont2"], ["https://tec.openplanner.team/stops/Bbchrra2", "https://tec.openplanner.team/stops/Bbchrra3"], ["https://tec.openplanner.team/stops/N513awb", "https://tec.openplanner.team/stops/N523aca"], ["https://tec.openplanner.team/stops/LBTxhen1", "https://tec.openplanner.team/stops/LCHsaul1"], ["https://tec.openplanner.team/stops/LCUmonu1", "https://tec.openplanner.team/stops/LEntrix1"], ["https://tec.openplanner.team/stops/N101adc", "https://tec.openplanner.team/stops/N118bab"], ["https://tec.openplanner.team/stops/H1ms302a", "https://tec.openplanner.team/stops/H1ss352a"], ["https://tec.openplanner.team/stops/LGOhevr2", "https://tec.openplanner.team/stops/LGOmonu1"], ["https://tec.openplanner.team/stops/N426adb", "https://tec.openplanner.team/stops/N426afb"], ["https://tec.openplanner.team/stops/X727aba", "https://tec.openplanner.team/stops/X767aha"], ["https://tec.openplanner.team/stops/LFChofv1", "https://tec.openplanner.team/stops/LFChofv2"], ["https://tec.openplanner.team/stops/Bplncsd2", "https://tec.openplanner.team/stops/Clpnapo2"], ["https://tec.openplanner.team/stops/H4ty312b", "https://tec.openplanner.team/stops/H4ty322b"], ["https://tec.openplanner.team/stops/LeSkreu2", "https://tec.openplanner.team/stops/LtH37c-1"], ["https://tec.openplanner.team/stops/X826aeb", "https://tec.openplanner.team/stops/X826afa"], ["https://tec.openplanner.team/stops/H4bv145b", "https://tec.openplanner.team/stops/H5at111a"], ["https://tec.openplanner.team/stops/H1nm138b", "https://tec.openplanner.team/stops/H4gr110b"], ["https://tec.openplanner.team/stops/H4bo110a", "https://tec.openplanner.team/stops/H5qu140a"], ["https://tec.openplanner.team/stops/Bjaneco1", "https://tec.openplanner.team/stops/Bjanfer1"], ["https://tec.openplanner.team/stops/Lagmair2", "https://tec.openplanner.team/stops/Lkigare2"], ["https://tec.openplanner.team/stops/Cgrgrce1", "https://tec.openplanner.team/stops/NC14aqa"], ["https://tec.openplanner.team/stops/Cjuhden2", "https://tec.openplanner.team/stops/CMtsan2"], ["https://tec.openplanner.team/stops/H4hx110a", "https://tec.openplanner.team/stops/H4lu125b"], ["https://tec.openplanner.team/stops/H4oq224b", "https://tec.openplanner.team/stops/H4ty327a"], ["https://tec.openplanner.team/stops/LBevill2", "https://tec.openplanner.team/stops/LPcforg1"], ["https://tec.openplanner.team/stops/Bpercsp1", "https://tec.openplanner.team/stops/Bperrma1"], ["https://tec.openplanner.team/stops/H4do100b", "https://tec.openplanner.team/stops/H4do101b"], ["https://tec.openplanner.team/stops/LWEbruy1", "https://tec.openplanner.team/stops/LWEpaul2"], ["https://tec.openplanner.team/stops/X634afb", "https://tec.openplanner.team/stops/X634ala"], ["https://tec.openplanner.team/stops/X615arb", "https://tec.openplanner.team/stops/X687aha"], ["https://tec.openplanner.team/stops/H4ka393b", "https://tec.openplanner.team/stops/H4ka394a"], ["https://tec.openplanner.team/stops/N501cka", "https://tec.openplanner.team/stops/N501cky"], ["https://tec.openplanner.team/stops/LLRbleh1", "https://tec.openplanner.team/stops/LLRbleh2"], ["https://tec.openplanner.team/stops/LAbbass1", "https://tec.openplanner.team/stops/LAbchpl2"], ["https://tec.openplanner.team/stops/Llgcham3", "https://tec.openplanner.team/stops/Llgcham4"], ["https://tec.openplanner.team/stops/H4bo110b", "https://tec.openplanner.team/stops/H5st162a"], ["https://tec.openplanner.team/stops/H4ma418a", "https://tec.openplanner.team/stops/H4ma418b"], ["https://tec.openplanner.team/stops/N542aka", "https://tec.openplanner.team/stops/N542ara"], ["https://tec.openplanner.team/stops/LLevaux2", "https://tec.openplanner.team/stops/X547acb"], ["https://tec.openplanner.team/stops/H4ab101a", "https://tec.openplanner.team/stops/H4ab102a"], ["https://tec.openplanner.team/stops/H4fo118a", "https://tec.openplanner.team/stops/H4fo119a"], ["https://tec.openplanner.team/stops/H1hn202a", "https://tec.openplanner.team/stops/H1hn202b"], ["https://tec.openplanner.team/stops/LSZsolw3", "https://tec.openplanner.team/stops/LSZsolw4"], ["https://tec.openplanner.team/stops/LbUbutg1", "https://tec.openplanner.team/stops/LbUpost2"], ["https://tec.openplanner.team/stops/H4am102c", "https://tec.openplanner.team/stops/H4an108b"], ["https://tec.openplanner.team/stops/LTgcime1", "https://tec.openplanner.team/stops/LTgwarf2"], ["https://tec.openplanner.team/stops/X869aca", "https://tec.openplanner.team/stops/X869afa"], ["https://tec.openplanner.team/stops/N501ada", "https://tec.openplanner.team/stops/N501adb"], ["https://tec.openplanner.team/stops/Llgcfra1", "https://tec.openplanner.team/stops/Llglaur2"], ["https://tec.openplanner.team/stops/LLt43--1", "https://tec.openplanner.team/stops/LLtwanz2"], ["https://tec.openplanner.team/stops/LaAlinz1", "https://tec.openplanner.team/stops/LlCauto2"], ["https://tec.openplanner.team/stops/Lbbbuse2", "https://tec.openplanner.team/stops/Lbbviad2"], ["https://tec.openplanner.team/stops/X898aab", "https://tec.openplanner.team/stops/X898abb"], ["https://tec.openplanner.team/stops/Bnivga71", "https://tec.openplanner.team/stops/Bnivpla2"], ["https://tec.openplanner.team/stops/Bcsebea3", "https://tec.openplanner.team/stops/Bhevcur2"], ["https://tec.openplanner.team/stops/H1fr129a", "https://tec.openplanner.team/stops/H1fr152a"], ["https://tec.openplanner.team/stops/LAWeg--1", "https://tec.openplanner.team/stops/LAWgill1"], ["https://tec.openplanner.team/stops/Bblabar1", "https://tec.openplanner.team/stops/Bblasol1"], ["https://tec.openplanner.team/stops/Lalhomb2", "https://tec.openplanner.team/stops/Lancoop1"], ["https://tec.openplanner.team/stops/Llgcite4", "https://tec.openplanner.team/stops/Llgnage2"], ["https://tec.openplanner.team/stops/N351afb", "https://tec.openplanner.team/stops/X351aba"], ["https://tec.openplanner.team/stops/Brixcme1", "https://tec.openplanner.team/stops/Brixfro3"], ["https://tec.openplanner.team/stops/Bgdhdet1", "https://tec.openplanner.team/stops/Bgdhdet2"], ["https://tec.openplanner.team/stops/X725ama", "https://tec.openplanner.team/stops/X725ara"], ["https://tec.openplanner.team/stops/Lbbremy1", "https://tec.openplanner.team/stops/Lcemalv2"], ["https://tec.openplanner.team/stops/Ccopeti2", "https://tec.openplanner.team/stops/Ccostan1"], ["https://tec.openplanner.team/stops/N580aba", "https://tec.openplanner.team/stops/N580aea"], ["https://tec.openplanner.team/stops/LhEklos2", "https://tec.openplanner.team/stops/LhElont3"], ["https://tec.openplanner.team/stops/CMchag1", "https://tec.openplanner.team/stops/CMpuis1"], ["https://tec.openplanner.team/stops/Cgoathe1", "https://tec.openplanner.team/stops/Ctmsncb1"], ["https://tec.openplanner.team/stops/H1qu104b", "https://tec.openplanner.team/stops/H1wl123a"], ["https://tec.openplanner.team/stops/X740ada", "https://tec.openplanner.team/stops/X740aeb"], ["https://tec.openplanner.team/stops/X754ata", "https://tec.openplanner.team/stops/X754aua"], ["https://tec.openplanner.team/stops/Cmerdby1", "https://tec.openplanner.team/stops/Cmestas2"], ["https://tec.openplanner.team/stops/LDLboul1", "https://tec.openplanner.team/stops/LLNbeau1"], ["https://tec.openplanner.team/stops/Ccupres1", "https://tec.openplanner.team/stops/Ccusole1"], ["https://tec.openplanner.team/stops/Cvvchea1", "https://tec.openplanner.team/stops/Cvvchea2"], ["https://tec.openplanner.team/stops/LFMveur1", "https://tec.openplanner.team/stops/LFPkape1"], ["https://tec.openplanner.team/stops/X390aha", "https://tec.openplanner.team/stops/X390ahb"], ["https://tec.openplanner.team/stops/Bbxltrv1", "https://tec.openplanner.team/stops/Bsgibla2"], ["https://tec.openplanner.team/stops/H2ma206b", "https://tec.openplanner.team/stops/H3th130a"], ["https://tec.openplanner.team/stops/N230alb", "https://tec.openplanner.team/stops/N549agb"], ["https://tec.openplanner.team/stops/H4ty285a", "https://tec.openplanner.team/stops/H4ty285b"], ["https://tec.openplanner.team/stops/Lagpaix2", "https://tec.openplanner.team/stops/Lagvern1"], ["https://tec.openplanner.team/stops/X833aaa", "https://tec.openplanner.team/stops/X834ada"], ["https://tec.openplanner.team/stops/Llggerm2", "https://tec.openplanner.team/stops/Lvtchpl2"], ["https://tec.openplanner.team/stops/X942abc", "https://tec.openplanner.team/stops/X942abe"], ["https://tec.openplanner.team/stops/Lstbarb2", "https://tec.openplanner.team/stops/Lstbold2"], ["https://tec.openplanner.team/stops/Lrclant1", "https://tec.openplanner.team/stops/Lrcpaqu2"], ["https://tec.openplanner.team/stops/H4ka193a", "https://tec.openplanner.team/stops/H4ka400a"], ["https://tec.openplanner.team/stops/Lvefran1", "https://tec.openplanner.team/stops/Lveherl1"], ["https://tec.openplanner.team/stops/Cchba2", "https://tec.openplanner.team/stops/Ccheden2"], ["https://tec.openplanner.team/stops/N531aaa", "https://tec.openplanner.team/stops/N531aab"], ["https://tec.openplanner.team/stops/LJAgoff2", "https://tec.openplanner.team/stops/LSUvill2"], ["https://tec.openplanner.team/stops/X639ana", "https://tec.openplanner.team/stops/X640aib"], ["https://tec.openplanner.team/stops/LPReg--1", "https://tec.openplanner.team/stops/LTRpeec2"], ["https://tec.openplanner.team/stops/N234afb", "https://tec.openplanner.team/stops/N549aib"], ["https://tec.openplanner.team/stops/Bwatcap1", "https://tec.openplanner.team/stops/Bwatpro2"], ["https://tec.openplanner.team/stops/LNipla3", "https://tec.openplanner.team/stops/LNipla4"], ["https://tec.openplanner.team/stops/Lagarde2", "https://tec.openplanner.team/stops/Lgreg--1"], ["https://tec.openplanner.team/stops/Lvescie1", "https://tec.openplanner.team/stops/Lvewall2"], ["https://tec.openplanner.team/stops/Bbst4br3", "https://tec.openplanner.team/stops/Blpglon2"], ["https://tec.openplanner.team/stops/Lghlogi1", "https://tec.openplanner.team/stops/Lghlogi2"], ["https://tec.openplanner.team/stops/X890aca", "https://tec.openplanner.team/stops/X890acb"], ["https://tec.openplanner.team/stops/N535apb", "https://tec.openplanner.team/stops/N538aya"], ["https://tec.openplanner.team/stops/NH01ajb", "https://tec.openplanner.team/stops/NH21ada"], ["https://tec.openplanner.team/stops/N531aob", "https://tec.openplanner.team/stops/N531aqa"], ["https://tec.openplanner.team/stops/Cjuathe2", "https://tec.openplanner.team/stops/Clomakr1"], ["https://tec.openplanner.team/stops/Cloauln2", "https://tec.openplanner.team/stops/Clomakr2"], ["https://tec.openplanner.team/stops/H4ep130a", "https://tec.openplanner.team/stops/H4rm113a"], ["https://tec.openplanner.team/stops/H5st162a", "https://tec.openplanner.team/stops/H5st168a"], ["https://tec.openplanner.team/stops/Lhufila2", "https://tec.openplanner.team/stops/Lhutran1"], ["https://tec.openplanner.team/stops/N501ksb", "https://tec.openplanner.team/stops/N501kzb"], ["https://tec.openplanner.team/stops/Bblaadm2", "https://tec.openplanner.team/stops/Bblafra2"], ["https://tec.openplanner.team/stops/Bovepla1", "https://tec.openplanner.team/stops/Bovepla2"], ["https://tec.openplanner.team/stops/Borborb1", "https://tec.openplanner.team/stops/Borbtre1"], ["https://tec.openplanner.team/stops/Lflec--1", "https://tec.openplanner.team/stops/Lflmc--2"], ["https://tec.openplanner.team/stops/LREgar-2", "https://tec.openplanner.team/stops/LREsp301"], ["https://tec.openplanner.team/stops/Cmtpire2", "https://tec.openplanner.team/stops/Cmtrbra1"], ["https://tec.openplanner.team/stops/H1cu117a", "https://tec.openplanner.team/stops/H1cu117b"], ["https://tec.openplanner.team/stops/Blindel3", "https://tec.openplanner.team/stops/Blingar2"], ["https://tec.openplanner.team/stops/X736aba", "https://tec.openplanner.team/stops/X736acb"], ["https://tec.openplanner.team/stops/Llgbwez1", "https://tec.openplanner.team/stops/Llglair1"], ["https://tec.openplanner.team/stops/Cflecga2", "https://tec.openplanner.team/stops/Cflvxca2"], ["https://tec.openplanner.team/stops/X756aed", "https://tec.openplanner.team/stops/X756aib"], ["https://tec.openplanner.team/stops/Crajasm2", "https://tec.openplanner.team/stops/Crajasm3"], ["https://tec.openplanner.team/stops/H4lp120a", "https://tec.openplanner.team/stops/H4lp122a"], ["https://tec.openplanner.team/stops/LPutins1", "https://tec.openplanner.team/stops/LPutins2"], ["https://tec.openplanner.team/stops/X754ahb", "https://tec.openplanner.team/stops/X754awa"], ["https://tec.openplanner.team/stops/Lflroms2", "https://tec.openplanner.team/stops/Lropass2"], ["https://tec.openplanner.team/stops/Lbemc--2", "https://tec.openplanner.team/stops/Llxeg--1"], ["https://tec.openplanner.team/stops/LMgberw2", "https://tec.openplanner.team/stops/LMgwith2"], ["https://tec.openplanner.team/stops/Lbemc--1", "https://tec.openplanner.team/stops/Ljuvieu2"], ["https://tec.openplanner.team/stops/Llgbavr1", "https://tec.openplanner.team/stops/Llgbuis1"], ["https://tec.openplanner.team/stops/N531aka", "https://tec.openplanner.team/stops/N531akb"], ["https://tec.openplanner.team/stops/Bbourel2", "https://tec.openplanner.team/stops/Bbsthpl2"], ["https://tec.openplanner.team/stops/N515aea", "https://tec.openplanner.team/stops/N517aca"], ["https://tec.openplanner.team/stops/X917agb", "https://tec.openplanner.team/stops/X917aha"], ["https://tec.openplanner.team/stops/Bnivga11", "https://tec.openplanner.team/stops/Bnivga12"], ["https://tec.openplanner.team/stops/Clsstpi1", "https://tec.openplanner.team/stops/H1ls129a"], ["https://tec.openplanner.team/stops/H4ft132a", "https://tec.openplanner.team/stops/H4ft135a"], ["https://tec.openplanner.team/stops/X940acb", "https://tec.openplanner.team/stops/X946abb"], ["https://tec.openplanner.team/stops/Cmtchet1", "https://tec.openplanner.team/stops/Cmtpire2"], ["https://tec.openplanner.team/stops/H4ir164b", "https://tec.openplanner.team/stops/H4og209b"], ["https://tec.openplanner.team/stops/X547aaa", "https://tec.openplanner.team/stops/X547asa"], ["https://tec.openplanner.team/stops/N143aaa", "https://tec.openplanner.team/stops/N143aca"], ["https://tec.openplanner.team/stops/Cgdberl1", "https://tec.openplanner.team/stops/Cgdrhau1"], ["https://tec.openplanner.team/stops/X730adb", "https://tec.openplanner.team/stops/X928aab"], ["https://tec.openplanner.team/stops/N225acb", "https://tec.openplanner.team/stops/N225aea"], ["https://tec.openplanner.team/stops/H4ml206a", "https://tec.openplanner.team/stops/H4ml209a"], ["https://tec.openplanner.team/stops/X999apa", "https://tec.openplanner.team/stops/X999ata"], ["https://tec.openplanner.team/stops/X952ajb", "https://tec.openplanner.team/stops/X952akb"], ["https://tec.openplanner.team/stops/LeYberl1", "https://tec.openplanner.team/stops/LrAneue1"], ["https://tec.openplanner.team/stops/LkEl3252", "https://tec.openplanner.team/stops/LMsalen1"], ["https://tec.openplanner.team/stops/Lsehcoc1", "https://tec.openplanner.team/stops/Lsepaqu1"], ["https://tec.openplanner.team/stops/Cjugohi3", "https://tec.openplanner.team/stops/Cjuvpla1"], ["https://tec.openplanner.team/stops/N348aba", "https://tec.openplanner.team/stops/N353awa"], ["https://tec.openplanner.team/stops/X725ara", "https://tec.openplanner.team/stops/X725asb"], ["https://tec.openplanner.team/stops/N501fwz", "https://tec.openplanner.team/stops/N501hhb"], ["https://tec.openplanner.team/stops/LPUchpl2", "https://tec.openplanner.team/stops/LRepous1"], ["https://tec.openplanner.team/stops/X657acb", "https://tec.openplanner.team/stops/X657adb"], ["https://tec.openplanner.team/stops/Lmnsech1", "https://tec.openplanner.team/stops/Lsmsech3"], ["https://tec.openplanner.team/stops/LlgLAMB2", "https://tec.openplanner.team/stops/LlgR-F1*"], ["https://tec.openplanner.team/stops/Cflmart1", "https://tec.openplanner.team/stops/Cflmart2"], ["https://tec.openplanner.team/stops/H4ka175b", "https://tec.openplanner.team/stops/H4ka183a"], ["https://tec.openplanner.team/stops/N538ala", "https://tec.openplanner.team/stops/N538alb"], ["https://tec.openplanner.team/stops/Cravold1", "https://tec.openplanner.team/stops/Cwgtill1"], ["https://tec.openplanner.team/stops/Cgyblob2", "https://tec.openplanner.team/stops/Cgylami1"], ["https://tec.openplanner.team/stops/LBhcent1", "https://tec.openplanner.team/stops/LBhsign1"], ["https://tec.openplanner.team/stops/LsVprum2", "https://tec.openplanner.team/stops/LwSgeme2"], ["https://tec.openplanner.team/stops/NL35aba", "https://tec.openplanner.team/stops/NL35abb"], ["https://tec.openplanner.team/stops/LeYmuhl1", "https://tec.openplanner.team/stops/LeYmuhl2"], ["https://tec.openplanner.team/stops/N539afa", "https://tec.openplanner.team/stops/N539ahb"], ["https://tec.openplanner.team/stops/N542alb", "https://tec.openplanner.team/stops/N578acb"], ["https://tec.openplanner.team/stops/X901aba", "https://tec.openplanner.team/stops/X901bob"], ["https://tec.openplanner.team/stops/Bcrbbou2", "https://tec.openplanner.team/stops/Bcrbros1"], ["https://tec.openplanner.team/stops/X641aba", "https://tec.openplanner.team/stops/X641abb"], ["https://tec.openplanner.team/stops/N501aea", "https://tec.openplanner.team/stops/N501aeb"], ["https://tec.openplanner.team/stops/Cmmgadi1", "https://tec.openplanner.team/stops/Cmmgadi2"], ["https://tec.openplanner.team/stops/Btubcim1", "https://tec.openplanner.team/stops/Btubcim2"], ["https://tec.openplanner.team/stops/Blasbgc1", "https://tec.openplanner.team/stops/Blasbgc2"], ["https://tec.openplanner.team/stops/X744abb", "https://tec.openplanner.team/stops/X746ahd"], ["https://tec.openplanner.team/stops/N501bra", "https://tec.openplanner.team/stops/N501brb"], ["https://tec.openplanner.team/stops/LRmkast*", "https://tec.openplanner.team/stops/LRmstat1"], ["https://tec.openplanner.team/stops/X912aaa", "https://tec.openplanner.team/stops/X912aja"], ["https://tec.openplanner.team/stops/Lseresi2", "https://tec.openplanner.team/stops/Lsetroq2"], ["https://tec.openplanner.team/stops/Bbstbxl2", "https://tec.openplanner.team/stops/Cbtstac2"], ["https://tec.openplanner.team/stops/Bbosdra1", "https://tec.openplanner.team/stops/Btiegma1"], ["https://tec.openplanner.team/stops/Bfledpi2", "https://tec.openplanner.team/stops/Bsamegl2"], ["https://tec.openplanner.team/stops/X359aad", "https://tec.openplanner.team/stops/X359abb"], ["https://tec.openplanner.team/stops/X982bma", "https://tec.openplanner.team/stops/X982bnb"], ["https://tec.openplanner.team/stops/H1cv103a", "https://tec.openplanner.team/stops/H1cv104b"], ["https://tec.openplanner.team/stops/H4am101a", "https://tec.openplanner.team/stops/H4an108b"], ["https://tec.openplanner.team/stops/H2an111a", "https://tec.openplanner.team/stops/H2an111b"], ["https://tec.openplanner.team/stops/N201aab", "https://tec.openplanner.team/stops/N211ala"], ["https://tec.openplanner.team/stops/H4av102a", "https://tec.openplanner.team/stops/H4av102b"], ["https://tec.openplanner.team/stops/Cladura5", "https://tec.openplanner.team/stops/Cwfcast1"], ["https://tec.openplanner.team/stops/LbAhull1", "https://tec.openplanner.team/stops/LhLdorf1"], ["https://tec.openplanner.team/stops/X739aab", "https://tec.openplanner.team/stops/X739aea"], ["https://tec.openplanner.team/stops/H1go118b", "https://tec.openplanner.team/stops/H1go169a"], ["https://tec.openplanner.team/stops/X741apa", "https://tec.openplanner.team/stops/X758aka"], ["https://tec.openplanner.team/stops/X952aba", "https://tec.openplanner.team/stops/X952aga"], ["https://tec.openplanner.team/stops/Llgbwez2", "https://tec.openplanner.team/stops/Llgcham4"], ["https://tec.openplanner.team/stops/N501cfb", "https://tec.openplanner.team/stops/N501mpa"], ["https://tec.openplanner.team/stops/LHUbail1", "https://tec.openplanner.team/stops/LTiespe4"], ["https://tec.openplanner.team/stops/X822aib", "https://tec.openplanner.team/stops/X836aha"], ["https://tec.openplanner.team/stops/X650ajb", "https://tec.openplanner.team/stops/X650amb"], ["https://tec.openplanner.team/stops/H2ll182a", "https://tec.openplanner.team/stops/H2ll182b"], ["https://tec.openplanner.team/stops/N426aaa", "https://tec.openplanner.team/stops/N426afa"], ["https://tec.openplanner.team/stops/X801bma", "https://tec.openplanner.team/stops/X801cla"], ["https://tec.openplanner.team/stops/Bwatmch2", "https://tec.openplanner.team/stops/Bwatpcs2"], ["https://tec.openplanner.team/stops/Lfhdonn1", "https://tec.openplanner.team/stops/Lfhpass2"], ["https://tec.openplanner.team/stops/LOCeg--2", "https://tec.openplanner.team/stops/LOCerzy1"], ["https://tec.openplanner.team/stops/LREprea1", "https://tec.openplanner.team/stops/LREprea2"], ["https://tec.openplanner.team/stops/LHOgymn1", "https://tec.openplanner.team/stops/LHOgymn2"], ["https://tec.openplanner.team/stops/Blmlcle2", "https://tec.openplanner.team/stops/Blmlvex2"], ["https://tec.openplanner.team/stops/Lsepcha4", "https://tec.openplanner.team/stops/Lsercha1"], ["https://tec.openplanner.team/stops/Lsmh1802", "https://tec.openplanner.team/stops/Lsmh3022"], ["https://tec.openplanner.team/stops/X901bba", "https://tec.openplanner.team/stops/X901bbb"], ["https://tec.openplanner.team/stops/Lvegazo1", "https://tec.openplanner.team/stops/Lveptle3"], ["https://tec.openplanner.team/stops/Llgchar2", "https://tec.openplanner.team/stops/Llgpier2"], ["https://tec.openplanner.team/stops/H2bh111a", "https://tec.openplanner.team/stops/H2bh118b"], ["https://tec.openplanner.team/stops/Lroboeg1", "https://tec.openplanner.team/stops/Lromc--2"], ["https://tec.openplanner.team/stops/H3lr109c", "https://tec.openplanner.team/stops/H3lr117b"], ["https://tec.openplanner.team/stops/Lhrlalo4", "https://tec.openplanner.team/stops/Ljubonf2"], ["https://tec.openplanner.team/stops/Bnodtir1", "https://tec.openplanner.team/stops/Boplham2"], ["https://tec.openplanner.team/stops/N166aba", "https://tec.openplanner.team/stops/N166aca"], ["https://tec.openplanner.team/stops/LHegame1", "https://tec.openplanner.team/stops/LHexhav2"], ["https://tec.openplanner.team/stops/Lsepcha1", "https://tec.openplanner.team/stops/Lsepcha4"], ["https://tec.openplanner.team/stops/Bdlmegl1", "https://tec.openplanner.team/stops/Bdvmsar2"], ["https://tec.openplanner.team/stops/LFCdree1", "https://tec.openplanner.team/stops/LMgbern1"], ["https://tec.openplanner.team/stops/Cgycorv4", "https://tec.openplanner.team/stops/Cgyrjau2"], ["https://tec.openplanner.team/stops/X818ada", "https://tec.openplanner.team/stops/X827aab"], ["https://tec.openplanner.team/stops/X822ana", "https://tec.openplanner.team/stops/X822anb"], ["https://tec.openplanner.team/stops/N122aaa", "https://tec.openplanner.team/stops/N122aab"], ["https://tec.openplanner.team/stops/Cmopn1", "https://tec.openplanner.team/stops/Cmopn4"], ["https://tec.openplanner.team/stops/H1gh162c", "https://tec.openplanner.team/stops/H1gh365a"], ["https://tec.openplanner.team/stops/X608aka", "https://tec.openplanner.team/stops/X608akb"], ["https://tec.openplanner.team/stops/Csograf1", "https://tec.openplanner.team/stops/Csograf4"], ["https://tec.openplanner.team/stops/N423aea", "https://tec.openplanner.team/stops/NH01aab"], ["https://tec.openplanner.team/stops/Bhenhau2", "https://tec.openplanner.team/stops/Bhenmal2"], ["https://tec.openplanner.team/stops/X664aic", "https://tec.openplanner.team/stops/X664aid"], ["https://tec.openplanner.team/stops/Ccogibr1", "https://tec.openplanner.team/stops/Ccojaur4"], ["https://tec.openplanner.team/stops/Lancolr2", "https://tec.openplanner.team/stops/Lanyser2"], ["https://tec.openplanner.team/stops/Bnivgen1", "https://tec.openplanner.team/stops/Bnivplt1"], ["https://tec.openplanner.team/stops/X721aob", "https://tec.openplanner.team/stops/X721atb"], ["https://tec.openplanner.team/stops/H1hm175a", "https://tec.openplanner.team/stops/H1hm176a"], ["https://tec.openplanner.team/stops/H4ty275a", "https://tec.openplanner.team/stops/H4ty299c"], ["https://tec.openplanner.team/stops/N562bqa", "https://tec.openplanner.team/stops/N562bsa"], ["https://tec.openplanner.team/stops/X733acb", "https://tec.openplanner.team/stops/X733aeb"], ["https://tec.openplanner.team/stops/Bhtibru2", "https://tec.openplanner.team/stops/Bhticbr2"], ["https://tec.openplanner.team/stops/Cfcbobr2", "https://tec.openplanner.team/stops/Cfccuch1"], ["https://tec.openplanner.team/stops/N160aca", "https://tec.openplanner.team/stops/N160adb"], ["https://tec.openplanner.team/stops/H1br121a", "https://tec.openplanner.team/stops/H1vs144a"], ["https://tec.openplanner.team/stops/X754aha", "https://tec.openplanner.team/stops/X754alb"], ["https://tec.openplanner.team/stops/N501dib", "https://tec.openplanner.team/stops/N501lea"], ["https://tec.openplanner.team/stops/Lagcler1", "https://tec.openplanner.team/stops/Laggare2"], ["https://tec.openplanner.team/stops/Cjugill6", "https://tec.openplanner.team/stops/CMchag2"], ["https://tec.openplanner.team/stops/H2hg268b", "https://tec.openplanner.team/stops/H2hg269a"], ["https://tec.openplanner.team/stops/Bbgerlr1", "https://tec.openplanner.team/stops/Bbgever1"], ["https://tec.openplanner.team/stops/Llgavoc1", "https://tec.openplanner.team/stops/Llgwiar1"], ["https://tec.openplanner.team/stops/LSBrouf2", "https://tec.openplanner.team/stops/LSktinc1"], ["https://tec.openplanner.team/stops/Lvtfrai2", "https://tec.openplanner.team/stops/Lvtlomb2"], ["https://tec.openplanner.team/stops/X672aga", "https://tec.openplanner.team/stops/X672aka"], ["https://tec.openplanner.team/stops/Lenclar1", "https://tec.openplanner.team/stops/Lenclar2"], ["https://tec.openplanner.team/stops/Bnivace2", "https://tec.openplanner.team/stops/Bnivaig2"], ["https://tec.openplanner.team/stops/X782aib", "https://tec.openplanner.team/stops/X782aka"], ["https://tec.openplanner.team/stops/H4gu110a", "https://tec.openplanner.team/stops/H4gu110b"], ["https://tec.openplanner.team/stops/LMOs45-1", "https://tec.openplanner.team/stops/LMOs45-2"], ["https://tec.openplanner.team/stops/LSPherd1", "https://tec.openplanner.team/stops/LSPsous1"], ["https://tec.openplanner.team/stops/LBAbooz2", "https://tec.openplanner.team/stops/LHOmc--1"], ["https://tec.openplanner.team/stops/Cbwmvri2", "https://tec.openplanner.team/stops/Cmqn5912"], ["https://tec.openplanner.team/stops/Cmtplac1", "https://tec.openplanner.team/stops/Cmtplac5"], ["https://tec.openplanner.team/stops/Lwaelme1", "https://tec.openplanner.team/stops/Lwapont2"], ["https://tec.openplanner.team/stops/H2ch102b", "https://tec.openplanner.team/stops/H2ch103b"], ["https://tec.openplanner.team/stops/X670agb", "https://tec.openplanner.team/stops/X670ahb"], ["https://tec.openplanner.team/stops/N501atb", "https://tec.openplanner.team/stops/N501nca"], ["https://tec.openplanner.team/stops/NL57aea", "https://tec.openplanner.team/stops/NL57aeb"], ["https://tec.openplanner.team/stops/LMschap2", "https://tec.openplanner.team/stops/LMsgara2"], ["https://tec.openplanner.team/stops/Bitrh%C3%BBl2", "https://tec.openplanner.team/stops/Bitrmde1"], ["https://tec.openplanner.team/stops/X727aha", "https://tec.openplanner.team/stops/X748aea"], ["https://tec.openplanner.team/stops/Cfomays1", "https://tec.openplanner.team/stops/Cgxfo141"], ["https://tec.openplanner.team/stops/H2gy101a", "https://tec.openplanner.team/stops/H2se105a"], ["https://tec.openplanner.team/stops/H1vg359a", "https://tec.openplanner.team/stops/H1vs145a"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X725bfb"], ["https://tec.openplanner.team/stops/X696aca", "https://tec.openplanner.team/stops/X696aka"], ["https://tec.openplanner.team/stops/Lhefoot1", "https://tec.openplanner.team/stops/Lhefoot2"], ["https://tec.openplanner.team/stops/Blinhue1", "https://tec.openplanner.team/stops/Blinhue2"], ["https://tec.openplanner.team/stops/Bbsifmo2", "https://tec.openplanner.team/stops/Bbsipos1"], ["https://tec.openplanner.team/stops/H4ma200a", "https://tec.openplanner.team/stops/H4ma201a"], ["https://tec.openplanner.team/stops/H4me211c", "https://tec.openplanner.team/stops/H4ve133b"], ["https://tec.openplanner.team/stops/Bcrncor2", "https://tec.openplanner.team/stops/Bcrngat2"], ["https://tec.openplanner.team/stops/H4he103a", "https://tec.openplanner.team/stops/H4he105b"], ["https://tec.openplanner.team/stops/LHCbran1", "https://tec.openplanner.team/stops/LWEwilc1"], ["https://tec.openplanner.team/stops/LtHkirc3", "https://tec.openplanner.team/stops/LtHkreu3"], ["https://tec.openplanner.team/stops/Brebgar2", "https://tec.openplanner.team/stops/Brebraf1"], ["https://tec.openplanner.team/stops/Lgrmc--2", "https://tec.openplanner.team/stops/Lgrside1"], ["https://tec.openplanner.team/stops/Cmaacac2", "https://tec.openplanner.team/stops/Cmapeet1"], ["https://tec.openplanner.team/stops/X955ada", "https://tec.openplanner.team/stops/X955aha"], ["https://tec.openplanner.team/stops/LhEcolo1", "https://tec.openplanner.team/stops/LhEcolo2"], ["https://tec.openplanner.team/stops/X752aaa", "https://tec.openplanner.team/stops/X752aca"], ["https://tec.openplanner.team/stops/N516aaa", "https://tec.openplanner.team/stops/N516amc"], ["https://tec.openplanner.team/stops/N243aaa", "https://tec.openplanner.team/stops/N243aab"], ["https://tec.openplanner.team/stops/X636ada", "https://tec.openplanner.team/stops/X636bab"], ["https://tec.openplanner.team/stops/N331afa", "https://tec.openplanner.team/stops/N331afb"], ["https://tec.openplanner.team/stops/X638aha", "https://tec.openplanner.team/stops/X638ama"], ["https://tec.openplanner.team/stops/Bhmmcim1", "https://tec.openplanner.team/stops/Bhmmvdu2"], ["https://tec.openplanner.team/stops/LBBlaga2", "https://tec.openplanner.team/stops/LBBodet2"], ["https://tec.openplanner.team/stops/H5pe139a", "https://tec.openplanner.team/stops/H5pe139b"], ["https://tec.openplanner.team/stops/LGMdrev2", "https://tec.openplanner.team/stops/LGMforg1"], ["https://tec.openplanner.team/stops/H4hn113a", "https://tec.openplanner.team/stops/H4hn115b"], ["https://tec.openplanner.team/stops/N509ara", "https://tec.openplanner.team/stops/N509arb"], ["https://tec.openplanner.team/stops/H5at107b", "https://tec.openplanner.team/stops/H5at124a"], ["https://tec.openplanner.team/stops/H1au101a", "https://tec.openplanner.team/stops/H1bx108a"], ["https://tec.openplanner.team/stops/LPReg--1", "https://tec.openplanner.team/stops/Lrofont1"], ["https://tec.openplanner.team/stops/N528acb", "https://tec.openplanner.team/stops/N528aeb"], ["https://tec.openplanner.team/stops/Cliburl2", "https://tec.openplanner.team/stops/Cliegli2"], ["https://tec.openplanner.team/stops/N501emb", "https://tec.openplanner.team/stops/N501kka"], ["https://tec.openplanner.team/stops/LPT97--2", "https://tec.openplanner.team/stops/LPTgran1"], ["https://tec.openplanner.team/stops/H1hq129a", "https://tec.openplanner.team/stops/H1hq158a"], ["https://tec.openplanner.team/stops/Ccuhsti2", "https://tec.openplanner.team/stops/Cpipost2"], ["https://tec.openplanner.team/stops/Bgnvqve1", "https://tec.openplanner.team/stops/Bgnvtas1"], ["https://tec.openplanner.team/stops/LWblesp1", "https://tec.openplanner.team/stops/LWblesp2"], ["https://tec.openplanner.team/stops/N519aga", "https://tec.openplanner.team/stops/N519aha"], ["https://tec.openplanner.team/stops/N538ava", "https://tec.openplanner.team/stops/N539avb"], ["https://tec.openplanner.team/stops/X756aec", "https://tec.openplanner.team/stops/X756ajb"], ["https://tec.openplanner.team/stops/Bbch4br3", "https://tec.openplanner.team/stops/Bbchrra3"], ["https://tec.openplanner.team/stops/N551acb", "https://tec.openplanner.team/stops/N551alb"], ["https://tec.openplanner.team/stops/LPLarbo2", "https://tec.openplanner.team/stops/LPLheid1"], ["https://tec.openplanner.team/stops/N514afa", "https://tec.openplanner.team/stops/N514ahb"], ["https://tec.openplanner.team/stops/Lgrcrac2", "https://tec.openplanner.team/stops/Lgrrein2"], ["https://tec.openplanner.team/stops/Lhrjaur1", "https://tec.openplanner.team/stops/Lhrjaur2"], ["https://tec.openplanner.team/stops/LrAeife1", "https://tec.openplanner.team/stops/LrAiter2"], ["https://tec.openplanner.team/stops/Llgpier1", "https://tec.openplanner.team/stops/Llgpier2"], ["https://tec.openplanner.team/stops/LCIneuv2", "https://tec.openplanner.team/stops/LLtwanz1"], ["https://tec.openplanner.team/stops/LDAptbo2", "https://tec.openplanner.team/stops/LDAwich1"], ["https://tec.openplanner.team/stops/LnDkreu1", "https://tec.openplanner.team/stops/LnDkreu2"], ["https://tec.openplanner.team/stops/H2hl112b", "https://tec.openplanner.team/stops/H2hp118b"], ["https://tec.openplanner.team/stops/Brebcha1", "https://tec.openplanner.team/stops/Brebcha2"], ["https://tec.openplanner.team/stops/N556aea", "https://tec.openplanner.team/stops/N556aeb"], ["https://tec.openplanner.team/stops/Cna4che2", "https://tec.openplanner.team/stops/Cnathib1"], ["https://tec.openplanner.team/stops/H2se106a", "https://tec.openplanner.team/stops/H2se107a"], ["https://tec.openplanner.team/stops/N569aca", "https://tec.openplanner.team/stops/N569acb"], ["https://tec.openplanner.team/stops/Bhandub2", "https://tec.openplanner.team/stops/Bthscbl1"], ["https://tec.openplanner.team/stops/LrEkais2", "https://tec.openplanner.team/stops/LrEkais3"], ["https://tec.openplanner.team/stops/LWEhosp1", "https://tec.openplanner.team/stops/LWEpaul1"], ["https://tec.openplanner.team/stops/Cmlange2", "https://tec.openplanner.team/stops/Cmtrdec2"], ["https://tec.openplanner.team/stops/LRRecdu1", "https://tec.openplanner.team/stops/LRRlimi2"], ["https://tec.openplanner.team/stops/Cpcchau", "https://tec.openplanner.team/stops/Cpctrau2"], ["https://tec.openplanner.team/stops/N201ala", "https://tec.openplanner.team/stops/N201amb"], ["https://tec.openplanner.team/stops/X773afa", "https://tec.openplanner.team/stops/X954acb"], ["https://tec.openplanner.team/stops/H5qu142b", "https://tec.openplanner.team/stops/H5qu154b"], ["https://tec.openplanner.team/stops/N115aca", "https://tec.openplanner.team/stops/N170acb"], ["https://tec.openplanner.team/stops/Ccymabo2", "https://tec.openplanner.team/stops/Crbgare1"], ["https://tec.openplanner.team/stops/X908aka", "https://tec.openplanner.team/stops/X908amb"], ["https://tec.openplanner.team/stops/H2sb258a", "https://tec.openplanner.team/stops/H2sb258b"], ["https://tec.openplanner.team/stops/Bdlmgla2", "https://tec.openplanner.team/stops/Bwavlca1"], ["https://tec.openplanner.team/stops/Cflsabl1", "https://tec.openplanner.team/stops/Cflsabl2"], ["https://tec.openplanner.team/stops/LiVdorf1", "https://tec.openplanner.team/stops/LONcroi2"], ["https://tec.openplanner.team/stops/Bwatmch3", "https://tec.openplanner.team/stops/Bwatpcs2"], ["https://tec.openplanner.team/stops/Cgocalv1", "https://tec.openplanner.team/stops/Cgocalv2"], ["https://tec.openplanner.team/stops/H1qu100b", "https://tec.openplanner.team/stops/H1qu101a"], ["https://tec.openplanner.team/stops/Bnivind1", "https://tec.openplanner.team/stops/Bnivtec2"], ["https://tec.openplanner.team/stops/Cjugohi4", "https://tec.openplanner.team/stops/Cjuvpla1"], ["https://tec.openplanner.team/stops/X806aca", "https://tec.openplanner.team/stops/X806aia"], ["https://tec.openplanner.team/stops/Cnapair2", "https://tec.openplanner.team/stops/N137aca"], ["https://tec.openplanner.team/stops/LOUherm2", "https://tec.openplanner.team/stops/Lvitour2"], ["https://tec.openplanner.team/stops/N244amb", "https://tec.openplanner.team/stops/N244ana"], ["https://tec.openplanner.team/stops/H4ln128a", "https://tec.openplanner.team/stops/H4ln128b"], ["https://tec.openplanner.team/stops/X757aaa", "https://tec.openplanner.team/stops/X758aea"], ["https://tec.openplanner.team/stops/N539aab", "https://tec.openplanner.team/stops/N539aea"], ["https://tec.openplanner.team/stops/LCTcret1", "https://tec.openplanner.team/stops/LCTcret2"], ["https://tec.openplanner.team/stops/X561aca", "https://tec.openplanner.team/stops/X561adb"], ["https://tec.openplanner.team/stops/H4er123b", "https://tec.openplanner.team/stops/H4gu109a"], ["https://tec.openplanner.team/stops/LlNbusc2", "https://tec.openplanner.team/stops/LWEgend1"], ["https://tec.openplanner.team/stops/X741aoa", "https://tec.openplanner.team/stops/X741aob"], ["https://tec.openplanner.team/stops/Lsemaha2", "https://tec.openplanner.team/stops/Lseverh1"], ["https://tec.openplanner.team/stops/N501hlb", "https://tec.openplanner.team/stops/N501hly"], ["https://tec.openplanner.team/stops/H4ry129a", "https://tec.openplanner.team/stops/H4ry140a"], ["https://tec.openplanner.team/stops/N502aaa", "https://tec.openplanner.team/stops/N502aab"], ["https://tec.openplanner.team/stops/H4ab100b", "https://tec.openplanner.team/stops/H5ar127b"], ["https://tec.openplanner.team/stops/H2le153b", "https://tec.openplanner.team/stops/H2re163a"], ["https://tec.openplanner.team/stops/Chhsncb1", "https://tec.openplanner.team/stops/Chhsncb2"], ["https://tec.openplanner.team/stops/X775aka", "https://tec.openplanner.team/stops/X775akb"], ["https://tec.openplanner.team/stops/X601atb", "https://tec.openplanner.team/stops/X601aud"], ["https://tec.openplanner.team/stops/X879ama", "https://tec.openplanner.team/stops/X879asa"], ["https://tec.openplanner.team/stops/Cwfbarr1", "https://tec.openplanner.team/stops/Cwfmoul1"], ["https://tec.openplanner.team/stops/NL74ada", "https://tec.openplanner.team/stops/NL74adb"], ["https://tec.openplanner.team/stops/Clacast1", "https://tec.openplanner.team/stops/Clafaub1"], ["https://tec.openplanner.team/stops/H1hr118b", "https://tec.openplanner.team/stops/H1ne143a"], ["https://tec.openplanner.team/stops/X946aca", "https://tec.openplanner.team/stops/X946acb"], ["https://tec.openplanner.team/stops/H1mb168a", "https://tec.openplanner.team/stops/H1mb168b"], ["https://tec.openplanner.team/stops/Crebien2", "https://tec.openplanner.team/stops/Crestan2"], ["https://tec.openplanner.team/stops/H1au111b", "https://tec.openplanner.team/stops/H1ro139b"], ["https://tec.openplanner.team/stops/LLUlieg1", "https://tec.openplanner.team/stops/LLUmont2"], ["https://tec.openplanner.team/stops/H1be104b", "https://tec.openplanner.team/stops/H1mc129a"], ["https://tec.openplanner.team/stops/N115ada", "https://tec.openplanner.team/stops/N147afa"], ["https://tec.openplanner.team/stops/LFMveur2", "https://tec.openplanner.team/stops/LFPknap2"], ["https://tec.openplanner.team/stops/N534bng", "https://tec.openplanner.team/stops/N534bnh"], ["https://tec.openplanner.team/stops/LAxchpl2", "https://tec.openplanner.team/stops/Llianix2"], ["https://tec.openplanner.team/stops/LBsfer-1", "https://tec.openplanner.team/stops/LBsfer-2"], ["https://tec.openplanner.team/stops/X910aeb", "https://tec.openplanner.team/stops/X951acb"], ["https://tec.openplanner.team/stops/Bbearwa2", "https://tec.openplanner.team/stops/Bmlncle1"], ["https://tec.openplanner.team/stops/Ccugilb2", "https://tec.openplanner.team/stops/Cpicite1"], ["https://tec.openplanner.team/stops/N521asa", "https://tec.openplanner.team/stops/N521atb"], ["https://tec.openplanner.team/stops/Cmofosb2", "https://tec.openplanner.team/stops/Crocpai1"], ["https://tec.openplanner.team/stops/N514aca", "https://tec.openplanner.team/stops/N514aoa"], ["https://tec.openplanner.team/stops/Cdogrro2", "https://tec.openplanner.team/stops/Cstdona1"], ["https://tec.openplanner.team/stops/Borblim1", "https://tec.openplanner.team/stops/Borbtre1"], ["https://tec.openplanner.team/stops/N141aob", "https://tec.openplanner.team/stops/N146aab"], ["https://tec.openplanner.team/stops/LJAdeho3", "https://tec.openplanner.team/stops/LJAgoff1"], ["https://tec.openplanner.team/stops/LDAcite2", "https://tec.openplanner.team/stops/LDArich2"], ["https://tec.openplanner.team/stops/LkEhaag1", "https://tec.openplanner.team/stops/LkEkric1"], ["https://tec.openplanner.team/stops/Lsnferr2", "https://tec.openplanner.team/stops/Lsnpaqu1"], ["https://tec.openplanner.team/stops/Bitrcha1", "https://tec.openplanner.team/stops/Bitregl2"], ["https://tec.openplanner.team/stops/LHCbois1", "https://tec.openplanner.team/stops/LHCquat1"], ["https://tec.openplanner.team/stops/X614bca", "https://tec.openplanner.team/stops/X626akb"], ["https://tec.openplanner.team/stops/Blsmcha2", "https://tec.openplanner.team/stops/Blsmcha4"], ["https://tec.openplanner.team/stops/N254aaa", "https://tec.openplanner.team/stops/N254aca"], ["https://tec.openplanner.team/stops/Bjaufca1", "https://tec.openplanner.team/stops/Bjaugar2"], ["https://tec.openplanner.team/stops/LDLgran1", "https://tec.openplanner.team/stops/LDLgran4"], ["https://tec.openplanner.team/stops/X902afa", "https://tec.openplanner.team/stops/X999aga"], ["https://tec.openplanner.team/stops/X717agb", "https://tec.openplanner.team/stops/X717aja"], ["https://tec.openplanner.team/stops/H1hh116a", "https://tec.openplanner.team/stops/H1hh117b"], ["https://tec.openplanner.team/stops/H2ch101b", "https://tec.openplanner.team/stops/H2lh130a"], ["https://tec.openplanner.team/stops/Lpedeta1", "https://tec.openplanner.team/stops/Lpeflec1"], ["https://tec.openplanner.team/stops/Canfief2", "https://tec.openplanner.team/stops/Canjon1"], ["https://tec.openplanner.team/stops/X813aab", "https://tec.openplanner.team/stops/X813abb"], ["https://tec.openplanner.team/stops/LNCtour1", "https://tec.openplanner.team/stops/LNCvill1"], ["https://tec.openplanner.team/stops/H1ho137a", "https://tec.openplanner.team/stops/H1sg148a"], ["https://tec.openplanner.team/stops/H4mo147a", "https://tec.openplanner.team/stops/H4mo151a"], ["https://tec.openplanner.team/stops/N234acb", "https://tec.openplanner.team/stops/N234afb"], ["https://tec.openplanner.team/stops/N501hzc", "https://tec.openplanner.team/stops/N501ibb"], ["https://tec.openplanner.team/stops/H1ha192a", "https://tec.openplanner.team/stops/H1ha192b"], ["https://tec.openplanner.team/stops/N501cna", "https://tec.openplanner.team/stops/N501cnb"], ["https://tec.openplanner.team/stops/Loudela1", "https://tec.openplanner.team/stops/Loudela2"], ["https://tec.openplanner.team/stops/N390aab", "https://tec.openplanner.team/stops/N390aba"], ["https://tec.openplanner.team/stops/X608abb", "https://tec.openplanner.team/stops/X608ajb"], ["https://tec.openplanner.team/stops/H5at120a", "https://tec.openplanner.team/stops/H5at141b"], ["https://tec.openplanner.team/stops/LNAanne1", "https://tec.openplanner.team/stops/LNAanne2"], ["https://tec.openplanner.team/stops/N528afy", "https://tec.openplanner.team/stops/N528aja"], ["https://tec.openplanner.team/stops/LHEpriv1", "https://tec.openplanner.team/stops/LHEpriv2"], ["https://tec.openplanner.team/stops/LBrec--1", "https://tec.openplanner.team/stops/LBrneli2"], ["https://tec.openplanner.team/stops/N528asa", "https://tec.openplanner.team/stops/N528aua"], ["https://tec.openplanner.team/stops/Boplcar3", "https://tec.openplanner.team/stops/Boplsma3"], ["https://tec.openplanner.team/stops/H4rx142a", "https://tec.openplanner.team/stops/H4tg163a"], ["https://tec.openplanner.team/stops/NR10aca", "https://tec.openplanner.team/stops/NR10acb"], ["https://tec.openplanner.team/stops/X633alb", "https://tec.openplanner.team/stops/X633ama"], ["https://tec.openplanner.team/stops/X783acc", "https://tec.openplanner.team/stops/X783ada"], ["https://tec.openplanner.team/stops/N501ima", "https://tec.openplanner.team/stops/N501nbb"], ["https://tec.openplanner.team/stops/LBOande1", "https://tec.openplanner.team/stops/LBOande2"], ["https://tec.openplanner.team/stops/X614aca", "https://tec.openplanner.team/stops/X614aza"], ["https://tec.openplanner.team/stops/Ljerobi1", "https://tec.openplanner.team/stops/Ljerouy1"], ["https://tec.openplanner.team/stops/LLTfall1", "https://tec.openplanner.team/stops/LLThosd1"], ["https://tec.openplanner.team/stops/Ccspla", "https://tec.openplanner.team/stops/Ccstord1"], ["https://tec.openplanner.team/stops/X725bcb", "https://tec.openplanner.team/stops/X725bda"], ["https://tec.openplanner.team/stops/X654aaa", "https://tec.openplanner.team/stops/X654aba"], ["https://tec.openplanner.team/stops/LMfange2", "https://tec.openplanner.team/stops/LMffoot2"], ["https://tec.openplanner.team/stops/N287aaa", "https://tec.openplanner.team/stops/N287abb"], ["https://tec.openplanner.team/stops/H4bw100b", "https://tec.openplanner.team/stops/H4co103a"], ["https://tec.openplanner.team/stops/Bsdecdi1", "https://tec.openplanner.team/stops/N526abb"], ["https://tec.openplanner.team/stops/Cfnsenz1", "https://tec.openplanner.team/stops/N106akb"], ["https://tec.openplanner.team/stops/X636bfa", "https://tec.openplanner.team/stops/X636bfb"], ["https://tec.openplanner.team/stops/H1cd114b", "https://tec.openplanner.team/stops/H1ne146a"], ["https://tec.openplanner.team/stops/LCltrib2", "https://tec.openplanner.team/stops/LThgare2"], ["https://tec.openplanner.team/stops/Cjufour3", "https://tec.openplanner.team/stops/Clostan1"], ["https://tec.openplanner.team/stops/X999ana", "https://tec.openplanner.team/stops/X999asb"], ["https://tec.openplanner.team/stops/H1hc125a", "https://tec.openplanner.team/stops/H1hc126a"], ["https://tec.openplanner.team/stops/N117aaa", "https://tec.openplanner.team/stops/N117bba"], ["https://tec.openplanner.team/stops/LHTeg--2", "https://tec.openplanner.team/stops/LHTeg--5"], ["https://tec.openplanner.team/stops/Bblacim2", "https://tec.openplanner.team/stops/Bblavba1"], ["https://tec.openplanner.team/stops/X786aba", "https://tec.openplanner.team/stops/X786abb"], ["https://tec.openplanner.team/stops/Llgm%C3%A9di2", "https://tec.openplanner.team/stops/Llgnata4"], ["https://tec.openplanner.team/stops/Lvealbe1", "https://tec.openplanner.team/stops/Lvethea2"], ["https://tec.openplanner.team/stops/Llgabat2", "https://tec.openplanner.team/stops/Llgarmu4"], ["https://tec.openplanner.team/stops/N234aba", "https://tec.openplanner.team/stops/N234abb"], ["https://tec.openplanner.team/stops/N141aja", "https://tec.openplanner.team/stops/N146aaa"], ["https://tec.openplanner.team/stops/H4ss155a", "https://tec.openplanner.team/stops/H4ss155b"], ["https://tec.openplanner.team/stops/LeUgb--1", "https://tec.openplanner.team/stops/LkTkabi2"], ["https://tec.openplanner.team/stops/Lvteg--2", "https://tec.openplanner.team/stops/Lvtfrai2"], ["https://tec.openplanner.team/stops/LkEbran1", "https://tec.openplanner.team/stops/LMsbusc1"], ["https://tec.openplanner.team/stops/LSyeg--2", "https://tec.openplanner.team/stops/LTNmont2"], ["https://tec.openplanner.team/stops/Ldifoye1", "https://tec.openplanner.team/stops/Lprorph1"], ["https://tec.openplanner.team/stops/Ccacoup2", "https://tec.openplanner.team/stops/Cerrver4"], ["https://tec.openplanner.team/stops/X612acb", "https://tec.openplanner.team/stops/X612adb"], ["https://tec.openplanner.team/stops/LlNkirc1", "https://tec.openplanner.team/stops/LlNlont1"], ["https://tec.openplanner.team/stops/H1wa144a", "https://tec.openplanner.team/stops/H1wa153a"], ["https://tec.openplanner.team/stops/Bndb4ch2", "https://tec.openplanner.team/stops/Bptblma2"], ["https://tec.openplanner.team/stops/LPRbayb1", "https://tec.openplanner.team/stops/LPRmoul1"], ["https://tec.openplanner.team/stops/Llgpont1", "https://tec.openplanner.team/stops/Llgstap1"], ["https://tec.openplanner.team/stops/Cmychau2", "https://tec.openplanner.team/stops/Cmychpl1"], ["https://tec.openplanner.team/stops/N520aca", "https://tec.openplanner.team/stops/N520ajb"], ["https://tec.openplanner.team/stops/Bgoemho1", "https://tec.openplanner.team/stops/Btiegma1"], ["https://tec.openplanner.team/stops/LBPmili1", "https://tec.openplanner.team/stops/LGLcour4"], ["https://tec.openplanner.team/stops/N548aca", "https://tec.openplanner.team/stops/N548aib"], ["https://tec.openplanner.team/stops/H4ve133a", "https://tec.openplanner.team/stops/H4ve140b"], ["https://tec.openplanner.team/stops/Blemsta1", "https://tec.openplanner.team/stops/Blemsta2"], ["https://tec.openplanner.team/stops/LBBabat1", "https://tec.openplanner.team/stops/LCLscie1"], ["https://tec.openplanner.team/stops/X727aha", "https://tec.openplanner.team/stops/X767aha"], ["https://tec.openplanner.team/stops/X654afa", "https://tec.openplanner.team/stops/X654agb"], ["https://tec.openplanner.team/stops/LSPbalm1", "https://tec.openplanner.team/stops/LSPcomm1"], ["https://tec.openplanner.team/stops/N135axa", "https://tec.openplanner.team/stops/N135axb"], ["https://tec.openplanner.team/stops/LBRbriv1", "https://tec.openplanner.team/stops/LBRpier2"], ["https://tec.openplanner.team/stops/LAYathe1", "https://tec.openplanner.team/stops/LAYpl--2"], ["https://tec.openplanner.team/stops/N145aeb", "https://tec.openplanner.team/stops/N149acb"], ["https://tec.openplanner.team/stops/LBEmich1", "https://tec.openplanner.team/stops/LDLheid2"], ["https://tec.openplanner.team/stops/H5at104a", "https://tec.openplanner.team/stops/H5at116a"], ["https://tec.openplanner.team/stops/X664ala", "https://tec.openplanner.team/stops/X664ana"], ["https://tec.openplanner.team/stops/Bvlvmar1", "https://tec.openplanner.team/stops/Bvlvmar2"], ["https://tec.openplanner.team/stops/H1ms259a", "https://tec.openplanner.team/stops/H1ms314a"], ["https://tec.openplanner.team/stops/H4do105a", "https://tec.openplanner.team/stops/H4do106a"], ["https://tec.openplanner.team/stops/Bvlvbth2", "https://tec.openplanner.team/stops/Bvlvpco1"], ["https://tec.openplanner.team/stops/LMFmerl2", "https://tec.openplanner.team/stops/Lqbecco2"], ["https://tec.openplanner.team/stops/Bblaegl2", "https://tec.openplanner.team/stops/Bblaphi1"], ["https://tec.openplanner.team/stops/N165aaa", "https://tec.openplanner.team/stops/N166aca"], ["https://tec.openplanner.team/stops/Bnivfdu1", "https://tec.openplanner.team/stops/Bnivfdu2"], ["https://tec.openplanner.team/stops/Brsrmon1", "https://tec.openplanner.team/stops/Brsrpmo1"], ["https://tec.openplanner.team/stops/X601aaa", "https://tec.openplanner.team/stops/X601aab"], ["https://tec.openplanner.team/stops/H1as100a", "https://tec.openplanner.team/stops/H1as104b"], ["https://tec.openplanner.team/stops/Lccaigr1", "https://tec.openplanner.team/stops/LRArami1"], ["https://tec.openplanner.team/stops/N506amb", "https://tec.openplanner.team/stops/NL67adb"], ["https://tec.openplanner.team/stops/LLYchpl2", "https://tec.openplanner.team/stops/LLYplac1"], ["https://tec.openplanner.team/stops/LDmcruc1", "https://tec.openplanner.team/stops/LDmhave1"], ["https://tec.openplanner.team/stops/H4ma398a", "https://tec.openplanner.team/stops/H4ma398b"], ["https://tec.openplanner.team/stops/Bmartil2", "https://tec.openplanner.team/stops/Bvlvpco2"], ["https://tec.openplanner.team/stops/N507aac", "https://tec.openplanner.team/stops/N507aba"], ["https://tec.openplanner.team/stops/N531asc", "https://tec.openplanner.team/stops/N561aic"], ["https://tec.openplanner.team/stops/LDOprev1", "https://tec.openplanner.team/stops/LHVgoro2"], ["https://tec.openplanner.team/stops/Cvpplan2", "https://tec.openplanner.team/stops/Cvpsawe2"], ["https://tec.openplanner.team/stops/N532aaa", "https://tec.openplanner.team/stops/N574aeb"], ["https://tec.openplanner.team/stops/Bthsset1", "https://tec.openplanner.team/stops/Bthsset2"], ["https://tec.openplanner.team/stops/N532agb", "https://tec.openplanner.team/stops/N532aja"], ["https://tec.openplanner.team/stops/Bnivcol1", "https://tec.openplanner.team/stops/Bnivgen1"], ["https://tec.openplanner.team/stops/Bquecro2", "https://tec.openplanner.team/stops/Bquepbr1"], ["https://tec.openplanner.team/stops/X754awa", "https://tec.openplanner.team/stops/X754aza"], ["https://tec.openplanner.team/stops/LHVetoi1", "https://tec.openplanner.team/stops/LJAroue2"], ["https://tec.openplanner.team/stops/Cchcase4", "https://tec.openplanner.team/stops/Cchparc3"], ["https://tec.openplanner.team/stops/N528aqa", "https://tec.openplanner.team/stops/N528aqb"], ["https://tec.openplanner.team/stops/Cgrchea2", "https://tec.openplanner.team/stops/Cjochap2"], ["https://tec.openplanner.team/stops/H2lh130a", "https://tec.openplanner.team/stops/H2lh130b"], ["https://tec.openplanner.team/stops/H1qp141b", "https://tec.openplanner.team/stops/H1qp142a"], ["https://tec.openplanner.team/stops/X743afb", "https://tec.openplanner.team/stops/X743agb"], ["https://tec.openplanner.team/stops/Cgzabau1", "https://tec.openplanner.team/stops/Cgzmira1"], ["https://tec.openplanner.team/stops/H2ml113b", "https://tec.openplanner.team/stops/H2ml114a"], ["https://tec.openplanner.team/stops/LLUgend1", "https://tec.openplanner.team/stops/LLUreut2"], ["https://tec.openplanner.team/stops/X371agb", "https://tec.openplanner.team/stops/X371aia"], ["https://tec.openplanner.team/stops/N561aca", "https://tec.openplanner.team/stops/N561aha"], ["https://tec.openplanner.team/stops/LTHcime1", "https://tec.openplanner.team/stops/LTHjevo2"], ["https://tec.openplanner.team/stops/H4ta120a", "https://tec.openplanner.team/stops/H4ta120b"], ["https://tec.openplanner.team/stops/LaApost2", "https://tec.openplanner.team/stops/LVAbuss1"], ["https://tec.openplanner.team/stops/Lmlec--2", "https://tec.openplanner.team/stops/Lmlprie2"], ["https://tec.openplanner.team/stops/H5el105a", "https://tec.openplanner.team/stops/H5rx131b"], ["https://tec.openplanner.team/stops/Llgbavi3", "https://tec.openplanner.team/stops/Llgbavi4"], ["https://tec.openplanner.team/stops/LgRzent2", "https://tec.openplanner.team/stops/LnUcamp2"], ["https://tec.openplanner.team/stops/LBTxhen4", "https://tec.openplanner.team/stops/LHEches1"], ["https://tec.openplanner.team/stops/N201aec", "https://tec.openplanner.team/stops/N201aia"], ["https://tec.openplanner.team/stops/X723aia", "https://tec.openplanner.team/stops/X723ajb"], ["https://tec.openplanner.team/stops/Llgatel1", "https://tec.openplanner.team/stops/Llggee52"], ["https://tec.openplanner.team/stops/Cfocorn2", "https://tec.openplanner.team/stops/Cfowall1"], ["https://tec.openplanner.team/stops/N516aha", "https://tec.openplanner.team/stops/N581abb"], ["https://tec.openplanner.team/stops/LlCgren1", "https://tec.openplanner.team/stops/LlChebs2"], ["https://tec.openplanner.team/stops/LBKmare2", "https://tec.openplanner.team/stops/LBveg--1"], ["https://tec.openplanner.team/stops/LlgOPER4", "https://tec.openplanner.team/stops/LlgR-F1*"], ["https://tec.openplanner.team/stops/LWOmart2", "https://tec.openplanner.team/stops/LWOrout2"], ["https://tec.openplanner.team/stops/N229apb", "https://tec.openplanner.team/stops/N231adb"], ["https://tec.openplanner.team/stops/LHTbeau1", "https://tec.openplanner.team/stops/LHTmc--2"], ["https://tec.openplanner.team/stops/Lhrhenr1", "https://tec.openplanner.team/stops/Lhrsimo2"], ["https://tec.openplanner.team/stops/N106aja", "https://tec.openplanner.team/stops/N106aka"], ["https://tec.openplanner.team/stops/N874aib", "https://tec.openplanner.team/stops/N874ajb"], ["https://tec.openplanner.team/stops/LTPwann1", "https://tec.openplanner.team/stops/LWn24--1"], ["https://tec.openplanner.team/stops/N528avb", "https://tec.openplanner.team/stops/N528awb"], ["https://tec.openplanner.team/stops/Ljhcarr2", "https://tec.openplanner.team/stops/Ljhheus2"], ["https://tec.openplanner.team/stops/X738aab", "https://tec.openplanner.team/stops/X739aba"], ["https://tec.openplanner.team/stops/H4mo146b", "https://tec.openplanner.team/stops/H4mo157b"], ["https://tec.openplanner.team/stops/N516aca", "https://tec.openplanner.team/stops/N516alb"], ["https://tec.openplanner.team/stops/H1po154a", "https://tec.openplanner.team/stops/H1tl122a"], ["https://tec.openplanner.team/stops/Brsgm802", "https://tec.openplanner.team/stops/Brsgpbo2"], ["https://tec.openplanner.team/stops/LVbgend2", "https://tec.openplanner.team/stops/LVbpave1"], ["https://tec.openplanner.team/stops/Llgongr2", "https://tec.openplanner.team/stops/Llgongr3"], ["https://tec.openplanner.team/stops/Cfcbosq1", "https://tec.openplanner.team/stops/Cfcbosq2"], ["https://tec.openplanner.team/stops/LrAmuhl1", "https://tec.openplanner.team/stops/LrAmuhl2"], ["https://tec.openplanner.team/stops/LFCscho1", "https://tec.openplanner.team/stops/LFCscho2"], ["https://tec.openplanner.team/stops/H4ir165a", "https://tec.openplanner.team/stops/H5at108a"], ["https://tec.openplanner.team/stops/Ccimont1", "https://tec.openplanner.team/stops/Ccisolv1"], ["https://tec.openplanner.team/stops/Cgdcent2", "https://tec.openplanner.team/stops/H1be102a"], ["https://tec.openplanner.team/stops/LhSbruc2", "https://tec.openplanner.team/stops/LhSkirc2"], ["https://tec.openplanner.team/stops/X640aib", "https://tec.openplanner.team/stops/X640atb"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LCxc6192"], ["https://tec.openplanner.team/stops/LWepost2", "https://tec.openplanner.team/stops/LWepost3"], ["https://tec.openplanner.team/stops/N522asa", "https://tec.openplanner.team/stops/N522asb"], ["https://tec.openplanner.team/stops/N525aoa", "https://tec.openplanner.team/stops/N525atb"], ["https://tec.openplanner.team/stops/Bneelaa1", "https://tec.openplanner.team/stops/Braccen2"], ["https://tec.openplanner.team/stops/N310aca", "https://tec.openplanner.team/stops/N343aea"], ["https://tec.openplanner.team/stops/X609aba", "https://tec.openplanner.team/stops/X609acb"], ["https://tec.openplanner.team/stops/N565ada", "https://tec.openplanner.team/stops/N565adb"], ["https://tec.openplanner.team/stops/X790aca", "https://tec.openplanner.team/stops/X790ana"], ["https://tec.openplanner.team/stops/Bolgcsa1", "https://tec.openplanner.team/stops/Bolgeva2"], ["https://tec.openplanner.team/stops/Lbococh1", "https://tec.openplanner.team/stops/Lsefore2"], ["https://tec.openplanner.team/stops/H4he106a", "https://tec.openplanner.team/stops/H4ka186a"], ["https://tec.openplanner.team/stops/H4vx363a", "https://tec.openplanner.team/stops/H4vx364d"], ["https://tec.openplanner.team/stops/Lflroms5", "https://tec.openplanner.team/stops/Lropass2"], ["https://tec.openplanner.team/stops/Louduna*", "https://tec.openplanner.team/stops/Louhauf2"], ["https://tec.openplanner.team/stops/X804ala", "https://tec.openplanner.team/stops/X804ana"], ["https://tec.openplanner.team/stops/Bnivbne2", "https://tec.openplanner.team/stops/Bnivhut1"], ["https://tec.openplanner.team/stops/X602arb", "https://tec.openplanner.team/stops/X653add"], ["https://tec.openplanner.team/stops/LAMec--2", "https://tec.openplanner.team/stops/LAMmc--2"], ["https://tec.openplanner.team/stops/Bblacha2", "https://tec.openplanner.team/stops/Bblaelo1"], ["https://tec.openplanner.team/stops/N109aaa", "https://tec.openplanner.team/stops/N110ada"], ["https://tec.openplanner.team/stops/NL72ada", "https://tec.openplanner.team/stops/NL76aeb"], ["https://tec.openplanner.team/stops/LLrgare2", "https://tec.openplanner.team/stops/LLrscie2"], ["https://tec.openplanner.team/stops/LBiberg2", "https://tec.openplanner.team/stops/LDOeg--1"], ["https://tec.openplanner.team/stops/Lglmoul1", "https://tec.openplanner.team/stops/Lglvict1"], ["https://tec.openplanner.team/stops/X919ada", "https://tec.openplanner.team/stops/X979aaa"], ["https://tec.openplanner.team/stops/H4ft138a", "https://tec.openplanner.team/stops/H4ft138b"], ["https://tec.openplanner.team/stops/X619aha", "https://tec.openplanner.team/stops/X619aia"], ["https://tec.openplanner.team/stops/X804bjb", "https://tec.openplanner.team/stops/X804bka"], ["https://tec.openplanner.team/stops/Lfhdone1", "https://tec.openplanner.team/stops/Lseivoz1"], ["https://tec.openplanner.team/stops/LMIcamp1", "https://tec.openplanner.team/stops/LMImc--2"], ["https://tec.openplanner.team/stops/Cchdagn2", "https://tec.openplanner.team/stops/Cchtram2"], ["https://tec.openplanner.team/stops/X743ada", "https://tec.openplanner.team/stops/X743aea"], ["https://tec.openplanner.team/stops/N555aba", "https://tec.openplanner.team/stops/N573ama"], ["https://tec.openplanner.team/stops/LLOcreu2", "https://tec.openplanner.team/stops/LTatult4"], ["https://tec.openplanner.team/stops/LWbboeg1", "https://tec.openplanner.team/stops/X512aia"], ["https://tec.openplanner.team/stops/X316aaa", "https://tec.openplanner.team/stops/X317aab"], ["https://tec.openplanner.team/stops/Bcharce1", "https://tec.openplanner.team/stops/Bvilcim2"], ["https://tec.openplanner.team/stops/LdUkreu3", "https://tec.openplanner.team/stops/LlE02--2"], ["https://tec.openplanner.team/stops/LATdieu1", "https://tec.openplanner.team/stops/LHUfali1"], ["https://tec.openplanner.team/stops/Ljumesa1", "https://tec.openplanner.team/stops/Ljupiet1"], ["https://tec.openplanner.team/stops/N226abb", "https://tec.openplanner.team/stops/N226aca"], ["https://tec.openplanner.team/stops/X624aba", "https://tec.openplanner.team/stops/X624abb"], ["https://tec.openplanner.team/stops/H1te177a", "https://tec.openplanner.team/stops/H1te177b"], ["https://tec.openplanner.team/stops/N536ada", "https://tec.openplanner.team/stops/N536apb"], ["https://tec.openplanner.team/stops/LoDmuhl1", "https://tec.openplanner.team/stops/LoDmuhl2"], ["https://tec.openplanner.team/stops/Brebblo2", "https://tec.openplanner.team/stops/Brebpca1"], ["https://tec.openplanner.team/stops/LEHpech1", "https://tec.openplanner.team/stops/LSShous1"], ["https://tec.openplanner.team/stops/LOdbuis1", "https://tec.openplanner.team/stops/LOdmonu1"], ["https://tec.openplanner.team/stops/N353afb", "https://tec.openplanner.team/stops/N353afd"], ["https://tec.openplanner.team/stops/LHNland1", "https://tec.openplanner.team/stops/LHNtill1"], ["https://tec.openplanner.team/stops/Bernpon1", "https://tec.openplanner.team/stops/Bernrar1"], ["https://tec.openplanner.team/stops/Brsgcfl2", "https://tec.openplanner.team/stops/Buccpes1"], ["https://tec.openplanner.team/stops/N135afb", "https://tec.openplanner.team/stops/N135ajb"], ["https://tec.openplanner.team/stops/Craappa1", "https://tec.openplanner.team/stops/Cracave1"], ["https://tec.openplanner.team/stops/LAVstat2", "https://tec.openplanner.team/stops/LLRvill2"], ["https://tec.openplanner.team/stops/LgRha212", "https://tec.openplanner.team/stops/LgRzent1"], ["https://tec.openplanner.team/stops/Lmimc--1", "https://tec.openplanner.team/stops/Lmimc--2"], ["https://tec.openplanner.team/stops/Ctybaco2", "https://tec.openplanner.team/stops/N137aaa"], ["https://tec.openplanner.team/stops/Bgdhcsh2", "https://tec.openplanner.team/stops/Bgdhpco1"], ["https://tec.openplanner.team/stops/LREsaul1", "https://tec.openplanner.team/stops/LREsaul2"], ["https://tec.openplanner.team/stops/X637aca", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/Bjanegl3", "https://tec.openplanner.team/stops/Bjanegl4"], ["https://tec.openplanner.team/stops/NL68adc", "https://tec.openplanner.team/stops/NL68add"], ["https://tec.openplanner.team/stops/N301aba", "https://tec.openplanner.team/stops/N301abb"], ["https://tec.openplanner.team/stops/Bhenard4", "https://tec.openplanner.team/stops/Bvirrbo1"], ["https://tec.openplanner.team/stops/N547ada", "https://tec.openplanner.team/stops/N547adb"], ["https://tec.openplanner.team/stops/LBvviem3", "https://tec.openplanner.team/stops/LWAeloi2"], ["https://tec.openplanner.team/stops/X636agb", "https://tec.openplanner.team/stops/X636ajb"], ["https://tec.openplanner.team/stops/X561aaa", "https://tec.openplanner.team/stops/X561aea"], ["https://tec.openplanner.team/stops/H4am100a", "https://tec.openplanner.team/stops/H4an106a"], ["https://tec.openplanner.team/stops/H5bs102b", "https://tec.openplanner.team/stops/H5bs102c"], ["https://tec.openplanner.team/stops/Clbbonn3", "https://tec.openplanner.team/stops/Clbchar1"], ["https://tec.openplanner.team/stops/Ccinali1", "https://tec.openplanner.team/stops/Cmllait1"], ["https://tec.openplanner.team/stops/H4lh120b", "https://tec.openplanner.team/stops/H4lh161b"], ["https://tec.openplanner.team/stops/Bhtibru1", "https://tec.openplanner.team/stops/Bhticbr2"], ["https://tec.openplanner.team/stops/N535aeb", "https://tec.openplanner.team/stops/N535afb"], ["https://tec.openplanner.team/stops/H1qy131b", "https://tec.openplanner.team/stops/H1qy132b"], ["https://tec.openplanner.team/stops/LBSnouw1", "https://tec.openplanner.team/stops/LRGcana1"], ["https://tec.openplanner.team/stops/Bneedia2", "https://tec.openplanner.team/stops/Bneeegl1"], ["https://tec.openplanner.team/stops/X919aab", "https://tec.openplanner.team/stops/X919afb"], ["https://tec.openplanner.team/stops/Loucham2", "https://tec.openplanner.team/stops/Lougare1"], ["https://tec.openplanner.team/stops/H5bl117c", "https://tec.openplanner.team/stops/H5bl144a"], ["https://tec.openplanner.team/stops/LgAdorf1", "https://tec.openplanner.team/stops/LsVbs--*"], ["https://tec.openplanner.team/stops/N423afa", "https://tec.openplanner.team/stops/N423agb"], ["https://tec.openplanner.team/stops/Cragill1", "https://tec.openplanner.team/stops/Cramadi2"], ["https://tec.openplanner.team/stops/Bobacar2", "https://tec.openplanner.team/stops/Brosegl2"], ["https://tec.openplanner.team/stops/X715ada", "https://tec.openplanner.team/stops/X715aea"], ["https://tec.openplanner.team/stops/X921amb", "https://tec.openplanner.team/stops/X921apa"], ["https://tec.openplanner.team/stops/LLt43--1", "https://tec.openplanner.team/stops/LLt43--2"], ["https://tec.openplanner.team/stops/Cfcgrat1", "https://tec.openplanner.team/stops/Cfcleco1"], ["https://tec.openplanner.team/stops/X728adb", "https://tec.openplanner.team/stops/X729aac"], ["https://tec.openplanner.team/stops/Bhalcbr1", "https://tec.openplanner.team/stops/Bhalvel1"], ["https://tec.openplanner.team/stops/Lghalle1", "https://tec.openplanner.team/stops/Lghpier1"], ["https://tec.openplanner.team/stops/Cfabnat1", "https://tec.openplanner.team/stops/Cfarcam2"], ["https://tec.openplanner.team/stops/X660aea", "https://tec.openplanner.team/stops/X660aeb"], ["https://tec.openplanner.team/stops/LBkgrae2", "https://tec.openplanner.team/stops/LMNpt--1"], ["https://tec.openplanner.team/stops/LREheyd1", "https://tec.openplanner.team/stops/LREheyd2"], ["https://tec.openplanner.team/stops/N201alb", "https://tec.openplanner.team/stops/N201ama"], ["https://tec.openplanner.team/stops/LSkwarf2", "https://tec.openplanner.team/stops/LSkwarf3"], ["https://tec.openplanner.team/stops/Bbcoeca1", "https://tec.openplanner.team/stops/H3br112b"], ["https://tec.openplanner.team/stops/X723agb", "https://tec.openplanner.team/stops/X723aha"], ["https://tec.openplanner.team/stops/LLrelec1", "https://tec.openplanner.team/stops/LLrvill1"], ["https://tec.openplanner.team/stops/Buccdef2", "https://tec.openplanner.team/stops/Buccgob1"], ["https://tec.openplanner.team/stops/Lgdstoc2", "https://tec.openplanner.team/stops/LXHfond2"], ["https://tec.openplanner.team/stops/N150abb", "https://tec.openplanner.team/stops/N150ada"], ["https://tec.openplanner.team/stops/H4tg170a", "https://tec.openplanner.team/stops/H4tg170b"], ["https://tec.openplanner.team/stops/N535ahb", "https://tec.openplanner.team/stops/N564acb"], ["https://tec.openplanner.team/stops/H1wa137b", "https://tec.openplanner.team/stops/H1wa164a"], ["https://tec.openplanner.team/stops/X897aob", "https://tec.openplanner.team/stops/X897aoc"], ["https://tec.openplanner.team/stops/H4do107a", "https://tec.openplanner.team/stops/H4do107b"], ["https://tec.openplanner.team/stops/N202aca", "https://tec.openplanner.team/stops/N254aha"], ["https://tec.openplanner.team/stops/N111aaa", "https://tec.openplanner.team/stops/N111aab"], ["https://tec.openplanner.team/stops/Cmitrie2", "https://tec.openplanner.team/stops/Csequew2"], ["https://tec.openplanner.team/stops/Ljudeme1", "https://tec.openplanner.team/stops/Ljuhava2"], ["https://tec.openplanner.team/stops/X362aaa", "https://tec.openplanner.team/stops/X362aab"], ["https://tec.openplanner.team/stops/X674aab", "https://tec.openplanner.team/stops/X675aab"], ["https://tec.openplanner.team/stops/Lsebrun3", "https://tec.openplanner.team/stops/Lsepapi3"], ["https://tec.openplanner.team/stops/X398afa", "https://tec.openplanner.team/stops/X999acb"], ["https://tec.openplanner.team/stops/N501dvb", "https://tec.openplanner.team/stops/N501geb"], ["https://tec.openplanner.team/stops/Bdvm4ca1", "https://tec.openplanner.team/stops/Bdvmtve2"], ["https://tec.openplanner.team/stops/N425aeb", "https://tec.openplanner.team/stops/N425afb"], ["https://tec.openplanner.team/stops/N560aba", "https://tec.openplanner.team/stops/N560acb"], ["https://tec.openplanner.team/stops/Csurela1", "https://tec.openplanner.team/stops/Csygare3"], ["https://tec.openplanner.team/stops/Lticoq-2", "https://tec.openplanner.team/stops/Ltiplat2"], ["https://tec.openplanner.team/stops/Bwancal3", "https://tec.openplanner.team/stops/Bwancal4"], ["https://tec.openplanner.team/stops/Cgofbru2", "https://tec.openplanner.team/stops/Cgopier2"], ["https://tec.openplanner.team/stops/Bvirpla1", "https://tec.openplanner.team/stops/Bvirpos1"], ["https://tec.openplanner.team/stops/Lmntast2", "https://tec.openplanner.team/stops/Lsmdams2"], ["https://tec.openplanner.team/stops/H2hl112a", "https://tec.openplanner.team/stops/H2hl113a"], ["https://tec.openplanner.team/stops/H1lm105b", "https://tec.openplanner.team/stops/H1sy145a"], ["https://tec.openplanner.team/stops/N512agd", "https://tec.openplanner.team/stops/NL57aeb"], ["https://tec.openplanner.team/stops/X725aff", "https://tec.openplanner.team/stops/X725afh"], ["https://tec.openplanner.team/stops/Lghfors1", "https://tec.openplanner.team/stops/Lghgoll1"], ["https://tec.openplanner.team/stops/LFMrijk1", "https://tec.openplanner.team/stops/LFMrijk2"], ["https://tec.openplanner.team/stops/Bchgvil2", "https://tec.openplanner.team/stops/Bdvminc2"], ["https://tec.openplanner.team/stops/X750aub", "https://tec.openplanner.team/stops/X750ava"], ["https://tec.openplanner.team/stops/N390afb", "https://tec.openplanner.team/stops/X349aaa"], ["https://tec.openplanner.team/stops/Cvvpotv1", "https://tec.openplanner.team/stops/Cvvpotv2"], ["https://tec.openplanner.team/stops/H1wa135b", "https://tec.openplanner.team/stops/H1wa137a"], ["https://tec.openplanner.team/stops/N147afa", "https://tec.openplanner.team/stops/N147afb"], ["https://tec.openplanner.team/stops/H5bl119d", "https://tec.openplanner.team/stops/H5qu148b"], ["https://tec.openplanner.team/stops/LLxmonu1", "https://tec.openplanner.team/stops/LVItcm-1"], ["https://tec.openplanner.team/stops/LhGcasi2", "https://tec.openplanner.team/stops/LhGfrie1"], ["https://tec.openplanner.team/stops/LBLvici1", "https://tec.openplanner.team/stops/LTrrich1"], ["https://tec.openplanner.team/stops/H2ma205b", "https://tec.openplanner.team/stops/H2ma209a"], ["https://tec.openplanner.team/stops/LHGbeur2", "https://tec.openplanner.team/stops/LHGtige2"], ["https://tec.openplanner.team/stops/N533alf", "https://tec.openplanner.team/stops/N533anb"], ["https://tec.openplanner.team/stops/Brebras1", "https://tec.openplanner.team/stops/Brebvic1"], ["https://tec.openplanner.team/stops/Lbocarr2", "https://tec.openplanner.team/stops/Lbogonh2"], ["https://tec.openplanner.team/stops/X602aba", "https://tec.openplanner.team/stops/X604ama"], ["https://tec.openplanner.team/stops/X670ada", "https://tec.openplanner.team/stops/X670akb"], ["https://tec.openplanner.team/stops/LHYec--2", "https://tec.openplanner.team/stops/LHYnoid1"], ["https://tec.openplanner.team/stops/Cjualtr1", "https://tec.openplanner.team/stops/Cjucopp2"], ["https://tec.openplanner.team/stops/X921aca", "https://tec.openplanner.team/stops/X921ana"], ["https://tec.openplanner.team/stops/NL68aac", "https://tec.openplanner.team/stops/NL68aca"], ["https://tec.openplanner.team/stops/N211azb", "https://tec.openplanner.team/stops/N211bab"], ["https://tec.openplanner.team/stops/H4bn100b", "https://tec.openplanner.team/stops/H4bn101a"], ["https://tec.openplanner.team/stops/Cmlsart1", "https://tec.openplanner.team/stops/Cmlstni1"], ["https://tec.openplanner.team/stops/Btubdeh1", "https://tec.openplanner.team/stops/Btubmon1"], ["https://tec.openplanner.team/stops/N501hva", "https://tec.openplanner.team/stops/N501iga"], ["https://tec.openplanner.team/stops/X636amb", "https://tec.openplanner.team/stops/X636bja"], ["https://tec.openplanner.team/stops/N121aca", "https://tec.openplanner.team/stops/N121aib"], ["https://tec.openplanner.team/stops/X947acb", "https://tec.openplanner.team/stops/X948aka"], ["https://tec.openplanner.team/stops/X666aca", "https://tec.openplanner.team/stops/X666ala"], ["https://tec.openplanner.team/stops/LBVlamo1", "https://tec.openplanner.team/stops/LRcsilo2"], ["https://tec.openplanner.team/stops/X359aib", "https://tec.openplanner.team/stops/X858aha"], ["https://tec.openplanner.team/stops/H1do111a", "https://tec.openplanner.team/stops/H1do111b"], ["https://tec.openplanner.team/stops/Lougoff1", "https://tec.openplanner.team/stops/Louwuid1"], ["https://tec.openplanner.team/stops/Lcheg--1", "https://tec.openplanner.team/stops/Lchpniv1"], ["https://tec.openplanner.team/stops/LHCandr2", "https://tec.openplanner.team/stops/LHChomb2"], ["https://tec.openplanner.team/stops/X342afb", "https://tec.openplanner.team/stops/X362aca"], ["https://tec.openplanner.team/stops/LFEplac1", "https://tec.openplanner.team/stops/X597amb"], ["https://tec.openplanner.team/stops/N536acb", "https://tec.openplanner.team/stops/N536aga"], ["https://tec.openplanner.team/stops/X685ama", "https://tec.openplanner.team/stops/X685apa"], ["https://tec.openplanner.team/stops/H1sp354a", "https://tec.openplanner.team/stops/H1sp355a"], ["https://tec.openplanner.team/stops/H2sb223b", "https://tec.openplanner.team/stops/H2sb238b"], ["https://tec.openplanner.team/stops/Bnivcol2", "https://tec.openplanner.team/stops/Bnivgen1"], ["https://tec.openplanner.team/stops/Ckevela2", "https://tec.openplanner.team/stops/Cvstouv1"], ["https://tec.openplanner.team/stops/LJEchat3", "https://tec.openplanner.team/stops/LJEpaqu1"], ["https://tec.openplanner.team/stops/Lhuecol1", "https://tec.openplanner.team/stops/Lhurouh2"], ["https://tec.openplanner.team/stops/Lflfort*", "https://tec.openplanner.team/stops/Lflpaeu1"], ["https://tec.openplanner.team/stops/LSogare1", "https://tec.openplanner.team/stops/LSogare2"], ["https://tec.openplanner.team/stops/Bnil3fo1", "https://tec.openplanner.team/stops/Bnilpie1"], ["https://tec.openplanner.team/stops/Lfhborg1", "https://tec.openplanner.team/stops/Lfhdone2"], ["https://tec.openplanner.team/stops/X661afa", "https://tec.openplanner.team/stops/X661aub"], ["https://tec.openplanner.team/stops/H1ms301a", "https://tec.openplanner.team/stops/H1ms901a"], ["https://tec.openplanner.team/stops/Cairous1", "https://tec.openplanner.team/stops/N543bba"], ["https://tec.openplanner.team/stops/N577agb", "https://tec.openplanner.team/stops/N577aib"], ["https://tec.openplanner.team/stops/Bhaleur1", "https://tec.openplanner.team/stops/Bhalomo2"], ["https://tec.openplanner.team/stops/N151ajd", "https://tec.openplanner.team/stops/N152aaa"], ["https://tec.openplanner.team/stops/LBscasi1", "https://tec.openplanner.team/stops/LBsfer-2"], ["https://tec.openplanner.team/stops/Lgrfalc1", "https://tec.openplanner.team/stops/Llgstap1"], ["https://tec.openplanner.team/stops/LPUalbe1", "https://tec.openplanner.team/stops/LPUlecl1"], ["https://tec.openplanner.team/stops/LHHgare2", "https://tec.openplanner.team/stops/LHHpt--4"], ["https://tec.openplanner.team/stops/LSPsauv1", "https://tec.openplanner.team/stops/LSPsous1"], ["https://tec.openplanner.team/stops/H2sb226b", "https://tec.openplanner.team/stops/H2sb228d"], ["https://tec.openplanner.team/stops/H4ft132a", "https://tec.openplanner.team/stops/H4ft137a"], ["https://tec.openplanner.team/stops/X725awa", "https://tec.openplanner.team/stops/X725bea"], ["https://tec.openplanner.team/stops/H4av102c", "https://tec.openplanner.team/stops/H4av107b"], ["https://tec.openplanner.team/stops/LTPnoup2", "https://tec.openplanner.team/stops/LTPpres1"], ["https://tec.openplanner.team/stops/Llghaut2", "https://tec.openplanner.team/stops/Llglefe2"], ["https://tec.openplanner.team/stops/LSPecho2", "https://tec.openplanner.team/stops/LSPmart2"], ["https://tec.openplanner.team/stops/H4ka181a", "https://tec.openplanner.team/stops/H4ka191b"], ["https://tec.openplanner.team/stops/Louvira1", "https://tec.openplanner.team/stops/Louvira2"], ["https://tec.openplanner.team/stops/H4eq123b", "https://tec.openplanner.team/stops/H4ob109b"], ["https://tec.openplanner.team/stops/LrAneud2", "https://tec.openplanner.team/stops/LrApley1"], ["https://tec.openplanner.team/stops/N343aob", "https://tec.openplanner.team/stops/N350ada"], ["https://tec.openplanner.team/stops/H4pl122b", "https://tec.openplanner.team/stops/H4pl137a"], ["https://tec.openplanner.team/stops/Lscbour1", "https://tec.openplanner.team/stops/Lscpamp2"], ["https://tec.openplanner.team/stops/H1je220a", "https://tec.openplanner.team/stops/H1je220d"], ["https://tec.openplanner.team/stops/H4ty346a", "https://tec.openplanner.team/stops/H4ty383a"], ["https://tec.openplanner.team/stops/X901anb", "https://tec.openplanner.team/stops/X901bja"], ["https://tec.openplanner.team/stops/LVTeg--2", "https://tec.openplanner.team/stops/LVTtrou1"], ["https://tec.openplanner.team/stops/N501kuc", "https://tec.openplanner.team/stops/N501kva"], ["https://tec.openplanner.team/stops/LFHsucr1", "https://tec.openplanner.team/stops/LMOfrel2"], ["https://tec.openplanner.team/stops/Bfelbri3", "https://tec.openplanner.team/stops/Bfelequ2"], ["https://tec.openplanner.team/stops/N571agb", "https://tec.openplanner.team/stops/N571aja"], ["https://tec.openplanner.team/stops/Bnodtir1", "https://tec.openplanner.team/stops/Bnodtir2"], ["https://tec.openplanner.team/stops/Lbrptbr3", "https://tec.openplanner.team/stops/Llgmara2"], ["https://tec.openplanner.team/stops/Lfhmarn2", "https://tec.openplanner.team/stops/Lmlcite*"], ["https://tec.openplanner.team/stops/LFRbaro1", "https://tec.openplanner.team/stops/LFRbaro2"], ["https://tec.openplanner.team/stops/N230aha", "https://tec.openplanner.team/stops/N231aca"], ["https://tec.openplanner.team/stops/H5bl123a", "https://tec.openplanner.team/stops/H5bl142a"], ["https://tec.openplanner.team/stops/Bhvlbet1", "https://tec.openplanner.team/stops/Bmsgbay1"], ["https://tec.openplanner.team/stops/LnErech2", "https://tec.openplanner.team/stops/LrEfeck2"], ["https://tec.openplanner.team/stops/Lvehv--1", "https://tec.openplanner.team/stops/Lvepala7"], ["https://tec.openplanner.team/stops/Ccstord1", "https://tec.openplanner.team/stops/Ccstord2"], ["https://tec.openplanner.team/stops/X644aaa", "https://tec.openplanner.team/stops/X644acb"], ["https://tec.openplanner.team/stops/X896abb", "https://tec.openplanner.team/stops/X896acb"], ["https://tec.openplanner.team/stops/N501fty", "https://tec.openplanner.team/stops/N501fyc"], ["https://tec.openplanner.team/stops/X626ala", "https://tec.openplanner.team/stops/X687aca"], ["https://tec.openplanner.team/stops/Ljuinte1", "https://tec.openplanner.team/stops/Ljuprev1"], ["https://tec.openplanner.team/stops/Cblsall2", "https://tec.openplanner.team/stops/Cslbhau2"], ["https://tec.openplanner.team/stops/Llgdepo2", "https://tec.openplanner.team/stops/Llgmagh2"], ["https://tec.openplanner.team/stops/Brsgm802", "https://tec.openplanner.team/stops/Bwatmch2"], ["https://tec.openplanner.team/stops/LHrcarr1", "https://tec.openplanner.team/stops/LHrkin-1"], ["https://tec.openplanner.team/stops/Cfnsenz1", "https://tec.openplanner.team/stops/Csiegli2"], ["https://tec.openplanner.team/stops/LhGbahn3", "https://tec.openplanner.team/stops/LhGbahn4"], ["https://tec.openplanner.team/stops/LCSgend2", "https://tec.openplanner.team/stops/LSGsurf1"], ["https://tec.openplanner.team/stops/Lhuleke2", "https://tec.openplanner.team/stops/Lvewaut2"], ["https://tec.openplanner.team/stops/Ccucroi2", "https://tec.openplanner.team/stops/Ccutill2"], ["https://tec.openplanner.team/stops/H4wa151a", "https://tec.openplanner.team/stops/H4wa159b"], ["https://tec.openplanner.team/stops/Lfhhosp1", "https://tec.openplanner.team/stops/Lfhhosp2"], ["https://tec.openplanner.team/stops/H4es108b", "https://tec.openplanner.team/stops/H4ev125a"], ["https://tec.openplanner.team/stops/H1ha188b", "https://tec.openplanner.team/stops/H1ha196b"], ["https://tec.openplanner.team/stops/H1le118b", "https://tec.openplanner.team/stops/H1ol143a"], ["https://tec.openplanner.team/stops/H2an101b", "https://tec.openplanner.team/stops/H2an104b"], ["https://tec.openplanner.team/stops/Bvirpla2", "https://tec.openplanner.team/stops/Bvirpos1"], ["https://tec.openplanner.team/stops/Bmonbri1", "https://tec.openplanner.team/stops/Bnivbau2"], ["https://tec.openplanner.team/stops/Lsehya-3", "https://tec.openplanner.team/stops/Lsemaqu2"], ["https://tec.openplanner.team/stops/N121afb", "https://tec.openplanner.team/stops/N121aga"], ["https://tec.openplanner.team/stops/N564abb", "https://tec.openplanner.team/stops/N564adb"], ["https://tec.openplanner.team/stops/Cthbifu2", "https://tec.openplanner.team/stops/Cthgend1"], ["https://tec.openplanner.team/stops/N329aab", "https://tec.openplanner.team/stops/N365abb"], ["https://tec.openplanner.team/stops/N501hfa", "https://tec.openplanner.team/stops/N501mia"], ["https://tec.openplanner.team/stops/LFMkrut1", "https://tec.openplanner.team/stops/LFPkerk2"], ["https://tec.openplanner.team/stops/LHTbonn2", "https://tec.openplanner.team/stops/LHTdelh2"], ["https://tec.openplanner.team/stops/X758aaa", "https://tec.openplanner.team/stops/X758aab"], ["https://tec.openplanner.team/stops/H4to135a", "https://tec.openplanner.team/stops/H4to135b"], ["https://tec.openplanner.team/stops/N141aaa", "https://tec.openplanner.team/stops/X611aca"], ["https://tec.openplanner.team/stops/X663asa", "https://tec.openplanner.team/stops/X663awb"], ["https://tec.openplanner.team/stops/H1ms924a", "https://tec.openplanner.team/stops/H1ms925a"], ["https://tec.openplanner.team/stops/Cdogrro1", "https://tec.openplanner.team/stops/Ctufleu1"], ["https://tec.openplanner.team/stops/X770aba", "https://tec.openplanner.team/stops/X771aib"], ["https://tec.openplanner.team/stops/N203aaa", "https://tec.openplanner.team/stops/N203afa"], ["https://tec.openplanner.team/stops/N513aeb", "https://tec.openplanner.team/stops/N513bfa"], ["https://tec.openplanner.team/stops/X753aaa", "https://tec.openplanner.team/stops/X753aca"], ["https://tec.openplanner.team/stops/Cmecime2", "https://tec.openplanner.team/stops/Cmestas2"], ["https://tec.openplanner.team/stops/Bsomtnd1", "https://tec.openplanner.team/stops/N584alb"], ["https://tec.openplanner.team/stops/X662abb", "https://tec.openplanner.team/stops/X662asa"], ["https://tec.openplanner.team/stops/LpEzoll*", "https://tec.openplanner.team/stops/LrTbahn2"], ["https://tec.openplanner.team/stops/Lsccdor2", "https://tec.openplanner.team/stops/Lsccime1"], ["https://tec.openplanner.team/stops/N506arb", "https://tec.openplanner.team/stops/N506ata"], ["https://tec.openplanner.team/stops/X804bka", "https://tec.openplanner.team/stops/X804bya"], ["https://tec.openplanner.team/stops/LFTec--1", "https://tec.openplanner.team/stops/LTNsarl2"], ["https://tec.openplanner.team/stops/Bhevl3l1", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://tec.openplanner.team/stops/H1gn152b", "https://tec.openplanner.team/stops/H1mq200a"], ["https://tec.openplanner.team/stops/Cfrcham1", "https://tec.openplanner.team/stops/Cmeptmi6"], ["https://tec.openplanner.team/stops/N538afa", "https://tec.openplanner.team/stops/N538aga"], ["https://tec.openplanner.team/stops/LCelabi2", "https://tec.openplanner.team/stops/LVMrout2"], ["https://tec.openplanner.team/stops/LLmcarr2", "https://tec.openplanner.team/stops/LLmvand2"], ["https://tec.openplanner.team/stops/LHanest1", "https://tec.openplanner.team/stops/LOurena1"], ["https://tec.openplanner.team/stops/LFPzwaa2", "https://tec.openplanner.team/stops/LVu03--1"], ["https://tec.openplanner.team/stops/X806aba", "https://tec.openplanner.team/stops/X806aka"], ["https://tec.openplanner.team/stops/H4qu230b", "https://tec.openplanner.team/stops/H4qu230c"], ["https://tec.openplanner.team/stops/H4ha169a", "https://tec.openplanner.team/stops/H4ha169b"], ["https://tec.openplanner.team/stops/Lhracec1", "https://tec.openplanner.team/stops/Lhracec2"], ["https://tec.openplanner.team/stops/H1ho144a", "https://tec.openplanner.team/stops/H1ho147b"], ["https://tec.openplanner.team/stops/N503ada", "https://tec.openplanner.team/stops/N503aha"], ["https://tec.openplanner.team/stops/Crefont2", "https://tec.openplanner.team/stops/Creoudo1"], ["https://tec.openplanner.team/stops/Cradado1", "https://tec.openplanner.team/stops/Cradest1"], ["https://tec.openplanner.team/stops/N120amb", "https://tec.openplanner.team/stops/N120ana"], ["https://tec.openplanner.team/stops/Bquebuc1", "https://tec.openplanner.team/stops/Bquepbr1"], ["https://tec.openplanner.team/stops/LBQmaye1", "https://tec.openplanner.team/stops/LOCponc*"], ["https://tec.openplanner.team/stops/X809aaa", "https://tec.openplanner.team/stops/X811aaa"], ["https://tec.openplanner.team/stops/H4ra159b", "https://tec.openplanner.team/stops/H4tu171b"], ["https://tec.openplanner.team/stops/Cjuhden2", "https://tec.openplanner.team/stops/Cjupllo1"], ["https://tec.openplanner.team/stops/Lfhgare2", "https://tec.openplanner.team/stops/Livgera3"], ["https://tec.openplanner.team/stops/X695aab", "https://tec.openplanner.team/stops/X695aia"], ["https://tec.openplanner.team/stops/X638aca", "https://tec.openplanner.team/stops/X638acb"], ["https://tec.openplanner.team/stops/Cmlbras2", "https://tec.openplanner.team/stops/Cmlhaie1"], ["https://tec.openplanner.team/stops/X739aeb", "https://tec.openplanner.team/stops/X739afb"], ["https://tec.openplanner.team/stops/Cjulucq1", "https://tec.openplanner.team/stops/Cjulucq2"], ["https://tec.openplanner.team/stops/LCTgare3", "https://tec.openplanner.team/stops/LCTgare4"], ["https://tec.openplanner.team/stops/X784ada", "https://tec.openplanner.team/stops/X784adb"], ["https://tec.openplanner.team/stops/Ctmmonu2", "https://tec.openplanner.team/stops/Ctmwaut2"], ["https://tec.openplanner.team/stops/H1mk109a", "https://tec.openplanner.team/stops/H1mk111b"], ["https://tec.openplanner.team/stops/Lbralbe1", "https://tec.openplanner.team/stops/Llgpoli1"], ["https://tec.openplanner.team/stops/H4br110a", "https://tec.openplanner.team/stops/H4pe127a"], ["https://tec.openplanner.team/stops/H1ch142b", "https://tec.openplanner.team/stops/H1ch143a"], ["https://tec.openplanner.team/stops/X942aca", "https://tec.openplanner.team/stops/X942acb"], ["https://tec.openplanner.team/stops/Lpelouh1", "https://tec.openplanner.team/stops/Lpelouh2"], ["https://tec.openplanner.team/stops/Bcerldo1", "https://tec.openplanner.team/stops/Bcerldo2"], ["https://tec.openplanner.team/stops/LGOcana2", "https://tec.openplanner.team/stops/LGOdelv2"], ["https://tec.openplanner.team/stops/Bgnpegl2", "https://tec.openplanner.team/stops/Bgnpjbe1"], ["https://tec.openplanner.team/stops/H4fl114a", "https://tec.openplanner.team/stops/H4wi168b"], ["https://tec.openplanner.team/stops/Bmrshan1", "https://tec.openplanner.team/stops/Cgnpass2"], ["https://tec.openplanner.team/stops/Lvegc-1*", "https://tec.openplanner.team/stops/Lvegc--3"], ["https://tec.openplanner.team/stops/LWNberg2", "https://tec.openplanner.team/stops/LWNcime1"], ["https://tec.openplanner.team/stops/H4ir164b", "https://tec.openplanner.team/stops/H4og215a"], ["https://tec.openplanner.team/stops/X601abb", "https://tec.openplanner.team/stops/X601aeb"], ["https://tec.openplanner.team/stops/Bhalkrk1", "https://tec.openplanner.team/stops/Bhalwat2"], ["https://tec.openplanner.team/stops/H1ms252c", "https://tec.openplanner.team/stops/H1ms940a"], ["https://tec.openplanner.team/stops/N512aba", "https://tec.openplanner.team/stops/N512aid"], ["https://tec.openplanner.team/stops/X822acb", "https://tec.openplanner.team/stops/X822ala"], ["https://tec.openplanner.team/stops/Lbocomm1", "https://tec.openplanner.team/stops/Lbotilf2"], ["https://tec.openplanner.team/stops/N525ata", "https://tec.openplanner.team/stops/N526acb"], ["https://tec.openplanner.team/stops/N211aka", "https://tec.openplanner.team/stops/N211akb"], ["https://tec.openplanner.team/stops/Ladlaur2", "https://tec.openplanner.team/stops/Ladneuv1"], ["https://tec.openplanner.team/stops/X670apa", "https://tec.openplanner.team/stops/X670apb"], ["https://tec.openplanner.team/stops/Buccpin1", "https://tec.openplanner.team/stops/Buccpor1"], ["https://tec.openplanner.team/stops/H4lz158a", "https://tec.openplanner.team/stops/H4lz158b"], ["https://tec.openplanner.team/stops/Lwaelme1", "https://tec.openplanner.team/stops/Lwaelme2"], ["https://tec.openplanner.team/stops/Bmalcar1", "https://tec.openplanner.team/stops/Bmalper2"], ["https://tec.openplanner.team/stops/LLR4bra1", "https://tec.openplanner.team/stops/LLReg--1"], ["https://tec.openplanner.team/stops/Lhrdelv2", "https://tec.openplanner.team/stops/Lhrhurb2"], ["https://tec.openplanner.team/stops/Bwatbce1", "https://tec.openplanner.team/stops/Bwatnrs2"], ["https://tec.openplanner.team/stops/Bmartil1", "https://tec.openplanner.team/stops/Csa4mai1"], ["https://tec.openplanner.team/stops/LMtcent1", "https://tec.openplanner.team/stops/LMtcent2"], ["https://tec.openplanner.team/stops/N569aia", "https://tec.openplanner.team/stops/N569ajb"], ["https://tec.openplanner.team/stops/LHHecol2", "https://tec.openplanner.team/stops/LHHplac2"], ["https://tec.openplanner.team/stops/Louairl1", "https://tec.openplanner.team/stops/Louairl2"], ["https://tec.openplanner.team/stops/X943aca", "https://tec.openplanner.team/stops/X943aga"], ["https://tec.openplanner.team/stops/H1hr127b", "https://tec.openplanner.team/stops/H1to153a"], ["https://tec.openplanner.team/stops/LrUbrac1", "https://tec.openplanner.team/stops/LrUkult1"], ["https://tec.openplanner.team/stops/Cgxprad3", "https://tec.openplanner.team/stops/Cgxprad4"], ["https://tec.openplanner.team/stops/N425aca", "https://tec.openplanner.team/stops/N425ada"], ["https://tec.openplanner.team/stops/Lan14ve1", "https://tec.openplanner.team/stops/Llgnaim2"], ["https://tec.openplanner.team/stops/H1po139a", "https://tec.openplanner.team/stops/H1si151a"], ["https://tec.openplanner.team/stops/N506afa", "https://tec.openplanner.team/stops/N537aka"], ["https://tec.openplanner.team/stops/LHUeuro2", "https://tec.openplanner.team/stops/LHUlebe3"], ["https://tec.openplanner.team/stops/Bgrhhot2", "https://tec.openplanner.team/stops/Bnvmfba2"], ["https://tec.openplanner.team/stops/Lbeloui1", "https://tec.openplanner.team/stops/Lqbecco2"], ["https://tec.openplanner.team/stops/LSuusin2", "https://tec.openplanner.team/stops/Lvepoud1"], ["https://tec.openplanner.team/stops/LAYnias1", "https://tec.openplanner.team/stops/LAYnias2"], ["https://tec.openplanner.team/stops/Lscbarg1", "https://tec.openplanner.team/stops/Lscstan1"], ["https://tec.openplanner.team/stops/N135bda", "https://tec.openplanner.team/stops/N135bdb"], ["https://tec.openplanner.team/stops/LGlcite1", "https://tec.openplanner.team/stops/LHZcouv2"], ["https://tec.openplanner.team/stops/H5el100b", "https://tec.openplanner.team/stops/H5fl100a"], ["https://tec.openplanner.team/stops/N534agb", "https://tec.openplanner.team/stops/N534caa"], ["https://tec.openplanner.team/stops/N548adb", "https://tec.openplanner.team/stops/N548aka"], ["https://tec.openplanner.team/stops/N543coa", "https://tec.openplanner.team/stops/N543cqb"], ["https://tec.openplanner.team/stops/Cfogaul1", "https://tec.openplanner.team/stops/Cfometr1"], ["https://tec.openplanner.team/stops/Crccarr1", "https://tec.openplanner.team/stops/Crclorc2"], ["https://tec.openplanner.team/stops/N535aib", "https://tec.openplanner.team/stops/N535ajb"], ["https://tec.openplanner.team/stops/Cmerued1", "https://tec.openplanner.team/stops/Cmerued2"], ["https://tec.openplanner.team/stops/H1cd111a", "https://tec.openplanner.team/stops/H1cd111c"], ["https://tec.openplanner.team/stops/N308apa", "https://tec.openplanner.team/stops/N308bib"], ["https://tec.openplanner.team/stops/N154aaa", "https://tec.openplanner.team/stops/N154aba"], ["https://tec.openplanner.team/stops/X947aab", "https://tec.openplanner.team/stops/X947abb"], ["https://tec.openplanner.team/stops/Cmitrie1", "https://tec.openplanner.team/stops/Cmitrie2"], ["https://tec.openplanner.team/stops/NC11ala", "https://tec.openplanner.team/stops/NC11alb"], ["https://tec.openplanner.team/stops/Lvecite1", "https://tec.openplanner.team/stops/Lvecite3"], ["https://tec.openplanner.team/stops/Ljexhav3", "https://tec.openplanner.team/stops/Ljexhav4"], ["https://tec.openplanner.team/stops/N343abb", "https://tec.openplanner.team/stops/N343ala"], ["https://tec.openplanner.team/stops/H4be104b", "https://tec.openplanner.team/stops/H4be104d"], ["https://tec.openplanner.team/stops/LSceg--3", "https://tec.openplanner.team/stops/LVTeg--2"], ["https://tec.openplanner.team/stops/N505aab", "https://tec.openplanner.team/stops/N505aeb"], ["https://tec.openplanner.team/stops/X721apb", "https://tec.openplanner.team/stops/X721aqa"], ["https://tec.openplanner.team/stops/N349ada", "https://tec.openplanner.team/stops/N349adb"], ["https://tec.openplanner.team/stops/Ccigene1", "https://tec.openplanner.team/stops/Ccigene2"], ["https://tec.openplanner.team/stops/Btubcvi1", "https://tec.openplanner.team/stops/Btubegy2"], ["https://tec.openplanner.team/stops/LSPbass1", "https://tec.openplanner.team/stops/LSPpelz1"], ["https://tec.openplanner.team/stops/X923aia", "https://tec.openplanner.team/stops/X923ara"], ["https://tec.openplanner.team/stops/Cgymast1", "https://tec.openplanner.team/stops/Cjuhame3"], ["https://tec.openplanner.team/stops/H1ht132b", "https://tec.openplanner.team/stops/H1si153a"], ["https://tec.openplanner.team/stops/N251aab", "https://tec.openplanner.team/stops/N287aab"], ["https://tec.openplanner.team/stops/LlZbell1", "https://tec.openplanner.team/stops/LmNmerl1"], ["https://tec.openplanner.team/stops/Brixchw1", "https://tec.openplanner.team/stops/Brixres1"], ["https://tec.openplanner.team/stops/H1le128b", "https://tec.openplanner.team/stops/H1le129a"], ["https://tec.openplanner.team/stops/Cctmine1", "https://tec.openplanner.team/stops/Cctmine2"], ["https://tec.openplanner.team/stops/H5wo123a", "https://tec.openplanner.team/stops/H5wo125b"], ["https://tec.openplanner.team/stops/Ljumiux1", "https://tec.openplanner.team/stops/Ljuplpr2"], ["https://tec.openplanner.team/stops/X742agb", "https://tec.openplanner.team/stops/X743aaa"], ["https://tec.openplanner.team/stops/H2ch100c", "https://tec.openplanner.team/stops/H2ch111b"], ["https://tec.openplanner.team/stops/Lhrlalo4", "https://tec.openplanner.team/stops/Lhrmine1"], ["https://tec.openplanner.team/stops/LVIsacr1", "https://tec.openplanner.team/stops/LVIsacr2"], ["https://tec.openplanner.team/stops/N321ada", "https://tec.openplanner.team/stops/N323acb"], ["https://tec.openplanner.team/stops/H4to134a", "https://tec.openplanner.team/stops/H4to138a"], ["https://tec.openplanner.team/stops/N226aca", "https://tec.openplanner.team/stops/N226ada"], ["https://tec.openplanner.team/stops/Blemkap2", "https://tec.openplanner.team/stops/Btubhoq1"], ["https://tec.openplanner.team/stops/LLeeco-1", "https://tec.openplanner.team/stops/X547ata"], ["https://tec.openplanner.team/stops/Cfaplma1", "https://tec.openplanner.team/stops/Clacast2"], ["https://tec.openplanner.team/stops/Lscbarg2", "https://tec.openplanner.team/stops/Ltiferb2"], ["https://tec.openplanner.team/stops/N577aba", "https://tec.openplanner.team/stops/N577aeb"], ["https://tec.openplanner.team/stops/LkEbruc1", "https://tec.openplanner.team/stops/LlNm%C3%BChl2"], ["https://tec.openplanner.team/stops/Lhrcols4", "https://tec.openplanner.team/stops/Lhrvert1"], ["https://tec.openplanner.team/stops/X394aeb", "https://tec.openplanner.team/stops/X398aca"], ["https://tec.openplanner.team/stops/LcRmich1", "https://tec.openplanner.team/stops/LrDhind1"], ["https://tec.openplanner.team/stops/X921ara", "https://tec.openplanner.team/stops/X979aab"], ["https://tec.openplanner.team/stops/N232bta", "https://tec.openplanner.team/stops/N232bua"], ["https://tec.openplanner.team/stops/X766aga", "https://tec.openplanner.team/stops/X766aja"], ["https://tec.openplanner.team/stops/LnIkirc1", "https://tec.openplanner.team/stops/LwYbruc1"], ["https://tec.openplanner.team/stops/N150aed", "https://tec.openplanner.team/stops/N150afb"], ["https://tec.openplanner.team/stops/X663aqb", "https://tec.openplanner.team/stops/X663awa"], ["https://tec.openplanner.team/stops/X750asb", "https://tec.openplanner.team/stops/X794aab"], ["https://tec.openplanner.team/stops/Bhenasc1", "https://tec.openplanner.team/stops/Bhenrcr1"], ["https://tec.openplanner.team/stops/LFFcouv1", "https://tec.openplanner.team/stops/LFFmarc3"], ["https://tec.openplanner.team/stops/Lmimili2", "https://tec.openplanner.team/stops/Lmitech1"], ["https://tec.openplanner.team/stops/Cgrcent1", "https://tec.openplanner.team/stops/Cgrcent2"], ["https://tec.openplanner.team/stops/X633agb", "https://tec.openplanner.team/stops/X653adc"], ["https://tec.openplanner.team/stops/LVIhala4", "https://tec.openplanner.team/stops/LVIhv--2"], ["https://tec.openplanner.team/stops/N127aca", "https://tec.openplanner.team/stops/N127aea"], ["https://tec.openplanner.team/stops/Bbryfon2", "https://tec.openplanner.team/stops/Bsammon4"], ["https://tec.openplanner.team/stops/LNEmoul1", "https://tec.openplanner.team/stops/LVosoir2"], ["https://tec.openplanner.team/stops/N501eta", "https://tec.openplanner.team/stops/N501nea"], ["https://tec.openplanner.team/stops/X822aia", "https://tec.openplanner.team/stops/X822ajb"], ["https://tec.openplanner.team/stops/N507aqb", "https://tec.openplanner.team/stops/NL74aca"], ["https://tec.openplanner.team/stops/H1ho132a", "https://tec.openplanner.team/stops/H1ho144a"], ["https://tec.openplanner.team/stops/LCPcomp2", "https://tec.openplanner.team/stops/LGmcite1"], ["https://tec.openplanner.team/stops/Cthalli1", "https://tec.openplanner.team/stops/Cthalli3"], ["https://tec.openplanner.team/stops/N232brb", "https://tec.openplanner.team/stops/N232caa"], ["https://tec.openplanner.team/stops/Cgzabur2", "https://tec.openplanner.team/stops/Cgzclef2"], ["https://tec.openplanner.team/stops/X908ahb", "https://tec.openplanner.team/stops/X908aia"], ["https://tec.openplanner.team/stops/H2ca105b", "https://tec.openplanner.team/stops/H2ch125a"], ["https://tec.openplanner.team/stops/LAUtism1", "https://tec.openplanner.team/stops/LAUtism2"], ["https://tec.openplanner.team/stops/X650akb", "https://tec.openplanner.team/stops/X651aab"], ["https://tec.openplanner.team/stops/Lfhhoul1", "https://tec.openplanner.team/stops/Lfhncha2"], ["https://tec.openplanner.team/stops/H1hy129a", "https://tec.openplanner.team/stops/H1qy133a"], ["https://tec.openplanner.team/stops/N135aha", "https://tec.openplanner.team/stops/N135atb"], ["https://tec.openplanner.team/stops/Cfanoci1", "https://tec.openplanner.team/stops/Clacast2"], ["https://tec.openplanner.team/stops/X903abb", "https://tec.openplanner.team/stops/X903acb"], ["https://tec.openplanner.team/stops/H5rx121a", "https://tec.openplanner.team/stops/H5rx132b"], ["https://tec.openplanner.team/stops/H1ba107b", "https://tec.openplanner.team/stops/H1ba110b"], ["https://tec.openplanner.team/stops/X817ada", "https://tec.openplanner.team/stops/X817afb"], ["https://tec.openplanner.team/stops/Brxmhai1", "https://tec.openplanner.team/stops/Brxmhai3"], ["https://tec.openplanner.team/stops/Lgrbill2", "https://tec.openplanner.team/stops/Lgrclas2"], ["https://tec.openplanner.team/stops/N513aha", "https://tec.openplanner.team/stops/N521asb"], ["https://tec.openplanner.team/stops/X636bda", "https://tec.openplanner.team/stops/X636bea"], ["https://tec.openplanner.team/stops/Clulidl1", "https://tec.openplanner.team/stops/Cvvpotv2"], ["https://tec.openplanner.team/stops/N509ana", "https://tec.openplanner.team/stops/N510ada"], ["https://tec.openplanner.team/stops/Baudulb1", "https://tec.openplanner.team/stops/Bwolvan2"], ["https://tec.openplanner.team/stops/LVbcoul1", "https://tec.openplanner.team/stops/LVbcoul2"], ["https://tec.openplanner.team/stops/LBIaepo4", "https://tec.openplanner.team/stops/Lghlogi2"], ["https://tec.openplanner.team/stops/N579afb", "https://tec.openplanner.team/stops/N580aaa"], ["https://tec.openplanner.team/stops/N501cyb", "https://tec.openplanner.team/stops/N528ahb"], ["https://tec.openplanner.team/stops/Cgzmarb2", "https://tec.openplanner.team/stops/Ctucamb1"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X744afa"], ["https://tec.openplanner.team/stops/X654ajb", "https://tec.openplanner.team/stops/X654alb"], ["https://tec.openplanner.team/stops/N573apa", "https://tec.openplanner.team/stops/N573aqb"], ["https://tec.openplanner.team/stops/Lsehosp2", "https://tec.openplanner.team/stops/Lseptsa2"], ["https://tec.openplanner.team/stops/X989aca", "https://tec.openplanner.team/stops/X989aeb"], ["https://tec.openplanner.team/stops/N219aba", "https://tec.openplanner.team/stops/N349ada"], ["https://tec.openplanner.team/stops/LdUespe1", "https://tec.openplanner.team/stops/LdUkreu1"], ["https://tec.openplanner.team/stops/Csscrot1", "https://tec.openplanner.team/stops/Csshouy2"], ["https://tec.openplanner.team/stops/LGegrun2", "https://tec.openplanner.team/stops/LSIgera2"], ["https://tec.openplanner.team/stops/Bquecja1", "https://tec.openplanner.team/stops/Bqueegl1"], ["https://tec.openplanner.team/stops/X639aeb", "https://tec.openplanner.team/stops/X639ajb"], ["https://tec.openplanner.team/stops/LVleg--6", "https://tec.openplanner.team/stops/LVltige1"], ["https://tec.openplanner.team/stops/Bobacar3", "https://tec.openplanner.team/stops/Broscha1"], ["https://tec.openplanner.team/stops/H5rx136a", "https://tec.openplanner.team/stops/H5rx136b"], ["https://tec.openplanner.team/stops/Bwagcus2", "https://tec.openplanner.team/stops/Csawagn1"], ["https://tec.openplanner.team/stops/Lousite6", "https://tec.openplanner.team/stops/Lstscie2"], ["https://tec.openplanner.team/stops/N533amb", "https://tec.openplanner.team/stops/N533apb"], ["https://tec.openplanner.team/stops/H1qu105b", "https://tec.openplanner.team/stops/H1wl123a"], ["https://tec.openplanner.team/stops/X788aba", "https://tec.openplanner.team/stops/X788aca"], ["https://tec.openplanner.team/stops/N551aia", "https://tec.openplanner.team/stops/N551aka"], ["https://tec.openplanner.team/stops/N150adb", "https://tec.openplanner.team/stops/N150afb"], ["https://tec.openplanner.team/stops/LmSluxh2", "https://tec.openplanner.team/stops/LnUcamp2"], ["https://tec.openplanner.team/stops/Llggram3", "https://tec.openplanner.team/stops/Llggram4"], ["https://tec.openplanner.team/stops/X604afb", "https://tec.openplanner.team/stops/X604afd"], ["https://tec.openplanner.team/stops/N244aka", "https://tec.openplanner.team/stops/N244axa"], ["https://tec.openplanner.team/stops/H5at115b", "https://tec.openplanner.team/stops/H5at235b"], ["https://tec.openplanner.team/stops/Cchba08", "https://tec.openplanner.team/stops/Cchba2"], ["https://tec.openplanner.team/stops/Bcer4br1", "https://tec.openplanner.team/stops/Bcer4br3"], ["https://tec.openplanner.team/stops/LNAbass2", "https://tec.openplanner.team/stops/LNAbouh2"], ["https://tec.openplanner.team/stops/NH21aeb", "https://tec.openplanner.team/stops/NH21afb"], ["https://tec.openplanner.team/stops/N301ahb", "https://tec.openplanner.team/stops/N340aib"], ["https://tec.openplanner.team/stops/X925ajb", "https://tec.openplanner.team/stops/X927aaa"], ["https://tec.openplanner.team/stops/X804aoa", "https://tec.openplanner.team/stops/X804bsa"], ["https://tec.openplanner.team/stops/X769afa", "https://tec.openplanner.team/stops/X769aib"], ["https://tec.openplanner.team/stops/X652afa", "https://tec.openplanner.team/stops/X652afb"], ["https://tec.openplanner.team/stops/X659add", "https://tec.openplanner.team/stops/X659aqb"], ["https://tec.openplanner.team/stops/H4bo112a", "https://tec.openplanner.team/stops/H4bo112b"], ["https://tec.openplanner.team/stops/N512aia", "https://tec.openplanner.team/stops/N512aib"], ["https://tec.openplanner.team/stops/Cgzbouh1", "https://tec.openplanner.team/stops/Cmxpleg1"], ["https://tec.openplanner.team/stops/N118acd", "https://tec.openplanner.team/stops/N118afb"], ["https://tec.openplanner.team/stops/LMalarg4", "https://tec.openplanner.team/stops/LMgkrui1"], ["https://tec.openplanner.team/stops/LPLfp2-2", "https://tec.openplanner.team/stops/LPLstri2"], ["https://tec.openplanner.team/stops/H1gh163b", "https://tec.openplanner.team/stops/H1gh168b"], ["https://tec.openplanner.team/stops/N331ada", "https://tec.openplanner.team/stops/N385acb"], ["https://tec.openplanner.team/stops/Ltigare2", "https://tec.openplanner.team/stops/Ltipass1"], ["https://tec.openplanner.team/stops/LaFbruc1", "https://tec.openplanner.team/stops/LhM07--2"], ["https://tec.openplanner.team/stops/H4ft134b", "https://tec.openplanner.team/stops/H4ft136b"], ["https://tec.openplanner.team/stops/Lvegera2", "https://tec.openplanner.team/stops/Lveveou1"], ["https://tec.openplanner.team/stops/Lscbarg1", "https://tec.openplanner.team/stops/Ltimarr2"], ["https://tec.openplanner.team/stops/H4ty342a", "https://tec.openplanner.team/stops/H4ty342b"], ["https://tec.openplanner.team/stops/X718aca", "https://tec.openplanner.team/stops/X718afa"], ["https://tec.openplanner.team/stops/X780acb", "https://tec.openplanner.team/stops/X780akb"], ["https://tec.openplanner.team/stops/Boplcar2", "https://tec.openplanner.team/stops/Boplsma4"], ["https://tec.openplanner.team/stops/H2le149a", "https://tec.openplanner.team/stops/H2le150b"], ["https://tec.openplanner.team/stops/Llgboux2", "https://tec.openplanner.team/stops/Llgherm1"], ["https://tec.openplanner.team/stops/X902ava", "https://tec.openplanner.team/stops/X902awa"], ["https://tec.openplanner.team/stops/Bgnpjbe2", "https://tec.openplanner.team/stops/Blpgvil2"], ["https://tec.openplanner.team/stops/Cmyedpa4", "https://tec.openplanner.team/stops/Cmyoasi1"], ["https://tec.openplanner.team/stops/X809abb", "https://tec.openplanner.team/stops/X858aba"], ["https://tec.openplanner.team/stops/LLUmont1", "https://tec.openplanner.team/stops/LLUmont2"], ["https://tec.openplanner.team/stops/X721aga", "https://tec.openplanner.team/stops/X721aib"], ["https://tec.openplanner.team/stops/Bhoegbr1", "https://tec.openplanner.team/stops/Bhoemel1"], ["https://tec.openplanner.team/stops/N501hab", "https://tec.openplanner.team/stops/N501mkb"], ["https://tec.openplanner.team/stops/X342aca", "https://tec.openplanner.team/stops/X342aha"], ["https://tec.openplanner.team/stops/Ldichat1", "https://tec.openplanner.team/stops/Ldichat2"], ["https://tec.openplanner.team/stops/X890ada", "https://tec.openplanner.team/stops/X891aaa"], ["https://tec.openplanner.team/stops/Bnivh%C3%B4p1", "https://tec.openplanner.team/stops/Bnivsoi2"], ["https://tec.openplanner.team/stops/N501dja", "https://tec.openplanner.team/stops/N538aqb"], ["https://tec.openplanner.team/stops/Bjaugaz1", "https://tec.openplanner.team/stops/Bmrl4ch2"], ["https://tec.openplanner.team/stops/LSUhage1", "https://tec.openplanner.team/stops/LSUvill1"], ["https://tec.openplanner.team/stops/N507apa", "https://tec.openplanner.team/stops/N507apb"], ["https://tec.openplanner.team/stops/H2ha132b", "https://tec.openplanner.team/stops/H2sb235b"], ["https://tec.openplanner.team/stops/N351akc", "https://tec.openplanner.team/stops/N351aub"], ["https://tec.openplanner.team/stops/Bbeaap51", "https://tec.openplanner.team/stops/Btlgmee2"], ["https://tec.openplanner.team/stops/Lousite2", "https://tec.openplanner.team/stops/Lousite7"], ["https://tec.openplanner.team/stops/LNEcite1", "https://tec.openplanner.team/stops/LNEcite2"], ["https://tec.openplanner.team/stops/H4lh118a", "https://tec.openplanner.team/stops/H5wo127b"], ["https://tec.openplanner.team/stops/Bwatcpr1", "https://tec.openplanner.team/stops/Bwatnrs2"], ["https://tec.openplanner.team/stops/N385aaa", "https://tec.openplanner.team/stops/N385aac"], ["https://tec.openplanner.team/stops/X649abb", "https://tec.openplanner.team/stops/X671acb"], ["https://tec.openplanner.team/stops/Bgoestu2", "https://tec.openplanner.team/stops/Bgoevli2"], ["https://tec.openplanner.team/stops/Bzluegl1", "https://tec.openplanner.team/stops/Bzluegl2"], ["https://tec.openplanner.team/stops/LJAdeho1", "https://tec.openplanner.team/stops/LJAdeho2"], ["https://tec.openplanner.team/stops/X633abb", "https://tec.openplanner.team/stops/X633afa"], ["https://tec.openplanner.team/stops/LBXhacb1", "https://tec.openplanner.team/stops/LMomonc1"], ["https://tec.openplanner.team/stops/X901aoa", "https://tec.openplanner.team/stops/X901bna"], ["https://tec.openplanner.team/stops/LBoegli1", "https://tec.openplanner.team/stops/LOCponc*"], ["https://tec.openplanner.team/stops/LAMfrai1", "https://tec.openplanner.team/stops/LFlpark*"], ["https://tec.openplanner.team/stops/X615bda", "https://tec.openplanner.team/stops/X615bea"], ["https://tec.openplanner.team/stops/LPRfond1", "https://tec.openplanner.team/stops/LPRpeti1"], ["https://tec.openplanner.team/stops/LATdame2", "https://tec.openplanner.team/stops/LATjaur2"], ["https://tec.openplanner.team/stops/X831ada", "https://tec.openplanner.team/stops/X831adb"], ["https://tec.openplanner.team/stops/X952aaa", "https://tec.openplanner.team/stops/X952alb"], ["https://tec.openplanner.team/stops/LCLacbi1", "https://tec.openplanner.team/stops/NL78afb"], ["https://tec.openplanner.team/stops/Lourose3", "https://tec.openplanner.team/stops/Lousite4"], ["https://tec.openplanner.team/stops/Bhmmvdu2", "https://tec.openplanner.team/stops/Btlgbro1"], ["https://tec.openplanner.team/stops/Cmgbrou1", "https://tec.openplanner.team/stops/Cmghay2"], ["https://tec.openplanner.team/stops/Lglsana2", "https://tec.openplanner.team/stops/Llgavoc2"], ["https://tec.openplanner.team/stops/X801bga", "https://tec.openplanner.team/stops/X801coa"], ["https://tec.openplanner.team/stops/Lrcauto2", "https://tec.openplanner.team/stops/Lrcrars1"], ["https://tec.openplanner.team/stops/N134aca", "https://tec.openplanner.team/stops/N134aea"], ["https://tec.openplanner.team/stops/H1qy133a", "https://tec.openplanner.team/stops/H1qy133b"], ["https://tec.openplanner.team/stops/Ccspla", "https://tec.openplanner.team/stops/N162aab"], ["https://tec.openplanner.team/stops/LMNgare2", "https://tec.openplanner.team/stops/LMsheid2"], ["https://tec.openplanner.team/stops/H1gh155b", "https://tec.openplanner.team/stops/H1gh158a"], ["https://tec.openplanner.team/stops/N234abb", "https://tec.openplanner.team/stops/N234aca"], ["https://tec.openplanner.team/stops/Cvregl1", "https://tec.openplanner.team/stops/Cvrhaie1"], ["https://tec.openplanner.team/stops/H4pi132a", "https://tec.openplanner.team/stops/H4wp153b"], ["https://tec.openplanner.team/stops/N209aeb", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/Boveker2", "https://tec.openplanner.team/stops/Bovesnh2"], ["https://tec.openplanner.team/stops/Lchcomm1", "https://tec.openplanner.team/stops/LSRbouh2"], ["https://tec.openplanner.team/stops/H4ta117a", "https://tec.openplanner.team/stops/H4ta125a"], ["https://tec.openplanner.team/stops/LBStec-2", "https://tec.openplanner.team/stops/LBSvi321"], ["https://tec.openplanner.team/stops/X992abb", "https://tec.openplanner.team/stops/X992afb"], ["https://tec.openplanner.team/stops/X898adb", "https://tec.openplanner.team/stops/X898aob"], ["https://tec.openplanner.team/stops/H4ga148d", "https://tec.openplanner.team/stops/H4ha170b"], ["https://tec.openplanner.team/stops/Cgysarr1", "https://tec.openplanner.team/stops/Cgysarr2"], ["https://tec.openplanner.team/stops/Btlgfto1", "https://tec.openplanner.team/stops/Btlgfto2"], ["https://tec.openplanner.team/stops/LBCtros2", "https://tec.openplanner.team/stops/LMTvill2"], ["https://tec.openplanner.team/stops/N503agb", "https://tec.openplanner.team/stops/N535adb"], ["https://tec.openplanner.team/stops/H4ty293a", "https://tec.openplanner.team/stops/H4ty360a"], ["https://tec.openplanner.team/stops/N543aua", "https://tec.openplanner.team/stops/N543cbc"], ["https://tec.openplanner.team/stops/Cmlcazi1", "https://tec.openplanner.team/stops/Cmlpche2"], ["https://tec.openplanner.team/stops/Lmocalv1", "https://tec.openplanner.team/stops/Lmovand4"], ["https://tec.openplanner.team/stops/Lanpisc2", "https://tec.openplanner.team/stops/Lglcoun1"], ["https://tec.openplanner.team/stops/N564aca", "https://tec.openplanner.team/stops/N585aia"], ["https://tec.openplanner.team/stops/Ccipier2", "https://tec.openplanner.team/stops/Ccivill1"], ["https://tec.openplanner.team/stops/H4do107b", "https://tec.openplanner.team/stops/H4do107d"], ["https://tec.openplanner.team/stops/N562bla", "https://tec.openplanner.team/stops/N562bra"], ["https://tec.openplanner.team/stops/H1do108c", "https://tec.openplanner.team/stops/H1do111a"], ["https://tec.openplanner.team/stops/X733aab", "https://tec.openplanner.team/stops/X734aoa"], ["https://tec.openplanner.team/stops/LBzvill1", "https://tec.openplanner.team/stops/LLWchat1"], ["https://tec.openplanner.team/stops/H1ca101a", "https://tec.openplanner.team/stops/H1ca107b"], ["https://tec.openplanner.team/stops/H1hr128c", "https://tec.openplanner.team/stops/H1hv132b"], ["https://tec.openplanner.team/stops/X612aeb", "https://tec.openplanner.team/stops/X626akb"], ["https://tec.openplanner.team/stops/LHGbeur3", "https://tec.openplanner.team/stops/LHGzoni2"], ["https://tec.openplanner.team/stops/LLedoya1", "https://tec.openplanner.team/stops/X547aka"], ["https://tec.openplanner.team/stops/X614aha", "https://tec.openplanner.team/stops/X614ahb"], ["https://tec.openplanner.team/stops/Cwfcast1", "https://tec.openplanner.team/stops/Cwfcast2"], ["https://tec.openplanner.team/stops/N245aab", "https://tec.openplanner.team/stops/N248aca"], ["https://tec.openplanner.team/stops/H2gy108a", "https://tec.openplanner.team/stops/H2gy113a"], ["https://tec.openplanner.team/stops/H4ka191b", "https://tec.openplanner.team/stops/H4ka400a"], ["https://tec.openplanner.team/stops/LSoeg--1", "https://tec.openplanner.team/stops/LSokrin1"], ["https://tec.openplanner.team/stops/H1hn207b", "https://tec.openplanner.team/stops/H1hn364a"], ["https://tec.openplanner.team/stops/LOVchen2", "https://tec.openplanner.team/stops/LWLtamb2"], ["https://tec.openplanner.team/stops/H5st161a", "https://tec.openplanner.team/stops/H5st166a"], ["https://tec.openplanner.team/stops/H3so169b", "https://tec.openplanner.team/stops/H3so172b"], ["https://tec.openplanner.team/stops/N141aba", "https://tec.openplanner.team/stops/N141apb"], ["https://tec.openplanner.team/stops/Lfhsoux1", "https://tec.openplanner.team/stops/Lmlprie1"], ["https://tec.openplanner.team/stops/LrEviel1", "https://tec.openplanner.team/stops/LrEviel2"], ["https://tec.openplanner.team/stops/N539afb", "https://tec.openplanner.team/stops/N540aga"], ["https://tec.openplanner.team/stops/Btubcal1", "https://tec.openplanner.team/stops/Btubcal2"], ["https://tec.openplanner.team/stops/N360aea", "https://tec.openplanner.team/stops/N360aeb"], ["https://tec.openplanner.team/stops/H4ea130a", "https://tec.openplanner.team/stops/H4ea130b"], ["https://tec.openplanner.team/stops/H1hy125b", "https://tec.openplanner.team/stops/H1hy127a"], ["https://tec.openplanner.team/stops/Bperpla1", "https://tec.openplanner.team/stops/Bperpla2"], ["https://tec.openplanner.team/stops/X897axb", "https://tec.openplanner.team/stops/X897aya"], ["https://tec.openplanner.team/stops/H4bv145a", "https://tec.openplanner.team/stops/H4bv146b"], ["https://tec.openplanner.team/stops/Lghbonn2", "https://tec.openplanner.team/stops/Lghflot2"], ["https://tec.openplanner.team/stops/Bfledpi1", "https://tec.openplanner.team/stops/Cwgmell4"], ["https://tec.openplanner.team/stops/Cgylami1", "https://tec.openplanner.team/stops/Cgynuto2"], ["https://tec.openplanner.team/stops/Bfledpi2", "https://tec.openplanner.team/stops/Bsamegl1"], ["https://tec.openplanner.team/stops/X994aba", "https://tec.openplanner.team/stops/X994afb"], ["https://tec.openplanner.team/stops/Bohncha1", "https://tec.openplanner.team/stops/Bohngen2"], ["https://tec.openplanner.team/stops/Blhugai1", "https://tec.openplanner.team/stops/Bohnegl1"], ["https://tec.openplanner.team/stops/X983aea", "https://tec.openplanner.team/stops/X996agb"], ["https://tec.openplanner.team/stops/N539afc", "https://tec.openplanner.team/stops/N539afd"], ["https://tec.openplanner.team/stops/LmI129-1", "https://tec.openplanner.team/stops/LmIcafe2"], ["https://tec.openplanner.team/stops/LGecite2", "https://tec.openplanner.team/stops/LGegrun2"], ["https://tec.openplanner.team/stops/Laleg--2", "https://tec.openplanner.team/stops/Lanschu1"], ["https://tec.openplanner.team/stops/H4ty358b", "https://tec.openplanner.team/stops/H4ty383b"], ["https://tec.openplanner.team/stops/H1be100b", "https://tec.openplanner.team/stops/H1so137b"], ["https://tec.openplanner.team/stops/LMforba2", "https://tec.openplanner.team/stops/LMfsart1"], ["https://tec.openplanner.team/stops/X605aaa", "https://tec.openplanner.team/stops/X605aab"], ["https://tec.openplanner.team/stops/X804bja", "https://tec.openplanner.team/stops/X804bka"], ["https://tec.openplanner.team/stops/LBlchin1", "https://tec.openplanner.team/stops/LGMstin1"], ["https://tec.openplanner.team/stops/X912ala", "https://tec.openplanner.team/stops/X912alb"], ["https://tec.openplanner.team/stops/LCsange1", "https://tec.openplanner.team/stops/LCschen1"], ["https://tec.openplanner.team/stops/Lhrathe*", "https://tec.openplanner.team/stops/Lhrmilm2"], ["https://tec.openplanner.team/stops/H3so172a", "https://tec.openplanner.team/stops/H3so172b"], ["https://tec.openplanner.team/stops/Barqbco1", "https://tec.openplanner.team/stops/Barqbco2"], ["https://tec.openplanner.team/stops/X882aba", "https://tec.openplanner.team/stops/X882aka"], ["https://tec.openplanner.team/stops/X672aja", "https://tec.openplanner.team/stops/X672akb"], ["https://tec.openplanner.team/stops/Bottcro1", "https://tec.openplanner.team/stops/Bottpma1"], ["https://tec.openplanner.team/stops/LrEkais1", "https://tec.openplanner.team/stops/LrErauw1"], ["https://tec.openplanner.team/stops/N338aha", "https://tec.openplanner.team/stops/N338aib"], ["https://tec.openplanner.team/stops/LFochap1", "https://tec.openplanner.team/stops/LGOdelv1"], ["https://tec.openplanner.team/stops/LBahome1", "https://tec.openplanner.team/stops/LBahome2"], ["https://tec.openplanner.team/stops/Bbealon4", "https://tec.openplanner.team/stops/Bbealou1"], ["https://tec.openplanner.team/stops/Lhrpost1", "https://tec.openplanner.team/stops/Llgchan1"], ["https://tec.openplanner.team/stops/Bottbou1", "https://tec.openplanner.team/stops/Bottcba2"], ["https://tec.openplanner.team/stops/LbUvith2", "https://tec.openplanner.team/stops/LhObull1"], ["https://tec.openplanner.team/stops/X614ara", "https://tec.openplanner.team/stops/X614arb"], ["https://tec.openplanner.team/stops/NL77afa", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/Cmmmarb2", "https://tec.openplanner.team/stops/Cmmpjou4"], ["https://tec.openplanner.team/stops/LAvrout2", "https://tec.openplanner.team/stops/LBUvall1"], ["https://tec.openplanner.team/stops/H4bq100c", "https://tec.openplanner.team/stops/H4mb205a"], ["https://tec.openplanner.team/stops/Crccamp1", "https://tec.openplanner.team/stops/Crclorc1"], ["https://tec.openplanner.team/stops/Ccymabo1", "https://tec.openplanner.team/stops/Ccymabo2"], ["https://tec.openplanner.team/stops/Bsgeegl4", "https://tec.openplanner.team/stops/Bvilcim2"], ["https://tec.openplanner.team/stops/LEScham2", "https://tec.openplanner.team/stops/LESchpl1"], ["https://tec.openplanner.team/stops/H1je216a", "https://tec.openplanner.team/stops/H1je367a"], ["https://tec.openplanner.team/stops/Cctchav1", "https://tec.openplanner.team/stops/NC11aha"], ["https://tec.openplanner.team/stops/H1sy143d", "https://tec.openplanner.team/stops/H1sy147a"], ["https://tec.openplanner.team/stops/LHaeg--1", "https://tec.openplanner.team/stops/LHaxhor1"], ["https://tec.openplanner.team/stops/H1ci102a", "https://tec.openplanner.team/stops/H1hn202a"], ["https://tec.openplanner.team/stops/H4gu107a", "https://tec.openplanner.team/stops/H4gu107b"], ["https://tec.openplanner.team/stops/Cfldand2", "https://tec.openplanner.team/stops/NC23aab"], ["https://tec.openplanner.team/stops/X648aba", "https://tec.openplanner.team/stops/X648abb"], ["https://tec.openplanner.team/stops/X773aca", "https://tec.openplanner.team/stops/X908adb"], ["https://tec.openplanner.team/stops/Bwatfia1", "https://tec.openplanner.team/stops/Bwatgar3"], ["https://tec.openplanner.team/stops/N527acb", "https://tec.openplanner.team/stops/N527afa"], ["https://tec.openplanner.team/stops/X749abb", "https://tec.openplanner.team/stops/X754abb"], ["https://tec.openplanner.team/stops/H4ka399a", "https://tec.openplanner.team/stops/H4ka400a"], ["https://tec.openplanner.team/stops/Cwfdupo2", "https://tec.openplanner.team/stops/Cwfzola1"], ["https://tec.openplanner.team/stops/N232aea", "https://tec.openplanner.team/stops/N232apb"], ["https://tec.openplanner.team/stops/H1ob327b", "https://tec.openplanner.team/stops/H1ob339b"], ["https://tec.openplanner.team/stops/X754aba", "https://tec.openplanner.team/stops/X754asb"], ["https://tec.openplanner.team/stops/X606aab", "https://tec.openplanner.team/stops/X648abb"], ["https://tec.openplanner.team/stops/LSPjoli2", "https://tec.openplanner.team/stops/LSZdepo2"], ["https://tec.openplanner.team/stops/LBOec--1", "https://tec.openplanner.team/stops/LBWbatt1"], ["https://tec.openplanner.team/stops/Ccocoup1", "https://tec.openplanner.team/stops/Ccohuli2"], ["https://tec.openplanner.team/stops/LdElamb2", "https://tec.openplanner.team/stops/LiVgirk2"], ["https://tec.openplanner.team/stops/LHZec--1", "https://tec.openplanner.team/stops/LHZec--2"], ["https://tec.openplanner.team/stops/LCx728-2", "https://tec.openplanner.team/stops/LHEchex2"], ["https://tec.openplanner.team/stops/X982bxa", "https://tec.openplanner.team/stops/X982bxb"], ["https://tec.openplanner.team/stops/Bwaypav1", "https://tec.openplanner.team/stops/Bwaypav2"], ["https://tec.openplanner.team/stops/LClflor1", "https://tec.openplanner.team/stops/LHChoof4"], ["https://tec.openplanner.team/stops/LWarema1", "https://tec.openplanner.team/stops/LWathir1"], ["https://tec.openplanner.team/stops/LHAbont1", "https://tec.openplanner.team/stops/LRItour1"], ["https://tec.openplanner.team/stops/X999aja", "https://tec.openplanner.team/stops/X999ajb"], ["https://tec.openplanner.team/stops/N106aeb", "https://tec.openplanner.team/stops/N106aqa"], ["https://tec.openplanner.team/stops/LCxcouv1", "https://tec.openplanner.team/stops/LCxcouv2"], ["https://tec.openplanner.team/stops/LkTgutl1", "https://tec.openplanner.team/stops/LkTlibe1"], ["https://tec.openplanner.team/stops/N501hxy", "https://tec.openplanner.team/stops/N501inb"], ["https://tec.openplanner.team/stops/H1ma230a", "https://tec.openplanner.team/stops/H1ma230b"], ["https://tec.openplanner.team/stops/Ccyga7", "https://tec.openplanner.team/stops/Ccygara1"], ["https://tec.openplanner.team/stops/H4mo132a", "https://tec.openplanner.team/stops/H4mo177a"], ["https://tec.openplanner.team/stops/X836ada", "https://tec.openplanner.team/stops/X836aea"], ["https://tec.openplanner.team/stops/X902ada", "https://tec.openplanner.team/stops/X902aob"], ["https://tec.openplanner.team/stops/H1hn204b", "https://tec.openplanner.team/stops/H1mv239a"], ["https://tec.openplanner.team/stops/Lannico2", "https://tec.openplanner.team/stops/Lannico3"], ["https://tec.openplanner.team/stops/LeIkreu1", "https://tec.openplanner.team/stops/LeIpiro4"], ["https://tec.openplanner.team/stops/H1po130a", "https://tec.openplanner.team/stops/H1po133b"], ["https://tec.openplanner.team/stops/LCRvert2", "https://tec.openplanner.team/stops/LKmdrie1"], ["https://tec.openplanner.team/stops/Lhrdeme2", "https://tec.openplanner.team/stops/Lhrtilm2"], ["https://tec.openplanner.team/stops/N584aba", "https://tec.openplanner.team/stops/N584acb"], ["https://tec.openplanner.team/stops/LDpzol-1", "https://tec.openplanner.team/stops/LDpzol-2"], ["https://tec.openplanner.team/stops/Lgdstoc1", "https://tec.openplanner.team/stops/LSNecol3"], ["https://tec.openplanner.team/stops/H4mo180a", "https://tec.openplanner.team/stops/H4mo186a"], ["https://tec.openplanner.team/stops/Clomart1", "https://tec.openplanner.team/stops/Clomart2"], ["https://tec.openplanner.team/stops/N219aca", "https://tec.openplanner.team/stops/N219afa"], ["https://tec.openplanner.team/stops/Lprceri2", "https://tec.openplanner.team/stops/Lprsher1"], ["https://tec.openplanner.team/stops/LBglign1", "https://tec.openplanner.team/stops/LLbvith1"], ["https://tec.openplanner.team/stops/X767aaa", "https://tec.openplanner.team/stops/X768aba"], ["https://tec.openplanner.team/stops/Cmlbeau2", "https://tec.openplanner.team/stops/Cmlfstt1"], ["https://tec.openplanner.team/stops/LHUdelc2", "https://tec.openplanner.team/stops/LHUlebe8"], ["https://tec.openplanner.team/stops/LOrchau2", "https://tec.openplanner.team/stops/LORcomb2"], ["https://tec.openplanner.team/stops/N562acb", "https://tec.openplanner.team/stops/N562aha"], ["https://tec.openplanner.team/stops/N120aab", "https://tec.openplanner.team/stops/N302adb"], ["https://tec.openplanner.team/stops/Ccogrbu2", "https://tec.openplanner.team/stops/Csoforr2"], ["https://tec.openplanner.team/stops/Cpl4bra3", "https://tec.openplanner.team/stops/Cplrmon1"], ["https://tec.openplanner.team/stops/Cdanvpr2", "https://tec.openplanner.team/stops/Cmabegh2"], ["https://tec.openplanner.team/stops/H1bb121a", "https://tec.openplanner.team/stops/H1hi124a"], ["https://tec.openplanner.team/stops/X601bka", "https://tec.openplanner.team/stops/X601bra"], ["https://tec.openplanner.team/stops/X625ada", "https://tec.openplanner.team/stops/X625adb"], ["https://tec.openplanner.team/stops/H1te184a", "https://tec.openplanner.team/stops/H1te187a"], ["https://tec.openplanner.team/stops/LHcbaro2", "https://tec.openplanner.team/stops/LHcgare2"], ["https://tec.openplanner.team/stops/Brsrfen1", "https://tec.openplanner.team/stops/Brsrfen2"], ["https://tec.openplanner.team/stops/Cpljonc2", "https://tec.openplanner.team/stops/NC11aga"], ["https://tec.openplanner.team/stops/LMApl--1", "https://tec.openplanner.team/stops/LMApl--2"], ["https://tec.openplanner.team/stops/X777aba", "https://tec.openplanner.team/stops/X777abb"], ["https://tec.openplanner.team/stops/H1mb127a", "https://tec.openplanner.team/stops/H1mb128a"], ["https://tec.openplanner.team/stops/Cmtchas2", "https://tec.openplanner.team/stops/Cmtprey1"], ["https://tec.openplanner.team/stops/Clfbarr4", "https://tec.openplanner.team/stops/Clftour1"], ["https://tec.openplanner.team/stops/Bnilegl2", "https://tec.openplanner.team/stops/Bnilwal2"], ["https://tec.openplanner.team/stops/LAChann2", "https://tec.openplanner.team/stops/LACwass2"], ["https://tec.openplanner.team/stops/LXHfond1", "https://tec.openplanner.team/stops/LXHfond3"], ["https://tec.openplanner.team/stops/X390aka", "https://tec.openplanner.team/stops/X991aea"], ["https://tec.openplanner.team/stops/X738acb", "https://tec.openplanner.team/stops/X754ana"], ["https://tec.openplanner.team/stops/N338aea", "https://tec.openplanner.team/stops/N339aab"], ["https://tec.openplanner.team/stops/H1fl134b", "https://tec.openplanner.team/stops/H1qu114a"], ["https://tec.openplanner.team/stops/LSkbo831", "https://tec.openplanner.team/stops/LSkmarq2"], ["https://tec.openplanner.team/stops/Cgogb1", "https://tec.openplanner.team/stops/Cjucar02"], ["https://tec.openplanner.team/stops/Bcbqcoi2", "https://tec.openplanner.team/stops/Bcbqp251"], ["https://tec.openplanner.team/stops/H4ea129b", "https://tec.openplanner.team/stops/H4ea130a"], ["https://tec.openplanner.team/stops/Bllnpaf2", "https://tec.openplanner.team/stops/Bmsgbur2"], ["https://tec.openplanner.team/stops/Bbcoeca1", "https://tec.openplanner.team/stops/H3br107b"], ["https://tec.openplanner.team/stops/N390aaa", "https://tec.openplanner.team/stops/N390aca"], ["https://tec.openplanner.team/stops/LATdame2", "https://tec.openplanner.team/stops/LWzfuma1"], ["https://tec.openplanner.team/stops/X626aea", "https://tec.openplanner.team/stops/X626aeb"], ["https://tec.openplanner.team/stops/H2ml114a", "https://tec.openplanner.team/stops/H2mo119a"], ["https://tec.openplanner.team/stops/Brxmcha1", "https://tec.openplanner.team/stops/Brxmcha2"], ["https://tec.openplanner.team/stops/H2na131b", "https://tec.openplanner.team/stops/H2na133b"], ["https://tec.openplanner.team/stops/X921aoa", "https://tec.openplanner.team/stops/X921aob"], ["https://tec.openplanner.team/stops/LRRchen1", "https://tec.openplanner.team/stops/LRRchen2"], ["https://tec.openplanner.team/stops/Cfrgivr2", "https://tec.openplanner.team/stops/Cfrsour2"], ["https://tec.openplanner.team/stops/N308afb", "https://tec.openplanner.team/stops/N308ayb"], ["https://tec.openplanner.team/stops/H4be111a", "https://tec.openplanner.team/stops/H4be112b"], ["https://tec.openplanner.team/stops/N360aea", "https://tec.openplanner.team/stops/X892aia"], ["https://tec.openplanner.team/stops/Blpglon1", "https://tec.openplanner.team/stops/Blpglon2"], ["https://tec.openplanner.team/stops/H1hr116a", "https://tec.openplanner.team/stops/H2pr116a"], ["https://tec.openplanner.team/stops/Cgogrco1", "https://tec.openplanner.team/stops/Ctmmana1"], ["https://tec.openplanner.team/stops/Cbwmato1", "https://tec.openplanner.team/stops/Cmqn5911"], ["https://tec.openplanner.team/stops/Bmonbri1", "https://tec.openplanner.team/stops/Bnivlai1"], ["https://tec.openplanner.team/stops/LSGcarr1", "https://tec.openplanner.team/stops/LVEmoul1"], ["https://tec.openplanner.team/stops/N501fxa", "https://tec.openplanner.team/stops/N501gzz"], ["https://tec.openplanner.team/stops/X877aab", "https://tec.openplanner.team/stops/X877aga"], ["https://tec.openplanner.team/stops/N501grf", "https://tec.openplanner.team/stops/N501mha"], ["https://tec.openplanner.team/stops/H4ty282a", "https://tec.openplanner.team/stops/H4ty283b"], ["https://tec.openplanner.team/stops/Cmlphai1", "https://tec.openplanner.team/stops/Cmlpomm1"], ["https://tec.openplanner.team/stops/N534ara", "https://tec.openplanner.team/stops/N534aua"], ["https://tec.openplanner.team/stops/X745aea", "https://tec.openplanner.team/stops/X745aeb"], ["https://tec.openplanner.team/stops/Cfaterg3", "https://tec.openplanner.team/stops/Cfaterg6"], ["https://tec.openplanner.team/stops/N127afa", "https://tec.openplanner.team/stops/N127bfa"], ["https://tec.openplanner.team/stops/H4ea128b", "https://tec.openplanner.team/stops/H4ea129b"], ["https://tec.openplanner.team/stops/X605aca", "https://tec.openplanner.team/stops/X605ada"], ["https://tec.openplanner.team/stops/N506aba", "https://tec.openplanner.team/stops/N506aca"], ["https://tec.openplanner.team/stops/H4ty307a", "https://tec.openplanner.team/stops/H4ty334b"], ["https://tec.openplanner.team/stops/NR27aaa", "https://tec.openplanner.team/stops/NR27aba"], ["https://tec.openplanner.team/stops/N104aca", "https://tec.openplanner.team/stops/N104aeb"], ["https://tec.openplanner.team/stops/Clshafa1", "https://tec.openplanner.team/stops/H1me118a"], ["https://tec.openplanner.team/stops/H4wa155a", "https://tec.openplanner.team/stops/H4wa156b"], ["https://tec.openplanner.team/stops/Bcercsa2", "https://tec.openplanner.team/stops/Bcsempl2"], ["https://tec.openplanner.team/stops/Lcacasi1", "https://tec.openplanner.team/stops/Lcapisc1"], ["https://tec.openplanner.team/stops/Llojeme2", "https://tec.openplanner.team/stops/Llojeme4"], ["https://tec.openplanner.team/stops/H1bb146b", "https://tec.openplanner.team/stops/H1do120b"], ["https://tec.openplanner.team/stops/X921aia", "https://tec.openplanner.team/stops/X921ara"], ["https://tec.openplanner.team/stops/LFAtomb1", "https://tec.openplanner.team/stops/LLTther2"], ["https://tec.openplanner.team/stops/Cluplve3", "https://tec.openplanner.team/stops/Cvvcime1"], ["https://tec.openplanner.team/stops/Llgbois1", "https://tec.openplanner.team/stops/Llgwild6"], ["https://tec.openplanner.team/stops/N308aia", "https://tec.openplanner.team/stops/N308ala"], ["https://tec.openplanner.team/stops/N120aib", "https://tec.openplanner.team/stops/N167ahb"], ["https://tec.openplanner.team/stops/Csebasc2", "https://tec.openplanner.team/stops/Cselibe2"], ["https://tec.openplanner.team/stops/LaAkapi1", "https://tec.openplanner.team/stops/LaAkapi2"], ["https://tec.openplanner.team/stops/H1ha196a", "https://tec.openplanner.team/stops/H1ha199a"], ["https://tec.openplanner.team/stops/X394afb", "https://tec.openplanner.team/stops/X394aga"], ["https://tec.openplanner.team/stops/N232bza", "https://tec.openplanner.team/stops/N232bzb"], ["https://tec.openplanner.team/stops/LRRecsc*", "https://tec.openplanner.team/stops/LRRelec2"], ["https://tec.openplanner.team/stops/X614aoa", "https://tec.openplanner.team/stops/X614apb"], ["https://tec.openplanner.team/stops/X762aca", "https://tec.openplanner.team/stops/X786ajb"], ["https://tec.openplanner.team/stops/Ljufler2", "https://tec.openplanner.team/stops/Lsweg--1"], ["https://tec.openplanner.team/stops/N311aaa", "https://tec.openplanner.team/stops/N311aba"], ["https://tec.openplanner.team/stops/Bborbif2", "https://tec.openplanner.team/stops/Bborppa1"], ["https://tec.openplanner.team/stops/LAibego1", "https://tec.openplanner.team/stops/Lfhmarn2"], ["https://tec.openplanner.team/stops/H4bd107b", "https://tec.openplanner.team/stops/H4bd111a"], ["https://tec.openplanner.team/stops/N116aad", "https://tec.openplanner.team/stops/N118avb"], ["https://tec.openplanner.team/stops/N122aca", "https://tec.openplanner.team/stops/N122adb"], ["https://tec.openplanner.team/stops/LAIrout2", "https://tec.openplanner.team/stops/LCschen2"], ["https://tec.openplanner.team/stops/Cgrchfe1", "https://tec.openplanner.team/stops/Clvmesa1"], ["https://tec.openplanner.team/stops/LrDhind1", "https://tec.openplanner.team/stops/LrDkirc1"], ["https://tec.openplanner.team/stops/N534apg", "https://tec.openplanner.team/stops/N534awb"], ["https://tec.openplanner.team/stops/N509aua", "https://tec.openplanner.team/stops/N509aub"], ["https://tec.openplanner.team/stops/Cpclarm1", "https://tec.openplanner.team/stops/Cpclarm2"], ["https://tec.openplanner.team/stops/LNEgare*", "https://tec.openplanner.team/stops/LNEvpn-1"], ["https://tec.openplanner.team/stops/H2ma263a", "https://tec.openplanner.team/stops/H2ma265a"], ["https://tec.openplanner.team/stops/Bwatcro1", "https://tec.openplanner.team/stops/Bwatifr1"], ["https://tec.openplanner.team/stops/X758ada", "https://tec.openplanner.team/stops/X758aea"], ["https://tec.openplanner.team/stops/Cfabaty2", "https://tec.openplanner.team/stops/Cfanoci1"], ["https://tec.openplanner.team/stops/LHrfang1", "https://tec.openplanner.team/stops/LHrparc1"], ["https://tec.openplanner.team/stops/Lsnfont1", "https://tec.openplanner.team/stops/Ltithie2"], ["https://tec.openplanner.team/stops/LPLfp2-1", "https://tec.openplanner.team/stops/LPLheid2"], ["https://tec.openplanner.team/stops/N353adb", "https://tec.openplanner.team/stops/N353aha"], ["https://tec.openplanner.team/stops/Bwaucan1", "https://tec.openplanner.team/stops/Bwaurge1"], ["https://tec.openplanner.team/stops/X801abc", "https://tec.openplanner.team/stops/X801aca"], ["https://tec.openplanner.team/stops/Bwavdel1", "https://tec.openplanner.team/stops/Bwavfbe2"], ["https://tec.openplanner.team/stops/X741alb", "https://tec.openplanner.team/stops/X840aea"], ["https://tec.openplanner.team/stops/N244aib", "https://tec.openplanner.team/stops/N287adb"], ["https://tec.openplanner.team/stops/LXhjupr3", "https://tec.openplanner.team/stops/LXhnouv1"], ["https://tec.openplanner.team/stops/Lgrecpe1", "https://tec.openplanner.team/stops/Lgrmagd1"], ["https://tec.openplanner.team/stops/LFmgeno1", "https://tec.openplanner.team/stops/LFmroye2"], ["https://tec.openplanner.team/stops/X723anb", "https://tec.openplanner.team/stops/X724afb"], ["https://tec.openplanner.team/stops/Lpeptra2", "https://tec.openplanner.team/stops/Lpevove1"], ["https://tec.openplanner.team/stops/LRErive2", "https://tec.openplanner.team/stops/LREsp902"], ["https://tec.openplanner.team/stops/Bjodcad2", "https://tec.openplanner.team/stops/Bjodsme2"], ["https://tec.openplanner.team/stops/X740aca", "https://tec.openplanner.team/stops/X740ada"], ["https://tec.openplanner.team/stops/H2sb231a", "https://tec.openplanner.team/stops/H2sb231c"], ["https://tec.openplanner.team/stops/Blanath1", "https://tec.openplanner.team/stops/LLasta-*"], ["https://tec.openplanner.team/stops/H1ob330a", "https://tec.openplanner.team/stops/H1ob341a"], ["https://tec.openplanner.team/stops/Clddeve2", "https://tec.openplanner.team/stops/Cldplac1"], ["https://tec.openplanner.team/stops/N501apa", "https://tec.openplanner.team/stops/N501bca"], ["https://tec.openplanner.team/stops/LOnec--1", "https://tec.openplanner.team/stops/LXopier1"], ["https://tec.openplanner.team/stops/Cmtplac3", "https://tec.openplanner.team/stops/Cmtplac8"], ["https://tec.openplanner.team/stops/X811aba", "https://tec.openplanner.team/stops/X811acb"], ["https://tec.openplanner.team/stops/N531apa", "https://tec.openplanner.team/stops/N531aqb"], ["https://tec.openplanner.team/stops/X602afa", "https://tec.openplanner.team/stops/X602agb"], ["https://tec.openplanner.team/stops/X674aaa", "https://tec.openplanner.team/stops/X820aga"], ["https://tec.openplanner.team/stops/X601cwa", "https://tec.openplanner.team/stops/X601dca"], ["https://tec.openplanner.team/stops/N501daa", "https://tec.openplanner.team/stops/N528akb"], ["https://tec.openplanner.team/stops/N894agc", "https://tec.openplanner.team/stops/N894age"], ["https://tec.openplanner.team/stops/Cnaplan2", "https://tec.openplanner.team/stops/Cnaplbu1"], ["https://tec.openplanner.team/stops/N501hra", "https://tec.openplanner.team/stops/N501hua"], ["https://tec.openplanner.team/stops/H2sb228d", "https://tec.openplanner.team/stops/H2tr248b"], ["https://tec.openplanner.team/stops/Loudela1", "https://tec.openplanner.team/stops/Loutroi1"], ["https://tec.openplanner.team/stops/H1do115a", "https://tec.openplanner.team/stops/H1do120a"], ["https://tec.openplanner.team/stops/X804apb", "https://tec.openplanner.team/stops/X805afb"], ["https://tec.openplanner.team/stops/LRmkerk1", "https://tec.openplanner.team/stops/LRmstat1"], ["https://tec.openplanner.team/stops/LHAclin2", "https://tec.openplanner.team/stops/LVIdeva2"], ["https://tec.openplanner.team/stops/Btubmfa1", "https://tec.openplanner.team/stops/Btubmfa2"], ["https://tec.openplanner.team/stops/X666ahb", "https://tec.openplanner.team/stops/X745aeb"], ["https://tec.openplanner.team/stops/H1he102a", "https://tec.openplanner.team/stops/H1he106a"], ["https://tec.openplanner.team/stops/N217aba", "https://tec.openplanner.team/stops/N217ada"], ["https://tec.openplanner.team/stops/H1ni318b", "https://tec.openplanner.team/stops/H1ni321a"], ["https://tec.openplanner.team/stops/H1ca108a", "https://tec.openplanner.team/stops/H1th183a"], ["https://tec.openplanner.team/stops/N541ada", "https://tec.openplanner.team/stops/N541aea"], ["https://tec.openplanner.team/stops/Bbghgli1", "https://tec.openplanner.team/stops/Bbghpln1"], ["https://tec.openplanner.team/stops/Bbcoubo2", "https://tec.openplanner.team/stops/H3br101a"], ["https://tec.openplanner.team/stops/LOUchen1", "https://tec.openplanner.team/stops/LOUsorb1"], ["https://tec.openplanner.team/stops/LBdcime2", "https://tec.openplanner.team/stops/LBdmarr2"], ["https://tec.openplanner.team/stops/H4ne139b", "https://tec.openplanner.team/stops/H4tf147b"], ["https://tec.openplanner.team/stops/H1fr107d", "https://tec.openplanner.team/stops/H1fr107e"], ["https://tec.openplanner.team/stops/LCIcent1", "https://tec.openplanner.team/stops/LCIpiet2"], ["https://tec.openplanner.team/stops/N508aob", "https://tec.openplanner.team/stops/N509aab"], ["https://tec.openplanner.team/stops/Bbgnvel2", "https://tec.openplanner.team/stops/Cwfplac2"], ["https://tec.openplanner.team/stops/N573ama", "https://tec.openplanner.team/stops/N573amb"], ["https://tec.openplanner.team/stops/X764aba", "https://tec.openplanner.team/stops/X764abb"], ["https://tec.openplanner.team/stops/Bwav4sa1", "https://tec.openplanner.team/stops/Bwavlon2"], ["https://tec.openplanner.team/stops/NR21aab", "https://tec.openplanner.team/stops/NR21abc"], ["https://tec.openplanner.team/stops/Cgpcime1", "https://tec.openplanner.team/stops/Cgpcime2"], ["https://tec.openplanner.team/stops/N507alc", "https://tec.openplanner.team/stops/N512atb"], ["https://tec.openplanner.team/stops/N531aca", "https://tec.openplanner.team/stops/N531acb"], ["https://tec.openplanner.team/stops/LmTgers2", "https://tec.openplanner.team/stops/LrTpost1"], ["https://tec.openplanner.team/stops/H1je218a", "https://tec.openplanner.team/stops/H1ms929a"], ["https://tec.openplanner.team/stops/H1at110a", "https://tec.openplanner.team/stops/H1fy119a"], ["https://tec.openplanner.team/stops/LNCgene1", "https://tec.openplanner.team/stops/LNClila2"], ["https://tec.openplanner.team/stops/N501anz", "https://tec.openplanner.team/stops/N501ncb"], ["https://tec.openplanner.team/stops/X645aab", "https://tec.openplanner.team/stops/X645aba"], ["https://tec.openplanner.team/stops/Buccham1", "https://tec.openplanner.team/stops/Buccham2"], ["https://tec.openplanner.team/stops/Cfcgar2", "https://tec.openplanner.team/stops/Cfcpcov1"], ["https://tec.openplanner.team/stops/H1ho122c", "https://tec.openplanner.team/stops/H1ho136a"], ["https://tec.openplanner.team/stops/NL76ana", "https://tec.openplanner.team/stops/NL76anb"], ["https://tec.openplanner.team/stops/Bhalber3", "https://tec.openplanner.team/stops/Bhalpar3"], ["https://tec.openplanner.team/stops/H4ep129a", "https://tec.openplanner.team/stops/H4rm110a"], ["https://tec.openplanner.team/stops/Cmmadma2", "https://tec.openplanner.team/stops/Cmmceri2"], ["https://tec.openplanner.team/stops/N117ana", "https://tec.openplanner.team/stops/N117aoc"], ["https://tec.openplanner.team/stops/N551apa", "https://tec.openplanner.team/stops/N551apb"], ["https://tec.openplanner.team/stops/Lcealig1", "https://tec.openplanner.team/stops/Lceavia1"], ["https://tec.openplanner.team/stops/Ljuargi1", "https://tec.openplanner.team/stops/Ljuchaf2"], ["https://tec.openplanner.team/stops/X777aaa", "https://tec.openplanner.team/stops/X777aba"], ["https://tec.openplanner.team/stops/H4bo113b", "https://tec.openplanner.team/stops/H4bo118c"], ["https://tec.openplanner.team/stops/LBNforg1", "https://tec.openplanner.team/stops/LBNforg2"], ["https://tec.openplanner.team/stops/X601afa", "https://tec.openplanner.team/stops/X601bta"], ["https://tec.openplanner.team/stops/H1ha198a", "https://tec.openplanner.team/stops/H1ha198b"], ["https://tec.openplanner.team/stops/N501csa", "https://tec.openplanner.team/stops/N501csb"], ["https://tec.openplanner.team/stops/H1ha192b", "https://tec.openplanner.team/stops/H3go100b"], ["https://tec.openplanner.team/stops/Csygare2", "https://tec.openplanner.team/stops/Csygare3"], ["https://tec.openplanner.team/stops/N122aha", "https://tec.openplanner.team/stops/N122ahb"], ["https://tec.openplanner.team/stops/Lseblan*", "https://tec.openplanner.team/stops/Lsemyrt1"], ["https://tec.openplanner.team/stops/LlgPTAV1", "https://tec.openplanner.team/stops/LlgPTAV2"], ["https://tec.openplanner.team/stops/X614ara", "https://tec.openplanner.team/stops/X624aaa"], ["https://tec.openplanner.team/stops/X836aib", "https://tec.openplanner.team/stops/X836aja"], ["https://tec.openplanner.team/stops/Cmyecur1", "https://tec.openplanner.team/stops/Cmyecur2"], ["https://tec.openplanner.team/stops/H1em106a", "https://tec.openplanner.team/stops/H1fa120a"], ["https://tec.openplanner.team/stops/LmEdorf1", "https://tec.openplanner.team/stops/LmNmerl2"], ["https://tec.openplanner.team/stops/Bdonlat2", "https://tec.openplanner.team/stops/Binccha1"], ["https://tec.openplanner.team/stops/Lhrferr1", "https://tec.openplanner.team/stops/Lhrferr2"], ["https://tec.openplanner.team/stops/H1fr115a", "https://tec.openplanner.team/stops/H1fr122a"], ["https://tec.openplanner.team/stops/Bhoemel2", "https://tec.openplanner.team/stops/Blhugai1"], ["https://tec.openplanner.team/stops/X876aab", "https://tec.openplanner.team/stops/X877adb"], ["https://tec.openplanner.team/stops/LhSschn2", "https://tec.openplanner.team/stops/LwAschu1"], ["https://tec.openplanner.team/stops/H1si164a", "https://tec.openplanner.team/stops/H1si164b"], ["https://tec.openplanner.team/stops/H4pl115a", "https://tec.openplanner.team/stops/H4pl122b"], ["https://tec.openplanner.team/stops/Ladandr1", "https://tec.openplanner.team/stops/Ldimeun1"], ["https://tec.openplanner.team/stops/X911ata", "https://tec.openplanner.team/stops/X912aaa"], ["https://tec.openplanner.team/stops/Bhercsj2", "https://tec.openplanner.team/stops/Bpiehte1"], ["https://tec.openplanner.team/stops/Bpelegl1", "https://tec.openplanner.team/stops/Bpelegl3"], ["https://tec.openplanner.team/stops/Cgocalv3", "https://tec.openplanner.team/stops/CMcalv2"], ["https://tec.openplanner.team/stops/Cdalpla2", "https://tec.openplanner.team/stops/CMdesc1"], ["https://tec.openplanner.team/stops/N543bda", "https://tec.openplanner.team/stops/N566aea"], ["https://tec.openplanner.team/stops/LLUmc--1", "https://tec.openplanner.team/stops/LLUmont1"], ["https://tec.openplanner.team/stops/H3so167a", "https://tec.openplanner.team/stops/H3so174a"], ["https://tec.openplanner.team/stops/X687aca", "https://tec.openplanner.team/stops/X687ada"], ["https://tec.openplanner.team/stops/Cflmart2", "https://tec.openplanner.team/stops/Clacast1"], ["https://tec.openplanner.team/stops/Ladarev1", "https://tec.openplanner.team/stops/Ladxhen2"], ["https://tec.openplanner.team/stops/X364aaa", "https://tec.openplanner.team/stops/X371aib"], ["https://tec.openplanner.team/stops/Lsebico2", "https://tec.openplanner.team/stops/Lsehosp2"], ["https://tec.openplanner.team/stops/H1qu109b", "https://tec.openplanner.team/stops/H1qu119b"], ["https://tec.openplanner.team/stops/H1gi120d", "https://tec.openplanner.team/stops/H1hm176a"], ["https://tec.openplanner.team/stops/LHegame1", "https://tec.openplanner.team/stops/LHemoul1"], ["https://tec.openplanner.team/stops/X688aab", "https://tec.openplanner.team/stops/X688aba"], ["https://tec.openplanner.team/stops/LMgbatt1", "https://tec.openplanner.team/stops/LMgberw1"], ["https://tec.openplanner.team/stops/Bpthcgo1", "https://tec.openplanner.team/stops/Bwanthi1"], ["https://tec.openplanner.team/stops/LBPmais1", "https://tec.openplanner.team/stops/LBPmili2"], ["https://tec.openplanner.team/stops/Lbococh2", "https://tec.openplanner.team/stops/Lbotige1"], ["https://tec.openplanner.team/stops/X818ala", "https://tec.openplanner.team/stops/X818amb"], ["https://tec.openplanner.team/stops/X822ajb", "https://tec.openplanner.team/stops/X822alb"], ["https://tec.openplanner.team/stops/X614acb", "https://tec.openplanner.team/stops/X614ara"], ["https://tec.openplanner.team/stops/LsCback1", "https://tec.openplanner.team/stops/LsCback2"], ["https://tec.openplanner.team/stops/Ctubpos1", "https://tec.openplanner.team/stops/Cturoge1"], ["https://tec.openplanner.team/stops/Cgofert2", "https://tec.openplanner.team/stops/Cgosmoi2"], ["https://tec.openplanner.team/stops/Cchdrai2", "https://tec.openplanner.team/stops/Cchjaur2"], ["https://tec.openplanner.team/stops/H1vh136c", "https://tec.openplanner.team/stops/H3go103a"], ["https://tec.openplanner.team/stops/X896aaa", "https://tec.openplanner.team/stops/X896aab"], ["https://tec.openplanner.team/stops/Bgntcoo2", "https://tec.openplanner.team/stops/Bgntpla1"], ["https://tec.openplanner.team/stops/LTRoasi2", "https://tec.openplanner.team/stops/LTRsain2"], ["https://tec.openplanner.team/stops/Lagsauh2", "https://tec.openplanner.team/stops/Lemjoba1"], ["https://tec.openplanner.team/stops/LHAcite2", "https://tec.openplanner.team/stops/LHAprei2"], ["https://tec.openplanner.team/stops/X923aaa", "https://tec.openplanner.team/stops/X923aka"], ["https://tec.openplanner.team/stops/LmYwall2", "https://tec.openplanner.team/stops/LsVgend2"], ["https://tec.openplanner.team/stops/Llgcoti*", "https://tec.openplanner.team/stops/Llgtawe0"], ["https://tec.openplanner.team/stops/LBNpleg2", "https://tec.openplanner.team/stops/LBNplei1"], ["https://tec.openplanner.team/stops/LTRchpl1", "https://tec.openplanner.team/stops/LTRgare4"], ["https://tec.openplanner.team/stops/X925aea", "https://tec.openplanner.team/stops/X996aaa"], ["https://tec.openplanner.team/stops/X993aeb", "https://tec.openplanner.team/stops/X993aib"], ["https://tec.openplanner.team/stops/H1mm127b", "https://tec.openplanner.team/stops/H1vb148a"], ["https://tec.openplanner.team/stops/Llgstev1", "https://tec.openplanner.team/stops/Lscatme1"], ["https://tec.openplanner.team/stops/Cctathe2", "https://tec.openplanner.team/stops/Cctjoue6"], ["https://tec.openplanner.team/stops/Lgrramp2", "https://tec.openplanner.team/stops/Llggrav1"], ["https://tec.openplanner.team/stops/LRacime2", "https://tec.openplanner.team/stops/LRaplac1"], ["https://tec.openplanner.team/stops/Btanbth2", "https://tec.openplanner.team/stops/Btanpla2"], ["https://tec.openplanner.team/stops/Cwfcast2", "https://tec.openplanner.team/stops/NC23aga"], ["https://tec.openplanner.team/stops/N551aib", "https://tec.openplanner.team/stops/N551aka"], ["https://tec.openplanner.team/stops/X811afb", "https://tec.openplanner.team/stops/X811aja"], ["https://tec.openplanner.team/stops/Cgymast1", "https://tec.openplanner.team/stops/Cgyrrep1"], ["https://tec.openplanner.team/stops/Lbocruc1", "https://tec.openplanner.team/stops/Lbomc--4"], ["https://tec.openplanner.team/stops/N531aub", "https://tec.openplanner.team/stops/N568abb"], ["https://tec.openplanner.team/stops/LBThaut1", "https://tec.openplanner.team/stops/LMheg--2"], ["https://tec.openplanner.team/stops/Cmlbuis4", "https://tec.openplanner.team/stops/Cmlphai2"], ["https://tec.openplanner.team/stops/Bndbdra1", "https://tec.openplanner.team/stops/Bptbsar1"], ["https://tec.openplanner.team/stops/N556afa", "https://tec.openplanner.team/stops/N557aia"], ["https://tec.openplanner.team/stops/LESflag1", "https://tec.openplanner.team/stops/LTIchev1"], ["https://tec.openplanner.team/stops/LAMec--1", "https://tec.openplanner.team/stops/LAMgreg2"], ["https://tec.openplanner.team/stops/Cprvsar1", "https://tec.openplanner.team/stops/Cprvsar2"], ["https://tec.openplanner.team/stops/X806aga", "https://tec.openplanner.team/stops/X873aba"], ["https://tec.openplanner.team/stops/H4ty303a", "https://tec.openplanner.team/stops/H4ty354b"], ["https://tec.openplanner.team/stops/LJAboli2", "https://tec.openplanner.team/stops/LJAwerf2"], ["https://tec.openplanner.team/stops/LSXbecc2", "https://tec.openplanner.team/stops/LTHchiv2"], ["https://tec.openplanner.team/stops/X610aab", "https://tec.openplanner.team/stops/X610acb"], ["https://tec.openplanner.team/stops/LTNcarr2", "https://tec.openplanner.team/stops/LTNegli2"], ["https://tec.openplanner.team/stops/Lvecite3", "https://tec.openplanner.team/stops/Lvegest2"], ["https://tec.openplanner.team/stops/Bwatali1", "https://tec.openplanner.team/stops/Bwatcoq1"], ["https://tec.openplanner.team/stops/Bblapri1", "https://tec.openplanner.team/stops/Bblapri2"], ["https://tec.openplanner.team/stops/H4fa127b", "https://tec.openplanner.team/stops/H4fa167b"], ["https://tec.openplanner.team/stops/Crcrlf1", "https://tec.openplanner.team/stops/Csufrom6"], ["https://tec.openplanner.team/stops/X364abb", "https://tec.openplanner.team/stops/X364ada"], ["https://tec.openplanner.team/stops/H4ta115b", "https://tec.openplanner.team/stops/H4ta127b"], ["https://tec.openplanner.team/stops/Cchparc5", "https://tec.openplanner.team/stops/NC01ahb"], ["https://tec.openplanner.team/stops/Bnodcab1", "https://tec.openplanner.team/stops/Boplsma4"], ["https://tec.openplanner.team/stops/N540apa", "https://tec.openplanner.team/stops/N540apb"], ["https://tec.openplanner.team/stops/H4av103a", "https://tec.openplanner.team/stops/H4wt160b"], ["https://tec.openplanner.team/stops/Llgbene1", "https://tec.openplanner.team/stops/Llgmean2"], ["https://tec.openplanner.team/stops/N313aca", "https://tec.openplanner.team/stops/N313adb"], ["https://tec.openplanner.team/stops/N552aca", "https://tec.openplanner.team/stops/N552acb"], ["https://tec.openplanner.team/stops/LTigera1", "https://tec.openplanner.team/stops/LTigera2"], ["https://tec.openplanner.team/stops/Lrecomp2", "https://tec.openplanner.team/stops/Lremonu1"], ["https://tec.openplanner.team/stops/Lgrclin3", "https://tec.openplanner.team/stops/Lvc4bra1"], ["https://tec.openplanner.team/stops/LVu03--2", "https://tec.openplanner.team/stops/LVukabi2"], ["https://tec.openplanner.team/stops/Bettgar1", "https://tec.openplanner.team/stops/Bixefra1"], ["https://tec.openplanner.team/stops/Bgrhcro1", "https://tec.openplanner.team/stops/Bgrhcro2"], ["https://tec.openplanner.team/stops/Bmlnsms2", "https://tec.openplanner.team/stops/Brxmcna1"], ["https://tec.openplanner.team/stops/H4gu106a", "https://tec.openplanner.team/stops/H4ta126b"], ["https://tec.openplanner.team/stops/Cmmecol2", "https://tec.openplanner.team/stops/Cmmpast2"], ["https://tec.openplanner.team/stops/Cfachap1", "https://tec.openplanner.team/stops/Cfanoci1"], ["https://tec.openplanner.team/stops/X823aaa", "https://tec.openplanner.team/stops/X824aka"], ["https://tec.openplanner.team/stops/N531alb", "https://tec.openplanner.team/stops/N531ama"], ["https://tec.openplanner.team/stops/X664afa", "https://tec.openplanner.team/stops/X664afb"], ["https://tec.openplanner.team/stops/Lccawir1", "https://tec.openplanner.team/stops/Lccawir4"], ["https://tec.openplanner.team/stops/X940aab", "https://tec.openplanner.team/stops/X948atb"], ["https://tec.openplanner.team/stops/Bfelcen2", "https://tec.openplanner.team/stops/Bfelpla2"], ["https://tec.openplanner.team/stops/N248acb", "https://tec.openplanner.team/stops/N248adb"], ["https://tec.openplanner.team/stops/Lghferr1", "https://tec.openplanner.team/stops/Lghvold2"], ["https://tec.openplanner.team/stops/LwTkabi3", "https://tec.openplanner.team/stops/LwTzent2"], ["https://tec.openplanner.team/stops/Lghmavi1", "https://tec.openplanner.team/stops/Lghsimo2"], ["https://tec.openplanner.team/stops/N557aca", "https://tec.openplanner.team/stops/N557ajb"], ["https://tec.openplanner.team/stops/LeUmeie1", "https://tec.openplanner.team/stops/LeUmeie2"], ["https://tec.openplanner.team/stops/Bdvmc031", "https://tec.openplanner.team/stops/Bgzdgpa1"], ["https://tec.openplanner.team/stops/LMechpl2", "https://tec.openplanner.team/stops/LMeperk2"], ["https://tec.openplanner.team/stops/Lbrchur1", "https://tec.openplanner.team/stops/Lbrlama1"], ["https://tec.openplanner.team/stops/X681aeb", "https://tec.openplanner.team/stops/X687aga"], ["https://tec.openplanner.team/stops/X897ada", "https://tec.openplanner.team/stops/X897aea"], ["https://tec.openplanner.team/stops/Btsllec2", "https://tec.openplanner.team/stops/Btsllfp2"], ["https://tec.openplanner.team/stops/Bnivphs2", "https://tec.openplanner.team/stops/Bnivrsh2"], ["https://tec.openplanner.team/stops/Lmochpl1", "https://tec.openplanner.team/stops/Lmogoff1"], ["https://tec.openplanner.team/stops/LLYcalv1", "https://tec.openplanner.team/stops/LTOeg--1"], ["https://tec.openplanner.team/stops/N254abb", "https://tec.openplanner.team/stops/N254ahb"], ["https://tec.openplanner.team/stops/X950adb", "https://tec.openplanner.team/stops/X955aba"], ["https://tec.openplanner.team/stops/Bbuzcom1", "https://tec.openplanner.team/stops/Bbuzcom2"], ["https://tec.openplanner.team/stops/Ccucorb2", "https://tec.openplanner.team/stops/Ccucorb3"], ["https://tec.openplanner.team/stops/N232aha", "https://tec.openplanner.team/stops/N261abb"], ["https://tec.openplanner.team/stops/Buccham2", "https://tec.openplanner.team/stops/Buccron2"], ["https://tec.openplanner.team/stops/N135akb", "https://tec.openplanner.team/stops/N135alb"], ["https://tec.openplanner.team/stops/Bspkkhe1", "https://tec.openplanner.team/stops/Bspkkhe2"], ["https://tec.openplanner.team/stops/X636bba", "https://tec.openplanner.team/stops/X636bbb"], ["https://tec.openplanner.team/stops/H4mo175a", "https://tec.openplanner.team/stops/H4mo181d"], ["https://tec.openplanner.team/stops/X790aaa", "https://tec.openplanner.team/stops/X790aja"], ["https://tec.openplanner.team/stops/H1ch143a", "https://tec.openplanner.team/stops/H4ld123a"], ["https://tec.openplanner.team/stops/Baegpon3", "https://tec.openplanner.team/stops/Bramgar1"], ["https://tec.openplanner.team/stops/Bgemrom3", "https://tec.openplanner.team/stops/Bgrmfon1"], ["https://tec.openplanner.team/stops/X804bta", "https://tec.openplanner.team/stops/X804cba"], ["https://tec.openplanner.team/stops/Bsoihci1", "https://tec.openplanner.team/stops/H3so170b"], ["https://tec.openplanner.team/stops/Ladjuif2", "https://tec.openplanner.team/stops/Ladlaur1"], ["https://tec.openplanner.team/stops/LBAfort2", "https://tec.openplanner.team/stops/Lchsa631"], ["https://tec.openplanner.team/stops/Bblmpro2", "https://tec.openplanner.team/stops/Bchamco1"], ["https://tec.openplanner.team/stops/LAChann2", "https://tec.openplanner.team/stops/NL74aea"], ["https://tec.openplanner.team/stops/N120anb", "https://tec.openplanner.team/stops/N248aab"], ["https://tec.openplanner.team/stops/LBajean1", "https://tec.openplanner.team/stops/LBapeup1"], ["https://tec.openplanner.team/stops/Lbeloui1", "https://tec.openplanner.team/stops/LMFmerl2"], ["https://tec.openplanner.team/stops/Lpeatel2", "https://tec.openplanner.team/stops/Lpesart2"], ["https://tec.openplanner.team/stops/X660aeb", "https://tec.openplanner.team/stops/X840aab"], ["https://tec.openplanner.team/stops/Bcercab2", "https://tec.openplanner.team/stops/Bcerpco2"], ["https://tec.openplanner.team/stops/Lvcbasi*", "https://tec.openplanner.team/stops/Lvchenn2"], ["https://tec.openplanner.team/stops/Brixbou1", "https://tec.openplanner.team/stops/Brixdec2"], ["https://tec.openplanner.team/stops/LAMfrai1", "https://tec.openplanner.team/stops/LAMhaut2"], ["https://tec.openplanner.team/stops/X768aba", "https://tec.openplanner.team/stops/X768aha"], ["https://tec.openplanner.team/stops/H1bs110c", "https://tec.openplanner.team/stops/H1ge116b"], ["https://tec.openplanner.team/stops/N204aeb", "https://tec.openplanner.team/stops/N559acb"], ["https://tec.openplanner.team/stops/H4ln155a", "https://tec.openplanner.team/stops/H4wa153b"], ["https://tec.openplanner.team/stops/LPohoeg2", "https://tec.openplanner.team/stops/LPoxhav1"], ["https://tec.openplanner.team/stops/LAufech1", "https://tec.openplanner.team/stops/LAumari1"], ["https://tec.openplanner.team/stops/NL77acb", "https://tec.openplanner.team/stops/NL77ada"], ["https://tec.openplanner.team/stops/Blasbti1", "https://tec.openplanner.team/stops/Blasbti2"], ["https://tec.openplanner.team/stops/LTyhapp2", "https://tec.openplanner.team/stops/LTyhapp3"], ["https://tec.openplanner.team/stops/N501lfb", "https://tec.openplanner.team/stops/N501lja"], ["https://tec.openplanner.team/stops/H2ca104a", "https://tec.openplanner.team/stops/H2ca104b"], ["https://tec.openplanner.team/stops/H2fa107a", "https://tec.openplanner.team/stops/H2fa109a"], ["https://tec.openplanner.team/stops/N514amb", "https://tec.openplanner.team/stops/N514aob"], ["https://tec.openplanner.team/stops/LESamos2", "https://tec.openplanner.team/stops/LESfoot2"], ["https://tec.openplanner.team/stops/LAWcite2", "https://tec.openplanner.team/stops/LAWjaur1"], ["https://tec.openplanner.team/stops/Bblaccm1", "https://tec.openplanner.team/stops/Bblamsj2"], ["https://tec.openplanner.team/stops/H4lz127b", "https://tec.openplanner.team/stops/H4tp146b"], ["https://tec.openplanner.team/stops/N118aea", "https://tec.openplanner.team/stops/N118afa"], ["https://tec.openplanner.team/stops/Bbounci1", "https://tec.openplanner.team/stops/Bbounci2"], ["https://tec.openplanner.team/stops/Cjochap2", "https://tec.openplanner.team/stops/NC24aib"], ["https://tec.openplanner.team/stops/LHMec--2", "https://tec.openplanner.team/stops/LRmmabr2"], ["https://tec.openplanner.team/stops/X721aaa", "https://tec.openplanner.team/stops/X721aab"], ["https://tec.openplanner.team/stops/H2hp262a", "https://tec.openplanner.team/stops/H2hp262b"], ["https://tec.openplanner.team/stops/X942abb", "https://tec.openplanner.team/stops/X942aea"], ["https://tec.openplanner.team/stops/X880afa", "https://tec.openplanner.team/stops/X880aga"], ["https://tec.openplanner.team/stops/H1ma234a", "https://tec.openplanner.team/stops/H1ma234b"], ["https://tec.openplanner.team/stops/X999apb", "https://tec.openplanner.team/stops/X999asb"], ["https://tec.openplanner.team/stops/X904aca", "https://tec.openplanner.team/stops/X904adb"], ["https://tec.openplanner.team/stops/Lreclou2", "https://tec.openplanner.team/stops/Lrecroi1"], ["https://tec.openplanner.team/stops/Ljemake1", "https://tec.openplanner.team/stops/Ljemake2"], ["https://tec.openplanner.team/stops/LiVdorf1", "https://tec.openplanner.team/stops/LmOkape1"], ["https://tec.openplanner.team/stops/Bbeagae2", "https://tec.openplanner.team/stops/Bmlngvi2"], ["https://tec.openplanner.team/stops/N236afa", "https://tec.openplanner.team/stops/N254adb"], ["https://tec.openplanner.team/stops/Lbosart1", "https://tec.openplanner.team/stops/Lbosart2"], ["https://tec.openplanner.team/stops/X769abb", "https://tec.openplanner.team/stops/X769aca"], ["https://tec.openplanner.team/stops/Bblager1", "https://tec.openplanner.team/stops/Bblapet1"], ["https://tec.openplanner.team/stops/N117aub", "https://tec.openplanner.team/stops/N117ayb"], ["https://tec.openplanner.team/stops/Bcbqa362", "https://tec.openplanner.team/stops/Bcbqcoi1"], ["https://tec.openplanner.team/stops/LOmrela2", "https://tec.openplanner.team/stops/LRuegli2"], ["https://tec.openplanner.team/stops/X994aib", "https://tec.openplanner.team/stops/X994ala"], ["https://tec.openplanner.team/stops/LVApark2", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://tec.openplanner.team/stops/N501hjd", "https://tec.openplanner.team/stops/N501hlw"], ["https://tec.openplanner.team/stops/N501bta", "https://tec.openplanner.team/stops/N501bwa"], ["https://tec.openplanner.team/stops/Bbosdra2", "https://tec.openplanner.team/stops/Bhoealt2"], ["https://tec.openplanner.team/stops/LVMcent2", "https://tec.openplanner.team/stops/LVMrout2"], ["https://tec.openplanner.team/stops/N347aca", "https://tec.openplanner.team/stops/X346aka"], ["https://tec.openplanner.team/stops/Borbtre2", "https://tec.openplanner.team/stops/Btslpic6"], ["https://tec.openplanner.team/stops/LHNgare2", "https://tec.openplanner.team/stops/LHNtill1"], ["https://tec.openplanner.team/stops/LLecarr3", "https://tec.openplanner.team/stops/X547aja"], ["https://tec.openplanner.team/stops/N232baa", "https://tec.openplanner.team/stops/N232bka"], ["https://tec.openplanner.team/stops/LSZarze3", "https://tec.openplanner.team/stops/LSZprie1"], ["https://tec.openplanner.team/stops/X314aab", "https://tec.openplanner.team/stops/X812acb"], ["https://tec.openplanner.team/stops/LHUpost1", "https://tec.openplanner.team/stops/LHUpost3"], ["https://tec.openplanner.team/stops/X721agb", "https://tec.openplanner.team/stops/X721agc"], ["https://tec.openplanner.team/stops/Cgycime2", "https://tec.openplanner.team/stops/Cgycime3"], ["https://tec.openplanner.team/stops/X780aab", "https://tec.openplanner.team/stops/X790abb"], ["https://tec.openplanner.team/stops/N561aea", "https://tec.openplanner.team/stops/N584aha"], ["https://tec.openplanner.team/stops/Barqbco2", "https://tec.openplanner.team/stops/Bmoncab2"], ["https://tec.openplanner.team/stops/Lbrfoid1", "https://tec.openplanner.team/stops/Lbrfoid3"], ["https://tec.openplanner.team/stops/Bsompri2", "https://tec.openplanner.team/stops/Bsomwav2"], ["https://tec.openplanner.team/stops/H4ty301c", "https://tec.openplanner.team/stops/H4ty301d"], ["https://tec.openplanner.team/stops/Lvcpost1", "https://tec.openplanner.team/stops/Lvcpost2"], ["https://tec.openplanner.team/stops/Cpcha431", "https://tec.openplanner.team/stops/Cpcplac3"], ["https://tec.openplanner.team/stops/Blemwro1", "https://tec.openplanner.team/stops/Btubcal1"], ["https://tec.openplanner.team/stops/Bmlnegl2", "https://tec.openplanner.team/stops/Bmlnegl4"], ["https://tec.openplanner.team/stops/Boppegl2", "https://tec.openplanner.team/stops/Bopplon2"], ["https://tec.openplanner.team/stops/Lhrlalo1", "https://tec.openplanner.team/stops/Lhrlalo3"], ["https://tec.openplanner.team/stops/N564adb", "https://tec.openplanner.team/stops/N585aia"], ["https://tec.openplanner.team/stops/X601aya", "https://tec.openplanner.team/stops/X601aza"], ["https://tec.openplanner.team/stops/LAvambr1", "https://tec.openplanner.team/stops/LAvambr2"], ["https://tec.openplanner.team/stops/N558aea", "https://tec.openplanner.team/stops/N558agb"], ["https://tec.openplanner.team/stops/LHmcarr2", "https://tec.openplanner.team/stops/LHmferm2"], ["https://tec.openplanner.team/stops/LmDbw--*", "https://tec.openplanner.team/stops/LmDelek1"], ["https://tec.openplanner.team/stops/N229anb", "https://tec.openplanner.team/stops/N229aqb"], ["https://tec.openplanner.team/stops/Bllngar5", "https://tec.openplanner.team/stops/Bllngar9"], ["https://tec.openplanner.team/stops/X769aqa", "https://tec.openplanner.team/stops/X769atb"], ["https://tec.openplanner.team/stops/Btlbmel2", "https://tec.openplanner.team/stops/Btlbtbe4"], ["https://tec.openplanner.team/stops/Cnaplha4", "https://tec.openplanner.team/stops/Cnarmon1"], ["https://tec.openplanner.team/stops/Bsences2", "https://tec.openplanner.team/stops/Bsenpeu1"], ["https://tec.openplanner.team/stops/X989aca", "https://tec.openplanner.team/stops/X994ada"], ["https://tec.openplanner.team/stops/H4mv187b", "https://tec.openplanner.team/stops/H4mv190b"], ["https://tec.openplanner.team/stops/LLSba4-1", "https://tec.openplanner.team/stops/LLStour1"], ["https://tec.openplanner.team/stops/LMgberw1", "https://tec.openplanner.team/stops/LMgwith1"], ["https://tec.openplanner.team/stops/X610aea", "https://tec.openplanner.team/stops/X611aba"], ["https://tec.openplanner.team/stops/Bchgvil2", "https://tec.openplanner.team/stops/Bgisber2"], ["https://tec.openplanner.team/stops/Bbstcha2", "https://tec.openplanner.team/stops/Bbstpan2"], ["https://tec.openplanner.team/stops/H1ev113a", "https://tec.openplanner.team/stops/H1ev149a"], ["https://tec.openplanner.team/stops/Bdlvpco1", "https://tec.openplanner.team/stops/Bdvmc032"], ["https://tec.openplanner.team/stops/Bsompri2", "https://tec.openplanner.team/stops/N584awb"], ["https://tec.openplanner.team/stops/Bvxgpro1", "https://tec.openplanner.team/stops/Bvxgpro2"], ["https://tec.openplanner.team/stops/LFdbagu2", "https://tec.openplanner.team/stops/LFdbruy2"], ["https://tec.openplanner.team/stops/LhSschn1", "https://tec.openplanner.team/stops/LhSschn2"], ["https://tec.openplanner.team/stops/X801boa", "https://tec.openplanner.team/stops/X801clb"], ["https://tec.openplanner.team/stops/Lbhfaye1", "https://tec.openplanner.team/stops/Lgrclin4"], ["https://tec.openplanner.team/stops/N507aib", "https://tec.openplanner.team/stops/N507ajb"], ["https://tec.openplanner.team/stops/H4ty295b", "https://tec.openplanner.team/stops/H4ty298a"], ["https://tec.openplanner.team/stops/N308aob", "https://tec.openplanner.team/stops/N312abb"], ["https://tec.openplanner.team/stops/NL68aca", "https://tec.openplanner.team/stops/NL68agb"], ["https://tec.openplanner.team/stops/H4lp124b", "https://tec.openplanner.team/stops/H4pe125a"], ["https://tec.openplanner.team/stops/H1bb120b", "https://tec.openplanner.team/stops/H1do130b"], ["https://tec.openplanner.team/stops/X904ala", "https://tec.openplanner.team/stops/X939acb"], ["https://tec.openplanner.team/stops/N501btb", "https://tec.openplanner.team/stops/N501bva"], ["https://tec.openplanner.team/stops/LNEbois1", "https://tec.openplanner.team/stops/LOLcroi1"], ["https://tec.openplanner.team/stops/H2pr118a", "https://tec.openplanner.team/stops/H3so171a"], ["https://tec.openplanner.team/stops/H2bh108a", "https://tec.openplanner.team/stops/H2bh121a"], ["https://tec.openplanner.team/stops/H3so156b", "https://tec.openplanner.team/stops/H3so178a"], ["https://tec.openplanner.team/stops/H4lg100a", "https://tec.openplanner.team/stops/H4lg105a"], ["https://tec.openplanner.team/stops/X601cpa", "https://tec.openplanner.team/stops/X601cxa"], ["https://tec.openplanner.team/stops/H4av106b", "https://tec.openplanner.team/stops/H4av106c"], ["https://tec.openplanner.team/stops/LBIaepo4", "https://tec.openplanner.team/stops/LBIairp2"], ["https://tec.openplanner.team/stops/NL37abb", "https://tec.openplanner.team/stops/NL37aoa"], ["https://tec.openplanner.team/stops/H2ll191b", "https://tec.openplanner.team/stops/H2ll192b"], ["https://tec.openplanner.team/stops/H4vz368b", "https://tec.openplanner.team/stops/H4vz371b"], ["https://tec.openplanner.team/stops/X721afa", "https://tec.openplanner.team/stops/X721ala"], ["https://tec.openplanner.team/stops/X750aha", "https://tec.openplanner.team/stops/X750aia"], ["https://tec.openplanner.team/stops/LMamuse4", "https://tec.openplanner.team/stops/LMapark3"], ["https://tec.openplanner.team/stops/Bwatcoc1", "https://tec.openplanner.team/stops/Bwatpai1"], ["https://tec.openplanner.team/stops/NL73aca", "https://tec.openplanner.team/stops/NL73acb"], ["https://tec.openplanner.team/stops/N101aaa", "https://tec.openplanner.team/stops/N118aoa"], ["https://tec.openplanner.team/stops/H2ha133a", "https://tec.openplanner.team/stops/H2hg150a"], ["https://tec.openplanner.team/stops/Lemdieu1", "https://tec.openplanner.team/stops/Lempass2"], ["https://tec.openplanner.team/stops/Lhrdeme3", "https://tec.openplanner.team/stops/Lhrdeme4"], ["https://tec.openplanner.team/stops/Btubnco1", "https://tec.openplanner.team/stops/Btubnco2"], ["https://tec.openplanner.team/stops/X361aaa", "https://tec.openplanner.team/stops/X361aba"], ["https://tec.openplanner.team/stops/LBY4che2", "https://tec.openplanner.team/stops/Lgdec--1"], ["https://tec.openplanner.team/stops/Bixlaca1", "https://tec.openplanner.team/stops/Buccgob2"], ["https://tec.openplanner.team/stops/N229ajb", "https://tec.openplanner.team/stops/N229alb"], ["https://tec.openplanner.team/stops/Blinbru2", "https://tec.openplanner.team/stops/Blingar1"], ["https://tec.openplanner.team/stops/Llgrain2", "https://tec.openplanner.team/stops/Llgrosa2"], ["https://tec.openplanner.team/stops/X993aba", "https://tec.openplanner.team/stops/X993acb"], ["https://tec.openplanner.team/stops/Ladboti1", "https://tec.openplanner.team/stops/Ladchat2"], ["https://tec.openplanner.team/stops/LLrgara2", "https://tec.openplanner.team/stops/LSPecho2"], ["https://tec.openplanner.team/stops/NR21abc", "https://tec.openplanner.team/stops/NR21acb"], ["https://tec.openplanner.team/stops/X775akb", "https://tec.openplanner.team/stops/X775ala"], ["https://tec.openplanner.team/stops/Bgnpgen1", "https://tec.openplanner.team/stops/Bgnppra1"], ["https://tec.openplanner.team/stops/Cmgpthi1", "https://tec.openplanner.team/stops/Cmgpthi2"], ["https://tec.openplanner.team/stops/H4ty330b", "https://tec.openplanner.team/stops/H4ty330c"], ["https://tec.openplanner.team/stops/N135aaa", "https://tec.openplanner.team/stops/N135aed"], ["https://tec.openplanner.team/stops/N541adb", "https://tec.openplanner.team/stops/N541aeb"], ["https://tec.openplanner.team/stops/N312aab", "https://tec.openplanner.team/stops/N312aba"], ["https://tec.openplanner.team/stops/LHDpota1", "https://tec.openplanner.team/stops/LHDpota2"], ["https://tec.openplanner.team/stops/X925aib", "https://tec.openplanner.team/stops/X925apa"], ["https://tec.openplanner.team/stops/LOVeg--1", "https://tec.openplanner.team/stops/LOVeg--2"], ["https://tec.openplanner.team/stops/Lchec--2", "https://tec.openplanner.team/stops/Lcheg--2"], ["https://tec.openplanner.team/stops/H1qu100b", "https://tec.openplanner.team/stops/H1qu129a"], ["https://tec.openplanner.team/stops/LCUmars2", "https://tec.openplanner.team/stops/NL57ama"], ["https://tec.openplanner.team/stops/Cctpass2", "https://tec.openplanner.team/stops/Cctsncb2"], ["https://tec.openplanner.team/stops/Blhulil2", "https://tec.openplanner.team/stops/Blhuone1"], ["https://tec.openplanner.team/stops/N534bga", "https://tec.openplanner.team/stops/N561ada"], ["https://tec.openplanner.team/stops/N106anb", "https://tec.openplanner.team/stops/N106ara"], ["https://tec.openplanner.team/stops/LRfbeau1", "https://tec.openplanner.team/stops/LRffroi2"], ["https://tec.openplanner.team/stops/LVBrmon1", "https://tec.openplanner.team/stops/LVBvill1"], ["https://tec.openplanner.team/stops/X775aaa", "https://tec.openplanner.team/stops/X775abb"], ["https://tec.openplanner.team/stops/LVAbloe1", "https://tec.openplanner.team/stops/LVAflat1"], ["https://tec.openplanner.team/stops/Clvchen2", "https://tec.openplanner.team/stops/NC02ava"], ["https://tec.openplanner.team/stops/Cfaauln1", "https://tec.openplanner.team/stops/Cfawain4"], ["https://tec.openplanner.team/stops/Cgocolo1", "https://tec.openplanner.team/stops/Cgolimi2"], ["https://tec.openplanner.team/stops/X802aya", "https://tec.openplanner.team/stops/X802ayb"], ["https://tec.openplanner.team/stops/Cgdberl2", "https://tec.openplanner.team/stops/Cgdcent2"], ["https://tec.openplanner.team/stops/Lhrmemo1", "https://tec.openplanner.team/stops/Lvtlimi1"], ["https://tec.openplanner.team/stops/N511aja", "https://tec.openplanner.team/stops/N511alc"], ["https://tec.openplanner.team/stops/H4mo157a", "https://tec.openplanner.team/stops/H4mo166a"], ["https://tec.openplanner.team/stops/Cchccom1", "https://tec.openplanner.team/stops/Cchvil22"], ["https://tec.openplanner.team/stops/H4mo140b", "https://tec.openplanner.team/stops/H4mo185a"], ["https://tec.openplanner.team/stops/LELhard2", "https://tec.openplanner.team/stops/LHCprog2"], ["https://tec.openplanner.team/stops/N104aka", "https://tec.openplanner.team/stops/N106ajb"], ["https://tec.openplanner.team/stops/X891aab", "https://tec.openplanner.team/stops/X891acb"], ["https://tec.openplanner.team/stops/X992aka", "https://tec.openplanner.team/stops/X992akb"], ["https://tec.openplanner.team/stops/LSoprom1", "https://tec.openplanner.team/stops/LSoprom2"], ["https://tec.openplanner.team/stops/Bchgpap1", "https://tec.openplanner.team/stops/Bchgrco2"], ["https://tec.openplanner.team/stops/H1ms282a", "https://tec.openplanner.team/stops/H1ms302b"], ["https://tec.openplanner.team/stops/LVNleco1", "https://tec.openplanner.team/stops/LVNleco2"], ["https://tec.openplanner.team/stops/N501dta", "https://tec.openplanner.team/stops/N501dtc"], ["https://tec.openplanner.team/stops/X911aja", "https://tec.openplanner.team/stops/X911akb"], ["https://tec.openplanner.team/stops/LBSchpl2", "https://tec.openplanner.team/stops/LTolijn*"], ["https://tec.openplanner.team/stops/LOUvign1", "https://tec.openplanner.team/stops/Lviweri2"], ["https://tec.openplanner.team/stops/X870ahb", "https://tec.openplanner.team/stops/X882aga"], ["https://tec.openplanner.team/stops/N501dob", "https://tec.openplanner.team/stops/N501eha"], ["https://tec.openplanner.team/stops/X664apa", "https://tec.openplanner.team/stops/X664aqb"], ["https://tec.openplanner.team/stops/N145aea", "https://tec.openplanner.team/stops/N145aed"], ["https://tec.openplanner.team/stops/LmUzent1", "https://tec.openplanner.team/stops/LmUzent2"], ["https://tec.openplanner.team/stops/Lbrptbr2", "https://tec.openplanner.team/stops/Lbrptbr5"], ["https://tec.openplanner.team/stops/Brixape1", "https://tec.openplanner.team/stops/Brixcab1"], ["https://tec.openplanner.team/stops/Btlgast1", "https://tec.openplanner.team/stops/Btlgreg2"], ["https://tec.openplanner.team/stops/H1so131b", "https://tec.openplanner.team/stops/H1so142d"], ["https://tec.openplanner.team/stops/LHUsauv2", "https://tec.openplanner.team/stops/LHUsauv3"], ["https://tec.openplanner.team/stops/LAvrout2", "https://tec.openplanner.team/stops/LLtrout1"], ["https://tec.openplanner.team/stops/Llgavoc2", "https://tec.openplanner.team/stops/Llgnico7"], ["https://tec.openplanner.team/stops/Lsehya-1", "https://tec.openplanner.team/stops/Lsemara2"], ["https://tec.openplanner.team/stops/Cclbarb1", "https://tec.openplanner.team/stops/Cstgare1"], ["https://tec.openplanner.team/stops/H2ha127a", "https://tec.openplanner.team/stops/H2sb233c"], ["https://tec.openplanner.team/stops/Bwategb1", "https://tec.openplanner.team/stops/Bwatran2"], ["https://tec.openplanner.team/stops/H4ar107a", "https://tec.openplanner.team/stops/H4pl136a"], ["https://tec.openplanner.team/stops/Bronrch1", "https://tec.openplanner.team/stops/Bvirflu1"], ["https://tec.openplanner.team/stops/Cgpmoul2", "https://tec.openplanner.team/stops/Cpcha432"], ["https://tec.openplanner.team/stops/Bbst4br4", "https://tec.openplanner.team/stops/Cbtbras1"], ["https://tec.openplanner.team/stops/X396aba", "https://tec.openplanner.team/stops/X396abb"], ["https://tec.openplanner.team/stops/H4oq224a", "https://tec.openplanner.team/stops/H4ty300b"], ["https://tec.openplanner.team/stops/H4hg154a", "https://tec.openplanner.team/stops/H4hg155b"], ["https://tec.openplanner.team/stops/Bwatgla1", "https://tec.openplanner.team/stops/Bwatrte2"], ["https://tec.openplanner.team/stops/LHSheur1", "https://tec.openplanner.team/stops/LHStrez2"], ["https://tec.openplanner.team/stops/N501dhb", "https://tec.openplanner.team/stops/N501dib"], ["https://tec.openplanner.team/stops/H1hq126a", "https://tec.openplanner.team/stops/H1ol140b"], ["https://tec.openplanner.team/stops/N501gca", "https://tec.openplanner.team/stops/N501gcb"], ["https://tec.openplanner.team/stops/Bwavbar2", "https://tec.openplanner.team/stops/Bwavcin1"], ["https://tec.openplanner.team/stops/LNIbas-1", "https://tec.openplanner.team/stops/LSPmalc1"], ["https://tec.openplanner.team/stops/H4bl104b", "https://tec.openplanner.team/stops/H4bl105a"], ["https://tec.openplanner.team/stops/Bchgrco1", "https://tec.openplanner.team/stops/Bchgrco2"], ["https://tec.openplanner.team/stops/X922aaa", "https://tec.openplanner.team/stops/X922aba"], ["https://tec.openplanner.team/stops/H4ty278a", "https://tec.openplanner.team/stops/H4ty299a"], ["https://tec.openplanner.team/stops/Lrcarse2", "https://tec.openplanner.team/stops/Lrclohe1"], ["https://tec.openplanner.team/stops/LRAgrot1", "https://tec.openplanner.team/stops/LRAgrot2"], ["https://tec.openplanner.team/stops/X641aoa", "https://tec.openplanner.team/stops/X641apc"], ["https://tec.openplanner.team/stops/N110aaa", "https://tec.openplanner.team/stops/N114aab"], ["https://tec.openplanner.team/stops/LlOdrei1", "https://tec.openplanner.team/stops/LlOkreu2"], ["https://tec.openplanner.team/stops/X888afa", "https://tec.openplanner.team/stops/X897afa"], ["https://tec.openplanner.team/stops/H1gr111a", "https://tec.openplanner.team/stops/H1gr111b"], ["https://tec.openplanner.team/stops/Cvtndam2", "https://tec.openplanner.team/stops/Cvtvois2"], ["https://tec.openplanner.team/stops/LLrdrev2", "https://tec.openplanner.team/stops/LLrmeno2"], ["https://tec.openplanner.team/stops/X902aeb", "https://tec.openplanner.team/stops/X902aoa"], ["https://tec.openplanner.team/stops/Bwatric1", "https://tec.openplanner.team/stops/Bwatvco1"], ["https://tec.openplanner.team/stops/X808afa", "https://tec.openplanner.team/stops/X808agb"], ["https://tec.openplanner.team/stops/Bbcodam3", "https://tec.openplanner.team/stops/Bbcoroy1"], ["https://tec.openplanner.team/stops/N538asc", "https://tec.openplanner.team/stops/N538ata"], ["https://tec.openplanner.team/stops/Bbaucba2", "https://tec.openplanner.team/stops/Bbauegl1"], ["https://tec.openplanner.team/stops/Cgxptt1", "https://tec.openplanner.team/stops/Cgxptt2"], ["https://tec.openplanner.team/stops/Bengvma1", "https://tec.openplanner.team/stops/H1en106a"], ["https://tec.openplanner.team/stops/H1fl133e", "https://tec.openplanner.team/stops/H1fl141a"], ["https://tec.openplanner.team/stops/LSLstra2", "https://tec.openplanner.team/stops/LSLvaux2"], ["https://tec.openplanner.team/stops/N551ahb", "https://tec.openplanner.team/stops/N551anb"], ["https://tec.openplanner.team/stops/H1ne142b", "https://tec.openplanner.team/stops/H1ne144a"], ["https://tec.openplanner.team/stops/Lbrlama2", "https://tec.openplanner.team/stops/Lgrmagd1"], ["https://tec.openplanner.team/stops/X687aka", "https://tec.openplanner.team/stops/X687akb"], ["https://tec.openplanner.team/stops/X882ada", "https://tec.openplanner.team/stops/X882adb"], ["https://tec.openplanner.team/stops/LSeaque1", "https://tec.openplanner.team/stops/LSeaque2"], ["https://tec.openplanner.team/stops/LmLbeil1", "https://tec.openplanner.team/stops/LmLbeil2"], ["https://tec.openplanner.team/stops/LJAroue1", "https://tec.openplanner.team/stops/LJAroue2"], ["https://tec.openplanner.team/stops/LMubras1", "https://tec.openplanner.team/stops/LSDheus1"], ["https://tec.openplanner.team/stops/LRChote1", "https://tec.openplanner.team/stops/LRCviad2"], ["https://tec.openplanner.team/stops/LPT97--1", "https://tec.openplanner.team/stops/LPutins1"], ["https://tec.openplanner.team/stops/N161aaa", "https://tec.openplanner.team/stops/N162afa"], ["https://tec.openplanner.team/stops/LwLfuss2", "https://tec.openplanner.team/stops/LwLkirc2"], ["https://tec.openplanner.team/stops/H4oq223b", "https://tec.openplanner.team/stops/H4ty327a"], ["https://tec.openplanner.team/stops/Bsoigar1", "https://tec.openplanner.team/stops/H3so155a"], ["https://tec.openplanner.team/stops/N302aba", "https://tec.openplanner.team/stops/N302ada"], ["https://tec.openplanner.team/stops/Lveinva2", "https://tec.openplanner.team/stops/Lveptre2"], ["https://tec.openplanner.team/stops/H4bx167a", "https://tec.openplanner.team/stops/H4bx167b"], ["https://tec.openplanner.team/stops/N513avb", "https://tec.openplanner.team/stops/N514aja"], ["https://tec.openplanner.team/stops/Cmoruau1", "https://tec.openplanner.team/stops/Cmovies1"], ["https://tec.openplanner.team/stops/N501apb", "https://tec.openplanner.team/stops/N528aha"], ["https://tec.openplanner.team/stops/N534avb", "https://tec.openplanner.team/stops/N543coa"], ["https://tec.openplanner.team/stops/X741aic", "https://tec.openplanner.team/stops/X741aid"], ["https://tec.openplanner.team/stops/Cdasama1", "https://tec.openplanner.team/stops/Cdasama2"], ["https://tec.openplanner.team/stops/N203aca", "https://tec.openplanner.team/stops/N203acb"], ["https://tec.openplanner.team/stops/H4mn100a", "https://tec.openplanner.team/stops/H4tg170a"], ["https://tec.openplanner.team/stops/H1og136a", "https://tec.openplanner.team/stops/H1og136b"], ["https://tec.openplanner.team/stops/X664aab", "https://tec.openplanner.team/stops/X664agb"], ["https://tec.openplanner.team/stops/H1ne140b", "https://tec.openplanner.team/stops/H1ne142b"], ["https://tec.openplanner.team/stops/Cchwarm2", "https://tec.openplanner.team/stops/CMsama1"], ["https://tec.openplanner.team/stops/X910aja", "https://tec.openplanner.team/stops/X910ajb"], ["https://tec.openplanner.team/stops/X779afa", "https://tec.openplanner.team/stops/X779aga"], ["https://tec.openplanner.team/stops/Ldihvce2", "https://tec.openplanner.team/stops/Ldiinte1"], ["https://tec.openplanner.team/stops/LMisour1", "https://tec.openplanner.team/stops/LMisour2"], ["https://tec.openplanner.team/stops/X790ama", "https://tec.openplanner.team/stops/X790amb"], ["https://tec.openplanner.team/stops/Bixefra1", "https://tec.openplanner.team/stops/Bixepla2"], ["https://tec.openplanner.team/stops/Ctmwaut1", "https://tec.openplanner.team/stops/Cvvmonu2"], ["https://tec.openplanner.team/stops/H4we135b", "https://tec.openplanner.team/stops/H4we138b"], ["https://tec.openplanner.team/stops/X919aea", "https://tec.openplanner.team/stops/X919afa"], ["https://tec.openplanner.team/stops/Bclgavi1", "https://tec.openplanner.team/stops/Bclgvmo1"], ["https://tec.openplanner.team/stops/X769anb", "https://tec.openplanner.team/stops/X769apa"], ["https://tec.openplanner.team/stops/X939aha", "https://tec.openplanner.team/stops/X940aha"], ["https://tec.openplanner.team/stops/LBlhaut2", "https://tec.openplanner.team/stops/LLUg82-2"], ["https://tec.openplanner.team/stops/N242aeb", "https://tec.openplanner.team/stops/N251abb"], ["https://tec.openplanner.team/stops/X576afa", "https://tec.openplanner.team/stops/X576afb"], ["https://tec.openplanner.team/stops/Lgrdefr1", "https://tec.openplanner.team/stops/Lgrdefr2"], ["https://tec.openplanner.team/stops/Lheelva1", "https://tec.openplanner.team/stops/LHemoul1"], ["https://tec.openplanner.team/stops/X817acb", "https://tec.openplanner.team/stops/X817adb"], ["https://tec.openplanner.team/stops/Bgnpegl4", "https://tec.openplanner.team/stops/Bgnpjbe1"], ["https://tec.openplanner.team/stops/Lscgare1", "https://tec.openplanner.team/stops/Lscgare2"], ["https://tec.openplanner.team/stops/Bllncom1", "https://tec.openplanner.team/stops/Bllncom2"], ["https://tec.openplanner.team/stops/LENsent1", "https://tec.openplanner.team/stops/LENsent2"], ["https://tec.openplanner.team/stops/N525aba", "https://tec.openplanner.team/stops/N525bab"], ["https://tec.openplanner.team/stops/N501dwb", "https://tec.openplanner.team/stops/N501kma"], ["https://tec.openplanner.team/stops/Cli4bra2", "https://tec.openplanner.team/stops/Creha762"], ["https://tec.openplanner.team/stops/Bwaakap1", "https://tec.openplanner.team/stops/LWSstat1"], ["https://tec.openplanner.team/stops/LMObut-1", "https://tec.openplanner.team/stops/LMOchen1"], ["https://tec.openplanner.team/stops/X733afa", "https://tec.openplanner.team/stops/X733aga"], ["https://tec.openplanner.team/stops/Cgocnor2", "https://tec.openplanner.team/stops/Cgocrus2"], ["https://tec.openplanner.team/stops/H2ch105b", "https://tec.openplanner.team/stops/H2ch105d"], ["https://tec.openplanner.team/stops/Cdaptca2", "https://tec.openplanner.team/stops/Cmlfstt1"], ["https://tec.openplanner.team/stops/H1as103b", "https://tec.openplanner.team/stops/H1as103c"], ["https://tec.openplanner.team/stops/X615aya", "https://tec.openplanner.team/stops/X615ayb"], ["https://tec.openplanner.team/stops/N535aoa", "https://tec.openplanner.team/stops/N580aca"], ["https://tec.openplanner.team/stops/Bbsgfva2", "https://tec.openplanner.team/stops/Bbsgrve2"], ["https://tec.openplanner.team/stops/X609alb", "https://tec.openplanner.team/stops/X609ana"], ["https://tec.openplanner.team/stops/X782aob", "https://tec.openplanner.team/stops/X783aca"], ["https://tec.openplanner.team/stops/N568aba", "https://tec.openplanner.team/stops/N568abb"], ["https://tec.openplanner.team/stops/Bolpmre2", "https://tec.openplanner.team/stops/Bolppla4"], ["https://tec.openplanner.team/stops/LEHhaut2", "https://tec.openplanner.team/stops/LNCvann1"], ["https://tec.openplanner.team/stops/Bpergar2", "https://tec.openplanner.team/stops/Bperpla2"], ["https://tec.openplanner.team/stops/Broncli1", "https://tec.openplanner.team/stops/Bvirmbr1"], ["https://tec.openplanner.team/stops/N501bja", "https://tec.openplanner.team/stops/N501jbb"], ["https://tec.openplanner.team/stops/N122afb", "https://tec.openplanner.team/stops/N122ahb"], ["https://tec.openplanner.team/stops/X664amc", "https://tec.openplanner.team/stops/X664ata"], ["https://tec.openplanner.team/stops/Cmohotv3", "https://tec.openplanner.team/stops/Cmohotv4"], ["https://tec.openplanner.team/stops/X836abb", "https://tec.openplanner.team/stops/X839aca"], ["https://tec.openplanner.team/stops/LAWhein4", "https://tec.openplanner.team/stops/LAWkone1"], ["https://tec.openplanner.team/stops/LbUbutg1", "https://tec.openplanner.team/stops/LbUbutg2"], ["https://tec.openplanner.team/stops/LCLgend1", "https://tec.openplanner.team/stops/LRteg--*"], ["https://tec.openplanner.team/stops/H1sb146a", "https://tec.openplanner.team/stops/H1sb147b"], ["https://tec.openplanner.team/stops/H1hy127b", "https://tec.openplanner.team/stops/H1hy129a"], ["https://tec.openplanner.team/stops/H1ho142a", "https://tec.openplanner.team/stops/H1ho142b"], ["https://tec.openplanner.team/stops/LOuhalb1", "https://tec.openplanner.team/stops/LTaabba1"], ["https://tec.openplanner.team/stops/LBWviad2", "https://tec.openplanner.team/stops/LVImons1"], ["https://tec.openplanner.team/stops/Cjxegli1", "https://tec.openplanner.team/stops/Cjxplac2"], ["https://tec.openplanner.team/stops/N521ajb", "https://tec.openplanner.team/stops/N525ala"], ["https://tec.openplanner.team/stops/NR21aba", "https://tec.openplanner.team/stops/NR21acb"], ["https://tec.openplanner.team/stops/Cfamonu2", "https://tec.openplanner.team/stops/Cpl4bra3"], ["https://tec.openplanner.team/stops/X624aeb", "https://tec.openplanner.team/stops/X625agb"], ["https://tec.openplanner.team/stops/H2se105a", "https://tec.openplanner.team/stops/H2se106a"], ["https://tec.openplanner.team/stops/LVSslin2", "https://tec.openplanner.team/stops/LVSslin3"], ["https://tec.openplanner.team/stops/LLbquar1", "https://tec.openplanner.team/stops/LLbrecu2"], ["https://tec.openplanner.team/stops/X806ada", "https://tec.openplanner.team/stops/X806aea"], ["https://tec.openplanner.team/stops/H1wa132b", "https://tec.openplanner.team/stops/H1wa155d"], ["https://tec.openplanner.team/stops/Crasabl1", "https://tec.openplanner.team/stops/Crasabl2"], ["https://tec.openplanner.team/stops/Brsgece1", "https://tec.openplanner.team/stops/Brsgfso2"], ["https://tec.openplanner.team/stops/Bcsebde2", "https://tec.openplanner.team/stops/Bcsegar2"], ["https://tec.openplanner.team/stops/N201aaa", "https://tec.openplanner.team/stops/N201ada"], ["https://tec.openplanner.team/stops/N515afa", "https://tec.openplanner.team/stops/N516aja"], ["https://tec.openplanner.team/stops/H1ms280a", "https://tec.openplanner.team/stops/H1ms400d"], ["https://tec.openplanner.team/stops/X744ada", "https://tec.openplanner.team/stops/X744afa"], ["https://tec.openplanner.team/stops/X640acb", "https://tec.openplanner.team/stops/X640aga"], ["https://tec.openplanner.team/stops/H1gy112b", "https://tec.openplanner.team/stops/H1le125a"], ["https://tec.openplanner.team/stops/LCEinst2", "https://tec.openplanner.team/stops/LCEplac1"], ["https://tec.openplanner.team/stops/LMschap1", "https://tec.openplanner.team/stops/LMsgara1"], ["https://tec.openplanner.team/stops/LeYdorf2", "https://tec.openplanner.team/stops/LeYroth1"], ["https://tec.openplanner.team/stops/N506aaa", "https://tec.openplanner.team/stops/N506akb"], ["https://tec.openplanner.team/stops/Lgdmaye2", "https://tec.openplanner.team/stops/LWechea2"], ["https://tec.openplanner.team/stops/N117aaa", "https://tec.openplanner.team/stops/N117aab"], ["https://tec.openplanner.team/stops/Llgpont2", "https://tec.openplanner.team/stops/Llgstap1"], ["https://tec.openplanner.team/stops/N552aaa", "https://tec.openplanner.team/stops/N577acb"], ["https://tec.openplanner.team/stops/N138aga", "https://tec.openplanner.team/stops/N423aga"], ["https://tec.openplanner.team/stops/H1og133b", "https://tec.openplanner.team/stops/H4os217a"], ["https://tec.openplanner.team/stops/H1bn114a", "https://tec.openplanner.team/stops/H1bn148b"], ["https://tec.openplanner.team/stops/Bottcpl2", "https://tec.openplanner.team/stops/Bottra91"], ["https://tec.openplanner.team/stops/LLUcdoy2", "https://tec.openplanner.team/stops/LTRryta2"], ["https://tec.openplanner.team/stops/LAWchpl1", "https://tec.openplanner.team/stops/LAWchpl2"], ["https://tec.openplanner.team/stops/Bbryfon1", "https://tec.openplanner.team/stops/Bbryvil1"], ["https://tec.openplanner.team/stops/NL78aaa", "https://tec.openplanner.team/stops/NL78aab"], ["https://tec.openplanner.team/stops/LVnflox2", "https://tec.openplanner.team/stops/LVnrock1"], ["https://tec.openplanner.team/stops/H4fa128b", "https://tec.openplanner.team/stops/H4fa167b"], ["https://tec.openplanner.team/stops/N501afa", "https://tec.openplanner.team/stops/N503acb"], ["https://tec.openplanner.team/stops/LNOpt--1", "https://tec.openplanner.team/stops/LNOsedo1"], ["https://tec.openplanner.team/stops/Ccohotv1", "https://tec.openplanner.team/stops/Ccohotv2"], ["https://tec.openplanner.team/stops/LSZsolw2", "https://tec.openplanner.team/stops/LSZsolw3"], ["https://tec.openplanner.team/stops/Brsga811", "https://tec.openplanner.team/stops/Brsggea1"], ["https://tec.openplanner.team/stops/H1cd112a", "https://tec.openplanner.team/stops/H1cd113b"], ["https://tec.openplanner.team/stops/Bolgfon1", "https://tec.openplanner.team/stops/Bolpmre2"], ["https://tec.openplanner.team/stops/X725aab", "https://tec.openplanner.team/stops/X738aea"], ["https://tec.openplanner.team/stops/LgAdorf1", "https://tec.openplanner.team/stops/LsVgesc2"], ["https://tec.openplanner.team/stops/Cci28ju1", "https://tec.openplanner.team/stops/Ccipano1"], ["https://tec.openplanner.team/stops/H4es112b", "https://tec.openplanner.team/stops/H4ev126b"], ["https://tec.openplanner.team/stops/H4ta116a", "https://tec.openplanner.team/stops/H4ta126b"], ["https://tec.openplanner.team/stops/Ladhomb1", "https://tec.openplanner.team/stops/Lveptre2"], ["https://tec.openplanner.team/stops/N347acb", "https://tec.openplanner.team/stops/X347aaa"], ["https://tec.openplanner.team/stops/LeYwald1", "https://tec.openplanner.team/stops/LeYwald2"], ["https://tec.openplanner.team/stops/X950ada", "https://tec.openplanner.team/stops/X952alb"], ["https://tec.openplanner.team/stops/H2pe162c", "https://tec.openplanner.team/stops/H2sv217a"], ["https://tec.openplanner.team/stops/Brsgman1", "https://tec.openplanner.team/stops/Bwatcha1"], ["https://tec.openplanner.team/stops/Boveklo2", "https://tec.openplanner.team/stops/Brsrfen2"], ["https://tec.openplanner.team/stops/H4co106a", "https://tec.openplanner.team/stops/H4co157a"], ["https://tec.openplanner.team/stops/N111aab", "https://tec.openplanner.team/stops/N127bha"], ["https://tec.openplanner.team/stops/H2hg147b", "https://tec.openplanner.team/stops/H2hg152b"], ["https://tec.openplanner.team/stops/Lmopans1", "https://tec.openplanner.team/stops/Lmopans2"], ["https://tec.openplanner.team/stops/Blhufro2", "https://tec.openplanner.team/stops/Blhugai1"], ["https://tec.openplanner.team/stops/Lghlieg1", "https://tec.openplanner.team/stops/Lghpara2"], ["https://tec.openplanner.team/stops/X897aba", "https://tec.openplanner.team/stops/X897aca"], ["https://tec.openplanner.team/stops/Bhenfla1", "https://tec.openplanner.team/stops/Bhenfla2"], ["https://tec.openplanner.team/stops/Berncim2", "https://tec.openplanner.team/stops/Bwspbbo2"], ["https://tec.openplanner.team/stops/N501mra", "https://tec.openplanner.team/stops/N501mtd"], ["https://tec.openplanner.team/stops/N135bia", "https://tec.openplanner.team/stops/N135bib"], ["https://tec.openplanner.team/stops/N360adb", "https://tec.openplanner.team/stops/N894ada"], ["https://tec.openplanner.team/stops/Cjumade3", "https://tec.openplanner.team/stops/Cjumade4"], ["https://tec.openplanner.team/stops/LbO52--2", "https://tec.openplanner.team/stops/LmDwei31"], ["https://tec.openplanner.team/stops/N232bca", "https://tec.openplanner.team/stops/N232bta"], ["https://tec.openplanner.team/stops/Llgdarc2", "https://tec.openplanner.team/stops/Llgpier2"], ["https://tec.openplanner.team/stops/N347afb", "https://tec.openplanner.team/stops/X347aab"], ["https://tec.openplanner.team/stops/X910aia", "https://tec.openplanner.team/stops/X910aja"], ["https://tec.openplanner.team/stops/X994ala", "https://tec.openplanner.team/stops/X994alb"], ["https://tec.openplanner.team/stops/LAWdefu4", "https://tec.openplanner.team/stops/LAWjaur1"], ["https://tec.openplanner.team/stops/N529abc", "https://tec.openplanner.team/stops/N529ahb"], ["https://tec.openplanner.team/stops/Lstchas2", "https://tec.openplanner.team/stops/Lstetud1"], ["https://tec.openplanner.team/stops/H1do126a", "https://tec.openplanner.team/stops/H1do126b"], ["https://tec.openplanner.team/stops/X982cea", "https://tec.openplanner.team/stops/X982cfa"], ["https://tec.openplanner.team/stops/X662ata", "https://tec.openplanner.team/stops/X662atb"], ["https://tec.openplanner.team/stops/LNEmoul2", "https://tec.openplanner.team/stops/LOL6che2"], ["https://tec.openplanner.team/stops/N137aaa", "https://tec.openplanner.team/stops/N137aab"], ["https://tec.openplanner.team/stops/LArchap1", "https://tec.openplanner.team/stops/X548abb"], ["https://tec.openplanner.team/stops/Lbrmour1", "https://tec.openplanner.team/stops/Lbrmour2"], ["https://tec.openplanner.team/stops/Bbsigaz1", "https://tec.openplanner.team/stops/Bbsivil1"], ["https://tec.openplanner.team/stops/LaAgold1", "https://tec.openplanner.team/stops/LaAjahn1"], ["https://tec.openplanner.team/stops/N501dqb", "https://tec.openplanner.team/stops/N501kha"], ["https://tec.openplanner.team/stops/X982aaa", "https://tec.openplanner.team/stops/X982byb"], ["https://tec.openplanner.team/stops/LLYplac2", "https://tec.openplanner.team/stops/LLYtir-2"], ["https://tec.openplanner.team/stops/N554ada", "https://tec.openplanner.team/stops/N566afb"], ["https://tec.openplanner.team/stops/H2ma204a", "https://tec.openplanner.team/stops/H2ma206b"], ["https://tec.openplanner.team/stops/Bbcogar1", "https://tec.openplanner.team/stops/H3br108d"], ["https://tec.openplanner.team/stops/H3go104a", "https://tec.openplanner.team/stops/H3go104b"], ["https://tec.openplanner.team/stops/LBGroma2", "https://tec.openplanner.team/stops/LBGvill1"], ["https://tec.openplanner.team/stops/Bdvmtve1", "https://tec.openplanner.team/stops/Bdvmtve2"], ["https://tec.openplanner.team/stops/X651adb", "https://tec.openplanner.team/stops/X651agb"], ["https://tec.openplanner.team/stops/LcRkirc2", "https://tec.openplanner.team/stops/LnUhohe1"], ["https://tec.openplanner.team/stops/Bvirhsa1", "https://tec.openplanner.team/stops/Bvirpla1"], ["https://tec.openplanner.team/stops/H1te179b", "https://tec.openplanner.team/stops/H1te191b"], ["https://tec.openplanner.team/stops/N338aeb", "https://tec.openplanner.team/stops/N338afa"], ["https://tec.openplanner.team/stops/Bsaubra2", "https://tec.openplanner.team/stops/Bsaucre2"], ["https://tec.openplanner.team/stops/LLUg82-2", "https://tec.openplanner.team/stops/LLUgend2"], ["https://tec.openplanner.team/stops/LAMdelh*", "https://tec.openplanner.team/stops/LOmrela1"], ["https://tec.openplanner.team/stops/Lmitroi2", "https://tec.openplanner.team/stops/Lvtvici1"], ["https://tec.openplanner.team/stops/H1sp353a", "https://tec.openplanner.team/stops/H1ss350a"], ["https://tec.openplanner.team/stops/LRmkerk2", "https://tec.openplanner.team/stops/LRmstat1"], ["https://tec.openplanner.team/stops/LSGfoua2", "https://tec.openplanner.team/stops/LSkathe2"], ["https://tec.openplanner.team/stops/Cgzhour2", "https://tec.openplanner.team/stops/Cgzhour3"], ["https://tec.openplanner.team/stops/N221aca", "https://tec.openplanner.team/stops/X394aga"], ["https://tec.openplanner.team/stops/Bwancal2", "https://tec.openplanner.team/stops/Bwanorp2"], ["https://tec.openplanner.team/stops/LHTdelh1", "https://tec.openplanner.team/stops/LHTeg--1"], ["https://tec.openplanner.team/stops/X661aoa", "https://tec.openplanner.team/stops/X661aob"], ["https://tec.openplanner.team/stops/LHTcerc4", "https://tec.openplanner.team/stops/LHTeg--5"], ["https://tec.openplanner.team/stops/N302acb", "https://tec.openplanner.team/stops/N302ada"], ["https://tec.openplanner.team/stops/N525ahb", "https://tec.openplanner.team/stops/N525aib"], ["https://tec.openplanner.team/stops/LVvboma2", "https://tec.openplanner.team/stops/LVvbouv1"], ["https://tec.openplanner.team/stops/Bwavbar1", "https://tec.openplanner.team/stops/Bwavbar2"], ["https://tec.openplanner.team/stops/N235ada", "https://tec.openplanner.team/stops/N236aib"], ["https://tec.openplanner.team/stops/X982bfb", "https://tec.openplanner.team/stops/X982blb"], ["https://tec.openplanner.team/stops/LTHbelv2", "https://tec.openplanner.team/stops/LTHec--1"], ["https://tec.openplanner.team/stops/Cthathe1", "https://tec.openplanner.team/stops/Cthpibl2"], ["https://tec.openplanner.team/stops/Ladmoli1", "https://tec.openplanner.team/stops/Ladpire3"], ["https://tec.openplanner.team/stops/LAivill1", "https://tec.openplanner.team/stops/Lccawir3"], ["https://tec.openplanner.team/stops/LHFhard1", "https://tec.openplanner.team/stops/LVEmoul2"], ["https://tec.openplanner.team/stops/LFPstro2", "https://tec.openplanner.team/stops/LRmsmvo3"], ["https://tec.openplanner.team/stops/Brsgm301", "https://tec.openplanner.team/stops/Bwatcha3"], ["https://tec.openplanner.team/stops/Bhalker1", "https://tec.openplanner.team/stops/Blemsta1"], ["https://tec.openplanner.team/stops/N118ava", "https://tec.openplanner.team/stops/N118avd"], ["https://tec.openplanner.team/stops/X901aab", "https://tec.openplanner.team/stops/X901bja"], ["https://tec.openplanner.team/stops/LTicent1", "https://tec.openplanner.team/stops/LTicent2"], ["https://tec.openplanner.team/stops/LLmpt--2", "https://tec.openplanner.team/stops/LLmvict1"], ["https://tec.openplanner.team/stops/Ccorian1", "https://tec.openplanner.team/stops/Croball1"], ["https://tec.openplanner.team/stops/H4bi100a", "https://tec.openplanner.team/stops/H4pq120a"], ["https://tec.openplanner.team/stops/X811ahb", "https://tec.openplanner.team/stops/X834aab"], ["https://tec.openplanner.team/stops/N511ama", "https://tec.openplanner.team/stops/N511anb"], ["https://tec.openplanner.team/stops/Cchwate4", "https://tec.openplanner.team/stops/CMwate1"], ["https://tec.openplanner.team/stops/LCIneuv1", "https://tec.openplanner.team/stops/LLtwanz1"], ["https://tec.openplanner.team/stops/N230aka", "https://tec.openplanner.team/stops/N540abb"], ["https://tec.openplanner.team/stops/N137abb", "https://tec.openplanner.team/stops/N137acb"], ["https://tec.openplanner.team/stops/X601agb", "https://tec.openplanner.team/stops/X663ahb"], ["https://tec.openplanner.team/stops/N390acb", "https://tec.openplanner.team/stops/X390ala"], ["https://tec.openplanner.team/stops/X621aaa", "https://tec.openplanner.team/stops/X621aba"], ["https://tec.openplanner.team/stops/NL81aha", "https://tec.openplanner.team/stops/NL82agb"], ["https://tec.openplanner.team/stops/N535aib", "https://tec.openplanner.team/stops/N539aya"], ["https://tec.openplanner.team/stops/H5wo129a", "https://tec.openplanner.team/stops/H5wo130a"], ["https://tec.openplanner.team/stops/X952afb", "https://tec.openplanner.team/stops/X953afb"], ["https://tec.openplanner.team/stops/X639aoc", "https://tec.openplanner.team/stops/X639aqb"], ["https://tec.openplanner.team/stops/X748aea", "https://tec.openplanner.team/stops/X767aja"], ["https://tec.openplanner.team/stops/H1me117f", "https://tec.openplanner.team/stops/H1so141a"], ["https://tec.openplanner.team/stops/H1sb148a", "https://tec.openplanner.team/stops/H1sb148b"], ["https://tec.openplanner.team/stops/X952aga", "https://tec.openplanner.team/stops/X952aia"], ["https://tec.openplanner.team/stops/X660aba", "https://tec.openplanner.team/stops/X660abb"], ["https://tec.openplanner.team/stops/Bwaucan2", "https://tec.openplanner.team/stops/Bwaurge1"], ["https://tec.openplanner.team/stops/LBSkann2", "https://tec.openplanner.team/stops/LBSneuv2"], ["https://tec.openplanner.team/stops/LFPgeme2", "https://tec.openplanner.team/stops/LVu03--1"], ["https://tec.openplanner.team/stops/Becepro1", "https://tec.openplanner.team/stops/Becepro2"], ["https://tec.openplanner.team/stops/Clgpavi1", "https://tec.openplanner.team/stops/Csscrot1"], ["https://tec.openplanner.team/stops/N135afa", "https://tec.openplanner.team/stops/N135beb"], ["https://tec.openplanner.team/stops/LeUbush1", "https://tec.openplanner.team/stops/LeUdepo1"], ["https://tec.openplanner.team/stops/Ljedepa1", "https://tec.openplanner.team/stops/Ljedepa2"], ["https://tec.openplanner.team/stops/X725asa", "https://tec.openplanner.team/stops/X725aua"], ["https://tec.openplanner.team/stops/H4fr386a", "https://tec.openplanner.team/stops/H4fr391a"], ["https://tec.openplanner.team/stops/LVBcarr1", "https://tec.openplanner.team/stops/LVBmonu4"], ["https://tec.openplanner.team/stops/N531aib", "https://tec.openplanner.team/stops/N531arb"], ["https://tec.openplanner.team/stops/X820aga", "https://tec.openplanner.team/stops/X820amb"], ["https://tec.openplanner.team/stops/LETec--1", "https://tec.openplanner.team/stops/LETmagn2"], ["https://tec.openplanner.team/stops/LrAbe602", "https://tec.openplanner.team/stops/LrAneus1"], ["https://tec.openplanner.team/stops/Lghneuv1", "https://tec.openplanner.team/stops/Lghneuv2"], ["https://tec.openplanner.team/stops/Llgdelc*", "https://tec.openplanner.team/stops/Llgdelc2"], ["https://tec.openplanner.team/stops/LCPoneu2", "https://tec.openplanner.team/stops/LCPpech5"], ["https://tec.openplanner.team/stops/Bsomh671", "https://tec.openplanner.team/stops/Bsomjon1"], ["https://tec.openplanner.team/stops/H4mo195a", "https://tec.openplanner.team/stops/H4mo206a"], ["https://tec.openplanner.team/stops/Cgzoctr1", "https://tec.openplanner.team/stops/Cgzoctr2"], ["https://tec.openplanner.team/stops/N516apa", "https://tec.openplanner.team/stops/N516apb"], ["https://tec.openplanner.team/stops/Cbfplch1", "https://tec.openplanner.team/stops/NC24aia"], ["https://tec.openplanner.team/stops/LMOecsp2", "https://tec.openplanner.team/stops/LMOfleu2"], ["https://tec.openplanner.team/stops/Bmangar1", "https://tec.openplanner.team/stops/H2mg140c"], ["https://tec.openplanner.team/stops/Bauddel1", "https://tec.openplanner.team/stops/Baudstr1"], ["https://tec.openplanner.team/stops/Bhptegl1", "https://tec.openplanner.team/stops/H2ec110b"], ["https://tec.openplanner.team/stops/LkEneus1", "https://tec.openplanner.team/stops/LMspont1"], ["https://tec.openplanner.team/stops/X741aab", "https://tec.openplanner.team/stops/X741abc"], ["https://tec.openplanner.team/stops/Bclgegl1", "https://tec.openplanner.team/stops/Bclgfva1"], ["https://tec.openplanner.team/stops/H4hu114a", "https://tec.openplanner.team/stops/H4hu121b"], ["https://tec.openplanner.team/stops/Creespi1", "https://tec.openplanner.team/stops/Crestan1"], ["https://tec.openplanner.team/stops/Lflec--1", "https://tec.openplanner.team/stops/Lflec--2"], ["https://tec.openplanner.team/stops/Loucent2", "https://tec.openplanner.team/stops/Lousite6"], ["https://tec.openplanner.team/stops/LWagare*", "https://tec.openplanner.team/stops/LWathir1"], ["https://tec.openplanner.team/stops/LBgbaga2", "https://tec.openplanner.team/stops/LGmeg--2"], ["https://tec.openplanner.team/stops/H1gy113a", "https://tec.openplanner.team/stops/H1gy113b"], ["https://tec.openplanner.team/stops/H4eh101a", "https://tec.openplanner.team/stops/H4eh102a"], ["https://tec.openplanner.team/stops/N365abb", "https://tec.openplanner.team/stops/N365acb"], ["https://tec.openplanner.team/stops/LODamco1", "https://tec.openplanner.team/stops/X561aca"], ["https://tec.openplanner.team/stops/NL57agb", "https://tec.openplanner.team/stops/NL57ahb"], ["https://tec.openplanner.team/stops/LcRmich1", "https://tec.openplanner.team/stops/LnNkirc1"], ["https://tec.openplanner.team/stops/LeYgros1", "https://tec.openplanner.team/stops/LeYheid2"], ["https://tec.openplanner.team/stops/H5qu144a", "https://tec.openplanner.team/stops/H5st169a"], ["https://tec.openplanner.team/stops/H1hq127a", "https://tec.openplanner.team/stops/H1hq127b"], ["https://tec.openplanner.team/stops/X822aea", "https://tec.openplanner.team/stops/X822aob"], ["https://tec.openplanner.team/stops/Llgcoti*", "https://tec.openplanner.team/stops/Llgvott1"], ["https://tec.openplanner.team/stops/Bbstbou1", "https://tec.openplanner.team/stops/Bvlvbth1"], ["https://tec.openplanner.team/stops/Bhantui1", "https://tec.openplanner.team/stops/Bthscbl1"], ["https://tec.openplanner.team/stops/LHgroso1", "https://tec.openplanner.team/stops/LHgroso2"], ["https://tec.openplanner.team/stops/H4cr111a", "https://tec.openplanner.team/stops/H4cr111b"], ["https://tec.openplanner.team/stops/N353ada", "https://tec.openplanner.team/stops/N353adb"], ["https://tec.openplanner.team/stops/Lbocruc2", "https://tec.openplanner.team/stops/Lbocruc3"], ["https://tec.openplanner.team/stops/H1qu110b", "https://tec.openplanner.team/stops/H1qu111a"], ["https://tec.openplanner.team/stops/X601dga", "https://tec.openplanner.team/stops/X602afa"], ["https://tec.openplanner.team/stops/Bjausan2", "https://tec.openplanner.team/stops/Bjauwar2"], ["https://tec.openplanner.team/stops/Lmohomv1", "https://tec.openplanner.team/stops/Lmopave2"], ["https://tec.openplanner.team/stops/LCHeg--2", "https://tec.openplanner.team/stops/Lprsher2"], ["https://tec.openplanner.team/stops/Lmidarc2", "https://tec.openplanner.team/stops/Lmitroi1"], ["https://tec.openplanner.team/stops/Cjuloos1", "https://tec.openplanner.team/stops/Cjuloos2"], ["https://tec.openplanner.team/stops/N536apb", "https://tec.openplanner.team/stops/N536aqb"], ["https://tec.openplanner.team/stops/Lscbour1", "https://tec.openplanner.team/stops/Lscbour2"], ["https://tec.openplanner.team/stops/LGEcent2", "https://tec.openplanner.team/stops/LGEhosp2"], ["https://tec.openplanner.team/stops/Bcsebea1", "https://tec.openplanner.team/stops/Bmsgpap1"], ["https://tec.openplanner.team/stops/X806agb", "https://tec.openplanner.team/stops/X806ahb"], ["https://tec.openplanner.team/stops/X986aab", "https://tec.openplanner.team/stops/X986aha"], ["https://tec.openplanner.team/stops/N584ada", "https://tec.openplanner.team/stops/N584aja"], ["https://tec.openplanner.team/stops/Bwavgar1", "https://tec.openplanner.team/stops/Bwavgar6"], ["https://tec.openplanner.team/stops/X926abb", "https://tec.openplanner.team/stops/X926aca"], ["https://tec.openplanner.team/stops/H4ty346a", "https://tec.openplanner.team/stops/H4ty346b"], ["https://tec.openplanner.team/stops/H4ne136b", "https://tec.openplanner.team/stops/H4te256b"], ["https://tec.openplanner.team/stops/Brxmbos1", "https://tec.openplanner.team/stops/Brxmhai2"], ["https://tec.openplanner.team/stops/H1hw122a", "https://tec.openplanner.team/stops/H1hw124a"], ["https://tec.openplanner.team/stops/LEHmarc1", "https://tec.openplanner.team/stops/Livvill2"], ["https://tec.openplanner.team/stops/N213aba", "https://tec.openplanner.team/stops/N213abb"], ["https://tec.openplanner.team/stops/Cauwauq1", "https://tec.openplanner.team/stops/Cauwauq2"], ["https://tec.openplanner.team/stops/Ljewale1", "https://tec.openplanner.team/stops/Ljewale2"], ["https://tec.openplanner.team/stops/H1by104a", "https://tec.openplanner.team/stops/H1by109b"], ["https://tec.openplanner.team/stops/LLWchat2", "https://tec.openplanner.team/stops/LVBcarr1"], ["https://tec.openplanner.team/stops/Clbgare1", "https://tec.openplanner.team/stops/Clbhvil1"], ["https://tec.openplanner.team/stops/Balsnie1", "https://tec.openplanner.team/stops/Balssvi1"], ["https://tec.openplanner.team/stops/X796aaa", "https://tec.openplanner.team/stops/X986agb"], ["https://tec.openplanner.team/stops/LVIeg--1", "https://tec.openplanner.team/stops/LVIsacr2"], ["https://tec.openplanner.team/stops/N214aib", "https://tec.openplanner.team/stops/N225aea"], ["https://tec.openplanner.team/stops/N557ada", "https://tec.openplanner.team/stops/N557adb"], ["https://tec.openplanner.team/stops/Cprvill1", "https://tec.openplanner.team/stops/Cprvill2"], ["https://tec.openplanner.team/stops/LBWeg--4", "https://tec.openplanner.team/stops/LBWviad1"], ["https://tec.openplanner.team/stops/X901aea", "https://tec.openplanner.team/stops/X902bga"], ["https://tec.openplanner.team/stops/Cgpleco1", "https://tec.openplanner.team/stops/Cpcathe1"], ["https://tec.openplanner.team/stops/LHuetat1", "https://tec.openplanner.team/stops/LWzfuma1"], ["https://tec.openplanner.team/stops/H4ep131a", "https://tec.openplanner.team/stops/H4rm109b"], ["https://tec.openplanner.team/stops/H4es117b", "https://tec.openplanner.team/stops/H4ev126a"], ["https://tec.openplanner.team/stops/Cbbjfeu1", "https://tec.openplanner.team/stops/Cvregl2"], ["https://tec.openplanner.team/stops/Cmerdby2", "https://tec.openplanner.team/stops/Cwxplac2"], ["https://tec.openplanner.team/stops/N874aeb", "https://tec.openplanner.team/stops/N874afb"], ["https://tec.openplanner.team/stops/H5el100b", "https://tec.openplanner.team/stops/H5el104a"], ["https://tec.openplanner.team/stops/H1cu112b", "https://tec.openplanner.team/stops/H1cu123a"], ["https://tec.openplanner.team/stops/N245aba", "https://tec.openplanner.team/stops/N340aea"], ["https://tec.openplanner.team/stops/LVltige1", "https://tec.openplanner.team/stops/LVltige2"], ["https://tec.openplanner.team/stops/LFOchab1", "https://tec.openplanner.team/stops/LVlfooz2"], ["https://tec.openplanner.team/stops/Lfhhosp1", "https://tec.openplanner.team/stops/Lfhxhor1"], ["https://tec.openplanner.team/stops/H1ms298a", "https://tec.openplanner.team/stops/H1ms314a"], ["https://tec.openplanner.team/stops/Bbstchn1", "https://tec.openplanner.team/stops/Bbsttab2"], ["https://tec.openplanner.team/stops/H4av102a", "https://tec.openplanner.team/stops/H4av105a"], ["https://tec.openplanner.team/stops/X871aaa", "https://tec.openplanner.team/stops/X873aaa"], ["https://tec.openplanner.team/stops/LCOcrom2", "https://tec.openplanner.team/stops/LSNfays2"], ["https://tec.openplanner.team/stops/X359aha", "https://tec.openplanner.team/stops/X359ahb"], ["https://tec.openplanner.team/stops/H2hp116b", "https://tec.openplanner.team/stops/H2hp118b"], ["https://tec.openplanner.team/stops/LeUgb--1", "https://tec.openplanner.team/stops/LeUgb--2"], ["https://tec.openplanner.team/stops/N201apa", "https://tec.openplanner.team/stops/N201aqa"], ["https://tec.openplanner.team/stops/N544aca", "https://tec.openplanner.team/stops/N544acb"], ["https://tec.openplanner.team/stops/Bbstcha2", "https://tec.openplanner.team/stops/Blpgvil2"], ["https://tec.openplanner.team/stops/X908aib", "https://tec.openplanner.team/stops/X908aoc"], ["https://tec.openplanner.team/stops/Cgxalli2", "https://tec.openplanner.team/stops/Cgxbeau1"], ["https://tec.openplanner.team/stops/LHovach1", "https://tec.openplanner.team/stops/LHovill2"], ["https://tec.openplanner.team/stops/H2bh109a", "https://tec.openplanner.team/stops/H2lc169a"], ["https://tec.openplanner.team/stops/Lsearbo1", "https://tec.openplanner.team/stops/Lsevill2"], ["https://tec.openplanner.team/stops/X614aja", "https://tec.openplanner.team/stops/X614ajb"], ["https://tec.openplanner.team/stops/N202aec", "https://tec.openplanner.team/stops/N562ayb"], ["https://tec.openplanner.team/stops/X604aba", "https://tec.openplanner.team/stops/X604acb"], ["https://tec.openplanner.team/stops/Ccychba2", "https://tec.openplanner.team/stops/Crbegli2"], ["https://tec.openplanner.team/stops/LFfeg--2", "https://tec.openplanner.team/stops/LPRcasi1"], ["https://tec.openplanner.team/stops/X713afb", "https://tec.openplanner.team/stops/X713agb"], ["https://tec.openplanner.team/stops/H1ch103a", "https://tec.openplanner.team/stops/H1ch105b"], ["https://tec.openplanner.team/stops/Lprmc--2", "https://tec.openplanner.team/stops/Lprorph2"], ["https://tec.openplanner.team/stops/LThelse1", "https://tec.openplanner.team/stops/LThgare2"], ["https://tec.openplanner.team/stops/LBLfoxh2", "https://tec.openplanner.team/stops/LMoeg--1"], ["https://tec.openplanner.team/stops/LlOdrei2", "https://tec.openplanner.team/stops/LwPdorf2"], ["https://tec.openplanner.team/stops/LETsaiv1", "https://tec.openplanner.team/stops/LSAtrih1"], ["https://tec.openplanner.team/stops/H4ag100a", "https://tec.openplanner.team/stops/H4ag101a"], ["https://tec.openplanner.team/stops/LBseg--1", "https://tec.openplanner.team/stops/NL72ada"], ["https://tec.openplanner.team/stops/LaFbruc1", "https://tec.openplanner.team/stops/LwPdorf1"], ["https://tec.openplanner.team/stops/X619afa", "https://tec.openplanner.team/stops/X619aga"], ["https://tec.openplanner.team/stops/N501gbb", "https://tec.openplanner.team/stops/N501ldb"], ["https://tec.openplanner.team/stops/H1ne150a", "https://tec.openplanner.team/stops/H1ne150b"], ["https://tec.openplanner.team/stops/LsFcafe1", "https://tec.openplanner.team/stops/LsFcafe2"], ["https://tec.openplanner.team/stops/Lourose3", "https://tec.openplanner.team/stops/Lourose5"], ["https://tec.openplanner.team/stops/Cmmramb2", "https://tec.openplanner.team/stops/Cmysncb2"], ["https://tec.openplanner.team/stops/H4rx176b", "https://tec.openplanner.team/stops/H4wa148b"], ["https://tec.openplanner.team/stops/X910afa", "https://tec.openplanner.team/stops/X910afc"], ["https://tec.openplanner.team/stops/Btlgegl1", "https://tec.openplanner.team/stops/Btlgegl2"], ["https://tec.openplanner.team/stops/Bwatfon1", "https://tec.openplanner.team/stops/Bwatrte1"], ["https://tec.openplanner.team/stops/LHNtill1", "https://tec.openplanner.team/stops/LHNtill2"], ["https://tec.openplanner.team/stops/N501fpa", "https://tec.openplanner.team/stops/N501mfb"], ["https://tec.openplanner.team/stops/N145aja", "https://tec.openplanner.team/stops/N150aaa"], ["https://tec.openplanner.team/stops/N114aab", "https://tec.openplanner.team/stops/N122agb"], ["https://tec.openplanner.team/stops/Clbpepi1", "https://tec.openplanner.team/stops/Clbpepi2"], ["https://tec.openplanner.team/stops/Bcbqufo2", "https://tec.openplanner.team/stops/Btubcvi2"], ["https://tec.openplanner.team/stops/LHMbach1", "https://tec.openplanner.team/stops/LHMbach2"], ["https://tec.openplanner.team/stops/N134ada", "https://tec.openplanner.team/stops/N134ala"], ["https://tec.openplanner.team/stops/Lcefoxh2", "https://tec.openplanner.team/stops/Lceludg1"], ["https://tec.openplanner.team/stops/H1wa149c", "https://tec.openplanner.team/stops/H1wa153a"], ["https://tec.openplanner.team/stops/H1qu102a", "https://tec.openplanner.team/stops/H1qu106b"], ["https://tec.openplanner.team/stops/Cjulucq1", "https://tec.openplanner.team/stops/Cjupuis2"], ["https://tec.openplanner.team/stops/H3so170b", "https://tec.openplanner.team/stops/H3so173a"], ["https://tec.openplanner.team/stops/LVLruis1", "https://tec.openplanner.team/stops/LVLzoni1"], ["https://tec.openplanner.team/stops/LFIcabi1", "https://tec.openplanner.team/stops/LHaxhor2"], ["https://tec.openplanner.team/stops/H2ca104a", "https://tec.openplanner.team/stops/H2ca108b"], ["https://tec.openplanner.team/stops/H2ll177a", "https://tec.openplanner.team/stops/H2ll189b"], ["https://tec.openplanner.team/stops/LrAgier1", "https://tec.openplanner.team/stops/LrAplat1"], ["https://tec.openplanner.team/stops/Ccoacar2", "https://tec.openplanner.team/stops/Ccotrie1"], ["https://tec.openplanner.team/stops/Cmlbevu2", "https://tec.openplanner.team/stops/Cmlbrac1"], ["https://tec.openplanner.team/stops/NC14aea", "https://tec.openplanner.team/stops/NC14aeb"], ["https://tec.openplanner.team/stops/Cbwegl2", "https://tec.openplanner.team/stops/H1mb129b"], ["https://tec.openplanner.team/stops/Lceludg1", "https://tec.openplanner.team/stops/Lcewilm1"], ["https://tec.openplanner.team/stops/Lheloti2", "https://tec.openplanner.team/stops/LOUsorb2"], ["https://tec.openplanner.team/stops/H1gh151b", "https://tec.openplanner.team/stops/H1ms930a"], ["https://tec.openplanner.team/stops/Laltrap1", "https://tec.openplanner.team/stops/Laltrav2"], ["https://tec.openplanner.team/stops/N540acd", "https://tec.openplanner.team/stops/N540afb"], ["https://tec.openplanner.team/stops/LCxwarr2", "https://tec.openplanner.team/stops/LHEchex1"], ["https://tec.openplanner.team/stops/H3br110a", "https://tec.openplanner.team/stops/H3br112a"], ["https://tec.openplanner.team/stops/X639ama", "https://tec.openplanner.team/stops/X639amd"], ["https://tec.openplanner.team/stops/LPohoeg1", "https://tec.openplanner.team/stops/LSPjoli1"], ["https://tec.openplanner.team/stops/N574ada", "https://tec.openplanner.team/stops/N574aeb"], ["https://tec.openplanner.team/stops/X624aca", "https://tec.openplanner.team/stops/X624amb"], ["https://tec.openplanner.team/stops/N501cpa", "https://tec.openplanner.team/stops/N538axa"], ["https://tec.openplanner.team/stops/Llmbouv1", "https://tec.openplanner.team/stops/Llmdela1"], ["https://tec.openplanner.team/stops/N236aeb", "https://tec.openplanner.team/stops/N236ala"], ["https://tec.openplanner.team/stops/LWLeg--1", "https://tec.openplanner.team/stops/LWLeg--3"], ["https://tec.openplanner.team/stops/N309aaa", "https://tec.openplanner.team/stops/N309aba"], ["https://tec.openplanner.team/stops/Bwatgar3", "https://tec.openplanner.team/stops/Bwatrdu1"], ["https://tec.openplanner.team/stops/N501evb", "https://tec.openplanner.team/stops/N538asa"], ["https://tec.openplanner.team/stops/N556afa", "https://tec.openplanner.team/stops/N556afb"], ["https://tec.openplanner.team/stops/X804aeb", "https://tec.openplanner.team/stops/X804azb"], ["https://tec.openplanner.team/stops/N509aaa", "https://tec.openplanner.team/stops/N509aeb"], ["https://tec.openplanner.team/stops/N331aaa", "https://tec.openplanner.team/stops/N331aeb"], ["https://tec.openplanner.team/stops/X624afb", "https://tec.openplanner.team/stops/X624ala"], ["https://tec.openplanner.team/stops/N304abb", "https://tec.openplanner.team/stops/N315aab"], ["https://tec.openplanner.team/stops/X812bbb", "https://tec.openplanner.team/stops/X812bga"], ["https://tec.openplanner.team/stops/LBVclig2", "https://tec.openplanner.team/stops/LMAfali1"], ["https://tec.openplanner.team/stops/H1ms278a", "https://tec.openplanner.team/stops/H1ms940b"], ["https://tec.openplanner.team/stops/N577abb", "https://tec.openplanner.team/stops/N577aea"], ["https://tec.openplanner.team/stops/Braccen2", "https://tec.openplanner.team/stops/Bracgar2"], ["https://tec.openplanner.team/stops/H4be103b", "https://tec.openplanner.team/stops/H4be112b"], ["https://tec.openplanner.team/stops/Bhalker2", "https://tec.openplanner.team/stops/Blemsta1"], ["https://tec.openplanner.team/stops/H1mv242b", "https://tec.openplanner.team/stops/H1nv325b"], ["https://tec.openplanner.team/stops/Bhenpln1", "https://tec.openplanner.team/stops/Bhenrcr2"], ["https://tec.openplanner.team/stops/LSomonu2", "https://tec.openplanner.team/stops/LSorobe2"], ["https://tec.openplanner.team/stops/N218adb", "https://tec.openplanner.team/stops/N218afb"], ["https://tec.openplanner.team/stops/Cbmzoni2", "https://tec.openplanner.team/stops/H1tt106b"], ["https://tec.openplanner.team/stops/Bspkbeu1", "https://tec.openplanner.team/stops/H1gy115b"], ["https://tec.openplanner.team/stops/N501hza", "https://tec.openplanner.team/stops/N501hzb"], ["https://tec.openplanner.team/stops/N149aia", "https://tec.openplanner.team/stops/N149akb"], ["https://tec.openplanner.team/stops/N214aia", "https://tec.openplanner.team/stops/N236aha"], ["https://tec.openplanner.team/stops/LGMforg2", "https://tec.openplanner.team/stops/LGMstin2"], ["https://tec.openplanner.team/stops/LrUbrac1", "https://tec.openplanner.team/stops/LrUbrac4"], ["https://tec.openplanner.team/stops/X771aaa", "https://tec.openplanner.team/stops/X771abb"], ["https://tec.openplanner.team/stops/Llgbavi1", "https://tec.openplanner.team/stops/Llgdepo5"], ["https://tec.openplanner.team/stops/Llgstap1", "https://tec.openplanner.team/stops/Llgstap2"], ["https://tec.openplanner.team/stops/Lhefoot1", "https://tec.openplanner.team/stops/Lheloti2"], ["https://tec.openplanner.team/stops/Lsnfont2", "https://tec.openplanner.team/stops/Lsnvand3"], ["https://tec.openplanner.team/stops/H3lr109a", "https://tec.openplanner.team/stops/H3lr113b"], ["https://tec.openplanner.team/stops/H4do202b", "https://tec.openplanner.team/stops/H4sl155b"], ["https://tec.openplanner.team/stops/NL74aha", "https://tec.openplanner.team/stops/NL74aia"], ["https://tec.openplanner.team/stops/X779aca", "https://tec.openplanner.team/stops/X779aib"], ["https://tec.openplanner.team/stops/Cmmjami1", "https://tec.openplanner.team/stops/Cmygbbo1"], ["https://tec.openplanner.team/stops/X601blb", "https://tec.openplanner.team/stops/X612acb"], ["https://tec.openplanner.team/stops/X811ahb", "https://tec.openplanner.team/stops/X811aib"], ["https://tec.openplanner.team/stops/X982aba", "https://tec.openplanner.team/stops/X982btb"], ["https://tec.openplanner.team/stops/LGe4bra2", "https://tec.openplanner.team/stops/LGeschr2"], ["https://tec.openplanner.team/stops/Cgystjo4", "https://tec.openplanner.team/stops/Cmtmath2"], ["https://tec.openplanner.team/stops/LTIdonn2", "https://tec.openplanner.team/stops/LTIptme2"], ["https://tec.openplanner.team/stops/Cpctunn2", "https://tec.openplanner.team/stops/Cpcwaut1"], ["https://tec.openplanner.team/stops/Lpeptra1", "https://tec.openplanner.team/stops/LWenouv2"], ["https://tec.openplanner.team/stops/Ctuplac2", "https://tec.openplanner.team/stops/Ctusold1"], ["https://tec.openplanner.team/stops/Cdadest1", "https://tec.openplanner.team/stops/Cdapige1"], ["https://tec.openplanner.team/stops/LBahome2", "https://tec.openplanner.team/stops/LLUcdoy1"], ["https://tec.openplanner.team/stops/Bperwil2", "https://tec.openplanner.team/stops/Btlbegl4"], ["https://tec.openplanner.team/stops/X952alb", "https://tec.openplanner.team/stops/X955aab"], ["https://tec.openplanner.team/stops/LSWscie2", "https://tec.openplanner.team/stops/LSZsolw3"], ["https://tec.openplanner.team/stops/Loudela2", "https://tec.openplanner.team/stops/Lousimo1"], ["https://tec.openplanner.team/stops/X660aba", "https://tec.openplanner.team/stops/X672ala"], ["https://tec.openplanner.team/stops/N547ala", "https://tec.openplanner.team/stops/N547alb"], ["https://tec.openplanner.team/stops/Bhevhha1", "https://tec.openplanner.team/stops/Bhevl3l1"], ["https://tec.openplanner.team/stops/X630acb", "https://tec.openplanner.team/stops/X631ada"], ["https://tec.openplanner.team/stops/Csyplac2", "https://tec.openplanner.team/stops/Csystan2"], ["https://tec.openplanner.team/stops/LbUmors1", "https://tec.openplanner.team/stops/LbUwhon1"], ["https://tec.openplanner.team/stops/H4fr144b", "https://tec.openplanner.team/stops/H4fr391a"], ["https://tec.openplanner.team/stops/N137aia", "https://tec.openplanner.team/stops/N137aib"], ["https://tec.openplanner.team/stops/N539asa", "https://tec.openplanner.team/stops/N539asb"], ["https://tec.openplanner.team/stops/LMucarr1", "https://tec.openplanner.team/stops/LMuvill1"], ["https://tec.openplanner.team/stops/N254agb", "https://tec.openplanner.team/stops/N254ahb"], ["https://tec.openplanner.team/stops/H4ft136a", "https://tec.openplanner.team/stops/H4ma204a"], ["https://tec.openplanner.team/stops/X779ada", "https://tec.openplanner.team/stops/X779adb"], ["https://tec.openplanner.team/stops/H4ty339a", "https://tec.openplanner.team/stops/H4ty339b"], ["https://tec.openplanner.team/stops/LeYauto1", "https://tec.openplanner.team/stops/LeYmuhl1"], ["https://tec.openplanner.team/stops/X670apb", "https://tec.openplanner.team/stops/X670apc"], ["https://tec.openplanner.team/stops/N337aeb", "https://tec.openplanner.team/stops/N337afa"], ["https://tec.openplanner.team/stops/Bvircen1", "https://tec.openplanner.team/stops/Bvirpos2"], ["https://tec.openplanner.team/stops/N501bob", "https://tec.openplanner.team/stops/N501jma"], ["https://tec.openplanner.team/stops/Bnetegl4", "https://tec.openplanner.team/stops/Bpecsta1"], ["https://tec.openplanner.team/stops/Bbstcha1", "https://tec.openplanner.team/stops/Blpgvil2"], ["https://tec.openplanner.team/stops/LCHfond1", "https://tec.openplanner.team/stops/LCHgele2"], ["https://tec.openplanner.team/stops/LLbvith1", "https://tec.openplanner.team/stops/LLbvith2"], ["https://tec.openplanner.team/stops/N120ajb", "https://tec.openplanner.team/stops/N158aba"], ["https://tec.openplanner.team/stops/H1bx104b", "https://tec.openplanner.team/stops/H1bx108b"], ["https://tec.openplanner.team/stops/N347aeb", "https://tec.openplanner.team/stops/X370acb"], ["https://tec.openplanner.team/stops/X652ada", "https://tec.openplanner.team/stops/X669abc"], ["https://tec.openplanner.team/stops/Lprdavi1", "https://tec.openplanner.team/stops/Lveptle3"], ["https://tec.openplanner.team/stops/Bjaurgo1", "https://tec.openplanner.team/stops/NR30aaa"], ["https://tec.openplanner.team/stops/LeUgulc1", "https://tec.openplanner.team/stops/LeUschi1"], ["https://tec.openplanner.team/stops/X614aeb", "https://tec.openplanner.team/stops/X614ahb"], ["https://tec.openplanner.team/stops/LNOsedo1", "https://tec.openplanner.team/stops/LQafond1"], ["https://tec.openplanner.team/stops/N248aaa", "https://tec.openplanner.team/stops/N248aba"], ["https://tec.openplanner.team/stops/H4rm109b", "https://tec.openplanner.team/stops/H4rm114b"], ["https://tec.openplanner.team/stops/N222acb", "https://tec.openplanner.team/stops/X222aza"], ["https://tec.openplanner.team/stops/X801cca", "https://tec.openplanner.team/stops/X801cmb"], ["https://tec.openplanner.team/stops/Lghflot1", "https://tec.openplanner.team/stops/Lghflot3"], ["https://tec.openplanner.team/stops/H4he101a", "https://tec.openplanner.team/stops/H4he104a"], ["https://tec.openplanner.team/stops/Bwavdmo2", "https://tec.openplanner.team/stops/Bwavvpr1"], ["https://tec.openplanner.team/stops/LROchap1", "https://tec.openplanner.team/stops/LwYkirc2"], ["https://tec.openplanner.team/stops/LMAcime2", "https://tec.openplanner.team/stops/LMAstei2"], ["https://tec.openplanner.team/stops/LTOeg--2", "https://tec.openplanner.team/stops/LTOplac2"], ["https://tec.openplanner.team/stops/X809aeb", "https://tec.openplanner.team/stops/X850adb"], ["https://tec.openplanner.team/stops/H3br103a", "https://tec.openplanner.team/stops/H3br103b"], ["https://tec.openplanner.team/stops/LhSbruc1", "https://tec.openplanner.team/stops/LhSwind1"], ["https://tec.openplanner.team/stops/Cgocalv4", "https://tec.openplanner.team/stops/Cgofabr1"], ["https://tec.openplanner.team/stops/LSJ38--1", "https://tec.openplanner.team/stops/LSJgrae1"], ["https://tec.openplanner.team/stops/Ccycont1", "https://tec.openplanner.team/stops/Crbreve1"], ["https://tec.openplanner.team/stops/LCleg--1", "https://tec.openplanner.team/stops/LELeg--2"], ["https://tec.openplanner.team/stops/N552abb", "https://tec.openplanner.team/stops/N553acb"], ["https://tec.openplanner.team/stops/H5pe146a", "https://tec.openplanner.team/stops/H5pe146b"], ["https://tec.openplanner.team/stops/Bborppa1", "https://tec.openplanner.team/stops/Bborppa2"], ["https://tec.openplanner.team/stops/LBJapol1", "https://tec.openplanner.team/stops/LBJapol2"], ["https://tec.openplanner.team/stops/LlCgren1", "https://tec.openplanner.team/stops/LrAgier1"], ["https://tec.openplanner.team/stops/N505afb", "https://tec.openplanner.team/stops/N505aka"], ["https://tec.openplanner.team/stops/H1hw118b", "https://tec.openplanner.team/stops/H1hw123b"], ["https://tec.openplanner.team/stops/LrUbahn2", "https://tec.openplanner.team/stops/LrUweve1"], ["https://tec.openplanner.team/stops/X725bdb", "https://tec.openplanner.team/stops/X771ala"], ["https://tec.openplanner.team/stops/Lemambi1", "https://tec.openplanner.team/stops/Lemambi2"], ["https://tec.openplanner.team/stops/N516amb", "https://tec.openplanner.team/stops/N516apb"], ["https://tec.openplanner.team/stops/Lbocime1", "https://tec.openplanner.team/stops/Lbotige2"], ["https://tec.openplanner.team/stops/X904aga", "https://tec.openplanner.team/stops/X904aib"], ["https://tec.openplanner.team/stops/LBSpail3", "https://tec.openplanner.team/stops/LBSpail4"], ["https://tec.openplanner.team/stops/Cauromi1", "https://tec.openplanner.team/stops/Cauromi2"], ["https://tec.openplanner.team/stops/H2ca105b", "https://tec.openplanner.team/stops/H2ca116a"], ["https://tec.openplanner.team/stops/LsEdorf1", "https://tec.openplanner.team/stops/LsEdorf2"], ["https://tec.openplanner.team/stops/X945aca", "https://tec.openplanner.team/stops/X945acb"], ["https://tec.openplanner.team/stops/Bmalwop1", "https://tec.openplanner.team/stops/Bmalwop2"], ["https://tec.openplanner.team/stops/LeUgutl1", "https://tec.openplanner.team/stops/LeUgutl2"], ["https://tec.openplanner.team/stops/LWEcomp2", "https://tec.openplanner.team/stops/LWEfati2"], ["https://tec.openplanner.team/stops/Lstauna2", "https://tec.openplanner.team/stops/Lstbota3"], ["https://tec.openplanner.team/stops/N340aib", "https://tec.openplanner.team/stops/X301ara"], ["https://tec.openplanner.team/stops/X663ada", "https://tec.openplanner.team/stops/X663adb"], ["https://tec.openplanner.team/stops/H1wg131a", "https://tec.openplanner.team/stops/H1wg131b"], ["https://tec.openplanner.team/stops/LRItour1", "https://tec.openplanner.team/stops/LRItour2"], ["https://tec.openplanner.team/stops/X907aea", "https://tec.openplanner.team/stops/X907aeb"], ["https://tec.openplanner.team/stops/LkEbbl-2", "https://tec.openplanner.team/stops/LkEheyg2"], ["https://tec.openplanner.team/stops/X769aoa", "https://tec.openplanner.team/stops/X769aob"], ["https://tec.openplanner.team/stops/H1he101b", "https://tec.openplanner.team/stops/H1he105b"], ["https://tec.openplanner.team/stops/LLrc1992", "https://tec.openplanner.team/stops/LLrfrai1"], ["https://tec.openplanner.team/stops/X724aca", "https://tec.openplanner.team/stops/X724acb"], ["https://tec.openplanner.team/stops/Bhalker1", "https://tec.openplanner.team/stops/Bhalker2"], ["https://tec.openplanner.team/stops/H1pa100b", "https://tec.openplanner.team/stops/H1pd145a"], ["https://tec.openplanner.team/stops/Lprchat1", "https://tec.openplanner.team/stops/Lprsher1"], ["https://tec.openplanner.team/stops/Cgycime2", "https://tec.openplanner.team/stops/Cgysarr1"], ["https://tec.openplanner.team/stops/N525afa", "https://tec.openplanner.team/stops/N525aga"], ["https://tec.openplanner.team/stops/Bnivros2", "https://tec.openplanner.team/stops/Bnivvri2"], ["https://tec.openplanner.team/stops/H2jo161c", "https://tec.openplanner.team/stops/H2jo162a"], ["https://tec.openplanner.team/stops/Cmerlme2", "https://tec.openplanner.team/stops/Cmesncv3"], ["https://tec.openplanner.team/stops/H1wg124b", "https://tec.openplanner.team/stops/H1wg125a"], ["https://tec.openplanner.team/stops/H1hn205a", "https://tec.openplanner.team/stops/H1hn363a"], ["https://tec.openplanner.team/stops/Bwavpao1", "https://tec.openplanner.team/stops/Bwavpao2"], ["https://tec.openplanner.team/stops/LBNgarn2", "https://tec.openplanner.team/stops/LeUgutl2"], ["https://tec.openplanner.team/stops/H4bq154b", "https://tec.openplanner.team/stops/H4mb205b"], ["https://tec.openplanner.team/stops/X804ajb", "https://tec.openplanner.team/stops/X804aqb"], ["https://tec.openplanner.team/stops/Llabrou2", "https://tec.openplanner.team/stops/Lladete3"], ["https://tec.openplanner.team/stops/LBiberg2", "https://tec.openplanner.team/stops/LWEbr051"], ["https://tec.openplanner.team/stops/N553abb", "https://tec.openplanner.team/stops/N553aib"], ["https://tec.openplanner.team/stops/H1ms268b", "https://tec.openplanner.team/stops/H1ms308b"], ["https://tec.openplanner.team/stops/X746aka", "https://tec.openplanner.team/stops/X746ala"], ["https://tec.openplanner.team/stops/H1cv103a", "https://tec.openplanner.team/stops/H1gq153b"], ["https://tec.openplanner.team/stops/N308apa", "https://tec.openplanner.team/stops/N331agb"], ["https://tec.openplanner.team/stops/N308aka", "https://tec.openplanner.team/stops/N308ama"], ["https://tec.openplanner.team/stops/Bmrllgr1", "https://tec.openplanner.team/stops/Bmrlnce1"], ["https://tec.openplanner.team/stops/LTIdjal1", "https://tec.openplanner.team/stops/LTIpire2"], ["https://tec.openplanner.team/stops/N118aua", "https://tec.openplanner.team/stops/N118avc"], ["https://tec.openplanner.team/stops/H4be114a", "https://tec.openplanner.team/stops/H4be147b"], ["https://tec.openplanner.team/stops/X396adb", "https://tec.openplanner.team/stops/X397aba"], ["https://tec.openplanner.team/stops/H1go174a", "https://tec.openplanner.team/stops/H1mb137b"], ["https://tec.openplanner.team/stops/LFIinse1", "https://tec.openplanner.team/stops/LXoeg--3"], ["https://tec.openplanner.team/stops/Bhencha2", "https://tec.openplanner.team/stops/Bhptpla2"], ["https://tec.openplanner.team/stops/Bhanwav1", "https://tec.openplanner.team/stops/Bhanwav2"], ["https://tec.openplanner.team/stops/Bnivfro2", "https://tec.openplanner.team/stops/Bnivpla2"], ["https://tec.openplanner.team/stops/N103ada", "https://tec.openplanner.team/stops/N103adb"], ["https://tec.openplanner.team/stops/N517afb", "https://tec.openplanner.team/stops/N517aga"], ["https://tec.openplanner.team/stops/N529aba", "https://tec.openplanner.team/stops/N529aia"], ["https://tec.openplanner.team/stops/Lchsart1", "https://tec.openplanner.team/stops/Lchtche2"], ["https://tec.openplanner.team/stops/H4ty285c", "https://tec.openplanner.team/stops/H4ty287a"], ["https://tec.openplanner.team/stops/X663arb", "https://tec.openplanner.team/stops/X663awa"], ["https://tec.openplanner.team/stops/LHSfexh1", "https://tec.openplanner.team/stops/LHStrez2"], ["https://tec.openplanner.team/stops/H1gh144a", "https://tec.openplanner.team/stops/H1je212a"], ["https://tec.openplanner.team/stops/X713ajb", "https://tec.openplanner.team/stops/X713ajc"], ["https://tec.openplanner.team/stops/Cchba01", "https://tec.openplanner.team/stops/Cchba02"], ["https://tec.openplanner.team/stops/X618acb", "https://tec.openplanner.team/stops/X619afb"], ["https://tec.openplanner.team/stops/LkTgutl2", "https://tec.openplanner.team/stops/LwAkett2"], ["https://tec.openplanner.team/stops/Bchacen2", "https://tec.openplanner.team/stops/Bcrnnra1"], ["https://tec.openplanner.team/stops/Ctyhame2", "https://tec.openplanner.team/stops/Ctynamu2"], ["https://tec.openplanner.team/stops/Baudhan2", "https://tec.openplanner.team/stops/Baudstr1"], ["https://tec.openplanner.team/stops/N217aaa", "https://tec.openplanner.team/stops/N217aeb"], ["https://tec.openplanner.team/stops/N101aha", "https://tec.openplanner.team/stops/N101aua"], ["https://tec.openplanner.team/stops/Llgcorn1", "https://tec.openplanner.team/stops/Llgcorn4"], ["https://tec.openplanner.team/stops/LSOcime1", "https://tec.openplanner.team/stops/LSOcime2"], ["https://tec.openplanner.team/stops/LBhschu1", "https://tec.openplanner.team/stops/LBhschu2"], ["https://tec.openplanner.team/stops/N556aeb", "https://tec.openplanner.team/stops/N557aja"], ["https://tec.openplanner.team/stops/Cjuspin2", "https://tec.openplanner.team/stops/Cjuunio2"], ["https://tec.openplanner.team/stops/LPAbrun2", "https://tec.openplanner.team/stops/LWinavi1"], ["https://tec.openplanner.team/stops/Lhrmare3", "https://tec.openplanner.team/stops/Llgchan1"], ["https://tec.openplanner.team/stops/LRmkast*", "https://tec.openplanner.team/stops/LSIgehe2"], ["https://tec.openplanner.team/stops/Bfelequ1", "https://tec.openplanner.team/stops/Bsengma1"], ["https://tec.openplanner.team/stops/Cpcndce1", "https://tec.openplanner.team/stops/Cvvpotv1"], ["https://tec.openplanner.team/stops/LSkathe1", "https://tec.openplanner.team/stops/LSkcomb1"], ["https://tec.openplanner.team/stops/X746alb", "https://tec.openplanner.team/stops/X746amb"], ["https://tec.openplanner.team/stops/X615bga", "https://tec.openplanner.team/stops/X615bha"], ["https://tec.openplanner.team/stops/Ladfran1", "https://tec.openplanner.team/stops/Lvefabr2"], ["https://tec.openplanner.team/stops/N501cmc", "https://tec.openplanner.team/stops/N501ema"], ["https://tec.openplanner.team/stops/H1si162b", "https://tec.openplanner.team/stops/H1si164b"], ["https://tec.openplanner.team/stops/X717aab", "https://tec.openplanner.team/stops/X717aba"], ["https://tec.openplanner.team/stops/LJUxhen1", "https://tec.openplanner.team/stops/LPAchpl2"], ["https://tec.openplanner.team/stops/Becepri2", "https://tec.openplanner.team/stops/H2ec103b"], ["https://tec.openplanner.team/stops/Bbaucba1", "https://tec.openplanner.team/stops/Bbaulil2"], ["https://tec.openplanner.team/stops/Cmlbruy2", "https://tec.openplanner.team/stops/Cmlsana2"], ["https://tec.openplanner.team/stops/Llglamb1", "https://tec.openplanner.team/stops/Llglave1"], ["https://tec.openplanner.team/stops/N566ada", "https://tec.openplanner.team/stops/N566aeb"], ["https://tec.openplanner.team/stops/X714abb", "https://tec.openplanner.team/stops/X714acb"], ["https://tec.openplanner.team/stops/H1ba104a", "https://tec.openplanner.team/stops/H1ba120a"], ["https://tec.openplanner.team/stops/N102aca", "https://tec.openplanner.team/stops/N103ada"], ["https://tec.openplanner.team/stops/Bblaaca1", "https://tec.openplanner.team/stops/Bblafab1"], ["https://tec.openplanner.team/stops/Bhalgja1", "https://tec.openplanner.team/stops/Bhalker2"], ["https://tec.openplanner.team/stops/LHUcamp2", "https://tec.openplanner.team/stops/LHUzoni2"], ["https://tec.openplanner.team/stops/H3lr112a", "https://tec.openplanner.team/stops/H3lr116b"], ["https://tec.openplanner.team/stops/LLvferm2", "https://tec.openplanner.team/stops/NL81adb"], ["https://tec.openplanner.team/stops/Bwatcha2", "https://tec.openplanner.team/stops/Bwategp1"], ["https://tec.openplanner.team/stops/LBJlieg2", "https://tec.openplanner.team/stops/LBJplan2"], ["https://tec.openplanner.team/stops/N120abc", "https://tec.openplanner.team/stops/N302ada"], ["https://tec.openplanner.team/stops/H1ob331a", "https://tec.openplanner.team/stops/H1ob333a"], ["https://tec.openplanner.team/stops/H2ll192b", "https://tec.openplanner.team/stops/H2ll193b"], ["https://tec.openplanner.team/stops/X886abd", "https://tec.openplanner.team/stops/X886aha"], ["https://tec.openplanner.team/stops/H2mo120b", "https://tec.openplanner.team/stops/H2mo130c"], ["https://tec.openplanner.team/stops/H1pd141a", "https://tec.openplanner.team/stops/H1pd141b"], ["https://tec.openplanner.team/stops/H4co151a", "https://tec.openplanner.team/stops/H4pl112a"], ["https://tec.openplanner.team/stops/H4bu108a", "https://tec.openplanner.team/stops/H4ms166a"], ["https://tec.openplanner.team/stops/Llojeme2", "https://tec.openplanner.team/stops/Lloretr2"], ["https://tec.openplanner.team/stops/N549adb", "https://tec.openplanner.team/stops/N577aab"], ["https://tec.openplanner.team/stops/LMAgb--1", "https://tec.openplanner.team/stops/LMArave1"], ["https://tec.openplanner.team/stops/N559aca", "https://tec.openplanner.team/stops/N559aeb"], ["https://tec.openplanner.team/stops/X901aoa", "https://tec.openplanner.team/stops/X901aob"], ["https://tec.openplanner.team/stops/X741afa", "https://tec.openplanner.team/stops/X741afb"], ["https://tec.openplanner.team/stops/Bove4ko1", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://tec.openplanner.team/stops/Cmldeto1", "https://tec.openplanner.team/stops/Cmldupu2"], ["https://tec.openplanner.team/stops/X781aca", "https://tec.openplanner.team/stops/X781adb"], ["https://tec.openplanner.team/stops/Cdametr1", "https://tec.openplanner.team/stops/Cdametr2"], ["https://tec.openplanner.team/stops/LVIferm1", "https://tec.openplanner.team/stops/LVIferm2"], ["https://tec.openplanner.team/stops/Lmnbass2", "https://tec.openplanner.team/stops/Lmneg--2"], ["https://tec.openplanner.team/stops/LBNruns2", "https://tec.openplanner.team/stops/LGOmous1"], ["https://tec.openplanner.team/stops/H4by115a", "https://tec.openplanner.team/stops/H4by116b"], ["https://tec.openplanner.team/stops/N135axa", "https://tec.openplanner.team/stops/N135bea"], ["https://tec.openplanner.team/stops/LeUcroi2", "https://tec.openplanner.team/stops/LHthest2"], ["https://tec.openplanner.team/stops/X725bia", "https://tec.openplanner.team/stops/X767aca"], ["https://tec.openplanner.team/stops/Blthbss1", "https://tec.openplanner.team/stops/Blthbss2"], ["https://tec.openplanner.team/stops/H5gr135a", "https://tec.openplanner.team/stops/H5qu144a"], ["https://tec.openplanner.team/stops/Cgoathe2", "https://tec.openplanner.team/stops/CMfbru1"], ["https://tec.openplanner.team/stops/N539ada", "https://tec.openplanner.team/stops/N539adc"], ["https://tec.openplanner.team/stops/N351ama", "https://tec.openplanner.team/stops/N351amb"], ["https://tec.openplanner.team/stops/X614bda", "https://tec.openplanner.team/stops/X614bdb"], ["https://tec.openplanner.team/stops/Cctbinc2", "https://tec.openplanner.team/stops/Cprrvil2"], ["https://tec.openplanner.team/stops/Lsmjalh2", "https://tec.openplanner.team/stops/Lsmrwan1"], ["https://tec.openplanner.team/stops/N217aab", "https://tec.openplanner.team/stops/N217abb"], ["https://tec.openplanner.team/stops/LSevitu2", "https://tec.openplanner.team/stops/LSevitu4"], ["https://tec.openplanner.team/stops/Lendonh2", "https://tec.openplanner.team/stops/Lenhouc2"], ["https://tec.openplanner.team/stops/H1je217b", "https://tec.openplanner.team/stops/H1je219a"], ["https://tec.openplanner.team/stops/N540afa", "https://tec.openplanner.team/stops/N540aha"], ["https://tec.openplanner.team/stops/Cctchea2", "https://tec.openplanner.team/stops/NC11aja"], ["https://tec.openplanner.team/stops/N261aca", "https://tec.openplanner.team/stops/N261afa"], ["https://tec.openplanner.team/stops/X923aqa", "https://tec.openplanner.team/stops/X923aqb"], ["https://tec.openplanner.team/stops/Cwgpatr1", "https://tec.openplanner.team/stops/Cwgpatr2"], ["https://tec.openplanner.team/stops/LBAbooz1", "https://tec.openplanner.team/stops/LBApak2*"], ["https://tec.openplanner.team/stops/H5bl124a", "https://tec.openplanner.team/stops/H5bl143a"], ["https://tec.openplanner.team/stops/H4ty285b", "https://tec.openplanner.team/stops/H4ty285c"], ["https://tec.openplanner.team/stops/X831aaa", "https://tec.openplanner.team/stops/X831ada"], ["https://tec.openplanner.team/stops/Lstchas1", "https://tec.openplanner.team/stops/Lstchas2"], ["https://tec.openplanner.team/stops/Cmehame2", "https://tec.openplanner.team/stops/Cmewaya2"], ["https://tec.openplanner.team/stops/Loubonc2", "https://tec.openplanner.team/stops/Loucorn1"], ["https://tec.openplanner.team/stops/N536aga", "https://tec.openplanner.team/stops/N580aga"], ["https://tec.openplanner.team/stops/H2pr119a", "https://tec.openplanner.team/stops/H2pr119b"], ["https://tec.openplanner.team/stops/X811ama", "https://tec.openplanner.team/stops/X811amb"], ["https://tec.openplanner.team/stops/N512aka", "https://tec.openplanner.team/stops/N512ama"], ["https://tec.openplanner.team/stops/N568aba", "https://tec.openplanner.team/stops/N568aeb"], ["https://tec.openplanner.team/stops/Cchbaza1", "https://tec.openplanner.team/stops/Cchdelf2"], ["https://tec.openplanner.team/stops/N573aaa", "https://tec.openplanner.team/stops/N573amb"], ["https://tec.openplanner.team/stops/X826aca", "https://tec.openplanner.team/stops/X826adb"], ["https://tec.openplanner.team/stops/H1gh145a", "https://tec.openplanner.team/stops/H1gh157b"], ["https://tec.openplanner.team/stops/Lvccime2", "https://tec.openplanner.team/stops/Lvcpost2"], ["https://tec.openplanner.team/stops/N506beb", "https://tec.openplanner.team/stops/N506bja"], ["https://tec.openplanner.team/stops/Bperqui1", "https://tec.openplanner.team/stops/Bperwil1"], ["https://tec.openplanner.team/stops/N501bla", "https://tec.openplanner.team/stops/N501blb"], ["https://tec.openplanner.team/stops/LBieg--3", "https://tec.openplanner.team/stops/LBivill2"], ["https://tec.openplanner.team/stops/LESamos1", "https://tec.openplanner.team/stops/LEScarr1"], ["https://tec.openplanner.team/stops/LDAcite1", "https://tec.openplanner.team/stops/LDAcite2"], ["https://tec.openplanner.team/stops/N501cnb", "https://tec.openplanner.team/stops/N501cob"], ["https://tec.openplanner.team/stops/LeLdorf1", "https://tec.openplanner.team/stops/LeLdorf2"], ["https://tec.openplanner.team/stops/X801boa", "https://tec.openplanner.team/stops/X801bpa"], ["https://tec.openplanner.team/stops/Csa4mai2", "https://tec.openplanner.team/stops/Csasncb1"], ["https://tec.openplanner.team/stops/LAugara1", "https://tec.openplanner.team/stops/LWRpl--2"], ["https://tec.openplanner.team/stops/H2bh121b", "https://tec.openplanner.team/stops/H2fa108b"], ["https://tec.openplanner.team/stops/Cmocalv1", "https://tec.openplanner.team/stops/Cmomoul3"], ["https://tec.openplanner.team/stops/Bgemcro2", "https://tec.openplanner.team/stops/N522aea"], ["https://tec.openplanner.team/stops/H1ms290a", "https://tec.openplanner.team/stops/H1ms299a"], ["https://tec.openplanner.team/stops/H1ca105a", "https://tec.openplanner.team/stops/H1ca186b"], ["https://tec.openplanner.team/stops/Beceres2", "https://tec.openplanner.team/stops/H3br100b"], ["https://tec.openplanner.team/stops/Ccodubo2", "https://tec.openplanner.team/stops/Ccogibr1"], ["https://tec.openplanner.team/stops/LOTcarr1", "https://tec.openplanner.team/stops/LOTdelv1"], ["https://tec.openplanner.team/stops/X636aca", "https://tec.openplanner.team/stops/X636acb"], ["https://tec.openplanner.team/stops/Cmyland1", "https://tec.openplanner.team/stops/Cmyland2"], ["https://tec.openplanner.team/stops/X901ara", "https://tec.openplanner.team/stops/X901arb"], ["https://tec.openplanner.team/stops/X651aaa", "https://tec.openplanner.team/stops/X651aab"], ["https://tec.openplanner.team/stops/Bnivzep1", "https://tec.openplanner.team/stops/Bnivzep2"], ["https://tec.openplanner.team/stops/X908aaa", "https://tec.openplanner.team/stops/X908afa"], ["https://tec.openplanner.team/stops/X925ana", "https://tec.openplanner.team/stops/X925apa"], ["https://tec.openplanner.team/stops/LoDkoll1", "https://tec.openplanner.team/stops/LoDkoll2"], ["https://tec.openplanner.team/stops/H4do108a", "https://tec.openplanner.team/stops/H4mo192a"], ["https://tec.openplanner.team/stops/LREheyd2", "https://tec.openplanner.team/stops/LREsaul2"], ["https://tec.openplanner.team/stops/LaMmark2", "https://tec.openplanner.team/stops/LaMpark2"], ["https://tec.openplanner.team/stops/X879ana", "https://tec.openplanner.team/stops/X879anb"], ["https://tec.openplanner.team/stops/LETeg--1", "https://tec.openplanner.team/stops/LMIeg--2"], ["https://tec.openplanner.team/stops/LdUespe4", "https://tec.openplanner.team/stops/LoDscha1"], ["https://tec.openplanner.team/stops/Lvehout1", "https://tec.openplanner.team/stops/Lvehout2"], ["https://tec.openplanner.team/stops/X806adb", "https://tec.openplanner.team/stops/X873acb"], ["https://tec.openplanner.team/stops/LSpcarr2", "https://tec.openplanner.team/stops/LSpogne1"], ["https://tec.openplanner.team/stops/N584abb", "https://tec.openplanner.team/stops/N584cab"], ["https://tec.openplanner.team/stops/LLmvand1", "https://tec.openplanner.team/stops/LLmvand2"], ["https://tec.openplanner.team/stops/X756adb", "https://tec.openplanner.team/stops/X756aea"], ["https://tec.openplanner.team/stops/Llgfoss1", "https://tec.openplanner.team/stops/Llgfoss2"], ["https://tec.openplanner.team/stops/Ccupdes2", "https://tec.openplanner.team/stops/Ccupdes3"], ["https://tec.openplanner.team/stops/LaTcolo1", "https://tec.openplanner.team/stops/LmDelek2"], ["https://tec.openplanner.team/stops/LTNegli2", "https://tec.openplanner.team/stops/LTNmont2"], ["https://tec.openplanner.team/stops/N543chb", "https://tec.openplanner.team/stops/N543cnb"], ["https://tec.openplanner.team/stops/Bboufsm2", "https://tec.openplanner.team/stops/Bbstfch2"], ["https://tec.openplanner.team/stops/Cfocant2", "https://tec.openplanner.team/stops/Cfowall1"], ["https://tec.openplanner.team/stops/X616abb", "https://tec.openplanner.team/stops/X616acb"], ["https://tec.openplanner.team/stops/LhSgete1", "https://tec.openplanner.team/stops/LhSkirc2"], ["https://tec.openplanner.team/stops/LDAbois2", "https://tec.openplanner.team/stops/LDAcite1"], ["https://tec.openplanner.team/stops/LeLcrem1", "https://tec.openplanner.team/stops/LwYsour3"], ["https://tec.openplanner.team/stops/N149aaa", "https://tec.openplanner.team/stops/N149abb"], ["https://tec.openplanner.team/stops/Cci4092", "https://tec.openplanner.team/stops/Cctbois4"], ["https://tec.openplanner.team/stops/N545aca", "https://tec.openplanner.team/stops/N545acb"], ["https://tec.openplanner.team/stops/H1ms267a", "https://tec.openplanner.team/stops/H1ms267b"], ["https://tec.openplanner.team/stops/Cfrempe2", "https://tec.openplanner.team/stops/Cfrmonu5"], ["https://tec.openplanner.team/stops/H1gh168a", "https://tec.openplanner.team/stops/H1gh171b"], ["https://tec.openplanner.team/stops/LPRcasi1", "https://tec.openplanner.team/stops/LTRlonh1"], ["https://tec.openplanner.team/stops/LOLvill1", "https://tec.openplanner.team/stops/LOLvill2"], ["https://tec.openplanner.team/stops/X754acb", "https://tec.openplanner.team/stops/X754aqb"], ["https://tec.openplanner.team/stops/N548aga", "https://tec.openplanner.team/stops/N548aha"], ["https://tec.openplanner.team/stops/LeUclou2", "https://tec.openplanner.team/stops/LrAknop1"], ["https://tec.openplanner.team/stops/LENpt--1", "https://tec.openplanner.team/stops/LENsent1"], ["https://tec.openplanner.team/stops/X637apa", "https://tec.openplanner.team/stops/X637ara"], ["https://tec.openplanner.team/stops/Cprvsar1", "https://tec.openplanner.team/stops/NC11ara"], ["https://tec.openplanner.team/stops/N564ada", "https://tec.openplanner.team/stops/N585aia"], ["https://tec.openplanner.team/stops/LCPpech2", "https://tec.openplanner.team/stops/LCPpech5"], ["https://tec.openplanner.team/stops/H1as154a", "https://tec.openplanner.team/stops/H1nv324a"], ["https://tec.openplanner.team/stops/Bgnvoha1", "https://tec.openplanner.team/stops/Bgnvoha3"], ["https://tec.openplanner.team/stops/H4mo138b", "https://tec.openplanner.team/stops/H4mo185a"], ["https://tec.openplanner.team/stops/Bquebut1", "https://tec.openplanner.team/stops/Bquecar1"], ["https://tec.openplanner.team/stops/LLStrid1", "https://tec.openplanner.team/stops/LLStrid2"], ["https://tec.openplanner.team/stops/Llgaba-1", "https://tec.openplanner.team/stops/Llgaba-2"], ["https://tec.openplanner.team/stops/X633adc", "https://tec.openplanner.team/stops/X633akb"], ["https://tec.openplanner.team/stops/H1bo107a", "https://tec.openplanner.team/stops/H1hi123b"], ["https://tec.openplanner.team/stops/X989abb", "https://tec.openplanner.team/stops/X994ada"], ["https://tec.openplanner.team/stops/X661acb", "https://tec.openplanner.team/stops/X661aha"], ["https://tec.openplanner.team/stops/H5rx100a", "https://tec.openplanner.team/stops/H5rx122a"], ["https://tec.openplanner.team/stops/LLUcdoy1", "https://tec.openplanner.team/stops/LLUdoya1"], ["https://tec.openplanner.team/stops/Llglimb2", "https://tec.openplanner.team/stops/Llgpire1"], ["https://tec.openplanner.team/stops/X982caa", "https://tec.openplanner.team/stops/X982cbb"], ["https://tec.openplanner.team/stops/LaMgeme*", "https://tec.openplanner.team/stops/LaMpark1"], ["https://tec.openplanner.team/stops/X615asb", "https://tec.openplanner.team/stops/X615atb"], ["https://tec.openplanner.team/stops/LlgLEOP2", "https://tec.openplanner.team/stops/Llgmarc2"], ["https://tec.openplanner.team/stops/LXhhaka1", "https://tec.openplanner.team/stops/LXhmara2"], ["https://tec.openplanner.team/stops/LMIcamp1", "https://tec.openplanner.team/stops/LMIpast1"], ["https://tec.openplanner.team/stops/N542aoa", "https://tec.openplanner.team/stops/N542aqb"], ["https://tec.openplanner.team/stops/N539axb", "https://tec.openplanner.team/stops/N539ayb"], ["https://tec.openplanner.team/stops/N524acb", "https://tec.openplanner.team/stops/N524adb"], ["https://tec.openplanner.team/stops/N351ana", "https://tec.openplanner.team/stops/N351anb"], ["https://tec.openplanner.team/stops/N501gba", "https://tec.openplanner.team/stops/N501lxa"], ["https://tec.openplanner.team/stops/N503aaa", "https://tec.openplanner.team/stops/N503adb"], ["https://tec.openplanner.team/stops/X607aha", "https://tec.openplanner.team/stops/X647aaa"], ["https://tec.openplanner.team/stops/N543aub", "https://tec.openplanner.team/stops/N543cga"], ["https://tec.openplanner.team/stops/H2hg147b", "https://tec.openplanner.team/stops/H2hg158a"], ["https://tec.openplanner.team/stops/Bhenasc2", "https://tec.openplanner.team/stops/Bquegen1"], ["https://tec.openplanner.team/stops/N315aaa", "https://tec.openplanner.team/stops/X361afa"], ["https://tec.openplanner.team/stops/X602acb", "https://tec.openplanner.team/stops/X602adb"], ["https://tec.openplanner.team/stops/X927abb", "https://tec.openplanner.team/stops/X927ada"], ["https://tec.openplanner.team/stops/N513aha", "https://tec.openplanner.team/stops/N513bfb"], ["https://tec.openplanner.team/stops/X840ada", "https://tec.openplanner.team/stops/X840afa"], ["https://tec.openplanner.team/stops/X818agb", "https://tec.openplanner.team/stops/X818apa"], ["https://tec.openplanner.team/stops/N539bea", "https://tec.openplanner.team/stops/N539bgb"], ["https://tec.openplanner.team/stops/X398ada", "https://tec.openplanner.team/stops/X398afa"], ["https://tec.openplanner.team/stops/Btiegma1", "https://tec.openplanner.team/stops/Btiegoo1"], ["https://tec.openplanner.team/stops/X638afa", "https://tec.openplanner.team/stops/X638afb"], ["https://tec.openplanner.team/stops/H1ba110a", "https://tec.openplanner.team/stops/H1hh118b"], ["https://tec.openplanner.team/stops/LBXhacb2", "https://tec.openplanner.team/stops/LMEeg--2"], ["https://tec.openplanner.team/stops/LPcforg1", "https://tec.openplanner.team/stops/LPcforg2"], ["https://tec.openplanner.team/stops/Ctrecol4", "https://tec.openplanner.team/stops/Ctrecol5"], ["https://tec.openplanner.team/stops/X991aja", "https://tec.openplanner.team/stops/X991ala"], ["https://tec.openplanner.team/stops/N231aca", "https://tec.openplanner.team/stops/N231adb"], ["https://tec.openplanner.team/stops/Ccobinc1", "https://tec.openplanner.team/stops/Csoplac2"], ["https://tec.openplanner.team/stops/Livpost2", "https://tec.openplanner.team/stops/Livrame1"], ["https://tec.openplanner.team/stops/Ccucora1", "https://tec.openplanner.team/stops/Ccucora2"], ["https://tec.openplanner.team/stops/Bwatath1", "https://tec.openplanner.team/stops/Bwatdmo1"], ["https://tec.openplanner.team/stops/H2hp124b", "https://tec.openplanner.team/stops/H2hp124c"], ["https://tec.openplanner.team/stops/LbAhull2", "https://tec.openplanner.team/stops/LhLbalt2"], ["https://tec.openplanner.team/stops/LTIsupe1", "https://tec.openplanner.team/stops/LTIsupe2"], ["https://tec.openplanner.team/stops/Cmlcent2", "https://tec.openplanner.team/stops/CMparc1"], ["https://tec.openplanner.team/stops/LHuetat2", "https://tec.openplanner.team/stops/LHurobi1"], ["https://tec.openplanner.team/stops/LFMkrin2", "https://tec.openplanner.team/stops/LFMkrut4"], ["https://tec.openplanner.team/stops/N311aca", "https://tec.openplanner.team/stops/N360aca"], ["https://tec.openplanner.team/stops/H1ca104a", "https://tec.openplanner.team/stops/H1sd347a"], ["https://tec.openplanner.team/stops/Caiegli1", "https://tec.openplanner.team/stops/Caircen1"], ["https://tec.openplanner.team/stops/N501ldb", "https://tec.openplanner.team/stops/N501lob"], ["https://tec.openplanner.team/stops/N141apb", "https://tec.openplanner.team/stops/N426aab"], ["https://tec.openplanner.team/stops/X887aaa", "https://tec.openplanner.team/stops/X887aab"], ["https://tec.openplanner.team/stops/X888aea", "https://tec.openplanner.team/stops/X888afa"], ["https://tec.openplanner.team/stops/N531ajb", "https://tec.openplanner.team/stops/N534bya"], ["https://tec.openplanner.team/stops/Ccaegli1", "https://tec.openplanner.team/stops/Ccaegli2"], ["https://tec.openplanner.team/stops/Clddeve2", "https://tec.openplanner.team/stops/Cmoecol1"], ["https://tec.openplanner.team/stops/Bgerprg2", "https://tec.openplanner.team/stops/Bgrhpos1"], ["https://tec.openplanner.team/stops/LFyanto1", "https://tec.openplanner.team/stops/LFyWarc1"], ["https://tec.openplanner.team/stops/Bohngai2", "https://tec.openplanner.team/stops/Bohnmon1"], ["https://tec.openplanner.team/stops/N512abb", "https://tec.openplanner.team/stops/N512aca"], ["https://tec.openplanner.team/stops/N104akb", "https://tec.openplanner.team/stops/N106abb"], ["https://tec.openplanner.team/stops/Bsomtnd2", "https://tec.openplanner.team/stops/N584afa"], ["https://tec.openplanner.team/stops/Bnodeco1", "https://tec.openplanner.team/stops/Bnodegl1"], ["https://tec.openplanner.team/stops/H4be104a", "https://tec.openplanner.team/stops/H4be112a"], ["https://tec.openplanner.team/stops/H1cu123a", "https://tec.openplanner.team/stops/H1cu130b"], ["https://tec.openplanner.team/stops/Bnivath2", "https://tec.openplanner.team/stops/Bnivga71"], ["https://tec.openplanner.team/stops/X789ada", "https://tec.openplanner.team/stops/X789aja"], ["https://tec.openplanner.team/stops/Loucham2", "https://tec.openplanner.team/stops/Louroos2"], ["https://tec.openplanner.team/stops/X992aca", "https://tec.openplanner.team/stops/X992acb"], ["https://tec.openplanner.team/stops/X878aba", "https://tec.openplanner.team/stops/X878aca"], ["https://tec.openplanner.team/stops/H1qg138c", "https://tec.openplanner.team/stops/H1qp150b"], ["https://tec.openplanner.team/stops/N331aga", "https://tec.openplanner.team/stops/N331agb"], ["https://tec.openplanner.team/stops/Cmtrbla1", "https://tec.openplanner.team/stops/Cmttrie2"], ["https://tec.openplanner.team/stops/Bwavcin1", "https://tec.openplanner.team/stops/Bwavcin2"], ["https://tec.openplanner.team/stops/LHUsart1", "https://tec.openplanner.team/stops/LHUsart2"], ["https://tec.openplanner.team/stops/N544agb", "https://tec.openplanner.team/stops/N545acb"], ["https://tec.openplanner.team/stops/LmNlieb1", "https://tec.openplanner.team/stops/X685apa"], ["https://tec.openplanner.team/stops/Cmogrbu1", "https://tec.openplanner.team/stops/Cmogrbu2"], ["https://tec.openplanner.team/stops/N121acb", "https://tec.openplanner.team/stops/N121ada"], ["https://tec.openplanner.team/stops/N161afa", "https://tec.openplanner.team/stops/N161afb"], ["https://tec.openplanner.team/stops/LVbsurr2", "https://tec.openplanner.team/stops/NL77ama"], ["https://tec.openplanner.team/stops/H1ba110b", "https://tec.openplanner.team/stops/H1gh371b"], ["https://tec.openplanner.team/stops/Csefour1", "https://tec.openplanner.team/stops/NH01aqa"], ["https://tec.openplanner.team/stops/N308bhb", "https://tec.openplanner.team/stops/N308bia"], ["https://tec.openplanner.team/stops/X637ajb", "https://tec.openplanner.team/stops/X638aea"], ["https://tec.openplanner.team/stops/LrAkape2", "https://tec.openplanner.team/stops/LrAmuhl2"], ["https://tec.openplanner.team/stops/Cmmegli1", "https://tec.openplanner.team/stops/Cmmegli3"], ["https://tec.openplanner.team/stops/H1ho140a", "https://tec.openplanner.team/stops/H1ho140b"], ["https://tec.openplanner.team/stops/N544aba", "https://tec.openplanner.team/stops/N550ajb"], ["https://tec.openplanner.team/stops/H2ll180a", "https://tec.openplanner.team/stops/H2ll188a"], ["https://tec.openplanner.team/stops/X807acb", "https://tec.openplanner.team/stops/X833aaa"], ["https://tec.openplanner.team/stops/LSReg--1", "https://tec.openplanner.team/stops/LTrgibe2"], ["https://tec.openplanner.team/stops/LTHec--2", "https://tec.openplanner.team/stops/LTHroch2"], ["https://tec.openplanner.team/stops/N225aaa", "https://tec.openplanner.team/stops/N225aca"], ["https://tec.openplanner.team/stops/LAuchau1", "https://tec.openplanner.team/stops/LAufech1"], ["https://tec.openplanner.team/stops/X765aca", "https://tec.openplanner.team/stops/X765adb"], ["https://tec.openplanner.team/stops/X661apb", "https://tec.openplanner.team/stops/X661aqa"], ["https://tec.openplanner.team/stops/N533ahb", "https://tec.openplanner.team/stops/N533aia"], ["https://tec.openplanner.team/stops/LNCcedr2", "https://tec.openplanner.team/stops/LNClila2"], ["https://tec.openplanner.team/stops/Lhrpaix2", "https://tec.openplanner.team/stops/Llgatel2"], ["https://tec.openplanner.team/stops/Bnivaba1", "https://tec.openplanner.team/stops/Bnivmet1"], ["https://tec.openplanner.team/stops/N501ana", "https://tec.openplanner.team/stops/N501aqb"], ["https://tec.openplanner.team/stops/X821aaa", "https://tec.openplanner.team/stops/X823aab"], ["https://tec.openplanner.team/stops/X908aja", "https://tec.openplanner.team/stops/X908ajb"], ["https://tec.openplanner.team/stops/LRemorr3", "https://tec.openplanner.team/stops/LRemorr4"], ["https://tec.openplanner.team/stops/Bneeegl1", "https://tec.openplanner.team/stops/Bneesan1"], ["https://tec.openplanner.team/stops/LFNfo161", "https://tec.openplanner.team/stops/LFNmonu2"], ["https://tec.openplanner.team/stops/X898amb", "https://tec.openplanner.team/stops/X898ana"], ["https://tec.openplanner.team/stops/NC14aaa", "https://tec.openplanner.team/stops/NC14ana"], ["https://tec.openplanner.team/stops/X342aeb", "https://tec.openplanner.team/stops/X342afb"], ["https://tec.openplanner.team/stops/LTEkerk2", "https://tec.openplanner.team/stops/LTEzinn1"], ["https://tec.openplanner.team/stops/LBPboir1", "https://tec.openplanner.team/stops/LBSchpl2"], ["https://tec.openplanner.team/stops/LBTwauc1", "https://tec.openplanner.team/stops/LCHsaul1"], ["https://tec.openplanner.team/stops/X718ajb", "https://tec.openplanner.team/stops/X733aia"], ["https://tec.openplanner.team/stops/Canlemo1", "https://tec.openplanner.team/stops/Canlemo2"], ["https://tec.openplanner.team/stops/X670aba", "https://tec.openplanner.team/stops/X670abb"], ["https://tec.openplanner.team/stops/LmDkape1", "https://tec.openplanner.team/stops/LmDkoel2"], ["https://tec.openplanner.team/stops/LAUhost2", "https://tec.openplanner.team/stops/LAUneuv5"], ["https://tec.openplanner.team/stops/Lalecmo1", "https://tec.openplanner.team/stops/Laltrap1"], ["https://tec.openplanner.team/stops/X903afa", "https://tec.openplanner.team/stops/X904aaa"], ["https://tec.openplanner.team/stops/H5el111a", "https://tec.openplanner.team/stops/H5el111b"], ["https://tec.openplanner.team/stops/Cdametr2", "https://tec.openplanner.team/stops/Cdaptca4"], ["https://tec.openplanner.team/stops/NL76adb", "https://tec.openplanner.team/stops/NL76ara"], ["https://tec.openplanner.team/stops/N230ada", "https://tec.openplanner.team/stops/N230agb"], ["https://tec.openplanner.team/stops/X714aeb", "https://tec.openplanner.team/stops/X715ahb"], ["https://tec.openplanner.team/stops/LWDplac2", "https://tec.openplanner.team/stops/LWDsieg1"], ["https://tec.openplanner.team/stops/Ccypetv1", "https://tec.openplanner.team/stops/Ccypetv2"], ["https://tec.openplanner.team/stops/LCOeg--2", "https://tec.openplanner.team/stops/Lpebier1"], ["https://tec.openplanner.team/stops/Bnivasa1", "https://tec.openplanner.team/stops/Bnivasa2"], ["https://tec.openplanner.team/stops/H4ka178a", "https://tec.openplanner.team/stops/H4ru235a"], ["https://tec.openplanner.team/stops/LFlabba1", "https://tec.openplanner.team/stops/LSkkeri2"], ["https://tec.openplanner.team/stops/Bcbqegl1", "https://tec.openplanner.team/stops/Bcbqufo1"], ["https://tec.openplanner.team/stops/NH21aca", "https://tec.openplanner.team/stops/NH21acb"], ["https://tec.openplanner.team/stops/LDpulve2", "https://tec.openplanner.team/stops/LFMveur2"], ["https://tec.openplanner.team/stops/N110agb", "https://tec.openplanner.team/stops/N124aba"], ["https://tec.openplanner.team/stops/Crebrux2", "https://tec.openplanner.team/stops/Creha762"], ["https://tec.openplanner.team/stops/LVLcent1", "https://tec.openplanner.team/stops/LVLzoni2"], ["https://tec.openplanner.team/stops/Cfmsncb2", "https://tec.openplanner.team/stops/Ctrsema1"], ["https://tec.openplanner.team/stops/LVPduvi2", "https://tec.openplanner.team/stops/LVPeg--1"], ["https://tec.openplanner.team/stops/Cjudest2", "https://tec.openplanner.team/stops/Cloauln1"], ["https://tec.openplanner.team/stops/X901aaa", "https://tec.openplanner.team/stops/X901bsb"], ["https://tec.openplanner.team/stops/Cgofleu2", "https://tec.openplanner.team/stops/Cgofleu3"], ["https://tec.openplanner.team/stops/H1ba112a", "https://tec.openplanner.team/stops/H1hh112a"], ["https://tec.openplanner.team/stops/Cgzha621", "https://tec.openplanner.team/stops/Cgzpjeu2"], ["https://tec.openplanner.team/stops/Bgerprg2", "https://tec.openplanner.team/stops/NB33aea"], ["https://tec.openplanner.team/stops/LMOlens2", "https://tec.openplanner.team/stops/LMOpiss2"], ["https://tec.openplanner.team/stops/X723aga", "https://tec.openplanner.team/stops/X723ala"], ["https://tec.openplanner.team/stops/H4lp120b", "https://tec.openplanner.team/stops/H4lp121a"], ["https://tec.openplanner.team/stops/N576afb", "https://tec.openplanner.team/stops/N576agb"], ["https://tec.openplanner.team/stops/NC23afb", "https://tec.openplanner.team/stops/NC23aga"], ["https://tec.openplanner.team/stops/N550acc", "https://tec.openplanner.team/stops/N550ada"], ["https://tec.openplanner.team/stops/LBahaut2", "https://tec.openplanner.team/stops/LBapeup2"], ["https://tec.openplanner.team/stops/Bzlucam1", "https://tec.openplanner.team/stops/Bzluqga2"], ["https://tec.openplanner.team/stops/Lmlchev2", "https://tec.openplanner.team/stops/Lmldama2"], ["https://tec.openplanner.team/stops/LDLbois2", "https://tec.openplanner.team/stops/LDLheid1"], ["https://tec.openplanner.team/stops/X767abb", "https://tec.openplanner.team/stops/X767aca"], ["https://tec.openplanner.team/stops/Baeggar2", "https://tec.openplanner.team/stops/NR38abb"], ["https://tec.openplanner.team/stops/H4be103a", "https://tec.openplanner.team/stops/H4be104b"], ["https://tec.openplanner.team/stops/H1mm125c", "https://tec.openplanner.team/stops/H1mm125d"], ["https://tec.openplanner.team/stops/H2an109a", "https://tec.openplanner.team/stops/H2an109b"], ["https://tec.openplanner.team/stops/LHegame1", "https://tec.openplanner.team/stops/LOUherm1"], ["https://tec.openplanner.team/stops/X898aca", "https://tec.openplanner.team/stops/X898ada"], ["https://tec.openplanner.team/stops/H4pq117b", "https://tec.openplanner.team/stops/H4pq120a"], ["https://tec.openplanner.team/stops/X952aca", "https://tec.openplanner.team/stops/X952aib"], ["https://tec.openplanner.team/stops/H1je211a", "https://tec.openplanner.team/stops/H1je369b"], ["https://tec.openplanner.team/stops/X939aab", "https://tec.openplanner.team/stops/X940aec"], ["https://tec.openplanner.team/stops/Buccdch1", "https://tec.openplanner.team/stops/Buccdst2"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Lghalli1"], ["https://tec.openplanner.team/stops/Bneepne2", "https://tec.openplanner.team/stops/Bneervc2"], ["https://tec.openplanner.team/stops/Llggram1", "https://tec.openplanner.team/stops/Llgstvi3"], ["https://tec.openplanner.team/stops/LTiespe1", "https://tec.openplanner.team/stops/LTigera2"], ["https://tec.openplanner.team/stops/H1mh116a", "https://tec.openplanner.team/stops/H1qv111b"], ["https://tec.openplanner.team/stops/Ccuphai4", "https://tec.openplanner.team/stops/Ccuseba2"], ["https://tec.openplanner.team/stops/LAUbour2", "https://tec.openplanner.team/stops/LAUtism1"], ["https://tec.openplanner.team/stops/H1mk108c", "https://tec.openplanner.team/stops/H1mk117a"], ["https://tec.openplanner.team/stops/N501ega", "https://tec.openplanner.team/stops/N501klb"], ["https://tec.openplanner.team/stops/H1og132b", "https://tec.openplanner.team/stops/H5wo133a"], ["https://tec.openplanner.team/stops/Ctrecol2", "https://tec.openplanner.team/stops/Ctrplac1"], ["https://tec.openplanner.team/stops/LBDcarr1", "https://tec.openplanner.team/stops/LVEbors1"], ["https://tec.openplanner.team/stops/Cgymast1", "https://tec.openplanner.team/stops/Cgymast2"], ["https://tec.openplanner.team/stops/LFymare3", "https://tec.openplanner.team/stops/LON21--2"], ["https://tec.openplanner.team/stops/X660aca", "https://tec.openplanner.team/stops/X672aca"], ["https://tec.openplanner.team/stops/N215aaa", "https://tec.openplanner.team/stops/N261agb"], ["https://tec.openplanner.team/stops/Crcfdom2", "https://tec.openplanner.team/stops/Crcrlf1"], ["https://tec.openplanner.team/stops/H5bs102d", "https://tec.openplanner.team/stops/H5pe145a"], ["https://tec.openplanner.team/stops/X901aja", "https://tec.openplanner.team/stops/X901apa"], ["https://tec.openplanner.team/stops/Cbufron2", "https://tec.openplanner.team/stops/Cfnegli1"], ["https://tec.openplanner.team/stops/H1hh109b", "https://tec.openplanner.team/stops/H1hh110a"], ["https://tec.openplanner.team/stops/Ldineuf1", "https://tec.openplanner.team/stops/Ldipiss1"], ["https://tec.openplanner.team/stops/X661awa", "https://tec.openplanner.team/stops/X661awb"], ["https://tec.openplanner.team/stops/X888acb", "https://tec.openplanner.team/stops/X899aja"], ["https://tec.openplanner.team/stops/H4de114a", "https://tec.openplanner.team/stops/H5rx103b"], ["https://tec.openplanner.team/stops/X982aca", "https://tec.openplanner.team/stops/X982acb"], ["https://tec.openplanner.team/stops/H4ty381b", "https://tec.openplanner.team/stops/H4ty382b"], ["https://tec.openplanner.team/stops/Cmechnd2", "https://tec.openplanner.team/stops/Csabrun1"], ["https://tec.openplanner.team/stops/N558amc", "https://tec.openplanner.team/stops/N558ana"], ["https://tec.openplanner.team/stops/H1br126a", "https://tec.openplanner.team/stops/H1br126b"], ["https://tec.openplanner.team/stops/H4re225a", "https://tec.openplanner.team/stops/H5la177b"], ["https://tec.openplanner.team/stops/X948asa", "https://tec.openplanner.team/stops/X948asb"], ["https://tec.openplanner.team/stops/N534amh", "https://tec.openplanner.team/stops/N543aga"], ["https://tec.openplanner.team/stops/NL57ahb", "https://tec.openplanner.team/stops/NL57akb"], ["https://tec.openplanner.team/stops/Cgoboll3", "https://tec.openplanner.team/stops/Cgoulb1"], ["https://tec.openplanner.team/stops/Llgblon2", "https://tec.openplanner.team/stops/Llgcont1"], ["https://tec.openplanner.team/stops/N569aaa", "https://tec.openplanner.team/stops/N569anb"], ["https://tec.openplanner.team/stops/LBegare1", "https://tec.openplanner.team/stops/LBevill2"], ["https://tec.openplanner.team/stops/X370adb", "https://tec.openplanner.team/stops/X850aba"], ["https://tec.openplanner.team/stops/NR21aab", "https://tec.openplanner.team/stops/NR38afb"], ["https://tec.openplanner.team/stops/N206acb", "https://tec.openplanner.team/stops/N207acb"], ["https://tec.openplanner.team/stops/X979aia", "https://tec.openplanner.team/stops/X979aja"], ["https://tec.openplanner.team/stops/X606aab", "https://tec.openplanner.team/stops/X607aha"], ["https://tec.openplanner.team/stops/LRRlimi1", "https://tec.openplanner.team/stops/LRRroth2"], ["https://tec.openplanner.team/stops/Blhumpo1", "https://tec.openplanner.team/stops/Blhumpo3"], ["https://tec.openplanner.team/stops/H2jo161c", "https://tec.openplanner.team/stops/H2lh125b"], ["https://tec.openplanner.team/stops/Cmmadma2", "https://tec.openplanner.team/stops/Cmmpast2"], ["https://tec.openplanner.team/stops/H4ty264a", "https://tec.openplanner.team/stops/H4ty290b"], ["https://tec.openplanner.team/stops/Bsgihmo1", "https://tec.openplanner.team/stops/Bsgipmo2"], ["https://tec.openplanner.team/stops/X725aya", "https://tec.openplanner.team/stops/X725aza"], ["https://tec.openplanner.team/stops/Bwaak102", "https://tec.openplanner.team/stops/Bwaakap2"], ["https://tec.openplanner.team/stops/H4cp103a", "https://tec.openplanner.team/stops/H4tp143b"], ["https://tec.openplanner.team/stops/X614ava", "https://tec.openplanner.team/stops/X615aqa"], ["https://tec.openplanner.team/stops/Cnahous2", "https://tec.openplanner.team/stops/Cnaplbu2"], ["https://tec.openplanner.team/stops/X351aba", "https://tec.openplanner.team/stops/X351abb"], ["https://tec.openplanner.team/stops/H4fr139a", "https://tec.openplanner.team/stops/H4fr145a"], ["https://tec.openplanner.team/stops/H1fy119a", "https://tec.openplanner.team/stops/H1fy143a"], ["https://tec.openplanner.team/stops/X801aqa", "https://tec.openplanner.team/stops/X801coa"], ["https://tec.openplanner.team/stops/X769aea", "https://tec.openplanner.team/stops/X769ahb"], ["https://tec.openplanner.team/stops/LElcent1", "https://tec.openplanner.team/stops/LWZponh2"], ["https://tec.openplanner.team/stops/X636bca", "https://tec.openplanner.team/stops/X636bcb"], ["https://tec.openplanner.team/stops/Bsrbbas1", "https://tec.openplanner.team/stops/Bsrbbas2"], ["https://tec.openplanner.team/stops/X547aka", "https://tec.openplanner.team/stops/X576aea"], ["https://tec.openplanner.team/stops/H4wi168a", "https://tec.openplanner.team/stops/H4wi168b"], ["https://tec.openplanner.team/stops/N508acb", "https://tec.openplanner.team/stops/N516aaa"], ["https://tec.openplanner.team/stops/Croplom2", "https://tec.openplanner.team/stops/Croplom7"], ["https://tec.openplanner.team/stops/H1to154a", "https://tec.openplanner.team/stops/H1to155a"], ["https://tec.openplanner.team/stops/N134acb", "https://tec.openplanner.team/stops/N135bib"], ["https://tec.openplanner.team/stops/H4ne144b", "https://tec.openplanner.team/stops/H4ne144c"], ["https://tec.openplanner.team/stops/N534ava", "https://tec.openplanner.team/stops/N534bea"], ["https://tec.openplanner.team/stops/LCPecli2", "https://tec.openplanner.team/stops/LGmcent1"], ["https://tec.openplanner.team/stops/H1br121a", "https://tec.openplanner.team/stops/H1em102a"], ["https://tec.openplanner.team/stops/Bnivall1", "https://tec.openplanner.team/stops/Bnivpar1"], ["https://tec.openplanner.team/stops/LOcgdro3", "https://tec.openplanner.team/stops/LOchalo1"], ["https://tec.openplanner.team/stops/X342abb", "https://tec.openplanner.team/stops/X354ada"], ["https://tec.openplanner.team/stops/LBieg--3", "https://tec.openplanner.team/stops/LHCcoul1"], ["https://tec.openplanner.team/stops/H4tg162b", "https://tec.openplanner.team/stops/H4tg163a"], ["https://tec.openplanner.team/stops/LwYbrkr1", "https://tec.openplanner.team/stops/LwYkirc2"], ["https://tec.openplanner.team/stops/N501eab", "https://tec.openplanner.team/stops/N501kqa"], ["https://tec.openplanner.team/stops/Lfhdonn1", "https://tec.openplanner.team/stops/Lfhhosp2"], ["https://tec.openplanner.team/stops/LHUgole1", "https://tec.openplanner.team/stops/LHUpsar2"], ["https://tec.openplanner.team/stops/H2jo163a", "https://tec.openplanner.team/stops/H2jo163c"], ["https://tec.openplanner.team/stops/Bmarcha2", "https://tec.openplanner.team/stops/Bwagpco1"], ["https://tec.openplanner.team/stops/H2ma210a", "https://tec.openplanner.team/stops/H2ma263a"], ["https://tec.openplanner.team/stops/LSNchen1", "https://tec.openplanner.team/stops/LSNchen2"], ["https://tec.openplanner.team/stops/H4pe124a", "https://tec.openplanner.team/stops/H4pe127a"], ["https://tec.openplanner.team/stops/X630aaa", "https://tec.openplanner.team/stops/X638ada"], ["https://tec.openplanner.team/stops/Llgdarc1", "https://tec.openplanner.team/stops/Llghec-3"], ["https://tec.openplanner.team/stops/LeUhutt1", "https://tec.openplanner.team/stops/LeUwetz2"], ["https://tec.openplanner.team/stops/LMAptne1", "https://tec.openplanner.team/stops/LMAptne2"], ["https://tec.openplanner.team/stops/Crs74em1", "https://tec.openplanner.team/stops/Crs74em4"], ["https://tec.openplanner.team/stops/LLrc_ip4", "https://tec.openplanner.team/stops/LLrc1652"], ["https://tec.openplanner.team/stops/Lbbviad2", "https://tec.openplanner.team/stops/Lbbviad4"], ["https://tec.openplanner.team/stops/X991afa", "https://tec.openplanner.team/stops/X991aga"], ["https://tec.openplanner.team/stops/LPLhout1", "https://tec.openplanner.team/stops/LPLhout2"], ["https://tec.openplanner.team/stops/X801aua", "https://tec.openplanner.team/stops/X801avb"], ["https://tec.openplanner.team/stops/Lsnferr1", "https://tec.openplanner.team/stops/Lsnmala1"], ["https://tec.openplanner.team/stops/Barqhro2", "https://tec.openplanner.team/stops/Bfelada2"], ["https://tec.openplanner.team/stops/X658afa", "https://tec.openplanner.team/stops/X659aib"], ["https://tec.openplanner.team/stops/X808ajb", "https://tec.openplanner.team/stops/X809aeb"], ["https://tec.openplanner.team/stops/LJAchat2", "https://tec.openplanner.team/stops/LMechpl1"], ["https://tec.openplanner.team/stops/Cmaegli1", "https://tec.openplanner.team/stops/Cmaegli2"], ["https://tec.openplanner.team/stops/NH03afa", "https://tec.openplanner.team/stops/NH03agb"], ["https://tec.openplanner.team/stops/N352afb", "https://tec.openplanner.team/stops/N355aea"], ["https://tec.openplanner.team/stops/X316aca", "https://tec.openplanner.team/stops/X364acb"], ["https://tec.openplanner.team/stops/Cgoathe1", "https://tec.openplanner.team/stops/Cgohnda1"], ["https://tec.openplanner.team/stops/Llgfont4", "https://tec.openplanner.team/stops/Llgware2"], ["https://tec.openplanner.team/stops/H4ga164a", "https://tec.openplanner.team/stops/H4ga414a"], ["https://tec.openplanner.team/stops/H1bd101a", "https://tec.openplanner.team/stops/H1bd103a"], ["https://tec.openplanner.team/stops/LHCandr1", "https://tec.openplanner.team/stops/LHCruyf1"], ["https://tec.openplanner.team/stops/H1cu119a", "https://tec.openplanner.team/stops/H1cu119b"], ["https://tec.openplanner.team/stops/H5at135a", "https://tec.openplanner.team/stops/H5at139a"], ["https://tec.openplanner.team/stops/X621ada", "https://tec.openplanner.team/stops/X621aea"], ["https://tec.openplanner.team/stops/H1cv101a", "https://tec.openplanner.team/stops/H1gq153b"], ["https://tec.openplanner.team/stops/H2ma203a", "https://tec.openplanner.team/stops/H2ma263a"], ["https://tec.openplanner.team/stops/LTIpire1", "https://tec.openplanner.team/stops/LTIpora2"], ["https://tec.openplanner.team/stops/X717afb", "https://tec.openplanner.team/stops/X717age"], ["https://tec.openplanner.team/stops/LdE179-2", "https://tec.openplanner.team/stops/LdEkreu2"], ["https://tec.openplanner.team/stops/X398agb", "https://tec.openplanner.team/stops/X999adb"], ["https://tec.openplanner.team/stops/H1so132a", "https://tec.openplanner.team/stops/H1so139d"], ["https://tec.openplanner.team/stops/Bwavdmo1", "https://tec.openplanner.team/stops/Bwavdmo2"], ["https://tec.openplanner.team/stops/LlgguilA", "https://tec.openplanner.team/stops/LlgguilB"], ["https://tec.openplanner.team/stops/H4bo116a", "https://tec.openplanner.team/stops/H4bo178b"], ["https://tec.openplanner.team/stops/Bvircen2", "https://tec.openplanner.team/stops/Bvirpos2"], ["https://tec.openplanner.team/stops/N540acd", "https://tec.openplanner.team/stops/N540ana"], ["https://tec.openplanner.team/stops/N506bna", "https://tec.openplanner.team/stops/N506bnb"], ["https://tec.openplanner.team/stops/LPLhest1", "https://tec.openplanner.team/stops/LPLhout1"], ["https://tec.openplanner.team/stops/LVAakke1", "https://tec.openplanner.team/stops/LVApark1"], ["https://tec.openplanner.team/stops/H1mq199b", "https://tec.openplanner.team/stops/H5la177a"], ["https://tec.openplanner.team/stops/H1an100b", "https://tec.openplanner.team/stops/H1an101b"], ["https://tec.openplanner.team/stops/X926aea", "https://tec.openplanner.team/stops/X926afa"], ["https://tec.openplanner.team/stops/LLrbecc2", "https://tec.openplanner.team/stops/LLrelec1"], ["https://tec.openplanner.team/stops/H1er107a", "https://tec.openplanner.team/stops/H1pe130b"], ["https://tec.openplanner.team/stops/NL81aga", "https://tec.openplanner.team/stops/NL82agb"], ["https://tec.openplanner.team/stops/LBrbern2", "https://tec.openplanner.team/stops/LMAwavr2"], ["https://tec.openplanner.team/stops/LaLkirc*", "https://tec.openplanner.team/stops/LmAkirc2"], ["https://tec.openplanner.team/stops/LRmha262", "https://tec.openplanner.team/stops/LRmhage8"], ["https://tec.openplanner.team/stops/H4cr110a", "https://tec.openplanner.team/stops/H4pp121b"], ["https://tec.openplanner.team/stops/H4os221a", "https://tec.openplanner.team/stops/H4os221c"], ["https://tec.openplanner.team/stops/H2gy113a", "https://tec.openplanner.team/stops/H2gy113b"], ["https://tec.openplanner.team/stops/N232bpa", "https://tec.openplanner.team/stops/N232bpb"], ["https://tec.openplanner.team/stops/LTestat2", "https://tec.openplanner.team/stops/NL35add"], ["https://tec.openplanner.team/stops/LCocasc2", "https://tec.openplanner.team/stops/LRChote1"], ["https://tec.openplanner.team/stops/H4fr385a", "https://tec.openplanner.team/stops/H4fr393a"], ["https://tec.openplanner.team/stops/N501bya", "https://tec.openplanner.team/stops/N501chc"], ["https://tec.openplanner.team/stops/H2pe160a", "https://tec.openplanner.team/stops/H2sv221a"], ["https://tec.openplanner.team/stops/X818amb", "https://tec.openplanner.team/stops/X818ava"], ["https://tec.openplanner.team/stops/LAo170-2", "https://tec.openplanner.team/stops/LTPpres1"], ["https://tec.openplanner.team/stops/X718ada", "https://tec.openplanner.team/stops/X719ada"], ["https://tec.openplanner.team/stops/H4hx112b", "https://tec.openplanner.team/stops/H4wa149b"], ["https://tec.openplanner.team/stops/LHMgrun1", "https://tec.openplanner.team/stops/LHMgrun2"], ["https://tec.openplanner.team/stops/Crojume1", "https://tec.openplanner.team/stops/Crojume2"], ["https://tec.openplanner.team/stops/X952aea", "https://tec.openplanner.team/stops/X952afb"], ["https://tec.openplanner.team/stops/X897afa", "https://tec.openplanner.team/stops/X897aga"], ["https://tec.openplanner.team/stops/Crocona1", "https://tec.openplanner.team/stops/Crorpai1"], ["https://tec.openplanner.team/stops/Cfcbosq2", "https://tec.openplanner.team/stops/Cfccuch2"], ["https://tec.openplanner.team/stops/LSPmalc1", "https://tec.openplanner.team/stops/LSZstoc1"], ["https://tec.openplanner.team/stops/H1bu143a", "https://tec.openplanner.team/stops/H1bu143b"], ["https://tec.openplanner.team/stops/Cmgbras1", "https://tec.openplanner.team/stops/Cmgpn1"], ["https://tec.openplanner.team/stops/LORcomb1", "https://tec.openplanner.team/stops/LORmont1"], ["https://tec.openplanner.team/stops/Bjodpce2", "https://tec.openplanner.team/stops/NR21aeb"], ["https://tec.openplanner.team/stops/N117aza", "https://tec.openplanner.team/stops/N117azb"], ["https://tec.openplanner.team/stops/H2sv216b", "https://tec.openplanner.team/stops/H2sv259a"], ["https://tec.openplanner.team/stops/Ceregl1", "https://tec.openplanner.team/stops/Cvrhab21"], ["https://tec.openplanner.team/stops/LLecolo1", "https://tec.openplanner.team/stops/LLedoya1"], ["https://tec.openplanner.team/stops/H4rm108a", "https://tec.openplanner.team/stops/H4rm108b"], ["https://tec.openplanner.team/stops/LOthiro2", "https://tec.openplanner.team/stops/NL57aib"], ["https://tec.openplanner.team/stops/LHAleru2", "https://tec.openplanner.team/stops/LHApthe1"], ["https://tec.openplanner.team/stops/Barcpre1", "https://tec.openplanner.team/stops/Bbsgrve1"], ["https://tec.openplanner.team/stops/LWaccom2", "https://tec.openplanner.team/stops/LWahetr2"], ["https://tec.openplanner.team/stops/Lghleon1", "https://tec.openplanner.team/stops/Lghmaha1"], ["https://tec.openplanner.team/stops/H1no140a", "https://tec.openplanner.team/stops/H1no141b"], ["https://tec.openplanner.team/stops/X359aad", "https://tec.openplanner.team/stops/X371aca"], ["https://tec.openplanner.team/stops/H4ld126a", "https://tec.openplanner.team/stops/H4ld126b"], ["https://tec.openplanner.team/stops/X769ama", "https://tec.openplanner.team/stops/X769amb"], ["https://tec.openplanner.team/stops/Lrecite2", "https://tec.openplanner.team/stops/Lrecroi1"], ["https://tec.openplanner.team/stops/H4ka181b", "https://tec.openplanner.team/stops/H4ty325a"], ["https://tec.openplanner.team/stops/X904ada", "https://tec.openplanner.team/stops/X904adb"], ["https://tec.openplanner.team/stops/X823aaa", "https://tec.openplanner.team/stops/X823aea"], ["https://tec.openplanner.team/stops/N550aja", "https://tec.openplanner.team/stops/N550ala"], ["https://tec.openplanner.team/stops/X759aaa", "https://tec.openplanner.team/stops/X837aka"], ["https://tec.openplanner.team/stops/H4ln127a", "https://tec.openplanner.team/stops/H4ne142a"], ["https://tec.openplanner.team/stops/H2ca103b", "https://tec.openplanner.team/stops/H2ca108a"], ["https://tec.openplanner.team/stops/X651aeb", "https://tec.openplanner.team/stops/X651afa"], ["https://tec.openplanner.team/stops/LCxcham1", "https://tec.openplanner.team/stops/LCxcour1"], ["https://tec.openplanner.team/stops/H4mo163a", "https://tec.openplanner.team/stops/H4mo184b"], ["https://tec.openplanner.team/stops/X877afb", "https://tec.openplanner.team/stops/X877aga"], ["https://tec.openplanner.team/stops/N202aha", "https://tec.openplanner.team/stops/N202ahb"], ["https://tec.openplanner.team/stops/LGe4bra1", "https://tec.openplanner.team/stops/LGepeck1"], ["https://tec.openplanner.team/stops/LPLcite1", "https://tec.openplanner.team/stops/LPLstri2"], ["https://tec.openplanner.team/stops/LAMfrai2", "https://tec.openplanner.team/stops/LAMhaut2"], ["https://tec.openplanner.team/stops/X620aea", "https://tec.openplanner.team/stops/X620aeb"], ["https://tec.openplanner.team/stops/H1bi100a", "https://tec.openplanner.team/stops/H1bi100b"], ["https://tec.openplanner.team/stops/N349abb", "https://tec.openplanner.team/stops/X398afa"], ["https://tec.openplanner.team/stops/X639aea", "https://tec.openplanner.team/stops/X644aca"], ["https://tec.openplanner.team/stops/LLOhest2", "https://tec.openplanner.team/stops/LVttarg2"], ["https://tec.openplanner.team/stops/LSdcent1", "https://tec.openplanner.team/stops/LSdsa451"], ["https://tec.openplanner.team/stops/N533aca", "https://tec.openplanner.team/stops/N533aga"], ["https://tec.openplanner.team/stops/X768adb", "https://tec.openplanner.team/stops/X768aha"], ["https://tec.openplanner.team/stops/H5qu141a", "https://tec.openplanner.team/stops/H5qu149a"], ["https://tec.openplanner.team/stops/H2ll186b", "https://tec.openplanner.team/stops/H2sv259b"], ["https://tec.openplanner.team/stops/H4ar102b", "https://tec.openplanner.team/stops/H4pl114b"], ["https://tec.openplanner.team/stops/Bptegna1", "https://tec.openplanner.team/stops/Bptegna2"], ["https://tec.openplanner.team/stops/LWDsott3", "https://tec.openplanner.team/stops/LWDsott4"], ["https://tec.openplanner.team/stops/X767aga", "https://tec.openplanner.team/stops/X767aha"], ["https://tec.openplanner.team/stops/Bhalgar1", "https://tec.openplanner.team/stops/Bhalkrk1"], ["https://tec.openplanner.team/stops/N506aha", "https://tec.openplanner.team/stops/N506ara"], ["https://tec.openplanner.team/stops/Cgxmaco1", "https://tec.openplanner.team/stops/Cgxmaco2"], ["https://tec.openplanner.team/stops/N538aib", "https://tec.openplanner.team/stops/N538alb"], ["https://tec.openplanner.team/stops/Lanfran1", "https://tec.openplanner.team/stops/Lansarm2"], ["https://tec.openplanner.team/stops/H1sy144d", "https://tec.openplanner.team/stops/H1sy145b"], ["https://tec.openplanner.team/stops/H4lz117b", "https://tec.openplanner.team/stops/H4lz122a"], ["https://tec.openplanner.team/stops/X750bpa", "https://tec.openplanner.team/stops/X750bpb"], ["https://tec.openplanner.team/stops/LeLcrem2", "https://tec.openplanner.team/stops/LSoprom1"], ["https://tec.openplanner.team/stops/Ccocoup2", "https://tec.openplanner.team/stops/Ccorian2"], ["https://tec.openplanner.team/stops/Lmihale2", "https://tec.openplanner.team/stops/Lmimc--2"], ["https://tec.openplanner.team/stops/Bjaneco2", "https://tec.openplanner.team/stops/Bjanfer1"], ["https://tec.openplanner.team/stops/Cgoboll3", "https://tec.openplanner.team/stops/Craplac3"], ["https://tec.openplanner.team/stops/X666aib", "https://tec.openplanner.team/stops/X666akb"], ["https://tec.openplanner.team/stops/X910aaa", "https://tec.openplanner.team/stops/X910aba"], ["https://tec.openplanner.team/stops/H1eo106b", "https://tec.openplanner.team/stops/H1ju119b"], ["https://tec.openplanner.team/stops/X734aja", "https://tec.openplanner.team/stops/X734akb"], ["https://tec.openplanner.team/stops/H2se107a", "https://tec.openplanner.team/stops/H2se110a"], ["https://tec.openplanner.team/stops/Cjubert2", "https://tec.openplanner.team/stops/CMbert2"], ["https://tec.openplanner.team/stops/X733ahb", "https://tec.openplanner.team/stops/X734ajb"], ["https://tec.openplanner.team/stops/LSPpelz2", "https://tec.openplanner.team/stops/LSPwarf2"], ["https://tec.openplanner.team/stops/Cmtduch1", "https://tec.openplanner.team/stops/Cmtduch2"], ["https://tec.openplanner.team/stops/X919aja", "https://tec.openplanner.team/stops/X919ala"], ["https://tec.openplanner.team/stops/X595aeb", "https://tec.openplanner.team/stops/X713abb"], ["https://tec.openplanner.team/stops/LETtemp2", "https://tec.openplanner.team/stops/Lremonu2"], ["https://tec.openplanner.team/stops/LWLeg--3", "https://tec.openplanner.team/stops/LWLtamb1"], ["https://tec.openplanner.team/stops/X809abb", "https://tec.openplanner.team/stops/X809acb"], ["https://tec.openplanner.team/stops/H1hr122a", "https://tec.openplanner.team/stops/H3so174b"], ["https://tec.openplanner.team/stops/Cbiferm1", "https://tec.openplanner.team/stops/Cthgend2"], ["https://tec.openplanner.team/stops/LrAneue1", "https://tec.openplanner.team/stops/LrAneue2"], ["https://tec.openplanner.team/stops/H4pl112b", "https://tec.openplanner.team/stops/H4pl121a"], ["https://tec.openplanner.team/stops/X925aea", "https://tec.openplanner.team/stops/X982cca"], ["https://tec.openplanner.team/stops/Clgrsoc2", "https://tec.openplanner.team/stops/Csscrot2"], ["https://tec.openplanner.team/stops/LMalamb4", "https://tec.openplanner.team/stops/LTolijn*"], ["https://tec.openplanner.team/stops/Bwavdmo4", "https://tec.openplanner.team/stops/Bwavvpr2"], ["https://tec.openplanner.team/stops/N352aeb", "https://tec.openplanner.team/stops/N367ada"], ["https://tec.openplanner.team/stops/X801bdc", "https://tec.openplanner.team/stops/X801cka"], ["https://tec.openplanner.team/stops/Ccojaur1", "https://tec.openplanner.team/stops/Ccojaur2"], ["https://tec.openplanner.team/stops/Bnivspi1", "https://tec.openplanner.team/stops/Bnivspi2"], ["https://tec.openplanner.team/stops/Bbiefon2", "https://tec.openplanner.team/stops/Bbiesbi1"], ["https://tec.openplanner.team/stops/H4cl112a", "https://tec.openplanner.team/stops/H4cl112b"], ["https://tec.openplanner.team/stops/Bblaall2", "https://tec.openplanner.team/stops/Bblarbe2"], ["https://tec.openplanner.team/stops/H2mg151a", "https://tec.openplanner.team/stops/H2mg153a"], ["https://tec.openplanner.team/stops/Cclbarb1", "https://tec.openplanner.team/stops/Cclchap2"], ["https://tec.openplanner.team/stops/N511aub", "https://tec.openplanner.team/stops/N511avb"], ["https://tec.openplanner.team/stops/X672afb", "https://tec.openplanner.team/stops/X672ala"], ["https://tec.openplanner.team/stops/X651aga", "https://tec.openplanner.team/stops/X659ayb"], ["https://tec.openplanner.team/stops/Cpccpas1", "https://tec.openplanner.team/stops/Cpcwaut2"], ["https://tec.openplanner.team/stops/X937ajb", "https://tec.openplanner.team/stops/X952aaa"], ["https://tec.openplanner.team/stops/X860aba", "https://tec.openplanner.team/stops/X860abb"], ["https://tec.openplanner.team/stops/Cnawari1", "https://tec.openplanner.team/stops/Cnawari2"], ["https://tec.openplanner.team/stops/Cmmgadi2", "https://tec.openplanner.team/stops/Cmmlong1"], ["https://tec.openplanner.team/stops/X917ajb", "https://tec.openplanner.team/stops/X919ana"], ["https://tec.openplanner.team/stops/X398afa", "https://tec.openplanner.team/stops/X398aha"], ["https://tec.openplanner.team/stops/Bblmcel1", "https://tec.openplanner.team/stops/Bblmpro2"], ["https://tec.openplanner.team/stops/X805akb", "https://tec.openplanner.team/stops/X869aeb"], ["https://tec.openplanner.team/stops/Bnilspe2", "https://tec.openplanner.team/stops/Bnilspe3"], ["https://tec.openplanner.team/stops/Lfhhoul1", "https://tec.openplanner.team/stops/Lfhhoul2"], ["https://tec.openplanner.team/stops/X606aaa", "https://tec.openplanner.team/stops/X606aba"], ["https://tec.openplanner.team/stops/Boplcsj1", "https://tec.openplanner.team/stops/Boplcsj3"], ["https://tec.openplanner.team/stops/LARarge2", "https://tec.openplanner.team/stops/LHAvall1"], ["https://tec.openplanner.team/stops/Bwlhppg3", "https://tec.openplanner.team/stops/Bwlhppg4"], ["https://tec.openplanner.team/stops/N501cmb", "https://tec.openplanner.team/stops/N501cua"], ["https://tec.openplanner.team/stops/X769aca", "https://tec.openplanner.team/stops/X769ahb"], ["https://tec.openplanner.team/stops/N308aza", "https://tec.openplanner.team/stops/N308azb"], ["https://tec.openplanner.team/stops/LBCaube1", "https://tec.openplanner.team/stops/LBCaube2"], ["https://tec.openplanner.team/stops/Blemkap2", "https://tec.openplanner.team/stops/Blemwob1"], ["https://tec.openplanner.team/stops/X736aab", "https://tec.openplanner.team/stops/X753aab"], ["https://tec.openplanner.team/stops/LlOdrei1", "https://tec.openplanner.team/stops/LnDkreu2"], ["https://tec.openplanner.team/stops/Bgnvfai2", "https://tec.openplanner.team/stops/Blhupcl1"], ["https://tec.openplanner.team/stops/N551agc", "https://tec.openplanner.team/stops/N551arb"], ["https://tec.openplanner.team/stops/N542aeb", "https://tec.openplanner.team/stops/N542afb"], ["https://tec.openplanner.team/stops/X738aba", "https://tec.openplanner.team/stops/X738aca"], ["https://tec.openplanner.team/stops/Ccybouc1", "https://tec.openplanner.team/stops/Ccybouc3"], ["https://tec.openplanner.team/stops/X901baa", "https://tec.openplanner.team/stops/X901bma"], ["https://tec.openplanner.team/stops/N528abb", "https://tec.openplanner.team/stops/N528aka"], ["https://tec.openplanner.team/stops/N232abb", "https://tec.openplanner.team/stops/N232ana"], ["https://tec.openplanner.team/stops/H2sb224a", "https://tec.openplanner.team/stops/H2sb239d"], ["https://tec.openplanner.team/stops/X982ala", "https://tec.openplanner.team/stops/X982amb"], ["https://tec.openplanner.team/stops/LTRfend1", "https://tec.openplanner.team/stops/LTRfend2"], ["https://tec.openplanner.team/stops/X741aeb", "https://tec.openplanner.team/stops/X758aka"], ["https://tec.openplanner.team/stops/X804bzb", "https://tec.openplanner.team/stops/X805aba"], ["https://tec.openplanner.team/stops/Blhunys3", "https://tec.openplanner.team/stops/Blhupri1"], ["https://tec.openplanner.team/stops/X902acb", "https://tec.openplanner.team/stops/X902aqa"], ["https://tec.openplanner.team/stops/LATgill1", "https://tec.openplanner.team/stops/LHUfali3"], ["https://tec.openplanner.team/stops/Cgorobe1", "https://tec.openplanner.team/stops/Cgorobe2"], ["https://tec.openplanner.team/stops/N385aea", "https://tec.openplanner.team/stops/N385aeb"], ["https://tec.openplanner.team/stops/LBPboir2", "https://tec.openplanner.team/stops/LBPeg--2"], ["https://tec.openplanner.team/stops/X547acb", "https://tec.openplanner.team/stops/X561abb"], ["https://tec.openplanner.team/stops/LMImc--1", "https://tec.openplanner.team/stops/LMIpast1"], ["https://tec.openplanner.team/stops/Bjodcar1", "https://tec.openplanner.team/stops/Bjodcar2"], ["https://tec.openplanner.team/stops/H1ba117b", "https://tec.openplanner.team/stops/H1qu104a"], ["https://tec.openplanner.team/stops/X623aaa", "https://tec.openplanner.team/stops/X623akb"], ["https://tec.openplanner.team/stops/Cgynoir1", "https://tec.openplanner.team/stops/Cgynoir2"], ["https://tec.openplanner.team/stops/N514aca", "https://tec.openplanner.team/stops/N514acb"], ["https://tec.openplanner.team/stops/Llgform1", "https://tec.openplanner.team/stops/Llggill2"], ["https://tec.openplanner.team/stops/X717aha", "https://tec.openplanner.team/stops/X717ahb"], ["https://tec.openplanner.team/stops/LBmbara2", "https://tec.openplanner.team/stops/LJAbell4"], ["https://tec.openplanner.team/stops/X601aud", "https://tec.openplanner.team/stops/X601axa"], ["https://tec.openplanner.team/stops/H1br127b", "https://tec.openplanner.team/stops/H3bo101a"], ["https://tec.openplanner.team/stops/N536aob", "https://tec.openplanner.team/stops/N562bna"], ["https://tec.openplanner.team/stops/X595ada", "https://tec.openplanner.team/stops/X595adb"], ["https://tec.openplanner.team/stops/NL68aeb", "https://tec.openplanner.team/stops/NL68afb"], ["https://tec.openplanner.team/stops/X911aaa", "https://tec.openplanner.team/stops/X911avb"], ["https://tec.openplanner.team/stops/H4my123a", "https://tec.openplanner.team/stops/H4pe128b"], ["https://tec.openplanner.team/stops/Cctptsa1", "https://tec.openplanner.team/stops/Cctvict3"], ["https://tec.openplanner.team/stops/N501dqa", "https://tec.openplanner.team/stops/N501kga"], ["https://tec.openplanner.team/stops/Cmlaili2", "https://tec.openplanner.team/stops/Cmlhauc1"], ["https://tec.openplanner.team/stops/Bohnegl1", "https://tec.openplanner.team/stops/Bohnegl2"], ["https://tec.openplanner.team/stops/N501dbb", "https://tec.openplanner.team/stops/N501ddb"], ["https://tec.openplanner.team/stops/H1mc126a", "https://tec.openplanner.team/stops/H1mc128a"], ["https://tec.openplanner.team/stops/H1gc123a", "https://tec.openplanner.team/stops/H1go174a"], ["https://tec.openplanner.team/stops/H2lc146a", "https://tec.openplanner.team/stops/H2lc169b"], ["https://tec.openplanner.team/stops/LDOandr3", "https://tec.openplanner.team/stops/LDObran2"], ["https://tec.openplanner.team/stops/H1ci102a", "https://tec.openplanner.team/stops/H1ci104a"], ["https://tec.openplanner.team/stops/LHdkenn3", "https://tec.openplanner.team/stops/LVnflox2"], ["https://tec.openplanner.team/stops/X615aha", "https://tec.openplanner.team/stops/X615brb"], ["https://tec.openplanner.team/stops/Lbobuil2", "https://tec.openplanner.team/stops/Lbocomm2"], ["https://tec.openplanner.team/stops/X955aaa", "https://tec.openplanner.team/stops/X955aab"], ["https://tec.openplanner.team/stops/LSTamer2", "https://tec.openplanner.team/stops/LTPlegr2"], ["https://tec.openplanner.team/stops/LWechea1", "https://tec.openplanner.team/stops/LWechpl1"], ["https://tec.openplanner.team/stops/N232aca", "https://tec.openplanner.team/stops/N232acb"], ["https://tec.openplanner.team/stops/N505ajb", "https://tec.openplanner.team/stops/N512awb"], ["https://tec.openplanner.team/stops/Bchacen2", "https://tec.openplanner.team/stops/Bchamco1"], ["https://tec.openplanner.team/stops/X760aab", "https://tec.openplanner.team/stops/X786aja"], ["https://tec.openplanner.team/stops/X922ajb", "https://tec.openplanner.team/stops/X922ama"], ["https://tec.openplanner.team/stops/LDLbaye2", "https://tec.openplanner.team/stops/LGMhadr1"], ["https://tec.openplanner.team/stops/X597amb", "https://tec.openplanner.team/stops/X597aqb"], ["https://tec.openplanner.team/stops/Bbldass1", "https://tec.openplanner.team/stops/Bbldass2"], ["https://tec.openplanner.team/stops/N536aba", "https://tec.openplanner.team/stops/N564afb"], ["https://tec.openplanner.team/stops/X804acb", "https://tec.openplanner.team/stops/X804amb"], ["https://tec.openplanner.team/stops/Lgdec--1", "https://tec.openplanner.team/stops/Lgdec--2"], ["https://tec.openplanner.team/stops/Bbststa1", "https://tec.openplanner.team/stops/Bbststa2"], ["https://tec.openplanner.team/stops/N551aja", "https://tec.openplanner.team/stops/N551ajb"], ["https://tec.openplanner.team/stops/H4ty306a", "https://tec.openplanner.team/stops/H4ty320b"], ["https://tec.openplanner.team/stops/N135aec", "https://tec.openplanner.team/stops/N136ada"], ["https://tec.openplanner.team/stops/Lalwaro1", "https://tec.openplanner.team/stops/LXhcite2"], ["https://tec.openplanner.team/stops/LSGeg--1", "https://tec.openplanner.team/stops/LSGsolo1"], ["https://tec.openplanner.team/stops/Lalhomb1", "https://tec.openplanner.team/stops/Lancoop2"], ["https://tec.openplanner.team/stops/N232bea", "https://tec.openplanner.team/stops/N232beb"], ["https://tec.openplanner.team/stops/LCn4---1", "https://tec.openplanner.team/stops/LLUg82-1"], ["https://tec.openplanner.team/stops/LNIhaut2", "https://tec.openplanner.team/stops/LSZnive2"], ["https://tec.openplanner.team/stops/X818aka", "https://tec.openplanner.team/stops/X818akb"], ["https://tec.openplanner.team/stops/H4ne133b", "https://tec.openplanner.team/stops/H4ne145b"], ["https://tec.openplanner.team/stops/NC24aia", "https://tec.openplanner.team/stops/NC24ajb"], ["https://tec.openplanner.team/stops/NH01ara", "https://tec.openplanner.team/stops/NH01ata"], ["https://tec.openplanner.team/stops/LPLcarr2", "https://tec.openplanner.team/stops/Lsebonc1"], ["https://tec.openplanner.team/stops/X756aha", "https://tec.openplanner.team/stops/X757akb"], ["https://tec.openplanner.team/stops/Csasncb2", "https://tec.openplanner.team/stops/Csdjeme2"], ["https://tec.openplanner.team/stops/Bwavbmo2", "https://tec.openplanner.team/stops/Bwavpao2"], ["https://tec.openplanner.team/stops/X812aaa", "https://tec.openplanner.team/stops/X812aqa"], ["https://tec.openplanner.team/stops/Ccucroi1", "https://tec.openplanner.team/stops/Ccugail2"], ["https://tec.openplanner.team/stops/LCeterm2", "https://tec.openplanner.team/stops/LGAholl1"], ["https://tec.openplanner.team/stops/X796aba", "https://tec.openplanner.team/stops/X796aca"], ["https://tec.openplanner.team/stops/Lremonu1", "https://tec.openplanner.team/stops/Lremonu2"], ["https://tec.openplanner.team/stops/LDOanes2", "https://tec.openplanner.team/stops/LGOcana2"], ["https://tec.openplanner.team/stops/LORdtec*", "https://tec.openplanner.team/stops/LORgend1"], ["https://tec.openplanner.team/stops/X750aga", "https://tec.openplanner.team/stops/X750ama"], ["https://tec.openplanner.team/stops/X818aoa", "https://tec.openplanner.team/stops/X818awb"], ["https://tec.openplanner.team/stops/Bsaumlp1", "https://tec.openplanner.team/stops/Btstbbu1"], ["https://tec.openplanner.team/stops/LMhvina1", "https://tec.openplanner.team/stops/LMhvina2"], ["https://tec.openplanner.team/stops/N554acc", "https://tec.openplanner.team/stops/N573aoa"], ["https://tec.openplanner.team/stops/X788aca", "https://tec.openplanner.team/stops/X788acb"], ["https://tec.openplanner.team/stops/Clupcfe1", "https://tec.openplanner.team/stops/Cvvcime2"], ["https://tec.openplanner.team/stops/X601cea", "https://tec.openplanner.team/stops/X601ceb"], ["https://tec.openplanner.team/stops/H4mn100a", "https://tec.openplanner.team/stops/H4rk101b"], ["https://tec.openplanner.team/stops/N101acb", "https://tec.openplanner.team/stops/N101adb"], ["https://tec.openplanner.team/stops/Btslhau2", "https://tec.openplanner.team/stops/Btsllsc2"], ["https://tec.openplanner.team/stops/H2ha127b", "https://tec.openplanner.team/stops/H2ha138b"], ["https://tec.openplanner.team/stops/H2ma203b", "https://tec.openplanner.team/stops/H2ma209b"], ["https://tec.openplanner.team/stops/NL74aba", "https://tec.openplanner.team/stops/NL74aea"], ["https://tec.openplanner.team/stops/X788afb", "https://tec.openplanner.team/stops/X789ahb"], ["https://tec.openplanner.team/stops/Bottcbp2", "https://tec.openplanner.team/stops/Botteco1"], ["https://tec.openplanner.team/stops/Cmtfoye1", "https://tec.openplanner.team/stops/Cmtstth2"], ["https://tec.openplanner.team/stops/LVBmonu1", "https://tec.openplanner.team/stops/LVBmonu4"], ["https://tec.openplanner.team/stops/X922afb", "https://tec.openplanner.team/stops/X922agb"], ["https://tec.openplanner.team/stops/LBTcarr1", "https://tec.openplanner.team/stops/LBTcarr3"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Llojeme3"], ["https://tec.openplanner.team/stops/Lflprev2", "https://tec.openplanner.team/stops/Lrolecl1"], ["https://tec.openplanner.team/stops/H1pa108a", "https://tec.openplanner.team/stops/H1pa108b"], ["https://tec.openplanner.team/stops/N539adb", "https://tec.openplanner.team/stops/N539adc"], ["https://tec.openplanner.team/stops/N544aaa", "https://tec.openplanner.team/stops/N544abc"], ["https://tec.openplanner.team/stops/X601bfb", "https://tec.openplanner.team/stops/X601bxb"], ["https://tec.openplanner.team/stops/Cgzcorn1", "https://tec.openplanner.team/stops/Cgzcour2"], ["https://tec.openplanner.team/stops/X637aaa", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/N120aoc", "https://tec.openplanner.team/stops/N120aod"], ["https://tec.openplanner.team/stops/X822abb", "https://tec.openplanner.team/stops/X822aca"], ["https://tec.openplanner.team/stops/Lghcfer1", "https://tec.openplanner.team/stops/Lghjans1"], ["https://tec.openplanner.team/stops/Ltibell1", "https://tec.openplanner.team/stops/Ltibell2"], ["https://tec.openplanner.team/stops/Cmocalv2", "https://tec.openplanner.team/stops/Cmocalv4"], ["https://tec.openplanner.team/stops/N166abb", "https://tec.openplanner.team/stops/N166acb"], ["https://tec.openplanner.team/stops/X725bfb", "https://tec.openplanner.team/stops/X767aib"], ["https://tec.openplanner.team/stops/LBEabbe2", "https://tec.openplanner.team/stops/LBEfagn1"], ["https://tec.openplanner.team/stops/X878aaa", "https://tec.openplanner.team/stops/X879abb"], ["https://tec.openplanner.team/stops/X823aab", "https://tec.openplanner.team/stops/X830aab"], ["https://tec.openplanner.team/stops/Lendonh2", "https://tec.openplanner.team/stops/Lenmivi*"], ["https://tec.openplanner.team/stops/X631aca", "https://tec.openplanner.team/stops/X631adb"], ["https://tec.openplanner.team/stops/X619aba", "https://tec.openplanner.team/stops/X619abb"], ["https://tec.openplanner.team/stops/Lchacie1", "https://tec.openplanner.team/stops/Lra4bra2"], ["https://tec.openplanner.team/stops/N501ata", "https://tec.openplanner.team/stops/N501hpa"], ["https://tec.openplanner.team/stops/H1mj127a", "https://tec.openplanner.team/stops/H1mj131b"], ["https://tec.openplanner.team/stops/LGLecol1", "https://tec.openplanner.team/stops/LGLlaur1"], ["https://tec.openplanner.team/stops/Lstscie1", "https://tec.openplanner.team/stops/Lstscie2"], ["https://tec.openplanner.team/stops/Cbugara2", "https://tec.openplanner.team/stops/Cbupla1"], ["https://tec.openplanner.team/stops/LsVgrun1", "https://tec.openplanner.team/stops/LsVsimo2"], ["https://tec.openplanner.team/stops/Bvilvil2", "https://tec.openplanner.team/stops/Bvilvil4"], ["https://tec.openplanner.team/stops/Llianix2", "https://tec.openplanner.team/stops/Lligare2"], ["https://tec.openplanner.team/stops/X989afa", "https://tec.openplanner.team/stops/X989afb"], ["https://tec.openplanner.team/stops/Bitrsar1", "https://tec.openplanner.team/stops/Bitrsar2"], ["https://tec.openplanner.team/stops/H1ni317a", "https://tec.openplanner.team/stops/H1ni318b"], ["https://tec.openplanner.team/stops/X651afa", "https://tec.openplanner.team/stops/X658aab"], ["https://tec.openplanner.team/stops/LbUbisc2", "https://tec.openplanner.team/stops/LwR140-2"], ["https://tec.openplanner.team/stops/NL74ahd", "https://tec.openplanner.team/stops/NL74aib"], ["https://tec.openplanner.team/stops/Bwatdmo1", "https://tec.openplanner.team/stops/Bwatmco2"], ["https://tec.openplanner.team/stops/X982bdb", "https://tec.openplanner.team/stops/X982bja"], ["https://tec.openplanner.team/stops/X899aib", "https://tec.openplanner.team/stops/X899ajb"], ["https://tec.openplanner.team/stops/H4ty299a", "https://tec.openplanner.team/stops/H4ty299e"], ["https://tec.openplanner.team/stops/N308afc", "https://tec.openplanner.team/stops/N308aga"], ["https://tec.openplanner.team/stops/Lsnfont1", "https://tec.openplanner.team/stops/Lsnfont2"], ["https://tec.openplanner.team/stops/H1mj126a", "https://tec.openplanner.team/stops/H1mj127b"], ["https://tec.openplanner.team/stops/Cfaauln2", "https://tec.openplanner.team/stops/Cflspir1"], ["https://tec.openplanner.team/stops/Csabrun1", "https://tec.openplanner.team/stops/Cvpcime2"], ["https://tec.openplanner.team/stops/LLRvill1", "https://tec.openplanner.team/stops/LVPbleh2"], ["https://tec.openplanner.team/stops/LCHrhou1", "https://tec.openplanner.team/stops/LThplen2"], ["https://tec.openplanner.team/stops/Ccuhsti1", "https://tec.openplanner.team/stops/Ccupbro2"], ["https://tec.openplanner.team/stops/N118adb", "https://tec.openplanner.team/stops/N118aeb"], ["https://tec.openplanner.team/stops/LATcham*", "https://tec.openplanner.team/stops/LVLcent2"], ["https://tec.openplanner.team/stops/LBRmc--2", "https://tec.openplanner.team/stops/LBRmc--4"], ["https://tec.openplanner.team/stops/Lbrquai1", "https://tec.openplanner.team/stops/Llgbarb2"], ["https://tec.openplanner.team/stops/H4ef112b", "https://tec.openplanner.team/stops/H4or114a"], ["https://tec.openplanner.team/stops/Cfrcham2", "https://tec.openplanner.team/stops/Cmestas2"], ["https://tec.openplanner.team/stops/Bwaab121", "https://tec.openplanner.team/stops/Bwaab122"], ["https://tec.openplanner.team/stops/LHDmc--1", "https://tec.openplanner.team/stops/LLGec--*"], ["https://tec.openplanner.team/stops/Csoforr2", "https://tec.openplanner.team/stops/Csoforr3"], ["https://tec.openplanner.team/stops/Lcchala2", "https://tec.openplanner.team/stops/LRarami1"], ["https://tec.openplanner.team/stops/Btslegl2", "https://tec.openplanner.team/stops/Btslenf2"], ["https://tec.openplanner.team/stops/N558aab", "https://tec.openplanner.team/stops/N558afb"], ["https://tec.openplanner.team/stops/Bllnhoc1", "https://tec.openplanner.team/stops/Bottppa1"], ["https://tec.openplanner.team/stops/LSTmast1", "https://tec.openplanner.team/stops/LSTmast2"], ["https://tec.openplanner.team/stops/H4ty322c", "https://tec.openplanner.team/stops/H4ty322d"], ["https://tec.openplanner.team/stops/H4ev119a", "https://tec.openplanner.team/stops/H4sl154b"], ["https://tec.openplanner.team/stops/Blincoo2", "https://tec.openplanner.team/stops/Blineco2"], ["https://tec.openplanner.team/stops/X908afb", "https://tec.openplanner.team/stops/X911awa"], ["https://tec.openplanner.team/stops/LAWcite6", "https://tec.openplanner.team/stops/LHGleje1"], ["https://tec.openplanner.team/stops/X780ajb", "https://tec.openplanner.team/stops/X793aib"], ["https://tec.openplanner.team/stops/LMibouv3", "https://tec.openplanner.team/stops/LMibouv4"], ["https://tec.openplanner.team/stops/X869ada", "https://tec.openplanner.team/stops/X869aea"], ["https://tec.openplanner.team/stops/X773amb", "https://tec.openplanner.team/stops/X773anb"], ["https://tec.openplanner.team/stops/Lveoctr1", "https://tec.openplanner.team/stops/Lveoctr3"], ["https://tec.openplanner.team/stops/N576aga", "https://tec.openplanner.team/stops/N576aha"], ["https://tec.openplanner.team/stops/X601bsa", "https://tec.openplanner.team/stops/X601bva"], ["https://tec.openplanner.team/stops/N521adb", "https://tec.openplanner.team/stops/N521afa"], ["https://tec.openplanner.team/stops/N501gza", "https://tec.openplanner.team/stops/N501gzz"], ["https://tec.openplanner.team/stops/Lserena2", "https://tec.openplanner.team/stops/Lseverh2"], ["https://tec.openplanner.team/stops/X824aba", "https://tec.openplanner.team/stops/X824abb"], ["https://tec.openplanner.team/stops/Btlbche1", "https://tec.openplanner.team/stops/Btlbche2"], ["https://tec.openplanner.team/stops/LbTweyn1", "https://tec.openplanner.team/stops/LbUwhon1"], ["https://tec.openplanner.team/stops/LEBmoul1", "https://tec.openplanner.team/stops/Llxcite2"], ["https://tec.openplanner.team/stops/X657aka", "https://tec.openplanner.team/stops/X657anb"], ["https://tec.openplanner.team/stops/H1te173a", "https://tec.openplanner.team/stops/H1te184b"], ["https://tec.openplanner.team/stops/H1hg178a", "https://tec.openplanner.team/stops/H1hg180a"], ["https://tec.openplanner.team/stops/H1ha200a", "https://tec.openplanner.team/stops/H1ha200b"], ["https://tec.openplanner.team/stops/H2ha138b", "https://tec.openplanner.team/stops/H2ha142a"], ["https://tec.openplanner.team/stops/LGecite2", "https://tec.openplanner.team/stops/LGeschr1"], ["https://tec.openplanner.team/stops/LESchpl1", "https://tec.openplanner.team/stops/LESevie1"], ["https://tec.openplanner.team/stops/X793aea", "https://tec.openplanner.team/stops/X793aeb"], ["https://tec.openplanner.team/stops/H4ae132d", "https://tec.openplanner.team/stops/H4ea129a"], ["https://tec.openplanner.team/stops/LBEcomm1", "https://tec.openplanner.team/stops/LBEtilf1"], ["https://tec.openplanner.team/stops/LAMfroi2", "https://tec.openplanner.team/stops/LAMusin2"], ["https://tec.openplanner.team/stops/H4ta115a", "https://tec.openplanner.team/stops/H4ta127a"], ["https://tec.openplanner.team/stops/N534axb", "https://tec.openplanner.team/stops/N534cbh"], ["https://tec.openplanner.team/stops/Loutrix1", "https://tec.openplanner.team/stops/Loutroi1"], ["https://tec.openplanner.team/stops/N501jqa", "https://tec.openplanner.team/stops/N501nea"], ["https://tec.openplanner.team/stops/X619ama", "https://tec.openplanner.team/stops/X619amb"], ["https://tec.openplanner.team/stops/Barqbco1", "https://tec.openplanner.team/stops/Barqpla2"], ["https://tec.openplanner.team/stops/H4fa167a", "https://tec.openplanner.team/stops/H5rx104b"], ["https://tec.openplanner.team/stops/Cjuledo2", "https://tec.openplanner.team/stops/Cjuplco2"], ["https://tec.openplanner.team/stops/LHUalbe2", "https://tec.openplanner.team/stops/LHUpost4"], ["https://tec.openplanner.team/stops/LbUhons1", "https://tec.openplanner.team/stops/LbUkrei*"], ["https://tec.openplanner.team/stops/Bmlngch2", "https://tec.openplanner.team/stops/Bmlngvi2"], ["https://tec.openplanner.team/stops/LeUwert1", "https://tec.openplanner.team/stops/LeUwert3"], ["https://tec.openplanner.team/stops/H1cv101a", "https://tec.openplanner.team/stops/H1cv103a"], ["https://tec.openplanner.team/stops/H4wn128a", "https://tec.openplanner.team/stops/H4wn130a"], ["https://tec.openplanner.team/stops/LDAptbo1", "https://tec.openplanner.team/stops/LDArich1"], ["https://tec.openplanner.team/stops/Btsllib2", "https://tec.openplanner.team/stops/Btslpbr1"], ["https://tec.openplanner.team/stops/LOV48--2", "https://tec.openplanner.team/stops/LOVchen2"], ["https://tec.openplanner.team/stops/H1pa110b", "https://tec.openplanner.team/stops/H1qu119a"], ["https://tec.openplanner.team/stops/H1bi101a", "https://tec.openplanner.team/stops/H1bi101b"], ["https://tec.openplanner.team/stops/X804ald", "https://tec.openplanner.team/stops/X804bwa"], ["https://tec.openplanner.team/stops/H1fr107c", "https://tec.openplanner.team/stops/H1fr109b"], ["https://tec.openplanner.team/stops/Lhrrhee*", "https://tec.openplanner.team/stops/Lhrunir2"], ["https://tec.openplanner.team/stops/N368aba", "https://tec.openplanner.team/stops/N368afb"], ["https://tec.openplanner.team/stops/H1ni321a", "https://tec.openplanner.team/stops/H1ni321b"], ["https://tec.openplanner.team/stops/H3bi113a", "https://tec.openplanner.team/stops/H3bi113b"], ["https://tec.openplanner.team/stops/Lbocime1", "https://tec.openplanner.team/stops/Lbofrai2"], ["https://tec.openplanner.team/stops/N547aba", "https://tec.openplanner.team/stops/N547adb"], ["https://tec.openplanner.team/stops/Cchba02", "https://tec.openplanner.team/stops/CMba2"], ["https://tec.openplanner.team/stops/Cgopier3", "https://tec.openplanner.team/stops/Ctmmath2"], ["https://tec.openplanner.team/stops/Bezeksj4", "https://tec.openplanner.team/stops/Bneeblo1"], ["https://tec.openplanner.team/stops/X657afa", "https://tec.openplanner.team/stops/X657agb"], ["https://tec.openplanner.team/stops/LAUneuv5", "https://tec.openplanner.team/stops/LAUscha2"], ["https://tec.openplanner.team/stops/LJAbois2", "https://tec.openplanner.team/stops/LJAroue2"], ["https://tec.openplanner.team/stops/H1ha190b", "https://tec.openplanner.team/stops/H1ha197b"], ["https://tec.openplanner.team/stops/N111acb", "https://tec.openplanner.team/stops/N111aeb"], ["https://tec.openplanner.team/stops/Cmlceri2", "https://tec.openplanner.team/stops/Cmlclos2"], ["https://tec.openplanner.team/stops/N516ada", "https://tec.openplanner.team/stops/N516anb"], ["https://tec.openplanner.team/stops/LBkcarr3", "https://tec.openplanner.team/stops/LBkcarr4"], ["https://tec.openplanner.team/stops/N501fwz", "https://tec.openplanner.team/stops/N501gnb"], ["https://tec.openplanner.team/stops/X837afa", "https://tec.openplanner.team/stops/X837ajb"], ["https://tec.openplanner.team/stops/H4hx122a", "https://tec.openplanner.team/stops/H4hx124b"], ["https://tec.openplanner.team/stops/Bitreco2", "https://tec.openplanner.team/stops/Bitregl2"], ["https://tec.openplanner.team/stops/LbOre3b1", "https://tec.openplanner.team/stops/LrEkais4"], ["https://tec.openplanner.team/stops/Cfacamp4", "https://tec.openplanner.team/stops/Cfastan2"], ["https://tec.openplanner.team/stops/X896aga", "https://tec.openplanner.team/stops/X896aia"], ["https://tec.openplanner.team/stops/Lprmc--4", "https://tec.openplanner.team/stops/Lprmoin1"], ["https://tec.openplanner.team/stops/X601ala", "https://tec.openplanner.team/stops/X601bwa"], ["https://tec.openplanner.team/stops/H1el135b", "https://tec.openplanner.team/stops/H1wi152b"], ["https://tec.openplanner.team/stops/H2fa103b", "https://tec.openplanner.team/stops/H2mg135a"], ["https://tec.openplanner.team/stops/Croplom4", "https://tec.openplanner.team/stops/Croplom7"], ["https://tec.openplanner.team/stops/LSkathe2", "https://tec.openplanner.team/stops/LSkchwa2"], ["https://tec.openplanner.team/stops/N501ima", "https://tec.openplanner.team/stops/N501imb"], ["https://tec.openplanner.team/stops/X999aja", "https://tec.openplanner.team/stops/X999anb"], ["https://tec.openplanner.team/stops/LMObut-1", "https://tec.openplanner.team/stops/LMOelva3"], ["https://tec.openplanner.team/stops/LTolijn*", "https://tec.openplanner.team/stops/LToluik2"], ["https://tec.openplanner.team/stops/LLrc_ip4", "https://tec.openplanner.team/stops/LWMchpl2"], ["https://tec.openplanner.team/stops/Cmlgoff1", "https://tec.openplanner.team/stops/Cmlgoff2"], ["https://tec.openplanner.team/stops/N235aea", "https://tec.openplanner.team/stops/N270aaa"], ["https://tec.openplanner.team/stops/Crarmas1", "https://tec.openplanner.team/stops/Cravign2"], ["https://tec.openplanner.team/stops/LESfoot2", "https://tec.openplanner.team/stops/LESgare1"], ["https://tec.openplanner.team/stops/H4bn174b", "https://tec.openplanner.team/stops/H4pi135a"], ["https://tec.openplanner.team/stops/N104afa", "https://tec.openplanner.team/stops/N104akb"], ["https://tec.openplanner.team/stops/N123acb", "https://tec.openplanner.team/stops/N124acb"], ["https://tec.openplanner.team/stops/LHMec--2", "https://tec.openplanner.team/stops/LHMgrun2"], ["https://tec.openplanner.team/stops/H1qy132a", "https://tec.openplanner.team/stops/H1qy132b"], ["https://tec.openplanner.team/stops/Lgdstoc1", "https://tec.openplanner.team/stops/LSNmoul2"], ["https://tec.openplanner.team/stops/Lticoq-1", "https://tec.openplanner.team/stops/Lticoq-2"], ["https://tec.openplanner.team/stops/N301akb", "https://tec.openplanner.team/stops/N331aeb"], ["https://tec.openplanner.team/stops/Cnamonn2", "https://tec.openplanner.team/stops/Cnawari1"], ["https://tec.openplanner.team/stops/LRtcarr1", "https://tec.openplanner.team/stops/LTecent1"], ["https://tec.openplanner.team/stops/H1pa104a", "https://tec.openplanner.team/stops/H1pa109b"], ["https://tec.openplanner.team/stops/H4ve131a", "https://tec.openplanner.team/stops/H4ve132b"], ["https://tec.openplanner.team/stops/X817abb", "https://tec.openplanner.team/stops/X822acb"], ["https://tec.openplanner.team/stops/LSJeg--2", "https://tec.openplanner.team/stops/LSJlabe1"], ["https://tec.openplanner.team/stops/Lbrnanc1", "https://tec.openplanner.team/stops/Lbrresi2"], ["https://tec.openplanner.team/stops/N146aaa", "https://tec.openplanner.team/stops/N146abb"], ["https://tec.openplanner.team/stops/LCRfavr2", "https://tec.openplanner.team/stops/LCRfize1"], ["https://tec.openplanner.team/stops/LOehart2", "https://tec.openplanner.team/stops/LWAlpre1"], ["https://tec.openplanner.team/stops/Llglaha1", "https://tec.openplanner.team/stops/Llglaha2"], ["https://tec.openplanner.team/stops/LtH37c-1", "https://tec.openplanner.team/stops/LtHkirc4"], ["https://tec.openplanner.team/stops/LJAdeho2", "https://tec.openplanner.team/stops/LJAgoff1"], ["https://tec.openplanner.team/stops/N113ada", "https://tec.openplanner.team/stops/N113afa"], ["https://tec.openplanner.team/stops/H1cu123a", "https://tec.openplanner.team/stops/H1cu131b"], ["https://tec.openplanner.team/stops/N124aac", "https://tec.openplanner.team/stops/N124acb"], ["https://tec.openplanner.team/stops/X804apb", "https://tec.openplanner.team/stops/X804aqa"], ["https://tec.openplanner.team/stops/H4ka178a", "https://tec.openplanner.team/stops/H4ka178b"], ["https://tec.openplanner.team/stops/LRmhage5", "https://tec.openplanner.team/stops/LRmsmvo3"], ["https://tec.openplanner.team/stops/X902aqa", "https://tec.openplanner.team/stops/X902atb"], ["https://tec.openplanner.team/stops/N301aca", "https://tec.openplanner.team/stops/N302aab"], ["https://tec.openplanner.team/stops/N233aaa", "https://tec.openplanner.team/stops/N233aba"], ["https://tec.openplanner.team/stops/N235adb", "https://tec.openplanner.team/stops/N235aea"], ["https://tec.openplanner.team/stops/Lpeptle1", "https://tec.openplanner.team/stops/LWeec--2"], ["https://tec.openplanner.team/stops/N347adb", "https://tec.openplanner.team/stops/N347aea"], ["https://tec.openplanner.team/stops/Ljubeyn2", "https://tec.openplanner.team/stops/Ljuvert2"], ["https://tec.openplanner.team/stops/LLSbajo1", "https://tec.openplanner.team/stops/LLStrid2"], ["https://tec.openplanner.team/stops/N135aab", "https://tec.openplanner.team/stops/N135abb"], ["https://tec.openplanner.team/stops/X801baa", "https://tec.openplanner.team/stops/X801bha"], ["https://tec.openplanner.team/stops/X901bma", "https://tec.openplanner.team/stops/X922abb"], ["https://tec.openplanner.team/stops/Cthalou1", "https://tec.openplanner.team/stops/Cthbifu1"], ["https://tec.openplanner.team/stops/Cmobeau2", "https://tec.openplanner.team/stops/Cmoruau2"], ["https://tec.openplanner.team/stops/X746afb", "https://tec.openplanner.team/stops/X746agd"], ["https://tec.openplanner.team/stops/N536aoa", "https://tec.openplanner.team/stops/N562aob"], ["https://tec.openplanner.team/stops/N505acb", "https://tec.openplanner.team/stops/N505aob"], ["https://tec.openplanner.team/stops/Bjodcsb2", "https://tec.openplanner.team/stops/Bjodgai2"], ["https://tec.openplanner.team/stops/LHDpota2", "https://tec.openplanner.team/stops/LLmcheg4"], ["https://tec.openplanner.team/stops/Cgyaudu1", "https://tec.openplanner.team/stops/Cgygazo3"], ["https://tec.openplanner.team/stops/H1ht122a", "https://tec.openplanner.team/stops/H1ht122b"], ["https://tec.openplanner.team/stops/X718afa", "https://tec.openplanner.team/stops/X718aga"], ["https://tec.openplanner.team/stops/LHMmarq1", "https://tec.openplanner.team/stops/LHMpatl2"], ["https://tec.openplanner.team/stops/Cgylouv1", "https://tec.openplanner.team/stops/Cgylouv2"], ["https://tec.openplanner.team/stops/NB33afa", "https://tec.openplanner.team/stops/NB33aha"], ["https://tec.openplanner.team/stops/Lligara2", "https://tec.openplanner.team/stops/LVSbleu1"], ["https://tec.openplanner.team/stops/Lveptre2", "https://tec.openplanner.team/stops/Lvereno1"], ["https://tec.openplanner.team/stops/Bnivjli2", "https://tec.openplanner.team/stops/Bnivphs1"], ["https://tec.openplanner.team/stops/Bmanati2", "https://tec.openplanner.team/stops/Bmangen1"], ["https://tec.openplanner.team/stops/N515afa", "https://tec.openplanner.team/stops/N515anb"], ["https://tec.openplanner.team/stops/Lveensi2", "https://tec.openplanner.team/stops/Lveyser2"], ["https://tec.openplanner.team/stops/N225aba", "https://tec.openplanner.team/stops/N226aba"], ["https://tec.openplanner.team/stops/Canboni1", "https://tec.openplanner.team/stops/Canboni2"], ["https://tec.openplanner.team/stops/LXHfalh1", "https://tec.openplanner.team/stops/LXHmart1"], ["https://tec.openplanner.team/stops/X747aka", "https://tec.openplanner.team/stops/X747alb"], ["https://tec.openplanner.team/stops/LFRhock4", "https://tec.openplanner.team/stops/LSx309-2"], ["https://tec.openplanner.team/stops/Cmtpire1", "https://tec.openplanner.team/stops/Cmtrbra1"], ["https://tec.openplanner.team/stops/Bottcba1", "https://tec.openplanner.team/stops/Bottpar1"], ["https://tec.openplanner.team/stops/H1gh163a", "https://tec.openplanner.team/stops/H1je225a"], ["https://tec.openplanner.team/stops/LhObull1", "https://tec.openplanner.team/stops/LhOfrie1"], ["https://tec.openplanner.team/stops/X768aea", "https://tec.openplanner.team/stops/X768agb"], ["https://tec.openplanner.team/stops/X801aqa", "https://tec.openplanner.team/stops/X801aqb"], ["https://tec.openplanner.team/stops/Lmnhorl2", "https://tec.openplanner.team/stops/Lmnhorl3"], ["https://tec.openplanner.team/stops/Bflcneu2", "https://tec.openplanner.team/stops/Bramcom2"], ["https://tec.openplanner.team/stops/H2ha129e", "https://tec.openplanner.team/stops/H2ha138a"], ["https://tec.openplanner.team/stops/H4ft132b", "https://tec.openplanner.team/stops/H4wu375a"], ["https://tec.openplanner.team/stops/H4wn125a", "https://tec.openplanner.team/stops/H4wn129b"], ["https://tec.openplanner.team/stops/X898ama", "https://tec.openplanner.team/stops/X898amb"], ["https://tec.openplanner.team/stops/Llghoch4", "https://tec.openplanner.team/stops/Llgmart1"], ["https://tec.openplanner.team/stops/LAxbott1", "https://tec.openplanner.team/stops/Lhelait2"], ["https://tec.openplanner.team/stops/N106aca", "https://tec.openplanner.team/stops/N106acb"], ["https://tec.openplanner.team/stops/N515anb", "https://tec.openplanner.team/stops/N516aoa"], ["https://tec.openplanner.team/stops/X664aab", "https://tec.openplanner.team/stops/X670ara"], ["https://tec.openplanner.team/stops/Bgzdcen2", "https://tec.openplanner.team/stops/Bgzdcwa2"], ["https://tec.openplanner.team/stops/Cchsud06", "https://tec.openplanner.team/stops/Cmlgoff1"], ["https://tec.openplanner.team/stops/Lvtnico*", "https://tec.openplanner.team/stops/Lvtnico1"], ["https://tec.openplanner.team/stops/Bbsthpl1", "https://tec.openplanner.team/stops/Bbsthpl2"], ["https://tec.openplanner.team/stops/X801aaa", "https://tec.openplanner.team/stops/X801aba"], ["https://tec.openplanner.team/stops/LmDkoel2", "https://tec.openplanner.team/stops/LmYeich1"], ["https://tec.openplanner.team/stops/X615azb", "https://tec.openplanner.team/stops/X615bcb"], ["https://tec.openplanner.team/stops/LoEauto1", "https://tec.openplanner.team/stops/LrDkirc2"], ["https://tec.openplanner.team/stops/Bbchmin1", "https://tec.openplanner.team/stops/Bitreco2"], ["https://tec.openplanner.team/stops/X850ada", "https://tec.openplanner.team/stops/X850aia"], ["https://tec.openplanner.team/stops/LPbchat2", "https://tec.openplanner.team/stops/LPbeg--1"], ["https://tec.openplanner.team/stops/LoUober1", "https://tec.openplanner.team/stops/LoUwelc2"], ["https://tec.openplanner.team/stops/Cbtstac1", "https://tec.openplanner.team/stops/Cbtstac2"], ["https://tec.openplanner.team/stops/Lbrboul1", "https://tec.openplanner.team/stops/Lbrboul2"], ["https://tec.openplanner.team/stops/Llgbron1", "https://tec.openplanner.team/stops/Llgvero2"], ["https://tec.openplanner.team/stops/NH01asa", "https://tec.openplanner.team/stops/NH01atb"], ["https://tec.openplanner.team/stops/Cbmgare2", "https://tec.openplanner.team/stops/Cbmzoni1"], ["https://tec.openplanner.team/stops/LbTathe2", "https://tec.openplanner.team/stops/LbThau12"], ["https://tec.openplanner.team/stops/LHEepur2", "https://tec.openplanner.team/stops/LHEnaza2"], ["https://tec.openplanner.team/stops/X782amb", "https://tec.openplanner.team/stops/X782aoa"], ["https://tec.openplanner.team/stops/LCSfagn2", "https://tec.openplanner.team/stops/LCSgend1"], ["https://tec.openplanner.team/stops/Bptrvil1", "https://tec.openplanner.team/stops/Bptrvil2"], ["https://tec.openplanner.team/stops/Ltichif1", "https://tec.openplanner.team/stops/Ltiferb2"], ["https://tec.openplanner.team/stops/X660aha", "https://tec.openplanner.team/stops/X660ahb"], ["https://tec.openplanner.team/stops/X942adb", "https://tec.openplanner.team/stops/X943aeb"], ["https://tec.openplanner.team/stops/Lvochev2", "https://tec.openplanner.team/stops/Lvoeg--2"], ["https://tec.openplanner.team/stops/H1te180b", "https://tec.openplanner.team/stops/H1vt194b"], ["https://tec.openplanner.team/stops/X801chb", "https://tec.openplanner.team/stops/X801cnb"], ["https://tec.openplanner.team/stops/H2ll191a", "https://tec.openplanner.team/stops/H2ll267b"], ["https://tec.openplanner.team/stops/X636ara", "https://tec.openplanner.team/stops/X636ata"], ["https://tec.openplanner.team/stops/LFChofv1", "https://tec.openplanner.team/stops/LFClage2"], ["https://tec.openplanner.team/stops/H2go115a", "https://tec.openplanner.team/stops/H2go115b"], ["https://tec.openplanner.team/stops/LSemc--2", "https://tec.openplanner.team/stops/LSemc--3"], ["https://tec.openplanner.team/stops/N211afa", "https://tec.openplanner.team/stops/N211bba"], ["https://tec.openplanner.team/stops/H3bi105d", "https://tec.openplanner.team/stops/H3bi113b"], ["https://tec.openplanner.team/stops/LrTbahn2", "https://tec.openplanner.team/stops/LrTpost2"], ["https://tec.openplanner.team/stops/Cmgpthi2", "https://tec.openplanner.team/stops/Csecroi2"], ["https://tec.openplanner.team/stops/LWM759-1", "https://tec.openplanner.team/stops/LWMchpl1"], ["https://tec.openplanner.team/stops/H2pe159a", "https://tec.openplanner.team/stops/H2pe160a"], ["https://tec.openplanner.team/stops/X654ajb", "https://tec.openplanner.team/stops/X670arb"], ["https://tec.openplanner.team/stops/LClberw1", "https://tec.openplanner.team/stops/LClflor1"], ["https://tec.openplanner.team/stops/LROgeuz2", "https://tec.openplanner.team/stops/LROmons2"], ["https://tec.openplanner.team/stops/N539acb", "https://tec.openplanner.team/stops/N542akb"], ["https://tec.openplanner.team/stops/H4fa126b", "https://tec.openplanner.team/stops/H4fa128a"], ["https://tec.openplanner.team/stops/H1th183b", "https://tec.openplanner.team/stops/H3so164a"], ["https://tec.openplanner.team/stops/Bcsegal1", "https://tec.openplanner.team/stops/Bcsegal2"], ["https://tec.openplanner.team/stops/LaUkirc*", "https://tec.openplanner.team/stops/LlOpfar1"], ["https://tec.openplanner.team/stops/H4ce102a", "https://tec.openplanner.team/stops/H4ce105a"], ["https://tec.openplanner.team/stops/LlgLAMB1", "https://tec.openplanner.team/stops/LlgLAMB7"], ["https://tec.openplanner.team/stops/Bgntalt4", "https://tec.openplanner.team/stops/Bgnteco1"], ["https://tec.openplanner.team/stops/X660acb", "https://tec.openplanner.team/stops/X672aca"], ["https://tec.openplanner.team/stops/LDLbaye1", "https://tec.openplanner.team/stops/LLNbeau2"], ["https://tec.openplanner.team/stops/Balssvi1", "https://tec.openplanner.team/stops/Balswin2"], ["https://tec.openplanner.team/stops/H1al105b", "https://tec.openplanner.team/stops/H1al108b"], ["https://tec.openplanner.team/stops/X604aeb", "https://tec.openplanner.team/stops/X604afd"], ["https://tec.openplanner.team/stops/Bobacou2", "https://tec.openplanner.team/stops/Cobcent1"], ["https://tec.openplanner.team/stops/X662aia", "https://tec.openplanner.team/stops/X662aoa"], ["https://tec.openplanner.team/stops/LSWeg--3", "https://tec.openplanner.team/stops/LSWscie1"], ["https://tec.openplanner.team/stops/H4br107a", "https://tec.openplanner.team/stops/H4br111a"], ["https://tec.openplanner.team/stops/Llgchan1", "https://tec.openplanner.team/stops/Llgchan2"], ["https://tec.openplanner.team/stops/X999aea", "https://tec.openplanner.team/stops/X999aeb"], ["https://tec.openplanner.team/stops/LAVpequ2", "https://tec.openplanner.team/stops/LVHbrai1"], ["https://tec.openplanner.team/stops/Cjucouc2", "https://tec.openplanner.team/stops/Cjulucq1"], ["https://tec.openplanner.team/stops/Bpermon4", "https://tec.openplanner.team/stops/Bperqui2"], ["https://tec.openplanner.team/stops/LAYsupe1", "https://tec.openplanner.team/stops/LREchal1"], ["https://tec.openplanner.team/stops/Bblacar1", "https://tec.openplanner.team/stops/Bblapra1"], ["https://tec.openplanner.team/stops/H1fr129a", "https://tec.openplanner.team/stops/H1fr129b"], ["https://tec.openplanner.team/stops/Ljuauto1", "https://tec.openplanner.team/stops/Ljuauto2"], ["https://tec.openplanner.team/stops/Bhptcha2", "https://tec.openplanner.team/stops/Broncli2"], ["https://tec.openplanner.team/stops/X359adb", "https://tec.openplanner.team/stops/X359aea"], ["https://tec.openplanner.team/stops/Bkrabhu2", "https://tec.openplanner.team/stops/Bovejme1"], ["https://tec.openplanner.team/stops/LCTcret1", "https://tec.openplanner.team/stops/LXocomb2"], ["https://tec.openplanner.team/stops/H1hn210a", "https://tec.openplanner.team/stops/H1ms925a"], ["https://tec.openplanner.team/stops/Barqres2", "https://tec.openplanner.team/stops/Bptrgri2"], ["https://tec.openplanner.team/stops/LGeduc-2", "https://tec.openplanner.team/stops/LGegrun2"], ["https://tec.openplanner.team/stops/N501jla", "https://tec.openplanner.team/stops/N501jma"], ["https://tec.openplanner.team/stops/N531acb", "https://tec.openplanner.team/stops/N531ahb"], ["https://tec.openplanner.team/stops/LhIkirc*", "https://tec.openplanner.team/stops/X792abb"], ["https://tec.openplanner.team/stops/H3bi106a", "https://tec.openplanner.team/stops/H3bi119a"], ["https://tec.openplanner.team/stops/LHApthe1", "https://tec.openplanner.team/stops/LHAstal1"], ["https://tec.openplanner.team/stops/Bhanath1", "https://tec.openplanner.team/stops/LHNhv--2"], ["https://tec.openplanner.team/stops/H4mo164a", "https://tec.openplanner.team/stops/H4mo171a"], ["https://tec.openplanner.team/stops/LFUchpl2", "https://tec.openplanner.team/stops/LFUfleu2"], ["https://tec.openplanner.team/stops/Cmobeau1", "https://tec.openplanner.team/stops/Cmovies1"], ["https://tec.openplanner.team/stops/LBNgarn1", "https://tec.openplanner.team/stops/LeUauto2"], ["https://tec.openplanner.team/stops/X661aia", "https://tec.openplanner.team/stops/X661ata"], ["https://tec.openplanner.team/stops/Cvvmonu1", "https://tec.openplanner.team/stops/Cvvpotv2"], ["https://tec.openplanner.team/stops/X634aja", "https://tec.openplanner.team/stops/X634ajb"], ["https://tec.openplanner.team/stops/X618adb", "https://tec.openplanner.team/stops/X618aeb"], ["https://tec.openplanner.team/stops/H1ms261b", "https://tec.openplanner.team/stops/H1ob361b"], ["https://tec.openplanner.team/stops/Bincbbo2", "https://tec.openplanner.team/stops/Bincbbo4"], ["https://tec.openplanner.team/stops/N230alb", "https://tec.openplanner.team/stops/N549acb"], ["https://tec.openplanner.team/stops/LCxfawe2", "https://tec.openplanner.team/stops/LCxhall2"], ["https://tec.openplanner.team/stops/X359aha", "https://tec.openplanner.team/stops/X359aka"], ["https://tec.openplanner.team/stops/H5qu141b", "https://tec.openplanner.team/stops/H5qu152a"], ["https://tec.openplanner.team/stops/Llgmair1", "https://tec.openplanner.team/stops/Llgthie1"], ["https://tec.openplanner.team/stops/Bwspjon1", "https://tec.openplanner.team/stops/Bwspjon2"], ["https://tec.openplanner.team/stops/X639aca", "https://tec.openplanner.team/stops/X639acb"], ["https://tec.openplanner.team/stops/H4fr141a", "https://tec.openplanner.team/stops/H4fr141b"], ["https://tec.openplanner.team/stops/Cvtegli2", "https://tec.openplanner.team/stops/Cvtgsar2"], ["https://tec.openplanner.team/stops/X833aaa", "https://tec.openplanner.team/stops/X833abb"], ["https://tec.openplanner.team/stops/Bclgfva2", "https://tec.openplanner.team/stops/Bgisman1"], ["https://tec.openplanner.team/stops/LVLgrum1", "https://tec.openplanner.team/stops/LVLmabi1"], ["https://tec.openplanner.team/stops/LHSvina1", "https://tec.openplanner.team/stops/LHSvina2"], ["https://tec.openplanner.team/stops/X824aaa", "https://tec.openplanner.team/stops/X825aga"], ["https://tec.openplanner.team/stops/Bnivall1", "https://tec.openplanner.team/stops/Bniveco1"], ["https://tec.openplanner.team/stops/LsVfrde1", "https://tec.openplanner.team/stops/LsVviel2"], ["https://tec.openplanner.team/stops/X991aab", "https://tec.openplanner.team/stops/X991aca"], ["https://tec.openplanner.team/stops/N211awa", "https://tec.openplanner.team/stops/N211awb"], ["https://tec.openplanner.team/stops/LSMpoin2", "https://tec.openplanner.team/stops/LSMtarg2"], ["https://tec.openplanner.team/stops/LTrmort1", "https://tec.openplanner.team/stops/LTrrich2"], ["https://tec.openplanner.team/stops/Bgemgjo1", "https://tec.openplanner.team/stops/N522bvf"], ["https://tec.openplanner.team/stops/Llgherm1", "https://tec.openplanner.team/stops/Llgherm2"], ["https://tec.openplanner.team/stops/Bvirbru1", "https://tec.openplanner.team/stops/Bvirpos1"], ["https://tec.openplanner.team/stops/X654aba", "https://tec.openplanner.team/stops/X654adb"], ["https://tec.openplanner.team/stops/H1bo101b", "https://tec.openplanner.team/stops/H1bo110a"], ["https://tec.openplanner.team/stops/X986ala", "https://tec.openplanner.team/stops/X986alb"], ["https://tec.openplanner.team/stops/N894aea", "https://tec.openplanner.team/stops/X892aia"], ["https://tec.openplanner.team/stops/Bbxlner1", "https://tec.openplanner.team/stops/Bettgle1"], ["https://tec.openplanner.team/stops/H1ca102a", "https://tec.openplanner.team/stops/H3so160a"], ["https://tec.openplanner.team/stops/LLUalou2", "https://tec.openplanner.team/stops/LLUvent2"], ["https://tec.openplanner.team/stops/N535acd", "https://tec.openplanner.team/stops/N535apa"], ["https://tec.openplanner.team/stops/Cmeptmi2", "https://tec.openplanner.team/stops/Cmestas2"], ["https://tec.openplanner.team/stops/LBachpl2", "https://tec.openplanner.team/stops/LBaeg--1"], ["https://tec.openplanner.team/stops/LVLmabi1", "https://tec.openplanner.team/stops/LVLmabi2"], ["https://tec.openplanner.team/stops/H1ho135b", "https://tec.openplanner.team/stops/H1ho141a"], ["https://tec.openplanner.team/stops/LSZgare2", "https://tec.openplanner.team/stops/LSZroqu2"], ["https://tec.openplanner.team/stops/H1br129a", "https://tec.openplanner.team/stops/H3bo101a"], ["https://tec.openplanner.team/stops/LFalieg2", "https://tec.openplanner.team/stops/LFarhuy2"], ["https://tec.openplanner.team/stops/X652aha", "https://tec.openplanner.team/stops/X669abc"], ["https://tec.openplanner.team/stops/N540ajb", "https://tec.openplanner.team/stops/N540alb"], ["https://tec.openplanner.team/stops/Cmybefe1", "https://tec.openplanner.team/stops/Cmybefe2"], ["https://tec.openplanner.team/stops/H4ff121b", "https://tec.openplanner.team/stops/H4mb138b"], ["https://tec.openplanner.team/stops/NL77ana", "https://tec.openplanner.team/stops/NL77anb"], ["https://tec.openplanner.team/stops/Cml3fon2", "https://tec.openplanner.team/stops/Cmlhubi1"], ["https://tec.openplanner.team/stops/Bllngar2", "https://tec.openplanner.team/stops/Bllngar3"], ["https://tec.openplanner.team/stops/Clvorle1", "https://tec.openplanner.team/stops/Cnadrev2"], ["https://tec.openplanner.team/stops/H4an105a", "https://tec.openplanner.team/stops/H4an105b"], ["https://tec.openplanner.team/stops/LArmeni1", "https://tec.openplanner.team/stops/X548afa"], ["https://tec.openplanner.team/stops/Lsmdepo1", "https://tec.openplanner.team/stops/Lsmeg--1"], ["https://tec.openplanner.team/stops/H4os220b", "https://tec.openplanner.team/stops/H4os223a"], ["https://tec.openplanner.team/stops/Cjojonc2", "https://tec.openplanner.team/stops/NC24aib"], ["https://tec.openplanner.team/stops/LBRgend1", "https://tec.openplanner.team/stops/LLTeg--2"], ["https://tec.openplanner.team/stops/H1so143b", "https://tec.openplanner.team/stops/H1so145a"], ["https://tec.openplanner.team/stops/LBgbaga2", "https://tec.openplanner.team/stops/LGmloti2"], ["https://tec.openplanner.team/stops/X547aja", "https://tec.openplanner.team/stops/X547ana"], ["https://tec.openplanner.team/stops/Bnetegl1", "https://tec.openplanner.team/stops/Bnetegl3"], ["https://tec.openplanner.team/stops/Ctabaty3", "https://tec.openplanner.team/stops/N543cfa"], ["https://tec.openplanner.team/stops/NL74aaa", "https://tec.openplanner.team/stops/NL74aab"], ["https://tec.openplanner.team/stops/Lhr4ave1", "https://tec.openplanner.team/stops/LOUsorb2"], ["https://tec.openplanner.team/stops/H4hx110a", "https://tec.openplanner.team/stops/H4hx110b"], ["https://tec.openplanner.team/stops/LHUbatt1", "https://tec.openplanner.team/stops/LHUneuv2"], ["https://tec.openplanner.team/stops/N513agd", "https://tec.openplanner.team/stops/N513bbd"], ["https://tec.openplanner.team/stops/LAyabri1", "https://tec.openplanner.team/stops/LAyabri2"], ["https://tec.openplanner.team/stops/Bflcneu1", "https://tec.openplanner.team/stops/N515afb"], ["https://tec.openplanner.team/stops/LhOholz1", "https://tec.openplanner.team/stops/LhUkape1"], ["https://tec.openplanner.team/stops/Ccuplai1", "https://tec.openplanner.team/stops/Ccutail1"], ["https://tec.openplanner.team/stops/Blasbpr2", "https://tec.openplanner.team/stops/Blasclo2"], ["https://tec.openplanner.team/stops/Lvieg--1", "https://tec.openplanner.team/stops/Lvitomb1"], ["https://tec.openplanner.team/stops/X812aka", "https://tec.openplanner.team/stops/X812ama"], ["https://tec.openplanner.team/stops/Bhptcha1", "https://tec.openplanner.team/stops/Broncli2"], ["https://tec.openplanner.team/stops/Llgplop1", "https://tec.openplanner.team/stops/Lvtfrai2"], ["https://tec.openplanner.team/stops/H4ir164b", "https://tec.openplanner.team/stops/H4og213b"], ["https://tec.openplanner.team/stops/X739ala", "https://tec.openplanner.team/stops/X773aab"], ["https://tec.openplanner.team/stops/H4ka181a", "https://tec.openplanner.team/stops/H4ka192b"], ["https://tec.openplanner.team/stops/LHXn47-3", "https://tec.openplanner.team/stops/LSMcles1"], ["https://tec.openplanner.team/stops/H1cd112b", "https://tec.openplanner.team/stops/H1to152a"], ["https://tec.openplanner.team/stops/N519agb", "https://tec.openplanner.team/stops/N519ahb"], ["https://tec.openplanner.team/stops/LeUjuge1", "https://tec.openplanner.team/stops/LeUjuge2"], ["https://tec.openplanner.team/stops/H4fr142b", "https://tec.openplanner.team/stops/H4ka392a"], ["https://tec.openplanner.team/stops/Cchdigu2", "https://tec.openplanner.team/stops/Cchvil1"], ["https://tec.openplanner.team/stops/H4ka178a", "https://tec.openplanner.team/stops/H4mt214a"], ["https://tec.openplanner.team/stops/H4ss154b", "https://tec.openplanner.team/stops/H4ss155a"], ["https://tec.openplanner.team/stops/Bjodcad1", "https://tec.openplanner.team/stops/Bjodgar1"], ["https://tec.openplanner.team/stops/Lfhhaso2", "https://tec.openplanner.team/stops/Lpoprie2"], ["https://tec.openplanner.team/stops/Bbauham2", "https://tec.openplanner.team/stops/Bnivfdu1"], ["https://tec.openplanner.team/stops/Bviravi1", "https://tec.openplanner.team/stops/Bvircen1"], ["https://tec.openplanner.team/stops/N204aab", "https://tec.openplanner.team/stops/N205acb"], ["https://tec.openplanner.team/stops/H4to134b", "https://tec.openplanner.team/stops/H4to139c"], ["https://tec.openplanner.team/stops/X610aab", "https://tec.openplanner.team/stops/X610aib"], ["https://tec.openplanner.team/stops/H2me114b", "https://tec.openplanner.team/stops/H2me115b"], ["https://tec.openplanner.team/stops/Lbococh2", "https://tec.openplanner.team/stops/Lboeg--2"], ["https://tec.openplanner.team/stops/H2ch106b", "https://tec.openplanner.team/stops/H2go118b"], ["https://tec.openplanner.team/stops/X636aaa", "https://tec.openplanner.team/stops/X636aba"], ["https://tec.openplanner.team/stops/X901aba", "https://tec.openplanner.team/stops/X901bka"], ["https://tec.openplanner.team/stops/Buccrac1", "https://tec.openplanner.team/stops/Buccvoi3"], ["https://tec.openplanner.team/stops/NL57add", "https://tec.openplanner.team/stops/NL57ajb"], ["https://tec.openplanner.team/stops/Cnaferr1", "https://tec.openplanner.team/stops/Cnanoir2"], ["https://tec.openplanner.team/stops/X639aia", "https://tec.openplanner.team/stops/X639aub"], ["https://tec.openplanner.team/stops/LwAprei1", "https://tec.openplanner.team/stops/LwAprei2"], ["https://tec.openplanner.team/stops/N539ata", "https://tec.openplanner.team/stops/N539atb"], ["https://tec.openplanner.team/stops/Chhplbe1", "https://tec.openplanner.team/stops/Chhplbe2"], ["https://tec.openplanner.team/stops/Bbghcar1", "https://tec.openplanner.team/stops/Bbghgli1"], ["https://tec.openplanner.team/stops/LMYmont1", "https://tec.openplanner.team/stops/LMYmont2"], ["https://tec.openplanner.team/stops/LSPec--1", "https://tec.openplanner.team/stops/LSPxhou2"], ["https://tec.openplanner.team/stops/LTyhapp1", "https://tec.openplanner.team/stops/LTyhapp2"], ["https://tec.openplanner.team/stops/X747aea", "https://tec.openplanner.team/stops/X747akb"], ["https://tec.openplanner.team/stops/H4ta122b", "https://tec.openplanner.team/stops/H4ta123b"], ["https://tec.openplanner.team/stops/X670aka", "https://tec.openplanner.team/stops/X670alb"], ["https://tec.openplanner.team/stops/Cjuhame3", "https://tec.openplanner.team/stops/Cjulamb2"], ["https://tec.openplanner.team/stops/X764aaa", "https://tec.openplanner.team/stops/X764aab"], ["https://tec.openplanner.team/stops/Cgpchgo1", "https://tec.openplanner.team/stops/Cgpchgo2"], ["https://tec.openplanner.team/stops/LESamos2", "https://tec.openplanner.team/stops/LESathe1"], ["https://tec.openplanner.team/stops/X952aba", "https://tec.openplanner.team/stops/X952aka"], ["https://tec.openplanner.team/stops/Ljucrah1", "https://tec.openplanner.team/stops/Ljuetie1"], ["https://tec.openplanner.team/stops/Bjodrrg1", "https://tec.openplanner.team/stops/Bzluvil2"], ["https://tec.openplanner.team/stops/Csiegli2", "https://tec.openplanner.team/stops/N106aib"], ["https://tec.openplanner.team/stops/H4do108b", "https://tec.openplanner.team/stops/H4eh100a"], ["https://tec.openplanner.team/stops/H1qp141a", "https://tec.openplanner.team/stops/H1qp141b"], ["https://tec.openplanner.team/stops/N537aga", "https://tec.openplanner.team/stops/N537agb"], ["https://tec.openplanner.team/stops/X659ara", "https://tec.openplanner.team/stops/X659awa"], ["https://tec.openplanner.team/stops/X640ada", "https://tec.openplanner.team/stops/X640aea"], ["https://tec.openplanner.team/stops/Cmmplac3", "https://tec.openplanner.team/stops/Cmmplac4"], ["https://tec.openplanner.team/stops/X983agb", "https://tec.openplanner.team/stops/X986aia"], ["https://tec.openplanner.team/stops/X919afb", "https://tec.openplanner.team/stops/X921adb"], ["https://tec.openplanner.team/stops/X802aja", "https://tec.openplanner.team/stops/X802akb"], ["https://tec.openplanner.team/stops/Lmlec--1", "https://tec.openplanner.team/stops/Lmlec--4"], ["https://tec.openplanner.team/stops/Bhptegl2", "https://tec.openplanner.team/stops/H2ec102a"], ["https://tec.openplanner.team/stops/X901asb", "https://tec.openplanner.team/stops/X901bcb"], ["https://tec.openplanner.team/stops/NR21aia", "https://tec.openplanner.team/stops/NR38aba"], ["https://tec.openplanner.team/stops/LHOgymn1", "https://tec.openplanner.team/stops/LHOmc--2"], ["https://tec.openplanner.team/stops/LVBbvin", "https://tec.openplanner.team/stops/LWDcime1"], ["https://tec.openplanner.team/stops/N511afa", "https://tec.openplanner.team/stops/N511afb"], ["https://tec.openplanner.team/stops/LMHec--1", "https://tec.openplanner.team/stops/LMHeg--2"], ["https://tec.openplanner.team/stops/Bwavgar5", "https://tec.openplanner.team/stops/Bwavmes2"], ["https://tec.openplanner.team/stops/X657aba", "https://tec.openplanner.team/stops/X657ama"], ["https://tec.openplanner.team/stops/X823abb", "https://tec.openplanner.team/stops/X823acb"], ["https://tec.openplanner.team/stops/H2ha129c", "https://tec.openplanner.team/stops/H2ha141a"], ["https://tec.openplanner.team/stops/Lgdec--2", "https://tec.openplanner.team/stops/Lgdhura1"], ["https://tec.openplanner.team/stops/Bmalcar2", "https://tec.openplanner.team/stops/Bsrbtil2"], ["https://tec.openplanner.team/stops/H4bu108a", "https://tec.openplanner.team/stops/H4cw107a"], ["https://tec.openplanner.team/stops/Cvlcalv1", "https://tec.openplanner.team/stops/NH01aha"], ["https://tec.openplanner.team/stops/Crehout1", "https://tec.openplanner.team/stops/Creshau1"], ["https://tec.openplanner.team/stops/LAweg--2", "https://tec.openplanner.team/stops/LHrchat1"], ["https://tec.openplanner.team/stops/LSNnoul1", "https://tec.openplanner.team/stops/LSNnoul2"], ["https://tec.openplanner.team/stops/LaSneuh2", "https://tec.openplanner.team/stops/LhGlang2"], ["https://tec.openplanner.team/stops/H1ch141a", "https://tec.openplanner.team/stops/H4ld123a"], ["https://tec.openplanner.team/stops/LwR140-1", "https://tec.openplanner.team/stops/LwR140-2"], ["https://tec.openplanner.team/stops/LAIchpl2", "https://tec.openplanner.team/stops/LCschen2"], ["https://tec.openplanner.team/stops/X685aia", "https://tec.openplanner.team/stops/X685aib"], ["https://tec.openplanner.team/stops/Llgjenn1", "https://tec.openplanner.team/stops/Llgjenn2"], ["https://tec.openplanner.team/stops/H1vt194a", "https://tec.openplanner.team/stops/H1vt194b"], ["https://tec.openplanner.team/stops/H1ni318a", "https://tec.openplanner.team/stops/H1ni318b"], ["https://tec.openplanner.team/stops/Lstamph1", "https://tec.openplanner.team/stops/Lstbota2"], ["https://tec.openplanner.team/stops/Lmomarr1", "https://tec.openplanner.team/stops/Lmomarr2"], ["https://tec.openplanner.team/stops/X917aca", "https://tec.openplanner.team/stops/X917ada"], ["https://tec.openplanner.team/stops/X870abb", "https://tec.openplanner.team/stops/X870ada"], ["https://tec.openplanner.team/stops/LRObruy2", "https://tec.openplanner.team/stops/LRObruy4"], ["https://tec.openplanner.team/stops/N236aba", "https://tec.openplanner.team/stops/N254aha"], ["https://tec.openplanner.team/stops/X721aob", "https://tec.openplanner.team/stops/X721apb"], ["https://tec.openplanner.team/stops/H1eo106a", "https://tec.openplanner.team/stops/H1eo106b"], ["https://tec.openplanner.team/stops/Lprorph2", "https://tec.openplanner.team/stops/Lprperr1"], ["https://tec.openplanner.team/stops/H4ta125a", "https://tec.openplanner.team/stops/H4ta125b"], ["https://tec.openplanner.team/stops/Caibras1", "https://tec.openplanner.team/stops/Caimeno3"], ["https://tec.openplanner.team/stops/H4mo193a", "https://tec.openplanner.team/stops/H4mo193b"], ["https://tec.openplanner.team/stops/H4ka188a", "https://tec.openplanner.team/stops/H4ka421a"], ["https://tec.openplanner.team/stops/Bsgicfo1", "https://tec.openplanner.team/stops/Bsgipha3"], ["https://tec.openplanner.team/stops/H1ne147a", "https://tec.openplanner.team/stops/H1ne147b"], ["https://tec.openplanner.team/stops/Brebchb1", "https://tec.openplanner.team/stops/H3br103b"], ["https://tec.openplanner.team/stops/H4ru242b", "https://tec.openplanner.team/stops/H4ru243a"], ["https://tec.openplanner.team/stops/N212aca", "https://tec.openplanner.team/stops/N212aeb"], ["https://tec.openplanner.team/stops/H4bo114b", "https://tec.openplanner.team/stops/H4bo182b"], ["https://tec.openplanner.team/stops/X882ahb", "https://tec.openplanner.team/stops/X882ala"], ["https://tec.openplanner.team/stops/H4mo207b", "https://tec.openplanner.team/stops/H4mo208a"], ["https://tec.openplanner.team/stops/LOccarr1", "https://tec.openplanner.team/stops/LTestat2"], ["https://tec.openplanner.team/stops/H1ms252c", "https://tec.openplanner.team/stops/H1ms294a"], ["https://tec.openplanner.team/stops/LsVrodt1", "https://tec.openplanner.team/stops/LsVviel1"], ["https://tec.openplanner.team/stops/Lwakipe1", "https://tec.openplanner.team/stops/Lwapont1"], ["https://tec.openplanner.team/stops/LPohoeg1", "https://tec.openplanner.team/stops/LSPbalm2"], ["https://tec.openplanner.team/stops/N501dpb", "https://tec.openplanner.team/stops/N501klb"], ["https://tec.openplanner.team/stops/Bdvmccu1", "https://tec.openplanner.team/stops/Bdvmccu2"], ["https://tec.openplanner.team/stops/LLRbleh1", "https://tec.openplanner.team/stops/LPclaro1"], ["https://tec.openplanner.team/stops/H5st161b", "https://tec.openplanner.team/stops/H5st164b"], ["https://tec.openplanner.team/stops/H4hq132b", "https://tec.openplanner.team/stops/H4ms145a"], ["https://tec.openplanner.team/stops/LHNcreh1", "https://tec.openplanner.team/stops/LHNvill1"], ["https://tec.openplanner.team/stops/LBAbooz2", "https://tec.openplanner.team/stops/LHOgymn1"], ["https://tec.openplanner.team/stops/H1cu124b", "https://tec.openplanner.team/stops/H1cu129a"], ["https://tec.openplanner.team/stops/X651aea", "https://tec.openplanner.team/stops/X651aeb"], ["https://tec.openplanner.team/stops/Cmlfstt2", "https://tec.openplanner.team/stops/Cmlvitf1"], ["https://tec.openplanner.team/stops/LSzeg--2", "https://tec.openplanner.team/stops/N506bxa"], ["https://tec.openplanner.team/stops/Bbbksth1", "https://tec.openplanner.team/stops/Bhmmvdu1"], ["https://tec.openplanner.team/stops/Bcbqcim1", "https://tec.openplanner.team/stops/Btubcal1"], ["https://tec.openplanner.team/stops/Ljehotv1", "https://tec.openplanner.team/stops/Ltihala1"], ["https://tec.openplanner.team/stops/Lmnjeha2", "https://tec.openplanner.team/stops/Lmnsech1"], ["https://tec.openplanner.team/stops/LAUbirv2", "https://tec.openplanner.team/stops/LHCcroy2"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Lmolagu1"], ["https://tec.openplanner.team/stops/Bwavcen1", "https://tec.openplanner.team/stops/Bwaveur2"], ["https://tec.openplanner.team/stops/LSIgera2", "https://tec.openplanner.team/stops/LSIters2"], ["https://tec.openplanner.team/stops/H1er106b", "https://tec.openplanner.team/stops/H1gg117b"], ["https://tec.openplanner.team/stops/N565abb", "https://tec.openplanner.team/stops/N565acb"], ["https://tec.openplanner.team/stops/NR10aaa", "https://tec.openplanner.team/stops/NR21aeb"], ["https://tec.openplanner.team/stops/H4pi132a", "https://tec.openplanner.team/stops/H4pi132b"], ["https://tec.openplanner.team/stops/N513alb", "https://tec.openplanner.team/stops/N513bbd"], ["https://tec.openplanner.team/stops/X882aka", "https://tec.openplanner.team/stops/X882akb"], ["https://tec.openplanner.team/stops/X660ahb", "https://tec.openplanner.team/stops/X660ajb"], ["https://tec.openplanner.team/stops/H1bo106b", "https://tec.openplanner.team/stops/H1bo106c"], ["https://tec.openplanner.team/stops/N544acb", "https://tec.openplanner.team/stops/N545aab"], ["https://tec.openplanner.team/stops/Lhuferm1", "https://tec.openplanner.team/stops/LTHroch2"], ["https://tec.openplanner.team/stops/H5el112b", "https://tec.openplanner.team/stops/H5el114b"], ["https://tec.openplanner.team/stops/N568adb", "https://tec.openplanner.team/stops/N568aea"], ["https://tec.openplanner.team/stops/LrAdrie3", "https://tec.openplanner.team/stops/LrApont1"], ["https://tec.openplanner.team/stops/Laltrav1", "https://tec.openplanner.team/stops/Lanschu2"], ["https://tec.openplanner.team/stops/X624aaa", "https://tec.openplanner.team/stops/X624abb"], ["https://tec.openplanner.team/stops/LTHchiv2", "https://tec.openplanner.team/stops/LTHturo1"], ["https://tec.openplanner.team/stops/Bfelbri1", "https://tec.openplanner.team/stops/Bfelbri2"], ["https://tec.openplanner.team/stops/Brsrcha2", "https://tec.openplanner.team/stops/Brsrpar2"], ["https://tec.openplanner.team/stops/Llgguer1", "https://tec.openplanner.team/stops/Llghopo2"], ["https://tec.openplanner.team/stops/N506bad", "https://tec.openplanner.team/stops/N506bma"], ["https://tec.openplanner.team/stops/X923aga", "https://tec.openplanner.team/stops/X923aia"], ["https://tec.openplanner.team/stops/LrUgeme2", "https://tec.openplanner.team/stops/LrUkult2"], ["https://tec.openplanner.team/stops/N127adb", "https://tec.openplanner.team/stops/N127bba"], ["https://tec.openplanner.team/stops/Cthnord1", "https://tec.openplanner.team/stops/Cthpibl1"], ["https://tec.openplanner.team/stops/H4be149a", "https://tec.openplanner.team/stops/H4be149b"], ["https://tec.openplanner.team/stops/X650ama", "https://tec.openplanner.team/stops/X650ana"], ["https://tec.openplanner.team/stops/Bgnvbsi1", "https://tec.openplanner.team/stops/Bgnvbsi2"], ["https://tec.openplanner.team/stops/X911aib", "https://tec.openplanner.team/stops/X911ajb"], ["https://tec.openplanner.team/stops/Cmlcaya1", "https://tec.openplanner.team/stops/Cmlener1"], ["https://tec.openplanner.team/stops/X638aha", "https://tec.openplanner.team/stops/X638aia"], ["https://tec.openplanner.team/stops/Lceconf2", "https://tec.openplanner.team/stops/Lgrjobe2"], ["https://tec.openplanner.team/stops/H1hh115a", "https://tec.openplanner.team/stops/H1hh115b"], ["https://tec.openplanner.team/stops/H5ma186a", "https://tec.openplanner.team/stops/H5ma186b"], ["https://tec.openplanner.team/stops/Bolgegl1", "https://tec.openplanner.team/stops/Bolgegl2"], ["https://tec.openplanner.team/stops/LlZbell2", "https://tec.openplanner.team/stops/LlZkirc2"], ["https://tec.openplanner.team/stops/H1je213b", "https://tec.openplanner.team/stops/H1je220c"], ["https://tec.openplanner.team/stops/X724ada", "https://tec.openplanner.team/stops/X724aeb"], ["https://tec.openplanner.team/stops/Baudsta2", "https://tec.openplanner.team/stops/Bkrapri2"], ["https://tec.openplanner.team/stops/Ljumesa1", "https://tec.openplanner.team/stops/Lsweg--1"], ["https://tec.openplanner.team/stops/H1mk108b", "https://tec.openplanner.team/stops/H1mk112a"], ["https://tec.openplanner.team/stops/LBOholt2", "https://tec.openplanner.team/stops/LMucarr1"], ["https://tec.openplanner.team/stops/LCPconf1", "https://tec.openplanner.team/stops/LCPecli2"], ["https://tec.openplanner.team/stops/X576ada", "https://tec.openplanner.team/stops/X576ahb"], ["https://tec.openplanner.team/stops/H1te173b", "https://tec.openplanner.team/stops/H1te190b"], ["https://tec.openplanner.team/stops/X826aaa", "https://tec.openplanner.team/stops/X860aba"], ["https://tec.openplanner.team/stops/X512aja", "https://tec.openplanner.team/stops/X595aaa"], ["https://tec.openplanner.team/stops/LaMschr2", "https://tec.openplanner.team/stops/LdEkreu2"], ["https://tec.openplanner.team/stops/X614aeb", "https://tec.openplanner.team/stops/X614ayb"], ["https://tec.openplanner.team/stops/X715acb", "https://tec.openplanner.team/stops/X715apb"], ["https://tec.openplanner.team/stops/N532aab", "https://tec.openplanner.team/stops/N532ana"], ["https://tec.openplanner.team/stops/N509ada", "https://tec.openplanner.team/stops/N511aqa"], ["https://tec.openplanner.team/stops/LWAwegg1", "https://tec.openplanner.team/stops/LWAwegg2"], ["https://tec.openplanner.team/stops/Bptecar1", "https://tec.openplanner.team/stops/Brebrog2"], ["https://tec.openplanner.team/stops/LbUmors2", "https://tec.openplanner.team/stops/LhDkreu4"], ["https://tec.openplanner.team/stops/N554afb", "https://tec.openplanner.team/stops/N554aha"], ["https://tec.openplanner.team/stops/LSuusin1", "https://tec.openplanner.team/stops/Lvepoud1"], ["https://tec.openplanner.team/stops/LHEches1", "https://tec.openplanner.team/stops/LHEches3"], ["https://tec.openplanner.team/stops/X744acb", "https://tec.openplanner.team/stops/X744afa"], ["https://tec.openplanner.team/stops/Cfaterg3", "https://tec.openplanner.team/stops/Crsmonu2"], ["https://tec.openplanner.team/stops/LCRvert2", "https://tec.openplanner.team/stops/LOdcris2"], ["https://tec.openplanner.team/stops/LWAlong1", "https://tec.openplanner.team/stops/LWAlong3"], ["https://tec.openplanner.team/stops/LhGkirc6", "https://tec.openplanner.team/stops/LhGrote2"], ["https://tec.openplanner.team/stops/X873aba", "https://tec.openplanner.team/stops/X873abb"], ["https://tec.openplanner.team/stops/Cpibois1", "https://tec.openplanner.team/stops/Cpibois2"], ["https://tec.openplanner.team/stops/Bnilpie1", "https://tec.openplanner.team/stops/Bwlhpmt3"], ["https://tec.openplanner.team/stops/Bcercab1", "https://tec.openplanner.team/stops/Bcerldo1"], ["https://tec.openplanner.team/stops/Llghlau1", "https://tec.openplanner.team/stops/Llglaur1"], ["https://tec.openplanner.team/stops/LTB105-2", "https://tec.openplanner.team/stops/LTBeg--1"], ["https://tec.openplanner.team/stops/LVBdela1", "https://tec.openplanner.team/stops/LVBeg--2"], ["https://tec.openplanner.team/stops/X774adb", "https://tec.openplanner.team/stops/X774add"], ["https://tec.openplanner.team/stops/Csyplac2", "https://tec.openplanner.team/stops/H1mb129a"], ["https://tec.openplanner.team/stops/Bincfer2", "https://tec.openplanner.team/stops/Bopplon1"], ["https://tec.openplanner.team/stops/X607abb", "https://tec.openplanner.team/stops/X607acb"], ["https://tec.openplanner.team/stops/H1bo108a", "https://tec.openplanner.team/stops/H1bo110b"], ["https://tec.openplanner.team/stops/X641afc", "https://tec.openplanner.team/stops/X641afd"], ["https://tec.openplanner.team/stops/H4ef109a", "https://tec.openplanner.team/stops/H4ef138a"], ["https://tec.openplanner.team/stops/LHrbast2", "https://tec.openplanner.team/stops/LHrchez1"], ["https://tec.openplanner.team/stops/H1sy144a", "https://tec.openplanner.team/stops/H1sy147b"], ["https://tec.openplanner.team/stops/LWbcarr1", "https://tec.openplanner.team/stops/X512aab"], ["https://tec.openplanner.team/stops/N501eaa", "https://tec.openplanner.team/stops/N501kqa"], ["https://tec.openplanner.team/stops/N508alb", "https://tec.openplanner.team/stops/N508aoa"], ["https://tec.openplanner.team/stops/Claptcf1", "https://tec.openplanner.team/stops/NC23aca"], ["https://tec.openplanner.team/stops/LnEmett1", "https://tec.openplanner.team/stops/LnEmett2"], ["https://tec.openplanner.team/stops/X818aib", "https://tec.openplanner.team/stops/X818aja"], ["https://tec.openplanner.team/stops/N501fdd", "https://tec.openplanner.team/stops/N501lzb"], ["https://tec.openplanner.team/stops/Blhulil2", "https://tec.openplanner.team/stops/Blhupqu1"], ["https://tec.openplanner.team/stops/N145aka", "https://tec.openplanner.team/stops/N150aka"], ["https://tec.openplanner.team/stops/N531ahb", "https://tec.openplanner.team/stops/N576ajb"], ["https://tec.openplanner.team/stops/H4ar172b", "https://tec.openplanner.team/stops/H4ho121b"], ["https://tec.openplanner.team/stops/N506boa", "https://tec.openplanner.team/stops/N506bod"], ["https://tec.openplanner.team/stops/LVAbloe1", "https://tec.openplanner.team/stops/LVApark1"], ["https://tec.openplanner.team/stops/LNEgaul3", "https://tec.openplanner.team/stops/LNEgaul4"], ["https://tec.openplanner.team/stops/H5bs102a", "https://tec.openplanner.team/stops/H5bs102b"], ["https://tec.openplanner.team/stops/H4ry129a", "https://tec.openplanner.team/stops/H4ry129b"], ["https://tec.openplanner.team/stops/N501crc", "https://tec.openplanner.team/stops/N501cta"], ["https://tec.openplanner.team/stops/Crasabl2", "https://tec.openplanner.team/stops/Crasabl3"], ["https://tec.openplanner.team/stops/Cobcent1", "https://tec.openplanner.team/stops/Cobcent2"], ["https://tec.openplanner.team/stops/X869acb", "https://tec.openplanner.team/stops/X869ada"], ["https://tec.openplanner.team/stops/X675aba", "https://tec.openplanner.team/stops/X817aeb"], ["https://tec.openplanner.team/stops/LFRrohe1", "https://tec.openplanner.team/stops/LFRrohe2"], ["https://tec.openplanner.team/stops/LCEeg--2", "https://tec.openplanner.team/stops/LMEpech2"], ["https://tec.openplanner.team/stops/X396afb", "https://tec.openplanner.team/stops/X917aka"], ["https://tec.openplanner.team/stops/LHhchau1", "https://tec.openplanner.team/stops/LHhmohe1"], ["https://tec.openplanner.team/stops/H2mg137a", "https://tec.openplanner.team/stops/H2mg141a"], ["https://tec.openplanner.team/stops/X662afb", "https://tec.openplanner.team/stops/X662aha"], ["https://tec.openplanner.team/stops/Ctucamb1", "https://tec.openplanner.team/stops/Ctuosso1"], ["https://tec.openplanner.team/stops/N347aca", "https://tec.openplanner.team/stops/X347aaa"], ["https://tec.openplanner.team/stops/X937aca", "https://tec.openplanner.team/stops/X945ada"], ["https://tec.openplanner.team/stops/Bbonbcr1", "https://tec.openplanner.team/stops/Bdvm4ca1"], ["https://tec.openplanner.team/stops/H2an109b", "https://tec.openplanner.team/stops/H2le150b"], ["https://tec.openplanner.team/stops/N149aha", "https://tec.openplanner.team/stops/N154ada"], ["https://tec.openplanner.team/stops/LBzec--2", "https://tec.openplanner.team/stops/LVMborl2"], ["https://tec.openplanner.team/stops/H1mj123a", "https://tec.openplanner.team/stops/H1mj124a"], ["https://tec.openplanner.team/stops/N551anb", "https://tec.openplanner.team/stops/N551aob"], ["https://tec.openplanner.team/stops/H4de113a", "https://tec.openplanner.team/stops/H4de114a"], ["https://tec.openplanner.team/stops/X602ada", "https://tec.openplanner.team/stops/X602aqa"], ["https://tec.openplanner.team/stops/LFlpark*", "https://tec.openplanner.team/stops/LSkkeri1"], ["https://tec.openplanner.team/stops/Lhrabho1", "https://tec.openplanner.team/stops/Lhrabho2"], ["https://tec.openplanner.team/stops/H1as100a", "https://tec.openplanner.team/stops/H1bn113a"], ["https://tec.openplanner.team/stops/Lrcchar2", "https://tec.openplanner.team/stops/Lrccomm1"], ["https://tec.openplanner.team/stops/Llgcrgu2", "https://tec.openplanner.team/stops/Llggram2"], ["https://tec.openplanner.team/stops/Ccpblpo2", "https://tec.openplanner.team/stops/H2ch123b"], ["https://tec.openplanner.team/stops/Bheneco2", "https://tec.openplanner.team/stops/Bhengou2"], ["https://tec.openplanner.team/stops/NH01ana", "https://tec.openplanner.team/stops/NH01aua"], ["https://tec.openplanner.team/stops/Cchcase3", "https://tec.openplanner.team/stops/Cchcase4"], ["https://tec.openplanner.team/stops/Lloauto1", "https://tec.openplanner.team/stops/Llofort2"], ["https://tec.openplanner.team/stops/H1cv102a", "https://tec.openplanner.team/stops/H1ml110a"], ["https://tec.openplanner.team/stops/X986aea", "https://tec.openplanner.team/stops/X986aeb"], ["https://tec.openplanner.team/stops/H1em106b", "https://tec.openplanner.team/stops/H1em107a"], ["https://tec.openplanner.team/stops/X897afb", "https://tec.openplanner.team/stops/X985ada"], ["https://tec.openplanner.team/stops/Bgzddmo2", "https://tec.openplanner.team/stops/Bgzdgli2"], ["https://tec.openplanner.team/stops/H2bh110c", "https://tec.openplanner.team/stops/H2bh120b"], ["https://tec.openplanner.team/stops/Lprferm2", "https://tec.openplanner.team/stops/Lprhodi1"], ["https://tec.openplanner.team/stops/X733aia", "https://tec.openplanner.team/stops/X733alb"], ["https://tec.openplanner.team/stops/H4lz126a", "https://tec.openplanner.team/stops/H4lz158b"], ["https://tec.openplanner.team/stops/N501haa", "https://tec.openplanner.team/stops/N501hxb"], ["https://tec.openplanner.team/stops/X660aaa", "https://tec.openplanner.team/stops/X660aab"], ["https://tec.openplanner.team/stops/H1sb147a", "https://tec.openplanner.team/stops/H1sb147b"], ["https://tec.openplanner.team/stops/LBUrout1", "https://tec.openplanner.team/stops/LBUvall1"], ["https://tec.openplanner.team/stops/H1nm138b", "https://tec.openplanner.team/stops/H1si156a"], ["https://tec.openplanner.team/stops/X601asb", "https://tec.openplanner.team/stops/X601aua"], ["https://tec.openplanner.team/stops/H5rx137a", "https://tec.openplanner.team/stops/H5rx137b"], ["https://tec.openplanner.team/stops/LREgar-1", "https://tec.openplanner.team/stops/LREgare2"], ["https://tec.openplanner.team/stops/N579afa", "https://tec.openplanner.team/stops/N579afb"], ["https://tec.openplanner.team/stops/Cglfrom1", "https://tec.openplanner.team/stops/Cgnpass1"], ["https://tec.openplanner.team/stops/Blimch%C3%A22", "https://tec.openplanner.team/stops/Bottpin2"], ["https://tec.openplanner.team/stops/N874afa", "https://tec.openplanner.team/stops/N874ahb"], ["https://tec.openplanner.team/stops/Blhurcl1", "https://tec.openplanner.team/stops/Bovelge2"], ["https://tec.openplanner.team/stops/Ccyfede1", "https://tec.openplanner.team/stops/Ccymabo1"], ["https://tec.openplanner.team/stops/Lgrclin4", "https://tec.openplanner.team/stops/Lgrwill2"], ["https://tec.openplanner.team/stops/NL80aia", "https://tec.openplanner.team/stops/NL80aib"], ["https://tec.openplanner.team/stops/H2ll172a", "https://tec.openplanner.team/stops/H2ll183a"], ["https://tec.openplanner.team/stops/X950aab", "https://tec.openplanner.team/stops/X950adb"], ["https://tec.openplanner.team/stops/H1mx122b", "https://tec.openplanner.team/stops/H1mx123b"], ["https://tec.openplanner.team/stops/H1le122a", "https://tec.openplanner.team/stops/H1le130b"], ["https://tec.openplanner.team/stops/N232bva", "https://tec.openplanner.team/stops/N260aeb"], ["https://tec.openplanner.team/stops/N232bab", "https://tec.openplanner.team/stops/N232bbb"], ["https://tec.openplanner.team/stops/Llonaes1", "https://tec.openplanner.team/stops/Lloretr1"], ["https://tec.openplanner.team/stops/Lhrbell1", "https://tec.openplanner.team/stops/Lhrtunn1"], ["https://tec.openplanner.team/stops/X955aca", "https://tec.openplanner.team/stops/X955adb"], ["https://tec.openplanner.team/stops/H1gh365a", "https://tec.openplanner.team/stops/H1ms942a"], ["https://tec.openplanner.team/stops/Csdbosq1", "https://tec.openplanner.team/stops/Csdrofr1"], ["https://tec.openplanner.team/stops/Bneeblo2", "https://tec.openplanner.team/stops/Bneesan2"], ["https://tec.openplanner.team/stops/LSBsere4", "https://tec.openplanner.team/stops/LSktinc2"], ["https://tec.openplanner.team/stops/X750ada", "https://tec.openplanner.team/stops/X750afa"], ["https://tec.openplanner.team/stops/N507aab", "https://tec.openplanner.team/stops/NL68aab"], ["https://tec.openplanner.team/stops/N506alb", "https://tec.openplanner.team/stops/N506awa"], ["https://tec.openplanner.team/stops/LHThall3", "https://tec.openplanner.team/stops/LHThall4"], ["https://tec.openplanner.team/stops/LAmvent1", "https://tec.openplanner.team/stops/LAmvent2"], ["https://tec.openplanner.team/stops/Bottath1", "https://tec.openplanner.team/stops/Bottgar4"], ["https://tec.openplanner.team/stops/Bohncha2", "https://tec.openplanner.team/stops/Bohnman2"], ["https://tec.openplanner.team/stops/H1ju120c", "https://tec.openplanner.team/stops/H1ju120d"], ["https://tec.openplanner.team/stops/LMXaven2", "https://tec.openplanner.team/stops/LMXroye2"], ["https://tec.openplanner.team/stops/X808aib", "https://tec.openplanner.team/stops/X808akb"], ["https://tec.openplanner.team/stops/N501gpa", "https://tec.openplanner.team/stops/N501zaa"], ["https://tec.openplanner.team/stops/N347ada", "https://tec.openplanner.team/stops/N347adb"], ["https://tec.openplanner.team/stops/LPAeg--1", "https://tec.openplanner.team/stops/LWidepo2"], ["https://tec.openplanner.team/stops/X634aha", "https://tec.openplanner.team/stops/X634ahb"], ["https://tec.openplanner.team/stops/Bwatric1", "https://tec.openplanner.team/stops/Bwatric2"], ["https://tec.openplanner.team/stops/X634aca", "https://tec.openplanner.team/stops/X634acb"], ["https://tec.openplanner.team/stops/X904aka", "https://tec.openplanner.team/stops/X943aeb"], ["https://tec.openplanner.team/stops/Bcsebea1", "https://tec.openplanner.team/stops/Bottcba1"], ["https://tec.openplanner.team/stops/N578aaa", "https://tec.openplanner.team/stops/N578aab"], ["https://tec.openplanner.team/stops/N222aeb", "https://tec.openplanner.team/stops/X222aza"], ["https://tec.openplanner.team/stops/LBpbruy1", "https://tec.openplanner.team/stops/LBpecco4"], ["https://tec.openplanner.team/stops/H1em107a", "https://tec.openplanner.team/stops/H1em109a"], ["https://tec.openplanner.team/stops/H3br100a", "https://tec.openplanner.team/stops/H3br110b"], ["https://tec.openplanner.team/stops/Cchsud04", "https://tec.openplanner.team/stops/Cmlgoff2"], ["https://tec.openplanner.team/stops/Cjuecha2", "https://tec.openplanner.team/stops/Cjuruni2"], ["https://tec.openplanner.team/stops/Cfrmon3", "https://tec.openplanner.team/stops/Cfrmon4"], ["https://tec.openplanner.team/stops/Bmarfjo1", "https://tec.openplanner.team/stops/Bmarmco1"], ["https://tec.openplanner.team/stops/H4lg104a", "https://tec.openplanner.team/stops/H4ta135a"], ["https://tec.openplanner.team/stops/H1mb130b", "https://tec.openplanner.team/stops/H1mb136b"], ["https://tec.openplanner.team/stops/Clddelh1", "https://tec.openplanner.team/stops/Cldvign2"], ["https://tec.openplanner.team/stops/N503aea", "https://tec.openplanner.team/stops/N503aja"], ["https://tec.openplanner.team/stops/LlOkreu1", "https://tec.openplanner.team/stops/LlOkreu2"], ["https://tec.openplanner.team/stops/Crobass2", "https://tec.openplanner.team/stops/Cromonn2"], ["https://tec.openplanner.team/stops/H2an109a", "https://tec.openplanner.team/stops/H2ml114b"], ["https://tec.openplanner.team/stops/LHAarge1", "https://tec.openplanner.team/stops/LHAarge2"], ["https://tec.openplanner.team/stops/Bbiehev2", "https://tec.openplanner.team/stops/Bboncfv1"], ["https://tec.openplanner.team/stops/LAMfroi2", "https://tec.openplanner.team/stops/LAMweha1"], ["https://tec.openplanner.team/stops/X921aka", "https://tec.openplanner.team/stops/X921akb"], ["https://tec.openplanner.team/stops/Cvtgsar2", "https://tec.openplanner.team/stops/Cvtgsar3"], ["https://tec.openplanner.team/stops/LrEdic11", "https://tec.openplanner.team/stops/LrEviel1"], ["https://tec.openplanner.team/stops/Bwatabs1", "https://tec.openplanner.team/stops/Bwatbca2"], ["https://tec.openplanner.team/stops/H1le120a", "https://tec.openplanner.team/stops/H1le120b"], ["https://tec.openplanner.team/stops/X999ana", "https://tec.openplanner.team/stops/X999anb"], ["https://tec.openplanner.team/stops/H4bv146b", "https://tec.openplanner.team/stops/H5at129b"], ["https://tec.openplanner.team/stops/Cmcbriq3", "https://tec.openplanner.team/stops/Cmcbriq4"], ["https://tec.openplanner.team/stops/LSGhagn1", "https://tec.openplanner.team/stops/LSGhagn2"], ["https://tec.openplanner.team/stops/H4ch113a", "https://tec.openplanner.team/stops/H4vx364c"], ["https://tec.openplanner.team/stops/NC24aib", "https://tec.openplanner.team/stops/NC24ajb"], ["https://tec.openplanner.team/stops/H2bh103b", "https://tec.openplanner.team/stops/H2bh103d"], ["https://tec.openplanner.team/stops/H2go114d", "https://tec.openplanner.team/stops/H2go115b"], ["https://tec.openplanner.team/stops/LHUaveu2", "https://tec.openplanner.team/stops/LHUfoss*"], ["https://tec.openplanner.team/stops/X898aba", "https://tec.openplanner.team/stops/X898aob"], ["https://tec.openplanner.team/stops/X948aoa", "https://tec.openplanner.team/stops/X949aja"], ["https://tec.openplanner.team/stops/X758aba", "https://tec.openplanner.team/stops/X758acb"], ["https://tec.openplanner.team/stops/H1by106a", "https://tec.openplanner.team/stops/H1by106b"], ["https://tec.openplanner.team/stops/X952aka", "https://tec.openplanner.team/stops/X952akb"], ["https://tec.openplanner.team/stops/N539bbb", "https://tec.openplanner.team/stops/N540arb"], ["https://tec.openplanner.team/stops/H1wa136b", "https://tec.openplanner.team/stops/H1wa137b"], ["https://tec.openplanner.team/stops/Lmoboeu2", "https://tec.openplanner.team/stops/Lmochpl2"], ["https://tec.openplanner.team/stops/Blimch%C3%A21", "https://tec.openplanner.team/stops/Blimrof1"], ["https://tec.openplanner.team/stops/LBaeg--1", "https://tec.openplanner.team/stops/LBaeg--2"], ["https://tec.openplanner.team/stops/LHanest1", "https://tec.openplanner.team/stops/LHanest2"], ["https://tec.openplanner.team/stops/Lpeptra1", "https://tec.openplanner.team/stops/Lpeptra2"], ["https://tec.openplanner.team/stops/Brixfro3", "https://tec.openplanner.team/stops/Brixga11"], ["https://tec.openplanner.team/stops/Cchsud18", "https://tec.openplanner.team/stops/NC01aab"], ["https://tec.openplanner.team/stops/Bbiefon1", "https://tec.openplanner.team/stops/Bbiefon2"], ["https://tec.openplanner.team/stops/Bgliaau2", "https://tec.openplanner.team/stops/Bgligra1"], ["https://tec.openplanner.team/stops/N524aja", "https://tec.openplanner.team/stops/N525aja"], ["https://tec.openplanner.team/stops/H2le147c", "https://tec.openplanner.team/stops/H2le176b"], ["https://tec.openplanner.team/stops/N579aba", "https://tec.openplanner.team/stops/N579afa"], ["https://tec.openplanner.team/stops/H1pe130a", "https://tec.openplanner.team/stops/H1pe130b"], ["https://tec.openplanner.team/stops/H2tr249a", "https://tec.openplanner.team/stops/H2tr256a"], ["https://tec.openplanner.team/stops/N501bib", "https://tec.openplanner.team/stops/N501boa"], ["https://tec.openplanner.team/stops/Bborche1", "https://tec.openplanner.team/stops/Bborche2"], ["https://tec.openplanner.team/stops/Llgdony2", "https://tec.openplanner.team/stops/Llgmare1"], ["https://tec.openplanner.team/stops/Bglicsm1", "https://tec.openplanner.team/stops/Bgligra1"], ["https://tec.openplanner.team/stops/X825aaa", "https://tec.openplanner.team/stops/X825adb"], ["https://tec.openplanner.team/stops/LbHzent1", "https://tec.openplanner.team/stops/LrUwenz1"], ["https://tec.openplanner.team/stops/Bbchgod2", "https://tec.openplanner.team/stops/Bhalvla2"], ["https://tec.openplanner.team/stops/LBGvill2", "https://tec.openplanner.team/stops/LORroma1"], ["https://tec.openplanner.team/stops/Cgycvie2", "https://tec.openplanner.team/stops/Cgygayo4"], ["https://tec.openplanner.team/stops/H1vt195b", "https://tec.openplanner.team/stops/H1vt196b"], ["https://tec.openplanner.team/stops/LBEmich1", "https://tec.openplanner.team/stops/LDLbois2"], ["https://tec.openplanner.team/stops/Cmomalg2", "https://tec.openplanner.team/stops/Cromart1"], ["https://tec.openplanner.team/stops/Btstpch2", "https://tec.openplanner.team/stops/N524ama"], ["https://tec.openplanner.team/stops/H4he107a", "https://tec.openplanner.team/stops/H4he107b"], ["https://tec.openplanner.team/stops/X948ava", "https://tec.openplanner.team/stops/X948bba"], ["https://tec.openplanner.team/stops/LTIdjal2", "https://tec.openplanner.team/stops/LTIp%C3%A9pi2"], ["https://tec.openplanner.team/stops/X605afa", "https://tec.openplanner.team/stops/X634aib"], ["https://tec.openplanner.team/stops/X661ana", "https://tec.openplanner.team/stops/X661apb"], ["https://tec.openplanner.team/stops/Cjudaxi1", "https://tec.openplanner.team/stops/Cralimi2"], ["https://tec.openplanner.team/stops/Crebien1", "https://tec.openplanner.team/stops/Creespi1"], ["https://tec.openplanner.team/stops/H2bh113b", "https://tec.openplanner.team/stops/H2lc146a"], ["https://tec.openplanner.team/stops/Bovetwe2", "https://tec.openplanner.team/stops/Brsrfen1"], ["https://tec.openplanner.team/stops/LMIpatr4", "https://tec.openplanner.team/stops/LMIterr1"], ["https://tec.openplanner.team/stops/LBUplac1", "https://tec.openplanner.team/stops/NL30afa"], ["https://tec.openplanner.team/stops/X633aka", "https://tec.openplanner.team/stops/X633alb"], ["https://tec.openplanner.team/stops/H1te180a", "https://tec.openplanner.team/stops/H1te180b"], ["https://tec.openplanner.team/stops/Bclgmev1", "https://tec.openplanner.team/stops/Bclgpch1"], ["https://tec.openplanner.team/stops/N505amb", "https://tec.openplanner.team/stops/N512avb"], ["https://tec.openplanner.team/stops/H1au113b", "https://tec.openplanner.team/stops/H1mr126b"], ["https://tec.openplanner.team/stops/Ctmmath1", "https://tec.openplanner.team/stops/Ctmsncb2"], ["https://tec.openplanner.team/stops/N230aca", "https://tec.openplanner.team/stops/N231acb"], ["https://tec.openplanner.team/stops/H1cv101a", "https://tec.openplanner.team/stops/H1ju121b"], ["https://tec.openplanner.team/stops/LCnvill1", "https://tec.openplanner.team/stops/LFLetoi2"], ["https://tec.openplanner.team/stops/N535abb", "https://tec.openplanner.team/stops/N535adb"], ["https://tec.openplanner.team/stops/Lfhdonn2", "https://tec.openplanner.team/stops/Lfhxhor2"], ["https://tec.openplanner.team/stops/N529aca", "https://tec.openplanner.team/stops/N529aia"], ["https://tec.openplanner.team/stops/LBEbelf1", "https://tec.openplanner.team/stops/LBEoblu2"], ["https://tec.openplanner.team/stops/N132aab", "https://tec.openplanner.team/stops/N132abb"], ["https://tec.openplanner.team/stops/N514aaa", "https://tec.openplanner.team/stops/N514ajb"], ["https://tec.openplanner.team/stops/LTyh51-1", "https://tec.openplanner.team/stops/LTyhapp1"], ["https://tec.openplanner.team/stops/Lgrfalc1", "https://tec.openplanner.team/stops/Lgrfalc2"], ["https://tec.openplanner.team/stops/H4wn124a", "https://tec.openplanner.team/stops/H4wn130a"], ["https://tec.openplanner.team/stops/N321aeb", "https://tec.openplanner.team/stops/N387aba"], ["https://tec.openplanner.team/stops/Bsaumlk2", "https://tec.openplanner.team/stops/Bsaumlp2"], ["https://tec.openplanner.team/stops/Berncim3", "https://tec.openplanner.team/stops/Bernegl4"], ["https://tec.openplanner.team/stops/N147aea", "https://tec.openplanner.team/stops/N147aeb"], ["https://tec.openplanner.team/stops/X922aha", "https://tec.openplanner.team/stops/X922ahb"], ["https://tec.openplanner.team/stops/H2fa104a", "https://tec.openplanner.team/stops/H2me114b"], ["https://tec.openplanner.team/stops/Bbuztai1", "https://tec.openplanner.team/stops/Broscha2"], ["https://tec.openplanner.team/stops/LFrcent1", "https://tec.openplanner.team/stops/LRfcent2"], ["https://tec.openplanner.team/stops/H4my122a", "https://tec.openplanner.team/stops/H4my122b"], ["https://tec.openplanner.team/stops/Lmnhorl1", "https://tec.openplanner.team/stops/Lmnhorl3"], ["https://tec.openplanner.team/stops/N311aba", "https://tec.openplanner.team/stops/N311acb"], ["https://tec.openplanner.team/stops/LTPbeau2", "https://tec.openplanner.team/stops/LTPgare*"], ["https://tec.openplanner.team/stops/H1do120b", "https://tec.openplanner.team/stops/H1do131d"], ["https://tec.openplanner.team/stops/H1ms260a", "https://tec.openplanner.team/stops/H1ms308d"], ["https://tec.openplanner.team/stops/Blthwav1", "https://tec.openplanner.team/stops/Blthwav2"], ["https://tec.openplanner.team/stops/X618abb", "https://tec.openplanner.team/stops/X618aob"], ["https://tec.openplanner.team/stops/H1mv239a", "https://tec.openplanner.team/stops/H1mv239b"], ["https://tec.openplanner.team/stops/H1bi104b", "https://tec.openplanner.team/stops/H1mm121a"], ["https://tec.openplanner.team/stops/Bnivsba2", "https://tec.openplanner.team/stops/Bnivsho1"], ["https://tec.openplanner.team/stops/LHTbeau1", "https://tec.openplanner.team/stops/LHThall3"], ["https://tec.openplanner.team/stops/H4ep130a", "https://tec.openplanner.team/stops/H4ep131a"], ["https://tec.openplanner.team/stops/H1hw118b", "https://tec.openplanner.team/stops/H1so136b"], ["https://tec.openplanner.team/stops/N531ahb", "https://tec.openplanner.team/stops/N531aib"], ["https://tec.openplanner.team/stops/Bglibui1", "https://tec.openplanner.team/stops/NR21aeb"], ["https://tec.openplanner.team/stops/Bgnteco1", "https://tec.openplanner.team/stops/Bgnteco2"], ["https://tec.openplanner.team/stops/X595aha", "https://tec.openplanner.team/stops/X597anb"], ["https://tec.openplanner.team/stops/LHAheml2", "https://tec.openplanner.team/stops/Lvisere1"], ["https://tec.openplanner.team/stops/Lheazz-1", "https://tec.openplanner.team/stops/Lheloti1"], ["https://tec.openplanner.team/stops/Ljemont2", "https://tec.openplanner.team/stops/Lmocoop2"], ["https://tec.openplanner.team/stops/H4ev124a", "https://tec.openplanner.team/stops/H4ln130b"], ["https://tec.openplanner.team/stops/N101aea", "https://tec.openplanner.team/stops/N101aia"], ["https://tec.openplanner.team/stops/LBImili2", "https://tec.openplanner.team/stops/LBIvill2"], ["https://tec.openplanner.team/stops/Bgrhhot1", "https://tec.openplanner.team/stops/Bnvmfba1"], ["https://tec.openplanner.team/stops/Lbrlama2", "https://tec.openplanner.team/stops/Llgcorn3"], ["https://tec.openplanner.team/stops/Loubonc2", "https://tec.openplanner.team/stops/Louvivi1"], ["https://tec.openplanner.team/stops/X947abb", "https://tec.openplanner.team/stops/X947aeb"], ["https://tec.openplanner.team/stops/X811amb", "https://tec.openplanner.team/stops/X811apa"], ["https://tec.openplanner.team/stops/H5pe134b", "https://tec.openplanner.team/stops/H5pe139b"], ["https://tec.openplanner.team/stops/X666abb", "https://tec.openplanner.team/stops/X666aeb"], ["https://tec.openplanner.team/stops/H1br122b", "https://tec.openplanner.team/stops/H1br129a"], ["https://tec.openplanner.team/stops/H1qv114b", "https://tec.openplanner.team/stops/H1ro133a"], ["https://tec.openplanner.team/stops/N134acb", "https://tec.openplanner.team/stops/N134ajb"], ["https://tec.openplanner.team/stops/LHZcime2", "https://tec.openplanner.team/stops/LHZpara2"], ["https://tec.openplanner.team/stops/H1mm122a", "https://tec.openplanner.team/stops/H1mm125a"], ["https://tec.openplanner.team/stops/Llgangl1", "https://tec.openplanner.team/stops/Llgcadr6"], ["https://tec.openplanner.team/stops/X801aca", "https://tec.openplanner.team/stops/X801bta"], ["https://tec.openplanner.team/stops/H1tt106a", "https://tec.openplanner.team/stops/H1tt106b"], ["https://tec.openplanner.team/stops/LBrneli2", "https://tec.openplanner.team/stops/LMApape1"], ["https://tec.openplanner.team/stops/H4bc108a", "https://tec.openplanner.team/stops/H4wr173c"], ["https://tec.openplanner.team/stops/LBGjacq2", "https://tec.openplanner.team/stops/LGrchpl2"], ["https://tec.openplanner.team/stops/Cgrgend2", "https://tec.openplanner.team/stops/Cjojonc2"], ["https://tec.openplanner.team/stops/H5rx104b", "https://tec.openplanner.team/stops/H5rx105b"], ["https://tec.openplanner.team/stops/H5qu142a", "https://tec.openplanner.team/stops/H5qu144b"], ["https://tec.openplanner.team/stops/LClbloc2", "https://tec.openplanner.team/stops/LCltrib2"], ["https://tec.openplanner.team/stops/N109aaa", "https://tec.openplanner.team/stops/N109adc"], ["https://tec.openplanner.team/stops/Bbghepi2", "https://tec.openplanner.team/stops/Bquebth3"], ["https://tec.openplanner.team/stops/X801apb", "https://tec.openplanner.team/stops/X889aea"], ["https://tec.openplanner.team/stops/N544adb", "https://tec.openplanner.team/stops/N577aaa"], ["https://tec.openplanner.team/stops/Brsgecu2", "https://tec.openplanner.team/stops/Brsgpbo2"], ["https://tec.openplanner.team/stops/Livvill1", "https://tec.openplanner.team/stops/LRagrch2"], ["https://tec.openplanner.team/stops/N118akb", "https://tec.openplanner.team/stops/N147aba"], ["https://tec.openplanner.team/stops/N517aaa", "https://tec.openplanner.team/stops/N517aab"], ["https://tec.openplanner.team/stops/H1do114a", "https://tec.openplanner.team/stops/H1wi147a"], ["https://tec.openplanner.team/stops/X359aib", "https://tec.openplanner.team/stops/X359ala"], ["https://tec.openplanner.team/stops/N338aab", "https://tec.openplanner.team/stops/N338aga"], ["https://tec.openplanner.team/stops/N501cmd", "https://tec.openplanner.team/stops/N501ema"], ["https://tec.openplanner.team/stops/H1me112a", "https://tec.openplanner.team/stops/H1me117d"], ["https://tec.openplanner.team/stops/Canh1941", "https://tec.openplanner.team/stops/Cfosurs1"], ["https://tec.openplanner.team/stops/LGeborn1", "https://tec.openplanner.team/stops/LGegare2"], ["https://tec.openplanner.team/stops/Cmlhauc1", "https://tec.openplanner.team/stops/Cmlhauc3"], ["https://tec.openplanner.team/stops/LRGgrov2", "https://tec.openplanner.team/stops/LRGunio3"], ["https://tec.openplanner.team/stops/Bhvlbet1", "https://tec.openplanner.team/stops/Bhvltol1"], ["https://tec.openplanner.team/stops/LNEbois1", "https://tec.openplanner.team/stops/LNEtonv1"], ["https://tec.openplanner.team/stops/LMIgare1", "https://tec.openplanner.team/stops/LMIpatr4"], ["https://tec.openplanner.team/stops/Lvtcime1", "https://tec.openplanner.team/stops/Lvtcime2"], ["https://tec.openplanner.team/stops/LmAgruf1", "https://tec.openplanner.team/stops/LwTzent1"], ["https://tec.openplanner.team/stops/X802aqa", "https://tec.openplanner.team/stops/X882aha"], ["https://tec.openplanner.team/stops/LnUcamp1", "https://tec.openplanner.team/stops/LnUhohe2"], ["https://tec.openplanner.team/stops/X604aja", "https://tec.openplanner.team/stops/X604ala"], ["https://tec.openplanner.team/stops/LOucarr4", "https://tec.openplanner.team/stops/LOuplac2"], ["https://tec.openplanner.team/stops/H1an103b", "https://tec.openplanner.team/stops/H1bx107b"], ["https://tec.openplanner.team/stops/X619akb", "https://tec.openplanner.team/stops/X622aaa"], ["https://tec.openplanner.team/stops/X850afb", "https://tec.openplanner.team/stops/X850aga"], ["https://tec.openplanner.team/stops/LOdcris2", "https://tec.openplanner.team/stops/LOdkeme2"], ["https://tec.openplanner.team/stops/N538aca", "https://tec.openplanner.team/stops/N538acb"], ["https://tec.openplanner.team/stops/LBNeu711", "https://tec.openplanner.team/stops/LBNeu712"], ["https://tec.openplanner.team/stops/Lvchaus1", "https://tec.openplanner.team/stops/Lvchaus2"], ["https://tec.openplanner.team/stops/Craappa1", "https://tec.openplanner.team/stops/Cradest1"], ["https://tec.openplanner.team/stops/Bllnfle1", "https://tec.openplanner.team/stops/Bmsggra3"], ["https://tec.openplanner.team/stops/X982cea", "https://tec.openplanner.team/stops/X983aea"], ["https://tec.openplanner.team/stops/Baegm501", "https://tec.openplanner.team/stops/Baegpon2"], ["https://tec.openplanner.team/stops/H4wa150b", "https://tec.openplanner.team/stops/H4wa159b"], ["https://tec.openplanner.team/stops/N501jfb", "https://tec.openplanner.team/stops/N501jga"], ["https://tec.openplanner.team/stops/Brixpro3", "https://tec.openplanner.team/stops/Brixpro4"], ["https://tec.openplanner.team/stops/H1ba109a", "https://tec.openplanner.team/stops/H1ba120b"], ["https://tec.openplanner.team/stops/H5bl121b", "https://tec.openplanner.team/stops/H5bl144a"], ["https://tec.openplanner.team/stops/Lhufays2", "https://tec.openplanner.team/stops/Lhurfay2"], ["https://tec.openplanner.team/stops/N532akb", "https://tec.openplanner.team/stops/N533ada"], ["https://tec.openplanner.team/stops/H2na131a", "https://tec.openplanner.team/stops/H2na133a"], ["https://tec.openplanner.team/stops/LSNnoul2", "https://tec.openplanner.team/stops/LSNretr2"], ["https://tec.openplanner.team/stops/LlNlont2", "https://tec.openplanner.team/stops/LlNschu1"], ["https://tec.openplanner.team/stops/H1cu110a", "https://tec.openplanner.team/stops/H1fl136c"], ["https://tec.openplanner.team/stops/X639ama", "https://tec.openplanner.team/stops/X640aaa"], ["https://tec.openplanner.team/stops/Cchlefe1", "https://tec.openplanner.team/stops/Cchlefe2"], ["https://tec.openplanner.team/stops/X760afb", "https://tec.openplanner.team/stops/X788ahb"], ["https://tec.openplanner.team/stops/NL76ajb", "https://tec.openplanner.team/stops/NL77akb"], ["https://tec.openplanner.team/stops/LPTblan1", "https://tec.openplanner.team/stops/LPTeg--1"], ["https://tec.openplanner.team/stops/X919aab", "https://tec.openplanner.team/stops/X919abb"], ["https://tec.openplanner.team/stops/X901asa", "https://tec.openplanner.team/stops/X901axb"], ["https://tec.openplanner.team/stops/Lsnbrac2", "https://tec.openplanner.team/stops/Lsnbure1"], ["https://tec.openplanner.team/stops/Cchsud05", "https://tec.openplanner.team/stops/Cchsud13"], ["https://tec.openplanner.team/stops/H4bc104a", "https://tec.openplanner.team/stops/H5qu148a"], ["https://tec.openplanner.team/stops/Llgjasm2", "https://tec.openplanner.team/stops/Llgmont1"], ["https://tec.openplanner.team/stops/N104abb", "https://tec.openplanner.team/stops/N104aeb"], ["https://tec.openplanner.team/stops/N507aad", "https://tec.openplanner.team/stops/NL68aca"], ["https://tec.openplanner.team/stops/H2sv217a", "https://tec.openplanner.team/stops/H2tr257a"], ["https://tec.openplanner.team/stops/X901ara", "https://tec.openplanner.team/stops/X901bia"], ["https://tec.openplanner.team/stops/X746aib", "https://tec.openplanner.team/stops/X746ajb"], ["https://tec.openplanner.team/stops/Cfccol1", "https://tec.openplanner.team/stops/Cfcctru1"], ["https://tec.openplanner.team/stops/Bmoucoq1", "https://tec.openplanner.team/stops/Bottra91"], ["https://tec.openplanner.team/stops/Bvirflu1", "https://tec.openplanner.team/stops/Bvirflu2"], ["https://tec.openplanner.team/stops/LeUgulc2", "https://tec.openplanner.team/stops/LeUhaag2"], ["https://tec.openplanner.team/stops/LHMgrun2", "https://tec.openplanner.team/stops/LRmkast*"], ["https://tec.openplanner.team/stops/X780ajb", "https://tec.openplanner.team/stops/X790ama"], ["https://tec.openplanner.team/stops/LKmeg--1", "https://tec.openplanner.team/stops/LKmeg--2"], ["https://tec.openplanner.team/stops/Lflcle-3", "https://tec.openplanner.team/stops/Lflhott1"], ["https://tec.openplanner.team/stops/Ccpsecp1", "https://tec.openplanner.team/stops/Cptchea1"], ["https://tec.openplanner.team/stops/H5ma180a", "https://tec.openplanner.team/stops/H5ma180b"], ["https://tec.openplanner.team/stops/H3so169a", "https://tec.openplanner.team/stops/H3so172b"], ["https://tec.openplanner.team/stops/Cchcaya2", "https://tec.openplanner.team/stops/Cchdelf2"], ["https://tec.openplanner.team/stops/X724afa", "https://tec.openplanner.team/stops/X724aha"], ["https://tec.openplanner.team/stops/Binccha2", "https://tec.openplanner.team/stops/Binclib1"], ["https://tec.openplanner.team/stops/LSOboeu1", "https://tec.openplanner.team/stops/LSOboeu2"], ["https://tec.openplanner.team/stops/N150ahb", "https://tec.openplanner.team/stops/N150aib"], ["https://tec.openplanner.team/stops/Canrobe1", "https://tec.openplanner.team/stops/Canrsta2"], ["https://tec.openplanner.team/stops/LLrc1991", "https://tec.openplanner.team/stops/LLrc1992"], ["https://tec.openplanner.team/stops/X724adb", "https://tec.openplanner.team/stops/X724aeb"], ["https://tec.openplanner.team/stops/LDaeg--2", "https://tec.openplanner.team/stops/LLYtir-2"], ["https://tec.openplanner.team/stops/X801cga", "https://tec.openplanner.team/stops/X836ahb"], ["https://tec.openplanner.team/stops/H4ga161a", "https://tec.openplanner.team/stops/H4ga167b"], ["https://tec.openplanner.team/stops/X923ala", "https://tec.openplanner.team/stops/X923apb"], ["https://tec.openplanner.team/stops/NH01aoa", "https://tec.openplanner.team/stops/NH01aod"], ["https://tec.openplanner.team/stops/N507aha", "https://tec.openplanner.team/stops/N508aca"], ["https://tec.openplanner.team/stops/LEShony2", "https://tec.openplanner.team/stops/LESvign1"], ["https://tec.openplanner.team/stops/LHodomm2", "https://tec.openplanner.team/stops/LHolone2"], ["https://tec.openplanner.team/stops/Lseberg1", "https://tec.openplanner.team/stops/Lsemany1"], ["https://tec.openplanner.team/stops/N310aeb", "https://tec.openplanner.team/stops/X892agb"], ["https://tec.openplanner.team/stops/X952afb", "https://tec.openplanner.team/stops/X953aca"], ["https://tec.openplanner.team/stops/N308asa", "https://tec.openplanner.team/stops/N339aca"], ["https://tec.openplanner.team/stops/X911aua", "https://tec.openplanner.team/stops/X912akb"], ["https://tec.openplanner.team/stops/Bcrngat1", "https://tec.openplanner.team/stops/Bcrnsge2"], ["https://tec.openplanner.team/stops/N232avb", "https://tec.openplanner.team/stops/N232awb"], ["https://tec.openplanner.team/stops/N212akb", "https://tec.openplanner.team/stops/N212atb"], ["https://tec.openplanner.team/stops/LJesole1", "https://tec.openplanner.team/stops/LNvrout2"], ["https://tec.openplanner.team/stops/Causart2", "https://tec.openplanner.team/stops/N543cqa"], ["https://tec.openplanner.team/stops/Llglys-1", "https://tec.openplanner.team/stops/Llgnaim1"], ["https://tec.openplanner.team/stops/LWblesp1", "https://tec.openplanner.team/stops/X512aab"], ["https://tec.openplanner.team/stops/N302adb", "https://tec.openplanner.team/stops/N302aeb"], ["https://tec.openplanner.team/stops/LaSkape2", "https://tec.openplanner.team/stops/LwArabo1"], ["https://tec.openplanner.team/stops/LOreg--2", "https://tec.openplanner.team/stops/LTywyna1"], ["https://tec.openplanner.team/stops/X743aab", "https://tec.openplanner.team/stops/X752aba"], ["https://tec.openplanner.team/stops/X654aba", "https://tec.openplanner.team/stops/X654aib"], ["https://tec.openplanner.team/stops/NL78aka", "https://tec.openplanner.team/stops/NL79aab"], ["https://tec.openplanner.team/stops/LEnchan1", "https://tec.openplanner.team/stops/NL73aca"], ["https://tec.openplanner.team/stops/H2tr246a", "https://tec.openplanner.team/stops/H2tr246b"], ["https://tec.openplanner.team/stops/N501ija", "https://tec.openplanner.team/stops/N501ijb"], ["https://tec.openplanner.team/stops/LAMrich1", "https://tec.openplanner.team/stops/LJEpaqu2"], ["https://tec.openplanner.team/stops/Bblaall1", "https://tec.openplanner.team/stops/Bblaast2"], ["https://tec.openplanner.team/stops/LAWbrou2", "https://tec.openplanner.team/stops/LAWeg--2"], ["https://tec.openplanner.team/stops/H4mo138a", "https://tec.openplanner.team/stops/H4mo150b"], ["https://tec.openplanner.team/stops/H2ma202a", "https://tec.openplanner.team/stops/H2ma202b"], ["https://tec.openplanner.team/stops/H1ma231a", "https://tec.openplanner.team/stops/H1ma231b"], ["https://tec.openplanner.team/stops/X774acb", "https://tec.openplanner.team/stops/X774adc"], ["https://tec.openplanner.team/stops/Bbrlvil1", "https://tec.openplanner.team/stops/Buccmer1"], ["https://tec.openplanner.team/stops/X672afa", "https://tec.openplanner.team/stops/X672alb"], ["https://tec.openplanner.team/stops/LrUwenz1", "https://tec.openplanner.team/stops/LrUwenz2"], ["https://tec.openplanner.team/stops/Bbiehev1", "https://tec.openplanner.team/stops/Bboncfv1"], ["https://tec.openplanner.team/stops/X782aca", "https://tec.openplanner.team/stops/X782aeb"], ["https://tec.openplanner.team/stops/N506bbb", "https://tec.openplanner.team/stops/N506bhb"], ["https://tec.openplanner.team/stops/H4ty294a", "https://tec.openplanner.team/stops/H4ty330b"], ["https://tec.openplanner.team/stops/H2ll178a", "https://tec.openplanner.team/stops/H2ll187a"], ["https://tec.openplanner.team/stops/Lgrclos1", "https://tec.openplanner.team/stops/Lgrfrcu2"], ["https://tec.openplanner.team/stops/LsCback1", "https://tec.openplanner.team/stops/LsCkirc2"], ["https://tec.openplanner.team/stops/N236adb", "https://tec.openplanner.team/stops/N236aha"], ["https://tec.openplanner.team/stops/Btilsce1", "https://tec.openplanner.team/stops/Btilsce2"], ["https://tec.openplanner.team/stops/LDomoul1", "https://tec.openplanner.team/stops/LDomoul2"], ["https://tec.openplanner.team/stops/LCAwals2", "https://tec.openplanner.team/stops/LTGsucr2"], ["https://tec.openplanner.team/stops/N501loa", "https://tec.openplanner.team/stops/N538aab"], ["https://tec.openplanner.team/stops/H1sa114a", "https://tec.openplanner.team/stops/H1sa114b"], ["https://tec.openplanner.team/stops/LHNvill2", "https://tec.openplanner.team/stops/LMXempe1"], ["https://tec.openplanner.team/stops/Creespi1", "https://tec.openplanner.team/stops/Crewatb2"], ["https://tec.openplanner.team/stops/N501gma", "https://tec.openplanner.team/stops/N501lcz"], ["https://tec.openplanner.team/stops/N232bda", "https://tec.openplanner.team/stops/N232bdb"], ["https://tec.openplanner.team/stops/LHGvill1", "https://tec.openplanner.team/stops/LVltige2"], ["https://tec.openplanner.team/stops/X342afb", "https://tec.openplanner.team/stops/X361abb"], ["https://tec.openplanner.team/stops/N218aca", "https://tec.openplanner.team/stops/N218acc"], ["https://tec.openplanner.team/stops/X614ata", "https://tec.openplanner.team/stops/X614atb"], ["https://tec.openplanner.team/stops/Llmdeba1", "https://tec.openplanner.team/stops/Llmdela2"], ["https://tec.openplanner.team/stops/X897axa", "https://tec.openplanner.team/stops/X904ada"], ["https://tec.openplanner.team/stops/LGMforg2", "https://tec.openplanner.team/stops/LTRcarr2"], ["https://tec.openplanner.team/stops/Beclfde2", "https://tec.openplanner.team/stops/Bfelfde2"], ["https://tec.openplanner.team/stops/X754ahb", "https://tec.openplanner.team/stops/X754ala"], ["https://tec.openplanner.team/stops/N351atd", "https://tec.openplanner.team/stops/X358aba"], ["https://tec.openplanner.team/stops/X982anb", "https://tec.openplanner.team/stops/X982aqb"], ["https://tec.openplanner.team/stops/Bsenbmc2", "https://tec.openplanner.team/stops/H2mg149b"], ["https://tec.openplanner.team/stops/LSkoran2", "https://tec.openplanner.team/stops/LSktinc2"], ["https://tec.openplanner.team/stops/Llgnati1", "https://tec.openplanner.team/stops/Llgstap2"], ["https://tec.openplanner.team/stops/Lstbarb3", "https://tec.openplanner.team/stops/Lstbarb6"], ["https://tec.openplanner.team/stops/LAbchpl2", "https://tec.openplanner.team/stops/LScdina2"], ["https://tec.openplanner.team/stops/X725abb", "https://tec.openplanner.team/stops/X725ahb"], ["https://tec.openplanner.team/stops/N135ala", "https://tec.openplanner.team/stops/N135alb"], ["https://tec.openplanner.team/stops/Cmlchan2", "https://tec.openplanner.team/stops/Cmlgche1"], ["https://tec.openplanner.team/stops/N261afb", "https://tec.openplanner.team/stops/N261aha"], ["https://tec.openplanner.team/stops/LBivi--1", "https://tec.openplanner.team/stops/LHCponc3"], ["https://tec.openplanner.team/stops/X743aca", "https://tec.openplanner.team/stops/X744aaa"], ["https://tec.openplanner.team/stops/X820ama", "https://tec.openplanner.team/stops/X820amb"], ["https://tec.openplanner.team/stops/X547aaa", "https://tec.openplanner.team/stops/X561abb"], ["https://tec.openplanner.team/stops/H4bc104b", "https://tec.openplanner.team/stops/H4bc106b"], ["https://tec.openplanner.team/stops/H4lp125a", "https://tec.openplanner.team/stops/H4lp125b"], ["https://tec.openplanner.team/stops/X910ahb", "https://tec.openplanner.team/stops/X911akb"], ["https://tec.openplanner.team/stops/LTPnoup2", "https://tec.openplanner.team/stops/LTPspay1"], ["https://tec.openplanner.team/stops/H4wn126a", "https://tec.openplanner.team/stops/H4wn126b"], ["https://tec.openplanner.team/stops/X996aab", "https://tec.openplanner.team/stops/X996acb"], ["https://tec.openplanner.team/stops/LBoegli1", "https://tec.openplanner.team/stops/LBoegli2"], ["https://tec.openplanner.team/stops/H1gy116a", "https://tec.openplanner.team/stops/H1gy116b"], ["https://tec.openplanner.team/stops/X659aib", "https://tec.openplanner.team/stops/X659aja"], ["https://tec.openplanner.team/stops/Ltiegl-*", "https://tec.openplanner.team/stops/Ltipass2"], ["https://tec.openplanner.team/stops/X768aca", "https://tec.openplanner.team/stops/X769atb"], ["https://tec.openplanner.team/stops/H1em105a", "https://tec.openplanner.team/stops/H1em107a"], ["https://tec.openplanner.team/stops/H2sb228d", "https://tec.openplanner.team/stops/H2sb239c"], ["https://tec.openplanner.team/stops/H4lz125a", "https://tec.openplanner.team/stops/H4lz164a"], ["https://tec.openplanner.team/stops/X812aca", "https://tec.openplanner.team/stops/X812aja"], ["https://tec.openplanner.team/stops/LPurech2", "https://tec.openplanner.team/stops/LrEmeil1"], ["https://tec.openplanner.team/stops/Cgyobse2", "https://tec.openplanner.team/stops/Cgyplvi2"], ["https://tec.openplanner.team/stops/N163abb", "https://tec.openplanner.team/stops/N165acb"], ["https://tec.openplanner.team/stops/H4ca123b", "https://tec.openplanner.team/stops/H4ws159a"], ["https://tec.openplanner.team/stops/H2ch100c", "https://tec.openplanner.team/stops/H2ch108a"], ["https://tec.openplanner.team/stops/H1gr123a", "https://tec.openplanner.team/stops/H1gr123b"], ["https://tec.openplanner.team/stops/N553ahb", "https://tec.openplanner.team/stops/N554adb"], ["https://tec.openplanner.team/stops/Bwavgar3", "https://tec.openplanner.team/stops/Bwavgar4"], ["https://tec.openplanner.team/stops/Cbfgare2", "https://tec.openplanner.team/stops/Cctgiss2"], ["https://tec.openplanner.team/stops/LJuhaie2", "https://tec.openplanner.team/stops/LSDgris2"], ["https://tec.openplanner.team/stops/LATcorn1", "https://tec.openplanner.team/stops/LATpatu1"], ["https://tec.openplanner.team/stops/Brsga151", "https://tec.openplanner.team/stops/Brsgfbl4"], ["https://tec.openplanner.team/stops/X902ada", "https://tec.openplanner.team/stops/X999afa"], ["https://tec.openplanner.team/stops/X948ala", "https://tec.openplanner.team/stops/X948baa"], ["https://tec.openplanner.team/stops/Ctucour1", "https://tec.openplanner.team/stops/Ctucour2"], ["https://tec.openplanner.team/stops/Bmarlor1", "https://tec.openplanner.team/stops/Bmarmco1"], ["https://tec.openplanner.team/stops/H4cp103a", "https://tec.openplanner.team/stops/H4tp145a"], ["https://tec.openplanner.team/stops/X609adb", "https://tec.openplanner.team/stops/X609aea"], ["https://tec.openplanner.team/stops/LlNbruc2", "https://tec.openplanner.team/stops/LlNsc652"], ["https://tec.openplanner.team/stops/LeUnopr2", "https://tec.openplanner.team/stops/LeUrote1"], ["https://tec.openplanner.team/stops/Lbemc--1", "https://tec.openplanner.team/stops/Lbemc--2"], ["https://tec.openplanner.team/stops/X663ata", "https://tec.openplanner.team/stops/X663aya"], ["https://tec.openplanner.team/stops/Bblabos1", "https://tec.openplanner.team/stops/Bblabos2"], ["https://tec.openplanner.team/stops/N139acb", "https://tec.openplanner.team/stops/N139adb"], ["https://tec.openplanner.team/stops/Cnacent2", "https://tec.openplanner.team/stops/Cnacent4"], ["https://tec.openplanner.team/stops/N562ala", "https://tec.openplanner.team/stops/N562alc"], ["https://tec.openplanner.team/stops/LhIkirc*", "https://tec.openplanner.team/stops/LrDsage1"], ["https://tec.openplanner.team/stops/Bbrlrph1", "https://tec.openplanner.team/stops/Bbrlrph2"], ["https://tec.openplanner.team/stops/H4rm107a", "https://tec.openplanner.team/stops/H4rm113a"], ["https://tec.openplanner.team/stops/Bottcli2", "https://tec.openplanner.team/stops/Bottrfa4"], ["https://tec.openplanner.team/stops/LeLcrem2", "https://tec.openplanner.team/stops/LeLkalt1"], ["https://tec.openplanner.team/stops/H1hw120a", "https://tec.openplanner.team/stops/H1hw122a"], ["https://tec.openplanner.team/stops/LOmmer-2", "https://tec.openplanner.team/stops/LOmrela2"], ["https://tec.openplanner.team/stops/X812aia", "https://tec.openplanner.team/stops/X812axa"], ["https://tec.openplanner.team/stops/Lanetie2", "https://tec.openplanner.team/stops/Lrctec-2"], ["https://tec.openplanner.team/stops/Crgegli1", "https://tec.openplanner.team/stops/Crgegli2"], ["https://tec.openplanner.team/stops/N539apa", "https://tec.openplanner.team/stops/N539bda"], ["https://tec.openplanner.team/stops/X886aca", "https://tec.openplanner.team/stops/X886acb"], ["https://tec.openplanner.team/stops/H4te261a", "https://tec.openplanner.team/stops/H4te261b"], ["https://tec.openplanner.team/stops/Lgrfrcu2", "https://tec.openplanner.team/stops/Lgrfrhe2"], ["https://tec.openplanner.team/stops/LSAchef1", "https://tec.openplanner.team/stops/LSAvieu1"], ["https://tec.openplanner.team/stops/X666agb", "https://tec.openplanner.team/stops/X666aja"], ["https://tec.openplanner.team/stops/N577aga", "https://tec.openplanner.team/stops/N577agb"], ["https://tec.openplanner.team/stops/Lcepont2", "https://tec.openplanner.team/stops/Lcepont5"], ["https://tec.openplanner.team/stops/H4or115b", "https://tec.openplanner.team/stops/H4or116b"], ["https://tec.openplanner.team/stops/Lgrfalc1", "https://tec.openplanner.team/stops/Llggrav1"], ["https://tec.openplanner.team/stops/Lghprea2", "https://tec.openplanner.team/stops/Lghprea3"], ["https://tec.openplanner.team/stops/LkEhaag2", "https://tec.openplanner.team/stops/LkEl1211"], ["https://tec.openplanner.team/stops/Cgzcver1", "https://tec.openplanner.team/stops/Cmyedpa4"], ["https://tec.openplanner.team/stops/H1on128c", "https://tec.openplanner.team/stops/H1on128d"], ["https://tec.openplanner.team/stops/LBJlieg1", "https://tec.openplanner.team/stops/LBJlieg2"], ["https://tec.openplanner.team/stops/H1mk112a", "https://tec.openplanner.team/stops/H1mk115a"], ["https://tec.openplanner.team/stops/LWAgare*", "https://tec.openplanner.team/stops/LWAloui1"], ["https://tec.openplanner.team/stops/H2ep144a", "https://tec.openplanner.team/stops/H2re168b"], ["https://tec.openplanner.team/stops/Bbeagae2", "https://tec.openplanner.team/stops/Bzluqga2"], ["https://tec.openplanner.team/stops/X616aia", "https://tec.openplanner.team/stops/X616aib"], ["https://tec.openplanner.team/stops/H1ho144b", "https://tec.openplanner.team/stops/H1wg127a"], ["https://tec.openplanner.team/stops/LBEpier2", "https://tec.openplanner.team/stops/LNipre-1"], ["https://tec.openplanner.team/stops/Lflheid1", "https://tec.openplanner.team/stops/Lqbeg--1"], ["https://tec.openplanner.team/stops/Lcalaro1", "https://tec.openplanner.team/stops/Lcapisc1"], ["https://tec.openplanner.team/stops/N390afa", "https://tec.openplanner.team/stops/N390ama"], ["https://tec.openplanner.team/stops/H1ms289a", "https://tec.openplanner.team/stops/H1ms913a"], ["https://tec.openplanner.team/stops/LoUzent1", "https://tec.openplanner.team/stops/LwMzoll2"], ["https://tec.openplanner.team/stops/N310aaa", "https://tec.openplanner.team/stops/N312aca"], ["https://tec.openplanner.team/stops/X898aea", "https://tec.openplanner.team/stops/X898aeb"], ["https://tec.openplanner.team/stops/Bneecha2", "https://tec.openplanner.team/stops/Boplcar2"], ["https://tec.openplanner.team/stops/X547aib", "https://tec.openplanner.team/stops/X547ana"], ["https://tec.openplanner.team/stops/Llgbwez1", "https://tec.openplanner.team/stops/Llgdouf1"], ["https://tec.openplanner.team/stops/LLVfoss1", "https://tec.openplanner.team/stops/X561adb"], ["https://tec.openplanner.team/stops/Cladura3", "https://tec.openplanner.team/stops/NC23aba"], ["https://tec.openplanner.team/stops/Lflcle-4", "https://tec.openplanner.team/stops/Lflcle-5"], ["https://tec.openplanner.team/stops/H4oq224b", "https://tec.openplanner.team/stops/H4ty350a"], ["https://tec.openplanner.team/stops/Ccucorb1", "https://tec.openplanner.team/stops/Ccuseba2"], ["https://tec.openplanner.team/stops/LAYecol1", "https://tec.openplanner.team/stops/LAYecol2"], ["https://tec.openplanner.team/stops/X801aba", "https://tec.openplanner.team/stops/X802aqa"], ["https://tec.openplanner.team/stops/Ljubruy*", "https://tec.openplanner.team/stops/Ljubruy2"], ["https://tec.openplanner.team/stops/LLrgare1", "https://tec.openplanner.team/stops/LLrscie2"], ["https://tec.openplanner.team/stops/LLncime2", "https://tec.openplanner.team/stops/LPUmang2"], ["https://tec.openplanner.team/stops/Bgntffo1", "https://tec.openplanner.team/stops/Bvilpar1"], ["https://tec.openplanner.team/stops/H4ef110b", "https://tec.openplanner.team/stops/H4ef112b"], ["https://tec.openplanner.team/stops/LVIgare1", "https://tec.openplanner.team/stops/LVIhala4"], ["https://tec.openplanner.team/stops/N501byb", "https://tec.openplanner.team/stops/N501chb"], ["https://tec.openplanner.team/stops/Bsaumlk2", "https://tec.openplanner.team/stops/Bwlhcsr2"], ["https://tec.openplanner.team/stops/X624aca", "https://tec.openplanner.team/stops/X624aja"], ["https://tec.openplanner.team/stops/Lccaigr2", "https://tec.openplanner.team/stops/Lcceclu1"], ["https://tec.openplanner.team/stops/N553aba", "https://tec.openplanner.team/stops/N553aob"], ["https://tec.openplanner.team/stops/H2hp119b", "https://tec.openplanner.team/stops/H2ll183b"], ["https://tec.openplanner.team/stops/Bbourel1", "https://tec.openplanner.team/stops/Bboutry2"], ["https://tec.openplanner.team/stops/Lagarde1", "https://tec.openplanner.team/stops/Laggare2"], ["https://tec.openplanner.team/stops/LERboss2", "https://tec.openplanner.team/stops/LHrlorc1"], ["https://tec.openplanner.team/stops/LrEgend1", "https://tec.openplanner.team/stops/LrEviel2"], ["https://tec.openplanner.team/stops/X670apa", "https://tec.openplanner.team/stops/X671aaa"], ["https://tec.openplanner.team/stops/Clupcfe1", "https://tec.openplanner.team/stops/Clupcfe2"], ["https://tec.openplanner.team/stops/Cmtplac1", "https://tec.openplanner.team/stops/Cmtplac8"], ["https://tec.openplanner.team/stops/N524ajb", "https://tec.openplanner.team/stops/N524ala"], ["https://tec.openplanner.team/stops/X768alc", "https://tec.openplanner.team/stops/X768ama"], ["https://tec.openplanner.team/stops/Cplstfa1", "https://tec.openplanner.team/stops/Cplstfa3"], ["https://tec.openplanner.team/stops/Bmlncha1", "https://tec.openplanner.team/stops/Bmlnegl2"], ["https://tec.openplanner.team/stops/Lwachal1", "https://tec.openplanner.team/stops/Lwaeau-1"], ["https://tec.openplanner.team/stops/X946acb", "https://tec.openplanner.team/stops/X946afa"], ["https://tec.openplanner.team/stops/X758ajb", "https://tec.openplanner.team/stops/X758akb"], ["https://tec.openplanner.team/stops/N540aab", "https://tec.openplanner.team/stops/N540afb"], ["https://tec.openplanner.team/stops/Llochar4", "https://tec.openplanner.team/stops/Lloross1"], ["https://tec.openplanner.team/stops/Blpgeco1", "https://tec.openplanner.team/stops/Blpglon1"], ["https://tec.openplanner.team/stops/LhGfl242", "https://tec.openplanner.team/stops/LhGknip1"], ["https://tec.openplanner.team/stops/X926acb", "https://tec.openplanner.team/stops/X926afa"], ["https://tec.openplanner.team/stops/H1ms314a", "https://tec.openplanner.team/stops/H1ms314b"], ["https://tec.openplanner.team/stops/X616aab", "https://tec.openplanner.team/stops/X616abb"], ["https://tec.openplanner.team/stops/LrUbrac1", "https://tec.openplanner.team/stops/LrUweve1"], ["https://tec.openplanner.team/stops/X369aaa", "https://tec.openplanner.team/stops/X858aba"], ["https://tec.openplanner.team/stops/X759abb", "https://tec.openplanner.team/stops/X759acb"], ["https://tec.openplanner.team/stops/Clb4dgi1", "https://tec.openplanner.team/stops/Clbbonn4"], ["https://tec.openplanner.team/stops/N232aga", "https://tec.openplanner.team/stops/N261acb"], ["https://tec.openplanner.team/stops/N526aea", "https://tec.openplanner.team/stops/N526aeb"], ["https://tec.openplanner.team/stops/LLM4rou3", "https://tec.openplanner.team/stops/LLMfond2"], ["https://tec.openplanner.team/stops/N131aeb", "https://tec.openplanner.team/stops/NH21agb"], ["https://tec.openplanner.team/stops/N312aaa", "https://tec.openplanner.team/stops/X892aia"], ["https://tec.openplanner.team/stops/X870acb", "https://tec.openplanner.team/stops/X870ajb"], ["https://tec.openplanner.team/stops/X730aab", "https://tec.openplanner.team/stops/X730abb"], ["https://tec.openplanner.team/stops/LTIdamr1", "https://tec.openplanner.team/stops/LTIpora1"], ["https://tec.openplanner.team/stops/X898aha", "https://tec.openplanner.team/stops/X898ahb"], ["https://tec.openplanner.team/stops/Lqbecco1", "https://tec.openplanner.team/stops/Lqbecco2"], ["https://tec.openplanner.team/stops/LTHec--1", "https://tec.openplanner.team/stops/LTHwaux1"], ["https://tec.openplanner.team/stops/LHEches1", "https://tec.openplanner.team/stops/LHEepur1"], ["https://tec.openplanner.team/stops/LGe4bra2", "https://tec.openplanner.team/stops/LGecite1"], ["https://tec.openplanner.team/stops/H4ty321b", "https://tec.openplanner.team/stops/H4ty322a"], ["https://tec.openplanner.team/stops/X608aga", "https://tec.openplanner.team/stops/X608agb"], ["https://tec.openplanner.team/stops/X910aeb", "https://tec.openplanner.team/stops/X985aab"], ["https://tec.openplanner.team/stops/H4pe127a", "https://tec.openplanner.team/stops/H4pe127b"], ["https://tec.openplanner.team/stops/Csrcant1", "https://tec.openplanner.team/stops/Csrcant2"], ["https://tec.openplanner.team/stops/H4lz124a", "https://tec.openplanner.team/stops/H4lz128a"], ["https://tec.openplanner.team/stops/H1bo109a", "https://tec.openplanner.team/stops/H1bo109b"], ["https://tec.openplanner.team/stops/H1ms902a", "https://tec.openplanner.team/stops/H1ms903a"], ["https://tec.openplanner.team/stops/Lseprog1", "https://tec.openplanner.team/stops/Lsesabl2"], ["https://tec.openplanner.team/stops/H4bo113a", "https://tec.openplanner.team/stops/H4bo118c"], ["https://tec.openplanner.team/stops/Llgjenn2", "https://tec.openplanner.team/stops/Llgsnap5"], ["https://tec.openplanner.team/stops/H2ha128a", "https://tec.openplanner.team/stops/H2ha143b"], ["https://tec.openplanner.team/stops/N118afa", "https://tec.openplanner.team/stops/N118afb"], ["https://tec.openplanner.team/stops/LbTaral1", "https://tec.openplanner.team/stops/LbThutt1"], ["https://tec.openplanner.team/stops/H4do102b", "https://tec.openplanner.team/stops/H4do107d"], ["https://tec.openplanner.team/stops/N232aza", "https://tec.openplanner.team/stops/N232bna"], ["https://tec.openplanner.team/stops/H1ne141a", "https://tec.openplanner.team/stops/H1ne142a"], ["https://tec.openplanner.team/stops/X664aka", "https://tec.openplanner.team/stops/X664ala"], ["https://tec.openplanner.team/stops/Ccigene1", "https://tec.openplanner.team/stops/Ccipano1"], ["https://tec.openplanner.team/stops/X725aef", "https://tec.openplanner.team/stops/X725apb"], ["https://tec.openplanner.team/stops/X618ahb", "https://tec.openplanner.team/stops/X618apa"], ["https://tec.openplanner.team/stops/X754awb", "https://tec.openplanner.team/stops/X754aza"], ["https://tec.openplanner.team/stops/H2ch103a", "https://tec.openplanner.team/stops/H2ch109b"], ["https://tec.openplanner.team/stops/Cjurevo2", "https://tec.openplanner.team/stops/Clocroi2"], ["https://tec.openplanner.team/stops/Cmomoul4", "https://tec.openplanner.team/stops/Cmomoul6"], ["https://tec.openplanner.team/stops/H4wt159b", "https://tec.openplanner.team/stops/H5rx103a"], ["https://tec.openplanner.team/stops/LTIgare2", "https://tec.openplanner.team/stops/LTIpora2"], ["https://tec.openplanner.team/stops/Ljucomb1", "https://tec.openplanner.team/stops/Ljudeme1"], ["https://tec.openplanner.team/stops/H1ht133a", "https://tec.openplanner.team/stops/H1ht133b"], ["https://tec.openplanner.team/stops/NL76ada", "https://tec.openplanner.team/stops/NL76asb"], ["https://tec.openplanner.team/stops/X899aha", "https://tec.openplanner.team/stops/X899aib"], ["https://tec.openplanner.team/stops/H4wn131b", "https://tec.openplanner.team/stops/H4wn139a"], ["https://tec.openplanner.team/stops/N310aab", "https://tec.openplanner.team/stops/N310ada"], ["https://tec.openplanner.team/stops/X636aab", "https://tec.openplanner.team/stops/X636aoa"], ["https://tec.openplanner.team/stops/Lanfran1", "https://tec.openplanner.team/stops/Lanfran3"], ["https://tec.openplanner.team/stops/H1gi120a", "https://tec.openplanner.team/stops/H1gi120b"], ["https://tec.openplanner.team/stops/Lcheg--1", "https://tec.openplanner.team/stops/Lrahoig2"], ["https://tec.openplanner.team/stops/Lglcoun1", "https://tec.openplanner.team/stops/Lglvict1"], ["https://tec.openplanner.team/stops/Llgchal1", "https://tec.openplanner.team/stops/Llgcita1"], ["https://tec.openplanner.team/stops/N117atb", "https://tec.openplanner.team/stops/N571agb"], ["https://tec.openplanner.team/stops/X316aab", "https://tec.openplanner.team/stops/X316acb"], ["https://tec.openplanner.team/stops/N245aca", "https://tec.openplanner.team/stops/N287acb"], ["https://tec.openplanner.team/stops/N149acb", "https://tec.openplanner.team/stops/N149agb"], ["https://tec.openplanner.team/stops/LBPauto1", "https://tec.openplanner.team/stops/LBPmais1"], ["https://tec.openplanner.team/stops/N539axa", "https://tec.openplanner.team/stops/N539ayb"], ["https://tec.openplanner.team/stops/LMAbruy1", "https://tec.openplanner.team/stops/LMAgb--2"], ["https://tec.openplanner.team/stops/LOucuve2", "https://tec.openplanner.team/stops/LOuilc-*"], ["https://tec.openplanner.team/stops/X771abb", "https://tec.openplanner.team/stops/X773aob"], ["https://tec.openplanner.team/stops/Lhubriq2", "https://tec.openplanner.team/stops/Lmntast2"], ["https://tec.openplanner.team/stops/X725aub", "https://tec.openplanner.team/stops/X767aib"], ["https://tec.openplanner.team/stops/N232asb", "https://tec.openplanner.team/stops/N232bxa"], ["https://tec.openplanner.team/stops/LAVpequ1", "https://tec.openplanner.team/stops/LVHbrai1"], ["https://tec.openplanner.team/stops/LSParca1", "https://tec.openplanner.team/stops/LSPec--1"], ["https://tec.openplanner.team/stops/Btubbsc1", "https://tec.openplanner.team/stops/Btubmon2"], ["https://tec.openplanner.team/stops/LVEstat1", "https://tec.openplanner.team/stops/LVEstat2"], ["https://tec.openplanner.team/stops/Cbtbras1", "https://tec.openplanner.team/stops/Cbtgemi2"], ["https://tec.openplanner.team/stops/H5pe129a", "https://tec.openplanner.team/stops/H5pe135a"], ["https://tec.openplanner.team/stops/LCIneuv1", "https://tec.openplanner.team/stops/LMXroye1"], ["https://tec.openplanner.team/stops/N225aab", "https://tec.openplanner.team/stops/N225aca"], ["https://tec.openplanner.team/stops/H4ty346b", "https://tec.openplanner.team/stops/H4ty384a"], ["https://tec.openplanner.team/stops/X663aqb", "https://tec.openplanner.team/stops/X663arb"], ["https://tec.openplanner.team/stops/LNEtonv1", "https://tec.openplanner.team/stops/LNEvpn-1"], ["https://tec.openplanner.team/stops/Lbrbass1", "https://tec.openplanner.team/stops/Lbrfune*"], ["https://tec.openplanner.team/stops/N521aua", "https://tec.openplanner.team/stops/N521avb"], ["https://tec.openplanner.team/stops/X804aqa", "https://tec.openplanner.team/stops/X804aya"], ["https://tec.openplanner.team/stops/LBIcabi2", "https://tec.openplanner.team/stops/LFOchpl2"], ["https://tec.openplanner.team/stops/N503aka", "https://tec.openplanner.team/stops/N511aga"], ["https://tec.openplanner.team/stops/X790aib", "https://tec.openplanner.team/stops/X790amb"], ["https://tec.openplanner.team/stops/Brebcgi1", "https://tec.openplanner.team/stops/Brebgar1"], ["https://tec.openplanner.team/stops/LATabba2", "https://tec.openplanner.team/stops/LATdame1"], ["https://tec.openplanner.team/stops/LHUchin*", "https://tec.openplanner.team/stops/NL76aqa"], ["https://tec.openplanner.team/stops/Llgsime1", "https://tec.openplanner.team/stops/Llgtcha2"], ["https://tec.openplanner.team/stops/H1sp356a", "https://tec.openplanner.team/stops/H1sp357b"], ["https://tec.openplanner.team/stops/NL82aga", "https://tec.openplanner.team/stops/NL82agb"], ["https://tec.openplanner.team/stops/Blhupcl1", "https://tec.openplanner.team/stops/Blhupcl2"], ["https://tec.openplanner.team/stops/LSPdesc1", "https://tec.openplanner.team/stops/LSPdesc2"], ["https://tec.openplanner.team/stops/LBNpleg1", "https://tec.openplanner.team/stops/LBNplei1"], ["https://tec.openplanner.team/stops/X991afb", "https://tec.openplanner.team/stops/X991aga"], ["https://tec.openplanner.team/stops/LSOchau1", "https://tec.openplanner.team/stops/LSOchau2"], ["https://tec.openplanner.team/stops/Bohnhan2", "https://tec.openplanner.team/stops/Bohnrph2"], ["https://tec.openplanner.team/stops/X782aib", "https://tec.openplanner.team/stops/X784aea"], ["https://tec.openplanner.team/stops/Cmlbevu1", "https://tec.openplanner.team/stops/Cmlgoff2"], ["https://tec.openplanner.team/stops/LSpfond1", "https://tec.openplanner.team/stops/LSpfond2"], ["https://tec.openplanner.team/stops/LSLhall*", "https://tec.openplanner.team/stops/LVSpn--2"], ["https://tec.openplanner.team/stops/LSPchap3", "https://tec.openplanner.team/stops/LSPther2"], ["https://tec.openplanner.team/stops/Lkirenk1", "https://tec.openplanner.team/stops/Llgtunn2"], ["https://tec.openplanner.team/stops/LHocroi2", "https://tec.openplanner.team/stops/LJedonc2"], ["https://tec.openplanner.team/stops/H1ba111a", "https://tec.openplanner.team/stops/H1hh118b"], ["https://tec.openplanner.team/stops/Cfnegli1", "https://tec.openplanner.team/stops/N162acb"], ["https://tec.openplanner.team/stops/Lhurfay1", "https://tec.openplanner.team/stops/LTHroch2"], ["https://tec.openplanner.team/stops/X608aja", "https://tec.openplanner.team/stops/X608ama"], ["https://tec.openplanner.team/stops/X771ada", "https://tec.openplanner.team/stops/X771adb"], ["https://tec.openplanner.team/stops/Lvcreve1", "https://tec.openplanner.team/stops/Lvcreve2"], ["https://tec.openplanner.team/stops/X359aia", "https://tec.openplanner.team/stops/X359aib"], ["https://tec.openplanner.team/stops/Cmcegli2", "https://tec.openplanner.team/stops/Cmcwic1"], ["https://tec.openplanner.team/stops/LLrgara1", "https://tec.openplanner.team/stops/LLrhest2"], ["https://tec.openplanner.team/stops/Lseathe1", "https://tec.openplanner.team/stops/Lsesabl1"], ["https://tec.openplanner.team/stops/H1vh137a", "https://tec.openplanner.team/stops/H1vh137b"], ["https://tec.openplanner.team/stops/N120aea", "https://tec.openplanner.team/stops/N120aeb"], ["https://tec.openplanner.team/stops/LATmals1", "https://tec.openplanner.team/stops/LATmals2"], ["https://tec.openplanner.team/stops/X840adb", "https://tec.openplanner.team/stops/X840afb"], ["https://tec.openplanner.team/stops/LPAbour1", "https://tec.openplanner.team/stops/LPAvill1"], ["https://tec.openplanner.team/stops/H1hw123a", "https://tec.openplanner.team/stops/H1hw123b"], ["https://tec.openplanner.team/stops/N149aha", "https://tec.openplanner.team/stops/N149ahc"], ["https://tec.openplanner.team/stops/LhMmeil1", "https://tec.openplanner.team/stops/LhMmeil2"], ["https://tec.openplanner.team/stops/Cjualed1", "https://tec.openplanner.team/stops/Cjumest2"], ["https://tec.openplanner.team/stops/H1bd101b", "https://tec.openplanner.team/stops/H1hq128a"], ["https://tec.openplanner.team/stops/H4oq225a", "https://tec.openplanner.team/stops/H4oq229b"], ["https://tec.openplanner.team/stops/H1pw123a", "https://tec.openplanner.team/stops/H1wa158a"], ["https://tec.openplanner.team/stops/N501coa", "https://tec.openplanner.team/stops/N535apa"], ["https://tec.openplanner.team/stops/Bheneco2", "https://tec.openplanner.team/stops/Bhenron2"], ["https://tec.openplanner.team/stops/X354aca", "https://tec.openplanner.team/stops/X359aba"], ["https://tec.openplanner.team/stops/LJUfort1", "https://tec.openplanner.team/stops/Lladete4"], ["https://tec.openplanner.team/stops/LSPdesc2", "https://tec.openplanner.team/stops/LSPther2"], ["https://tec.openplanner.team/stops/LHUgole2", "https://tec.openplanner.team/stops/LTicent1"], ["https://tec.openplanner.team/stops/N145aga", "https://tec.openplanner.team/stops/N145agb"], ["https://tec.openplanner.team/stops/LAYcorn1", "https://tec.openplanner.team/stops/LAYlieg1"], ["https://tec.openplanner.team/stops/LWaanto1", "https://tec.openplanner.team/stops/LWalibo1"], ["https://tec.openplanner.team/stops/Llgamer3", "https://tec.openplanner.team/stops/Llgrema1"], ["https://tec.openplanner.team/stops/Lsmlina2", "https://tec.openplanner.team/stops/Lsmpost1"], ["https://tec.openplanner.team/stops/N534bnh", "https://tec.openplanner.team/stops/N534bpa"], ["https://tec.openplanner.team/stops/X727aga", "https://tec.openplanner.team/stops/X727aha"], ["https://tec.openplanner.team/stops/LhDkreu1", "https://tec.openplanner.team/stops/LmRh%C3%B6812"], ["https://tec.openplanner.team/stops/H3so171b", "https://tec.openplanner.team/stops/H3so174a"], ["https://tec.openplanner.team/stops/H1eo105a", "https://tec.openplanner.team/stops/H1eo107a"], ["https://tec.openplanner.team/stops/LNCchev1", "https://tec.openplanner.team/stops/LNCchev2"], ["https://tec.openplanner.team/stops/X888adb", "https://tec.openplanner.team/stops/X888afa"], ["https://tec.openplanner.team/stops/H4ry130a", "https://tec.openplanner.team/stops/H4ry140b"], ["https://tec.openplanner.team/stops/X993aea", "https://tec.openplanner.team/stops/X993aia"], ["https://tec.openplanner.team/stops/LTEkerk1", "https://tec.openplanner.team/stops/LTEnuro1"], ["https://tec.openplanner.team/stops/Llgcroi1", "https://tec.openplanner.team/stops/Llgqmar2"], ["https://tec.openplanner.team/stops/N511arb", "https://tec.openplanner.team/stops/N511aua"], ["https://tec.openplanner.team/stops/LAMgreg1", "https://tec.openplanner.team/stops/LAMhopi3"], ["https://tec.openplanner.team/stops/H1hn207a", "https://tec.openplanner.team/stops/H1hn210a"], ["https://tec.openplanner.team/stops/Ctisar1", "https://tec.openplanner.team/stops/H1tt104b"], ["https://tec.openplanner.team/stops/H1ob328b", "https://tec.openplanner.team/stops/H1ob336b"], ["https://tec.openplanner.team/stops/H2lh131b", "https://tec.openplanner.team/stops/H2mm140a"], ["https://tec.openplanner.team/stops/LOL6che1", "https://tec.openplanner.team/stops/LSHfief1"], ["https://tec.openplanner.team/stops/H1by106b", "https://tec.openplanner.team/stops/H1sy139b"], ["https://tec.openplanner.team/stops/LLbcafe2", "https://tec.openplanner.team/stops/LrEkreu2"], ["https://tec.openplanner.team/stops/Cmlpbay2", "https://tec.openplanner.team/stops/Cmlrang2"], ["https://tec.openplanner.team/stops/X721aab", "https://tec.openplanner.team/stops/X723amb"], ["https://tec.openplanner.team/stops/Bbcodam4", "https://tec.openplanner.team/stops/Bbcoubo2"], ["https://tec.openplanner.team/stops/Ltihala1", "https://tec.openplanner.team/stops/Ltimarq2"], ["https://tec.openplanner.team/stops/Bolgcsa2", "https://tec.openplanner.team/stops/Bolppsn2"], ["https://tec.openplanner.team/stops/N260aca", "https://tec.openplanner.team/stops/N270aaa"], ["https://tec.openplanner.team/stops/X662asb", "https://tec.openplanner.team/stops/X663ahb"], ["https://tec.openplanner.team/stops/LTEcamp2", "https://tec.openplanner.team/stops/LTErest2"], ["https://tec.openplanner.team/stops/H4vx362a", "https://tec.openplanner.team/stops/H4vx363a"], ["https://tec.openplanner.team/stops/Lsebuil1", "https://tec.openplanner.team/stops/Lsecoop1"], ["https://tec.openplanner.team/stops/H4gr108a", "https://tec.openplanner.team/stops/H4gr111a"], ["https://tec.openplanner.team/stops/LESmont2", "https://tec.openplanner.team/stops/LESpont4"], ["https://tec.openplanner.team/stops/X612aaa", "https://tec.openplanner.team/stops/X612afa"], ["https://tec.openplanner.team/stops/LAncoup2", "https://tec.openplanner.team/stops/LAnfall1"], ["https://tec.openplanner.team/stops/X601avb", "https://tec.openplanner.team/stops/X601axa"], ["https://tec.openplanner.team/stops/N579aab", "https://tec.openplanner.team/stops/N579aea"], ["https://tec.openplanner.team/stops/Cmregli3", "https://tec.openplanner.team/stops/N162acb"], ["https://tec.openplanner.team/stops/Btubbsc2", "https://tec.openplanner.team/stops/Btubsal1"], ["https://tec.openplanner.team/stops/Cmogrbu1", "https://tec.openplanner.team/stops/Cmonvci1"], ["https://tec.openplanner.team/stops/N121acb", "https://tec.openplanner.team/stops/N121ajb"], ["https://tec.openplanner.team/stops/N121aca", "https://tec.openplanner.team/stops/N121ada"], ["https://tec.openplanner.team/stops/Bborbif2", "https://tec.openplanner.team/stops/Bfelagb1"], ["https://tec.openplanner.team/stops/H1cu126a", "https://tec.openplanner.team/stops/H1cu132a"], ["https://tec.openplanner.team/stops/N383aaa", "https://tec.openplanner.team/stops/N383abb"], ["https://tec.openplanner.team/stops/H4hu116a", "https://tec.openplanner.team/stops/H4hu118a"], ["https://tec.openplanner.team/stops/N508afa", "https://tec.openplanner.team/stops/N508ala"], ["https://tec.openplanner.team/stops/LhZkape1", "https://tec.openplanner.team/stops/LwEdorf2"], ["https://tec.openplanner.team/stops/Llgbry-1", "https://tec.openplanner.team/stops/Llgthie1"], ["https://tec.openplanner.team/stops/X601aoa", "https://tec.openplanner.team/stops/X601cdb"], ["https://tec.openplanner.team/stops/H2hg266b", "https://tec.openplanner.team/stops/H2hg270a"], ["https://tec.openplanner.team/stops/N503aib", "https://tec.openplanner.team/stops/N503aja"], ["https://tec.openplanner.team/stops/Boveklo1", "https://tec.openplanner.team/stops/Bovepla1"], ["https://tec.openplanner.team/stops/Cgrchfe1", "https://tec.openplanner.team/stops/Cgrchfe2"], ["https://tec.openplanner.team/stops/LNEec--2", "https://tec.openplanner.team/stops/LNEolne1"], ["https://tec.openplanner.team/stops/Cgobl%C3%A9r2", "https://tec.openplanner.team/stops/Cgoulb4"], ["https://tec.openplanner.team/stops/Btubmfa2", "https://tec.openplanner.team/stops/Btubsca1"], ["https://tec.openplanner.team/stops/LeIjoha1", "https://tec.openplanner.team/stops/LeIkreu1"], ["https://tec.openplanner.team/stops/Cmtpaix1", "https://tec.openplanner.team/stops/Cmtpaix2"], ["https://tec.openplanner.team/stops/Bgntffo2", "https://tec.openplanner.team/stops/Bvilpar1"], ["https://tec.openplanner.team/stops/NL75acb", "https://tec.openplanner.team/stops/NL75ada"], ["https://tec.openplanner.team/stops/LHEches4", "https://tec.openplanner.team/stops/LHEchex1"], ["https://tec.openplanner.team/stops/LCObouh1", "https://tec.openplanner.team/stops/LCOdrol1"], ["https://tec.openplanner.team/stops/CMsolei1", "https://tec.openplanner.team/stops/CMsolei2"], ["https://tec.openplanner.team/stops/Llgdepo1", "https://tec.openplanner.team/stops/Llgmare1"], ["https://tec.openplanner.team/stops/N201awb", "https://tec.openplanner.team/stops/N202afb"], ["https://tec.openplanner.team/stops/X937ahb", "https://tec.openplanner.team/stops/X937aia"], ["https://tec.openplanner.team/stops/N531apa", "https://tec.openplanner.team/stops/N584aob"], ["https://tec.openplanner.team/stops/Ldichat1", "https://tec.openplanner.team/stops/Ldihusq1"], ["https://tec.openplanner.team/stops/X624aja", "https://tec.openplanner.team/stops/X624amb"], ["https://tec.openplanner.team/stops/H1ba104a", "https://tec.openplanner.team/stops/H1ba109b"], ["https://tec.openplanner.team/stops/N511ara", "https://tec.openplanner.team/stops/N511atb"], ["https://tec.openplanner.team/stops/Lvichpl2", "https://tec.openplanner.team/stops/Lvieg--2"], ["https://tec.openplanner.team/stops/X763abb", "https://tec.openplanner.team/stops/X763aca"], ["https://tec.openplanner.team/stops/LBNvilv1", "https://tec.openplanner.team/stops/LDOordi1"], ["https://tec.openplanner.team/stops/H1gq153b", "https://tec.openplanner.team/stops/H5me106a"], ["https://tec.openplanner.team/stops/N506bob", "https://tec.openplanner.team/stops/N506bwa"], ["https://tec.openplanner.team/stops/Cmmschw2", "https://tec.openplanner.team/stops/Cmmserv3"], ["https://tec.openplanner.team/stops/N232aua", "https://tec.openplanner.team/stops/N232awa"], ["https://tec.openplanner.team/stops/H4lh118a", "https://tec.openplanner.team/stops/H5wo132b"], ["https://tec.openplanner.team/stops/N385aaa", "https://tec.openplanner.team/stops/N385aea"], ["https://tec.openplanner.team/stops/X818aea", "https://tec.openplanner.team/stops/X818afb"], ["https://tec.openplanner.team/stops/H4mv187a", "https://tec.openplanner.team/stops/H4mv189c"], ["https://tec.openplanner.team/stops/Lbrptbr5", "https://tec.openplanner.team/stops/Llgongr4"], ["https://tec.openplanner.team/stops/X739aaa", "https://tec.openplanner.team/stops/X739ada"], ["https://tec.openplanner.team/stops/Bjodbat1", "https://tec.openplanner.team/stops/Bjodbat2"], ["https://tec.openplanner.team/stops/X982awa", "https://tec.openplanner.team/stops/X982bba"], ["https://tec.openplanner.team/stops/LDOgare1", "https://tec.openplanner.team/stops/LDOgare2"], ["https://tec.openplanner.team/stops/Cbicamp1", "https://tec.openplanner.team/stops/Ctupont4"], ["https://tec.openplanner.team/stops/LSTparf1", "https://tec.openplanner.team/stops/LWn24--2"], ["https://tec.openplanner.team/stops/LoUhein1", "https://tec.openplanner.team/stops/LoUpete1"], ["https://tec.openplanner.team/stops/N501aaa", "https://tec.openplanner.team/stops/N501aaz"], ["https://tec.openplanner.team/stops/Clggrfe2", "https://tec.openplanner.team/stops/Clgmaco2"], ["https://tec.openplanner.team/stops/N571aja", "https://tec.openplanner.team/stops/N571aka"], ["https://tec.openplanner.team/stops/Lemjoba2", "https://tec.openplanner.team/stops/Lemlami2"], ["https://tec.openplanner.team/stops/Ccybouc2", "https://tec.openplanner.team/stops/Ccygara2"], ["https://tec.openplanner.team/stops/LWEbr051", "https://tec.openplanner.team/stops/LWEwilc1"], ["https://tec.openplanner.team/stops/Bbchgod2", "https://tec.openplanner.team/stops/Bitrsar1"], ["https://tec.openplanner.team/stops/H4bh102a", "https://tec.openplanner.team/stops/H4bh102b"], ["https://tec.openplanner.team/stops/NB33aea", "https://tec.openplanner.team/stops/NB33aeb"], ["https://tec.openplanner.team/stops/N104aka", "https://tec.openplanner.team/stops/N106agb"], ["https://tec.openplanner.team/stops/Bbonbcr1", "https://tec.openplanner.team/stops/Bboncha1"], ["https://tec.openplanner.team/stops/X788adb", "https://tec.openplanner.team/stops/X788afa"], ["https://tec.openplanner.team/stops/H1qy133a", "https://tec.openplanner.team/stops/H1qy137b"], ["https://tec.openplanner.team/stops/N530aga", "https://tec.openplanner.team/stops/N530agb"], ["https://tec.openplanner.team/stops/LOuathe1", "https://tec.openplanner.team/stops/LOumaro1"], ["https://tec.openplanner.team/stops/LNCchev2", "https://tec.openplanner.team/stops/LNCimpe1"], ["https://tec.openplanner.team/stops/N104aab", "https://tec.openplanner.team/stops/N104acb"], ["https://tec.openplanner.team/stops/LSNecol4", "https://tec.openplanner.team/stops/LSNmoul1"], ["https://tec.openplanner.team/stops/LMoviel1", "https://tec.openplanner.team/stops/LSDheus1"], ["https://tec.openplanner.team/stops/N167aaa", "https://tec.openplanner.team/stops/N167aab"], ["https://tec.openplanner.team/stops/X349aab", "https://tec.openplanner.team/stops/X349aic"], ["https://tec.openplanner.team/stops/LLOnand1", "https://tec.openplanner.team/stops/LRRecsc*"], ["https://tec.openplanner.team/stops/Cchsud03", "https://tec.openplanner.team/stops/Cchsud12"], ["https://tec.openplanner.team/stops/H4ka191a", "https://tec.openplanner.team/stops/H4ka192a"], ["https://tec.openplanner.team/stops/X390aib", "https://tec.openplanner.team/stops/X992afb"], ["https://tec.openplanner.team/stops/Lhurfay2", "https://tec.openplanner.team/stops/LTHroch1"], ["https://tec.openplanner.team/stops/X781aba", "https://tec.openplanner.team/stops/X781aga"], ["https://tec.openplanner.team/stops/H2bh120a", "https://tec.openplanner.team/stops/H2mg143b"], ["https://tec.openplanner.team/stops/X602aaa", "https://tec.openplanner.team/stops/X633aaa"], ["https://tec.openplanner.team/stops/Cgpcime2", "https://tec.openplanner.team/stops/Cgpplac2"], ["https://tec.openplanner.team/stops/LSPpomp1", "https://tec.openplanner.team/stops/LSPptch2"], ["https://tec.openplanner.team/stops/H4hx111a", "https://tec.openplanner.team/stops/H4hx115a"], ["https://tec.openplanner.team/stops/X723ada", "https://tec.openplanner.team/stops/X723adb"], ["https://tec.openplanner.team/stops/H1so131a", "https://tec.openplanner.team/stops/H1so131b"], ["https://tec.openplanner.team/stops/LBNhegg1", "https://tec.openplanner.team/stops/LhEcolo2"], ["https://tec.openplanner.team/stops/Bvirbie3", "https://tec.openplanner.team/stops/Bvirmav1"], ["https://tec.openplanner.team/stops/LLegern1", "https://tec.openplanner.team/stops/X784aea"], ["https://tec.openplanner.team/stops/H2bh107a", "https://tec.openplanner.team/stops/H2bh112b"], ["https://tec.openplanner.team/stops/H1gn148b", "https://tec.openplanner.team/stops/H1gn152a"], ["https://tec.openplanner.team/stops/H1al106a", "https://tec.openplanner.team/stops/H1qp150b"], ["https://tec.openplanner.team/stops/X773aab", "https://tec.openplanner.team/stops/X773aba"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lpecroi1"], ["https://tec.openplanner.team/stops/X721aoa", "https://tec.openplanner.team/stops/X721atb"], ["https://tec.openplanner.team/stops/Cmecite1", "https://tec.openplanner.team/stops/Cmecomb1"], ["https://tec.openplanner.team/stops/Llgdouf1", "https://tec.openplanner.team/stops/Llgm%C3%A9di1"], ["https://tec.openplanner.team/stops/NC44aba", "https://tec.openplanner.team/stops/NC44aca"], ["https://tec.openplanner.team/stops/N561aca", "https://tec.openplanner.team/stops/N584aqa"], ["https://tec.openplanner.team/stops/Cmesafi2", "https://tec.openplanner.team/stops/Cwgmart2"], ["https://tec.openplanner.team/stops/Crcegli4", "https://tec.openplanner.team/stops/Crchutt2"], ["https://tec.openplanner.team/stops/Bwatdco1", "https://tec.openplanner.team/stops/Bwattri1"], ["https://tec.openplanner.team/stops/X663aca", "https://tec.openplanner.team/stops/X688aab"], ["https://tec.openplanner.team/stops/Lenplac1", "https://tec.openplanner.team/stops/Lenplac2"], ["https://tec.openplanner.team/stops/H1do108a", "https://tec.openplanner.team/stops/H1do108c"], ["https://tec.openplanner.team/stops/Cctathe1", "https://tec.openplanner.team/stops/Cctcoll2"], ["https://tec.openplanner.team/stops/LNCecdo1", "https://tec.openplanner.team/stops/Lseboia1"], ["https://tec.openplanner.team/stops/Lhrbell1", "https://tec.openplanner.team/stops/Lhrmare4"], ["https://tec.openplanner.team/stops/N558aga", "https://tec.openplanner.team/stops/N558ajb"], ["https://tec.openplanner.team/stops/X818awa", "https://tec.openplanner.team/stops/X818awb"], ["https://tec.openplanner.team/stops/H4cl114a", "https://tec.openplanner.team/stops/H4cl114b"], ["https://tec.openplanner.team/stops/N574aea", "https://tec.openplanner.team/stops/N574aeb"], ["https://tec.openplanner.team/stops/Bflcpco1", "https://tec.openplanner.team/stops/Bflcpco2"], ["https://tec.openplanner.team/stops/X781ada", "https://tec.openplanner.team/stops/X781aeb"], ["https://tec.openplanner.team/stops/Cjudelv4", "https://tec.openplanner.team/stops/CMmade2"], ["https://tec.openplanner.team/stops/Lvoec--1", "https://tec.openplanner.team/stops/Lvoec--3"], ["https://tec.openplanner.team/stops/H2mg141b", "https://tec.openplanner.team/stops/H2mg142b"], ["https://tec.openplanner.team/stops/Lchchau2", "https://tec.openplanner.team/stops/Lchec--2"], ["https://tec.openplanner.team/stops/Cchsud08", "https://tec.openplanner.team/stops/Cmlvitf2"], ["https://tec.openplanner.team/stops/LWOsass1", "https://tec.openplanner.team/stops/LWOwa162"], ["https://tec.openplanner.team/stops/Cfaeclu2", "https://tec.openplanner.team/stops/Cfasamb1"], ["https://tec.openplanner.team/stops/H1me113b", "https://tec.openplanner.team/stops/H1me118b"], ["https://tec.openplanner.team/stops/X397aab", "https://tec.openplanner.team/stops/X397abb"], ["https://tec.openplanner.team/stops/H2hl111a", "https://tec.openplanner.team/stops/H2pe157b"], ["https://tec.openplanner.team/stops/N346ada", "https://tec.openplanner.team/stops/X892acb"], ["https://tec.openplanner.team/stops/LLvgare1", "https://tec.openplanner.team/stops/NL81adb"], ["https://tec.openplanner.team/stops/N501hyb", "https://tec.openplanner.team/stops/N501jcb"], ["https://tec.openplanner.team/stops/X923abb", "https://tec.openplanner.team/stops/X941afa"], ["https://tec.openplanner.team/stops/Bramrdf1", "https://tec.openplanner.team/stops/Bramrdf2"], ["https://tec.openplanner.team/stops/Bgnteco1", "https://tec.openplanner.team/stops/Bgntpos2"], ["https://tec.openplanner.team/stops/Lcaboun3", "https://tec.openplanner.team/stops/Lcalaro2"], ["https://tec.openplanner.team/stops/Lseaite1", "https://tec.openplanner.team/stops/Lseaite2"], ["https://tec.openplanner.team/stops/Lsemyrt2", "https://tec.openplanner.team/stops/Lsepcha3"], ["https://tec.openplanner.team/stops/X943aba", "https://tec.openplanner.team/stops/X943aha"], ["https://tec.openplanner.team/stops/N232beb", "https://tec.openplanner.team/stops/N232bfa"], ["https://tec.openplanner.team/stops/LVbcoul2", "https://tec.openplanner.team/stops/LVbsurr1"], ["https://tec.openplanner.team/stops/H1gc123a", "https://tec.openplanner.team/stops/H1qy136a"], ["https://tec.openplanner.team/stops/X614ajb", "https://tec.openplanner.team/stops/X623aia"], ["https://tec.openplanner.team/stops/N232bhb", "https://tec.openplanner.team/stops/N232cbb"], ["https://tec.openplanner.team/stops/X664ana", "https://tec.openplanner.team/stops/X664asa"], ["https://tec.openplanner.team/stops/Ctuhouz2", "https://tec.openplanner.team/stops/Cturoge1"], ["https://tec.openplanner.team/stops/Cptcamb1", "https://tec.openplanner.team/stops/Cptegli2"], ["https://tec.openplanner.team/stops/Louaout1", "https://tec.openplanner.team/stops/Louaout2"], ["https://tec.openplanner.team/stops/LOTawan1", "https://tec.openplanner.team/stops/LOTcloe1"], ["https://tec.openplanner.team/stops/N501fda", "https://tec.openplanner.team/stops/N501fdc"], ["https://tec.openplanner.team/stops/LHUmess1", "https://tec.openplanner.team/stops/LTiespe1"], ["https://tec.openplanner.team/stops/Bjdsbro1", "https://tec.openplanner.team/stops/Blthvil1"], ["https://tec.openplanner.team/stops/H2lh126a", "https://tec.openplanner.team/stops/H2lh126b"], ["https://tec.openplanner.team/stops/Llgrain1", "https://tec.openplanner.team/stops/Llgrain2"], ["https://tec.openplanner.team/stops/LsHfrie2", "https://tec.openplanner.team/stops/LsHkirc1"], ["https://tec.openplanner.team/stops/LOLfoss2", "https://tec.openplanner.team/stops/LOLvill2"], ["https://tec.openplanner.team/stops/Chpatel1", "https://tec.openplanner.team/stops/Cracime2"], ["https://tec.openplanner.team/stops/Lbobuil2", "https://tec.openplanner.team/stops/Lstvill2"], ["https://tec.openplanner.team/stops/H4an106a", "https://tec.openplanner.team/stops/H4an110b"], ["https://tec.openplanner.team/stops/LAtaube1", "https://tec.openplanner.team/stops/X261aaa"], ["https://tec.openplanner.team/stops/H1ms261a", "https://tec.openplanner.team/stops/H1ms305a"], ["https://tec.openplanner.team/stops/H1sg144b", "https://tec.openplanner.team/stops/H1sg146b"], ["https://tec.openplanner.team/stops/X672ada", "https://tec.openplanner.team/stops/X672adb"], ["https://tec.openplanner.team/stops/X658aba", "https://tec.openplanner.team/stops/X658aga"], ["https://tec.openplanner.team/stops/Bbrlrph1", "https://tec.openplanner.team/stops/Brsgter1"], ["https://tec.openplanner.team/stops/LHYdogn1", "https://tec.openplanner.team/stops/LSpogne2"], ["https://tec.openplanner.team/stops/Lmlcrot*", "https://tec.openplanner.team/stops/Lmleg--1"], ["https://tec.openplanner.team/stops/N113aca", "https://tec.openplanner.team/stops/N113aga"], ["https://tec.openplanner.team/stops/Bblamsp3", "https://tec.openplanner.team/stops/Bblaphi1"], ["https://tec.openplanner.team/stops/LATfont2", "https://tec.openplanner.team/stops/LATmonu1"], ["https://tec.openplanner.team/stops/Blpgeco2", "https://tec.openplanner.team/stops/Blpgvil2"], ["https://tec.openplanner.team/stops/H4vx362b", "https://tec.openplanner.team/stops/H4vx364a"], ["https://tec.openplanner.team/stops/Bbwacol2", "https://tec.openplanner.team/stops/Bwavfol2"], ["https://tec.openplanner.team/stops/H4ma398b", "https://tec.openplanner.team/stops/H4oq226c"], ["https://tec.openplanner.team/stops/Bgemcha1", "https://tec.openplanner.team/stops/N522asb"], ["https://tec.openplanner.team/stops/N535aaa", "https://tec.openplanner.team/stops/N535aba"], ["https://tec.openplanner.team/stops/LCscarr2", "https://tec.openplanner.team/stops/LCscarr3"], ["https://tec.openplanner.team/stops/Llgpont1", "https://tec.openplanner.team/stops/Llgpont2"], ["https://tec.openplanner.team/stops/LClflor2", "https://tec.openplanner.team/stops/LFdbagu1"], ["https://tec.openplanner.team/stops/N312adb", "https://tec.openplanner.team/stops/N313aab"], ["https://tec.openplanner.team/stops/Bgnpgar2", "https://tec.openplanner.team/stops/Cgnbast1"], ["https://tec.openplanner.team/stops/LTecent1", "https://tec.openplanner.team/stops/LTechpl2"], ["https://tec.openplanner.team/stops/Bllnald1", "https://tec.openplanner.team/stops/Bllngar4"], ["https://tec.openplanner.team/stops/X742afa", "https://tec.openplanner.team/stops/X742agb"], ["https://tec.openplanner.team/stops/LLOchpl1", "https://tec.openplanner.team/stops/LLOspin2"], ["https://tec.openplanner.team/stops/X261aba", "https://tec.openplanner.team/stops/X261acb"], ["https://tec.openplanner.team/stops/H1ob327b", "https://tec.openplanner.team/stops/H1ob333b"], ["https://tec.openplanner.team/stops/Bbldvaa2", "https://tec.openplanner.team/stops/Bhevwzw1"], ["https://tec.openplanner.team/stops/X826aba", "https://tec.openplanner.team/stops/X826aca"], ["https://tec.openplanner.team/stops/Cmmlong2", "https://tec.openplanner.team/stops/Cmmpjou3"], ["https://tec.openplanner.team/stops/N501hqb", "https://tec.openplanner.team/stops/N501iba"], ["https://tec.openplanner.team/stops/Bgemga09", "https://tec.openplanner.team/stops/N522bvd"], ["https://tec.openplanner.team/stops/N101adc", "https://tec.openplanner.team/stops/N116aea"], ["https://tec.openplanner.team/stops/N557aab", "https://tec.openplanner.team/stops/N557aca"], ["https://tec.openplanner.team/stops/LNIdoma1", "https://tec.openplanner.team/stops/LNIec--1"], ["https://tec.openplanner.team/stops/N519acb", "https://tec.openplanner.team/stops/N519aja"], ["https://tec.openplanner.team/stops/X897axa", "https://tec.openplanner.team/stops/X897aya"], ["https://tec.openplanner.team/stops/N539ajb", "https://tec.openplanner.team/stops/N542aia"], ["https://tec.openplanner.team/stops/Bquebth1", "https://tec.openplanner.team/stops/Bquebth3"], ["https://tec.openplanner.team/stops/LHEches3", "https://tec.openplanner.team/stops/LHEchex1"], ["https://tec.openplanner.team/stops/Cdamare2", "https://tec.openplanner.team/stops/Clomakr2"], ["https://tec.openplanner.team/stops/N581aab", "https://tec.openplanner.team/stops/NL74aib"], ["https://tec.openplanner.team/stops/Lhrgall1", "https://tec.openplanner.team/stops/Lhrlaix1"], ["https://tec.openplanner.team/stops/LlE02--2", "https://tec.openplanner.team/stops/LlEzoll2"], ["https://tec.openplanner.team/stops/H1nv324a", "https://tec.openplanner.team/stops/H1nv325a"], ["https://tec.openplanner.team/stops/X618aab", "https://tec.openplanner.team/stops/X618aoa"], ["https://tec.openplanner.team/stops/H1po130a", "https://tec.openplanner.team/stops/H1po139a"], ["https://tec.openplanner.team/stops/H1ba113b", "https://tec.openplanner.team/stops/H1je225a"], ["https://tec.openplanner.team/stops/H4ms145b", "https://tec.openplanner.team/stops/H4ms166a"], ["https://tec.openplanner.team/stops/Lsnbure1", "https://tec.openplanner.team/stops/Lsnhorl1"], ["https://tec.openplanner.team/stops/H1sp353b", "https://tec.openplanner.team/stops/H1ss350a"], ["https://tec.openplanner.team/stops/X829ada", "https://tec.openplanner.team/stops/X830aaa"], ["https://tec.openplanner.team/stops/LLgmini2", "https://tec.openplanner.team/stops/LSPherd1"], ["https://tec.openplanner.team/stops/N501kcb", "https://tec.openplanner.team/stops/N501kqb"], ["https://tec.openplanner.team/stops/X746aba", "https://tec.openplanner.team/stops/X746acb"], ["https://tec.openplanner.team/stops/LmYamel1", "https://tec.openplanner.team/stops/LwL100-1"], ["https://tec.openplanner.team/stops/Llgdart2", "https://tec.openplanner.team/stops/LlgguilB"], ["https://tec.openplanner.team/stops/LwL100-1", "https://tec.openplanner.team/stops/LwLfuss1"], ["https://tec.openplanner.team/stops/Brebmtg1", "https://tec.openplanner.team/stops/Brebraf2"], ["https://tec.openplanner.team/stops/Cbiferm1", "https://tec.openplanner.team/stops/Crg3arb2"], ["https://tec.openplanner.team/stops/Bbsgfva1", "https://tec.openplanner.team/stops/Bbsgrve1"], ["https://tec.openplanner.team/stops/N501hob", "https://tec.openplanner.team/stops/N501ila"], ["https://tec.openplanner.team/stops/Lghwall*", "https://tec.openplanner.team/stops/Lghwall2"], ["https://tec.openplanner.team/stops/N218aab", "https://tec.openplanner.team/stops/N385abb"], ["https://tec.openplanner.team/stops/H4gr108a", "https://tec.openplanner.team/stops/H4ld124a"], ["https://tec.openplanner.team/stops/LWDeg--1", "https://tec.openplanner.team/stops/LWDsieg1"], ["https://tec.openplanner.team/stops/Cgycime1", "https://tec.openplanner.team/stops/Cgysarr2"], ["https://tec.openplanner.team/stops/X730adb", "https://tec.openplanner.team/stops/X753aca"], ["https://tec.openplanner.team/stops/H1pa104a", "https://tec.openplanner.team/stops/H1wa155b"], ["https://tec.openplanner.team/stops/H1ht131a", "https://tec.openplanner.team/stops/H1te191a"], ["https://tec.openplanner.team/stops/Ccusole1", "https://tec.openplanner.team/stops/Cgysole1"], ["https://tec.openplanner.team/stops/LHZ8mai2", "https://tec.openplanner.team/stops/LHZcouv2"], ["https://tec.openplanner.team/stops/LrDsage2", "https://tec.openplanner.team/stops/LrEfeck1"], ["https://tec.openplanner.team/stops/X738aea", "https://tec.openplanner.team/stops/X771ala"], ["https://tec.openplanner.team/stops/H4mt215a", "https://tec.openplanner.team/stops/H4mt221b"], ["https://tec.openplanner.team/stops/X663abb", "https://tec.openplanner.team/stops/X663aqa"], ["https://tec.openplanner.team/stops/Llivina2", "https://tec.openplanner.team/stops/Lrcchpl1"], ["https://tec.openplanner.team/stops/LdUespe4", "https://tec.openplanner.team/stops/LtHkreu4"], ["https://tec.openplanner.team/stops/X609aha", "https://tec.openplanner.team/stops/X609alb"], ["https://tec.openplanner.team/stops/X688aab", "https://tec.openplanner.team/stops/X769arb"], ["https://tec.openplanner.team/stops/LNOning1", "https://tec.openplanner.team/stops/LNOpt--1"], ["https://tec.openplanner.team/stops/H2re165b", "https://tec.openplanner.team/stops/H2re174a"], ["https://tec.openplanner.team/stops/H5pe152a", "https://tec.openplanner.team/stops/H5pe152b"], ["https://tec.openplanner.team/stops/X354aaa", "https://tec.openplanner.team/stops/X369aaa"], ["https://tec.openplanner.team/stops/H1cu132a", "https://tec.openplanner.team/stops/H1je212b"], ["https://tec.openplanner.team/stops/Bwateco2", "https://tec.openplanner.team/stops/Bwatmsj1"], ["https://tec.openplanner.team/stops/N506aqb", "https://tec.openplanner.team/stops/N506arb"], ["https://tec.openplanner.team/stops/X601bpb", "https://tec.openplanner.team/stops/X601daa"], ["https://tec.openplanner.team/stops/LBYegli1", "https://tec.openplanner.team/stops/LBYegli2"], ["https://tec.openplanner.team/stops/Ljubord1", "https://tec.openplanner.team/stops/Ljubord2"], ["https://tec.openplanner.team/stops/X910ada", "https://tec.openplanner.team/stops/X910adb"], ["https://tec.openplanner.team/stops/LREsp301", "https://tec.openplanner.team/stops/LREsp302"], ["https://tec.openplanner.team/stops/Cgrcent1", "https://tec.openplanner.team/stops/NC14amb"], ["https://tec.openplanner.team/stops/N207aea", "https://tec.openplanner.team/stops/X210azb"], ["https://tec.openplanner.team/stops/X804aca", "https://tec.openplanner.team/stops/X882akb"], ["https://tec.openplanner.team/stops/LBHinva1", "https://tec.openplanner.team/stops/LHbcent2"], ["https://tec.openplanner.team/stops/X938aca", "https://tec.openplanner.team/stops/X938acb"], ["https://tec.openplanner.team/stops/Laltrap2", "https://tec.openplanner.team/stops/Lalverr1"], ["https://tec.openplanner.team/stops/H2sb257b", "https://tec.openplanner.team/stops/H3lr108a"], ["https://tec.openplanner.team/stops/Bwatcci1", "https://tec.openplanner.team/stops/Bwatcli1"], ["https://tec.openplanner.team/stops/NC14aaa", "https://tec.openplanner.team/stops/NC44aaa"], ["https://tec.openplanner.team/stops/Lhrsimo4", "https://tec.openplanner.team/stops/Lhrtunn1"], ["https://tec.openplanner.team/stops/LKmcite2", "https://tec.openplanner.team/stops/LOdmonu3"], ["https://tec.openplanner.team/stops/Loualbe2", "https://tec.openplanner.team/stops/Loubiez1"], ["https://tec.openplanner.team/stops/LHTdelh2", "https://tec.openplanner.team/stops/LHTmc--1"], ["https://tec.openplanner.team/stops/LkEhatt1", "https://tec.openplanner.team/stops/LkEheyg2"], ["https://tec.openplanner.team/stops/X664akb", "https://tec.openplanner.team/stops/X664asa"], ["https://tec.openplanner.team/stops/LMIeg--1", "https://tec.openplanner.team/stops/LMIlac-2"], ["https://tec.openplanner.team/stops/LMAalli1", "https://tec.openplanner.team/stops/LMAgdfa2"], ["https://tec.openplanner.team/stops/Lselibe2", "https://tec.openplanner.team/stops/Lseprog1"], ["https://tec.openplanner.team/stops/Livrame1", "https://tec.openplanner.team/stops/LRachen1"], ["https://tec.openplanner.team/stops/X605aca", "https://tec.openplanner.team/stops/X605ala"], ["https://tec.openplanner.team/stops/X750aob", "https://tec.openplanner.team/stops/X750bna"], ["https://tec.openplanner.team/stops/LeLbegl2", "https://tec.openplanner.team/stops/LnIfrie1"], ["https://tec.openplanner.team/stops/N141alb", "https://tec.openplanner.team/stops/N143acb"], ["https://tec.openplanner.team/stops/N525adb", "https://tec.openplanner.team/stops/N525aib"], ["https://tec.openplanner.team/stops/X948ada", "https://tec.openplanner.team/stops/X948aeb"], ["https://tec.openplanner.team/stops/LmRh%C3%B6811", "https://tec.openplanner.team/stops/LmRkreu2"], ["https://tec.openplanner.team/stops/Bixleix2", "https://tec.openplanner.team/stops/Bixlfla1"], ["https://tec.openplanner.team/stops/Blmlcar2", "https://tec.openplanner.team/stops/Blmlcim2"], ["https://tec.openplanner.team/stops/Clibrun2", "https://tec.openplanner.team/stops/Cvvpotv2"], ["https://tec.openplanner.team/stops/N538afb", "https://tec.openplanner.team/stops/N538agb"], ["https://tec.openplanner.team/stops/Clvimtr2", "https://tec.openplanner.team/stops/Clvimtr4"], ["https://tec.openplanner.team/stops/X638acb", "https://tec.openplanner.team/stops/X638afb"], ["https://tec.openplanner.team/stops/X801cea", "https://tec.openplanner.team/stops/X801cfa"], ["https://tec.openplanner.team/stops/Lvc4bra2", "https://tec.openplanner.team/stops/Lvcpost2"], ["https://tec.openplanner.team/stops/Cmiegli2", "https://tec.openplanner.team/stops/Cmivert2"], ["https://tec.openplanner.team/stops/Lpeathe*", "https://tec.openplanner.team/stops/Lpebier1"], ["https://tec.openplanner.team/stops/Bbaubru2", "https://tec.openplanner.team/stops/Bnivpba2"], ["https://tec.openplanner.team/stops/Cbmind1", "https://tec.openplanner.team/stops/Cbmviv1"], ["https://tec.openplanner.team/stops/N565aia", "https://tec.openplanner.team/stops/N569afa"], ["https://tec.openplanner.team/stops/X907afb", "https://tec.openplanner.team/stops/X907aga"], ["https://tec.openplanner.team/stops/H4cw107a", "https://tec.openplanner.team/stops/H4gz114a"], ["https://tec.openplanner.team/stops/H4pi136a", "https://tec.openplanner.team/stops/H4pi136b"], ["https://tec.openplanner.team/stops/N214aea", "https://tec.openplanner.team/stops/N214aeb"], ["https://tec.openplanner.team/stops/LJAboli1", "https://tec.openplanner.team/stops/LJAcime2"], ["https://tec.openplanner.team/stops/N543aea", "https://tec.openplanner.team/stops/N543aia"], ["https://tec.openplanner.team/stops/N390ada", "https://tec.openplanner.team/stops/X991aeb"], ["https://tec.openplanner.team/stops/LFebas-1", "https://tec.openplanner.team/stops/LTrgibe2"], ["https://tec.openplanner.team/stops/N551ada", "https://tec.openplanner.team/stops/N551adb"], ["https://tec.openplanner.team/stops/Lflgare2", "https://tec.openplanner.team/stops/Lfllapi3"], ["https://tec.openplanner.team/stops/N236aoa", "https://tec.openplanner.team/stops/N236apb"], ["https://tec.openplanner.team/stops/Cgywaut2", "https://tec.openplanner.team/stops/Cgywaut4"], ["https://tec.openplanner.team/stops/H4te248a", "https://tec.openplanner.team/stops/H4te252a"], ["https://tec.openplanner.team/stops/H1em103a", "https://tec.openplanner.team/stops/H1em103b"], ["https://tec.openplanner.team/stops/LWOcomm1", "https://tec.openplanner.team/stops/LWOcomm2"], ["https://tec.openplanner.team/stops/H4lp120b", "https://tec.openplanner.team/stops/H4lp123b"], ["https://tec.openplanner.team/stops/H1sy144c", "https://tec.openplanner.team/stops/H1sy147b"], ["https://tec.openplanner.team/stops/Cmyvert1", "https://tec.openplanner.team/stops/Cmyvert2"], ["https://tec.openplanner.team/stops/X657ala", "https://tec.openplanner.team/stops/X657anb"], ["https://tec.openplanner.team/stops/N113aea", "https://tec.openplanner.team/stops/X317aab"], ["https://tec.openplanner.team/stops/H4be103a", "https://tec.openplanner.team/stops/H4be112a"], ["https://tec.openplanner.team/stops/X904ajb", "https://tec.openplanner.team/stops/X904aka"], ["https://tec.openplanner.team/stops/Cthcrom1", "https://tec.openplanner.team/stops/Cthcrom2"], ["https://tec.openplanner.team/stops/H1tl119a", "https://tec.openplanner.team/stops/H1tl120b"], ["https://tec.openplanner.team/stops/LBAbooz1", "https://tec.openplanner.team/stops/LBLtroi1"], ["https://tec.openplanner.team/stops/X746afa", "https://tec.openplanner.team/stops/X746aia"], ["https://tec.openplanner.team/stops/N153aca", "https://tec.openplanner.team/stops/N153acb"], ["https://tec.openplanner.team/stops/LVLgrum2", "https://tec.openplanner.team/stops/LVLmart2"], ["https://tec.openplanner.team/stops/H4bc101b", "https://tec.openplanner.team/stops/H4bc106a"], ["https://tec.openplanner.team/stops/X634agb", "https://tec.openplanner.team/stops/X634aib"], ["https://tec.openplanner.team/stops/H4bs111a", "https://tec.openplanner.team/stops/H4ws158b"], ["https://tec.openplanner.team/stops/Cwfreta1", "https://tec.openplanner.team/stops/Cwfreta2"], ["https://tec.openplanner.team/stops/Bcerldo1", "https://tec.openplanner.team/stops/Bottcpl2"], ["https://tec.openplanner.team/stops/X542ada", "https://tec.openplanner.team/stops/X542afa"], ["https://tec.openplanner.team/stops/Clusncb1", "https://tec.openplanner.team/stops/Cpcbrig2"], ["https://tec.openplanner.team/stops/X601ana", "https://tec.openplanner.team/stops/X601aqb"], ["https://tec.openplanner.team/stops/Llgnati1", "https://tec.openplanner.team/stops/Llgpari2"], ["https://tec.openplanner.team/stops/X607aga", "https://tec.openplanner.team/stops/X621aaa"], ["https://tec.openplanner.team/stops/Bwaucan1", "https://tec.openplanner.team/stops/Bwaucig1"], ["https://tec.openplanner.team/stops/Bwavdel1", "https://tec.openplanner.team/stops/Bwavdel2"], ["https://tec.openplanner.team/stops/LFLetoi2", "https://tec.openplanner.team/stops/LSpshin2"], ["https://tec.openplanner.team/stops/LVNroua1", "https://tec.openplanner.team/stops/LVNroua2"], ["https://tec.openplanner.team/stops/LHUsauv1", "https://tec.openplanner.team/stops/LHUsauv2"], ["https://tec.openplanner.team/stops/Cstdona1", "https://tec.openplanner.team/stops/Cstdona2"], ["https://tec.openplanner.team/stops/X601bub", "https://tec.openplanner.team/stops/X601cda"], ["https://tec.openplanner.team/stops/Bnivros1", "https://tec.openplanner.team/stops/Bnivsnu1"], ["https://tec.openplanner.team/stops/LBEmich1", "https://tec.openplanner.team/stops/LTRpeec2"], ["https://tec.openplanner.team/stops/Bbsgfva2", "https://tec.openplanner.team/stops/Bgzdsta2"], ["https://tec.openplanner.team/stops/X715aea", "https://tec.openplanner.team/stops/X715alb"], ["https://tec.openplanner.team/stops/H4ir163b", "https://tec.openplanner.team/stops/H4ir164b"], ["https://tec.openplanner.team/stops/LlgLAMB1", "https://tec.openplanner.team/stops/Llgmarc2"], ["https://tec.openplanner.team/stops/X940acb", "https://tec.openplanner.team/stops/X948afb"], ["https://tec.openplanner.team/stops/Llgplop1", "https://tec.openplanner.team/stops/Lvtcalv1"], ["https://tec.openplanner.team/stops/Ladarev2", "https://tec.openplanner.team/stops/Laddelc2"], ["https://tec.openplanner.team/stops/H5rx105a", "https://tec.openplanner.team/stops/H5rx121b"], ["https://tec.openplanner.team/stops/LESmc--1", "https://tec.openplanner.team/stops/LESmich2"], ["https://tec.openplanner.team/stops/N506bcb", "https://tec.openplanner.team/stops/N506bdb"], ["https://tec.openplanner.team/stops/Cgpauln1", "https://tec.openplanner.team/stops/Cgpleco1"], ["https://tec.openplanner.team/stops/N532ama", "https://tec.openplanner.team/stops/N574aga"], ["https://tec.openplanner.team/stops/X904aib", "https://tec.openplanner.team/stops/X904ajb"], ["https://tec.openplanner.team/stops/Brsggde1", "https://tec.openplanner.team/stops/Brsgges2"], ["https://tec.openplanner.team/stops/LHDmc--1", "https://tec.openplanner.team/stops/LHDpota2"], ["https://tec.openplanner.team/stops/LCljose2", "https://tec.openplanner.team/stops/LLMjacq2"], ["https://tec.openplanner.team/stops/Blemmar1", "https://tec.openplanner.team/stops/Btubhoq2"], ["https://tec.openplanner.team/stops/LMtcent2", "https://tec.openplanner.team/stops/LMtegli2"], ["https://tec.openplanner.team/stops/N531aqb", "https://tec.openplanner.team/stops/N584apa"], ["https://tec.openplanner.team/stops/LLrgobe2", "https://tec.openplanner.team/stops/LLrmc--3"], ["https://tec.openplanner.team/stops/N536afa", "https://tec.openplanner.team/stops/N536apb"], ["https://tec.openplanner.team/stops/N534aub", "https://tec.openplanner.team/stops/N534auc"], ["https://tec.openplanner.team/stops/LPurech2", "https://tec.openplanner.team/stops/LrEochs2"], ["https://tec.openplanner.team/stops/Creluth2", "https://tec.openplanner.team/stops/Crerevi2"], ["https://tec.openplanner.team/stops/H4bo112b", "https://tec.openplanner.team/stops/H4bo118b"], ["https://tec.openplanner.team/stops/N551aha", "https://tec.openplanner.team/stops/N552acb"], ["https://tec.openplanner.team/stops/X713acb", "https://tec.openplanner.team/stops/X986ama"], ["https://tec.openplanner.team/stops/LHUgodi1", "https://tec.openplanner.team/stops/LHUlebe3"], ["https://tec.openplanner.team/stops/Bnivtec2", "https://tec.openplanner.team/stops/Bnivvco2"], ["https://tec.openplanner.team/stops/N120add", "https://tec.openplanner.team/stops/N120aha"], ["https://tec.openplanner.team/stops/LLnpomp1", "https://tec.openplanner.team/stops/LPUalbe1"], ["https://tec.openplanner.team/stops/H4th139b", "https://tec.openplanner.team/stops/H4th140a"], ["https://tec.openplanner.team/stops/X761aaa", "https://tec.openplanner.team/stops/X761abb"], ["https://tec.openplanner.team/stops/LLSba9-2", "https://tec.openplanner.team/stops/LLYhoch2"], ["https://tec.openplanner.team/stops/N501gpb", "https://tec.openplanner.team/stops/N501gpd"], ["https://tec.openplanner.team/stops/LHHlomb1", "https://tec.openplanner.team/stops/LHHlomb2"], ["https://tec.openplanner.team/stops/LVEhali1", "https://tec.openplanner.team/stops/LVEjoin1"], ["https://tec.openplanner.team/stops/NR21aab", "https://tec.openplanner.team/stops/NR21aga"], ["https://tec.openplanner.team/stops/N531aca", "https://tec.openplanner.team/stops/N531agb"], ["https://tec.openplanner.team/stops/H2fa112a", "https://tec.openplanner.team/stops/H2mg135a"], ["https://tec.openplanner.team/stops/Bnivari1", "https://tec.openplanner.team/stops/Bnivhon1"], ["https://tec.openplanner.team/stops/Bcrncjo2", "https://tec.openplanner.team/stops/N529abc"], ["https://tec.openplanner.team/stops/X784akb", "https://tec.openplanner.team/stops/X784alb"], ["https://tec.openplanner.team/stops/Llgfred1", "https://tec.openplanner.team/stops/Llgptlo1"], ["https://tec.openplanner.team/stops/Lhrcite2", "https://tec.openplanner.team/stops/Lhrpont1"], ["https://tec.openplanner.team/stops/Cgxchan2", "https://tec.openplanner.team/stops/Cgxwaut2"], ["https://tec.openplanner.team/stops/LBlchin1", "https://tec.openplanner.team/stops/LBlhaut1"], ["https://tec.openplanner.team/stops/Lghpero1", "https://tec.openplanner.team/stops/Lghpero2"], ["https://tec.openplanner.team/stops/Cauglac1", "https://tec.openplanner.team/stops/N543aua"], ["https://tec.openplanner.team/stops/Bmrqgar1", "https://tec.openplanner.team/stops/Bmrqgar2"], ["https://tec.openplanner.team/stops/X624aka", "https://tec.openplanner.team/stops/X624akb"], ["https://tec.openplanner.team/stops/Cwfcule1", "https://tec.openplanner.team/stops/Cwfnamu2"], ["https://tec.openplanner.team/stops/X822aja", "https://tec.openplanner.team/stops/X822alb"], ["https://tec.openplanner.team/stops/Cpccoss1", "https://tec.openplanner.team/stops/Cpccoss2"], ["https://tec.openplanner.team/stops/N141apb", "https://tec.openplanner.team/stops/N141aqb"], ["https://tec.openplanner.team/stops/X643aab", "https://tec.openplanner.team/stops/X645aab"], ["https://tec.openplanner.team/stops/Ccycont2", "https://tec.openplanner.team/stops/Crbhurt2"], ["https://tec.openplanner.team/stops/Cmamarc2", "https://tec.openplanner.team/stops/Cmareun2"], ["https://tec.openplanner.team/stops/X741ahb", "https://tec.openplanner.team/stops/X741aic"], ["https://tec.openplanner.team/stops/X713aea", "https://tec.openplanner.team/stops/X713aga"], ["https://tec.openplanner.team/stops/Chhplbe2", "https://tec.openplanner.team/stops/Chhsncb2"], ["https://tec.openplanner.team/stops/N127aaa", "https://tec.openplanner.team/stops/N127baa"], ["https://tec.openplanner.team/stops/X741afb", "https://tec.openplanner.team/stops/X741aha"], ["https://tec.openplanner.team/stops/LAIrout1", "https://tec.openplanner.team/stops/LSCc39-1"], ["https://tec.openplanner.team/stops/Cmycime1", "https://tec.openplanner.team/stops/Cmycime2"], ["https://tec.openplanner.team/stops/X607aca", "https://tec.openplanner.team/stops/X607ada"], ["https://tec.openplanner.team/stops/Boppcar2", "https://tec.openplanner.team/stops/Boppcen4"], ["https://tec.openplanner.team/stops/H1ma233a", "https://tec.openplanner.team/stops/H1ms310b"], ["https://tec.openplanner.team/stops/LFCalte1", "https://tec.openplanner.team/stops/LWRgare1"], ["https://tec.openplanner.team/stops/X542acb", "https://tec.openplanner.team/stops/X542afa"], ["https://tec.openplanner.team/stops/X595acb", "https://tec.openplanner.team/stops/X595adb"], ["https://tec.openplanner.team/stops/LMIlac-2", "https://tec.openplanner.team/stops/Lrevaul2"], ["https://tec.openplanner.team/stops/X923akb", "https://tec.openplanner.team/stops/X941afa"], ["https://tec.openplanner.team/stops/H3so185a", "https://tec.openplanner.team/stops/H3so185b"], ["https://tec.openplanner.team/stops/H1br122a", "https://tec.openplanner.team/stops/H1br131a"], ["https://tec.openplanner.team/stops/Clbecol2", "https://tec.openplanner.team/stops/H1lo120a"], ["https://tec.openplanner.team/stops/H1ca103b", "https://tec.openplanner.team/stops/H1ca106a"], ["https://tec.openplanner.team/stops/X633aca", "https://tec.openplanner.team/stops/X633aea"], ["https://tec.openplanner.team/stops/X780aba", "https://tec.openplanner.team/stops/X780abb"], ["https://tec.openplanner.team/stops/Bmsgcap2", "https://tec.openplanner.team/stops/Bmsgpap1"], ["https://tec.openplanner.team/stops/H4tg162a", "https://tec.openplanner.team/stops/H4tg170a"], ["https://tec.openplanner.team/stops/Bbbksth1", "https://tec.openplanner.team/stops/Bnetace2"], ["https://tec.openplanner.team/stops/LhDkreu3", "https://tec.openplanner.team/stops/LhDkreu4"], ["https://tec.openplanner.team/stops/X804bda", "https://tec.openplanner.team/stops/X804bea"], ["https://tec.openplanner.team/stops/Csocime1", "https://tec.openplanner.team/stops/Csoplac1"], ["https://tec.openplanner.team/stops/X642aaa", "https://tec.openplanner.team/stops/X642aab"], ["https://tec.openplanner.team/stops/Lrcpaqu1", "https://tec.openplanner.team/stops/Lrctec-1"], ["https://tec.openplanner.team/stops/Llgchar1", "https://tec.openplanner.team/stops/Llgdarc1"], ["https://tec.openplanner.team/stops/Cjupn1", "https://tec.openplanner.team/stops/Cjurogi2"], ["https://tec.openplanner.team/stops/Cchsud16", "https://tec.openplanner.team/stops/NC01aab"], ["https://tec.openplanner.team/stops/Ccybouc4", "https://tec.openplanner.team/stops/Ccygara1"], ["https://tec.openplanner.team/stops/N894aba", "https://tec.openplanner.team/stops/N894aca"], ["https://tec.openplanner.team/stops/H4ra159b", "https://tec.openplanner.team/stops/H4wr174a"], ["https://tec.openplanner.team/stops/LTicime2", "https://tec.openplanner.team/stops/LTiterr2"], ["https://tec.openplanner.team/stops/H4ha167a", "https://tec.openplanner.team/stops/H4ha167b"], ["https://tec.openplanner.team/stops/X808aba", "https://tec.openplanner.team/stops/X808abb"], ["https://tec.openplanner.team/stops/Ljuathe1", "https://tec.openplanner.team/stops/Ljuchap1"], ["https://tec.openplanner.team/stops/H5el102b", "https://tec.openplanner.team/stops/H5el107a"], ["https://tec.openplanner.team/stops/Btubga01", "https://tec.openplanner.team/stops/Btubga06"], ["https://tec.openplanner.team/stops/Lmagara2", "https://tec.openplanner.team/stops/Lrosoxh2"], ["https://tec.openplanner.team/stops/X902aab", "https://tec.openplanner.team/stops/X902aoa"], ["https://tec.openplanner.team/stops/LAyheid1", "https://tec.openplanner.team/stops/LPRfour2"], ["https://tec.openplanner.team/stops/N235aeb", "https://tec.openplanner.team/stops/N241ada"], ["https://tec.openplanner.team/stops/N528aab", "https://tec.openplanner.team/stops/N528aba"], ["https://tec.openplanner.team/stops/Lghberl1", "https://tec.openplanner.team/stops/Lghberl2"], ["https://tec.openplanner.team/stops/Bottgar5", "https://tec.openplanner.team/stops/Bottgar6"], ["https://tec.openplanner.team/stops/Ladgath1", "https://tec.openplanner.team/stops/Ladloup2"], ["https://tec.openplanner.team/stops/LArmaro1", "https://tec.openplanner.team/stops/X548aea"], ["https://tec.openplanner.team/stops/Claptcf2", "https://tec.openplanner.team/stops/NC23aba"], ["https://tec.openplanner.team/stops/LFLcent1", "https://tec.openplanner.team/stops/LFLcher1"], ["https://tec.openplanner.team/stops/X801aab", "https://tec.openplanner.team/stops/X801abc"], ["https://tec.openplanner.team/stops/X717agf", "https://tec.openplanner.team/stops/X718aga"], ["https://tec.openplanner.team/stops/X616ahb", "https://tec.openplanner.team/stops/X625ada"], ["https://tec.openplanner.team/stops/Cctpche2", "https://tec.openplanner.team/stops/NC11alb"], ["https://tec.openplanner.team/stops/H1ht128b", "https://tec.openplanner.team/stops/H1si155a"], ["https://tec.openplanner.team/stops/LbUmolk1", "https://tec.openplanner.team/stops/LbUwirt2"], ["https://tec.openplanner.team/stops/Cctathe2", "https://tec.openplanner.team/stops/Cctfaub1"], ["https://tec.openplanner.team/stops/Cmaduna1", "https://tec.openplanner.team/stops/Cmamonu1"], ["https://tec.openplanner.team/stops/H4de112a", "https://tec.openplanner.team/stops/H4de114b"], ["https://tec.openplanner.team/stops/H1cu110a", "https://tec.openplanner.team/stops/H1cu110b"], ["https://tec.openplanner.team/stops/H1mq199b", "https://tec.openplanner.team/stops/H5ma185b"], ["https://tec.openplanner.team/stops/N557adb", "https://tec.openplanner.team/stops/N557agb"], ["https://tec.openplanner.team/stops/H1em110a", "https://tec.openplanner.team/stops/H1hl127a"], ["https://tec.openplanner.team/stops/LCFeg--1", "https://tec.openplanner.team/stops/LCFeg--2"], ["https://tec.openplanner.team/stops/H1ca105a", "https://tec.openplanner.team/stops/H1ma230b"], ["https://tec.openplanner.team/stops/N573aob", "https://tec.openplanner.team/stops/N573ara"], ["https://tec.openplanner.team/stops/H4fr143b", "https://tec.openplanner.team/stops/H4rc234c"], ["https://tec.openplanner.team/stops/H1pd142a", "https://tec.openplanner.team/stops/H1wg127a"], ["https://tec.openplanner.team/stops/LCRrape2", "https://tec.openplanner.team/stops/LFmbure1"], ["https://tec.openplanner.team/stops/N230aaa", "https://tec.openplanner.team/stops/N230abb"], ["https://tec.openplanner.team/stops/LLbrecu1", "https://tec.openplanner.team/stops/LRcjard1"], ["https://tec.openplanner.team/stops/H1pe131b", "https://tec.openplanner.team/stops/H1so131b"], ["https://tec.openplanner.team/stops/X615bbb", "https://tec.openplanner.team/stops/X615bca"], ["https://tec.openplanner.team/stops/Bquecro1", "https://tec.openplanner.team/stops/Bquecro2"], ["https://tec.openplanner.team/stops/Bwatbce1", "https://tec.openplanner.team/stops/Bwatmco2"], ["https://tec.openplanner.team/stops/N162ada", "https://tec.openplanner.team/stops/N162aea"], ["https://tec.openplanner.team/stops/H1qu103a", "https://tec.openplanner.team/stops/H1qu112a"], ["https://tec.openplanner.team/stops/LAo170-2", "https://tec.openplanner.team/stops/LTPlegr2"], ["https://tec.openplanner.team/stops/N577ahb", "https://tec.openplanner.team/stops/N577ajb"], ["https://tec.openplanner.team/stops/Bptrgri1", "https://tec.openplanner.team/stops/Bptrvil2"], ["https://tec.openplanner.team/stops/Louairl1", "https://tec.openplanner.team/stops/Loubour2"], ["https://tec.openplanner.team/stops/N501bia", "https://tec.openplanner.team/stops/N501lpb"], ["https://tec.openplanner.team/stops/H1al146b", "https://tec.openplanner.team/stops/H1mb137b"], ["https://tec.openplanner.team/stops/Bcrbbou2", "https://tec.openplanner.team/stops/Bcrbcel1"], ["https://tec.openplanner.team/stops/LCPaywa2", "https://tec.openplanner.team/stops/LSpcarr1"], ["https://tec.openplanner.team/stops/Lhrwigi2", "https://tec.openplanner.team/stops/Lwachal2"], ["https://tec.openplanner.team/stops/Lflmc--2", "https://tec.openplanner.team/stops/Lflroms2"], ["https://tec.openplanner.team/stops/LLSba6-1", "https://tec.openplanner.team/stops/LLStrid2"], ["https://tec.openplanner.team/stops/Cfvombo2", "https://tec.openplanner.team/stops/H1fv103a"], ["https://tec.openplanner.team/stops/Bdvmcbo1", "https://tec.openplanner.team/stops/Bdvmcbo2"], ["https://tec.openplanner.team/stops/N230aea", "https://tec.openplanner.team/stops/N230afb"], ["https://tec.openplanner.team/stops/X619aka", "https://tec.openplanner.team/stops/X619akb"], ["https://tec.openplanner.team/stops/N423afb", "https://tec.openplanner.team/stops/NH21aea"], ["https://tec.openplanner.team/stops/H5at114a", "https://tec.openplanner.team/stops/H5at133b"], ["https://tec.openplanner.team/stops/Bnilwal1", "https://tec.openplanner.team/stops/Bnilwal2"], ["https://tec.openplanner.team/stops/X850amb", "https://tec.openplanner.team/stops/X850ana"], ["https://tec.openplanner.team/stops/H4vz368a", "https://tec.openplanner.team/stops/H4vz369b"], ["https://tec.openplanner.team/stops/N127aba", "https://tec.openplanner.team/stops/N127aib"], ["https://tec.openplanner.team/stops/Bptbmco2", "https://tec.openplanner.team/stops/Brxmcna2"], ["https://tec.openplanner.team/stops/H4mt216b", "https://tec.openplanner.team/stops/H4mt217b"], ["https://tec.openplanner.team/stops/LNAplac1", "https://tec.openplanner.team/stops/LNAplac2"], ["https://tec.openplanner.team/stops/LPAeg--1", "https://tec.openplanner.team/stops/LPAmosa1"], ["https://tec.openplanner.team/stops/LAWlonc2", "https://tec.openplanner.team/stops/LAWvill2"], ["https://tec.openplanner.team/stops/LhGgeme1", "https://tec.openplanner.team/stops/LhGgeme2"], ["https://tec.openplanner.team/stops/H5at132b", "https://tec.openplanner.team/stops/H5ma185b"], ["https://tec.openplanner.team/stops/H1ms296a", "https://tec.openplanner.team/stops/H1ms296b"], ["https://tec.openplanner.team/stops/LhMdorf1", "https://tec.openplanner.team/stops/LhMmeil1"], ["https://tec.openplanner.team/stops/Beclbar1", "https://tec.openplanner.team/stops/Becltri1"], ["https://tec.openplanner.team/stops/LAmab752", "https://tec.openplanner.team/stops/LVLchem1"], ["https://tec.openplanner.team/stops/H2le152a", "https://tec.openplanner.team/stops/H2le152b"], ["https://tec.openplanner.team/stops/X750aea", "https://tec.openplanner.team/stops/X750bpa"], ["https://tec.openplanner.team/stops/LBVcent2", "https://tec.openplanner.team/stops/LBVronx1"], ["https://tec.openplanner.team/stops/LLrhaut2", "https://tec.openplanner.team/stops/LLrhaut3"], ["https://tec.openplanner.team/stops/Cfvombo1", "https://tec.openplanner.team/stops/Cfvombo2"], ["https://tec.openplanner.team/stops/N525aua", "https://tec.openplanner.team/stops/N525aub"], ["https://tec.openplanner.team/stops/X757ada", "https://tec.openplanner.team/stops/X757adb"], ["https://tec.openplanner.team/stops/LGLecol2", "https://tec.openplanner.team/stops/LGLlaur2"], ["https://tec.openplanner.team/stops/X947aab", "https://tec.openplanner.team/stops/X948agb"], ["https://tec.openplanner.team/stops/Bptrgri2", "https://tec.openplanner.team/stops/Brosegl2"], ["https://tec.openplanner.team/stops/Bbstchn2", "https://tec.openplanner.team/stops/Bwaygrg2"], ["https://tec.openplanner.team/stops/Bcsecar1", "https://tec.openplanner.team/stops/Bcsecar2"], ["https://tec.openplanner.team/stops/LBscime1", "https://tec.openplanner.team/stops/LBscime2"], ["https://tec.openplanner.team/stops/H1gc123b", "https://tec.openplanner.team/stops/H1gc124a"], ["https://tec.openplanner.team/stops/H2ch110a", "https://tec.openplanner.team/stops/H2ch121a"], ["https://tec.openplanner.team/stops/Lvefran1", "https://tec.openplanner.team/stops/Lvevieu2"], ["https://tec.openplanner.team/stops/Lhurigu1", "https://tec.openplanner.team/stops/Lvearle4"], ["https://tec.openplanner.team/stops/Ccigene1", "https://tec.openplanner.team/stops/Ccisart1"], ["https://tec.openplanner.team/stops/LPrcarr1", "https://tec.openplanner.team/stops/LWZbeem2"], ["https://tec.openplanner.team/stops/N162aeb", "https://tec.openplanner.team/stops/N162afa"], ["https://tec.openplanner.team/stops/Ccycont1", "https://tec.openplanner.team/stops/Cvlstan2"], ["https://tec.openplanner.team/stops/Lsnmala1", "https://tec.openplanner.team/stops/Lsnmala2"], ["https://tec.openplanner.team/stops/H5pe144a", "https://tec.openplanner.team/stops/H5pe149a"], ["https://tec.openplanner.team/stops/X908aba", "https://tec.openplanner.team/stops/X955ahb"], ["https://tec.openplanner.team/stops/LTIecma1", "https://tec.openplanner.team/stops/LTIecma2"], ["https://tec.openplanner.team/stops/LeYberl2", "https://tec.openplanner.team/stops/LeYraaf2"], ["https://tec.openplanner.team/stops/X919ada", "https://tec.openplanner.team/stops/X921akb"], ["https://tec.openplanner.team/stops/H2lc169a", "https://tec.openplanner.team/stops/H2lc169d"], ["https://tec.openplanner.team/stops/N509bfa", "https://tec.openplanner.team/stops/N509bgb"], ["https://tec.openplanner.team/stops/H3lr109c", "https://tec.openplanner.team/stops/H3lr110b"], ["https://tec.openplanner.team/stops/H4ty351a", "https://tec.openplanner.team/stops/H4ty416a"], ["https://tec.openplanner.team/stops/LVEcroi1", "https://tec.openplanner.team/stops/LVEjard1"], ["https://tec.openplanner.team/stops/N501fbz", "https://tec.openplanner.team/stops/N501ltb"], ["https://tec.openplanner.team/stops/H1ob328a", "https://tec.openplanner.team/stops/H1ob330a"], ["https://tec.openplanner.team/stops/X734anc", "https://tec.openplanner.team/stops/X734aoa"], ["https://tec.openplanner.team/stops/Lhecarc*", "https://tec.openplanner.team/stops/Lhecarc1"], ["https://tec.openplanner.team/stops/LLrfrai1", "https://tec.openplanner.team/stops/LLrjeho2"], ["https://tec.openplanner.team/stops/N352abb", "https://tec.openplanner.team/stops/N352aja"], ["https://tec.openplanner.team/stops/X371aib", "https://tec.openplanner.team/stops/X371ajb"], ["https://tec.openplanner.team/stops/X804bta", "https://tec.openplanner.team/stops/X804btb"], ["https://tec.openplanner.team/stops/Bmrlhan2", "https://tec.openplanner.team/stops/Bmrlhan4"], ["https://tec.openplanner.team/stops/Cjucopp1", "https://tec.openplanner.team/stops/Cjutrou3"], ["https://tec.openplanner.team/stops/N232ana", "https://tec.openplanner.team/stops/N232bqa"], ["https://tec.openplanner.team/stops/N501cma", "https://tec.openplanner.team/stops/N501dna"], ["https://tec.openplanner.team/stops/H2ma209b", "https://tec.openplanner.team/stops/H3bo103a"], ["https://tec.openplanner.team/stops/N212ada", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/H1ms253b", "https://tec.openplanner.team/stops/H1ms907a"], ["https://tec.openplanner.team/stops/X601ata", "https://tec.openplanner.team/stops/X601ava"], ["https://tec.openplanner.team/stops/Cmlrous2", "https://tec.openplanner.team/stops/Cmlvitf1"], ["https://tec.openplanner.team/stops/N343ala", "https://tec.openplanner.team/stops/N343alb"], ["https://tec.openplanner.team/stops/Cnachat2", "https://tec.openplanner.team/stops/Cnacroc1"], ["https://tec.openplanner.team/stops/H4ln129a", "https://tec.openplanner.team/stops/H4ne141a"], ["https://tec.openplanner.team/stops/N229aaa", "https://tec.openplanner.team/stops/N291aca"], ["https://tec.openplanner.team/stops/N501kud", "https://tec.openplanner.team/stops/N501lna"], ["https://tec.openplanner.team/stops/H4fl179b", "https://tec.openplanner.team/stops/H4mg139a"], ["https://tec.openplanner.team/stops/Brsgera1", "https://tec.openplanner.team/stops/Brsggea1"], ["https://tec.openplanner.team/stops/X718aaa", "https://tec.openplanner.team/stops/X718aka"], ["https://tec.openplanner.team/stops/N577ada", "https://tec.openplanner.team/stops/N577aia"], ["https://tec.openplanner.team/stops/LHUbail1", "https://tec.openplanner.team/stops/LHUsart2"], ["https://tec.openplanner.team/stops/Bwatceg2", "https://tec.openplanner.team/stops/Bwatcpl2"], ["https://tec.openplanner.team/stops/N218aba", "https://tec.openplanner.team/stops/N331ada"], ["https://tec.openplanner.team/stops/LHolone1", "https://tec.openplanner.team/stops/LHZec--2"], ["https://tec.openplanner.team/stops/Cmahotv1", "https://tec.openplanner.team/stops/CMcart2"], ["https://tec.openplanner.team/stops/Cctchea1", "https://tec.openplanner.team/stops/NC11ajb"], ["https://tec.openplanner.team/stops/H4pl112a", "https://tec.openplanner.team/stops/H4pl121a"], ["https://tec.openplanner.team/stops/LORdtec*", "https://tec.openplanner.team/stops/LORvill3"], ["https://tec.openplanner.team/stops/N501ajb", "https://tec.openplanner.team/stops/N501bfz"], ["https://tec.openplanner.team/stops/LMforba1", "https://tec.openplanner.team/stops/LMfpral2"], ["https://tec.openplanner.team/stops/Caujonc2", "https://tec.openplanner.team/stops/Cauromi2"], ["https://tec.openplanner.team/stops/LBgcroi1", "https://tec.openplanner.team/stops/LBgcroi4"], ["https://tec.openplanner.team/stops/LRR2egl1", "https://tec.openplanner.team/stops/LRRpost2"], ["https://tec.openplanner.team/stops/LHrprie1", "https://tec.openplanner.team/stops/LHrwaya1"], ["https://tec.openplanner.team/stops/N547aha", "https://tec.openplanner.team/stops/N573apa"], ["https://tec.openplanner.team/stops/LSpfond1", "https://tec.openplanner.team/stops/LSphote1"], ["https://tec.openplanner.team/stops/LBRpier1", "https://tec.openplanner.team/stops/LBRtrag1"], ["https://tec.openplanner.team/stops/Cthbeff1", "https://tec.openplanner.team/stops/Cthhvil6"], ["https://tec.openplanner.team/stops/X877afa", "https://tec.openplanner.team/stops/X877afb"], ["https://tec.openplanner.team/stops/Cpllimi3", "https://tec.openplanner.team/stops/Cpllimi4"], ["https://tec.openplanner.team/stops/LsVeite1", "https://tec.openplanner.team/stops/LwLprum1"], ["https://tec.openplanner.team/stops/H1en101a", "https://tec.openplanner.team/stops/H1en102a"], ["https://tec.openplanner.team/stops/N501bsa", "https://tec.openplanner.team/stops/N999aab"], ["https://tec.openplanner.team/stops/LWacime1", "https://tec.openplanner.team/stops/LWagare*"], ["https://tec.openplanner.team/stops/LCeanne1", "https://tec.openplanner.team/stops/LFarhuy2"], ["https://tec.openplanner.team/stops/Bmrsmco1", "https://tec.openplanner.team/stops/Bmrswag1"], ["https://tec.openplanner.team/stops/H1do127a", "https://tec.openplanner.team/stops/H1do130a"], ["https://tec.openplanner.team/stops/Bwavcen1", "https://tec.openplanner.team/stops/Bwavmes2"], ["https://tec.openplanner.team/stops/LPbchat1", "https://tec.openplanner.team/stops/LPbover2"], ["https://tec.openplanner.team/stops/Bgzddub1", "https://tec.openplanner.team/stops/Bgzdsta2"], ["https://tec.openplanner.team/stops/H1te175a", "https://tec.openplanner.team/stops/H1te198b"], ["https://tec.openplanner.team/stops/LAYchal1", "https://tec.openplanner.team/stops/LAYcont1"], ["https://tec.openplanner.team/stops/Bblafra1", "https://tec.openplanner.team/stops/Bblajap1"], ["https://tec.openplanner.team/stops/H4ty311b", "https://tec.openplanner.team/stops/H4vx360a"], ["https://tec.openplanner.team/stops/H4bv145a", "https://tec.openplanner.team/stops/H4os220b"], ["https://tec.openplanner.team/stops/LrEkreu2", "https://tec.openplanner.team/stops/LrEviel1"], ["https://tec.openplanner.team/stops/Bthscbl1", "https://tec.openplanner.team/stops/NL37alb"], ["https://tec.openplanner.team/stops/X771aia", "https://tec.openplanner.team/stops/X771aib"], ["https://tec.openplanner.team/stops/N531ada", "https://tec.openplanner.team/stops/N531afh"], ["https://tec.openplanner.team/stops/X760aca", "https://tec.openplanner.team/stops/X760adb"], ["https://tec.openplanner.team/stops/H1me115a", "https://tec.openplanner.team/stops/H1so132a"], ["https://tec.openplanner.team/stops/X818ata", "https://tec.openplanner.team/stops/X820aeb"], ["https://tec.openplanner.team/stops/Cslbarb2", "https://tec.openplanner.team/stops/Cslegli2"], ["https://tec.openplanner.team/stops/X601ada", "https://tec.openplanner.team/stops/X601aeb"], ["https://tec.openplanner.team/stops/X750aba", "https://tec.openplanner.team/stops/X750abb"], ["https://tec.openplanner.team/stops/Bcbqgar2", "https://tec.openplanner.team/stops/Bcbqufo1"], ["https://tec.openplanner.team/stops/N232aib", "https://tec.openplanner.team/stops/N232bka"], ["https://tec.openplanner.team/stops/Cwfdupo1", "https://tec.openplanner.team/stops/Cwfdupo2"], ["https://tec.openplanner.team/stops/H1gh153b", "https://tec.openplanner.team/stops/H1je225b"], ["https://tec.openplanner.team/stops/LWEcite2", "https://tec.openplanner.team/stops/LWEgend2"], ["https://tec.openplanner.team/stops/X713agb", "https://tec.openplanner.team/stops/X713ahb"], ["https://tec.openplanner.team/stops/N562aib", "https://tec.openplanner.team/stops/N562atb"], ["https://tec.openplanner.team/stops/Cci4bra4", "https://tec.openplanner.team/stops/Cmllait1"], ["https://tec.openplanner.team/stops/LeUroll1", "https://tec.openplanner.team/stops/LeUvoss1"], ["https://tec.openplanner.team/stops/H1si155a", "https://tec.openplanner.team/stops/H1si157a"], ["https://tec.openplanner.team/stops/Brxmcna1", "https://tec.openplanner.team/stops/Brxmhai1"], ["https://tec.openplanner.team/stops/LHmcarr2", "https://tec.openplanner.team/stops/LHmcite1"], ["https://tec.openplanner.team/stops/Lmlcrot1", "https://tec.openplanner.team/stops/Lmltrix*"], ["https://tec.openplanner.team/stops/N522aia", "https://tec.openplanner.team/stops/N576ama"], ["https://tec.openplanner.team/stops/N543bia", "https://tec.openplanner.team/stops/N543bib"], ["https://tec.openplanner.team/stops/Cvrhaie2", "https://tec.openplanner.team/stops/NH03ada"], ["https://tec.openplanner.team/stops/Lmodeja1", "https://tec.openplanner.team/stops/Lmoknae2"], ["https://tec.openplanner.team/stops/LFmcarr2", "https://tec.openplanner.team/stops/LKmcabi2"], ["https://tec.openplanner.team/stops/Cnaha561", "https://tec.openplanner.team/stops/Cnating2"], ["https://tec.openplanner.team/stops/H1ag105a", "https://tec.openplanner.team/stops/H1ag106a"], ["https://tec.openplanner.team/stops/X601awa", "https://tec.openplanner.team/stops/X601dcb"], ["https://tec.openplanner.team/stops/LFEland2", "https://tec.openplanner.team/stops/LMYvill2"], ["https://tec.openplanner.team/stops/Lsmdepo2", "https://tec.openplanner.team/stops/Lsmecol1"], ["https://tec.openplanner.team/stops/H1ev112a", "https://tec.openplanner.team/stops/H1ev115a"], ["https://tec.openplanner.team/stops/Cgy4bra1", "https://tec.openplanner.team/stops/Cgyplvi2"], ["https://tec.openplanner.team/stops/Lmochar1", "https://tec.openplanner.team/stops/Lmomarr4"], ["https://tec.openplanner.team/stops/N542ara", "https://tec.openplanner.team/stops/N542arb"], ["https://tec.openplanner.team/stops/LDpzol-2", "https://tec.openplanner.team/stops/LTEnuro2"], ["https://tec.openplanner.team/stops/X982ara", "https://tec.openplanner.team/stops/X982bwa"], ["https://tec.openplanner.team/stops/N504acb", "https://tec.openplanner.team/stops/N579aeb"], ["https://tec.openplanner.team/stops/X610aea", "https://tec.openplanner.team/stops/X610aeb"], ["https://tec.openplanner.team/stops/LLMjacq2", "https://tec.openplanner.team/stops/LThpoli2"], ["https://tec.openplanner.team/stops/Lceembo1", "https://tec.openplanner.team/stops/Lceourt2"], ["https://tec.openplanner.team/stops/Chhlori1", "https://tec.openplanner.team/stops/Chhverr2"], ["https://tec.openplanner.team/stops/Cgystbe2", "https://tec.openplanner.team/stops/Cmtdepo1"], ["https://tec.openplanner.team/stops/H1bn114b", "https://tec.openplanner.team/stops/H1no142a"], ["https://tec.openplanner.team/stops/Lagcile1", "https://tec.openplanner.team/stops/Lagptba2"], ["https://tec.openplanner.team/stops/CMchfl1", "https://tec.openplanner.team/stops/CMleop2"], ["https://tec.openplanner.team/stops/Cjucopp2", "https://tec.openplanner.team/stops/Cjupn1"], ["https://tec.openplanner.team/stops/X361aba", "https://tec.openplanner.team/stops/X361abb"], ["https://tec.openplanner.team/stops/X801clb", "https://tec.openplanner.team/stops/X801cmb"], ["https://tec.openplanner.team/stops/X595afc", "https://tec.openplanner.team/stops/X713aaa"], ["https://tec.openplanner.team/stops/H4bc101d", "https://tec.openplanner.team/stops/H5bs103b"], ["https://tec.openplanner.team/stops/X654aea", "https://tec.openplanner.team/stops/X654afa"], ["https://tec.openplanner.team/stops/H1au112a", "https://tec.openplanner.team/stops/H1ro139a"], ["https://tec.openplanner.team/stops/N542ada", "https://tec.openplanner.team/stops/N542aqa"], ["https://tec.openplanner.team/stops/X747ada", "https://tec.openplanner.team/stops/X747adb"], ["https://tec.openplanner.team/stops/Bsmgpon1", "https://tec.openplanner.team/stops/Btanvil1"], ["https://tec.openplanner.team/stops/Bniveco1", "https://tec.openplanner.team/stops/Bnivsoi2"], ["https://tec.openplanner.team/stops/X897aaa", "https://tec.openplanner.team/stops/X897aab"], ["https://tec.openplanner.team/stops/LPRmoul1", "https://tec.openplanner.team/stops/LPRmoul2"], ["https://tec.openplanner.team/stops/X629aba", "https://tec.openplanner.team/stops/X636ayb"], ["https://tec.openplanner.team/stops/Lseboia1", "https://tec.openplanner.team/stops/Lsepudd1"], ["https://tec.openplanner.team/stops/Cmyoasi2", "https://tec.openplanner.team/stops/Cmyrays1"], ["https://tec.openplanner.team/stops/N505aaa", "https://tec.openplanner.team/stops/N505afa"], ["https://tec.openplanner.team/stops/Cnagrro1", "https://tec.openplanner.team/stops/Cnaplha2"], ["https://tec.openplanner.team/stops/Lsnhoco2", "https://tec.openplanner.team/stops/Ltibalt1"], ["https://tec.openplanner.team/stops/Cgomoul1", "https://tec.openplanner.team/stops/Cgomoul2"], ["https://tec.openplanner.team/stops/LMalune3", "https://tec.openplanner.team/stops/LMamuse3"], ["https://tec.openplanner.team/stops/Clbchar2", "https://tec.openplanner.team/stops/Clbhour2"], ["https://tec.openplanner.team/stops/LSMec--1", "https://tec.openplanner.team/stops/LSMpoin1"], ["https://tec.openplanner.team/stops/X896afb", "https://tec.openplanner.team/stops/X897aqb"], ["https://tec.openplanner.team/stops/H2sb232a", "https://tec.openplanner.team/stops/H3th134b"], ["https://tec.openplanner.team/stops/Lhrgall2", "https://tec.openplanner.team/stops/Lhrlalo2"], ["https://tec.openplanner.team/stops/H2fy119a", "https://tec.openplanner.team/stops/H2fy119b"], ["https://tec.openplanner.team/stops/LLUdoya2", "https://tec.openplanner.team/stops/LLUlieg1"], ["https://tec.openplanner.team/stops/X948apb", "https://tec.openplanner.team/stops/X948bab"], ["https://tec.openplanner.team/stops/X754ada", "https://tec.openplanner.team/stops/X754aeb"], ["https://tec.openplanner.team/stops/Baudvdu1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/LHNhv--2", "https://tec.openplanner.team/stops/LHNland1"], ["https://tec.openplanner.team/stops/X983ada", "https://tec.openplanner.team/stops/X983aea"], ["https://tec.openplanner.team/stops/Lsmtini1", "https://tec.openplanner.team/stops/Lsmtini3"], ["https://tec.openplanner.team/stops/Bwatcoc1", "https://tec.openplanner.team/stops/Bwatsan1"], ["https://tec.openplanner.team/stops/X398aba", "https://tec.openplanner.team/stops/X398aea"], ["https://tec.openplanner.team/stops/Lfhcime2", "https://tec.openplanner.team/stops/Lfhsoux2"], ["https://tec.openplanner.team/stops/N874alb", "https://tec.openplanner.team/stops/N874ama"], ["https://tec.openplanner.team/stops/LTRpeec1", "https://tec.openplanner.team/stops/LTRpeec2"], ["https://tec.openplanner.team/stops/X764afb", "https://tec.openplanner.team/stops/X791abb"], ["https://tec.openplanner.team/stops/LHChoek4", "https://tec.openplanner.team/stops/LHChoof4"], ["https://tec.openplanner.team/stops/LFEague1", "https://tec.openplanner.team/stops/LFEmala1"], ["https://tec.openplanner.team/stops/Caih1632", "https://tec.openplanner.team/stops/N543cca"], ["https://tec.openplanner.team/stops/LwSgeme2", "https://tec.openplanner.team/stops/LwSschw1"], ["https://tec.openplanner.team/stops/N134abb", "https://tec.openplanner.team/stops/N134ada"], ["https://tec.openplanner.team/stops/Cmtpaix2", "https://tec.openplanner.team/stops/Cmtpire1"], ["https://tec.openplanner.team/stops/LBCtros1", "https://tec.openplanner.team/stops/LBCtros2"], ["https://tec.openplanner.team/stops/X902aza", "https://tec.openplanner.team/stops/X902baa"], ["https://tec.openplanner.team/stops/LLrgara2", "https://tec.openplanner.team/stops/LSPgend2"], ["https://tec.openplanner.team/stops/Crolach1", "https://tec.openplanner.team/stops/Crolach2"], ["https://tec.openplanner.team/stops/N523aca", "https://tec.openplanner.team/stops/N523acb"], ["https://tec.openplanner.team/stops/Lchsa631", "https://tec.openplanner.team/stops/LHOgymn2"], ["https://tec.openplanner.team/stops/X354abb", "https://tec.openplanner.team/stops/X354aga"], ["https://tec.openplanner.team/stops/Cchwate1", "https://tec.openplanner.team/stops/CMwate2"], ["https://tec.openplanner.team/stops/H4gr109a", "https://tec.openplanner.team/stops/H4hu122a"], ["https://tec.openplanner.team/stops/LORdtec*", "https://tec.openplanner.team/stops/LORhorp1"], ["https://tec.openplanner.team/stops/Bblmcel2", "https://tec.openplanner.team/stops/Bchacen1"], ["https://tec.openplanner.team/stops/LTOeg--1", "https://tec.openplanner.team/stops/LTOplac2"], ["https://tec.openplanner.team/stops/H4bo121b", "https://tec.openplanner.team/stops/H5qu145a"], ["https://tec.openplanner.team/stops/Ccofayt1", "https://tec.openplanner.team/stops/Ccomott2"], ["https://tec.openplanner.team/stops/X818aoa", "https://tec.openplanner.team/stops/X818apa"], ["https://tec.openplanner.team/stops/Lhragri1", "https://tec.openplanner.team/stops/Lhrrhee*"], ["https://tec.openplanner.team/stops/X609aib", "https://tec.openplanner.team/stops/X610aia"], ["https://tec.openplanner.team/stops/Bllnrro1", "https://tec.openplanner.team/stops/Bmsgaxp2"], ["https://tec.openplanner.team/stops/LCRvert1", "https://tec.openplanner.team/stops/LFmbure1"], ["https://tec.openplanner.team/stops/LHUomni2", "https://tec.openplanner.team/stops/LHUresi3"], ["https://tec.openplanner.team/stops/H1te183a", "https://tec.openplanner.team/stops/H1te183b"], ["https://tec.openplanner.team/stops/LVBrmon1", "https://tec.openplanner.team/stops/LVBrmon2"], ["https://tec.openplanner.team/stops/LBNauto2", "https://tec.openplanner.team/stops/LWElanc2"], ["https://tec.openplanner.team/stops/Lheelva1", "https://tec.openplanner.team/stops/LOUsorb1"], ["https://tec.openplanner.team/stops/H4bo115b", "https://tec.openplanner.team/stops/H4bo116b"], ["https://tec.openplanner.team/stops/LeUfuss1", "https://tec.openplanner.team/stops/LeUsch%C3%B61"], ["https://tec.openplanner.team/stops/X601bya", "https://tec.openplanner.team/stops/X601cla"], ["https://tec.openplanner.team/stops/X749ada", "https://tec.openplanner.team/stops/X749aea"], ["https://tec.openplanner.team/stops/LSZjona2", "https://tec.openplanner.team/stops/LSZnive1"], ["https://tec.openplanner.team/stops/N106apa", "https://tec.openplanner.team/stops/N106aqa"], ["https://tec.openplanner.team/stops/Bgnteco2", "https://tec.openplanner.team/stops/Bgntpos2"], ["https://tec.openplanner.team/stops/LWDmass1", "https://tec.openplanner.team/stops/LWDsieg1"], ["https://tec.openplanner.team/stops/Lenabat1", "https://tec.openplanner.team/stops/Llmhalt1"], ["https://tec.openplanner.team/stops/Lagbeno2", "https://tec.openplanner.team/stops/Lagmoli2"], ["https://tec.openplanner.team/stops/N565afb", "https://tec.openplanner.team/stops/N565aib"], ["https://tec.openplanner.team/stops/Bbuztai1", "https://tec.openplanner.team/stops/Bobacou1"], ["https://tec.openplanner.team/stops/Csedoua1", "https://tec.openplanner.team/stops/Cselibe1"], ["https://tec.openplanner.team/stops/N202aia", "https://tec.openplanner.team/stops/N202aib"], ["https://tec.openplanner.team/stops/H1br129a", "https://tec.openplanner.team/stops/H2ma202b"], ["https://tec.openplanner.team/stops/Bwatran2", "https://tec.openplanner.team/stops/Bwatras2"], ["https://tec.openplanner.team/stops/LoUwelc2", "https://tec.openplanner.team/stops/LsBzent2"], ["https://tec.openplanner.team/stops/H1ha185a", "https://tec.openplanner.team/stops/H1ha190b"], ["https://tec.openplanner.team/stops/N501awa", "https://tec.openplanner.team/stops/N501dca"], ["https://tec.openplanner.team/stops/Cchheig1", "https://tec.openplanner.team/stops/Cchviad2"], ["https://tec.openplanner.team/stops/Lhubarl1", "https://tec.openplanner.team/stops/Ljhheus1"], ["https://tec.openplanner.team/stops/X713aib", "https://tec.openplanner.team/stops/X713ala"], ["https://tec.openplanner.team/stops/N505aib", "https://tec.openplanner.team/stops/N505ala"], ["https://tec.openplanner.team/stops/X398aaa", "https://tec.openplanner.team/stops/X999anb"], ["https://tec.openplanner.team/stops/Bcsemon1", "https://tec.openplanner.team/stops/Bsmgsuz2"], ["https://tec.openplanner.team/stops/Clbbonn1", "https://tec.openplanner.team/stops/Clbbonn4"], ["https://tec.openplanner.team/stops/X661aka", "https://tec.openplanner.team/stops/X661akb"], ["https://tec.openplanner.team/stops/X640aba", "https://tec.openplanner.team/stops/X640aha"], ["https://tec.openplanner.team/stops/Bwaunce1", "https://tec.openplanner.team/stops/Bwaunce2"], ["https://tec.openplanner.team/stops/LAUberg1", "https://tec.openplanner.team/stops/LAUmerc1"], ["https://tec.openplanner.team/stops/H1ms287a", "https://tec.openplanner.team/stops/H1ms905a"], ["https://tec.openplanner.team/stops/Bneeegl2", "https://tec.openplanner.team/stops/Bneesan2"], ["https://tec.openplanner.team/stops/N534bsb", "https://tec.openplanner.team/stops/N534bva"], ["https://tec.openplanner.team/stops/H1ag104b", "https://tec.openplanner.team/stops/H1ag106b"], ["https://tec.openplanner.team/stops/N532aeb", "https://tec.openplanner.team/stops/N532anb"], ["https://tec.openplanner.team/stops/H1be101a", "https://tec.openplanner.team/stops/H1er108a"], ["https://tec.openplanner.team/stops/X734and", "https://tec.openplanner.team/stops/X775abb"], ["https://tec.openplanner.team/stops/X662ana", "https://tec.openplanner.team/stops/X662aoa"], ["https://tec.openplanner.team/stops/H4og215b", "https://tec.openplanner.team/stops/H4to137b"], ["https://tec.openplanner.team/stops/Bblafab1", "https://tec.openplanner.team/stops/Bblatet1"], ["https://tec.openplanner.team/stops/X979afb", "https://tec.openplanner.team/stops/X979aka"], ["https://tec.openplanner.team/stops/Cgystjo3", "https://tec.openplanner.team/stops/Cmtmath2"], ["https://tec.openplanner.team/stops/H1hn208b", "https://tec.openplanner.team/stops/H1hn210a"], ["https://tec.openplanner.team/stops/Lcceg--2", "https://tec.openplanner.team/stops/LRaplac1"], ["https://tec.openplanner.team/stops/H4av107b", "https://tec.openplanner.team/stops/H4ef162b"], ["https://tec.openplanner.team/stops/Bjaugaz1", "https://tec.openplanner.team/stops/Bolphgr1"], ["https://tec.openplanner.team/stops/Ladabot2", "https://tec.openplanner.team/stops/Ladgron2"], ["https://tec.openplanner.team/stops/H1qu110a", "https://tec.openplanner.team/stops/H1qu110b"], ["https://tec.openplanner.team/stops/Cmyland2", "https://tec.openplanner.team/stops/Cmyland5"], ["https://tec.openplanner.team/stops/H1em101a", "https://tec.openplanner.team/stops/H1ev115b"], ["https://tec.openplanner.team/stops/H1bn114b", "https://tec.openplanner.team/stops/H1qp140b"], ["https://tec.openplanner.team/stops/LLUadze1", "https://tec.openplanner.team/stops/LLUgend1"], ["https://tec.openplanner.team/stops/H4mo205a", "https://tec.openplanner.team/stops/H4mo205b"], ["https://tec.openplanner.team/stops/Llgsnap2", "https://tec.openplanner.team/stops/Lsntvbi2"], ["https://tec.openplanner.team/stops/N311aec", "https://tec.openplanner.team/stops/N311afb"], ["https://tec.openplanner.team/stops/Chhdubr1", "https://tec.openplanner.team/stops/Chhprai1"], ["https://tec.openplanner.team/stops/N219adb", "https://tec.openplanner.team/stops/N219aeb"], ["https://tec.openplanner.team/stops/H4ty283a", "https://tec.openplanner.team/stops/H4ty322d"], ["https://tec.openplanner.team/stops/N550aaa", "https://tec.openplanner.team/stops/N550ama"], ["https://tec.openplanner.team/stops/X601aib", "https://tec.openplanner.team/stops/X601cda"], ["https://tec.openplanner.team/stops/LLelava3", "https://tec.openplanner.team/stops/X547abb"], ["https://tec.openplanner.team/stops/Bgembhe1", "https://tec.openplanner.team/stops/Bgembhe2"], ["https://tec.openplanner.team/stops/Cmmcime1", "https://tec.openplanner.team/stops/Cmmmarb1"], ["https://tec.openplanner.team/stops/N387acc", "https://tec.openplanner.team/stops/N387ahb"], ["https://tec.openplanner.team/stops/H4pi130b", "https://tec.openplanner.team/stops/H4pi136b"], ["https://tec.openplanner.team/stops/H1cu113a", "https://tec.openplanner.team/stops/H1cu125a"], ["https://tec.openplanner.team/stops/LBTfoot2", "https://tec.openplanner.team/stops/LBTnors1"], ["https://tec.openplanner.team/stops/N113acb", "https://tec.openplanner.team/stops/N113ada"], ["https://tec.openplanner.team/stops/H1si162a", "https://tec.openplanner.team/stops/H1si164b"], ["https://tec.openplanner.team/stops/X740afa", "https://tec.openplanner.team/stops/X759aga"], ["https://tec.openplanner.team/stops/H1nm138a", "https://tec.openplanner.team/stops/H1nm138b"], ["https://tec.openplanner.team/stops/X747akb", "https://tec.openplanner.team/stops/X749aab"], ["https://tec.openplanner.team/stops/Lvichpl1", "https://tec.openplanner.team/stops/Lvisere2"], ["https://tec.openplanner.team/stops/LLAvi651", "https://tec.openplanner.team/stops/LPlpomp1"], ["https://tec.openplanner.team/stops/LHcaube1", "https://tec.openplanner.team/stops/LMTfagn1"], ["https://tec.openplanner.team/stops/Lvimc--2", "https://tec.openplanner.team/stops/Lvitomb1"], ["https://tec.openplanner.team/stops/LBpcren1", "https://tec.openplanner.team/stops/LWAbeec1"], ["https://tec.openplanner.team/stops/Lvtauna1", "https://tec.openplanner.team/stops/Lvtauna2"], ["https://tec.openplanner.team/stops/X954aha", "https://tec.openplanner.team/stops/X954ahb"], ["https://tec.openplanner.team/stops/Llgdelb1", "https://tec.openplanner.team/stops/Llgsimo1"], ["https://tec.openplanner.team/stops/LhDkreu1", "https://tec.openplanner.team/stops/LhDkreu3"], ["https://tec.openplanner.team/stops/X724abb", "https://tec.openplanner.team/stops/X724aib"], ["https://tec.openplanner.team/stops/N534axb", "https://tec.openplanner.team/stops/N534bdb"], ["https://tec.openplanner.team/stops/Lgrcour2", "https://tec.openplanner.team/stops/Lgrrein1"], ["https://tec.openplanner.team/stops/X898aca", "https://tec.openplanner.team/stops/X995afa"], ["https://tec.openplanner.team/stops/LwYbruc1", "https://tec.openplanner.team/stops/LwYbruc3"], ["https://tec.openplanner.team/stops/X398afa", "https://tec.openplanner.team/stops/X999amb"], ["https://tec.openplanner.team/stops/X601agb", "https://tec.openplanner.team/stops/X601cba"], ["https://tec.openplanner.team/stops/Ladabot1", "https://tec.openplanner.team/stops/Ladgron1"], ["https://tec.openplanner.team/stops/Cmogrbu2", "https://tec.openplanner.team/stops/Cmonvci2"], ["https://tec.openplanner.team/stops/H1fl136a", "https://tec.openplanner.team/stops/H1fl142a"], ["https://tec.openplanner.team/stops/N343aeb", "https://tec.openplanner.team/stops/X892aga"], ["https://tec.openplanner.team/stops/N117aba", "https://tec.openplanner.team/stops/N117abb"], ["https://tec.openplanner.team/stops/LROgeuz1", "https://tec.openplanner.team/stops/LROgeuz2"], ["https://tec.openplanner.team/stops/Cjupllo1", "https://tec.openplanner.team/stops/CMtsan2"], ["https://tec.openplanner.team/stops/Cvlcalv1", "https://tec.openplanner.team/stops/Cvlcen2"], ["https://tec.openplanner.team/stops/N501fma", "https://tec.openplanner.team/stops/N501kva"], ["https://tec.openplanner.team/stops/N501cea", "https://tec.openplanner.team/stops/N501cfb"], ["https://tec.openplanner.team/stops/Csygare1", "https://tec.openplanner.team/stops/Csygare3"], ["https://tec.openplanner.team/stops/N153aba", "https://tec.openplanner.team/stops/N153aca"], ["https://tec.openplanner.team/stops/N501dpb", "https://tec.openplanner.team/stops/N501ena"], ["https://tec.openplanner.team/stops/Cmmbmad1", "https://tec.openplanner.team/stops/Cmmpjou2"], ["https://tec.openplanner.team/stops/LCsjone1", "https://tec.openplanner.team/stops/LSCchap1"], ["https://tec.openplanner.team/stops/Cgdberl2", "https://tec.openplanner.team/stops/Csyplac2"], ["https://tec.openplanner.team/stops/N353abb", "https://tec.openplanner.team/stops/N353aea"], ["https://tec.openplanner.team/stops/H2go116a", "https://tec.openplanner.team/stops/H2go117b"], ["https://tec.openplanner.team/stops/N533alb", "https://tec.openplanner.team/stops/N533alf"], ["https://tec.openplanner.team/stops/LBIcarg1", "https://tec.openplanner.team/stops/Lmlpata*"], ["https://tec.openplanner.team/stops/H4gu108a", "https://tec.openplanner.team/stops/H4jm116a"], ["https://tec.openplanner.team/stops/N565aca", "https://tec.openplanner.team/stops/N565acb"], ["https://tec.openplanner.team/stops/Bdvmcbo2", "https://tec.openplanner.team/stops/Bdvmccu1"], ["https://tec.openplanner.team/stops/H4hx118a", "https://tec.openplanner.team/stops/H4hx118b"], ["https://tec.openplanner.team/stops/LnUneun3", "https://tec.openplanner.team/stops/LsVlust1"], ["https://tec.openplanner.team/stops/X802aca", "https://tec.openplanner.team/stops/X802aeb"], ["https://tec.openplanner.team/stops/H1pa109a", "https://tec.openplanner.team/stops/H1pa167a"], ["https://tec.openplanner.team/stops/N562aca", "https://tec.openplanner.team/stops/N562afa"], ["https://tec.openplanner.team/stops/X607aia", "https://tec.openplanner.team/stops/X607ajb"], ["https://tec.openplanner.team/stops/Cselibe2", "https://tec.openplanner.team/stops/Csemacq4"], ["https://tec.openplanner.team/stops/Cgocolo2", "https://tec.openplanner.team/stops/Cgogrco1"], ["https://tec.openplanner.team/stops/H4de113a", "https://tec.openplanner.team/stops/H4wt159a"], ["https://tec.openplanner.team/stops/H4ne131a", "https://tec.openplanner.team/stops/H4ne131b"], ["https://tec.openplanner.team/stops/H1by102a", "https://tec.openplanner.team/stops/H1by102b"], ["https://tec.openplanner.team/stops/LaRkape1", "https://tec.openplanner.team/stops/LmSluxh1"], ["https://tec.openplanner.team/stops/H1mh112a", "https://tec.openplanner.team/stops/H1mh115b"], ["https://tec.openplanner.team/stops/X602ana", "https://tec.openplanner.team/stops/X602aoa"], ["https://tec.openplanner.team/stops/Clrmarl1", "https://tec.openplanner.team/stops/CMpara2"], ["https://tec.openplanner.team/stops/H1ml110a", "https://tec.openplanner.team/stops/H1ml111b"], ["https://tec.openplanner.team/stops/X724aba", "https://tec.openplanner.team/stops/X725bfb"], ["https://tec.openplanner.team/stops/H2hg266a", "https://tec.openplanner.team/stops/H2hg269b"], ["https://tec.openplanner.team/stops/Lfhcoop2", "https://tec.openplanner.team/stops/Lfhrogn2"], ["https://tec.openplanner.team/stops/LVSbleu2", "https://tec.openplanner.team/stops/LVSslin2"], ["https://tec.openplanner.team/stops/LATguis1", "https://tec.openplanner.team/stops/LATguis2"], ["https://tec.openplanner.team/stops/LTaabba2", "https://tec.openplanner.team/stops/LTamag2"], ["https://tec.openplanner.team/stops/Lbhfaye2", "https://tec.openplanner.team/stops/Ljuvert1"], ["https://tec.openplanner.team/stops/LiV19--2", "https://tec.openplanner.team/stops/LiVkreu1"], ["https://tec.openplanner.team/stops/H4pl112a", "https://tec.openplanner.team/stops/H4wn126b"], ["https://tec.openplanner.team/stops/N551aiy", "https://tec.openplanner.team/stops/N551aqb"], ["https://tec.openplanner.team/stops/N308aja", "https://tec.openplanner.team/stops/N308ajb"], ["https://tec.openplanner.team/stops/H1ms312a", "https://tec.openplanner.team/stops/H1ms312b"], ["https://tec.openplanner.team/stops/H4te252b", "https://tec.openplanner.team/stops/H4te261b"], ["https://tec.openplanner.team/stops/Cctathe2", "https://tec.openplanner.team/stops/Ccuhsti2"], ["https://tec.openplanner.team/stops/H1te176a", "https://tec.openplanner.team/stops/H1te176b"], ["https://tec.openplanner.team/stops/Ccoacar1", "https://tec.openplanner.team/stops/Ccotrie2"], ["https://tec.openplanner.team/stops/Llmbell1", "https://tec.openplanner.team/stops/Llmhalt2"], ["https://tec.openplanner.team/stops/Bovecha1", "https://tec.openplanner.team/stops/Bovecha2"], ["https://tec.openplanner.team/stops/X817abb", "https://tec.openplanner.team/stops/X817aca"], ["https://tec.openplanner.team/stops/X904aga", "https://tec.openplanner.team/stops/X943agb"], ["https://tec.openplanner.team/stops/H4be108a", "https://tec.openplanner.team/stops/H4be114a"], ["https://tec.openplanner.team/stops/Bnilcha2", "https://tec.openplanner.team/stops/Bniltri1"], ["https://tec.openplanner.team/stops/X760afb", "https://tec.openplanner.team/stops/X762afb"], ["https://tec.openplanner.team/stops/Cmohame1", "https://tec.openplanner.team/stops/Cmohame2"], ["https://tec.openplanner.team/stops/H4ag100a", "https://tec.openplanner.team/stops/H4fo118b"], ["https://tec.openplanner.team/stops/Bsgeegl1", "https://tec.openplanner.team/stops/Bsgevil2"], ["https://tec.openplanner.team/stops/N229apa", "https://tec.openplanner.team/stops/N231adb"], ["https://tec.openplanner.team/stops/N519ama", "https://tec.openplanner.team/stops/N520aia"], ["https://tec.openplanner.team/stops/Cbfdufa1", "https://tec.openplanner.team/stops/Clvimtr2"], ["https://tec.openplanner.team/stops/H5fl102d", "https://tec.openplanner.team/stops/H5fl104b"], ["https://tec.openplanner.team/stops/Cjubrul4", "https://tec.openplanner.team/stops/Cjucomb2"], ["https://tec.openplanner.team/stops/LSIroch1", "https://tec.openplanner.team/stops/LSIroch2"], ["https://tec.openplanner.team/stops/Lghencl1", "https://tec.openplanner.team/stops/Lghencl2"], ["https://tec.openplanner.team/stops/Llgchau2", "https://tec.openplanner.team/stops/Llgpere2"], ["https://tec.openplanner.team/stops/LkTweih1", "https://tec.openplanner.team/stops/LrAbe601"], ["https://tec.openplanner.team/stops/LdUespe4", "https://tec.openplanner.team/stops/LtH37c-2"], ["https://tec.openplanner.team/stops/Chpchea2", "https://tec.openplanner.team/stops/Cmesafi1"], ["https://tec.openplanner.team/stops/LMoelno2", "https://tec.openplanner.team/stops/LMomonc2"], ["https://tec.openplanner.team/stops/N501jka", "https://tec.openplanner.team/stops/N501jkb"], ["https://tec.openplanner.team/stops/X886aba", "https://tec.openplanner.team/stops/X886abc"], ["https://tec.openplanner.team/stops/N506ara", "https://tec.openplanner.team/stops/N506arb"], ["https://tec.openplanner.team/stops/LeUbell*", "https://tec.openplanner.team/stops/LeUschu1"], ["https://tec.openplanner.team/stops/LCx728-2", "https://tec.openplanner.team/stops/LCxchal2"], ["https://tec.openplanner.team/stops/H2ha133b", "https://tec.openplanner.team/stops/H2hg150a"], ["https://tec.openplanner.team/stops/LERboss2", "https://tec.openplanner.team/stops/LWbburn2"], ["https://tec.openplanner.team/stops/Lsmdepo1", "https://tec.openplanner.team/stops/Lveinva1"], ["https://tec.openplanner.team/stops/N562ata", "https://tec.openplanner.team/stops/N562bfb"], ["https://tec.openplanner.team/stops/Lheazz-1", "https://tec.openplanner.team/stops/Lheelva2"], ["https://tec.openplanner.team/stops/Cmltemp1", "https://tec.openplanner.team/stops/Cmltemp3"], ["https://tec.openplanner.team/stops/Bohnrsc1", "https://tec.openplanner.team/stops/Bwatber1"], ["https://tec.openplanner.team/stops/H1ba115a", "https://tec.openplanner.team/stops/H1gh371b"], ["https://tec.openplanner.team/stops/LeYmero1", "https://tec.openplanner.team/stops/LrAbe961"], ["https://tec.openplanner.team/stops/Lghmeun1", "https://tec.openplanner.team/stops/Ljetout3"], ["https://tec.openplanner.team/stops/LBbbac-2", "https://tec.openplanner.team/stops/LBbhupp2"], ["https://tec.openplanner.team/stops/H1do109b", "https://tec.openplanner.team/stops/H1do131d"], ["https://tec.openplanner.team/stops/Cdacolu1", "https://tec.openplanner.team/stops/Cdasama1"], ["https://tec.openplanner.team/stops/X818afb", "https://tec.openplanner.team/stops/X818ata"], ["https://tec.openplanner.team/stops/Llgnico2", "https://tec.openplanner.team/stops/Llgnico7"], ["https://tec.openplanner.team/stops/LGEpt--2", "https://tec.openplanner.team/stops/LLSba9-2"], ["https://tec.openplanner.team/stops/H4an104a", "https://tec.openplanner.team/stops/H4an106b"], ["https://tec.openplanner.team/stops/N534beb", "https://tec.openplanner.team/stops/N543cqa"], ["https://tec.openplanner.team/stops/X812aaa", "https://tec.openplanner.team/stops/X812ara"], ["https://tec.openplanner.team/stops/Balsbeg1", "https://tec.openplanner.team/stops/Balswsa1"], ["https://tec.openplanner.team/stops/Lstbota2", "https://tec.openplanner.team/stops/Lstchu-1"], ["https://tec.openplanner.team/stops/X512aib", "https://tec.openplanner.team/stops/X595aib"], ["https://tec.openplanner.team/stops/LElverl1", "https://tec.openplanner.team/stops/LElverl2"], ["https://tec.openplanner.team/stops/H4hu115b", "https://tec.openplanner.team/stops/H4hu116b"], ["https://tec.openplanner.team/stops/N501gea", "https://tec.openplanner.team/stops/N501lrb"], ["https://tec.openplanner.team/stops/N308bca", "https://tec.openplanner.team/stops/N385adb"], ["https://tec.openplanner.team/stops/N209ajb", "https://tec.openplanner.team/stops/N209anb"], ["https://tec.openplanner.team/stops/Lmopave1", "https://tec.openplanner.team/stops/Lsnfoot2"], ["https://tec.openplanner.team/stops/Bneelaa1", "https://tec.openplanner.team/stops/Bneelaa2"], ["https://tec.openplanner.team/stops/N135atb", "https://tec.openplanner.team/stops/N135aua"], ["https://tec.openplanner.team/stops/LOTdelv1", "https://tec.openplanner.team/stops/LVlplan2"], ["https://tec.openplanner.team/stops/LFMrijk1", "https://tec.openplanner.team/stops/LFPho8a1"], ["https://tec.openplanner.team/stops/Cml5ave2", "https://tec.openplanner.team/stops/Cmlsana1"], ["https://tec.openplanner.team/stops/N503ala", "https://tec.openplanner.team/stops/N511afa"], ["https://tec.openplanner.team/stops/X542aga", "https://tec.openplanner.team/stops/X542agb"], ["https://tec.openplanner.team/stops/Lhucime1", "https://tec.openplanner.team/stops/Lhurigu1"], ["https://tec.openplanner.team/stops/LkTweih2", "https://tec.openplanner.team/stops/LwAschu1"], ["https://tec.openplanner.team/stops/Cgxmorg1", "https://tec.openplanner.team/stops/CMmorg2"], ["https://tec.openplanner.team/stops/Lprchat2", "https://tec.openplanner.team/stops/Lprmc--1"], ["https://tec.openplanner.team/stops/X359aja", "https://tec.openplanner.team/stops/X858aha"], ["https://tec.openplanner.team/stops/LRfcent1", "https://tec.openplanner.team/stops/LRfcent2"], ["https://tec.openplanner.team/stops/X601bza", "https://tec.openplanner.team/stops/X601bzb"], ["https://tec.openplanner.team/stops/LHTmala4", "https://tec.openplanner.team/stops/LLxeclu2"], ["https://tec.openplanner.team/stops/LCRecmo2", "https://tec.openplanner.team/stops/LFmpoin1"], ["https://tec.openplanner.team/stops/H1er107a", "https://tec.openplanner.team/stops/H1er110a"], ["https://tec.openplanner.team/stops/X638aia", "https://tec.openplanner.team/stops/X638ama"], ["https://tec.openplanner.team/stops/H1ca100a", "https://tec.openplanner.team/stops/H1ca108a"], ["https://tec.openplanner.team/stops/Btilgar2", "https://tec.openplanner.team/stops/Btilsce2"], ["https://tec.openplanner.team/stops/Bpielon1", "https://tec.openplanner.team/stops/Bpielon2"], ["https://tec.openplanner.team/stops/X897aib", "https://tec.openplanner.team/stops/X897aic"], ["https://tec.openplanner.team/stops/Ltiegli1", "https://tec.openplanner.team/stops/Ltiegli3"], ["https://tec.openplanner.team/stops/N501iea", "https://tec.openplanner.team/stops/N501iey"], ["https://tec.openplanner.team/stops/X822aab", "https://tec.openplanner.team/stops/X822amb"], ["https://tec.openplanner.team/stops/H1fl135a", "https://tec.openplanner.team/stops/H1fl137b"], ["https://tec.openplanner.team/stops/Lbrboul1", "https://tec.openplanner.team/stops/Lbrplai1"], ["https://tec.openplanner.team/stops/X824ahb", "https://tec.openplanner.team/stops/X824aib"], ["https://tec.openplanner.team/stops/H1wa143b", "https://tec.openplanner.team/stops/H1wa164b"], ["https://tec.openplanner.team/stops/H2hg147b", "https://tec.openplanner.team/stops/H2hg155d"], ["https://tec.openplanner.team/stops/LCxchal1", "https://tec.openplanner.team/stops/LCxcham1"], ["https://tec.openplanner.team/stops/Cfabaty2", "https://tec.openplanner.team/stops/Clacast2"], ["https://tec.openplanner.team/stops/X926ada", "https://tec.openplanner.team/stops/X945abc"], ["https://tec.openplanner.team/stops/Cfobriq2", "https://tec.openplanner.team/stops/Cfohopi1"], ["https://tec.openplanner.team/stops/H4ne136a", "https://tec.openplanner.team/stops/H4ne136b"], ["https://tec.openplanner.team/stops/LWOrout2", "https://tec.openplanner.team/stops/LWOwa162"], ["https://tec.openplanner.team/stops/Lhrpaix1", "https://tec.openplanner.team/stops/Llgatel2"], ["https://tec.openplanner.team/stops/LrAdrie4", "https://tec.openplanner.team/stops/LrAtitf2"], ["https://tec.openplanner.team/stops/Llgmont1", "https://tec.openplanner.team/stops/Llgoise1"], ["https://tec.openplanner.team/stops/N321abb", "https://tec.openplanner.team/stops/N321afb"], ["https://tec.openplanner.team/stops/LSoboul2", "https://tec.openplanner.team/stops/LSomonu1"], ["https://tec.openplanner.team/stops/LkOaugu2", "https://tec.openplanner.team/stops/LkOzoll2"], ["https://tec.openplanner.team/stops/X601coa", "https://tec.openplanner.team/stops/X601cpa"], ["https://tec.openplanner.team/stops/N508aaa", "https://tec.openplanner.team/stops/N508aab"], ["https://tec.openplanner.team/stops/Lladete4", "https://tec.openplanner.team/stops/Lvovent2"], ["https://tec.openplanner.team/stops/LAvatri2", "https://tec.openplanner.team/stops/NL74aja"], ["https://tec.openplanner.team/stops/H4wu375a", "https://tec.openplanner.team/stops/H4wu420b"], ["https://tec.openplanner.team/stops/Lkivolg2", "https://tec.openplanner.team/stops/Loureno1"], ["https://tec.openplanner.team/stops/N550aab", "https://tec.openplanner.team/stops/N550ama"], ["https://tec.openplanner.team/stops/LBEfagn1", "https://tec.openplanner.team/stops/LBEtroo2"], ["https://tec.openplanner.team/stops/LHegame4", "https://tec.openplanner.team/stops/LHexhav1"], ["https://tec.openplanner.team/stops/Cgy3011", "https://tec.openplanner.team/stops/Cgyaudu2"], ["https://tec.openplanner.team/stops/H4do100b", "https://tec.openplanner.team/stops/H4do202a"], ["https://tec.openplanner.team/stops/LHGtong1", "https://tec.openplanner.team/stops/LHGzoni2"], ["https://tec.openplanner.team/stops/LMovich1", "https://tec.openplanner.team/stops/LMovich2"], ["https://tec.openplanner.team/stops/LhGbahn*", "https://tec.openplanner.team/stops/LhGbahn3"], ["https://tec.openplanner.team/stops/Blhupa12", "https://tec.openplanner.team/stops/Blhupa14"], ["https://tec.openplanner.team/stops/N543bqa", "https://tec.openplanner.team/stops/N543cia"], ["https://tec.openplanner.team/stops/X922ahb", "https://tec.openplanner.team/stops/X923aoa"], ["https://tec.openplanner.team/stops/Cssgare1", "https://tec.openplanner.team/stops/Csspn1"], ["https://tec.openplanner.team/stops/H1by101a", "https://tec.openplanner.team/stops/H1by107a"], ["https://tec.openplanner.team/stops/Cmtrbra1", "https://tec.openplanner.team/stops/Cmtrdec2"], ["https://tec.openplanner.team/stops/Lfhpast1", "https://tec.openplanner.team/stops/Lfhrogn2"], ["https://tec.openplanner.team/stops/NH01aib", "https://tec.openplanner.team/stops/NH01aua"], ["https://tec.openplanner.team/stops/LhOokat2", "https://tec.openplanner.team/stops/LhUrich1"], ["https://tec.openplanner.team/stops/X912aba", "https://tec.openplanner.team/stops/X912aea"], ["https://tec.openplanner.team/stops/LLEgare2", "https://tec.openplanner.team/stops/LSMgare2"], ["https://tec.openplanner.team/stops/Brsgfso2", "https://tec.openplanner.team/stops/Brsggea1"], ["https://tec.openplanner.team/stops/Bmrswag2", "https://tec.openplanner.team/stops/Bplncsd2"], ["https://tec.openplanner.team/stops/H4fr390a", "https://tec.openplanner.team/stops/H4ty328a"], ["https://tec.openplanner.team/stops/Bnivfle1", "https://tec.openplanner.team/stops/Bnivmfr1"], ["https://tec.openplanner.team/stops/N556adb", "https://tec.openplanner.team/stops/N557aia"], ["https://tec.openplanner.team/stops/X869aea", "https://tec.openplanner.team/stops/X869aeb"], ["https://tec.openplanner.team/stops/Bnivga71", "https://tec.openplanner.team/stops/Bnivsse1"], ["https://tec.openplanner.team/stops/Lflcime2", "https://tec.openplanner.team/stops/Lflterm1"], ["https://tec.openplanner.team/stops/Ccofayt2", "https://tec.openplanner.team/stops/Ccomott2"], ["https://tec.openplanner.team/stops/LOCbois1", "https://tec.openplanner.team/stops/LOCponc*"], ["https://tec.openplanner.team/stops/LHcbaro1", "https://tec.openplanner.team/stops/LHcbaro2"], ["https://tec.openplanner.team/stops/LQafond2", "https://tec.openplanner.team/stops/LSMgare2"], ["https://tec.openplanner.team/stops/LGmhedo1", "https://tec.openplanner.team/stops/LHmferm2"], ["https://tec.openplanner.team/stops/H5pe132b", "https://tec.openplanner.team/stops/H5pe133b"], ["https://tec.openplanner.team/stops/Crewatb1", "https://tec.openplanner.team/stops/Crewatb2"], ["https://tec.openplanner.team/stops/X779aha", "https://tec.openplanner.team/stops/X779ahb"], ["https://tec.openplanner.team/stops/LLrdrev1", "https://tec.openplanner.team/stops/LLrhaut4"], ["https://tec.openplanner.team/stops/H1ne139b", "https://tec.openplanner.team/stops/H1ne141b"], ["https://tec.openplanner.team/stops/Cmmegli1", "https://tec.openplanner.team/stops/Cmmplac4"], ["https://tec.openplanner.team/stops/Bmsgcap2", "https://tec.openplanner.team/stops/Bmsgeco2"], ["https://tec.openplanner.team/stops/H1ob327a", "https://tec.openplanner.team/stops/H1ob330b"], ["https://tec.openplanner.team/stops/N222aba", "https://tec.openplanner.team/stops/N222abb"], ["https://tec.openplanner.team/stops/N232axa", "https://tec.openplanner.team/stops/N232bob"], ["https://tec.openplanner.team/stops/LmHdrei1", "https://tec.openplanner.team/stops/LmTreic1"], ["https://tec.openplanner.team/stops/H1to154b", "https://tec.openplanner.team/stops/H1to155a"], ["https://tec.openplanner.team/stops/LFFchal1", "https://tec.openplanner.team/stops/LFFpier2"], ["https://tec.openplanner.team/stops/Ccucora1", "https://tec.openplanner.team/stops/Cgycorv2"], ["https://tec.openplanner.team/stops/H2hg144b", "https://tec.openplanner.team/stops/H2hg155d"], ["https://tec.openplanner.team/stops/Bboufsm1", "https://tec.openplanner.team/stops/Bbstfch2"], ["https://tec.openplanner.team/stops/H4br110a", "https://tec.openplanner.team/stops/H4br110b"], ["https://tec.openplanner.team/stops/Cjupn4", "https://tec.openplanner.team/stops/Cloauln2"], ["https://tec.openplanner.team/stops/X999ala", "https://tec.openplanner.team/stops/X999alb"], ["https://tec.openplanner.team/stops/X801aib", "https://tec.openplanner.team/stops/X801amb"], ["https://tec.openplanner.team/stops/Lfhchaf4", "https://tec.openplanner.team/stops/Livpost1"], ["https://tec.openplanner.team/stops/H5wo129a", "https://tec.openplanner.team/stops/H5wo136a"], ["https://tec.openplanner.team/stops/LTB105-1", "https://tec.openplanner.team/stops/LTBeg--1"], ["https://tec.openplanner.team/stops/H4be102a", "https://tec.openplanner.team/stops/H4be114a"], ["https://tec.openplanner.team/stops/H4ir166a", "https://tec.openplanner.team/stops/H4ir166b"], ["https://tec.openplanner.team/stops/X647aaa", "https://tec.openplanner.team/stops/X648abb"], ["https://tec.openplanner.team/stops/H5st163b", "https://tec.openplanner.team/stops/H5st169a"], ["https://tec.openplanner.team/stops/X804apa", "https://tec.openplanner.team/stops/X804aqb"], ["https://tec.openplanner.team/stops/Cciarfr1", "https://tec.openplanner.team/stops/Ccicloc1"], ["https://tec.openplanner.team/stops/X681afa", "https://tec.openplanner.team/stops/X687aha"], ["https://tec.openplanner.team/stops/Lhrferr1", "https://tec.openplanner.team/stops/Lhrlaix2"], ["https://tec.openplanner.team/stops/H4hx117a", "https://tec.openplanner.team/stops/H4hx122b"], ["https://tec.openplanner.team/stops/N143aba", "https://tec.openplanner.team/stops/N143abb"], ["https://tec.openplanner.team/stops/LSteg--1", "https://tec.openplanner.team/stops/LSteg--2"], ["https://tec.openplanner.team/stops/Llgbry-1", "https://tec.openplanner.team/stops/Llgherm1"], ["https://tec.openplanner.team/stops/Bpiepnd2", "https://tec.openplanner.team/stops/Bpiesta2"], ["https://tec.openplanner.team/stops/H1ma234b", "https://tec.openplanner.team/stops/H1ni323a"], ["https://tec.openplanner.team/stops/X824aaa", "https://tec.openplanner.team/stops/X825aab"], ["https://tec.openplanner.team/stops/LmR50--1", "https://tec.openplanner.team/stops/LmRh%C3%B6812"], ["https://tec.openplanner.team/stops/LFRfagn1", "https://tec.openplanner.team/stops/LSTmast2"], ["https://tec.openplanner.team/stops/Bnilspe3", "https://tec.openplanner.team/stops/Bnilspe4"], ["https://tec.openplanner.team/stops/H3lr116a", "https://tec.openplanner.team/stops/H3lr120a"], ["https://tec.openplanner.team/stops/X775aba", "https://tec.openplanner.team/stops/X775abb"], ["https://tec.openplanner.team/stops/H1le117a", "https://tec.openplanner.team/stops/H1le119b"], ["https://tec.openplanner.team/stops/Bbeaneu3", "https://tec.openplanner.team/stops/Btlgmee2"], ["https://tec.openplanner.team/stops/Bgoekaz1", "https://tec.openplanner.team/stops/Bgoekaz2"], ["https://tec.openplanner.team/stops/Cflhano1", "https://tec.openplanner.team/stops/Cflhano2"], ["https://tec.openplanner.team/stops/LAnvien2", "https://tec.openplanner.team/stops/LCFcafe1"], ["https://tec.openplanner.team/stops/X769acb", "https://tec.openplanner.team/stops/X769ana"], ["https://tec.openplanner.team/stops/Cvsbois1", "https://tec.openplanner.team/stops/Cvsduve2"], ["https://tec.openplanner.team/stops/Bnivrec1", "https://tec.openplanner.team/stops/Bnivtec2"], ["https://tec.openplanner.team/stops/H5at104b", "https://tec.openplanner.team/stops/H5at109b"], ["https://tec.openplanner.team/stops/LETec--1", "https://tec.openplanner.team/stops/LETec--2"], ["https://tec.openplanner.team/stops/LHChaut5", "https://tec.openplanner.team/stops/LHCquat4"], ["https://tec.openplanner.team/stops/H1hg179a", "https://tec.openplanner.team/stops/H1hm176a"], ["https://tec.openplanner.team/stops/Ctmdema2", "https://tec.openplanner.team/stops/Ctmwaut1"], ["https://tec.openplanner.team/stops/Lglcoun1", "https://tec.openplanner.team/stops/Lglsana2"], ["https://tec.openplanner.team/stops/H1po135b", "https://tec.openplanner.team/stops/H1po135d"], ["https://tec.openplanner.team/stops/LkEheyg2", "https://tec.openplanner.team/stops/LkEsouf1"], ["https://tec.openplanner.team/stops/Cthegli2", "https://tec.openplanner.team/stops/Cthwaib1"], ["https://tec.openplanner.team/stops/Cgymara2", "https://tec.openplanner.team/stops/CMsartc1"], ["https://tec.openplanner.team/stops/H2re174a", "https://tec.openplanner.team/stops/H2re174b"], ["https://tec.openplanner.team/stops/Lgrclos1", "https://tec.openplanner.team/stops/Lgrtomb1"], ["https://tec.openplanner.team/stops/Lprmana1", "https://tec.openplanner.team/stops/Lprmana4"], ["https://tec.openplanner.team/stops/X908aaa", "https://tec.openplanner.team/stops/X955ada"], ["https://tec.openplanner.team/stops/LSyec--1", "https://tec.openplanner.team/stops/LSyec--2"], ["https://tec.openplanner.team/stops/Bauddel1", "https://tec.openplanner.team/stops/Bauddel2"], ["https://tec.openplanner.team/stops/N211aib", "https://tec.openplanner.team/stops/N211anb"], ["https://tec.openplanner.team/stops/Bcrbmsg2", "https://tec.openplanner.team/stops/Bcrbros1"], ["https://tec.openplanner.team/stops/LMOeg--2", "https://tec.openplanner.team/stops/LMOhero1"], ["https://tec.openplanner.team/stops/LbUjost3", "https://tec.openplanner.team/stops/LbUjost4"], ["https://tec.openplanner.team/stops/LcRmuhl1", "https://tec.openplanner.team/stops/LwTkabi2"], ["https://tec.openplanner.team/stops/N101abb", "https://tec.openplanner.team/stops/N101ama"], ["https://tec.openplanner.team/stops/N232bda", "https://tec.openplanner.team/stops/N232bua"], ["https://tec.openplanner.team/stops/Berncim1", "https://tec.openplanner.team/stops/Bwlhpmt2"], ["https://tec.openplanner.team/stops/X942aaa", "https://tec.openplanner.team/stops/X942aea"], ["https://tec.openplanner.team/stops/LVLgotr1", "https://tec.openplanner.team/stops/LVLruis2"], ["https://tec.openplanner.team/stops/N115aea", "https://tec.openplanner.team/stops/N115afa"], ["https://tec.openplanner.team/stops/N874ajb", "https://tec.openplanner.team/stops/N874ama"], ["https://tec.openplanner.team/stops/Lsebonc1", "https://tec.openplanner.team/stops/Lsebonc2"], ["https://tec.openplanner.team/stops/Ccychap2", "https://tec.openplanner.team/stops/Ccygara2"], ["https://tec.openplanner.team/stops/Bhmmcim2", "https://tec.openplanner.team/stops/Bhmmtou1"], ["https://tec.openplanner.team/stops/LmNha152", "https://tec.openplanner.team/stops/LmNmerl1"], ["https://tec.openplanner.team/stops/Bgnpegl3", "https://tec.openplanner.team/stops/Bwaypon1"], ["https://tec.openplanner.team/stops/X910aeb", "https://tec.openplanner.team/stops/X911ala"], ["https://tec.openplanner.team/stops/N506aca", "https://tec.openplanner.team/stops/N506aza"], ["https://tec.openplanner.team/stops/Llgelis1", "https://tec.openplanner.team/stops/LlgLAMB7"], ["https://tec.openplanner.team/stops/N506boc", "https://tec.openplanner.team/stops/N506bod"], ["https://tec.openplanner.team/stops/LLUtill1", "https://tec.openplanner.team/stops/LLUtill3"], ["https://tec.openplanner.team/stops/Bhaleur1", "https://tec.openplanner.team/stops/Bhaleur2"], ["https://tec.openplanner.team/stops/LBIcabi2", "https://tec.openplanner.team/stops/LBIvill4"], ["https://tec.openplanner.team/stops/Cfrcoop1", "https://tec.openplanner.team/stops/Cfrcoop2"], ["https://tec.openplanner.team/stops/Cbflong2", "https://tec.openplanner.team/stops/Cbfstry1"], ["https://tec.openplanner.team/stops/H4bf106a", "https://tec.openplanner.team/stops/H4wp151a"], ["https://tec.openplanner.team/stops/Lsn130-1", "https://tec.openplanner.team/stops/Lsnhoco2"], ["https://tec.openplanner.team/stops/N515ajb", "https://tec.openplanner.team/stops/N515atb"], ["https://tec.openplanner.team/stops/H1an101a", "https://tec.openplanner.team/stops/H1an101b"], ["https://tec.openplanner.team/stops/H5rx110a", "https://tec.openplanner.team/stops/H5rx140a"], ["https://tec.openplanner.team/stops/LmYamel2", "https://tec.openplanner.team/stops/LwLkirc2"], ["https://tec.openplanner.team/stops/Cobbusc2", "https://tec.openplanner.team/stops/Cobbuze1"], ["https://tec.openplanner.team/stops/X902aya", "https://tec.openplanner.team/stops/X902azb"], ["https://tec.openplanner.team/stops/Cfocobe1", "https://tec.openplanner.team/stops/Clrrhau2"], ["https://tec.openplanner.team/stops/LrDneun1", "https://tec.openplanner.team/stops/LrDrose3"], ["https://tec.openplanner.team/stops/LHthest1", "https://tec.openplanner.team/stops/LJAferm2"], ["https://tec.openplanner.team/stops/H4eg102b", "https://tec.openplanner.team/stops/H4eg105a"], ["https://tec.openplanner.team/stops/Ladmoul1", "https://tec.openplanner.team/stops/Lvedepa*"], ["https://tec.openplanner.team/stops/X547aaa", "https://tec.openplanner.team/stops/X547aab"], ["https://tec.openplanner.team/stops/H4ha167b", "https://tec.openplanner.team/stops/H4me213b"], ["https://tec.openplanner.team/stops/X609aqa", "https://tec.openplanner.team/stops/X627ada"], ["https://tec.openplanner.team/stops/Cflvxsa1", "https://tec.openplanner.team/stops/Cwgtill2"], ["https://tec.openplanner.team/stops/X613aaa", "https://tec.openplanner.team/stops/X613adb"], ["https://tec.openplanner.team/stops/Cchparc1", "https://tec.openplanner.team/stops/Cchparc5"], ["https://tec.openplanner.team/stops/X837aea", "https://tec.openplanner.team/stops/X837afb"], ["https://tec.openplanner.team/stops/X780abb", "https://tec.openplanner.team/stops/X780acb"], ["https://tec.openplanner.team/stops/Bjodced1", "https://tec.openplanner.team/stops/Bjodppe1"], ["https://tec.openplanner.team/stops/Cgxmorg2", "https://tec.openplanner.team/stops/CMmorg2"], ["https://tec.openplanner.team/stops/LSOboeu2", "https://tec.openplanner.team/stops/LSOvoie2"], ["https://tec.openplanner.team/stops/X641ama", "https://tec.openplanner.team/stops/X641aya"], ["https://tec.openplanner.team/stops/H2mo131b", "https://tec.openplanner.team/stops/H2mo143b"], ["https://tec.openplanner.team/stops/LmHbien2", "https://tec.openplanner.team/stops/LmHschm1"], ["https://tec.openplanner.team/stops/X804ata", "https://tec.openplanner.team/stops/X804aua"], ["https://tec.openplanner.team/stops/X901aja", "https://tec.openplanner.team/stops/X901awa"], ["https://tec.openplanner.team/stops/N542aga", "https://tec.openplanner.team/stops/N542agb"], ["https://tec.openplanner.team/stops/N534aub", "https://tec.openplanner.team/stops/N534bda"], ["https://tec.openplanner.team/stops/Cmgbras2", "https://tec.openplanner.team/stops/Cmgpn1"], ["https://tec.openplanner.team/stops/Llgancd1", "https://tec.openplanner.team/stops/Llgjoie2"], ["https://tec.openplanner.team/stops/LJOchar2", "https://tec.openplanner.team/stops/LSOvoie4"], ["https://tec.openplanner.team/stops/X637acb", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/LLrbecc1", "https://tec.openplanner.team/stops/LLrbecc2"], ["https://tec.openplanner.team/stops/X760acb", "https://tec.openplanner.team/stops/X760ada"], ["https://tec.openplanner.team/stops/LWAipes2", "https://tec.openplanner.team/stops/LWAloui1"], ["https://tec.openplanner.team/stops/N551aec", "https://tec.openplanner.team/stops/N551akb"], ["https://tec.openplanner.team/stops/LBNlong1", "https://tec.openplanner.team/stops/LBNruns1"], ["https://tec.openplanner.team/stops/Csobail1", "https://tec.openplanner.team/stops/Csoforr3"], ["https://tec.openplanner.team/stops/Bptecal1", "https://tec.openplanner.team/stops/H1hv130a"], ["https://tec.openplanner.team/stops/LmImirf2", "https://tec.openplanner.team/stops/LmIvale4"], ["https://tec.openplanner.team/stops/Cnadrev1", "https://tec.openplanner.team/stops/Cnaferr1"], ["https://tec.openplanner.team/stops/N346ada", "https://tec.openplanner.team/stops/N347aga"], ["https://tec.openplanner.team/stops/NL76ama", "https://tec.openplanner.team/stops/NL76apa"], ["https://tec.openplanner.team/stops/N534bmb", "https://tec.openplanner.team/stops/N534brb"], ["https://tec.openplanner.team/stops/Bjodint1", "https://tec.openplanner.team/stops/Bjodtpo1"], ["https://tec.openplanner.team/stops/Lrcarse1", "https://tec.openplanner.team/stops/Lrcprin6"], ["https://tec.openplanner.team/stops/LnE79--2", "https://tec.openplanner.team/stops/LnErech1"], ["https://tec.openplanner.team/stops/H1ob333a", "https://tec.openplanner.team/stops/H1ob333b"], ["https://tec.openplanner.team/stops/Ladgron1", "https://tec.openplanner.team/stops/LHCprog2"], ["https://tec.openplanner.team/stops/LCOcrom2", "https://tec.openplanner.team/stops/LSNchen2"], ["https://tec.openplanner.team/stops/H4cl112b", "https://tec.openplanner.team/stops/H4cl114b"], ["https://tec.openplanner.team/stops/X607aka", "https://tec.openplanner.team/stops/X607akb"], ["https://tec.openplanner.team/stops/H1ha193a", "https://tec.openplanner.team/stops/H1ob330a"], ["https://tec.openplanner.team/stops/N535asb", "https://tec.openplanner.team/stops/N535aub"], ["https://tec.openplanner.team/stops/LFArela2", "https://tec.openplanner.team/stops/LFAsauv1"], ["https://tec.openplanner.team/stops/Cgxalli2", "https://tec.openplanner.team/stops/Cgxcite1"], ["https://tec.openplanner.team/stops/Cci4092", "https://tec.openplanner.team/stops/Cmtprey1"], ["https://tec.openplanner.team/stops/LbOvith1", "https://tec.openplanner.team/stops/LnE79--2"], ["https://tec.openplanner.team/stops/N548awa", "https://tec.openplanner.team/stops/N573aob"], ["https://tec.openplanner.team/stops/LCSgend2", "https://tec.openplanner.team/stops/LHHroua1"], ["https://tec.openplanner.team/stops/N569ala", "https://tec.openplanner.team/stops/N569ana"], ["https://tec.openplanner.team/stops/H2bh109a", "https://tec.openplanner.team/stops/H2lc172a"], ["https://tec.openplanner.team/stops/Lstchu-4", "https://tec.openplanner.team/stops/Lsteduc1"], ["https://tec.openplanner.team/stops/Ccychba2", "https://tec.openplanner.team/stops/Crbrgar2"], ["https://tec.openplanner.team/stops/N118afa", "https://tec.openplanner.team/stops/N118aya"], ["https://tec.openplanner.team/stops/H4ld128a", "https://tec.openplanner.team/stops/H4ld129a"], ["https://tec.openplanner.team/stops/LHceg--1", "https://tec.openplanner.team/stops/LHcgare1"], ["https://tec.openplanner.team/stops/Lgrfrcu2", "https://tec.openplanner.team/stops/Lgrtomb2"], ["https://tec.openplanner.team/stops/Bwlhcsr2", "https://tec.openplanner.team/stops/Bwspm372"], ["https://tec.openplanner.team/stops/LCleg--2", "https://tec.openplanner.team/stops/LThnouv2"], ["https://tec.openplanner.team/stops/Lmobrac1", "https://tec.openplanner.team/stops/Lsnbrac3"], ["https://tec.openplanner.team/stops/LVlfooz1", "https://tec.openplanner.team/stops/LVlfooz2"], ["https://tec.openplanner.team/stops/X901asb", "https://tec.openplanner.team/stops/X901axb"], ["https://tec.openplanner.team/stops/Lbbgare1", "https://tec.openplanner.team/stops/Lbbgare2"], ["https://tec.openplanner.team/stops/Bbgewal1", "https://tec.openplanner.team/stops/Bbgewal2"], ["https://tec.openplanner.team/stops/Lprchat2", "https://tec.openplanner.team/stops/Lprpous2"], ["https://tec.openplanner.team/stops/Bquepla1", "https://tec.openplanner.team/stops/Bquereb1"], ["https://tec.openplanner.team/stops/Bflcneu1", "https://tec.openplanner.team/stops/Bflcneu2"], ["https://tec.openplanner.team/stops/LThelse1", "https://tec.openplanner.team/stops/LThelse2"], ["https://tec.openplanner.team/stops/Cchba05", "https://tec.openplanner.team/stops/Cchba08"], ["https://tec.openplanner.team/stops/X911afa", "https://tec.openplanner.team/stops/X912aaa"], ["https://tec.openplanner.team/stops/Csa4mai1", "https://tec.openplanner.team/stops/Csachas2"], ["https://tec.openplanner.team/stops/Bglache1", "https://tec.openplanner.team/stops/Bmrsmco1"], ["https://tec.openplanner.team/stops/Lroboeg1", "https://tec.openplanner.team/stops/Lrosaun2"], ["https://tec.openplanner.team/stops/NB33ala", "https://tec.openplanner.team/stops/NR21aeb"], ["https://tec.openplanner.team/stops/N501fby", "https://tec.openplanner.team/stops/N501fla"], ["https://tec.openplanner.team/stops/Crehout1", "https://tec.openplanner.team/stops/Crewaha2"], ["https://tec.openplanner.team/stops/X720acb", "https://tec.openplanner.team/stops/X720adb"], ["https://tec.openplanner.team/stops/H2tr252a", "https://tec.openplanner.team/stops/H2tr256b"], ["https://tec.openplanner.team/stops/LLrc_ip4", "https://tec.openplanner.team/stops/LLrrmaq1"], ["https://tec.openplanner.team/stops/X822aaa", "https://tec.openplanner.team/stops/X822ama"], ["https://tec.openplanner.team/stops/N349aca", "https://tec.openplanner.team/stops/N349acb"], ["https://tec.openplanner.team/stops/N423aea", "https://tec.openplanner.team/stops/NH01ajb"], ["https://tec.openplanner.team/stops/X850aga", "https://tec.openplanner.team/stops/X850aoa"], ["https://tec.openplanner.team/stops/X986aja", "https://tec.openplanner.team/stops/X986ajb"], ["https://tec.openplanner.team/stops/H1em111b", "https://tec.openplanner.team/stops/H1em111c"], ["https://tec.openplanner.team/stops/LPLstat1", "https://tec.openplanner.team/stops/LPLstat2"], ["https://tec.openplanner.team/stops/X925ala", "https://tec.openplanner.team/stops/X996aaa"], ["https://tec.openplanner.team/stops/Cgdfoca1", "https://tec.openplanner.team/stops/Cgdfras2"], ["https://tec.openplanner.team/stops/Bohnman2", "https://tec.openplanner.team/stops/Bohnmes2"], ["https://tec.openplanner.team/stops/X902aab", "https://tec.openplanner.team/stops/X902afa"], ["https://tec.openplanner.team/stops/N511aia", "https://tec.openplanner.team/stops/N511aib"], ["https://tec.openplanner.team/stops/Csecroi1", "https://tec.openplanner.team/stops/Csepier1"], ["https://tec.openplanner.team/stops/N521alb", "https://tec.openplanner.team/stops/N527afa"], ["https://tec.openplanner.team/stops/H4mo193a", "https://tec.openplanner.team/stops/H4mo206b"], ["https://tec.openplanner.team/stops/Bnivhon1", "https://tec.openplanner.team/stops/Bnivhon2"], ["https://tec.openplanner.team/stops/Cmmphai1", "https://tec.openplanner.team/stops/Cmmserv3"], ["https://tec.openplanner.team/stops/N211acb", "https://tec.openplanner.team/stops/N211asa"], ["https://tec.openplanner.team/stops/X946afb", "https://tec.openplanner.team/stops/X946aia"], ["https://tec.openplanner.team/stops/Bgrmpco1", "https://tec.openplanner.team/stops/N522aib"], ["https://tec.openplanner.team/stops/X766aaa", "https://tec.openplanner.team/stops/X768abb"], ["https://tec.openplanner.team/stops/LrAverb1", "https://tec.openplanner.team/stops/LrAverb2"], ["https://tec.openplanner.team/stops/LWevand1", "https://tec.openplanner.team/stops/LWexhav1"], ["https://tec.openplanner.team/stops/X941agb", "https://tec.openplanner.team/stops/X949ala"], ["https://tec.openplanner.team/stops/H1wi148c", "https://tec.openplanner.team/stops/H1wi157c"], ["https://tec.openplanner.team/stops/Lvtfrai2", "https://tec.openplanner.team/stops/Lvtlomb4"], ["https://tec.openplanner.team/stops/Bdlmgla2", "https://tec.openplanner.team/stops/Bwavbva2"], ["https://tec.openplanner.team/stops/Lfhnrou2", "https://tec.openplanner.team/stops/Lfhvoye2"], ["https://tec.openplanner.team/stops/H1fl139b", "https://tec.openplanner.team/stops/H1je221b"], ["https://tec.openplanner.team/stops/X637aoa", "https://tec.openplanner.team/stops/X637aob"], ["https://tec.openplanner.team/stops/N232bjb", "https://tec.openplanner.team/stops/N261afa"], ["https://tec.openplanner.team/stops/Llgtir-1", "https://tec.openplanner.team/stops/Llgtir-2"], ["https://tec.openplanner.team/stops/Ljemont2", "https://tec.openplanner.team/stops/Ljewale3"], ["https://tec.openplanner.team/stops/X750bda", "https://tec.openplanner.team/stops/X750bdb"], ["https://tec.openplanner.team/stops/LBichat2", "https://tec.openplanner.team/stops/LBieg--4"], ["https://tec.openplanner.team/stops/Bosqcar2", "https://tec.openplanner.team/stops/Bosqcim1"], ["https://tec.openplanner.team/stops/X804aeb", "https://tec.openplanner.team/stops/X804bfb"], ["https://tec.openplanner.team/stops/X763afb", "https://tec.openplanner.team/stops/X765aga"], ["https://tec.openplanner.team/stops/Bincdon1", "https://tec.openplanner.team/stops/Bincdon2"], ["https://tec.openplanner.team/stops/N511aoc", "https://tec.openplanner.team/stops/N511apa"], ["https://tec.openplanner.team/stops/LsHkirc2", "https://tec.openplanner.team/stops/LsHthom2"], ["https://tec.openplanner.team/stops/LHgpost1", "https://tec.openplanner.team/stops/LHgroso1"], ["https://tec.openplanner.team/stops/LPLg90-1", "https://tec.openplanner.team/stops/LPLroth2"], ["https://tec.openplanner.team/stops/Lverain1", "https://tec.openplanner.team/stops/Lverema2"], ["https://tec.openplanner.team/stops/X989aba", "https://tec.openplanner.team/stops/X989aga"], ["https://tec.openplanner.team/stops/N501dba", "https://tec.openplanner.team/stops/N501dfa"], ["https://tec.openplanner.team/stops/Cgzmira2", "https://tec.openplanner.team/stops/Cthha501"], ["https://tec.openplanner.team/stops/H2sb224b", "https://tec.openplanner.team/stops/H2sb236d"], ["https://tec.openplanner.team/stops/LBImili1", "https://tec.openplanner.team/stops/LBItnt-*"], ["https://tec.openplanner.team/stops/Blangar1", "https://tec.openplanner.team/stops/LLasta-*"], ["https://tec.openplanner.team/stops/X344aca", "https://tec.openplanner.team/stops/X344aea"], ["https://tec.openplanner.team/stops/N533aaa", "https://tec.openplanner.team/stops/N533afa"], ["https://tec.openplanner.team/stops/H4ml207a", "https://tec.openplanner.team/stops/H4pi134b"], ["https://tec.openplanner.team/stops/LCPhall2", "https://tec.openplanner.team/stops/LMvgare1"], ["https://tec.openplanner.team/stops/X982bza", "https://tec.openplanner.team/stops/X982bzb"], ["https://tec.openplanner.team/stops/Bbstpon1", "https://tec.openplanner.team/stops/Bbstpon2"], ["https://tec.openplanner.team/stops/N223aaa", "https://tec.openplanner.team/stops/N223abb"], ["https://tec.openplanner.team/stops/Bwavtas3", "https://tec.openplanner.team/stops/Bwavtas4"], ["https://tec.openplanner.team/stops/Bhanath2", "https://tec.openplanner.team/stops/Bhancre1"], ["https://tec.openplanner.team/stops/X783aab", "https://tec.openplanner.team/stops/X783abb"], ["https://tec.openplanner.team/stops/N351alb", "https://tec.openplanner.team/stops/X351aob"], ["https://tec.openplanner.team/stops/LLM4rou4", "https://tec.openplanner.team/stops/LLM4rou5"], ["https://tec.openplanner.team/stops/Lghwall*", "https://tec.openplanner.team/stops/Llocime2"], ["https://tec.openplanner.team/stops/X614bda", "https://tec.openplanner.team/stops/X626akb"], ["https://tec.openplanner.team/stops/H1bs110a", "https://tec.openplanner.team/stops/H1bs111b"], ["https://tec.openplanner.team/stops/LPUchpl1", "https://tec.openplanner.team/stops/LPUmang1"], ["https://tec.openplanner.team/stops/Csubosa1", "https://tec.openplanner.team/stops/Csuegli"], ["https://tec.openplanner.team/stops/X779aca", "https://tec.openplanner.team/stops/X779aeb"], ["https://tec.openplanner.team/stops/Btlbegl3", "https://tec.openplanner.team/stops/Btlbmel1"], ["https://tec.openplanner.team/stops/N543aca", "https://tec.openplanner.team/stops/N543bda"], ["https://tec.openplanner.team/stops/LrAdrie3", "https://tec.openplanner.team/stops/LrAdrie4"], ["https://tec.openplanner.team/stops/H4gu109a", "https://tec.openplanner.team/stops/H4gu109b"], ["https://tec.openplanner.team/stops/N516ajb", "https://tec.openplanner.team/stops/N516ana"], ["https://tec.openplanner.team/stops/X670ama", "https://tec.openplanner.team/stops/X670amb"], ["https://tec.openplanner.team/stops/LHMgrun1", "https://tec.openplanner.team/stops/LSIgehe2"], ["https://tec.openplanner.team/stops/H2pe162b", "https://tec.openplanner.team/stops/H2sv217b"], ["https://tec.openplanner.team/stops/X721ana", "https://tec.openplanner.team/stops/X721anb"], ["https://tec.openplanner.team/stops/N501iab", "https://tec.openplanner.team/stops/N501ima"], ["https://tec.openplanner.team/stops/Bbchtry1", "https://tec.openplanner.team/stops/Bwaucig1"], ["https://tec.openplanner.team/stops/X626aca", "https://tec.openplanner.team/stops/X626aea"], ["https://tec.openplanner.team/stops/Bgnvgir2", "https://tec.openplanner.team/stops/Blascsl2"], ["https://tec.openplanner.team/stops/H1bd100b", "https://tec.openplanner.team/stops/H1le118a"], ["https://tec.openplanner.team/stops/N501cba", "https://tec.openplanner.team/stops/N521aua"], ["https://tec.openplanner.team/stops/LBmbara1", "https://tec.openplanner.team/stops/LMRmont1"], ["https://tec.openplanner.team/stops/X670aaa", "https://tec.openplanner.team/stops/X670aib"], ["https://tec.openplanner.team/stops/H1ms252d", "https://tec.openplanner.team/stops/H1ms940b"], ["https://tec.openplanner.team/stops/Bincfer2", "https://tec.openplanner.team/stops/Bsrbtil2"], ["https://tec.openplanner.team/stops/LSZchpl2", "https://tec.openplanner.team/stops/LSZmonu5"], ["https://tec.openplanner.team/stops/N229acb", "https://tec.openplanner.team/stops/N229afb"], ["https://tec.openplanner.team/stops/Bdlmflo1", "https://tec.openplanner.team/stops/Bdlmflo2"], ["https://tec.openplanner.team/stops/H4hg155b", "https://tec.openplanner.team/stops/H4hg157a"], ["https://tec.openplanner.team/stops/LFTcroi1", "https://tec.openplanner.team/stops/LNAbois1"], ["https://tec.openplanner.team/stops/Bbxltrv1", "https://tec.openplanner.team/stops/Bbxltrv2"], ["https://tec.openplanner.team/stops/X811ala", "https://tec.openplanner.team/stops/X811aob"], ["https://tec.openplanner.team/stops/NR21aib", "https://tec.openplanner.team/stops/NR21ajb"], ["https://tec.openplanner.team/stops/Ctrdelb2", "https://tec.openplanner.team/stops/Ctrstro1"], ["https://tec.openplanner.team/stops/N547ahb", "https://tec.openplanner.team/stops/N573apa"], ["https://tec.openplanner.team/stops/Bsambra2", "https://tec.openplanner.team/stops/Bsammon1"], ["https://tec.openplanner.team/stops/Lveecol2", "https://tec.openplanner.team/stops/Lvepala8"], ["https://tec.openplanner.team/stops/LPAbrun1", "https://tec.openplanner.team/stops/LPAchpl2"], ["https://tec.openplanner.team/stops/N561aba", "https://tec.openplanner.team/stops/N561ada"], ["https://tec.openplanner.team/stops/X681aeb", "https://tec.openplanner.team/stops/X696afa"], ["https://tec.openplanner.team/stops/N512agc", "https://tec.openplanner.team/stops/NL57afa"], ["https://tec.openplanner.team/stops/N535anb", "https://tec.openplanner.team/stops/N564aaa"], ["https://tec.openplanner.team/stops/H2le148a", "https://tec.openplanner.team/stops/H2re163a"], ["https://tec.openplanner.team/stops/N513bia", "https://tec.openplanner.team/stops/N516acb"], ["https://tec.openplanner.team/stops/Ljemeca2", "https://tec.openplanner.team/stops/Lsemany1"], ["https://tec.openplanner.team/stops/N214aaa", "https://tec.openplanner.team/stops/N214aba"], ["https://tec.openplanner.team/stops/H1cu108b", "https://tec.openplanner.team/stops/H1cu111b"], ["https://tec.openplanner.team/stops/LWechea1", "https://tec.openplanner.team/stops/LWevalf1"], ["https://tec.openplanner.team/stops/N501eua", "https://tec.openplanner.team/stops/N501kpa"], ["https://tec.openplanner.team/stops/LClflor2", "https://tec.openplanner.team/stops/LCltrib1"], ["https://tec.openplanner.team/stops/H1pa109b", "https://tec.openplanner.team/stops/H1pa111a"], ["https://tec.openplanner.team/stops/H1th182a", "https://tec.openplanner.team/stops/H2na132b"], ["https://tec.openplanner.team/stops/Bbsicas1", "https://tec.openplanner.team/stops/Bbsifmo2"], ["https://tec.openplanner.team/stops/Lmicoop1", "https://tec.openplanner.team/stops/Lmicoop3"], ["https://tec.openplanner.team/stops/X927acb", "https://tec.openplanner.team/stops/X986aia"], ["https://tec.openplanner.team/stops/Lenabat2", "https://tec.openplanner.team/stops/Lenvale1"], ["https://tec.openplanner.team/stops/X738adb", "https://tec.openplanner.team/stops/X754alb"], ["https://tec.openplanner.team/stops/H2ec106a", "https://tec.openplanner.team/stops/H2ec106b"], ["https://tec.openplanner.team/stops/LCogara2", "https://tec.openplanner.team/stops/LTPsatr1"], ["https://tec.openplanner.team/stops/Bgliaau1", "https://tec.openplanner.team/stops/Bglicsm2"], ["https://tec.openplanner.team/stops/Brosegl1", "https://tec.openplanner.team/stops/H2gy109b"], ["https://tec.openplanner.team/stops/NL80abb", "https://tec.openplanner.team/stops/NL80acb"], ["https://tec.openplanner.team/stops/Bsoigar2", "https://tec.openplanner.team/stops/H3so172a"], ["https://tec.openplanner.team/stops/LWEchat2", "https://tec.openplanner.team/stops/LWEeg--2"], ["https://tec.openplanner.team/stops/Lbooffe2", "https://tec.openplanner.team/stops/Lbosart2"], ["https://tec.openplanner.team/stops/Bcrbbou1", "https://tec.openplanner.team/stops/Bcrbcel1"], ["https://tec.openplanner.team/stops/LNAplac2", "https://tec.openplanner.team/stops/LSSvill2"], ["https://tec.openplanner.team/stops/X769akb", "https://tec.openplanner.team/stops/X769alb"], ["https://tec.openplanner.team/stops/LEScarr1", "https://tec.openplanner.team/stops/LESmagr1"], ["https://tec.openplanner.team/stops/Lbrfoid3", "https://tec.openplanner.team/stops/Lbrmc--2"], ["https://tec.openplanner.team/stops/Bnodblt2", "https://tec.openplanner.team/stops/Bnodcab1"], ["https://tec.openplanner.team/stops/LkEsouf1", "https://tec.openplanner.team/stops/LkEzoll1"], ["https://tec.openplanner.team/stops/H4ma419a", "https://tec.openplanner.team/stops/H4ma420a"], ["https://tec.openplanner.team/stops/N201ala", "https://tec.openplanner.team/stops/N201ama"], ["https://tec.openplanner.team/stops/N540ada", "https://tec.openplanner.team/stops/N540amb"], ["https://tec.openplanner.team/stops/Bnivfch2", "https://tec.openplanner.team/stops/Bnivpso2"], ["https://tec.openplanner.team/stops/Bbchsac1", "https://tec.openplanner.team/stops/Bwaunop1"], ["https://tec.openplanner.team/stops/N331ahb", "https://tec.openplanner.team/stops/N331aib"], ["https://tec.openplanner.team/stops/Lchstat*", "https://tec.openplanner.team/stops/Lvichpl1"], ["https://tec.openplanner.team/stops/H4lz118a", "https://tec.openplanner.team/stops/H4th141a"], ["https://tec.openplanner.team/stops/Bgntcha2", "https://tec.openplanner.team/stops/Bgntcoo1"], ["https://tec.openplanner.team/stops/H1eo103a", "https://tec.openplanner.team/stops/H1eo106a"], ["https://tec.openplanner.team/stops/LNEcite1", "https://tec.openplanner.team/stops/LNEtonv1"], ["https://tec.openplanner.team/stops/H4ch119a", "https://tec.openplanner.team/stops/H4ch119b"], ["https://tec.openplanner.team/stops/LOUherm2", "https://tec.openplanner.team/stops/Lvimc--2"], ["https://tec.openplanner.team/stops/LLxalle1", "https://tec.openplanner.team/stops/LVItcm-1"], ["https://tec.openplanner.team/stops/LBSpail3", "https://tec.openplanner.team/stops/LBStong2"], ["https://tec.openplanner.team/stops/Bitrecu1", "https://tec.openplanner.team/stops/Bitrmde1"], ["https://tec.openplanner.team/stops/Ldihote2", "https://tec.openplanner.team/stops/Ldihvce2"], ["https://tec.openplanner.team/stops/LHUfali3", "https://tec.openplanner.team/stops/LHUmari1"], ["https://tec.openplanner.team/stops/X717aia", "https://tec.openplanner.team/stops/X781abb"], ["https://tec.openplanner.team/stops/X665aaa", "https://tec.openplanner.team/stops/X665aba"], ["https://tec.openplanner.team/stops/Ctaallo2", "https://tec.openplanner.team/stops/Ctaprai3"], ["https://tec.openplanner.team/stops/X614bbb", "https://tec.openplanner.team/stops/X614brb"], ["https://tec.openplanner.team/stops/LAyfren2", "https://tec.openplanner.team/stops/LAyheid2"], ["https://tec.openplanner.team/stops/Lsedavy1", "https://tec.openplanner.team/stops/Lsedavy2"], ["https://tec.openplanner.team/stops/CMmari2", "https://tec.openplanner.team/stops/CMtsan2"], ["https://tec.openplanner.team/stops/LwAstum1", "https://tec.openplanner.team/stops/LwAstum2"], ["https://tec.openplanner.team/stops/Llgbert2", "https://tec.openplanner.team/stops/Llghlau2"], ["https://tec.openplanner.team/stops/Llggram4", "https://tec.openplanner.team/stops/Llgpari2"], ["https://tec.openplanner.team/stops/H1mj129a", "https://tec.openplanner.team/stops/H1mj129b"], ["https://tec.openplanner.team/stops/Cwxplac1", "https://tec.openplanner.team/stops/Cwxplac2"], ["https://tec.openplanner.team/stops/Bgntpla2", "https://tec.openplanner.team/stops/Bgnttma1"], ["https://tec.openplanner.team/stops/Crebrux1", "https://tec.openplanner.team/stops/Crefont1"], ["https://tec.openplanner.team/stops/X314aab", "https://tec.openplanner.team/stops/X813adb"], ["https://tec.openplanner.team/stops/LAnchat1", "https://tec.openplanner.team/stops/LAnfall2"], ["https://tec.openplanner.team/stops/H1ha185a", "https://tec.openplanner.team/stops/H1ha191b"], ["https://tec.openplanner.team/stops/N536aab", "https://tec.openplanner.team/stops/N536abb"], ["https://tec.openplanner.team/stops/N209aab", "https://tec.openplanner.team/stops/N209afa"], ["https://tec.openplanner.team/stops/LBEchan1", "https://tec.openplanner.team/stops/LBEhaye2"], ["https://tec.openplanner.team/stops/Lflmaxi1", "https://tec.openplanner.team/stops/Lre3che1"], ["https://tec.openplanner.team/stops/H4rs118b", "https://tec.openplanner.team/stops/H4rs119a"], ["https://tec.openplanner.team/stops/X992ahb", "https://tec.openplanner.team/stops/X992aia"], ["https://tec.openplanner.team/stops/Livvill2", "https://tec.openplanner.team/stops/LRAgrot2"], ["https://tec.openplanner.team/stops/Lhrabho2", "https://tec.openplanner.team/stops/Lhrcite1"], ["https://tec.openplanner.team/stops/H4fr145b", "https://tec.openplanner.team/stops/H4rc234c"], ["https://tec.openplanner.team/stops/LBhsign2", "https://tec.openplanner.team/stops/LtEnatu1"], ["https://tec.openplanner.team/stops/Bblafab2", "https://tec.openplanner.team/stops/Bblafrn1"], ["https://tec.openplanner.team/stops/X907ahb", "https://tec.openplanner.team/stops/X907aib"], ["https://tec.openplanner.team/stops/N528atb", "https://tec.openplanner.team/stops/N542apb"], ["https://tec.openplanner.team/stops/H1sy137a", "https://tec.openplanner.team/stops/H1sy148c"], ["https://tec.openplanner.team/stops/H4pi130a", "https://tec.openplanner.team/stops/H4pi134a"], ["https://tec.openplanner.team/stops/H1lb134a", "https://tec.openplanner.team/stops/H1lb154b"], ["https://tec.openplanner.team/stops/H2bh110c", "https://tec.openplanner.team/stops/H2bh111a"], ["https://tec.openplanner.team/stops/Bsmgmas2", "https://tec.openplanner.team/stops/Bsmgpla2"], ["https://tec.openplanner.team/stops/H3lr108b", "https://tec.openplanner.team/stops/H3lr117b"], ["https://tec.openplanner.team/stops/Lanschu2", "https://tec.openplanner.team/stops/Lanstat1"], ["https://tec.openplanner.team/stops/Cgxpair1", "https://tec.openplanner.team/stops/Cgxpair2"], ["https://tec.openplanner.team/stops/N501hxb", "https://tec.openplanner.team/stops/N501lzb"], ["https://tec.openplanner.team/stops/Lhrpwan1", "https://tec.openplanner.team/stops/Lhrpwan2"], ["https://tec.openplanner.team/stops/H2sb234a", "https://tec.openplanner.team/stops/H2sb266b"], ["https://tec.openplanner.team/stops/Bottcro2", "https://tec.openplanner.team/stops/Botteco2"], ["https://tec.openplanner.team/stops/N504aaa", "https://tec.openplanner.team/stops/N511afa"], ["https://tec.openplanner.team/stops/X783acb", "https://tec.openplanner.team/stops/X783acc"], ["https://tec.openplanner.team/stops/LTIdjal1", "https://tec.openplanner.team/stops/LTIpres2"], ["https://tec.openplanner.team/stops/LSSeg--1", "https://tec.openplanner.team/stops/LSShous1"], ["https://tec.openplanner.team/stops/X902aaa", "https://tec.openplanner.team/stops/X902apa"], ["https://tec.openplanner.team/stops/Blimch%C3%A22", "https://tec.openplanner.team/stops/Bottpry1"], ["https://tec.openplanner.team/stops/N534bea", "https://tec.openplanner.team/stops/N534beb"], ["https://tec.openplanner.team/stops/Cflstan1", "https://tec.openplanner.team/stops/Cflstan3"], ["https://tec.openplanner.team/stops/H1vh137b", "https://tec.openplanner.team/stops/H3th127b"], ["https://tec.openplanner.team/stops/Lmiensp*", "https://tec.openplanner.team/stops/Lmimili4"], ["https://tec.openplanner.team/stops/N547ama", "https://tec.openplanner.team/stops/N573apa"], ["https://tec.openplanner.team/stops/LsVmolk2", "https://tec.openplanner.team/stops/LsVprum2"], ["https://tec.openplanner.team/stops/LBabeco3", "https://tec.openplanner.team/stops/LBapeup1"], ["https://tec.openplanner.team/stops/N535aea", "https://tec.openplanner.team/stops/N535afb"], ["https://tec.openplanner.team/stops/Beclron1", "https://tec.openplanner.team/stops/Becltri2"], ["https://tec.openplanner.team/stops/Clggrfe2", "https://tec.openplanner.team/stops/H1be103a"], ["https://tec.openplanner.team/stops/X606aba", "https://tec.openplanner.team/stops/X648aab"], ["https://tec.openplanner.team/stops/LsVeite1", "https://tec.openplanner.team/stops/LsVfeye2"], ["https://tec.openplanner.team/stops/X823acb", "https://tec.openplanner.team/stops/X823aff"], ["https://tec.openplanner.team/stops/Bsengma1", "https://tec.openplanner.team/stops/H2se105a"], ["https://tec.openplanner.team/stops/Btstbbu2", "https://tec.openplanner.team/stops/Btstpch1"], ["https://tec.openplanner.team/stops/N101aha", "https://tec.openplanner.team/stops/N101aoa"], ["https://tec.openplanner.team/stops/LAMfrai1", "https://tec.openplanner.team/stops/LJEpaqu2"], ["https://tec.openplanner.team/stops/Csa4mai1", "https://tec.openplanner.team/stops/Cwgmell3"], ["https://tec.openplanner.team/stops/X672aaa", "https://tec.openplanner.team/stops/X672aab"], ["https://tec.openplanner.team/stops/N353afd", "https://tec.openplanner.team/stops/N357abb"], ["https://tec.openplanner.team/stops/Cfogaul2", "https://tec.openplanner.team/stops/CMfont2"], ["https://tec.openplanner.team/stops/N383acb", "https://tec.openplanner.team/stops/N383adb"], ["https://tec.openplanner.team/stops/N270aec", "https://tec.openplanner.team/stops/N270afa"], ["https://tec.openplanner.team/stops/X937aia", "https://tec.openplanner.team/stops/X937aib"], ["https://tec.openplanner.team/stops/CMjans2", "https://tec.openplanner.team/stops/Cmtpire1"], ["https://tec.openplanner.team/stops/N501esa", "https://tec.openplanner.team/stops/N501eua"], ["https://tec.openplanner.team/stops/X938aba", "https://tec.openplanner.team/stops/X939aga"], ["https://tec.openplanner.team/stops/X744aaa", "https://tec.openplanner.team/stops/X744aab"], ["https://tec.openplanner.team/stops/N501hjc", "https://tec.openplanner.team/stops/N501hjd"], ["https://tec.openplanner.team/stops/Cgplutt1", "https://tec.openplanner.team/stops/Cgpplac2"], ["https://tec.openplanner.team/stops/H2mm136b", "https://tec.openplanner.team/stops/H2mo123a"], ["https://tec.openplanner.team/stops/N512acb", "https://tec.openplanner.team/stops/N512axa"], ["https://tec.openplanner.team/stops/Lmohomv2", "https://tec.openplanner.team/stops/Lmopans4"], ["https://tec.openplanner.team/stops/X796afb", "https://tec.openplanner.team/stops/X986akb"], ["https://tec.openplanner.team/stops/N139aaa", "https://tec.openplanner.team/stops/N146aeb"], ["https://tec.openplanner.team/stops/LAmeg--2", "https://tec.openplanner.team/stops/LNHhome1"], ["https://tec.openplanner.team/stops/LRGcana1", "https://tec.openplanner.team/stops/LRGgend1"], ["https://tec.openplanner.team/stops/Bitrecu2", "https://tec.openplanner.team/stops/Bitrmde2"], ["https://tec.openplanner.team/stops/X746aia", "https://tec.openplanner.team/stops/X746aka"], ["https://tec.openplanner.team/stops/N540aib", "https://tec.openplanner.team/stops/N540ajb"], ["https://tec.openplanner.team/stops/N155aib", "https://tec.openplanner.team/stops/N155akb"], ["https://tec.openplanner.team/stops/H4cl112b", "https://tec.openplanner.team/stops/H4ga163a"], ["https://tec.openplanner.team/stops/X943afa", "https://tec.openplanner.team/stops/X943aga"], ["https://tec.openplanner.team/stops/Lghberl2", "https://tec.openplanner.team/stops/Lghferr2"], ["https://tec.openplanner.team/stops/Cfbcabi1", "https://tec.openplanner.team/stops/Cfbegli2"], ["https://tec.openplanner.team/stops/Lbopote2", "https://tec.openplanner.team/stops/Lsebonc2"], ["https://tec.openplanner.team/stops/N147aba", "https://tec.openplanner.team/stops/N147abb"], ["https://tec.openplanner.team/stops/Lvealbe1", "https://tec.openplanner.team/stops/Lvexhav1"], ["https://tec.openplanner.team/stops/H2go114d", "https://tec.openplanner.team/stops/H2go119a"], ["https://tec.openplanner.team/stops/N501fdc", "https://tec.openplanner.team/stops/N501lzz"], ["https://tec.openplanner.team/stops/X804aob", "https://tec.openplanner.team/stops/X804bsb"], ["https://tec.openplanner.team/stops/X752aba", "https://tec.openplanner.team/stops/X752abb"], ["https://tec.openplanner.team/stops/NL75aab", "https://tec.openplanner.team/stops/NL75adb"], ["https://tec.openplanner.team/stops/Bvlvbth1", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/Cmyrens1", "https://tec.openplanner.team/stops/Cmyrens2"], ["https://tec.openplanner.team/stops/LTrchar2", "https://tec.openplanner.team/stops/LTrmort2"], ["https://tec.openplanner.team/stops/H1hr124a", "https://tec.openplanner.team/stops/H1hr129b"], ["https://tec.openplanner.team/stops/LBdcarr1", "https://tec.openplanner.team/stops/LLrfagn1"], ["https://tec.openplanner.team/stops/LGepeck1", "https://tec.openplanner.team/stops/LMsgara1"], ["https://tec.openplanner.team/stops/H4mo144a", "https://tec.openplanner.team/stops/H4mo180a"], ["https://tec.openplanner.team/stops/Crcpcom1", "https://tec.openplanner.team/stops/Crcverr1"], ["https://tec.openplanner.team/stops/Brach122", "https://tec.openplanner.team/stops/Bwaakap1"], ["https://tec.openplanner.team/stops/N505adb", "https://tec.openplanner.team/stops/N505aha"], ["https://tec.openplanner.team/stops/Lbeloui2", "https://tec.openplanner.team/stops/Llxeg--1"], ["https://tec.openplanner.team/stops/LLt43--1", "https://tec.openplanner.team/stops/LVsboug1"], ["https://tec.openplanner.team/stops/LLNcruc1", "https://tec.openplanner.team/stops/LSpxhig2"], ["https://tec.openplanner.team/stops/H4bi156a", "https://tec.openplanner.team/stops/H4eg101a"], ["https://tec.openplanner.team/stops/LAUvdab1", "https://tec.openplanner.team/stops/LJueg--1"], ["https://tec.openplanner.team/stops/N501bib", "https://tec.openplanner.team/stops/N501bob"], ["https://tec.openplanner.team/stops/X633ada", "https://tec.openplanner.team/stops/X633aea"], ["https://tec.openplanner.team/stops/H4ve133a", "https://tec.openplanner.team/stops/H4ve134a"], ["https://tec.openplanner.team/stops/X713aba", "https://tec.openplanner.team/stops/X713anb"], ["https://tec.openplanner.team/stops/H4co141b", "https://tec.openplanner.team/stops/H4co142a"], ["https://tec.openplanner.team/stops/N529ada", "https://tec.openplanner.team/stops/N584aca"], ["https://tec.openplanner.team/stops/N501fgb", "https://tec.openplanner.team/stops/N501fjd"], ["https://tec.openplanner.team/stops/Cptdubo2", "https://tec.openplanner.team/stops/Cptplac4"], ["https://tec.openplanner.team/stops/N501mxb", "https://tec.openplanner.team/stops/N527afb"], ["https://tec.openplanner.team/stops/LClflor1", "https://tec.openplanner.team/stops/LHChoek4"], ["https://tec.openplanner.team/stops/Lsmjalh2", "https://tec.openplanner.team/stops/Lsmnico1"], ["https://tec.openplanner.team/stops/H1ms263a", "https://tec.openplanner.team/stops/H1ms266b"], ["https://tec.openplanner.team/stops/LFsconc2", "https://tec.openplanner.team/stops/LFslign2"], ["https://tec.openplanner.team/stops/LHCquat1", "https://tec.openplanner.team/stops/LHCquat4"], ["https://tec.openplanner.team/stops/X224ada", "https://tec.openplanner.team/stops/X224aea"], ["https://tec.openplanner.team/stops/Cna6che1", "https://tec.openplanner.team/stops/Cnawari2"], ["https://tec.openplanner.team/stops/N150aba", "https://tec.openplanner.team/stops/N150aca"], ["https://tec.openplanner.team/stops/LOMcabi2", "https://tec.openplanner.team/stops/LOMdTEC2"], ["https://tec.openplanner.team/stops/LBAbooz1", "https://tec.openplanner.team/stops/LBAcere1"], ["https://tec.openplanner.team/stops/LVtespo1", "https://tec.openplanner.team/stops/LVttarg2"], ["https://tec.openplanner.team/stops/N301amb", "https://tec.openplanner.team/stops/N302afa"], ["https://tec.openplanner.team/stops/X946afa", "https://tec.openplanner.team/stops/X946aha"], ["https://tec.openplanner.team/stops/N137aeb", "https://tec.openplanner.team/stops/N137afb"], ["https://tec.openplanner.team/stops/X727adb", "https://tec.openplanner.team/stops/X747aia"], ["https://tec.openplanner.team/stops/H5qu143a", "https://tec.openplanner.team/stops/H5qu182a"], ["https://tec.openplanner.team/stops/LSChane1", "https://tec.openplanner.team/stops/LVEmohi1"], ["https://tec.openplanner.team/stops/Llgrull1", "https://tec.openplanner.team/stops/Llgrull2"], ["https://tec.openplanner.team/stops/X982aaa", "https://tec.openplanner.team/stops/X982aac"], ["https://tec.openplanner.team/stops/X811ama", "https://tec.openplanner.team/stops/X811aqb"], ["https://tec.openplanner.team/stops/X725aba", "https://tec.openplanner.team/stops/X725ahb"], ["https://tec.openplanner.team/stops/X892aeb", "https://tec.openplanner.team/stops/X892afb"], ["https://tec.openplanner.team/stops/LBgcroi2", "https://tec.openplanner.team/stops/LGmhedo1"], ["https://tec.openplanner.team/stops/LsCbrau2", "https://tec.openplanner.team/stops/LwPdorf1"], ["https://tec.openplanner.team/stops/H4ev118b", "https://tec.openplanner.team/stops/H4mo195b"], ["https://tec.openplanner.team/stops/X721ajb", "https://tec.openplanner.team/stops/X721aka"], ["https://tec.openplanner.team/stops/LESamos1", "https://tec.openplanner.team/stops/LESmagr1"], ["https://tec.openplanner.team/stops/Llmdavi2", "https://tec.openplanner.team/stops/Llmeg--2"], ["https://tec.openplanner.team/stops/H2mo129b", "https://tec.openplanner.team/stops/H2mo143b"], ["https://tec.openplanner.team/stops/Bclgavi2", "https://tec.openplanner.team/stops/Bclglbu2"], ["https://tec.openplanner.team/stops/LwAlont2", "https://tec.openplanner.team/stops/LwAlont3"], ["https://tec.openplanner.team/stops/Ladpire1", "https://tec.openplanner.team/stops/Ladthom1"], ["https://tec.openplanner.team/stops/Brixeur5", "https://tec.openplanner.team/stops/Brixpao3"], ["https://tec.openplanner.team/stops/Cmocalv1", "https://tec.openplanner.team/stops/Cmopn6"], ["https://tec.openplanner.team/stops/H1pa109c", "https://tec.openplanner.team/stops/H1pa111a"], ["https://tec.openplanner.team/stops/LBmbara1", "https://tec.openplanner.team/stops/LJAbell1"], ["https://tec.openplanner.team/stops/Lrocort1", "https://tec.openplanner.team/stops/Lrocort2"], ["https://tec.openplanner.team/stops/Bgntcha1", "https://tec.openplanner.team/stops/Bsgebou1"], ["https://tec.openplanner.team/stops/X836aeb", "https://tec.openplanner.team/stops/X836afb"], ["https://tec.openplanner.team/stops/LMNentr1", "https://tec.openplanner.team/stops/LMNgare1"], ["https://tec.openplanner.team/stops/Bracrpe1", "https://tec.openplanner.team/stops/Bracrpe2"], ["https://tec.openplanner.team/stops/Lgrfrai2", "https://tec.openplanner.team/stops/Lgrfrcu2"], ["https://tec.openplanner.team/stops/H1do120b", "https://tec.openplanner.team/stops/H1do127b"], ["https://tec.openplanner.team/stops/X925aob", "https://tec.openplanner.team/stops/X949ama"], ["https://tec.openplanner.team/stops/H1at108a", "https://tec.openplanner.team/stops/H1at108b"], ["https://tec.openplanner.team/stops/N170aaa", "https://tec.openplanner.team/stops/NC14abb"], ["https://tec.openplanner.team/stops/X713aca", "https://tec.openplanner.team/stops/X796ahb"], ["https://tec.openplanner.team/stops/H4ty358a", "https://tec.openplanner.team/stops/H4ty383a"], ["https://tec.openplanner.team/stops/X839afb", "https://tec.openplanner.team/stops/X840aab"], ["https://tec.openplanner.team/stops/X986aca", "https://tec.openplanner.team/stops/X986adb"], ["https://tec.openplanner.team/stops/Lflec--2", "https://tec.openplanner.team/stops/Lflroms2"], ["https://tec.openplanner.team/stops/LWElanc2", "https://tec.openplanner.team/stops/LWEmerm2"], ["https://tec.openplanner.team/stops/N537ala", "https://tec.openplanner.team/stops/N537alb"], ["https://tec.openplanner.team/stops/X601bsa", "https://tec.openplanner.team/stops/X602ahb"], ["https://tec.openplanner.team/stops/X713aha", "https://tec.openplanner.team/stops/X713amb"], ["https://tec.openplanner.team/stops/X658aea", "https://tec.openplanner.team/stops/X659ala"], ["https://tec.openplanner.team/stops/X896aec", "https://tec.openplanner.team/stops/X896aia"], ["https://tec.openplanner.team/stops/LMAbass1", "https://tec.openplanner.team/stops/LMAptne2"], ["https://tec.openplanner.team/stops/Ltithie2", "https://tec.openplanner.team/stops/Ltitill*"], ["https://tec.openplanner.team/stops/Lstpoly2", "https://tec.openplanner.team/stops/Lstscie1"], ["https://tec.openplanner.team/stops/LrAmuhl1", "https://tec.openplanner.team/stops/LrApont2"], ["https://tec.openplanner.team/stops/LgRhouf1", "https://tec.openplanner.team/stops/LnUhohe1"], ["https://tec.openplanner.team/stops/Ccimont1", "https://tec.openplanner.team/stops/Ccimont2"], ["https://tec.openplanner.team/stops/LVLf10-2", "https://tec.openplanner.team/stops/LVLzoni1"], ["https://tec.openplanner.team/stops/Lmlchev1", "https://tec.openplanner.team/stops/Lpoprie1"], ["https://tec.openplanner.team/stops/H1fr123b", "https://tec.openplanner.team/stops/H1fr152a"], ["https://tec.openplanner.team/stops/H4bh100a", "https://tec.openplanner.team/stops/H4bh100b"], ["https://tec.openplanner.team/stops/N515akc", "https://tec.openplanner.team/stops/N515alb"], ["https://tec.openplanner.team/stops/Bjodfab1", "https://tec.openplanner.team/stops/Bsjgegl1"], ["https://tec.openplanner.team/stops/LOUpres2", "https://tec.openplanner.team/stops/Lvitour2"], ["https://tec.openplanner.team/stops/Cauromi1", "https://tec.openplanner.team/stops/N543ang"], ["https://tec.openplanner.team/stops/Bmelegl1", "https://tec.openplanner.team/stops/Bmelegl2"], ["https://tec.openplanner.team/stops/X601dca", "https://tec.openplanner.team/stops/X601dcb"], ["https://tec.openplanner.team/stops/H5pe126a", "https://tec.openplanner.team/stops/H5pe137a"], ["https://tec.openplanner.team/stops/Lgrbell1", "https://tec.openplanner.team/stops/Lgrbell2"], ["https://tec.openplanner.team/stops/H1cd110b", "https://tec.openplanner.team/stops/H1cd114a"], ["https://tec.openplanner.team/stops/LSNbouh3", "https://tec.openplanner.team/stops/LSNchen3"], ["https://tec.openplanner.team/stops/LOCponc*", "https://tec.openplanner.team/stops/N223aba"], ["https://tec.openplanner.team/stops/LScchpl1", "https://tec.openplanner.team/stops/LScchpl2"], ["https://tec.openplanner.team/stops/Louduna*", "https://tec.openplanner.team/stops/Louense1"], ["https://tec.openplanner.team/stops/H1go174a", "https://tec.openplanner.team/stops/H1mx123b"], ["https://tec.openplanner.team/stops/LOUbarr2", "https://tec.openplanner.team/stops/LOUherm2"], ["https://tec.openplanner.team/stops/X695ada", "https://tec.openplanner.team/stops/X696ala"], ["https://tec.openplanner.team/stops/X626aab", "https://tec.openplanner.team/stops/X626aka"], ["https://tec.openplanner.team/stops/LlChebs2", "https://tec.openplanner.team/stops/LrAmuhl1"], ["https://tec.openplanner.team/stops/LDOanes2", "https://tec.openplanner.team/stops/LDObran1"], ["https://tec.openplanner.team/stops/X657ada", "https://tec.openplanner.team/stops/X657anb"], ["https://tec.openplanner.team/stops/Bbaucai1", "https://tec.openplanner.team/stops/Bbauegl1"], ["https://tec.openplanner.team/stops/X903aaa", "https://tec.openplanner.team/stops/X903aga"], ["https://tec.openplanner.team/stops/Bspkker1", "https://tec.openplanner.team/stops/Bspkker2"], ["https://tec.openplanner.team/stops/LeUarno1", "https://tec.openplanner.team/stops/LeUhutt1"], ["https://tec.openplanner.team/stops/N145ajb", "https://tec.openplanner.team/stops/N145aka"], ["https://tec.openplanner.team/stops/X921ana", "https://tec.openplanner.team/stops/X921anb"], ["https://tec.openplanner.team/stops/LHheg--2", "https://tec.openplanner.team/stops/LHhelia1"], ["https://tec.openplanner.team/stops/X917aea", "https://tec.openplanner.team/stops/X921anb"], ["https://tec.openplanner.team/stops/NL78aca", "https://tec.openplanner.team/stops/NL78aea"], ["https://tec.openplanner.team/stops/N538afb", "https://tec.openplanner.team/stops/N539alb"], ["https://tec.openplanner.team/stops/LRRchea5", "https://tec.openplanner.team/stops/LRRchea6"], ["https://tec.openplanner.team/stops/H3lr106a", "https://tec.openplanner.team/stops/H3th129a"], ["https://tec.openplanner.team/stops/X801bwa", "https://tec.openplanner.team/stops/X802ana"], ["https://tec.openplanner.team/stops/H4es111b", "https://tec.openplanner.team/stops/H4ln130b"], ["https://tec.openplanner.team/stops/LFsgend2", "https://tec.openplanner.team/stops/Lligara2"], ["https://tec.openplanner.team/stops/X641ava", "https://tec.openplanner.team/stops/X673aab"], ["https://tec.openplanner.team/stops/LCEcent1", "https://tec.openplanner.team/stops/LCEec--1"], ["https://tec.openplanner.team/stops/N514ama", "https://tec.openplanner.team/stops/N514amb"], ["https://tec.openplanner.team/stops/Bhevjal2", "https://tec.openplanner.team/stops/Bleugar1"], ["https://tec.openplanner.team/stops/H5pe129b", "https://tec.openplanner.team/stops/H5pe144a"], ["https://tec.openplanner.team/stops/Canpeup2", "https://tec.openplanner.team/stops/H2an102b"], ["https://tec.openplanner.team/stops/H1je218a", "https://tec.openplanner.team/stops/H1je218b"], ["https://tec.openplanner.team/stops/LbUbisc2", "https://tec.openplanner.team/stops/LbUwirt2"], ["https://tec.openplanner.team/stops/Bquebth2", "https://tec.openplanner.team/stops/Bquecro2"], ["https://tec.openplanner.team/stops/Braccen1", "https://tec.openplanner.team/stops/Bracgar2"], ["https://tec.openplanner.team/stops/LOUherm1", "https://tec.openplanner.team/stops/LOUherm2"], ["https://tec.openplanner.team/stops/Cflathe1", "https://tec.openplanner.team/stops/Cflstan1"], ["https://tec.openplanner.team/stops/LFFmarc2", "https://tec.openplanner.team/stops/LSCc39-2"], ["https://tec.openplanner.team/stops/Lhr1ave2", "https://tec.openplanner.team/stops/Lhrmeta1"], ["https://tec.openplanner.team/stops/H1ht126a", "https://tec.openplanner.team/stops/H1te191a"], ["https://tec.openplanner.team/stops/N323abb", "https://tec.openplanner.team/stops/N323acb"], ["https://tec.openplanner.team/stops/H4ty347a", "https://tec.openplanner.team/stops/H4ty352a"], ["https://tec.openplanner.team/stops/N208aaa", "https://tec.openplanner.team/stops/N208aab"], ["https://tec.openplanner.team/stops/Lvtcalv1", "https://tec.openplanner.team/stops/Lvtcalv2"], ["https://tec.openplanner.team/stops/H1bb119a", "https://tec.openplanner.team/stops/H1bb119b"], ["https://tec.openplanner.team/stops/X601coa", "https://tec.openplanner.team/stops/X601cxa"], ["https://tec.openplanner.team/stops/X725aeb", "https://tec.openplanner.team/stops/X725aec"], ["https://tec.openplanner.team/stops/Bwatcro1", "https://tec.openplanner.team/stops/Bwatrsg2"], ["https://tec.openplanner.team/stops/LmAgruf1", "https://tec.openplanner.team/stops/LmAgruf2"], ["https://tec.openplanner.team/stops/X757abb", "https://tec.openplanner.team/stops/X757acb"], ["https://tec.openplanner.team/stops/Bjodmal1", "https://tec.openplanner.team/stops/Bjodmal2"], ["https://tec.openplanner.team/stops/N539acb", "https://tec.openplanner.team/stops/N539ama"], ["https://tec.openplanner.team/stops/H2mg136a", "https://tec.openplanner.team/stops/H2mg143a"], ["https://tec.openplanner.team/stops/LRmrode2", "https://tec.openplanner.team/stops/LTEkl122"], ["https://tec.openplanner.team/stops/H4we137a", "https://tec.openplanner.team/stops/H4we137d"], ["https://tec.openplanner.team/stops/Bsamfma1", "https://tec.openplanner.team/stops/Bsamfma2"], ["https://tec.openplanner.team/stops/H1og132a", "https://tec.openplanner.team/stops/H1og135b"], ["https://tec.openplanner.team/stops/Cdostco1", "https://tec.openplanner.team/stops/Ctuecol1"], ["https://tec.openplanner.team/stops/H1hn204a", "https://tec.openplanner.team/stops/H1hn204b"], ["https://tec.openplanner.team/stops/X663aha", "https://tec.openplanner.team/stops/X663ahb"], ["https://tec.openplanner.team/stops/CMmorg1", "https://tec.openplanner.team/stops/Cmoecol2"], ["https://tec.openplanner.team/stops/Bnivbxl2", "https://tec.openplanner.team/stops/Bnivpla2"], ["https://tec.openplanner.team/stops/LlZbell2", "https://tec.openplanner.team/stops/LmEdorf2"], ["https://tec.openplanner.team/stops/H1ba107a", "https://tec.openplanner.team/stops/H1ba110a"], ["https://tec.openplanner.team/stops/H1ca100a", "https://tec.openplanner.team/stops/H1sd347a"], ["https://tec.openplanner.team/stops/H4ka178a", "https://tec.openplanner.team/stops/H4mt218a"], ["https://tec.openplanner.team/stops/N201aka", "https://tec.openplanner.team/stops/N211akb"], ["https://tec.openplanner.team/stops/LSPplat1", "https://tec.openplanner.team/stops/LSPplat2"], ["https://tec.openplanner.team/stops/N203aeb", "https://tec.openplanner.team/stops/N203afb"], ["https://tec.openplanner.team/stops/Llgbass2", "https://tec.openplanner.team/stops/Llgreyn1"], ["https://tec.openplanner.team/stops/H1qg138c", "https://tec.openplanner.team/stops/H1qg138d"], ["https://tec.openplanner.team/stops/Cgobruy2", "https://tec.openplanner.team/stops/CMbruy2"], ["https://tec.openplanner.team/stops/LAnvien2", "https://tec.openplanner.team/stops/LVnrock1"], ["https://tec.openplanner.team/stops/N118aqa", "https://tec.openplanner.team/stops/N118axb"], ["https://tec.openplanner.team/stops/LPRmoul2", "https://tec.openplanner.team/stops/LTRgare4"], ["https://tec.openplanner.team/stops/Bmsgbur1", "https://tec.openplanner.team/stops/Bmsgstj1"], ["https://tec.openplanner.team/stops/LHrrard2", "https://tec.openplanner.team/stops/LHrwaya1"], ["https://tec.openplanner.team/stops/Cjxpann1", "https://tec.openplanner.team/stops/Cmyvesa3"], ["https://tec.openplanner.team/stops/LwAkape1", "https://tec.openplanner.team/stops/LwAkape2"], ["https://tec.openplanner.team/stops/Lhrjaur2", "https://tec.openplanner.team/stops/Lhrlamb1"], ["https://tec.openplanner.team/stops/Bwavcin1", "https://tec.openplanner.team/stops/Bwavlav2"], ["https://tec.openplanner.team/stops/Cfaecmo2", "https://tec.openplanner.team/stops/Cfapiro1"], ["https://tec.openplanner.team/stops/N526ada", "https://tec.openplanner.team/stops/N526aea"], ["https://tec.openplanner.team/stops/X793aca", "https://tec.openplanner.team/stops/X793acb"], ["https://tec.openplanner.team/stops/LFUfleu1", "https://tec.openplanner.team/stops/LFUfleu2"], ["https://tec.openplanner.team/stops/Cnabult3", "https://tec.openplanner.team/stops/Cnaplbu2"], ["https://tec.openplanner.team/stops/LOrpont2", "https://tec.openplanner.team/stops/LTychev1"], ["https://tec.openplanner.team/stops/H1mr123b", "https://tec.openplanner.team/stops/H1wi151a"], ["https://tec.openplanner.team/stops/H4ta125b", "https://tec.openplanner.team/stops/H4ta133b"], ["https://tec.openplanner.team/stops/Lhrcols1", "https://tec.openplanner.team/stops/Lvtpata2"], ["https://tec.openplanner.team/stops/LJedonc3", "https://tec.openplanner.team/stops/LJeeg--1"], ["https://tec.openplanner.team/stops/H1mc129a", "https://tec.openplanner.team/stops/H1mc129b"], ["https://tec.openplanner.team/stops/LWOplat1", "https://tec.openplanner.team/stops/LWOsudr1"], ["https://tec.openplanner.team/stops/H4oe147b", "https://tec.openplanner.team/stops/H4oe149a"], ["https://tec.openplanner.team/stops/H3th127a", "https://tec.openplanner.team/stops/H3th127b"], ["https://tec.openplanner.team/stops/H1em108a", "https://tec.openplanner.team/stops/H1em108b"], ["https://tec.openplanner.team/stops/H1ha189b", "https://tec.openplanner.team/stops/H1vh135b"], ["https://tec.openplanner.team/stops/H4bl105b", "https://tec.openplanner.team/stops/H4ga158a"], ["https://tec.openplanner.team/stops/Blilwit1", "https://tec.openplanner.team/stops/Clpsola1"], ["https://tec.openplanner.team/stops/Bjdsbro2", "https://tec.openplanner.team/stops/Bjdssta2"], ["https://tec.openplanner.team/stops/Cfcchas1", "https://tec.openplanner.team/stops/Cvlstan2"], ["https://tec.openplanner.team/stops/X898aja", "https://tec.openplanner.team/stops/X898ana"], ["https://tec.openplanner.team/stops/Bboufsm1", "https://tec.openplanner.team/stops/Bboufsm2"], ["https://tec.openplanner.team/stops/Bnivaba1", "https://tec.openplanner.team/stops/Bnivgam1"], ["https://tec.openplanner.team/stops/LHUec--2", "https://tec.openplanner.team/stops/LHUsaul2"], ["https://tec.openplanner.team/stops/NL35acb", "https://tec.openplanner.team/stops/NL35agb"], ["https://tec.openplanner.team/stops/N211aca", "https://tec.openplanner.team/stops/N211adb"], ["https://tec.openplanner.team/stops/LHodomm2", "https://tec.openplanner.team/stops/LHovach2"], ["https://tec.openplanner.team/stops/N519ajb", "https://tec.openplanner.team/stops/N519aob"], ["https://tec.openplanner.team/stops/LbUvith1", "https://tec.openplanner.team/stops/LbUvith2"], ["https://tec.openplanner.team/stops/X602ama", "https://tec.openplanner.team/stops/X602amb"], ["https://tec.openplanner.team/stops/LTEkerk2", "https://tec.openplanner.team/stops/LTEnuro1"], ["https://tec.openplanner.team/stops/Ccabois1", "https://tec.openplanner.team/stops/Ccaegli4"], ["https://tec.openplanner.team/stops/Cbwegl1", "https://tec.openplanner.team/stops/Cmgbras1"], ["https://tec.openplanner.team/stops/LMAalli1", "https://tec.openplanner.team/stops/LMAstei1"], ["https://tec.openplanner.team/stops/Ladlimi1", "https://tec.openplanner.team/stops/Lveanto1"], ["https://tec.openplanner.team/stops/Bbgncnd2", "https://tec.openplanner.team/stops/N530aea"], ["https://tec.openplanner.team/stops/LGecime2", "https://tec.openplanner.team/stops/LGecite2"], ["https://tec.openplanner.team/stops/LHDlibi1", "https://tec.openplanner.team/stops/LLmcheg3"], ["https://tec.openplanner.team/stops/Ljecoqu1", "https://tec.openplanner.team/stops/LjeGRPMC"], ["https://tec.openplanner.team/stops/H2lc172a", "https://tec.openplanner.team/stops/H2lc172b"], ["https://tec.openplanner.team/stops/N509awa", "https://tec.openplanner.team/stops/N509awb"], ["https://tec.openplanner.team/stops/H1gg114a", "https://tec.openplanner.team/stops/H1ry136a"], ["https://tec.openplanner.team/stops/X754aab", "https://tec.openplanner.team/stops/X756aec"], ["https://tec.openplanner.team/stops/X750aka", "https://tec.openplanner.team/stops/X750bja"], ["https://tec.openplanner.team/stops/Bbsicas2", "https://tec.openplanner.team/stops/Bbsifml1"], ["https://tec.openplanner.team/stops/H1so135c", "https://tec.openplanner.team/stops/H1so139c"], ["https://tec.openplanner.team/stops/X940aec", "https://tec.openplanner.team/stops/X940aed"], ["https://tec.openplanner.team/stops/Blhupri1", "https://tec.openplanner.team/stops/Bohnhan1"], ["https://tec.openplanner.team/stops/H2tr252b", "https://tec.openplanner.team/stops/H2tr256b"], ["https://tec.openplanner.team/stops/LPurech2", "https://tec.openplanner.team/stops/LPutins2"], ["https://tec.openplanner.team/stops/LAWbrou2", "https://tec.openplanner.team/stops/LAWdefu3"], ["https://tec.openplanner.team/stops/LSTchen1", "https://tec.openplanner.team/stops/LSTvaul1"], ["https://tec.openplanner.team/stops/LWAhart1", "https://tec.openplanner.team/stops/LWAmois1"], ["https://tec.openplanner.team/stops/X910afb", "https://tec.openplanner.team/stops/X910afd"], ["https://tec.openplanner.team/stops/H1ro134a", "https://tec.openplanner.team/stops/H1ro137b"], ["https://tec.openplanner.team/stops/H1qu104b", "https://tec.openplanner.team/stops/H1qu111b"], ["https://tec.openplanner.team/stops/Lpeathe*", "https://tec.openplanner.team/stops/Lpepano1"], ["https://tec.openplanner.team/stops/H2bh105a", "https://tec.openplanner.team/stops/H2bh117a"], ["https://tec.openplanner.team/stops/LCRchpl1", "https://tec.openplanner.team/stops/LTymahr1"], ["https://tec.openplanner.team/stops/N528agb", "https://tec.openplanner.team/stops/N528ahb"], ["https://tec.openplanner.team/stops/X723aga", "https://tec.openplanner.team/stops/X723aha"], ["https://tec.openplanner.team/stops/H1ms263b", "https://tec.openplanner.team/stops/H1ms264b"], ["https://tec.openplanner.team/stops/N501ltb", "https://tec.openplanner.team/stops/N501lxa"], ["https://tec.openplanner.team/stops/H4ar107b", "https://tec.openplanner.team/stops/H4ar172a"], ["https://tec.openplanner.team/stops/N515ana", "https://tec.openplanner.team/stops/N515anb"], ["https://tec.openplanner.team/stops/Clvchar2", "https://tec.openplanner.team/stops/Cmlbulp3"], ["https://tec.openplanner.team/stops/N571aca", "https://tec.openplanner.team/stops/N571ada"], ["https://tec.openplanner.team/stops/N576ama", "https://tec.openplanner.team/stops/N576amb"], ["https://tec.openplanner.team/stops/LaM266-2", "https://tec.openplanner.team/stops/LaMmark1"], ["https://tec.openplanner.team/stops/Bgemga08", "https://tec.openplanner.team/stops/Bgemga09"], ["https://tec.openplanner.team/stops/LDapota1", "https://tec.openplanner.team/stops/LOMdodi2"], ["https://tec.openplanner.team/stops/Llgjoie3", "https://tec.openplanner.team/stops/Llgmont2"], ["https://tec.openplanner.team/stops/H1hr120a", "https://tec.openplanner.team/stops/H3so171b"], ["https://tec.openplanner.team/stops/H2bh117a", "https://tec.openplanner.team/stops/H2lc146b"], ["https://tec.openplanner.team/stops/N511aoa", "https://tec.openplanner.team/stops/N511aoc"], ["https://tec.openplanner.team/stops/X808aba", "https://tec.openplanner.team/stops/X809aeb"], ["https://tec.openplanner.team/stops/N145aib", "https://tec.openplanner.team/stops/N145ajb"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N331aib"], ["https://tec.openplanner.team/stops/N127aia", "https://tec.openplanner.team/stops/N134aea"], ["https://tec.openplanner.team/stops/Bcsgcou2", "https://tec.openplanner.team/stops/Bmrsayw1"], ["https://tec.openplanner.team/stops/X948aob", "https://tec.openplanner.team/stops/X948bba"], ["https://tec.openplanner.team/stops/N541aab", "https://tec.openplanner.team/stops/N541aca"], ["https://tec.openplanner.team/stops/X354aia", "https://tec.openplanner.team/stops/X354aib"], ["https://tec.openplanner.team/stops/Cprlpre1", "https://tec.openplanner.team/stops/Cprlpre2"], ["https://tec.openplanner.team/stops/X639apa", "https://tec.openplanner.team/stops/X639apb"], ["https://tec.openplanner.team/stops/X947aba", "https://tec.openplanner.team/stops/X947aea"], ["https://tec.openplanner.team/stops/Bcbqh451", "https://tec.openplanner.team/stops/Bitrnus2"], ["https://tec.openplanner.team/stops/Cmlchan2", "https://tec.openplanner.team/stops/Cmlours1"], ["https://tec.openplanner.team/stops/H5at106a", "https://tec.openplanner.team/stops/H5at118a"], ["https://tec.openplanner.team/stops/N509aca", "https://tec.openplanner.team/stops/N511aoc"], ["https://tec.openplanner.team/stops/Cgzdeve1", "https://tec.openplanner.team/stops/Cgzhour2"], ["https://tec.openplanner.team/stops/LgHdorf1", "https://tec.openplanner.team/stops/LnDdorf1"], ["https://tec.openplanner.team/stops/Llgdelc2", "https://tec.openplanner.team/stops/Llgnico3"], ["https://tec.openplanner.team/stops/LSSvill3", "https://tec.openplanner.team/stops/LSSvill4"], ["https://tec.openplanner.team/stops/LMsbusc1", "https://tec.openplanner.team/stops/LMsgara1"], ["https://tec.openplanner.team/stops/H1ho136b", "https://tec.openplanner.team/stops/H1ho139b"], ["https://tec.openplanner.team/stops/Broscha2", "https://tec.openplanner.team/stops/Cgpleco2"], ["https://tec.openplanner.team/stops/X731ada", "https://tec.openplanner.team/stops/X986ala"], ["https://tec.openplanner.team/stops/H4wi161b", "https://tec.openplanner.team/stops/H4wi169a"], ["https://tec.openplanner.team/stops/Canegbr1", "https://tec.openplanner.team/stops/Canplch1"], ["https://tec.openplanner.team/stops/NL77aga", "https://tec.openplanner.team/stops/NL79aab"], ["https://tec.openplanner.team/stops/Bnivath2", "https://tec.openplanner.team/stops/Bnivfro2"], ["https://tec.openplanner.team/stops/N220ada", "https://tec.openplanner.team/stops/N220adb"], ["https://tec.openplanner.team/stops/N340adb", "https://tec.openplanner.team/stops/N340agb"], ["https://tec.openplanner.team/stops/LJAcent1", "https://tec.openplanner.team/stops/LJAfawe2"], ["https://tec.openplanner.team/stops/H4ga150a", "https://tec.openplanner.team/stops/H4ha168a"], ["https://tec.openplanner.team/stops/Lghalli1", "https://tec.openplanner.team/stops/Lghalli2"], ["https://tec.openplanner.team/stops/X542afa", "https://tec.openplanner.team/stops/X750ayb"], ["https://tec.openplanner.team/stops/Cbmind2", "https://tec.openplanner.team/stops/Cbmmafr2"], ["https://tec.openplanner.team/stops/X901aja", "https://tec.openplanner.team/stops/X901aka"], ["https://tec.openplanner.team/stops/Bottgar3", "https://tec.openplanner.team/stops/Bottgar4"], ["https://tec.openplanner.team/stops/H4ta129a", "https://tec.openplanner.team/stops/H4ta130a"], ["https://tec.openplanner.team/stops/X784afa", "https://tec.openplanner.team/stops/X784agb"], ["https://tec.openplanner.team/stops/X542aaa", "https://tec.openplanner.team/stops/X750blb"], ["https://tec.openplanner.team/stops/N503ajc", "https://tec.openplanner.team/stops/N503aka"], ["https://tec.openplanner.team/stops/Bspkbeu2", "https://tec.openplanner.team/stops/H1en103a"], ["https://tec.openplanner.team/stops/H4vx363b", "https://tec.openplanner.team/stops/H4vx364d"], ["https://tec.openplanner.team/stops/LHueg--1", "https://tec.openplanner.team/stops/NL73adb"], ["https://tec.openplanner.team/stops/NH01aca", "https://tec.openplanner.team/stops/NH01acb"], ["https://tec.openplanner.team/stops/H1au112a", "https://tec.openplanner.team/stops/H1au114b"], ["https://tec.openplanner.team/stops/Bcbqhai1", "https://tec.openplanner.team/stops/Bcbqhai2"], ["https://tec.openplanner.team/stops/X314aab", "https://tec.openplanner.team/stops/X825aeb"], ["https://tec.openplanner.team/stops/X982apa", "https://tec.openplanner.team/stops/X982bob"], ["https://tec.openplanner.team/stops/LbRfrie1", "https://tec.openplanner.team/stops/LmAgruf2"], ["https://tec.openplanner.team/stops/Lenabat1", "https://tec.openplanner.team/stops/Lenclar2"], ["https://tec.openplanner.team/stops/X604abb", "https://tec.openplanner.team/stops/X634ahb"], ["https://tec.openplanner.team/stops/LSGeg--3", "https://tec.openplanner.team/stops/LSGsolo1"], ["https://tec.openplanner.team/stops/N543acb", "https://tec.openplanner.team/stops/N543axb"], ["https://tec.openplanner.team/stops/N501bra", "https://tec.openplanner.team/stops/N501fra"], ["https://tec.openplanner.team/stops/X764aab", "https://tec.openplanner.team/stops/X765aeb"], ["https://tec.openplanner.team/stops/Bclgapi2", "https://tec.openplanner.team/stops/Bdvmcsa2"], ["https://tec.openplanner.team/stops/X626ala", "https://tec.openplanner.team/stops/X687aba"], ["https://tec.openplanner.team/stops/N501bha", "https://tec.openplanner.team/stops/N501bhb"], ["https://tec.openplanner.team/stops/LRRchea4", "https://tec.openplanner.team/stops/LRRmanc1"], ["https://tec.openplanner.team/stops/Llghlau2", "https://tec.openplanner.team/stops/Llglaur2"], ["https://tec.openplanner.team/stops/Csochea1", "https://tec.openplanner.team/stops/Csochea2"], ["https://tec.openplanner.team/stops/Blanath2", "https://tec.openplanner.team/stops/Blangar1"], ["https://tec.openplanner.team/stops/Bbgnton1", "https://tec.openplanner.team/stops/N561aea"], ["https://tec.openplanner.team/stops/H5st164b", "https://tec.openplanner.team/stops/H5st166b"], ["https://tec.openplanner.team/stops/LmNpost1", "https://tec.openplanner.team/stops/LmNpost2"], ["https://tec.openplanner.team/stops/X801bfa", "https://tec.openplanner.team/stops/X801bga"], ["https://tec.openplanner.team/stops/Balsnay2", "https://tec.openplanner.team/stops/Bbrlrph2"], ["https://tec.openplanner.team/stops/Brsgcfl2", "https://tec.openplanner.team/stops/Brsgsan1"], ["https://tec.openplanner.team/stops/H1cu120b", "https://tec.openplanner.team/stops/H1fl139b"], ["https://tec.openplanner.team/stops/H4br110a", "https://tec.openplanner.team/stops/H4cl113a"], ["https://tec.openplanner.team/stops/LvAkirc1", "https://tec.openplanner.team/stops/LvAkirc4"], ["https://tec.openplanner.team/stops/LROhael1", "https://tec.openplanner.team/stops/LWabela2"], ["https://tec.openplanner.team/stops/LSZcock1", "https://tec.openplanner.team/stops/LSZgare1"], ["https://tec.openplanner.team/stops/Cmlcpar1", "https://tec.openplanner.team/stops/Cmlmatc2"], ["https://tec.openplanner.team/stops/H1gq153a", "https://tec.openplanner.team/stops/H1gq153b"], ["https://tec.openplanner.team/stops/Lsehya-3", "https://tec.openplanner.team/stops/Lsehya-4"], ["https://tec.openplanner.team/stops/X876aea", "https://tec.openplanner.team/stops/X876aeb"], ["https://tec.openplanner.team/stops/N117auc", "https://tec.openplanner.team/stops/N117azb"], ["https://tec.openplanner.team/stops/LPbtene1", "https://tec.openplanner.team/stops/LPbtene2"], ["https://tec.openplanner.team/stops/LLgcent2", "https://tec.openplanner.team/stops/LRCviad1"], ["https://tec.openplanner.team/stops/X948aaa", "https://tec.openplanner.team/stops/X948aab"], ["https://tec.openplanner.team/stops/H4ar177a", "https://tec.openplanner.team/stops/H4ar178b"], ["https://tec.openplanner.team/stops/LGlcarr1", "https://tec.openplanner.team/stops/LHZpara2"], ["https://tec.openplanner.team/stops/N540aoa", "https://tec.openplanner.team/stops/N540aob"], ["https://tec.openplanner.team/stops/N501cfb", "https://tec.openplanner.team/stops/N501cfc"], ["https://tec.openplanner.team/stops/X801atb", "https://tec.openplanner.team/stops/X837ahb"], ["https://tec.openplanner.team/stops/N501esz", "https://tec.openplanner.team/stops/N501jqa"], ["https://tec.openplanner.team/stops/X886aca", "https://tec.openplanner.team/stops/X886afa"], ["https://tec.openplanner.team/stops/Bgntalt1", "https://tec.openplanner.team/stops/Bgntalt2"], ["https://tec.openplanner.team/stops/N506bia", "https://tec.openplanner.team/stops/N506bib"], ["https://tec.openplanner.team/stops/Cbfchla1", "https://tec.openplanner.team/stops/Cbfpauc1"], ["https://tec.openplanner.team/stops/H1bn148a", "https://tec.openplanner.team/stops/H1bn148b"], ["https://tec.openplanner.team/stops/H1hm173a", "https://tec.openplanner.team/stops/H1hm175a"], ["https://tec.openplanner.team/stops/H2fa108b", "https://tec.openplanner.team/stops/H2fa112b"], ["https://tec.openplanner.team/stops/X949aga", "https://tec.openplanner.team/stops/X949agb"], ["https://tec.openplanner.team/stops/LTOcime2", "https://tec.openplanner.team/stops/LTOeg--2"], ["https://tec.openplanner.team/stops/LMfbacu2", "https://tec.openplanner.team/stops/LMfpeni*"], ["https://tec.openplanner.team/stops/LmD181-1", "https://tec.openplanner.team/stops/LmDwei31"], ["https://tec.openplanner.team/stops/Bcseaba1", "https://tec.openplanner.team/stops/Bcsebea4"], ["https://tec.openplanner.team/stops/LSeaque3", "https://tec.openplanner.team/stops/LSetrix1"], ["https://tec.openplanner.team/stops/Lpegole4", "https://tec.openplanner.team/stops/LWecorn2"], ["https://tec.openplanner.team/stops/X746aca", "https://tec.openplanner.team/stops/X747ajb"], ["https://tec.openplanner.team/stops/H1ba120a", "https://tec.openplanner.team/stops/H1ba120b"], ["https://tec.openplanner.team/stops/X941aga", "https://tec.openplanner.team/stops/X941agb"], ["https://tec.openplanner.team/stops/N553ala", "https://tec.openplanner.team/stops/N553amb"], ["https://tec.openplanner.team/stops/X652aha", "https://tec.openplanner.team/stops/X652ahb"], ["https://tec.openplanner.team/stops/Ladgath1", "https://tec.openplanner.team/stops/Lvelimi2"], ["https://tec.openplanner.team/stops/LBSchpl1", "https://tec.openplanner.team/stops/LBSchpl2"], ["https://tec.openplanner.team/stops/Bbiecoc2", "https://tec.openplanner.team/stops/Bbsggot2"], ["https://tec.openplanner.team/stops/LSPmart1", "https://tec.openplanner.team/stops/LWMchpl1"], ["https://tec.openplanner.team/stops/H3th131a", "https://tec.openplanner.team/stops/H3th131b"], ["https://tec.openplanner.team/stops/N501grd", "https://tec.openplanner.team/stops/N501gre"], ["https://tec.openplanner.team/stops/LPLg90-1", "https://tec.openplanner.team/stops/LRRcole1"], ["https://tec.openplanner.team/stops/LWecarr1", "https://tec.openplanner.team/stops/LWelogi1"], ["https://tec.openplanner.team/stops/Brebcha2", "https://tec.openplanner.team/stops/Brebmtg1"], ["https://tec.openplanner.team/stops/X741acb", "https://tec.openplanner.team/stops/X758aka"], ["https://tec.openplanner.team/stops/Bsammon1", "https://tec.openplanner.team/stops/Bsammon2"], ["https://tec.openplanner.team/stops/N122aca", "https://tec.openplanner.team/stops/N150aea"], ["https://tec.openplanner.team/stops/H4ty359a", "https://tec.openplanner.team/stops/H4ty359b"], ["https://tec.openplanner.team/stops/H4ka187a", "https://tec.openplanner.team/stops/H4ty349b"], ["https://tec.openplanner.team/stops/N116aad", "https://tec.openplanner.team/stops/N116aea"], ["https://tec.openplanner.team/stops/LTIchev2", "https://tec.openplanner.team/stops/LTIsain2"], ["https://tec.openplanner.team/stops/LsF39--1", "https://tec.openplanner.team/stops/LsF39--2"], ["https://tec.openplanner.team/stops/H4ar177b", "https://tec.openplanner.team/stops/H4ar178b"], ["https://tec.openplanner.team/stops/LWDsott1", "https://tec.openplanner.team/stops/LWDsott3"], ["https://tec.openplanner.team/stops/X653afb", "https://tec.openplanner.team/stops/X654aia"], ["https://tec.openplanner.team/stops/H4bo119b", "https://tec.openplanner.team/stops/H5qu158a"], ["https://tec.openplanner.team/stops/N521ara", "https://tec.openplanner.team/stops/N521asc"], ["https://tec.openplanner.team/stops/LSIespe2", "https://tec.openplanner.team/stops/LSIgehe2"], ["https://tec.openplanner.team/stops/X657aga", "https://tec.openplanner.team/stops/X657aha"], ["https://tec.openplanner.team/stops/Crspana1", "https://tec.openplanner.team/stops/Crspana4"], ["https://tec.openplanner.team/stops/LmR90--1", "https://tec.openplanner.team/stops/LsHfrie2"], ["https://tec.openplanner.team/stops/H2ca101b", "https://tec.openplanner.team/stops/H2ca105b"], ["https://tec.openplanner.team/stops/Bndbgar1", "https://tec.openplanner.team/stops/Btlgegl2"], ["https://tec.openplanner.team/stops/H4ft137a", "https://tec.openplanner.team/stops/H4ft138b"], ["https://tec.openplanner.team/stops/Bolggar2", "https://tec.openplanner.team/stops/Bolgrsa1"], ["https://tec.openplanner.team/stops/N135bga", "https://tec.openplanner.team/stops/N135bhb"], ["https://tec.openplanner.team/stops/H4mo204a", "https://tec.openplanner.team/stops/H4mo204b"], ["https://tec.openplanner.team/stops/H4ha170a", "https://tec.openplanner.team/stops/H4ha170b"], ["https://tec.openplanner.team/stops/Bwaygrg1", "https://tec.openplanner.team/stops/Bwaypav2"], ["https://tec.openplanner.team/stops/H4ss155a", "https://tec.openplanner.team/stops/H5rx100b"], ["https://tec.openplanner.team/stops/LPOpass1", "https://tec.openplanner.team/stops/LPOthom1"], ["https://tec.openplanner.team/stops/LaSbahn1", "https://tec.openplanner.team/stops/LaSbahn2"], ["https://tec.openplanner.team/stops/N106alb", "https://tec.openplanner.team/stops/N137afb"], ["https://tec.openplanner.team/stops/H2ll176a", "https://tec.openplanner.team/stops/H2ll176b"], ["https://tec.openplanner.team/stops/N501dtc", "https://tec.openplanner.team/stops/N501jta"], ["https://tec.openplanner.team/stops/LhGrote1", "https://tec.openplanner.team/stops/LkEhatt2"], ["https://tec.openplanner.team/stops/X769aib", "https://tec.openplanner.team/stops/X769asa"], ["https://tec.openplanner.team/stops/H1do121a", "https://tec.openplanner.team/stops/H1el137a"], ["https://tec.openplanner.team/stops/LLbmalm1", "https://tec.openplanner.team/stops/LLbquar2"], ["https://tec.openplanner.team/stops/X999aka", "https://tec.openplanner.team/stops/X999asa"], ["https://tec.openplanner.team/stops/H1cu111a", "https://tec.openplanner.team/stops/H1hn202b"], ["https://tec.openplanner.team/stops/Cvretan2", "https://tec.openplanner.team/stops/Cvrhab22"], ["https://tec.openplanner.team/stops/LHNcreh2", "https://tec.openplanner.team/stops/NL37acb"], ["https://tec.openplanner.team/stops/Btubcal2", "https://tec.openplanner.team/stops/Btubsam2"], ["https://tec.openplanner.team/stops/Bbcoben1", "https://tec.openplanner.team/stops/Bbcolno1"], ["https://tec.openplanner.team/stops/X804cbb", "https://tec.openplanner.team/stops/X818abb"], ["https://tec.openplanner.team/stops/H4ty297a", "https://tec.openplanner.team/stops/H4ty342b"], ["https://tec.openplanner.team/stops/LPLaube1", "https://tec.openplanner.team/stops/LRRcole1"], ["https://tec.openplanner.team/stops/Clrcomb2", "https://tec.openplanner.team/stops/Clrmarl3"], ["https://tec.openplanner.team/stops/N120aaa", "https://tec.openplanner.team/stops/N120aba"], ["https://tec.openplanner.team/stops/LTHturo1", "https://tec.openplanner.team/stops/LTHturo3"], ["https://tec.openplanner.team/stops/LVIeg--1", "https://tec.openplanner.team/stops/LVIeg--4"], ["https://tec.openplanner.team/stops/LFmgeno2", "https://tec.openplanner.team/stops/LMObouh1"], ["https://tec.openplanner.team/stops/Bpermon3", "https://tec.openplanner.team/stops/Bpermon4"], ["https://tec.openplanner.team/stops/LPLcite2", "https://tec.openplanner.team/stops/LPLcroi1"], ["https://tec.openplanner.team/stops/H4ru236b", "https://tec.openplanner.team/stops/H4ru246b"], ["https://tec.openplanner.team/stops/Brixdec1", "https://tec.openplanner.team/stops/Brixdec2"], ["https://tec.openplanner.team/stops/Lveclin2", "https://tec.openplanner.team/stops/Lverdep1"], ["https://tec.openplanner.team/stops/N232bob", "https://tec.openplanner.team/stops/N232bpb"], ["https://tec.openplanner.team/stops/LNCesne1", "https://tec.openplanner.team/stops/LNCfawe2"], ["https://tec.openplanner.team/stops/Lvegc--4", "https://tec.openplanner.team/stops/Lvevict1"], ["https://tec.openplanner.team/stops/X735abb", "https://tec.openplanner.team/stops/X735abc"], ["https://tec.openplanner.team/stops/X925ama", "https://tec.openplanner.team/stops/X949ada"], ["https://tec.openplanner.team/stops/X739alb", "https://tec.openplanner.team/stops/X771afb"], ["https://tec.openplanner.team/stops/H2tr247a", "https://tec.openplanner.team/stops/H2tr247b"], ["https://tec.openplanner.team/stops/X948aga", "https://tec.openplanner.team/stops/X948agb"], ["https://tec.openplanner.team/stops/X718abb", "https://tec.openplanner.team/stops/X718afa"], ["https://tec.openplanner.team/stops/LAVcime2", "https://tec.openplanner.team/stops/LAVeg--2"], ["https://tec.openplanner.team/stops/X717aaa", "https://tec.openplanner.team/stops/X717afb"], ["https://tec.openplanner.team/stops/Cfocobe2", "https://tec.openplanner.team/stops/Cfojoli2"], ["https://tec.openplanner.team/stops/Cctecol1", "https://tec.openplanner.team/stops/Cctvill2"], ["https://tec.openplanner.team/stops/H5el100b", "https://tec.openplanner.team/stops/H5el110b"], ["https://tec.openplanner.team/stops/X811aca", "https://tec.openplanner.team/stops/X811aib"], ["https://tec.openplanner.team/stops/LeUmalm2", "https://tec.openplanner.team/stops/LeUwetz1"], ["https://tec.openplanner.team/stops/LrAberg2", "https://tec.openplanner.team/stops/LrApley1"], ["https://tec.openplanner.team/stops/N226aaa", "https://tec.openplanner.team/stops/N338afb"], ["https://tec.openplanner.team/stops/X670ana", "https://tec.openplanner.team/stops/X670anb"], ["https://tec.openplanner.team/stops/Lghomni2", "https://tec.openplanner.team/stops/Lghpara2"], ["https://tec.openplanner.team/stops/N118aka", "https://tec.openplanner.team/stops/N118akb"], ["https://tec.openplanner.team/stops/H2ca103b", "https://tec.openplanner.team/stops/H2ca103c"], ["https://tec.openplanner.team/stops/LFMrijk2", "https://tec.openplanner.team/stops/LFMvoge*"], ["https://tec.openplanner.team/stops/LCxcham1", "https://tec.openplanner.team/stops/LCxhall1"], ["https://tec.openplanner.team/stops/Bovejei1", "https://tec.openplanner.team/stops/Bovejme1"], ["https://tec.openplanner.team/stops/Bbsifml2", "https://tec.openplanner.team/stops/Bnivjli2"], ["https://tec.openplanner.team/stops/N141ana", "https://tec.openplanner.team/stops/N141aoa"], ["https://tec.openplanner.team/stops/H1ha197a", "https://tec.openplanner.team/stops/H1ob328a"], ["https://tec.openplanner.team/stops/H1gn148a", "https://tec.openplanner.team/stops/H1ol140b"], ["https://tec.openplanner.team/stops/H5qu141a", "https://tec.openplanner.team/stops/H5qu154b"], ["https://tec.openplanner.team/stops/Bhanwav2", "https://tec.openplanner.team/stops/NL37abb"], ["https://tec.openplanner.team/stops/NB33aha", "https://tec.openplanner.team/stops/NB33aib"], ["https://tec.openplanner.team/stops/Bllngar3", "https://tec.openplanner.team/stops/Bllngar6"], ["https://tec.openplanner.team/stops/Cfaheni1", "https://tec.openplanner.team/stops/Cfamonu8"], ["https://tec.openplanner.team/stops/X886abb", "https://tec.openplanner.team/stops/X886abc"], ["https://tec.openplanner.team/stops/Blkbavo1", "https://tec.openplanner.team/stops/Blkbbeu1"], ["https://tec.openplanner.team/stops/LAMdelh2", "https://tec.openplanner.team/stops/LAMdelh3"], ["https://tec.openplanner.team/stops/N542ada", "https://tec.openplanner.team/stops/N578aba"], ["https://tec.openplanner.team/stops/H4ho119a", "https://tec.openplanner.team/stops/H4rm110a"], ["https://tec.openplanner.team/stops/LBpecco3", "https://tec.openplanner.team/stops/LBpecco4"], ["https://tec.openplanner.team/stops/H5wo123a", "https://tec.openplanner.team/stops/H5wo136a"], ["https://tec.openplanner.team/stops/X879agb", "https://tec.openplanner.team/stops/X879arb"], ["https://tec.openplanner.team/stops/Bcsegar2", "https://tec.openplanner.team/stops/Bcsemon2"], ["https://tec.openplanner.team/stops/Lemacac1", "https://tec.openplanner.team/stops/Lemcarm1"], ["https://tec.openplanner.team/stops/Cjubrul4", "https://tec.openplanner.team/stops/CMbert1"], ["https://tec.openplanner.team/stops/LPLhout1", "https://tec.openplanner.team/stops/LVtchai1"], ["https://tec.openplanner.team/stops/X715afa", "https://tec.openplanner.team/stops/X715amb"], ["https://tec.openplanner.team/stops/X899aab", "https://tec.openplanner.team/stops/X899aca"], ["https://tec.openplanner.team/stops/LREaube1", "https://tec.openplanner.team/stops/LREgar-1"], ["https://tec.openplanner.team/stops/N584aua", "https://tec.openplanner.team/stops/N584ayb"], ["https://tec.openplanner.team/stops/Lemboul1", "https://tec.openplanner.team/stops/Lemboul2"], ["https://tec.openplanner.team/stops/X652acd", "https://tec.openplanner.team/stops/X652adb"], ["https://tec.openplanner.team/stops/LbEkirc*", "https://tec.openplanner.team/stops/LbTathe2"], ["https://tec.openplanner.team/stops/X756ahb", "https://tec.openplanner.team/stops/X756aib"], ["https://tec.openplanner.team/stops/H4ld126b", "https://tec.openplanner.team/stops/H4tm140a"], ["https://tec.openplanner.team/stops/Lgrdefr1", "https://tec.openplanner.team/stops/Ljuetie1"], ["https://tec.openplanner.team/stops/LAOeg--1", "https://tec.openplanner.team/stops/LTGvill1"], ["https://tec.openplanner.team/stops/Lhrpepi1", "https://tec.openplanner.team/stops/Lhrtilm1"], ["https://tec.openplanner.team/stops/N232asb", "https://tec.openplanner.team/stops/N232btb"], ["https://tec.openplanner.team/stops/LeUdepo1", "https://tec.openplanner.team/stops/LeUgb--2"], ["https://tec.openplanner.team/stops/Bqueaga1", "https://tec.openplanner.team/stops/Bqueegl2"], ["https://tec.openplanner.team/stops/Cfocant2", "https://tec.openplanner.team/stops/Clrpast1"], ["https://tec.openplanner.team/stops/LFUchpl2", "https://tec.openplanner.team/stops/LHumoul1"], ["https://tec.openplanner.team/stops/LLUalou1", "https://tec.openplanner.team/stops/LLUalou2"], ["https://tec.openplanner.team/stops/N385aac", "https://tec.openplanner.team/stops/N385aca"], ["https://tec.openplanner.team/stops/Bwavcar1", "https://tec.openplanner.team/stops/Bwavlep2"], ["https://tec.openplanner.team/stops/X626adb", "https://tec.openplanner.team/stops/X626ala"], ["https://tec.openplanner.team/stops/LSTec--1", "https://tec.openplanner.team/stops/LSTgran2"], ["https://tec.openplanner.team/stops/Lrcastr2", "https://tec.openplanner.team/stops/Lrclant4"], ["https://tec.openplanner.team/stops/NC14agb", "https://tec.openplanner.team/stops/NC14aha"], ["https://tec.openplanner.team/stops/H1be101a", "https://tec.openplanner.team/stops/H1be102a"], ["https://tec.openplanner.team/stops/Lkinyst1", "https://tec.openplanner.team/stops/Lkivolg1"], ["https://tec.openplanner.team/stops/LlSzoll2", "https://tec.openplanner.team/stops/LmEdorf2"], ["https://tec.openplanner.team/stops/Brixblh3", "https://tec.openplanner.team/stops/Brixwav1"], ["https://tec.openplanner.team/stops/Lgrdeni1", "https://tec.openplanner.team/stops/Lgrdeni2"], ["https://tec.openplanner.team/stops/Bmrlhan1", "https://tec.openplanner.team/stops/Bmrlhan2"], ["https://tec.openplanner.team/stops/LnNkirc1", "https://tec.openplanner.team/stops/LrDhund1"], ["https://tec.openplanner.team/stops/X601bla", "https://tec.openplanner.team/stops/X602afa"], ["https://tec.openplanner.team/stops/Cmopn4", "https://tec.openplanner.team/stops/Cmoscap1"], ["https://tec.openplanner.team/stops/LOmmer-2", "https://tec.openplanner.team/stops/LSeaque1"], ["https://tec.openplanner.team/stops/H4ar172b", "https://tec.openplanner.team/stops/H4pl135a"], ["https://tec.openplanner.team/stops/H4fo116a", "https://tec.openplanner.team/stops/H4fo118a"], ["https://tec.openplanner.team/stops/LkTdorf1", "https://tec.openplanner.team/stops/LkTlibe2"], ["https://tec.openplanner.team/stops/X822aia", "https://tec.openplanner.team/stops/X822ara"], ["https://tec.openplanner.team/stops/H2gy105a", "https://tec.openplanner.team/stops/H2gy105b"], ["https://tec.openplanner.team/stops/X908aka", "https://tec.openplanner.team/stops/X911arb"], ["https://tec.openplanner.team/stops/Cgzcour1", "https://tec.openplanner.team/stops/Cgzvivi1"], ["https://tec.openplanner.team/stops/LAtaube1", "https://tec.openplanner.team/stops/NL35abb"], ["https://tec.openplanner.team/stops/Bboncfv1", "https://tec.openplanner.team/stops/Bboncha1"], ["https://tec.openplanner.team/stops/H4wp152a", "https://tec.openplanner.team/stops/H4wp153a"], ["https://tec.openplanner.team/stops/LSEcent1", "https://tec.openplanner.team/stops/LSpshin2"], ["https://tec.openplanner.team/stops/Btubfab1", "https://tec.openplanner.team/stops/Btubsam1"], ["https://tec.openplanner.team/stops/LFAbouc2", "https://tec.openplanner.team/stops/LLTfall2"], ["https://tec.openplanner.team/stops/X734abb", "https://tec.openplanner.team/stops/X734ara"], ["https://tec.openplanner.team/stops/LFabraa1", "https://tec.openplanner.team/stops/LFabraa2"], ["https://tec.openplanner.team/stops/H1le119a", "https://tec.openplanner.team/stops/H1le125a"], ["https://tec.openplanner.team/stops/Lsepaqu1", "https://tec.openplanner.team/stops/Lseruis1"], ["https://tec.openplanner.team/stops/LDLbois1", "https://tec.openplanner.team/stops/LLNogne1"], ["https://tec.openplanner.team/stops/Lpecime2", "https://tec.openplanner.team/stops/Lpemata1"], ["https://tec.openplanner.team/stops/LWegdry1", "https://tec.openplanner.team/stops/LWegdry2"], ["https://tec.openplanner.team/stops/H1ms296d", "https://tec.openplanner.team/stops/H1ms924a"], ["https://tec.openplanner.team/stops/Lchacie2", "https://tec.openplanner.team/stops/Lchchau2"], ["https://tec.openplanner.team/stops/Ltichif2", "https://tec.openplanner.team/stops/Ltichif3"], ["https://tec.openplanner.team/stops/H1au111b", "https://tec.openplanner.team/stops/H1au113b"], ["https://tec.openplanner.team/stops/N506aka", "https://tec.openplanner.team/stops/N556aeb"], ["https://tec.openplanner.team/stops/Cgosmoi2", "https://tec.openplanner.team/stops/Cjufauv1"], ["https://tec.openplanner.team/stops/Bhmmcha1", "https://tec.openplanner.team/stops/Bhmmpos1"], ["https://tec.openplanner.team/stops/N120aea", "https://tec.openplanner.team/stops/N120aha"], ["https://tec.openplanner.team/stops/H5pe137a", "https://tec.openplanner.team/stops/H5pe176a"], ["https://tec.openplanner.team/stops/X742aeb", "https://tec.openplanner.team/stops/X742afb"], ["https://tec.openplanner.team/stops/Btgrpla1", "https://tec.openplanner.team/stops/N584cac"], ["https://tec.openplanner.team/stops/LrEdic71", "https://tec.openplanner.team/stops/LrEfeck1"], ["https://tec.openplanner.team/stops/LAmarbo2", "https://tec.openplanner.team/stops/LVLf37-1"], ["https://tec.openplanner.team/stops/H4ga159a", "https://tec.openplanner.team/stops/H4vz371a"], ["https://tec.openplanner.team/stops/N231afb", "https://tec.openplanner.team/stops/N242adc"], ["https://tec.openplanner.team/stops/X615ata", "https://tec.openplanner.team/stops/X615atb"], ["https://tec.openplanner.team/stops/X901baa", "https://tec.openplanner.team/stops/X901bcb"], ["https://tec.openplanner.team/stops/X595aab", "https://tec.openplanner.team/stops/X595aac"], ["https://tec.openplanner.team/stops/Clrmarl4", "https://tec.openplanner.team/stops/Clrplac1"], ["https://tec.openplanner.team/stops/X631aaa", "https://tec.openplanner.team/stops/X645aba"], ["https://tec.openplanner.team/stops/LJSforg1", "https://tec.openplanner.team/stops/LJSforg2"], ["https://tec.openplanner.team/stops/H1fr124a", "https://tec.openplanner.team/stops/H1fr124b"], ["https://tec.openplanner.team/stops/X999adb", "https://tec.openplanner.team/stops/X999aea"], ["https://tec.openplanner.team/stops/X749acb", "https://tec.openplanner.team/stops/X754aab"], ["https://tec.openplanner.team/stops/X354aca", "https://tec.openplanner.team/stops/X354afb"], ["https://tec.openplanner.team/stops/H1wz171b", "https://tec.openplanner.team/stops/H2pe162b"], ["https://tec.openplanner.team/stops/H1cv102a", "https://tec.openplanner.team/stops/H1ju121b"], ["https://tec.openplanner.team/stops/X889aea", "https://tec.openplanner.team/stops/X889aeb"], ["https://tec.openplanner.team/stops/Lgrclas1", "https://tec.openplanner.team/stops/Lgrclas2"], ["https://tec.openplanner.team/stops/X723aeb", "https://tec.openplanner.team/stops/X723aja"], ["https://tec.openplanner.team/stops/LOcalbe1", "https://tec.openplanner.team/stops/LOcchat1"], ["https://tec.openplanner.team/stops/Blhunys3", "https://tec.openplanner.team/stops/Blhutma1"], ["https://tec.openplanner.team/stops/X804alb", "https://tec.openplanner.team/stops/X804bwa"], ["https://tec.openplanner.team/stops/H1br128a", "https://tec.openplanner.team/stops/H1ev112a"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X744aaa"], ["https://tec.openplanner.team/stops/Cgdcent2", "https://tec.openplanner.team/stops/H1mb125a"], ["https://tec.openplanner.team/stops/Cmlbrac1", "https://tec.openplanner.team/stops/Cmlvitf1"], ["https://tec.openplanner.team/stops/H4ty343b", "https://tec.openplanner.team/stops/H4ty405a"], ["https://tec.openplanner.team/stops/Cfanoci1", "https://tec.openplanner.team/stops/Cfanvmo1"], ["https://tec.openplanner.team/stops/Cmgpthi1", "https://tec.openplanner.team/stops/Csecroi1"], ["https://tec.openplanner.team/stops/Bwavbpi2", "https://tec.openplanner.team/stops/Bwavtas2"], ["https://tec.openplanner.team/stops/Lkiblan2", "https://tec.openplanner.team/stops/Llgstev2"], ["https://tec.openplanner.team/stops/H4ml206b", "https://tec.openplanner.team/stops/H4ml209b"], ["https://tec.openplanner.team/stops/Cgrbert2", "https://tec.openplanner.team/stops/NC14aga"], ["https://tec.openplanner.team/stops/LCIneuv1", "https://tec.openplanner.team/stops/LCIneuv2"], ["https://tec.openplanner.team/stops/H4ga148b", "https://tec.openplanner.team/stops/H4ga148d"], ["https://tec.openplanner.team/stops/N550aca", "https://tec.openplanner.team/stops/N550acc"], ["https://tec.openplanner.team/stops/Bramgar1", "https://tec.openplanner.team/stops/NR38aeb"], ["https://tec.openplanner.team/stops/N260aab", "https://tec.openplanner.team/stops/N270ada"], ["https://tec.openplanner.team/stops/Cmycime2", "https://tec.openplanner.team/stops/Cmyland4"], ["https://tec.openplanner.team/stops/X902axa", "https://tec.openplanner.team/stops/X902bfb"], ["https://tec.openplanner.team/stops/X907aeb", "https://tec.openplanner.team/stops/X907afa"], ["https://tec.openplanner.team/stops/N528aca", "https://tec.openplanner.team/stops/N528alb"], ["https://tec.openplanner.team/stops/Lpemata1", "https://tec.openplanner.team/stops/Lpemata2"], ["https://tec.openplanner.team/stops/N110aha", "https://tec.openplanner.team/stops/N125aab"], ["https://tec.openplanner.team/stops/LHarenn1", "https://tec.openplanner.team/stops/LHarenn2"], ["https://tec.openplanner.team/stops/H1lb138a", "https://tec.openplanner.team/stops/H1lb153b"], ["https://tec.openplanner.team/stops/H5rx125a", "https://tec.openplanner.team/stops/H5rx146b"], ["https://tec.openplanner.team/stops/LGMdrev1", "https://tec.openplanner.team/stops/LGMdrev2"], ["https://tec.openplanner.team/stops/N501bob", "https://tec.openplanner.team/stops/N501chf"], ["https://tec.openplanner.team/stops/LSSfont1", "https://tec.openplanner.team/stops/LSSfrai1"], ["https://tec.openplanner.team/stops/Lkivolg1", "https://tec.openplanner.team/stops/Lscbour2"], ["https://tec.openplanner.team/stops/N509aea", "https://tec.openplanner.team/stops/N509afb"], ["https://tec.openplanner.team/stops/Cctfaub1", "https://tec.openplanner.team/stops/Cctjust1"], ["https://tec.openplanner.team/stops/Bperrma1", "https://tec.openplanner.team/stops/Bpersyn2"], ["https://tec.openplanner.team/stops/Bnodegl1", "https://tec.openplanner.team/stops/Bpienod1"], ["https://tec.openplanner.team/stops/NH01aod", "https://tec.openplanner.team/stops/NH01arb"], ["https://tec.openplanner.team/stops/Llgfran1", "https://tec.openplanner.team/stops/Llgtill1"], ["https://tec.openplanner.team/stops/X636aub", "https://tec.openplanner.team/stops/X636bha"], ["https://tec.openplanner.team/stops/Bbchgod2", "https://tec.openplanner.team/stops/Bbchndb1"], ["https://tec.openplanner.team/stops/N506ara", "https://tec.openplanner.team/stops/N506aua"], ["https://tec.openplanner.team/stops/N501kmb", "https://tec.openplanner.team/stops/N501kmz"], ["https://tec.openplanner.team/stops/X804acb", "https://tec.openplanner.team/stops/X804aqb"], ["https://tec.openplanner.team/stops/Lgdec--1", "https://tec.openplanner.team/stops/Lgdmaye1"], ["https://tec.openplanner.team/stops/N235aaa", "https://tec.openplanner.team/stops/N235ahb"], ["https://tec.openplanner.team/stops/X942abe", "https://tec.openplanner.team/stops/X942adb"], ["https://tec.openplanner.team/stops/LBOande1", "https://tec.openplanner.team/stops/LBOholt1"], ["https://tec.openplanner.team/stops/N534aua", "https://tec.openplanner.team/stops/N534bfa"], ["https://tec.openplanner.team/stops/X663akb", "https://tec.openplanner.team/stops/X663axb"], ["https://tec.openplanner.team/stops/X684aaa", "https://tec.openplanner.team/stops/X687aba"], ["https://tec.openplanner.team/stops/Cchhopi3", "https://tec.openplanner.team/stops/CMjans2"], ["https://tec.openplanner.team/stops/X750ana", "https://tec.openplanner.team/stops/X750bla"], ["https://tec.openplanner.team/stops/LNEec--2", "https://tec.openplanner.team/stops/LNEvand2"], ["https://tec.openplanner.team/stops/LAibego2", "https://tec.openplanner.team/stops/LCacoop2"], ["https://tec.openplanner.team/stops/X390aha", "https://tec.openplanner.team/stops/X998aaa"], ["https://tec.openplanner.team/stops/NL81afa", "https://tec.openplanner.team/stops/NL81agb"], ["https://tec.openplanner.team/stops/X718aca", "https://tec.openplanner.team/stops/X718aea"], ["https://tec.openplanner.team/stops/H2le149a", "https://tec.openplanner.team/stops/H2le150a"], ["https://tec.openplanner.team/stops/LbOlier2", "https://tec.openplanner.team/stops/LbOre151"], ["https://tec.openplanner.team/stops/H4lz155a", "https://tec.openplanner.team/stops/H4lz161b"], ["https://tec.openplanner.team/stops/LAUnico1", "https://tec.openplanner.team/stops/LAUvict3"], ["https://tec.openplanner.team/stops/NC14aob", "https://tec.openplanner.team/stops/NC14aod"], ["https://tec.openplanner.team/stops/H2ca108b", "https://tec.openplanner.team/stops/H2ca115a"], ["https://tec.openplanner.team/stops/X786ada", "https://tec.openplanner.team/stops/X789aga"], ["https://tec.openplanner.team/stops/LlSbuch1", "https://tec.openplanner.team/stops/LlZkirc1"], ["https://tec.openplanner.team/stops/N166ada", "https://tec.openplanner.team/stops/N565abb"], ["https://tec.openplanner.team/stops/H1el134b", "https://tec.openplanner.team/stops/H1el135a"], ["https://tec.openplanner.team/stops/Livmoul1", "https://tec.openplanner.team/stops/Livmoul2"], ["https://tec.openplanner.team/stops/LESpont2", "https://tec.openplanner.team/stops/LESpont3"], ["https://tec.openplanner.team/stops/Ltibure1", "https://tec.openplanner.team/stops/Ltibure3"], ["https://tec.openplanner.team/stops/LSZdepo1", "https://tec.openplanner.team/stops/LSZdepo2"], ["https://tec.openplanner.team/stops/LCPconf1", "https://tec.openplanner.team/stops/LMttrou1"], ["https://tec.openplanner.team/stops/H2go117a", "https://tec.openplanner.team/stops/H2se115a"], ["https://tec.openplanner.team/stops/X824aec", "https://tec.openplanner.team/stops/X824ahb"], ["https://tec.openplanner.team/stops/LRccent2", "https://tec.openplanner.team/stops/LRchaie1"], ["https://tec.openplanner.team/stops/H4ae102a", "https://tec.openplanner.team/stops/H4ae102b"], ["https://tec.openplanner.team/stops/Lgrfass2", "https://tec.openplanner.team/stops/Lgrtomb1"], ["https://tec.openplanner.team/stops/Cmlchan1", "https://tec.openplanner.team/stops/Cmlpomm1"], ["https://tec.openplanner.team/stops/LbHzent2", "https://tec.openplanner.team/stops/LrUbrac4"], ["https://tec.openplanner.team/stops/Bjod7co2", "https://tec.openplanner.team/stops/Bjodrga2"], ["https://tec.openplanner.team/stops/LNCecdo1", "https://tec.openplanner.team/stops/LNCsera2"], ["https://tec.openplanner.team/stops/Clvorle2", "https://tec.openplanner.team/stops/Cnadrev2"], ["https://tec.openplanner.team/stops/Cselait1", "https://tec.openplanner.team/stops/Cvtmaro1"], ["https://tec.openplanner.team/stops/Lrccime3", "https://tec.openplanner.team/stops/Lvoplac1"], ["https://tec.openplanner.team/stops/H1og131a", "https://tec.openplanner.team/stops/H1og132a"], ["https://tec.openplanner.team/stops/Bezebru2", "https://tec.openplanner.team/stops/Bezegar2"], ["https://tec.openplanner.team/stops/Cthvbas3", "https://tec.openplanner.team/stops/Cthvbas4"], ["https://tec.openplanner.team/stops/H4hg159a", "https://tec.openplanner.team/stops/H4hg159b"], ["https://tec.openplanner.team/stops/LkEgend2", "https://tec.openplanner.team/stops/LkEsada1"], ["https://tec.openplanner.team/stops/H4os220a", "https://tec.openplanner.team/stops/H4os222a"], ["https://tec.openplanner.team/stops/Bblapri1", "https://tec.openplanner.team/stops/Brsgter2"], ["https://tec.openplanner.team/stops/LmHvenn1", "https://tec.openplanner.team/stops/LmTschi1"], ["https://tec.openplanner.team/stops/Ccycont1", "https://tec.openplanner.team/stops/Ccycont2"], ["https://tec.openplanner.team/stops/X922afb", "https://tec.openplanner.team/stops/X922akb"], ["https://tec.openplanner.team/stops/Lhrdelv1", "https://tec.openplanner.team/stops/Lhrhurb2"], ["https://tec.openplanner.team/stops/N349abb", "https://tec.openplanner.team/stops/N349aga"], ["https://tec.openplanner.team/stops/X824afb", "https://tec.openplanner.team/stops/X824aga"], ["https://tec.openplanner.team/stops/N577aja", "https://tec.openplanner.team/stops/N577aka"], ["https://tec.openplanner.team/stops/X601bfb", "https://tec.openplanner.team/stops/X601bha"], ["https://tec.openplanner.team/stops/LSLhale2", "https://tec.openplanner.team/stops/LSLstra2"], ["https://tec.openplanner.team/stops/N203aca", "https://tec.openplanner.team/stops/N562ayb"], ["https://tec.openplanner.team/stops/N501eda", "https://tec.openplanner.team/stops/N501kcb"], ["https://tec.openplanner.team/stops/X902aja", "https://tec.openplanner.team/stops/X902aka"], ["https://tec.openplanner.team/stops/H2hp118b", "https://tec.openplanner.team/stops/H2hp121b"], ["https://tec.openplanner.team/stops/X639aqa", "https://tec.openplanner.team/stops/X639aub"], ["https://tec.openplanner.team/stops/X750anb", "https://tec.openplanner.team/stops/X777acb"], ["https://tec.openplanner.team/stops/N217aab", "https://tec.openplanner.team/stops/N218aea"], ["https://tec.openplanner.team/stops/X878aaa", "https://tec.openplanner.team/stops/X878abb"], ["https://tec.openplanner.team/stops/H1as103c", "https://tec.openplanner.team/stops/H1as103d"], ["https://tec.openplanner.team/stops/X657aeb", "https://tec.openplanner.team/stops/X657alb"], ["https://tec.openplanner.team/stops/LTNcarr6", "https://tec.openplanner.team/stops/LTNmont1"], ["https://tec.openplanner.team/stops/LAMcime1", "https://tec.openplanner.team/stops/LAMjaur1"], ["https://tec.openplanner.team/stops/Lrahoig2", "https://tec.openplanner.team/stops/Lrapays2"], ["https://tec.openplanner.team/stops/X940adb", "https://tec.openplanner.team/stops/X941ada"], ["https://tec.openplanner.team/stops/H1sy140a", "https://tec.openplanner.team/stops/H1to151b"], ["https://tec.openplanner.team/stops/LTEkl161", "https://tec.openplanner.team/stops/LVu40--2"], ["https://tec.openplanner.team/stops/LSseg--2", "https://tec.openplanner.team/stops/N506bsa"], ["https://tec.openplanner.team/stops/H1ol137a", "https://tec.openplanner.team/stops/H1ol143b"], ["https://tec.openplanner.team/stops/N116aca", "https://tec.openplanner.team/stops/N116ada"], ["https://tec.openplanner.team/stops/N146ada", "https://tec.openplanner.team/stops/N146adb"], ["https://tec.openplanner.team/stops/Ldipl--2", "https://tec.openplanner.team/stops/Ldipl--3"], ["https://tec.openplanner.team/stops/H4ve131b", "https://tec.openplanner.team/stops/H4ve137b"], ["https://tec.openplanner.team/stops/H4hu122a", "https://tec.openplanner.team/stops/H4hu122b"], ["https://tec.openplanner.team/stops/H4rc231b", "https://tec.openplanner.team/stops/H4rc231c"], ["https://tec.openplanner.team/stops/Bwatdmo1", "https://tec.openplanner.team/stops/Bwatle31"], ["https://tec.openplanner.team/stops/LaAdiep1", "https://tec.openplanner.team/stops/LaAjahn1"], ["https://tec.openplanner.team/stops/X801ama", "https://tec.openplanner.team/stops/X801amb"], ["https://tec.openplanner.team/stops/N507afa", "https://tec.openplanner.team/stops/N507afb"], ["https://tec.openplanner.team/stops/LEBdoct2", "https://tec.openplanner.team/stops/LEBeg--1"], ["https://tec.openplanner.team/stops/H2sb223a", "https://tec.openplanner.team/stops/H2sb223b"], ["https://tec.openplanner.team/stops/X941acb", "https://tec.openplanner.team/stops/X941acc"], ["https://tec.openplanner.team/stops/Bcrncce2", "https://tec.openplanner.team/stops/N529adb"], ["https://tec.openplanner.team/stops/LCPbell2", "https://tec.openplanner.team/stops/LPOchan2"], ["https://tec.openplanner.team/stops/Cjuecho2", "https://tec.openplanner.team/stops/Cjuplho1"], ["https://tec.openplanner.team/stops/Bmalwvi2", "https://tec.openplanner.team/stops/Btlbtbe1"], ["https://tec.openplanner.team/stops/H4ty314d", "https://tec.openplanner.team/stops/H4ty354b"], ["https://tec.openplanner.team/stops/X886agb", "https://tec.openplanner.team/stops/X985afa"], ["https://tec.openplanner.team/stops/N501nea", "https://tec.openplanner.team/stops/N501ney"], ["https://tec.openplanner.team/stops/X660aab", "https://tec.openplanner.team/stops/X660aea"], ["https://tec.openplanner.team/stops/Benggar1", "https://tec.openplanner.team/stops/Bptemch2"], ["https://tec.openplanner.team/stops/Lhrlico1", "https://tec.openplanner.team/stops/Lhrtilm2"], ["https://tec.openplanner.team/stops/N503aeb", "https://tec.openplanner.team/stops/N503aga"], ["https://tec.openplanner.team/stops/LRmstat2", "https://tec.openplanner.team/stops/LTEzinn2"], ["https://tec.openplanner.team/stops/LBOande2", "https://tec.openplanner.team/stops/LBWfusi2"], ["https://tec.openplanner.team/stops/X601bcb", "https://tec.openplanner.team/stops/X601cza"], ["https://tec.openplanner.team/stops/H4ka175b", "https://tec.openplanner.team/stops/H4ob124a"], ["https://tec.openplanner.team/stops/Balsnay1", "https://tec.openplanner.team/stops/Balsnie1"], ["https://tec.openplanner.team/stops/X616afb", "https://tec.openplanner.team/stops/X616aha"], ["https://tec.openplanner.team/stops/Brach121", "https://tec.openplanner.team/stops/Brach122"], ["https://tec.openplanner.team/stops/Cmlhaie2", "https://tec.openplanner.team/stops/Cmlvxmo1"], ["https://tec.openplanner.team/stops/N501hyb", "https://tec.openplanner.team/stops/N501ioa"], ["https://tec.openplanner.team/stops/H1as100a", "https://tec.openplanner.team/stops/H1hg178b"], ["https://tec.openplanner.team/stops/X640apb", "https://tec.openplanner.team/stops/X640ava"], ["https://tec.openplanner.team/stops/Cmghay1", "https://tec.openplanner.team/stops/Cmgpla2"], ["https://tec.openplanner.team/stops/H4ae132d", "https://tec.openplanner.team/stops/H4ea132c"], ["https://tec.openplanner.team/stops/LLRbleh2", "https://tec.openplanner.team/stops/LLRvill1"], ["https://tec.openplanner.team/stops/X602ada", "https://tec.openplanner.team/stops/X602aga"], ["https://tec.openplanner.team/stops/LaMschr1", "https://tec.openplanner.team/stops/LdEkreu2"], ["https://tec.openplanner.team/stops/LaRkape2", "https://tec.openplanner.team/stops/LoDcorn2"], ["https://tec.openplanner.team/stops/N149aaa", "https://tec.openplanner.team/stops/N149aia"], ["https://tec.openplanner.team/stops/X802aka", "https://tec.openplanner.team/stops/X802ana"], ["https://tec.openplanner.team/stops/X601cta", "https://tec.openplanner.team/stops/X662aob"], ["https://tec.openplanner.team/stops/LCsange1", "https://tec.openplanner.team/stops/LCsjone1"], ["https://tec.openplanner.team/stops/LTyhall1", "https://tec.openplanner.team/stops/LTywaut2"], ["https://tec.openplanner.team/stops/Cmlange2", "https://tec.openplanner.team/stops/Cmldeto1"], ["https://tec.openplanner.team/stops/Lrc594-2", "https://tec.openplanner.team/stops/Lrccomm1"], ["https://tec.openplanner.team/stops/Bsomthi1", "https://tec.openplanner.team/stops/Bsomtpm1"], ["https://tec.openplanner.team/stops/Bmlnsmv1", "https://tec.openplanner.team/stops/Bmlnsmv2"], ["https://tec.openplanner.team/stops/X939aba", "https://tec.openplanner.team/stops/X939abb"], ["https://tec.openplanner.team/stops/N228aba", "https://tec.openplanner.team/stops/N228abb"], ["https://tec.openplanner.team/stops/LFyec--2", "https://tec.openplanner.team/stops/LWamass2"], ["https://tec.openplanner.team/stops/LSZarze1", "https://tec.openplanner.team/stops/LWycabi2"], ["https://tec.openplanner.team/stops/LRmkult2", "https://tec.openplanner.team/stops/LRmsmvo1"], ["https://tec.openplanner.team/stops/Bptbbie1", "https://tec.openplanner.team/stops/Bptbmco1"], ["https://tec.openplanner.team/stops/X358acd", "https://tec.openplanner.team/stops/X991aaa"], ["https://tec.openplanner.team/stops/H5gr137b", "https://tec.openplanner.team/stops/H5st169a"], ["https://tec.openplanner.team/stops/LOuilc-*", "https://tec.openplanner.team/stops/LOuouff1"], ["https://tec.openplanner.team/stops/Buccdho2", "https://tec.openplanner.team/stops/Buccgob1"], ["https://tec.openplanner.team/stops/LHEjose1", "https://tec.openplanner.team/stops/LJOchar2"], ["https://tec.openplanner.team/stops/LBQplac2", "https://tec.openplanner.team/stops/X919aia"], ["https://tec.openplanner.team/stops/LMalune4", "https://tec.openplanner.team/stops/LMamuse3"], ["https://tec.openplanner.team/stops/N230ahb", "https://tec.openplanner.team/stops/N230aia"], ["https://tec.openplanner.team/stops/Benimar1", "https://tec.openplanner.team/stops/Benimar2"], ["https://tec.openplanner.team/stops/Beclbse2", "https://tec.openplanner.team/stops/H2ec108b"], ["https://tec.openplanner.team/stops/X713aaa", "https://tec.openplanner.team/stops/X713abb"], ["https://tec.openplanner.team/stops/X639akc", "https://tec.openplanner.team/stops/X639akd"], ["https://tec.openplanner.team/stops/X609aab", "https://tec.openplanner.team/stops/X609aqa"], ["https://tec.openplanner.team/stops/N535aaa", "https://tec.openplanner.team/stops/N535acd"], ["https://tec.openplanner.team/stops/Cbecarr1", "https://tec.openplanner.team/stops/N161afa"], ["https://tec.openplanner.team/stops/Lanpont2", "https://tec.openplanner.team/stops/Lmobols1"], ["https://tec.openplanner.team/stops/LEnchan2", "https://tec.openplanner.team/stops/LEnvill2"], ["https://tec.openplanner.team/stops/LFPkape2", "https://tec.openplanner.team/stops/LFPkerk1"], ["https://tec.openplanner.team/stops/LPRfond1", "https://tec.openplanner.team/stops/Lrofont*"], ["https://tec.openplanner.team/stops/Lvecote2", "https://tec.openplanner.team/stops/Lvelobe2"], ["https://tec.openplanner.team/stops/H1mk108a", "https://tec.openplanner.team/stops/H1mk112a"], ["https://tec.openplanner.team/stops/N585ahb", "https://tec.openplanner.team/stops/N585aib"], ["https://tec.openplanner.team/stops/N337aia", "https://tec.openplanner.team/stops/N338aha"], ["https://tec.openplanner.team/stops/LLrmeno1", "https://tec.openplanner.team/stops/LLrmeno2"], ["https://tec.openplanner.team/stops/X764aea", "https://tec.openplanner.team/stops/X764aeb"], ["https://tec.openplanner.team/stops/X921ala", "https://tec.openplanner.team/stops/X921aoa"], ["https://tec.openplanner.team/stops/Cvthoeu1", "https://tec.openplanner.team/stops/Cvtvail1"], ["https://tec.openplanner.team/stops/X882acb", "https://tec.openplanner.team/stops/X882alb"], ["https://tec.openplanner.team/stops/H1ms245b", "https://tec.openplanner.team/stops/H1ms268a"], ["https://tec.openplanner.team/stops/LTiec--1", "https://tec.openplanner.team/stops/LTieg--1"], ["https://tec.openplanner.team/stops/X637agb", "https://tec.openplanner.team/stops/X637ajb"], ["https://tec.openplanner.team/stops/LDppana2", "https://tec.openplanner.team/stops/LDpzol-1"], ["https://tec.openplanner.team/stops/N260abc", "https://tec.openplanner.team/stops/N270aca"], ["https://tec.openplanner.team/stops/H1fl138a", "https://tec.openplanner.team/stops/H1lb134a"], ["https://tec.openplanner.team/stops/N115aab", "https://tec.openplanner.team/stops/N115aeb"], ["https://tec.openplanner.team/stops/X999aja", "https://tec.openplanner.team/stops/X999asb"], ["https://tec.openplanner.team/stops/H4mb138a", "https://tec.openplanner.team/stops/H4mb140a"], ["https://tec.openplanner.team/stops/N118aca", "https://tec.openplanner.team/stops/N118acc"], ["https://tec.openplanner.team/stops/LGEcons1", "https://tec.openplanner.team/stops/LGEhosp1"], ["https://tec.openplanner.team/stops/Bbcocvb2", "https://tec.openplanner.team/stops/Bhencha2"], ["https://tec.openplanner.team/stops/N166aab", "https://tec.openplanner.team/stops/N166adb"], ["https://tec.openplanner.team/stops/N543axb", "https://tec.openplanner.team/stops/N543bgc"], ["https://tec.openplanner.team/stops/Csslesc1", "https://tec.openplanner.team/stops/Csygare1"], ["https://tec.openplanner.team/stops/X750bgb", "https://tec.openplanner.team/stops/X784aaa"], ["https://tec.openplanner.team/stops/Cfcchen1", "https://tec.openplanner.team/stops/Cfcecol3"], ["https://tec.openplanner.team/stops/X911ava", "https://tec.openplanner.team/stops/X911avb"], ["https://tec.openplanner.team/stops/LHrfang1", "https://tec.openplanner.team/stops/LHrkin-1"], ["https://tec.openplanner.team/stops/X919ajb", "https://tec.openplanner.team/stops/X919ajd"], ["https://tec.openplanner.team/stops/Bnivphm1", "https://tec.openplanner.team/stops/Bnivvri1"], ["https://tec.openplanner.team/stops/X359acb", "https://tec.openplanner.team/stops/X371aca"], ["https://tec.openplanner.team/stops/N132ada", "https://tec.openplanner.team/stops/N132aea"], ["https://tec.openplanner.team/stops/X660agb", "https://tec.openplanner.team/stops/X672ahb"], ["https://tec.openplanner.team/stops/N528apb", "https://tec.openplanner.team/stops/N528atb"], ["https://tec.openplanner.team/stops/N535amc", "https://tec.openplanner.team/stops/N564aba"], ["https://tec.openplanner.team/stops/N501eta", "https://tec.openplanner.team/stops/N501kbb"], ["https://tec.openplanner.team/stops/N222ayb", "https://tec.openplanner.team/stops/X394aga"], ["https://tec.openplanner.team/stops/H2bh110b", "https://tec.openplanner.team/stops/H2bh120b"], ["https://tec.openplanner.team/stops/Bstecou1", "https://tec.openplanner.team/stops/Bstemco1"], ["https://tec.openplanner.team/stops/H4eh102b", "https://tec.openplanner.team/stops/H4he104b"], ["https://tec.openplanner.team/stops/N166aaa", "https://tec.openplanner.team/stops/N565abb"], ["https://tec.openplanner.team/stops/Ccunvus1", "https://tec.openplanner.team/stops/Ccutrav1"], ["https://tec.openplanner.team/stops/Bbuztai2", "https://tec.openplanner.team/stops/Bnivbng2"], ["https://tec.openplanner.team/stops/X390aia", "https://tec.openplanner.team/stops/X902ahb"], ["https://tec.openplanner.team/stops/H1sb146b", "https://tec.openplanner.team/stops/H1sb147b"], ["https://tec.openplanner.team/stops/Lemhenn1", "https://tec.openplanner.team/stops/Lemmusc2"], ["https://tec.openplanner.team/stops/H4pl137a", "https://tec.openplanner.team/stops/H4pl137b"], ["https://tec.openplanner.team/stops/LGEvill2", "https://tec.openplanner.team/stops/LGEwalk1"], ["https://tec.openplanner.team/stops/H1ro130b", "https://tec.openplanner.team/stops/H1ro135a"], ["https://tec.openplanner.team/stops/LeUmoor1", "https://tec.openplanner.team/stops/LeUrote1"], ["https://tec.openplanner.team/stops/LAugara1", "https://tec.openplanner.team/stops/LWRbomb3"], ["https://tec.openplanner.team/stops/H1do114a", "https://tec.openplanner.team/stops/H1do121a"], ["https://tec.openplanner.team/stops/Cdanvpr2", "https://tec.openplanner.team/stops/Cmaest1"], ["https://tec.openplanner.team/stops/Cmlcons1", "https://tec.openplanner.team/stops/Cmlmatc1"], ["https://tec.openplanner.team/stops/Bgrmver2", "https://tec.openplanner.team/stops/N522aka"], ["https://tec.openplanner.team/stops/X770aea", "https://tec.openplanner.team/stops/X770afa"], ["https://tec.openplanner.team/stops/LLWmonu2", "https://tec.openplanner.team/stops/LLWpier2"], ["https://tec.openplanner.team/stops/N570aca", "https://tec.openplanner.team/stops/N570acb"], ["https://tec.openplanner.team/stops/H4lz122b", "https://tec.openplanner.team/stops/H4lz157a"], ["https://tec.openplanner.team/stops/Berngrt1", "https://tec.openplanner.team/stops/Berngrt2"], ["https://tec.openplanner.team/stops/N536apa", "https://tec.openplanner.team/stops/N563amb"], ["https://tec.openplanner.team/stops/LLSbajo1", "https://tec.openplanner.team/stops/LLSbajo2"], ["https://tec.openplanner.team/stops/N150ada", "https://tec.openplanner.team/stops/N150aka"], ["https://tec.openplanner.team/stops/X801baa", "https://tec.openplanner.team/stops/X801bbb"], ["https://tec.openplanner.team/stops/Clrmarl3", "https://tec.openplanner.team/stops/Clrmarl4"], ["https://tec.openplanner.team/stops/Llgancd1", "https://tec.openplanner.team/stops/Llgancd2"], ["https://tec.openplanner.team/stops/Bwavtas1", "https://tec.openplanner.team/stops/Bwavtas2"], ["https://tec.openplanner.team/stops/H5rx135a", "https://tec.openplanner.team/stops/H5rx135b"], ["https://tec.openplanner.team/stops/Csdrofr1", "https://tec.openplanner.team/stops/Csdrofr2"], ["https://tec.openplanner.team/stops/Baeggar1", "https://tec.openplanner.team/stops/Bramrdf2"], ["https://tec.openplanner.team/stops/N113abb", "https://tec.openplanner.team/stops/N113agb"], ["https://tec.openplanner.team/stops/Ljeespe2", "https://tec.openplanner.team/stops/Lsetroq1"], ["https://tec.openplanner.team/stops/H1hr118a", "https://tec.openplanner.team/stops/H1ne143a"], ["https://tec.openplanner.team/stops/LBVlamo1", "https://tec.openplanner.team/stops/LMAcomm1"], ["https://tec.openplanner.team/stops/X717aia", "https://tec.openplanner.team/stops/X717aja"], ["https://tec.openplanner.team/stops/H1fr117a", "https://tec.openplanner.team/stops/H1fr122a"], ["https://tec.openplanner.team/stops/X696aha", "https://tec.openplanner.team/stops/X696aja"], ["https://tec.openplanner.team/stops/Lannico1", "https://tec.openplanner.team/stops/Lannico3"], ["https://tec.openplanner.team/stops/Bitrbvo1", "https://tec.openplanner.team/stops/Bvirgar2"], ["https://tec.openplanner.team/stops/N225aaa", "https://tec.openplanner.team/stops/N225aea"], ["https://tec.openplanner.team/stops/N230adb", "https://tec.openplanner.team/stops/N230aeb"], ["https://tec.openplanner.team/stops/Cgymetr2", "https://tec.openplanner.team/stops/CMgill2"], ["https://tec.openplanner.team/stops/Bbaltba1", "https://tec.openplanner.team/stops/N584ana"], ["https://tec.openplanner.team/stops/X897abb", "https://tec.openplanner.team/stops/X897aod"], ["https://tec.openplanner.team/stops/Bfelada2", "https://tec.openplanner.team/stops/Bfelrav2"], ["https://tec.openplanner.team/stops/N232aia", "https://tec.openplanner.team/stops/N232aja"], ["https://tec.openplanner.team/stops/Bjodcsb1", "https://tec.openplanner.team/stops/Bjodpvi2"], ["https://tec.openplanner.team/stops/LRaplac2", "https://tec.openplanner.team/stops/LRarami1"], ["https://tec.openplanner.team/stops/H1ca101b", "https://tec.openplanner.team/stops/H1ca109a"], ["https://tec.openplanner.team/stops/Ladhomb1", "https://tec.openplanner.team/stops/Ladmoul1"], ["https://tec.openplanner.team/stops/LJEerno1", "https://tec.openplanner.team/stops/LJEniho1"], ["https://tec.openplanner.team/stops/Bramcar1", "https://tec.openplanner.team/stops/Bramrdf1"], ["https://tec.openplanner.team/stops/N501hxa", "https://tec.openplanner.team/stops/N501hxb"], ["https://tec.openplanner.team/stops/Cmaprov2", "https://tec.openplanner.team/stops/Cmasncb1"], ["https://tec.openplanner.team/stops/X898ama", "https://tec.openplanner.team/stops/X899abb"], ["https://tec.openplanner.team/stops/Cthenmi2", "https://tec.openplanner.team/stops/Cthrpoi2"], ["https://tec.openplanner.team/stops/N517aba", "https://tec.openplanner.team/stops/N517aca"], ["https://tec.openplanner.team/stops/Cgzplac2", "https://tec.openplanner.team/stops/Cgzplac3"], ["https://tec.openplanner.team/stops/Lwapomp1", "https://tec.openplanner.team/stops/Lwapomp2"], ["https://tec.openplanner.team/stops/X661ayc", "https://tec.openplanner.team/stops/X661aza"], ["https://tec.openplanner.team/stops/Cmafafe2", "https://tec.openplanner.team/stops/Cmlthym1"], ["https://tec.openplanner.team/stops/LSLabba1", "https://tec.openplanner.team/stops/LSLabba2"], ["https://tec.openplanner.team/stops/LSphote1", "https://tec.openplanner.team/stops/LSpunio1"], ["https://tec.openplanner.team/stops/Lheaaz-2", "https://tec.openplanner.team/stops/Lheente1"], ["https://tec.openplanner.team/stops/N151aha", "https://tec.openplanner.team/stops/N153abb"], ["https://tec.openplanner.team/stops/LOTdelv1", "https://tec.openplanner.team/stops/LOTdelv2"], ["https://tec.openplanner.team/stops/Cmcbriq2", "https://tec.openplanner.team/stops/Csyjumo2"], ["https://tec.openplanner.team/stops/H5pe141a", "https://tec.openplanner.team/stops/H5pe150b"], ["https://tec.openplanner.team/stops/N515anb", "https://tec.openplanner.team/stops/N516ajb"], ["https://tec.openplanner.team/stops/Cfaecwa2", "https://tec.openplanner.team/stops/Cfamate1"], ["https://tec.openplanner.team/stops/N538axa", "https://tec.openplanner.team/stops/N538bba"], ["https://tec.openplanner.team/stops/H5pe125b", "https://tec.openplanner.team/stops/H5pe145b"], ["https://tec.openplanner.team/stops/Cchfort1", "https://tec.openplanner.team/stops/CMsacm2"], ["https://tec.openplanner.team/stops/H2ch104b", "https://tec.openplanner.team/stops/H2go118b"], ["https://tec.openplanner.team/stops/H5at134a", "https://tec.openplanner.team/stops/H5at235a"], ["https://tec.openplanner.team/stops/LCRecmo2", "https://tec.openplanner.team/stops/LFmbure1"], ["https://tec.openplanner.team/stops/X730afa", "https://tec.openplanner.team/stops/X731aia"], ["https://tec.openplanner.team/stops/LaAkapi1", "https://tec.openplanner.team/stops/LaAseba1"], ["https://tec.openplanner.team/stops/Cplcafp1", "https://tec.openplanner.team/stops/Cpllimi2"], ["https://tec.openplanner.team/stops/Bblaast1", "https://tec.openplanner.team/stops/Bblagar2"], ["https://tec.openplanner.team/stops/N230aka", "https://tec.openplanner.team/stops/N230ama"], ["https://tec.openplanner.team/stops/X614aoa", "https://tec.openplanner.team/stops/X614ava"], ["https://tec.openplanner.team/stops/N531ara", "https://tec.openplanner.team/stops/N531arb"], ["https://tec.openplanner.team/stops/LSPec--2", "https://tec.openplanner.team/stops/LSPptch1"], ["https://tec.openplanner.team/stops/N214aja", "https://tec.openplanner.team/stops/N236abb"], ["https://tec.openplanner.team/stops/NC44aca", "https://tec.openplanner.team/stops/NC44ada"], ["https://tec.openplanner.team/stops/X801aza", "https://tec.openplanner.team/stops/X801cjb"], ["https://tec.openplanner.team/stops/H4my121b", "https://tec.openplanner.team/stops/H4my122b"], ["https://tec.openplanner.team/stops/X734aib", "https://tec.openplanner.team/stops/X734ara"], ["https://tec.openplanner.team/stops/Bmouegl2", "https://tec.openplanner.team/stops/Bmoufil2"], ["https://tec.openplanner.team/stops/Csdetan2", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/LAUneuv3", "https://tec.openplanner.team/stops/LAUneuv4"], ["https://tec.openplanner.team/stops/X758aia", "https://tec.openplanner.team/stops/X758akb"], ["https://tec.openplanner.team/stops/LThbatt2", "https://tec.openplanner.team/stops/LThsere2"], ["https://tec.openplanner.team/stops/Cfmltas1", "https://tec.openplanner.team/stops/Cfmltas2"], ["https://tec.openplanner.team/stops/Bbgever1", "https://tec.openplanner.team/stops/Bwavzno1"], ["https://tec.openplanner.team/stops/Bvirbie4", "https://tec.openplanner.team/stops/Bvirpla2"], ["https://tec.openplanner.team/stops/H1ba119a", "https://tec.openplanner.team/stops/H1ba119b"], ["https://tec.openplanner.team/stops/X941aea", "https://tec.openplanner.team/stops/X941aeb"], ["https://tec.openplanner.team/stops/N501jqa", "https://tec.openplanner.team/stops/N501kpa"], ["https://tec.openplanner.team/stops/H4mx119a", "https://tec.openplanner.team/stops/H4mx119c"], ["https://tec.openplanner.team/stops/Bplncsd2", "https://tec.openplanner.team/stops/Bplnegl1"], ["https://tec.openplanner.team/stops/N138aga", "https://tec.openplanner.team/stops/N138aha"], ["https://tec.openplanner.team/stops/LLrcour1", "https://tec.openplanner.team/stops/LLrfagn2"], ["https://tec.openplanner.team/stops/NL79aaa", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/N548awa", "https://tec.openplanner.team/stops/N548awb"], ["https://tec.openplanner.team/stops/H1mq199a", "https://tec.openplanner.team/stops/H1mq199b"], ["https://tec.openplanner.team/stops/H1si153a", "https://tec.openplanner.team/stops/H1si153b"], ["https://tec.openplanner.team/stops/Braclin1", "https://tec.openplanner.team/stops/Bracrpe2"], ["https://tec.openplanner.team/stops/X812aqa", "https://tec.openplanner.team/stops/X812ara"], ["https://tec.openplanner.team/stops/LNCmada1", "https://tec.openplanner.team/stops/LNCmada2"], ["https://tec.openplanner.team/stops/N209ajc", "https://tec.openplanner.team/stops/N209aka"], ["https://tec.openplanner.team/stops/LBWbatt2", "https://tec.openplanner.team/stops/LBWeg--2"], ["https://tec.openplanner.team/stops/N501flb", "https://tec.openplanner.team/stops/N501fqb"], ["https://tec.openplanner.team/stops/LPRbayb1", "https://tec.openplanner.team/stops/LTRgare4"], ["https://tec.openplanner.team/stops/H2be101a", "https://tec.openplanner.team/stops/H2lh128a"], ["https://tec.openplanner.team/stops/Cfcchen1", "https://tec.openplanner.team/stops/Cfcchen2"], ["https://tec.openplanner.team/stops/X734aba", "https://tec.openplanner.team/stops/X734acb"], ["https://tec.openplanner.team/stops/LAncoup2", "https://tec.openplanner.team/stops/LHdfays2"], ["https://tec.openplanner.team/stops/H4ga155b", "https://tec.openplanner.team/stops/H4ga168b"], ["https://tec.openplanner.team/stops/H1gy111a", "https://tec.openplanner.team/stops/H1gy111b"], ["https://tec.openplanner.team/stops/X719aaa", "https://tec.openplanner.team/stops/X786acb"], ["https://tec.openplanner.team/stops/Lghalli1", "https://tec.openplanner.team/stops/Lghwall2"], ["https://tec.openplanner.team/stops/N507adb", "https://tec.openplanner.team/stops/N507amb"], ["https://tec.openplanner.team/stops/N248abb", "https://tec.openplanner.team/stops/N248acb"], ["https://tec.openplanner.team/stops/H4ty326a", "https://tec.openplanner.team/stops/H4wc372b"], ["https://tec.openplanner.team/stops/N351aha", "https://tec.openplanner.team/stops/N351ahb"], ["https://tec.openplanner.team/stops/X877aaa", "https://tec.openplanner.team/stops/X877abb"], ["https://tec.openplanner.team/stops/Bpermon4", "https://tec.openplanner.team/stops/Bperrsr2"], ["https://tec.openplanner.team/stops/H4ob108a", "https://tec.openplanner.team/stops/H4ob110a"], ["https://tec.openplanner.team/stops/H4ma400a", "https://tec.openplanner.team/stops/H4ma400b"], ["https://tec.openplanner.team/stops/Llglonh1", "https://tec.openplanner.team/stops/Llgmart1"], ["https://tec.openplanner.team/stops/Llgcime1", "https://tec.openplanner.team/stops/Llgcime2"], ["https://tec.openplanner.team/stops/Bpechos2", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://tec.openplanner.team/stops/N508aba", "https://tec.openplanner.team/stops/N508adb"], ["https://tec.openplanner.team/stops/Cfcgar2", "https://tec.openplanner.team/stops/Cfcstan2"], ["https://tec.openplanner.team/stops/Lmleg--1", "https://tec.openplanner.team/stops/Lmlhaut1"], ["https://tec.openplanner.team/stops/H2lh130b", "https://tec.openplanner.team/stops/H2mo133b"], ["https://tec.openplanner.team/stops/LHMbami2", "https://tec.openplanner.team/stops/LSIroch1"], ["https://tec.openplanner.team/stops/Cctchea1", "https://tec.openplanner.team/stops/Cctmari2"], ["https://tec.openplanner.team/stops/LSPastr2", "https://tec.openplanner.team/stops/LSProya2"], ["https://tec.openplanner.team/stops/LFFcouv2", "https://tec.openplanner.team/stops/LFFmarc2"], ["https://tec.openplanner.team/stops/N542afa", "https://tec.openplanner.team/stops/N542afb"], ["https://tec.openplanner.team/stops/Cfmrrou1", "https://tec.openplanner.team/stops/Csoforc2"], ["https://tec.openplanner.team/stops/Brsgcfl2", "https://tec.openplanner.team/stops/Brsggea1"], ["https://tec.openplanner.team/stops/Lanpisc1", "https://tec.openplanner.team/stops/Lmomarr1"], ["https://tec.openplanner.team/stops/H1hh111a", "https://tec.openplanner.team/stops/H1hh115a"], ["https://tec.openplanner.team/stops/Cjupn4", "https://tec.openplanner.team/stops/Clomakr1"], ["https://tec.openplanner.team/stops/Cfaamio4", "https://tec.openplanner.team/stops/Cfamonu2"], ["https://tec.openplanner.team/stops/LJAcham1", "https://tec.openplanner.team/stops/LJAcham2"], ["https://tec.openplanner.team/stops/Cdagoss2", "https://tec.openplanner.team/stops/Cmabegh1"], ["https://tec.openplanner.team/stops/X940aab", "https://tec.openplanner.team/stops/X941aba"], ["https://tec.openplanner.team/stops/X805aca", "https://tec.openplanner.team/stops/X805aja"], ["https://tec.openplanner.team/stops/Blkbavo2", "https://tec.openplanner.team/stops/Blkbbeu1"], ["https://tec.openplanner.team/stops/LFMkrut1", "https://tec.openplanner.team/stops/LFMkrut3"], ["https://tec.openplanner.team/stops/Clostan2", "https://tec.openplanner.team/stops/CMtsan2"], ["https://tec.openplanner.team/stops/X876aab", "https://tec.openplanner.team/stops/X876aeb"], ["https://tec.openplanner.team/stops/H1og131b", "https://tec.openplanner.team/stops/H1og133b"], ["https://tec.openplanner.team/stops/LOuplac1", "https://tec.openplanner.team/stops/LOuplac3"], ["https://tec.openplanner.team/stops/X725afc", "https://tec.openplanner.team/stops/X725aoa"], ["https://tec.openplanner.team/stops/N135afa", "https://tec.openplanner.team/stops/N135aja"], ["https://tec.openplanner.team/stops/H2ch101b", "https://tec.openplanner.team/stops/H2ch106a"], ["https://tec.openplanner.team/stops/X619aic", "https://tec.openplanner.team/stops/X620aha"], ["https://tec.openplanner.team/stops/Crchutt1", "https://tec.openplanner.team/stops/Crcverr2"], ["https://tec.openplanner.team/stops/X657aaa", "https://tec.openplanner.team/stops/X657aoa"], ["https://tec.openplanner.team/stops/N147aab", "https://tec.openplanner.team/stops/N147afb"], ["https://tec.openplanner.team/stops/H2fa100b", "https://tec.openplanner.team/stops/H2fa102a"], ["https://tec.openplanner.team/stops/N308adb", "https://tec.openplanner.team/stops/N308aga"], ["https://tec.openplanner.team/stops/N539bba", "https://tec.openplanner.team/stops/N540aqa"], ["https://tec.openplanner.team/stops/LrAbe602", "https://tec.openplanner.team/stops/LrAbe962"], ["https://tec.openplanner.team/stops/X661axc", "https://tec.openplanner.team/stops/X817abb"], ["https://tec.openplanner.team/stops/LSdcarr1", "https://tec.openplanner.team/stops/LSdcarr2"], ["https://tec.openplanner.team/stops/Cmlhauc3", "https://tec.openplanner.team/stops/Cmlvesp2"], ["https://tec.openplanner.team/stops/H1ca102a", "https://tec.openplanner.team/stops/H3so164a"], ["https://tec.openplanner.team/stops/Cgdrhau1", "https://tec.openplanner.team/stops/Cgdrhau2"], ["https://tec.openplanner.team/stops/Lccaigr2", "https://tec.openplanner.team/stops/LRAcouv1"], ["https://tec.openplanner.team/stops/X897acb", "https://tec.openplanner.team/stops/X897aib"], ["https://tec.openplanner.team/stops/LVlleme2", "https://tec.openplanner.team/stops/LVlleme4"], ["https://tec.openplanner.team/stops/X948aqa", "https://tec.openplanner.team/stops/X948aqb"], ["https://tec.openplanner.team/stops/Ctubpos1", "https://tec.openplanner.team/stops/Ctucomm2"], ["https://tec.openplanner.team/stops/LPcforg1", "https://tec.openplanner.team/stops/LVPbleh2"], ["https://tec.openplanner.team/stops/H2gy106a", "https://tec.openplanner.team/stops/H2gy109a"], ["https://tec.openplanner.team/stops/N576abb", "https://tec.openplanner.team/stops/N576ajb"], ["https://tec.openplanner.team/stops/H4de114b", "https://tec.openplanner.team/stops/H4ss157a"], ["https://tec.openplanner.team/stops/LARgare1", "https://tec.openplanner.team/stops/LARgare4"], ["https://tec.openplanner.team/stops/X636abb", "https://tec.openplanner.team/stops/X636acb"], ["https://tec.openplanner.team/stops/N540ara", "https://tec.openplanner.team/stops/N540arb"], ["https://tec.openplanner.team/stops/N236afb", "https://tec.openplanner.team/stops/N254aab"], ["https://tec.openplanner.team/stops/Bbgevil1", "https://tec.openplanner.team/stops/Bbgevil2"], ["https://tec.openplanner.team/stops/Cchhopi1", "https://tec.openplanner.team/stops/Cchhopi2"], ["https://tec.openplanner.team/stops/X923afa", "https://tec.openplanner.team/stops/X923aga"], ["https://tec.openplanner.team/stops/H4gr109b", "https://tec.openplanner.team/stops/H4gr112a"], ["https://tec.openplanner.team/stops/N214aga", "https://tec.openplanner.team/stops/N236aha"], ["https://tec.openplanner.team/stops/H4ho120b", "https://tec.openplanner.team/stops/H4ho121b"], ["https://tec.openplanner.team/stops/Cmareun1", "https://tec.openplanner.team/stops/Cmmegli3"], ["https://tec.openplanner.team/stops/LHNgend1", "https://tec.openplanner.team/stops/LHNgend3"], ["https://tec.openplanner.team/stops/Livcoll1", "https://tec.openplanner.team/stops/Livmoul1"], ["https://tec.openplanner.team/stops/X989afb", "https://tec.openplanner.team/stops/X989agb"], ["https://tec.openplanner.team/stops/X901boa", "https://tec.openplanner.team/stops/X901bra"], ["https://tec.openplanner.team/stops/N528aab", "https://tec.openplanner.team/stops/N528aeb"], ["https://tec.openplanner.team/stops/X371adb", "https://tec.openplanner.team/stops/X371agb"], ["https://tec.openplanner.team/stops/LJAsuri2", "https://tec.openplanner.team/stops/LJAverv2"], ["https://tec.openplanner.team/stops/N552aab", "https://tec.openplanner.team/stops/N552adb"], ["https://tec.openplanner.team/stops/Lceourt2", "https://tec.openplanner.team/stops/Lemacac2"], ["https://tec.openplanner.team/stops/X802aib", "https://tec.openplanner.team/stops/X836aha"], ["https://tec.openplanner.team/stops/X719aab", "https://tec.openplanner.team/stops/X719afa"], ["https://tec.openplanner.team/stops/X982arb", "https://tec.openplanner.team/stops/X982bvb"], ["https://tec.openplanner.team/stops/NL78aha", "https://tec.openplanner.team/stops/NL78ahc"], ["https://tec.openplanner.team/stops/H4ty296b", "https://tec.openplanner.team/stops/H4ty303a"], ["https://tec.openplanner.team/stops/H5rx136b", "https://tec.openplanner.team/stops/H5rx137a"], ["https://tec.openplanner.team/stops/N103aia", "https://tec.openplanner.team/stops/N103aib"], ["https://tec.openplanner.team/stops/X993aeb", "https://tec.openplanner.team/stops/X994aka"], ["https://tec.openplanner.team/stops/H5qu139a", "https://tec.openplanner.team/stops/H5qu139b"], ["https://tec.openplanner.team/stops/H1ol144a", "https://tec.openplanner.team/stops/H1ol144b"], ["https://tec.openplanner.team/stops/Lcebail1", "https://tec.openplanner.team/stops/Lceleje2"], ["https://tec.openplanner.team/stops/Cbiferm1", "https://tec.openplanner.team/stops/Cthbifu1"], ["https://tec.openplanner.team/stops/X771anb", "https://tec.openplanner.team/stops/X773amb"], ["https://tec.openplanner.team/stops/X986aia", "https://tec.openplanner.team/stops/X986aib"], ["https://tec.openplanner.team/stops/X991ada", "https://tec.openplanner.team/stops/X991aja"], ["https://tec.openplanner.team/stops/H2gy103b", "https://tec.openplanner.team/stops/H2tz117a"], ["https://tec.openplanner.team/stops/Bcer4br2", "https://tec.openplanner.team/stops/Bcercab1"], ["https://tec.openplanner.team/stops/X629abb", "https://tec.openplanner.team/stops/X648aab"], ["https://tec.openplanner.team/stops/H5rx121b", "https://tec.openplanner.team/stops/H5rx134a"], ["https://tec.openplanner.team/stops/N584axb", "https://tec.openplanner.team/stops/N584cba"], ["https://tec.openplanner.team/stops/N514aoa", "https://tec.openplanner.team/stops/N514aob"], ["https://tec.openplanner.team/stops/N201aob", "https://tec.openplanner.team/stops/N201apb"], ["https://tec.openplanner.team/stops/LCOdrol2", "https://tec.openplanner.team/stops/LWerola2"], ["https://tec.openplanner.team/stops/LNOsedo2", "https://tec.openplanner.team/stops/LQafond1"], ["https://tec.openplanner.team/stops/Csschat2", "https://tec.openplanner.team/stops/Csspn2"], ["https://tec.openplanner.team/stops/N121aha", "https://tec.openplanner.team/stops/N121aib"], ["https://tec.openplanner.team/stops/X664ama", "https://tec.openplanner.team/stops/X664amd"], ["https://tec.openplanner.team/stops/X660aib", "https://tec.openplanner.team/stops/X672agb"], ["https://tec.openplanner.team/stops/Lsepair4", "https://tec.openplanner.team/stops/Lsevecq2"], ["https://tec.openplanner.team/stops/X946aia", "https://tec.openplanner.team/stops/X948acb"], ["https://tec.openplanner.team/stops/H2mi123a", "https://tec.openplanner.team/stops/H2mi123b"], ["https://tec.openplanner.team/stops/Llgform2", "https://tec.openplanner.team/stops/Lsntvbi1"], ["https://tec.openplanner.team/stops/X769aia", "https://tec.openplanner.team/stops/X769aob"], ["https://tec.openplanner.team/stops/H1ag107b", "https://tec.openplanner.team/stops/H1an102a"], ["https://tec.openplanner.team/stops/Llgherm1", "https://tec.openplanner.team/stops/Lvtboux1"], ["https://tec.openplanner.team/stops/H1si152a", "https://tec.openplanner.team/stops/H1si152c"], ["https://tec.openplanner.team/stops/H1ol142a", "https://tec.openplanner.team/stops/H1ol143a"], ["https://tec.openplanner.team/stops/LNCsart2", "https://tec.openplanner.team/stops/LRRchea3"], ["https://tec.openplanner.team/stops/H1ms245a", "https://tec.openplanner.team/stops/H1ms308d"], ["https://tec.openplanner.team/stops/Baudsju1", "https://tec.openplanner.team/stops/Baudsju2"], ["https://tec.openplanner.team/stops/LBEssab2", "https://tec.openplanner.team/stops/LBEtroo2"], ["https://tec.openplanner.team/stops/Bllnlb51", "https://tec.openplanner.team/stops/Bllnlb52"], ["https://tec.openplanner.team/stops/X725ana", "https://tec.openplanner.team/stops/X725beb"], ["https://tec.openplanner.team/stops/X995adb", "https://tec.openplanner.team/stops/X995adc"], ["https://tec.openplanner.team/stops/Cauushm1", "https://tec.openplanner.team/stops/Cauushm2"], ["https://tec.openplanner.team/stops/X747aea", "https://tec.openplanner.team/stops/X747afb"], ["https://tec.openplanner.team/stops/LSPhapa1", "https://tec.openplanner.team/stops/LSPherd1"], ["https://tec.openplanner.team/stops/X871aaa", "https://tec.openplanner.team/stops/X871aab"], ["https://tec.openplanner.team/stops/LOV62--1", "https://tec.openplanner.team/stops/LOV62--2"], ["https://tec.openplanner.team/stops/H1ms298a", "https://tec.openplanner.team/stops/H1ms943a"], ["https://tec.openplanner.team/stops/LJEverd1", "https://tec.openplanner.team/stops/LJEverd2"], ["https://tec.openplanner.team/stops/Bblabos1", "https://tec.openplanner.team/stops/Bblapri2"], ["https://tec.openplanner.team/stops/X902afa", "https://tec.openplanner.team/stops/X902aob"], ["https://tec.openplanner.team/stops/Cci4092", "https://tec.openplanner.team/stops/Cmtchas2"], ["https://tec.openplanner.team/stops/X979afa", "https://tec.openplanner.team/stops/X979aka"], ["https://tec.openplanner.team/stops/Bjodrrg1", "https://tec.openplanner.team/stops/Bzlucam2"], ["https://tec.openplanner.team/stops/LHegame3", "https://tec.openplanner.team/stops/LHehacc2"], ["https://tec.openplanner.team/stops/Lceembo1", "https://tec.openplanner.team/stops/Lceembo2"], ["https://tec.openplanner.team/stops/Bglitro1", "https://tec.openplanner.team/stops/Bglitro2"], ["https://tec.openplanner.team/stops/N118ana", "https://tec.openplanner.team/stops/N118atb"], ["https://tec.openplanner.team/stops/H1qv114b", "https://tec.openplanner.team/stops/H5pe144a"], ["https://tec.openplanner.team/stops/N501hmb", "https://tec.openplanner.team/stops/N501ivb"], ["https://tec.openplanner.team/stops/Cpclibe1", "https://tec.openplanner.team/stops/Cpclibe2"], ["https://tec.openplanner.team/stops/NR21aia", "https://tec.openplanner.team/stops/NR38afa"], ["https://tec.openplanner.team/stops/X937afa", "https://tec.openplanner.team/stops/X937akb"], ["https://tec.openplanner.team/stops/Bwatfva1", "https://tec.openplanner.team/stops/Bwatppa2"], ["https://tec.openplanner.team/stops/LNOning2", "https://tec.openplanner.team/stops/LNOpt--2"], ["https://tec.openplanner.team/stops/H1je225a", "https://tec.openplanner.team/stops/H1je225b"], ["https://tec.openplanner.team/stops/LHGzoni1", "https://tec.openplanner.team/stops/LHGzoni2"], ["https://tec.openplanner.team/stops/X601cia", "https://tec.openplanner.team/stops/X663aca"], ["https://tec.openplanner.team/stops/H1ro140a", "https://tec.openplanner.team/stops/H1ro140b"], ["https://tec.openplanner.team/stops/N534bpb", "https://tec.openplanner.team/stops/N534bqa"], ["https://tec.openplanner.team/stops/Clupcfe1", "https://tec.openplanner.team/stops/Cpcndce1"], ["https://tec.openplanner.team/stops/LFRbaro2", "https://tec.openplanner.team/stops/LSx309-1"], ["https://tec.openplanner.team/stops/H1hn364a", "https://tec.openplanner.team/stops/H1hn365b"], ["https://tec.openplanner.team/stops/LXhjupr1", "https://tec.openplanner.team/stops/LXhvanh2"], ["https://tec.openplanner.team/stops/Csoforr1", "https://tec.openplanner.team/stops/Csoforr3"], ["https://tec.openplanner.team/stops/X879aca", "https://tec.openplanner.team/stops/X879aqb"], ["https://tec.openplanner.team/stops/Clb4bra1", "https://tec.openplanner.team/stops/Clb4dgi2"], ["https://tec.openplanner.team/stops/LmLbeil1", "https://tec.openplanner.team/stops/LwMzoll2"], ["https://tec.openplanner.team/stops/Csbrago1", "https://tec.openplanner.team/stops/H1sa114a"], ["https://tec.openplanner.team/stops/LTPcarr2", "https://tec.openplanner.team/stops/LTPreco2"], ["https://tec.openplanner.team/stops/N103afb", "https://tec.openplanner.team/stops/N103agb"], ["https://tec.openplanner.team/stops/X870aaa", "https://tec.openplanner.team/stops/X870aib"], ["https://tec.openplanner.team/stops/H4bo118a", "https://tec.openplanner.team/stops/H4bo118d"], ["https://tec.openplanner.team/stops/X746ada", "https://tec.openplanner.team/stops/X746adb"], ["https://tec.openplanner.team/stops/H2bh110a", "https://tec.openplanner.team/stops/H2bh110b"], ["https://tec.openplanner.team/stops/Lvcbasi*", "https://tec.openplanner.team/stops/Lvcchau1"], ["https://tec.openplanner.team/stops/X917aca", "https://tec.openplanner.team/stops/X919afb"], ["https://tec.openplanner.team/stops/Bgemga11", "https://tec.openplanner.team/stops/N522bvb"], ["https://tec.openplanner.team/stops/LBLcalv1", "https://tec.openplanner.team/stops/LBLtroi2"], ["https://tec.openplanner.team/stops/H2me116a", "https://tec.openplanner.team/stops/H2me116b"], ["https://tec.openplanner.team/stops/H4ln129a", "https://tec.openplanner.team/stops/H4ne135b"], ["https://tec.openplanner.team/stops/LOcchat2", "https://tec.openplanner.team/stops/LOcgdro4"], ["https://tec.openplanner.team/stops/N512acb", "https://tec.openplanner.team/stops/N512axb"], ["https://tec.openplanner.team/stops/Blincal2", "https://tec.openplanner.team/stops/Bpthrsp1"], ["https://tec.openplanner.team/stops/Lceembo2", "https://tec.openplanner.team/stops/Lcepoul1"], ["https://tec.openplanner.team/stops/N571aka", "https://tec.openplanner.team/stops/N571akb"], ["https://tec.openplanner.team/stops/H1gg114b", "https://tec.openplanner.team/stops/H1gg115b"], ["https://tec.openplanner.team/stops/N116acb", "https://tec.openplanner.team/stops/N116adb"], ["https://tec.openplanner.team/stops/N134aga", "https://tec.openplanner.team/stops/N134aha"], ["https://tec.openplanner.team/stops/Cnabult3", "https://tec.openplanner.team/stops/NC14afb"], ["https://tec.openplanner.team/stops/N874acb", "https://tec.openplanner.team/stops/N874afb"], ["https://tec.openplanner.team/stops/N508ajd", "https://tec.openplanner.team/stops/N508apa"], ["https://tec.openplanner.team/stops/LFCotte2", "https://tec.openplanner.team/stops/LFCscho1"], ["https://tec.openplanner.team/stops/N241aab", "https://tec.openplanner.team/stops/N241abb"], ["https://tec.openplanner.team/stops/X811aab", "https://tec.openplanner.team/stops/X811aqb"], ["https://tec.openplanner.team/stops/LAWcite2", "https://tec.openplanner.team/stops/LAWcorn4"], ["https://tec.openplanner.team/stops/Bohnman1", "https://tec.openplanner.team/stops/Bohnrph2"], ["https://tec.openplanner.team/stops/LLrvill1", "https://tec.openplanner.team/stops/LLrvill2"], ["https://tec.openplanner.team/stops/N232bba", "https://tec.openplanner.team/stops/N232bta"], ["https://tec.openplanner.team/stops/Bperros1", "https://tec.openplanner.team/stops/N519agb"], ["https://tec.openplanner.team/stops/H1le119b", "https://tec.openplanner.team/stops/H1le129b"], ["https://tec.openplanner.team/stops/Cjuepee1", "https://tec.openplanner.team/stops/Cjutrou3"], ["https://tec.openplanner.team/stops/X637aeb", "https://tec.openplanner.team/stops/X637agc"], ["https://tec.openplanner.team/stops/H4he106a", "https://tec.openplanner.team/stops/H4ob124a"], ["https://tec.openplanner.team/stops/Lronamo2", "https://tec.openplanner.team/stops/Lrosoxh2"], ["https://tec.openplanner.team/stops/Bchgqve1", "https://tec.openplanner.team/stops/Bchgqve2"], ["https://tec.openplanner.team/stops/N534aeb", "https://tec.openplanner.team/stops/N534cbh"], ["https://tec.openplanner.team/stops/LREfloh2", "https://tec.openplanner.team/stops/LREsoug4"], ["https://tec.openplanner.team/stops/Lvcvand1", "https://tec.openplanner.team/stops/Lvcvand2"], ["https://tec.openplanner.team/stops/Cmorgof1", "https://tec.openplanner.team/stops/Cmorgof2"], ["https://tec.openplanner.team/stops/H4av100b", "https://tec.openplanner.team/stops/H4ss156a"], ["https://tec.openplanner.team/stops/Llgblon2", "https://tec.openplanner.team/stops/Llgterr1"], ["https://tec.openplanner.team/stops/LTPbode2", "https://tec.openplanner.team/stops/LTPcarr2"], ["https://tec.openplanner.team/stops/Cflmarc1", "https://tec.openplanner.team/stops/Cwgrabi2"], ["https://tec.openplanner.team/stops/H1ni316a", "https://tec.openplanner.team/stops/H1ni317a"], ["https://tec.openplanner.team/stops/Cgzcver1", "https://tec.openplanner.team/stops/Cgzfarc1"], ["https://tec.openplanner.team/stops/Blmlbou2", "https://tec.openplanner.team/stops/Blmlqlo2"], ["https://tec.openplanner.team/stops/Cvp3til1", "https://tec.openplanner.team/stops/Cvp3til4"], ["https://tec.openplanner.team/stops/Crcfdom2", "https://tec.openplanner.team/stops/Csurela2"], ["https://tec.openplanner.team/stops/LHUcomp2", "https://tec.openplanner.team/stops/LHUfali2"], ["https://tec.openplanner.team/stops/Clshafa1", "https://tec.openplanner.team/stops/H1me114a"], ["https://tec.openplanner.team/stops/H1he104a", "https://tec.openplanner.team/stops/H1he110a"], ["https://tec.openplanner.team/stops/H1me114a", "https://tec.openplanner.team/stops/H1me118a"], ["https://tec.openplanner.team/stops/LSCeg--4", "https://tec.openplanner.team/stops/LSChane1"], ["https://tec.openplanner.team/stops/LVIcarm1", "https://tec.openplanner.team/stops/LVIhala3"], ["https://tec.openplanner.team/stops/H3go102b", "https://tec.openplanner.team/stops/H3go104b"], ["https://tec.openplanner.team/stops/H1mq198a", "https://tec.openplanner.team/stops/H1ol146b"], ["https://tec.openplanner.team/stops/LSzeg--2", "https://tec.openplanner.team/stops/N506bta"], ["https://tec.openplanner.team/stops/LHdfays1", "https://tec.openplanner.team/stops/LVncarr1"], ["https://tec.openplanner.team/stops/N511aga", "https://tec.openplanner.team/stops/N511ahb"], ["https://tec.openplanner.team/stops/X769aca", "https://tec.openplanner.team/stops/X769aob"], ["https://tec.openplanner.team/stops/H4gu110a", "https://tec.openplanner.team/stops/H4ta134b"], ["https://tec.openplanner.team/stops/H1ma231a", "https://tec.openplanner.team/stops/H1ni320b"], ["https://tec.openplanner.team/stops/LeUath2", "https://tec.openplanner.team/stops/LeUnopr1"], ["https://tec.openplanner.team/stops/Livgera1", "https://tec.openplanner.team/stops/Livmoul1"], ["https://tec.openplanner.team/stops/H4ce101b", "https://tec.openplanner.team/stops/H4ce107b"], ["https://tec.openplanner.team/stops/H4rc234a", "https://tec.openplanner.team/stops/H4rc234b"], ["https://tec.openplanner.team/stops/Ctyhame1", "https://tec.openplanner.team/stops/N137afa"], ["https://tec.openplanner.team/stops/H1hh113b", "https://tec.openplanner.team/stops/H1hh117a"], ["https://tec.openplanner.team/stops/Bnilcab1", "https://tec.openplanner.team/stops/Bnilcab2"], ["https://tec.openplanner.team/stops/Lfhbott1", "https://tec.openplanner.team/stops/Lfhbott2"], ["https://tec.openplanner.team/stops/X625aea", "https://tec.openplanner.team/stops/X625aga"], ["https://tec.openplanner.team/stops/Lrcastr4", "https://tec.openplanner.team/stops/Lrclohe2"], ["https://tec.openplanner.team/stops/LFFmarc2", "https://tec.openplanner.team/stops/LVEtomb1"], ["https://tec.openplanner.team/stops/N340ada", "https://tec.openplanner.team/stops/N340agb"], ["https://tec.openplanner.team/stops/H4ev125a", "https://tec.openplanner.team/stops/H4hx116b"], ["https://tec.openplanner.team/stops/H5rx120b", "https://tec.openplanner.team/stops/H5rx149a"], ["https://tec.openplanner.team/stops/H4au144b", "https://tec.openplanner.team/stops/H4mb203a"], ["https://tec.openplanner.team/stops/Lhufont1", "https://tec.openplanner.team/stops/Lmnrame2"], ["https://tec.openplanner.team/stops/H2fa103a", "https://tec.openplanner.team/stops/H2fa103b"], ["https://tec.openplanner.team/stops/Clbchar1", "https://tec.openplanner.team/stops/Clbchar2"], ["https://tec.openplanner.team/stops/Bgerprg1", "https://tec.openplanner.team/stops/NB33aea"], ["https://tec.openplanner.team/stops/LWEcite2", "https://tec.openplanner.team/stops/LWEeg--2"], ["https://tec.openplanner.team/stops/LBQplac2", "https://tec.openplanner.team/stops/LSldurb2"], ["https://tec.openplanner.team/stops/LAvambr1", "https://tec.openplanner.team/stops/LAvrout1"], ["https://tec.openplanner.team/stops/Bbcogpl2", "https://tec.openplanner.team/stops/H3br102b"], ["https://tec.openplanner.team/stops/LMucarr3", "https://tec.openplanner.team/stops/LMupont2"], ["https://tec.openplanner.team/stops/N522aia", "https://tec.openplanner.team/stops/N576aba"], ["https://tec.openplanner.team/stops/Llgcbat2", "https://tec.openplanner.team/stops/Llgfran1"], ["https://tec.openplanner.team/stops/N521acb", "https://tec.openplanner.team/stops/N521apa"], ["https://tec.openplanner.team/stops/X609aob", "https://tec.openplanner.team/stops/X609aqb"], ["https://tec.openplanner.team/stops/H1vh135b", "https://tec.openplanner.team/stops/H1vh136c"], ["https://tec.openplanner.team/stops/X898aia", "https://tec.openplanner.team/stops/X898akb"], ["https://tec.openplanner.team/stops/N516aaa", "https://tec.openplanner.team/stops/N516aba"], ["https://tec.openplanner.team/stops/Lhurfay1", "https://tec.openplanner.team/stops/Lhurfay2"], ["https://tec.openplanner.team/stops/X768aia", "https://tec.openplanner.team/stops/X768aja"], ["https://tec.openplanner.team/stops/H4lg101a", "https://tec.openplanner.team/stops/H4lg104a"], ["https://tec.openplanner.team/stops/Cgy4bra1", "https://tec.openplanner.team/stops/Cgyaudu1"], ["https://tec.openplanner.team/stops/Bjod7co2", "https://tec.openplanner.team/stops/Bsjgmil1"], ["https://tec.openplanner.team/stops/N573ara", "https://tec.openplanner.team/stops/N573arb"], ["https://tec.openplanner.team/stops/Bsgetri2", "https://tec.openplanner.team/stops/Bvilcha2"], ["https://tec.openplanner.team/stops/X793ada", "https://tec.openplanner.team/stops/X793aqa"], ["https://tec.openplanner.team/stops/LmNbirt1", "https://tec.openplanner.team/stops/LmNelis1"], ["https://tec.openplanner.team/stops/X639aea", "https://tec.openplanner.team/stops/X639aua"], ["https://tec.openplanner.team/stops/X999acb", "https://tec.openplanner.team/stops/X999acc"], ["https://tec.openplanner.team/stops/Lheaaz-2", "https://tec.openplanner.team/stops/Lheazz-1"], ["https://tec.openplanner.team/stops/N519aac", "https://tec.openplanner.team/stops/N519aba"], ["https://tec.openplanner.team/stops/H4fr141a", "https://tec.openplanner.team/stops/H4ma417a"], ["https://tec.openplanner.team/stops/Bhmmcim1", "https://tec.openplanner.team/stops/Bhmmcim2"], ["https://tec.openplanner.team/stops/X901ada", "https://tec.openplanner.team/stops/X901aha"], ["https://tec.openplanner.team/stops/H2ml113a", "https://tec.openplanner.team/stops/H2mo119a"], ["https://tec.openplanner.team/stops/N501dqa", "https://tec.openplanner.team/stops/N501knb"], ["https://tec.openplanner.team/stops/X834abb", "https://tec.openplanner.team/stops/X834acb"], ["https://tec.openplanner.team/stops/H1je213b", "https://tec.openplanner.team/stops/H1je225a"], ["https://tec.openplanner.team/stops/H2fy123b", "https://tec.openplanner.team/stops/H2lh127a"], ["https://tec.openplanner.team/stops/H1mk108b", "https://tec.openplanner.team/stops/H1mk108c"], ["https://tec.openplanner.team/stops/X774ada", "https://tec.openplanner.team/stops/X774afb"], ["https://tec.openplanner.team/stops/X717age", "https://tec.openplanner.team/stops/X717agf"], ["https://tec.openplanner.team/stops/Llghaut1", "https://tec.openplanner.team/stops/Llglefe2"], ["https://tec.openplanner.team/stops/Blimbet3", "https://tec.openplanner.team/stops/Blimsob2"], ["https://tec.openplanner.team/stops/LDpulve2", "https://tec.openplanner.team/stops/LDpzol-1"], ["https://tec.openplanner.team/stops/LhRkirc1", "https://tec.openplanner.team/stops/LsCbrau1"], ["https://tec.openplanner.team/stops/N501eua", "https://tec.openplanner.team/stops/N501jqa"], ["https://tec.openplanner.team/stops/Bblapin1", "https://tec.openplanner.team/stops/Brsg7fo1"], ["https://tec.openplanner.team/stops/Lprdavi2", "https://tec.openplanner.team/stops/Lprhodi1"], ["https://tec.openplanner.team/stops/NL76ala", "https://tec.openplanner.team/stops/NL76ama"], ["https://tec.openplanner.team/stops/N501czb", "https://tec.openplanner.team/stops/N528aia"], ["https://tec.openplanner.team/stops/X927acb", "https://tec.openplanner.team/stops/X983aga"], ["https://tec.openplanner.team/stops/Llgarmu4", "https://tec.openplanner.team/stops/Llgmare5"], ["https://tec.openplanner.team/stops/LJvmale1", "https://tec.openplanner.team/stops/X781aab"], ["https://tec.openplanner.team/stops/H4ty281a", "https://tec.openplanner.team/stops/H4ty281b"], ["https://tec.openplanner.team/stops/N509aqb", "https://tec.openplanner.team/stops/N511aob"], ["https://tec.openplanner.team/stops/H1fr111a", "https://tec.openplanner.team/stops/H1fr111b"], ["https://tec.openplanner.team/stops/H4bh102d", "https://tec.openplanner.team/stops/H4bh105a"], ["https://tec.openplanner.team/stops/H1po130b", "https://tec.openplanner.team/stops/H1po138b"], ["https://tec.openplanner.team/stops/Cprcalv1", "https://tec.openplanner.team/stops/Cprcalv2"], ["https://tec.openplanner.team/stops/LlA43--1", "https://tec.openplanner.team/stops/LrUlasc2"], ["https://tec.openplanner.team/stops/Cobbuze1", "https://tec.openplanner.team/stops/Cobhaut2"], ["https://tec.openplanner.team/stops/LRObruy1", "https://tec.openplanner.team/stops/LROmorf2"], ["https://tec.openplanner.team/stops/X743aeb", "https://tec.openplanner.team/stops/X743agb"], ["https://tec.openplanner.team/stops/Cblsall1", "https://tec.openplanner.team/stops/Cslbarb2"], ["https://tec.openplanner.team/stops/Lhulibe1", "https://tec.openplanner.team/stops/Lhulibe2"], ["https://tec.openplanner.team/stops/LbRkirc1", "https://tec.openplanner.team/stops/LwTkabi3"], ["https://tec.openplanner.team/stops/LHXmonu1", "https://tec.openplanner.team/stops/LTPcamp2"], ["https://tec.openplanner.team/stops/H4ar100b", "https://tec.openplanner.team/stops/H4ar101a"], ["https://tec.openplanner.team/stops/Clproi1", "https://tec.openplanner.team/stops/Clproi2"], ["https://tec.openplanner.team/stops/Lbbgare2", "https://tec.openplanner.team/stops/Ljucano1"], ["https://tec.openplanner.team/stops/Cgrchas1", "https://tec.openplanner.team/stops/N160aeb"], ["https://tec.openplanner.team/stops/Ladboti1", "https://tec.openplanner.team/stops/Ladchat1"], ["https://tec.openplanner.team/stops/LOCbois1", "https://tec.openplanner.team/stops/NL35aga"], ["https://tec.openplanner.team/stops/LOVhetr2", "https://tec.openplanner.team/stops/LROrtba1"], ["https://tec.openplanner.team/stops/Bnivh%C3%B4p1", "https://tec.openplanner.team/stops/Bnivh%C3%B4p2"], ["https://tec.openplanner.team/stops/LCleg--1", "https://tec.openplanner.team/stops/LELchap1"], ["https://tec.openplanner.team/stops/H4me211a", "https://tec.openplanner.team/stops/H4me211b"], ["https://tec.openplanner.team/stops/Bndbdra1", "https://tec.openplanner.team/stops/Bndbnod2"], ["https://tec.openplanner.team/stops/X775aia", "https://tec.openplanner.team/stops/X775aja"], ["https://tec.openplanner.team/stops/H1to152a", "https://tec.openplanner.team/stops/H1to155a"], ["https://tec.openplanner.team/stops/Cgzfarc2", "https://tec.openplanner.team/stops/Cgzha621"], ["https://tec.openplanner.team/stops/X601bbb", "https://tec.openplanner.team/stops/X601bbc"], ["https://tec.openplanner.team/stops/Bwaak101", "https://tec.openplanner.team/stops/LBegare2"], ["https://tec.openplanner.team/stops/LeUschn1", "https://tec.openplanner.team/stops/LeUschn2"], ["https://tec.openplanner.team/stops/H4mv189a", "https://tec.openplanner.team/stops/H4mv189b"], ["https://tec.openplanner.team/stops/LMibouv4", "https://tec.openplanner.team/stops/LSTmeiz2"], ["https://tec.openplanner.team/stops/H1ms270b", "https://tec.openplanner.team/stops/H1ob361a"], ["https://tec.openplanner.team/stops/LPAmc--1", "https://tec.openplanner.team/stops/LPAvill1"], ["https://tec.openplanner.team/stops/Bclgpch2", "https://tec.openplanner.team/stops/Bllnlb52"], ["https://tec.openplanner.team/stops/Lemjoba1", "https://tec.openplanner.team/stops/Lemmath2"], ["https://tec.openplanner.team/stops/Lwaaube2", "https://tec.openplanner.team/stops/Lwachal1"], ["https://tec.openplanner.team/stops/H1hn365a", "https://tec.openplanner.team/stops/H1hn365b"], ["https://tec.openplanner.team/stops/Ccoforr1", "https://tec.openplanner.team/stops/Ccoforr2"], ["https://tec.openplanner.team/stops/X725aaa", "https://tec.openplanner.team/stops/X738aea"], ["https://tec.openplanner.team/stops/LEN183-2", "https://tec.openplanner.team/stops/LSGsurf1"], ["https://tec.openplanner.team/stops/H1sp355a", "https://tec.openplanner.team/stops/H1sp356a"], ["https://tec.openplanner.team/stops/LTestat1", "https://tec.openplanner.team/stops/LTestat2"], ["https://tec.openplanner.team/stops/LWNfani1", "https://tec.openplanner.team/stops/LWNwavr5"], ["https://tec.openplanner.team/stops/X952aeb", "https://tec.openplanner.team/stops/X952afb"], ["https://tec.openplanner.team/stops/Lsebegu2", "https://tec.openplanner.team/stops/Lsebegu3"], ["https://tec.openplanner.team/stops/Ctucamb1", "https://tec.openplanner.team/stops/Ctusold1"], ["https://tec.openplanner.team/stops/N506bbb", "https://tec.openplanner.team/stops/N512axa"], ["https://tec.openplanner.team/stops/LCRf14-2", "https://tec.openplanner.team/stops/LCRgdrt2"], ["https://tec.openplanner.team/stops/Bnivn972", "https://tec.openplanner.team/stops/Bnivpal1"], ["https://tec.openplanner.team/stops/Bhencha1", "https://tec.openplanner.team/stops/Bvircsj2"], ["https://tec.openplanner.team/stops/LBzec--2", "https://tec.openplanner.team/stops/LVMrout2"], ["https://tec.openplanner.team/stops/LBNforg2", "https://tec.openplanner.team/stops/LWEwall1"], ["https://tec.openplanner.team/stops/N542aaa", "https://tec.openplanner.team/stops/N542acc"], ["https://tec.openplanner.team/stops/N261aaa", "https://tec.openplanner.team/stops/N261agb"], ["https://tec.openplanner.team/stops/Cfbcal2", "https://tec.openplanner.team/stops/Cfcmass1"], ["https://tec.openplanner.team/stops/N122agb", "https://tec.openplanner.team/stops/N122ahb"], ["https://tec.openplanner.team/stops/LrDhund1", "https://tec.openplanner.team/stops/LsVgils1"], ["https://tec.openplanner.team/stops/Cmosaba3", "https://tec.openplanner.team/stops/Cmoscap1"], ["https://tec.openplanner.team/stops/X346akb", "https://tec.openplanner.team/stops/X369abb"], ["https://tec.openplanner.team/stops/H4pi130a", "https://tec.openplanner.team/stops/H4wp151b"], ["https://tec.openplanner.team/stops/H1so131b", "https://tec.openplanner.team/stops/H1so132b"], ["https://tec.openplanner.team/stops/X879akb", "https://tec.openplanner.team/stops/X879alb"], ["https://tec.openplanner.team/stops/X641apc", "https://tec.openplanner.team/stops/X641aqb"], ["https://tec.openplanner.team/stops/H5el116b", "https://tec.openplanner.team/stops/H5el117b"], ["https://tec.openplanner.team/stops/N351aga", "https://tec.openplanner.team/stops/N351aha"], ["https://tec.openplanner.team/stops/Cgxprad2", "https://tec.openplanner.team/stops/Cgxprad4"], ["https://tec.openplanner.team/stops/Cmldeto2", "https://tec.openplanner.team/stops/NC01afb"], ["https://tec.openplanner.team/stops/H4mo150b", "https://tec.openplanner.team/stops/H4mo205a"], ["https://tec.openplanner.team/stops/H4bo182a", "https://tec.openplanner.team/stops/H4bo182b"], ["https://tec.openplanner.team/stops/LBsfer-1", "https://tec.openplanner.team/stops/LBspiet2"], ["https://tec.openplanner.team/stops/H1ms268b", "https://tec.openplanner.team/stops/H1ms285a"], ["https://tec.openplanner.team/stops/Llgcadr4", "https://tec.openplanner.team/stops/LlgR-Fr*"], ["https://tec.openplanner.team/stops/X641afa", "https://tec.openplanner.team/stops/X641afb"], ["https://tec.openplanner.team/stops/Bmonbri2", "https://tec.openplanner.team/stops/Bnivmon1"], ["https://tec.openplanner.team/stops/Llgcoro1", "https://tec.openplanner.team/stops/Llgcoro4"], ["https://tec.openplanner.team/stops/Cctpano1", "https://tec.openplanner.team/stops/NC11aga"], ["https://tec.openplanner.team/stops/Ljucrah2", "https://tec.openplanner.team/stops/Ljuetie1"], ["https://tec.openplanner.team/stops/LBEpier1", "https://tec.openplanner.team/stops/Lcacaps1"], ["https://tec.openplanner.team/stops/H2tr246b", "https://tec.openplanner.team/stops/H2tr254a"], ["https://tec.openplanner.team/stops/N554ada", "https://tec.openplanner.team/stops/N573aqa"], ["https://tec.openplanner.team/stops/Ljucaba1", "https://tec.openplanner.team/stops/Ljuroch2"], ["https://tec.openplanner.team/stops/H4hx109b", "https://tec.openplanner.team/stops/H4wa155a"], ["https://tec.openplanner.team/stops/LHUaveu2", "https://tec.openplanner.team/stops/NL80aca"], ["https://tec.openplanner.team/stops/Cvlcalv2", "https://tec.openplanner.team/stops/NH01aha"], ["https://tec.openplanner.team/stops/Crchutt2", "https://tec.openplanner.team/stops/Crclorc1"], ["https://tec.openplanner.team/stops/Bbiehss1", "https://tec.openplanner.team/stops/Bbiesbi2"], ["https://tec.openplanner.team/stops/X354ahb", "https://tec.openplanner.team/stops/X359ala"], ["https://tec.openplanner.team/stops/LhZkape2", "https://tec.openplanner.team/stops/LmNsv872"], ["https://tec.openplanner.team/stops/N543aeb", "https://tec.openplanner.team/stops/N543apa"], ["https://tec.openplanner.team/stops/H1ca101a", "https://tec.openplanner.team/stops/H1ca186a"], ["https://tec.openplanner.team/stops/LSMchat2", "https://tec.openplanner.team/stops/LSMfroi2"], ["https://tec.openplanner.team/stops/LBGcent2", "https://tec.openplanner.team/stops/LPUmang1"], ["https://tec.openplanner.team/stops/X547aqb", "https://tec.openplanner.team/stops/X782aba"], ["https://tec.openplanner.team/stops/H2ha129d", "https://tec.openplanner.team/stops/H2ha139a"], ["https://tec.openplanner.team/stops/H1cu119b", "https://tec.openplanner.team/stops/H1cu122b"], ["https://tec.openplanner.team/stops/N155afa", "https://tec.openplanner.team/stops/N160aga"], ["https://tec.openplanner.team/stops/Cgzbouh2", "https://tec.openplanner.team/stops/Cgzcour1"], ["https://tec.openplanner.team/stops/H1gh157a", "https://tec.openplanner.team/stops/H1gh162c"], ["https://tec.openplanner.team/stops/N231aba", "https://tec.openplanner.team/stops/N231afb"], ["https://tec.openplanner.team/stops/LSCeg--4", "https://tec.openplanner.team/stops/LVMborl1"], ["https://tec.openplanner.team/stops/Lra4bra2", "https://tec.openplanner.team/stops/Lwakipe2"], ["https://tec.openplanner.team/stops/N229ara", "https://tec.openplanner.team/stops/N229aua"], ["https://tec.openplanner.team/stops/LNAanne1", "https://tec.openplanner.team/stops/LNAplac1"], ["https://tec.openplanner.team/stops/N134alb", "https://tec.openplanner.team/stops/N135aza"], ["https://tec.openplanner.team/stops/X396aca", "https://tec.openplanner.team/stops/X396acb"], ["https://tec.openplanner.team/stops/H1ht132a", "https://tec.openplanner.team/stops/H1si153a"], ["https://tec.openplanner.team/stops/LMEpech2", "https://tec.openplanner.team/stops/LMIcamp1"], ["https://tec.openplanner.team/stops/X641acb", "https://tec.openplanner.team/stops/X641adb"], ["https://tec.openplanner.team/stops/H4wt159a", "https://tec.openplanner.team/stops/H5rx112a"], ["https://tec.openplanner.team/stops/Bbeabme2", "https://tec.openplanner.team/stops/Bbeaegl1"], ["https://tec.openplanner.team/stops/H4ga158a", "https://tec.openplanner.team/stops/H4ga414a"], ["https://tec.openplanner.team/stops/X808afa", "https://tec.openplanner.team/stops/X808aga"], ["https://tec.openplanner.team/stops/N509aeb", "https://tec.openplanner.team/stops/N509afb"], ["https://tec.openplanner.team/stops/Lagindu2", "https://tec.openplanner.team/stops/Lagpn6-1"], ["https://tec.openplanner.team/stops/X746adb", "https://tec.openplanner.team/stops/X746aka"], ["https://tec.openplanner.team/stops/X747akb", "https://tec.openplanner.team/stops/X747ala"], ["https://tec.openplanner.team/stops/X604ahb", "https://tec.openplanner.team/stops/X625aga"], ["https://tec.openplanner.team/stops/Bitrbvo1", "https://tec.openplanner.team/stops/Bitrsar2"], ["https://tec.openplanner.team/stops/H4mb140a", "https://tec.openplanner.team/stops/H4mb142a"], ["https://tec.openplanner.team/stops/LLAeg--1", "https://tec.openplanner.team/stops/LLAeg--2"], ["https://tec.openplanner.team/stops/LsVbell1", "https://tec.openplanner.team/stops/LsVhupp1"], ["https://tec.openplanner.team/stops/N113afb", "https://tec.openplanner.team/stops/N114aab"], ["https://tec.openplanner.team/stops/N219abb", "https://tec.openplanner.team/stops/N219aeb"], ["https://tec.openplanner.team/stops/Lrocort2", "https://tec.openplanner.team/stops/Lronamo1"], ["https://tec.openplanner.team/stops/H1th180a", "https://tec.openplanner.team/stops/H1th182a"], ["https://tec.openplanner.team/stops/Blinbru1", "https://tec.openplanner.team/stops/Brach121"], ["https://tec.openplanner.team/stops/Blmlbif1", "https://tec.openplanner.team/stops/Brixpbs2"], ["https://tec.openplanner.team/stops/Bgzdgpa2", "https://tec.openplanner.team/stops/Bgzdgst1"], ["https://tec.openplanner.team/stops/H4mt219b", "https://tec.openplanner.team/stops/H4mx118a"], ["https://tec.openplanner.team/stops/X734aca", "https://tec.openplanner.team/stops/X734acb"], ["https://tec.openplanner.team/stops/Lhrmilm1", "https://tec.openplanner.team/stops/Lhrrhee*"], ["https://tec.openplanner.team/stops/X671abb", "https://tec.openplanner.team/stops/X671acb"], ["https://tec.openplanner.team/stops/Lsteduc2", "https://tec.openplanner.team/stops/Lstphys2"], ["https://tec.openplanner.team/stops/Llglair1", "https://tec.openplanner.team/stops/Llglair2"], ["https://tec.openplanner.team/stops/N501lra", "https://tec.openplanner.team/stops/N501lrb"], ["https://tec.openplanner.team/stops/Bbch4br1", "https://tec.openplanner.team/stops/Bbch4br2"], ["https://tec.openplanner.team/stops/N501iob", "https://tec.openplanner.team/stops/N501irb"], ["https://tec.openplanner.team/stops/Cmlfeba1", "https://tec.openplanner.team/stops/Cmlfeba2"], ["https://tec.openplanner.team/stops/LmImirf1", "https://tec.openplanner.team/stops/LmImirf2"], ["https://tec.openplanner.team/stops/LJEchat1", "https://tec.openplanner.team/stops/LJEchat2"], ["https://tec.openplanner.team/stops/Ctarpoi2", "https://tec.openplanner.team/stops/N543boa"], ["https://tec.openplanner.team/stops/X804bpa", "https://tec.openplanner.team/stops/X804bqa"], ["https://tec.openplanner.team/stops/H4pl116a", "https://tec.openplanner.team/stops/H4pl136a"], ["https://tec.openplanner.team/stops/NL37aja", "https://tec.openplanner.team/stops/NL74ajb"], ["https://tec.openplanner.team/stops/Bbghsta1", "https://tec.openplanner.team/stops/Bstesar1"], ["https://tec.openplanner.team/stops/H1ni319a", "https://tec.openplanner.team/stops/H1ni319b"], ["https://tec.openplanner.team/stops/LHanest1", "https://tec.openplanner.team/stops/LHarenn2"], ["https://tec.openplanner.team/stops/Lhrmura1", "https://tec.openplanner.team/stops/Lhrvert1"], ["https://tec.openplanner.team/stops/LCSfagn1", "https://tec.openplanner.team/stops/LENengi2"], ["https://tec.openplanner.team/stops/Bmrshan1", "https://tec.openplanner.team/stops/Bmrswag2"], ["https://tec.openplanner.team/stops/N524aja", "https://tec.openplanner.team/stops/N524ajb"], ["https://tec.openplanner.team/stops/Lmieg--2", "https://tec.openplanner.team/stops/Lmigare2"], ["https://tec.openplanner.team/stops/N501avb", "https://tec.openplanner.team/stops/N501daa"], ["https://tec.openplanner.team/stops/Crclorc1", "https://tec.openplanner.team/stops/Crcpcom2"], ["https://tec.openplanner.team/stops/Lenauln2", "https://tec.openplanner.team/stops/Lvelieg2"], ["https://tec.openplanner.team/stops/H1sd344a", "https://tec.openplanner.team/stops/H1sd366b"], ["https://tec.openplanner.team/stops/Ldihvce2", "https://tec.openplanner.team/stops/Ldipl--4"], ["https://tec.openplanner.team/stops/LJAherb3", "https://tec.openplanner.team/stops/LJAherb4"], ["https://tec.openplanner.team/stops/LESmich1", "https://tec.openplanner.team/stops/LTIcime1"], ["https://tec.openplanner.team/stops/Cprcits1", "https://tec.openplanner.team/stops/Cprsapv1"], ["https://tec.openplanner.team/stops/X664aaa", "https://tec.openplanner.team/stops/X667aca"], ["https://tec.openplanner.team/stops/X663ana", "https://tec.openplanner.team/stops/X663aqb"], ["https://tec.openplanner.team/stops/LhLbalt2", "https://tec.openplanner.team/stops/LmNsied2"], ["https://tec.openplanner.team/stops/N532aba", "https://tec.openplanner.team/stops/N532aib"], ["https://tec.openplanner.team/stops/Ccupomp1", "https://tec.openplanner.team/stops/Cpicite2"], ["https://tec.openplanner.team/stops/Bchgflo1", "https://tec.openplanner.team/stops/Blonegl2"], ["https://tec.openplanner.team/stops/N236afb", "https://tec.openplanner.team/stops/N570agb"], ["https://tec.openplanner.team/stops/H1hr117a", "https://tec.openplanner.team/stops/H1hr128b"], ["https://tec.openplanner.team/stops/Bbeagae1", "https://tec.openplanner.team/stops/Bmlncha2"], ["https://tec.openplanner.team/stops/X837aab", "https://tec.openplanner.team/stops/X839agb"], ["https://tec.openplanner.team/stops/Bhaldbo1", "https://tec.openplanner.team/stops/Bspkbeu2"], ["https://tec.openplanner.team/stops/Llgfont1", "https://tec.openplanner.team/stops/Llgwesp1"], ["https://tec.openplanner.team/stops/X802aea", "https://tec.openplanner.team/stops/X802aeb"], ["https://tec.openplanner.team/stops/Cmaegal1", "https://tec.openplanner.team/stops/Cmaegal2"], ["https://tec.openplanner.team/stops/H3so168b", "https://tec.openplanner.team/stops/H3so176a"], ["https://tec.openplanner.team/stops/Bbldmun1", "https://tec.openplanner.team/stops/Bnetrec1"], ["https://tec.openplanner.team/stops/H4ob109a", "https://tec.openplanner.team/stops/H4ob110a"], ["https://tec.openplanner.team/stops/H3so154a", "https://tec.openplanner.team/stops/H3so168b"], ["https://tec.openplanner.team/stops/Lvtcalv1", "https://tec.openplanner.team/stops/Lvteg--2"], ["https://tec.openplanner.team/stops/N874aja", "https://tec.openplanner.team/stops/N874aka"], ["https://tec.openplanner.team/stops/LVkchap1", "https://tec.openplanner.team/stops/LVkinst1"], ["https://tec.openplanner.team/stops/X661bba", "https://tec.openplanner.team/stops/X672aba"], ["https://tec.openplanner.team/stops/LWApt--1", "https://tec.openplanner.team/stops/LWAvand2"], ["https://tec.openplanner.team/stops/LHChoek3", "https://tec.openplanner.team/stops/LHChoof3"], ["https://tec.openplanner.team/stops/H4jm116a", "https://tec.openplanner.team/stops/H4we136a"], ["https://tec.openplanner.team/stops/LAMhopi3", "https://tec.openplanner.team/stops/LAMjaur1"], ["https://tec.openplanner.team/stops/Lbooffe1", "https://tec.openplanner.team/stops/Lbosart1"], ["https://tec.openplanner.team/stops/Cpthaud1", "https://tec.openplanner.team/stops/Cptrebe1"], ["https://tec.openplanner.team/stops/X991acb", "https://tec.openplanner.team/stops/X993aab"], ["https://tec.openplanner.team/stops/X647aab", "https://tec.openplanner.team/stops/X648aba"], ["https://tec.openplanner.team/stops/Cdagoss2", "https://tec.openplanner.team/stops/CMprov2"], ["https://tec.openplanner.team/stops/X801ceb", "https://tec.openplanner.team/stops/X801cfa"], ["https://tec.openplanner.team/stops/Bwaveur1", "https://tec.openplanner.team/stops/Bwaveur2"], ["https://tec.openplanner.team/stops/N501ana", "https://tec.openplanner.team/stops/N501ncb"], ["https://tec.openplanner.team/stops/Lvomoul2", "https://tec.openplanner.team/stops/Lvopaqu2"], ["https://tec.openplanner.team/stops/N211ana", "https://tec.openplanner.team/stops/N211ayb"], ["https://tec.openplanner.team/stops/N425afa", "https://tec.openplanner.team/stops/N425afb"], ["https://tec.openplanner.team/stops/N553ama", "https://tec.openplanner.team/stops/N553aqa"], ["https://tec.openplanner.team/stops/N894abb", "https://tec.openplanner.team/stops/X887aaa"], ["https://tec.openplanner.team/stops/N115aca", "https://tec.openplanner.team/stops/N115acb"], ["https://tec.openplanner.team/stops/N101aob", "https://tec.openplanner.team/stops/N101apb"], ["https://tec.openplanner.team/stops/Lsnbure1", "https://tec.openplanner.team/stops/Ltiecch1"], ["https://tec.openplanner.team/stops/Lbocorn2", "https://tec.openplanner.team/stops/Louvivi1"], ["https://tec.openplanner.team/stops/LOLfoss1", "https://tec.openplanner.team/stops/LSOchau1"], ["https://tec.openplanner.team/stops/X820aea", "https://tec.openplanner.team/stops/X820aeb"], ["https://tec.openplanner.team/stops/H1hr121d", "https://tec.openplanner.team/stops/H2pr114a"], ["https://tec.openplanner.team/stops/Ceregl2", "https://tec.openplanner.team/stops/Cerrver4"], ["https://tec.openplanner.team/stops/Lthfren2", "https://tec.openplanner.team/stops/Lthgros2"], ["https://tec.openplanner.team/stops/Lmlec--2", "https://tec.openplanner.team/stops/Lmlec--4"], ["https://tec.openplanner.team/stops/NL72aba", "https://tec.openplanner.team/stops/NL72abb"], ["https://tec.openplanner.team/stops/H1fv102a", "https://tec.openplanner.team/stops/H1ls106a"], ["https://tec.openplanner.team/stops/LMAgdfa2", "https://tec.openplanner.team/stops/LMAstei2"], ["https://tec.openplanner.team/stops/H4mo148b", "https://tec.openplanner.team/stops/H4mo182a"], ["https://tec.openplanner.team/stops/Bhptpla2", "https://tec.openplanner.team/stops/Broncli1"], ["https://tec.openplanner.team/stops/Clomari5", "https://tec.openplanner.team/stops/CMmari1"], ["https://tec.openplanner.team/stops/X725apa", "https://tec.openplanner.team/stops/X725apb"], ["https://tec.openplanner.team/stops/X638aja", "https://tec.openplanner.team/stops/X638ajb"], ["https://tec.openplanner.team/stops/H2ll267a", "https://tec.openplanner.team/stops/H2ll267b"], ["https://tec.openplanner.team/stops/LJAbois1", "https://tec.openplanner.team/stops/LJAbois2"], ["https://tec.openplanner.team/stops/X786aea", "https://tec.openplanner.team/stops/X786ajb"], ["https://tec.openplanner.team/stops/Bmarmpr1", "https://tec.openplanner.team/stops/Bmarmpr2"], ["https://tec.openplanner.team/stops/LGEvill1", "https://tec.openplanner.team/stops/LGEvill2"], ["https://tec.openplanner.team/stops/LSkdouf1", "https://tec.openplanner.team/stops/LSkrena2"], ["https://tec.openplanner.team/stops/LSIroch1", "https://tec.openplanner.team/stops/LSIvieu1"], ["https://tec.openplanner.team/stops/Cmqbasv1", "https://tec.openplanner.team/stops/Cmqn5911"], ["https://tec.openplanner.team/stops/H4br111a", "https://tec.openplanner.team/stops/H4pe127a"], ["https://tec.openplanner.team/stops/Lsedese1", "https://tec.openplanner.team/stops/Lseserv2"], ["https://tec.openplanner.team/stops/X836aea", "https://tec.openplanner.team/stops/X836afb"], ["https://tec.openplanner.team/stops/H1bo110a", "https://tec.openplanner.team/stops/H1bo112a"], ["https://tec.openplanner.team/stops/Cmlecha2", "https://tec.openplanner.team/stops/NC01ahb"], ["https://tec.openplanner.team/stops/N235afb", "https://tec.openplanner.team/stops/N235agb"], ["https://tec.openplanner.team/stops/X740aga", "https://tec.openplanner.team/stops/X912akb"], ["https://tec.openplanner.team/stops/X994afa", "https://tec.openplanner.team/stops/X995afa"], ["https://tec.openplanner.team/stops/LeUbell*", "https://tec.openplanner.team/stops/LeUmeie2"], ["https://tec.openplanner.team/stops/X804bsa", "https://tec.openplanner.team/stops/X804bsb"], ["https://tec.openplanner.team/stops/X658aea", "https://tec.openplanner.team/stops/X658aeb"], ["https://tec.openplanner.team/stops/H1sb149a", "https://tec.openplanner.team/stops/H1sb150b"], ["https://tec.openplanner.team/stops/H1fr117b", "https://tec.openplanner.team/stops/H1fr151b"], ["https://tec.openplanner.team/stops/H4mo190a", "https://tec.openplanner.team/stops/H4mo207a"], ["https://tec.openplanner.team/stops/Brsgece1", "https://tec.openplanner.team/stops/Brsgleq1"], ["https://tec.openplanner.team/stops/H1gh143a", "https://tec.openplanner.team/stops/H1gh171a"], ["https://tec.openplanner.team/stops/Bwategl1", "https://tec.openplanner.team/stops/Bwategl2"], ["https://tec.openplanner.team/stops/X736agb", "https://tec.openplanner.team/stops/X753abc"], ["https://tec.openplanner.team/stops/LlOkreu1", "https://tec.openplanner.team/stops/LlOpfar1"], ["https://tec.openplanner.team/stops/LCPcomb1", "https://tec.openplanner.team/stops/LCPlebl2"], ["https://tec.openplanner.team/stops/N204ahb", "https://tec.openplanner.team/stops/N204aka"], ["https://tec.openplanner.team/stops/Lsn130-2", "https://tec.openplanner.team/stops/Lsn184-1"], ["https://tec.openplanner.team/stops/Lbrddef3", "https://tec.openplanner.team/stops/Lbrddef4"], ["https://tec.openplanner.team/stops/H1fl133d", "https://tec.openplanner.team/stops/H1je223a"], ["https://tec.openplanner.team/stops/N509bdb", "https://tec.openplanner.team/stops/N509bea"], ["https://tec.openplanner.team/stops/N109acb", "https://tec.openplanner.team/stops/N122aaa"], ["https://tec.openplanner.team/stops/H4ir165a", "https://tec.openplanner.team/stops/H5at120a"], ["https://tec.openplanner.team/stops/Cmldupu1", "https://tec.openplanner.team/stops/NC01afa"], ["https://tec.openplanner.team/stops/X637abb", "https://tec.openplanner.team/stops/X637aqa"], ["https://tec.openplanner.team/stops/N118aab", "https://tec.openplanner.team/stops/N118aib"], ["https://tec.openplanner.team/stops/Lalbout1", "https://tec.openplanner.team/stops/Lalparc2"], ["https://tec.openplanner.team/stops/LAVdepr1", "https://tec.openplanner.team/stops/LVPduvi2"], ["https://tec.openplanner.team/stops/N501mta", "https://tec.openplanner.team/stops/N501mtb"], ["https://tec.openplanner.team/stops/X992aad", "https://tec.openplanner.team/stops/X992ajb"], ["https://tec.openplanner.team/stops/Bjodeco3", "https://tec.openplanner.team/stops/Bjodrrg2"], ["https://tec.openplanner.team/stops/Lougare3", "https://tec.openplanner.team/stops/Louoran1"], ["https://tec.openplanner.team/stops/Bhevgar1", "https://tec.openplanner.team/stops/Bhevgar2"], ["https://tec.openplanner.team/stops/Bflegar6", "https://tec.openplanner.team/stops/Cflbrun2"], ["https://tec.openplanner.team/stops/Crccano4", "https://tec.openplanner.team/stops/Crcrwas1"], ["https://tec.openplanner.team/stops/Clgmaco2", "https://tec.openplanner.team/stops/Ctisar1"], ["https://tec.openplanner.team/stops/N308asa", "https://tec.openplanner.team/stops/N308ayb"], ["https://tec.openplanner.team/stops/LMvgare1", "https://tec.openplanner.team/stops/LMvgare2"], ["https://tec.openplanner.team/stops/X615bia", "https://tec.openplanner.team/stops/X681aca"], ["https://tec.openplanner.team/stops/Bdlmegl2", "https://tec.openplanner.team/stops/Bdvmsar2"], ["https://tec.openplanner.team/stops/LRmkult1", "https://tec.openplanner.team/stops/LRmkult2"], ["https://tec.openplanner.team/stops/X768aaa", "https://tec.openplanner.team/stops/X768abb"], ["https://tec.openplanner.team/stops/N114aab", "https://tec.openplanner.team/stops/X317aab"], ["https://tec.openplanner.team/stops/N308aea", "https://tec.openplanner.team/stops/N308agb"], ["https://tec.openplanner.team/stops/Bmlnpab1", "https://tec.openplanner.team/stops/Bptbbie1"], ["https://tec.openplanner.team/stops/X925ada", "https://tec.openplanner.team/stops/X925ama"], ["https://tec.openplanner.team/stops/N501eab", "https://tec.openplanner.team/stops/N501epa"], ["https://tec.openplanner.team/stops/H5rx100a", "https://tec.openplanner.team/stops/H5rx100b"], ["https://tec.openplanner.team/stops/LmIzent1", "https://tec.openplanner.team/stops/LvAschw1"], ["https://tec.openplanner.team/stops/Llgbour2", "https://tec.openplanner.team/stops/Lscpamp2"], ["https://tec.openplanner.team/stops/H4og206a", "https://tec.openplanner.team/stops/H4og213a"], ["https://tec.openplanner.team/stops/H4ty272b", "https://tec.openplanner.team/stops/H4ty320b"], ["https://tec.openplanner.team/stops/LOMware1", "https://tec.openplanner.team/stops/LTOcime2"], ["https://tec.openplanner.team/stops/N135ayb", "https://tec.openplanner.team/stops/N135bgb"], ["https://tec.openplanner.team/stops/Llgnico*", "https://tec.openplanner.team/stops/Llgsnap1"], ["https://tec.openplanner.team/stops/N501bfy", "https://tec.openplanner.team/stops/N501nbb"], ["https://tec.openplanner.team/stops/H2gy101a", "https://tec.openplanner.team/stops/H2gy106b"], ["https://tec.openplanner.team/stops/H1mr123a", "https://tec.openplanner.team/stops/H1mr124a"], ["https://tec.openplanner.team/stops/Bpielom1", "https://tec.openplanner.team/stops/Bsjgmil2"], ["https://tec.openplanner.team/stops/Lvegend1", "https://tec.openplanner.team/stops/Lvelobe2"], ["https://tec.openplanner.team/stops/Cflchel1", "https://tec.openplanner.team/stops/Cflchel3"], ["https://tec.openplanner.team/stops/X342ada", "https://tec.openplanner.team/stops/X342aga"], ["https://tec.openplanner.team/stops/N532aga", "https://tec.openplanner.team/stops/N532agb"], ["https://tec.openplanner.team/stops/LSShous1", "https://tec.openplanner.team/stops/LSSvill2"], ["https://tec.openplanner.team/stops/X769ala", "https://tec.openplanner.team/stops/X769amb"], ["https://tec.openplanner.team/stops/Lmitech2", "https://tec.openplanner.team/stops/Lvtchpl4"], ["https://tec.openplanner.team/stops/N215acc", "https://tec.openplanner.team/stops/N232cea"], ["https://tec.openplanner.team/stops/H5is168b", "https://tec.openplanner.team/stops/H5is171b"], ["https://tec.openplanner.team/stops/H4ty299c", "https://tec.openplanner.team/stops/H4wc372b"], ["https://tec.openplanner.team/stops/H4fa124b", "https://tec.openplanner.team/stops/H4ms146a"], ["https://tec.openplanner.team/stops/Lmibove2", "https://tec.openplanner.team/stops/Lmibove3"], ["https://tec.openplanner.team/stops/H3lr116b", "https://tec.openplanner.team/stops/H3lr120a"], ["https://tec.openplanner.team/stops/X748abb", "https://tec.openplanner.team/stops/X748afa"], ["https://tec.openplanner.team/stops/N521ala", "https://tec.openplanner.team/stops/N527afa"], ["https://tec.openplanner.team/stops/X724aba", "https://tec.openplanner.team/stops/X724acb"], ["https://tec.openplanner.team/stops/H2ch110b", "https://tec.openplanner.team/stops/H2ch121b"], ["https://tec.openplanner.team/stops/N584aga", "https://tec.openplanner.team/stops/N584cac"], ["https://tec.openplanner.team/stops/LaAgold1", "https://tec.openplanner.team/stops/LaAronh2"], ["https://tec.openplanner.team/stops/H2pe163b", "https://tec.openplanner.team/stops/H2sv217a"], ["https://tec.openplanner.team/stops/LCPcomp2", "https://tec.openplanner.team/stops/LCPlebl2"], ["https://tec.openplanner.team/stops/LGmloti2", "https://tec.openplanner.team/stops/LMAbell1"], ["https://tec.openplanner.team/stops/H1cv101b", "https://tec.openplanner.team/stops/H1cv103b"], ["https://tec.openplanner.team/stops/Ctrchat2", "https://tec.openplanner.team/stops/H2tz115b"], ["https://tec.openplanner.team/stops/LJelava1", "https://tec.openplanner.team/stops/LJelava2"], ["https://tec.openplanner.team/stops/N531ajb", "https://tec.openplanner.team/stops/N534blh"], ["https://tec.openplanner.team/stops/H4co107a", "https://tec.openplanner.team/stops/H4co144a"], ["https://tec.openplanner.team/stops/H3go104a", "https://tec.openplanner.team/stops/H3lr116a"], ["https://tec.openplanner.team/stops/Lbhfaye1", "https://tec.openplanner.team/stops/Lbhfaye2"], ["https://tec.openplanner.team/stops/Bblaece2", "https://tec.openplanner.team/stops/Bblapri2"], ["https://tec.openplanner.team/stops/H1by108a", "https://tec.openplanner.team/stops/H1by108d"], ["https://tec.openplanner.team/stops/Baudstr1", "https://tec.openplanner.team/stops/Baudtri1"], ["https://tec.openplanner.team/stops/Llgdart2", "https://tec.openplanner.team/stops/Llgdart4"], ["https://tec.openplanner.team/stops/X757aic", "https://tec.openplanner.team/stops/X757aja"], ["https://tec.openplanner.team/stops/X922ahb", "https://tec.openplanner.team/stops/X923aaa"], ["https://tec.openplanner.team/stops/LLbbons1", "https://tec.openplanner.team/stops/LRcjard2"], ["https://tec.openplanner.team/stops/Bnetrbr2", "https://tec.openplanner.team/stops/Bnetrec1"], ["https://tec.openplanner.team/stops/LGlcarr1", "https://tec.openplanner.team/stops/LGlcarr2"], ["https://tec.openplanner.team/stops/X637akb", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/NL57aia", "https://tec.openplanner.team/stops/NL57aib"], ["https://tec.openplanner.team/stops/H4co144a", "https://tec.openplanner.team/stops/H4co158a"], ["https://tec.openplanner.team/stops/LJelava2", "https://tec.openplanner.team/stops/LMOstat2"], ["https://tec.openplanner.team/stops/Bmalsmc1", "https://tec.openplanner.team/stops/Bmalsme1"], ["https://tec.openplanner.team/stops/N347agb", "https://tec.openplanner.team/stops/X347aaa"], ["https://tec.openplanner.team/stops/LXomc--4", "https://tec.openplanner.team/stops/LXopier2"], ["https://tec.openplanner.team/stops/X695aea", "https://tec.openplanner.team/stops/X695aka"], ["https://tec.openplanner.team/stops/LLevaux2", "https://tec.openplanner.team/stops/X561aba"], ["https://tec.openplanner.team/stops/H4bc101a", "https://tec.openplanner.team/stops/H4tu170a"], ["https://tec.openplanner.team/stops/LjeGRPMA", "https://tec.openplanner.team/stops/Ljelamb1"], ["https://tec.openplanner.team/stops/Cjufrat2", "https://tec.openplanner.team/stops/Clogfay2"], ["https://tec.openplanner.team/stops/H5wo122a", "https://tec.openplanner.team/stops/H5wo133a"], ["https://tec.openplanner.team/stops/NB33aja", "https://tec.openplanner.team/stops/NB33ajb"], ["https://tec.openplanner.team/stops/Lcchala1", "https://tec.openplanner.team/stops/Lcchala2"], ["https://tec.openplanner.team/stops/Lemhenn2", "https://tec.openplanner.team/stops/Lemmusc2"], ["https://tec.openplanner.team/stops/X879abb", "https://tec.openplanner.team/stops/X879acb"], ["https://tec.openplanner.team/stops/LBSnouw1", "https://tec.openplanner.team/stops/LRGpt5-3"], ["https://tec.openplanner.team/stops/H1fr125b", "https://tec.openplanner.team/stops/H1lb138a"], ["https://tec.openplanner.team/stops/X601aba", "https://tec.openplanner.team/stops/X601aca"], ["https://tec.openplanner.team/stops/H4po125b", "https://tec.openplanner.team/stops/H4po128b"], ["https://tec.openplanner.team/stops/LSInd--2", "https://tec.openplanner.team/stops/LSIroch2"], ["https://tec.openplanner.team/stops/X817aba", "https://tec.openplanner.team/stops/X817abb"], ["https://tec.openplanner.team/stops/Cthathe1", "https://tec.openplanner.team/stops/Cthgend2"], ["https://tec.openplanner.team/stops/H1gr111a", "https://tec.openplanner.team/stops/H1hr117a"], ["https://tec.openplanner.team/stops/N150aca", "https://tec.openplanner.team/stops/N150aec"], ["https://tec.openplanner.team/stops/LWOcour2", "https://tec.openplanner.team/stops/LWOruis2"], ["https://tec.openplanner.team/stops/Cmlpche1", "https://tec.openplanner.team/stops/Cmltomb1"], ["https://tec.openplanner.team/stops/LSGcolo2", "https://tec.openplanner.team/stops/LSkathe2"], ["https://tec.openplanner.team/stops/X818aba", "https://tec.openplanner.team/stops/X818abb"], ["https://tec.openplanner.team/stops/Cmmami1", "https://tec.openplanner.team/stops/Cmmami2"], ["https://tec.openplanner.team/stops/NL80aab", "https://tec.openplanner.team/stops/NL80abb"], ["https://tec.openplanner.team/stops/NC14aub", "https://tec.openplanner.team/stops/NC14avb"], ["https://tec.openplanner.team/stops/N115aba", "https://tec.openplanner.team/stops/N115aca"], ["https://tec.openplanner.team/stops/X666aea", "https://tec.openplanner.team/stops/X666aga"], ["https://tec.openplanner.team/stops/LLTtour1", "https://tec.openplanner.team/stops/LLTtour2"], ["https://tec.openplanner.team/stops/Lpevove1", "https://tec.openplanner.team/stops/Lpevove2"], ["https://tec.openplanner.team/stops/Bnivmon1", "https://tec.openplanner.team/stops/Bnivmon2"], ["https://tec.openplanner.team/stops/Bhmmmon1", "https://tec.openplanner.team/stops/Bhmmpos1"], ["https://tec.openplanner.team/stops/LMgkrui2", "https://tec.openplanner.team/stops/LMgwith2"], ["https://tec.openplanner.team/stops/Lancoop1", "https://tec.openplanner.team/stops/Lanpast1"], ["https://tec.openplanner.team/stops/N501fwb", "https://tec.openplanner.team/stops/N501hhb"], ["https://tec.openplanner.team/stops/X640amb", "https://tec.openplanner.team/stops/X640ava"], ["https://tec.openplanner.team/stops/Lpegole1", "https://tec.openplanner.team/stops/Lpeptwa2"], ["https://tec.openplanner.team/stops/N501jdb", "https://tec.openplanner.team/stops/N501jeb"], ["https://tec.openplanner.team/stops/LOccarr1", "https://tec.openplanner.team/stops/NL35add"], ["https://tec.openplanner.team/stops/H1by103b", "https://tec.openplanner.team/stops/H1by108d"], ["https://tec.openplanner.team/stops/N217ada", "https://tec.openplanner.team/stops/N217aeb"], ["https://tec.openplanner.team/stops/H4ka175a", "https://tec.openplanner.team/stops/H4ob108b"], ["https://tec.openplanner.team/stops/H3go102a", "https://tec.openplanner.team/stops/H3go104b"], ["https://tec.openplanner.team/stops/X637ala", "https://tec.openplanner.team/stops/X637amb"], ["https://tec.openplanner.team/stops/X826ada", "https://tec.openplanner.team/stops/X826aea"], ["https://tec.openplanner.team/stops/LLYcalv2", "https://tec.openplanner.team/stops/LLYchpl2"], ["https://tec.openplanner.team/stops/Lvtauna2", "https://tec.openplanner.team/stops/Lvtpata2"], ["https://tec.openplanner.team/stops/LBTchai2", "https://tec.openplanner.team/stops/LBTchai4"], ["https://tec.openplanner.team/stops/X724adb", "https://tec.openplanner.team/stops/X724aib"], ["https://tec.openplanner.team/stops/H2gy101b", "https://tec.openplanner.team/stops/H2se105a"], ["https://tec.openplanner.team/stops/Ccoha601", "https://tec.openplanner.team/stops/Ctrepin1"], ["https://tec.openplanner.team/stops/H2jo163c", "https://tec.openplanner.team/stops/H2lh126b"], ["https://tec.openplanner.team/stops/Lcebail2", "https://tec.openplanner.team/stops/Lceleje2"], ["https://tec.openplanner.team/stops/N507aha", "https://tec.openplanner.team/stops/N507ahb"], ["https://tec.openplanner.team/stops/Lsebrun3", "https://tec.openplanner.team/stops/Lsepuit1"], ["https://tec.openplanner.team/stops/H1he100a", "https://tec.openplanner.team/stops/H1qv111b"], ["https://tec.openplanner.team/stops/H4ty273c", "https://tec.openplanner.team/stops/H4ty359a"], ["https://tec.openplanner.team/stops/H4ob108b", "https://tec.openplanner.team/stops/H4rc234a"], ["https://tec.openplanner.team/stops/LERboss1", "https://tec.openplanner.team/stops/LWberno2"], ["https://tec.openplanner.team/stops/N106aia", "https://tec.openplanner.team/stops/N106akb"], ["https://tec.openplanner.team/stops/X396aeb", "https://tec.openplanner.team/stops/X397aba"], ["https://tec.openplanner.team/stops/X754aca", "https://tec.openplanner.team/stops/X754acb"], ["https://tec.openplanner.team/stops/H1nm141b", "https://tec.openplanner.team/stops/H4gr111b"], ["https://tec.openplanner.team/stops/X736aca", "https://tec.openplanner.team/stops/X953aaa"], ["https://tec.openplanner.team/stops/Cmmp2051", "https://tec.openplanner.team/stops/Cmmptno2"], ["https://tec.openplanner.team/stops/X901aia", "https://tec.openplanner.team/stops/X901bga"], ["https://tec.openplanner.team/stops/Bcbqcha1", "https://tec.openplanner.team/stops/Bcbqcoi2"], ["https://tec.openplanner.team/stops/N542aab", "https://tec.openplanner.team/stops/N542acb"], ["https://tec.openplanner.team/stops/H2ll186b", "https://tec.openplanner.team/stops/H2ll198a"], ["https://tec.openplanner.team/stops/X899aia", "https://tec.openplanner.team/stops/X899aib"], ["https://tec.openplanner.team/stops/Lrafusi1", "https://tec.openplanner.team/stops/Lrafusi2"], ["https://tec.openplanner.team/stops/LeYheid1", "https://tec.openplanner.team/stops/LeYwess2"], ["https://tec.openplanner.team/stops/Cmlceri2", "https://tec.openplanner.team/stops/Cmmami1"], ["https://tec.openplanner.team/stops/Cbcegli3", "https://tec.openplanner.team/stops/Cbcha652"], ["https://tec.openplanner.team/stops/Ljhheus2", "https://tec.openplanner.team/stops/Ljhmany2"], ["https://tec.openplanner.team/stops/N527aaa", "https://tec.openplanner.team/stops/N533apa"], ["https://tec.openplanner.team/stops/N138afa", "https://tec.openplanner.team/stops/N138aga"], ["https://tec.openplanner.team/stops/Bsoihci2", "https://tec.openplanner.team/stops/H3so172a"], ["https://tec.openplanner.team/stops/N163aba", "https://tec.openplanner.team/stops/N569amb"], ["https://tec.openplanner.team/stops/X870ada", "https://tec.openplanner.team/stops/X880acb"], ["https://tec.openplanner.team/stops/X801bja", "https://tec.openplanner.team/stops/X801cgb"], ["https://tec.openplanner.team/stops/LDAcite2", "https://tec.openplanner.team/stops/LRIcite2"], ["https://tec.openplanner.team/stops/N103aaa", "https://tec.openplanner.team/stops/N152aac"], ["https://tec.openplanner.team/stops/LBsoha-1", "https://tec.openplanner.team/stops/NL73aea"], ["https://tec.openplanner.team/stops/N501irb", "https://tec.openplanner.team/stops/N501ixc"], ["https://tec.openplanner.team/stops/H4cw104a", "https://tec.openplanner.team/stops/H4cw105a"], ["https://tec.openplanner.team/stops/LNHbarr2", "https://tec.openplanner.team/stops/LNHhome2"], ["https://tec.openplanner.team/stops/N106aaa", "https://tec.openplanner.team/stops/N137aca"], ["https://tec.openplanner.team/stops/Lmleg--2", "https://tec.openplanner.team/stops/Lmlhaut1"], ["https://tec.openplanner.team/stops/Lsmeg--1", "https://tec.openplanner.team/stops/Lsmlina2"], ["https://tec.openplanner.team/stops/Cjurogi1", "https://tec.openplanner.team/stops/Cjurogi2"], ["https://tec.openplanner.team/stops/Cslbhau1", "https://tec.openplanner.team/stops/Cslegli1"], ["https://tec.openplanner.team/stops/X627ada", "https://tec.openplanner.team/stops/X630ada"], ["https://tec.openplanner.team/stops/Ljuchaf2", "https://tec.openplanner.team/stops/Ljuhava2"], ["https://tec.openplanner.team/stops/LWecarr1", "https://tec.openplanner.team/stops/LWevalf1"], ["https://tec.openplanner.team/stops/LFTec--2", "https://tec.openplanner.team/stops/LWZponh1"], ["https://tec.openplanner.team/stops/Btubmar2", "https://tec.openplanner.team/stops/Btubnco1"], ["https://tec.openplanner.team/stops/N553aab", "https://tec.openplanner.team/stops/N553aja"], ["https://tec.openplanner.team/stops/Bcbqcht1", "https://tec.openplanner.team/stops/Bcbqp252"], ["https://tec.openplanner.team/stops/N553aha", "https://tec.openplanner.team/stops/N553aqb"], ["https://tec.openplanner.team/stops/Bmrlsau1", "https://tec.openplanner.team/stops/NR21ahb"], ["https://tec.openplanner.team/stops/Llgphol1", "https://tec.openplanner.team/stops/Llgtcha1"], ["https://tec.openplanner.team/stops/Lsebove2", "https://tec.openplanner.team/stops/Lseecol1"], ["https://tec.openplanner.team/stops/X824aja", "https://tec.openplanner.team/stops/X824ala"], ["https://tec.openplanner.team/stops/Bhenron2", "https://tec.openplanner.team/stops/Bquecge2"], ["https://tec.openplanner.team/stops/LmDdenk1", "https://tec.openplanner.team/stops/LmDkape1"], ["https://tec.openplanner.team/stops/LLrchat1", "https://tec.openplanner.team/stops/LLrhaut3"], ["https://tec.openplanner.team/stops/Bjodtpo2", "https://tec.openplanner.team/stops/Bpiejus2"], ["https://tec.openplanner.team/stops/X601bra", "https://tec.openplanner.team/stops/X601bza"], ["https://tec.openplanner.team/stops/N547amb", "https://tec.openplanner.team/stops/N548aab"], ["https://tec.openplanner.team/stops/LRRecdu2", "https://tec.openplanner.team/stops/LRRlimi2"], ["https://tec.openplanner.team/stops/Barcast1", "https://tec.openplanner.team/stops/Bgzdn251"], ["https://tec.openplanner.team/stops/N533aga", "https://tec.openplanner.team/stops/N533aia"], ["https://tec.openplanner.team/stops/LREgrot1", "https://tec.openplanner.team/stops/LREgrot4"], ["https://tec.openplanner.team/stops/Cmmlong1", "https://tec.openplanner.team/stops/Cmmpjou3"], ["https://tec.openplanner.team/stops/Barchoc2", "https://tec.openplanner.team/stops/Bgzdgli1"], ["https://tec.openplanner.team/stops/N532aha", "https://tec.openplanner.team/stops/N532ahb"], ["https://tec.openplanner.team/stops/LCEboll1", "https://tec.openplanner.team/stops/LCEboll2"], ["https://tec.openplanner.team/stops/N331aca", "https://tec.openplanner.team/stops/N331acb"], ["https://tec.openplanner.team/stops/LrAtitf1", "https://tec.openplanner.team/stops/LrAtitf2"], ["https://tec.openplanner.team/stops/LRccent2", "https://tec.openplanner.team/stops/LRfcent1"], ["https://tec.openplanner.team/stops/LAyabri1", "https://tec.openplanner.team/stops/LAyegli2"], ["https://tec.openplanner.team/stops/X804aba", "https://tec.openplanner.team/stops/X804abb"], ["https://tec.openplanner.team/stops/LSIespe1", "https://tec.openplanner.team/stops/LSIespe2"], ["https://tec.openplanner.team/stops/Cmasncb1", "https://tec.openplanner.team/stops/Cmasncb2"], ["https://tec.openplanner.team/stops/Bwatras1", "https://tec.openplanner.team/stops/Bwatras2"], ["https://tec.openplanner.team/stops/Lprpous2", "https://tec.openplanner.team/stops/Lprtour1"], ["https://tec.openplanner.team/stops/X398agb", "https://tec.openplanner.team/stops/X999aub"], ["https://tec.openplanner.team/stops/N121aja", "https://tec.openplanner.team/stops/N121ajb"], ["https://tec.openplanner.team/stops/H4pp122a", "https://tec.openplanner.team/stops/H4ve134a"], ["https://tec.openplanner.team/stops/Bbonegl1", "https://tec.openplanner.team/stops/Bchgvil1"], ["https://tec.openplanner.team/stops/Crecouc1", "https://tec.openplanner.team/stops/Crefont1"], ["https://tec.openplanner.team/stops/H4an107a", "https://tec.openplanner.team/stops/H4ve140a"], ["https://tec.openplanner.team/stops/X717agd", "https://tec.openplanner.team/stops/X781ahb"], ["https://tec.openplanner.team/stops/X763aga", "https://tec.openplanner.team/stops/X763agb"], ["https://tec.openplanner.team/stops/H2mo143a", "https://tec.openplanner.team/stops/H2mo144a"], ["https://tec.openplanner.team/stops/H1ni320b", "https://tec.openplanner.team/stops/H1ni323a"], ["https://tec.openplanner.team/stops/H1cu114a", "https://tec.openplanner.team/stops/H1cu117b"], ["https://tec.openplanner.team/stops/Cmychpl2", "https://tec.openplanner.team/stops/Cmyland4"], ["https://tec.openplanner.team/stops/N556adb", "https://tec.openplanner.team/stops/N556afa"], ["https://tec.openplanner.team/stops/Clbchba2", "https://tec.openplanner.team/stops/Cthstre2"], ["https://tec.openplanner.team/stops/N533aea", "https://tec.openplanner.team/stops/N533aeb"], ["https://tec.openplanner.team/stops/X604aaa", "https://tec.openplanner.team/stops/X634aib"], ["https://tec.openplanner.team/stops/H4gu106b", "https://tec.openplanner.team/stops/H4gu107b"], ["https://tec.openplanner.team/stops/LNCchau1", "https://tec.openplanner.team/stops/LNCchau2"], ["https://tec.openplanner.team/stops/LWEeg--1", "https://tec.openplanner.team/stops/LWEpl--2"], ["https://tec.openplanner.team/stops/LFR201-1", "https://tec.openplanner.team/stops/LFR201-2"], ["https://tec.openplanner.team/stops/Blimegl1", "https://tec.openplanner.team/stops/Blimegl2"], ["https://tec.openplanner.team/stops/LJuhaie2", "https://tec.openplanner.team/stops/LMolone2"], ["https://tec.openplanner.team/stops/N988aca", "https://tec.openplanner.team/stops/X876aaa"], ["https://tec.openplanner.team/stops/Cwfdame1", "https://tec.openplanner.team/stops/Cwfmonu1"], ["https://tec.openplanner.team/stops/N353aaa", "https://tec.openplanner.team/stops/N353afb"], ["https://tec.openplanner.team/stops/H4ar101b", "https://tec.openplanner.team/stops/H4ar173b"], ["https://tec.openplanner.team/stops/LHCmonu2", "https://tec.openplanner.team/stops/LHMhof-1"], ["https://tec.openplanner.team/stops/X659afa", "https://tec.openplanner.team/stops/X659aga"], ["https://tec.openplanner.team/stops/LFChuis2", "https://tec.openplanner.team/stops/LFClage1"], ["https://tec.openplanner.team/stops/Clsferr1", "https://tec.openplanner.team/stops/Clshafa1"], ["https://tec.openplanner.team/stops/LRE154-2", "https://tec.openplanner.team/stops/LREhaut2"], ["https://tec.openplanner.team/stops/X801bia", "https://tec.openplanner.team/stops/X801bjb"], ["https://tec.openplanner.team/stops/N145aca", "https://tec.openplanner.team/stops/N145acb"], ["https://tec.openplanner.team/stops/LHEvign1", "https://tec.openplanner.team/stops/LJOferm1"], ["https://tec.openplanner.team/stops/Crbecol1", "https://tec.openplanner.team/stops/Crbegli1"], ["https://tec.openplanner.team/stops/X597aqa", "https://tec.openplanner.team/stops/X796afa"], ["https://tec.openplanner.team/stops/Bmarlor1", "https://tec.openplanner.team/stops/Bmartil1"], ["https://tec.openplanner.team/stops/N550amb", "https://tec.openplanner.team/stops/N565aab"], ["https://tec.openplanner.team/stops/LPbec--2", "https://tec.openplanner.team/stops/LPbeg--2"], ["https://tec.openplanner.team/stops/H4eh102b", "https://tec.openplanner.team/stops/H4wg121a"], ["https://tec.openplanner.team/stops/LkTdorf2", "https://tec.openplanner.team/stops/LkTkabi1"], ["https://tec.openplanner.team/stops/X663ata", "https://tec.openplanner.team/stops/X663aua"], ["https://tec.openplanner.team/stops/LOV62--1", "https://tec.openplanner.team/stops/LOVhetr2"], ["https://tec.openplanner.team/stops/LdElamb1", "https://tec.openplanner.team/stops/LmObahn*"], ["https://tec.openplanner.team/stops/H2pe157a", "https://tec.openplanner.team/stops/H2pe157b"], ["https://tec.openplanner.team/stops/H4mb138b", "https://tec.openplanner.team/stops/H4mb141a"], ["https://tec.openplanner.team/stops/N244axa", "https://tec.openplanner.team/stops/N252acd"], ["https://tec.openplanner.team/stops/LTRchpl2", "https://tec.openplanner.team/stops/LTRmosb1"], ["https://tec.openplanner.team/stops/N506awa", "https://tec.openplanner.team/stops/N506boa"], ["https://tec.openplanner.team/stops/LVIhv--2", "https://tec.openplanner.team/stops/LVIsouv3"], ["https://tec.openplanner.team/stops/LFPkape3", "https://tec.openplanner.team/stops/LFPknap2"], ["https://tec.openplanner.team/stops/X605abb", "https://tec.openplanner.team/stops/X605acb"], ["https://tec.openplanner.team/stops/Bhmmbog1", "https://tec.openplanner.team/stops/Btlgmee2"], ["https://tec.openplanner.team/stops/Cgzcver1", "https://tec.openplanner.team/stops/Cmygrbr3"], ["https://tec.openplanner.team/stops/LTamag1", "https://tec.openplanner.team/stops/LTamoul1"], ["https://tec.openplanner.team/stops/N211aka", "https://tec.openplanner.team/stops/N225aha"], ["https://tec.openplanner.team/stops/X979aea", "https://tec.openplanner.team/stops/X979aoa"], ["https://tec.openplanner.team/stops/N244apa", "https://tec.openplanner.team/stops/N244ata"], ["https://tec.openplanner.team/stops/N211adb", "https://tec.openplanner.team/stops/N211awb"], ["https://tec.openplanner.team/stops/LOMbrou1", "https://tec.openplanner.team/stops/LOMeg--1"], ["https://tec.openplanner.team/stops/Cmmramb2", "https://tec.openplanner.team/stops/Cmysncb1"], ["https://tec.openplanner.team/stops/LeSsaal*", "https://tec.openplanner.team/stops/LlEzoll1"], ["https://tec.openplanner.team/stops/N106aaa", "https://tec.openplanner.team/stops/N106aab"], ["https://tec.openplanner.team/stops/Cprcalv2", "https://tec.openplanner.team/stops/NC44aca"], ["https://tec.openplanner.team/stops/X806aba", "https://tec.openplanner.team/stops/X806abb"], ["https://tec.openplanner.team/stops/Bwatfon1", "https://tec.openplanner.team/stops/Bwatpct1"], ["https://tec.openplanner.team/stops/Bixleix1", "https://tec.openplanner.team/stops/Bixlfla1"], ["https://tec.openplanner.team/stops/Bbealou2", "https://tec.openplanner.team/stops/Bbeapim2"], ["https://tec.openplanner.team/stops/LLrc_ip4", "https://tec.openplanner.team/stops/LLrhest2"], ["https://tec.openplanner.team/stops/LWHtrui1", "https://tec.openplanner.team/stops/LWHwaas3"], ["https://tec.openplanner.team/stops/Clogfay1", "https://tec.openplanner.team/stops/Clojone1"], ["https://tec.openplanner.team/stops/Lbrddef3", "https://tec.openplanner.team/stops/Llggeer3"], ["https://tec.openplanner.team/stops/N548ahb", "https://tec.openplanner.team/stops/N548aia"], ["https://tec.openplanner.team/stops/H1mj127b", "https://tec.openplanner.team/stops/H1ml109a"], ["https://tec.openplanner.team/stops/LCPgare1", "https://tec.openplanner.team/stops/LCPpech5"], ["https://tec.openplanner.team/stops/Bmarcat2", "https://tec.openplanner.team/stops/Bmarfjo2"], ["https://tec.openplanner.team/stops/X923ana", "https://tec.openplanner.team/stops/X923aob"], ["https://tec.openplanner.team/stops/Lchsa631", "https://tec.openplanner.team/stops/Lrahoig1"], ["https://tec.openplanner.team/stops/H1em104a", "https://tec.openplanner.team/stops/H1em108a"], ["https://tec.openplanner.team/stops/Llgchar1", "https://tec.openplanner.team/stops/Llgpier2"], ["https://tec.openplanner.team/stops/LCFcarr1", "https://tec.openplanner.team/stops/LCFeg--2"], ["https://tec.openplanner.team/stops/Bwlhpmt2", "https://tec.openplanner.team/stops/Bwlhpmt4"], ["https://tec.openplanner.team/stops/Buccfja1", "https://tec.openplanner.team/stops/Buccrac2"], ["https://tec.openplanner.team/stops/N165aca", "https://tec.openplanner.team/stops/N166aca"], ["https://tec.openplanner.team/stops/X877abb", "https://tec.openplanner.team/stops/X877aha"], ["https://tec.openplanner.team/stops/LVIlore1", "https://tec.openplanner.team/stops/LVIsouv1"], ["https://tec.openplanner.team/stops/LLYchpl1", "https://tec.openplanner.team/stops/LTOcime1"], ["https://tec.openplanner.team/stops/LWahetr2", "https://tec.openplanner.team/stops/LWalyce2"], ["https://tec.openplanner.team/stops/H3so170b", "https://tec.openplanner.team/stops/H3so184b"], ["https://tec.openplanner.team/stops/LPLphar1", "https://tec.openplanner.team/stops/LPLphar2"], ["https://tec.openplanner.team/stops/H1el136a", "https://tec.openplanner.team/stops/H1hi124a"], ["https://tec.openplanner.team/stops/LTPplco1", "https://tec.openplanner.team/stops/LTPplco2"], ["https://tec.openplanner.team/stops/Bbrlmez1", "https://tec.openplanner.team/stops/Bbrlmez2"], ["https://tec.openplanner.team/stops/Brxmbos2", "https://tec.openplanner.team/stops/Brxmcha2"], ["https://tec.openplanner.team/stops/LjedTEC1", "https://tec.openplanner.team/stops/Lsetroq1"], ["https://tec.openplanner.team/stops/X640aea", "https://tec.openplanner.team/stops/X640aga"], ["https://tec.openplanner.team/stops/H1em101b", "https://tec.openplanner.team/stops/H1ev115a"], ["https://tec.openplanner.team/stops/Brixga11", "https://tec.openplanner.team/stops/Brixga12"], ["https://tec.openplanner.team/stops/X760aba", "https://tec.openplanner.team/stops/X760acb"], ["https://tec.openplanner.team/stops/Lchmarc1", "https://tec.openplanner.team/stops/Lchorme2"], ["https://tec.openplanner.team/stops/N568ada", "https://tec.openplanner.team/stops/N568aea"], ["https://tec.openplanner.team/stops/N534aeb", "https://tec.openplanner.team/stops/N534bpa"], ["https://tec.openplanner.team/stops/N340aea", "https://tec.openplanner.team/stops/N340agb"], ["https://tec.openplanner.team/stops/N155aja", "https://tec.openplanner.team/stops/N155ajb"], ["https://tec.openplanner.team/stops/LaMahof2", "https://tec.openplanner.team/stops/LmIcafe1"], ["https://tec.openplanner.team/stops/Cmohotv3", "https://tec.openplanner.team/stops/Cmorgof1"], ["https://tec.openplanner.team/stops/H1wg125b", "https://tec.openplanner.team/stops/H1wg126b"], ["https://tec.openplanner.team/stops/N251abb", "https://tec.openplanner.team/stops/N287aab"], ["https://tec.openplanner.team/stops/NC44aea", "https://tec.openplanner.team/stops/NC44afb"], ["https://tec.openplanner.team/stops/Bjdscnd2", "https://tec.openplanner.team/stops/Bjdsjso2"], ["https://tec.openplanner.team/stops/Lhracec2", "https://tec.openplanner.team/stops/Lhrespe1"], ["https://tec.openplanner.team/stops/Cci22ao1", "https://tec.openplanner.team/stops/Ccifies2"], ["https://tec.openplanner.team/stops/X721abb", "https://tec.openplanner.team/stops/X786aaa"], ["https://tec.openplanner.team/stops/Bmarcat1", "https://tec.openplanner.team/stops/N584ayb"], ["https://tec.openplanner.team/stops/N526aeb", "https://tec.openplanner.team/stops/N527aaa"], ["https://tec.openplanner.team/stops/Bmlncha1", "https://tec.openplanner.team/stops/Bmlnmbo2"], ["https://tec.openplanner.team/stops/Cchtiro3", "https://tec.openplanner.team/stops/CMtirou1"], ["https://tec.openplanner.team/stops/Cjxdesc1", "https://tec.openplanner.team/stops/Cjxetri1"], ["https://tec.openplanner.team/stops/LSZarbe1", "https://tec.openplanner.team/stops/LTgjalh1"], ["https://tec.openplanner.team/stops/N535acc", "https://tec.openplanner.team/stops/N535acd"], ["https://tec.openplanner.team/stops/H5at118a", "https://tec.openplanner.team/stops/H5at118b"], ["https://tec.openplanner.team/stops/LSG111-1", "https://tec.openplanner.team/stops/LSG172-1"], ["https://tec.openplanner.team/stops/Ldineuf2", "https://tec.openplanner.team/stops/Ldipiss2"], ["https://tec.openplanner.team/stops/LClbloc2", "https://tec.openplanner.team/stops/LThgare2"], ["https://tec.openplanner.team/stops/Cjudaxi2", "https://tec.openplanner.team/stops/Cjuphil2"], ["https://tec.openplanner.team/stops/LHApthe2", "https://tec.openplanner.team/stops/LHTboul1"], ["https://tec.openplanner.team/stops/LhMwing1", "https://tec.openplanner.team/stops/LhMwing2"], ["https://tec.openplanner.team/stops/H1he101a", "https://tec.openplanner.team/stops/H1he101b"], ["https://tec.openplanner.team/stops/X661aha", "https://tec.openplanner.team/stops/X661ahb"], ["https://tec.openplanner.team/stops/H1ba117b", "https://tec.openplanner.team/stops/H1te174a"], ["https://tec.openplanner.team/stops/Clb4dgi1", "https://tec.openplanner.team/stops/Clbecol2"], ["https://tec.openplanner.team/stops/LLrfagn1", "https://tec.openplanner.team/stops/LSMlier2"], ["https://tec.openplanner.team/stops/Bneeace2", "https://tec.openplanner.team/stops/Bneelaa2"], ["https://tec.openplanner.team/stops/Cfohopi2", "https://tec.openplanner.team/stops/Cfoperz1"], ["https://tec.openplanner.team/stops/N501mxb", "https://tec.openplanner.team/stops/N533aob"], ["https://tec.openplanner.team/stops/LOmvill1", "https://tec.openplanner.team/stops/LOmvill2"], ["https://tec.openplanner.team/stops/Bnstlna2", "https://tec.openplanner.team/stops/Bnstver1"], ["https://tec.openplanner.team/stops/LFIinse1", "https://tec.openplanner.team/stops/LFIinse2"], ["https://tec.openplanner.team/stops/N527adb", "https://tec.openplanner.team/stops/N527aea"], ["https://tec.openplanner.team/stops/X870acb", "https://tec.openplanner.team/stops/X870afb"], ["https://tec.openplanner.team/stops/Bwategb2", "https://tec.openplanner.team/stops/Bwatrte2"], ["https://tec.openplanner.team/stops/H1ag105b", "https://tec.openplanner.team/stops/H1ag106a"], ["https://tec.openplanner.team/stops/X925ama", "https://tec.openplanner.team/stops/X925amb"], ["https://tec.openplanner.team/stops/Lflmaxi3", "https://tec.openplanner.team/stops/Lflmaxi4"], ["https://tec.openplanner.team/stops/Cctecol1", "https://tec.openplanner.team/stops/Cctmine1"], ["https://tec.openplanner.team/stops/Cdasama2", "https://tec.openplanner.team/stops/CMsacm2"], ["https://tec.openplanner.team/stops/LHEches1", "https://tec.openplanner.team/stops/LHEecmo1"], ["https://tec.openplanner.team/stops/H2ll180b", "https://tec.openplanner.team/stops/H2ll192b"], ["https://tec.openplanner.team/stops/N534bxb", "https://tec.openplanner.team/stops/N561ada"], ["https://tec.openplanner.team/stops/X390apa", "https://tec.openplanner.team/stops/X992afb"], ["https://tec.openplanner.team/stops/Lmldama2", "https://tec.openplanner.team/stops/Lmlprie1"], ["https://tec.openplanner.team/stops/X757aga", "https://tec.openplanner.team/stops/X757alb"], ["https://tec.openplanner.team/stops/Blhunys2", "https://tec.openplanner.team/stops/Bohngen1"], ["https://tec.openplanner.team/stops/Cwfcast2", "https://tec.openplanner.team/stops/Cwfnamu2"], ["https://tec.openplanner.team/stops/Bhantui2", "https://tec.openplanner.team/stops/LBegare2"], ["https://tec.openplanner.team/stops/H4fa124a", "https://tec.openplanner.team/stops/H4fa127a"], ["https://tec.openplanner.team/stops/Cvllerm1", "https://tec.openplanner.team/stops/Cvlstan2"], ["https://tec.openplanner.team/stops/LSBsere1", "https://tec.openplanner.team/stops/LSBsere2"], ["https://tec.openplanner.team/stops/X812awa", "https://tec.openplanner.team/stops/X812aza"], ["https://tec.openplanner.team/stops/Bhptegl1", "https://tec.openplanner.team/stops/Bhptegl2"], ["https://tec.openplanner.team/stops/LbUmors1", "https://tec.openplanner.team/stops/LbUmors2"], ["https://tec.openplanner.team/stops/N501fsa", "https://tec.openplanner.team/stops/N501maa"], ["https://tec.openplanner.team/stops/Lreclou2", "https://tec.openplanner.team/stops/Lretill2"], ["https://tec.openplanner.team/stops/LBAbooz2", "https://tec.openplanner.team/stops/LBLtroi2"], ["https://tec.openplanner.team/stops/Cmamonu1", "https://tec.openplanner.team/stops/Cmychap4"], ["https://tec.openplanner.team/stops/LmYeich1", "https://tec.openplanner.team/stops/LvAschw2"], ["https://tec.openplanner.team/stops/Bnstgar2", "https://tec.openplanner.team/stops/Bnstmig2"], ["https://tec.openplanner.team/stops/Cmmcime2", "https://tec.openplanner.team/stops/Cmmmarb2"], ["https://tec.openplanner.team/stops/N229aea", "https://tec.openplanner.team/stops/N229ana"], ["https://tec.openplanner.team/stops/Bmrswag2", "https://tec.openplanner.team/stops/Bwatvco2"], ["https://tec.openplanner.team/stops/LAMcoll2", "https://tec.openplanner.team/stops/LAMpirk1"], ["https://tec.openplanner.team/stops/X723abb", "https://tec.openplanner.team/stops/X723ana"], ["https://tec.openplanner.team/stops/H4hu119b", "https://tec.openplanner.team/stops/H4hu122b"], ["https://tec.openplanner.team/stops/Bhalgar1", "https://tec.openplanner.team/stops/Bhalgar2"], ["https://tec.openplanner.team/stops/Cpiegli1", "https://tec.openplanner.team/stops/Cpipost1"], ["https://tec.openplanner.team/stops/H3bi104a", "https://tec.openplanner.team/stops/H3bi116b"], ["https://tec.openplanner.team/stops/Cjuquai2", "https://tec.openplanner.team/stops/Cjuvpla1"], ["https://tec.openplanner.team/stops/X902aia", "https://tec.openplanner.team/stops/X902aib"], ["https://tec.openplanner.team/stops/N501dza", "https://tec.openplanner.team/stops/N501eia"], ["https://tec.openplanner.team/stops/LSOvoie1", "https://tec.openplanner.team/stops/LSOvoie4"], ["https://tec.openplanner.team/stops/X670acb", "https://tec.openplanner.team/stops/X670adb"], ["https://tec.openplanner.team/stops/H1fa118b", "https://tec.openplanner.team/stops/H1pe132b"], ["https://tec.openplanner.team/stops/Bgoemgr2", "https://tec.openplanner.team/stops/Bneecha2"], ["https://tec.openplanner.team/stops/Lenabat2", "https://tec.openplanner.team/stops/Lenptsa2"], ["https://tec.openplanner.team/stops/X771abb", "https://tec.openplanner.team/stops/X773akb"], ["https://tec.openplanner.team/stops/N235afa", "https://tec.openplanner.team/stops/N235aga"], ["https://tec.openplanner.team/stops/X652acd", "https://tec.openplanner.team/stops/X652aea"], ["https://tec.openplanner.team/stops/Ccugail2", "https://tec.openplanner.team/stops/Ccutill1"], ["https://tec.openplanner.team/stops/Llgamer3", "https://tec.openplanner.team/stops/Llgmara1"], ["https://tec.openplanner.team/stops/H4oq225b", "https://tec.openplanner.team/stops/H4oq228a"], ["https://tec.openplanner.team/stops/LeUdepo1", "https://tec.openplanner.team/stops/LeUlasc2"], ["https://tec.openplanner.team/stops/Llgcong2", "https://tec.openplanner.team/stops/Llgcong3"], ["https://tec.openplanner.team/stops/Clvlove1", "https://tec.openplanner.team/stops/Cmlavch1"], ["https://tec.openplanner.team/stops/H2bh110a", "https://tec.openplanner.team/stops/H2bh118a"], ["https://tec.openplanner.team/stops/Ccunove2", "https://tec.openplanner.team/stops/Ccusole1"], ["https://tec.openplanner.team/stops/H2fa107b", "https://tec.openplanner.team/stops/H2fa108b"], ["https://tec.openplanner.team/stops/Ladclem1", "https://tec.openplanner.team/stops/Ladverv2"], ["https://tec.openplanner.team/stops/H4ty300a", "https://tec.openplanner.team/stops/H4ty329a"], ["https://tec.openplanner.team/stops/Lvchaus2", "https://tec.openplanner.team/stops/Lvchenn2"], ["https://tec.openplanner.team/stops/Lcacris1", "https://tec.openplanner.team/stops/Lcacris2"], ["https://tec.openplanner.team/stops/LBRgare1", "https://tec.openplanner.team/stops/LBRpier2"], ["https://tec.openplanner.team/stops/X923aab", "https://tec.openplanner.team/stops/X923akb"], ["https://tec.openplanner.team/stops/H1po130b", "https://tec.openplanner.team/stops/H1po139b"], ["https://tec.openplanner.team/stops/LSOcime2", "https://tec.openplanner.team/stops/LSOladr2"], ["https://tec.openplanner.team/stops/N501cpa", "https://tec.openplanner.team/stops/N501ctb"], ["https://tec.openplanner.team/stops/LWRchem1", "https://tec.openplanner.team/stops/LWRchem2"], ["https://tec.openplanner.team/stops/Lagorch1", "https://tec.openplanner.team/stops/Lagorch2"], ["https://tec.openplanner.team/stops/Cjuhame1", "https://tec.openplanner.team/stops/Crajasm1"], ["https://tec.openplanner.team/stops/Clihame2", "https://tec.openplanner.team/stops/Cmeptmi6"], ["https://tec.openplanner.team/stops/LTIdamr2", "https://tec.openplanner.team/stops/LTIpora1"], ["https://tec.openplanner.team/stops/LBdcarr1", "https://tec.openplanner.team/stops/LLg9---2"], ["https://tec.openplanner.team/stops/H1gi119a", "https://tec.openplanner.team/stops/H1gi119c"], ["https://tec.openplanner.team/stops/N576aca", "https://tec.openplanner.team/stops/N576ana"], ["https://tec.openplanner.team/stops/LmDhoch1", "https://tec.openplanner.team/stops/LmDhoch3"], ["https://tec.openplanner.team/stops/Cflbrun2", "https://tec.openplanner.team/stops/Cflchmo2"], ["https://tec.openplanner.team/stops/LOesour1", "https://tec.openplanner.team/stops/LOewaut1"], ["https://tec.openplanner.team/stops/H1gi118b", "https://tec.openplanner.team/stops/H1gi119b"], ["https://tec.openplanner.team/stops/LHDlibi2", "https://tec.openplanner.team/stops/LHDpota2"], ["https://tec.openplanner.team/stops/LREairp1", "https://tec.openplanner.team/stops/LREairp2"], ["https://tec.openplanner.team/stops/X801bdd", "https://tec.openplanner.team/stops/X801cka"], ["https://tec.openplanner.team/stops/X822aia", "https://tec.openplanner.team/stops/X822arb"], ["https://tec.openplanner.team/stops/N103ahb", "https://tec.openplanner.team/stops/N106agb"], ["https://tec.openplanner.team/stops/H1br132a", "https://tec.openplanner.team/stops/H1ev113b"], ["https://tec.openplanner.team/stops/N232brb", "https://tec.openplanner.team/stops/N232bsa"], ["https://tec.openplanner.team/stops/H5st163a", "https://tec.openplanner.team/stops/H5st166a"], ["https://tec.openplanner.team/stops/X890aaa", "https://tec.openplanner.team/stops/X890aab"], ["https://tec.openplanner.team/stops/X347ajb", "https://tec.openplanner.team/stops/X890adb"], ["https://tec.openplanner.team/stops/H1hl125b", "https://tec.openplanner.team/stops/H1hl127a"], ["https://tec.openplanner.team/stops/Bcseche2", "https://tec.openplanner.team/stops/Bsmgsuz1"], ["https://tec.openplanner.team/stops/N221abb", "https://tec.openplanner.team/stops/N221acb"], ["https://tec.openplanner.team/stops/Lfhhoul1", "https://tec.openplanner.team/stops/Lfhtrxc*"], ["https://tec.openplanner.team/stops/N525azb", "https://tec.openplanner.team/stops/N525baa"], ["https://tec.openplanner.team/stops/LCObouh1", "https://tec.openplanner.team/stops/LSNnoul1"], ["https://tec.openplanner.team/stops/X750bpb", "https://tec.openplanner.team/stops/X783adb"], ["https://tec.openplanner.team/stops/LROchap2", "https://tec.openplanner.team/stops/LSoprom1"], ["https://tec.openplanner.team/stops/N549aba", "https://tec.openplanner.team/stops/N578aca"], ["https://tec.openplanner.team/stops/Ccugrtr1", "https://tec.openplanner.team/stops/Ccunove2"], ["https://tec.openplanner.team/stops/N201ana", "https://tec.openplanner.team/stops/N201anb"], ["https://tec.openplanner.team/stops/LTgjalh1", "https://tec.openplanner.team/stops/LTgvill1"], ["https://tec.openplanner.team/stops/H1fr112b", "https://tec.openplanner.team/stops/H1ge115b"], ["https://tec.openplanner.team/stops/Cfcmass2", "https://tec.openplanner.team/stops/Crccarr1"], ["https://tec.openplanner.team/stops/Lseaven2", "https://tec.openplanner.team/stops/Lsecoll2"], ["https://tec.openplanner.team/stops/LBTcarr1", "https://tec.openplanner.team/stops/LBTnors1"], ["https://tec.openplanner.team/stops/N204aaa", "https://tec.openplanner.team/stops/N204abb"], ["https://tec.openplanner.team/stops/X993ada", "https://tec.openplanner.team/stops/X993aeb"], ["https://tec.openplanner.team/stops/N232bya", "https://tec.openplanner.team/stops/N232byb"], ["https://tec.openplanner.team/stops/H2ma265a", "https://tec.openplanner.team/stops/H2sb231c"], ["https://tec.openplanner.team/stops/LAieg--2", "https://tec.openplanner.team/stops/LAieg--3"], ["https://tec.openplanner.team/stops/LSypesy2", "https://tec.openplanner.team/stops/LSythie1"], ["https://tec.openplanner.team/stops/LhMmeil1", "https://tec.openplanner.team/stops/LhMwing1"], ["https://tec.openplanner.team/stops/N166abb", "https://tec.openplanner.team/stops/N166aeb"], ["https://tec.openplanner.team/stops/LHVgoro1", "https://tec.openplanner.team/stops/LHVgoro2"], ["https://tec.openplanner.team/stops/LSNchen3", "https://tec.openplanner.team/stops/LSNchen4"], ["https://tec.openplanner.team/stops/H4to139b", "https://tec.openplanner.team/stops/H4to139d"], ["https://tec.openplanner.team/stops/X746aga", "https://tec.openplanner.team/stops/X746agb"], ["https://tec.openplanner.team/stops/Ladneuv1", "https://tec.openplanner.team/stops/Lveinva2"], ["https://tec.openplanner.team/stops/Bllnmet1", "https://tec.openplanner.team/stops/Bllnrro1"], ["https://tec.openplanner.team/stops/Lhubarl1", "https://tec.openplanner.team/stops/LPoxhav1"], ["https://tec.openplanner.team/stops/N244atb", "https://tec.openplanner.team/stops/N244aub"], ["https://tec.openplanner.team/stops/X725aja", "https://tec.openplanner.team/stops/X725aob"], ["https://tec.openplanner.team/stops/Lthfagn2", "https://tec.openplanner.team/stops/LWahetr1"], ["https://tec.openplanner.team/stops/LSsmond1", "https://tec.openplanner.team/stops/N506bca"], ["https://tec.openplanner.team/stops/N270aba", "https://tec.openplanner.team/stops/N270abb"], ["https://tec.openplanner.team/stops/X316abb", "https://tec.openplanner.team/stops/X316acb"], ["https://tec.openplanner.team/stops/X354ahb", "https://tec.openplanner.team/stops/X858aha"], ["https://tec.openplanner.team/stops/LVAflat1", "https://tec.openplanner.team/stops/LVAgemm2"], ["https://tec.openplanner.team/stops/H2mo125b", "https://tec.openplanner.team/stops/H2mo131a"], ["https://tec.openplanner.team/stops/X615aka", "https://tec.openplanner.team/stops/X615bra"], ["https://tec.openplanner.team/stops/H4ca122a", "https://tec.openplanner.team/stops/H4ca122b"], ["https://tec.openplanner.team/stops/N501dca", "https://tec.openplanner.team/stops/N501mua"], ["https://tec.openplanner.team/stops/H1wa142b", "https://tec.openplanner.team/stops/H1wa164a"], ["https://tec.openplanner.team/stops/Cgxprad1", "https://tec.openplanner.team/stops/Cgxprad3"], ["https://tec.openplanner.team/stops/N547adb", "https://tec.openplanner.team/stops/N547aeb"], ["https://tec.openplanner.team/stops/LWHkerk1", "https://tec.openplanner.team/stops/LWHzave2"], ["https://tec.openplanner.team/stops/LLReg--2", "https://tec.openplanner.team/stops/LLRgdma1"], ["https://tec.openplanner.team/stops/X512aba", "https://tec.openplanner.team/stops/X512abb"], ["https://tec.openplanner.team/stops/Cmx4che1", "https://tec.openplanner.team/stops/Cmxpleg1"], ["https://tec.openplanner.team/stops/N232awa", "https://tec.openplanner.team/stops/N232awb"], ["https://tec.openplanner.team/stops/LrAknop1", "https://tec.openplanner.team/stops/LrAneud1"], ["https://tec.openplanner.team/stops/N538aaa", "https://tec.openplanner.team/stops/N538abb"], ["https://tec.openplanner.team/stops/Llgherm2", "https://tec.openplanner.team/stops/Llgthie1"], ["https://tec.openplanner.team/stops/Lagfour2", "https://tec.openplanner.team/stops/Lagkink2"], ["https://tec.openplanner.team/stops/N162aaa", "https://tec.openplanner.team/stops/N162abb"], ["https://tec.openplanner.team/stops/LFRhock3", "https://tec.openplanner.team/stops/LSZpiro2"], ["https://tec.openplanner.team/stops/H1hl123b", "https://tec.openplanner.team/stops/H1vs144a"], ["https://tec.openplanner.team/stops/LMisour1", "https://tec.openplanner.team/stops/LSTmeiz1"], ["https://tec.openplanner.team/stops/X661atb", "https://tec.openplanner.team/stops/X661aub"], ["https://tec.openplanner.team/stops/LsVmolk1", "https://tec.openplanner.team/stops/LwSschw2"], ["https://tec.openplanner.team/stops/Bniveco1", "https://tec.openplanner.team/stops/Bnivite2"], ["https://tec.openplanner.team/stops/X768aga", "https://tec.openplanner.team/stops/X768agb"], ["https://tec.openplanner.team/stops/H2pr115a", "https://tec.openplanner.team/stops/H3so187a"], ["https://tec.openplanner.team/stops/Bolgcsa2", "https://tec.openplanner.team/stops/Bolphgr2"], ["https://tec.openplanner.team/stops/LBUmara1", "https://tec.openplanner.team/stops/NL30aja"], ["https://tec.openplanner.team/stops/H4pp123a", "https://tec.openplanner.team/stops/H4qu230a"], ["https://tec.openplanner.team/stops/N501dzb", "https://tec.openplanner.team/stops/N501eia"], ["https://tec.openplanner.team/stops/H4ve136a", "https://tec.openplanner.team/stops/H4ve136b"], ["https://tec.openplanner.team/stops/Blascim1", "https://tec.openplanner.team/stops/Bohnr731"], ["https://tec.openplanner.team/stops/LAyfren2", "https://tec.openplanner.team/stops/Lflhott1"], ["https://tec.openplanner.team/stops/Cmiegli1", "https://tec.openplanner.team/stops/Cmitrie1"], ["https://tec.openplanner.team/stops/NC11aka", "https://tec.openplanner.team/stops/NC11ala"], ["https://tec.openplanner.team/stops/N576aaa", "https://tec.openplanner.team/stops/N576ama"], ["https://tec.openplanner.team/stops/Louairl2", "https://tec.openplanner.team/stops/Louazot1"], ["https://tec.openplanner.team/stops/X659add", "https://tec.openplanner.team/stops/X659aeb"], ["https://tec.openplanner.team/stops/X618ajb", "https://tec.openplanner.team/stops/X618apa"], ["https://tec.openplanner.team/stops/X615aaa", "https://tec.openplanner.team/stops/X615aea"], ["https://tec.openplanner.team/stops/N534btb", "https://tec.openplanner.team/stops/N534bub"], ["https://tec.openplanner.team/stops/LTPwann2", "https://tec.openplanner.team/stops/X542aga"], ["https://tec.openplanner.team/stops/H1hq124a", "https://tec.openplanner.team/stops/H1hq128a"], ["https://tec.openplanner.team/stops/Bcrnrpc1", "https://tec.openplanner.team/stops/Bcrnvic2"], ["https://tec.openplanner.team/stops/Lemjacq1", "https://tec.openplanner.team/stops/Lemsely1"], ["https://tec.openplanner.team/stops/N115afa", "https://tec.openplanner.team/stops/N170aga"], ["https://tec.openplanner.team/stops/LMsalen2", "https://tec.openplanner.team/stops/LMsheid2"], ["https://tec.openplanner.team/stops/N201alb", "https://tec.openplanner.team/stops/N211ala"], ["https://tec.openplanner.team/stops/Cdajume2", "https://tec.openplanner.team/stops/Cmarroy2"], ["https://tec.openplanner.team/stops/LPLfp2-2", "https://tec.openplanner.team/stops/LPLhout2"], ["https://tec.openplanner.team/stops/Lghgros1", "https://tec.openplanner.team/stops/Lghlogi2"], ["https://tec.openplanner.team/stops/X762aab", "https://tec.openplanner.team/stops/X763afa"], ["https://tec.openplanner.team/stops/H4po127a", "https://tec.openplanner.team/stops/H4po127b"], ["https://tec.openplanner.team/stops/Lhutran2", "https://tec.openplanner.team/stops/Lmnrame1"], ["https://tec.openplanner.team/stops/Bblagar2", "https://tec.openplanner.team/stops/Bblagard"], ["https://tec.openplanner.team/stops/LHUchin*", "https://tec.openplanner.team/stops/LHUpsar1"], ["https://tec.openplanner.team/stops/LVeeg--1", "https://tec.openplanner.team/stops/LVevill1"], ["https://tec.openplanner.team/stops/Bbaubru1", "https://tec.openplanner.team/stops/Bnivche2"], ["https://tec.openplanner.team/stops/N501ctb", "https://tec.openplanner.team/stops/N535apa"], ["https://tec.openplanner.team/stops/Bbrycar2", "https://tec.openplanner.team/stops/N584aza"], ["https://tec.openplanner.team/stops/Bnetegl3", "https://tec.openplanner.team/stops/Bnettou1"], ["https://tec.openplanner.team/stops/X633aeb", "https://tec.openplanner.team/stops/X633agc"], ["https://tec.openplanner.team/stops/LbRkirc2", "https://tec.openplanner.team/stops/LtHfrie1"], ["https://tec.openplanner.team/stops/H2na135a", "https://tec.openplanner.team/stops/H2na135b"], ["https://tec.openplanner.team/stops/X903aga", "https://tec.openplanner.team/stops/X943aaa"], ["https://tec.openplanner.team/stops/Bovetdo2", "https://tec.openplanner.team/stops/Bovetsa1"], ["https://tec.openplanner.team/stops/X390aia", "https://tec.openplanner.team/stops/X390aib"], ["https://tec.openplanner.team/stops/Lmobols2", "https://tec.openplanner.team/stops/Lmobras1"], ["https://tec.openplanner.team/stops/N513apa", "https://tec.openplanner.team/stops/N513apb"], ["https://tec.openplanner.team/stops/LMIbois1", "https://tec.openplanner.team/stops/LMIbois2"], ["https://tec.openplanner.team/stops/Bnivga22", "https://tec.openplanner.team/stops/Bnivga31"], ["https://tec.openplanner.team/stops/Lgrfass2", "https://tec.openplanner.team/stops/Lgrfrai1"], ["https://tec.openplanner.team/stops/X786aba", "https://tec.openplanner.team/stops/X786aeb"], ["https://tec.openplanner.team/stops/H5wo122b", "https://tec.openplanner.team/stops/H5wo126a"], ["https://tec.openplanner.team/stops/NH03aea", "https://tec.openplanner.team/stops/NH03aeb"], ["https://tec.openplanner.team/stops/Bglibui1", "https://tec.openplanner.team/stops/Bjcljau2"], ["https://tec.openplanner.team/stops/LJEloum2", "https://tec.openplanner.team/stops/LJEtige1"], ["https://tec.openplanner.team/stops/H1ci102b", "https://tec.openplanner.team/stops/H1hn209b"], ["https://tec.openplanner.team/stops/H4rk101a", "https://tec.openplanner.team/stops/H4rk101b"], ["https://tec.openplanner.team/stops/H1hc150a", "https://tec.openplanner.team/stops/H1hc150b"], ["https://tec.openplanner.team/stops/N513anb", "https://tec.openplanner.team/stops/N513aoa"], ["https://tec.openplanner.team/stops/Cmtstth1", "https://tec.openplanner.team/stops/Cmtstth2"], ["https://tec.openplanner.team/stops/Bmlncha2", "https://tec.openplanner.team/stops/Bmlnegl2"], ["https://tec.openplanner.team/stops/H4co151a", "https://tec.openplanner.team/stops/H4pl121a"], ["https://tec.openplanner.team/stops/N547ald", "https://tec.openplanner.team/stops/N547ana"], ["https://tec.openplanner.team/stops/Lagpn6-1", "https://tec.openplanner.team/stops/Lagpn6-2"], ["https://tec.openplanner.team/stops/Cbicamp1", "https://tec.openplanner.team/stops/Ctufleu4"], ["https://tec.openplanner.team/stops/Bove4ko1", "https://tec.openplanner.team/stops/Bovetdo1"], ["https://tec.openplanner.team/stops/H4bi156a", "https://tec.openplanner.team/stops/H4eg101d"], ["https://tec.openplanner.team/stops/Btilgar2", "https://tec.openplanner.team/stops/Bvlvmar1"], ["https://tec.openplanner.team/stops/X850ahb", "https://tec.openplanner.team/stops/X850anb"], ["https://tec.openplanner.team/stops/Bstmpla1", "https://tec.openplanner.team/stops/N561aha"], ["https://tec.openplanner.team/stops/LPLheid1", "https://tec.openplanner.team/stops/LPLstri1"], ["https://tec.openplanner.team/stops/X748aaa", "https://tec.openplanner.team/stops/X769aaa"], ["https://tec.openplanner.team/stops/N526acb", "https://tec.openplanner.team/stops/N527aaa"], ["https://tec.openplanner.team/stops/N209ahb", "https://tec.openplanner.team/stops/N209aid"], ["https://tec.openplanner.team/stops/X992ada", "https://tec.openplanner.team/stops/X992akb"], ["https://tec.openplanner.team/stops/LFPkast2", "https://tec.openplanner.team/stops/LFPknap2"], ["https://tec.openplanner.team/stops/H1fr119a", "https://tec.openplanner.team/stops/H1fr122a"], ["https://tec.openplanner.team/stops/X808ala", "https://tec.openplanner.team/stops/X808amb"], ["https://tec.openplanner.team/stops/LLbvith2", "https://tec.openplanner.team/stops/Lthgros1"], ["https://tec.openplanner.team/stops/N351ama", "https://tec.openplanner.team/stops/N351aua"], ["https://tec.openplanner.team/stops/LMastat4", "https://tec.openplanner.team/stops/LMawilh3"], ["https://tec.openplanner.team/stops/Cchheig1", "https://tec.openplanner.team/stops/Cchheig2"], ["https://tec.openplanner.team/stops/LESchpl1", "https://tec.openplanner.team/stops/LFNlato1"], ["https://tec.openplanner.team/stops/X822aaa", "https://tec.openplanner.team/stops/X822ada"], ["https://tec.openplanner.team/stops/H5rx143b", "https://tec.openplanner.team/stops/H5rx151a"], ["https://tec.openplanner.team/stops/Lhrabho1", "https://tec.openplanner.team/stops/Lhrcite1"], ["https://tec.openplanner.team/stops/X636aia", "https://tec.openplanner.team/stops/X636amb"], ["https://tec.openplanner.team/stops/Llgatel2", "https://tec.openplanner.team/stops/Llgcoro4"], ["https://tec.openplanner.team/stops/X937aib", "https://tec.openplanner.team/stops/X952aaa"], ["https://tec.openplanner.team/stops/LCUmonu1", "https://tec.openplanner.team/stops/LCUmora2"], ["https://tec.openplanner.team/stops/Lbbbuse1", "https://tec.openplanner.team/stops/Ljuvert1"], ["https://tec.openplanner.team/stops/N351ajc", "https://tec.openplanner.team/stops/N351axa"], ["https://tec.openplanner.team/stops/X804asa", "https://tec.openplanner.team/stops/X804bzb"], ["https://tec.openplanner.team/stops/H4ta117a", "https://tec.openplanner.team/stops/H4ta132b"], ["https://tec.openplanner.team/stops/Lemparc1", "https://tec.openplanner.team/stops/Lemparc2"], ["https://tec.openplanner.team/stops/LAYathe2", "https://tec.openplanner.team/stops/LAYcher1"], ["https://tec.openplanner.team/stops/H4gr111a", "https://tec.openplanner.team/stops/H4ld124a"], ["https://tec.openplanner.team/stops/H1fv100a", "https://tec.openplanner.team/stops/H1fv102a"], ["https://tec.openplanner.team/stops/LCocasc2", "https://tec.openplanner.team/stops/LCogara2"], ["https://tec.openplanner.team/stops/H4lu127a", "https://tec.openplanner.team/stops/H4mo193a"], ["https://tec.openplanner.team/stops/H1qv115a", "https://tec.openplanner.team/stops/H1qv115b"], ["https://tec.openplanner.team/stops/LrAbotz1", "https://tec.openplanner.team/stops/LrAmuhl2"], ["https://tec.openplanner.team/stops/N511ana", "https://tec.openplanner.team/stops/N511aoa"], ["https://tec.openplanner.team/stops/Cfbcal1", "https://tec.openplanner.team/stops/Cfcecol3"], ["https://tec.openplanner.team/stops/N501arb", "https://tec.openplanner.team/stops/N501arc"], ["https://tec.openplanner.team/stops/Bwatifr1", "https://tec.openplanner.team/stops/Bwatpas2"], ["https://tec.openplanner.team/stops/X651afa", "https://tec.openplanner.team/stops/X659adb"], ["https://tec.openplanner.team/stops/H1ho143c", "https://tec.openplanner.team/stops/H1sg148a"], ["https://tec.openplanner.team/stops/Cprbevu2", "https://tec.openplanner.team/stops/Cprcalv2"], ["https://tec.openplanner.team/stops/H2lc170a", "https://tec.openplanner.team/stops/H2lc170b"], ["https://tec.openplanner.team/stops/Lgdhall*", "https://tec.openplanner.team/stops/Lgdrena1"], ["https://tec.openplanner.team/stops/Bneeace1", "https://tec.openplanner.team/stops/Bneelaa1"], ["https://tec.openplanner.team/stops/N533acb", "https://tec.openplanner.team/stops/N533aea"], ["https://tec.openplanner.team/stops/Blthwav2", "https://tec.openplanner.team/stops/Bmlnegl3"], ["https://tec.openplanner.team/stops/N549aab", "https://tec.openplanner.team/stops/N549abb"], ["https://tec.openplanner.team/stops/X670aga", "https://tec.openplanner.team/stops/X670ahb"], ["https://tec.openplanner.team/stops/Bwatdco1", "https://tec.openplanner.team/stops/Bwatfia2"], ["https://tec.openplanner.team/stops/Lemambi2", "https://tec.openplanner.team/stops/Lemparc1"], ["https://tec.openplanner.team/stops/Bsomh672", "https://tec.openplanner.team/stops/Bsompri2"], ["https://tec.openplanner.team/stops/Lhrbass2", "https://tec.openplanner.team/stops/Lhrecol2"], ["https://tec.openplanner.team/stops/LHMbach4", "https://tec.openplanner.team/stops/LHMthys2"], ["https://tec.openplanner.team/stops/N512afb", "https://tec.openplanner.team/stops/N512axa"], ["https://tec.openplanner.team/stops/N232aoa", "https://tec.openplanner.team/stops/N232aob"], ["https://tec.openplanner.team/stops/X616aab", "https://tec.openplanner.team/stops/X695aaa"], ["https://tec.openplanner.team/stops/N311aeb", "https://tec.openplanner.team/stops/N311aec"], ["https://tec.openplanner.team/stops/H1bx108a", "https://tec.openplanner.team/stops/H1bx108b"], ["https://tec.openplanner.team/stops/H1bu142b", "https://tec.openplanner.team/stops/H2ep172b"], ["https://tec.openplanner.team/stops/N533aqa", "https://tec.openplanner.team/stops/N533aqd"], ["https://tec.openplanner.team/stops/LlAdorf1", "https://tec.openplanner.team/stops/LsBzent1"], ["https://tec.openplanner.team/stops/Bcbqrog2", "https://tec.openplanner.team/stops/Bitrpri1"], ["https://tec.openplanner.team/stops/H4ty358a", "https://tec.openplanner.team/stops/H4ty358b"], ["https://tec.openplanner.team/stops/Lbbremy2", "https://tec.openplanner.team/stops/Ljubord2"], ["https://tec.openplanner.team/stops/X715aab", "https://tec.openplanner.team/stops/X715adb"], ["https://tec.openplanner.team/stops/Cflspir1", "https://tec.openplanner.team/stops/Cflspir2"], ["https://tec.openplanner.team/stops/N511aea", "https://tec.openplanner.team/stops/N511agb"], ["https://tec.openplanner.team/stops/X664aga", "https://tec.openplanner.team/stops/X667aaa"], ["https://tec.openplanner.team/stops/H1hn205b", "https://tec.openplanner.team/stops/H1hn363b"], ["https://tec.openplanner.team/stops/X806adb", "https://tec.openplanner.team/stops/X872aaa"], ["https://tec.openplanner.team/stops/X650afe", "https://tec.openplanner.team/stops/X650aka"], ["https://tec.openplanner.team/stops/H1gh143a", "https://tec.openplanner.team/stops/H1gh143b"], ["https://tec.openplanner.team/stops/Cmmcarr2", "https://tec.openplanner.team/stops/Cmmplac1"], ["https://tec.openplanner.team/stops/NL76aea", "https://tec.openplanner.team/stops/NL76afb"], ["https://tec.openplanner.team/stops/X614bba", "https://tec.openplanner.team/stops/X614bca"], ["https://tec.openplanner.team/stops/Bcsgcou2", "https://tec.openplanner.team/stops/Blascvi2"], ["https://tec.openplanner.team/stops/Bnivbpe1", "https://tec.openplanner.team/stops/Bnivbpe3"], ["https://tec.openplanner.team/stops/X804bja", "https://tec.openplanner.team/stops/X804bwb"], ["https://tec.openplanner.team/stops/N562asb", "https://tec.openplanner.team/stops/N562bma"], ["https://tec.openplanner.team/stops/LLOnand1", "https://tec.openplanner.team/stops/LLOnand2"], ["https://tec.openplanner.team/stops/H1pa118b", "https://tec.openplanner.team/stops/H1pa166a"], ["https://tec.openplanner.team/stops/Csuptou1", "https://tec.openplanner.team/stops/Csytouq2"], ["https://tec.openplanner.team/stops/H4an104a", "https://tec.openplanner.team/stops/H4an112b"], ["https://tec.openplanner.team/stops/LPRcasi1", "https://tec.openplanner.team/stops/LTRcite1"], ["https://tec.openplanner.team/stops/N383aaa", "https://tec.openplanner.team/stops/N988acb"], ["https://tec.openplanner.team/stops/X992aha", "https://tec.openplanner.team/stops/X993aja"], ["https://tec.openplanner.team/stops/LWbcarr2", "https://tec.openplanner.team/stops/LWblesp2"], ["https://tec.openplanner.team/stops/LHMcruc2", "https://tec.openplanner.team/stops/LHMpatl1"], ["https://tec.openplanner.team/stops/LPRfour2", "https://tec.openplanner.team/stops/LSHfief2"], ["https://tec.openplanner.team/stops/X746ahb", "https://tec.openplanner.team/stops/X746ajb"], ["https://tec.openplanner.team/stops/H1as102a", "https://tec.openplanner.team/stops/H1as102b"], ["https://tec.openplanner.team/stops/LBY4che1", "https://tec.openplanner.team/stops/Lgdec--1"], ["https://tec.openplanner.team/stops/H5rx106b", "https://tec.openplanner.team/stops/H5rx130b"], ["https://tec.openplanner.team/stops/N501cea", "https://tec.openplanner.team/stops/N501mpa"], ["https://tec.openplanner.team/stops/LLmeg--1", "https://tec.openplanner.team/stops/LLmeg--2"], ["https://tec.openplanner.team/stops/Llglefe1", "https://tec.openplanner.team/stops/Llgwesp1"], ["https://tec.openplanner.team/stops/Cctbois1", "https://tec.openplanner.team/stops/Cctbois3"], ["https://tec.openplanner.team/stops/H2go120a", "https://tec.openplanner.team/stops/H2se115a"], ["https://tec.openplanner.team/stops/X657abb", "https://tec.openplanner.team/stops/X657aja"], ["https://tec.openplanner.team/stops/X717aca", "https://tec.openplanner.team/stops/X782aeb"], ["https://tec.openplanner.team/stops/LMfeg--1", "https://tec.openplanner.team/stops/LMfeg--2"], ["https://tec.openplanner.team/stops/NL80apa", "https://tec.openplanner.team/stops/NL80aua"], ["https://tec.openplanner.team/stops/Ccupays1", "https://tec.openplanner.team/stops/Ccupays2"], ["https://tec.openplanner.team/stops/N501lia", "https://tec.openplanner.team/stops/N501lib"], ["https://tec.openplanner.team/stops/Lalmakr1", "https://tec.openplanner.team/stops/Lanothe1"], ["https://tec.openplanner.team/stops/H2pe162a", "https://tec.openplanner.team/stops/H2pe162c"], ["https://tec.openplanner.team/stops/H2le149b", "https://tec.openplanner.team/stops/H2ml113a"], ["https://tec.openplanner.team/stops/Cfacamp4", "https://tec.openplanner.team/stops/Cfarcam1"], ["https://tec.openplanner.team/stops/X359aba", "https://tec.openplanner.team/stops/X359aca"], ["https://tec.openplanner.team/stops/N232aea", "https://tec.openplanner.team/stops/N232aeb"], ["https://tec.openplanner.team/stops/H4lp124a", "https://tec.openplanner.team/stops/H4pe125a"], ["https://tec.openplanner.team/stops/X730ada", "https://tec.openplanner.team/stops/X730adb"], ["https://tec.openplanner.team/stops/X948aba", "https://tec.openplanner.team/stops/X948aqa"], ["https://tec.openplanner.team/stops/Bnivace1", "https://tec.openplanner.team/stops/Bnivcma2"], ["https://tec.openplanner.team/stops/LSkyern1", "https://tec.openplanner.team/stops/LSkyern2"], ["https://tec.openplanner.team/stops/N308ana", "https://tec.openplanner.team/stops/N308aoa"], ["https://tec.openplanner.team/stops/N349aeb", "https://tec.openplanner.team/stops/N351aqa"], ["https://tec.openplanner.team/stops/X801chb", "https://tec.openplanner.team/stops/X836aeb"], ["https://tec.openplanner.team/stops/X754asa", "https://tec.openplanner.team/stops/X754asb"], ["https://tec.openplanner.team/stops/X638afa", "https://tec.openplanner.team/stops/X638aoa"], ["https://tec.openplanner.team/stops/Cgocolo2", "https://tec.openplanner.team/stops/Cgosmoi2"], ["https://tec.openplanner.team/stops/H4ka185a", "https://tec.openplanner.team/stops/H4ru236b"], ["https://tec.openplanner.team/stops/LBLfoxh1", "https://tec.openplanner.team/stops/LBLgobc2"], ["https://tec.openplanner.team/stops/X730aba", "https://tec.openplanner.team/stops/X730abb"], ["https://tec.openplanner.team/stops/Cchcase3", "https://tec.openplanner.team/stops/Cchhopi1"], ["https://tec.openplanner.team/stops/LTPhenr1", "https://tec.openplanner.team/stops/LTPpisc1"], ["https://tec.openplanner.team/stops/N117asb", "https://tec.openplanner.team/stops/N117ata"], ["https://tec.openplanner.team/stops/LToluik1", "https://tec.openplanner.team/stops/LToluik2"], ["https://tec.openplanner.team/stops/LBSchar2", "https://tec.openplanner.team/stops/LBSpail3"], ["https://tec.openplanner.team/stops/N208aaa", "https://tec.openplanner.team/stops/N209alb"], ["https://tec.openplanner.team/stops/H1ms253a", "https://tec.openplanner.team/stops/H1ms911a"], ["https://tec.openplanner.team/stops/NR21aaa", "https://tec.openplanner.team/stops/NR21aab"], ["https://tec.openplanner.team/stops/Blhutco2", "https://tec.openplanner.team/stops/Blhutco3"], ["https://tec.openplanner.team/stops/LNEgare*", "https://tec.openplanner.team/stops/LNEolne2"], ["https://tec.openplanner.team/stops/Lsmnico1", "https://tec.openplanner.team/stops/Lsmrwan2"], ["https://tec.openplanner.team/stops/Cchabat1", "https://tec.openplanner.team/stops/Cchalou2"], ["https://tec.openplanner.team/stops/X654aka", "https://tec.openplanner.team/stops/X654ala"], ["https://tec.openplanner.team/stops/LHuetat2", "https://tec.openplanner.team/stops/LHuherm2"], ["https://tec.openplanner.team/stops/Lmlmaqu1", "https://tec.openplanner.team/stops/Lmlmaqu4"], ["https://tec.openplanner.team/stops/LNOpt--2", "https://tec.openplanner.team/stops/LREheyd1"], ["https://tec.openplanner.team/stops/Brsgges2", "https://tec.openplanner.team/stops/Brsgpbo2"], ["https://tec.openplanner.team/stops/NL76aaa", "https://tec.openplanner.team/stops/NL76aab"], ["https://tec.openplanner.team/stops/Crsapol2", "https://tec.openplanner.team/stops/Crswaut1"], ["https://tec.openplanner.team/stops/LMYmont1", "https://tec.openplanner.team/stops/X796aba"], ["https://tec.openplanner.team/stops/N357aea", "https://tec.openplanner.team/stops/X989aeb"], ["https://tec.openplanner.team/stops/Cctmari2", "https://tec.openplanner.team/stops/NC11ahb"], ["https://tec.openplanner.team/stops/X650aab", "https://tec.openplanner.team/stops/X650aob"], ["https://tec.openplanner.team/stops/H4wc372a", "https://tec.openplanner.team/stops/H4wc374b"], ["https://tec.openplanner.team/stops/X659aea", "https://tec.openplanner.team/stops/X659ata"], ["https://tec.openplanner.team/stops/H4eg108a", "https://tec.openplanner.team/stops/H4ln130b"], ["https://tec.openplanner.team/stops/Bgntcom1", "https://tec.openplanner.team/stops/Bmelsab2"], ["https://tec.openplanner.team/stops/X661alb", "https://tec.openplanner.team/stops/X661awa"], ["https://tec.openplanner.team/stops/H4oq226c", "https://tec.openplanner.team/stops/H4oq409b"], ["https://tec.openplanner.team/stops/X394aea", "https://tec.openplanner.team/stops/X394afb"], ["https://tec.openplanner.team/stops/Bmrspel1", "https://tec.openplanner.team/stops/Bmrswag1"], ["https://tec.openplanner.team/stops/Ccunvus1", "https://tec.openplanner.team/stops/Ccuoise1"], ["https://tec.openplanner.team/stops/H1mr126a", "https://tec.openplanner.team/stops/H1on129b"], ["https://tec.openplanner.team/stops/N584bna", "https://tec.openplanner.team/stops/N584bnb"], ["https://tec.openplanner.team/stops/N501lpb", "https://tec.openplanner.team/stops/N501lqb"], ["https://tec.openplanner.team/stops/X743aea", "https://tec.openplanner.team/stops/X743afa"], ["https://tec.openplanner.team/stops/Lsechev1", "https://tec.openplanner.team/stops/Lsechev2"], ["https://tec.openplanner.team/stops/LPLcroi1", "https://tec.openplanner.team/stops/LPLcroi2"], ["https://tec.openplanner.team/stops/LAmarbo1", "https://tec.openplanner.team/stops/LAmarbo2"], ["https://tec.openplanner.team/stops/N547ama", "https://tec.openplanner.team/stops/N554adb"], ["https://tec.openplanner.team/stops/LMEcour2", "https://tec.openplanner.team/stops/LMEense1"], ["https://tec.openplanner.team/stops/N579aca", "https://tec.openplanner.team/stops/N579ada"], ["https://tec.openplanner.team/stops/X661aba", "https://tec.openplanner.team/stops/X839aca"], ["https://tec.openplanner.team/stops/H1me114a", "https://tec.openplanner.team/stops/H1me116a"], ["https://tec.openplanner.team/stops/LXocomb2", "https://tec.openplanner.team/stops/LXoeg--3"], ["https://tec.openplanner.team/stops/Ccyga1", "https://tec.openplanner.team/stops/NH01acb"], ["https://tec.openplanner.team/stops/LVEmoul1", "https://tec.openplanner.team/stops/LVEmoul2"], ["https://tec.openplanner.team/stops/N501ela", "https://tec.openplanner.team/stops/N501gea"], ["https://tec.openplanner.team/stops/LHceg--1", "https://tec.openplanner.team/stops/LSxeg--2"], ["https://tec.openplanner.team/stops/N501esb", "https://tec.openplanner.team/stops/N501ney"], ["https://tec.openplanner.team/stops/X817aba", "https://tec.openplanner.team/stops/X817aeb"], ["https://tec.openplanner.team/stops/H4bv146a", "https://tec.openplanner.team/stops/H4bv146b"], ["https://tec.openplanner.team/stops/Ccu6bra3", "https://tec.openplanner.team/stops/Ccu6bra5"], ["https://tec.openplanner.team/stops/LSGcarr2", "https://tec.openplanner.team/stops/LYegeor1"], ["https://tec.openplanner.team/stops/X602aab", "https://tec.openplanner.team/stops/X633aab"], ["https://tec.openplanner.team/stops/LlOkreu2", "https://tec.openplanner.team/stops/LsTgren2"], ["https://tec.openplanner.team/stops/Llgcadr6", "https://tec.openplanner.team/stops/Llghoch4"], ["https://tec.openplanner.team/stops/X609aha", "https://tec.openplanner.team/stops/X609ahb"], ["https://tec.openplanner.team/stops/X615awa", "https://tec.openplanner.team/stops/X615axa"], ["https://tec.openplanner.team/stops/LStgare*", "https://tec.openplanner.team/stops/NL80aaa"], ["https://tec.openplanner.team/stops/Bbsifmo2", "https://tec.openplanner.team/stops/Bhtipir2"], ["https://tec.openplanner.team/stops/X761abb", "https://tec.openplanner.team/stops/X761ada"], ["https://tec.openplanner.team/stops/X953ada", "https://tec.openplanner.team/stops/X953adb"], ["https://tec.openplanner.team/stops/X371aea", "https://tec.openplanner.team/stops/X371aeb"], ["https://tec.openplanner.team/stops/X663aaa", "https://tec.openplanner.team/stops/X663aac"], ["https://tec.openplanner.team/stops/H1og130a", "https://tec.openplanner.team/stops/H1og133b"], ["https://tec.openplanner.team/stops/N501hma", "https://tec.openplanner.team/stops/N501hob"], ["https://tec.openplanner.team/stops/N509beb", "https://tec.openplanner.team/stops/N509bfa"], ["https://tec.openplanner.team/stops/Lbrboul2", "https://tec.openplanner.team/stops/Lbrlama1"], ["https://tec.openplanner.team/stops/Lcefoxh1", "https://tec.openplanner.team/stops/Lcehipp1"], ["https://tec.openplanner.team/stops/H2ha132a", "https://tec.openplanner.team/stops/H2ha134b"], ["https://tec.openplanner.team/stops/N225aba", "https://tec.openplanner.team/stops/N225aca"], ["https://tec.openplanner.team/stops/LCx728-1", "https://tec.openplanner.team/stops/LCxhall1"], ["https://tec.openplanner.team/stops/H1cu115b", "https://tec.openplanner.team/stops/H1je360a"], ["https://tec.openplanner.team/stops/X611aba", "https://tec.openplanner.team/stops/X643abb"], ["https://tec.openplanner.team/stops/LBVplan2", "https://tec.openplanner.team/stops/LLscent2"], ["https://tec.openplanner.team/stops/Cflcent1", "https://tec.openplanner.team/stops/Cflstan1"], ["https://tec.openplanner.team/stops/N301abc", "https://tec.openplanner.team/stops/N301apb"], ["https://tec.openplanner.team/stops/LOChuy-1", "https://tec.openplanner.team/stops/X261aab"], ["https://tec.openplanner.team/stops/LAVstat1", "https://tec.openplanner.team/stops/LAVstat2"], ["https://tec.openplanner.team/stops/Cobobjo2", "https://tec.openplanner.team/stops/Cpcplac2"], ["https://tec.openplanner.team/stops/Lsmecol2", "https://tec.openplanner.team/stops/Lsmrcim2"], ["https://tec.openplanner.team/stops/Lrecite1", "https://tec.openplanner.team/stops/Lrecomp1"], ["https://tec.openplanner.team/stops/Cacscav1", "https://tec.openplanner.team/stops/NC24agb"], ["https://tec.openplanner.team/stops/X390aha", "https://tec.openplanner.team/stops/X390ajb"], ["https://tec.openplanner.team/stops/X782aja", "https://tec.openplanner.team/stops/X782ajb"], ["https://tec.openplanner.team/stops/N532aea", "https://tec.openplanner.team/stops/N532ana"], ["https://tec.openplanner.team/stops/N530aab", "https://tec.openplanner.team/stops/N530ada"], ["https://tec.openplanner.team/stops/Cgy3011", "https://tec.openplanner.team/stops/Cmtfoye2"], ["https://tec.openplanner.team/stops/LGogare1", "https://tec.openplanner.team/stops/Lpebeco1"], ["https://tec.openplanner.team/stops/N203aab", "https://tec.openplanner.team/stops/N203abb"], ["https://tec.openplanner.team/stops/LHUec--1", "https://tec.openplanner.team/stops/LHUomni2"], ["https://tec.openplanner.team/stops/X601daa", "https://tec.openplanner.team/stops/X601dda"], ["https://tec.openplanner.team/stops/LLTcoop2", "https://tec.openplanner.team/stops/LLTgole1"], ["https://tec.openplanner.team/stops/LSOchau2", "https://tec.openplanner.team/stops/LSOdow%C3%A92"], ["https://tec.openplanner.team/stops/H4la197a", "https://tec.openplanner.team/stops/H4ma200b"], ["https://tec.openplanner.team/stops/Caindsa2", "https://tec.openplanner.team/stops/Caircen2"], ["https://tec.openplanner.team/stops/Bgoemho2", "https://tec.openplanner.team/stops/Bneesjo1"], ["https://tec.openplanner.team/stops/H4ty307a", "https://tec.openplanner.team/stops/H4ty344b"], ["https://tec.openplanner.team/stops/Blaneli2", "https://tec.openplanner.team/stops/Blanove1"], ["https://tec.openplanner.team/stops/LPRbayb2", "https://tec.openplanner.team/stops/LTRchpl1"], ["https://tec.openplanner.team/stops/Lhuleke1", "https://tec.openplanner.team/stops/Lhutill1"], ["https://tec.openplanner.team/stops/Bbcopre2", "https://tec.openplanner.team/stops/Brebrha2"], ["https://tec.openplanner.team/stops/N301afa", "https://tec.openplanner.team/stops/N301ajb"], ["https://tec.openplanner.team/stops/H1ma231b", "https://tec.openplanner.team/stops/H1ni315b"], ["https://tec.openplanner.team/stops/Lsefori1", "https://tec.openplanner.team/stops/Lseptsa2"], ["https://tec.openplanner.team/stops/X812beb", "https://tec.openplanner.team/stops/X813ada"], ["https://tec.openplanner.team/stops/H4wa148b", "https://tec.openplanner.team/stops/H4wa156b"], ["https://tec.openplanner.team/stops/LCLgend1", "https://tec.openplanner.team/stops/LTestat1"], ["https://tec.openplanner.team/stops/LNAmart1", "https://tec.openplanner.team/stops/LNAplac1"], ["https://tec.openplanner.team/stops/Ljuchap1", "https://tec.openplanner.team/stops/Ljuchap3"], ["https://tec.openplanner.team/stops/H4do105b", "https://tec.openplanner.team/stops/H4do203a"], ["https://tec.openplanner.team/stops/X639aba", "https://tec.openplanner.team/stops/X639abb"], ["https://tec.openplanner.team/stops/Cchmonu3", "https://tec.openplanner.team/stops/Cchvhau2"], ["https://tec.openplanner.team/stops/LNEbois1", "https://tec.openplanner.team/stops/LNEcite1"], ["https://tec.openplanner.team/stops/LBBmc--1", "https://tec.openplanner.team/stops/LBBpech1"], ["https://tec.openplanner.team/stops/Cvp3til2", "https://tec.openplanner.team/stops/Cvp3til5"], ["https://tec.openplanner.team/stops/LRAcouv2", "https://tec.openplanner.team/stops/LRarami2"], ["https://tec.openplanner.team/stops/H4ea131a", "https://tec.openplanner.team/stops/H4wr173b"], ["https://tec.openplanner.team/stops/X941aaa", "https://tec.openplanner.team/stops/X948aob"], ["https://tec.openplanner.team/stops/H1mk111a", "https://tec.openplanner.team/stops/H1mk111b"], ["https://tec.openplanner.team/stops/Bcsebea3", "https://tec.openplanner.team/stops/Bvilvil4"], ["https://tec.openplanner.team/stops/X601bba", "https://tec.openplanner.team/stops/X601bea"], ["https://tec.openplanner.team/stops/Lsmnico2", "https://tec.openplanner.team/stops/Lsmtini2"], ["https://tec.openplanner.team/stops/H4ta118b", "https://tec.openplanner.team/stops/H4wu377b"], ["https://tec.openplanner.team/stops/LhGfl241", "https://tec.openplanner.team/stops/LhGknip1"], ["https://tec.openplanner.team/stops/Cgofert2", "https://tec.openplanner.team/stops/Cvvgrsa1"], ["https://tec.openplanner.team/stops/Bnvmfba1", "https://tec.openplanner.team/stops/Bnvmfba2"], ["https://tec.openplanner.team/stops/Crs74em4", "https://tec.openplanner.team/stops/Crseuro2"], ["https://tec.openplanner.team/stops/H4ef162b", "https://tec.openplanner.team/stops/H4ef165c"], ["https://tec.openplanner.team/stops/X948aob", "https://tec.openplanner.team/stops/X948ata"], ["https://tec.openplanner.team/stops/Bhalpar3", "https://tec.openplanner.team/stops/Bhalsro2"], ["https://tec.openplanner.team/stops/X604afa", "https://tec.openplanner.team/stops/X604afc"], ["https://tec.openplanner.team/stops/N501gaa", "https://tec.openplanner.team/stops/N501gra"], ["https://tec.openplanner.team/stops/Ccotemp2", "https://tec.openplanner.team/stops/Crowilb2"], ["https://tec.openplanner.team/stops/X601bob", "https://tec.openplanner.team/stops/X601bva"], ["https://tec.openplanner.team/stops/N565aib", "https://tec.openplanner.team/stops/N565ajb"], ["https://tec.openplanner.team/stops/Ctybaco1", "https://tec.openplanner.team/stops/Ctyhame1"], ["https://tec.openplanner.team/stops/N368abb", "https://tec.openplanner.team/stops/N368aca"], ["https://tec.openplanner.team/stops/H2fa105a", "https://tec.openplanner.team/stops/H2fa109b"], ["https://tec.openplanner.team/stops/Lbhmc--2", "https://tec.openplanner.team/stops/Ljupiet1"], ["https://tec.openplanner.team/stops/X222adc", "https://tec.openplanner.team/stops/X919ajb"], ["https://tec.openplanner.team/stops/N536aca", "https://tec.openplanner.team/stops/N536aga"], ["https://tec.openplanner.team/stops/LOnec--1", "https://tec.openplanner.team/stops/LXocomb1"], ["https://tec.openplanner.team/stops/N234aab", "https://tec.openplanner.team/stops/N243acb"], ["https://tec.openplanner.team/stops/H1bu137b", "https://tec.openplanner.team/stops/H2ep144a"], ["https://tec.openplanner.team/stops/N547ajb", "https://tec.openplanner.team/stops/N573apb"], ["https://tec.openplanner.team/stops/N118apa", "https://tec.openplanner.team/stops/N118bab"], ["https://tec.openplanner.team/stops/H1cu111a", "https://tec.openplanner.team/stops/H1cu111b"], ["https://tec.openplanner.team/stops/Bmoucoq2", "https://tec.openplanner.team/stops/Bottcpl2"], ["https://tec.openplanner.team/stops/LAYgare1", "https://tec.openplanner.team/stops/LAYwerb1"], ["https://tec.openplanner.team/stops/X608aaa", "https://tec.openplanner.team/stops/X608ala"], ["https://tec.openplanner.team/stops/Bchadpt1", "https://tec.openplanner.team/stops/Bcrnnca1"], ["https://tec.openplanner.team/stops/N501aeb", "https://tec.openplanner.team/stops/N501afb"], ["https://tec.openplanner.team/stops/Lwaelme2", "https://tec.openplanner.team/stops/Lwagare1"], ["https://tec.openplanner.team/stops/H4eg105b", "https://tec.openplanner.team/stops/H4pq120b"], ["https://tec.openplanner.team/stops/LBivi--1", "https://tec.openplanner.team/stops/LWEbr051"], ["https://tec.openplanner.team/stops/H1qu100a", "https://tec.openplanner.team/stops/H1qu116a"], ["https://tec.openplanner.team/stops/X662aia", "https://tec.openplanner.team/stops/X662anb"], ["https://tec.openplanner.team/stops/N209acb", "https://tec.openplanner.team/stops/N209aea"], ["https://tec.openplanner.team/stops/X750axb", "https://tec.openplanner.team/stops/X750bia"], ["https://tec.openplanner.team/stops/LESchat2", "https://tec.openplanner.team/stops/LTIptme2"], ["https://tec.openplanner.team/stops/X617aib", "https://tec.openplanner.team/stops/X618ajb"], ["https://tec.openplanner.team/stops/X614bra", "https://tec.openplanner.team/stops/X615ara"], ["https://tec.openplanner.team/stops/LBglign1", "https://tec.openplanner.team/stops/Lthgros1"], ["https://tec.openplanner.team/stops/Lghalli1", "https://tec.openplanner.team/stops/Lloross2"], ["https://tec.openplanner.team/stops/LCUgale1", "https://tec.openplanner.team/stops/LCUjonc2"], ["https://tec.openplanner.team/stops/Bgnvoha4", "https://tec.openplanner.team/stops/Bgnvoha6"], ["https://tec.openplanner.team/stops/Lcewilm1", "https://tec.openplanner.team/stops/Lcewilm2"], ["https://tec.openplanner.team/stops/LTecent2", "https://tec.openplanner.team/stops/LTecent3"], ["https://tec.openplanner.team/stops/H3lr113a", "https://tec.openplanner.team/stops/H3lr121a"], ["https://tec.openplanner.team/stops/LsVgore2", "https://tec.openplanner.team/stops/LsVmolk1"], ["https://tec.openplanner.team/stops/N569aaa", "https://tec.openplanner.team/stops/N569adb"], ["https://tec.openplanner.team/stops/LBOec--1", "https://tec.openplanner.team/stops/LDAchau1"], ["https://tec.openplanner.team/stops/X804bya", "https://tec.openplanner.team/stops/X804byb"], ["https://tec.openplanner.team/stops/Bcbqhai1", "https://tec.openplanner.team/stops/Bcbqrog1"], ["https://tec.openplanner.team/stops/Brebgpl1", "https://tec.openplanner.team/stops/Brebvic1"], ["https://tec.openplanner.team/stops/Cfvplac1", "https://tec.openplanner.team/stops/H1fv100a"], ["https://tec.openplanner.team/stops/LGEbern1", "https://tec.openplanner.team/stops/LGEhosp1"], ["https://tec.openplanner.team/stops/X636anb", "https://tec.openplanner.team/stops/X636aqd"], ["https://tec.openplanner.team/stops/H4br111a", "https://tec.openplanner.team/stops/H4br111b"], ["https://tec.openplanner.team/stops/X901aea", "https://tec.openplanner.team/stops/X901boa"], ["https://tec.openplanner.team/stops/X721aba", "https://tec.openplanner.team/stops/X763aib"], ["https://tec.openplanner.team/stops/Bnvmfba2", "https://tec.openplanner.team/stops/N518aaa"], ["https://tec.openplanner.team/stops/H4ty264a", "https://tec.openplanner.team/stops/H4ty298a"], ["https://tec.openplanner.team/stops/X871ada", "https://tec.openplanner.team/stops/X877aia"], ["https://tec.openplanner.team/stops/H1ho147a", "https://tec.openplanner.team/stops/H1wg127a"], ["https://tec.openplanner.team/stops/H5pe132a", "https://tec.openplanner.team/stops/H5pe142a"], ["https://tec.openplanner.team/stops/H1ht131b", "https://tec.openplanner.team/stops/H1ht136a"], ["https://tec.openplanner.team/stops/Cbfgare1", "https://tec.openplanner.team/stops/Cbfpoti1"], ["https://tec.openplanner.team/stops/LFFmagr1", "https://tec.openplanner.team/stops/LFFruel1"], ["https://tec.openplanner.team/stops/X307aab", "https://tec.openplanner.team/stops/X317aba"], ["https://tec.openplanner.team/stops/N501dnb", "https://tec.openplanner.team/stops/N501eha"], ["https://tec.openplanner.team/stops/Ljeblum2", "https://tec.openplanner.team/stops/Ljerobi2"], ["https://tec.openplanner.team/stops/Lprcard2", "https://tec.openplanner.team/stops/Lprferm2"], ["https://tec.openplanner.team/stops/LDLheid2", "https://tec.openplanner.team/stops/LGMhadr1"], ["https://tec.openplanner.team/stops/N540agb", "https://tec.openplanner.team/stops/N540aib"], ["https://tec.openplanner.team/stops/LBhsign1", "https://tec.openplanner.team/stops/LLycent*"], ["https://tec.openplanner.team/stops/LDOviad1", "https://tec.openplanner.team/stops/LHVetoi1"], ["https://tec.openplanner.team/stops/N524aha", "https://tec.openplanner.team/stops/N524akb"], ["https://tec.openplanner.team/stops/Cbfbies2", "https://tec.openplanner.team/stops/Cctvill2"], ["https://tec.openplanner.team/stops/X685aca", "https://tec.openplanner.team/stops/X685apa"], ["https://tec.openplanner.team/stops/LVvboma2", "https://tec.openplanner.team/stops/X982aha"], ["https://tec.openplanner.team/stops/H1ob331b", "https://tec.openplanner.team/stops/H1ob361a"], ["https://tec.openplanner.team/stops/Bucccal4", "https://tec.openplanner.team/stops/Buccdch2"], ["https://tec.openplanner.team/stops/N134acb", "https://tec.openplanner.team/stops/N135aza"], ["https://tec.openplanner.team/stops/H5el112c", "https://tec.openplanner.team/stops/H5el117b"], ["https://tec.openplanner.team/stops/H4ml208b", "https://tec.openplanner.team/stops/H4ml209b"], ["https://tec.openplanner.team/stops/H4ft134a", "https://tec.openplanner.team/stops/H4ft134b"], ["https://tec.openplanner.team/stops/LLVcent1", "https://tec.openplanner.team/stops/LLVeg--1"], ["https://tec.openplanner.team/stops/Cpclibe3", "https://tec.openplanner.team/stops/Cvvpotv1"], ["https://tec.openplanner.team/stops/X901asb", "https://tec.openplanner.team/stops/X943aba"], ["https://tec.openplanner.team/stops/N343aib", "https://tec.openplanner.team/stops/N343aja"], ["https://tec.openplanner.team/stops/X637aka", "https://tec.openplanner.team/stops/X637akb"], ["https://tec.openplanner.team/stops/LAUcent1", "https://tec.openplanner.team/stops/LAUneuv3"], ["https://tec.openplanner.team/stops/Lsebrun2", "https://tec.openplanner.team/stops/Lseruis1"], ["https://tec.openplanner.team/stops/Btubga02", "https://tec.openplanner.team/stops/Btubga06"], ["https://tec.openplanner.team/stops/Bhenhau1", "https://tec.openplanner.team/stops/Bhenhau2"], ["https://tec.openplanner.team/stops/N558amb", "https://tec.openplanner.team/stops/N558amc"], ["https://tec.openplanner.team/stops/LCRrape1", "https://tec.openplanner.team/stops/LCRrape2"], ["https://tec.openplanner.team/stops/H2na134a", "https://tec.openplanner.team/stops/H2na136a"], ["https://tec.openplanner.team/stops/Bixllep1", "https://tec.openplanner.team/stops/Bixlpat2"], ["https://tec.openplanner.team/stops/LHrchat2", "https://tec.openplanner.team/stops/LHrrard1"], ["https://tec.openplanner.team/stops/LFPchat1", "https://tec.openplanner.team/stops/LFPstro2"], ["https://tec.openplanner.team/stops/H4ef109b", "https://tec.openplanner.team/stops/H4ef138b"], ["https://tec.openplanner.team/stops/LVIferm2", "https://tec.openplanner.team/stops/LVItroi*"], ["https://tec.openplanner.team/stops/X903adb", "https://tec.openplanner.team/stops/X992ajb"], ["https://tec.openplanner.team/stops/Cvtchap1", "https://tec.openplanner.team/stops/Cvtchap2"], ["https://tec.openplanner.team/stops/Bdonlat1", "https://tec.openplanner.team/stops/Bjdsbro1"], ["https://tec.openplanner.team/stops/X601aea", "https://tec.openplanner.team/stops/X601arb"], ["https://tec.openplanner.team/stops/H1bs110b", "https://tec.openplanner.team/stops/H1sb144b"], ["https://tec.openplanner.team/stops/Bsamc7d2", "https://tec.openplanner.team/stops/Bsampli1"], ["https://tec.openplanner.team/stops/N551aha", "https://tec.openplanner.team/stops/N568adb"], ["https://tec.openplanner.team/stops/H2le149b", "https://tec.openplanner.team/stops/H2le153b"], ["https://tec.openplanner.team/stops/X808aib", "https://tec.openplanner.team/stops/X850ala"], ["https://tec.openplanner.team/stops/X837aja", "https://tec.openplanner.team/stops/X837ajb"], ["https://tec.openplanner.team/stops/X602apb", "https://tec.openplanner.team/stops/X602asa"], ["https://tec.openplanner.team/stops/Cmymoha1", "https://tec.openplanner.team/stops/Cmymoha2"], ["https://tec.openplanner.team/stops/Blankal4", "https://tec.openplanner.team/stops/Blanraa2"], ["https://tec.openplanner.team/stops/Bglarha1", "https://tec.openplanner.team/stops/Cgnquer2"], ["https://tec.openplanner.team/stops/Cjubert2", "https://tec.openplanner.team/stops/Cjuepee2"], ["https://tec.openplanner.team/stops/Lhrlalo3", "https://tec.openplanner.team/stops/Lhrlalo4"], ["https://tec.openplanner.team/stops/Bucceng1", "https://tec.openplanner.team/stops/Bucceng2"], ["https://tec.openplanner.team/stops/NB33akb", "https://tec.openplanner.team/stops/NB59akb"], ["https://tec.openplanner.team/stops/LPoewer1", "https://tec.openplanner.team/stops/LPoxhav2"], ["https://tec.openplanner.team/stops/X818aga", "https://tec.openplanner.team/stops/X818agb"], ["https://tec.openplanner.team/stops/N243aab", "https://tec.openplanner.team/stops/N243aeb"], ["https://tec.openplanner.team/stops/Ckevela2", "https://tec.openplanner.team/stops/Ctaprai3"], ["https://tec.openplanner.team/stops/Llgphol1", "https://tec.openplanner.team/stops/Llgphol2"], ["https://tec.openplanner.team/stops/LCShoux1", "https://tec.openplanner.team/stops/LCShoux2"], ["https://tec.openplanner.team/stops/Buccfja1", "https://tec.openplanner.team/stops/Buccplj2"], ["https://tec.openplanner.team/stops/N501ejd", "https://tec.openplanner.team/stops/N501klb"], ["https://tec.openplanner.team/stops/H1gh153b", "https://tec.openplanner.team/stops/H1gh154b"], ["https://tec.openplanner.team/stops/Lanstat1", "https://tec.openplanner.team/stops/Lanstat2"], ["https://tec.openplanner.team/stops/X358abb", "https://tec.openplanner.team/stops/X358afa"], ["https://tec.openplanner.team/stops/N501gta", "https://tec.openplanner.team/stops/N501hhb"], ["https://tec.openplanner.team/stops/X850aba", "https://tec.openplanner.team/stops/X850aca"], ["https://tec.openplanner.team/stops/Cmaegli1", "https://tec.openplanner.team/stops/Cmapeet1"], ["https://tec.openplanner.team/stops/Bplncba1", "https://tec.openplanner.team/stops/Bplncba2"], ["https://tec.openplanner.team/stops/X659aya", "https://tec.openplanner.team/stops/X669aea"], ["https://tec.openplanner.team/stops/Lagcler2", "https://tec.openplanner.team/stops/Lagstre1"], ["https://tec.openplanner.team/stops/X786acb", "https://tec.openplanner.team/stops/X789aga"], ["https://tec.openplanner.team/stops/LPTeg--1", "https://tec.openplanner.team/stops/LPTeg--2"], ["https://tec.openplanner.team/stops/H1mj126b", "https://tec.openplanner.team/stops/H1ml110a"], ["https://tec.openplanner.team/stops/H1bu141b", "https://tec.openplanner.team/stops/H2ep172b"], ["https://tec.openplanner.team/stops/N201aea", "https://tec.openplanner.team/stops/N201aia"], ["https://tec.openplanner.team/stops/H1er109a", "https://tec.openplanner.team/stops/H1er110b"], ["https://tec.openplanner.team/stops/LmYwall2", "https://tec.openplanner.team/stops/LsVmolk2"], ["https://tec.openplanner.team/stops/Bblaang1", "https://tec.openplanner.team/stops/Bblaang2"], ["https://tec.openplanner.team/stops/Crspair2", "https://tec.openplanner.team/stops/Crspana3"], ["https://tec.openplanner.team/stops/LLRgdma1", "https://tec.openplanner.team/stops/LTGsucr1"], ["https://tec.openplanner.team/stops/H1hm177b", "https://tec.openplanner.team/stops/H1ss348a"], ["https://tec.openplanner.team/stops/H2ll172b", "https://tec.openplanner.team/stops/H2ll196a"], ["https://tec.openplanner.team/stops/LHScite2", "https://tec.openplanner.team/stops/LHSfexh2"], ["https://tec.openplanner.team/stops/X717afb", "https://tec.openplanner.team/stops/X718afa"], ["https://tec.openplanner.team/stops/N548acc", "https://tec.openplanner.team/stops/N548acd"], ["https://tec.openplanner.team/stops/Cbcegli6", "https://tec.openplanner.team/stops/Clfpomm2"], ["https://tec.openplanner.team/stops/X782alb", "https://tec.openplanner.team/stops/X782ama"], ["https://tec.openplanner.team/stops/H1te184b", "https://tec.openplanner.team/stops/H1te190b"], ["https://tec.openplanner.team/stops/H4ma411b", "https://tec.openplanner.team/stops/H4ma417a"], ["https://tec.openplanner.team/stops/H2hg150b", "https://tec.openplanner.team/stops/H2hg154e"], ["https://tec.openplanner.team/stops/Lchorme1", "https://tec.openplanner.team/stops/LSReg--1"], ["https://tec.openplanner.team/stops/LORlieg1", "https://tec.openplanner.team/stops/LORmont1"], ["https://tec.openplanner.team/stops/H1ba117a", "https://tec.openplanner.team/stops/H1ba117b"], ["https://tec.openplanner.team/stops/Lhubarl2", "https://tec.openplanner.team/stops/Lhufila1"], ["https://tec.openplanner.team/stops/H2mo127d", "https://tec.openplanner.team/stops/H2mo143a"], ["https://tec.openplanner.team/stops/H4he102b", "https://tec.openplanner.team/stops/H4pq114a"], ["https://tec.openplanner.team/stops/N155afc", "https://tec.openplanner.team/stops/N160aga"], ["https://tec.openplanner.team/stops/X640aca", "https://tec.openplanner.team/stops/X640aga"], ["https://tec.openplanner.team/stops/Ltiegl-*", "https://tec.openplanner.team/stops/Ltiegli3"], ["https://tec.openplanner.team/stops/X943adb", "https://tec.openplanner.team/stops/X943afb"], ["https://tec.openplanner.team/stops/Bovesog2", "https://tec.openplanner.team/stops/Bovevri1"], ["https://tec.openplanner.team/stops/Cfaecmo1", "https://tec.openplanner.team/stops/Cfaecmo2"], ["https://tec.openplanner.team/stops/H2bh118a", "https://tec.openplanner.team/stops/H2bh118b"], ["https://tec.openplanner.team/stops/LhIfrie1", "https://tec.openplanner.team/stops/LrDneun2"], ["https://tec.openplanner.team/stops/H5qu140a", "https://tec.openplanner.team/stops/H5qu158a"], ["https://tec.openplanner.team/stops/Louense2", "https://tec.openplanner.team/stops/Lougare2"], ["https://tec.openplanner.team/stops/H1ca105a", "https://tec.openplanner.team/stops/H1ma237b"], ["https://tec.openplanner.team/stops/X616aeb", "https://tec.openplanner.team/stops/X624aea"], ["https://tec.openplanner.team/stops/N536afa", "https://tec.openplanner.team/stops/N580aga"], ["https://tec.openplanner.team/stops/Cmgarsi1", "https://tec.openplanner.team/stops/Cmgarsi2"], ["https://tec.openplanner.team/stops/LMAfali2", "https://tec.openplanner.team/stops/LMAwavr2"], ["https://tec.openplanner.team/stops/Btubmon2", "https://tec.openplanner.team/stops/Btubsca1"], ["https://tec.openplanner.team/stops/LMNpt--1", "https://tec.openplanner.team/stops/LMsheid1"], ["https://tec.openplanner.team/stops/H4fr385a", "https://tec.openplanner.team/stops/H4fr394a"], ["https://tec.openplanner.team/stops/Ccupdes3", "https://tec.openplanner.team/stops/Ccupomp1"], ["https://tec.openplanner.team/stops/X840aab", "https://tec.openplanner.team/stops/X840acd"], ["https://tec.openplanner.team/stops/X808aaa", "https://tec.openplanner.team/stops/X808aea"], ["https://tec.openplanner.team/stops/X640afb", "https://tec.openplanner.team/stops/X640aga"], ["https://tec.openplanner.team/stops/N538akb", "https://tec.openplanner.team/stops/N538asa"], ["https://tec.openplanner.team/stops/Cmqbert1", "https://tec.openplanner.team/stops/Cmqcend2"], ["https://tec.openplanner.team/stops/N576akb", "https://tec.openplanner.team/stops/N576akd"], ["https://tec.openplanner.team/stops/LTRcarr1", "https://tec.openplanner.team/stops/LTRchpl2"], ["https://tec.openplanner.team/stops/X750afb", "https://tec.openplanner.team/stops/X750bgb"], ["https://tec.openplanner.team/stops/Bmsaegl1", "https://tec.openplanner.team/stops/NB33afb"], ["https://tec.openplanner.team/stops/H4fr139b", "https://tec.openplanner.team/stops/H4oq223b"], ["https://tec.openplanner.team/stops/H1le127b", "https://tec.openplanner.team/stops/H1le130b"], ["https://tec.openplanner.team/stops/X992acb", "https://tec.openplanner.team/stops/X992aia"], ["https://tec.openplanner.team/stops/LeUkehr2", "https://tec.openplanner.team/stops/LeUkehr3"], ["https://tec.openplanner.team/stops/X993acb", "https://tec.openplanner.team/stops/X994ala"], ["https://tec.openplanner.team/stops/H1ci106a", "https://tec.openplanner.team/stops/H1no140a"], ["https://tec.openplanner.team/stops/LOV62--2", "https://tec.openplanner.team/stops/LRObarr1"], ["https://tec.openplanner.team/stops/N425aab", "https://tec.openplanner.team/stops/N425agb"], ["https://tec.openplanner.team/stops/Ljelexh1", "https://tec.openplanner.team/stops/Ljestat3"], ["https://tec.openplanner.team/stops/Clbchba1", "https://tec.openplanner.team/stops/Cthpano2"], ["https://tec.openplanner.team/stops/Lhrmemo1", "https://tec.openplanner.team/stops/Lhrspi-1"], ["https://tec.openplanner.team/stops/H4wi164b", "https://tec.openplanner.team/stops/H4wi168a"], ["https://tec.openplanner.team/stops/Lagstre1", "https://tec.openplanner.team/stops/Lemlami2"], ["https://tec.openplanner.team/stops/H1ms296a", "https://tec.openplanner.team/stops/H1ms301a"], ["https://tec.openplanner.team/stops/H2pe162b", "https://tec.openplanner.team/stops/H3bi118b"], ["https://tec.openplanner.team/stops/X943abb", "https://tec.openplanner.team/stops/X943aca"], ["https://tec.openplanner.team/stops/X652aaa", "https://tec.openplanner.team/stops/X652abb"], ["https://tec.openplanner.team/stops/LeYraaf1", "https://tec.openplanner.team/stops/LrAalte1"], ["https://tec.openplanner.team/stops/H5rx110a", "https://tec.openplanner.team/stops/H5rx128a"], ["https://tec.openplanner.team/stops/N501aga", "https://tec.openplanner.team/stops/N501agb"], ["https://tec.openplanner.team/stops/H4ga157a", "https://tec.openplanner.team/stops/H4ga160a"], ["https://tec.openplanner.team/stops/Bbgncnd1", "https://tec.openplanner.team/stops/Bbgnvel1"], ["https://tec.openplanner.team/stops/Llgbour2", "https://tec.openplanner.team/stops/Llgcmes4"], ["https://tec.openplanner.team/stops/H2ll179a", "https://tec.openplanner.team/stops/H2sv216a"], ["https://tec.openplanner.team/stops/N311abb", "https://tec.openplanner.team/stops/N368acb"], ["https://tec.openplanner.team/stops/N506anb", "https://tec.openplanner.team/stops/N506apb"], ["https://tec.openplanner.team/stops/LENindu2", "https://tec.openplanner.team/stops/LENsent1"], ["https://tec.openplanner.team/stops/X993aha", "https://tec.openplanner.team/stops/X993aia"], ["https://tec.openplanner.team/stops/Bbchm382", "https://tec.openplanner.team/stops/Bbchndb1"], ["https://tec.openplanner.team/stops/N534arb", "https://tec.openplanner.team/stops/N534bfa"], ["https://tec.openplanner.team/stops/X615ara", "https://tec.openplanner.team/stops/X615arb"], ["https://tec.openplanner.team/stops/Bbounci1", "https://tec.openplanner.team/stops/Bcerpco2"], ["https://tec.openplanner.team/stops/N232cba", "https://tec.openplanner.team/stops/N232cbb"], ["https://tec.openplanner.team/stops/X666aga", "https://tec.openplanner.team/stops/X666ama"], ["https://tec.openplanner.team/stops/H5qu141a", "https://tec.openplanner.team/stops/H5qu141b"], ["https://tec.openplanner.team/stops/Lrccomm2", "https://tec.openplanner.team/stops/Lrchype2"], ["https://tec.openplanner.team/stops/H1hm173b", "https://tec.openplanner.team/stops/H1ss351a"], ["https://tec.openplanner.team/stops/LTPec--1", "https://tec.openplanner.team/stops/LTPplco1"], ["https://tec.openplanner.team/stops/Ljulieg2", "https://tec.openplanner.team/stops/Llgatel1"], ["https://tec.openplanner.team/stops/N501hka", "https://tec.openplanner.team/stops/N501lra"], ["https://tec.openplanner.team/stops/N118afb", "https://tec.openplanner.team/stops/N118aha"], ["https://tec.openplanner.team/stops/N501lja", "https://tec.openplanner.team/stops/N501llb"], ["https://tec.openplanner.team/stops/H4ar102b", "https://tec.openplanner.team/stops/H4pl136a"], ["https://tec.openplanner.team/stops/H4be147a", "https://tec.openplanner.team/stops/H5bl116b"], ["https://tec.openplanner.team/stops/LBOec--2", "https://tec.openplanner.team/stops/LBWbatt1"], ["https://tec.openplanner.team/stops/H3bo101b", "https://tec.openplanner.team/stops/H3th127a"], ["https://tec.openplanner.team/stops/Bolggar1", "https://tec.openplanner.team/stops/Bolpmre2"], ["https://tec.openplanner.team/stops/LAUbirv2", "https://tec.openplanner.team/stops/LHMchev2"], ["https://tec.openplanner.team/stops/H4er125b", "https://tec.openplanner.team/stops/H4ta134b"], ["https://tec.openplanner.team/stops/N424abb", "https://tec.openplanner.team/stops/N424aca"], ["https://tec.openplanner.team/stops/H2ch104a", "https://tec.openplanner.team/stops/H2ch106b"], ["https://tec.openplanner.team/stops/N539axa", "https://tec.openplanner.team/stops/N539azb"], ["https://tec.openplanner.team/stops/X627aab", "https://tec.openplanner.team/stops/X627ada"], ["https://tec.openplanner.team/stops/X879aca", "https://tec.openplanner.team/stops/X879adb"], ["https://tec.openplanner.team/stops/N501chc", "https://tec.openplanner.team/stops/N502adb"], ["https://tec.openplanner.team/stops/N530agb", "https://tec.openplanner.team/stops/N534ata"], ["https://tec.openplanner.team/stops/X922ala", "https://tec.openplanner.team/stops/X942afb"], ["https://tec.openplanner.team/stops/N501brb", "https://tec.openplanner.team/stops/N501mwa"], ["https://tec.openplanner.team/stops/X897aqa", "https://tec.openplanner.team/stops/X897awa"], ["https://tec.openplanner.team/stops/H4ch117b", "https://tec.openplanner.team/stops/H4jm118a"], ["https://tec.openplanner.team/stops/N155ada", "https://tec.openplanner.team/stops/N155adb"], ["https://tec.openplanner.team/stops/Bqueaga1", "https://tec.openplanner.team/stops/Bquepla2"], ["https://tec.openplanner.team/stops/H4ne137b", "https://tec.openplanner.team/stops/H4ne139a"], ["https://tec.openplanner.team/stops/H4bo114a", "https://tec.openplanner.team/stops/H4bo181a"], ["https://tec.openplanner.team/stops/H1ca102b", "https://tec.openplanner.team/stops/H1ca103a"], ["https://tec.openplanner.team/stops/X633aba", "https://tec.openplanner.team/stops/X633abb"], ["https://tec.openplanner.team/stops/H4an108a", "https://tec.openplanner.team/stops/H4an110b"], ["https://tec.openplanner.team/stops/LFUfleu2", "https://tec.openplanner.team/stops/LWDcime2"], ["https://tec.openplanner.team/stops/Blasbh51", "https://tec.openplanner.team/stops/Bottpin2"], ["https://tec.openplanner.team/stops/LTPsatr1", "https://tec.openplanner.team/stops/LTPspay2"], ["https://tec.openplanner.team/stops/N117bca", "https://tec.openplanner.team/stops/N117bcd"], ["https://tec.openplanner.team/stops/N120abb", "https://tec.openplanner.team/stops/N120acb"], ["https://tec.openplanner.team/stops/LYEphar1", "https://tec.openplanner.team/stops/LYEphar2"], ["https://tec.openplanner.team/stops/LSemc--1", "https://tec.openplanner.team/stops/LSemc--4"], ["https://tec.openplanner.team/stops/Lsmcime*", "https://tec.openplanner.team/stops/Lsmh1802"], ["https://tec.openplanner.team/stops/LTiforg1", "https://tec.openplanner.team/stops/LTiterr1"], ["https://tec.openplanner.team/stops/Bbcocou1", "https://tec.openplanner.team/stops/Bbcocou2"], ["https://tec.openplanner.team/stops/N501jja", "https://tec.openplanner.team/stops/N521aea"], ["https://tec.openplanner.team/stops/LNCmele1", "https://tec.openplanner.team/stops/LRRelec2"], ["https://tec.openplanner.team/stops/LXofont2", "https://tec.openplanner.team/stops/LXopeti1"], ["https://tec.openplanner.team/stops/Cmecite1", "https://tec.openplanner.team/stops/Cvpcime1"], ["https://tec.openplanner.team/stops/N116aea", "https://tec.openplanner.team/stops/N118bab"], ["https://tec.openplanner.team/stops/Boppcar1", "https://tec.openplanner.team/stops/Boppcar2"], ["https://tec.openplanner.team/stops/X715aia", "https://tec.openplanner.team/stops/X715akb"], ["https://tec.openplanner.team/stops/X902ajb", "https://tec.openplanner.team/stops/X902aka"], ["https://tec.openplanner.team/stops/LmImirf1", "https://tec.openplanner.team/stops/LmRmuhl2"], ["https://tec.openplanner.team/stops/LBIcabi1", "https://tec.openplanner.team/stops/LBIvill4"], ["https://tec.openplanner.team/stops/Btubfab1", "https://tec.openplanner.team/stops/Btubmfa1"], ["https://tec.openplanner.team/stops/Ljemake1", "https://tec.openplanner.team/stops/Ljerouy1"], ["https://tec.openplanner.team/stops/LMuvill2", "https://tec.openplanner.team/stops/LSDheus2"], ["https://tec.openplanner.team/stops/N131afa", "https://tec.openplanner.team/stops/N423agb"], ["https://tec.openplanner.team/stops/N560aab", "https://tec.openplanner.team/stops/N560acb"], ["https://tec.openplanner.team/stops/Bcrbros1", "https://tec.openplanner.team/stops/Bcrbtho2"], ["https://tec.openplanner.team/stops/X805akb", "https://tec.openplanner.team/stops/X873aaa"], ["https://tec.openplanner.team/stops/LBAtign1", "https://tec.openplanner.team/stops/LBAtign2"], ["https://tec.openplanner.team/stops/N111aca", "https://tec.openplanner.team/stops/N111adb"], ["https://tec.openplanner.team/stops/N308acb", "https://tec.openplanner.team/stops/N308bhb"], ["https://tec.openplanner.team/stops/LHreg--2", "https://tec.openplanner.team/stops/LHrrard2"], ["https://tec.openplanner.team/stops/LEBmoul1", "https://tec.openplanner.team/stops/LWOwonc1"], ["https://tec.openplanner.team/stops/LBBodet2", "https://tec.openplanner.team/stops/X222ala"], ["https://tec.openplanner.team/stops/H1ss350b", "https://tec.openplanner.team/stops/H1ss352b"], ["https://tec.openplanner.team/stops/H1og130b", "https://tec.openplanner.team/stops/H1og132a"], ["https://tec.openplanner.team/stops/X736aca", "https://tec.openplanner.team/stops/X736adb"], ["https://tec.openplanner.team/stops/X641amb", "https://tec.openplanner.team/stops/X673ada"], ["https://tec.openplanner.team/stops/X983aaa", "https://tec.openplanner.team/stops/X986aib"], ["https://tec.openplanner.team/stops/Bwavcen1", "https://tec.openplanner.team/stops/Bwavpao2"], ["https://tec.openplanner.team/stops/LPbchat1", "https://tec.openplanner.team/stops/LPbchat2"], ["https://tec.openplanner.team/stops/Bpthcgo1", "https://tec.openplanner.team/stops/Bpthfus2"], ["https://tec.openplanner.team/stops/X614aba", "https://tec.openplanner.team/stops/X614aca"], ["https://tec.openplanner.team/stops/LGEcent1", "https://tec.openplanner.team/stops/LGEhosp2"], ["https://tec.openplanner.team/stops/H4bi156a", "https://tec.openplanner.team/stops/H4te256a"], ["https://tec.openplanner.team/stops/N584cab", "https://tec.openplanner.team/stops/N584cac"], ["https://tec.openplanner.team/stops/Bsomthi1", "https://tec.openplanner.team/stops/N584afa"], ["https://tec.openplanner.team/stops/X921aba", "https://tec.openplanner.team/stops/X921ada"], ["https://tec.openplanner.team/stops/H2ll177b", "https://tec.openplanner.team/stops/H2ll189c"], ["https://tec.openplanner.team/stops/LHEcruc1", "https://tec.openplanner.team/stops/LHEhv--1"], ["https://tec.openplanner.team/stops/X806ajb", "https://tec.openplanner.team/stops/X808aha"], ["https://tec.openplanner.team/stops/Cmehels1", "https://tec.openplanner.team/stops/Cmerlme2"], ["https://tec.openplanner.team/stops/Clgrsoc1", "https://tec.openplanner.team/stops/Clgrsoc2"], ["https://tec.openplanner.team/stops/H1ms258a", "https://tec.openplanner.team/stops/H1ms305a"], ["https://tec.openplanner.team/stops/LJAbell1", "https://tec.openplanner.team/stops/LJAbell4"], ["https://tec.openplanner.team/stops/LAvatri2", "https://tec.openplanner.team/stops/NL37aob"], ["https://tec.openplanner.team/stops/X616aaa", "https://tec.openplanner.team/stops/X616aea"], ["https://tec.openplanner.team/stops/Bwancal4", "https://tec.openplanner.team/stops/Bwanthi1"], ["https://tec.openplanner.team/stops/H1wi151a", "https://tec.openplanner.team/stops/H1wi151b"], ["https://tec.openplanner.team/stops/X614axb", "https://tec.openplanner.team/stops/X614aya"], ["https://tec.openplanner.team/stops/X804afa", "https://tec.openplanner.team/stops/X804afb"], ["https://tec.openplanner.team/stops/Bjodcar1", "https://tec.openplanner.team/stops/Bjodint2"], ["https://tec.openplanner.team/stops/Lmoknae1", "https://tec.openplanner.team/stops/Lmoknae2"], ["https://tec.openplanner.team/stops/Cldvign1", "https://tec.openplanner.team/stops/CMleer2"], ["https://tec.openplanner.team/stops/X715agb", "https://tec.openplanner.team/stops/X731abb"], ["https://tec.openplanner.team/stops/N209aeb", "https://tec.openplanner.team/stops/N209afb"], ["https://tec.openplanner.team/stops/N543ajb", "https://tec.openplanner.team/stops/N543awh"], ["https://tec.openplanner.team/stops/H1mk108d", "https://tec.openplanner.team/stops/H1mk117a"], ["https://tec.openplanner.team/stops/X768aia", "https://tec.openplanner.team/stops/X769aka"], ["https://tec.openplanner.team/stops/X604ada", "https://tec.openplanner.team/stops/X604adb"], ["https://tec.openplanner.team/stops/LBlplac1", "https://tec.openplanner.team/stops/LLUg82-2"], ["https://tec.openplanner.team/stops/Blthwav2", "https://tec.openplanner.team/stops/Blthwav4"], ["https://tec.openplanner.team/stops/Blpgbat2", "https://tec.openplanner.team/stops/Blpglon1"], ["https://tec.openplanner.team/stops/Bwatber1", "https://tec.openplanner.team/stops/Bwatfon1"], ["https://tec.openplanner.team/stops/X743adb", "https://tec.openplanner.team/stops/X743aeb"], ["https://tec.openplanner.team/stops/X765afb", "https://tec.openplanner.team/stops/X765agb"], ["https://tec.openplanner.team/stops/Bgnvdep1", "https://tec.openplanner.team/stops/Bgnvdep2"], ["https://tec.openplanner.team/stops/H1mq198b", "https://tec.openplanner.team/stops/H1mq200b"], ["https://tec.openplanner.team/stops/X657afa", "https://tec.openplanner.team/stops/X670apa"], ["https://tec.openplanner.team/stops/LSNness2", "https://tec.openplanner.team/stops/LXHfalh1"], ["https://tec.openplanner.team/stops/X608afb", "https://tec.openplanner.team/stops/X608aia"], ["https://tec.openplanner.team/stops/X649aba", "https://tec.openplanner.team/stops/X671aeb"], ["https://tec.openplanner.team/stops/H1ma234a", "https://tec.openplanner.team/stops/H1ni323a"], ["https://tec.openplanner.team/stops/Lveharm2", "https://tec.openplanner.team/stops/Lveveou1"], ["https://tec.openplanner.team/stops/Crspana4", "https://tec.openplanner.team/stops/Crsprai4"], ["https://tec.openplanner.team/stops/Loudela1", "https://tec.openplanner.team/stops/Louegla1"], ["https://tec.openplanner.team/stops/LOreg--2", "https://tec.openplanner.team/stops/LRUhama2"], ["https://tec.openplanner.team/stops/X663aia", "https://tec.openplanner.team/stops/X663alb"], ["https://tec.openplanner.team/stops/X897aaa", "https://tec.openplanner.team/stops/X897aeb"], ["https://tec.openplanner.team/stops/LPOchan1", "https://tec.openplanner.team/stops/LPOwaut1"], ["https://tec.openplanner.team/stops/Bbstcha1", "https://tec.openplanner.team/stops/Blpgeco2"], ["https://tec.openplanner.team/stops/Ladmoul2", "https://tec.openplanner.team/stops/Ladppir1"], ["https://tec.openplanner.team/stops/X359abb", "https://tec.openplanner.team/stops/X359acb"], ["https://tec.openplanner.team/stops/Bjodrga1", "https://tec.openplanner.team/stops/Bjodrrg2"], ["https://tec.openplanner.team/stops/NL76agb", "https://tec.openplanner.team/stops/NL76ahb"], ["https://tec.openplanner.team/stops/Bflcneu2", "https://tec.openplanner.team/stops/NR27aaa"], ["https://tec.openplanner.team/stops/Llgcour2", "https://tec.openplanner.team/stops/Llglibo3"], ["https://tec.openplanner.team/stops/Cfomays1", "https://tec.openplanner.team/stops/CMpara1"], ["https://tec.openplanner.team/stops/X657aib", "https://tec.openplanner.team/stops/X657ajb"], ["https://tec.openplanner.team/stops/LrUweve2", "https://tec.openplanner.team/stops/LsFcafe2"], ["https://tec.openplanner.team/stops/Cmtcapi1", "https://tec.openplanner.team/stops/Cmtfabi2"], ["https://tec.openplanner.team/stops/Bmalper2", "https://tec.openplanner.team/stops/Btlbgla1"], ["https://tec.openplanner.team/stops/Lbococh2", "https://tec.openplanner.team/stops/Lousimo2"], ["https://tec.openplanner.team/stops/Cchmott1", "https://tec.openplanner.team/stops/Cchwarm1"], ["https://tec.openplanner.team/stops/H1eu105a", "https://tec.openplanner.team/stops/H1eu107b"], ["https://tec.openplanner.team/stops/LkEl1212", "https://tec.openplanner.team/stops/LMsec--1"], ["https://tec.openplanner.team/stops/Lceprog2", "https://tec.openplanner.team/stops/Lgrcral2"], ["https://tec.openplanner.team/stops/N135aec", "https://tec.openplanner.team/stops/N143aaa"], ["https://tec.openplanner.team/stops/Cmlbuis3", "https://tec.openplanner.team/stops/Cmlphai2"], ["https://tec.openplanner.team/stops/X762afa", "https://tec.openplanner.team/stops/X762aga"], ["https://tec.openplanner.team/stops/X641aja", "https://tec.openplanner.team/stops/X641ajb"], ["https://tec.openplanner.team/stops/LCsbors2", "https://tec.openplanner.team/stops/LCschen2"], ["https://tec.openplanner.team/stops/H1he110b", "https://tec.openplanner.team/stops/H1qv110b"], ["https://tec.openplanner.team/stops/H2an101a", "https://tec.openplanner.team/stops/H2an104b"], ["https://tec.openplanner.team/stops/X756aaa", "https://tec.openplanner.team/stops/X756aka"], ["https://tec.openplanner.team/stops/Bcsempl2", "https://tec.openplanner.team/stops/Bsmgpla2"], ["https://tec.openplanner.team/stops/Cfawain2", "https://tec.openplanner.team/stops/Cflsabl2"], ["https://tec.openplanner.team/stops/H1sp357a", "https://tec.openplanner.team/stops/H1sp357c"], ["https://tec.openplanner.team/stops/Bptecar1", "https://tec.openplanner.team/stops/Bptecar2"], ["https://tec.openplanner.team/stops/X615aca", "https://tec.openplanner.team/stops/X615acb"], ["https://tec.openplanner.team/stops/Bnstgar1", "https://tec.openplanner.team/stops/Bnstpla1"], ["https://tec.openplanner.team/stops/H5qu156a", "https://tec.openplanner.team/stops/H5qu156c"], ["https://tec.openplanner.team/stops/Lfhcime2", "https://tec.openplanner.team/stops/Lfhvoye2"], ["https://tec.openplanner.team/stops/LmI82--1", "https://tec.openplanner.team/stops/LmIzent2"], ["https://tec.openplanner.team/stops/Lghbonn1", "https://tec.openplanner.team/stops/Lghflot2"], ["https://tec.openplanner.team/stops/Lhubarl1", "https://tec.openplanner.team/stops/Lmnfawe1"], ["https://tec.openplanner.team/stops/X820acb", "https://tec.openplanner.team/stops/X820agd"], ["https://tec.openplanner.team/stops/NC14aob", "https://tec.openplanner.team/stops/NC14aub"], ["https://tec.openplanner.team/stops/LCeanne2", "https://tec.openplanner.team/stops/LCewaut2"], ["https://tec.openplanner.team/stops/Cgrgend2", "https://tec.openplanner.team/stops/NC14anb"], ["https://tec.openplanner.team/stops/LFIeg--2", "https://tec.openplanner.team/stops/LFIinse2"], ["https://tec.openplanner.team/stops/LSygerm1", "https://tec.openplanner.team/stops/LTNsarl2"], ["https://tec.openplanner.team/stops/N201aea", "https://tec.openplanner.team/stops/N201asb"], ["https://tec.openplanner.team/stops/Bquegob2", "https://tec.openplanner.team/stops/Brebmtg1"], ["https://tec.openplanner.team/stops/N525aec", "https://tec.openplanner.team/stops/N525afa"], ["https://tec.openplanner.team/stops/X901aya", "https://tec.openplanner.team/stops/X901bta"], ["https://tec.openplanner.team/stops/Buccbou2", "https://tec.openplanner.team/stops/Bucceng1"], ["https://tec.openplanner.team/stops/Brsrpch1", "https://tec.openplanner.team/stops/Brsrpri2"], ["https://tec.openplanner.team/stops/H4ir166a", "https://tec.openplanner.team/stops/H5at135a"], ["https://tec.openplanner.team/stops/X902aza", "https://tec.openplanner.team/stops/X902bga"], ["https://tec.openplanner.team/stops/H1gh147a", "https://tec.openplanner.team/stops/H1gh168a"], ["https://tec.openplanner.team/stops/Bnetrec1", "https://tec.openplanner.team/stops/Bnettir1"], ["https://tec.openplanner.team/stops/Bbeaap52", "https://tec.openplanner.team/stops/Bbeapim1"], ["https://tec.openplanner.team/stops/LORdtec*", "https://tec.openplanner.team/stops/LORroma1"], ["https://tec.openplanner.team/stops/LAxbott1", "https://tec.openplanner.team/stops/Lmiensp*"], ["https://tec.openplanner.team/stops/LRRoser2", "https://tec.openplanner.team/stops/LTaouch1"], ["https://tec.openplanner.team/stops/Cgrsaul2", "https://tec.openplanner.team/stops/NC14aha"], ["https://tec.openplanner.team/stops/NR27aab", "https://tec.openplanner.team/stops/NR27aba"], ["https://tec.openplanner.team/stops/Landeja2", "https://tec.openplanner.team/stops/Lanothe2"], ["https://tec.openplanner.team/stops/X995abb", "https://tec.openplanner.team/stops/X995ada"], ["https://tec.openplanner.team/stops/N224aba", "https://tec.openplanner.team/stops/N349aba"], ["https://tec.openplanner.team/stops/Llojeme3", "https://tec.openplanner.team/stops/Llojeme4"], ["https://tec.openplanner.team/stops/H1ba103b", "https://tec.openplanner.team/stops/H1ba114a"], ["https://tec.openplanner.team/stops/X664alb", "https://tec.openplanner.team/stops/X664amc"], ["https://tec.openplanner.team/stops/N513bhb", "https://tec.openplanner.team/stops/N521ava"], ["https://tec.openplanner.team/stops/H4hq133b", "https://tec.openplanner.team/stops/H4hq134a"], ["https://tec.openplanner.team/stops/Llgancd2", "https://tec.openplanner.team/stops/LlgguilC"], ["https://tec.openplanner.team/stops/Baisbar1", "https://tec.openplanner.team/stops/Bperqui2"], ["https://tec.openplanner.team/stops/LLrcomb2", "https://tec.openplanner.team/stops/LLrmc--1"], ["https://tec.openplanner.team/stops/LBTnors1", "https://tec.openplanner.team/stops/LBTnors2"], ["https://tec.openplanner.team/stops/X616aca", "https://tec.openplanner.team/stops/X616acb"], ["https://tec.openplanner.team/stops/X923adb", "https://tec.openplanner.team/stops/X949ala"], ["https://tec.openplanner.team/stops/X661aqa", "https://tec.openplanner.team/stops/X840agb"], ["https://tec.openplanner.team/stops/X601atb", "https://tec.openplanner.team/stops/X601cqa"], ["https://tec.openplanner.team/stops/Bllnhoc2", "https://tec.openplanner.team/stops/Bottppa1"], ["https://tec.openplanner.team/stops/Cjurevo1", "https://tec.openplanner.team/stops/Cjurevo2"], ["https://tec.openplanner.team/stops/Bbalvil1", "https://tec.openplanner.team/stops/N534bgb"], ["https://tec.openplanner.team/stops/H4va231b", "https://tec.openplanner.team/stops/H4va233b"], ["https://tec.openplanner.team/stops/LLgcent1", "https://tec.openplanner.team/stops/LTPhenr2"], ["https://tec.openplanner.team/stops/LVnflox1", "https://tec.openplanner.team/stops/LVnvieg2"], ["https://tec.openplanner.team/stops/X735abc", "https://tec.openplanner.team/stops/X735acb"], ["https://tec.openplanner.team/stops/LWaanto2", "https://tec.openplanner.team/stops/LWathir2"], ["https://tec.openplanner.team/stops/Llgerac2", "https://tec.openplanner.team/stops/Llgfont4"], ["https://tec.openplanner.team/stops/X817aea", "https://tec.openplanner.team/stops/X817agb"], ["https://tec.openplanner.team/stops/N559aaa", "https://tec.openplanner.team/stops/N559aeb"], ["https://tec.openplanner.team/stops/Bixlozo1", "https://tec.openplanner.team/stops/Bwbfhip1"], ["https://tec.openplanner.team/stops/H2hp118b", "https://tec.openplanner.team/stops/H2hp125b"], ["https://tec.openplanner.team/stops/X661aga", "https://tec.openplanner.team/stops/X661ava"], ["https://tec.openplanner.team/stops/N101aeb", "https://tec.openplanner.team/stops/N147aaa"], ["https://tec.openplanner.team/stops/H1ms263a", "https://tec.openplanner.team/stops/H1ms310a"], ["https://tec.openplanner.team/stops/Ljegare1", "https://tec.openplanner.team/stops/Ljetomb2"], ["https://tec.openplanner.team/stops/H1ho141a", "https://tec.openplanner.team/stops/H1wg126a"], ["https://tec.openplanner.team/stops/H1bo100b", "https://tec.openplanner.team/stops/H1ho123b"], ["https://tec.openplanner.team/stops/N534bkg", "https://tec.openplanner.team/stops/N534bmb"], ["https://tec.openplanner.team/stops/Cfbcal1", "https://tec.openplanner.team/stops/Cfbegli1"], ["https://tec.openplanner.team/stops/H2mg149b", "https://tec.openplanner.team/stops/H2mg150a"], ["https://tec.openplanner.team/stops/LNClila1", "https://tec.openplanner.team/stops/LNClila2"], ["https://tec.openplanner.team/stops/LACeg--2", "https://tec.openplanner.team/stops/LACwass1"], ["https://tec.openplanner.team/stops/Blhuibm1", "https://tec.openplanner.team/stops/Blhuibm2"], ["https://tec.openplanner.team/stops/NL80aha", "https://tec.openplanner.team/stops/NL80ahb"], ["https://tec.openplanner.team/stops/LBkbamb2", "https://tec.openplanner.team/stops/LkEl3252"], ["https://tec.openplanner.team/stops/Bbiecoc1", "https://tec.openplanner.team/stops/Bbiecoc2"], ["https://tec.openplanner.team/stops/N528ama", "https://tec.openplanner.team/stops/N528apa"], ["https://tec.openplanner.team/stops/Lceleje1", "https://tec.openplanner.team/stops/Lcepass1"], ["https://tec.openplanner.team/stops/H4fa167b", "https://tec.openplanner.team/stops/H4ss153a"], ["https://tec.openplanner.team/stops/X601afb", "https://tec.openplanner.team/stops/X601bta"], ["https://tec.openplanner.team/stops/H1ho129a", "https://tec.openplanner.team/stops/H1ho134a"], ["https://tec.openplanner.team/stops/Baegegl1", "https://tec.openplanner.team/stops/Bflcneu2"], ["https://tec.openplanner.team/stops/H3br110b", "https://tec.openplanner.team/stops/H3br112a"], ["https://tec.openplanner.team/stops/Bcsempl1", "https://tec.openplanner.team/stops/Bcsempl2"], ["https://tec.openplanner.team/stops/Lmocalv1", "https://tec.openplanner.team/stops/Lmomine1"], ["https://tec.openplanner.team/stops/X731aga", "https://tec.openplanner.team/stops/X731aib"], ["https://tec.openplanner.team/stops/H1br134a", "https://tec.openplanner.team/stops/H1br134b"], ["https://tec.openplanner.team/stops/Bovecha2", "https://tec.openplanner.team/stops/Bovetdo1"], ["https://tec.openplanner.team/stops/H4ch113b", "https://tec.openplanner.team/stops/H4cl113a"], ["https://tec.openplanner.team/stops/Cprbevu2", "https://tec.openplanner.team/stops/Cprsapv2"], ["https://tec.openplanner.team/stops/H1ha188a", "https://tec.openplanner.team/stops/H1ha199a"], ["https://tec.openplanner.team/stops/X872aga", "https://tec.openplanner.team/stops/X887aab"], ["https://tec.openplanner.team/stops/LMIlac-1", "https://tec.openplanner.team/stops/Lrechap1"], ["https://tec.openplanner.team/stops/N313aba", "https://tec.openplanner.team/stops/N350adb"], ["https://tec.openplanner.team/stops/N135aza", "https://tec.openplanner.team/stops/N135bib"], ["https://tec.openplanner.team/stops/X622aca", "https://tec.openplanner.team/stops/X622aea"], ["https://tec.openplanner.team/stops/Bglacsr1", "https://tec.openplanner.team/stops/Bwaypon1"], ["https://tec.openplanner.team/stops/H2sb233c", "https://tec.openplanner.team/stops/H2sb238a"], ["https://tec.openplanner.team/stops/LPrcarr2", "https://tec.openplanner.team/stops/LTNmont1"], ["https://tec.openplanner.team/stops/Llghong2", "https://tec.openplanner.team/stops/Llgvelb2"], ["https://tec.openplanner.team/stops/LWelogi1", "https://tec.openplanner.team/stops/LWepost3"], ["https://tec.openplanner.team/stops/X614aha", "https://tec.openplanner.team/stops/X614ata"], ["https://tec.openplanner.team/stops/Lccawir2", "https://tec.openplanner.team/stops/Lccuner1"], ["https://tec.openplanner.team/stops/Lcepepi1", "https://tec.openplanner.team/stops/Lcepepi2"], ["https://tec.openplanner.team/stops/Bgntpos1", "https://tec.openplanner.team/stops/Bgntpos2"], ["https://tec.openplanner.team/stops/LHUaveu1", "https://tec.openplanner.team/stops/NL80afa"], ["https://tec.openplanner.team/stops/Cchba12", "https://tec.openplanner.team/stops/Cchfort1"], ["https://tec.openplanner.team/stops/Bhevcur2", "https://tec.openplanner.team/stops/Bvilvil3"], ["https://tec.openplanner.team/stops/N232aha", "https://tec.openplanner.team/stops/N232bqb"], ["https://tec.openplanner.team/stops/Bettcha2", "https://tec.openplanner.team/stops/Bettlha2"], ["https://tec.openplanner.team/stops/N217abb", "https://tec.openplanner.team/stops/N217acc"], ["https://tec.openplanner.team/stops/N503aeb", "https://tec.openplanner.team/stops/N503aib"], ["https://tec.openplanner.team/stops/Bdonlat1", "https://tec.openplanner.team/stops/Bdonlat2"], ["https://tec.openplanner.team/stops/X608abb", "https://tec.openplanner.team/stops/X608aca"], ["https://tec.openplanner.team/stops/H1bd103b", "https://tec.openplanner.team/stops/H1hq129a"], ["https://tec.openplanner.team/stops/H4lu125a", "https://tec.openplanner.team/stops/H4lu126a"], ["https://tec.openplanner.team/stops/LWAcost2", "https://tec.openplanner.team/stops/LWApt--2"], ["https://tec.openplanner.team/stops/Lfhhosp2", "https://tec.openplanner.team/stops/Lfhxhor1"], ["https://tec.openplanner.team/stops/N538ava", "https://tec.openplanner.team/stops/N538avb"], ["https://tec.openplanner.team/stops/X641atb", "https://tec.openplanner.team/stops/X641azb"], ["https://tec.openplanner.team/stops/N349aia", "https://tec.openplanner.team/stops/N351aqa"], ["https://tec.openplanner.team/stops/N539aoa", "https://tec.openplanner.team/stops/N539aob"], ["https://tec.openplanner.team/stops/Bbcodam3", "https://tec.openplanner.team/stops/Bbcodam4"], ["https://tec.openplanner.team/stops/Cmlvpla1", "https://tec.openplanner.team/stops/CMsud1"], ["https://tec.openplanner.team/stops/Lcapisc2", "https://tec.openplanner.team/stops/Lvcbasi*"], ["https://tec.openplanner.team/stops/Lflgare1", "https://tec.openplanner.team/stops/Lflterm1"], ["https://tec.openplanner.team/stops/H1fa120b", "https://tec.openplanner.team/stops/H1pe132b"], ["https://tec.openplanner.team/stops/H1bo103b", "https://tec.openplanner.team/stops/H1te198b"], ["https://tec.openplanner.team/stops/H2na135b", "https://tec.openplanner.team/stops/H3so172b"], ["https://tec.openplanner.team/stops/LAWjaur1", "https://tec.openplanner.team/stops/LAWvold2"], ["https://tec.openplanner.team/stops/LLefali1", "https://tec.openplanner.team/stops/LLelava1"], ["https://tec.openplanner.team/stops/X989aeb", "https://tec.openplanner.team/stops/X989afb"], ["https://tec.openplanner.team/stops/LbTdoma1", "https://tec.openplanner.team/stops/LbTdoma2"], ["https://tec.openplanner.team/stops/X999agb", "https://tec.openplanner.team/stops/X999aob"], ["https://tec.openplanner.team/stops/X910adb", "https://tec.openplanner.team/stops/X910afa"], ["https://tec.openplanner.team/stops/Brsrbbo1", "https://tec.openplanner.team/stops/Brsregl4"], ["https://tec.openplanner.team/stops/H4bo178a", "https://tec.openplanner.team/stops/H4bo179b"], ["https://tec.openplanner.team/stops/Bottppa2", "https://tec.openplanner.team/stops/Bottppa4"], ["https://tec.openplanner.team/stops/Cbbcrbo2", "https://tec.openplanner.team/stops/Cbmvalt2"], ["https://tec.openplanner.team/stops/H4vz369a", "https://tec.openplanner.team/stops/H4vz369b"], ["https://tec.openplanner.team/stops/LeSkreu1", "https://tec.openplanner.team/stops/LtH37c-1"], ["https://tec.openplanner.team/stops/N135ajb", "https://tec.openplanner.team/stops/N135aqb"], ["https://tec.openplanner.team/stops/Cmastfi1", "https://tec.openplanner.team/stops/Cmastni2"], ["https://tec.openplanner.team/stops/X601bea", "https://tec.openplanner.team/stops/X601dha"], ["https://tec.openplanner.team/stops/LHUfrai1", "https://tec.openplanner.team/stops/LHUsauv2"], ["https://tec.openplanner.team/stops/N230aka", "https://tec.openplanner.team/stops/N549aba"], ["https://tec.openplanner.team/stops/X731adb", "https://tec.openplanner.team/stops/X731aja"], ["https://tec.openplanner.team/stops/Lgrcour2", "https://tec.openplanner.team/stops/Lgrmagd1"], ["https://tec.openplanner.team/stops/Btslcej1", "https://tec.openplanner.team/stops/Btslenf2"], ["https://tec.openplanner.team/stops/X939aba", "https://tec.openplanner.team/stops/X940afb"], ["https://tec.openplanner.team/stops/H4ft135c", "https://tec.openplanner.team/stops/H4ta118a"], ["https://tec.openplanner.team/stops/X948aab", "https://tec.openplanner.team/stops/X948bbb"], ["https://tec.openplanner.team/stops/LVBvaux1", "https://tec.openplanner.team/stops/LVBvill2"], ["https://tec.openplanner.team/stops/N125aba", "https://tec.openplanner.team/stops/N125abb"], ["https://tec.openplanner.team/stops/LVEphar1", "https://tec.openplanner.team/stops/LVEphar2"], ["https://tec.openplanner.team/stops/N501dja", "https://tec.openplanner.team/stops/N538aha"], ["https://tec.openplanner.team/stops/LHAcite1", "https://tec.openplanner.team/stops/LHAcite2"], ["https://tec.openplanner.team/stops/Lpevesd1", "https://tec.openplanner.team/stops/Lpevesd2"], ["https://tec.openplanner.team/stops/H4ir162a", "https://tec.openplanner.team/stops/H4ir163a"], ["https://tec.openplanner.team/stops/LOTcloe1", "https://tec.openplanner.team/stops/LOTcloe2"], ["https://tec.openplanner.team/stops/LHAheml1", "https://tec.openplanner.team/stops/LHAheml2"], ["https://tec.openplanner.team/stops/H4rs117a", "https://tec.openplanner.team/stops/H4rs117b"], ["https://tec.openplanner.team/stops/Bbsgrve2", "https://tec.openplanner.team/stops/Bhmmlad2"], ["https://tec.openplanner.team/stops/Cdacolu2", "https://tec.openplanner.team/stops/Cdapige1"], ["https://tec.openplanner.team/stops/X649abb", "https://tec.openplanner.team/stops/X649adb"], ["https://tec.openplanner.team/stops/X904acb", "https://tec.openplanner.team/stops/X904aea"], ["https://tec.openplanner.team/stops/X636atb", "https://tec.openplanner.team/stops/X636ayb"], ["https://tec.openplanner.team/stops/H1gh151a", "https://tec.openplanner.team/stops/H1gh152b"], ["https://tec.openplanner.team/stops/LLrgare2", "https://tec.openplanner.team/stops/LSPastr2"], ["https://tec.openplanner.team/stops/LLxcbr-2", "https://tec.openplanner.team/stops/LLxnive2"], ["https://tec.openplanner.team/stops/Lhrdeme1", "https://tec.openplanner.team/stops/Lhrdeme3"], ["https://tec.openplanner.team/stops/Buccptj1", "https://tec.openplanner.team/stops/Buccron1"], ["https://tec.openplanner.team/stops/N347aea", "https://tec.openplanner.team/stops/N347agb"], ["https://tec.openplanner.team/stops/LhGkirc3", "https://tec.openplanner.team/stops/LhGkirc6"], ["https://tec.openplanner.team/stops/N209aic", "https://tec.openplanner.team/stops/N209ana"], ["https://tec.openplanner.team/stops/Cgogb2", "https://tec.openplanner.team/stops/Cgoson11"], ["https://tec.openplanner.team/stops/H5el104b", "https://tec.openplanner.team/stops/H5wo130b"], ["https://tec.openplanner.team/stops/N146afa", "https://tec.openplanner.team/stops/N146afb"], ["https://tec.openplanner.team/stops/LBEnina6", "https://tec.openplanner.team/stops/LNipre-2"], ["https://tec.openplanner.team/stops/H4ta121a", "https://tec.openplanner.team/stops/H4ta129a"], ["https://tec.openplanner.team/stops/Bnivari2", "https://tec.openplanner.team/stops/Bnivpgr2"], ["https://tec.openplanner.team/stops/N207aba", "https://tec.openplanner.team/stops/N207afa"], ["https://tec.openplanner.team/stops/H2se109a", "https://tec.openplanner.team/stops/H2se114b"], ["https://tec.openplanner.team/stops/LrEmeil1", "https://tec.openplanner.team/stops/LrEviel2"], ["https://tec.openplanner.team/stops/X663aub", "https://tec.openplanner.team/stops/X664ana"], ["https://tec.openplanner.team/stops/Llghec-2", "https://tec.openplanner.team/stops/Llghec-3"], ["https://tec.openplanner.team/stops/H1ba106a", "https://tec.openplanner.team/stops/H1ba118a"], ["https://tec.openplanner.team/stops/H1ho147b", "https://tec.openplanner.team/stops/H1wg127a"], ["https://tec.openplanner.team/stops/Cflathe1", "https://tec.openplanner.team/stops/Cflgazo1"], ["https://tec.openplanner.team/stops/X608aea", "https://tec.openplanner.team/stops/X608apb"], ["https://tec.openplanner.team/stops/Btiegar1", "https://tec.openplanner.team/stops/Btiegar2"], ["https://tec.openplanner.team/stops/LHMec--1", "https://tec.openplanner.team/stops/LHMec--2"], ["https://tec.openplanner.team/stops/Cobnive1", "https://tec.openplanner.team/stops/Cobnive2"], ["https://tec.openplanner.team/stops/H1pa111b", "https://tec.openplanner.team/stops/H1pa120b"], ["https://tec.openplanner.team/stops/X696aba", "https://tec.openplanner.team/stops/X696afa"], ["https://tec.openplanner.team/stops/Lalbout2", "https://tec.openplanner.team/stops/Lalexpa1"], ["https://tec.openplanner.team/stops/CMmoul1", "https://tec.openplanner.team/stops/Cmorgof2"], ["https://tec.openplanner.team/stops/H4fo119a", "https://tec.openplanner.team/stops/H4ga170b"], ["https://tec.openplanner.team/stops/X349aab", "https://tec.openplanner.team/stops/X398afa"], ["https://tec.openplanner.team/stops/X775aib", "https://tec.openplanner.team/stops/X775aic"], ["https://tec.openplanner.team/stops/X742aga", "https://tec.openplanner.team/stops/X743aba"], ["https://tec.openplanner.team/stops/X390akb", "https://tec.openplanner.team/stops/X390ala"], ["https://tec.openplanner.team/stops/LBSchar2", "https://tec.openplanner.team/stops/LBSkann1"], ["https://tec.openplanner.team/stops/X870aba", "https://tec.openplanner.team/stops/X870abb"], ["https://tec.openplanner.team/stops/N351aaa", "https://tec.openplanner.team/stops/N351aga"], ["https://tec.openplanner.team/stops/Bnivhon1", "https://tec.openplanner.team/stops/Bthivil2"], ["https://tec.openplanner.team/stops/Bflcpco1", "https://tec.openplanner.team/stops/N517aga"], ["https://tec.openplanner.team/stops/Lenmare1", "https://tec.openplanner.team/stops/Lenplac5"], ["https://tec.openplanner.team/stops/LSMcles2", "https://tec.openplanner.team/stops/LSMec--2"], ["https://tec.openplanner.team/stops/Lrcstad2", "https://tec.openplanner.team/stops/Lrcvill2"], ["https://tec.openplanner.team/stops/H4ma204a", "https://tec.openplanner.team/stops/H4oq226b"], ["https://tec.openplanner.team/stops/LClbloc1", "https://tec.openplanner.team/stops/LClflor2"], ["https://tec.openplanner.team/stops/H2hp114b", "https://tec.openplanner.team/stops/H2hp125a"], ["https://tec.openplanner.team/stops/LLbbons2", "https://tec.openplanner.team/stops/LrEgend2"], ["https://tec.openplanner.team/stops/N425adb", "https://tec.openplanner.team/stops/N426aea"], ["https://tec.openplanner.team/stops/LMheg--1", "https://tec.openplanner.team/stops/Lprmana3"], ["https://tec.openplanner.team/stops/Cwgmutu2", "https://tec.openplanner.team/stops/Cwgtill2"], ["https://tec.openplanner.team/stops/LHUlebo1", "https://tec.openplanner.team/stops/LHUtfal2"], ["https://tec.openplanner.team/stops/Cwgmart1", "https://tec.openplanner.team/stops/Cwgplac1"], ["https://tec.openplanner.team/stops/Clgmaco1", "https://tec.openplanner.team/stops/Clgrsoc2"], ["https://tec.openplanner.team/stops/N501ega", "https://tec.openplanner.team/stops/N501ejc"], ["https://tec.openplanner.team/stops/N521aga", "https://tec.openplanner.team/stops/N521agb"], ["https://tec.openplanner.team/stops/Lghwall2", "https://tec.openplanner.team/stops/Llochar4"], ["https://tec.openplanner.team/stops/H4bw101b", "https://tec.openplanner.team/stops/H4bw102a"], ["https://tec.openplanner.team/stops/Lghvold1", "https://tec.openplanner.team/stops/Lghvold2"], ["https://tec.openplanner.team/stops/N423aab", "https://tec.openplanner.team/stops/N423aca"], ["https://tec.openplanner.team/stops/Cgycime1", "https://tec.openplanner.team/stops/Cgycime3"], ["https://tec.openplanner.team/stops/X770aaa", "https://tec.openplanner.team/stops/X770abb"], ["https://tec.openplanner.team/stops/Bbsgrve1", "https://tec.openplanner.team/stops/Bbsgrve2"], ["https://tec.openplanner.team/stops/N351aka", "https://tec.openplanner.team/stops/N351akc"], ["https://tec.openplanner.team/stops/LHFhard1", "https://tec.openplanner.team/stops/LHFhard2"], ["https://tec.openplanner.team/stops/Bcerldo2", "https://tec.openplanner.team/stops/Bcsegal1"], ["https://tec.openplanner.team/stops/N343aaa", "https://tec.openplanner.team/stops/N343abb"], ["https://tec.openplanner.team/stops/Bsgeegl1", "https://tec.openplanner.team/stops/Bsgeegl2"], ["https://tec.openplanner.team/stops/Lticime2", "https://tec.openplanner.team/stops/Ltiecch1"], ["https://tec.openplanner.team/stops/LREgare1", "https://tec.openplanner.team/stops/LREhenu1"], ["https://tec.openplanner.team/stops/LHocroi2", "https://tec.openplanner.team/stops/LHoetie1"], ["https://tec.openplanner.team/stops/LESmagr1", "https://tec.openplanner.team/stops/LESmagr2"], ["https://tec.openplanner.team/stops/LFMkrin1", "https://tec.openplanner.team/stops/LVu03--2"], ["https://tec.openplanner.team/stops/Bllnlb52", "https://tec.openplanner.team/stops/Bllnpsc1"], ["https://tec.openplanner.team/stops/LHEnaza2", "https://tec.openplanner.team/stops/LHEpriv1"], ["https://tec.openplanner.team/stops/N201ama", "https://tec.openplanner.team/stops/N211ana"], ["https://tec.openplanner.team/stops/H4ga149b", "https://tec.openplanner.team/stops/H4ga155a"], ["https://tec.openplanner.team/stops/X657aib", "https://tec.openplanner.team/stops/X670agb"], ["https://tec.openplanner.team/stops/X542abb", "https://tec.openplanner.team/stops/X542acb"], ["https://tec.openplanner.team/stops/H3th127b", "https://tec.openplanner.team/stops/H3th129b"], ["https://tec.openplanner.team/stops/LEMfort1", "https://tec.openplanner.team/stops/LEMgren*"], ["https://tec.openplanner.team/stops/X801ala", "https://tec.openplanner.team/stops/X801alb"], ["https://tec.openplanner.team/stops/LFRhock3", "https://tec.openplanner.team/stops/LFRhock4"], ["https://tec.openplanner.team/stops/X601awb", "https://tec.openplanner.team/stops/X612aaa"], ["https://tec.openplanner.team/stops/N504aba", "https://tec.openplanner.team/stops/N511ahb"], ["https://tec.openplanner.team/stops/N521asc", "https://tec.openplanner.team/stops/N521asd"], ["https://tec.openplanner.team/stops/H1me116a", "https://tec.openplanner.team/stops/H1mm122d"], ["https://tec.openplanner.team/stops/X791aca", "https://tec.openplanner.team/stops/X791adb"], ["https://tec.openplanner.team/stops/Cfcchas2", "https://tec.openplanner.team/stops/Cvlstan2"], ["https://tec.openplanner.team/stops/H2tr247b", "https://tec.openplanner.team/stops/H2tr253a"], ["https://tec.openplanner.team/stops/Ctuecol1", "https://tec.openplanner.team/stops/Ctuecol4"], ["https://tec.openplanner.team/stops/H2ll188a", "https://tec.openplanner.team/stops/H2ll192a"], ["https://tec.openplanner.team/stops/LhRandl1", "https://tec.openplanner.team/stops/LsCback1"], ["https://tec.openplanner.team/stops/Cgrcent2", "https://tec.openplanner.team/stops/NC14amb"], ["https://tec.openplanner.team/stops/LhOokat2", "https://tec.openplanner.team/stops/LlSbuch1"], ["https://tec.openplanner.team/stops/N117ama", "https://tec.openplanner.team/stops/N117bcd"], ["https://tec.openplanner.team/stops/N543ang", "https://tec.openplanner.team/stops/N543avg"], ["https://tec.openplanner.team/stops/LHehacc2", "https://tec.openplanner.team/stops/LOUbleu2"], ["https://tec.openplanner.team/stops/H1fr118a", "https://tec.openplanner.team/stops/H1fr118b"], ["https://tec.openplanner.team/stops/N117aqa", "https://tec.openplanner.team/stops/N117aya"], ["https://tec.openplanner.team/stops/X801cfa", "https://tec.openplanner.team/stops/X801cmb"], ["https://tec.openplanner.team/stops/LJOferm2", "https://tec.openplanner.team/stops/LJOvill1"], ["https://tec.openplanner.team/stops/H5rx113a", "https://tec.openplanner.team/stops/H5rx140a"], ["https://tec.openplanner.team/stops/H2fa101b", "https://tec.openplanner.team/stops/H2fa102a"], ["https://tec.openplanner.team/stops/H1do109b", "https://tec.openplanner.team/stops/H1do127a"], ["https://tec.openplanner.team/stops/N231afa", "https://tec.openplanner.team/stops/N291aab"], ["https://tec.openplanner.team/stops/N513agc", "https://tec.openplanner.team/stops/N513bbd"], ["https://tec.openplanner.team/stops/Cgd4ven2", "https://tec.openplanner.team/stops/Clggrfe2"], ["https://tec.openplanner.team/stops/Lprcard1", "https://tec.openplanner.team/stops/Lprpous2"], ["https://tec.openplanner.team/stops/X614ala", "https://tec.openplanner.team/stops/X614ama"], ["https://tec.openplanner.team/stops/LlgguilB", "https://tec.openplanner.team/stops/Llgoise2"], ["https://tec.openplanner.team/stops/LWalibo2", "https://tec.openplanner.team/stops/LWapl--3"], ["https://tec.openplanner.team/stops/N543apb", "https://tec.openplanner.team/stops/N543ayb"], ["https://tec.openplanner.team/stops/LeUhaas1", "https://tec.openplanner.team/stops/LeUschi1"], ["https://tec.openplanner.team/stops/H4ae102a", "https://tec.openplanner.team/stops/H4or114b"], ["https://tec.openplanner.team/stops/Lbrrobe1", "https://tec.openplanner.team/stops/Lgrfrcu2"], ["https://tec.openplanner.team/stops/X985aba", "https://tec.openplanner.team/stops/X985acb"], ["https://tec.openplanner.team/stops/N506abb", "https://tec.openplanner.team/stops/N506aoa"], ["https://tec.openplanner.team/stops/H4qu408a", "https://tec.openplanner.team/stops/H4qu408b"], ["https://tec.openplanner.team/stops/Llgbwez2", "https://tec.openplanner.team/stops/Llgmulh1"], ["https://tec.openplanner.team/stops/Blhupri2", "https://tec.openplanner.team/stops/Bohnman1"], ["https://tec.openplanner.team/stops/N209ajb", "https://tec.openplanner.team/stops/N209ajc"], ["https://tec.openplanner.team/stops/X888aga", "https://tec.openplanner.team/stops/X897ara"], ["https://tec.openplanner.team/stops/H1ms942a", "https://tec.openplanner.team/stops/H1ni320b"], ["https://tec.openplanner.team/stops/X804ala", "https://tec.openplanner.team/stops/X804bwb"], ["https://tec.openplanner.team/stops/LLUhotc2", "https://tec.openplanner.team/stops/LREsoug4"], ["https://tec.openplanner.team/stops/LOurena1", "https://tec.openplanner.team/stops/X982afa"], ["https://tec.openplanner.team/stops/Lgdrena1", "https://tec.openplanner.team/stops/Lgdrena2"], ["https://tec.openplanner.team/stops/Cgzhour2", "https://tec.openplanner.team/stops/Clbpepi2"], ["https://tec.openplanner.team/stops/N132aaa", "https://tec.openplanner.team/stops/N132abb"], ["https://tec.openplanner.team/stops/H4er122a", "https://tec.openplanner.team/stops/H4er124a"], ["https://tec.openplanner.team/stops/H4ar100a", "https://tec.openplanner.team/stops/H4ar104b"], ["https://tec.openplanner.team/stops/N123aab", "https://tec.openplanner.team/stops/N123abb"], ["https://tec.openplanner.team/stops/Bohnbra1", "https://tec.openplanner.team/stops/Bwatber1"], ["https://tec.openplanner.team/stops/H2pr116a", "https://tec.openplanner.team/stops/H3st119a"], ["https://tec.openplanner.team/stops/X651afb", "https://tec.openplanner.team/stops/X659acb"], ["https://tec.openplanner.team/stops/LWEhang1", "https://tec.openplanner.team/stops/LWEwall1"], ["https://tec.openplanner.team/stops/N343aea", "https://tec.openplanner.team/stops/N343aeb"], ["https://tec.openplanner.team/stops/H4do108a", "https://tec.openplanner.team/stops/H4do202a"], ["https://tec.openplanner.team/stops/Lvepala1", "https://tec.openplanner.team/stops/Lvepala9"], ["https://tec.openplanner.team/stops/LWAfabr1", "https://tec.openplanner.team/stops/LWArege1"], ["https://tec.openplanner.team/stops/X748aca", "https://tec.openplanner.team/stops/X748aea"], ["https://tec.openplanner.team/stops/Csemacq1", "https://tec.openplanner.team/stops/Csemacq2"], ["https://tec.openplanner.team/stops/Bhevjac1", "https://tec.openplanner.team/stops/Bhevwzw1"], ["https://tec.openplanner.team/stops/X818agb", "https://tec.openplanner.team/stops/X818ama"], ["https://tec.openplanner.team/stops/N539bea", "https://tec.openplanner.team/stops/N540ara"], ["https://tec.openplanner.team/stops/N501eda", "https://tec.openplanner.team/stops/N501epa"], ["https://tec.openplanner.team/stops/Cgycorv2", "https://tec.openplanner.team/stops/Cmtduch2"], ["https://tec.openplanner.team/stops/Lhuecol2", "https://tec.openplanner.team/stops/Lhuwaid1"], ["https://tec.openplanner.team/stops/N145aea", "https://tec.openplanner.team/stops/N149acb"], ["https://tec.openplanner.team/stops/Cprsapv1", "https://tec.openplanner.team/stops/Cprsapv2"], ["https://tec.openplanner.team/stops/H4hq129a", "https://tec.openplanner.team/stops/H4hq130a"], ["https://tec.openplanner.team/stops/LlOkreu1", "https://tec.openplanner.team/stops/LnDdorf1"], ["https://tec.openplanner.team/stops/N516aia", "https://tec.openplanner.team/stops/N516aib"], ["https://tec.openplanner.team/stops/N551ana", "https://tec.openplanner.team/stops/N551aoa"], ["https://tec.openplanner.team/stops/Csdjeme1", "https://tec.openplanner.team/stops/Cvpsncb2"], ["https://tec.openplanner.team/stops/LHMchbl1", "https://tec.openplanner.team/stops/LHMhind1"], ["https://tec.openplanner.team/stops/H4ka182a", "https://tec.openplanner.team/stops/H4ka188b"], ["https://tec.openplanner.team/stops/LGOhevr2", "https://tec.openplanner.team/stops/LGOvill1"], ["https://tec.openplanner.team/stops/X911ada", "https://tec.openplanner.team/stops/X911aeb"], ["https://tec.openplanner.team/stops/Cgplutt2", "https://tec.openplanner.team/stops/H2gy108a"], ["https://tec.openplanner.team/stops/X828aaa", "https://tec.openplanner.team/stops/X830aab"], ["https://tec.openplanner.team/stops/N579aaa", "https://tec.openplanner.team/stops/N579ada"], ["https://tec.openplanner.team/stops/H4mo133b", "https://tec.openplanner.team/stops/H4mo145b"], ["https://tec.openplanner.team/stops/Lancolr1", "https://tec.openplanner.team/stops/Lanyser1"], ["https://tec.openplanner.team/stops/N503aca", "https://tec.openplanner.team/stops/N535aaa"], ["https://tec.openplanner.team/stops/N137aaa", "https://tec.openplanner.team/stops/N137aia"], ["https://tec.openplanner.team/stops/LaSbahn1", "https://tec.openplanner.team/stops/LhSkape2"], ["https://tec.openplanner.team/stops/LbO52--2", "https://tec.openplanner.team/stops/LdElamb1"], ["https://tec.openplanner.team/stops/N104acb", "https://tec.openplanner.team/stops/N118ava"], ["https://tec.openplanner.team/stops/LBEfagn1", "https://tec.openplanner.team/stops/LBEpier2"], ["https://tec.openplanner.team/stops/Cchmott2", "https://tec.openplanner.team/stops/Cchwarm1"], ["https://tec.openplanner.team/stops/X801bea", "https://tec.openplanner.team/stops/X801bfa"], ["https://tec.openplanner.team/stops/LVIcarm3", "https://tec.openplanner.team/stops/LVIhala3"], ["https://tec.openplanner.team/stops/N501fab", "https://tec.openplanner.team/stops/N501fdb"], ["https://tec.openplanner.team/stops/Baudhde2", "https://tec.openplanner.team/stops/Bwbfckr1"], ["https://tec.openplanner.team/stops/Ctusold1", "https://tec.openplanner.team/stops/NC28agb"], ["https://tec.openplanner.team/stops/Ljelamb1", "https://tec.openplanner.team/stops/Lsekubo2"], ["https://tec.openplanner.team/stops/NH21ada", "https://tec.openplanner.team/stops/NH21aea"], ["https://tec.openplanner.team/stops/Cbmind3", "https://tec.openplanner.team/stops/Cbmind4"], ["https://tec.openplanner.team/stops/LPbhaut1", "https://tec.openplanner.team/stops/LPbhaut2"], ["https://tec.openplanner.team/stops/LmDelek2", "https://tec.openplanner.team/stops/LvA30--2"], ["https://tec.openplanner.team/stops/LSEcent1", "https://tec.openplanner.team/stops/LSEvill2"], ["https://tec.openplanner.team/stops/Llgblon1", "https://tec.openplanner.team/stops/Llgbron1"], ["https://tec.openplanner.team/stops/H4hs135a", "https://tec.openplanner.team/stops/H4hs135b"], ["https://tec.openplanner.team/stops/H4ty278b", "https://tec.openplanner.team/stops/H4ty299e"], ["https://tec.openplanner.team/stops/X658agb", "https://tec.openplanner.team/stops/X658ahb"], ["https://tec.openplanner.team/stops/LCEplac2", "https://tec.openplanner.team/stops/LETmagn1"], ["https://tec.openplanner.team/stops/X734aka", "https://tec.openplanner.team/stops/X734aqa"], ["https://tec.openplanner.team/stops/LCeterm2", "https://tec.openplanner.team/stops/LLWmonu1"], ["https://tec.openplanner.team/stops/N134agb", "https://tec.openplanner.team/stops/N134aha"], ["https://tec.openplanner.team/stops/LCnvill1", "https://tec.openplanner.team/stops/LLUg82-1"], ["https://tec.openplanner.team/stops/X736abb", "https://tec.openplanner.team/stops/X952adb"], ["https://tec.openplanner.team/stops/LBichen2", "https://tec.openplanner.team/stops/LBivill2"], ["https://tec.openplanner.team/stops/H4am102c", "https://tec.openplanner.team/stops/H4am113a"], ["https://tec.openplanner.team/stops/Cmtfabi1", "https://tec.openplanner.team/stops/Cmtprey1"], ["https://tec.openplanner.team/stops/N425ada", "https://tec.openplanner.team/stops/N425adb"], ["https://tec.openplanner.team/stops/Clafaub1", "https://tec.openplanner.team/stops/Claptcf2"], ["https://tec.openplanner.team/stops/H4ea128a", "https://tec.openplanner.team/stops/H4ea129a"], ["https://tec.openplanner.team/stops/N232ata", "https://tec.openplanner.team/stops/N232bnb"], ["https://tec.openplanner.team/stops/Bcseche2", "https://tec.openplanner.team/stops/Bcsemon1"], ["https://tec.openplanner.team/stops/Cchba04", "https://tec.openplanner.team/stops/Cchba12"], ["https://tec.openplanner.team/stops/LTgbalm1", "https://tec.openplanner.team/stops/LTgvill1"], ["https://tec.openplanner.team/stops/X869aea", "https://tec.openplanner.team/stops/X871aab"], ["https://tec.openplanner.team/stops/H2pr114b", "https://tec.openplanner.team/stops/H2pr119b"], ["https://tec.openplanner.team/stops/H1gh149a", "https://tec.openplanner.team/stops/H1ms297b"], ["https://tec.openplanner.team/stops/LMsheid2", "https://tec.openplanner.team/stops/LPbtene1"], ["https://tec.openplanner.team/stops/Cchsud07", "https://tec.openplanner.team/stops/Cmlvitf2"], ["https://tec.openplanner.team/stops/H1so136c", "https://tec.openplanner.team/stops/H1so136d"], ["https://tec.openplanner.team/stops/Bottpma1", "https://tec.openplanner.team/stops/Bottvtc2"], ["https://tec.openplanner.team/stops/N230aib", "https://tec.openplanner.team/stops/N230aja"], ["https://tec.openplanner.team/stops/Lseberg2", "https://tec.openplanner.team/stops/Lseberg4"], ["https://tec.openplanner.team/stops/Bbauegl2", "https://tec.openplanner.team/stops/Bbaulos1"], ["https://tec.openplanner.team/stops/LPLbiol2", "https://tec.openplanner.team/stops/LPLline2"], ["https://tec.openplanner.team/stops/X663afa", "https://tec.openplanner.team/stops/X663afb"], ["https://tec.openplanner.team/stops/H2ca103c", "https://tec.openplanner.team/stops/H2ca105b"], ["https://tec.openplanner.team/stops/Cblcent1", "https://tec.openplanner.team/stops/Cblsall1"], ["https://tec.openplanner.team/stops/X548afa", "https://tec.openplanner.team/stops/X784ahb"], ["https://tec.openplanner.team/stops/X982afb", "https://tec.openplanner.team/stops/X982aja"], ["https://tec.openplanner.team/stops/Ljuargi1", "https://tec.openplanner.team/stops/Ljuhava2"], ["https://tec.openplanner.team/stops/H1he107a", "https://tec.openplanner.team/stops/H1he111b"], ["https://tec.openplanner.team/stops/X640ala", "https://tec.openplanner.team/stops/X640aua"], ["https://tec.openplanner.team/stops/Btubaig1", "https://tec.openplanner.team/stops/Btubbsc2"], ["https://tec.openplanner.team/stops/LeLbegl2", "https://tec.openplanner.team/stops/LkAbahn*"], ["https://tec.openplanner.team/stops/X947aca", "https://tec.openplanner.team/stops/X947aea"], ["https://tec.openplanner.team/stops/N513baa", "https://tec.openplanner.team/stops/N516ada"], ["https://tec.openplanner.team/stops/N524aka", "https://tec.openplanner.team/stops/N524ala"], ["https://tec.openplanner.team/stops/H1bb118b", "https://tec.openplanner.team/stops/H1bb121b"], ["https://tec.openplanner.team/stops/Cvp3til4", "https://tec.openplanner.team/stops/Cvpsncb2"], ["https://tec.openplanner.team/stops/H4ws159a", "https://tec.openplanner.team/stops/H4ws159b"], ["https://tec.openplanner.team/stops/Bndbpco2", "https://tec.openplanner.team/stops/Btlgbro2"], ["https://tec.openplanner.team/stops/Clooues3", "https://tec.openplanner.team/stops/Clooues4"], ["https://tec.openplanner.team/stops/Cnadepo1", "https://tec.openplanner.team/stops/Cnalava2"], ["https://tec.openplanner.team/stops/N350adb", "https://tec.openplanner.team/stops/N350aea"], ["https://tec.openplanner.team/stops/Llgcond1", "https://tec.openplanner.team/stops/Llgcond2"], ["https://tec.openplanner.team/stops/LVLm10-2", "https://tec.openplanner.team/stops/LVLmart1"], ["https://tec.openplanner.team/stops/H1ba107a", "https://tec.openplanner.team/stops/H1hh118b"], ["https://tec.openplanner.team/stops/Lflcime1", "https://tec.openplanner.team/stops/Lflcime2"], ["https://tec.openplanner.team/stops/H4co142a", "https://tec.openplanner.team/stops/H4fg116b"], ["https://tec.openplanner.team/stops/N528aoa", "https://tec.openplanner.team/stops/N538aab"], ["https://tec.openplanner.team/stops/H1ob335b", "https://tec.openplanner.team/stops/H1ob341a"], ["https://tec.openplanner.team/stops/H1eu101a", "https://tec.openplanner.team/stops/H1lb139b"], ["https://tec.openplanner.team/stops/N167aea", "https://tec.openplanner.team/stops/N167aeb"], ["https://tec.openplanner.team/stops/X638aqa", "https://tec.openplanner.team/stops/X652aaa"], ["https://tec.openplanner.team/stops/Bchadpt1", "https://tec.openplanner.team/stops/Bwlhpma1"], ["https://tec.openplanner.team/stops/N352aca", "https://tec.openplanner.team/stops/N352adb"], ["https://tec.openplanner.team/stops/LNCchev4", "https://tec.openplanner.team/stops/LNCpi331"], ["https://tec.openplanner.team/stops/X662aba", "https://tec.openplanner.team/stops/X663ahb"], ["https://tec.openplanner.team/stops/Bbeaap12", "https://tec.openplanner.team/stops/Bbeabme2"], ["https://tec.openplanner.team/stops/Llgbavi2", "https://tec.openplanner.team/stops/Llgkurt1"], ["https://tec.openplanner.team/stops/N507alb", "https://tec.openplanner.team/stops/N507alc"], ["https://tec.openplanner.team/stops/LElgerd6", "https://tec.openplanner.team/stops/LOucarr1"], ["https://tec.openplanner.team/stops/X659ama", "https://tec.openplanner.team/stops/X742aaa"], ["https://tec.openplanner.team/stops/H5is169a", "https://tec.openplanner.team/stops/H5is170b"], ["https://tec.openplanner.team/stops/Bmarcha1", "https://tec.openplanner.team/stops/Csawagn1"], ["https://tec.openplanner.team/stops/Ljestat2", "https://tec.openplanner.team/stops/Lseespe2"], ["https://tec.openplanner.team/stops/LCPone91", "https://tec.openplanner.team/stops/LCPoneu1"], ["https://tec.openplanner.team/stops/Bolgmpl1", "https://tec.openplanner.team/stops/Bolgrga1"], ["https://tec.openplanner.team/stops/Cchhopi1", "https://tec.openplanner.team/stops/Cchparc2"], ["https://tec.openplanner.team/stops/Lvtlomb1", "https://tec.openplanner.team/stops/Lvtlomb2"], ["https://tec.openplanner.team/stops/X604ahb", "https://tec.openplanner.team/stops/X604aia"], ["https://tec.openplanner.team/stops/N532aaa", "https://tec.openplanner.team/stops/N532aha"], ["https://tec.openplanner.team/stops/Bolgeva1", "https://tec.openplanner.team/stops/Bolgeva2"], ["https://tec.openplanner.team/stops/H5at109a", "https://tec.openplanner.team/stops/H5at109b"], ["https://tec.openplanner.team/stops/LaNmuhl2", "https://tec.openplanner.team/stops/LmNbirt1"], ["https://tec.openplanner.team/stops/N536acb", "https://tec.openplanner.team/stops/N537aib"], ["https://tec.openplanner.team/stops/N501hhb", "https://tec.openplanner.team/stops/N501mta"], ["https://tec.openplanner.team/stops/LHNgend1", "https://tec.openplanner.team/stops/LHNtill2"], ["https://tec.openplanner.team/stops/X658aca", "https://tec.openplanner.team/stops/X658ahb"], ["https://tec.openplanner.team/stops/X610aha", "https://tec.openplanner.team/stops/X610ahb"], ["https://tec.openplanner.team/stops/LHHpt--3", "https://tec.openplanner.team/stops/LHHpt--4"], ["https://tec.openplanner.team/stops/LHovill1", "https://tec.openplanner.team/stops/LJesole2"], ["https://tec.openplanner.team/stops/N506aca", "https://tec.openplanner.team/stops/N506bla"], ["https://tec.openplanner.team/stops/N353afa", "https://tec.openplanner.team/stops/N353afb"], ["https://tec.openplanner.team/stops/H4ef110b", "https://tec.openplanner.team/stops/H4or114b"], ["https://tec.openplanner.team/stops/H4av106c", "https://tec.openplanner.team/stops/H4wt160b"], ["https://tec.openplanner.team/stops/Bbchdev2", "https://tec.openplanner.team/stops/Bbchdra2"], ["https://tec.openplanner.team/stops/Cctjust2", "https://tec.openplanner.team/stops/Cctrjus1"], ["https://tec.openplanner.team/stops/LSDgris2", "https://tec.openplanner.team/stops/LSDvill2"], ["https://tec.openplanner.team/stops/LLrbuis1", "https://tec.openplanner.team/stops/LSMlier2"], ["https://tec.openplanner.team/stops/H1hr115b", "https://tec.openplanner.team/stops/H1ne137a"], ["https://tec.openplanner.team/stops/H4mo135a", "https://tec.openplanner.team/stops/H4mo162a"], ["https://tec.openplanner.team/stops/X612adb", "https://tec.openplanner.team/stops/X623abb"], ["https://tec.openplanner.team/stops/Bwatgge2", "https://tec.openplanner.team/stops/Bwatric2"], ["https://tec.openplanner.team/stops/X723aca", "https://tec.openplanner.team/stops/X723ana"], ["https://tec.openplanner.team/stops/Clsstpi1", "https://tec.openplanner.team/stops/H1ls106b"], ["https://tec.openplanner.team/stops/Cvrfcho1", "https://tec.openplanner.team/stops/Cvrfcho2"], ["https://tec.openplanner.team/stops/N212aib", "https://tec.openplanner.team/stops/N212aja"], ["https://tec.openplanner.team/stops/NL68adb", "https://tec.openplanner.team/stops/NL68agb"], ["https://tec.openplanner.team/stops/N308apb", "https://tec.openplanner.team/stops/N308bib"], ["https://tec.openplanner.team/stops/Cchblne1", "https://tec.openplanner.team/stops/Cchtour1"], ["https://tec.openplanner.team/stops/N501ljb", "https://tec.openplanner.team/stops/N501lnb"], ["https://tec.openplanner.team/stops/N201aia", "https://tec.openplanner.team/stops/N201akb"], ["https://tec.openplanner.team/stops/H1le118a", "https://tec.openplanner.team/stops/H1le120a"], ["https://tec.openplanner.team/stops/X619aaa", "https://tec.openplanner.team/stops/X619abb"], ["https://tec.openplanner.team/stops/H4mo182a", "https://tec.openplanner.team/stops/H4mo191a"], ["https://tec.openplanner.team/stops/H1ol145a", "https://tec.openplanner.team/stops/H1ol146a"], ["https://tec.openplanner.team/stops/X618aoa", "https://tec.openplanner.team/stops/X618aob"], ["https://tec.openplanner.team/stops/X739abb", "https://tec.openplanner.team/stops/X739acb"], ["https://tec.openplanner.team/stops/Caistro2", "https://tec.openplanner.team/stops/Crsaise1"], ["https://tec.openplanner.team/stops/H4pq113a", "https://tec.openplanner.team/stops/H4pq116a"], ["https://tec.openplanner.team/stops/Livfays2", "https://tec.openplanner.team/stops/LRagrch1"], ["https://tec.openplanner.team/stops/Ccacoup2", "https://tec.openplanner.team/stops/Ccaegli4"], ["https://tec.openplanner.team/stops/Brixaug2", "https://tec.openplanner.team/stops/Brixaug3"], ["https://tec.openplanner.team/stops/H2ll190a", "https://tec.openplanner.team/stops/H2ll257d"], ["https://tec.openplanner.team/stops/H4bu108b", "https://tec.openplanner.team/stops/H4hg155a"], ["https://tec.openplanner.team/stops/LVEroum1", "https://tec.openplanner.team/stops/LVEstat1"], ["https://tec.openplanner.team/stops/N540adb", "https://tec.openplanner.team/stops/N540aha"], ["https://tec.openplanner.team/stops/Cjuloos1", "https://tec.openplanner.team/stops/Cjuvand1"], ["https://tec.openplanner.team/stops/Bjodgai1", "https://tec.openplanner.team/stops/Bsrgcur1"], ["https://tec.openplanner.team/stops/LBWfusi2", "https://tec.openplanner.team/stops/LFChuis2"], ["https://tec.openplanner.team/stops/H2fa104a", "https://tec.openplanner.team/stops/H2fa106a"], ["https://tec.openplanner.team/stops/Blindel1", "https://tec.openplanner.team/stops/Blindel4"], ["https://tec.openplanner.team/stops/X725ara", "https://tec.openplanner.team/stops/X725aua"], ["https://tec.openplanner.team/stops/H1mv239b", "https://tec.openplanner.team/stops/H1mv242b"], ["https://tec.openplanner.team/stops/Ctmdema1", "https://tec.openplanner.team/stops/Ctmmonu2"], ["https://tec.openplanner.team/stops/LPUchpl2", "https://tec.openplanner.team/stops/LRepous2"], ["https://tec.openplanner.team/stops/Cctgiss1", "https://tec.openplanner.team/stops/Cctmine2"], ["https://tec.openplanner.team/stops/Llgfoss2", "https://tec.openplanner.team/stops/Llghull2"], ["https://tec.openplanner.team/stops/X609aea", "https://tec.openplanner.team/stops/X609aeb"], ["https://tec.openplanner.team/stops/X747aac", "https://tec.openplanner.team/stops/X747aba"], ["https://tec.openplanner.team/stops/X637acb", "https://tec.openplanner.team/stops/X637aka"], ["https://tec.openplanner.team/stops/H4ty334a", "https://tec.openplanner.team/stops/H4ty336a"], ["https://tec.openplanner.team/stops/Cjuchli4", "https://tec.openplanner.team/stops/Cjugend4"], ["https://tec.openplanner.team/stops/LMsgara1", "https://tec.openplanner.team/stops/LMspont2"], ["https://tec.openplanner.team/stops/X750afb", "https://tec.openplanner.team/stops/X750aha"], ["https://tec.openplanner.team/stops/Blasbgc1", "https://tec.openplanner.team/stops/Blasbti1"], ["https://tec.openplanner.team/stops/Cblbaiv1", "https://tec.openplanner.team/stops/Cmcegli3"], ["https://tec.openplanner.team/stops/X359ala", "https://tec.openplanner.team/stops/X359alb"], ["https://tec.openplanner.team/stops/H1fy119a", "https://tec.openplanner.team/stops/H1wi150a"], ["https://tec.openplanner.team/stops/Bmarvil1", "https://tec.openplanner.team/stops/Bmarvil2"], ["https://tec.openplanner.team/stops/Bblaljo1", "https://tec.openplanner.team/stops/Bblapje2"], ["https://tec.openplanner.team/stops/H4bv145c", "https://tec.openplanner.team/stops/H5at111b"], ["https://tec.openplanner.team/stops/LLStrid3", "https://tec.openplanner.team/stops/LLStrid4"], ["https://tec.openplanner.team/stops/X902ana", "https://tec.openplanner.team/stops/X902bca"], ["https://tec.openplanner.team/stops/LATcorn1", "https://tec.openplanner.team/stops/LATcorp2"], ["https://tec.openplanner.team/stops/Lheente2", "https://tec.openplanner.team/stops/Lhelait1"], ["https://tec.openplanner.team/stops/Lvicitw1", "https://tec.openplanner.team/stops/Lvisere1"], ["https://tec.openplanner.team/stops/Lsemyrt1", "https://tec.openplanner.team/stops/Lsemyrt2"], ["https://tec.openplanner.team/stops/H1wa143a", "https://tec.openplanner.team/stops/H1wl121b"], ["https://tec.openplanner.team/stops/H1cv103a", "https://tec.openplanner.team/stops/H1cv104a"], ["https://tec.openplanner.team/stops/Llgbaro2", "https://tec.openplanner.team/stops/Llgware2"], ["https://tec.openplanner.team/stops/X948ala", "https://tec.openplanner.team/stops/X948alb"], ["https://tec.openplanner.team/stops/Cwfbarr1", "https://tec.openplanner.team/stops/N584bqa"], ["https://tec.openplanner.team/stops/Cstmarz1", "https://tec.openplanner.team/stops/Cstmarz2"], ["https://tec.openplanner.team/stops/X721aca", "https://tec.openplanner.team/stops/X721ajb"], ["https://tec.openplanner.team/stops/N211ala", "https://tec.openplanner.team/stops/N211azb"], ["https://tec.openplanner.team/stops/Bhoealt1", "https://tec.openplanner.team/stops/Bzluegl1"], ["https://tec.openplanner.team/stops/N131aea", "https://tec.openplanner.team/stops/N131aeb"], ["https://tec.openplanner.team/stops/Bmrlcch1", "https://tec.openplanner.team/stops/Bmrlcch2"], ["https://tec.openplanner.team/stops/X903aea", "https://tec.openplanner.team/stops/X903afb"], ["https://tec.openplanner.team/stops/X921afb", "https://tec.openplanner.team/stops/X921akb"], ["https://tec.openplanner.team/stops/H1bu143b", "https://tec.openplanner.team/stops/H2le150a"], ["https://tec.openplanner.team/stops/X952aba", "https://tec.openplanner.team/stops/X952abb"], ["https://tec.openplanner.team/stops/X805aga", "https://tec.openplanner.team/stops/X805aha"], ["https://tec.openplanner.team/stops/LsCkirc1", "https://tec.openplanner.team/stops/LsCkirc2"], ["https://tec.openplanner.team/stops/H1eu103b", "https://tec.openplanner.team/stops/H1eu104a"], ["https://tec.openplanner.team/stops/H1mk113a", "https://tec.openplanner.team/stops/H1mk114b"], ["https://tec.openplanner.team/stops/NL30aka", "https://tec.openplanner.team/stops/NL30akb"], ["https://tec.openplanner.team/stops/Cctbois1", "https://tec.openplanner.team/stops/Cctkais1"], ["https://tec.openplanner.team/stops/LeYmosc1", "https://tec.openplanner.team/stops/LeYmosc2"], ["https://tec.openplanner.team/stops/Bndbdra2", "https://tec.openplanner.team/stops/Btlgbro1"], ["https://tec.openplanner.team/stops/LWZeg--2", "https://tec.openplanner.team/stops/X261abb"], ["https://tec.openplanner.team/stops/X640ada", "https://tec.openplanner.team/stops/X640ana"], ["https://tec.openplanner.team/stops/Lagjard2", "https://tec.openplanner.team/stops/Lagpaix2"], ["https://tec.openplanner.team/stops/H3lr111a", "https://tec.openplanner.team/stops/H3lr112a"], ["https://tec.openplanner.team/stops/H1as102b", "https://tec.openplanner.team/stops/H1hg181a"], ["https://tec.openplanner.team/stops/LlgOPER1", "https://tec.openplanner.team/stops/LlgOPER4"], ["https://tec.openplanner.team/stops/X757ajb", "https://tec.openplanner.team/stops/X757amb"], ["https://tec.openplanner.team/stops/N331aia", "https://tec.openplanner.team/stops/N331akb"], ["https://tec.openplanner.team/stops/X996aaa", "https://tec.openplanner.team/stops/X996acb"], ["https://tec.openplanner.team/stops/H3so157a", "https://tec.openplanner.team/stops/H3so159b"], ["https://tec.openplanner.team/stops/X636aca", "https://tec.openplanner.team/stops/X670aqa"], ["https://tec.openplanner.team/stops/H1cv100a", "https://tec.openplanner.team/stops/H1cv103a"], ["https://tec.openplanner.team/stops/Bnodtir1", "https://tec.openplanner.team/stops/Boplsma3"], ["https://tec.openplanner.team/stops/X786adb", "https://tec.openplanner.team/stops/X786aea"], ["https://tec.openplanner.team/stops/N501fby", "https://tec.openplanner.team/stops/N501fqb"], ["https://tec.openplanner.team/stops/X923aba", "https://tec.openplanner.team/stops/X923ama"], ["https://tec.openplanner.team/stops/N522ama", "https://tec.openplanner.team/stops/N522ana"], ["https://tec.openplanner.team/stops/Cgycorv4", "https://tec.openplanner.team/stops/Cgyobse2"], ["https://tec.openplanner.team/stops/N525ada", "https://tec.openplanner.team/stops/N525adb"], ["https://tec.openplanner.team/stops/NL75aaa", "https://tec.openplanner.team/stops/NL75ada"], ["https://tec.openplanner.team/stops/H1ht122b", "https://tec.openplanner.team/stops/H1ht124b"], ["https://tec.openplanner.team/stops/LaSneuh2", "https://tec.openplanner.team/stops/LhGfrie2"], ["https://tec.openplanner.team/stops/Cjudevo2", "https://tec.openplanner.team/stops/Cjuhden4"], ["https://tec.openplanner.team/stops/LLxcrem1", "https://tec.openplanner.team/stops/LLxnive2"], ["https://tec.openplanner.team/stops/LPTblan2", "https://tec.openplanner.team/stops/LPTgran2"], ["https://tec.openplanner.team/stops/Lsebrun1", "https://tec.openplanner.team/stops/Lsephar2"], ["https://tec.openplanner.team/stops/Canmonu2", "https://tec.openplanner.team/stops/Canmonu5"], ["https://tec.openplanner.team/stops/LLAbure1", "https://tec.openplanner.team/stops/LPleclu1"], ["https://tec.openplanner.team/stops/H1gy114b", "https://tec.openplanner.team/stops/H1le119a"], ["https://tec.openplanner.team/stops/X908ama", "https://tec.openplanner.team/stops/X908amb"], ["https://tec.openplanner.team/stops/X747aia", "https://tec.openplanner.team/stops/X747aja"], ["https://tec.openplanner.team/stops/Cthwaib1", "https://tec.openplanner.team/stops/Cthwaib2"], ["https://tec.openplanner.team/stops/X775aic", "https://tec.openplanner.team/stops/X775aja"], ["https://tec.openplanner.team/stops/N564aea", "https://tec.openplanner.team/stops/N585ahb"], ["https://tec.openplanner.team/stops/LFfeg--1", "https://tec.openplanner.team/stops/LPRfond2"], ["https://tec.openplanner.team/stops/N357afa", "https://tec.openplanner.team/stops/X351adb"], ["https://tec.openplanner.team/stops/Clbchlo2", "https://tec.openplanner.team/stops/Clbpepi2"], ["https://tec.openplanner.team/stops/N127aia", "https://tec.openplanner.team/stops/N135bda"], ["https://tec.openplanner.team/stops/N511ajb", "https://tec.openplanner.team/stops/N511akb"], ["https://tec.openplanner.team/stops/N511aia", "https://tec.openplanner.team/stops/N511ama"], ["https://tec.openplanner.team/stops/H1br125a", "https://tec.openplanner.team/stops/H1wz173b"], ["https://tec.openplanner.team/stops/LAo161-2", "https://tec.openplanner.team/stops/LTPtroi1"], ["https://tec.openplanner.team/stops/N323aba", "https://tec.openplanner.team/stops/N323abb"], ["https://tec.openplanner.team/stops/LOucarr3", "https://tec.openplanner.team/stops/LOuplac3"], ["https://tec.openplanner.team/stops/X754ana", "https://tec.openplanner.team/stops/X754ava"], ["https://tec.openplanner.team/stops/X601ava", "https://tec.openplanner.team/stops/X601avb"], ["https://tec.openplanner.team/stops/H4cl112b", "https://tec.openplanner.team/stops/H4vx360a"], ["https://tec.openplanner.team/stops/N152abb", "https://tec.openplanner.team/stops/N152ade"], ["https://tec.openplanner.team/stops/LMOelva3", "https://tec.openplanner.team/stops/LMOs45-1"], ["https://tec.openplanner.team/stops/H1je211a", "https://tec.openplanner.team/stops/H1je217b"], ["https://tec.openplanner.team/stops/NL77aca", "https://tec.openplanner.team/stops/NL77acb"], ["https://tec.openplanner.team/stops/LHoetie1", "https://tec.openplanner.team/stops/LHoetie2"], ["https://tec.openplanner.team/stops/H2le147a", "https://tec.openplanner.team/stops/H2le147b"], ["https://tec.openplanner.team/stops/X982arb", "https://tec.openplanner.team/stops/X982cca"], ["https://tec.openplanner.team/stops/Lstpole2", "https://tec.openplanner.team/stops/Lstscie1"], ["https://tec.openplanner.team/stops/Bllngar5", "https://tec.openplanner.team/stops/Bllngar7"], ["https://tec.openplanner.team/stops/LAWcite2", "https://tec.openplanner.team/stops/LAWmc--2"], ["https://tec.openplanner.team/stops/LTIdamr2", "https://tec.openplanner.team/stops/LTIecma2"], ["https://tec.openplanner.team/stops/X801bka", "https://tec.openplanner.team/stops/X802ajb"], ["https://tec.openplanner.team/stops/Cmahotv1", "https://tec.openplanner.team/stops/Cmamarc1"], ["https://tec.openplanner.team/stops/NL72aaa", "https://tec.openplanner.team/stops/NL72aab"], ["https://tec.openplanner.team/stops/H2sv219a", "https://tec.openplanner.team/stops/H2sv220b"], ["https://tec.openplanner.team/stops/N351aib", "https://tec.openplanner.team/stops/N351ajb"], ["https://tec.openplanner.team/stops/Bottgar4", "https://tec.openplanner.team/stops/Bottvil2"], ["https://tec.openplanner.team/stops/Bclgeco1", "https://tec.openplanner.team/stops/Bclgfva2"], ["https://tec.openplanner.team/stops/LCschen1", "https://tec.openplanner.team/stops/LCseg--1"], ["https://tec.openplanner.team/stops/H5at134b", "https://tec.openplanner.team/stops/H5at142a"], ["https://tec.openplanner.team/stops/LrEborn1", "https://tec.openplanner.team/stops/LrEfeck2"], ["https://tec.openplanner.team/stops/LPLcond2", "https://tec.openplanner.team/stops/LRRchen1"], ["https://tec.openplanner.team/stops/H4by117a", "https://tec.openplanner.team/stops/H4tu172b"], ["https://tec.openplanner.team/stops/Cthstre2", "https://tec.openplanner.team/stops/H1lo119a"], ["https://tec.openplanner.team/stops/LHNcreh1", "https://tec.openplanner.team/stops/LHNgare2"], ["https://tec.openplanner.team/stops/Ccaegli4", "https://tec.openplanner.team/stops/N162abb"], ["https://tec.openplanner.team/stops/N339aaa", "https://tec.openplanner.team/stops/N339aca"], ["https://tec.openplanner.team/stops/H4ft133b", "https://tec.openplanner.team/stops/H4ft134b"], ["https://tec.openplanner.team/stops/NL73aab", "https://tec.openplanner.team/stops/NL73aba"], ["https://tec.openplanner.team/stops/H4hx109a", "https://tec.openplanner.team/stops/H4hx109b"], ["https://tec.openplanner.team/stops/N514ahb", "https://tec.openplanner.team/stops/N514amb"], ["https://tec.openplanner.team/stops/X342ahb", "https://tec.openplanner.team/stops/X354abb"], ["https://tec.openplanner.team/stops/H2mg135a", "https://tec.openplanner.team/stops/H2mg144a"], ["https://tec.openplanner.team/stops/Cmldupu2", "https://tec.openplanner.team/stops/NC01afb"], ["https://tec.openplanner.team/stops/H4ev125b", "https://tec.openplanner.team/stops/H4hx116b"], ["https://tec.openplanner.team/stops/Cmlfstt2", "https://tec.openplanner.team/stops/Cmlrous2"], ["https://tec.openplanner.team/stops/N511aoc", "https://tec.openplanner.team/stops/N511aua"], ["https://tec.openplanner.team/stops/N222adb", "https://tec.openplanner.team/stops/X222add"], ["https://tec.openplanner.team/stops/LBImili1", "https://tec.openplanner.team/stops/LBImili2"], ["https://tec.openplanner.team/stops/Bblmwma1", "https://tec.openplanner.team/stops/Bblmwma2"], ["https://tec.openplanner.team/stops/N539ahb", "https://tec.openplanner.team/stops/N539arb"], ["https://tec.openplanner.team/stops/LHAdeho1", "https://tec.openplanner.team/stops/LHAmonu2"], ["https://tec.openplanner.team/stops/H4va233a", "https://tec.openplanner.team/stops/H4vd230b"], ["https://tec.openplanner.team/stops/LTPcarr1", "https://tec.openplanner.team/stops/LTPnoup2"], ["https://tec.openplanner.team/stops/Lrcastr4", "https://tec.openplanner.team/stops/Lrclant3"], ["https://tec.openplanner.team/stops/N532aia", "https://tec.openplanner.team/stops/N532akb"], ["https://tec.openplanner.team/stops/Llgbonn2", "https://tec.openplanner.team/stops/Llgdony2"], ["https://tec.openplanner.team/stops/N513alb", "https://tec.openplanner.team/stops/N514aja"], ["https://tec.openplanner.team/stops/N509ata", "https://tec.openplanner.team/stops/N511aia"], ["https://tec.openplanner.team/stops/Cchoues1", "https://tec.openplanner.team/stops/Cchoues5"], ["https://tec.openplanner.team/stops/Lenhosp1", "https://tec.openplanner.team/stops/Lenhosp2"], ["https://tec.openplanner.team/stops/N534acb", "https://tec.openplanner.team/stops/N543bya"], ["https://tec.openplanner.team/stops/Blindel4", "https://tec.openplanner.team/stops/Blindel5"], ["https://tec.openplanner.team/stops/Llgbuis1", "https://tec.openplanner.team/stops/Lscstan1"], ["https://tec.openplanner.team/stops/Llghec-1", "https://tec.openplanner.team/stops/Llglonh2"], ["https://tec.openplanner.team/stops/X804aza", "https://tec.openplanner.team/stops/X804bab"], ["https://tec.openplanner.team/stops/X657aia", "https://tec.openplanner.team/stops/X670ahb"], ["https://tec.openplanner.team/stops/Bbrlmez2", "https://tec.openplanner.team/stops/Bhaless1"], ["https://tec.openplanner.team/stops/X826adb", "https://tec.openplanner.team/stops/X826add"], ["https://tec.openplanner.team/stops/Bbgelre1", "https://tec.openplanner.team/stops/Bwavbmo1"], ["https://tec.openplanner.team/stops/LTNcarr1", "https://tec.openplanner.team/stops/LTNeau-1"], ["https://tec.openplanner.team/stops/Bgligra2", "https://tec.openplanner.team/stops/Btlbegl1"], ["https://tec.openplanner.team/stops/X721ana", "https://tec.openplanner.team/stops/X721arb"], ["https://tec.openplanner.team/stops/LAicarr2", "https://tec.openplanner.team/stops/LENalun2"], ["https://tec.openplanner.team/stops/Cjubert1", "https://tec.openplanner.team/stops/CMbert1"], ["https://tec.openplanner.team/stops/N232ava", "https://tec.openplanner.team/stops/N232awa"], ["https://tec.openplanner.team/stops/LOUbarr3", "https://tec.openplanner.team/stops/LOUbleu1"], ["https://tec.openplanner.team/stops/H4ag106a", "https://tec.openplanner.team/stops/H4ag106b"], ["https://tec.openplanner.team/stops/Clodrio1", "https://tec.openplanner.team/stops/Clodrio2"], ["https://tec.openplanner.team/stops/H1th180a", "https://tec.openplanner.team/stops/H3so153a"], ["https://tec.openplanner.team/stops/X804aca", "https://tec.openplanner.team/stops/X804acb"], ["https://tec.openplanner.team/stops/Cmastch1", "https://tec.openplanner.team/stops/Cmastch2"], ["https://tec.openplanner.team/stops/LOUbleu1", "https://tec.openplanner.team/stops/LOUpres2"], ["https://tec.openplanner.team/stops/X613aab", "https://tec.openplanner.team/stops/X623akb"], ["https://tec.openplanner.team/stops/H2le176a", "https://tec.openplanner.team/stops/H2le176b"], ["https://tec.openplanner.team/stops/H4co134a", "https://tec.openplanner.team/stops/H4co157b"], ["https://tec.openplanner.team/stops/Lvecite1", "https://tec.openplanner.team/stops/Lveepar2"], ["https://tec.openplanner.team/stops/H4ty354a", "https://tec.openplanner.team/stops/H4ty354b"], ["https://tec.openplanner.team/stops/N141aja", "https://tec.openplanner.team/stops/N141ajb"], ["https://tec.openplanner.team/stops/X804aaa", "https://tec.openplanner.team/stops/X818acb"], ["https://tec.openplanner.team/stops/Cnahous1", "https://tec.openplanner.team/stops/Cnahous2"], ["https://tec.openplanner.team/stops/X850ama", "https://tec.openplanner.team/stops/X850amb"], ["https://tec.openplanner.team/stops/LPAbrun1", "https://tec.openplanner.team/stops/LPAvill2"], ["https://tec.openplanner.team/stops/Lfhchaf2", "https://tec.openplanner.team/stops/Lfhchaf4"], ["https://tec.openplanner.team/stops/H4ir162a", "https://tec.openplanner.team/stops/H5at129a"], ["https://tec.openplanner.team/stops/Lemhuet1", "https://tec.openplanner.team/stops/Lemhuet2"], ["https://tec.openplanner.team/stops/Bblafrn2", "https://tec.openplanner.team/stops/Bblajap1"], ["https://tec.openplanner.team/stops/LGemari2", "https://tec.openplanner.team/stops/LMsvill2"], ["https://tec.openplanner.team/stops/Lbeloui2", "https://tec.openplanner.team/stops/LSAeg--2"], ["https://tec.openplanner.team/stops/X725asb", "https://tec.openplanner.team/stops/X725atb"], ["https://tec.openplanner.team/stops/LGmcent1", "https://tec.openplanner.team/stops/LGmhumb1"], ["https://tec.openplanner.team/stops/X361aba", "https://tec.openplanner.team/stops/X371aia"], ["https://tec.openplanner.team/stops/X633aja", "https://tec.openplanner.team/stops/X633ama"], ["https://tec.openplanner.team/stops/Cctmine1", "https://tec.openplanner.team/stops/Ccurtra1"], ["https://tec.openplanner.team/stops/H4re225a", "https://tec.openplanner.team/stops/H4re226a"], ["https://tec.openplanner.team/stops/N506afb", "https://tec.openplanner.team/stops/N556ada"], ["https://tec.openplanner.team/stops/H1ro132a", "https://tec.openplanner.team/stops/H1ro140b"], ["https://tec.openplanner.team/stops/LeUgulc1", "https://tec.openplanner.team/stops/LeUwetz2"], ["https://tec.openplanner.team/stops/Bmsgbay2", "https://tec.openplanner.team/stops/Bmsgpfo2"], ["https://tec.openplanner.team/stops/Canresi1", "https://tec.openplanner.team/stops/Canresi2"], ["https://tec.openplanner.team/stops/X723adb", "https://tec.openplanner.team/stops/X723aeb"], ["https://tec.openplanner.team/stops/LWEchat2", "https://tec.openplanner.team/stops/LWEhang1"], ["https://tec.openplanner.team/stops/LBTfoot1", "https://tec.openplanner.team/stops/LCHsaul1"], ["https://tec.openplanner.team/stops/X633aia", "https://tec.openplanner.team/stops/X653aea"], ["https://tec.openplanner.team/stops/Bgermco1", "https://tec.openplanner.team/stops/Bgrhcen1"], ["https://tec.openplanner.team/stops/X625aaa", "https://tec.openplanner.team/stops/X625afb"], ["https://tec.openplanner.team/stops/Brebcha1", "https://tec.openplanner.team/stops/Brebgpl1"], ["https://tec.openplanner.team/stops/X812aba", "https://tec.openplanner.team/stops/X812agb"], ["https://tec.openplanner.team/stops/X886aaa", "https://tec.openplanner.team/stops/X886aha"], ["https://tec.openplanner.team/stops/LMNeg--2", "https://tec.openplanner.team/stops/LMNgend2"], ["https://tec.openplanner.team/stops/Cmazsnc1", "https://tec.openplanner.team/stops/Cmazsnc2"], ["https://tec.openplanner.team/stops/H4pq114a", "https://tec.openplanner.team/stops/H4pq117a"], ["https://tec.openplanner.team/stops/LSZclem1", "https://tec.openplanner.team/stops/LSZpont2"], ["https://tec.openplanner.team/stops/Lvteg--1", "https://tec.openplanner.team/stops/Lvtegli*"], ["https://tec.openplanner.team/stops/N353aeb", "https://tec.openplanner.team/stops/N353afd"], ["https://tec.openplanner.team/stops/X741abb", "https://tec.openplanner.team/stops/X752aab"], ["https://tec.openplanner.team/stops/H4ro156a", "https://tec.openplanner.team/stops/H5pe146b"], ["https://tec.openplanner.team/stops/H2ca101a", "https://tec.openplanner.team/stops/H2ca111b"], ["https://tec.openplanner.team/stops/LdEkreu2", "https://tec.openplanner.team/stops/LeIdeid1"], ["https://tec.openplanner.team/stops/X224aab", "https://tec.openplanner.team/stops/X224acb"], ["https://tec.openplanner.team/stops/X908aka", "https://tec.openplanner.team/stops/X908ama"], ["https://tec.openplanner.team/stops/N551ala", "https://tec.openplanner.team/stops/N551aob"], ["https://tec.openplanner.team/stops/Bezegar2", "https://tec.openplanner.team/stops/Bneesjo2"], ["https://tec.openplanner.team/stops/LaMades2", "https://tec.openplanner.team/stops/LaMbrei1"], ["https://tec.openplanner.team/stops/N521agb", "https://tec.openplanner.team/stops/N521aia"], ["https://tec.openplanner.team/stops/X721amb", "https://tec.openplanner.team/stops/X721anb"], ["https://tec.openplanner.team/stops/Bgntcha2", "https://tec.openplanner.team/stops/Bgntpos1"], ["https://tec.openplanner.team/stops/Cciethi1", "https://tec.openplanner.team/stops/Cciferr1"], ["https://tec.openplanner.team/stops/Lbocime1", "https://tec.openplanner.team/stops/Lbomc--5"], ["https://tec.openplanner.team/stops/LSebott2", "https://tec.openplanner.team/stops/LSemc--2"], ["https://tec.openplanner.team/stops/H2tr250a", "https://tec.openplanner.team/stops/H2tr252b"], ["https://tec.openplanner.team/stops/X718aia", "https://tec.openplanner.team/stops/X718aib"], ["https://tec.openplanner.team/stops/Cgyrrep1", "https://tec.openplanner.team/stops/Cgyrrep2"], ["https://tec.openplanner.team/stops/NL76aoa", "https://tec.openplanner.team/stops/NL80avb"], ["https://tec.openplanner.team/stops/LCTcret1", "https://tec.openplanner.team/stops/LCTmonu1"], ["https://tec.openplanner.team/stops/Canplch1", "https://tec.openplanner.team/stops/Canplch3"], ["https://tec.openplanner.team/stops/H1ba108a", "https://tec.openplanner.team/stops/H1ba108b"], ["https://tec.openplanner.team/stops/X813acb", "https://tec.openplanner.team/stops/X813ada"], ["https://tec.openplanner.team/stops/N501bna", "https://tec.openplanner.team/stops/N501bua"], ["https://tec.openplanner.team/stops/Ccomiau2", "https://tec.openplanner.team/stops/Cronova1"], ["https://tec.openplanner.team/stops/X601bqa", "https://tec.openplanner.team/stops/X601dha"], ["https://tec.openplanner.team/stops/LFTneur*", "https://tec.openplanner.team/stops/LNAbois2"], ["https://tec.openplanner.team/stops/X664aja", "https://tec.openplanner.team/stops/X666aca"], ["https://tec.openplanner.team/stops/Blkbbvh1", "https://tec.openplanner.team/stops/Bucccre1"], ["https://tec.openplanner.team/stops/Csdjeme2", "https://tec.openplanner.team/stops/Cvpsncb1"], ["https://tec.openplanner.team/stops/LSZheid1", "https://tec.openplanner.team/stops/LSZheid2"], ["https://tec.openplanner.team/stops/H5qu139b", "https://tec.openplanner.team/stops/H5qu147a"], ["https://tec.openplanner.team/stops/N506afa", "https://tec.openplanner.team/stops/N506afb"], ["https://tec.openplanner.team/stops/Bclgvmo1", "https://tec.openplanner.team/stops/Bcrbast1"], ["https://tec.openplanner.team/stops/Loufleu2", "https://tec.openplanner.team/stops/Loujouh1"], ["https://tec.openplanner.team/stops/H1er109a", "https://tec.openplanner.team/stops/H1so142a"], ["https://tec.openplanner.team/stops/H1pa100b", "https://tec.openplanner.team/stops/H1pa117a"], ["https://tec.openplanner.team/stops/Ltibell1", "https://tec.openplanner.team/stops/Ltiplat1"], ["https://tec.openplanner.team/stops/H4te251a", "https://tec.openplanner.team/stops/H4te260a"], ["https://tec.openplanner.team/stops/LBVzand1", "https://tec.openplanner.team/stops/LBVzand4"], ["https://tec.openplanner.team/stops/Bsamc7d1", "https://tec.openplanner.team/stops/Bsamegl2"], ["https://tec.openplanner.team/stops/Crebien2", "https://tec.openplanner.team/stops/Crestan1"], ["https://tec.openplanner.team/stops/H4re226a", "https://tec.openplanner.team/stops/H4re226b"], ["https://tec.openplanner.team/stops/N209aab", "https://tec.openplanner.team/stops/N209aba"], ["https://tec.openplanner.team/stops/Lhrathe2", "https://tec.openplanner.team/stops/Lhrmilm2"], ["https://tec.openplanner.team/stops/Loubiez1", "https://tec.openplanner.team/stops/Louduna*"], ["https://tec.openplanner.team/stops/N201ata", "https://tec.openplanner.team/stops/N201atb"], ["https://tec.openplanner.team/stops/Bhmmcor1", "https://tec.openplanner.team/stops/Bhmmcsc1"], ["https://tec.openplanner.team/stops/Lhrmemo1", "https://tec.openplanner.team/stops/Lhrmemo2"], ["https://tec.openplanner.team/stops/X601aia", "https://tec.openplanner.team/stops/X601aib"], ["https://tec.openplanner.team/stops/Cwfbarr1", "https://tec.openplanner.team/stops/NC12aab"], ["https://tec.openplanner.team/stops/X669agd", "https://tec.openplanner.team/stops/X672afa"], ["https://tec.openplanner.team/stops/LHUecte2", "https://tec.openplanner.team/stops/LHUpost2"], ["https://tec.openplanner.team/stops/N501lsa", "https://tec.openplanner.team/stops/N501lsb"], ["https://tec.openplanner.team/stops/Bgemga07", "https://tec.openplanner.team/stops/Bgemga08"], ["https://tec.openplanner.team/stops/H1ry134b", "https://tec.openplanner.team/stops/H1ry136a"], ["https://tec.openplanner.team/stops/N244ada", "https://tec.openplanner.team/stops/N244afa"], ["https://tec.openplanner.team/stops/H4ef113a", "https://tec.openplanner.team/stops/H4ef138a"], ["https://tec.openplanner.team/stops/LNCimpe1", "https://tec.openplanner.team/stops/LNCpi331"], ["https://tec.openplanner.team/stops/N554aaa", "https://tec.openplanner.team/stops/N554aab"], ["https://tec.openplanner.team/stops/N537akb", "https://tec.openplanner.team/stops/N562bja"], ["https://tec.openplanner.team/stops/LFNlato1", "https://tec.openplanner.team/stops/LPOeg--2"], ["https://tec.openplanner.team/stops/X619aia", "https://tec.openplanner.team/stops/X620aea"], ["https://tec.openplanner.team/stops/LXHadam1", "https://tec.openplanner.team/stops/LXHbois2"], ["https://tec.openplanner.team/stops/LESryon2", "https://tec.openplanner.team/stops/LSdcent2"], ["https://tec.openplanner.team/stops/Lglvand2", "https://tec.openplanner.team/stops/Llgjenn3"], ["https://tec.openplanner.team/stops/H1ev112a", "https://tec.openplanner.team/stops/H1ev116b"], ["https://tec.openplanner.team/stops/H1ms300a", "https://tec.openplanner.team/stops/H1ms307a"], ["https://tec.openplanner.team/stops/Bnivall2", "https://tec.openplanner.team/stops/Bnivchh2"], ["https://tec.openplanner.team/stops/X358aba", "https://tec.openplanner.team/stops/X358afa"], ["https://tec.openplanner.team/stops/X664akb", "https://tec.openplanner.team/stops/X664atb"], ["https://tec.openplanner.team/stops/LSG111-2", "https://tec.openplanner.team/stops/LSG172-1"], ["https://tec.openplanner.team/stops/Lsnhorl1", "https://tec.openplanner.team/stops/Ltihorl1"], ["https://tec.openplanner.team/stops/X947aaa", "https://tec.openplanner.team/stops/X947aab"], ["https://tec.openplanner.team/stops/LrDhind2", "https://tec.openplanner.team/stops/LrDzoll4"], ["https://tec.openplanner.team/stops/LbUjost1", "https://tec.openplanner.team/stops/LhUrich1"], ["https://tec.openplanner.team/stops/Cfldand2", "https://tec.openplanner.team/stops/Cflmart1"], ["https://tec.openplanner.team/stops/H4do104a", "https://tec.openplanner.team/stops/H4ev118a"], ["https://tec.openplanner.team/stops/X779aba", "https://tec.openplanner.team/stops/X779aia"], ["https://tec.openplanner.team/stops/Llghong2", "https://tec.openplanner.team/stops/Llgphol3"], ["https://tec.openplanner.team/stops/H5el105a", "https://tec.openplanner.team/stops/H5el111a"], ["https://tec.openplanner.team/stops/H2ll199a", "https://tec.openplanner.team/stops/H2ll199b"], ["https://tec.openplanner.team/stops/X664aea", "https://tec.openplanner.team/stops/X667adb"], ["https://tec.openplanner.team/stops/LMspont1", "https://tec.openplanner.team/stops/LMspont2"], ["https://tec.openplanner.team/stops/X261abb", "https://tec.openplanner.team/stops/X261acb"], ["https://tec.openplanner.team/stops/N531asa", "https://tec.openplanner.team/stops/N531asc"], ["https://tec.openplanner.team/stops/H1cu119b", "https://tec.openplanner.team/stops/H1cu127a"], ["https://tec.openplanner.team/stops/Bgligli2", "https://tec.openplanner.team/stops/Bgliron1"], ["https://tec.openplanner.team/stops/N501hdb", "https://tec.openplanner.team/stops/N501zea"], ["https://tec.openplanner.team/stops/Blascvi1", "https://tec.openplanner.team/stops/Bohncha2"], ["https://tec.openplanner.team/stops/X601bcb", "https://tec.openplanner.team/stops/X601bhb"], ["https://tec.openplanner.team/stops/N584azb", "https://tec.openplanner.team/stops/N584bob"], ["https://tec.openplanner.team/stops/Blimeur2", "https://tec.openplanner.team/stops/Blmlqlo1"], ["https://tec.openplanner.team/stops/LLrmc--1", "https://tec.openplanner.team/stops/LLrmc--2"], ["https://tec.openplanner.team/stops/X764aca", "https://tec.openplanner.team/stops/X764acb"], ["https://tec.openplanner.team/stops/Caicalv1", "https://tec.openplanner.team/stops/Cprsapv1"], ["https://tec.openplanner.team/stops/NL75ada", "https://tec.openplanner.team/stops/NL75adb"], ["https://tec.openplanner.team/stops/N501fpa", "https://tec.openplanner.team/stops/N501fpb"], ["https://tec.openplanner.team/stops/Beclbse1", "https://tec.openplanner.team/stops/H2ec101a"], ["https://tec.openplanner.team/stops/LSZroqu2", "https://tec.openplanner.team/stops/LSZsolw2"], ["https://tec.openplanner.team/stops/Bmlnbpr2", "https://tec.openplanner.team/stops/Bmlncle1"], ["https://tec.openplanner.team/stops/X362adb", "https://tec.openplanner.team/stops/X363acb"], ["https://tec.openplanner.team/stops/H5bl142b", "https://tec.openplanner.team/stops/H5bl143b"], ["https://tec.openplanner.team/stops/N501esa", "https://tec.openplanner.team/stops/N501esy"], ["https://tec.openplanner.team/stops/N270ada", "https://tec.openplanner.team/stops/N270aec"], ["https://tec.openplanner.team/stops/Lseconc2", "https://tec.openplanner.team/stops/Lseresi2"], ["https://tec.openplanner.team/stops/N501hjc", "https://tec.openplanner.team/stops/N501hlz"], ["https://tec.openplanner.team/stops/NC11ama", "https://tec.openplanner.team/stops/NC11aob"], ["https://tec.openplanner.team/stops/Cmaegal1", "https://tec.openplanner.team/stops/Crobass1"], ["https://tec.openplanner.team/stops/H1hv135b", "https://tec.openplanner.team/stops/H1mk123a"], ["https://tec.openplanner.team/stops/X659aya", "https://tec.openplanner.team/stops/X659ayb"], ["https://tec.openplanner.team/stops/Bnilpie1", "https://tec.openplanner.team/stops/Bnilpie2"], ["https://tec.openplanner.team/stops/H1bd100b", "https://tec.openplanner.team/stops/H1bd102a"], ["https://tec.openplanner.team/stops/Btgregl1", "https://tec.openplanner.team/stops/N584aha"], ["https://tec.openplanner.team/stops/Cmlaili2", "https://tec.openplanner.team/stops/NC02apa"], ["https://tec.openplanner.team/stops/Cjuphil1", "https://tec.openplanner.team/stops/Cralimi2"], ["https://tec.openplanner.team/stops/Cchdigu1", "https://tec.openplanner.team/stops/Cchdigu4"], ["https://tec.openplanner.team/stops/Baudvdu1", "https://tec.openplanner.team/stops/Baudwav1"], ["https://tec.openplanner.team/stops/H1hc126b", "https://tec.openplanner.team/stops/H1po132b"], ["https://tec.openplanner.team/stops/Lstbota3", "https://tec.openplanner.team/stops/LTIecma1"], ["https://tec.openplanner.team/stops/N150aec", "https://tec.openplanner.team/stops/N150aed"], ["https://tec.openplanner.team/stops/LENcroi2", "https://tec.openplanner.team/stops/LENmc--1"], ["https://tec.openplanner.team/stops/LBNeu711", "https://tec.openplanner.team/stops/LMeeg--1"], ["https://tec.openplanner.team/stops/N153abb", "https://tec.openplanner.team/stops/N153ada"], ["https://tec.openplanner.team/stops/N117aaa", "https://tec.openplanner.team/stops/N117aoc"], ["https://tec.openplanner.team/stops/LScchpl1", "https://tec.openplanner.team/stops/LVTforg2"], ["https://tec.openplanner.team/stops/X954aga", "https://tec.openplanner.team/stops/X954agb"], ["https://tec.openplanner.team/stops/N346aaa", "https://tec.openplanner.team/stops/X346ala"], ["https://tec.openplanner.team/stops/LYegeor1", "https://tec.openplanner.team/stops/LYegeor3"], ["https://tec.openplanner.team/stops/N549afa", "https://tec.openplanner.team/stops/N578aaa"], ["https://tec.openplanner.team/stops/Bgzdgth1", "https://tec.openplanner.team/stops/Bpecvme2"], ["https://tec.openplanner.team/stops/X758aba", "https://tec.openplanner.team/stops/X758aha"], ["https://tec.openplanner.team/stops/H2mm140b", "https://tec.openplanner.team/stops/H2mo129b"], ["https://tec.openplanner.team/stops/H4br107b", "https://tec.openplanner.team/stops/H4br110b"], ["https://tec.openplanner.team/stops/X759aca", "https://tec.openplanner.team/stops/X759afa"], ["https://tec.openplanner.team/stops/N301anb", "https://tec.openplanner.team/stops/N301aob"], ["https://tec.openplanner.team/stops/X654aab", "https://tec.openplanner.team/stops/X654aeb"], ["https://tec.openplanner.team/stops/Bjancha1", "https://tec.openplanner.team/stops/Bolpmre1"], ["https://tec.openplanner.team/stops/Cmychau2", "https://tec.openplanner.team/stops/Cmyfoym2"], ["https://tec.openplanner.team/stops/Bbealbu4", "https://tec.openplanner.team/stops/Bbeapim1"], ["https://tec.openplanner.team/stops/LSPfrai2", "https://tec.openplanner.team/stops/LSPmari2"], ["https://tec.openplanner.team/stops/Lagbeno2", "https://tec.openplanner.team/stops/Lagbeno5"], ["https://tec.openplanner.team/stops/X624afa", "https://tec.openplanner.team/stops/X624aga"], ["https://tec.openplanner.team/stops/X721aaa", "https://tec.openplanner.team/stops/X763aib"], ["https://tec.openplanner.team/stops/X636beb", "https://tec.openplanner.team/stops/X649abb"], ["https://tec.openplanner.team/stops/H1ge116b", "https://tec.openplanner.team/stops/H1ge151a"], ["https://tec.openplanner.team/stops/Bmalsme1", "https://tec.openplanner.team/stops/Bsrbtil2"], ["https://tec.openplanner.team/stops/Chpcarp1", "https://tec.openplanner.team/stops/Chpfoli5"], ["https://tec.openplanner.team/stops/Llghaut2", "https://tec.openplanner.team/stops/Llgseel2"], ["https://tec.openplanner.team/stops/Cgon51", "https://tec.openplanner.team/stops/Cgoson12"], ["https://tec.openplanner.team/stops/H2ll195a", "https://tec.openplanner.team/stops/H2sv218a"], ["https://tec.openplanner.team/stops/H4lg100a", "https://tec.openplanner.team/stops/H4ta135a"], ["https://tec.openplanner.team/stops/Llghoch1", "https://tec.openplanner.team/stops/Llghoch2"], ["https://tec.openplanner.team/stops/X817acb", "https://tec.openplanner.team/stops/X817aeb"], ["https://tec.openplanner.team/stops/Cfcchen2", "https://tec.openplanner.team/stops/Cfcecol3"], ["https://tec.openplanner.team/stops/H1by108c", "https://tec.openplanner.team/stops/H1by108d"], ["https://tec.openplanner.team/stops/X631aaa", "https://tec.openplanner.team/stops/X631aab"], ["https://tec.openplanner.team/stops/N165aaa", "https://tec.openplanner.team/stops/N165aab"], ["https://tec.openplanner.team/stops/H4va231a", "https://tec.openplanner.team/stops/H4va231b"], ["https://tec.openplanner.team/stops/X759aba", "https://tec.openplanner.team/stops/X759aca"], ["https://tec.openplanner.team/stops/N154aca", "https://tec.openplanner.team/stops/N154acb"], ["https://tec.openplanner.team/stops/X813abb", "https://tec.openplanner.team/stops/X857aba"], ["https://tec.openplanner.team/stops/H4ty276a", "https://tec.openplanner.team/stops/H4ty276b"], ["https://tec.openplanner.team/stops/X653abb", "https://tec.openplanner.team/stops/X653aea"], ["https://tec.openplanner.team/stops/LSTchal4", "https://tec.openplanner.team/stops/LSTcomm2"], ["https://tec.openplanner.team/stops/Bpercsp2", "https://tec.openplanner.team/stops/Bperrma2"], ["https://tec.openplanner.team/stops/N528alb", "https://tec.openplanner.team/stops/N528awb"], ["https://tec.openplanner.team/stops/Lgdblom1", "https://tec.openplanner.team/stops/Lgdrena1"], ["https://tec.openplanner.team/stops/LHYdogn2", "https://tec.openplanner.team/stops/LSpfond2"], ["https://tec.openplanner.team/stops/LHAleru1", "https://tec.openplanner.team/stops/LHAleru2"], ["https://tec.openplanner.team/stops/LBjpech2", "https://tec.openplanner.team/stops/X561aaa"], ["https://tec.openplanner.team/stops/H4bh103b", "https://tec.openplanner.team/stops/H4bh105b"], ["https://tec.openplanner.team/stops/Lch179-1", "https://tec.openplanner.team/stops/LHOmc--2"], ["https://tec.openplanner.team/stops/Cmychap4", "https://tec.openplanner.team/stops/Cmychau1"], ["https://tec.openplanner.team/stops/Lghberl2", "https://tec.openplanner.team/stops/Ljecocc2"], ["https://tec.openplanner.team/stops/LJU51--2", "https://tec.openplanner.team/stops/Llaflot2"], ["https://tec.openplanner.team/stops/H1gh145a", "https://tec.openplanner.team/stops/H1gh145b"], ["https://tec.openplanner.team/stops/X730aaa", "https://tec.openplanner.team/stops/X736aia"], ["https://tec.openplanner.team/stops/X733aaa", "https://tec.openplanner.team/stops/X733aba"], ["https://tec.openplanner.team/stops/X796aca", "https://tec.openplanner.team/stops/X796acc"], ["https://tec.openplanner.team/stops/LHNathe1", "https://tec.openplanner.team/stops/LHNecpr1"], ["https://tec.openplanner.team/stops/LTHcime1", "https://tec.openplanner.team/stops/LTHmaka1"], ["https://tec.openplanner.team/stops/Ctaphaz1", "https://tec.openplanner.team/stops/N543cbc"], ["https://tec.openplanner.team/stops/Ladfran3", "https://tec.openplanner.team/stops/Ldimont2"], ["https://tec.openplanner.team/stops/LNCrami1", "https://tec.openplanner.team/stops/LRRrimi1"], ["https://tec.openplanner.team/stops/Bblamsj2", "https://tec.openplanner.team/stops/Bblamsj3"], ["https://tec.openplanner.team/stops/LVLhalb1", "https://tec.openplanner.team/stops/LVLhalb2"], ["https://tec.openplanner.team/stops/LGHplai2", "https://tec.openplanner.team/stops/LTPwann2"], ["https://tec.openplanner.team/stops/Lmlec--2", "https://tec.openplanner.team/stops/Lmlmaqu1"], ["https://tec.openplanner.team/stops/N542agb", "https://tec.openplanner.team/stops/N542ahb"], ["https://tec.openplanner.team/stops/Btstbes2", "https://tec.openplanner.team/stops/Btstw751"], ["https://tec.openplanner.team/stops/LWAalou1", "https://tec.openplanner.team/stops/LWAchpg2"], ["https://tec.openplanner.team/stops/H4lh161b", "https://tec.openplanner.team/stops/H5wo127b"], ["https://tec.openplanner.team/stops/Bgntcha1", "https://tec.openplanner.team/stops/Bsgetri1"], ["https://tec.openplanner.team/stops/Bnivbne1", "https://tec.openplanner.team/stops/Bptrmar1"], ["https://tec.openplanner.team/stops/H2mo127c", "https://tec.openplanner.team/stops/H2mo129a"], ["https://tec.openplanner.team/stops/X937aja", "https://tec.openplanner.team/stops/X937ajb"], ["https://tec.openplanner.team/stops/LCRecmo2", "https://tec.openplanner.team/stops/LCRgdrt2"], ["https://tec.openplanner.team/stops/N501dtb", "https://tec.openplanner.team/stops/N501dwa"], ["https://tec.openplanner.team/stops/Cclchap1", "https://tec.openplanner.team/stops/Cclrgiv1"], ["https://tec.openplanner.team/stops/X750bhb", "https://tec.openplanner.team/stops/X750bja"], ["https://tec.openplanner.team/stops/N548agd", "https://tec.openplanner.team/stops/N548aha"], ["https://tec.openplanner.team/stops/H4ne135a", "https://tec.openplanner.team/stops/H4ne136a"], ["https://tec.openplanner.team/stops/LeUgulc2", "https://tec.openplanner.team/stops/LeUwetz2"], ["https://tec.openplanner.team/stops/LBglign2", "https://tec.openplanner.team/stops/LBgnach1"], ["https://tec.openplanner.team/stops/LHMsipp2", "https://tec.openplanner.team/stops/LMNheme2"], ["https://tec.openplanner.team/stops/N519amb", "https://tec.openplanner.team/stops/N519apb"], ["https://tec.openplanner.team/stops/LLNcruc1", "https://tec.openplanner.team/stops/LLNogne2"], ["https://tec.openplanner.team/stops/X652ada", "https://tec.openplanner.team/stops/X652aha"], ["https://tec.openplanner.team/stops/H2pe156a", "https://tec.openplanner.team/stops/H2re167b"], ["https://tec.openplanner.team/stops/LSPClem1", "https://tec.openplanner.team/stops/LSPsorb1"], ["https://tec.openplanner.team/stops/Cflcoro2", "https://tec.openplanner.team/stops/Cflmarq2"], ["https://tec.openplanner.team/stops/N531ahb", "https://tec.openplanner.team/stops/N531ara"], ["https://tec.openplanner.team/stops/N516aca", "https://tec.openplanner.team/stops/N516ala"], ["https://tec.openplanner.team/stops/Lhueg--1", "https://tec.openplanner.team/stops/Lhutill1"], ["https://tec.openplanner.team/stops/H4bo115a", "https://tec.openplanner.team/stops/H4gr109a"], ["https://tec.openplanner.team/stops/N211apa", "https://tec.openplanner.team/stops/N211arb"], ["https://tec.openplanner.team/stops/X637aea", "https://tec.openplanner.team/stops/X637aeb"], ["https://tec.openplanner.team/stops/Btanbth1", "https://tec.openplanner.team/stops/Btanbth2"], ["https://tec.openplanner.team/stops/Cfcbosq1", "https://tec.openplanner.team/stops/Cfcchen1"], ["https://tec.openplanner.team/stops/N236ama", "https://tec.openplanner.team/stops/N236apb"], ["https://tec.openplanner.team/stops/Ctm4che1", "https://tec.openplanner.team/stops/Ctmsncb2"], ["https://tec.openplanner.team/stops/Blonegl1", "https://tec.openplanner.team/stops/Bptblma2"], ["https://tec.openplanner.team/stops/LROmorf1", "https://tec.openplanner.team/stops/LROmorf2"], ["https://tec.openplanner.team/stops/Lvearle2", "https://tec.openplanner.team/stops/Lvefluc2"], ["https://tec.openplanner.team/stops/N244ama", "https://tec.openplanner.team/stops/N244aoa"], ["https://tec.openplanner.team/stops/N501cpa", "https://tec.openplanner.team/stops/N501kfb"], ["https://tec.openplanner.team/stops/X640aib", "https://tec.openplanner.team/stops/X640ata"], ["https://tec.openplanner.team/stops/Bcbqgar1", "https://tec.openplanner.team/stops/Bcbqgar2"], ["https://tec.openplanner.team/stops/H2fa105b", "https://tec.openplanner.team/stops/H2fa107a"], ["https://tec.openplanner.team/stops/Cfrempe2", "https://tec.openplanner.team/stops/Cfrfaub1"], ["https://tec.openplanner.team/stops/LAOpres2", "https://tec.openplanner.team/stops/LLRgdma2"], ["https://tec.openplanner.team/stops/LCLgend1", "https://tec.openplanner.team/stops/NL78afb"], ["https://tec.openplanner.team/stops/LLxconj1", "https://tec.openplanner.team/stops/LLxcrem1"], ["https://tec.openplanner.team/stops/N501aba", "https://tec.openplanner.team/stops/N502acb"], ["https://tec.openplanner.team/stops/Boplcar1", "https://tec.openplanner.team/stops/Boplcar4"], ["https://tec.openplanner.team/stops/X824aac", "https://tec.openplanner.team/stops/X824aba"], ["https://tec.openplanner.team/stops/LoEbach1", "https://tec.openplanner.team/stops/LoEbach2"], ["https://tec.openplanner.team/stops/Cmamarc1", "https://tec.openplanner.team/stops/Cmamarc2"], ["https://tec.openplanner.team/stops/N509awb", "https://tec.openplanner.team/stops/N511aub"], ["https://tec.openplanner.team/stops/H1gy112a", "https://tec.openplanner.team/stops/H1gy114a"], ["https://tec.openplanner.team/stops/N106aka", "https://tec.openplanner.team/stops/N106alb"], ["https://tec.openplanner.team/stops/LPutins2", "https://tec.openplanner.team/stops/X792abb"], ["https://tec.openplanner.team/stops/Bohngen1", "https://tec.openplanner.team/stops/Bohnman2"], ["https://tec.openplanner.team/stops/Lbralbe1", "https://tec.openplanner.team/stops/Llgbarb2"], ["https://tec.openplanner.team/stops/LFFpier2", "https://tec.openplanner.team/stops/LJEniho2"], ["https://tec.openplanner.team/stops/Cgomart1", "https://tec.openplanner.team/stops/Cgostro2"], ["https://tec.openplanner.team/stops/X727aaa", "https://tec.openplanner.team/stops/X767afa"], ["https://tec.openplanner.team/stops/Llgaba-1", "https://tec.openplanner.team/stops/Llgatel1"], ["https://tec.openplanner.team/stops/Lfhdone1", "https://tec.openplanner.team/stops/Lpocent1"], ["https://tec.openplanner.team/stops/Cramadi1", "https://tec.openplanner.team/stops/Cravign4"], ["https://tec.openplanner.team/stops/H5at116a", "https://tec.openplanner.team/stops/H5at120b"], ["https://tec.openplanner.team/stops/LVvbouv1", "https://tec.openplanner.team/stops/X796aba"], ["https://tec.openplanner.team/stops/LRmrode1", "https://tec.openplanner.team/stops/LRmrode2"], ["https://tec.openplanner.team/stops/X398aca", "https://tec.openplanner.team/stops/X398acb"], ["https://tec.openplanner.team/stops/H4hq132a", "https://tec.openplanner.team/stops/H4hs135a"], ["https://tec.openplanner.team/stops/Bgzdgth1", "https://tec.openplanner.team/stops/Bgzdgth2"], ["https://tec.openplanner.team/stops/Bbaucai1", "https://tec.openplanner.team/stops/Bbautri2"], ["https://tec.openplanner.team/stops/LHAbont2", "https://tec.openplanner.team/stops/LHAmonu1"], ["https://tec.openplanner.team/stops/Lceegth2", "https://tec.openplanner.team/stops/Lcesart1"], ["https://tec.openplanner.team/stops/LaMgeme*", "https://tec.openplanner.team/stops/LaMthei2"], ["https://tec.openplanner.team/stops/LtHfrie1", "https://tec.openplanner.team/stops/LtHkreu3"], ["https://tec.openplanner.team/stops/LVEdTEC1", "https://tec.openplanner.team/stops/LYegeor2"], ["https://tec.openplanner.team/stops/LEBeg--1", "https://tec.openplanner.team/stops/LEBmoul1"], ["https://tec.openplanner.team/stops/X601cba", "https://tec.openplanner.team/stops/X601ccc"], ["https://tec.openplanner.team/stops/X750aua", "https://tec.openplanner.team/stops/X750bha"], ["https://tec.openplanner.team/stops/N501hca", "https://tec.openplanner.team/stops/N501hka"], ["https://tec.openplanner.team/stops/X721ala", "https://tec.openplanner.team/stops/X721alb"], ["https://tec.openplanner.team/stops/H1ba112a", "https://tec.openplanner.team/stops/H1ch142b"], ["https://tec.openplanner.team/stops/LCOcarr1", "https://tec.openplanner.team/stops/LCOcrom1"], ["https://tec.openplanner.team/stops/Cgogb1", "https://tec.openplanner.team/stops/Cgon52"], ["https://tec.openplanner.team/stops/X941aaa", "https://tec.openplanner.team/stops/X941aga"], ["https://tec.openplanner.team/stops/Ladjaur1", "https://tec.openplanner.team/stops/Ladthom1"], ["https://tec.openplanner.team/stops/Loutras1", "https://tec.openplanner.team/stops/Lscbarg1"], ["https://tec.openplanner.team/stops/Crbrgar1", "https://tec.openplanner.team/stops/Cvlgrta2"], ["https://tec.openplanner.team/stops/X721aea", "https://tec.openplanner.team/stops/X721afb"], ["https://tec.openplanner.team/stops/X775ada", "https://tec.openplanner.team/stops/X775afa"], ["https://tec.openplanner.team/stops/X224afa", "https://tec.openplanner.team/stops/X398abb"], ["https://tec.openplanner.team/stops/N894aaa", "https://tec.openplanner.team/stops/N894aab"], ["https://tec.openplanner.team/stops/X896aib", "https://tec.openplanner.team/stops/X995aca"], ["https://tec.openplanner.team/stops/X940agb", "https://tec.openplanner.team/stops/X946abb"], ["https://tec.openplanner.team/stops/Blanath1", "https://tec.openplanner.team/stops/Blangar1"], ["https://tec.openplanner.team/stops/LXofans2", "https://tec.openplanner.team/stops/LXoharz3"], ["https://tec.openplanner.team/stops/LHuetat2", "https://tec.openplanner.team/stops/LHupont2"], ["https://tec.openplanner.team/stops/N501hxz", "https://tec.openplanner.team/stops/N501lza"], ["https://tec.openplanner.team/stops/X910acb", "https://tec.openplanner.team/stops/X910adb"], ["https://tec.openplanner.team/stops/LMNeg--1", "https://tec.openplanner.team/stops/LMNpt--2"], ["https://tec.openplanner.team/stops/LGLdeni2", "https://tec.openplanner.team/stops/LGLobor1"], ["https://tec.openplanner.team/stops/Cjxetri1", "https://tec.openplanner.team/stops/Cjxvalh1"], ["https://tec.openplanner.team/stops/H4ta122a", "https://tec.openplanner.team/stops/H4ta132a"], ["https://tec.openplanner.team/stops/H1ba109a", "https://tec.openplanner.team/stops/H1ba115a"], ["https://tec.openplanner.team/stops/LAWdefu3", "https://tec.openplanner.team/stops/LAWdefu4"], ["https://tec.openplanner.team/stops/X614bca", "https://tec.openplanner.team/stops/X614bda"], ["https://tec.openplanner.team/stops/X619aab", "https://tec.openplanner.team/stops/X619acb"], ["https://tec.openplanner.team/stops/H4hn113b", "https://tec.openplanner.team/stops/H4hn115b"], ["https://tec.openplanner.team/stops/Lagcile1", "https://tec.openplanner.team/stops/Llgcond2"], ["https://tec.openplanner.team/stops/Bbcodam3", "https://tec.openplanner.team/stops/H2ec110b"], ["https://tec.openplanner.team/stops/LSGcarr1", "https://tec.openplanner.team/stops/LSGcarr2"], ["https://tec.openplanner.team/stops/Bsgeegl2", "https://tec.openplanner.team/stops/Bsgeegl4"], ["https://tec.openplanner.team/stops/N501iez", "https://tec.openplanner.team/stops/N501ihy"], ["https://tec.openplanner.team/stops/Lmopeup1", "https://tec.openplanner.team/stops/Lmopota1"], ["https://tec.openplanner.team/stops/LCRchpl1", "https://tec.openplanner.team/stops/LCRchpl2"], ["https://tec.openplanner.team/stops/X804aya", "https://tec.openplanner.team/stops/X804baa"], ["https://tec.openplanner.team/stops/NH21aga", "https://tec.openplanner.team/stops/NH21ahb"], ["https://tec.openplanner.team/stops/H1ev112b", "https://tec.openplanner.team/stops/H1ev114a"], ["https://tec.openplanner.team/stops/Ccoacar1", "https://tec.openplanner.team/stops/Ccogode2"], ["https://tec.openplanner.team/stops/LsHfrie1", "https://tec.openplanner.team/stops/LsHkreu3"], ["https://tec.openplanner.team/stops/LmHabzw2", "https://tec.openplanner.team/stops/LmHvenn1"], ["https://tec.openplanner.team/stops/X624aha", "https://tec.openplanner.team/stops/X624alb"], ["https://tec.openplanner.team/stops/LVHtill2", "https://tec.openplanner.team/stops/LVsbrux1"], ["https://tec.openplanner.team/stops/LBSnouw1", "https://tec.openplanner.team/stops/LRGgend3"], ["https://tec.openplanner.team/stops/Canmonu4", "https://tec.openplanner.team/stops/Canmonu5"], ["https://tec.openplanner.team/stops/Cbmgare1", "https://tec.openplanner.team/stops/H1tt109b"], ["https://tec.openplanner.team/stops/X908asa", "https://tec.openplanner.team/stops/X908asb"], ["https://tec.openplanner.team/stops/LPAvill1", "https://tec.openplanner.team/stops/LPAvill2"], ["https://tec.openplanner.team/stops/LrDsage2", "https://tec.openplanner.team/stops/LrDschl1"], ["https://tec.openplanner.team/stops/X948aib", "https://tec.openplanner.team/stops/X948aic"], ["https://tec.openplanner.team/stops/Lbbbuse2", "https://tec.openplanner.team/stops/Lbbremy1"], ["https://tec.openplanner.team/stops/Ltiplat2", "https://tec.openplanner.team/stops/Ltitill*"], ["https://tec.openplanner.team/stops/LrAiter2", "https://tec.openplanner.team/stops/LrAkape2"], ["https://tec.openplanner.team/stops/LBzvill1", "https://tec.openplanner.team/stops/LCewaut1"], ["https://tec.openplanner.team/stops/LLbmalm2", "https://tec.openplanner.team/stops/LrEkais2"], ["https://tec.openplanner.team/stops/X649aab", "https://tec.openplanner.team/stops/X670aqa"], ["https://tec.openplanner.team/stops/N353aab", "https://tec.openplanner.team/stops/N353abb"], ["https://tec.openplanner.team/stops/LVIhall1", "https://tec.openplanner.team/stops/LVItroi*"], ["https://tec.openplanner.team/stops/LBkgrae2", "https://tec.openplanner.team/stops/LMNpt--2"], ["https://tec.openplanner.team/stops/LkEl3251", "https://tec.openplanner.team/stops/LlNbusc1"], ["https://tec.openplanner.team/stops/N501hjb", "https://tec.openplanner.team/stops/N501lcz"], ["https://tec.openplanner.team/stops/N163aaa", "https://tec.openplanner.team/stops/N163aab"], ["https://tec.openplanner.team/stops/Cbmgrav2", "https://tec.openplanner.team/stops/H1tt109b"], ["https://tec.openplanner.team/stops/Bgemga08", "https://tec.openplanner.team/stops/N522bve"], ["https://tec.openplanner.team/stops/X904ada", "https://tec.openplanner.team/stops/X992aka"], ["https://tec.openplanner.team/stops/N501etb", "https://tec.openplanner.team/stops/N501etc"], ["https://tec.openplanner.team/stops/Bpernov2", "https://tec.openplanner.team/stops/Bperwil1"], ["https://tec.openplanner.team/stops/H1wa132a", "https://tec.openplanner.team/stops/H1wa132b"], ["https://tec.openplanner.team/stops/N501msb", "https://tec.openplanner.team/stops/N501mtb"], ["https://tec.openplanner.team/stops/X767ada", "https://tec.openplanner.team/stops/X767aea"], ["https://tec.openplanner.team/stops/Lvehodi1", "https://tec.openplanner.team/stops/Lvehodi4"], ["https://tec.openplanner.team/stops/Lsmecol2", "https://tec.openplanner.team/stops/Lsmeg--2"], ["https://tec.openplanner.team/stops/Btubaig1", "https://tec.openplanner.team/stops/Btubsal1"], ["https://tec.openplanner.team/stops/X833aab", "https://tec.openplanner.team/stops/X834acb"], ["https://tec.openplanner.team/stops/Btslcel2", "https://tec.openplanner.team/stops/Btstbbu1"], ["https://tec.openplanner.team/stops/Lch179-1", "https://tec.openplanner.team/stops/Lch179-2"], ["https://tec.openplanner.team/stops/Bsaumlp1", "https://tec.openplanner.team/stops/Bwlhswc2"], ["https://tec.openplanner.team/stops/X999afa", "https://tec.openplanner.team/stops/X999afc"], ["https://tec.openplanner.team/stops/N579abb", "https://tec.openplanner.team/stops/N579afa"], ["https://tec.openplanner.team/stops/N534bsa", "https://tec.openplanner.team/stops/N534bva"], ["https://tec.openplanner.team/stops/Lhrhosp2", "https://tec.openplanner.team/stops/Lhrmilm2"], ["https://tec.openplanner.team/stops/LFrec--1", "https://tec.openplanner.team/stops/LNEpass2"], ["https://tec.openplanner.team/stops/X793aga", "https://tec.openplanner.team/stops/X793agb"], ["https://tec.openplanner.team/stops/N509awa", "https://tec.openplanner.team/stops/N509bfb"], ["https://tec.openplanner.team/stops/Cchba2", "https://tec.openplanner.team/stops/Cchvhau2"], ["https://tec.openplanner.team/stops/N501grg", "https://tec.openplanner.team/stops/N501heb"], ["https://tec.openplanner.team/stops/Lmocail1", "https://tec.openplanner.team/stops/Lsnecco1"], ["https://tec.openplanner.team/stops/X725afc", "https://tec.openplanner.team/stops/X725aff"], ["https://tec.openplanner.team/stops/X715aga", "https://tec.openplanner.team/stops/X715ahb"], ["https://tec.openplanner.team/stops/X547ata", "https://tec.openplanner.team/stops/X547atb"], ["https://tec.openplanner.team/stops/Cthenmi1", "https://tec.openplanner.team/stops/Cthenmi2"], ["https://tec.openplanner.team/stops/Lsefori1", "https://tec.openplanner.team/stops/Lsemaha1"], ["https://tec.openplanner.team/stops/H4oe150a", "https://tec.openplanner.team/stops/H5el114b"], ["https://tec.openplanner.team/stops/X840aaa", "https://tec.openplanner.team/stops/X840aab"], ["https://tec.openplanner.team/stops/N508aca", "https://tec.openplanner.team/stops/N508ada"], ["https://tec.openplanner.team/stops/H4hx116b", "https://tec.openplanner.team/stops/H4lu125b"], ["https://tec.openplanner.team/stops/H4rc234b", "https://tec.openplanner.team/stops/H4rc234c"], ["https://tec.openplanner.team/stops/Blimbet3", "https://tec.openplanner.team/stops/Blmlqlo1"], ["https://tec.openplanner.team/stops/X901aaa", "https://tec.openplanner.team/stops/X901bia"], ["https://tec.openplanner.team/stops/H2hg154c", "https://tec.openplanner.team/stops/H2mi122a"], ["https://tec.openplanner.team/stops/N309aca", "https://tec.openplanner.team/stops/N343aaa"], ["https://tec.openplanner.team/stops/Lsnhoco1", "https://tec.openplanner.team/stops/Lsntvbi2"], ["https://tec.openplanner.team/stops/Ccufos72", "https://tec.openplanner.team/stops/Ccupetp2"], ["https://tec.openplanner.team/stops/H5el104a", "https://tec.openplanner.team/stops/H5el104b"], ["https://tec.openplanner.team/stops/Louegla2", "https://tec.openplanner.team/stops/Louencl1"], ["https://tec.openplanner.team/stops/Cbcegli1", "https://tec.openplanner.team/stops/Cbcegli6"], ["https://tec.openplanner.team/stops/H1do117b", "https://tec.openplanner.team/stops/H1do131c"], ["https://tec.openplanner.team/stops/X879aba", "https://tec.openplanner.team/stops/X879ada"], ["https://tec.openplanner.team/stops/Bnivpri1", "https://tec.openplanner.team/stops/Bnivpri2"], ["https://tec.openplanner.team/stops/X601bnb", "https://tec.openplanner.team/stops/X601boa"], ["https://tec.openplanner.team/stops/LSlbail2", "https://tec.openplanner.team/stops/X919ahb"], ["https://tec.openplanner.team/stops/H1je211b", "https://tec.openplanner.team/stops/H1je213b"], ["https://tec.openplanner.team/stops/Baegm502", "https://tec.openplanner.team/stops/Bramrdf2"], ["https://tec.openplanner.team/stops/N232aqa", "https://tec.openplanner.team/stops/N232aqb"], ["https://tec.openplanner.team/stops/Bwatcom1", "https://tec.openplanner.team/stops/Bwatprp2"], ["https://tec.openplanner.team/stops/Boplcsj2", "https://tec.openplanner.team/stops/Boplcsj3"], ["https://tec.openplanner.team/stops/LFmpoin1", "https://tec.openplanner.team/stops/LFmpoin2"], ["https://tec.openplanner.team/stops/N170aaa", "https://tec.openplanner.team/stops/N170aab"], ["https://tec.openplanner.team/stops/LGLchap1", "https://tec.openplanner.team/stops/LGLchap2"], ["https://tec.openplanner.team/stops/Bwspm371", "https://tec.openplanner.team/stops/Bwspspa1"], ["https://tec.openplanner.team/stops/Lcheg--1", "https://tec.openplanner.team/stops/Lcheg--2"], ["https://tec.openplanner.team/stops/LFEplac1", "https://tec.openplanner.team/stops/X597aqa"], ["https://tec.openplanner.team/stops/Bhticbr1", "https://tec.openplanner.team/stops/Bitrfsc1"], ["https://tec.openplanner.team/stops/X886aea", "https://tec.openplanner.team/stops/X897afa"], ["https://tec.openplanner.team/stops/Cbbcrbo1", "https://tec.openplanner.team/stops/Cssgare1"], ["https://tec.openplanner.team/stops/H4mo133b", "https://tec.openplanner.team/stops/H4mo159a"], ["https://tec.openplanner.team/stops/Blimrof1", "https://tec.openplanner.team/stops/Blimrof2"], ["https://tec.openplanner.team/stops/N211aya", "https://tec.openplanner.team/stops/N211bcb"], ["https://tec.openplanner.team/stops/X872aca", "https://tec.openplanner.team/stops/X872acb"], ["https://tec.openplanner.team/stops/N516ahb", "https://tec.openplanner.team/stops/N516aia"], ["https://tec.openplanner.team/stops/LnNkirc1", "https://tec.openplanner.team/stops/LnNkirc2"], ["https://tec.openplanner.team/stops/Llgbobu6", "https://tec.openplanner.team/stops/Llgdelc*"], ["https://tec.openplanner.team/stops/H1el134a", "https://tec.openplanner.team/stops/H1el138b"], ["https://tec.openplanner.team/stops/Ladwooz2", "https://tec.openplanner.team/stops/Ladxhen1"], ["https://tec.openplanner.team/stops/Cjupier2", "https://tec.openplanner.team/stops/Cjuunio1"], ["https://tec.openplanner.team/stops/LDOordi1", "https://tec.openplanner.team/stops/LGOhevr2"], ["https://tec.openplanner.team/stops/X811agb", "https://tec.openplanner.team/stops/X811aja"], ["https://tec.openplanner.team/stops/H1mk108c", "https://tec.openplanner.team/stops/H1mk108d"], ["https://tec.openplanner.team/stops/Ladarev2", "https://tec.openplanner.team/stops/Ladxhen2"], ["https://tec.openplanner.team/stops/LJU51--1", "https://tec.openplanner.team/stops/LJUmate1"], ["https://tec.openplanner.team/stops/H1wz169b", "https://tec.openplanner.team/stops/H1wz171b"], ["https://tec.openplanner.team/stops/H1gh145d", "https://tec.openplanner.team/stops/H1gh155b"], ["https://tec.openplanner.team/stops/N228abb", "https://tec.openplanner.team/stops/N228aea"], ["https://tec.openplanner.team/stops/X991aha", "https://tec.openplanner.team/stops/X991ahb"], ["https://tec.openplanner.team/stops/X670adb", "https://tec.openplanner.team/stops/X670aia"], ["https://tec.openplanner.team/stops/H1pa105a", "https://tec.openplanner.team/stops/H1pa167b"], ["https://tec.openplanner.team/stops/X986ada", "https://tec.openplanner.team/stops/X986agb"], ["https://tec.openplanner.team/stops/X994aja", "https://tec.openplanner.team/stops/X994akb"], ["https://tec.openplanner.team/stops/LJAcent1", "https://tec.openplanner.team/stops/LJAhanq4"], ["https://tec.openplanner.team/stops/Cfoermi1", "https://tec.openplanner.team/stops/Clrpast2"], ["https://tec.openplanner.team/stops/X725avb", "https://tec.openplanner.team/stops/X725bfa"], ["https://tec.openplanner.team/stops/X639ara", "https://tec.openplanner.team/stops/X675aba"], ["https://tec.openplanner.team/stops/Lghalli1", "https://tec.openplanner.team/stops/Lghflot4"], ["https://tec.openplanner.team/stops/N212aba", "https://tec.openplanner.team/stops/N212aia"], ["https://tec.openplanner.team/stops/H4ta129a", "https://tec.openplanner.team/stops/H4ta134a"], ["https://tec.openplanner.team/stops/X660aia", "https://tec.openplanner.team/stops/X672ahb"], ["https://tec.openplanner.team/stops/N313ada", "https://tec.openplanner.team/stops/N313aeb"], ["https://tec.openplanner.team/stops/N574aca", "https://tec.openplanner.team/stops/N574agb"], ["https://tec.openplanner.team/stops/H2hg145b", "https://tec.openplanner.team/stops/H2hg154b"], ["https://tec.openplanner.team/stops/N134ajb", "https://tec.openplanner.team/stops/N135bfb"], ["https://tec.openplanner.team/stops/Bhevgro1", "https://tec.openplanner.team/stops/Bhevgro2"], ["https://tec.openplanner.team/stops/LMeperk1", "https://tec.openplanner.team/stops/LMeperk2"], ["https://tec.openplanner.team/stops/NC24aka", "https://tec.openplanner.team/stops/NC24akb"], ["https://tec.openplanner.team/stops/Chhegli1", "https://tec.openplanner.team/stops/Chhegli2"], ["https://tec.openplanner.team/stops/X775aga", "https://tec.openplanner.team/stops/X775agb"], ["https://tec.openplanner.team/stops/LSOferr4", "https://tec.openplanner.team/stops/LSOferr6"], ["https://tec.openplanner.team/stops/Lsecast2", "https://tec.openplanner.team/stops/Lseptsa1"], ["https://tec.openplanner.team/stops/Bmrleco2", "https://tec.openplanner.team/stops/Bmrleco3"], ["https://tec.openplanner.team/stops/N501jda", "https://tec.openplanner.team/stops/N501jeb"], ["https://tec.openplanner.team/stops/Crcgmah1", "https://tec.openplanner.team/stops/Crcrgar2"], ["https://tec.openplanner.team/stops/H1fr112a", "https://tec.openplanner.team/stops/H1fr133b"], ["https://tec.openplanner.team/stops/LVEhali1", "https://tec.openplanner.team/stops/LVErtt-1"], ["https://tec.openplanner.team/stops/N214ahb", "https://tec.openplanner.team/stops/N225aaa"], ["https://tec.openplanner.team/stops/N365aaa", "https://tec.openplanner.team/stops/X362ada"], ["https://tec.openplanner.team/stops/H4mo132b", "https://tec.openplanner.team/stops/H4mo155b"], ["https://tec.openplanner.team/stops/X757adb", "https://tec.openplanner.team/stops/X757afb"], ["https://tec.openplanner.team/stops/X901aea", "https://tec.openplanner.team/stops/X901atb"], ["https://tec.openplanner.team/stops/Lhr2ave1", "https://tec.openplanner.team/stops/LOUchen2"], ["https://tec.openplanner.team/stops/Cmeptmi1", "https://tec.openplanner.team/stops/Cmestas1"], ["https://tec.openplanner.team/stops/H4ty293b", "https://tec.openplanner.team/stops/H4ty324c"], ["https://tec.openplanner.team/stops/Crbecol1", "https://tec.openplanner.team/stops/Crbrgar2"], ["https://tec.openplanner.team/stops/Lansarm2", "https://tec.openplanner.team/stops/Lmoboeu4"], ["https://tec.openplanner.team/stops/Lhrbrou2", "https://tec.openplanner.team/stops/Lhrlaix2"], ["https://tec.openplanner.team/stops/N111aaa", "https://tec.openplanner.team/stops/N127bfa"], ["https://tec.openplanner.team/stops/H1lb136b", "https://tec.openplanner.team/stops/H1lb152b"], ["https://tec.openplanner.team/stops/Benimar1", "https://tec.openplanner.team/stops/NR21ajb"], ["https://tec.openplanner.team/stops/X923ala", "https://tec.openplanner.team/stops/X923anb"], ["https://tec.openplanner.team/stops/LBWeg--1", "https://tec.openplanner.team/stops/LBWeg--3"], ["https://tec.openplanner.team/stops/X986ajb", "https://tec.openplanner.team/stops/X986alc"], ["https://tec.openplanner.team/stops/N510afa", "https://tec.openplanner.team/stops/N513agc"], ["https://tec.openplanner.team/stops/X911aca", "https://tec.openplanner.team/stops/X911ada"], ["https://tec.openplanner.team/stops/X902aba", "https://tec.openplanner.team/stops/X902aca"], ["https://tec.openplanner.team/stops/H5rx122b", "https://tec.openplanner.team/stops/H5rx130b"], ["https://tec.openplanner.team/stops/Lseblan*", "https://tec.openplanner.team/stops/Lsechev2"], ["https://tec.openplanner.team/stops/LBpberl1", "https://tec.openplanner.team/stops/LBpvue-1"], ["https://tec.openplanner.team/stops/NC14aoa", "https://tec.openplanner.team/stops/NC14aua"], ["https://tec.openplanner.team/stops/X901aeb", "https://tec.openplanner.team/stops/X902aza"], ["https://tec.openplanner.team/stops/N501fxa", "https://tec.openplanner.team/stops/N501lca"], ["https://tec.openplanner.team/stops/H1mr122b", "https://tec.openplanner.team/stops/H1wi150b"], ["https://tec.openplanner.team/stops/Broncli1", "https://tec.openplanner.team/stops/Bronfou2"], ["https://tec.openplanner.team/stops/N516ama", "https://tec.openplanner.team/stops/N516amc"], ["https://tec.openplanner.team/stops/Cgzlera2", "https://tec.openplanner.team/stops/Cgzm1482"], ["https://tec.openplanner.team/stops/LBY4che1", "https://tec.openplanner.team/stops/LBYegli2"], ["https://tec.openplanner.team/stops/Bbsicen1", "https://tec.openplanner.team/stops/Bbsimpl1"], ["https://tec.openplanner.team/stops/LBzec--2", "https://tec.openplanner.team/stops/LCelabi2"], ["https://tec.openplanner.team/stops/H3lr116a", "https://tec.openplanner.team/stops/H3lr116b"], ["https://tec.openplanner.team/stops/LeUauto2", "https://tec.openplanner.team/stops/LeUdepo1"], ["https://tec.openplanner.team/stops/Cgzabur2", "https://tec.openplanner.team/stops/Cgzpjeu2"], ["https://tec.openplanner.team/stops/H4ft132a", "https://tec.openplanner.team/stops/H4wu375a"], ["https://tec.openplanner.team/stops/X979aob", "https://tec.openplanner.team/stops/X982bvb"], ["https://tec.openplanner.team/stops/Lvopaqu1", "https://tec.openplanner.team/stops/Lvopaqu2"], ["https://tec.openplanner.team/stops/N158aba", "https://tec.openplanner.team/stops/N158abb"], ["https://tec.openplanner.team/stops/Bsgetri1", "https://tec.openplanner.team/stops/Bsgetri2"], ["https://tec.openplanner.team/stops/LeIpiro3", "https://tec.openplanner.team/stops/LeIpiro4"], ["https://tec.openplanner.team/stops/N577aca", "https://tec.openplanner.team/stops/N577aeb"], ["https://tec.openplanner.team/stops/Bgemibb1", "https://tec.openplanner.team/stops/Bgemman1"], ["https://tec.openplanner.team/stops/Lalmakr2", "https://tec.openplanner.team/stops/Lanplat2"], ["https://tec.openplanner.team/stops/Cmlpbay2", "https://tec.openplanner.team/stops/Cmtrneu2"], ["https://tec.openplanner.team/stops/N580agb", "https://tec.openplanner.team/stops/N580ahb"], ["https://tec.openplanner.team/stops/N894aea", "https://tec.openplanner.team/stops/X887aaa"], ["https://tec.openplanner.team/stops/X723aba", "https://tec.openplanner.team/stops/X723acb"], ["https://tec.openplanner.team/stops/LAWchau2", "https://tec.openplanner.team/stops/LBIpost1"], ["https://tec.openplanner.team/stops/X638aqa", "https://tec.openplanner.team/stops/X652aeb"], ["https://tec.openplanner.team/stops/H4tm140a", "https://tec.openplanner.team/stops/H4tm140b"], ["https://tec.openplanner.team/stops/Lrcrars1", "https://tec.openplanner.team/stops/Lrcrars2"], ["https://tec.openplanner.team/stops/H4ce107a", "https://tec.openplanner.team/stops/H4ce107b"], ["https://tec.openplanner.team/stops/Cmmegli2", "https://tec.openplanner.team/stops/Cmmpast2"], ["https://tec.openplanner.team/stops/Ccpbrun1", "https://tec.openplanner.team/stops/H2ch123c"], ["https://tec.openplanner.team/stops/X793afc", "https://tec.openplanner.team/stops/X793aqa"], ["https://tec.openplanner.team/stops/LLrc_ip4", "https://tec.openplanner.team/stops/LLrelec2"], ["https://tec.openplanner.team/stops/N542acb", "https://tec.openplanner.team/stops/N542acc"], ["https://tec.openplanner.team/stops/H4rx142b", "https://tec.openplanner.team/stops/H4rx175a"], ["https://tec.openplanner.team/stops/Crefont2", "https://tec.openplanner.team/stops/Creshau2"], ["https://tec.openplanner.team/stops/X746ala", "https://tec.openplanner.team/stops/X746alb"], ["https://tec.openplanner.team/stops/Bmsgmon2", "https://tec.openplanner.team/stops/Bmsgpap2"], ["https://tec.openplanner.team/stops/X756aeb", "https://tec.openplanner.team/stops/X756akb"], ["https://tec.openplanner.team/stops/Cctjoue5", "https://tec.openplanner.team/stops/Cpllimi1"], ["https://tec.openplanner.team/stops/X608adb", "https://tec.openplanner.team/stops/X608aeb"], ["https://tec.openplanner.team/stops/X801cca", "https://tec.openplanner.team/stops/X801cfa"], ["https://tec.openplanner.team/stops/H5qu143b", "https://tec.openplanner.team/stops/H5qu152a"], ["https://tec.openplanner.team/stops/LAyheid1", "https://tec.openplanner.team/stops/LPRbayb1"], ["https://tec.openplanner.team/stops/N509axb", "https://tec.openplanner.team/stops/N511aua"], ["https://tec.openplanner.team/stops/H1qp142a", "https://tec.openplanner.team/stops/H1qp150a"], ["https://tec.openplanner.team/stops/H2ca101b", "https://tec.openplanner.team/stops/H2ca102b"], ["https://tec.openplanner.team/stops/H4bn173a", "https://tec.openplanner.team/stops/H4bn174a"], ["https://tec.openplanner.team/stops/N543ahb", "https://tec.openplanner.team/stops/N543aib"], ["https://tec.openplanner.team/stops/Cchba11", "https://tec.openplanner.team/stops/Cchba2"], ["https://tec.openplanner.team/stops/Lsmcime*", "https://tec.openplanner.team/stops/Lsmsech4"], ["https://tec.openplanner.team/stops/N232bcb", "https://tec.openplanner.team/stops/N232bua"], ["https://tec.openplanner.team/stops/N549aca", "https://tec.openplanner.team/stops/N578aaa"], ["https://tec.openplanner.team/stops/N548agb", "https://tec.openplanner.team/stops/N548agd"], ["https://tec.openplanner.team/stops/LCEec--2", "https://tec.openplanner.team/stops/LCEinst1"], ["https://tec.openplanner.team/stops/LCF1spa2", "https://tec.openplanner.team/stops/LOurena2"], ["https://tec.openplanner.team/stops/Cflmarc2", "https://tec.openplanner.team/stops/Cwgrabi2"], ["https://tec.openplanner.team/stops/LHXn47-4", "https://tec.openplanner.team/stops/LSMeg--1"], ["https://tec.openplanner.team/stops/X774aac", "https://tec.openplanner.team/stops/X774aca"], ["https://tec.openplanner.team/stops/X660acb", "https://tec.openplanner.team/stops/X660ajb"], ["https://tec.openplanner.team/stops/X370aca", "https://tec.openplanner.team/stops/X850akb"], ["https://tec.openplanner.team/stops/X750bda", "https://tec.openplanner.team/stops/X750blb"], ["https://tec.openplanner.team/stops/Ctucamb2", "https://tec.openplanner.team/stops/Ctuhouz2"], ["https://tec.openplanner.team/stops/H1do121a", "https://tec.openplanner.team/stops/H1do121b"], ["https://tec.openplanner.team/stops/N501cvb", "https://tec.openplanner.team/stops/N501cxa"], ["https://tec.openplanner.team/stops/H4be101a", "https://tec.openplanner.team/stops/H5pe151a"], ["https://tec.openplanner.team/stops/H4al100b", "https://tec.openplanner.team/stops/H4ty360a"], ["https://tec.openplanner.team/stops/H3bi119a", "https://tec.openplanner.team/stops/H3bi119b"], ["https://tec.openplanner.team/stops/Bbiepon1", "https://tec.openplanner.team/stops/Bboneta2"], ["https://tec.openplanner.team/stops/X657ama", "https://tec.openplanner.team/stops/X657amb"], ["https://tec.openplanner.team/stops/Lsestap3", "https://tec.openplanner.team/stops/Lsestap4"], ["https://tec.openplanner.team/stops/Lthfren2", "https://tec.openplanner.team/stops/LWahetr1"], ["https://tec.openplanner.team/stops/N501aua", "https://tec.openplanner.team/stops/N501esa"], ["https://tec.openplanner.team/stops/X952acb", "https://tec.openplanner.team/stops/X952aha"], ["https://tec.openplanner.team/stops/H2bh113a", "https://tec.openplanner.team/stops/H2bh113b"], ["https://tec.openplanner.team/stops/Bwatb4s2", "https://tec.openplanner.team/stops/Bwatcro2"], ["https://tec.openplanner.team/stops/X892aca", "https://tec.openplanner.team/stops/X892ada"], ["https://tec.openplanner.team/stops/X943aca", "https://tec.openplanner.team/stops/X943acb"], ["https://tec.openplanner.team/stops/N522abc", "https://tec.openplanner.team/stops/N522abd"], ["https://tec.openplanner.team/stops/Cfcmass1", "https://tec.openplanner.team/stops/Cfcpcov1"], ["https://tec.openplanner.team/stops/H1bi104a", "https://tec.openplanner.team/stops/H1sa113b"], ["https://tec.openplanner.team/stops/N385aca", "https://tec.openplanner.team/stops/N385aeb"], ["https://tec.openplanner.team/stops/Ctmazeb2", "https://tec.openplanner.team/stops/Ctmmana2"], ["https://tec.openplanner.team/stops/X759aeb", "https://tec.openplanner.team/stops/X837aed"], ["https://tec.openplanner.team/stops/Bpermon3", "https://tec.openplanner.team/stops/Bperrcr2"], ["https://tec.openplanner.team/stops/N424aab", "https://tec.openplanner.team/stops/NH01aqa"], ["https://tec.openplanner.team/stops/Bbiecim1", "https://tec.openplanner.team/stops/Bbiemor1"], ["https://tec.openplanner.team/stops/Lpeptwa2", "https://tec.openplanner.team/stops/Lpevesd1"], ["https://tec.openplanner.team/stops/X633aib", "https://tec.openplanner.team/stops/X633aja"], ["https://tec.openplanner.team/stops/LMomonc2", "https://tec.openplanner.team/stops/LSDgris2"], ["https://tec.openplanner.team/stops/LLmetat1", "https://tec.openplanner.team/stops/LLmvand2"], ["https://tec.openplanner.team/stops/H2tr247a", "https://tec.openplanner.team/stops/H2tr252b"], ["https://tec.openplanner.team/stops/Bbgnton1", "https://tec.openplanner.team/stops/N584ama"], ["https://tec.openplanner.team/stops/LBapeup1", "https://tec.openplanner.team/stops/LBapeup2"], ["https://tec.openplanner.team/stops/LVlleme1", "https://tec.openplanner.team/stops/LVlleme2"], ["https://tec.openplanner.team/stops/Bjanfer2", "https://tec.openplanner.team/stops/NL75acb"], ["https://tec.openplanner.team/stops/X811aca", "https://tec.openplanner.team/stops/X811adb"], ["https://tec.openplanner.team/stops/LGeduc-1", "https://tec.openplanner.team/stops/LGeduc-2"], ["https://tec.openplanner.team/stops/Llmcoop2", "https://tec.openplanner.team/stops/Llmlaro1"], ["https://tec.openplanner.team/stops/LTEkl161", "https://tec.openplanner.team/stops/LTEkl162"], ["https://tec.openplanner.team/stops/X904ada", "https://tec.openplanner.team/stops/X904anb"], ["https://tec.openplanner.team/stops/Bbcoroy1", "https://tec.openplanner.team/stops/Bbcoroy2"], ["https://tec.openplanner.team/stops/Bcerpco2", "https://tec.openplanner.team/stops/Bcsgres1"], ["https://tec.openplanner.team/stops/Ccutrav4", "https://tec.openplanner.team/stops/Ccutrav5"], ["https://tec.openplanner.team/stops/Bbea3he2", "https://tec.openplanner.team/stops/Bmlnbpr2"], ["https://tec.openplanner.team/stops/Loucent1", "https://tec.openplanner.team/stops/Lousite2"], ["https://tec.openplanner.team/stops/Lmndari1", "https://tec.openplanner.team/stops/Lmneg--1"], ["https://tec.openplanner.team/stops/LMAwavr1", "https://tec.openplanner.team/stops/LMisour1"], ["https://tec.openplanner.team/stops/Bgemibb2", "https://tec.openplanner.team/stops/Bgemman2"], ["https://tec.openplanner.team/stops/LsVprum1", "https://tec.openplanner.team/stops/LsVprum3"], ["https://tec.openplanner.team/stops/H1so139c", "https://tec.openplanner.team/stops/H1so139d"], ["https://tec.openplanner.team/stops/X641aca", "https://tec.openplanner.team/stops/X641agb"], ["https://tec.openplanner.team/stops/Lmobrac2", "https://tec.openplanner.team/stops/Ltibure4"], ["https://tec.openplanner.team/stops/H1go118a", "https://tec.openplanner.team/stops/H1go174a"], ["https://tec.openplanner.team/stops/X801bua", "https://tec.openplanner.team/stops/X801bwa"], ["https://tec.openplanner.team/stops/N153aaa", "https://tec.openplanner.team/stops/N153aab"], ["https://tec.openplanner.team/stops/H1je220b", "https://tec.openplanner.team/stops/H1je220c"], ["https://tec.openplanner.team/stops/H4ty287a", "https://tec.openplanner.team/stops/H4ty287b"], ["https://tec.openplanner.team/stops/LBspiet1", "https://tec.openplanner.team/stops/LBssucr1"], ["https://tec.openplanner.team/stops/Btsllec1", "https://tec.openplanner.team/stops/Bwlhcsr1"], ["https://tec.openplanner.team/stops/Borbode1", "https://tec.openplanner.team/stops/Borbode2"], ["https://tec.openplanner.team/stops/Bblagar4", "https://tec.openplanner.team/stops/Bblagard"], ["https://tec.openplanner.team/stops/Brixpro2", "https://tec.openplanner.team/stops/Brixpro3"], ["https://tec.openplanner.team/stops/Canboha2", "https://tec.openplanner.team/stops/H2an110a"], ["https://tec.openplanner.team/stops/H1wz173a", "https://tec.openplanner.team/stops/H2pe161b"], ["https://tec.openplanner.team/stops/N218aea", "https://tec.openplanner.team/stops/N287aba"], ["https://tec.openplanner.team/stops/X790aba", "https://tec.openplanner.team/stops/X790ana"], ["https://tec.openplanner.team/stops/N542aqa", "https://tec.openplanner.team/stops/N542aqb"], ["https://tec.openplanner.team/stops/N521aia", "https://tec.openplanner.team/stops/N521aic"], ["https://tec.openplanner.team/stops/Cbbjfeu1", "https://tec.openplanner.team/stops/Cbbjfeu2"], ["https://tec.openplanner.team/stops/X610ada", "https://tec.openplanner.team/stops/X610adb"], ["https://tec.openplanner.team/stops/X659axa", "https://tec.openplanner.team/stops/X659baa"], ["https://tec.openplanner.team/stops/X626aaa", "https://tec.openplanner.team/stops/X626abb"], ["https://tec.openplanner.team/stops/LVIacac1", "https://tec.openplanner.team/stops/LVIdepo2"], ["https://tec.openplanner.team/stops/LTIgare3", "https://tec.openplanner.team/stops/LTIgare4"], ["https://tec.openplanner.team/stops/X601bma", "https://tec.openplanner.team/stops/X612aba"], ["https://tec.openplanner.team/stops/H4mb205a", "https://tec.openplanner.team/stops/H4og211a"], ["https://tec.openplanner.team/stops/X756aaa", "https://tec.openplanner.team/stops/X756aab"], ["https://tec.openplanner.team/stops/LJOchar1", "https://tec.openplanner.team/stops/LJOchar2"], ["https://tec.openplanner.team/stops/Cfrfaub1", "https://tec.openplanner.team/stops/Cfrfaub2"], ["https://tec.openplanner.team/stops/LmDgeme2", "https://tec.openplanner.team/stops/LmDkape2"], ["https://tec.openplanner.team/stops/Ccicent1", "https://tec.openplanner.team/stops/Ccivill2"], ["https://tec.openplanner.team/stops/Cnalava2", "https://tec.openplanner.team/stops/Cnating1"], ["https://tec.openplanner.team/stops/H2ll183a", "https://tec.openplanner.team/stops/H2ll194a"], ["https://tec.openplanner.team/stops/H1me115b", "https://tec.openplanner.team/stops/H1mm127a"], ["https://tec.openplanner.team/stops/X673aba", "https://tec.openplanner.team/stops/X673abb"], ["https://tec.openplanner.team/stops/X757aab", "https://tec.openplanner.team/stops/X757acb"], ["https://tec.openplanner.team/stops/N117aga", "https://tec.openplanner.team/stops/N569aic"], ["https://tec.openplanner.team/stops/LESamos2", "https://tec.openplanner.team/stops/LESmont1"], ["https://tec.openplanner.team/stops/X641avb", "https://tec.openplanner.team/stops/X641aza"], ["https://tec.openplanner.team/stops/Llgsime1", "https://tec.openplanner.team/stops/Llgsime2"], ["https://tec.openplanner.team/stops/LCRfavr1", "https://tec.openplanner.team/stops/LTyh51-1"], ["https://tec.openplanner.team/stops/X804bua", "https://tec.openplanner.team/stops/X818aaa"], ["https://tec.openplanner.team/stops/X927aaa", "https://tec.openplanner.team/stops/X927aba"], ["https://tec.openplanner.team/stops/Llgangl1", "https://tec.openplanner.team/stops/Llghoch4"], ["https://tec.openplanner.team/stops/LLemonu1", "https://tec.openplanner.team/stops/X547adb"], ["https://tec.openplanner.team/stops/LSPdesc1", "https://tec.openplanner.team/stops/LSPhapa1"], ["https://tec.openplanner.team/stops/Cbzfrom1", "https://tec.openplanner.team/stops/Clulidl2"], ["https://tec.openplanner.team/stops/LRGbett3", "https://tec.openplanner.team/stops/LRGpt5-3"], ["https://tec.openplanner.team/stops/Lsmgdry2", "https://tec.openplanner.team/stops/Lvecase1"], ["https://tec.openplanner.team/stops/Cgzabur2", "https://tec.openplanner.team/stops/Cgzclef1"], ["https://tec.openplanner.team/stops/Lsepaqu1", "https://tec.openplanner.team/stops/Lsepaqu2"], ["https://tec.openplanner.team/stops/LBIbois2", "https://tec.openplanner.team/stops/Lghlogi2"], ["https://tec.openplanner.team/stops/Cmmgadi2", "https://tec.openplanner.team/stops/Cmmphai1"], ["https://tec.openplanner.team/stops/LHYlinc1", "https://tec.openplanner.team/stops/LHYlinc3"], ["https://tec.openplanner.team/stops/Ccygara2", "https://tec.openplanner.team/stops/Ccypn1"], ["https://tec.openplanner.team/stops/Canplch2", "https://tec.openplanner.team/stops/Clbhour1"], ["https://tec.openplanner.team/stops/X714aab", "https://tec.openplanner.team/stops/X714abb"], ["https://tec.openplanner.team/stops/LcRkirc1", "https://tec.openplanner.team/stops/LrDneun1"], ["https://tec.openplanner.team/stops/Cfaecwa1", "https://tec.openplanner.team/stops/Cfaecwa2"], ["https://tec.openplanner.team/stops/N236ana", "https://tec.openplanner.team/stops/N236anb"], ["https://tec.openplanner.team/stops/H5rx121a", "https://tec.openplanner.team/stops/H5rx132a"], ["https://tec.openplanner.team/stops/X744aea", "https://tec.openplanner.team/stops/X744aeb"], ["https://tec.openplanner.team/stops/Cflchap3", "https://tec.openplanner.team/stops/Cflchap4"], ["https://tec.openplanner.team/stops/LVLm10-1", "https://tec.openplanner.team/stops/LVLmabi1"], ["https://tec.openplanner.team/stops/LBjpech1", "https://tec.openplanner.team/stops/LLVeg--1"], ["https://tec.openplanner.team/stops/LCocasc1", "https://tec.openplanner.team/stops/LCocasc2"], ["https://tec.openplanner.team/stops/H4lz162a", "https://tec.openplanner.team/stops/H4lz162b"], ["https://tec.openplanner.team/stops/H4ha169a", "https://tec.openplanner.team/stops/H4me211c"], ["https://tec.openplanner.team/stops/Lbococh2", "https://tec.openplanner.team/stops/Louvivi1"], ["https://tec.openplanner.team/stops/X770acb", "https://tec.openplanner.team/stops/X770ada"], ["https://tec.openplanner.team/stops/N531ama", "https://tec.openplanner.team/stops/N531arb"], ["https://tec.openplanner.team/stops/Bhptcha2", "https://tec.openplanner.team/stops/Bhptegl2"], ["https://tec.openplanner.team/stops/X768aib", "https://tec.openplanner.team/stops/X769akb"], ["https://tec.openplanner.team/stops/LVIeg--4", "https://tec.openplanner.team/stops/LVIsouv1"], ["https://tec.openplanner.team/stops/N301agb", "https://tec.openplanner.team/stops/N340afb"], ["https://tec.openplanner.team/stops/Bgnvgir2", "https://tec.openplanner.team/stops/Bohnr732"], ["https://tec.openplanner.team/stops/Cjudevo1", "https://tec.openplanner.team/stops/Cjuhden4"], ["https://tec.openplanner.team/stops/X725aza", "https://tec.openplanner.team/stops/X725azb"], ["https://tec.openplanner.team/stops/LmImirf2", "https://tec.openplanner.team/stops/LmRh%C3%B6811"], ["https://tec.openplanner.team/stops/Ccpetan1", "https://tec.openplanner.team/stops/Ccpetan2"], ["https://tec.openplanner.team/stops/LeUnopr1", "https://tec.openplanner.team/stops/LeUrath1"], ["https://tec.openplanner.team/stops/Bwaak101", "https://tec.openplanner.team/stops/LWHmath2"], ["https://tec.openplanner.team/stops/Bqueegl1", "https://tec.openplanner.team/stops/Bquepla1"], ["https://tec.openplanner.team/stops/N425aaa", "https://tec.openplanner.team/stops/N425aab"], ["https://tec.openplanner.team/stops/H4ld126a", "https://tec.openplanner.team/stops/H4ld129a"], ["https://tec.openplanner.team/stops/Lhubouq1", "https://tec.openplanner.team/stops/Lhueg--1"], ["https://tec.openplanner.team/stops/LcRkirc1", "https://tec.openplanner.team/stops/LhIfrie1"], ["https://tec.openplanner.team/stops/LCsraws1", "https://tec.openplanner.team/stops/LVLzoni1"], ["https://tec.openplanner.team/stops/H4ka183a", "https://tec.openplanner.team/stops/H4ka195a"], ["https://tec.openplanner.team/stops/H4ga155a", "https://tec.openplanner.team/stops/H4ha171a"], ["https://tec.openplanner.team/stops/X822anb", "https://tec.openplanner.team/stops/X822aob"], ["https://tec.openplanner.team/stops/LVAflat1", "https://tec.openplanner.team/stops/LVAmaas1"], ["https://tec.openplanner.team/stops/Bwavbpi2", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://tec.openplanner.team/stops/H2hg157c", "https://tec.openplanner.team/stops/H2hg265b"], ["https://tec.openplanner.team/stops/H4ca120b", "https://tec.openplanner.team/stops/H4ca124a"], ["https://tec.openplanner.team/stops/N543bka", "https://tec.openplanner.team/stops/N543cpa"], ["https://tec.openplanner.team/stops/X817aca", "https://tec.openplanner.team/stops/X817aeb"], ["https://tec.openplanner.team/stops/H4wn124d", "https://tec.openplanner.team/stops/H4wn139a"], ["https://tec.openplanner.team/stops/Lagfour2", "https://tec.openplanner.team/stops/Lagvall2"], ["https://tec.openplanner.team/stops/Blsmbfe1", "https://tec.openplanner.team/stops/Blsmjja1"], ["https://tec.openplanner.team/stops/Lveanto1", "https://tec.openplanner.team/stops/Lveharm2"], ["https://tec.openplanner.team/stops/H1gh371a", "https://tec.openplanner.team/stops/H1hh118b"], ["https://tec.openplanner.team/stops/Bobacar3", "https://tec.openplanner.team/stops/Broscha2"], ["https://tec.openplanner.team/stops/Bmartil1", "https://tec.openplanner.team/stops/Bmarvil2"], ["https://tec.openplanner.team/stops/LBivi--2", "https://tec.openplanner.team/stops/LWEbr051"], ["https://tec.openplanner.team/stops/H4ce104a", "https://tec.openplanner.team/stops/H4or115a"], ["https://tec.openplanner.team/stops/LkTraer1", "https://tec.openplanner.team/stops/LkTraer2"], ["https://tec.openplanner.team/stops/LBVclig1", "https://tec.openplanner.team/stops/LBVronx1"], ["https://tec.openplanner.team/stops/Bhmmcha2", "https://tec.openplanner.team/stops/Bhmmtou1"], ["https://tec.openplanner.team/stops/H1mm121a", "https://tec.openplanner.team/stops/H1mm126b"], ["https://tec.openplanner.team/stops/N558aeb", "https://tec.openplanner.team/stops/N558afa"], ["https://tec.openplanner.team/stops/H1ag107a", "https://tec.openplanner.team/stops/H1qv115b"], ["https://tec.openplanner.team/stops/Cctfaub1", "https://tec.openplanner.team/stops/Cctfrbe2"], ["https://tec.openplanner.team/stops/Llghong1", "https://tec.openplanner.team/stops/Llgphol3"], ["https://tec.openplanner.team/stops/H4og208b", "https://tec.openplanner.team/stops/H4og212a"], ["https://tec.openplanner.team/stops/N221abb", "https://tec.openplanner.team/stops/X210azb"], ["https://tec.openplanner.team/stops/X615aaa", "https://tec.openplanner.team/stops/X615aja"], ["https://tec.openplanner.team/stops/X760aca", "https://tec.openplanner.team/stops/X788abd"], ["https://tec.openplanner.team/stops/X576aib", "https://tec.openplanner.team/stops/X781aab"], ["https://tec.openplanner.team/stops/Bixlfla1", "https://tec.openplanner.team/stops/Bixllep2"], ["https://tec.openplanner.team/stops/LNEcouc1", "https://tec.openplanner.team/stops/LNEpass1"], ["https://tec.openplanner.team/stops/Bcrnncb1", "https://tec.openplanner.team/stops/Bcrnnra2"], ["https://tec.openplanner.team/stops/LBevill2", "https://tec.openplanner.team/stops/LHNtill2"], ["https://tec.openplanner.team/stops/X618aca", "https://tec.openplanner.team/stops/X619aeb"], ["https://tec.openplanner.team/stops/LLaover4", "https://tec.openplanner.team/stops/LWscona1"], ["https://tec.openplanner.team/stops/N538ahb", "https://tec.openplanner.team/stops/N538ala"], ["https://tec.openplanner.team/stops/H4de112b", "https://tec.openplanner.team/stops/H4ss156a"], ["https://tec.openplanner.team/stops/LWAlong1", "https://tec.openplanner.team/stops/LWAwila1"], ["https://tec.openplanner.team/stops/H4ma411a", "https://tec.openplanner.team/stops/H4ma411b"], ["https://tec.openplanner.team/stops/Bfelcen2", "https://tec.openplanner.team/stops/Bronpfe2"], ["https://tec.openplanner.team/stops/Ladgron1", "https://tec.openplanner.team/stops/LELhard2"], ["https://tec.openplanner.team/stops/LJEchat2", "https://tec.openplanner.team/stops/LJEchat4"], ["https://tec.openplanner.team/stops/N287aca", "https://tec.openplanner.team/stops/N287acb"], ["https://tec.openplanner.team/stops/H4jm116a", "https://tec.openplanner.team/stops/H4jm116b"], ["https://tec.openplanner.team/stops/H1br121b", "https://tec.openplanner.team/stops/H1br129a"], ["https://tec.openplanner.team/stops/Lsmecol1", "https://tec.openplanner.team/stops/Lsmrcim2"], ["https://tec.openplanner.team/stops/H1gh147a", "https://tec.openplanner.team/stops/H1gh147b"], ["https://tec.openplanner.team/stops/X779abb", "https://tec.openplanner.team/stops/X779aia"], ["https://tec.openplanner.team/stops/X740acb", "https://tec.openplanner.team/stops/X740afb"], ["https://tec.openplanner.team/stops/H4ab100a", "https://tec.openplanner.team/stops/H4ab101a"], ["https://tec.openplanner.team/stops/N501gea", "https://tec.openplanner.team/stops/N501geb"], ["https://tec.openplanner.team/stops/LLz21--2", "https://tec.openplanner.team/stops/LPTblan2"], ["https://tec.openplanner.team/stops/Bnivbpe3", "https://tec.openplanner.team/stops/Bptrlux1"], ["https://tec.openplanner.team/stops/N501gka", "https://tec.openplanner.team/stops/N501lib"], ["https://tec.openplanner.team/stops/Cfaamio1", "https://tec.openplanner.team/stops/Cfamonu1"], ["https://tec.openplanner.team/stops/Cjuhame2", "https://tec.openplanner.team/stops/Cjulamb2"], ["https://tec.openplanner.team/stops/LTipont2", "https://tec.openplanner.team/stops/LTiterr1"], ["https://tec.openplanner.team/stops/Llghugo2", "https://tec.openplanner.team/stops/Llglimb2"], ["https://tec.openplanner.team/stops/H2bh105b", "https://tec.openplanner.team/stops/H2bh113b"], ["https://tec.openplanner.team/stops/Becltri2", "https://tec.openplanner.team/stops/H2me116b"], ["https://tec.openplanner.team/stops/LJelava1", "https://tec.openplanner.team/stops/LLmvict1"], ["https://tec.openplanner.team/stops/X991aaa", "https://tec.openplanner.team/stops/X993aab"], ["https://tec.openplanner.team/stops/H4ka186a", "https://tec.openplanner.team/stops/H4mx116b"], ["https://tec.openplanner.team/stops/LHStrez2", "https://tec.openplanner.team/stops/LHSvina1"], ["https://tec.openplanner.team/stops/LBNauto2", "https://tec.openplanner.team/stops/LWEwall1"], ["https://tec.openplanner.team/stops/X754agb", "https://tec.openplanner.team/stops/X754ala"], ["https://tec.openplanner.team/stops/Lpegole2", "https://tec.openplanner.team/stops/Lpegole4"], ["https://tec.openplanner.team/stops/Barchez2", "https://tec.openplanner.team/stops/Bgzddge1"], ["https://tec.openplanner.team/stops/H4ty274a", "https://tec.openplanner.team/stops/H4ty274b"], ["https://tec.openplanner.team/stops/Lrebriq1", "https://tec.openplanner.team/stops/Lrecomp1"], ["https://tec.openplanner.team/stops/LKmeg--2", "https://tec.openplanner.team/stops/LKmmelo1"], ["https://tec.openplanner.team/stops/H4lh120a", "https://tec.openplanner.team/stops/H4oe148b"], ["https://tec.openplanner.team/stops/LLYhoch1", "https://tec.openplanner.team/stops/LLYhoch2"], ["https://tec.openplanner.team/stops/Bchgbel2", "https://tec.openplanner.team/stops/Bnilhau1"], ["https://tec.openplanner.team/stops/LDOchev1", "https://tec.openplanner.team/stops/LGOdelv2"], ["https://tec.openplanner.team/stops/Bnivari2", "https://tec.openplanner.team/stops/Bnivtra2"], ["https://tec.openplanner.team/stops/Ccybouc2", "https://tec.openplanner.team/stops/Ccybouc4"], ["https://tec.openplanner.team/stops/Llabriq1", "https://tec.openplanner.team/stops/LVSbleu2"], ["https://tec.openplanner.team/stops/Bettbue1", "https://tec.openplanner.team/stops/Bettbue2"], ["https://tec.openplanner.team/stops/X601bva", "https://tec.openplanner.team/stops/X601cca"], ["https://tec.openplanner.team/stops/X902bca", "https://tec.openplanner.team/stops/X902bcb"], ["https://tec.openplanner.team/stops/Bcsen251", "https://tec.openplanner.team/stops/Bottcba1"], ["https://tec.openplanner.team/stops/Lgrclas2", "https://tec.openplanner.team/stops/Llgmulh2"], ["https://tec.openplanner.team/stops/LPOchan1", "https://tec.openplanner.team/stops/LSdbote1"], ["https://tec.openplanner.team/stops/Cvregl1", "https://tec.openplanner.team/stops/Cvregl2"], ["https://tec.openplanner.team/stops/Candett2", "https://tec.openplanner.team/stops/Canlemo2"], ["https://tec.openplanner.team/stops/N203adb", "https://tec.openplanner.team/stops/N203afa"], ["https://tec.openplanner.team/stops/N506atb", "https://tec.openplanner.team/stops/N506bac"], ["https://tec.openplanner.team/stops/X771acb", "https://tec.openplanner.team/stops/X773ama"], ["https://tec.openplanner.team/stops/LOTferm1", "https://tec.openplanner.team/stops/LOTjacq1"], ["https://tec.openplanner.team/stops/LRRelec1", "https://tec.openplanner.team/stops/LRRelec3"], ["https://tec.openplanner.team/stops/LEHpech1", "https://tec.openplanner.team/stops/LRRmeta1"], ["https://tec.openplanner.team/stops/LScdina2", "https://tec.openplanner.team/stops/LTNeau-2"], ["https://tec.openplanner.team/stops/N512ara", "https://tec.openplanner.team/stops/N512arb"], ["https://tec.openplanner.team/stops/Bgdhpco2", "https://tec.openplanner.team/stops/Bthspha1"], ["https://tec.openplanner.team/stops/Bnodlce2", "https://tec.openplanner.team/stops/Bnodtir1"], ["https://tec.openplanner.team/stops/LXopeti1", "https://tec.openplanner.team/stops/LXopeti2"], ["https://tec.openplanner.team/stops/LArchap1", "https://tec.openplanner.team/stops/LArmaro1"], ["https://tec.openplanner.team/stops/Blmlgar1", "https://tec.openplanner.team/stops/Blmlpla1"], ["https://tec.openplanner.team/stops/X954agb", "https://tec.openplanner.team/stops/X954ahb"], ["https://tec.openplanner.team/stops/H4au143b", "https://tec.openplanner.team/stops/H4og216a"], ["https://tec.openplanner.team/stops/N513aob", "https://tec.openplanner.team/stops/N513arb"], ["https://tec.openplanner.team/stops/Blhurcl1", "https://tec.openplanner.team/stops/Blhusor1"], ["https://tec.openplanner.team/stops/X804afb", "https://tec.openplanner.team/stops/X804aga"], ["https://tec.openplanner.team/stops/LSseg--2", "https://tec.openplanner.team/stops/N506bwa"], ["https://tec.openplanner.team/stops/X681ada", "https://tec.openplanner.team/stops/X681aha"], ["https://tec.openplanner.team/stops/LEN101-1", "https://tec.openplanner.team/stops/LEN101-2"], ["https://tec.openplanner.team/stops/H1ht124b", "https://tec.openplanner.team/stops/H1si151b"], ["https://tec.openplanner.team/stops/Lmoknae2", "https://tec.openplanner.team/stops/Lmoknae3"], ["https://tec.openplanner.team/stops/Bthsset2", "https://tec.openplanner.team/stops/NL37aja"], ["https://tec.openplanner.team/stops/LhOukat1", "https://tec.openplanner.team/stops/LhOukat2"], ["https://tec.openplanner.team/stops/Ladplen*", "https://tec.openplanner.team/stops/LClsacr1"], ["https://tec.openplanner.team/stops/Cgrchea2", "https://tec.openplanner.team/stops/NC14aha"], ["https://tec.openplanner.team/stops/LVNcoop1", "https://tec.openplanner.team/stops/LVNcoop2"], ["https://tec.openplanner.team/stops/N507afa", "https://tec.openplanner.team/stops/N507aja"], ["https://tec.openplanner.team/stops/H2sb223a", "https://tec.openplanner.team/stops/H2sb238a"], ["https://tec.openplanner.team/stops/N347ada", "https://tec.openplanner.team/stops/X347aja"], ["https://tec.openplanner.team/stops/X617aca", "https://tec.openplanner.team/stops/X617ada"], ["https://tec.openplanner.team/stops/LFochap2", "https://tec.openplanner.team/stops/LJAhanq4"], ["https://tec.openplanner.team/stops/LTgjalh2", "https://tec.openplanner.team/stops/LTgvill1"], ["https://tec.openplanner.team/stops/Lvopaqu2", "https://tec.openplanner.team/stops/Lvovent1"], ["https://tec.openplanner.team/stops/N301ana", "https://tec.openplanner.team/stops/X301ara"], ["https://tec.openplanner.team/stops/X618aaa", "https://tec.openplanner.team/stops/X618aba"], ["https://tec.openplanner.team/stops/N245aab", "https://tec.openplanner.team/stops/N245abb"], ["https://tec.openplanner.team/stops/X660aab", "https://tec.openplanner.team/stops/X661aqa"], ["https://tec.openplanner.team/stops/LJAwerf1", "https://tec.openplanner.team/stops/LJAwerf2"], ["https://tec.openplanner.team/stops/H1em110a", "https://tec.openplanner.team/stops/H1em110b"], ["https://tec.openplanner.team/stops/LbTgeme1", "https://tec.openplanner.team/stops/LsHkirc1"], ["https://tec.openplanner.team/stops/LVPgrot1", "https://tec.openplanner.team/stops/LVPgrot3"], ["https://tec.openplanner.team/stops/LeUindu1", "https://tec.openplanner.team/stops/LlNbruc1"], ["https://tec.openplanner.team/stops/LHCpaci2", "https://tec.openplanner.team/stops/LHCruyf2"], ["https://tec.openplanner.team/stops/H4ce107b", "https://tec.openplanner.team/stops/H4mx115b"], ["https://tec.openplanner.team/stops/N212aka", "https://tec.openplanner.team/stops/N226aca"], ["https://tec.openplanner.team/stops/LDmdomm1", "https://tec.openplanner.team/stops/LDmeg--2"], ["https://tec.openplanner.team/stops/H1pa104b", "https://tec.openplanner.team/stops/H1pa110b"], ["https://tec.openplanner.team/stops/Canmonu5", "https://tec.openplanner.team/stops/H2an106d"], ["https://tec.openplanner.team/stops/LAmab751", "https://tec.openplanner.team/stops/LATlena1"], ["https://tec.openplanner.team/stops/H4ga149b", "https://tec.openplanner.team/stops/H4ga168b"], ["https://tec.openplanner.team/stops/N564aab", "https://tec.openplanner.team/stops/N564abb"], ["https://tec.openplanner.team/stops/LTRcarr2", "https://tec.openplanner.team/stops/LTRchpl2"], ["https://tec.openplanner.team/stops/Balsnay1", "https://tec.openplanner.team/stops/Balswwe1"], ["https://tec.openplanner.team/stops/Bcbqcht2", "https://tec.openplanner.team/stops/Bcbqpon1"], ["https://tec.openplanner.team/stops/Broncan1", "https://tec.openplanner.team/stops/Bronn391"], ["https://tec.openplanner.team/stops/N504abb", "https://tec.openplanner.team/stops/N579aeb"], ["https://tec.openplanner.team/stops/Bleugar1", "https://tec.openplanner.team/stops/H4co148b"], ["https://tec.openplanner.team/stops/LBNburg1", "https://tec.openplanner.team/stops/LBNburg2"], ["https://tec.openplanner.team/stops/Bbsipos1", "https://tec.openplanner.team/stops/Bbsipos2"], ["https://tec.openplanner.team/stops/N137aab", "https://tec.openplanner.team/stops/N137acb"], ["https://tec.openplanner.team/stops/X837aib", "https://tec.openplanner.team/stops/X837akb"], ["https://tec.openplanner.team/stops/Blempuc1", "https://tec.openplanner.team/stops/Btubcal2"], ["https://tec.openplanner.team/stops/X640apb", "https://tec.openplanner.team/stops/X640aqb"], ["https://tec.openplanner.team/stops/Cravold1", "https://tec.openplanner.team/stops/Cravold2"], ["https://tec.openplanner.team/stops/N538asb", "https://tec.openplanner.team/stops/N538asc"], ["https://tec.openplanner.team/stops/N501fta", "https://tec.openplanner.team/stops/N501fty"], ["https://tec.openplanner.team/stops/N221acb", "https://tec.openplanner.team/stops/N221adb"], ["https://tec.openplanner.team/stops/X650acb", "https://tec.openplanner.team/stops/X650aja"], ["https://tec.openplanner.team/stops/N520aha", "https://tec.openplanner.team/stops/N520ahb"], ["https://tec.openplanner.team/stops/LaAjahn1", "https://tec.openplanner.team/stops/LaAzwei2"], ["https://tec.openplanner.team/stops/LFdeg--1", "https://tec.openplanner.team/stops/LFdeg--2"], ["https://tec.openplanner.team/stops/Bbxlmid4", "https://tec.openplanner.team/stops/Bsgicfo1"], ["https://tec.openplanner.team/stops/Bbch4br2", "https://tec.openplanner.team/stops/Bbch4br5"], ["https://tec.openplanner.team/stops/LAUcose1", "https://tec.openplanner.team/stops/LAUmerc2"], ["https://tec.openplanner.team/stops/X764abb", "https://tec.openplanner.team/stops/X764agb"], ["https://tec.openplanner.team/stops/X615aba", "https://tec.openplanner.team/stops/X615akb"], ["https://tec.openplanner.team/stops/LMXaven1", "https://tec.openplanner.team/stops/LMXaven2"], ["https://tec.openplanner.team/stops/X808aia", "https://tec.openplanner.team/stops/X808aib"], ["https://tec.openplanner.team/stops/LcRmuhl2", "https://tec.openplanner.team/stops/LwTkabi2"], ["https://tec.openplanner.team/stops/Ccheden2", "https://tec.openplanner.team/stops/Cchoues4"], ["https://tec.openplanner.team/stops/H4ha167a", "https://tec.openplanner.team/stops/H4ru238a"], ["https://tec.openplanner.team/stops/H4ef162b", "https://tec.openplanner.team/stops/H4ss154a"], ["https://tec.openplanner.team/stops/LTyhall1", "https://tec.openplanner.team/stops/LTyhall2"], ["https://tec.openplanner.team/stops/X801abb", "https://tec.openplanner.team/stops/X898aeb"], ["https://tec.openplanner.team/stops/Bbsicen2", "https://tec.openplanner.team/stops/Bbsipos2"], ["https://tec.openplanner.team/stops/N558ana", "https://tec.openplanner.team/stops/NL77aab"], ["https://tec.openplanner.team/stops/H4lz124a", "https://tec.openplanner.team/stops/H4pi131a"], ["https://tec.openplanner.team/stops/H1eu102b", "https://tec.openplanner.team/stops/H1eu103a"], ["https://tec.openplanner.team/stops/X992aha", "https://tec.openplanner.team/stops/X992ahb"], ["https://tec.openplanner.team/stops/X922aea", "https://tec.openplanner.team/stops/X922aeb"], ["https://tec.openplanner.team/stops/H4hu115b", "https://tec.openplanner.team/stops/H4hu118b"], ["https://tec.openplanner.team/stops/Cna4che1", "https://tec.openplanner.team/stops/Cna6che2"], ["https://tec.openplanner.team/stops/X657abb", "https://tec.openplanner.team/stops/X657aca"], ["https://tec.openplanner.team/stops/H5rx106b", "https://tec.openplanner.team/stops/H5rx147a"], ["https://tec.openplanner.team/stops/N357aaa", "https://tec.openplanner.team/stops/N357acb"], ["https://tec.openplanner.team/stops/X672ada", "https://tec.openplanner.team/stops/X672aob"], ["https://tec.openplanner.team/stops/H4rm112a", "https://tec.openplanner.team/stops/H4rm114b"], ["https://tec.openplanner.team/stops/N501kpb", "https://tec.openplanner.team/stops/N501mvc"], ["https://tec.openplanner.team/stops/Blhupa11", "https://tec.openplanner.team/stops/Blhupcl1"], ["https://tec.openplanner.team/stops/H4po126a", "https://tec.openplanner.team/stops/H4po130b"], ["https://tec.openplanner.team/stops/Bdvmccu1", "https://tec.openplanner.team/stops/Bwavbva1"], ["https://tec.openplanner.team/stops/LMEeg--2", "https://tec.openplanner.team/stops/LMEpech1"], ["https://tec.openplanner.team/stops/LDOanes2", "https://tec.openplanner.team/stops/LDOordi2"], ["https://tec.openplanner.team/stops/LmHperl1", "https://tec.openplanner.team/stops/LmHperl2"], ["https://tec.openplanner.team/stops/Bmalcar2", "https://tec.openplanner.team/stops/Bmalper2"], ["https://tec.openplanner.team/stops/H4sl154a", "https://tec.openplanner.team/stops/H4wg122b"], ["https://tec.openplanner.team/stops/N230ala", "https://tec.openplanner.team/stops/N234ada"], ["https://tec.openplanner.team/stops/LAYdieu1", "https://tec.openplanner.team/stops/LAYecol2"], ["https://tec.openplanner.team/stops/X801aaa", "https://tec.openplanner.team/stops/X802aqa"], ["https://tec.openplanner.team/stops/Cflchel2", "https://tec.openplanner.team/stops/Cflchel3"], ["https://tec.openplanner.team/stops/Bjod7co1", "https://tec.openplanner.team/stops/Bjodcar2"], ["https://tec.openplanner.team/stops/Lrchero1", "https://tec.openplanner.team/stops/Lrcvinc1"], ["https://tec.openplanner.team/stops/N539axb", "https://tec.openplanner.team/stops/N539azb"], ["https://tec.openplanner.team/stops/H4ca123a", "https://tec.openplanner.team/stops/H4ca123b"], ["https://tec.openplanner.team/stops/X903aca", "https://tec.openplanner.team/stops/X903agb"], ["https://tec.openplanner.team/stops/H4wi167b", "https://tec.openplanner.team/stops/H5pe134b"], ["https://tec.openplanner.team/stops/X752aab", "https://tec.openplanner.team/stops/X752aba"], ["https://tec.openplanner.team/stops/H1gg115b", "https://tec.openplanner.team/stops/H1gg145a"], ["https://tec.openplanner.team/stops/LLtrout1", "https://tec.openplanner.team/stops/LLtrout2"], ["https://tec.openplanner.team/stops/N522aea", "https://tec.openplanner.team/stops/N522aeb"], ["https://tec.openplanner.team/stops/Cliburl1", "https://tec.openplanner.team/stops/Clihame2"], ["https://tec.openplanner.team/stops/LFPho8a2", "https://tec.openplanner.team/stops/LFPkast1"], ["https://tec.openplanner.team/stops/X664aaa", "https://tec.openplanner.team/stops/X664acb"], ["https://tec.openplanner.team/stops/H1as104a", "https://tec.openplanner.team/stops/H1as104b"], ["https://tec.openplanner.team/stops/H5rx129a", "https://tec.openplanner.team/stops/H5rx129b"], ["https://tec.openplanner.team/stops/Bndb4ch1", "https://tec.openplanner.team/stops/Bptblma1"], ["https://tec.openplanner.team/stops/X764aea", "https://tec.openplanner.team/stops/X765aca"], ["https://tec.openplanner.team/stops/LRAcouv2", "https://tec.openplanner.team/stops/LRAgrot2"], ["https://tec.openplanner.team/stops/H1ms245b", "https://tec.openplanner.team/stops/H1ms264a"], ["https://tec.openplanner.team/stops/LCTgare4", "https://tec.openplanner.team/stops/LCTpt--2"], ["https://tec.openplanner.team/stops/X886afb", "https://tec.openplanner.team/stops/X886agb"], ["https://tec.openplanner.team/stops/LRmsmvo2", "https://tec.openplanner.team/stops/LRmsmvo3"], ["https://tec.openplanner.team/stops/Bquebuc1", "https://tec.openplanner.team/stops/Bstecou1"], ["https://tec.openplanner.team/stops/N501jjb", "https://tec.openplanner.team/stops/N501jka"], ["https://tec.openplanner.team/stops/Bcsgcou2", "https://tec.openplanner.team/stops/Bohnpla2"], ["https://tec.openplanner.team/stops/Cfamate1", "https://tec.openplanner.team/stops/Cflvxsa2"], ["https://tec.openplanner.team/stops/LPobois1", "https://tec.openplanner.team/stops/LPoewer2"], ["https://tec.openplanner.team/stops/LeLsied1", "https://tec.openplanner.team/stops/LwYsour4"], ["https://tec.openplanner.team/stops/H1si155a", "https://tec.openplanner.team/stops/H1vt195b"], ["https://tec.openplanner.team/stops/LCocasc1", "https://tec.openplanner.team/stops/LTPsatr1"], ["https://tec.openplanner.team/stops/Bhandub1", "https://tec.openplanner.team/stops/Bthscbl1"], ["https://tec.openplanner.team/stops/LOLbout1", "https://tec.openplanner.team/stops/LXHfalh1"], ["https://tec.openplanner.team/stops/LREgare2", "https://tec.openplanner.team/stops/LREgrot2"], ["https://tec.openplanner.team/stops/LNIbas-2", "https://tec.openplanner.team/stops/LNIhaut1"], ["https://tec.openplanner.team/stops/Bbaulil1", "https://tec.openplanner.team/stops/Bbaulil2"], ["https://tec.openplanner.team/stops/Bwaypon1", "https://tec.openplanner.team/stops/Cwspavi1"], ["https://tec.openplanner.team/stops/X925aga", "https://tec.openplanner.team/stops/X949amb"], ["https://tec.openplanner.team/stops/Lprceri2", "https://tec.openplanner.team/stops/Lprtour2"], ["https://tec.openplanner.team/stops/Bbgnvel1", "https://tec.openplanner.team/stops/Bbgnvel2"], ["https://tec.openplanner.team/stops/X725bea", "https://tec.openplanner.team/stops/X725beb"], ["https://tec.openplanner.team/stops/X783abb", "https://tec.openplanner.team/stops/X783acd"], ["https://tec.openplanner.team/stops/N534awc", "https://tec.openplanner.team/stops/N534axb"], ["https://tec.openplanner.team/stops/H1do109a", "https://tec.openplanner.team/stops/H1do111a"], ["https://tec.openplanner.team/stops/X649ada", "https://tec.openplanner.team/stops/X649adb"], ["https://tec.openplanner.team/stops/Cjugill4", "https://tec.openplanner.team/stops/CMbert1"], ["https://tec.openplanner.team/stops/Bhvlpla1", "https://tec.openplanner.team/stops/Bhvlpla2"], ["https://tec.openplanner.team/stops/H4ga154a", "https://tec.openplanner.team/stops/H4vx360a"], ["https://tec.openplanner.team/stops/Bbeaech2", "https://tec.openplanner.team/stops/Bbealou2"], ["https://tec.openplanner.team/stops/LHCkoul2", "https://tec.openplanner.team/stops/LHMhof-1"], ["https://tec.openplanner.team/stops/H1ha186a", "https://tec.openplanner.team/stops/H1ha187b"], ["https://tec.openplanner.team/stops/X601bka", "https://tec.openplanner.team/stops/X601bza"], ["https://tec.openplanner.team/stops/LRmhage5", "https://tec.openplanner.team/stops/LRmhage6"], ["https://tec.openplanner.team/stops/LVTeg--1", "https://tec.openplanner.team/stops/LVTeg--2"], ["https://tec.openplanner.team/stops/X731aba", "https://tec.openplanner.team/stops/X731abb"], ["https://tec.openplanner.team/stops/Bborche1", "https://tec.openplanner.team/stops/Bhtihau1"], ["https://tec.openplanner.team/stops/N212aka", "https://tec.openplanner.team/stops/N367ada"], ["https://tec.openplanner.team/stops/LCHfond1", "https://tec.openplanner.team/stops/Lprmerc*"], ["https://tec.openplanner.team/stops/Bgnvoha4", "https://tec.openplanner.team/stops/Blasren2"], ["https://tec.openplanner.team/stops/H4ar173a", "https://tec.openplanner.team/stops/H4ar178a"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/Csurela1"], ["https://tec.openplanner.team/stops/H1pw120a", "https://tec.openplanner.team/stops/H1pw121a"], ["https://tec.openplanner.team/stops/LSCeg--2", "https://tec.openplanner.team/stops/LSCeg--4"], ["https://tec.openplanner.team/stops/X937ada", "https://tec.openplanner.team/stops/X937afa"], ["https://tec.openplanner.team/stops/Cchcase1", "https://tec.openplanner.team/stops/Cchcase4"], ["https://tec.openplanner.team/stops/N501bda", "https://tec.openplanner.team/stops/N501mla"], ["https://tec.openplanner.team/stops/Bdvmsar1", "https://tec.openplanner.team/stops/Bdvmsar2"], ["https://tec.openplanner.team/stops/LbThutt1", "https://tec.openplanner.team/stops/LbThutt2"], ["https://tec.openplanner.team/stops/N584aub", "https://tec.openplanner.team/stops/N584azb"], ["https://tec.openplanner.team/stops/H4ml207a", "https://tec.openplanner.team/stops/H4tg262a"], ["https://tec.openplanner.team/stops/Blasbh52", "https://tec.openplanner.team/stops/Blaspch1"], ["https://tec.openplanner.team/stops/Brsga152", "https://tec.openplanner.team/stops/Brsgepr1"], ["https://tec.openplanner.team/stops/NL76aga", "https://tec.openplanner.team/stops/NL76agb"], ["https://tec.openplanner.team/stops/LSAhaye1", "https://tec.openplanner.team/stops/LSAtrih1"], ["https://tec.openplanner.team/stops/N390aea", "https://tec.openplanner.team/stops/N390aeb"], ["https://tec.openplanner.team/stops/LCvneuv5", "https://tec.openplanner.team/stops/LCvneuv6"], ["https://tec.openplanner.team/stops/X768aja", "https://tec.openplanner.team/stops/X768akb"], ["https://tec.openplanner.team/stops/Ctucour2", "https://tec.openplanner.team/stops/Ctuecol1"], ["https://tec.openplanner.team/stops/X359aab", "https://tec.openplanner.team/stops/X359aac"], ["https://tec.openplanner.team/stops/Bwategl1", "https://tec.openplanner.team/stops/Bwatras2"], ["https://tec.openplanner.team/stops/Bgdhmet2", "https://tec.openplanner.team/stops/Blinhue2"], ["https://tec.openplanner.team/stops/Bitrbvo1", "https://tec.openplanner.team/stops/Bvirdco2"], ["https://tec.openplanner.team/stops/Lveensi2", "https://tec.openplanner.team/stops/Lveveou1"], ["https://tec.openplanner.team/stops/H1bs110b", "https://tec.openplanner.team/stops/H1bs110c"], ["https://tec.openplanner.team/stops/N106ada", "https://tec.openplanner.team/stops/N137aia"], ["https://tec.openplanner.team/stops/Crcgare1", "https://tec.openplanner.team/stops/NH03afa"], ["https://tec.openplanner.team/stops/LCvmonu1", "https://tec.openplanner.team/stops/LTBeg--2"], ["https://tec.openplanner.team/stops/Bwatifr2", "https://tec.openplanner.team/stops/Bwatrdu1"], ["https://tec.openplanner.team/stops/H1eq116a", "https://tec.openplanner.team/stops/H1eq117a"], ["https://tec.openplanner.team/stops/X713adb", "https://tec.openplanner.team/stops/X713aeb"], ["https://tec.openplanner.team/stops/Llgchau1", "https://tec.openplanner.team/stops/Llglaha2"], ["https://tec.openplanner.team/stops/Lrecite1", "https://tec.openplanner.team/stops/Lreec--2"], ["https://tec.openplanner.team/stops/LaR1G--2", "https://tec.openplanner.team/stops/LaRkape2"], ["https://tec.openplanner.team/stops/Cfmrrou1", "https://tec.openplanner.team/stops/Cfomays1"], ["https://tec.openplanner.team/stops/X858afb", "https://tec.openplanner.team/stops/X858aga"], ["https://tec.openplanner.team/stops/LmHburg1", "https://tec.openplanner.team/stops/LmHperl1"], ["https://tec.openplanner.team/stops/Lgrbell1", "https://tec.openplanner.team/stops/Lgrdemo2"], ["https://tec.openplanner.team/stops/Lsmh1801", "https://tec.openplanner.team/stops/Lsmh1802"], ["https://tec.openplanner.team/stops/N514aja", "https://tec.openplanner.team/stops/N514aka"], ["https://tec.openplanner.team/stops/X858aeb", "https://tec.openplanner.team/stops/X858afa"], ["https://tec.openplanner.team/stops/Lseserv1", "https://tec.openplanner.team/stops/Lseserv2"], ["https://tec.openplanner.team/stops/X619afb", "https://tec.openplanner.team/stops/X619aka"], ["https://tec.openplanner.team/stops/Cmafafe2", "https://tec.openplanner.team/stops/Cmmbsit1"], ["https://tec.openplanner.team/stops/Bfelpla2", "https://tec.openplanner.team/stops/Bsenpeu1"], ["https://tec.openplanner.team/stops/N127afa", "https://tec.openplanner.team/stops/N127bha"], ["https://tec.openplanner.team/stops/N501kwb", "https://tec.openplanner.team/stops/N501mrb"], ["https://tec.openplanner.team/stops/Llglave2", "https://tec.openplanner.team/stops/Llgschm2"], ["https://tec.openplanner.team/stops/H1bu140a", "https://tec.openplanner.team/stops/H1bu140b"], ["https://tec.openplanner.team/stops/N120aab", "https://tec.openplanner.team/stops/N121adb"], ["https://tec.openplanner.team/stops/Cnacent1", "https://tec.openplanner.team/stops/Cnacent4"], ["https://tec.openplanner.team/stops/Cvstouv1", "https://tec.openplanner.team/stops/Cwfronc1"], ["https://tec.openplanner.team/stops/Bnivasa1", "https://tec.openplanner.team/stops/Bnivcol2"], ["https://tec.openplanner.team/stops/Lhrabho2", "https://tec.openplanner.team/stops/Lvitomb2"], ["https://tec.openplanner.team/stops/H1pa108b", "https://tec.openplanner.team/stops/H1pa120a"], ["https://tec.openplanner.team/stops/H4mv188b", "https://tec.openplanner.team/stops/H4mv192b"], ["https://tec.openplanner.team/stops/LWibare1", "https://tec.openplanner.team/stops/LWipaif3"], ["https://tec.openplanner.team/stops/N503afa", "https://tec.openplanner.team/stops/N503agb"], ["https://tec.openplanner.team/stops/N501jha", "https://tec.openplanner.team/stops/N501jib"], ["https://tec.openplanner.team/stops/Lgrclin4", "https://tec.openplanner.team/stops/Lvccime1"], ["https://tec.openplanner.team/stops/LHUchpl2", "https://tec.openplanner.team/stops/LHUdeni3"], ["https://tec.openplanner.team/stops/Cplcafp1", "https://tec.openplanner.team/stops/Cplcafp2"], ["https://tec.openplanner.team/stops/H4do100a", "https://tec.openplanner.team/stops/H4do202a"], ["https://tec.openplanner.team/stops/NL57aha", "https://tec.openplanner.team/stops/NL57ajb"], ["https://tec.openplanner.team/stops/LESflag1", "https://tec.openplanner.team/stops/LPOchan1"], ["https://tec.openplanner.team/stops/N512aha", "https://tec.openplanner.team/stops/N512aid"], ["https://tec.openplanner.team/stops/LBdcarr2", "https://tec.openplanner.team/stops/LBdcime1"], ["https://tec.openplanner.team/stops/Bbiecoc2", "https://tec.openplanner.team/stops/Bbiefon2"], ["https://tec.openplanner.team/stops/Caigibe2", "https://tec.openplanner.team/stops/Crspair2"], ["https://tec.openplanner.team/stops/H5qu143c", "https://tec.openplanner.team/stops/H5qu156c"], ["https://tec.openplanner.team/stops/H4lg100a", "https://tec.openplanner.team/stops/H4ta119b"], ["https://tec.openplanner.team/stops/LMYvill1", "https://tec.openplanner.team/stops/LXofont2"], ["https://tec.openplanner.team/stops/H1al146a", "https://tec.openplanner.team/stops/H1mb131a"], ["https://tec.openplanner.team/stops/X824ajb", "https://tec.openplanner.team/stops/X826aga"], ["https://tec.openplanner.team/stops/LFFchab2", "https://tec.openplanner.team/stops/LFFeg--1"], ["https://tec.openplanner.team/stops/LMOc50-1", "https://tec.openplanner.team/stops/LMOeg--2"], ["https://tec.openplanner.team/stops/Bbeaegl2", "https://tec.openplanner.team/stops/Bmlncle1"], ["https://tec.openplanner.team/stops/N534apg", "https://tec.openplanner.team/stops/N534asb"], ["https://tec.openplanner.team/stops/LAUberg2", "https://tec.openplanner.team/stops/LLC170-2"], ["https://tec.openplanner.team/stops/Cjudewe1", "https://tec.openplanner.team/stops/Clodrio2"], ["https://tec.openplanner.team/stops/Lprferm2", "https://tec.openplanner.team/stops/Lprtill1"], ["https://tec.openplanner.team/stops/H1bi103b", "https://tec.openplanner.team/stops/H1lo119a"], ["https://tec.openplanner.team/stops/H1lb153a", "https://tec.openplanner.team/stops/H1lb154b"], ["https://tec.openplanner.team/stops/Lemeg--1", "https://tec.openplanner.team/stops/Lemeg--2"], ["https://tec.openplanner.team/stops/Cmmjami2", "https://tec.openplanner.team/stops/Cmmserv3"], ["https://tec.openplanner.team/stops/N113afa", "https://tec.openplanner.team/stops/N113afb"], ["https://tec.openplanner.team/stops/Llgcite1", "https://tec.openplanner.team/stops/Llgcite4"], ["https://tec.openplanner.team/stops/Ccircar2", "https://tec.openplanner.team/stops/Ccivill1"], ["https://tec.openplanner.team/stops/H4ry131a", "https://tec.openplanner.team/stops/H4ry131b"], ["https://tec.openplanner.team/stops/Cfrcoop1", "https://tec.openplanner.team/stops/Cfrplac1"], ["https://tec.openplanner.team/stops/N353adb", "https://tec.openplanner.team/stops/N353afb"], ["https://tec.openplanner.team/stops/LaMadam2", "https://tec.openplanner.team/stops/LvAschw1"], ["https://tec.openplanner.team/stops/Lghreyn2", "https://tec.openplanner.team/stops/Lghwass1"], ["https://tec.openplanner.team/stops/LhUkape1", "https://tec.openplanner.team/stops/LhUrich1"], ["https://tec.openplanner.team/stops/LElgerd2", "https://tec.openplanner.team/stops/LOucarr2"], ["https://tec.openplanner.team/stops/X615axb", "https://tec.openplanner.team/stops/X615bba"], ["https://tec.openplanner.team/stops/Lagviad2", "https://tec.openplanner.team/stops/Lceourt1"], ["https://tec.openplanner.team/stops/LAmcorn2", "https://tec.openplanner.team/stops/LAmshel1"], ["https://tec.openplanner.team/stops/X616ahb", "https://tec.openplanner.team/stops/X617aga"], ["https://tec.openplanner.team/stops/LHovill1", "https://tec.openplanner.team/stops/LNvrout2"], ["https://tec.openplanner.team/stops/H1qu105b", "https://tec.openplanner.team/stops/H1qu110b"], ["https://tec.openplanner.team/stops/H4fo118b", "https://tec.openplanner.team/stops/H4fo119a"], ["https://tec.openplanner.team/stops/H2sv211b", "https://tec.openplanner.team/stops/H2sv216a"], ["https://tec.openplanner.team/stops/H1te179b", "https://tec.openplanner.team/stops/H1te180b"], ["https://tec.openplanner.team/stops/Cctchea2", "https://tec.openplanner.team/stops/Cctvche1"], ["https://tec.openplanner.team/stops/LBItnt-*", "https://tec.openplanner.team/stops/LCaalou2"], ["https://tec.openplanner.team/stops/N506bcb", "https://tec.openplanner.team/stops/N506bna"], ["https://tec.openplanner.team/stops/N531apa", "https://tec.openplanner.team/stops/N531aqa"], ["https://tec.openplanner.team/stops/LENengi2", "https://tec.openplanner.team/stops/LENgend1"], ["https://tec.openplanner.team/stops/N507aga", "https://tec.openplanner.team/stops/N507aib"], ["https://tec.openplanner.team/stops/X804awa", "https://tec.openplanner.team/stops/X804awb"], ["https://tec.openplanner.team/stops/X896ahb", "https://tec.openplanner.team/stops/X897apa"], ["https://tec.openplanner.team/stops/Lmitroi2", "https://tec.openplanner.team/stops/Lvtbocl2"], ["https://tec.openplanner.team/stops/N120ala", "https://tec.openplanner.team/stops/N121aha"], ["https://tec.openplanner.team/stops/LCPcomp1", "https://tec.openplanner.team/stops/LCPcomp2"], ["https://tec.openplanner.team/stops/H4fr142b", "https://tec.openplanner.team/stops/H4ob108b"], ["https://tec.openplanner.team/stops/LHUloui1", "https://tec.openplanner.team/stops/LHUloui2"], ["https://tec.openplanner.team/stops/Cmocalv1", "https://tec.openplanner.team/stops/Cmocalv4"], ["https://tec.openplanner.team/stops/LERpouh1", "https://tec.openplanner.team/stops/LHrreal1"], ["https://tec.openplanner.team/stops/N501erb", "https://tec.openplanner.team/stops/N501ggb"], ["https://tec.openplanner.team/stops/H4co110a", "https://tec.openplanner.team/stops/H4co141a"], ["https://tec.openplanner.team/stops/H1ms276a", "https://tec.openplanner.team/stops/H1ms905a"], ["https://tec.openplanner.team/stops/Lbobuil2", "https://tec.openplanner.team/stops/Lbotilf1"], ["https://tec.openplanner.team/stops/Lghalli1", "https://tec.openplanner.team/stops/Lghsimo4"], ["https://tec.openplanner.team/stops/H1le124a", "https://tec.openplanner.team/stops/H1le130b"], ["https://tec.openplanner.team/stops/LBrbern2", "https://tec.openplanner.team/stops/LMici091"], ["https://tec.openplanner.team/stops/N110aaa", "https://tec.openplanner.team/stops/N124aca"], ["https://tec.openplanner.team/stops/Btubmfa1", "https://tec.openplanner.team/stops/Btubpla1"], ["https://tec.openplanner.team/stops/X725ada", "https://tec.openplanner.team/stops/X725adb"], ["https://tec.openplanner.team/stops/Barcbav1", "https://tec.openplanner.team/stops/Bbsgrve1"], ["https://tec.openplanner.team/stops/Lbhhomv2", "https://tec.openplanner.team/stops/Lbhsion2"], ["https://tec.openplanner.team/stops/Bblaphi2", "https://tec.openplanner.team/stops/Bblasmo2"], ["https://tec.openplanner.team/stops/X736abb", "https://tec.openplanner.team/stops/X736acb"], ["https://tec.openplanner.team/stops/Lagrask1", "https://tec.openplanner.team/stops/Lagtenn2"], ["https://tec.openplanner.team/stops/H4oq226a", "https://tec.openplanner.team/stops/H4oq226c"], ["https://tec.openplanner.team/stops/Bsambra1", "https://tec.openplanner.team/stops/Bsamfma2"], ["https://tec.openplanner.team/stops/X370adb", "https://tec.openplanner.team/stops/X858aba"], ["https://tec.openplanner.team/stops/X761aaa", "https://tec.openplanner.team/stops/X761aba"], ["https://tec.openplanner.team/stops/X715apb", "https://tec.openplanner.team/stops/X731aga"], ["https://tec.openplanner.team/stops/N501bra", "https://tec.openplanner.team/stops/N501mwa"], ["https://tec.openplanner.team/stops/Bjodcsb2", "https://tec.openplanner.team/stops/Bsrgegl1"], ["https://tec.openplanner.team/stops/LaUn1--3", "https://tec.openplanner.team/stops/LsF39--2"], ["https://tec.openplanner.team/stops/NC14aua", "https://tec.openplanner.team/stops/NC14avb"], ["https://tec.openplanner.team/stops/X941ada", "https://tec.openplanner.team/stops/X941adb"], ["https://tec.openplanner.team/stops/LBEabbe2", "https://tec.openplanner.team/stops/LBEairp4"], ["https://tec.openplanner.team/stops/LTAbran1", "https://tec.openplanner.team/stops/LTAchau2"], ["https://tec.openplanner.team/stops/LWEeg--2", "https://tec.openplanner.team/stops/LWEgare1"], ["https://tec.openplanner.team/stops/H4ep129a", "https://tec.openplanner.team/stops/H4rm114a"], ["https://tec.openplanner.team/stops/LCEec--1", "https://tec.openplanner.team/stops/LCEinst1"], ["https://tec.openplanner.team/stops/X725aib", "https://tec.openplanner.team/stops/X727aaa"], ["https://tec.openplanner.team/stops/H4ir165a", "https://tec.openplanner.team/stops/H5at141b"], ["https://tec.openplanner.team/stops/Ccyfede2", "https://tec.openplanner.team/stops/Crbecol1"], ["https://tec.openplanner.team/stops/N501dnb", "https://tec.openplanner.team/stops/N501ena"], ["https://tec.openplanner.team/stops/Btilmon2", "https://tec.openplanner.team/stops/Btilsnc1"], ["https://tec.openplanner.team/stops/H2hg144b", "https://tec.openplanner.team/stops/H2hg158b"], ["https://tec.openplanner.team/stops/Bwagpco2", "https://tec.openplanner.team/stops/Bwagsta2"], ["https://tec.openplanner.team/stops/Llgcadr2", "https://tec.openplanner.team/stops/Llgcadr6"], ["https://tec.openplanner.team/stops/N232apa", "https://tec.openplanner.team/stops/N232axa"], ["https://tec.openplanner.team/stops/X609ada", "https://tec.openplanner.team/stops/X609adb"], ["https://tec.openplanner.team/stops/LORroma1", "https://tec.openplanner.team/stops/LWAbett2"], ["https://tec.openplanner.team/stops/H1fa117a", "https://tec.openplanner.team/stops/H1pe132b"], ["https://tec.openplanner.team/stops/Crolema2", "https://tec.openplanner.team/stops/Crolema4"], ["https://tec.openplanner.team/stops/X805aca", "https://tec.openplanner.team/stops/X805adb"], ["https://tec.openplanner.team/stops/Cjulucq2", "https://tec.openplanner.team/stops/Cjuvand1"], ["https://tec.openplanner.team/stops/Lagkink1", "https://tec.openplanner.team/stops/Lagkink2"], ["https://tec.openplanner.team/stops/N509akb", "https://tec.openplanner.team/stops/N509bea"], ["https://tec.openplanner.team/stops/LGHplai1", "https://tec.openplanner.team/stops/X542aha"], ["https://tec.openplanner.team/stops/N301ama", "https://tec.openplanner.team/stops/N301ana"], ["https://tec.openplanner.team/stops/H4ld123b", "https://tec.openplanner.team/stops/H4ld126a"], ["https://tec.openplanner.team/stops/Bnstver1", "https://tec.openplanner.team/stops/H2mi122a"], ["https://tec.openplanner.team/stops/Lemarde1", "https://tec.openplanner.team/stops/Lemfort2"], ["https://tec.openplanner.team/stops/Lrofont1", "https://tec.openplanner.team/stops/Lrosaun1"], ["https://tec.openplanner.team/stops/LdEkreu1", "https://tec.openplanner.team/stops/LdEkreu2"], ["https://tec.openplanner.team/stops/X612aeb", "https://tec.openplanner.team/stops/X613ada"], ["https://tec.openplanner.team/stops/LBDfran1", "https://tec.openplanner.team/stops/LJEniho2"], ["https://tec.openplanner.team/stops/H1ch132a", "https://tec.openplanner.team/stops/H1ch132b"], ["https://tec.openplanner.team/stops/X926adb", "https://tec.openplanner.team/stops/X928aab"], ["https://tec.openplanner.team/stops/N147aab", "https://tec.openplanner.team/stops/N147abb"], ["https://tec.openplanner.team/stops/X806aea", "https://tec.openplanner.team/stops/X806afa"], ["https://tec.openplanner.team/stops/Lsmh1802", "https://tec.openplanner.team/stops/Lsmrcim1"], ["https://tec.openplanner.team/stops/LSGbail1", "https://tec.openplanner.team/stops/LSGcent1"], ["https://tec.openplanner.team/stops/LPbpl--1", "https://tec.openplanner.team/stops/LPbpl--2"], ["https://tec.openplanner.team/stops/X892aea", "https://tec.openplanner.team/stops/X892afb"], ["https://tec.openplanner.team/stops/H1ca100b", "https://tec.openplanner.team/stops/H1ca108b"], ["https://tec.openplanner.team/stops/N501ada", "https://tec.openplanner.team/stops/N502adb"], ["https://tec.openplanner.team/stops/X921ajb", "https://tec.openplanner.team/stops/X921ajd"], ["https://tec.openplanner.team/stops/N894aea", "https://tec.openplanner.team/stops/X891ada"], ["https://tec.openplanner.team/stops/H4la196b", "https://tec.openplanner.team/stops/H4la198d"], ["https://tec.openplanner.team/stops/X630aaa", "https://tec.openplanner.team/stops/X638aaa"], ["https://tec.openplanner.team/stops/H1so137b", "https://tec.openplanner.team/stops/H1so143b"], ["https://tec.openplanner.team/stops/H4bu108a", "https://tec.openplanner.team/stops/H4bu108b"], ["https://tec.openplanner.team/stops/H1ms247a", "https://tec.openplanner.team/stops/H1ms932a"], ["https://tec.openplanner.team/stops/N132aga", "https://tec.openplanner.team/stops/N132agb"], ["https://tec.openplanner.team/stops/X721asa", "https://tec.openplanner.team/stops/X786abb"], ["https://tec.openplanner.team/stops/Becepco1", "https://tec.openplanner.team/stops/Becepco2"], ["https://tec.openplanner.team/stops/X812ala", "https://tec.openplanner.team/stops/X812beb"], ["https://tec.openplanner.team/stops/X748aaa", "https://tec.openplanner.team/stops/X748abb"], ["https://tec.openplanner.team/stops/X640aja", "https://tec.openplanner.team/stops/X640ajb"], ["https://tec.openplanner.team/stops/Cthegli2", "https://tec.openplanner.team/stops/Cthrwai1"], ["https://tec.openplanner.team/stops/X658acb", "https://tec.openplanner.team/stops/X658adb"], ["https://tec.openplanner.team/stops/H4ta132b", "https://tec.openplanner.team/stops/H4ta133a"], ["https://tec.openplanner.team/stops/LSpbawe1", "https://tec.openplanner.team/stops/LSpcarr1"], ["https://tec.openplanner.team/stops/LDAcite1", "https://tec.openplanner.team/stops/LRIcite2"], ["https://tec.openplanner.team/stops/H4to138a", "https://tec.openplanner.team/stops/H4to138b"], ["https://tec.openplanner.team/stops/H4pl114b", "https://tec.openplanner.team/stops/H4pl136a"], ["https://tec.openplanner.team/stops/LNEcouc2", "https://tec.openplanner.team/stops/LNEgaul4"], ["https://tec.openplanner.team/stops/LAbbass1", "https://tec.openplanner.team/stops/LTechpl1"], ["https://tec.openplanner.team/stops/LbTweyn1", "https://tec.openplanner.team/stops/LbUmalm1"], ["https://tec.openplanner.team/stops/LAYcont1", "https://tec.openplanner.team/stops/LAYwerb1"], ["https://tec.openplanner.team/stops/Bhancre2", "https://tec.openplanner.team/stops/NL37acb"], ["https://tec.openplanner.team/stops/LSIgehe1", "https://tec.openplanner.team/stops/LSIgehe2"], ["https://tec.openplanner.team/stops/LReeg--1", "https://tec.openplanner.team/stops/LRemorr4"], ["https://tec.openplanner.team/stops/LCHgele1", "https://tec.openplanner.team/stops/LThpoli1"], ["https://tec.openplanner.team/stops/H2hp119d", "https://tec.openplanner.team/stops/H2jo163a"], ["https://tec.openplanner.team/stops/LmR50--2", "https://tec.openplanner.team/stops/LmRh%C3%B6fe1"], ["https://tec.openplanner.team/stops/LHTcarr1", "https://tec.openplanner.team/stops/LHTlieg1"], ["https://tec.openplanner.team/stops/LFUchpl1", "https://tec.openplanner.team/stops/LFUgare1"], ["https://tec.openplanner.team/stops/X601ava", "https://tec.openplanner.team/stops/X601cxa"], ["https://tec.openplanner.team/stops/N501csb", "https://tec.openplanner.team/stops/N501cub"], ["https://tec.openplanner.team/stops/H4ty299c", "https://tec.openplanner.team/stops/H4ty326b"], ["https://tec.openplanner.team/stops/X912aea", "https://tec.openplanner.team/stops/X912aeb"], ["https://tec.openplanner.team/stops/Llgmarc2", "https://tec.openplanner.team/stops/Llgvelb2"], ["https://tec.openplanner.team/stops/LFLetoi1", "https://tec.openplanner.team/stops/LSpshin2"], ["https://tec.openplanner.team/stops/X669afb", "https://tec.openplanner.team/stops/X669ahb"], ["https://tec.openplanner.team/stops/Cvrfema2", "https://tec.openplanner.team/stops/Cvrhab22"], ["https://tec.openplanner.team/stops/H5wo127b", "https://tec.openplanner.team/stops/H5wo129b"], ["https://tec.openplanner.team/stops/H5is168a", "https://tec.openplanner.team/stops/H5is171b"], ["https://tec.openplanner.team/stops/LLiforg2", "https://tec.openplanner.team/stops/LListie2"], ["https://tec.openplanner.team/stops/Bgrmpco1", "https://tec.openplanner.team/stops/N522ata"], ["https://tec.openplanner.team/stops/H4ty296b", "https://tec.openplanner.team/stops/H4ty314e"], ["https://tec.openplanner.team/stops/Llgplop1", "https://tec.openplanner.team/stops/Lvtchpl1"], ["https://tec.openplanner.team/stops/N244alb", "https://tec.openplanner.team/stops/N244aoa"], ["https://tec.openplanner.team/stops/Bgzdgpa1", "https://tec.openplanner.team/stops/Bgzdgpa2"], ["https://tec.openplanner.team/stops/X804aib", "https://tec.openplanner.team/stops/X804ajb"], ["https://tec.openplanner.team/stops/N543aaa", "https://tec.openplanner.team/stops/N543axb"], ["https://tec.openplanner.team/stops/Bjancha1", "https://tec.openplanner.team/stops/Bjaneco1"], ["https://tec.openplanner.team/stops/LFOchab2", "https://tec.openplanner.team/stops/LFOcomb4"], ["https://tec.openplanner.team/stops/X749aaa", "https://tec.openplanner.team/stops/X749abb"], ["https://tec.openplanner.team/stops/Livfays2", "https://tec.openplanner.team/stops/LRaplac1"], ["https://tec.openplanner.team/stops/Bwatmgo3", "https://tec.openplanner.team/stops/Bwatmgo4"], ["https://tec.openplanner.team/stops/LESoneu3", "https://tec.openplanner.team/stops/LESryon1"], ["https://tec.openplanner.team/stops/LSTamer2", "https://tec.openplanner.team/stops/LSTcomm2"], ["https://tec.openplanner.team/stops/H2hp119a", "https://tec.openplanner.team/stops/H2hp261a"], ["https://tec.openplanner.team/stops/LAMec--1", "https://tec.openplanner.team/stops/LAMgreg1"], ["https://tec.openplanner.team/stops/N304abb", "https://tec.openplanner.team/stops/N305acb"], ["https://tec.openplanner.team/stops/N505aja", "https://tec.openplanner.team/stops/N512awb"], ["https://tec.openplanner.team/stops/X817aaa", "https://tec.openplanner.team/stops/X820aia"], ["https://tec.openplanner.team/stops/Bsenpbi1", "https://tec.openplanner.team/stops/Bsenpbi2"], ["https://tec.openplanner.team/stops/X769aia", "https://tec.openplanner.team/stops/X769akb"], ["https://tec.openplanner.team/stops/N543bma", "https://tec.openplanner.team/stops/N543bnb"], ["https://tec.openplanner.team/stops/X736aaa", "https://tec.openplanner.team/stops/X736adb"], ["https://tec.openplanner.team/stops/Cjuchli4", "https://tec.openplanner.team/stops/Cjuhopi1"], ["https://tec.openplanner.team/stops/N501fba", "https://tec.openplanner.team/stops/N501fbz"], ["https://tec.openplanner.team/stops/Lflmc--2", "https://tec.openplanner.team/stops/Lflroms5"], ["https://tec.openplanner.team/stops/H4bd110b", "https://tec.openplanner.team/stops/H4te250b"], ["https://tec.openplanner.team/stops/LHMchev1", "https://tec.openplanner.team/stops/LHMthys2"], ["https://tec.openplanner.team/stops/N229afb", "https://tec.openplanner.team/stops/N241abb"], ["https://tec.openplanner.team/stops/N423aca", "https://tec.openplanner.team/stops/N423aea"], ["https://tec.openplanner.team/stops/X773ajb", "https://tec.openplanner.team/stops/X774aad"], ["https://tec.openplanner.team/stops/Ladpara1", "https://tec.openplanner.team/stops/Lvevert1"], ["https://tec.openplanner.team/stops/N301abd", "https://tec.openplanner.team/stops/N301apb"], ["https://tec.openplanner.team/stops/N514acb", "https://tec.openplanner.team/stops/N514aja"], ["https://tec.openplanner.team/stops/H4eg103a", "https://tec.openplanner.team/stops/H4eg106b"], ["https://tec.openplanner.team/stops/Cjubert1", "https://tec.openplanner.team/stops/Cjudelv3"], ["https://tec.openplanner.team/stops/Bwspbos2", "https://tec.openplanner.team/stops/Bwspm372"], ["https://tec.openplanner.team/stops/H4ta122b", "https://tec.openplanner.team/stops/H4ta131a"], ["https://tec.openplanner.team/stops/LATmonu2", "https://tec.openplanner.team/stops/LATphar1"], ["https://tec.openplanner.team/stops/Cgpplac1", "https://tec.openplanner.team/stops/Cgpplac2"], ["https://tec.openplanner.team/stops/LEBmoul1", "https://tec.openplanner.team/stops/LEBmoul2"], ["https://tec.openplanner.team/stops/Lmopast1", "https://tec.openplanner.team/stops/Lmopast2"], ["https://tec.openplanner.team/stops/X818ana", "https://tec.openplanner.team/stops/X818aob"], ["https://tec.openplanner.team/stops/Lhuferm1", "https://tec.openplanner.team/stops/Lhuferm2"], ["https://tec.openplanner.team/stops/LLM4rou2", "https://tec.openplanner.team/stops/LLM4rou3"], ["https://tec.openplanner.team/stops/Blsmbfe1", "https://tec.openplanner.team/stops/Bneervc1"], ["https://tec.openplanner.team/stops/X769aab", "https://tec.openplanner.team/stops/X769aqb"], ["https://tec.openplanner.team/stops/N501iba", "https://tec.openplanner.team/stops/N501ija"], ["https://tec.openplanner.team/stops/N534bwa", "https://tec.openplanner.team/stops/N534bya"], ["https://tec.openplanner.team/stops/N118ana", "https://tec.openplanner.team/stops/N118axb"], ["https://tec.openplanner.team/stops/LLrisa-*", "https://tec.openplanner.team/stops/LLrjeho1"], ["https://tec.openplanner.team/stops/N160aaa", "https://tec.openplanner.team/stops/N160afb"], ["https://tec.openplanner.team/stops/N116aaa", "https://tec.openplanner.team/stops/N116abb"], ["https://tec.openplanner.team/stops/Cprvill2", "https://tec.openplanner.team/stops/NC11ana"], ["https://tec.openplanner.team/stops/X614afa", "https://tec.openplanner.team/stops/X614afb"], ["https://tec.openplanner.team/stops/X640aka", "https://tec.openplanner.team/stops/X640akb"], ["https://tec.openplanner.team/stops/N542ada", "https://tec.openplanner.team/stops/N577afa"], ["https://tec.openplanner.team/stops/LWAlong3", "https://tec.openplanner.team/stops/LWAwegg2"], ["https://tec.openplanner.team/stops/Lagsauh1", "https://tec.openplanner.team/stops/Lagsauh2"], ["https://tec.openplanner.team/stops/N501cja", "https://tec.openplanner.team/stops/N501mpa"], ["https://tec.openplanner.team/stops/LON21--1", "https://tec.openplanner.team/stops/LON21--2"], ["https://tec.openplanner.team/stops/Ccuhsti2", "https://tec.openplanner.team/stops/Cpllimi4"], ["https://tec.openplanner.team/stops/N125aca", "https://tec.openplanner.team/stops/N134aga"], ["https://tec.openplanner.team/stops/X773ana", "https://tec.openplanner.team/stops/X773anb"], ["https://tec.openplanner.team/stops/X790aaa", "https://tec.openplanner.team/stops/X790anb"], ["https://tec.openplanner.team/stops/H2ec104a", "https://tec.openplanner.team/stops/H2me117a"], ["https://tec.openplanner.team/stops/X359afa", "https://tec.openplanner.team/stops/X359aga"], ["https://tec.openplanner.team/stops/H4wn129a", "https://tec.openplanner.team/stops/H4wn129b"], ["https://tec.openplanner.team/stops/X870aaa", "https://tec.openplanner.team/stops/X870aeb"], ["https://tec.openplanner.team/stops/X946aga", "https://tec.openplanner.team/stops/X946agb"], ["https://tec.openplanner.team/stops/N150agb", "https://tec.openplanner.team/stops/N150akb"], ["https://tec.openplanner.team/stops/LLrquar1", "https://tec.openplanner.team/stops/LTHcime2"], ["https://tec.openplanner.team/stops/LrDsage1", "https://tec.openplanner.team/stops/LrDschl1"], ["https://tec.openplanner.team/stops/N569alb", "https://tec.openplanner.team/stops/N569amb"], ["https://tec.openplanner.team/stops/Bjaupro1", "https://tec.openplanner.team/stops/Bjaurgo1"], ["https://tec.openplanner.team/stops/Brixbou1", "https://tec.openplanner.team/stops/Brixbou2"], ["https://tec.openplanner.team/stops/Ccipano1", "https://tec.openplanner.team/stops/Ccipano2"], ["https://tec.openplanner.team/stops/Lhrvert1", "https://tec.openplanner.team/stops/Lvtpata1"], ["https://tec.openplanner.team/stops/LPohoeg2", "https://tec.openplanner.team/stops/LPoxhav2"], ["https://tec.openplanner.team/stops/LWaatel1", "https://tec.openplanner.team/stops/LWaatel2"], ["https://tec.openplanner.team/stops/X763aaa", "https://tec.openplanner.team/stops/X763aab"], ["https://tec.openplanner.team/stops/Bplnbal1", "https://tec.openplanner.team/stops/Clpnapo2"], ["https://tec.openplanner.team/stops/H4mb203b", "https://tec.openplanner.team/stops/H4mb204b"], ["https://tec.openplanner.team/stops/Llgdepo1", "https://tec.openplanner.team/stops/Llgdepo2"], ["https://tec.openplanner.team/stops/H4er124a", "https://tec.openplanner.team/stops/H4sm247a"], ["https://tec.openplanner.team/stops/LhIkirc*", "https://tec.openplanner.team/stops/LmAgruf1"], ["https://tec.openplanner.team/stops/H1so133b", "https://tec.openplanner.team/stops/H1so146b"], ["https://tec.openplanner.team/stops/N529abb", "https://tec.openplanner.team/stops/N529aca"], ["https://tec.openplanner.team/stops/Lhrpost1", "https://tec.openplanner.team/stops/Llgcouv4"], ["https://tec.openplanner.team/stops/Lcepont1", "https://tec.openplanner.team/stops/Lcepont6"], ["https://tec.openplanner.team/stops/H4hn114a", "https://tec.openplanner.team/stops/H4jm118a"], ["https://tec.openplanner.team/stops/LmNlieb1", "https://tec.openplanner.team/stops/LmNlieb2"], ["https://tec.openplanner.team/stops/X601abb", "https://tec.openplanner.team/stops/X601btb"], ["https://tec.openplanner.team/stops/Buccbou1", "https://tec.openplanner.team/stops/Bucccal3"], ["https://tec.openplanner.team/stops/H1wi148c", "https://tec.openplanner.team/stops/H1wi152d"], ["https://tec.openplanner.team/stops/H4bs110a", "https://tec.openplanner.team/stops/H4bs110b"], ["https://tec.openplanner.team/stops/LETtemp1", "https://tec.openplanner.team/stops/Lremonu2"], ["https://tec.openplanner.team/stops/H1as102b", "https://tec.openplanner.team/stops/H1as154a"], ["https://tec.openplanner.team/stops/LOurena2", "https://tec.openplanner.team/stops/LVnflox2"], ["https://tec.openplanner.team/stops/N533aha", "https://tec.openplanner.team/stops/N551abb"], ["https://tec.openplanner.team/stops/X904aca", "https://tec.openplanner.team/stops/X904aea"], ["https://tec.openplanner.team/stops/H1te178a", "https://tec.openplanner.team/stops/H1te191b"], ["https://tec.openplanner.team/stops/X620aca", "https://tec.openplanner.team/stops/X620acb"], ["https://tec.openplanner.team/stops/X822aca", "https://tec.openplanner.team/stops/X822aqb"], ["https://tec.openplanner.team/stops/Crcfdom2", "https://tec.openplanner.team/stops/Csubosa1"], ["https://tec.openplanner.team/stops/N146aba", "https://tec.openplanner.team/stops/N146afa"], ["https://tec.openplanner.team/stops/Bglabra1", "https://tec.openplanner.team/stops/Cglbras1"], ["https://tec.openplanner.team/stops/N515apa", "https://tec.openplanner.team/stops/N515apb"], ["https://tec.openplanner.team/stops/X982bda", "https://tec.openplanner.team/stops/X982bkb"], ["https://tec.openplanner.team/stops/Cfohopi1", "https://tec.openplanner.team/stops/Cfovent1"], ["https://tec.openplanner.team/stops/H1do127b", "https://tec.openplanner.team/stops/H1do131d"], ["https://tec.openplanner.team/stops/LBYwez-1", "https://tec.openplanner.team/stops/Lgdstoc2"], ["https://tec.openplanner.team/stops/Ctyhame1", "https://tec.openplanner.team/stops/N137aja"], ["https://tec.openplanner.team/stops/Clibrun1", "https://tec.openplanner.team/stops/Cliburl1"], ["https://tec.openplanner.team/stops/LWHwaas1", "https://tec.openplanner.team/stops/LWscona1"], ["https://tec.openplanner.team/stops/NC14ama", "https://tec.openplanner.team/stops/NC14amb"], ["https://tec.openplanner.team/stops/Cdalpla1", "https://tec.openplanner.team/stops/Clomakr2"], ["https://tec.openplanner.team/stops/Cfomays1", "https://tec.openplanner.team/stops/Cgxchea1"], ["https://tec.openplanner.team/stops/LoUwelc2", "https://tec.openplanner.team/stops/LrUweve2"], ["https://tec.openplanner.team/stops/Bsomthi1", "https://tec.openplanner.team/stops/N584cba"], ["https://tec.openplanner.team/stops/Llgdelb1", "https://tec.openplanner.team/stops/Llgdelb2"], ["https://tec.openplanner.team/stops/H1hw125b", "https://tec.openplanner.team/stops/H1so141a"], ["https://tec.openplanner.team/stops/N507abb", "https://tec.openplanner.team/stops/N507alc"], ["https://tec.openplanner.team/stops/X882aia", "https://tec.openplanner.team/stops/X882ajb"], ["https://tec.openplanner.team/stops/LLrbano2", "https://tec.openplanner.team/stops/LLrbuis2"], ["https://tec.openplanner.team/stops/N548aha", "https://tec.openplanner.team/stops/N548ahb"], ["https://tec.openplanner.team/stops/N521aoa", "https://tec.openplanner.team/stops/N521aob"], ["https://tec.openplanner.team/stops/H1bo105a", "https://tec.openplanner.team/stops/H1bo111a"], ["https://tec.openplanner.team/stops/Bquecar2", "https://tec.openplanner.team/stops/Bquereb1"], ["https://tec.openplanner.team/stops/N229asa", "https://tec.openplanner.team/stops/N540ana"], ["https://tec.openplanner.team/stops/N501caa", "https://tec.openplanner.team/stops/N502ada"], ["https://tec.openplanner.team/stops/X829acb", "https://tec.openplanner.team/stops/X829aeb"], ["https://tec.openplanner.team/stops/X601bbd", "https://tec.openplanner.team/stops/X601bka"], ["https://tec.openplanner.team/stops/H1ni322a", "https://tec.openplanner.team/stops/H1ni323b"], ["https://tec.openplanner.team/stops/Bbrlmez1", "https://tec.openplanner.team/stops/Blkbbeu1"], ["https://tec.openplanner.team/stops/Lsepaqu2", "https://tec.openplanner.team/stops/Lseserv1"], ["https://tec.openplanner.team/stops/Ccpetan2", "https://tec.openplanner.team/stops/H2ca105b"], ["https://tec.openplanner.team/stops/Ljubruy2", "https://tec.openplanner.team/stops/Ljuvert2"], ["https://tec.openplanner.team/stops/Cflmarq1", "https://tec.openplanner.team/stops/Cflvxca2"], ["https://tec.openplanner.team/stops/LPLhest2", "https://tec.openplanner.team/stops/LPLhout1"], ["https://tec.openplanner.team/stops/Lmobols1", "https://tec.openplanner.team/stops/Lmobols2"], ["https://tec.openplanner.team/stops/LHEchar2", "https://tec.openplanner.team/stops/LHEpriv1"], ["https://tec.openplanner.team/stops/Cbmpano2", "https://tec.openplanner.team/stops/Cbmplac2"], ["https://tec.openplanner.team/stops/N520acb", "https://tec.openplanner.team/stops/N520ada"], ["https://tec.openplanner.team/stops/LOucarr1", "https://tec.openplanner.team/stops/LOucarr2"], ["https://tec.openplanner.team/stops/Bobacou1", "https://tec.openplanner.team/stops/Cobvill1"], ["https://tec.openplanner.team/stops/H4av100b", "https://tec.openplanner.team/stops/H4av107b"], ["https://tec.openplanner.team/stops/Ladxhen1", "https://tec.openplanner.team/stops/LHCcoul1"], ["https://tec.openplanner.team/stops/H4co108a", "https://tec.openplanner.team/stops/H4co133b"], ["https://tec.openplanner.team/stops/Chhlori1", "https://tec.openplanner.team/stops/Chhverr1"], ["https://tec.openplanner.team/stops/LOchalo2", "https://tec.openplanner.team/stops/NL35abb"], ["https://tec.openplanner.team/stops/LHggeer1", "https://tec.openplanner.team/stops/LHgpost1"], ["https://tec.openplanner.team/stops/X351aca", "https://tec.openplanner.team/stops/X351ada"], ["https://tec.openplanner.team/stops/Bblaast2", "https://tec.openplanner.team/stops/Bblagar6"], ["https://tec.openplanner.team/stops/N521aic", "https://tec.openplanner.team/stops/N521ama"], ["https://tec.openplanner.team/stops/X637ama", "https://tec.openplanner.team/stops/X637aoa"], ["https://tec.openplanner.team/stops/X986alb", "https://tec.openplanner.team/stops/X986alc"], ["https://tec.openplanner.team/stops/Lmolama1", "https://tec.openplanner.team/stops/Lmovand2"], ["https://tec.openplanner.team/stops/X717afa", "https://tec.openplanner.team/stops/X717afb"], ["https://tec.openplanner.team/stops/H2re166a", "https://tec.openplanner.team/stops/H3bi106b"], ["https://tec.openplanner.team/stops/LJAhanq1", "https://tec.openplanner.team/stops/LJAhanq2"], ["https://tec.openplanner.team/stops/X948aic", "https://tec.openplanner.team/stops/X948arb"], ["https://tec.openplanner.team/stops/X897axb", "https://tec.openplanner.team/stops/X992aga"], ["https://tec.openplanner.team/stops/Blimbet3", "https://tec.openplanner.team/stops/Blimd672"], ["https://tec.openplanner.team/stops/LON02--2", "https://tec.openplanner.team/stops/LWastei1"], ["https://tec.openplanner.team/stops/X747ada", "https://tec.openplanner.team/stops/X747ala"], ["https://tec.openplanner.team/stops/Cdamarc1", "https://tec.openplanner.team/stops/Cdaptca2"], ["https://tec.openplanner.team/stops/Chpceri2", "https://tec.openplanner.team/stops/Cwgtill1"], ["https://tec.openplanner.team/stops/N506ana", "https://tec.openplanner.team/stops/N506anb"], ["https://tec.openplanner.team/stops/Bnivath1", "https://tec.openplanner.team/stops/Bnivver1"], ["https://tec.openplanner.team/stops/Cmybefe2", "https://tec.openplanner.team/stops/Cmywarc2"], ["https://tec.openplanner.team/stops/NL76ala", "https://tec.openplanner.team/stops/NL76aqa"], ["https://tec.openplanner.team/stops/Cfocmed1", "https://tec.openplanner.team/stops/Cfocorn2"], ["https://tec.openplanner.team/stops/X825aab", "https://tec.openplanner.team/stops/X825abb"], ["https://tec.openplanner.team/stops/LsHkirc1", "https://tec.openplanner.team/stops/LsHthom2"], ["https://tec.openplanner.team/stops/H4og208b", "https://tec.openplanner.team/stops/H4og215a"], ["https://tec.openplanner.team/stops/H3so156b", "https://tec.openplanner.team/stops/H3so174b"], ["https://tec.openplanner.team/stops/Bbsthpl1", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/LSpcarr2", "https://tec.openplanner.team/stops/LSpvanr2"], ["https://tec.openplanner.team/stops/N522aub", "https://tec.openplanner.team/stops/N529aab"], ["https://tec.openplanner.team/stops/H4gr110a", "https://tec.openplanner.team/stops/H4gr112a"], ["https://tec.openplanner.team/stops/LBTcarr2", "https://tec.openplanner.team/stops/LBTnors2"], ["https://tec.openplanner.team/stops/Cfanvmo1", "https://tec.openplanner.team/stops/Cfawain1"], ["https://tec.openplanner.team/stops/X948aca", "https://tec.openplanner.team/stops/X948acb"], ["https://tec.openplanner.team/stops/X901blb", "https://tec.openplanner.team/stops/X901bmb"], ["https://tec.openplanner.team/stops/X608aba", "https://tec.openplanner.team/stops/X608aca"], ["https://tec.openplanner.team/stops/N573aab", "https://tec.openplanner.team/stops/N573aeb"], ["https://tec.openplanner.team/stops/H4wi166b", "https://tec.openplanner.team/stops/H4wi169a"], ["https://tec.openplanner.team/stops/LSTvaul1", "https://tec.openplanner.team/stops/LWneg--1"], ["https://tec.openplanner.team/stops/H1do130b", "https://tec.openplanner.team/stops/H1ho135a"], ["https://tec.openplanner.team/stops/N101apa", "https://tec.openplanner.team/stops/N151aaa"], ["https://tec.openplanner.team/stops/N542aba", "https://tec.openplanner.team/stops/N542aob"], ["https://tec.openplanner.team/stops/N531aha", "https://tec.openplanner.team/stops/N531aka"], ["https://tec.openplanner.team/stops/LRMn58-1", "https://tec.openplanner.team/stops/LSfcoll*"], ["https://tec.openplanner.team/stops/N544afb", "https://tec.openplanner.team/stops/N547aeb"], ["https://tec.openplanner.team/stops/X223acb", "https://tec.openplanner.team/stops/X979aja"], ["https://tec.openplanner.team/stops/LOunebl2", "https://tec.openplanner.team/stops/X261aba"], ["https://tec.openplanner.team/stops/X718aba", "https://tec.openplanner.team/stops/X718aca"], ["https://tec.openplanner.team/stops/X652aba", "https://tec.openplanner.team/stops/X652ada"], ["https://tec.openplanner.team/stops/Cchlefe2", "https://tec.openplanner.team/stops/Cchmott2"], ["https://tec.openplanner.team/stops/N117baa", "https://tec.openplanner.team/stops/N147aca"], ["https://tec.openplanner.team/stops/Llgcoll1", "https://tec.openplanner.team/stops/Llgcoti*"], ["https://tec.openplanner.team/stops/H1do115b", "https://tec.openplanner.team/stops/H1do122a"], ["https://tec.openplanner.team/stops/Cctpass2", "https://tec.openplanner.team/stops/Cctvand2"], ["https://tec.openplanner.team/stops/X609aib", "https://tec.openplanner.team/stops/X610aaa"], ["https://tec.openplanner.team/stops/N550afa", "https://tec.openplanner.team/stops/N550agb"], ["https://tec.openplanner.team/stops/Lsemara2", "https://tec.openplanner.team/stops/Lsepuit2"], ["https://tec.openplanner.team/stops/Lthfren1", "https://tec.openplanner.team/stops/Lthfren2"], ["https://tec.openplanner.team/stops/Bvxgegl1", "https://tec.openplanner.team/stops/Bvxgeta1"], ["https://tec.openplanner.team/stops/LBslama1", "https://tec.openplanner.team/stops/NL73aeb"], ["https://tec.openplanner.team/stops/Lhelait2", "https://tec.openplanner.team/stops/Lheneuv2"], ["https://tec.openplanner.team/stops/LmDdenk2", "https://tec.openplanner.team/stops/LwLkirc2"], ["https://tec.openplanner.team/stops/Cflglav1", "https://tec.openplanner.team/stops/Cwgcroi1"], ["https://tec.openplanner.team/stops/X663ada", "https://tec.openplanner.team/stops/X663aoa"], ["https://tec.openplanner.team/stops/H1he102a", "https://tec.openplanner.team/stops/H1mh116a"], ["https://tec.openplanner.team/stops/H1ha201a", "https://tec.openplanner.team/stops/H1ms282a"], ["https://tec.openplanner.team/stops/Lanpont2", "https://tec.openplanner.team/stops/Lmolagu1"], ["https://tec.openplanner.team/stops/N501aja", "https://tec.openplanner.team/stops/N501anb"], ["https://tec.openplanner.team/stops/N351axa", "https://tec.openplanner.team/stops/X349aaa"], ["https://tec.openplanner.team/stops/Barqpwa1", "https://tec.openplanner.team/stops/Barqres1"], ["https://tec.openplanner.team/stops/Cmafafe1", "https://tec.openplanner.team/stops/Cmmbsit1"], ["https://tec.openplanner.team/stops/Ladfran3", "https://tec.openplanner.team/stops/Lvegrap2"], ["https://tec.openplanner.team/stops/H1on128b", "https://tec.openplanner.team/stops/H1on128d"], ["https://tec.openplanner.team/stops/N554aab", "https://tec.openplanner.team/stops/N554aba"], ["https://tec.openplanner.team/stops/Cchtiro4", "https://tec.openplanner.team/stops/CMtirou1"], ["https://tec.openplanner.team/stops/N150afb", "https://tec.openplanner.team/stops/N150aib"], ["https://tec.openplanner.team/stops/LARparc2", "https://tec.openplanner.team/stops/LRIcent1"], ["https://tec.openplanner.team/stops/X871aca", "https://tec.openplanner.team/stops/X871acb"], ["https://tec.openplanner.team/stops/LVNleco1", "https://tec.openplanner.team/stops/LVNroua1"], ["https://tec.openplanner.team/stops/Lghcfer1", "https://tec.openplanner.team/stops/Lghvold1"], ["https://tec.openplanner.team/stops/N562aca", "https://tec.openplanner.team/stops/N562bkb"], ["https://tec.openplanner.team/stops/N261ahb", "https://tec.openplanner.team/stops/N337aib"], ["https://tec.openplanner.team/stops/LSseg--1", "https://tec.openplanner.team/stops/LSsmond1"], ["https://tec.openplanner.team/stops/Lmaelhe2", "https://tec.openplanner.team/stops/Lmagara1"], ["https://tec.openplanner.team/stops/LHUgare*", "https://tec.openplanner.team/stops/LHUlebo2"], ["https://tec.openplanner.team/stops/LFTeg--1", "https://tec.openplanner.team/stops/LWZponh1"], ["https://tec.openplanner.team/stops/N124aab", "https://tec.openplanner.team/stops/N124aac"], ["https://tec.openplanner.team/stops/N507ama", "https://tec.openplanner.team/stops/N507amb"], ["https://tec.openplanner.team/stops/CMpige1", "https://tec.openplanner.team/stops/CMpige2"], ["https://tec.openplanner.team/stops/X639aib", "https://tec.openplanner.team/stops/X639ajb"], ["https://tec.openplanner.team/stops/LAUberg1", "https://tec.openplanner.team/stops/LAUcose1"], ["https://tec.openplanner.team/stops/H1ms287a", "https://tec.openplanner.team/stops/H1ms925a"], ["https://tec.openplanner.team/stops/H1ba117a", "https://tec.openplanner.team/stops/H1te174a"], ["https://tec.openplanner.team/stops/H4ru240b", "https://tec.openplanner.team/stops/H4ty275a"], ["https://tec.openplanner.team/stops/X725aba", "https://tec.openplanner.team/stops/X725abb"], ["https://tec.openplanner.team/stops/X750adb", "https://tec.openplanner.team/stops/X750aea"], ["https://tec.openplanner.team/stops/Bramcom1", "https://tec.openplanner.team/stops/Bramrdf1"], ["https://tec.openplanner.team/stops/Bnivpla1", "https://tec.openplanner.team/stops/Bnivpso1"], ["https://tec.openplanner.team/stops/LTamoul1", "https://tec.openplanner.team/stops/LTamoul2"], ["https://tec.openplanner.team/stops/Cgocalv4", "https://tec.openplanner.team/stops/CMcalv2"], ["https://tec.openplanner.team/stops/H2sb238a", "https://tec.openplanner.team/stops/H2sb271a"], ["https://tec.openplanner.team/stops/N581aaa", "https://tec.openplanner.team/stops/N581aca"], ["https://tec.openplanner.team/stops/Blhurcl1", "https://tec.openplanner.team/stops/Bovevnd2"], ["https://tec.openplanner.team/stops/LTgchar7", "https://tec.openplanner.team/stops/LTgwarf1"], ["https://tec.openplanner.team/stops/LETsaiv1", "https://tec.openplanner.team/stops/LETtemp2"], ["https://tec.openplanner.team/stops/H4hg154a", "https://tec.openplanner.team/stops/H4hg157b"], ["https://tec.openplanner.team/stops/LVIpneu2", "https://tec.openplanner.team/stops/LVIsouv3"], ["https://tec.openplanner.team/stops/Ctaphaz1", "https://tec.openplanner.team/stops/N543bkb"], ["https://tec.openplanner.team/stops/Cmlclos1", "https://tec.openplanner.team/stops/Cmmbsit1"], ["https://tec.openplanner.team/stops/X661abb", "https://tec.openplanner.team/stops/X839aca"], ["https://tec.openplanner.team/stops/Bblamsj2", "https://tec.openplanner.team/stops/Bblarbe1"], ["https://tec.openplanner.team/stops/N509aga", "https://tec.openplanner.team/stops/N510adb"], ["https://tec.openplanner.team/stops/LXobaty1", "https://tec.openplanner.team/stops/X599afd"], ["https://tec.openplanner.team/stops/N351aua", "https://tec.openplanner.team/stops/N351ava"], ["https://tec.openplanner.team/stops/X757agb", "https://tec.openplanner.team/stops/X757aia"], ["https://tec.openplanner.team/stops/N349aia", "https://tec.openplanner.team/stops/X349aab"], ["https://tec.openplanner.team/stops/LlOdrei1", "https://tec.openplanner.team/stops/LlOkreu1"], ["https://tec.openplanner.team/stops/N244ara", "https://tec.openplanner.team/stops/N244aub"], ["https://tec.openplanner.team/stops/LBkcare*", "https://tec.openplanner.team/stops/LBkcarr1"], ["https://tec.openplanner.team/stops/H1hy127a", "https://tec.openplanner.team/stops/H1hy129a"], ["https://tec.openplanner.team/stops/N573aqa", "https://tec.openplanner.team/stops/N573ara"], ["https://tec.openplanner.team/stops/H4ff117b", "https://tec.openplanner.team/stops/H4mb143c"], ["https://tec.openplanner.team/stops/Llggerm1", "https://tec.openplanner.team/stops/Llggerm2"], ["https://tec.openplanner.team/stops/LTIdumo2", "https://tec.openplanner.team/stops/LTIpire2"], ["https://tec.openplanner.team/stops/Lrecroi1", "https://tec.openplanner.team/stops/Lrecroi2"], ["https://tec.openplanner.team/stops/X897apa", "https://tec.openplanner.team/stops/X898aha"], ["https://tec.openplanner.team/stops/LbTdoma1", "https://tec.openplanner.team/stops/LbUmors1"], ["https://tec.openplanner.team/stops/X850agb", "https://tec.openplanner.team/stops/X850amb"], ["https://tec.openplanner.team/stops/LrOgara2", "https://tec.openplanner.team/stops/LrOkirc2"], ["https://tec.openplanner.team/stops/N501ahb", "https://tec.openplanner.team/stops/N501eob"], ["https://tec.openplanner.team/stops/N501anb", "https://tec.openplanner.team/stops/N501bfz"], ["https://tec.openplanner.team/stops/Cjuathe1", "https://tec.openplanner.team/stops/Cjuathe2"], ["https://tec.openplanner.team/stops/N301aaa", "https://tec.openplanner.team/stops/N340aib"], ["https://tec.openplanner.team/stops/N118agb", "https://tec.openplanner.team/stops/N118axb"], ["https://tec.openplanner.team/stops/LFChuis1", "https://tec.openplanner.team/stops/LFChuis2"], ["https://tec.openplanner.team/stops/X897aic", "https://tec.openplanner.team/stops/X897alc"], ["https://tec.openplanner.team/stops/H4eh104a", "https://tec.openplanner.team/stops/H4eh104b"], ["https://tec.openplanner.team/stops/H2ec101a", "https://tec.openplanner.team/stops/H2ec110b"], ["https://tec.openplanner.team/stops/N117aua", "https://tec.openplanner.team/stops/N117bcb"], ["https://tec.openplanner.team/stops/Lbhbalt1", "https://tec.openplanner.team/stops/Lrolecl1"], ["https://tec.openplanner.team/stops/H1hc125a", "https://tec.openplanner.team/stops/H1hc151b"], ["https://tec.openplanner.team/stops/Bhaless2", "https://tec.openplanner.team/stops/Bhalvel2"], ["https://tec.openplanner.team/stops/Lwaaube1", "https://tec.openplanner.team/stops/Lwaaube2"], ["https://tec.openplanner.team/stops/Bbch4br1", "https://tec.openplanner.team/stops/Bbchpil1"], ["https://tec.openplanner.team/stops/Bolppla1", "https://tec.openplanner.team/stops/Bolppla4"], ["https://tec.openplanner.team/stops/LFypont1", "https://tec.openplanner.team/stops/LFyWarc2"], ["https://tec.openplanner.team/stops/LVttarg1", "https://tec.openplanner.team/stops/LVtvalu1"], ["https://tec.openplanner.team/stops/N547ahb", "https://tec.openplanner.team/stops/N547aia"], ["https://tec.openplanner.team/stops/X641aqb", "https://tec.openplanner.team/stops/X641aza"], ["https://tec.openplanner.team/stops/LFOchab1", "https://tec.openplanner.team/stops/LFOmc--1"], ["https://tec.openplanner.team/stops/H1gq153a", "https://tec.openplanner.team/stops/H1sy138a"], ["https://tec.openplanner.team/stops/Caicalv1", "https://tec.openplanner.team/stops/Caircen1"], ["https://tec.openplanner.team/stops/LDOdavi2", "https://tec.openplanner.team/stops/LDOjose1"], ["https://tec.openplanner.team/stops/Bplnfpa2", "https://tec.openplanner.team/stops/Bwatmgo3"], ["https://tec.openplanner.team/stops/H5el101a", "https://tec.openplanner.team/stops/H5el107b"], ["https://tec.openplanner.team/stops/H1ms307a", "https://tec.openplanner.team/stops/H1ms915b"], ["https://tec.openplanner.team/stops/N153adb", "https://tec.openplanner.team/stops/N153aeb"], ["https://tec.openplanner.team/stops/H4wn125b", "https://tec.openplanner.team/stops/H4wn126a"], ["https://tec.openplanner.team/stops/LHDlibi1", "https://tec.openplanner.team/stops/LHDmc--2"], ["https://tec.openplanner.team/stops/Bnivfle2", "https://tec.openplanner.team/stops/Bnivpeu1"], ["https://tec.openplanner.team/stops/LhElont1", "https://tec.openplanner.team/stops/LhElont3"], ["https://tec.openplanner.team/stops/X788abc", "https://tec.openplanner.team/stops/X788abe"], ["https://tec.openplanner.team/stops/H4ff122b", "https://tec.openplanner.team/stops/H4pp123b"], ["https://tec.openplanner.team/stops/H1gy115b", "https://tec.openplanner.team/stops/H1gy116a"], ["https://tec.openplanner.team/stops/X911aea", "https://tec.openplanner.team/stops/X911aeb"], ["https://tec.openplanner.team/stops/H2pe156b", "https://tec.openplanner.team/stops/H2pe157a"], ["https://tec.openplanner.team/stops/H4do102a", "https://tec.openplanner.team/stops/H4do107d"], ["https://tec.openplanner.team/stops/Cmacart3", "https://tec.openplanner.team/stops/CMcart1"], ["https://tec.openplanner.team/stops/Lmldama1", "https://tec.openplanner.team/stops/Lmlprie1"], ["https://tec.openplanner.team/stops/H2ch102b", "https://tec.openplanner.team/stops/H2ch109b"], ["https://tec.openplanner.team/stops/Bhlvlou1", "https://tec.openplanner.team/stops/Blpglon1"], ["https://tec.openplanner.team/stops/Bcsen251", "https://tec.openplanner.team/stops/Bcsen252"], ["https://tec.openplanner.team/stops/LBIcarg1", "https://tec.openplanner.team/stops/Lmlcrot3"], ["https://tec.openplanner.team/stops/Cfvplac2", "https://tec.openplanner.team/stops/H1fv102b"], ["https://tec.openplanner.team/stops/N518acd", "https://tec.openplanner.team/stops/N520ahb"], ["https://tec.openplanner.team/stops/N234aea", "https://tec.openplanner.team/stops/N549aib"], ["https://tec.openplanner.team/stops/N529aea", "https://tec.openplanner.team/stops/N529afb"], ["https://tec.openplanner.team/stops/H4mt219a", "https://tec.openplanner.team/stops/H4mt221b"], ["https://tec.openplanner.team/stops/H4ty381a", "https://tec.openplanner.team/stops/H4ty381b"], ["https://tec.openplanner.team/stops/H1ms259a", "https://tec.openplanner.team/stops/H1ms298a"], ["https://tec.openplanner.team/stops/Bottcli3", "https://tec.openplanner.team/stops/Bottra91"], ["https://tec.openplanner.team/stops/N528abb", "https://tec.openplanner.team/stops/N528arc"], ["https://tec.openplanner.team/stops/H4bh104b", "https://tec.openplanner.team/stops/H4lp123a"], ["https://tec.openplanner.team/stops/N501jga", "https://tec.openplanner.team/stops/N521aca"], ["https://tec.openplanner.team/stops/LVEcacq1", "https://tec.openplanner.team/stops/LVEphar1"], ["https://tec.openplanner.team/stops/N528aja", "https://tec.openplanner.team/stops/N528aka"], ["https://tec.openplanner.team/stops/Cfachap2", "https://tec.openplanner.team/stops/Cfamonu1"], ["https://tec.openplanner.team/stops/LbOhoff2", "https://tec.openplanner.team/stops/LmD163-1"], ["https://tec.openplanner.team/stops/X607aaa", "https://tec.openplanner.team/stops/X607aab"], ["https://tec.openplanner.team/stops/LMAalli2", "https://tec.openplanner.team/stops/LMAstei1"], ["https://tec.openplanner.team/stops/Lvitomb1", "https://tec.openplanner.team/stops/Lvitomb2"], ["https://tec.openplanner.team/stops/H4mo186a", "https://tec.openplanner.team/stops/H4mo188a"], ["https://tec.openplanner.team/stops/N532aaa", "https://tec.openplanner.team/stops/N574aaa"], ["https://tec.openplanner.team/stops/N562blb", "https://tec.openplanner.team/stops/N562bmb"], ["https://tec.openplanner.team/stops/H1ho128b", "https://tec.openplanner.team/stops/H1ho140b"], ["https://tec.openplanner.team/stops/X609alb", "https://tec.openplanner.team/stops/X609amb"], ["https://tec.openplanner.team/stops/N211ana", "https://tec.openplanner.team/stops/N211ara"], ["https://tec.openplanner.team/stops/Bclgbvi1", "https://tec.openplanner.team/stops/Bclgmev2"], ["https://tec.openplanner.team/stops/N228aab", "https://tec.openplanner.team/stops/N260adb"], ["https://tec.openplanner.team/stops/LScdina1", "https://tec.openplanner.team/stops/LVTforg2"], ["https://tec.openplanner.team/stops/H4mo159a", "https://tec.openplanner.team/stops/H4mo159b"], ["https://tec.openplanner.team/stops/N355abb", "https://tec.openplanner.team/stops/N355aca"], ["https://tec.openplanner.team/stops/N577aka", "https://tec.openplanner.team/stops/N578aaa"], ["https://tec.openplanner.team/stops/LHHpt--1", "https://tec.openplanner.team/stops/LHHpt--3"], ["https://tec.openplanner.team/stops/H3th126b", "https://tec.openplanner.team/stops/H3th130a"], ["https://tec.openplanner.team/stops/X754ara", "https://tec.openplanner.team/stops/X754asa"], ["https://tec.openplanner.team/stops/LTHjevo1", "https://tec.openplanner.team/stops/LTHperr3"], ["https://tec.openplanner.team/stops/LHFcaqu2", "https://tec.openplanner.team/stops/LHFec--2"], ["https://tec.openplanner.team/stops/N503aba", "https://tec.openplanner.team/stops/N509bfa"], ["https://tec.openplanner.team/stops/Cdamarc2", "https://tec.openplanner.team/stops/Cdaptca2"], ["https://tec.openplanner.team/stops/N234adb", "https://tec.openplanner.team/stops/N243ada"], ["https://tec.openplanner.team/stops/N343aoa", "https://tec.openplanner.team/stops/N350ada"], ["https://tec.openplanner.team/stops/Bgrhche1", "https://tec.openplanner.team/stops/Bgrhpos2"], ["https://tec.openplanner.team/stops/Cjuaero1", "https://tec.openplanner.team/stops/Cjudaxi1"], ["https://tec.openplanner.team/stops/H4hn113b", "https://tec.openplanner.team/stops/H4pe127b"], ["https://tec.openplanner.team/stops/H2an110a", "https://tec.openplanner.team/stops/H2ca105b"], ["https://tec.openplanner.team/stops/NL68aaa", "https://tec.openplanner.team/stops/NL68aac"], ["https://tec.openplanner.team/stops/LBTxhen4", "https://tec.openplanner.team/stops/LHEbeau1"], ["https://tec.openplanner.team/stops/Bvirduj1", "https://tec.openplanner.team/stops/Bvirrbo1"], ["https://tec.openplanner.team/stops/N501ela", "https://tec.openplanner.team/stops/N501era"], ["https://tec.openplanner.team/stops/N509ajb", "https://tec.openplanner.team/stops/N509ana"], ["https://tec.openplanner.team/stops/LTPlegr1", "https://tec.openplanner.team/stops/LTPlegr2"], ["https://tec.openplanner.team/stops/Cjxegli1", "https://tec.openplanner.team/stops/Cjxetri1"], ["https://tec.openplanner.team/stops/Cmqbasv1", "https://tec.openplanner.team/stops/Cmqbasv2"], ["https://tec.openplanner.team/stops/Brebgar1", "https://tec.openplanner.team/stops/Brebraf1"], ["https://tec.openplanner.team/stops/Lpoprie1", "https://tec.openplanner.team/stops/Lpoprie2"], ["https://tec.openplanner.team/stops/Blhueca1", "https://tec.openplanner.team/stops/Blhupa14"], ["https://tec.openplanner.team/stops/N509afa", "https://tec.openplanner.team/stops/N509afb"], ["https://tec.openplanner.team/stops/X614asa", "https://tec.openplanner.team/stops/X614atb"], ["https://tec.openplanner.team/stops/N544ada", "https://tec.openplanner.team/stops/N552aab"], ["https://tec.openplanner.team/stops/H1do125a", "https://tec.openplanner.team/stops/H1do131c"], ["https://tec.openplanner.team/stops/X812acb", "https://tec.openplanner.team/stops/X812beb"], ["https://tec.openplanner.team/stops/LBLvici2", "https://tec.openplanner.team/stops/LBLwaid2"], ["https://tec.openplanner.team/stops/N516aca", "https://tec.openplanner.team/stops/N516adb"], ["https://tec.openplanner.team/stops/Blhufro1", "https://tec.openplanner.team/stops/Blhuibm2"], ["https://tec.openplanner.team/stops/H1po132b", "https://tec.openplanner.team/stops/H1po135a"], ["https://tec.openplanner.team/stops/Cgzblob2", "https://tec.openplanner.team/stops/Cthenmi1"], ["https://tec.openplanner.team/stops/X927aba", "https://tec.openplanner.team/stops/X927abb"], ["https://tec.openplanner.team/stops/H4ef111b", "https://tec.openplanner.team/stops/H4po127b"], ["https://tec.openplanner.team/stops/Lligara2", "https://tec.openplanner.team/stops/Lvoeg--2"], ["https://tec.openplanner.team/stops/Lvcchau1", "https://tec.openplanner.team/stops/Lvcchev3"], ["https://tec.openplanner.team/stops/Caccarr2", "https://tec.openplanner.team/stops/NC24aja"], ["https://tec.openplanner.team/stops/H2ll172d", "https://tec.openplanner.team/stops/H2ll183a"], ["https://tec.openplanner.team/stops/H4ty332a", "https://tec.openplanner.team/stops/H4ty338a"], ["https://tec.openplanner.team/stops/X744ada", "https://tec.openplanner.team/stops/X744aeb"], ["https://tec.openplanner.team/stops/LtEnatu1", "https://tec.openplanner.team/stops/LtEnatu2"], ["https://tec.openplanner.team/stops/H2lc168a", "https://tec.openplanner.team/stops/H2lc168b"], ["https://tec.openplanner.team/stops/N215aca", "https://tec.openplanner.team/stops/N215acd"], ["https://tec.openplanner.team/stops/Bjdspon1", "https://tec.openplanner.team/stops/Bjdspon2"], ["https://tec.openplanner.team/stops/X801bpa", "https://tec.openplanner.team/stops/X801bqa"], ["https://tec.openplanner.team/stops/Cgyhstj2", "https://tec.openplanner.team/stops/Cgyobse1"], ["https://tec.openplanner.team/stops/X742aea", "https://tec.openplanner.team/stops/X742afb"], ["https://tec.openplanner.team/stops/Bnstlna1", "https://tec.openplanner.team/stops/Bnstlna2"], ["https://tec.openplanner.team/stops/H1gg145a", "https://tec.openplanner.team/stops/H1ry134b"], ["https://tec.openplanner.team/stops/LBBpech1", "https://tec.openplanner.team/stops/LLvgare2"], ["https://tec.openplanner.team/stops/X941aha", "https://tec.openplanner.team/stops/X942agb"], ["https://tec.openplanner.team/stops/LBahome1", "https://tec.openplanner.team/stops/LBapeup1"], ["https://tec.openplanner.team/stops/Llglonh1", "https://tec.openplanner.team/stops/LlgPTAV2"], ["https://tec.openplanner.team/stops/Lagpass1", "https://tec.openplanner.team/stops/Lempass2"], ["https://tec.openplanner.team/stops/N534asa", "https://tec.openplanner.team/stops/N534asb"], ["https://tec.openplanner.team/stops/Cmaduna1", "https://tec.openplanner.team/stops/Cmychap1"], ["https://tec.openplanner.team/stops/Brsggde2", "https://tec.openplanner.team/stops/Bwbfckr1"], ["https://tec.openplanner.team/stops/N229ahb", "https://tec.openplanner.team/stops/N229aob"], ["https://tec.openplanner.team/stops/LmTkirc2", "https://tec.openplanner.team/stops/LmTschi2"], ["https://tec.openplanner.team/stops/LBOande1", "https://tec.openplanner.team/stops/LWRbomb2"], ["https://tec.openplanner.team/stops/H4lz127a", "https://tec.openplanner.team/stops/H4wp150b"], ["https://tec.openplanner.team/stops/Bitrpar2", "https://tec.openplanner.team/stops/Bronpfe2"], ["https://tec.openplanner.team/stops/Bsaumlp1", "https://tec.openplanner.team/stops/Bsaumlp2"], ["https://tec.openplanner.team/stops/Lheloti1", "https://tec.openplanner.team/stops/Lheloti2"], ["https://tec.openplanner.team/stops/N229ada", "https://tec.openplanner.team/stops/N229aqb"], ["https://tec.openplanner.team/stops/N151aha", "https://tec.openplanner.team/stops/N151akb"], ["https://tec.openplanner.team/stops/LrUoudl1", "https://tec.openplanner.team/stops/LrUoudl2"], ["https://tec.openplanner.team/stops/Btanpla2", "https://tec.openplanner.team/stops/Btanpla3"], ["https://tec.openplanner.team/stops/LJSec--1", "https://tec.openplanner.team/stops/LJSeg--1"], ["https://tec.openplanner.team/stops/H2re166a", "https://tec.openplanner.team/stops/H2re168a"], ["https://tec.openplanner.team/stops/Cnathib2", "https://tec.openplanner.team/stops/Cnawari1"], ["https://tec.openplanner.team/stops/LkEbran1", "https://tec.openplanner.team/stops/LkEsouf2"], ["https://tec.openplanner.team/stops/LLAcalv1", "https://tec.openplanner.team/stops/LMgwith2"], ["https://tec.openplanner.team/stops/X666aja", "https://tec.openplanner.team/stops/X666ala"], ["https://tec.openplanner.team/stops/LFEhoup1", "https://tec.openplanner.team/stops/LRMeg--2"], ["https://tec.openplanner.team/stops/Llabriq2", "https://tec.openplanner.team/stops/Lvovent1"], ["https://tec.openplanner.team/stops/Cdaviol1", "https://tec.openplanner.team/stops/Cmarroy2"], ["https://tec.openplanner.team/stops/Cjuathe2", "https://tec.openplanner.team/stops/Cjufour3"], ["https://tec.openplanner.team/stops/N501eda", "https://tec.openplanner.team/stops/N501gdb"], ["https://tec.openplanner.team/stops/X670ala", "https://tec.openplanner.team/stops/X670alb"], ["https://tec.openplanner.team/stops/Clvchar2", "https://tec.openplanner.team/stops/Clvmesa2"], ["https://tec.openplanner.team/stops/H1ms296b", "https://tec.openplanner.team/stops/H1ms296c"], ["https://tec.openplanner.team/stops/H1mb125a", "https://tec.openplanner.team/stops/H1mb129a"], ["https://tec.openplanner.team/stops/N506aka", "https://tec.openplanner.team/stops/N506akb"], ["https://tec.openplanner.team/stops/Llgcont1", "https://tec.openplanner.team/stops/Llgdart2"], ["https://tec.openplanner.team/stops/Bbcolno1", "https://tec.openplanner.team/stops/Bbcolno2"], ["https://tec.openplanner.team/stops/LwAkape2", "https://tec.openplanner.team/stops/LwAkett2"], ["https://tec.openplanner.team/stops/H1he100a", "https://tec.openplanner.team/stops/H1mh116a"], ["https://tec.openplanner.team/stops/H4ca122b", "https://tec.openplanner.team/stops/H5pe139a"], ["https://tec.openplanner.team/stops/N557aab", "https://tec.openplanner.team/stops/N557aha"], ["https://tec.openplanner.team/stops/Bdvmc032", "https://tec.openplanner.team/stops/Bdvmsar1"], ["https://tec.openplanner.team/stops/X901adb", "https://tec.openplanner.team/stops/X901ata"], ["https://tec.openplanner.team/stops/LArchap1", "https://tec.openplanner.team/stops/X548acb"], ["https://tec.openplanner.team/stops/Bbxlmid1", "https://tec.openplanner.team/stops/Bucccre1"], ["https://tec.openplanner.team/stops/Cerrver4", "https://tec.openplanner.team/stops/Cvrchap1"], ["https://tec.openplanner.team/stops/N513azb", "https://tec.openplanner.team/stops/N516adb"], ["https://tec.openplanner.team/stops/X837adb", "https://tec.openplanner.team/stops/X837aea"], ["https://tec.openplanner.team/stops/H4ev124a", "https://tec.openplanner.team/stops/H4ev124b"], ["https://tec.openplanner.team/stops/LMEense1", "https://tec.openplanner.team/stops/LMEense2"], ["https://tec.openplanner.team/stops/X822aqa", "https://tec.openplanner.team/stops/X822aqb"], ["https://tec.openplanner.team/stops/LLbbons1", "https://tec.openplanner.team/stops/LRchaie2"], ["https://tec.openplanner.team/stops/Bllnlen2", "https://tec.openplanner.team/stops/Bmsgaxp1"], ["https://tec.openplanner.team/stops/NL57aia", "https://tec.openplanner.team/stops/NL57amb"], ["https://tec.openplanner.team/stops/H1pa100a", "https://tec.openplanner.team/stops/H1wa159a"], ["https://tec.openplanner.team/stops/X713acb", "https://tec.openplanner.team/stops/X713ajc"], ["https://tec.openplanner.team/stops/LWDeg--2", "https://tec.openplanner.team/stops/LWDplac1"], ["https://tec.openplanner.team/stops/LjeGRPMA", "https://tec.openplanner.team/stops/LjeGRPME"], ["https://tec.openplanner.team/stops/H4bo121b", "https://tec.openplanner.team/stops/H4bo182b"], ["https://tec.openplanner.team/stops/Cmehame1", "https://tec.openplanner.team/stops/Cmeptmi6"], ["https://tec.openplanner.team/stops/X623aba", "https://tec.openplanner.team/stops/X623aca"], ["https://tec.openplanner.team/stops/Llmdavi1", "https://tec.openplanner.team/stops/Llmhalt1"], ["https://tec.openplanner.team/stops/X899aba", "https://tec.openplanner.team/stops/X899afb"], ["https://tec.openplanner.team/stops/X641aua", "https://tec.openplanner.team/stops/X641aub"], ["https://tec.openplanner.team/stops/Cauglac1", "https://tec.openplanner.team/stops/Cauglac2"], ["https://tec.openplanner.team/stops/LBichen2", "https://tec.openplanner.team/stops/LBiroch2"], ["https://tec.openplanner.team/stops/X602aib", "https://tec.openplanner.team/stops/X602aqb"], ["https://tec.openplanner.team/stops/X897aab", "https://tec.openplanner.team/stops/X897apb"], ["https://tec.openplanner.team/stops/LDAchau1", "https://tec.openplanner.team/stops/LDAwich1"], ["https://tec.openplanner.team/stops/Lhrtilm1", "https://tec.openplanner.team/stops/Ljuauto2"], ["https://tec.openplanner.team/stops/LOTsav-2", "https://tec.openplanner.team/stops/LOTsava1"], ["https://tec.openplanner.team/stops/X837aba", "https://tec.openplanner.team/stops/X837abb"], ["https://tec.openplanner.team/stops/NL68aea", "https://tec.openplanner.team/stops/NL68agb"], ["https://tec.openplanner.team/stops/X801aia", "https://tec.openplanner.team/stops/X801boa"], ["https://tec.openplanner.team/stops/N501kuc", "https://tec.openplanner.team/stops/N501lib"], ["https://tec.openplanner.team/stops/Cgyobse2", "https://tec.openplanner.team/stops/Cgyrjau2"], ["https://tec.openplanner.team/stops/Ccu6bra3", "https://tec.openplanner.team/stops/Ccutrav2"], ["https://tec.openplanner.team/stops/Lsnlhon2", "https://tec.openplanner.team/stops/Lsnvand3"], ["https://tec.openplanner.team/stops/X837aha", "https://tec.openplanner.team/stops/X837ahb"], ["https://tec.openplanner.team/stops/X869aea", "https://tec.openplanner.team/stops/X873aaa"], ["https://tec.openplanner.team/stops/Lchacie2", "https://tec.openplanner.team/stops/Lhrabho1"], ["https://tec.openplanner.team/stops/N136aea", "https://tec.openplanner.team/stops/N136aeb"], ["https://tec.openplanner.team/stops/LMAbruy1", "https://tec.openplanner.team/stops/LMAbruy2"], ["https://tec.openplanner.team/stops/Cmymaco1", "https://tec.openplanner.team/stops/Cmymaco2"], ["https://tec.openplanner.team/stops/Lmnmart1", "https://tec.openplanner.team/stops/Lsmjalh2"], ["https://tec.openplanner.team/stops/X789ahc", "https://tec.openplanner.team/stops/X789ahd"], ["https://tec.openplanner.team/stops/Cjxpris2", "https://tec.openplanner.team/stops/Cjxthom1"], ["https://tec.openplanner.team/stops/Bblamer1", "https://tec.openplanner.team/stops/Bblamer2"], ["https://tec.openplanner.team/stops/H1gg114a", "https://tec.openplanner.team/stops/H1gg117a"], ["https://tec.openplanner.team/stops/H4he103b", "https://tec.openplanner.team/stops/H4pq118a"], ["https://tec.openplanner.team/stops/H4am101b", "https://tec.openplanner.team/stops/H4am113a"], ["https://tec.openplanner.team/stops/Lcacasi2", "https://tec.openplanner.team/stops/Lvcbasi*"], ["https://tec.openplanner.team/stops/Bflccav2", "https://tec.openplanner.team/stops/Bflcpco1"], ["https://tec.openplanner.team/stops/Ccipano2", "https://tec.openplanner.team/stops/Ccivill2"], ["https://tec.openplanner.team/stops/Clggrfe1", "https://tec.openplanner.team/stops/Clgpavi2"], ["https://tec.openplanner.team/stops/Bwav4sa1", "https://tec.openplanner.team/stops/Bwavlca1"], ["https://tec.openplanner.team/stops/Lflterm1", "https://tec.openplanner.team/stops/Lflterm2"], ["https://tec.openplanner.team/stops/LLrc_ip3", "https://tec.openplanner.team/stops/LLrc1651"], ["https://tec.openplanner.team/stops/Lhueg--1", "https://tec.openplanner.team/stops/Lhueg--2"], ["https://tec.openplanner.team/stops/H1je223a", "https://tec.openplanner.team/stops/H1je365a"], ["https://tec.openplanner.team/stops/Cstdona3", "https://tec.openplanner.team/stops/Cstdona5"], ["https://tec.openplanner.team/stops/LWOplat1", "https://tec.openplanner.team/stops/LWOplat2"], ["https://tec.openplanner.team/stops/X734aja", "https://tec.openplanner.team/stops/X775aaa"], ["https://tec.openplanner.team/stops/Llghlau2", "https://tec.openplanner.team/stops/Llgmass2"], ["https://tec.openplanner.team/stops/Cgoetun1", "https://tec.openplanner.team/stops/CMfbru2"], ["https://tec.openplanner.team/stops/X983aca", "https://tec.openplanner.team/stops/X983aga"], ["https://tec.openplanner.team/stops/Cmlasie2", "https://tec.openplanner.team/stops/Cmlstni2"], ["https://tec.openplanner.team/stops/Cprbevu2", "https://tec.openplanner.team/stops/NC11anb"], ["https://tec.openplanner.team/stops/Lmofays1", "https://tec.openplanner.team/stops/Lmolama1"], ["https://tec.openplanner.team/stops/LnDdorf1", "https://tec.openplanner.team/stops/LnDrund1"], ["https://tec.openplanner.team/stops/LMOlens1", "https://tec.openplanner.team/stops/LMOlens3"], ["https://tec.openplanner.team/stops/Cciqueu2", "https://tec.openplanner.team/stops/NC02ava"], ["https://tec.openplanner.team/stops/Bbchmai1", "https://tec.openplanner.team/stops/Bbchmai2"], ["https://tec.openplanner.team/stops/H4ea127a", "https://tec.openplanner.team/stops/H4ea134b"], ["https://tec.openplanner.team/stops/Cmaplas3", "https://tec.openplanner.team/stops/Cromonn2"], ["https://tec.openplanner.team/stops/LeUhaas1", "https://tec.openplanner.team/stops/LeUmalm2"], ["https://tec.openplanner.team/stops/LAUcent2", "https://tec.openplanner.team/stops/LAUneuv5"], ["https://tec.openplanner.team/stops/LBVronx1", "https://tec.openplanner.team/stops/LBVzand2"], ["https://tec.openplanner.team/stops/Lsmh1801", "https://tec.openplanner.team/stops/Lsmrcim1"], ["https://tec.openplanner.team/stops/Bheneco1", "https://tec.openplanner.team/stops/Bhenron1"], ["https://tec.openplanner.team/stops/Llgcfra1", "https://tec.openplanner.team/stops/Llgreyn1"], ["https://tec.openplanner.team/stops/LVbstre1", "https://tec.openplanner.team/stops/LVbstre2"], ["https://tec.openplanner.team/stops/Lbocorn1", "https://tec.openplanner.team/stops/Lbocorn2"], ["https://tec.openplanner.team/stops/Lrccime3", "https://tec.openplanner.team/stops/Lrchero2"], ["https://tec.openplanner.team/stops/N423aaa", "https://tec.openplanner.team/stops/N423aba"], ["https://tec.openplanner.team/stops/Lveanne1", "https://tec.openplanner.team/stops/Lvewall2"], ["https://tec.openplanner.team/stops/LBAbooz2", "https://tec.openplanner.team/stops/LBAcere1"], ["https://tec.openplanner.team/stops/Caibino1", "https://tec.openplanner.team/stops/Cairous2"], ["https://tec.openplanner.team/stops/Llglys-1", "https://tec.openplanner.team/stops/Llgoeil1"], ["https://tec.openplanner.team/stops/N514aab", "https://tec.openplanner.team/stops/N514afa"], ["https://tec.openplanner.team/stops/X695aja", "https://tec.openplanner.team/stops/X695aka"], ["https://tec.openplanner.team/stops/H2fy123b", "https://tec.openplanner.team/stops/H2fy123c"], ["https://tec.openplanner.team/stops/Bsaumlk1", "https://tec.openplanner.team/stops/Bwlhcsr2"], ["https://tec.openplanner.team/stops/Cgdfras1", "https://tec.openplanner.team/stops/Csyplac2"], ["https://tec.openplanner.team/stops/LVBcarr1", "https://tec.openplanner.team/stops/LVBdela1"], ["https://tec.openplanner.team/stops/H4ka178a", "https://tec.openplanner.team/stops/H4ru243b"], ["https://tec.openplanner.team/stops/LTNmont2", "https://tec.openplanner.team/stops/LTNsarl2"], ["https://tec.openplanner.team/stops/LbUhuge2", "https://tec.openplanner.team/stops/LhObull2"], ["https://tec.openplanner.team/stops/Bchadpt1", "https://tec.openplanner.team/stops/Bwlhppg2"], ["https://tec.openplanner.team/stops/N351atb", "https://tec.openplanner.team/stops/X358afa"], ["https://tec.openplanner.team/stops/H2ma202a", "https://tec.openplanner.team/stops/H2ma264a"], ["https://tec.openplanner.team/stops/X992aaa", "https://tec.openplanner.team/stops/X993aga"], ["https://tec.openplanner.team/stops/LhEbruc1", "https://tec.openplanner.team/stops/LWEgend1"], ["https://tec.openplanner.team/stops/LCF1spa1", "https://tec.openplanner.team/stops/LVnrock1"], ["https://tec.openplanner.team/stops/LTPlegr2", "https://tec.openplanner.team/stops/LTPpres1"], ["https://tec.openplanner.team/stops/LNAanne2", "https://tec.openplanner.team/stops/LNAdemo1"], ["https://tec.openplanner.team/stops/LHUlebe5", "https://tec.openplanner.team/stops/LHUlebe9"], ["https://tec.openplanner.team/stops/LBPmili1", "https://tec.openplanner.team/stops/LBPunic2"], ["https://tec.openplanner.team/stops/Lprmana1", "https://tec.openplanner.team/stops/Lprmana3"], ["https://tec.openplanner.team/stops/H1pa112a", "https://tec.openplanner.team/stops/H1pa118a"], ["https://tec.openplanner.team/stops/X725arb", "https://tec.openplanner.team/stops/X725ava"], ["https://tec.openplanner.team/stops/LhRkirc1", "https://tec.openplanner.team/stops/LhRwere1"], ["https://tec.openplanner.team/stops/Cmlbruy1", "https://tec.openplanner.team/stops/Cmmpjou2"], ["https://tec.openplanner.team/stops/LeYmuhl2", "https://tec.openplanner.team/stops/LhSfrep1"], ["https://tec.openplanner.team/stops/H4hx114a", "https://tec.openplanner.team/stops/H4hx117b"], ["https://tec.openplanner.team/stops/Cclbarb2", "https://tec.openplanner.team/stops/Cclplac2"], ["https://tec.openplanner.team/stops/Lseaite2", "https://tec.openplanner.team/stops/Lsehaut2"], ["https://tec.openplanner.team/stops/Bcsegar1", "https://tec.openplanner.team/stops/Bcsemon1"], ["https://tec.openplanner.team/stops/Brsgera2", "https://tec.openplanner.team/stops/Brsgleq2"], ["https://tec.openplanner.team/stops/Llgcour1", "https://tec.openplanner.team/stops/Llgoutr2"], ["https://tec.openplanner.team/stops/LSZeg--1", "https://tec.openplanner.team/stops/LTgcime2"], ["https://tec.openplanner.team/stops/Bgnpgar1", "https://tec.openplanner.team/stops/Cgnbast1"], ["https://tec.openplanner.team/stops/LTicime2", "https://tec.openplanner.team/stops/LTiec--2"], ["https://tec.openplanner.team/stops/H1lm105b", "https://tec.openplanner.team/stops/H1lm107b"], ["https://tec.openplanner.team/stops/H1mj132a", "https://tec.openplanner.team/stops/H1mj132b"], ["https://tec.openplanner.team/stops/X713afa", "https://tec.openplanner.team/stops/X713afb"], ["https://tec.openplanner.team/stops/X663aeb", "https://tec.openplanner.team/stops/X663agb"], ["https://tec.openplanner.team/stops/Lgdmaye1", "https://tec.openplanner.team/stops/Lgdmaye2"], ["https://tec.openplanner.team/stops/N141aib", "https://tec.openplanner.team/stops/N143ada"], ["https://tec.openplanner.team/stops/N243aab", "https://tec.openplanner.team/stops/N251aba"], ["https://tec.openplanner.team/stops/X664aic", "https://tec.openplanner.team/stops/X664atb"], ["https://tec.openplanner.team/stops/H3so160a", "https://tec.openplanner.team/stops/H3so160b"], ["https://tec.openplanner.team/stops/N501bfb", "https://tec.openplanner.team/stops/N501hsy"], ["https://tec.openplanner.team/stops/H5qu144b", "https://tec.openplanner.team/stops/H5qu152b"], ["https://tec.openplanner.team/stops/H4ce100b", "https://tec.openplanner.team/stops/H4ce105a"], ["https://tec.openplanner.team/stops/X733aib", "https://tec.openplanner.team/stops/X733ajb"], ["https://tec.openplanner.team/stops/H4ty267a", "https://tec.openplanner.team/stops/H4ty287b"], ["https://tec.openplanner.team/stops/X717aea", "https://tec.openplanner.team/stops/X782apa"], ["https://tec.openplanner.team/stops/LEScarr2", "https://tec.openplanner.team/stops/LEScham1"], ["https://tec.openplanner.team/stops/LBDcarr2", "https://tec.openplanner.team/stops/LVEbors2"], ["https://tec.openplanner.team/stops/X822aea", "https://tec.openplanner.team/stops/X822aka"], ["https://tec.openplanner.team/stops/LmDelek2", "https://tec.openplanner.team/stops/LwEdorf1"], ["https://tec.openplanner.team/stops/LBIcabi2", "https://tec.openplanner.team/stops/LBIpont1"], ["https://tec.openplanner.team/stops/LAyabri1", "https://tec.openplanner.team/stops/LAyheid1"], ["https://tec.openplanner.team/stops/LWenouv1", "https://tec.openplanner.team/stops/LWevand1"], ["https://tec.openplanner.team/stops/H5wo126a", "https://tec.openplanner.team/stops/H5wo126b"], ["https://tec.openplanner.team/stops/N501dca", "https://tec.openplanner.team/stops/N501dcb"], ["https://tec.openplanner.team/stops/X661aea", "https://tec.openplanner.team/stops/X661afa"], ["https://tec.openplanner.team/stops/H4do103a", "https://tec.openplanner.team/stops/H4ev124b"], ["https://tec.openplanner.team/stops/LgHdorf1", "https://tec.openplanner.team/stops/LnUneun2"], ["https://tec.openplanner.team/stops/N353ada", "https://tec.openplanner.team/stops/N353aha"], ["https://tec.openplanner.team/stops/Cbecarr2", "https://tec.openplanner.team/stops/Ccspla"], ["https://tec.openplanner.team/stops/H4gz115a", "https://tec.openplanner.team/stops/H4th139a"], ["https://tec.openplanner.team/stops/Loureno1", "https://tec.openplanner.team/stops/Lsttech1"], ["https://tec.openplanner.team/stops/Canrobe2", "https://tec.openplanner.team/stops/Canrsta2"], ["https://tec.openplanner.team/stops/Bnivga21", "https://tec.openplanner.team/stops/Bnivga22"], ["https://tec.openplanner.team/stops/H4ch115b", "https://tec.openplanner.team/stops/H4ty324c"], ["https://tec.openplanner.team/stops/X921ada", "https://tec.openplanner.team/stops/X921adb"], ["https://tec.openplanner.team/stops/LROrtba1", "https://tec.openplanner.team/stops/LROrtba2"], ["https://tec.openplanner.team/stops/N202aea", "https://tec.openplanner.team/stops/N202aec"], ["https://tec.openplanner.team/stops/Livgera2", "https://tec.openplanner.team/stops/Livgera5"], ["https://tec.openplanner.team/stops/LVMborl1", "https://tec.openplanner.team/stops/LVMcent2"], ["https://tec.openplanner.team/stops/LmRkreu2", "https://tec.openplanner.team/stops/LmRkreu4"], ["https://tec.openplanner.team/stops/LVEjard2", "https://tec.openplanner.team/stops/LVEstat1"], ["https://tec.openplanner.team/stops/LAmab752", "https://tec.openplanner.team/stops/LATguis1"], ["https://tec.openplanner.team/stops/H1te175b", "https://tec.openplanner.team/stops/H1te198a"], ["https://tec.openplanner.team/stops/N501ehb", "https://tec.openplanner.team/stops/N501kkb"], ["https://tec.openplanner.team/stops/X626aja", "https://tec.openplanner.team/stops/X688aba"], ["https://tec.openplanner.team/stops/Brebhos1", "https://tec.openplanner.team/stops/Brebvic2"], ["https://tec.openplanner.team/stops/LPohoeg1", "https://tec.openplanner.team/stops/LPoneuf1"], ["https://tec.openplanner.team/stops/Cgrlorm2", "https://tec.openplanner.team/stops/Cjochap1"], ["https://tec.openplanner.team/stops/H4to133a", "https://tec.openplanner.team/stops/H4to136a"], ["https://tec.openplanner.team/stops/X636ana", "https://tec.openplanner.team/stops/X636anb"], ["https://tec.openplanner.team/stops/LeLzost1", "https://tec.openplanner.team/stops/LeLzost2"], ["https://tec.openplanner.team/stops/LENchem2", "https://tec.openplanner.team/stops/LENtour2"], ["https://tec.openplanner.team/stops/LrcarsT2", "https://tec.openplanner.team/stops/LrcarsT3"], ["https://tec.openplanner.team/stops/H2fy119b", "https://tec.openplanner.team/stops/H2fy122a"], ["https://tec.openplanner.team/stops/LNAbass2", "https://tec.openplanner.team/stops/LSSvill2"], ["https://tec.openplanner.team/stops/N533aaa", "https://tec.openplanner.team/stops/N533aca"], ["https://tec.openplanner.team/stops/H4gu106b", "https://tec.openplanner.team/stops/H4gu111a"], ["https://tec.openplanner.team/stops/N135aka", "https://tec.openplanner.team/stops/N135ata"], ["https://tec.openplanner.team/stops/Cauglac1", "https://tec.openplanner.team/stops/Cvsduve2"], ["https://tec.openplanner.team/stops/X623acc", "https://tec.openplanner.team/stops/X623aja"], ["https://tec.openplanner.team/stops/H1bo105b", "https://tec.openplanner.team/stops/H1bo111a"], ["https://tec.openplanner.team/stops/Lkinyst2", "https://tec.openplanner.team/stops/Lstchas1"], ["https://tec.openplanner.team/stops/N501mez", "https://tec.openplanner.team/stops/N501mkb"], ["https://tec.openplanner.team/stops/X952aja", "https://tec.openplanner.team/stops/X952akb"], ["https://tec.openplanner.team/stops/H2sv259a", "https://tec.openplanner.team/stops/H2sv259b"], ["https://tec.openplanner.team/stops/H4bv145c", "https://tec.openplanner.team/stops/H4re226b"], ["https://tec.openplanner.team/stops/H4ar101b", "https://tec.openplanner.team/stops/H4ar103b"], ["https://tec.openplanner.team/stops/LJAfawe1", "https://tec.openplanner.team/stops/LJAfawe2"], ["https://tec.openplanner.team/stops/X897agb", "https://tec.openplanner.team/stops/X897awa"], ["https://tec.openplanner.team/stops/X630adb", "https://tec.openplanner.team/stops/X631ada"], ["https://tec.openplanner.team/stops/Croheig2", "https://tec.openplanner.team/stops/Crowall2"], ["https://tec.openplanner.team/stops/N522ata", "https://tec.openplanner.team/stops/N522atb"], ["https://tec.openplanner.team/stops/H4es117b", "https://tec.openplanner.team/stops/H4ev118a"], ["https://tec.openplanner.team/stops/LWEcomp1", "https://tec.openplanner.team/stops/LWEfati1"], ["https://tec.openplanner.team/stops/Clacast2", "https://tec.openplanner.team/stops/Clafaub2"], ["https://tec.openplanner.team/stops/Bzluqga1", "https://tec.openplanner.team/stops/Bzluqga2"], ["https://tec.openplanner.team/stops/N145ada", "https://tec.openplanner.team/stops/N145adb"], ["https://tec.openplanner.team/stops/Lheente2", "https://tec.openplanner.team/stops/Lheterm*"], ["https://tec.openplanner.team/stops/Blasbh51", "https://tec.openplanner.team/stops/Blasbh52"], ["https://tec.openplanner.team/stops/Cmachau2", "https://tec.openplanner.team/stops/CMprov2"], ["https://tec.openplanner.team/stops/Crolach2", "https://tec.openplanner.team/stops/Cronova1"], ["https://tec.openplanner.team/stops/N383abb", "https://tec.openplanner.team/stops/N383afb"], ["https://tec.openplanner.team/stops/X877aga", "https://tec.openplanner.team/stops/X989aga"], ["https://tec.openplanner.team/stops/Bovejme1", "https://tec.openplanner.team/stops/Bovejme2"], ["https://tec.openplanner.team/stops/N425aga", "https://tec.openplanner.team/stops/N425agb"], ["https://tec.openplanner.team/stops/LPctrog1", "https://tec.openplanner.team/stops/LPctrog2"], ["https://tec.openplanner.team/stops/X747aab", "https://tec.openplanner.team/stops/X747acb"], ["https://tec.openplanner.team/stops/Bbgnton1", "https://tec.openplanner.team/stops/N530aea"], ["https://tec.openplanner.team/stops/X911ana", "https://tec.openplanner.team/stops/X912aaa"], ["https://tec.openplanner.team/stops/LkTdorf2", "https://tec.openplanner.team/stops/LkTtal-1"], ["https://tec.openplanner.team/stops/N347aga", "https://tec.openplanner.team/stops/N347agb"], ["https://tec.openplanner.team/stops/Cgrgend1", "https://tec.openplanner.team/stops/Cgrgend2"], ["https://tec.openplanner.team/stops/Bincfer2", "https://tec.openplanner.team/stops/Brxmcha2"], ["https://tec.openplanner.team/stops/Lmoboeu3", "https://tec.openplanner.team/stops/Lmogoff2"], ["https://tec.openplanner.team/stops/Cjuhopi2", "https://tec.openplanner.team/stops/CMmade1"], ["https://tec.openplanner.team/stops/Bgzdgpa2", "https://tec.openplanner.team/stops/Bpecdel2"], ["https://tec.openplanner.team/stops/Bitrgnt1", "https://tec.openplanner.team/stops/Bitrpsr2"], ["https://tec.openplanner.team/stops/Lcegeor2", "https://tec.openplanner.team/stops/Lvcecol1"], ["https://tec.openplanner.team/stops/LHUtrin1", "https://tec.openplanner.team/stops/NL77aja"], ["https://tec.openplanner.team/stops/LHCbran2", "https://tec.openplanner.team/stops/LHCruyf2"], ["https://tec.openplanner.team/stops/LHovach1", "https://tec.openplanner.team/stops/LHovill1"], ["https://tec.openplanner.team/stops/LlNsc651", "https://tec.openplanner.team/stops/LlNsc652"], ["https://tec.openplanner.team/stops/X826aab", "https://tec.openplanner.team/stops/X826afb"], ["https://tec.openplanner.team/stops/LWNcham2", "https://tec.openplanner.team/stops/LWNchar1"], ["https://tec.openplanner.team/stops/N309aab", "https://tec.openplanner.team/stops/N313aca"], ["https://tec.openplanner.team/stops/H1ch103b", "https://tec.openplanner.team/stops/H1ch105b"], ["https://tec.openplanner.team/stops/Lagjard2", "https://tec.openplanner.team/stops/Lagresi2"], ["https://tec.openplanner.team/stops/N531aoa", "https://tec.openplanner.team/stops/N531aob"], ["https://tec.openplanner.team/stops/N543cka", "https://tec.openplanner.team/stops/N543ckb"], ["https://tec.openplanner.team/stops/N539aga", "https://tec.openplanner.team/stops/N539aqb"], ["https://tec.openplanner.team/stops/X804boa", "https://tec.openplanner.team/stops/X804bob"], ["https://tec.openplanner.team/stops/Bwatfva1", "https://tec.openplanner.team/stops/Bwatfva2"], ["https://tec.openplanner.team/stops/LBkcarr1", "https://tec.openplanner.team/stops/LBkcarr2"], ["https://tec.openplanner.team/stops/X723ana", "https://tec.openplanner.team/stops/X723anb"], ["https://tec.openplanner.team/stops/H4ne139a", "https://tec.openplanner.team/stops/H4te249a"], ["https://tec.openplanner.team/stops/N539avb", "https://tec.openplanner.team/stops/N539awa"], ["https://tec.openplanner.team/stops/Bbcopre1", "https://tec.openplanner.team/stops/Bbcopre2"], ["https://tec.openplanner.team/stops/Cbetrie1", "https://tec.openplanner.team/stops/N137aja"], ["https://tec.openplanner.team/stops/X641aqb", "https://tec.openplanner.team/stops/X823aab"], ["https://tec.openplanner.team/stops/Blaneli1", "https://tec.openplanner.team/stops/Blanove1"], ["https://tec.openplanner.team/stops/H4pq120a", "https://tec.openplanner.team/stops/H4pq120b"], ["https://tec.openplanner.team/stops/H1vh137a", "https://tec.openplanner.team/stops/H3bo102b"], ["https://tec.openplanner.team/stops/LGMhadr2", "https://tec.openplanner.team/stops/LTRespe2"], ["https://tec.openplanner.team/stops/X766acb", "https://tec.openplanner.team/stops/X768alc"], ["https://tec.openplanner.team/stops/H1je212a", "https://tec.openplanner.team/stops/H1je218b"], ["https://tec.openplanner.team/stops/Bwatfon1", "https://tec.openplanner.team/stops/Bwatran1"], ["https://tec.openplanner.team/stops/LHNtill1", "https://tec.openplanner.team/stops/LHNwaut1"], ["https://tec.openplanner.team/stops/N501gba", "https://tec.openplanner.team/stops/N528aha"], ["https://tec.openplanner.team/stops/Clb4bra1", "https://tec.openplanner.team/stops/Clbchlo2"], ["https://tec.openplanner.team/stops/X747ahb", "https://tec.openplanner.team/stops/X747aja"], ["https://tec.openplanner.team/stops/LAicarr1", "https://tec.openplanner.team/stops/LAivill1"], ["https://tec.openplanner.team/stops/Cfcpla2", "https://tec.openplanner.team/stops/Cfcrdpr1"], ["https://tec.openplanner.team/stops/N222aya", "https://tec.openplanner.team/stops/N222ayb"], ["https://tec.openplanner.team/stops/Lsefore2", "https://tec.openplanner.team/stops/Lsevill2"], ["https://tec.openplanner.team/stops/H5rx112a", "https://tec.openplanner.team/stops/H5rx112b"], ["https://tec.openplanner.team/stops/Lghviad1", "https://tec.openplanner.team/stops/Ljejoli1"], ["https://tec.openplanner.team/stops/Bhevjal1", "https://tec.openplanner.team/stops/Bhevjal2"], ["https://tec.openplanner.team/stops/H1so137a", "https://tec.openplanner.team/stops/H1so137b"], ["https://tec.openplanner.team/stops/LCseg--1", "https://tec.openplanner.team/stops/LCseg--2"], ["https://tec.openplanner.team/stops/H1em104a", "https://tec.openplanner.team/stops/H1em111c"], ["https://tec.openplanner.team/stops/H1gi154b", "https://tec.openplanner.team/stops/H1hg179b"], ["https://tec.openplanner.team/stops/X634aia", "https://tec.openplanner.team/stops/X634akb"], ["https://tec.openplanner.team/stops/N531asb", "https://tec.openplanner.team/stops/N531asc"], ["https://tec.openplanner.team/stops/Ccogrha1", "https://tec.openplanner.team/stops/Ccogrha2"], ["https://tec.openplanner.team/stops/X850aga", "https://tec.openplanner.team/stops/X850agb"], ["https://tec.openplanner.team/stops/X922acb", "https://tec.openplanner.team/stops/X922aka"], ["https://tec.openplanner.team/stops/LVkchap2", "https://tec.openplanner.team/stops/LVkinst1"], ["https://tec.openplanner.team/stops/LAWaube2", "https://tec.openplanner.team/stops/LAWvold1"], ["https://tec.openplanner.team/stops/N117baa", "https://tec.openplanner.team/stops/N571akb"], ["https://tec.openplanner.team/stops/X721aqa", "https://tec.openplanner.team/stops/X721ara"], ["https://tec.openplanner.team/stops/X782aka", "https://tec.openplanner.team/stops/X782amb"], ["https://tec.openplanner.team/stops/N501bva", "https://tec.openplanner.team/stops/N501bvb"], ["https://tec.openplanner.team/stops/Cfvombo1", "https://tec.openplanner.team/stops/Clfmonu2"], ["https://tec.openplanner.team/stops/Cjufour3", "https://tec.openplanner.team/stops/Cjufour4"], ["https://tec.openplanner.team/stops/X802aba", "https://tec.openplanner.team/stops/X802aeb"], ["https://tec.openplanner.team/stops/N229aeb", "https://tec.openplanner.team/stops/N229afb"], ["https://tec.openplanner.team/stops/H4ga164a", "https://tec.openplanner.team/stops/H4vz371a"], ["https://tec.openplanner.team/stops/N501jaa", "https://tec.openplanner.team/stops/N501jab"], ["https://tec.openplanner.team/stops/Cflstan1", "https://tec.openplanner.team/stops/NC12adb"], ["https://tec.openplanner.team/stops/H1ne148a", "https://tec.openplanner.team/stops/H1ne148b"], ["https://tec.openplanner.team/stops/X938aeb", "https://tec.openplanner.team/stops/X950aca"], ["https://tec.openplanner.team/stops/Brixga11", "https://tec.openplanner.team/stops/Brixpla1"], ["https://tec.openplanner.team/stops/X725ahb", "https://tec.openplanner.team/stops/X738aea"], ["https://tec.openplanner.team/stops/LWMcent2", "https://tec.openplanner.team/stops/LWMchpl2"], ["https://tec.openplanner.team/stops/Beclaub2", "https://tec.openplanner.team/stops/Beclpla2"], ["https://tec.openplanner.team/stops/Cjupoly2", "https://tec.openplanner.team/stops/CMmade1"], ["https://tec.openplanner.team/stops/N536abb", "https://tec.openplanner.team/stops/N536adb"], ["https://tec.openplanner.team/stops/H1au101a", "https://tec.openplanner.team/stops/H1au101b"], ["https://tec.openplanner.team/stops/Lvewall1", "https://tec.openplanner.team/stops/Lvewall2"], ["https://tec.openplanner.team/stops/Lmlcite*", "https://tec.openplanner.team/stops/Lmlmich2"], ["https://tec.openplanner.team/stops/N309aaa", "https://tec.openplanner.team/stops/N309aac"], ["https://tec.openplanner.team/stops/H1hr128b", "https://tec.openplanner.team/stops/H1hr128d"], ["https://tec.openplanner.team/stops/LBichat2", "https://tec.openplanner.team/stops/LBivi--2"], ["https://tec.openplanner.team/stops/H4ru241b", "https://tec.openplanner.team/stops/H4wc373b"], ["https://tec.openplanner.team/stops/Lenabat2", "https://tec.openplanner.team/stops/Llmdavi1"], ["https://tec.openplanner.team/stops/Llgborn2", "https://tec.openplanner.team/stops/Llgchat1"], ["https://tec.openplanner.team/stops/LaMhe831", "https://tec.openplanner.team/stops/LaMwies1"], ["https://tec.openplanner.team/stops/Cjumade4", "https://tec.openplanner.team/stops/CMcarr1"], ["https://tec.openplanner.team/stops/H1ni315b", "https://tec.openplanner.team/stops/H1ni321a"], ["https://tec.openplanner.team/stops/LmUkape2", "https://tec.openplanner.team/stops/LmUvilz2"], ["https://tec.openplanner.team/stops/Lagorch1", "https://tec.openplanner.team/stops/Lsteg--2"], ["https://tec.openplanner.team/stops/H1tl121a", "https://tec.openplanner.team/stops/H1tl122b"], ["https://tec.openplanner.team/stops/N501etd", "https://tec.openplanner.team/stops/N501etz"], ["https://tec.openplanner.team/stops/LHOmc--1", "https://tec.openplanner.team/stops/LHOmc--2"], ["https://tec.openplanner.team/stops/H1he101a", "https://tec.openplanner.team/stops/H1he106a"], ["https://tec.openplanner.team/stops/LrUbrac1", "https://tec.openplanner.team/stops/LrUbrac3"], ["https://tec.openplanner.team/stops/Cchdagn1", "https://tec.openplanner.team/stops/Cchoues3"], ["https://tec.openplanner.team/stops/X771aaa", "https://tec.openplanner.team/stops/X773aaa"], ["https://tec.openplanner.team/stops/N390amb", "https://tec.openplanner.team/stops/X358aba"], ["https://tec.openplanner.team/stops/X767aca", "https://tec.openplanner.team/stops/X767ada"], ["https://tec.openplanner.team/stops/X809aab", "https://tec.openplanner.team/stops/X857aba"], ["https://tec.openplanner.team/stops/H3lr109a", "https://tec.openplanner.team/stops/H3lr109c"], ["https://tec.openplanner.team/stops/X774aad", "https://tec.openplanner.team/stops/X774abb"], ["https://tec.openplanner.team/stops/X307aca", "https://tec.openplanner.team/stops/X316aca"], ["https://tec.openplanner.team/stops/Llgjenn3", "https://tec.openplanner.team/stops/Llgrame1"], ["https://tec.openplanner.team/stops/Lvtbocl2", "https://tec.openplanner.team/stops/Lvtlomb4"], ["https://tec.openplanner.team/stops/X763afa", "https://tec.openplanner.team/stops/X763aga"], ["https://tec.openplanner.team/stops/H1fl134a", "https://tec.openplanner.team/stops/H1fl140b"], ["https://tec.openplanner.team/stops/LWEmito1", "https://tec.openplanner.team/stops/LWEmito2"], ["https://tec.openplanner.team/stops/LSTchal1", "https://tec.openplanner.team/stops/LSTcomm2"], ["https://tec.openplanner.team/stops/Cfrmoul2", "https://tec.openplanner.team/stops/Cfrplac6"], ["https://tec.openplanner.team/stops/Cciecol1", "https://tec.openplanner.team/stops/Cmllecl4"], ["https://tec.openplanner.team/stops/LAMjeha1", "https://tec.openplanner.team/stops/LAMjeha2"], ["https://tec.openplanner.team/stops/Cfrempe2", "https://tec.openplanner.team/stops/Cvp3til4"], ["https://tec.openplanner.team/stops/LbUkrei*", "https://tec.openplanner.team/stops/LbUmolk1"], ["https://tec.openplanner.team/stops/H5at132b", "https://tec.openplanner.team/stops/H5at137b"], ["https://tec.openplanner.team/stops/Cmaacac2", "https://tec.openplanner.team/stops/Cmacoll1"], ["https://tec.openplanner.team/stops/NH01aha", "https://tec.openplanner.team/stops/NH01aja"], ["https://tec.openplanner.team/stops/LRCviad2", "https://tec.openplanner.team/stops/LSPmalc1"], ["https://tec.openplanner.team/stops/X626aca", "https://tec.openplanner.team/stops/X626ana"], ["https://tec.openplanner.team/stops/X720aea", "https://tec.openplanner.team/stops/X720aeb"], ["https://tec.openplanner.team/stops/H2gy100a", "https://tec.openplanner.team/stops/H2gy100b"], ["https://tec.openplanner.team/stops/LGDgdou1", "https://tec.openplanner.team/stops/LWazoni2"], ["https://tec.openplanner.team/stops/X657afb", "https://tec.openplanner.team/stops/X657aga"], ["https://tec.openplanner.team/stops/Brsrber1", "https://tec.openplanner.team/stops/Brsrcha2"], ["https://tec.openplanner.team/stops/X757aga", "https://tec.openplanner.team/stops/X757aia"], ["https://tec.openplanner.team/stops/LSznoel1", "https://tec.openplanner.team/stops/NL57afa"], ["https://tec.openplanner.team/stops/H4ty308a", "https://tec.openplanner.team/stops/H4ty309a"], ["https://tec.openplanner.team/stops/N501mya", "https://tec.openplanner.team/stops/N527afb"], ["https://tec.openplanner.team/stops/Barchez1", "https://tec.openplanner.team/stops/Barchoc1"], ["https://tec.openplanner.team/stops/LAo170-1", "https://tec.openplanner.team/stops/LAo170-2"], ["https://tec.openplanner.team/stops/N547ala", "https://tec.openplanner.team/stops/N547ana"], ["https://tec.openplanner.team/stops/Bboueta2", "https://tec.openplanner.team/stops/Bbougbl2"], ["https://tec.openplanner.team/stops/LbUwirt1", "https://tec.openplanner.team/stops/LwR140-1"], ["https://tec.openplanner.team/stops/X595aaa", "https://tec.openplanner.team/stops/X595aia"], ["https://tec.openplanner.team/stops/Csabrun2", "https://tec.openplanner.team/stops/Csdjeme2"], ["https://tec.openplanner.team/stops/LHEelva2", "https://tec.openplanner.team/stops/LHEepur1"], ["https://tec.openplanner.team/stops/X725aef", "https://tec.openplanner.team/stops/X725aza"], ["https://tec.openplanner.team/stops/N124aaa", "https://tec.openplanner.team/stops/N125acb"], ["https://tec.openplanner.team/stops/Llgnaes1", "https://tec.openplanner.team/stops/Llgseel1"], ["https://tec.openplanner.team/stops/LLYcham1", "https://tec.openplanner.team/stops/LLYpeup1"], ["https://tec.openplanner.team/stops/LLbbons2", "https://tec.openplanner.team/stops/LLbcafe2"], ["https://tec.openplanner.team/stops/Lan14ve1", "https://tec.openplanner.team/stops/Lanclon2"], ["https://tec.openplanner.team/stops/LWEchat1", "https://tec.openplanner.team/stops/LWEchat2"], ["https://tec.openplanner.team/stops/Blasbgc2", "https://tec.openplanner.team/stops/Bmrssmc1"], ["https://tec.openplanner.team/stops/H1je212b", "https://tec.openplanner.team/stops/H1je215b"], ["https://tec.openplanner.team/stops/LCHfond1", "https://tec.openplanner.team/stops/LCHgele1"], ["https://tec.openplanner.team/stops/X808afb", "https://tec.openplanner.team/stops/X808agb"], ["https://tec.openplanner.team/stops/Cmlbeau1", "https://tec.openplanner.team/stops/Cmlbeau4"], ["https://tec.openplanner.team/stops/N321ada", "https://tec.openplanner.team/stops/N321aeb"], ["https://tec.openplanner.team/stops/Bptecar2", "https://tec.openplanner.team/stops/Bptegna2"], ["https://tec.openplanner.team/stops/H4be146b", "https://tec.openplanner.team/stops/H5bl117c"], ["https://tec.openplanner.team/stops/Cfaeclu2", "https://tec.openplanner.team/stops/Crsstem1"], ["https://tec.openplanner.team/stops/N135aqb", "https://tec.openplanner.team/stops/N135aua"], ["https://tec.openplanner.team/stops/Lcacris2", "https://tec.openplanner.team/stops/Lemarti2"], ["https://tec.openplanner.team/stops/X771abb", "https://tec.openplanner.team/stops/X773agb"], ["https://tec.openplanner.team/stops/N236aea", "https://tec.openplanner.team/stops/N254aeb"], ["https://tec.openplanner.team/stops/LEBdoct2", "https://tec.openplanner.team/stops/LWOcomm2"], ["https://tec.openplanner.team/stops/Bwatath2", "https://tec.openplanner.team/stops/Bwatath3"], ["https://tec.openplanner.team/stops/X827aaa", "https://tec.openplanner.team/stops/X830aab"], ["https://tec.openplanner.team/stops/LeUgulc1", "https://tec.openplanner.team/stops/LeUschi2"], ["https://tec.openplanner.team/stops/H4ty306a", "https://tec.openplanner.team/stops/H4ty306b"], ["https://tec.openplanner.team/stops/H4ka188b", "https://tec.openplanner.team/stops/H4ka190a"], ["https://tec.openplanner.team/stops/NL76aba", "https://tec.openplanner.team/stops/NL76ahb"], ["https://tec.openplanner.team/stops/Cnathib1", "https://tec.openplanner.team/stops/Cnawari1"], ["https://tec.openplanner.team/stops/H1ge115a", "https://tec.openplanner.team/stops/H1ge151b"], ["https://tec.openplanner.team/stops/LSNretr1", "https://tec.openplanner.team/stops/LWerola1"], ["https://tec.openplanner.team/stops/LPUchpl1", "https://tec.openplanner.team/stops/LRepous1"], ["https://tec.openplanner.team/stops/LHHindu2", "https://tec.openplanner.team/stops/LHHpt--2"], ["https://tec.openplanner.team/stops/LHUfrai2", "https://tec.openplanner.team/stops/LHUvege2"], ["https://tec.openplanner.team/stops/X801cca", "https://tec.openplanner.team/stops/X801cma"], ["https://tec.openplanner.team/stops/X886ahb", "https://tec.openplanner.team/stops/X889aba"], ["https://tec.openplanner.team/stops/LWAfabr2", "https://tec.openplanner.team/stops/LWAloui2"], ["https://tec.openplanner.team/stops/H2ha136b", "https://tec.openplanner.team/stops/H2ha141a"], ["https://tec.openplanner.team/stops/H1bu138a", "https://tec.openplanner.team/stops/H1bu138b"], ["https://tec.openplanner.team/stops/X763aaa", "https://tec.openplanner.team/stops/X765aeb"], ["https://tec.openplanner.team/stops/LFUfleu1", "https://tec.openplanner.team/stops/LWDcime2"], ["https://tec.openplanner.team/stops/N538aea", "https://tec.openplanner.team/stops/N538agb"], ["https://tec.openplanner.team/stops/LGmloti1", "https://tec.openplanner.team/stops/LHmcite1"], ["https://tec.openplanner.team/stops/LSyec--2", "https://tec.openplanner.team/stops/LSygerm1"], ["https://tec.openplanner.team/stops/Cgocalv4", "https://tec.openplanner.team/stops/Cgofleu3"], ["https://tec.openplanner.team/stops/Cjucouc1", "https://tec.openplanner.team/stops/Cjudest3"], ["https://tec.openplanner.team/stops/X342aea", "https://tec.openplanner.team/stops/X342afa"], ["https://tec.openplanner.team/stops/LHycent*", "https://tec.openplanner.team/stops/LXopier2"], ["https://tec.openplanner.team/stops/N501ajb", "https://tec.openplanner.team/stops/N501akb"], ["https://tec.openplanner.team/stops/N116aab", "https://tec.openplanner.team/stops/N116aac"], ["https://tec.openplanner.team/stops/X911ama", "https://tec.openplanner.team/stops/X911anb"], ["https://tec.openplanner.team/stops/Cfmgara1", "https://tec.openplanner.team/stops/Csobrou1"], ["https://tec.openplanner.team/stops/X640aaa", "https://tec.openplanner.team/stops/X640aba"], ["https://tec.openplanner.team/stops/Bnivace2", "https://tec.openplanner.team/stops/Bnivvri1"], ["https://tec.openplanner.team/stops/NL76aoa", "https://tec.openplanner.team/stops/NL76aob"], ["https://tec.openplanner.team/stops/N134aea", "https://tec.openplanner.team/stops/N134aeb"], ["https://tec.openplanner.team/stops/Brsgter1", "https://tec.openplanner.team/stops/Brsgter2"], ["https://tec.openplanner.team/stops/Bezeksj4", "https://tec.openplanner.team/stops/Bneesjo2"], ["https://tec.openplanner.team/stops/X937ajb", "https://tec.openplanner.team/stops/X952akb"], ["https://tec.openplanner.team/stops/N141amc", "https://tec.openplanner.team/stops/N141ana"], ["https://tec.openplanner.team/stops/Ljegoss2", "https://tec.openplanner.team/stops/Ljewale4"], ["https://tec.openplanner.team/stops/Cfmchap1", "https://tec.openplanner.team/stops/Cfmltas2"], ["https://tec.openplanner.team/stops/LCxchal2", "https://tec.openplanner.team/stops/LCxreno1"], ["https://tec.openplanner.team/stops/H4ar172a", "https://tec.openplanner.team/stops/H4ar172b"], ["https://tec.openplanner.team/stops/X952aeb", "https://tec.openplanner.team/stops/X953aca"], ["https://tec.openplanner.team/stops/X907aea", "https://tec.openplanner.team/stops/X907aha"], ["https://tec.openplanner.team/stops/Bohnmon1", "https://tec.openplanner.team/stops/Bohnmon2"], ["https://tec.openplanner.team/stops/LFslign2", "https://tec.openplanner.team/stops/LFsphar1"], ["https://tec.openplanner.team/stops/Bbiefon1", "https://tec.openplanner.team/stops/Bptbsar1"], ["https://tec.openplanner.team/stops/N517adc", "https://tec.openplanner.team/stops/N517aea"], ["https://tec.openplanner.team/stops/N229aqa", "https://tec.openplanner.team/stops/N229aqb"], ["https://tec.openplanner.team/stops/LFPknap1", "https://tec.openplanner.team/stops/LFPknap2"], ["https://tec.openplanner.team/stops/X789afa", "https://tec.openplanner.team/stops/X789agb"], ["https://tec.openplanner.team/stops/H5qu139b", "https://tec.openplanner.team/stops/H5qu158a"], ["https://tec.openplanner.team/stops/LRtmame2", "https://tec.openplanner.team/stops/LRtrame1"], ["https://tec.openplanner.team/stops/H2ll173a", "https://tec.openplanner.team/stops/H2ll191a"], ["https://tec.openplanner.team/stops/NL77ala", "https://tec.openplanner.team/stops/NL77alb"], ["https://tec.openplanner.team/stops/Blasvil2", "https://tec.openplanner.team/stops/Blasvil3"], ["https://tec.openplanner.team/stops/H1gi123a", "https://tec.openplanner.team/stops/H1gi154b"], ["https://tec.openplanner.team/stops/N501gfb", "https://tec.openplanner.team/stops/N501gva"], ["https://tec.openplanner.team/stops/Lmobras1", "https://tec.openplanner.team/stops/Lmopech2"], ["https://tec.openplanner.team/stops/N524aaa", "https://tec.openplanner.team/stops/N524afa"], ["https://tec.openplanner.team/stops/LEN101-2", "https://tec.openplanner.team/stops/LENindu1"], ["https://tec.openplanner.team/stops/Cjudevo1", "https://tec.openplanner.team/stops/Cjudevo2"], ["https://tec.openplanner.team/stops/Livvill2", "https://tec.openplanner.team/stops/LRAcouv2"], ["https://tec.openplanner.team/stops/LVIdeva1", "https://tec.openplanner.team/stops/LVIhala4"], ["https://tec.openplanner.team/stops/LHUecte2", "https://tec.openplanner.team/stops/LHUpost1"], ["https://tec.openplanner.team/stops/N511amb", "https://tec.openplanner.team/stops/N511atb"], ["https://tec.openplanner.team/stops/Bllnmet1", "https://tec.openplanner.team/stops/Bllnpaf3"], ["https://tec.openplanner.team/stops/NC28aga", "https://tec.openplanner.team/stops/NC28agb"], ["https://tec.openplanner.team/stops/H1fv100b", "https://tec.openplanner.team/stops/H1fv101a"], ["https://tec.openplanner.team/stops/Blhumga2", "https://tec.openplanner.team/stops/Blhutco4"], ["https://tec.openplanner.team/stops/LAYcorn1", "https://tec.openplanner.team/stops/LAYcorn2"], ["https://tec.openplanner.team/stops/X911ara", "https://tec.openplanner.team/stops/X911arb"], ["https://tec.openplanner.team/stops/H4ln155a", "https://tec.openplanner.team/stops/H4ne133b"], ["https://tec.openplanner.team/stops/N530afa", "https://tec.openplanner.team/stops/N530aja"], ["https://tec.openplanner.team/stops/X602ala", "https://tec.openplanner.team/stops/X602alb"], ["https://tec.openplanner.team/stops/N137afb", "https://tec.openplanner.team/stops/N137agb"], ["https://tec.openplanner.team/stops/Blhucmo2", "https://tec.openplanner.team/stops/Blhugmo2"], ["https://tec.openplanner.team/stops/Bblamsp4", "https://tec.openplanner.team/stops/Bwatcli1"], ["https://tec.openplanner.team/stops/X824aka", "https://tec.openplanner.team/stops/X830aaa"], ["https://tec.openplanner.team/stops/LBssucr1", "https://tec.openplanner.team/stops/LWNcham2"], ["https://tec.openplanner.team/stops/Ccoacie2", "https://tec.openplanner.team/stops/Csoplac1"], ["https://tec.openplanner.team/stops/Lsmberg2", "https://tec.openplanner.team/stops/Lsmtini2"], ["https://tec.openplanner.team/stops/X747aaa", "https://tec.openplanner.team/stops/X754axa"], ["https://tec.openplanner.team/stops/Cchture1", "https://tec.openplanner.team/stops/Cchvhau1"], ["https://tec.openplanner.team/stops/X717acb", "https://tec.openplanner.team/stops/X789aba"], ["https://tec.openplanner.team/stops/Lbrfusi2", "https://tec.openplanner.team/stops/Lbrrobe2"], ["https://tec.openplanner.team/stops/LCPbell1", "https://tec.openplanner.team/stops/LCPhall2"], ["https://tec.openplanner.team/stops/N348aea", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/Caccarr2", "https://tec.openplanner.team/stops/Cacragu2"], ["https://tec.openplanner.team/stops/X989acb", "https://tec.openplanner.team/stops/X989agb"], ["https://tec.openplanner.team/stops/H4mb202b", "https://tec.openplanner.team/stops/H4mb203a"], ["https://tec.openplanner.team/stops/N538awa", "https://tec.openplanner.team/stops/N539aoa"], ["https://tec.openplanner.team/stops/Bwatber1", "https://tec.openplanner.team/stops/Bwatrte1"], ["https://tec.openplanner.team/stops/X371aga", "https://tec.openplanner.team/stops/X371aia"], ["https://tec.openplanner.team/stops/Bnivrec2", "https://tec.openplanner.team/stops/Bnivsci2"], ["https://tec.openplanner.team/stops/LDmeg--2", "https://tec.openplanner.team/stops/LHoetie1"], ["https://tec.openplanner.team/stops/Ljubods1", "https://tec.openplanner.team/stops/Ljugode1"], ["https://tec.openplanner.team/stops/N162aaa", "https://tec.openplanner.team/stops/N162afb"], ["https://tec.openplanner.team/stops/Bramcar2", "https://tec.openplanner.team/stops/Bramrdf2"], ["https://tec.openplanner.team/stops/X740abd", "https://tec.openplanner.team/stops/X740afa"], ["https://tec.openplanner.team/stops/LJUfort1", "https://tec.openplanner.team/stops/LVSslin2"], ["https://tec.openplanner.team/stops/X902bcb", "https://tec.openplanner.team/stops/X999ala"], ["https://tec.openplanner.team/stops/Lcegeor1", "https://tec.openplanner.team/stops/Lcegeor2"], ["https://tec.openplanner.team/stops/N203acb", "https://tec.openplanner.team/stops/N560aaa"], ["https://tec.openplanner.team/stops/H1mm121a", "https://tec.openplanner.team/stops/H1mm122b"], ["https://tec.openplanner.team/stops/H4be145b", "https://tec.openplanner.team/stops/H4be146b"], ["https://tec.openplanner.team/stops/N390aeb", "https://tec.openplanner.team/stops/X390ala"], ["https://tec.openplanner.team/stops/X804aoa", "https://tec.openplanner.team/stops/X804aob"], ["https://tec.openplanner.team/stops/N506bha", "https://tec.openplanner.team/stops/N506bkb"], ["https://tec.openplanner.team/stops/X601cga", "https://tec.openplanner.team/stops/X662aja"], ["https://tec.openplanner.team/stops/LkEbbl-1", "https://tec.openplanner.team/stops/LkEsada1"], ["https://tec.openplanner.team/stops/X793abb", "https://tec.openplanner.team/stops/X793aea"], ["https://tec.openplanner.team/stops/N134adb", "https://tec.openplanner.team/stops/N135azb"], ["https://tec.openplanner.team/stops/Lhrgall2", "https://tec.openplanner.team/stops/Lhrtunn1"], ["https://tec.openplanner.team/stops/N232bdb", "https://tec.openplanner.team/stops/N232beb"], ["https://tec.openplanner.team/stops/LkOgren1", "https://tec.openplanner.team/stops/LkOzoll1"], ["https://tec.openplanner.team/stops/Cmlbuis3", "https://tec.openplanner.team/stops/Cmlbuis4"], ["https://tec.openplanner.team/stops/Bniltri1", "https://tec.openplanner.team/stops/Bnilwal2"], ["https://tec.openplanner.team/stops/N573aea", "https://tec.openplanner.team/stops/N573aib"], ["https://tec.openplanner.team/stops/X626abb", "https://tec.openplanner.team/stops/X626anb"], ["https://tec.openplanner.team/stops/Lagpn6-1", "https://tec.openplanner.team/stops/Lsteg--2"], ["https://tec.openplanner.team/stops/Bnivbpe1", "https://tec.openplanner.team/stops/Bnivsto1"], ["https://tec.openplanner.team/stops/N115acb", "https://tec.openplanner.team/stops/N118ala"], ["https://tec.openplanner.team/stops/H1at109a", "https://tec.openplanner.team/stops/H1fy119a"], ["https://tec.openplanner.team/stops/H1ci104b", "https://tec.openplanner.team/stops/H1ci105a"], ["https://tec.openplanner.team/stops/N109aca", "https://tec.openplanner.team/stops/N109ada"], ["https://tec.openplanner.team/stops/N547abb", "https://tec.openplanner.team/stops/N547adb"], ["https://tec.openplanner.team/stops/N549aeb", "https://tec.openplanner.team/stops/N550aca"], ["https://tec.openplanner.team/stops/Llgcime2", "https://tec.openplanner.team/stops/LlgPRVo1"], ["https://tec.openplanner.team/stops/Bflcpco1", "https://tec.openplanner.team/stops/N515afb"], ["https://tec.openplanner.team/stops/X715aca", "https://tec.openplanner.team/stops/X715acc"], ["https://tec.openplanner.team/stops/Clcfall2", "https://tec.openplanner.team/stops/Clcfall4"], ["https://tec.openplanner.team/stops/H1je220d", "https://tec.openplanner.team/stops/H1je223a"], ["https://tec.openplanner.team/stops/Lmlcher1", "https://tec.openplanner.team/stops/Lmlmaqu1"], ["https://tec.openplanner.team/stops/N308asb", "https://tec.openplanner.team/stops/N308baa"], ["https://tec.openplanner.team/stops/Blimeur1", "https://tec.openplanner.team/stops/Blmlgar2"], ["https://tec.openplanner.team/stops/LESmecp*", "https://tec.openplanner.team/stops/LESsouv1"], ["https://tec.openplanner.team/stops/H1vb142a", "https://tec.openplanner.team/stops/H1vb147a"], ["https://tec.openplanner.team/stops/Cctsncb1", "https://tec.openplanner.team/stops/Cctsncb4"], ["https://tec.openplanner.team/stops/N543cha", "https://tec.openplanner.team/stops/N543chb"], ["https://tec.openplanner.team/stops/LBkgrae1", "https://tec.openplanner.team/stops/LBkgrae2"], ["https://tec.openplanner.team/stops/N534bra", "https://tec.openplanner.team/stops/N534brb"], ["https://tec.openplanner.team/stops/N123aaa", "https://tec.openplanner.team/stops/N150aec"], ["https://tec.openplanner.team/stops/X718aba", "https://tec.openplanner.team/stops/X719ada"], ["https://tec.openplanner.team/stops/N506aja", "https://tec.openplanner.team/stops/N506asa"], ["https://tec.openplanner.team/stops/X618aea", "https://tec.openplanner.team/stops/X618afb"], ["https://tec.openplanner.team/stops/Bblaqsj1", "https://tec.openplanner.team/stops/Bblaqsj2"], ["https://tec.openplanner.team/stops/CMleer1", "https://tec.openplanner.team/stops/CMleer2"], ["https://tec.openplanner.team/stops/LeYroth1", "https://tec.openplanner.team/stops/LhSwind1"], ["https://tec.openplanner.team/stops/Brsgepr1", "https://tec.openplanner.team/stops/Brsgges2"], ["https://tec.openplanner.team/stops/LBNvill2", "https://tec.openplanner.team/stops/LBNvill3"], ["https://tec.openplanner.team/stops/H1bo110a", "https://tec.openplanner.team/stops/H1te198b"], ["https://tec.openplanner.team/stops/Bbstdpa1", "https://tec.openplanner.team/stops/Bbstdpa2"], ["https://tec.openplanner.team/stops/Buccpes1", "https://tec.openplanner.team/stops/Buccpin2"], ["https://tec.openplanner.team/stops/LPUlecl2", "https://tec.openplanner.team/stops/LPUmer-2"], ["https://tec.openplanner.team/stops/Bglibui1", "https://tec.openplanner.team/stops/Bjdspon2"], ["https://tec.openplanner.team/stops/Cciferr2", "https://tec.openplanner.team/stops/Ccipano2"], ["https://tec.openplanner.team/stops/LFTcroi1", "https://tec.openplanner.team/stops/LFTcroi2"], ["https://tec.openplanner.team/stops/H4hu121a", "https://tec.openplanner.team/stops/H4og207b"], ["https://tec.openplanner.team/stops/Lhr2ave1", "https://tec.openplanner.team/stops/Lhrhurb2"], ["https://tec.openplanner.team/stops/N535anb", "https://tec.openplanner.team/stops/N535aob"], ["https://tec.openplanner.team/stops/Lheneuv2", "https://tec.openplanner.team/stops/Lheneuv4"], ["https://tec.openplanner.team/stops/Bmlncha2", "https://tec.openplanner.team/stops/Bmlnmbo2"], ["https://tec.openplanner.team/stops/Bnivfle2", "https://tec.openplanner.team/stops/Bnivmfr2"], ["https://tec.openplanner.team/stops/X775aeb", "https://tec.openplanner.team/stops/X775ana"], ["https://tec.openplanner.team/stops/LmDwei31", "https://tec.openplanner.team/stops/LmDwei32"], ["https://tec.openplanner.team/stops/X805aka", "https://tec.openplanner.team/stops/X873aba"], ["https://tec.openplanner.team/stops/X651aca", "https://tec.openplanner.team/stops/X651aea"], ["https://tec.openplanner.team/stops/H4wi162b", "https://tec.openplanner.team/stops/H4wi175b"], ["https://tec.openplanner.team/stops/LATguis1", "https://tec.openplanner.team/stops/LVLchem2"], ["https://tec.openplanner.team/stops/NC14abb", "https://tec.openplanner.team/stops/NC44ahb"], ["https://tec.openplanner.team/stops/LSktinc1", "https://tec.openplanner.team/stops/LSkwarf4"], ["https://tec.openplanner.team/stops/Cflathe2", "https://tec.openplanner.team/stops/Cflgazo1"], ["https://tec.openplanner.team/stops/Ladppir1", "https://tec.openplanner.team/stops/Lvemahe2"], ["https://tec.openplanner.team/stops/LArmeni1", "https://tec.openplanner.team/stops/X784aga"], ["https://tec.openplanner.team/stops/H4ka392a", "https://tec.openplanner.team/stops/H4ka393a"], ["https://tec.openplanner.team/stops/Llabriq1", "https://tec.openplanner.team/stops/Lvopaqu2"], ["https://tec.openplanner.team/stops/N536aoa", "https://tec.openplanner.team/stops/N536aqb"], ["https://tec.openplanner.team/stops/X937aca", "https://tec.openplanner.team/stops/X937akb"], ["https://tec.openplanner.team/stops/Ljegare2", "https://tec.openplanner.team/stops/Ljelexh2"], ["https://tec.openplanner.team/stops/LFCkerk1", "https://tec.openplanner.team/stops/LFClage2"], ["https://tec.openplanner.team/stops/N134aca", "https://tec.openplanner.team/stops/N134aja"], ["https://tec.openplanner.team/stops/X982bga", "https://tec.openplanner.team/stops/X982bma"], ["https://tec.openplanner.team/stops/N539ada", "https://tec.openplanner.team/stops/N539aga"], ["https://tec.openplanner.team/stops/LAwec--1", "https://tec.openplanner.team/stops/LAwfans2"], ["https://tec.openplanner.team/stops/LOuathe1", "https://tec.openplanner.team/stops/LOucarr4"], ["https://tec.openplanner.team/stops/X991aeb", "https://tec.openplanner.team/stops/X991afb"], ["https://tec.openplanner.team/stops/Canchbr1", "https://tec.openplanner.team/stops/Canstat1"], ["https://tec.openplanner.team/stops/Bitrcan1", "https://tec.openplanner.team/stops/Bvirfpo2"], ["https://tec.openplanner.team/stops/LBCaube1", "https://tec.openplanner.team/stops/LMAbass1"], ["https://tec.openplanner.team/stops/H4mx116b", "https://tec.openplanner.team/stops/H4po130b"], ["https://tec.openplanner.team/stops/H4og207b", "https://tec.openplanner.team/stops/H4og216b"], ["https://tec.openplanner.team/stops/N501bfb", "https://tec.openplanner.team/stops/N501bfy"], ["https://tec.openplanner.team/stops/Cwgpatr1", "https://tec.openplanner.team/stops/Cwgrans4"], ["https://tec.openplanner.team/stops/Cgyruis1", "https://tec.openplanner.team/stops/CMsartc2"], ["https://tec.openplanner.team/stops/LGEwalk2", "https://tec.openplanner.team/stops/LLStrid4"], ["https://tec.openplanner.team/stops/H1pa166a", "https://tec.openplanner.team/stops/H1pa166b"], ["https://tec.openplanner.team/stops/X919adb", "https://tec.openplanner.team/stops/X921akb"], ["https://tec.openplanner.team/stops/LEnvill2", "https://tec.openplanner.team/stops/NL73aba"], ["https://tec.openplanner.team/stops/NC14ana", "https://tec.openplanner.team/stops/NC24agb"], ["https://tec.openplanner.team/stops/X723ada", "https://tec.openplanner.team/stops/X723alb"], ["https://tec.openplanner.team/stops/H1bo104a", "https://tec.openplanner.team/stops/H1bo104b"], ["https://tec.openplanner.team/stops/Cmychap1", "https://tec.openplanner.team/stops/Cmychap3"], ["https://tec.openplanner.team/stops/Cfcchas1", "https://tec.openplanner.team/stops/Cfccol1"], ["https://tec.openplanner.team/stops/LlgOPER2", "https://tec.openplanner.team/stops/LlgOPER6"], ["https://tec.openplanner.team/stops/LESamos1", "https://tec.openplanner.team/stops/LESecco1"], ["https://tec.openplanner.team/stops/Bgnvpap1", "https://tec.openplanner.team/stops/Brixpro4"], ["https://tec.openplanner.team/stops/Cnagrro2", "https://tec.openplanner.team/stops/Cnaplha1"], ["https://tec.openplanner.team/stops/Bhencha2", "https://tec.openplanner.team/stops/Bhenrcr1"], ["https://tec.openplanner.team/stops/LAThach2", "https://tec.openplanner.team/stops/LATrori2"], ["https://tec.openplanner.team/stops/N505aba", "https://tec.openplanner.team/stops/N505acb"], ["https://tec.openplanner.team/stops/LSWscie1", "https://tec.openplanner.team/stops/LSZgare2"], ["https://tec.openplanner.team/stops/Lemambi2", "https://tec.openplanner.team/stops/Lemmc--1"], ["https://tec.openplanner.team/stops/X742aba", "https://tec.openplanner.team/stops/X742abb"], ["https://tec.openplanner.team/stops/X805afb", "https://tec.openplanner.team/stops/X869aab"], ["https://tec.openplanner.team/stops/X923ada", "https://tec.openplanner.team/stops/X923aqa"], ["https://tec.openplanner.team/stops/LhGcasi1", "https://tec.openplanner.team/stops/LkEsada1"], ["https://tec.openplanner.team/stops/Bmarcha1", "https://tec.openplanner.team/stops/Bmarchn1"], ["https://tec.openplanner.team/stops/Bbghsar2", "https://tec.openplanner.team/stops/Bstesar2"], ["https://tec.openplanner.team/stops/LoDkoll1", "https://tec.openplanner.team/stops/LoDmuhl1"], ["https://tec.openplanner.team/stops/Cchparc2", "https://tec.openplanner.team/stops/Cchparc5"], ["https://tec.openplanner.team/stops/Cmltemp2", "https://tec.openplanner.team/stops/Cmlvpla1"], ["https://tec.openplanner.team/stops/Lflec--2", "https://tec.openplanner.team/stops/Lfljupi2"], ["https://tec.openplanner.team/stops/N501cra", "https://tec.openplanner.team/stops/N501crd"], ["https://tec.openplanner.team/stops/LREheyd2", "https://tec.openplanner.team/stops/LREsp302"], ["https://tec.openplanner.team/stops/LAMhaut1", "https://tec.openplanner.team/stops/LOmlime1"], ["https://tec.openplanner.team/stops/N511aea", "https://tec.openplanner.team/stops/N511akb"], ["https://tec.openplanner.team/stops/Bwatmsj5", "https://tec.openplanner.team/stops/Bwatmsj6"], ["https://tec.openplanner.team/stops/X601bsa", "https://tec.openplanner.team/stops/X601dga"], ["https://tec.openplanner.team/stops/Llgmara1", "https://tec.openplanner.team/stops/Llgmara2"], ["https://tec.openplanner.team/stops/H4bw102a", "https://tec.openplanner.team/stops/H4wn131b"], ["https://tec.openplanner.team/stops/X994afa", "https://tec.openplanner.team/stops/X994aja"], ["https://tec.openplanner.team/stops/LChvill*", "https://tec.openplanner.team/stops/LJAgoff1"], ["https://tec.openplanner.team/stops/Buccpor1", "https://tec.openplanner.team/stops/Buccvbe1"], ["https://tec.openplanner.team/stops/LCAwals1", "https://tec.openplanner.team/stops/LLagert*"], ["https://tec.openplanner.team/stops/Ccupdes2", "https://tec.openplanner.team/stops/Ccupomp2"], ["https://tec.openplanner.team/stops/Bbosgar2", "https://tec.openplanner.team/stops/Bhoealt2"], ["https://tec.openplanner.team/stops/LDmwaef2", "https://tec.openplanner.team/stops/LDmwarf1"], ["https://tec.openplanner.team/stops/H1qu102b", "https://tec.openplanner.team/stops/H1qu106b"], ["https://tec.openplanner.team/stops/LwTkabi2", "https://tec.openplanner.team/stops/LwTkabi3"], ["https://tec.openplanner.team/stops/Bbeacha2", "https://tec.openplanner.team/stops/Bbeapim2"], ["https://tec.openplanner.team/stops/X650afe", "https://tec.openplanner.team/stops/X651aaa"], ["https://tec.openplanner.team/stops/Bblavol2", "https://tec.openplanner.team/stops/Bwatbca1"], ["https://tec.openplanner.team/stops/N131aha", "https://tec.openplanner.team/stops/N132aeb"], ["https://tec.openplanner.team/stops/Bmarchn2", "https://tec.openplanner.team/stops/Bmarfjo2"], ["https://tec.openplanner.team/stops/Cctkais1", "https://tec.openplanner.team/stops/Cctmine2"], ["https://tec.openplanner.team/stops/Bblaang2", "https://tec.openplanner.team/stops/Blilwit1"], ["https://tec.openplanner.team/stops/LFFchab1", "https://tec.openplanner.team/stops/LVLf10-1"], ["https://tec.openplanner.team/stops/LGefron1", "https://tec.openplanner.team/stops/LVAwolf2"], ["https://tec.openplanner.team/stops/N118agb", "https://tec.openplanner.team/stops/N118aia"], ["https://tec.openplanner.team/stops/LPobois2", "https://tec.openplanner.team/stops/LTgsous2"], ["https://tec.openplanner.team/stops/N501cwb", "https://tec.openplanner.team/stops/N501dab"], ["https://tec.openplanner.team/stops/N501hab", "https://tec.openplanner.team/stops/N501ihy"], ["https://tec.openplanner.team/stops/N291aaa", "https://tec.openplanner.team/stops/N291aab"], ["https://tec.openplanner.team/stops/H1ro135a", "https://tec.openplanner.team/stops/H1ro135b"], ["https://tec.openplanner.team/stops/H4ta131a", "https://tec.openplanner.team/stops/H4ta131b"], ["https://tec.openplanner.team/stops/N222ayb", "https://tec.openplanner.team/stops/X222aza"], ["https://tec.openplanner.team/stops/H4ma201a", "https://tec.openplanner.team/stops/H4ma202b"], ["https://tec.openplanner.team/stops/LhGlang1", "https://tec.openplanner.team/stops/LhGlang2"], ["https://tec.openplanner.team/stops/LCRfavr2", "https://tec.openplanner.team/stops/LTyh51-1"], ["https://tec.openplanner.team/stops/N212ata", "https://tec.openplanner.team/stops/N213aca"], ["https://tec.openplanner.team/stops/H1as102a", "https://tec.openplanner.team/stops/H1as154b"], ["https://tec.openplanner.team/stops/Lvtboux1", "https://tec.openplanner.team/stops/Lvtmeun2"], ["https://tec.openplanner.team/stops/X651aga", "https://tec.openplanner.team/stops/X651agb"], ["https://tec.openplanner.team/stops/NL57aeb", "https://tec.openplanner.team/stops/NL68adb"], ["https://tec.openplanner.team/stops/Cmlchan1", "https://tec.openplanner.team/stops/Cmlchan2"], ["https://tec.openplanner.team/stops/Cgd4ven1", "https://tec.openplanner.team/stops/Csslesc2"], ["https://tec.openplanner.team/stops/LNCfawe2", "https://tec.openplanner.team/stops/LRRchea5"], ["https://tec.openplanner.team/stops/N206aba", "https://tec.openplanner.team/stops/N206aca"], ["https://tec.openplanner.team/stops/Cgocitn1", "https://tec.openplanner.team/stops/Cgomoul2"], ["https://tec.openplanner.team/stops/X695ada", "https://tec.openplanner.team/stops/X695aga"], ["https://tec.openplanner.team/stops/Cfmchau2", "https://tec.openplanner.team/stops/Cfmtrie1"], ["https://tec.openplanner.team/stops/N501lxb", "https://tec.openplanner.team/stops/N501mfb"], ["https://tec.openplanner.team/stops/LHXmonu1", "https://tec.openplanner.team/stops/LHXmonu2"], ["https://tec.openplanner.team/stops/H4ss153b", "https://tec.openplanner.team/stops/H4ss158b"], ["https://tec.openplanner.team/stops/N538agb", "https://tec.openplanner.team/stops/N538aub"], ["https://tec.openplanner.team/stops/N533aab", "https://tec.openplanner.team/stops/N533afb"], ["https://tec.openplanner.team/stops/N135avb", "https://tec.openplanner.team/stops/N135bba"], ["https://tec.openplanner.team/stops/H4ga147b", "https://tec.openplanner.team/stops/H4ga165b"], ["https://tec.openplanner.team/stops/LFAbouc1", "https://tec.openplanner.team/stops/LLTfall1"], ["https://tec.openplanner.team/stops/H5rx100a", "https://tec.openplanner.team/stops/H5rx113b"], ["https://tec.openplanner.team/stops/Cbfchla2", "https://tec.openplanner.team/stops/NC24aja"], ["https://tec.openplanner.team/stops/H3bi112b", "https://tec.openplanner.team/stops/H3bi117b"], ["https://tec.openplanner.team/stops/X921ana", "https://tec.openplanner.team/stops/X922agb"], ["https://tec.openplanner.team/stops/LWahetr1", "https://tec.openplanner.team/stops/LWahetr2"], ["https://tec.openplanner.team/stops/X616aib", "https://tec.openplanner.team/stops/X616ajb"], ["https://tec.openplanner.team/stops/Cmesafi2", "https://tec.openplanner.team/stops/Csa4mai2"], ["https://tec.openplanner.team/stops/LAMceri2", "https://tec.openplanner.team/stops/LAMwall1"], ["https://tec.openplanner.team/stops/Bfelcsa2", "https://tec.openplanner.team/stops/Bsences1"], ["https://tec.openplanner.team/stops/X602aqb", "https://tec.openplanner.team/stops/X602ara"], ["https://tec.openplanner.team/stops/N543aya", "https://tec.openplanner.team/stops/N543ayb"], ["https://tec.openplanner.team/stops/X825aaa", "https://tec.openplanner.team/stops/X825aba"], ["https://tec.openplanner.team/stops/LMOchpl1", "https://tec.openplanner.team/stops/LMOfrel2"], ["https://tec.openplanner.team/stops/LPOeg--1", "https://tec.openplanner.team/stops/LSdbote1"], ["https://tec.openplanner.team/stops/H1wi148a", "https://tec.openplanner.team/stops/H1wi155a"], ["https://tec.openplanner.team/stops/LCEec--1", "https://tec.openplanner.team/stops/LMIcamp2"], ["https://tec.openplanner.team/stops/Cvpcdec2", "https://tec.openplanner.team/stops/Cvpsawe1"], ["https://tec.openplanner.team/stops/N501fbb", "https://tec.openplanner.team/stops/N501ltb"], ["https://tec.openplanner.team/stops/LBNvill1", "https://tec.openplanner.team/stops/LMemaza1"], ["https://tec.openplanner.team/stops/Bhen5ma1", "https://tec.openplanner.team/stops/Bhen5ma2"], ["https://tec.openplanner.team/stops/Cptccas2", "https://tec.openplanner.team/stops/Cptsncb1"], ["https://tec.openplanner.team/stops/X879alb", "https://tec.openplanner.team/stops/X879asb"], ["https://tec.openplanner.team/stops/Lhr1ave2", "https://tec.openplanner.team/stops/Lhrhurb1"], ["https://tec.openplanner.team/stops/Boplcsj2", "https://tec.openplanner.team/stops/Bpienod2"], ["https://tec.openplanner.team/stops/Lrcvinc2", "https://tec.openplanner.team/stops/Lvoec--2"], ["https://tec.openplanner.team/stops/LeUhaas4", "https://tec.openplanner.team/stops/LeUschi2"], ["https://tec.openplanner.team/stops/Lsebegu1", "https://tec.openplanner.team/stops/Lsetrav1"], ["https://tec.openplanner.team/stops/LsHkreu4", "https://tec.openplanner.team/stops/LsHthom1"], ["https://tec.openplanner.team/stops/H2ll191a", "https://tec.openplanner.team/stops/H2ll192b"], ["https://tec.openplanner.team/stops/Blhupa14", "https://tec.openplanner.team/stops/Blhupcl2"], ["https://tec.openplanner.team/stops/H1an102a", "https://tec.openplanner.team/stops/H1an103a"], ["https://tec.openplanner.team/stops/Bwbfbon2", "https://tec.openplanner.team/stops/Bwbfckr1"], ["https://tec.openplanner.team/stops/H2ll198a", "https://tec.openplanner.team/stops/H2ll198b"], ["https://tec.openplanner.team/stops/Lsmnico1", "https://tec.openplanner.team/stops/Lsmnico2"], ["https://tec.openplanner.team/stops/X876aba", "https://tec.openplanner.team/stops/X876aca"], ["https://tec.openplanner.team/stops/LPbpeti1", "https://tec.openplanner.team/stops/LPbpeti2"], ["https://tec.openplanner.team/stops/H4au143b", "https://tec.openplanner.team/stops/H4og207a"], ["https://tec.openplanner.team/stops/Laleg--1", "https://tec.openplanner.team/stops/Laleg--2"], ["https://tec.openplanner.team/stops/N554agb", "https://tec.openplanner.team/stops/N554ahb"], ["https://tec.openplanner.team/stops/H4bw100a", "https://tec.openplanner.team/stops/H4co149a"], ["https://tec.openplanner.team/stops/X649aaa", "https://tec.openplanner.team/stops/X671ada"], ["https://tec.openplanner.team/stops/LDAalbe2", "https://tec.openplanner.team/stops/LDAwich2"], ["https://tec.openplanner.team/stops/X985aea", "https://tec.openplanner.team/stops/X985aha"], ["https://tec.openplanner.team/stops/X620aab", "https://tec.openplanner.team/stops/X620aga"], ["https://tec.openplanner.team/stops/Bbcogar1", "https://tec.openplanner.team/stops/H3br112a"], ["https://tec.openplanner.team/stops/X615aub", "https://tec.openplanner.team/stops/X615avb"], ["https://tec.openplanner.team/stops/X979afb", "https://tec.openplanner.team/stops/X982bsa"], ["https://tec.openplanner.team/stops/H1ms279a", "https://tec.openplanner.team/stops/H1ms367a"], ["https://tec.openplanner.team/stops/X396aab", "https://tec.openplanner.team/stops/X396acb"], ["https://tec.openplanner.team/stops/X889ada", "https://tec.openplanner.team/stops/X889aeb"], ["https://tec.openplanner.team/stops/Bnilpje2", "https://tec.openplanner.team/stops/Bnilpor4"], ["https://tec.openplanner.team/stops/H1as103a", "https://tec.openplanner.team/stops/H1as103d"], ["https://tec.openplanner.team/stops/H2ma208b", "https://tec.openplanner.team/stops/H3th131a"], ["https://tec.openplanner.team/stops/H1gy111b", "https://tec.openplanner.team/stops/H1le127a"], ["https://tec.openplanner.team/stops/N229aja", "https://tec.openplanner.team/stops/N229ajb"], ["https://tec.openplanner.team/stops/Llgblon1", "https://tec.openplanner.team/stops/Llgdart2"], ["https://tec.openplanner.team/stops/X750aya", "https://tec.openplanner.team/stops/X750ayb"], ["https://tec.openplanner.team/stops/LMEcour2", "https://tec.openplanner.team/stops/LMEpech1"], ["https://tec.openplanner.team/stops/Bblaeur1", "https://tec.openplanner.team/stops/Bblasse2"], ["https://tec.openplanner.team/stops/H1cu123a", "https://tec.openplanner.team/stops/H1cu124b"], ["https://tec.openplanner.team/stops/H4ho119b", "https://tec.openplanner.team/stops/H4pl111a"], ["https://tec.openplanner.team/stops/H2hg146a", "https://tec.openplanner.team/stops/H2hg146b"], ["https://tec.openplanner.team/stops/Lhrmeta2", "https://tec.openplanner.team/stops/Lhrunir2"], ["https://tec.openplanner.team/stops/H4av100a", "https://tec.openplanner.team/stops/H4av105a"], ["https://tec.openplanner.team/stops/X766aba", "https://tec.openplanner.team/stops/X766abb"], ["https://tec.openplanner.team/stops/Bwolkra1", "https://tec.openplanner.team/stops/Bwolkra2"], ["https://tec.openplanner.team/stops/LeUschn1", "https://tec.openplanner.team/stops/LkTsch%C3%B62"], ["https://tec.openplanner.team/stops/X664aba", "https://tec.openplanner.team/stops/X664abb"], ["https://tec.openplanner.team/stops/LBPmais2", "https://tec.openplanner.team/stops/LBPrueg2"], ["https://tec.openplanner.team/stops/H4ce105a", "https://tec.openplanner.team/stops/H4ce105b"], ["https://tec.openplanner.team/stops/H4hq130a", "https://tec.openplanner.team/stops/H4hq134b"], ["https://tec.openplanner.team/stops/H4ho119a", "https://tec.openplanner.team/stops/H4wn127b"], ["https://tec.openplanner.team/stops/Ccu6bra3", "https://tec.openplanner.team/stops/Cculgeo1"], ["https://tec.openplanner.team/stops/X695aga", "https://tec.openplanner.team/stops/X696aja"], ["https://tec.openplanner.team/stops/LMibouv3", "https://tec.openplanner.team/stops/LSTmeiz2"], ["https://tec.openplanner.team/stops/Crachap1", "https://tec.openplanner.team/stops/Crasabl1"], ["https://tec.openplanner.team/stops/N121aeb", "https://tec.openplanner.team/stops/N122ahb"], ["https://tec.openplanner.team/stops/Cpllimi2", "https://tec.openplanner.team/stops/Cpllimi3"], ["https://tec.openplanner.team/stops/N236abb", "https://tec.openplanner.team/stops/N236adb"], ["https://tec.openplanner.team/stops/Lhelait1", "https://tec.openplanner.team/stops/Lhelait2"], ["https://tec.openplanner.team/stops/Bbstcoi1", "https://tec.openplanner.team/stops/Bvlvbth1"], ["https://tec.openplanner.team/stops/LAibego1", "https://tec.openplanner.team/stops/LAipala2"], ["https://tec.openplanner.team/stops/Cgomoul1", "https://tec.openplanner.team/stops/CMbruy2"], ["https://tec.openplanner.team/stops/LBichen1", "https://tec.openplanner.team/stops/LBiroch1"], ["https://tec.openplanner.team/stops/H4ty294a", "https://tec.openplanner.team/stops/H4ty346b"], ["https://tec.openplanner.team/stops/LBOholt1", "https://tec.openplanner.team/stops/LMucarr1"], ["https://tec.openplanner.team/stops/N353aab", "https://tec.openplanner.team/stops/N353aha"], ["https://tec.openplanner.team/stops/H4wu377a", "https://tec.openplanner.team/stops/H4wu377b"], ["https://tec.openplanner.team/stops/LAmeg--1", "https://tec.openplanner.team/stops/LAmeg--2"], ["https://tec.openplanner.team/stops/X850aib", "https://tec.openplanner.team/stops/X850ajb"], ["https://tec.openplanner.team/stops/N115aba", "https://tec.openplanner.team/stops/N170agb"], ["https://tec.openplanner.team/stops/N544aba", "https://tec.openplanner.team/stops/N550aja"], ["https://tec.openplanner.team/stops/LBHgile1", "https://tec.openplanner.team/stops/LBHhuyn2"], ["https://tec.openplanner.team/stops/H4oe147b", "https://tec.openplanner.team/stops/H4oe148b"], ["https://tec.openplanner.team/stops/X993aib", "https://tec.openplanner.team/stops/X994aib"], ["https://tec.openplanner.team/stops/LTHec--2", "https://tec.openplanner.team/stops/LTHwaux1"], ["https://tec.openplanner.team/stops/Lcefoxh1", "https://tec.openplanner.team/stops/Lceleje1"], ["https://tec.openplanner.team/stops/H1en100a", "https://tec.openplanner.team/stops/H1mk107a"], ["https://tec.openplanner.team/stops/N558afa", "https://tec.openplanner.team/stops/N558ama"], ["https://tec.openplanner.team/stops/Lstbold2", "https://tec.openplanner.team/stops/Lstvill2"], ["https://tec.openplanner.team/stops/LFEland1", "https://tec.openplanner.team/stops/X597aga"], ["https://tec.openplanner.team/stops/H4ro155a", "https://tec.openplanner.team/stops/H4ro155b"], ["https://tec.openplanner.team/stops/N353aea", "https://tec.openplanner.team/stops/N383adb"], ["https://tec.openplanner.team/stops/N202aab", "https://tec.openplanner.team/stops/N202afb"], ["https://tec.openplanner.team/stops/Bgliegl2", "https://tec.openplanner.team/stops/Bgliron1"], ["https://tec.openplanner.team/stops/LCIsucr1", "https://tec.openplanner.team/stops/LMXroye1"], ["https://tec.openplanner.team/stops/Bnivaba1", "https://tec.openplanner.team/stops/Bnivlai1"], ["https://tec.openplanner.team/stops/LmD27--1", "https://tec.openplanner.team/stops/LmDkirc1"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X665aba"], ["https://tec.openplanner.team/stops/H1bx107a", "https://tec.openplanner.team/stops/H1bx108a"], ["https://tec.openplanner.team/stops/X390aha", "https://tec.openplanner.team/stops/X390apb"], ["https://tec.openplanner.team/stops/H4ma399a", "https://tec.openplanner.team/stops/H4ma399b"], ["https://tec.openplanner.team/stops/Bnivpeu2", "https://tec.openplanner.team/stops/Bnivzep1"], ["https://tec.openplanner.team/stops/Lhrmilm1", "https://tec.openplanner.team/stops/Lhrmilm2"], ["https://tec.openplanner.team/stops/N534bxa", "https://tec.openplanner.team/stops/N561aga"], ["https://tec.openplanner.team/stops/Loualbe2", "https://tec.openplanner.team/stops/Loucham2"], ["https://tec.openplanner.team/stops/H1ha183a", "https://tec.openplanner.team/stops/H1ha199b"], ["https://tec.openplanner.team/stops/Lvebiol1", "https://tec.openplanner.team/stops/Lvesomm2"], ["https://tec.openplanner.team/stops/Cgy3011", "https://tec.openplanner.team/stops/Cmtchet2"], ["https://tec.openplanner.team/stops/Clolidl2", "https://tec.openplanner.team/stops/Clooues3"], ["https://tec.openplanner.team/stops/LCRvert1", "https://tec.openplanner.team/stops/LOdcris2"], ["https://tec.openplanner.team/stops/Ljekess1", "https://tec.openplanner.team/stops/Ljekess2"], ["https://tec.openplanner.team/stops/N203aab", "https://tec.openplanner.team/stops/N203afb"], ["https://tec.openplanner.team/stops/LVncarr2", "https://tec.openplanner.team/stops/LVnroch2"], ["https://tec.openplanner.team/stops/LMHmeha1", "https://tec.openplanner.team/stops/LMHoha-2"], ["https://tec.openplanner.team/stops/X717agc", "https://tec.openplanner.team/stops/X781aba"], ["https://tec.openplanner.team/stops/N337aea", "https://tec.openplanner.team/stops/N385aaa"], ["https://tec.openplanner.team/stops/X619adb", "https://tec.openplanner.team/stops/X619afa"], ["https://tec.openplanner.team/stops/LLnlimb1", "https://tec.openplanner.team/stops/LORroma1"], ["https://tec.openplanner.team/stops/LOeelbe2", "https://tec.openplanner.team/stops/LOewaut1"], ["https://tec.openplanner.team/stops/X739ahb", "https://tec.openplanner.team/stops/X739aia"], ["https://tec.openplanner.team/stops/N215aba", "https://tec.openplanner.team/stops/N215acb"], ["https://tec.openplanner.team/stops/N501fhb", "https://tec.openplanner.team/stops/N501lyb"], ["https://tec.openplanner.team/stops/N543aoa", "https://tec.openplanner.team/stops/N543cga"], ["https://tec.openplanner.team/stops/LHYwach2", "https://tec.openplanner.team/stops/LSpogne1"], ["https://tec.openplanner.team/stops/N501lea", "https://tec.openplanner.team/stops/N538aeb"], ["https://tec.openplanner.team/stops/H4ty296a", "https://tec.openplanner.team/stops/H4ty296b"], ["https://tec.openplanner.team/stops/X651afb", "https://tec.openplanner.team/stops/X659abb"], ["https://tec.openplanner.team/stops/X749abb", "https://tec.openplanner.team/stops/X749acb"], ["https://tec.openplanner.team/stops/H2mg144a", "https://tec.openplanner.team/stops/H2mg144b"], ["https://tec.openplanner.team/stops/Ccufos72", "https://tec.openplanner.team/stops/Ccuhsti1"], ["https://tec.openplanner.team/stops/Bolgeva2", "https://tec.openplanner.team/stops/Bolgfon2"], ["https://tec.openplanner.team/stops/Cbctile", "https://tec.openplanner.team/stops/H1bi101b"], ["https://tec.openplanner.team/stops/Bchamco2", "https://tec.openplanner.team/stops/Bwlhppg3"], ["https://tec.openplanner.team/stops/X790akc", "https://tec.openplanner.team/stops/X790ala"], ["https://tec.openplanner.team/stops/Brsgsan1", "https://tec.openplanner.team/stops/Brsgtou1"], ["https://tec.openplanner.team/stops/N232asa", "https://tec.openplanner.team/stops/N232bub"], ["https://tec.openplanner.team/stops/Barqbar1", "https://tec.openplanner.team/stops/Bmoncab2"], ["https://tec.openplanner.team/stops/Lanplat2", "https://tec.openplanner.team/stops/Lmobols1"], ["https://tec.openplanner.team/stops/LLVfour1", "https://tec.openplanner.team/stops/LTBeg--2"], ["https://tec.openplanner.team/stops/Ljeheur1", "https://tec.openplanner.team/stops/Ljeheur2"], ["https://tec.openplanner.team/stops/H1je211a", "https://tec.openplanner.team/stops/H1je369a"], ["https://tec.openplanner.team/stops/H4bh104a", "https://tec.openplanner.team/stops/H4jm117a"], ["https://tec.openplanner.team/stops/X955aeb", "https://tec.openplanner.team/stops/X955ahb"], ["https://tec.openplanner.team/stops/N150aea", "https://tec.openplanner.team/stops/N150afb"], ["https://tec.openplanner.team/stops/Cdahtvi1", "https://tec.openplanner.team/stops/Cdahtvi2"], ["https://tec.openplanner.team/stops/Bjodsme2", "https://tec.openplanner.team/stops/NR10acb"], ["https://tec.openplanner.team/stops/LeYmero1", "https://tec.openplanner.team/stops/LkTweih1"], ["https://tec.openplanner.team/stops/H2mm136a", "https://tec.openplanner.team/stops/H2mm136b"], ["https://tec.openplanner.team/stops/N505ama", "https://tec.openplanner.team/stops/N505amb"], ["https://tec.openplanner.team/stops/X768afb", "https://tec.openplanner.team/stops/X769aoa"], ["https://tec.openplanner.team/stops/Bgntffo2", "https://tec.openplanner.team/stops/Bgnttma1"], ["https://tec.openplanner.team/stops/LHMcruc1", "https://tec.openplanner.team/stops/LMNswar1"], ["https://tec.openplanner.team/stops/Cgoson12", "https://tec.openplanner.team/stops/Cjumade4"], ["https://tec.openplanner.team/stops/LNEbo472", "https://tec.openplanner.team/stops/LSNness2"], ["https://tec.openplanner.team/stops/Bjodcad2", "https://tec.openplanner.team/stops/Bjodrdp2"], ["https://tec.openplanner.team/stops/X790aia", "https://tec.openplanner.team/stops/X790aka"], ["https://tec.openplanner.team/stops/LNChock1", "https://tec.openplanner.team/stops/LNCvill2"], ["https://tec.openplanner.team/stops/X222adc", "https://tec.openplanner.team/stops/X919ana"], ["https://tec.openplanner.team/stops/X608ada", "https://tec.openplanner.team/stops/X608adb"], ["https://tec.openplanner.team/stops/H4ru240b", "https://tec.openplanner.team/stops/H4wc374b"], ["https://tec.openplanner.team/stops/Bosqcim1", "https://tec.openplanner.team/stops/Bosqcim2"], ["https://tec.openplanner.team/stops/H4bx108b", "https://tec.openplanner.team/stops/H4bx167b"], ["https://tec.openplanner.team/stops/X872adb", "https://tec.openplanner.team/stops/X890aea"], ["https://tec.openplanner.team/stops/LDmhave2", "https://tec.openplanner.team/stops/LSGeg--3"], ["https://tec.openplanner.team/stops/LLUlieg2", "https://tec.openplanner.team/stops/LTRryta2"], ["https://tec.openplanner.team/stops/H4mo191a", "https://tec.openplanner.team/stops/H4wa156a"], ["https://tec.openplanner.team/stops/N308bia", "https://tec.openplanner.team/stops/N308bjb"], ["https://tec.openplanner.team/stops/X575abb", "https://tec.openplanner.team/stops/X575aca"], ["https://tec.openplanner.team/stops/LLebrux1", "https://tec.openplanner.team/stops/X547ara"], ["https://tec.openplanner.team/stops/LSzsurl1", "https://tec.openplanner.team/stops/N506bta"], ["https://tec.openplanner.team/stops/X637aob", "https://tec.openplanner.team/stops/X638aoa"], ["https://tec.openplanner.team/stops/LVIgare2", "https://tec.openplanner.team/stops/LVIhala3"], ["https://tec.openplanner.team/stops/Barchez2", "https://tec.openplanner.team/stops/Barcsta2"], ["https://tec.openplanner.team/stops/LhOukat2", "https://tec.openplanner.team/stops/LhOzent2"], ["https://tec.openplanner.team/stops/H2tr254a", "https://tec.openplanner.team/stops/H2tr257b"], ["https://tec.openplanner.team/stops/LHUcamp2", "https://tec.openplanner.team/stops/LTimalv1"], ["https://tec.openplanner.team/stops/X685aga", "https://tec.openplanner.team/stops/X685ama"], ["https://tec.openplanner.team/stops/LaAlinz1", "https://tec.openplanner.team/stops/LkOaugu1"], ["https://tec.openplanner.team/stops/LVLgotr2", "https://tec.openplanner.team/stops/LVLruis2"], ["https://tec.openplanner.team/stops/Llgmaus2", "https://tec.openplanner.team/stops/Lsntvbi1"], ["https://tec.openplanner.team/stops/Llgancd1", "https://tec.openplanner.team/stops/LlgguilF"], ["https://tec.openplanner.team/stops/Bnivfle1", "https://tec.openplanner.team/stops/Bnivsto1"], ["https://tec.openplanner.team/stops/Ctilobb1", "https://tec.openplanner.team/stops/Ctisar1"], ["https://tec.openplanner.team/stops/X908ana", "https://tec.openplanner.team/stops/X908aoc"], ["https://tec.openplanner.team/stops/X757aib", "https://tec.openplanner.team/stops/X757akb"], ["https://tec.openplanner.team/stops/Crodebr2", "https://tec.openplanner.team/stops/Croegli1"], ["https://tec.openplanner.team/stops/X822agb", "https://tec.openplanner.team/stops/X822ahb"], ["https://tec.openplanner.team/stops/N553ahb", "https://tec.openplanner.team/stops/N553aob"], ["https://tec.openplanner.team/stops/X780afa", "https://tec.openplanner.team/stops/X780aia"], ["https://tec.openplanner.team/stops/N167abb", "https://tec.openplanner.team/stops/N244aqa"], ["https://tec.openplanner.team/stops/N525afb", "https://tec.openplanner.team/stops/N525aga"], ["https://tec.openplanner.team/stops/N501awa", "https://tec.openplanner.team/stops/N501awb"], ["https://tec.openplanner.team/stops/Bllnfeq1", "https://tec.openplanner.team/stops/Bottcva2"], ["https://tec.openplanner.team/stops/N229afb", "https://tec.openplanner.team/stops/N270adb"], ["https://tec.openplanner.team/stops/Bgzdn251", "https://tec.openplanner.team/stops/Bgzdsta2"], ["https://tec.openplanner.team/stops/LHHecol1", "https://tec.openplanner.team/stops/LHHgare2"], ["https://tec.openplanner.team/stops/N163aba", "https://tec.openplanner.team/stops/N165acb"], ["https://tec.openplanner.team/stops/Cmlcaya2", "https://tec.openplanner.team/stops/Cmlours1"], ["https://tec.openplanner.team/stops/Lsmdams2", "https://tec.openplanner.team/stops/Lsmgdry2"], ["https://tec.openplanner.team/stops/H2hp118a", "https://tec.openplanner.team/stops/H2hp125a"], ["https://tec.openplanner.team/stops/LHEclef2", "https://tec.openplanner.team/stops/LHEzoni2"], ["https://tec.openplanner.team/stops/X653aaa", "https://tec.openplanner.team/stops/X653afa"], ["https://tec.openplanner.team/stops/LkEsouf2", "https://tec.openplanner.team/stops/LkEspor1"], ["https://tec.openplanner.team/stops/Cobmven2", "https://tec.openplanner.team/stops/Cpcathe2"], ["https://tec.openplanner.team/stops/LNEgaul1", "https://tec.openplanner.team/stops/LNEvand1"], ["https://tec.openplanner.team/stops/X636afb", "https://tec.openplanner.team/stops/X636aga"], ["https://tec.openplanner.team/stops/LmAaldr2", "https://tec.openplanner.team/stops/LmAkirc1"], ["https://tec.openplanner.team/stops/X717ada", "https://tec.openplanner.team/stops/X717aha"], ["https://tec.openplanner.team/stops/X715aka", "https://tec.openplanner.team/stops/X715akb"], ["https://tec.openplanner.team/stops/LARparc1", "https://tec.openplanner.team/stops/LVIpneu1"], ["https://tec.openplanner.team/stops/N232apa", "https://tec.openplanner.team/stops/N232bpa"], ["https://tec.openplanner.team/stops/LCUjonc1", "https://tec.openplanner.team/stops/NL73aaa"], ["https://tec.openplanner.team/stops/Cldvign1", "https://tec.openplanner.team/stops/Clrcite2"], ["https://tec.openplanner.team/stops/Lseblan*", "https://tec.openplanner.team/stops/Lsedese2"], ["https://tec.openplanner.team/stops/X801apa", "https://tec.openplanner.team/stops/X801ckb"], ["https://tec.openplanner.team/stops/N513baa", "https://tec.openplanner.team/stops/N513bbc"], ["https://tec.openplanner.team/stops/LFHjamo1", "https://tec.openplanner.team/stops/LFHsucr1"], ["https://tec.openplanner.team/stops/Lstbarb2", "https://tec.openplanner.team/stops/Lstpoly2"], ["https://tec.openplanner.team/stops/Barcsta2", "https://tec.openplanner.team/stops/Bgzdpis1"], ["https://tec.openplanner.team/stops/Bblamp5", "https://tec.openplanner.team/stops/Bblamsp2"], ["https://tec.openplanner.team/stops/LCPbatt1", "https://tec.openplanner.team/stops/LMtcent1"], ["https://tec.openplanner.team/stops/LhZkape2", "https://tec.openplanner.team/stops/LlZkirc1"], ["https://tec.openplanner.team/stops/N521akb", "https://tec.openplanner.team/stops/N521aob"], ["https://tec.openplanner.team/stops/LAxbott1", "https://tec.openplanner.team/stops/LAxbott2"], ["https://tec.openplanner.team/stops/X659aoa", "https://tec.openplanner.team/stops/X659aqa"], ["https://tec.openplanner.team/stops/Cmmschw1", "https://tec.openplanner.team/stops/Cmymoha1"], ["https://tec.openplanner.team/stops/H1pe130b", "https://tec.openplanner.team/stops/H1pe132a"], ["https://tec.openplanner.team/stops/Louencl2", "https://tec.openplanner.team/stops/Loutrix2"], ["https://tec.openplanner.team/stops/H1le124b", "https://tec.openplanner.team/stops/H1le128a"], ["https://tec.openplanner.team/stops/N515aid", "https://tec.openplanner.team/stops/N515aob"], ["https://tec.openplanner.team/stops/X718aga", "https://tec.openplanner.team/stops/X718aha"], ["https://tec.openplanner.team/stops/Lantonn2", "https://tec.openplanner.team/stops/Lrccomm2"], ["https://tec.openplanner.team/stops/Bmarcha2", "https://tec.openplanner.team/stops/Bwagpco2"], ["https://tec.openplanner.team/stops/Clsghoy1", "https://tec.openplanner.team/stops/H1ls107b"], ["https://tec.openplanner.team/stops/H2mo145a", "https://tec.openplanner.team/stops/H2mo146b"], ["https://tec.openplanner.team/stops/X955aha", "https://tec.openplanner.team/stops/X955ahb"], ["https://tec.openplanner.team/stops/N538afa", "https://tec.openplanner.team/stops/N538avb"], ["https://tec.openplanner.team/stops/LsVbell2", "https://tec.openplanner.team/stops/LsVgend1"], ["https://tec.openplanner.team/stops/H5st162a", "https://tec.openplanner.team/stops/H5st162b"], ["https://tec.openplanner.team/stops/X750ata", "https://tec.openplanner.team/stops/X750bfb"], ["https://tec.openplanner.team/stops/Cbuegl1", "https://tec.openplanner.team/stops/Cbuplac4"], ["https://tec.openplanner.team/stops/Bglarha1", "https://tec.openplanner.team/stops/Cglfrom2"], ["https://tec.openplanner.team/stops/Lvemull2", "https://tec.openplanner.team/stops/Lvepala5"], ["https://tec.openplanner.team/stops/Lhrlalo3", "https://tec.openplanner.team/stops/Lhrmare3"], ["https://tec.openplanner.team/stops/Bndb4ch1", "https://tec.openplanner.team/stops/Bndbdra1"], ["https://tec.openplanner.team/stops/Btlbegl2", "https://tec.openplanner.team/stops/NB33aeb"], ["https://tec.openplanner.team/stops/H5pe141b", "https://tec.openplanner.team/stops/H5pe145a"], ["https://tec.openplanner.team/stops/H1je365a", "https://tec.openplanner.team/stops/H1je366b"], ["https://tec.openplanner.team/stops/N104aba", "https://tec.openplanner.team/stops/N104ada"], ["https://tec.openplanner.team/stops/N534atc", "https://tec.openplanner.team/stops/N534bga"], ["https://tec.openplanner.team/stops/H4ep126b", "https://tec.openplanner.team/stops/H4rm114a"], ["https://tec.openplanner.team/stops/NL76anb", "https://tec.openplanner.team/stops/NL76aob"], ["https://tec.openplanner.team/stops/Cbfgare2", "https://tec.openplanner.team/stops/Cbfpoti2"], ["https://tec.openplanner.team/stops/Borbtre1", "https://tec.openplanner.team/stops/Btstche2"], ["https://tec.openplanner.team/stops/H4hx113b", "https://tec.openplanner.team/stops/H4hx122b"], ["https://tec.openplanner.team/stops/LTreg--1", "https://tec.openplanner.team/stops/LTrmort1"], ["https://tec.openplanner.team/stops/H4ty275a", "https://tec.openplanner.team/stops/H4ty315a"], ["https://tec.openplanner.team/stops/Lkithie2", "https://tec.openplanner.team/stops/Llgstev1"], ["https://tec.openplanner.team/stops/Ladgath1", "https://tec.openplanner.team/stops/Ladverv2"], ["https://tec.openplanner.team/stops/Bgzdpos2", "https://tec.openplanner.team/stops/Bgzdsta1"], ["https://tec.openplanner.team/stops/LOesour2", "https://tec.openplanner.team/stops/LOewaut2"], ["https://tec.openplanner.team/stops/X359aaa", "https://tec.openplanner.team/stops/X359aad"], ["https://tec.openplanner.team/stops/Cgrchas2", "https://tec.openplanner.team/stops/Cgregli2"], ["https://tec.openplanner.team/stops/X653aca", "https://tec.openplanner.team/stops/X667aaa"], ["https://tec.openplanner.team/stops/Lrogene1", "https://tec.openplanner.team/stops/Lromc--2"], ["https://tec.openplanner.team/stops/H4ba101a", "https://tec.openplanner.team/stops/H4ba103b"], ["https://tec.openplanner.team/stops/N244aib", "https://tec.openplanner.team/stops/N245aab"], ["https://tec.openplanner.team/stops/X659aua", "https://tec.openplanner.team/stops/X741aib"], ["https://tec.openplanner.team/stops/X770agb", "https://tec.openplanner.team/stops/X771aha"], ["https://tec.openplanner.team/stops/X717afb", "https://tec.openplanner.team/stops/X717aja"], ["https://tec.openplanner.team/stops/LFebas-2", "https://tec.openplanner.team/stops/LTrmaro2"], ["https://tec.openplanner.team/stops/N349adb", "https://tec.openplanner.team/stops/N349aeb"], ["https://tec.openplanner.team/stops/X610aba", "https://tec.openplanner.team/stops/X610abb"], ["https://tec.openplanner.team/stops/LOdmonu2", "https://tec.openplanner.team/stops/LOdmonu4"], ["https://tec.openplanner.team/stops/X802ada", "https://tec.openplanner.team/stops/X802aea"], ["https://tec.openplanner.team/stops/Bneecha1", "https://tec.openplanner.team/stops/Bneecha2"], ["https://tec.openplanner.team/stops/N543aaa", "https://tec.openplanner.team/stops/N543aab"], ["https://tec.openplanner.team/stops/N141aab", "https://tec.openplanner.team/stops/N141aob"], ["https://tec.openplanner.team/stops/X663aab", "https://tec.openplanner.team/stops/X663aac"], ["https://tec.openplanner.team/stops/LBPunic1", "https://tec.openplanner.team/stops/LBPunic2"], ["https://tec.openplanner.team/stops/LFrfrai2", "https://tec.openplanner.team/stops/LTRryta2"], ["https://tec.openplanner.team/stops/LLrbecc2", "https://tec.openplanner.team/stops/LLrfont2"], ["https://tec.openplanner.team/stops/X769aib", "https://tec.openplanner.team/stops/X769aja"], ["https://tec.openplanner.team/stops/LbTschw2", "https://tec.openplanner.team/stops/LbTweyn1"], ["https://tec.openplanner.team/stops/Loumatt1", "https://tec.openplanner.team/stops/Lourose1"], ["https://tec.openplanner.team/stops/Lmndeso2", "https://tec.openplanner.team/stops/Lmneg--1"], ["https://tec.openplanner.team/stops/H2hp261b", "https://tec.openplanner.team/stops/H2lh126b"], ["https://tec.openplanner.team/stops/X618anb", "https://tec.openplanner.team/stops/X618aob"], ["https://tec.openplanner.team/stops/X801cia", "https://tec.openplanner.team/stops/X801cnb"], ["https://tec.openplanner.team/stops/N501dba", "https://tec.openplanner.team/stops/N501mxb"], ["https://tec.openplanner.team/stops/LTechpl2", "https://tec.openplanner.team/stops/LTNmont1"], ["https://tec.openplanner.team/stops/X903ada", "https://tec.openplanner.team/stops/X904abb"], ["https://tec.openplanner.team/stops/H5pe142b", "https://tec.openplanner.team/stops/H5pe176a"], ["https://tec.openplanner.team/stops/X224adb", "https://tec.openplanner.team/stops/X394aab"], ["https://tec.openplanner.team/stops/N360aaa", "https://tec.openplanner.team/stops/N360acc"], ["https://tec.openplanner.team/stops/LhP25--1", "https://tec.openplanner.team/stops/LhPheps1"], ["https://tec.openplanner.team/stops/X636ava", "https://tec.openplanner.team/stops/X636avb"], ["https://tec.openplanner.team/stops/Cmohame2", "https://tec.openplanner.team/stops/Cmychap4"], ["https://tec.openplanner.team/stops/LoUzent1", "https://tec.openplanner.team/stops/X688aaa"], ["https://tec.openplanner.team/stops/H1gh150b", "https://tec.openplanner.team/stops/H1je212a"], ["https://tec.openplanner.team/stops/H1si152b", "https://tec.openplanner.team/stops/H1si164a"], ["https://tec.openplanner.team/stops/LCtcref1", "https://tec.openplanner.team/stops/X789ahb"], ["https://tec.openplanner.team/stops/H1er106b", "https://tec.openplanner.team/stops/H1er108a"], ["https://tec.openplanner.team/stops/Btlbche2", "https://tec.openplanner.team/stops/Btlbtho1"], ["https://tec.openplanner.team/stops/X952aea", "https://tec.openplanner.team/stops/X952afa"], ["https://tec.openplanner.team/stops/H1by100a", "https://tec.openplanner.team/stops/H1by100c"], ["https://tec.openplanner.team/stops/Bwav4sa1", "https://tec.openplanner.team/stops/Bwavbwa2"], ["https://tec.openplanner.team/stops/H4eg101d", "https://tec.openplanner.team/stops/H4eg105b"], ["https://tec.openplanner.team/stops/Cfcmass1", "https://tec.openplanner.team/stops/Cfcrdpr2"], ["https://tec.openplanner.team/stops/N143abb", "https://tec.openplanner.team/stops/N143ada"], ["https://tec.openplanner.team/stops/Cjualed1", "https://tec.openplanner.team/stops/Cjufagn4"], ["https://tec.openplanner.team/stops/LFslign2", "https://tec.openplanner.team/stops/LSLabba2"], ["https://tec.openplanner.team/stops/Clrhava2", "https://tec.openplanner.team/stops/Clrwesp1"], ["https://tec.openplanner.team/stops/Ceregl1", "https://tec.openplanner.team/stops/Cvrhab22"], ["https://tec.openplanner.team/stops/Lvethea2", "https://tec.openplanner.team/stops/Lvexhav1"], ["https://tec.openplanner.team/stops/N348aab", "https://tec.openplanner.team/stops/N348abb"], ["https://tec.openplanner.team/stops/LHUgdpl2", "https://tec.openplanner.team/stops/LHUloui2"], ["https://tec.openplanner.team/stops/Llghec-1", "https://tec.openplanner.team/stops/Llghec-2"], ["https://tec.openplanner.team/stops/LLM4rou3", "https://tec.openplanner.team/stops/LLM4rou4"], ["https://tec.openplanner.team/stops/LROchap1", "https://tec.openplanner.team/stops/LROhael2"], ["https://tec.openplanner.team/stops/H5at114a", "https://tec.openplanner.team/stops/H5ma185b"], ["https://tec.openplanner.team/stops/Buccdef2", "https://tec.openplanner.team/stops/Buccvch1"], ["https://tec.openplanner.team/stops/Ljetomb1", "https://tec.openplanner.team/stops/Ljetomb2"], ["https://tec.openplanner.team/stops/N501dsa", "https://tec.openplanner.team/stops/N501jra"], ["https://tec.openplanner.team/stops/X858aea", "https://tec.openplanner.team/stops/X858aeb"], ["https://tec.openplanner.team/stops/Llgcham6", "https://tec.openplanner.team/stops/Llgm%C3%A9di2"], ["https://tec.openplanner.team/stops/LABbert1", "https://tec.openplanner.team/stops/LABbert2"], ["https://tec.openplanner.team/stops/N138aaa", "https://tec.openplanner.team/stops/N138aac"], ["https://tec.openplanner.team/stops/X982aba", "https://tec.openplanner.team/stops/X982aka"], ["https://tec.openplanner.team/stops/LSHhade2", "https://tec.openplanner.team/stops/LSOtheu2"], ["https://tec.openplanner.team/stops/H4gu106a", "https://tec.openplanner.team/stops/H4ta130b"], ["https://tec.openplanner.team/stops/X926aca", "https://tec.openplanner.team/stops/X926ada"], ["https://tec.openplanner.team/stops/LESmich1", "https://tec.openplanner.team/stops/LESpont2"], ["https://tec.openplanner.team/stops/Balsnay2", "https://tec.openplanner.team/stops/Balsnie2"], ["https://tec.openplanner.team/stops/H4hu113a", "https://tec.openplanner.team/stops/H4hu120b"], ["https://tec.openplanner.team/stops/Bbstbxl2", "https://tec.openplanner.team/stops/Cwsegli1"], ["https://tec.openplanner.team/stops/X773aba", "https://tec.openplanner.team/stops/X773ada"], ["https://tec.openplanner.team/stops/H2go117a", "https://tec.openplanner.team/stops/H2go117b"], ["https://tec.openplanner.team/stops/X652acc", "https://tec.openplanner.team/stops/X652aea"], ["https://tec.openplanner.team/stops/Bnivbng1", "https://tec.openplanner.team/stops/Bobacar3"], ["https://tec.openplanner.team/stops/X595aea", "https://tec.openplanner.team/stops/X595aeb"], ["https://tec.openplanner.team/stops/X823aca", "https://tec.openplanner.team/stops/X823aea"], ["https://tec.openplanner.team/stops/H5el100a", "https://tec.openplanner.team/stops/H5el101b"], ["https://tec.openplanner.team/stops/LSdsa451", "https://tec.openplanner.team/stops/LSdsa8a2"], ["https://tec.openplanner.team/stops/X640ada", "https://tec.openplanner.team/stops/X673ada"], ["https://tec.openplanner.team/stops/X939aea", "https://tec.openplanner.team/stops/X939afb"], ["https://tec.openplanner.team/stops/Cbufron2", "https://tec.openplanner.team/stops/Cerrver4"], ["https://tec.openplanner.team/stops/Lgdegli1", "https://tec.openplanner.team/stops/Lgdmaye1"], ["https://tec.openplanner.team/stops/H4vx361b", "https://tec.openplanner.team/stops/H4vx365b"], ["https://tec.openplanner.team/stops/Broneco1", "https://tec.openplanner.team/stops/Bronfou2"], ["https://tec.openplanner.team/stops/LFothie1", "https://tec.openplanner.team/stops/LJAgoff1"], ["https://tec.openplanner.team/stops/H4ar102b", "https://tec.openplanner.team/stops/H4pl120a"], ["https://tec.openplanner.team/stops/Bsaubra1", "https://tec.openplanner.team/stops/Bsaucre2"], ["https://tec.openplanner.team/stops/H2pe154b", "https://tec.openplanner.team/stops/H2pe160b"], ["https://tec.openplanner.team/stops/N549aba", "https://tec.openplanner.team/stops/N549abb"], ["https://tec.openplanner.team/stops/Bhalgar1", "https://tec.openplanner.team/stops/Bhalsro2"], ["https://tec.openplanner.team/stops/LWEchat1", "https://tec.openplanner.team/stops/LWEcite2"], ["https://tec.openplanner.team/stops/Bhalark2", "https://tec.openplanner.team/stops/Bhalath1"], ["https://tec.openplanner.team/stops/H1gi120b", "https://tec.openplanner.team/stops/H1gi120c"], ["https://tec.openplanner.team/stops/LmNelis2", "https://tec.openplanner.team/stops/LmNkess2"], ["https://tec.openplanner.team/stops/H1tl119b", "https://tec.openplanner.team/stops/H1tl122a"], ["https://tec.openplanner.team/stops/X763aab", "https://tec.openplanner.team/stops/X763aba"], ["https://tec.openplanner.team/stops/X790aba", "https://tec.openplanner.team/stops/X790abb"], ["https://tec.openplanner.team/stops/H4wt159a", "https://tec.openplanner.team/stops/H4wt160a"], ["https://tec.openplanner.team/stops/Cmlours2", "https://tec.openplanner.team/stops/Cmlpomm2"], ["https://tec.openplanner.team/stops/X626aaa", "https://tec.openplanner.team/stops/X626ala"], ["https://tec.openplanner.team/stops/Llgcour1", "https://tec.openplanner.team/stops/Llgcour2"], ["https://tec.openplanner.team/stops/LVEmohi2", "https://tec.openplanner.team/stops/LVEtomb1"], ["https://tec.openplanner.team/stops/H4ag107a", "https://tec.openplanner.team/stops/H4pe128a"], ["https://tec.openplanner.team/stops/X901bsa", "https://tec.openplanner.team/stops/X901bsb"], ["https://tec.openplanner.team/stops/Bjodath2", "https://tec.openplanner.team/stops/Bjodcad1"], ["https://tec.openplanner.team/stops/LeLsied2", "https://tec.openplanner.team/stops/LwYsour4"], ["https://tec.openplanner.team/stops/Lpeatel2", "https://tec.openplanner.team/stops/Lpeprev2"], ["https://tec.openplanner.team/stops/LFRhock2", "https://tec.openplanner.team/stops/LFRhock3"], ["https://tec.openplanner.team/stops/Bhengri1", "https://tec.openplanner.team/stops/Bhenhau1"], ["https://tec.openplanner.team/stops/N310aaa", "https://tec.openplanner.team/stops/N310aba"], ["https://tec.openplanner.team/stops/LATdieu1", "https://tec.openplanner.team/stops/LATmonu1"], ["https://tec.openplanner.team/stops/Canlalu2", "https://tec.openplanner.team/stops/Canpeup2"], ["https://tec.openplanner.team/stops/LVleg--5", "https://tec.openplanner.team/stops/LVlroua4"], ["https://tec.openplanner.team/stops/Beclbar2", "https://tec.openplanner.team/stops/H2me114b"], ["https://tec.openplanner.team/stops/LrAneus2", "https://tec.openplanner.team/stops/LrAneus3"], ["https://tec.openplanner.team/stops/N225aab", "https://tec.openplanner.team/stops/N225aea"], ["https://tec.openplanner.team/stops/N522abb", "https://tec.openplanner.team/stops/N522abc"], ["https://tec.openplanner.team/stops/Cfnsenz1", "https://tec.openplanner.team/stops/N162aea"], ["https://tec.openplanner.team/stops/Cstdona2", "https://tec.openplanner.team/stops/Cstdona6"], ["https://tec.openplanner.team/stops/N554acb", "https://tec.openplanner.team/stops/N554afb"], ["https://tec.openplanner.team/stops/H4do101a", "https://tec.openplanner.team/stops/H4do107a"], ["https://tec.openplanner.team/stops/LWEhosp1", "https://tec.openplanner.team/stops/LWEhosp2"], ["https://tec.openplanner.team/stops/N509aia", "https://tec.openplanner.team/stops/N509aja"], ["https://tec.openplanner.team/stops/Cstcent2", "https://tec.openplanner.team/stops/Cstgare2"], ["https://tec.openplanner.team/stops/H4er121a", "https://tec.openplanner.team/stops/H4ty331a"], ["https://tec.openplanner.team/stops/X605aab", "https://tec.openplanner.team/stops/X605abb"], ["https://tec.openplanner.team/stops/H1je216b", "https://tec.openplanner.team/stops/H1je225a"], ["https://tec.openplanner.team/stops/X922aca", "https://tec.openplanner.team/stops/X922adb"], ["https://tec.openplanner.team/stops/Bnodeco2", "https://tec.openplanner.team/stops/Bnodtir4"], ["https://tec.openplanner.team/stops/Bbxlmid4", "https://tec.openplanner.team/stops/H4ae102b"], ["https://tec.openplanner.team/stops/H5wo128b", "https://tec.openplanner.team/stops/H5wo130a"], ["https://tec.openplanner.team/stops/X869aaa", "https://tec.openplanner.team/stops/X869acb"], ["https://tec.openplanner.team/stops/Cmlbevu1", "https://tec.openplanner.team/stops/Cmlbrac2"], ["https://tec.openplanner.team/stops/H4fl115a", "https://tec.openplanner.team/stops/H4lp124b"], ["https://tec.openplanner.team/stops/H1sa112b", "https://tec.openplanner.team/stops/H1sa113a"], ["https://tec.openplanner.team/stops/X758aja", "https://tec.openplanner.team/stops/X758ajb"], ["https://tec.openplanner.team/stops/LCSmagn1", "https://tec.openplanner.team/stops/LEHpech1"], ["https://tec.openplanner.team/stops/LwMzoll2", "https://tec.openplanner.team/stops/X764afb"], ["https://tec.openplanner.team/stops/X743agb", "https://tec.openplanner.team/stops/X749aea"], ["https://tec.openplanner.team/stops/Bwanorp1", "https://tec.openplanner.team/stops/Bwanwar1"], ["https://tec.openplanner.team/stops/LFebas-1", "https://tec.openplanner.team/stops/LRIcent2"], ["https://tec.openplanner.team/stops/N340aha", "https://tec.openplanner.team/stops/N340aia"], ["https://tec.openplanner.team/stops/Lhelait1", "https://tec.openplanner.team/stops/LHSlava2"], ["https://tec.openplanner.team/stops/X595abb", "https://tec.openplanner.team/stops/X595acb"], ["https://tec.openplanner.team/stops/LBEchan2", "https://tec.openplanner.team/stops/LBEtroo2"], ["https://tec.openplanner.team/stops/Csepost1", "https://tec.openplanner.team/stops/Cvtvail1"], ["https://tec.openplanner.team/stops/H1je212a", "https://tec.openplanner.team/stops/H1ms930a"], ["https://tec.openplanner.team/stops/N542aeb", "https://tec.openplanner.team/stops/N542aja"], ["https://tec.openplanner.team/stops/H1ry135a", "https://tec.openplanner.team/stops/H1ry135b"], ["https://tec.openplanner.team/stops/Lgrdefr2", "https://tec.openplanner.team/stops/Lgrdefr4"], ["https://tec.openplanner.team/stops/Cfmtrie1", "https://tec.openplanner.team/stops/Cfomays1"], ["https://tec.openplanner.team/stops/LSpxhig1", "https://tec.openplanner.team/stops/LSpxhig2"], ["https://tec.openplanner.team/stops/X595aab", "https://tec.openplanner.team/stops/X595aib"], ["https://tec.openplanner.team/stops/Llgmara1", "https://tec.openplanner.team/stops/Llgrema2"], ["https://tec.openplanner.team/stops/Llgoutr1", "https://tec.openplanner.team/stops/Llgsime1"], ["https://tec.openplanner.team/stops/X818ata", "https://tec.openplanner.team/stops/X818atb"], ["https://tec.openplanner.team/stops/Bgnvgir2", "https://tec.openplanner.team/stops/Bohncha1"], ["https://tec.openplanner.team/stops/Ccybouc3", "https://tec.openplanner.team/stops/Ccyfroi2"], ["https://tec.openplanner.team/stops/H4mv191a", "https://tec.openplanner.team/stops/H4oe149b"], ["https://tec.openplanner.team/stops/X636aqa", "https://tec.openplanner.team/stops/X636aqd"], ["https://tec.openplanner.team/stops/Bbldmun1", "https://tec.openplanner.team/stops/Bhaawdr1"], ["https://tec.openplanner.team/stops/Cci4bra1", "https://tec.openplanner.team/stops/Cci4bra4"], ["https://tec.openplanner.team/stops/N565aba", "https://tec.openplanner.team/stops/N565afa"], ["https://tec.openplanner.team/stops/LGMforg1", "https://tec.openplanner.team/stops/LGMvoue1"], ["https://tec.openplanner.team/stops/H1do126a", "https://tec.openplanner.team/stops/H1pd141a"], ["https://tec.openplanner.team/stops/Lhubouq1", "https://tec.openplanner.team/stops/Lhulibe1"], ["https://tec.openplanner.team/stops/H1do111b", "https://tec.openplanner.team/stops/H1wi147a"], ["https://tec.openplanner.team/stops/Ctrecol1", "https://tec.openplanner.team/stops/Ctrecol3"], ["https://tec.openplanner.team/stops/N529ajb", "https://tec.openplanner.team/stops/N584aqb"], ["https://tec.openplanner.team/stops/X725ava", "https://tec.openplanner.team/stops/X725bba"], ["https://tec.openplanner.team/stops/N564aaa", "https://tec.openplanner.team/stops/N564adb"], ["https://tec.openplanner.team/stops/X547acb", "https://tec.openplanner.team/stops/X561aba"], ["https://tec.openplanner.team/stops/Cgygazo1", "https://tec.openplanner.team/stops/Cgylouv1"], ["https://tec.openplanner.team/stops/N501cya", "https://tec.openplanner.team/stops/N501cza"], ["https://tec.openplanner.team/stops/X806acb", "https://tec.openplanner.team/stops/X872aab"], ["https://tec.openplanner.team/stops/N558adb", "https://tec.openplanner.team/stops/N558afb"], ["https://tec.openplanner.team/stops/LJSforg1", "https://tec.openplanner.team/stops/Lpetenn1"], ["https://tec.openplanner.team/stops/N516aaa", "https://tec.openplanner.team/stops/N516aqb"], ["https://tec.openplanner.team/stops/H2ca106a", "https://tec.openplanner.team/stops/H2ca111a"], ["https://tec.openplanner.team/stops/X757aha", "https://tec.openplanner.team/stops/X757amb"], ["https://tec.openplanner.team/stops/H1og136a", "https://tec.openplanner.team/stops/H5wo124a"], ["https://tec.openplanner.team/stops/Lhrhome1", "https://tec.openplanner.team/stops/Lhrhome2"], ["https://tec.openplanner.team/stops/N543bka", "https://tec.openplanner.team/stops/N543bkb"], ["https://tec.openplanner.team/stops/X601bzb", "https://tec.openplanner.team/stops/X601daa"], ["https://tec.openplanner.team/stops/LSOboeu2", "https://tec.openplanner.team/stops/LXHadam2"], ["https://tec.openplanner.team/stops/N218aab", "https://tec.openplanner.team/stops/N218afb"], ["https://tec.openplanner.team/stops/Bjodath3", "https://tec.openplanner.team/stops/NR10aba"], ["https://tec.openplanner.team/stops/Cfldand2", "https://tec.openplanner.team/stops/Cflfaub2"], ["https://tec.openplanner.team/stops/N513bia", "https://tec.openplanner.team/stops/N513bib"], ["https://tec.openplanner.team/stops/X983aba", "https://tec.openplanner.team/stops/X983agb"], ["https://tec.openplanner.team/stops/X633aea", "https://tec.openplanner.team/stops/X633agc"], ["https://tec.openplanner.team/stops/X770aeb", "https://tec.openplanner.team/stops/X774adc"], ["https://tec.openplanner.team/stops/LSebott1", "https://tec.openplanner.team/stops/LSebott2"], ["https://tec.openplanner.team/stops/Blig4br2", "https://tec.openplanner.team/stops/N584bqa"], ["https://tec.openplanner.team/stops/LBPboir1", "https://tec.openplanner.team/stops/LRGile-1"], ["https://tec.openplanner.team/stops/Bgrmver1", "https://tec.openplanner.team/stops/N522aka"], ["https://tec.openplanner.team/stops/N232aca", "https://tec.openplanner.team/stops/N232aga"], ["https://tec.openplanner.team/stops/Lalmitt1", "https://tec.openplanner.team/stops/LAWhein3"], ["https://tec.openplanner.team/stops/Cmqchap1", "https://tec.openplanner.team/stops/Cmqchap2"], ["https://tec.openplanner.team/stops/N505aaa", "https://tec.openplanner.team/stops/N505ana"], ["https://tec.openplanner.team/stops/X901bbb", "https://tec.openplanner.team/stops/X922aka"], ["https://tec.openplanner.team/stops/H1gi123b", "https://tec.openplanner.team/stops/H1mx122a"], ["https://tec.openplanner.team/stops/X637aqb", "https://tec.openplanner.team/stops/X649aca"], ["https://tec.openplanner.team/stops/LClflor1", "https://tec.openplanner.team/stops/LClflor2"], ["https://tec.openplanner.team/stops/H4lz122a", "https://tec.openplanner.team/stops/H4lz122b"], ["https://tec.openplanner.team/stops/Brsgsan1", "https://tec.openplanner.team/stops/Buccvbe1"], ["https://tec.openplanner.team/stops/X648aaa", "https://tec.openplanner.team/stops/X648aba"], ["https://tec.openplanner.team/stops/Cthgrat1", "https://tec.openplanner.team/stops/Cthgrat2"], ["https://tec.openplanner.team/stops/N538ahb", "https://tec.openplanner.team/stops/N538ajb"], ["https://tec.openplanner.team/stops/X619ajb", "https://tec.openplanner.team/stops/X620aca"], ["https://tec.openplanner.team/stops/N501arc", "https://tec.openplanner.team/stops/N501azb"], ["https://tec.openplanner.team/stops/N135ajb", "https://tec.openplanner.team/stops/N135ala"], ["https://tec.openplanner.team/stops/LRObruy1", "https://tec.openplanner.team/stops/LRObruy2"], ["https://tec.openplanner.team/stops/X886aaa", "https://tec.openplanner.team/stops/X889ada"], ["https://tec.openplanner.team/stops/Lchec--2", "https://tec.openplanner.team/stops/Lvitomb1"], ["https://tec.openplanner.team/stops/X807aaa", "https://tec.openplanner.team/stops/X807ada"], ["https://tec.openplanner.team/stops/X739aga", "https://tec.openplanner.team/stops/X739alb"], ["https://tec.openplanner.team/stops/Cclrgiv1", "https://tec.openplanner.team/stops/Cclrgiv2"], ["https://tec.openplanner.team/stops/N539bca", "https://tec.openplanner.team/stops/N540arb"], ["https://tec.openplanner.team/stops/LiV19--1", "https://tec.openplanner.team/stops/LONcroi2"], ["https://tec.openplanner.team/stops/X766aaa", "https://tec.openplanner.team/stops/X768ajb"], ["https://tec.openplanner.team/stops/Cgrgrce1", "https://tec.openplanner.team/stops/Cgrgrce2"], ["https://tec.openplanner.team/stops/LaR1G--1", "https://tec.openplanner.team/stops/LaR1G--2"], ["https://tec.openplanner.team/stops/Blangar1", "https://tec.openplanner.team/stops/Blankal3"], ["https://tec.openplanner.team/stops/LELchap1", "https://tec.openplanner.team/stops/LELchap2"], ["https://tec.openplanner.team/stops/N519abb", "https://tec.openplanner.team/stops/N519asd"], ["https://tec.openplanner.team/stops/LTibarb2", "https://tec.openplanner.team/stops/LTiflor1"], ["https://tec.openplanner.team/stops/N501iaa", "https://tec.openplanner.team/stops/N501iab"], ["https://tec.openplanner.team/stops/H4be105a", "https://tec.openplanner.team/stops/H4be112b"], ["https://tec.openplanner.team/stops/LiV19--1", "https://tec.openplanner.team/stops/LiV19--2"], ["https://tec.openplanner.team/stops/LWargeu1", "https://tec.openplanner.team/stops/LWargeu2"], ["https://tec.openplanner.team/stops/LbOre3b1", "https://tec.openplanner.team/stops/LbOre3b2"], ["https://tec.openplanner.team/stops/Ljewale4", "https://tec.openplanner.team/stops/Ljexhav1"], ["https://tec.openplanner.team/stops/N513adb", "https://tec.openplanner.team/stops/N513apb"], ["https://tec.openplanner.team/stops/N351anb", "https://tec.openplanner.team/stops/N351avb"], ["https://tec.openplanner.team/stops/Bbst4br3", "https://tec.openplanner.team/stops/Bbstpon2"], ["https://tec.openplanner.team/stops/N545aba", "https://tec.openplanner.team/stops/N553ana"], ["https://tec.openplanner.team/stops/X753aaa", "https://tec.openplanner.team/stops/X945adb"], ["https://tec.openplanner.team/stops/N214aaa", "https://tec.openplanner.team/stops/N236abb"], ["https://tec.openplanner.team/stops/X801bwa", "https://tec.openplanner.team/stops/X801bxb"], ["https://tec.openplanner.team/stops/Clrcite2", "https://tec.openplanner.team/stops/CMleer1"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Llonaes2"], ["https://tec.openplanner.team/stops/Ljemont1", "https://tec.openplanner.team/stops/Ljexhav1"], ["https://tec.openplanner.team/stops/LLbbons1", "https://tec.openplanner.team/stops/LLbbons2"], ["https://tec.openplanner.team/stops/LLUtill3", "https://tec.openplanner.team/stops/LLUtill4"], ["https://tec.openplanner.team/stops/X673aba", "https://tec.openplanner.team/stops/X820aga"], ["https://tec.openplanner.team/stops/N308anb", "https://tec.openplanner.team/stops/N308aob"], ["https://tec.openplanner.team/stops/Bsamlon1", "https://tec.openplanner.team/stops/Bwagdeb2"], ["https://tec.openplanner.team/stops/X695aba", "https://tec.openplanner.team/stops/X695aia"], ["https://tec.openplanner.team/stops/X637aaa", "https://tec.openplanner.team/stops/X637aab"], ["https://tec.openplanner.team/stops/N131aha", "https://tec.openplanner.team/stops/N423agb"], ["https://tec.openplanner.team/stops/H1po135a", "https://tec.openplanner.team/stops/H1po154a"], ["https://tec.openplanner.team/stops/Cgzbouh1", "https://tec.openplanner.team/stops/Cgzrust1"], ["https://tec.openplanner.team/stops/X880ada", "https://tec.openplanner.team/stops/X880adb"], ["https://tec.openplanner.team/stops/X661aga", "https://tec.openplanner.team/stops/X661ayc"], ["https://tec.openplanner.team/stops/H4au144a", "https://tec.openplanner.team/stops/H4og211a"], ["https://tec.openplanner.team/stops/Cgonvro1", "https://tec.openplanner.team/stops/Cmehame2"], ["https://tec.openplanner.team/stops/Ccusole2", "https://tec.openplanner.team/stops/Cgysole2"], ["https://tec.openplanner.team/stops/H4fr139b", "https://tec.openplanner.team/stops/H4fr146a"], ["https://tec.openplanner.team/stops/N321aca", "https://tec.openplanner.team/stops/N321ada"], ["https://tec.openplanner.team/stops/Bcrbmsg1", "https://tec.openplanner.team/stops/Bcrbtho1"], ["https://tec.openplanner.team/stops/Bpernov1", "https://tec.openplanner.team/stops/Bperrcr1"], ["https://tec.openplanner.team/stops/N151aba", "https://tec.openplanner.team/stops/N151aha"], ["https://tec.openplanner.team/stops/N501ata", "https://tec.openplanner.team/stops/N501hpb"], ["https://tec.openplanner.team/stops/N536aea", "https://tec.openplanner.team/stops/N580aaa"], ["https://tec.openplanner.team/stops/N124aca", "https://tec.openplanner.team/stops/N124acb"], ["https://tec.openplanner.team/stops/Cmaleri2", "https://tec.openplanner.team/stops/Cmazsnc2"], ["https://tec.openplanner.team/stops/N501haa", "https://tec.openplanner.team/stops/N501hab"], ["https://tec.openplanner.team/stops/X660ada", "https://tec.openplanner.team/stops/X660aea"], ["https://tec.openplanner.team/stops/Bhengri1", "https://tec.openplanner.team/stops/Bvircsj1"], ["https://tec.openplanner.team/stops/N351alb", "https://tec.openplanner.team/stops/N351ara"], ["https://tec.openplanner.team/stops/Cgpchgo2", "https://tec.openplanner.team/stops/H2tz115b"], ["https://tec.openplanner.team/stops/LSCeg--3", "https://tec.openplanner.team/stops/LSCeg--4"], ["https://tec.openplanner.team/stops/X937aeb", "https://tec.openplanner.team/stops/X937afa"], ["https://tec.openplanner.team/stops/N201aga", "https://tec.openplanner.team/stops/N201agb"], ["https://tec.openplanner.team/stops/X786ahb", "https://tec.openplanner.team/stops/X789agb"], ["https://tec.openplanner.team/stops/Baegm501", "https://tec.openplanner.team/stops/Bramrdf2"], ["https://tec.openplanner.team/stops/Clvimtr3", "https://tec.openplanner.team/stops/Clvmesa2"], ["https://tec.openplanner.team/stops/X640asb", "https://tec.openplanner.team/stops/X643aba"], ["https://tec.openplanner.team/stops/Csabrun1", "https://tec.openplanner.team/stops/Cvpsncb1"], ["https://tec.openplanner.team/stops/Bborppa1", "https://tec.openplanner.team/stops/Bitrhou1"], ["https://tec.openplanner.team/stops/LBgnach2", "https://tec.openplanner.team/stops/LGmhedo2"], ["https://tec.openplanner.team/stops/H1hn365b", "https://tec.openplanner.team/stops/H1ms940b"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LLMfond2"], ["https://tec.openplanner.team/stops/N501hna", "https://tec.openplanner.team/stops/N501ima"], ["https://tec.openplanner.team/stops/Bneecha1", "https://tec.openplanner.team/stops/Bneeegl2"], ["https://tec.openplanner.team/stops/Lanlona2", "https://tec.openplanner.team/stops/Lantonn1"], ["https://tec.openplanner.team/stops/X614aha", "https://tec.openplanner.team/stops/X614axa"], ["https://tec.openplanner.team/stops/Cacgare2", "https://tec.openplanner.team/stops/NC24aea"], ["https://tec.openplanner.team/stops/Cfrcham2", "https://tec.openplanner.team/stops/Cmecime2"], ["https://tec.openplanner.team/stops/LsVlust1", "https://tec.openplanner.team/stops/LsVlust2"], ["https://tec.openplanner.team/stops/N535acb", "https://tec.openplanner.team/stops/N535asb"], ["https://tec.openplanner.team/stops/H1ls109a", "https://tec.openplanner.team/stops/H1ls109b"], ["https://tec.openplanner.team/stops/H4ty305a", "https://tec.openplanner.team/stops/H4ty416a"], ["https://tec.openplanner.team/stops/H1gr111b", "https://tec.openplanner.team/stops/H1mk111a"], ["https://tec.openplanner.team/stops/LCFchir1", "https://tec.openplanner.team/stops/LFIeg--2"], ["https://tec.openplanner.team/stops/X639aua", "https://tec.openplanner.team/stops/X639aub"], ["https://tec.openplanner.team/stops/X747aca", "https://tec.openplanner.team/stops/X747acb"], ["https://tec.openplanner.team/stops/Cmmserv2", "https://tec.openplanner.team/stops/Cmmserv3"], ["https://tec.openplanner.team/stops/Cfaysle1", "https://tec.openplanner.team/stops/Cfaysle2"], ["https://tec.openplanner.team/stops/Bhencha1", "https://tec.openplanner.team/stops/Bhenhau2"], ["https://tec.openplanner.team/stops/Lstchu-*", "https://tec.openplanner.team/stops/Lstchu-3"], ["https://tec.openplanner.team/stops/X823adb", "https://tec.openplanner.team/stops/X823aff"], ["https://tec.openplanner.team/stops/N125aca", "https://tec.openplanner.team/stops/N149ahc"], ["https://tec.openplanner.team/stops/N312aab", "https://tec.openplanner.team/stops/X892agb"], ["https://tec.openplanner.team/stops/LATphar1", "https://tec.openplanner.team/stops/LATphar2"], ["https://tec.openplanner.team/stops/Ljecocc1", "https://tec.openplanner.team/stops/Ljecocc2"], ["https://tec.openplanner.team/stops/LoUhein2", "https://tec.openplanner.team/stops/LoUpete1"], ["https://tec.openplanner.team/stops/X994aba", "https://tec.openplanner.team/stops/X994agb"], ["https://tec.openplanner.team/stops/LHtdros2", "https://tec.openplanner.team/stops/LtEnatu2"], ["https://tec.openplanner.team/stops/LSCeg--1", "https://tec.openplanner.team/stops/LSCeg--2"], ["https://tec.openplanner.team/stops/LAWjaur1", "https://tec.openplanner.team/stops/LAWmc--1"], ["https://tec.openplanner.team/stops/LFychpl2", "https://tec.openplanner.team/stops/LFymare3"], ["https://tec.openplanner.team/stops/Lseaite1", "https://tec.openplanner.team/stops/Lsebico1"], ["https://tec.openplanner.team/stops/N551ahb", "https://tec.openplanner.team/stops/N551arc"], ["https://tec.openplanner.team/stops/Lfhchaf*", "https://tec.openplanner.team/stops/Lfhtrxc1"], ["https://tec.openplanner.team/stops/N103afa", "https://tec.openplanner.team/stops/N103aga"], ["https://tec.openplanner.team/stops/N874aba", "https://tec.openplanner.team/stops/N874aka"], ["https://tec.openplanner.team/stops/LBEcomm1", "https://tec.openplanner.team/stops/LBEnina6"], ["https://tec.openplanner.team/stops/X899aaa", "https://tec.openplanner.team/stops/X899aab"], ["https://tec.openplanner.team/stops/Ccheden2", "https://tec.openplanner.team/stops/Cchfran2"], ["https://tec.openplanner.team/stops/LRChote1", "https://tec.openplanner.team/stops/LRChote2"], ["https://tec.openplanner.team/stops/X597aab", "https://tec.openplanner.team/stops/X796aib"], ["https://tec.openplanner.team/stops/Lflsana1", "https://tec.openplanner.team/stops/Lmabott2"], ["https://tec.openplanner.team/stops/Cchsud18", "https://tec.openplanner.team/stops/Cchtram2"], ["https://tec.openplanner.team/stops/H4bo116b", "https://tec.openplanner.team/stops/H4bo178b"], ["https://tec.openplanner.team/stops/N515aob", "https://tec.openplanner.team/stops/NR27aaa"], ["https://tec.openplanner.team/stops/LWalyce1", "https://tec.openplanner.team/stops/LWarema2"], ["https://tec.openplanner.team/stops/H4hu115b", "https://tec.openplanner.team/stops/H4ld124b"], ["https://tec.openplanner.team/stops/N118anb", "https://tec.openplanner.team/stops/N118anc"], ["https://tec.openplanner.team/stops/Bblamp5", "https://tec.openplanner.team/stops/Bwatcli2"], ["https://tec.openplanner.team/stops/LLrscie1", "https://tec.openplanner.team/stops/LTHturo4"], ["https://tec.openplanner.team/stops/LCleg--1", "https://tec.openplanner.team/stops/LClflor1"], ["https://tec.openplanner.team/stops/Beclpma2", "https://tec.openplanner.team/stops/H2me115a"], ["https://tec.openplanner.team/stops/Ccoacie2", "https://tec.openplanner.team/stops/Ccoconf2"], ["https://tec.openplanner.team/stops/H4ir162a", "https://tec.openplanner.team/stops/H4ir166a"], ["https://tec.openplanner.team/stops/LPLc65-1", "https://tec.openplanner.team/stops/Lsearbo1"], ["https://tec.openplanner.team/stops/H2hp116a", "https://tec.openplanner.team/stops/H2hp125b"], ["https://tec.openplanner.team/stops/Lbocime1", "https://tec.openplanner.team/stops/Lboeg--1"], ["https://tec.openplanner.team/stops/Ccotrie1", "https://tec.openplanner.team/stops/Ccotrie4"], ["https://tec.openplanner.team/stops/Brixga13", "https://tec.openplanner.team/stops/Brixpla2"], ["https://tec.openplanner.team/stops/X824acb", "https://tec.openplanner.team/stops/X824aja"], ["https://tec.openplanner.team/stops/Cmmbmad1", "https://tec.openplanner.team/stops/Cmmmarb2"], ["https://tec.openplanner.team/stops/LbTkreu3", "https://tec.openplanner.team/stops/LbTkreu4"], ["https://tec.openplanner.team/stops/H1ro138a", "https://tec.openplanner.team/stops/H1ro141a"], ["https://tec.openplanner.team/stops/Lmoboeu2", "https://tec.openplanner.team/stops/Lmoknae3"], ["https://tec.openplanner.team/stops/H4ty309a", "https://tec.openplanner.team/stops/H4ty338b"], ["https://tec.openplanner.team/stops/N506aga", "https://tec.openplanner.team/stops/N506aha"], ["https://tec.openplanner.team/stops/N102aaa", "https://tec.openplanner.team/stops/N102aba"], ["https://tec.openplanner.team/stops/N106aab", "https://tec.openplanner.team/stops/N155aab"], ["https://tec.openplanner.team/stops/N209aic", "https://tec.openplanner.team/stops/N209ajb"], ["https://tec.openplanner.team/stops/Lagjard1", "https://tec.openplanner.team/stops/Lagtenn1"], ["https://tec.openplanner.team/stops/X822afa", "https://tec.openplanner.team/stops/X822aka"], ["https://tec.openplanner.team/stops/N151abb", "https://tec.openplanner.team/stops/N152aaa"], ["https://tec.openplanner.team/stops/Cfccabi1", "https://tec.openplanner.team/stops/Cfccol2"], ["https://tec.openplanner.team/stops/LOUchen1", "https://tec.openplanner.team/stops/LOUherm1"], ["https://tec.openplanner.team/stops/N207aba", "https://tec.openplanner.team/stops/N207aca"], ["https://tec.openplanner.team/stops/X620afa", "https://tec.openplanner.team/stops/X620afb"], ["https://tec.openplanner.team/stops/N501lpa", "https://tec.openplanner.team/stops/N501lrb"], ["https://tec.openplanner.team/stops/Bclgavi1", "https://tec.openplanner.team/stops/Bclglbu1"], ["https://tec.openplanner.team/stops/H1ob339b", "https://tec.openplanner.team/stops/H1sd344b"], ["https://tec.openplanner.team/stops/X261aba", "https://tec.openplanner.team/stops/X261abb"], ["https://tec.openplanner.team/stops/N501mvc", "https://tec.openplanner.team/stops/N501mvd"], ["https://tec.openplanner.team/stops/Bllngar6", "https://tec.openplanner.team/stops/Bllngar7"], ["https://tec.openplanner.team/stops/X948aha", "https://tec.openplanner.team/stops/X948asb"], ["https://tec.openplanner.team/stops/H1sg147a", "https://tec.openplanner.team/stops/H1sg148b"], ["https://tec.openplanner.team/stops/X639ala", "https://tec.openplanner.team/stops/X639ata"], ["https://tec.openplanner.team/stops/H1pa109a", "https://tec.openplanner.team/stops/H1pa110a"], ["https://tec.openplanner.team/stops/Cjuquai1", "https://tec.openplanner.team/stops/Cjuquai2"], ["https://tec.openplanner.team/stops/LMNheme1", "https://tec.openplanner.team/stops/LMNpann1"], ["https://tec.openplanner.team/stops/N501hqb", "https://tec.openplanner.team/stops/N501htb"], ["https://tec.openplanner.team/stops/LOTsav-1", "https://tec.openplanner.team/stops/LOTsav-2"], ["https://tec.openplanner.team/stops/X837aab", "https://tec.openplanner.team/stops/X837aba"], ["https://tec.openplanner.team/stops/X608aea", "https://tec.openplanner.team/stops/X608aua"], ["https://tec.openplanner.team/stops/Cjufour4", "https://tec.openplanner.team/stops/Clostan1"], ["https://tec.openplanner.team/stops/H4mo134a", "https://tec.openplanner.team/stops/H4mo175a"], ["https://tec.openplanner.team/stops/LrUlasc1", "https://tec.openplanner.team/stops/LrUlasc2"], ["https://tec.openplanner.team/stops/N509aib", "https://tec.openplanner.team/stops/N509ala"], ["https://tec.openplanner.team/stops/X784aia", "https://tec.openplanner.team/stops/X784aka"], ["https://tec.openplanner.team/stops/LTPpisc1", "https://tec.openplanner.team/stops/LTPpisc2"], ["https://tec.openplanner.team/stops/Bboutry1", "https://tec.openplanner.team/stops/Bboutry2"], ["https://tec.openplanner.team/stops/Bbsifmo1", "https://tec.openplanner.team/stops/Bbsipos1"], ["https://tec.openplanner.team/stops/H4bq154a", "https://tec.openplanner.team/stops/H4cp103a"], ["https://tec.openplanner.team/stops/LSAjacq2", "https://tec.openplanner.team/stops/LSAtrih2"], ["https://tec.openplanner.team/stops/N539ava", "https://tec.openplanner.team/stops/N539bca"], ["https://tec.openplanner.team/stops/H1em111a", "https://tec.openplanner.team/stops/H1em111b"], ["https://tec.openplanner.team/stops/X617adb", "https://tec.openplanner.team/stops/X695ada"], ["https://tec.openplanner.team/stops/N229adb", "https://tec.openplanner.team/stops/N229aqa"], ["https://tec.openplanner.team/stops/X773aaa", "https://tec.openplanner.team/stops/X773aba"], ["https://tec.openplanner.team/stops/LLYchpl1", "https://tec.openplanner.team/stops/LOMdTEC2"], ["https://tec.openplanner.team/stops/H1qu101b", "https://tec.openplanner.team/stops/H1qu112a"], ["https://tec.openplanner.team/stops/LSPwarf2", "https://tec.openplanner.team/stops/LSZjona1"], ["https://tec.openplanner.team/stops/LWAalou2", "https://tec.openplanner.team/stops/LWAwegg1"], ["https://tec.openplanner.team/stops/Bclgbvi1", "https://tec.openplanner.team/stops/Bdlmgla3"], ["https://tec.openplanner.team/stops/H5bl123b", "https://tec.openplanner.team/stops/H5bl143b"], ["https://tec.openplanner.team/stops/X626aba", "https://tec.openplanner.team/stops/X626abb"], ["https://tec.openplanner.team/stops/X802asa", "https://tec.openplanner.team/stops/X802aya"], ["https://tec.openplanner.team/stops/X982ayb", "https://tec.openplanner.team/stops/X982bba"], ["https://tec.openplanner.team/stops/Brsrpri1", "https://tec.openplanner.team/stops/Brsrpri2"], ["https://tec.openplanner.team/stops/Cnamonn2", "https://tec.openplanner.team/stops/Cnaplha1"], ["https://tec.openplanner.team/stops/LLM4rou1", "https://tec.openplanner.team/stops/LLM4rou3"], ["https://tec.openplanner.team/stops/Bblabfo2", "https://tec.openplanner.team/stops/Bblavhu2"], ["https://tec.openplanner.team/stops/H4mv192a", "https://tec.openplanner.team/stops/H4oe149a"], ["https://tec.openplanner.team/stops/H4be146a", "https://tec.openplanner.team/stops/H5bl117a"], ["https://tec.openplanner.team/stops/Bgdhlai2", "https://tec.openplanner.team/stops/Bthsset1"], ["https://tec.openplanner.team/stops/H1bo102a", "https://tec.openplanner.team/stops/H1hi123a"], ["https://tec.openplanner.team/stops/Cmypela2", "https://tec.openplanner.team/stops/Cmyvesa1"], ["https://tec.openplanner.team/stops/Bosqgar2", "https://tec.openplanner.team/stops/Bosqpqu2"], ["https://tec.openplanner.team/stops/Lrelier2", "https://tec.openplanner.team/stops/LSAtrih1"], ["https://tec.openplanner.team/stops/LFChofv2", "https://tec.openplanner.team/stops/LFChuis2"], ["https://tec.openplanner.team/stops/LJAdeho2", "https://tec.openplanner.team/stops/LJAdeho4"], ["https://tec.openplanner.team/stops/N124aac", "https://tec.openplanner.team/stops/N124aca"], ["https://tec.openplanner.team/stops/H1br126b", "https://tec.openplanner.team/stops/H1br129a"], ["https://tec.openplanner.team/stops/Livfays1", "https://tec.openplanner.team/stops/LRaplac1"], ["https://tec.openplanner.team/stops/X664aba", "https://tec.openplanner.team/stops/X664aeb"], ["https://tec.openplanner.team/stops/X725apa", "https://tec.openplanner.team/stops/X725bea"], ["https://tec.openplanner.team/stops/N501isb", "https://tec.openplanner.team/stops/N501ita"], ["https://tec.openplanner.team/stops/Buccobs2", "https://tec.openplanner.team/stops/Buccplj2"], ["https://tec.openplanner.team/stops/LVHtill1", "https://tec.openplanner.team/stops/LVHtill2"], ["https://tec.openplanner.team/stops/LBvnico2", "https://tec.openplanner.team/stops/LBvviem1"], ["https://tec.openplanner.team/stops/H1hy144a", "https://tec.openplanner.team/stops/H1qy135a"], ["https://tec.openplanner.team/stops/Beclaub1", "https://tec.openplanner.team/stops/Beclaub2"], ["https://tec.openplanner.team/stops/N118aob", "https://tec.openplanner.team/stops/N118ata"], ["https://tec.openplanner.team/stops/LCPscay2", "https://tec.openplanner.team/stops/LOncar-*"], ["https://tec.openplanner.team/stops/X805aaa", "https://tec.openplanner.team/stops/X805aga"], ["https://tec.openplanner.team/stops/Bborche1", "https://tec.openplanner.team/stops/Bitrmon1"], ["https://tec.openplanner.team/stops/Lticime2", "https://tec.openplanner.team/stops/Ltiegli2"], ["https://tec.openplanner.team/stops/Bmrlhan3", "https://tec.openplanner.team/stops/Bmrllgr1"], ["https://tec.openplanner.team/stops/LGEhosp2", "https://tec.openplanner.team/stops/LGEwalk1"], ["https://tec.openplanner.team/stops/N519ama", "https://tec.openplanner.team/stops/N519apa"], ["https://tec.openplanner.team/stops/N512aea", "https://tec.openplanner.team/stops/N512aeb"], ["https://tec.openplanner.team/stops/Bllnpaf1", "https://tec.openplanner.team/stops/Bllnpaf3"], ["https://tec.openplanner.team/stops/Loudemo1", "https://tec.openplanner.team/stops/Loudemo2"], ["https://tec.openplanner.team/stops/Bgzdast1", "https://tec.openplanner.team/stops/Bgzdpos3"], ["https://tec.openplanner.team/stops/H4ga149b", "https://tec.openplanner.team/stops/H4ga161d"], ["https://tec.openplanner.team/stops/X750acb", "https://tec.openplanner.team/stops/X750aia"], ["https://tec.openplanner.team/stops/X662aea", "https://tec.openplanner.team/stops/X662aeb"], ["https://tec.openplanner.team/stops/Bwavgar4", "https://tec.openplanner.team/stops/Bwavgar5"], ["https://tec.openplanner.team/stops/LFrcent1", "https://tec.openplanner.team/stops/LPtrefa1"], ["https://tec.openplanner.team/stops/Cfcbobr1", "https://tec.openplanner.team/stops/Cfcctru2"], ["https://tec.openplanner.team/stops/Cgolimi1", "https://tec.openplanner.team/stops/Cgosmoi2"], ["https://tec.openplanner.team/stops/Bwatfia2", "https://tec.openplanner.team/stops/Bwatgar5"], ["https://tec.openplanner.team/stops/X548aaa", "https://tec.openplanner.team/stops/X777aaa"], ["https://tec.openplanner.team/stops/Beclaub2", "https://tec.openplanner.team/stops/H2me116a"], ["https://tec.openplanner.team/stops/N501dgb", "https://tec.openplanner.team/stops/N501dia"], ["https://tec.openplanner.team/stops/Crg3arb1", "https://tec.openplanner.team/stops/Crglyre1"], ["https://tec.openplanner.team/stops/Cjuecha2", "https://tec.openplanner.team/stops/Cjuhame2"], ["https://tec.openplanner.team/stops/N501fya", "https://tec.openplanner.team/stops/N501gpd"], ["https://tec.openplanner.team/stops/H2tr247b", "https://tec.openplanner.team/stops/H2tr248a"], ["https://tec.openplanner.team/stops/X359amb", "https://tec.openplanner.team/stops/X857aaa"], ["https://tec.openplanner.team/stops/Ctuecol1", "https://tec.openplanner.team/stops/Ctuplac2"], ["https://tec.openplanner.team/stops/Lmogoff1", "https://tec.openplanner.team/stops/Lmogoff2"], ["https://tec.openplanner.team/stops/LBvviem3", "https://tec.openplanner.team/stops/LFacruc1"], ["https://tec.openplanner.team/stops/LNEolne1", "https://tec.openplanner.team/stops/LNEvand2"], ["https://tec.openplanner.team/stops/LARgare2", "https://tec.openplanner.team/stops/Lchmarc1"], ["https://tec.openplanner.team/stops/Lcebois1", "https://tec.openplanner.team/stops/Lcejobe1"], ["https://tec.openplanner.team/stops/LhEklos1", "https://tec.openplanner.team/stops/LhEklos2"], ["https://tec.openplanner.team/stops/N543ang", "https://tec.openplanner.team/stops/N543anh"], ["https://tec.openplanner.team/stops/X897afb", "https://tec.openplanner.team/stops/X897aya"], ["https://tec.openplanner.team/stops/N573ada", "https://tec.openplanner.team/stops/N573aeb"], ["https://tec.openplanner.team/stops/Bfelada2", "https://tec.openplanner.team/stops/Bfelbri2"], ["https://tec.openplanner.team/stops/Chhclde1", "https://tec.openplanner.team/stops/Chhverr2"], ["https://tec.openplanner.team/stops/H1fl136c", "https://tec.openplanner.team/stops/H1fl370a"], ["https://tec.openplanner.team/stops/LLvferm1", "https://tec.openplanner.team/stops/LLvferm2"], ["https://tec.openplanner.team/stops/H4ru236a", "https://tec.openplanner.team/stops/H4ru240a"], ["https://tec.openplanner.team/stops/LhObull1", "https://tec.openplanner.team/stops/LhObull2"], ["https://tec.openplanner.team/stops/H4ae101b", "https://tec.openplanner.team/stops/H4ef113a"], ["https://tec.openplanner.team/stops/LAMdelh*", "https://tec.openplanner.team/stops/LAMweha2"], ["https://tec.openplanner.team/stops/H4mx116a", "https://tec.openplanner.team/stops/H4po128b"], ["https://tec.openplanner.team/stops/LXoharz3", "https://tec.openplanner.team/stops/X599agb"], ["https://tec.openplanner.team/stops/N346adb", "https://tec.openplanner.team/stops/X346afa"], ["https://tec.openplanner.team/stops/LHMgulp2", "https://tec.openplanner.team/stops/LHMthys1"], ["https://tec.openplanner.team/stops/X821aaa", "https://tec.openplanner.team/stops/X827aaa"], ["https://tec.openplanner.team/stops/Bgntcbo1", "https://tec.openplanner.team/stops/Btilmon2"], ["https://tec.openplanner.team/stops/Bflcneu2", "https://tec.openplanner.team/stops/Bramrdf2"], ["https://tec.openplanner.team/stops/LeUhaas1", "https://tec.openplanner.team/stops/LeUolen1"], ["https://tec.openplanner.team/stops/Cfrchfe1", "https://tec.openplanner.team/stops/Cfrcoqu4"], ["https://tec.openplanner.team/stops/N584asa", "https://tec.openplanner.team/stops/N584cab"], ["https://tec.openplanner.team/stops/X793aib", "https://tec.openplanner.team/stops/X793aob"], ["https://tec.openplanner.team/stops/H4wn125a", "https://tec.openplanner.team/stops/H4wn127a"], ["https://tec.openplanner.team/stops/H2lc145b", "https://tec.openplanner.team/stops/H2ll196b"], ["https://tec.openplanner.team/stops/H1hm174a", "https://tec.openplanner.team/stops/H1ss348b"], ["https://tec.openplanner.team/stops/Cgy3011", "https://tec.openplanner.team/stops/Cmtyern2"], ["https://tec.openplanner.team/stops/Lvoeg--1", "https://tec.openplanner.team/stops/Lvoplac2"], ["https://tec.openplanner.team/stops/H1so136a", "https://tec.openplanner.team/stops/H1so136c"], ["https://tec.openplanner.team/stops/X715aib", "https://tec.openplanner.team/stops/X715alb"], ["https://tec.openplanner.team/stops/Ccigene1", "https://tec.openplanner.team/stops/Clvchen2"], ["https://tec.openplanner.team/stops/X747ajb", "https://tec.openplanner.team/stops/X749aea"], ["https://tec.openplanner.team/stops/H4ry129b", "https://tec.openplanner.team/stops/H4ry132b"], ["https://tec.openplanner.team/stops/LLeeg--1", "https://tec.openplanner.team/stops/LLegare1"], ["https://tec.openplanner.team/stops/LCPbell1", "https://tec.openplanner.team/stops/LHycent*"], ["https://tec.openplanner.team/stops/Llgfran1", "https://tec.openplanner.team/stops/LlgguilB"], ["https://tec.openplanner.team/stops/Bboncfv1", "https://tec.openplanner.team/stops/Blontry2"], ["https://tec.openplanner.team/stops/Blhueso1", "https://tec.openplanner.team/stops/Blhupqu1"], ["https://tec.openplanner.team/stops/X773aka", "https://tec.openplanner.team/stops/X773akb"], ["https://tec.openplanner.team/stops/LCF2spa1", "https://tec.openplanner.team/stops/LCF2spa2"], ["https://tec.openplanner.team/stops/N230aga", "https://tec.openplanner.team/stops/N230aka"], ["https://tec.openplanner.team/stops/H1hr129a", "https://tec.openplanner.team/stops/H1hr129b"], ["https://tec.openplanner.team/stops/H1cu111a", "https://tec.openplanner.team/stops/H1ms312a"], ["https://tec.openplanner.team/stops/H1ha201b", "https://tec.openplanner.team/stops/H1ob330a"], ["https://tec.openplanner.team/stops/H1ha182b", "https://tec.openplanner.team/stops/H1ha199a"], ["https://tec.openplanner.team/stops/N501jhb", "https://tec.openplanner.team/stops/N501jpa"], ["https://tec.openplanner.team/stops/Csefour1", "https://tec.openplanner.team/stops/Csrcant1"], ["https://tec.openplanner.team/stops/Cvstouv1", "https://tec.openplanner.team/stops/Cwfplac1"], ["https://tec.openplanner.team/stops/Clddeve1", "https://tec.openplanner.team/stops/Cldplac1"], ["https://tec.openplanner.team/stops/Crcegli1", "https://tec.openplanner.team/stops/Crcverr1"], ["https://tec.openplanner.team/stops/LWbcarr1", "https://tec.openplanner.team/stops/LWbregn1"], ["https://tec.openplanner.team/stops/LCRecmo2", "https://tec.openplanner.team/stops/LFmbure2"], ["https://tec.openplanner.team/stops/N241aga", "https://tec.openplanner.team/stops/N585abb"], ["https://tec.openplanner.team/stops/Cjupier1", "https://tec.openplanner.team/stops/Cjuquai1"], ["https://tec.openplanner.team/stops/Balswwe1", "https://tec.openplanner.team/stops/Bbrlpar2"], ["https://tec.openplanner.team/stops/X715alb", "https://tec.openplanner.team/stops/X715aqa"], ["https://tec.openplanner.team/stops/LoEauto1", "https://tec.openplanner.team/stops/LrDkirc1"], ["https://tec.openplanner.team/stops/Llaacca2", "https://tec.openplanner.team/stops/Llabriq2"], ["https://tec.openplanner.team/stops/Cchsud12", "https://tec.openplanner.team/stops/Cchsud16"], ["https://tec.openplanner.team/stops/X850ada", "https://tec.openplanner.team/stops/X850aeb"], ["https://tec.openplanner.team/stops/LSPmart1", "https://tec.openplanner.team/stops/LSPmart2"], ["https://tec.openplanner.team/stops/Llgnico*", "https://tec.openplanner.team/stops/Llgwiar1"], ["https://tec.openplanner.team/stops/H1sg142a", "https://tec.openplanner.team/stops/H1sg147a"], ["https://tec.openplanner.team/stops/LMYlieg2", "https://tec.openplanner.team/stops/X597ala"], ["https://tec.openplanner.team/stops/H1hg178b", "https://tec.openplanner.team/stops/H1hg180b"], ["https://tec.openplanner.team/stops/N150afa", "https://tec.openplanner.team/stops/N150aia"], ["https://tec.openplanner.team/stops/H1hv130a", "https://tec.openplanner.team/stops/H1hv130b"], ["https://tec.openplanner.team/stops/N565adb", "https://tec.openplanner.team/stops/N565aea"], ["https://tec.openplanner.team/stops/N232bca", "https://tec.openplanner.team/stops/N232bga"], ["https://tec.openplanner.team/stops/H1ha195b", "https://tec.openplanner.team/stops/H1ha198b"], ["https://tec.openplanner.team/stops/LCUmonu1", "https://tec.openplanner.team/stops/LEntrix2"], ["https://tec.openplanner.team/stops/N501gqb", "https://tec.openplanner.team/stops/N501ndb"], ["https://tec.openplanner.team/stops/N101adc", "https://tec.openplanner.team/stops/N118baa"], ["https://tec.openplanner.team/stops/N236afb", "https://tec.openplanner.team/stops/N236anb"], ["https://tec.openplanner.team/stops/Lwagare1", "https://tec.openplanner.team/stops/Lwapomp1"], ["https://tec.openplanner.team/stops/N111abb", "https://tec.openplanner.team/stops/N111afb"], ["https://tec.openplanner.team/stops/H1cu115b", "https://tec.openplanner.team/stops/H1cu120b"], ["https://tec.openplanner.team/stops/X991aea", "https://tec.openplanner.team/stops/X991ala"], ["https://tec.openplanner.team/stops/Cgogare2", "https://tec.openplanner.team/stops/Cgostex2"], ["https://tec.openplanner.team/stops/N534bta", "https://tec.openplanner.team/stops/N534btb"], ["https://tec.openplanner.team/stops/X826aeb", "https://tec.openplanner.team/stops/X826afb"], ["https://tec.openplanner.team/stops/Ccypetv2", "https://tec.openplanner.team/stops/Cvlcalv2"], ["https://tec.openplanner.team/stops/N574aba", "https://tec.openplanner.team/stops/N574aca"], ["https://tec.openplanner.team/stops/Bjaneco1", "https://tec.openplanner.team/stops/Bjanegl4"], ["https://tec.openplanner.team/stops/H4bq102a", "https://tec.openplanner.team/stops/H4bq154a"], ["https://tec.openplanner.team/stops/LeSkreu2", "https://tec.openplanner.team/stops/LtH37c-2"], ["https://tec.openplanner.team/stops/Lladete4", "https://tec.openplanner.team/stops/Lvo60--2"], ["https://tec.openplanner.team/stops/LCIpiet2", "https://tec.openplanner.team/stops/LCIsucr2"], ["https://tec.openplanner.team/stops/LCPbatt1", "https://tec.openplanner.team/stops/LCTgare3"], ["https://tec.openplanner.team/stops/X873aab", "https://tec.openplanner.team/stops/X873aca"], ["https://tec.openplanner.team/stops/LWevalf1", "https://tec.openplanner.team/stops/LWevalf2"], ["https://tec.openplanner.team/stops/H1ls105b", "https://tec.openplanner.team/stops/H1ls106a"], ["https://tec.openplanner.team/stops/Bclgapi1", "https://tec.openplanner.team/stops/Bclgapi2"], ["https://tec.openplanner.team/stops/N557aga", "https://tec.openplanner.team/stops/N557agb"], ["https://tec.openplanner.team/stops/LAMfroi1", "https://tec.openplanner.team/stops/LAMfroi2"], ["https://tec.openplanner.team/stops/H2sb226b", "https://tec.openplanner.team/stops/H2tr248b"], ["https://tec.openplanner.team/stops/H4eg106a", "https://tec.openplanner.team/stops/H4eg106b"], ["https://tec.openplanner.team/stops/LmNkrew2", "https://tec.openplanner.team/stops/LmNlieb2"], ["https://tec.openplanner.team/stops/Llxec--1", "https://tec.openplanner.team/stops/Llxec--2"], ["https://tec.openplanner.team/stops/X615arb", "https://tec.openplanner.team/stops/X687aga"], ["https://tec.openplanner.team/stops/LVNwanz1", "https://tec.openplanner.team/stops/LWDplac1"], ["https://tec.openplanner.team/stops/Cauromi2", "https://tec.openplanner.team/stops/Causncb2"], ["https://tec.openplanner.team/stops/LeYheid2", "https://tec.openplanner.team/stops/LeYwald2"], ["https://tec.openplanner.team/stops/N501cka", "https://tec.openplanner.team/stops/N501ckb"], ["https://tec.openplanner.team/stops/LAbbass1", "https://tec.openplanner.team/stops/LAbchpl1"], ["https://tec.openplanner.team/stops/X601bmb", "https://tec.openplanner.team/stops/X602afa"], ["https://tec.openplanner.team/stops/Lagcile2", "https://tec.openplanner.team/stops/Laggare1"], ["https://tec.openplanner.team/stops/LESmc--1", "https://tec.openplanner.team/stops/LESmont2"], ["https://tec.openplanner.team/stops/Lghchap1", "https://tec.openplanner.team/stops/Lghferr1"], ["https://tec.openplanner.team/stops/LFPho8a1", "https://tec.openplanner.team/stops/LFPknap1"], ["https://tec.openplanner.team/stops/H1cu110a", "https://tec.openplanner.team/stops/H1cu118b"], ["https://tec.openplanner.team/stops/H4bo110b", "https://tec.openplanner.team/stops/H5st162b"], ["https://tec.openplanner.team/stops/H4ma418a", "https://tec.openplanner.team/stops/H4ma420a"], ["https://tec.openplanner.team/stops/N542aka", "https://tec.openplanner.team/stops/N542arb"], ["https://tec.openplanner.team/stops/H4fo118a", "https://tec.openplanner.team/stops/H4fo119b"], ["https://tec.openplanner.team/stops/Cvtndam3", "https://tec.openplanner.team/stops/Cvtvois1"], ["https://tec.openplanner.team/stops/Bdoncen1", "https://tec.openplanner.team/stops/Bdoncen2"], ["https://tec.openplanner.team/stops/LbTcarm1", "https://tec.openplanner.team/stops/LbTcarm2"], ["https://tec.openplanner.team/stops/X901apa", "https://tec.openplanner.team/stops/X901aub"], ["https://tec.openplanner.team/stops/LMXempe1", "https://tec.openplanner.team/stops/LMXempe2"], ["https://tec.openplanner.team/stops/X982bnb", "https://tec.openplanner.team/stops/X986aba"], ["https://tec.openplanner.team/stops/H1gy112a", "https://tec.openplanner.team/stops/H5fl101a"], ["https://tec.openplanner.team/stops/X871acb", "https://tec.openplanner.team/stops/X877aia"], ["https://tec.openplanner.team/stops/Lghalli1", "https://tec.openplanner.team/stops/Lghremy1"], ["https://tec.openplanner.team/stops/X869aca", "https://tec.openplanner.team/stops/X869afb"], ["https://tec.openplanner.team/stops/LaAlinz1", "https://tec.openplanner.team/stops/LlCgren1"], ["https://tec.openplanner.team/stops/Lbbbuse2", "https://tec.openplanner.team/stops/Lbbviad1"], ["https://tec.openplanner.team/stops/N534caa", "https://tec.openplanner.team/stops/N534cbh"], ["https://tec.openplanner.team/stops/X720aeb", "https://tec.openplanner.team/stops/X733aaa"], ["https://tec.openplanner.team/stops/H1an100a", "https://tec.openplanner.team/stops/H1bx104a"], ["https://tec.openplanner.team/stops/X898aab", "https://tec.openplanner.team/stops/X898aba"], ["https://tec.openplanner.team/stops/Crsaise1", "https://tec.openplanner.team/stops/Crsaise4"], ["https://tec.openplanner.team/stops/Lhrpwan1", "https://tec.openplanner.team/stops/Lwachal2"], ["https://tec.openplanner.team/stops/H2pr114b", "https://tec.openplanner.team/stops/H2pr115b"], ["https://tec.openplanner.team/stops/Lhecarc*", "https://tec.openplanner.team/stops/Lhepaqu1"], ["https://tec.openplanner.team/stops/H5at118a", "https://tec.openplanner.team/stops/H5at134a"], ["https://tec.openplanner.team/stops/LvA30--1", "https://tec.openplanner.team/stops/LvAwere1"], ["https://tec.openplanner.team/stops/X986aaa", "https://tec.openplanner.team/stops/X986ahb"], ["https://tec.openplanner.team/stops/LAWeg--1", "https://tec.openplanner.team/stops/LAWgill2"], ["https://tec.openplanner.team/stops/Lemarti2", "https://tec.openplanner.team/stops/Lemfort2"], ["https://tec.openplanner.team/stops/Cfcplac4", "https://tec.openplanner.team/stops/Cfcrdpr2"], ["https://tec.openplanner.team/stops/X725ama", "https://tec.openplanner.team/stops/X725aqb"], ["https://tec.openplanner.team/stops/H1gh143a", "https://tec.openplanner.team/stops/H1hh118b"], ["https://tec.openplanner.team/stops/Bgoemgr1", "https://tec.openplanner.team/stops/Bgoevli1"], ["https://tec.openplanner.team/stops/H4ty264a", "https://tec.openplanner.team/stops/H4ty320b"], ["https://tec.openplanner.team/stops/H1fr118b", "https://tec.openplanner.team/stops/H1fr133b"], ["https://tec.openplanner.team/stops/X659adc", "https://tec.openplanner.team/stops/X659ava"], ["https://tec.openplanner.team/stops/N529ada", "https://tec.openplanner.team/stops/N529ajb"], ["https://tec.openplanner.team/stops/N501gda", "https://tec.openplanner.team/stops/N501gta"], ["https://tec.openplanner.team/stops/Cwgmell1", "https://tec.openplanner.team/stops/Cwgmell3"], ["https://tec.openplanner.team/stops/H1he107a", "https://tec.openplanner.team/stops/H1he107b"], ["https://tec.openplanner.team/stops/X754ata", "https://tec.openplanner.team/stops/X754atb"], ["https://tec.openplanner.team/stops/Cfrcomp1", "https://tec.openplanner.team/stops/Cfrcomp2"], ["https://tec.openplanner.team/stops/Lcegare1", "https://tec.openplanner.team/stops/Lcepont1"], ["https://tec.openplanner.team/stops/N201ada", "https://tec.openplanner.team/stops/N201afa"], ["https://tec.openplanner.team/stops/H1ch102a", "https://tec.openplanner.team/stops/H5ar102a"], ["https://tec.openplanner.team/stops/N110ahb", "https://tec.openplanner.team/stops/N111aea"], ["https://tec.openplanner.team/stops/Bnvmfba1", "https://tec.openplanner.team/stops/N515asb"], ["https://tec.openplanner.team/stops/H2ma206b", "https://tec.openplanner.team/stops/H3th130b"], ["https://tec.openplanner.team/stops/Lalmitt2", "https://tec.openplanner.team/stops/Lalwaro1"], ["https://tec.openplanner.team/stops/H5pe133a", "https://tec.openplanner.team/stops/H5pe133b"], ["https://tec.openplanner.team/stops/LrAdrie2", "https://tec.openplanner.team/stops/LrAdrie5"], ["https://tec.openplanner.team/stops/NC44agb", "https://tec.openplanner.team/stops/NC44ahb"], ["https://tec.openplanner.team/stops/X833aaa", "https://tec.openplanner.team/stops/X833aba"], ["https://tec.openplanner.team/stops/X942abc", "https://tec.openplanner.team/stops/X942abd"], ["https://tec.openplanner.team/stops/H4mx115a", "https://tec.openplanner.team/stops/H4mx117b"], ["https://tec.openplanner.team/stops/Bwaucan2", "https://tec.openplanner.team/stops/Bwaucig1"], ["https://tec.openplanner.team/stops/N534ara", "https://tec.openplanner.team/stops/N534bga"], ["https://tec.openplanner.team/stops/Lpeatel1", "https://tec.openplanner.team/stops/LWeatel2"], ["https://tec.openplanner.team/stops/X342abb", "https://tec.openplanner.team/stops/X342aga"], ["https://tec.openplanner.team/stops/X991aab", "https://tec.openplanner.team/stops/X991afb"], ["https://tec.openplanner.team/stops/Bwatcap1", "https://tec.openplanner.team/stops/Bwatpro1"], ["https://tec.openplanner.team/stops/Lsebrun2", "https://tec.openplanner.team/stops/Lsebrun3"], ["https://tec.openplanner.team/stops/Blmlbou1", "https://tec.openplanner.team/stops/Brixape2"], ["https://tec.openplanner.team/stops/Bgemgjo1", "https://tec.openplanner.team/stops/N522bva"], ["https://tec.openplanner.team/stops/LHUamer1", "https://tec.openplanner.team/stops/NL80aca"], ["https://tec.openplanner.team/stops/H1hc127c", "https://tec.openplanner.team/stops/H5gr137b"], ["https://tec.openplanner.team/stops/Lflcime1", "https://tec.openplanner.team/stops/Lflec--1"], ["https://tec.openplanner.team/stops/Blnzcar2", "https://tec.openplanner.team/stops/N522aia"], ["https://tec.openplanner.team/stops/N308adb", "https://tec.openplanner.team/stops/N308aob"], ["https://tec.openplanner.team/stops/N505afa", "https://tec.openplanner.team/stops/N505aja"], ["https://tec.openplanner.team/stops/N501bnb", "https://tec.openplanner.team/stops/N501bua"], ["https://tec.openplanner.team/stops/LhGcasi1", "https://tec.openplanner.team/stops/LhGcasi2"], ["https://tec.openplanner.team/stops/Ctyhame2", "https://tec.openplanner.team/stops/N137ahb"], ["https://tec.openplanner.team/stops/H1ha191b", "https://tec.openplanner.team/stops/H1ha196a"], ["https://tec.openplanner.team/stops/LLAbure2", "https://tec.openplanner.team/stops/LPleclu1"], ["https://tec.openplanner.team/stops/Ctilobb1", "https://tec.openplanner.team/stops/H1fv103a"], ["https://tec.openplanner.team/stops/N349aba", "https://tec.openplanner.team/stops/N349abb"], ["https://tec.openplanner.team/stops/LAx41--2", "https://tec.openplanner.team/stops/LAxchpl1"], ["https://tec.openplanner.team/stops/N121aaa", "https://tec.openplanner.team/stops/N121aib"], ["https://tec.openplanner.team/stops/X654afa", "https://tec.openplanner.team/stops/X670aab"], ["https://tec.openplanner.team/stops/N501lcb", "https://tec.openplanner.team/stops/N501lcz"], ["https://tec.openplanner.team/stops/Llgcont1", "https://tec.openplanner.team/stops/Llgterr1"], ["https://tec.openplanner.team/stops/Canjonc2", "https://tec.openplanner.team/stops/Canrobe2"], ["https://tec.openplanner.team/stops/N291abb", "https://tec.openplanner.team/stops/N291aca"], ["https://tec.openplanner.team/stops/LArmeni1", "https://tec.openplanner.team/stops/X548afb"], ["https://tec.openplanner.team/stops/Bbealbu3", "https://tec.openplanner.team/stops/Bbealbu4"], ["https://tec.openplanner.team/stops/X806adb", "https://tec.openplanner.team/stops/X806afb"], ["https://tec.openplanner.team/stops/Borborb1", "https://tec.openplanner.team/stops/Borbtre2"], ["https://tec.openplanner.team/stops/N501jgb", "https://tec.openplanner.team/stops/N521aha"], ["https://tec.openplanner.team/stops/LGEbern2", "https://tec.openplanner.team/stops/LGEcent1"], ["https://tec.openplanner.team/stops/X608aha", "https://tec.openplanner.team/stops/X608aqa"], ["https://tec.openplanner.team/stops/LWAlpre1", "https://tec.openplanner.team/stops/LWAmois1"], ["https://tec.openplanner.team/stops/H5at142b", "https://tec.openplanner.team/stops/H5at235a"], ["https://tec.openplanner.team/stops/N501bxa", "https://tec.openplanner.team/stops/N501hfa"], ["https://tec.openplanner.team/stops/X953aca", "https://tec.openplanner.team/stops/X953aea"], ["https://tec.openplanner.team/stops/N577aeb", "https://tec.openplanner.team/stops/N577aib"], ["https://tec.openplanner.team/stops/H5qu143b", "https://tec.openplanner.team/stops/H5qu144b"], ["https://tec.openplanner.team/stops/LBYegli1", "https://tec.openplanner.team/stops/LHEelva1"], ["https://tec.openplanner.team/stops/H1nm140b", "https://tec.openplanner.team/stops/H1nm141b"], ["https://tec.openplanner.team/stops/H4es108b", "https://tec.openplanner.team/stops/H4hx123b"], ["https://tec.openplanner.team/stops/X738ada", "https://tec.openplanner.team/stops/X771afa"], ["https://tec.openplanner.team/stops/Ccoptca1", "https://tec.openplanner.team/stops/Ccoptca2"], ["https://tec.openplanner.team/stops/H1sp357b", "https://tec.openplanner.team/stops/H1sp357c"], ["https://tec.openplanner.team/stops/LCpvill2", "https://tec.openplanner.team/stops/LSPecho1"], ["https://tec.openplanner.team/stops/Lbemc--2", "https://tec.openplanner.team/stops/Llxeg--2"], ["https://tec.openplanner.team/stops/Lpebeco2", "https://tec.openplanner.team/stops/LTAbran2"], ["https://tec.openplanner.team/stops/Cgoson12", "https://tec.openplanner.team/stops/Cjuepee2"], ["https://tec.openplanner.team/stops/N151ajc", "https://tec.openplanner.team/stops/N151ajd"], ["https://tec.openplanner.team/stops/LhGbahn*", "https://tec.openplanner.team/stops/LhSfrei1"], ["https://tec.openplanner.team/stops/H4oq223a", "https://tec.openplanner.team/stops/H4oq223b"], ["https://tec.openplanner.team/stops/H4ef165b", "https://tec.openplanner.team/stops/H4ef165c"], ["https://tec.openplanner.team/stops/H3so161a", "https://tec.openplanner.team/stops/H3so179a"], ["https://tec.openplanner.team/stops/X542aha", "https://tec.openplanner.team/stops/X777acb"], ["https://tec.openplanner.team/stops/LVLhalb4", "https://tec.openplanner.team/stops/LVLpane2"], ["https://tec.openplanner.team/stops/Bglicsm2", "https://tec.openplanner.team/stops/Btlbtho1"], ["https://tec.openplanner.team/stops/Bbcoben2", "https://tec.openplanner.team/stops/Bbcopre1"], ["https://tec.openplanner.team/stops/Cgdberl1", "https://tec.openplanner.team/stops/Cgdrhau2"], ["https://tec.openplanner.team/stops/LATjaur2", "https://tec.openplanner.team/stops/LWNbeto1"], ["https://tec.openplanner.team/stops/H4ml206a", "https://tec.openplanner.team/stops/H4ml207a"], ["https://tec.openplanner.team/stops/H2ll190a", "https://tec.openplanner.team/stops/H2ll199b"], ["https://tec.openplanner.team/stops/H4ld125a", "https://tec.openplanner.team/stops/H4og214a"], ["https://tec.openplanner.team/stops/Llghori2", "https://tec.openplanner.team/stops/Llgvolg2"], ["https://tec.openplanner.team/stops/LSTamer2", "https://tec.openplanner.team/stops/LSTgran2"], ["https://tec.openplanner.team/stops/N204aab", "https://tec.openplanner.team/stops/N208aaa"], ["https://tec.openplanner.team/stops/H4to134b", "https://tec.openplanner.team/stops/H4to139b"], ["https://tec.openplanner.team/stops/H1si156a", "https://tec.openplanner.team/stops/H1si156d"], ["https://tec.openplanner.team/stops/LFRcoun2", "https://tec.openplanner.team/stops/LSPmalc1"], ["https://tec.openplanner.team/stops/Bchgcha1", "https://tec.openplanner.team/stops/Bchgflo2"], ["https://tec.openplanner.team/stops/X602aia", "https://tec.openplanner.team/stops/X602aib"], ["https://tec.openplanner.team/stops/Cflmart1", "https://tec.openplanner.team/stops/Cflpost1"], ["https://tec.openplanner.team/stops/Caimeno3", "https://tec.openplanner.team/stops/Crsaise1"], ["https://tec.openplanner.team/stops/X911ajb", "https://tec.openplanner.team/stops/X911anb"], ["https://tec.openplanner.team/stops/Landolh2", "https://tec.openplanner.team/stops/Lanrois2"], ["https://tec.openplanner.team/stops/N542alb", "https://tec.openplanner.team/stops/N578aca"], ["https://tec.openplanner.team/stops/LAVdepr1", "https://tec.openplanner.team/stops/LAVeg--2"], ["https://tec.openplanner.team/stops/Cjudest1", "https://tec.openplanner.team/stops/Cjumest2"], ["https://tec.openplanner.team/stops/LMsgara1", "https://tec.openplanner.team/stops/LMsgara2"], ["https://tec.openplanner.team/stops/X641aba", "https://tec.openplanner.team/stops/X641aca"], ["https://tec.openplanner.team/stops/X818anb", "https://tec.openplanner.team/stops/X818aob"], ["https://tec.openplanner.team/stops/Cmmgadi1", "https://tec.openplanner.team/stops/Cmmheur1"], ["https://tec.openplanner.team/stops/LaMfuss1", "https://tec.openplanner.team/stops/LaMthei2"], ["https://tec.openplanner.team/stops/H4co141a", "https://tec.openplanner.team/stops/H4co141b"], ["https://tec.openplanner.team/stops/LLUhotc1", "https://tec.openplanner.team/stops/LLUhotc2"], ["https://tec.openplanner.team/stops/X801bsa", "https://tec.openplanner.team/stops/X801bxa"], ["https://tec.openplanner.team/stops/N201aha", "https://tec.openplanner.team/stops/N201arb"], ["https://tec.openplanner.team/stops/LBNeu712", "https://tec.openplanner.team/stops/LMemaza1"], ["https://tec.openplanner.team/stops/N562amb", "https://tec.openplanner.team/stops/N562bsb"], ["https://tec.openplanner.team/stops/Cnadrev1", "https://tec.openplanner.team/stops/Cnanoir1"], ["https://tec.openplanner.team/stops/Brebrog2", "https://tec.openplanner.team/stops/H2pr114b"], ["https://tec.openplanner.team/stops/H1bb113b", "https://tec.openplanner.team/stops/H1bb116b"], ["https://tec.openplanner.team/stops/N104aad", "https://tec.openplanner.team/stops/N116aba"], ["https://tec.openplanner.team/stops/Lbopote1", "https://tec.openplanner.team/stops/Lsebonc2"], ["https://tec.openplanner.team/stops/Lhrmemo2", "https://tec.openplanner.team/stops/Lmigare1"], ["https://tec.openplanner.team/stops/X673aab", "https://tec.openplanner.team/stops/X821aab"], ["https://tec.openplanner.team/stops/X636bea", "https://tec.openplanner.team/stops/X649abb"], ["https://tec.openplanner.team/stops/Cjuhame3", "https://tec.openplanner.team/stops/Cjulamb1"], ["https://tec.openplanner.team/stops/LrAkape1", "https://tec.openplanner.team/stops/LrAkape2"], ["https://tec.openplanner.team/stops/N211ala", "https://tec.openplanner.team/stops/N211asa"], ["https://tec.openplanner.team/stops/Llgbwez2", "https://tec.openplanner.team/stops/Llgcham6"], ["https://tec.openplanner.team/stops/Bwatceg1", "https://tec.openplanner.team/stops/Bwatcli1"], ["https://tec.openplanner.team/stops/LSHfief1", "https://tec.openplanner.team/stops/LSHhade1"], ["https://tec.openplanner.team/stops/Lprferm1", "https://tec.openplanner.team/stops/Lprmoin1"], ["https://tec.openplanner.team/stops/LHUbail1", "https://tec.openplanner.team/stops/LTiespe1"], ["https://tec.openplanner.team/stops/H1ro133a", "https://tec.openplanner.team/stops/H1ro135a"], ["https://tec.openplanner.team/stops/X801aga", "https://tec.openplanner.team/stops/X801bta"], ["https://tec.openplanner.team/stops/Bhoeboo1", "https://tec.openplanner.team/stops/Blhurcl1"], ["https://tec.openplanner.team/stops/X801bma", "https://tec.openplanner.team/stops/X801clb"], ["https://tec.openplanner.team/stops/Lfhdonn1", "https://tec.openplanner.team/stops/Lfhpass1"], ["https://tec.openplanner.team/stops/LOCeg--2", "https://tec.openplanner.team/stops/LOCerzy2"], ["https://tec.openplanner.team/stops/LWexhav1", "https://tec.openplanner.team/stops/LWexhav2"], ["https://tec.openplanner.team/stops/Lprchat2", "https://tec.openplanner.team/stops/Lprmc--4"], ["https://tec.openplanner.team/stops/Cmtcapi2", "https://tec.openplanner.team/stops/Cmtfabi2"], ["https://tec.openplanner.team/stops/Balswwe2", "https://tec.openplanner.team/stops/Bwaucig1"], ["https://tec.openplanner.team/stops/X650ahb", "https://tec.openplanner.team/stops/X650aoa"], ["https://tec.openplanner.team/stops/N553aob", "https://tec.openplanner.team/stops/N553aqa"], ["https://tec.openplanner.team/stops/LLmcheg3", "https://tec.openplanner.team/stops/LLmeg--1"], ["https://tec.openplanner.team/stops/LGecime1", "https://tec.openplanner.team/stops/LGecite2"], ["https://tec.openplanner.team/stops/N166aba", "https://tec.openplanner.team/stops/N166abb"], ["https://tec.openplanner.team/stops/X641ava", "https://tec.openplanner.team/stops/X641aya"], ["https://tec.openplanner.team/stops/LFCdree1", "https://tec.openplanner.team/stops/LMgbatt2"], ["https://tec.openplanner.team/stops/N548afa", "https://tec.openplanner.team/stops/N548agc"], ["https://tec.openplanner.team/stops/N534adb", "https://tec.openplanner.team/stops/N534agb"], ["https://tec.openplanner.team/stops/Cgycorv4", "https://tec.openplanner.team/stops/Cgyrjau1"], ["https://tec.openplanner.team/stops/H1do119b", "https://tec.openplanner.team/stops/H1wi150a"], ["https://tec.openplanner.team/stops/Lgrmc--1", "https://tec.openplanner.team/stops/Llgdesa1"], ["https://tec.openplanner.team/stops/Bgntcoo1", "https://tec.openplanner.team/stops/Bgnteco2"], ["https://tec.openplanner.team/stops/N205aca", "https://tec.openplanner.team/stops/N219aba"], ["https://tec.openplanner.team/stops/LHaxhig1", "https://tec.openplanner.team/stops/LHaxhor2"], ["https://tec.openplanner.team/stops/Cgxdeba1", "https://tec.openplanner.team/stops/Cgxvvel1"], ["https://tec.openplanner.team/stops/H2go117b", "https://tec.openplanner.team/stops/H2gy106b"], ["https://tec.openplanner.team/stops/X664aic", "https://tec.openplanner.team/stops/X664aja"], ["https://tec.openplanner.team/stops/N117aga", "https://tec.openplanner.team/stops/N145ajb"], ["https://tec.openplanner.team/stops/X623adb", "https://tec.openplanner.team/stops/X623aja"], ["https://tec.openplanner.team/stops/N122aab", "https://tec.openplanner.team/stops/N122abb"], ["https://tec.openplanner.team/stops/X982aib", "https://tec.openplanner.team/stops/X982bua"], ["https://tec.openplanner.team/stops/Cobobjo1", "https://tec.openplanner.team/stops/Cobvill1"], ["https://tec.openplanner.team/stops/X870abb", "https://tec.openplanner.team/stops/X870acb"], ["https://tec.openplanner.team/stops/Cgomerm4", "https://tec.openplanner.team/stops/Chpfoli4"], ["https://tec.openplanner.team/stops/X721aob", "https://tec.openplanner.team/stops/X721ata"], ["https://tec.openplanner.team/stops/N206ada", "https://tec.openplanner.team/stops/N207acb"], ["https://tec.openplanner.team/stops/LMsgara2", "https://tec.openplanner.team/stops/LMspont2"], ["https://tec.openplanner.team/stops/H1hm175a", "https://tec.openplanner.team/stops/H1hm175b"], ["https://tec.openplanner.team/stops/Barqbar1", "https://tec.openplanner.team/stops/Barqbar2"], ["https://tec.openplanner.team/stops/H4ty275a", "https://tec.openplanner.team/stops/H4ty299a"], ["https://tec.openplanner.team/stops/N562bqa", "https://tec.openplanner.team/stops/N562bra"], ["https://tec.openplanner.team/stops/LBkbamb2", "https://tec.openplanner.team/stops/LMsalen1"], ["https://tec.openplanner.team/stops/Becltri1", "https://tec.openplanner.team/stops/Broncli2"], ["https://tec.openplanner.team/stops/Lanmouf1", "https://tec.openplanner.team/stops/Lanmouf2"], ["https://tec.openplanner.team/stops/Bbgerlr1", "https://tec.openplanner.team/stops/Bbgever2"], ["https://tec.openplanner.team/stops/N214afb", "https://tec.openplanner.team/stops/N225aba"], ["https://tec.openplanner.team/stops/LAbchpl1", "https://tec.openplanner.team/stops/LScd45-2"], ["https://tec.openplanner.team/stops/N152aac", "https://tec.openplanner.team/stops/N152abc"], ["https://tec.openplanner.team/stops/LLR4bra2", "https://tec.openplanner.team/stops/LLRsalm2"], ["https://tec.openplanner.team/stops/X672aga", "https://tec.openplanner.team/stops/X672akb"], ["https://tec.openplanner.team/stops/H4ne143b", "https://tec.openplanner.team/stops/H4wa161b"], ["https://tec.openplanner.team/stops/Bhalcbr2", "https://tec.openplanner.team/stops/Bhaltre2"], ["https://tec.openplanner.team/stops/X888aba", "https://tec.openplanner.team/stops/X888afa"], ["https://tec.openplanner.team/stops/X634ala", "https://tec.openplanner.team/stops/X654aea"], ["https://tec.openplanner.team/stops/Cbzfrom1", "https://tec.openplanner.team/stops/Cli4bra2"], ["https://tec.openplanner.team/stops/N230agb", "https://tec.openplanner.team/stops/N230aka"], ["https://tec.openplanner.team/stops/H1me112b", "https://tec.openplanner.team/stops/H1me114b"], ["https://tec.openplanner.team/stops/H4br109b", "https://tec.openplanner.team/stops/H4br111a"], ["https://tec.openplanner.team/stops/LSPastr1", "https://tec.openplanner.team/stops/LSPastr2"], ["https://tec.openplanner.team/stops/LLWcarr1", "https://tec.openplanner.team/stops/LOMtomb2"], ["https://tec.openplanner.team/stops/LPLg90-1", "https://tec.openplanner.team/stops/LPLg90-2"], ["https://tec.openplanner.team/stops/Croball1", "https://tec.openplanner.team/stops/Croball2"], ["https://tec.openplanner.team/stops/X806abb", "https://tec.openplanner.team/stops/X872aab"], ["https://tec.openplanner.team/stops/X542aca", "https://tec.openplanner.team/stops/X542acb"], ["https://tec.openplanner.team/stops/X695aca", "https://tec.openplanner.team/stops/X695ada"], ["https://tec.openplanner.team/stops/LAUbirv2", "https://tec.openplanner.team/stops/LHChomb2"], ["https://tec.openplanner.team/stops/LORhorp1", "https://tec.openplanner.team/stops/LORlieg1"], ["https://tec.openplanner.team/stops/X760aea", "https://tec.openplanner.team/stops/X762ada"], ["https://tec.openplanner.team/stops/LRemorr1", "https://tec.openplanner.team/stops/LRemorr3"], ["https://tec.openplanner.team/stops/X614aba", "https://tec.openplanner.team/stops/X614anb"], ["https://tec.openplanner.team/stops/N155aed", "https://tec.openplanner.team/stops/N155aga"], ["https://tec.openplanner.team/stops/LBLplac2", "https://tec.openplanner.team/stops/LBLplas2"], ["https://tec.openplanner.team/stops/Llgoutr2", "https://tec.openplanner.team/stops/Llgsime1"], ["https://tec.openplanner.team/stops/H4ty357a", "https://tec.openplanner.team/stops/H4ty397b"], ["https://tec.openplanner.team/stops/Bblafra1", "https://tec.openplanner.team/stops/Bblasta1"], ["https://tec.openplanner.team/stops/H1fr119a", "https://tec.openplanner.team/stops/H1fr133b"], ["https://tec.openplanner.team/stops/X908aha", "https://tec.openplanner.team/stops/X908aoc"], ["https://tec.openplanner.team/stops/Lsehtsa1", "https://tec.openplanner.team/stops/Lseresi1"], ["https://tec.openplanner.team/stops/H4ft138b", "https://tec.openplanner.team/stops/H4wu375a"], ["https://tec.openplanner.team/stops/LmImirf2", "https://tec.openplanner.team/stops/LvAschr1"], ["https://tec.openplanner.team/stops/N544acb", "https://tec.openplanner.team/stops/N544ada"], ["https://tec.openplanner.team/stops/H4ma200a", "https://tec.openplanner.team/stops/H4ma200b"], ["https://tec.openplanner.team/stops/Bwatlbr1", "https://tec.openplanner.team/stops/Bwatlbs2"], ["https://tec.openplanner.team/stops/X901aua", "https://tec.openplanner.team/stops/X901bqb"], ["https://tec.openplanner.team/stops/Csubosa1", "https://tec.openplanner.team/stops/Csygare3"], ["https://tec.openplanner.team/stops/LLrhaut3", "https://tec.openplanner.team/stops/LRE154-1"], ["https://tec.openplanner.team/stops/X982ala", "https://tec.openplanner.team/stops/X982bsa"], ["https://tec.openplanner.team/stops/Bcrncor2", "https://tec.openplanner.team/stops/Bcrngat1"], ["https://tec.openplanner.team/stops/N232aib", "https://tec.openplanner.team/stops/N232caa"], ["https://tec.openplanner.team/stops/H1ch105a", "https://tec.openplanner.team/stops/H4ld123b"], ["https://tec.openplanner.team/stops/LLWchat2", "https://tec.openplanner.team/stops/LLWpier2"], ["https://tec.openplanner.team/stops/H4wr173a", "https://tec.openplanner.team/stops/H4wr177b"], ["https://tec.openplanner.team/stops/Llgcham6", "https://tec.openplanner.team/stops/Llghars5"], ["https://tec.openplanner.team/stops/LeIkreu3", "https://tec.openplanner.team/stops/LeIkreu4"], ["https://tec.openplanner.team/stops/N170afa", "https://tec.openplanner.team/stops/NC14aca"], ["https://tec.openplanner.team/stops/Cacecol2", "https://tec.openplanner.team/stops/NC24abb"], ["https://tec.openplanner.team/stops/H4bu109a", "https://tec.openplanner.team/stops/H4bu109b"], ["https://tec.openplanner.team/stops/LVncarr1", "https://tec.openplanner.team/stops/LVnroch1"], ["https://tec.openplanner.team/stops/N521acb", "https://tec.openplanner.team/stops/N521aha"], ["https://tec.openplanner.team/stops/X670aaa", "https://tec.openplanner.team/stops/X670ara"], ["https://tec.openplanner.team/stops/LGegare1", "https://tec.openplanner.team/stops/LkEherg1"], ["https://tec.openplanner.team/stops/X752aaa", "https://tec.openplanner.team/stops/X752abb"], ["https://tec.openplanner.team/stops/Bbaulil1", "https://tec.openplanner.team/stops/Bnivche1"], ["https://tec.openplanner.team/stops/N243aaa", "https://tec.openplanner.team/stops/N243ada"], ["https://tec.openplanner.team/stops/LWHzave2", "https://tec.openplanner.team/stops/LWscona1"], ["https://tec.openplanner.team/stops/N331afa", "https://tec.openplanner.team/stops/N331afc"], ["https://tec.openplanner.team/stops/X991aca", "https://tec.openplanner.team/stops/X991adb"], ["https://tec.openplanner.team/stops/X911aab", "https://tec.openplanner.team/stops/X911ava"], ["https://tec.openplanner.team/stops/H5qu156c", "https://tec.openplanner.team/stops/H5qu156d"], ["https://tec.openplanner.team/stops/N338afa", "https://tec.openplanner.team/stops/N338afb"], ["https://tec.openplanner.team/stops/Cbwdoua2", "https://tec.openplanner.team/stops/Cmqn5912"], ["https://tec.openplanner.team/stops/Cjxegli2", "https://tec.openplanner.team/stops/Cjxpris2"], ["https://tec.openplanner.team/stops/LmNbirt1", "https://tec.openplanner.team/stops/LmNbirt2"], ["https://tec.openplanner.team/stops/Lsevico1", "https://tec.openplanner.team/stops/Lsevico2"], ["https://tec.openplanner.team/stops/Bbghepi2", "https://tec.openplanner.team/stops/Bbghpln1"], ["https://tec.openplanner.team/stops/Bllncyc1", "https://tec.openplanner.team/stops/Bllncyc2"], ["https://tec.openplanner.team/stops/H5rx122a", "https://tec.openplanner.team/stops/H5rx130b"], ["https://tec.openplanner.team/stops/LENtour1", "https://tec.openplanner.team/stops/LENtour2"], ["https://tec.openplanner.team/stops/LLRrape2", "https://tec.openplanner.team/stops/LLRrape3"], ["https://tec.openplanner.team/stops/N554abb", "https://tec.openplanner.team/stops/N573aoa"], ["https://tec.openplanner.team/stops/H5at107b", "https://tec.openplanner.team/stops/H5at123a"], ["https://tec.openplanner.team/stops/X662aeb", "https://tec.openplanner.team/stops/X663aga"], ["https://tec.openplanner.team/stops/N543bgd", "https://tec.openplanner.team/stops/N543bib"], ["https://tec.openplanner.team/stops/N550agb", "https://tec.openplanner.team/stops/N550ama"], ["https://tec.openplanner.team/stops/H4ca123b", "https://tec.openplanner.team/stops/H4ca124a"], ["https://tec.openplanner.team/stops/H1bo111a", "https://tec.openplanner.team/stops/H1bo111b"], ["https://tec.openplanner.team/stops/LSLeg--2", "https://tec.openplanner.team/stops/LSLvaux2"], ["https://tec.openplanner.team/stops/Bhtipir1", "https://tec.openplanner.team/stops/Bhtipir3"], ["https://tec.openplanner.team/stops/N528acb", "https://tec.openplanner.team/stops/N528aea"], ["https://tec.openplanner.team/stops/LCPconf1", "https://tec.openplanner.team/stops/LCPlacr2"], ["https://tec.openplanner.team/stops/H1mh113c", "https://tec.openplanner.team/stops/H1mh117a"], ["https://tec.openplanner.team/stops/N311aba", "https://tec.openplanner.team/stops/N368ada"], ["https://tec.openplanner.team/stops/X607aja", "https://tec.openplanner.team/stops/X607aka"], ["https://tec.openplanner.team/stops/H1hm173a", "https://tec.openplanner.team/stops/H1sp355a"], ["https://tec.openplanner.team/stops/LBPauto1", "https://tec.openplanner.team/stops/LBPauto2"], ["https://tec.openplanner.team/stops/N519aga", "https://tec.openplanner.team/stops/N519agb"], ["https://tec.openplanner.team/stops/X818ahb", "https://tec.openplanner.team/stops/X822adb"], ["https://tec.openplanner.team/stops/Bwatfau2", "https://tec.openplanner.team/stops/Bwatmbv1"], ["https://tec.openplanner.team/stops/LWberno1", "https://tec.openplanner.team/stops/X512aib"], ["https://tec.openplanner.team/stops/N538ava", "https://tec.openplanner.team/stops/N539ava"], ["https://tec.openplanner.team/stops/Bhaleur2", "https://tec.openplanner.team/stops/Bhalgja2"], ["https://tec.openplanner.team/stops/Cnaplan2", "https://tec.openplanner.team/stops/NC14aga"], ["https://tec.openplanner.team/stops/LKmdrie2", "https://tec.openplanner.team/stops/LKmmelo1"], ["https://tec.openplanner.team/stops/LFyWarc1", "https://tec.openplanner.team/stops/LFyWarc2"], ["https://tec.openplanner.team/stops/H1ro132a", "https://tec.openplanner.team/stops/H1ro136b"], ["https://tec.openplanner.team/stops/H2bh103d", "https://tec.openplanner.team/stops/H2fa112a"], ["https://tec.openplanner.team/stops/Bolppla3", "https://tec.openplanner.team/stops/Bolppla4"], ["https://tec.openplanner.team/stops/H2ll181a", "https://tec.openplanner.team/stops/H2ll181b"], ["https://tec.openplanner.team/stops/H4oq229a", "https://tec.openplanner.team/stops/H4oq229b"], ["https://tec.openplanner.team/stops/LPLarbo2", "https://tec.openplanner.team/stops/LPLheid2"], ["https://tec.openplanner.team/stops/LLCeg--1", "https://tec.openplanner.team/stops/LLCeg--2"], ["https://tec.openplanner.team/stops/LrAeife1", "https://tec.openplanner.team/stops/LrAiter1"], ["https://tec.openplanner.team/stops/LWEchat2", "https://tec.openplanner.team/stops/LWEmerm1"], ["https://tec.openplanner.team/stops/X660afb", "https://tec.openplanner.team/stops/X741alb"], ["https://tec.openplanner.team/stops/X666aab", "https://tec.openplanner.team/stops/X666aga"], ["https://tec.openplanner.team/stops/LnDkreu1", "https://tec.openplanner.team/stops/LnDthel1"], ["https://tec.openplanner.team/stops/N423abb", "https://tec.openplanner.team/stops/N423aga"], ["https://tec.openplanner.team/stops/Cjxvalh1", "https://tec.openplanner.team/stops/Cjxvalh2"], ["https://tec.openplanner.team/stops/X625aaa", "https://tec.openplanner.team/stops/X625aba"], ["https://tec.openplanner.team/stops/H2se106a", "https://tec.openplanner.team/stops/H2se109a"], ["https://tec.openplanner.team/stops/N556aea", "https://tec.openplanner.team/stops/N556afa"], ["https://tec.openplanner.team/stops/Bhtihau1", "https://tec.openplanner.team/stops/Bhtirin1"], ["https://tec.openplanner.team/stops/H4ss157b", "https://tec.openplanner.team/stops/H5rx100b"], ["https://tec.openplanner.team/stops/Bclgeco2", "https://tec.openplanner.team/stops/Bnilhau2"], ["https://tec.openplanner.team/stops/Bsmgmas1", "https://tec.openplanner.team/stops/Bsmgpla2"], ["https://tec.openplanner.team/stops/H1wa145a", "https://tec.openplanner.team/stops/H1wa145b"], ["https://tec.openplanner.team/stops/Cpibois1", "https://tec.openplanner.team/stops/Cpiegli1"], ["https://tec.openplanner.team/stops/Llghlau1", "https://tec.openplanner.team/stops/Llglaur2"], ["https://tec.openplanner.team/stops/Cpcchau", "https://tec.openplanner.team/stops/Cpctrau1"], ["https://tec.openplanner.team/stops/Bborcro1", "https://tec.openplanner.team/stops/Bborppa2"], ["https://tec.openplanner.team/stops/X779aga", "https://tec.openplanner.team/stops/X779ahb"], ["https://tec.openplanner.team/stops/LMomonc1", "https://tec.openplanner.team/stops/LMovieu1"], ["https://tec.openplanner.team/stops/Caibras2", "https://tec.openplanner.team/stops/N543chb"], ["https://tec.openplanner.team/stops/N232bia", "https://tec.openplanner.team/stops/N232cba"], ["https://tec.openplanner.team/stops/H5at122a", "https://tec.openplanner.team/stops/H5at122b"], ["https://tec.openplanner.team/stops/H3lr112a", "https://tec.openplanner.team/stops/H3lr117a"], ["https://tec.openplanner.team/stops/X224aab", "https://tec.openplanner.team/stops/X224agb"], ["https://tec.openplanner.team/stops/LlCgren1", "https://tec.openplanner.team/stops/LrApark2"], ["https://tec.openplanner.team/stops/X741aib", "https://tec.openplanner.team/stops/X741aid"], ["https://tec.openplanner.team/stops/X359ama", "https://tec.openplanner.team/stops/X858aha"], ["https://tec.openplanner.team/stops/N508alb", "https://tec.openplanner.team/stops/N508amb"], ["https://tec.openplanner.team/stops/Blimvcg2", "https://tec.openplanner.team/stops/Bottra91"], ["https://tec.openplanner.team/stops/Blhulil2", "https://tec.openplanner.team/stops/Blhurcl1"], ["https://tec.openplanner.team/stops/N244amb", "https://tec.openplanner.team/stops/N244anb"], ["https://tec.openplanner.team/stops/H4ln128a", "https://tec.openplanner.team/stops/H4ln129a"], ["https://tec.openplanner.team/stops/N539aab", "https://tec.openplanner.team/stops/N539aeb"], ["https://tec.openplanner.team/stops/X561aca", "https://tec.openplanner.team/stops/X561aea"], ["https://tec.openplanner.team/stops/H4bc102a", "https://tec.openplanner.team/stops/H4wr177a"], ["https://tec.openplanner.team/stops/Llgchai1", "https://tec.openplanner.team/stops/Llgdepo2"], ["https://tec.openplanner.team/stops/N506boa", "https://tec.openplanner.team/stops/N506boc"], ["https://tec.openplanner.team/stops/N501hlb", "https://tec.openplanner.team/stops/N501hlz"], ["https://tec.openplanner.team/stops/H1hi122b", "https://tec.openplanner.team/stops/H1ht131b"], ["https://tec.openplanner.team/stops/Bjodbat1", "https://tec.openplanner.team/stops/Bjodppe1"], ["https://tec.openplanner.team/stops/X344adb", "https://tec.openplanner.team/stops/X344aea"], ["https://tec.openplanner.team/stops/Chhsncb1", "https://tec.openplanner.team/stops/Chhverr1"], ["https://tec.openplanner.team/stops/LMAbass2", "https://tec.openplanner.team/stops/LMAcime2"], ["https://tec.openplanner.team/stops/N506bca", "https://tec.openplanner.team/stops/N506bcb"], ["https://tec.openplanner.team/stops/X601atb", "https://tec.openplanner.team/stops/X601aua"], ["https://tec.openplanner.team/stops/Bhakmkr2", "https://tec.openplanner.team/stops/Bneesj32"], ["https://tec.openplanner.team/stops/H4mo152a", "https://tec.openplanner.team/stops/H4mo185a"], ["https://tec.openplanner.team/stops/Cwfbarr1", "https://tec.openplanner.team/stops/Cwfmoul2"], ["https://tec.openplanner.team/stops/X595afc", "https://tec.openplanner.team/stops/X595ahb"], ["https://tec.openplanner.team/stops/H1hi122b", "https://tec.openplanner.team/stops/H1tl121b"], ["https://tec.openplanner.team/stops/N214aca", "https://tec.openplanner.team/stops/N236aia"], ["https://tec.openplanner.team/stops/H1hr118b", "https://tec.openplanner.team/stops/H1ne143b"], ["https://tec.openplanner.team/stops/H1ha185a", "https://tec.openplanner.team/stops/H1ha199b"], ["https://tec.openplanner.team/stops/X804aua", "https://tec.openplanner.team/stops/X804bob"], ["https://tec.openplanner.team/stops/N534aca", "https://tec.openplanner.team/stops/N534ada"], ["https://tec.openplanner.team/stops/X602ada", "https://tec.openplanner.team/stops/X602amb"], ["https://tec.openplanner.team/stops/Laghetr1", "https://tec.openplanner.team/stops/Lagindu2"], ["https://tec.openplanner.team/stops/Bohnmes4", "https://tec.openplanner.team/stops/Bohnpla2"], ["https://tec.openplanner.team/stops/H4ty276b", "https://tec.openplanner.team/stops/H4ty278b"], ["https://tec.openplanner.team/stops/X742ada", "https://tec.openplanner.team/stops/X742aea"], ["https://tec.openplanner.team/stops/Cmlceri1", "https://tec.openplanner.team/stops/Cmlceri2"], ["https://tec.openplanner.team/stops/Lghmeun2", "https://tec.openplanner.team/stops/Lghmeun3"], ["https://tec.openplanner.team/stops/LEN101-2", "https://tec.openplanner.team/stops/LEN42--2"], ["https://tec.openplanner.team/stops/LHEoutr1", "https://tec.openplanner.team/stops/LJOferm1"], ["https://tec.openplanner.team/stops/N115ada", "https://tec.openplanner.team/stops/N147aeb"], ["https://tec.openplanner.team/stops/Lloauto1", "https://tec.openplanner.team/stops/Llofort1"], ["https://tec.openplanner.team/stops/X818aeb", "https://tec.openplanner.team/stops/X818afa"], ["https://tec.openplanner.team/stops/LAMcime1", "https://tec.openplanner.team/stops/LAMcime2"], ["https://tec.openplanner.team/stops/H1fl133c", "https://tec.openplanner.team/stops/H1fl140a"], ["https://tec.openplanner.team/stops/LAxchpl2", "https://tec.openplanner.team/stops/Llianix3"], ["https://tec.openplanner.team/stops/Ladhomb2", "https://tec.openplanner.team/stops/Ladmoul2"], ["https://tec.openplanner.team/stops/X639acc", "https://tec.openplanner.team/stops/X639ada"], ["https://tec.openplanner.team/stops/Cdasama2", "https://tec.openplanner.team/stops/CMlpla2"], ["https://tec.openplanner.team/stops/Lprferm2", "https://tec.openplanner.team/stops/Lprhodi2"], ["https://tec.openplanner.team/stops/H2bh110c", "https://tec.openplanner.team/stops/H2bh120a"], ["https://tec.openplanner.team/stops/LeYmosc2", "https://tec.openplanner.team/stops/LeYraaf2"], ["https://tec.openplanner.team/stops/LHYec--1", "https://tec.openplanner.team/stops/LSpogne2"], ["https://tec.openplanner.team/stops/N141aob", "https://tec.openplanner.team/stops/N146aaa"], ["https://tec.openplanner.team/stops/H2lc170a", "https://tec.openplanner.team/stops/H2ll200a"], ["https://tec.openplanner.team/stops/Bnstmig1", "https://tec.openplanner.team/stops/H3go101b"], ["https://tec.openplanner.team/stops/X358aba", "https://tec.openplanner.team/stops/X358aca"], ["https://tec.openplanner.team/stops/Bsoihci1", "https://tec.openplanner.team/stops/Bsoihci2"], ["https://tec.openplanner.team/stops/Lemcort1", "https://tec.openplanner.team/stops/Lemcort2"], ["https://tec.openplanner.team/stops/Blsmcha2", "https://tec.openplanner.team/stops/Blsmjja1"], ["https://tec.openplanner.team/stops/N254aaa", "https://tec.openplanner.team/stops/N254abb"], ["https://tec.openplanner.team/stops/Lemcarm1", "https://tec.openplanner.team/stops/Lemcarm2"], ["https://tec.openplanner.team/stops/H4lz123a", "https://tec.openplanner.team/stops/H4lz160a"], ["https://tec.openplanner.team/stops/X615aab", "https://tec.openplanner.team/stops/X615baa"], ["https://tec.openplanner.team/stops/H1me113a", "https://tec.openplanner.team/stops/H1me113b"], ["https://tec.openplanner.team/stops/N501hsy", "https://tec.openplanner.team/stops/N501hsz"], ["https://tec.openplanner.team/stops/H4ty326b", "https://tec.openplanner.team/stops/H4vx361a"], ["https://tec.openplanner.team/stops/X824aib", "https://tec.openplanner.team/stops/X824akb"], ["https://tec.openplanner.team/stops/Cmcgoch1", "https://tec.openplanner.team/stops/Csyjumo2"], ["https://tec.openplanner.team/stops/H4do104a", "https://tec.openplanner.team/stops/H4mo195b"], ["https://tec.openplanner.team/stops/LNCtour1", "https://tec.openplanner.team/stops/LNCvann1"], ["https://tec.openplanner.team/stops/Lhubouq2", "https://tec.openplanner.team/stops/Lhulibe1"], ["https://tec.openplanner.team/stops/Ccocroi2", "https://tec.openplanner.team/stops/Csobrou2"], ["https://tec.openplanner.team/stops/H4pl111b", "https://tec.openplanner.team/stops/H4wn127b"], ["https://tec.openplanner.team/stops/LSldurb2", "https://tec.openplanner.team/stops/X919ajc"], ["https://tec.openplanner.team/stops/LFAplan1", "https://tec.openplanner.team/stops/LFAsauv2"], ["https://tec.openplanner.team/stops/X812bea", "https://tec.openplanner.team/stops/X857aba"], ["https://tec.openplanner.team/stops/Baudstr2", "https://tec.openplanner.team/stops/Bixefra1"], ["https://tec.openplanner.team/stops/X730abb", "https://tec.openplanner.team/stops/X730acb"], ["https://tec.openplanner.team/stops/Bgercen2", "https://tec.openplanner.team/stops/NB33aha"], ["https://tec.openplanner.team/stops/Llgcour2", "https://tec.openplanner.team/stops/Llgm%C3%A9di1"], ["https://tec.openplanner.team/stops/H4hx122a", "https://tec.openplanner.team/stops/H4wa153a"], ["https://tec.openplanner.team/stops/X728adb", "https://tec.openplanner.team/stops/X746aab"], ["https://tec.openplanner.team/stops/Caicalv1", "https://tec.openplanner.team/stops/Cprcits1"], ["https://tec.openplanner.team/stops/H4fl113a", "https://tec.openplanner.team/stops/H4fl115a"], ["https://tec.openplanner.team/stops/Blempuc2", "https://tec.openplanner.team/stops/Blemwro2"], ["https://tec.openplanner.team/stops/N553afa", "https://tec.openplanner.team/stops/N553akb"], ["https://tec.openplanner.team/stops/N528asa", "https://tec.openplanner.team/stops/N528aub"], ["https://tec.openplanner.team/stops/LWieg--*", "https://tec.openplanner.team/stops/LXhcite1"], ["https://tec.openplanner.team/stops/Lsweg--2", "https://tec.openplanner.team/stops/Lwaaube2"], ["https://tec.openplanner.team/stops/LBpbruy1", "https://tec.openplanner.team/stops/LBpcren1"], ["https://tec.openplanner.team/stops/H4rx142a", "https://tec.openplanner.team/stops/H4tg170a"], ["https://tec.openplanner.team/stops/X783acc", "https://tec.openplanner.team/stops/X783acd"], ["https://tec.openplanner.team/stops/CMlpla1", "https://tec.openplanner.team/stops/CMlpla2"], ["https://tec.openplanner.team/stops/Cdajume2", "https://tec.openplanner.team/stops/Cmaegli2"], ["https://tec.openplanner.team/stops/Cgycorv2", "https://tec.openplanner.team/stops/Cgycorv4"], ["https://tec.openplanner.team/stops/X614aca", "https://tec.openplanner.team/stops/X614azb"], ["https://tec.openplanner.team/stops/Cbwmvri1", "https://tec.openplanner.team/stops/Cmgtour2"], ["https://tec.openplanner.team/stops/Bmarfjo1", "https://tec.openplanner.team/stops/Bmarpla2"], ["https://tec.openplanner.team/stops/H4wr173b", "https://tec.openplanner.team/stops/H4wr177b"], ["https://tec.openplanner.team/stops/LLTfall1", "https://tec.openplanner.team/stops/LLThosd2"], ["https://tec.openplanner.team/stops/X654aaa", "https://tec.openplanner.team/stops/X654aab"], ["https://tec.openplanner.team/stops/Llgplop2", "https://tec.openplanner.team/stops/Lvtchpl2"], ["https://tec.openplanner.team/stops/H4ar103a", "https://tec.openplanner.team/stops/H4ar172b"], ["https://tec.openplanner.team/stops/N232bhb", "https://tec.openplanner.team/stops/N232bib"], ["https://tec.openplanner.team/stops/LSPguer1", "https://tec.openplanner.team/stops/LSPsorb1"], ["https://tec.openplanner.team/stops/LAmbach1", "https://tec.openplanner.team/stops/LAmwaut2"], ["https://tec.openplanner.team/stops/X721aqb", "https://tec.openplanner.team/stops/X721ata"], ["https://tec.openplanner.team/stops/Lemcarm2", "https://tec.openplanner.team/stops/Lvcreve1"], ["https://tec.openplanner.team/stops/N506bea", "https://tec.openplanner.team/stops/N506bka"], ["https://tec.openplanner.team/stops/LOucuve1", "https://tec.openplanner.team/stops/LOucuve2"], ["https://tec.openplanner.team/stops/X654aha", "https://tec.openplanner.team/stops/X654ahb"], ["https://tec.openplanner.team/stops/Bwatabs1", "https://tec.openplanner.team/stops/Bwatabs2"], ["https://tec.openplanner.team/stops/H1hc125a", "https://tec.openplanner.team/stops/H1hc125b"], ["https://tec.openplanner.team/stops/LHTeg--2", "https://tec.openplanner.team/stops/LHTeg--4"], ["https://tec.openplanner.team/stops/Cchsud08", "https://tec.openplanner.team/stops/NC01aab"], ["https://tec.openplanner.team/stops/H4ka179a", "https://tec.openplanner.team/stops/H4ka194a"], ["https://tec.openplanner.team/stops/N308bca", "https://tec.openplanner.team/stops/N308bgb"], ["https://tec.openplanner.team/stops/LhOfrie1", "https://tec.openplanner.team/stops/LwEdorf2"], ["https://tec.openplanner.team/stops/Bbsifml2", "https://tec.openplanner.team/stops/Blilgar1"], ["https://tec.openplanner.team/stops/N141aja", "https://tec.openplanner.team/stops/N146aab"], ["https://tec.openplanner.team/stops/N501cxa", "https://tec.openplanner.team/stops/N501cxb"], ["https://tec.openplanner.team/stops/X886abd", "https://tec.openplanner.team/stops/X886ada"], ["https://tec.openplanner.team/stops/N232bjb", "https://tec.openplanner.team/stops/N232cbb"], ["https://tec.openplanner.team/stops/LPLmonu1", "https://tec.openplanner.team/stops/LPLphar2"], ["https://tec.openplanner.team/stops/LCFchir1", "https://tec.openplanner.team/stops/LCFchir2"], ["https://tec.openplanner.team/stops/X879anb", "https://tec.openplanner.team/stops/X879aqb"], ["https://tec.openplanner.team/stops/N544afa", "https://tec.openplanner.team/stops/N545aab"], ["https://tec.openplanner.team/stops/Bndb4ch2", "https://tec.openplanner.team/stops/Bptblma1"], ["https://tec.openplanner.team/stops/N579aba", "https://tec.openplanner.team/stops/N579abb"], ["https://tec.openplanner.team/stops/LHAvall1", "https://tec.openplanner.team/stops/LRItour1"], ["https://tec.openplanner.team/stops/Llgpont1", "https://tec.openplanner.team/stops/Llgstap2"], ["https://tec.openplanner.team/stops/H4ty291b", "https://tec.openplanner.team/stops/H4ty352a"], ["https://tec.openplanner.team/stops/LbAhenk1", "https://tec.openplanner.team/stops/LbAhenk2"], ["https://tec.openplanner.team/stops/X896aba", "https://tec.openplanner.team/stops/X898afa"], ["https://tec.openplanner.team/stops/H1hc151a", "https://tec.openplanner.team/stops/H1hc151b"], ["https://tec.openplanner.team/stops/Bbealbu4", "https://tec.openplanner.team/stops/Bbealon3"], ["https://tec.openplanner.team/stops/N543clb", "https://tec.openplanner.team/stops/N543cob"], ["https://tec.openplanner.team/stops/Cvpbifu2", "https://tec.openplanner.team/stops/Cvpsthu1"], ["https://tec.openplanner.team/stops/N501chb", "https://tec.openplanner.team/stops/N501chc"], ["https://tec.openplanner.team/stops/N135axa", "https://tec.openplanner.team/stops/N135aya"], ["https://tec.openplanner.team/stops/LBRbriv1", "https://tec.openplanner.team/stops/LBRmout3"], ["https://tec.openplanner.team/stops/LTHturo3", "https://tec.openplanner.team/stops/LTHturo4"], ["https://tec.openplanner.team/stops/N529ada", "https://tec.openplanner.team/stops/N584aqa"], ["https://tec.openplanner.team/stops/H2jo162b", "https://tec.openplanner.team/stops/H2lh125b"], ["https://tec.openplanner.team/stops/LBEmich1", "https://tec.openplanner.team/stops/LDLheid1"], ["https://tec.openplanner.team/stops/Bbiemse2", "https://tec.openplanner.team/stops/Bbiepon1"], ["https://tec.openplanner.team/stops/H5at104a", "https://tec.openplanner.team/stops/H5at116d"], ["https://tec.openplanner.team/stops/H4do105a", "https://tec.openplanner.team/stops/H4do105b"], ["https://tec.openplanner.team/stops/Ccicouc2", "https://tec.openplanner.team/stops/Ccipech2"], ["https://tec.openplanner.team/stops/H1ms904a", "https://tec.openplanner.team/stops/H1ms925a"], ["https://tec.openplanner.team/stops/Lglsana1", "https://tec.openplanner.team/stops/Lglsana2"], ["https://tec.openplanner.team/stops/Bplnegl1", "https://tec.openplanner.team/stops/Bplnegl2"], ["https://tec.openplanner.team/stops/LCAeg--2", "https://tec.openplanner.team/stops/LCAwals1"], ["https://tec.openplanner.team/stops/LLYchpl2", "https://tec.openplanner.team/stops/LLYpeup2"], ["https://tec.openplanner.team/stops/Caibras2", "https://tec.openplanner.team/stops/Caioign3"], ["https://tec.openplanner.team/stops/H3so154a", "https://tec.openplanner.team/stops/H3so176b"], ["https://tec.openplanner.team/stops/H4ss158a", "https://tec.openplanner.team/stops/H5rx101b"], ["https://tec.openplanner.team/stops/X982aga", "https://tec.openplanner.team/stops/X982agb"], ["https://tec.openplanner.team/stops/H4ty308e", "https://tec.openplanner.team/stops/H4ty317a"], ["https://tec.openplanner.team/stops/H4ma398a", "https://tec.openplanner.team/stops/H4ma400a"], ["https://tec.openplanner.team/stops/N501ffb", "https://tec.openplanner.team/stops/N501hab"], ["https://tec.openplanner.team/stops/H1bl104b", "https://tec.openplanner.team/stops/H1pd141a"], ["https://tec.openplanner.team/stops/N507aac", "https://tec.openplanner.team/stops/N507aad"], ["https://tec.openplanner.team/stops/X547ara", "https://tec.openplanner.team/stops/X548adb"], ["https://tec.openplanner.team/stops/N531asc", "https://tec.openplanner.team/stops/N561aib"], ["https://tec.openplanner.team/stops/Ladchat2", "https://tec.openplanner.team/stops/Laddelc2"], ["https://tec.openplanner.team/stops/X608aoa", "https://tec.openplanner.team/stops/X608axa"], ["https://tec.openplanner.team/stops/Lhutran1", "https://tec.openplanner.team/stops/Lmnrame1"], ["https://tec.openplanner.team/stops/Cchcase4", "https://tec.openplanner.team/stops/Cchparc4"], ["https://tec.openplanner.team/stops/N511anb", "https://tec.openplanner.team/stops/N511ara"], ["https://tec.openplanner.team/stops/H2lh130a", "https://tec.openplanner.team/stops/H2lh132a"], ["https://tec.openplanner.team/stops/N502aba", "https://tec.openplanner.team/stops/N503aab"], ["https://tec.openplanner.team/stops/N516aha", "https://tec.openplanner.team/stops/N516amb"], ["https://tec.openplanner.team/stops/X943ada", "https://tec.openplanner.team/stops/X943afa"], ["https://tec.openplanner.team/stops/H4mv192a", "https://tec.openplanner.team/stops/H4mv195a"], ["https://tec.openplanner.team/stops/LBBcarr1", "https://tec.openplanner.team/stops/LOccarr1"], ["https://tec.openplanner.team/stops/Lfhpast1", "https://tec.openplanner.team/stops/Ljedepa1"], ["https://tec.openplanner.team/stops/N132aab", "https://tec.openplanner.team/stops/N132afa"], ["https://tec.openplanner.team/stops/LAWroug1", "https://tec.openplanner.team/stops/Llofort1"], ["https://tec.openplanner.team/stops/Bovecha1", "https://tec.openplanner.team/stops/Bovetsa1"], ["https://tec.openplanner.team/stops/LLvgare2", "https://tec.openplanner.team/stops/NL81ada"], ["https://tec.openplanner.team/stops/N204aba", "https://tec.openplanner.team/stops/N204acb"], ["https://tec.openplanner.team/stops/Bcbqegl1", "https://tec.openplanner.team/stops/Btubnav1"], ["https://tec.openplanner.team/stops/LVlfooz2", "https://tec.openplanner.team/stops/LVlfooz4"], ["https://tec.openplanner.team/stops/X777abb", "https://tec.openplanner.team/stops/X784abb"], ["https://tec.openplanner.team/stops/H4bu108b", "https://tec.openplanner.team/stops/H4bu109a"], ["https://tec.openplanner.team/stops/H1ms251b", "https://tec.openplanner.team/stops/H1ms309b"], ["https://tec.openplanner.team/stops/Loureno1", "https://tec.openplanner.team/stops/Loureno2"], ["https://tec.openplanner.team/stops/LeIpiro4", "https://tec.openplanner.team/stops/LiVkreu3"], ["https://tec.openplanner.team/stops/LSkdouf2", "https://tec.openplanner.team/stops/LSkoran2"], ["https://tec.openplanner.team/stops/H4co103b", "https://tec.openplanner.team/stops/H4co134a"], ["https://tec.openplanner.team/stops/Llgbaro1", "https://tec.openplanner.team/stops/Llgoeil1"], ["https://tec.openplanner.team/stops/H1ms290a", "https://tec.openplanner.team/stops/H1ms314b"], ["https://tec.openplanner.team/stops/N229akb", "https://tec.openplanner.team/stops/N229aua"], ["https://tec.openplanner.team/stops/H2sb221b", "https://tec.openplanner.team/stops/H2sb228c"], ["https://tec.openplanner.team/stops/X633aaa", "https://tec.openplanner.team/stops/X633aba"], ["https://tec.openplanner.team/stops/Bsdafra1", "https://tec.openplanner.team/stops/Bsdampe1"], ["https://tec.openplanner.team/stops/LBKmare2", "https://tec.openplanner.team/stops/LBveg--2"], ["https://tec.openplanner.team/stops/H2bh121a", "https://tec.openplanner.team/stops/H2lc172a"], ["https://tec.openplanner.team/stops/LlgOPER4", "https://tec.openplanner.team/stops/LlgR-Fr*"], ["https://tec.openplanner.team/stops/LPLcent1", "https://tec.openplanner.team/stops/LPLphar2"], ["https://tec.openplanner.team/stops/N531ana", "https://tec.openplanner.team/stops/N576agb"], ["https://tec.openplanner.team/stops/Bgntpos2", "https://tec.openplanner.team/stops/Bsgeegl1"], ["https://tec.openplanner.team/stops/Bnilspe1", "https://tec.openplanner.team/stops/Bnilspe3"], ["https://tec.openplanner.team/stops/H2ha142a", "https://tec.openplanner.team/stops/H2hg156b"], ["https://tec.openplanner.team/stops/N236aja", "https://tec.openplanner.team/stops/N236apa"], ["https://tec.openplanner.team/stops/N528avb", "https://tec.openplanner.team/stops/N528awa"], ["https://tec.openplanner.team/stops/Llgborg2", "https://tec.openplanner.team/stops/Llghori2"], ["https://tec.openplanner.team/stops/N584abb", "https://tec.openplanner.team/stops/N584acb"], ["https://tec.openplanner.team/stops/Bottcba2", "https://tec.openplanner.team/stops/Bottpar1"], ["https://tec.openplanner.team/stops/Cbctile", "https://tec.openplanner.team/stops/H1lo119a"], ["https://tec.openplanner.team/stops/H4wp151b", "https://tec.openplanner.team/stops/H4wp153a"], ["https://tec.openplanner.team/stops/X738aab", "https://tec.openplanner.team/stops/X739aab"], ["https://tec.openplanner.team/stops/Bmrleco1", "https://tec.openplanner.team/stops/Bmrlegl1"], ["https://tec.openplanner.team/stops/H4mo170a", "https://tec.openplanner.team/stops/H4mo170b"], ["https://tec.openplanner.team/stops/N343acb", "https://tec.openplanner.team/stops/N343amb"], ["https://tec.openplanner.team/stops/Bnivjli2", "https://tec.openplanner.team/stops/Bnivzon2"], ["https://tec.openplanner.team/stops/LVbgend2", "https://tec.openplanner.team/stops/LVbstre2"], ["https://tec.openplanner.team/stops/N141afa", "https://tec.openplanner.team/stops/N141afb"], ["https://tec.openplanner.team/stops/Clb4bra2", "https://tec.openplanner.team/stops/Clbentr2"], ["https://tec.openplanner.team/stops/LFCscho1", "https://tec.openplanner.team/stops/LFCvoge3"], ["https://tec.openplanner.team/stops/Bwspjon2", "https://tec.openplanner.team/stops/Bwspspa1"], ["https://tec.openplanner.team/stops/H4ir165a", "https://tec.openplanner.team/stops/H5at108b"], ["https://tec.openplanner.team/stops/N534bqb", "https://tec.openplanner.team/stops/N553aca"], ["https://tec.openplanner.team/stops/N534axb", "https://tec.openplanner.team/stops/N534bba"], ["https://tec.openplanner.team/stops/LBCtros1", "https://tec.openplanner.team/stops/LGDgdou1"], ["https://tec.openplanner.team/stops/LHgdari2", "https://tec.openplanner.team/stops/LHgtomb1"], ["https://tec.openplanner.team/stops/H3bi107a", "https://tec.openplanner.team/stops/H3bi110a"], ["https://tec.openplanner.team/stops/LeUnisp1", "https://tec.openplanner.team/stops/LeUwert1"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LCxc6191"], ["https://tec.openplanner.team/stops/N549aea", "https://tec.openplanner.team/stops/N549aeb"], ["https://tec.openplanner.team/stops/LAyfren1", "https://tec.openplanner.team/stops/Lmapomm1"], ["https://tec.openplanner.team/stops/N553ada", "https://tec.openplanner.team/stops/N553aoa"], ["https://tec.openplanner.team/stops/H1mj131a", "https://tec.openplanner.team/stops/H1ml109a"], ["https://tec.openplanner.team/stops/Csufrom5", "https://tec.openplanner.team/stops/Csuptou2"], ["https://tec.openplanner.team/stops/X782adb", "https://tec.openplanner.team/stops/X782aeb"], ["https://tec.openplanner.team/stops/X870afa", "https://tec.openplanner.team/stops/X870afb"], ["https://tec.openplanner.team/stops/LNOpt--1", "https://tec.openplanner.team/stops/LREheyd1"], ["https://tec.openplanner.team/stops/N127ada", "https://tec.openplanner.team/stops/N135bda"], ["https://tec.openplanner.team/stops/Ccutrav2", "https://tec.openplanner.team/stops/Ccuwil1"], ["https://tec.openplanner.team/stops/Bolgcsa1", "https://tec.openplanner.team/stops/Bolgeva1"], ["https://tec.openplanner.team/stops/Cmaleri1", "https://tec.openplanner.team/stops/Cmaleri2"], ["https://tec.openplanner.team/stops/Cjucpui1", "https://tec.openplanner.team/stops/Cjumarc4"], ["https://tec.openplanner.team/stops/X912abb", "https://tec.openplanner.team/stops/X912alb"], ["https://tec.openplanner.team/stops/N542amb", "https://tec.openplanner.team/stops/N542asb"], ["https://tec.openplanner.team/stops/Lmlmich1", "https://tec.openplanner.team/stops/Lmlrosa1"], ["https://tec.openplanner.team/stops/H1hw119b", "https://tec.openplanner.team/stops/H1ls110a"], ["https://tec.openplanner.team/stops/N573abb", "https://tec.openplanner.team/stops/NC44ada"], ["https://tec.openplanner.team/stops/Llg20ao3", "https://tec.openplanner.team/stops/Llgrege2"], ["https://tec.openplanner.team/stops/H1hw118a", "https://tec.openplanner.team/stops/H1mc129b"], ["https://tec.openplanner.team/stops/Bbwacol2", "https://tec.openplanner.team/stops/Bwavlon1"], ["https://tec.openplanner.team/stops/Llgpara2", "https://tec.openplanner.team/stops/Llgparc1"], ["https://tec.openplanner.team/stops/Cprlpre2", "https://tec.openplanner.team/stops/Cprsapv1"], ["https://tec.openplanner.team/stops/H4es112b", "https://tec.openplanner.team/stops/H4ev125b"], ["https://tec.openplanner.team/stops/LXoeg--3", "https://tec.openplanner.team/stops/LXoeg--4"], ["https://tec.openplanner.team/stops/Cfocant1", "https://tec.openplanner.team/stops/Cfocant2"], ["https://tec.openplanner.team/stops/LCEplac1", "https://tec.openplanner.team/stops/LCEplac2"], ["https://tec.openplanner.team/stops/X743ada", "https://tec.openplanner.team/stops/X743aeb"], ["https://tec.openplanner.team/stops/LFocent2", "https://tec.openplanner.team/stops/LJAsuri2"], ["https://tec.openplanner.team/stops/X619aca", "https://tec.openplanner.team/stops/X619ada"], ["https://tec.openplanner.team/stops/N555aba", "https://tec.openplanner.team/stops/N573aib"], ["https://tec.openplanner.team/stops/LAUneuv4", "https://tec.openplanner.team/stops/LAUnico2"], ["https://tec.openplanner.team/stops/H2be100a", "https://tec.openplanner.team/stops/H2lh130a"], ["https://tec.openplanner.team/stops/LdUkreu3", "https://tec.openplanner.team/stops/LlE02--1"], ["https://tec.openplanner.team/stops/LVLchem1", "https://tec.openplanner.team/stops/LVLhalb1"], ["https://tec.openplanner.team/stops/LATdieu1", "https://tec.openplanner.team/stops/LHUfali2"], ["https://tec.openplanner.team/stops/LFCalte2", "https://tec.openplanner.team/stops/LFClage2"], ["https://tec.openplanner.team/stops/Cchsud05", "https://tec.openplanner.team/stops/Cmlgoff1"], ["https://tec.openplanner.team/stops/N562alc", "https://tec.openplanner.team/stops/N570aab"], ["https://tec.openplanner.team/stops/LbOdorf1", "https://tec.openplanner.team/stops/LbOlier2"], ["https://tec.openplanner.team/stops/X342ada", "https://tec.openplanner.team/stops/X346abb"], ["https://tec.openplanner.team/stops/H1bb115a", "https://tec.openplanner.team/stops/H1bb116c"], ["https://tec.openplanner.team/stops/X793aia", "https://tec.openplanner.team/stops/X793ajb"], ["https://tec.openplanner.team/stops/Bsgeegl3", "https://tec.openplanner.team/stops/Bsgeegl4"], ["https://tec.openplanner.team/stops/LbTgeme2", "https://tec.openplanner.team/stops/LwYbruc1"], ["https://tec.openplanner.team/stops/X620aba", "https://tec.openplanner.team/stops/X620agb"], ["https://tec.openplanner.team/stops/X661aka", "https://tec.openplanner.team/stops/X672ala"], ["https://tec.openplanner.team/stops/X657aeb", "https://tec.openplanner.team/stops/X671aaa"], ["https://tec.openplanner.team/stops/N501fwa", "https://tec.openplanner.team/stops/N501fwz"], ["https://tec.openplanner.team/stops/N122aba", "https://tec.openplanner.team/stops/N150aea"], ["https://tec.openplanner.team/stops/LLGramk1", "https://tec.openplanner.team/stops/LORdtec*"], ["https://tec.openplanner.team/stops/Beclbse2", "https://tec.openplanner.team/stops/Beclpma2"], ["https://tec.openplanner.team/stops/H4ka182a", "https://tec.openplanner.team/stops/H4ka394b"], ["https://tec.openplanner.team/stops/Lvchaus1", "https://tec.openplanner.team/stops/Lvcvand1"], ["https://tec.openplanner.team/stops/H1pa112b", "https://tec.openplanner.team/stops/H1pa166a"], ["https://tec.openplanner.team/stops/LHNland1", "https://tec.openplanner.team/stops/LHNtill2"], ["https://tec.openplanner.team/stops/X879ara", "https://tec.openplanner.team/stops/X879asb"], ["https://tec.openplanner.team/stops/X724aaa", "https://tec.openplanner.team/stops/X768aab"], ["https://tec.openplanner.team/stops/LLUtill2", "https://tec.openplanner.team/stops/LLUtill4"], ["https://tec.openplanner.team/stops/H1ha193b", "https://tec.openplanner.team/stops/H1ms282b"], ["https://tec.openplanner.team/stops/Craappa1", "https://tec.openplanner.team/stops/Cracave2"], ["https://tec.openplanner.team/stops/N507agb", "https://tec.openplanner.team/stops/N507aob"], ["https://tec.openplanner.team/stops/H1et101b", "https://tec.openplanner.team/stops/H1gh147a"], ["https://tec.openplanner.team/stops/Lmimc--1", "https://tec.openplanner.team/stops/Lmimili1"], ["https://tec.openplanner.team/stops/X221aad", "https://tec.openplanner.team/stops/X394afb"], ["https://tec.openplanner.team/stops/X637aca", "https://tec.openplanner.team/stops/X637aqa"], ["https://tec.openplanner.team/stops/N301aba", "https://tec.openplanner.team/stops/N301abc"], ["https://tec.openplanner.team/stops/Bhenard4", "https://tec.openplanner.team/stops/Bvirrbo2"], ["https://tec.openplanner.team/stops/Lmldama2", "https://tec.openplanner.team/stops/Lpocent2"], ["https://tec.openplanner.team/stops/LLmvict1", "https://tec.openplanner.team/stops/LRemonu2"], ["https://tec.openplanner.team/stops/LmNha151", "https://tec.openplanner.team/stops/LmNha152"], ["https://tec.openplanner.team/stops/LRRbuta2", "https://tec.openplanner.team/stops/LRRmanc2"], ["https://tec.openplanner.team/stops/Clihame1", "https://tec.openplanner.team/stops/Cmehame1"], ["https://tec.openplanner.team/stops/N547ada", "https://tec.openplanner.team/stops/N547aea"], ["https://tec.openplanner.team/stops/H4eh100a", "https://tec.openplanner.team/stops/H4wg122b"], ["https://tec.openplanner.team/stops/X750bdb", "https://tec.openplanner.team/stops/X750bfb"], ["https://tec.openplanner.team/stops/Cchcime1", "https://tec.openplanner.team/stops/Cchlamb2"], ["https://tec.openplanner.team/stops/H1gi118a", "https://tec.openplanner.team/stops/H1gi121a"], ["https://tec.openplanner.team/stops/Clbbonn3", "https://tec.openplanner.team/stops/Clbchar2"], ["https://tec.openplanner.team/stops/LJueg--1", "https://tec.openplanner.team/stops/LJuhaie2"], ["https://tec.openplanner.team/stops/Cbmgrav2", "https://tec.openplanner.team/stops/Cbmvalt2"], ["https://tec.openplanner.team/stops/Csachas2", "https://tec.openplanner.team/stops/Csawagn2"], ["https://tec.openplanner.team/stops/N535aeb", "https://tec.openplanner.team/stops/N535ahb"], ["https://tec.openplanner.team/stops/X624aha", "https://tec.openplanner.team/stops/X624ahb"], ["https://tec.openplanner.team/stops/Cflmarc1", "https://tec.openplanner.team/stops/Cwgmell1"], ["https://tec.openplanner.team/stops/H4ep130b", "https://tec.openplanner.team/stops/H4rm113b"], ["https://tec.openplanner.team/stops/N509aab", "https://tec.openplanner.team/stops/N509agb"], ["https://tec.openplanner.team/stops/X919aab", "https://tec.openplanner.team/stops/X919ahb"], ["https://tec.openplanner.team/stops/H5bl117c", "https://tec.openplanner.team/stops/H5bl144b"], ["https://tec.openplanner.team/stops/N102aaa", "https://tec.openplanner.team/stops/N116acb"], ["https://tec.openplanner.team/stops/X882aab", "https://tec.openplanner.team/stops/X882agb"], ["https://tec.openplanner.team/stops/X715ada", "https://tec.openplanner.team/stops/X715adb"], ["https://tec.openplanner.team/stops/Btanpla1", "https://tec.openplanner.team/stops/Btanpla3"], ["https://tec.openplanner.team/stops/LSUvill1", "https://tec.openplanner.team/stops/LSUvill2"], ["https://tec.openplanner.team/stops/X917adb", "https://tec.openplanner.team/stops/X921anb"], ["https://tec.openplanner.team/stops/X747aba", "https://tec.openplanner.team/stops/X747acb"], ["https://tec.openplanner.team/stops/Cfcgrat1", "https://tec.openplanner.team/stops/Cfcleco2"], ["https://tec.openplanner.team/stops/LVEfize1", "https://tec.openplanner.team/stops/LVEfize2"], ["https://tec.openplanner.team/stops/LBTcarr3", "https://tec.openplanner.team/stops/LBTfoot2"], ["https://tec.openplanner.team/stops/N121aib", "https://tec.openplanner.team/stops/N158aba"], ["https://tec.openplanner.team/stops/N338aea", "https://tec.openplanner.team/stops/N338afa"], ["https://tec.openplanner.team/stops/X749aea", "https://tec.openplanner.team/stops/X749aeb"], ["https://tec.openplanner.team/stops/LOTsav-2", "https://tec.openplanner.team/stops/LRUhama2"], ["https://tec.openplanner.team/stops/LHCpaci1", "https://tec.openplanner.team/stops/LHCruyf2"], ["https://tec.openplanner.team/stops/Cfabnat1", "https://tec.openplanner.team/stops/Cfapiro1"], ["https://tec.openplanner.team/stops/Bnivfro1", "https://tec.openplanner.team/stops/Bnivgen2"], ["https://tec.openplanner.team/stops/H4pl117b", "https://tec.openplanner.team/stops/H4pl135b"], ["https://tec.openplanner.team/stops/LPRcha-*", "https://tec.openplanner.team/stops/LPRmc--4"], ["https://tec.openplanner.team/stops/X801caa", "https://tec.openplanner.team/stops/X801cca"], ["https://tec.openplanner.team/stops/Lcceg--1", "https://tec.openplanner.team/stops/Lfhhoul2"], ["https://tec.openplanner.team/stops/Bgrmfon1", "https://tec.openplanner.team/stops/Bgrmpsn1"], ["https://tec.openplanner.team/stops/N163aaa", "https://tec.openplanner.team/stops/N165acb"], ["https://tec.openplanner.team/stops/LFEn6--1", "https://tec.openplanner.team/stops/LFtn6--2"], ["https://tec.openplanner.team/stops/H4ta125b", "https://tec.openplanner.team/stops/H4ta125c"], ["https://tec.openplanner.team/stops/H1ba105b", "https://tec.openplanner.team/stops/H1si154a"], ["https://tec.openplanner.team/stops/Bflccav1", "https://tec.openplanner.team/stops/Bflccav2"], ["https://tec.openplanner.team/stops/LLOnand1", "https://tec.openplanner.team/stops/LTatult1"], ["https://tec.openplanner.team/stops/N574abb", "https://tec.openplanner.team/stops/N574aca"], ["https://tec.openplanner.team/stops/Chhclde2", "https://tec.openplanner.team/stops/Cnafont2"], ["https://tec.openplanner.team/stops/NL37aka", "https://tec.openplanner.team/stops/NL37akb"], ["https://tec.openplanner.team/stops/N241aab", "https://tec.openplanner.team/stops/N585aba"], ["https://tec.openplanner.team/stops/Lcefoxh1", "https://tec.openplanner.team/stops/Lcesart2"], ["https://tec.openplanner.team/stops/X670amb", "https://tec.openplanner.team/stops/X670anb"], ["https://tec.openplanner.team/stops/Lgdstoc2", "https://tec.openplanner.team/stops/LXHeg--2"], ["https://tec.openplanner.team/stops/H1wa137b", "https://tec.openplanner.team/stops/H1wa164b"], ["https://tec.openplanner.team/stops/X897aob", "https://tec.openplanner.team/stops/X897apb"], ["https://tec.openplanner.team/stops/LLrc1991", "https://tec.openplanner.team/stops/LLrcour1"], ["https://tec.openplanner.team/stops/LDaeg--2", "https://tec.openplanner.team/stops/LLYplac1"], ["https://tec.openplanner.team/stops/X638aeb", "https://tec.openplanner.team/stops/X638aoa"], ["https://tec.openplanner.team/stops/H1ht121b", "https://tec.openplanner.team/stops/H1ht124a"], ["https://tec.openplanner.team/stops/Blhueso2", "https://tec.openplanner.team/stops/Blhutma1"], ["https://tec.openplanner.team/stops/Bbldgar2", "https://tec.openplanner.team/stops/Bbldvaa2"], ["https://tec.openplanner.team/stops/X804ada", "https://tec.openplanner.team/stops/X804bza"], ["https://tec.openplanner.team/stops/N308aaa", "https://tec.openplanner.team/stops/N308asa"], ["https://tec.openplanner.team/stops/N425aeb", "https://tec.openplanner.team/stops/N425afa"], ["https://tec.openplanner.team/stops/N534bxa", "https://tec.openplanner.team/stops/N561ada"], ["https://tec.openplanner.team/stops/H5st167b", "https://tec.openplanner.team/stops/H5st168a"], ["https://tec.openplanner.team/stops/Bjodrrg1", "https://tec.openplanner.team/stops/Bsjgegl1"], ["https://tec.openplanner.team/stops/N514aja", "https://tec.openplanner.team/stops/N516aob"], ["https://tec.openplanner.team/stops/LENchem1", "https://tec.openplanner.team/stops/LENsent1"], ["https://tec.openplanner.team/stops/H1wa156a", "https://tec.openplanner.team/stops/H1wa163b"], ["https://tec.openplanner.team/stops/Bvirpla1", "https://tec.openplanner.team/stops/Bvirpla2"], ["https://tec.openplanner.team/stops/N543aja", "https://tec.openplanner.team/stops/N543azb"], ["https://tec.openplanner.team/stops/LLemonu2", "https://tec.openplanner.team/stops/X547atb"], ["https://tec.openplanner.team/stops/LmS11--1", "https://tec.openplanner.team/stops/LmSkape1"], ["https://tec.openplanner.team/stops/LrAberg1", "https://tec.openplanner.team/stops/LrApont2"], ["https://tec.openplanner.team/stops/N534adb", "https://tec.openplanner.team/stops/N553aob"], ["https://tec.openplanner.team/stops/H1mk116a", "https://tec.openplanner.team/stops/H1sy140b"], ["https://tec.openplanner.team/stops/Bbcomar1", "https://tec.openplanner.team/stops/Bbcomar2"], ["https://tec.openplanner.team/stops/LHUamer1", "https://tec.openplanner.team/stops/NL80aib"], ["https://tec.openplanner.team/stops/Lbrptbr5", "https://tec.openplanner.team/stops/Llgbarb2"], ["https://tec.openplanner.team/stops/H1mm126b", "https://tec.openplanner.team/stops/H1mm132a"], ["https://tec.openplanner.team/stops/LhGcasi2", "https://tec.openplanner.team/stops/LhGfrie2"], ["https://tec.openplanner.team/stops/LSSeg--2", "https://tec.openplanner.team/stops/LSSjeun2"], ["https://tec.openplanner.team/stops/LHdfays2", "https://tec.openplanner.team/stops/LVncarr1"], ["https://tec.openplanner.team/stops/H4ld127b", "https://tec.openplanner.team/stops/H4ld129a"], ["https://tec.openplanner.team/stops/LMOf35-1", "https://tec.openplanner.team/stops/LMOfrel2"], ["https://tec.openplanner.team/stops/Lhubriq2", "https://tec.openplanner.team/stops/Lhuwaid2"], ["https://tec.openplanner.team/stops/H5wo133a", "https://tec.openplanner.team/stops/H5wo133b"], ["https://tec.openplanner.team/stops/X921aca", "https://tec.openplanner.team/stops/X921amb"], ["https://tec.openplanner.team/stops/LVEeg--2", "https://tec.openplanner.team/stops/LVEjard1"], ["https://tec.openplanner.team/stops/H4do105b", "https://tec.openplanner.team/stops/H4do106b"], ["https://tec.openplanner.team/stops/LNAanne2", "https://tec.openplanner.team/stops/LNAbouh1"], ["https://tec.openplanner.team/stops/Llgcham8", "https://tec.openplanner.team/stops/Llghars5"], ["https://tec.openplanner.team/stops/X636amb", "https://tec.openplanner.team/stops/X636bjb"], ["https://tec.openplanner.team/stops/X947acb", "https://tec.openplanner.team/stops/X948ajc"], ["https://tec.openplanner.team/stops/Llgarmu3", "https://tec.openplanner.team/stops/Llginte1"], ["https://tec.openplanner.team/stops/H1ms258b", "https://tec.openplanner.team/stops/H1ms288a"], ["https://tec.openplanner.team/stops/Bcrntru1", "https://tec.openplanner.team/stops/Bernpon1"], ["https://tec.openplanner.team/stops/H1br128b", "https://tec.openplanner.team/stops/H2ma264a"], ["https://tec.openplanner.team/stops/Bbghcar2", "https://tec.openplanner.team/stops/Bpte1ma2"], ["https://tec.openplanner.team/stops/Cmyedpa1", "https://tec.openplanner.team/stops/Cmyoasi1"], ["https://tec.openplanner.team/stops/X638ahb", "https://tec.openplanner.team/stops/X638aia"], ["https://tec.openplanner.team/stops/X801adb", "https://tec.openplanner.team/stops/X801aeb"], ["https://tec.openplanner.team/stops/Bwlhpma1", "https://tec.openplanner.team/stops/Bwlhpma2"], ["https://tec.openplanner.team/stops/Cgy4bra2", "https://tec.openplanner.team/stops/CMgill2"], ["https://tec.openplanner.team/stops/N390aba", "https://tec.openplanner.team/stops/X998azb"], ["https://tec.openplanner.team/stops/LODamco1", "https://tec.openplanner.team/stops/X561adb"], ["https://tec.openplanner.team/stops/H1sp354a", "https://tec.openplanner.team/stops/H1sp356a"], ["https://tec.openplanner.team/stops/X802aga", "https://tec.openplanner.team/stops/X822aib"], ["https://tec.openplanner.team/stops/Lhrecol1", "https://tec.openplanner.team/stops/Lhrpost2"], ["https://tec.openplanner.team/stops/N135afb", "https://tec.openplanner.team/stops/N140aab"], ["https://tec.openplanner.team/stops/Blaneli1", "https://tec.openplanner.team/stops/LLaover4"], ["https://tec.openplanner.team/stops/N501ama", "https://tec.openplanner.team/stops/N501mcc"], ["https://tec.openplanner.team/stops/H4au144a", "https://tec.openplanner.team/stops/H4au144b"], ["https://tec.openplanner.team/stops/N533aga", "https://tec.openplanner.team/stops/N533aqb"], ["https://tec.openplanner.team/stops/Bnil3fo1", "https://tec.openplanner.team/stops/Bnilpie2"], ["https://tec.openplanner.team/stops/H2ha138a", "https://tec.openplanner.team/stops/H2hg156a"], ["https://tec.openplanner.team/stops/LREgrot1", "https://tec.openplanner.team/stops/LREsoug2"], ["https://tec.openplanner.team/stops/Llgcite1", "https://tec.openplanner.team/stops/Llgmarc1"], ["https://tec.openplanner.team/stops/N577agb", "https://tec.openplanner.team/stops/N577aia"], ["https://tec.openplanner.team/stops/H1te180a", "https://tec.openplanner.team/stops/H1vt194a"], ["https://tec.openplanner.team/stops/Cchblne1", "https://tec.openplanner.team/stops/CMdesc2"], ["https://tec.openplanner.team/stops/H4de112a", "https://tec.openplanner.team/stops/H4ss157b"], ["https://tec.openplanner.team/stops/Bbounci2", "https://tec.openplanner.team/stops/Btanvil2"], ["https://tec.openplanner.team/stops/Bwatms10", "https://tec.openplanner.team/stops/Bwatmsj1"], ["https://tec.openplanner.team/stops/X985aaa", "https://tec.openplanner.team/stops/X985aab"], ["https://tec.openplanner.team/stops/NL74aga", "https://tec.openplanner.team/stops/NL74agb"], ["https://tec.openplanner.team/stops/H1el134a", "https://tec.openplanner.team/stops/H1el134b"], ["https://tec.openplanner.team/stops/LNEcite2", "https://tec.openplanner.team/stops/LNEvpn-1"], ["https://tec.openplanner.team/stops/LCSpoud1", "https://tec.openplanner.team/stops/LEN183-2"], ["https://tec.openplanner.team/stops/Lemlami2", "https://tec.openplanner.team/stops/Lemsart1"], ["https://tec.openplanner.team/stops/H2ll190a", "https://tec.openplanner.team/stops/H2ll190b"], ["https://tec.openplanner.team/stops/Bllnein3", "https://tec.openplanner.team/stops/Bllnlen1"], ["https://tec.openplanner.team/stops/N501dbb", "https://tec.openplanner.team/stops/N528afa"], ["https://tec.openplanner.team/stops/H4pl122b", "https://tec.openplanner.team/stops/H4pl137b"], ["https://tec.openplanner.team/stops/LOLcroi2", "https://tec.openplanner.team/stops/LOLrafh2"], ["https://tec.openplanner.team/stops/N522bva", "https://tec.openplanner.team/stops/N522bvc"], ["https://tec.openplanner.team/stops/Lscbour1", "https://tec.openplanner.team/stops/Lscpamp1"], ["https://tec.openplanner.team/stops/H4ty346a", "https://tec.openplanner.team/stops/H4ty382b"], ["https://tec.openplanner.team/stops/N507aad", "https://tec.openplanner.team/stops/NL68add"], ["https://tec.openplanner.team/stops/N501kuc", "https://tec.openplanner.team/stops/N501kud"], ["https://tec.openplanner.team/stops/H4my122a", "https://tec.openplanner.team/stops/H4vz368a"], ["https://tec.openplanner.team/stops/LGeforg1", "https://tec.openplanner.team/stops/LGepeck1"], ["https://tec.openplanner.team/stops/Lhrherm1", "https://tec.openplanner.team/stops/Lhrspi-2"], ["https://tec.openplanner.team/stops/X948aea", "https://tec.openplanner.team/stops/X948agb"], ["https://tec.openplanner.team/stops/Bnodtir1", "https://tec.openplanner.team/stops/Bnodtir4"], ["https://tec.openplanner.team/stops/N571agb", "https://tec.openplanner.team/stops/N571ajb"], ["https://tec.openplanner.team/stops/LSOferr4", "https://tec.openplanner.team/stops/LSOtrou2"], ["https://tec.openplanner.team/stops/N230aha", "https://tec.openplanner.team/stops/N231acb"], ["https://tec.openplanner.team/stops/Lseespe1", "https://tec.openplanner.team/stops/Lsemara1"], ["https://tec.openplanner.team/stops/LFUgare1", "https://tec.openplanner.team/stops/LFUgare2"], ["https://tec.openplanner.team/stops/Bhvlbet1", "https://tec.openplanner.team/stops/Bmsgbay2"], ["https://tec.openplanner.team/stops/Bbgnvel2", "https://tec.openplanner.team/stops/Cvstouv1"], ["https://tec.openplanner.team/stops/Bclgegl2", "https://tec.openplanner.team/stops/Bnilhau2"], ["https://tec.openplanner.team/stops/LATdame1", "https://tec.openplanner.team/stops/LAThach2"], ["https://tec.openplanner.team/stops/H1cu132a", "https://tec.openplanner.team/stops/H1cu132b"], ["https://tec.openplanner.team/stops/Cblsall2", "https://tec.openplanner.team/stops/Cslbhau1"], ["https://tec.openplanner.team/stops/LMoeg--1", "https://tec.openplanner.team/stops/LMotrem2"], ["https://tec.openplanner.team/stops/H1ms245a", "https://tec.openplanner.team/stops/H1ms268a"], ["https://tec.openplanner.team/stops/Lsemyrt1", "https://tec.openplanner.team/stops/Lsepcha4"], ["https://tec.openplanner.team/stops/N547amb", "https://tec.openplanner.team/stops/N554adb"], ["https://tec.openplanner.team/stops/N111aaa", "https://tec.openplanner.team/stops/N127aeb"], ["https://tec.openplanner.team/stops/X801cna", "https://tec.openplanner.team/stops/X801cnb"], ["https://tec.openplanner.team/stops/Clodrio1", "https://tec.openplanner.team/stops/Clodupr2"], ["https://tec.openplanner.team/stops/X649aca", "https://tec.openplanner.team/stops/X650aoa"], ["https://tec.openplanner.team/stops/LBlchin1", "https://tec.openplanner.team/stops/LLUg82-2"], ["https://tec.openplanner.team/stops/N501gsa", "https://tec.openplanner.team/stops/N501hlz"], ["https://tec.openplanner.team/stops/H1ha188b", "https://tec.openplanner.team/stops/H1ha196a"], ["https://tec.openplanner.team/stops/X786aaa", "https://tec.openplanner.team/stops/X786aba"], ["https://tec.openplanner.team/stops/H4rm107a", "https://tec.openplanner.team/stops/H4rm109a"], ["https://tec.openplanner.team/stops/Bitrgnt1", "https://tec.openplanner.team/stops/Bitrmde2"], ["https://tec.openplanner.team/stops/Bottcli2", "https://tec.openplanner.team/stops/Bottrfa1"], ["https://tec.openplanner.team/stops/LnEmett1", "https://tec.openplanner.team/stops/LsVgils2"], ["https://tec.openplanner.team/stops/N241aga", "https://tec.openplanner.team/stops/N270aba"], ["https://tec.openplanner.team/stops/N321aea", "https://tec.openplanner.team/stops/N321aeb"], ["https://tec.openplanner.team/stops/Lveecol1", "https://tec.openplanner.team/stops/Lveecol2"], ["https://tec.openplanner.team/stops/N516ama", "https://tec.openplanner.team/stops/N516aqa"], ["https://tec.openplanner.team/stops/H1ha194b", "https://tec.openplanner.team/stops/H3bo102b"], ["https://tec.openplanner.team/stops/Lhujonc1", "https://tec.openplanner.team/stops/Lhulibe2"], ["https://tec.openplanner.team/stops/Lra4bra2", "https://tec.openplanner.team/stops/Lrafusi1"], ["https://tec.openplanner.team/stops/Ctybaco1", "https://tec.openplanner.team/stops/N137aib"], ["https://tec.openplanner.team/stops/X979agb", "https://tec.openplanner.team/stops/X982alb"], ["https://tec.openplanner.team/stops/Bstecal2", "https://tec.openplanner.team/stops/Bstetre1"], ["https://tec.openplanner.team/stops/H3bi108b", "https://tec.openplanner.team/stops/H3bi113a"], ["https://tec.openplanner.team/stops/X753aaa", "https://tec.openplanner.team/stops/X753abd"], ["https://tec.openplanner.team/stops/N501aab", "https://tec.openplanner.team/stops/N501gqa"], ["https://tec.openplanner.team/stops/LpEbins1", "https://tec.openplanner.team/stops/LrApark2"], ["https://tec.openplanner.team/stops/Lrchero1", "https://tec.openplanner.team/stops/Lvoec--1"], ["https://tec.openplanner.team/stops/LSGbail1", "https://tec.openplanner.team/stops/LSkathe1"], ["https://tec.openplanner.team/stops/Ladarev1", "https://tec.openplanner.team/stops/Ladstat1"], ["https://tec.openplanner.team/stops/X662abb", "https://tec.openplanner.team/stops/X662asb"], ["https://tec.openplanner.team/stops/N501awb", "https://tec.openplanner.team/stops/N501dcb"], ["https://tec.openplanner.team/stops/Bixlqll1", "https://tec.openplanner.team/stops/Bsgibla2"], ["https://tec.openplanner.team/stops/H1gn152b", "https://tec.openplanner.team/stops/H1mq200b"], ["https://tec.openplanner.team/stops/N533apa", "https://tec.openplanner.team/stops/N533apb"], ["https://tec.openplanner.team/stops/Cmlener2", "https://tec.openplanner.team/stops/Cmlvesp1"], ["https://tec.openplanner.team/stops/N505aeb", "https://tec.openplanner.team/stops/N505agb"], ["https://tec.openplanner.team/stops/N538afa", "https://tec.openplanner.team/stops/N538agb"], ["https://tec.openplanner.team/stops/X769aaa", "https://tec.openplanner.team/stops/X769aab"], ["https://tec.openplanner.team/stops/H4ev125a", "https://tec.openplanner.team/stops/H4ev125b"], ["https://tec.openplanner.team/stops/Ctipoui2", "https://tec.openplanner.team/stops/H1tt106b"], ["https://tec.openplanner.team/stops/X840aeb", "https://tec.openplanner.team/stops/X840afb"], ["https://tec.openplanner.team/stops/LHTmonu1", "https://tec.openplanner.team/stops/LHTptha4"], ["https://tec.openplanner.team/stops/X806aba", "https://tec.openplanner.team/stops/X806akb"], ["https://tec.openplanner.team/stops/Lve-isi1", "https://tec.openplanner.team/stops/Lve-isi2"], ["https://tec.openplanner.team/stops/N533apb", "https://tec.openplanner.team/stops/N533aqa"], ["https://tec.openplanner.team/stops/LLrc_ip4", "https://tec.openplanner.team/stops/LLrgara1"], ["https://tec.openplanner.team/stops/LOcchat1", "https://tec.openplanner.team/stops/NL35abb"], ["https://tec.openplanner.team/stops/Bjodpvi1", "https://tec.openplanner.team/stops/Bjodsme2"], ["https://tec.openplanner.team/stops/X880agb", "https://tec.openplanner.team/stops/X880aha"], ["https://tec.openplanner.team/stops/Cradado1", "https://tec.openplanner.team/stops/Cradest2"], ["https://tec.openplanner.team/stops/H4rx142a", "https://tec.openplanner.team/stops/H4rx142b"], ["https://tec.openplanner.team/stops/H5rx134b", "https://tec.openplanner.team/stops/H5rx135b"], ["https://tec.openplanner.team/stops/N204agb", "https://tec.openplanner.team/stops/N204aha"], ["https://tec.openplanner.team/stops/LVsboug1", "https://tec.openplanner.team/stops/LVsboug2"], ["https://tec.openplanner.team/stops/LHChomb1", "https://tec.openplanner.team/stops/LHChomb2"], ["https://tec.openplanner.team/stops/LTIchev2", "https://tec.openplanner.team/stops/LTIp%C3%A9pi2"], ["https://tec.openplanner.team/stops/X886abc", "https://tec.openplanner.team/stops/X886abd"], ["https://tec.openplanner.team/stops/N543bfb", "https://tec.openplanner.team/stops/N554afa"], ["https://tec.openplanner.team/stops/Cctjoue5", "https://tec.openplanner.team/stops/Cplcafp1"], ["https://tec.openplanner.team/stops/H4mo204b", "https://tec.openplanner.team/stops/H4mo205a"], ["https://tec.openplanner.team/stops/H4hx111b", "https://tec.openplanner.team/stops/H4wa159a"], ["https://tec.openplanner.team/stops/X695aab", "https://tec.openplanner.team/stops/X695aja"], ["https://tec.openplanner.team/stops/N360acc", "https://tec.openplanner.team/stops/N360aeb"], ["https://tec.openplanner.team/stops/X739aeb", "https://tec.openplanner.team/stops/X739afa"], ["https://tec.openplanner.team/stops/LSZgare1", "https://tec.openplanner.team/stops/LSZlegr1"], ["https://tec.openplanner.team/stops/N321acb", "https://tec.openplanner.team/stops/N321afb"], ["https://tec.openplanner.team/stops/N507ala", "https://tec.openplanner.team/stops/N507alb"], ["https://tec.openplanner.team/stops/H1ch142b", "https://tec.openplanner.team/stops/H1ch143b"], ["https://tec.openplanner.team/stops/X942aca", "https://tec.openplanner.team/stops/X942adb"], ["https://tec.openplanner.team/stops/LHZbren1", "https://tec.openplanner.team/stops/LVeeg--2"], ["https://tec.openplanner.team/stops/N244aja", "https://tec.openplanner.team/stops/N252aab"], ["https://tec.openplanner.team/stops/Bllncyc2", "https://tec.openplanner.team/stops/Bllnmet2"], ["https://tec.openplanner.team/stops/Llglimb1", "https://tec.openplanner.team/stops/Llgwild8"], ["https://tec.openplanner.team/stops/Ckevela1", "https://tec.openplanner.team/stops/Cwfzola1"], ["https://tec.openplanner.team/stops/N201asa", "https://tec.openplanner.team/stops/N201ava"], ["https://tec.openplanner.team/stops/Bgnpegl2", "https://tec.openplanner.team/stops/Bgnpgar2"], ["https://tec.openplanner.team/stops/N104adb", "https://tec.openplanner.team/stops/N104aka"], ["https://tec.openplanner.team/stops/Lvegc-1*", "https://tec.openplanner.team/stops/Lvegc--4"], ["https://tec.openplanner.team/stops/H1ba108b", "https://tec.openplanner.team/stops/H1ba115b"], ["https://tec.openplanner.team/stops/LBvviem1", "https://tec.openplanner.team/stops/LBvviem2"], ["https://tec.openplanner.team/stops/N117aca", "https://tec.openplanner.team/stops/N117bdb"], ["https://tec.openplanner.team/stops/LWNberg2", "https://tec.openplanner.team/stops/LWNchar2"], ["https://tec.openplanner.team/stops/LVIgare1", "https://tec.openplanner.team/stops/LVIhv--2"], ["https://tec.openplanner.team/stops/Bplncsd1", "https://tec.openplanner.team/stops/Bplnegl1"], ["https://tec.openplanner.team/stops/LMastat3", "https://tec.openplanner.team/stops/LTEnuro2"], ["https://tec.openplanner.team/stops/H4li179d", "https://tec.openplanner.team/stops/H4va231a"], ["https://tec.openplanner.team/stops/H1ba102b", "https://tec.openplanner.team/stops/H1ba114b"], ["https://tec.openplanner.team/stops/N576aab", "https://tec.openplanner.team/stops/N576afb"], ["https://tec.openplanner.team/stops/Bhalkrk1", "https://tec.openplanner.team/stops/Bhalwat1"], ["https://tec.openplanner.team/stops/Lboeg--1", "https://tec.openplanner.team/stops/Lbotige1"], ["https://tec.openplanner.team/stops/N894abb", "https://tec.openplanner.team/stops/N894age"], ["https://tec.openplanner.team/stops/X714aca", "https://tec.openplanner.team/stops/X714acb"], ["https://tec.openplanner.team/stops/N553aba", "https://tec.openplanner.team/stops/N553abb"], ["https://tec.openplanner.team/stops/Cgzpjeu1", "https://tec.openplanner.team/stops/Cgzpjeu2"], ["https://tec.openplanner.team/stops/Cmastma2", "https://tec.openplanner.team/stops/Cmorgof2"], ["https://tec.openplanner.team/stops/LCFcafe1", "https://tec.openplanner.team/stops/LCFchir2"], ["https://tec.openplanner.team/stops/H4ga154a", "https://tec.openplanner.team/stops/H4ga154b"], ["https://tec.openplanner.team/stops/LrEborn1", "https://tec.openplanner.team/stops/LrEkais1"], ["https://tec.openplanner.team/stops/Buccpin1", "https://tec.openplanner.team/stops/Buccpor2"], ["https://tec.openplanner.team/stops/N506amb", "https://tec.openplanner.team/stops/N506btb"], ["https://tec.openplanner.team/stops/Bbcoben1", "https://tec.openplanner.team/stops/Bbcoben2"], ["https://tec.openplanner.team/stops/LHTbeau2", "https://tec.openplanner.team/stops/LHTeg--2"], ["https://tec.openplanner.team/stops/X952acb", "https://tec.openplanner.team/stops/X952ada"], ["https://tec.openplanner.team/stops/LHHecol2", "https://tec.openplanner.team/stops/LHHplac1"], ["https://tec.openplanner.team/stops/X892aca", "https://tec.openplanner.team/stops/X892aha"], ["https://tec.openplanner.team/stops/Crcpcom1", "https://tec.openplanner.team/stops/NH03afa"], ["https://tec.openplanner.team/stops/Ccugilb2", "https://tec.openplanner.team/stops/Ccumasu2"], ["https://tec.openplanner.team/stops/Lbomc--5", "https://tec.openplanner.team/stops/Lbomc--6"], ["https://tec.openplanner.team/stops/N204acb", "https://tec.openplanner.team/stops/N205aba"], ["https://tec.openplanner.team/stops/H1hr127b", "https://tec.openplanner.team/stops/H1to153b"], ["https://tec.openplanner.team/stops/H4bd108a", "https://tec.openplanner.team/stops/H4bd110a"], ["https://tec.openplanner.team/stops/LMOecsp1", "https://tec.openplanner.team/stops/LMOs45-2"], ["https://tec.openplanner.team/stops/X759aeb", "https://tec.openplanner.team/stops/X837abb"], ["https://tec.openplanner.team/stops/N506bab", "https://tec.openplanner.team/stops/N506bma"], ["https://tec.openplanner.team/stops/H4rm108a", "https://tec.openplanner.team/stops/H4ta115a"], ["https://tec.openplanner.team/stops/X949aia", "https://tec.openplanner.team/stops/X949akb"], ["https://tec.openplanner.team/stops/Bgrhhot2", "https://tec.openplanner.team/stops/Bnvmfba1"], ["https://tec.openplanner.team/stops/Bjodcar2", "https://tec.openplanner.team/stops/Bjodtpo2"], ["https://tec.openplanner.team/stops/N505alb", "https://tec.openplanner.team/stops/N511aea"], ["https://tec.openplanner.team/stops/X673aea", "https://tec.openplanner.team/stops/X674aab"], ["https://tec.openplanner.team/stops/H4ab103a", "https://tec.openplanner.team/stops/H5ma186b"], ["https://tec.openplanner.team/stops/N135bda", "https://tec.openplanner.team/stops/N135bea"], ["https://tec.openplanner.team/stops/N543coa", "https://tec.openplanner.team/stops/N543cqa"], ["https://tec.openplanner.team/stops/H1lm106a", "https://tec.openplanner.team/stops/H1to152a"], ["https://tec.openplanner.team/stops/X825adb", "https://tec.openplanner.team/stops/X826adb"], ["https://tec.openplanner.team/stops/H2se113b", "https://tec.openplanner.team/stops/H2se114b"], ["https://tec.openplanner.team/stops/LrAberg2", "https://tec.openplanner.team/stops/LrAmuhl2"], ["https://tec.openplanner.team/stops/H1cd111a", "https://tec.openplanner.team/stops/H1cd111b"], ["https://tec.openplanner.team/stops/Louazot2", "https://tec.openplanner.team/stops/Lsttech1"], ["https://tec.openplanner.team/stops/H4wi164a", "https://tec.openplanner.team/stops/H4wi168a"], ["https://tec.openplanner.team/stops/H1bn113b", "https://tec.openplanner.team/stops/H1bn148a"], ["https://tec.openplanner.team/stops/N154aaa", "https://tec.openplanner.team/stops/N154abb"], ["https://tec.openplanner.team/stops/LOUbleu1", "https://tec.openplanner.team/stops/LOUbleu2"], ["https://tec.openplanner.team/stops/X979aha", "https://tec.openplanner.team/stops/X979ahb"], ["https://tec.openplanner.team/stops/Lvecite1", "https://tec.openplanner.team/stops/Lvecite2"], ["https://tec.openplanner.team/stops/N501fxa", "https://tec.openplanner.team/stops/N501fxb"], ["https://tec.openplanner.team/stops/Bsomwav1", "https://tec.openplanner.team/stops/N584asb"], ["https://tec.openplanner.team/stops/Cgzchab1", "https://tec.openplanner.team/stops/Cgzm1481"], ["https://tec.openplanner.team/stops/Bpthrsp1", "https://tec.openplanner.team/stops/Bpthrsp2"], ["https://tec.openplanner.team/stops/LLRrape3", "https://tec.openplanner.team/stops/LLRsalm2"], ["https://tec.openplanner.team/stops/LLOhest2", "https://tec.openplanner.team/stops/LVtespo1"], ["https://tec.openplanner.team/stops/X616aha", "https://tec.openplanner.team/stops/X625agb"], ["https://tec.openplanner.team/stops/LSoeg--2", "https://tec.openplanner.team/stops/LSokrin2"], ["https://tec.openplanner.team/stops/H5bs103a", "https://tec.openplanner.team/stops/H5bs104a"], ["https://tec.openplanner.team/stops/LmYeich1", "https://tec.openplanner.team/stops/LvAschw1"], ["https://tec.openplanner.team/stops/Btubcvi1", "https://tec.openplanner.team/stops/Btubdeh1"], ["https://tec.openplanner.team/stops/N562aya", "https://tec.openplanner.team/stops/N562bfb"], ["https://tec.openplanner.team/stops/H1ht132b", "https://tec.openplanner.team/stops/H1si153b"], ["https://tec.openplanner.team/stops/LBXhacb2", "https://tec.openplanner.team/stops/LHEzoni2"], ["https://tec.openplanner.team/stops/H4fr146b", "https://tec.openplanner.team/stops/H4fr390a"], ["https://tec.openplanner.team/stops/Blsmjja1", "https://tec.openplanner.team/stops/Bpelegl2"], ["https://tec.openplanner.team/stops/N219afa", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/Bwavche1", "https://tec.openplanner.team/stops/Bwavdel2"], ["https://tec.openplanner.team/stops/H4ka191b", "https://tec.openplanner.team/stops/H4ty270b"], ["https://tec.openplanner.team/stops/LVEcroi1", "https://tec.openplanner.team/stops/LVEeg--2"], ["https://tec.openplanner.team/stops/X629aba", "https://tec.openplanner.team/stops/X629abb"], ["https://tec.openplanner.team/stops/LEBdoct1", "https://tec.openplanner.team/stops/LEMec--1"], ["https://tec.openplanner.team/stops/Llgchal1", "https://tec.openplanner.team/stops/Llgcoll1"], ["https://tec.openplanner.team/stops/Lbrhvl-*", "https://tec.openplanner.team/stops/Ljuetie1"], ["https://tec.openplanner.team/stops/N214aca", "https://tec.openplanner.team/stops/N214aec"], ["https://tec.openplanner.team/stops/Cmlbeau1", "https://tec.openplanner.team/stops/Cmlcons2"], ["https://tec.openplanner.team/stops/H1el137b", "https://tec.openplanner.team/stops/H1el138b"], ["https://tec.openplanner.team/stops/Lgreg--1", "https://tec.openplanner.team/stops/Lgreg--2"], ["https://tec.openplanner.team/stops/Llgform1", "https://tec.openplanner.team/stops/Llgwiar4"], ["https://tec.openplanner.team/stops/X812afa", "https://tec.openplanner.team/stops/X812aia"], ["https://tec.openplanner.team/stops/Cmabegh2", "https://tec.openplanner.team/stops/Cmaegli1"], ["https://tec.openplanner.team/stops/LoUober1", "https://tec.openplanner.team/stops/LsBzent1"], ["https://tec.openplanner.team/stops/Bwatath2", "https://tec.openplanner.team/stops/Bwatbce2"], ["https://tec.openplanner.team/stops/N232ana", "https://tec.openplanner.team/stops/N232aqa"], ["https://tec.openplanner.team/stops/N226aca", "https://tec.openplanner.team/stops/N226acb"], ["https://tec.openplanner.team/stops/Blemkap2", "https://tec.openplanner.team/stops/Btubhoq2"], ["https://tec.openplanner.team/stops/X827aaa", "https://tec.openplanner.team/stops/X828aaa"], ["https://tec.openplanner.team/stops/H4bf105a", "https://tec.openplanner.team/stops/H4bf107a"], ["https://tec.openplanner.team/stops/Llgarmu3", "https://tec.openplanner.team/stops/Llgarmu4"], ["https://tec.openplanner.team/stops/H4fg116b", "https://tec.openplanner.team/stops/H4ho119a"], ["https://tec.openplanner.team/stops/LBdmarr2", "https://tec.openplanner.team/stops/LWMcent2"], ["https://tec.openplanner.team/stops/Lalhomb1", "https://tec.openplanner.team/stops/Laltrap1"], ["https://tec.openplanner.team/stops/Cbtbras1", "https://tec.openplanner.team/stops/Cbtgemi1"], ["https://tec.openplanner.team/stops/H2ll184b", "https://tec.openplanner.team/stops/H2ll190a"], ["https://tec.openplanner.team/stops/LMEense2", "https://tec.openplanner.team/stops/LMIpatr4"], ["https://tec.openplanner.team/stops/LHgeg--1", "https://tec.openplanner.team/stops/LOMdodi2"], ["https://tec.openplanner.team/stops/Llgoutr1", "https://tec.openplanner.team/stops/Llgoutr3"], ["https://tec.openplanner.team/stops/LcRmich1", "https://tec.openplanner.team/stops/LrD28--2"], ["https://tec.openplanner.team/stops/N232bta", "https://tec.openplanner.team/stops/N232bub"], ["https://tec.openplanner.team/stops/H4ka179b", "https://tec.openplanner.team/stops/H4ka194a"], ["https://tec.openplanner.team/stops/LCxhame2", "https://tec.openplanner.team/stops/LHEchex2"], ["https://tec.openplanner.team/stops/Lvelobe1", "https://tec.openplanner.team/stops/Lvewaut1"], ["https://tec.openplanner.team/stops/LSHfief2", "https://tec.openplanner.team/stops/LSHneuv2"], ["https://tec.openplanner.team/stops/Cctlimi1", "https://tec.openplanner.team/stops/Cctlimi2"], ["https://tec.openplanner.team/stops/N501fxb", "https://tec.openplanner.team/stops/N501zba"], ["https://tec.openplanner.team/stops/Lalmakr1", "https://tec.openplanner.team/stops/Lrcchar1"], ["https://tec.openplanner.team/stops/LeLbegl2", "https://tec.openplanner.team/stops/LeLgrie2"], ["https://tec.openplanner.team/stops/LaR1G--1", "https://tec.openplanner.team/stops/LaRkape1"], ["https://tec.openplanner.team/stops/N501eta", "https://tec.openplanner.team/stops/N501neb"], ["https://tec.openplanner.team/stops/Lqbeg--1", "https://tec.openplanner.team/stops/LSAhaye2"], ["https://tec.openplanner.team/stops/Bhmmcam1", "https://tec.openplanner.team/stops/Bndbgar2"], ["https://tec.openplanner.team/stops/LSLeg--1", "https://tec.openplanner.team/stops/LVSpn--2"], ["https://tec.openplanner.team/stops/X908ahb", "https://tec.openplanner.team/stops/X908aib"], ["https://tec.openplanner.team/stops/LlE02--2", "https://tec.openplanner.team/stops/LmLbeil2"], ["https://tec.openplanner.team/stops/LNCneuv1", "https://tec.openplanner.team/stops/LRRchea3"], ["https://tec.openplanner.team/stops/LhMmeil1", "https://tec.openplanner.team/stops/LsCbrau1"], ["https://tec.openplanner.team/stops/X750abb", "https://tec.openplanner.team/stops/X750aia"], ["https://tec.openplanner.team/stops/X650akb", "https://tec.openplanner.team/stops/X651aaa"], ["https://tec.openplanner.team/stops/LCSfagn1", "https://tec.openplanner.team/stops/LCSpoud4"], ["https://tec.openplanner.team/stops/Lfhhoul1", "https://tec.openplanner.team/stops/Lfhncha1"], ["https://tec.openplanner.team/stops/Lcejobe2", "https://tec.openplanner.team/stops/Lgrjobe1"], ["https://tec.openplanner.team/stops/Bblaelo1", "https://tec.openplanner.team/stops/Bblavol2"], ["https://tec.openplanner.team/stops/Cgymara2", "https://tec.openplanner.team/stops/Cgythio2"], ["https://tec.openplanner.team/stops/X658aga", "https://tec.openplanner.team/stops/X658agc"], ["https://tec.openplanner.team/stops/H2fa100a", "https://tec.openplanner.team/stops/H2fa102a"], ["https://tec.openplanner.team/stops/X903abb", "https://tec.openplanner.team/stops/X903aca"], ["https://tec.openplanner.team/stops/X718aha", "https://tec.openplanner.team/stops/X718ahb"], ["https://tec.openplanner.team/stops/LeUarno2", "https://tec.openplanner.team/stops/LeUclou2"], ["https://tec.openplanner.team/stops/LBalacr2", "https://tec.openplanner.team/stops/LBamate2"], ["https://tec.openplanner.team/stops/X741aca", "https://tec.openplanner.team/stops/X741afa"], ["https://tec.openplanner.team/stops/LFFchab2", "https://tec.openplanner.team/stops/LVLzoni1"], ["https://tec.openplanner.team/stops/N137ahb", "https://tec.openplanner.team/stops/N137aia"], ["https://tec.openplanner.team/stops/NR10aaa", "https://tec.openplanner.team/stops/NR10aab"], ["https://tec.openplanner.team/stops/Cmyrays1", "https://tec.openplanner.team/stops/Cmyrays2"], ["https://tec.openplanner.team/stops/Csebasc1", "https://tec.openplanner.team/stops/Csequew2"], ["https://tec.openplanner.team/stops/Borbod92", "https://tec.openplanner.team/stops/Btstcar4"], ["https://tec.openplanner.team/stops/Brxmhai1", "https://tec.openplanner.team/stops/Brxmhai2"], ["https://tec.openplanner.team/stops/N217aeb", "https://tec.openplanner.team/stops/N232adb"], ["https://tec.openplanner.team/stops/Cmyquen1", "https://tec.openplanner.team/stops/Cmyquen2"], ["https://tec.openplanner.team/stops/Bbstfch1", "https://tec.openplanner.team/stops/Bvlvbth1"], ["https://tec.openplanner.team/stops/LNOsedo1", "https://tec.openplanner.team/stops/LNOsedo2"], ["https://tec.openplanner.team/stops/Cthrwai1", "https://tec.openplanner.team/stops/Cthrwai2"], ["https://tec.openplanner.team/stops/Bsrbtil1", "https://tec.openplanner.team/stops/Bsrbtil2"], ["https://tec.openplanner.team/stops/X636bda", "https://tec.openplanner.team/stops/X636bdb"], ["https://tec.openplanner.team/stops/Clproi2", "https://tec.openplanner.team/stops/Clpsola2"], ["https://tec.openplanner.team/stops/X396afa", "https://tec.openplanner.team/stops/X917ajb"], ["https://tec.openplanner.team/stops/X636aqa", "https://tec.openplanner.team/stops/X636bjb"], ["https://tec.openplanner.team/stops/LWAperv1", "https://tec.openplanner.team/stops/LWAvisi1"], ["https://tec.openplanner.team/stops/N520adb", "https://tec.openplanner.team/stops/N520aea"], ["https://tec.openplanner.team/stops/LCvmonu1", "https://tec.openplanner.team/stops/LCvneu-1"], ["https://tec.openplanner.team/stops/N232apb", "https://tec.openplanner.team/stops/N232bpa"], ["https://tec.openplanner.team/stops/Cbwcab1", "https://tec.openplanner.team/stops/Cbwmvri2"], ["https://tec.openplanner.team/stops/X727afa", "https://tec.openplanner.team/stops/X746aab"], ["https://tec.openplanner.team/stops/X658ada", "https://tec.openplanner.team/stops/X659aka"], ["https://tec.openplanner.team/stops/N501lda", "https://tec.openplanner.team/stops/N501lxb"], ["https://tec.openplanner.team/stops/X903aab", "https://tec.openplanner.team/stops/X903abb"], ["https://tec.openplanner.team/stops/N501iqa", "https://tec.openplanner.team/stops/N501iqb"], ["https://tec.openplanner.team/stops/N232bxa", "https://tec.openplanner.team/stops/N232bxb"], ["https://tec.openplanner.team/stops/Lprorph1", "https://tec.openplanner.team/stops/Lprthie1"], ["https://tec.openplanner.team/stops/Ladloup2", "https://tec.openplanner.team/stops/Lvevert1"], ["https://tec.openplanner.team/stops/LAxbott1", "https://tec.openplanner.team/stops/LFsec--1"], ["https://tec.openplanner.team/stops/Bchgbar1", "https://tec.openplanner.team/stops/Blontry2"], ["https://tec.openplanner.team/stops/X666alb", "https://tec.openplanner.team/stops/X666ama"], ["https://tec.openplanner.team/stops/X658aab", "https://tec.openplanner.team/stops/X658aga"], ["https://tec.openplanner.team/stops/Caircen1", "https://tec.openplanner.team/stops/Caircen2"], ["https://tec.openplanner.team/stops/LNIbas-2", "https://tec.openplanner.team/stops/LSZarbe2"], ["https://tec.openplanner.team/stops/H1vh135a", "https://tec.openplanner.team/stops/H1vh137a"], ["https://tec.openplanner.team/stops/LnEfrie2", "https://tec.openplanner.team/stops/LnEmett1"], ["https://tec.openplanner.team/stops/Lanpont1", "https://tec.openplanner.team/stops/Lanpont2"], ["https://tec.openplanner.team/stops/Cclplac1", "https://tec.openplanner.team/stops/Cclrgiv1"], ["https://tec.openplanner.team/stops/Cfccabi1", "https://tec.openplanner.team/stops/Cfcpier1"], ["https://tec.openplanner.team/stops/LDLgran1", "https://tec.openplanner.team/stops/LHYlinc1"], ["https://tec.openplanner.team/stops/X802acb", "https://tec.openplanner.team/stops/X802adb"], ["https://tec.openplanner.team/stops/Cmllait1", "https://tec.openplanner.team/stops/Cmlstgi2"], ["https://tec.openplanner.team/stops/Bwatsan2", "https://tec.openplanner.team/stops/Bwatvco2"], ["https://tec.openplanner.team/stops/X788aba", "https://tec.openplanner.team/stops/X788acb"], ["https://tec.openplanner.team/stops/X398ada", "https://tec.openplanner.team/stops/X999acb"], ["https://tec.openplanner.team/stops/X639amd", "https://tec.openplanner.team/stops/X639anb"], ["https://tec.openplanner.team/stops/Btlgmou1", "https://tec.openplanner.team/stops/Btlgreg2"], ["https://tec.openplanner.team/stops/H4ty270b", "https://tec.openplanner.team/stops/H4ty290a"], ["https://tec.openplanner.team/stops/N150adb", "https://tec.openplanner.team/stops/N150aga"], ["https://tec.openplanner.team/stops/LBPxhav1", "https://tec.openplanner.team/stops/LBPxhav2"], ["https://tec.openplanner.team/stops/X750bna", "https://tec.openplanner.team/stops/X750boa"], ["https://tec.openplanner.team/stops/Cchba08", "https://tec.openplanner.team/stops/Cchba12"], ["https://tec.openplanner.team/stops/Bcer4br1", "https://tec.openplanner.team/stops/Bcer4br4"], ["https://tec.openplanner.team/stops/Bperqui1", "https://tec.openplanner.team/stops/N519aac"], ["https://tec.openplanner.team/stops/Cmmcime1", "https://tec.openplanner.team/stops/Cmmcime2"], ["https://tec.openplanner.team/stops/N579aab", "https://tec.openplanner.team/stops/N580abb"], ["https://tec.openplanner.team/stops/Lsecris2", "https://tec.openplanner.team/stops/Lseegva2"], ["https://tec.openplanner.team/stops/X636aub", "https://tec.openplanner.team/stops/X636ayb"], ["https://tec.openplanner.team/stops/X390apb", "https://tec.openplanner.team/stops/X991aea"], ["https://tec.openplanner.team/stops/Lemjacq1", "https://tec.openplanner.team/stops/Lemlami2"], ["https://tec.openplanner.team/stops/X637aqb", "https://tec.openplanner.team/stops/X650aoa"], ["https://tec.openplanner.team/stops/Cfaecmo2", "https://tec.openplanner.team/stops/Cpiegli1"], ["https://tec.openplanner.team/stops/N503aib", "https://tec.openplanner.team/stops/N503ala"], ["https://tec.openplanner.team/stops/H2go118b", "https://tec.openplanner.team/stops/H2tz117a"], ["https://tec.openplanner.team/stops/N118avc", "https://tec.openplanner.team/stops/N118bbb"], ["https://tec.openplanner.team/stops/N210aab", "https://tec.openplanner.team/stops/NL82agb"], ["https://tec.openplanner.team/stops/Lscbarg1", "https://tec.openplanner.team/stops/Ltimarr1"], ["https://tec.openplanner.team/stops/Lvegera2", "https://tec.openplanner.team/stops/Lveveou2"], ["https://tec.openplanner.team/stops/Btubmfa2", "https://tec.openplanner.team/stops/Btubpla1"], ["https://tec.openplanner.team/stops/N135beb", "https://tec.openplanner.team/stops/N140aab"], ["https://tec.openplanner.team/stops/Blonegl1", "https://tec.openplanner.team/stops/Bopplon1"], ["https://tec.openplanner.team/stops/X619ajb", "https://tec.openplanner.team/stops/X622afa"], ["https://tec.openplanner.team/stops/N503aha", "https://tec.openplanner.team/stops/N503aia"], ["https://tec.openplanner.team/stops/N287ada", "https://tec.openplanner.team/stops/N287adb"], ["https://tec.openplanner.team/stops/H3lr132a", "https://tec.openplanner.team/stops/H3lr132b"], ["https://tec.openplanner.team/stops/Louetan2", "https://tec.openplanner.team/stops/Lougoff1"], ["https://tec.openplanner.team/stops/LCObouh1", "https://tec.openplanner.team/stops/LCObouh2"], ["https://tec.openplanner.team/stops/Bhoegbr1", "https://tec.openplanner.team/stops/Bhoemel2"], ["https://tec.openplanner.team/stops/N508ama", "https://tec.openplanner.team/stops/N509avb"], ["https://tec.openplanner.team/stops/N201awb", "https://tec.openplanner.team/stops/N202aga"], ["https://tec.openplanner.team/stops/Bnivh%C3%B4p1", "https://tec.openplanner.team/stops/Bnivsoi1"], ["https://tec.openplanner.team/stops/H4hu115b", "https://tec.openplanner.team/stops/H4ld130b"], ["https://tec.openplanner.team/stops/LeUjuge2", "https://tec.openplanner.team/stops/LeUstad1"], ["https://tec.openplanner.team/stops/N507apa", "https://tec.openplanner.team/stops/N507aqa"], ["https://tec.openplanner.team/stops/X770aga", "https://tec.openplanner.team/stops/X774aac"], ["https://tec.openplanner.team/stops/N506abb", "https://tec.openplanner.team/stops/N506bla"], ["https://tec.openplanner.team/stops/H5wo122b", "https://tec.openplanner.team/stops/H5wo132b"], ["https://tec.openplanner.team/stops/X653aba", "https://tec.openplanner.team/stops/X653abb"], ["https://tec.openplanner.team/stops/Bjodcoi2", "https://tec.openplanner.team/stops/Bjodfco1"], ["https://tec.openplanner.team/stops/N232aua", "https://tec.openplanner.team/stops/N232blb"], ["https://tec.openplanner.team/stops/Bjodsje2", "https://tec.openplanner.team/stops/Bjodsme2"], ["https://tec.openplanner.team/stops/X649abb", "https://tec.openplanner.team/stops/X671ada"], ["https://tec.openplanner.team/stops/X897ara", "https://tec.openplanner.team/stops/X897ava"], ["https://tec.openplanner.team/stops/LLz21--1", "https://tec.openplanner.team/stops/LRfbeau1"], ["https://tec.openplanner.team/stops/H4wa149b", "https://tec.openplanner.team/stops/H4wa151b"], ["https://tec.openplanner.team/stops/Barqhpe2", "https://tec.openplanner.team/stops/Bptrgri2"], ["https://tec.openplanner.team/stops/X615bda", "https://tec.openplanner.team/stops/X615bdb"], ["https://tec.openplanner.team/stops/Cdacolu2", "https://tec.openplanner.team/stops/Clomakr2"], ["https://tec.openplanner.team/stops/LATdame2", "https://tec.openplanner.team/stops/LATjaur1"], ["https://tec.openplanner.team/stops/LmHflor2", "https://tec.openplanner.team/stops/LmTgers2"], ["https://tec.openplanner.team/stops/X804bea", "https://tec.openplanner.team/stops/X804beb"], ["https://tec.openplanner.team/stops/Cgrbert1", "https://tec.openplanner.team/stops/Cgrgrce2"], ["https://tec.openplanner.team/stops/LSZheid1", "https://tec.openplanner.team/stops/LTgjalh1"], ["https://tec.openplanner.team/stops/LDmcruc2", "https://tec.openplanner.team/stops/LDmeg--1"], ["https://tec.openplanner.team/stops/Bbeagae1", "https://tec.openplanner.team/stops/Bbeagae2"], ["https://tec.openplanner.team/stops/H4ga414a", "https://tec.openplanner.team/stops/H4vz371a"], ["https://tec.openplanner.team/stops/N507ada", "https://tec.openplanner.team/stops/N507aia"], ["https://tec.openplanner.team/stops/H1fa120b", "https://tec.openplanner.team/stops/H1hl127b"], ["https://tec.openplanner.team/stops/H1gh155b", "https://tec.openplanner.team/stops/H1gh160b"], ["https://tec.openplanner.team/stops/Cmregli3", "https://tec.openplanner.team/stops/Cmregli4"], ["https://tec.openplanner.team/stops/X824agb", "https://tec.openplanner.team/stops/X824aha"], ["https://tec.openplanner.team/stops/X609ahb", "https://tec.openplanner.team/stops/X611aaa"], ["https://tec.openplanner.team/stops/X790aka", "https://tec.openplanner.team/stops/X790ala"], ["https://tec.openplanner.team/stops/LHgec--0", "https://tec.openplanner.team/stops/LHgeg--2"], ["https://tec.openplanner.team/stops/N501bhb", "https://tec.openplanner.team/stops/N501bvb"], ["https://tec.openplanner.team/stops/H4ta117a", "https://tec.openplanner.team/stops/H4ta124b"], ["https://tec.openplanner.team/stops/H1gr110a", "https://tec.openplanner.team/stops/H1hr127a"], ["https://tec.openplanner.team/stops/N543bfa", "https://tec.openplanner.team/stops/N566aea"], ["https://tec.openplanner.team/stops/LBBodet1", "https://tec.openplanner.team/stops/NL82aga"], ["https://tec.openplanner.team/stops/X609afa", "https://tec.openplanner.team/stops/X609ana"], ["https://tec.openplanner.team/stops/Cgymest1", "https://tec.openplanner.team/stops/Cgymest2"], ["https://tec.openplanner.team/stops/LCEec--1", "https://tec.openplanner.team/stops/LETfort4"], ["https://tec.openplanner.team/stops/LnE79--1", "https://tec.openplanner.team/stops/LnE79--2"], ["https://tec.openplanner.team/stops/Bcsecar2", "https://tec.openplanner.team/stops/Bcseeco3"], ["https://tec.openplanner.team/stops/N535acc", "https://tec.openplanner.team/stops/N535atb"], ["https://tec.openplanner.team/stops/X783acd", "https://tec.openplanner.team/stops/X783ada"], ["https://tec.openplanner.team/stops/Bvirbie3", "https://tec.openplanner.team/stops/Bvirpos2"], ["https://tec.openplanner.team/stops/Lpeatel1", "https://tec.openplanner.team/stops/Lpecaze1"], ["https://tec.openplanner.team/stops/N355abb", "https://tec.openplanner.team/stops/N874agb"], ["https://tec.openplanner.team/stops/N562bla", "https://tec.openplanner.team/stops/N562bqa"], ["https://tec.openplanner.team/stops/Llgcime2", "https://tec.openplanner.team/stops/Lvtpepi2"], ["https://tec.openplanner.team/stops/LMHmeha2", "https://tec.openplanner.team/stops/LMHplac1"], ["https://tec.openplanner.team/stops/H2fy120d", "https://tec.openplanner.team/stops/H2mg141a"], ["https://tec.openplanner.team/stops/N506ajb", "https://tec.openplanner.team/stops/N506bpa"], ["https://tec.openplanner.team/stops/Cgy4bra1", "https://tec.openplanner.team/stops/CMgill2"], ["https://tec.openplanner.team/stops/LSU50--1", "https://tec.openplanner.team/stops/LSUroyo2"], ["https://tec.openplanner.team/stops/Csdbosq2", "https://tec.openplanner.team/stops/Csdfboi2"], ["https://tec.openplanner.team/stops/LHGbeur3", "https://tec.openplanner.team/stops/LHGzoni1"], ["https://tec.openplanner.team/stops/LHDmc--2", "https://tec.openplanner.team/stops/LLGec--*"], ["https://tec.openplanner.team/stops/Btubois1", "https://tec.openplanner.team/stops/Btubois2"], ["https://tec.openplanner.team/stops/LSZchpl1", "https://tec.openplanner.team/stops/LSZptwa2"], ["https://tec.openplanner.team/stops/CMsama1", "https://tec.openplanner.team/stops/Cmtneuv2"], ["https://tec.openplanner.team/stops/LLagert*", "https://tec.openplanner.team/stops/LLasta-*"], ["https://tec.openplanner.team/stops/H1mq199b", "https://tec.openplanner.team/stops/H4ab100a"], ["https://tec.openplanner.team/stops/H4tp146b", "https://tec.openplanner.team/stops/H4tu171b"], ["https://tec.openplanner.team/stops/LBpberl2", "https://tec.openplanner.team/stops/LBpcren1"], ["https://tec.openplanner.team/stops/LTychev1", "https://tec.openplanner.team/stops/LTyh51-2"], ["https://tec.openplanner.team/stops/X910aea", "https://tec.openplanner.team/stops/X910afb"], ["https://tec.openplanner.team/stops/Lticime2", "https://tec.openplanner.team/stops/Ltinico2"], ["https://tec.openplanner.team/stops/X890aba", "https://tec.openplanner.team/stops/X890afa"], ["https://tec.openplanner.team/stops/Crcverr1", "https://tec.openplanner.team/stops/NH03aea"], ["https://tec.openplanner.team/stops/X788aga", "https://tec.openplanner.team/stops/X788ahb"], ["https://tec.openplanner.team/stops/H1ms260a", "https://tec.openplanner.team/stops/H1ms260b"], ["https://tec.openplanner.team/stops/N232aba", "https://tec.openplanner.team/stops/N232bqa"], ["https://tec.openplanner.team/stops/Cwgplac2", "https://tec.openplanner.team/stops/Cwgrans4"], ["https://tec.openplanner.team/stops/Blthwav1", "https://tec.openplanner.team/stops/Bmlncha1"], ["https://tec.openplanner.team/stops/H1cu124a", "https://tec.openplanner.team/stops/H1cu130a"], ["https://tec.openplanner.team/stops/Loufleu2", "https://tec.openplanner.team/stops/Lousite6"], ["https://tec.openplanner.team/stops/Crg3arb2", "https://tec.openplanner.team/stops/Crgmgri1"], ["https://tec.openplanner.team/stops/LFRfagn1", "https://tec.openplanner.team/stops/LFRrohe1"], ["https://tec.openplanner.team/stops/H1et101a", "https://tec.openplanner.team/stops/H1ju121a"], ["https://tec.openplanner.team/stops/LhLbalt1", "https://tec.openplanner.team/stops/LlSzoll2"], ["https://tec.openplanner.team/stops/LWOplat2", "https://tec.openplanner.team/stops/LWOsudr2"], ["https://tec.openplanner.team/stops/Crsapol2", "https://tec.openplanner.team/stops/N543cna"], ["https://tec.openplanner.team/stops/X896afa", "https://tec.openplanner.team/stops/X897axb"], ["https://tec.openplanner.team/stops/Blhugai1", "https://tec.openplanner.team/stops/Bohnegl2"], ["https://tec.openplanner.team/stops/X983aea", "https://tec.openplanner.team/stops/X996ada"], ["https://tec.openplanner.team/stops/H1hr116b", "https://tec.openplanner.team/stops/H1hv132b"], ["https://tec.openplanner.team/stops/N135aga", "https://tec.openplanner.team/stops/N135aib"], ["https://tec.openplanner.team/stops/LMforba2", "https://tec.openplanner.team/stops/LMfsart2"], ["https://tec.openplanner.team/stops/N232beb", "https://tec.openplanner.team/stops/N232bib"], ["https://tec.openplanner.team/stops/LBbhupp1", "https://tec.openplanner.team/stops/X548aea"], ["https://tec.openplanner.team/stops/H5rx130a", "https://tec.openplanner.team/stops/H5rx145a"], ["https://tec.openplanner.team/stops/X764abb", "https://tec.openplanner.team/stops/X764aca"], ["https://tec.openplanner.team/stops/N101agc", "https://tec.openplanner.team/stops/N101aha"], ["https://tec.openplanner.team/stops/Ccogode1", "https://tec.openplanner.team/stops/Ccogode2"], ["https://tec.openplanner.team/stops/Cflcoro1", "https://tec.openplanner.team/stops/Cflpost1"], ["https://tec.openplanner.team/stops/X358acd", "https://tec.openplanner.team/stops/X358aeb"], ["https://tec.openplanner.team/stops/Ctuhouz2", "https://tec.openplanner.team/stops/Ctupont1"], ["https://tec.openplanner.team/stops/X879aaa", "https://tec.openplanner.team/stops/X879aab"], ["https://tec.openplanner.team/stops/Brixpla1", "https://tec.openplanner.team/stops/Brixpla2"], ["https://tec.openplanner.team/stops/Lsehya-4", "https://tec.openplanner.team/stops/Lsepair3"], ["https://tec.openplanner.team/stops/Bcseaba2", "https://tec.openplanner.team/stops/Bsmgsuz1"], ["https://tec.openplanner.team/stops/Livmoul2", "https://tec.openplanner.team/stops/Livroch2"], ["https://tec.openplanner.team/stops/H1hv132a", "https://tec.openplanner.team/stops/H1hv133a"], ["https://tec.openplanner.team/stops/N323aaa", "https://tec.openplanner.team/stops/N368aea"], ["https://tec.openplanner.team/stops/H4mv196a", "https://tec.openplanner.team/stops/H4mv196b"], ["https://tec.openplanner.team/stops/N229aia", "https://tec.openplanner.team/stops/N229aob"], ["https://tec.openplanner.team/stops/N516aib", "https://tec.openplanner.team/stops/N517aba"], ["https://tec.openplanner.team/stops/LAWchpl1", "https://tec.openplanner.team/stops/LHGleje1"], ["https://tec.openplanner.team/stops/Ltiegli3", "https://tec.openplanner.team/stops/Ltipass2"], ["https://tec.openplanner.team/stops/N368aba", "https://tec.openplanner.team/stops/N368abb"], ["https://tec.openplanner.team/stops/Llgangl1", "https://tec.openplanner.team/stops/Llgangl2"], ["https://tec.openplanner.team/stops/LMEeg--2", "https://tec.openplanner.team/stops/LMEense1"], ["https://tec.openplanner.team/stops/X994aka", "https://tec.openplanner.team/stops/X995aaa"], ["https://tec.openplanner.team/stops/Lhecarc2", "https://tec.openplanner.team/stops/Lhepaqu1"], ["https://tec.openplanner.team/stops/N538agb", "https://tec.openplanner.team/stops/N538anb"], ["https://tec.openplanner.team/stops/H5el111a", "https://tec.openplanner.team/stops/H5rx132b"], ["https://tec.openplanner.team/stops/X664aab", "https://tec.openplanner.team/stops/X664adc"], ["https://tec.openplanner.team/stops/X911aha", "https://tec.openplanner.team/stops/X911ata"], ["https://tec.openplanner.team/stops/X687aga", "https://tec.openplanner.team/stops/X687aha"], ["https://tec.openplanner.team/stops/Cctchav1", "https://tec.openplanner.team/stops/NC11ahb"], ["https://tec.openplanner.team/stops/X811ada", "https://tec.openplanner.team/stops/X811adb"], ["https://tec.openplanner.team/stops/N113aca", "https://tec.openplanner.team/stops/N113acb"], ["https://tec.openplanner.team/stops/Lstauna1", "https://tec.openplanner.team/stops/Lstauna2"], ["https://tec.openplanner.team/stops/X623aeb", "https://tec.openplanner.team/stops/X623afa"], ["https://tec.openplanner.team/stops/LEnchan1", "https://tec.openplanner.team/stops/NL67aab"], ["https://tec.openplanner.team/stops/LAYdieu1", "https://tec.openplanner.team/stops/LAYwerb2"], ["https://tec.openplanner.team/stops/N211baa", "https://tec.openplanner.team/stops/N211bab"], ["https://tec.openplanner.team/stops/LrEkirc1", "https://tec.openplanner.team/stops/LrEkreu1"], ["https://tec.openplanner.team/stops/Ccupays1", "https://tec.openplanner.team/stops/Ccuseba1"], ["https://tec.openplanner.team/stops/LWHwaas1", "https://tec.openplanner.team/stops/LWHzave2"], ["https://tec.openplanner.team/stops/N204aea", "https://tec.openplanner.team/stops/N208aab"], ["https://tec.openplanner.team/stops/Lthfagn2", "https://tec.openplanner.team/stops/Lthfren2"], ["https://tec.openplanner.team/stops/X955aba", "https://tec.openplanner.team/stops/X955acb"], ["https://tec.openplanner.team/stops/X758aab", "https://tec.openplanner.team/stops/X758ajb"], ["https://tec.openplanner.team/stops/N501hsb", "https://tec.openplanner.team/stops/N501hwa"], ["https://tec.openplanner.team/stops/Bhevjal2", "https://tec.openplanner.team/stops/Bhevl3l1"], ["https://tec.openplanner.team/stops/N232aea", "https://tec.openplanner.team/stops/N232apa"], ["https://tec.openplanner.team/stops/LFIeg--1", "https://tec.openplanner.team/stops/LFIinse2"], ["https://tec.openplanner.team/stops/Bnivche2", "https://tec.openplanner.team/stops/Bnivcma1"], ["https://tec.openplanner.team/stops/H1ms250a", "https://tec.openplanner.team/stops/H1ms936a"], ["https://tec.openplanner.team/stops/H1bb115a", "https://tec.openplanner.team/stops/H1bo150a"], ["https://tec.openplanner.team/stops/Bboutry1", "https://tec.openplanner.team/stops/Bwaygrg2"], ["https://tec.openplanner.team/stops/H4ga153b", "https://tec.openplanner.team/stops/H4ga155b"], ["https://tec.openplanner.team/stops/X669aaa", "https://tec.openplanner.team/stops/X669aea"], ["https://tec.openplanner.team/stops/H3bi101a", "https://tec.openplanner.team/stops/H3bi112a"], ["https://tec.openplanner.team/stops/N106aeb", "https://tec.openplanner.team/stops/N106apa"], ["https://tec.openplanner.team/stops/N534ada", "https://tec.openplanner.team/stops/N534aga"], ["https://tec.openplanner.team/stops/LLrchat2", "https://tec.openplanner.team/stops/LLrdrev2"], ["https://tec.openplanner.team/stops/LFLcent1", "https://tec.openplanner.team/stops/LSpunio2"], ["https://tec.openplanner.team/stops/Bmelenf1", "https://tec.openplanner.team/stops/Btilsce1"], ["https://tec.openplanner.team/stops/Caibino1", "https://tec.openplanner.team/stops/N543cjb"], ["https://tec.openplanner.team/stops/X946abb", "https://tec.openplanner.team/stops/X946afa"], ["https://tec.openplanner.team/stops/LrDschl2", "https://tec.openplanner.team/stops/LrEfeck1"], ["https://tec.openplanner.team/stops/LVPbleh2", "https://tec.openplanner.team/stops/LVPgrot1"], ["https://tec.openplanner.team/stops/Buccpes2", "https://tec.openplanner.team/stops/Bwbfgar2"], ["https://tec.openplanner.team/stops/Bettars1", "https://tec.openplanner.team/stops/Bettgle1"], ["https://tec.openplanner.team/stops/H1po130a", "https://tec.openplanner.team/stops/H1po133a"], ["https://tec.openplanner.team/stops/N501exa", "https://tec.openplanner.team/stops/N501hcc"], ["https://tec.openplanner.team/stops/Ccocoup1", "https://tec.openplanner.team/stops/Crowilb2"], ["https://tec.openplanner.team/stops/H4es117a", "https://tec.openplanner.team/stops/H4ln128b"], ["https://tec.openplanner.team/stops/Cobbusc2", "https://tec.openplanner.team/stops/Cobmven2"], ["https://tec.openplanner.team/stops/LScd45-1", "https://tec.openplanner.team/stops/LScdina1"], ["https://tec.openplanner.team/stops/Lmlmich2", "https://tec.openplanner.team/stops/Lmlrosa1"], ["https://tec.openplanner.team/stops/H4ty301a", "https://tec.openplanner.team/stops/H4ty335b"], ["https://tec.openplanner.team/stops/H4ka193a", "https://tec.openplanner.team/stops/H4ty333a"], ["https://tec.openplanner.team/stops/N201aia", "https://tec.openplanner.team/stops/N201atb"], ["https://tec.openplanner.team/stops/NL76aja", "https://tec.openplanner.team/stops/NL76akb"], ["https://tec.openplanner.team/stops/LBIaepo2", "https://tec.openplanner.team/stops/Lmlpech1"], ["https://tec.openplanner.team/stops/LOrchau2", "https://tec.openplanner.team/stops/LORcomb1"], ["https://tec.openplanner.team/stops/N562acb", "https://tec.openplanner.team/stops/N562aeb"], ["https://tec.openplanner.team/stops/LeUmoor1", "https://tec.openplanner.team/stops/LeUwert2"], ["https://tec.openplanner.team/stops/N120aab", "https://tec.openplanner.team/stops/N302ada"], ["https://tec.openplanner.team/stops/H1gi123b", "https://tec.openplanner.team/stops/H1ry137a"], ["https://tec.openplanner.team/stops/Cpl4bra3", "https://tec.openplanner.team/stops/Cplrmon2"], ["https://tec.openplanner.team/stops/H1ha187b", "https://tec.openplanner.team/stops/H1ha190b"], ["https://tec.openplanner.team/stops/X625ada", "https://tec.openplanner.team/stops/X625aea"], ["https://tec.openplanner.team/stops/H1te184a", "https://tec.openplanner.team/stops/H1te187b"], ["https://tec.openplanner.team/stops/H4ty320b", "https://tec.openplanner.team/stops/H4ty323a"], ["https://tec.openplanner.team/stops/X941aca", "https://tec.openplanner.team/stops/X941adb"], ["https://tec.openplanner.team/stops/NL74abb", "https://tec.openplanner.team/stops/NL75aba"], ["https://tec.openplanner.team/stops/H1mb127a", "https://tec.openplanner.team/stops/H1mb127b"], ["https://tec.openplanner.team/stops/LMOfleu2", "https://tec.openplanner.team/stops/LMOm64-1"], ["https://tec.openplanner.team/stops/LCsfize1", "https://tec.openplanner.team/stops/LFFmagr2"], ["https://tec.openplanner.team/stops/X734aia", "https://tec.openplanner.team/stops/X734aja"], ["https://tec.openplanner.team/stops/Cwfdame2", "https://tec.openplanner.team/stops/Cwfmonu2"], ["https://tec.openplanner.team/stops/N501lob", "https://tec.openplanner.team/stops/N538aab"], ["https://tec.openplanner.team/stops/Bcbqtub1", "https://tec.openplanner.team/stops/Bosqpqu1"], ["https://tec.openplanner.team/stops/X662aea", "https://tec.openplanner.team/stops/X663aga"], ["https://tec.openplanner.team/stops/Cobbuze2", "https://tec.openplanner.team/stops/Cobnive2"], ["https://tec.openplanner.team/stops/X738acb", "https://tec.openplanner.team/stops/X754amb"], ["https://tec.openplanner.team/stops/N534bua", "https://tec.openplanner.team/stops/N534bvb"], ["https://tec.openplanner.team/stops/Cgomoul1", "https://tec.openplanner.team/stops/CMemai1"], ["https://tec.openplanner.team/stops/Cgocapu2", "https://tec.openplanner.team/stops/Cgohnda2"], ["https://tec.openplanner.team/stops/LmTschi2", "https://tec.openplanner.team/stops/LrTpost1"], ["https://tec.openplanner.team/stops/Lcceclu1", "https://tec.openplanner.team/stops/Lfhmarn2"], ["https://tec.openplanner.team/stops/Bptrlux2", "https://tec.openplanner.team/stops/Bptrman2"], ["https://tec.openplanner.team/stops/N539aza", "https://tec.openplanner.team/stops/N539baa"], ["https://tec.openplanner.team/stops/H1cu132a", "https://tec.openplanner.team/stops/H1je212a"], ["https://tec.openplanner.team/stops/LHNgare1", "https://tec.openplanner.team/stops/LHNtill1"], ["https://tec.openplanner.team/stops/X926afb", "https://tec.openplanner.team/stops/X945abc"], ["https://tec.openplanner.team/stops/X713ajc", "https://tec.openplanner.team/stops/X713ajd"], ["https://tec.openplanner.team/stops/Lstpoly1", "https://tec.openplanner.team/stops/Lstpoly2"], ["https://tec.openplanner.team/stops/X601bpb", "https://tec.openplanner.team/stops/X601dha"], ["https://tec.openplanner.team/stops/N506bfb", "https://tec.openplanner.team/stops/N512agb"], ["https://tec.openplanner.team/stops/X747aka", "https://tec.openplanner.team/stops/X749aab"], ["https://tec.openplanner.team/stops/H1mb131b", "https://tec.openplanner.team/stops/H1mb135a"], ["https://tec.openplanner.team/stops/N553akb", "https://tec.openplanner.team/stops/N553ala"], ["https://tec.openplanner.team/stops/Bcbqrog1", "https://tec.openplanner.team/stops/Bcbqrog2"], ["https://tec.openplanner.team/stops/N501lzz", "https://tec.openplanner.team/stops/N501maa"], ["https://tec.openplanner.team/stops/H4ru246a", "https://tec.openplanner.team/stops/H4ty349b"], ["https://tec.openplanner.team/stops/LHFcaqu1", "https://tec.openplanner.team/stops/LJedonc1"], ["https://tec.openplanner.team/stops/H4ha168b", "https://tec.openplanner.team/stops/H4me213b"], ["https://tec.openplanner.team/stops/LHEches3", "https://tec.openplanner.team/stops/LHEecmo1"], ["https://tec.openplanner.team/stops/H4be111a", "https://tec.openplanner.team/stops/H4be113a"], ["https://tec.openplanner.team/stops/H2sb225b", "https://tec.openplanner.team/stops/H3th134a"], ["https://tec.openplanner.team/stops/N535ajb", "https://tec.openplanner.team/stops/N535aub"], ["https://tec.openplanner.team/stops/H1ol137b", "https://tec.openplanner.team/stops/H5is168a"], ["https://tec.openplanner.team/stops/X756aia", "https://tec.openplanner.team/stops/X779afa"], ["https://tec.openplanner.team/stops/Cfmrrou1", "https://tec.openplanner.team/stops/Cgxfo141"], ["https://tec.openplanner.team/stops/H4mb139a", "https://tec.openplanner.team/stops/H4mb142a"], ["https://tec.openplanner.team/stops/X820agb", "https://tec.openplanner.team/stops/X820agd"], ["https://tec.openplanner.team/stops/X652acb", "https://tec.openplanner.team/stops/X652aea"], ["https://tec.openplanner.team/stops/Llgcrah1", "https://tec.openplanner.team/stops/LlgPRVo2"], ["https://tec.openplanner.team/stops/Bmonbri1", "https://tec.openplanner.team/stops/Bnivlai2"], ["https://tec.openplanner.team/stops/H1qp140a", "https://tec.openplanner.team/stops/H1qp142b"], ["https://tec.openplanner.team/stops/X619afb", "https://tec.openplanner.team/stops/X619agb"], ["https://tec.openplanner.team/stops/X877aab", "https://tec.openplanner.team/stops/X877aeb"], ["https://tec.openplanner.team/stops/X605aca", "https://tec.openplanner.team/stops/X605acb"], ["https://tec.openplanner.team/stops/Ctmmana1", "https://tec.openplanner.team/stops/Ctmmana2"], ["https://tec.openplanner.team/stops/H5pe141a", "https://tec.openplanner.team/stops/H5pe141b"], ["https://tec.openplanner.team/stops/N508ajb", "https://tec.openplanner.team/stops/N513bib"], ["https://tec.openplanner.team/stops/LREelse2", "https://tec.openplanner.team/stops/LREsech2"], ["https://tec.openplanner.team/stops/Blimmer2", "https://tec.openplanner.team/stops/Bottvil2"], ["https://tec.openplanner.team/stops/X921aia", "https://tec.openplanner.team/stops/X921aqb"], ["https://tec.openplanner.team/stops/Brixbai2", "https://tec.openplanner.team/stops/Brixchw1"], ["https://tec.openplanner.team/stops/Ljekess2", "https://tec.openplanner.team/stops/Lsetroq1"], ["https://tec.openplanner.team/stops/N525aca", "https://tec.openplanner.team/stops/N525anb"], ["https://tec.openplanner.team/stops/Cgochfe1", "https://tec.openplanner.team/stops/Cgomoul1"], ["https://tec.openplanner.team/stops/H1tt104b", "https://tec.openplanner.team/stops/H1tt107a"], ["https://tec.openplanner.team/stops/LVEh16-1", "https://tec.openplanner.team/stops/LVErtt-1"], ["https://tec.openplanner.team/stops/H1mx122a", "https://tec.openplanner.team/stops/H1mx123b"], ["https://tec.openplanner.team/stops/N214aea", "https://tec.openplanner.team/stops/N214agb"], ["https://tec.openplanner.team/stops/H1em103a", "https://tec.openplanner.team/stops/H1em106a"], ["https://tec.openplanner.team/stops/N311aaa", "https://tec.openplanner.team/stops/N311abb"], ["https://tec.openplanner.team/stops/H1vb143a", "https://tec.openplanner.team/stops/H1wz171a"], ["https://tec.openplanner.team/stops/LhGbahn4", "https://tec.openplanner.team/stops/LhGknip2"], ["https://tec.openplanner.team/stops/Lverdep2", "https://tec.openplanner.team/stops/Lveyser2"], ["https://tec.openplanner.team/stops/Bborbif2", "https://tec.openplanner.team/stops/Bborppa2"], ["https://tec.openplanner.team/stops/N211ada", "https://tec.openplanner.team/stops/N211aeb"], ["https://tec.openplanner.team/stops/X802abb", "https://tec.openplanner.team/stops/X882ala"], ["https://tec.openplanner.team/stops/X652aca", "https://tec.openplanner.team/stops/X652acb"], ["https://tec.openplanner.team/stops/LScread2", "https://tec.openplanner.team/stops/LTNsarl1"], ["https://tec.openplanner.team/stops/N222ada", "https://tec.openplanner.team/stops/X222adc"], ["https://tec.openplanner.team/stops/Llgbron1", "https://tec.openplanner.team/stops/Llgbron2"], ["https://tec.openplanner.team/stops/N576aha", "https://tec.openplanner.team/stops/N576aja"], ["https://tec.openplanner.team/stops/LCPone92", "https://tec.openplanner.team/stops/LOnec--2"], ["https://tec.openplanner.team/stops/X746afa", "https://tec.openplanner.team/stops/X746afb"], ["https://tec.openplanner.team/stops/LmYkirc2", "https://tec.openplanner.team/stops/LvA30--2"], ["https://tec.openplanner.team/stops/H4bc101b", "https://tec.openplanner.team/stops/H4bc101d"], ["https://tec.openplanner.team/stops/LAWdefu4", "https://tec.openplanner.team/stops/LAWmc--4"], ["https://tec.openplanner.team/stops/Cfanoci2", "https://tec.openplanner.team/stops/Cfastan2"], ["https://tec.openplanner.team/stops/N215abb", "https://tec.openplanner.team/stops/N261ahb"], ["https://tec.openplanner.team/stops/N557aeb", "https://tec.openplanner.team/stops/N557aib"], ["https://tec.openplanner.team/stops/Lemeg--1", "https://tec.openplanner.team/stops/Lemhuet1"], ["https://tec.openplanner.team/stops/H2ma263a", "https://tec.openplanner.team/stops/H2ma264a"], ["https://tec.openplanner.team/stops/H4fa124b", "https://tec.openplanner.team/stops/H4fa126d"], ["https://tec.openplanner.team/stops/Bsaumlp2", "https://tec.openplanner.team/stops/Bsauvmo1"], ["https://tec.openplanner.team/stops/X758ada", "https://tec.openplanner.team/stops/X758aeb"], ["https://tec.openplanner.team/stops/Lancolr1", "https://tec.openplanner.team/stops/Lanothe1"], ["https://tec.openplanner.team/stops/Bnivgam2", "https://tec.openplanner.team/stops/Bnivh%C3%B4p2"], ["https://tec.openplanner.team/stops/LPLfp2-1", "https://tec.openplanner.team/stops/LPLheid1"], ["https://tec.openplanner.team/stops/Cwfnamu2", "https://tec.openplanner.team/stops/N543bna"], ["https://tec.openplanner.team/stops/N360aca", "https://tec.openplanner.team/stops/N360aeb"], ["https://tec.openplanner.team/stops/Crgegli2", "https://tec.openplanner.team/stops/Crgmgri2"], ["https://tec.openplanner.team/stops/X801abc", "https://tec.openplanner.team/stops/X801aeb"], ["https://tec.openplanner.team/stops/N244aib", "https://tec.openplanner.team/stops/N287ada"], ["https://tec.openplanner.team/stops/H1gh166b", "https://tec.openplanner.team/stops/H1gh365a"], ["https://tec.openplanner.team/stops/H4ru240b", "https://tec.openplanner.team/stops/H4ru244b"], ["https://tec.openplanner.team/stops/X764ada", "https://tec.openplanner.team/stops/X764aea"], ["https://tec.openplanner.team/stops/LFmgeno1", "https://tec.openplanner.team/stops/LFmroye1"], ["https://tec.openplanner.team/stops/X723anb", "https://tec.openplanner.team/stops/X724aga"], ["https://tec.openplanner.team/stops/N565aib", "https://tec.openplanner.team/stops/N565ala"], ["https://tec.openplanner.team/stops/X354aib", "https://tec.openplanner.team/stops/X858aha"], ["https://tec.openplanner.team/stops/H4ry130a", "https://tec.openplanner.team/stops/H4we134a"], ["https://tec.openplanner.team/stops/LLt43--2", "https://tec.openplanner.team/stops/LLtwanz2"], ["https://tec.openplanner.team/stops/X740aca", "https://tec.openplanner.team/stops/X740acb"], ["https://tec.openplanner.team/stops/H2sb231a", "https://tec.openplanner.team/stops/H2sb231b"], ["https://tec.openplanner.team/stops/H2fy123c", "https://tec.openplanner.team/stops/H2jo161c"], ["https://tec.openplanner.team/stops/LAYpl--2", "https://tec.openplanner.team/stops/LAYpl--3"], ["https://tec.openplanner.team/stops/X354afb", "https://tec.openplanner.team/stops/X359aea"], ["https://tec.openplanner.team/stops/Cmldupu1", "https://tec.openplanner.team/stops/Cmlvesp1"], ["https://tec.openplanner.team/stops/Lre3che2", "https://tec.openplanner.team/stops/Lrebriq2"], ["https://tec.openplanner.team/stops/LOnec--1", "https://tec.openplanner.team/stops/LXopier2"], ["https://tec.openplanner.team/stops/N501apa", "https://tec.openplanner.team/stops/N501bcb"], ["https://tec.openplanner.team/stops/LArmaro1", "https://tec.openplanner.team/stops/LBbhupp1"], ["https://tec.openplanner.team/stops/NL78adb", "https://tec.openplanner.team/stops/NL81adb"], ["https://tec.openplanner.team/stops/Becebju1", "https://tec.openplanner.team/stops/H2mi124a"], ["https://tec.openplanner.team/stops/X779adb", "https://tec.openplanner.team/stops/X779aia"], ["https://tec.openplanner.team/stops/H1hr118c", "https://tec.openplanner.team/stops/H3so156a"], ["https://tec.openplanner.team/stops/LrEgend2", "https://tec.openplanner.team/stops/LrEochs2"], ["https://tec.openplanner.team/stops/H1ch101b", "https://tec.openplanner.team/stops/H1ch103b"], ["https://tec.openplanner.team/stops/Btubmfa1", "https://tec.openplanner.team/stops/Btubnav1"], ["https://tec.openplanner.team/stops/H4lp121b", "https://tec.openplanner.team/stops/H4ma162a"], ["https://tec.openplanner.team/stops/X901anb", "https://tec.openplanner.team/stops/X901bqa"], ["https://tec.openplanner.team/stops/N351ajd", "https://tec.openplanner.team/stops/N351aua"], ["https://tec.openplanner.team/stops/Bgemga11", "https://tec.openplanner.team/stops/Bgemga12"], ["https://tec.openplanner.team/stops/N217aba", "https://tec.openplanner.team/stops/N217acd"], ["https://tec.openplanner.team/stops/N509aoa", "https://tec.openplanner.team/stops/N509aob"], ["https://tec.openplanner.team/stops/LaLkabi1", "https://tec.openplanner.team/stops/LaLkabi2"], ["https://tec.openplanner.team/stops/X725ada", "https://tec.openplanner.team/stops/X725afd"], ["https://tec.openplanner.team/stops/LsVmolk1", "https://tec.openplanner.team/stops/LsVprum2"], ["https://tec.openplanner.team/stops/Cgyhaie1", "https://tec.openplanner.team/stops/CMgazo2"], ["https://tec.openplanner.team/stops/LBdcime2", "https://tec.openplanner.team/stops/LBdmarr1"], ["https://tec.openplanner.team/stops/N508aob", "https://tec.openplanner.team/stops/N509aaa"], ["https://tec.openplanner.team/stops/N301ana", "https://tec.openplanner.team/stops/N301asb"], ["https://tec.openplanner.team/stops/Cgpcime1", "https://tec.openplanner.team/stops/Cgplhoi1"], ["https://tec.openplanner.team/stops/X764aba", "https://tec.openplanner.team/stops/X764ada"], ["https://tec.openplanner.team/stops/Bfelcsa2", "https://tec.openplanner.team/stops/Bfelfde2"], ["https://tec.openplanner.team/stops/H4ct111a", "https://tec.openplanner.team/stops/H5bs102a"], ["https://tec.openplanner.team/stops/Bnivfro1", "https://tec.openplanner.team/stops/Bnivsto1"], ["https://tec.openplanner.team/stops/Blemkap1", "https://tec.openplanner.team/stops/Blemwob4"], ["https://tec.openplanner.team/stops/N513ahb", "https://tec.openplanner.team/stops/N513bfa"], ["https://tec.openplanner.team/stops/LBahaut1", "https://tec.openplanner.team/stops/LTAbran1"], ["https://tec.openplanner.team/stops/Bkrabhu2", "https://tec.openplanner.team/stops/Bovevri1"], ["https://tec.openplanner.team/stops/LGEbern1", "https://tec.openplanner.team/stops/LGEcent2"], ["https://tec.openplanner.team/stops/X645aab", "https://tec.openplanner.team/stops/X645abb"], ["https://tec.openplanner.team/stops/LHHlomb1", "https://tec.openplanner.team/stops/LOmlime1"], ["https://tec.openplanner.team/stops/Cfcgar2", "https://tec.openplanner.team/stops/Cfcmass2"], ["https://tec.openplanner.team/stops/N501anz", "https://tec.openplanner.team/stops/N501nca"], ["https://tec.openplanner.team/stops/H4ar101a", "https://tec.openplanner.team/stops/H4lg106a"], ["https://tec.openplanner.team/stops/X602adb", "https://tec.openplanner.team/stops/X602afa"], ["https://tec.openplanner.team/stops/H4os217a", "https://tec.openplanner.team/stops/H5wo132a"], ["https://tec.openplanner.team/stops/H1ht131b", "https://tec.openplanner.team/stops/H1ht136b"], ["https://tec.openplanner.team/stops/LNEec--2", "https://tec.openplanner.team/stops/LVosoir2"], ["https://tec.openplanner.team/stops/Bgisber1", "https://tec.openplanner.team/stops/Bgisman2"], ["https://tec.openplanner.team/stops/X777aaa", "https://tec.openplanner.team/stops/X777aab"], ["https://tec.openplanner.team/stops/Bpiejus2", "https://tec.openplanner.team/stops/Bpielon2"], ["https://tec.openplanner.team/stops/X742aab", "https://tec.openplanner.team/stops/X752aba"], ["https://tec.openplanner.team/stops/Cthcrom1", "https://tec.openplanner.team/stops/Cthpibl2"], ["https://tec.openplanner.team/stops/N549ahb", "https://tec.openplanner.team/stops/N549aib"], ["https://tec.openplanner.team/stops/X636afb", "https://tec.openplanner.team/stops/X636aja"], ["https://tec.openplanner.team/stops/Cstmarz1", "https://tec.openplanner.team/stops/Cstvape2"], ["https://tec.openplanner.team/stops/Bnilcim2", "https://tec.openplanner.team/stops/Bnilpje1"], ["https://tec.openplanner.team/stops/X741ahb", "https://tec.openplanner.team/stops/X741apa"], ["https://tec.openplanner.team/stops/LAYlieg2", "https://tec.openplanner.team/stops/LAYthir2"], ["https://tec.openplanner.team/stops/X912aeb", "https://tec.openplanner.team/stops/X912afb"], ["https://tec.openplanner.team/stops/X261adb", "https://tec.openplanner.team/stops/X982aab"], ["https://tec.openplanner.team/stops/X940aab", "https://tec.openplanner.team/stops/X940abb"], ["https://tec.openplanner.team/stops/Cbfbies2", "https://tec.openplanner.team/stops/Cctsold2"], ["https://tec.openplanner.team/stops/X641akb", "https://tec.openplanner.team/stops/X641awb"], ["https://tec.openplanner.team/stops/Bbcopre2", "https://tec.openplanner.team/stops/Bbcoroy2"], ["https://tec.openplanner.team/stops/H4tf147a", "https://tec.openplanner.team/stops/H4wa156b"], ["https://tec.openplanner.team/stops/H1hr125b", "https://tec.openplanner.team/stops/H1hr129a"], ["https://tec.openplanner.team/stops/Cvsduve1", "https://tec.openplanner.team/stops/Cvssncv1"], ["https://tec.openplanner.team/stops/N547aha", "https://tec.openplanner.team/stops/N547ama"], ["https://tec.openplanner.team/stops/X991aab", "https://tec.openplanner.team/stops/X993aab"], ["https://tec.openplanner.team/stops/H1vh137b", "https://tec.openplanner.team/stops/H3bo101b"], ["https://tec.openplanner.team/stops/X612aeb", "https://tec.openplanner.team/stops/X612afa"], ["https://tec.openplanner.team/stops/Bpelegl1", "https://tec.openplanner.team/stops/Bpelegl2"], ["https://tec.openplanner.team/stops/X889aba", "https://tec.openplanner.team/stops/X889abb"], ["https://tec.openplanner.team/stops/Crchutt1", "https://tec.openplanner.team/stops/Crchutt2"], ["https://tec.openplanner.team/stops/Cgycvie1", "https://tec.openplanner.team/stops/Cgymast1"], ["https://tec.openplanner.team/stops/Cgofbru1", "https://tec.openplanner.team/stops/Cgopier3"], ["https://tec.openplanner.team/stops/LLUmc--1", "https://tec.openplanner.team/stops/LLUmont2"], ["https://tec.openplanner.team/stops/X687aca", "https://tec.openplanner.team/stops/X687aea"], ["https://tec.openplanner.team/stops/Ccabois1", "https://tec.openplanner.team/stops/N162aab"], ["https://tec.openplanner.team/stops/LHEvign2", "https://tec.openplanner.team/stops/LXHbois1"], ["https://tec.openplanner.team/stops/Bgnvcom2", "https://tec.openplanner.team/stops/Bgnvval1"], ["https://tec.openplanner.team/stops/H4pe124a", "https://tec.openplanner.team/stops/H4pe128a"], ["https://tec.openplanner.team/stops/H1gi120d", "https://tec.openplanner.team/stops/H1hm176b"], ["https://tec.openplanner.team/stops/Cmastma1", "https://tec.openplanner.team/stops/Cmastma4"], ["https://tec.openplanner.team/stops/LHMbami1", "https://tec.openplanner.team/stops/LHMchbl1"], ["https://tec.openplanner.team/stops/Lccaigr2", "https://tec.openplanner.team/stops/LRAgrot2"], ["https://tec.openplanner.team/stops/X688aab", "https://tec.openplanner.team/stops/X688abb"], ["https://tec.openplanner.team/stops/NL76aia", "https://tec.openplanner.team/stops/NL76amb"], ["https://tec.openplanner.team/stops/Bcseaba1", "https://tec.openplanner.team/stops/Bottcba1"], ["https://tec.openplanner.team/stops/Laghetr2", "https://tec.openplanner.team/stops/Lagtenn2"], ["https://tec.openplanner.team/stops/Bpthcgo1", "https://tec.openplanner.team/stops/Bwanthi2"], ["https://tec.openplanner.team/stops/X610adb", "https://tec.openplanner.team/stops/X610afa"], ["https://tec.openplanner.team/stops/LBPmais1", "https://tec.openplanner.team/stops/LBPmili1"], ["https://tec.openplanner.team/stops/Bnivpba2", "https://tec.openplanner.team/stops/Bnivphs2"], ["https://tec.openplanner.team/stops/LsVbell2", "https://tec.openplanner.team/stops/LsVhunn1"], ["https://tec.openplanner.team/stops/LThpoli1", "https://tec.openplanner.team/stops/LThsere2"], ["https://tec.openplanner.team/stops/H4eg101a", "https://tec.openplanner.team/stops/H4eg101b"], ["https://tec.openplanner.team/stops/NL78afa", "https://tec.openplanner.team/stops/NL78afb"], ["https://tec.openplanner.team/stops/H2ma209b", "https://tec.openplanner.team/stops/H3th130a"], ["https://tec.openplanner.team/stops/X639aqb", "https://tec.openplanner.team/stops/X639ata"], ["https://tec.openplanner.team/stops/Ljeespe1", "https://tec.openplanner.team/stops/Ljeespe2"], ["https://tec.openplanner.team/stops/X870aaa", "https://tec.openplanner.team/stops/X880age"], ["https://tec.openplanner.team/stops/Ccosart2", "https://tec.openplanner.team/stops/Ccosart4"], ["https://tec.openplanner.team/stops/X725aqa", "https://tec.openplanner.team/stops/X725aqb"], ["https://tec.openplanner.team/stops/H1gh153b", "https://tec.openplanner.team/stops/H1gh167a"], ["https://tec.openplanner.team/stops/Btubga01", "https://tec.openplanner.team/stops/Btubnav1"], ["https://tec.openplanner.team/stops/H2hp119d", "https://tec.openplanner.team/stops/H2hp261a"], ["https://tec.openplanner.team/stops/Bgntcoo2", "https://tec.openplanner.team/stops/Bgntpla2"], ["https://tec.openplanner.team/stops/N235aeb", "https://tec.openplanner.team/stops/N241adb"], ["https://tec.openplanner.team/stops/N509axb", "https://tec.openplanner.team/stops/N509bgb"], ["https://tec.openplanner.team/stops/LTreg--1", "https://tec.openplanner.team/stops/LTrrich1"], ["https://tec.openplanner.team/stops/H4bn173a", "https://tec.openplanner.team/stops/H4pi136b"], ["https://tec.openplanner.team/stops/H1ho132b", "https://tec.openplanner.team/stops/H1ho135b"], ["https://tec.openplanner.team/stops/LBrbern1", "https://tec.openplanner.team/stops/LBrec--1"], ["https://tec.openplanner.team/stops/N120aga", "https://tec.openplanner.team/stops/N120agb"], ["https://tec.openplanner.team/stops/X801aab", "https://tec.openplanner.team/stops/X801aca"], ["https://tec.openplanner.team/stops/Bjodfco1", "https://tec.openplanner.team/stops/Bpiejus1"], ["https://tec.openplanner.team/stops/LkEhatt2", "https://tec.openplanner.team/stops/LkEheyg1"], ["https://tec.openplanner.team/stops/X773aia", "https://tec.openplanner.team/stops/X773aja"], ["https://tec.openplanner.team/stops/Ccifies1", "https://tec.openplanner.team/stops/Clvimtr1"], ["https://tec.openplanner.team/stops/H4oq223a", "https://tec.openplanner.team/stops/H4ty331a"], ["https://tec.openplanner.team/stops/X993aeb", "https://tec.openplanner.team/stops/X993aia"], ["https://tec.openplanner.team/stops/LFIcabi1", "https://tec.openplanner.team/stops/LFIeg--1"], ["https://tec.openplanner.team/stops/X615bea", "https://tec.openplanner.team/stops/X695aab"], ["https://tec.openplanner.team/stops/Cflecep1", "https://tec.openplanner.team/stops/NC12adb"], ["https://tec.openplanner.team/stops/X757aeb", "https://tec.openplanner.team/stops/X757aia"], ["https://tec.openplanner.team/stops/N551aib", "https://tec.openplanner.team/stops/N551aiz"], ["https://tec.openplanner.team/stops/N113adb", "https://tec.openplanner.team/stops/N113aeb"], ["https://tec.openplanner.team/stops/Livfays2", "https://tec.openplanner.team/stops/LRagrch2"], ["https://tec.openplanner.team/stops/NC24aea", "https://tec.openplanner.team/stops/NC24afa"], ["https://tec.openplanner.team/stops/LOL6che2", "https://tec.openplanner.team/stops/LSHfief1"], ["https://tec.openplanner.team/stops/H4ty283b", "https://tec.openplanner.team/stops/H4ty332c"], ["https://tec.openplanner.team/stops/X636bha", "https://tec.openplanner.team/stops/X636bhb"], ["https://tec.openplanner.team/stops/H4be101a", "https://tec.openplanner.team/stops/H5pe144a"], ["https://tec.openplanner.team/stops/Brebras1", "https://tec.openplanner.team/stops/Bsteegl1"], ["https://tec.openplanner.team/stops/N562aob", "https://tec.openplanner.team/stops/N570aaa"], ["https://tec.openplanner.team/stops/N501gzy", "https://tec.openplanner.team/stops/N501mqa"], ["https://tec.openplanner.team/stops/Cbflong2", "https://tec.openplanner.team/stops/Clvimtr2"], ["https://tec.openplanner.team/stops/LNCchau2", "https://tec.openplanner.team/stops/LNChock1"], ["https://tec.openplanner.team/stops/H1el132b", "https://tec.openplanner.team/stops/H1tl121a"], ["https://tec.openplanner.team/stops/N501hwb", "https://tec.openplanner.team/stops/N501ida"], ["https://tec.openplanner.team/stops/X601cua", "https://tec.openplanner.team/stops/X601cwa"], ["https://tec.openplanner.team/stops/Cmgarsi1", "https://tec.openplanner.team/stops/Cmgpn1"], ["https://tec.openplanner.team/stops/LJAboli2", "https://tec.openplanner.team/stops/LJAwerf1"], ["https://tec.openplanner.team/stops/N501aua", "https://tec.openplanner.team/stops/N501gqb"], ["https://tec.openplanner.team/stops/LMYmont2", "https://tec.openplanner.team/stops/LVvbouv1"], ["https://tec.openplanner.team/stops/X610aab", "https://tec.openplanner.team/stops/X610ada"], ["https://tec.openplanner.team/stops/LTNcarr2", "https://tec.openplanner.team/stops/LTNmont1"], ["https://tec.openplanner.team/stops/LHhelia2", "https://tec.openplanner.team/stops/LHhvivi2"], ["https://tec.openplanner.team/stops/Lagarde1", "https://tec.openplanner.team/stops/Lcejobe1"], ["https://tec.openplanner.team/stops/Cthnsnc", "https://tec.openplanner.team/stops/Cthpibl2"], ["https://tec.openplanner.team/stops/Bwatali1", "https://tec.openplanner.team/stops/Bwatcpl2"], ["https://tec.openplanner.team/stops/H2fa106a", "https://tec.openplanner.team/stops/H2me113b"], ["https://tec.openplanner.team/stops/X904afb", "https://tec.openplanner.team/stops/X907aba"], ["https://tec.openplanner.team/stops/Canchbr2", "https://tec.openplanner.team/stops/Canstat2"], ["https://tec.openplanner.team/stops/Cchparc5", "https://tec.openplanner.team/stops/NC01aha"], ["https://tec.openplanner.team/stops/X774afa", "https://tec.openplanner.team/stops/X774aga"], ["https://tec.openplanner.team/stops/LMAcite1", "https://tec.openplanner.team/stops/LMAcomm1"], ["https://tec.openplanner.team/stops/N134aeb", "https://tec.openplanner.team/stops/N134ala"], ["https://tec.openplanner.team/stops/LLSba6-1", "https://tec.openplanner.team/stops/LLSba9-1"], ["https://tec.openplanner.team/stops/H1ju119a", "https://tec.openplanner.team/stops/H1ju119b"], ["https://tec.openplanner.team/stops/Lhutann1", "https://tec.openplanner.team/stops/Lmneg--2"], ["https://tec.openplanner.team/stops/H4co109b", "https://tec.openplanner.team/stops/H4co144b"], ["https://tec.openplanner.team/stops/LVu03--2", "https://tec.openplanner.team/stops/LVukabi1"], ["https://tec.openplanner.team/stops/LhGgeme1", "https://tec.openplanner.team/stops/LhGkirc3"], ["https://tec.openplanner.team/stops/X608agb", "https://tec.openplanner.team/stops/X608aua"], ["https://tec.openplanner.team/stops/LWRpl--1", "https://tec.openplanner.team/stops/LWRpl--2"], ["https://tec.openplanner.team/stops/X991ajb", "https://tec.openplanner.team/stops/X991akb"], ["https://tec.openplanner.team/stops/Bjdsbro2", "https://tec.openplanner.team/stops/Blthvil1"], ["https://tec.openplanner.team/stops/Llgnaim2", "https://tec.openplanner.team/stops/Llgnani2"], ["https://tec.openplanner.team/stops/N501ira", "https://tec.openplanner.team/stops/N501jbb"], ["https://tec.openplanner.team/stops/N104aea", "https://tec.openplanner.team/stops/N104afa"], ["https://tec.openplanner.team/stops/LeLgrie2", "https://tec.openplanner.team/stops/LeLzost2"], ["https://tec.openplanner.team/stops/Bbch4br6", "https://tec.openplanner.team/stops/Bbchrra3"], ["https://tec.openplanner.team/stops/X601asa", "https://tec.openplanner.team/stops/X601cra"], ["https://tec.openplanner.team/stops/X940aab", "https://tec.openplanner.team/stops/X948ata"], ["https://tec.openplanner.team/stops/H1ml109b", "https://tec.openplanner.team/stops/H1ml111b"], ["https://tec.openplanner.team/stops/LHmcite1", "https://tec.openplanner.team/stops/LMArave1"], ["https://tec.openplanner.team/stops/X615bra", "https://tec.openplanner.team/stops/X615brb"], ["https://tec.openplanner.team/stops/N551ala", "https://tec.openplanner.team/stops/N577aca"], ["https://tec.openplanner.team/stops/Bcsecar1", "https://tec.openplanner.team/stops/Bcseeco3"], ["https://tec.openplanner.team/stops/Lrclant2", "https://tec.openplanner.team/stops/Lrclant4"], ["https://tec.openplanner.team/stops/X941acc", "https://tec.openplanner.team/stops/X941ada"], ["https://tec.openplanner.team/stops/Bnivjli1", "https://tec.openplanner.team/stops/Bnivlpa2"], ["https://tec.openplanner.team/stops/LJesole2", "https://tec.openplanner.team/stops/LJetrih2"], ["https://tec.openplanner.team/stops/H4hu120a", "https://tec.openplanner.team/stops/H4og210b"], ["https://tec.openplanner.team/stops/LSOvoie1", "https://tec.openplanner.team/stops/LXHadam2"], ["https://tec.openplanner.team/stops/Lvefran1", "https://tec.openplanner.team/stops/Lvevieu1"], ["https://tec.openplanner.team/stops/Lbrchur1", "https://tec.openplanner.team/stops/Lbrlama2"], ["https://tec.openplanner.team/stops/N508apb", "https://tec.openplanner.team/stops/N516aaa"], ["https://tec.openplanner.team/stops/X897ada", "https://tec.openplanner.team/stops/X897adb"], ["https://tec.openplanner.team/stops/X210azb", "https://tec.openplanner.team/stops/X221aac"], ["https://tec.openplanner.team/stops/Crsstem1", "https://tec.openplanner.team/stops/Crsstem2"], ["https://tec.openplanner.team/stops/LDmdegi2", "https://tec.openplanner.team/stops/LDmeg--1"], ["https://tec.openplanner.team/stops/Lgrchar1", "https://tec.openplanner.team/stops/Lgrchar2"], ["https://tec.openplanner.team/stops/N153ada", "https://tec.openplanner.team/stops/N153adb"], ["https://tec.openplanner.team/stops/X650aha", "https://tec.openplanner.team/stops/X650ahb"], ["https://tec.openplanner.team/stops/N501gzz", "https://tec.openplanner.team/stops/N501zca"], ["https://tec.openplanner.team/stops/N160aaa", "https://tec.openplanner.team/stops/N160aab"], ["https://tec.openplanner.team/stops/Bvilpar1", "https://tec.openplanner.team/stops/Bvilpar2"], ["https://tec.openplanner.team/stops/LChvill*", "https://tec.openplanner.team/stops/LSU50--2"], ["https://tec.openplanner.team/stops/X950adb", "https://tec.openplanner.team/stops/X955aab"], ["https://tec.openplanner.team/stops/N501hoa", "https://tec.openplanner.team/stops/N501htb"], ["https://tec.openplanner.team/stops/LkEkric2", "https://tec.openplanner.team/stops/LkEneus2"], ["https://tec.openplanner.team/stops/X601cia", "https://tec.openplanner.team/stops/X662anb"], ["https://tec.openplanner.team/stops/Bhalark2", "https://tec.openplanner.team/stops/Bhalpar2"], ["https://tec.openplanner.team/stops/X601aab", "https://tec.openplanner.team/stops/X601ala"], ["https://tec.openplanner.team/stops/Cfrcham1", "https://tec.openplanner.team/stops/Cliburl2"], ["https://tec.openplanner.team/stops/X818aca", "https://tec.openplanner.team/stops/X818adb"], ["https://tec.openplanner.team/stops/Bdlmegl1", "https://tec.openplanner.team/stops/Bdlmegl2"], ["https://tec.openplanner.team/stops/LaMadam2", "https://tec.openplanner.team/stops/LaMjous1"], ["https://tec.openplanner.team/stops/X638aga", "https://tec.openplanner.team/stops/X638apb"], ["https://tec.openplanner.team/stops/LOehart2", "https://tec.openplanner.team/stops/LOesour1"], ["https://tec.openplanner.team/stops/N132aba", "https://tec.openplanner.team/stops/N132abb"], ["https://tec.openplanner.team/stops/X986aeb", "https://tec.openplanner.team/stops/X986ata"], ["https://tec.openplanner.team/stops/X681afb", "https://tec.openplanner.team/stops/X681aga"], ["https://tec.openplanner.team/stops/Cbicamp1", "https://tec.openplanner.team/stops/Cbicamp2"], ["https://tec.openplanner.team/stops/LBjflor2", "https://tec.openplanner.team/stops/LBjvill1"], ["https://tec.openplanner.team/stops/LLelans1", "https://tec.openplanner.team/stops/X547aka"], ["https://tec.openplanner.team/stops/H3lr120b", "https://tec.openplanner.team/stops/H3lr132b"], ["https://tec.openplanner.team/stops/X659aab", "https://tec.openplanner.team/stops/X672aja"], ["https://tec.openplanner.team/stops/N212ada", "https://tec.openplanner.team/stops/N348acb"], ["https://tec.openplanner.team/stops/X870aaa", "https://tec.openplanner.team/stops/X870aab"], ["https://tec.openplanner.team/stops/LHEchex1", "https://tec.openplanner.team/stops/LHEchex2"], ["https://tec.openplanner.team/stops/Brsrmon1", "https://tec.openplanner.team/stops/Brsrmon3"], ["https://tec.openplanner.team/stops/Bbchume2", "https://tec.openplanner.team/stops/Bitrsar1"], ["https://tec.openplanner.team/stops/Lpeatel2", "https://tec.openplanner.team/stops/Lpesart1"], ["https://tec.openplanner.team/stops/Lstamph1", "https://tec.openplanner.team/stops/Lstauna1"], ["https://tec.openplanner.team/stops/X224aga", "https://tec.openplanner.team/stops/X224agb"], ["https://tec.openplanner.team/stops/Lgrmagd2", "https://tec.openplanner.team/stops/Lgrrein1"], ["https://tec.openplanner.team/stops/LaHzoll*", "https://tec.openplanner.team/stops/X685apa"], ["https://tec.openplanner.team/stops/N511aia", "https://tec.openplanner.team/stops/N512ala"], ["https://tec.openplanner.team/stops/H3br103b", "https://tec.openplanner.team/stops/H3br107a"], ["https://tec.openplanner.team/stops/N206ada", "https://tec.openplanner.team/stops/N209alb"], ["https://tec.openplanner.team/stops/LMsgara2", "https://tec.openplanner.team/stops/LMspont1"], ["https://tec.openplanner.team/stops/LSdbvue1", "https://tec.openplanner.team/stops/LSdcarr1"], ["https://tec.openplanner.team/stops/NL77acb", "https://tec.openplanner.team/stops/NL77adb"], ["https://tec.openplanner.team/stops/H1ba114a", "https://tec.openplanner.team/stops/H1ba118b"], ["https://tec.openplanner.team/stops/N352aba", "https://tec.openplanner.team/stops/N352abb"], ["https://tec.openplanner.team/stops/Lemhenn2", "https://tec.openplanner.team/stops/Lvchaus1"], ["https://tec.openplanner.team/stops/LSemc--1", "https://tec.openplanner.team/stops/LSemc--3"], ["https://tec.openplanner.team/stops/H4ne141a", "https://tec.openplanner.team/stops/H4ne144b"], ["https://tec.openplanner.team/stops/Lmopave2", "https://tec.openplanner.team/stops/Lsnlhon2"], ["https://tec.openplanner.team/stops/H4og207a", "https://tec.openplanner.team/stops/H4og207b"], ["https://tec.openplanner.team/stops/N222ada", "https://tec.openplanner.team/stops/N222adb"], ["https://tec.openplanner.team/stops/H2fa107a", "https://tec.openplanner.team/stops/H2fa109b"], ["https://tec.openplanner.team/stops/N538aab", "https://tec.openplanner.team/stops/N538adb"], ["https://tec.openplanner.team/stops/LESamos2", "https://tec.openplanner.team/stops/LESfoot1"], ["https://tec.openplanner.team/stops/LXofont2", "https://tec.openplanner.team/stops/LXopeti2"], ["https://tec.openplanner.team/stops/X801bxa", "https://tec.openplanner.team/stops/X801bxb"], ["https://tec.openplanner.team/stops/H4lz127b", "https://tec.openplanner.team/stops/H4tp146a"], ["https://tec.openplanner.team/stops/N118aea", "https://tec.openplanner.team/stops/N118aeb"], ["https://tec.openplanner.team/stops/LTResse1", "https://tec.openplanner.team/stops/LTResse2"], ["https://tec.openplanner.team/stops/LDOordi2", "https://tec.openplanner.team/stops/LGOcana2"], ["https://tec.openplanner.team/stops/Buccvch1", "https://tec.openplanner.team/stops/Buccvoi3"], ["https://tec.openplanner.team/stops/Bboseco1", "https://tec.openplanner.team/stops/Bgoekaz1"], ["https://tec.openplanner.team/stops/LWEbr511", "https://tec.openplanner.team/stops/LWEpaul2"], ["https://tec.openplanner.team/stops/N507aob", "https://tec.openplanner.team/stops/N507aqb"], ["https://tec.openplanner.team/stops/X880afa", "https://tec.openplanner.team/stops/X880afb"], ["https://tec.openplanner.team/stops/H1fv102a", "https://tec.openplanner.team/stops/H1fv103b"], ["https://tec.openplanner.team/stops/LRR2egl1", "https://tec.openplanner.team/stops/LRRpost1"], ["https://tec.openplanner.team/stops/LiVdorf1", "https://tec.openplanner.team/stops/LmOkape2"], ["https://tec.openplanner.team/stops/LSPsorb1", "https://tec.openplanner.team/stops/LSPther1"], ["https://tec.openplanner.team/stops/H5st161b", "https://tec.openplanner.team/stops/H5st169b"], ["https://tec.openplanner.team/stops/H1ms270b", "https://tec.openplanner.team/stops/H1ms362a"], ["https://tec.openplanner.team/stops/Cpccpas1", "https://tec.openplanner.team/stops/Cpccpas2"], ["https://tec.openplanner.team/stops/H4oe150a", "https://tec.openplanner.team/stops/H4oe150b"], ["https://tec.openplanner.team/stops/Blmlbou2", "https://tec.openplanner.team/stops/Blmlcar2"], ["https://tec.openplanner.team/stops/LdUespe2", "https://tec.openplanner.team/stops/LoDmuhl1"], ["https://tec.openplanner.team/stops/X601bbf", "https://tec.openplanner.team/stops/X601bqa"], ["https://tec.openplanner.team/stops/X769abb", "https://tec.openplanner.team/stops/X769acb"], ["https://tec.openplanner.team/stops/LeUmeye2", "https://tec.openplanner.team/stops/LrAneud1"], ["https://tec.openplanner.team/stops/X994adb", "https://tec.openplanner.team/stops/X994aga"], ["https://tec.openplanner.team/stops/H4hg154b", "https://tec.openplanner.team/stops/H4hg160b"], ["https://tec.openplanner.team/stops/X342ahb", "https://tec.openplanner.team/stops/X346aba"], ["https://tec.openplanner.team/stops/X749ada", "https://tec.openplanner.team/stops/X756agb"], ["https://tec.openplanner.team/stops/H4bl104a", "https://tec.openplanner.team/stops/H4bl104b"], ["https://tec.openplanner.team/stops/H1gr119a", "https://tec.openplanner.team/stops/H1gr122b"], ["https://tec.openplanner.team/stops/X354agb", "https://tec.openplanner.team/stops/X354ahb"], ["https://tec.openplanner.team/stops/Llglill1", "https://tec.openplanner.team/stops/Llgrull2"], ["https://tec.openplanner.team/stops/LCUmars2", "https://tec.openplanner.team/stops/LCUthie2"], ["https://tec.openplanner.team/stops/LVMcent2", "https://tec.openplanner.team/stops/LVMrout1"], ["https://tec.openplanner.team/stops/Lfhdone2", "https://tec.openplanner.team/stops/Livjeu-1"], ["https://tec.openplanner.team/stops/NC14ama", "https://tec.openplanner.team/stops/NC14apb"], ["https://tec.openplanner.team/stops/LvA30--2", "https://tec.openplanner.team/stops/LvAkirc1"], ["https://tec.openplanner.team/stops/X638apa", "https://tec.openplanner.team/stops/X638apb"], ["https://tec.openplanner.team/stops/Bwaunou1", "https://tec.openplanner.team/stops/Bwaunou2"], ["https://tec.openplanner.team/stops/Cgycime2", "https://tec.openplanner.team/stops/Cgycime4"], ["https://tec.openplanner.team/stops/LHUpost1", "https://tec.openplanner.team/stops/LHUpost2"], ["https://tec.openplanner.team/stops/H1hy126b", "https://tec.openplanner.team/stops/H1hy129a"], ["https://tec.openplanner.team/stops/Clvlove1", "https://tec.openplanner.team/stops/Clvmesa2"], ["https://tec.openplanner.team/stops/X609aqb", "https://tec.openplanner.team/stops/X631aca"], ["https://tec.openplanner.team/stops/Cpcha431", "https://tec.openplanner.team/stops/Cpcplac4"], ["https://tec.openplanner.team/stops/H4mv191a", "https://tec.openplanner.team/stops/H4mv193a"], ["https://tec.openplanner.team/stops/Ladneuv1", "https://tec.openplanner.team/stops/Lvecrot1"], ["https://tec.openplanner.team/stops/Bbgelre1", "https://tec.openplanner.team/stops/Bwavlca1"], ["https://tec.openplanner.team/stops/LeUvoss1", "https://tec.openplanner.team/stops/LeUvoul1"], ["https://tec.openplanner.team/stops/Lgdhura1", "https://tec.openplanner.team/stops/Lgdhura2"], ["https://tec.openplanner.team/stops/LmEdorf2", "https://tec.openplanner.team/stops/LmNmerl2"], ["https://tec.openplanner.team/stops/Lhrlalo1", "https://tec.openplanner.team/stops/Lhrlalo4"], ["https://tec.openplanner.team/stops/X601aya", "https://tec.openplanner.team/stops/X601azb"], ["https://tec.openplanner.team/stops/Brsggea1", "https://tec.openplanner.team/stops/Brsgsan2"], ["https://tec.openplanner.team/stops/Lmlcrot1", "https://tec.openplanner.team/stops/Lmlpata*"], ["https://tec.openplanner.team/stops/N516abb", "https://tec.openplanner.team/stops/N516amb"], ["https://tec.openplanner.team/stops/H4mb203a", "https://tec.openplanner.team/stops/H4mb204a"], ["https://tec.openplanner.team/stops/N103adb", "https://tec.openplanner.team/stops/N103ahb"], ["https://tec.openplanner.team/stops/X888abb", "https://tec.openplanner.team/stops/X899aab"], ["https://tec.openplanner.team/stops/H1hn209a", "https://tec.openplanner.team/stops/H1ms924a"], ["https://tec.openplanner.team/stops/X717acb", "https://tec.openplanner.team/stops/X782ada"], ["https://tec.openplanner.team/stops/LBCtros1", "https://tec.openplanner.team/stops/LCdchod2"], ["https://tec.openplanner.team/stops/H1hl124a", "https://tec.openplanner.team/stops/H1vs146b"], ["https://tec.openplanner.team/stops/LESchac1", "https://tec.openplanner.team/stops/LPOecol2"], ["https://tec.openplanner.team/stops/Cdostco2", "https://tec.openplanner.team/stops/Ctucour1"], ["https://tec.openplanner.team/stops/LLSba4-1", "https://tec.openplanner.team/stops/LLStour2"], ["https://tec.openplanner.team/stops/H4by115d", "https://tec.openplanner.team/stops/H4tu172b"], ["https://tec.openplanner.team/stops/LMgberw1", "https://tec.openplanner.team/stops/LMgwith2"], ["https://tec.openplanner.team/stops/H4he105b", "https://tec.openplanner.team/stops/H4pq118a"], ["https://tec.openplanner.team/stops/LNIbas-2", "https://tec.openplanner.team/stops/LTgwarf2"], ["https://tec.openplanner.team/stops/Bsompri2", "https://tec.openplanner.team/stops/N584avb"], ["https://tec.openplanner.team/stops/H4av100b", "https://tec.openplanner.team/stops/H4av103c"], ["https://tec.openplanner.team/stops/Bjodfco2", "https://tec.openplanner.team/stops/NR21ahb"], ["https://tec.openplanner.team/stops/Bobacou1", "https://tec.openplanner.team/stops/Cobmara1"], ["https://tec.openplanner.team/stops/Ccypn1", "https://tec.openplanner.team/stops/NH01ala"], ["https://tec.openplanner.team/stops/X663apa", "https://tec.openplanner.team/stops/X663aqc"], ["https://tec.openplanner.team/stops/X657afa", "https://tec.openplanner.team/stops/X670agb"], ["https://tec.openplanner.team/stops/Bgoewat1", "https://tec.openplanner.team/stops/Bgoewat2"], ["https://tec.openplanner.team/stops/H1je216a", "https://tec.openplanner.team/stops/H1qu111a"], ["https://tec.openplanner.team/stops/X731acb", "https://tec.openplanner.team/stops/X731acc"], ["https://tec.openplanner.team/stops/N501dha", "https://tec.openplanner.team/stops/N501lgb"], ["https://tec.openplanner.team/stops/N228aaa", "https://tec.openplanner.team/stops/N228aba"], ["https://tec.openplanner.team/stops/H4ty295b", "https://tec.openplanner.team/stops/H4ty298b"], ["https://tec.openplanner.team/stops/Cchpala2", "https://tec.openplanner.team/stops/Cchrmon1"], ["https://tec.openplanner.team/stops/H1bu141a", "https://tec.openplanner.team/stops/H1bu142a"], ["https://tec.openplanner.team/stops/N104ada", "https://tec.openplanner.team/stops/N106agb"], ["https://tec.openplanner.team/stops/LBPboir1", "https://tec.openplanner.team/stops/LRGchap2"], ["https://tec.openplanner.team/stops/N110afb", "https://tec.openplanner.team/stops/N113aga"], ["https://tec.openplanner.team/stops/N509adb", "https://tec.openplanner.team/stops/N509agb"], ["https://tec.openplanner.team/stops/LBahaut1", "https://tec.openplanner.team/stops/LBahaut2"], ["https://tec.openplanner.team/stops/H4lp124b", "https://tec.openplanner.team/stops/H4pe125b"], ["https://tec.openplanner.team/stops/Cmybefe2", "https://tec.openplanner.team/stops/Cmysncb1"], ["https://tec.openplanner.team/stops/N244aka", "https://tec.openplanner.team/stops/N244apa"], ["https://tec.openplanner.team/stops/N137adb", "https://tec.openplanner.team/stops/N155agb"], ["https://tec.openplanner.team/stops/H4ce100a", "https://tec.openplanner.team/stops/H4mx119c"], ["https://tec.openplanner.team/stops/Cnagrro1", "https://tec.openplanner.team/stops/Cnathib2"], ["https://tec.openplanner.team/stops/Causart1", "https://tec.openplanner.team/stops/N543cqa"], ["https://tec.openplanner.team/stops/H4ty281a", "https://tec.openplanner.team/stops/H4ty339b"], ["https://tec.openplanner.team/stops/LkTlibe1", "https://tec.openplanner.team/stops/LkTlibe2"], ["https://tec.openplanner.team/stops/X941aab", "https://tec.openplanner.team/stops/X941aba"], ["https://tec.openplanner.team/stops/H3bi102b", "https://tec.openplanner.team/stops/H3bi113a"], ["https://tec.openplanner.team/stops/H2ll191b", "https://tec.openplanner.team/stops/H2ll193a"], ["https://tec.openplanner.team/stops/N501dga", "https://tec.openplanner.team/stops/N501dia"], ["https://tec.openplanner.team/stops/H4vz368b", "https://tec.openplanner.team/stops/H4vz371a"], ["https://tec.openplanner.team/stops/X548abb", "https://tec.openplanner.team/stops/X784aeb"], ["https://tec.openplanner.team/stops/X750aha", "https://tec.openplanner.team/stops/X750aja"], ["https://tec.openplanner.team/stops/Lenhouc2", "https://tec.openplanner.team/stops/Lvedepo*"], ["https://tec.openplanner.team/stops/X923aha", "https://tec.openplanner.team/stops/X923ana"], ["https://tec.openplanner.team/stops/H4ef163a", "https://tec.openplanner.team/stops/H4ef165c"], ["https://tec.openplanner.team/stops/LAYecol2", "https://tec.openplanner.team/stops/LFLcher2"], ["https://tec.openplanner.team/stops/X636aka", "https://tec.openplanner.team/stops/X636bfb"], ["https://tec.openplanner.team/stops/X948aca", "https://tec.openplanner.team/stops/X948agb"], ["https://tec.openplanner.team/stops/X615aca", "https://tec.openplanner.team/stops/X615ana"], ["https://tec.openplanner.team/stops/LHAarge1", "https://tec.openplanner.team/stops/LHAleru2"], ["https://tec.openplanner.team/stops/Cbuplac3", "https://tec.openplanner.team/stops/Cfnegli1"], ["https://tec.openplanner.team/stops/LhSkirc1", "https://tec.openplanner.team/stops/LhSkirc2"], ["https://tec.openplanner.team/stops/N170aca", "https://tec.openplanner.team/stops/N170adb"], ["https://tec.openplanner.team/stops/H4wi161a", "https://tec.openplanner.team/stops/H4wi169a"], ["https://tec.openplanner.team/stops/LMNeg--2", "https://tec.openplanner.team/stops/LMNpt--2"], ["https://tec.openplanner.team/stops/X361aaa", "https://tec.openplanner.team/stops/X361aab"], ["https://tec.openplanner.team/stops/LAYcher2", "https://tec.openplanner.team/stops/LFLcent2"], ["https://tec.openplanner.team/stops/Cvrchap1", "https://tec.openplanner.team/stops/Cvrhaie1"], ["https://tec.openplanner.team/stops/LHHcite2", "https://tec.openplanner.team/stops/LHHroua2"], ["https://tec.openplanner.team/stops/H2ma209a", "https://tec.openplanner.team/stops/H2ma210b"], ["https://tec.openplanner.team/stops/LClbloc1", "https://tec.openplanner.team/stops/LFdbagu1"], ["https://tec.openplanner.team/stops/LFTcroi2", "https://tec.openplanner.team/stops/LFTcroi4"], ["https://tec.openplanner.team/stops/H1mr126b", "https://tec.openplanner.team/stops/H1on129a"], ["https://tec.openplanner.team/stops/LHtdros1", "https://tec.openplanner.team/stops/LJAbell4"], ["https://tec.openplanner.team/stops/N155aib", "https://tec.openplanner.team/stops/N170abb"], ["https://tec.openplanner.team/stops/N138aha", "https://tec.openplanner.team/stops/N426acb"], ["https://tec.openplanner.team/stops/Ccyga05", "https://tec.openplanner.team/stops/Ccyga4"], ["https://tec.openplanner.team/stops/Cchtour1", "https://tec.openplanner.team/stops/Cchtour2"], ["https://tec.openplanner.team/stops/X775akb", "https://tec.openplanner.team/stops/X775alb"], ["https://tec.openplanner.team/stops/Bnivfch2", "https://tec.openplanner.team/stops/Bnivgen2"], ["https://tec.openplanner.team/stops/N501drb", "https://tec.openplanner.team/stops/N501kha"], ["https://tec.openplanner.team/stops/Berneco2", "https://tec.openplanner.team/stops/Bgemkal1"], ["https://tec.openplanner.team/stops/Blimrof1", "https://tec.openplanner.team/stops/Bottpry1"], ["https://tec.openplanner.team/stops/H4gr109a", "https://tec.openplanner.team/stops/H4hu117b"], ["https://tec.openplanner.team/stops/LVlledo1", "https://tec.openplanner.team/stops/LVlleno2"], ["https://tec.openplanner.team/stops/N541adb", "https://tec.openplanner.team/stops/N541aea"], ["https://tec.openplanner.team/stops/H4bf107a", "https://tec.openplanner.team/stops/H4bf108a"], ["https://tec.openplanner.team/stops/X614adb", "https://tec.openplanner.team/stops/X614agb"], ["https://tec.openplanner.team/stops/LVLeg--1", "https://tec.openplanner.team/stops/LVLruis1"], ["https://tec.openplanner.team/stops/N118aea", "https://tec.openplanner.team/stops/N155akb"], ["https://tec.openplanner.team/stops/Cmlgche1", "https://tec.openplanner.team/stops/Cmltemp1"], ["https://tec.openplanner.team/stops/Cctpass2", "https://tec.openplanner.team/stops/Cctsncb1"], ["https://tec.openplanner.team/stops/X638agb", "https://tec.openplanner.team/stops/X638apb"], ["https://tec.openplanner.team/stops/N234aea", "https://tec.openplanner.team/stops/N234aeb"], ["https://tec.openplanner.team/stops/Bwatfva2", "https://tec.openplanner.team/stops/Bwatjbo2"], ["https://tec.openplanner.team/stops/Cflbrun1", "https://tec.openplanner.team/stops/Cflchap3"], ["https://tec.openplanner.team/stops/X982aub", "https://tec.openplanner.team/stops/X982bca"], ["https://tec.openplanner.team/stops/Cmcwic1", "https://tec.openplanner.team/stops/Cmcwir2"], ["https://tec.openplanner.team/stops/LPtchpl2", "https://tec.openplanner.team/stops/LPtrefa2"], ["https://tec.openplanner.team/stops/LVAbloe1", "https://tec.openplanner.team/stops/LVAflat2"], ["https://tec.openplanner.team/stops/N526adb", "https://tec.openplanner.team/stops/N527abb"], ["https://tec.openplanner.team/stops/H1hn208a", "https://tec.openplanner.team/stops/H1ms287b"], ["https://tec.openplanner.team/stops/Canecbr2", "https://tec.openplanner.team/stops/Canlemo1"], ["https://tec.openplanner.team/stops/X876adb", "https://tec.openplanner.team/stops/X887aab"], ["https://tec.openplanner.team/stops/Cgocolo1", "https://tec.openplanner.team/stops/Cgolimi1"], ["https://tec.openplanner.team/stops/LhGcasi1", "https://tec.openplanner.team/stops/LkEbbl-1"], ["https://tec.openplanner.team/stops/LPlchpl2", "https://tec.openplanner.team/stops/LPlpomp1"], ["https://tec.openplanner.team/stops/X761aab", "https://tec.openplanner.team/stops/X793ada"], ["https://tec.openplanner.team/stops/Cgdberl2", "https://tec.openplanner.team/stops/Cgdcent1"], ["https://tec.openplanner.team/stops/LlgLEOP1", "https://tec.openplanner.team/stops/LlgLEOP2"], ["https://tec.openplanner.team/stops/Baudstr2", "https://tec.openplanner.team/stops/Baudtri1"], ["https://tec.openplanner.team/stops/LSZarbe1", "https://tec.openplanner.team/stops/LSZarbe2"], ["https://tec.openplanner.team/stops/LHUcomp1", "https://tec.openplanner.team/stops/LHUlieg1"], ["https://tec.openplanner.team/stops/X940aba", "https://tec.openplanner.team/stops/X948afb"], ["https://tec.openplanner.team/stops/LOunebl2", "https://tec.openplanner.team/stops/LOuplac1"], ["https://tec.openplanner.team/stops/H4we135b", "https://tec.openplanner.team/stops/H4we136a"], ["https://tec.openplanner.team/stops/N104aka", "https://tec.openplanner.team/stops/N106aia"], ["https://tec.openplanner.team/stops/N501dta", "https://tec.openplanner.team/stops/N501dtb"], ["https://tec.openplanner.team/stops/X390aja", "https://tec.openplanner.team/stops/X390aka"], ["https://tec.openplanner.team/stops/LAnchat1", "https://tec.openplanner.team/stops/LAnvien1"], ["https://tec.openplanner.team/stops/Lbrptbr2", "https://tec.openplanner.team/stops/Lbrptbr3"], ["https://tec.openplanner.team/stops/H5bl115a", "https://tec.openplanner.team/stops/H5bl119d"], ["https://tec.openplanner.team/stops/Cbuplac3", "https://tec.openplanner.team/stops/Cbuplac4"], ["https://tec.openplanner.team/stops/Lbbbuse1", "https://tec.openplanner.team/stops/Ljubord2"], ["https://tec.openplanner.team/stops/H1ho141a", "https://tec.openplanner.team/stops/H1wa157b"], ["https://tec.openplanner.team/stops/LHEbeau1", "https://tec.openplanner.team/stops/LHEbeau2"], ["https://tec.openplanner.team/stops/N241acb", "https://tec.openplanner.team/stops/N241ada"], ["https://tec.openplanner.team/stops/X768aeb", "https://tec.openplanner.team/stops/X768agb"], ["https://tec.openplanner.team/stops/LeSsaal*", "https://tec.openplanner.team/stops/LmAgruf2"], ["https://tec.openplanner.team/stops/N390acb", "https://tec.openplanner.team/stops/N390aeb"], ["https://tec.openplanner.team/stops/LTIpire2", "https://tec.openplanner.team/stops/LTIpres2"], ["https://tec.openplanner.team/stops/LaAkapi2", "https://tec.openplanner.team/stops/LaAnorm2"], ["https://tec.openplanner.team/stops/H4wc372b", "https://tec.openplanner.team/stops/H4wc373a"], ["https://tec.openplanner.team/stops/Bnivchh1", "https://tec.openplanner.team/stops/Bnivchh2"], ["https://tec.openplanner.team/stops/Cclbarb1", "https://tec.openplanner.team/stops/Cstgare2"], ["https://tec.openplanner.team/stops/Bsmgpon2", "https://tec.openplanner.team/stops/Btanvil1"], ["https://tec.openplanner.team/stops/N519ara", "https://tec.openplanner.team/stops/N519asd"], ["https://tec.openplanner.team/stops/H4fa127a", "https://tec.openplanner.team/stops/H4fa127b"], ["https://tec.openplanner.team/stops/X601cfa", "https://tec.openplanner.team/stops/X601cra"], ["https://tec.openplanner.team/stops/Llgbuis1", "https://tec.openplanner.team/stops/Llgec--1"], ["https://tec.openplanner.team/stops/LBapeup1", "https://tec.openplanner.team/stops/LLUdeig2"], ["https://tec.openplanner.team/stops/LhPheps1", "https://tec.openplanner.team/stops/LhPheps2"], ["https://tec.openplanner.team/stops/Cjuloos2", "https://tec.openplanner.team/stops/Cjuvand1"], ["https://tec.openplanner.team/stops/Bglitro2", "https://tec.openplanner.team/stops/Btlbtho1"], ["https://tec.openplanner.team/stops/H4pl115b", "https://tec.openplanner.team/stops/H4pl121b"], ["https://tec.openplanner.team/stops/H4co149b", "https://tec.openplanner.team/stops/H4co150b"], ["https://tec.openplanner.team/stops/H4ty274b", "https://tec.openplanner.team/stops/H4ty291b"], ["https://tec.openplanner.team/stops/X796aga", "https://tec.openplanner.team/stops/X796agb"], ["https://tec.openplanner.team/stops/H4ty273b", "https://tec.openplanner.team/stops/H4ty357a"], ["https://tec.openplanner.team/stops/H4wi163b", "https://tec.openplanner.team/stops/H4wi175a"], ["https://tec.openplanner.team/stops/Bjaurgo1", "https://tec.openplanner.team/stops/Bjaurgo2"], ["https://tec.openplanner.team/stops/X318aba", "https://tec.openplanner.team/stops/X364ada"], ["https://tec.openplanner.team/stops/LAascie1", "https://tec.openplanner.team/stops/X261ada"], ["https://tec.openplanner.team/stops/N501jeb", "https://tec.openplanner.team/stops/N501jib"], ["https://tec.openplanner.team/stops/H4ty383a", "https://tec.openplanner.team/stops/H4ty383b"], ["https://tec.openplanner.team/stops/Bwavbar2", "https://tec.openplanner.team/stops/Bwavcin2"], ["https://tec.openplanner.team/stops/N351ahb", "https://tec.openplanner.team/stops/N351aib"], ["https://tec.openplanner.team/stops/Bptemch1", "https://tec.openplanner.team/stops/H1hv131a"], ["https://tec.openplanner.team/stops/LLrisa-*", "https://tec.openplanner.team/stops/LNOsedo2"], ["https://tec.openplanner.team/stops/Cgzbouh2", "https://tec.openplanner.team/stops/Cgzm1482"], ["https://tec.openplanner.team/stops/X922aaa", "https://tec.openplanner.team/stops/X922acb"], ["https://tec.openplanner.team/stops/Chhdubr1", "https://tec.openplanner.team/stops/Chhdubr2"], ["https://tec.openplanner.team/stops/H4eg101b", "https://tec.openplanner.team/stops/H4eg101c"], ["https://tec.openplanner.team/stops/X641aoa", "https://tec.openplanner.team/stops/X641apb"], ["https://tec.openplanner.team/stops/N302aca", "https://tec.openplanner.team/stops/N302ada"], ["https://tec.openplanner.team/stops/Bsdavpe1", "https://tec.openplanner.team/stops/Csdfboi2"], ["https://tec.openplanner.team/stops/LmSdorf1", "https://tec.openplanner.team/stops/LmSkape1"], ["https://tec.openplanner.team/stops/X801asa", "https://tec.openplanner.team/stops/X801bbb"], ["https://tec.openplanner.team/stops/Lfhhosp2", "https://tec.openplanner.team/stops/Lfhpass1"], ["https://tec.openplanner.team/stops/X902aeb", "https://tec.openplanner.team/stops/X902aob"], ["https://tec.openplanner.team/stops/H1cu113a", "https://tec.openplanner.team/stops/H1cu129a"], ["https://tec.openplanner.team/stops/X818ada", "https://tec.openplanner.team/stops/X818aeb"], ["https://tec.openplanner.team/stops/Llgbron2", "https://tec.openplanner.team/stops/Llgdart2"], ["https://tec.openplanner.team/stops/LATcorp2", "https://tec.openplanner.team/stops/LHUzoni3"], ["https://tec.openplanner.team/stops/Ccspla", "https://tec.openplanner.team/stops/Cmx4che2"], ["https://tec.openplanner.team/stops/Bbgeegl2", "https://tec.openplanner.team/stops/Bbgever2"], ["https://tec.openplanner.team/stops/Bengvma1", "https://tec.openplanner.team/stops/H1en106b"], ["https://tec.openplanner.team/stops/Bbsibou2", "https://tec.openplanner.team/stops/Bbsivi11"], ["https://tec.openplanner.team/stops/Lseberg4", "https://tec.openplanner.team/stops/Lsebuil2"], ["https://tec.openplanner.team/stops/H1bs111b", "https://tec.openplanner.team/stops/H1sb144b"], ["https://tec.openplanner.team/stops/LSUroyo1", "https://tec.openplanner.team/stops/LTgchar8"], ["https://tec.openplanner.team/stops/X982ata", "https://tec.openplanner.team/stops/X982caa"], ["https://tec.openplanner.team/stops/X725aec", "https://tec.openplanner.team/stops/X725aee"], ["https://tec.openplanner.team/stops/LCvneuv4", "https://tec.openplanner.team/stops/LCvneuv6"], ["https://tec.openplanner.team/stops/N118agb", "https://tec.openplanner.team/stops/N118atb"], ["https://tec.openplanner.team/stops/N554acb", "https://tec.openplanner.team/stops/N573ara"], ["https://tec.openplanner.team/stops/Cjupllo2", "https://tec.openplanner.team/stops/Cjupn2"], ["https://tec.openplanner.team/stops/LPT97--1", "https://tec.openplanner.team/stops/LPurech2"], ["https://tec.openplanner.team/stops/Brsggea1", "https://tec.openplanner.team/stops/Bwatcoq1"], ["https://tec.openplanner.team/stops/Lvepala7", "https://tec.openplanner.team/stops/Lvepris1"], ["https://tec.openplanner.team/stops/Cfrcoqu4", "https://tec.openplanner.team/stops/Cfrgivr2"], ["https://tec.openplanner.team/stops/N123abb", "https://tec.openplanner.team/stops/N123adb"], ["https://tec.openplanner.team/stops/X771afa", "https://tec.openplanner.team/stops/X771afb"], ["https://tec.openplanner.team/stops/Llabrou1", "https://tec.openplanner.team/stops/Llaflot2"], ["https://tec.openplanner.team/stops/Bquebut2", "https://tec.openplanner.team/stops/Bquegob1"], ["https://tec.openplanner.team/stops/H4pq112a", "https://tec.openplanner.team/stops/H4wg122b"], ["https://tec.openplanner.team/stops/N513avb", "https://tec.openplanner.team/stops/N514ajb"], ["https://tec.openplanner.team/stops/X660abb", "https://tec.openplanner.team/stops/X672aca"], ["https://tec.openplanner.team/stops/H1fl136a", "https://tec.openplanner.team/stops/H1fl137b"], ["https://tec.openplanner.team/stops/Bfelagb1", "https://tec.openplanner.team/stops/Bfelpmo1"], ["https://tec.openplanner.team/stops/Cmoruau1", "https://tec.openplanner.team/stops/Cmovies2"], ["https://tec.openplanner.team/stops/X734aaa", "https://tec.openplanner.team/stops/X734aab"], ["https://tec.openplanner.team/stops/NL76aib", "https://tec.openplanner.team/stops/NL77akb"], ["https://tec.openplanner.team/stops/LOLbout2", "https://tec.openplanner.team/stops/LOLrafh2"], ["https://tec.openplanner.team/stops/X870adb", "https://tec.openplanner.team/stops/X880acb"], ["https://tec.openplanner.team/stops/N584apb", "https://tec.openplanner.team/stops/N584aqb"], ["https://tec.openplanner.team/stops/X641afb", "https://tec.openplanner.team/stops/X641aoa"], ["https://tec.openplanner.team/stops/Cmmcomb2", "https://tec.openplanner.team/stops/Cmmlong2"], ["https://tec.openplanner.team/stops/X804aga", "https://tec.openplanner.team/stops/X804aia"], ["https://tec.openplanner.team/stops/Cmastni1", "https://tec.openplanner.team/stops/Cmastni2"], ["https://tec.openplanner.team/stops/LLGcarr2", "https://tec.openplanner.team/stops/LLGramk3"], ["https://tec.openplanner.team/stops/LVIcarm2", "https://tec.openplanner.team/stops/LVIecol2"], ["https://tec.openplanner.team/stops/H1qu103b", "https://tec.openplanner.team/stops/H1qu116c"], ["https://tec.openplanner.team/stops/H1ne140b", "https://tec.openplanner.team/stops/H1ne142a"], ["https://tec.openplanner.team/stops/N353abb", "https://tec.openplanner.team/stops/N353aeb"], ["https://tec.openplanner.team/stops/H2go116a", "https://tec.openplanner.team/stops/H2go118a"], ["https://tec.openplanner.team/stops/X633agc", "https://tec.openplanner.team/stops/X633aia"], ["https://tec.openplanner.team/stops/Lbrhvl-*", "https://tec.openplanner.team/stops/Lgrspir1"], ["https://tec.openplanner.team/stops/Crewaba1", "https://tec.openplanner.team/stops/Crewaba2"], ["https://tec.openplanner.team/stops/X779afa", "https://tec.openplanner.team/stops/X779afb"], ["https://tec.openplanner.team/stops/N241aba", "https://tec.openplanner.team/stops/N585aba"], ["https://tec.openplanner.team/stops/H1hn364a", "https://tec.openplanner.team/stops/H1ms260b"], ["https://tec.openplanner.team/stops/Lveepar2", "https://tec.openplanner.team/stops/Lvemahe2"], ["https://tec.openplanner.team/stops/N234aea", "https://tec.openplanner.team/stops/N550ada"], ["https://tec.openplanner.team/stops/N232bzb", "https://tec.openplanner.team/stops/N242adc"], ["https://tec.openplanner.team/stops/X919aea", "https://tec.openplanner.team/stops/X919aeb"], ["https://tec.openplanner.team/stops/Cmechnd1", "https://tec.openplanner.team/stops/Cmecomb1"], ["https://tec.openplanner.team/stops/LMebove2", "https://tec.openplanner.team/stops/LMeeg--1"], ["https://tec.openplanner.team/stops/Bvilvil1", "https://tec.openplanner.team/stops/Bvilvil3"], ["https://tec.openplanner.team/stops/Lheelva1", "https://tec.openplanner.team/stops/LHemoul2"], ["https://tec.openplanner.team/stops/X817acb", "https://tec.openplanner.team/stops/X817aea"], ["https://tec.openplanner.team/stops/X607aia", "https://tec.openplanner.team/stops/X607aja"], ["https://tec.openplanner.team/stops/X605adb", "https://tec.openplanner.team/stops/X605aeb"], ["https://tec.openplanner.team/stops/H4mo151b", "https://tec.openplanner.team/stops/H4mo208a"], ["https://tec.openplanner.team/stops/X923afb", "https://tec.openplanner.team/stops/X923aia"], ["https://tec.openplanner.team/stops/LlOkreu1", "https://tec.openplanner.team/stops/LmSkape2"], ["https://tec.openplanner.team/stops/LAMpirk1", "https://tec.openplanner.team/stops/LAMweha1"], ["https://tec.openplanner.team/stops/N522ala", "https://tec.openplanner.team/stops/N522ama"], ["https://tec.openplanner.team/stops/LLNogne2", "https://tec.openplanner.team/stops/LSpxhig1"], ["https://tec.openplanner.team/stops/N506apa", "https://tec.openplanner.team/stops/N506bpb"], ["https://tec.openplanner.team/stops/X733afa", "https://tec.openplanner.team/stops/X733afb"], ["https://tec.openplanner.team/stops/H2ch105b", "https://tec.openplanner.team/stops/H2ch105c"], ["https://tec.openplanner.team/stops/Cptchea1", "https://tec.openplanner.team/stops/H2tz117b"], ["https://tec.openplanner.team/stops/X793agb", "https://tec.openplanner.team/stops/X793ahb"], ["https://tec.openplanner.team/stops/H5rx114b", "https://tec.openplanner.team/stops/H5rx148a"], ["https://tec.openplanner.team/stops/X695afa", "https://tec.openplanner.team/stops/X695aha"], ["https://tec.openplanner.team/stops/H2bh112a", "https://tec.openplanner.team/stops/H2bh113a"], ["https://tec.openplanner.team/stops/Cobnive2", "https://tec.openplanner.team/stops/Creoudo1"], ["https://tec.openplanner.team/stops/Bbsgfva2", "https://tec.openplanner.team/stops/Bbsgrve1"], ["https://tec.openplanner.team/stops/Ccuhaie1", "https://tec.openplanner.team/stops/Ccuphai3"], ["https://tec.openplanner.team/stops/LLbpt--2", "https://tec.openplanner.team/stops/LrErauw2"], ["https://tec.openplanner.team/stops/Lsnbure1", "https://tec.openplanner.team/stops/Lticime1"], ["https://tec.openplanner.team/stops/X782aga", "https://tec.openplanner.team/stops/X782agb"], ["https://tec.openplanner.team/stops/LmSdorf2", "https://tec.openplanner.team/stops/LnDdorf1"], ["https://tec.openplanner.team/stops/X630aab", "https://tec.openplanner.team/stops/X638aab"], ["https://tec.openplanner.team/stops/X613aaa", "https://tec.openplanner.team/stops/X623aka"], ["https://tec.openplanner.team/stops/X664amc", "https://tec.openplanner.team/stops/X664ara"], ["https://tec.openplanner.team/stops/H4be108a", "https://tec.openplanner.team/stops/H4be109a"], ["https://tec.openplanner.team/stops/Ceregl2", "https://tec.openplanner.team/stops/N103aea"], ["https://tec.openplanner.team/stops/LAWhein4", "https://tec.openplanner.team/stops/LAWkone2"], ["https://tec.openplanner.team/stops/Btstbes2", "https://tec.openplanner.team/stops/Btstcar2"], ["https://tec.openplanner.team/stops/X640akb", "https://tec.openplanner.team/stops/X640alb"], ["https://tec.openplanner.team/stops/H1ha186a", "https://tec.openplanner.team/stops/H1ha198b"], ["https://tec.openplanner.team/stops/LLrquar2", "https://tec.openplanner.team/stops/LTHturo3"], ["https://tec.openplanner.team/stops/N305aaa", "https://tec.openplanner.team/stops/N331ajb"], ["https://tec.openplanner.team/stops/H2an110a", "https://tec.openplanner.team/stops/H2ca102b"], ["https://tec.openplanner.team/stops/Bnilcha2", "https://tec.openplanner.team/stops/Bnilpje2"], ["https://tec.openplanner.team/stops/N550aga", "https://tec.openplanner.team/stops/N550amb"], ["https://tec.openplanner.team/stops/H1hy127b", "https://tec.openplanner.team/stops/H1hy128a"], ["https://tec.openplanner.team/stops/X725aqb", "https://tec.openplanner.team/stops/X725ava"], ["https://tec.openplanner.team/stops/X734akb", "https://tec.openplanner.team/stops/X775aaa"], ["https://tec.openplanner.team/stops/H1vb141a", "https://tec.openplanner.team/stops/H3bi102a"], ["https://tec.openplanner.team/stops/LFCdree2", "https://tec.openplanner.team/stops/LMgkrui1"], ["https://tec.openplanner.team/stops/Bboncha2", "https://tec.openplanner.team/stops/Bboneta1"], ["https://tec.openplanner.team/stops/LSGcarr2", "https://tec.openplanner.team/stops/LYegeor2"], ["https://tec.openplanner.team/stops/X761aab", "https://tec.openplanner.team/stops/X761abb"], ["https://tec.openplanner.team/stops/LBWviad2", "https://tec.openplanner.team/stops/LVImons2"], ["https://tec.openplanner.team/stops/N557aha", "https://tec.openplanner.team/stops/N557ahb"], ["https://tec.openplanner.team/stops/Lghencl1", "https://tec.openplanner.team/stops/Lghflot3"], ["https://tec.openplanner.team/stops/NR21aba", "https://tec.openplanner.team/stops/NR21abc"], ["https://tec.openplanner.team/stops/LCdchod1", "https://tec.openplanner.team/stops/LMAbell2"], ["https://tec.openplanner.team/stops/Cpl4bra1", "https://tec.openplanner.team/stops/Cplstfa2"], ["https://tec.openplanner.team/stops/Cfmcoro1", "https://tec.openplanner.team/stops/Cfmpui81"], ["https://tec.openplanner.team/stops/Ctm4che2", "https://tec.openplanner.team/stops/Ctmsncb2"], ["https://tec.openplanner.team/stops/H3lr107a", "https://tec.openplanner.team/stops/H3lr111a"], ["https://tec.openplanner.team/stops/N501jka", "https://tec.openplanner.team/stops/N501jpa"], ["https://tec.openplanner.team/stops/N519asb", "https://tec.openplanner.team/stops/N524aja"], ["https://tec.openplanner.team/stops/H3bi110b", "https://tec.openplanner.team/stops/H3bi116b"], ["https://tec.openplanner.team/stops/LCTmonu2", "https://tec.openplanner.team/stops/LFIeg--2"], ["https://tec.openplanner.team/stops/X870aab", "https://tec.openplanner.team/stops/X870abb"], ["https://tec.openplanner.team/stops/X806ada", "https://tec.openplanner.team/stops/X806aeb"], ["https://tec.openplanner.team/stops/X919aeb", "https://tec.openplanner.team/stops/X919afa"], ["https://tec.openplanner.team/stops/X771aba", "https://tec.openplanner.team/stops/X771aca"], ["https://tec.openplanner.team/stops/X597aqa", "https://tec.openplanner.team/stops/X597aqb"], ["https://tec.openplanner.team/stops/LAvatri2", "https://tec.openplanner.team/stops/LAvchpl2"], ["https://tec.openplanner.team/stops/N505aea", "https://tec.openplanner.team/stops/N505aga"], ["https://tec.openplanner.team/stops/Cvppost2", "https://tec.openplanner.team/stops/Cvpsawe1"], ["https://tec.openplanner.team/stops/Cgzblob2", "https://tec.openplanner.team/stops/Cthrpoi2"], ["https://tec.openplanner.team/stops/N513arb", "https://tec.openplanner.team/stops/N513asa"], ["https://tec.openplanner.team/stops/X919aca", "https://tec.openplanner.team/stops/X921afb"], ["https://tec.openplanner.team/stops/X762aaa", "https://tec.openplanner.team/stops/X763adb"], ["https://tec.openplanner.team/stops/N118aab", "https://tec.openplanner.team/stops/N118aba"], ["https://tec.openplanner.team/stops/H2ca104a", "https://tec.openplanner.team/stops/H2mo135b"], ["https://tec.openplanner.team/stops/LVleg--1", "https://tec.openplanner.team/stops/LVllieg1"], ["https://tec.openplanner.team/stops/Bbghpln1", "https://tec.openplanner.team/stops/Bpte1ma2"], ["https://tec.openplanner.team/stops/LMschap1", "https://tec.openplanner.team/stops/LMsec--2"], ["https://tec.openplanner.team/stops/H4an104a", "https://tec.openplanner.team/stops/H4an110a"], ["https://tec.openplanner.team/stops/Lstbota2", "https://tec.openplanner.team/stops/Lstchu-2"], ["https://tec.openplanner.team/stops/N553ada", "https://tec.openplanner.team/stops/N553afb"], ["https://tec.openplanner.team/stops/Lvovent1", "https://tec.openplanner.team/stops/Lvovent2"], ["https://tec.openplanner.team/stops/LAWmc--1", "https://tec.openplanner.team/stops/LAWmc--2"], ["https://tec.openplanner.team/stops/Cmtneuv2", "https://tec.openplanner.team/stops/Cmtpire2"], ["https://tec.openplanner.team/stops/N534asa", "https://tec.openplanner.team/stops/N534avb"], ["https://tec.openplanner.team/stops/N552aaa", "https://tec.openplanner.team/stops/N577aca"], ["https://tec.openplanner.team/stops/Lhrhosp1", "https://tec.openplanner.team/stops/Lhrrhee*"], ["https://tec.openplanner.team/stops/N538asa", "https://tec.openplanner.team/stops/N538asb"], ["https://tec.openplanner.team/stops/H1fr133b", "https://tec.openplanner.team/stops/H1no143a"], ["https://tec.openplanner.team/stops/H2hl112a", "https://tec.openplanner.team/stops/H2hp121b"], ["https://tec.openplanner.team/stops/Lflchan2", "https://tec.openplanner.team/stops/Lmabott1"], ["https://tec.openplanner.team/stops/Lsearbo1", "https://tec.openplanner.team/stops/Lsebonc1"], ["https://tec.openplanner.team/stops/N202aaa", "https://tec.openplanner.team/stops/N202aeb"], ["https://tec.openplanner.team/stops/Cfmpui82", "https://tec.openplanner.team/stops/Cfmwaut2"], ["https://tec.openplanner.team/stops/Bbryfon1", "https://tec.openplanner.team/stops/Bbryfon2"], ["https://tec.openplanner.team/stops/LBkwind1", "https://tec.openplanner.team/stops/LBkwind2"], ["https://tec.openplanner.team/stops/H4ln128a", "https://tec.openplanner.team/stops/H4ne144a"], ["https://tec.openplanner.team/stops/X775agb", "https://tec.openplanner.team/stops/X775ahb"], ["https://tec.openplanner.team/stops/N151aha", "https://tec.openplanner.team/stops/N151aib"], ["https://tec.openplanner.team/stops/X614afb", "https://tec.openplanner.team/stops/X614agb"], ["https://tec.openplanner.team/stops/LATdame1", "https://tec.openplanner.team/stops/LVNbale1"], ["https://tec.openplanner.team/stops/Blhueso1", "https://tec.openplanner.team/stops/Blhugmo1"], ["https://tec.openplanner.team/stops/Bquebut1", "https://tec.openplanner.team/stops/Bquepla2"], ["https://tec.openplanner.team/stops/LsVbs--*", "https://tec.openplanner.team/stops/LwSschw1"], ["https://tec.openplanner.team/stops/X925ada", "https://tec.openplanner.team/stops/X925adb"], ["https://tec.openplanner.team/stops/H1cd112a", "https://tec.openplanner.team/stops/H1cd113a"], ["https://tec.openplanner.team/stops/H4fr144a", "https://tec.openplanner.team/stops/H4fr389a"], ["https://tec.openplanner.team/stops/LHCkoul2", "https://tec.openplanner.team/stops/LHCpaci2"], ["https://tec.openplanner.team/stops/Brsgecu2", "https://tec.openplanner.team/stops/Brsgfbl4"], ["https://tec.openplanner.team/stops/X725aab", "https://tec.openplanner.team/stops/X738aeb"], ["https://tec.openplanner.team/stops/N101ama", "https://tec.openplanner.team/stops/N101aob"], ["https://tec.openplanner.team/stops/N230aab", "https://tec.openplanner.team/stops/N230acb"], ["https://tec.openplanner.team/stops/H1ca100a", "https://tec.openplanner.team/stops/H1ca104a"], ["https://tec.openplanner.team/stops/H4ta116a", "https://tec.openplanner.team/stops/H4ta126a"], ["https://tec.openplanner.team/stops/H1ol143a", "https://tec.openplanner.team/stops/H1ol145a"], ["https://tec.openplanner.team/stops/Crocona2", "https://tec.openplanner.team/stops/Crorpai1"], ["https://tec.openplanner.team/stops/LGeborn1", "https://tec.openplanner.team/stops/LGepeck2"], ["https://tec.openplanner.team/stops/LeYwald1", "https://tec.openplanner.team/stops/LeYwess1"], ["https://tec.openplanner.team/stops/X921aca", "https://tec.openplanner.team/stops/X921acb"], ["https://tec.openplanner.team/stops/X672acb", "https://tec.openplanner.team/stops/X672afa"], ["https://tec.openplanner.team/stops/Cmlgoff2", "https://tec.openplanner.team/stops/Cmltemp3"], ["https://tec.openplanner.team/stops/Blhulor1", "https://tec.openplanner.team/stops/Blhuone1"], ["https://tec.openplanner.team/stops/X897aba", "https://tec.openplanner.team/stops/X897abb"], ["https://tec.openplanner.team/stops/Crocpai1", "https://tec.openplanner.team/stops/Crocpai2"], ["https://tec.openplanner.team/stops/X664aib", "https://tec.openplanner.team/stops/X665aab"], ["https://tec.openplanner.team/stops/Blimd672", "https://tec.openplanner.team/stops/Blimeur2"], ["https://tec.openplanner.team/stops/H4ty314b", "https://tec.openplanner.team/stops/H4ty314c"], ["https://tec.openplanner.team/stops/N548acd", "https://tec.openplanner.team/stops/N548amb"], ["https://tec.openplanner.team/stops/H1mb125a", "https://tec.openplanner.team/stops/H1mb136a"], ["https://tec.openplanner.team/stops/Bwatath1", "https://tec.openplanner.team/stops/Bwatath2"], ["https://tec.openplanner.team/stops/LWaatel2", "https://tec.openplanner.team/stops/LWLtamb1"], ["https://tec.openplanner.team/stops/Broscha1", "https://tec.openplanner.team/stops/Brosegl2"], ["https://tec.openplanner.team/stops/LLVboss1", "https://tec.openplanner.team/stops/X561adb"], ["https://tec.openplanner.team/stops/N501myb", "https://tec.openplanner.team/stops/N527acb"], ["https://tec.openplanner.team/stops/LHGikea2", "https://tec.openplanner.team/stops/LHGzoni2"], ["https://tec.openplanner.team/stops/X910aia", "https://tec.openplanner.team/stops/X910aib"], ["https://tec.openplanner.team/stops/X805abb", "https://tec.openplanner.team/stops/X805aja"], ["https://tec.openplanner.team/stops/Lvccime1", "https://tec.openplanner.team/stops/Lvcdumo1"], ["https://tec.openplanner.team/stops/X870aeb", "https://tec.openplanner.team/stops/X870aib"], ["https://tec.openplanner.team/stops/N529abc", "https://tec.openplanner.team/stops/N529akb"], ["https://tec.openplanner.team/stops/X644aba", "https://tec.openplanner.team/stops/X645abb"], ["https://tec.openplanner.team/stops/N217aca", "https://tec.openplanner.team/stops/N218aeb"], ["https://tec.openplanner.team/stops/Cjuecha1", "https://tec.openplanner.team/stops/Clogfay2"], ["https://tec.openplanner.team/stops/N244aoa", "https://tec.openplanner.team/stops/N244arb"], ["https://tec.openplanner.team/stops/LLYplac2", "https://tec.openplanner.team/stops/LLYtir-1"], ["https://tec.openplanner.team/stops/N538ama", "https://tec.openplanner.team/stops/N538ara"], ["https://tec.openplanner.team/stops/LBGroma2", "https://tec.openplanner.team/stops/LBGvill2"], ["https://tec.openplanner.team/stops/H1ca102b", "https://tec.openplanner.team/stops/H3so160b"], ["https://tec.openplanner.team/stops/X651adb", "https://tec.openplanner.team/stops/X651aga"], ["https://tec.openplanner.team/stops/Lbralbe1", "https://tec.openplanner.team/stops/Lbrfoid1"], ["https://tec.openplanner.team/stops/H4ty301a", "https://tec.openplanner.team/stops/H4ty301d"], ["https://tec.openplanner.team/stops/LFOchpl1", "https://tec.openplanner.team/stops/LFOchpl2"], ["https://tec.openplanner.team/stops/N211bca", "https://tec.openplanner.team/stops/N212agc"], ["https://tec.openplanner.team/stops/H1ba113a", "https://tec.openplanner.team/stops/H1hh118b"], ["https://tec.openplanner.team/stops/H1by101a", "https://tec.openplanner.team/stops/H1by109a"], ["https://tec.openplanner.team/stops/N338aeb", "https://tec.openplanner.team/stops/N338agb"], ["https://tec.openplanner.team/stops/Bsaubra2", "https://tec.openplanner.team/stops/Bsaumlk1"], ["https://tec.openplanner.team/stops/LFPho8a1", "https://tec.openplanner.team/stops/LFPho8a2"], ["https://tec.openplanner.team/stops/Bbchm382", "https://tec.openplanner.team/stops/Bhalvla1"], ["https://tec.openplanner.team/stops/N287abb", "https://tec.openplanner.team/stops/N287acb"], ["https://tec.openplanner.team/stops/X601cqa", "https://tec.openplanner.team/stops/X601cra"], ["https://tec.openplanner.team/stops/LWEfati2", "https://tec.openplanner.team/stops/LWEmito2"], ["https://tec.openplanner.team/stops/X899aba", "https://tec.openplanner.team/stops/X899abb"], ["https://tec.openplanner.team/stops/LRmkerk2", "https://tec.openplanner.team/stops/LRmstat2"], ["https://tec.openplanner.team/stops/H1je219a", "https://tec.openplanner.team/stops/H1je369b"], ["https://tec.openplanner.team/stops/Baegd741", "https://tec.openplanner.team/stops/Bgrhhot1"], ["https://tec.openplanner.team/stops/LSGfoua2", "https://tec.openplanner.team/stops/LSkathe1"], ["https://tec.openplanner.team/stops/H4va232a", "https://tec.openplanner.team/stops/H4va234b"], ["https://tec.openplanner.team/stops/N302acb", "https://tec.openplanner.team/stops/N302aeb"], ["https://tec.openplanner.team/stops/Bwancal1", "https://tec.openplanner.team/stops/Bwanthi2"], ["https://tec.openplanner.team/stops/LHTcerc4", "https://tec.openplanner.team/stops/LHTeg--4"], ["https://tec.openplanner.team/stops/N525ahb", "https://tec.openplanner.team/stops/N525aia"], ["https://tec.openplanner.team/stops/LVvboma2", "https://tec.openplanner.team/stops/LVvbouv2"], ["https://tec.openplanner.team/stops/LBAcere2", "https://tec.openplanner.team/stops/LHOgymn2"], ["https://tec.openplanner.team/stops/X982bfb", "https://tec.openplanner.team/stops/X982bja"], ["https://tec.openplanner.team/stops/N232ayb", "https://tec.openplanner.team/stops/N232cbb"], ["https://tec.openplanner.team/stops/X396acb", "https://tec.openplanner.team/stops/X396ada"], ["https://tec.openplanner.team/stops/LAivill1", "https://tec.openplanner.team/stops/Lccawir4"], ["https://tec.openplanner.team/stops/X911aoa", "https://tec.openplanner.team/stops/X911awa"], ["https://tec.openplanner.team/stops/Bmsgbur1", "https://tec.openplanner.team/stops/Bmsgbur2"], ["https://tec.openplanner.team/stops/X818aba", "https://tec.openplanner.team/stops/X827aab"], ["https://tec.openplanner.team/stops/Lroeg--1", "https://tec.openplanner.team/stops/Lromerl2"], ["https://tec.openplanner.team/stops/LMAcite2", "https://tec.openplanner.team/stops/LMAhall1"], ["https://tec.openplanner.team/stops/LFHjamo1", "https://tec.openplanner.team/stops/LVGeg--1"], ["https://tec.openplanner.team/stops/LHFhard1", "https://tec.openplanner.team/stops/LVEmoul1"], ["https://tec.openplanner.team/stops/X638alb", "https://tec.openplanner.team/stops/X644aeb"], ["https://tec.openplanner.team/stops/X634acb", "https://tec.openplanner.team/stops/X634aea"], ["https://tec.openplanner.team/stops/X839abc", "https://tec.openplanner.team/stops/X839abd"], ["https://tec.openplanner.team/stops/LiVkreu1", "https://tec.openplanner.team/stops/LiVkreu4"], ["https://tec.openplanner.team/stops/Lsehtsa2", "https://tec.openplanner.team/stops/Lseptsa1"], ["https://tec.openplanner.team/stops/H2hg144a", "https://tec.openplanner.team/stops/H2ll195b"], ["https://tec.openplanner.team/stops/Cmypost1", "https://tec.openplanner.team/stops/Cmypost2"], ["https://tec.openplanner.team/stops/Brsgm301", "https://tec.openplanner.team/stops/Bwatcha2"], ["https://tec.openplanner.team/stops/Bvxgeta1", "https://tec.openplanner.team/stops/Bvxgpro2"], ["https://tec.openplanner.team/stops/Lpegole1", "https://tec.openplanner.team/stops/Lpegole4"], ["https://tec.openplanner.team/stops/Bnivzon1", "https://tec.openplanner.team/stops/Bnivzon2"], ["https://tec.openplanner.team/stops/X762abb", "https://tec.openplanner.team/stops/X762aca"], ["https://tec.openplanner.team/stops/LrEkape1", "https://tec.openplanner.team/stops/LrEkape2"], ["https://tec.openplanner.team/stops/H4me211c", "https://tec.openplanner.team/stops/H4tg262a"], ["https://tec.openplanner.team/stops/LLrdrev1", "https://tec.openplanner.team/stops/LLrdrev2"], ["https://tec.openplanner.team/stops/N321aba", "https://tec.openplanner.team/stops/N321aca"], ["https://tec.openplanner.team/stops/H1ne139b", "https://tec.openplanner.team/stops/H1ne145b"], ["https://tec.openplanner.team/stops/Llghori1", "https://tec.openplanner.team/stops/Llgvolg2"], ["https://tec.openplanner.team/stops/Bgnvpco3", "https://tec.openplanner.team/stops/Bgnvval2"], ["https://tec.openplanner.team/stops/X901aab", "https://tec.openplanner.team/stops/X901bka"], ["https://tec.openplanner.team/stops/N501dea", "https://tec.openplanner.team/stops/N501dfa"], ["https://tec.openplanner.team/stops/X858aaa", "https://tec.openplanner.team/stops/X858afb"], ["https://tec.openplanner.team/stops/Lflsana1", "https://tec.openplanner.team/stops/Lflsana2"], ["https://tec.openplanner.team/stops/LLmpt--2", "https://tec.openplanner.team/stops/LLmwaut1"], ["https://tec.openplanner.team/stops/Lbrcygn1", "https://tec.openplanner.team/stops/Lbrfusi2"], ["https://tec.openplanner.team/stops/N571abb", "https://tec.openplanner.team/stops/N573adb"], ["https://tec.openplanner.team/stops/LVEeg--1", "https://tec.openplanner.team/stops/LVErtt-2"], ["https://tec.openplanner.team/stops/N518aba", "https://tec.openplanner.team/stops/N520aia"], ["https://tec.openplanner.team/stops/Cchfran2", "https://tec.openplanner.team/stops/Cchrmon4"], ["https://tec.openplanner.team/stops/LbUjost2", "https://tec.openplanner.team/stops/LbUmolk1"], ["https://tec.openplanner.team/stops/Bhoealt2", "https://tec.openplanner.team/stops/Btiegar2"], ["https://tec.openplanner.team/stops/X871aeb", "https://tec.openplanner.team/stops/X880acb"], ["https://tec.openplanner.team/stops/N308aaa", "https://tec.openplanner.team/stops/N308aab"], ["https://tec.openplanner.team/stops/N508aeb", "https://tec.openplanner.team/stops/N516aab"], ["https://tec.openplanner.team/stops/H1bl105a", "https://tec.openplanner.team/stops/H1do129a"], ["https://tec.openplanner.team/stops/Cjuhden1", "https://tec.openplanner.team/stops/CMtsan2"], ["https://tec.openplanner.team/stops/X621aaa", "https://tec.openplanner.team/stops/X621aab"], ["https://tec.openplanner.team/stops/Bronfou1", "https://tec.openplanner.team/stops/Bronfou2"], ["https://tec.openplanner.team/stops/H1wa136a", "https://tec.openplanner.team/stops/H1wa153a"], ["https://tec.openplanner.team/stops/Bblaang1", "https://tec.openplanner.team/stops/Blilwit1"], ["https://tec.openplanner.team/stops/LAUcent2", "https://tec.openplanner.team/stops/LAUscha2"], ["https://tec.openplanner.team/stops/N555aca", "https://tec.openplanner.team/stops/NC11ard"], ["https://tec.openplanner.team/stops/Lvealbe2", "https://tec.openplanner.team/stops/Lvevert4"], ["https://tec.openplanner.team/stops/X748aea", "https://tec.openplanner.team/stops/X767aha"], ["https://tec.openplanner.team/stops/H1me117f", "https://tec.openplanner.team/stops/H1so141b"], ["https://tec.openplanner.team/stops/N509akb", "https://tec.openplanner.team/stops/N510adb"], ["https://tec.openplanner.team/stops/Cciarfr1", "https://tec.openplanner.team/stops/Cciethi2"], ["https://tec.openplanner.team/stops/Llgboux1", "https://tec.openplanner.team/stops/Lvtnico2"], ["https://tec.openplanner.team/stops/H4ce102b", "https://tec.openplanner.team/stops/H4mx115b"], ["https://tec.openplanner.team/stops/H4mx115a", "https://tec.openplanner.team/stops/H4mx119c"], ["https://tec.openplanner.team/stops/LBSkann2", "https://tec.openplanner.team/stops/LBSneuv1"], ["https://tec.openplanner.team/stops/Becepro1", "https://tec.openplanner.team/stops/Becesbo1"], ["https://tec.openplanner.team/stops/LELchap1", "https://tec.openplanner.team/stops/LHChaut5"], ["https://tec.openplanner.team/stops/Caibino1", "https://tec.openplanner.team/stops/Caibino2"], ["https://tec.openplanner.team/stops/H5pe130b", "https://tec.openplanner.team/stops/H5pe131b"], ["https://tec.openplanner.team/stops/LHdfays1", "https://tec.openplanner.team/stops/LHdkenn2"], ["https://tec.openplanner.team/stops/H2bh115a", "https://tec.openplanner.team/stops/H2bh115b"], ["https://tec.openplanner.team/stops/Bndbnod1", "https://tec.openplanner.team/stops/Bndbnod2"], ["https://tec.openplanner.team/stops/H4ma200b", "https://tec.openplanner.team/stops/H4ma202b"], ["https://tec.openplanner.team/stops/H1le117a", "https://tec.openplanner.team/stops/H1le124a"], ["https://tec.openplanner.team/stops/X804awb", "https://tec.openplanner.team/stops/X804bda"], ["https://tec.openplanner.team/stops/LGMvoue1", "https://tec.openplanner.team/stops/LSEvill2"], ["https://tec.openplanner.team/stops/X725asa", "https://tec.openplanner.team/stops/X725atb"], ["https://tec.openplanner.team/stops/LDOandr1", "https://tec.openplanner.team/stops/LDOdavi2"], ["https://tec.openplanner.team/stops/LVBcarr1", "https://tec.openplanner.team/stops/LVBmonu3"], ["https://tec.openplanner.team/stops/NL37aaa", "https://tec.openplanner.team/stops/NL37acb"], ["https://tec.openplanner.team/stops/LHChaut5", "https://tec.openplanner.team/stops/LHCquat1"], ["https://tec.openplanner.team/stops/LHUmess2", "https://tec.openplanner.team/stops/LTicime2"], ["https://tec.openplanner.team/stops/N501hnb", "https://tec.openplanner.team/stops/N501ima"], ["https://tec.openplanner.team/stops/Lvcfogu6", "https://tec.openplanner.team/stops/Lvcvesd*"], ["https://tec.openplanner.team/stops/LEMeg--2", "https://tec.openplanner.team/stops/LWOcomm2"], ["https://tec.openplanner.team/stops/LSyec--1", "https://tec.openplanner.team/stops/LSypesy1"], ["https://tec.openplanner.team/stops/LSssurl2", "https://tec.openplanner.team/stops/N506bna"], ["https://tec.openplanner.team/stops/Bauddel1", "https://tec.openplanner.team/stops/Baudsju1"], ["https://tec.openplanner.team/stops/Csecarr1", "https://tec.openplanner.team/stops/Csecarr2"], ["https://tec.openplanner.team/stops/N261aab", "https://tec.openplanner.team/stops/N261agb"], ["https://tec.openplanner.team/stops/H1he103a", "https://tec.openplanner.team/stops/H1he111b"], ["https://tec.openplanner.team/stops/Brsgera2", "https://tec.openplanner.team/stops/Brsggde2"], ["https://tec.openplanner.team/stops/H2ma264a", "https://tec.openplanner.team/stops/H2sb226b"], ["https://tec.openplanner.team/stops/H1bx107b", "https://tec.openplanner.team/stops/H1bx108b"], ["https://tec.openplanner.team/stops/X659ava", "https://tec.openplanner.team/stops/X659avb"], ["https://tec.openplanner.team/stops/Bclgegl1", "https://tec.openplanner.team/stops/Bclgfva2"], ["https://tec.openplanner.team/stops/LAx41--1", "https://tec.openplanner.team/stops/LAxbott1"], ["https://tec.openplanner.team/stops/Bbstegl1", "https://tec.openplanner.team/stops/Bbstmco1"], ["https://tec.openplanner.team/stops/Blmlgar1", "https://tec.openplanner.team/stops/Bottbou2"], ["https://tec.openplanner.team/stops/N553aha", "https://tec.openplanner.team/stops/N553ahb"], ["https://tec.openplanner.team/stops/X685afa", "https://tec.openplanner.team/stops/X685aia"], ["https://tec.openplanner.team/stops/LOCeg--1", "https://tec.openplanner.team/stops/LOCponc*"], ["https://tec.openplanner.team/stops/X804asa", "https://tec.openplanner.team/stops/X829aab"], ["https://tec.openplanner.team/stops/Llgbron1", "https://tec.openplanner.team/stops/LlgguilF"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N313acb"], ["https://tec.openplanner.team/stops/Llgparc1", "https://tec.openplanner.team/stops/Llgriva2"], ["https://tec.openplanner.team/stops/X901ala", "https://tec.openplanner.team/stops/X901aya"], ["https://tec.openplanner.team/stops/N501hhb", "https://tec.openplanner.team/stops/N501mha"], ["https://tec.openplanner.team/stops/LODamco1", "https://tec.openplanner.team/stops/X561ada"], ["https://tec.openplanner.team/stops/H4ch114a", "https://tec.openplanner.team/stops/H4ch115a"], ["https://tec.openplanner.team/stops/NL57agb", "https://tec.openplanner.team/stops/NL57aha"], ["https://tec.openplanner.team/stops/X802aua", "https://tec.openplanner.team/stops/X802ayb"], ["https://tec.openplanner.team/stops/LGMforg2", "https://tec.openplanner.team/stops/LTRsain2"], ["https://tec.openplanner.team/stops/Cgdfoca1", "https://tec.openplanner.team/stops/Csylaha1"], ["https://tec.openplanner.team/stops/X640arb", "https://tec.openplanner.team/stops/X640atb"], ["https://tec.openplanner.team/stops/Bmoucnd1", "https://tec.openplanner.team/stops/Bmouegl1"], ["https://tec.openplanner.team/stops/Cmmlong1", "https://tec.openplanner.team/stops/Cmmmarl1"], ["https://tec.openplanner.team/stops/N534auc", "https://tec.openplanner.team/stops/N561ada"], ["https://tec.openplanner.team/stops/H1sp357b", "https://tec.openplanner.team/stops/H1ss352a"], ["https://tec.openplanner.team/stops/H1je215b", "https://tec.openplanner.team/stops/H1je217a"], ["https://tec.openplanner.team/stops/X601ara", "https://tec.openplanner.team/stops/X662aha"], ["https://tec.openplanner.team/stops/X608ajb", "https://tec.openplanner.team/stops/X608ala"], ["https://tec.openplanner.team/stops/H2na134b", "https://tec.openplanner.team/stops/H2na135a"], ["https://tec.openplanner.team/stops/X743aca", "https://tec.openplanner.team/stops/X743acb"], ["https://tec.openplanner.team/stops/Cflecga1", "https://tec.openplanner.team/stops/Cflecga2"], ["https://tec.openplanner.team/stops/N503aka", "https://tec.openplanner.team/stops/N503akb"], ["https://tec.openplanner.team/stops/N542abb", "https://tec.openplanner.team/stops/N542aob"], ["https://tec.openplanner.team/stops/Cjuepee1", "https://tec.openplanner.team/stops/Cjuepee2"], ["https://tec.openplanner.team/stops/H2an100a", "https://tec.openplanner.team/stops/H2an103b"], ["https://tec.openplanner.team/stops/Bjausan2", "https://tec.openplanner.team/stops/Bjauwar1"], ["https://tec.openplanner.team/stops/H5pe131a", "https://tec.openplanner.team/stops/H5pe144a"], ["https://tec.openplanner.team/stops/Bblague1", "https://tec.openplanner.team/stops/Bblaqsj1"], ["https://tec.openplanner.team/stops/Cjudest3", "https://tec.openplanner.team/stops/Cloauln1"], ["https://tec.openplanner.team/stops/H4ch115b", "https://tec.openplanner.team/stops/H4ty321a"], ["https://tec.openplanner.team/stops/N348aca", "https://tec.openplanner.team/stops/N348acb"], ["https://tec.openplanner.team/stops/H4ty319a", "https://tec.openplanner.team/stops/H4ty381a"], ["https://tec.openplanner.team/stops/Clolidl1", "https://tec.openplanner.team/stops/Cmarroy2"], ["https://tec.openplanner.team/stops/LBvnico1", "https://tec.openplanner.team/stops/LLirout2"], ["https://tec.openplanner.team/stops/Lmidarc2", "https://tec.openplanner.team/stops/Lmitroi2"], ["https://tec.openplanner.team/stops/H4vx364a", "https://tec.openplanner.team/stops/H4vx364b"], ["https://tec.openplanner.team/stops/Cflhano2", "https://tec.openplanner.team/stops/NC12aaa"], ["https://tec.openplanner.team/stops/N536apb", "https://tec.openplanner.team/stops/N536aqa"], ["https://tec.openplanner.team/stops/Cbetrie1", "https://tec.openplanner.team/stops/Chhclde2"], ["https://tec.openplanner.team/stops/Lpevesd1", "https://tec.openplanner.team/stops/LWerola2"], ["https://tec.openplanner.team/stops/Cfcmass2", "https://tec.openplanner.team/stops/Cfcstan2"], ["https://tec.openplanner.team/stops/X982amb", "https://tec.openplanner.team/stops/X982bsa"], ["https://tec.openplanner.team/stops/X812aca", "https://tec.openplanner.team/stops/X812beb"], ["https://tec.openplanner.team/stops/Bcsebea1", "https://tec.openplanner.team/stops/Bmsgpap2"], ["https://tec.openplanner.team/stops/N584ada", "https://tec.openplanner.team/stops/N584afa"], ["https://tec.openplanner.team/stops/LXhvanh1", "https://tec.openplanner.team/stops/LXhvina1"], ["https://tec.openplanner.team/stops/X626ada", "https://tec.openplanner.team/stops/X626aga"], ["https://tec.openplanner.team/stops/H4ne136b", "https://tec.openplanner.team/stops/H4te255a"], ["https://tec.openplanner.team/stops/Brxmbos1", "https://tec.openplanner.team/stops/Brxmhai1"], ["https://tec.openplanner.team/stops/H1hw122a", "https://tec.openplanner.team/stops/H1hw124b"], ["https://tec.openplanner.team/stops/X633acb", "https://tec.openplanner.team/stops/X633adc"], ["https://tec.openplanner.team/stops/H4ft138a", "https://tec.openplanner.team/stops/H4wu377b"], ["https://tec.openplanner.team/stops/LWLhagi1", "https://tec.openplanner.team/stops/LWLhagi2"], ["https://tec.openplanner.team/stops/N135aya", "https://tec.openplanner.team/stops/N135bgb"], ["https://tec.openplanner.team/stops/Ljewale1", "https://tec.openplanner.team/stops/Ljexhav1"], ["https://tec.openplanner.team/stops/H1lm106a", "https://tec.openplanner.team/stops/H1lm107a"], ["https://tec.openplanner.team/stops/H4ty334a", "https://tec.openplanner.team/stops/H4ty345b"], ["https://tec.openplanner.team/stops/H1al146a", "https://tec.openplanner.team/stops/H1al146b"], ["https://tec.openplanner.team/stops/X982aua", "https://tec.openplanner.team/stops/X982caa"], ["https://tec.openplanner.team/stops/LVIeg--1", "https://tec.openplanner.team/stops/LVIsacr1"], ["https://tec.openplanner.team/stops/Balsnie1", "https://tec.openplanner.team/stops/Balsnie2"], ["https://tec.openplanner.team/stops/N214aib", "https://tec.openplanner.team/stops/N225aeb"], ["https://tec.openplanner.team/stops/Bbsipos1", "https://tec.openplanner.team/stops/Bhtihau2"], ["https://tec.openplanner.team/stops/Lbocomm1", "https://tec.openplanner.team/stops/LTIcime1"], ["https://tec.openplanner.team/stops/Lgrclin3", "https://tec.openplanner.team/stops/Lvccime2"], ["https://tec.openplanner.team/stops/N519akb", "https://tec.openplanner.team/stops/N525aga"], ["https://tec.openplanner.team/stops/N346ada", "https://tec.openplanner.team/stops/N346adb"], ["https://tec.openplanner.team/stops/H1do116b", "https://tec.openplanner.team/stops/H1pd141b"], ["https://tec.openplanner.team/stops/N874aeb", "https://tec.openplanner.team/stops/N874afa"], ["https://tec.openplanner.team/stops/Brsrpch2", "https://tec.openplanner.team/stops/Brsrpri1"], ["https://tec.openplanner.team/stops/X897aja", "https://tec.openplanner.team/stops/X897ajb"], ["https://tec.openplanner.team/stops/N514acb", "https://tec.openplanner.team/stops/N515ana"], ["https://tec.openplanner.team/stops/H1ms293b", "https://tec.openplanner.team/stops/H1ms924a"], ["https://tec.openplanner.team/stops/Lsnecco3", "https://tec.openplanner.team/stops/Lsnmala1"], ["https://tec.openplanner.team/stops/X663aba", "https://tec.openplanner.team/stops/X663ada"], ["https://tec.openplanner.team/stops/H1hb197a", "https://tec.openplanner.team/stops/H1si155b"], ["https://tec.openplanner.team/stops/X871aaa", "https://tec.openplanner.team/stops/X873aab"], ["https://tec.openplanner.team/stops/H4av102a", "https://tec.openplanner.team/stops/H4av105b"], ["https://tec.openplanner.team/stops/X829aab", "https://tec.openplanner.team/stops/X831ada"], ["https://tec.openplanner.team/stops/H4pl112b", "https://tec.openplanner.team/stops/H4wn127b"], ["https://tec.openplanner.team/stops/H5qu141b", "https://tec.openplanner.team/stops/H5qu142b"], ["https://tec.openplanner.team/stops/X801apa", "https://tec.openplanner.team/stops/X801apb"], ["https://tec.openplanner.team/stops/Bmrscol1", "https://tec.openplanner.team/stops/Bmrssmc1"], ["https://tec.openplanner.team/stops/X804abb", "https://tec.openplanner.team/stops/X804amb"], ["https://tec.openplanner.team/stops/LLrgare1", "https://tec.openplanner.team/stops/LTHturo2"], ["https://tec.openplanner.team/stops/LFArela2", "https://tec.openplanner.team/stops/LFAsauv2"], ["https://tec.openplanner.team/stops/H4pl116b", "https://tec.openplanner.team/stops/H4pl122a"], ["https://tec.openplanner.team/stops/Cgxalli2", "https://tec.openplanner.team/stops/Cgxbeau2"], ["https://tec.openplanner.team/stops/LMaburg3", "https://tec.openplanner.team/stops/LMazonn3"], ["https://tec.openplanner.team/stops/N540akb", "https://tec.openplanner.team/stops/N540aob"], ["https://tec.openplanner.team/stops/Bgzddge1", "https://tec.openplanner.team/stops/Bgzdpis1"], ["https://tec.openplanner.team/stops/Brsrabe1", "https://tec.openplanner.team/stops/Brsrmon3"], ["https://tec.openplanner.team/stops/Lagjard2", "https://tec.openplanner.team/stops/Lagvall2"], ["https://tec.openplanner.team/stops/H1mb129a", "https://tec.openplanner.team/stops/H1mb129b"], ["https://tec.openplanner.team/stops/X663asa", "https://tec.openplanner.team/stops/X664amd"], ["https://tec.openplanner.team/stops/N501lya", "https://tec.openplanner.team/stops/N501lyb"], ["https://tec.openplanner.team/stops/H1ch103a", "https://tec.openplanner.team/stops/H1ch105a"], ["https://tec.openplanner.team/stops/X362acb", "https://tec.openplanner.team/stops/X362adb"], ["https://tec.openplanner.team/stops/Lprmc--2", "https://tec.openplanner.team/stops/Lprperr1"], ["https://tec.openplanner.team/stops/LlgOPER1", "https://tec.openplanner.team/stops/LlgOPER3"], ["https://tec.openplanner.team/stops/LmNkess1", "https://tec.openplanner.team/stops/LmNkess2"], ["https://tec.openplanner.team/stops/Bllnlen1", "https://tec.openplanner.team/stops/Bllnrro2"], ["https://tec.openplanner.team/stops/LRCviad1", "https://tec.openplanner.team/stops/LRCviad2"], ["https://tec.openplanner.team/stops/H4te259a", "https://tec.openplanner.team/stops/H4te259b"], ["https://tec.openplanner.team/stops/X947aea", "https://tec.openplanner.team/stops/X947aeb"], ["https://tec.openplanner.team/stops/LLncime1", "https://tec.openplanner.team/stops/LLncime2"], ["https://tec.openplanner.team/stops/X917aaa", "https://tec.openplanner.team/stops/X919aeb"], ["https://tec.openplanner.team/stops/Lfllapi2", "https://tec.openplanner.team/stops/Lflsana2"], ["https://tec.openplanner.team/stops/Ljehotv1", "https://tec.openplanner.team/stops/Lsecoll1"], ["https://tec.openplanner.team/stops/X910afa", "https://tec.openplanner.team/stops/X910afb"], ["https://tec.openplanner.team/stops/Llgchar1", "https://tec.openplanner.team/stops/Llgchar2"], ["https://tec.openplanner.team/stops/H1ht122b", "https://tec.openplanner.team/stops/H1ht197b"], ["https://tec.openplanner.team/stops/N308ayb", "https://tec.openplanner.team/stops/N339aca"], ["https://tec.openplanner.team/stops/Bmrl4ch1", "https://tec.openplanner.team/stops/Bmrlegl2"], ["https://tec.openplanner.team/stops/LAWbrou1", "https://tec.openplanner.team/stops/LAWbrou2"], ["https://tec.openplanner.team/stops/LBVlamo2", "https://tec.openplanner.team/stops/LRcsilo2"], ["https://tec.openplanner.team/stops/LsVgesc1", "https://tec.openplanner.team/stops/LsVthom2"], ["https://tec.openplanner.team/stops/N211apb", "https://tec.openplanner.team/stops/N211baa"], ["https://tec.openplanner.team/stops/X850aha", "https://tec.openplanner.team/stops/X850ahb"], ["https://tec.openplanner.team/stops/H4cr111b", "https://tec.openplanner.team/stops/H4wt160b"], ["https://tec.openplanner.team/stops/N539aca", "https://tec.openplanner.team/stops/N540aha"], ["https://tec.openplanner.team/stops/X818aga", "https://tec.openplanner.team/stops/X822adb"], ["https://tec.openplanner.team/stops/N501bxa", "https://tec.openplanner.team/stops/N501mib"], ["https://tec.openplanner.team/stops/H1wa149c", "https://tec.openplanner.team/stops/H1wa152b"], ["https://tec.openplanner.team/stops/Barqbar1", "https://tec.openplanner.team/stops/Bnivmon2"], ["https://tec.openplanner.team/stops/X801chb", "https://tec.openplanner.team/stops/X801cjb"], ["https://tec.openplanner.team/stops/Ccogibr1", "https://tec.openplanner.team/stops/Ccogibr2"], ["https://tec.openplanner.team/stops/X725acb", "https://tec.openplanner.team/stops/X725ada"], ["https://tec.openplanner.team/stops/LPLecco2", "https://tec.openplanner.team/stops/LPLline1"], ["https://tec.openplanner.team/stops/H1mb138a", "https://tec.openplanner.team/stops/H1mb166a"], ["https://tec.openplanner.team/stops/Bbldvaa1", "https://tec.openplanner.team/stops/Bnetegl2"], ["https://tec.openplanner.team/stops/N241aaa", "https://tec.openplanner.team/stops/N585abb"], ["https://tec.openplanner.team/stops/N543ahb", "https://tec.openplanner.team/stops/N543ayb"], ["https://tec.openplanner.team/stops/LFHjamo2", "https://tec.openplanner.team/stops/LVeeg--2"], ["https://tec.openplanner.team/stops/LFIcabi1", "https://tec.openplanner.team/stops/LHaxhor1"], ["https://tec.openplanner.team/stops/Bspkkhe2", "https://tec.openplanner.team/stops/H1mk116b"], ["https://tec.openplanner.team/stops/Ccoacar2", "https://tec.openplanner.team/stops/Ccotemp2"], ["https://tec.openplanner.team/stops/Ccircar1", "https://tec.openplanner.team/stops/Ccivill1"], ["https://tec.openplanner.team/stops/X743adb", "https://tec.openplanner.team/stops/X756aka"], ["https://tec.openplanner.team/stops/LmNlieb1", "https://tec.openplanner.team/stops/LmNsied2"], ["https://tec.openplanner.team/stops/LrApley1", "https://tec.openplanner.team/stops/LrApley2"], ["https://tec.openplanner.team/stops/N539ala", "https://tec.openplanner.team/stops/N539alb"], ["https://tec.openplanner.team/stops/LMOchpl2", "https://tec.openplanner.team/stops/LMOf35-2"], ["https://tec.openplanner.team/stops/X659aaa", "https://tec.openplanner.team/stops/X672aja"], ["https://tec.openplanner.team/stops/LCxhall2", "https://tec.openplanner.team/stops/LCxhame2"], ["https://tec.openplanner.team/stops/Csuegli", "https://tec.openplanner.team/stops/Csygare3"], ["https://tec.openplanner.team/stops/X639ama", "https://tec.openplanner.team/stops/X639amb"], ["https://tec.openplanner.team/stops/N501axb", "https://tec.openplanner.team/stops/N501cva"], ["https://tec.openplanner.team/stops/LMXempe1", "https://tec.openplanner.team/stops/LVPduvi2"], ["https://tec.openplanner.team/stops/H4ty308c", "https://tec.openplanner.team/stops/H4ty338b"], ["https://tec.openplanner.team/stops/Ctuyser1", "https://tec.openplanner.team/stops/Ctuyser2"], ["https://tec.openplanner.team/stops/LWLeg--1", "https://tec.openplanner.team/stops/LWLeg--2"], ["https://tec.openplanner.team/stops/H4mt218a", "https://tec.openplanner.team/stops/H4mt218b"], ["https://tec.openplanner.team/stops/N577abb", "https://tec.openplanner.team/stops/N577aeb"], ["https://tec.openplanner.team/stops/Llieg--1", "https://tec.openplanner.team/stops/Llieg--2"], ["https://tec.openplanner.team/stops/LrcarsT3", "https://tec.openplanner.team/stops/Lrclant1"], ["https://tec.openplanner.team/stops/Bnivgpl2", "https://tec.openplanner.team/stops/Bnivgpl3"], ["https://tec.openplanner.team/stops/H2sb224b", "https://tec.openplanner.team/stops/H2sb232b"], ["https://tec.openplanner.team/stops/X757aea", "https://tec.openplanner.team/stops/X757ana"], ["https://tec.openplanner.team/stops/LAMceri1", "https://tec.openplanner.team/stops/LAMvert1"], ["https://tec.openplanner.team/stops/H1hv130b", "https://tec.openplanner.team/stops/H1hv132b"], ["https://tec.openplanner.team/stops/N539aaa", "https://tec.openplanner.team/stops/N539adc"], ["https://tec.openplanner.team/stops/Bbchcbl1", "https://tec.openplanner.team/stops/Bbchm381"], ["https://tec.openplanner.team/stops/X604aha", "https://tec.openplanner.team/stops/X604aia"], ["https://tec.openplanner.team/stops/Cctkais2", "https://tec.openplanner.team/stops/Ccupays1"], ["https://tec.openplanner.team/stops/Ccychco1", "https://tec.openplanner.team/stops/NH01ama"], ["https://tec.openplanner.team/stops/Lsnfont2", "https://tec.openplanner.team/stops/Lsnvand1"], ["https://tec.openplanner.team/stops/Lghwall*", "https://tec.openplanner.team/stops/Llocime1"], ["https://tec.openplanner.team/stops/H4bo115a", "https://tec.openplanner.team/stops/H4bo116b"], ["https://tec.openplanner.team/stops/Cjumade3", "https://tec.openplanner.team/stops/CMmade2"], ["https://tec.openplanner.team/stops/H1ms273a", "https://tec.openplanner.team/stops/H1ms290a"], ["https://tec.openplanner.team/stops/N351agb", "https://tec.openplanner.team/stops/N351anb"], ["https://tec.openplanner.team/stops/NL74aha", "https://tec.openplanner.team/stops/NL74aib"], ["https://tec.openplanner.team/stops/H2sb227b", "https://tec.openplanner.team/stops/H2sb238b"], ["https://tec.openplanner.team/stops/N118anc", "https://tec.openplanner.team/stops/N118aza"], ["https://tec.openplanner.team/stops/N110afa", "https://tec.openplanner.team/stops/N110aha"], ["https://tec.openplanner.team/stops/Cmmjami1", "https://tec.openplanner.team/stops/Cmygbbo2"], ["https://tec.openplanner.team/stops/X811ahb", "https://tec.openplanner.team/stops/X811aia"], ["https://tec.openplanner.team/stops/LNAbouh1", "https://tec.openplanner.team/stops/LNAbouh2"], ["https://tec.openplanner.team/stops/X224abb", "https://tec.openplanner.team/stops/X394aaa"], ["https://tec.openplanner.team/stops/LKmmelo2", "https://tec.openplanner.team/stops/LMOfrel1"], ["https://tec.openplanner.team/stops/LGe4bra2", "https://tec.openplanner.team/stops/LGesent1"], ["https://tec.openplanner.team/stops/LCPcomb2", "https://tec.openplanner.team/stops/LCPvign2"], ["https://tec.openplanner.team/stops/N543bpa", "https://tec.openplanner.team/stops/N543cnb"], ["https://tec.openplanner.team/stops/Cwfmonu1", "https://tec.openplanner.team/stops/Cwfmonu2"], ["https://tec.openplanner.team/stops/Llgamer1", "https://tec.openplanner.team/stops/Llglair1"], ["https://tec.openplanner.team/stops/N340aga", "https://tec.openplanner.team/stops/N340agb"], ["https://tec.openplanner.team/stops/H1ms252d", "https://tec.openplanner.team/stops/H1ms926a"], ["https://tec.openplanner.team/stops/H4ne137a", "https://tec.openplanner.team/stops/H4ne137b"], ["https://tec.openplanner.team/stops/Baudhde2", "https://tec.openplanner.team/stops/Baudulb1"], ["https://tec.openplanner.team/stops/H4mt216a", "https://tec.openplanner.team/stops/H4mt217a"], ["https://tec.openplanner.team/stops/Cgzchen1", "https://tec.openplanner.team/stops/Cgzchen2"], ["https://tec.openplanner.team/stops/LSWscie2", "https://tec.openplanner.team/stops/LSZsolw2"], ["https://tec.openplanner.team/stops/LFOchpl1", "https://tec.openplanner.team/stops/LHGleje2"], ["https://tec.openplanner.team/stops/LROgeuz2", "https://tec.openplanner.team/stops/LWabela2"], ["https://tec.openplanner.team/stops/H5el100a", "https://tec.openplanner.team/stops/H5rx132a"], ["https://tec.openplanner.team/stops/Lhrferr2", "https://tec.openplanner.team/stops/Lhrmilm2"], ["https://tec.openplanner.team/stops/LlSzoll2", "https://tec.openplanner.team/stops/LrOtria2"], ["https://tec.openplanner.team/stops/LaAhaup1", "https://tec.openplanner.team/stops/LaApost1"], ["https://tec.openplanner.team/stops/X811aga", "https://tec.openplanner.team/stops/X811agb"], ["https://tec.openplanner.team/stops/LOucarr1", "https://tec.openplanner.team/stops/LOumaro1"], ["https://tec.openplanner.team/stops/H1fl141a", "https://tec.openplanner.team/stops/H1fl370a"], ["https://tec.openplanner.team/stops/X952aab", "https://tec.openplanner.team/stops/X952ama"], ["https://tec.openplanner.team/stops/Lvelieg2", "https://tec.openplanner.team/stops/Lverdep1"], ["https://tec.openplanner.team/stops/H4ty273b", "https://tec.openplanner.team/stops/H4ty333b"], ["https://tec.openplanner.team/stops/N543bna", "https://tec.openplanner.team/stops/N543bob"], ["https://tec.openplanner.team/stops/Bllnfla3", "https://tec.openplanner.team/stops/Bllngal1"], ["https://tec.openplanner.team/stops/Cgyblob1", "https://tec.openplanner.team/stops/Cgylouv2"], ["https://tec.openplanner.team/stops/LSPbass1", "https://tec.openplanner.team/stops/LSPcomm1"], ["https://tec.openplanner.team/stops/X663aca", "https://tec.openplanner.team/stops/X663afb"], ["https://tec.openplanner.team/stops/N509ara", "https://tec.openplanner.team/stops/N509aub"], ["https://tec.openplanner.team/stops/X919akd", "https://tec.openplanner.team/stops/X919ala"], ["https://tec.openplanner.team/stops/Lromerl1", "https://tec.openplanner.team/stops/Lromerl2"], ["https://tec.openplanner.team/stops/Bgligra1", "https://tec.openplanner.team/stops/Btlbtbe2"], ["https://tec.openplanner.team/stops/LeYauto1", "https://tec.openplanner.team/stops/LeYmuhl2"], ["https://tec.openplanner.team/stops/N337aeb", "https://tec.openplanner.team/stops/N337agb"], ["https://tec.openplanner.team/stops/H4hu116b", "https://tec.openplanner.team/stops/H4ld125b"], ["https://tec.openplanner.team/stops/LLUreut1", "https://tec.openplanner.team/stops/LLUreut2"], ["https://tec.openplanner.team/stops/Lsnlhon2", "https://tec.openplanner.team/stops/Lsnmala4"], ["https://tec.openplanner.team/stops/N501btb", "https://tec.openplanner.team/stops/N501bwb"], ["https://tec.openplanner.team/stops/H1so135b", "https://tec.openplanner.team/stops/H1so139c"], ["https://tec.openplanner.team/stops/Lgreg--1", "https://tec.openplanner.team/stops/Lgrside1"], ["https://tec.openplanner.team/stops/H4hq129b", "https://tec.openplanner.team/stops/H4hq133a"], ["https://tec.openplanner.team/stops/X738adb", "https://tec.openplanner.team/stops/X754aja"], ["https://tec.openplanner.team/stops/X652ada", "https://tec.openplanner.team/stops/X669abd"], ["https://tec.openplanner.team/stops/X717aea", "https://tec.openplanner.team/stops/X717aeb"], ["https://tec.openplanner.team/stops/NR38acb", "https://tec.openplanner.team/stops/NR38adb"], ["https://tec.openplanner.team/stops/Bjaurgo1", "https://tec.openplanner.team/stops/NR30aab"], ["https://tec.openplanner.team/stops/Bgrmfon2", "https://tec.openplanner.team/stops/N522atb"], ["https://tec.openplanner.team/stops/N503aka", "https://tec.openplanner.team/stops/N579aab"], ["https://tec.openplanner.team/stops/N505anb", "https://tec.openplanner.team/stops/N512aeb"], ["https://tec.openplanner.team/stops/Lgrdefr1", "https://tec.openplanner.team/stops/Ljucano1"], ["https://tec.openplanner.team/stops/Lgrcrac2", "https://tec.openplanner.team/stops/Lgrstou2"], ["https://tec.openplanner.team/stops/N248aaa", "https://tec.openplanner.team/stops/N248aab"], ["https://tec.openplanner.team/stops/Btubbsc1", "https://tec.openplanner.team/stops/Btubcvi1"], ["https://tec.openplanner.team/stops/Bcbqpon1", "https://tec.openplanner.team/stops/Bcbqpon2"], ["https://tec.openplanner.team/stops/LAuvici1", "https://tec.openplanner.team/stops/LWRpl--2"], ["https://tec.openplanner.team/stops/H1at109b", "https://tec.openplanner.team/stops/H1fy119a"], ["https://tec.openplanner.team/stops/LmI82--1", "https://tec.openplanner.team/stops/LmI82--2"], ["https://tec.openplanner.team/stops/H2hl112b", "https://tec.openplanner.team/stops/H2hl113b"], ["https://tec.openplanner.team/stops/LEScarr1", "https://tec.openplanner.team/stops/LEScarr2"], ["https://tec.openplanner.team/stops/X638aaa", "https://tec.openplanner.team/stops/X638adb"], ["https://tec.openplanner.team/stops/Lghflot1", "https://tec.openplanner.team/stops/Lghflot4"], ["https://tec.openplanner.team/stops/Bjausan1", "https://tec.openplanner.team/stops/NR21aja"], ["https://tec.openplanner.team/stops/X650ada", "https://tec.openplanner.team/stops/X650aga"], ["https://tec.openplanner.team/stops/LAWkone2", "https://tec.openplanner.team/stops/Llofort1"], ["https://tec.openplanner.team/stops/LSegott1", "https://tec.openplanner.team/stops/LSerout2"], ["https://tec.openplanner.team/stops/LWAaxhe2", "https://tec.openplanner.team/stops/LWAwila1"], ["https://tec.openplanner.team/stops/LMAcime2", "https://tec.openplanner.team/stops/LMAstei1"], ["https://tec.openplanner.team/stops/Bbgevil1", "https://tec.openplanner.team/stops/Bwavwal3"], ["https://tec.openplanner.team/stops/Bchapir2", "https://tec.openplanner.team/stops/Bcrnnra1"], ["https://tec.openplanner.team/stops/Cctchav1", "https://tec.openplanner.team/stops/Cctwaut2"], ["https://tec.openplanner.team/stops/H4be102b", "https://tec.openplanner.team/stops/H4be104b"], ["https://tec.openplanner.team/stops/H4jm116a", "https://tec.openplanner.team/stops/H4jm118a"], ["https://tec.openplanner.team/stops/Lgrcour1", "https://tec.openplanner.team/stops/Llgcorn3"], ["https://tec.openplanner.team/stops/LLeec--1", "https://tec.openplanner.team/stops/X547acb"], ["https://tec.openplanner.team/stops/H4te253a", "https://tec.openplanner.team/stops/H4te261a"], ["https://tec.openplanner.team/stops/H4be106a", "https://tec.openplanner.team/stops/H4be112b"], ["https://tec.openplanner.team/stops/X804aqa", "https://tec.openplanner.team/stops/X804arb"], ["https://tec.openplanner.team/stops/Cmmcver1", "https://tec.openplanner.team/stops/Cmmpast2"], ["https://tec.openplanner.team/stops/LBgbaga3", "https://tec.openplanner.team/stops/LBglign2"], ["https://tec.openplanner.team/stops/N102abb", "https://tec.openplanner.team/stops/N151ajd"], ["https://tec.openplanner.team/stops/Blanmde1", "https://tec.openplanner.team/stops/Bwaakap1"], ["https://tec.openplanner.team/stops/Cflsabl1", "https://tec.openplanner.team/stops/Cflvxsa1"], ["https://tec.openplanner.team/stops/Bgrmver3", "https://tec.openplanner.team/stops/N522aka"], ["https://tec.openplanner.team/stops/Cbfbies1", "https://tec.openplanner.team/stops/Cctvill2"], ["https://tec.openplanner.team/stops/H1ml109a", "https://tec.openplanner.team/stops/H1ml109b"], ["https://tec.openplanner.team/stops/LPLcarr1", "https://tec.openplanner.team/stops/LPLline2"], ["https://tec.openplanner.team/stops/LESmart2", "https://tec.openplanner.team/stops/LPLec131"], ["https://tec.openplanner.team/stops/LSLhall*", "https://tec.openplanner.team/stops/LVStige2"], ["https://tec.openplanner.team/stops/Bhmmbog1", "https://tec.openplanner.team/stops/Bhmmjco1"], ["https://tec.openplanner.team/stops/N118aia", "https://tec.openplanner.team/stops/N155akb"], ["https://tec.openplanner.team/stops/LTamag2", "https://tec.openplanner.team/stops/LTaouch2"], ["https://tec.openplanner.team/stops/Lstauna2", "https://tec.openplanner.team/stops/Lstbota2"], ["https://tec.openplanner.team/stops/H4al100b", "https://tec.openplanner.team/stops/H4ch115b"], ["https://tec.openplanner.team/stops/LPurech1", "https://tec.openplanner.team/stops/LPutins1"], ["https://tec.openplanner.team/stops/X659aka", "https://tec.openplanner.team/stops/X659aua"], ["https://tec.openplanner.team/stops/Cmx3arb1", "https://tec.openplanner.team/stops/Cmyvesa3"], ["https://tec.openplanner.team/stops/X938ada", "https://tec.openplanner.team/stops/X950abb"], ["https://tec.openplanner.team/stops/X769aoa", "https://tec.openplanner.team/stops/X769apa"], ["https://tec.openplanner.team/stops/Bgembhe1", "https://tec.openplanner.team/stops/Blnzcar1"], ["https://tec.openplanner.team/stops/X358acb", "https://tec.openplanner.team/stops/X358adb"], ["https://tec.openplanner.team/stops/N110aba", "https://tec.openplanner.team/stops/N110aca"], ["https://tec.openplanner.team/stops/LwMzoll1", "https://tec.openplanner.team/stops/X764afb"], ["https://tec.openplanner.team/stops/LLAchpl1", "https://tec.openplanner.team/stops/LLAchpl2"], ["https://tec.openplanner.team/stops/LWaanto2", "https://tec.openplanner.team/stops/LWalibo1"], ["https://tec.openplanner.team/stops/Crebrux1", "https://tec.openplanner.team/stops/Creluth2"], ["https://tec.openplanner.team/stops/Bhalker1", "https://tec.openplanner.team/stops/Bhalomo2"], ["https://tec.openplanner.team/stops/Cmlipsm2", "https://tec.openplanner.team/stops/Cmlstni1"], ["https://tec.openplanner.team/stops/X670alb", "https://tec.openplanner.team/stops/X670amb"], ["https://tec.openplanner.team/stops/LJvbane1", "https://tec.openplanner.team/stops/LJvmart1"], ["https://tec.openplanner.team/stops/Bnivros2", "https://tec.openplanner.team/stops/Bnivvri1"], ["https://tec.openplanner.team/stops/Cfmgrmo1", "https://tec.openplanner.team/stops/Cfojoli2"], ["https://tec.openplanner.team/stops/H4mo172a", "https://tec.openplanner.team/stops/H4mo186a"], ["https://tec.openplanner.team/stops/X725aua", "https://tec.openplanner.team/stops/X725aub"], ["https://tec.openplanner.team/stops/H2jo161c", "https://tec.openplanner.team/stops/H2jo161d"], ["https://tec.openplanner.team/stops/Cfccol2", "https://tec.openplanner.team/stops/Cfcpier2"], ["https://tec.openplanner.team/stops/N501ahb", "https://tec.openplanner.team/stops/N501aia"], ["https://tec.openplanner.team/stops/Bnivche1", "https://tec.openplanner.team/stops/Bnivsnu2"], ["https://tec.openplanner.team/stops/LBNgarn2", "https://tec.openplanner.team/stops/LeUgutl1"], ["https://tec.openplanner.team/stops/X804ajb", "https://tec.openplanner.team/stops/X804ara"], ["https://tec.openplanner.team/stops/LkRrauw1", "https://tec.openplanner.team/stops/LrOgara3"], ["https://tec.openplanner.team/stops/LkEherg1", "https://tec.openplanner.team/stops/LkEzoll1"], ["https://tec.openplanner.team/stops/Cchbrou1", "https://tec.openplanner.team/stops/Cchfort1"], ["https://tec.openplanner.team/stops/LLegern1", "https://tec.openplanner.team/stops/X548adb"], ["https://tec.openplanner.team/stops/H1fa121a", "https://tec.openplanner.team/stops/H1vb143a"], ["https://tec.openplanner.team/stops/H1ms268b", "https://tec.openplanner.team/stops/H1ms308a"], ["https://tec.openplanner.team/stops/LeUsch%C3%B61", "https://tec.openplanner.team/stops/LeUvoul1"], ["https://tec.openplanner.team/stops/X746aka", "https://tec.openplanner.team/stops/X746akb"], ["https://tec.openplanner.team/stops/LMImc--1", "https://tec.openplanner.team/stops/LMImc--2"], ["https://tec.openplanner.team/stops/LLbpt--1", "https://tec.openplanner.team/stops/LLbpt--2"], ["https://tec.openplanner.team/stops/X937aaa", "https://tec.openplanner.team/stops/X937abb"], ["https://tec.openplanner.team/stops/H4ef162a", "https://tec.openplanner.team/stops/H4ef163b"], ["https://tec.openplanner.team/stops/LmNstaa1", "https://tec.openplanner.team/stops/LmNsv871"], ["https://tec.openplanner.team/stops/X614aob", "https://tec.openplanner.team/stops/X614apb"], ["https://tec.openplanner.team/stops/LATlena1", "https://tec.openplanner.team/stops/LATpatu1"], ["https://tec.openplanner.team/stops/Brebmtg2", "https://tec.openplanner.team/stops/Brebras1"], ["https://tec.openplanner.team/stops/H4ne132d", "https://tec.openplanner.team/stops/H4ne139b"], ["https://tec.openplanner.team/stops/H4ty342b", "https://tec.openplanner.team/stops/H4ty349a"], ["https://tec.openplanner.team/stops/LBThaut1", "https://tec.openplanner.team/stops/Lprmana4"], ["https://tec.openplanner.team/stops/N501axb", "https://tec.openplanner.team/stops/N501bba"], ["https://tec.openplanner.team/stops/N517afb", "https://tec.openplanner.team/stops/N517agb"], ["https://tec.openplanner.team/stops/Caindsa1", "https://tec.openplanner.team/stops/Caioign3"], ["https://tec.openplanner.team/stops/X663arb", "https://tec.openplanner.team/stops/X663awb"], ["https://tec.openplanner.team/stops/LHSfexh1", "https://tec.openplanner.team/stops/LHSvina1"], ["https://tec.openplanner.team/stops/H4ty272a", "https://tec.openplanner.team/stops/H4ty338b"], ["https://tec.openplanner.team/stops/LHhmohe1", "https://tec.openplanner.team/stops/NL68aeb"], ["https://tec.openplanner.team/stops/X897aaa", "https://tec.openplanner.team/stops/X898anb"], ["https://tec.openplanner.team/stops/X615acb", "https://tec.openplanner.team/stops/X615aub"], ["https://tec.openplanner.team/stops/X620ada", "https://tec.openplanner.team/stops/X620adb"], ["https://tec.openplanner.team/stops/H1bg110a", "https://tec.openplanner.team/stops/H1bg110b"], ["https://tec.openplanner.team/stops/Blasclo1", "https://tec.openplanner.team/stops/Blasclo2"], ["https://tec.openplanner.team/stops/Bcbqa362", "https://tec.openplanner.team/stops/Bcbqcha2"], ["https://tec.openplanner.team/stops/LSOladr1", "https://tec.openplanner.team/stops/LSOladr2"], ["https://tec.openplanner.team/stops/Canfief1", "https://tec.openplanner.team/stops/Canfief2"], ["https://tec.openplanner.team/stops/Lsebuil1", "https://tec.openplanner.team/stops/Lsecime1"], ["https://tec.openplanner.team/stops/Berncim4", "https://tec.openplanner.team/stops/Bernegl3"], ["https://tec.openplanner.team/stops/N141aea", "https://tec.openplanner.team/stops/N141ama"], ["https://tec.openplanner.team/stops/X762ada", "https://tec.openplanner.team/stops/X762aeb"], ["https://tec.openplanner.team/stops/Lvehomb2", "https://tec.openplanner.team/stops/Lvemahe2"], ["https://tec.openplanner.team/stops/H2hg144a", "https://tec.openplanner.team/stops/H2hg144b"], ["https://tec.openplanner.team/stops/LAbbass2", "https://tec.openplanner.team/stops/LRtrame1"], ["https://tec.openplanner.team/stops/N232bdb", "https://tec.openplanner.team/stops/N232bib"], ["https://tec.openplanner.team/stops/X949adb", "https://tec.openplanner.team/stops/X949afb"], ["https://tec.openplanner.team/stops/N170adb", "https://tec.openplanner.team/stops/N170aeb"], ["https://tec.openplanner.team/stops/H4ca124b", "https://tec.openplanner.team/stops/H4my120b"], ["https://tec.openplanner.team/stops/H1wa162a", "https://tec.openplanner.team/stops/H1wg125a"], ["https://tec.openplanner.team/stops/Clupcfe2", "https://tec.openplanner.team/stops/Cluplve3"], ["https://tec.openplanner.team/stops/Lsmdepo1", "https://tec.openplanner.team/stops/Lvecrot1"], ["https://tec.openplanner.team/stops/Bfelequ1", "https://tec.openplanner.team/stops/Bsengma2"], ["https://tec.openplanner.team/stops/Bnivfra2", "https://tec.openplanner.team/stops/Bnivphs2"], ["https://tec.openplanner.team/stops/N229aaa", "https://tec.openplanner.team/stops/N229acb"], ["https://tec.openplanner.team/stops/Beclaub1", "https://tec.openplanner.team/stops/H2ec102a"], ["https://tec.openplanner.team/stops/X615bga", "https://tec.openplanner.team/stops/X615bgb"], ["https://tec.openplanner.team/stops/Cvlcen2", "https://tec.openplanner.team/stops/NH21ada"], ["https://tec.openplanner.team/stops/Lmlpata*", "https://tec.openplanner.team/stops/Lmltrix*"], ["https://tec.openplanner.team/stops/Ljhcarr1", "https://tec.openplanner.team/stops/Ljhsart2"], ["https://tec.openplanner.team/stops/LrEdic11", "https://tec.openplanner.team/stops/LrEkirc2"], ["https://tec.openplanner.team/stops/H1si162b", "https://tec.openplanner.team/stops/H1si167a"], ["https://tec.openplanner.team/stops/H1ro131b", "https://tec.openplanner.team/stops/H1ro132b"], ["https://tec.openplanner.team/stops/X773agb", "https://tec.openplanner.team/stops/X773ahb"], ["https://tec.openplanner.team/stops/LLUadze2", "https://tec.openplanner.team/stops/LLUdeig2"], ["https://tec.openplanner.team/stops/X717aab", "https://tec.openplanner.team/stops/X717abb"], ["https://tec.openplanner.team/stops/H5el102a", "https://tec.openplanner.team/stops/H5el107a"], ["https://tec.openplanner.team/stops/Bbaucba1", "https://tec.openplanner.team/stops/Bbaulil1"], ["https://tec.openplanner.team/stops/N506aqa", "https://tec.openplanner.team/stops/N506asb"], ["https://tec.openplanner.team/stops/Llglonh2", "https://tec.openplanner.team/stops/LlgPTAV3"], ["https://tec.openplanner.team/stops/Livpost1", "https://tec.openplanner.team/stops/Livpost2"], ["https://tec.openplanner.team/stops/Bhevcur1", "https://tec.openplanner.team/stops/Bhvlpla2"], ["https://tec.openplanner.team/stops/N501aba", "https://tec.openplanner.team/stops/N501aea"], ["https://tec.openplanner.team/stops/Bbaubon1", "https://tec.openplanner.team/stops/Bbsifml2"], ["https://tec.openplanner.team/stops/N551aca", "https://tec.openplanner.team/stops/N551aec"], ["https://tec.openplanner.team/stops/LBHgile2", "https://tec.openplanner.team/stops/LBHhuyn2"], ["https://tec.openplanner.team/stops/Lvethea1", "https://tec.openplanner.team/stops/Lvevict1"], ["https://tec.openplanner.team/stops/LmFdorf1", "https://tec.openplanner.team/stops/LwEdorf1"], ["https://tec.openplanner.team/stops/Cbflong1", "https://tec.openplanner.team/stops/NC02abb"], ["https://tec.openplanner.team/stops/Cchbaza1", "https://tec.openplanner.team/stops/Cchbaza2"], ["https://tec.openplanner.team/stops/LVAflat2", "https://tec.openplanner.team/stops/LVAgemm2"], ["https://tec.openplanner.team/stops/N102aca", "https://tec.openplanner.team/stops/N103adb"], ["https://tec.openplanner.team/stops/H1by101b", "https://tec.openplanner.team/stops/H1by106b"], ["https://tec.openplanner.team/stops/LMOeg--1", "https://tec.openplanner.team/stops/LMOhero1"], ["https://tec.openplanner.team/stops/H1ro138b", "https://tec.openplanner.team/stops/H1ro141a"], ["https://tec.openplanner.team/stops/N221ada", "https://tec.openplanner.team/stops/X222afb"], ["https://tec.openplanner.team/stops/Lbrchur2", "https://tec.openplanner.team/stops/Llgmara2"], ["https://tec.openplanner.team/stops/Bwatcha2", "https://tec.openplanner.team/stops/Bwatfau1"], ["https://tec.openplanner.team/stops/Lhragri2", "https://tec.openplanner.team/stops/Lhrbrou1"], ["https://tec.openplanner.team/stops/X780ata", "https://tec.openplanner.team/stops/X780atb"], ["https://tec.openplanner.team/stops/Bnivga51", "https://tec.openplanner.team/stops/Bnivrwi2"], ["https://tec.openplanner.team/stops/LENarde1", "https://tec.openplanner.team/stops/LENmc--1"], ["https://tec.openplanner.team/stops/X638ajb", "https://tec.openplanner.team/stops/X638ala"], ["https://tec.openplanner.team/stops/LPOwaut1", "https://tec.openplanner.team/stops/LPOwaut2"], ["https://tec.openplanner.team/stops/H1ob331a", "https://tec.openplanner.team/stops/H1ob331b"], ["https://tec.openplanner.team/stops/Ltibell2", "https://tec.openplanner.team/stops/Lticoq-2"], ["https://tec.openplanner.team/stops/X982aub", "https://tec.openplanner.team/stops/X982cab"], ["https://tec.openplanner.team/stops/H4ga160a", "https://tec.openplanner.team/stops/H4ha169b"], ["https://tec.openplanner.team/stops/N301anb", "https://tec.openplanner.team/stops/N302afa"], ["https://tec.openplanner.team/stops/N506bjb", "https://tec.openplanner.team/stops/N506bka"], ["https://tec.openplanner.team/stops/H2go113b", "https://tec.openplanner.team/stops/H2go120a"], ["https://tec.openplanner.team/stops/Llghugo1", "https://tec.openplanner.team/stops/Llgpire1"], ["https://tec.openplanner.team/stops/LMechpl1", "https://tec.openplanner.team/stops/LMechpl2"], ["https://tec.openplanner.team/stops/LETfort3", "https://tec.openplanner.team/stops/LETfort4"], ["https://tec.openplanner.team/stops/Ccymabo2", "https://tec.openplanner.team/stops/Ccyrmon1"], ["https://tec.openplanner.team/stops/N260aea", "https://tec.openplanner.team/stops/N260afa"], ["https://tec.openplanner.team/stops/LhLbalt1", "https://tec.openplanner.team/stops/LmEdorf2"], ["https://tec.openplanner.team/stops/X725bba", "https://tec.openplanner.team/stops/X725bbb"], ["https://tec.openplanner.team/stops/LATcorn2", "https://tec.openplanner.team/stops/LATcorp2"], ["https://tec.openplanner.team/stops/N539ada", "https://tec.openplanner.team/stops/N539adb"], ["https://tec.openplanner.team/stops/LAChann1", "https://tec.openplanner.team/stops/NL74aea"], ["https://tec.openplanner.team/stops/H1ms259a", "https://tec.openplanner.team/stops/H1ms300a"], ["https://tec.openplanner.team/stops/H4mx119c", "https://tec.openplanner.team/stops/H4mx120a"], ["https://tec.openplanner.team/stops/Lsmjalh2", "https://tec.openplanner.team/stops/Lsmrwan2"], ["https://tec.openplanner.team/stops/Lghgoll2", "https://tec.openplanner.team/stops/Lghprea4"], ["https://tec.openplanner.team/stops/LAMpirk1", "https://tec.openplanner.team/stops/LAmshel2"], ["https://tec.openplanner.team/stops/Cfrcoop2", "https://tec.openplanner.team/stops/Cfrmon4"], ["https://tec.openplanner.team/stops/LTErest1", "https://tec.openplanner.team/stops/LVu40--2"], ["https://tec.openplanner.team/stops/N219acb", "https://tec.openplanner.team/stops/N219afb"], ["https://tec.openplanner.team/stops/H4mx116b", "https://tec.openplanner.team/stops/H4po126b"], ["https://tec.openplanner.team/stops/Bwatric2", "https://tec.openplanner.team/stops/Bwatvco2"], ["https://tec.openplanner.team/stops/N218abb", "https://tec.openplanner.team/stops/N218aeb"], ["https://tec.openplanner.team/stops/LSseg--2", "https://tec.openplanner.team/stops/LSsmond2"], ["https://tec.openplanner.team/stops/X636avb", "https://tec.openplanner.team/stops/X636bha"], ["https://tec.openplanner.team/stops/LAYathe2", "https://tec.openplanner.team/stops/LAYgare1"], ["https://tec.openplanner.team/stops/X831aaa", "https://tec.openplanner.team/stops/X831acb"], ["https://tec.openplanner.team/stops/X907ada", "https://tec.openplanner.team/stops/X907adb"], ["https://tec.openplanner.team/stops/Llgware1", "https://tec.openplanner.team/stops/Llgware2"], ["https://tec.openplanner.team/stops/X738ada", "https://tec.openplanner.team/stops/X738adb"], ["https://tec.openplanner.team/stops/Ccychap1", "https://tec.openplanner.team/stops/Ccychap2"], ["https://tec.openplanner.team/stops/Lpeatel1", "https://tec.openplanner.team/stops/Lpeptle1"], ["https://tec.openplanner.team/stops/Llofort1", "https://tec.openplanner.team/stops/Llofort2"], ["https://tec.openplanner.team/stops/H1ma237a", "https://tec.openplanner.team/stops/H1ob333b"], ["https://tec.openplanner.team/stops/Lhrdron2", "https://tec.openplanner.team/stops/Lhrsimo1"], ["https://tec.openplanner.team/stops/N425adb", "https://tec.openplanner.team/stops/N425afb"], ["https://tec.openplanner.team/stops/LLNcime1", "https://tec.openplanner.team/stops/LLNcime2"], ["https://tec.openplanner.team/stops/X922ama", "https://tec.openplanner.team/stops/X923aka"], ["https://tec.openplanner.team/stops/H4pq115a", "https://tec.openplanner.team/stops/H4pq118b"], ["https://tec.openplanner.team/stops/Brsggar1", "https://tec.openplanner.team/stops/Brsggar2"], ["https://tec.openplanner.team/stops/N573aca", "https://tec.openplanner.team/stops/N573adb"], ["https://tec.openplanner.team/stops/Bgzddge4", "https://tec.openplanner.team/stops/Bgzdpis2"], ["https://tec.openplanner.team/stops/LAWhein4", "https://tec.openplanner.team/stops/LAWroug1"], ["https://tec.openplanner.team/stops/N260acb", "https://tec.openplanner.team/stops/N270aaa"], ["https://tec.openplanner.team/stops/H1eu103a", "https://tec.openplanner.team/stops/H1sb151a"], ["https://tec.openplanner.team/stops/LaLkabi2", "https://tec.openplanner.team/stops/LmAkirc1"], ["https://tec.openplanner.team/stops/X743aaa", "https://tec.openplanner.team/stops/X743aab"], ["https://tec.openplanner.team/stops/X636aca", "https://tec.openplanner.team/stops/X636ada"], ["https://tec.openplanner.team/stops/Cmyland1", "https://tec.openplanner.team/stops/Cmyland4"], ["https://tec.openplanner.team/stops/Louairl1", "https://tec.openplanner.team/stops/Lscstan2"], ["https://tec.openplanner.team/stops/X651aaa", "https://tec.openplanner.team/stops/X651aba"], ["https://tec.openplanner.team/stops/X986aca", "https://tec.openplanner.team/stops/X986ada"], ["https://tec.openplanner.team/stops/LaMmark2", "https://tec.openplanner.team/stops/LaMpark1"], ["https://tec.openplanner.team/stops/Bbgnpla1", "https://tec.openplanner.team/stops/Bbgnton1"], ["https://tec.openplanner.team/stops/LHCcroy1", "https://tec.openplanner.team/stops/LHChoek3"], ["https://tec.openplanner.team/stops/X818aha", "https://tec.openplanner.team/stops/X818aia"], ["https://tec.openplanner.team/stops/Bwatlbr2", "https://tec.openplanner.team/stops/Bwatlbs2"], ["https://tec.openplanner.team/stops/LVIastr1", "https://tec.openplanner.team/stops/LVIhv--2"], ["https://tec.openplanner.team/stops/N338ahb", "https://tec.openplanner.team/stops/N338aib"], ["https://tec.openplanner.team/stops/LLmvand1", "https://tec.openplanner.team/stops/LLmvict1"], ["https://tec.openplanner.team/stops/Ccupdes2", "https://tec.openplanner.team/stops/Ccupdes4"], ["https://tec.openplanner.team/stops/LTNegli2", "https://tec.openplanner.team/stops/LTNsarl1"], ["https://tec.openplanner.team/stops/H4va234a", "https://tec.openplanner.team/stops/H4vd230b"], ["https://tec.openplanner.team/stops/H1au111a", "https://tec.openplanner.team/stops/H1au111b"], ["https://tec.openplanner.team/stops/H2gy101b", "https://tec.openplanner.team/stops/H2gy109a"], ["https://tec.openplanner.team/stops/LGLchap2", "https://tec.openplanner.team/stops/LGLecol2"], ["https://tec.openplanner.team/stops/N534aeb", "https://tec.openplanner.team/stops/N553aob"], ["https://tec.openplanner.team/stops/LMastat4", "https://tec.openplanner.team/stops/LTolijn*"], ["https://tec.openplanner.team/stops/LVEeg--1", "https://tec.openplanner.team/stops/LVEhali2"], ["https://tec.openplanner.team/stops/NL78ada", "https://tec.openplanner.team/stops/NL78aea"], ["https://tec.openplanner.team/stops/LSPguer1", "https://tec.openplanner.team/stops/LSPvigi2"], ["https://tec.openplanner.team/stops/N501jsa", "https://tec.openplanner.team/stops/N501kjb"], ["https://tec.openplanner.team/stops/X663atb", "https://tec.openplanner.team/stops/X663aua"], ["https://tec.openplanner.team/stops/Bwlhpec2", "https://tec.openplanner.team/stops/Bwlhpma1"], ["https://tec.openplanner.team/stops/LENengi2", "https://tec.openplanner.team/stops/LRArami2"], ["https://tec.openplanner.team/stops/X917acb", "https://tec.openplanner.team/stops/X917afb"], ["https://tec.openplanner.team/stops/Bcbqgar1", "https://tec.openplanner.team/stops/Bcbqufo1"], ["https://tec.openplanner.team/stops/Cgycorv1", "https://tec.openplanner.team/stops/Cgyobse2"], ["https://tec.openplanner.team/stops/LBzvill2", "https://tec.openplanner.team/stops/LVBmonu4"], ["https://tec.openplanner.team/stops/LVSeg--2", "https://tec.openplanner.team/stops/LVStige2"], ["https://tec.openplanner.team/stops/X512aia", "https://tec.openplanner.team/stops/X595aad"], ["https://tec.openplanner.team/stops/X907agb", "https://tec.openplanner.team/stops/X908aoa"], ["https://tec.openplanner.team/stops/N301ada", "https://tec.openplanner.team/stops/N301adb"], ["https://tec.openplanner.team/stops/LBLghuy3", "https://tec.openplanner.team/stops/LCEinst2"], ["https://tec.openplanner.team/stops/N231aha", "https://tec.openplanner.team/stops/N291abb"], ["https://tec.openplanner.team/stops/Cjucouc1", "https://tec.openplanner.team/stops/Clooues1"], ["https://tec.openplanner.team/stops/LWibare2", "https://tec.openplanner.team/stops/LWidepo2"], ["https://tec.openplanner.team/stops/X824aac", "https://tec.openplanner.team/stops/X824ajb"], ["https://tec.openplanner.team/stops/N573ahb", "https://tec.openplanner.team/stops/N573aia"], ["https://tec.openplanner.team/stops/H4bn101b", "https://tec.openplanner.team/stops/H4ws159a"], ["https://tec.openplanner.team/stops/Bnivvri1", "https://tec.openplanner.team/stops/Bnivvri2"], ["https://tec.openplanner.team/stops/X781aga", "https://tec.openplanner.team/stops/X781aha"], ["https://tec.openplanner.team/stops/X672adb", "https://tec.openplanner.team/stops/X672aob"], ["https://tec.openplanner.team/stops/H4te249a", "https://tec.openplanner.team/stops/H4te249b"], ["https://tec.openplanner.team/stops/Cmmptno1", "https://tec.openplanner.team/stops/Cmmptno2"], ["https://tec.openplanner.team/stops/Bgnvoha1", "https://tec.openplanner.team/stops/Bgnvoha4"], ["https://tec.openplanner.team/stops/Lceviei2", "https://tec.openplanner.team/stops/Lcewilm1"], ["https://tec.openplanner.team/stops/Cgomart1", "https://tec.openplanner.team/stops/Cgoobse1"], ["https://tec.openplanner.team/stops/H1cu114b", "https://tec.openplanner.team/stops/H1cu132a"], ["https://tec.openplanner.team/stops/Bquebut1", "https://tec.openplanner.team/stops/Bquebut2"], ["https://tec.openplanner.team/stops/NC14aca", "https://tec.openplanner.team/stops/NC44aba"], ["https://tec.openplanner.team/stops/H1hn203b", "https://tec.openplanner.team/stops/H1ms312a"], ["https://tec.openplanner.team/stops/H4ss153b", "https://tec.openplanner.team/stops/H4ss154b"], ["https://tec.openplanner.team/stops/H4ss153a", "https://tec.openplanner.team/stops/H4ss154a"], ["https://tec.openplanner.team/stops/X633adc", "https://tec.openplanner.team/stops/X633ala"], ["https://tec.openplanner.team/stops/LHAbont2", "https://tec.openplanner.team/stops/LHAvall2"], ["https://tec.openplanner.team/stops/LLUcdoy1", "https://tec.openplanner.team/stops/LLUdoya2"], ["https://tec.openplanner.team/stops/Cpceclu1", "https://tec.openplanner.team/stops/Cpclibe1"], ["https://tec.openplanner.team/stops/Llglimb2", "https://tec.openplanner.team/stops/Llgpire2"], ["https://tec.openplanner.team/stops/Cfaetoi2", "https://tec.openplanner.team/stops/Cpl4bra2"], ["https://tec.openplanner.team/stops/LaMgeme*", "https://tec.openplanner.team/stops/LaMpark2"], ["https://tec.openplanner.team/stops/LbTkran2", "https://tec.openplanner.team/stops/LbTmuhl1"], ["https://tec.openplanner.team/stops/X937aga", "https://tec.openplanner.team/stops/X937alb"], ["https://tec.openplanner.team/stops/X615asb", "https://tec.openplanner.team/stops/X615ata"], ["https://tec.openplanner.team/stops/LXhhaka1", "https://tec.openplanner.team/stops/LXhjupr1"], ["https://tec.openplanner.team/stops/Cfocant1", "https://tec.openplanner.team/stops/Cforpet2"], ["https://tec.openplanner.team/stops/X790ama", "https://tec.openplanner.team/stops/X793aga"], ["https://tec.openplanner.team/stops/X750azb", "https://tec.openplanner.team/stops/X750bab"], ["https://tec.openplanner.team/stops/H1wi152a", "https://tec.openplanner.team/stops/H1wi152b"], ["https://tec.openplanner.team/stops/X718aea", "https://tec.openplanner.team/stops/X718ahb"], ["https://tec.openplanner.team/stops/H2sv213a", "https://tec.openplanner.team/stops/H2sv219b"], ["https://tec.openplanner.team/stops/LLOchpl1", "https://tec.openplanner.team/stops/LLOnand1"], ["https://tec.openplanner.team/stops/H2hg147b", "https://tec.openplanner.team/stops/H2hg158b"], ["https://tec.openplanner.team/stops/Bbst4br2", "https://tec.openplanner.team/stops/Bbstpon2"], ["https://tec.openplanner.team/stops/N523aaa", "https://tec.openplanner.team/stops/N523aab"], ["https://tec.openplanner.team/stops/Ltichif1", "https://tec.openplanner.team/stops/Ltimarr1"], ["https://tec.openplanner.team/stops/Bbgnvel2", "https://tec.openplanner.team/stops/N530aea"], ["https://tec.openplanner.team/stops/LRIhous1", "https://tec.openplanner.team/stops/LVIlore1"], ["https://tec.openplanner.team/stops/Creshau1", "https://tec.openplanner.team/stops/Creshau2"], ["https://tec.openplanner.team/stops/Barcast2", "https://tec.openplanner.team/stops/Bgzdcwa1"], ["https://tec.openplanner.team/stops/X398ada", "https://tec.openplanner.team/stops/X398aea"], ["https://tec.openplanner.team/stops/LsHlenz2", "https://tec.openplanner.team/stops/LwYkreu1"], ["https://tec.openplanner.team/stops/LhEbruc2", "https://tec.openplanner.team/stops/LhEcolo2"], ["https://tec.openplanner.team/stops/LLAbure1", "https://tec.openplanner.team/stops/LLAvi652"], ["https://tec.openplanner.team/stops/X775ada", "https://tec.openplanner.team/stops/X775ama"], ["https://tec.openplanner.team/stops/LsHkreu4", "https://tec.openplanner.team/stops/LsHlenz1"], ["https://tec.openplanner.team/stops/Cgostex2", "https://tec.openplanner.team/stops/Cralimi2"], ["https://tec.openplanner.team/stops/H4ty347a", "https://tec.openplanner.team/stops/H4ty347b"], ["https://tec.openplanner.team/stops/Ccobinc1", "https://tec.openplanner.team/stops/Csoperi1"], ["https://tec.openplanner.team/stops/LbAhull2", "https://tec.openplanner.team/stops/LhLdorf1"], ["https://tec.openplanner.team/stops/LLycent*", "https://tec.openplanner.team/stops/LWLhagi2"], ["https://tec.openplanner.team/stops/LGorysa1", "https://tec.openplanner.team/stops/LNEbo472"], ["https://tec.openplanner.team/stops/Lcalaro2", "https://tec.openplanner.team/stops/Lrofont1"], ["https://tec.openplanner.team/stops/Lhrespe2", "https://tec.openplanner.team/stops/Lhrstev1"], ["https://tec.openplanner.team/stops/N217adb", "https://tec.openplanner.team/stops/N232adb"], ["https://tec.openplanner.team/stops/Lbbgare2", "https://tec.openplanner.team/stops/Lcepepi1"], ["https://tec.openplanner.team/stops/LkAkirc2", "https://tec.openplanner.team/stops/LkAmess2"], ["https://tec.openplanner.team/stops/Clddeve2", "https://tec.openplanner.team/stops/Cmoecol2"], ["https://tec.openplanner.team/stops/Ccaegli1", "https://tec.openplanner.team/stops/Ccaegli3"], ["https://tec.openplanner.team/stops/Csabrun1", "https://tec.openplanner.team/stops/Csasncb1"], ["https://tec.openplanner.team/stops/Bgerprg2", "https://tec.openplanner.team/stops/Bgrhpos2"], ["https://tec.openplanner.team/stops/Bohngai2", "https://tec.openplanner.team/stops/Bohnmon2"], ["https://tec.openplanner.team/stops/Lvepala5", "https://tec.openplanner.team/stops/Lvesomm3"], ["https://tec.openplanner.team/stops/N501fjb", "https://tec.openplanner.team/stops/N501mez"], ["https://tec.openplanner.team/stops/Bnodeco1", "https://tec.openplanner.team/stops/Bnodegl2"], ["https://tec.openplanner.team/stops/H5bl117a", "https://tec.openplanner.team/stops/H5bl117c"], ["https://tec.openplanner.team/stops/H5gr137a", "https://tec.openplanner.team/stops/H5gr137b"], ["https://tec.openplanner.team/stops/LWDcime1", "https://tec.openplanner.team/stops/LWDfuma1"], ["https://tec.openplanner.team/stops/H4ka178a", "https://tec.openplanner.team/stops/H4mt214b"], ["https://tec.openplanner.team/stops/LWepost3", "https://tec.openplanner.team/stops/LWexhav1"], ["https://tec.openplanner.team/stops/LbTcarm1", "https://tec.openplanner.team/stops/LbUmors1"], ["https://tec.openplanner.team/stops/H4ru235b", "https://tec.openplanner.team/stops/H4ru245b"], ["https://tec.openplanner.team/stops/X878aba", "https://tec.openplanner.team/stops/X878acb"], ["https://tec.openplanner.team/stops/Ctubpos3", "https://tec.openplanner.team/stops/Ctubpos4"], ["https://tec.openplanner.team/stops/LSInd--2", "https://tec.openplanner.team/stops/LSIvieu2"], ["https://tec.openplanner.team/stops/Lhrstev2", "https://tec.openplanner.team/stops/Lhrwigi2"], ["https://tec.openplanner.team/stops/LkEhaag1", "https://tec.openplanner.team/stops/LlNlont2"], ["https://tec.openplanner.team/stops/LTNeau-2", "https://tec.openplanner.team/stops/LTNegli1"], ["https://tec.openplanner.team/stops/N331aga", "https://tec.openplanner.team/stops/N331aha"], ["https://tec.openplanner.team/stops/LFRcoun2", "https://tec.openplanner.team/stops/LSTchen2"], ["https://tec.openplanner.team/stops/LBSkann1", "https://tec.openplanner.team/stops/LBSkann2"], ["https://tec.openplanner.team/stops/Cmtrbla1", "https://tec.openplanner.team/stops/Cmtyern1"], ["https://tec.openplanner.team/stops/Louwuid1", "https://tec.openplanner.team/stops/Louwuid2"], ["https://tec.openplanner.team/stops/H4bv146a", "https://tec.openplanner.team/stops/H5at111a"], ["https://tec.openplanner.team/stops/LVnetan2", "https://tec.openplanner.team/stops/LVnourt1"], ["https://tec.openplanner.team/stops/X615awa", "https://tec.openplanner.team/stops/X615bgb"], ["https://tec.openplanner.team/stops/H1nm139b", "https://tec.openplanner.team/stops/H4gr108b"], ["https://tec.openplanner.team/stops/LHHlomb2", "https://tec.openplanner.team/stops/LHHronh2"], ["https://tec.openplanner.team/stops/Bwatfia2", "https://tec.openplanner.team/stops/Bwatgar3"], ["https://tec.openplanner.team/stops/H1ms272a", "https://tec.openplanner.team/stops/H1ss352a"], ["https://tec.openplanner.team/stops/Bbchume2", "https://tec.openplanner.team/stops/Bcbqtub1"], ["https://tec.openplanner.team/stops/Cmmegli1", "https://tec.openplanner.team/stops/Cmmegli2"], ["https://tec.openplanner.team/stops/Brsg7fo1", "https://tec.openplanner.team/stops/Brsgfon1"], ["https://tec.openplanner.team/stops/H4hu117a", "https://tec.openplanner.team/stops/H4hu120b"], ["https://tec.openplanner.team/stops/Bclgapi2", "https://tec.openplanner.team/stops/Bclgpla2"], ["https://tec.openplanner.team/stops/Lbrboul2", "https://tec.openplanner.team/stops/Lbrfoid3"], ["https://tec.openplanner.team/stops/H4oe147b", "https://tec.openplanner.team/stops/H4oe152b"], ["https://tec.openplanner.team/stops/H2hg158a", "https://tec.openplanner.team/stops/H2hg158b"], ["https://tec.openplanner.team/stops/LFRsp1-1", "https://tec.openplanner.team/stops/LSPmalc1"], ["https://tec.openplanner.team/stops/Canrobe1", "https://tec.openplanner.team/stops/Canterr1"], ["https://tec.openplanner.team/stops/LHHlomb1", "https://tec.openplanner.team/stops/LSkkeri2"], ["https://tec.openplanner.team/stops/H1br123b", "https://tec.openplanner.team/stops/H1ha183a"], ["https://tec.openplanner.team/stops/Lseconc1", "https://tec.openplanner.team/stops/Lsehaut1"], ["https://tec.openplanner.team/stops/N211ara", "https://tec.openplanner.team/stops/N211arb"], ["https://tec.openplanner.team/stops/LHHpt--2", "https://tec.openplanner.team/stops/LSkkeri2"], ["https://tec.openplanner.team/stops/LLVe75-1", "https://tec.openplanner.team/stops/LLVerri1"], ["https://tec.openplanner.team/stops/LBStec-2", "https://tec.openplanner.team/stops/LHStrez1"], ["https://tec.openplanner.team/stops/X723ama", "https://tec.openplanner.team/stops/X733aab"], ["https://tec.openplanner.team/stops/N501ana", "https://tec.openplanner.team/stops/N501aqa"], ["https://tec.openplanner.team/stops/N311adb", "https://tec.openplanner.team/stops/N311aeb"], ["https://tec.openplanner.team/stops/Bhevhha2", "https://tec.openplanner.team/stops/Bleunaa2"], ["https://tec.openplanner.team/stops/Cmomalg1", "https://tec.openplanner.team/stops/Cmovies1"], ["https://tec.openplanner.team/stops/X746ada", "https://tec.openplanner.team/stops/X747ajb"], ["https://tec.openplanner.team/stops/X992aac", "https://tec.openplanner.team/stops/X992aad"], ["https://tec.openplanner.team/stops/N245abb", "https://tec.openplanner.team/stops/N248adb"], ["https://tec.openplanner.team/stops/H4fr393a", "https://tec.openplanner.team/stops/H4ka188b"], ["https://tec.openplanner.team/stops/N507aeb", "https://tec.openplanner.team/stops/N507apb"], ["https://tec.openplanner.team/stops/X342aeb", "https://tec.openplanner.team/stops/X342afa"], ["https://tec.openplanner.team/stops/Bottcli2", "https://tec.openplanner.team/stops/Bottegl4"], ["https://tec.openplanner.team/stops/X670aba", "https://tec.openplanner.team/stops/X670aca"], ["https://tec.openplanner.team/stops/LMFmoul2", "https://tec.openplanner.team/stops/Lqbecco1"], ["https://tec.openplanner.team/stops/LFyWarc1", "https://tec.openplanner.team/stops/LWargeu1"], ["https://tec.openplanner.team/stops/LRtrame1", "https://tec.openplanner.team/stops/LTechpl1"], ["https://tec.openplanner.team/stops/H4ty282a", "https://tec.openplanner.team/stops/H4ty332c"], ["https://tec.openplanner.team/stops/H4eh102a", "https://tec.openplanner.team/stops/H4wg121a"], ["https://tec.openplanner.team/stops/Cfaauln2", "https://tec.openplanner.team/stops/Cfabaty2"], ["https://tec.openplanner.team/stops/N337aea", "https://tec.openplanner.team/stops/N385ada"], ["https://tec.openplanner.team/stops/Bhoeboo1", "https://tec.openplanner.team/stops/Bhoemel2"], ["https://tec.openplanner.team/stops/Bbsifml1", "https://tec.openplanner.team/stops/Bnivlpa1"], ["https://tec.openplanner.team/stops/LPRbayb2", "https://tec.openplanner.team/stops/LTRgare4"], ["https://tec.openplanner.team/stops/Bspkdon1", "https://tec.openplanner.team/stops/H1mk109b"], ["https://tec.openplanner.team/stops/H4ka176b", "https://tec.openplanner.team/stops/H4ka181a"], ["https://tec.openplanner.team/stops/H1so135c", "https://tec.openplanner.team/stops/H1so145b"], ["https://tec.openplanner.team/stops/Bbsicas2", "https://tec.openplanner.team/stops/Bbsihau2"], ["https://tec.openplanner.team/stops/LSSeg--2", "https://tec.openplanner.team/stops/LSSfrai1"], ["https://tec.openplanner.team/stops/Llgfail1", "https://tec.openplanner.team/stops/Llghenr1"], ["https://tec.openplanner.team/stops/Cgxvvel1", "https://tec.openplanner.team/stops/Cgxvvel2"], ["https://tec.openplanner.team/stops/NH21aca", "https://tec.openplanner.team/stops/NH21ada"], ["https://tec.openplanner.team/stops/N544aeb", "https://tec.openplanner.team/stops/N549aea"], ["https://tec.openplanner.team/stops/CMgill1", "https://tec.openplanner.team/stops/CMgill2"], ["https://tec.openplanner.team/stops/Lvecote2", "https://tec.openplanner.team/stops/Lvefluc2"], ["https://tec.openplanner.team/stops/N550aka", "https://tec.openplanner.team/stops/N550akb"], ["https://tec.openplanner.team/stops/X921aca", "https://tec.openplanner.team/stops/X922ahb"], ["https://tec.openplanner.team/stops/LMOlens2", "https://tec.openplanner.team/stops/LMOpiss1"], ["https://tec.openplanner.team/stops/LJAboli1", "https://tec.openplanner.team/stops/LJAboli2"], ["https://tec.openplanner.team/stops/Bettcha1", "https://tec.openplanner.team/stops/Bettcha2"], ["https://tec.openplanner.team/stops/Ljuathe2", "https://tec.openplanner.team/stops/Ljujaur1"], ["https://tec.openplanner.team/stops/LLocruc2", "https://tec.openplanner.team/stops/LRcsilo1"], ["https://tec.openplanner.team/stops/X606aab", "https://tec.openplanner.team/stops/X647aaa"], ["https://tec.openplanner.team/stops/LREraph1", "https://tec.openplanner.team/stops/LREraph3"], ["https://tec.openplanner.team/stops/Lflmaxi4", "https://tec.openplanner.team/stops/Lflrhot2"], ["https://tec.openplanner.team/stops/X947acb", "https://tec.openplanner.team/stops/X947afb"], ["https://tec.openplanner.team/stops/NC23afb", "https://tec.openplanner.team/stops/NC23agb"], ["https://tec.openplanner.team/stops/N501kma", "https://tec.openplanner.team/stops/N501kmy"], ["https://tec.openplanner.team/stops/LCxbeau2", "https://tec.openplanner.team/stops/LCxeg--2"], ["https://tec.openplanner.team/stops/LAMhaut2", "https://tec.openplanner.team/stops/LAMwall1"], ["https://tec.openplanner.team/stops/X713afa", "https://tec.openplanner.team/stops/X713amb"], ["https://tec.openplanner.team/stops/H4jm117a", "https://tec.openplanner.team/stops/H4ry141a"], ["https://tec.openplanner.team/stops/Baeggar2", "https://tec.openplanner.team/stops/NR38aba"], ["https://tec.openplanner.team/stops/X780agb", "https://tec.openplanner.team/stops/X780atb"], ["https://tec.openplanner.team/stops/LJEchat3", "https://tec.openplanner.team/stops/LJEverd1"], ["https://tec.openplanner.team/stops/LBGroma1", "https://tec.openplanner.team/stops/LBGvill1"], ["https://tec.openplanner.team/stops/X898aca", "https://tec.openplanner.team/stops/X898adb"], ["https://tec.openplanner.team/stops/Cjufauv1", "https://tec.openplanner.team/stops/Cjuvign1"], ["https://tec.openplanner.team/stops/H1et100a", "https://tec.openplanner.team/stops/H1hh117b"], ["https://tec.openplanner.team/stops/Lvelimi2", "https://tec.openplanner.team/stops/Lvexhav1"], ["https://tec.openplanner.team/stops/LTRryta1", "https://tec.openplanner.team/stops/LTRryta2"], ["https://tec.openplanner.team/stops/N507aba", "https://tec.openplanner.team/stops/N507alb"], ["https://tec.openplanner.team/stops/H1le118b", "https://tec.openplanner.team/stops/H1le120a"], ["https://tec.openplanner.team/stops/Ccyga3", "https://tec.openplanner.team/stops/NH01acb"], ["https://tec.openplanner.team/stops/H1hr125a", "https://tec.openplanner.team/stops/H1hr125b"], ["https://tec.openplanner.team/stops/LFypfei1", "https://tec.openplanner.team/stops/LwYkreu2"], ["https://tec.openplanner.team/stops/Lfhbail2", "https://tec.openplanner.team/stops/Lfhhaso2"], ["https://tec.openplanner.team/stops/Bblajap1", "https://tec.openplanner.team/stops/Blilwit1"], ["https://tec.openplanner.team/stops/LNCloui1", "https://tec.openplanner.team/stops/LRRchea3"], ["https://tec.openplanner.team/stops/LVsbrux1", "https://tec.openplanner.team/stops/LVsbrux2"], ["https://tec.openplanner.team/stops/H4co133a", "https://tec.openplanner.team/stops/H4co146a"], ["https://tec.openplanner.team/stops/Bwatmco1", "https://tec.openplanner.team/stops/Bwatras2"], ["https://tec.openplanner.team/stops/Clrecol2", "https://tec.openplanner.team/stops/Clrhava1"], ["https://tec.openplanner.team/stops/NL74aga", "https://tec.openplanner.team/stops/NL74aia"], ["https://tec.openplanner.team/stops/Cstcent1", "https://tec.openplanner.team/stops/Cstgare2"], ["https://tec.openplanner.team/stops/H4tp145b", "https://tec.openplanner.team/stops/H4tp147b"], ["https://tec.openplanner.team/stops/N512aga", "https://tec.openplanner.team/stops/N512agd"], ["https://tec.openplanner.team/stops/Lanrask1", "https://tec.openplanner.team/stops/Lrctec-2"], ["https://tec.openplanner.team/stops/Lmlbaro2", "https://tec.openplanner.team/stops/Lmlpech1"], ["https://tec.openplanner.team/stops/N118apa", "https://tec.openplanner.team/stops/N118aqb"], ["https://tec.openplanner.team/stops/X695aea", "https://tec.openplanner.team/stops/X695aha"], ["https://tec.openplanner.team/stops/Lthgros1", "https://tec.openplanner.team/stops/Lthgros2"], ["https://tec.openplanner.team/stops/LAwec--1", "https://tec.openplanner.team/stops/LMvrabo1"], ["https://tec.openplanner.team/stops/LSZarze4", "https://tec.openplanner.team/stops/LSZsolw3"], ["https://tec.openplanner.team/stops/X750axb", "https://tec.openplanner.team/stops/X750aya"], ["https://tec.openplanner.team/stops/X901aja", "https://tec.openplanner.team/stops/X901apb"], ["https://tec.openplanner.team/stops/LvA12--3", "https://tec.openplanner.team/stops/LvA12--4"], ["https://tec.openplanner.team/stops/H1ag106a", "https://tec.openplanner.team/stops/H1qv114b"], ["https://tec.openplanner.team/stops/Ldineuf1", "https://tec.openplanner.team/stops/Ldipiss2"], ["https://tec.openplanner.team/stops/Benggar1", "https://tec.openplanner.team/stops/Bengvma2"], ["https://tec.openplanner.team/stops/LmHbien1", "https://tec.openplanner.team/stops/LmHvenn1"], ["https://tec.openplanner.team/stops/LVTeg--2", "https://tec.openplanner.team/stops/LVTforg2"], ["https://tec.openplanner.team/stops/LFocent2", "https://tec.openplanner.team/stops/LGOdelv1"], ["https://tec.openplanner.team/stops/H4ty381b", "https://tec.openplanner.team/stops/H4ty383a"], ["https://tec.openplanner.team/stops/Cjubien1", "https://tec.openplanner.team/stops/Cjuplco2"], ["https://tec.openplanner.team/stops/N558amc", "https://tec.openplanner.team/stops/N558anb"], ["https://tec.openplanner.team/stops/N149aib", "https://tec.openplanner.team/stops/N149akb"], ["https://tec.openplanner.team/stops/X644aca", "https://tec.openplanner.team/stops/X644adb"], ["https://tec.openplanner.team/stops/NL57ahb", "https://tec.openplanner.team/stops/NL57aka"], ["https://tec.openplanner.team/stops/N534amh", "https://tec.openplanner.team/stops/N543agb"], ["https://tec.openplanner.team/stops/Llglonh1", "https://tec.openplanner.team/stops/LlgOPER6"], ["https://tec.openplanner.team/stops/LXobaty1", "https://tec.openplanner.team/stops/LXofans1"], ["https://tec.openplanner.team/stops/X370adb", "https://tec.openplanner.team/stops/X850abb"], ["https://tec.openplanner.team/stops/Cdamest1", "https://tec.openplanner.team/stops/CMdamp1"], ["https://tec.openplanner.team/stops/LHUtrin1", "https://tec.openplanner.team/stops/LSecomm2"], ["https://tec.openplanner.team/stops/H4ct111a", "https://tec.openplanner.team/stops/H5bs102d"], ["https://tec.openplanner.team/stops/LBNeu711", "https://tec.openplanner.team/stops/LhEherb2"], ["https://tec.openplanner.team/stops/X979aia", "https://tec.openplanner.team/stops/X979ajb"], ["https://tec.openplanner.team/stops/X641aba", "https://tec.openplanner.team/stops/X641ala"], ["https://tec.openplanner.team/stops/H1wa147a", "https://tec.openplanner.team/stops/H1wa150a"], ["https://tec.openplanner.team/stops/Blhumpo1", "https://tec.openplanner.team/stops/Blhumpo4"], ["https://tec.openplanner.team/stops/N510aca", "https://tec.openplanner.team/stops/N510afb"], ["https://tec.openplanner.team/stops/Bgzdn251", "https://tec.openplanner.team/stops/Bgzdn252"], ["https://tec.openplanner.team/stops/X725aya", "https://tec.openplanner.team/stops/X725bba"], ["https://tec.openplanner.team/stops/Lhrlamb1", "https://tec.openplanner.team/stops/Lhrlamb2"], ["https://tec.openplanner.team/stops/Cwfcule1", "https://tec.openplanner.team/stops/Cwfzola1"], ["https://tec.openplanner.team/stops/Lfhrogn2", "https://tec.openplanner.team/stops/Ljerose3"], ["https://tec.openplanner.team/stops/N109acb", "https://tec.openplanner.team/stops/N109aia"], ["https://tec.openplanner.team/stops/Cblcent2", "https://tec.openplanner.team/stops/Cmbcime3"], ["https://tec.openplanner.team/stops/X307aab", "https://tec.openplanner.team/stops/X307abb"], ["https://tec.openplanner.team/stops/H1pa111a", "https://tec.openplanner.team/stops/H1pa120b"], ["https://tec.openplanner.team/stops/Bcsemar2", "https://tec.openplanner.team/stops/Bsmgmas1"], ["https://tec.openplanner.team/stops/LNEgaul1", "https://tec.openplanner.team/stops/LNEolne1"], ["https://tec.openplanner.team/stops/H1vb142b", "https://tec.openplanner.team/stops/H3bi108a"], ["https://tec.openplanner.team/stops/H4fr139a", "https://tec.openplanner.team/stops/H4fr145b"], ["https://tec.openplanner.team/stops/X601bla", "https://tec.openplanner.team/stops/X612abb"], ["https://tec.openplanner.team/stops/LAascie2", "https://tec.openplanner.team/stops/X261ada"], ["https://tec.openplanner.team/stops/Blinbru1", "https://tec.openplanner.team/stops/Bwaak102"], ["https://tec.openplanner.team/stops/Croplom2", "https://tec.openplanner.team/stops/Croplom5"], ["https://tec.openplanner.team/stops/N543aha", "https://tec.openplanner.team/stops/N543aya"], ["https://tec.openplanner.team/stops/Cmlrbru1", "https://tec.openplanner.team/stops/Cmlrbru2"], ["https://tec.openplanner.team/stops/LSMgare1", "https://tec.openplanner.team/stops/LSMlier2"], ["https://tec.openplanner.team/stops/LAUabat1", "https://tec.openplanner.team/stops/LAUbour3"], ["https://tec.openplanner.team/stops/H1br132a", "https://tec.openplanner.team/stops/H1br134b"], ["https://tec.openplanner.team/stops/LaAbush*", "https://tec.openplanner.team/stops/LaAelis1"], ["https://tec.openplanner.team/stops/N547aha", "https://tec.openplanner.team/stops/N548ayb"], ["https://tec.openplanner.team/stops/LOcgdro3", "https://tec.openplanner.team/stops/LOcgdro4"], ["https://tec.openplanner.team/stops/X822aka", "https://tec.openplanner.team/stops/X822akb"], ["https://tec.openplanner.team/stops/H2hl111b", "https://tec.openplanner.team/stops/H2sv220a"], ["https://tec.openplanner.team/stops/Bwatpas1", "https://tec.openplanner.team/stops/Bwatpas2"], ["https://tec.openplanner.team/stops/H2jo163a", "https://tec.openplanner.team/stops/H2jo163b"], ["https://tec.openplanner.team/stops/Lantonn2", "https://tec.openplanner.team/stops/Lrchype2"], ["https://tec.openplanner.team/stops/CMmoul2", "https://tec.openplanner.team/stops/Cmomoul3"], ["https://tec.openplanner.team/stops/H2ma210a", "https://tec.openplanner.team/stops/H2ma210b"], ["https://tec.openplanner.team/stops/LSNchen1", "https://tec.openplanner.team/stops/LSNchen3"], ["https://tec.openplanner.team/stops/Cnacent3", "https://tec.openplanner.team/stops/Cnacout2"], ["https://tec.openplanner.team/stops/H4pe124a", "https://tec.openplanner.team/stops/H4pe127b"], ["https://tec.openplanner.team/stops/X992aaa", "https://tec.openplanner.team/stops/X992aac"], ["https://tec.openplanner.team/stops/N553ala", "https://tec.openplanner.team/stops/N553ama"], ["https://tec.openplanner.team/stops/X804aoa", "https://tec.openplanner.team/stops/X818aaa"], ["https://tec.openplanner.team/stops/LeUhutt1", "https://tec.openplanner.team/stops/LeUwetz1"], ["https://tec.openplanner.team/stops/Cflsabl2", "https://tec.openplanner.team/stops/Cflvxsa2"], ["https://tec.openplanner.team/stops/N501esy", "https://tec.openplanner.team/stops/N501nez"], ["https://tec.openplanner.team/stops/X879ala", "https://tec.openplanner.team/stops/X879ama"], ["https://tec.openplanner.team/stops/Cnabult4", "https://tec.openplanner.team/stops/Cnaplbu1"], ["https://tec.openplanner.team/stops/X923anb", "https://tec.openplanner.team/stops/X923apb"], ["https://tec.openplanner.team/stops/LLrc_ip4", "https://tec.openplanner.team/stops/LLrc1651"], ["https://tec.openplanner.team/stops/N205aca", "https://tec.openplanner.team/stops/N205ada"], ["https://tec.openplanner.team/stops/X695aia", "https://tec.openplanner.team/stops/X695aja"], ["https://tec.openplanner.team/stops/Cbuegl1", "https://tec.openplanner.team/stops/Cbuegl2"], ["https://tec.openplanner.team/stops/Lstchim1", "https://tec.openplanner.team/stops/Lstchim2"], ["https://tec.openplanner.team/stops/LHGtong1", "https://tec.openplanner.team/stops/LXhjupr2"], ["https://tec.openplanner.team/stops/X663aua", "https://tec.openplanner.team/stops/X663ava"], ["https://tec.openplanner.team/stops/LJAchat1", "https://tec.openplanner.team/stops/LJAmari1"], ["https://tec.openplanner.team/stops/LElgerd2", "https://tec.openplanner.team/stops/LWZponh2"], ["https://tec.openplanner.team/stops/LWagare*", "https://tec.openplanner.team/stops/LWamass2"], ["https://tec.openplanner.team/stops/H4co146a", "https://tec.openplanner.team/stops/H4co148b"], ["https://tec.openplanner.team/stops/Cmaegal1", "https://tec.openplanner.team/stops/Cmobeau2"], ["https://tec.openplanner.team/stops/X658afa", "https://tec.openplanner.team/stops/X659aja"], ["https://tec.openplanner.team/stops/Cjudewe1", "https://tec.openplanner.team/stops/Cjuhden1"], ["https://tec.openplanner.team/stops/Bgdhpco2", "https://tec.openplanner.team/stops/Bpthrsp1"], ["https://tec.openplanner.team/stops/X979ada", "https://tec.openplanner.team/stops/X979afa"], ["https://tec.openplanner.team/stops/X651aba", "https://tec.openplanner.team/stops/X651abb"], ["https://tec.openplanner.team/stops/LMOelva3", "https://tec.openplanner.team/stops/LMOelva4"], ["https://tec.openplanner.team/stops/X802ana", "https://tec.openplanner.team/stops/X802aoa"], ["https://tec.openplanner.team/stops/Bbsifmo1", "https://tec.openplanner.team/stops/Bhtihau2"], ["https://tec.openplanner.team/stops/Ldimont2", "https://tec.openplanner.team/stops/Lvegrap2"], ["https://tec.openplanner.team/stops/X850ala", "https://tec.openplanner.team/stops/X850alb"], ["https://tec.openplanner.team/stops/LsVsimo1", "https://tec.openplanner.team/stops/LsVsimo2"], ["https://tec.openplanner.team/stops/LAascie2", "https://tec.openplanner.team/stops/X223acb"], ["https://tec.openplanner.team/stops/X613acb", "https://tec.openplanner.team/stops/X614bdb"], ["https://tec.openplanner.team/stops/X773ajb", "https://tec.openplanner.team/stops/X954agb"], ["https://tec.openplanner.team/stops/X621ada", "https://tec.openplanner.team/stops/X621adb"], ["https://tec.openplanner.team/stops/Blanmde1", "https://tec.openplanner.team/stops/Blanmde2"], ["https://tec.openplanner.team/stops/Bronrch1", "https://tec.openplanner.team/stops/Bronrch2"], ["https://tec.openplanner.team/stops/Llmdela1", "https://tec.openplanner.team/stops/Llmdela2"], ["https://tec.openplanner.team/stops/H2ma203a", "https://tec.openplanner.team/stops/H2ma210b"], ["https://tec.openplanner.team/stops/X717afb", "https://tec.openplanner.team/stops/X717agb"], ["https://tec.openplanner.team/stops/N548acc", "https://tec.openplanner.team/stops/N548amb"], ["https://tec.openplanner.team/stops/X713aeb", "https://tec.openplanner.team/stops/X713aha"], ["https://tec.openplanner.team/stops/Cpcarse2", "https://tec.openplanner.team/stops/Cpcbrig2"], ["https://tec.openplanner.team/stops/X398agb", "https://tec.openplanner.team/stops/X999ada"], ["https://tec.openplanner.team/stops/Bwavdmo1", "https://tec.openplanner.team/stops/Bwavdmo3"], ["https://tec.openplanner.team/stops/Ljemabo1", "https://tec.openplanner.team/stops/Ljewale3"], ["https://tec.openplanner.team/stops/LlgguilA", "https://tec.openplanner.team/stops/LlgguilC"], ["https://tec.openplanner.team/stops/N501bua", "https://tec.openplanner.team/stops/N501bub"], ["https://tec.openplanner.team/stops/LPLhest1", "https://tec.openplanner.team/stops/LPLhest2"], ["https://tec.openplanner.team/stops/Bperalv2", "https://tec.openplanner.team/stops/Bperrma2"], ["https://tec.openplanner.team/stops/Cchdigu2", "https://tec.openplanner.team/stops/Cchdigu4"], ["https://tec.openplanner.team/stops/Lbogonh3", "https://tec.openplanner.team/stops/Lbogonh4"], ["https://tec.openplanner.team/stops/Ljeegli3", "https://tec.openplanner.team/stops/Ljestat2"], ["https://tec.openplanner.team/stops/X903ada", "https://tec.openplanner.team/stops/X903aeb"], ["https://tec.openplanner.team/stops/H4os221a", "https://tec.openplanner.team/stops/H4os221b"], ["https://tec.openplanner.team/stops/LLscent2", "https://tec.openplanner.team/stops/LRfcent1"], ["https://tec.openplanner.team/stops/H4mx120a", "https://tec.openplanner.team/stops/H4mx120b"], ["https://tec.openplanner.team/stops/H4ty297a", "https://tec.openplanner.team/stops/H4ty342a"], ["https://tec.openplanner.team/stops/N501bya", "https://tec.openplanner.team/stops/N501chb"], ["https://tec.openplanner.team/stops/H2gy107b", "https://tec.openplanner.team/stops/H2tz117a"], ["https://tec.openplanner.team/stops/NC11arb", "https://tec.openplanner.team/stops/NC44aca"], ["https://tec.openplanner.team/stops/H4hx112b", "https://tec.openplanner.team/stops/H4wa149a"], ["https://tec.openplanner.team/stops/X754aqa", "https://tec.openplanner.team/stops/X754atb"], ["https://tec.openplanner.team/stops/X897afa", "https://tec.openplanner.team/stops/X897afb"], ["https://tec.openplanner.team/stops/Lprpous1", "https://tec.openplanner.team/stops/Lprpous2"], ["https://tec.openplanner.team/stops/H1mk107b", "https://tec.openplanner.team/stops/H1mk123b"], ["https://tec.openplanner.team/stops/X639adb", "https://tec.openplanner.team/stops/X639aea"], ["https://tec.openplanner.team/stops/LORcomb1", "https://tec.openplanner.team/stops/LORmont2"], ["https://tec.openplanner.team/stops/Lhrherm1", "https://tec.openplanner.team/stops/Lmirca-1"], ["https://tec.openplanner.team/stops/Lbbbuse1", "https://tec.openplanner.team/stops/Lbbviad1"], ["https://tec.openplanner.team/stops/H4ma399b", "https://tec.openplanner.team/stops/H4ma419a"], ["https://tec.openplanner.team/stops/X739alb", "https://tec.openplanner.team/stops/X771aba"], ["https://tec.openplanner.team/stops/LBNruns1", "https://tec.openplanner.team/stops/LBNvill6"], ["https://tec.openplanner.team/stops/Bneecha2", "https://tec.openplanner.team/stops/Bneersa2"], ["https://tec.openplanner.team/stops/H1wa143a", "https://tec.openplanner.team/stops/H1wa143b"], ["https://tec.openplanner.team/stops/X734afa", "https://tec.openplanner.team/stops/X734afb"], ["https://tec.openplanner.team/stops/Btieast1", "https://tec.openplanner.team/stops/Btiegar1"], ["https://tec.openplanner.team/stops/N528atb", "https://tec.openplanner.team/stops/N538adb"], ["https://tec.openplanner.team/stops/Cjuchli1", "https://tec.openplanner.team/stops/Cjugend4"], ["https://tec.openplanner.team/stops/X714aaa", "https://tec.openplanner.team/stops/X714aab"], ["https://tec.openplanner.team/stops/Lrecite2", "https://tec.openplanner.team/stops/Lreclou2"], ["https://tec.openplanner.team/stops/X615aja", "https://tec.openplanner.team/stops/X615brb"], ["https://tec.openplanner.team/stops/Lcehipp2", "https://tec.openplanner.team/stops/Lcemalv1"], ["https://tec.openplanner.team/stops/Cchplan1", "https://tec.openplanner.team/stops/Cdalpla2"], ["https://tec.openplanner.team/stops/LBdmarr2", "https://tec.openplanner.team/stops/LLrc1991"], ["https://tec.openplanner.team/stops/LBveg--1", "https://tec.openplanner.team/stops/LBvviem3"], ["https://tec.openplanner.team/stops/X759aaa", "https://tec.openplanner.team/stops/X837akb"], ["https://tec.openplanner.team/stops/Bolgegl2", "https://tec.openplanner.team/stops/Bolgsha1"], ["https://tec.openplanner.team/stops/H5bs103b", "https://tec.openplanner.team/stops/H5pe128b"], ["https://tec.openplanner.team/stops/LCxcham1", "https://tec.openplanner.team/stops/LCxcour2"], ["https://tec.openplanner.team/stops/LLM4rou2", "https://tec.openplanner.team/stops/LLMeg--2"], ["https://tec.openplanner.team/stops/N509bda", "https://tec.openplanner.team/stops/N509bfa"], ["https://tec.openplanner.team/stops/LBY4che1", "https://tec.openplanner.team/stops/LHEelva2"], ["https://tec.openplanner.team/stops/Bgnvcom1", "https://tec.openplanner.team/stops/Bgnvpos2"], ["https://tec.openplanner.team/stops/H1gh144b", "https://tec.openplanner.team/stops/H1je217a"], ["https://tec.openplanner.team/stops/X808alb", "https://tec.openplanner.team/stops/X808ama"], ["https://tec.openplanner.team/stops/LCFchir2", "https://tec.openplanner.team/stops/LCFeg--1"], ["https://tec.openplanner.team/stops/H4vx361b", "https://tec.openplanner.team/stops/H4vx362b"], ["https://tec.openplanner.team/stops/N232caa", "https://tec.openplanner.team/stops/N232cab"], ["https://tec.openplanner.team/stops/Btstche1", "https://tec.openplanner.team/stops/N524ala"], ["https://tec.openplanner.team/stops/X623afb", "https://tec.openplanner.team/stops/X623aga"], ["https://tec.openplanner.team/stops/Bcrnnpl1", "https://tec.openplanner.team/stops/Bcrnnra2"], ["https://tec.openplanner.team/stops/LmCkirc1", "https://tec.openplanner.team/stops/LmCkirc2"], ["https://tec.openplanner.team/stops/X780aaa", "https://tec.openplanner.team/stops/X780aab"], ["https://tec.openplanner.team/stops/Bhancre1", "https://tec.openplanner.team/stops/Bhancre2"], ["https://tec.openplanner.team/stops/LBDfran1", "https://tec.openplanner.team/stops/LFFmarc2"], ["https://tec.openplanner.team/stops/N245aaa", "https://tec.openplanner.team/stops/N245abb"], ["https://tec.openplanner.team/stops/X767aga", "https://tec.openplanner.team/stops/X767aja"], ["https://tec.openplanner.team/stops/N538aib", "https://tec.openplanner.team/stops/N538ala"], ["https://tec.openplanner.team/stops/X607aba", "https://tec.openplanner.team/stops/X647aab"], ["https://tec.openplanner.team/stops/LVEcroi1", "https://tec.openplanner.team/stops/LVEh16-1"], ["https://tec.openplanner.team/stops/X872ada", "https://tec.openplanner.team/stops/X872adb"], ["https://tec.openplanner.team/stops/H4ru238a", "https://tec.openplanner.team/stops/H4ru238b"], ["https://tec.openplanner.team/stops/LLYcalv1", "https://tec.openplanner.team/stops/LLYhoch2"], ["https://tec.openplanner.team/stops/LeLcrem2", "https://tec.openplanner.team/stops/LSoprom2"], ["https://tec.openplanner.team/stops/Cpcplac3", "https://tec.openplanner.team/stops/Cpcplac4"], ["https://tec.openplanner.team/stops/Ccocoup2", "https://tec.openplanner.team/stops/Ccorian1"], ["https://tec.openplanner.team/stops/H5ar100a", "https://tec.openplanner.team/stops/H5ar107a"], ["https://tec.openplanner.team/stops/X826aaa", "https://tec.openplanner.team/stops/X826aha"], ["https://tec.openplanner.team/stops/Lmihale2", "https://tec.openplanner.team/stops/Lmimili1"], ["https://tec.openplanner.team/stops/Llggram2", "https://tec.openplanner.team/stops/Llggram3"], ["https://tec.openplanner.team/stops/Ccutill2", "https://tec.openplanner.team/stops/Ccutill3"], ["https://tec.openplanner.team/stops/X666aib", "https://tec.openplanner.team/stops/X666aka"], ["https://tec.openplanner.team/stops/Cjuvpla2", "https://tec.openplanner.team/stops/Cmacoll1"], ["https://tec.openplanner.team/stops/H2se107a", "https://tec.openplanner.team/stops/H2se109a"], ["https://tec.openplanner.team/stops/Cjubert2", "https://tec.openplanner.team/stops/CMbert1"], ["https://tec.openplanner.team/stops/X733ahb", "https://tec.openplanner.team/stops/X734aka"], ["https://tec.openplanner.team/stops/X618afa", "https://tec.openplanner.team/stops/X618aha"], ["https://tec.openplanner.team/stops/Llgcadr4", "https://tec.openplanner.team/stops/LlgOPER2"], ["https://tec.openplanner.team/stops/X919aja", "https://tec.openplanner.team/stops/X919akd"], ["https://tec.openplanner.team/stops/X595aeb", "https://tec.openplanner.team/stops/X713aaa"], ["https://tec.openplanner.team/stops/LSeaque2", "https://tec.openplanner.team/stops/LSeec--1"], ["https://tec.openplanner.team/stops/H5pe129a", "https://tec.openplanner.team/stops/H5pe144a"], ["https://tec.openplanner.team/stops/X607aib", "https://tec.openplanner.team/stops/X607ajb"], ["https://tec.openplanner.team/stops/Cnalava2", "https://tec.openplanner.team/stops/Cnalava4"], ["https://tec.openplanner.team/stops/X394aeb", "https://tec.openplanner.team/stops/X394afb"], ["https://tec.openplanner.team/stops/H4pl132a", "https://tec.openplanner.team/stops/H4pl135b"], ["https://tec.openplanner.team/stops/H4do101a", "https://tec.openplanner.team/stops/H4do203a"], ["https://tec.openplanner.team/stops/X809abb", "https://tec.openplanner.team/stops/X809ada"], ["https://tec.openplanner.team/stops/N554aha", "https://tec.openplanner.team/stops/N554ahb"], ["https://tec.openplanner.team/stops/N506ata", "https://tec.openplanner.team/stops/N506atb"], ["https://tec.openplanner.team/stops/LJesole2", "https://tec.openplanner.team/stops/LNvrout2"], ["https://tec.openplanner.team/stops/Llgbaya4", "https://tec.openplanner.team/stops/Llgfoy-1"], ["https://tec.openplanner.team/stops/Llojeme1", "https://tec.openplanner.team/stops/Llojeme2"], ["https://tec.openplanner.team/stops/N134aac", "https://tec.openplanner.team/stops/N135azb"], ["https://tec.openplanner.team/stops/LBRmout3", "https://tec.openplanner.team/stops/LBRmout4"], ["https://tec.openplanner.team/stops/Bcrncor1", "https://tec.openplanner.team/stops/Bcrncor2"], ["https://tec.openplanner.team/stops/NR21abc", "https://tec.openplanner.team/stops/NR21aga"], ["https://tec.openplanner.team/stops/LLiforg1", "https://tec.openplanner.team/stops/LLirout2"], ["https://tec.openplanner.team/stops/LrUbrac3", "https://tec.openplanner.team/stops/LrUkult2"], ["https://tec.openplanner.team/stops/Bbiefon2", "https://tec.openplanner.team/stops/Bbiesbi2"], ["https://tec.openplanner.team/stops/H4cl112a", "https://tec.openplanner.team/stops/H4cl114a"], ["https://tec.openplanner.team/stops/X801ama", "https://tec.openplanner.team/stops/X899ajb"], ["https://tec.openplanner.team/stops/LCPbatt2", "https://tec.openplanner.team/stops/LMtcent2"], ["https://tec.openplanner.team/stops/H2mg151a", "https://tec.openplanner.team/stops/H2mg152a"], ["https://tec.openplanner.team/stops/N513ada", "https://tec.openplanner.team/stops/N513adb"], ["https://tec.openplanner.team/stops/Llgblon2", "https://tec.openplanner.team/stops/Llgvero3"], ["https://tec.openplanner.team/stops/LFabraa1", "https://tec.openplanner.team/stops/LFalieg1"], ["https://tec.openplanner.team/stops/Clshafa1", "https://tec.openplanner.team/stops/H1ls110b"], ["https://tec.openplanner.team/stops/X789aca", "https://tec.openplanner.team/stops/X789aib"], ["https://tec.openplanner.team/stops/N514aga", "https://tec.openplanner.team/stops/N514ahb"], ["https://tec.openplanner.team/stops/H1gh149b", "https://tec.openplanner.team/stops/H1ms932a"], ["https://tec.openplanner.team/stops/X606aaa", "https://tec.openplanner.team/stops/X606aab"], ["https://tec.openplanner.team/stops/Boplcsj1", "https://tec.openplanner.team/stops/Boplcsj2"], ["https://tec.openplanner.team/stops/X620aaa", "https://tec.openplanner.team/stops/X620aba"], ["https://tec.openplanner.team/stops/X548aab", "https://tec.openplanner.team/stops/X548afa"], ["https://tec.openplanner.team/stops/LVEdTEC2", "https://tec.openplanner.team/stops/LVEphar1"], ["https://tec.openplanner.team/stops/NL76afa", "https://tec.openplanner.team/stops/NL76afb"], ["https://tec.openplanner.team/stops/X602aba", "https://tec.openplanner.team/stops/X633acb"], ["https://tec.openplanner.team/stops/H4bf106b", "https://tec.openplanner.team/stops/H4bn173a"], ["https://tec.openplanner.team/stops/H2fa100a", "https://tec.openplanner.team/stops/H2fa107b"], ["https://tec.openplanner.team/stops/Lsefore1", "https://tec.openplanner.team/stops/Lsestap2"], ["https://tec.openplanner.team/stops/LBEhaye2", "https://tec.openplanner.team/stops/LLNcime1"], ["https://tec.openplanner.team/stops/N542aeb", "https://tec.openplanner.team/stops/N542afa"], ["https://tec.openplanner.team/stops/LhIfrie1", "https://tec.openplanner.team/stops/LwTzent1"], ["https://tec.openplanner.team/stops/X670aab", "https://tec.openplanner.team/stops/X670abb"], ["https://tec.openplanner.team/stops/Bnodcab2", "https://tec.openplanner.team/stops/Bnodegl2"], ["https://tec.openplanner.team/stops/X738aba", "https://tec.openplanner.team/stops/X738acb"], ["https://tec.openplanner.team/stops/Ccybouc1", "https://tec.openplanner.team/stops/Ccybouc4"], ["https://tec.openplanner.team/stops/LbUmalm1", "https://tec.openplanner.team/stops/LbUvith2"], ["https://tec.openplanner.team/stops/N528abb", "https://tec.openplanner.team/stops/N528ajb"], ["https://tec.openplanner.team/stops/N155aec", "https://tec.openplanner.team/stops/N155aga"], ["https://tec.openplanner.team/stops/N501gfb", "https://tec.openplanner.team/stops/N501jaa"], ["https://tec.openplanner.team/stops/Cbecarr1", "https://tec.openplanner.team/stops/Cbetrie1"], ["https://tec.openplanner.team/stops/LLecolo1", "https://tec.openplanner.team/stops/LLelans1"], ["https://tec.openplanner.team/stops/LHEcruc1", "https://tec.openplanner.team/stops/LHEepur1"], ["https://tec.openplanner.team/stops/X999adb", "https://tec.openplanner.team/stops/X999aub"], ["https://tec.openplanner.team/stops/N510abb", "https://tec.openplanner.team/stops/N521avb"], ["https://tec.openplanner.team/stops/X657aeb", "https://tec.openplanner.team/stops/X742aba"], ["https://tec.openplanner.team/stops/Cobcent2", "https://tec.openplanner.team/stops/Cpcplac2"], ["https://tec.openplanner.team/stops/N232aib", "https://tec.openplanner.team/stops/N232aob"], ["https://tec.openplanner.team/stops/LTRfend1", "https://tec.openplanner.team/stops/LTRfica1"], ["https://tec.openplanner.team/stops/H1lb152a", "https://tec.openplanner.team/stops/H1lb152b"], ["https://tec.openplanner.team/stops/X804bzb", "https://tec.openplanner.team/stops/X805abb"], ["https://tec.openplanner.team/stops/H1ha199b", "https://tec.openplanner.team/stops/H1ha200a"], ["https://tec.openplanner.team/stops/H5rx113a", "https://tec.openplanner.team/stops/H5rx113b"], ["https://tec.openplanner.team/stops/H1bb118a", "https://tec.openplanner.team/stops/H1hi124b"], ["https://tec.openplanner.team/stops/X661bba", "https://tec.openplanner.team/stops/X661bbb"], ["https://tec.openplanner.team/stops/LSLdall1", "https://tec.openplanner.team/stops/LSLdall2"], ["https://tec.openplanner.team/stops/LATgill1", "https://tec.openplanner.team/stops/LHUfali4"], ["https://tec.openplanner.team/stops/LStroch2", "https://tec.openplanner.team/stops/NL80aaa"], ["https://tec.openplanner.team/stops/Cvpcime2", "https://tec.openplanner.team/stops/Cvpsawe2"], ["https://tec.openplanner.team/stops/Lghgoll1", "https://tec.openplanner.team/stops/Lghneuv2"], ["https://tec.openplanner.team/stops/X715agb", "https://tec.openplanner.team/stops/X731aja"], ["https://tec.openplanner.team/stops/H1by107a", "https://tec.openplanner.team/stops/H1by109a"], ["https://tec.openplanner.team/stops/Lfhgare1", "https://tec.openplanner.team/stops/Lfhgare2"], ["https://tec.openplanner.team/stops/LkEl1211", "https://tec.openplanner.team/stops/LlNbusc1"], ["https://tec.openplanner.team/stops/X888adb", "https://tec.openplanner.team/stops/X888aea"], ["https://tec.openplanner.team/stops/X547ahb", "https://tec.openplanner.team/stops/X547aqb"], ["https://tec.openplanner.team/stops/Clddeve2", "https://tec.openplanner.team/stops/Cmychpl2"], ["https://tec.openplanner.team/stops/H4oq224a", "https://tec.openplanner.team/stops/H4ty327a"], ["https://tec.openplanner.team/stops/Lbrmour1", "https://tec.openplanner.team/stops/Llgrull1"], ["https://tec.openplanner.team/stops/Cmonsnc1", "https://tec.openplanner.team/stops/H1ms360a"], ["https://tec.openplanner.team/stops/H2lh129b", "https://tec.openplanner.team/stops/H2mo146a"], ["https://tec.openplanner.team/stops/Cfometr2", "https://tec.openplanner.team/stops/Clrpast2"], ["https://tec.openplanner.team/stops/LmNbirt1", "https://tec.openplanner.team/stops/LmNsv871"], ["https://tec.openplanner.team/stops/Cmlaili2", "https://tec.openplanner.team/stops/Cmlhauc2"], ["https://tec.openplanner.team/stops/X663aac", "https://tec.openplanner.team/stops/X663aba"], ["https://tec.openplanner.team/stops/H1do129a", "https://tec.openplanner.team/stops/H1do129b"], ["https://tec.openplanner.team/stops/X983aba", "https://tec.openplanner.team/stops/X983abb"], ["https://tec.openplanner.team/stops/Bwavrij1", "https://tec.openplanner.team/stops/Bwavrij2"], ["https://tec.openplanner.team/stops/X820adb", "https://tec.openplanner.team/stops/X820agc"], ["https://tec.openplanner.team/stops/Bcbqtub1", "https://tec.openplanner.team/stops/Bitrbvo2"], ["https://tec.openplanner.team/stops/X612aea", "https://tec.openplanner.team/stops/X613adb"], ["https://tec.openplanner.team/stops/X743abb", "https://tec.openplanner.team/stops/X743acb"], ["https://tec.openplanner.team/stops/Cmypela1", "https://tec.openplanner.team/stops/Cmyvesa1"], ["https://tec.openplanner.team/stops/LHdkenn3", "https://tec.openplanner.team/stops/LVnflox1"], ["https://tec.openplanner.team/stops/Cflvxca1", "https://tec.openplanner.team/stops/Cwgcroi2"], ["https://tec.openplanner.team/stops/LWechea1", "https://tec.openplanner.team/stops/LWechea2"], ["https://tec.openplanner.team/stops/Cdamarc1", "https://tec.openplanner.team/stops/Cdamarc2"], ["https://tec.openplanner.team/stops/Bwlhcsr1", "https://tec.openplanner.team/stops/Bwspm372"], ["https://tec.openplanner.team/stops/Bchacen2", "https://tec.openplanner.team/stops/Bchamco2"], ["https://tec.openplanner.team/stops/X925aob", "https://tec.openplanner.team/stops/X949ahb"], ["https://tec.openplanner.team/stops/X982bcb", "https://tec.openplanner.team/stops/X982cbb"], ["https://tec.openplanner.team/stops/LAascie2", "https://tec.openplanner.team/stops/LOCeg--2"], ["https://tec.openplanner.team/stops/X760aab", "https://tec.openplanner.team/stops/X786ajb"], ["https://tec.openplanner.team/stops/X607aeb", "https://tec.openplanner.team/stops/X607aib"], ["https://tec.openplanner.team/stops/H1og133a", "https://tec.openplanner.team/stops/H4os222b"], ["https://tec.openplanner.team/stops/X904afa", "https://tec.openplanner.team/stops/X904afb"], ["https://tec.openplanner.team/stops/LrEkais3", "https://tec.openplanner.team/stops/LrEkais4"], ["https://tec.openplanner.team/stops/X597amb", "https://tec.openplanner.team/stops/X597aqa"], ["https://tec.openplanner.team/stops/X879arb", "https://tec.openplanner.team/stops/X880ahb"], ["https://tec.openplanner.team/stops/Bbldass1", "https://tec.openplanner.team/stops/Bbldmun1"], ["https://tec.openplanner.team/stops/H1lb154a", "https://tec.openplanner.team/stops/H1pa111b"], ["https://tec.openplanner.team/stops/Lmnmart1", "https://tec.openplanner.team/stops/Lmnsech1"], ["https://tec.openplanner.team/stops/LSZarze4", "https://tec.openplanner.team/stops/LWycarr2"], ["https://tec.openplanner.team/stops/Cvssncv1", "https://tec.openplanner.team/stops/N530aab"], ["https://tec.openplanner.team/stops/LTrgibe2", "https://tec.openplanner.team/stops/LTrmort1"], ["https://tec.openplanner.team/stops/Lgdec--1", "https://tec.openplanner.team/stops/Lgdegli1"], ["https://tec.openplanner.team/stops/H4to136b", "https://tec.openplanner.team/stops/H4to139d"], ["https://tec.openplanner.team/stops/X750ana", "https://tec.openplanner.team/stops/X750boa"], ["https://tec.openplanner.team/stops/Bwatfau1", "https://tec.openplanner.team/stops/Bwatlbr2"], ["https://tec.openplanner.team/stops/X908ala", "https://tec.openplanner.team/stops/X911aaa"], ["https://tec.openplanner.team/stops/H1sy147a", "https://tec.openplanner.team/stops/H1sy147b"], ["https://tec.openplanner.team/stops/Ladgron1", "https://tec.openplanner.team/stops/Ladgron2"], ["https://tec.openplanner.team/stops/Brixpje1", "https://tec.openplanner.team/stops/Brixpje2"], ["https://tec.openplanner.team/stops/X902ava", "https://tec.openplanner.team/stops/X902bab"], ["https://tec.openplanner.team/stops/LTRespe1", "https://tec.openplanner.team/stops/LTRpeec2"], ["https://tec.openplanner.team/stops/H4ne133b", "https://tec.openplanner.team/stops/H4ne148a"], ["https://tec.openplanner.team/stops/N563aob", "https://tec.openplanner.team/stops/N570acb"], ["https://tec.openplanner.team/stops/LCeterm2", "https://tec.openplanner.team/stops/LGAholl2"], ["https://tec.openplanner.team/stops/X796aba", "https://tec.openplanner.team/stops/X796acb"], ["https://tec.openplanner.team/stops/X641aya", "https://tec.openplanner.team/stops/X673aab"], ["https://tec.openplanner.team/stops/Bsgimca1", "https://tec.openplanner.team/stops/Buccdst2"], ["https://tec.openplanner.team/stops/Blontry1", "https://tec.openplanner.team/stops/Bptblma2"], ["https://tec.openplanner.team/stops/Bwatms09", "https://tec.openplanner.team/stops/Bwatsan2"], ["https://tec.openplanner.team/stops/Cmlchan1", "https://tec.openplanner.team/stops/Cmlpomm2"], ["https://tec.openplanner.team/stops/H1wz169b", "https://tec.openplanner.team/stops/H2pe162b"], ["https://tec.openplanner.team/stops/Bjancha2", "https://tec.openplanner.team/stops/Bolphgr1"], ["https://tec.openplanner.team/stops/LmTreic2", "https://tec.openplanner.team/stops/LrTpost1"], ["https://tec.openplanner.team/stops/H1pa112b", "https://tec.openplanner.team/stops/H1sb149b"], ["https://tec.openplanner.team/stops/N254ada", "https://tec.openplanner.team/stops/N254aeb"], ["https://tec.openplanner.team/stops/Cchdelf1", "https://tec.openplanner.team/stops/Cchfaub2"], ["https://tec.openplanner.team/stops/H4be105a", "https://tec.openplanner.team/stops/H4be107a"], ["https://tec.openplanner.team/stops/LOthiro2", "https://tec.openplanner.team/stops/LOtthie1"], ["https://tec.openplanner.team/stops/LbAhenk2", "https://tec.openplanner.team/stops/LbAhull2"], ["https://tec.openplanner.team/stops/H4mn100a", "https://tec.openplanner.team/stops/H4rk101a"], ["https://tec.openplanner.team/stops/N115abb", "https://tec.openplanner.team/stops/N115aeb"], ["https://tec.openplanner.team/stops/N101acb", "https://tec.openplanner.team/stops/N101adc"], ["https://tec.openplanner.team/stops/H1wa136b", "https://tec.openplanner.team/stops/H1wa164a"], ["https://tec.openplanner.team/stops/Lrccime3", "https://tec.openplanner.team/stops/Lvoec--1"], ["https://tec.openplanner.team/stops/H1ca106a", "https://tec.openplanner.team/stops/H1th183a"], ["https://tec.openplanner.team/stops/Btslhau2", "https://tec.openplanner.team/stops/Btsllsc1"], ["https://tec.openplanner.team/stops/N323acb", "https://tec.openplanner.team/stops/N387aab"], ["https://tec.openplanner.team/stops/Lgrcoll1", "https://tec.openplanner.team/stops/Lgrcour1"], ["https://tec.openplanner.team/stops/Blemsta2", "https://tec.openplanner.team/stops/Blemwro1"], ["https://tec.openplanner.team/stops/LESgare*", "https://tec.openplanner.team/stops/LESlieg1"], ["https://tec.openplanner.team/stops/LBIairp2", "https://tec.openplanner.team/stops/Lghmaha3"], ["https://tec.openplanner.team/stops/NL74aba", "https://tec.openplanner.team/stops/NL74adb"], ["https://tec.openplanner.team/stops/NH01aaa", "https://tec.openplanner.team/stops/NH01anb"], ["https://tec.openplanner.team/stops/H5ar102a", "https://tec.openplanner.team/stops/H5ar103a"], ["https://tec.openplanner.team/stops/N214aeb", "https://tec.openplanner.team/stops/N214afa"], ["https://tec.openplanner.team/stops/NR38aea", "https://tec.openplanner.team/stops/NR38aeb"], ["https://tec.openplanner.team/stops/LhOfrie2", "https://tec.openplanner.team/stops/LhOzent2"], ["https://tec.openplanner.team/stops/Lbbviad3", "https://tec.openplanner.team/stops/Lgrwill1"], ["https://tec.openplanner.team/stops/Btilhti2", "https://tec.openplanner.team/stops/Btilmon2"], ["https://tec.openplanner.team/stops/X940aba", "https://tec.openplanner.team/stops/X948atb"], ["https://tec.openplanner.team/stops/N520aba", "https://tec.openplanner.team/stops/N520aea"], ["https://tec.openplanner.team/stops/N507ada", "https://tec.openplanner.team/stops/N507adb"], ["https://tec.openplanner.team/stops/N166abb", "https://tec.openplanner.team/stops/N166ada"], ["https://tec.openplanner.team/stops/Cgohnda2", "https://tec.openplanner.team/stops/Ctmsncb1"], ["https://tec.openplanner.team/stops/N383aea", "https://tec.openplanner.team/stops/N874amb"], ["https://tec.openplanner.team/stops/N558ajb", "https://tec.openplanner.team/stops/N559aaa"], ["https://tec.openplanner.team/stops/H4ga161d", "https://tec.openplanner.team/stops/H4ga165b"], ["https://tec.openplanner.team/stops/NL77akb", "https://tec.openplanner.team/stops/NL78ajb"], ["https://tec.openplanner.team/stops/H4ty292a", "https://tec.openplanner.team/stops/H4ty294a"], ["https://tec.openplanner.team/stops/LLOnand1", "https://tec.openplanner.team/stops/LRRmanc2"], ["https://tec.openplanner.team/stops/X619aba", "https://tec.openplanner.team/stops/X619acb"], ["https://tec.openplanner.team/stops/N506bvb", "https://tec.openplanner.team/stops/N506bxa"], ["https://tec.openplanner.team/stops/H1mj127a", "https://tec.openplanner.team/stops/H1mj132a"], ["https://tec.openplanner.team/stops/LHCmais2", "https://tec.openplanner.team/stops/LHCpaci1"], ["https://tec.openplanner.team/stops/LCocasc1", "https://tec.openplanner.team/stops/LRChote1"], ["https://tec.openplanner.team/stops/Ccaegli2", "https://tec.openplanner.team/stops/Cerrver4"], ["https://tec.openplanner.team/stops/H4mv192b", "https://tec.openplanner.team/stops/H4mv195a"], ["https://tec.openplanner.team/stops/X759aaa", "https://tec.openplanner.team/stops/X886afb"], ["https://tec.openplanner.team/stops/Bvirbie3", "https://tec.openplanner.team/stops/Bvirhsa1"], ["https://tec.openplanner.team/stops/Cluchbl1", "https://tec.openplanner.team/stops/Cluchbl4"], ["https://tec.openplanner.team/stops/Bwatdmo1", "https://tec.openplanner.team/stops/Bwatmco1"], ["https://tec.openplanner.team/stops/LLWchat1", "https://tec.openplanner.team/stops/LLWpier2"], ["https://tec.openplanner.team/stops/LTIdjal1", "https://tec.openplanner.team/stops/LTIdumo1"], ["https://tec.openplanner.team/stops/H4ty299a", "https://tec.openplanner.team/stops/H4ty299f"], ["https://tec.openplanner.team/stops/X664aeb", "https://tec.openplanner.team/stops/X664afb"], ["https://tec.openplanner.team/stops/LSNchen2", "https://tec.openplanner.team/stops/LSNchen4"], ["https://tec.openplanner.team/stops/N308afc", "https://tec.openplanner.team/stops/N308agb"], ["https://tec.openplanner.team/stops/H4ty274b", "https://tec.openplanner.team/stops/H4ty306b"], ["https://tec.openplanner.team/stops/X811aga", "https://tec.openplanner.team/stops/X834abb"], ["https://tec.openplanner.team/stops/Bhevcur2", "https://tec.openplanner.team/stops/Bhvlpla2"], ["https://tec.openplanner.team/stops/Cgrchas1", "https://tec.openplanner.team/stops/Cgrlorm1"], ["https://tec.openplanner.team/stops/Llgherm2", "https://tec.openplanner.team/stops/Llgmair1"], ["https://tec.openplanner.team/stops/Lcceg--2", "https://tec.openplanner.team/stops/LRacime1"], ["https://tec.openplanner.team/stops/LCHrhou1", "https://tec.openplanner.team/stops/LThplen1"], ["https://tec.openplanner.team/stops/Ccuhsti1", "https://tec.openplanner.team/stops/Ccupbro1"], ["https://tec.openplanner.team/stops/Buccron1", "https://tec.openplanner.team/stops/Buccvbe1"], ["https://tec.openplanner.team/stops/Ctaprai3", "https://tec.openplanner.team/stops/Ctarpoi1"], ["https://tec.openplanner.team/stops/LWOwonc1", "https://tec.openplanner.team/stops/LWOwonc2"], ["https://tec.openplanner.team/stops/N215aaa", "https://tec.openplanner.team/stops/N232cea"], ["https://tec.openplanner.team/stops/Bsmgbsa2", "https://tec.openplanner.team/stops/Bsmgres2"], ["https://tec.openplanner.team/stops/H4tm140b", "https://tec.openplanner.team/stops/H4to133b"], ["https://tec.openplanner.team/stops/Bwatmsj6", "https://tec.openplanner.team/stops/Bwatsan2"], ["https://tec.openplanner.team/stops/H1wi150a", "https://tec.openplanner.team/stops/H1wi153a"], ["https://tec.openplanner.team/stops/Bnstlna1", "https://tec.openplanner.team/stops/H2mi124b"], ["https://tec.openplanner.team/stops/N558aab", "https://tec.openplanner.team/stops/N558afa"], ["https://tec.openplanner.team/stops/Bixlpat1", "https://tec.openplanner.team/stops/Bixlpat2"], ["https://tec.openplanner.team/stops/H4ev119a", "https://tec.openplanner.team/stops/H4sl155a"], ["https://tec.openplanner.team/stops/N562ama", "https://tec.openplanner.team/stops/N562bra"], ["https://tec.openplanner.team/stops/H4an111b", "https://tec.openplanner.team/stops/H4an111c"], ["https://tec.openplanner.team/stops/Lveoctr1", "https://tec.openplanner.team/stops/Lveoctr2"], ["https://tec.openplanner.team/stops/N576aga", "https://tec.openplanner.team/stops/N576agb"], ["https://tec.openplanner.team/stops/Boffegl2", "https://tec.openplanner.team/stops/Bramcar1"], ["https://tec.openplanner.team/stops/N501gza", "https://tec.openplanner.team/stops/N501gzy"], ["https://tec.openplanner.team/stops/Lromc--2", "https://tec.openplanner.team/stops/Lromerl2"], ["https://tec.openplanner.team/stops/X994aba", "https://tec.openplanner.team/stops/X994ama"], ["https://tec.openplanner.team/stops/Lserena2", "https://tec.openplanner.team/stops/Lseverh1"], ["https://tec.openplanner.team/stops/LbTweyn1", "https://tec.openplanner.team/stops/LbUwhon2"], ["https://tec.openplanner.team/stops/LBThaut2", "https://tec.openplanner.team/stops/LCHeg--2"], ["https://tec.openplanner.team/stops/N538aub", "https://tec.openplanner.team/stops/N538bbb"], ["https://tec.openplanner.team/stops/Cfcbosq1", "https://tec.openplanner.team/stops/Cfcsaut3"], ["https://tec.openplanner.team/stops/Buccdch2", "https://tec.openplanner.team/stops/Buccdst2"], ["https://tec.openplanner.team/stops/NL78aeb", "https://tec.openplanner.team/stops/NL78afb"], ["https://tec.openplanner.team/stops/Bllnlb11", "https://tec.openplanner.team/stops/Bllnlb52"], ["https://tec.openplanner.team/stops/Bsomtce1", "https://tec.openplanner.team/stops/N584asa"], ["https://tec.openplanner.team/stops/H4ae132d", "https://tec.openplanner.team/stops/H4ea129b"], ["https://tec.openplanner.team/stops/LBEcomm1", "https://tec.openplanner.team/stops/LBEtilf2"], ["https://tec.openplanner.team/stops/H1ha195a", "https://tec.openplanner.team/stops/H1ha198b"], ["https://tec.openplanner.team/stops/H4ty290b", "https://tec.openplanner.team/stops/H4ty295b"], ["https://tec.openplanner.team/stops/LLTeg--2", "https://tec.openplanner.team/stops/LLThosd2"], ["https://tec.openplanner.team/stops/LWHkape1", "https://tec.openplanner.team/stops/LWHtrui1"], ["https://tec.openplanner.team/stops/N584bpc", "https://tec.openplanner.team/stops/N584bqb"], ["https://tec.openplanner.team/stops/X650aib", "https://tec.openplanner.team/stops/X650akb"], ["https://tec.openplanner.team/stops/Barqbco1", "https://tec.openplanner.team/stops/Barqpla1"], ["https://tec.openplanner.team/stops/H4fa167a", "https://tec.openplanner.team/stops/H5rx104a"], ["https://tec.openplanner.team/stops/Bcseeco2", "https://tec.openplanner.team/stops/Bmoufil2"], ["https://tec.openplanner.team/stops/LBUrout2", "https://tec.openplanner.team/stops/NL30afb"], ["https://tec.openplanner.team/stops/X928aab", "https://tec.openplanner.team/stops/X945adb"], ["https://tec.openplanner.team/stops/Bmlngch2", "https://tec.openplanner.team/stops/Bmlngvi1"], ["https://tec.openplanner.team/stops/LeUwert1", "https://tec.openplanner.team/stops/LeUwert2"], ["https://tec.openplanner.team/stops/H1cv101a", "https://tec.openplanner.team/stops/H1cv102b"], ["https://tec.openplanner.team/stops/Bglacsr1", "https://tec.openplanner.team/stops/Bmrscsp1"], ["https://tec.openplanner.team/stops/LDAptbo1", "https://tec.openplanner.team/stops/LDAptbo2"], ["https://tec.openplanner.team/stops/H1ba100a", "https://tec.openplanner.team/stops/H1ba100b"], ["https://tec.openplanner.team/stops/LOV48--2", "https://tec.openplanner.team/stops/LOVchen1"], ["https://tec.openplanner.team/stops/LbO52--1", "https://tec.openplanner.team/stops/LdElamb1"], ["https://tec.openplanner.team/stops/N201aee", "https://tec.openplanner.team/stops/N201aia"], ["https://tec.openplanner.team/stops/H1cu111b", "https://tec.openplanner.team/stops/H1cu131a"], ["https://tec.openplanner.team/stops/Bgntcha2", "https://tec.openplanner.team/stops/Bsgevil1"], ["https://tec.openplanner.team/stops/LNCloui1", "https://tec.openplanner.team/stops/LNCneuv3"], ["https://tec.openplanner.team/stops/N365aca", "https://tec.openplanner.team/stops/N365acb"], ["https://tec.openplanner.team/stops/Bblager1", "https://tec.openplanner.team/stops/Clpalli1"], ["https://tec.openplanner.team/stops/H1fr107c", "https://tec.openplanner.team/stops/H1fr109a"], ["https://tec.openplanner.team/stops/Bnivbne2", "https://tec.openplanner.team/stops/Bnivsci2"], ["https://tec.openplanner.team/stops/X812aua", "https://tec.openplanner.team/stops/X812bga"], ["https://tec.openplanner.team/stops/Cauglac2", "https://tec.openplanner.team/stops/Ctabaty3"], ["https://tec.openplanner.team/stops/N134afa", "https://tec.openplanner.team/stops/N151aba"], ["https://tec.openplanner.team/stops/LAUneuv5", "https://tec.openplanner.team/stops/LAUscha1"], ["https://tec.openplanner.team/stops/LJAbois2", "https://tec.openplanner.team/stops/LJAroue1"], ["https://tec.openplanner.team/stops/X640ana", "https://tec.openplanner.team/stops/X640anb"], ["https://tec.openplanner.team/stops/Chhegli2", "https://tec.openplanner.team/stops/Chhegli3"], ["https://tec.openplanner.team/stops/N111acb", "https://tec.openplanner.team/stops/N111aea"], ["https://tec.openplanner.team/stops/H4lz161b", "https://tec.openplanner.team/stops/H4lz163a"], ["https://tec.openplanner.team/stops/Cmlceri2", "https://tec.openplanner.team/stops/Cmlclos1"], ["https://tec.openplanner.team/stops/Blasren1", "https://tec.openplanner.team/stops/Brixbai2"], ["https://tec.openplanner.team/stops/Llgcime2", "https://tec.openplanner.team/stops/Llgegwa1"], ["https://tec.openplanner.team/stops/Clibrun2", "https://tec.openplanner.team/stops/Ctmwaut1"], ["https://tec.openplanner.team/stops/N323aca", "https://tec.openplanner.team/stops/N360adb"], ["https://tec.openplanner.team/stops/X616afa", "https://tec.openplanner.team/stops/X616afb"], ["https://tec.openplanner.team/stops/LlgLEOP2", "https://tec.openplanner.team/stops/LlgLEOP3"], ["https://tec.openplanner.team/stops/Bwatgar2", "https://tec.openplanner.team/stops/Bwatpas1"], ["https://tec.openplanner.team/stops/N308aza", "https://tec.openplanner.team/stops/N368aaa"], ["https://tec.openplanner.team/stops/Crasocq1", "https://tec.openplanner.team/stops/Crasocq2"], ["https://tec.openplanner.team/stops/LBPmais1", "https://tec.openplanner.team/stops/LSLdall1"], ["https://tec.openplanner.team/stops/LbOre3b1", "https://tec.openplanner.team/stops/LrEkais3"], ["https://tec.openplanner.team/stops/H1ba106a", "https://tec.openplanner.team/stops/H1te185a"], ["https://tec.openplanner.team/stops/Cfcmass1", "https://tec.openplanner.team/stops/Crccarr1"], ["https://tec.openplanner.team/stops/Bhticbr2", "https://tec.openplanner.team/stops/Bitrfsc2"], ["https://tec.openplanner.team/stops/H4oq228a", "https://tec.openplanner.team/stops/H4wu376a"], ["https://tec.openplanner.team/stops/H1el135b", "https://tec.openplanner.team/stops/H1wi152a"], ["https://tec.openplanner.team/stops/Bchgflo1", "https://tec.openplanner.team/stops/Bopplon1"], ["https://tec.openplanner.team/stops/Lbogonh1", "https://tec.openplanner.team/stops/Lbogonh3"], ["https://tec.openplanner.team/stops/X937abb", "https://tec.openplanner.team/stops/X950ada"], ["https://tec.openplanner.team/stops/Canchbr1", "https://tec.openplanner.team/stops/Canjon3"], ["https://tec.openplanner.team/stops/LhObull2", "https://tec.openplanner.team/stops/LhUkreu2"], ["https://tec.openplanner.team/stops/LLelava1", "https://tec.openplanner.team/stops/X547asa"], ["https://tec.openplanner.team/stops/N113aba", "https://tec.openplanner.team/stops/N113aga"], ["https://tec.openplanner.team/stops/Llgcoti*", "https://tec.openplanner.team/stops/Llggerm1"], ["https://tec.openplanner.team/stops/LPAbour1", "https://tec.openplanner.team/stops/LWinavi1"], ["https://tec.openplanner.team/stops/LKmmelo2", "https://tec.openplanner.team/stops/LOdbuis1"], ["https://tec.openplanner.team/stops/LENmc--2", "https://tec.openplanner.team/stops/LENpt--2"], ["https://tec.openplanner.team/stops/Bbaualz1", "https://tec.openplanner.team/stops/Bbauham1"], ["https://tec.openplanner.team/stops/H2bh112a", "https://tec.openplanner.team/stops/H2bh113b"], ["https://tec.openplanner.team/stops/Bllnjpa2", "https://tec.openplanner.team/stops/Bmsgaxp2"], ["https://tec.openplanner.team/stops/Lrolecl1", "https://tec.openplanner.team/stops/Lronamo1"], ["https://tec.openplanner.team/stops/N206abb", "https://tec.openplanner.team/stops/N207acb"], ["https://tec.openplanner.team/stops/H2mg136a", "https://tec.openplanner.team/stops/H2mg143b"], ["https://tec.openplanner.team/stops/Crarmas1", "https://tec.openplanner.team/stops/Cravign1"], ["https://tec.openplanner.team/stops/Cjucpui2", "https://tec.openplanner.team/stops/Cmaacac2"], ["https://tec.openplanner.team/stops/H4bn174b", "https://tec.openplanner.team/stops/H4pi135b"], ["https://tec.openplanner.team/stops/Lgdstoc1", "https://tec.openplanner.team/stops/LSNmoul1"], ["https://tec.openplanner.team/stops/Lprmana5", "https://tec.openplanner.team/stops/Lprspra1"], ["https://tec.openplanner.team/stops/N301akb", "https://tec.openplanner.team/stops/N331aea"], ["https://tec.openplanner.team/stops/Bbxltrv1", "https://tec.openplanner.team/stops/Bixlqll1"], ["https://tec.openplanner.team/stops/LMAbruy2", "https://tec.openplanner.team/stops/LMAchod2"], ["https://tec.openplanner.team/stops/H4be146a", "https://tec.openplanner.team/stops/H5bl120b"], ["https://tec.openplanner.team/stops/LmI82--2", "https://tec.openplanner.team/stops/LmIzent1"], ["https://tec.openplanner.team/stops/N146aaa", "https://tec.openplanner.team/stops/N146afa"], ["https://tec.openplanner.team/stops/LSZclem2", "https://tec.openplanner.team/stops/LSZpont1"], ["https://tec.openplanner.team/stops/Livfays1", "https://tec.openplanner.team/stops/LRagrch2"], ["https://tec.openplanner.team/stops/X804apb", "https://tec.openplanner.team/stops/X804aqb"], ["https://tec.openplanner.team/stops/LaMades1", "https://tec.openplanner.team/stops/LaMbrei1"], ["https://tec.openplanner.team/stops/H4ss153a", "https://tec.openplanner.team/stops/H5rx105b"], ["https://tec.openplanner.team/stops/N233aaa", "https://tec.openplanner.team/stops/N233aab"], ["https://tec.openplanner.team/stops/Brsrmon3", "https://tec.openplanner.team/stops/Brsrpmo1"], ["https://tec.openplanner.team/stops/H1sb149b", "https://tec.openplanner.team/stops/H1sb150b"], ["https://tec.openplanner.team/stops/N347adb", "https://tec.openplanner.team/stops/N347aeb"], ["https://tec.openplanner.team/stops/LPUchpl2", "https://tec.openplanner.team/stops/LPUlecl2"], ["https://tec.openplanner.team/stops/NL76abb", "https://tec.openplanner.team/stops/NL76asb"], ["https://tec.openplanner.team/stops/LLSbajo1", "https://tec.openplanner.team/stops/LLStour1"], ["https://tec.openplanner.team/stops/Lbrddef4", "https://tec.openplanner.team/stops/Llgddef2"], ["https://tec.openplanner.team/stops/X937ada", "https://tec.openplanner.team/stops/X937aeb"], ["https://tec.openplanner.team/stops/Cchcase1", "https://tec.openplanner.team/stops/Cchcase3"], ["https://tec.openplanner.team/stops/X904afb", "https://tec.openplanner.team/stops/X904aia"], ["https://tec.openplanner.team/stops/Bwavgar4", "https://tec.openplanner.team/stops/Bwavlep1"], ["https://tec.openplanner.team/stops/Cvsbois2", "https://tec.openplanner.team/stops/N530aga"], ["https://tec.openplanner.team/stops/Cfcbobr1", "https://tec.openplanner.team/stops/Cfccabi2"], ["https://tec.openplanner.team/stops/H1cu131a", "https://tec.openplanner.team/stops/H1cu132b"], ["https://tec.openplanner.team/stops/H1pa103b", "https://tec.openplanner.team/stops/H1wa138a"], ["https://tec.openplanner.team/stops/Lagcolo2", "https://tec.openplanner.team/stops/Lemparc2"], ["https://tec.openplanner.team/stops/Cgycorv4", "https://tec.openplanner.team/stops/Cmtduch2"], ["https://tec.openplanner.team/stops/Cvlgrta1", "https://tec.openplanner.team/stops/NH21aeb"], ["https://tec.openplanner.team/stops/N505acb", "https://tec.openplanner.team/stops/N505aoa"], ["https://tec.openplanner.team/stops/X663aaa", "https://tec.openplanner.team/stops/X663ana"], ["https://tec.openplanner.team/stops/H1ms264b", "https://tec.openplanner.team/stops/H1ms266b"], ["https://tec.openplanner.team/stops/Lflcle-3", "https://tec.openplanner.team/stops/Lflcle-6"], ["https://tec.openplanner.team/stops/Cctpass2", "https://tec.openplanner.team/stops/NC02aob"], ["https://tec.openplanner.team/stops/Bhancom2", "https://tec.openplanner.team/stops/LVParal2"], ["https://tec.openplanner.team/stops/N515agb", "https://tec.openplanner.team/stops/N515aub"], ["https://tec.openplanner.team/stops/LWalyce2", "https://tec.openplanner.team/stops/LWapl--3"], ["https://tec.openplanner.team/stops/LHMbami1", "https://tec.openplanner.team/stops/LSImewi1"], ["https://tec.openplanner.team/stops/N230aib", "https://tec.openplanner.team/stops/N233aaa"], ["https://tec.openplanner.team/stops/Lmnsech2", "https://tec.openplanner.team/stops/Lsmsech4"], ["https://tec.openplanner.team/stops/NB33afa", "https://tec.openplanner.team/stops/NB33afb"], ["https://tec.openplanner.team/stops/Lveptre2", "https://tec.openplanner.team/stops/Lvereno2"], ["https://tec.openplanner.team/stops/Lveinva1", "https://tec.openplanner.team/stops/Lveinva2"], ["https://tec.openplanner.team/stops/Brixbou2", "https://tec.openplanner.team/stops/Brixroi2"], ["https://tec.openplanner.team/stops/N225aba", "https://tec.openplanner.team/stops/N226aaa"], ["https://tec.openplanner.team/stops/LFmbure1", "https://tec.openplanner.team/stops/LFmcarr1"], ["https://tec.openplanner.team/stops/H2ml114a", "https://tec.openplanner.team/stops/H2mo117a"], ["https://tec.openplanner.team/stops/Caicalv2", "https://tec.openplanner.team/stops/Caigibe1"], ["https://tec.openplanner.team/stops/N311aea", "https://tec.openplanner.team/stops/N311aeb"], ["https://tec.openplanner.team/stops/LmNelis1", "https://tec.openplanner.team/stops/LmNkirc2"], ["https://tec.openplanner.team/stops/H5el100b", "https://tec.openplanner.team/stops/H5wo130a"], ["https://tec.openplanner.team/stops/H1gh163a", "https://tec.openplanner.team/stops/H1je225b"], ["https://tec.openplanner.team/stops/H5qu144a", "https://tec.openplanner.team/stops/H5qu146a"], ["https://tec.openplanner.team/stops/N577aab", "https://tec.openplanner.team/stops/N577aba"], ["https://tec.openplanner.team/stops/LWycabi1", "https://tec.openplanner.team/stops/LWycabi2"], ["https://tec.openplanner.team/stops/Lmlec--4", "https://tec.openplanner.team/stops/Lmlprie2"], ["https://tec.openplanner.team/stops/N557aia", "https://tec.openplanner.team/stops/N562bjb"], ["https://tec.openplanner.team/stops/N538aua", "https://tec.openplanner.team/stops/N538ava"], ["https://tec.openplanner.team/stops/Btstcar1", "https://tec.openplanner.team/stops/Btstcar4"], ["https://tec.openplanner.team/stops/Llgcrah1", "https://tec.openplanner.team/stops/Llgwild1"], ["https://tec.openplanner.team/stops/N527afb", "https://tec.openplanner.team/stops/N527agb"], ["https://tec.openplanner.team/stops/H5at122a", "https://tec.openplanner.team/stops/H5at133a"], ["https://tec.openplanner.team/stops/X758abb", "https://tec.openplanner.team/stops/X758acb"], ["https://tec.openplanner.team/stops/H1fa118a", "https://tec.openplanner.team/stops/H1vb143a"], ["https://tec.openplanner.team/stops/N531aeb", "https://tec.openplanner.team/stops/N531ata"], ["https://tec.openplanner.team/stops/NL75aab", "https://tec.openplanner.team/stops/NR30aba"], ["https://tec.openplanner.team/stops/LSItert1", "https://tec.openplanner.team/stops/LSIvieu1"], ["https://tec.openplanner.team/stops/LHUmala2", "https://tec.openplanner.team/stops/LHUmari2"], ["https://tec.openplanner.team/stops/Cfmpui82", "https://tec.openplanner.team/stops/Cfmwaut1"], ["https://tec.openplanner.team/stops/Livrame1", "https://tec.openplanner.team/stops/LRagrch2"], ["https://tec.openplanner.team/stops/Lveanne1", "https://tec.openplanner.team/stops/Lvesomm1"], ["https://tec.openplanner.team/stops/N390afb", "https://tec.openplanner.team/stops/N390amb"], ["https://tec.openplanner.team/stops/LCHsaul1", "https://tec.openplanner.team/stops/LCHsaul2"], ["https://tec.openplanner.team/stops/Bhlvvil1", "https://tec.openplanner.team/stops/Crewaba1"], ["https://tec.openplanner.team/stops/N562aha", "https://tec.openplanner.team/stops/N562ahb"], ["https://tec.openplanner.team/stops/X801aaa", "https://tec.openplanner.team/stops/X801aab"], ["https://tec.openplanner.team/stops/Bbchmin1", "https://tec.openplanner.team/stops/Bitreco1"], ["https://tec.openplanner.team/stops/X850ada", "https://tec.openplanner.team/stops/X850aib"], ["https://tec.openplanner.team/stops/Cchsud01", "https://tec.openplanner.team/stops/Cchtram2"], ["https://tec.openplanner.team/stops/H2hg153a", "https://tec.openplanner.team/stops/H2hg156a"], ["https://tec.openplanner.team/stops/N521afb", "https://tec.openplanner.team/stops/N523abb"], ["https://tec.openplanner.team/stops/LoUober1", "https://tec.openplanner.team/stops/LoUwelc1"], ["https://tec.openplanner.team/stops/Llgbron1", "https://tec.openplanner.team/stops/Llgvero1"], ["https://tec.openplanner.team/stops/LRRecsc*", "https://tec.openplanner.team/stops/LRRmanc2"], ["https://tec.openplanner.team/stops/Cbmgare2", "https://tec.openplanner.team/stops/Cbmviv2"], ["https://tec.openplanner.team/stops/LbTathe2", "https://tec.openplanner.team/stops/LbThau11"], ["https://tec.openplanner.team/stops/H4ef138a", "https://tec.openplanner.team/stops/H4ef138b"], ["https://tec.openplanner.team/stops/X754aka", "https://tec.openplanner.team/stops/X754akb"], ["https://tec.openplanner.team/stops/Bgntcbo2", "https://tec.openplanner.team/stops/Bgnttma1"], ["https://tec.openplanner.team/stops/LHGbeur1", "https://tec.openplanner.team/stops/LHGbeur4"], ["https://tec.openplanner.team/stops/H1mb127b", "https://tec.openplanner.team/stops/H1mb166a"], ["https://tec.openplanner.team/stops/H2mg150a", "https://tec.openplanner.team/stops/H2mg153a"], ["https://tec.openplanner.team/stops/N501eda", "https://tec.openplanner.team/stops/N501edb"], ["https://tec.openplanner.team/stops/Csoforc2", "https://tec.openplanner.team/stops/Csostoc2"], ["https://tec.openplanner.team/stops/X512aaa", "https://tec.openplanner.team/stops/X512ajb"], ["https://tec.openplanner.team/stops/Cobnive1", "https://tec.openplanner.team/stops/Creshau1"], ["https://tec.openplanner.team/stops/Crbrgar1", "https://tec.openplanner.team/stops/Cvlbvir2"], ["https://tec.openplanner.team/stops/H5bs104b", "https://tec.openplanner.team/stops/H5pe128b"], ["https://tec.openplanner.team/stops/X836afa", "https://tec.openplanner.team/stops/X836afb"], ["https://tec.openplanner.team/stops/LABbert1", "https://tec.openplanner.team/stops/LBevill2"], ["https://tec.openplanner.team/stops/X725agb", "https://tec.openplanner.team/stops/X754axb"], ["https://tec.openplanner.team/stops/H2ll194b", "https://tec.openplanner.team/stops/H2ll196b"], ["https://tec.openplanner.team/stops/X602aca", "https://tec.openplanner.team/stops/X612acb"], ["https://tec.openplanner.team/stops/Bgliron1", "https://tec.openplanner.team/stops/NB33aeb"], ["https://tec.openplanner.team/stops/Caihai82", "https://tec.openplanner.team/stops/Caioign3"], ["https://tec.openplanner.team/stops/X636ara", "https://tec.openplanner.team/stops/X636arb"], ["https://tec.openplanner.team/stops/H4we139a", "https://tec.openplanner.team/stops/H4we139b"], ["https://tec.openplanner.team/stops/Llgmair2", "https://tec.openplanner.team/stops/Lvtnico2"], ["https://tec.openplanner.team/stops/Bwatavo1", "https://tec.openplanner.team/stops/Bwatifr2"], ["https://tec.openplanner.team/stops/Cjufauv1", "https://tec.openplanner.team/stops/Cjugend3"], ["https://tec.openplanner.team/stops/N571afb", "https://tec.openplanner.team/stops/N571agb"], ["https://tec.openplanner.team/stops/LWM759-1", "https://tec.openplanner.team/stops/LWMchpl2"], ["https://tec.openplanner.team/stops/H2pe159a", "https://tec.openplanner.team/stops/H2pe159b"], ["https://tec.openplanner.team/stops/X602aja", "https://tec.openplanner.team/stops/X602aqa"], ["https://tec.openplanner.team/stops/H4fa126b", "https://tec.openplanner.team/stops/H4fa126d"], ["https://tec.openplanner.team/stops/Cjugill6", "https://tec.openplanner.team/stops/Cjupn1"], ["https://tec.openplanner.team/stops/LeUbael1", "https://tec.openplanner.team/stops/LeUbael2"], ["https://tec.openplanner.team/stops/N533amc", "https://tec.openplanner.team/stops/N533apb"], ["https://tec.openplanner.team/stops/Lsehosp1", "https://tec.openplanner.team/stops/Lsehosp2"], ["https://tec.openplanner.team/stops/X886adb", "https://tec.openplanner.team/stops/X886aeb"], ["https://tec.openplanner.team/stops/LWEbruy1", "https://tec.openplanner.team/stops/LWEwilc2"], ["https://tec.openplanner.team/stops/X634afb", "https://tec.openplanner.team/stops/X636aaa"], ["https://tec.openplanner.team/stops/X607aca", "https://tec.openplanner.team/stops/X647aab"], ["https://tec.openplanner.team/stops/LkEl1211", "https://tec.openplanner.team/stops/LMsec--1"], ["https://tec.openplanner.team/stops/N209ajc", "https://tec.openplanner.team/stops/N209anb"], ["https://tec.openplanner.team/stops/N580aca", "https://tec.openplanner.team/stops/N580aea"], ["https://tec.openplanner.team/stops/LBPunic1", "https://tec.openplanner.team/stops/LGLbrus1"], ["https://tec.openplanner.team/stops/X760adb", "https://tec.openplanner.team/stops/X760agb"], ["https://tec.openplanner.team/stops/X716aba", "https://tec.openplanner.team/stops/X716abb"], ["https://tec.openplanner.team/stops/LaHzoll*", "https://tec.openplanner.team/stops/LrTpost2"], ["https://tec.openplanner.team/stops/Balssvi1", "https://tec.openplanner.team/stops/Balssvi2"], ["https://tec.openplanner.team/stops/Llgblon1", "https://tec.openplanner.team/stops/Llgblon4"], ["https://tec.openplanner.team/stops/Lghhoco1", "https://tec.openplanner.team/stops/Lghmavi2"], ["https://tec.openplanner.team/stops/Cgomart1", "https://tec.openplanner.team/stops/CMleop2"], ["https://tec.openplanner.team/stops/N343aia", "https://tec.openplanner.team/stops/X343aic"], ["https://tec.openplanner.team/stops/LHUloui1", "https://tec.openplanner.team/stops/LHUpsar1"], ["https://tec.openplanner.team/stops/Llgcoro4", "https://tec.openplanner.team/stops/Llgtir-2"], ["https://tec.openplanner.team/stops/LLOhest2", "https://tec.openplanner.team/stops/LLOspin1"], ["https://tec.openplanner.team/stops/X725aaa", "https://tec.openplanner.team/stops/X725abb"], ["https://tec.openplanner.team/stops/X877aaa", "https://tec.openplanner.team/stops/X877aba"], ["https://tec.openplanner.team/stops/H1sy141a", "https://tec.openplanner.team/stops/H1sy141b"], ["https://tec.openplanner.team/stops/H1hy126a", "https://tec.openplanner.team/stops/H1qy133a"], ["https://tec.openplanner.team/stops/H1ba101a", "https://tec.openplanner.team/stops/H1ba102b"], ["https://tec.openplanner.team/stops/Cflmart2", "https://tec.openplanner.team/stops/NC23abb"], ["https://tec.openplanner.team/stops/H4lp124a", "https://tec.openplanner.team/stops/H4lp124b"], ["https://tec.openplanner.team/stops/H2ma205a", "https://tec.openplanner.team/stops/H2ma209a"], ["https://tec.openplanner.team/stops/LTRferm2", "https://tec.openplanner.team/stops/LTRoasi1"], ["https://tec.openplanner.team/stops/X621aab", "https://tec.openplanner.team/stops/X621aba"], ["https://tec.openplanner.team/stops/H1hn210a", "https://tec.openplanner.team/stops/H1ms924a"], ["https://tec.openplanner.team/stops/N214aib", "https://tec.openplanner.team/stops/N214aja"], ["https://tec.openplanner.team/stops/N874aga", "https://tec.openplanner.team/stops/N874akb"], ["https://tec.openplanner.team/stops/N501jla", "https://tec.openplanner.team/stops/N501jna"], ["https://tec.openplanner.team/stops/Blincoo1", "https://tec.openplanner.team/stops/Blineco2"], ["https://tec.openplanner.team/stops/LWEeg--2", "https://tec.openplanner.team/stops/LWElanc1"], ["https://tec.openplanner.team/stops/Cvstouv2", "https://tec.openplanner.team/stops/N530aia"], ["https://tec.openplanner.team/stops/LmDhoch2", "https://tec.openplanner.team/stops/LmDhoch4"], ["https://tec.openplanner.team/stops/Bwavche2", "https://tec.openplanner.team/stops/Bwavlca1"], ["https://tec.openplanner.team/stops/X659adc", "https://tec.openplanner.team/stops/X659add"], ["https://tec.openplanner.team/stops/X857aba", "https://tec.openplanner.team/stops/X858aea"], ["https://tec.openplanner.team/stops/LHApthe1", "https://tec.openplanner.team/stops/LHAstal2"], ["https://tec.openplanner.team/stops/LROhaie2", "https://tec.openplanner.team/stops/LSorobe1"], ["https://tec.openplanner.team/stops/H1ms262a", "https://tec.openplanner.team/stops/H1ms265b"], ["https://tec.openplanner.team/stops/X723afa", "https://tec.openplanner.team/stops/X723aia"], ["https://tec.openplanner.team/stops/X730acb", "https://tec.openplanner.team/stops/X730ada"], ["https://tec.openplanner.team/stops/LHNvill1", "https://tec.openplanner.team/stops/LVPcoeu2"], ["https://tec.openplanner.team/stops/H4an112a", "https://tec.openplanner.team/stops/H4rs118a"], ["https://tec.openplanner.team/stops/N544aga", "https://tec.openplanner.team/stops/N547adb"], ["https://tec.openplanner.team/stops/X661aia", "https://tec.openplanner.team/stops/X661ara"], ["https://tec.openplanner.team/stops/N209afa", "https://tec.openplanner.team/stops/N209afb"], ["https://tec.openplanner.team/stops/LFMveur1", "https://tec.openplanner.team/stops/LFPknap2"], ["https://tec.openplanner.team/stops/LLLvill1", "https://tec.openplanner.team/stops/X576agb"], ["https://tec.openplanner.team/stops/LVbsurr1", "https://tec.openplanner.team/stops/NL77aja"], ["https://tec.openplanner.team/stops/Bincbbo2", "https://tec.openplanner.team/stops/Bincbbo3"], ["https://tec.openplanner.team/stops/X359aca", "https://tec.openplanner.team/stops/X359acb"], ["https://tec.openplanner.team/stops/LwLfuss1", "https://tec.openplanner.team/stops/LwLfuss2"], ["https://tec.openplanner.team/stops/N544aab", "https://tec.openplanner.team/stops/N550afb"], ["https://tec.openplanner.team/stops/Cvtegli2", "https://tec.openplanner.team/stops/Cvtgsar3"], ["https://tec.openplanner.team/stops/LCPlacr1", "https://tec.openplanner.team/stops/LCPoneu2"], ["https://tec.openplanner.team/stops/Bhancre2", "https://tec.openplanner.team/stops/Bhanwav2"], ["https://tec.openplanner.team/stops/N535aaa", "https://tec.openplanner.team/stops/N535apa"], ["https://tec.openplanner.team/stops/LSPplat2", "https://tec.openplanner.team/stops/LSPpomp2"], ["https://tec.openplanner.team/stops/N547aha", "https://tec.openplanner.team/stops/N547aib"], ["https://tec.openplanner.team/stops/Bhercsj2", "https://tec.openplanner.team/stops/Bpiepnd1"], ["https://tec.openplanner.team/stops/Cmg4bra2", "https://tec.openplanner.team/stops/Cmghay2"], ["https://tec.openplanner.team/stops/LCeterm2", "https://tec.openplanner.team/stops/LOMdodi1"], ["https://tec.openplanner.team/stops/X741aaa", "https://tec.openplanner.team/stops/X752aba"], ["https://tec.openplanner.team/stops/Cgycvie1", "https://tec.openplanner.team/stops/Cgygayo3"], ["https://tec.openplanner.team/stops/Ccicent4", "https://tec.openplanner.team/stops/Ccipech1"], ["https://tec.openplanner.team/stops/Cgxcime2", "https://tec.openplanner.team/stops/Cgxdeba2"], ["https://tec.openplanner.team/stops/LsVfeye2", "https://tec.openplanner.team/stops/LwPdorf2"], ["https://tec.openplanner.team/stops/X364aaa", "https://tec.openplanner.team/stops/X371aaa"], ["https://tec.openplanner.team/stops/H1bo101b", "https://tec.openplanner.team/stops/H1bo110b"], ["https://tec.openplanner.team/stops/Btsllbv2", "https://tec.openplanner.team/stops/Btslpic6"], ["https://tec.openplanner.team/stops/LBSvi322", "https://tec.openplanner.team/stops/LBSvi522"], ["https://tec.openplanner.team/stops/Bbxlner1", "https://tec.openplanner.team/stops/Bettgle2"], ["https://tec.openplanner.team/stops/H1ca102a", "https://tec.openplanner.team/stops/H3so160b"], ["https://tec.openplanner.team/stops/H1bx104a", "https://tec.openplanner.team/stops/H1bx108a"], ["https://tec.openplanner.team/stops/N535acd", "https://tec.openplanner.team/stops/N535apb"], ["https://tec.openplanner.team/stops/Brxmhai2", "https://tec.openplanner.team/stops/Brxmhai3"], ["https://tec.openplanner.team/stops/X870ada", "https://tec.openplanner.team/stops/X870adb"], ["https://tec.openplanner.team/stops/N571aaa", "https://tec.openplanner.team/stops/N571akb"], ["https://tec.openplanner.team/stops/Cmeptmi2", "https://tec.openplanner.team/stops/Cmestas1"], ["https://tec.openplanner.team/stops/Btubind1", "https://tec.openplanner.team/stops/Btubpla2"], ["https://tec.openplanner.team/stops/LFalieg2", "https://tec.openplanner.team/stops/LFarhuy1"], ["https://tec.openplanner.team/stops/LMEcour1", "https://tec.openplanner.team/stops/LMIpast1"], ["https://tec.openplanner.team/stops/NL77ana", "https://tec.openplanner.team/stops/NL78aba"], ["https://tec.openplanner.team/stops/LsCbrau1", "https://tec.openplanner.team/stops/LsCkirc1"], ["https://tec.openplanner.team/stops/LLnpomp1", "https://tec.openplanner.team/stops/LLnpomp2"], ["https://tec.openplanner.team/stops/Cnalava3", "https://tec.openplanner.team/stops/Cnalava4"], ["https://tec.openplanner.team/stops/H4gz114a", "https://tec.openplanner.team/stops/H4gz115a"], ["https://tec.openplanner.team/stops/Cbimonu1", "https://tec.openplanner.team/stops/Cthbifu1"], ["https://tec.openplanner.team/stops/LPcforg1", "https://tec.openplanner.team/stops/LVPgrot1"], ["https://tec.openplanner.team/stops/LaAmise2", "https://tec.openplanner.team/stops/LaApost2"], ["https://tec.openplanner.team/stops/LBSneuv2", "https://tec.openplanner.team/stops/LHScite2"], ["https://tec.openplanner.team/stops/Cnacroc1", "https://tec.openplanner.team/stops/Cnaferr2"], ["https://tec.openplanner.team/stops/Llgarmu3", "https://tec.openplanner.team/stops/Llgfoy-1"], ["https://tec.openplanner.team/stops/LBRgend2", "https://tec.openplanner.team/stops/LBRpt--2"], ["https://tec.openplanner.team/stops/LTIchev2", "https://tec.openplanner.team/stops/LTIdjal2"], ["https://tec.openplanner.team/stops/Bblacea2", "https://tec.openplanner.team/stops/Bblasmo1"], ["https://tec.openplanner.team/stops/Ljuathe1", "https://tec.openplanner.team/stops/Ljulieg1"], ["https://tec.openplanner.team/stops/X820ada", "https://tec.openplanner.team/stops/X820aib"], ["https://tec.openplanner.team/stops/H5pe133b", "https://tec.openplanner.team/stops/H5pe141a"], ["https://tec.openplanner.team/stops/Bnetegl1", "https://tec.openplanner.team/stops/Bnetegl2"], ["https://tec.openplanner.team/stops/LHTcarr1", "https://tec.openplanner.team/stops/LHTcarr2"], ["https://tec.openplanner.team/stops/Bvilcha1", "https://tec.openplanner.team/stops/Bvilcim1"], ["https://tec.openplanner.team/stops/LOcalbe1", "https://tec.openplanner.team/stops/LPrcarr2"], ["https://tec.openplanner.team/stops/LrDzoll3", "https://tec.openplanner.team/stops/LrDzoll4"], ["https://tec.openplanner.team/stops/Brixbai1", "https://tec.openplanner.team/stops/Brixeur5"], ["https://tec.openplanner.team/stops/LMNeg--1", "https://tec.openplanner.team/stops/LMsheid2"], ["https://tec.openplanner.team/stops/N501lza", "https://tec.openplanner.team/stops/N501lzz"], ["https://tec.openplanner.team/stops/H1gh163a", "https://tec.openplanner.team/stops/H1gh163b"], ["https://tec.openplanner.team/stops/N241aab", "https://tec.openplanner.team/stops/N270acb"], ["https://tec.openplanner.team/stops/Ccojaur2", "https://tec.openplanner.team/stops/Ccojaur4"], ["https://tec.openplanner.team/stops/Blasbpr2", "https://tec.openplanner.team/stops/Blasclo1"], ["https://tec.openplanner.team/stops/X713aeb", "https://tec.openplanner.team/stops/X713ajc"], ["https://tec.openplanner.team/stops/X624aga", "https://tec.openplanner.team/stops/X624agb"], ["https://tec.openplanner.team/stops/Cpcgout1", "https://tec.openplanner.team/stops/Cpcgout2"], ["https://tec.openplanner.team/stops/Cci4091", "https://tec.openplanner.team/stops/Ccimont2"], ["https://tec.openplanner.team/stops/N301aka", "https://tec.openplanner.team/stops/N301akb"], ["https://tec.openplanner.team/stops/N308apb", "https://tec.openplanner.team/stops/N308aqb"], ["https://tec.openplanner.team/stops/Bronn392", "https://tec.openplanner.team/stops/Bronpfe1"], ["https://tec.openplanner.team/stops/LHCbois2", "https://tec.openplanner.team/stops/LHCbois6"], ["https://tec.openplanner.team/stops/Llgcham3", "https://tec.openplanner.team/stops/Llglair2"], ["https://tec.openplanner.team/stops/X561adb", "https://tec.openplanner.team/stops/X575aab"], ["https://tec.openplanner.team/stops/N501cwa", "https://tec.openplanner.team/stops/N501dab"], ["https://tec.openplanner.team/stops/H2gy107a", "https://tec.openplanner.team/stops/H2gy107b"], ["https://tec.openplanner.team/stops/N103aab", "https://tec.openplanner.team/stops/N103abb"], ["https://tec.openplanner.team/stops/Cgdberl1", "https://tec.openplanner.team/stops/Cgdberl2"], ["https://tec.openplanner.team/stops/H1mh116a", "https://tec.openplanner.team/stops/H1mh117a"], ["https://tec.openplanner.team/stops/X948aoa", "https://tec.openplanner.team/stops/X948aob"], ["https://tec.openplanner.team/stops/H1mr124a", "https://tec.openplanner.team/stops/H1mr125a"], ["https://tec.openplanner.team/stops/H1sg150a", "https://tec.openplanner.team/stops/H1sg150c"], ["https://tec.openplanner.team/stops/H1gc122a", "https://tec.openplanner.team/stops/H1gc124b"], ["https://tec.openplanner.team/stops/X601axa", "https://tec.openplanner.team/stops/X612aaa"], ["https://tec.openplanner.team/stops/H4ss154b", "https://tec.openplanner.team/stops/H4ss155b"], ["https://tec.openplanner.team/stops/Lagarde1", "https://tec.openplanner.team/stops/Lagtilf2"], ["https://tec.openplanner.team/stops/X618alb", "https://tec.openplanner.team/stops/X619acb"], ["https://tec.openplanner.team/stops/Lhrsimo2", "https://tec.openplanner.team/stops/Lhrsimo4"], ["https://tec.openplanner.team/stops/N540aga", "https://tec.openplanner.team/stops/N540aja"], ["https://tec.openplanner.team/stops/H2ll188b", "https://tec.openplanner.team/stops/H2ll192a"], ["https://tec.openplanner.team/stops/LGepeck2", "https://tec.openplanner.team/stops/LGeschr2"], ["https://tec.openplanner.team/stops/Lghcfer2", "https://tec.openplanner.team/stops/Lghjans1"], ["https://tec.openplanner.team/stops/LAvatri1", "https://tec.openplanner.team/stops/LAvrout1"], ["https://tec.openplanner.team/stops/LWaatel1", "https://tec.openplanner.team/stops/LWazoni1"], ["https://tec.openplanner.team/stops/Btslnil2", "https://tec.openplanner.team/stops/Btslpbr2"], ["https://tec.openplanner.team/stops/Bwatbce1", "https://tec.openplanner.team/stops/Bwatcpr1"], ["https://tec.openplanner.team/stops/Ctafran2", "https://tec.openplanner.team/stops/N543cpb"], ["https://tec.openplanner.team/stops/H2ch106b", "https://tec.openplanner.team/stops/H2go118a"], ["https://tec.openplanner.team/stops/N543cfb", "https://tec.openplanner.team/stops/N543cjb"], ["https://tec.openplanner.team/stops/X822aga", "https://tec.openplanner.team/stops/X822akb"], ["https://tec.openplanner.team/stops/Cfcchas2", "https://tec.openplanner.team/stops/Cfcstan2"], ["https://tec.openplanner.team/stops/X636aaa", "https://tec.openplanner.team/stops/X636abb"], ["https://tec.openplanner.team/stops/N501bia", "https://tec.openplanner.team/stops/N501lqb"], ["https://tec.openplanner.team/stops/X780afa", "https://tec.openplanner.team/stops/X790aja"], ["https://tec.openplanner.team/stops/N163aab", "https://tec.openplanner.team/stops/N569afa"], ["https://tec.openplanner.team/stops/Canchbr2", "https://tec.openplanner.team/stops/Canfief2"], ["https://tec.openplanner.team/stops/Csobail1", "https://tec.openplanner.team/stops/Csochea1"], ["https://tec.openplanner.team/stops/X639ala", "https://tec.openplanner.team/stops/X639alb"], ["https://tec.openplanner.team/stops/NL57add", "https://tec.openplanner.team/stops/NL57aja"], ["https://tec.openplanner.team/stops/NR21aja", "https://tec.openplanner.team/stops/NR38aba"], ["https://tec.openplanner.team/stops/X639aia", "https://tec.openplanner.team/stops/X639aua"], ["https://tec.openplanner.team/stops/Bolgegl4", "https://tec.openplanner.team/stops/Bolgfon1"], ["https://tec.openplanner.team/stops/Bottcva2", "https://tec.openplanner.team/stops/Bottppa1"], ["https://tec.openplanner.team/stops/H1eo106a", "https://tec.openplanner.team/stops/H1mj127b"], ["https://tec.openplanner.team/stops/Cbwmato2", "https://tec.openplanner.team/stops/Cmgpthi1"], ["https://tec.openplanner.team/stops/Bbghcar1", "https://tec.openplanner.team/stops/Bbghgli2"], ["https://tec.openplanner.team/stops/LWNchar1", "https://tec.openplanner.team/stops/LWNchar2"], ["https://tec.openplanner.team/stops/Blincoo1", "https://tec.openplanner.team/stops/Bpthrsp1"], ["https://tec.openplanner.team/stops/Bnodlce2", "https://tec.openplanner.team/stops/Boplham2"], ["https://tec.openplanner.team/stops/LTyhapp1", "https://tec.openplanner.team/stops/LTyhapp3"], ["https://tec.openplanner.team/stops/H1ba105a", "https://tec.openplanner.team/stops/H1si154a"], ["https://tec.openplanner.team/stops/X831aca", "https://tec.openplanner.team/stops/X831adb"], ["https://tec.openplanner.team/stops/Lhrwigi1", "https://tec.openplanner.team/stops/Lwachal2"], ["https://tec.openplanner.team/stops/Cmlange1", "https://tec.openplanner.team/stops/Cmtrbra2"], ["https://tec.openplanner.team/stops/Bsenpbi2", "https://tec.openplanner.team/stops/Bsensab2"], ["https://tec.openplanner.team/stops/LGlcarr1", "https://tec.openplanner.team/stops/LHZbren2"], ["https://tec.openplanner.team/stops/Bbldgar1", "https://tec.openplanner.team/stops/Bbldvaa2"], ["https://tec.openplanner.team/stops/X739adb", "https://tec.openplanner.team/stops/X739aga"], ["https://tec.openplanner.team/stops/Lbocarr1", "https://tec.openplanner.team/stops/Lbocomm1"], ["https://tec.openplanner.team/stops/X901aib", "https://tec.openplanner.team/stops/X901bsb"], ["https://tec.openplanner.team/stops/LHNgare2", "https://tec.openplanner.team/stops/LVPcoeu2"], ["https://tec.openplanner.team/stops/X657aaa", "https://tec.openplanner.team/stops/X657aba"], ["https://tec.openplanner.team/stops/H1qp141a", "https://tec.openplanner.team/stops/H1qp142a"], ["https://tec.openplanner.team/stops/N537aga", "https://tec.openplanner.team/stops/N537aha"], ["https://tec.openplanner.team/stops/X640ada", "https://tec.openplanner.team/stops/X640aeb"], ["https://tec.openplanner.team/stops/H1ha186b", "https://tec.openplanner.team/stops/H1ha187b"], ["https://tec.openplanner.team/stops/LLOhest2", "https://tec.openplanner.team/stops/LVtchai1"], ["https://tec.openplanner.team/stops/Cflglav1", "https://tec.openplanner.team/stops/Cflglav2"], ["https://tec.openplanner.team/stops/N501aka", "https://tec.openplanner.team/stops/N501akb"], ["https://tec.openplanner.team/stops/Btubga02", "https://tec.openplanner.team/stops/Btubga03"], ["https://tec.openplanner.team/stops/X750aia", "https://tec.openplanner.team/stops/X750aja"], ["https://tec.openplanner.team/stops/N160acb", "https://tec.openplanner.team/stops/N160aga"], ["https://tec.openplanner.team/stops/N251aab", "https://tec.openplanner.team/stops/N286aab"], ["https://tec.openplanner.team/stops/Bcrncen1", "https://tec.openplanner.team/stops/Bcrnegl1"], ["https://tec.openplanner.team/stops/H4he105b", "https://tec.openplanner.team/stops/H4he106a"], ["https://tec.openplanner.team/stops/Bmarvil2", "https://tec.openplanner.team/stops/Csawagn1"], ["https://tec.openplanner.team/stops/H4ty351a", "https://tec.openplanner.team/stops/H4ty351b"], ["https://tec.openplanner.team/stops/X919ada", "https://tec.openplanner.team/stops/X919adb"], ["https://tec.openplanner.team/stops/N504aca", "https://tec.openplanner.team/stops/N511aaa"], ["https://tec.openplanner.team/stops/Cgyduss1", "https://tec.openplanner.team/stops/Cgynuto1"], ["https://tec.openplanner.team/stops/H4sl155a", "https://tec.openplanner.team/stops/H4sl155b"], ["https://tec.openplanner.team/stops/LYegeor2", "https://tec.openplanner.team/stops/LYegeor3"], ["https://tec.openplanner.team/stops/X921afa", "https://tec.openplanner.team/stops/X921aqb"], ["https://tec.openplanner.team/stops/Cgzcorn2", "https://tec.openplanner.team/stops/Cgzvivi1"], ["https://tec.openplanner.team/stops/Bhevgro1", "https://tec.openplanner.team/stops/Bovesnh2"], ["https://tec.openplanner.team/stops/X394aba", "https://tec.openplanner.team/stops/X394aca"], ["https://tec.openplanner.team/stops/Bchgbel2", "https://tec.openplanner.team/stops/Bgisber2"], ["https://tec.openplanner.team/stops/LFehaut2", "https://tec.openplanner.team/stops/LFemoul2"], ["https://tec.openplanner.team/stops/N548asa", "https://tec.openplanner.team/stops/N548aya"], ["https://tec.openplanner.team/stops/N521aja", "https://tec.openplanner.team/stops/N521ala"], ["https://tec.openplanner.team/stops/LHMgrun2", "https://tec.openplanner.team/stops/LSIgehe2"], ["https://tec.openplanner.team/stops/X345aaa", "https://tec.openplanner.team/stops/X345abb"], ["https://tec.openplanner.team/stops/X636amb", "https://tec.openplanner.team/stops/X636aqb"], ["https://tec.openplanner.team/stops/N536aba", "https://tec.openplanner.team/stops/N580ada"], ["https://tec.openplanner.team/stops/LCPgare1", "https://tec.openplanner.team/stops/LCPgare2"], ["https://tec.openplanner.team/stops/LeUhaas3", "https://tec.openplanner.team/stops/LeUhaas4"], ["https://tec.openplanner.team/stops/LVPcoeu1", "https://tec.openplanner.team/stops/LVPeg--2"], ["https://tec.openplanner.team/stops/Bhenpla2", "https://tec.openplanner.team/stops/Bquegen1"], ["https://tec.openplanner.team/stops/N137ada", "https://tec.openplanner.team/stops/N137adb"], ["https://tec.openplanner.team/stops/Lvcbasi*", "https://tec.openplanner.team/stops/Lvcdumo1"], ["https://tec.openplanner.team/stops/H4lg102a", "https://tec.openplanner.team/stops/H4rm112b"], ["https://tec.openplanner.team/stops/N236aba", "https://tec.openplanner.team/stops/N254agb"], ["https://tec.openplanner.team/stops/X721aob", "https://tec.openplanner.team/stops/X721apa"], ["https://tec.openplanner.team/stops/H2ha133a", "https://tec.openplanner.team/stops/H2ha133b"], ["https://tec.openplanner.team/stops/X989aea", "https://tec.openplanner.team/stops/X989aeb"], ["https://tec.openplanner.team/stops/H1bi101b", "https://tec.openplanner.team/stops/H1bi103b"], ["https://tec.openplanner.team/stops/N539awb", "https://tec.openplanner.team/stops/N539azb"], ["https://tec.openplanner.team/stops/H1je211a", "https://tec.openplanner.team/stops/H1je225b"], ["https://tec.openplanner.team/stops/Caibras1", "https://tec.openplanner.team/stops/Caihai82"], ["https://tec.openplanner.team/stops/Bhtibru2", "https://tec.openplanner.team/stops/Bhtirin2"], ["https://tec.openplanner.team/stops/Chhlori2", "https://tec.openplanner.team/stops/Cjxpann2"], ["https://tec.openplanner.team/stops/LNCsart1", "https://tec.openplanner.team/stops/LRachen2"], ["https://tec.openplanner.team/stops/H1ha182a", "https://tec.openplanner.team/stops/H1ha198a"], ["https://tec.openplanner.team/stops/LVIcarm4", "https://tec.openplanner.team/stops/LVIecol2"], ["https://tec.openplanner.team/stops/X754aha", "https://tec.openplanner.team/stops/X754aja"], ["https://tec.openplanner.team/stops/LhSbruc1", "https://tec.openplanner.team/stops/LhSfrep1"], ["https://tec.openplanner.team/stops/LESvign1", "https://tec.openplanner.team/stops/LFNtill1"], ["https://tec.openplanner.team/stops/LAOpres1", "https://tec.openplanner.team/stops/LLStour2"], ["https://tec.openplanner.team/stops/Cslbarb1", "https://tec.openplanner.team/stops/Cvtmaro1"], ["https://tec.openplanner.team/stops/LTgbalm2", "https://tec.openplanner.team/stops/LTgwarf1"], ["https://tec.openplanner.team/stops/X672aga", "https://tec.openplanner.team/stops/X672agb"], ["https://tec.openplanner.team/stops/Cbckios1", "https://tec.openplanner.team/stops/Cbckios2"], ["https://tec.openplanner.team/stops/N501flb", "https://tec.openplanner.team/stops/N501lwb"], ["https://tec.openplanner.team/stops/X898aib", "https://tec.openplanner.team/stops/X898anb"], ["https://tec.openplanner.team/stops/H4lh120b", "https://tec.openplanner.team/stops/H4oe147a"], ["https://tec.openplanner.team/stops/Berngrt2", "https://tec.openplanner.team/stops/Bwspbbo2"], ["https://tec.openplanner.team/stops/X917afa", "https://tec.openplanner.team/stops/X917aia"], ["https://tec.openplanner.team/stops/Bixlpat2", "https://tec.openplanner.team/stops/Buccbas2"], ["https://tec.openplanner.team/stops/LHNcreh1", "https://tec.openplanner.team/stops/LHNvill2"], ["https://tec.openplanner.team/stops/H1el136a", "https://tec.openplanner.team/stops/H1tl121a"], ["https://tec.openplanner.team/stops/X896aca", "https://tec.openplanner.team/stops/X898afa"], ["https://tec.openplanner.team/stops/LFtn6--2", "https://tec.openplanner.team/stops/LRMeg--2"], ["https://tec.openplanner.team/stops/H4lh120a", "https://tec.openplanner.team/stops/H4lh120b"], ["https://tec.openplanner.team/stops/Bbbksth1", "https://tec.openplanner.team/stops/Bhmmvdu2"], ["https://tec.openplanner.team/stops/LPLg90-1", "https://tec.openplanner.team/stops/LPLline2"], ["https://tec.openplanner.team/stops/Bmsgpfo1", "https://tec.openplanner.team/stops/Bmsgpfo2"], ["https://tec.openplanner.team/stops/Bwavcen1", "https://tec.openplanner.team/stops/Bwaveur1"], ["https://tec.openplanner.team/stops/LSPmart4", "https://tec.openplanner.team/stops/LWMchpl2"], ["https://tec.openplanner.team/stops/X996aga", "https://tec.openplanner.team/stops/X996ahb"], ["https://tec.openplanner.team/stops/H4mt217b", "https://tec.openplanner.team/stops/H4ru235a"], ["https://tec.openplanner.team/stops/X696aca", "https://tec.openplanner.team/stops/X696ada"], ["https://tec.openplanner.team/stops/Cbupla1", "https://tec.openplanner.team/stops/Cbupla2"], ["https://tec.openplanner.team/stops/LCEboll2", "https://tec.openplanner.team/stops/LCEeg--2"], ["https://tec.openplanner.team/stops/X754aob", "https://tec.openplanner.team/stops/X754avb"], ["https://tec.openplanner.team/stops/N501kfb", "https://tec.openplanner.team/stops/N501kic"], ["https://tec.openplanner.team/stops/LFCalte1", "https://tec.openplanner.team/stops/LFCvoer1"], ["https://tec.openplanner.team/stops/Lanfont1", "https://tec.openplanner.team/stops/Lannico1"], ["https://tec.openplanner.team/stops/Blanath1", "https://tec.openplanner.team/stops/LTobilz2"], ["https://tec.openplanner.team/stops/LrAdrie3", "https://tec.openplanner.team/stops/LrApont2"], ["https://tec.openplanner.team/stops/X986aib", "https://tec.openplanner.team/stops/X986asa"], ["https://tec.openplanner.team/stops/N543bfa", "https://tec.openplanner.team/stops/N543bgc"], ["https://tec.openplanner.team/stops/LNEolne1", "https://tec.openplanner.team/stops/LVosoir2"], ["https://tec.openplanner.team/stops/X746ahc", "https://tec.openplanner.team/stops/X746aia"], ["https://tec.openplanner.team/stops/H1eu103a", "https://tec.openplanner.team/stops/H1eu105b"], ["https://tec.openplanner.team/stops/LnErech1", "https://tec.openplanner.team/stops/LoEbach1"], ["https://tec.openplanner.team/stops/H1ni322a", "https://tec.openplanner.team/stops/H1ni323a"], ["https://tec.openplanner.team/stops/Cbtgemi2", "https://tec.openplanner.team/stops/Cfrcoqu2"], ["https://tec.openplanner.team/stops/Bbchtry1", "https://tec.openplanner.team/stops/Bwaurge1"], ["https://tec.openplanner.team/stops/Llgguer1", "https://tec.openplanner.team/stops/Llghopo1"], ["https://tec.openplanner.team/stops/Cflmarq1", "https://tec.openplanner.team/stops/Cflmarq2"], ["https://tec.openplanner.team/stops/N538aka", "https://tec.openplanner.team/stops/N538akb"], ["https://tec.openplanner.team/stops/H1ca186b", "https://tec.openplanner.team/stops/H1ma230b"], ["https://tec.openplanner.team/stops/X650ama", "https://tec.openplanner.team/stops/X650anb"], ["https://tec.openplanner.team/stops/H4bo110a", "https://tec.openplanner.team/stops/H4bo181a"], ["https://tec.openplanner.team/stops/LBKmoes1", "https://tec.openplanner.team/stops/LOesour1"], ["https://tec.openplanner.team/stops/LPLcarr3", "https://tec.openplanner.team/stops/LPLcarr4"], ["https://tec.openplanner.team/stops/X747aaa", "https://tec.openplanner.team/stops/X747aac"], ["https://tec.openplanner.team/stops/N121abb", "https://tec.openplanner.team/stops/N122adb"], ["https://tec.openplanner.team/stops/Cmmheur2", "https://tec.openplanner.team/stops/Cmmjami2"], ["https://tec.openplanner.team/stops/Cmlcaya1", "https://tec.openplanner.team/stops/Cmlener2"], ["https://tec.openplanner.team/stops/Llgangl2", "https://tec.openplanner.team/stops/Llgbatt1"], ["https://tec.openplanner.team/stops/X939aga", "https://tec.openplanner.team/stops/X939agb"], ["https://tec.openplanner.team/stops/NL57adc", "https://tec.openplanner.team/stops/NL57add"], ["https://tec.openplanner.team/stops/X638aha", "https://tec.openplanner.team/stops/X638ahb"], ["https://tec.openplanner.team/stops/H2bh107a", "https://tec.openplanner.team/stops/H2jo164b"], ["https://tec.openplanner.team/stops/X991aca", "https://tec.openplanner.team/stops/X991aha"], ["https://tec.openplanner.team/stops/Ctrdelb2", "https://tec.openplanner.team/stops/Ctrplac1"], ["https://tec.openplanner.team/stops/Lceconf2", "https://tec.openplanner.team/stops/Lgrjobe1"], ["https://tec.openplanner.team/stops/Bbeamon2", "https://tec.openplanner.team/stops/Bbeasta2"], ["https://tec.openplanner.team/stops/N202abb", "https://tec.openplanner.team/stops/N202aeb"], ["https://tec.openplanner.team/stops/LLMjacq2", "https://tec.openplanner.team/stops/LThelse2"], ["https://tec.openplanner.team/stops/Bnivasa2", "https://tec.openplanner.team/stops/Bnivcol2"], ["https://tec.openplanner.team/stops/LnEleje2", "https://tec.openplanner.team/stops/LsVhunn2"], ["https://tec.openplanner.team/stops/N423aeb", "https://tec.openplanner.team/stops/N423afb"], ["https://tec.openplanner.team/stops/H1gy111b", "https://tec.openplanner.team/stops/H1gy114b"], ["https://tec.openplanner.team/stops/LeUauto2", "https://tec.openplanner.team/stops/LeUoe542"], ["https://tec.openplanner.team/stops/Bbeubos1", "https://tec.openplanner.team/stops/N524acb"], ["https://tec.openplanner.team/stops/H1je213b", "https://tec.openplanner.team/stops/H1je220b"], ["https://tec.openplanner.team/stops/LLevaux1", "https://tec.openplanner.team/stops/X561aeb"], ["https://tec.openplanner.team/stops/Ccohuli1", "https://tec.openplanner.team/stops/Crowilb2"], ["https://tec.openplanner.team/stops/H4ba102a", "https://tec.openplanner.team/stops/H4ba103a"], ["https://tec.openplanner.team/stops/N141aaa", "https://tec.openplanner.team/stops/N426aaa"], ["https://tec.openplanner.team/stops/H1te173b", "https://tec.openplanner.team/stops/H1te190a"], ["https://tec.openplanner.team/stops/H3so156b", "https://tec.openplanner.team/stops/H3so168b"], ["https://tec.openplanner.team/stops/H2go119a", "https://tec.openplanner.team/stops/H2go120a"], ["https://tec.openplanner.team/stops/X614aeb", "https://tec.openplanner.team/stops/X614aya"], ["https://tec.openplanner.team/stops/Lligara1", "https://tec.openplanner.team/stops/Lligara2"], ["https://tec.openplanner.team/stops/Llghopo1", "https://tec.openplanner.team/stops/Llghopo2"], ["https://tec.openplanner.team/stops/Ccyga8", "https://tec.openplanner.team/stops/Ccygara1"], ["https://tec.openplanner.team/stops/N131aha", "https://tec.openplanner.team/stops/N138aab"], ["https://tec.openplanner.team/stops/Cradest1", "https://tec.openplanner.team/stops/Cravold1"], ["https://tec.openplanner.team/stops/Lrosoxh1", "https://tec.openplanner.team/stops/Lrosoxh2"], ["https://tec.openplanner.team/stops/N423abb", "https://tec.openplanner.team/stops/N425aga"], ["https://tec.openplanner.team/stops/H1po130b", "https://tec.openplanner.team/stops/H1po133b"], ["https://tec.openplanner.team/stops/LHEches1", "https://tec.openplanner.team/stops/LHEches4"], ["https://tec.openplanner.team/stops/Cna4che2", "https://tec.openplanner.team/stops/Cnachcu1"], ["https://tec.openplanner.team/stops/LWAlong1", "https://tec.openplanner.team/stops/LWAlong2"], ["https://tec.openplanner.team/stops/Cmobeau1", "https://tec.openplanner.team/stops/Cmobeau2"], ["https://tec.openplanner.team/stops/Csobrou2", "https://tec.openplanner.team/stops/Csocime2"], ["https://tec.openplanner.team/stops/Ltibure1", "https://tec.openplanner.team/stops/Ltimarq2"], ["https://tec.openplanner.team/stops/LbTaral2", "https://tec.openplanner.team/stops/LbThutt2"], ["https://tec.openplanner.team/stops/H1sd346a", "https://tec.openplanner.team/stops/H1sd366b"], ["https://tec.openplanner.team/stops/N134aac", "https://tec.openplanner.team/stops/N134acb"], ["https://tec.openplanner.team/stops/H3br103a", "https://tec.openplanner.team/stops/H3so187a"], ["https://tec.openplanner.team/stops/N155acb", "https://tec.openplanner.team/stops/N155ada"], ["https://tec.openplanner.team/stops/H2ca101a", "https://tec.openplanner.team/stops/H2ca102b"], ["https://tec.openplanner.team/stops/N515akb", "https://tec.openplanner.team/stops/N515alb"], ["https://tec.openplanner.team/stops/LWbcarr1", "https://tec.openplanner.team/stops/X512aba"], ["https://tec.openplanner.team/stops/N501eaa", "https://tec.openplanner.team/stops/N501kqb"], ["https://tec.openplanner.team/stops/H4bs112a", "https://tec.openplanner.team/stops/H4ca121b"], ["https://tec.openplanner.team/stops/H1en102a", "https://tec.openplanner.team/stops/H1mk123a"], ["https://tec.openplanner.team/stops/Cgzfarc2", "https://tec.openplanner.team/stops/Cgzha622"], ["https://tec.openplanner.team/stops/Claptcf1", "https://tec.openplanner.team/stops/NC23acb"], ["https://tec.openplanner.team/stops/H4be113a", "https://tec.openplanner.team/stops/H4be145a"], ["https://tec.openplanner.team/stops/X601ama", "https://tec.openplanner.team/stops/X601ana"], ["https://tec.openplanner.team/stops/H1ms270b", "https://tec.openplanner.team/stops/H1ob334b"], ["https://tec.openplanner.team/stops/LCRchpl2", "https://tec.openplanner.team/stops/LCReg--2"], ["https://tec.openplanner.team/stops/H4ka186a", "https://tec.openplanner.team/stops/H4ob124a"], ["https://tec.openplanner.team/stops/LMIpatr3", "https://tec.openplanner.team/stops/LSOathe2"], ["https://tec.openplanner.team/stops/LSBdelc1", "https://tec.openplanner.team/stops/LSBjoli1"], ["https://tec.openplanner.team/stops/LBNauto2", "https://tec.openplanner.team/stops/LWEcarr1"], ["https://tec.openplanner.team/stops/N501crc", "https://tec.openplanner.team/stops/N501ctb"], ["https://tec.openplanner.team/stops/H4mx118a", "https://tec.openplanner.team/stops/H4mx119c"], ["https://tec.openplanner.team/stops/X986aba", "https://tec.openplanner.team/stops/X986abb"], ["https://tec.openplanner.team/stops/LeIpiro3", "https://tec.openplanner.team/stops/LiVkreu3"], ["https://tec.openplanner.team/stops/LHhchau1", "https://tec.openplanner.team/stops/LHhmohe2"], ["https://tec.openplanner.team/stops/X224adb", "https://tec.openplanner.team/stops/X224aeb"], ["https://tec.openplanner.team/stops/X364ada", "https://tec.openplanner.team/stops/X371ajb"], ["https://tec.openplanner.team/stops/Cmiegli1", "https://tec.openplanner.team/stops/Cvtmaro1"], ["https://tec.openplanner.team/stops/LLrdigu2", "https://tec.openplanner.team/stops/LLrgare2"], ["https://tec.openplanner.team/stops/H2ha139a", "https://tec.openplanner.team/stops/H2ha141c"], ["https://tec.openplanner.team/stops/H1hn364a", "https://tec.openplanner.team/stops/H1ms257a"], ["https://tec.openplanner.team/stops/Bcrbgro1", "https://tec.openplanner.team/stops/Bcrbrpb2"], ["https://tec.openplanner.team/stops/Cladura5", "https://tec.openplanner.team/stops/NC23aaa"], ["https://tec.openplanner.team/stops/X901axa", "https://tec.openplanner.team/stops/X901axb"], ["https://tec.openplanner.team/stops/LrUbrac2", "https://tec.openplanner.team/stops/LrUkult1"], ["https://tec.openplanner.team/stops/X850abb", "https://tec.openplanner.team/stops/X850aca"], ["https://tec.openplanner.team/stops/Lflroms2", "https://tec.openplanner.team/stops/Lflroms5"], ["https://tec.openplanner.team/stops/N254aba", "https://tec.openplanner.team/stops/N254aca"], ["https://tec.openplanner.team/stops/LwAkett1", "https://tec.openplanner.team/stops/LwAstum1"], ["https://tec.openplanner.team/stops/H4de113a", "https://tec.openplanner.team/stops/H4de113b"], ["https://tec.openplanner.team/stops/X897aea", "https://tec.openplanner.team/stops/X897aeb"], ["https://tec.openplanner.team/stops/H2ha135c", "https://tec.openplanner.team/stops/H2tr245a"], ["https://tec.openplanner.team/stops/H1gh148a", "https://tec.openplanner.team/stops/H1gh165a"], ["https://tec.openplanner.team/stops/Bhmmcge2", "https://tec.openplanner.team/stops/Bhmmgar1"], ["https://tec.openplanner.team/stops/X661aka", "https://tec.openplanner.team/stops/X661bbb"], ["https://tec.openplanner.team/stops/X639aab", "https://tec.openplanner.team/stops/X639asa"], ["https://tec.openplanner.team/stops/Bgembhe2", "https://tec.openplanner.team/stops/N576ana"], ["https://tec.openplanner.team/stops/Cnafont1", "https://tec.openplanner.team/stops/Cnahahe1"], ["https://tec.openplanner.team/stops/Barcpre1", "https://tec.openplanner.team/stops/Bnettou1"], ["https://tec.openplanner.team/stops/H4bd110a", "https://tec.openplanner.team/stops/H4ma203a"], ["https://tec.openplanner.team/stops/LLrc_ip3", "https://tec.openplanner.team/stops/LWMcent2"], ["https://tec.openplanner.team/stops/X619aia", "https://tec.openplanner.team/stops/X619aib"], ["https://tec.openplanner.team/stops/Bwatjbo2", "https://tec.openplanner.team/stops/Bwatprp2"], ["https://tec.openplanner.team/stops/Csregli1", "https://tec.openplanner.team/stops/Csregli2"], ["https://tec.openplanner.team/stops/LHUeuro1", "https://tec.openplanner.team/stops/LHUlebe0"], ["https://tec.openplanner.team/stops/Brixmar3", "https://tec.openplanner.team/stops/Brixpao3"], ["https://tec.openplanner.team/stops/H1sb147a", "https://tec.openplanner.team/stops/H1sb149a"], ["https://tec.openplanner.team/stops/Bjodcar1", "https://tec.openplanner.team/stops/Bjodtpo2"], ["https://tec.openplanner.team/stops/N501ipa", "https://tec.openplanner.team/stops/N501ipb"], ["https://tec.openplanner.team/stops/Lghchap2", "https://tec.openplanner.team/stops/Lghencl2"], ["https://tec.openplanner.team/stops/X901bqa", "https://tec.openplanner.team/stops/X901bqb"], ["https://tec.openplanner.team/stops/Csrcarr1", "https://tec.openplanner.team/stops/Csrcarr2"], ["https://tec.openplanner.team/stops/Borblim1", "https://tec.openplanner.team/stops/Borblim2"], ["https://tec.openplanner.team/stops/LLtwanz1", "https://tec.openplanner.team/stops/LLtwanz2"], ["https://tec.openplanner.team/stops/Bbchcab1", "https://tec.openplanner.team/stops/Bbchdra1"], ["https://tec.openplanner.team/stops/H4ea129a", "https://tec.openplanner.team/stops/H4ea129b"], ["https://tec.openplanner.team/stops/Bitrcha1", "https://tec.openplanner.team/stops/Bitrcha2"], ["https://tec.openplanner.team/stops/H1bl104c", "https://tec.openplanner.team/stops/H1pd143a"], ["https://tec.openplanner.team/stops/H1br123a", "https://tec.openplanner.team/stops/H1br127b"], ["https://tec.openplanner.team/stops/Cglfrom1", "https://tec.openplanner.team/stops/Cgnpass2"], ["https://tec.openplanner.team/stops/X750bfa", "https://tec.openplanner.team/stops/X750bna"], ["https://tec.openplanner.team/stops/Blimch%C3%A22", "https://tec.openplanner.team/stops/Bottpin1"], ["https://tec.openplanner.team/stops/X774ahb", "https://tec.openplanner.team/stops/X775aha"], ["https://tec.openplanner.team/stops/LmTkirc1", "https://tec.openplanner.team/stops/LmTschi2"], ["https://tec.openplanner.team/stops/H1ma233a", "https://tec.openplanner.team/stops/H1ob331b"], ["https://tec.openplanner.team/stops/Cmyland5", "https://tec.openplanner.team/stops/Cmymarb2"], ["https://tec.openplanner.team/stops/N507aqb", "https://tec.openplanner.team/stops/N581acb"], ["https://tec.openplanner.team/stops/H4ty342b", "https://tec.openplanner.team/stops/H4ty397b"], ["https://tec.openplanner.team/stops/X950aab", "https://tec.openplanner.team/stops/X950ada"], ["https://tec.openplanner.team/stops/Bbrlpar2", "https://tec.openplanner.team/stops/Bbrlrph2"], ["https://tec.openplanner.team/stops/Lhrbell1", "https://tec.openplanner.team/stops/Lhrtunn2"], ["https://tec.openplanner.team/stops/N232bab", "https://tec.openplanner.team/stops/N232bba"], ["https://tec.openplanner.team/stops/Btubdeh2", "https://tec.openplanner.team/stops/Btubga04"], ["https://tec.openplanner.team/stops/Cmeptmi5", "https://tec.openplanner.team/stops/Cmeptmi6"], ["https://tec.openplanner.team/stops/Bgliaau2", "https://tec.openplanner.team/stops/Bmalwvi1"], ["https://tec.openplanner.team/stops/N308aja", "https://tec.openplanner.team/stops/X308akb"], ["https://tec.openplanner.team/stops/Cgzbouh2", "https://tec.openplanner.team/stops/Cgzgrru2"], ["https://tec.openplanner.team/stops/LAieg--3", "https://tec.openplanner.team/stops/LAipala1"], ["https://tec.openplanner.team/stops/H4bo181a", "https://tec.openplanner.team/stops/H4bo181b"], ["https://tec.openplanner.team/stops/LHEcoll1", "https://tec.openplanner.team/stops/LHEcoll2"], ["https://tec.openplanner.team/stops/H4hu116b", "https://tec.openplanner.team/stops/H4ld130b"], ["https://tec.openplanner.team/stops/LTEcamp2", "https://tec.openplanner.team/stops/LTEkl121"], ["https://tec.openplanner.team/stops/LWAlieg2", "https://tec.openplanner.team/stops/LWAvisi2"], ["https://tec.openplanner.team/stops/Lghmeun3", "https://tec.openplanner.team/stops/Ljegare2"], ["https://tec.openplanner.team/stops/H1og133a", "https://tec.openplanner.team/stops/H4re226a"], ["https://tec.openplanner.team/stops/H1fl138b", "https://tec.openplanner.team/stops/H1fr109b"], ["https://tec.openplanner.team/stops/X904aka", "https://tec.openplanner.team/stops/X943afa"], ["https://tec.openplanner.team/stops/N553afa", "https://tec.openplanner.team/stops/N553afb"], ["https://tec.openplanner.team/stops/Bmouegl2", "https://tec.openplanner.team/stops/Bottpma1"], ["https://tec.openplanner.team/stops/LTyh24-1", "https://tec.openplanner.team/stops/LTywyna2"], ["https://tec.openplanner.team/stops/Cmamonu2", "https://tec.openplanner.team/stops/Cmohame1"], ["https://tec.openplanner.team/stops/N513apb", "https://tec.openplanner.team/stops/N513ara"], ["https://tec.openplanner.team/stops/N560ada", "https://tec.openplanner.team/stops/N560adb"], ["https://tec.openplanner.team/stops/H1em107a", "https://tec.openplanner.team/stops/H1em109b"], ["https://tec.openplanner.team/stops/N536ada", "https://tec.openplanner.team/stops/N580aga"], ["https://tec.openplanner.team/stops/Cchsud04", "https://tec.openplanner.team/stops/Cmlgoff1"], ["https://tec.openplanner.team/stops/LAUcose2", "https://tec.openplanner.team/stops/LFdbruy2"], ["https://tec.openplanner.team/stops/N161aab", "https://tec.openplanner.team/stops/N161afb"], ["https://tec.openplanner.team/stops/X788ada", "https://tec.openplanner.team/stops/X788aeb"], ["https://tec.openplanner.team/stops/N503aea", "https://tec.openplanner.team/stops/N503aib"], ["https://tec.openplanner.team/stops/LMfange2", "https://tec.openplanner.team/stops/LMfbuck1"], ["https://tec.openplanner.team/stops/Lvimc--2", "https://tec.openplanner.team/stops/Lvitour1"], ["https://tec.openplanner.team/stops/X782akb", "https://tec.openplanner.team/stops/X782ama"], ["https://tec.openplanner.team/stops/LaNdorf2", "https://tec.openplanner.team/stops/LsC216-2"], ["https://tec.openplanner.team/stops/Lseberg4", "https://tec.openplanner.team/stops/Lsefive1"], ["https://tec.openplanner.team/stops/Bbiehev2", "https://tec.openplanner.team/stops/Bboncgs1"], ["https://tec.openplanner.team/stops/LRteg--*", "https://tec.openplanner.team/stops/LVbpave1"], ["https://tec.openplanner.team/stops/LBItnt-*", "https://tec.openplanner.team/stops/LVefont2"], ["https://tec.openplanner.team/stops/Cctchav1", "https://tec.openplanner.team/stops/Cctjoue1"], ["https://tec.openplanner.team/stops/Blemwob1", "https://tec.openplanner.team/stops/Blemwob4"], ["https://tec.openplanner.team/stops/LMebove1", "https://tec.openplanner.team/stops/LMemora2"], ["https://tec.openplanner.team/stops/Baeggar1", "https://tec.openplanner.team/stops/NR38abb"], ["https://tec.openplanner.team/stops/Lemarde2", "https://tec.openplanner.team/stops/Lemhuet1"], ["https://tec.openplanner.team/stops/LGepeck1", "https://tec.openplanner.team/stops/LGepeck2"], ["https://tec.openplanner.team/stops/LSGhagn1", "https://tec.openplanner.team/stops/LSGmale1"], ["https://tec.openplanner.team/stops/N117aaa", "https://tec.openplanner.team/stops/N117azb"], ["https://tec.openplanner.team/stops/H1je216b", "https://tec.openplanner.team/stops/H1je368a"], ["https://tec.openplanner.team/stops/Bolppla1", "https://tec.openplanner.team/stops/Bolppla3"], ["https://tec.openplanner.team/stops/X346aba", "https://tec.openplanner.team/stops/X346afa"], ["https://tec.openplanner.team/stops/Lvecrot2", "https://tec.openplanner.team/stops/Lvepoud1"], ["https://tec.openplanner.team/stops/H4ka179a", "https://tec.openplanner.team/stops/H4ka399a"], ["https://tec.openplanner.team/stops/H2go114d", "https://tec.openplanner.team/stops/H2go115a"], ["https://tec.openplanner.team/stops/H2ha132b", "https://tec.openplanner.team/stops/H2tr247b"], ["https://tec.openplanner.team/stops/H1le118a", "https://tec.openplanner.team/stops/H1ol142a"], ["https://tec.openplanner.team/stops/LAYdieu2", "https://tec.openplanner.team/stops/LAYsupe2"], ["https://tec.openplanner.team/stops/Cpcathe2", "https://tec.openplanner.team/stops/Cpctrau2"], ["https://tec.openplanner.team/stops/X948aoa", "https://tec.openplanner.team/stops/X949ajb"], ["https://tec.openplanner.team/stops/N501fra", "https://tec.openplanner.team/stops/N501gma"], ["https://tec.openplanner.team/stops/Bjod7co2", "https://tec.openplanner.team/stops/Bjodfab2"], ["https://tec.openplanner.team/stops/Bcrbast1", "https://tec.openplanner.team/stops/Bcrbast2"], ["https://tec.openplanner.team/stops/Lbrfusi1", "https://tec.openplanner.team/stops/Lbrfusi2"], ["https://tec.openplanner.team/stops/NL37aja", "https://tec.openplanner.team/stops/NL75aca"], ["https://tec.openplanner.team/stops/Blimch%C3%A21", "https://tec.openplanner.team/stops/Blimrof2"], ["https://tec.openplanner.team/stops/Bmsgaxp1", "https://tec.openplanner.team/stops/Bmsgaxp2"], ["https://tec.openplanner.team/stops/Crcpcom1", "https://tec.openplanner.team/stops/Crcplac3"], ["https://tec.openplanner.team/stops/LCsfize1", "https://tec.openplanner.team/stops/LCsgend2"], ["https://tec.openplanner.team/stops/LaSbahn1", "https://tec.openplanner.team/stops/LwAlont1"], ["https://tec.openplanner.team/stops/H4mo178a", "https://tec.openplanner.team/stops/H4mo184a"], ["https://tec.openplanner.team/stops/Bglicsm1", "https://tec.openplanner.team/stops/Bgligra2"], ["https://tec.openplanner.team/stops/Bbealou2", "https://tec.openplanner.team/stops/Bhmmbog1"], ["https://tec.openplanner.team/stops/X713aba", "https://tec.openplanner.team/stops/X713abb"], ["https://tec.openplanner.team/stops/X659aja", "https://tec.openplanner.team/stops/X659aka"], ["https://tec.openplanner.team/stops/N506bba", "https://tec.openplanner.team/stops/N506bfb"], ["https://tec.openplanner.team/stops/LbUhuge1", "https://tec.openplanner.team/stops/LbUpost1"], ["https://tec.openplanner.team/stops/LNCmarc1", "https://tec.openplanner.team/stops/LNCvill2"], ["https://tec.openplanner.team/stops/Cmomalg2", "https://tec.openplanner.team/stops/Cromart2"], ["https://tec.openplanner.team/stops/X790aha", "https://tec.openplanner.team/stops/X790ahb"], ["https://tec.openplanner.team/stops/LMfbacu1", "https://tec.openplanner.team/stops/LMfsart2"], ["https://tec.openplanner.team/stops/X672aab", "https://tec.openplanner.team/stops/X672abb"], ["https://tec.openplanner.team/stops/X948ava", "https://tec.openplanner.team/stops/X948awa"], ["https://tec.openplanner.team/stops/X561aeb", "https://tec.openplanner.team/stops/X576afb"], ["https://tec.openplanner.team/stops/Cfamate1", "https://tec.openplanner.team/stops/Cpicite1"], ["https://tec.openplanner.team/stops/LeMdorf1", "https://tec.openplanner.team/stops/LmFdorf1"], ["https://tec.openplanner.team/stops/Louhauf1", "https://tec.openplanner.team/stops/Lscstan3"], ["https://tec.openplanner.team/stops/X661ana", "https://tec.openplanner.team/stops/X661apa"], ["https://tec.openplanner.team/stops/Lvochev1", "https://tec.openplanner.team/stops/Lvoplac1"], ["https://tec.openplanner.team/stops/LeYauss2", "https://tec.openplanner.team/stops/LeYdepo1"], ["https://tec.openplanner.team/stops/Cgogare2", "https://tec.openplanner.team/stops/Cragoss2"], ["https://tec.openplanner.team/stops/Cfachap2", "https://tec.openplanner.team/stops/Cfastan2"], ["https://tec.openplanner.team/stops/H2bh113b", "https://tec.openplanner.team/stops/H2lc146b"], ["https://tec.openplanner.team/stops/NR21aaa", "https://tec.openplanner.team/stops/NR38afb"], ["https://tec.openplanner.team/stops/N337ahb", "https://tec.openplanner.team/stops/N337aib"], ["https://tec.openplanner.team/stops/LBUplac1", "https://tec.openplanner.team/stops/NL30afb"], ["https://tec.openplanner.team/stops/Bbstchv1", "https://tec.openplanner.team/stops/Btilsce1"], ["https://tec.openplanner.team/stops/X664abb", "https://tec.openplanner.team/stops/X664add"], ["https://tec.openplanner.team/stops/NL76aaa", "https://tec.openplanner.team/stops/NL76ana"], ["https://tec.openplanner.team/stops/H1au113b", "https://tec.openplanner.team/stops/H1mr125a"], ["https://tec.openplanner.team/stops/Lpeatel1", "https://tec.openplanner.team/stops/Lpeprev2"], ["https://tec.openplanner.team/stops/Lheneuv3", "https://tec.openplanner.team/stops/Lheneuv4"], ["https://tec.openplanner.team/stops/Cthathe4", "https://tec.openplanner.team/stops/Cthgend2"], ["https://tec.openplanner.team/stops/H1cv101a", "https://tec.openplanner.team/stops/H1ju121a"], ["https://tec.openplanner.team/stops/N516aha", "https://tec.openplanner.team/stops/N516ahb"], ["https://tec.openplanner.team/stops/LOthiro2", "https://tec.openplanner.team/stops/LVsbrux2"], ["https://tec.openplanner.team/stops/N535abb", "https://tec.openplanner.team/stops/N535aea"], ["https://tec.openplanner.team/stops/N501eby", "https://tec.openplanner.team/stops/N501fwz"], ["https://tec.openplanner.team/stops/N503aea", "https://tec.openplanner.team/stops/N580aca"], ["https://tec.openplanner.team/stops/X911acb", "https://tec.openplanner.team/stops/X911aoa"], ["https://tec.openplanner.team/stops/Bgntffo1", "https://tec.openplanner.team/stops/Bgntpla2"], ["https://tec.openplanner.team/stops/LVPeg--1", "https://tec.openplanner.team/stops/LVPgrot2"], ["https://tec.openplanner.team/stops/Bpthcai1", "https://tec.openplanner.team/stops/Bwanorp1"], ["https://tec.openplanner.team/stops/LMOfrel2", "https://tec.openplanner.team/stops/LNveg--1"], ["https://tec.openplanner.team/stops/N514aaa", "https://tec.openplanner.team/stops/N514aca"], ["https://tec.openplanner.team/stops/Lsepapi1", "https://tec.openplanner.team/stops/Lsepuit2"], ["https://tec.openplanner.team/stops/N321aeb", "https://tec.openplanner.team/stops/N387aab"], ["https://tec.openplanner.team/stops/LHNgend2", "https://tec.openplanner.team/stops/LVPcoeu1"], ["https://tec.openplanner.team/stops/X922aha", "https://tec.openplanner.team/stops/X922aia"], ["https://tec.openplanner.team/stops/X812aza", "https://tec.openplanner.team/stops/X812baa"], ["https://tec.openplanner.team/stops/X919afa", "https://tec.openplanner.team/stops/X919aoa"], ["https://tec.openplanner.team/stops/Cplcafp2", "https://tec.openplanner.team/stops/Cplstfa3"], ["https://tec.openplanner.team/stops/LmRkreu1", "https://tec.openplanner.team/stops/LmRkreu4"], ["https://tec.openplanner.team/stops/N534asb", "https://tec.openplanner.team/stops/N543coa"], ["https://tec.openplanner.team/stops/X801apb", "https://tec.openplanner.team/stops/X801asa"], ["https://tec.openplanner.team/stops/N161aea", "https://tec.openplanner.team/stops/N161aeb"], ["https://tec.openplanner.team/stops/Lsmcime1", "https://tec.openplanner.team/stops/Lsmdepo1"], ["https://tec.openplanner.team/stops/LBUvall2", "https://tec.openplanner.team/stops/NL57akb"], ["https://tec.openplanner.team/stops/H1ms260a", "https://tec.openplanner.team/stops/H1ms308c"], ["https://tec.openplanner.team/stops/H1hh114a", "https://tec.openplanner.team/stops/H1hh114b"], ["https://tec.openplanner.team/stops/LTPlegr1", "https://tec.openplanner.team/stops/LTPtroi1"], ["https://tec.openplanner.team/stops/N579aea", "https://tec.openplanner.team/stops/N579aeb"], ["https://tec.openplanner.team/stops/H1mv239a", "https://tec.openplanner.team/stops/H1mv241a"], ["https://tec.openplanner.team/stops/LbOdorf1", "https://tec.openplanner.team/stops/LbOdorf2"], ["https://tec.openplanner.team/stops/H1je222a", "https://tec.openplanner.team/stops/H1je366b"], ["https://tec.openplanner.team/stops/LHTbeau1", "https://tec.openplanner.team/stops/LHThall2"], ["https://tec.openplanner.team/stops/Cmlbeau4", "https://tec.openplanner.team/stops/Cmlrous1"], ["https://tec.openplanner.team/stops/H4ep130a", "https://tec.openplanner.team/stops/H4ep131b"], ["https://tec.openplanner.team/stops/LLebrux1", "https://tec.openplanner.team/stops/LLegern1"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lhuchev1"], ["https://tec.openplanner.team/stops/N426aea", "https://tec.openplanner.team/stops/N426aeb"], ["https://tec.openplanner.team/stops/X745aba", "https://tec.openplanner.team/stops/X745abb"], ["https://tec.openplanner.team/stops/Bcseche1", "https://tec.openplanner.team/stops/Bcsemon1"], ["https://tec.openplanner.team/stops/N122aba", "https://tec.openplanner.team/stops/N122abb"], ["https://tec.openplanner.team/stops/H4hx115a", "https://tec.openplanner.team/stops/H4wa161a"], ["https://tec.openplanner.team/stops/X948alb", "https://tec.openplanner.team/stops/X948ana"], ["https://tec.openplanner.team/stops/X812aya", "https://tec.openplanner.team/stops/X834aab"], ["https://tec.openplanner.team/stops/X739aja", "https://tec.openplanner.team/stops/X912aha"], ["https://tec.openplanner.team/stops/H4hg158b", "https://tec.openplanner.team/stops/H4hg159b"], ["https://tec.openplanner.team/stops/LJUfort1", "https://tec.openplanner.team/stops/LJUfort2"], ["https://tec.openplanner.team/stops/LScchpl2", "https://tec.openplanner.team/stops/LSceg--3"], ["https://tec.openplanner.team/stops/N501cmc", "https://tec.openplanner.team/stops/N501cmd"], ["https://tec.openplanner.team/stops/Lvebiol2", "https://tec.openplanner.team/stops/Lvepala5"], ["https://tec.openplanner.team/stops/Bwspjon2", "https://tec.openplanner.team/stops/Bwspm371"], ["https://tec.openplanner.team/stops/X664aia", "https://tec.openplanner.team/stops/X664aib"], ["https://tec.openplanner.team/stops/LFPstro1", "https://tec.openplanner.team/stops/LFPstro2"], ["https://tec.openplanner.team/stops/H4ta115a", "https://tec.openplanner.team/stops/H4ta120b"], ["https://tec.openplanner.team/stops/Chhclde1", "https://tec.openplanner.team/stops/Chhclde2"], ["https://tec.openplanner.team/stops/N101aea", "https://tec.openplanner.team/stops/N101aga"], ["https://tec.openplanner.team/stops/LFProt-2", "https://tec.openplanner.team/stops/LVu40--1"], ["https://tec.openplanner.team/stops/Lrafusi2", "https://tec.openplanner.team/stops/LSAvieu2"], ["https://tec.openplanner.team/stops/H4ld124a", "https://tec.openplanner.team/stops/H4ld124b"], ["https://tec.openplanner.team/stops/LBSgeer1", "https://tec.openplanner.team/stops/LBSgeer2"], ["https://tec.openplanner.team/stops/X912akb", "https://tec.openplanner.team/stops/X912ala"], ["https://tec.openplanner.team/stops/X811amb", "https://tec.openplanner.team/stops/X811apb"], ["https://tec.openplanner.team/stops/H4or113a", "https://tec.openplanner.team/stops/H4or116b"], ["https://tec.openplanner.team/stops/Crccano4", "https://tec.openplanner.team/stops/Crcrlf2"], ["https://tec.openplanner.team/stops/LPRfour2", "https://tec.openplanner.team/stops/LSHries1"], ["https://tec.openplanner.team/stops/H2pr116b", "https://tec.openplanner.team/stops/H2pr119a"], ["https://tec.openplanner.team/stops/LHZcime2", "https://tec.openplanner.team/stops/LHZpara1"], ["https://tec.openplanner.team/stops/N543alb", "https://tec.openplanner.team/stops/N543aua"], ["https://tec.openplanner.team/stops/H1mm122a", "https://tec.openplanner.team/stops/H1mm122d"], ["https://tec.openplanner.team/stops/LRmkult1", "https://tec.openplanner.team/stops/LRmsmvo1"], ["https://tec.openplanner.team/stops/X801aca", "https://tec.openplanner.team/stops/X801bua"], ["https://tec.openplanner.team/stops/X979aoa", "https://tec.openplanner.team/stops/X982bvb"], ["https://tec.openplanner.team/stops/H4la197a", "https://tec.openplanner.team/stops/H4la198a"], ["https://tec.openplanner.team/stops/H2hg157b", "https://tec.openplanner.team/stops/H2hg157c"], ["https://tec.openplanner.team/stops/X662afa", "https://tec.openplanner.team/stops/X662ara"], ["https://tec.openplanner.team/stops/Lheaaz-2", "https://tec.openplanner.team/stops/LHSvina1"], ["https://tec.openplanner.team/stops/N558ada", "https://tec.openplanner.team/stops/N558adb"], ["https://tec.openplanner.team/stops/Bclgfva1", "https://tec.openplanner.team/stops/Bclgfva2"], ["https://tec.openplanner.team/stops/N543apa", "https://tec.openplanner.team/stops/N543ayb"], ["https://tec.openplanner.team/stops/H5bl119d", "https://tec.openplanner.team/stops/H5bl123a"], ["https://tec.openplanner.team/stops/N109aaa", "https://tec.openplanner.team/stops/N109ada"], ["https://tec.openplanner.team/stops/Cbblacb2", "https://tec.openplanner.team/stops/Cvregl2"], ["https://tec.openplanner.team/stops/H1ba102a", "https://tec.openplanner.team/stops/H1ba114d"], ["https://tec.openplanner.team/stops/X917aea", "https://tec.openplanner.team/stops/X921abb"], ["https://tec.openplanner.team/stops/H4fa128a", "https://tec.openplanner.team/stops/H4fa128b"], ["https://tec.openplanner.team/stops/Lanplat2", "https://tec.openplanner.team/stops/Lanpont2"], ["https://tec.openplanner.team/stops/H2fy122a", "https://tec.openplanner.team/stops/H2lh131a"], ["https://tec.openplanner.team/stops/Ccocroi2", "https://tec.openplanner.team/stops/Ctrpn2"], ["https://tec.openplanner.team/stops/LHUdeni4", "https://tec.openplanner.team/stops/LHUloui1"], ["https://tec.openplanner.team/stops/Cbfdufa1", "https://tec.openplanner.team/stops/Ccimont1"], ["https://tec.openplanner.team/stops/X394aab", "https://tec.openplanner.team/stops/X394abb"], ["https://tec.openplanner.team/stops/X636aob", "https://tec.openplanner.team/stops/X636apb"], ["https://tec.openplanner.team/stops/Cmlhauc1", "https://tec.openplanner.team/stops/Cmlhauc2"], ["https://tec.openplanner.team/stops/LhEherb2", "https://tec.openplanner.team/stops/LhElont2"], ["https://tec.openplanner.team/stops/LBichat1", "https://tec.openplanner.team/stops/LBivi--1"], ["https://tec.openplanner.team/stops/N204adb", "https://tec.openplanner.team/stops/N204aga"], ["https://tec.openplanner.team/stops/X608akb", "https://tec.openplanner.team/stops/X608ala"], ["https://tec.openplanner.team/stops/N251aaa", "https://tec.openplanner.team/stops/N251aab"], ["https://tec.openplanner.team/stops/H1gi119c", "https://tec.openplanner.team/stops/H1gi123b"], ["https://tec.openplanner.team/stops/Ctupont2", "https://tec.openplanner.team/stops/Ctupont4"], ["https://tec.openplanner.team/stops/Cgogb1", "https://tec.openplanner.team/stops/Cgogb2"], ["https://tec.openplanner.team/stops/N539ada", "https://tec.openplanner.team/stops/N539ana"], ["https://tec.openplanner.team/stops/N167aab", "https://tec.openplanner.team/stops/N167abb"], ["https://tec.openplanner.team/stops/N340ahb", "https://tec.openplanner.team/stops/N340aia"], ["https://tec.openplanner.team/stops/X620aba", "https://tec.openplanner.team/stops/X620acb"], ["https://tec.openplanner.team/stops/LAyabri1", "https://tec.openplanner.team/stops/Lrechap1"], ["https://tec.openplanner.team/stops/Bnivbau2", "https://tec.openplanner.team/stops/Bnivmet1"], ["https://tec.openplanner.team/stops/LjeGRPME", "https://tec.openplanner.team/stops/Ljehotv1"], ["https://tec.openplanner.team/stops/LJAfawe2", "https://tec.openplanner.team/stops/LJAwerf1"], ["https://tec.openplanner.team/stops/LOdcris2", "https://tec.openplanner.team/stops/LOdkeme1"], ["https://tec.openplanner.team/stops/X822ara", "https://tec.openplanner.team/stops/X822arb"], ["https://tec.openplanner.team/stops/Lbemc--2", "https://tec.openplanner.team/stops/Ljumesa1"], ["https://tec.openplanner.team/stops/Lvchaus1", "https://tec.openplanner.team/stops/Lvchenn1"], ["https://tec.openplanner.team/stops/Bgdhbvu2", "https://tec.openplanner.team/stops/Bgdhmet2"], ["https://tec.openplanner.team/stops/X982cea", "https://tec.openplanner.team/stops/X983aeb"], ["https://tec.openplanner.team/stops/X724aba", "https://tec.openplanner.team/stops/X724aca"], ["https://tec.openplanner.team/stops/LaAgold1", "https://tec.openplanner.team/stops/LaAseba1"], ["https://tec.openplanner.team/stops/LBoegli2", "https://tec.openplanner.team/stops/LBQmaye1"], ["https://tec.openplanner.team/stops/H4wa150b", "https://tec.openplanner.team/stops/H4wa159a"], ["https://tec.openplanner.team/stops/NL76aha", "https://tec.openplanner.team/stops/NL77aca"], ["https://tec.openplanner.team/stops/X620aab", "https://tec.openplanner.team/stops/X620abb"], ["https://tec.openplanner.team/stops/Lticoq-1", "https://tec.openplanner.team/stops/Ltitill*"], ["https://tec.openplanner.team/stops/X940aga", "https://tec.openplanner.team/stops/X946abb"], ["https://tec.openplanner.team/stops/N509aca", "https://tec.openplanner.team/stops/N509afa"], ["https://tec.openplanner.team/stops/X364aab", "https://tec.openplanner.team/stops/X364abb"], ["https://tec.openplanner.team/stops/H5bl121b", "https://tec.openplanner.team/stops/H5bl144b"], ["https://tec.openplanner.team/stops/Lhufays2", "https://tec.openplanner.team/stops/Lhurfay1"], ["https://tec.openplanner.team/stops/H1by108a", "https://tec.openplanner.team/stops/H1by108c"], ["https://tec.openplanner.team/stops/Bnivbxl2", "https://tec.openplanner.team/stops/Bnivpso2"], ["https://tec.openplanner.team/stops/LoDcorn2", "https://tec.openplanner.team/stops/LoDschu2"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/NH03aea"], ["https://tec.openplanner.team/stops/LMYlieg1", "https://tec.openplanner.team/stops/LMYvill2"], ["https://tec.openplanner.team/stops/Ctrplac1", "https://tec.openplanner.team/stops/Ctrstro1"], ["https://tec.openplanner.team/stops/Ldidefo1", "https://tec.openplanner.team/stops/Ldidefo2"], ["https://tec.openplanner.team/stops/Lheelva2", "https://tec.openplanner.team/stops/LHSvina1"], ["https://tec.openplanner.team/stops/X639alb", "https://tec.openplanner.team/stops/X639amb"], ["https://tec.openplanner.team/stops/N305aaa", "https://tec.openplanner.team/stops/N329aab"], ["https://tec.openplanner.team/stops/X670aia", "https://tec.openplanner.team/stops/X670aib"], ["https://tec.openplanner.team/stops/N224aba", "https://tec.openplanner.team/stops/X224abb"], ["https://tec.openplanner.team/stops/LMOcorn3", "https://tec.openplanner.team/stops/LMOcorn4"], ["https://tec.openplanner.team/stops/Cchwate1", "https://tec.openplanner.team/stops/Cchwate2"], ["https://tec.openplanner.team/stops/X636bab", "https://tec.openplanner.team/stops/X670aqa"], ["https://tec.openplanner.team/stops/N229aga", "https://tec.openplanner.team/stops/N229aqb"], ["https://tec.openplanner.team/stops/H1fr107b", "https://tec.openplanner.team/stops/H1fr130a"], ["https://tec.openplanner.team/stops/H4lh161a", "https://tec.openplanner.team/stops/H4oe148a"], ["https://tec.openplanner.team/stops/X869aea", "https://tec.openplanner.team/stops/X871adb"], ["https://tec.openplanner.team/stops/N562agb", "https://tec.openplanner.team/stops/N562aia"], ["https://tec.openplanner.team/stops/LeUgulc2", "https://tec.openplanner.team/stops/LeUhaag1"], ["https://tec.openplanner.team/stops/LmYkreu2", "https://tec.openplanner.team/stops/LvAschw2"], ["https://tec.openplanner.team/stops/LCtcref1", "https://tec.openplanner.team/stops/X780aab"], ["https://tec.openplanner.team/stops/LHuetat1", "https://tec.openplanner.team/stops/LMHcant1"], ["https://tec.openplanner.team/stops/N209aca", "https://tec.openplanner.team/stops/N209adb"], ["https://tec.openplanner.team/stops/Bgrhhot2", "https://tec.openplanner.team/stops/N518aaa"], ["https://tec.openplanner.team/stops/N115aba", "https://tec.openplanner.team/stops/N115afb"], ["https://tec.openplanner.team/stops/H1wa138a", "https://tec.openplanner.team/stops/H1wa138b"], ["https://tec.openplanner.team/stops/LrOtria2", "https://tec.openplanner.team/stops/LrOwahl1"], ["https://tec.openplanner.team/stops/H1al146b", "https://tec.openplanner.team/stops/H1go169a"], ["https://tec.openplanner.team/stops/NH01aia", "https://tec.openplanner.team/stops/NH01amb"], ["https://tec.openplanner.team/stops/X807ada", "https://tec.openplanner.team/stops/X807adb"], ["https://tec.openplanner.team/stops/LrEkape1", "https://tec.openplanner.team/stops/LrErauw1"], ["https://tec.openplanner.team/stops/Bpiehte1", "https://tec.openplanner.team/stops/Bpiehte2"], ["https://tec.openplanner.team/stops/Bjdscnd1", "https://tec.openplanner.team/stops/Bjodmal1"], ["https://tec.openplanner.team/stops/X897ana", "https://tec.openplanner.team/stops/X897anb"], ["https://tec.openplanner.team/stops/X724afa", "https://tec.openplanner.team/stops/X724agb"], ["https://tec.openplanner.team/stops/Cmlours1", "https://tec.openplanner.team/stops/Cmlvxmo2"], ["https://tec.openplanner.team/stops/X786abb", "https://tec.openplanner.team/stops/X786aca"], ["https://tec.openplanner.team/stops/Lalchar1", "https://tec.openplanner.team/stops/LXhcite1"], ["https://tec.openplanner.team/stops/LeLbegl1", "https://tec.openplanner.team/stops/LnIfrie1"], ["https://tec.openplanner.team/stops/X826ada", "https://tec.openplanner.team/stops/X826aeb"], ["https://tec.openplanner.team/stops/X657aia", "https://tec.openplanner.team/stops/X657ama"], ["https://tec.openplanner.team/stops/H2ma208a", "https://tec.openplanner.team/stops/H2ma208b"], ["https://tec.openplanner.team/stops/Blhugai1", "https://tec.openplanner.team/stops/Blhunys3"], ["https://tec.openplanner.team/stops/H2le149a", "https://tec.openplanner.team/stops/H2ml110b"], ["https://tec.openplanner.team/stops/X801cga", "https://tec.openplanner.team/stops/X836aha"], ["https://tec.openplanner.team/stops/LJEmalg1", "https://tec.openplanner.team/stops/LVEphar1"], ["https://tec.openplanner.team/stops/Cmitrie2", "https://tec.openplanner.team/stops/Csecroi2"], ["https://tec.openplanner.team/stops/H1cd111a", "https://tec.openplanner.team/stops/H1ne149a"], ["https://tec.openplanner.team/stops/X996aba", "https://tec.openplanner.team/stops/X996aha"], ["https://tec.openplanner.team/stops/NH01aoa", "https://tec.openplanner.team/stops/NH01aob"], ["https://tec.openplanner.team/stops/Cmmcarr1", "https://tec.openplanner.team/stops/Cmmcime1"], ["https://tec.openplanner.team/stops/X757ahb", "https://tec.openplanner.team/stops/X757anb"], ["https://tec.openplanner.team/stops/N226aaa", "https://tec.openplanner.team/stops/N261aab"], ["https://tec.openplanner.team/stops/Bbcoeco1", "https://tec.openplanner.team/stops/Bbcoser1"], ["https://tec.openplanner.team/stops/LeUhaas1", "https://tec.openplanner.team/stops/LeUhaas3"], ["https://tec.openplanner.team/stops/H4ga157a", "https://tec.openplanner.team/stops/H4ga414a"], ["https://tec.openplanner.team/stops/LmIvale1", "https://tec.openplanner.team/stops/LmIzent1"], ["https://tec.openplanner.team/stops/H4ch117a", "https://tec.openplanner.team/stops/H4ch119b"], ["https://tec.openplanner.team/stops/N310aeb", "https://tec.openplanner.team/stops/X892aga"], ["https://tec.openplanner.team/stops/LtEnach2", "https://tec.openplanner.team/stops/LtEnatu1"], ["https://tec.openplanner.team/stops/LXfcore1", "https://tec.openplanner.team/stops/LXflong1"], ["https://tec.openplanner.team/stops/N117aca", "https://tec.openplanner.team/stops/N147ada"], ["https://tec.openplanner.team/stops/N308asa", "https://tec.openplanner.team/stops/N339acb"], ["https://tec.openplanner.team/stops/H4au143a", "https://tec.openplanner.team/stops/H4og216a"], ["https://tec.openplanner.team/stops/N241aga", "https://tec.openplanner.team/stops/N241agb"], ["https://tec.openplanner.team/stops/X651agb", "https://tec.openplanner.team/stops/X652ada"], ["https://tec.openplanner.team/stops/X614agb", "https://tec.openplanner.team/stops/X614ara"], ["https://tec.openplanner.team/stops/H1sb148a", "https://tec.openplanner.team/stops/H1sb151b"], ["https://tec.openplanner.team/stops/H1fr109a", "https://tec.openplanner.team/stops/H1lb134b"], ["https://tec.openplanner.team/stops/LENchem1", "https://tec.openplanner.team/stops/LENparc2"], ["https://tec.openplanner.team/stops/Cflcarr2", "https://tec.openplanner.team/stops/Cflchmo2"], ["https://tec.openplanner.team/stops/Bbsicen1", "https://tec.openplanner.team/stops/Bnivlpa1"], ["https://tec.openplanner.team/stops/H1ht128a", "https://tec.openplanner.team/stops/H1ht128b"], ["https://tec.openplanner.team/stops/LmS11--1", "https://tec.openplanner.team/stops/LmSdorf1"], ["https://tec.openplanner.team/stops/N562aza", "https://tec.openplanner.team/stops/N562azb"], ["https://tec.openplanner.team/stops/N243aeb", "https://tec.openplanner.team/stops/N252aba"], ["https://tec.openplanner.team/stops/N331aha", "https://tec.openplanner.team/stops/N331aia"], ["https://tec.openplanner.team/stops/H1hv131b", "https://tec.openplanner.team/stops/H1hv133a"], ["https://tec.openplanner.team/stops/Chhbiet1", "https://tec.openplanner.team/stops/Chhthui1"], ["https://tec.openplanner.team/stops/LBbbac-1", "https://tec.openplanner.team/stops/X561ada"], ["https://tec.openplanner.team/stops/Lbrptbr5", "https://tec.openplanner.team/stops/Llgbavi1"], ["https://tec.openplanner.team/stops/X661acb", "https://tec.openplanner.team/stops/X661bcb"], ["https://tec.openplanner.team/stops/X654aba", "https://tec.openplanner.team/stops/X654aka"], ["https://tec.openplanner.team/stops/Cmlceri2", "https://tec.openplanner.team/stops/Cmmbmad2"], ["https://tec.openplanner.team/stops/H5rx106a", "https://tec.openplanner.team/stops/H5rx122a"], ["https://tec.openplanner.team/stops/N501aeb", "https://tec.openplanner.team/stops/N502ada"], ["https://tec.openplanner.team/stops/Bblacco1", "https://tec.openplanner.team/stops/Bblavhu2"], ["https://tec.openplanner.team/stops/N501ija", "https://tec.openplanner.team/stops/N501ila"], ["https://tec.openplanner.team/stops/H1ml112a", "https://tec.openplanner.team/stops/H1ml112b"], ["https://tec.openplanner.team/stops/Bwagcus1", "https://tec.openplanner.team/stops/Csachas1"], ["https://tec.openplanner.team/stops/Cctstro3", "https://tec.openplanner.team/stops/NC02agc"], ["https://tec.openplanner.team/stops/LMtcent2", "https://tec.openplanner.team/stops/LSdsa8a1"], ["https://tec.openplanner.team/stops/LSeaque4", "https://tec.openplanner.team/stops/LSecomm2"], ["https://tec.openplanner.team/stops/Bboncha2", "https://tec.openplanner.team/stops/Bgzdfpo1"], ["https://tec.openplanner.team/stops/X782aca", "https://tec.openplanner.team/stops/X782aea"], ["https://tec.openplanner.team/stops/H4ty294a", "https://tec.openplanner.team/stops/H4ty330c"], ["https://tec.openplanner.team/stops/Llgchar1", "https://tec.openplanner.team/stops/Llgfusc6"], ["https://tec.openplanner.team/stops/N260aaa", "https://tec.openplanner.team/stops/N270afa"], ["https://tec.openplanner.team/stops/Lmleg--2", "https://tec.openplanner.team/stops/Lmlhaut2"], ["https://tec.openplanner.team/stops/Lhrbass1", "https://tec.openplanner.team/stops/Lhrecol2"], ["https://tec.openplanner.team/stops/X725arb", "https://tec.openplanner.team/stops/X725avb"], ["https://tec.openplanner.team/stops/Csoplac2", "https://tec.openplanner.team/stops/Csostoc2"], ["https://tec.openplanner.team/stops/LsCback1", "https://tec.openplanner.team/stops/LsCkirc1"], ["https://tec.openplanner.team/stops/NL76acb", "https://tec.openplanner.team/stops/NL80aaa"], ["https://tec.openplanner.team/stops/Bmlnegl3", "https://tec.openplanner.team/stops/Bmlnegl4"], ["https://tec.openplanner.team/stops/Ljuinte1", "https://tec.openplanner.team/stops/Llgchan1"], ["https://tec.openplanner.team/stops/N501gma", "https://tec.openplanner.team/stops/N501lcy"], ["https://tec.openplanner.team/stops/X754anb", "https://tec.openplanner.team/stops/X754avb"], ["https://tec.openplanner.team/stops/H1ba105a", "https://tec.openplanner.team/stops/H1ba105b"], ["https://tec.openplanner.team/stops/N218aca", "https://tec.openplanner.team/stops/N218acb"], ["https://tec.openplanner.team/stops/N501ivb", "https://tec.openplanner.team/stops/N501iwb"], ["https://tec.openplanner.team/stops/X664add", "https://tec.openplanner.team/stops/X667ada"], ["https://tec.openplanner.team/stops/H4th139a", "https://tec.openplanner.team/stops/H4th141a"], ["https://tec.openplanner.team/stops/Bnivcol2", "https://tec.openplanner.team/stops/Bnivh%C3%B4p2"], ["https://tec.openplanner.team/stops/N218aba", "https://tec.openplanner.team/stops/N218abb"], ["https://tec.openplanner.team/stops/LeYgros1", "https://tec.openplanner.team/stops/LeYraaf2"], ["https://tec.openplanner.team/stops/Cmmlong1", "https://tec.openplanner.team/stops/Cmmp2052"], ["https://tec.openplanner.team/stops/N533aga", "https://tec.openplanner.team/stops/N533amc"], ["https://tec.openplanner.team/stops/LAmeclu2", "https://tec.openplanner.team/stops/LAmwaut2"], ["https://tec.openplanner.team/stops/X636aja", "https://tec.openplanner.team/stops/X636bja"], ["https://tec.openplanner.team/stops/X982anb", "https://tec.openplanner.team/stops/X982aqc"], ["https://tec.openplanner.team/stops/LSkoran2", "https://tec.openplanner.team/stops/LSkwarf2"], ["https://tec.openplanner.team/stops/N528avb", "https://tec.openplanner.team/stops/N542apb"], ["https://tec.openplanner.team/stops/H1je215b", "https://tec.openplanner.team/stops/H1je360b"], ["https://tec.openplanner.team/stops/Lsn130-1", "https://tec.openplanner.team/stops/Lsn130-2"], ["https://tec.openplanner.team/stops/X739ahb", "https://tec.openplanner.team/stops/X911aca"], ["https://tec.openplanner.team/stops/LWenouv1", "https://tec.openplanner.team/stops/LWenouv2"], ["https://tec.openplanner.team/stops/H4mo155a", "https://tec.openplanner.team/stops/H4rx143a"], ["https://tec.openplanner.team/stops/H2bh103b", "https://tec.openplanner.team/stops/H2mg135b"], ["https://tec.openplanner.team/stops/LTOcime1", "https://tec.openplanner.team/stops/LTOeg--2"], ["https://tec.openplanner.team/stops/H1hr115a", "https://tec.openplanner.team/stops/H1hr128a"], ["https://tec.openplanner.team/stops/H1ne143b", "https://tec.openplanner.team/stops/H3so160b"], ["https://tec.openplanner.team/stops/X996aab", "https://tec.openplanner.team/stops/X996aca"], ["https://tec.openplanner.team/stops/X749aeb", "https://tec.openplanner.team/stops/X756agb"], ["https://tec.openplanner.team/stops/Bgdhlai1", "https://tec.openplanner.team/stops/Bhantui1"], ["https://tec.openplanner.team/stops/H1wa140a", "https://tec.openplanner.team/stops/H1wa153a"], ["https://tec.openplanner.team/stops/Cvretan1", "https://tec.openplanner.team/stops/Cvrhab21"], ["https://tec.openplanner.team/stops/X994aja", "https://tec.openplanner.team/stops/X995afa"], ["https://tec.openplanner.team/stops/X717agd", "https://tec.openplanner.team/stops/X781aba"], ["https://tec.openplanner.team/stops/H1em105a", "https://tec.openplanner.team/stops/H1em107b"], ["https://tec.openplanner.team/stops/X834aab", "https://tec.openplanner.team/stops/X860abb"], ["https://tec.openplanner.team/stops/H2mg135a", "https://tec.openplanner.team/stops/H2mg135b"], ["https://tec.openplanner.team/stops/Cbfusin1", "https://tec.openplanner.team/stops/Cbfusin2"], ["https://tec.openplanner.team/stops/X721afb", "https://tec.openplanner.team/stops/X721agc"], ["https://tec.openplanner.team/stops/N254acb", "https://tec.openplanner.team/stops/N254ada"], ["https://tec.openplanner.team/stops/X649acb", "https://tec.openplanner.team/stops/X671afb"], ["https://tec.openplanner.team/stops/N212aia", "https://tec.openplanner.team/stops/N212aja"], ["https://tec.openplanner.team/stops/N543bpc", "https://tec.openplanner.team/stops/N543cnb"], ["https://tec.openplanner.team/stops/N584baa", "https://tec.openplanner.team/stops/N584bab"], ["https://tec.openplanner.team/stops/H1ha201a", "https://tec.openplanner.team/stops/H1ha201b"], ["https://tec.openplanner.team/stops/H4ca123b", "https://tec.openplanner.team/stops/H4ws159b"], ["https://tec.openplanner.team/stops/N501cva", "https://tec.openplanner.team/stops/N501cvb"], ["https://tec.openplanner.team/stops/H2ll181b", "https://tec.openplanner.team/stops/H2ll257b"], ["https://tec.openplanner.team/stops/Bquepbr1", "https://tec.openplanner.team/stops/Btubsal1"], ["https://tec.openplanner.team/stops/Cdalpla1", "https://tec.openplanner.team/stops/CMdesc1"], ["https://tec.openplanner.team/stops/X783adb", "https://tec.openplanner.team/stops/X784akb"], ["https://tec.openplanner.team/stops/H1lb154a", "https://tec.openplanner.team/stops/H1lb154b"], ["https://tec.openplanner.team/stops/X615aqa", "https://tec.openplanner.team/stops/X615ara"], ["https://tec.openplanner.team/stops/LnErech2", "https://tec.openplanner.team/stops/LrEborn2"], ["https://tec.openplanner.team/stops/Cralimi2", "https://tec.openplanner.team/stops/Crarmas1"], ["https://tec.openplanner.team/stops/LcRmuhl2", "https://tec.openplanner.team/stops/LgRhouf1"], ["https://tec.openplanner.team/stops/H1mk107b", "https://tec.openplanner.team/stops/H1mk112a"], ["https://tec.openplanner.team/stops/X641aba", "https://tec.openplanner.team/stops/X642aac"], ["https://tec.openplanner.team/stops/LBAbooz2", "https://tec.openplanner.team/stops/LSRbouh1"], ["https://tec.openplanner.team/stops/N507apb", "https://tec.openplanner.team/stops/NL74aca"], ["https://tec.openplanner.team/stops/LFFeg--1", "https://tec.openplanner.team/stops/LFFmagr2"], ["https://tec.openplanner.team/stops/H4wc373a", "https://tec.openplanner.team/stops/H4wc373b"], ["https://tec.openplanner.team/stops/N135bba", "https://tec.openplanner.team/stops/N135bbb"], ["https://tec.openplanner.team/stops/Bmsgfon1", "https://tec.openplanner.team/stops/Bmsgrco1"], ["https://tec.openplanner.team/stops/Bbghcar1", "https://tec.openplanner.team/stops/Bpte1ma1"], ["https://tec.openplanner.team/stops/Lbbremy1", "https://tec.openplanner.team/stops/Ljubord2"], ["https://tec.openplanner.team/stops/N543boa", "https://tec.openplanner.team/stops/N543bob"], ["https://tec.openplanner.team/stops/Cjugohi1", "https://tec.openplanner.team/stops/Cjugohi2"], ["https://tec.openplanner.team/stops/X902ada", "https://tec.openplanner.team/stops/X999afb"], ["https://tec.openplanner.team/stops/Bpechos1", "https://tec.openplanner.team/stops/Bpecsta1"], ["https://tec.openplanner.team/stops/Croplom3", "https://tec.openplanner.team/stops/Crorpai1"], ["https://tec.openplanner.team/stops/Llglamb1", "https://tec.openplanner.team/stops/Llgrosa2"], ["https://tec.openplanner.team/stops/N547amb", "https://tec.openplanner.team/stops/N553aqb"], ["https://tec.openplanner.team/stops/Lrcprin1", "https://tec.openplanner.team/stops/Lrcvinc1"], ["https://tec.openplanner.team/stops/Bmarlor1", "https://tec.openplanner.team/stops/Bmarlor2"], ["https://tec.openplanner.team/stops/X609apa", "https://tec.openplanner.team/stops/X611aaa"], ["https://tec.openplanner.team/stops/LhGcasi1", "https://tec.openplanner.team/stops/LlNm%C3%BChl2"], ["https://tec.openplanner.team/stops/N553aaa", "https://tec.openplanner.team/stops/N553aac"], ["https://tec.openplanner.team/stops/H1br126a", "https://tec.openplanner.team/stops/H2ma202a"], ["https://tec.openplanner.team/stops/X614ava", "https://tec.openplanner.team/stops/X614bbb"], ["https://tec.openplanner.team/stops/X663ata", "https://tec.openplanner.team/stops/X663ayb"], ["https://tec.openplanner.team/stops/Cnacent2", "https://tec.openplanner.team/stops/Cnacent3"], ["https://tec.openplanner.team/stops/Cthrlef1", "https://tec.openplanner.team/stops/Cthrlef2"], ["https://tec.openplanner.team/stops/Bspkker1", "https://tec.openplanner.team/stops/H1mk113b"], ["https://tec.openplanner.team/stops/Broneco2", "https://tec.openplanner.team/stops/Bronrch1"], ["https://tec.openplanner.team/stops/N117aba", "https://tec.openplanner.team/stops/N145aga"], ["https://tec.openplanner.team/stops/Bnodlce1", "https://tec.openplanner.team/stops/Bnodlce2"], ["https://tec.openplanner.team/stops/H4rm107a", "https://tec.openplanner.team/stops/H4rm113b"], ["https://tec.openplanner.team/stops/X908acb", "https://tec.openplanner.team/stops/X908ada"], ["https://tec.openplanner.team/stops/LBpberl1", "https://tec.openplanner.team/stops/LBpcren1"], ["https://tec.openplanner.team/stops/H4pl116b", "https://tec.openplanner.team/stops/H4pl137b"], ["https://tec.openplanner.team/stops/X672aec", "https://tec.openplanner.team/stops/X672apa"], ["https://tec.openplanner.team/stops/LeLcrem2", "https://tec.openplanner.team/stops/LeLkalt2"], ["https://tec.openplanner.team/stops/LbOvith1", "https://tec.openplanner.team/stops/LnEkirc1"], ["https://tec.openplanner.team/stops/X812aia", "https://tec.openplanner.team/stops/X812awa"], ["https://tec.openplanner.team/stops/X860aaa", "https://tec.openplanner.team/stops/X860abb"], ["https://tec.openplanner.team/stops/Lanetie2", "https://tec.openplanner.team/stops/Lrctec-1"], ["https://tec.openplanner.team/stops/Crgegli1", "https://tec.openplanner.team/stops/Crgmgri1"], ["https://tec.openplanner.team/stops/X610ahb", "https://tec.openplanner.team/stops/X610aib"], ["https://tec.openplanner.team/stops/N577aga", "https://tec.openplanner.team/stops/N577aha"], ["https://tec.openplanner.team/stops/Lcepont2", "https://tec.openplanner.team/stops/Lcepont6"], ["https://tec.openplanner.team/stops/N562bha", "https://tec.openplanner.team/stops/N562bka"], ["https://tec.openplanner.team/stops/LLrc1651", "https://tec.openplanner.team/stops/LLrc1652"], ["https://tec.openplanner.team/stops/H4ep128b", "https://tec.openplanner.team/stops/H4ep129a"], ["https://tec.openplanner.team/stops/Lghjans1", "https://tec.openplanner.team/stops/Lghmeun1"], ["https://tec.openplanner.team/stops/H4co151a", "https://tec.openplanner.team/stops/H4wn124a"], ["https://tec.openplanner.team/stops/H2ch101b", "https://tec.openplanner.team/stops/H2go113a"], ["https://tec.openplanner.team/stops/N506bsb", "https://tec.openplanner.team/stops/N506bwb"], ["https://tec.openplanner.team/stops/Cmecime2", "https://tec.openplanner.team/stops/Cmerdby1"], ["https://tec.openplanner.team/stops/Cchbaza2", "https://tec.openplanner.team/stops/Cchccom1"], ["https://tec.openplanner.team/stops/X618ada", "https://tec.openplanner.team/stops/X618amb"], ["https://tec.openplanner.team/stops/N141aga", "https://tec.openplanner.team/stops/N141ama"], ["https://tec.openplanner.team/stops/N229akc", "https://tec.openplanner.team/stops/N229apa"], ["https://tec.openplanner.team/stops/H1me112b", "https://tec.openplanner.team/stops/H1me117d"], ["https://tec.openplanner.team/stops/N548afb", "https://tec.openplanner.team/stops/N569alb"], ["https://tec.openplanner.team/stops/X873abb", "https://tec.openplanner.team/stops/X873acb"], ["https://tec.openplanner.team/stops/H2ep144a", "https://tec.openplanner.team/stops/H2re174a"], ["https://tec.openplanner.team/stops/LTNegli1", "https://tec.openplanner.team/stops/LTNegli2"], ["https://tec.openplanner.team/stops/Blsmjja1", "https://tec.openplanner.team/stops/Bnodlce1"], ["https://tec.openplanner.team/stops/LSebott1", "https://tec.openplanner.team/stops/LVbpave2"], ["https://tec.openplanner.team/stops/Bchgpap2", "https://tec.openplanner.team/stops/Bchgrco2"], ["https://tec.openplanner.team/stops/Cmcbriq1", "https://tec.openplanner.team/stops/Cmcbriq4"], ["https://tec.openplanner.team/stops/LVu40--2", "https://tec.openplanner.team/stops/LVukabi2"], ["https://tec.openplanner.team/stops/N534bkh", "https://tec.openplanner.team/stops/N534bma"], ["https://tec.openplanner.team/stops/Ccyfede2", "https://tec.openplanner.team/stops/Ccymabo1"], ["https://tec.openplanner.team/stops/Lcalaro1", "https://tec.openplanner.team/stops/Lcalaro2"], ["https://tec.openplanner.team/stops/Clfbarr1", "https://tec.openplanner.team/stops/Clfbarr6"], ["https://tec.openplanner.team/stops/Cjubert2", "https://tec.openplanner.team/stops/Cjudelv3"], ["https://tec.openplanner.team/stops/LMFmoul1", "https://tec.openplanner.team/stops/Lqbecco1"], ["https://tec.openplanner.team/stops/H5rx112a", "https://tec.openplanner.team/stops/H5rx128a"], ["https://tec.openplanner.team/stops/Bgnvbsi2", "https://tec.openplanner.team/stops/Bgnvgar1"], ["https://tec.openplanner.team/stops/LFyec--2", "https://tec.openplanner.team/stops/LFypont2"], ["https://tec.openplanner.team/stops/X818aga", "https://tec.openplanner.team/stops/X818apa"], ["https://tec.openplanner.team/stops/N310aaa", "https://tec.openplanner.team/stops/N312acb"], ["https://tec.openplanner.team/stops/Bmasegl2", "https://tec.openplanner.team/stops/NB33afb"], ["https://tec.openplanner.team/stops/H4hx111b", "https://tec.openplanner.team/stops/H4wa151a"], ["https://tec.openplanner.team/stops/Ljemabo1", "https://tec.openplanner.team/stops/Ltimarq2"], ["https://tec.openplanner.team/stops/LLVfoss1", "https://tec.openplanner.team/stops/X575aab"], ["https://tec.openplanner.team/stops/N894aab", "https://tec.openplanner.team/stops/N894aba"], ["https://tec.openplanner.team/stops/H4bo119a", "https://tec.openplanner.team/stops/H4bo119b"], ["https://tec.openplanner.team/stops/Bmelmqu1", "https://tec.openplanner.team/stops/Bsmgegl1"], ["https://tec.openplanner.team/stops/N506aca", "https://tec.openplanner.team/stops/N506aoa"], ["https://tec.openplanner.team/stops/LLRvill1", "https://tec.openplanner.team/stops/LLRvill2"], ["https://tec.openplanner.team/stops/X766aab", "https://tec.openplanner.team/stops/X766abb"], ["https://tec.openplanner.team/stops/LTPplco1", "https://tec.openplanner.team/stops/LTPsalm1"], ["https://tec.openplanner.team/stops/Bmrspel2", "https://tec.openplanner.team/stops/Bmrswag2"], ["https://tec.openplanner.team/stops/LBEtrix1", "https://tec.openplanner.team/stops/LLNcime1"], ["https://tec.openplanner.team/stops/LGLeg--2", "https://tec.openplanner.team/stops/LGLgeer2"], ["https://tec.openplanner.team/stops/Bdvmc432", "https://tec.openplanner.team/stops/Bdvmsar2"], ["https://tec.openplanner.team/stops/Btilhti1", "https://tec.openplanner.team/stops/Btilhti2"], ["https://tec.openplanner.team/stops/LLrgare1", "https://tec.openplanner.team/stops/LLrscie1"], ["https://tec.openplanner.team/stops/Bnivlde1", "https://tec.openplanner.team/stops/Bnivpar1"], ["https://tec.openplanner.team/stops/X908apa", "https://tec.openplanner.team/stops/X908aqa"], ["https://tec.openplanner.team/stops/Cptberg2", "https://tec.openplanner.team/stops/Cptegli2"], ["https://tec.openplanner.team/stops/H1ci103a", "https://tec.openplanner.team/stops/H1cu113b"], ["https://tec.openplanner.team/stops/N234aab", "https://tec.openplanner.team/stops/N234aeb"], ["https://tec.openplanner.team/stops/X767aac", "https://tec.openplanner.team/stops/X768aca"], ["https://tec.openplanner.team/stops/N117aqb", "https://tec.openplanner.team/stops/N117aua"], ["https://tec.openplanner.team/stops/Bbonegl1", "https://tec.openplanner.team/stops/Bdvmtve1"], ["https://tec.openplanner.team/stops/N512aba", "https://tec.openplanner.team/stops/N512aca"], ["https://tec.openplanner.team/stops/N553aba", "https://tec.openplanner.team/stops/N553aqa"], ["https://tec.openplanner.team/stops/Bbourel1", "https://tec.openplanner.team/stops/Bboutry1"], ["https://tec.openplanner.team/stops/N501eob", "https://tec.openplanner.team/stops/N501mdb"], ["https://tec.openplanner.team/stops/NC44aea", "https://tec.openplanner.team/stops/NC44afa"], ["https://tec.openplanner.team/stops/Llgcock2", "https://tec.openplanner.team/stops/Llgnage2"], ["https://tec.openplanner.team/stops/H1ry135b", "https://tec.openplanner.team/stops/H1ry135c"], ["https://tec.openplanner.team/stops/N577afb", "https://tec.openplanner.team/stops/N577ajb"], ["https://tec.openplanner.team/stops/H1te179a", "https://tec.openplanner.team/stops/H1te180b"], ["https://tec.openplanner.team/stops/X768alc", "https://tec.openplanner.team/stops/X768ald"], ["https://tec.openplanner.team/stops/Cgycime3", "https://tec.openplanner.team/stops/Cgycime4"], ["https://tec.openplanner.team/stops/X660afb", "https://tec.openplanner.team/stops/X840adb"], ["https://tec.openplanner.team/stops/Cjxdesc1", "https://tec.openplanner.team/stops/Cjxpris2"], ["https://tec.openplanner.team/stops/LLOhest1", "https://tec.openplanner.team/stops/LLOhest2"], ["https://tec.openplanner.team/stops/LLTgole1", "https://tec.openplanner.team/stops/LTOplac2"], ["https://tec.openplanner.team/stops/LhGfl242", "https://tec.openplanner.team/stops/LhGkirc6"], ["https://tec.openplanner.team/stops/NL57aea", "https://tec.openplanner.team/stops/NL57aka"], ["https://tec.openplanner.team/stops/X926acb", "https://tec.openplanner.team/stops/X926aeb"], ["https://tec.openplanner.team/stops/H4hq132a", "https://tec.openplanner.team/stops/H4ms145a"], ["https://tec.openplanner.team/stops/H4mv191b", "https://tec.openplanner.team/stops/H4mv193a"], ["https://tec.openplanner.team/stops/X616aab", "https://tec.openplanner.team/stops/X616aba"], ["https://tec.openplanner.team/stops/N120aaa", "https://tec.openplanner.team/stops/N120ana"], ["https://tec.openplanner.team/stops/X793aca", "https://tec.openplanner.team/stops/X793apa"], ["https://tec.openplanner.team/stops/LOTmonu1", "https://tec.openplanner.team/stops/LOTmonu2"], ["https://tec.openplanner.team/stops/LPLaube1", "https://tec.openplanner.team/stops/LPLstat2"], ["https://tec.openplanner.team/stops/X892aba", "https://tec.openplanner.team/stops/X892aia"], ["https://tec.openplanner.team/stops/X542aea", "https://tec.openplanner.team/stops/X542agb"], ["https://tec.openplanner.team/stops/LWElanc1", "https://tec.openplanner.team/stops/LWEmerm1"], ["https://tec.openplanner.team/stops/LPbeg--2", "https://tec.openplanner.team/stops/LPbusin2"], ["https://tec.openplanner.team/stops/Ccuoise2", "https://tec.openplanner.team/stops/Ccuseba2"], ["https://tec.openplanner.team/stops/X657aia", "https://tec.openplanner.team/stops/X670agb"], ["https://tec.openplanner.team/stops/X818aja", "https://tec.openplanner.team/stops/X818akb"], ["https://tec.openplanner.team/stops/LBdcime1", "https://tec.openplanner.team/stops/LBdmarr1"], ["https://tec.openplanner.team/stops/X870acb", "https://tec.openplanner.team/stops/X870aja"], ["https://tec.openplanner.team/stops/H1bx105b", "https://tec.openplanner.team/stops/H1qv115b"], ["https://tec.openplanner.team/stops/Cbmvalt1", "https://tec.openplanner.team/stops/Cstmarz2"], ["https://tec.openplanner.team/stops/N522aga", "https://tec.openplanner.team/stops/N522agb"], ["https://tec.openplanner.team/stops/X808ahb", "https://tec.openplanner.team/stops/X808akb"], ["https://tec.openplanner.team/stops/N539aha", "https://tec.openplanner.team/stops/N539arb"], ["https://tec.openplanner.team/stops/LMomonc2", "https://tec.openplanner.team/stops/LMovieu2"], ["https://tec.openplanner.team/stops/LHEches1", "https://tec.openplanner.team/stops/LHEepur2"], ["https://tec.openplanner.team/stops/Cfocobe2", "https://tec.openplanner.team/stops/Cforepo1"], ["https://tec.openplanner.team/stops/LJSforg1", "https://tec.openplanner.team/stops/LTAchpl2"], ["https://tec.openplanner.team/stops/X910aeb", "https://tec.openplanner.team/stops/X985aac"], ["https://tec.openplanner.team/stops/H1bo112a", "https://tec.openplanner.team/stops/H1ho131a"], ["https://tec.openplanner.team/stops/H4lz124a", "https://tec.openplanner.team/stops/H4lz128b"], ["https://tec.openplanner.team/stops/X952ahb", "https://tec.openplanner.team/stops/X952aib"], ["https://tec.openplanner.team/stops/NL67acb", "https://tec.openplanner.team/stops/NL67adb"], ["https://tec.openplanner.team/stops/H4ta128a", "https://tec.openplanner.team/stops/H4ta132b"], ["https://tec.openplanner.team/stops/Cchba2", "https://tec.openplanner.team/stops/CMba1"], ["https://tec.openplanner.team/stops/LmIvale2", "https://tec.openplanner.team/stops/LmIvale4"], ["https://tec.openplanner.team/stops/H4ty340a", "https://tec.openplanner.team/stops/H4ty384b"], ["https://tec.openplanner.team/stops/Lseprog1", "https://tec.openplanner.team/stops/Lsesabl1"], ["https://tec.openplanner.team/stops/LPRcasi1", "https://tec.openplanner.team/stops/LPRcasi2"], ["https://tec.openplanner.team/stops/Lghferr1", "https://tec.openplanner.team/stops/Lghgend1"], ["https://tec.openplanner.team/stops/Cgzdeve1", "https://tec.openplanner.team/stops/Clrecol1"], ["https://tec.openplanner.team/stops/Lbbgare1", "https://tec.openplanner.team/stops/Ljucano1"], ["https://tec.openplanner.team/stops/LBLtroi2", "https://tec.openplanner.team/stops/LBLwaid2"], ["https://tec.openplanner.team/stops/Llgmass1", "https://tec.openplanner.team/stops/Llgschm2"], ["https://tec.openplanner.team/stops/Lhrunir1", "https://tec.openplanner.team/stops/Lvtlimi1"], ["https://tec.openplanner.team/stops/LSHfief1", "https://tec.openplanner.team/stops/LSHfief2"], ["https://tec.openplanner.team/stops/Chpchea1", "https://tec.openplanner.team/stops/Cwgtill1"], ["https://tec.openplanner.team/stops/H2ha128a", "https://tec.openplanner.team/stops/H2ha143a"], ["https://tec.openplanner.team/stops/LbTaral1", "https://tec.openplanner.team/stops/LbThutt2"], ["https://tec.openplanner.team/stops/N539asa", "https://tec.openplanner.team/stops/N539bdb"], ["https://tec.openplanner.team/stops/X664aka", "https://tec.openplanner.team/stops/X664alb"], ["https://tec.openplanner.team/stops/LbTkreu1", "https://tec.openplanner.team/stops/LbTkreu3"], ["https://tec.openplanner.team/stops/X754awb", "https://tec.openplanner.team/stops/X754azb"], ["https://tec.openplanner.team/stops/H4ga169b", "https://tec.openplanner.team/stops/H4ga170a"], ["https://tec.openplanner.team/stops/X615aib", "https://tec.openplanner.team/stops/X615aja"], ["https://tec.openplanner.team/stops/N508ajb", "https://tec.openplanner.team/stops/N508aoa"], ["https://tec.openplanner.team/stops/H4ch115a", "https://tec.openplanner.team/stops/H4ch116a"], ["https://tec.openplanner.team/stops/Cjurevo2", "https://tec.openplanner.team/stops/Clocroi1"], ["https://tec.openplanner.team/stops/LTIgare2", "https://tec.openplanner.team/stops/LTIpora1"], ["https://tec.openplanner.team/stops/Cbcha651", "https://tec.openplanner.team/stops/Crg3arb1"], ["https://tec.openplanner.team/stops/N141aaa", "https://tec.openplanner.team/stops/N141aob"], ["https://tec.openplanner.team/stops/Lanfran1", "https://tec.openplanner.team/stops/Lanfran4"], ["https://tec.openplanner.team/stops/X911aka", "https://tec.openplanner.team/stops/X911akb"], ["https://tec.openplanner.team/stops/Bbauegl1", "https://tec.openplanner.team/stops/Bbautri2"], ["https://tec.openplanner.team/stops/LBCaube2", "https://tec.openplanner.team/stops/LMTvill2"], ["https://tec.openplanner.team/stops/Bsmgbsa1", "https://tec.openplanner.team/stops/Btilsce1"], ["https://tec.openplanner.team/stops/Csostoc1", "https://tec.openplanner.team/stops/Csostoc2"], ["https://tec.openplanner.team/stops/Llgchal1", "https://tec.openplanner.team/stops/Llgcita2"], ["https://tec.openplanner.team/stops/Cmocime2", "https://tec.openplanner.team/stops/Cmogtri2"], ["https://tec.openplanner.team/stops/N149acb", "https://tec.openplanner.team/stops/N149aga"], ["https://tec.openplanner.team/stops/Lbrhvl-*", "https://tec.openplanner.team/stops/Ljucrah1"], ["https://tec.openplanner.team/stops/N245aca", "https://tec.openplanner.team/stops/N287aca"], ["https://tec.openplanner.team/stops/H4to134a", "https://tec.openplanner.team/stops/H4to134b"], ["https://tec.openplanner.team/stops/X982bna", "https://tec.openplanner.team/stops/X986aba"], ["https://tec.openplanner.team/stops/Cmlvpla2", "https://tec.openplanner.team/stops/Cmlvxmo1"], ["https://tec.openplanner.team/stops/Lbeloui1", "https://tec.openplanner.team/stops/LSAeg--2"], ["https://tec.openplanner.team/stops/Llgcong3", "https://tec.openplanner.team/stops/Llgqmar2"], ["https://tec.openplanner.team/stops/LVEmohi2", "https://tec.openplanner.team/stops/LVEroum1"], ["https://tec.openplanner.team/stops/LCxeg--1", "https://tec.openplanner.team/stops/LCxeg--2"], ["https://tec.openplanner.team/stops/Bhvltol1", "https://tec.openplanner.team/stops/Bhvltol2"], ["https://tec.openplanner.team/stops/H2re165a", "https://tec.openplanner.team/stops/H2re168a"], ["https://tec.openplanner.team/stops/X361abb", "https://tec.openplanner.team/stops/X362aca"], ["https://tec.openplanner.team/stops/H1be102a", "https://tec.openplanner.team/stops/H1er108a"], ["https://tec.openplanner.team/stops/N519ada", "https://tec.openplanner.team/stops/N519adb"], ["https://tec.openplanner.team/stops/Buccplj2", "https://tec.openplanner.team/stops/Buccvch1"], ["https://tec.openplanner.team/stops/X801cjb", "https://tec.openplanner.team/stops/X801cnb"], ["https://tec.openplanner.team/stops/N874aab", "https://tec.openplanner.team/stops/N894acb"], ["https://tec.openplanner.team/stops/LMoviel1", "https://tec.openplanner.team/stops/LTreg--1"], ["https://tec.openplanner.team/stops/H1bb118a", "https://tec.openplanner.team/stops/H1bb121b"], ["https://tec.openplanner.team/stops/Bwavcar1", "https://tec.openplanner.team/stops/Bwavnep1"], ["https://tec.openplanner.team/stops/H4rc231c", "https://tec.openplanner.team/stops/H4te254a"], ["https://tec.openplanner.team/stops/N225aab", "https://tec.openplanner.team/stops/N225acb"], ["https://tec.openplanner.team/stops/X806ahb", "https://tec.openplanner.team/stops/X806aia"], ["https://tec.openplanner.team/stops/N521alb", "https://tec.openplanner.team/stops/N521amb"], ["https://tec.openplanner.team/stops/Bmelmqu1", "https://tec.openplanner.team/stops/Bvilpar1"], ["https://tec.openplanner.team/stops/LOCloup1", "https://tec.openplanner.team/stops/NL35aba"], ["https://tec.openplanner.team/stops/Cvthoeu2", "https://tec.openplanner.team/stops/Cvtvail1"], ["https://tec.openplanner.team/stops/Lougros1", "https://tec.openplanner.team/stops/Lousite6"], ["https://tec.openplanner.team/stops/H4ty273c", "https://tec.openplanner.team/stops/H4ty295d"], ["https://tec.openplanner.team/stops/Cctberg1", "https://tec.openplanner.team/stops/Cctmine2"], ["https://tec.openplanner.team/stops/Lsecime1", "https://tec.openplanner.team/stops/Lsepudd1"], ["https://tec.openplanner.team/stops/X902ata", "https://tec.openplanner.team/stops/X902bbb"], ["https://tec.openplanner.team/stops/LFFcouv1", "https://tec.openplanner.team/stops/LFFcouv2"], ["https://tec.openplanner.team/stops/Loumatt2", "https://tec.openplanner.team/stops/Louvivi2"], ["https://tec.openplanner.team/stops/Clbbonn4", "https://tec.openplanner.team/stops/Clbecol1"], ["https://tec.openplanner.team/stops/Bnilcim1", "https://tec.openplanner.team/stops/Bnilpje1"], ["https://tec.openplanner.team/stops/LaMadam1", "https://tec.openplanner.team/stops/LaMadam2"], ["https://tec.openplanner.team/stops/H1eo103a", "https://tec.openplanner.team/stops/H1et101b"], ["https://tec.openplanner.team/stops/LLz21--2", "https://tec.openplanner.team/stops/LRfbeau2"], ["https://tec.openplanner.team/stops/Blasbpr1", "https://tec.openplanner.team/stops/Blasbpr2"], ["https://tec.openplanner.team/stops/Lmntast2", "https://tec.openplanner.team/stops/Lmntast3"], ["https://tec.openplanner.team/stops/Cmlbevu1", "https://tec.openplanner.team/stops/Cmlgoff1"], ["https://tec.openplanner.team/stops/LlZkirc2", "https://tec.openplanner.team/stops/LmEdorf2"], ["https://tec.openplanner.team/stops/LSdcarr2", "https://tec.openplanner.team/stops/LSdsar51"], ["https://tec.openplanner.team/stops/H2le153b", "https://tec.openplanner.team/stops/H2mo122d"], ["https://tec.openplanner.team/stops/LHocroi2", "https://tec.openplanner.team/stops/LJedonc1"], ["https://tec.openplanner.team/stops/LEN183-2", "https://tec.openplanner.team/stops/LSkoran1"], ["https://tec.openplanner.team/stops/Ltichif2", "https://tec.openplanner.team/stops/Ltigare2"], ["https://tec.openplanner.team/stops/LWDhous1", "https://tec.openplanner.team/stops/LWDplac2"], ["https://tec.openplanner.team/stops/N209alb", "https://tec.openplanner.team/stops/N559acb"], ["https://tec.openplanner.team/stops/H4mo152a", "https://tec.openplanner.team/stops/H4mo198a"], ["https://tec.openplanner.team/stops/Cjudest2", "https://tec.openplanner.team/stops/Cjupn4"], ["https://tec.openplanner.team/stops/Bbeasta2", "https://tec.openplanner.team/stops/Bhmmbog1"], ["https://tec.openplanner.team/stops/N204aaa", "https://tec.openplanner.team/stops/N204aba"], ["https://tec.openplanner.team/stops/Lbbbuse2", "https://tec.openplanner.team/stops/Ljubord2"], ["https://tec.openplanner.team/stops/X840adb", "https://tec.openplanner.team/stops/X840afa"], ["https://tec.openplanner.team/stops/Lfh-sci2", "https://tec.openplanner.team/stops/Lpoprie2"], ["https://tec.openplanner.team/stops/LPAbour1", "https://tec.openplanner.team/stops/LPAvill2"], ["https://tec.openplanner.team/stops/H4ob109b", "https://tec.openplanner.team/stops/H4ob124b"], ["https://tec.openplanner.team/stops/LsVbs--*", "https://tec.openplanner.team/stops/LsVsage1"], ["https://tec.openplanner.team/stops/N308agb", "https://tec.openplanner.team/stops/N308aob"], ["https://tec.openplanner.team/stops/LAmarbo2", "https://tec.openplanner.team/stops/LVLgotr3"], ["https://tec.openplanner.team/stops/H1em103a", "https://tec.openplanner.team/stops/H1fa120a"], ["https://tec.openplanner.team/stops/Lgrbill2", "https://tec.openplanner.team/stops/Lgrbonn3"], ["https://tec.openplanner.team/stops/H1gi123a", "https://tec.openplanner.team/stops/H1gi154a"], ["https://tec.openplanner.team/stops/Lvtchpl4", "https://tec.openplanner.team/stops/Lvtpepi2"], ["https://tec.openplanner.team/stops/H4oq225a", "https://tec.openplanner.team/stops/H4oq409a"], ["https://tec.openplanner.team/stops/H4mo172a", "https://tec.openplanner.team/stops/H4mo193a"], ["https://tec.openplanner.team/stops/H4pq116a", "https://tec.openplanner.team/stops/H4pq118b"], ["https://tec.openplanner.team/stops/H1wg124b", "https://tec.openplanner.team/stops/H1wg127b"], ["https://tec.openplanner.team/stops/Bheneco2", "https://tec.openplanner.team/stops/Bhensei1"], ["https://tec.openplanner.team/stops/Lsestap1", "https://tec.openplanner.team/stops/Lsestap3"], ["https://tec.openplanner.team/stops/LmHbahn1", "https://tec.openplanner.team/stops/LmHumge1"], ["https://tec.openplanner.team/stops/H1an102a", "https://tec.openplanner.team/stops/H1bx105b"], ["https://tec.openplanner.team/stops/Lsmlina2", "https://tec.openplanner.team/stops/Lsmpost2"], ["https://tec.openplanner.team/stops/X614ahb", "https://tec.openplanner.team/stops/X614ata"], ["https://tec.openplanner.team/stops/Blhucmo2", "https://tec.openplanner.team/stops/Blhumga2"], ["https://tec.openplanner.team/stops/N534bnh", "https://tec.openplanner.team/stops/N534bpb"], ["https://tec.openplanner.team/stops/N153aab", "https://tec.openplanner.team/stops/N153afa"], ["https://tec.openplanner.team/stops/LBRtrag2", "https://tec.openplanner.team/stops/LLTtour2"], ["https://tec.openplanner.team/stops/LFTcroi1", "https://tec.openplanner.team/stops/LTNsarl1"], ["https://tec.openplanner.team/stops/Cmofosb2", "https://tec.openplanner.team/stops/Crorpai2"], ["https://tec.openplanner.team/stops/LJAcham1", "https://tec.openplanner.team/stops/LJAsuri2"], ["https://tec.openplanner.team/stops/H3so171b", "https://tec.openplanner.team/stops/H3so174b"], ["https://tec.openplanner.team/stops/X793aba", "https://tec.openplanner.team/stops/X793apb"], ["https://tec.openplanner.team/stops/Blpgbat1", "https://tec.openplanner.team/stops/Cglbras1"], ["https://tec.openplanner.team/stops/X601dcb", "https://tec.openplanner.team/stops/X612aaa"], ["https://tec.openplanner.team/stops/H4ty319b", "https://tec.openplanner.team/stops/H4ty381a"], ["https://tec.openplanner.team/stops/Lenvale1", "https://tec.openplanner.team/stops/Llmdeba2"], ["https://tec.openplanner.team/stops/LhZkape2", "https://tec.openplanner.team/stops/LmNbirt2"], ["https://tec.openplanner.team/stops/LTEkerk1", "https://tec.openplanner.team/stops/LTEnuro2"], ["https://tec.openplanner.team/stops/Cauptsa1", "https://tec.openplanner.team/stops/Ctapn2"], ["https://tec.openplanner.team/stops/X624ahb", "https://tec.openplanner.team/stops/X624aib"], ["https://tec.openplanner.team/stops/Bbeubos1", "https://tec.openplanner.team/stops/N525atb"], ["https://tec.openplanner.team/stops/Cpcarse1", "https://tec.openplanner.team/stops/Cpceclu2"], ["https://tec.openplanner.team/stops/Lmlbaro1", "https://tec.openplanner.team/stops/Lmldama1"], ["https://tec.openplanner.team/stops/LOTsava1", "https://tec.openplanner.team/stops/LVleg--1"], ["https://tec.openplanner.team/stops/H1ms283a", "https://tec.openplanner.team/stops/H1ms314b"], ["https://tec.openplanner.team/stops/X750ahb", "https://tec.openplanner.team/stops/X750bga"], ["https://tec.openplanner.team/stops/N548afb", "https://tec.openplanner.team/stops/N571afb"], ["https://tec.openplanner.team/stops/Bniveco1", "https://tec.openplanner.team/stops/Bnivgpl3"], ["https://tec.openplanner.team/stops/Bbcodam4", "https://tec.openplanner.team/stops/Bbcoubo3"], ["https://tec.openplanner.team/stops/X878aab", "https://tec.openplanner.team/stops/X878abb"], ["https://tec.openplanner.team/stops/X954adb", "https://tec.openplanner.team/stops/X954aeb"], ["https://tec.openplanner.team/stops/LTEcamp2", "https://tec.openplanner.team/stops/LTErest1"], ["https://tec.openplanner.team/stops/N534blg", "https://tec.openplanner.team/stops/N534bub"], ["https://tec.openplanner.team/stops/H4ep127b", "https://tec.openplanner.team/stops/H4rm113b"], ["https://tec.openplanner.team/stops/H4gr108a", "https://tec.openplanner.team/stops/H4gr110b"], ["https://tec.openplanner.team/stops/Cjubrul4", "https://tec.openplanner.team/stops/Cjuregi2"], ["https://tec.openplanner.team/stops/LAncoup2", "https://tec.openplanner.team/stops/LAnfall2"], ["https://tec.openplanner.team/stops/Crewath1", "https://tec.openplanner.team/stops/Crewath2"], ["https://tec.openplanner.team/stops/H4ma420a", "https://tec.openplanner.team/stops/H4ma420b"], ["https://tec.openplanner.team/stops/LHUchpl1", "https://tec.openplanner.team/stops/LHUeuro4"], ["https://tec.openplanner.team/stops/N121acb", "https://tec.openplanner.team/stops/N121aja"], ["https://tec.openplanner.team/stops/Csschat1", "https://tec.openplanner.team/stops/Cssgare2"], ["https://tec.openplanner.team/stops/H4hu116a", "https://tec.openplanner.team/stops/H4hu118b"], ["https://tec.openplanner.team/stops/X601aoa", "https://tec.openplanner.team/stops/X601cda"], ["https://tec.openplanner.team/stops/Lccawir2", "https://tec.openplanner.team/stops/LRArami2"], ["https://tec.openplanner.team/stops/X818acb", "https://tec.openplanner.team/stops/X818aka"], ["https://tec.openplanner.team/stops/LLrelec2", "https://tec.openplanner.team/stops/LLrrmaq1"], ["https://tec.openplanner.team/stops/Cnachcu2", "https://tec.openplanner.team/stops/Cnanoir1"], ["https://tec.openplanner.team/stops/H4es111a", "https://tec.openplanner.team/stops/H4ev120a"], ["https://tec.openplanner.team/stops/Baegpon2", "https://tec.openplanner.team/stops/Bramcar2"], ["https://tec.openplanner.team/stops/X762aab", "https://tec.openplanner.team/stops/X763adb"], ["https://tec.openplanner.team/stops/Bquecar1", "https://tec.openplanner.team/stops/Bquegob1"], ["https://tec.openplanner.team/stops/X767aea", "https://tec.openplanner.team/stops/X767aga"], ["https://tec.openplanner.team/stops/X617aga", "https://tec.openplanner.team/stops/X617aha"], ["https://tec.openplanner.team/stops/X390aib", "https://tec.openplanner.team/stops/X902aka"], ["https://tec.openplanner.team/stops/X633aeb", "https://tec.openplanner.team/stops/X633ala"], ["https://tec.openplanner.team/stops/H4ra159a", "https://tec.openplanner.team/stops/H4wr174a"], ["https://tec.openplanner.team/stops/Bcbqgar2", "https://tec.openplanner.team/stops/Btubcvi2"], ["https://tec.openplanner.team/stops/Clvchen1", "https://tec.openplanner.team/stops/Cmlavch1"], ["https://tec.openplanner.team/stops/LListie2", "https://tec.openplanner.team/stops/LReeg--1"], ["https://tec.openplanner.team/stops/N531apa", "https://tec.openplanner.team/stops/N584aoa"], ["https://tec.openplanner.team/stops/H1gh147a", "https://tec.openplanner.team/stops/H1gh159a"], ["https://tec.openplanner.team/stops/X736ada", "https://tec.openplanner.team/stops/X953aaa"], ["https://tec.openplanner.team/stops/N245aba", "https://tec.openplanner.team/stops/N248adb"], ["https://tec.openplanner.team/stops/N232bia", "https://tec.openplanner.team/stops/N232bib"], ["https://tec.openplanner.team/stops/N501gka", "https://tec.openplanner.team/stops/N501kxb"], ["https://tec.openplanner.team/stops/H4ty295c", "https://tec.openplanner.team/stops/H4ty347a"], ["https://tec.openplanner.team/stops/N209afb", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/Bbsthpl2", "https://tec.openplanner.team/stops/Bbsttab1"], ["https://tec.openplanner.team/stops/X820aia", "https://tec.openplanner.team/stops/X820aib"], ["https://tec.openplanner.team/stops/LNAbras1", "https://tec.openplanner.team/stops/LNAbras2"], ["https://tec.openplanner.team/stops/N513anb", "https://tec.openplanner.team/stops/N513arb"], ["https://tec.openplanner.team/stops/H2mo120b", "https://tec.openplanner.team/stops/H2mo124b"], ["https://tec.openplanner.team/stops/X818aea", "https://tec.openplanner.team/stops/X818afa"], ["https://tec.openplanner.team/stops/H4pp121b", "https://tec.openplanner.team/stops/H4ve140a"], ["https://tec.openplanner.team/stops/H4mv187a", "https://tec.openplanner.team/stops/H4mv189b"], ["https://tec.openplanner.team/stops/H2ll178d", "https://tec.openplanner.team/stops/H2ll198a"], ["https://tec.openplanner.team/stops/N101aba", "https://tec.openplanner.team/stops/N101aca"], ["https://tec.openplanner.team/stops/N501deb", "https://tec.openplanner.team/stops/N501dfa"], ["https://tec.openplanner.team/stops/H4ff121a", "https://tec.openplanner.team/stops/H4mb138b"], ["https://tec.openplanner.team/stops/H3th135d", "https://tec.openplanner.team/stops/H3th135e"], ["https://tec.openplanner.team/stops/N571aja", "https://tec.openplanner.team/stops/N571ajb"], ["https://tec.openplanner.team/stops/H1hm176b", "https://tec.openplanner.team/stops/H1vs145a"], ["https://tec.openplanner.team/stops/N585aka", "https://tec.openplanner.team/stops/N585ala"], ["https://tec.openplanner.team/stops/X802apa", "https://tec.openplanner.team/stops/X802asb"], ["https://tec.openplanner.team/stops/LBglign2", "https://tec.openplanner.team/stops/LLbvith1"], ["https://tec.openplanner.team/stops/Ccogera2", "https://tec.openplanner.team/stops/Csoforr2"], ["https://tec.openplanner.team/stops/LLescie2", "https://tec.openplanner.team/stops/X547ata"], ["https://tec.openplanner.team/stops/LLrdigu2", "https://tec.openplanner.team/stops/LSPastr2"], ["https://tec.openplanner.team/stops/Clvimtr4", "https://tec.openplanner.team/stops/NC02aab"], ["https://tec.openplanner.team/stops/Ljegare2", "https://tec.openplanner.team/stops/Ljejoli1"], ["https://tec.openplanner.team/stops/Llglibo4", "https://tec.openplanner.team/stops/Llgpitt1"], ["https://tec.openplanner.team/stops/X808ala", "https://tec.openplanner.team/stops/X808ama"], ["https://tec.openplanner.team/stops/N501fgb", "https://tec.openplanner.team/stops/N501fhb"], ["https://tec.openplanner.team/stops/H3lr106b", "https://tec.openplanner.team/stops/H3lr120b"], ["https://tec.openplanner.team/stops/H4ir167a", "https://tec.openplanner.team/stops/H5at129b"], ["https://tec.openplanner.team/stops/LTIdjal2", "https://tec.openplanner.team/stops/LTIdonn2"], ["https://tec.openplanner.team/stops/X789aga", "https://tec.openplanner.team/stops/X789agb"], ["https://tec.openplanner.team/stops/Candett2", "https://tec.openplanner.team/stops/Canecbr1"], ["https://tec.openplanner.team/stops/Ljegare1", "https://tec.openplanner.team/stops/Ljegare2"], ["https://tec.openplanner.team/stops/Lmicoop3", "https://tec.openplanner.team/stops/Lmidarc1"], ["https://tec.openplanner.team/stops/Bnivche1", "https://tec.openplanner.team/stops/Bnivche2"], ["https://tec.openplanner.team/stops/X636aia", "https://tec.openplanner.team/stops/X636aib"], ["https://tec.openplanner.team/stops/LSNecol4", "https://tec.openplanner.team/stops/LSNmoul4"], ["https://tec.openplanner.team/stops/N106aeb", "https://tec.openplanner.team/stops/N137aga"], ["https://tec.openplanner.team/stops/LMoviel1", "https://tec.openplanner.team/stops/LSDheus2"], ["https://tec.openplanner.team/stops/LSOferr1", "https://tec.openplanner.team/stops/LSOtrou1"], ["https://tec.openplanner.team/stops/H1fr117a", "https://tec.openplanner.team/stops/H1no140a"], ["https://tec.openplanner.team/stops/Lbbbuse1", "https://tec.openplanner.team/stops/Ljuvert2"], ["https://tec.openplanner.team/stops/LaUn1--3", "https://tec.openplanner.team/stops/LlOpfar1"], ["https://tec.openplanner.team/stops/N348aaa", "https://tec.openplanner.team/stops/N348aba"], ["https://tec.openplanner.team/stops/H2mo119a", "https://tec.openplanner.team/stops/H2mo119b"], ["https://tec.openplanner.team/stops/N505aia", "https://tec.openplanner.team/stops/N505aib"], ["https://tec.openplanner.team/stops/H4ka191a", "https://tec.openplanner.team/stops/H4ka192b"], ["https://tec.openplanner.team/stops/X715aja", "https://tec.openplanner.team/stops/X715ajb"], ["https://tec.openplanner.team/stops/Clvorle1", "https://tec.openplanner.team/stops/NC02bbb"], ["https://tec.openplanner.team/stops/N221aba", "https://tec.openplanner.team/stops/X394afb"], ["https://tec.openplanner.team/stops/X999aga", "https://tec.openplanner.team/stops/X999aoa"], ["https://tec.openplanner.team/stops/N584aza", "https://tec.openplanner.team/stops/N584baa"], ["https://tec.openplanner.team/stops/X672agb", "https://tec.openplanner.team/stops/X672aja"], ["https://tec.openplanner.team/stops/X925aha", "https://tec.openplanner.team/stops/X925ata"], ["https://tec.openplanner.team/stops/H4hx111a", "https://tec.openplanner.team/stops/H4hx115b"], ["https://tec.openplanner.team/stops/X902bfb", "https://tec.openplanner.team/stops/X943aba"], ["https://tec.openplanner.team/stops/H1fv103a", "https://tec.openplanner.team/stops/H1ls105b"], ["https://tec.openplanner.team/stops/H1hh110b", "https://tec.openplanner.team/stops/H1hh113b"], ["https://tec.openplanner.team/stops/Bblafab1", "https://tec.openplanner.team/stops/Bblafab2"], ["https://tec.openplanner.team/stops/H2bh107a", "https://tec.openplanner.team/stops/H2bh112a"], ["https://tec.openplanner.team/stops/N543awg", "https://tec.openplanner.team/stops/N543awh"], ["https://tec.openplanner.team/stops/Cgzabau1", "https://tec.openplanner.team/stops/Cgzabau3"], ["https://tec.openplanner.team/stops/N252aab", "https://tec.openplanner.team/stops/N252abb"], ["https://tec.openplanner.team/stops/X786aja", "https://tec.openplanner.team/stops/X786ajb"], ["https://tec.openplanner.team/stops/Cjupuis1", "https://tec.openplanner.team/stops/Cjupuis2"], ["https://tec.openplanner.team/stops/N501bla", "https://tec.openplanner.team/stops/N501bob"], ["https://tec.openplanner.team/stops/H1mh115a", "https://tec.openplanner.team/stops/H1mh115b"], ["https://tec.openplanner.team/stops/LAUcent1", "https://tec.openplanner.team/stops/LRmhage5"], ["https://tec.openplanner.team/stops/LFPkape4", "https://tec.openplanner.team/stops/LFPkerk2"], ["https://tec.openplanner.team/stops/X796aca", "https://tec.openplanner.team/stops/X796adb"], ["https://tec.openplanner.team/stops/Lceourt1", "https://tec.openplanner.team/stops/Lcepoul2"], ["https://tec.openplanner.team/stops/H4tu172b", "https://tec.openplanner.team/stops/H4tu172c"], ["https://tec.openplanner.team/stops/NC44aba", "https://tec.openplanner.team/stops/NC44abb"], ["https://tec.openplanner.team/stops/Cmesafi2", "https://tec.openplanner.team/stops/Cwgmell3"], ["https://tec.openplanner.team/stops/Csdbosq2", "https://tec.openplanner.team/stops/Csdrofr1"], ["https://tec.openplanner.team/stops/H4bf109a", "https://tec.openplanner.team/stops/H4bf109b"], ["https://tec.openplanner.team/stops/X912aga", "https://tec.openplanner.team/stops/X912agb"], ["https://tec.openplanner.team/stops/H1do108a", "https://tec.openplanner.team/stops/H1do108b"], ["https://tec.openplanner.team/stops/Btubdeh2", "https://tec.openplanner.team/stops/Btubmon1"], ["https://tec.openplanner.team/stops/H2sb236d", "https://tec.openplanner.team/stops/H2sb242b"], ["https://tec.openplanner.team/stops/H4ka174a", "https://tec.openplanner.team/stops/H4ka399a"], ["https://tec.openplanner.team/stops/Bwatbno2", "https://tec.openplanner.team/stops/Bwatgib2"], ["https://tec.openplanner.team/stops/Bsgipha1", "https://tec.openplanner.team/stops/Bsgipha3"], ["https://tec.openplanner.team/stops/N139abb", "https://tec.openplanner.team/stops/N139adb"], ["https://tec.openplanner.team/stops/H1gg116a", "https://tec.openplanner.team/stops/H1mx122a"], ["https://tec.openplanner.team/stops/H5st161a", "https://tec.openplanner.team/stops/H5st161b"], ["https://tec.openplanner.team/stops/H4be101a", "https://tec.openplanner.team/stops/H4be110a"], ["https://tec.openplanner.team/stops/X879aha", "https://tec.openplanner.team/stops/X879aka"], ["https://tec.openplanner.team/stops/LPLcent1", "https://tec.openplanner.team/stops/LPLecco2"], ["https://tec.openplanner.team/stops/LHNgend4", "https://tec.openplanner.team/stops/LVPcoeu2"], ["https://tec.openplanner.team/stops/Creha761", "https://tec.openplanner.team/stops/Creoudo1"], ["https://tec.openplanner.team/stops/N533aqa", "https://tec.openplanner.team/stops/N533aqc"], ["https://tec.openplanner.team/stops/X986aca", "https://tec.openplanner.team/stops/X986agb"], ["https://tec.openplanner.team/stops/Lenclar1", "https://tec.openplanner.team/stops/Lvehout1"], ["https://tec.openplanner.team/stops/Lhrhenr1", "https://tec.openplanner.team/stops/Lhrtunn2"], ["https://tec.openplanner.team/stops/Cblbaiv1", "https://tec.openplanner.team/stops/Cvtmaro1"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lhuferm1"], ["https://tec.openplanner.team/stops/LVsboug2", "https://tec.openplanner.team/stops/LVsbrux2"], ["https://tec.openplanner.team/stops/H4ce101a", "https://tec.openplanner.team/stops/H4ce107b"], ["https://tec.openplanner.team/stops/N524aia", "https://tec.openplanner.team/stops/N524akb"], ["https://tec.openplanner.team/stops/Bblajap1", "https://tec.openplanner.team/stops/Clpsola1"], ["https://tec.openplanner.team/stops/X781abb", "https://tec.openplanner.team/stops/X781aeb"], ["https://tec.openplanner.team/stops/X943aba", "https://tec.openplanner.team/stops/X943ahb"], ["https://tec.openplanner.team/stops/LBkbamb2", "https://tec.openplanner.team/stops/LBkdahl2"], ["https://tec.openplanner.team/stops/Cfrchro1", "https://tec.openplanner.team/stops/Cfrgare3"], ["https://tec.openplanner.team/stops/LFUfonc2", "https://tec.openplanner.team/stops/LWDhous2"], ["https://tec.openplanner.team/stops/Becesbo1", "https://tec.openplanner.team/stops/Becesbo2"], ["https://tec.openplanner.team/stops/LBPxhav1", "https://tec.openplanner.team/stops/LRGile-2"], ["https://tec.openplanner.team/stops/Beclbar1", "https://tec.openplanner.team/stops/Broncli2"], ["https://tec.openplanner.team/stops/Lougare3", "https://tec.openplanner.team/stops/Lsebelv1"], ["https://tec.openplanner.team/stops/Lhrcite1", "https://tec.openplanner.team/stops/Lhrpont2"], ["https://tec.openplanner.team/stops/X871abb", "https://tec.openplanner.team/stops/X871adb"], ["https://tec.openplanner.team/stops/H4mo146a", "https://tec.openplanner.team/stops/H4mo156b"], ["https://tec.openplanner.team/stops/X766abb", "https://tec.openplanner.team/stops/X768alc"], ["https://tec.openplanner.team/stops/Cjojonc1", "https://tec.openplanner.team/stops/NC24agb"], ["https://tec.openplanner.team/stops/N501dvb", "https://tec.openplanner.team/stops/N501kpa"], ["https://tec.openplanner.team/stops/Cgocnor1", "https://tec.openplanner.team/stops/CMemai1"], ["https://tec.openplanner.team/stops/N101ajb", "https://tec.openplanner.team/stops/N116abb"], ["https://tec.openplanner.team/stops/X811aaa", "https://tec.openplanner.team/stops/X811aba"], ["https://tec.openplanner.team/stops/Lhrbass1", "https://tec.openplanner.team/stops/Llgtir-1"], ["https://tec.openplanner.team/stops/X837afb", "https://tec.openplanner.team/stops/X837alb"], ["https://tec.openplanner.team/stops/N302afa", "https://tec.openplanner.team/stops/N331acb"], ["https://tec.openplanner.team/stops/Lrogene*", "https://tec.openplanner.team/stops/Lrosaun1"], ["https://tec.openplanner.team/stops/X949aha", "https://tec.openplanner.team/stops/X949aib"], ["https://tec.openplanner.team/stops/Crccano1", "https://tec.openplanner.team/stops/Crcrlf2"], ["https://tec.openplanner.team/stops/N229aia", "https://tec.openplanner.team/stops/N229akc"], ["https://tec.openplanner.team/stops/LBY4che1", "https://tec.openplanner.team/stops/Lgdblom2"], ["https://tec.openplanner.team/stops/Bgercen1", "https://tec.openplanner.team/stops/Bgrhhot1"], ["https://tec.openplanner.team/stops/H1sg144b", "https://tec.openplanner.team/stops/H1sg146a"], ["https://tec.openplanner.team/stops/Lbralbe1", "https://tec.openplanner.team/stops/Llgabat2"], ["https://tec.openplanner.team/stops/Crccamp1", "https://tec.openplanner.team/stops/Crcrgar2"], ["https://tec.openplanner.team/stops/X761adb", "https://tec.openplanner.team/stops/X790agb"], ["https://tec.openplanner.team/stops/X720adb", "https://tec.openplanner.team/stops/X721arb"], ["https://tec.openplanner.team/stops/N117aja", "https://tec.openplanner.team/stops/N117aka"], ["https://tec.openplanner.team/stops/X615bea", "https://tec.openplanner.team/stops/X615beb"], ["https://tec.openplanner.team/stops/X608aia", "https://tec.openplanner.team/stops/X609aea"], ["https://tec.openplanner.team/stops/N135avb", "https://tec.openplanner.team/stops/N135bhb"], ["https://tec.openplanner.team/stops/N113aca", "https://tec.openplanner.team/stops/N113agb"], ["https://tec.openplanner.team/stops/X837aga", "https://tec.openplanner.team/stops/X837agb"], ["https://tec.openplanner.team/stops/Louazot1", "https://tec.openplanner.team/stops/Louazot2"], ["https://tec.openplanner.team/stops/X901bla", "https://tec.openplanner.team/stops/X901bmb"], ["https://tec.openplanner.team/stops/Bsgipmo1", "https://tec.openplanner.team/stops/Bsgipmo2"], ["https://tec.openplanner.team/stops/LhGfrie1", "https://tec.openplanner.team/stops/LhGfrie2"], ["https://tec.openplanner.team/stops/Bgemcha1", "https://tec.openplanner.team/stops/N522ata"], ["https://tec.openplanner.team/stops/X801bta", "https://tec.openplanner.team/stops/X801bva"], ["https://tec.openplanner.team/stops/LMOf35-1", "https://tec.openplanner.team/stops/LNveg--1"], ["https://tec.openplanner.team/stops/X597aqb", "https://tec.openplanner.team/stops/X796agb"], ["https://tec.openplanner.team/stops/Bwanorp2", "https://tec.openplanner.team/stops/NL75aca"], ["https://tec.openplanner.team/stops/Bgnpgar2", "https://tec.openplanner.team/stops/Cgnbast2"], ["https://tec.openplanner.team/stops/H1mk108a", "https://tec.openplanner.team/stops/H1mk108c"], ["https://tec.openplanner.team/stops/LBrmeiz2", "https://tec.openplanner.team/stops/LMipoti2"], ["https://tec.openplanner.team/stops/Cmeloti2", "https://tec.openplanner.team/stops/Cwxchap2"], ["https://tec.openplanner.team/stops/Blpgvil1", "https://tec.openplanner.team/stops/Bvxgeta2"], ["https://tec.openplanner.team/stops/LmTzoll1", "https://tec.openplanner.team/stops/LmTzoll2"], ["https://tec.openplanner.team/stops/LbUbisc2", "https://tec.openplanner.team/stops/LbUbutg2"], ["https://tec.openplanner.team/stops/N140aab", "https://tec.openplanner.team/stops/N141alb"], ["https://tec.openplanner.team/stops/X826aba", "https://tec.openplanner.team/stops/X826acb"], ["https://tec.openplanner.team/stops/LHYec--1", "https://tec.openplanner.team/stops/LHYwach2"], ["https://tec.openplanner.team/stops/Bgemga09", "https://tec.openplanner.team/stops/N522bve"], ["https://tec.openplanner.team/stops/H4ty325a", "https://tec.openplanner.team/stops/H4ty346b"], ["https://tec.openplanner.team/stops/H2lh126b", "https://tec.openplanner.team/stops/H2mo146a"], ["https://tec.openplanner.team/stops/H1ha200a", "https://tec.openplanner.team/stops/H1vh135b"], ["https://tec.openplanner.team/stops/X672aic", "https://tec.openplanner.team/stops/X672aid"], ["https://tec.openplanner.team/stops/X782aoa", "https://tec.openplanner.team/stops/X782aob"], ["https://tec.openplanner.team/stops/LBSchar2", "https://tec.openplanner.team/stops/LBStec-2"], ["https://tec.openplanner.team/stops/N557aab", "https://tec.openplanner.team/stops/N557abb"], ["https://tec.openplanner.team/stops/LNIdoma1", "https://tec.openplanner.team/stops/LNIec--2"], ["https://tec.openplanner.team/stops/H4mt217a", "https://tec.openplanner.team/stops/H4mt222b"], ["https://tec.openplanner.team/stops/X897axa", "https://tec.openplanner.team/stops/X897axb"], ["https://tec.openplanner.team/stops/Bquebth1", "https://tec.openplanner.team/stops/Bquebth2"], ["https://tec.openplanner.team/stops/X910aga", "https://tec.openplanner.team/stops/X910ahb"], ["https://tec.openplanner.team/stops/H4ss158b", "https://tec.openplanner.team/stops/H5rx105b"], ["https://tec.openplanner.team/stops/N244aea", "https://tec.openplanner.team/stops/N248aba"], ["https://tec.openplanner.team/stops/H1nv324a", "https://tec.openplanner.team/stops/H1nv324b"], ["https://tec.openplanner.team/stops/LBajean2", "https://tec.openplanner.team/stops/LBapepi5"], ["https://tec.openplanner.team/stops/X982bea", "https://tec.openplanner.team/stops/X982bla"], ["https://tec.openplanner.team/stops/Bsmgmou2", "https://tec.openplanner.team/stops/Bsmgpla2"], ["https://tec.openplanner.team/stops/Clftour1", "https://tec.openplanner.team/stops/Clftour2"], ["https://tec.openplanner.team/stops/LVRchpl1", "https://tec.openplanner.team/stops/X784aea"], ["https://tec.openplanner.team/stops/H5at106a", "https://tec.openplanner.team/stops/H5at134b"], ["https://tec.openplanner.team/stops/H4eg108a", "https://tec.openplanner.team/stops/H4ln129a"], ["https://tec.openplanner.team/stops/Bsomwav2", "https://tec.openplanner.team/stops/N584cab"], ["https://tec.openplanner.team/stops/H1by100d", "https://tec.openplanner.team/stops/H1by101b"], ["https://tec.openplanner.team/stops/H2ll193b", "https://tec.openplanner.team/stops/H2sv259a"], ["https://tec.openplanner.team/stops/Lghwall*", "https://tec.openplanner.team/stops/Lghwall1"], ["https://tec.openplanner.team/stops/Cgycime1", "https://tec.openplanner.team/stops/Cgysarr1"], ["https://tec.openplanner.team/stops/N383abb", "https://tec.openplanner.team/stops/N874ana"], ["https://tec.openplanner.team/stops/LHUlebo2", "https://tec.openplanner.team/stops/LHUtfal1"], ["https://tec.openplanner.team/stops/Lhufays1", "https://tec.openplanner.team/stops/Lhurfay2"], ["https://tec.openplanner.team/stops/LGreg--2", "https://tec.openplanner.team/stops/LORherl1"], ["https://tec.openplanner.team/stops/Lveabat1", "https://tec.openplanner.team/stops/Lvebiol2"], ["https://tec.openplanner.team/stops/N501giy", "https://tec.openplanner.team/stops/N501gnb"], ["https://tec.openplanner.team/stops/LWRbomb3", "https://tec.openplanner.team/stops/LWRpl--2"], ["https://tec.openplanner.team/stops/X738aea", "https://tec.openplanner.team/stops/X771alb"], ["https://tec.openplanner.team/stops/LXHfond1", "https://tec.openplanner.team/stops/LXHmart1"], ["https://tec.openplanner.team/stops/X880aeb", "https://tec.openplanner.team/stops/X880ahb"], ["https://tec.openplanner.team/stops/Cctpano1", "https://tec.openplanner.team/stops/Cctpano2"], ["https://tec.openplanner.team/stops/Llivina2", "https://tec.openplanner.team/stops/Lrcchpl2"], ["https://tec.openplanner.team/stops/H1ms254a", "https://tec.openplanner.team/stops/H1ms279b"], ["https://tec.openplanner.team/stops/LdUespe4", "https://tec.openplanner.team/stops/LtHkreu3"], ["https://tec.openplanner.team/stops/N244ava", "https://tec.openplanner.team/stops/N248aab"], ["https://tec.openplanner.team/stops/Cfasamb2", "https://tec.openplanner.team/stops/Cpl4bra3"], ["https://tec.openplanner.team/stops/LNOning1", "https://tec.openplanner.team/stops/LNOpt--2"], ["https://tec.openplanner.team/stops/H4lz128b", "https://tec.openplanner.team/stops/H4lz156b"], ["https://tec.openplanner.team/stops/Ljerouy1", "https://tec.openplanner.team/stops/Ljerouy2"], ["https://tec.openplanner.team/stops/LLeeg--1", "https://tec.openplanner.team/stops/X547aqb"], ["https://tec.openplanner.team/stops/X731aha", "https://tec.openplanner.team/stops/X731ahb"], ["https://tec.openplanner.team/stops/LWieg--*", "https://tec.openplanner.team/stops/LWinavi1"], ["https://tec.openplanner.team/stops/X354aaa", "https://tec.openplanner.team/stops/X369aab"], ["https://tec.openplanner.team/stops/H1he106a", "https://tec.openplanner.team/stops/H1he108a"], ["https://tec.openplanner.team/stops/H1eu107a", "https://tec.openplanner.team/stops/H1sb144b"], ["https://tec.openplanner.team/stops/X801bzb", "https://tec.openplanner.team/stops/X801cda"], ["https://tec.openplanner.team/stops/Lstpoly1", "https://tec.openplanner.team/stops/Lsttech2"], ["https://tec.openplanner.team/stops/Laleg--2", "https://tec.openplanner.team/stops/Laltrav2"], ["https://tec.openplanner.team/stops/LLYcalv2", "https://tec.openplanner.team/stops/LLYpeup1"], ["https://tec.openplanner.team/stops/N506bfb", "https://tec.openplanner.team/stops/N512acb"], ["https://tec.openplanner.team/stops/Bgrhcen1", "https://tec.openplanner.team/stops/Bgrhcro1"], ["https://tec.openplanner.team/stops/LrUkult2", "https://tec.openplanner.team/stops/LrUwenz1"], ["https://tec.openplanner.team/stops/N521ama", "https://tec.openplanner.team/stops/N521amb"], ["https://tec.openplanner.team/stops/Cflcent1", "https://tec.openplanner.team/stops/Cflecep1"], ["https://tec.openplanner.team/stops/Bsdacab1", "https://tec.openplanner.team/stops/Bvlvpco2"], ["https://tec.openplanner.team/stops/NH01aoa", "https://tec.openplanner.team/stops/NH01ara"], ["https://tec.openplanner.team/stops/X396aaa", "https://tec.openplanner.team/stops/X396abb"], ["https://tec.openplanner.team/stops/X390ahb", "https://tec.openplanner.team/stops/X902aha"], ["https://tec.openplanner.team/stops/X638ara", "https://tec.openplanner.team/stops/X638arb"], ["https://tec.openplanner.team/stops/X631aab", "https://tec.openplanner.team/stops/X631aba"], ["https://tec.openplanner.team/stops/LwSbrei1", "https://tec.openplanner.team/stops/LwSbrei2"], ["https://tec.openplanner.team/stops/X718ajb", "https://tec.openplanner.team/stops/X733aha"], ["https://tec.openplanner.team/stops/LkEhatt1", "https://tec.openplanner.team/stops/LkEheyg1"], ["https://tec.openplanner.team/stops/Cptegli3", "https://tec.openplanner.team/stops/Cptplac5"], ["https://tec.openplanner.team/stops/LBbhupp1", "https://tec.openplanner.team/stops/LTPpisc1"], ["https://tec.openplanner.team/stops/LLemonu2", "https://tec.openplanner.team/stops/X547adb"], ["https://tec.openplanner.team/stops/X750aub", "https://tec.openplanner.team/stops/X750bhb"], ["https://tec.openplanner.team/stops/H4ty307b", "https://tec.openplanner.team/stops/H4ty344b"], ["https://tec.openplanner.team/stops/Ccupetp1", "https://tec.openplanner.team/stops/Ccupomp2"], ["https://tec.openplanner.team/stops/H1bb117a", "https://tec.openplanner.team/stops/H1bb120a"], ["https://tec.openplanner.team/stops/Bbcopre2", "https://tec.openplanner.team/stops/Brebrha1"], ["https://tec.openplanner.team/stops/H4ka186a", "https://tec.openplanner.team/stops/H4ka187b"], ["https://tec.openplanner.team/stops/X721akb", "https://tec.openplanner.team/stops/X721ala"], ["https://tec.openplanner.team/stops/Ccicouc1", "https://tec.openplanner.team/stops/Ccicouc2"], ["https://tec.openplanner.team/stops/LETmagn2", "https://tec.openplanner.team/stops/LETsaiv2"], ["https://tec.openplanner.team/stops/X921aia", "https://tec.openplanner.team/stops/X921alb"], ["https://tec.openplanner.team/stops/Buccgob1", "https://tec.openplanner.team/stops/Buccgob2"], ["https://tec.openplanner.team/stops/LmRh%C3%B6811", "https://tec.openplanner.team/stops/LmRkreu1"], ["https://tec.openplanner.team/stops/LHSlava2", "https://tec.openplanner.team/stops/LHSvina2"], ["https://tec.openplanner.team/stops/LTIcime1", "https://tec.openplanner.team/stops/LTIcime2"], ["https://tec.openplanner.team/stops/H4ne140a", "https://tec.openplanner.team/stops/H4ne148a"], ["https://tec.openplanner.team/stops/LeLsied1", "https://tec.openplanner.team/stops/LeLsied2"], ["https://tec.openplanner.team/stops/Clvimtr2", "https://tec.openplanner.team/stops/Clvimtr3"], ["https://tec.openplanner.team/stops/X801cea", "https://tec.openplanner.team/stops/X801ceb"], ["https://tec.openplanner.team/stops/N525aca", "https://tec.openplanner.team/stops/N525azb"], ["https://tec.openplanner.team/stops/Bvilcoq2", "https://tec.openplanner.team/stops/Bvilvil2"], ["https://tec.openplanner.team/stops/LlAdorf1", "https://tec.openplanner.team/stops/LoDmuhl2"], ["https://tec.openplanner.team/stops/Cbmind1", "https://tec.openplanner.team/stops/Cbmviv2"], ["https://tec.openplanner.team/stops/H1hh109a", "https://tec.openplanner.team/stops/H1hh113b"], ["https://tec.openplanner.team/stops/LhMmeil2", "https://tec.openplanner.team/stops/LhMwing1"], ["https://tec.openplanner.team/stops/Cplcafp1", "https://tec.openplanner.team/stops/Cplrymo1"], ["https://tec.openplanner.team/stops/Lflgare2", "https://tec.openplanner.team/stops/Lfllapi4"], ["https://tec.openplanner.team/stops/H2ll257a", "https://tec.openplanner.team/stops/H2ll257d"], ["https://tec.openplanner.team/stops/H2hg153a", "https://tec.openplanner.team/stops/H2tr246a"], ["https://tec.openplanner.team/stops/Lsmrwan1", "https://tec.openplanner.team/stops/Lsmsech4"], ["https://tec.openplanner.team/stops/H1ml111a", "https://tec.openplanner.team/stops/H1ml111b"], ["https://tec.openplanner.team/stops/H1mk111a", "https://tec.openplanner.team/stops/H1mk114a"], ["https://tec.openplanner.team/stops/X615apb", "https://tec.openplanner.team/stops/X615brb"], ["https://tec.openplanner.team/stops/N113aea", "https://tec.openplanner.team/stops/X317aba"], ["https://tec.openplanner.team/stops/N501epd", "https://tec.openplanner.team/stops/N501kbb"], ["https://tec.openplanner.team/stops/X954abb", "https://tec.openplanner.team/stops/X954adb"], ["https://tec.openplanner.team/stops/Csecout1", "https://tec.openplanner.team/stops/Csemacq4"], ["https://tec.openplanner.team/stops/LMOc50-1", "https://tec.openplanner.team/stops/LMOford1"], ["https://tec.openplanner.team/stops/LFEplac1", "https://tec.openplanner.team/stops/X597aab"], ["https://tec.openplanner.team/stops/H4fo116b", "https://tec.openplanner.team/stops/H4my123b"], ["https://tec.openplanner.team/stops/Cfrtill1", "https://tec.openplanner.team/stops/Cfrtill2"], ["https://tec.openplanner.team/stops/H2sb226a", "https://tec.openplanner.team/stops/H2sb231c"], ["https://tec.openplanner.team/stops/N153aca", "https://tec.openplanner.team/stops/N153ada"], ["https://tec.openplanner.team/stops/X757aba", "https://tec.openplanner.team/stops/X757abb"], ["https://tec.openplanner.team/stops/X634agb", "https://tec.openplanner.team/stops/X634aja"], ["https://tec.openplanner.team/stops/Llgpoli1", "https://tec.openplanner.team/stops/Llgpoli2"], ["https://tec.openplanner.team/stops/Cctfrbe2", "https://tec.openplanner.team/stops/NC02agc"], ["https://tec.openplanner.team/stops/H4ef162b", "https://tec.openplanner.team/stops/H4ef164b"], ["https://tec.openplanner.team/stops/H1te174a", "https://tec.openplanner.team/stops/H1te182a"], ["https://tec.openplanner.team/stops/N522aba", "https://tec.openplanner.team/stops/N522abc"], ["https://tec.openplanner.team/stops/LVLgrum2", "https://tec.openplanner.team/stops/LVLmart1"], ["https://tec.openplanner.team/stops/H4bs111a", "https://tec.openplanner.team/stops/H4ws158a"], ["https://tec.openplanner.team/stops/H2gy100a", "https://tec.openplanner.team/stops/H2tz115a"], ["https://tec.openplanner.team/stops/Clgrsoc1", "https://tec.openplanner.team/stops/Csscrot1"], ["https://tec.openplanner.team/stops/Llgnati1", "https://tec.openplanner.team/stops/Llgpari1"], ["https://tec.openplanner.team/stops/H1pd145a", "https://tec.openplanner.team/stops/H1sb149b"], ["https://tec.openplanner.team/stops/Bwaucan1", "https://tec.openplanner.team/stops/Bwaucan2"], ["https://tec.openplanner.team/stops/LMHec--1", "https://tec.openplanner.team/stops/NL73aeb"], ["https://tec.openplanner.team/stops/N501exa", "https://tec.openplanner.team/stops/N501gqb"], ["https://tec.openplanner.team/stops/N874amc", "https://tec.openplanner.team/stops/X874apa"], ["https://tec.openplanner.team/stops/Lhrdeme2", "https://tec.openplanner.team/stops/Lhrdeme4"], ["https://tec.openplanner.team/stops/X601bub", "https://tec.openplanner.team/stops/X601cdb"], ["https://tec.openplanner.team/stops/H2ch105a", "https://tec.openplanner.team/stops/H2ch105c"], ["https://tec.openplanner.team/stops/X731aeb", "https://tec.openplanner.team/stops/X731ama"], ["https://tec.openplanner.team/stops/Buccdef1", "https://tec.openplanner.team/stops/Buccdho2"], ["https://tec.openplanner.team/stops/Bbsgfva2", "https://tec.openplanner.team/stops/Bgzdsta1"], ["https://tec.openplanner.team/stops/H2ch107b", "https://tec.openplanner.team/stops/H2ch125a"], ["https://tec.openplanner.team/stops/Bnivga11", "https://tec.openplanner.team/stops/Bnivsse1"], ["https://tec.openplanner.team/stops/H4ir163b", "https://tec.openplanner.team/stops/H4ir164a"], ["https://tec.openplanner.team/stops/Llggram1", "https://tec.openplanner.team/stops/Llgstvi1"], ["https://tec.openplanner.team/stops/LNChock1", "https://tec.openplanner.team/stops/LNCmoul1"], ["https://tec.openplanner.team/stops/Bbearwa1", "https://tec.openplanner.team/stops/Bbearwa2"], ["https://tec.openplanner.team/stops/LWArege1", "https://tec.openplanner.team/stops/LWAvand1"], ["https://tec.openplanner.team/stops/LBapepi3", "https://tec.openplanner.team/stops/LBapepi4"], ["https://tec.openplanner.team/stops/Lre3che2", "https://tec.openplanner.team/stops/Lrecite2"], ["https://tec.openplanner.team/stops/Becegar1", "https://tec.openplanner.team/stops/H2ec103b"], ["https://tec.openplanner.team/stops/LaMahof2", "https://tec.openplanner.team/stops/LmRmuhl1"], ["https://tec.openplanner.team/stops/X943aaa", "https://tec.openplanner.team/stops/X943ahb"], ["https://tec.openplanner.team/stops/Cthbifu1", "https://tec.openplanner.team/stops/Cthbifu2"], ["https://tec.openplanner.team/stops/Ccoh1212", "https://tec.openplanner.team/stops/Ccomiau2"], ["https://tec.openplanner.team/stops/H4eg105b", "https://tec.openplanner.team/stops/H4pq120a"], ["https://tec.openplanner.team/stops/LHDmc--1", "https://tec.openplanner.team/stops/LHDpota3"], ["https://tec.openplanner.team/stops/X910aba", "https://tec.openplanner.team/stops/X910aia"], ["https://tec.openplanner.team/stops/Loubiez3", "https://tec.openplanner.team/stops/Lousite6"], ["https://tec.openplanner.team/stops/LLaover3", "https://tec.openplanner.team/stops/LWscona1"], ["https://tec.openplanner.team/stops/X760afa", "https://tec.openplanner.team/stops/X762aeb"], ["https://tec.openplanner.team/stops/N132aca", "https://tec.openplanner.team/stops/N132acb"], ["https://tec.openplanner.team/stops/X713acb", "https://tec.openplanner.team/stops/X986alc"], ["https://tec.openplanner.team/stops/H1ml112b", "https://tec.openplanner.team/stops/H1to152a"], ["https://tec.openplanner.team/stops/X733agb", "https://tec.openplanner.team/stops/X733alb"], ["https://tec.openplanner.team/stops/LJEmalg2", "https://tec.openplanner.team/stops/LSkyern2"], ["https://tec.openplanner.team/stops/Bbcoubo2", "https://tec.openplanner.team/stops/H3br108d"], ["https://tec.openplanner.team/stops/Bnivtec2", "https://tec.openplanner.team/stops/Bnivvai2"], ["https://tec.openplanner.team/stops/Crodebr2", "https://tec.openplanner.team/stops/Crolema4"], ["https://tec.openplanner.team/stops/H2fy123a", "https://tec.openplanner.team/stops/H2fy123d"], ["https://tec.openplanner.team/stops/N506afb", "https://tec.openplanner.team/stops/N537aka"], ["https://tec.openplanner.team/stops/LeMdorf2", "https://tec.openplanner.team/stops/LeMnr12"], ["https://tec.openplanner.team/stops/N531aca", "https://tec.openplanner.team/stops/N531aia"], ["https://tec.openplanner.team/stops/H1sb145b", "https://tec.openplanner.team/stops/H1sb148a"], ["https://tec.openplanner.team/stops/N235aab", "https://tec.openplanner.team/stops/N236amb"], ["https://tec.openplanner.team/stops/N230ama", "https://tec.openplanner.team/stops/N549acb"], ["https://tec.openplanner.team/stops/LAYthir1", "https://tec.openplanner.team/stops/LAYthir2"], ["https://tec.openplanner.team/stops/Ccogode2", "https://tec.openplanner.team/stops/Ccogrha2"], ["https://tec.openplanner.team/stops/Llgbago1", "https://tec.openplanner.team/stops/Llgbaro2"], ["https://tec.openplanner.team/stops/X721aba", "https://tec.openplanner.team/stops/X763aia"], ["https://tec.openplanner.team/stops/H1do126b", "https://tec.openplanner.team/stops/H1ho135a"], ["https://tec.openplanner.team/stops/Lhrcite2", "https://tec.openplanner.team/stops/Lhrpont2"], ["https://tec.openplanner.team/stops/Cpccoss1", "https://tec.openplanner.team/stops/Cpccpas1"], ["https://tec.openplanner.team/stops/Cbfgare1", "https://tec.openplanner.team/stops/Cbfgare2"], ["https://tec.openplanner.team/stops/Lbrptbr1", "https://tec.openplanner.team/stops/Lbrptbr2"], ["https://tec.openplanner.team/stops/Bcrnnra1", "https://tec.openplanner.team/stops/Bcrnnra2"], ["https://tec.openplanner.team/stops/Lsebrun3", "https://tec.openplanner.team/stops/Lsebrun4"], ["https://tec.openplanner.team/stops/X660adb", "https://tec.openplanner.team/stops/X660agb"], ["https://tec.openplanner.team/stops/N141ada", "https://tec.openplanner.team/stops/N141ama"], ["https://tec.openplanner.team/stops/H2sb257b", "https://tec.openplanner.team/stops/H2sb271a"], ["https://tec.openplanner.team/stops/LBPeg--1", "https://tec.openplanner.team/stops/LBPrueg1"], ["https://tec.openplanner.team/stops/X713aea", "https://tec.openplanner.team/stops/X713agb"], ["https://tec.openplanner.team/stops/Cnahahe1", "https://tec.openplanner.team/stops/Cnawari2"], ["https://tec.openplanner.team/stops/Chhplbe2", "https://tec.openplanner.team/stops/Chhthui1"], ["https://tec.openplanner.team/stops/Cbfbies2", "https://tec.openplanner.team/stops/Cctvill1"], ["https://tec.openplanner.team/stops/N121ajb", "https://tec.openplanner.team/stops/N122afb"], ["https://tec.openplanner.team/stops/N127aaa", "https://tec.openplanner.team/stops/N127bba"], ["https://tec.openplanner.team/stops/H2ca100a", "https://tec.openplanner.team/stops/H2ca103a"], ["https://tec.openplanner.team/stops/LBLwaid1", "https://tec.openplanner.team/stops/LTrrich2"], ["https://tec.openplanner.team/stops/Bucccal4", "https://tec.openplanner.team/stops/Bucceng1"], ["https://tec.openplanner.team/stops/Lsehya-3", "https://tec.openplanner.team/stops/Lsepapi3"], ["https://tec.openplanner.team/stops/Cjulucq2", "https://tec.openplanner.team/stops/Cjupuis1"], ["https://tec.openplanner.team/stops/LBbbac-1", "https://tec.openplanner.team/stops/LBbhupp1"], ["https://tec.openplanner.team/stops/H1ma233a", "https://tec.openplanner.team/stops/H1ms310a"], ["https://tec.openplanner.team/stops/X607aca", "https://tec.openplanner.team/stops/X607acb"], ["https://tec.openplanner.team/stops/LNCspor1", "https://tec.openplanner.team/stops/LNCspor2"], ["https://tec.openplanner.team/stops/X542acb", "https://tec.openplanner.team/stops/X542adb"], ["https://tec.openplanner.team/stops/H2ll182a", "https://tec.openplanner.team/stops/H2ll199a"], ["https://tec.openplanner.team/stops/N138aab", "https://tec.openplanner.team/stops/N138afa"], ["https://tec.openplanner.team/stops/Cctathe1", "https://tec.openplanner.team/stops/Cctstro3"], ["https://tec.openplanner.team/stops/N310aba", "https://tec.openplanner.team/stops/N310ada"], ["https://tec.openplanner.team/stops/H3so167a", "https://tec.openplanner.team/stops/H3so170a"], ["https://tec.openplanner.team/stops/X633aca", "https://tec.openplanner.team/stops/X633adc"], ["https://tec.openplanner.team/stops/X780aba", "https://tec.openplanner.team/stops/X780ada"], ["https://tec.openplanner.team/stops/LENalun1", "https://tec.openplanner.team/stops/LENparc2"], ["https://tec.openplanner.team/stops/H1qu109b", "https://tec.openplanner.team/stops/H1qu114b"], ["https://tec.openplanner.team/stops/Brsgm302", "https://tec.openplanner.team/stops/Brsgm802"], ["https://tec.openplanner.team/stops/H2ha129c", "https://tec.openplanner.team/stops/H2ha129d"], ["https://tec.openplanner.team/stops/N506bhb", "https://tec.openplanner.team/stops/N512axa"], ["https://tec.openplanner.team/stops/LmNkrew1", "https://tec.openplanner.team/stops/LmNlieb2"], ["https://tec.openplanner.team/stops/Bjodsje1", "https://tec.openplanner.team/stops/Bjodsme2"], ["https://tec.openplanner.team/stops/X804anb", "https://tec.openplanner.team/stops/X804bwb"], ["https://tec.openplanner.team/stops/Lcceclu1", "https://tec.openplanner.team/stops/Lcceclu2"], ["https://tec.openplanner.team/stops/Bgemrom3", "https://tec.openplanner.team/stops/Bgemrom4"], ["https://tec.openplanner.team/stops/H1qg138d", "https://tec.openplanner.team/stops/H1qy136b"], ["https://tec.openplanner.team/stops/N565aja", "https://tec.openplanner.team/stops/N569afa"], ["https://tec.openplanner.team/stops/Ljuchaf2", "https://tec.openplanner.team/stops/Ljumiux1"], ["https://tec.openplanner.team/stops/Baegegl2", "https://tec.openplanner.team/stops/Bflccav1"], ["https://tec.openplanner.team/stops/LWecarr1", "https://tec.openplanner.team/stops/LWecarr2"], ["https://tec.openplanner.team/stops/N894aba", "https://tec.openplanner.team/stops/N894abb"], ["https://tec.openplanner.team/stops/LgRzent1", "https://tec.openplanner.team/stops/LtHkreu4"], ["https://tec.openplanner.team/stops/Clrmarl4", "https://tec.openplanner.team/stops/CMpara1"], ["https://tec.openplanner.team/stops/Bbsgbos2", "https://tec.openplanner.team/stops/Bbsgrve2"], ["https://tec.openplanner.team/stops/H4ha170b", "https://tec.openplanner.team/stops/H4me213a"], ["https://tec.openplanner.team/stops/N244aeb", "https://tec.openplanner.team/stops/N244ava"], ["https://tec.openplanner.team/stops/LPoewer1", "https://tec.openplanner.team/stops/LPoxhav1"], ["https://tec.openplanner.team/stops/N538aia", "https://tec.openplanner.team/stops/N538ajc"], ["https://tec.openplanner.team/stops/Lseconc2", "https://tec.openplanner.team/stops/Lsetroq1"], ["https://tec.openplanner.team/stops/LWEwilc1", "https://tec.openplanner.team/stops/LWEwilc2"], ["https://tec.openplanner.team/stops/X715ajb", "https://tec.openplanner.team/stops/X715akb"], ["https://tec.openplanner.team/stops/LBBcamp2", "https://tec.openplanner.team/stops/LLvgare2"], ["https://tec.openplanner.team/stops/X651aba", "https://tec.openplanner.team/stops/X651aea"], ["https://tec.openplanner.team/stops/X358ada", "https://tec.openplanner.team/stops/X358aeb"], ["https://tec.openplanner.team/stops/X923aaa", "https://tec.openplanner.team/stops/X923akb"], ["https://tec.openplanner.team/stops/Ladgath1", "https://tec.openplanner.team/stops/Ladmoli1"], ["https://tec.openplanner.team/stops/N201aea", "https://tec.openplanner.team/stops/N201aed"], ["https://tec.openplanner.team/stops/N270acb", "https://tec.openplanner.team/stops/N270adb"], ["https://tec.openplanner.team/stops/X746akb", "https://tec.openplanner.team/stops/X746alb"], ["https://tec.openplanner.team/stops/Ladwooz1", "https://tec.openplanner.team/stops/LHCcoul1"], ["https://tec.openplanner.team/stops/H4ho120a", "https://tec.openplanner.team/stops/H4lg103b"], ["https://tec.openplanner.team/stops/Bgemga07", "https://tec.openplanner.team/stops/N522bvf"], ["https://tec.openplanner.team/stops/X782alb", "https://tec.openplanner.team/stops/X782aob"], ["https://tec.openplanner.team/stops/H4oq223a", "https://tec.openplanner.team/stops/H4ty327a"], ["https://tec.openplanner.team/stops/H1ht128b", "https://tec.openplanner.team/stops/H1si155b"], ["https://tec.openplanner.team/stops/X837aia", "https://tec.openplanner.team/stops/X837aib"], ["https://tec.openplanner.team/stops/Cmymarb1", "https://tec.openplanner.team/stops/Cmymarb2"], ["https://tec.openplanner.team/stops/LHCbois2", "https://tec.openplanner.team/stops/LHCprog2"], ["https://tec.openplanner.team/stops/X802ada", "https://tec.openplanner.team/stops/X802apa"], ["https://tec.openplanner.team/stops/Lgrdemo1", "https://tec.openplanner.team/stops/Lgrjobe2"], ["https://tec.openplanner.team/stops/Bhlvlou2", "https://tec.openplanner.team/stops/Bhlvvil1"], ["https://tec.openplanner.team/stops/X741aka", "https://tec.openplanner.team/stops/X741ala"], ["https://tec.openplanner.team/stops/X917aba", "https://tec.openplanner.team/stops/X917ajb"], ["https://tec.openplanner.team/stops/N580aha", "https://tec.openplanner.team/stops/N580ahb"], ["https://tec.openplanner.team/stops/LBiberg2", "https://tec.openplanner.team/stops/LBNforg2"], ["https://tec.openplanner.team/stops/Ljeegli3", "https://tec.openplanner.team/stops/Ljeorda1"], ["https://tec.openplanner.team/stops/N557adb", "https://tec.openplanner.team/stops/N557aga"], ["https://tec.openplanner.team/stops/LCSmagn1", "https://tec.openplanner.team/stops/LENengi2"], ["https://tec.openplanner.team/stops/H1bx105b", "https://tec.openplanner.team/stops/H1bx106b"], ["https://tec.openplanner.team/stops/LGLc50-3", "https://tec.openplanner.team/stops/LGLecol1"], ["https://tec.openplanner.team/stops/X729abb", "https://tec.openplanner.team/stops/X729aca"], ["https://tec.openplanner.team/stops/LLbrecu1", "https://tec.openplanner.team/stops/LRcjard2"], ["https://tec.openplanner.team/stops/H1ms278a", "https://tec.openplanner.team/stops/H1ms287b"], ["https://tec.openplanner.team/stops/N542acc", "https://tec.openplanner.team/stops/N542asb"], ["https://tec.openplanner.team/stops/Cgoetun3", "https://tec.openplanner.team/stops/Cgoetun4"], ["https://tec.openplanner.team/stops/X615bbb", "https://tec.openplanner.team/stops/X615bcb"], ["https://tec.openplanner.team/stops/Bquecro1", "https://tec.openplanner.team/stops/Bqueegl1"], ["https://tec.openplanner.team/stops/Bbrlvil1", "https://tec.openplanner.team/stops/Brsgtou1"], ["https://tec.openplanner.team/stops/N162ada", "https://tec.openplanner.team/stops/N162adb"], ["https://tec.openplanner.team/stops/X940afa", "https://tec.openplanner.team/stops/X940afb"], ["https://tec.openplanner.team/stops/LnN02--1", "https://tec.openplanner.team/stops/LsVlust1"], ["https://tec.openplanner.team/stops/X840aab", "https://tec.openplanner.team/stops/X840aga"], ["https://tec.openplanner.team/stops/LSEquar1", "https://tec.openplanner.team/stops/LSEquar2"], ["https://tec.openplanner.team/stops/Cmtduch2", "https://tec.openplanner.team/stops/Cmttkai1"], ["https://tec.openplanner.team/stops/X892aia", "https://tec.openplanner.team/stops/X892aja"], ["https://tec.openplanner.team/stops/LSPecho1", "https://tec.openplanner.team/stops/LWM759-1"], ["https://tec.openplanner.team/stops/Lhrchar1", "https://tec.openplanner.team/stops/Lhrchar3"], ["https://tec.openplanner.team/stops/N150acb", "https://tec.openplanner.team/stops/N150afb"], ["https://tec.openplanner.team/stops/N506akb", "https://tec.openplanner.team/stops/N506bxb"], ["https://tec.openplanner.team/stops/X607aib", "https://tec.openplanner.team/stops/X647aab"], ["https://tec.openplanner.team/stops/N351akd", "https://tec.openplanner.team/stops/N351ala"], ["https://tec.openplanner.team/stops/Clodrio4", "https://tec.openplanner.team/stops/Clomart2"], ["https://tec.openplanner.team/stops/Lagstre1", "https://tec.openplanner.team/stops/Lemjacq1"], ["https://tec.openplanner.team/stops/N127aba", "https://tec.openplanner.team/stops/N127aia"], ["https://tec.openplanner.team/stops/Bptbmco2", "https://tec.openplanner.team/stops/Brxmcna1"], ["https://tec.openplanner.team/stops/Blmlcim2", "https://tec.openplanner.team/stops/Blmlqlo2"], ["https://tec.openplanner.team/stops/LPAeg--1", "https://tec.openplanner.team/stops/LPAmosa2"], ["https://tec.openplanner.team/stops/H4cw105b", "https://tec.openplanner.team/stops/H4hg156a"], ["https://tec.openplanner.team/stops/X662aca", "https://tec.openplanner.team/stops/X662agb"], ["https://tec.openplanner.team/stops/Cfcrerp2", "https://tec.openplanner.team/stops/Cvrfema1"], ["https://tec.openplanner.team/stops/Lhrdelv1", "https://tec.openplanner.team/stops/Lvitomb2"], ["https://tec.openplanner.team/stops/LAmab752", "https://tec.openplanner.team/stops/LVLchem2"], ["https://tec.openplanner.team/stops/Cfachap1", "https://tec.openplanner.team/stops/Cfaplma2"], ["https://tec.openplanner.team/stops/LBVcent2", "https://tec.openplanner.team/stops/LBVplan2"], ["https://tec.openplanner.team/stops/N245acb", "https://tec.openplanner.team/stops/N287aca"], ["https://tec.openplanner.team/stops/Bglacsr1", "https://tec.openplanner.team/stops/Cwspavi1"], ["https://tec.openplanner.team/stops/Cgocalv2", "https://tec.openplanner.team/stops/CMchfl1"], ["https://tec.openplanner.team/stops/N501lyb", "https://tec.openplanner.team/stops/N501mey"], ["https://tec.openplanner.team/stops/H5bl118b", "https://tec.openplanner.team/stops/H5bl120a"], ["https://tec.openplanner.team/stops/Bptrgri2", "https://tec.openplanner.team/stops/Brosegl1"], ["https://tec.openplanner.team/stops/X801bwb", "https://tec.openplanner.team/stops/X802ana"], ["https://tec.openplanner.team/stops/N162aeb", "https://tec.openplanner.team/stops/N162afb"], ["https://tec.openplanner.team/stops/X860aab", "https://tec.openplanner.team/stops/X860abb"], ["https://tec.openplanner.team/stops/Bleugar1", "https://tec.openplanner.team/stops/LMastat4"], ["https://tec.openplanner.team/stops/N501gca", "https://tec.openplanner.team/stops/N501lnb"], ["https://tec.openplanner.team/stops/Lsnmala1", "https://tec.openplanner.team/stops/Lsnmala3"], ["https://tec.openplanner.team/stops/N501hoa", "https://tec.openplanner.team/stops/N501hqb"], ["https://tec.openplanner.team/stops/X619aib", "https://tec.openplanner.team/stops/X619aic"], ["https://tec.openplanner.team/stops/H1me112b", "https://tec.openplanner.team/stops/H1mm127b"], ["https://tec.openplanner.team/stops/Lvegazo1", "https://tec.openplanner.team/stops/Lvehout1"], ["https://tec.openplanner.team/stops/H1pw120b", "https://tec.openplanner.team/stops/H1pw121b"], ["https://tec.openplanner.team/stops/LSSvill2", "https://tec.openplanner.team/stops/LSSvill3"], ["https://tec.openplanner.team/stops/H1ob328a", "https://tec.openplanner.team/stops/H1ob328b"], ["https://tec.openplanner.team/stops/X734anc", "https://tec.openplanner.team/stops/X734and"], ["https://tec.openplanner.team/stops/N501dfa", "https://tec.openplanner.team/stops/N501mxb"], ["https://tec.openplanner.team/stops/N149acb", "https://tec.openplanner.team/stops/N154ada"], ["https://tec.openplanner.team/stops/Cbctile", "https://tec.openplanner.team/stops/Cfvombo1"], ["https://tec.openplanner.team/stops/LlgPRVo1", "https://tec.openplanner.team/stops/LlgPRVo2"], ["https://tec.openplanner.team/stops/N525ada", "https://tec.openplanner.team/stops/N525alb"], ["https://tec.openplanner.team/stops/Llgnaes1", "https://tec.openplanner.team/stops/Llgnaes2"], ["https://tec.openplanner.team/stops/X371aib", "https://tec.openplanner.team/stops/X371aja"], ["https://tec.openplanner.team/stops/X641ajb", "https://tec.openplanner.team/stops/X641akb"], ["https://tec.openplanner.team/stops/Bmrlhan2", "https://tec.openplanner.team/stops/Bmrlhan3"], ["https://tec.openplanner.team/stops/Bmonbor1", "https://tec.openplanner.team/stops/Bmoncab1"], ["https://tec.openplanner.team/stops/X897aqa", "https://tec.openplanner.team/stops/X897aqb"], ["https://tec.openplanner.team/stops/X922aja", "https://tec.openplanner.team/stops/X922ajb"], ["https://tec.openplanner.team/stops/Crgmgri1", "https://tec.openplanner.team/stops/Crgmgri2"], ["https://tec.openplanner.team/stops/H1cd111b", "https://tec.openplanner.team/stops/H1hr127b"], ["https://tec.openplanner.team/stops/X224abb", "https://tec.openplanner.team/stops/X224acb"], ["https://tec.openplanner.team/stops/X615apa", "https://tec.openplanner.team/stops/X615apb"], ["https://tec.openplanner.team/stops/LLbpt--2", "https://tec.openplanner.team/stops/LLbquar2"], ["https://tec.openplanner.team/stops/Cfcpla1", "https://tec.openplanner.team/stops/Cfcpla2"], ["https://tec.openplanner.team/stops/Ccicent1", "https://tec.openplanner.team/stops/Ccicent3"], ["https://tec.openplanner.team/stops/Csrcant2", "https://tec.openplanner.team/stops/Cvtvois1"], ["https://tec.openplanner.team/stops/X886ahb", "https://tec.openplanner.team/stops/X888acb"], ["https://tec.openplanner.team/stops/Bsampli2", "https://tec.openplanner.team/stops/N584bba"], ["https://tec.openplanner.team/stops/Brsgera1", "https://tec.openplanner.team/stops/Brsggde2"], ["https://tec.openplanner.team/stops/H2sv219b", "https://tec.openplanner.team/stops/H2sv220b"], ["https://tec.openplanner.team/stops/H1ba114a", "https://tec.openplanner.team/stops/H1ba114d"], ["https://tec.openplanner.team/stops/LHUbail1", "https://tec.openplanner.team/stops/LHUsart1"], ["https://tec.openplanner.team/stops/H4ep126b", "https://tec.openplanner.team/stops/H4ep131b"], ["https://tec.openplanner.team/stops/X871aba", "https://tec.openplanner.team/stops/X876afa"], ["https://tec.openplanner.team/stops/N545aca", "https://tec.openplanner.team/stops/N553ana"], ["https://tec.openplanner.team/stops/X607aga", "https://tec.openplanner.team/stops/X607ajb"], ["https://tec.openplanner.team/stops/LBThaut2", "https://tec.openplanner.team/stops/Lprspra1"], ["https://tec.openplanner.team/stops/N368ada", "https://tec.openplanner.team/stops/N368aea"], ["https://tec.openplanner.team/stops/LBpvue-1", "https://tec.openplanner.team/stops/LHgroso2"], ["https://tec.openplanner.team/stops/N234aaa", "https://tec.openplanner.team/stops/N234acb"], ["https://tec.openplanner.team/stops/LbUkrin1", "https://tec.openplanner.team/stops/LbUmurr2"], ["https://tec.openplanner.team/stops/N501kea", "https://tec.openplanner.team/stops/N501kmy"], ["https://tec.openplanner.team/stops/Cctchea1", "https://tec.openplanner.team/stops/NC11aja"], ["https://tec.openplanner.team/stops/H4au100a", "https://tec.openplanner.team/stops/H4ea127a"], ["https://tec.openplanner.team/stops/Cchlamb1", "https://tec.openplanner.team/stops/Clodrio3"], ["https://tec.openplanner.team/stops/Bwatpas2", "https://tec.openplanner.team/stops/Bwatrdu1"], ["https://tec.openplanner.team/stops/Caujonc2", "https://tec.openplanner.team/stops/Cauromi1"], ["https://tec.openplanner.team/stops/LRtcarr1", "https://tec.openplanner.team/stops/LSebott1"], ["https://tec.openplanner.team/stops/N539adc", "https://tec.openplanner.team/stops/N539ana"], ["https://tec.openplanner.team/stops/H1sg148a", "https://tec.openplanner.team/stops/H1te174a"], ["https://tec.openplanner.team/stops/Bblaall2", "https://tec.openplanner.team/stops/Bblavba2"], ["https://tec.openplanner.team/stops/Berngrt2", "https://tec.openplanner.team/stops/Bernrar2"], ["https://tec.openplanner.team/stops/Llgcurt1", "https://tec.openplanner.team/stops/Llgdepo6"], ["https://tec.openplanner.team/stops/LSpfond1", "https://tec.openplanner.team/stops/LSphote2"], ["https://tec.openplanner.team/stops/H1he104a", "https://tec.openplanner.team/stops/H1he106a"], ["https://tec.openplanner.team/stops/LeUmeye2", "https://tec.openplanner.team/stops/LrAiter1"], ["https://tec.openplanner.team/stops/LSPchap3", "https://tec.openplanner.team/stops/LSProya1"], ["https://tec.openplanner.team/stops/LsVeite1", "https://tec.openplanner.team/stops/LwLprum2"], ["https://tec.openplanner.team/stops/H1en101a", "https://tec.openplanner.team/stops/H1en103a"], ["https://tec.openplanner.team/stops/X614bra", "https://tec.openplanner.team/stops/X626ala"], ["https://tec.openplanner.team/stops/Bptecal1", "https://tec.openplanner.team/stops/Bptecal2"], ["https://tec.openplanner.team/stops/N501kva", "https://tec.openplanner.team/stops/N501kwb"], ["https://tec.openplanner.team/stops/LAOeg--2", "https://tec.openplanner.team/stops/LLRgdma2"], ["https://tec.openplanner.team/stops/Cfohopi1", "https://tec.openplanner.team/stops/Cfohopi2"], ["https://tec.openplanner.team/stops/Bbiemor2", "https://tec.openplanner.team/stops/Bbiepon2"], ["https://tec.openplanner.team/stops/H1og130b", "https://tec.openplanner.team/stops/H1og134b"], ["https://tec.openplanner.team/stops/H1do127a", "https://tec.openplanner.team/stops/H1do130b"], ["https://tec.openplanner.team/stops/LDObell2", "https://tec.openplanner.team/stops/LHVgoro2"], ["https://tec.openplanner.team/stops/Cluplve4", "https://tec.openplanner.team/stops/H2lu100d"], ["https://tec.openplanner.team/stops/LHUvege1", "https://tec.openplanner.team/stops/NL76ala"], ["https://tec.openplanner.team/stops/H4ep127a", "https://tec.openplanner.team/stops/H4ft134a"], ["https://tec.openplanner.team/stops/Bgzddub1", "https://tec.openplanner.team/stops/Bgzdsta1"], ["https://tec.openplanner.team/stops/H1te175a", "https://tec.openplanner.team/stops/H1te198a"], ["https://tec.openplanner.team/stops/H4ne138a", "https://tec.openplanner.team/stops/H4te260a"], ["https://tec.openplanner.team/stops/Bbchndb1", "https://tec.openplanner.team/stops/Bbchpil2"], ["https://tec.openplanner.team/stops/N501dja", "https://tec.openplanner.team/stops/N501lea"], ["https://tec.openplanner.team/stops/X641ata", "https://tec.openplanner.team/stops/X673aab"], ["https://tec.openplanner.team/stops/H4lu128a", "https://tec.openplanner.team/stops/H4mo193b"], ["https://tec.openplanner.team/stops/X902aib", "https://tec.openplanner.team/stops/X902aja"], ["https://tec.openplanner.team/stops/Cslbarb2", "https://tec.openplanner.team/stops/Cslegli1"], ["https://tec.openplanner.team/stops/Bgzdgst1", "https://tec.openplanner.team/stops/Bpecvme2"], ["https://tec.openplanner.team/stops/H1mb130a", "https://tec.openplanner.team/stops/H1mb130b"], ["https://tec.openplanner.team/stops/H4ty314a", "https://tec.openplanner.team/stops/H4ty314b"], ["https://tec.openplanner.team/stops/Bclglbu1", "https://tec.openplanner.team/stops/Bclgvse1"], ["https://tec.openplanner.team/stops/Lanegal2", "https://tec.openplanner.team/stops/Lanmouf2"], ["https://tec.openplanner.team/stops/Brxmcna1", "https://tec.openplanner.team/stops/Brxmcna2"], ["https://tec.openplanner.team/stops/H1ms258a", "https://tec.openplanner.team/stops/H1ms367a"], ["https://tec.openplanner.team/stops/Cgorobe1", "https://tec.openplanner.team/stops/Cgosoux1"], ["https://tec.openplanner.team/stops/X888abb", "https://tec.openplanner.team/stops/X899aeb"], ["https://tec.openplanner.team/stops/Cvrhaie2", "https://tec.openplanner.team/stops/NH03adb"], ["https://tec.openplanner.team/stops/H4mt219b", "https://tec.openplanner.team/stops/H4ve131b"], ["https://tec.openplanner.team/stops/Bblavba1", "https://tec.openplanner.team/stops/Bblavba2"], ["https://tec.openplanner.team/stops/N543cna", "https://tec.openplanner.team/stops/N543cnb"], ["https://tec.openplanner.team/stops/LhGscha*", "https://tec.openplanner.team/stops/LhSfrei1"], ["https://tec.openplanner.team/stops/H4bo110a", "https://tec.openplanner.team/stops/H4bo111a"], ["https://tec.openplanner.team/stops/X902abb", "https://tec.openplanner.team/stops/X902bbb"], ["https://tec.openplanner.team/stops/X623aaa", "https://tec.openplanner.team/stops/X623aab"], ["https://tec.openplanner.team/stops/H2re163b", "https://tec.openplanner.team/stops/H2re167a"], ["https://tec.openplanner.team/stops/Lmodeja1", "https://tec.openplanner.team/stops/Lmoknae1"], ["https://tec.openplanner.team/stops/Lenplac2", "https://tec.openplanner.team/stops/Lenplac5"], ["https://tec.openplanner.team/stops/Ccugend1", "https://tec.openplanner.team/stops/Cculgeo2"], ["https://tec.openplanner.team/stops/LPAmosa2", "https://tec.openplanner.team/stops/LWibare1"], ["https://tec.openplanner.team/stops/H1qu119a", "https://tec.openplanner.team/stops/H1wa147b"], ["https://tec.openplanner.team/stops/Lsmdepo2", "https://tec.openplanner.team/stops/Lsmecol2"], ["https://tec.openplanner.team/stops/LCacoop2", "https://tec.openplanner.team/stops/LCaresi1"], ["https://tec.openplanner.team/stops/X768aia", "https://tec.openplanner.team/stops/X769ajb"], ["https://tec.openplanner.team/stops/Bmrsayw2", "https://tec.openplanner.team/stops/Bohnpla2"], ["https://tec.openplanner.team/stops/Lmochar1", "https://tec.openplanner.team/stops/Lmomarr3"], ["https://tec.openplanner.team/stops/LHCbois1", "https://tec.openplanner.team/stops/LHCcoul1"], ["https://tec.openplanner.team/stops/H4ty319b", "https://tec.openplanner.team/stops/H4ty405a"], ["https://tec.openplanner.team/stops/LGegare1", "https://tec.openplanner.team/stops/LVAwolf1"], ["https://tec.openplanner.team/stops/N504acb", "https://tec.openplanner.team/stops/N579aea"], ["https://tec.openplanner.team/stops/LmS11--1", "https://tec.openplanner.team/stops/LmS11--2"], ["https://tec.openplanner.team/stops/LAivill2", "https://tec.openplanner.team/stops/LENarde2"], ["https://tec.openplanner.team/stops/LSBrouf1", "https://tec.openplanner.team/stops/LSBrouf4"], ["https://tec.openplanner.team/stops/N139aea", "https://tec.openplanner.team/stops/N139aeb"], ["https://tec.openplanner.team/stops/LHggeer1", "https://tec.openplanner.team/stops/LHggeer2"], ["https://tec.openplanner.team/stops/LLreque2", "https://tec.openplanner.team/stops/LLrisa-*"], ["https://tec.openplanner.team/stops/LBHinva1", "https://tec.openplanner.team/stops/LMeperk2"], ["https://tec.openplanner.team/stops/X354adb", "https://tec.openplanner.team/stops/X354afb"], ["https://tec.openplanner.team/stops/H1wa151a", "https://tec.openplanner.team/stops/H1wa160a"], ["https://tec.openplanner.team/stops/X908aob", "https://tec.openplanner.team/stops/X908aoc"], ["https://tec.openplanner.team/stops/LREraph2", "https://tec.openplanner.team/stops/LREraph3"], ["https://tec.openplanner.team/stops/Bnivsho1", "https://tec.openplanner.team/stops/Bnivsho2"], ["https://tec.openplanner.team/stops/X661abb", "https://tec.openplanner.team/stops/X661bcb"], ["https://tec.openplanner.team/stops/Cjucopp2", "https://tec.openplanner.team/stops/Cjupn2"], ["https://tec.openplanner.team/stops/Bmelenf2", "https://tec.openplanner.team/stops/Bmelsab2"], ["https://tec.openplanner.team/stops/X595afc", "https://tec.openplanner.team/stops/X713aab"], ["https://tec.openplanner.team/stops/LFPgeme2", "https://tec.openplanner.team/stops/LFPkerk1"], ["https://tec.openplanner.team/stops/X654aea", "https://tec.openplanner.team/stops/X654aeb"], ["https://tec.openplanner.team/stops/LGLc12-3", "https://tec.openplanner.team/stops/LGLeg--1"], ["https://tec.openplanner.team/stops/X757ana", "https://tec.openplanner.team/stops/X757anb"], ["https://tec.openplanner.team/stops/Bsmgpon1", "https://tec.openplanner.team/stops/Btanvil2"], ["https://tec.openplanner.team/stops/Ccogrbu1", "https://tec.openplanner.team/stops/Csograf1"], ["https://tec.openplanner.team/stops/LVIpneu1", "https://tec.openplanner.team/stops/LVIpneu2"], ["https://tec.openplanner.team/stops/N244aka", "https://tec.openplanner.team/stops/N244ala"], ["https://tec.openplanner.team/stops/X629aba", "https://tec.openplanner.team/stops/X636aza"], ["https://tec.openplanner.team/stops/Bwatbno2", "https://tec.openplanner.team/stops/Bwatchb1"], ["https://tec.openplanner.team/stops/Lghalli1", "https://tec.openplanner.team/stops/Llochar4"], ["https://tec.openplanner.team/stops/Bjodrga1", "https://tec.openplanner.team/stops/Bjodrrg1"], ["https://tec.openplanner.team/stops/X878abb", "https://tec.openplanner.team/stops/X878acb"], ["https://tec.openplanner.team/stops/Cjudewe2", "https://tec.openplanner.team/stops/Clocroi2"], ["https://tec.openplanner.team/stops/X639asa", "https://tec.openplanner.team/stops/X652ahb"], ["https://tec.openplanner.team/stops/Cplrymo2", "https://tec.openplanner.team/stops/Cplstfa2"], ["https://tec.openplanner.team/stops/Bhaleur2", "https://tec.openplanner.team/stops/Bhalgja1"], ["https://tec.openplanner.team/stops/H1ro132a", "https://tec.openplanner.team/stops/H1ro132b"], ["https://tec.openplanner.team/stops/X896afb", "https://tec.openplanner.team/stops/X897aqa"], ["https://tec.openplanner.team/stops/Cbfchla2", "https://tec.openplanner.team/stops/Cbfusin1"], ["https://tec.openplanner.team/stops/N514agb", "https://tec.openplanner.team/stops/N514ahb"], ["https://tec.openplanner.team/stops/H2fy119a", "https://tec.openplanner.team/stops/H2fy120c"], ["https://tec.openplanner.team/stops/Lemmusc1", "https://tec.openplanner.team/stops/Lemmusc2"], ["https://tec.openplanner.team/stops/X721afa", "https://tec.openplanner.team/stops/X721agc"], ["https://tec.openplanner.team/stops/H1ne138a", "https://tec.openplanner.team/stops/H1ne138b"], ["https://tec.openplanner.team/stops/X923aha", "https://tec.openplanner.team/stops/X923ahb"], ["https://tec.openplanner.team/stops/X983ada", "https://tec.openplanner.team/stops/X983aeb"], ["https://tec.openplanner.team/stops/LmR90--1", "https://tec.openplanner.team/stops/LmR90--2"], ["https://tec.openplanner.team/stops/LHAarge1", "https://tec.openplanner.team/stops/LHAdeho1"], ["https://tec.openplanner.team/stops/Cjxpann2", "https://tec.openplanner.team/stops/Cmx3arb1"], ["https://tec.openplanner.team/stops/X398aba", "https://tec.openplanner.team/stops/X398ada"], ["https://tec.openplanner.team/stops/X742aca", "https://tec.openplanner.team/stops/X752aba"], ["https://tec.openplanner.team/stops/LTRpeec1", "https://tec.openplanner.team/stops/LTRpery1"], ["https://tec.openplanner.team/stops/H1br128b", "https://tec.openplanner.team/stops/H2tr248b"], ["https://tec.openplanner.team/stops/LNEtonv1", "https://tec.openplanner.team/stops/LVosoir2"], ["https://tec.openplanner.team/stops/Ccocoup2", "https://tec.openplanner.team/stops/Crorpai2"], ["https://tec.openplanner.team/stops/Llgmare6", "https://tec.openplanner.team/stops/Llgpoli1"], ["https://tec.openplanner.team/stops/Bhevjac2", "https://tec.openplanner.team/stops/Bhevwzw2"], ["https://tec.openplanner.team/stops/LCschri2", "https://tec.openplanner.team/stops/LCsgend1"], ["https://tec.openplanner.team/stops/Cvrchap1", "https://tec.openplanner.team/stops/Cvretan1"], ["https://tec.openplanner.team/stops/X764afb", "https://tec.openplanner.team/stops/X791aba"], ["https://tec.openplanner.team/stops/LrAalte1", "https://tec.openplanner.team/stops/LrAalte2"], ["https://tec.openplanner.team/stops/H4pq115b", "https://tec.openplanner.team/stops/H4pq116b"], ["https://tec.openplanner.team/stops/H1be100a", "https://tec.openplanner.team/stops/H1so137a"], ["https://tec.openplanner.team/stops/N155aib", "https://tec.openplanner.team/stops/N170afb"], ["https://tec.openplanner.team/stops/LAmarbo2", "https://tec.openplanner.team/stops/LAmbach1"], ["https://tec.openplanner.team/stops/Bcbqgar1", "https://tec.openplanner.team/stops/Btubnav1"], ["https://tec.openplanner.team/stops/Bbeaap52", "https://tec.openplanner.team/stops/Bbealbu4"], ["https://tec.openplanner.team/stops/Bgnpegl2", "https://tec.openplanner.team/stops/Bwaypon1"], ["https://tec.openplanner.team/stops/H1br122b", "https://tec.openplanner.team/stops/H1em102a"], ["https://tec.openplanner.team/stops/LTOeg--1", "https://tec.openplanner.team/stops/LTOplac1"], ["https://tec.openplanner.team/stops/LVLeg--1", "https://tec.openplanner.team/stops/LVLzoni2"], ["https://tec.openplanner.team/stops/LPLcent2", "https://tec.openplanner.team/stops/LPLcroi2"], ["https://tec.openplanner.team/stops/X818aoa", "https://tec.openplanner.team/stops/X818aob"], ["https://tec.openplanner.team/stops/N351aia", "https://tec.openplanner.team/stops/N351ajb"], ["https://tec.openplanner.team/stops/H4ce105b", "https://tec.openplanner.team/stops/H4ce106a"], ["https://tec.openplanner.team/stops/X760aaa", "https://tec.openplanner.team/stops/X760aea"], ["https://tec.openplanner.team/stops/Cflbrun1", "https://tec.openplanner.team/stops/Cflchmo1"], ["https://tec.openplanner.team/stops/Bllnrro1", "https://tec.openplanner.team/stops/Bmsgaxp1"], ["https://tec.openplanner.team/stops/X982aub", "https://tec.openplanner.team/stops/X982axb"], ["https://tec.openplanner.team/stops/N543bda", "https://tec.openplanner.team/stops/N543bfa"], ["https://tec.openplanner.team/stops/H4hq133b", "https://tec.openplanner.team/stops/H4hq133d"], ["https://tec.openplanner.team/stops/Llgancd2", "https://tec.openplanner.team/stops/LlgguilF"], ["https://tec.openplanner.team/stops/Cmypast1", "https://tec.openplanner.team/stops/Cmyquen1"], ["https://tec.openplanner.team/stops/X824aeb", "https://tec.openplanner.team/stops/X824aed"], ["https://tec.openplanner.team/stops/X749ada", "https://tec.openplanner.team/stops/X749aeb"], ["https://tec.openplanner.team/stops/H4ir161a", "https://tec.openplanner.team/stops/H4va232b"], ["https://tec.openplanner.team/stops/N106apa", "https://tec.openplanner.team/stops/N106aqb"], ["https://tec.openplanner.team/stops/LHTbaud1", "https://tec.openplanner.team/stops/LHTcent2"], ["https://tec.openplanner.team/stops/LWDmass1", "https://tec.openplanner.team/stops/LWDsieg2"], ["https://tec.openplanner.team/stops/LaMthei1", "https://tec.openplanner.team/stops/LeIkreu4"], ["https://tec.openplanner.team/stops/Llgcour3", "https://tec.openplanner.team/stops/Llgtcha2"], ["https://tec.openplanner.team/stops/H5qu147a", "https://tec.openplanner.team/stops/H5qu158a"], ["https://tec.openplanner.team/stops/Lhrdelv1", "https://tec.openplanner.team/stops/Lhrdelv2"], ["https://tec.openplanner.team/stops/Btubmon1", "https://tec.openplanner.team/stops/Btubmon2"], ["https://tec.openplanner.team/stops/N565afb", "https://tec.openplanner.team/stops/N565aia"], ["https://tec.openplanner.team/stops/N505aga", "https://tec.openplanner.team/stops/N537aia"], ["https://tec.openplanner.team/stops/Bitrcro2", "https://tec.openplanner.team/stops/Bitrcro3"], ["https://tec.openplanner.team/stops/Cfrcoop3", "https://tec.openplanner.team/stops/Cfrmon4"], ["https://tec.openplanner.team/stops/H4ar107b", "https://tec.openplanner.team/stops/H4pl135b"], ["https://tec.openplanner.team/stops/Bmrlhau2", "https://tec.openplanner.team/stops/Bpienod1"], ["https://tec.openplanner.team/stops/X631abb", "https://tec.openplanner.team/stops/X631adb"], ["https://tec.openplanner.team/stops/Cchcaya2", "https://tec.openplanner.team/stops/Cchcime1"], ["https://tec.openplanner.team/stops/Lhubarl1", "https://tec.openplanner.team/stops/Ljhcarr2"], ["https://tec.openplanner.team/stops/N505aib", "https://tec.openplanner.team/stops/N505akb"], ["https://tec.openplanner.team/stops/X398aaa", "https://tec.openplanner.team/stops/X999ana"], ["https://tec.openplanner.team/stops/N501dwa", "https://tec.openplanner.team/stops/N501kjb"], ["https://tec.openplanner.team/stops/Clbbonn1", "https://tec.openplanner.team/stops/Clbchar1"], ["https://tec.openplanner.team/stops/LrDhund1", "https://tec.openplanner.team/stops/LsVthom1"], ["https://tec.openplanner.team/stops/N519ala", "https://tec.openplanner.team/stops/N525akb"], ["https://tec.openplanner.team/stops/Bwaunce1", "https://tec.openplanner.team/stops/Bwaunou1"], ["https://tec.openplanner.team/stops/Llghoub2", "https://tec.openplanner.team/stops/Llgvinc2"], ["https://tec.openplanner.team/stops/X717aca", "https://tec.openplanner.team/stops/X717ada"], ["https://tec.openplanner.team/stops/X801cha", "https://tec.openplanner.team/stops/X801cja"], ["https://tec.openplanner.team/stops/N525aja", "https://tec.openplanner.team/stops/N525aka"], ["https://tec.openplanner.team/stops/Bmartil2", "https://tec.openplanner.team/stops/Bsdabja1"], ["https://tec.openplanner.team/stops/H1gr115b", "https://tec.openplanner.team/stops/H1mk114a"], ["https://tec.openplanner.team/stops/N217acb", "https://tec.openplanner.team/stops/N217acc"], ["https://tec.openplanner.team/stops/Cci4bra4", "https://tec.openplanner.team/stops/Cmlstgi1"], ["https://tec.openplanner.team/stops/Lrolecl2", "https://tec.openplanner.team/stops/Lrovand2"], ["https://tec.openplanner.team/stops/LNOsedo1", "https://tec.openplanner.team/stops/LREheyd1"], ["https://tec.openplanner.team/stops/Lstchas1", "https://tec.openplanner.team/stops/Lsttech2"], ["https://tec.openplanner.team/stops/Btilgar1", "https://tec.openplanner.team/stops/Bvlvmar2"], ["https://tec.openplanner.team/stops/X659aeb", "https://tec.openplanner.team/stops/X659ata"], ["https://tec.openplanner.team/stops/Bwategb1", "https://tec.openplanner.team/stops/Bwatppa1"], ["https://tec.openplanner.team/stops/LCAcruc2", "https://tec.openplanner.team/stops/LTGvill2"], ["https://tec.openplanner.team/stops/X734and", "https://tec.openplanner.team/stops/X775aca"], ["https://tec.openplanner.team/stops/N201aed", "https://tec.openplanner.team/stops/N201aef"], ["https://tec.openplanner.team/stops/H4og215b", "https://tec.openplanner.team/stops/H4to137a"], ["https://tec.openplanner.team/stops/Cmtplac4", "https://tec.openplanner.team/stops/Cmtplac7"], ["https://tec.openplanner.team/stops/X657aea", "https://tec.openplanner.team/stops/X657alb"], ["https://tec.openplanner.team/stops/X741aga", "https://tec.openplanner.team/stops/X741ana"], ["https://tec.openplanner.team/stops/Ljuchap3", "https://tec.openplanner.team/stops/Llgaba-1"], ["https://tec.openplanner.team/stops/Bnivbos1", "https://tec.openplanner.team/stops/Bnivvco2"], ["https://tec.openplanner.team/stops/N534bwb", "https://tec.openplanner.team/stops/N534bxb"], ["https://tec.openplanner.team/stops/Lghgend2", "https://tec.openplanner.team/stops/Lghvold1"], ["https://tec.openplanner.team/stops/X758aha", "https://tec.openplanner.team/stops/X759aga"], ["https://tec.openplanner.team/stops/H1qu110a", "https://tec.openplanner.team/stops/H1qu111a"], ["https://tec.openplanner.team/stops/LBNvilv2", "https://tec.openplanner.team/stops/LGOmous1"], ["https://tec.openplanner.team/stops/LVnvieg1", "https://tec.openplanner.team/stops/LVnvieg2"], ["https://tec.openplanner.team/stops/X922ada", "https://tec.openplanner.team/stops/X922aka"], ["https://tec.openplanner.team/stops/Cmyland2", "https://tec.openplanner.team/stops/Cmyland4"], ["https://tec.openplanner.team/stops/N308aca", "https://tec.openplanner.team/stops/N308asb"], ["https://tec.openplanner.team/stops/Bottgar7", "https://tec.openplanner.team/stops/Bottgar8"], ["https://tec.openplanner.team/stops/N155afb", "https://tec.openplanner.team/stops/N155afc"], ["https://tec.openplanner.team/stops/Cchbaza2", "https://tec.openplanner.team/stops/Cchwate4"], ["https://tec.openplanner.team/stops/N331aea", "https://tec.openplanner.team/stops/N331aeb"], ["https://tec.openplanner.team/stops/N509aka", "https://tec.openplanner.team/stops/N511aqa"], ["https://tec.openplanner.team/stops/H2le150a", "https://tec.openplanner.team/stops/H2le150b"], ["https://tec.openplanner.team/stops/Llgdefr2", "https://tec.openplanner.team/stops/Llgdfra1"], ["https://tec.openplanner.team/stops/Llgsnap2", "https://tec.openplanner.team/stops/Lsntvbi1"], ["https://tec.openplanner.team/stops/N311aec", "https://tec.openplanner.team/stops/N311aga"], ["https://tec.openplanner.team/stops/H4eg101b", "https://tec.openplanner.team/stops/H4eg105a"], ["https://tec.openplanner.team/stops/N533ada", "https://tec.openplanner.team/stops/N568aab"], ["https://tec.openplanner.team/stops/N506alb", "https://tec.openplanner.team/stops/N506bob"], ["https://tec.openplanner.team/stops/Blimegl1", "https://tec.openplanner.team/stops/Bottgar8"], ["https://tec.openplanner.team/stops/H4ty283a", "https://tec.openplanner.team/stops/H4ty322c"], ["https://tec.openplanner.team/stops/X717ahb", "https://tec.openplanner.team/stops/X782afb"], ["https://tec.openplanner.team/stops/H1fy120a", "https://tec.openplanner.team/stops/H1ro139b"], ["https://tec.openplanner.team/stops/H4bl106a", "https://tec.openplanner.team/stops/H4ml208b"], ["https://tec.openplanner.team/stops/Csspn1", "https://tec.openplanner.team/stops/Csurela1"], ["https://tec.openplanner.team/stops/N387acc", "https://tec.openplanner.team/stops/N387aha"], ["https://tec.openplanner.team/stops/H4pi130b", "https://tec.openplanner.team/stops/H4pi136a"], ["https://tec.openplanner.team/stops/Bmlnbpr2", "https://tec.openplanner.team/stops/Bmlnsmv2"], ["https://tec.openplanner.team/stops/X659axa", "https://tec.openplanner.team/stops/X672ahb"], ["https://tec.openplanner.team/stops/H1si162a", "https://tec.openplanner.team/stops/H1si169a"], ["https://tec.openplanner.team/stops/LFArela3", "https://tec.openplanner.team/stops/LFAwale2"], ["https://tec.openplanner.team/stops/H1ho140a", "https://tec.openplanner.team/stops/H1pw121b"], ["https://tec.openplanner.team/stops/Llg20ao3", "https://tec.openplanner.team/stops/Llgcroi1"], ["https://tec.openplanner.team/stops/LLzcruc2", "https://tec.openplanner.team/stops/LPTblan2"], ["https://tec.openplanner.team/stops/Lvichpl1", "https://tec.openplanner.team/stops/Lvisere1"], ["https://tec.openplanner.team/stops/H4bo178a", "https://tec.openplanner.team/stops/H4bo181a"], ["https://tec.openplanner.team/stops/LBpvue-2", "https://tec.openplanner.team/stops/LGEhosp1"], ["https://tec.openplanner.team/stops/Barqpla2", "https://tec.openplanner.team/stops/Bfelbri2"], ["https://tec.openplanner.team/stops/LESchpl1", "https://tec.openplanner.team/stops/LESmecp*"], ["https://tec.openplanner.team/stops/Bnivbpe1", "https://tec.openplanner.team/stops/Bnivmfr1"], ["https://tec.openplanner.team/stops/H4hx124a", "https://tec.openplanner.team/stops/H4mo161a"], ["https://tec.openplanner.team/stops/LlNm%C3%BChl1", "https://tec.openplanner.team/stops/LwArabo1"], ["https://tec.openplanner.team/stops/LhDkreu1", "https://tec.openplanner.team/stops/LhDkreu4"], ["https://tec.openplanner.team/stops/LHUfrai1", "https://tec.openplanner.team/stops/LHUsauv3"], ["https://tec.openplanner.team/stops/NL75aca", "https://tec.openplanner.team/stops/NL75acb"], ["https://tec.openplanner.team/stops/N127aja", "https://tec.openplanner.team/stops/N127baa"], ["https://tec.openplanner.team/stops/N201amb", "https://tec.openplanner.team/stops/N211ayb"], ["https://tec.openplanner.team/stops/Cctberg1", "https://tec.openplanner.team/stops/Cctberg2"], ["https://tec.openplanner.team/stops/LFFmarc1", "https://tec.openplanner.team/stops/LJEniho2"], ["https://tec.openplanner.team/stops/X615bba", "https://tec.openplanner.team/stops/X615bca"], ["https://tec.openplanner.team/stops/X947abb", "https://tec.openplanner.team/stops/X948aja"], ["https://tec.openplanner.team/stops/Cmmmarl1", "https://tec.openplanner.team/stops/Cmmptno1"], ["https://tec.openplanner.team/stops/Bquebut2", "https://tec.openplanner.team/stops/Bquecge2"], ["https://tec.openplanner.team/stops/X822afb", "https://tec.openplanner.team/stops/X822ana"], ["https://tec.openplanner.team/stops/LVBchau2", "https://tec.openplanner.team/stops/LVBmonu4"], ["https://tec.openplanner.team/stops/Cpthaud2", "https://tec.openplanner.team/stops/H2an110a"], ["https://tec.openplanner.team/stops/N117aba", "https://tec.openplanner.team/stops/N117aca"], ["https://tec.openplanner.team/stops/N501dca", "https://tec.openplanner.team/stops/N527adb"], ["https://tec.openplanner.team/stops/LOMware2", "https://tec.openplanner.team/stops/LTOcime1"], ["https://tec.openplanner.team/stops/LLmpt--1", "https://tec.openplanner.team/stops/LLmpt--2"], ["https://tec.openplanner.team/stops/N576aba", "https://tec.openplanner.team/stops/N576akb"], ["https://tec.openplanner.team/stops/Csygare1", "https://tec.openplanner.team/stops/Csygare4"], ["https://tec.openplanner.team/stops/Ccipier1", "https://tec.openplanner.team/stops/Ccisolv1"], ["https://tec.openplanner.team/stops/N153aba", "https://tec.openplanner.team/stops/N153acb"], ["https://tec.openplanner.team/stops/H4ne140b", "https://tec.openplanner.team/stops/H4ne142a"], ["https://tec.openplanner.team/stops/H1fr107c", "https://tec.openplanner.team/stops/H1fr123a"], ["https://tec.openplanner.team/stops/X639ata", "https://tec.openplanner.team/stops/X639aub"], ["https://tec.openplanner.team/stops/X911ahb", "https://tec.openplanner.team/stops/X911aia"], ["https://tec.openplanner.team/stops/LOLbout2", "https://tec.openplanner.team/stops/LOLbout4"], ["https://tec.openplanner.team/stops/H2hp116a", "https://tec.openplanner.team/stops/H2hp116b"], ["https://tec.openplanner.team/stops/X601ajb", "https://tec.openplanner.team/stops/X601aqb"], ["https://tec.openplanner.team/stops/N501dpb", "https://tec.openplanner.team/stops/N501eoa"], ["https://tec.openplanner.team/stops/Cmx4che2", "https://tec.openplanner.team/stops/Cmxpleg2"], ["https://tec.openplanner.team/stops/Cbmplac1", "https://tec.openplanner.team/stops/Clcfall2"], ["https://tec.openplanner.team/stops/N212afa", "https://tec.openplanner.team/stops/N212aha"], ["https://tec.openplanner.team/stops/X811apb", "https://tec.openplanner.team/stops/X812bga"], ["https://tec.openplanner.team/stops/Cmlhauc2", "https://tec.openplanner.team/stops/Cmlstgi1"], ["https://tec.openplanner.team/stops/Lagjard1", "https://tec.openplanner.team/stops/Lagmair5"], ["https://tec.openplanner.team/stops/LBzec--1", "https://tec.openplanner.team/stops/LCewaut2"], ["https://tec.openplanner.team/stops/N533alb", "https://tec.openplanner.team/stops/N533amb"], ["https://tec.openplanner.team/stops/LeUbahn3", "https://tec.openplanner.team/stops/LeUschn2"], ["https://tec.openplanner.team/stops/N531adb", "https://tec.openplanner.team/stops/N531alb"], ["https://tec.openplanner.team/stops/X641axa", "https://tec.openplanner.team/stops/X641axb"], ["https://tec.openplanner.team/stops/Lrchero1", "https://tec.openplanner.team/stops/Lrchero2"], ["https://tec.openplanner.team/stops/LBssucr1", "https://tec.openplanner.team/stops/LBssucr2"], ["https://tec.openplanner.team/stops/LLrpape2", "https://tec.openplanner.team/stops/LLrpape3"], ["https://tec.openplanner.team/stops/LFocent2", "https://tec.openplanner.team/stops/LJAcham2"], ["https://tec.openplanner.team/stops/Cjuvpla2", "https://tec.openplanner.team/stops/Cromonn2"], ["https://tec.openplanner.team/stops/N308bgb", "https://tec.openplanner.team/stops/N385adb"], ["https://tec.openplanner.team/stops/N565aca", "https://tec.openplanner.team/stops/N565aea"], ["https://tec.openplanner.team/stops/H5rx129a", "https://tec.openplanner.team/stops/H5rx144b"], ["https://tec.openplanner.team/stops/X601ala", "https://tec.openplanner.team/stops/X601alb"], ["https://tec.openplanner.team/stops/X945aba", "https://tec.openplanner.team/stops/X945abc"], ["https://tec.openplanner.team/stops/Lsedese1", "https://tec.openplanner.team/stops/Lsedese2"], ["https://tec.openplanner.team/stops/N231aga", "https://tec.openplanner.team/stops/N231agb"], ["https://tec.openplanner.team/stops/N542ajb", "https://tec.openplanner.team/stops/N578abb"], ["https://tec.openplanner.team/stops/H4pq119b", "https://tec.openplanner.team/stops/H4pq120a"], ["https://tec.openplanner.team/stops/H1pa109a", "https://tec.openplanner.team/stops/H1pa167b"], ["https://tec.openplanner.team/stops/H4ar178a", "https://tec.openplanner.team/stops/H4ar178b"], ["https://tec.openplanner.team/stops/Lghremy1", "https://tec.openplanner.team/stops/Lghremy2"], ["https://tec.openplanner.team/stops/LrAbe601", "https://tec.openplanner.team/stops/LrAneus1"], ["https://tec.openplanner.team/stops/H1po135a", "https://tec.openplanner.team/stops/H1po138a"], ["https://tec.openplanner.team/stops/N291aba", "https://tec.openplanner.team/stops/N291aca"], ["https://tec.openplanner.team/stops/Crswaut1", "https://tec.openplanner.team/stops/N543cna"], ["https://tec.openplanner.team/stops/Lchorme1", "https://tec.openplanner.team/stops/Lchsaeg1"], ["https://tec.openplanner.team/stops/LJAcime1", "https://tec.openplanner.team/stops/LJAherb1"], ["https://tec.openplanner.team/stops/Cselibe2", "https://tec.openplanner.team/stops/Csepost2"], ["https://tec.openplanner.team/stops/X346akb", "https://tec.openplanner.team/stops/X347aab"], ["https://tec.openplanner.team/stops/H4by119a", "https://tec.openplanner.team/stops/H4by119b"], ["https://tec.openplanner.team/stops/Cbbjfeu2", "https://tec.openplanner.team/stops/Cvrchap2"], ["https://tec.openplanner.team/stops/LMObut-1", "https://tec.openplanner.team/stops/LMOcorn2"], ["https://tec.openplanner.team/stops/LhPkirc1", "https://tec.openplanner.team/stops/LhPkirc2"], ["https://tec.openplanner.team/stops/LbTweyn2", "https://tec.openplanner.team/stops/LbUmalm2"], ["https://tec.openplanner.team/stops/N351aaa", "https://tec.openplanner.team/stops/N351ahb"], ["https://tec.openplanner.team/stops/Blasvil1", "https://tec.openplanner.team/stops/Blasvil3"], ["https://tec.openplanner.team/stops/H1og134a", "https://tec.openplanner.team/stops/H1og134b"], ["https://tec.openplanner.team/stops/LTHjevo2", "https://tec.openplanner.team/stops/LTHmaka1"], ["https://tec.openplanner.team/stops/Cvsegli1", "https://tec.openplanner.team/stops/N530aea"], ["https://tec.openplanner.team/stops/LwAlont3", "https://tec.openplanner.team/stops/LwAstum2"], ["https://tec.openplanner.team/stops/LGAnovi2", "https://tec.openplanner.team/stops/LHgpost1"], ["https://tec.openplanner.team/stops/X733ala", "https://tec.openplanner.team/stops/X733alb"], ["https://tec.openplanner.team/stops/H2ll193a", "https://tec.openplanner.team/stops/H2ll193b"], ["https://tec.openplanner.team/stops/LVSbleu2", "https://tec.openplanner.team/stops/LVSslin1"], ["https://tec.openplanner.team/stops/Loubonc2", "https://tec.openplanner.team/stops/Lourose1"], ["https://tec.openplanner.team/stops/LhSfrep2", "https://tec.openplanner.team/stops/LhSheid2"], ["https://tec.openplanner.team/stops/LLt43--2", "https://tec.openplanner.team/stops/LLteg--2"], ["https://tec.openplanner.team/stops/H4te252b", "https://tec.openplanner.team/stops/H4te261a"], ["https://tec.openplanner.team/stops/LWOpier1", "https://tec.openplanner.team/stops/LWOruis2"], ["https://tec.openplanner.team/stops/H4bc101a", "https://tec.openplanner.team/stops/H4bc101c"], ["https://tec.openplanner.team/stops/NL35aca", "https://tec.openplanner.team/stops/NL35aga"], ["https://tec.openplanner.team/stops/H1pw121a", "https://tec.openplanner.team/stops/H1pw123a"], ["https://tec.openplanner.team/stops/Bbstchn2", "https://tec.openplanner.team/stops/Bbstrpo1"], ["https://tec.openplanner.team/stops/X836abb", "https://tec.openplanner.team/stops/X836ajb"], ["https://tec.openplanner.team/stops/LlZbell1", "https://tec.openplanner.team/stops/LlZbell2"], ["https://tec.openplanner.team/stops/Bstmpla2", "https://tec.openplanner.team/stops/N561afa"], ["https://tec.openplanner.team/stops/X760afb", "https://tec.openplanner.team/stops/X762aga"], ["https://tec.openplanner.team/stops/Bsgeegl1", "https://tec.openplanner.team/stops/Bsgevil1"], ["https://tec.openplanner.team/stops/N550aga", "https://tec.openplanner.team/stops/N550agb"], ["https://tec.openplanner.team/stops/N229apa", "https://tec.openplanner.team/stops/N231ada"], ["https://tec.openplanner.team/stops/Bgligli2", "https://tec.openplanner.team/stops/Bjcljau2"], ["https://tec.openplanner.team/stops/H5el104b", "https://tec.openplanner.team/stops/H5el114b"], ["https://tec.openplanner.team/stops/H4hu117b", "https://tec.openplanner.team/stops/H4hu119b"], ["https://tec.openplanner.team/stops/X896ada", "https://tec.openplanner.team/stops/X896aia"], ["https://tec.openplanner.team/stops/LMoelno2", "https://tec.openplanner.team/stops/LMomonc1"], ["https://tec.openplanner.team/stops/X733aja", "https://tec.openplanner.team/stops/X733aka"], ["https://tec.openplanner.team/stops/Bwatbno1", "https://tec.openplanner.team/stops/Bwatjbo1"], ["https://tec.openplanner.team/stops/X886aba", "https://tec.openplanner.team/stops/X886abd"], ["https://tec.openplanner.team/stops/Barqhro4", "https://tec.openplanner.team/stops/Bfelada2"], ["https://tec.openplanner.team/stops/N167aba", "https://tec.openplanner.team/stops/N234aeb"], ["https://tec.openplanner.team/stops/LCx728-2", "https://tec.openplanner.team/stops/LCxchal1"], ["https://tec.openplanner.team/stops/N521asc", "https://tec.openplanner.team/stops/N521ava"], ["https://tec.openplanner.team/stops/X901bja", "https://tec.openplanner.team/stops/X901bqb"], ["https://tec.openplanner.team/stops/LRMn58-2", "https://tec.openplanner.team/stops/LXoroch2"], ["https://tec.openplanner.team/stops/LeUkehr4", "https://tec.openplanner.team/stops/LeUschi2"], ["https://tec.openplanner.team/stops/X561abb", "https://tec.openplanner.team/stops/XODvill2"], ["https://tec.openplanner.team/stops/N562bfa", "https://tec.openplanner.team/stops/N562bfb"], ["https://tec.openplanner.team/stops/H4te250b", "https://tec.openplanner.team/stops/H4te255b"], ["https://tec.openplanner.team/stops/Cmltemp1", "https://tec.openplanner.team/stops/Cmltemp2"], ["https://tec.openplanner.team/stops/Cdagoss1", "https://tec.openplanner.team/stops/Cmaest2"], ["https://tec.openplanner.team/stops/N117ama", "https://tec.openplanner.team/stops/N117aqa"], ["https://tec.openplanner.team/stops/N535aob", "https://tec.openplanner.team/stops/N564afa"], ["https://tec.openplanner.team/stops/NL57akb", "https://tec.openplanner.team/stops/NL68abb"], ["https://tec.openplanner.team/stops/H1ba115a", "https://tec.openplanner.team/stops/H1gh371a"], ["https://tec.openplanner.team/stops/Ccocorb2", "https://tec.openplanner.team/stops/Ccoha602"], ["https://tec.openplanner.team/stops/H3so159b", "https://tec.openplanner.team/stops/H3so161b"], ["https://tec.openplanner.team/stops/Lpebier1", "https://tec.openplanner.team/stops/Lpebier2"], ["https://tec.openplanner.team/stops/N311aea", "https://tec.openplanner.team/stops/N311agb"], ["https://tec.openplanner.team/stops/LBNauto2", "https://tec.openplanner.team/stops/LBNhegg2"], ["https://tec.openplanner.team/stops/LTatult2", "https://tec.openplanner.team/stops/LTatult4"], ["https://tec.openplanner.team/stops/Lghmeun1", "https://tec.openplanner.team/stops/Ljetout2"], ["https://tec.openplanner.team/stops/N542afa", "https://tec.openplanner.team/stops/N542asa"], ["https://tec.openplanner.team/stops/X602agb", "https://tec.openplanner.team/stops/X602aob"], ["https://tec.openplanner.team/stops/Lprcard1", "https://tec.openplanner.team/stops/Lprpous1"], ["https://tec.openplanner.team/stops/X818afb", "https://tec.openplanner.team/stops/X818atb"], ["https://tec.openplanner.team/stops/X821aaa", "https://tec.openplanner.team/stops/X830aab"], ["https://tec.openplanner.team/stops/H1bu137a", "https://tec.openplanner.team/stops/H1bu138a"], ["https://tec.openplanner.team/stops/N576afa", "https://tec.openplanner.team/stops/N576afb"], ["https://tec.openplanner.team/stops/LeYdepo2", "https://tec.openplanner.team/stops/LeYroth2"], ["https://tec.openplanner.team/stops/X985aba", "https://tec.openplanner.team/stops/X985aca"], ["https://tec.openplanner.team/stops/X641asb", "https://tec.openplanner.team/stops/X821aab"], ["https://tec.openplanner.team/stops/LFyWarc1", "https://tec.openplanner.team/stops/LWabela1"], ["https://tec.openplanner.team/stops/Lagkink2", "https://tec.openplanner.team/stops/Llgbell1"], ["https://tec.openplanner.team/stops/X747ajb", "https://tec.openplanner.team/stops/X749adb"], ["https://tec.openplanner.team/stops/Lpecaze1", "https://tec.openplanner.team/stops/LWegdry2"], ["https://tec.openplanner.team/stops/LTRespe2", "https://tec.openplanner.team/stops/LTRoasi2"], ["https://tec.openplanner.team/stops/N515aka", "https://tec.openplanner.team/stops/N515akb"], ["https://tec.openplanner.team/stops/Cgytrie1", "https://tec.openplanner.team/stops/Cgytrie2"], ["https://tec.openplanner.team/stops/H2hg271a", "https://tec.openplanner.team/stops/H2ll182a"], ["https://tec.openplanner.team/stops/LmDelek1", "https://tec.openplanner.team/stops/LmYkreu1"], ["https://tec.openplanner.team/stops/LGefron1", "https://tec.openplanner.team/stops/LGegare1"], ["https://tec.openplanner.team/stops/LNAmart2", "https://tec.openplanner.team/stops/LNAplac2"], ["https://tec.openplanner.team/stops/N503ala", "https://tec.openplanner.team/stops/N511afb"], ["https://tec.openplanner.team/stops/X659aba", "https://tec.openplanner.team/stops/X659axb"], ["https://tec.openplanner.team/stops/X636acb", "https://tec.openplanner.team/stops/X636ala"], ["https://tec.openplanner.team/stops/LSdcent2", "https://tec.openplanner.team/stops/LSdsa451"], ["https://tec.openplanner.team/stops/Csbberg1", "https://tec.openplanner.team/stops/H1fv102a"], ["https://tec.openplanner.team/stops/Cgxmorg1", "https://tec.openplanner.team/stops/CMmorg1"], ["https://tec.openplanner.team/stops/LSLeg--1", "https://tec.openplanner.team/stops/LSLprov2"], ["https://tec.openplanner.team/stops/Cfaetoi2", "https://tec.openplanner.team/stops/Cplcite1"], ["https://tec.openplanner.team/stops/Btilgar2", "https://tec.openplanner.team/stops/Btilsce1"], ["https://tec.openplanner.team/stops/H1hi122a", "https://tec.openplanner.team/stops/H1hi123a"], ["https://tec.openplanner.team/stops/X749abb", "https://tec.openplanner.team/stops/X754aab"], ["https://tec.openplanner.team/stops/H1fl135a", "https://tec.openplanner.team/stops/H1fl137a"], ["https://tec.openplanner.team/stops/Lbomidi2", "https://tec.openplanner.team/stops/LPLcite2"], ["https://tec.openplanner.team/stops/Lbrboul1", "https://tec.openplanner.team/stops/Lbrplai2"], ["https://tec.openplanner.team/stops/X824ahb", "https://tec.openplanner.team/stops/X824aia"], ["https://tec.openplanner.team/stops/CMsacm1", "https://tec.openplanner.team/stops/CMsacm2"], ["https://tec.openplanner.team/stops/H4er125b", "https://tec.openplanner.team/stops/H4wu376b"], ["https://tec.openplanner.team/stops/Ladegli2", "https://tec.openplanner.team/stops/Ladjuif1"], ["https://tec.openplanner.team/stops/N117aab", "https://tec.openplanner.team/stops/N117azb"], ["https://tec.openplanner.team/stops/X725adb", "https://tec.openplanner.team/stops/X725aga"], ["https://tec.openplanner.team/stops/LhUdenk1", "https://tec.openplanner.team/stops/LhUkape1"], ["https://tec.openplanner.team/stops/H4ka182a", "https://tec.openplanner.team/stops/H4ka182b"], ["https://tec.openplanner.team/stops/X784aba", "https://tec.openplanner.team/stops/X784abb"], ["https://tec.openplanner.team/stops/X347aja", "https://tec.openplanner.team/stops/X872adb"], ["https://tec.openplanner.team/stops/N321abb", "https://tec.openplanner.team/stops/N321afa"], ["https://tec.openplanner.team/stops/LBSchpl2", "https://tec.openplanner.team/stops/LWOsudr2"], ["https://tec.openplanner.team/stops/X991aea", "https://tec.openplanner.team/stops/X992afb"], ["https://tec.openplanner.team/stops/Canrobe1", "https://tec.openplanner.team/stops/Cfosurs1"], ["https://tec.openplanner.team/stops/Loufleu1", "https://tec.openplanner.team/stops/Lousite7"], ["https://tec.openplanner.team/stops/X886aea", "https://tec.openplanner.team/stops/X886agb"], ["https://tec.openplanner.team/stops/Llg20ao1", "https://tec.openplanner.team/stops/Llgcroi1"], ["https://tec.openplanner.team/stops/X644aba", "https://tec.openplanner.team/stops/X644acb"], ["https://tec.openplanner.team/stops/LCleg--1", "https://tec.openplanner.team/stops/LHCauwe4"], ["https://tec.openplanner.team/stops/LNEmoul2", "https://tec.openplanner.team/stops/LOLfoss2"], ["https://tec.openplanner.team/stops/N501cga", "https://tec.openplanner.team/stops/N501chc"], ["https://tec.openplanner.team/stops/LSMchat1", "https://tec.openplanner.team/stops/LSMchat2"], ["https://tec.openplanner.team/stops/Lkivolg2", "https://tec.openplanner.team/stops/Loureno2"], ["https://tec.openplanner.team/stops/X907acb", "https://tec.openplanner.team/stops/X907aia"], ["https://tec.openplanner.team/stops/N524ahb", "https://tec.openplanner.team/stops/N524aka"], ["https://tec.openplanner.team/stops/N542adb", "https://tec.openplanner.team/stops/N542aja"], ["https://tec.openplanner.team/stops/N554ada", "https://tec.openplanner.team/stops/N566afa"], ["https://tec.openplanner.team/stops/Lfhbail2", "https://tec.openplanner.team/stops/Lfh-sci1"], ["https://tec.openplanner.team/stops/LLrbano1", "https://tec.openplanner.team/stops/LLrpape4"], ["https://tec.openplanner.team/stops/LAYharz1", "https://tec.openplanner.team/stops/LAYharz2"], ["https://tec.openplanner.team/stops/N501ijb", "https://tec.openplanner.team/stops/N501ipa"], ["https://tec.openplanner.team/stops/H2bh110b", "https://tec.openplanner.team/stops/H2bh110c"], ["https://tec.openplanner.team/stops/LLUvent4", "https://tec.openplanner.team/stops/LLUvent6"], ["https://tec.openplanner.team/stops/Btilmar2", "https://tec.openplanner.team/stops/Btilsnc2"], ["https://tec.openplanner.team/stops/H1er108a", "https://tec.openplanner.team/stops/H1er113b"], ["https://tec.openplanner.team/stops/N543bqa", "https://tec.openplanner.team/stops/N543cib"], ["https://tec.openplanner.team/stops/LPbhaut1", "https://tec.openplanner.team/stops/LPbpl--1"], ["https://tec.openplanner.team/stops/Lagcile2", "https://tec.openplanner.team/stops/Lagjado6"], ["https://tec.openplanner.team/stops/LlgLAMB7", "https://tec.openplanner.team/stops/Llgmarc2"], ["https://tec.openplanner.team/stops/X713acb", "https://tec.openplanner.team/stops/X714aea"], ["https://tec.openplanner.team/stops/X731acc", "https://tec.openplanner.team/stops/X731adb"], ["https://tec.openplanner.team/stops/H4ty382a", "https://tec.openplanner.team/stops/H4ty405a"], ["https://tec.openplanner.team/stops/N232bfb", "https://tec.openplanner.team/stops/N261aea"], ["https://tec.openplanner.team/stops/H1br122a", "https://tec.openplanner.team/stops/H1ev113a"], ["https://tec.openplanner.team/stops/H1ma234a", "https://tec.openplanner.team/stops/H1ms275b"], ["https://tec.openplanner.team/stops/Cmtrbra1", "https://tec.openplanner.team/stops/Cmtrbra2"], ["https://tec.openplanner.team/stops/H5at105a", "https://tec.openplanner.team/stops/H5at137b"], ["https://tec.openplanner.team/stops/H1sp353a", "https://tec.openplanner.team/stops/H1sp357a"], ["https://tec.openplanner.team/stops/N537aca", "https://tec.openplanner.team/stops/N562bla"], ["https://tec.openplanner.team/stops/Baegpon4", "https://tec.openplanner.team/stops/Bramcar1"], ["https://tec.openplanner.team/stops/LCeterm2", "https://tec.openplanner.team/stops/LLWcarr2"], ["https://tec.openplanner.team/stops/LSOladr2", "https://tec.openplanner.team/stops/LSOtrou2"], ["https://tec.openplanner.team/stops/X804akb", "https://tec.openplanner.team/stops/X804ald"], ["https://tec.openplanner.team/stops/Cciecol2", "https://tec.openplanner.team/stops/Ccipano2"], ["https://tec.openplanner.team/stops/Lbomidi1", "https://tec.openplanner.team/stops/Lbomidi2"], ["https://tec.openplanner.team/stops/Bcbqhai2", "https://tec.openplanner.team/stops/Bcbqp251"], ["https://tec.openplanner.team/stops/X718aja", "https://tec.openplanner.team/stops/X718ajb"], ["https://tec.openplanner.team/stops/Lvewaut1", "https://tec.openplanner.team/stops/Lvewaut2"], ["https://tec.openplanner.team/stops/X623aga", "https://tec.openplanner.team/stops/X623aha"], ["https://tec.openplanner.team/stops/Bmoucoq1", "https://tec.openplanner.team/stops/Bottcli3"], ["https://tec.openplanner.team/stops/LOCbois1", "https://tec.openplanner.team/stops/LOCloup1"], ["https://tec.openplanner.team/stops/LeUbahn5", "https://tec.openplanner.team/stops/LeUhook2"], ["https://tec.openplanner.team/stops/X769amb", "https://tec.openplanner.team/stops/X769aoa"], ["https://tec.openplanner.team/stops/N539afa", "https://tec.openplanner.team/stops/N539atb"], ["https://tec.openplanner.team/stops/Cfocorn1", "https://tec.openplanner.team/stops/Cfocorn2"], ["https://tec.openplanner.team/stops/Cmmegli1", "https://tec.openplanner.team/stops/Cmmplac3"], ["https://tec.openplanner.team/stops/H1ne139b", "https://tec.openplanner.team/stops/H1ne141a"], ["https://tec.openplanner.team/stops/LLAcalv2", "https://tec.openplanner.team/stops/LLAchpl1"], ["https://tec.openplanner.team/stops/N236aib", "https://tec.openplanner.team/stops/N236apb"], ["https://tec.openplanner.team/stops/N424aca", "https://tec.openplanner.team/stops/N424acb"], ["https://tec.openplanner.team/stops/X999aaa", "https://tec.openplanner.team/stops/X999ama"], ["https://tec.openplanner.team/stops/N539atb", "https://tec.openplanner.team/stops/N539bfa"], ["https://tec.openplanner.team/stops/H4do101b", "https://tec.openplanner.team/stops/H4do202b"], ["https://tec.openplanner.team/stops/Bptrmar1", "https://tec.openplanner.team/stops/Bptrmar2"], ["https://tec.openplanner.team/stops/X398abb", "https://tec.openplanner.team/stops/X999aub"], ["https://tec.openplanner.team/stops/N516aia", "https://tec.openplanner.team/stops/N517aca"], ["https://tec.openplanner.team/stops/Cfapiro2", "https://tec.openplanner.team/stops/Cpibois2"], ["https://tec.openplanner.team/stops/Bmsgcap2", "https://tec.openplanner.team/stops/Bmsgeco1"], ["https://tec.openplanner.team/stops/LHseg--1", "https://tec.openplanner.team/stops/LHseg--2"], ["https://tec.openplanner.team/stops/N526aca", "https://tec.openplanner.team/stops/N526acb"], ["https://tec.openplanner.team/stops/H1vt193b", "https://tec.openplanner.team/stops/H1vt194a"], ["https://tec.openplanner.team/stops/LFFchal1", "https://tec.openplanner.team/stops/LFFpier1"], ["https://tec.openplanner.team/stops/X723afa", "https://tec.openplanner.team/stops/X723alb"], ["https://tec.openplanner.team/stops/LWNberg2", "https://tec.openplanner.team/stops/NL72afb"], ["https://tec.openplanner.team/stops/Bsdacab1", "https://tec.openplanner.team/stops/Bsdampe1"], ["https://tec.openplanner.team/stops/LBslama2", "https://tec.openplanner.team/stops/NL72acb"], ["https://tec.openplanner.team/stops/Lbrnanc2", "https://tec.openplanner.team/stops/Lbrplai2"], ["https://tec.openplanner.team/stops/Bmlnegl1", "https://tec.openplanner.team/stops/Bmlnegl3"], ["https://tec.openplanner.team/stops/Blsmbfe2", "https://tec.openplanner.team/stops/Blsmjja1"], ["https://tec.openplanner.team/stops/Lfhchaf4", "https://tec.openplanner.team/stops/Livpost2"], ["https://tec.openplanner.team/stops/H5wo129a", "https://tec.openplanner.team/stops/H5wo136b"], ["https://tec.openplanner.team/stops/LrAdrie2", "https://tec.openplanner.team/stops/LrAdrie4"], ["https://tec.openplanner.team/stops/Llgcbat1", "https://tec.openplanner.team/stops/Llgoise1"], ["https://tec.openplanner.team/stops/Bottbru2", "https://tec.openplanner.team/stops/Bottcba1"], ["https://tec.openplanner.team/stops/X647aaa", "https://tec.openplanner.team/stops/X648aba"], ["https://tec.openplanner.team/stops/LGegrun1", "https://tec.openplanner.team/stops/LGegrun2"], ["https://tec.openplanner.team/stops/N543aja", "https://tec.openplanner.team/stops/N543ajb"], ["https://tec.openplanner.team/stops/X681afa", "https://tec.openplanner.team/stops/X687aga"], ["https://tec.openplanner.team/stops/X614adb", "https://tec.openplanner.team/stops/X614bab"], ["https://tec.openplanner.team/stops/N143aba", "https://tec.openplanner.team/stops/N143ada"], ["https://tec.openplanner.team/stops/Cvp3til4", "https://tec.openplanner.team/stops/Cvpplan1"], ["https://tec.openplanner.team/stops/Bpiepnd2", "https://tec.openplanner.team/stops/Bpiesta1"], ["https://tec.openplanner.team/stops/N232avb", "https://tec.openplanner.team/stops/N232boa"], ["https://tec.openplanner.team/stops/H1hw124b", "https://tec.openplanner.team/stops/H1ls105b"], ["https://tec.openplanner.team/stops/LDmhave1", "https://tec.openplanner.team/stops/LDmhave2"], ["https://tec.openplanner.team/stops/LmR50--1", "https://tec.openplanner.team/stops/LmRh%C3%B6811"], ["https://tec.openplanner.team/stops/H3lr116a", "https://tec.openplanner.team/stops/H3lr120b"], ["https://tec.openplanner.team/stops/N124aaa", "https://tec.openplanner.team/stops/N149ala"], ["https://tec.openplanner.team/stops/Cvsbois1", "https://tec.openplanner.team/stops/Cvsduve1"], ["https://tec.openplanner.team/stops/X542aeb", "https://tec.openplanner.team/stops/X542aib"], ["https://tec.openplanner.team/stops/H5at104b", "https://tec.openplanner.team/stops/H5at109a"], ["https://tec.openplanner.team/stops/H1eu101a", "https://tec.openplanner.team/stops/H1lb137a"], ["https://tec.openplanner.team/stops/Bjanfer2", "https://tec.openplanner.team/stops/Bpthcai1"], ["https://tec.openplanner.team/stops/Cgpleco2", "https://tec.openplanner.team/stops/Cgpmoul2"], ["https://tec.openplanner.team/stops/Ctmdema2", "https://tec.openplanner.team/stops/Ctmmonu2"], ["https://tec.openplanner.team/stops/Bdlmgla3", "https://tec.openplanner.team/stops/Bwavdmo1"], ["https://tec.openplanner.team/stops/N347agb", "https://tec.openplanner.team/stops/X892abb"], ["https://tec.openplanner.team/stops/Lglcoun1", "https://tec.openplanner.team/stops/Lglsana1"], ["https://tec.openplanner.team/stops/N571aaa", "https://tec.openplanner.team/stops/N571aka"], ["https://tec.openplanner.team/stops/H1he103b", "https://tec.openplanner.team/stops/H1mh113b"], ["https://tec.openplanner.team/stops/Cpibois2", "https://tec.openplanner.team/stops/Cpictra1"], ["https://tec.openplanner.team/stops/Cthegli2", "https://tec.openplanner.team/stops/Cthwaib2"], ["https://tec.openplanner.team/stops/Lgrclos1", "https://tec.openplanner.team/stops/Lgrtomb2"], ["https://tec.openplanner.team/stops/X627ada", "https://tec.openplanner.team/stops/X631ada"], ["https://tec.openplanner.team/stops/LBkjenn1", "https://tec.openplanner.team/stops/LBkwind1"], ["https://tec.openplanner.team/stops/Cgofert2", "https://tec.openplanner.team/stops/Cgolimi1"], ["https://tec.openplanner.team/stops/LeUvoss1", "https://tec.openplanner.team/stops/LkTgutl1"], ["https://tec.openplanner.team/stops/N501dwb", "https://tec.openplanner.team/stops/N501eab"], ["https://tec.openplanner.team/stops/LcRmuhl1", "https://tec.openplanner.team/stops/LwTkabi1"], ["https://tec.openplanner.team/stops/N232bda", "https://tec.openplanner.team/stops/N232bub"], ["https://tec.openplanner.team/stops/X942aaa", "https://tec.openplanner.team/stops/X942adb"], ["https://tec.openplanner.team/stops/N170acb", "https://tec.openplanner.team/stops/N170afb"], ["https://tec.openplanner.team/stops/Ljeheur2", "https://tec.openplanner.team/stops/Ljerobi1"], ["https://tec.openplanner.team/stops/N115aea", "https://tec.openplanner.team/stops/N115aeb"], ["https://tec.openplanner.team/stops/H5at109a", "https://tec.openplanner.team/stops/H5at131a"], ["https://tec.openplanner.team/stops/N874ajb", "https://tec.openplanner.team/stops/N874alb"], ["https://tec.openplanner.team/stops/N539baa", "https://tec.openplanner.team/stops/N539bba"], ["https://tec.openplanner.team/stops/X611aba", "https://tec.openplanner.team/stops/X611ada"], ["https://tec.openplanner.team/stops/N501ezb", "https://tec.openplanner.team/stops/N501lgb"], ["https://tec.openplanner.team/stops/N501hhb", "https://tec.openplanner.team/stops/N501mqa"], ["https://tec.openplanner.team/stops/Cbwcab1", "https://tec.openplanner.team/stops/Cmqn5912"], ["https://tec.openplanner.team/stops/N244aha", "https://tec.openplanner.team/stops/N244awa"], ["https://tec.openplanner.team/stops/X624acb", "https://tec.openplanner.team/stops/X624aja"], ["https://tec.openplanner.team/stops/LRRecdu2", "https://tec.openplanner.team/stops/LRRecsc*"], ["https://tec.openplanner.team/stops/X740aeb", "https://tec.openplanner.team/stops/X912adb"], ["https://tec.openplanner.team/stops/Lpefler1", "https://tec.openplanner.team/stops/LTAchpl2"], ["https://tec.openplanner.team/stops/Lghgend1", "https://tec.openplanner.team/stops/Lghgoll2"], ["https://tec.openplanner.team/stops/H5qu145a", "https://tec.openplanner.team/stops/H5qu158a"], ["https://tec.openplanner.team/stops/LLUtill1", "https://tec.openplanner.team/stops/LLUtill4"], ["https://tec.openplanner.team/stops/X802afb", "https://tec.openplanner.team/stops/X802ahb"], ["https://tec.openplanner.team/stops/Lchec--1", "https://tec.openplanner.team/stops/Lrahoig2"], ["https://tec.openplanner.team/stops/N212abb", "https://tec.openplanner.team/stops/N213abb"], ["https://tec.openplanner.team/stops/Cobbusc2", "https://tec.openplanner.team/stops/Cobbuze2"], ["https://tec.openplanner.team/stops/Cfocobe1", "https://tec.openplanner.team/stops/Clrrhau1"], ["https://tec.openplanner.team/stops/LrDneun1", "https://tec.openplanner.team/stops/LrDneun2"], ["https://tec.openplanner.team/stops/LVBrmon2", "https://tec.openplanner.team/stops/LVBvill1"], ["https://tec.openplanner.team/stops/N516anb", "https://tec.openplanner.team/stops/N516aoa"], ["https://tec.openplanner.team/stops/Lbrmc--2", "https://tec.openplanner.team/stops/Lbrptbr3"], ["https://tec.openplanner.team/stops/NL77ama", "https://tec.openplanner.team/stops/NL78aha"], ["https://tec.openplanner.team/stops/X717agc", "https://tec.openplanner.team/stops/X717agf"], ["https://tec.openplanner.team/stops/LAascie1", "https://tec.openplanner.team/stops/X261aab"], ["https://tec.openplanner.team/stops/N507aaa", "https://tec.openplanner.team/stops/N507aad"], ["https://tec.openplanner.team/stops/N501gdb", "https://tec.openplanner.team/stops/N501kxb"], ["https://tec.openplanner.team/stops/LSTmeiz1", "https://tec.openplanner.team/stops/LSTmeiz2"], ["https://tec.openplanner.team/stops/H4pq113a", "https://tec.openplanner.team/stops/H4pq119b"], ["https://tec.openplanner.team/stops/Bsgihmo2", "https://tec.openplanner.team/stops/Bsgimca2"], ["https://tec.openplanner.team/stops/LMfpral1", "https://tec.openplanner.team/stops/LOtthie2"], ["https://tec.openplanner.team/stops/H1au112b", "https://tec.openplanner.team/stops/H1au114b"], ["https://tec.openplanner.team/stops/H2fa104a", "https://tec.openplanner.team/stops/H2fa107a"], ["https://tec.openplanner.team/stops/Cmohame1", "https://tec.openplanner.team/stops/Cmychap4"], ["https://tec.openplanner.team/stops/Llgcamp1", "https://tec.openplanner.team/stops/Llgelis2"], ["https://tec.openplanner.team/stops/H1br120a", "https://tec.openplanner.team/stops/H1br125a"], ["https://tec.openplanner.team/stops/LLrmc--2", "https://tec.openplanner.team/stops/LLrvill2"], ["https://tec.openplanner.team/stops/X661ala", "https://tec.openplanner.team/stops/X661ava"], ["https://tec.openplanner.team/stops/X986aab", "https://tec.openplanner.team/stops/X986abb"], ["https://tec.openplanner.team/stops/LSEquar2", "https://tec.openplanner.team/stops/LSEvill2"], ["https://tec.openplanner.team/stops/Llgancd1", "https://tec.openplanner.team/stops/Llgjoie3"], ["https://tec.openplanner.team/stops/N217aaa", "https://tec.openplanner.team/stops/N287aba"], ["https://tec.openplanner.team/stops/Bnivn971", "https://tec.openplanner.team/stops/Creshau1"], ["https://tec.openplanner.team/stops/H2ch106b", "https://tec.openplanner.team/stops/H2go115b"], ["https://tec.openplanner.team/stops/LJUxhen2", "https://tec.openplanner.team/stops/LXhcite1"], ["https://tec.openplanner.team/stops/Ctufleu2", "https://tec.openplanner.team/stops/Ctufleu4"], ["https://tec.openplanner.team/stops/H1ha200b", "https://tec.openplanner.team/stops/H1vh135b"], ["https://tec.openplanner.team/stops/Bblabar1", "https://tec.openplanner.team/stops/Bblager1"], ["https://tec.openplanner.team/stops/LhUdenk2", "https://tec.openplanner.team/stops/LhUkreu2"], ["https://tec.openplanner.team/stops/LGAbois2", "https://tec.openplanner.team/stops/LHgpost1"], ["https://tec.openplanner.team/stops/LLNcime2", "https://tec.openplanner.team/stops/LLNeg--1"], ["https://tec.openplanner.team/stops/H2le147b", "https://tec.openplanner.team/stops/H2le176b"], ["https://tec.openplanner.team/stops/X604aea", "https://tec.openplanner.team/stops/X604akb"], ["https://tec.openplanner.team/stops/Csobail1", "https://tec.openplanner.team/stops/Csoforr4"], ["https://tec.openplanner.team/stops/Buccham1", "https://tec.openplanner.team/stops/Buccvch2"], ["https://tec.openplanner.team/stops/N353aaa", "https://tec.openplanner.team/stops/N353aab"], ["https://tec.openplanner.team/stops/X982apb", "https://tec.openplanner.team/stops/X982aqa"], ["https://tec.openplanner.team/stops/Cbmvalt1", "https://tec.openplanner.team/stops/Cbmvalt2"], ["https://tec.openplanner.team/stops/N538ana", "https://tec.openplanner.team/stops/N538aub"], ["https://tec.openplanner.team/stops/X882adb", "https://tec.openplanner.team/stops/X882aea"], ["https://tec.openplanner.team/stops/Cnadrev1", "https://tec.openplanner.team/stops/Cnaferr2"], ["https://tec.openplanner.team/stops/H1so132b", "https://tec.openplanner.team/stops/H1so133b"], ["https://tec.openplanner.team/stops/N539apb", "https://tec.openplanner.team/stops/N539bda"], ["https://tec.openplanner.team/stops/X607aaa", "https://tec.openplanner.team/stops/X629aab"], ["https://tec.openplanner.team/stops/LnE79--2", "https://tec.openplanner.team/stops/LnErech2"], ["https://tec.openplanner.team/stops/H1ob333a", "https://tec.openplanner.team/stops/H1ob335b"], ["https://tec.openplanner.team/stops/X911ana", "https://tec.openplanner.team/stops/X912aka"], ["https://tec.openplanner.team/stops/H2go114b", "https://tec.openplanner.team/stops/H2go114c"], ["https://tec.openplanner.team/stops/Blemhon1", "https://tec.openplanner.team/stops/Btubmar2"], ["https://tec.openplanner.team/stops/Lhrwigi1", "https://tec.openplanner.team/stops/Lwaeau-1"], ["https://tec.openplanner.team/stops/N535asb", "https://tec.openplanner.team/stops/N535atb"], ["https://tec.openplanner.team/stops/Bcrnsge1", "https://tec.openplanner.team/stops/Bvilcim2"], ["https://tec.openplanner.team/stops/H4br108a", "https://tec.openplanner.team/stops/H4ch117b"], ["https://tec.openplanner.team/stops/N218afa", "https://tec.openplanner.team/stops/N385aba"], ["https://tec.openplanner.team/stops/Cbfegch2", "https://tec.openplanner.team/stops/Cbfplch2"], ["https://tec.openplanner.team/stops/LaFbruc2", "https://tec.openplanner.team/stops/LwPdorf2"], ["https://tec.openplanner.team/stops/Cfrcham2", "https://tec.openplanner.team/stops/Cvpplan1"], ["https://tec.openplanner.team/stops/LeYmosc1", "https://tec.openplanner.team/stops/LeYvoge1"], ["https://tec.openplanner.team/stops/N569ala", "https://tec.openplanner.team/stops/N569amb"], ["https://tec.openplanner.team/stops/Brsrabe1", "https://tec.openplanner.team/stops/Brsreco1"], ["https://tec.openplanner.team/stops/N352aea", "https://tec.openplanner.team/stops/N352afa"], ["https://tec.openplanner.team/stops/H4ld128a", "https://tec.openplanner.team/stops/H4ld128b"], ["https://tec.openplanner.team/stops/LLVeg--1", "https://tec.openplanner.team/stops/X575afb"], ["https://tec.openplanner.team/stops/H4fr141a", "https://tec.openplanner.team/stops/H4te254a"], ["https://tec.openplanner.team/stops/LwYkreu3", "https://tec.openplanner.team/stops/LwYkreu4"], ["https://tec.openplanner.team/stops/N549aaa", "https://tec.openplanner.team/stops/N578aca"], ["https://tec.openplanner.team/stops/Lprmc--2", "https://tec.openplanner.team/stops/Lprmoin1"], ["https://tec.openplanner.team/stops/X659axb", "https://tec.openplanner.team/stops/X659baa"], ["https://tec.openplanner.team/stops/NL68acb", "https://tec.openplanner.team/stops/NL68aeb"], ["https://tec.openplanner.team/stops/X659asa", "https://tec.openplanner.team/stops/X741afb"], ["https://tec.openplanner.team/stops/Cchba05", "https://tec.openplanner.team/stops/Cchba06"], ["https://tec.openplanner.team/stops/N538awb", "https://tec.openplanner.team/stops/N539ava"], ["https://tec.openplanner.team/stops/NB33ala", "https://tec.openplanner.team/stops/NR21aea"], ["https://tec.openplanner.team/stops/Lsepcha1", "https://tec.openplanner.team/stops/Lsepcha2"], ["https://tec.openplanner.team/stops/H4cw107a", "https://tec.openplanner.team/stops/H4cw107b"], ["https://tec.openplanner.team/stops/Crbrgar1", "https://tec.openplanner.team/stops/Crbrgar2"], ["https://tec.openplanner.team/stops/X720acb", "https://tec.openplanner.team/stops/X720aea"], ["https://tec.openplanner.team/stops/H1sd366a", "https://tec.openplanner.team/stops/H1sd366b"], ["https://tec.openplanner.team/stops/H2tr252a", "https://tec.openplanner.team/stops/H2tr256a"], ["https://tec.openplanner.team/stops/LLxeclu1", "https://tec.openplanner.team/stops/LVIecol2"], ["https://tec.openplanner.team/stops/Bmrl4ch1", "https://tec.openplanner.team/stops/Bmrl4ch2"], ["https://tec.openplanner.team/stops/N242afb", "https://tec.openplanner.team/stops/N242aga"], ["https://tec.openplanner.team/stops/X937aka", "https://tec.openplanner.team/stops/X937akb"], ["https://tec.openplanner.team/stops/X649aab", "https://tec.openplanner.team/stops/X649abb"], ["https://tec.openplanner.team/stops/X754adb", "https://tec.openplanner.team/stops/X754aeb"], ["https://tec.openplanner.team/stops/LFMstat2", "https://tec.openplanner.team/stops/LFMvoge2"], ["https://tec.openplanner.team/stops/LbEkirc*", "https://tec.openplanner.team/stops/LbTdoma2"], ["https://tec.openplanner.team/stops/Bwaubru1", "https://tec.openplanner.team/stops/Bwaunce2"], ["https://tec.openplanner.team/stops/Lsweg--1", "https://tec.openplanner.team/stops/Lwaaube2"], ["https://tec.openplanner.team/stops/Canboni2", "https://tec.openplanner.team/stops/Canfief1"], ["https://tec.openplanner.team/stops/H4lp119a", "https://tec.openplanner.team/stops/H4pe125a"], ["https://tec.openplanner.team/stops/Bhlvgar1", "https://tec.openplanner.team/stops/Creshau1"], ["https://tec.openplanner.team/stops/N242ada", "https://tec.openplanner.team/stops/N242afb"], ["https://tec.openplanner.team/stops/X766aca", "https://tec.openplanner.team/stops/X766acb"], ["https://tec.openplanner.team/stops/N501hlx", "https://tec.openplanner.team/stops/N501hlz"], ["https://tec.openplanner.team/stops/N521alb", "https://tec.openplanner.team/stops/N527aeb"], ["https://tec.openplanner.team/stops/H4mo193a", "https://tec.openplanner.team/stops/H4mo207a"], ["https://tec.openplanner.team/stops/H3so156a", "https://tec.openplanner.team/stops/H3so177a"], ["https://tec.openplanner.team/stops/Blankal3", "https://tec.openplanner.team/stops/Blankal4"], ["https://tec.openplanner.team/stops/H2le147a", "https://tec.openplanner.team/stops/H2le151b"], ["https://tec.openplanner.team/stops/Cmmphai1", "https://tec.openplanner.team/stops/Cmmserv4"], ["https://tec.openplanner.team/stops/LRMeg--1", "https://tec.openplanner.team/stops/LRMn58-1"], ["https://tec.openplanner.team/stops/Lstpole2", "https://tec.openplanner.team/stops/Lstpoly2"], ["https://tec.openplanner.team/stops/X946afb", "https://tec.openplanner.team/stops/X946agb"], ["https://tec.openplanner.team/stops/Bcrbast2", "https://tec.openplanner.team/stops/Bnilpje2"], ["https://tec.openplanner.team/stops/Barqres1", "https://tec.openplanner.team/stops/Barqres2"], ["https://tec.openplanner.team/stops/LrAverb1", "https://tec.openplanner.team/stops/LrAwald1"], ["https://tec.openplanner.team/stops/LWevand1", "https://tec.openplanner.team/stops/LWexhav2"], ["https://tec.openplanner.team/stops/Bclgpla1", "https://tec.openplanner.team/stops/Bdlmegl1"], ["https://tec.openplanner.team/stops/Cfmnoci2", "https://tec.openplanner.team/stops/Cfmtrie1"], ["https://tec.openplanner.team/stops/LBVzand3", "https://tec.openplanner.team/stops/LBVzand4"], ["https://tec.openplanner.team/stops/LWEbr511", "https://tec.openplanner.team/stops/LWEbruy2"], ["https://tec.openplanner.team/stops/Btslenf1", "https://tec.openplanner.team/stops/Btslenf2"], ["https://tec.openplanner.team/stops/Bucccal3", "https://tec.openplanner.team/stops/Bucceng1"], ["https://tec.openplanner.team/stops/H1fl139b", "https://tec.openplanner.team/stops/H1je221a"], ["https://tec.openplanner.team/stops/H1em105b", "https://tec.openplanner.team/stops/H1ev114b"], ["https://tec.openplanner.team/stops/X801aub", "https://tec.openplanner.team/stops/X801cib"], ["https://tec.openplanner.team/stops/Llmbouv1", "https://tec.openplanner.team/stops/Llmdeba2"], ["https://tec.openplanner.team/stops/Ljemont2", "https://tec.openplanner.team/stops/Ljewale2"], ["https://tec.openplanner.team/stops/N236aeb", "https://tec.openplanner.team/stops/N236anb"], ["https://tec.openplanner.team/stops/LHNcreh1", "https://tec.openplanner.team/stops/LHNhall2"], ["https://tec.openplanner.team/stops/LBichat2", "https://tec.openplanner.team/stops/LBieg--3"], ["https://tec.openplanner.team/stops/X917aab", "https://tec.openplanner.team/stops/X919aka"], ["https://tec.openplanner.team/stops/LJU493-1", "https://tec.openplanner.team/stops/LJUxhen2"], ["https://tec.openplanner.team/stops/X804aeb", "https://tec.openplanner.team/stops/X804bfa"], ["https://tec.openplanner.team/stops/N201aqa", "https://tec.openplanner.team/stops/N201aqb"], ["https://tec.openplanner.team/stops/N509aaa", "https://tec.openplanner.team/stops/N509aab"], ["https://tec.openplanner.team/stops/H1fr119b", "https://tec.openplanner.team/stops/H1no140a"], ["https://tec.openplanner.team/stops/Caujonc1", "https://tec.openplanner.team/stops/Cauromi2"], ["https://tec.openplanner.team/stops/LsHkirc2", "https://tec.openplanner.team/stops/LsHthom1"], ["https://tec.openplanner.team/stops/LHgpost1", "https://tec.openplanner.team/stops/LHgpost2"], ["https://tec.openplanner.team/stops/LLWcarr1", "https://tec.openplanner.team/stops/LOMdodi1"], ["https://tec.openplanner.team/stops/X989aba", "https://tec.openplanner.team/stops/X989agb"], ["https://tec.openplanner.team/stops/Lhrdelv2", "https://tec.openplanner.team/stops/Lhrpont1"], ["https://tec.openplanner.team/stops/X344aca", "https://tec.openplanner.team/stops/X344adb"], ["https://tec.openplanner.team/stops/X921ama", "https://tec.openplanner.team/stops/X921apa"], ["https://tec.openplanner.team/stops/LHAdeho1", "https://tec.openplanner.team/stops/LHAdeho2"], ["https://tec.openplanner.team/stops/Bhanath2", "https://tec.openplanner.team/stops/Bhanmou2"], ["https://tec.openplanner.team/stops/X715aqa", "https://tec.openplanner.team/stops/X781ada"], ["https://tec.openplanner.team/stops/X620abb", "https://tec.openplanner.team/stops/X620acb"], ["https://tec.openplanner.team/stops/Brixres1", "https://tec.openplanner.team/stops/Brixroi1"], ["https://tec.openplanner.team/stops/Lbrddef4", "https://tec.openplanner.team/stops/Lbrmour1"], ["https://tec.openplanner.team/stops/LmImirf2", "https://tec.openplanner.team/stops/LvA30--1"], ["https://tec.openplanner.team/stops/N301aoa", "https://tec.openplanner.team/stops/N301aob"], ["https://tec.openplanner.team/stops/N501doa", "https://tec.openplanner.team/stops/N501ena"], ["https://tec.openplanner.team/stops/LEMfort1", "https://tec.openplanner.team/stops/LLAbure2"], ["https://tec.openplanner.team/stops/H1bs110a", "https://tec.openplanner.team/stops/H1bs111a"], ["https://tec.openplanner.team/stops/Csubosa1", "https://tec.openplanner.team/stops/Csufrom5"], ["https://tec.openplanner.team/stops/N537ajb", "https://tec.openplanner.team/stops/N537akb"], ["https://tec.openplanner.team/stops/H1mb131a", "https://tec.openplanner.team/stops/H1ro131b"], ["https://tec.openplanner.team/stops/N543aca", "https://tec.openplanner.team/stops/N543bdb"], ["https://tec.openplanner.team/stops/N313abb", "https://tec.openplanner.team/stops/N313acb"], ["https://tec.openplanner.team/stops/H4gu109a", "https://tec.openplanner.team/stops/H4gu110a"], ["https://tec.openplanner.team/stops/N551aba", "https://tec.openplanner.team/stops/N551aec"], ["https://tec.openplanner.team/stops/N120ama", "https://tec.openplanner.team/stops/N120amb"], ["https://tec.openplanner.team/stops/Cctecol1", "https://tec.openplanner.team/stops/Cctvill1"], ["https://tec.openplanner.team/stops/X818aaa", "https://tec.openplanner.team/stops/X818aba"], ["https://tec.openplanner.team/stops/LHMgrun1", "https://tec.openplanner.team/stops/LSIgehe1"], ["https://tec.openplanner.team/stops/Cwfmonu1", "https://tec.openplanner.team/stops/Cwfreta1"], ["https://tec.openplanner.team/stops/H4ta123a", "https://tec.openplanner.team/stops/H4ta127a"], ["https://tec.openplanner.team/stops/Btubfab2", "https://tec.openplanner.team/stops/Btubnco1"], ["https://tec.openplanner.team/stops/Ceqcfra2", "https://tec.openplanner.team/stops/H1er110a"], ["https://tec.openplanner.team/stops/LWaruth2", "https://tec.openplanner.team/stops/LwYsarl1"], ["https://tec.openplanner.team/stops/LAWdefr1", "https://tec.openplanner.team/stops/LXhjupr2"], ["https://tec.openplanner.team/stops/Bincfer2", "https://tec.openplanner.team/stops/Bsrbtil1"], ["https://tec.openplanner.team/stops/N229acb", "https://tec.openplanner.team/stops/N229aec"], ["https://tec.openplanner.team/stops/Bdlmflo1", "https://tec.openplanner.team/stops/Bdlmgla1"], ["https://tec.openplanner.team/stops/H4hg155b", "https://tec.openplanner.team/stops/H4hg157b"], ["https://tec.openplanner.team/stops/Lghferr1", "https://tec.openplanner.team/stops/Lghomni2"], ["https://tec.openplanner.team/stops/LFOchpl1", "https://tec.openplanner.team/stops/LHGtige1"], ["https://tec.openplanner.team/stops/N139adb", "https://tec.openplanner.team/stops/N139aea"], ["https://tec.openplanner.team/stops/NR21aib", "https://tec.openplanner.team/stops/NR21aja"], ["https://tec.openplanner.team/stops/N571aab", "https://tec.openplanner.team/stops/NC14ada"], ["https://tec.openplanner.team/stops/N535aba", "https://tec.openplanner.team/stops/N535afa"], ["https://tec.openplanner.team/stops/Lveecol2", "https://tec.openplanner.team/stops/Lvepala9"], ["https://tec.openplanner.team/stops/LCUjonc1", "https://tec.openplanner.team/stops/LEnvill1"], ["https://tec.openplanner.team/stops/X595aaa", "https://tec.openplanner.team/stops/X595aac"], ["https://tec.openplanner.team/stops/N556afb", "https://tec.openplanner.team/stops/N557aja"], ["https://tec.openplanner.team/stops/LACeg--1", "https://tec.openplanner.team/stops/NL74aad"], ["https://tec.openplanner.team/stops/LRIcent1", "https://tec.openplanner.team/stops/LRIcent2"], ["https://tec.openplanner.team/stops/X681aeb", "https://tec.openplanner.team/stops/X696aga"], ["https://tec.openplanner.team/stops/Bwavbva2", "https://tec.openplanner.team/stops/Bwavlca1"], ["https://tec.openplanner.team/stops/Lhrherm2", "https://tec.openplanner.team/stops/Lmirca-1"], ["https://tec.openplanner.team/stops/X662aeb", "https://tec.openplanner.team/stops/X662ara"], ["https://tec.openplanner.team/stops/LTRlonh1", "https://tec.openplanner.team/stops/LTRsain1"], ["https://tec.openplanner.team/stops/N214aaa", "https://tec.openplanner.team/stops/N214aab"], ["https://tec.openplanner.team/stops/X659ana", "https://tec.openplanner.team/stops/X659apb"], ["https://tec.openplanner.team/stops/Bgzdpco1", "https://tec.openplanner.team/stops/Bgzdpos2"], ["https://tec.openplanner.team/stops/X790afa", "https://tec.openplanner.team/stops/X790afb"], ["https://tec.openplanner.team/stops/Cmmpjou3", "https://tec.openplanner.team/stops/Cmmpjou4"], ["https://tec.openplanner.team/stops/Bbgepau1", "https://tec.openplanner.team/stops/Bwavtpi2"], ["https://tec.openplanner.team/stops/Lanhoud3", "https://tec.openplanner.team/stops/Lanpisc1"], ["https://tec.openplanner.team/stops/X741ajb", "https://tec.openplanner.team/stops/X741ala"], ["https://tec.openplanner.team/stops/LHTptha4", "https://tec.openplanner.team/stops/LVIvert1"], ["https://tec.openplanner.team/stops/Lenabat2", "https://tec.openplanner.team/stops/Lenvale2"], ["https://tec.openplanner.team/stops/X806aeb", "https://tec.openplanner.team/stops/X806ala"], ["https://tec.openplanner.team/stops/N501hvb", "https://tec.openplanner.team/stops/N501jcb"], ["https://tec.openplanner.team/stops/H3lr109b", "https://tec.openplanner.team/stops/H3lr112b"], ["https://tec.openplanner.team/stops/H4ba101b", "https://tec.openplanner.team/stops/H4ba103a"], ["https://tec.openplanner.team/stops/Bgliaau1", "https://tec.openplanner.team/stops/Bglicsm1"], ["https://tec.openplanner.team/stops/LAtaube1", "https://tec.openplanner.team/stops/LOcalbe1"], ["https://tec.openplanner.team/stops/Blhugar1", "https://tec.openplanner.team/stops/Blhugar2"], ["https://tec.openplanner.team/stops/X723adb", "https://tec.openplanner.team/stops/X723aja"], ["https://tec.openplanner.team/stops/H4ty313a", "https://tec.openplanner.team/stops/H4ty323a"], ["https://tec.openplanner.team/stops/Ljegoss2", "https://tec.openplanner.team/stops/Ltihala1"], ["https://tec.openplanner.team/stops/Cchvil22", "https://tec.openplanner.team/stops/CMsama1"], ["https://tec.openplanner.team/stops/LSParca1", "https://tec.openplanner.team/stops/LSPpomp1"], ["https://tec.openplanner.team/stops/N138aca", "https://tec.openplanner.team/stops/N138ajb"], ["https://tec.openplanner.team/stops/X769akb", "https://tec.openplanner.team/stops/X769ala"], ["https://tec.openplanner.team/stops/X892afa", "https://tec.openplanner.team/stops/X892agb"], ["https://tec.openplanner.team/stops/X364aba", "https://tec.openplanner.team/stops/X364ada"], ["https://tec.openplanner.team/stops/N874ama", "https://tec.openplanner.team/stops/X874apb"], ["https://tec.openplanner.team/stops/LLrfont2", "https://tec.openplanner.team/stops/LLrmc--3"], ["https://tec.openplanner.team/stops/LCRvert2", "https://tec.openplanner.team/stops/LOdkeme2"], ["https://tec.openplanner.team/stops/LLrjeho2", "https://tec.openplanner.team/stops/LLrpape4"], ["https://tec.openplanner.team/stops/H1sg145a", "https://tec.openplanner.team/stops/H1sg147a"], ["https://tec.openplanner.team/stops/Lsmecol1", "https://tec.openplanner.team/stops/Lsmecol2"], ["https://tec.openplanner.team/stops/H1ha182a", "https://tec.openplanner.team/stops/H1ha188a"], ["https://tec.openplanner.team/stops/LkEsouf1", "https://tec.openplanner.team/stops/LkEspor1"], ["https://tec.openplanner.team/stops/Cobmven1", "https://tec.openplanner.team/stops/Cpcathe2"], ["https://tec.openplanner.team/stops/LLUdoya1", "https://tec.openplanner.team/stops/LLUvent4"], ["https://tec.openplanner.team/stops/H4ma419a", "https://tec.openplanner.team/stops/H4ma419b"], ["https://tec.openplanner.team/stops/N201ala", "https://tec.openplanner.team/stops/N201alb"], ["https://tec.openplanner.team/stops/N501giz", "https://tec.openplanner.team/stops/N501hba"], ["https://tec.openplanner.team/stops/LhSbruc1", "https://tec.openplanner.team/stops/LhSkirc2"], ["https://tec.openplanner.team/stops/N201aee", "https://tec.openplanner.team/stops/N201atb"], ["https://tec.openplanner.team/stops/Bchgqve1", "https://tec.openplanner.team/stops/Btsllbv2"], ["https://tec.openplanner.team/stops/Bnivfch2", "https://tec.openplanner.team/stops/Bnivpso1"], ["https://tec.openplanner.team/stops/Bbchsac1", "https://tec.openplanner.team/stops/Bwaunce2"], ["https://tec.openplanner.team/stops/H2ca101a", "https://tec.openplanner.team/stops/H2ca111a"], ["https://tec.openplanner.team/stops/X801bdd", "https://tec.openplanner.team/stops/X801coa"], ["https://tec.openplanner.team/stops/LhM07--1", "https://tec.openplanner.team/stops/LhMdorf1"], ["https://tec.openplanner.team/stops/X713acb", "https://tec.openplanner.team/stops/X731adb"], ["https://tec.openplanner.team/stops/H1eo103a", "https://tec.openplanner.team/stops/H1eo105b"], ["https://tec.openplanner.team/stops/LWNberg1", "https://tec.openplanner.team/stops/LWNbeto2"], ["https://tec.openplanner.team/stops/N516amb", "https://tec.openplanner.team/stops/N516amc"], ["https://tec.openplanner.team/stops/LFCdree2", "https://tec.openplanner.team/stops/LFChofv2"], ["https://tec.openplanner.team/stops/LlgCATH1", "https://tec.openplanner.team/stops/Llgrege2"], ["https://tec.openplanner.team/stops/H1ci102b", "https://tec.openplanner.team/stops/H1hn204a"], ["https://tec.openplanner.team/stops/LBSpail3", "https://tec.openplanner.team/stops/LBSvi321"], ["https://tec.openplanner.team/stops/X717aia", "https://tec.openplanner.team/stops/X781aba"], ["https://tec.openplanner.team/stops/Bmrlhan4", "https://tec.openplanner.team/stops/Bpiehte1"], ["https://tec.openplanner.team/stops/N229ata", "https://tec.openplanner.team/stops/N540alb"], ["https://tec.openplanner.team/stops/Lgrgoff1", "https://tec.openplanner.team/stops/Lgrjobe2"], ["https://tec.openplanner.team/stops/X665aaa", "https://tec.openplanner.team/stops/X665aab"], ["https://tec.openplanner.team/stops/H1ba116b", "https://tec.openplanner.team/stops/H1ba119b"], ["https://tec.openplanner.team/stops/Ctaallo2", "https://tec.openplanner.team/stops/Ctapn2"], ["https://tec.openplanner.team/stops/N506bca", "https://tec.openplanner.team/stops/N506bna"], ["https://tec.openplanner.team/stops/N513acb", "https://tec.openplanner.team/stops/N513agd"], ["https://tec.openplanner.team/stops/Bcercsa1", "https://tec.openplanner.team/stops/Bcerldo1"], ["https://tec.openplanner.team/stops/Bblaelo1", "https://tec.openplanner.team/stops/Bblaljo1"], ["https://tec.openplanner.team/stops/Cptberg1", "https://tec.openplanner.team/stops/Cptcamb1"], ["https://tec.openplanner.team/stops/LAWcorn2", "https://tec.openplanner.team/stops/LAWvill1"], ["https://tec.openplanner.team/stops/X901axa", "https://tec.openplanner.team/stops/X901bcb"], ["https://tec.openplanner.team/stops/X664aja", "https://tec.openplanner.team/stops/X665aaa"], ["https://tec.openplanner.team/stops/LeUarno2", "https://tec.openplanner.team/stops/LeUmeie2"], ["https://tec.openplanner.team/stops/N548afa", "https://tec.openplanner.team/stops/N571afa"], ["https://tec.openplanner.team/stops/Csobail2", "https://tec.openplanner.team/stops/Csoforc2"], ["https://tec.openplanner.team/stops/Llgerac2", "https://tec.openplanner.team/stops/Llghec-1"], ["https://tec.openplanner.team/stops/X605aea", "https://tec.openplanner.team/stops/X605afa"], ["https://tec.openplanner.team/stops/Crebrux1", "https://tec.openplanner.team/stops/Creespi2"], ["https://tec.openplanner.team/stops/LwYcafe2", "https://tec.openplanner.team/stops/LwYkirc2"], ["https://tec.openplanner.team/stops/LBVzand1", "https://tec.openplanner.team/stops/LBVzand3"], ["https://tec.openplanner.team/stops/H1pa100b", "https://tec.openplanner.team/stops/H1pa117b"], ["https://tec.openplanner.team/stops/X923aca", "https://tec.openplanner.team/stops/X923adb"], ["https://tec.openplanner.team/stops/N536aab", "https://tec.openplanner.team/stops/N536aba"], ["https://tec.openplanner.team/stops/LHCmais1", "https://tec.openplanner.team/stops/LWEmito2"], ["https://tec.openplanner.team/stops/Brsgm301", "https://tec.openplanner.team/stops/Bwatmbv1"], ["https://tec.openplanner.team/stops/H1te177a", "https://tec.openplanner.team/stops/H1vt192b"], ["https://tec.openplanner.team/stops/LBEchan1", "https://tec.openplanner.team/stops/LBEcroi1"], ["https://tec.openplanner.team/stops/NH01ana", "https://tec.openplanner.team/stops/NH01anb"], ["https://tec.openplanner.team/stops/Lloauto1", "https://tec.openplanner.team/stops/Lloauto2"], ["https://tec.openplanner.team/stops/NC14aba", "https://tec.openplanner.team/stops/NC44abb"], ["https://tec.openplanner.team/stops/N527aga", "https://tec.openplanner.team/stops/N527agb"], ["https://tec.openplanner.team/stops/H1vg358b", "https://tec.openplanner.team/stops/H1vg359a"], ["https://tec.openplanner.team/stops/Clbchba1", "https://tec.openplanner.team/stops/Clbchba2"], ["https://tec.openplanner.team/stops/X907ahb", "https://tec.openplanner.team/stops/X907aia"], ["https://tec.openplanner.team/stops/H4pi130a", "https://tec.openplanner.team/stops/H4pi134b"], ["https://tec.openplanner.team/stops/Lagpass1", "https://tec.openplanner.team/stops/Lagtilf1"], ["https://tec.openplanner.team/stops/H2bh110c", "https://tec.openplanner.team/stops/H2bh110d"], ["https://tec.openplanner.team/stops/N540aeb", "https://tec.openplanner.team/stops/N542arb"], ["https://tec.openplanner.team/stops/Ccpsecp1", "https://tec.openplanner.team/stops/H2tz117a"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X745aeb"], ["https://tec.openplanner.team/stops/X783acb", "https://tec.openplanner.team/stops/X783acd"], ["https://tec.openplanner.team/stops/X822aea", "https://tec.openplanner.team/stops/X822afb"], ["https://tec.openplanner.team/stops/Bottcro2", "https://tec.openplanner.team/stops/Bottgar1"], ["https://tec.openplanner.team/stops/Bnivcol1", "https://tec.openplanner.team/stops/Bnivfch1"], ["https://tec.openplanner.team/stops/N505ala", "https://tec.openplanner.team/stops/N505alb"], ["https://tec.openplanner.team/stops/N138aia", "https://tec.openplanner.team/stops/N143ada"], ["https://tec.openplanner.team/stops/LRChote1", "https://tec.openplanner.team/stops/LTPbode2"], ["https://tec.openplanner.team/stops/N534amh", "https://tec.openplanner.team/stops/N534apg"], ["https://tec.openplanner.team/stops/LCPbell1", "https://tec.openplanner.team/stops/LCPbell2"], ["https://tec.openplanner.team/stops/Llgsorb1", "https://tec.openplanner.team/stops/Llgsorb2"], ["https://tec.openplanner.team/stops/Bucccre2", "https://tec.openplanner.team/stops/Bucceng2"], ["https://tec.openplanner.team/stops/H2hl110b", "https://tec.openplanner.team/stops/H2pe157a"], ["https://tec.openplanner.team/stops/Cbcegli6", "https://tec.openplanner.team/stops/Crglyre1"], ["https://tec.openplanner.team/stops/X948ata", "https://tec.openplanner.team/stops/X948avb"], ["https://tec.openplanner.team/stops/Bwatber1", "https://tec.openplanner.team/stops/Bwatpct2"], ["https://tec.openplanner.team/stops/LSzsurl1", "https://tec.openplanner.team/stops/NL57aia"], ["https://tec.openplanner.team/stops/LRacime1", "https://tec.openplanner.team/stops/LRacime2"], ["https://tec.openplanner.team/stops/N329aaa", "https://tec.openplanner.team/stops/N365abb"], ["https://tec.openplanner.team/stops/N106ala", "https://tec.openplanner.team/stops/N106ana"], ["https://tec.openplanner.team/stops/H1vh137b", "https://tec.openplanner.team/stops/H3th127a"], ["https://tec.openplanner.team/stops/Clrecol1", "https://tec.openplanner.team/stops/Clrecol2"], ["https://tec.openplanner.team/stops/Lmiensp*", "https://tec.openplanner.team/stops/Lmimili2"], ["https://tec.openplanner.team/stops/Bnivfro2", "https://tec.openplanner.team/stops/Bnivpso1"], ["https://tec.openplanner.team/stops/LBabeco3", "https://tec.openplanner.team/stops/LBapepi6"], ["https://tec.openplanner.team/stops/H2hg153b", "https://tec.openplanner.team/stops/H2hg155d"], ["https://tec.openplanner.team/stops/X724aga", "https://tec.openplanner.team/stops/X724agb"], ["https://tec.openplanner.team/stops/H4ga151a", "https://tec.openplanner.team/stops/H4ga414a"], ["https://tec.openplanner.team/stops/N125aca", "https://tec.openplanner.team/stops/N154abb"], ["https://tec.openplanner.team/stops/H1fr107a", "https://tec.openplanner.team/stops/H1fr107d"], ["https://tec.openplanner.team/stops/X937aia", "https://tec.openplanner.team/stops/X937aja"], ["https://tec.openplanner.team/stops/Lbococh2", "https://tec.openplanner.team/stops/Loubonc1"], ["https://tec.openplanner.team/stops/H4or114a", "https://tec.openplanner.team/stops/H4or116b"], ["https://tec.openplanner.team/stops/N383acb", "https://tec.openplanner.team/stops/N383ada"], ["https://tec.openplanner.team/stops/N270aec", "https://tec.openplanner.team/stops/N270aed"], ["https://tec.openplanner.team/stops/X359ada", "https://tec.openplanner.team/stops/X359alb"], ["https://tec.openplanner.team/stops/Barqbco2", "https://tec.openplanner.team/stops/Barqres1"], ["https://tec.openplanner.team/stops/Cbwmvri1", "https://tec.openplanner.team/stops/Cmggthi1"], ["https://tec.openplanner.team/stops/Lvtfrai1", "https://tec.openplanner.team/stops/Lvtfrai2"], ["https://tec.openplanner.team/stops/N543cbb", "https://tec.openplanner.team/stops/N543cfb"], ["https://tec.openplanner.team/stops/Cgplutt1", "https://tec.openplanner.team/stops/Cgpplac1"], ["https://tec.openplanner.team/stops/X791abb", "https://tec.openplanner.team/stops/X791acb"], ["https://tec.openplanner.team/stops/NL73abb", "https://tec.openplanner.team/stops/NL73aca"], ["https://tec.openplanner.team/stops/LhRwere1", "https://tec.openplanner.team/stops/LsCbrau1"], ["https://tec.openplanner.team/stops/N323aba", "https://tec.openplanner.team/stops/N368ada"], ["https://tec.openplanner.team/stops/H4mo165b", "https://tec.openplanner.team/stops/H4mo179a"], ["https://tec.openplanner.team/stops/Bnivga12", "https://tec.openplanner.team/stops/Bnivga31"], ["https://tec.openplanner.team/stops/H1sp356b", "https://tec.openplanner.team/stops/H1ss349a"], ["https://tec.openplanner.team/stops/N540aib", "https://tec.openplanner.team/stops/N540aja"], ["https://tec.openplanner.team/stops/Lvethea1", "https://tec.openplanner.team/stops/Lvethea2"], ["https://tec.openplanner.team/stops/Cmmmarl1", "https://tec.openplanner.team/stops/Cmmp2051"], ["https://tec.openplanner.team/stops/Bhandub1", "https://tec.openplanner.team/stops/Bhanwav1"], ["https://tec.openplanner.team/stops/H1by101b", "https://tec.openplanner.team/stops/H1by109a"], ["https://tec.openplanner.team/stops/N102aca", "https://tec.openplanner.team/stops/N102acb"], ["https://tec.openplanner.team/stops/H4cl112b", "https://tec.openplanner.team/stops/H4ga163b"], ["https://tec.openplanner.team/stops/H2ec105a", "https://tec.openplanner.team/stops/H2ec105b"], ["https://tec.openplanner.team/stops/LVBsevr1", "https://tec.openplanner.team/stops/LVBsevr2"], ["https://tec.openplanner.team/stops/N117aaa", "https://tec.openplanner.team/stops/N117aua"], ["https://tec.openplanner.team/stops/LMIbois1", "https://tec.openplanner.team/stops/LMIgare2"], ["https://tec.openplanner.team/stops/LROgeuz1", "https://tec.openplanner.team/stops/LROmons2"], ["https://tec.openplanner.team/stops/Ctrchat2", "https://tec.openplanner.team/stops/Ctrrpla1"], ["https://tec.openplanner.team/stops/H1pa105b", "https://tec.openplanner.team/stops/H1qu119b"], ["https://tec.openplanner.team/stops/X358acd", "https://tec.openplanner.team/stops/X994ama"], ["https://tec.openplanner.team/stops/NL68afa", "https://tec.openplanner.team/stops/NL68agb"], ["https://tec.openplanner.team/stops/Bbstdpa1", "https://tec.openplanner.team/stops/Bbststa2"], ["https://tec.openplanner.team/stops/X804aob", "https://tec.openplanner.team/stops/X804bra"], ["https://tec.openplanner.team/stops/X669afa", "https://tec.openplanner.team/stops/X669agb"], ["https://tec.openplanner.team/stops/NR10aba", "https://tec.openplanner.team/stops/NR10aca"], ["https://tec.openplanner.team/stops/H1hr124a", "https://tec.openplanner.team/stops/H1hr129a"], ["https://tec.openplanner.team/stops/Bdlmgla4", "https://tec.openplanner.team/stops/Bwavdmo4"], ["https://tec.openplanner.team/stops/LBdcarr1", "https://tec.openplanner.team/stops/LLrfagn2"], ["https://tec.openplanner.team/stops/LESfont2", "https://tec.openplanner.team/stops/LFNecpr*"], ["https://tec.openplanner.team/stops/Ccimont2", "https://tec.openplanner.team/stops/Cmtprey1"], ["https://tec.openplanner.team/stops/LBTchai3", "https://tec.openplanner.team/stops/LMhvina2"], ["https://tec.openplanner.team/stops/LXoroch1", "https://tec.openplanner.team/stops/X599afd"], ["https://tec.openplanner.team/stops/N203aea", "https://tec.openplanner.team/stops/N203afb"], ["https://tec.openplanner.team/stops/N254aea", "https://tec.openplanner.team/stops/N254aga"], ["https://tec.openplanner.team/stops/N527aaa", "https://tec.openplanner.team/stops/N527aab"], ["https://tec.openplanner.team/stops/X741afa", "https://tec.openplanner.team/stops/X742aab"], ["https://tec.openplanner.team/stops/H4to133a", "https://tec.openplanner.team/stops/H5at135a"], ["https://tec.openplanner.team/stops/N521aeb", "https://tec.openplanner.team/stops/N521afb"], ["https://tec.openplanner.team/stops/X725aib", "https://tec.openplanner.team/stops/X767afa"], ["https://tec.openplanner.team/stops/LLt43--1", "https://tec.openplanner.team/stops/LVsboug2"], ["https://tec.openplanner.team/stops/H2bh121a", "https://tec.openplanner.team/stops/H2bh121b"], ["https://tec.openplanner.team/stops/Bcrnnca2", "https://tec.openplanner.team/stops/Bcrnnra1"], ["https://tec.openplanner.team/stops/X633ada", "https://tec.openplanner.team/stops/X633adc"], ["https://tec.openplanner.team/stops/Bsdavpe1", "https://tec.openplanner.team/stops/Bsdavpe2"], ["https://tec.openplanner.team/stops/X624afa", "https://tec.openplanner.team/stops/X624akb"], ["https://tec.openplanner.team/stops/H4mo171a", "https://tec.openplanner.team/stops/H4tg162b"], ["https://tec.openplanner.team/stops/H4ve133a", "https://tec.openplanner.team/stops/H4ve133b"], ["https://tec.openplanner.team/stops/X715akb", "https://tec.openplanner.team/stops/X781aab"], ["https://tec.openplanner.team/stops/N529ada", "https://tec.openplanner.team/stops/N584acb"], ["https://tec.openplanner.team/stops/LNCmarc1", "https://tec.openplanner.team/stops/LNCmc--2"], ["https://tec.openplanner.team/stops/H5wo124a", "https://tec.openplanner.team/stops/H5wo124b"], ["https://tec.openplanner.team/stops/N101aja", "https://tec.openplanner.team/stops/N101ajb"], ["https://tec.openplanner.team/stops/Cgzbouh1", "https://tec.openplanner.team/stops/Cgzbouh2"], ["https://tec.openplanner.team/stops/H5st169a", "https://tec.openplanner.team/stops/H5st169b"], ["https://tec.openplanner.team/stops/H1hw121b", "https://tec.openplanner.team/stops/H1hw123b"], ["https://tec.openplanner.team/stops/Lsmjalh2", "https://tec.openplanner.team/stops/Lsmnico2"], ["https://tec.openplanner.team/stops/H1ms904a", "https://tec.openplanner.team/stops/H1ms905a"], ["https://tec.openplanner.team/stops/X657ahb", "https://tec.openplanner.team/stops/X657ala"], ["https://tec.openplanner.team/stops/LFsconc2", "https://tec.openplanner.team/stops/LFslign1"], ["https://tec.openplanner.team/stops/N254aha", "https://tec.openplanner.team/stops/N562bfa"], ["https://tec.openplanner.team/stops/Llgcrgu2", "https://tec.openplanner.team/stops/Llgparc1"], ["https://tec.openplanner.team/stops/N150aba", "https://tec.openplanner.team/stops/N150abb"], ["https://tec.openplanner.team/stops/Llochar3", "https://tec.openplanner.team/stops/Llochar5"], ["https://tec.openplanner.team/stops/LeUkehr1", "https://tec.openplanner.team/stops/LeUkehr3"], ["https://tec.openplanner.team/stops/Bnivchh1", "https://tec.openplanner.team/stops/Bnivspi1"], ["https://tec.openplanner.team/stops/N301amb", "https://tec.openplanner.team/stops/N301anb"], ["https://tec.openplanner.team/stops/H1ch142b", "https://tec.openplanner.team/stops/H1nm141a"], ["https://tec.openplanner.team/stops/X946afa", "https://tec.openplanner.team/stops/X946agb"], ["https://tec.openplanner.team/stops/X674aaa", "https://tec.openplanner.team/stops/X675aaa"], ["https://tec.openplanner.team/stops/X784aca", "https://tec.openplanner.team/stops/X784adb"], ["https://tec.openplanner.team/stops/Cclmoul1", "https://tec.openplanner.team/stops/Cstgare1"], ["https://tec.openplanner.team/stops/Bsaumlp2", "https://tec.openplanner.team/stops/Btstbbu1"], ["https://tec.openplanner.team/stops/X982aaa", "https://tec.openplanner.team/stops/X982aad"], ["https://tec.openplanner.team/stops/H1gh168b", "https://tec.openplanner.team/stops/H1gh171b"], ["https://tec.openplanner.team/stops/N562bla", "https://tec.openplanner.team/stops/N562blb"], ["https://tec.openplanner.team/stops/LbTcarm2", "https://tec.openplanner.team/stops/LwR140-2"], ["https://tec.openplanner.team/stops/Btlbtbe2", "https://tec.openplanner.team/stops/Btlbtbe3"], ["https://tec.openplanner.team/stops/Bnilspe4", "https://tec.openplanner.team/stops/Bwspspa1"], ["https://tec.openplanner.team/stops/LESamos1", "https://tec.openplanner.team/stops/LESmagr2"], ["https://tec.openplanner.team/stops/LESfont2", "https://tec.openplanner.team/stops/LTIchev1"], ["https://tec.openplanner.team/stops/N211aea", "https://tec.openplanner.team/stops/N211aeb"], ["https://tec.openplanner.team/stops/X993aaa", "https://tec.openplanner.team/stops/X993abd"], ["https://tec.openplanner.team/stops/X899aga", "https://tec.openplanner.team/stops/X899aib"], ["https://tec.openplanner.team/stops/LLedoya1", "https://tec.openplanner.team/stops/X576aea"], ["https://tec.openplanner.team/stops/Bqueblo2", "https://tec.openplanner.team/stops/Bquepos2"], ["https://tec.openplanner.team/stops/Bclgavi2", "https://tec.openplanner.team/stops/Bclglbu1"], ["https://tec.openplanner.team/stops/X949aib", "https://tec.openplanner.team/stops/X949ama"], ["https://tec.openplanner.team/stops/Llgcrgu2", "https://tec.openplanner.team/stops/Llgrome2"], ["https://tec.openplanner.team/stops/LWOrout1", "https://tec.openplanner.team/stops/LWOwonc1"], ["https://tec.openplanner.team/stops/N423aab", "https://tec.openplanner.team/stops/N423afb"], ["https://tec.openplanner.team/stops/X836aeb", "https://tec.openplanner.team/stops/X836afa"], ["https://tec.openplanner.team/stops/LMNentr1", "https://tec.openplanner.team/stops/LMNgare2"], ["https://tec.openplanner.team/stops/H1ca104b", "https://tec.openplanner.team/stops/H1ca184b"], ["https://tec.openplanner.team/stops/Bsdecdi2", "https://tec.openplanner.team/stops/N574aea"], ["https://tec.openplanner.team/stops/Cdajume1", "https://tec.openplanner.team/stops/Cmafafe2"], ["https://tec.openplanner.team/stops/N512aic", "https://tec.openplanner.team/stops/NL68adb"], ["https://tec.openplanner.team/stops/N153aea", "https://tec.openplanner.team/stops/N153aeb"], ["https://tec.openplanner.team/stops/X769ana", "https://tec.openplanner.team/stops/X769apb"], ["https://tec.openplanner.team/stops/X907aba", "https://tec.openplanner.team/stops/X951acb"], ["https://tec.openplanner.team/stops/N286abb", "https://tec.openplanner.team/stops/N287aaa"], ["https://tec.openplanner.team/stops/LREheyd2", "https://tec.openplanner.team/stops/LREprea2"], ["https://tec.openplanner.team/stops/LWZponh1", "https://tec.openplanner.team/stops/LWZponh2"], ["https://tec.openplanner.team/stops/X818aha", "https://tec.openplanner.team/stops/X818ama"], ["https://tec.openplanner.team/stops/Csedoua2", "https://tec.openplanner.team/stops/Csedoua5"], ["https://tec.openplanner.team/stops/X390aja", "https://tec.openplanner.team/stops/X998aaa"], ["https://tec.openplanner.team/stops/Cgoulb1", "https://tec.openplanner.team/stops/Cgoulb4"], ["https://tec.openplanner.team/stops/N167aab", "https://tec.openplanner.team/stops/N244aqa"], ["https://tec.openplanner.team/stops/X837aec", "https://tec.openplanner.team/stops/X837aja"], ["https://tec.openplanner.team/stops/LLrdigu1", "https://tec.openplanner.team/stops/LSPgend2"], ["https://tec.openplanner.team/stops/LGLchap2", "https://tec.openplanner.team/stops/LGLchap3"], ["https://tec.openplanner.team/stops/LTGvill1", "https://tec.openplanner.team/stops/LTGvill2"], ["https://tec.openplanner.team/stops/Lveensi2", "https://tec.openplanner.team/stops/Lveoctr3"], ["https://tec.openplanner.team/stops/N137ada", "https://tec.openplanner.team/stops/N160aab"], ["https://tec.openplanner.team/stops/X750agb", "https://tec.openplanner.team/stops/X750bna"], ["https://tec.openplanner.team/stops/LrAmuhl1", "https://tec.openplanner.team/stops/LrApont1"], ["https://tec.openplanner.team/stops/LVllieg1", "https://tec.openplanner.team/stops/LVllieg2"], ["https://tec.openplanner.team/stops/X836aaa", "https://tec.openplanner.team/stops/X836aca"], ["https://tec.openplanner.team/stops/LFFchab1", "https://tec.openplanner.team/stops/LVLzoni1"], ["https://tec.openplanner.team/stops/H1bo103a", "https://tec.openplanner.team/stops/H1sg150c"], ["https://tec.openplanner.team/stops/N515akc", "https://tec.openplanner.team/stops/N515ana"], ["https://tec.openplanner.team/stops/Cjojonc1", "https://tec.openplanner.team/stops/NC14anb"], ["https://tec.openplanner.team/stops/Cauromi1", "https://tec.openplanner.team/stops/N543anh"], ["https://tec.openplanner.team/stops/X902atb", "https://tec.openplanner.team/stops/X902aub"], ["https://tec.openplanner.team/stops/Bclgeco2", "https://tec.openplanner.team/stops/Bclgfva2"], ["https://tec.openplanner.team/stops/H4ne133b", "https://tec.openplanner.team/stops/H4wa153b"], ["https://tec.openplanner.team/stops/N139aca", "https://tec.openplanner.team/stops/N139ada"], ["https://tec.openplanner.team/stops/Bmelegl1", "https://tec.openplanner.team/stops/Bmelenf1"], ["https://tec.openplanner.team/stops/Bgntcom1", "https://tec.openplanner.team/stops/Bgntcom2"], ["https://tec.openplanner.team/stops/Lsearbo2", "https://tec.openplanner.team/stops/Lsebeau2"], ["https://tec.openplanner.team/stops/Csufrom5", "https://tec.openplanner.team/stops/Csuptou1"], ["https://tec.openplanner.team/stops/H1cd110b", "https://tec.openplanner.team/stops/H1cd114b"], ["https://tec.openplanner.team/stops/N536aca", "https://tec.openplanner.team/stops/N562blb"], ["https://tec.openplanner.team/stops/Lhr2ave2", "https://tec.openplanner.team/stops/Lhrhurb1"], ["https://tec.openplanner.team/stops/X754axa", "https://tec.openplanner.team/stops/X754azb"], ["https://tec.openplanner.team/stops/X670aqb", "https://tec.openplanner.team/stops/X670asb"], ["https://tec.openplanner.team/stops/N353ahb", "https://tec.openplanner.team/stops/N353awa"], ["https://tec.openplanner.team/stops/N232bsa", "https://tec.openplanner.team/stops/N232bsb"], ["https://tec.openplanner.team/stops/H1ms297a", "https://tec.openplanner.team/stops/H1ms297b"], ["https://tec.openplanner.team/stops/X725aga", "https://tec.openplanner.team/stops/X725agb"], ["https://tec.openplanner.team/stops/Cramadi1", "https://tec.openplanner.team/stops/Crarmas2"], ["https://tec.openplanner.team/stops/N545abb", "https://tec.openplanner.team/stops/N547ala"], ["https://tec.openplanner.team/stops/X823afd", "https://tec.openplanner.team/stops/X825aaa"], ["https://tec.openplanner.team/stops/N340aba", "https://tec.openplanner.team/stops/N340abb"], ["https://tec.openplanner.team/stops/LGemari2", "https://tec.openplanner.team/stops/LPbpeti1"], ["https://tec.openplanner.team/stops/Llgfont2", "https://tec.openplanner.team/stops/Llgfont4"], ["https://tec.openplanner.team/stops/N232bra", "https://tec.openplanner.team/stops/N232brb"], ["https://tec.openplanner.team/stops/Lrcauto1", "https://tec.openplanner.team/stops/Lrcstad2"], ["https://tec.openplanner.team/stops/NL78aca", "https://tec.openplanner.team/stops/NL78adb"], ["https://tec.openplanner.team/stops/Bgnvcha2", "https://tec.openplanner.team/stops/Blhumpo2"], ["https://tec.openplanner.team/stops/LhEbruc2", "https://tec.openplanner.team/stops/LWEgare1"], ["https://tec.openplanner.team/stops/H4ms144a", "https://tec.openplanner.team/stops/H4ms166b"], ["https://tec.openplanner.team/stops/X774aha", "https://tec.openplanner.team/stops/X774ahb"], ["https://tec.openplanner.team/stops/X804bjb", "https://tec.openplanner.team/stops/X804byb"], ["https://tec.openplanner.team/stops/LFsgend2", "https://tec.openplanner.team/stops/Lligara1"], ["https://tec.openplanner.team/stops/H2sv213a", "https://tec.openplanner.team/stops/H2sv215b"], ["https://tec.openplanner.team/stops/LGOmonu1", "https://tec.openplanner.team/stops/LGOmous1"], ["https://tec.openplanner.team/stops/Blanove2", "https://tec.openplanner.team/stops/LWscona1"], ["https://tec.openplanner.team/stops/LAuvill1", "https://tec.openplanner.team/stops/LWRpl--1"], ["https://tec.openplanner.team/stops/N513aha", "https://tec.openplanner.team/stops/N513axa"], ["https://tec.openplanner.team/stops/LDObell1", "https://tec.openplanner.team/stops/LDObell2"], ["https://tec.openplanner.team/stops/Braccen1", "https://tec.openplanner.team/stops/Bracgar1"], ["https://tec.openplanner.team/stops/H1hl123a", "https://tec.openplanner.team/stops/H1hl129b"], ["https://tec.openplanner.team/stops/LmHflor1", "https://tec.openplanner.team/stops/LmHumge1"], ["https://tec.openplanner.team/stops/LAyfren1", "https://tec.openplanner.team/stops/Lflcle-6"], ["https://tec.openplanner.team/stops/LbTgeme2", "https://tec.openplanner.team/stops/LwYneue1"], ["https://tec.openplanner.team/stops/Cctecol2", "https://tec.openplanner.team/stops/Ccutrav1"], ["https://tec.openplanner.team/stops/H1qu114a", "https://tec.openplanner.team/stops/H1qu114b"], ["https://tec.openplanner.team/stops/N536ada", "https://tec.openplanner.team/stops/N536adb"], ["https://tec.openplanner.team/stops/X746agb", "https://tec.openplanner.team/stops/X746agc"], ["https://tec.openplanner.team/stops/LJU493-1", "https://tec.openplanner.team/stops/LPAchpl2"], ["https://tec.openplanner.team/stops/Cfcpier1", "https://tec.openplanner.team/stops/Cfcpier2"], ["https://tec.openplanner.team/stops/Llgcont1", "https://tec.openplanner.team/stops/Llgfran2"], ["https://tec.openplanner.team/stops/N323abb", "https://tec.openplanner.team/stops/N323aca"], ["https://tec.openplanner.team/stops/LeUgend1", "https://tec.openplanner.team/stops/LeUlasc1"], ["https://tec.openplanner.team/stops/Crerevi1", "https://tec.openplanner.team/stops/Crerevi2"], ["https://tec.openplanner.team/stops/H1ms254b", "https://tec.openplanner.team/stops/H1ms264a"], ["https://tec.openplanner.team/stops/Ladplen*", "https://tec.openplanner.team/stops/LThhoul1"], ["https://tec.openplanner.team/stops/LmAgruf1", "https://tec.openplanner.team/stops/LmAkirc1"], ["https://tec.openplanner.team/stops/Lbrrobe2", "https://tec.openplanner.team/stops/Lbrrobe3"], ["https://tec.openplanner.team/stops/N539acb", "https://tec.openplanner.team/stops/N539amb"], ["https://tec.openplanner.team/stops/Lbrnanc1", "https://tec.openplanner.team/stops/Llglill2"], ["https://tec.openplanner.team/stops/H1og132a", "https://tec.openplanner.team/stops/H1og135a"], ["https://tec.openplanner.team/stops/Cjxetri1", "https://tec.openplanner.team/stops/Cjxetri2"], ["https://tec.openplanner.team/stops/H4ro154b", "https://tec.openplanner.team/stops/H5pe127b"], ["https://tec.openplanner.team/stops/Chpatel1", "https://tec.openplanner.team/stops/Chppack2"], ["https://tec.openplanner.team/stops/Cgyruis2", "https://tec.openplanner.team/stops/Cgywaut2"], ["https://tec.openplanner.team/stops/N351ala", "https://tec.openplanner.team/stops/N351alb"], ["https://tec.openplanner.team/stops/H4ep126a", "https://tec.openplanner.team/stops/H4ep126b"], ["https://tec.openplanner.team/stops/LSG172-1", "https://tec.openplanner.team/stops/LSkoran2"], ["https://tec.openplanner.team/stops/X619aab", "https://tec.openplanner.team/stops/X619afa"], ["https://tec.openplanner.team/stops/LFyanto1", "https://tec.openplanner.team/stops/LFychpl2"], ["https://tec.openplanner.team/stops/Bnivbxl2", "https://tec.openplanner.team/stops/Bnivpla1"], ["https://tec.openplanner.team/stops/N501iez", "https://tec.openplanner.team/stops/N501ilb"], ["https://tec.openplanner.team/stops/Lbbgare1", "https://tec.openplanner.team/stops/Lgrdefr1"], ["https://tec.openplanner.team/stops/LLRbleh1", "https://tec.openplanner.team/stops/LLRptma1"], ["https://tec.openplanner.team/stops/LAmarbo1", "https://tec.openplanner.team/stops/LAmeg--1"], ["https://tec.openplanner.team/stops/Bgemfbo1", "https://tec.openplanner.team/stops/Bgrmfon1"], ["https://tec.openplanner.team/stops/Csychap2", "https://tec.openplanner.team/stops/Csyjumo2"], ["https://tec.openplanner.team/stops/NL57ala", "https://tec.openplanner.team/stops/NL57ama"], ["https://tec.openplanner.team/stops/H4be104a", "https://tec.openplanner.team/stops/H4be105a"], ["https://tec.openplanner.team/stops/H1qy131b", "https://tec.openplanner.team/stops/H1qy137b"], ["https://tec.openplanner.team/stops/Bgnttma2", "https://tec.openplanner.team/stops/Bsomjon2"], ["https://tec.openplanner.team/stops/LOccarr3", "https://tec.openplanner.team/stops/LOcgdro4"], ["https://tec.openplanner.team/stops/Bwaypav2", "https://tec.openplanner.team/stops/Cwspavi1"], ["https://tec.openplanner.team/stops/N235agb", "https://tec.openplanner.team/stops/N241aca"], ["https://tec.openplanner.team/stops/H4co148b", "https://tec.openplanner.team/stops/H4mn100a"], ["https://tec.openplanner.team/stops/N562akb", "https://tec.openplanner.team/stops/N562ata"], ["https://tec.openplanner.team/stops/LFRgode1", "https://tec.openplanner.team/stops/LFRrohe1"], ["https://tec.openplanner.team/stops/Lhrjaur2", "https://tec.openplanner.team/stops/Lhrlamb2"], ["https://tec.openplanner.team/stops/X719afa", "https://tec.openplanner.team/stops/X719afb"], ["https://tec.openplanner.team/stops/Bbaldot1", "https://tec.openplanner.team/stops/Bbaltba1"], ["https://tec.openplanner.team/stops/Cfaecmo2", "https://tec.openplanner.team/stops/Cfapiro2"], ["https://tec.openplanner.team/stops/Bwatmbv2", "https://tec.openplanner.team/stops/Bwatpcs1"], ["https://tec.openplanner.team/stops/X793aca", "https://tec.openplanner.team/stops/X793ada"], ["https://tec.openplanner.team/stops/LDLbaye2", "https://tec.openplanner.team/stops/LDLbeau2"], ["https://tec.openplanner.team/stops/LcRkirc1", "https://tec.openplanner.team/stops/LwTzent2"], ["https://tec.openplanner.team/stops/N423acb", "https://tec.openplanner.team/stops/N424acb"], ["https://tec.openplanner.team/stops/H2hl113a", "https://tec.openplanner.team/stops/H2hp121a"], ["https://tec.openplanner.team/stops/LJvmale1", "https://tec.openplanner.team/stops/LJvmart1"], ["https://tec.openplanner.team/stops/H1mr123b", "https://tec.openplanner.team/stops/H1wi150b"], ["https://tec.openplanner.team/stops/Lhrcols1", "https://tec.openplanner.team/stops/Lvtpata1"], ["https://tec.openplanner.team/stops/Ljucano2", "https://tec.openplanner.team/stops/Ljuetie3"], ["https://tec.openplanner.team/stops/X786abb", "https://tec.openplanner.team/stops/X786aeb"], ["https://tec.openplanner.team/stops/LFrvesd1", "https://tec.openplanner.team/stops/LSHfief2"], ["https://tec.openplanner.team/stops/LVPcrok2", "https://tec.openplanner.team/stops/LVPgrot4"], ["https://tec.openplanner.team/stops/H4al100a", "https://tec.openplanner.team/stops/H4ch115a"], ["https://tec.openplanner.team/stops/LMHeg--1", "https://tec.openplanner.team/stops/LMHmeha2"], ["https://tec.openplanner.team/stops/LSOboeu1", "https://tec.openplanner.team/stops/LSOtrou2"], ["https://tec.openplanner.team/stops/Caccera1", "https://tec.openplanner.team/stops/Cbfchla2"], ["https://tec.openplanner.team/stops/LlgLAMB2", "https://tec.openplanner.team/stops/LlgLAMB7"], ["https://tec.openplanner.team/stops/LAncoup1", "https://tec.openplanner.team/stops/LVnroch1"], ["https://tec.openplanner.team/stops/H2mo125a", "https://tec.openplanner.team/stops/H2mo138b"], ["https://tec.openplanner.team/stops/X790aea", "https://tec.openplanner.team/stops/X790afa"], ["https://tec.openplanner.team/stops/H1au102a", "https://tec.openplanner.team/stops/H1el132b"], ["https://tec.openplanner.team/stops/LOljean1", "https://tec.openplanner.team/stops/LOmlime2"], ["https://tec.openplanner.team/stops/H1ht121b", "https://tec.openplanner.team/stops/H1ht131b"], ["https://tec.openplanner.team/stops/Bjdsbro2", "https://tec.openplanner.team/stops/Bjdssta1"], ["https://tec.openplanner.team/stops/H4ty285b", "https://tec.openplanner.team/stops/H4ty384b"], ["https://tec.openplanner.team/stops/N301abc", "https://tec.openplanner.team/stops/N301abd"], ["https://tec.openplanner.team/stops/N228aca", "https://tec.openplanner.team/stops/N228acb"], ["https://tec.openplanner.team/stops/X623aia", "https://tec.openplanner.team/stops/X623aib"], ["https://tec.openplanner.team/stops/Cmlbras1", "https://tec.openplanner.team/stops/Cmlhotv1"], ["https://tec.openplanner.team/stops/Blhueso2", "https://tec.openplanner.team/stops/Blhunys3"], ["https://tec.openplanner.team/stops/Cbfcham1", "https://tec.openplanner.team/stops/Cbfusin2"], ["https://tec.openplanner.team/stops/Cmomalg1", "https://tec.openplanner.team/stops/Cmomalg2"], ["https://tec.openplanner.team/stops/N508aea", "https://tec.openplanner.team/stops/N508aeb"], ["https://tec.openplanner.team/stops/Lflheid2", "https://tec.openplanner.team/stops/Lflprev1"], ["https://tec.openplanner.team/stops/H4tu170a", "https://tec.openplanner.team/stops/H4tu171a"], ["https://tec.openplanner.team/stops/N211aga", "https://tec.openplanner.team/stops/N212ahb"], ["https://tec.openplanner.team/stops/X602ama", "https://tec.openplanner.team/stops/X602ana"], ["https://tec.openplanner.team/stops/X398aab", "https://tec.openplanner.team/stops/X901amb"], ["https://tec.openplanner.team/stops/H1ho138a", "https://tec.openplanner.team/stops/H1wl124a"], ["https://tec.openplanner.team/stops/N562bmb", "https://tec.openplanner.team/stops/N562bra"], ["https://tec.openplanner.team/stops/X754aca", "https://tec.openplanner.team/stops/X754asb"], ["https://tec.openplanner.team/stops/Canh1941", "https://tec.openplanner.team/stops/Canh1942"], ["https://tec.openplanner.team/stops/Lhrhosp2", "https://tec.openplanner.team/stops/Lhrhurb2"], ["https://tec.openplanner.team/stops/N201afa", "https://tec.openplanner.team/stops/N201ata"], ["https://tec.openplanner.team/stops/N206abb", "https://tec.openplanner.team/stops/X206azb"], ["https://tec.openplanner.team/stops/X615aea", "https://tec.openplanner.team/stops/X615aja"], ["https://tec.openplanner.team/stops/X687aba", "https://tec.openplanner.team/stops/X688aba"], ["https://tec.openplanner.team/stops/LCIcent1", "https://tec.openplanner.team/stops/LVHcent2"], ["https://tec.openplanner.team/stops/X786aib", "https://tec.openplanner.team/stops/X788aaa"], ["https://tec.openplanner.team/stops/LCHrhou2", "https://tec.openplanner.team/stops/Ldicorb2"], ["https://tec.openplanner.team/stops/X715aga", "https://tec.openplanner.team/stops/X715amb"], ["https://tec.openplanner.team/stops/Bbsicas2", "https://tec.openplanner.team/stops/Bbsicul2"], ["https://tec.openplanner.team/stops/H2tr252b", "https://tec.openplanner.team/stops/H2tr257a"], ["https://tec.openplanner.team/stops/N545aba", "https://tec.openplanner.team/stops/N545abb"], ["https://tec.openplanner.team/stops/N522ana", "https://tec.openplanner.team/stops/N522apb"], ["https://tec.openplanner.team/stops/Ljhjeha*", "https://tec.openplanner.team/stops/LSUroyo1"], ["https://tec.openplanner.team/stops/LWAhart1", "https://tec.openplanner.team/stops/LWAmois2"], ["https://tec.openplanner.team/stops/N528agb", "https://tec.openplanner.team/stops/N528aia"], ["https://tec.openplanner.team/stops/H2bh105a", "https://tec.openplanner.team/stops/H2bh115b"], ["https://tec.openplanner.team/stops/Bfledpi2", "https://tec.openplanner.team/stops/Cflchel5"], ["https://tec.openplanner.team/stops/Bgerprg2", "https://tec.openplanner.team/stops/NB33aeb"], ["https://tec.openplanner.team/stops/Ccufos72", "https://tec.openplanner.team/stops/Ccupbro1"], ["https://tec.openplanner.team/stops/X723aga", "https://tec.openplanner.team/stops/X723agb"], ["https://tec.openplanner.team/stops/N517aea", "https://tec.openplanner.team/stops/N517afb"], ["https://tec.openplanner.team/stops/Bauddel1", "https://tec.openplanner.team/stops/Baudtri2"], ["https://tec.openplanner.team/stops/N571aca", "https://tec.openplanner.team/stops/N571acb"], ["https://tec.openplanner.team/stops/X314aaa", "https://tec.openplanner.team/stops/X359amb"], ["https://tec.openplanner.team/stops/LaM266-2", "https://tec.openplanner.team/stops/LaMmark2"], ["https://tec.openplanner.team/stops/Caujonc1", "https://tec.openplanner.team/stops/N534beb"], ["https://tec.openplanner.team/stops/LLStour1", "https://tec.openplanner.team/stops/LLStour2"], ["https://tec.openplanner.team/stops/Llgjoie3", "https://tec.openplanner.team/stops/Llgmont1"], ["https://tec.openplanner.team/stops/H1hr120a", "https://tec.openplanner.team/stops/H3so171a"], ["https://tec.openplanner.team/stops/H1bu143a", "https://tec.openplanner.team/stops/H1mg109b"], ["https://tec.openplanner.team/stops/N101alb", "https://tec.openplanner.team/stops/N101ara"], ["https://tec.openplanner.team/stops/N553aab", "https://tec.openplanner.team/stops/N553ama"], ["https://tec.openplanner.team/stops/Lmibove3", "https://tec.openplanner.team/stops/Lmibove4"], ["https://tec.openplanner.team/stops/N145aib", "https://tec.openplanner.team/stops/N145aja"], ["https://tec.openplanner.team/stops/H1ob339a", "https://tec.openplanner.team/stops/H1sd344b"], ["https://tec.openplanner.team/stops/N524aba", "https://tec.openplanner.team/stops/N524adb"], ["https://tec.openplanner.team/stops/LmDgeme1", "https://tec.openplanner.team/stops/LmDgeme2"], ["https://tec.openplanner.team/stops/X780agb", "https://tec.openplanner.team/stops/X780aha"], ["https://tec.openplanner.team/stops/LFMkrut3", "https://tec.openplanner.team/stops/LFMveur2"], ["https://tec.openplanner.team/stops/Bcsgcou2", "https://tec.openplanner.team/stops/Bmrsayw2"], ["https://tec.openplanner.team/stops/Blaneli1", "https://tec.openplanner.team/stops/LLasta-*"], ["https://tec.openplanner.team/stops/H1ba115a", "https://tec.openplanner.team/stops/H1ba120b"], ["https://tec.openplanner.team/stops/LSogare1", "https://tec.openplanner.team/stops/LSoprom2"], ["https://tec.openplanner.team/stops/LEScarr2", "https://tec.openplanner.team/stops/LESryon1"], ["https://tec.openplanner.team/stops/H5rx139a", "https://tec.openplanner.team/stops/H5rx140b"], ["https://tec.openplanner.team/stops/X639apa", "https://tec.openplanner.team/stops/X639ara"], ["https://tec.openplanner.team/stops/Cprlpre1", "https://tec.openplanner.team/stops/Cprsapv1"], ["https://tec.openplanner.team/stops/X940ada", "https://tec.openplanner.team/stops/X940adb"], ["https://tec.openplanner.team/stops/X947aba", "https://tec.openplanner.team/stops/X947abc"], ["https://tec.openplanner.team/stops/Cmachau1", "https://tec.openplanner.team/stops/Cmaplas3"], ["https://tec.openplanner.team/stops/LlNbene2", "https://tec.openplanner.team/stops/LlNkirc1"], ["https://tec.openplanner.team/stops/Bgoekaz2", "https://tec.openplanner.team/stops/Bgoestu2"], ["https://tec.openplanner.team/stops/X654ada", "https://tec.openplanner.team/stops/X654adb"], ["https://tec.openplanner.team/stops/H5at106a", "https://tec.openplanner.team/stops/H5at116d"], ["https://tec.openplanner.team/stops/N509aca", "https://tec.openplanner.team/stops/N511apa"], ["https://tec.openplanner.team/stops/Cgzdeve1", "https://tec.openplanner.team/stops/Cgzhour3"], ["https://tec.openplanner.team/stops/LBIbois1", "https://tec.openplanner.team/stops/LBIhann2"], ["https://tec.openplanner.team/stops/X663aea", "https://tec.openplanner.team/stops/X663agb"], ["https://tec.openplanner.team/stops/Llgdelc2", "https://tec.openplanner.team/stops/Llgnico5"], ["https://tec.openplanner.team/stops/X354afb", "https://tec.openplanner.team/stops/X354ahb"], ["https://tec.openplanner.team/stops/Cstcent1", "https://tec.openplanner.team/stops/Cstcent2"], ["https://tec.openplanner.team/stops/Llghesb1", "https://tec.openplanner.team/stops/Llgoeil1"], ["https://tec.openplanner.team/stops/Cchsud0", "https://tec.openplanner.team/stops/NC01aab"], ["https://tec.openplanner.team/stops/Ladpire2", "https://tec.openplanner.team/stops/Ladpire3"], ["https://tec.openplanner.team/stops/X910ahb", "https://tec.openplanner.team/stops/X910aia"], ["https://tec.openplanner.team/stops/X601bmb", "https://tec.openplanner.team/stops/X601bna"], ["https://tec.openplanner.team/stops/Bnivplt1", "https://tec.openplanner.team/stops/Bnivplt2"], ["https://tec.openplanner.team/stops/Ctrecol2", "https://tec.openplanner.team/stops/Ctrecol3"], ["https://tec.openplanner.team/stops/Bpiehvi1", "https://tec.openplanner.team/stops/Bpiehvi2"], ["https://tec.openplanner.team/stops/X614anb", "https://tec.openplanner.team/stops/X614aoa"], ["https://tec.openplanner.team/stops/H2ch103a", "https://tec.openplanner.team/stops/H2ch107a"], ["https://tec.openplanner.team/stops/LBEcroi2", "https://tec.openplanner.team/stops/LBEssab1"], ["https://tec.openplanner.team/stops/X923aea", "https://tec.openplanner.team/stops/X923ama"], ["https://tec.openplanner.team/stops/Lprmerc*", "https://tec.openplanner.team/stops/Lprthie1"], ["https://tec.openplanner.team/stops/H4wi161b", "https://tec.openplanner.team/stops/H4wi169b"], ["https://tec.openplanner.team/stops/H1wa140a", "https://tec.openplanner.team/stops/H1wa147a"], ["https://tec.openplanner.team/stops/NL77aga", "https://tec.openplanner.team/stops/NL79aaa"], ["https://tec.openplanner.team/stops/Bnivath2", "https://tec.openplanner.team/stops/Bnivfro1"], ["https://tec.openplanner.team/stops/Llgabat1", "https://tec.openplanner.team/stops/Llgabat2"], ["https://tec.openplanner.team/stops/Bsgihmo2", "https://tec.openplanner.team/stops/Bsgipmo1"], ["https://tec.openplanner.team/stops/Ccoacie1", "https://tec.openplanner.team/stops/Ccoacie2"], ["https://tec.openplanner.team/stops/Cgofleu3", "https://tec.openplanner.team/stops/CMchfl1"], ["https://tec.openplanner.team/stops/H2hp123d", "https://tec.openplanner.team/stops/H2pe156b"], ["https://tec.openplanner.team/stops/LnEkirc2", "https://tec.openplanner.team/stops/LnEmett2"], ["https://tec.openplanner.team/stops/H4ce101b", "https://tec.openplanner.team/stops/H4or113a"], ["https://tec.openplanner.team/stops/H1pw120b", "https://tec.openplanner.team/stops/H1wa144b"], ["https://tec.openplanner.team/stops/Bottgar3", "https://tec.openplanner.team/stops/Bottgar5"], ["https://tec.openplanner.team/stops/H1hh109b", "https://tec.openplanner.team/stops/H1hh115b"], ["https://tec.openplanner.team/stops/LLMjacq1", "https://tec.openplanner.team/stops/LThpoli2"], ["https://tec.openplanner.team/stops/Cmyfoym2", "https://tec.openplanner.team/stops/Cmywarc2"], ["https://tec.openplanner.team/stops/N557aac", "https://tec.openplanner.team/stops/N557aad"], ["https://tec.openplanner.team/stops/LHarenn2", "https://tec.openplanner.team/stops/LHaxhig2"], ["https://tec.openplanner.team/stops/X542aaa", "https://tec.openplanner.team/stops/X750bla"], ["https://tec.openplanner.team/stops/H1pa167b", "https://tec.openplanner.team/stops/H1qu108a"], ["https://tec.openplanner.team/stops/X775aaa", "https://tec.openplanner.team/stops/X953ada"], ["https://tec.openplanner.team/stops/X901anb", "https://tec.openplanner.team/stops/X901bna"], ["https://tec.openplanner.team/stops/H1mj129b", "https://tec.openplanner.team/stops/H1mj131a"], ["https://tec.openplanner.team/stops/Bsensab2", "https://tec.openplanner.team/stops/H2se109a"], ["https://tec.openplanner.team/stops/LVtchai2", "https://tec.openplanner.team/stops/LVtespo2"], ["https://tec.openplanner.team/stops/H4ag105a", "https://tec.openplanner.team/stops/H4cl114a"], ["https://tec.openplanner.team/stops/Bpecdel1", "https://tec.openplanner.team/stops/Bpecvme2"], ["https://tec.openplanner.team/stops/Chhegli1", "https://tec.openplanner.team/stops/Chhprai1"], ["https://tec.openplanner.team/stops/N160aea", "https://tec.openplanner.team/stops/N160afb"], ["https://tec.openplanner.team/stops/Lstchu-2", "https://tec.openplanner.team/stops/LTIecma1"], ["https://tec.openplanner.team/stops/H1wa152a", "https://tec.openplanner.team/stops/H1wa152b"], ["https://tec.openplanner.team/stops/LnIkirc1", "https://tec.openplanner.team/stops/LnIschw1"], ["https://tec.openplanner.team/stops/H2fa106a", "https://tec.openplanner.team/stops/H2mi123b"], ["https://tec.openplanner.team/stops/LHUalbe1", "https://tec.openplanner.team/stops/NL80afa"], ["https://tec.openplanner.team/stops/LhDkreu2", "https://tec.openplanner.team/stops/LhPheps1"], ["https://tec.openplanner.team/stops/H1hq158a", "https://tec.openplanner.team/stops/H1sy137a"], ["https://tec.openplanner.team/stops/Bclgapi2", "https://tec.openplanner.team/stops/Bdvmcsa1"], ["https://tec.openplanner.team/stops/N232aya", "https://tec.openplanner.team/stops/N232bjb"], ["https://tec.openplanner.team/stops/LOLrafh2", "https://tec.openplanner.team/stops/LSOferr6"], ["https://tec.openplanner.team/stops/LSssurl1", "https://tec.openplanner.team/stops/LSssurl2"], ["https://tec.openplanner.team/stops/X811acb", "https://tec.openplanner.team/stops/X811adb"], ["https://tec.openplanner.team/stops/X992aba", "https://tec.openplanner.team/stops/X992abb"], ["https://tec.openplanner.team/stops/H5st164b", "https://tec.openplanner.team/stops/H5st166a"], ["https://tec.openplanner.team/stops/Llgdart5", "https://tec.openplanner.team/stops/LlgguilE"], ["https://tec.openplanner.team/stops/X595aha", "https://tec.openplanner.team/stops/X796aia"], ["https://tec.openplanner.team/stops/X608asa", "https://tec.openplanner.team/stops/X621aea"], ["https://tec.openplanner.team/stops/H1hr120b", "https://tec.openplanner.team/stops/H1hr121a"], ["https://tec.openplanner.team/stops/N101aga", "https://tec.openplanner.team/stops/N101aia"], ["https://tec.openplanner.team/stops/Ljemabo1", "https://tec.openplanner.team/stops/Lmobrac1"], ["https://tec.openplanner.team/stops/LWAipes1", "https://tec.openplanner.team/stops/LWAipes2"], ["https://tec.openplanner.team/stops/LHcgare1", "https://tec.openplanner.team/stops/LSxeg--2"], ["https://tec.openplanner.team/stops/H1ho141b", "https://tec.openplanner.team/stops/H1wg127a"], ["https://tec.openplanner.team/stops/LOMcabi1", "https://tec.openplanner.team/stops/LOMcabi2"], ["https://tec.openplanner.team/stops/H1pe131a", "https://tec.openplanner.team/stops/H1vb141b"], ["https://tec.openplanner.team/stops/X801atb", "https://tec.openplanner.team/stops/X837aha"], ["https://tec.openplanner.team/stops/X886aca", "https://tec.openplanner.team/stops/X886afb"], ["https://tec.openplanner.team/stops/Cbfchla1", "https://tec.openplanner.team/stops/Cbfpauc2"], ["https://tec.openplanner.team/stops/LeYloos1", "https://tec.openplanner.team/stops/LrAbe602"], ["https://tec.openplanner.team/stops/Ctucomm1", "https://tec.openplanner.team/stops/NC28aha"], ["https://tec.openplanner.team/stops/Bgemfbo1", "https://tec.openplanner.team/stops/N522akb"], ["https://tec.openplanner.team/stops/LHMcruc1", "https://tec.openplanner.team/stops/LHMhof-1"], ["https://tec.openplanner.team/stops/LVNleco2", "https://tec.openplanner.team/stops/LVNroua2"], ["https://tec.openplanner.team/stops/LTIecma1", "https://tec.openplanner.team/stops/LTIsupe2"], ["https://tec.openplanner.team/stops/N123aab", "https://tec.openplanner.team/stops/N150aca"], ["https://tec.openplanner.team/stops/X639amb", "https://tec.openplanner.team/stops/X639aob"], ["https://tec.openplanner.team/stops/Lpegole4", "https://tec.openplanner.team/stops/LWecorn1"], ["https://tec.openplanner.team/stops/X601dea", "https://tec.openplanner.team/stops/X601dfa"], ["https://tec.openplanner.team/stops/Cchccom2", "https://tec.openplanner.team/stops/Cmtpaix2"], ["https://tec.openplanner.team/stops/N505aeb", "https://tec.openplanner.team/stops/N505aoa"], ["https://tec.openplanner.team/stops/Lhrcols1", "https://tec.openplanner.team/stops/Lhrvert1"], ["https://tec.openplanner.team/stops/LAwec--2", "https://tec.openplanner.team/stops/LHrchat1"], ["https://tec.openplanner.team/stops/Cciecol1", "https://tec.openplanner.team/stops/Ccinali2"], ["https://tec.openplanner.team/stops/LAYambl1", "https://tec.openplanner.team/stops/LAYgare1"], ["https://tec.openplanner.team/stops/LLTcoop1", "https://tec.openplanner.team/stops/LLTtour2"], ["https://tec.openplanner.team/stops/H4ch118a", "https://tec.openplanner.team/stops/H4ch120d"], ["https://tec.openplanner.team/stops/LSPmart1", "https://tec.openplanner.team/stops/LWMchpl2"], ["https://tec.openplanner.team/stops/LBpcren2", "https://tec.openplanner.team/stops/LBpecco3"], ["https://tec.openplanner.team/stops/X358aca", "https://tec.openplanner.team/stops/X991aaa"], ["https://tec.openplanner.team/stops/H4ty322b", "https://tec.openplanner.team/stops/H4ty322d"], ["https://tec.openplanner.team/stops/X750ata", "https://tec.openplanner.team/stops/X750aub"], ["https://tec.openplanner.team/stops/LWecarr1", "https://tec.openplanner.team/stops/LWelogi2"], ["https://tec.openplanner.team/stops/X991afa", "https://tec.openplanner.team/stops/X991ala"], ["https://tec.openplanner.team/stops/Cjubien2", "https://tec.openplanner.team/stops/Cjuspin2"], ["https://tec.openplanner.team/stops/N503ada", "https://tec.openplanner.team/stops/N503alb"], ["https://tec.openplanner.team/stops/LJAchat1", "https://tec.openplanner.team/stops/LJAwerf1"], ["https://tec.openplanner.team/stops/X948agb", "https://tec.openplanner.team/stops/X948aha"], ["https://tec.openplanner.team/stops/X818aga", "https://tec.openplanner.team/stops/X820acb"], ["https://tec.openplanner.team/stops/LeUkabe2", "https://tec.openplanner.team/stops/LeUrote2"], ["https://tec.openplanner.team/stops/H1ch100a", "https://tec.openplanner.team/stops/H1ch100b"], ["https://tec.openplanner.team/stops/N533aia", "https://tec.openplanner.team/stops/N533aib"], ["https://tec.openplanner.team/stops/H4co146a", "https://tec.openplanner.team/stops/H4co158a"], ["https://tec.openplanner.team/stops/LWDsott1", "https://tec.openplanner.team/stops/LWDsott4"], ["https://tec.openplanner.team/stops/N517ada", "https://tec.openplanner.team/stops/N517aeb"], ["https://tec.openplanner.team/stops/N501gab", "https://tec.openplanner.team/stops/N501zaa"], ["https://tec.openplanner.team/stops/N557acb", "https://tec.openplanner.team/stops/N558ajb"], ["https://tec.openplanner.team/stops/LSIespe2", "https://tec.openplanner.team/stops/LSIgehe1"], ["https://tec.openplanner.team/stops/Cjudewe1", "https://tec.openplanner.team/stops/Cjuecho2"], ["https://tec.openplanner.team/stops/X657aga", "https://tec.openplanner.team/stops/X657ahb"], ["https://tec.openplanner.team/stops/Ccpsecp1", "https://tec.openplanner.team/stops/H2ch121b"], ["https://tec.openplanner.team/stops/X575agb", "https://tec.openplanner.team/stops/X575ahb"], ["https://tec.openplanner.team/stops/H1bb113b", "https://tec.openplanner.team/stops/H1ho123b"], ["https://tec.openplanner.team/stops/Crspana1", "https://tec.openplanner.team/stops/Crspana3"], ["https://tec.openplanner.team/stops/LmR90--1", "https://tec.openplanner.team/stops/LsHfrie1"], ["https://tec.openplanner.team/stops/X659aca", "https://tec.openplanner.team/stops/X659ada"], ["https://tec.openplanner.team/stops/Bjodcdt1", "https://tec.openplanner.team/stops/NR10aca"], ["https://tec.openplanner.team/stops/N244aja", "https://tec.openplanner.team/stops/N244ajb"], ["https://tec.openplanner.team/stops/Llgbavr1", "https://tec.openplanner.team/stops/Llgcmes1"], ["https://tec.openplanner.team/stops/Bgemfbo2", "https://tec.openplanner.team/stops/Bgemrom4"], ["https://tec.openplanner.team/stops/N515apb", "https://tec.openplanner.team/stops/N515aqd"], ["https://tec.openplanner.team/stops/Ccypetv1", "https://tec.openplanner.team/stops/Cvlcalv2"], ["https://tec.openplanner.team/stops/Bbwacol1", "https://tec.openplanner.team/stops/Bwavlon2"], ["https://tec.openplanner.team/stops/N104adb", "https://tec.openplanner.team/stops/N106agb"], ["https://tec.openplanner.team/stops/LBGroma1", "https://tec.openplanner.team/stops/LPUmang1"], ["https://tec.openplanner.team/stops/X897aoa", "https://tec.openplanner.team/stops/X897aob"], ["https://tec.openplanner.team/stops/X940acb", "https://tec.openplanner.team/stops/X940ada"], ["https://tec.openplanner.team/stops/Blimrof1", "https://tec.openplanner.team/stops/Brixbai2"], ["https://tec.openplanner.team/stops/N516aqa", "https://tec.openplanner.team/stops/N516aqb"], ["https://tec.openplanner.team/stops/H4bo116a", "https://tec.openplanner.team/stops/H4bo120a"], ["https://tec.openplanner.team/stops/Bvircen2", "https://tec.openplanner.team/stops/Bvirmav1"], ["https://tec.openplanner.team/stops/X892adb", "https://tec.openplanner.team/stops/X892aeb"], ["https://tec.openplanner.team/stops/N501dtc", "https://tec.openplanner.team/stops/N501jsb"], ["https://tec.openplanner.team/stops/H4he102b", "https://tec.openplanner.team/stops/H4pq118a"], ["https://tec.openplanner.team/stops/Lpeflec1", "https://tec.openplanner.team/stops/Lpefler1"], ["https://tec.openplanner.team/stops/N559acb", "https://tec.openplanner.team/stops/NL77aab"], ["https://tec.openplanner.team/stops/N106ara", "https://tec.openplanner.team/stops/N106arb"], ["https://tec.openplanner.team/stops/LHNcreh2", "https://tec.openplanner.team/stops/NL37aca"], ["https://tec.openplanner.team/stops/Btubcal2", "https://tec.openplanner.team/stops/Btubsam1"], ["https://tec.openplanner.team/stops/X750ara", "https://tec.openplanner.team/stops/X750aub"], ["https://tec.openplanner.team/stops/Cflhano1", "https://tec.openplanner.team/stops/NC23aab"], ["https://tec.openplanner.team/stops/H4cr110a", "https://tec.openplanner.team/stops/H4pp123a"], ["https://tec.openplanner.team/stops/LTPabat1", "https://tec.openplanner.team/stops/LTPabat2"], ["https://tec.openplanner.team/stops/LROhaie1", "https://tec.openplanner.team/stops/LROhaie2"], ["https://tec.openplanner.team/stops/LMAfali2", "https://tec.openplanner.team/stops/LMAroch4"], ["https://tec.openplanner.team/stops/H1fl139a", "https://tec.openplanner.team/stops/H1je221b"], ["https://tec.openplanner.team/stops/LmRmuhl1", "https://tec.openplanner.team/stops/LsHfrie1"], ["https://tec.openplanner.team/stops/LHgtomb1", "https://tec.openplanner.team/stops/LHgtomb2"], ["https://tec.openplanner.team/stops/H4ir163c", "https://tec.openplanner.team/stops/H5at129b"], ["https://tec.openplanner.team/stops/LTamoul2", "https://tec.openplanner.team/stops/LTaxhos2"], ["https://tec.openplanner.team/stops/X718ada", "https://tec.openplanner.team/stops/X718ajb"], ["https://tec.openplanner.team/stops/Bsaubbo2", "https://tec.openplanner.team/stops/Bwspm372"], ["https://tec.openplanner.team/stops/LPRmc--1", "https://tec.openplanner.team/stops/LPRmc--2"], ["https://tec.openplanner.team/stops/LTHturo1", "https://tec.openplanner.team/stops/LTHturo4"], ["https://tec.openplanner.team/stops/H1bi104a", "https://tec.openplanner.team/stops/H1sa113a"], ["https://tec.openplanner.team/stops/LPLaube1", "https://tec.openplanner.team/stops/LPLhest1"], ["https://tec.openplanner.team/stops/X736aab", "https://tec.openplanner.team/stops/X736agb"], ["https://tec.openplanner.team/stops/LMsalen1", "https://tec.openplanner.team/stops/LMsheid1"], ["https://tec.openplanner.team/stops/H1hv136a", "https://tec.openplanner.team/stops/H1mk109a"], ["https://tec.openplanner.team/stops/N501ihy", "https://tec.openplanner.team/stops/N501mkb"], ["https://tec.openplanner.team/stops/LFmgeno2", "https://tec.openplanner.team/stops/LMObouh2"], ["https://tec.openplanner.team/stops/H1eq117a", "https://tec.openplanner.team/stops/H1fy121a"], ["https://tec.openplanner.team/stops/H4ru236b", "https://tec.openplanner.team/stops/H4ru246a"], ["https://tec.openplanner.team/stops/H1at110c", "https://tec.openplanner.team/stops/H1fy142a"], ["https://tec.openplanner.team/stops/LCUmora1", "https://tec.openplanner.team/stops/LEnvill1"], ["https://tec.openplanner.team/stops/H4jm116b", "https://tec.openplanner.team/stops/H4we137a"], ["https://tec.openplanner.team/stops/LCEec--1", "https://tec.openplanner.team/stops/LCEec--2"], ["https://tec.openplanner.team/stops/Bblaece1", "https://tec.openplanner.team/stops/Bblapri2"], ["https://tec.openplanner.team/stops/LWAmouh2", "https://tec.openplanner.team/stops/LWAwila1"], ["https://tec.openplanner.team/stops/LHMa2322", "https://tec.openplanner.team/stops/LRmmabr1"], ["https://tec.openplanner.team/stops/Bbxltou1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/Barqhro2", "https://tec.openplanner.team/stops/Barqpwa2"], ["https://tec.openplanner.team/stops/H1ch132b", "https://tec.openplanner.team/stops/H4to133b"], ["https://tec.openplanner.team/stops/X982aba", "https://tec.openplanner.team/stops/X982abb"], ["https://tec.openplanner.team/stops/H2bh112a", "https://tec.openplanner.team/stops/H2ll194a"], ["https://tec.openplanner.team/stops/LrAberg2", "https://tec.openplanner.team/stops/LrApley2"], ["https://tec.openplanner.team/stops/X638aib", "https://tec.openplanner.team/stops/X638amb"], ["https://tec.openplanner.team/stops/X775ama", "https://tec.openplanner.team/stops/X775ana"], ["https://tec.openplanner.team/stops/N226aaa", "https://tec.openplanner.team/stops/N338aga"], ["https://tec.openplanner.team/stops/Chhverr1", "https://tec.openplanner.team/stops/Chhverr2"], ["https://tec.openplanner.team/stops/H2ha141b", "https://tec.openplanner.team/stops/H2ha141c"], ["https://tec.openplanner.team/stops/H1al106a", "https://tec.openplanner.team/stops/H1al107b"], ["https://tec.openplanner.team/stops/X397aac", "https://tec.openplanner.team/stops/X397abb"], ["https://tec.openplanner.team/stops/LDaeg--1", "https://tec.openplanner.team/stops/LLYtir-1"], ["https://tec.openplanner.team/stops/N573aia", "https://tec.openplanner.team/stops/N573ama"], ["https://tec.openplanner.team/stops/N501mya", "https://tec.openplanner.team/stops/N527acb"], ["https://tec.openplanner.team/stops/N551alb", "https://tec.openplanner.team/stops/N577aca"], ["https://tec.openplanner.team/stops/Bbsifml2", "https://tec.openplanner.team/stops/Bnivjli1"], ["https://tec.openplanner.team/stops/X811aqb", "https://tec.openplanner.team/stops/X812bga"], ["https://tec.openplanner.team/stops/Bllnfla3", "https://tec.openplanner.team/stops/Bllnrge2"], ["https://tec.openplanner.team/stops/H1as102b", "https://tec.openplanner.team/stops/H1hg180a"], ["https://tec.openplanner.team/stops/Cbzfrom2", "https://tec.openplanner.team/stops/H2lu100d"], ["https://tec.openplanner.team/stops/N153aaa", "https://tec.openplanner.team/stops/N153afa"], ["https://tec.openplanner.team/stops/X886abb", "https://tec.openplanner.team/stops/X886acb"], ["https://tec.openplanner.team/stops/LGogare2", "https://tec.openplanner.team/stops/LNEcite1"], ["https://tec.openplanner.team/stops/X615ada", "https://tec.openplanner.team/stops/X615aha"], ["https://tec.openplanner.team/stops/H4my122b", "https://tec.openplanner.team/stops/H4vz369b"], ["https://tec.openplanner.team/stops/Bvxgpro2", "https://tec.openplanner.team/stops/Cglbras1"], ["https://tec.openplanner.team/stops/X890acb", "https://tec.openplanner.team/stops/X890ada"], ["https://tec.openplanner.team/stops/N245aaa", "https://tec.openplanner.team/stops/N248acb"], ["https://tec.openplanner.team/stops/Lsekubo1", "https://tec.openplanner.team/stops/Lsekubo3"], ["https://tec.openplanner.team/stops/LmNelis2", "https://tec.openplanner.team/stops/LmNpost2"], ["https://tec.openplanner.team/stops/LVParal2", "https://tec.openplanner.team/stops/LVPeg--1"], ["https://tec.openplanner.team/stops/LHUathe1", "https://tec.openplanner.team/stops/LHUec--1"], ["https://tec.openplanner.team/stops/X652acd", "https://tec.openplanner.team/stops/X652ada"], ["https://tec.openplanner.team/stops/X756ahb", "https://tec.openplanner.team/stops/X756aia"], ["https://tec.openplanner.team/stops/Ltheg--2", "https://tec.openplanner.team/stops/Lthgros2"], ["https://tec.openplanner.team/stops/LHMbach1", "https://tec.openplanner.team/stops/LHMec--2"], ["https://tec.openplanner.team/stops/Blhugar1", "https://tec.openplanner.team/stops/Blhulor1"], ["https://tec.openplanner.team/stops/X782aaa", "https://tec.openplanner.team/stops/X782aab"], ["https://tec.openplanner.team/stops/Llgwiar2", "https://tec.openplanner.team/stops/Llgwiar4"], ["https://tec.openplanner.team/stops/LeUdepo1", "https://tec.openplanner.team/stops/LeUgb--1"], ["https://tec.openplanner.team/stops/Bwavcar1", "https://tec.openplanner.team/stops/Bwavlep1"], ["https://tec.openplanner.team/stops/Cbwcab1", "https://tec.openplanner.team/stops/Cmgcabi1"], ["https://tec.openplanner.team/stops/Bchapir2", "https://tec.openplanner.team/stops/Bhvltol2"], ["https://tec.openplanner.team/stops/LSTec--1", "https://tec.openplanner.team/stops/LSTgran1"], ["https://tec.openplanner.team/stops/LJAferm1", "https://tec.openplanner.team/stops/LJAferm2"], ["https://tec.openplanner.team/stops/Bbounci2", "https://tec.openplanner.team/stops/Bcercab1"], ["https://tec.openplanner.team/stops/Bbstdpa2", "https://tec.openplanner.team/stops/Bbststa2"], ["https://tec.openplanner.team/stops/N501hja", "https://tec.openplanner.team/stops/N501hla"], ["https://tec.openplanner.team/stops/X802afb", "https://tec.openplanner.team/stops/X818aia"], ["https://tec.openplanner.team/stops/H1be101a", "https://tec.openplanner.team/stops/H1be101b"], ["https://tec.openplanner.team/stops/X998aaa", "https://tec.openplanner.team/stops/X999ama"], ["https://tec.openplanner.team/stops/X943afb", "https://tec.openplanner.team/stops/X943aga"], ["https://tec.openplanner.team/stops/Lengran1", "https://tec.openplanner.team/stops/Lenhouc2"], ["https://tec.openplanner.team/stops/X622aab", "https://tec.openplanner.team/stops/X622aca"], ["https://tec.openplanner.team/stops/X777aca", "https://tec.openplanner.team/stops/X777acb"], ["https://tec.openplanner.team/stops/Lmapomm1", "https://tec.openplanner.team/stops/Lmapomm2"], ["https://tec.openplanner.team/stops/Cmlbevu2", "https://tec.openplanner.team/stops/Cmlvitf1"], ["https://tec.openplanner.team/stops/Bronfou1", "https://tec.openplanner.team/stops/Bvirflu1"], ["https://tec.openplanner.team/stops/N503aka", "https://tec.openplanner.team/stops/N511afa"], ["https://tec.openplanner.team/stops/Cmmheur1", "https://tec.openplanner.team/stops/Cmygbbo3"], ["https://tec.openplanner.team/stops/LREairp1", "https://tec.openplanner.team/stops/LREgare1"], ["https://tec.openplanner.team/stops/LkTdorf1", "https://tec.openplanner.team/stops/LkTlibe1"], ["https://tec.openplanner.team/stops/H2gy105a", "https://tec.openplanner.team/stops/H2gy107a"], ["https://tec.openplanner.team/stops/X908aka", "https://tec.openplanner.team/stops/X911ara"], ["https://tec.openplanner.team/stops/H1ms252c", "https://tec.openplanner.team/stops/H1ms252d"], ["https://tec.openplanner.team/stops/Bboncfv1", "https://tec.openplanner.team/stops/Bboncgs1"], ["https://tec.openplanner.team/stops/H4wp152a", "https://tec.openplanner.team/stops/H4wp152b"], ["https://tec.openplanner.team/stops/LrUbrac3", "https://tec.openplanner.team/stops/LrUbrac4"], ["https://tec.openplanner.team/stops/X759adb", "https://tec.openplanner.team/stops/X759aea"], ["https://tec.openplanner.team/stops/N232bfb", "https://tec.openplanner.team/stops/N232bwb"], ["https://tec.openplanner.team/stops/N390aca", "https://tec.openplanner.team/stops/X390akb"], ["https://tec.openplanner.team/stops/LFAbouc2", "https://tec.openplanner.team/stops/LLTfall1"], ["https://tec.openplanner.team/stops/LAMhopi1", "https://tec.openplanner.team/stops/LAMhopi3"], ["https://tec.openplanner.team/stops/H4ve133b", "https://tec.openplanner.team/stops/H4ve137b"], ["https://tec.openplanner.team/stops/H1le119a", "https://tec.openplanner.team/stops/H1le125b"], ["https://tec.openplanner.team/stops/X937ajb", "https://tec.openplanner.team/stops/X952adb"], ["https://tec.openplanner.team/stops/LWRbomb4", "https://tec.openplanner.team/stops/LWRgare2"], ["https://tec.openplanner.team/stops/X789aca", "https://tec.openplanner.team/stops/X789afa"], ["https://tec.openplanner.team/stops/Lpecime2", "https://tec.openplanner.team/stops/Lpemata2"], ["https://tec.openplanner.team/stops/H1fl139b", "https://tec.openplanner.team/stops/H1fl370a"], ["https://tec.openplanner.team/stops/H1mv243a", "https://tec.openplanner.team/stops/H1mv243b"], ["https://tec.openplanner.team/stops/X639akb", "https://tec.openplanner.team/stops/X639akd"], ["https://tec.openplanner.team/stops/Lghvold1", "https://tec.openplanner.team/stops/Ljerouy2"], ["https://tec.openplanner.team/stops/Ccugrtr1", "https://tec.openplanner.team/stops/Ccutail2"], ["https://tec.openplanner.team/stops/X773aib", "https://tec.openplanner.team/stops/X954acb"], ["https://tec.openplanner.team/stops/X730aeb", "https://tec.openplanner.team/stops/X730afa"], ["https://tec.openplanner.team/stops/X774acb", "https://tec.openplanner.team/stops/X775aaa"], ["https://tec.openplanner.team/stops/Bgzdcen1", "https://tec.openplanner.team/stops/Bgzdcen2"], ["https://tec.openplanner.team/stops/Bcrncce2", "https://tec.openplanner.team/stops/Bsomjon2"], ["https://tec.openplanner.team/stops/Lagfour1", "https://tec.openplanner.team/stops/Llgcond1"], ["https://tec.openplanner.team/stops/LNAbass2", "https://tec.openplanner.team/stops/LRRoser2"], ["https://tec.openplanner.team/stops/H5pe137a", "https://tec.openplanner.team/stops/H5pe175a"], ["https://tec.openplanner.team/stops/X872abb", "https://tec.openplanner.team/stops/X872acb"], ["https://tec.openplanner.team/stops/H2mo146a", "https://tec.openplanner.team/stops/H2mo146b"], ["https://tec.openplanner.team/stops/LsVbs--*", "https://tec.openplanner.team/stops/LsVgesc2"], ["https://tec.openplanner.team/stops/LVLf37-1", "https://tec.openplanner.team/stops/LVLgotr3"], ["https://tec.openplanner.team/stops/H2hg149b", "https://tec.openplanner.team/stops/H2mi122a"], ["https://tec.openplanner.team/stops/X731aea", "https://tec.openplanner.team/stops/X731aeb"], ["https://tec.openplanner.team/stops/LWeatel2", "https://tec.openplanner.team/stops/LWeec--2"], ["https://tec.openplanner.team/stops/H2ll173a", "https://tec.openplanner.team/stops/H2ll173b"], ["https://tec.openplanner.team/stops/N508aoa", "https://tec.openplanner.team/stops/N508aob"], ["https://tec.openplanner.team/stops/Cgobruy1", "https://tec.openplanner.team/stops/Cgobruy2"], ["https://tec.openplanner.team/stops/LBOec--1", "https://tec.openplanner.team/stops/LBOholt2"], ["https://tec.openplanner.team/stops/X901baa", "https://tec.openplanner.team/stops/X901bca"], ["https://tec.openplanner.team/stops/X723aaa", "https://tec.openplanner.team/stops/X724afb"], ["https://tec.openplanner.team/stops/LeUbael2", "https://tec.openplanner.team/stops/LeUgeme2"], ["https://tec.openplanner.team/stops/H1wa154b", "https://tec.openplanner.team/stops/H1wg124a"], ["https://tec.openplanner.team/stops/H1fr124a", "https://tec.openplanner.team/stops/H1fr127a"], ["https://tec.openplanner.team/stops/H4ka195a", "https://tec.openplanner.team/stops/H4ob124a"], ["https://tec.openplanner.team/stops/X669agd", "https://tec.openplanner.team/stops/X669ahb"], ["https://tec.openplanner.team/stops/Cptplac3", "https://tec.openplanner.team/stops/Cptplac5"], ["https://tec.openplanner.team/stops/Lagindu1", "https://tec.openplanner.team/stops/Lstchas2"], ["https://tec.openplanner.team/stops/Baegegl1", "https://tec.openplanner.team/stops/Bramrdf2"], ["https://tec.openplanner.team/stops/H4va232b", "https://tec.openplanner.team/stops/H4va234a"], ["https://tec.openplanner.team/stops/H1hh112b", "https://tec.openplanner.team/stops/H1hh118b"], ["https://tec.openplanner.team/stops/X614aia", "https://tec.openplanner.team/stops/X623aha"], ["https://tec.openplanner.team/stops/X741aid", "https://tec.openplanner.team/stops/X741ajc"], ["https://tec.openplanner.team/stops/X727aea", "https://tec.openplanner.team/stops/X748aea"], ["https://tec.openplanner.team/stops/LAnfall1", "https://tec.openplanner.team/stops/LHdfays2"], ["https://tec.openplanner.team/stops/Ccucorb1", "https://tec.openplanner.team/stops/Cgyruis1"], ["https://tec.openplanner.team/stops/X658ada", "https://tec.openplanner.team/stops/X659ala"], ["https://tec.openplanner.team/stops/Cgoobse1", "https://tec.openplanner.team/stops/Cjucar02"], ["https://tec.openplanner.team/stops/Cfanoci1", "https://tec.openplanner.team/stops/Cfanoci2"], ["https://tec.openplanner.team/stops/Cmgpthi1", "https://tec.openplanner.team/stops/Csecroi2"], ["https://tec.openplanner.team/stops/Bmlngch2", "https://tec.openplanner.team/stops/Bsrgcur1"], ["https://tec.openplanner.team/stops/Cctstro1", "https://tec.openplanner.team/stops/Cctstro3"], ["https://tec.openplanner.team/stops/Cramadi2", "https://tec.openplanner.team/stops/Cravign3"], ["https://tec.openplanner.team/stops/Cgrbert2", "https://tec.openplanner.team/stops/NC14agb"], ["https://tec.openplanner.team/stops/N209anb", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/Bgrmfga1", "https://tec.openplanner.team/stops/Bgrmpsn1"], ["https://tec.openplanner.team/stops/Cbcha652", "https://tec.openplanner.team/stops/H1lo119a"], ["https://tec.openplanner.team/stops/Cgyobse1", "https://tec.openplanner.team/stops/Cgystjo3"], ["https://tec.openplanner.team/stops/Lsebelv2", "https://tec.openplanner.team/stops/Lsehcoc1"], ["https://tec.openplanner.team/stops/LXhhaka2", "https://tec.openplanner.team/stops/LXhnouv1"], ["https://tec.openplanner.team/stops/H5pe134a", "https://tec.openplanner.team/stops/H5pe152b"], ["https://tec.openplanner.team/stops/N550aca", "https://tec.openplanner.team/stops/N550acb"], ["https://tec.openplanner.team/stops/LrAknop1", "https://tec.openplanner.team/stops/LrAneus3"], ["https://tec.openplanner.team/stops/N203aba", "https://tec.openplanner.team/stops/N203aca"], ["https://tec.openplanner.team/stops/LAmcorn1", "https://tec.openplanner.team/stops/LAmcorn2"], ["https://tec.openplanner.team/stops/Ljubods1", "https://tec.openplanner.team/stops/Ljuchaf2"], ["https://tec.openplanner.team/stops/Ljemake2", "https://tec.openplanner.team/stops/Ljerouy1"], ["https://tec.openplanner.team/stops/X802acb", "https://tec.openplanner.team/stops/X802apb"], ["https://tec.openplanner.team/stops/N537aca", "https://tec.openplanner.team/stops/N537acb"], ["https://tec.openplanner.team/stops/H1qu105a", "https://tec.openplanner.team/stops/H1qu105b"], ["https://tec.openplanner.team/stops/N538ata", "https://tec.openplanner.team/stops/N538atd"], ["https://tec.openplanner.team/stops/X902axa", "https://tec.openplanner.team/stops/X902baa"], ["https://tec.openplanner.team/stops/X661abb", "https://tec.openplanner.team/stops/X661aoa"], ["https://tec.openplanner.team/stops/N501avb", "https://tec.openplanner.team/stops/N501awb"], ["https://tec.openplanner.team/stops/Lghsimo1", "https://tec.openplanner.team/stops/Lghsimo2"], ["https://tec.openplanner.team/stops/H5qu149b", "https://tec.openplanner.team/stops/H5qu156d"], ["https://tec.openplanner.team/stops/N110aha", "https://tec.openplanner.team/stops/N125aac"], ["https://tec.openplanner.team/stops/X908aab", "https://tec.openplanner.team/stops/X955aca"], ["https://tec.openplanner.team/stops/LBVclig1", "https://tec.openplanner.team/stops/LBVzand4"], ["https://tec.openplanner.team/stops/N501gib", "https://tec.openplanner.team/stops/N501giz"], ["https://tec.openplanner.team/stops/LSSfont1", "https://tec.openplanner.team/stops/LSSfont2"], ["https://tec.openplanner.team/stops/Cctfaub1", "https://tec.openplanner.team/stops/Cctjoue4"], ["https://tec.openplanner.team/stops/Lghcoqs1", "https://tec.openplanner.team/stops/Lghprea2"], ["https://tec.openplanner.team/stops/LROcham1", "https://tec.openplanner.team/stops/LROmorf2"], ["https://tec.openplanner.team/stops/NH01aod", "https://tec.openplanner.team/stops/NH01ara"], ["https://tec.openplanner.team/stops/H1ne138b", "https://tec.openplanner.team/stops/H1ne142a"], ["https://tec.openplanner.team/stops/X994aia", "https://tec.openplanner.team/stops/X994aja"], ["https://tec.openplanner.team/stops/LaMadam1", "https://tec.openplanner.team/stops/LmI82--2"], ["https://tec.openplanner.team/stops/N506ara", "https://tec.openplanner.team/stops/N506ava"], ["https://tec.openplanner.team/stops/N501kmb", "https://tec.openplanner.team/stops/N501kmy"], ["https://tec.openplanner.team/stops/N556aeb", "https://tec.openplanner.team/stops/N557adb"], ["https://tec.openplanner.team/stops/Cgymara1", "https://tec.openplanner.team/stops/CMmarab1"], ["https://tec.openplanner.team/stops/X760aca", "https://tec.openplanner.team/stops/X788aeb"], ["https://tec.openplanner.team/stops/Cgysarr2", "https://tec.openplanner.team/stops/Craappa1"], ["https://tec.openplanner.team/stops/H1ms269a", "https://tec.openplanner.team/stops/H1ms275a"], ["https://tec.openplanner.team/stops/Lghgros1", "https://tec.openplanner.team/stops/Lghmaha2"], ["https://tec.openplanner.team/stops/X661aqa", "https://tec.openplanner.team/stops/X661aqb"], ["https://tec.openplanner.team/stops/Bwavbpi1", "https://tec.openplanner.team/stops/Bwavbpi2"], ["https://tec.openplanner.team/stops/Bwatcoc1", "https://tec.openplanner.team/stops/Bwatmsj2"], ["https://tec.openplanner.team/stops/X718aca", "https://tec.openplanner.team/stops/X718ada"], ["https://tec.openplanner.team/stops/H2le149a", "https://tec.openplanner.team/stops/H2le149b"], ["https://tec.openplanner.team/stops/H4de112b", "https://tec.openplanner.team/stops/H4ss156b"], ["https://tec.openplanner.team/stops/Cchmont2", "https://tec.openplanner.team/stops/Cchpala2"], ["https://tec.openplanner.team/stops/LSpfond2", "https://tec.openplanner.team/stops/LSpshin2"], ["https://tec.openplanner.team/stops/LLbbons2", "https://tec.openplanner.team/stops/LPtchpl2"], ["https://tec.openplanner.team/stops/LOucuve1", "https://tec.openplanner.team/stops/LOumaro2"], ["https://tec.openplanner.team/stops/LSXvill1", "https://tec.openplanner.team/stops/LTHroch1"], ["https://tec.openplanner.team/stops/X744aba", "https://tec.openplanner.team/stops/X744acb"], ["https://tec.openplanner.team/stops/X948anb", "https://tec.openplanner.team/stops/X948aob"], ["https://tec.openplanner.team/stops/Bwavbmo2", "https://tec.openplanner.team/stops/Bwavnam1"], ["https://tec.openplanner.team/stops/Ltibure1", "https://tec.openplanner.team/stops/Ltibure4"], ["https://tec.openplanner.team/stops/LLEgare1", "https://tec.openplanner.team/stops/LSMgare1"], ["https://tec.openplanner.team/stops/LPUalbe2", "https://tec.openplanner.team/stops/LPUmer-1"], ["https://tec.openplanner.team/stops/N576aca", "https://tec.openplanner.team/stops/N576aea"], ["https://tec.openplanner.team/stops/LCPconf1", "https://tec.openplanner.team/stops/LMttrou2"], ["https://tec.openplanner.team/stops/LRccent2", "https://tec.openplanner.team/stops/LRchaie2"], ["https://tec.openplanner.team/stops/H4pe126b", "https://tec.openplanner.team/stops/H4pe128b"], ["https://tec.openplanner.team/stops/Lgrfass2", "https://tec.openplanner.team/stops/Lgrtomb2"], ["https://tec.openplanner.team/stops/H1hr126a", "https://tec.openplanner.team/stops/H1hr127a"], ["https://tec.openplanner.team/stops/X614adb", "https://tec.openplanner.team/stops/X614azb"], ["https://tec.openplanner.team/stops/Cchdelf1", "https://tec.openplanner.team/stops/Cchdelf2"], ["https://tec.openplanner.team/stops/Bwatgge1", "https://tec.openplanner.team/stops/Bwatric2"], ["https://tec.openplanner.team/stops/LOccarr3", "https://tec.openplanner.team/stops/LTecent4"], ["https://tec.openplanner.team/stops/LiV19--1", "https://tec.openplanner.team/stops/LiVkreu1"], ["https://tec.openplanner.team/stops/H1he109a", "https://tec.openplanner.team/stops/H1he109b"], ["https://tec.openplanner.team/stops/Cselait1", "https://tec.openplanner.team/stops/Cvtmaro2"], ["https://tec.openplanner.team/stops/LAOeg--1", "https://tec.openplanner.team/stops/LAOeg--2"], ["https://tec.openplanner.team/stops/N503ala", "https://tec.openplanner.team/stops/N503alb"], ["https://tec.openplanner.team/stops/X942aba", "https://tec.openplanner.team/stops/X942abd"], ["https://tec.openplanner.team/stops/H1og131a", "https://tec.openplanner.team/stops/H1og131b"], ["https://tec.openplanner.team/stops/Bgoegma2", "https://tec.openplanner.team/stops/Boplcsj3"], ["https://tec.openplanner.team/stops/Bezebru2", "https://tec.openplanner.team/stops/Bezeksj1"], ["https://tec.openplanner.team/stops/H2hg150a", "https://tec.openplanner.team/stops/H3lr108a"], ["https://tec.openplanner.team/stops/NH01aaa", "https://tec.openplanner.team/stops/NH01ajb"], ["https://tec.openplanner.team/stops/X666ahb", "https://tec.openplanner.team/stops/X666aib"], ["https://tec.openplanner.team/stops/X654aja", "https://tec.openplanner.team/stops/X654alb"], ["https://tec.openplanner.team/stops/N287aba", "https://tec.openplanner.team/stops/N287abb"], ["https://tec.openplanner.team/stops/N349abb", "https://tec.openplanner.team/stops/N349agb"], ["https://tec.openplanner.team/stops/X824afb", "https://tec.openplanner.team/stops/X824ahb"], ["https://tec.openplanner.team/stops/N577aja", "https://tec.openplanner.team/stops/N577akb"], ["https://tec.openplanner.team/stops/LPLheid1", "https://tec.openplanner.team/stops/LPLphar1"], ["https://tec.openplanner.team/stops/Cfovent2", "https://tec.openplanner.team/stops/Cfowall1"], ["https://tec.openplanner.team/stops/Cmyjaci2", "https://tec.openplanner.team/stops/Cmymarb2"], ["https://tec.openplanner.team/stops/LSSvill1", "https://tec.openplanner.team/stops/LSSvill4"], ["https://tec.openplanner.team/stops/N501nbb", "https://tec.openplanner.team/stops/N501nca"], ["https://tec.openplanner.team/stops/N535ada", "https://tec.openplanner.team/stops/N535amb"], ["https://tec.openplanner.team/stops/LATcorn2", "https://tec.openplanner.team/stops/LATmals2"], ["https://tec.openplanner.team/stops/X902aja", "https://tec.openplanner.team/stops/X902ajb"], ["https://tec.openplanner.team/stops/H2hp118b", "https://tec.openplanner.team/stops/H2hp121a"], ["https://tec.openplanner.team/stops/LBStec-2", "https://tec.openplanner.team/stops/LBSvi521"], ["https://tec.openplanner.team/stops/Ctmmath2", "https://tec.openplanner.team/stops/Ctmmonu1"], ["https://tec.openplanner.team/stops/X601cda", "https://tec.openplanner.team/stops/X601cdb"], ["https://tec.openplanner.team/stops/LGorysa2", "https://tec.openplanner.team/stops/LNEbois1"], ["https://tec.openplanner.team/stops/N548aka", "https://tec.openplanner.team/stops/N548akb"], ["https://tec.openplanner.team/stops/LaAmise1", "https://tec.openplanner.team/stops/LaAseba1"], ["https://tec.openplanner.team/stops/LHuherm1", "https://tec.openplanner.team/stops/LHuherm2"], ["https://tec.openplanner.team/stops/LArchap1", "https://tec.openplanner.team/stops/LArmeni1"], ["https://tec.openplanner.team/stops/H5st168a", "https://tec.openplanner.team/stops/H5st168b"], ["https://tec.openplanner.team/stops/Cmerued1", "https://tec.openplanner.team/stops/Cmewaya2"], ["https://tec.openplanner.team/stops/LBJlieg2", "https://tec.openplanner.team/stops/LMAcite2"], ["https://tec.openplanner.team/stops/Bitrmon1", "https://tec.openplanner.team/stops/Bitrmon2"], ["https://tec.openplanner.team/stops/LSseg--2", "https://tec.openplanner.team/stops/N506bsb"], ["https://tec.openplanner.team/stops/N116aca", "https://tec.openplanner.team/stops/N116acb"], ["https://tec.openplanner.team/stops/Clfmonu2", "https://tec.openplanner.team/stops/Clfmonu3"], ["https://tec.openplanner.team/stops/H4bc106a", "https://tec.openplanner.team/stops/H4bc106b"], ["https://tec.openplanner.team/stops/X664aqa", "https://tec.openplanner.team/stops/X664aqb"], ["https://tec.openplanner.team/stops/N501eba", "https://tec.openplanner.team/stops/N501ebb"], ["https://tec.openplanner.team/stops/X601cka", "https://tec.openplanner.team/stops/X601cla"], ["https://tec.openplanner.team/stops/Llgrass1", "https://tec.openplanner.team/stops/Llgrass2"], ["https://tec.openplanner.team/stops/Bwatdmo1", "https://tec.openplanner.team/stops/Bwatlbs2"], ["https://tec.openplanner.team/stops/N224aba", "https://tec.openplanner.team/stops/N224agc"], ["https://tec.openplanner.team/stops/H4hn115a", "https://tec.openplanner.team/stops/H4lp122a"], ["https://tec.openplanner.team/stops/Cvlbvir2", "https://tec.openplanner.team/stops/Cvlpeau2"], ["https://tec.openplanner.team/stops/Csabrun1", "https://tec.openplanner.team/stops/Cvpbifu1"], ["https://tec.openplanner.team/stops/H4ml208b", "https://tec.openplanner.team/stops/H4tg262a"], ["https://tec.openplanner.team/stops/H4an107b", "https://tec.openplanner.team/stops/H4ve140a"], ["https://tec.openplanner.team/stops/H1gr120a", "https://tec.openplanner.team/stops/H1gr120b"], ["https://tec.openplanner.team/stops/LAWchpl1", "https://tec.openplanner.team/stops/LFOchpl2"], ["https://tec.openplanner.team/stops/X805aea", "https://tec.openplanner.team/stops/X805ahb"], ["https://tec.openplanner.team/stops/LNCspor2", "https://tec.openplanner.team/stops/LRRchen2"], ["https://tec.openplanner.team/stops/N244aab", "https://tec.openplanner.team/stops/N244awa"], ["https://tec.openplanner.team/stops/X941acb", "https://tec.openplanner.team/stops/X941acd"], ["https://tec.openplanner.team/stops/LHmferm1", "https://tec.openplanner.team/stops/LLocruc1"], ["https://tec.openplanner.team/stops/LVAwolf1", "https://tec.openplanner.team/stops/LVAwolf2"], ["https://tec.openplanner.team/stops/H1hc125b", "https://tec.openplanner.team/stops/H1po137a"], ["https://tec.openplanner.team/stops/N874aca", "https://tec.openplanner.team/stops/N874aeb"], ["https://tec.openplanner.team/stops/LSZchpl1", "https://tec.openplanner.team/stops/LSZptwa1"], ["https://tec.openplanner.team/stops/X602aea", "https://tec.openplanner.team/stops/X602aga"], ["https://tec.openplanner.team/stops/Cacgare2", "https://tec.openplanner.team/stops/NC44aaa"], ["https://tec.openplanner.team/stops/Cmqbasv2", "https://tec.openplanner.team/stops/Cmqn5912"], ["https://tec.openplanner.team/stops/H4ty314d", "https://tec.openplanner.team/stops/H4ty354a"], ["https://tec.openplanner.team/stops/N501nea", "https://tec.openplanner.team/stops/N501nez"], ["https://tec.openplanner.team/stops/Benggar1", "https://tec.openplanner.team/stops/Bptemch1"], ["https://tec.openplanner.team/stops/Ctapn1", "https://tec.openplanner.team/stops/Ctapn2"], ["https://tec.openplanner.team/stops/Lpegole1", "https://tec.openplanner.team/stops/LWecorn1"], ["https://tec.openplanner.team/stops/N501cna", "https://tec.openplanner.team/stops/N501eob"], ["https://tec.openplanner.team/stops/X659awb", "https://tec.openplanner.team/stops/X659bab"], ["https://tec.openplanner.team/stops/NL77ada", "https://tec.openplanner.team/stops/NL77adb"], ["https://tec.openplanner.team/stops/Cgyaudu2", "https://tec.openplanner.team/stops/Cgystjo4"], ["https://tec.openplanner.team/stops/Lagrask1", "https://tec.openplanner.team/stops/Lemjoba2"], ["https://tec.openplanner.team/stops/N562aka", "https://tec.openplanner.team/stops/N562asa"], ["https://tec.openplanner.team/stops/LBOande2", "https://tec.openplanner.team/stops/LBWfusi1"], ["https://tec.openplanner.team/stops/H4ty282b", "https://tec.openplanner.team/stops/H4ty338a"], ["https://tec.openplanner.team/stops/Balsnay1", "https://tec.openplanner.team/stops/Balsnay2"], ["https://tec.openplanner.team/stops/H1bu143b", "https://tec.openplanner.team/stops/H1mg109b"], ["https://tec.openplanner.team/stops/H2sb221a", "https://tec.openplanner.team/stops/H2sb223a"], ["https://tec.openplanner.team/stops/Ccogrha2", "https://tec.openplanner.team/stops/Ccotrie2"], ["https://tec.openplanner.team/stops/LHgeg--2", "https://tec.openplanner.team/stops/LOMdodi2"], ["https://tec.openplanner.team/stops/LBEssab1", "https://tec.openplanner.team/stops/LBEssab2"], ["https://tec.openplanner.team/stops/Cmlhaie2", "https://tec.openplanner.team/stops/Cmlvxmo2"], ["https://tec.openplanner.team/stops/H1cr100a", "https://tec.openplanner.team/stops/H1hl127b"], ["https://tec.openplanner.team/stops/N521adb", "https://tec.openplanner.team/stops/N521afb"], ["https://tec.openplanner.team/stops/H4mo137b", "https://tec.openplanner.team/stops/H4mo187a"], ["https://tec.openplanner.team/stops/X714adb", "https://tec.openplanner.team/stops/X715ajb"], ["https://tec.openplanner.team/stops/N501lxa", "https://tec.openplanner.team/stops/N501mjc"], ["https://tec.openplanner.team/stops/H1as100a", "https://tec.openplanner.team/stops/H1hg178a"], ["https://tec.openplanner.team/stops/Bgembsg2", "https://tec.openplanner.team/stops/N522bvg"], ["https://tec.openplanner.team/stops/LHEvign2", "https://tec.openplanner.team/stops/LJOferm1"], ["https://tec.openplanner.team/stops/NL76aea", "https://tec.openplanner.team/stops/NL76ara"], ["https://tec.openplanner.team/stops/X949afa", "https://tec.openplanner.team/stops/X949agb"], ["https://tec.openplanner.team/stops/N517adb", "https://tec.openplanner.team/stops/N517agb"], ["https://tec.openplanner.team/stops/X721aha", "https://tec.openplanner.team/stops/X721ajb"], ["https://tec.openplanner.team/stops/N106ada", "https://tec.openplanner.team/stops/N106aqa"], ["https://tec.openplanner.team/stops/Lbrlama2", "https://tec.openplanner.team/stops/Lgrcour2"], ["https://tec.openplanner.team/stops/H5at142a", "https://tec.openplanner.team/stops/H5at142b"], ["https://tec.openplanner.team/stops/N149aaa", "https://tec.openplanner.team/stops/N149aib"], ["https://tec.openplanner.team/stops/Cchorle1", "https://tec.openplanner.team/stops/Cchrmon4"], ["https://tec.openplanner.team/stops/X802aka", "https://tec.openplanner.team/stops/X802aoa"], ["https://tec.openplanner.team/stops/LPOleli1", "https://tec.openplanner.team/stops/LPOpass2"], ["https://tec.openplanner.team/stops/LBDtill1", "https://tec.openplanner.team/stops/LJEniho1"], ["https://tec.openplanner.team/stops/Cmlange2", "https://tec.openplanner.team/stops/Cmldeto2"], ["https://tec.openplanner.team/stops/X939aba", "https://tec.openplanner.team/stops/X939aca"], ["https://tec.openplanner.team/stops/N228aba", "https://tec.openplanner.team/stops/N228aca"], ["https://tec.openplanner.team/stops/LROandr1", "https://tec.openplanner.team/stops/LSoeg--1"], ["https://tec.openplanner.team/stops/X717aga", "https://tec.openplanner.team/stops/X717agf"], ["https://tec.openplanner.team/stops/Bptbbie1", "https://tec.openplanner.team/stops/Bptbmco2"], ["https://tec.openplanner.team/stops/X762aea", "https://tec.openplanner.team/stops/X762afb"], ["https://tec.openplanner.team/stops/Llglefe1", "https://tec.openplanner.team/stops/Llgpire2"], ["https://tec.openplanner.team/stops/Cbmzoni1", "https://tec.openplanner.team/stops/H1tt106a"], ["https://tec.openplanner.team/stops/N357abb", "https://tec.openplanner.team/stops/N383aaa"], ["https://tec.openplanner.team/stops/LBVcent1", "https://tec.openplanner.team/stops/LBVplan1"], ["https://tec.openplanner.team/stops/X901acb", "https://tec.openplanner.team/stops/X901aha"], ["https://tec.openplanner.team/stops/Llgbruy2", "https://tec.openplanner.team/stops/Llgmont2"], ["https://tec.openplanner.team/stops/Canresi2", "https://tec.openplanner.team/stops/H2an104a"], ["https://tec.openplanner.team/stops/X713aaa", "https://tec.openplanner.team/stops/X713aca"], ["https://tec.openplanner.team/stops/Lfhchaf1", "https://tec.openplanner.team/stops/Lfhchaf4"], ["https://tec.openplanner.team/stops/Bbsgbos1", "https://tec.openplanner.team/stops/Bbsgbos3"], ["https://tec.openplanner.team/stops/X796aab", "https://tec.openplanner.team/stops/X986acb"], ["https://tec.openplanner.team/stops/Cgzfarc1", "https://tec.openplanner.team/stops/Cgzha622"], ["https://tec.openplanner.team/stops/N135bfa", "https://tec.openplanner.team/stops/N135bhb"], ["https://tec.openplanner.team/stops/LOcalbe2", "https://tec.openplanner.team/stops/LTechpl2"], ["https://tec.openplanner.team/stops/X921ahb", "https://tec.openplanner.team/stops/X921ajb"], ["https://tec.openplanner.team/stops/LFPkape2", "https://tec.openplanner.team/stops/LFPkape4"], ["https://tec.openplanner.team/stops/X999aba", "https://tec.openplanner.team/stops/X999ada"], ["https://tec.openplanner.team/stops/Bvxgeta1", "https://tec.openplanner.team/stops/Cglbras1"], ["https://tec.openplanner.team/stops/X614ada", "https://tec.openplanner.team/stops/X614adb"], ["https://tec.openplanner.team/stops/Bmoufil1", "https://tec.openplanner.team/stops/Bmoufil2"], ["https://tec.openplanner.team/stops/H1te182a", "https://tec.openplanner.team/stops/H1te185b"], ["https://tec.openplanner.team/stops/X602anb", "https://tec.openplanner.team/stops/X602apa"], ["https://tec.openplanner.team/stops/N585ahb", "https://tec.openplanner.team/stops/N585aja"], ["https://tec.openplanner.team/stops/Bsgebou2", "https://tec.openplanner.team/stops/Bvilpar2"], ["https://tec.openplanner.team/stops/CMtirou2", "https://tec.openplanner.team/stops/NC01ahb"], ["https://tec.openplanner.team/stops/LAx17--2", "https://tec.openplanner.team/stops/LFsphar2"], ["https://tec.openplanner.team/stops/LAo170-1", "https://tec.openplanner.team/stops/LTPnoup1"], ["https://tec.openplanner.team/stops/H1bb115a", "https://tec.openplanner.team/stops/H1bo107b"], ["https://tec.openplanner.team/stops/X637agb", "https://tec.openplanner.team/stops/X637aja"], ["https://tec.openplanner.team/stops/Lghleon1", "https://tec.openplanner.team/stops/Lmlpech1"], ["https://tec.openplanner.team/stops/LAuchau1", "https://tec.openplanner.team/stops/LSDheus1"], ["https://tec.openplanner.team/stops/N501dwb", "https://tec.openplanner.team/stops/N501kha"], ["https://tec.openplanner.team/stops/Blhuone1", "https://tec.openplanner.team/stops/Blhupqu1"], ["https://tec.openplanner.team/stops/N118aca", "https://tec.openplanner.team/stops/N118acb"], ["https://tec.openplanner.team/stops/Lsnlhon1", "https://tec.openplanner.team/stops/Lsnmala4"], ["https://tec.openplanner.team/stops/N521aob", "https://tec.openplanner.team/stops/N525afb"], ["https://tec.openplanner.team/stops/LBUchpl2", "https://tec.openplanner.team/stops/LBUrout2"], ["https://tec.openplanner.team/stops/X991aja", "https://tec.openplanner.team/stops/X991alb"], ["https://tec.openplanner.team/stops/Cprbevu1", "https://tec.openplanner.team/stops/Cprcalv1"], ["https://tec.openplanner.team/stops/N538aca", "https://tec.openplanner.team/stops/N538alb"], ["https://tec.openplanner.team/stops/H1ho138b", "https://tec.openplanner.team/stops/H1wl124a"], ["https://tec.openplanner.team/stops/Bdvmcsa1", "https://tec.openplanner.team/stops/Bdvmsar2"], ["https://tec.openplanner.team/stops/Cthoues1", "https://tec.openplanner.team/stops/Cthvbas1"], ["https://tec.openplanner.team/stops/X952agb", "https://tec.openplanner.team/stops/X952aib"], ["https://tec.openplanner.team/stops/Cbiseur1", "https://tec.openplanner.team/stops/Ctucamb2"], ["https://tec.openplanner.team/stops/X919ajb", "https://tec.openplanner.team/stops/X919aka"], ["https://tec.openplanner.team/stops/X836aca", "https://tec.openplanner.team/stops/X836aja"], ["https://tec.openplanner.team/stops/X633ajc", "https://tec.openplanner.team/stops/X654aab"], ["https://tec.openplanner.team/stops/N540aca", "https://tec.openplanner.team/stops/N540acb"], ["https://tec.openplanner.team/stops/Cfrgare1", "https://tec.openplanner.team/stops/Cfrgare2"], ["https://tec.openplanner.team/stops/LWZponb2", "https://tec.openplanner.team/stops/LWZponh1"], ["https://tec.openplanner.team/stops/N132ada", "https://tec.openplanner.team/stops/N132aeb"], ["https://tec.openplanner.team/stops/N349aea", "https://tec.openplanner.team/stops/N349aeb"], ["https://tec.openplanner.team/stops/N535amc", "https://tec.openplanner.team/stops/N564aab"], ["https://tec.openplanner.team/stops/X887aaa", "https://tec.openplanner.team/stops/X891aaa"], ["https://tec.openplanner.team/stops/N425aba", "https://tec.openplanner.team/stops/N425ahb"], ["https://tec.openplanner.team/stops/LMheg--1", "https://tec.openplanner.team/stops/Lprceri1"], ["https://tec.openplanner.team/stops/LOLbout1", "https://tec.openplanner.team/stops/LXHadam2"], ["https://tec.openplanner.team/stops/Ccunvus1", "https://tec.openplanner.team/stops/Ccutrav5"], ["https://tec.openplanner.team/stops/H1wl121a", "https://tec.openplanner.team/stops/H1wl121b"], ["https://tec.openplanner.team/stops/H1pa104a", "https://tec.openplanner.team/stops/H1pa104b"], ["https://tec.openplanner.team/stops/N329aaa", "https://tec.openplanner.team/stops/N329aab"], ["https://tec.openplanner.team/stops/LOrchau2", "https://tec.openplanner.team/stops/LOrpont2"], ["https://tec.openplanner.team/stops/NL72aba", "https://tec.openplanner.team/stops/NL76adb"], ["https://tec.openplanner.team/stops/Cgualno1", "https://tec.openplanner.team/stops/Chhclde2"], ["https://tec.openplanner.team/stops/LeUmoor1", "https://tec.openplanner.team/stops/LeUrote2"], ["https://tec.openplanner.team/stops/X757akb", "https://tec.openplanner.team/stops/X779abb"], ["https://tec.openplanner.team/stops/Cmlcons1", "https://tec.openplanner.team/stops/Cmlmatc2"], ["https://tec.openplanner.team/stops/Chpfoli3", "https://tec.openplanner.team/stops/Cracime2"], ["https://tec.openplanner.team/stops/N512aua", "https://tec.openplanner.team/stops/N512avb"], ["https://tec.openplanner.team/stops/NL74abb", "https://tec.openplanner.team/stops/NL74aea"], ["https://tec.openplanner.team/stops/Cctmari1", "https://tec.openplanner.team/stops/NC11ahb"], ["https://tec.openplanner.team/stops/X770aea", "https://tec.openplanner.team/stops/X770afb"], ["https://tec.openplanner.team/stops/Bottcbp1", "https://tec.openplanner.team/stops/Bottcbp2"], ["https://tec.openplanner.team/stops/X307acb", "https://tec.openplanner.team/stops/X307adb"], ["https://tec.openplanner.team/stops/N536apa", "https://tec.openplanner.team/stops/N563ana"], ["https://tec.openplanner.team/stops/H1lb154b", "https://tec.openplanner.team/stops/H1qu108a"], ["https://tec.openplanner.team/stops/LaAronh1", "https://tec.openplanner.team/stops/LaAronh2"], ["https://tec.openplanner.team/stops/H4gu109b", "https://tec.openplanner.team/stops/H4we134a"], ["https://tec.openplanner.team/stops/X738acb", "https://tec.openplanner.team/stops/X754aqa"], ["https://tec.openplanner.team/stops/X725afg", "https://tec.openplanner.team/stops/X725aoa"], ["https://tec.openplanner.team/stops/Cfmcoro1", "https://tec.openplanner.team/stops/Cfmcoro2"], ["https://tec.openplanner.team/stops/X750bea", "https://tec.openplanner.team/stops/X750beb"], ["https://tec.openplanner.team/stops/LeUath%C3%A41", "https://tec.openplanner.team/stops/LeUnopr1"], ["https://tec.openplanner.team/stops/H1br120a", "https://tec.openplanner.team/stops/H2tr253a"], ["https://tec.openplanner.team/stops/X801ajb", "https://tec.openplanner.team/stops/X801cka"], ["https://tec.openplanner.team/stops/N113abb", "https://tec.openplanner.team/stops/N113aga"], ["https://tec.openplanner.team/stops/Cmamonu2", "https://tec.openplanner.team/stops/Cmastma2"], ["https://tec.openplanner.team/stops/N205acb", "https://tec.openplanner.team/stops/N205ada"], ["https://tec.openplanner.team/stops/Lemlacr2", "https://tec.openplanner.team/stops/Lemsely2"], ["https://tec.openplanner.team/stops/N207acb", "https://tec.openplanner.team/stops/X206azb"], ["https://tec.openplanner.team/stops/H1ht122a", "https://tec.openplanner.team/stops/H1ht129a"], ["https://tec.openplanner.team/stops/Cmmcarr2", "https://tec.openplanner.team/stops/Cmmceri1"], ["https://tec.openplanner.team/stops/H1mk109b", "https://tec.openplanner.team/stops/H1mk111b"], ["https://tec.openplanner.team/stops/Lsmdepo1", "https://tec.openplanner.team/stops/Lvepoud1"], ["https://tec.openplanner.team/stops/X696aha", "https://tec.openplanner.team/stops/X696aia"], ["https://tec.openplanner.team/stops/Lannico1", "https://tec.openplanner.team/stops/Lannico2"], ["https://tec.openplanner.team/stops/H1pa100a", "https://tec.openplanner.team/stops/H1pa103a"], ["https://tec.openplanner.team/stops/LhMwing2", "https://tec.openplanner.team/stops/LsCbrau1"], ["https://tec.openplanner.team/stops/Lpejonc1", "https://tec.openplanner.team/stops/Lpejonc2"], ["https://tec.openplanner.team/stops/LSeaque1", "https://tec.openplanner.team/stops/LSecomm2"], ["https://tec.openplanner.team/stops/N232aia", "https://tec.openplanner.team/stops/N232aib"], ["https://tec.openplanner.team/stops/Lseconc1", "https://tec.openplanner.team/stops/Lseconc2"], ["https://tec.openplanner.team/stops/H5rx113a", "https://tec.openplanner.team/stops/H5rx147a"], ["https://tec.openplanner.team/stops/LELchap2", "https://tec.openplanner.team/stops/LHCponc4"], ["https://tec.openplanner.team/stops/NL75aba", "https://tec.openplanner.team/stops/NL75abb"], ["https://tec.openplanner.team/stops/H4ga152a", "https://tec.openplanner.team/stops/H4ga169a"], ["https://tec.openplanner.team/stops/LwTkabi1", "https://tec.openplanner.team/stops/LwTkabi2"], ["https://tec.openplanner.team/stops/Lmnfawe1", "https://tec.openplanner.team/stops/Lmnfawe2"], ["https://tec.openplanner.team/stops/LmHburg1", "https://tec.openplanner.team/stops/LmHschm2"], ["https://tec.openplanner.team/stops/Bsencen2", "https://tec.openplanner.team/stops/H2se110a"], ["https://tec.openplanner.team/stops/X831aba", "https://tec.openplanner.team/stops/X833acb"], ["https://tec.openplanner.team/stops/H4mo165a", "https://tec.openplanner.team/stops/H4mo165b"], ["https://tec.openplanner.team/stops/X758abb", "https://tec.openplanner.team/stops/X758agb"], ["https://tec.openplanner.team/stops/N517aba", "https://tec.openplanner.team/stops/N517adc"], ["https://tec.openplanner.team/stops/LMalamb4", "https://tec.openplanner.team/stops/LMawilh4"], ["https://tec.openplanner.team/stops/LAxbott1", "https://tec.openplanner.team/stops/Lhemilm2"], ["https://tec.openplanner.team/stops/Lveecol1", "https://tec.openplanner.team/stops/Lvehv--4"], ["https://tec.openplanner.team/stops/Cplbbro1", "https://tec.openplanner.team/stops/NC11ama"], ["https://tec.openplanner.team/stops/X397aba", "https://tec.openplanner.team/stops/X901bta"], ["https://tec.openplanner.team/stops/H4wt160a", "https://tec.openplanner.team/stops/H4wt160b"], ["https://tec.openplanner.team/stops/Lheaaz-2", "https://tec.openplanner.team/stops/Lheente2"], ["https://tec.openplanner.team/stops/X601bjb", "https://tec.openplanner.team/stops/X662aob"], ["https://tec.openplanner.team/stops/Bborche2", "https://tec.openplanner.team/stops/Bhtihau1"], ["https://tec.openplanner.team/stops/LFychpl1", "https://tec.openplanner.team/stops/LON21--2"], ["https://tec.openplanner.team/stops/X608aqa", "https://tec.openplanner.team/stops/X621aea"], ["https://tec.openplanner.team/stops/Lagboil1", "https://tec.openplanner.team/stops/Lkiecol1"], ["https://tec.openplanner.team/stops/Lalexpa2", "https://tec.openplanner.team/stops/Lalmakr1"], ["https://tec.openplanner.team/stops/N501jha", "https://tec.openplanner.team/stops/N501jpa"], ["https://tec.openplanner.team/stops/X950ada", "https://tec.openplanner.team/stops/X950adb"], ["https://tec.openplanner.team/stops/LESflag1", "https://tec.openplanner.team/stops/LPOchan2"], ["https://tec.openplanner.team/stops/LSPec--2", "https://tec.openplanner.team/stops/LSPptch2"], ["https://tec.openplanner.team/stops/NC44aca", "https://tec.openplanner.team/stops/NC44acb"], ["https://tec.openplanner.team/stops/X801aza", "https://tec.openplanner.team/stops/X801cja"], ["https://tec.openplanner.team/stops/H4my121b", "https://tec.openplanner.team/stops/H4my123a"], ["https://tec.openplanner.team/stops/X601bnb", "https://tec.openplanner.team/stops/X601dga"], ["https://tec.openplanner.team/stops/N166aba", "https://tec.openplanner.team/stops/N569afa"], ["https://tec.openplanner.team/stops/LETeg--2", "https://tec.openplanner.team/stops/LETsaiv2"], ["https://tec.openplanner.team/stops/N211ada", "https://tec.openplanner.team/stops/N211awb"], ["https://tec.openplanner.team/stops/N211aha", "https://tec.openplanner.team/stops/N211baa"], ["https://tec.openplanner.team/stops/N204aja", "https://tec.openplanner.team/stops/N205abb"], ["https://tec.openplanner.team/stops/X758aia", "https://tec.openplanner.team/stops/X758aja"], ["https://tec.openplanner.team/stops/LThbatt2", "https://tec.openplanner.team/stops/LThsere1"], ["https://tec.openplanner.team/stops/N218ada", "https://tec.openplanner.team/stops/N218adb"], ["https://tec.openplanner.team/stops/Bbgever1", "https://tec.openplanner.team/stops/Bwavzno2"], ["https://tec.openplanner.team/stops/N218acb", "https://tec.openplanner.team/stops/N218acc"], ["https://tec.openplanner.team/stops/Bplncsd2", "https://tec.openplanner.team/stops/Bplnfpa2"], ["https://tec.openplanner.team/stops/LGLobor2", "https://tec.openplanner.team/stops/LGLspor2"], ["https://tec.openplanner.team/stops/H2sv215b", "https://tec.openplanner.team/stops/H2tr246a"], ["https://tec.openplanner.team/stops/Bpercsp1", "https://tec.openplanner.team/stops/Bpermon4"], ["https://tec.openplanner.team/stops/LwYkreu1", "https://tec.openplanner.team/stops/LwYkreu3"], ["https://tec.openplanner.team/stops/LCTgare3", "https://tec.openplanner.team/stops/LGmhumb1"], ["https://tec.openplanner.team/stops/Lvtathe2", "https://tec.openplanner.team/stops/Lvtcime1"], ["https://tec.openplanner.team/stops/H1br122b", "https://tec.openplanner.team/stops/H1ev114b"], ["https://tec.openplanner.team/stops/Lmodeni2", "https://tec.openplanner.team/stops/Lsnfoot2"], ["https://tec.openplanner.team/stops/N501ajb", "https://tec.openplanner.team/stops/N501hsz"], ["https://tec.openplanner.team/stops/Lceleje2", "https://tec.openplanner.team/stops/Lcelhon3"], ["https://tec.openplanner.team/stops/H1fr123a", "https://tec.openplanner.team/stops/H1fr152a"], ["https://tec.openplanner.team/stops/LSfcoll*", "https://tec.openplanner.team/stops/LXoroch2"], ["https://tec.openplanner.team/stops/LBWbatt2", "https://tec.openplanner.team/stops/LBWeg--3"], ["https://tec.openplanner.team/stops/X946adb", "https://tec.openplanner.team/stops/X946afb"], ["https://tec.openplanner.team/stops/LnEfrie2", "https://tec.openplanner.team/stops/LoEbach2"], ["https://tec.openplanner.team/stops/N501ckb", "https://tec.openplanner.team/stops/N501ckz"], ["https://tec.openplanner.team/stops/N501bsa", "https://tec.openplanner.team/stops/N501bxb"], ["https://tec.openplanner.team/stops/N501hra", "https://tec.openplanner.team/stops/N501hya"], ["https://tec.openplanner.team/stops/H2bh106b", "https://tec.openplanner.team/stops/H2bh114a"], ["https://tec.openplanner.team/stops/LBSchpl2", "https://tec.openplanner.team/stops/LEMgren*"], ["https://tec.openplanner.team/stops/H4ga155b", "https://tec.openplanner.team/stops/H4ga169a"], ["https://tec.openplanner.team/stops/Bohnr731", "https://tec.openplanner.team/stops/Bohnr732"], ["https://tec.openplanner.team/stops/NL76afb", "https://tec.openplanner.team/stops/NL76agb"], ["https://tec.openplanner.team/stops/LSCc39-1", "https://tec.openplanner.team/stops/LSCeg--4"], ["https://tec.openplanner.team/stops/H4ty326a", "https://tec.openplanner.team/stops/H4wc373a"], ["https://tec.openplanner.team/stops/N248abb", "https://tec.openplanner.team/stops/N248ada"], ["https://tec.openplanner.team/stops/H1fv101b", "https://tec.openplanner.team/stops/H1fv103a"], ["https://tec.openplanner.team/stops/N232ata", "https://tec.openplanner.team/stops/N232bab"], ["https://tec.openplanner.team/stops/H5qu152a", "https://tec.openplanner.team/stops/H5qu156d"], ["https://tec.openplanner.team/stops/Bpermon4", "https://tec.openplanner.team/stops/Bperrsr1"], ["https://tec.openplanner.team/stops/X660aga", "https://tec.openplanner.team/stops/X741akb"], ["https://tec.openplanner.team/stops/N501ena", "https://tec.openplanner.team/stops/N501mvd"], ["https://tec.openplanner.team/stops/LWOcour2", "https://tec.openplanner.team/stops/LWOmart1"], ["https://tec.openplanner.team/stops/X892agb", "https://tec.openplanner.team/stops/X892ajb"], ["https://tec.openplanner.team/stops/H1hw123b", "https://tec.openplanner.team/stops/H1hw125b"], ["https://tec.openplanner.team/stops/H4ob108a", "https://tec.openplanner.team/stops/H4ob110b"], ["https://tec.openplanner.team/stops/LLWpier2", "https://tec.openplanner.team/stops/LVBdela1"], ["https://tec.openplanner.team/stops/LOljean2", "https://tec.openplanner.team/stops/LOltill2"], ["https://tec.openplanner.team/stops/H1ba101a", "https://tec.openplanner.team/stops/H1ba106b"], ["https://tec.openplanner.team/stops/X661ata", "https://tec.openplanner.team/stops/X661bba"], ["https://tec.openplanner.team/stops/Bcrnncb2", "https://tec.openplanner.team/stops/Bcrnnra2"], ["https://tec.openplanner.team/stops/X808afa", "https://tec.openplanner.team/stops/X834aca"], ["https://tec.openplanner.team/stops/Lfhweri1", "https://tec.openplanner.team/stops/Ljedepa2"], ["https://tec.openplanner.team/stops/N557ada", "https://tec.openplanner.team/stops/N557aga"], ["https://tec.openplanner.team/stops/N874aga", "https://tec.openplanner.team/stops/N874agb"], ["https://tec.openplanner.team/stops/N556ada", "https://tec.openplanner.team/stops/N556adb"], ["https://tec.openplanner.team/stops/X793aja", "https://tec.openplanner.team/stops/X793akb"], ["https://tec.openplanner.team/stops/Blincoo1", "https://tec.openplanner.team/stops/Blincoo2"], ["https://tec.openplanner.team/stops/Cfcgar2", "https://tec.openplanner.team/stops/Cfcstan1"], ["https://tec.openplanner.team/stops/LVLzoni2", "https://tec.openplanner.team/stops/LWDchpl1"], ["https://tec.openplanner.team/stops/X871ada", "https://tec.openplanner.team/stops/X871adb"], ["https://tec.openplanner.team/stops/LLirout1", "https://tec.openplanner.team/stops/LReeg--1"], ["https://tec.openplanner.team/stops/H1ms294a", "https://tec.openplanner.team/stops/H1ms926a"], ["https://tec.openplanner.team/stops/H4av106a", "https://tec.openplanner.team/stops/H4av106c"], ["https://tec.openplanner.team/stops/H1bi101b", "https://tec.openplanner.team/stops/H1mg108b"], ["https://tec.openplanner.team/stops/Bgisber1", "https://tec.openplanner.team/stops/Bgisman1"], ["https://tec.openplanner.team/stops/LFFcouv2", "https://tec.openplanner.team/stops/LFFmarc3"], ["https://tec.openplanner.team/stops/X826acb", "https://tec.openplanner.team/stops/X826ahb"], ["https://tec.openplanner.team/stops/Cfmrrou1", "https://tec.openplanner.team/stops/Csoforc1"], ["https://tec.openplanner.team/stops/Bboncgs1", "https://tec.openplanner.team/stops/Bboneta1"], ["https://tec.openplanner.team/stops/N521aha", "https://tec.openplanner.team/stops/N521apb"], ["https://tec.openplanner.team/stops/N574adb", "https://tec.openplanner.team/stops/N574aea"], ["https://tec.openplanner.team/stops/X804ana", "https://tec.openplanner.team/stops/X804bma"], ["https://tec.openplanner.team/stops/LLUmc--2", "https://tec.openplanner.team/stops/LLUreut1"], ["https://tec.openplanner.team/stops/Llgcadr2", "https://tec.openplanner.team/stops/Llgcadr4"], ["https://tec.openplanner.team/stops/Bgrhche2", "https://tec.openplanner.team/stops/Bperros1"], ["https://tec.openplanner.team/stops/Bhptcha1", "https://tec.openplanner.team/stops/Bhptpla1"], ["https://tec.openplanner.team/stops/X940aab", "https://tec.openplanner.team/stops/X941aab"], ["https://tec.openplanner.team/stops/LHEclef1", "https://tec.openplanner.team/stops/LJOchar2"], ["https://tec.openplanner.team/stops/N570acb", "https://tec.openplanner.team/stops/N570aga"], ["https://tec.openplanner.team/stops/N509akb", "https://tec.openplanner.team/stops/N509ala"], ["https://tec.openplanner.team/stops/N118acb", "https://tec.openplanner.team/stops/N118aga"], ["https://tec.openplanner.team/stops/Blkbavo2", "https://tec.openplanner.team/stops/Blkbbvh2"], ["https://tec.openplanner.team/stops/N338afa", "https://tec.openplanner.team/stops/N387acc"], ["https://tec.openplanner.team/stops/LFMkrut1", "https://tec.openplanner.team/stops/LFMkrut2"], ["https://tec.openplanner.team/stops/Cmohotv4", "https://tec.openplanner.team/stops/Cmorgof1"], ["https://tec.openplanner.team/stops/Cgrchea1", "https://tec.openplanner.team/stops/Cjochap1"], ["https://tec.openplanner.team/stops/X876aab", "https://tec.openplanner.team/stops/X876aea"], ["https://tec.openplanner.team/stops/X736ada", "https://tec.openplanner.team/stops/X736agb"], ["https://tec.openplanner.team/stops/H1og131b", "https://tec.openplanner.team/stops/H1og134a"], ["https://tec.openplanner.team/stops/LBscasi1", "https://tec.openplanner.team/stops/NL72abb"], ["https://tec.openplanner.team/stops/LOuplac1", "https://tec.openplanner.team/stops/LOuplac2"], ["https://tec.openplanner.team/stops/Crchutt1", "https://tec.openplanner.team/stops/Crcrwas1"], ["https://tec.openplanner.team/stops/Bgembhe2", "https://tec.openplanner.team/stops/Blnzcar1"], ["https://tec.openplanner.team/stops/X614afa", "https://tec.openplanner.team/stops/X615bha"], ["https://tec.openplanner.team/stops/LHZcime1", "https://tec.openplanner.team/stops/LHZpara1"], ["https://tec.openplanner.team/stops/H1fa120a", "https://tec.openplanner.team/stops/H1fa120b"], ["https://tec.openplanner.team/stops/N308adb", "https://tec.openplanner.team/stops/N308afc"], ["https://tec.openplanner.team/stops/X839acb", "https://tec.openplanner.team/stops/X839adb"], ["https://tec.openplanner.team/stops/H4er123a", "https://tec.openplanner.team/stops/H4ty300a"], ["https://tec.openplanner.team/stops/N571adb", "https://tec.openplanner.team/stops/N573ada"], ["https://tec.openplanner.team/stops/H4fa126a", "https://tec.openplanner.team/stops/H4ms146a"], ["https://tec.openplanner.team/stops/Lccaigr2", "https://tec.openplanner.team/stops/LRAcouv2"], ["https://tec.openplanner.team/stops/X897acb", "https://tec.openplanner.team/stops/X897aic"], ["https://tec.openplanner.team/stops/Lbogonh4", "https://tec.openplanner.team/stops/Lbomidi2"], ["https://tec.openplanner.team/stops/Bfelfde1", "https://tec.openplanner.team/stops/Bronn392"], ["https://tec.openplanner.team/stops/X770afa", "https://tec.openplanner.team/stops/X774adc"], ["https://tec.openplanner.team/stops/LVlleme2", "https://tec.openplanner.team/stops/LVlleme3"], ["https://tec.openplanner.team/stops/Cflchmo2", "https://tec.openplanner.team/stops/Cflstan1"], ["https://tec.openplanner.team/stops/LDObran1", "https://tec.openplanner.team/stops/LDObran2"], ["https://tec.openplanner.team/stops/H1ho129a", "https://tec.openplanner.team/stops/H1wl124a"], ["https://tec.openplanner.team/stops/Cmybefe1", "https://tec.openplanner.team/stops/Cmycime1"], ["https://tec.openplanner.team/stops/LFCkett1", "https://tec.openplanner.team/stops/LFCvoge4"], ["https://tec.openplanner.team/stops/Ctubpos1", "https://tec.openplanner.team/stops/Ctucomm1"], ["https://tec.openplanner.team/stops/X939agb", "https://tec.openplanner.team/stops/X940aha"], ["https://tec.openplanner.team/stops/LbTweyn1", "https://tec.openplanner.team/stops/LbUmalm2"], ["https://tec.openplanner.team/stops/N501fna", "https://tec.openplanner.team/stops/N501ltb"], ["https://tec.openplanner.team/stops/H4de114b", "https://tec.openplanner.team/stops/H4ss157b"], ["https://tec.openplanner.team/stops/LPoewer1", "https://tec.openplanner.team/stops/LPoneuf2"], ["https://tec.openplanner.team/stops/N501ata", "https://tec.openplanner.team/stops/N501bab"], ["https://tec.openplanner.team/stops/Cwfnamu1", "https://tec.openplanner.team/stops/Cwfreta1"], ["https://tec.openplanner.team/stops/Bvilcha1", "https://tec.openplanner.team/stops/Bvilvil3"], ["https://tec.openplanner.team/stops/H4ho120b", "https://tec.openplanner.team/stops/H4ho121a"], ["https://tec.openplanner.team/stops/N550ajb", "https://tec.openplanner.team/stops/N550aka"], ["https://tec.openplanner.team/stops/X398aab", "https://tec.openplanner.team/stops/X398aca"], ["https://tec.openplanner.team/stops/Bbst4br1", "https://tec.openplanner.team/stops/Bbst4br2"], ["https://tec.openplanner.team/stops/LFCotte1", "https://tec.openplanner.team/stops/LWRbois2"], ["https://tec.openplanner.team/stops/LHNgend1", "https://tec.openplanner.team/stops/LHNgend4"], ["https://tec.openplanner.team/stops/Bcrngat2", "https://tec.openplanner.team/stops/Bcrnrpc2"], ["https://tec.openplanner.team/stops/X371adb", "https://tec.openplanner.team/stops/X371aga"], ["https://tec.openplanner.team/stops/X989afb", "https://tec.openplanner.team/stops/X989aga"], ["https://tec.openplanner.team/stops/LSHries1", "https://tec.openplanner.team/stops/LSHries2"], ["https://tec.openplanner.team/stops/X912aea", "https://tec.openplanner.team/stops/X912aja"], ["https://tec.openplanner.team/stops/LeLbutg1", "https://tec.openplanner.team/stops/LeLherz1"], ["https://tec.openplanner.team/stops/X793apa", "https://tec.openplanner.team/stops/X793apb"], ["https://tec.openplanner.team/stops/LEHpech1", "https://tec.openplanner.team/stops/LRArami2"], ["https://tec.openplanner.team/stops/LBrbern1", "https://tec.openplanner.team/stops/LBrbern2"], ["https://tec.openplanner.team/stops/Ckevela1", "https://tec.openplanner.team/stops/Ckevela2"], ["https://tec.openplanner.team/stops/Bchgbar2", "https://tec.openplanner.team/stops/Bchgflo2"], ["https://tec.openplanner.team/stops/X719aab", "https://tec.openplanner.team/stops/X719aeb"], ["https://tec.openplanner.team/stops/N536aqa", "https://tec.openplanner.team/stops/N536aqb"], ["https://tec.openplanner.team/stops/NL78aha", "https://tec.openplanner.team/stops/NL78ahb"], ["https://tec.openplanner.team/stops/Cgzblob1", "https://tec.openplanner.team/stops/Cgzchen2"], ["https://tec.openplanner.team/stops/N331aab", "https://tec.openplanner.team/stops/N331aca"], ["https://tec.openplanner.team/stops/Lbrplai2", "https://tec.openplanner.team/stops/Lbrresi2"], ["https://tec.openplanner.team/stops/Llgplop1", "https://tec.openplanner.team/stops/Lvteg--2"], ["https://tec.openplanner.team/stops/H1ol144a", "https://tec.openplanner.team/stops/H1ol146a"], ["https://tec.openplanner.team/stops/LAYcher1", "https://tec.openplanner.team/stops/LAYcher2"], ["https://tec.openplanner.team/stops/Bbchpil1", "https://tec.openplanner.team/stops/Bbchpil2"], ["https://tec.openplanner.team/stops/Bllnrod3", "https://tec.openplanner.team/stops/Bmsgaxp2"], ["https://tec.openplanner.team/stops/N304aaa", "https://tec.openplanner.team/stops/N305aaa"], ["https://tec.openplanner.team/stops/Cbiferm1", "https://tec.openplanner.team/stops/Cthbifu2"], ["https://tec.openplanner.team/stops/H2gy108b", "https://tec.openplanner.team/stops/H2gy113b"], ["https://tec.openplanner.team/stops/X908aia", "https://tec.openplanner.team/stops/X910aba"], ["https://tec.openplanner.team/stops/N501cwa", "https://tec.openplanner.team/stops/N501cwb"], ["https://tec.openplanner.team/stops/H4tp147a", "https://tec.openplanner.team/stops/H4tp147b"], ["https://tec.openplanner.team/stops/N533aqb", "https://tec.openplanner.team/stops/N533aqd"], ["https://tec.openplanner.team/stops/N548aia", "https://tec.openplanner.team/stops/N548aka"], ["https://tec.openplanner.team/stops/X991ada", "https://tec.openplanner.team/stops/X991ajb"], ["https://tec.openplanner.team/stops/N513bab", "https://tec.openplanner.team/stops/N513bbc"], ["https://tec.openplanner.team/stops/H2go114c", "https://tec.openplanner.team/stops/H2go114d"], ["https://tec.openplanner.team/stops/H2lc145a", "https://tec.openplanner.team/stops/H2lc145b"], ["https://tec.openplanner.team/stops/Llgplop1", "https://tec.openplanner.team/stops/Llgplop2"], ["https://tec.openplanner.team/stops/N523aba", "https://tec.openplanner.team/stops/N523acb"], ["https://tec.openplanner.team/stops/Ljeegli3", "https://tec.openplanner.team/stops/Ljeegli6"], ["https://tec.openplanner.team/stops/Lagcolo1", "https://tec.openplanner.team/stops/Lemparc2"], ["https://tec.openplanner.team/stops/H4eg104a", "https://tec.openplanner.team/stops/H4eg108b"], ["https://tec.openplanner.team/stops/Lvehout2", "https://tec.openplanner.team/stops/Lveleje2"], ["https://tec.openplanner.team/stops/H1do114b", "https://tec.openplanner.team/stops/H1do117a"], ["https://tec.openplanner.team/stops/LHe3com2", "https://tec.openplanner.team/stops/LHexhav2"], ["https://tec.openplanner.team/stops/LGLc50-3", "https://tec.openplanner.team/stops/LGLlaur1"], ["https://tec.openplanner.team/stops/LFMkrin2", "https://tec.openplanner.team/stops/LVu03--1"], ["https://tec.openplanner.team/stops/Lbhpeti2", "https://tec.openplanner.team/stops/Lromerl1"], ["https://tec.openplanner.team/stops/N204aab", "https://tec.openplanner.team/stops/N206ada"], ["https://tec.openplanner.team/stops/LJAboli2", "https://tec.openplanner.team/stops/LJAherb4"], ["https://tec.openplanner.team/stops/H1gr119b", "https://tec.openplanner.team/stops/H1to153d"], ["https://tec.openplanner.team/stops/LCOdrol2", "https://tec.openplanner.team/stops/LWerola1"], ["https://tec.openplanner.team/stops/Ccoh1211", "https://tec.openplanner.team/stops/Ccotemp1"], ["https://tec.openplanner.team/stops/Lhrpepi2", "https://tec.openplanner.team/stops/Lhrtilm2"], ["https://tec.openplanner.team/stops/Csschat2", "https://tec.openplanner.team/stops/Csspn1"], ["https://tec.openplanner.team/stops/N516ala", "https://tec.openplanner.team/stops/N516anb"], ["https://tec.openplanner.team/stops/H4ty297a", "https://tec.openplanner.team/stops/H4ty315a"], ["https://tec.openplanner.team/stops/H4re225a", "https://tec.openplanner.team/stops/H5at235a"], ["https://tec.openplanner.team/stops/N501gpa", "https://tec.openplanner.team/stops/N501gpz"], ["https://tec.openplanner.team/stops/Cgyblob2", "https://tec.openplanner.team/stops/Cgynoir2"], ["https://tec.openplanner.team/stops/N236apa", "https://tec.openplanner.team/stops/N236apb"], ["https://tec.openplanner.team/stops/LLUg82-1", "https://tec.openplanner.team/stops/LLUgend1"], ["https://tec.openplanner.team/stops/Lhuwaid1", "https://tec.openplanner.team/stops/Lmnrame2"], ["https://tec.openplanner.team/stops/H2mi123a", "https://tec.openplanner.team/stops/H2mi124a"], ["https://tec.openplanner.team/stops/H1ag107b", "https://tec.openplanner.team/stops/H1an101b"], ["https://tec.openplanner.team/stops/X793aab", "https://tec.openplanner.team/stops/X793abb"], ["https://tec.openplanner.team/stops/H1ol142a", "https://tec.openplanner.team/stops/H1ol142b"], ["https://tec.openplanner.team/stops/H1si152a", "https://tec.openplanner.team/stops/H1si152b"], ["https://tec.openplanner.team/stops/Lhubriq1", "https://tec.openplanner.team/stops/Lmntast2"], ["https://tec.openplanner.team/stops/H1hn209b", "https://tec.openplanner.team/stops/H1hn210b"], ["https://tec.openplanner.team/stops/Borblim2", "https://tec.openplanner.team/stops/Btstbes1"], ["https://tec.openplanner.team/stops/H4eg103a", "https://tec.openplanner.team/stops/H4eg107a"], ["https://tec.openplanner.team/stops/Lrcarse1", "https://tec.openplanner.team/stops/Lrcastr3"], ["https://tec.openplanner.team/stops/Bbstchn1", "https://tec.openplanner.team/stops/Bbstchn2"], ["https://tec.openplanner.team/stops/X714ada", "https://tec.openplanner.team/stops/X714aea"], ["https://tec.openplanner.team/stops/Clomari1", "https://tec.openplanner.team/stops/CMtsan2"], ["https://tec.openplanner.team/stops/X757ada", "https://tec.openplanner.team/stops/X757agb"], ["https://tec.openplanner.team/stops/H1ca186a", "https://tec.openplanner.team/stops/H1ca186b"], ["https://tec.openplanner.team/stops/H1hv132b", "https://tec.openplanner.team/stops/H1hv136b"], ["https://tec.openplanner.team/stops/X902afa", "https://tec.openplanner.team/stops/X902aoa"], ["https://tec.openplanner.team/stops/LFHjamo1", "https://tec.openplanner.team/stops/LFOcomb4"], ["https://tec.openplanner.team/stops/N510ada", "https://tec.openplanner.team/stops/N513aza"], ["https://tec.openplanner.team/stops/LTPbeau1", "https://tec.openplanner.team/stops/LTPpreh1"], ["https://tec.openplanner.team/stops/N570aaa", "https://tec.openplanner.team/stops/N570abb"], ["https://tec.openplanner.team/stops/Bjodrrg1", "https://tec.openplanner.team/stops/Bzlucam1"], ["https://tec.openplanner.team/stops/LPTeg--2", "https://tec.openplanner.team/stops/X542afa"], ["https://tec.openplanner.team/stops/Llgbour1", "https://tec.openplanner.team/stops/Llgcmes4"], ["https://tec.openplanner.team/stops/Bnivsci1", "https://tec.openplanner.team/stops/Bnivsci2"], ["https://tec.openplanner.team/stops/X601cbb", "https://tec.openplanner.team/stops/X601cca"], ["https://tec.openplanner.team/stops/Bwatbca2", "https://tec.openplanner.team/stops/Bwatcci2"], ["https://tec.openplanner.team/stops/Bcsen252", "https://tec.openplanner.team/stops/Bsmgsuz1"], ["https://tec.openplanner.team/stops/Cwflouv3", "https://tec.openplanner.team/stops/Cwflouv4"], ["https://tec.openplanner.team/stops/N244apb", "https://tec.openplanner.team/stops/N244axa"], ["https://tec.openplanner.team/stops/LBIairp2", "https://tec.openplanner.team/stops/Lmlpech1"], ["https://tec.openplanner.team/stops/N224aaa", "https://tec.openplanner.team/stops/X398aha"], ["https://tec.openplanner.team/stops/H1er105a", "https://tec.openplanner.team/stops/H1er111b"], ["https://tec.openplanner.team/stops/LMNjard2", "https://tec.openplanner.team/stops/LPbusin1"], ["https://tec.openplanner.team/stops/H1hn364a", "https://tec.openplanner.team/stops/H1hn365a"], ["https://tec.openplanner.team/stops/LHChomb2", "https://tec.openplanner.team/stops/LHMhof-1"], ["https://tec.openplanner.team/stops/X982bya", "https://tec.openplanner.team/stops/X982byb"], ["https://tec.openplanner.team/stops/N149acb", "https://tec.openplanner.team/stops/N153aeb"], ["https://tec.openplanner.team/stops/Bjodpce1", "https://tec.openplanner.team/stops/Bjodpce2"], ["https://tec.openplanner.team/stops/X804asb", "https://tec.openplanner.team/stops/X804ata"], ["https://tec.openplanner.team/stops/Bwatmch1", "https://tec.openplanner.team/stops/Bwatmch2"], ["https://tec.openplanner.team/stops/LaMadam2", "https://tec.openplanner.team/stops/LaMschw1"], ["https://tec.openplanner.team/stops/X763aab", "https://tec.openplanner.team/stops/X765agb"], ["https://tec.openplanner.team/stops/Csoforr1", "https://tec.openplanner.team/stops/Csoforr4"], ["https://tec.openplanner.team/stops/LLelans1", "https://tec.openplanner.team/stops/X561aaa"], ["https://tec.openplanner.team/stops/N505ada", "https://tec.openplanner.team/stops/N505aea"], ["https://tec.openplanner.team/stops/LMIbois2", "https://tec.openplanner.team/stops/LSOdow%C3%A92"], ["https://tec.openplanner.team/stops/LAWbrou1", "https://tec.openplanner.team/stops/LAWgill1"], ["https://tec.openplanner.team/stops/Csbrago1", "https://tec.openplanner.team/stops/H1sa114b"], ["https://tec.openplanner.team/stops/X641aga", "https://tec.openplanner.team/stops/X641alb"], ["https://tec.openplanner.team/stops/H1ma230b", "https://tec.openplanner.team/stops/H1ma237a"], ["https://tec.openplanner.team/stops/H2bh103d", "https://tec.openplanner.team/stops/H2bh108a"], ["https://tec.openplanner.team/stops/Blthvil1", "https://tec.openplanner.team/stops/Blthwav4"], ["https://tec.openplanner.team/stops/N127aea", "https://tec.openplanner.team/stops/N135bdb"], ["https://tec.openplanner.team/stops/Bquebuc1", "https://tec.openplanner.team/stops/Bquecro2"], ["https://tec.openplanner.team/stops/Brixbou1", "https://tec.openplanner.team/stops/Brixres1"], ["https://tec.openplanner.team/stops/Clbchlo2", "https://tec.openplanner.team/stops/Clbentr1"], ["https://tec.openplanner.team/stops/H4wr173b", "https://tec.openplanner.team/stops/H5qu154a"], ["https://tec.openplanner.team/stops/Bgemga11", "https://tec.openplanner.team/stops/N522bvc"], ["https://tec.openplanner.team/stops/LBLcalv1", "https://tec.openplanner.team/stops/LBLtroi1"], ["https://tec.openplanner.team/stops/CMchag1", "https://tec.openplanner.team/stops/CMchag2"], ["https://tec.openplanner.team/stops/H1qu102a", "https://tec.openplanner.team/stops/H1qu102b"], ["https://tec.openplanner.team/stops/LOcchat2", "https://tec.openplanner.team/stops/LOchalo1"], ["https://tec.openplanner.team/stops/Bsampli2", "https://tec.openplanner.team/stops/N584bqb"], ["https://tec.openplanner.team/stops/LFIinse1", "https://tec.openplanner.team/stops/LMYvill2"], ["https://tec.openplanner.team/stops/H1ho134a", "https://tec.openplanner.team/stops/H1ho134b"], ["https://tec.openplanner.team/stops/X805aab", "https://tec.openplanner.team/stops/X805aka"], ["https://tec.openplanner.team/stops/N134aga", "https://tec.openplanner.team/stops/N134agb"], ["https://tec.openplanner.team/stops/X829aca", "https://tec.openplanner.team/stops/X829acb"], ["https://tec.openplanner.team/stops/Chhlori2", "https://tec.openplanner.team/stops/Cjxcoll2"], ["https://tec.openplanner.team/stops/LTiforg1", "https://tec.openplanner.team/stops/LTiforg2"], ["https://tec.openplanner.team/stops/X793aaa", "https://tec.openplanner.team/stops/X793apa"], ["https://tec.openplanner.team/stops/X766aaa", "https://tec.openplanner.team/stops/X766abb"], ["https://tec.openplanner.team/stops/N232bba", "https://tec.openplanner.team/stops/N232btb"], ["https://tec.openplanner.team/stops/X601bla", "https://tec.openplanner.team/stops/X601bmb"], ["https://tec.openplanner.team/stops/LeUvoss1", "https://tec.openplanner.team/stops/LrAbe601"], ["https://tec.openplanner.team/stops/Cptplac4", "https://tec.openplanner.team/stops/Cptplac5"], ["https://tec.openplanner.team/stops/N347adb", "https://tec.openplanner.team/stops/X347aja"], ["https://tec.openplanner.team/stops/H1sy138a", "https://tec.openplanner.team/stops/H1sy145a"], ["https://tec.openplanner.team/stops/N301abb", "https://tec.openplanner.team/stops/N301abd"], ["https://tec.openplanner.team/stops/Bhercsj1", "https://tec.openplanner.team/stops/Bpiehvi1"], ["https://tec.openplanner.team/stops/H1ms257a", "https://tec.openplanner.team/stops/H1ms257b"], ["https://tec.openplanner.team/stops/H1bb116c", "https://tec.openplanner.team/stops/H1bb117a"], ["https://tec.openplanner.team/stops/X942abb", "https://tec.openplanner.team/stops/X942abc"], ["https://tec.openplanner.team/stops/H1ni316a", "https://tec.openplanner.team/stops/H1ni316b"], ["https://tec.openplanner.team/stops/LPLcond2", "https://tec.openplanner.team/stops/LRRtrix1"], ["https://tec.openplanner.team/stops/Blmlbou2", "https://tec.openplanner.team/stops/Blmlvex1"], ["https://tec.openplanner.team/stops/Llgchai1", "https://tec.openplanner.team/stops/Llgmagh2"], ["https://tec.openplanner.team/stops/Llgbavi0", "https://tec.openplanner.team/stops/Llgphol3"], ["https://tec.openplanner.team/stops/H1he104a", "https://tec.openplanner.team/stops/H1he110b"], ["https://tec.openplanner.team/stops/Bixlpat1", "https://tec.openplanner.team/stops/Buccbas1"], ["https://tec.openplanner.team/stops/N524afb", "https://tec.openplanner.team/stops/N524aia"], ["https://tec.openplanner.team/stops/LSCeg--4", "https://tec.openplanner.team/stops/LSChane2"], ["https://tec.openplanner.team/stops/LBGjacq2", "https://tec.openplanner.team/stops/LBGvill2"], ["https://tec.openplanner.team/stops/H3so158b", "https://tec.openplanner.team/stops/H3so162a"], ["https://tec.openplanner.team/stops/LAnchat2", "https://tec.openplanner.team/stops/LVtchai2"], ["https://tec.openplanner.team/stops/Ccugrtr1", "https://tec.openplanner.team/stops/Ccugrtr2"], ["https://tec.openplanner.team/stops/Bptecal1", "https://tec.openplanner.team/stops/Bptemch1"], ["https://tec.openplanner.team/stops/Laddelc2", "https://tec.openplanner.team/stops/Ladhomb2"], ["https://tec.openplanner.team/stops/H1em109a", "https://tec.openplanner.team/stops/H1ev115a"], ["https://tec.openplanner.team/stops/Cgogare1", "https://tec.openplanner.team/stops/Cgostex2"], ["https://tec.openplanner.team/stops/N132aeb", "https://tec.openplanner.team/stops/N132afa"], ["https://tec.openplanner.team/stops/Binclib2", "https://tec.openplanner.team/stops/Binclon1"], ["https://tec.openplanner.team/stops/H1hh113b", "https://tec.openplanner.team/stops/H1hh116a"], ["https://tec.openplanner.team/stops/LLemonu1", "https://tec.openplanner.team/stops/LLemonu2"], ["https://tec.openplanner.team/stops/N501hza", "https://tec.openplanner.team/stops/N501ijb"], ["https://tec.openplanner.team/stops/LsVhupp2", "https://tec.openplanner.team/stops/LsVsimo1"], ["https://tec.openplanner.team/stops/H5rx120b", "https://tec.openplanner.team/stops/H5rx150a"], ["https://tec.openplanner.team/stops/Cfcchas2", "https://tec.openplanner.team/stops/Crclorc2"], ["https://tec.openplanner.team/stops/LHEzoni1", "https://tec.openplanner.team/stops/LJOferm1"], ["https://tec.openplanner.team/stops/Brebeau2", "https://tec.openplanner.team/stops/Brebmtg2"], ["https://tec.openplanner.team/stops/Lsmpost2", "https://tec.openplanner.team/stops/Lsmtini2"], ["https://tec.openplanner.team/stops/H4eg101c", "https://tec.openplanner.team/stops/H4eg105a"], ["https://tec.openplanner.team/stops/H2sb227b", "https://tec.openplanner.team/stops/H2sb243a"], ["https://tec.openplanner.team/stops/Livcoll2", "https://tec.openplanner.team/stops/Livroch2"], ["https://tec.openplanner.team/stops/Bwategb2", "https://tec.openplanner.team/stops/Bwatgla1"], ["https://tec.openplanner.team/stops/X640ahb", "https://tec.openplanner.team/stops/X640ala"], ["https://tec.openplanner.team/stops/N343amb", "https://tec.openplanner.team/stops/X343ama"], ["https://tec.openplanner.team/stops/LSTchal1", "https://tec.openplanner.team/stops/LSTchat2"], ["https://tec.openplanner.team/stops/Cmtstan2", "https://tec.openplanner.team/stops/Cmtstan3"], ["https://tec.openplanner.team/stops/X926aab", "https://tec.openplanner.team/stops/X926abb"], ["https://tec.openplanner.team/stops/LLxcana1", "https://tec.openplanner.team/stops/LLxmonu2"], ["https://tec.openplanner.team/stops/Buccdst1", "https://tec.openplanner.team/stops/Buccobs1"], ["https://tec.openplanner.team/stops/Bbcogpl2", "https://tec.openplanner.team/stops/H3br102a"], ["https://tec.openplanner.team/stops/N522aia", "https://tec.openplanner.team/stops/N576abb"], ["https://tec.openplanner.team/stops/N425aea", "https://tec.openplanner.team/stops/N426aca"], ["https://tec.openplanner.team/stops/Clbchar1", "https://tec.openplanner.team/stops/H1lo120b"], ["https://tec.openplanner.team/stops/Cmlcaya1", "https://tec.openplanner.team/stops/Cmlcaya2"], ["https://tec.openplanner.team/stops/N219aca", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/LLSba4-2", "https://tec.openplanner.team/stops/LLSba6-1"], ["https://tec.openplanner.team/stops/N516aaa", "https://tec.openplanner.team/stops/N516aab"], ["https://tec.openplanner.team/stops/X804aca", "https://tec.openplanner.team/stops/X804apa"], ["https://tec.openplanner.team/stops/N121abb", "https://tec.openplanner.team/stops/N122aib"], ["https://tec.openplanner.team/stops/LEMgren*", "https://tec.openplanner.team/stops/LPlpomp2"], ["https://tec.openplanner.team/stops/X768aia", "https://tec.openplanner.team/stops/X768aib"], ["https://tec.openplanner.team/stops/H4lg101a", "https://tec.openplanner.team/stops/H4lg105a"], ["https://tec.openplanner.team/stops/Cgy4bra1", "https://tec.openplanner.team/stops/Cgy4bra2"], ["https://tec.openplanner.team/stops/LHEchar2", "https://tec.openplanner.team/stops/LHEnaza2"], ["https://tec.openplanner.team/stops/N501eza", "https://tec.openplanner.team/stops/N501jra"], ["https://tec.openplanner.team/stops/Lseboia2", "https://tec.openplanner.team/stops/Lsefori2"], ["https://tec.openplanner.team/stops/H1hv133a", "https://tec.openplanner.team/stops/H1hv133b"], ["https://tec.openplanner.team/stops/X650aeb", "https://tec.openplanner.team/stops/X650aga"], ["https://tec.openplanner.team/stops/X999acb", "https://tec.openplanner.team/stops/X999ada"], ["https://tec.openplanner.team/stops/N519aac", "https://tec.openplanner.team/stops/N519aad"], ["https://tec.openplanner.team/stops/Chhlori1", "https://tec.openplanner.team/stops/Chhlori2"], ["https://tec.openplanner.team/stops/Lalwaro1", "https://tec.openplanner.team/stops/LAWkone1"], ["https://tec.openplanner.team/stops/N501dqa", "https://tec.openplanner.team/stops/N501kna"], ["https://tec.openplanner.team/stops/LHHlomb2", "https://tec.openplanner.team/stops/LVTeg--1"], ["https://tec.openplanner.team/stops/N110afb", "https://tec.openplanner.team/stops/N110agb"], ["https://tec.openplanner.team/stops/LCsbors1", "https://tec.openplanner.team/stops/LVBneuv2"], ["https://tec.openplanner.team/stops/Bjanfer2", "https://tec.openplanner.team/stops/Bwanorp1"], ["https://tec.openplanner.team/stops/H1hn206a", "https://tec.openplanner.team/stops/H1hn206b"], ["https://tec.openplanner.team/stops/Cmlfeba2", "https://tec.openplanner.team/stops/Cmmbmad2"], ["https://tec.openplanner.team/stops/Llgcita2", "https://tec.openplanner.team/stops/Llgvelb2"], ["https://tec.openplanner.team/stops/Llgchal1", "https://tec.openplanner.team/stops/Llgelis1"], ["https://tec.openplanner.team/stops/H5rx120a", "https://tec.openplanner.team/stops/H5rx149a"], ["https://tec.openplanner.team/stops/Bnivpri2", "https://tec.openplanner.team/stops/Bnivvcw2"], ["https://tec.openplanner.team/stops/Lgrjobe1", "https://tec.openplanner.team/stops/Lgrjobe2"], ["https://tec.openplanner.team/stops/Bbiemor2", "https://tec.openplanner.team/stops/Bgzdast1"], ["https://tec.openplanner.team/stops/LVlfooz3", "https://tec.openplanner.team/stops/LVltige2"], ["https://tec.openplanner.team/stops/X661ama", "https://tec.openplanner.team/stops/X661ana"], ["https://tec.openplanner.team/stops/X927acb", "https://tec.openplanner.team/stops/X983agb"], ["https://tec.openplanner.team/stops/H1le128a", "https://tec.openplanner.team/stops/H1le128c"], ["https://tec.openplanner.team/stops/LROmons1", "https://tec.openplanner.team/stops/LROmorf1"], ["https://tec.openplanner.team/stops/Llgrame1", "https://tec.openplanner.team/stops/Llgwiar4"], ["https://tec.openplanner.team/stops/X623afa", "https://tec.openplanner.team/stops/X623afb"], ["https://tec.openplanner.team/stops/Bmoucnd1", "https://tec.openplanner.team/stops/Bottrfa1"], ["https://tec.openplanner.team/stops/Cfaplma1", "https://tec.openplanner.team/stops/NC23afb"], ["https://tec.openplanner.team/stops/N532aab", "https://tec.openplanner.team/stops/N532agb"], ["https://tec.openplanner.team/stops/N170ada", "https://tec.openplanner.team/stops/N170aea"], ["https://tec.openplanner.team/stops/Ctrrpla1", "https://tec.openplanner.team/stops/Ctrrpla4"], ["https://tec.openplanner.team/stops/X644abb", "https://tec.openplanner.team/stops/X644acb"], ["https://tec.openplanner.team/stops/Caccera1", "https://tec.openplanner.team/stops/Caccera2"], ["https://tec.openplanner.team/stops/X639aoa", "https://tec.openplanner.team/stops/X639aob"], ["https://tec.openplanner.team/stops/H1po130b", "https://tec.openplanner.team/stops/H1po139a"], ["https://tec.openplanner.team/stops/N170aca", "https://tec.openplanner.team/stops/N170ada"], ["https://tec.openplanner.team/stops/LlA43--1", "https://tec.openplanner.team/stops/LrUlasc1"], ["https://tec.openplanner.team/stops/Cfcrerp2", "https://tec.openplanner.team/stops/N103aeb"], ["https://tec.openplanner.team/stops/X869aba", "https://tec.openplanner.team/stops/X869adb"], ["https://tec.openplanner.team/stops/LRObruy1", "https://tec.openplanner.team/stops/LROmorf1"], ["https://tec.openplanner.team/stops/N501jra", "https://tec.openplanner.team/stops/N501jrb"], ["https://tec.openplanner.team/stops/LREsech1", "https://tec.openplanner.team/stops/LREsp902"], ["https://tec.openplanner.team/stops/X858aga", "https://tec.openplanner.team/stops/X858agb"], ["https://tec.openplanner.team/stops/LJAchat1", "https://tec.openplanner.team/stops/LSWeg--3"], ["https://tec.openplanner.team/stops/X608arb", "https://tec.openplanner.team/stops/X608atb"], ["https://tec.openplanner.team/stops/Bottcro1", "https://tec.openplanner.team/stops/Botteco2"], ["https://tec.openplanner.team/stops/H2ch103b", "https://tec.openplanner.team/stops/H2ch109b"], ["https://tec.openplanner.team/stops/Clproi1", "https://tec.openplanner.team/stops/Clpsola1"], ["https://tec.openplanner.team/stops/Ladboti1", "https://tec.openplanner.team/stops/Ladboti2"], ["https://tec.openplanner.team/stops/NL76aab", "https://tec.openplanner.team/stops/NL76abb"], ["https://tec.openplanner.team/stops/Cmlavch1", "https://tec.openplanner.team/stops/NC02avb"], ["https://tec.openplanner.team/stops/LSZclem1", "https://tec.openplanner.team/stops/LSZdepo1"], ["https://tec.openplanner.team/stops/H1sy144a", "https://tec.openplanner.team/stops/H1sy147a"], ["https://tec.openplanner.team/stops/LELchap1", "https://tec.openplanner.team/stops/LELeg--2"], ["https://tec.openplanner.team/stops/X651agb", "https://tec.openplanner.team/stops/X669abd"], ["https://tec.openplanner.team/stops/H1gh150a", "https://tec.openplanner.team/stops/H1gh150b"], ["https://tec.openplanner.team/stops/H4ch116b", "https://tec.openplanner.team/stops/H4ch119a"], ["https://tec.openplanner.team/stops/Bborche2", "https://tec.openplanner.team/stops/Bbsicen2"], ["https://tec.openplanner.team/stops/Cmbborn2", "https://tec.openplanner.team/stops/Csufrom5"], ["https://tec.openplanner.team/stops/N550afa", "https://tec.openplanner.team/stops/N550aka"], ["https://tec.openplanner.team/stops/Lemlacr1", "https://tec.openplanner.team/stops/Lemmc--1"], ["https://tec.openplanner.team/stops/X754aab", "https://tec.openplanner.team/stops/X779ahb"], ["https://tec.openplanner.team/stops/Bviravi2", "https://tec.openplanner.team/stops/Bvircen2"], ["https://tec.openplanner.team/stops/Lemjoba1", "https://tec.openplanner.team/stops/Lemmath1"], ["https://tec.openplanner.team/stops/H5bs102a", "https://tec.openplanner.team/stops/H5bs104a"], ["https://tec.openplanner.team/stops/Bsmgmar1", "https://tec.openplanner.team/stops/Bvilpar1"], ["https://tec.openplanner.team/stops/LEN183-2", "https://tec.openplanner.team/stops/LSGsurf2"], ["https://tec.openplanner.team/stops/H1sp355a", "https://tec.openplanner.team/stops/H1sp356b"], ["https://tec.openplanner.team/stops/X601bya", "https://tec.openplanner.team/stops/X601cga"], ["https://tec.openplanner.team/stops/X657ada", "https://tec.openplanner.team/stops/X657adb"], ["https://tec.openplanner.team/stops/N244afa", "https://tec.openplanner.team/stops/N244aob"], ["https://tec.openplanner.team/stops/Cchriga2", "https://tec.openplanner.team/stops/Cmlecha1"], ["https://tec.openplanner.team/stops/Bnivn972", "https://tec.openplanner.team/stops/Bnivpal2"], ["https://tec.openplanner.team/stops/LFEland2", "https://tec.openplanner.team/stops/X597agb"], ["https://tec.openplanner.team/stops/H4pi133b", "https://tec.openplanner.team/stops/H4pi136b"], ["https://tec.openplanner.team/stops/Bllncom1", "https://tec.openplanner.team/stops/Bllnhoc2"], ["https://tec.openplanner.team/stops/Cmabegh1", "https://tec.openplanner.team/stops/CMprov2"], ["https://tec.openplanner.team/stops/N151ajb", "https://tec.openplanner.team/stops/N151ajd"], ["https://tec.openplanner.team/stops/N518abb", "https://tec.openplanner.team/stops/N519ahb"], ["https://tec.openplanner.team/stops/Cptcamb2", "https://tec.openplanner.team/stops/Cptchea1"], ["https://tec.openplanner.team/stops/Llghoub2", "https://tec.openplanner.team/stops/Llgstvi1"], ["https://tec.openplanner.team/stops/Lscstan1", "https://tec.openplanner.team/stops/Lscstan3"], ["https://tec.openplanner.team/stops/H4co148a", "https://tec.openplanner.team/stops/H4co162a"], ["https://tec.openplanner.team/stops/LSSfont1", "https://tec.openplanner.team/stops/LYEphar2"], ["https://tec.openplanner.team/stops/H1fl133c", "https://tec.openplanner.team/stops/H1fl133d"], ["https://tec.openplanner.team/stops/H5el116b", "https://tec.openplanner.team/stops/H5el117a"], ["https://tec.openplanner.team/stops/N351aga", "https://tec.openplanner.team/stops/N351ahb"], ["https://tec.openplanner.team/stops/N215acc", "https://tec.openplanner.team/stops/N215acd"], ["https://tec.openplanner.team/stops/Cmlhubi2", "https://tec.openplanner.team/stops/Cmlpche1"], ["https://tec.openplanner.team/stops/Cmldeto2", "https://tec.openplanner.team/stops/NC01afa"], ["https://tec.openplanner.team/stops/N531afh", "https://tec.openplanner.team/stops/N531ata"], ["https://tec.openplanner.team/stops/N505abb", "https://tec.openplanner.team/stops/N505aob"], ["https://tec.openplanner.team/stops/H2tr246b", "https://tec.openplanner.team/stops/H2tr254b"], ["https://tec.openplanner.team/stops/Ljucaba1", "https://tec.openplanner.team/stops/Ljuvert1"], ["https://tec.openplanner.team/stops/Bblafab1", "https://tec.openplanner.team/stops/Bblaqsj1"], ["https://tec.openplanner.team/stops/H1br123a", "https://tec.openplanner.team/stops/H1br123b"], ["https://tec.openplanner.team/stops/X342aab", "https://tec.openplanner.team/stops/X342aba"], ["https://tec.openplanner.team/stops/X911aia", "https://tec.openplanner.team/stops/X911aib"], ["https://tec.openplanner.team/stops/LHUaveu2", "https://tec.openplanner.team/stops/NL80acb"], ["https://tec.openplanner.team/stops/LHEhv--1", "https://tec.openplanner.team/stops/LHEhv--2"], ["https://tec.openplanner.team/stops/Bnivpla1", "https://tec.openplanner.team/stops/Bnivpla2"], ["https://tec.openplanner.team/stops/X892ahb", "https://tec.openplanner.team/stops/X892aja"], ["https://tec.openplanner.team/stops/H4ty328a", "https://tec.openplanner.team/stops/H4ty328b"], ["https://tec.openplanner.team/stops/X547aqb", "https://tec.openplanner.team/stops/X782aca"], ["https://tec.openplanner.team/stops/H2ha129d", "https://tec.openplanner.team/stops/H2ha138b"], ["https://tec.openplanner.team/stops/Cfaauln1", "https://tec.openplanner.team/stops/Cflspir1"], ["https://tec.openplanner.team/stops/LLnlimb1", "https://tec.openplanner.team/stops/LLnlimb2"], ["https://tec.openplanner.team/stops/N231aba", "https://tec.openplanner.team/stops/N231ada"], ["https://tec.openplanner.team/stops/X804ama", "https://tec.openplanner.team/stops/X804byb"], ["https://tec.openplanner.team/stops/N134alb", "https://tec.openplanner.team/stops/N135azb"], ["https://tec.openplanner.team/stops/X641acb", "https://tec.openplanner.team/stops/X641ada"], ["https://tec.openplanner.team/stops/H1fl138b", "https://tec.openplanner.team/stops/H1fl142b"], ["https://tec.openplanner.team/stops/X738aca", "https://tec.openplanner.team/stops/X738acb"], ["https://tec.openplanner.team/stops/N506aua", "https://tec.openplanner.team/stops/N506ava"], ["https://tec.openplanner.team/stops/Bgoestu1", "https://tec.openplanner.team/stops/Bgoevli2"], ["https://tec.openplanner.team/stops/Lbrrobe3", "https://tec.openplanner.team/stops/Lgrfort1"], ["https://tec.openplanner.team/stops/X808afa", "https://tec.openplanner.team/stops/X808afb"], ["https://tec.openplanner.team/stops/Bohnmes3", "https://tec.openplanner.team/stops/Bohnpla1"], ["https://tec.openplanner.team/stops/LVIecol2", "https://tec.openplanner.team/stops/LVIvert2"], ["https://tec.openplanner.team/stops/LCShoux2", "https://tec.openplanner.team/stops/LHHcite2"], ["https://tec.openplanner.team/stops/Cgxfo141", "https://tec.openplanner.team/stops/Csoforc1"], ["https://tec.openplanner.team/stops/X604ahb", "https://tec.openplanner.team/stops/X625agb"], ["https://tec.openplanner.team/stops/Cmaegal1", "https://tec.openplanner.team/stops/Cromart1"], ["https://tec.openplanner.team/stops/H4mb140a", "https://tec.openplanner.team/stops/H4mb143a"], ["https://tec.openplanner.team/stops/LmDgeme1", "https://tec.openplanner.team/stops/LmYkreu1"], ["https://tec.openplanner.team/stops/Ckevela2", "https://tec.openplanner.team/stops/N530aia"], ["https://tec.openplanner.team/stops/N232awb", "https://tec.openplanner.team/stops/N232cca"], ["https://tec.openplanner.team/stops/X601bea", "https://tec.openplanner.team/stops/X601ceb"], ["https://tec.openplanner.team/stops/LFFmarc1", "https://tec.openplanner.team/stops/LFFmarc3"], ["https://tec.openplanner.team/stops/N219abb", "https://tec.openplanner.team/stops/N219aea"], ["https://tec.openplanner.team/stops/H2bh109b", "https://tec.openplanner.team/stops/H2bh119b"], ["https://tec.openplanner.team/stops/LHHcite1", "https://tec.openplanner.team/stops/LHHroua1"], ["https://tec.openplanner.team/stops/H1le125b", "https://tec.openplanner.team/stops/H1og133a"], ["https://tec.openplanner.team/stops/Blemhon2", "https://tec.openplanner.team/stops/Blemmar1"], ["https://tec.openplanner.team/stops/Blmlbif1", "https://tec.openplanner.team/stops/Brixpbs1"], ["https://tec.openplanner.team/stops/LCPscay2", "https://tec.openplanner.team/stops/LCPvign1"], ["https://tec.openplanner.team/stops/H4mt219b", "https://tec.openplanner.team/stops/H4mx118b"], ["https://tec.openplanner.team/stops/Bhenard2", "https://tec.openplanner.team/stops/Bhenard3"], ["https://tec.openplanner.team/stops/LeUlasc2", "https://tec.openplanner.team/stops/LeUlasc3"], ["https://tec.openplanner.team/stops/X671abb", "https://tec.openplanner.team/stops/X671ada"], ["https://tec.openplanner.team/stops/LaMthei1", "https://tec.openplanner.team/stops/LaMthei2"], ["https://tec.openplanner.team/stops/N501iob", "https://tec.openplanner.team/stops/N501ira"], ["https://tec.openplanner.team/stops/LThplen2", "https://tec.openplanner.team/stops/LThpoli1"], ["https://tec.openplanner.team/stops/LClange2", "https://tec.openplanner.team/stops/LFdeg--1"], ["https://tec.openplanner.team/stops/H4bo111a", "https://tec.openplanner.team/stops/H4bo119a"], ["https://tec.openplanner.team/stops/LJEchat1", "https://tec.openplanner.team/stops/LJEchat3"], ["https://tec.openplanner.team/stops/Ctrpn1", "https://tec.openplanner.team/stops/Ctrvert2"], ["https://tec.openplanner.team/stops/LWAvisi1", "https://tec.openplanner.team/stops/LWAvisi2"], ["https://tec.openplanner.team/stops/H2hp119b", "https://tec.openplanner.team/stops/H2hp261a"], ["https://tec.openplanner.team/stops/X804bpa", "https://tec.openplanner.team/stops/X804bqb"], ["https://tec.openplanner.team/stops/Bwatcpr1", "https://tec.openplanner.team/stops/Bwatcro2"], ["https://tec.openplanner.team/stops/N212afa", "https://tec.openplanner.team/stops/N212atb"], ["https://tec.openplanner.team/stops/H1by106a", "https://tec.openplanner.team/stops/H1by108e"], ["https://tec.openplanner.team/stops/H3so155a", "https://tec.openplanner.team/stops/H3so179a"], ["https://tec.openplanner.team/stops/H1fr133a", "https://tec.openplanner.team/stops/H1no143a"], ["https://tec.openplanner.team/stops/X805aha", "https://tec.openplanner.team/stops/X805ahb"], ["https://tec.openplanner.team/stops/N153adb", "https://tec.openplanner.team/stops/N154aca"], ["https://tec.openplanner.team/stops/N557aea", "https://tec.openplanner.team/stops/N557aeb"], ["https://tec.openplanner.team/stops/X765aba", "https://tec.openplanner.team/stops/X791abb"], ["https://tec.openplanner.team/stops/Blimch%C3%A21", "https://tec.openplanner.team/stops/Blimch%C3%A22"], ["https://tec.openplanner.team/stops/H4wi170a", "https://tec.openplanner.team/stops/H4wi170b"], ["https://tec.openplanner.team/stops/N557aad", "https://tec.openplanner.team/stops/N557aha"], ["https://tec.openplanner.team/stops/H2hg153b", "https://tec.openplanner.team/stops/H2sv215b"], ["https://tec.openplanner.team/stops/Bgdhlai1", "https://tec.openplanner.team/stops/Bthsvil1"], ["https://tec.openplanner.team/stops/Cchwarm2", "https://tec.openplanner.team/stops/Cmtdepo1"], ["https://tec.openplanner.team/stops/X736aab", "https://tec.openplanner.team/stops/X945ada"], ["https://tec.openplanner.team/stops/H1vb147a", "https://tec.openplanner.team/stops/H1vb147b"], ["https://tec.openplanner.team/stops/X790ama", "https://tec.openplanner.team/stops/X793aab"], ["https://tec.openplanner.team/stops/N514aha", "https://tec.openplanner.team/stops/N514ahb"], ["https://tec.openplanner.team/stops/Cgocrus1", "https://tec.openplanner.team/stops/Cgon52"], ["https://tec.openplanner.team/stops/H2hg267a", "https://tec.openplanner.team/stops/H2ll176b"], ["https://tec.openplanner.team/stops/N535ama", "https://tec.openplanner.team/stops/N535amb"], ["https://tec.openplanner.team/stops/H4fr385a", "https://tec.openplanner.team/stops/H4ka176a"], ["https://tec.openplanner.team/stops/X640aqb", "https://tec.openplanner.team/stops/X640aub"], ["https://tec.openplanner.team/stops/X658afb", "https://tec.openplanner.team/stops/X659aka"], ["https://tec.openplanner.team/stops/H5at104a", "https://tec.openplanner.team/stops/H5at131a"], ["https://tec.openplanner.team/stops/N115aab", "https://tec.openplanner.team/stops/N147aea"], ["https://tec.openplanner.team/stops/H1hr117a", "https://tec.openplanner.team/stops/H1hr126a"], ["https://tec.openplanner.team/stops/Lvcbalt1", "https://tec.openplanner.team/stops/Lvcecol2"], ["https://tec.openplanner.team/stops/X837aab", "https://tec.openplanner.team/stops/X839aga"], ["https://tec.openplanner.team/stops/LTywaut1", "https://tec.openplanner.team/stops/LTywaut2"], ["https://tec.openplanner.team/stops/X806akb", "https://tec.openplanner.team/stops/X806akc"], ["https://tec.openplanner.team/stops/LNCvann1", "https://tec.openplanner.team/stops/LRRmeta1"], ["https://tec.openplanner.team/stops/H3so168b", "https://tec.openplanner.team/stops/H3so176b"], ["https://tec.openplanner.team/stops/H4fr142a", "https://tec.openplanner.team/stops/H4fr146a"], ["https://tec.openplanner.team/stops/Bbldmun1", "https://tec.openplanner.team/stops/Bnetrbr2"], ["https://tec.openplanner.team/stops/H4ob109a", "https://tec.openplanner.team/stops/H4ob110b"], ["https://tec.openplanner.team/stops/X666aba", "https://tec.openplanner.team/stops/X666abb"], ["https://tec.openplanner.team/stops/X342afa", "https://tec.openplanner.team/stops/X342aga"], ["https://tec.openplanner.team/stops/H3so154a", "https://tec.openplanner.team/stops/H3so168a"], ["https://tec.openplanner.team/stops/Lvtcalv1", "https://tec.openplanner.team/stops/Lvtegli*"], ["https://tec.openplanner.team/stops/N874aja", "https://tec.openplanner.team/stops/N874akb"], ["https://tec.openplanner.team/stops/X775aja", "https://tec.openplanner.team/stops/X775ajb"], ["https://tec.openplanner.team/stops/Chhprai1", "https://tec.openplanner.team/stops/Chhprai2"], ["https://tec.openplanner.team/stops/X725aeb", "https://tec.openplanner.team/stops/X725aza"], ["https://tec.openplanner.team/stops/H4jm116a", "https://tec.openplanner.team/stops/H4we136b"], ["https://tec.openplanner.team/stops/Blmlbif1", "https://tec.openplanner.team/stops/Blmlbif2"], ["https://tec.openplanner.team/stops/LBUchpl2", "https://tec.openplanner.team/stops/NL30afb"], ["https://tec.openplanner.team/stops/Buccplj1", "https://tec.openplanner.team/stops/Buccron1"], ["https://tec.openplanner.team/stops/N167aba", "https://tec.openplanner.team/stops/N550ada"], ["https://tec.openplanner.team/stops/N125aaa", "https://tec.openplanner.team/stops/N125abb"], ["https://tec.openplanner.team/stops/X801aja", "https://tec.openplanner.team/stops/X801boa"], ["https://tec.openplanner.team/stops/Crodrai2", "https://tec.openplanner.team/stops/Crowilb1"], ["https://tec.openplanner.team/stops/N425afa", "https://tec.openplanner.team/stops/N425aga"], ["https://tec.openplanner.team/stops/N155aaa", "https://tec.openplanner.team/stops/N155aja"], ["https://tec.openplanner.team/stops/H1pd144a", "https://tec.openplanner.team/stops/H1pd144b"], ["https://tec.openplanner.team/stops/Bhalath1", "https://tec.openplanner.team/stops/Bhaldbo1"], ["https://tec.openplanner.team/stops/N211akb", "https://tec.openplanner.team/stops/N211aya"], ["https://tec.openplanner.team/stops/LBEbelf1", "https://tec.openplanner.team/stops/LBEtilf1"], ["https://tec.openplanner.team/stops/Ceregl2", "https://tec.openplanner.team/stops/Cerrver3"], ["https://tec.openplanner.team/stops/Lcacris1", "https://tec.openplanner.team/stops/Lvchaus2"], ["https://tec.openplanner.team/stops/Lthfren2", "https://tec.openplanner.team/stops/Lthgros1"], ["https://tec.openplanner.team/stops/LSZclem2", "https://tec.openplanner.team/stops/LSZheid1"], ["https://tec.openplanner.team/stops/LTyh51-1", "https://tec.openplanner.team/stops/LTywyna2"], ["https://tec.openplanner.team/stops/Cdamarc2", "https://tec.openplanner.team/stops/Cdaptca4"], ["https://tec.openplanner.team/stops/H1fv102a", "https://tec.openplanner.team/stops/H1ls105b"], ["https://tec.openplanner.team/stops/LFothie1", "https://tec.openplanner.team/stops/LFothie2"], ["https://tec.openplanner.team/stops/Lrocort1", "https://tec.openplanner.team/stops/Lronamo2"], ["https://tec.openplanner.team/stops/N534asb", "https://tec.openplanner.team/stops/N543cka"], ["https://tec.openplanner.team/stops/N569aea", "https://tec.openplanner.team/stops/N569aeb"], ["https://tec.openplanner.team/stops/H4ta133a", "https://tec.openplanner.team/stops/H4ta133b"], ["https://tec.openplanner.team/stops/H1sb146a", "https://tec.openplanner.team/stops/H1sb146b"], ["https://tec.openplanner.team/stops/N539aia", "https://tec.openplanner.team/stops/N539aoa"], ["https://tec.openplanner.team/stops/LLxcbr-2", "https://tec.openplanner.team/stops/LWOwonc1"], ["https://tec.openplanner.team/stops/Bbchmin1", "https://tec.openplanner.team/stops/Bbchndb2"], ["https://tec.openplanner.team/stops/Caicalv1", "https://tec.openplanner.team/stops/Crsprai3"], ["https://tec.openplanner.team/stops/Cgzcour2", "https://tec.openplanner.team/stops/Cgzplac6"], ["https://tec.openplanner.team/stops/Lhubriq1", "https://tec.openplanner.team/stops/Lhuecol2"], ["https://tec.openplanner.team/stops/LSGeg--2", "https://tec.openplanner.team/stops/LSGeg--4"], ["https://tec.openplanner.team/stops/LgAdorf1", "https://tec.openplanner.team/stops/LgAnr492"], ["https://tec.openplanner.team/stops/Cjxcoll2", "https://tec.openplanner.team/stops/Cjxvalh1"], ["https://tec.openplanner.team/stops/LAWeg--2", "https://tec.openplanner.team/stops/LAWmc--4"], ["https://tec.openplanner.team/stops/X223aca", "https://tec.openplanner.team/stops/X223acb"], ["https://tec.openplanner.team/stops/Cnaplan1", "https://tec.openplanner.team/stops/Cnaplan2"], ["https://tec.openplanner.team/stops/Cauromi2", "https://tec.openplanner.team/stops/N543aoa"], ["https://tec.openplanner.team/stops/Bengvma2", "https://tec.openplanner.team/stops/H1en104d"], ["https://tec.openplanner.team/stops/X812acb", "https://tec.openplanner.team/stops/X813adb"], ["https://tec.openplanner.team/stops/H1fr117b", "https://tec.openplanner.team/stops/H1fr151a"], ["https://tec.openplanner.team/stops/N516aca", "https://tec.openplanner.team/stops/N516ada"], ["https://tec.openplanner.team/stops/H4mo190a", "https://tec.openplanner.team/stops/H4mo206b"], ["https://tec.openplanner.team/stops/Cgzblob2", "https://tec.openplanner.team/stops/Cthha502"], ["https://tec.openplanner.team/stops/X736agb", "https://tec.openplanner.team/stops/X753abb"], ["https://tec.openplanner.team/stops/LCLacbi2", "https://tec.openplanner.team/stops/LCLstat1"], ["https://tec.openplanner.team/stops/Bbxltou1", "https://tec.openplanner.team/stops/Bbxltrv2"], ["https://tec.openplanner.team/stops/N204ahb", "https://tec.openplanner.team/stops/N204akb"], ["https://tec.openplanner.team/stops/Ctychen3", "https://tec.openplanner.team/stops/N106aea"], ["https://tec.openplanner.team/stops/LEBeg--2", "https://tec.openplanner.team/stops/LWOmart2"], ["https://tec.openplanner.team/stops/H2lc168a", "https://tec.openplanner.team/stops/H2lc170a"], ["https://tec.openplanner.team/stops/H1fl133d", "https://tec.openplanner.team/stops/H1je223b"], ["https://tec.openplanner.team/stops/Cgyhstj2", "https://tec.openplanner.team/stops/Cgyplvi2"], ["https://tec.openplanner.team/stops/Cdajume2", "https://tec.openplanner.team/stops/Cdanvpr2"], ["https://tec.openplanner.team/stops/Cmldupu1", "https://tec.openplanner.team/stops/NC01afb"], ["https://tec.openplanner.team/stops/X637abb", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/LHUfrai1", "https://tec.openplanner.team/stops/LHUpsar2"], ["https://tec.openplanner.team/stops/H2ca104a", "https://tec.openplanner.team/stops/H2mo129a"], ["https://tec.openplanner.team/stops/LFFmarc3", "https://tec.openplanner.team/stops/LFFpier2"], ["https://tec.openplanner.team/stops/LeUnisp1", "https://tec.openplanner.team/stops/LeUroll1"], ["https://tec.openplanner.team/stops/N513agc", "https://tec.openplanner.team/stops/N513agd"], ["https://tec.openplanner.team/stops/H4gz115b", "https://tec.openplanner.team/stops/H4ms166a"], ["https://tec.openplanner.team/stops/LLRrape1", "https://tec.openplanner.team/stops/LLRrape3"], ["https://tec.openplanner.team/stops/LNAbras3", "https://tec.openplanner.team/stops/LScgore2"], ["https://tec.openplanner.team/stops/Claptcf1", "https://tec.openplanner.team/stops/Claptcf2"], ["https://tec.openplanner.team/stops/N557aia", "https://tec.openplanner.team/stops/N557aja"], ["https://tec.openplanner.team/stops/Cchblne2", "https://tec.openplanner.team/stops/Cchjaur2"], ["https://tec.openplanner.team/stops/N501mta", "https://tec.openplanner.team/stops/N501mtc"], ["https://tec.openplanner.team/stops/Lvtbocl1", "https://tec.openplanner.team/stops/Lvtboux2"], ["https://tec.openplanner.team/stops/N553ada", "https://tec.openplanner.team/stops/N553afa"], ["https://tec.openplanner.team/stops/N519ajb", "https://tec.openplanner.team/stops/N525afb"], ["https://tec.openplanner.team/stops/N565aab", "https://tec.openplanner.team/stops/N565adb"], ["https://tec.openplanner.team/stops/Bflegar6", "https://tec.openplanner.team/stops/Cflbrun1"], ["https://tec.openplanner.team/stops/Clgmaco2", "https://tec.openplanner.team/stops/Ctipoui2"], ["https://tec.openplanner.team/stops/LFyWarc1", "https://tec.openplanner.team/stops/LWamass2"], ["https://tec.openplanner.team/stops/N315aaa", "https://tec.openplanner.team/stops/N365aaa"], ["https://tec.openplanner.team/stops/Csecoup2", "https://tec.openplanner.team/stops/Csefour2"], ["https://tec.openplanner.team/stops/Lvcvand2", "https://tec.openplanner.team/stops/Lvcvesd*"], ["https://tec.openplanner.team/stops/LBOande1", "https://tec.openplanner.team/stops/LWRbomb3"], ["https://tec.openplanner.team/stops/N229ahb", "https://tec.openplanner.team/stops/N229aib"], ["https://tec.openplanner.team/stops/H4ty341a", "https://tec.openplanner.team/stops/H4ty358a"], ["https://tec.openplanner.team/stops/Bdlmegl2", "https://tec.openplanner.team/stops/Bdvmsar1"], ["https://tec.openplanner.team/stops/H4mx115a", "https://tec.openplanner.team/stops/H4po127b"], ["https://tec.openplanner.team/stops/X615aua", "https://tec.openplanner.team/stops/X615aub"], ["https://tec.openplanner.team/stops/X663ajb", "https://tec.openplanner.team/stops/X663alb"], ["https://tec.openplanner.team/stops/H4ca120a", "https://tec.openplanner.team/stops/H4ca123a"], ["https://tec.openplanner.team/stops/LOCerzy1", "https://tec.openplanner.team/stops/LOCerzy2"], ["https://tec.openplanner.team/stops/H4ln128a", "https://tec.openplanner.team/stops/H4ne144b"], ["https://tec.openplanner.team/stops/Bmlnpab1", "https://tec.openplanner.team/stops/Bptbbie2"], ["https://tec.openplanner.team/stops/X925ada", "https://tec.openplanner.team/stops/X925amb"], ["https://tec.openplanner.team/stops/LWEcarr1", "https://tec.openplanner.team/stops/LWEchat2"], ["https://tec.openplanner.team/stops/CMpetr1", "https://tec.openplanner.team/stops/CMpetr2"], ["https://tec.openplanner.team/stops/X801apb", "https://tec.openplanner.team/stops/X889aab"], ["https://tec.openplanner.team/stops/H4og212a", "https://tec.openplanner.team/stops/H4vd230a"], ["https://tec.openplanner.team/stops/H2ca115a", "https://tec.openplanner.team/stops/H2ca116a"], ["https://tec.openplanner.team/stops/H4th140a", "https://tec.openplanner.team/stops/H4th142b"], ["https://tec.openplanner.team/stops/Bllnpaf4", "https://tec.openplanner.team/stops/Bmsgaxp2"], ["https://tec.openplanner.team/stops/H4ka400a", "https://tec.openplanner.team/stops/H4ty397a"], ["https://tec.openplanner.team/stops/N135ayb", "https://tec.openplanner.team/stops/N135bga"], ["https://tec.openplanner.team/stops/Ltiegli1", "https://tec.openplanner.team/stops/Ltigare1"], ["https://tec.openplanner.team/stops/Cmlgoff2", "https://tec.openplanner.team/stops/Cmltomb2"], ["https://tec.openplanner.team/stops/N538ara", "https://tec.openplanner.team/stops/N538asa"], ["https://tec.openplanner.team/stops/H4co106a", "https://tec.openplanner.team/stops/H4co110b"], ["https://tec.openplanner.team/stops/N167aab", "https://tec.openplanner.team/stops/N167ahb"], ["https://tec.openplanner.team/stops/H1fv101a", "https://tec.openplanner.team/stops/H1fv103b"], ["https://tec.openplanner.team/stops/LSZeg--1", "https://tec.openplanner.team/stops/LSZmonu5"], ["https://tec.openplanner.team/stops/H1te177a", "https://tec.openplanner.team/stops/H1te186b"], ["https://tec.openplanner.team/stops/X982bsa", "https://tec.openplanner.team/stops/X982bsb"], ["https://tec.openplanner.team/stops/Cwfbarr2", "https://tec.openplanner.team/stops/N584bqa"], ["https://tec.openplanner.team/stops/LOCeg--1", "https://tec.openplanner.team/stops/LOCerzy1"], ["https://tec.openplanner.team/stops/X850afb", "https://tec.openplanner.team/stops/X850alb"], ["https://tec.openplanner.team/stops/LFMstat1", "https://tec.openplanner.team/stops/LFPho8a1"], ["https://tec.openplanner.team/stops/H4ty299c", "https://tec.openplanner.team/stops/H4wc372a"], ["https://tec.openplanner.team/stops/H5is168b", "https://tec.openplanner.team/stops/H5is174a"], ["https://tec.openplanner.team/stops/N241agb", "https://tec.openplanner.team/stops/N270abb"], ["https://tec.openplanner.team/stops/X343aic", "https://tec.openplanner.team/stops/X346abb"], ["https://tec.openplanner.team/stops/X224afa", "https://tec.openplanner.team/stops/X398aha"], ["https://tec.openplanner.team/stops/X684aba", "https://tec.openplanner.team/stops/X685aia"], ["https://tec.openplanner.team/stops/X748abb", "https://tec.openplanner.team/stops/X748aea"], ["https://tec.openplanner.team/stops/Clomari1", "https://tec.openplanner.team/stops/Clostan2"], ["https://tec.openplanner.team/stops/Lkivolg2", "https://tec.openplanner.team/stops/Louazot1"], ["https://tec.openplanner.team/stops/LCxcour2", "https://tec.openplanner.team/stops/LCxcouv2"], ["https://tec.openplanner.team/stops/Brebrog1", "https://tec.openplanner.team/stops/H3br103b"], ["https://tec.openplanner.team/stops/Bbounci1", "https://tec.openplanner.team/stops/Btanvil2"], ["https://tec.openplanner.team/stops/Bohnrpl2", "https://tec.openplanner.team/stops/Bwatgge2"], ["https://tec.openplanner.team/stops/Cjuepee1", "https://tec.openplanner.team/stops/CMbert2"], ["https://tec.openplanner.team/stops/Caigibe1", "https://tec.openplanner.team/stops/NC11ana"], ["https://tec.openplanner.team/stops/H5bl117b", "https://tec.openplanner.team/stops/H5bl144b"], ["https://tec.openplanner.team/stops/Baudstr1", "https://tec.openplanner.team/stops/Baudstr2"], ["https://tec.openplanner.team/stops/N548aib", "https://tec.openplanner.team/stops/N548akb"], ["https://tec.openplanner.team/stops/N211aeb", "https://tec.openplanner.team/stops/N211afa"], ["https://tec.openplanner.team/stops/NL57aia", "https://tec.openplanner.team/stops/NL57aja"], ["https://tec.openplanner.team/stops/X754amb", "https://tec.openplanner.team/stops/X754ana"], ["https://tec.openplanner.team/stops/Cfosurs1", "https://tec.openplanner.team/stops/Cfosurs2"], ["https://tec.openplanner.team/stops/Bmalsmc1", "https://tec.openplanner.team/stops/Bmalsme2"], ["https://tec.openplanner.team/stops/X979aaa", "https://tec.openplanner.team/stops/X979aca"], ["https://tec.openplanner.team/stops/LrAneud2", "https://tec.openplanner.team/stops/LrAtitf1"], ["https://tec.openplanner.team/stops/X781aeb", "https://tec.openplanner.team/stops/X781aga"], ["https://tec.openplanner.team/stops/LNIbas-1", "https://tec.openplanner.team/stops/LSZstoc1"], ["https://tec.openplanner.team/stops/X784aha", "https://tec.openplanner.team/stops/X784akb"], ["https://tec.openplanner.team/stops/H5wo122a", "https://tec.openplanner.team/stops/H5wo133b"], ["https://tec.openplanner.team/stops/NB33aja", "https://tec.openplanner.team/stops/NB33ala"], ["https://tec.openplanner.team/stops/X760afb", "https://tec.openplanner.team/stops/X788aea"], ["https://tec.openplanner.team/stops/LhPkirc2", "https://tec.openplanner.team/stops/LvAwere2"], ["https://tec.openplanner.team/stops/X601aba", "https://tec.openplanner.team/stops/X601acb"], ["https://tec.openplanner.team/stops/Llghoch1", "https://tec.openplanner.team/stops/Llgsevr4"], ["https://tec.openplanner.team/stops/Ctubpos3", "https://tec.openplanner.team/stops/Ctuyser2"], ["https://tec.openplanner.team/stops/X661aba", "https://tec.openplanner.team/stops/X661abb"], ["https://tec.openplanner.team/stops/Bmrlhan3", "https://tec.openplanner.team/stops/Bmrlhan4"], ["https://tec.openplanner.team/stops/Blascvi2", "https://tec.openplanner.team/stops/Blaspch2"], ["https://tec.openplanner.team/stops/N150aca", "https://tec.openplanner.team/stops/N150aeb"], ["https://tec.openplanner.team/stops/H4av103b", "https://tec.openplanner.team/stops/H4wt160b"], ["https://tec.openplanner.team/stops/H1mj129b", "https://tec.openplanner.team/stops/H1ml112b"], ["https://tec.openplanner.team/stops/X818aba", "https://tec.openplanner.team/stops/X818ada"], ["https://tec.openplanner.team/stops/NL80aab", "https://tec.openplanner.team/stops/NL80aba"], ["https://tec.openplanner.team/stops/N115aba", "https://tec.openplanner.team/stops/N115abb"], ["https://tec.openplanner.team/stops/X782afa", "https://tec.openplanner.team/stops/X782afb"], ["https://tec.openplanner.team/stops/LON21--2", "https://tec.openplanner.team/stops/LWamass1"], ["https://tec.openplanner.team/stops/LMgkrui2", "https://tec.openplanner.team/stops/LMgwith1"], ["https://tec.openplanner.team/stops/NH01aia", "https://tec.openplanner.team/stops/NH01aib"], ["https://tec.openplanner.team/stops/Bhmmmon1", "https://tec.openplanner.team/stops/Bhmmmon2"], ["https://tec.openplanner.team/stops/Lpegole1", "https://tec.openplanner.team/stops/Lpeptwa1"], ["https://tec.openplanner.team/stops/LREheyd1", "https://tec.openplanner.team/stops/LREsp902"], ["https://tec.openplanner.team/stops/X809aab", "https://tec.openplanner.team/stops/X812bga"], ["https://tec.openplanner.team/stops/H4ka175a", "https://tec.openplanner.team/stops/H4ob109a"], ["https://tec.openplanner.team/stops/H1br123a", "https://tec.openplanner.team/stops/H1vs144a"], ["https://tec.openplanner.team/stops/H3go102a", "https://tec.openplanner.team/stops/H3go104a"], ["https://tec.openplanner.team/stops/LRmhage6", "https://tec.openplanner.team/stops/LRmsmvo3"], ["https://tec.openplanner.team/stops/LLYcalv2", "https://tec.openplanner.team/stops/LLYhoch1"], ["https://tec.openplanner.team/stops/LJvmart1", "https://tec.openplanner.team/stops/X576aba"], ["https://tec.openplanner.team/stops/N287aab", "https://tec.openplanner.team/stops/N287abb"], ["https://tec.openplanner.team/stops/N103aib", "https://tec.openplanner.team/stops/N104ada"], ["https://tec.openplanner.team/stops/H1hy125a", "https://tec.openplanner.team/stops/H1hy125b"], ["https://tec.openplanner.team/stops/Bgoegma1", "https://tec.openplanner.team/stops/Bpienod2"], ["https://tec.openplanner.team/stops/LBTchai2", "https://tec.openplanner.team/stops/LBTchai3"], ["https://tec.openplanner.team/stops/X811ahb", "https://tec.openplanner.team/stops/X834abb"], ["https://tec.openplanner.team/stops/Ccoha601", "https://tec.openplanner.team/stops/Ctrepin2"], ["https://tec.openplanner.team/stops/X638aeb", "https://tec.openplanner.team/stops/X638afa"], ["https://tec.openplanner.team/stops/Lmofays1", "https://tec.openplanner.team/stops/Lmofays2"], ["https://tec.openplanner.team/stops/H2jo163c", "https://tec.openplanner.team/stops/H2lh126a"], ["https://tec.openplanner.team/stops/LCRf14-1", "https://tec.openplanner.team/stops/LCRfavr2"], ["https://tec.openplanner.team/stops/Lvegc--6", "https://tec.openplanner.team/stops/Lveyser1"], ["https://tec.openplanner.team/stops/Bcrncjo1", "https://tec.openplanner.team/stops/Bcrncjo2"], ["https://tec.openplanner.team/stops/N507aha", "https://tec.openplanner.team/stops/N507aic"], ["https://tec.openplanner.team/stops/X601agb", "https://tec.openplanner.team/stops/X662ata"], ["https://tec.openplanner.team/stops/H4ta116b", "https://tec.openplanner.team/stops/H4ta124b"], ["https://tec.openplanner.team/stops/LAmvent2", "https://tec.openplanner.team/stops/LAmvent3"], ["https://tec.openplanner.team/stops/LSLfler1", "https://tec.openplanner.team/stops/LSLfler2"], ["https://tec.openplanner.team/stops/X773aga", "https://tec.openplanner.team/stops/X773aha"], ["https://tec.openplanner.team/stops/X634aja", "https://tec.openplanner.team/stops/X636aab"], ["https://tec.openplanner.team/stops/H4bs110b", "https://tec.openplanner.team/stops/H4bs111a"], ["https://tec.openplanner.team/stops/Bhtipir3", "https://tec.openplanner.team/stops/Bhtirin1"], ["https://tec.openplanner.team/stops/N565aic", "https://tec.openplanner.team/stops/N565aja"], ["https://tec.openplanner.team/stops/Bdoncen2", "https://tec.openplanner.team/stops/Bjcljau1"], ["https://tec.openplanner.team/stops/Cgostro1", "https://tec.openplanner.team/stops/Cgostro2"], ["https://tec.openplanner.team/stops/H4lp119b", "https://tec.openplanner.team/stops/H4pe125a"], ["https://tec.openplanner.team/stops/LHNwaut1", "https://tec.openplanner.team/stops/LHNwaut2"], ["https://tec.openplanner.team/stops/Csurela1", "https://tec.openplanner.team/stops/Csurela4"], ["https://tec.openplanner.team/stops/N509acb", "https://tec.openplanner.team/stops/N509afa"], ["https://tec.openplanner.team/stops/LBTwauc1", "https://tec.openplanner.team/stops/LCHfond1"], ["https://tec.openplanner.team/stops/LESslmo2", "https://tec.openplanner.team/stops/LTIdumo2"], ["https://tec.openplanner.team/stops/Bnivmfr1", "https://tec.openplanner.team/stops/Bnivmfr2"], ["https://tec.openplanner.team/stops/LWNwavr2", "https://tec.openplanner.team/stops/LWNwavr5"], ["https://tec.openplanner.team/stops/Cmbborn1", "https://tec.openplanner.team/stops/Csufrom6"], ["https://tec.openplanner.team/stops/LHMaube2", "https://tec.openplanner.team/stops/LRmmabr2"], ["https://tec.openplanner.team/stops/Ccstord2", "https://tec.openplanner.team/stops/Chhthui1"], ["https://tec.openplanner.team/stops/Ladlimi1", "https://tec.openplanner.team/stops/Lvefabr2"], ["https://tec.openplanner.team/stops/Cbfbies1", "https://tec.openplanner.team/stops/Cctberg2"], ["https://tec.openplanner.team/stops/LHdfays1", "https://tec.openplanner.team/stops/LHdkenn1"], ["https://tec.openplanner.team/stops/N501dha", "https://tec.openplanner.team/stops/N501ezb"], ["https://tec.openplanner.team/stops/LWOcomm2", "https://tec.openplanner.team/stops/LWOunio1"], ["https://tec.openplanner.team/stops/Lsecime2", "https://tec.openplanner.team/stops/Lsepudd1"], ["https://tec.openplanner.team/stops/LPLaube2", "https://tec.openplanner.team/stops/LPLroth1"], ["https://tec.openplanner.team/stops/Lreec--1", "https://tec.openplanner.team/stops/Lreec--2"], ["https://tec.openplanner.team/stops/LeYheid1", "https://tec.openplanner.team/stops/LeYwald1"], ["https://tec.openplanner.team/stops/LVtespo2", "https://tec.openplanner.team/stops/LVttarg2"], ["https://tec.openplanner.team/stops/H1hg179a", "https://tec.openplanner.team/stops/H1hm173a"], ["https://tec.openplanner.team/stops/Cfobriq1", "https://tec.openplanner.team/stops/Cfobriq2"], ["https://tec.openplanner.team/stops/N212ahb", "https://tec.openplanner.team/stops/N212aia"], ["https://tec.openplanner.team/stops/N548asb", "https://tec.openplanner.team/stops/N548ayb"], ["https://tec.openplanner.team/stops/Bbsgbos3", "https://tec.openplanner.team/stops/Bbsggot2"], ["https://tec.openplanner.team/stops/N163aba", "https://tec.openplanner.team/stops/N569ama"], ["https://tec.openplanner.team/stops/H1bl100a", "https://tec.openplanner.team/stops/H1bl107a"], ["https://tec.openplanner.team/stops/LBJapol1", "https://tec.openplanner.team/stops/LMAcime2"], ["https://tec.openplanner.team/stops/LAxbott2", "https://tec.openplanner.team/stops/LFsguil1"], ["https://tec.openplanner.team/stops/N424acb", "https://tec.openplanner.team/stops/NH01abc"], ["https://tec.openplanner.team/stops/H4cw104a", "https://tec.openplanner.team/stops/H4cw104b"], ["https://tec.openplanner.team/stops/N106aaa", "https://tec.openplanner.team/stops/N137acb"], ["https://tec.openplanner.team/stops/Cslbhau1", "https://tec.openplanner.team/stops/Cslegli2"], ["https://tec.openplanner.team/stops/N121aaa", "https://tec.openplanner.team/stops/N158abb"], ["https://tec.openplanner.team/stops/N120aja", "https://tec.openplanner.team/stops/N120ajb"], ["https://tec.openplanner.team/stops/X666aca", "https://tec.openplanner.team/stops/X666acb"], ["https://tec.openplanner.team/stops/H1tt104a", "https://tec.openplanner.team/stops/H1tt104b"], ["https://tec.openplanner.team/stops/Bbchmai2", "https://tec.openplanner.team/stops/Bhtibru1"], ["https://tec.openplanner.team/stops/Cmmecol1", "https://tec.openplanner.team/stops/Cmmtomb1"], ["https://tec.openplanner.team/stops/LPRecol1", "https://tec.openplanner.team/stops/LPRmoul2"], ["https://tec.openplanner.team/stops/N553aha", "https://tec.openplanner.team/stops/N553aqa"], ["https://tec.openplanner.team/stops/N214adb", "https://tec.openplanner.team/stops/N261aab"], ["https://tec.openplanner.team/stops/LOcalbe1", "https://tec.openplanner.team/stops/LTechpl2"], ["https://tec.openplanner.team/stops/X662aha", "https://tec.openplanner.team/stops/X662aob"], ["https://tec.openplanner.team/stops/X824aja", "https://tec.openplanner.team/stops/X824alb"], ["https://tec.openplanner.team/stops/X901ala", "https://tec.openplanner.team/stops/X901blb"], ["https://tec.openplanner.team/stops/LeLzost2", "https://tec.openplanner.team/stops/LkAbahn*"], ["https://tec.openplanner.team/stops/LmDdenk1", "https://tec.openplanner.team/stops/LmDkape2"], ["https://tec.openplanner.team/stops/H1fr116a", "https://tec.openplanner.team/stops/H1fr124a"], ["https://tec.openplanner.team/stops/Cmmlong1", "https://tec.openplanner.team/stops/Cmmpjou4"], ["https://tec.openplanner.team/stops/LHMhind1", "https://tec.openplanner.team/stops/LMNswar1"], ["https://tec.openplanner.team/stops/N547amb", "https://tec.openplanner.team/stops/N548aaa"], ["https://tec.openplanner.team/stops/N533aga", "https://tec.openplanner.team/stops/N533ahb"], ["https://tec.openplanner.team/stops/Lanegal1", "https://tec.openplanner.team/stops/Lanothe2"], ["https://tec.openplanner.team/stops/N550aab", "https://tec.openplanner.team/stops/N550ada"], ["https://tec.openplanner.team/stops/Cctjust2", "https://tec.openplanner.team/stops/Cctwaut2"], ["https://tec.openplanner.team/stops/LnEkirc3", "https://tec.openplanner.team/stops/LnEmett1"], ["https://tec.openplanner.team/stops/LSIespe1", "https://tec.openplanner.team/stops/LSIgehe1"], ["https://tec.openplanner.team/stops/H4fo117b", "https://tec.openplanner.team/stops/H4fo119b"], ["https://tec.openplanner.team/stops/LmYamel2", "https://tec.openplanner.team/stops/LwL100-1"], ["https://tec.openplanner.team/stops/H1ho122a", "https://tec.openplanner.team/stops/H1ho129a"], ["https://tec.openplanner.team/stops/LHUfont1", "https://tec.openplanner.team/stops/LStgare*"], ["https://tec.openplanner.team/stops/H5pe131a", "https://tec.openplanner.team/stops/H5pe151b"], ["https://tec.openplanner.team/stops/H3so161a", "https://tec.openplanner.team/stops/H3so161b"], ["https://tec.openplanner.team/stops/LHUbatt1", "https://tec.openplanner.team/stops/NL80aia"], ["https://tec.openplanner.team/stops/Bbchdev1", "https://tec.openplanner.team/stops/Bbchmin1"], ["https://tec.openplanner.team/stops/N121aja", "https://tec.openplanner.team/stops/N121ajc"], ["https://tec.openplanner.team/stops/Cgogrco1", "https://tec.openplanner.team/stops/Cgoobse1"], ["https://tec.openplanner.team/stops/H4ka181a", "https://tec.openplanner.team/stops/H4ka181b"], ["https://tec.openplanner.team/stops/H4ty319a", "https://tec.openplanner.team/stops/H4ty356a"], ["https://tec.openplanner.team/stops/N562afa", "https://tec.openplanner.team/stops/N562bkb"], ["https://tec.openplanner.team/stops/X891abb", "https://tec.openplanner.team/stops/X891ada"], ["https://tec.openplanner.team/stops/X790ada", "https://tec.openplanner.team/stops/X790adb"], ["https://tec.openplanner.team/stops/Crbegli1", "https://tec.openplanner.team/stops/Crbhurt1"], ["https://tec.openplanner.team/stops/X789aha", "https://tec.openplanner.team/stops/X789aia"], ["https://tec.openplanner.team/stops/H4rm111b", "https://tec.openplanner.team/stops/H4rm114b"], ["https://tec.openplanner.team/stops/LVEjard2", "https://tec.openplanner.team/stops/LVEroum1"], ["https://tec.openplanner.team/stops/H2mo143a", "https://tec.openplanner.team/stops/H2mo143b"], ["https://tec.openplanner.team/stops/N110aga", "https://tec.openplanner.team/stops/N110aha"], ["https://tec.openplanner.team/stops/X750bna", "https://tec.openplanner.team/stops/X784aaa"], ["https://tec.openplanner.team/stops/X774adc", "https://tec.openplanner.team/stops/X774add"], ["https://tec.openplanner.team/stops/H4gu108a", "https://tec.openplanner.team/stops/H4gu109a"], ["https://tec.openplanner.team/stops/Bixlozo2", "https://tec.openplanner.team/stops/Buccdef2"], ["https://tec.openplanner.team/stops/X669abc", "https://tec.openplanner.team/stops/X675aba"], ["https://tec.openplanner.team/stops/X741aaa", "https://tec.openplanner.team/stops/X741abb"], ["https://tec.openplanner.team/stops/Clbchba2", "https://tec.openplanner.team/stops/Cthstre1"], ["https://tec.openplanner.team/stops/LWEeg--1", "https://tec.openplanner.team/stops/LWEpl--1"], ["https://tec.openplanner.team/stops/Cralimi2", "https://tec.openplanner.team/stops/Cravign2"], ["https://tec.openplanner.team/stops/Llgtill2", "https://tec.openplanner.team/stops/Llgtunn2"], ["https://tec.openplanner.team/stops/Csepost1", "https://tec.openplanner.team/stops/Csepost2"], ["https://tec.openplanner.team/stops/N353aaa", "https://tec.openplanner.team/stops/N353afa"], ["https://tec.openplanner.team/stops/N145ada", "https://tec.openplanner.team/stops/N145aga"], ["https://tec.openplanner.team/stops/LJAfawe1", "https://tec.openplanner.team/stops/LJAhanq1"], ["https://tec.openplanner.team/stops/X659afa", "https://tec.openplanner.team/stops/X659afb"], ["https://tec.openplanner.team/stops/Bnivlpa1", "https://tec.openplanner.team/stops/Bnivzon1"], ["https://tec.openplanner.team/stops/X939aeb", "https://tec.openplanner.team/stops/X939afb"], ["https://tec.openplanner.team/stops/Clsferr1", "https://tec.openplanner.team/stops/Clsstpi1"], ["https://tec.openplanner.team/stops/LBjpech2", "https://tec.openplanner.team/stops/LLelans1"], ["https://tec.openplanner.team/stops/X801bia", "https://tec.openplanner.team/stops/X801bka"], ["https://tec.openplanner.team/stops/Crbecol1", "https://tec.openplanner.team/stops/Crbegli2"], ["https://tec.openplanner.team/stops/LJEchat1", "https://tec.openplanner.team/stops/LVEphar1"], ["https://tec.openplanner.team/stops/Bmarlor1", "https://tec.openplanner.team/stops/Bmarpla2"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X664aab"], ["https://tec.openplanner.team/stops/Lfhhosp1", "https://tec.openplanner.team/stops/Lfhpass2"], ["https://tec.openplanner.team/stops/X871aaa", "https://tec.openplanner.team/stops/X872aga"], ["https://tec.openplanner.team/stops/H1hl122a", "https://tec.openplanner.team/stops/H1vs145b"], ["https://tec.openplanner.team/stops/H1gh152b", "https://tec.openplanner.team/stops/H1gh166b"], ["https://tec.openplanner.team/stops/H1bb113a", "https://tec.openplanner.team/stops/H1ho123b"], ["https://tec.openplanner.team/stops/Lgrfalc2", "https://tec.openplanner.team/stops/Lgrrein1"], ["https://tec.openplanner.team/stops/H4bx167a", "https://tec.openplanner.team/stops/H4rx142a"], ["https://tec.openplanner.team/stops/X999afb", "https://tec.openplanner.team/stops/X999aoa"], ["https://tec.openplanner.team/stops/LRachen1", "https://tec.openplanner.team/stops/LRagrch2"], ["https://tec.openplanner.team/stops/X614agb", "https://tec.openplanner.team/stops/X615bhb"], ["https://tec.openplanner.team/stops/X758aaa", "https://tec.openplanner.team/stops/X758aha"], ["https://tec.openplanner.team/stops/LMOm64-1", "https://tec.openplanner.team/stops/LMOstat2"], ["https://tec.openplanner.team/stops/X826aab", "https://tec.openplanner.team/stops/X826aha"], ["https://tec.openplanner.team/stops/Cgocitn1", "https://tec.openplanner.team/stops/Cgocrus1"], ["https://tec.openplanner.team/stops/X724aha", "https://tec.openplanner.team/stops/X766aha"], ["https://tec.openplanner.team/stops/LTRchpl2", "https://tec.openplanner.team/stops/LTRmosb2"], ["https://tec.openplanner.team/stops/Chpceri1", "https://tec.openplanner.team/stops/Chprobi2"], ["https://tec.openplanner.team/stops/H2mo124a", "https://tec.openplanner.team/stops/H2mo130c"], ["https://tec.openplanner.team/stops/N229aib", "https://tec.openplanner.team/stops/N229apa"], ["https://tec.openplanner.team/stops/Cmtrneu1", "https://tec.openplanner.team/stops/Cmtrneu2"], ["https://tec.openplanner.team/stops/Cchparc3", "https://tec.openplanner.team/stops/CMparc2"], ["https://tec.openplanner.team/stops/LVIhv--2", "https://tec.openplanner.team/stops/LVIsouv1"], ["https://tec.openplanner.team/stops/Chpplac1", "https://tec.openplanner.team/stops/Cmesafi1"], ["https://tec.openplanner.team/stops/N543cka", "https://tec.openplanner.team/stops/N543coa"], ["https://tec.openplanner.team/stops/Cfocmed2", "https://tec.openplanner.team/stops/Cfojoli1"], ["https://tec.openplanner.team/stops/X804boa", "https://tec.openplanner.team/stops/X804bra"], ["https://tec.openplanner.team/stops/H2bh108b", "https://tec.openplanner.team/stops/H2bh121a"], ["https://tec.openplanner.team/stops/LTamag1", "https://tec.openplanner.team/stops/LTamoul2"], ["https://tec.openplanner.team/stops/N211aka", "https://tec.openplanner.team/stops/N225aeb"], ["https://tec.openplanner.team/stops/X979aea", "https://tec.openplanner.team/stops/X979aob"], ["https://tec.openplanner.team/stops/LpEbins1", "https://tec.openplanner.team/stops/LrTbahn1"], ["https://tec.openplanner.team/stops/H1bu139a", "https://tec.openplanner.team/stops/H1bu142b"], ["https://tec.openplanner.team/stops/H1wa135a", "https://tec.openplanner.team/stops/H1wa144b"], ["https://tec.openplanner.team/stops/H1je212a", "https://tec.openplanner.team/stops/H1je212b"], ["https://tec.openplanner.team/stops/N106aaa", "https://tec.openplanner.team/stops/N106aba"], ["https://tec.openplanner.team/stops/Bwatfon1", "https://tec.openplanner.team/stops/Bwatpcs2"], ["https://tec.openplanner.team/stops/Bixleix1", "https://tec.openplanner.team/stops/Bixlfla2"], ["https://tec.openplanner.team/stops/X747ahb", "https://tec.openplanner.team/stops/X747aib"], ["https://tec.openplanner.team/stops/Bbealou2", "https://tec.openplanner.team/stops/Bbeapim1"], ["https://tec.openplanner.team/stops/Cfcpla2", "https://tec.openplanner.team/stops/Cfcplac4"], ["https://tec.openplanner.team/stops/Clogfay1", "https://tec.openplanner.team/stops/Clojone2"], ["https://tec.openplanner.team/stops/N585abb", "https://tec.openplanner.team/stops/N585aib"], ["https://tec.openplanner.team/stops/Bmarcat2", "https://tec.openplanner.team/stops/Bmargve1"], ["https://tec.openplanner.team/stops/N584aob", "https://tec.openplanner.team/stops/N584aqb"], ["https://tec.openplanner.team/stops/Cplrmon1", "https://tec.openplanner.team/stops/Cplrmon2"], ["https://tec.openplanner.team/stops/H1so137a", "https://tec.openplanner.team/stops/H1so143a"], ["https://tec.openplanner.team/stops/X601ata", "https://tec.openplanner.team/stops/X601cqa"], ["https://tec.openplanner.team/stops/X922acb", "https://tec.openplanner.team/stops/X922adb"], ["https://tec.openplanner.team/stops/Livjeu-1", "https://tec.openplanner.team/stops/Livjeu-2"], ["https://tec.openplanner.team/stops/Buccfja1", "https://tec.openplanner.team/stops/Buccron1"], ["https://tec.openplanner.team/stops/LESchac1", "https://tec.openplanner.team/stops/LFNecpr*"], ["https://tec.openplanner.team/stops/Lhuecol1", "https://tec.openplanner.team/stops/Lhurigu2"], ["https://tec.openplanner.team/stops/X812akb", "https://tec.openplanner.team/stops/X812ala"], ["https://tec.openplanner.team/stops/LSZgare1", "https://tec.openplanner.team/stops/LSZroqu2"], ["https://tec.openplanner.team/stops/X602aaa", "https://tec.openplanner.team/stops/X602arb"], ["https://tec.openplanner.team/stops/X802aeb", "https://tec.openplanner.team/stops/X818ajb"], ["https://tec.openplanner.team/stops/Lceembo2", "https://tec.openplanner.team/stops/Lcelhon3"], ["https://tec.openplanner.team/stops/Bborbif1", "https://tec.openplanner.team/stops/Bitrmon1"], ["https://tec.openplanner.team/stops/Bmrqgar2", "https://tec.openplanner.team/stops/H1mk115a"], ["https://tec.openplanner.team/stops/Bgzdfpo1", "https://tec.openplanner.team/stops/Bgzdgpa1"], ["https://tec.openplanner.team/stops/LVMrout1", "https://tec.openplanner.team/stops/LVMrout2"], ["https://tec.openplanner.team/stops/X801bxa", "https://tec.openplanner.team/stops/X802aza"], ["https://tec.openplanner.team/stops/H1eq115b", "https://tec.openplanner.team/stops/H1eq117a"], ["https://tec.openplanner.team/stops/N501apb", "https://tec.openplanner.team/stops/N501mja"], ["https://tec.openplanner.team/stops/H5qu153a", "https://tec.openplanner.team/stops/H5qu158a"], ["https://tec.openplanner.team/stops/H4lu126b", "https://tec.openplanner.team/stops/H4mo195b"], ["https://tec.openplanner.team/stops/Brixga11", "https://tec.openplanner.team/stops/Brixpao3"], ["https://tec.openplanner.team/stops/Bbryfon1", "https://tec.openplanner.team/stops/Bsampli1"], ["https://tec.openplanner.team/stops/NL57aeb", "https://tec.openplanner.team/stops/NL68agb"], ["https://tec.openplanner.team/stops/H1gn148a", "https://tec.openplanner.team/stops/H1gn151a"], ["https://tec.openplanner.team/stops/N340aea", "https://tec.openplanner.team/stops/N340afa"], ["https://tec.openplanner.team/stops/Bchgbar1", "https://tec.openplanner.team/stops/Bchgbar2"], ["https://tec.openplanner.team/stops/NR38aba", "https://tec.openplanner.team/stops/NR38abb"], ["https://tec.openplanner.team/stops/X938aea", "https://tec.openplanner.team/stops/X938aeb"], ["https://tec.openplanner.team/stops/H1ms270b", "https://tec.openplanner.team/stops/H1ms277a"], ["https://tec.openplanner.team/stops/X359agb", "https://tec.openplanner.team/stops/X359amb"], ["https://tec.openplanner.team/stops/Lmlcite*", "https://tec.openplanner.team/stops/Lmlrosa2"], ["https://tec.openplanner.team/stops/Lmlrosa1", "https://tec.openplanner.team/stops/Lmlrosa2"], ["https://tec.openplanner.team/stops/Lhracec2", "https://tec.openplanner.team/stops/Lhrespe2"], ["https://tec.openplanner.team/stops/H2go113b", "https://tec.openplanner.team/stops/H2mg153a"], ["https://tec.openplanner.team/stops/Lwaelme1", "https://tec.openplanner.team/stops/Lwakipe1"], ["https://tec.openplanner.team/stops/Bmarcat1", "https://tec.openplanner.team/stops/N584axb"], ["https://tec.openplanner.team/stops/X741aba", "https://tec.openplanner.team/stops/X752aca"], ["https://tec.openplanner.team/stops/X660afb", "https://tec.openplanner.team/stops/X840aab"], ["https://tec.openplanner.team/stops/Cchtiro3", "https://tec.openplanner.team/stops/CMtirou2"], ["https://tec.openplanner.team/stops/LsCbrau2", "https://tec.openplanner.team/stops/LsCkirc1"], ["https://tec.openplanner.team/stops/X902axa", "https://tec.openplanner.team/stops/X943ahb"], ["https://tec.openplanner.team/stops/X729aaa", "https://tec.openplanner.team/stops/X729aac"], ["https://tec.openplanner.team/stops/H4gu111a", "https://tec.openplanner.team/stops/H4ta116a"], ["https://tec.openplanner.team/stops/H1tl121a", "https://tec.openplanner.team/stops/H1tl122a"], ["https://tec.openplanner.team/stops/H1em109a", "https://tec.openplanner.team/stops/H1em109b"], ["https://tec.openplanner.team/stops/NL57aea", "https://tec.openplanner.team/stops/NL57aga"], ["https://tec.openplanner.team/stops/N539ahb", "https://tec.openplanner.team/stops/N539aqb"], ["https://tec.openplanner.team/stops/H5at118a", "https://tec.openplanner.team/stops/H5at120b"], ["https://tec.openplanner.team/stops/H1bl100a", "https://tec.openplanner.team/stops/H1eq116a"], ["https://tec.openplanner.team/stops/Brsggar2", "https://tec.openplanner.team/stops/Brsggea1"], ["https://tec.openplanner.team/stops/LOrchau1", "https://tec.openplanner.team/stops/LOreg--2"], ["https://tec.openplanner.team/stops/Bllnpaf3", "https://tec.openplanner.team/stops/Bllnpaf4"], ["https://tec.openplanner.team/stops/X602adb", "https://tec.openplanner.team/stops/X602aqa"], ["https://tec.openplanner.team/stops/H4fa125a", "https://tec.openplanner.team/stops/H4ms145b"], ["https://tec.openplanner.team/stops/H4ty301d", "https://tec.openplanner.team/stops/H4ty335b"], ["https://tec.openplanner.team/stops/N563ama", "https://tec.openplanner.team/stops/N570aca"], ["https://tec.openplanner.team/stops/LFychpl2", "https://tec.openplanner.team/stops/LiVkreu4"], ["https://tec.openplanner.team/stops/Lvtbocl2", "https://tec.openplanner.team/stops/Lvtlomb2"], ["https://tec.openplanner.team/stops/Bwategb2", "https://tec.openplanner.team/stops/Bwatran2"], ["https://tec.openplanner.team/stops/H2sv212b", "https://tec.openplanner.team/stops/H2tr257b"], ["https://tec.openplanner.team/stops/NH01aha", "https://tec.openplanner.team/stops/NH01ajb"], ["https://tec.openplanner.team/stops/H4ne135b", "https://tec.openplanner.team/stops/H4te258a"], ["https://tec.openplanner.team/stops/LhEcolo1", "https://tec.openplanner.team/stops/LhElont1"], ["https://tec.openplanner.team/stops/H4lz124a", "https://tec.openplanner.team/stops/H4lz124b"], ["https://tec.openplanner.team/stops/H4ta128a", "https://tec.openplanner.team/stops/H4ta128b"], ["https://tec.openplanner.team/stops/N201akb", "https://tec.openplanner.team/stops/N201ala"], ["https://tec.openplanner.team/stops/N201apa", "https://tec.openplanner.team/stops/N211bba"], ["https://tec.openplanner.team/stops/Cvllerm1", "https://tec.openplanner.team/stops/Cvlstan1"], ["https://tec.openplanner.team/stops/Bwaypon2", "https://tec.openplanner.team/stops/Cwspavi1"], ["https://tec.openplanner.team/stops/Brsgcfl1", "https://tec.openplanner.team/stops/Brsgleq1"], ["https://tec.openplanner.team/stops/X921acb", "https://tec.openplanner.team/stops/X921amb"], ["https://tec.openplanner.team/stops/Bhptegl1", "https://tec.openplanner.team/stops/Bhptpla1"], ["https://tec.openplanner.team/stops/N501fsa", "https://tec.openplanner.team/stops/N501mab"], ["https://tec.openplanner.team/stops/Lvefran1", "https://tec.openplanner.team/stops/Lve-isi1"], ["https://tec.openplanner.team/stops/H1ne141a", "https://tec.openplanner.team/stops/H1ne147a"], ["https://tec.openplanner.team/stops/N543bna", "https://tec.openplanner.team/stops/N543boa"], ["https://tec.openplanner.team/stops/Bnstgar2", "https://tec.openplanner.team/stops/Bnstpla1"], ["https://tec.openplanner.team/stops/LTRthie1", "https://tec.openplanner.team/stops/LTRthie2"], ["https://tec.openplanner.team/stops/N124aaa", "https://tec.openplanner.team/stops/N124aba"], ["https://tec.openplanner.team/stops/N218aaa", "https://tec.openplanner.team/stops/N218afa"], ["https://tec.openplanner.team/stops/X901awa", "https://tec.openplanner.team/stops/X901axa"], ["https://tec.openplanner.team/stops/H4hu119b", "https://tec.openplanner.team/stops/H4hu122a"], ["https://tec.openplanner.team/stops/LOLfoss1", "https://tec.openplanner.team/stops/LOLrafh1"], ["https://tec.openplanner.team/stops/Cpiegli1", "https://tec.openplanner.team/stops/Cpipost2"], ["https://tec.openplanner.team/stops/H3bi104a", "https://tec.openplanner.team/stops/H3bi116a"], ["https://tec.openplanner.team/stops/Ladfran1", "https://tec.openplanner.team/stops/Ldineuf1"], ["https://tec.openplanner.team/stops/Blimegl1", "https://tec.openplanner.team/stops/Bottcbp2"], ["https://tec.openplanner.team/stops/Cgxchan1", "https://tec.openplanner.team/stops/Cgxpair2"], ["https://tec.openplanner.team/stops/N357aab", "https://tec.openplanner.team/stops/N357adb"], ["https://tec.openplanner.team/stops/Cjuquai2", "https://tec.openplanner.team/stops/Cjuvpla2"], ["https://tec.openplanner.team/stops/Cflgazo2", "https://tec.openplanner.team/stops/Cflsncb2"], ["https://tec.openplanner.team/stops/LSOvoie1", "https://tec.openplanner.team/stops/LSOvoie2"], ["https://tec.openplanner.team/stops/H1do111b", "https://tec.openplanner.team/stops/H1do114b"], ["https://tec.openplanner.team/stops/N135aqb", "https://tec.openplanner.team/stops/N135atb"], ["https://tec.openplanner.team/stops/LWEhosp2", "https://tec.openplanner.team/stops/LWEhosp3"], ["https://tec.openplanner.team/stops/LaMpark1", "https://tec.openplanner.team/stops/LaMpark2"], ["https://tec.openplanner.team/stops/H1fl134b", "https://tec.openplanner.team/stops/H1je368a"], ["https://tec.openplanner.team/stops/N235afa", "https://tec.openplanner.team/stops/N235afb"], ["https://tec.openplanner.team/stops/X715ala", "https://tec.openplanner.team/stops/X715aqa"], ["https://tec.openplanner.team/stops/H4mo192a", "https://tec.openplanner.team/stops/H4rk101b"], ["https://tec.openplanner.team/stops/N547aea", "https://tec.openplanner.team/stops/N565ada"], ["https://tec.openplanner.team/stops/Btslenf2", "https://tec.openplanner.team/stops/Btslpbr2"], ["https://tec.openplanner.team/stops/Bbldmun1", "https://tec.openplanner.team/stops/Bbldmun2"], ["https://tec.openplanner.team/stops/Lvchaus2", "https://tec.openplanner.team/stops/Lvchenn1"], ["https://tec.openplanner.team/stops/X618aca", "https://tec.openplanner.team/stops/X618ala"], ["https://tec.openplanner.team/stops/LBjvill3", "https://tec.openplanner.team/stops/X575aib"], ["https://tec.openplanner.team/stops/X923aab", "https://tec.openplanner.team/stops/X923abb"], ["https://tec.openplanner.team/stops/H2ha136b", "https://tec.openplanner.team/stops/H2ha136c"], ["https://tec.openplanner.team/stops/Cfrbrin1", "https://tec.openplanner.team/stops/Cfrsour2"], ["https://tec.openplanner.team/stops/Bwavdmo2", "https://tec.openplanner.team/stops/Bwavdmo4"], ["https://tec.openplanner.team/stops/H4gu108c", "https://tec.openplanner.team/stops/H4jm116b"], ["https://tec.openplanner.team/stops/Bhenron2", "https://tec.openplanner.team/stops/Bhensei2"], ["https://tec.openplanner.team/stops/Bjaugaz2", "https://tec.openplanner.team/stops/Bjaupro2"], ["https://tec.openplanner.team/stops/Bblaccm1", "https://tec.openplanner.team/stops/Bwatb4s1"], ["https://tec.openplanner.team/stops/N501gqa", "https://tec.openplanner.team/stops/N501ndb"], ["https://tec.openplanner.team/stops/Lsecime1", "https://tec.openplanner.team/stops/Lserena2"], ["https://tec.openplanner.team/stops/LGmloti1", "https://tec.openplanner.team/stops/LHmcarr2"], ["https://tec.openplanner.team/stops/LTIdamr2", "https://tec.openplanner.team/stops/LTIpora2"], ["https://tec.openplanner.team/stops/Cflbrun2", "https://tec.openplanner.team/stops/Cflchmo1"], ["https://tec.openplanner.team/stops/N576aca", "https://tec.openplanner.team/stops/N576anb"], ["https://tec.openplanner.team/stops/LSyec--2", "https://tec.openplanner.team/stops/LSypesy2"], ["https://tec.openplanner.team/stops/LOesour1", "https://tec.openplanner.team/stops/LOesour2"], ["https://tec.openplanner.team/stops/H1gi118b", "https://tec.openplanner.team/stops/H1gi119a"], ["https://tec.openplanner.team/stops/Brebcgi1", "https://tec.openplanner.team/stops/Brebraf2"], ["https://tec.openplanner.team/stops/LOuhalb2", "https://tec.openplanner.team/stops/LOuouff1"], ["https://tec.openplanner.team/stops/LAVdepr2", "https://tec.openplanner.team/stops/LVHweri2"], ["https://tec.openplanner.team/stops/LHrbast1", "https://tec.openplanner.team/stops/LHrreal1"], ["https://tec.openplanner.team/stops/X636adb", "https://tec.openplanner.team/stops/X636ala"], ["https://tec.openplanner.team/stops/X904aha", "https://tec.openplanner.team/stops/X904aib"], ["https://tec.openplanner.team/stops/Bbiemse1", "https://tec.openplanner.team/stops/Bgzdegl4"], ["https://tec.openplanner.team/stops/Lmnmart2", "https://tec.openplanner.team/stops/Lsmsech3"], ["https://tec.openplanner.team/stops/LAMhopi1", "https://tec.openplanner.team/stops/LAMjaur1"], ["https://tec.openplanner.team/stops/X917ajb", "https://tec.openplanner.team/stops/X917aka"], ["https://tec.openplanner.team/stops/Lroeg--3", "https://tec.openplanner.team/stops/Lroeg--4"], ["https://tec.openplanner.team/stops/X750baa", "https://tec.openplanner.team/stops/X750bja"], ["https://tec.openplanner.team/stops/Lfhhoul1", "https://tec.openplanner.team/stops/Lfhtrca2"], ["https://tec.openplanner.team/stops/H4fr140b", "https://tec.openplanner.team/stops/H4rc234c"], ["https://tec.openplanner.team/stops/Ccugrtr1", "https://tec.openplanner.team/stops/Ccunove1"], ["https://tec.openplanner.team/stops/LeUbahn3", "https://tec.openplanner.team/stops/LeUhook2"], ["https://tec.openplanner.team/stops/H1ba106b", "https://tec.openplanner.team/stops/H1ba118a"], ["https://tec.openplanner.team/stops/LVEdTEC2", "https://tec.openplanner.team/stops/LVEjard1"], ["https://tec.openplanner.team/stops/LBk79--1", "https://tec.openplanner.team/stops/LBk79--2"], ["https://tec.openplanner.team/stops/LmIcafe2", "https://tec.openplanner.team/stops/LmIzent2"], ["https://tec.openplanner.team/stops/H1bl107a", "https://tec.openplanner.team/stops/H1pd142a"], ["https://tec.openplanner.team/stops/N534aqb", "https://tec.openplanner.team/stops/N534bba"], ["https://tec.openplanner.team/stops/LHHlomb2", "https://tec.openplanner.team/stops/LOmlime2"], ["https://tec.openplanner.team/stops/LBTcarr1", "https://tec.openplanner.team/stops/LBTnors2"], ["https://tec.openplanner.team/stops/Bbeubos2", "https://tec.openplanner.team/stops/N576adb"], ["https://tec.openplanner.team/stops/Lmovand2", "https://tec.openplanner.team/stops/Lmoweri2"], ["https://tec.openplanner.team/stops/LWn24--2", "https://tec.openplanner.team/stops/LWneg--1"], ["https://tec.openplanner.team/stops/Cfcleco1", "https://tec.openplanner.team/stops/Cfcpier1"], ["https://tec.openplanner.team/stops/H2ma265a", "https://tec.openplanner.team/stops/H2sb231b"], ["https://tec.openplanner.team/stops/LAieg--2", "https://tec.openplanner.team/stops/LAigrim1"], ["https://tec.openplanner.team/stops/Cwfaldi1", "https://tec.openplanner.team/stops/Cwfcast2"], ["https://tec.openplanner.team/stops/Cgycime2", "https://tec.openplanner.team/stops/Cgysole1"], ["https://tec.openplanner.team/stops/LhMmeil1", "https://tec.openplanner.team/stops/LhMwing2"], ["https://tec.openplanner.team/stops/Lre3che1", "https://tec.openplanner.team/stops/Lre3che2"], ["https://tec.openplanner.team/stops/Bptrgri2", "https://tec.openplanner.team/stops/H2gy101b"], ["https://tec.openplanner.team/stops/H4to139b", "https://tec.openplanner.team/stops/H4to139c"], ["https://tec.openplanner.team/stops/LBNgarn2", "https://tec.openplanner.team/stops/LeUindu2"], ["https://tec.openplanner.team/stops/LVbcoul1", "https://tec.openplanner.team/stops/LVbpave1"], ["https://tec.openplanner.team/stops/LmImirf2", "https://tec.openplanner.team/stops/LmRkreu3"], ["https://tec.openplanner.team/stops/LSkchwa2", "https://tec.openplanner.team/stops/LSkdouf2"], ["https://tec.openplanner.team/stops/N511amb", "https://tec.openplanner.team/stops/N511ara"], ["https://tec.openplanner.team/stops/Cvpcour2", "https://tec.openplanner.team/stops/Cvpplan2"], ["https://tec.openplanner.team/stops/X770ada", "https://tec.openplanner.team/stops/X770adb"], ["https://tec.openplanner.team/stops/N244atb", "https://tec.openplanner.team/stops/N244aua"], ["https://tec.openplanner.team/stops/Cchtiro3", "https://tec.openplanner.team/stops/Cchtiro4"], ["https://tec.openplanner.team/stops/Lalmitt1", "https://tec.openplanner.team/stops/LXhcite2"], ["https://tec.openplanner.team/stops/Cctbois4", "https://tec.openplanner.team/stops/Cmtchas2"], ["https://tec.openplanner.team/stops/LHTcent2", "https://tec.openplanner.team/stops/LHThall4"], ["https://tec.openplanner.team/stops/H1cu121a", "https://tec.openplanner.team/stops/H1cu128b"], ["https://tec.openplanner.team/stops/X602abb", "https://tec.openplanner.team/stops/X623acb"], ["https://tec.openplanner.team/stops/Bgoesch3", "https://tec.openplanner.team/stops/Boplcsj3"], ["https://tec.openplanner.team/stops/Bpergar3", "https://tec.openplanner.team/stops/Bperpla2"], ["https://tec.openplanner.team/stops/X602ala", "https://tec.openplanner.team/stops/X602aoa"], ["https://tec.openplanner.team/stops/X316abb", "https://tec.openplanner.team/stops/X316aca"], ["https://tec.openplanner.team/stops/Llochar1", "https://tec.openplanner.team/stops/Lloretr1"], ["https://tec.openplanner.team/stops/H2sb227a", "https://tec.openplanner.team/stops/H2sb271a"], ["https://tec.openplanner.team/stops/N515aeb", "https://tec.openplanner.team/stops/N515afb"], ["https://tec.openplanner.team/stops/X615aka", "https://tec.openplanner.team/stops/X615brb"], ["https://tec.openplanner.team/stops/N501dca", "https://tec.openplanner.team/stops/N501mub"], ["https://tec.openplanner.team/stops/H1wa142b", "https://tec.openplanner.team/stops/H1wa164b"], ["https://tec.openplanner.team/stops/H4bx167a", "https://tec.openplanner.team/stops/H4ne139b"], ["https://tec.openplanner.team/stops/Cbiseur1", "https://tec.openplanner.team/stops/Cbiseur2"], ["https://tec.openplanner.team/stops/Ljucaba1", "https://tec.openplanner.team/stops/Ljucaba2"], ["https://tec.openplanner.team/stops/Cgxprad1", "https://tec.openplanner.team/stops/Cgxprad2"], ["https://tec.openplanner.team/stops/N547adb", "https://tec.openplanner.team/stops/N547aea"], ["https://tec.openplanner.team/stops/LWHkerk1", "https://tec.openplanner.team/stops/LWHzave1"], ["https://tec.openplanner.team/stops/Crorpai2", "https://tec.openplanner.team/stops/Crowilb2"], ["https://tec.openplanner.team/stops/Blpgbat1", "https://tec.openplanner.team/stops/Cgnpass1"], ["https://tec.openplanner.team/stops/Cmx4che1", "https://tec.openplanner.team/stops/Cmx4che2"], ["https://tec.openplanner.team/stops/Loumair1", "https://tec.openplanner.team/stops/Lscbarg1"], ["https://tec.openplanner.team/stops/Lcacaps1", "https://tec.openplanner.team/stops/Lcalaro2"], ["https://tec.openplanner.team/stops/Cpcarse1", "https://tec.openplanner.team/stops/Cpcbrig1"], ["https://tec.openplanner.team/stops/N162aaa", "https://tec.openplanner.team/stops/N162ada"], ["https://tec.openplanner.team/stops/LbUhuge2", "https://tec.openplanner.team/stops/LbUmolk1"], ["https://tec.openplanner.team/stops/H1si169a", "https://tec.openplanner.team/stops/H1si169b"], ["https://tec.openplanner.team/stops/X661atb", "https://tec.openplanner.team/stops/X661aua"], ["https://tec.openplanner.team/stops/Cfmcoro2", "https://tec.openplanner.team/stops/Cfmnoci2"], ["https://tec.openplanner.team/stops/X608afa", "https://tec.openplanner.team/stops/X608afb"], ["https://tec.openplanner.team/stops/Bboneta1", "https://tec.openplanner.team/stops/Bboneta2"], ["https://tec.openplanner.team/stops/X940aaa", "https://tec.openplanner.team/stops/X940abb"], ["https://tec.openplanner.team/stops/X740abd", "https://tec.openplanner.team/stops/X740afb"], ["https://tec.openplanner.team/stops/N241aeb", "https://tec.openplanner.team/stops/N241afb"], ["https://tec.openplanner.team/stops/N549ada", "https://tec.openplanner.team/stops/N549adb"], ["https://tec.openplanner.team/stops/N515aib", "https://tec.openplanner.team/stops/N515aid"], ["https://tec.openplanner.team/stops/LVSpota1", "https://tec.openplanner.team/stops/LVSpota2"], ["https://tec.openplanner.team/stops/H1gr112b", "https://tec.openplanner.team/stops/H1gr116b"], ["https://tec.openplanner.team/stops/LDomoul1", "https://tec.openplanner.team/stops/LJedonc1"], ["https://tec.openplanner.team/stops/LESmont2", "https://tec.openplanner.team/stops/LESpont3"], ["https://tec.openplanner.team/stops/H4ve136a", "https://tec.openplanner.team/stops/H4ve140a"], ["https://tec.openplanner.team/stops/Cmiegli1", "https://tec.openplanner.team/stops/Cmiegli2"], ["https://tec.openplanner.team/stops/H2ec104a", "https://tec.openplanner.team/stops/H2ec105a"], ["https://tec.openplanner.team/stops/NC11aka", "https://tec.openplanner.team/stops/NC11akb"], ["https://tec.openplanner.team/stops/N506bha", "https://tec.openplanner.team/stops/N506bia"], ["https://tec.openplanner.team/stops/Lghcoqs1", "https://tec.openplanner.team/stops/Lghleon1"], ["https://tec.openplanner.team/stops/Lhr1ave5", "https://tec.openplanner.team/stops/Lhr2ave2"], ["https://tec.openplanner.team/stops/H1ro136a", "https://tec.openplanner.team/stops/H1ro137b"], ["https://tec.openplanner.team/stops/N534btb", "https://tec.openplanner.team/stops/N534bva"], ["https://tec.openplanner.team/stops/Bcrnrpc1", "https://tec.openplanner.team/stops/Bcrntru1"], ["https://tec.openplanner.team/stops/Cmregli3", "https://tec.openplanner.team/stops/N162aca"], ["https://tec.openplanner.team/stops/H4er125a", "https://tec.openplanner.team/stops/H4er125b"], ["https://tec.openplanner.team/stops/H2hg144a", "https://tec.openplanner.team/stops/H2hg155c"], ["https://tec.openplanner.team/stops/Brxmcna2", "https://tec.openplanner.team/stops/Brxmhai3"], ["https://tec.openplanner.team/stops/X224afb", "https://tec.openplanner.team/stops/X394adb"], ["https://tec.openplanner.team/stops/H1hl129a", "https://tec.openplanner.team/stops/H1hl129b"], ["https://tec.openplanner.team/stops/LBIpont1", "https://tec.openplanner.team/stops/LBIpont2"], ["https://tec.openplanner.team/stops/H4mo174a", "https://tec.openplanner.team/stops/H4mo179a"], ["https://tec.openplanner.team/stops/N532abb", "https://tec.openplanner.team/stops/N532amb"], ["https://tec.openplanner.team/stops/Lghgros1", "https://tec.openplanner.team/stops/Lghlogi1"], ["https://tec.openplanner.team/stops/N349aga", "https://tec.openplanner.team/stops/N349agb"], ["https://tec.openplanner.team/stops/X993aca", "https://tec.openplanner.team/stops/X994ama"], ["https://tec.openplanner.team/stops/H4es111a", "https://tec.openplanner.team/stops/H4es111b"], ["https://tec.openplanner.team/stops/Bhtirin1", "https://tec.openplanner.team/stops/Bhtirin2"], ["https://tec.openplanner.team/stops/Bbaubru1", "https://tec.openplanner.team/stops/Bnivche1"], ["https://tec.openplanner.team/stops/H4co133a", "https://tec.openplanner.team/stops/H4mn100a"], ["https://tec.openplanner.team/stops/NL78ajb", "https://tec.openplanner.team/stops/NL79aab"], ["https://tec.openplanner.team/stops/H1ha182a", "https://tec.openplanner.team/stops/H1ss348b"], ["https://tec.openplanner.team/stops/H1bo112b", "https://tec.openplanner.team/stops/H1ho140b"], ["https://tec.openplanner.team/stops/X633aeb", "https://tec.openplanner.team/stops/X633aha"], ["https://tec.openplanner.team/stops/Bbrycar2", "https://tec.openplanner.team/stops/N584azb"], ["https://tec.openplanner.team/stops/Cchdigu1", "https://tec.openplanner.team/stops/Cchoues5"], ["https://tec.openplanner.team/stops/Bgnpegl3", "https://tec.openplanner.team/stops/Bgnpegl4"], ["https://tec.openplanner.team/stops/X811aab", "https://tec.openplanner.team/stops/X812bga"], ["https://tec.openplanner.team/stops/Chhlori2", "https://tec.openplanner.team/stops/Chhverr2"], ["https://tec.openplanner.team/stops/H4bd110a", "https://tec.openplanner.team/stops/H4bd110b"], ["https://tec.openplanner.team/stops/H1ht129a", "https://tec.openplanner.team/stops/H1ht135b"], ["https://tec.openplanner.team/stops/LLxcite1", "https://tec.openplanner.team/stops/Llxcite2"], ["https://tec.openplanner.team/stops/Lvegc--3", "https://tec.openplanner.team/stops/Lvegc--7"], ["https://tec.openplanner.team/stops/H1hr125a", "https://tec.openplanner.team/stops/H2pr119a"], ["https://tec.openplanner.team/stops/X718aba", "https://tec.openplanner.team/stops/X718akb"], ["https://tec.openplanner.team/stops/X786aba", "https://tec.openplanner.team/stops/X786aea"], ["https://tec.openplanner.team/stops/Cgzclef1", "https://tec.openplanner.team/stops/Cgzplac6"], ["https://tec.openplanner.team/stops/Ljumart1", "https://tec.openplanner.team/stops/Ljumesa1"], ["https://tec.openplanner.team/stops/X763abb", "https://tec.openplanner.team/stops/X763aeb"], ["https://tec.openplanner.team/stops/Brsgepr1", "https://tec.openplanner.team/stops/Brsggde1"], ["https://tec.openplanner.team/stops/H1ms284a", "https://tec.openplanner.team/stops/H1ms915b"], ["https://tec.openplanner.team/stops/Cbicamp2", "https://tec.openplanner.team/stops/Ctuhouz2"], ["https://tec.openplanner.team/stops/LENarde1", "https://tec.openplanner.team/stops/LENecol1"], ["https://tec.openplanner.team/stops/LMAbell1", "https://tec.openplanner.team/stops/LMAbell2"], ["https://tec.openplanner.team/stops/H3so174a", "https://tec.openplanner.team/stops/H3so174b"], ["https://tec.openplanner.team/stops/LVBmonu3", "https://tec.openplanner.team/stops/LVBmonu4"], ["https://tec.openplanner.team/stops/Bcbqp251", "https://tec.openplanner.team/stops/Bcbqp252"], ["https://tec.openplanner.team/stops/LAMhaut1", "https://tec.openplanner.team/stops/LAMvert1"], ["https://tec.openplanner.team/stops/H2pe162d", "https://tec.openplanner.team/stops/H2sv217a"], ["https://tec.openplanner.team/stops/Bnivfle2", "https://tec.openplanner.team/stops/Bnivmfr1"], ["https://tec.openplanner.team/stops/N230ala", "https://tec.openplanner.team/stops/N230alb"], ["https://tec.openplanner.team/stops/Cgzlera1", "https://tec.openplanner.team/stops/Cmyecur2"], ["https://tec.openplanner.team/stops/X734aaa", "https://tec.openplanner.team/stops/X953aaa"], ["https://tec.openplanner.team/stops/H1mb136a", "https://tec.openplanner.team/stops/H1mb136b"], ["https://tec.openplanner.team/stops/H4bo178b", "https://tec.openplanner.team/stops/H4gr110a"], ["https://tec.openplanner.team/stops/Bsaubbo1", "https://tec.openplanner.team/stops/Bwspm372"], ["https://tec.openplanner.team/stops/Binclon1", "https://tec.openplanner.team/stops/Brxmcha2"], ["https://tec.openplanner.team/stops/Bove4ko1", "https://tec.openplanner.team/stops/Bovetdo2"], ["https://tec.openplanner.team/stops/Cmychau2", "https://tec.openplanner.team/stops/Cmyplac2"], ["https://tec.openplanner.team/stops/X796aea", "https://tec.openplanner.team/stops/X796agb"], ["https://tec.openplanner.team/stops/N118alb", "https://tec.openplanner.team/stops/N118ata"], ["https://tec.openplanner.team/stops/N508aob", "https://tec.openplanner.team/stops/N509aqb"], ["https://tec.openplanner.team/stops/Cgrbert1", "https://tec.openplanner.team/stops/Cgrbert2"], ["https://tec.openplanner.team/stops/H1wz173a", "https://tec.openplanner.team/stops/H1wz173b"], ["https://tec.openplanner.team/stops/X946aca", "https://tec.openplanner.team/stops/X948afb"], ["https://tec.openplanner.team/stops/N526acb", "https://tec.openplanner.team/stops/N526aeb"], ["https://tec.openplanner.team/stops/N209ahb", "https://tec.openplanner.team/stops/N209aja"], ["https://tec.openplanner.team/stops/X601ala", "https://tec.openplanner.team/stops/X601cta"], ["https://tec.openplanner.team/stops/X788adb", "https://tec.openplanner.team/stops/X788afb"], ["https://tec.openplanner.team/stops/LMastat4", "https://tec.openplanner.team/stops/LMawilh4"], ["https://tec.openplanner.team/stops/H4ch114a", "https://tec.openplanner.team/stops/H4ty321b"], ["https://tec.openplanner.team/stops/LCaalou1", "https://tec.openplanner.team/stops/LVefont2"], ["https://tec.openplanner.team/stops/N501ivb", "https://tec.openplanner.team/stops/N521ahb"], ["https://tec.openplanner.team/stops/X390ahb", "https://tec.openplanner.team/stops/X390aib"], ["https://tec.openplanner.team/stops/LMoviel1", "https://tec.openplanner.team/stops/LSDvill2"], ["https://tec.openplanner.team/stops/LSOferr1", "https://tec.openplanner.team/stops/LSOferr4"], ["https://tec.openplanner.team/stops/H4ta117a", "https://tec.openplanner.team/stops/H4ta132a"], ["https://tec.openplanner.team/stops/H1mj127a", "https://tec.openplanner.team/stops/H1mj127b"], ["https://tec.openplanner.team/stops/LAUscha1", "https://tec.openplanner.team/stops/LAUscha2"], ["https://tec.openplanner.team/stops/LVTtrou1", "https://tec.openplanner.team/stops/LVTtrou2"], ["https://tec.openplanner.team/stops/Bgliopp3", "https://tec.openplanner.team/stops/Bmalwvi1"], ["https://tec.openplanner.team/stops/Cfmcent1", "https://tec.openplanner.team/stops/Cfmcoro2"], ["https://tec.openplanner.team/stops/H1hy127b", "https://tec.openplanner.team/stops/H1qy132a"], ["https://tec.openplanner.team/stops/LCocasc2", "https://tec.openplanner.team/stops/LCogara1"], ["https://tec.openplanner.team/stops/X775aja", "https://tec.openplanner.team/stops/X775ana"], ["https://tec.openplanner.team/stops/X781aba", "https://tec.openplanner.team/stops/X781abb"], ["https://tec.openplanner.team/stops/N232ajb", "https://tec.openplanner.team/stops/N232caa"], ["https://tec.openplanner.team/stops/LCOeg--1", "https://tec.openplanner.team/stops/LCOeg--2"], ["https://tec.openplanner.team/stops/H1le127a", "https://tec.openplanner.team/stops/H1le128c"], ["https://tec.openplanner.team/stops/LGEwalk2", "https://tec.openplanner.team/stops/LLStrid1"], ["https://tec.openplanner.team/stops/LTResse2", "https://tec.openplanner.team/stops/LTRfend1"], ["https://tec.openplanner.team/stops/N511ana", "https://tec.openplanner.team/stops/N511aob"], ["https://tec.openplanner.team/stops/Brixala2", "https://tec.openplanner.team/stops/Brixdec2"], ["https://tec.openplanner.team/stops/X982adb", "https://tec.openplanner.team/stops/X982bza"], ["https://tec.openplanner.team/stops/H4hx111a", "https://tec.openplanner.team/stops/H4hx111b"], ["https://tec.openplanner.team/stops/H1vh136b", "https://tec.openplanner.team/stops/H1vh136c"], ["https://tec.openplanner.team/stops/X664abb", "https://tec.openplanner.team/stops/X664aeb"], ["https://tec.openplanner.team/stops/H1so131a", "https://tec.openplanner.team/stops/H1so142d"], ["https://tec.openplanner.team/stops/Boppegl1", "https://tec.openplanner.team/stops/Bopplon1"], ["https://tec.openplanner.team/stops/Cdaptca1", "https://tec.openplanner.team/stops/CMvil2"], ["https://tec.openplanner.team/stops/N533acb", "https://tec.openplanner.team/stops/N533aeb"], ["https://tec.openplanner.team/stops/N506beb", "https://tec.openplanner.team/stops/N506bka"], ["https://tec.openplanner.team/stops/N549aab", "https://tec.openplanner.team/stops/N549aba"], ["https://tec.openplanner.team/stops/X922ama", "https://tec.openplanner.team/stops/X923aaa"], ["https://tec.openplanner.team/stops/LVPeg--1", "https://tec.openplanner.team/stops/LVPgrot4"], ["https://tec.openplanner.team/stops/H4lz118a", "https://tec.openplanner.team/stops/H4lz128a"], ["https://tec.openplanner.team/stops/N573aca", "https://tec.openplanner.team/stops/N573ada"], ["https://tec.openplanner.team/stops/N305aab", "https://tec.openplanner.team/stops/N305aba"], ["https://tec.openplanner.team/stops/H4hu118a", "https://tec.openplanner.team/stops/H4hu118b"], ["https://tec.openplanner.team/stops/X636aqc", "https://tec.openplanner.team/stops/X636arb"], ["https://tec.openplanner.team/stops/Bsomh672", "https://tec.openplanner.team/stops/Bsompri1"], ["https://tec.openplanner.team/stops/Lemambi2", "https://tec.openplanner.team/stops/Lemparc2"], ["https://tec.openplanner.team/stops/LhOukat2", "https://tec.openplanner.team/stops/LhUkape1"], ["https://tec.openplanner.team/stops/LeMnr11", "https://tec.openplanner.team/stops/LeMnr12"], ["https://tec.openplanner.team/stops/Lglmoul1", "https://tec.openplanner.team/stops/Llgbobu1"], ["https://tec.openplanner.team/stops/H4ty272a", "https://tec.openplanner.team/stops/H4ty272b"], ["https://tec.openplanner.team/stops/Bclgpch2", "https://tec.openplanner.team/stops/Bllnfla3"], ["https://tec.openplanner.team/stops/N155afa", "https://tec.openplanner.team/stops/N155afc"], ["https://tec.openplanner.team/stops/Cpicite1", "https://tec.openplanner.team/stops/Cpictra2"], ["https://tec.openplanner.team/stops/LBpberl2", "https://tec.openplanner.team/stops/LBpvue-1"], ["https://tec.openplanner.team/stops/X982agb", "https://tec.openplanner.team/stops/X982bxb"], ["https://tec.openplanner.team/stops/Csesabo2", "https://tec.openplanner.team/stops/N425aaa"], ["https://tec.openplanner.team/stops/N204aib", "https://tec.openplanner.team/stops/N204aka"], ["https://tec.openplanner.team/stops/Blmlbou1", "https://tec.openplanner.team/stops/Blmlcar2"], ["https://tec.openplanner.team/stops/H1gh173a", "https://tec.openplanner.team/stops/H1ms935a"], ["https://tec.openplanner.team/stops/LTRcarr2", "https://tec.openplanner.team/stops/LTRmosb1"], ["https://tec.openplanner.team/stops/N501bba", "https://tec.openplanner.team/stops/N501bbc"], ["https://tec.openplanner.team/stops/Lgrclas2", "https://tec.openplanner.team/stops/Lgrcour1"], ["https://tec.openplanner.team/stops/H4ba102a", "https://tec.openplanner.team/stops/H4ml206a"], ["https://tec.openplanner.team/stops/H1hn205b", "https://tec.openplanner.team/stops/H1hn364a"], ["https://tec.openplanner.team/stops/H1on129a", "https://tec.openplanner.team/stops/H1ro136b"], ["https://tec.openplanner.team/stops/Cmmcarr2", "https://tec.openplanner.team/stops/Cmmplac2"], ["https://tec.openplanner.team/stops/N501dna", "https://tec.openplanner.team/stops/N501eha"], ["https://tec.openplanner.team/stops/Cfocant2", "https://tec.openplanner.team/stops/Cfometr1"], ["https://tec.openplanner.team/stops/X614bba", "https://tec.openplanner.team/stops/X614bbb"], ["https://tec.openplanner.team/stops/LWAlieg1", "https://tec.openplanner.team/stops/LWAvand1"], ["https://tec.openplanner.team/stops/X982ata", "https://tec.openplanner.team/stops/X982aua"], ["https://tec.openplanner.team/stops/Bgzddge2", "https://tec.openplanner.team/stops/Bgzddge4"], ["https://tec.openplanner.team/stops/X351ada", "https://tec.openplanner.team/stops/X358afb"], ["https://tec.openplanner.team/stops/Csuptou1", "https://tec.openplanner.team/stops/Csytouq1"], ["https://tec.openplanner.team/stops/N123acb", "https://tec.openplanner.team/stops/N150aba"], ["https://tec.openplanner.team/stops/N146aeb", "https://tec.openplanner.team/stops/X317aba"], ["https://tec.openplanner.team/stops/LhPheps1", "https://tec.openplanner.team/stops/LmRkreu2"], ["https://tec.openplanner.team/stops/LBPboir1", "https://tec.openplanner.team/stops/LGLcour4"], ["https://tec.openplanner.team/stops/LWbcarr2", "https://tec.openplanner.team/stops/LWblesp1"], ["https://tec.openplanner.team/stops/Cctbinc1", "https://tec.openplanner.team/stops/NC11afa"], ["https://tec.openplanner.team/stops/LCRfavr2", "https://tec.openplanner.team/stops/LTymahr2"], ["https://tec.openplanner.team/stops/Cmtprey1", "https://tec.openplanner.team/stops/Cmtprey2"], ["https://tec.openplanner.team/stops/H2ec110a", "https://tec.openplanner.team/stops/H2ec110b"], ["https://tec.openplanner.team/stops/X717aca", "https://tec.openplanner.team/stops/X782aea"], ["https://tec.openplanner.team/stops/LHXfont1", "https://tec.openplanner.team/stops/LLVe75-1"], ["https://tec.openplanner.team/stops/Cmecime2", "https://tec.openplanner.team/stops/Cvpcour1"], ["https://tec.openplanner.team/stops/X922amb", "https://tec.openplanner.team/stops/X941aha"], ["https://tec.openplanner.team/stops/N340aba", "https://tec.openplanner.team/stops/N340aga"], ["https://tec.openplanner.team/stops/LFRfagn1", "https://tec.openplanner.team/stops/LMipoti2"], ["https://tec.openplanner.team/stops/X354abb", "https://tec.openplanner.team/stops/X858agb"], ["https://tec.openplanner.team/stops/H1er112a", "https://tec.openplanner.team/stops/H1pe131b"], ["https://tec.openplanner.team/stops/Cmastma1", "https://tec.openplanner.team/stops/CMmoul1"], ["https://tec.openplanner.team/stops/Chhegli4", "https://tec.openplanner.team/stops/Chhprai1"], ["https://tec.openplanner.team/stops/X837afa", "https://tec.openplanner.team/stops/X837afb"], ["https://tec.openplanner.team/stops/N504aca", "https://tec.openplanner.team/stops/N505alb"], ["https://tec.openplanner.team/stops/N501kna", "https://tec.openplanner.team/stops/N501knb"], ["https://tec.openplanner.team/stops/Bbiefon1", "https://tec.openplanner.team/stops/Bndbnod2"], ["https://tec.openplanner.team/stops/Csystan1", "https://tec.openplanner.team/stops/Csystan2"], ["https://tec.openplanner.team/stops/X903aca", "https://tec.openplanner.team/stops/X903acb"], ["https://tec.openplanner.team/stops/LThplen1", "https://tec.openplanner.team/stops/LThplen2"], ["https://tec.openplanner.team/stops/H4ep131b", "https://tec.openplanner.team/stops/H4la199a"], ["https://tec.openplanner.team/stops/LMObouh2", "https://tec.openplanner.team/stops/LMOchpl1"], ["https://tec.openplanner.team/stops/H2pe162a", "https://tec.openplanner.team/stops/H2pe162b"], ["https://tec.openplanner.team/stops/H2le149b", "https://tec.openplanner.team/stops/H2ml113b"], ["https://tec.openplanner.team/stops/X758aab", "https://tec.openplanner.team/stops/X758abb"], ["https://tec.openplanner.team/stops/X359aba", "https://tec.openplanner.team/stops/X359abb"], ["https://tec.openplanner.team/stops/LSAmous1", "https://tec.openplanner.team/stops/LSAvieu1"], ["https://tec.openplanner.team/stops/Lbhhomv2", "https://tec.openplanner.team/stops/Ljumart1"], ["https://tec.openplanner.team/stops/H4ev118a", "https://tec.openplanner.team/stops/H4ev118b"], ["https://tec.openplanner.team/stops/N540acb", "https://tec.openplanner.team/stops/N540acc"], ["https://tec.openplanner.team/stops/X948aba", "https://tec.openplanner.team/stops/X948aqb"], ["https://tec.openplanner.team/stops/LWEcool2", "https://tec.openplanner.team/stops/LWEgare1"], ["https://tec.openplanner.team/stops/N308ana", "https://tec.openplanner.team/stops/N308anb"], ["https://tec.openplanner.team/stops/H5fl100b", "https://tec.openplanner.team/stops/H5fl103b"], ["https://tec.openplanner.team/stops/Bjanfer1", "https://tec.openplanner.team/stops/Bolpmre1"], ["https://tec.openplanner.team/stops/LBNauto1", "https://tec.openplanner.team/stops/LWEgare1"], ["https://tec.openplanner.team/stops/X801chb", "https://tec.openplanner.team/stops/X836ada"], ["https://tec.openplanner.team/stops/N351ajb", "https://tec.openplanner.team/stops/N351axa"], ["https://tec.openplanner.team/stops/X754asa", "https://tec.openplanner.team/stops/X754aua"], ["https://tec.openplanner.team/stops/LHZpara1", "https://tec.openplanner.team/stops/LVefont2"], ["https://tec.openplanner.team/stops/Bwavnam1", "https://tec.openplanner.team/stops/Bwavnam2"], ["https://tec.openplanner.team/stops/Lhujonc1", "https://tec.openplanner.team/stops/LPohoeg1"], ["https://tec.openplanner.team/stops/N117asb", "https://tec.openplanner.team/stops/N117atb"], ["https://tec.openplanner.team/stops/LOcgdro4", "https://tec.openplanner.team/stops/NL35aga"], ["https://tec.openplanner.team/stops/X638abb", "https://tec.openplanner.team/stops/X638afb"], ["https://tec.openplanner.team/stops/H1bb119a", "https://tec.openplanner.team/stops/H1bb146b"], ["https://tec.openplanner.team/stops/X615bca", "https://tec.openplanner.team/stops/X615bda"], ["https://tec.openplanner.team/stops/LBDtill1", "https://tec.openplanner.team/stops/LBDtill2"], ["https://tec.openplanner.team/stops/X654aka", "https://tec.openplanner.team/stops/X654akb"], ["https://tec.openplanner.team/stops/H4ss158b", "https://tec.openplanner.team/stops/H5rx101b"], ["https://tec.openplanner.team/stops/Lmlmaqu1", "https://tec.openplanner.team/stops/Lmlmaqu2"], ["https://tec.openplanner.team/stops/N501fxb", "https://tec.openplanner.team/stops/N501lbb"], ["https://tec.openplanner.team/stops/NL76aaa", "https://tec.openplanner.team/stops/NL76aba"], ["https://tec.openplanner.team/stops/H1nm140b", "https://tec.openplanner.team/stops/H4gr108b"], ["https://tec.openplanner.team/stops/Cctmari2", "https://tec.openplanner.team/stops/NC11aia"], ["https://tec.openplanner.team/stops/Cgythio1", "https://tec.openplanner.team/stops/CMsartc2"], ["https://tec.openplanner.team/stops/X759aaa", "https://tec.openplanner.team/stops/X759aeb"], ["https://tec.openplanner.team/stops/N558ana", "https://tec.openplanner.team/stops/N559abb"], ["https://tec.openplanner.team/stops/Crcegli3", "https://tec.openplanner.team/stops/Crcverr1"], ["https://tec.openplanner.team/stops/LBTnors2", "https://tec.openplanner.team/stops/LHEbeau1"], ["https://tec.openplanner.team/stops/Beclron2", "https://tec.openplanner.team/stops/Bhptcha2"], ["https://tec.openplanner.team/stops/LFEhoup1", "https://tec.openplanner.team/stops/X597anb"], ["https://tec.openplanner.team/stops/Baudtri1", "https://tec.openplanner.team/stops/Bwbfhip1"], ["https://tec.openplanner.team/stops/LHNcreh1", "https://tec.openplanner.team/stops/LVPcoeu2"], ["https://tec.openplanner.team/stops/H4ty301a", "https://tec.openplanner.team/stops/H4ty328a"], ["https://tec.openplanner.team/stops/Bgerprg2", "https://tec.openplanner.team/stops/Bgrhche1"], ["https://tec.openplanner.team/stops/Ccunvus1", "https://tec.openplanner.team/stops/Ccunvus2"], ["https://tec.openplanner.team/stops/X743aea", "https://tec.openplanner.team/stops/X743afb"], ["https://tec.openplanner.team/stops/H1as103a", "https://tec.openplanner.team/stops/H1as103c"], ["https://tec.openplanner.team/stops/X767aaa", "https://tec.openplanner.team/stops/X767aab"], ["https://tec.openplanner.team/stops/Ccoacar1", "https://tec.openplanner.team/stops/Ccoacar2"], ["https://tec.openplanner.team/stops/Bmanati2", "https://tec.openplanner.team/stops/H2mg149a"], ["https://tec.openplanner.team/stops/Cfaheni4", "https://tec.openplanner.team/stops/Cfamonu1"], ["https://tec.openplanner.team/stops/LHUdelc2", "https://tec.openplanner.team/stops/LHUgodi2"], ["https://tec.openplanner.team/stops/N229aja", "https://tec.openplanner.team/stops/N229alb"], ["https://tec.openplanner.team/stops/LWDbure2", "https://tec.openplanner.team/stops/LWDeg--1"], ["https://tec.openplanner.team/stops/Bblaeur1", "https://tec.openplanner.team/stops/Bblasta1"], ["https://tec.openplanner.team/stops/Llgnico*", "https://tec.openplanner.team/stops/LlgnicT1"], ["https://tec.openplanner.team/stops/LMEcour2", "https://tec.openplanner.team/stops/LMEeg--2"], ["https://tec.openplanner.team/stops/Bolpmre1", "https://tec.openplanner.team/stops/Bolppla2"], ["https://tec.openplanner.team/stops/LOV48--1", "https://tec.openplanner.team/stops/LOVhetr2"], ["https://tec.openplanner.team/stops/N579aca", "https://tec.openplanner.team/stops/N579adb"], ["https://tec.openplanner.team/stops/H1hn208a", "https://tec.openplanner.team/stops/H1hn208b"], ["https://tec.openplanner.team/stops/N501fla", "https://tec.openplanner.team/stops/N501flb"], ["https://tec.openplanner.team/stops/NR21aha", "https://tec.openplanner.team/stops/NR21ahb"], ["https://tec.openplanner.team/stops/LBrneli1", "https://tec.openplanner.team/stops/LMAhall2"], ["https://tec.openplanner.team/stops/X954afb", "https://tec.openplanner.team/stops/X954aga"], ["https://tec.openplanner.team/stops/Blimegl2", "https://tec.openplanner.team/stops/Blimeur1"], ["https://tec.openplanner.team/stops/Cmeloti1", "https://tec.openplanner.team/stops/Cmerued2"], ["https://tec.openplanner.team/stops/Lmoboeu1", "https://tec.openplanner.team/stops/Lmomarr2"], ["https://tec.openplanner.team/stops/H4oq229b", "https://tec.openplanner.team/stops/H4wu375a"], ["https://tec.openplanner.team/stops/N562akb", "https://tec.openplanner.team/stops/N562bfb"], ["https://tec.openplanner.team/stops/N501esb", "https://tec.openplanner.team/stops/N501neb"], ["https://tec.openplanner.team/stops/Ccstord1", "https://tec.openplanner.team/stops/Chhthui2"], ["https://tec.openplanner.team/stops/X716aaa", "https://tec.openplanner.team/stops/X716aeb"], ["https://tec.openplanner.team/stops/Csbberg1", "https://tec.openplanner.team/stops/H1sa112b"], ["https://tec.openplanner.team/stops/LSGcarr2", "https://tec.openplanner.team/stops/LYechpl2"], ["https://tec.openplanner.team/stops/LBiberg1", "https://tec.openplanner.team/stops/LWEbr051"], ["https://tec.openplanner.team/stops/LAibego1", "https://tec.openplanner.team/stops/LAigrim1"], ["https://tec.openplanner.team/stops/X615awa", "https://tec.openplanner.team/stops/X615axb"], ["https://tec.openplanner.team/stops/Crg3arb1", "https://tec.openplanner.team/stops/Cthoues2"], ["https://tec.openplanner.team/stops/X371aea", "https://tec.openplanner.team/stops/X371afa"], ["https://tec.openplanner.team/stops/LLeeg--1", "https://tec.openplanner.team/stops/X547afb"], ["https://tec.openplanner.team/stops/X892aaa", "https://tec.openplanner.team/stops/X892ahb"], ["https://tec.openplanner.team/stops/LBscime2", "https://tec.openplanner.team/stops/NL72ada"], ["https://tec.openplanner.team/stops/Lhemilm2", "https://tec.openplanner.team/stops/Lmirca-2"], ["https://tec.openplanner.team/stops/X955aea", "https://tec.openplanner.team/stops/X955aga"], ["https://tec.openplanner.team/stops/Bperros1", "https://tec.openplanner.team/stops/NB33aeb"], ["https://tec.openplanner.team/stops/H1ha189a", "https://tec.openplanner.team/stops/H1ha200a"], ["https://tec.openplanner.team/stops/X733abb", "https://tec.openplanner.team/stops/X733aca"], ["https://tec.openplanner.team/stops/H1ho130a", "https://tec.openplanner.team/stops/H1ho130b"], ["https://tec.openplanner.team/stops/LHuherm2", "https://tec.openplanner.team/stops/LHupont2"], ["https://tec.openplanner.team/stops/N577aha", "https://tec.openplanner.team/stops/N577ajb"], ["https://tec.openplanner.team/stops/H2ml114a", "https://tec.openplanner.team/stops/H2mo130b"], ["https://tec.openplanner.team/stops/Csshouy1", "https://tec.openplanner.team/stops/Csspn1"], ["https://tec.openplanner.team/stops/H4hx120b", "https://tec.openplanner.team/stops/H4ln155a"], ["https://tec.openplanner.team/stops/LOChuy-1", "https://tec.openplanner.team/stops/X261aaa"], ["https://tec.openplanner.team/stops/Lkivolg2", "https://tec.openplanner.team/stops/Lscbour2"], ["https://tec.openplanner.team/stops/Lrevaul1", "https://tec.openplanner.team/stops/Lrevaul2"], ["https://tec.openplanner.team/stops/LNCcedr2", "https://tec.openplanner.team/stops/LNCecdo1"], ["https://tec.openplanner.team/stops/H4by116a", "https://tec.openplanner.team/stops/H4by117a"], ["https://tec.openplanner.team/stops/H4pe125a", "https://tec.openplanner.team/stops/H4pe125b"], ["https://tec.openplanner.team/stops/X371afa", "https://tec.openplanner.team/stops/X371afb"], ["https://tec.openplanner.team/stops/X615aub", "https://tec.openplanner.team/stops/X695aea"], ["https://tec.openplanner.team/stops/H1ms268a", "https://tec.openplanner.team/stops/H1ms275a"], ["https://tec.openplanner.team/stops/Clolidl2", "https://tec.openplanner.team/stops/Cloravi2"], ["https://tec.openplanner.team/stops/Bblasse1", "https://tec.openplanner.team/stops/Bblasse2"], ["https://tec.openplanner.team/stops/LTIpres1", "https://tec.openplanner.team/stops/LTIpres2"], ["https://tec.openplanner.team/stops/N503afb", "https://tec.openplanner.team/stops/N503ahb"], ["https://tec.openplanner.team/stops/Bheneco1", "https://tec.openplanner.team/stops/Bhenpln2"], ["https://tec.openplanner.team/stops/N501fxa", "https://tec.openplanner.team/stops/N501hjb"], ["https://tec.openplanner.team/stops/X888aga", "https://tec.openplanner.team/stops/X897aga"], ["https://tec.openplanner.team/stops/H2re163a", "https://tec.openplanner.team/stops/H2re163b"], ["https://tec.openplanner.team/stops/LSopost1", "https://tec.openplanner.team/stops/LSopost2"], ["https://tec.openplanner.team/stops/X991aga", "https://tec.openplanner.team/stops/X991aja"], ["https://tec.openplanner.team/stops/N301afc", "https://tec.openplanner.team/stops/N301aib"], ["https://tec.openplanner.team/stops/Cmlmatc1", "https://tec.openplanner.team/stops/Cmlmatc2"], ["https://tec.openplanner.team/stops/H1wa135b", "https://tec.openplanner.team/stops/H1wa144b"], ["https://tec.openplanner.team/stops/X769ajb", "https://tec.openplanner.team/stops/X769arb"], ["https://tec.openplanner.team/stops/Lsecime2", "https://tec.openplanner.team/stops/Lsecris1"], ["https://tec.openplanner.team/stops/H1ma231b", "https://tec.openplanner.team/stops/H1ni316a"], ["https://tec.openplanner.team/stops/X812beb", "https://tec.openplanner.team/stops/X813adb"], ["https://tec.openplanner.team/stops/Bnodblt1", "https://tec.openplanner.team/stops/Bnodcab1"], ["https://tec.openplanner.team/stops/N215aba", "https://tec.openplanner.team/stops/N215aca"], ["https://tec.openplanner.team/stops/H1ms247b", "https://tec.openplanner.team/stops/H1ms920a"], ["https://tec.openplanner.team/stops/LHGbeur2", "https://tec.openplanner.team/stops/LHGbeur4"], ["https://tec.openplanner.team/stops/Bblaall1", "https://tec.openplanner.team/stops/Bblasse1"], ["https://tec.openplanner.team/stops/H1hg179a", "https://tec.openplanner.team/stops/H1hg179b"], ["https://tec.openplanner.team/stops/Ljuchap1", "https://tec.openplanner.team/stops/Ljuchap2"], ["https://tec.openplanner.team/stops/H4fr140a", "https://tec.openplanner.team/stops/H4ma419a"], ["https://tec.openplanner.team/stops/LFAec--1", "https://tec.openplanner.team/stops/LFAplan2"], ["https://tec.openplanner.team/stops/Bsaucre2", "https://tec.openplanner.team/stops/Bsaupco2"], ["https://tec.openplanner.team/stops/H1hh109a", "https://tec.openplanner.team/stops/H1hh109b"], ["https://tec.openplanner.team/stops/Cbfcham1", "https://tec.openplanner.team/stops/NC11akb"], ["https://tec.openplanner.team/stops/N383adb", "https://tec.openplanner.team/stops/N383afb"], ["https://tec.openplanner.team/stops/Bolgrga1", "https://tec.openplanner.team/stops/Bolgrga2"], ["https://tec.openplanner.team/stops/LNEbois1", "https://tec.openplanner.team/stops/LNEbois2"], ["https://tec.openplanner.team/stops/H1gr118b", "https://tec.openplanner.team/stops/H1gr122a"], ["https://tec.openplanner.team/stops/LBBmc--1", "https://tec.openplanner.team/stops/LBBpech2"], ["https://tec.openplanner.team/stops/Clvchar2", "https://tec.openplanner.team/stops/Cmlavch1"], ["https://tec.openplanner.team/stops/X713afa", "https://tec.openplanner.team/stops/X713ala"], ["https://tec.openplanner.team/stops/H2ca104b", "https://tec.openplanner.team/stops/H2ca112b"], ["https://tec.openplanner.team/stops/Cfodepo1", "https://tec.openplanner.team/stops/Clrpast2"], ["https://tec.openplanner.team/stops/LDpulve1", "https://tec.openplanner.team/stops/LVu40--2"], ["https://tec.openplanner.team/stops/LMOcorn2", "https://tec.openplanner.team/stops/LMOcorn3"], ["https://tec.openplanner.team/stops/N506apa", "https://tec.openplanner.team/stops/N506apb"], ["https://tec.openplanner.team/stops/H1do116b", "https://tec.openplanner.team/stops/H1ho132a"], ["https://tec.openplanner.team/stops/X828aaa", "https://tec.openplanner.team/stops/X829aca"], ["https://tec.openplanner.team/stops/LgAnr492", "https://tec.openplanner.team/stops/LsVlust2"], ["https://tec.openplanner.team/stops/Crs74em4", "https://tec.openplanner.team/stops/Crsmonu2"], ["https://tec.openplanner.team/stops/X640arb", "https://tec.openplanner.team/stops/X643aba"], ["https://tec.openplanner.team/stops/X604afa", "https://tec.openplanner.team/stops/X604afb"], ["https://tec.openplanner.team/stops/LESchat2", "https://tec.openplanner.team/stops/LESvign1"], ["https://tec.openplanner.team/stops/N507aba", "https://tec.openplanner.team/stops/N507adb"], ["https://tec.openplanner.team/stops/Bnivgam2", "https://tec.openplanner.team/stops/Bnivmet2"], ["https://tec.openplanner.team/stops/X850aob", "https://tec.openplanner.team/stops/X872aab"], ["https://tec.openplanner.team/stops/X725aka", "https://tec.openplanner.team/stops/X725bia"], ["https://tec.openplanner.team/stops/Cstdona1", "https://tec.openplanner.team/stops/Cstplac1"], ["https://tec.openplanner.team/stops/X993abc", "https://tec.openplanner.team/stops/X993abd"], ["https://tec.openplanner.team/stops/LNEmoul1", "https://tec.openplanner.team/stops/LNEmoul2"], ["https://tec.openplanner.team/stops/Cctbinc2", "https://tec.openplanner.team/stops/NC11afb"], ["https://tec.openplanner.team/stops/Ladpire2", "https://tec.openplanner.team/stops/Ldimeun1"], ["https://tec.openplanner.team/stops/N301aab", "https://tec.openplanner.team/stops/N301abc"], ["https://tec.openplanner.team/stops/Lbhmc--2", "https://tec.openplanner.team/stops/Ljupiet2"], ["https://tec.openplanner.team/stops/H4bs110b", "https://tec.openplanner.team/stops/H5pe139a"], ["https://tec.openplanner.team/stops/Lsebove1", "https://tec.openplanner.team/stops/Lsehaut1"], ["https://tec.openplanner.team/stops/H2tr251a", "https://tec.openplanner.team/stops/H2tr251b"], ["https://tec.openplanner.team/stops/Cfcpcov1", "https://tec.openplanner.team/stops/Cfcrdpr2"], ["https://tec.openplanner.team/stops/Benimar2", "https://tec.openplanner.team/stops/Bmrlcch2"], ["https://tec.openplanner.team/stops/Brsgrol2", "https://tec.openplanner.team/stops/Brsgter2"], ["https://tec.openplanner.team/stops/H1bu137b", "https://tec.openplanner.team/stops/H2ep144b"], ["https://tec.openplanner.team/stops/LBEcroi2", "https://tec.openplanner.team/stops/LBEmich1"], ["https://tec.openplanner.team/stops/N118apa", "https://tec.openplanner.team/stops/N118baa"], ["https://tec.openplanner.team/stops/LRmrode1", "https://tec.openplanner.team/stops/LTEkl162"], ["https://tec.openplanner.team/stops/LCPcomp1", "https://tec.openplanner.team/stops/LCPvign1"], ["https://tec.openplanner.team/stops/N337aga", "https://tec.openplanner.team/stops/N339acb"], ["https://tec.openplanner.team/stops/H1pa105a", "https://tec.openplanner.team/stops/H1pa105b"], ["https://tec.openplanner.team/stops/Cpiegli2", "https://tec.openplanner.team/stops/Cpllimi5"], ["https://tec.openplanner.team/stops/N501aeb", "https://tec.openplanner.team/stops/N501aga"], ["https://tec.openplanner.team/stops/X771adb", "https://tec.openplanner.team/stops/X771aea"], ["https://tec.openplanner.team/stops/Lanfont2", "https://tec.openplanner.team/stops/Llgchau1"], ["https://tec.openplanner.team/stops/LFsgend2", "https://tec.openplanner.team/stops/LVSpn--2"], ["https://tec.openplanner.team/stops/X669aga", "https://tec.openplanner.team/stops/X669agb"], ["https://tec.openplanner.team/stops/X741abb", "https://tec.openplanner.team/stops/X741abc"], ["https://tec.openplanner.team/stops/Cgygayo3", "https://tec.openplanner.team/stops/Cgygayo4"], ["https://tec.openplanner.team/stops/X617aib", "https://tec.openplanner.team/stops/X618aja"], ["https://tec.openplanner.team/stops/H4bo112b", "https://tec.openplanner.team/stops/H4bo122a"], ["https://tec.openplanner.team/stops/Lrcchpl1", "https://tec.openplanner.team/stops/Lrcrars2"], ["https://tec.openplanner.team/stops/LHHronh2", "https://tec.openplanner.team/stops/LVTeg--1"], ["https://tec.openplanner.team/stops/Bgnvoha4", "https://tec.openplanner.team/stops/Bgnvpco3"], ["https://tec.openplanner.team/stops/LFChuis1", "https://tec.openplanner.team/stops/LWRgare1"], ["https://tec.openplanner.team/stops/LaR1G--1", "https://tec.openplanner.team/stops/LrUwenz1"], ["https://tec.openplanner.team/stops/H3lr113a", "https://tec.openplanner.team/stops/H3lr121b"], ["https://tec.openplanner.team/stops/X783adb", "https://tec.openplanner.team/stops/X789aha"], ["https://tec.openplanner.team/stops/Bdvmalo1", "https://tec.openplanner.team/stops/Bdvmccu2"], ["https://tec.openplanner.team/stops/N569aaa", "https://tec.openplanner.team/stops/N569aca"], ["https://tec.openplanner.team/stops/H2le150b", "https://tec.openplanner.team/stops/H2ml110a"], ["https://tec.openplanner.team/stops/Cci22ao2", "https://tec.openplanner.team/stops/Ccifies2"], ["https://tec.openplanner.team/stops/H4ln130a", "https://tec.openplanner.team/stops/H4ln130b"], ["https://tec.openplanner.team/stops/H2ca112b", "https://tec.openplanner.team/stops/H2ch125a"], ["https://tec.openplanner.team/stops/N217aeb", "https://tec.openplanner.team/stops/N287aaa"], ["https://tec.openplanner.team/stops/Cfvplac1", "https://tec.openplanner.team/stops/H1fv100b"], ["https://tec.openplanner.team/stops/LBlchin1", "https://tec.openplanner.team/stops/LBlchin2"], ["https://tec.openplanner.team/stops/LHHecol1", "https://tec.openplanner.team/stops/LHHindu1"], ["https://tec.openplanner.team/stops/Cwfcule1", "https://tec.openplanner.team/stops/Cwflouv3"], ["https://tec.openplanner.team/stops/X653aaa", "https://tec.openplanner.team/stops/X653afb"], ["https://tec.openplanner.team/stops/Cbfgare1", "https://tec.openplanner.team/stops/Cbfpoti2"], ["https://tec.openplanner.team/stops/H2na131b", "https://tec.openplanner.team/stops/H3go104a"], ["https://tec.openplanner.team/stops/Lmndari2", "https://tec.openplanner.team/stops/Lsmjalh1"], ["https://tec.openplanner.team/stops/X739aga", "https://tec.openplanner.team/stops/X773aab"], ["https://tec.openplanner.team/stops/Bwspm372", "https://tec.openplanner.team/stops/Bwspspa1"], ["https://tec.openplanner.team/stops/N232apa", "https://tec.openplanner.team/stops/N232bjb"], ["https://tec.openplanner.team/stops/Cgocalv2", "https://tec.openplanner.team/stops/CMleop2"], ["https://tec.openplanner.team/stops/LeIdeid2", "https://tec.openplanner.team/stops/LeIkirr1"], ["https://tec.openplanner.team/stops/LDOviad1", "https://tec.openplanner.team/stops/LHVetoi2"], ["https://tec.openplanner.team/stops/Caiecol2", "https://tec.openplanner.team/stops/Caioign4"], ["https://tec.openplanner.team/stops/H1gi121b", "https://tec.openplanner.team/stops/H1gi122a"], ["https://tec.openplanner.team/stops/Bucccal4", "https://tec.openplanner.team/stops/Buccdch1"], ["https://tec.openplanner.team/stops/X657aca", "https://tec.openplanner.team/stops/X657acb"], ["https://tec.openplanner.team/stops/LLz21--2", "https://tec.openplanner.team/stops/LLzcruc2"], ["https://tec.openplanner.team/stops/Lstbarb2", "https://tec.openplanner.team/stops/Lstpole1"], ["https://tec.openplanner.team/stops/X789aba", "https://tec.openplanner.team/stops/X789aeb"], ["https://tec.openplanner.team/stops/H2ll179a", "https://tec.openplanner.team/stops/H2ll267b"], ["https://tec.openplanner.team/stops/LHNvill2", "https://tec.openplanner.team/stops/NL37aaa"], ["https://tec.openplanner.team/stops/Blhumga1", "https://tec.openplanner.team/stops/Blhunys2"], ["https://tec.openplanner.team/stops/LLVcent1", "https://tec.openplanner.team/stops/LLVe75-1"], ["https://tec.openplanner.team/stops/Cmmcomb2", "https://tec.openplanner.team/stops/Cmymoha2"], ["https://tec.openplanner.team/stops/H2ll182a", "https://tec.openplanner.team/stops/H2ll257c"], ["https://tec.openplanner.team/stops/H2hl111b", "https://tec.openplanner.team/stops/H2sv211b"], ["https://tec.openplanner.team/stops/X747aja", "https://tec.openplanner.team/stops/X749afa"], ["https://tec.openplanner.team/stops/Cchsud07", "https://tec.openplanner.team/stops/NC01aab"], ["https://tec.openplanner.team/stops/N515aid", "https://tec.openplanner.team/stops/N515asa"], ["https://tec.openplanner.team/stops/LLxcbr-1", "https://tec.openplanner.team/stops/LLxconj1"], ["https://tec.openplanner.team/stops/LFPchat1", "https://tec.openplanner.team/stops/LFPstro1"], ["https://tec.openplanner.team/stops/N311afa", "https://tec.openplanner.team/stops/N360aca"], ["https://tec.openplanner.team/stops/LmD181-1", "https://tec.openplanner.team/stops/LmDhoch1"], ["https://tec.openplanner.team/stops/X903adb", "https://tec.openplanner.team/stops/X992aja"], ["https://tec.openplanner.team/stops/Bsamc7d2", "https://tec.openplanner.team/stops/Bsammon2"], ["https://tec.openplanner.team/stops/X624aia", "https://tec.openplanner.team/stops/X624aib"], ["https://tec.openplanner.team/stops/X642aaa", "https://tec.openplanner.team/stops/X646aab"], ["https://tec.openplanner.team/stops/N551aha", "https://tec.openplanner.team/stops/N568ada"], ["https://tec.openplanner.team/stops/H4ta117b", "https://tec.openplanner.team/stops/H4ta127a"], ["https://tec.openplanner.team/stops/X808aib", "https://tec.openplanner.team/stops/X850alb"], ["https://tec.openplanner.team/stops/Blankal4", "https://tec.openplanner.team/stops/Blanraa1"], ["https://tec.openplanner.team/stops/H4pl114b", "https://tec.openplanner.team/stops/H4pl120a"], ["https://tec.openplanner.team/stops/Cjubert2", "https://tec.openplanner.team/stops/Cjuepee1"], ["https://tec.openplanner.team/stops/N894aba", "https://tec.openplanner.team/stops/N894age"], ["https://tec.openplanner.team/stops/LPLhout1", "https://tec.openplanner.team/stops/LPLstat2"], ["https://tec.openplanner.team/stops/Lagtenn1", "https://tec.openplanner.team/stops/Lkigare2"], ["https://tec.openplanner.team/stops/N539aca", "https://tec.openplanner.team/stops/N539acb"], ["https://tec.openplanner.team/stops/Bfledpi1", "https://tec.openplanner.team/stops/Cflchel4"], ["https://tec.openplanner.team/stops/Bbchdra1", "https://tec.openplanner.team/stops/Bbchdra2"], ["https://tec.openplanner.team/stops/X901aqb", "https://tec.openplanner.team/stops/X901blb"], ["https://tec.openplanner.team/stops/X342afb", "https://tec.openplanner.team/stops/X359aab"], ["https://tec.openplanner.team/stops/NC14aab", "https://tec.openplanner.team/stops/NC14abb"], ["https://tec.openplanner.team/stops/N506acb", "https://tec.openplanner.team/stops/N506bib"], ["https://tec.openplanner.team/stops/Bplncba1", "https://tec.openplanner.team/stops/Bplncsd1"], ["https://tec.openplanner.team/stops/H1au114a", "https://tec.openplanner.team/stops/H1on129a"], ["https://tec.openplanner.team/stops/H4mo148a", "https://tec.openplanner.team/stops/H4mo156b"], ["https://tec.openplanner.team/stops/X659aya", "https://tec.openplanner.team/stops/X669aeb"], ["https://tec.openplanner.team/stops/Lhutill2", "https://tec.openplanner.team/stops/Lvegend1"], ["https://tec.openplanner.team/stops/N347afa", "https://tec.openplanner.team/stops/N347afb"], ["https://tec.openplanner.team/stops/H1cu125b", "https://tec.openplanner.team/stops/H1cu125c"], ["https://tec.openplanner.team/stops/H1ht121a", "https://tec.openplanner.team/stops/H1ht136b"], ["https://tec.openplanner.team/stops/X738aaa", "https://tec.openplanner.team/stops/X738abb"], ["https://tec.openplanner.team/stops/LHCandr1", "https://tec.openplanner.team/stops/LHCandr2"], ["https://tec.openplanner.team/stops/Cgrchas2", "https://tec.openplanner.team/stops/Cgrsaul1"], ["https://tec.openplanner.team/stops/Bgnvcom1", "https://tec.openplanner.team/stops/Brixala2"], ["https://tec.openplanner.team/stops/N244aja", "https://tec.openplanner.team/stops/N244amb"], ["https://tec.openplanner.team/stops/Crspair2", "https://tec.openplanner.team/stops/Crspana4"], ["https://tec.openplanner.team/stops/LAMceri1", "https://tec.openplanner.team/stops/LOmecol1"], ["https://tec.openplanner.team/stops/H1hm177b", "https://tec.openplanner.team/stops/H1ss348b"], ["https://tec.openplanner.team/stops/LHdkenn2", "https://tec.openplanner.team/stops/LHdkenn3"], ["https://tec.openplanner.team/stops/Cbcegli6", "https://tec.openplanner.team/stops/Clfpomm1"], ["https://tec.openplanner.team/stops/Bbxlfro1", "https://tec.openplanner.team/stops/Bbxltou1"], ["https://tec.openplanner.team/stops/H4ma411b", "https://tec.openplanner.team/stops/H4ma417b"], ["https://tec.openplanner.team/stops/Lghfors2", "https://tec.openplanner.team/stops/Lghneuv1"], ["https://tec.openplanner.team/stops/H2ma208b", "https://tec.openplanner.team/stops/H2sb234b"], ["https://tec.openplanner.team/stops/Lhubarl2", "https://tec.openplanner.team/stops/Lhufila2"], ["https://tec.openplanner.team/stops/H1mq199b", "https://tec.openplanner.team/stops/H5is170a"], ["https://tec.openplanner.team/stops/N563ana", "https://tec.openplanner.team/stops/N570aga"], ["https://tec.openplanner.team/stops/LERpouh2", "https://tec.openplanner.team/stops/LHseg--1"], ["https://tec.openplanner.team/stops/H4ka176a", "https://tec.openplanner.team/stops/H4ka188a"], ["https://tec.openplanner.team/stops/Lenclar2", "https://tec.openplanner.team/stops/Lveoctr2"], ["https://tec.openplanner.team/stops/LJAcent1", "https://tec.openplanner.team/stops/LJAherb1"], ["https://tec.openplanner.team/stops/N525anb", "https://tec.openplanner.team/stops/N525ata"], ["https://tec.openplanner.team/stops/X985aeb", "https://tec.openplanner.team/stops/X985afa"], ["https://tec.openplanner.team/stops/H5rx101a", "https://tec.openplanner.team/stops/H5rx115a"], ["https://tec.openplanner.team/stops/Bjausan1", "https://tec.openplanner.team/stops/Bjausan2"], ["https://tec.openplanner.team/stops/H4lp124b", "https://tec.openplanner.team/stops/H4my121a"], ["https://tec.openplanner.team/stops/LWHkerk2", "https://tec.openplanner.team/stops/LWHwaas4"], ["https://tec.openplanner.team/stops/Bbsiabb1", "https://tec.openplanner.team/stops/Bbsifml1"], ["https://tec.openplanner.team/stops/N425acb", "https://tec.openplanner.team/stops/N425afb"], ["https://tec.openplanner.team/stops/H1si152b", "https://tec.openplanner.team/stops/H1si164b"], ["https://tec.openplanner.team/stops/X826afb", "https://tec.openplanner.team/stops/X826agb"], ["https://tec.openplanner.team/stops/LCUmonu2", "https://tec.openplanner.team/stops/LCUmora2"], ["https://tec.openplanner.team/stops/Bplnegl1", "https://tec.openplanner.team/stops/Clproi2"], ["https://tec.openplanner.team/stops/N576akb", "https://tec.openplanner.team/stops/N576ala"], ["https://tec.openplanner.team/stops/H4ru236b", "https://tec.openplanner.team/stops/H4ty349b"], ["https://tec.openplanner.team/stops/LdUkreu3", "https://tec.openplanner.team/stops/LeSkreu2"], ["https://tec.openplanner.team/stops/X896afa", "https://tec.openplanner.team/stops/X896afb"], ["https://tec.openplanner.team/stops/Bthsvil2", "https://tec.openplanner.team/stops/NL37akb"], ["https://tec.openplanner.team/stops/X818arb", "https://tec.openplanner.team/stops/X818ava"], ["https://tec.openplanner.team/stops/LSogite2", "https://tec.openplanner.team/stops/LSopost1"], ["https://tec.openplanner.team/stops/LHUhaum2", "https://tec.openplanner.team/stops/LTicent1"], ["https://tec.openplanner.team/stops/N501dwa", "https://tec.openplanner.team/stops/N501dwb"], ["https://tec.openplanner.team/stops/LOTcloe2", "https://tec.openplanner.team/stops/LVlplan2"], ["https://tec.openplanner.team/stops/LRmhage8", "https://tec.openplanner.team/stops/LRmsmvo3"], ["https://tec.openplanner.team/stops/H1fy120a", "https://tec.openplanner.team/stops/H1fy143a"], ["https://tec.openplanner.team/stops/H4hu113a", "https://tec.openplanner.team/stops/H4hu117a"], ["https://tec.openplanner.team/stops/N311aga", "https://tec.openplanner.team/stops/N311agb"], ["https://tec.openplanner.team/stops/LOehart1", "https://tec.openplanner.team/stops/LWAlpre1"], ["https://tec.openplanner.team/stops/Cfachap1", "https://tec.openplanner.team/stops/Cfachap2"], ["https://tec.openplanner.team/stops/X720aea", "https://tec.openplanner.team/stops/X723ama"], ["https://tec.openplanner.team/stops/H1hh112a", "https://tec.openplanner.team/stops/H1hh112b"], ["https://tec.openplanner.team/stops/X736aga", "https://tec.openplanner.team/stops/X736agb"], ["https://tec.openplanner.team/stops/LAVcime1", "https://tec.openplanner.team/stops/LAVeg--1"], ["https://tec.openplanner.team/stops/Ccuwain1", "https://tec.openplanner.team/stops/Ccuwain2"], ["https://tec.openplanner.team/stops/N506anb", "https://tec.openplanner.team/stops/N506apa"], ["https://tec.openplanner.team/stops/X993aha", "https://tec.openplanner.team/stops/X993aib"], ["https://tec.openplanner.team/stops/H1qu101a", "https://tec.openplanner.team/stops/H1qu110a"], ["https://tec.openplanner.team/stops/N501fsa", "https://tec.openplanner.team/stops/N501lsa"], ["https://tec.openplanner.team/stops/LBk79--2", "https://tec.openplanner.team/stops/LBkcarr3"], ["https://tec.openplanner.team/stops/Bchgcha2", "https://tec.openplanner.team/stops/Bchgqve4"], ["https://tec.openplanner.team/stops/Ladxhen1", "https://tec.openplanner.team/stops/LHCprog1"], ["https://tec.openplanner.team/stops/N874aaa", "https://tec.openplanner.team/stops/N894acb"], ["https://tec.openplanner.team/stops/Lgdegli1", "https://tec.openplanner.team/stops/Lgdhall*"], ["https://tec.openplanner.team/stops/H5fl104a", "https://tec.openplanner.team/stops/H5fl104b"], ["https://tec.openplanner.team/stops/X770aba", "https://tec.openplanner.team/stops/X770abb"], ["https://tec.openplanner.team/stops/Broneco1", "https://tec.openplanner.team/stops/Bronfou1"], ["https://tec.openplanner.team/stops/LPLbiol1", "https://tec.openplanner.team/stops/LPLc49-2"], ["https://tec.openplanner.team/stops/LVBbvin", "https://tec.openplanner.team/stops/LWDmass1"], ["https://tec.openplanner.team/stops/Bgemcha2", "https://tec.openplanner.team/stops/N522asa"], ["https://tec.openplanner.team/stops/X721aab", "https://tec.openplanner.team/stops/X721aea"], ["https://tec.openplanner.team/stops/Ljewale3", "https://tec.openplanner.team/stops/Ljewale4"], ["https://tec.openplanner.team/stops/Bhalark2", "https://tec.openplanner.team/stops/Bhaldbo1"], ["https://tec.openplanner.team/stops/X882afa", "https://tec.openplanner.team/stops/X882alb"], ["https://tec.openplanner.team/stops/Llghec-3", "https://tec.openplanner.team/stops/Llglonh2"], ["https://tec.openplanner.team/stops/H4lz117b", "https://tec.openplanner.team/stops/H4lz156b"], ["https://tec.openplanner.team/stops/LMIgare1", "https://tec.openplanner.team/stops/LSOathe2"], ["https://tec.openplanner.team/stops/X638aga", "https://tec.openplanner.team/stops/X638agb"], ["https://tec.openplanner.team/stops/Lprspra1", "https://tec.openplanner.team/stops/Lprspra2"], ["https://tec.openplanner.team/stops/LFarhuy1", "https://tec.openplanner.team/stops/LFarhuy2"], ["https://tec.openplanner.team/stops/Llgform1", "https://tec.openplanner.team/stops/Llgsnap2"], ["https://tec.openplanner.team/stops/Bbalvil1", "https://tec.openplanner.team/stops/N561aea"], ["https://tec.openplanner.team/stops/Cwgcamp1", "https://tec.openplanner.team/stops/Cwgplac2"], ["https://tec.openplanner.team/stops/LFMstat2", "https://tec.openplanner.team/stops/LFPknap2"], ["https://tec.openplanner.team/stops/X986afa", "https://tec.openplanner.team/stops/X986ata"], ["https://tec.openplanner.team/stops/H1ms254d", "https://tec.openplanner.team/stops/H1ms254e"], ["https://tec.openplanner.team/stops/H4ga149a", "https://tec.openplanner.team/stops/H4ga171b"], ["https://tec.openplanner.team/stops/H1si163a", "https://tec.openplanner.team/stops/H1si163b"], ["https://tec.openplanner.team/stops/LHhmohe1", "https://tec.openplanner.team/stops/LHhmohe2"], ["https://tec.openplanner.team/stops/Bsgimor1", "https://tec.openplanner.team/stops/Buccdst2"], ["https://tec.openplanner.team/stops/X985aca", "https://tec.openplanner.team/stops/X985adb"], ["https://tec.openplanner.team/stops/Lflweri2", "https://tec.openplanner.team/stops/Lrecroi2"], ["https://tec.openplanner.team/stops/LESflag1", "https://tec.openplanner.team/stops/LFNecpr*"], ["https://tec.openplanner.team/stops/Lsnbrac1", "https://tec.openplanner.team/stops/Lsnbrac4"], ["https://tec.openplanner.team/stops/X638amb", "https://tec.openplanner.team/stops/X638arb"], ["https://tec.openplanner.team/stops/H4bo114a", "https://tec.openplanner.team/stops/H4bo182b"], ["https://tec.openplanner.team/stops/X756ajb", "https://tec.openplanner.team/stops/X779ahb"], ["https://tec.openplanner.team/stops/LGEwalk1", "https://tec.openplanner.team/stops/LGEwalk2"], ["https://tec.openplanner.team/stops/N150aja", "https://tec.openplanner.team/stops/N158aaa"], ["https://tec.openplanner.team/stops/LCvmonu1", "https://tec.openplanner.team/stops/LSMtarg1"], ["https://tec.openplanner.team/stops/N120abb", "https://tec.openplanner.team/stops/N120aca"], ["https://tec.openplanner.team/stops/Cmlhotv2", "https://tec.openplanner.team/stops/Cmlvpla2"], ["https://tec.openplanner.team/stops/X738ada", "https://tec.openplanner.team/stops/X754amb"], ["https://tec.openplanner.team/stops/LbUmurr1", "https://tec.openplanner.team/stops/LmUvilz1"], ["https://tec.openplanner.team/stops/H4fr141b", "https://tec.openplanner.team/stops/H4te254b"], ["https://tec.openplanner.team/stops/N542aca", "https://tec.openplanner.team/stops/N542ama"], ["https://tec.openplanner.team/stops/LNCmele1", "https://tec.openplanner.team/stops/LRRelec3"], ["https://tec.openplanner.team/stops/Cvlbvir1", "https://tec.openplanner.team/stops/NH21adb"], ["https://tec.openplanner.team/stops/N232bba", "https://tec.openplanner.team/stops/N232bca"], ["https://tec.openplanner.team/stops/Lscatme1", "https://tec.openplanner.team/stops/Lscatme2"], ["https://tec.openplanner.team/stops/N501fab", "https://tec.openplanner.team/stops/N501mab"], ["https://tec.openplanner.team/stops/N201ajb", "https://tec.openplanner.team/stops/N201ava"], ["https://tec.openplanner.team/stops/H4hu115a", "https://tec.openplanner.team/stops/H4hu115b"], ["https://tec.openplanner.team/stops/Llgpere1", "https://tec.openplanner.team/stops/Llgpere2"], ["https://tec.openplanner.team/stops/X811adb", "https://tec.openplanner.team/stops/X811afb"], ["https://tec.openplanner.team/stops/N563ana", "https://tec.openplanner.team/stops/N570agb"], ["https://tec.openplanner.team/stops/Btubfab1", "https://tec.openplanner.team/stops/Btubmar2"], ["https://tec.openplanner.team/stops/Lagmair1", "https://tec.openplanner.team/stops/Lagmair5"], ["https://tec.openplanner.team/stops/LHumoul1", "https://tec.openplanner.team/stops/LMffoot1"], ["https://tec.openplanner.team/stops/Cjumall1", "https://tec.openplanner.team/stops/Cjuvign2"], ["https://tec.openplanner.team/stops/H5st163a", "https://tec.openplanner.team/stops/H5st169b"], ["https://tec.openplanner.team/stops/N557abb", "https://tec.openplanner.team/stops/N557acb"], ["https://tec.openplanner.team/stops/H4eq123a", "https://tec.openplanner.team/stops/H4eq123b"], ["https://tec.openplanner.team/stops/Cwxchap1", "https://tec.openplanner.team/stops/Cwxchap2"], ["https://tec.openplanner.team/stops/LeUmeye2", "https://tec.openplanner.team/stops/LrApley2"], ["https://tec.openplanner.team/stops/LSPchap3", "https://tec.openplanner.team/stops/LSPther1"], ["https://tec.openplanner.team/stops/LNoenne2", "https://tec.openplanner.team/stops/X917acb"], ["https://tec.openplanner.team/stops/N226ada", "https://tec.openplanner.team/stops/N321afb"], ["https://tec.openplanner.team/stops/Lsefore1", "https://tec.openplanner.team/stops/Lsevill1"], ["https://tec.openplanner.team/stops/X760aea", "https://tec.openplanner.team/stops/X760aeb"], ["https://tec.openplanner.team/stops/LENecol1", "https://tec.openplanner.team/stops/LENecol2"], ["https://tec.openplanner.team/stops/Cgogare1", "https://tec.openplanner.team/stops/Cgogare2"], ["https://tec.openplanner.team/stops/Ctachst2", "https://tec.openplanner.team/stops/Ctarpoi1"], ["https://tec.openplanner.team/stops/X614aba", "https://tec.openplanner.team/stops/X614acb"], ["https://tec.openplanner.team/stops/X783aab", "https://tec.openplanner.team/stops/X789aaa"], ["https://tec.openplanner.team/stops/Btgrpla1", "https://tec.openplanner.team/stops/N584aqa"], ["https://tec.openplanner.team/stops/LHEcruc1", "https://tec.openplanner.team/stops/LHEhv--2"], ["https://tec.openplanner.team/stops/LThchar1", "https://tec.openplanner.team/stops/LThchar2"], ["https://tec.openplanner.team/stops/N542ala", "https://tec.openplanner.team/stops/N542alb"], ["https://tec.openplanner.team/stops/N201agb", "https://tec.openplanner.team/stops/N201atb"], ["https://tec.openplanner.team/stops/X991adb", "https://tec.openplanner.team/stops/X991agc"], ["https://tec.openplanner.team/stops/Cgzabau2", "https://tec.openplanner.team/stops/Cgzcver1"], ["https://tec.openplanner.team/stops/LBNhegg2", "https://tec.openplanner.team/stops/LBNplei2"], ["https://tec.openplanner.team/stops/Canjon3", "https://tec.openplanner.team/stops/Canrtth1"], ["https://tec.openplanner.team/stops/LWaanto1", "https://tec.openplanner.team/stops/LWapl--4"], ["https://tec.openplanner.team/stops/LJUmate1", "https://tec.openplanner.team/stops/LJUxhen3"], ["https://tec.openplanner.team/stops/LJAbell1", "https://tec.openplanner.team/stops/LJAbell2"], ["https://tec.openplanner.team/stops/H2le152a", "https://tec.openplanner.team/stops/H2le176b"], ["https://tec.openplanner.team/stops/Ceqcfra2", "https://tec.openplanner.team/stops/H1er111a"], ["https://tec.openplanner.team/stops/Lmoknae1", "https://tec.openplanner.team/stops/Lmoknae3"], ["https://tec.openplanner.team/stops/Bjodcar1", "https://tec.openplanner.team/stops/Bjodint1"], ["https://tec.openplanner.team/stops/Brsgece2", "https://tec.openplanner.team/stops/Brsgleq1"], ["https://tec.openplanner.team/stops/LBIhann2", "https://tec.openplanner.team/stops/Lmltrix*"], ["https://tec.openplanner.team/stops/Csychap1", "https://tec.openplanner.team/stops/Csychap2"], ["https://tec.openplanner.team/stops/X774aeb", "https://tec.openplanner.team/stops/X774agb"], ["https://tec.openplanner.team/stops/LvAkirc3", "https://tec.openplanner.team/stops/LvAschr1"], ["https://tec.openplanner.team/stops/X767aab", "https://tec.openplanner.team/stops/X767aia"], ["https://tec.openplanner.team/stops/N501joa", "https://tec.openplanner.team/stops/N501jpa"], ["https://tec.openplanner.team/stops/Bsrgegl1", "https://tec.openplanner.team/stops/Bsrgm102"], ["https://tec.openplanner.team/stops/H1br127b", "https://tec.openplanner.team/stops/H3bo102a"], ["https://tec.openplanner.team/stops/Llgjenn1", "https://tec.openplanner.team/stops/Llgrame1"], ["https://tec.openplanner.team/stops/LLGec--*", "https://tec.openplanner.team/stops/LMOlens1"], ["https://tec.openplanner.team/stops/LLreque2", "https://tec.openplanner.team/stops/LLrgobe1"], ["https://tec.openplanner.team/stops/N424ada", "https://tec.openplanner.team/stops/N425aaa"], ["https://tec.openplanner.team/stops/X756aba", "https://tec.openplanner.team/stops/X757ahb"], ["https://tec.openplanner.team/stops/Barcbav2", "https://tec.openplanner.team/stops/Barcpre2"], ["https://tec.openplanner.team/stops/Crspana4", "https://tec.openplanner.team/stops/Crsprai3"], ["https://tec.openplanner.team/stops/X663aya", "https://tec.openplanner.team/stops/X663ayb"], ["https://tec.openplanner.team/stops/H1ha190b", "https://tec.openplanner.team/stops/H1sd343a"], ["https://tec.openplanner.team/stops/H1au112a", "https://tec.openplanner.team/stops/H1ro136b"], ["https://tec.openplanner.team/stops/N542ada", "https://tec.openplanner.team/stops/N542adb"], ["https://tec.openplanner.team/stops/Bgrmver1", "https://tec.openplanner.team/stops/N522ahb"], ["https://tec.openplanner.team/stops/X897aaa", "https://tec.openplanner.team/stops/X897aea"], ["https://tec.openplanner.team/stops/H1eo107a", "https://tec.openplanner.team/stops/H1mj128b"], ["https://tec.openplanner.team/stops/N115aaa", "https://tec.openplanner.team/stops/N117bab"], ["https://tec.openplanner.team/stops/Blanove1", "https://tec.openplanner.team/stops/Blanove2"], ["https://tec.openplanner.team/stops/LVTtrou1", "https://tec.openplanner.team/stops/LYEphar1"], ["https://tec.openplanner.team/stops/X641apc", "https://tec.openplanner.team/stops/X823aba"], ["https://tec.openplanner.team/stops/Lkivolg1", "https://tec.openplanner.team/stops/Lscatme2"], ["https://tec.openplanner.team/stops/X657aib", "https://tec.openplanner.team/stops/X657aja"], ["https://tec.openplanner.team/stops/N501bfy", "https://tec.openplanner.team/stops/N501bfz"], ["https://tec.openplanner.team/stops/N501brb", "https://tec.openplanner.team/stops/N501jbb"], ["https://tec.openplanner.team/stops/LWinavi1", "https://tec.openplanner.team/stops/LWipaif3"], ["https://tec.openplanner.team/stops/Louairl2", "https://tec.openplanner.team/stops/Loubour2"], ["https://tec.openplanner.team/stops/H1ht132b", "https://tec.openplanner.team/stops/H1ht197b"], ["https://tec.openplanner.team/stops/Cjudewe2", "https://tec.openplanner.team/stops/Clodupr2"], ["https://tec.openplanner.team/stops/X224afb", "https://tec.openplanner.team/stops/X398aca"], ["https://tec.openplanner.team/stops/Cchmott1", "https://tec.openplanner.team/stops/Cchwarm2"], ["https://tec.openplanner.team/stops/X896afb", "https://tec.openplanner.team/stops/X897awa"], ["https://tec.openplanner.team/stops/H4ne136a", "https://tec.openplanner.team/stops/H4te255a"], ["https://tec.openplanner.team/stops/N261aab", "https://tec.openplanner.team/stops/N338aib"], ["https://tec.openplanner.team/stops/X762afa", "https://tec.openplanner.team/stops/X762afb"], ["https://tec.openplanner.team/stops/Cbwmato1", "https://tec.openplanner.team/stops/Cbwmvri1"], ["https://tec.openplanner.team/stops/H1sp357a", "https://tec.openplanner.team/stops/H1sp357b"], ["https://tec.openplanner.team/stops/Cfawain2", "https://tec.openplanner.team/stops/Cflspir2"], ["https://tec.openplanner.team/stops/X684aaa", "https://tec.openplanner.team/stops/X684aba"], ["https://tec.openplanner.team/stops/Bjdssta1", "https://tec.openplanner.team/stops/Bjodgai1"], ["https://tec.openplanner.team/stops/X660afa", "https://tec.openplanner.team/stops/X660aga"], ["https://tec.openplanner.team/stops/LkEbbl-*", "https://tec.openplanner.team/stops/LkEbbl-2"], ["https://tec.openplanner.team/stops/X896aab", "https://tec.openplanner.team/stops/X896abb"], ["https://tec.openplanner.team/stops/H1sd347a", "https://tec.openplanner.team/stops/H1sd366b"], ["https://tec.openplanner.team/stops/Bnstgar1", "https://tec.openplanner.team/stops/Bnstmig2"], ["https://tec.openplanner.team/stops/LFrcent2", "https://tec.openplanner.team/stops/LFreg--2"], ["https://tec.openplanner.team/stops/H5qu156a", "https://tec.openplanner.team/stops/H5qu156d"], ["https://tec.openplanner.team/stops/N501esy", "https://tec.openplanner.team/stops/X501esb"], ["https://tec.openplanner.team/stops/X762aga", "https://tec.openplanner.team/stops/X762agb"], ["https://tec.openplanner.team/stops/NC14aob", "https://tec.openplanner.team/stops/NC14aua"], ["https://tec.openplanner.team/stops/Chpatel2", "https://tec.openplanner.team/stops/Chppack1"], ["https://tec.openplanner.team/stops/Croheig1", "https://tec.openplanner.team/stops/Crowall2"], ["https://tec.openplanner.team/stops/X769aeb", "https://tec.openplanner.team/stops/X769aia"], ["https://tec.openplanner.team/stops/Bfelcen2", "https://tec.openplanner.team/stops/Bronn392"], ["https://tec.openplanner.team/stops/Cjufour3", "https://tec.openplanner.team/stops/CMpuis1"], ["https://tec.openplanner.team/stops/N201aea", "https://tec.openplanner.team/stops/N201asa"], ["https://tec.openplanner.team/stops/N535afa", "https://tec.openplanner.team/stops/N535afb"], ["https://tec.openplanner.team/stops/X902aza", "https://tec.openplanner.team/stops/X902bgb"], ["https://tec.openplanner.team/stops/Bwaygrg1", "https://tec.openplanner.team/stops/Cbtlong1"], ["https://tec.openplanner.team/stops/Ldicorb1", "https://tec.openplanner.team/stops/LThplen1"], ["https://tec.openplanner.team/stops/Lghcise1", "https://tec.openplanner.team/stops/Lghhoco1"], ["https://tec.openplanner.team/stops/Llocime2", "https://tec.openplanner.team/stops/Llofort1"], ["https://tec.openplanner.team/stops/X631aab", "https://tec.openplanner.team/stops/X644aea"], ["https://tec.openplanner.team/stops/X723aaa", "https://tec.openplanner.team/stops/X775ajb"], ["https://tec.openplanner.team/stops/LAxbott1", "https://tec.openplanner.team/stops/Lmieg--2"], ["https://tec.openplanner.team/stops/Csbplac1", "https://tec.openplanner.team/stops/Csbrago1"], ["https://tec.openplanner.team/stops/H3so155b", "https://tec.openplanner.team/stops/H3so179a"], ["https://tec.openplanner.team/stops/X784aga", "https://tec.openplanner.team/stops/X784agb"], ["https://tec.openplanner.team/stops/H4tp147b", "https://tec.openplanner.team/stops/H4wr174b"], ["https://tec.openplanner.team/stops/N229arb", "https://tec.openplanner.team/stops/N229aua"], ["https://tec.openplanner.team/stops/N244arb", "https://tec.openplanner.team/stops/N244aub"], ["https://tec.openplanner.team/stops/H1ms277a", "https://tec.openplanner.team/stops/H1ms302b"], ["https://tec.openplanner.team/stops/H4ma418a", "https://tec.openplanner.team/stops/H4oq223b"], ["https://tec.openplanner.team/stops/Ctipoui1", "https://tec.openplanner.team/stops/H1tt107b"], ["https://tec.openplanner.team/stops/H1ba103b", "https://tec.openplanner.team/stops/H1ba114b"], ["https://tec.openplanner.team/stops/H1bb121a", "https://tec.openplanner.team/stops/H1el137a"], ["https://tec.openplanner.team/stops/X939afa", "https://tec.openplanner.team/stops/X940ahb"], ["https://tec.openplanner.team/stops/X822ada", "https://tec.openplanner.team/stops/X822aeb"], ["https://tec.openplanner.team/stops/H4ka186a", "https://tec.openplanner.team/stops/H4mt220a"], ["https://tec.openplanner.team/stops/N513bhb", "https://tec.openplanner.team/stops/N521avb"], ["https://tec.openplanner.team/stops/X983aab", "https://tec.openplanner.team/stops/X986aab"], ["https://tec.openplanner.team/stops/X717ada", "https://tec.openplanner.team/stops/X789aba"], ["https://tec.openplanner.team/stops/H1pa117a", "https://tec.openplanner.team/stops/H1pa118a"], ["https://tec.openplanner.team/stops/LBIairp2", "https://tec.openplanner.team/stops/Lghgros1"], ["https://tec.openplanner.team/stops/X741abc", "https://tec.openplanner.team/stops/X741aca"], ["https://tec.openplanner.team/stops/LLrcomb2", "https://tec.openplanner.team/stops/LLrmaq-2"], ["https://tec.openplanner.team/stops/Cmypast1", "https://tec.openplanner.team/stops/Cmysncb2"], ["https://tec.openplanner.team/stops/H1sg144a", "https://tec.openplanner.team/stops/H1te176b"], ["https://tec.openplanner.team/stops/Chpcarp2", "https://tec.openplanner.team/stops/Chpceri2"], ["https://tec.openplanner.team/stops/H1ms270a", "https://tec.openplanner.team/stops/H1ms270b"], ["https://tec.openplanner.team/stops/N509bfb", "https://tec.openplanner.team/stops/N509bgb"], ["https://tec.openplanner.team/stops/Bbalvil1", "https://tec.openplanner.team/stops/N534bga"], ["https://tec.openplanner.team/stops/H5qu147a", "https://tec.openplanner.team/stops/H5qu153a"], ["https://tec.openplanner.team/stops/X735abc", "https://tec.openplanner.team/stops/X735aca"], ["https://tec.openplanner.team/stops/N204aaa", "https://tec.openplanner.team/stops/N205adb"], ["https://tec.openplanner.team/stops/H4la198b", "https://tec.openplanner.team/stops/H4la198d"], ["https://tec.openplanner.team/stops/Csedoua1", "https://tec.openplanner.team/stops/Csedoua5"], ["https://tec.openplanner.team/stops/Bblapra2", "https://tec.openplanner.team/stops/Bwaunop2"], ["https://tec.openplanner.team/stops/X734afb", "https://tec.openplanner.team/stops/X734ahb"], ["https://tec.openplanner.team/stops/Bwatran2", "https://tec.openplanner.team/stops/Bwatrte2"], ["https://tec.openplanner.team/stops/N104aka", "https://tec.openplanner.team/stops/N106arb"], ["https://tec.openplanner.team/stops/X695aba", "https://tec.openplanner.team/stops/X695aha"], ["https://tec.openplanner.team/stops/Boplsma3", "https://tec.openplanner.team/stops/Boplsma4"], ["https://tec.openplanner.team/stops/Cgzcorn1", "https://tec.openplanner.team/stops/Cgzcorn2"], ["https://tec.openplanner.team/stops/LmI129-2", "https://tec.openplanner.team/stops/LmIcafe2"], ["https://tec.openplanner.team/stops/Cgzbouh1", "https://tec.openplanner.team/stops/Cgzrust2"], ["https://tec.openplanner.team/stops/N232aga", "https://tec.openplanner.team/stops/N232agb"], ["https://tec.openplanner.team/stops/LTIgare1", "https://tec.openplanner.team/stops/LTIgare4"], ["https://tec.openplanner.team/stops/Canplal1", "https://tec.openplanner.team/stops/Canterr2"], ["https://tec.openplanner.team/stops/N360acb", "https://tec.openplanner.team/stops/N360acc"], ["https://tec.openplanner.team/stops/Bwbfckr1", "https://tec.openplanner.team/stops/Bwbfckr2"], ["https://tec.openplanner.team/stops/H1ms263a", "https://tec.openplanner.team/stops/H1ms310b"], ["https://tec.openplanner.team/stops/LHgec--0", "https://tec.openplanner.team/stops/LHggeer2"], ["https://tec.openplanner.team/stops/X640aba", "https://tec.openplanner.team/stops/X640acb"], ["https://tec.openplanner.team/stops/Bbghsar1", "https://tec.openplanner.team/stops/Bsteegl1"], ["https://tec.openplanner.team/stops/H5is170b", "https://tec.openplanner.team/stops/H5is171a"], ["https://tec.openplanner.team/stops/H1ls106a", "https://tec.openplanner.team/stops/H1ls129a"], ["https://tec.openplanner.team/stops/LeSkreu1", "https://tec.openplanner.team/stops/LeSkreu2"], ["https://tec.openplanner.team/stops/H1cv102a", "https://tec.openplanner.team/stops/H1mj126b"], ["https://tec.openplanner.team/stops/H4gr111a", "https://tec.openplanner.team/stops/H4ld130b"], ["https://tec.openplanner.team/stops/N506bdb", "https://tec.openplanner.team/stops/N506bnb"], ["https://tec.openplanner.team/stops/Lenauln1", "https://tec.openplanner.team/stops/Lenhouc1"], ["https://tec.openplanner.team/stops/Baegegl1", "https://tec.openplanner.team/stops/Bflccav1"], ["https://tec.openplanner.team/stops/LDAalbe1", "https://tec.openplanner.team/stops/LDAwich1"], ["https://tec.openplanner.team/stops/N121aea", "https://tec.openplanner.team/stops/N121ajc"], ["https://tec.openplanner.team/stops/Cfccol1", "https://tec.openplanner.team/stops/Cfcgrat1"], ["https://tec.openplanner.team/stops/Bbstchv1", "https://tec.openplanner.team/stops/Btanpla1"], ["https://tec.openplanner.team/stops/X928aab", "https://tec.openplanner.team/stops/X986ala"], ["https://tec.openplanner.team/stops/Lghchap2", "https://tec.openplanner.team/stops/Lghhoco2"], ["https://tec.openplanner.team/stops/LXhvina1", "https://tec.openplanner.team/stops/LXhvina2"], ["https://tec.openplanner.team/stops/LHtdros2", "https://tec.openplanner.team/stops/LJAbell4"], ["https://tec.openplanner.team/stops/Cprbevu2", "https://tec.openplanner.team/stops/Cprvill1"], ["https://tec.openplanner.team/stops/LROandr1", "https://tec.openplanner.team/stops/LROchap2"], ["https://tec.openplanner.team/stops/H5gr137b", "https://tec.openplanner.team/stops/H5gr138a"], ["https://tec.openplanner.team/stops/Llgaba-2", "https://tec.openplanner.team/stops/Llgcouv4"], ["https://tec.openplanner.team/stops/X979afb", "https://tec.openplanner.team/stops/X982ala"], ["https://tec.openplanner.team/stops/H4ty273b", "https://tec.openplanner.team/stops/H4ty397b"], ["https://tec.openplanner.team/stops/N501ibb", "https://tec.openplanner.team/stops/N501ijb"], ["https://tec.openplanner.team/stops/N248aea", "https://tec.openplanner.team/stops/N248aeb"], ["https://tec.openplanner.team/stops/Blhubja1", "https://tec.openplanner.team/stops/Blhucmo2"], ["https://tec.openplanner.team/stops/H2fa109a", "https://tec.openplanner.team/stops/H2hg268b"], ["https://tec.openplanner.team/stops/LWDchab1", "https://tec.openplanner.team/stops/LWDchab2"], ["https://tec.openplanner.team/stops/LBLplac3", "https://tec.openplanner.team/stops/LBLplas1"], ["https://tec.openplanner.team/stops/N211aea", "https://tec.openplanner.team/stops/N219ada"], ["https://tec.openplanner.team/stops/LPrcarr2", "https://tec.openplanner.team/stops/LTNmont2"], ["https://tec.openplanner.team/stops/LLegare2", "https://tec.openplanner.team/stops/LLemonu1"], ["https://tec.openplanner.team/stops/LWelogi1", "https://tec.openplanner.team/stops/LWepost4"], ["https://tec.openplanner.team/stops/LTEkl121", "https://tec.openplanner.team/stops/LTErest1"], ["https://tec.openplanner.team/stops/LLWmonu2", "https://tec.openplanner.team/stops/LVBdela1"], ["https://tec.openplanner.team/stops/LSBjoli2", "https://tec.openplanner.team/stops/LSBsere4"], ["https://tec.openplanner.team/stops/Bhevcur2", "https://tec.openplanner.team/stops/Bvilvil4"], ["https://tec.openplanner.team/stops/Bettcha2", "https://tec.openplanner.team/stops/Bettlha1"], ["https://tec.openplanner.team/stops/Barqpwa2", "https://tec.openplanner.team/stops/Bptrgri2"], ["https://tec.openplanner.team/stops/H4pq112b", "https://tec.openplanner.team/stops/H4pq119a"], ["https://tec.openplanner.team/stops/N501giy", "https://tec.openplanner.team/stops/N501kbb"], ["https://tec.openplanner.team/stops/N312aab", "https://tec.openplanner.team/stops/X892ajb"], ["https://tec.openplanner.team/stops/H4lu125a", "https://tec.openplanner.team/stops/H4lu125b"], ["https://tec.openplanner.team/stops/NL67aba", "https://tec.openplanner.team/stops/NL67abb"], ["https://tec.openplanner.team/stops/Lmitroi1", "https://tec.openplanner.team/stops/Lmitroi2"], ["https://tec.openplanner.team/stops/N349aia", "https://tec.openplanner.team/stops/N351aqb"], ["https://tec.openplanner.team/stops/N501awa", "https://tec.openplanner.team/stops/N527aeb"], ["https://tec.openplanner.team/stops/N113acb", "https://tec.openplanner.team/stops/N113agb"], ["https://tec.openplanner.team/stops/Lflgare1", "https://tec.openplanner.team/stops/Lflsana2"], ["https://tec.openplanner.team/stops/H1ms313b", "https://tec.openplanner.team/stops/H1ob361b"], ["https://tec.openplanner.team/stops/Bllnpsc2", "https://tec.openplanner.team/stops/Bllnrod4"], ["https://tec.openplanner.team/stops/H4bo115a", "https://tec.openplanner.team/stops/H4hu113b"], ["https://tec.openplanner.team/stops/Brsrbbo1", "https://tec.openplanner.team/stops/Brsregl3"], ["https://tec.openplanner.team/stops/Bllnlb11", "https://tec.openplanner.team/stops/Bllnpsc2"], ["https://tec.openplanner.team/stops/H1ro135b", "https://tec.openplanner.team/stops/H1ro140b"], ["https://tec.openplanner.team/stops/Bgnteco1", "https://tec.openplanner.team/stops/Bsgeqpb2"], ["https://tec.openplanner.team/stops/LaRkape2", "https://tec.openplanner.team/stops/LoDkoll2"], ["https://tec.openplanner.team/stops/Cchorle1", "https://tec.openplanner.team/stops/Cchparc2"], ["https://tec.openplanner.team/stops/H1qu108a", "https://tec.openplanner.team/stops/H1qu108b"], ["https://tec.openplanner.team/stops/N154aab", "https://tec.openplanner.team/stops/N154acb"], ["https://tec.openplanner.team/stops/N230aka", "https://tec.openplanner.team/stops/N549abb"], ["https://tec.openplanner.team/stops/N501lgb", "https://tec.openplanner.team/stops/N501lja"], ["https://tec.openplanner.team/stops/Btslcej1", "https://tec.openplanner.team/stops/Btslhau1"], ["https://tec.openplanner.team/stops/LCxcham2", "https://tec.openplanner.team/stops/LCxcour2"], ["https://tec.openplanner.team/stops/Bsoigar1", "https://tec.openplanner.team/stops/H3so161b"], ["https://tec.openplanner.team/stops/LrEkais1", "https://tec.openplanner.team/stops/LrEkais2"], ["https://tec.openplanner.team/stops/H1cv101a", "https://tec.openplanner.team/stops/H1cv102a"], ["https://tec.openplanner.team/stops/Cctcoll2", "https://tec.openplanner.team/stops/Cctrobe1"], ["https://tec.openplanner.team/stops/N125aba", "https://tec.openplanner.team/stops/N125aca"], ["https://tec.openplanner.team/stops/Llghars7", "https://tec.openplanner.team/stops/Llgnata1"], ["https://tec.openplanner.team/stops/N501dja", "https://tec.openplanner.team/stops/N538ahb"], ["https://tec.openplanner.team/stops/X804ald", "https://tec.openplanner.team/stops/X804bma"], ["https://tec.openplanner.team/stops/LCleg--1", "https://tec.openplanner.team/stops/LClsacr2"], ["https://tec.openplanner.team/stops/H4rx141a", "https://tec.openplanner.team/stops/H4rx176a"], ["https://tec.openplanner.team/stops/LGObeth2", "https://tec.openplanner.team/stops/LMemaza2"], ["https://tec.openplanner.team/stops/Bbsicea1", "https://tec.openplanner.team/stops/Bbsivil2"], ["https://tec.openplanner.team/stops/H4ir164a", "https://tec.openplanner.team/stops/H4ir167b"], ["https://tec.openplanner.team/stops/X782anb", "https://tec.openplanner.team/stops/X782aob"], ["https://tec.openplanner.team/stops/LHUgole2", "https://tec.openplanner.team/stops/LHUmess2"], ["https://tec.openplanner.team/stops/X904acb", "https://tec.openplanner.team/stops/X904adb"], ["https://tec.openplanner.team/stops/H1gh151a", "https://tec.openplanner.team/stops/H1gh151b"], ["https://tec.openplanner.team/stops/Ljuprev1", "https://tec.openplanner.team/stops/Ljuprev2"], ["https://tec.openplanner.team/stops/H4li178a", "https://tec.openplanner.team/stops/H4li179d"], ["https://tec.openplanner.team/stops/Lhrdeme1", "https://tec.openplanner.team/stops/Lhrdeme2"], ["https://tec.openplanner.team/stops/Btubnav1", "https://tec.openplanner.team/stops/Btubnav2"], ["https://tec.openplanner.team/stops/X989abb", "https://tec.openplanner.team/stops/X989acb"], ["https://tec.openplanner.team/stops/X937ala", "https://tec.openplanner.team/stops/X946agb"], ["https://tec.openplanner.team/stops/H1sg144a", "https://tec.openplanner.team/stops/H1sg144b"], ["https://tec.openplanner.team/stops/X654aab", "https://tec.openplanner.team/stops/X654aba"], ["https://tec.openplanner.team/stops/X806agb", "https://tec.openplanner.team/stops/X873acb"], ["https://tec.openplanner.team/stops/Bwagmco1", "https://tec.openplanner.team/stops/Bwagmco2"], ["https://tec.openplanner.team/stops/Cgogb2", "https://tec.openplanner.team/stops/Cgoson12"], ["https://tec.openplanner.team/stops/H3lr106a", "https://tec.openplanner.team/stops/H3lr116a"], ["https://tec.openplanner.team/stops/Bcrbros1", "https://tec.openplanner.team/stops/Bnilcab2"], ["https://tec.openplanner.team/stops/Bnivari2", "https://tec.openplanner.team/stops/Bnivpgr1"], ["https://tec.openplanner.team/stops/Bzlucam2", "https://tec.openplanner.team/stops/Bzluqga2"], ["https://tec.openplanner.team/stops/LJAcime2", "https://tec.openplanner.team/stops/LJAfawe2"], ["https://tec.openplanner.team/stops/X724aea", "https://tec.openplanner.team/stops/X724afa"], ["https://tec.openplanner.team/stops/Bmrlhan3", "https://tec.openplanner.team/stops/Bpiehte1"], ["https://tec.openplanner.team/stops/H1el137a", "https://tec.openplanner.team/stops/H1el137b"], ["https://tec.openplanner.team/stops/LRObarr1", "https://tec.openplanner.team/stops/LROmorf2"], ["https://tec.openplanner.team/stops/X615ayb", "https://tec.openplanner.team/stops/X615bcb"], ["https://tec.openplanner.team/stops/Bgercen1", "https://tec.openplanner.team/stops/NB33aja"], ["https://tec.openplanner.team/stops/LBachpl2", "https://tec.openplanner.team/stops/LGogare2"], ["https://tec.openplanner.team/stops/H5at104a", "https://tec.openplanner.team/stops/H5at104b"], ["https://tec.openplanner.team/stops/H4hx124b", "https://tec.openplanner.team/stops/H4wa149a"], ["https://tec.openplanner.team/stops/Cjuquai1", "https://tec.openplanner.team/stops/Cjuunio1"], ["https://tec.openplanner.team/stops/H5st166a", "https://tec.openplanner.team/stops/H5st166b"], ["https://tec.openplanner.team/stops/LSzetoi1", "https://tec.openplanner.team/stops/LSzetoi2"], ["https://tec.openplanner.team/stops/X636bda", "https://tec.openplanner.team/stops/X649abb"], ["https://tec.openplanner.team/stops/Btiegar1", "https://tec.openplanner.team/stops/Btiegoo2"], ["https://tec.openplanner.team/stops/LHMec--1", "https://tec.openplanner.team/stops/LHMgrun1"], ["https://tec.openplanner.team/stops/Cgocolo2", "https://tec.openplanner.team/stops/Cgolimi1"], ["https://tec.openplanner.team/stops/X696aba", "https://tec.openplanner.team/stops/X696aea"], ["https://tec.openplanner.team/stops/LHUbail2", "https://tec.openplanner.team/stops/NL76bcb"], ["https://tec.openplanner.team/stops/X829aea", "https://tec.openplanner.team/stops/X830aaa"], ["https://tec.openplanner.team/stops/H3so157b", "https://tec.openplanner.team/stops/H3so158a"], ["https://tec.openplanner.team/stops/Becegar1", "https://tec.openplanner.team/stops/Becepco1"], ["https://tec.openplanner.team/stops/H4fo119a", "https://tec.openplanner.team/stops/H4ga169a"], ["https://tec.openplanner.team/stops/N101aab", "https://tec.openplanner.team/stops/N101aea"], ["https://tec.openplanner.team/stops/X717aha", "https://tec.openplanner.team/stops/X782aoa"], ["https://tec.openplanner.team/stops/X921aha", "https://tec.openplanner.team/stops/X921ajc"], ["https://tec.openplanner.team/stops/LWAathe2", "https://tec.openplanner.team/stops/LWAgare*"], ["https://tec.openplanner.team/stops/N528aaa", "https://tec.openplanner.team/stops/N528aea"], ["https://tec.openplanner.team/stops/N506baa", "https://tec.openplanner.team/stops/N506bma"], ["https://tec.openplanner.team/stops/X730aab", "https://tec.openplanner.team/stops/X753acb"], ["https://tec.openplanner.team/stops/Bwavnam3", "https://tec.openplanner.team/stops/Bwavpao1"], ["https://tec.openplanner.team/stops/LTHchiv1", "https://tec.openplanner.team/stops/LTHturo3"], ["https://tec.openplanner.team/stops/H4ma204a", "https://tec.openplanner.team/stops/H4oq226a"], ["https://tec.openplanner.team/stops/LClbloc1", "https://tec.openplanner.team/stops/LCljose1"], ["https://tec.openplanner.team/stops/H1qu101b", "https://tec.openplanner.team/stops/H1qu129a"], ["https://tec.openplanner.team/stops/N222acb", "https://tec.openplanner.team/stops/N222adb"], ["https://tec.openplanner.team/stops/H1cu125a", "https://tec.openplanner.team/stops/H1cu129b"], ["https://tec.openplanner.team/stops/LwAschu2", "https://tec.openplanner.team/stops/LwAstum2"], ["https://tec.openplanner.team/stops/N563aaa", "https://tec.openplanner.team/stops/N563aab"], ["https://tec.openplanner.team/stops/LmUvilz1", "https://tec.openplanner.team/stops/LmUvilz2"], ["https://tec.openplanner.team/stops/X911acb", "https://tec.openplanner.team/stops/X911ava"], ["https://tec.openplanner.team/stops/H1bd100a", "https://tec.openplanner.team/stops/H1bd100b"], ["https://tec.openplanner.team/stops/LCSpoud1", "https://tec.openplanner.team/stops/LCSpoud2"], ["https://tec.openplanner.team/stops/Llgbida1", "https://tec.openplanner.team/stops/Llgware1"], ["https://tec.openplanner.team/stops/Lbhbalt1", "https://tec.openplanner.team/stops/LMFmoul2"], ["https://tec.openplanner.team/stops/LkEbran1", "https://tec.openplanner.team/stops/LMsgara1"], ["https://tec.openplanner.team/stops/Clgmaco1", "https://tec.openplanner.team/stops/Clgpavi1"], ["https://tec.openplanner.team/stops/H4ve131a", "https://tec.openplanner.team/stops/H4ve131b"], ["https://tec.openplanner.team/stops/X811aoa", "https://tec.openplanner.team/stops/X812aya"], ["https://tec.openplanner.team/stops/Bbsiabb2", "https://tec.openplanner.team/stops/Bbsifmo2"], ["https://tec.openplanner.team/stops/LCPcomp1", "https://tec.openplanner.team/stops/LCTcret1"], ["https://tec.openplanner.team/stops/LMApape1", "https://tec.openplanner.team/stops/LMAroch3"], ["https://tec.openplanner.team/stops/X793aka", "https://tec.openplanner.team/stops/X793aob"], ["https://tec.openplanner.team/stops/Ltibord1", "https://tec.openplanner.team/stops/Ltimarr1"], ["https://tec.openplanner.team/stops/N501bpa", "https://tec.openplanner.team/stops/N501btb"], ["https://tec.openplanner.team/stops/LMOmome1", "https://tec.openplanner.team/stops/LMOs45-2"], ["https://tec.openplanner.team/stops/N517add", "https://tec.openplanner.team/stops/NR30aaa"], ["https://tec.openplanner.team/stops/X766aba", "https://tec.openplanner.team/stops/X766aha"], ["https://tec.openplanner.team/stops/N513ala", "https://tec.openplanner.team/stops/N513alb"], ["https://tec.openplanner.team/stops/LLrquar2", "https://tec.openplanner.team/stops/LTHchiv1"], ["https://tec.openplanner.team/stops/Baegd741", "https://tec.openplanner.team/stops/Bgercen1"], ["https://tec.openplanner.team/stops/Bmangen1", "https://tec.openplanner.team/stops/H2mg144b"], ["https://tec.openplanner.team/stops/Cgycime1", "https://tec.openplanner.team/stops/Cgycime2"], ["https://tec.openplanner.team/stops/LOuhalb1", "https://tec.openplanner.team/stops/LOuouff1"], ["https://tec.openplanner.team/stops/LERboss1", "https://tec.openplanner.team/stops/LERboss2"], ["https://tec.openplanner.team/stops/H1el138a", "https://tec.openplanner.team/stops/H1el140b"], ["https://tec.openplanner.team/stops/X805aaa", "https://tec.openplanner.team/stops/X805akb"], ["https://tec.openplanner.team/stops/LESmagr1", "https://tec.openplanner.team/stops/LESmart1"], ["https://tec.openplanner.team/stops/Bwavbva1", "https://tec.openplanner.team/stops/Bwavlon2"], ["https://tec.openplanner.team/stops/Lmnmart1", "https://tec.openplanner.team/stops/Lsmsech3"], ["https://tec.openplanner.team/stops/H3th127b", "https://tec.openplanner.team/stops/H3th129a"], ["https://tec.openplanner.team/stops/Lghpero2", "https://tec.openplanner.team/stops/Lghsimo4"], ["https://tec.openplanner.team/stops/X912afb", "https://tec.openplanner.team/stops/X912aga"], ["https://tec.openplanner.team/stops/LbTkran1", "https://tec.openplanner.team/stops/LbTkreu4"], ["https://tec.openplanner.team/stops/H1me116a", "https://tec.openplanner.team/stops/H1mm122c"], ["https://tec.openplanner.team/stops/H4mb204a", "https://tec.openplanner.team/stops/H4mb205b"], ["https://tec.openplanner.team/stops/NL78aba", "https://tec.openplanner.team/stops/NL78acb"], ["https://tec.openplanner.team/stops/Crglyre2", "https://tec.openplanner.team/stops/Cstcent2"], ["https://tec.openplanner.team/stops/N511aaa", "https://tec.openplanner.team/stops/N511ahb"], ["https://tec.openplanner.team/stops/Llgvero3", "https://tec.openplanner.team/stops/Llgvero4"], ["https://tec.openplanner.team/stops/Cmastfi2", "https://tec.openplanner.team/stops/Cmomoul3"], ["https://tec.openplanner.team/stops/Cctkais1", "https://tec.openplanner.team/stops/Ccurtra2"], ["https://tec.openplanner.team/stops/LhEklos1", "https://tec.openplanner.team/stops/LhElont3"], ["https://tec.openplanner.team/stops/H1fr118a", "https://tec.openplanner.team/stops/H1fr119a"], ["https://tec.openplanner.team/stops/LJOferm2", "https://tec.openplanner.team/stops/LJOvill2"], ["https://tec.openplanner.team/stops/N152aba", "https://tec.openplanner.team/stops/N152abe"], ["https://tec.openplanner.team/stops/Lcebail2", "https://tec.openplanner.team/stops/Lceembo1"], ["https://tec.openplanner.team/stops/H2fa101b", "https://tec.openplanner.team/stops/H2fa103b"], ["https://tec.openplanner.team/stops/LOmecol2", "https://tec.openplanner.team/stops/LOmvill1"], ["https://tec.openplanner.team/stops/N308afb", "https://tec.openplanner.team/stops/N308afc"], ["https://tec.openplanner.team/stops/N244aca", "https://tec.openplanner.team/stops/N244ahb"], ["https://tec.openplanner.team/stops/Cobobjo2", "https://tec.openplanner.team/stops/Cpcgout1"], ["https://tec.openplanner.team/stops/N138aja", "https://tec.openplanner.team/stops/N138ajb"], ["https://tec.openplanner.team/stops/Cgd4ven2", "https://tec.openplanner.team/stops/Clggrfe1"], ["https://tec.openplanner.team/stops/H1cu110b", "https://tec.openplanner.team/stops/H1fr114b"], ["https://tec.openplanner.team/stops/H4va233b", "https://tec.openplanner.team/stops/H4va234a"], ["https://tec.openplanner.team/stops/X840acc", "https://tec.openplanner.team/stops/X840acd"], ["https://tec.openplanner.team/stops/X775acb", "https://tec.openplanner.team/stops/X775aeb"], ["https://tec.openplanner.team/stops/X614ala", "https://tec.openplanner.team/stops/X614alb"], ["https://tec.openplanner.team/stops/Balsbeg1", "https://tec.openplanner.team/stops/Balsbeg2"], ["https://tec.openplanner.team/stops/LCPaube2", "https://tec.openplanner.team/stops/LLNeg--1"], ["https://tec.openplanner.team/stops/N501aba", "https://tec.openplanner.team/stops/N503aca"], ["https://tec.openplanner.team/stops/X898ama", "https://tec.openplanner.team/stops/X899aeb"], ["https://tec.openplanner.team/stops/Bhmmlad1", "https://tec.openplanner.team/stops/Bhmmvdu1"], ["https://tec.openplanner.team/stops/Cgzclef1", "https://tec.openplanner.team/stops/Cgzcorn2"], ["https://tec.openplanner.team/stops/Bsgimca1", "https://tec.openplanner.team/stops/Bsgipmo1"], ["https://tec.openplanner.team/stops/Cmygbbo3", "https://tec.openplanner.team/stops/Cmyvert1"], ["https://tec.openplanner.team/stops/Cgzvivi2", "https://tec.openplanner.team/stops/Cmxpleg2"], ["https://tec.openplanner.team/stops/H1ms942a", "https://tec.openplanner.team/stops/H1ni322a"], ["https://tec.openplanner.team/stops/X804ala", "https://tec.openplanner.team/stops/X804bwa"], ["https://tec.openplanner.team/stops/Blemhon1", "https://tec.openplanner.team/stops/Blemhon2"], ["https://tec.openplanner.team/stops/LThbatt1", "https://tec.openplanner.team/stops/LTheg--1"], ["https://tec.openplanner.team/stops/Lbocorn2", "https://tec.openplanner.team/stops/Loumatt2"], ["https://tec.openplanner.team/stops/Lemarde1", "https://tec.openplanner.team/stops/Lemarde2"], ["https://tec.openplanner.team/stops/LOurena1", "https://tec.openplanner.team/stops/X982afb"], ["https://tec.openplanner.team/stops/H1mj125b", "https://tec.openplanner.team/stops/H1ml112a"], ["https://tec.openplanner.team/stops/LGDgdou1", "https://tec.openplanner.team/stops/LGDgdou2"], ["https://tec.openplanner.team/stops/Boppcen3", "https://tec.openplanner.team/stops/Boppcen4"], ["https://tec.openplanner.team/stops/LOTdelv1", "https://tec.openplanner.team/stops/LOTsava1"], ["https://tec.openplanner.team/stops/Blhueso1", "https://tec.openplanner.team/stops/Blhuone1"], ["https://tec.openplanner.team/stops/H4os221b", "https://tec.openplanner.team/stops/H4os221c"], ["https://tec.openplanner.team/stops/N528ata", "https://tec.openplanner.team/stops/N528atb"], ["https://tec.openplanner.team/stops/Clibrun2", "https://tec.openplanner.team/stops/Cliegli1"], ["https://tec.openplanner.team/stops/Bnivpgr1", "https://tec.openplanner.team/stops/Bnivpgr2"], ["https://tec.openplanner.team/stops/Lsechan2", "https://tec.openplanner.team/stops/Lsestap3"], ["https://tec.openplanner.team/stops/X892abb", "https://tec.openplanner.team/stops/X892acb"], ["https://tec.openplanner.team/stops/X734aob", "https://tec.openplanner.team/stops/X734apa"], ["https://tec.openplanner.team/stops/N145ajb", "https://tec.openplanner.team/stops/N150aka"], ["https://tec.openplanner.team/stops/LSLeg--1", "https://tec.openplanner.team/stops/LSLeg--2"], ["https://tec.openplanner.team/stops/X717agd", "https://tec.openplanner.team/stops/X718aia"], ["https://tec.openplanner.team/stops/N501jea", "https://tec.openplanner.team/stops/N501jeb"], ["https://tec.openplanner.team/stops/Btlgreg1", "https://tec.openplanner.team/stops/Btlgreg2"], ["https://tec.openplanner.team/stops/Lbomc--6", "https://tec.openplanner.team/stops/Lbosart1"], ["https://tec.openplanner.team/stops/X769alb", "https://tec.openplanner.team/stops/X769aob"], ["https://tec.openplanner.team/stops/X602aab", "https://tec.openplanner.team/stops/X602adb"], ["https://tec.openplanner.team/stops/H1fl135a", "https://tec.openplanner.team/stops/H1fl141a"], ["https://tec.openplanner.team/stops/H4do108a", "https://tec.openplanner.team/stops/H4do108b"], ["https://tec.openplanner.team/stops/Lvepala1", "https://tec.openplanner.team/stops/Lvepala5"], ["https://tec.openplanner.team/stops/Csemacq1", "https://tec.openplanner.team/stops/Csemacq4"], ["https://tec.openplanner.team/stops/LTieg--1", "https://tec.openplanner.team/stops/LTieg--2"], ["https://tec.openplanner.team/stops/Bottegl1", "https://tec.openplanner.team/stops/Bottegl3"], ["https://tec.openplanner.team/stops/N145aeb", "https://tec.openplanner.team/stops/N145aed"], ["https://tec.openplanner.team/stops/X601bba", "https://tec.openplanner.team/stops/X601dha"], ["https://tec.openplanner.team/stops/N308ahb", "https://tec.openplanner.team/stops/N308aja"], ["https://tec.openplanner.team/stops/N551ana", "https://tec.openplanner.team/stops/N551anb"], ["https://tec.openplanner.team/stops/H2mo135a", "https://tec.openplanner.team/stops/H2mo135b"], ["https://tec.openplanner.team/stops/Cgplutt2", "https://tec.openplanner.team/stops/H2gy113b"], ["https://tec.openplanner.team/stops/LAmsart2", "https://tec.openplanner.team/stops/LVLhalb1"], ["https://tec.openplanner.team/stops/X727aba", "https://tec.openplanner.team/stops/X767afa"], ["https://tec.openplanner.team/stops/Ccacoup1", "https://tec.openplanner.team/stops/Ccaegli4"], ["https://tec.openplanner.team/stops/H4ev126a", "https://tec.openplanner.team/stops/H4ev126b"], ["https://tec.openplanner.team/stops/X873aab", "https://tec.openplanner.team/stops/X873abb"], ["https://tec.openplanner.team/stops/H1je217a", "https://tec.openplanner.team/stops/H1je217b"], ["https://tec.openplanner.team/stops/LORpave2", "https://tec.openplanner.team/stops/LTychev2"], ["https://tec.openplanner.team/stops/Bgerd322", "https://tec.openplanner.team/stops/Bgrhpos1"], ["https://tec.openplanner.team/stops/N501iva", "https://tec.openplanner.team/stops/N501ivb"], ["https://tec.openplanner.team/stops/X614aaa", "https://tec.openplanner.team/stops/X614aka"], ["https://tec.openplanner.team/stops/H2sv215b", "https://tec.openplanner.team/stops/H2sv218b"], ["https://tec.openplanner.team/stops/Bbchmai1", "https://tec.openplanner.team/stops/Bitrfsc2"], ["https://tec.openplanner.team/stops/X801bea", "https://tec.openplanner.team/stops/X801bga"], ["https://tec.openplanner.team/stops/X646aaa", "https://tec.openplanner.team/stops/X646abb"], ["https://tec.openplanner.team/stops/Ljelamb1", "https://tec.openplanner.team/stops/Lsekubo1"], ["https://tec.openplanner.team/stops/LHhchau2", "https://tec.openplanner.team/stops/LHhmohe2"], ["https://tec.openplanner.team/stops/LListie1", "https://tec.openplanner.team/stops/LReeg--1"], ["https://tec.openplanner.team/stops/Bbeaech2", "https://tec.openplanner.team/stops/Bbeascl1"], ["https://tec.openplanner.team/stops/N323aca", "https://tec.openplanner.team/stops/N894ada"], ["https://tec.openplanner.team/stops/Bbcoeco2", "https://tec.openplanner.team/stops/H3br107b"], ["https://tec.openplanner.team/stops/LXobaty2", "https://tec.openplanner.team/stops/X599aga"], ["https://tec.openplanner.team/stops/Buccobs2", "https://tec.openplanner.team/stops/Buccptj2"], ["https://tec.openplanner.team/stops/N134agb", "https://tec.openplanner.team/stops/N134ahb"], ["https://tec.openplanner.team/stops/LBNeup22", "https://tec.openplanner.team/stops/LMemaza1"], ["https://tec.openplanner.team/stops/X741anb", "https://tec.openplanner.team/stops/X741aob"], ["https://tec.openplanner.team/stops/H4am102c", "https://tec.openplanner.team/stops/H4am113b"], ["https://tec.openplanner.team/stops/N337afb", "https://tec.openplanner.team/stops/N337agb"], ["https://tec.openplanner.team/stops/Cblcen3", "https://tec.openplanner.team/stops/Crbreve2"], ["https://tec.openplanner.team/stops/H4ch118b", "https://tec.openplanner.team/stops/H4ch119b"], ["https://tec.openplanner.team/stops/N504abb", "https://tec.openplanner.team/stops/N511aha"], ["https://tec.openplanner.team/stops/H4ea128a", "https://tec.openplanner.team/stops/H4ea129b"], ["https://tec.openplanner.team/stops/N232ata", "https://tec.openplanner.team/stops/N232bna"], ["https://tec.openplanner.team/stops/X695aga", "https://tec.openplanner.team/stops/X695aha"], ["https://tec.openplanner.team/stops/Cjubien1", "https://tec.openplanner.team/stops/Cjubien2"], ["https://tec.openplanner.team/stops/LXHbell1", "https://tec.openplanner.team/stops/LXHbell2"], ["https://tec.openplanner.team/stops/H1gh149a", "https://tec.openplanner.team/stops/H1ms297a"], ["https://tec.openplanner.team/stops/LAWhein3", "https://tec.openplanner.team/stops/LAWxhen1"], ["https://tec.openplanner.team/stops/LMAcite2", "https://tec.openplanner.team/stops/LMAcomm2"], ["https://tec.openplanner.team/stops/N207aaa", "https://tec.openplanner.team/stops/N207aba"], ["https://tec.openplanner.team/stops/Bllnald1", "https://tec.openplanner.team/stops/Bllnmet1"], ["https://tec.openplanner.team/stops/N132aea", "https://tec.openplanner.team/stops/N132afa"], ["https://tec.openplanner.team/stops/LFPstro2", "https://tec.openplanner.team/stops/LRmhage5"], ["https://tec.openplanner.team/stops/Cmlbeau4", "https://tec.openplanner.team/stops/Cmlbrac1"], ["https://tec.openplanner.team/stops/Lceegth1", "https://tec.openplanner.team/stops/Lcesart2"], ["https://tec.openplanner.team/stops/H1eu105a", "https://tec.openplanner.team/stops/H1lb152b"], ["https://tec.openplanner.team/stops/N242aea", "https://tec.openplanner.team/stops/N242agb"], ["https://tec.openplanner.team/stops/X765aaa", "https://tec.openplanner.team/stops/X766aeb"], ["https://tec.openplanner.team/stops/X601cna", "https://tec.openplanner.team/stops/X601cva"], ["https://tec.openplanner.team/stops/LFlabba1", "https://tec.openplanner.team/stops/LFlabba4"], ["https://tec.openplanner.team/stops/LMAgb--2", "https://tec.openplanner.team/stops/LMAptne1"], ["https://tec.openplanner.team/stops/H3bo100d", "https://tec.openplanner.team/stops/H3th127a"], ["https://tec.openplanner.team/stops/X879aob", "https://tec.openplanner.team/stops/X882aab"], ["https://tec.openplanner.team/stops/Cbmviv2", "https://tec.openplanner.team/stops/Cbmzoni1"], ["https://tec.openplanner.team/stops/Lbrcygn1", "https://tec.openplanner.team/stops/Lbrcygn2"], ["https://tec.openplanner.team/stops/Lvegc--5", "https://tec.openplanner.team/stops/Lvethea2"], ["https://tec.openplanner.team/stops/N571abb", "https://tec.openplanner.team/stops/N571adb"], ["https://tec.openplanner.team/stops/X740ada", "https://tec.openplanner.team/stops/X740afb"], ["https://tec.openplanner.team/stops/N519akb", "https://tec.openplanner.team/stops/N519ala"], ["https://tec.openplanner.team/stops/LGlbour1", "https://tec.openplanner.team/stops/LGlcite1"], ["https://tec.openplanner.team/stops/X808aja", "https://tec.openplanner.team/stops/X808ajb"], ["https://tec.openplanner.team/stops/N518aba", "https://tec.openplanner.team/stops/N519apa"], ["https://tec.openplanner.team/stops/H2ha133a", "https://tec.openplanner.team/stops/H2sb257c"], ["https://tec.openplanner.team/stops/H4mo164a", "https://tec.openplanner.team/stops/H4mo181d"], ["https://tec.openplanner.team/stops/H1ha182a", "https://tec.openplanner.team/stops/H1vg359b"], ["https://tec.openplanner.team/stops/N353aea", "https://tec.openplanner.team/stops/N355aea"], ["https://tec.openplanner.team/stops/H1ba119b", "https://tec.openplanner.team/stops/H1ba120b"], ["https://tec.openplanner.team/stops/Bptrlux1", "https://tec.openplanner.team/stops/Bptrlux2"], ["https://tec.openplanner.team/stops/N501cgb", "https://tec.openplanner.team/stops/N502adb"], ["https://tec.openplanner.team/stops/X561aea", "https://tec.openplanner.team/stops/X561aeb"], ["https://tec.openplanner.team/stops/LMalarg3", "https://tec.openplanner.team/stops/LPlchpl1"], ["https://tec.openplanner.team/stops/Bitrcan1", "https://tec.openplanner.team/stops/Bitrcro2"], ["https://tec.openplanner.team/stops/N503aia", "https://tec.openplanner.team/stops/N503aib"], ["https://tec.openplanner.team/stops/N219aba", "https://tec.openplanner.team/stops/N220adb"], ["https://tec.openplanner.team/stops/N565aic", "https://tec.openplanner.team/stops/N569afa"], ["https://tec.openplanner.team/stops/Bstetre1", "https://tec.openplanner.team/stops/Btubsal1"], ["https://tec.openplanner.team/stops/N524aka", "https://tec.openplanner.team/stops/N524akb"], ["https://tec.openplanner.team/stops/X618aia", "https://tec.openplanner.team/stops/X618aka"], ["https://tec.openplanner.team/stops/X781aab", "https://tec.openplanner.team/stops/X781abb"], ["https://tec.openplanner.team/stops/LFPloob1", "https://tec.openplanner.team/stops/LSJgrae2"], ["https://tec.openplanner.team/stops/LWAclos2", "https://tec.openplanner.team/stops/LWAor--2"], ["https://tec.openplanner.team/stops/X801aha", "https://tec.openplanner.team/stops/X801bqa"], ["https://tec.openplanner.team/stops/X657afa", "https://tec.openplanner.team/stops/X657ala"], ["https://tec.openplanner.team/stops/N533aab", "https://tec.openplanner.team/stops/N533aca"], ["https://tec.openplanner.team/stops/LeUbush1", "https://tec.openplanner.team/stops/LeUmoor1"], ["https://tec.openplanner.team/stops/H1tl120a", "https://tec.openplanner.team/stops/H1tl120b"], ["https://tec.openplanner.team/stops/X728ada", "https://tec.openplanner.team/stops/X728adb"], ["https://tec.openplanner.team/stops/H1ms935a", "https://tec.openplanner.team/stops/H1ms936a"], ["https://tec.openplanner.team/stops/X561aca", "https://tec.openplanner.team/stops/XODvill2"], ["https://tec.openplanner.team/stops/H1wa152b", "https://tec.openplanner.team/stops/H1wa158b"], ["https://tec.openplanner.team/stops/X758aea", "https://tec.openplanner.team/stops/X758aga"], ["https://tec.openplanner.team/stops/X662aba", "https://tec.openplanner.team/stops/X663aha"], ["https://tec.openplanner.team/stops/X899afa", "https://tec.openplanner.team/stops/X899agb"], ["https://tec.openplanner.team/stops/X608aya", "https://tec.openplanner.team/stops/X608aza"], ["https://tec.openplanner.team/stops/LFR201-1", "https://tec.openplanner.team/stops/LSZpiro1"], ["https://tec.openplanner.team/stops/H4an105a", "https://tec.openplanner.team/stops/H4wt160a"], ["https://tec.openplanner.team/stops/Cfaeclu2", "https://tec.openplanner.team/stops/Cplelec2"], ["https://tec.openplanner.team/stops/N501ksb", "https://tec.openplanner.team/stops/N501kwb"], ["https://tec.openplanner.team/stops/LElgerd6", "https://tec.openplanner.team/stops/LOucarr2"], ["https://tec.openplanner.team/stops/Cml3fon2", "https://tec.openplanner.team/stops/Cmlmatc2"], ["https://tec.openplanner.team/stops/LAMcime2", "https://tec.openplanner.team/stops/LAMrich2"], ["https://tec.openplanner.team/stops/H1he103a", "https://tec.openplanner.team/stops/H1he103b"], ["https://tec.openplanner.team/stops/X999aib", "https://tec.openplanner.team/stops/X999aja"], ["https://tec.openplanner.team/stops/H5is169a", "https://tec.openplanner.team/stops/H5is174a"], ["https://tec.openplanner.team/stops/N501jgb", "https://tec.openplanner.team/stops/N521acb"], ["https://tec.openplanner.team/stops/N232aqa", "https://tec.openplanner.team/stops/N232bnb"], ["https://tec.openplanner.team/stops/N501dwb", "https://tec.openplanner.team/stops/N501epd"], ["https://tec.openplanner.team/stops/Ljestat2", "https://tec.openplanner.team/stops/Lseespe1"], ["https://tec.openplanner.team/stops/LCPone91", "https://tec.openplanner.team/stops/LCPone92"], ["https://tec.openplanner.team/stops/X942aaa", "https://tec.openplanner.team/stops/X942aab"], ["https://tec.openplanner.team/stops/X870aga", "https://tec.openplanner.team/stops/X870aib"], ["https://tec.openplanner.team/stops/X604ahb", "https://tec.openplanner.team/stops/X604aib"], ["https://tec.openplanner.team/stops/Bolgeva1", "https://tec.openplanner.team/stops/Bolgfon1"], ["https://tec.openplanner.team/stops/Ctabaty3", "https://tec.openplanner.team/stops/N543cbc"], ["https://tec.openplanner.team/stops/Bnivga61", "https://tec.openplanner.team/stops/Bnivrwi2"], ["https://tec.openplanner.team/stops/H2ch106a", "https://tec.openplanner.team/stops/H2ch109b"], ["https://tec.openplanner.team/stops/H4po125a", "https://tec.openplanner.team/stops/H4po125b"], ["https://tec.openplanner.team/stops/Crajasm2", "https://tec.openplanner.team/stops/Crapaep2"], ["https://tec.openplanner.team/stops/H1bi101a", "https://tec.openplanner.team/stops/H1sa113a"], ["https://tec.openplanner.team/stops/LSPclai2", "https://tec.openplanner.team/stops/LSPgare*"], ["https://tec.openplanner.team/stops/NH21afb", "https://tec.openplanner.team/stops/NH21agb"], ["https://tec.openplanner.team/stops/LSPmari1", "https://tec.openplanner.team/stops/LSPsauv1"], ["https://tec.openplanner.team/stops/X734aoa", "https://tec.openplanner.team/stops/X775ada"], ["https://tec.openplanner.team/stops/LSDgris2", "https://tec.openplanner.team/stops/LSDvill1"], ["https://tec.openplanner.team/stops/Crcpla2", "https://tec.openplanner.team/stops/NH03aga"], ["https://tec.openplanner.team/stops/Bbghpln1", "https://tec.openplanner.team/stops/Bbghsta2"], ["https://tec.openplanner.team/stops/Crccarr1", "https://tec.openplanner.team/stops/NH03aeb"], ["https://tec.openplanner.team/stops/H1cu111b", "https://tec.openplanner.team/stops/H1hn202a"], ["https://tec.openplanner.team/stops/Bwaak101", "https://tec.openplanner.team/stops/Bwaak102"], ["https://tec.openplanner.team/stops/Clgmaco2", "https://tec.openplanner.team/stops/H1mc127a"], ["https://tec.openplanner.team/stops/N201afb", "https://tec.openplanner.team/stops/N201ara"], ["https://tec.openplanner.team/stops/Cgzabau3", "https://tec.openplanner.team/stops/Cgzdeve1"], ["https://tec.openplanner.team/stops/Bnstver1", "https://tec.openplanner.team/stops/H3lr107a"], ["https://tec.openplanner.team/stops/LWNbeto1", "https://tec.openplanner.team/stops/LWzfuma1"], ["https://tec.openplanner.team/stops/X739abb", "https://tec.openplanner.team/stops/X739aca"], ["https://tec.openplanner.team/stops/H1ol145a", "https://tec.openplanner.team/stops/H1ol145b"], ["https://tec.openplanner.team/stops/N501fdd", "https://tec.openplanner.team/stops/N501ffa"], ["https://tec.openplanner.team/stops/Lanlona1", "https://tec.openplanner.team/stops/Llgchau1"], ["https://tec.openplanner.team/stops/H2ll190a", "https://tec.openplanner.team/stops/H2ll199a"], ["https://tec.openplanner.team/stops/H2go114c", "https://tec.openplanner.team/stops/H2go119a"], ["https://tec.openplanner.team/stops/LkAkirc1", "https://tec.openplanner.team/stops/LkAmess2"], ["https://tec.openplanner.team/stops/Ccacoup2", "https://tec.openplanner.team/stops/Ccaegli3"], ["https://tec.openplanner.team/stops/H4bu108b", "https://tec.openplanner.team/stops/H4hg155b"], ["https://tec.openplanner.team/stops/N574aaa", "https://tec.openplanner.team/stops/N574agb"], ["https://tec.openplanner.team/stops/Bauddel2", "https://tec.openplanner.team/stops/Bwbfgar2"], ["https://tec.openplanner.team/stops/Cjuloos1", "https://tec.openplanner.team/stops/Cjuvand2"], ["https://tec.openplanner.team/stops/H1te175b", "https://tec.openplanner.team/stops/H1te177b"], ["https://tec.openplanner.team/stops/N507aoa", "https://tec.openplanner.team/stops/N507aqa"], ["https://tec.openplanner.team/stops/LAYchal2", "https://tec.openplanner.team/stops/LAYpl--1"], ["https://tec.openplanner.team/stops/H4ef112a", "https://tec.openplanner.team/stops/H4ef112b"], ["https://tec.openplanner.team/stops/Lbhpeti2", "https://tec.openplanner.team/stops/Lroeg--1"], ["https://tec.openplanner.team/stops/Lvchenn1", "https://tec.openplanner.team/stops/Lvcvesd*"], ["https://tec.openplanner.team/stops/H4me213a", "https://tec.openplanner.team/stops/H4ve137b"], ["https://tec.openplanner.team/stops/Lmochan1", "https://tec.openplanner.team/stops/Lmochan2"], ["https://tec.openplanner.team/stops/X801cka", "https://tec.openplanner.team/stops/X801ckb"], ["https://tec.openplanner.team/stops/LMfange1", "https://tec.openplanner.team/stops/LMfbacu1"], ["https://tec.openplanner.team/stops/LeUdepo2", "https://tec.openplanner.team/stops/LeUgend1"], ["https://tec.openplanner.team/stops/Landolh2", "https://tec.openplanner.team/stops/Lantonn1"], ["https://tec.openplanner.team/stops/LDpulve1", "https://tec.openplanner.team/stops/LDpulve2"], ["https://tec.openplanner.team/stops/N539afa", "https://tec.openplanner.team/stops/N539agb"], ["https://tec.openplanner.team/stops/X604aea", "https://tec.openplanner.team/stops/X604afd"], ["https://tec.openplanner.team/stops/N150aga", "https://tec.openplanner.team/stops/N150aib"], ["https://tec.openplanner.team/stops/Cgzgrru2", "https://tec.openplanner.team/stops/Cgzlera2"], ["https://tec.openplanner.team/stops/Cfogaul2", "https://tec.openplanner.team/stops/Cfowall1"], ["https://tec.openplanner.team/stops/Blasbgc1", "https://tec.openplanner.team/stops/Blasbti2"], ["https://tec.openplanner.team/stops/X840acb", "https://tec.openplanner.team/stops/X840adb"], ["https://tec.openplanner.team/stops/LJSeg--1", "https://tec.openplanner.team/stops/LTHcent1"], ["https://tec.openplanner.team/stops/Ljuauto2", "https://tec.openplanner.team/stops/Ljubonf2"], ["https://tec.openplanner.team/stops/LAYwerb1", "https://tec.openplanner.team/stops/LAYwerb2"], ["https://tec.openplanner.team/stops/Clbgare1", "https://tec.openplanner.team/stops/Cthstre2"], ["https://tec.openplanner.team/stops/Crolema1", "https://tec.openplanner.team/stops/Crolema3"], ["https://tec.openplanner.team/stops/LMsvill2", "https://tec.openplanner.team/stops/LPbpeti1"], ["https://tec.openplanner.team/stops/X901atb", "https://tec.openplanner.team/stops/X901avb"], ["https://tec.openplanner.team/stops/H4bv145c", "https://tec.openplanner.team/stops/H5at111a"], ["https://tec.openplanner.team/stops/LSuusin2", "https://tec.openplanner.team/stops/Lvecrot2"], ["https://tec.openplanner.team/stops/X902ana", "https://tec.openplanner.team/stops/X902bcb"], ["https://tec.openplanner.team/stops/N505alb", "https://tec.openplanner.team/stops/N511asb"], ["https://tec.openplanner.team/stops/Brsgecu1", "https://tec.openplanner.team/stops/Brsggol1"], ["https://tec.openplanner.team/stops/X982bma", "https://tec.openplanner.team/stops/X982bmb"], ["https://tec.openplanner.team/stops/H1cv103a", "https://tec.openplanner.team/stops/H1cv103b"], ["https://tec.openplanner.team/stops/Lfhnrou1", "https://tec.openplanner.team/stops/Lpocent1"], ["https://tec.openplanner.team/stops/H4hs137a", "https://tec.openplanner.team/stops/H4hs137b"], ["https://tec.openplanner.team/stops/LFsguil1", "https://tec.openplanner.team/stops/LFsguil2"], ["https://tec.openplanner.team/stops/H1cu112b", "https://tec.openplanner.team/stops/H1cu130b"], ["https://tec.openplanner.team/stops/X991ajb", "https://tec.openplanner.team/stops/X991alb"], ["https://tec.openplanner.team/stops/N501hba", "https://tec.openplanner.team/stops/N501hlx"], ["https://tec.openplanner.team/stops/Llgamer1", "https://tec.openplanner.team/stops/Llgcour1"], ["https://tec.openplanner.team/stops/Canh1942", "https://tec.openplanner.team/stops/H2an110b"], ["https://tec.openplanner.team/stops/H3bo100c", "https://tec.openplanner.team/stops/H3bo103b"], ["https://tec.openplanner.team/stops/N211ala", "https://tec.openplanner.team/stops/N211bba"], ["https://tec.openplanner.team/stops/LAbchpl1", "https://tec.openplanner.team/stops/LSevitu4"], ["https://tec.openplanner.team/stops/H4an107a", "https://tec.openplanner.team/stops/H4ce108b"], ["https://tec.openplanner.team/stops/X805aga", "https://tec.openplanner.team/stops/X805agb"], ["https://tec.openplanner.team/stops/N551aob", "https://tec.openplanner.team/stops/N552adb"], ["https://tec.openplanner.team/stops/Cctbois1", "https://tec.openplanner.team/stops/Cctkais2"], ["https://tec.openplanner.team/stops/X769aab", "https://tec.openplanner.team/stops/X769aba"], ["https://tec.openplanner.team/stops/Btlbtbe1", "https://tec.openplanner.team/stops/Btlbtbe2"], ["https://tec.openplanner.team/stops/Btubcvi1", "https://tec.openplanner.team/stops/Btubois2"], ["https://tec.openplanner.team/stops/H2ma202b", "https://tec.openplanner.team/stops/H2ma209a"], ["https://tec.openplanner.team/stops/Bottcli1", "https://tec.openplanner.team/stops/Bottcli4"], ["https://tec.openplanner.team/stops/Bbldass2", "https://tec.openplanner.team/stops/Bbldgar2"], ["https://tec.openplanner.team/stops/H1ba116a", "https://tec.openplanner.team/stops/H1gh371b"], ["https://tec.openplanner.team/stops/LVEcroi1", "https://tec.openplanner.team/stops/LVErtt-2"], ["https://tec.openplanner.team/stops/H1cv100a", "https://tec.openplanner.team/stops/H1cv102b"], ["https://tec.openplanner.team/stops/X601aea", "https://tec.openplanner.team/stops/X601cta"], ["https://tec.openplanner.team/stops/N501fby", "https://tec.openplanner.team/stops/N501fqd"], ["https://tec.openplanner.team/stops/LCHrhou1", "https://tec.openplanner.team/stops/Ldicorb2"], ["https://tec.openplanner.team/stops/Lfllapi2", "https://tec.openplanner.team/stops/Lfllapi5"], ["https://tec.openplanner.team/stops/N245aca", "https://tec.openplanner.team/stops/N245acb"], ["https://tec.openplanner.team/stops/NL75aaa", "https://tec.openplanner.team/stops/NL75adb"], ["https://tec.openplanner.team/stops/Cjudevo2", "https://tec.openplanner.team/stops/Cjuhden3"], ["https://tec.openplanner.team/stops/LVevill1", "https://tec.openplanner.team/stops/LVGeg--5"], ["https://tec.openplanner.team/stops/H1gn147a", "https://tec.openplanner.team/stops/H1gn150a"], ["https://tec.openplanner.team/stops/X921ala", "https://tec.openplanner.team/stops/X979aab"], ["https://tec.openplanner.team/stops/X345aaa", "https://tec.openplanner.team/stops/X345aba"], ["https://tec.openplanner.team/stops/N122aaa", "https://tec.openplanner.team/stops/N122agb"], ["https://tec.openplanner.team/stops/H1do119b", "https://tec.openplanner.team/stops/H1do129a"], ["https://tec.openplanner.team/stops/LVbpave1", "https://tec.openplanner.team/stops/LVbstre2"], ["https://tec.openplanner.team/stops/H1gy114b", "https://tec.openplanner.team/stops/H1le119b"], ["https://tec.openplanner.team/stops/X747aia", "https://tec.openplanner.team/stops/X747ajb"], ["https://tec.openplanner.team/stops/LAUvdab1", "https://tec.openplanner.team/stops/LSJeg--1"], ["https://tec.openplanner.team/stops/X775aic", "https://tec.openplanner.team/stops/X775aid"], ["https://tec.openplanner.team/stops/Bhlvgar1", "https://tec.openplanner.team/stops/Crehout1"], ["https://tec.openplanner.team/stops/X725acb", "https://tec.openplanner.team/stops/X725aha"], ["https://tec.openplanner.team/stops/Ccogibr1", "https://tec.openplanner.team/stops/Ccojaur2"], ["https://tec.openplanner.team/stops/H4hs137b", "https://tec.openplanner.team/stops/H4th141a"], ["https://tec.openplanner.team/stops/LVbgend1", "https://tec.openplanner.team/stops/LVbstre1"], ["https://tec.openplanner.team/stops/Lfhhosp1", "https://tec.openplanner.team/stops/Ljemeca2"], ["https://tec.openplanner.team/stops/X807aba", "https://tec.openplanner.team/stops/X807ada"], ["https://tec.openplanner.team/stops/Llgcita1", "https://tec.openplanner.team/stops/Llgvelb2"], ["https://tec.openplanner.team/stops/N511aia", "https://tec.openplanner.team/stops/N511alc"], ["https://tec.openplanner.team/stops/Bjodcad1", "https://tec.openplanner.team/stops/NR10acb"], ["https://tec.openplanner.team/stops/Bbchume1", "https://tec.openplanner.team/stops/Bcbqtub1"], ["https://tec.openplanner.team/stops/H1je211a", "https://tec.openplanner.team/stops/H1je217a"], ["https://tec.openplanner.team/stops/N534axa", "https://tec.openplanner.team/stops/N534axb"], ["https://tec.openplanner.team/stops/H2le147a", "https://tec.openplanner.team/stops/H2le147c"], ["https://tec.openplanner.team/stops/X782aka", "https://tec.openplanner.team/stops/X784aea"], ["https://tec.openplanner.team/stops/LEN183-1", "https://tec.openplanner.team/stops/LSBsere2"], ["https://tec.openplanner.team/stops/Cmtchet2", "https://tec.openplanner.team/stops/Cmtyern1"], ["https://tec.openplanner.team/stops/Bllngar5", "https://tec.openplanner.team/stops/Bllngar6"], ["https://tec.openplanner.team/stops/H4bo114b", "https://tec.openplanner.team/stops/H4bo119b"], ["https://tec.openplanner.team/stops/H1el136a", "https://tec.openplanner.team/stops/H1el137a"], ["https://tec.openplanner.team/stops/X638aob", "https://tec.openplanner.team/stops/X638apb"], ["https://tec.openplanner.team/stops/LXofans1", "https://tec.openplanner.team/stops/LXopier2"], ["https://tec.openplanner.team/stops/Cctchav1", "https://tec.openplanner.team/stops/Cplcafp1"], ["https://tec.openplanner.team/stops/Lverogi2", "https://tec.openplanner.team/stops/Lveyser2"], ["https://tec.openplanner.team/stops/X801bka", "https://tec.openplanner.team/stops/X802aja"], ["https://tec.openplanner.team/stops/X802aib", "https://tec.openplanner.team/stops/X802aka"], ["https://tec.openplanner.team/stops/H3th134b", "https://tec.openplanner.team/stops/H3th135e"], ["https://tec.openplanner.team/stops/LBkwind2", "https://tec.openplanner.team/stops/LMNpt--2"], ["https://tec.openplanner.team/stops/LlNbene1", "https://tec.openplanner.team/stops/LlNlont1"], ["https://tec.openplanner.team/stops/H5at134b", "https://tec.openplanner.team/stops/H5at142b"], ["https://tec.openplanner.team/stops/X749adb", "https://tec.openplanner.team/stops/X749aea"], ["https://tec.openplanner.team/stops/N539aua", "https://tec.openplanner.team/stops/N539bga"], ["https://tec.openplanner.team/stops/Becebju2", "https://tec.openplanner.team/stops/Bnstlna1"], ["https://tec.openplanner.team/stops/LHNcoll2", "https://tec.openplanner.team/stops/LHNcreh2"], ["https://tec.openplanner.team/stops/NL73aab", "https://tec.openplanner.team/stops/NL73abb"], ["https://tec.openplanner.team/stops/N531ata", "https://tec.openplanner.team/stops/N534bkg"], ["https://tec.openplanner.team/stops/N514ahb", "https://tec.openplanner.team/stops/N514ana"], ["https://tec.openplanner.team/stops/X342ahb", "https://tec.openplanner.team/stops/X354aaa"], ["https://tec.openplanner.team/stops/H1ni315b", "https://tec.openplanner.team/stops/H1ni317a"], ["https://tec.openplanner.team/stops/H1qu100c", "https://tec.openplanner.team/stops/H1qu120a"], ["https://tec.openplanner.team/stops/N224aaa", "https://tec.openplanner.team/stops/X224aab"], ["https://tec.openplanner.team/stops/LHgpost1", "https://tec.openplanner.team/stops/LHgtomb1"], ["https://tec.openplanner.team/stops/X989aba", "https://tec.openplanner.team/stops/X989abb"], ["https://tec.openplanner.team/stops/X758aab", "https://tec.openplanner.team/stops/X840afa"], ["https://tec.openplanner.team/stops/N222adb", "https://tec.openplanner.team/stops/X222adc"], ["https://tec.openplanner.team/stops/LAUbirv2", "https://tec.openplanner.team/stops/LHCandr2"], ["https://tec.openplanner.team/stops/LLrgobe1", "https://tec.openplanner.team/stops/LLrgobe2"], ["https://tec.openplanner.team/stops/X733ajb", "https://tec.openplanner.team/stops/X733ala"], ["https://tec.openplanner.team/stops/LHAdeho1", "https://tec.openplanner.team/stops/LHAmonu1"], ["https://tec.openplanner.team/stops/H1ju120b", "https://tec.openplanner.team/stops/H1ju121b"], ["https://tec.openplanner.team/stops/LBGjacq1", "https://tec.openplanner.team/stops/LBGjacq2"], ["https://tec.openplanner.team/stops/H4mo166a", "https://tec.openplanner.team/stops/H4mo204a"], ["https://tec.openplanner.team/stops/Lrcastr4", "https://tec.openplanner.team/stops/Lrclant4"], ["https://tec.openplanner.team/stops/N534acb", "https://tec.openplanner.team/stops/N543byb"], ["https://tec.openplanner.team/stops/Llgbuis1", "https://tec.openplanner.team/stops/Lscstan2"], ["https://tec.openplanner.team/stops/X609aaa", "https://tec.openplanner.team/stops/X609aba"], ["https://tec.openplanner.team/stops/X307aca", "https://tec.openplanner.team/stops/X307adb"], ["https://tec.openplanner.team/stops/Lflmc--1", "https://tec.openplanner.team/stops/Lflmc--2"], ["https://tec.openplanner.team/stops/LREelse1", "https://tec.openplanner.team/stops/LREelse2"], ["https://tec.openplanner.team/stops/LHUanth1", "https://tec.openplanner.team/stops/LHUanth2"], ["https://tec.openplanner.team/stops/X639aab", "https://tec.openplanner.team/stops/X639apa"], ["https://tec.openplanner.team/stops/LAyabri2", "https://tec.openplanner.team/stops/Lflrhot1"], ["https://tec.openplanner.team/stops/Bmelmqu1", "https://tec.openplanner.team/stops/Bmelmqu2"], ["https://tec.openplanner.team/stops/LeUrote1", "https://tec.openplanner.team/stops/LeUrote2"], ["https://tec.openplanner.team/stops/Btsleco1", "https://tec.openplanner.team/stops/Btsllnd1"], ["https://tec.openplanner.team/stops/Cfabaty1", "https://tec.openplanner.team/stops/Cflspir1"], ["https://tec.openplanner.team/stops/LAicarr2", "https://tec.openplanner.team/stops/LENalun1"], ["https://tec.openplanner.team/stops/N232ava", "https://tec.openplanner.team/stops/N232avb"], ["https://tec.openplanner.team/stops/LBGroma2", "https://tec.openplanner.team/stops/LLnpomp1"], ["https://tec.openplanner.team/stops/Ljubruy2", "https://tec.openplanner.team/stops/Ljugode1"], ["https://tec.openplanner.team/stops/H4ta123a", "https://tec.openplanner.team/stops/H4ta123b"], ["https://tec.openplanner.team/stops/LOUbarr3", "https://tec.openplanner.team/stops/LOUbleu2"], ["https://tec.openplanner.team/stops/LbUgend1", "https://tec.openplanner.team/stops/LbUmalm1"], ["https://tec.openplanner.team/stops/Ceqcfra2", "https://tec.openplanner.team/stops/H1er105b"], ["https://tec.openplanner.team/stops/Cflhano2", "https://tec.openplanner.team/stops/Cwfmoul2"], ["https://tec.openplanner.team/stops/N573apb", "https://tec.openplanner.team/stops/N573aqb"], ["https://tec.openplanner.team/stops/H4ag106a", "https://tec.openplanner.team/stops/H4ag107a"], ["https://tec.openplanner.team/stops/N201aab", "https://tec.openplanner.team/stops/N201aqa"], ["https://tec.openplanner.team/stops/Clodrio1", "https://tec.openplanner.team/stops/Clodrio3"], ["https://tec.openplanner.team/stops/H2ll197b", "https://tec.openplanner.team/stops/H2ll267a"], ["https://tec.openplanner.team/stops/LFRgode2", "https://tec.openplanner.team/stops/LFRrohe1"], ["https://tec.openplanner.team/stops/X979aca", "https://tec.openplanner.team/stops/X979aka"], ["https://tec.openplanner.team/stops/X613aab", "https://tec.openplanner.team/stops/X623aka"], ["https://tec.openplanner.team/stops/LLbcafe2", "https://tec.openplanner.team/stops/LLbpt--2"], ["https://tec.openplanner.team/stops/N141aja", "https://tec.openplanner.team/stops/N141ala"], ["https://tec.openplanner.team/stops/X626aib", "https://tec.openplanner.team/stops/X626ajb"], ["https://tec.openplanner.team/stops/X850ama", "https://tec.openplanner.team/stops/X850ana"], ["https://tec.openplanner.team/stops/H1ma234b", "https://tec.openplanner.team/stops/H1mj124a"], ["https://tec.openplanner.team/stops/N585aha", "https://tec.openplanner.team/stops/N585ala"], ["https://tec.openplanner.team/stops/X789adb", "https://tec.openplanner.team/stops/X789aea"], ["https://tec.openplanner.team/stops/LDmeg--2", "https://tec.openplanner.team/stops/LHocroi2"], ["https://tec.openplanner.team/stops/N118ana", "https://tec.openplanner.team/stops/N118anc"], ["https://tec.openplanner.team/stops/Bneepne1", "https://tec.openplanner.team/stops/Bneepne2"], ["https://tec.openplanner.team/stops/H4he102a", "https://tec.openplanner.team/stops/H4he106a"], ["https://tec.openplanner.team/stops/H1br134b", "https://tec.openplanner.team/stops/H2ma202a"], ["https://tec.openplanner.team/stops/H1ml112a", "https://tec.openplanner.team/stops/H1ne138b"], ["https://tec.openplanner.team/stops/H3bi112a", "https://tec.openplanner.team/stops/H3bi118a"], ["https://tec.openplanner.team/stops/N139aba", "https://tec.openplanner.team/stops/N146aeb"], ["https://tec.openplanner.team/stops/H4mo181b", "https://tec.openplanner.team/stops/H4mo181d"], ["https://tec.openplanner.team/stops/N501mpa", "https://tec.openplanner.team/stops/N521aqb"], ["https://tec.openplanner.team/stops/LBkgrae1", "https://tec.openplanner.team/stops/LWEfati1"], ["https://tec.openplanner.team/stops/Lsekubo3", "https://tec.openplanner.team/stops/Lsekubo4"], ["https://tec.openplanner.team/stops/LPLarbo2", "https://tec.openplanner.team/stops/LPLphar1"], ["https://tec.openplanner.team/stops/H4ka180a", "https://tec.openplanner.team/stops/H4ka194a"], ["https://tec.openplanner.team/stops/Bmsgbay2", "https://tec.openplanner.team/stops/Bmsgpfo1"], ["https://tec.openplanner.team/stops/X723adb", "https://tec.openplanner.team/stops/X723afa"], ["https://tec.openplanner.team/stops/LOReg--1", "https://tec.openplanner.team/stops/LORhorp1"], ["https://tec.openplanner.team/stops/H2hg272a", "https://tec.openplanner.team/stops/H2hg272b"], ["https://tec.openplanner.team/stops/H1hw121a", "https://tec.openplanner.team/stops/H1hw121b"], ["https://tec.openplanner.team/stops/X663ara", "https://tec.openplanner.team/stops/X664aoa"], ["https://tec.openplanner.team/stops/X625aaa", "https://tec.openplanner.team/stops/X625aga"], ["https://tec.openplanner.team/stops/LMNeg--2", "https://tec.openplanner.team/stops/LMNgend1"], ["https://tec.openplanner.team/stops/Lemmath1", "https://tec.openplanner.team/stops/Lemmath2"], ["https://tec.openplanner.team/stops/Bwatceg2", "https://tec.openplanner.team/stops/Bwatrsg1"], ["https://tec.openplanner.team/stops/LNEtonv1", "https://tec.openplanner.team/stops/LOLvill1"], ["https://tec.openplanner.team/stops/H1sd346a", "https://tec.openplanner.team/stops/H1sd366a"], ["https://tec.openplanner.team/stops/N134aac", "https://tec.openplanner.team/stops/N134aca"], ["https://tec.openplanner.team/stops/Bmarcat1", "https://tec.openplanner.team/stops/Bmarcat2"], ["https://tec.openplanner.team/stops/LSZclem1", "https://tec.openplanner.team/stops/LSZpont1"], ["https://tec.openplanner.team/stops/Bgliegl1", "https://tec.openplanner.team/stops/Bgliegl2"], ["https://tec.openplanner.team/stops/X775akb", "https://tec.openplanner.team/stops/X775ana"], ["https://tec.openplanner.team/stops/LWbcarr1", "https://tec.openplanner.team/stops/X512abb"], ["https://tec.openplanner.team/stops/Ljhsart2", "https://tec.openplanner.team/stops/Ljhsart4"], ["https://tec.openplanner.team/stops/LSUroyo2", "https://tec.openplanner.team/stops/LSZprie1"], ["https://tec.openplanner.team/stops/X908aka", "https://tec.openplanner.team/stops/X908ala"], ["https://tec.openplanner.team/stops/Bezegar2", "https://tec.openplanner.team/stops/Bneesjo1"], ["https://tec.openplanner.team/stops/N551ala", "https://tec.openplanner.team/stops/N551aoa"], ["https://tec.openplanner.team/stops/LaMades2", "https://tec.openplanner.team/stops/LaMbrei2"], ["https://tec.openplanner.team/stops/LrUbahn2", "https://tec.openplanner.team/stops/LrUbrac4"], ["https://tec.openplanner.team/stops/Bgntcha2", "https://tec.openplanner.team/stops/Bgntcoo2"], ["https://tec.openplanner.team/stops/Llgbaro2", "https://tec.openplanner.team/stops/Llgbaro4"], ["https://tec.openplanner.team/stops/N501hla", "https://tec.openplanner.team/stops/N501hlz"], ["https://tec.openplanner.team/stops/Claptcf1", "https://tec.openplanner.team/stops/NC23aba"], ["https://tec.openplanner.team/stops/Cciethi1", "https://tec.openplanner.team/stops/Cciethi2"], ["https://tec.openplanner.team/stops/LFCdree2", "https://tec.openplanner.team/stops/LFClage2"], ["https://tec.openplanner.team/stops/X806aca", "https://tec.openplanner.team/stops/X806ala"], ["https://tec.openplanner.team/stops/H4ar104a", "https://tec.openplanner.team/stops/H4ar178a"], ["https://tec.openplanner.team/stops/H1le117a", "https://tec.openplanner.team/stops/H1ol137a"], ["https://tec.openplanner.team/stops/Canplch1", "https://tec.openplanner.team/stops/Canplch2"], ["https://tec.openplanner.team/stops/X715aqa", "https://tec.openplanner.team/stops/X715aqb"], ["https://tec.openplanner.team/stops/Ccigill2", "https://tec.openplanner.team/stops/NC02aua"], ["https://tec.openplanner.team/stops/Cgochfe1", "https://tec.openplanner.team/stops/CMfbru1"], ["https://tec.openplanner.team/stops/Csycant1", "https://tec.openplanner.team/stops/Csytouq1"], ["https://tec.openplanner.team/stops/H4vx360a", "https://tec.openplanner.team/stops/H4vx366b"], ["https://tec.openplanner.team/stops/LmIcafe2", "https://tec.openplanner.team/stops/LmIkirc2"], ["https://tec.openplanner.team/stops/Bcrbgro1", "https://tec.openplanner.team/stops/Bcrbtho1"], ["https://tec.openplanner.team/stops/Csobail2", "https://tec.openplanner.team/stops/Csoperi2"], ["https://tec.openplanner.team/stops/Blkbbvh1", "https://tec.openplanner.team/stops/Bucccre2"], ["https://tec.openplanner.team/stops/LPRecol2", "https://tec.openplanner.team/stops/LTResse1"], ["https://tec.openplanner.team/stops/Lrapays2", "https://tec.openplanner.team/stops/LSAchef2"], ["https://tec.openplanner.team/stops/LFEland2", "https://tec.openplanner.team/stops/X597aqb"], ["https://tec.openplanner.team/stops/Llgdelb2", "https://tec.openplanner.team/stops/Llggrav2"], ["https://tec.openplanner.team/stops/Ltibell1", "https://tec.openplanner.team/stops/Ltiplat2"], ["https://tec.openplanner.team/stops/H4mv191b", "https://tec.openplanner.team/stops/H4va232a"], ["https://tec.openplanner.team/stops/Bhancom1", "https://tec.openplanner.team/stops/LHNgend2"], ["https://tec.openplanner.team/stops/H4ty293b", "https://tec.openplanner.team/stops/H4ty353b"], ["https://tec.openplanner.team/stops/X750bla", "https://tec.openplanner.team/stops/X750blb"], ["https://tec.openplanner.team/stops/N209aab", "https://tec.openplanner.team/stops/N209abb"], ["https://tec.openplanner.team/stops/NH03ada", "https://tec.openplanner.team/stops/NH03adb"], ["https://tec.openplanner.team/stops/LCdchod2", "https://tec.openplanner.team/stops/LGDgdou2"], ["https://tec.openplanner.team/stops/LFLcent1", "https://tec.openplanner.team/stops/LSphote1"], ["https://tec.openplanner.team/stops/X750aab", "https://tec.openplanner.team/stops/X750abb"], ["https://tec.openplanner.team/stops/Bmanati2", "https://tec.openplanner.team/stops/Bsenbmc2"], ["https://tec.openplanner.team/stops/N553abb", "https://tec.openplanner.team/stops/N553ama"], ["https://tec.openplanner.team/stops/H4pi130a", "https://tec.openplanner.team/stops/H4pi130b"], ["https://tec.openplanner.team/stops/LnErech1", "https://tec.openplanner.team/stops/LnErech2"], ["https://tec.openplanner.team/stops/LFCvoer2", "https://tec.openplanner.team/stops/LMastat3"], ["https://tec.openplanner.team/stops/H4ef113a", "https://tec.openplanner.team/stops/H4ef113d"], ["https://tec.openplanner.team/stops/Cvtgsar3", "https://tec.openplanner.team/stops/Cvthoeu1"], ["https://tec.openplanner.team/stops/N207aca", "https://tec.openplanner.team/stops/N207acb"], ["https://tec.openplanner.team/stops/LXHadam1", "https://tec.openplanner.team/stops/LXHbois1"], ["https://tec.openplanner.team/stops/Bbstchv1", "https://tec.openplanner.team/stops/Bsmgbsa1"], ["https://tec.openplanner.team/stops/Cjuheig4", "https://tec.openplanner.team/stops/Cjupier1"], ["https://tec.openplanner.team/stops/LESryon2", "https://tec.openplanner.team/stops/LSdencl*"], ["https://tec.openplanner.team/stops/H1fr128a", "https://tec.openplanner.team/stops/H1fr129a"], ["https://tec.openplanner.team/stops/N501hya", "https://tec.openplanner.team/stops/N501hyb"], ["https://tec.openplanner.team/stops/Bmrleco4", "https://tec.openplanner.team/stops/Bmrlnce2"], ["https://tec.openplanner.team/stops/H1qu120a", "https://tec.openplanner.team/stops/H1qu120b"], ["https://tec.openplanner.team/stops/LJAdeho3", "https://tec.openplanner.team/stops/LJAhanq1"], ["https://tec.openplanner.team/stops/LGmeg--2", "https://tec.openplanner.team/stops/LGmloti2"], ["https://tec.openplanner.team/stops/Bnivall2", "https://tec.openplanner.team/stops/Bnivchh1"], ["https://tec.openplanner.team/stops/Bitrcha1", "https://tec.openplanner.team/stops/Bitrmde2"], ["https://tec.openplanner.team/stops/LCaalou1", "https://tec.openplanner.team/stops/LCaalou2"], ["https://tec.openplanner.team/stops/LXhhaka2", "https://tec.openplanner.team/stops/LXhmara2"], ["https://tec.openplanner.team/stops/N254aaa", "https://tec.openplanner.team/stops/N254aba"], ["https://tec.openplanner.team/stops/NH21afa", "https://tec.openplanner.team/stops/NH21afb"], ["https://tec.openplanner.team/stops/N501iey", "https://tec.openplanner.team/stops/N501iez"], ["https://tec.openplanner.team/stops/H1wi150b", "https://tec.openplanner.team/stops/H1wi157a"], ["https://tec.openplanner.team/stops/Cthhvil6", "https://tec.openplanner.team/stops/Cthvbas3"], ["https://tec.openplanner.team/stops/N229agb", "https://tec.openplanner.team/stops/N229aha"], ["https://tec.openplanner.team/stops/X986alc", "https://tec.openplanner.team/stops/X986ama"], ["https://tec.openplanner.team/stops/Lalmitt2", "https://tec.openplanner.team/stops/LAWhein3"], ["https://tec.openplanner.team/stops/LSNmoul2", "https://tec.openplanner.team/stops/LSNmoul3"], ["https://tec.openplanner.team/stops/X724aia", "https://tec.openplanner.team/stops/X766aaa"], ["https://tec.openplanner.team/stops/X615aab", "https://tec.openplanner.team/stops/X615aea"], ["https://tec.openplanner.team/stops/Btilmar1", "https://tec.openplanner.team/stops/Btilmar2"], ["https://tec.openplanner.team/stops/N501ihz", "https://tec.openplanner.team/stops/N501ija"], ["https://tec.openplanner.team/stops/H5el105a", "https://tec.openplanner.team/stops/H5el111b"], ["https://tec.openplanner.team/stops/NH03aga", "https://tec.openplanner.team/stops/NH03agb"], ["https://tec.openplanner.team/stops/X261abb", "https://tec.openplanner.team/stops/X261aca"], ["https://tec.openplanner.team/stops/N531asa", "https://tec.openplanner.team/stops/N531asb"], ["https://tec.openplanner.team/stops/Boffegl1", "https://tec.openplanner.team/stops/Boffegl2"], ["https://tec.openplanner.team/stops/N509aka", "https://tec.openplanner.team/stops/N509awa"], ["https://tec.openplanner.team/stops/N155afa", "https://tec.openplanner.team/stops/N155aha"], ["https://tec.openplanner.team/stops/X222afa", "https://tec.openplanner.team/stops/X222ala"], ["https://tec.openplanner.team/stops/X982bca", "https://tec.openplanner.team/stops/X982bdb"], ["https://tec.openplanner.team/stops/LSLprov1", "https://tec.openplanner.team/stops/LSLvaux1"], ["https://tec.openplanner.team/stops/LmOkape1", "https://tec.openplanner.team/stops/Ltheg--2"], ["https://tec.openplanner.team/stops/X608abb", "https://tec.openplanner.team/stops/X608aib"], ["https://tec.openplanner.team/stops/H2lh124b", "https://tec.openplanner.team/stops/H2lh131a"], ["https://tec.openplanner.team/stops/N584azb", "https://tec.openplanner.team/stops/N584boa"], ["https://tec.openplanner.team/stops/N134alb", "https://tec.openplanner.team/stops/N135bia"], ["https://tec.openplanner.team/stops/X982alb", "https://tec.openplanner.team/stops/X982ama"], ["https://tec.openplanner.team/stops/H1cu113a", "https://tec.openplanner.team/stops/H1cu113b"], ["https://tec.openplanner.team/stops/Lhrstev1", "https://tec.openplanner.team/stops/Lhrstev2"], ["https://tec.openplanner.team/stops/CMparc1", "https://tec.openplanner.team/stops/Cmtrneu2"], ["https://tec.openplanner.team/stops/H1et102a", "https://tec.openplanner.team/stops/H1et102b"], ["https://tec.openplanner.team/stops/N134adb", "https://tec.openplanner.team/stops/N134ala"], ["https://tec.openplanner.team/stops/N501esa", "https://tec.openplanner.team/stops/N501esz"], ["https://tec.openplanner.team/stops/N270ada", "https://tec.openplanner.team/stops/N270adb"], ["https://tec.openplanner.team/stops/H1ch141b", "https://tec.openplanner.team/stops/H1hh116a"], ["https://tec.openplanner.team/stops/Lseaite1", "https://tec.openplanner.team/stops/Lsehaut1"], ["https://tec.openplanner.team/stops/Cctjoue1", "https://tec.openplanner.team/stops/Cctjoue5"], ["https://tec.openplanner.team/stops/Lghecol*", "https://tec.openplanner.team/stops/Lghencl1"], ["https://tec.openplanner.team/stops/Lvtfrai1", "https://tec.openplanner.team/stops/Lvtlomb4"], ["https://tec.openplanner.team/stops/N542afb", "https://tec.openplanner.team/stops/N542asb"], ["https://tec.openplanner.team/stops/X639aia", "https://tec.openplanner.team/stops/X639aib"], ["https://tec.openplanner.team/stops/N547aia", "https://tec.openplanner.team/stops/N548awa"], ["https://tec.openplanner.team/stops/Lsebrun4", "https://tec.openplanner.team/stops/Lsepapi1"], ["https://tec.openplanner.team/stops/X982aab", "https://tec.openplanner.team/stops/X982bsb"], ["https://tec.openplanner.team/stops/N501ctb", "https://tec.openplanner.team/stops/N538aya"], ["https://tec.openplanner.team/stops/Btgregl1", "https://tec.openplanner.team/stops/N584aga"], ["https://tec.openplanner.team/stops/Cchdigu1", "https://tec.openplanner.team/stops/Cchdigu2"], ["https://tec.openplanner.team/stops/Baudvdu1", "https://tec.openplanner.team/stops/Baudvdu2"], ["https://tec.openplanner.team/stops/N506bea", "https://tec.openplanner.team/stops/N506beb"], ["https://tec.openplanner.team/stops/Cjupuis2", "https://tec.openplanner.team/stops/Cmapeet2"], ["https://tec.openplanner.team/stops/LORmont1", "https://tec.openplanner.team/stops/LORmont2"], ["https://tec.openplanner.team/stops/H4ce102b", "https://tec.openplanner.team/stops/H4ce105a"], ["https://tec.openplanner.team/stops/Cfaeclu1", "https://tec.openplanner.team/stops/Crs74em4"], ["https://tec.openplanner.team/stops/Bblapet1", "https://tec.openplanner.team/stops/Bblasta1"], ["https://tec.openplanner.team/stops/Bhengou2", "https://tec.openplanner.team/stops/Bhenmal1"], ["https://tec.openplanner.team/stops/LHHcite1", "https://tec.openplanner.team/stops/LHHcite2"], ["https://tec.openplanner.team/stops/LCLscie2", "https://tec.openplanner.team/stops/NL78afb"], ["https://tec.openplanner.team/stops/Lemcort2", "https://tec.openplanner.team/stops/Lemfort1"], ["https://tec.openplanner.team/stops/LMvrabo2", "https://tec.openplanner.team/stops/LSpcarr1"], ["https://tec.openplanner.team/stops/X637apa", "https://tec.openplanner.team/stops/X638aea"], ["https://tec.openplanner.team/stops/LFmlens2", "https://tec.openplanner.team/stops/LMOc50-1"], ["https://tec.openplanner.team/stops/Lvcchev2", "https://tec.openplanner.team/stops/Lvcdumo2"], ["https://tec.openplanner.team/stops/N540aaa", "https://tec.openplanner.team/stops/N540afb"], ["https://tec.openplanner.team/stops/LPLmonu1", "https://tec.openplanner.team/stops/LPLphar1"], ["https://tec.openplanner.team/stops/N215aaa", "https://tec.openplanner.team/stops/N215abb"], ["https://tec.openplanner.team/stops/Lvejeha2", "https://tec.openplanner.team/stops/Lvepris1"], ["https://tec.openplanner.team/stops/LBaeg--1", "https://tec.openplanner.team/stops/LBajean2"], ["https://tec.openplanner.team/stops/Llgborn2", "https://tec.openplanner.team/stops/Llgmaus1"], ["https://tec.openplanner.team/stops/H1ci102a", "https://tec.openplanner.team/stops/H1mv243b"], ["https://tec.openplanner.team/stops/LeUfuss1", "https://tec.openplanner.team/stops/LeUhaag2"], ["https://tec.openplanner.team/stops/N214aab", "https://tec.openplanner.team/stops/N214aba"], ["https://tec.openplanner.team/stops/X910aja", "https://tec.openplanner.team/stops/X911arb"], ["https://tec.openplanner.team/stops/Crclorc1", "https://tec.openplanner.team/stops/Crcrwas2"], ["https://tec.openplanner.team/stops/Ccusole1", "https://tec.openplanner.team/stops/Ccusole2"], ["https://tec.openplanner.team/stops/Cmychau2", "https://tec.openplanner.team/stops/Cmyfoym1"], ["https://tec.openplanner.team/stops/LMgbern2", "https://tec.openplanner.team/stops/LMgberw1"], ["https://tec.openplanner.team/stops/LMechpl1", "https://tec.openplanner.team/stops/LMemora1"], ["https://tec.openplanner.team/stops/H1gg116a", "https://tec.openplanner.team/stops/H1gi123b"], ["https://tec.openplanner.team/stops/X624afa", "https://tec.openplanner.team/stops/X624agb"], ["https://tec.openplanner.team/stops/X715akb", "https://tec.openplanner.team/stops/X781aeb"], ["https://tec.openplanner.team/stops/H4ld129a", "https://tec.openplanner.team/stops/H4ld130a"], ["https://tec.openplanner.team/stops/X654afa", "https://tec.openplanner.team/stops/X654afb"], ["https://tec.openplanner.team/stops/Bwanthi1", "https://tec.openplanner.team/stops/Bwanthi2"], ["https://tec.openplanner.team/stops/H1ge116b", "https://tec.openplanner.team/stops/H1ge151b"], ["https://tec.openplanner.team/stops/Bjauvch2", "https://tec.openplanner.team/stops/Bmrl4ch2"], ["https://tec.openplanner.team/stops/Llghaut2", "https://tec.openplanner.team/stops/Llgseel1"], ["https://tec.openplanner.team/stops/Cgon51", "https://tec.openplanner.team/stops/Cgoson11"], ["https://tec.openplanner.team/stops/H1bi103a", "https://tec.openplanner.team/stops/H1mg108a"], ["https://tec.openplanner.team/stops/LaR1G--2", "https://tec.openplanner.team/stops/LrUoudl2"], ["https://tec.openplanner.team/stops/Cptdubo2", "https://tec.openplanner.team/stops/Cptplac3"], ["https://tec.openplanner.team/stops/N508afb", "https://tec.openplanner.team/stops/N508ajc"], ["https://tec.openplanner.team/stops/N165aaa", "https://tec.openplanner.team/stops/N165aca"], ["https://tec.openplanner.team/stops/N232abb", "https://tec.openplanner.team/stops/N261acb"], ["https://tec.openplanner.team/stops/N150afa", "https://tec.openplanner.team/stops/N158aaa"], ["https://tec.openplanner.team/stops/X759aba", "https://tec.openplanner.team/stops/X759abb"], ["https://tec.openplanner.team/stops/N154aca", "https://tec.openplanner.team/stops/N154ada"], ["https://tec.openplanner.team/stops/N549aga", "https://tec.openplanner.team/stops/N549aha"], ["https://tec.openplanner.team/stops/Brixape1", "https://tec.openplanner.team/stops/Brixape2"], ["https://tec.openplanner.team/stops/LmAaldr1", "https://tec.openplanner.team/stops/X792abb"], ["https://tec.openplanner.team/stops/H1ch107a", "https://tec.openplanner.team/stops/H4ld123b"], ["https://tec.openplanner.team/stops/LSygerm2", "https://tec.openplanner.team/stops/LWZdtec2"], ["https://tec.openplanner.team/stops/X829adb", "https://tec.openplanner.team/stops/X830aab"], ["https://tec.openplanner.team/stops/Bgnvval1", "https://tec.openplanner.team/stops/Bgnvval2"], ["https://tec.openplanner.team/stops/X757afb", "https://tec.openplanner.team/stops/X757aia"], ["https://tec.openplanner.team/stops/Cgpmoul1", "https://tec.openplanner.team/stops/Cpcha432"], ["https://tec.openplanner.team/stops/LFmecli3", "https://tec.openplanner.team/stops/LMOchen1"], ["https://tec.openplanner.team/stops/H2tr251b", "https://tec.openplanner.team/stops/H2tr256b"], ["https://tec.openplanner.team/stops/X608aoa", "https://tec.openplanner.team/stops/X608apa"], ["https://tec.openplanner.team/stops/LEN101-1", "https://tec.openplanner.team/stops/LENtour2"], ["https://tec.openplanner.team/stops/H5qu143a", "https://tec.openplanner.team/stops/H5qu152a"], ["https://tec.openplanner.team/stops/LFMkrut2", "https://tec.openplanner.team/stops/LFMkrut3"], ["https://tec.openplanner.team/stops/Baegd742", "https://tec.openplanner.team/stops/Bramgar1"], ["https://tec.openplanner.team/stops/Lghberl2", "https://tec.openplanner.team/stops/Ljecocc1"], ["https://tec.openplanner.team/stops/Ccumasu2", "https://tec.openplanner.team/stops/Ccupdes1"], ["https://tec.openplanner.team/stops/N516aha", "https://tec.openplanner.team/stops/N516apa"], ["https://tec.openplanner.team/stops/H4ch119a", "https://tec.openplanner.team/stops/H4ty326b"], ["https://tec.openplanner.team/stops/LPLbiol1", "https://tec.openplanner.team/stops/LRRtrix1"], ["https://tec.openplanner.team/stops/Llmbell1", "https://tec.openplanner.team/stops/Lprcite2"], ["https://tec.openplanner.team/stops/X733aaa", "https://tec.openplanner.team/stops/X733aab"], ["https://tec.openplanner.team/stops/X617aeb", "https://tec.openplanner.team/stops/X695ada"], ["https://tec.openplanner.team/stops/LFPkape4", "https://tec.openplanner.team/stops/LFPkerk1"], ["https://tec.openplanner.team/stops/N506aga", "https://tec.openplanner.team/stops/N556afa"], ["https://tec.openplanner.team/stops/X796aca", "https://tec.openplanner.team/stops/X796ada"], ["https://tec.openplanner.team/stops/Btlbcul2", "https://tec.openplanner.team/stops/Btlbmel2"], ["https://tec.openplanner.team/stops/N120aba", "https://tec.openplanner.team/stops/N120abc"], ["https://tec.openplanner.team/stops/X630aab", "https://tec.openplanner.team/stops/X630abb"], ["https://tec.openplanner.team/stops/Ctaphaz1", "https://tec.openplanner.team/stops/N543cca"], ["https://tec.openplanner.team/stops/Ladfran3", "https://tec.openplanner.team/stops/Ldimont1"], ["https://tec.openplanner.team/stops/X925afb", "https://tec.openplanner.team/stops/X925ama"], ["https://tec.openplanner.team/stops/LVLhalb1", "https://tec.openplanner.team/stops/LVLhalb3"], ["https://tec.openplanner.team/stops/LPRmc--2", "https://tec.openplanner.team/stops/LPRmc--4"], ["https://tec.openplanner.team/stops/NL72aba", "https://tec.openplanner.team/stops/NL72aeb"], ["https://tec.openplanner.team/stops/X619aga", "https://tec.openplanner.team/stops/X619agb"], ["https://tec.openplanner.team/stops/H1mr122a", "https://tec.openplanner.team/stops/H1wi151a"], ["https://tec.openplanner.team/stops/LWAalou1", "https://tec.openplanner.team/stops/LWAchpg1"], ["https://tec.openplanner.team/stops/LBdmarr1", "https://tec.openplanner.team/stops/LBdmarr2"], ["https://tec.openplanner.team/stops/Crehout2", "https://tec.openplanner.team/stops/Creshau2"], ["https://tec.openplanner.team/stops/N229akb", "https://tec.openplanner.team/stops/N229apb"], ["https://tec.openplanner.team/stops/X767aia", "https://tec.openplanner.team/stops/X767aib"], ["https://tec.openplanner.team/stops/Cgxmorg1", "https://tec.openplanner.team/stops/Cgxmorg2"], ["https://tec.openplanner.team/stops/H2hp119a", "https://tec.openplanner.team/stops/H2ll260a"], ["https://tec.openplanner.team/stops/H2mo127c", "https://tec.openplanner.team/stops/H2mo127d"], ["https://tec.openplanner.team/stops/H4bc104a", "https://tec.openplanner.team/stops/H5bl123a"], ["https://tec.openplanner.team/stops/N539bda", "https://tec.openplanner.team/stops/N539beb"], ["https://tec.openplanner.team/stops/N501aaa", "https://tec.openplanner.team/stops/N501hba"], ["https://tec.openplanner.team/stops/Lghencl1", "https://tec.openplanner.team/stops/Lghomni2"], ["https://tec.openplanner.team/stops/H4ne135a", "https://tec.openplanner.team/stops/H4ne135b"], ["https://tec.openplanner.team/stops/LbTschw1", "https://tec.openplanner.team/stops/LbUwhon1"], ["https://tec.openplanner.team/stops/Lflec--2", "https://tec.openplanner.team/stops/Lflweri2"], ["https://tec.openplanner.team/stops/LSNness1", "https://tec.openplanner.team/stops/LXHfond1"], ["https://tec.openplanner.team/stops/H4ce107a", "https://tec.openplanner.team/stops/H4mx115b"], ["https://tec.openplanner.team/stops/H4au144a", "https://tec.openplanner.team/stops/H4og216a"], ["https://tec.openplanner.team/stops/LhRwere1", "https://tec.openplanner.team/stops/LmCkirc1"], ["https://tec.openplanner.team/stops/X949ahb", "https://tec.openplanner.team/stops/X949aja"], ["https://tec.openplanner.team/stops/N219ada", "https://tec.openplanner.team/stops/N219adb"], ["https://tec.openplanner.team/stops/H4og208a", "https://tec.openplanner.team/stops/H4og208b"], ["https://tec.openplanner.team/stops/LWAlieg1", "https://tec.openplanner.team/stops/LWAor--1"], ["https://tec.openplanner.team/stops/N118aba", "https://tec.openplanner.team/stops/N155acb"], ["https://tec.openplanner.team/stops/LhSbruc2", "https://tec.openplanner.team/stops/LhSkape2"], ["https://tec.openplanner.team/stops/Cciferr1", "https://tec.openplanner.team/stops/Cciferr2"], ["https://tec.openplanner.team/stops/H1lm106a", "https://tec.openplanner.team/stops/H1to155b"], ["https://tec.openplanner.team/stops/LVleg--1", "https://tec.openplanner.team/stops/LVlleme1"], ["https://tec.openplanner.team/stops/Cfrempe2", "https://tec.openplanner.team/stops/Cfrfaub2"], ["https://tec.openplanner.team/stops/X512aia", "https://tec.openplanner.team/stops/X595aib"], ["https://tec.openplanner.team/stops/LLxconj1", "https://tec.openplanner.team/stops/LLxconj2"], ["https://tec.openplanner.team/stops/N501aba", "https://tec.openplanner.team/stops/N502ada"], ["https://tec.openplanner.team/stops/X659apb", "https://tec.openplanner.team/stops/X741aid"], ["https://tec.openplanner.team/stops/Bneelaa1", "https://tec.openplanner.team/stops/Bracgar2"], ["https://tec.openplanner.team/stops/X824aac", "https://tec.openplanner.team/stops/X824acb"], ["https://tec.openplanner.team/stops/LSNbouh3", "https://tec.openplanner.team/stops/LSNfays2"], ["https://tec.openplanner.team/stops/H1gy112a", "https://tec.openplanner.team/stops/H1gy113b"], ["https://tec.openplanner.team/stops/N509awb", "https://tec.openplanner.team/stops/N511aua"], ["https://tec.openplanner.team/stops/Bohngen1", "https://tec.openplanner.team/stops/Bohnman1"], ["https://tec.openplanner.team/stops/N584avb", "https://tec.openplanner.team/stops/N584awb"], ["https://tec.openplanner.team/stops/Chpchea1", "https://tec.openplanner.team/stops/Cwgmart2"], ["https://tec.openplanner.team/stops/LMOm48-1", "https://tec.openplanner.team/stops/LMOs45-2"], ["https://tec.openplanner.team/stops/Cnapair2", "https://tec.openplanner.team/stops/N160afb"], ["https://tec.openplanner.team/stops/X397aba", "https://tec.openplanner.team/stops/X901ala"], ["https://tec.openplanner.team/stops/N127afa", "https://tec.openplanner.team/stops/N134agb"], ["https://tec.openplanner.team/stops/N132abb", "https://tec.openplanner.team/stops/N152aac"], ["https://tec.openplanner.team/stops/H5at116a", "https://tec.openplanner.team/stops/H5at120a"], ["https://tec.openplanner.team/stops/N308aea", "https://tec.openplanner.team/stops/N308ajb"], ["https://tec.openplanner.team/stops/LVvbouv1", "https://tec.openplanner.team/stops/X796aab"], ["https://tec.openplanner.team/stops/Lhrpont1", "https://tec.openplanner.team/stops/Lhrwigi1"], ["https://tec.openplanner.team/stops/X823afd", "https://tec.openplanner.team/stops/X824aba"], ["https://tec.openplanner.team/stops/Brsga811", "https://tec.openplanner.team/stops/Brsga812"], ["https://tec.openplanner.team/stops/N576ahb", "https://tec.openplanner.team/stops/N576aib"], ["https://tec.openplanner.team/stops/LHAbont2", "https://tec.openplanner.team/stops/LHAmonu2"], ["https://tec.openplanner.team/stops/H1ba102a", "https://tec.openplanner.team/stops/H1ba114c"], ["https://tec.openplanner.team/stops/LFProt-1", "https://tec.openplanner.team/stops/LFProt-2"], ["https://tec.openplanner.team/stops/H2fy122a", "https://tec.openplanner.team/stops/H2lh124b"], ["https://tec.openplanner.team/stops/LtHfrie1", "https://tec.openplanner.team/stops/LtHkreu4"], ["https://tec.openplanner.team/stops/Cplrymo1", "https://tec.openplanner.team/stops/Cplrymo2"], ["https://tec.openplanner.team/stops/Llgborg1", "https://tec.openplanner.team/stops/Llghori2"], ["https://tec.openplanner.team/stops/Ladhomb1", "https://tec.openplanner.team/stops/Lvedepa*"], ["https://tec.openplanner.team/stops/Cmyfoym1", "https://tec.openplanner.team/stops/Cmywarc2"], ["https://tec.openplanner.team/stops/N121aab", "https://tec.openplanner.team/stops/N158aab"], ["https://tec.openplanner.team/stops/X802ahb", "https://tec.openplanner.team/stops/X802aya"], ["https://tec.openplanner.team/stops/LEBeg--1", "https://tec.openplanner.team/stops/LEBmoul2"], ["https://tec.openplanner.team/stops/X316aaa", "https://tec.openplanner.team/stops/X316aab"], ["https://tec.openplanner.team/stops/LLYpeup1", "https://tec.openplanner.team/stops/LLYpeup2"], ["https://tec.openplanner.team/stops/LRRemul1", "https://tec.openplanner.team/stops/LRRlimi1"], ["https://tec.openplanner.team/stops/LGLgare*", "https://tec.openplanner.team/stops/LPAeg--2"], ["https://tec.openplanner.team/stops/LVLchem1", "https://tec.openplanner.team/stops/LVLchem2"], ["https://tec.openplanner.team/stops/X901amb", "https://tec.openplanner.team/stops/X999aqa"], ["https://tec.openplanner.team/stops/LFCvoer2", "https://tec.openplanner.team/stops/LFCvoge4"], ["https://tec.openplanner.team/stops/LFArela2", "https://tec.openplanner.team/stops/LWDchab2"], ["https://tec.openplanner.team/stops/X801ava", "https://tec.openplanner.team/stops/X801awa"], ["https://tec.openplanner.team/stops/Cgogb1", "https://tec.openplanner.team/stops/Cgon51"], ["https://tec.openplanner.team/stops/Bitrnus2", "https://tec.openplanner.team/stops/Bosqpco1"], ["https://tec.openplanner.team/stops/H4lh118b", "https://tec.openplanner.team/stops/H4oe147a"], ["https://tec.openplanner.team/stops/X793aia", "https://tec.openplanner.team/stops/X793aja"], ["https://tec.openplanner.team/stops/N585aba", "https://tec.openplanner.team/stops/N585aib"], ["https://tec.openplanner.team/stops/Llgbago2", "https://tec.openplanner.team/stops/Llgjenn3"], ["https://tec.openplanner.team/stops/NH01arb", "https://tec.openplanner.team/stops/NH01aub"], ["https://tec.openplanner.team/stops/Llgborn2", "https://tec.openplanner.team/stops/Ltibell1"], ["https://tec.openplanner.team/stops/N501fwa", "https://tec.openplanner.team/stops/N501fwy"], ["https://tec.openplanner.team/stops/Ccumasu1", "https://tec.openplanner.team/stops/Ccupdes4"], ["https://tec.openplanner.team/stops/Bwatmsj1", "https://tec.openplanner.team/stops/Bwatwsc1"], ["https://tec.openplanner.team/stops/X723aeb", "https://tec.openplanner.team/stops/X763ahb"], ["https://tec.openplanner.team/stops/Ctucamb1", "https://tec.openplanner.team/stops/NC28aea"], ["https://tec.openplanner.team/stops/N520aea", "https://tec.openplanner.team/stops/N523aca"], ["https://tec.openplanner.team/stops/X824alb", "https://tec.openplanner.team/stops/X829aeb"], ["https://tec.openplanner.team/stops/X746akb", "https://tec.openplanner.team/stops/X746ala"], ["https://tec.openplanner.team/stops/LLEfagn2", "https://tec.openplanner.team/stops/LLEgare1"], ["https://tec.openplanner.team/stops/H2ch108a", "https://tec.openplanner.team/stops/H2ch108b"], ["https://tec.openplanner.team/stops/X224afa", "https://tec.openplanner.team/stops/X398aca"], ["https://tec.openplanner.team/stops/N894aaa", "https://tec.openplanner.team/stops/N894aca"], ["https://tec.openplanner.team/stops/Bhenard3", "https://tec.openplanner.team/stops/Bhengri2"], ["https://tec.openplanner.team/stops/Cfccuch1", "https://tec.openplanner.team/stops/Cfccuch2"], ["https://tec.openplanner.team/stops/H3go100b", "https://tec.openplanner.team/stops/H3go105a"], ["https://tec.openplanner.team/stops/N501hxz", "https://tec.openplanner.team/stops/N501lzb"], ["https://tec.openplanner.team/stops/X910acb", "https://tec.openplanner.team/stops/X910aea"], ["https://tec.openplanner.team/stops/Bgdhcsh2", "https://tec.openplanner.team/stops/Bgdhmet1"], ["https://tec.openplanner.team/stops/Lprmc--3", "https://tec.openplanner.team/stops/Lprmoin1"], ["https://tec.openplanner.team/stops/H5pe126b", "https://tec.openplanner.team/stops/H5pe145b"], ["https://tec.openplanner.team/stops/Cjxetri1", "https://tec.openplanner.team/stops/Cjxthom2"], ["https://tec.openplanner.team/stops/H1cd113a", "https://tec.openplanner.team/stops/H1cd113b"], ["https://tec.openplanner.team/stops/X619aab", "https://tec.openplanner.team/stops/X619abb"], ["https://tec.openplanner.team/stops/X614bca", "https://tec.openplanner.team/stops/X614bcb"], ["https://tec.openplanner.team/stops/Lbeloui2", "https://tec.openplanner.team/stops/Lbemc--1"], ["https://tec.openplanner.team/stops/Lmopeup1", "https://tec.openplanner.team/stops/Lmopota2"], ["https://tec.openplanner.team/stops/X804aya", "https://tec.openplanner.team/stops/X804bab"], ["https://tec.openplanner.team/stops/H1ev112b", "https://tec.openplanner.team/stops/H1ev114b"], ["https://tec.openplanner.team/stops/LaUkirc*", "https://tec.openplanner.team/stops/LsTgren1"], ["https://tec.openplanner.team/stops/Cbmplac2", "https://tec.openplanner.team/stops/Cbmzoni1"], ["https://tec.openplanner.team/stops/H1qy131b", "https://tec.openplanner.team/stops/H1qy133b"], ["https://tec.openplanner.team/stops/N509aab", "https://tec.openplanner.team/stops/N509aga"], ["https://tec.openplanner.team/stops/LXhvanh2", "https://tec.openplanner.team/stops/LXhvina2"], ["https://tec.openplanner.team/stops/LFEhoup1", "https://tec.openplanner.team/stops/LFEn6--1"], ["https://tec.openplanner.team/stops/LBJchau*", "https://tec.openplanner.team/stops/LBJplan1"], ["https://tec.openplanner.team/stops/Llgrosa1", "https://tec.openplanner.team/stops/Llgrosa2"], ["https://tec.openplanner.team/stops/H1by100c", "https://tec.openplanner.team/stops/H1by104b"], ["https://tec.openplanner.team/stops/N118aqa", "https://tec.openplanner.team/stops/N118aua"], ["https://tec.openplanner.team/stops/N232ayb", "https://tec.openplanner.team/stops/N232bjb"], ["https://tec.openplanner.team/stops/LAnvien2", "https://tec.openplanner.team/stops/LVnroch2"], ["https://tec.openplanner.team/stops/X651aab", "https://tec.openplanner.team/stops/X652aba"], ["https://tec.openplanner.team/stops/LrUgeme1", "https://tec.openplanner.team/stops/LrUgeme2"], ["https://tec.openplanner.team/stops/X738acb", "https://tec.openplanner.team/stops/X754ava"], ["https://tec.openplanner.team/stops/N143aab", "https://tec.openplanner.team/stops/N143aca"], ["https://tec.openplanner.team/stops/N543bmb", "https://tec.openplanner.team/stops/N543cna"], ["https://tec.openplanner.team/stops/H1ms269b", "https://tec.openplanner.team/stops/H1ms275a"], ["https://tec.openplanner.team/stops/LAYnias2", "https://tec.openplanner.team/stops/LAYwerb2"], ["https://tec.openplanner.team/stops/H1bi104b", "https://tec.openplanner.team/stops/H1ls130a"], ["https://tec.openplanner.team/stops/LBichen1", "https://tec.openplanner.team/stops/LBivill1"], ["https://tec.openplanner.team/stops/LCsange2", "https://tec.openplanner.team/stops/LCsjone1"], ["https://tec.openplanner.team/stops/N353aab", "https://tec.openplanner.team/stops/N353ada"], ["https://tec.openplanner.team/stops/X907afa", "https://tec.openplanner.team/stops/X907agb"], ["https://tec.openplanner.team/stops/X601aqa", "https://tec.openplanner.team/stops/X601bta"], ["https://tec.openplanner.team/stops/H4ta125b", "https://tec.openplanner.team/stops/H4ta128a"], ["https://tec.openplanner.team/stops/X805aja", "https://tec.openplanner.team/stops/X805ajb"], ["https://tec.openplanner.team/stops/X761aca", "https://tec.openplanner.team/stops/X761adb"], ["https://tec.openplanner.team/stops/Cbwmvri1", "https://tec.openplanner.team/stops/Cmqn5912"], ["https://tec.openplanner.team/stops/Lvtchpl1", "https://tec.openplanner.team/stops/Lvtchpl2"], ["https://tec.openplanner.team/stops/X818ata", "https://tec.openplanner.team/stops/X827aaa"], ["https://tec.openplanner.team/stops/H1fa118a", "https://tec.openplanner.team/stops/H1fa121b"], ["https://tec.openplanner.team/stops/LmHperl2", "https://tec.openplanner.team/stops/LmHschm2"], ["https://tec.openplanner.team/stops/H4mo137a", "https://tec.openplanner.team/stops/H4mo187a"], ["https://tec.openplanner.team/stops/X720abb", "https://tec.openplanner.team/stops/X720adb"], ["https://tec.openplanner.team/stops/H1ht121b", "https://tec.openplanner.team/stops/H1ht136b"], ["https://tec.openplanner.team/stops/N501msb", "https://tec.openplanner.team/stops/N501mta"], ["https://tec.openplanner.team/stops/X767ada", "https://tec.openplanner.team/stops/X767afa"], ["https://tec.openplanner.team/stops/H1do109b", "https://tec.openplanner.team/stops/H1do111a"], ["https://tec.openplanner.team/stops/X398afa", "https://tec.openplanner.team/stops/X998aza"], ["https://tec.openplanner.team/stops/N501lna", "https://tec.openplanner.team/stops/N501lnb"], ["https://tec.openplanner.team/stops/X833aab", "https://tec.openplanner.team/stops/X834aba"], ["https://tec.openplanner.team/stops/LORgr8-2", "https://tec.openplanner.team/stops/LORpave1"], ["https://tec.openplanner.team/stops/H4ga157a", "https://tec.openplanner.team/stops/H4ga164a"], ["https://tec.openplanner.team/stops/LREhenu2", "https://tec.openplanner.team/stops/LREraph3"], ["https://tec.openplanner.team/stops/N211aga", "https://tec.openplanner.team/stops/N211awa"], ["https://tec.openplanner.team/stops/N537aka", "https://tec.openplanner.team/stops/N537akb"], ["https://tec.openplanner.team/stops/H1pw123a", "https://tec.openplanner.team/stops/H1pw123b"], ["https://tec.openplanner.team/stops/H4fr393a", "https://tec.openplanner.team/stops/H4ka393b"], ["https://tec.openplanner.team/stops/N519ajb", "https://tec.openplanner.team/stops/N519aka"], ["https://tec.openplanner.team/stops/X948ana", "https://tec.openplanner.team/stops/X948anb"], ["https://tec.openplanner.team/stops/Cfrmoul1", "https://tec.openplanner.team/stops/Cfrsour2"], ["https://tec.openplanner.team/stops/N507aeb", "https://tec.openplanner.team/stops/N507aia"], ["https://tec.openplanner.team/stops/Csurela1", "https://tec.openplanner.team/stops/Csygare1"], ["https://tec.openplanner.team/stops/N579abb", "https://tec.openplanner.team/stops/N579acb"], ["https://tec.openplanner.team/stops/X601bbc", "https://tec.openplanner.team/stops/X601bqa"], ["https://tec.openplanner.team/stops/H3so185b", "https://tec.openplanner.team/stops/H3so187a"], ["https://tec.openplanner.team/stops/X784aab", "https://tec.openplanner.team/stops/X784aba"], ["https://tec.openplanner.team/stops/LFrec--1", "https://tec.openplanner.team/stops/LNEpass1"], ["https://tec.openplanner.team/stops/LRErive1", "https://tec.openplanner.team/stops/LRErive2"], ["https://tec.openplanner.team/stops/Cmmp2051", "https://tec.openplanner.team/stops/Cmmp2052"], ["https://tec.openplanner.team/stops/Clojone1", "https://tec.openplanner.team/stops/Clojone2"], ["https://tec.openplanner.team/stops/H1le122d", "https://tec.openplanner.team/stops/H1le127b"], ["https://tec.openplanner.team/stops/N501grg", "https://tec.openplanner.team/stops/N501hdb"], ["https://tec.openplanner.team/stops/X609aia", "https://tec.openplanner.team/stops/X609aja"], ["https://tec.openplanner.team/stops/LOreg--2", "https://tec.openplanner.team/stops/LTyhall1"], ["https://tec.openplanner.team/stops/Bcbqegl1", "https://tec.openplanner.team/stops/Bcbqegl2"], ["https://tec.openplanner.team/stops/N310abb", "https://tec.openplanner.team/stops/N312aab"], ["https://tec.openplanner.team/stops/H1th182a", "https://tec.openplanner.team/stops/H3so169b"], ["https://tec.openplanner.team/stops/H1ge117a", "https://tec.openplanner.team/stops/H1ge117b"], ["https://tec.openplanner.team/stops/Ljuetie1", "https://tec.openplanner.team/stops/Ljuetie2"], ["https://tec.openplanner.team/stops/X602aba", "https://tec.openplanner.team/stops/X604aja"], ["https://tec.openplanner.team/stops/Blhueca2", "https://tec.openplanner.team/stops/Blhutco3"], ["https://tec.openplanner.team/stops/H3so177a", "https://tec.openplanner.team/stops/H3so177b"], ["https://tec.openplanner.team/stops/Bcsebea1", "https://tec.openplanner.team/stops/Bcsebea2"], ["https://tec.openplanner.team/stops/H2le146b", "https://tec.openplanner.team/stops/H2le148a"], ["https://tec.openplanner.team/stops/N501hnb", "https://tec.openplanner.team/stops/N501hpa"], ["https://tec.openplanner.team/stops/Llgoeil1", "https://tec.openplanner.team/stops/Llgoeil2"], ["https://tec.openplanner.team/stops/Bblamsp2", "https://tec.openplanner.team/stops/Bblamsp4"], ["https://tec.openplanner.team/stops/Louegla2", "https://tec.openplanner.team/stops/Louencl2"], ["https://tec.openplanner.team/stops/Bpelegl3", "https://tec.openplanner.team/stops/Bracrpe2"], ["https://tec.openplanner.team/stops/LaM266-1", "https://tec.openplanner.team/stops/LmYeich1"], ["https://tec.openplanner.team/stops/X996acb", "https://tec.openplanner.team/stops/X996ada"], ["https://tec.openplanner.team/stops/N232cda", "https://tec.openplanner.team/stops/N251aaa"], ["https://tec.openplanner.team/stops/Cbcegli1", "https://tec.openplanner.team/stops/Cbcegli3"], ["https://tec.openplanner.team/stops/LSpogne1", "https://tec.openplanner.team/stops/LSpogne2"], ["https://tec.openplanner.team/stops/LMici092", "https://tec.openplanner.team/stops/LMipoti1"], ["https://tec.openplanner.team/stops/Ljhheus1", "https://tec.openplanner.team/stops/Ljhheus2"], ["https://tec.openplanner.team/stops/Llgnati2", "https://tec.openplanner.team/stops/Llgpari2"], ["https://tec.openplanner.team/stops/X659aab", "https://tec.openplanner.team/stops/X659aya"], ["https://tec.openplanner.team/stops/LSlbail2", "https://tec.openplanner.team/stops/X919aia"], ["https://tec.openplanner.team/stops/H1hg181b", "https://tec.openplanner.team/stops/H1hm173a"], ["https://tec.openplanner.team/stops/Bgerd321", "https://tec.openplanner.team/stops/Bgermco1"], ["https://tec.openplanner.team/stops/LAVeg--2", "https://tec.openplanner.team/stops/LVHweri2"], ["https://tec.openplanner.team/stops/H1pd146a", "https://tec.openplanner.team/stops/H1wa154b"], ["https://tec.openplanner.team/stops/Cfovent1", "https://tec.openplanner.team/stops/Cfovent2"], ["https://tec.openplanner.team/stops/N203aab", "https://tec.openplanner.team/stops/N559aab"], ["https://tec.openplanner.team/stops/Lagtilf2", "https://tec.openplanner.team/stops/Lcejobe1"], ["https://tec.openplanner.team/stops/H1ho125b", "https://tec.openplanner.team/stops/H1wa164b"], ["https://tec.openplanner.team/stops/H1ms301a", "https://tec.openplanner.team/stops/H1ms303a"], ["https://tec.openplanner.team/stops/Lbogonh*", "https://tec.openplanner.team/stops/Lbogonh3"], ["https://tec.openplanner.team/stops/Bmanati1", "https://tec.openplanner.team/stops/Bmangen1"], ["https://tec.openplanner.team/stops/N214aha", "https://tec.openplanner.team/stops/N236aha"], ["https://tec.openplanner.team/stops/N211aya", "https://tec.openplanner.team/stops/N211bca"], ["https://tec.openplanner.team/stops/Lglsana2", "https://tec.openplanner.team/stops/Llgrame2"], ["https://tec.openplanner.team/stops/N509asa", "https://tec.openplanner.team/stops/N509asb"], ["https://tec.openplanner.team/stops/H2le148b", "https://tec.openplanner.team/stops/H2le149a"], ["https://tec.openplanner.team/stops/H4de112a", "https://tec.openplanner.team/stops/H4ss155a"], ["https://tec.openplanner.team/stops/X739ahb", "https://tec.openplanner.team/stops/X911abb"], ["https://tec.openplanner.team/stops/Ladwooz2", "https://tec.openplanner.team/stops/Ladxhen2"], ["https://tec.openplanner.team/stops/N551adb", "https://tec.openplanner.team/stops/N551aeb"], ["https://tec.openplanner.team/stops/N106alb", "https://tec.openplanner.team/stops/N106apa"], ["https://tec.openplanner.team/stops/Canjon1", "https://tec.openplanner.team/stops/Canjonc1"], ["https://tec.openplanner.team/stops/X670adb", "https://tec.openplanner.team/stops/X670ahb"], ["https://tec.openplanner.team/stops/H5gr137a", "https://tec.openplanner.team/stops/H5st168b"], ["https://tec.openplanner.team/stops/Llgauxc1", "https://tec.openplanner.team/stops/Llglill1"], ["https://tec.openplanner.team/stops/H4re225b", "https://tec.openplanner.team/stops/H5at235a"], ["https://tec.openplanner.team/stops/X994aja", "https://tec.openplanner.team/stops/X994aka"], ["https://tec.openplanner.team/stops/LJAcent1", "https://tec.openplanner.team/stops/LJAhanq1"], ["https://tec.openplanner.team/stops/Bhengou1", "https://tec.openplanner.team/stops/Bhengou2"], ["https://tec.openplanner.team/stops/Cclchap2", "https://tec.openplanner.team/stops/Cclmoul2"], ["https://tec.openplanner.team/stops/N212aba", "https://tec.openplanner.team/stops/N212aib"], ["https://tec.openplanner.team/stops/Lccaigr1", "https://tec.openplanner.team/stops/Lccaigr2"], ["https://tec.openplanner.team/stops/LCOcrom1", "https://tec.openplanner.team/stops/LSNchen1"], ["https://tec.openplanner.team/stops/H4fr143b", "https://tec.openplanner.team/stops/H4te254a"], ["https://tec.openplanner.team/stops/H1al105a", "https://tec.openplanner.team/stops/H1al146b"], ["https://tec.openplanner.team/stops/N235ada", "https://tec.openplanner.team/stops/N235adb"], ["https://tec.openplanner.team/stops/X716aab", "https://tec.openplanner.team/stops/X731aib"], ["https://tec.openplanner.team/stops/H1ge117b", "https://tec.openplanner.team/stops/H1ge179b"], ["https://tec.openplanner.team/stops/N574aca", "https://tec.openplanner.team/stops/N574aga"], ["https://tec.openplanner.team/stops/N134ajb", "https://tec.openplanner.team/stops/N135bga"], ["https://tec.openplanner.team/stops/N543bpc", "https://tec.openplanner.team/stops/N543cha"], ["https://tec.openplanner.team/stops/Llieg--1", "https://tec.openplanner.team/stops/Llithon2"], ["https://tec.openplanner.team/stops/Bgliron1", "https://tec.openplanner.team/stops/Btlbtho2"], ["https://tec.openplanner.team/stops/X637alb", "https://tec.openplanner.team/stops/X650aob"], ["https://tec.openplanner.team/stops/Crodebr2", "https://tec.openplanner.team/stops/Croplom4"], ["https://tec.openplanner.team/stops/Lseespe1", "https://tec.openplanner.team/stops/Lsemara2"], ["https://tec.openplanner.team/stops/Cmqcend2", "https://tec.openplanner.team/stops/Cmqchap1"], ["https://tec.openplanner.team/stops/H4rc232a", "https://tec.openplanner.team/stops/H4rc234b"], ["https://tec.openplanner.team/stops/LFLcher1", "https://tec.openplanner.team/stops/LFLetoi1"], ["https://tec.openplanner.team/stops/Lemcort2", "https://tec.openplanner.team/stops/LTIsain1"], ["https://tec.openplanner.team/stops/LHcaube1", "https://tec.openplanner.team/stops/LSxeg--2"], ["https://tec.openplanner.team/stops/X606aab", "https://tec.openplanner.team/stops/X607ahb"], ["https://tec.openplanner.team/stops/LhMmeil1", "https://tec.openplanner.team/stops/LhRwere1"], ["https://tec.openplanner.team/stops/X757adb", "https://tec.openplanner.team/stops/X757afa"], ["https://tec.openplanner.team/stops/LCPcomm1", "https://tec.openplanner.team/stops/LCPconf1"], ["https://tec.openplanner.team/stops/X983acb", "https://tec.openplanner.team/stops/X983aeb"], ["https://tec.openplanner.team/stops/LHUaron1", "https://tec.openplanner.team/stops/LHUlebe0"], ["https://tec.openplanner.team/stops/H4ty293b", "https://tec.openplanner.team/stops/H4ty324a"], ["https://tec.openplanner.team/stops/Lsemyrt1", "https://tec.openplanner.team/stops/Lsepcha3"], ["https://tec.openplanner.team/stops/LNCmada2", "https://tec.openplanner.team/stops/LNCtour1"], ["https://tec.openplanner.team/stops/Bbstegl1", "https://tec.openplanner.team/stops/Csdetan2"], ["https://tec.openplanner.team/stops/N111aaa", "https://tec.openplanner.team/stops/N127aja"], ["https://tec.openplanner.team/stops/LBWeg--1", "https://tec.openplanner.team/stops/LBWeg--2"], ["https://tec.openplanner.team/stops/H1go169a", "https://tec.openplanner.team/stops/H1qp150b"], ["https://tec.openplanner.team/stops/X911aca", "https://tec.openplanner.team/stops/X911adb"], ["https://tec.openplanner.team/stops/LRGchap1", "https://tec.openplanner.team/stops/LRGeg--1"], ["https://tec.openplanner.team/stops/X902aba", "https://tec.openplanner.team/stops/X902acb"], ["https://tec.openplanner.team/stops/H4bs113a", "https://tec.openplanner.team/stops/H4ws158a"], ["https://tec.openplanner.team/stops/LMaburg3", "https://tec.openplanner.team/stops/LMalamb4"], ["https://tec.openplanner.team/stops/Lghmavi1", "https://tec.openplanner.team/stops/Lghmavi2"], ["https://tec.openplanner.team/stops/Bnilhau2", "https://tec.openplanner.team/stops/Bnilspe1"], ["https://tec.openplanner.team/stops/N329aab", "https://tec.openplanner.team/stops/N365acb"], ["https://tec.openplanner.team/stops/Llgboux1", "https://tec.openplanner.team/stops/Lvtbocl1"], ["https://tec.openplanner.team/stops/N501fxa", "https://tec.openplanner.team/stops/N501lbd"], ["https://tec.openplanner.team/stops/LOMcabi1", "https://tec.openplanner.team/stops/LOMeg--2"], ["https://tec.openplanner.team/stops/LBTcarr4", "https://tec.openplanner.team/stops/LHEchex2"], ["https://tec.openplanner.team/stops/N516ama", "https://tec.openplanner.team/stops/N516amb"], ["https://tec.openplanner.team/stops/LaAbush*", "https://tec.openplanner.team/stops/LaAnorm1"], ["https://tec.openplanner.team/stops/Bbsicen1", "https://tec.openplanner.team/stops/Bbsimpl2"], ["https://tec.openplanner.team/stops/Lrcstad1", "https://tec.openplanner.team/stops/Lrcvill4"], ["https://tec.openplanner.team/stops/Barqbar2", "https://tec.openplanner.team/stops/Bnivmon2"], ["https://tec.openplanner.team/stops/LaMwies2", "https://tec.openplanner.team/stops/LmDkoel1"], ["https://tec.openplanner.team/stops/H4oq226b", "https://tec.openplanner.team/stops/H4oq229b"], ["https://tec.openplanner.team/stops/N501hmb", "https://tec.openplanner.team/stops/N501iab"], ["https://tec.openplanner.team/stops/Chpplac1", "https://tec.openplanner.team/stops/Cmechnd1"], ["https://tec.openplanner.team/stops/Cvlstan1", "https://tec.openplanner.team/stops/NH21afb"], ["https://tec.openplanner.team/stops/Bgemibb1", "https://tec.openplanner.team/stops/Bgemkal2"], ["https://tec.openplanner.team/stops/H4ir163a", "https://tec.openplanner.team/stops/H5at135a"], ["https://tec.openplanner.team/stops/Csobrou1", "https://tec.openplanner.team/stops/Csobrou2"], ["https://tec.openplanner.team/stops/N580agb", "https://tec.openplanner.team/stops/N580aha"], ["https://tec.openplanner.team/stops/LSOdow%C3%A92", "https://tec.openplanner.team/stops/LSOgard1"], ["https://tec.openplanner.team/stops/X638aqa", "https://tec.openplanner.team/stops/X652aea"], ["https://tec.openplanner.team/stops/H4ms145a", "https://tec.openplanner.team/stops/H4th139a"], ["https://tec.openplanner.team/stops/LCelabi2", "https://tec.openplanner.team/stops/LVMfoli2"], ["https://tec.openplanner.team/stops/X766acb", "https://tec.openplanner.team/stops/X768ala"], ["https://tec.openplanner.team/stops/H4ty270a", "https://tec.openplanner.team/stops/H4ty290b"], ["https://tec.openplanner.team/stops/LSpbawe2", "https://tec.openplanner.team/stops/LSpcarr1"], ["https://tec.openplanner.team/stops/Lseaite2", "https://tec.openplanner.team/stops/Lselimi2"], ["https://tec.openplanner.team/stops/LSochal2", "https://tec.openplanner.team/stops/LSogite1"], ["https://tec.openplanner.team/stops/N236aia", "https://tec.openplanner.team/stops/N236ajb"], ["https://tec.openplanner.team/stops/N503ada", "https://tec.openplanner.team/stops/N503aia"], ["https://tec.openplanner.team/stops/Bbeasta1", "https://tec.openplanner.team/stops/Btlgmee2"], ["https://tec.openplanner.team/stops/Bmsgmon2", "https://tec.openplanner.team/stops/Bmsgpap1"], ["https://tec.openplanner.team/stops/X982bfa", "https://tec.openplanner.team/stops/X982blb"], ["https://tec.openplanner.team/stops/LReeg--1", "https://tec.openplanner.team/stops/LRemonu1"], ["https://tec.openplanner.team/stops/H4ep126b", "https://tec.openplanner.team/stops/H4rm109b"], ["https://tec.openplanner.team/stops/H4ar101a", "https://tec.openplanner.team/stops/H4ar173b"], ["https://tec.openplanner.team/stops/N232anb", "https://tec.openplanner.team/stops/N232aqb"], ["https://tec.openplanner.team/stops/Lancolr2", "https://tec.openplanner.team/stops/Lanegal1"], ["https://tec.openplanner.team/stops/N158aaa", "https://tec.openplanner.team/stops/N158aab"], ["https://tec.openplanner.team/stops/H1fl133d", "https://tec.openplanner.team/stops/H1fl133e"], ["https://tec.openplanner.team/stops/LHYwach1", "https://tec.openplanner.team/stops/LHYwach2"], ["https://tec.openplanner.team/stops/H1bo108b", "https://tec.openplanner.team/stops/H1bo110b"], ["https://tec.openplanner.team/stops/N509axb", "https://tec.openplanner.team/stops/N511atb"], ["https://tec.openplanner.team/stops/H4bn173a", "https://tec.openplanner.team/stops/H4bn173b"], ["https://tec.openplanner.team/stops/Cgofert1", "https://tec.openplanner.team/stops/Cgofert2"], ["https://tec.openplanner.team/stops/N521asb", "https://tec.openplanner.team/stops/N521asc"], ["https://tec.openplanner.team/stops/LAascie2", "https://tec.openplanner.team/stops/X261aab"], ["https://tec.openplanner.team/stops/N548agb", "https://tec.openplanner.team/stops/N548agc"], ["https://tec.openplanner.team/stops/N549aca", "https://tec.openplanner.team/stops/N578aab"], ["https://tec.openplanner.team/stops/H2ch121a", "https://tec.openplanner.team/stops/H2tz117a"], ["https://tec.openplanner.team/stops/N522bve", "https://tec.openplanner.team/stops/N522bvf"], ["https://tec.openplanner.team/stops/LMnlogi2", "https://tec.openplanner.team/stops/N222aea"], ["https://tec.openplanner.team/stops/Bgemfbo2", "https://tec.openplanner.team/stops/Bgemgjo2"], ["https://tec.openplanner.team/stops/X774aac", "https://tec.openplanner.team/stops/X774abb"], ["https://tec.openplanner.team/stops/N501fdb", "https://tec.openplanner.team/stops/N501mrb"], ["https://tec.openplanner.team/stops/X370acb", "https://tec.openplanner.team/stops/X370ada"], ["https://tec.openplanner.team/stops/LHrbast1", "https://tec.openplanner.team/stops/LHrbast2"], ["https://tec.openplanner.team/stops/H1ms252c", "https://tec.openplanner.team/stops/H1ms926a"], ["https://tec.openplanner.team/stops/LNIbas-1", "https://tec.openplanner.team/stops/LNIbas-2"], ["https://tec.openplanner.team/stops/H4vz371a", "https://tec.openplanner.team/stops/H4vz371b"], ["https://tec.openplanner.team/stops/H4my123a", "https://tec.openplanner.team/stops/H4my123b"], ["https://tec.openplanner.team/stops/LMfbuck1", "https://tec.openplanner.team/stops/LMffoot2"], ["https://tec.openplanner.team/stops/Cmaprov1", "https://tec.openplanner.team/stops/Cmaprov2"], ["https://tec.openplanner.team/stops/H4by115d", "https://tec.openplanner.team/stops/H4wp152a"], ["https://tec.openplanner.team/stops/Btubegy1", "https://tec.openplanner.team/stops/Btubegy2"], ["https://tec.openplanner.team/stops/X370aca", "https://tec.openplanner.team/stops/X850aka"], ["https://tec.openplanner.team/stops/LhIfrie1", "https://tec.openplanner.team/stops/LhIfrie2"], ["https://tec.openplanner.team/stops/LLGcarr2", "https://tec.openplanner.team/stops/LLGec--*"], ["https://tec.openplanner.team/stops/Lhrlico2", "https://tec.openplanner.team/stops/Lhrtilm2"], ["https://tec.openplanner.team/stops/H4tp143a", "https://tec.openplanner.team/stops/H4tp143b"], ["https://tec.openplanner.team/stops/X889aab", "https://tec.openplanner.team/stops/X899ajb"], ["https://tec.openplanner.team/stops/N513acd", "https://tec.openplanner.team/stops/N513ada"], ["https://tec.openplanner.team/stops/H2ha137a", "https://tec.openplanner.team/stops/H2ha137b"], ["https://tec.openplanner.team/stops/N522aja", "https://tec.openplanner.team/stops/N522ajb"], ["https://tec.openplanner.team/stops/X746aea", "https://tec.openplanner.team/stops/X746afb"], ["https://tec.openplanner.team/stops/X664ajb", "https://tec.openplanner.team/stops/X664atb"], ["https://tec.openplanner.team/stops/H4er123a", "https://tec.openplanner.team/stops/H4er123b"], ["https://tec.openplanner.team/stops/Cfabaty4", "https://tec.openplanner.team/stops/Cflcoro2"], ["https://tec.openplanner.team/stops/N501bya", "https://tec.openplanner.team/stops/N501byb"], ["https://tec.openplanner.team/stops/H4ar101b", "https://tec.openplanner.team/stops/H4lg103b"], ["https://tec.openplanner.team/stops/H2ml110b", "https://tec.openplanner.team/stops/H2ml113b"], ["https://tec.openplanner.team/stops/Clrcomb2", "https://tec.openplanner.team/stops/Clrecol2"], ["https://tec.openplanner.team/stops/X892aca", "https://tec.openplanner.team/stops/X892adb"], ["https://tec.openplanner.team/stops/Bgnpchb1", "https://tec.openplanner.team/stops/Bgnppra1"], ["https://tec.openplanner.team/stops/Csysans2", "https://tec.openplanner.team/stops/Csytouq2"], ["https://tec.openplanner.team/stops/LsVgore1", "https://tec.openplanner.team/stops/LsVgore2"], ["https://tec.openplanner.team/stops/Brebpca2", "https://tec.openplanner.team/stops/Brebrog2"], ["https://tec.openplanner.team/stops/X879apa", "https://tec.openplanner.team/stops/X879ara"], ["https://tec.openplanner.team/stops/X633aib", "https://tec.openplanner.team/stops/X633ajc"], ["https://tec.openplanner.team/stops/Cfcchas1", "https://tec.openplanner.team/stops/Cfcstan1"], ["https://tec.openplanner.team/stops/LAMjeha1", "https://tec.openplanner.team/stops/LAMviam1"], ["https://tec.openplanner.team/stops/H4ab103a", "https://tec.openplanner.team/stops/H5ma181a"], ["https://tec.openplanner.team/stops/Lhrmilm2", "https://tec.openplanner.team/stops/Lhrrhee*"], ["https://tec.openplanner.team/stops/H1mj131b", "https://tec.openplanner.team/stops/H1ml109a"], ["https://tec.openplanner.team/stops/Cfogaul1", "https://tec.openplanner.team/stops/Cfogaul2"], ["https://tec.openplanner.team/stops/Ccogrha2", "https://tec.openplanner.team/stops/Cpceclu2"], ["https://tec.openplanner.team/stops/Cchplan1", "https://tec.openplanner.team/stops/Cdasama2"], ["https://tec.openplanner.team/stops/Cbimonu1", "https://tec.openplanner.team/stops/Cbimonu2"], ["https://tec.openplanner.team/stops/N101ajb", "https://tec.openplanner.team/stops/N151aab"], ["https://tec.openplanner.team/stops/H4wi164a", "https://tec.openplanner.team/stops/H4wi175b"], ["https://tec.openplanner.team/stops/Bcbqh451", "https://tec.openplanner.team/stops/Bcbqh452"], ["https://tec.openplanner.team/stops/LBslama1", "https://tec.openplanner.team/stops/LBsoha-1"], ["https://tec.openplanner.team/stops/N154aaa", "https://tec.openplanner.team/stops/N154aca"], ["https://tec.openplanner.team/stops/LJEpaqu1", "https://tec.openplanner.team/stops/LJEtige2"], ["https://tec.openplanner.team/stops/X898aoa", "https://tec.openplanner.team/stops/X995afa"], ["https://tec.openplanner.team/stops/X877aba", "https://tec.openplanner.team/stops/X877aha"], ["https://tec.openplanner.team/stops/N224agc", "https://tec.openplanner.team/stops/X224aga"], ["https://tec.openplanner.team/stops/Lprfoot1", "https://tec.openplanner.team/stops/Lprtour1"], ["https://tec.openplanner.team/stops/N542amb", "https://tec.openplanner.team/stops/N578acb"], ["https://tec.openplanner.team/stops/LsVprum1", "https://tec.openplanner.team/stops/LsVprum4"], ["https://tec.openplanner.team/stops/X640ada", "https://tec.openplanner.team/stops/X641amb"], ["https://tec.openplanner.team/stops/X733aca", "https://tec.openplanner.team/stops/X734apb"], ["https://tec.openplanner.team/stops/LMNswar1", "https://tec.openplanner.team/stops/LMNswar2"], ["https://tec.openplanner.team/stops/X801bua", "https://tec.openplanner.team/stops/X801bva"], ["https://tec.openplanner.team/stops/LBBmc--2", "https://tec.openplanner.team/stops/LBBpech2"], ["https://tec.openplanner.team/stops/N242afa", "https://tec.openplanner.team/stops/N251abb"], ["https://tec.openplanner.team/stops/Borbode1", "https://tec.openplanner.team/stops/Borborb1"], ["https://tec.openplanner.team/stops/X362aba", "https://tec.openplanner.team/stops/X362adb"], ["https://tec.openplanner.team/stops/N547ana", "https://tec.openplanner.team/stops/N553ana"], ["https://tec.openplanner.team/stops/X768abb", "https://tec.openplanner.team/stops/X768aha"], ["https://tec.openplanner.team/stops/Canboha2", "https://tec.openplanner.team/stops/H2an110b"], ["https://tec.openplanner.team/stops/X316aab", "https://tec.openplanner.team/stops/X318aca"], ["https://tec.openplanner.team/stops/LXhjupr1", "https://tec.openplanner.team/stops/LXhjupr4"], ["https://tec.openplanner.team/stops/Canlalu2", "https://tec.openplanner.team/stops/H2an102a"], ["https://tec.openplanner.team/stops/H1mb131a", "https://tec.openplanner.team/stops/H1mb137b"], ["https://tec.openplanner.team/stops/N521aia", "https://tec.openplanner.team/stops/N521aib"], ["https://tec.openplanner.team/stops/H1bo101a", "https://tec.openplanner.team/stops/H1bo106c"], ["https://tec.openplanner.team/stops/Cjucopp1", "https://tec.openplanner.team/stops/Cjucopp2"], ["https://tec.openplanner.team/stops/Cgxfo142", "https://tec.openplanner.team/stops/Cgxvvel2"], ["https://tec.openplanner.team/stops/H1ag107a", "https://tec.openplanner.team/stops/H1ag107b"], ["https://tec.openplanner.team/stops/Bhalcbr1", "https://tec.openplanner.team/stops/Bwaucig1"], ["https://tec.openplanner.team/stops/Lghraul1", "https://tec.openplanner.team/stops/Lghterm*"], ["https://tec.openplanner.team/stops/H1mj132a", "https://tec.openplanner.team/stops/H1ni319a"], ["https://tec.openplanner.team/stops/N516aba", "https://tec.openplanner.team/stops/N516amc"], ["https://tec.openplanner.team/stops/N352afa", "https://tec.openplanner.team/stops/N353aba"], ["https://tec.openplanner.team/stops/H1me115b", "https://tec.openplanner.team/stops/H1mm127b"], ["https://tec.openplanner.team/stops/Ctrepin1", "https://tec.openplanner.team/stops/H2tz120a"], ["https://tec.openplanner.team/stops/LcRmich1", "https://tec.openplanner.team/stops/LrDneun1"], ["https://tec.openplanner.team/stops/X673aba", "https://tec.openplanner.team/stops/X673aea"], ["https://tec.openplanner.team/stops/N501jib", "https://tec.openplanner.team/stops/N501jkb"], ["https://tec.openplanner.team/stops/Lbocruc1", "https://tec.openplanner.team/stops/LPLcarr2"], ["https://tec.openplanner.team/stops/LDmcruc1", "https://tec.openplanner.team/stops/LHFhard1"], ["https://tec.openplanner.team/stops/Cjuhame1", "https://tec.openplanner.team/stops/Craferr1"], ["https://tec.openplanner.team/stops/LFFcouv1", "https://tec.openplanner.team/stops/LFFruel2"], ["https://tec.openplanner.team/stops/H1gi118b", "https://tec.openplanner.team/stops/H1gi121a"], ["https://tec.openplanner.team/stops/LmHumge1", "https://tec.openplanner.team/stops/LmHvenn1"], ["https://tec.openplanner.team/stops/Bsaumlk3", "https://tec.openplanner.team/stops/Bsaumlk4"], ["https://tec.openplanner.team/stops/N552abb", "https://tec.openplanner.team/stops/N568adb"], ["https://tec.openplanner.team/stops/LWacime2", "https://tec.openplanner.team/stops/LWacime4"], ["https://tec.openplanner.team/stops/X615beb", "https://tec.openplanner.team/stops/X616aib"], ["https://tec.openplanner.team/stops/H1sp356a", "https://tec.openplanner.team/stops/H1sp356b"], ["https://tec.openplanner.team/stops/H1eo103a", "https://tec.openplanner.team/stops/H1et101a"], ["https://tec.openplanner.team/stops/LLemonu1", "https://tec.openplanner.team/stops/X547aeb"], ["https://tec.openplanner.team/stops/H1ms257a", "https://tec.openplanner.team/stops/H1ms279b"], ["https://tec.openplanner.team/stops/Ldiinte1", "https://tec.openplanner.team/stops/Ldipost1"], ["https://tec.openplanner.team/stops/H2tr250a", "https://tec.openplanner.team/stops/H2tr256a"], ["https://tec.openplanner.team/stops/LHodomm1", "https://tec.openplanner.team/stops/LHodomm2"], ["https://tec.openplanner.team/stops/Btslcel1", "https://tec.openplanner.team/stops/Btslcel2"], ["https://tec.openplanner.team/stops/N557abb", "https://tec.openplanner.team/stops/N558aja"], ["https://tec.openplanner.team/stops/LTPwann2", "https://tec.openplanner.team/stops/LWn24--1"], ["https://tec.openplanner.team/stops/Lmnmart2", "https://tec.openplanner.team/stops/Lsmjalh2"], ["https://tec.openplanner.team/stops/Lhurouh2", "https://tec.openplanner.team/stops/Lmnrame1"], ["https://tec.openplanner.team/stops/Bmarmco1", "https://tec.openplanner.team/stops/Bmarmco2"], ["https://tec.openplanner.team/stops/LHYlinc1", "https://tec.openplanner.team/stops/LHYlinc4"], ["https://tec.openplanner.team/stops/H4my120b", "https://tec.openplanner.team/stops/H4ws160a"], ["https://tec.openplanner.team/stops/Cfmltas2", "https://tec.openplanner.team/stops/H2tz115a"], ["https://tec.openplanner.team/stops/N132acb", "https://tec.openplanner.team/stops/N135aba"], ["https://tec.openplanner.team/stops/Ccotemp1", "https://tec.openplanner.team/stops/Crodrai1"], ["https://tec.openplanner.team/stops/X609aoa", "https://tec.openplanner.team/stops/X645aba"], ["https://tec.openplanner.team/stops/X547aqa", "https://tec.openplanner.team/stops/X782aea"], ["https://tec.openplanner.team/stops/X926acb", "https://tec.openplanner.team/stops/X945abc"], ["https://tec.openplanner.team/stops/H1po133a", "https://tec.openplanner.team/stops/H1po138b"], ["https://tec.openplanner.team/stops/N349abb", "https://tec.openplanner.team/stops/N351aqa"], ["https://tec.openplanner.team/stops/Bottbou2", "https://tec.openplanner.team/stops/Bottppa4"], ["https://tec.openplanner.team/stops/LPRmc--1", "https://tec.openplanner.team/stops/LPRpeti2"], ["https://tec.openplanner.team/stops/H4lz162a", "https://tec.openplanner.team/stops/H4lz163a"], ["https://tec.openplanner.team/stops/Bgntpla1", "https://tec.openplanner.team/stops/Bsgebou1"], ["https://tec.openplanner.team/stops/H2ll173a", "https://tec.openplanner.team/stops/H2ll179a"], ["https://tec.openplanner.team/stops/Becebju1", "https://tec.openplanner.team/stops/Beceres2"], ["https://tec.openplanner.team/stops/H4ha169a", "https://tec.openplanner.team/stops/H4me211b"], ["https://tec.openplanner.team/stops/LaTcolo1", "https://tec.openplanner.team/stops/LsVfeye1"], ["https://tec.openplanner.team/stops/LCvneuf1", "https://tec.openplanner.team/stops/LCvneuf2"], ["https://tec.openplanner.team/stops/X786aca", "https://tec.openplanner.team/stops/X786acb"], ["https://tec.openplanner.team/stops/Cloauln1", "https://tec.openplanner.team/stops/Clooues1"], ["https://tec.openplanner.team/stops/N120amb", "https://tec.openplanner.team/stops/N244apb"], ["https://tec.openplanner.team/stops/N580ada", "https://tec.openplanner.team/stops/N580aeb"], ["https://tec.openplanner.team/stops/X725aza", "https://tec.openplanner.team/stops/X725bab"], ["https://tec.openplanner.team/stops/LbTmuhl2", "https://tec.openplanner.team/stops/LnIschw2"], ["https://tec.openplanner.team/stops/N565aba", "https://tec.openplanner.team/stops/N565akb"], ["https://tec.openplanner.team/stops/H4ld126a", "https://tec.openplanner.team/stops/H4ld128b"], ["https://tec.openplanner.team/stops/N988aaa", "https://tec.openplanner.team/stops/X989aeb"], ["https://tec.openplanner.team/stops/Bkrabhu1", "https://tec.openplanner.team/stops/Bovesol1"], ["https://tec.openplanner.team/stops/LrcarsT1", "https://tec.openplanner.team/stops/Lrcpaqu2"], ["https://tec.openplanner.team/stops/N537akb", "https://tec.openplanner.team/stops/N557aia"], ["https://tec.openplanner.team/stops/Lsepudd1", "https://tec.openplanner.team/stops/Lsepudd2"], ["https://tec.openplanner.team/stops/H2gy109a", "https://tec.openplanner.team/stops/H2gy109b"], ["https://tec.openplanner.team/stops/Lmaetan*", "https://tec.openplanner.team/stops/Lmapomm1"], ["https://tec.openplanner.team/stops/H4ty275a", "https://tec.openplanner.team/stops/H4ty349a"], ["https://tec.openplanner.team/stops/N508acb", "https://tec.openplanner.team/stops/N508ada"], ["https://tec.openplanner.team/stops/X595aba", "https://tec.openplanner.team/stops/X595aib"], ["https://tec.openplanner.team/stops/H2hg157c", "https://tec.openplanner.team/stops/H2hg265a"], ["https://tec.openplanner.team/stops/Llgegwa1", "https://tec.openplanner.team/stops/Llghugo2"], ["https://tec.openplanner.team/stops/Btslcel2", "https://tec.openplanner.team/stops/Bwlhswc2"], ["https://tec.openplanner.team/stops/H1bu142a", "https://tec.openplanner.team/stops/H1bu142b"], ["https://tec.openplanner.team/stops/Louvand1", "https://tec.openplanner.team/stops/Louvand2"], ["https://tec.openplanner.team/stops/LHMhof-1", "https://tec.openplanner.team/stops/LHMhof-2"], ["https://tec.openplanner.team/stops/LBachpl1", "https://tec.openplanner.team/stops/LBapeup2"], ["https://tec.openplanner.team/stops/X820ahb", "https://tec.openplanner.team/stops/X820aia"], ["https://tec.openplanner.team/stops/N551aab", "https://tec.openplanner.team/stops/N551abb"], ["https://tec.openplanner.team/stops/X746aab", "https://tec.openplanner.team/stops/X746aba"], ["https://tec.openplanner.team/stops/X666ala", "https://tec.openplanner.team/stops/X729abb"], ["https://tec.openplanner.team/stops/Lveanto1", "https://tec.openplanner.team/stops/Lveharm1"], ["https://tec.openplanner.team/stops/N501fra", "https://tec.openplanner.team/stops/N501mwb"], ["https://tec.openplanner.team/stops/N501esz", "https://tec.openplanner.team/stops/N501eua"], ["https://tec.openplanner.team/stops/LLz21--1", "https://tec.openplanner.team/stops/LLzcruc1"], ["https://tec.openplanner.team/stops/Blsmbfe1", "https://tec.openplanner.team/stops/Blsmcha4"], ["https://tec.openplanner.team/stops/LhGadap1", "https://tec.openplanner.team/stops/LhSfrei1"], ["https://tec.openplanner.team/stops/LmNbirt1", "https://tec.openplanner.team/stops/LsC216-2"], ["https://tec.openplanner.team/stops/H4ld125a", "https://tec.openplanner.team/stops/H4ld125b"], ["https://tec.openplanner.team/stops/H1ms283a", "https://tec.openplanner.team/stops/H1ms912a"], ["https://tec.openplanner.team/stops/Cmypela1", "https://tec.openplanner.team/stops/Cmypela2"], ["https://tec.openplanner.team/stops/X839aaa", "https://tec.openplanner.team/stops/X839aab"], ["https://tec.openplanner.team/stops/X601boa", "https://tec.openplanner.team/stops/X601daa"], ["https://tec.openplanner.team/stops/Lanadmi2", "https://tec.openplanner.team/stops/Lloretr2"], ["https://tec.openplanner.team/stops/NH01apa", "https://tec.openplanner.team/stops/NH01apb"], ["https://tec.openplanner.team/stops/Bniveco1", "https://tec.openplanner.team/stops/Bnivlde2"], ["https://tec.openplanner.team/stops/Ccugail1", "https://tec.openplanner.team/stops/Ccusole2"], ["https://tec.openplanner.team/stops/Bhoemel1", "https://tec.openplanner.team/stops/Bhoemel2"], ["https://tec.openplanner.team/stops/Blhunys1", "https://tec.openplanner.team/stops/Blhunys2"], ["https://tec.openplanner.team/stops/Bblafrn1", "https://tec.openplanner.team/stops/Bblafrn2"], ["https://tec.openplanner.team/stops/X790aga", "https://tec.openplanner.team/stops/X790agb"], ["https://tec.openplanner.team/stops/Cfbegli1", "https://tec.openplanner.team/stops/Cfbegli2"], ["https://tec.openplanner.team/stops/H1mm121a", "https://tec.openplanner.team/stops/H1mm126a"], ["https://tec.openplanner.team/stops/Lmncasi2", "https://tec.openplanner.team/stops/Lsmjalh2"], ["https://tec.openplanner.team/stops/Brsgman1", "https://tec.openplanner.team/stops/Brsgman2"], ["https://tec.openplanner.team/stops/N501goa", "https://tec.openplanner.team/stops/N501hyb"], ["https://tec.openplanner.team/stops/N536aeb", "https://tec.openplanner.team/stops/N580aha"], ["https://tec.openplanner.team/stops/N201aeb", "https://tec.openplanner.team/stops/N201asb"], ["https://tec.openplanner.team/stops/X636aub", "https://tec.openplanner.team/stops/X636awb"], ["https://tec.openplanner.team/stops/Cctgaux2", "https://tec.openplanner.team/stops/Cctstro1"], ["https://tec.openplanner.team/stops/N569aic", "https://tec.openplanner.team/stops/N569alb"], ["https://tec.openplanner.team/stops/Cbmgare1", "https://tec.openplanner.team/stops/Cbmviv1"], ["https://tec.openplanner.team/stops/Cnachcu2", "https://tec.openplanner.team/stops/Cnathib1"], ["https://tec.openplanner.team/stops/H2mg136b", "https://tec.openplanner.team/stops/H2mg141a"], ["https://tec.openplanner.team/stops/H1so135a", "https://tec.openplanner.team/stops/H1so136c"], ["https://tec.openplanner.team/stops/X781acb", "https://tec.openplanner.team/stops/X781aga"], ["https://tec.openplanner.team/stops/LAibego2", "https://tec.openplanner.team/stops/LCaresi1"], ["https://tec.openplanner.team/stops/H2le149a", "https://tec.openplanner.team/stops/H2le153b"], ["https://tec.openplanner.team/stops/LBjflor1", "https://tec.openplanner.team/stops/X575agb"], ["https://tec.openplanner.team/stops/LJEchat2", "https://tec.openplanner.team/stops/LJEchat3"], ["https://tec.openplanner.team/stops/Ljubois1", "https://tec.openplanner.team/stops/Ljuprev4"], ["https://tec.openplanner.team/stops/H4lp126a", "https://tec.openplanner.team/stops/H4lp126b"], ["https://tec.openplanner.team/stops/N221acb", "https://tec.openplanner.team/stops/X394aga"], ["https://tec.openplanner.team/stops/H4ab100a", "https://tec.openplanner.team/stops/H4ab100b"], ["https://tec.openplanner.team/stops/LLvferm2", "https://tec.openplanner.team/stops/NL78aeb"], ["https://tec.openplanner.team/stops/X770aga", "https://tec.openplanner.team/stops/X774acb"], ["https://tec.openplanner.team/stops/LPTblan1", "https://tec.openplanner.team/stops/X750asb"], ["https://tec.openplanner.team/stops/H4ld125b", "https://tec.openplanner.team/stops/H4to138a"], ["https://tec.openplanner.team/stops/Clodupr1", "https://tec.openplanner.team/stops/Clojone2"], ["https://tec.openplanner.team/stops/Cfaamio1", "https://tec.openplanner.team/stops/Cfamonu2"], ["https://tec.openplanner.team/stops/X609aka", "https://tec.openplanner.team/stops/X609ama"], ["https://tec.openplanner.team/stops/Cjuhame2", "https://tec.openplanner.team/stops/Cjulamb3"], ["https://tec.openplanner.team/stops/Llgcoll1", "https://tec.openplanner.team/stops/Llgcrev2"], ["https://tec.openplanner.team/stops/Bjodfab2", "https://tec.openplanner.team/stops/Bsjgegl1"], ["https://tec.openplanner.team/stops/LGMdrev1", "https://tec.openplanner.team/stops/LSEquar2"], ["https://tec.openplanner.team/stops/H4wt160a", "https://tec.openplanner.team/stops/H5rx112a"], ["https://tec.openplanner.team/stops/NL74aba", "https://tec.openplanner.team/stops/NL75aba"], ["https://tec.openplanner.team/stops/X804bra", "https://tec.openplanner.team/stops/X804brb"], ["https://tec.openplanner.team/stops/Cplbbro1", "https://tec.openplanner.team/stops/Cplrmon2"], ["https://tec.openplanner.team/stops/H4lh120a", "https://tec.openplanner.team/stops/H4oe147a"], ["https://tec.openplanner.team/stops/N525abb", "https://tec.openplanner.team/stops/N525bab"], ["https://tec.openplanner.team/stops/Bsgipha3", "https://tec.openplanner.team/stops/Buccdch2"], ["https://tec.openplanner.team/stops/LCRabbe1", "https://tec.openplanner.team/stops/LCReg--2"], ["https://tec.openplanner.team/stops/Bnilspe2", "https://tec.openplanner.team/stops/Btsllib1"], ["https://tec.openplanner.team/stops/X601bfb", "https://tec.openplanner.team/stops/X601bhb"], ["https://tec.openplanner.team/stops/N104aka", "https://tec.openplanner.team/stops/N106abb"], ["https://tec.openplanner.team/stops/LLnec--1", "https://tec.openplanner.team/stops/LLnec--2"], ["https://tec.openplanner.team/stops/LBTchai3", "https://tec.openplanner.team/stops/LBTchai4"], ["https://tec.openplanner.team/stops/X824agb", "https://tec.openplanner.team/stops/X824akb"], ["https://tec.openplanner.team/stops/H1cr100a", "https://tec.openplanner.team/stops/H1ry136b"], ["https://tec.openplanner.team/stops/LOlvill1", "https://tec.openplanner.team/stops/LSemc--4"], ["https://tec.openplanner.team/stops/Lsmlina*", "https://tec.openplanner.team/stops/Lsmnico2"], ["https://tec.openplanner.team/stops/N501bra", "https://tec.openplanner.team/stops/N501izb"], ["https://tec.openplanner.team/stops/LBVlamo1", "https://tec.openplanner.team/stops/LLocruc1"], ["https://tec.openplanner.team/stops/Lcejobe1", "https://tec.openplanner.team/stops/Lcejobe2"], ["https://tec.openplanner.team/stops/LAufech1", "https://tec.openplanner.team/stops/LJueg--1"], ["https://tec.openplanner.team/stops/N506atb", "https://tec.openplanner.team/stops/N506bab"], ["https://tec.openplanner.team/stops/X804asa", "https://tec.openplanner.team/stops/X804asb"], ["https://tec.openplanner.team/stops/LRRelec1", "https://tec.openplanner.team/stops/LRRelec2"], ["https://tec.openplanner.team/stops/X904aja", "https://tec.openplanner.team/stops/X904ala"], ["https://tec.openplanner.team/stops/N151aba", "https://tec.openplanner.team/stops/N153abb"], ["https://tec.openplanner.team/stops/H1et100b", "https://tec.openplanner.team/stops/H1et102b"], ["https://tec.openplanner.team/stops/N501cla", "https://tec.openplanner.team/stops/N501coa"], ["https://tec.openplanner.team/stops/LAWaube1", "https://tec.openplanner.team/stops/LHGikea2"], ["https://tec.openplanner.team/stops/Lghmeun1", "https://tec.openplanner.team/stops/Lghmeun4"], ["https://tec.openplanner.team/stops/Blmlgar1", "https://tec.openplanner.team/stops/Blmlmco2"], ["https://tec.openplanner.team/stops/H1ca106b", "https://tec.openplanner.team/stops/H1ca108a"], ["https://tec.openplanner.team/stops/Cfbcal1", "https://tec.openplanner.team/stops/Cfcrdpr1"], ["https://tec.openplanner.team/stops/X897ava", "https://tec.openplanner.team/stops/X897avb"], ["https://tec.openplanner.team/stops/LSseg--2", "https://tec.openplanner.team/stops/N506bwb"], ["https://tec.openplanner.team/stops/LHTboul2", "https://tec.openplanner.team/stops/LHTcarr1"], ["https://tec.openplanner.team/stops/N874ala", "https://tec.openplanner.team/stops/N874alb"], ["https://tec.openplanner.team/stops/Cflchap1", "https://tec.openplanner.team/stops/Cflchap2"], ["https://tec.openplanner.team/stops/LOccarr2", "https://tec.openplanner.team/stops/LOcgdro4"], ["https://tec.openplanner.team/stops/LHCcoul1", "https://tec.openplanner.team/stops/LSuusin2"], ["https://tec.openplanner.team/stops/Bjaugaz1", "https://tec.openplanner.team/stops/Bjaurgo2"], ["https://tec.openplanner.team/stops/H4do103a", "https://tec.openplanner.team/stops/H4do104b"], ["https://tec.openplanner.team/stops/X343ahb", "https://tec.openplanner.team/stops/X344acb"], ["https://tec.openplanner.team/stops/Cbugara1", "https://tec.openplanner.team/stops/N103afa"], ["https://tec.openplanner.team/stops/H4ne131b", "https://tec.openplanner.team/stops/H4te251a"], ["https://tec.openplanner.team/stops/Cgrchea2", "https://tec.openplanner.team/stops/NC14ahb"], ["https://tec.openplanner.team/stops/Cjupuis1", "https://tec.openplanner.team/stops/Cjuvand1"], ["https://tec.openplanner.team/stops/Brsrcha1", "https://tec.openplanner.team/stops/Brsrcha2"], ["https://tec.openplanner.team/stops/Ldijean2", "https://tec.openplanner.team/stops/Ldipiss1"], ["https://tec.openplanner.team/stops/Bixlaca1", "https://tec.openplanner.team/stops/Bixlozo1"], ["https://tec.openplanner.team/stops/Bnivasa2", "https://tec.openplanner.team/stops/Bnivpro1"], ["https://tec.openplanner.team/stops/LMOecsp3", "https://tec.openplanner.team/stops/LMOs45-2"], ["https://tec.openplanner.team/stops/H1do108a", "https://tec.openplanner.team/stops/H1do117a"], ["https://tec.openplanner.team/stops/N506bqa", "https://tec.openplanner.team/stops/N506bqb"], ["https://tec.openplanner.team/stops/Cmcbriq2", "https://tec.openplanner.team/stops/Cmcbriq4"], ["https://tec.openplanner.team/stops/X618aaa", "https://tec.openplanner.team/stops/X618abb"], ["https://tec.openplanner.team/stops/H1em110a", "https://tec.openplanner.team/stops/H1em111a"], ["https://tec.openplanner.team/stops/N161abc", "https://tec.openplanner.team/stops/N161abd"], ["https://tec.openplanner.team/stops/LVPgrot1", "https://tec.openplanner.team/stops/LVPgrot2"], ["https://tec.openplanner.team/stops/Bjaupro2", "https://tec.openplanner.team/stops/Bjaurgo2"], ["https://tec.openplanner.team/stops/LDmdomm1", "https://tec.openplanner.team/stops/LDmeg--1"], ["https://tec.openplanner.team/stops/Cmyland4", "https://tec.openplanner.team/stops/Cmymarb1"], ["https://tec.openplanner.team/stops/Csesabo2", "https://tec.openplanner.team/stops/N425abb"], ["https://tec.openplanner.team/stops/H4ff122a", "https://tec.openplanner.team/stops/H4ff122b"], ["https://tec.openplanner.team/stops/X788aga", "https://tec.openplanner.team/stops/X788aha"], ["https://tec.openplanner.team/stops/N562aka", "https://tec.openplanner.team/stops/N562akb"], ["https://tec.openplanner.team/stops/Cgxptt2", "https://tec.openplanner.team/stops/Cgxvkho1"], ["https://tec.openplanner.team/stops/Blhupri1", "https://tec.openplanner.team/stops/Blhupri2"], ["https://tec.openplanner.team/stops/Bgnttma1", "https://tec.openplanner.team/stops/Bsomjon2"], ["https://tec.openplanner.team/stops/Lemsely1", "https://tec.openplanner.team/stops/Lemsely2"], ["https://tec.openplanner.team/stops/Cchparc2", "https://tec.openplanner.team/stops/Cchvhau1"], ["https://tec.openplanner.team/stops/LFRfagn1", "https://tec.openplanner.team/stops/LFRfagn2"], ["https://tec.openplanner.team/stops/Bnilegl1", "https://tec.openplanner.team/stops/Bnilspe1"], ["https://tec.openplanner.team/stops/H1bs112a", "https://tec.openplanner.team/stops/H1sb148b"], ["https://tec.openplanner.team/stops/LCvneuf2", "https://tec.openplanner.team/stops/LTBeg--1"], ["https://tec.openplanner.team/stops/N519asb", "https://tec.openplanner.team/stops/N525akb"], ["https://tec.openplanner.team/stops/N137aab", "https://tec.openplanner.team/stops/N137aca"], ["https://tec.openplanner.team/stops/X837aib", "https://tec.openplanner.team/stops/X837aka"], ["https://tec.openplanner.team/stops/X982atb", "https://tec.openplanner.team/stops/X982axa"], ["https://tec.openplanner.team/stops/N217aea", "https://tec.openplanner.team/stops/N287aaa"], ["https://tec.openplanner.team/stops/Lvevert4", "https://tec.openplanner.team/stops/Lvexhav1"], ["https://tec.openplanner.team/stops/X994aga", "https://tec.openplanner.team/stops/X994agb"], ["https://tec.openplanner.team/stops/H1fl133e", "https://tec.openplanner.team/stops/H1fl133f"], ["https://tec.openplanner.team/stops/Bohncha1", "https://tec.openplanner.team/stops/Bohncha2"], ["https://tec.openplanner.team/stops/NL76aea", "https://tec.openplanner.team/stops/NL77aba"], ["https://tec.openplanner.team/stops/LLTeg--1", "https://tec.openplanner.team/stops/LLThosd2"], ["https://tec.openplanner.team/stops/H1ba119b", "https://tec.openplanner.team/stops/H1qu104a"], ["https://tec.openplanner.team/stops/Bsomtce1", "https://tec.openplanner.team/stops/N584ada"], ["https://tec.openplanner.team/stops/X650acb", "https://tec.openplanner.team/stops/X650aib"], ["https://tec.openplanner.team/stops/H4mt217a", "https://tec.openplanner.team/stops/H4ru235a"], ["https://tec.openplanner.team/stops/X982ata", "https://tec.openplanner.team/stops/X982baa"], ["https://tec.openplanner.team/stops/N538aya", "https://tec.openplanner.team/stops/N538bba"], ["https://tec.openplanner.team/stops/Ccyfede2", "https://tec.openplanner.team/stops/Cslbhau2"], ["https://tec.openplanner.team/stops/LMXaven1", "https://tec.openplanner.team/stops/LMXroye1"], ["https://tec.openplanner.team/stops/H4co109a", "https://tec.openplanner.team/stops/H4co158a"], ["https://tec.openplanner.team/stops/Bblacea1", "https://tec.openplanner.team/stops/Bblaece1"], ["https://tec.openplanner.team/stops/Lprcard1", "https://tec.openplanner.team/stops/Lprferm1"], ["https://tec.openplanner.team/stops/Cjuledo2", "https://tec.openplanner.team/stops/Cjumall1"], ["https://tec.openplanner.team/stops/N383aca", "https://tec.openplanner.team/stops/N383acb"], ["https://tec.openplanner.team/stops/X801abb", "https://tec.openplanner.team/stops/X898afa"], ["https://tec.openplanner.team/stops/NC23aeb", "https://tec.openplanner.team/stops/NC23aga"], ["https://tec.openplanner.team/stops/Bbsicen2", "https://tec.openplanner.team/stops/Bbsipos1"], ["https://tec.openplanner.team/stops/N558ana", "https://tec.openplanner.team/stops/NL77aba"], ["https://tec.openplanner.team/stops/X601blb", "https://tec.openplanner.team/stops/X602afa"], ["https://tec.openplanner.team/stops/LHUmess1", "https://tec.openplanner.team/stops/LTigera1"], ["https://tec.openplanner.team/stops/N368acb", "https://tec.openplanner.team/stops/N368afb"], ["https://tec.openplanner.team/stops/LnDkreu1", "https://tec.openplanner.team/stops/LwSbrei2"], ["https://tec.openplanner.team/stops/Lmoweri1", "https://tec.openplanner.team/stops/Lmoweri2"], ["https://tec.openplanner.team/stops/Crccano1", "https://tec.openplanner.team/stops/Crcfdom1"], ["https://tec.openplanner.team/stops/N120alb", "https://tec.openplanner.team/stops/N120amb"], ["https://tec.openplanner.team/stops/LAvrout2", "https://tec.openplanner.team/stops/LBUrout1"], ["https://tec.openplanner.team/stops/X954aba", "https://tec.openplanner.team/stops/X954adb"], ["https://tec.openplanner.team/stops/X672ada", "https://tec.openplanner.team/stops/X672aoa"], ["https://tec.openplanner.team/stops/Cgocalv1", "https://tec.openplanner.team/stops/CMcalv2"], ["https://tec.openplanner.team/stops/LHUgole2", "https://tec.openplanner.team/stops/LHUhaum2"], ["https://tec.openplanner.team/stops/H2mo143b", "https://tec.openplanner.team/stops/H2mo144a"], ["https://tec.openplanner.team/stops/N353ahb", "https://tec.openplanner.team/stops/N357ada"], ["https://tec.openplanner.team/stops/Bmalcar2", "https://tec.openplanner.team/stops/Bmalper1"], ["https://tec.openplanner.team/stops/X663alb", "https://tec.openplanner.team/stops/X663ama"], ["https://tec.openplanner.team/stops/Clomakr1", "https://tec.openplanner.team/stops/Clomakr2"], ["https://tec.openplanner.team/stops/H2hg150a", "https://tec.openplanner.team/stops/H2sb257c"], ["https://tec.openplanner.team/stops/X342aaa", "https://tec.openplanner.team/stops/X342aha"], ["https://tec.openplanner.team/stops/LbTaral2", "https://tec.openplanner.team/stops/LnIschw1"], ["https://tec.openplanner.team/stops/X907aga", "https://tec.openplanner.team/stops/X908ara"], ["https://tec.openplanner.team/stops/X354aeb", "https://tec.openplanner.team/stops/X354afa"], ["https://tec.openplanner.team/stops/Bwatgar2", "https://tec.openplanner.team/stops/Bwatrdu1"], ["https://tec.openplanner.team/stops/Blaneli2", "https://tec.openplanner.team/stops/Bwaanwi1"], ["https://tec.openplanner.team/stops/N151abb", "https://tec.openplanner.team/stops/N151aja"], ["https://tec.openplanner.team/stops/Cfrcham1", "https://tec.openplanner.team/stops/Cfrcomp1"], ["https://tec.openplanner.team/stops/X983aaa", "https://tec.openplanner.team/stops/X986asa"], ["https://tec.openplanner.team/stops/H1mk108a", "https://tec.openplanner.team/stops/H1mk117a"], ["https://tec.openplanner.team/stops/X752aab", "https://tec.openplanner.team/stops/X752abb"], ["https://tec.openplanner.team/stops/N522aea", "https://tec.openplanner.team/stops/N522afa"], ["https://tec.openplanner.team/stops/LFPho8a2", "https://tec.openplanner.team/stops/LFPkast2"], ["https://tec.openplanner.team/stops/N501hsb", "https://tec.openplanner.team/stops/N501iea"], ["https://tec.openplanner.team/stops/X955aba", "https://tec.openplanner.team/stops/X955aca"], ["https://tec.openplanner.team/stops/X939aha", "https://tec.openplanner.team/stops/X939ahb"], ["https://tec.openplanner.team/stops/Bwlhpma2", "https://tec.openplanner.team/stops/Bwlhppg1"], ["https://tec.openplanner.team/stops/LBachpl2", "https://tec.openplanner.team/stops/LGogare1"], ["https://tec.openplanner.team/stops/H1bb115a", "https://tec.openplanner.team/stops/H1bo104a"], ["https://tec.openplanner.team/stops/X724afb", "https://tec.openplanner.team/stops/X724aga"], ["https://tec.openplanner.team/stops/Ccocoup1", "https://tec.openplanner.team/stops/Ccocoup2"], ["https://tec.openplanner.team/stops/LCTgare4", "https://tec.openplanner.team/stops/LCTpt--1"], ["https://tec.openplanner.team/stops/LAuchau1", "https://tec.openplanner.team/stops/LSDvill1"], ["https://tec.openplanner.team/stops/Cvpbifu1", "https://tec.openplanner.team/stops/Cvpsthu2"], ["https://tec.openplanner.team/stops/X886afb", "https://tec.openplanner.team/stops/X886aga"], ["https://tec.openplanner.team/stops/Btannda2", "https://tec.openplanner.team/stops/Btanpla1"], ["https://tec.openplanner.team/stops/LLelava1", "https://tec.openplanner.team/stops/X547aaa"], ["https://tec.openplanner.team/stops/NC23aaa", "https://tec.openplanner.team/stops/NC23aab"], ["https://tec.openplanner.team/stops/N245acb", "https://tec.openplanner.team/stops/N340aia"], ["https://tec.openplanner.team/stops/N501kqa", "https://tec.openplanner.team/stops/N501kqb"], ["https://tec.openplanner.team/stops/LAwfans1", "https://tec.openplanner.team/stops/LXoharz3"], ["https://tec.openplanner.team/stops/LkTgutl1", "https://tec.openplanner.team/stops/LkTraer1"], ["https://tec.openplanner.team/stops/LFLcent1", "https://tec.openplanner.team/stops/LSpunio1"], ["https://tec.openplanner.team/stops/LmHbahn2", "https://tec.openplanner.team/stops/LmHumge1"], ["https://tec.openplanner.team/stops/H4os217a", "https://tec.openplanner.team/stops/H4os221b"], ["https://tec.openplanner.team/stops/Bohnrsc1", "https://tec.openplanner.team/stops/Bwatgge2"], ["https://tec.openplanner.team/stops/Bboutry1", "https://tec.openplanner.team/stops/Bbsttab2"], ["https://tec.openplanner.team/stops/LHTbaud2", "https://tec.openplanner.team/stops/LHTcent2"], ["https://tec.openplanner.team/stops/N501epa", "https://tec.openplanner.team/stops/N501epb"], ["https://tec.openplanner.team/stops/N337agb", "https://tec.openplanner.team/stops/N337ahb"], ["https://tec.openplanner.team/stops/LJSec--2", "https://tec.openplanner.team/stops/LTHcent2"], ["https://tec.openplanner.team/stops/N540aca", "https://tec.openplanner.team/stops/N540afb"], ["https://tec.openplanner.team/stops/Brsgges2", "https://tec.openplanner.team/stops/Brsggol2"], ["https://tec.openplanner.team/stops/Bettars1", "https://tec.openplanner.team/stops/Bettars2"], ["https://tec.openplanner.team/stops/H4wn123a", "https://tec.openplanner.team/stops/H4wn129a"], ["https://tec.openplanner.team/stops/Bgntalt2", "https://tec.openplanner.team/stops/Bgntalt3"], ["https://tec.openplanner.team/stops/N584aba", "https://tec.openplanner.team/stops/N584abb"], ["https://tec.openplanner.team/stops/H4ga163b", "https://tec.openplanner.team/stops/H4ha167a"], ["https://tec.openplanner.team/stops/H4ag101b", "https://tec.openplanner.team/stops/H4ag106b"], ["https://tec.openplanner.team/stops/LkRrauw1", "https://tec.openplanner.team/stops/LwR129-1"], ["https://tec.openplanner.team/stops/X783abb", "https://tec.openplanner.team/stops/X783ada"], ["https://tec.openplanner.team/stops/NL76aja", "https://tec.openplanner.team/stops/NL76alc"], ["https://tec.openplanner.team/stops/H2ll176a", "https://tec.openplanner.team/stops/H2sv259b"], ["https://tec.openplanner.team/stops/Bbeaech2", "https://tec.openplanner.team/stops/Bbealou1"], ["https://tec.openplanner.team/stops/H2na133a", "https://tec.openplanner.team/stops/H2na133b"], ["https://tec.openplanner.team/stops/X759ada", "https://tec.openplanner.team/stops/X759aea"], ["https://tec.openplanner.team/stops/LBjvill3", "https://tec.openplanner.team/stops/LLVfour1"], ["https://tec.openplanner.team/stops/H1as101a", "https://tec.openplanner.team/stops/H1as104b"], ["https://tec.openplanner.team/stops/N501eeb", "https://tec.openplanner.team/stops/N501kkb"], ["https://tec.openplanner.team/stops/LVPgrot2", "https://tec.openplanner.team/stops/LVPgrot4"], ["https://tec.openplanner.team/stops/NR21aha", "https://tec.openplanner.team/stops/NR38afa"], ["https://tec.openplanner.team/stops/H4ar173a", "https://tec.openplanner.team/stops/H4ar178b"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/Csurela2"], ["https://tec.openplanner.team/stops/Cluberl1", "https://tec.openplanner.team/stops/Clulidl1"], ["https://tec.openplanner.team/stops/N512aea", "https://tec.openplanner.team/stops/N512ahb"], ["https://tec.openplanner.team/stops/H4wn123b", "https://tec.openplanner.team/stops/H4wn138a"], ["https://tec.openplanner.team/stops/Bnivga32", "https://tec.openplanner.team/stops/Bnivga62"], ["https://tec.openplanner.team/stops/H1pw120a", "https://tec.openplanner.team/stops/H1pw121b"], ["https://tec.openplanner.team/stops/Cobbuze2", "https://tec.openplanner.team/stops/Cobhaut1"], ["https://tec.openplanner.team/stops/LARauto2", "https://tec.openplanner.team/stops/LHAmonu1"], ["https://tec.openplanner.team/stops/N501nca", "https://tec.openplanner.team/stops/N501ncb"], ["https://tec.openplanner.team/stops/H4ty294a", "https://tec.openplanner.team/stops/H4ty382b"], ["https://tec.openplanner.team/stops/NL76aga", "https://tec.openplanner.team/stops/NL76agd"], ["https://tec.openplanner.team/stops/LgRhouf2", "https://tec.openplanner.team/stops/LnUhohe2"], ["https://tec.openplanner.team/stops/N205acb", "https://tec.openplanner.team/stops/N206ada"], ["https://tec.openplanner.team/stops/Blanath1", "https://tec.openplanner.team/stops/LWAbett2"], ["https://tec.openplanner.team/stops/N501dga", "https://tec.openplanner.team/stops/N501jsb"], ["https://tec.openplanner.team/stops/N209aea", "https://tec.openplanner.team/stops/N209aeb"], ["https://tec.openplanner.team/stops/X354aia", "https://tec.openplanner.team/stops/X858aaa"], ["https://tec.openplanner.team/stops/Brebblo2", "https://tec.openplanner.team/stops/Bsteegl1"], ["https://tec.openplanner.team/stops/Bvirfpo1", "https://tec.openplanner.team/stops/Bvirgar1"], ["https://tec.openplanner.team/stops/Bsencen1", "https://tec.openplanner.team/stops/H2se110a"], ["https://tec.openplanner.team/stops/H4mt218b", "https://tec.openplanner.team/stops/H4mt220a"], ["https://tec.openplanner.team/stops/Lcebois1", "https://tec.openplanner.team/stops/Lcepont1"], ["https://tec.openplanner.team/stops/LBImili1", "https://tec.openplanner.team/stops/LVGeg--5"], ["https://tec.openplanner.team/stops/H4fr143a", "https://tec.openplanner.team/stops/H4ma399b"], ["https://tec.openplanner.team/stops/Crofrio2", "https://tec.openplanner.team/stops/Crolema1"], ["https://tec.openplanner.team/stops/Lbrrobe2", "https://tec.openplanner.team/stops/Lgrfrai2"], ["https://tec.openplanner.team/stops/Lstbold2", "https://tec.openplanner.team/stops/Lsteduc2"], ["https://tec.openplanner.team/stops/X850aca", "https://tec.openplanner.team/stops/X850aib"], ["https://tec.openplanner.team/stops/Crcgare1", "https://tec.openplanner.team/stops/NH03afb"], ["https://tec.openplanner.team/stops/Lpebier1", "https://tec.openplanner.team/stops/Lpejonc2"], ["https://tec.openplanner.team/stops/H1mb131b", "https://tec.openplanner.team/stops/H1mb166b"], ["https://tec.openplanner.team/stops/Cdapige2", "https://tec.openplanner.team/stops/CMpige2"], ["https://tec.openplanner.team/stops/H1hw118a", "https://tec.openplanner.team/stops/H1so137b"], ["https://tec.openplanner.team/stops/LRRchen1", "https://tec.openplanner.team/stops/LRRroth2"], ["https://tec.openplanner.team/stops/LmYwall1", "https://tec.openplanner.team/stops/LsVhunn2"], ["https://tec.openplanner.team/stops/Llgbobu1", "https://tec.openplanner.team/stops/Lsnecco1"], ["https://tec.openplanner.team/stops/LMici091", "https://tec.openplanner.team/stops/LMipoti1"], ["https://tec.openplanner.team/stops/LaR1G--2", "https://tec.openplanner.team/stops/LaRkape1"], ["https://tec.openplanner.team/stops/LBAcarr1", "https://tec.openplanner.team/stops/LBAfort2"], ["https://tec.openplanner.team/stops/Lgdmaye2", "https://tec.openplanner.team/stops/LWetrib1"], ["https://tec.openplanner.team/stops/LkEbruc1", "https://tec.openplanner.team/stops/LkEsada1"], ["https://tec.openplanner.team/stops/NC14aaa", "https://tec.openplanner.team/stops/NC24afa"], ["https://tec.openplanner.team/stops/Lgrbell1", "https://tec.openplanner.team/stops/Lgrdemo1"], ["https://tec.openplanner.team/stops/N514aja", "https://tec.openplanner.team/stops/N514ajb"], ["https://tec.openplanner.team/stops/X982ana", "https://tec.openplanner.team/stops/X982byb"], ["https://tec.openplanner.team/stops/X858aeb", "https://tec.openplanner.team/stops/X858afb"], ["https://tec.openplanner.team/stops/Bbiepon2", "https://tec.openplanner.team/stops/Bboncgs1"], ["https://tec.openplanner.team/stops/Lseserv1", "https://tec.openplanner.team/stops/Lseserv4"], ["https://tec.openplanner.team/stops/H1eo103a", "https://tec.openplanner.team/stops/H1ju119b"], ["https://tec.openplanner.team/stops/LHUec--1", "https://tec.openplanner.team/stops/LHUec--2"], ["https://tec.openplanner.team/stops/LGecime2", "https://tec.openplanner.team/stops/LGegrun1"], ["https://tec.openplanner.team/stops/N501kwb", "https://tec.openplanner.team/stops/N501mra"], ["https://tec.openplanner.team/stops/Lfhhoul2", "https://tec.openplanner.team/stops/Lfhmarn1"], ["https://tec.openplanner.team/stops/Lmocail2", "https://tec.openplanner.team/stops/Lmochar2"], ["https://tec.openplanner.team/stops/X651ada", "https://tec.openplanner.team/stops/X651adb"], ["https://tec.openplanner.team/stops/H1bl101a", "https://tec.openplanner.team/stops/H1bl104c"], ["https://tec.openplanner.team/stops/X926adb", "https://tec.openplanner.team/stops/X945adb"], ["https://tec.openplanner.team/stops/LOTcloe1", "https://tec.openplanner.team/stops/LXhvina1"], ["https://tec.openplanner.team/stops/X717aeb", "https://tec.openplanner.team/stops/X717aia"], ["https://tec.openplanner.team/stops/N368aeb", "https://tec.openplanner.team/stops/N368afb"], ["https://tec.openplanner.team/stops/Bbghsta1", "https://tec.openplanner.team/stops/Bbghsta3"], ["https://tec.openplanner.team/stops/N532aba", "https://tec.openplanner.team/stops/N574agb"], ["https://tec.openplanner.team/stops/Bnivbpe2", "https://tec.openplanner.team/stops/Bnivplt2"], ["https://tec.openplanner.team/stops/Lpeathe*", "https://tec.openplanner.team/stops/Lpeeg--1"], ["https://tec.openplanner.team/stops/H1mx122a", "https://tec.openplanner.team/stops/H1mx123a"], ["https://tec.openplanner.team/stops/H4bf105b", "https://tec.openplanner.team/stops/H4bf109a"], ["https://tec.openplanner.team/stops/LHUchpl2", "https://tec.openplanner.team/stops/LHUdeni4"], ["https://tec.openplanner.team/stops/Bblacha1", "https://tec.openplanner.team/stops/Bblaelo1"], ["https://tec.openplanner.team/stops/Ljudeme3", "https://tec.openplanner.team/stops/Ljudeme4"], ["https://tec.openplanner.team/stops/LBdcarr2", "https://tec.openplanner.team/stops/LBdcime2"], ["https://tec.openplanner.team/stops/Bbiecoc2", "https://tec.openplanner.team/stops/Bbiehec1"], ["https://tec.openplanner.team/stops/H2hg153a", "https://tec.openplanner.team/stops/H2sv215b"], ["https://tec.openplanner.team/stops/H5qu143c", "https://tec.openplanner.team/stops/H5qu156d"], ["https://tec.openplanner.team/stops/H4ld127a", "https://tec.openplanner.team/stops/H4ld128b"], ["https://tec.openplanner.team/stops/Lanrois2", "https://tec.openplanner.team/stops/Lrcchar2"], ["https://tec.openplanner.team/stops/Cctecol2", "https://tec.openplanner.team/stops/Cctmine1"], ["https://tec.openplanner.team/stops/N135aeb", "https://tec.openplanner.team/stops/N135aec"], ["https://tec.openplanner.team/stops/N506aka", "https://tec.openplanner.team/stops/N506bxb"], ["https://tec.openplanner.team/stops/LFFchab2", "https://tec.openplanner.team/stops/LFFchal2"], ["https://tec.openplanner.team/stops/H1tl119a", "https://tec.openplanner.team/stops/H1tl119b"], ["https://tec.openplanner.team/stops/N509ada", "https://tec.openplanner.team/stops/N509adb"], ["https://tec.openplanner.team/stops/LrDhind1", "https://tec.openplanner.team/stops/LrDneun1"], ["https://tec.openplanner.team/stops/N524aba", "https://tec.openplanner.team/stops/N524amb"], ["https://tec.openplanner.team/stops/LRMn58-2", "https://tec.openplanner.team/stops/X599afd"], ["https://tec.openplanner.team/stops/N302aeb", "https://tec.openplanner.team/stops/N305aba"], ["https://tec.openplanner.team/stops/H3bi116b", "https://tec.openplanner.team/stops/H3bi117a"], ["https://tec.openplanner.team/stops/N201asb", "https://tec.openplanner.team/stops/N201ata"], ["https://tec.openplanner.team/stops/Bbgerlr1", "https://tec.openplanner.team/stops/Blmldmi2"], ["https://tec.openplanner.team/stops/LhUkape1", "https://tec.openplanner.team/stops/LhUrich2"], ["https://tec.openplanner.team/stops/X654ada", "https://tec.openplanner.team/stops/X654akb"], ["https://tec.openplanner.team/stops/X940aga", "https://tec.openplanner.team/stops/X940ahb"], ["https://tec.openplanner.team/stops/Clsstpi1", "https://tec.openplanner.team/stops/H1ls106a"], ["https://tec.openplanner.team/stops/H2sb231a", "https://tec.openplanner.team/stops/H2sb234b"], ["https://tec.openplanner.team/stops/LNCmada1", "https://tec.openplanner.team/stops/LNCsart1"], ["https://tec.openplanner.team/stops/LOVchen2", "https://tec.openplanner.team/stops/LOVeg--2"], ["https://tec.openplanner.team/stops/Bwaab121", "https://tec.openplanner.team/stops/LWHmath2"], ["https://tec.openplanner.team/stops/N531apa", "https://tec.openplanner.team/stops/N531apb"], ["https://tec.openplanner.team/stops/Ccpblpo2", "https://tec.openplanner.team/stops/Ccpbrun1"], ["https://tec.openplanner.team/stops/H4ty329b", "https://tec.openplanner.team/stops/H4ty336b"], ["https://tec.openplanner.team/stops/H1mr125b", "https://tec.openplanner.team/stops/H1mr126b"], ["https://tec.openplanner.team/stops/H4eq123b", "https://tec.openplanner.team/stops/H4ob124b"], ["https://tec.openplanner.team/stops/N120ala", "https://tec.openplanner.team/stops/N121ahb"], ["https://tec.openplanner.team/stops/X623ada", "https://tec.openplanner.team/stops/X623aeb"], ["https://tec.openplanner.team/stops/NL67aab", "https://tec.openplanner.team/stops/NL67aba"], ["https://tec.openplanner.team/stops/Cmocalv1", "https://tec.openplanner.team/stops/Cmocalv2"], ["https://tec.openplanner.team/stops/N106ana", "https://tec.openplanner.team/stops/N106ara"], ["https://tec.openplanner.team/stops/X542aab", "https://tec.openplanner.team/stops/X750bla"], ["https://tec.openplanner.team/stops/N528acb", "https://tec.openplanner.team/stops/N528ala"], ["https://tec.openplanner.team/stops/Lbobuil2", "https://tec.openplanner.team/stops/Lbotilf2"], ["https://tec.openplanner.team/stops/Landeja1", "https://tec.openplanner.team/stops/Lanegal1"], ["https://tec.openplanner.team/stops/LFCdree1", "https://tec.openplanner.team/stops/LFCdree2"], ["https://tec.openplanner.team/stops/X877aeb", "https://tec.openplanner.team/stops/X877aga"], ["https://tec.openplanner.team/stops/LFPkast1", "https://tec.openplanner.team/stops/LWRferm2"], ["https://tec.openplanner.team/stops/X999aea", "https://tec.openplanner.team/stops/X999aoa"], ["https://tec.openplanner.team/stops/Cfmtrie2", "https://tec.openplanner.team/stops/Cfoperz1"], ["https://tec.openplanner.team/stops/N343ajb", "https://tec.openplanner.team/stops/X345aba"], ["https://tec.openplanner.team/stops/H5qu152a", "https://tec.openplanner.team/stops/H5qu152b"], ["https://tec.openplanner.team/stops/N127bja", "https://tec.openplanner.team/stops/N134ahb"], ["https://tec.openplanner.team/stops/N509aoa", "https://tec.openplanner.team/stops/N509asa"], ["https://tec.openplanner.team/stops/X663awa", "https://tec.openplanner.team/stops/X663axb"], ["https://tec.openplanner.team/stops/H1qy131a", "https://tec.openplanner.team/stops/H1qy131b"], ["https://tec.openplanner.team/stops/H1le121b", "https://tec.openplanner.team/stops/H1le124a"], ["https://tec.openplanner.team/stops/X626aia", "https://tec.openplanner.team/stops/X626aja"], ["https://tec.openplanner.team/stops/X736abb", "https://tec.openplanner.team/stops/X736aca"], ["https://tec.openplanner.team/stops/Bsambra1", "https://tec.openplanner.team/stops/Bsamc7d1"], ["https://tec.openplanner.team/stops/N508aob", "https://tec.openplanner.team/stops/N509aea"], ["https://tec.openplanner.team/stops/H2ll186a", "https://tec.openplanner.team/stops/H2ll198a"], ["https://tec.openplanner.team/stops/Llgcime1", "https://tec.openplanner.team/stops/Llgcoti*"], ["https://tec.openplanner.team/stops/Blnzcar2", "https://tec.openplanner.team/stops/N576aca"], ["https://tec.openplanner.team/stops/X761aaa", "https://tec.openplanner.team/stops/X761aab"], ["https://tec.openplanner.team/stops/LaUn1--3", "https://tec.openplanner.team/stops/LsFcafe1"], ["https://tec.openplanner.team/stops/H3lr120a", "https://tec.openplanner.team/stops/H3lr121a"], ["https://tec.openplanner.team/stops/N117bdc", "https://tec.openplanner.team/stops/N145acb"], ["https://tec.openplanner.team/stops/H4ka187a", "https://tec.openplanner.team/stops/H4ka187b"], ["https://tec.openplanner.team/stops/LPLbiol2", "https://tec.openplanner.team/stops/LPLc65-2"], ["https://tec.openplanner.team/stops/LRmha261", "https://tec.openplanner.team/stops/LRmha262"], ["https://tec.openplanner.team/stops/X725aib", "https://tec.openplanner.team/stops/X727aab"], ["https://tec.openplanner.team/stops/X826acb", "https://tec.openplanner.team/stops/X826add"], ["https://tec.openplanner.team/stops/Cgomerm1", "https://tec.openplanner.team/stops/Cracime1"], ["https://tec.openplanner.team/stops/X801ayb", "https://tec.openplanner.team/stops/X801aza"], ["https://tec.openplanner.team/stops/LLSba9-1", "https://tec.openplanner.team/stops/LLSba9-2"], ["https://tec.openplanner.team/stops/Clrmarl1", "https://tec.openplanner.team/stops/Clrmarl2"], ["https://tec.openplanner.team/stops/X739aca", "https://tec.openplanner.team/stops/X739acb"], ["https://tec.openplanner.team/stops/H1hh111a", "https://tec.openplanner.team/stops/H1hh111b"], ["https://tec.openplanner.team/stops/N501bzb", "https://tec.openplanner.team/stops/N501cab"], ["https://tec.openplanner.team/stops/N141ada", "https://tec.openplanner.team/stops/N141adb"], ["https://tec.openplanner.team/stops/LHTcarr2", "https://tec.openplanner.team/stops/LHTcerc4"], ["https://tec.openplanner.team/stops/H1bl103a", "https://tec.openplanner.team/stops/H1pd142a"], ["https://tec.openplanner.team/stops/X902aba", "https://tec.openplanner.team/stops/X902bcb"], ["https://tec.openplanner.team/stops/X609ada", "https://tec.openplanner.team/stops/X609aea"], ["https://tec.openplanner.team/stops/Bbldgar1", "https://tec.openplanner.team/stops/Bnetegl2"], ["https://tec.openplanner.team/stops/X741alb", "https://tec.openplanner.team/stops/X758akb"], ["https://tec.openplanner.team/stops/H1em106a", "https://tec.openplanner.team/stops/H1fa121a"], ["https://tec.openplanner.team/stops/H4ld123b", "https://tec.openplanner.team/stops/H4ld126b"], ["https://tec.openplanner.team/stops/X641akb", "https://tec.openplanner.team/stops/X641axa"], ["https://tec.openplanner.team/stops/H1fr115a", "https://tec.openplanner.team/stops/H1fr117a"], ["https://tec.openplanner.team/stops/Cmycime1", "https://tec.openplanner.team/stops/Cmyland4"], ["https://tec.openplanner.team/stops/Bhoemel2", "https://tec.openplanner.team/stops/Blhuibm2"], ["https://tec.openplanner.team/stops/LVLbovy2", "https://tec.openplanner.team/stops/LVLmabi2"], ["https://tec.openplanner.team/stops/N501cfc", "https://tec.openplanner.team/stops/N501mpa"], ["https://tec.openplanner.team/stops/H4oe150b", "https://tec.openplanner.team/stops/H4oe151a"], ["https://tec.openplanner.team/stops/X926adb", "https://tec.openplanner.team/stops/X928aaa"], ["https://tec.openplanner.team/stops/N147aab", "https://tec.openplanner.team/stops/N147aba"], ["https://tec.openplanner.team/stops/X806aea", "https://tec.openplanner.team/stops/X806afb"], ["https://tec.openplanner.team/stops/LSGbail1", "https://tec.openplanner.team/stops/LSGcent2"], ["https://tec.openplanner.team/stops/X876acb", "https://tec.openplanner.team/stops/X876aea"], ["https://tec.openplanner.team/stops/H1el133b", "https://tec.openplanner.team/stops/H1el140b"], ["https://tec.openplanner.team/stops/X364aaa", "https://tec.openplanner.team/stops/X371ajb"], ["https://tec.openplanner.team/stops/X921ajb", "https://tec.openplanner.team/stops/X921aka"], ["https://tec.openplanner.team/stops/H4ru241b", "https://tec.openplanner.team/stops/H4ty311b"], ["https://tec.openplanner.team/stops/LWAhart1", "https://tec.openplanner.team/stops/LWAperv1"], ["https://tec.openplanner.team/stops/H4la196b", "https://tec.openplanner.team/stops/H4la199a"], ["https://tec.openplanner.team/stops/H4ce104b", "https://tec.openplanner.team/stops/H4ve132a"], ["https://tec.openplanner.team/stops/H1ms247a", "https://tec.openplanner.team/stops/H1ms935a"], ["https://tec.openplanner.team/stops/Btubind1", "https://tec.openplanner.team/stops/Btubind2"], ["https://tec.openplanner.team/stops/LrDrose3", "https://tec.openplanner.team/stops/LrDrose4"], ["https://tec.openplanner.team/stops/H4hg160b", "https://tec.openplanner.team/stops/H4mv189a"], ["https://tec.openplanner.team/stops/Bfelfde1", "https://tec.openplanner.team/stops/Broncan2"], ["https://tec.openplanner.team/stops/LSpbawe1", "https://tec.openplanner.team/stops/LSpbawe2"], ["https://tec.openplanner.team/stops/LDAcite1", "https://tec.openplanner.team/stops/LRIcite1"], ["https://tec.openplanner.team/stops/X761abb", "https://tec.openplanner.team/stops/X790aib"], ["https://tec.openplanner.team/stops/LSChane2", "https://tec.openplanner.team/stops/LVMchpl2"], ["https://tec.openplanner.team/stops/Cvtmaro1", "https://tec.openplanner.team/stops/Cvtmaro2"], ["https://tec.openplanner.team/stops/LPoewer1", "https://tec.openplanner.team/stops/LPoewer2"], ["https://tec.openplanner.team/stops/H1mv238b", "https://tec.openplanner.team/stops/H1mv240a"], ["https://tec.openplanner.team/stops/X390ala", "https://tec.openplanner.team/stops/X390alb"], ["https://tec.openplanner.team/stops/Bblamsp1", "https://tec.openplanner.team/stops/Bblamsp2"], ["https://tec.openplanner.team/stops/N501ata", "https://tec.openplanner.team/stops/N501atb"], ["https://tec.openplanner.team/stops/Ctupont1", "https://tec.openplanner.team/stops/Ctupont4"], ["https://tec.openplanner.team/stops/LmR50--2", "https://tec.openplanner.team/stops/LmR90--2"], ["https://tec.openplanner.team/stops/X812ajb", "https://tec.openplanner.team/stops/X812beb"], ["https://tec.openplanner.team/stops/Cmmramb1", "https://tec.openplanner.team/stops/Cmysncb1"], ["https://tec.openplanner.team/stops/N116acb", "https://tec.openplanner.team/stops/N151ajf"], ["https://tec.openplanner.team/stops/N501csb", "https://tec.openplanner.team/stops/N501cua"], ["https://tec.openplanner.team/stops/Livcoll1", "https://tec.openplanner.team/stops/Livmoul2"], ["https://tec.openplanner.team/stops/X802ana", "https://tec.openplanner.team/stops/X802aya"], ["https://tec.openplanner.team/stops/X786acb", "https://tec.openplanner.team/stops/X786adb"], ["https://tec.openplanner.team/stops/LETec--2", "https://tec.openplanner.team/stops/LMIcamp2"], ["https://tec.openplanner.team/stops/H4hx110a", "https://tec.openplanner.team/stops/H4hx117a"], ["https://tec.openplanner.team/stops/X669afb", "https://tec.openplanner.team/stops/X669aha"], ["https://tec.openplanner.team/stops/LBThaut2", "https://tec.openplanner.team/stops/Lprmana1"], ["https://tec.openplanner.team/stops/LArmaro1", "https://tec.openplanner.team/stops/X548afb"], ["https://tec.openplanner.team/stops/H5wo127b", "https://tec.openplanner.team/stops/H5wo129a"], ["https://tec.openplanner.team/stops/H1al107a", "https://tec.openplanner.team/stops/H1al146a"], ["https://tec.openplanner.team/stops/Cpcegli1", "https://tec.openplanner.team/stops/Cpcha431"], ["https://tec.openplanner.team/stops/Ckevela1", "https://tec.openplanner.team/stops/Cvstouv1"], ["https://tec.openplanner.team/stops/X801bka", "https://tec.openplanner.team/stops/X801ceb"], ["https://tec.openplanner.team/stops/Llgplop1", "https://tec.openplanner.team/stops/Lvtchpl2"], ["https://tec.openplanner.team/stops/X654aga", "https://tec.openplanner.team/stops/X654alb"], ["https://tec.openplanner.team/stops/Ctrleju2", "https://tec.openplanner.team/stops/Ctrpn1"], ["https://tec.openplanner.team/stops/LLaover3", "https://tec.openplanner.team/stops/LLasta-*"], ["https://tec.openplanner.team/stops/H2ep144b", "https://tec.openplanner.team/stops/H2re175a"], ["https://tec.openplanner.team/stops/H4ry133b", "https://tec.openplanner.team/stops/H4ry140a"], ["https://tec.openplanner.team/stops/NB33ahb", "https://tec.openplanner.team/stops/NB33aib"], ["https://tec.openplanner.team/stops/H1ry135c", "https://tec.openplanner.team/stops/H1ry137b"], ["https://tec.openplanner.team/stops/H2ma208b", "https://tec.openplanner.team/stops/H2sb231b"], ["https://tec.openplanner.team/stops/X804aib", "https://tec.openplanner.team/stops/X804aka"], ["https://tec.openplanner.team/stops/Bjancha1", "https://tec.openplanner.team/stops/Bjancha2"], ["https://tec.openplanner.team/stops/X749aaa", "https://tec.openplanner.team/stops/X749aca"], ["https://tec.openplanner.team/stops/LHuherm2", "https://tec.openplanner.team/stops/LMHcant2"], ["https://tec.openplanner.team/stops/LAYdieu2", "https://tec.openplanner.team/stops/LFLcher2"], ["https://tec.openplanner.team/stops/Ljeegli3", "https://tec.openplanner.team/stops/Ljelexh1"], ["https://tec.openplanner.team/stops/N574aaa", "https://tec.openplanner.team/stops/N574abb"], ["https://tec.openplanner.team/stops/LFocent2", "https://tec.openplanner.team/stops/LFochap1"], ["https://tec.openplanner.team/stops/Bjdscnd2", "https://tec.openplanner.team/stops/Bjodmal2"], ["https://tec.openplanner.team/stops/H1vt192b", "https://tec.openplanner.team/stops/H1vt193a"], ["https://tec.openplanner.team/stops/H4eg104a", "https://tec.openplanner.team/stops/H4eg104b"], ["https://tec.openplanner.team/stops/LNCchau2", "https://tec.openplanner.team/stops/LNCmoul1"], ["https://tec.openplanner.team/stops/H1br120a", "https://tec.openplanner.team/stops/H1br120b"], ["https://tec.openplanner.team/stops/X922aga", "https://tec.openplanner.team/stops/X922aia"], ["https://tec.openplanner.team/stops/Cgyblob2", "https://tec.openplanner.team/stops/Cgyplvi2"], ["https://tec.openplanner.team/stops/N544agb", "https://tec.openplanner.team/stops/N547ala"], ["https://tec.openplanner.team/stops/LBLgobc1", "https://tec.openplanner.team/stops/LMotrem1"], ["https://tec.openplanner.team/stops/Cjualed1", "https://tec.openplanner.team/stops/Cjubrul4"], ["https://tec.openplanner.team/stops/LOUvign1", "https://tec.openplanner.team/stops/Lvieg--2"], ["https://tec.openplanner.team/stops/Cmgtour2", "https://tec.openplanner.team/stops/Csecroi2"], ["https://tec.openplanner.team/stops/H1mb130b", "https://tec.openplanner.team/stops/H1mx123b"], ["https://tec.openplanner.team/stops/N423aca", "https://tec.openplanner.team/stops/N423aeb"], ["https://tec.openplanner.team/stops/X601aia", "https://tec.openplanner.team/stops/X601ama"], ["https://tec.openplanner.team/stops/N423afb", "https://tec.openplanner.team/stops/NH21aha"], ["https://tec.openplanner.team/stops/Beclpma1", "https://tec.openplanner.team/stops/Beclpma2"], ["https://tec.openplanner.team/stops/Lvicitw1", "https://tec.openplanner.team/stops/Lvicitw2"], ["https://tec.openplanner.team/stops/N139aab", "https://tec.openplanner.team/stops/N139adb"], ["https://tec.openplanner.team/stops/H4ga161a", "https://tec.openplanner.team/stops/H4ga161d"], ["https://tec.openplanner.team/stops/Bettgar1", "https://tec.openplanner.team/stops/Bixlozo1"], ["https://tec.openplanner.team/stops/NL76apb", "https://tec.openplanner.team/stops/NL80avb"], ["https://tec.openplanner.team/stops/Bpieh172", "https://tec.openplanner.team/stops/Bpiehvi2"], ["https://tec.openplanner.team/stops/N301abd", "https://tec.openplanner.team/stops/N301apa"], ["https://tec.openplanner.team/stops/X822aeb", "https://tec.openplanner.team/stops/X822aka"], ["https://tec.openplanner.team/stops/N141aia", "https://tec.openplanner.team/stops/N141anb"], ["https://tec.openplanner.team/stops/LGLchap3", "https://tec.openplanner.team/stops/LGLobor1"], ["https://tec.openplanner.team/stops/Cjubert1", "https://tec.openplanner.team/stops/Cjudelv4"], ["https://tec.openplanner.team/stops/X806aha", "https://tec.openplanner.team/stops/X873aba"], ["https://tec.openplanner.team/stops/LOljean1", "https://tec.openplanner.team/stops/LVTforg1"], ["https://tec.openplanner.team/stops/H4ta122b", "https://tec.openplanner.team/stops/H4ta131b"], ["https://tec.openplanner.team/stops/Bettlha2", "https://tec.openplanner.team/stops/Bixleix1"], ["https://tec.openplanner.team/stops/X888adb", "https://tec.openplanner.team/stops/X897afa"], ["https://tec.openplanner.team/stops/H1hr120a", "https://tec.openplanner.team/stops/H1hr129a"], ["https://tec.openplanner.team/stops/Ccucora2", "https://tec.openplanner.team/stops/Cmtproc2"], ["https://tec.openplanner.team/stops/X982aia", "https://tec.openplanner.team/stops/X982aib"], ["https://tec.openplanner.team/stops/N501iba", "https://tec.openplanner.team/stops/N501ijb"], ["https://tec.openplanner.team/stops/Lvefran1", "https://tec.openplanner.team/stops/Lvethea2"], ["https://tec.openplanner.team/stops/N149aga", "https://tec.openplanner.team/stops/N154ada"], ["https://tec.openplanner.team/stops/N534bwa", "https://tec.openplanner.team/stops/N534bxb"], ["https://tec.openplanner.team/stops/X646ada", "https://tec.openplanner.team/stops/X823agb"], ["https://tec.openplanner.team/stops/Lgrchar1", "https://tec.openplanner.team/stops/Lgrcoll1"], ["https://tec.openplanner.team/stops/LDmdegi2", "https://tec.openplanner.team/stops/LDmeg--2"], ["https://tec.openplanner.team/stops/N153ada", "https://tec.openplanner.team/stops/N154aaa"], ["https://tec.openplanner.team/stops/Cmbborn2", "https://tec.openplanner.team/stops/Cmbcime3"], ["https://tec.openplanner.team/stops/N534bba", "https://tec.openplanner.team/stops/N534bbb"], ["https://tec.openplanner.team/stops/Bottcli1", "https://tec.openplanner.team/stops/Bottra91"], ["https://tec.openplanner.team/stops/Blmlcle2", "https://tec.openplanner.team/stops/Blmlmco1"], ["https://tec.openplanner.team/stops/H1je367a", "https://tec.openplanner.team/stops/H1je368a"], ["https://tec.openplanner.team/stops/N508aca", "https://tec.openplanner.team/stops/N516aqa"], ["https://tec.openplanner.team/stops/N531aja", "https://tec.openplanner.team/stops/N534blh"], ["https://tec.openplanner.team/stops/X640aka", "https://tec.openplanner.team/stops/X640ala"], ["https://tec.openplanner.team/stops/Cmtcapi2", "https://tec.openplanner.team/stops/Cmtplac8"], ["https://tec.openplanner.team/stops/X715adb", "https://tec.openplanner.team/stops/X715aqb"], ["https://tec.openplanner.team/stops/Llgrome1", "https://tec.openplanner.team/stops/Llgtill2"], ["https://tec.openplanner.team/stops/LHdkenn2", "https://tec.openplanner.team/stops/LVtvalu1"], ["https://tec.openplanner.team/stops/N542ada", "https://tec.openplanner.team/stops/N577afb"], ["https://tec.openplanner.team/stops/LSpogne2", "https://tec.openplanner.team/stops/LSpvanr2"], ["https://tec.openplanner.team/stops/H4ef109b", "https://tec.openplanner.team/stops/H4ef110a"], ["https://tec.openplanner.team/stops/Cchba01", "https://tec.openplanner.team/stops/Cchmonu3"], ["https://tec.openplanner.team/stops/X636bba", "https://tec.openplanner.team/stops/X636beb"], ["https://tec.openplanner.team/stops/X618acb", "https://tec.openplanner.team/stops/X618adb"], ["https://tec.openplanner.team/stops/LRfbeau2", "https://tec.openplanner.team/stops/LRffroi2"], ["https://tec.openplanner.team/stops/X882aaa", "https://tec.openplanner.team/stops/X898aeb"], ["https://tec.openplanner.team/stops/Ccuhsti2", "https://tec.openplanner.team/stops/Cpllimi5"], ["https://tec.openplanner.team/stops/Bcseaba1", "https://tec.openplanner.team/stops/Bottvtc1"], ["https://tec.openplanner.team/stops/LWAbeec1", "https://tec.openplanner.team/stops/LWAwila1"], ["https://tec.openplanner.team/stops/H2tr252a", "https://tec.openplanner.team/stops/H2tr252b"], ["https://tec.openplanner.team/stops/Cbicamp1", "https://tec.openplanner.team/stops/Cbiseur1"], ["https://tec.openplanner.team/stops/X618ajb", "https://tec.openplanner.team/stops/X618akb"], ["https://tec.openplanner.team/stops/X789acb", "https://tec.openplanner.team/stops/X789ada"], ["https://tec.openplanner.team/stops/Llgmass1", "https://tec.openplanner.team/stops/Llgmass2"], ["https://tec.openplanner.team/stops/N120anb", "https://tec.openplanner.team/stops/N248abb"], ["https://tec.openplanner.team/stops/LrDsage1", "https://tec.openplanner.team/stops/LrDsage2"], ["https://tec.openplanner.team/stops/Bjaupro1", "https://tec.openplanner.team/stops/Bjaurgo2"], ["https://tec.openplanner.team/stops/X615axa", "https://tec.openplanner.team/stops/X615axb"], ["https://tec.openplanner.team/stops/Ljufler2", "https://tec.openplanner.team/stops/Ljuroch1"], ["https://tec.openplanner.team/stops/Lvcbasi*", "https://tec.openplanner.team/stops/Lvcsapi2"], ["https://tec.openplanner.team/stops/X607agb", "https://tec.openplanner.team/stops/X607aka"], ["https://tec.openplanner.team/stops/Bplnbal1", "https://tec.openplanner.team/stops/Clpalli1"], ["https://tec.openplanner.team/stops/LSJgrae1", "https://tec.openplanner.team/stops/LWRferm2"], ["https://tec.openplanner.team/stops/LCxc6191", "https://tec.openplanner.team/stops/LCxc6192"], ["https://tec.openplanner.team/stops/H4ft134b", "https://tec.openplanner.team/stops/H4ta118a"], ["https://tec.openplanner.team/stops/LJedonc1", "https://tec.openplanner.team/stops/LJedonc3"], ["https://tec.openplanner.team/stops/H2hp121a", "https://tec.openplanner.team/stops/H2hp121b"], ["https://tec.openplanner.team/stops/LSsmond2", "https://tec.openplanner.team/stops/LSssurl1"], ["https://tec.openplanner.team/stops/LETeg--1", "https://tec.openplanner.team/stops/LETtemp1"], ["https://tec.openplanner.team/stops/H1wi152c", "https://tec.openplanner.team/stops/H1wi157b"], ["https://tec.openplanner.team/stops/Cjumarc1", "https://tec.openplanner.team/stops/Cjumarc2"], ["https://tec.openplanner.team/stops/N501fab", "https://tec.openplanner.team/stops/N501mrb"], ["https://tec.openplanner.team/stops/Cmahotv1", "https://tec.openplanner.team/stops/Cmazsnc2"], ["https://tec.openplanner.team/stops/N116aea", "https://tec.openplanner.team/stops/N118avb"], ["https://tec.openplanner.team/stops/LsHthom1", "https://tec.openplanner.team/stops/LsHthom2"], ["https://tec.openplanner.team/stops/Bwatprp1", "https://tec.openplanner.team/stops/Bwatprp2"], ["https://tec.openplanner.team/stops/N576aab", "https://tec.openplanner.team/stops/N576agb"], ["https://tec.openplanner.team/stops/Lfhtrca2", "https://tec.openplanner.team/stops/Lfhtrxc*"], ["https://tec.openplanner.team/stops/NH01aeb", "https://tec.openplanner.team/stops/NH01akb"], ["https://tec.openplanner.team/stops/LRR2egl1", "https://tec.openplanner.team/stops/LRRelec2"], ["https://tec.openplanner.team/stops/X667aea", "https://tec.openplanner.team/stops/X667aeb"], ["https://tec.openplanner.team/stops/H1er106a", "https://tec.openplanner.team/stops/H1er107a"], ["https://tec.openplanner.team/stops/X991agb", "https://tec.openplanner.team/stops/X991aha"], ["https://tec.openplanner.team/stops/LAmab752", "https://tec.openplanner.team/stops/LAmeclu1"], ["https://tec.openplanner.team/stops/Bllnfla2", "https://tec.openplanner.team/stops/Bwavtas3"], ["https://tec.openplanner.team/stops/Bblager1", "https://tec.openplanner.team/stops/Bblaniv1"], ["https://tec.openplanner.team/stops/Bbchcbl2", "https://tec.openplanner.team/stops/Bbchndb1"], ["https://tec.openplanner.team/stops/X620aaa", "https://tec.openplanner.team/stops/X620aga"], ["https://tec.openplanner.team/stops/LSPastr1", "https://tec.openplanner.team/stops/LSProya2"], ["https://tec.openplanner.team/stops/Bhevgro1", "https://tec.openplanner.team/stops/Bleunaa2"], ["https://tec.openplanner.team/stops/LWAalou1", "https://tec.openplanner.team/stops/LWAalou2"], ["https://tec.openplanner.team/stops/H4ce101b", "https://tec.openplanner.team/stops/H4ce104a"], ["https://tec.openplanner.team/stops/X657aja", "https://tec.openplanner.team/stops/X657ajb"], ["https://tec.openplanner.team/stops/LWHwaas1", "https://tec.openplanner.team/stops/LWscona2"], ["https://tec.openplanner.team/stops/N513bha", "https://tec.openplanner.team/stops/N513bhb"], ["https://tec.openplanner.team/stops/N554aea", "https://tec.openplanner.team/stops/N566aea"], ["https://tec.openplanner.team/stops/X802afa", "https://tec.openplanner.team/stops/X802ahb"], ["https://tec.openplanner.team/stops/X908aha", "https://tec.openplanner.team/stops/X910aab"], ["https://tec.openplanner.team/stops/LFfeg--1", "https://tec.openplanner.team/stops/Lmaelhe1"], ["https://tec.openplanner.team/stops/X796aha", "https://tec.openplanner.team/stops/X796aib"], ["https://tec.openplanner.team/stops/LrEkreu2", "https://tec.openplanner.team/stops/LrErauw2"], ["https://tec.openplanner.team/stops/N230aib", "https://tec.openplanner.team/stops/N242agb"], ["https://tec.openplanner.team/stops/X921apa", "https://tec.openplanner.team/stops/X921aqb"], ["https://tec.openplanner.team/stops/H1hw125b", "https://tec.openplanner.team/stops/H1so139d"], ["https://tec.openplanner.team/stops/LLrbano2", "https://tec.openplanner.team/stops/LLrbuis1"], ["https://tec.openplanner.team/stops/LPRmc--3", "https://tec.openplanner.team/stops/LPRmc--4"], ["https://tec.openplanner.team/stops/Cgomerm4", "https://tec.openplanner.team/stops/Craplac3"], ["https://tec.openplanner.team/stops/H2sb227b", "https://tec.openplanner.team/stops/H2sb259a"], ["https://tec.openplanner.team/stops/X650afc", "https://tec.openplanner.team/stops/X650aha"], ["https://tec.openplanner.team/stops/N548aha", "https://tec.openplanner.team/stops/N548aia"], ["https://tec.openplanner.team/stops/N521aoa", "https://tec.openplanner.team/stops/N521apa"], ["https://tec.openplanner.team/stops/Bkrawil1", "https://tec.openplanner.team/stops/Bleunaa1"], ["https://tec.openplanner.team/stops/Lhrlalo1", "https://tec.openplanner.team/stops/Lhrlamb1"], ["https://tec.openplanner.team/stops/X888abb", "https://tec.openplanner.team/stops/X899aaa"], ["https://tec.openplanner.team/stops/Lkiecol1", "https://tec.openplanner.team/stops/Llgtill2"], ["https://tec.openplanner.team/stops/LHNhall3", "https://tec.openplanner.team/stops/LHNwaut2"], ["https://tec.openplanner.team/stops/X804afa", "https://tec.openplanner.team/stops/X804bfb"], ["https://tec.openplanner.team/stops/N501ica", "https://tec.openplanner.team/stops/N501ipa"], ["https://tec.openplanner.team/stops/X626aha", "https://tec.openplanner.team/stops/X626aib"], ["https://tec.openplanner.team/stops/LhEtivo2", "https://tec.openplanner.team/stops/LlNbusc2"], ["https://tec.openplanner.team/stops/N539asb", "https://tec.openplanner.team/stops/N539beb"], ["https://tec.openplanner.team/stops/Bmrlsau2", "https://tec.openplanner.team/stops/Bpieh172"], ["https://tec.openplanner.team/stops/LLt43--2", "https://tec.openplanner.team/stops/LVsboug2"], ["https://tec.openplanner.team/stops/H1eu102a", "https://tec.openplanner.team/stops/H1pa106b"], ["https://tec.openplanner.team/stops/H4ka182b", "https://tec.openplanner.team/stops/H4ka195a"], ["https://tec.openplanner.team/stops/N520acb", "https://tec.openplanner.team/stops/N520adb"], ["https://tec.openplanner.team/stops/LOucarr1", "https://tec.openplanner.team/stops/LOucarr3"], ["https://tec.openplanner.team/stops/H1ev113a", "https://tec.openplanner.team/stops/H1ev116a"], ["https://tec.openplanner.team/stops/N536aob", "https://tec.openplanner.team/stops/N562aob"], ["https://tec.openplanner.team/stops/Clddeve2", "https://tec.openplanner.team/stops/Cldvign2"], ["https://tec.openplanner.team/stops/LmNbirt1", "https://tec.openplanner.team/stops/LmNkirc1"], ["https://tec.openplanner.team/stops/H4av100b", "https://tec.openplanner.team/stops/H4av107a"], ["https://tec.openplanner.team/stops/Bhmmcim1", "https://tec.openplanner.team/stops/Bhmmmon2"], ["https://tec.openplanner.team/stops/H4co108a", "https://tec.openplanner.team/stops/H4co146a"], ["https://tec.openplanner.team/stops/Lwapont1", "https://tec.openplanner.team/stops/Lwapont2"], ["https://tec.openplanner.team/stops/Lsecast1", "https://tec.openplanner.team/stops/Lsehtsa1"], ["https://tec.openplanner.team/stops/X741aea", "https://tec.openplanner.team/stops/X741afb"], ["https://tec.openplanner.team/stops/X351aca", "https://tec.openplanner.team/stops/X351acb"], ["https://tec.openplanner.team/stops/Bblaast2", "https://tec.openplanner.team/stops/Bblagar5"], ["https://tec.openplanner.team/stops/LLYcham1", "https://tec.openplanner.team/stops/LLYcham2"], ["https://tec.openplanner.team/stops/Bgermco1", "https://tec.openplanner.team/stops/NB33afa"], ["https://tec.openplanner.team/stops/Lmolama1", "https://tec.openplanner.team/stops/Lmovand4"], ["https://tec.openplanner.team/stops/LJAhanq1", "https://tec.openplanner.team/stops/LJAhanq3"], ["https://tec.openplanner.team/stops/N311afa", "https://tec.openplanner.team/stops/N311afb"], ["https://tec.openplanner.team/stops/N563aoa", "https://tec.openplanner.team/stops/N570acb"], ["https://tec.openplanner.team/stops/LBKmoes2", "https://tec.openplanner.team/stops/LBvviem3"], ["https://tec.openplanner.team/stops/Bnivath1", "https://tec.openplanner.team/stops/Bnivver2"], ["https://tec.openplanner.team/stops/N501eea", "https://tec.openplanner.team/stops/N501evb"], ["https://tec.openplanner.team/stops/Cmyoasi2", "https://tec.openplanner.team/stops/Cmyvesa2"], ["https://tec.openplanner.team/stops/Canrtth1", "https://tec.openplanner.team/stops/Cfosurs1"], ["https://tec.openplanner.team/stops/N218aea", "https://tec.openplanner.team/stops/N245acb"], ["https://tec.openplanner.team/stops/Cfocmed1", "https://tec.openplanner.team/stops/Cfocorn1"], ["https://tec.openplanner.team/stops/LVnourt3", "https://tec.openplanner.team/stops/LVnrock2"], ["https://tec.openplanner.team/stops/LOeelbe1", "https://tec.openplanner.team/stops/LOewaut1"], ["https://tec.openplanner.team/stops/X825aab", "https://tec.openplanner.team/stops/X825aba"], ["https://tec.openplanner.team/stops/H4og208b", "https://tec.openplanner.team/stops/H4og214b"], ["https://tec.openplanner.team/stops/Cmtcapi1", "https://tec.openplanner.team/stops/Cmtcapi2"], ["https://tec.openplanner.team/stops/Caiegli1", "https://tec.openplanner.team/stops/N554aab"], ["https://tec.openplanner.team/stops/Lcehipp1", "https://tec.openplanner.team/stops/Lcemeta1"], ["https://tec.openplanner.team/stops/LFTec--3", "https://tec.openplanner.team/stops/LTNsarl1"], ["https://tec.openplanner.team/stops/N501aca", "https://tec.openplanner.team/stops/N501aea"], ["https://tec.openplanner.team/stops/N538aba", "https://tec.openplanner.team/stops/N538abb"], ["https://tec.openplanner.team/stops/N519arb", "https://tec.openplanner.team/stops/N519asb"], ["https://tec.openplanner.team/stops/H2mo117a", "https://tec.openplanner.team/stops/H2mo117b"], ["https://tec.openplanner.team/stops/X941afa", "https://tec.openplanner.team/stops/X949ala"], ["https://tec.openplanner.team/stops/Bhengri2", "https://tec.openplanner.team/stops/Bvirpla1"], ["https://tec.openplanner.team/stops/NC24afa", "https://tec.openplanner.team/stops/NC24aga"], ["https://tec.openplanner.team/stops/Cmcegli1", "https://tec.openplanner.team/stops/Cmcegli2"], ["https://tec.openplanner.team/stops/Llgcong2", "https://tec.openplanner.team/stops/Llgfred1"], ["https://tec.openplanner.team/stops/X945aea", "https://tec.openplanner.team/stops/X948aba"], ["https://tec.openplanner.team/stops/LCsbors2", "https://tec.openplanner.team/stops/LCsgend2"], ["https://tec.openplanner.team/stops/X754ada", "https://tec.openplanner.team/stops/X754aob"], ["https://tec.openplanner.team/stops/X615aza", "https://tec.openplanner.team/stops/X616aja"], ["https://tec.openplanner.team/stops/Csoperi1", "https://tec.openplanner.team/stops/Csoplac2"], ["https://tec.openplanner.team/stops/H1mk107a", "https://tec.openplanner.team/stops/H1mk112a"], ["https://tec.openplanner.team/stops/N385aba", "https://tec.openplanner.team/stops/N385abb"], ["https://tec.openplanner.team/stops/Cradado2", "https://tec.openplanner.team/stops/Crajasm4"], ["https://tec.openplanner.team/stops/LAyegli2", "https://tec.openplanner.team/stops/LSOtheu1"], ["https://tec.openplanner.team/stops/Cchsud03", "https://tec.openplanner.team/stops/Cmlvpla1"], ["https://tec.openplanner.team/stops/LHFec--1", "https://tec.openplanner.team/stops/LJedonc1"], ["https://tec.openplanner.team/stops/N137aba", "https://tec.openplanner.team/stops/N137acb"], ["https://tec.openplanner.team/stops/H2ma209a", "https://tec.openplanner.team/stops/H2ma210a"], ["https://tec.openplanner.team/stops/Blinbru2", "https://tec.openplanner.team/stops/Blindel3"], ["https://tec.openplanner.team/stops/H1go169a", "https://tec.openplanner.team/stops/H1mb137b"], ["https://tec.openplanner.team/stops/LRRecdu1", "https://tec.openplanner.team/stops/LRReg--1"], ["https://tec.openplanner.team/stops/LBIfore1", "https://tec.openplanner.team/stops/Lghfore1"], ["https://tec.openplanner.team/stops/X718aba", "https://tec.openplanner.team/stops/X718abb"], ["https://tec.openplanner.team/stops/X641afc", "https://tec.openplanner.team/stops/X641aoa"], ["https://tec.openplanner.team/stops/Btubegy2", "https://tec.openplanner.team/stops/Btubpir2"], ["https://tec.openplanner.team/stops/Cgzlera2", "https://tec.openplanner.team/stops/Cmyecur2"], ["https://tec.openplanner.team/stops/N534bma", "https://tec.openplanner.team/stops/N534bra"], ["https://tec.openplanner.team/stops/H1gr113b", "https://tec.openplanner.team/stops/H1hr126a"], ["https://tec.openplanner.team/stops/Lgrlimi3", "https://tec.openplanner.team/stops/Llgmulh2"], ["https://tec.openplanner.team/stops/N117baa", "https://tec.openplanner.team/stops/N147adb"], ["https://tec.openplanner.team/stops/X902afc", "https://tec.openplanner.team/stops/X902bca"], ["https://tec.openplanner.team/stops/Cctpass2", "https://tec.openplanner.team/stops/Cctvict1"], ["https://tec.openplanner.team/stops/Bwatfva2", "https://tec.openplanner.team/stops/Bwatprp1"], ["https://tec.openplanner.team/stops/LBKmare2", "https://tec.openplanner.team/stops/LPUlecl1"], ["https://tec.openplanner.team/stops/Bezebru2", "https://tec.openplanner.team/stops/Blanath1"], ["https://tec.openplanner.team/stops/Bvxgegl1", "https://tec.openplanner.team/stops/Bvxgegl2"], ["https://tec.openplanner.team/stops/X626agb", "https://tec.openplanner.team/stops/X688abb"], ["https://tec.openplanner.team/stops/LMYroin1", "https://tec.openplanner.team/stops/LMYroin2"], ["https://tec.openplanner.team/stops/Csyjumo1", "https://tec.openplanner.team/stops/Csystan1"], ["https://tec.openplanner.team/stops/X758aka", "https://tec.openplanner.team/stops/X758akb"], ["https://tec.openplanner.team/stops/X641ama", "https://tec.openplanner.team/stops/X673aaa"], ["https://tec.openplanner.team/stops/Lhelait2", "https://tec.openplanner.team/stops/Lheneuv1"], ["https://tec.openplanner.team/stops/LGlwarf1", "https://tec.openplanner.team/stops/LSBsere1"], ["https://tec.openplanner.team/stops/LmDdenk2", "https://tec.openplanner.team/stops/LwLkirc1"], ["https://tec.openplanner.team/stops/X850adb", "https://tec.openplanner.team/stops/X850alb"], ["https://tec.openplanner.team/stops/LCPcomp1", "https://tec.openplanner.team/stops/LGmcite1"], ["https://tec.openplanner.team/stops/LHhchau1", "https://tec.openplanner.team/stops/LHhchau2"], ["https://tec.openplanner.team/stops/LPRfond2", "https://tec.openplanner.team/stops/LPRpeti2"], ["https://tec.openplanner.team/stops/LRReg--1", "https://tec.openplanner.team/stops/LRRpost2"], ["https://tec.openplanner.team/stops/H4og214a", "https://tec.openplanner.team/stops/H4og215b"], ["https://tec.openplanner.team/stops/Barqpwa1", "https://tec.openplanner.team/stops/Barqres2"], ["https://tec.openplanner.team/stops/H1je218b", "https://tec.openplanner.team/stops/H1ms930a"], ["https://tec.openplanner.team/stops/H1on128b", "https://tec.openplanner.team/stops/H1on129a"], ["https://tec.openplanner.team/stops/N550abe", "https://tec.openplanner.team/stops/N550aca"], ["https://tec.openplanner.team/stops/Bbsihau1", "https://tec.openplanner.team/stops/Bbsihau2"], ["https://tec.openplanner.team/stops/LAyheid2", "https://tec.openplanner.team/stops/LPRbayb1"], ["https://tec.openplanner.team/stops/Lghpier1", "https://tec.openplanner.team/stops/Lghterm*"], ["https://tec.openplanner.team/stops/Bchgpap1", "https://tec.openplanner.team/stops/Bchgpap2"], ["https://tec.openplanner.team/stops/LARparc2", "https://tec.openplanner.team/stops/LRIcent2"], ["https://tec.openplanner.team/stops/H1mj123a", "https://tec.openplanner.team/stops/H1mj132b"], ["https://tec.openplanner.team/stops/X727ada", "https://tec.openplanner.team/stops/X746aab"], ["https://tec.openplanner.team/stops/LVNleco1", "https://tec.openplanner.team/stops/LVNroua2"], ["https://tec.openplanner.team/stops/LTrgibe1", "https://tec.openplanner.team/stops/LTrgibe2"], ["https://tec.openplanner.team/stops/N229asb", "https://tec.openplanner.team/stops/N230aba"], ["https://tec.openplanner.team/stops/NL74aad", "https://tec.openplanner.team/stops/NL74abb"], ["https://tec.openplanner.team/stops/N894aea", "https://tec.openplanner.team/stops/N894agc"], ["https://tec.openplanner.team/stops/X652afc", "https://tec.openplanner.team/stops/X652aja"], ["https://tec.openplanner.team/stops/H4hx111b", "https://tec.openplanner.team/stops/H4hx112b"], ["https://tec.openplanner.team/stops/Cmychau1", "https://tec.openplanner.team/stops/Cmypast1"], ["https://tec.openplanner.team/stops/Lgrmagd1", "https://tec.openplanner.team/stops/Lgrmagd2"], ["https://tec.openplanner.team/stops/LdUkreu1", "https://tec.openplanner.team/stops/LdUkreu3"], ["https://tec.openplanner.team/stops/H1et100b", "https://tec.openplanner.team/stops/H1gh168a"], ["https://tec.openplanner.team/stops/H4co148a", "https://tec.openplanner.team/stops/H4co149b"], ["https://tec.openplanner.team/stops/N101aeb", "https://tec.openplanner.team/stops/N117bda"], ["https://tec.openplanner.team/stops/H1ho134b", "https://tec.openplanner.team/stops/H1ho139a"], ["https://tec.openplanner.team/stops/N528ama", "https://tec.openplanner.team/stops/N528atb"], ["https://tec.openplanner.team/stops/Lgrbill1", "https://tec.openplanner.team/stops/Lgrclas2"], ["https://tec.openplanner.team/stops/Lsehya-1", "https://tec.openplanner.team/stops/Lsepair4"], ["https://tec.openplanner.team/stops/Cclbarb1", "https://tec.openplanner.team/stops/Cstmarz1"], ["https://tec.openplanner.team/stops/Lenauln1", "https://tec.openplanner.team/stops/Lendonh2"], ["https://tec.openplanner.team/stops/Bnivbng2", "https://tec.openplanner.team/stops/Bnivbos1"], ["https://tec.openplanner.team/stops/LMHcant1", "https://tec.openplanner.team/stops/LMHcant2"], ["https://tec.openplanner.team/stops/N505abb", "https://tec.openplanner.team/stops/N505acb"], ["https://tec.openplanner.team/stops/Crseuro2", "https://tec.openplanner.team/stops/Crspana1"], ["https://tec.openplanner.team/stops/N542aea", "https://tec.openplanner.team/stops/N542aeb"], ["https://tec.openplanner.team/stops/X601cfa", "https://tec.openplanner.team/stops/X601cgb"], ["https://tec.openplanner.team/stops/LOdcris1", "https://tec.openplanner.team/stops/LVlleme1"], ["https://tec.openplanner.team/stops/Lprthie1", "https://tec.openplanner.team/stops/Lprthie2"], ["https://tec.openplanner.team/stops/X837aeb", "https://tec.openplanner.team/stops/X837ajb"], ["https://tec.openplanner.team/stops/Lghflot3", "https://tec.openplanner.team/stops/Lghflot4"], ["https://tec.openplanner.team/stops/H4la196a", "https://tec.openplanner.team/stops/H4la198a"], ["https://tec.openplanner.team/stops/H2sv217b", "https://tec.openplanner.team/stops/H2sv221a"], ["https://tec.openplanner.team/stops/H4do104b", "https://tec.openplanner.team/stops/H4ev120b"], ["https://tec.openplanner.team/stops/H2sv212a", "https://tec.openplanner.team/stops/H2tr257b"], ["https://tec.openplanner.team/stops/Bnivpla1", "https://tec.openplanner.team/stops/Bnivpso2"], ["https://tec.openplanner.team/stops/Blhubja1", "https://tec.openplanner.team/stops/Blhunys3"], ["https://tec.openplanner.team/stops/H1pe131a", "https://tec.openplanner.team/stops/H1so131b"], ["https://tec.openplanner.team/stops/LTgchar7", "https://tec.openplanner.team/stops/LTgwarf2"], ["https://tec.openplanner.team/stops/H4bx108b", "https://tec.openplanner.team/stops/H4ht173a"], ["https://tec.openplanner.team/stops/Csefour1", "https://tec.openplanner.team/stops/Cvtvois1"], ["https://tec.openplanner.team/stops/LMOecsp3", "https://tec.openplanner.team/stops/LMOfleu2"], ["https://tec.openplanner.team/stops/H2fa102a", "https://tec.openplanner.team/stops/H2fa102b"], ["https://tec.openplanner.team/stops/H1he104b", "https://tec.openplanner.team/stops/H1he110b"], ["https://tec.openplanner.team/stops/N506bda", "https://tec.openplanner.team/stops/N506bfa"], ["https://tec.openplanner.team/stops/Bblamsj2", "https://tec.openplanner.team/stops/Bblarbe2"], ["https://tec.openplanner.team/stops/Ljecocc2", "https://tec.openplanner.team/stops/Ljelamb2"], ["https://tec.openplanner.team/stops/LMYmont1", "https://tec.openplanner.team/stops/X597alb"], ["https://tec.openplanner.team/stops/H4cw107b", "https://tec.openplanner.team/stops/H4gz114a"], ["https://tec.openplanner.team/stops/Ccuhaie2", "https://tec.openplanner.team/stops/Cculpre1"], ["https://tec.openplanner.team/stops/Cbwmvri1", "https://tec.openplanner.team/stops/Cbwmvri2"], ["https://tec.openplanner.team/stops/LCFchir1", "https://tec.openplanner.team/stops/LFIcabi2"], ["https://tec.openplanner.team/stops/Bmrsayw1", "https://tec.openplanner.team/stops/Bmrscol1"], ["https://tec.openplanner.team/stops/Lhrlico1", "https://tec.openplanner.team/stops/Lhrpwan1"], ["https://tec.openplanner.team/stops/H4bu108a", "https://tec.openplanner.team/stops/H4gz115b"], ["https://tec.openplanner.team/stops/LFCdree2", "https://tec.openplanner.team/stops/LMamuse3"], ["https://tec.openplanner.team/stops/H1gr111a", "https://tec.openplanner.team/stops/H1gr115b"], ["https://tec.openplanner.team/stops/X641acb", "https://tec.openplanner.team/stops/X641agb"], ["https://tec.openplanner.team/stops/LBkcare*", "https://tec.openplanner.team/stops/LBkcarr2"], ["https://tec.openplanner.team/stops/X902aeb", "https://tec.openplanner.team/stops/X902ana"], ["https://tec.openplanner.team/stops/N573aqa", "https://tec.openplanner.team/stops/N573aqb"], ["https://tec.openplanner.team/stops/X641atb", "https://tec.openplanner.team/stops/X641aub"], ["https://tec.openplanner.team/stops/N501era", "https://tec.openplanner.team/stops/N501kla"], ["https://tec.openplanner.team/stops/Cgocat2", "https://tec.openplanner.team/stops/Cgorobe1"], ["https://tec.openplanner.team/stops/Bbaucba2", "https://tec.openplanner.team/stops/Bbaulos1"], ["https://tec.openplanner.team/stops/H1pa116b", "https://tec.openplanner.team/stops/H1wa151a"], ["https://tec.openplanner.team/stops/H4ff117a", "https://tec.openplanner.team/stops/H4ff117b"], ["https://tec.openplanner.team/stops/Lagcolo1", "https://tec.openplanner.team/stops/Lagpn6-2"], ["https://tec.openplanner.team/stops/Ckevela2", "https://tec.openplanner.team/stops/N530aca"], ["https://tec.openplanner.team/stops/Cchrmon4", "https://tec.openplanner.team/stops/Cchture1"], ["https://tec.openplanner.team/stops/H1qu108a", "https://tec.openplanner.team/stops/H1qu114a"], ["https://tec.openplanner.team/stops/N501ama", "https://tec.openplanner.team/stops/N501bbc"], ["https://tec.openplanner.team/stops/X897aic", "https://tec.openplanner.team/stops/X897ala"], ["https://tec.openplanner.team/stops/LmUkape1", "https://tec.openplanner.team/stops/LmUzent2"], ["https://tec.openplanner.team/stops/Lhrathe*", "https://tec.openplanner.team/stops/Lhrathe2"], ["https://tec.openplanner.team/stops/Clfmonu2", "https://tec.openplanner.team/stops/Cstmarz2"], ["https://tec.openplanner.team/stops/LAo161-2", "https://tec.openplanner.team/stops/LWn24--2"], ["https://tec.openplanner.team/stops/LGmeg--2", "https://tec.openplanner.team/stops/LHmcarr2"], ["https://tec.openplanner.team/stops/Bmargve2", "https://tec.openplanner.team/stops/Bmarpla1"], ["https://tec.openplanner.team/stops/Bfelagb1", "https://tec.openplanner.team/stops/Bfelequ2"], ["https://tec.openplanner.team/stops/LAMjaur1", "https://tec.openplanner.team/stops/LAMusin2"], ["https://tec.openplanner.team/stops/LVttarg1", "https://tec.openplanner.team/stops/LVtvalu2"], ["https://tec.openplanner.team/stops/NC24aab", "https://tec.openplanner.team/stops/NC24aka"], ["https://tec.openplanner.team/stops/H4cw104b", "https://tec.openplanner.team/stops/H4cw107a"], ["https://tec.openplanner.team/stops/Bwatms09", "https://tec.openplanner.team/stops/Bwatms10"], ["https://tec.openplanner.team/stops/X911ahb", "https://tec.openplanner.team/stops/X911arb"], ["https://tec.openplanner.team/stops/H2ll189b", "https://tec.openplanner.team/stops/H2ll257b"], ["https://tec.openplanner.team/stops/LDOdavi2", "https://tec.openplanner.team/stops/LDOgare2"], ["https://tec.openplanner.team/stops/H3so155a", "https://tec.openplanner.team/stops/H3so175a"], ["https://tec.openplanner.team/stops/X664aab", "https://tec.openplanner.team/stops/X664afb"], ["https://tec.openplanner.team/stops/Brebraf1", "https://tec.openplanner.team/stops/Brebraf2"], ["https://tec.openplanner.team/stops/H4wn125b", "https://tec.openplanner.team/stops/H4wn126b"], ["https://tec.openplanner.team/stops/H1ht128a", "https://tec.openplanner.team/stops/H1vt194a"], ["https://tec.openplanner.team/stops/LPbchat2", "https://tec.openplanner.team/stops/LSIcour1"], ["https://tec.openplanner.team/stops/H2ha127b", "https://tec.openplanner.team/stops/H2ha142a"], ["https://tec.openplanner.team/stops/LARarge1", "https://tec.openplanner.team/stops/LRItour2"], ["https://tec.openplanner.team/stops/N165aab", "https://tec.openplanner.team/stops/N165abb"], ["https://tec.openplanner.team/stops/X728aba", "https://tec.openplanner.team/stops/X728adb"], ["https://tec.openplanner.team/stops/X911aea", "https://tec.openplanner.team/stops/X911afa"], ["https://tec.openplanner.team/stops/Blnzcar1", "https://tec.openplanner.team/stops/N522afb"], ["https://tec.openplanner.team/stops/LFArela5", "https://tec.openplanner.team/stops/LFAwale1"], ["https://tec.openplanner.team/stops/H2lc171b", "https://tec.openplanner.team/stops/H2ll200a"], ["https://tec.openplanner.team/stops/N149ala", "https://tec.openplanner.team/stops/N150aaa"], ["https://tec.openplanner.team/stops/X902afc", "https://tec.openplanner.team/stops/X999aka"], ["https://tec.openplanner.team/stops/H1gy115b", "https://tec.openplanner.team/stops/H1gy116b"], ["https://tec.openplanner.team/stops/H1wa144a", "https://tec.openplanner.team/stops/H1wa149c"], ["https://tec.openplanner.team/stops/H4wr174a", "https://tec.openplanner.team/stops/H4wr174b"], ["https://tec.openplanner.team/stops/X921ahb", "https://tec.openplanner.team/stops/X921aqb"], ["https://tec.openplanner.team/stops/Clpnapo1", "https://tec.openplanner.team/stops/Clpnapo2"], ["https://tec.openplanner.team/stops/LNCsera1", "https://tec.openplanner.team/stops/LPLcond1"], ["https://tec.openplanner.team/stops/H4ho119a", "https://tec.openplanner.team/stops/H4lg103b"], ["https://tec.openplanner.team/stops/H4ty325b", "https://tec.openplanner.team/stops/H4ty346b"], ["https://tec.openplanner.team/stops/Cfvplac2", "https://tec.openplanner.team/stops/H1fv102a"], ["https://tec.openplanner.team/stops/H4mt219a", "https://tec.openplanner.team/stops/H4mt221a"], ["https://tec.openplanner.team/stops/X769aba", "https://tec.openplanner.team/stops/X769ana"], ["https://tec.openplanner.team/stops/X937aca", "https://tec.openplanner.team/stops/X937afa"], ["https://tec.openplanner.team/stops/H1ch105a", "https://tec.openplanner.team/stops/H1ch106b"], ["https://tec.openplanner.team/stops/X979aib", "https://tec.openplanner.team/stops/X979aka"], ["https://tec.openplanner.team/stops/Bmalcar1", "https://tec.openplanner.team/stops/Btlbgla1"], ["https://tec.openplanner.team/stops/X611ada", "https://tec.openplanner.team/stops/X646ada"], ["https://tec.openplanner.team/stops/Blpgvil2", "https://tec.openplanner.team/stops/Cgnbast1"], ["https://tec.openplanner.team/stops/N102acb", "https://tec.openplanner.team/stops/N152aac"], ["https://tec.openplanner.team/stops/N584bqa", "https://tec.openplanner.team/stops/N584bqb"], ["https://tec.openplanner.team/stops/H4ne131a", "https://tec.openplanner.team/stops/H4ne140b"], ["https://tec.openplanner.team/stops/H4la198a", "https://tec.openplanner.team/stops/H4ma203b"], ["https://tec.openplanner.team/stops/N528aja", "https://tec.openplanner.team/stops/N528ajb"], ["https://tec.openplanner.team/stops/Llgjean1", "https://tec.openplanner.team/stops/Llgmarc1"], ["https://tec.openplanner.team/stops/N501fub", "https://tec.openplanner.team/stops/N501lsa"], ["https://tec.openplanner.team/stops/Lvtcalv1", "https://tec.openplanner.team/stops/Lvtchpl3"], ["https://tec.openplanner.team/stops/N501bma", "https://tec.openplanner.team/stops/N501bnb"], ["https://tec.openplanner.team/stops/LbThutt2", "https://tec.openplanner.team/stops/LbTkreu1"], ["https://tec.openplanner.team/stops/Lpechin1", "https://tec.openplanner.team/stops/Lpesart2"], ["https://tec.openplanner.team/stops/N337ahb", "https://tec.openplanner.team/stops/N339acb"], ["https://tec.openplanner.team/stops/Bpiepla2", "https://tec.openplanner.team/stops/Bzluegl1"], ["https://tec.openplanner.team/stops/Cobnive2", "https://tec.openplanner.team/stops/Crefont2"], ["https://tec.openplanner.team/stops/X982bla", "https://tec.openplanner.team/stops/X982bqb"], ["https://tec.openplanner.team/stops/LSMcles2", "https://tec.openplanner.team/stops/LSMeg--2"], ["https://tec.openplanner.team/stops/Cjuecha1", "https://tec.openplanner.team/stops/Cjuphil2"], ["https://tec.openplanner.team/stops/LVEjoin1", "https://tec.openplanner.team/stops/LVEmohi2"], ["https://tec.openplanner.team/stops/X825abb", "https://tec.openplanner.team/stops/X826afa"], ["https://tec.openplanner.team/stops/N211ana", "https://tec.openplanner.team/stops/N211arb"], ["https://tec.openplanner.team/stops/N228aab", "https://tec.openplanner.team/stops/N260ada"], ["https://tec.openplanner.team/stops/LScdina1", "https://tec.openplanner.team/stops/LVTforg1"], ["https://tec.openplanner.team/stops/LSZlegr2", "https://tec.openplanner.team/stops/LSZroqu1"], ["https://tec.openplanner.team/stops/Brsggde2", "https://tec.openplanner.team/stops/Brsggea2"], ["https://tec.openplanner.team/stops/LHHpt--1", "https://tec.openplanner.team/stops/LHHpt--4"], ["https://tec.openplanner.team/stops/X834ada", "https://tec.openplanner.team/stops/X834adb"], ["https://tec.openplanner.team/stops/X754ara", "https://tec.openplanner.team/stops/X754arb"], ["https://tec.openplanner.team/stops/Baudsta2", "https://tec.openplanner.team/stops/Bwbfckr1"], ["https://tec.openplanner.team/stops/H4mt215b", "https://tec.openplanner.team/stops/H4mt216a"], ["https://tec.openplanner.team/stops/H1ca100a", "https://tec.openplanner.team/stops/H1th183a"], ["https://tec.openplanner.team/stops/NL68aaa", "https://tec.openplanner.team/stops/NL68aad"], ["https://tec.openplanner.team/stops/N571acb", "https://tec.openplanner.team/stops/N571adb"], ["https://tec.openplanner.team/stops/N204ada", "https://tec.openplanner.team/stops/N204aha"], ["https://tec.openplanner.team/stops/N501cdb", "https://tec.openplanner.team/stops/N501cdc"], ["https://tec.openplanner.team/stops/H4ir161a", "https://tec.openplanner.team/stops/H4ir167a"], ["https://tec.openplanner.team/stops/Lsmcime1", "https://tec.openplanner.team/stops/Lsmh1801"], ["https://tec.openplanner.team/stops/H1vb141a", "https://tec.openplanner.team/stops/H3bi108a"], ["https://tec.openplanner.team/stops/N534aea", "https://tec.openplanner.team/stops/N534agb"], ["https://tec.openplanner.team/stops/Cjxegli1", "https://tec.openplanner.team/stops/Cjxegli2"], ["https://tec.openplanner.team/stops/Bgntpos2", "https://tec.openplanner.team/stops/Bsgevil1"], ["https://tec.openplanner.team/stops/N244aua", "https://tec.openplanner.team/stops/N244ava"], ["https://tec.openplanner.team/stops/X774agb", "https://tec.openplanner.team/stops/X774aha"], ["https://tec.openplanner.team/stops/Lagrask2", "https://tec.openplanner.team/stops/Lemjoba2"], ["https://tec.openplanner.team/stops/Ccomiau1", "https://tec.openplanner.team/stops/Crowall1"], ["https://tec.openplanner.team/stops/N544ada", "https://tec.openplanner.team/stops/N552aba"], ["https://tec.openplanner.team/stops/LNCdoma2", "https://tec.openplanner.team/stops/LNCspor1"], ["https://tec.openplanner.team/stops/X952aha", "https://tec.openplanner.team/stops/X952ahb"], ["https://tec.openplanner.team/stops/Brsgece1", "https://tec.openplanner.team/stops/Brsgece2"], ["https://tec.openplanner.team/stops/LFsconc1", "https://tec.openplanner.team/stops/LFsguil1"], ["https://tec.openplanner.team/stops/H1er109b", "https://tec.openplanner.team/stops/H1er110b"], ["https://tec.openplanner.team/stops/Lcebois1", "https://tec.openplanner.team/stops/Lceconf2"], ["https://tec.openplanner.team/stops/LBQplac2", "https://tec.openplanner.team/stops/N223aba"], ["https://tec.openplanner.team/stops/X605aaa", "https://tec.openplanner.team/stops/X619aaa"], ["https://tec.openplanner.team/stops/Cfapiro1", "https://tec.openplanner.team/stops/Cfapiro2"], ["https://tec.openplanner.team/stops/H2ll187c", "https://tec.openplanner.team/stops/H2ll190a"], ["https://tec.openplanner.team/stops/H4wi161a", "https://tec.openplanner.team/stops/H5pe134b"], ["https://tec.openplanner.team/stops/H2ca104a", "https://tec.openplanner.team/stops/H2mo135a"], ["https://tec.openplanner.team/stops/H1gg145a", "https://tec.openplanner.team/stops/H1ry134a"], ["https://tec.openplanner.team/stops/N543apb", "https://tec.openplanner.team/stops/N543arb"], ["https://tec.openplanner.team/stops/Llgnico2", "https://tec.openplanner.team/stops/Llgnico3"], ["https://tec.openplanner.team/stops/N160adb", "https://tec.openplanner.team/stops/N160agb"], ["https://tec.openplanner.team/stops/LBBpech1", "https://tec.openplanner.team/stops/LLvpost1"], ["https://tec.openplanner.team/stops/N538aua", "https://tec.openplanner.team/stops/N538baa"], ["https://tec.openplanner.team/stops/Lhuferm1", "https://tec.openplanner.team/stops/LJSec--2"], ["https://tec.openplanner.team/stops/N310aca", "https://tec.openplanner.team/stops/N310aea"], ["https://tec.openplanner.team/stops/Bhmmcge1", "https://tec.openplanner.team/stops/Bhmmgar1"], ["https://tec.openplanner.team/stops/N155aia", "https://tec.openplanner.team/stops/N155aja"], ["https://tec.openplanner.team/stops/LAWcorn1", "https://tec.openplanner.team/stops/LAWxhen1"], ["https://tec.openplanner.team/stops/X609ama", "https://tec.openplanner.team/stops/X609amb"], ["https://tec.openplanner.team/stops/X629aab", "https://tec.openplanner.team/stops/X630ada"], ["https://tec.openplanner.team/stops/Barqbar2", "https://tec.openplanner.team/stops/Barqhpe2"], ["https://tec.openplanner.team/stops/LESoneu4", "https://tec.openplanner.team/stops/LESryon2"], ["https://tec.openplanner.team/stops/N232bpb", "https://tec.openplanner.team/stops/N232bqb"], ["https://tec.openplanner.team/stops/LRUhama2", "https://tec.openplanner.team/stops/LTowijk2"], ["https://tec.openplanner.team/stops/H1ms942a", "https://tec.openplanner.team/stops/H1ni317b"], ["https://tec.openplanner.team/stops/LnDdorf1", "https://tec.openplanner.team/stops/LwSgeme1"], ["https://tec.openplanner.team/stops/LSOferr6", "https://tec.openplanner.team/stops/LSOladr1"], ["https://tec.openplanner.team/stops/Blhueso1", "https://tec.openplanner.team/stops/Blhugmo2"], ["https://tec.openplanner.team/stops/Btsllib1", "https://tec.openplanner.team/stops/Bwspspa1"], ["https://tec.openplanner.team/stops/N151aha", "https://tec.openplanner.team/stops/N151aka"], ["https://tec.openplanner.team/stops/LJSec--1", "https://tec.openplanner.team/stops/LJSec--2"], ["https://tec.openplanner.team/stops/Cbfchla2", "https://tec.openplanner.team/stops/NC11alb"], ["https://tec.openplanner.team/stops/X666aja", "https://tec.openplanner.team/stops/X666alb"], ["https://tec.openplanner.team/stops/N132aaa", "https://tec.openplanner.team/stops/N135aaa"], ["https://tec.openplanner.team/stops/LmI36--1", "https://tec.openplanner.team/stops/LmRmuhl2"], ["https://tec.openplanner.team/stops/LKmcabi1", "https://tec.openplanner.team/stops/LKmdrie1"], ["https://tec.openplanner.team/stops/Cjumall6", "https://tec.openplanner.team/stops/Cjupoly2"], ["https://tec.openplanner.team/stops/X917aea", "https://tec.openplanner.team/stops/X919afb"], ["https://tec.openplanner.team/stops/H1pa108b", "https://tec.openplanner.team/stops/H1pa120b"], ["https://tec.openplanner.team/stops/X806aga", "https://tec.openplanner.team/stops/X806aha"], ["https://tec.openplanner.team/stops/N501gga", "https://tec.openplanner.team/stops/N501lpa"], ["https://tec.openplanner.team/stops/H1bg110b", "https://tec.openplanner.team/stops/H1gi123b"], ["https://tec.openplanner.team/stops/X979aja", "https://tec.openplanner.team/stops/X979ajb"], ["https://tec.openplanner.team/stops/Ladhomb1", "https://tec.openplanner.team/stops/Lvereno2"], ["https://tec.openplanner.team/stops/LCLscie2", "https://tec.openplanner.team/stops/LLvpost1"], ["https://tec.openplanner.team/stops/X735aca", "https://tec.openplanner.team/stops/X736aea"], ["https://tec.openplanner.team/stops/Llabriq2", "https://tec.openplanner.team/stops/Lvovent2"], ["https://tec.openplanner.team/stops/Bbbksth1", "https://tec.openplanner.team/stops/Bbbksth2"], ["https://tec.openplanner.team/stops/H4mo206a", "https://tec.openplanner.team/stops/H4mo206b"], ["https://tec.openplanner.team/stops/LNHbarr2", "https://tec.openplanner.team/stops/LOmmer-1"], ["https://tec.openplanner.team/stops/H5el104a", "https://tec.openplanner.team/stops/H5el114a"], ["https://tec.openplanner.team/stops/LAbbass2", "https://tec.openplanner.team/stops/LTechpl1"], ["https://tec.openplanner.team/stops/H4jm118a", "https://tec.openplanner.team/stops/H4sm247b"], ["https://tec.openplanner.team/stops/N501mra", "https://tec.openplanner.team/stops/N501mrb"], ["https://tec.openplanner.team/stops/N573aba", "https://tec.openplanner.team/stops/NC11ard"], ["https://tec.openplanner.team/stops/Ccpetan2", "https://tec.openplanner.team/stops/Cptchea2"], ["https://tec.openplanner.team/stops/LNCvill1", "https://tec.openplanner.team/stops/LNCvill3"], ["https://tec.openplanner.team/stops/Cbupla1", "https://tec.openplanner.team/stops/Cfnsenz1"], ["https://tec.openplanner.team/stops/Clvchar2", "https://tec.openplanner.team/stops/Clvorle1"], ["https://tec.openplanner.team/stops/LFrfrai1", "https://tec.openplanner.team/stops/LTRcarr1"], ["https://tec.openplanner.team/stops/Ccoconf1", "https://tec.openplanner.team/stops/Ccodubo2"], ["https://tec.openplanner.team/stops/Ljeheur1", "https://tec.openplanner.team/stops/Ljerobi1"], ["https://tec.openplanner.team/stops/X746aaa", "https://tec.openplanner.team/stops/X746abb"], ["https://tec.openplanner.team/stops/X764adb", "https://tec.openplanner.team/stops/X764aeb"], ["https://tec.openplanner.team/stops/X610afa", "https://tec.openplanner.team/stops/X610aha"], ["https://tec.openplanner.team/stops/LArchap1", "https://tec.openplanner.team/stops/X548adb"], ["https://tec.openplanner.team/stops/LaAgold1", "https://tec.openplanner.team/stops/LaAkapi1"], ["https://tec.openplanner.team/stops/Becepco1", "https://tec.openplanner.team/stops/H2ec100a"], ["https://tec.openplanner.team/stops/N390adb", "https://tec.openplanner.team/stops/N390afb"], ["https://tec.openplanner.team/stops/N229aeb", "https://tec.openplanner.team/stops/N241abb"], ["https://tec.openplanner.team/stops/H4ld128b", "https://tec.openplanner.team/stops/H4to131b"], ["https://tec.openplanner.team/stops/Cgy3011", "https://tec.openplanner.team/stops/Cgygazo3"], ["https://tec.openplanner.team/stops/X837adb", "https://tec.openplanner.team/stops/X837aed"], ["https://tec.openplanner.team/stops/X542afa", "https://tec.openplanner.team/stops/X542aga"], ["https://tec.openplanner.team/stops/H1mc126b", "https://tec.openplanner.team/stops/H1mc129a"], ["https://tec.openplanner.team/stops/H2ha134b", "https://tec.openplanner.team/stops/H2ha141a"], ["https://tec.openplanner.team/stops/H1gi118a", "https://tec.openplanner.team/stops/H1gi118b"], ["https://tec.openplanner.team/stops/X731acc", "https://tec.openplanner.team/stops/X731amb"], ["https://tec.openplanner.team/stops/Lfhbail2", "https://tec.openplanner.team/stops/Lsevico1"], ["https://tec.openplanner.team/stops/LLevaux2", "https://tec.openplanner.team/stops/X561aeb"], ["https://tec.openplanner.team/stops/Lfhpast1", "https://tec.openplanner.team/stops/Lfhweri2"], ["https://tec.openplanner.team/stops/H4bo121b", "https://tec.openplanner.team/stops/H4bo182a"], ["https://tec.openplanner.team/stops/H4es113a", "https://tec.openplanner.team/stops/H4ln155a"], ["https://tec.openplanner.team/stops/X899aba", "https://tec.openplanner.team/stops/X899afa"], ["https://tec.openplanner.team/stops/X681aca", "https://tec.openplanner.team/stops/X681aia"], ["https://tec.openplanner.team/stops/X606aba", "https://tec.openplanner.team/stops/X606abb"], ["https://tec.openplanner.team/stops/X779aaa", "https://tec.openplanner.team/stops/X779aba"], ["https://tec.openplanner.team/stops/H1ms276a", "https://tec.openplanner.team/stops/H1ms287b"], ["https://tec.openplanner.team/stops/X547afb", "https://tec.openplanner.team/stops/X547ahb"], ["https://tec.openplanner.team/stops/Cwfplac2", "https://tec.openplanner.team/stops/Cwfplac3"], ["https://tec.openplanner.team/stops/N203aeb", "https://tec.openplanner.team/stops/N204alb"], ["https://tec.openplanner.team/stops/LDAchau1", "https://tec.openplanner.team/stops/LDAptbo2"], ["https://tec.openplanner.team/stops/H4ho119a", "https://tec.openplanner.team/stops/H4wn125a"], ["https://tec.openplanner.team/stops/Bitrcen1", "https://tec.openplanner.team/stops/Bitrecu1"], ["https://tec.openplanner.team/stops/Cbcegli1", "https://tec.openplanner.team/stops/Crglyre1"], ["https://tec.openplanner.team/stops/Lsnlhon2", "https://tec.openplanner.team/stops/Lsnvand1"], ["https://tec.openplanner.team/stops/X614abb", "https://tec.openplanner.team/stops/X614arb"], ["https://tec.openplanner.team/stops/H1he103a", "https://tec.openplanner.team/stops/H4be149b"], ["https://tec.openplanner.team/stops/H1ms254a", "https://tec.openplanner.team/stops/H1ms254d"], ["https://tec.openplanner.team/stops/LBWeg--4", "https://tec.openplanner.team/stops/LMgbern1"], ["https://tec.openplanner.team/stops/N543bmb", "https://tec.openplanner.team/stops/N543bnb"], ["https://tec.openplanner.team/stops/X789ahc", "https://tec.openplanner.team/stops/X789aia"], ["https://tec.openplanner.team/stops/Cjxpris2", "https://tec.openplanner.team/stops/Cjxthom2"], ["https://tec.openplanner.team/stops/H1gg114a", "https://tec.openplanner.team/stops/H1gg116b"], ["https://tec.openplanner.team/stops/LSXbecc1", "https://tec.openplanner.team/stops/LTHchiv1"], ["https://tec.openplanner.team/stops/Ljuauto1", "https://tec.openplanner.team/stops/Ljufler2"], ["https://tec.openplanner.team/stops/Ccipano2", "https://tec.openplanner.team/stops/Ccivill1"], ["https://tec.openplanner.team/stops/LHCpaci1", "https://tec.openplanner.team/stops/LHCpaci2"], ["https://tec.openplanner.team/stops/X640amb", "https://tec.openplanner.team/stops/X640apb"], ["https://tec.openplanner.team/stops/H1by103b", "https://tec.openplanner.team/stops/H1by106a"], ["https://tec.openplanner.team/stops/Bwateco2", "https://tec.openplanner.team/stops/Bwatpai1"], ["https://tec.openplanner.team/stops/X601cna", "https://tec.openplanner.team/stops/X601coa"], ["https://tec.openplanner.team/stops/Lmlpech1", "https://tec.openplanner.team/stops/Lmlpech2"], ["https://tec.openplanner.team/stops/Lhrcols1", "https://tec.openplanner.team/stops/Lvtauna2"], ["https://tec.openplanner.team/stops/LmNha221", "https://tec.openplanner.team/stops/LmNsv872"], ["https://tec.openplanner.team/stops/Lmnsech2", "https://tec.openplanner.team/stops/Lsmcime*"], ["https://tec.openplanner.team/stops/Cstdona3", "https://tec.openplanner.team/stops/Cstdona6"], ["https://tec.openplanner.team/stops/Btstbbu2", "https://tec.openplanner.team/stops/N524aca"], ["https://tec.openplanner.team/stops/Ccorian1", "https://tec.openplanner.team/stops/Crocpai1"], ["https://tec.openplanner.team/stops/Bglibui1", "https://tec.openplanner.team/stops/NB33aib"], ["https://tec.openplanner.team/stops/X637agc", "https://tec.openplanner.team/stops/X637aka"], ["https://tec.openplanner.team/stops/N101aaa", "https://tec.openplanner.team/stops/N147aba"], ["https://tec.openplanner.team/stops/Cjuathe1", "https://tec.openplanner.team/stops/CMchag1"], ["https://tec.openplanner.team/stops/Bhevgar2", "https://tec.openplanner.team/stops/Bleunaa2"], ["https://tec.openplanner.team/stops/X983aca", "https://tec.openplanner.team/stops/X983agb"], ["https://tec.openplanner.team/stops/Cprbevu2", "https://tec.openplanner.team/stops/NC11aoa"], ["https://tec.openplanner.team/stops/Bfledpi1", "https://tec.openplanner.team/stops/Bsamfma1"], ["https://tec.openplanner.team/stops/Lmofays1", "https://tec.openplanner.team/stops/Lmolama2"], ["https://tec.openplanner.team/stops/X898ajb", "https://tec.openplanner.team/stops/X898akb"], ["https://tec.openplanner.team/stops/Bsdecdi2", "https://tec.openplanner.team/stops/N526abb"], ["https://tec.openplanner.team/stops/H1he100a", "https://tec.openplanner.team/stops/H1qv116a"], ["https://tec.openplanner.team/stops/X675aaa", "https://tec.openplanner.team/stops/X820aha"], ["https://tec.openplanner.team/stops/H4ff118b", "https://tec.openplanner.team/stops/H4ff120a"], ["https://tec.openplanner.team/stops/H1cu115a", "https://tec.openplanner.team/stops/H1cu119a"], ["https://tec.openplanner.team/stops/NL81aha", "https://tec.openplanner.team/stops/NL81ahb"], ["https://tec.openplanner.team/stops/LAUcent2", "https://tec.openplanner.team/stops/LAUneuv6"], ["https://tec.openplanner.team/stops/LWeec--1", "https://tec.openplanner.team/stops/LWevand2"], ["https://tec.openplanner.team/stops/H5pe133a", "https://tec.openplanner.team/stops/H5pe176a"], ["https://tec.openplanner.team/stops/H4be102a", "https://tec.openplanner.team/stops/H4be107a"], ["https://tec.openplanner.team/stops/N540aia", "https://tec.openplanner.team/stops/N540ajb"], ["https://tec.openplanner.team/stops/LJAwerf1", "https://tec.openplanner.team/stops/LSW26--1"], ["https://tec.openplanner.team/stops/Cpccpas2", "https://tec.openplanner.team/stops/Cpclibe3"], ["https://tec.openplanner.team/stops/H4bc106a", "https://tec.openplanner.team/stops/H5bl116b"], ["https://tec.openplanner.team/stops/X901aeb", "https://tec.openplanner.team/stops/X901bsa"], ["https://tec.openplanner.team/stops/Lrccime3", "https://tec.openplanner.team/stops/Lrchero1"], ["https://tec.openplanner.team/stops/N423aaa", "https://tec.openplanner.team/stops/N423abb"], ["https://tec.openplanner.team/stops/Bnodeco2", "https://tec.openplanner.team/stops/Bolgmpl1"], ["https://tec.openplanner.team/stops/N542aab", "https://tec.openplanner.team/stops/N542aob"], ["https://tec.openplanner.team/stops/H1le117a", "https://tec.openplanner.team/stops/H1le128b"], ["https://tec.openplanner.team/stops/Bgnvcom2", "https://tec.openplanner.team/stops/Brixbou2"], ["https://tec.openplanner.team/stops/N236alb", "https://tec.openplanner.team/stops/N236apa"], ["https://tec.openplanner.team/stops/H4ef165a", "https://tec.openplanner.team/stops/H4ef165c"], ["https://tec.openplanner.team/stops/X725asa", "https://tec.openplanner.team/stops/X725ata"], ["https://tec.openplanner.team/stops/Bnivasa1", "https://tec.openplanner.team/stops/Bnivrsa2"], ["https://tec.openplanner.team/stops/N545aba", "https://tec.openplanner.team/stops/N547ana"], ["https://tec.openplanner.team/stops/N167aea", "https://tec.openplanner.team/stops/N168aab"], ["https://tec.openplanner.team/stops/Bchadpt1", "https://tec.openplanner.team/stops/Bwlhppg1"], ["https://tec.openplanner.team/stops/H2ma202a", "https://tec.openplanner.team/stops/H2ma263a"], ["https://tec.openplanner.team/stops/N538atc", "https://tec.openplanner.team/stops/N538axb"], ["https://tec.openplanner.team/stops/Bhlvgar1", "https://tec.openplanner.team/stops/Bhlvgar2"], ["https://tec.openplanner.team/stops/LTPlegr2", "https://tec.openplanner.team/stops/LTPpres2"], ["https://tec.openplanner.team/stops/LNAanne2", "https://tec.openplanner.team/stops/LNAdemo2"], ["https://tec.openplanner.team/stops/Lprmana1", "https://tec.openplanner.team/stops/Lprmana2"], ["https://tec.openplanner.team/stops/X754aaa", "https://tec.openplanner.team/stops/X754aba"], ["https://tec.openplanner.team/stops/X908aaa", "https://tec.openplanner.team/stops/X955aha"], ["https://tec.openplanner.team/stops/LhRkirc1", "https://tec.openplanner.team/stops/LhRwere2"], ["https://tec.openplanner.team/stops/Lchcomm2", "https://tec.openplanner.team/stops/Lchplai1"], ["https://tec.openplanner.team/stops/Blmlbif2", "https://tec.openplanner.team/stops/Blmlfau2"], ["https://tec.openplanner.team/stops/Clupcfe2", "https://tec.openplanner.team/stops/Cpcndce1"], ["https://tec.openplanner.team/stops/LaAlinz1", "https://tec.openplanner.team/stops/LaAlinz2"], ["https://tec.openplanner.team/stops/LSPentr1", "https://tec.openplanner.team/stops/LSProya2"], ["https://tec.openplanner.team/stops/Barqhro2", "https://tec.openplanner.team/stops/Bptrgri2"], ["https://tec.openplanner.team/stops/Crewatb2", "https://tec.openplanner.team/stops/Crewath1"], ["https://tec.openplanner.team/stops/X870aca", "https://tec.openplanner.team/stops/X870acb"], ["https://tec.openplanner.team/stops/Bmrlsau1", "https://tec.openplanner.team/stops/NR21aia"], ["https://tec.openplanner.team/stops/LROcent1", "https://tec.openplanner.team/stops/LROcent2"], ["https://tec.openplanner.team/stops/N509aua", "https://tec.openplanner.team/stops/N511ana"], ["https://tec.openplanner.team/stops/LFmceli2", "https://tec.openplanner.team/stops/LFmeg--1"], ["https://tec.openplanner.team/stops/X362ada", "https://tec.openplanner.team/stops/X363abb"], ["https://tec.openplanner.team/stops/Cgpchgo1", "https://tec.openplanner.team/stops/Ctrterm1"], ["https://tec.openplanner.team/stops/Bllngar9", "https://tec.openplanner.team/stops/Bllngle1"], ["https://tec.openplanner.team/stops/X812baa", "https://tec.openplanner.team/stops/X812bga"], ["https://tec.openplanner.team/stops/N232bcb", "https://tec.openplanner.team/stops/N232bib"], ["https://tec.openplanner.team/stops/LBIcabi2", "https://tec.openplanner.team/stops/LBIpont2"], ["https://tec.openplanner.team/stops/Bbaubon1", "https://tec.openplanner.team/stops/Bbaulos1"], ["https://tec.openplanner.team/stops/Lchec--1", "https://tec.openplanner.team/stops/Lrapays2"], ["https://tec.openplanner.team/stops/X608ajb", "https://tec.openplanner.team/stops/X608akb"], ["https://tec.openplanner.team/stops/Bwatath3", "https://tec.openplanner.team/stops/Bwatclo1"], ["https://tec.openplanner.team/stops/N503aka", "https://tec.openplanner.team/stops/N504aba"], ["https://tec.openplanner.team/stops/N542abb", "https://tec.openplanner.team/stops/N542acb"], ["https://tec.openplanner.team/stops/X614aua", "https://tec.openplanner.team/stops/X614ava"], ["https://tec.openplanner.team/stops/Bjausan2", "https://tec.openplanner.team/stops/Bjauvch2"], ["https://tec.openplanner.team/stops/X613aaa", "https://tec.openplanner.team/stops/X613aab"], ["https://tec.openplanner.team/stops/LCHeg--2", "https://tec.openplanner.team/stops/Lprspra2"], ["https://tec.openplanner.team/stops/Crsprai3", "https://tec.openplanner.team/stops/Crsprai4"], ["https://tec.openplanner.team/stops/N507aaa", "https://tec.openplanner.team/stops/N507aac"], ["https://tec.openplanner.team/stops/Bnstver1", "https://tec.openplanner.team/stops/H3go101b"], ["https://tec.openplanner.team/stops/Canrobe2", "https://tec.openplanner.team/stops/Canrtth1"], ["https://tec.openplanner.team/stops/Bnivga21", "https://tec.openplanner.team/stops/Bnivga31"], ["https://tec.openplanner.team/stops/Lbhgare1", "https://tec.openplanner.team/stops/Lrogene*"], ["https://tec.openplanner.team/stops/X982aja", "https://tec.openplanner.team/stops/X982bub"], ["https://tec.openplanner.team/stops/N538aja", "https://tec.openplanner.team/stops/N538ajb"], ["https://tec.openplanner.team/stops/LMTfagn1", "https://tec.openplanner.team/stops/LXfcore1"], ["https://tec.openplanner.team/stops/CMbert1", "https://tec.openplanner.team/stops/CMbert2"], ["https://tec.openplanner.team/stops/N229amb", "https://tec.openplanner.team/stops/N229ata"], ["https://tec.openplanner.team/stops/N521abb", "https://tec.openplanner.team/stops/N521ara"], ["https://tec.openplanner.team/stops/N202aea", "https://tec.openplanner.team/stops/N202aeb"], ["https://tec.openplanner.team/stops/Livgera2", "https://tec.openplanner.team/stops/Livgera3"], ["https://tec.openplanner.team/stops/H4ir163a", "https://tec.openplanner.team/stops/H4ir163b"], ["https://tec.openplanner.team/stops/H4by116b", "https://tec.openplanner.team/stops/H4wp151a"], ["https://tec.openplanner.team/stops/X713ala", "https://tec.openplanner.team/stops/X713alb"], ["https://tec.openplanner.team/stops/N106afa", "https://tec.openplanner.team/stops/N106afb"], ["https://tec.openplanner.team/stops/H1bn113a", "https://tec.openplanner.team/stops/H1hg178b"], ["https://tec.openplanner.team/stops/Bgliopp1", "https://tec.openplanner.team/stops/Bincdon2"], ["https://tec.openplanner.team/stops/X901aja", "https://tec.openplanner.team/stops/X901axa"], ["https://tec.openplanner.team/stops/LAMhaut1", "https://tec.openplanner.team/stops/LFlabba4"], ["https://tec.openplanner.team/stops/Crodrai1", "https://tec.openplanner.team/stops/Cronova2"], ["https://tec.openplanner.team/stops/Cmcceta1", "https://tec.openplanner.team/stops/Cmivert1"], ["https://tec.openplanner.team/stops/LClange1", "https://tec.openplanner.team/stops/LClange2"], ["https://tec.openplanner.team/stops/X896aba", "https://tec.openplanner.team/stops/X896acb"], ["https://tec.openplanner.team/stops/X901aca", "https://tec.openplanner.team/stops/X901aha"], ["https://tec.openplanner.team/stops/N533aaa", "https://tec.openplanner.team/stops/N533aab"], ["https://tec.openplanner.team/stops/H1bo105b", "https://tec.openplanner.team/stops/H1bo111b"], ["https://tec.openplanner.team/stops/X666aia", "https://tec.openplanner.team/stops/X666aib"], ["https://tec.openplanner.team/stops/H3so175a", "https://tec.openplanner.team/stops/H3so175b"], ["https://tec.openplanner.team/stops/LATdame1", "https://tec.openplanner.team/stops/LATdame2"], ["https://tec.openplanner.team/stops/LSMeg--1", "https://tec.openplanner.team/stops/LSMtarg1"], ["https://tec.openplanner.team/stops/Cmmgadi1", "https://tec.openplanner.team/stops/Cmmramb1"], ["https://tec.openplanner.team/stops/N501hjb", "https://tec.openplanner.team/stops/N501hjc"], ["https://tec.openplanner.team/stops/H1em109a", "https://tec.openplanner.team/stops/H1vb143a"], ["https://tec.openplanner.team/stops/N501doa", "https://tec.openplanner.team/stops/N501dob"], ["https://tec.openplanner.team/stops/Bmelenf1", "https://tec.openplanner.team/stops/Bmelenf2"], ["https://tec.openplanner.team/stops/Cbbjfeu1", "https://tec.openplanner.team/stops/Cvrchap2"], ["https://tec.openplanner.team/stops/H4fr145a", "https://tec.openplanner.team/stops/H4fr145b"], ["https://tec.openplanner.team/stops/Blasbh51", "https://tec.openplanner.team/stops/Blasbpr1"], ["https://tec.openplanner.team/stops/X658abb", "https://tec.openplanner.team/stops/X671aca"], ["https://tec.openplanner.team/stops/LhGbahn3", "https://tec.openplanner.team/stops/LhGknip1"], ["https://tec.openplanner.team/stops/Ccipech1", "https://tec.openplanner.team/stops/Cmttrie1"], ["https://tec.openplanner.team/stops/X877aga", "https://tec.openplanner.team/stops/X989afb"], ["https://tec.openplanner.team/stops/N104aad", "https://tec.openplanner.team/stops/N116aca"], ["https://tec.openplanner.team/stops/NC11aga", "https://tec.openplanner.team/stops/NC11agb"], ["https://tec.openplanner.team/stops/X754aua", "https://tec.openplanner.team/stops/X754aub"], ["https://tec.openplanner.team/stops/X911ana", "https://tec.openplanner.team/stops/X912aab"], ["https://tec.openplanner.team/stops/Lsccdor1", "https://tec.openplanner.team/stops/Lsccdor2"], ["https://tec.openplanner.team/stops/LBkbamb1", "https://tec.openplanner.team/stops/LBkcarr1"], ["https://tec.openplanner.team/stops/H4qu230a", "https://tec.openplanner.team/stops/H4qu408b"], ["https://tec.openplanner.team/stops/Cprsapv1", "https://tec.openplanner.team/stops/NC11ana"], ["https://tec.openplanner.team/stops/Lseberg1", "https://tec.openplanner.team/stops/Lseberg2"], ["https://tec.openplanner.team/stops/Lanc14v1", "https://tec.openplanner.team/stops/Llgverg2"], ["https://tec.openplanner.team/stops/LMaburg3", "https://tec.openplanner.team/stops/LMazonn4"], ["https://tec.openplanner.team/stops/LHovach1", "https://tec.openplanner.team/stops/LHovach2"], ["https://tec.openplanner.team/stops/LlE02--1", "https://tec.openplanner.team/stops/LlEzoll1"], ["https://tec.openplanner.team/stops/Cbugara1", "https://tec.openplanner.team/stops/Csiegli1"], ["https://tec.openplanner.team/stops/X901aib", "https://tec.openplanner.team/stops/X901arb"], ["https://tec.openplanner.team/stops/Cobbusc1", "https://tec.openplanner.team/stops/Cobmven2"], ["https://tec.openplanner.team/stops/Cbzfrom1", "https://tec.openplanner.team/stops/Creha762"], ["https://tec.openplanner.team/stops/N531aoa", "https://tec.openplanner.team/stops/N531aqa"], ["https://tec.openplanner.team/stops/N501aka", "https://tec.openplanner.team/stops/N501aoa"], ["https://tec.openplanner.team/stops/Lprmc--2", "https://tec.openplanner.team/stops/Lprperr2"], ["https://tec.openplanner.team/stops/X650aha", "https://tec.openplanner.team/stops/X650aoa"], ["https://tec.openplanner.team/stops/LHUgole1", "https://tec.openplanner.team/stops/LHUgole2"], ["https://tec.openplanner.team/stops/Lqbchat1", "https://tec.openplanner.team/stops/Lrelier1"], ["https://tec.openplanner.team/stops/Cmbcime4", "https://tec.openplanner.team/stops/Crcrwas2"], ["https://tec.openplanner.team/stops/Lreec--2", "https://tec.openplanner.team/stops/Lremonu1"], ["https://tec.openplanner.team/stops/X618ada", "https://tec.openplanner.team/stops/X618adb"], ["https://tec.openplanner.team/stops/LBiroch1", "https://tec.openplanner.team/stops/LDOgare1"], ["https://tec.openplanner.team/stops/Lanadmi2", "https://tec.openplanner.team/stops/Llojeme4"], ["https://tec.openplanner.team/stops/Bbcopre1", "https://tec.openplanner.team/stops/Bbcoroy1"], ["https://tec.openplanner.team/stops/N539avb", "https://tec.openplanner.team/stops/N539awb"], ["https://tec.openplanner.team/stops/LhZkape1", "https://tec.openplanner.team/stops/LmFdorf2"], ["https://tec.openplanner.team/stops/Cjulamb3", "https://tec.openplanner.team/stops/Cjuruni2"], ["https://tec.openplanner.team/stops/Lceavia2", "https://tec.openplanner.team/stops/Lceconf2"], ["https://tec.openplanner.team/stops/LVIferm1", "https://tec.openplanner.team/stops/LVImons2"], ["https://tec.openplanner.team/stops/Lsepcha1", "https://tec.openplanner.team/stops/Lsercha1"], ["https://tec.openplanner.team/stops/LElcent1", "https://tec.openplanner.team/stops/LElgerd1"], ["https://tec.openplanner.team/stops/Cchlamb2", "https://tec.openplanner.team/stops/Cchmott2"], ["https://tec.openplanner.team/stops/N560aaa", "https://tec.openplanner.team/stops/N560adb"], ["https://tec.openplanner.team/stops/X766acb", "https://tec.openplanner.team/stops/X768alb"], ["https://tec.openplanner.team/stops/LOMbrou1", "https://tec.openplanner.team/stops/LOMbrou2"], ["https://tec.openplanner.team/stops/Btlgegl1", "https://tec.openplanner.team/stops/Btlgmou1"], ["https://tec.openplanner.team/stops/H1cd111c", "https://tec.openplanner.team/stops/H1hr117b"], ["https://tec.openplanner.team/stops/N543aia", "https://tec.openplanner.team/stops/N543aib"], ["https://tec.openplanner.team/stops/X921ala", "https://tec.openplanner.team/stops/X979acb"], ["https://tec.openplanner.team/stops/Lcegare2", "https://tec.openplanner.team/stops/Lcemc--1"], ["https://tec.openplanner.team/stops/H2ca108a", "https://tec.openplanner.team/stops/H2mo127c"], ["https://tec.openplanner.team/stops/Cracave2", "https://tec.openplanner.team/stops/Craferr1"], ["https://tec.openplanner.team/stops/H1ms253b", "https://tec.openplanner.team/stops/H1ms278b"], ["https://tec.openplanner.team/stops/LSPentr1", "https://tec.openplanner.team/stops/LSPxhou1"], ["https://tec.openplanner.team/stops/Ladboti2", "https://tec.openplanner.team/stops/Ldidefo1"], ["https://tec.openplanner.team/stops/X634aia", "https://tec.openplanner.team/stops/X634aka"], ["https://tec.openplanner.team/stops/LHChomb1", "https://tec.openplanner.team/stops/LHCmonu2"], ["https://tec.openplanner.team/stops/X818aga", "https://tec.openplanner.team/stops/X822ada"], ["https://tec.openplanner.team/stops/LeUbahn4", "https://tec.openplanner.team/stops/LeUschn1"], ["https://tec.openplanner.team/stops/H1hr118a", "https://tec.openplanner.team/stops/H1hr122b"], ["https://tec.openplanner.team/stops/H4ob110b", "https://tec.openplanner.team/stops/H4rc234b"], ["https://tec.openplanner.team/stops/Cchdrai2", "https://tec.openplanner.team/stops/Cchtour2"], ["https://tec.openplanner.team/stops/N204aeb", "https://tec.openplanner.team/stops/N559aab"], ["https://tec.openplanner.team/stops/N286aba", "https://tec.openplanner.team/stops/N286abb"], ["https://tec.openplanner.team/stops/X622afa", "https://tec.openplanner.team/stops/X622afb"], ["https://tec.openplanner.team/stops/LVLruis1", "https://tec.openplanner.team/stops/LVLruis2"], ["https://tec.openplanner.team/stops/Cgofert1", "https://tec.openplanner.team/stops/Cgosmoi2"], ["https://tec.openplanner.team/stops/N125aab", "https://tec.openplanner.team/stops/N125aac"], ["https://tec.openplanner.team/stops/X782aka", "https://tec.openplanner.team/stops/X782aoa"], ["https://tec.openplanner.team/stops/H2hg265a", "https://tec.openplanner.team/stops/H2hg265b"], ["https://tec.openplanner.team/stops/LJSforg2", "https://tec.openplanner.team/stops/Lpetenn2"], ["https://tec.openplanner.team/stops/Cfvombo1", "https://tec.openplanner.team/stops/Clfmonu3"], ["https://tec.openplanner.team/stops/H4le128a", "https://tec.openplanner.team/stops/H4we139b"], ["https://tec.openplanner.team/stops/N229aeb", "https://tec.openplanner.team/stops/N229aec"], ["https://tec.openplanner.team/stops/Ccoacar2", "https://tec.openplanner.team/stops/Ccotrie3"], ["https://tec.openplanner.team/stops/H1sa113a", "https://tec.openplanner.team/stops/H1sa113b"], ["https://tec.openplanner.team/stops/LHXn47-4", "https://tec.openplanner.team/stops/LSMtarg1"], ["https://tec.openplanner.team/stops/Bsencen1", "https://tec.openplanner.team/stops/Bsences1"], ["https://tec.openplanner.team/stops/Bjodeco3", "https://tec.openplanner.team/stops/Bsrgegl1"], ["https://tec.openplanner.team/stops/H1ag104a", "https://tec.openplanner.team/stops/H1ag106a"], ["https://tec.openplanner.team/stops/Ccojaur1", "https://tec.openplanner.team/stops/Ccojaur3"], ["https://tec.openplanner.team/stops/X790adb", "https://tec.openplanner.team/stops/X790aja"], ["https://tec.openplanner.team/stops/H4bo116a", "https://tec.openplanner.team/stops/H4bo116b"], ["https://tec.openplanner.team/stops/H4am100a", "https://tec.openplanner.team/stops/H4or115a"], ["https://tec.openplanner.team/stops/X729aab", "https://tec.openplanner.team/stops/X729ada"], ["https://tec.openplanner.team/stops/Cgdcent1", "https://tec.openplanner.team/stops/Cgdcent2"], ["https://tec.openplanner.team/stops/N574ada", "https://tec.openplanner.team/stops/N574adb"], ["https://tec.openplanner.team/stops/Btslenf1", "https://tec.openplanner.team/stops/Btslpbr1"], ["https://tec.openplanner.team/stops/H1qv110a", "https://tec.openplanner.team/stops/H1qv113a"], ["https://tec.openplanner.team/stops/N541aaa", "https://tec.openplanner.team/stops/N541aab"], ["https://tec.openplanner.team/stops/Clolidl1", "https://tec.openplanner.team/stops/Clolidl2"], ["https://tec.openplanner.team/stops/Llggill1", "https://tec.openplanner.team/stops/Llggill3"], ["https://tec.openplanner.team/stops/N309aaa", "https://tec.openplanner.team/stops/N309aab"], ["https://tec.openplanner.team/stops/H1mm127a", "https://tec.openplanner.team/stops/H1vb148a"], ["https://tec.openplanner.team/stops/LFRcoun2", "https://tec.openplanner.team/stops/LFRrohe1"], ["https://tec.openplanner.team/stops/LaMhe831", "https://tec.openplanner.team/stops/LaMwies2"], ["https://tec.openplanner.team/stops/Cjumade4", "https://tec.openplanner.team/stops/CMcarr2"], ["https://tec.openplanner.team/stops/N331aaa", "https://tec.openplanner.team/stops/N331aab"], ["https://tec.openplanner.team/stops/Brsgrol1", "https://tec.openplanner.team/stops/Brsgter2"], ["https://tec.openplanner.team/stops/H1ms278a", "https://tec.openplanner.team/stops/H1ms906a"], ["https://tec.openplanner.team/stops/H4be103b", "https://tec.openplanner.team/stops/H4be114a"], ["https://tec.openplanner.team/stops/N501etd", "https://tec.openplanner.team/stops/N501ety"], ["https://tec.openplanner.team/stops/LAWhein1", "https://tec.openplanner.team/stops/LAWhein3"], ["https://tec.openplanner.team/stops/LORherl1", "https://tec.openplanner.team/stops/LORroma1"], ["https://tec.openplanner.team/stops/N252abb", "https://tec.openplanner.team/stops/N252acc"], ["https://tec.openplanner.team/stops/LTPspay1", "https://tec.openplanner.team/stops/LTPspay2"], ["https://tec.openplanner.team/stops/Ccipech2", "https://tec.openplanner.team/stops/Cmlaili1"], ["https://tec.openplanner.team/stops/H1he101a", "https://tec.openplanner.team/stops/H1he105b"], ["https://tec.openplanner.team/stops/N149aia", "https://tec.openplanner.team/stops/N149aib"], ["https://tec.openplanner.team/stops/LrUbrac1", "https://tec.openplanner.team/stops/LrUbrac2"], ["https://tec.openplanner.team/stops/N501jga", "https://tec.openplanner.team/stops/N501jgb"], ["https://tec.openplanner.team/stops/H3bi115a", "https://tec.openplanner.team/stops/H3bi115b"], ["https://tec.openplanner.team/stops/Cmmgadi1", "https://tec.openplanner.team/stops/Cmybefe1"], ["https://tec.openplanner.team/stops/LCvneu-1", "https://tec.openplanner.team/stops/LCvoufn2"], ["https://tec.openplanner.team/stops/N230alb", "https://tec.openplanner.team/stops/N230ama"], ["https://tec.openplanner.team/stops/N584boa", "https://tec.openplanner.team/stops/N584bqb"], ["https://tec.openplanner.team/stops/N385aec", "https://tec.openplanner.team/stops/N385aed"], ["https://tec.openplanner.team/stops/Cgostex2", "https://tec.openplanner.team/stops/Cjudaxi1"], ["https://tec.openplanner.team/stops/Caigibe1", "https://tec.openplanner.team/stops/Crspair2"], ["https://tec.openplanner.team/stops/X763afa", "https://tec.openplanner.team/stops/X763afb"], ["https://tec.openplanner.team/stops/N505alb", "https://tec.openplanner.team/stops/N511aib"], ["https://tec.openplanner.team/stops/H4he103a", "https://tec.openplanner.team/stops/H4he104a"], ["https://tec.openplanner.team/stops/Lhuferm1", "https://tec.openplanner.team/stops/Lpevove2"], ["https://tec.openplanner.team/stops/N525ajb", "https://tec.openplanner.team/stops/N525azb"], ["https://tec.openplanner.team/stops/LBSneuv2", "https://tec.openplanner.team/stops/LBStong2"], ["https://tec.openplanner.team/stops/Clftour2", "https://tec.openplanner.team/stops/Cstvape2"], ["https://tec.openplanner.team/stops/X926aab", "https://tec.openplanner.team/stops/X927ada"], ["https://tec.openplanner.team/stops/LbUkrei*", "https://tec.openplanner.team/stops/LbUmolk2"], ["https://tec.openplanner.team/stops/Baegegl1", "https://tec.openplanner.team/stops/Baeggar1"], ["https://tec.openplanner.team/stops/LAyegli2", "https://tec.openplanner.team/stops/Lrechap1"], ["https://tec.openplanner.team/stops/X601asa", "https://tec.openplanner.team/stops/X601asb"], ["https://tec.openplanner.team/stops/Ctuplac2", "https://tec.openplanner.team/stops/Ctuplac3"], ["https://tec.openplanner.team/stops/Baudhde2", "https://tec.openplanner.team/stops/Baudwav2"], ["https://tec.openplanner.team/stops/X897aoc", "https://tec.openplanner.team/stops/X897aqb"], ["https://tec.openplanner.team/stops/X638aab", "https://tec.openplanner.team/stops/X638afb"], ["https://tec.openplanner.team/stops/N579afa", "https://tec.openplanner.team/stops/N580ahb"], ["https://tec.openplanner.team/stops/X757aga", "https://tec.openplanner.team/stops/X757aib"], ["https://tec.openplanner.team/stops/H4ty308a", "https://tec.openplanner.team/stops/H4ty308e"], ["https://tec.openplanner.team/stops/Lseprog1", "https://tec.openplanner.team/stops/Lseptsa2"], ["https://tec.openplanner.team/stops/NL57aga", "https://tec.openplanner.team/stops/NL57aka"], ["https://tec.openplanner.team/stops/Barchez1", "https://tec.openplanner.team/stops/Barchez2"], ["https://tec.openplanner.team/stops/LSSjeun1", "https://tec.openplanner.team/stops/LSSjeun2"], ["https://tec.openplanner.team/stops/Lmochar1", "https://tec.openplanner.team/stops/Lmochar2"], ["https://tec.openplanner.team/stops/H4vx364b", "https://tec.openplanner.team/stops/H4vx365a"], ["https://tec.openplanner.team/stops/Crcegli2", "https://tec.openplanner.team/stops/Crcpcom2"], ["https://tec.openplanner.team/stops/Bgdhcsh1", "https://tec.openplanner.team/stops/Bgdhcsh2"], ["https://tec.openplanner.team/stops/LFmeg--2", "https://tec.openplanner.team/stops/LFmroye1"], ["https://tec.openplanner.team/stops/Cgyblob1", "https://tec.openplanner.team/stops/Cgymetr1"], ["https://tec.openplanner.team/stops/H1em101a", "https://tec.openplanner.team/stops/H1em107b"], ["https://tec.openplanner.team/stops/Ctucomm1", "https://tec.openplanner.team/stops/Ctucomm2"], ["https://tec.openplanner.team/stops/Llgnaes1", "https://tec.openplanner.team/stops/Llgseel2"], ["https://tec.openplanner.team/stops/Lmnchal1", "https://tec.openplanner.team/stops/Lmnjeha2"], ["https://tec.openplanner.team/stops/N233aba", "https://tec.openplanner.team/stops/N233abb"], ["https://tec.openplanner.team/stops/LLbbons2", "https://tec.openplanner.team/stops/LLbcafe1"], ["https://tec.openplanner.team/stops/H4co106d", "https://tec.openplanner.team/stops/H4co141b"], ["https://tec.openplanner.team/stops/X658aha", "https://tec.openplanner.team/stops/X659aib"], ["https://tec.openplanner.team/stops/LHbcent1", "https://tec.openplanner.team/stops/LJAwerf2"], ["https://tec.openplanner.team/stops/Bblapin1", "https://tec.openplanner.team/stops/Brsgter2"], ["https://tec.openplanner.team/stops/LaMpost1", "https://tec.openplanner.team/stops/LaMpost2"], ["https://tec.openplanner.team/stops/H4ty297a", "https://tec.openplanner.team/stops/H4ty379a"], ["https://tec.openplanner.team/stops/X782ada", "https://tec.openplanner.team/stops/X782aeb"], ["https://tec.openplanner.team/stops/LDmdegi1", "https://tec.openplanner.team/stops/LDmdegi2"], ["https://tec.openplanner.team/stops/X766acb", "https://tec.openplanner.team/stops/X766agb"], ["https://tec.openplanner.team/stops/N201atb", "https://tec.openplanner.team/stops/N201aub"], ["https://tec.openplanner.team/stops/LCHfond1", "https://tec.openplanner.team/stops/LCHfond2"], ["https://tec.openplanner.team/stops/Bptecar2", "https://tec.openplanner.team/stops/Bptegna1"], ["https://tec.openplanner.team/stops/X754aja", "https://tec.openplanner.team/stops/X754ajb"], ["https://tec.openplanner.team/stops/N547aja", "https://tec.openplanner.team/stops/N573ara"], ["https://tec.openplanner.team/stops/LMoelno1", "https://tec.openplanner.team/stops/LMoelno2"], ["https://tec.openplanner.team/stops/NC23aca", "https://tec.openplanner.team/stops/NC23acb"], ["https://tec.openplanner.team/stops/Brsgm301", "https://tec.openplanner.team/stops/Brsgm802"], ["https://tec.openplanner.team/stops/H4ar103a", "https://tec.openplanner.team/stops/H4lg103b"], ["https://tec.openplanner.team/stops/Bgemman2", "https://tec.openplanner.team/stops/N522acb"], ["https://tec.openplanner.team/stops/Bnivaig1", "https://tec.openplanner.team/stops/Bnivcma2"], ["https://tec.openplanner.team/stops/Bsoigar2", "https://tec.openplanner.team/stops/H3so163a"], ["https://tec.openplanner.team/stops/LFmecli3", "https://tec.openplanner.team/stops/LFmeg--1"], ["https://tec.openplanner.team/stops/LHHindu2", "https://tec.openplanner.team/stops/LHHpt--1"], ["https://tec.openplanner.team/stops/H4ty290b", "https://tec.openplanner.team/stops/H4ty359b"], ["https://tec.openplanner.team/stops/LHUfrai2", "https://tec.openplanner.team/stops/LHUvege1"], ["https://tec.openplanner.team/stops/Livfays1", "https://tec.openplanner.team/stops/Livfays2"], ["https://tec.openplanner.team/stops/LVleg--5", "https://tec.openplanner.team/stops/LVleg--6"], ["https://tec.openplanner.team/stops/H4ma204b", "https://tec.openplanner.team/stops/H4oq226b"], ["https://tec.openplanner.team/stops/Llg20ao1", "https://tec.openplanner.team/stops/Llg20ao3"], ["https://tec.openplanner.team/stops/X662aqa", "https://tec.openplanner.team/stops/X662aqb"], ["https://tec.openplanner.team/stops/Cjupllo2", "https://tec.openplanner.team/stops/CMtsan2"], ["https://tec.openplanner.team/stops/LPrcarr1", "https://tec.openplanner.team/stops/X261aaa"], ["https://tec.openplanner.team/stops/LBjflor1", "https://tec.openplanner.team/stops/X576ahb"], ["https://tec.openplanner.team/stops/Bbounci2", "https://tec.openplanner.team/stops/Bcerpco2"], ["https://tec.openplanner.team/stops/X993aab", "https://tec.openplanner.team/stops/X993ahb"], ["https://tec.openplanner.team/stops/H4ch120b", "https://tec.openplanner.team/stops/H4ch120c"], ["https://tec.openplanner.team/stops/Bbstbou1", "https://tec.openplanner.team/stops/Btancnd2"], ["https://tec.openplanner.team/stops/Cgzmarb1", "https://tec.openplanner.team/stops/Cgzmarb2"], ["https://tec.openplanner.team/stops/Bcsecar2", "https://tec.openplanner.team/stops/Bmoufil2"], ["https://tec.openplanner.team/stops/X804aqa", "https://tec.openplanner.team/stops/X804ara"], ["https://tec.openplanner.team/stops/LAmarbo2", "https://tec.openplanner.team/stops/LAmsart2"], ["https://tec.openplanner.team/stops/LSpschi1", "https://tec.openplanner.team/stops/LSpunio2"], ["https://tec.openplanner.team/stops/N536aaa", "https://tec.openplanner.team/stops/N536adb"], ["https://tec.openplanner.team/stops/H4ne144a", "https://tec.openplanner.team/stops/H4ne144c"], ["https://tec.openplanner.team/stops/Caibino2", "https://tec.openplanner.team/stops/Caiecol2"], ["https://tec.openplanner.team/stops/N116aab", "https://tec.openplanner.team/stops/N116aad"], ["https://tec.openplanner.team/stops/X640aaa", "https://tec.openplanner.team/stops/X640abb"], ["https://tec.openplanner.team/stops/LWNberg1", "https://tec.openplanner.team/stops/LWNfani2"], ["https://tec.openplanner.team/stops/X937alb", "https://tec.openplanner.team/stops/X946agb"], ["https://tec.openplanner.team/stops/X890aaa", "https://tec.openplanner.team/stops/X890ada"], ["https://tec.openplanner.team/stops/LLnec--2", "https://tec.openplanner.team/stops/LLnpomp2"], ["https://tec.openplanner.team/stops/Ccu6bra5", "https://tec.openplanner.team/stops/Ccutrav2"], ["https://tec.openplanner.team/stops/X261aca", "https://tec.openplanner.team/stops/X261acb"], ["https://tec.openplanner.team/stops/LPLcarr1", "https://tec.openplanner.team/stops/LPLline1"], ["https://tec.openplanner.team/stops/H4es108a", "https://tec.openplanner.team/stops/H4ln155a"], ["https://tec.openplanner.team/stops/Bllngar8", "https://tec.openplanner.team/stops/Bllngar9"], ["https://tec.openplanner.team/stops/H4ty281b", "https://tec.openplanner.team/stops/H4ty336b"], ["https://tec.openplanner.team/stops/H1bu140b", "https://tec.openplanner.team/stops/H2le150a"], ["https://tec.openplanner.team/stops/N235aha", "https://tec.openplanner.team/stops/N236afb"], ["https://tec.openplanner.team/stops/H2le153b", "https://tec.openplanner.team/stops/H2pe156b"], ["https://tec.openplanner.team/stops/Ccoforr1", "https://tec.openplanner.team/stops/Ccopeti1"], ["https://tec.openplanner.team/stops/X663ada", "https://tec.openplanner.team/stops/X663agb"], ["https://tec.openplanner.team/stops/X659aka", "https://tec.openplanner.team/stops/X659ana"], ["https://tec.openplanner.team/stops/N517adc", "https://tec.openplanner.team/stops/N517add"], ["https://tec.openplanner.team/stops/H1gr116b", "https://tec.openplanner.team/stops/H1gr123b"], ["https://tec.openplanner.team/stops/LCsraws1", "https://tec.openplanner.team/stops/LCsraws2"], ["https://tec.openplanner.team/stops/X604aab", "https://tec.openplanner.team/stops/X634ahb"], ["https://tec.openplanner.team/stops/Bcrbmsg2", "https://tec.openplanner.team/stops/Bmsggra3"], ["https://tec.openplanner.team/stops/NC02aba", "https://tec.openplanner.team/stops/NC24aia"], ["https://tec.openplanner.team/stops/X801bza", "https://tec.openplanner.team/stops/X801cca"], ["https://tec.openplanner.team/stops/Cjualed1", "https://tec.openplanner.team/stops/Cjupn3"], ["https://tec.openplanner.team/stops/N536aab", "https://tec.openplanner.team/stops/N536apb"], ["https://tec.openplanner.team/stops/Lmobras1", "https://tec.openplanner.team/stops/Lmopech1"], ["https://tec.openplanner.team/stops/Llgjonr2", "https://tec.openplanner.team/stops/Llgmagh2"], ["https://tec.openplanner.team/stops/LVIdeva1", "https://tec.openplanner.team/stops/LVIhala3"], ["https://tec.openplanner.team/stops/N117abb", "https://tec.openplanner.team/stops/N117bba"], ["https://tec.openplanner.team/stops/LlgguilC", "https://tec.openplanner.team/stops/LlgguilE"], ["https://tec.openplanner.team/stops/Btsleco2", "https://tec.openplanner.team/stops/Btslenf2"], ["https://tec.openplanner.team/stops/N543cla", "https://tec.openplanner.team/stops/N543coa"], ["https://tec.openplanner.team/stops/X911ara", "https://tec.openplanner.team/stops/X911asa"], ["https://tec.openplanner.team/stops/LrcarsT1", "https://tec.openplanner.team/stops/LrcarsT3"], ["https://tec.openplanner.team/stops/Cmehels1", "https://tec.openplanner.team/stops/Cwxplac2"], ["https://tec.openplanner.team/stops/Btilgar1", "https://tec.openplanner.team/stops/Bvlvmar1"], ["https://tec.openplanner.team/stops/X822aea", "https://tec.openplanner.team/stops/X822afa"], ["https://tec.openplanner.team/stops/H4mo149a", "https://tec.openplanner.team/stops/H4mo167a"], ["https://tec.openplanner.team/stops/LlNm%C3%BChl1", "https://tec.openplanner.team/stops/LlNm%C3%BChl2"], ["https://tec.openplanner.team/stops/X757aja", "https://tec.openplanner.team/stops/X757ajb"], ["https://tec.openplanner.team/stops/H4mb202b", "https://tec.openplanner.team/stops/H4mb203b"], ["https://tec.openplanner.team/stops/LeUcamp1", "https://tec.openplanner.team/stops/LeUcamp2"], ["https://tec.openplanner.team/stops/Baudstr1", "https://tec.openplanner.team/stops/Bettars1"], ["https://tec.openplanner.team/stops/H4ty342b", "https://tec.openplanner.team/stops/H4ty349b"], ["https://tec.openplanner.team/stops/LDmeg--2", "https://tec.openplanner.team/stops/LHoetie2"], ["https://tec.openplanner.team/stops/X608aia", "https://tec.openplanner.team/stops/X627aaa"], ["https://tec.openplanner.team/stops/Lsecris3", "https://tec.openplanner.team/stops/Lseegva2"], ["https://tec.openplanner.team/stops/LGLcour4", "https://tec.openplanner.team/stops/LGLspor2"], ["https://tec.openplanner.team/stops/Bblaast2", "https://tec.openplanner.team/stops/Bblavba1"], ["https://tec.openplanner.team/stops/X664aea", "https://tec.openplanner.team/stops/X667aab"], ["https://tec.openplanner.team/stops/LbUhuge2", "https://tec.openplanner.team/stops/LbUkrei*"], ["https://tec.openplanner.team/stops/LHSfexh1", "https://tec.openplanner.team/stops/LHSvina2"], ["https://tec.openplanner.team/stops/H1gy111a", "https://tec.openplanner.team/stops/H1le127b"], ["https://tec.openplanner.team/stops/Cgoloca2", "https://tec.openplanner.team/stops/Cgosoux1"], ["https://tec.openplanner.team/stops/X618acb", "https://tec.openplanner.team/stops/X619aeb"], ["https://tec.openplanner.team/stops/X943aha", "https://tec.openplanner.team/stops/X943ahb"], ["https://tec.openplanner.team/stops/Bnivath1", "https://tec.openplanner.team/stops/Bnivga71"], ["https://tec.openplanner.team/stops/N534blg", "https://tec.openplanner.team/stops/N534bmb"], ["https://tec.openplanner.team/stops/X902bcb", "https://tec.openplanner.team/stops/X999aka"], ["https://tec.openplanner.team/stops/Lchec--1", "https://tec.openplanner.team/stops/Lcheg--1"], ["https://tec.openplanner.team/stops/H4tp146b", "https://tec.openplanner.team/stops/H4wp148b"], ["https://tec.openplanner.team/stops/Cbwegl1", "https://tec.openplanner.team/stops/Cbwegl2"], ["https://tec.openplanner.team/stops/LSBrouf3", "https://tec.openplanner.team/stops/LSBrouf4"], ["https://tec.openplanner.team/stops/X396aca", "https://tec.openplanner.team/stops/X396afa"], ["https://tec.openplanner.team/stops/Lvefanc2", "https://tec.openplanner.team/stops/Lvegrap2"], ["https://tec.openplanner.team/stops/H1fr107a", "https://tec.openplanner.team/stops/H1fr107c"], ["https://tec.openplanner.team/stops/X834aba", "https://tec.openplanner.team/stops/X834abb"], ["https://tec.openplanner.team/stops/X601cga", "https://tec.openplanner.team/stops/X662aia"], ["https://tec.openplanner.team/stops/Cmogrbu1", "https://tec.openplanner.team/stops/Cmoscap1"], ["https://tec.openplanner.team/stops/N232bdb", "https://tec.openplanner.team/stops/N232bea"], ["https://tec.openplanner.team/stops/LkOgren1", "https://tec.openplanner.team/stops/LkOgren2"], ["https://tec.openplanner.team/stops/LPRecol2", "https://tec.openplanner.team/stops/LPRmoul2"], ["https://tec.openplanner.team/stops/Bohnhan1", "https://tec.openplanner.team/stops/Bohnman1"], ["https://tec.openplanner.team/stops/H5at130a", "https://tec.openplanner.team/stops/H5at136a"], ["https://tec.openplanner.team/stops/Cmlasie1", "https://tec.openplanner.team/stops/Cmlstni2"], ["https://tec.openplanner.team/stops/LSeaque2", "https://tec.openplanner.team/stops/LSeaque4"], ["https://tec.openplanner.team/stops/Cmlavch1", "https://tec.openplanner.team/stops/Cmllecl4"], ["https://tec.openplanner.team/stops/N118avc", "https://tec.openplanner.team/stops/N118axb"], ["https://tec.openplanner.team/stops/LgAnr491", "https://tec.openplanner.team/stops/LnUneun2"], ["https://tec.openplanner.team/stops/H4ar103a", "https://tec.openplanner.team/stops/H4ar173b"], ["https://tec.openplanner.team/stops/LCxcouv2", "https://tec.openplanner.team/stops/LCxwade2"], ["https://tec.openplanner.team/stops/N109aca", "https://tec.openplanner.team/stops/N109acb"], ["https://tec.openplanner.team/stops/LCFcafe1", "https://tec.openplanner.team/stops/LMtcent2"], ["https://tec.openplanner.team/stops/N549aeb", "https://tec.openplanner.team/stops/N550abe"], ["https://tec.openplanner.team/stops/Llglefe1", "https://tec.openplanner.team/stops/Llglefe2"], ["https://tec.openplanner.team/stops/N562aia", "https://tec.openplanner.team/stops/N562aib"], ["https://tec.openplanner.team/stops/Lpelouh2", "https://tec.openplanner.team/stops/Lpepano2"], ["https://tec.openplanner.team/stops/Bbsicea2", "https://tec.openplanner.team/stops/Bbsihau1"], ["https://tec.openplanner.team/stops/Cmtdepo2", "https://tec.openplanner.team/stops/Cmtneuv2"], ["https://tec.openplanner.team/stops/N508ama", "https://tec.openplanner.team/stops/N509arb"], ["https://tec.openplanner.team/stops/X786aia", "https://tec.openplanner.team/stops/X788abd"], ["https://tec.openplanner.team/stops/Bvilcim1", "https://tec.openplanner.team/stops/Bvilcim2"], ["https://tec.openplanner.team/stops/X992aga", "https://tec.openplanner.team/stops/X992aha"], ["https://tec.openplanner.team/stops/H1ht129a", "https://tec.openplanner.team/stops/H1ht129b"], ["https://tec.openplanner.team/stops/X715aca", "https://tec.openplanner.team/stops/X715ada"], ["https://tec.openplanner.team/stops/X793aaa", "https://tec.openplanner.team/stops/X793abb"], ["https://tec.openplanner.team/stops/Bmarmru1", "https://tec.openplanner.team/stops/Btilsnc1"], ["https://tec.openplanner.team/stops/Lmlcher1", "https://tec.openplanner.team/stops/Lmlpata*"], ["https://tec.openplanner.team/stops/LBzvill2", "https://tec.openplanner.team/stops/LVBcarr1"], ["https://tec.openplanner.team/stops/N102aca", "https://tec.openplanner.team/stops/N103aia"], ["https://tec.openplanner.team/stops/H4li179a", "https://tec.openplanner.team/stops/H4li179d"], ["https://tec.openplanner.team/stops/N534bra", "https://tec.openplanner.team/stops/N534bta"], ["https://tec.openplanner.team/stops/LaMthei1", "https://tec.openplanner.team/stops/LaMwies1"], ["https://tec.openplanner.team/stops/N506aja", "https://tec.openplanner.team/stops/N506asb"], ["https://tec.openplanner.team/stops/X750ava", "https://tec.openplanner.team/stops/X750avb"], ["https://tec.openplanner.team/stops/X625aca", "https://tec.openplanner.team/stops/X625aea"], ["https://tec.openplanner.team/stops/LFTcroi1", "https://tec.openplanner.team/stops/LFTcroi3"], ["https://tec.openplanner.team/stops/Cdalpla2", "https://tec.openplanner.team/stops/CMlpla2"], ["https://tec.openplanner.team/stops/N207aba", "https://tec.openplanner.team/stops/X221aac"], ["https://tec.openplanner.team/stops/Bfelcen1", "https://tec.openplanner.team/stops/Bfelfde1"], ["https://tec.openplanner.team/stops/LVLbovy1", "https://tec.openplanner.team/stops/LVLecco1"], ["https://tec.openplanner.team/stops/H1gi121a", "https://tec.openplanner.team/stops/H1gi123b"], ["https://tec.openplanner.team/stops/X812aga", "https://tec.openplanner.team/stops/X812aja"], ["https://tec.openplanner.team/stops/N220adb", "https://tec.openplanner.team/stops/N224aba"], ["https://tec.openplanner.team/stops/Bcsebea2", "https://tec.openplanner.team/stops/Bmsgpap2"], ["https://tec.openplanner.team/stops/Lqbeg--1", "https://tec.openplanner.team/stops/Lqbeg--2"], ["https://tec.openplanner.team/stops/N203aea", "https://tec.openplanner.team/stops/N203afa"], ["https://tec.openplanner.team/stops/LXhcite2", "https://tec.openplanner.team/stops/LXhmara1"], ["https://tec.openplanner.team/stops/N215aba", "https://tec.openplanner.team/stops/N232cea"], ["https://tec.openplanner.team/stops/N512afa", "https://tec.openplanner.team/stops/N512afb"], ["https://tec.openplanner.team/stops/LaSbahn1", "https://tec.openplanner.team/stops/LwAprei1"], ["https://tec.openplanner.team/stops/Cbmmafr1", "https://tec.openplanner.team/stops/Cbmpopr1"], ["https://tec.openplanner.team/stops/Llghenr2", "https://tec.openplanner.team/stops/Llglamb1"], ["https://tec.openplanner.team/stops/Cflathe2", "https://tec.openplanner.team/stops/Cflfaub2"], ["https://tec.openplanner.team/stops/LeYberl1", "https://tec.openplanner.team/stops/LeYraaf1"], ["https://tec.openplanner.team/stops/N308anb", "https://tec.openplanner.team/stops/N312ada"], ["https://tec.openplanner.team/stops/H1cd111c", "https://tec.openplanner.team/stops/H1ne149a"], ["https://tec.openplanner.team/stops/Bmsgfon2", "https://tec.openplanner.team/stops/Bmsgpfo2"], ["https://tec.openplanner.team/stops/LMYmont2", "https://tec.openplanner.team/stops/LMYroin1"], ["https://tec.openplanner.team/stops/LHseg--2", "https://tec.openplanner.team/stops/LHseg--3"], ["https://tec.openplanner.team/stops/X991aeb", "https://tec.openplanner.team/stops/X991afa"], ["https://tec.openplanner.team/stops/LSochal1", "https://tec.openplanner.team/stops/LSochal2"], ["https://tec.openplanner.team/stops/Bitrcan1", "https://tec.openplanner.team/stops/Bvirgar1"], ["https://tec.openplanner.team/stops/LBCaube1", "https://tec.openplanner.team/stops/LMAbass2"], ["https://tec.openplanner.team/stops/H4mx116b", "https://tec.openplanner.team/stops/H4po130a"], ["https://tec.openplanner.team/stops/N118aca", "https://tec.openplanner.team/stops/N118aya"], ["https://tec.openplanner.team/stops/H4og207b", "https://tec.openplanner.team/stops/H4og216a"], ["https://tec.openplanner.team/stops/H1ms288b", "https://tec.openplanner.team/stops/H1ms367a"], ["https://tec.openplanner.team/stops/X923aqa", "https://tec.openplanner.team/stops/X925afb"], ["https://tec.openplanner.team/stops/Cwgpatr1", "https://tec.openplanner.team/stops/Cwgrans2"], ["https://tec.openplanner.team/stops/LNCimpe1", "https://tec.openplanner.team/stops/LNClila1"], ["https://tec.openplanner.team/stops/N137aeb", "https://tec.openplanner.team/stops/N137agb"], ["https://tec.openplanner.team/stops/X784aca", "https://tec.openplanner.team/stops/X784alb"], ["https://tec.openplanner.team/stops/LEnvill2", "https://tec.openplanner.team/stops/NL73aab"], ["https://tec.openplanner.team/stops/Lpeatel1", "https://tec.openplanner.team/stops/Lpeatel2"], ["https://tec.openplanner.team/stops/X715aca", "https://tec.openplanner.team/stops/X715apb"], ["https://tec.openplanner.team/stops/X919aba", "https://tec.openplanner.team/stops/X919acb"], ["https://tec.openplanner.team/stops/Cmychap1", "https://tec.openplanner.team/stops/Cmychap4"], ["https://tec.openplanner.team/stops/Bneeace1", "https://tec.openplanner.team/stops/Bneervc1"], ["https://tec.openplanner.team/stops/X801bka", "https://tec.openplanner.team/stops/X836aha"], ["https://tec.openplanner.team/stops/Lmogerm1", "https://tec.openplanner.team/stops/Lmomine1"], ["https://tec.openplanner.team/stops/H4ht172b", "https://tec.openplanner.team/stops/H4la198c"], ["https://tec.openplanner.team/stops/LESamos1", "https://tec.openplanner.team/stops/LESecco2"], ["https://tec.openplanner.team/stops/Bhencha2", "https://tec.openplanner.team/stops/Bhenhau2"], ["https://tec.openplanner.team/stops/LoUober2", "https://tec.openplanner.team/stops/LoUzent1"], ["https://tec.openplanner.team/stops/N874aca", "https://tec.openplanner.team/stops/N894acb"], ["https://tec.openplanner.team/stops/N530aca", "https://tec.openplanner.team/stops/N530aja"], ["https://tec.openplanner.team/stops/X761ada", "https://tec.openplanner.team/stops/X761adb"], ["https://tec.openplanner.team/stops/Lvehv--4", "https://tec.openplanner.team/stops/Lvepala2"], ["https://tec.openplanner.team/stops/LBRbriv2", "https://tec.openplanner.team/stops/LBRgare2"], ["https://tec.openplanner.team/stops/Lemambi2", "https://tec.openplanner.team/stops/Lemmc--2"], ["https://tec.openplanner.team/stops/LbUmors1", "https://tec.openplanner.team/stops/LmRh%C3%B6812"], ["https://tec.openplanner.team/stops/H1pa109c", "https://tec.openplanner.team/stops/H1pa167a"], ["https://tec.openplanner.team/stops/X805afb", "https://tec.openplanner.team/stops/X869aba"], ["https://tec.openplanner.team/stops/X602aka", "https://tec.openplanner.team/stops/X602akb"], ["https://tec.openplanner.team/stops/H4me213b", "https://tec.openplanner.team/stops/H4ve137a"], ["https://tec.openplanner.team/stops/Loucoti1", "https://tec.openplanner.team/stops/Loutrix1"], ["https://tec.openplanner.team/stops/X917aja", "https://tec.openplanner.team/stops/X917ajb"], ["https://tec.openplanner.team/stops/Lroeg--2", "https://tec.openplanner.team/stops/Lroeg--3"], ["https://tec.openplanner.team/stops/H4cw106a", "https://tec.openplanner.team/stops/H4hg156a"], ["https://tec.openplanner.team/stops/Bmarcha1", "https://tec.openplanner.team/stops/Bmarcha2"], ["https://tec.openplanner.team/stops/Lgrstou1", "https://tec.openplanner.team/stops/Lgrstou2"], ["https://tec.openplanner.team/stops/Chpcarp2", "https://tec.openplanner.team/stops/Cwgtill1"], ["https://tec.openplanner.team/stops/LMXaven2", "https://tec.openplanner.team/stops/LMXempe2"], ["https://tec.openplanner.team/stops/X808aib", "https://tec.openplanner.team/stops/X808ajb"], ["https://tec.openplanner.team/stops/LoDkoll1", "https://tec.openplanner.team/stops/LoDmuhl2"], ["https://tec.openplanner.team/stops/Lstchu-2", "https://tec.openplanner.team/stops/Lstchu-4"], ["https://tec.openplanner.team/stops/Lflec--2", "https://tec.openplanner.team/stops/Lfljupi1"], ["https://tec.openplanner.team/stops/LChvill*", "https://tec.openplanner.team/stops/LJAgoff2"], ["https://tec.openplanner.team/stops/Buccpor1", "https://tec.openplanner.team/stops/Buccvbe2"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lhueg--1"], ["https://tec.openplanner.team/stops/Lougoff1", "https://tec.openplanner.team/stops/Lougoff2"], ["https://tec.openplanner.team/stops/Bbeacha2", "https://tec.openplanner.team/stops/Bbeapim1"], ["https://tec.openplanner.team/stops/Bblavol2", "https://tec.openplanner.team/stops/Bwatbca2"], ["https://tec.openplanner.team/stops/Bjodrdp2", "https://tec.openplanner.team/stops/Bjodsje1"], ["https://tec.openplanner.team/stops/X948alb", "https://tec.openplanner.team/stops/X948bbb"], ["https://tec.openplanner.team/stops/Cclmoul1", "https://tec.openplanner.team/stops/Ctuplac2"], ["https://tec.openplanner.team/stops/Canboni1", "https://tec.openplanner.team/stops/Canplch3"], ["https://tec.openplanner.team/stops/X770aca", "https://tec.openplanner.team/stops/X770aea"], ["https://tec.openplanner.team/stops/Clrhava1", "https://tec.openplanner.team/stops/Clrwesp1"], ["https://tec.openplanner.team/stops/Lmochpl2", "https://tec.openplanner.team/stops/Lmodeni2"], ["https://tec.openplanner.team/stops/LlNbusc1", "https://tec.openplanner.team/stops/LlNsc651"], ["https://tec.openplanner.team/stops/LGefron1", "https://tec.openplanner.team/stops/LVAwolf1"], ["https://tec.openplanner.team/stops/N118agb", "https://tec.openplanner.team/stops/N118aib"], ["https://tec.openplanner.team/stops/LBItnt-*", "https://tec.openplanner.team/stops/LVevill1"], ["https://tec.openplanner.team/stops/N534bqb", "https://tec.openplanner.team/stops/N568aeb"], ["https://tec.openplanner.team/stops/X804arb", "https://tec.openplanner.team/stops/X804aya"], ["https://tec.openplanner.team/stops/H1pw122a", "https://tec.openplanner.team/stops/H1pw122b"], ["https://tec.openplanner.team/stops/H4oq223b", "https://tec.openplanner.team/stops/H4oq228a"], ["https://tec.openplanner.team/stops/N501hab", "https://tec.openplanner.team/stops/N501ihb"], ["https://tec.openplanner.team/stops/X897adb", "https://tec.openplanner.team/stops/X897aea"], ["https://tec.openplanner.team/stops/Bpiesta1", "https://tec.openplanner.team/stops/Bpiesta2"], ["https://tec.openplanner.team/stops/H1mm128a", "https://tec.openplanner.team/stops/H1mm132b"], ["https://tec.openplanner.team/stops/N291aaa", "https://tec.openplanner.team/stops/N291aba"], ["https://tec.openplanner.team/stops/Bllnchv1", "https://tec.openplanner.team/stops/Bllncom1"], ["https://tec.openplanner.team/stops/H4cw105a", "https://tec.openplanner.team/stops/H4hg158a"], ["https://tec.openplanner.team/stops/Blkbbvh2", "https://tec.openplanner.team/stops/Bucccre1"], ["https://tec.openplanner.team/stops/LeUlasc2", "https://tec.openplanner.team/stops/LeUrsi-*"], ["https://tec.openplanner.team/stops/X639ada", "https://tec.openplanner.team/stops/X639aea"], ["https://tec.openplanner.team/stops/H1by104a", "https://tec.openplanner.team/stops/H1sy148a"], ["https://tec.openplanner.team/stops/LHMcruc2", "https://tec.openplanner.team/stops/LHMpatl2"], ["https://tec.openplanner.team/stops/N512akb", "https://tec.openplanner.team/stops/N512ava"], ["https://tec.openplanner.team/stops/H4ma201a", "https://tec.openplanner.team/stops/H4ma204a"], ["https://tec.openplanner.team/stops/Lhr2ave2", "https://tec.openplanner.team/stops/Lhrmeta1"], ["https://tec.openplanner.team/stops/N584avb", "https://tec.openplanner.team/stops/N584cbb"], ["https://tec.openplanner.team/stops/Bjodgai2", "https://tec.openplanner.team/stops/Bsrgcur1"], ["https://tec.openplanner.team/stops/Cmaleri1", "https://tec.openplanner.team/stops/Cmazone1"], ["https://tec.openplanner.team/stops/X223aca", "https://tec.openplanner.team/stops/X919aba"], ["https://tec.openplanner.team/stops/H1as154a", "https://tec.openplanner.team/stops/H1nv325a"], ["https://tec.openplanner.team/stops/N206aba", "https://tec.openplanner.team/stops/N206abb"], ["https://tec.openplanner.team/stops/LlgR-F1*", "https://tec.openplanner.team/stops/LlgR-Fr*"], ["https://tec.openplanner.team/stops/Cfmchau2", "https://tec.openplanner.team/stops/Cfmrrou2"], ["https://tec.openplanner.team/stops/Lmlcrot*", "https://tec.openplanner.team/stops/Lmlpech2"], ["https://tec.openplanner.team/stops/LbUmolk1", "https://tec.openplanner.team/stops/LkRrauw1"], ["https://tec.openplanner.team/stops/H1si156d", "https://tec.openplanner.team/stops/H4bo179a"], ["https://tec.openplanner.team/stops/N232bra", "https://tec.openplanner.team/stops/N232caa"], ["https://tec.openplanner.team/stops/LHbcent2", "https://tec.openplanner.team/stops/LJAherb3"], ["https://tec.openplanner.team/stops/Cbetrie1", "https://tec.openplanner.team/stops/N161aea"], ["https://tec.openplanner.team/stops/LkEl3252", "https://tec.openplanner.team/stops/LMsvill1"], ["https://tec.openplanner.team/stops/N538ada", "https://tec.openplanner.team/stops/N539aka"], ["https://tec.openplanner.team/stops/H1ba102a", "https://tec.openplanner.team/stops/H1ba102b"], ["https://tec.openplanner.team/stops/X609aga", "https://tec.openplanner.team/stops/X609alb"], ["https://tec.openplanner.team/stops/NL78aca", "https://tec.openplanner.team/stops/NL78ada"], ["https://tec.openplanner.team/stops/LAYwerb2", "https://tec.openplanner.team/stops/LHrfang1"], ["https://tec.openplanner.team/stops/X616aib", "https://tec.openplanner.team/stops/X616aja"], ["https://tec.openplanner.team/stops/X801afb", "https://tec.openplanner.team/stops/X801ahb"], ["https://tec.openplanner.team/stops/Lstphys2", "https://tec.openplanner.team/stops/Lstpoly2"], ["https://tec.openplanner.team/stops/Cmesafi2", "https://tec.openplanner.team/stops/Csa4mai1"], ["https://tec.openplanner.team/stops/LAWchpl2", "https://tec.openplanner.team/stops/LBIpont2"], ["https://tec.openplanner.team/stops/LAWchau2", "https://tec.openplanner.team/stops/LAWlonc2"], ["https://tec.openplanner.team/stops/X952ada", "https://tec.openplanner.team/stops/X952aia"], ["https://tec.openplanner.team/stops/LHCmonu3", "https://tec.openplanner.team/stops/LHCruyf1"], ["https://tec.openplanner.team/stops/X950aaa", "https://tec.openplanner.team/stops/X950acb"], ["https://tec.openplanner.team/stops/N514ama", "https://tec.openplanner.team/stops/N515akc"], ["https://tec.openplanner.team/stops/H2sb243c", "https://tec.openplanner.team/stops/H2sb243d"], ["https://tec.openplanner.team/stops/Bbcodam3", "https://tec.openplanner.team/stops/Bhen5ma1"], ["https://tec.openplanner.team/stops/Cmadeli1", "https://tec.openplanner.team/stops/CMcart2"], ["https://tec.openplanner.team/stops/Cchwarm1", "https://tec.openplanner.team/stops/CMsama1"], ["https://tec.openplanner.team/stops/LRAcouv1", "https://tec.openplanner.team/stops/LRAcouv2"], ["https://tec.openplanner.team/stops/LBNvill1", "https://tec.openplanner.team/stops/LMemaza2"], ["https://tec.openplanner.team/stops/Bquebth2", "https://tec.openplanner.team/stops/Bquebth3"], ["https://tec.openplanner.team/stops/LlgguilD", "https://tec.openplanner.team/stops/Llgoise2"], ["https://tec.openplanner.team/stops/X793aia", "https://tec.openplanner.team/stops/X793aob"], ["https://tec.openplanner.team/stops/Lsteg--1", "https://tec.openplanner.team/stops/Lstetud1"], ["https://tec.openplanner.team/stops/Ltibure3", "https://tec.openplanner.team/stops/Lticime1"], ["https://tec.openplanner.team/stops/LRUhama1", "https://tec.openplanner.team/stops/LTowijk2"], ["https://tec.openplanner.team/stops/LeUhaas4", "https://tec.openplanner.team/stops/LeUschi1"], ["https://tec.openplanner.team/stops/X721asa", "https://tec.openplanner.team/stops/X721asb"], ["https://tec.openplanner.team/stops/H1ms254b", "https://tec.openplanner.team/stops/H1ms254d"], ["https://tec.openplanner.team/stops/LbUwhon2", "https://tec.openplanner.team/stops/LhObull1"], ["https://tec.openplanner.team/stops/H2hp124b", "https://tec.openplanner.team/stops/H2hp262b"], ["https://tec.openplanner.team/stops/H1an102a", "https://tec.openplanner.team/stops/H1an102b"], ["https://tec.openplanner.team/stops/Blhupa14", "https://tec.openplanner.team/stops/Blhupcl1"], ["https://tec.openplanner.team/stops/LeUbael1", "https://tec.openplanner.team/stops/LhEauto1"], ["https://tec.openplanner.team/stops/N571aga", "https://tec.openplanner.team/stops/N571aja"], ["https://tec.openplanner.team/stops/Lceegli*", "https://tec.openplanner.team/stops/Lcelhon3"], ["https://tec.openplanner.team/stops/LSemc--2", "https://tec.openplanner.team/stops/LVbstre2"], ["https://tec.openplanner.team/stops/N232aqb", "https://tec.openplanner.team/stops/N232aza"], ["https://tec.openplanner.team/stops/X880afb", "https://tec.openplanner.team/stops/X880aga"], ["https://tec.openplanner.team/stops/Cracime1", "https://tec.openplanner.team/stops/Cracime2"], ["https://tec.openplanner.team/stops/H4bd107a", "https://tec.openplanner.team/stops/H4bd107b"], ["https://tec.openplanner.team/stops/Clvimtr2", "https://tec.openplanner.team/stops/NC02aaa"], ["https://tec.openplanner.team/stops/LARgare1", "https://tec.openplanner.team/stops/Lchmarc1"], ["https://tec.openplanner.team/stops/Bbcogar1", "https://tec.openplanner.team/stops/H3br112b"], ["https://tec.openplanner.team/stops/N531ajb", "https://tec.openplanner.team/stops/N534bxa"], ["https://tec.openplanner.team/stops/X615aub", "https://tec.openplanner.team/stops/X615ava"], ["https://tec.openplanner.team/stops/H4ty340a", "https://tec.openplanner.team/stops/H4ty340b"], ["https://tec.openplanner.team/stops/H1as101b", "https://tec.openplanner.team/stops/H1as104b"], ["https://tec.openplanner.team/stops/Bnilpje2", "https://tec.openplanner.team/stops/Bnilpor3"], ["https://tec.openplanner.team/stops/Lfhbott2", "https://tec.openplanner.team/stops/Lfhnrou2"], ["https://tec.openplanner.team/stops/H1cu110a", "https://tec.openplanner.team/stops/H1fr114a"], ["https://tec.openplanner.team/stops/N348aca", "https://tec.openplanner.team/stops/N353awb"], ["https://tec.openplanner.team/stops/X750aya", "https://tec.openplanner.team/stops/X750baa"], ["https://tec.openplanner.team/stops/LWDbure2", "https://tec.openplanner.team/stops/LWDplac1"], ["https://tec.openplanner.team/stops/N501hra", "https://tec.openplanner.team/stops/N501iob"], ["https://tec.openplanner.team/stops/X636baa", "https://tec.openplanner.team/stops/X636bab"], ["https://tec.openplanner.team/stops/Lhrmeta2", "https://tec.openplanner.team/stops/Lhrunir1"], ["https://tec.openplanner.team/stops/Cgy3012", "https://tec.openplanner.team/stops/Cmtmath2"], ["https://tec.openplanner.team/stops/Clddeve1", "https://tec.openplanner.team/stops/Cmyjaci2"], ["https://tec.openplanner.team/stops/H1ls109a", "https://tec.openplanner.team/stops/H1me118b"], ["https://tec.openplanner.team/stops/H3th126a", "https://tec.openplanner.team/stops/H3th133b"], ["https://tec.openplanner.team/stops/X992aca", "https://tec.openplanner.team/stops/X992ajb"], ["https://tec.openplanner.team/stops/LCOcrom1", "https://tec.openplanner.team/stops/LSNnoul1"], ["https://tec.openplanner.team/stops/Bwavbar1", "https://tec.openplanner.team/stops/Bwavzno1"], ["https://tec.openplanner.team/stops/X948aib", "https://tec.openplanner.team/stops/X948asb"], ["https://tec.openplanner.team/stops/Bptrmar2", "https://tec.openplanner.team/stops/Bptrpla2"], ["https://tec.openplanner.team/stops/N149ada", "https://tec.openplanner.team/stops/N149ahb"], ["https://tec.openplanner.team/stops/Bhalalb2", "https://tec.openplanner.team/stops/Bhalkrk1"], ["https://tec.openplanner.team/stops/Crachap1", "https://tec.openplanner.team/stops/Craplac3"], ["https://tec.openplanner.team/stops/N544agb", "https://tec.openplanner.team/stops/N547adb"], ["https://tec.openplanner.team/stops/X801ala", "https://tec.openplanner.team/stops/X801cka"], ["https://tec.openplanner.team/stops/LBichen1", "https://tec.openplanner.team/stops/LBiroch2"], ["https://tec.openplanner.team/stops/LNCchau1", "https://tec.openplanner.team/stops/LNCvill1"], ["https://tec.openplanner.team/stops/LHumoul1", "https://tec.openplanner.team/stops/LHupont1"], ["https://tec.openplanner.team/stops/LBOholt1", "https://tec.openplanner.team/stops/LMucarr3"], ["https://tec.openplanner.team/stops/X850aib", "https://tec.openplanner.team/stops/X850aja"], ["https://tec.openplanner.team/stops/LBNruns2", "https://tec.openplanner.team/stops/LBNvilv2"], ["https://tec.openplanner.team/stops/Lancoop1", "https://tec.openplanner.team/stops/Lanschu1"], ["https://tec.openplanner.team/stops/LVbsurr2", "https://tec.openplanner.team/stops/NL77ala"], ["https://tec.openplanner.team/stops/Bbstcoi1", "https://tec.openplanner.team/stops/Bbstfch1"], ["https://tec.openplanner.team/stops/X892aaa", "https://tec.openplanner.team/stops/X892adb"], ["https://tec.openplanner.team/stops/X912afa", "https://tec.openplanner.team/stops/X912aga"], ["https://tec.openplanner.team/stops/LBVlamo1", "https://tec.openplanner.team/stops/LMAroch4"], ["https://tec.openplanner.team/stops/LATcorp1", "https://tec.openplanner.team/stops/LHUsaul1"], ["https://tec.openplanner.team/stops/X729aca", "https://tec.openplanner.team/stops/X748adb"], ["https://tec.openplanner.team/stops/H2ll180a", "https://tec.openplanner.team/stops/H2ll184a"], ["https://tec.openplanner.team/stops/H2ha132a", "https://tec.openplanner.team/stops/H2ha139b"], ["https://tec.openplanner.team/stops/Lbrbass2", "https://tec.openplanner.team/stops/Lgrspir1"], ["https://tec.openplanner.team/stops/X942acb", "https://tec.openplanner.team/stops/X942adb"], ["https://tec.openplanner.team/stops/X765aca", "https://tec.openplanner.team/stops/X765acb"], ["https://tec.openplanner.team/stops/Bgdhmet1", "https://tec.openplanner.team/stops/Bgdhmet2"], ["https://tec.openplanner.team/stops/H1si157b", "https://tec.openplanner.team/stops/H1si167a"], ["https://tec.openplanner.team/stops/H2sb234b", "https://tec.openplanner.team/stops/H2sb266a"], ["https://tec.openplanner.team/stops/LHCruyf1", "https://tec.openplanner.team/stops/LHCruyf2"], ["https://tec.openplanner.team/stops/Bgliegl2", "https://tec.openplanner.team/stops/Bglitro3"], ["https://tec.openplanner.team/stops/Lougros1", "https://tec.openplanner.team/stops/Lougros2"], ["https://tec.openplanner.team/stops/N562bjb", "https://tec.openplanner.team/stops/N562bka"], ["https://tec.openplanner.team/stops/Bnivaba1", "https://tec.openplanner.team/stops/Bnivlai2"], ["https://tec.openplanner.team/stops/H1bx107a", "https://tec.openplanner.team/stops/H1bx107b"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X665aab"], ["https://tec.openplanner.team/stops/Bpienod1", "https://tec.openplanner.team/stops/Bpiepnd1"], ["https://tec.openplanner.team/stops/LCvmonu1", "https://tec.openplanner.team/stops/LHXfont1"], ["https://tec.openplanner.team/stops/N221ada", "https://tec.openplanner.team/stops/X394aga"], ["https://tec.openplanner.team/stops/H1ha183a", "https://tec.openplanner.team/stops/H1ha199a"], ["https://tec.openplanner.team/stops/H2mm144a", "https://tec.openplanner.team/stops/H2mo126b"], ["https://tec.openplanner.team/stops/N521aqa", "https://tec.openplanner.team/stops/N521aqb"], ["https://tec.openplanner.team/stops/H4eh102a", "https://tec.openplanner.team/stops/H4wg121b"], ["https://tec.openplanner.team/stops/LVncarr2", "https://tec.openplanner.team/stops/LVnroch1"], ["https://tec.openplanner.team/stops/LAUhost2", "https://tec.openplanner.team/stops/LAUtism2"], ["https://tec.openplanner.team/stops/Livrame1", "https://tec.openplanner.team/stops/LRacime2"], ["https://tec.openplanner.team/stops/X750aob", "https://tec.openplanner.team/stops/X750bdb"], ["https://tec.openplanner.team/stops/N138aab", "https://tec.openplanner.team/stops/N138ajb"], ["https://tec.openplanner.team/stops/H1hw119b", "https://tec.openplanner.team/stops/H1hw124a"], ["https://tec.openplanner.team/stops/N230ada", "https://tec.openplanner.team/stops/N230adb"], ["https://tec.openplanner.team/stops/LLt43--1", "https://tec.openplanner.team/stops/LVHcent2"], ["https://tec.openplanner.team/stops/Bblaall1", "https://tec.openplanner.team/stops/Bblagar7"], ["https://tec.openplanner.team/stops/Lceavia2", "https://tec.openplanner.team/stops/Lcewilm2"], ["https://tec.openplanner.team/stops/Bnivbpe2", "https://tec.openplanner.team/stops/Bnivmon2"], ["https://tec.openplanner.team/stops/X749abb", "https://tec.openplanner.team/stops/X749aca"], ["https://tec.openplanner.team/stops/H1gn147a", "https://tec.openplanner.team/stops/H1gq153b"], ["https://tec.openplanner.team/stops/N232aja", "https://tec.openplanner.team/stops/N232cab"], ["https://tec.openplanner.team/stops/N387aaa", "https://tec.openplanner.team/stops/N387aca"], ["https://tec.openplanner.team/stops/LmOkape1", "https://tec.openplanner.team/stops/LONcroi1"], ["https://tec.openplanner.team/stops/Ccufos72", "https://tec.openplanner.team/stops/Cculpre2"], ["https://tec.openplanner.team/stops/Cgdfoca2", "https://tec.openplanner.team/stops/Cgdfras2"], ["https://tec.openplanner.team/stops/X307aba", "https://tec.openplanner.team/stops/X371aaa"], ["https://tec.openplanner.team/stops/H4te248a", "https://tec.openplanner.team/stops/H4te260b"], ["https://tec.openplanner.team/stops/Bottcli3", "https://tec.openplanner.team/stops/Bottcli4"], ["https://tec.openplanner.team/stops/LVApark1", "https://tec.openplanner.team/stops/LVApark2"], ["https://tec.openplanner.team/stops/Bzlucam1", "https://tec.openplanner.team/stops/Bzlucam2"], ["https://tec.openplanner.team/stops/LJAcime1", "https://tec.openplanner.team/stops/LJAcime2"], ["https://tec.openplanner.team/stops/H4jm117a", "https://tec.openplanner.team/stops/H4ry133b"], ["https://tec.openplanner.team/stops/LmFdorf1", "https://tec.openplanner.team/stops/LmFdorf2"], ["https://tec.openplanner.team/stops/Lmibove3", "https://tec.openplanner.team/stops/Lmigare2"], ["https://tec.openplanner.team/stops/H2an102a", "https://tec.openplanner.team/stops/H2ca102a"], ["https://tec.openplanner.team/stops/Cctstro1", "https://tec.openplanner.team/stops/NC02agc"], ["https://tec.openplanner.team/stops/X995aaa", "https://tec.openplanner.team/stops/X995acb"], ["https://tec.openplanner.team/stops/Lagpn6-2", "https://tec.openplanner.team/stops/Lagsauh1"], ["https://tec.openplanner.team/stops/H1ca107b", "https://tec.openplanner.team/stops/H1ca184b"], ["https://tec.openplanner.team/stops/Lflfort*", "https://tec.openplanner.team/stops/Lflmaxi2"], ["https://tec.openplanner.team/stops/LdElamb2", "https://tec.openplanner.team/stops/LmObahn*"], ["https://tec.openplanner.team/stops/Ccoconf1", "https://tec.openplanner.team/stops/Ccovies2"], ["https://tec.openplanner.team/stops/LOcgdro1", "https://tec.openplanner.team/stops/LOcgdro3"], ["https://tec.openplanner.team/stops/X789aea", "https://tec.openplanner.team/stops/X789agb"], ["https://tec.openplanner.team/stops/LHrfang1", "https://tec.openplanner.team/stops/LHrprie1"], ["https://tec.openplanner.team/stops/H4ka394a", "https://tec.openplanner.team/stops/H4ka394b"], ["https://tec.openplanner.team/stops/X695ala", "https://tec.openplanner.team/stops/X696aha"], ["https://tec.openplanner.team/stops/N505ama", "https://tec.openplanner.team/stops/N505ana"], ["https://tec.openplanner.team/stops/X801aab", "https://tec.openplanner.team/stops/X802aua"], ["https://tec.openplanner.team/stops/Clfpomm1", "https://tec.openplanner.team/stops/Clfpomm2"], ["https://tec.openplanner.team/stops/Lchmarc2", "https://tec.openplanner.team/stops/LHAdeho2"], ["https://tec.openplanner.team/stops/Bwatmco1", "https://tec.openplanner.team/stops/Bwatppa1"], ["https://tec.openplanner.team/stops/LhOholz1", "https://tec.openplanner.team/stops/LhOokat2"], ["https://tec.openplanner.team/stops/X790aia", "https://tec.openplanner.team/stops/X790akc"], ["https://tec.openplanner.team/stops/X222adc", "https://tec.openplanner.team/stops/X919anb"], ["https://tec.openplanner.team/stops/Bosqcim1", "https://tec.openplanner.team/stops/Bosqgar1"], ["https://tec.openplanner.team/stops/Beclron2", "https://tec.openplanner.team/stops/Becltri1"], ["https://tec.openplanner.team/stops/N536aca", "https://tec.openplanner.team/stops/N536acb"], ["https://tec.openplanner.team/stops/LbUjost1", "https://tec.openplanner.team/stops/LbUjost2"], ["https://tec.openplanner.team/stops/Cfcpcov1", "https://tec.openplanner.team/stops/Cfcpcov2"], ["https://tec.openplanner.team/stops/LeLcrem1", "https://tec.openplanner.team/stops/LeLkalt1"], ["https://tec.openplanner.team/stops/Cjualtr2", "https://tec.openplanner.team/stops/Cjuecho1"], ["https://tec.openplanner.team/stops/Lmlbaro2", "https://tec.openplanner.team/stops/Lmlguis2"], ["https://tec.openplanner.team/stops/X982aja", "https://tec.openplanner.team/stops/X982apb"], ["https://tec.openplanner.team/stops/Lgdegli2", "https://tec.openplanner.team/stops/Lgdhall*"], ["https://tec.openplanner.team/stops/LAYgare1", "https://tec.openplanner.team/stops/LAYnias1"], ["https://tec.openplanner.team/stops/X608aaa", "https://tec.openplanner.team/stops/X608aib"], ["https://tec.openplanner.team/stops/LSZmonu5", "https://tec.openplanner.team/stops/LSZstoc2"], ["https://tec.openplanner.team/stops/LRfbeau1", "https://tec.openplanner.team/stops/LSTmeiz1"], ["https://tec.openplanner.team/stops/LSZarze4", "https://tec.openplanner.team/stops/LSZprie1"], ["https://tec.openplanner.team/stops/N209acb", "https://tec.openplanner.team/stops/N209aeb"], ["https://tec.openplanner.team/stops/X781adb", "https://tec.openplanner.team/stops/X781ahb"], ["https://tec.openplanner.team/stops/Cmyfoym2", "https://tec.openplanner.team/stops/Cmypost1"], ["https://tec.openplanner.team/stops/H4ne140a", "https://tec.openplanner.team/stops/H4te413a"], ["https://tec.openplanner.team/stops/H1mv239b", "https://tec.openplanner.team/stops/H1nv325b"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/Cvregl2"], ["https://tec.openplanner.team/stops/H4bo112b", "https://tec.openplanner.team/stops/H4bo182a"], ["https://tec.openplanner.team/stops/LSsaxhe1", "https://tec.openplanner.team/stops/LSsaxhe2"], ["https://tec.openplanner.team/stops/X757aib", "https://tec.openplanner.team/stops/X757aka"], ["https://tec.openplanner.team/stops/Bgrhpos1", "https://tec.openplanner.team/stops/Bgrhpos2"], ["https://tec.openplanner.team/stops/Bhlvgar1", "https://tec.openplanner.team/stops/Bnivn971"], ["https://tec.openplanner.team/stops/LrGzent1", "https://tec.openplanner.team/stops/LsEdorf1"], ["https://tec.openplanner.team/stops/LMEwerg2", "https://tec.openplanner.team/stops/LMIterr1"], ["https://tec.openplanner.team/stops/Blhumpo1", "https://tec.openplanner.team/stops/Blhutco2"], ["https://tec.openplanner.team/stops/Lenabat1", "https://tec.openplanner.team/stops/Lenabat2"], ["https://tec.openplanner.team/stops/H5el105b", "https://tec.openplanner.team/stops/H5el107b"], ["https://tec.openplanner.team/stops/N103aeb", "https://tec.openplanner.team/stops/NH21agb"], ["https://tec.openplanner.team/stops/H4ar101a", "https://tec.openplanner.team/stops/H4lg100a"], ["https://tec.openplanner.team/stops/H2jo164a", "https://tec.openplanner.team/stops/H2jo164b"], ["https://tec.openplanner.team/stops/N510aca", "https://tec.openplanner.team/stops/N510acb"], ["https://tec.openplanner.team/stops/Ccusole2", "https://tec.openplanner.team/stops/Ccuwain2"], ["https://tec.openplanner.team/stops/Bhanath1", "https://tec.openplanner.team/stops/LHNathe1"], ["https://tec.openplanner.team/stops/LWbcarr2", "https://tec.openplanner.team/stops/X512aab"], ["https://tec.openplanner.team/stops/H2hp118a", "https://tec.openplanner.team/stops/H2hp124a"], ["https://tec.openplanner.team/stops/N534bra", "https://tec.openplanner.team/stops/N568aba"], ["https://tec.openplanner.team/stops/Lfhrogn2", "https://tec.openplanner.team/stops/Ljerose4"], ["https://tec.openplanner.team/stops/Llgsnap3", "https://tec.openplanner.team/stops/Llgwiar4"], ["https://tec.openplanner.team/stops/LSZcock2", "https://tec.openplanner.team/stops/LSZpiro1"], ["https://tec.openplanner.team/stops/N550amb", "https://tec.openplanner.team/stops/N565aaa"], ["https://tec.openplanner.team/stops/X818aub", "https://tec.openplanner.team/stops/X818ava"], ["https://tec.openplanner.team/stops/LSOferr3", "https://tec.openplanner.team/stops/LSOferr4"], ["https://tec.openplanner.team/stops/Bperalv1", "https://tec.openplanner.team/stops/Bperwil2"], ["https://tec.openplanner.team/stops/LSGcent2", "https://tec.openplanner.team/stops/LSGeg--2"], ["https://tec.openplanner.team/stops/N529aia", "https://tec.openplanner.team/stops/N529ajb"], ["https://tec.openplanner.team/stops/X602aga", "https://tec.openplanner.team/stops/X602asa"], ["https://tec.openplanner.team/stops/H4bh100a", "https://tec.openplanner.team/stops/H4ry141a"], ["https://tec.openplanner.team/stops/Lseblan*", "https://tec.openplanner.team/stops/Lsedese1"], ["https://tec.openplanner.team/stops/N512ava", "https://tec.openplanner.team/stops/N512awb"], ["https://tec.openplanner.team/stops/N524aha", "https://tec.openplanner.team/stops/N524aka"], ["https://tec.openplanner.team/stops/Cgualno2", "https://tec.openplanner.team/stops/N137aaa"], ["https://tec.openplanner.team/stops/N513baa", "https://tec.openplanner.team/stops/N513bab"], ["https://tec.openplanner.team/stops/H1ob331b", "https://tec.openplanner.team/stops/H1ob333b"], ["https://tec.openplanner.team/stops/Lhrhosp1", "https://tec.openplanner.team/stops/Lhrmilm1"], ["https://tec.openplanner.team/stops/X948aaa", "https://tec.openplanner.team/stops/X948baa"], ["https://tec.openplanner.team/stops/Lvcecol2", "https://tec.openplanner.team/stops/Lvcpost2"], ["https://tec.openplanner.team/stops/Clodesc2", "https://tec.openplanner.team/stops/CMdesc2"], ["https://tec.openplanner.team/stops/X922adb", "https://tec.openplanner.team/stops/X922aeb"], ["https://tec.openplanner.team/stops/H1ho141b", "https://tec.openplanner.team/stops/H1wg127b"], ["https://tec.openplanner.team/stops/N543bnb", "https://tec.openplanner.team/stops/N543bob"], ["https://tec.openplanner.team/stops/LVLgrum1", "https://tec.openplanner.team/stops/LVLhalb1"], ["https://tec.openplanner.team/stops/LHFappe2", "https://tec.openplanner.team/stops/LHFec--3"], ["https://tec.openplanner.team/stops/LAMweha2", "https://tec.openplanner.team/stops/LOmmer-1"], ["https://tec.openplanner.team/stops/LVbcoul1", "https://tec.openplanner.team/stops/NL77amb"], ["https://tec.openplanner.team/stops/Lfhdonn1", "https://tec.openplanner.team/stops/Lfhdonn2"], ["https://tec.openplanner.team/stops/X659aoa", "https://tec.openplanner.team/stops/X659apb"], ["https://tec.openplanner.team/stops/Cmmschw1", "https://tec.openplanner.team/stops/Cmymoha2"], ["https://tec.openplanner.team/stops/Bwatmch2", "https://tec.openplanner.team/stops/Bwatmch3"], ["https://tec.openplanner.team/stops/Cgycvie1", "https://tec.openplanner.team/stops/Cgynuto1"], ["https://tec.openplanner.team/stops/H1le124b", "https://tec.openplanner.team/stops/H1le127b"], ["https://tec.openplanner.team/stops/X601aca", "https://tec.openplanner.team/stops/X601acb"], ["https://tec.openplanner.team/stops/N515aid", "https://tec.openplanner.team/stops/N515aoa"], ["https://tec.openplanner.team/stops/LAvrout1", "https://tec.openplanner.team/stops/LAvrout2"], ["https://tec.openplanner.team/stops/Lantonn2", "https://tec.openplanner.team/stops/Lrccomm1"], ["https://tec.openplanner.team/stops/Bmarcha2", "https://tec.openplanner.team/stops/Bwagsta1"], ["https://tec.openplanner.team/stops/X661axc", "https://tec.openplanner.team/stops/X822acb"], ["https://tec.openplanner.team/stops/N539avb", "https://tec.openplanner.team/stops/N539bbb"], ["https://tec.openplanner.team/stops/Llgdelc*", "https://tec.openplanner.team/stops/Llgnico5"], ["https://tec.openplanner.team/stops/Clsghoy1", "https://tec.openplanner.team/stops/H1ls107a"], ["https://tec.openplanner.team/stops/X812bea", "https://tec.openplanner.team/stops/X813aba"], ["https://tec.openplanner.team/stops/LSHmais2", "https://tec.openplanner.team/stops/LSHries2"], ["https://tec.openplanner.team/stops/LDmdegi1", "https://tec.openplanner.team/stops/LHFhard1"], ["https://tec.openplanner.team/stops/Bgntcbo2", "https://tec.openplanner.team/stops/Bsomjon1"], ["https://tec.openplanner.team/stops/H4bs114a", "https://tec.openplanner.team/stops/H5pe152a"], ["https://tec.openplanner.team/stops/H1hr118b", "https://tec.openplanner.team/stops/H1hr118c"], ["https://tec.openplanner.team/stops/Bcsebea3", "https://tec.openplanner.team/stops/Bcsen251"], ["https://tec.openplanner.team/stops/X804anb", "https://tec.openplanner.team/stops/X804bka"], ["https://tec.openplanner.team/stops/LLmcarr2", "https://tec.openplanner.team/stops/LPUchpl1"], ["https://tec.openplanner.team/stops/Bndb4ch1", "https://tec.openplanner.team/stops/Bndbdra2"], ["https://tec.openplanner.team/stops/X824aha", "https://tec.openplanner.team/stops/X824aib"], ["https://tec.openplanner.team/stops/H5pe141b", "https://tec.openplanner.team/stops/H5pe145b"], ["https://tec.openplanner.team/stops/H1ha194a", "https://tec.openplanner.team/stops/H1ha194b"], ["https://tec.openplanner.team/stops/N534atc", "https://tec.openplanner.team/stops/N534bfb"], ["https://tec.openplanner.team/stops/LBTfoot1", "https://tec.openplanner.team/stops/LBTxhen1"], ["https://tec.openplanner.team/stops/LMAbijo1", "https://tec.openplanner.team/stops/LMAgb--1"], ["https://tec.openplanner.team/stops/H5pe133b", "https://tec.openplanner.team/stops/H5pe149b"], ["https://tec.openplanner.team/stops/X659aya", "https://tec.openplanner.team/stops/X669aaa"], ["https://tec.openplanner.team/stops/X824aed", "https://tec.openplanner.team/stops/X824aia"], ["https://tec.openplanner.team/stops/LWZponb1", "https://tec.openplanner.team/stops/X261abb"], ["https://tec.openplanner.team/stops/X749aab", "https://tec.openplanner.team/stops/X749abb"], ["https://tec.openplanner.team/stops/H1cu125b", "https://tec.openplanner.team/stops/H1cu129b"], ["https://tec.openplanner.team/stops/Llgptlo3", "https://tec.openplanner.team/stops/Llgptlo5"], ["https://tec.openplanner.team/stops/Lkithie2", "https://tec.openplanner.team/stops/Llgstev2"], ["https://tec.openplanner.team/stops/H4ft137a", "https://tec.openplanner.team/stops/H4ft137b"], ["https://tec.openplanner.team/stops/H1ha184a", "https://tec.openplanner.team/stops/H1ha198a"], ["https://tec.openplanner.team/stops/X359aaa", "https://tec.openplanner.team/stops/X359aac"], ["https://tec.openplanner.team/stops/LHNcoll2", "https://tec.openplanner.team/stops/NL37aca"], ["https://tec.openplanner.team/stops/Cgrchas2", "https://tec.openplanner.team/stops/Cgrflac1"], ["https://tec.openplanner.team/stops/X653aca", "https://tec.openplanner.team/stops/X667aab"], ["https://tec.openplanner.team/stops/LJA65h-2", "https://tec.openplanner.team/stops/LJAfawe1"], ["https://tec.openplanner.team/stops/H4ss155a", "https://tec.openplanner.team/stops/H5rx115d"], ["https://tec.openplanner.team/stops/Llghec-1", "https://tec.openplanner.team/stops/Llgreyn1"], ["https://tec.openplanner.team/stops/Lkiecol1", "https://tec.openplanner.team/stops/Lkigare2"], ["https://tec.openplanner.team/stops/H1ls106b", "https://tec.openplanner.team/stops/H1ls107a"], ["https://tec.openplanner.team/stops/LHcbaro2", "https://tec.openplanner.team/stops/LSx309-2"], ["https://tec.openplanner.team/stops/LOdmonu2", "https://tec.openplanner.team/stops/LOdmonu3"], ["https://tec.openplanner.team/stops/X802ada", "https://tec.openplanner.team/stops/X802adb"], ["https://tec.openplanner.team/stops/Lgrdemo1", "https://tec.openplanner.team/stops/Lgrfass1"], ["https://tec.openplanner.team/stops/Cmaduna1", "https://tec.openplanner.team/stops/Cmaduna2"], ["https://tec.openplanner.team/stops/N512apa", "https://tec.openplanner.team/stops/N512ara"], ["https://tec.openplanner.team/stops/LORlieg1", "https://tec.openplanner.team/stops/LORruis1"], ["https://tec.openplanner.team/stops/H1mq199b", "https://tec.openplanner.team/stops/H5ma180a"], ["https://tec.openplanner.team/stops/N141aab", "https://tec.openplanner.team/stops/N141aoa"], ["https://tec.openplanner.team/stops/X788abb", "https://tec.openplanner.team/stops/X788acb"], ["https://tec.openplanner.team/stops/Bsgeegl4", "https://tec.openplanner.team/stops/Bsgetri2"], ["https://tec.openplanner.team/stops/H4tp143a", "https://tec.openplanner.team/stops/H4tp147a"], ["https://tec.openplanner.team/stops/LHAdeho2", "https://tec.openplanner.team/stops/LHAlacr1"], ["https://tec.openplanner.team/stops/X618anb", "https://tec.openplanner.team/stops/X618aoa"], ["https://tec.openplanner.team/stops/Clodesc1", "https://tec.openplanner.team/stops/Clomari4"], ["https://tec.openplanner.team/stops/H1gh150b", "https://tec.openplanner.team/stops/H1gh151a"], ["https://tec.openplanner.team/stops/Lansarm1", "https://tec.openplanner.team/stops/Lansarm2"], ["https://tec.openplanner.team/stops/LRmha262", "https://tec.openplanner.team/stops/LRmmabr1"], ["https://tec.openplanner.team/stops/LMotrem1", "https://tec.openplanner.team/stops/LMotrem2"], ["https://tec.openplanner.team/stops/X206aza", "https://tec.openplanner.team/stops/X206azb"], ["https://tec.openplanner.team/stops/N360aaa", "https://tec.openplanner.team/stops/N360acb"], ["https://tec.openplanner.team/stops/X224adb", "https://tec.openplanner.team/stops/X394aaa"], ["https://tec.openplanner.team/stops/X804cbb", "https://tec.openplanner.team/stops/X818aab"], ["https://tec.openplanner.team/stops/Cmohame2", "https://tec.openplanner.team/stops/Cmychau1"], ["https://tec.openplanner.team/stops/N562ayb", "https://tec.openplanner.team/stops/N562aza"], ["https://tec.openplanner.team/stops/LBjpech2", "https://tec.openplanner.team/stops/LLVerri1"], ["https://tec.openplanner.team/stops/H4fr385a", "https://tec.openplanner.team/stops/H4fr386a"], ["https://tec.openplanner.team/stops/Cjumall2", "https://tec.openplanner.team/stops/Cjumall6"], ["https://tec.openplanner.team/stops/LCtcref1", "https://tec.openplanner.team/stops/X789aha"], ["https://tec.openplanner.team/stops/LAo170-2", "https://tec.openplanner.team/stops/LTPtroi1"], ["https://tec.openplanner.team/stops/X601dbb", "https://tec.openplanner.team/stops/X626abb"], ["https://tec.openplanner.team/stops/X808aaa", "https://tec.openplanner.team/stops/X808aab"], ["https://tec.openplanner.team/stops/Bwagdeb2", "https://tec.openplanner.team/stops/Bwagmco1"], ["https://tec.openplanner.team/stops/H4ml207a", "https://tec.openplanner.team/stops/H4qu230c"], ["https://tec.openplanner.team/stops/H3so161b", "https://tec.openplanner.team/stops/H3so163a"], ["https://tec.openplanner.team/stops/X640afb", "https://tec.openplanner.team/stops/X640ala"], ["https://tec.openplanner.team/stops/Cthalou1", "https://tec.openplanner.team/stops/Cthrpoi1"], ["https://tec.openplanner.team/stops/X952aea", "https://tec.openplanner.team/stops/X952aeb"], ["https://tec.openplanner.team/stops/H4eg101d", "https://tec.openplanner.team/stops/H4eg105a"], ["https://tec.openplanner.team/stops/H1by100a", "https://tec.openplanner.team/stops/H1by100b"], ["https://tec.openplanner.team/stops/Cfcbosq2", "https://tec.openplanner.team/stops/Cfcchen2"], ["https://tec.openplanner.team/stops/Cfrcomp2", "https://tec.openplanner.team/stops/Cfrmon3"], ["https://tec.openplanner.team/stops/N509ata", "https://tec.openplanner.team/stops/N512ama"], ["https://tec.openplanner.team/stops/Lhrchar1", "https://tec.openplanner.team/stops/Lhrdron1"], ["https://tec.openplanner.team/stops/Bkrabhu1", "https://tec.openplanner.team/stops/Bkrapri1"], ["https://tec.openplanner.team/stops/Llghec-1", "https://tec.openplanner.team/stops/Llghec-3"], ["https://tec.openplanner.team/stops/Brixdec1", "https://tec.openplanner.team/stops/Brixres1"], ["https://tec.openplanner.team/stops/LLM4rou3", "https://tec.openplanner.team/stops/LLM4rou5"], ["https://tec.openplanner.team/stops/H4ag106b", "https://tec.openplanner.team/stops/H4ag107a"], ["https://tec.openplanner.team/stops/N501anb", "https://tec.openplanner.team/stops/N501nbb"], ["https://tec.openplanner.team/stops/LSHhade1", "https://tec.openplanner.team/stops/LSOtheu1"], ["https://tec.openplanner.team/stops/Bbgnvel1", "https://tec.openplanner.team/stops/Cwfbarr2"], ["https://tec.openplanner.team/stops/LHCauwe3", "https://tec.openplanner.team/stops/LHCauwe4"], ["https://tec.openplanner.team/stops/LABbert1", "https://tec.openplanner.team/stops/LABvill1"], ["https://tec.openplanner.team/stops/X926aca", "https://tec.openplanner.team/stops/X926adb"], ["https://tec.openplanner.team/stops/N138aaa", "https://tec.openplanner.team/stops/N138aab"], ["https://tec.openplanner.team/stops/H2pe162b", "https://tec.openplanner.team/stops/H3bi115a"], ["https://tec.openplanner.team/stops/Lalbout1", "https://tec.openplanner.team/stops/Lalexpa1"], ["https://tec.openplanner.team/stops/N232bgb", "https://tec.openplanner.team/stops/N232bib"], ["https://tec.openplanner.team/stops/X820aba", "https://tec.openplanner.team/stops/X820adb"], ["https://tec.openplanner.team/stops/Brebpca1", "https://tec.openplanner.team/stops/Brebpca2"], ["https://tec.openplanner.team/stops/Lgrrein1", "https://tec.openplanner.team/stops/Lgrrein2"], ["https://tec.openplanner.team/stops/Cmivert2", "https://tec.openplanner.team/stops/Csecroi2"], ["https://tec.openplanner.team/stops/X773aba", "https://tec.openplanner.team/stops/X773adb"], ["https://tec.openplanner.team/stops/N553afb", "https://tec.openplanner.team/stops/N553alb"], ["https://tec.openplanner.team/stops/H5at129a", "https://tec.openplanner.team/stops/H5at141b"], ["https://tec.openplanner.team/stops/N531afg", "https://tec.openplanner.team/stops/N531afh"], ["https://tec.openplanner.team/stops/H2mg138a", "https://tec.openplanner.team/stops/H2mg143a"], ["https://tec.openplanner.team/stops/X779aea", "https://tec.openplanner.team/stops/X779afa"], ["https://tec.openplanner.team/stops/N254abb", "https://tec.openplanner.team/stops/N254aea"], ["https://tec.openplanner.team/stops/X609aoa", "https://tec.openplanner.team/stops/X609apa"], ["https://tec.openplanner.team/stops/X941aga", "https://tec.openplanner.team/stops/X948aob"], ["https://tec.openplanner.team/stops/H1wa162b", "https://tec.openplanner.team/stops/H1wg131b"], ["https://tec.openplanner.team/stops/X605afb", "https://tec.openplanner.team/stops/X634akb"], ["https://tec.openplanner.team/stops/LBPauto1", "https://tec.openplanner.team/stops/LGLcour4"], ["https://tec.openplanner.team/stops/X720aba", "https://tec.openplanner.team/stops/X720acb"], ["https://tec.openplanner.team/stops/X801bha", "https://tec.openplanner.team/stops/X801cob"], ["https://tec.openplanner.team/stops/H4ru238a", "https://tec.openplanner.team/stops/H4ru241a"], ["https://tec.openplanner.team/stops/LHUathe1", "https://tec.openplanner.team/stops/LHUchpl1"], ["https://tec.openplanner.team/stops/H1tl119b", "https://tec.openplanner.team/stops/H1tl120b"], ["https://tec.openplanner.team/stops/N232aeb", "https://tec.openplanner.team/stops/N232aha"], ["https://tec.openplanner.team/stops/H3br100b", "https://tec.openplanner.team/stops/H3br110b"], ["https://tec.openplanner.team/stops/H4wt159a", "https://tec.openplanner.team/stops/H4wt160b"], ["https://tec.openplanner.team/stops/N584aua", "https://tec.openplanner.team/stops/N584cba"], ["https://tec.openplanner.team/stops/Cmareun2", "https://tec.openplanner.team/stops/Cmazone2"], ["https://tec.openplanner.team/stops/Ccupbro1", "https://tec.openplanner.team/stops/Ccupbro2"], ["https://tec.openplanner.team/stops/X734aja", "https://tec.openplanner.team/stops/X734ajb"], ["https://tec.openplanner.team/stops/LbRkirc2", "https://tec.openplanner.team/stops/LwTkabi2"], ["https://tec.openplanner.team/stops/H1by100b", "https://tec.openplanner.team/stops/H1by101b"], ["https://tec.openplanner.team/stops/H4bi100b", "https://tec.openplanner.team/stops/H4bi156a"], ["https://tec.openplanner.team/stops/LHEzoni1", "https://tec.openplanner.team/stops/LHEzoni2"], ["https://tec.openplanner.team/stops/H4ld127a", "https://tec.openplanner.team/stops/H4to138b"], ["https://tec.openplanner.team/stops/X626aaa", "https://tec.openplanner.team/stops/X626akb"], ["https://tec.openplanner.team/stops/Ladjuif2", "https://tec.openplanner.team/stops/Ladwooz2"], ["https://tec.openplanner.team/stops/H4ag107a", "https://tec.openplanner.team/stops/H4pe128b"], ["https://tec.openplanner.team/stops/H1bb120a", "https://tec.openplanner.team/stops/H1bb120b"], ["https://tec.openplanner.team/stops/H4ka188b", "https://tec.openplanner.team/stops/H4ka393b"], ["https://tec.openplanner.team/stops/H4wi166a", "https://tec.openplanner.team/stops/H4wi167a"], ["https://tec.openplanner.team/stops/Lalparc2", "https://tec.openplanner.team/stops/Lalverr1"], ["https://tec.openplanner.team/stops/LwYboui1", "https://tec.openplanner.team/stops/LwYcafe1"], ["https://tec.openplanner.team/stops/LFRhock2", "https://tec.openplanner.team/stops/LFRhock4"], ["https://tec.openplanner.team/stops/Bhengri1", "https://tec.openplanner.team/stops/Bhengri2"], ["https://tec.openplanner.team/stops/Llggcha1", "https://tec.openplanner.team/stops/Llggcha4"], ["https://tec.openplanner.team/stops/N310aaa", "https://tec.openplanner.team/stops/N310abb"], ["https://tec.openplanner.team/stops/N519ada", "https://tec.openplanner.team/stops/N519alb"], ["https://tec.openplanner.team/stops/N242ada", "https://tec.openplanner.team/stops/N251abb"], ["https://tec.openplanner.team/stops/LATdieu1", "https://tec.openplanner.team/stops/LATmonu2"], ["https://tec.openplanner.team/stops/N874aab", "https://tec.openplanner.team/stops/N874acb"], ["https://tec.openplanner.team/stops/H2tr255a", "https://tec.openplanner.team/stops/H2tr256b"], ["https://tec.openplanner.team/stops/H1ne139a", "https://tec.openplanner.team/stops/H1ne141a"], ["https://tec.openplanner.team/stops/X804bgb", "https://tec.openplanner.team/stops/X804bqa"], ["https://tec.openplanner.team/stops/X876aca", "https://tec.openplanner.team/stops/X876acb"], ["https://tec.openplanner.team/stops/N218acc", "https://tec.openplanner.team/stops/N218aea"], ["https://tec.openplanner.team/stops/Cstdona2", "https://tec.openplanner.team/stops/Cstdona5"], ["https://tec.openplanner.team/stops/LBNvill3", "https://tec.openplanner.team/stops/LBNvill6"], ["https://tec.openplanner.team/stops/H4bf107b", "https://tec.openplanner.team/stops/H4bn100a"], ["https://tec.openplanner.team/stops/X926aaa", "https://tec.openplanner.team/stops/X926aab"], ["https://tec.openplanner.team/stops/N509aia", "https://tec.openplanner.team/stops/N509aib"], ["https://tec.openplanner.team/stops/H4fr145a", "https://tec.openplanner.team/stops/H4ma418a"], ["https://tec.openplanner.team/stops/H4er121a", "https://tec.openplanner.team/stops/H4ty331b"], ["https://tec.openplanner.team/stops/LNCchau3", "https://tec.openplanner.team/stops/LNCmada1"], ["https://tec.openplanner.team/stops/Cvpsncb2", "https://tec.openplanner.team/stops/Cvpsthu1"], ["https://tec.openplanner.team/stops/H4pl112b", "https://tec.openplanner.team/stops/H4pl115b"], ["https://tec.openplanner.team/stops/LlgguilA", "https://tec.openplanner.team/stops/Llgoise2"], ["https://tec.openplanner.team/stops/Llglill2", "https://tec.openplanner.team/stops/Llgrull2"], ["https://tec.openplanner.team/stops/Cjuheig1", "https://tec.openplanner.team/stops/Crobass2"], ["https://tec.openplanner.team/stops/Buccpin2", "https://tec.openplanner.team/stops/Bwbfhip2"], ["https://tec.openplanner.team/stops/LETtemp1", "https://tec.openplanner.team/stops/Lrevaul2"], ["https://tec.openplanner.team/stops/LBIcabi1", "https://tec.openplanner.team/stops/LBIvill1"], ["https://tec.openplanner.team/stops/LSPdesc1", "https://tec.openplanner.team/stops/LSPther1"], ["https://tec.openplanner.team/stops/Cclbarb1", "https://tec.openplanner.team/stops/Cclmoul2"], ["https://tec.openplanner.team/stops/Ljuvieu2", "https://tec.openplanner.team/stops/LMFmerl2"], ["https://tec.openplanner.team/stops/X869aaa", "https://tec.openplanner.team/stops/X869aca"], ["https://tec.openplanner.team/stops/LHumoul1", "https://tec.openplanner.team/stops/LMfbacu1"], ["https://tec.openplanner.team/stops/N557abb", "https://tec.openplanner.team/stops/N557agb"], ["https://tec.openplanner.team/stops/X369aca", "https://tec.openplanner.team/stops/X369acb"], ["https://tec.openplanner.team/stops/H4fl115a", "https://tec.openplanner.team/stops/H4lp124a"], ["https://tec.openplanner.team/stops/X725aab", "https://tec.openplanner.team/stops/X754axa"], ["https://tec.openplanner.team/stops/H4bc102a", "https://tec.openplanner.team/stops/H4wr174a"], ["https://tec.openplanner.team/stops/LAWcorn4", "https://tec.openplanner.team/stops/LAWvill1"], ["https://tec.openplanner.team/stops/Lroeg--3", "https://tec.openplanner.team/stops/Lromc--1"], ["https://tec.openplanner.team/stops/Beclfde2", "https://tec.openplanner.team/stops/H2fa103b"], ["https://tec.openplanner.team/stops/Ctipoui2", "https://tec.openplanner.team/stops/Ctisart1"], ["https://tec.openplanner.team/stops/LAUtism1", "https://tec.openplanner.team/stops/LAUvict3"], ["https://tec.openplanner.team/stops/X601aqb", "https://tec.openplanner.team/stops/X601bha"], ["https://tec.openplanner.team/stops/Chpfoli3", "https://tec.openplanner.team/stops/Chpfoli4"], ["https://tec.openplanner.team/stops/N232bwa", "https://tec.openplanner.team/stops/N260aba"], ["https://tec.openplanner.team/stops/N135ata", "https://tec.openplanner.team/stops/N135atb"], ["https://tec.openplanner.team/stops/X743agb", "https://tec.openplanner.team/stops/X749aeb"], ["https://tec.openplanner.team/stops/NL76afa", "https://tec.openplanner.team/stops/NL76ahb"], ["https://tec.openplanner.team/stops/Bmoucnd2", "https://tec.openplanner.team/stops/Bmouegl2"], ["https://tec.openplanner.team/stops/LBEchan2", "https://tec.openplanner.team/stops/LBEtroo1"], ["https://tec.openplanner.team/stops/LSG111-1", "https://tec.openplanner.team/stops/LSkoran2"], ["https://tec.openplanner.team/stops/Bwavnam2", "https://tec.openplanner.team/stops/Bwavpao1"], ["https://tec.openplanner.team/stops/N543axa", "https://tec.openplanner.team/stops/N543bgc"], ["https://tec.openplanner.team/stops/X908aha", "https://tec.openplanner.team/stops/X908aib"], ["https://tec.openplanner.team/stops/LFfeg--1", "https://tec.openplanner.team/stops/Lmapomm1"], ["https://tec.openplanner.team/stops/H2sb224a", "https://tec.openplanner.team/stops/H2sb236d"], ["https://tec.openplanner.team/stops/Ccigill2", "https://tec.openplanner.team/stops/Ccigill3"], ["https://tec.openplanner.team/stops/X768aib", "https://tec.openplanner.team/stops/X768aja"], ["https://tec.openplanner.team/stops/Cflchap2", "https://tec.openplanner.team/stops/Cflsncb3"], ["https://tec.openplanner.team/stops/X657aeb", "https://tec.openplanner.team/stops/X742acb"], ["https://tec.openplanner.team/stops/X941acd", "https://tec.openplanner.team/stops/X941aeb"], ["https://tec.openplanner.team/stops/LWDfuma2", "https://tec.openplanner.team/stops/LWDsieg2"], ["https://tec.openplanner.team/stops/Ctufleu1", "https://tec.openplanner.team/stops/Ctufleu4"], ["https://tec.openplanner.team/stops/H5rx101b", "https://tec.openplanner.team/stops/H5rx105b"], ["https://tec.openplanner.team/stops/Lseegva1", "https://tec.openplanner.team/stops/Lsefive2"], ["https://tec.openplanner.team/stops/Cwfdupo1", "https://tec.openplanner.team/stops/Cwfzola1"], ["https://tec.openplanner.team/stops/Caibino1", "https://tec.openplanner.team/stops/N554aab"], ["https://tec.openplanner.team/stops/X614aia", "https://tec.openplanner.team/stops/X623aab"], ["https://tec.openplanner.team/stops/H4ag104a", "https://tec.openplanner.team/stops/H4ag106b"], ["https://tec.openplanner.team/stops/LWEcite2", "https://tec.openplanner.team/stops/LWEpl--1"], ["https://tec.openplanner.team/stops/LJvbane1", "https://tec.openplanner.team/stops/X576aba"], ["https://tec.openplanner.team/stops/LbUbisc1", "https://tec.openplanner.team/stops/LbUhons1"], ["https://tec.openplanner.team/stops/LFNhame1", "https://tec.openplanner.team/stops/LFNlato1"], ["https://tec.openplanner.team/stops/LBNhegg2", "https://tec.openplanner.team/stops/LBNvilv2"], ["https://tec.openplanner.team/stops/Bsmgegl2", "https://tec.openplanner.team/stops/Bsmgpla2"], ["https://tec.openplanner.team/stops/Ctrecol1", "https://tec.openplanner.team/stops/Ctrecol2"], ["https://tec.openplanner.team/stops/LBjpech1", "https://tec.openplanner.team/stops/LBjpech2"], ["https://tec.openplanner.team/stops/X616aaa", "https://tec.openplanner.team/stops/X616aab"], ["https://tec.openplanner.team/stops/X619agb", "https://tec.openplanner.team/stops/X619aka"], ["https://tec.openplanner.team/stops/X888aca", "https://tec.openplanner.team/stops/X888acb"], ["https://tec.openplanner.team/stops/N564aaa", "https://tec.openplanner.team/stops/N564afa"], ["https://tec.openplanner.team/stops/X919abb", "https://tec.openplanner.team/stops/X919aca"], ["https://tec.openplanner.team/stops/Crccarr1", "https://tec.openplanner.team/stops/Crccarr2"], ["https://tec.openplanner.team/stops/Cgygazo1", "https://tec.openplanner.team/stops/Cgylouv2"], ["https://tec.openplanner.team/stops/N149agb", "https://tec.openplanner.team/stops/N149ahb"], ["https://tec.openplanner.team/stops/X806acb", "https://tec.openplanner.team/stops/X872aaa"], ["https://tec.openplanner.team/stops/H1qu104a", "https://tec.openplanner.team/stops/H1wl126a"], ["https://tec.openplanner.team/stops/N505amb", "https://tec.openplanner.team/stops/N505ana"], ["https://tec.openplanner.team/stops/LFEland2", "https://tec.openplanner.team/stops/LMYchpl1"], ["https://tec.openplanner.team/stops/N502aba", "https://tec.openplanner.team/stops/N509ana"], ["https://tec.openplanner.team/stops/LHZbren2", "https://tec.openplanner.team/stops/LHZcime2"], ["https://tec.openplanner.team/stops/X767aab", "https://tec.openplanner.team/stops/X767aba"], ["https://tec.openplanner.team/stops/X601aud", "https://tec.openplanner.team/stops/X601baa"], ["https://tec.openplanner.team/stops/LFmbure2", "https://tec.openplanner.team/stops/LFmroye1"], ["https://tec.openplanner.team/stops/LGegare1", "https://tec.openplanner.team/stops/LVAgemm1"], ["https://tec.openplanner.team/stops/Beclfde1", "https://tec.openplanner.team/stops/Beclfde2"], ["https://tec.openplanner.team/stops/Becepri1", "https://tec.openplanner.team/stops/H2ec112a"], ["https://tec.openplanner.team/stops/N512aqb", "https://tec.openplanner.team/stops/N512asa"], ["https://tec.openplanner.team/stops/Cfldand2", "https://tec.openplanner.team/stops/Cflfaub1"], ["https://tec.openplanner.team/stops/H1ol137b", "https://tec.openplanner.team/stops/H1ol143a"], ["https://tec.openplanner.team/stops/N531aba", "https://tec.openplanner.team/stops/N574aca"], ["https://tec.openplanner.team/stops/X657afa", "https://tec.openplanner.team/stops/X671aaa"], ["https://tec.openplanner.team/stops/X825aba", "https://tec.openplanner.team/stops/X825abb"], ["https://tec.openplanner.team/stops/LLreque2", "https://tec.openplanner.team/stops/LLrfont2"], ["https://tec.openplanner.team/stops/Cctptsa1", "https://tec.openplanner.team/stops/Cctsncb3"], ["https://tec.openplanner.team/stops/LHMbelv1", "https://tec.openplanner.team/stops/LHMmarq1"], ["https://tec.openplanner.team/stops/LaM266-1", "https://tec.openplanner.team/stops/LaM266-2"], ["https://tec.openplanner.team/stops/Cgxalli1", "https://tec.openplanner.team/stops/Cgxcite2"], ["https://tec.openplanner.team/stops/X730aea", "https://tec.openplanner.team/stops/X730afa"], ["https://tec.openplanner.team/stops/X770aeb", "https://tec.openplanner.team/stops/X774adb"], ["https://tec.openplanner.team/stops/N120adc", "https://tec.openplanner.team/stops/N120aha"], ["https://tec.openplanner.team/stops/N531aja", "https://tec.openplanner.team/stops/N531ata"], ["https://tec.openplanner.team/stops/Cauwauq1", "https://tec.openplanner.team/stops/N530agb"], ["https://tec.openplanner.team/stops/Ccuhaie2", "https://tec.openplanner.team/stops/Ccuphai3"], ["https://tec.openplanner.team/stops/Lvtcime2", "https://tec.openplanner.team/stops/Lvteg--1"], ["https://tec.openplanner.team/stops/LFtcarr1", "https://tec.openplanner.team/stops/X599afd"], ["https://tec.openplanner.team/stops/LSdbote2", "https://tec.openplanner.team/stops/LSdcarr2"], ["https://tec.openplanner.team/stops/LAyabri2", "https://tec.openplanner.team/stops/Lrechap2"], ["https://tec.openplanner.team/stops/N207adc", "https://tec.openplanner.team/stops/N209aaa"], ["https://tec.openplanner.team/stops/X904afa", "https://tec.openplanner.team/stops/X904aia"], ["https://tec.openplanner.team/stops/Cfcecol2", "https://tec.openplanner.team/stops/Cfcpla2"], ["https://tec.openplanner.team/stops/N501aea", "https://tec.openplanner.team/stops/N502ada"], ["https://tec.openplanner.team/stops/Clbchar2", "https://tec.openplanner.team/stops/Clbhour1"], ["https://tec.openplanner.team/stops/H3lr109b", "https://tec.openplanner.team/stops/H3lr121b"], ["https://tec.openplanner.team/stops/Clddelh2", "https://tec.openplanner.team/stops/Cmyjaci2"], ["https://tec.openplanner.team/stops/LHUlebe4", "https://tec.openplanner.team/stops/LHUlebe9"], ["https://tec.openplanner.team/stops/X648aaa", "https://tec.openplanner.team/stops/X648aab"], ["https://tec.openplanner.team/stops/LSGeg--1", "https://tec.openplanner.team/stops/LSGeg--3"], ["https://tec.openplanner.team/stops/X615aza", "https://tec.openplanner.team/stops/X615azb"], ["https://tec.openplanner.team/stops/N513aba", "https://tec.openplanner.team/stops/N513aeb"], ["https://tec.openplanner.team/stops/Lmlchev2", "https://tec.openplanner.team/stops/Lpoprie1"], ["https://tec.openplanner.team/stops/N538ahb", "https://tec.openplanner.team/stops/N538aja"], ["https://tec.openplanner.team/stops/Chpatel2", "https://tec.openplanner.team/stops/Chpcarp2"], ["https://tec.openplanner.team/stops/N511ata", "https://tec.openplanner.team/stops/N511aua"], ["https://tec.openplanner.team/stops/Cbbcent2", "https://tec.openplanner.team/stops/Cvregl2"], ["https://tec.openplanner.team/stops/X807aaa", "https://tec.openplanner.team/stops/X807acb"], ["https://tec.openplanner.team/stops/Lagcile2", "https://tec.openplanner.team/stops/Llgcond2"], ["https://tec.openplanner.team/stops/LTIdumo1", "https://tec.openplanner.team/stops/LTIdumo2"], ["https://tec.openplanner.team/stops/X744aba", "https://tec.openplanner.team/stops/X744aca"], ["https://tec.openplanner.team/stops/Bbldmun2", "https://tec.openplanner.team/stops/Bhaawdr2"], ["https://tec.openplanner.team/stops/H1do116a", "https://tec.openplanner.team/stops/H1pd141b"], ["https://tec.openplanner.team/stops/LBSnouw2", "https://tec.openplanner.team/stops/LBSvi322"], ["https://tec.openplanner.team/stops/H4cr111a", "https://tec.openplanner.team/stops/H4ff120b"], ["https://tec.openplanner.team/stops/Loucent1", "https://tec.openplanner.team/stops/Loucorn1"], ["https://tec.openplanner.team/stops/LVIdepo2", "https://tec.openplanner.team/stops/LVIdepo3"], ["https://tec.openplanner.team/stops/LBaeg--2", "https://tec.openplanner.team/stops/LBamate2"], ["https://tec.openplanner.team/stops/X904aea", "https://tec.openplanner.team/stops/X904aeb"], ["https://tec.openplanner.team/stops/H3so155b", "https://tec.openplanner.team/stops/H3so175a"], ["https://tec.openplanner.team/stops/H4be105a", "https://tec.openplanner.team/stops/H4be113a"], ["https://tec.openplanner.team/stops/Cctpass2", "https://tec.openplanner.team/stops/Ccuhsti2"], ["https://tec.openplanner.team/stops/Bcerpco1", "https://tec.openplanner.team/stops/Blasbh51"], ["https://tec.openplanner.team/stops/Lsedese2", "https://tec.openplanner.team/stops/Lseserv1"], ["https://tec.openplanner.team/stops/Cgocalv3", "https://tec.openplanner.team/stops/Cgofabr1"], ["https://tec.openplanner.team/stops/Bwaanwi1", "https://tec.openplanner.team/stops/LWSstat1"], ["https://tec.openplanner.team/stops/LHUpsar2", "https://tec.openplanner.team/stops/LHUvege2"], ["https://tec.openplanner.team/stops/LTEcamp1", "https://tec.openplanner.team/stops/LTEnuro2"], ["https://tec.openplanner.team/stops/N512afa", "https://tec.openplanner.team/stops/N512ahb"], ["https://tec.openplanner.team/stops/H5rx102b", "https://tec.openplanner.team/stops/H5rx115d"], ["https://tec.openplanner.team/stops/LWAchpg1", "https://tec.openplanner.team/stops/LWAhart1"], ["https://tec.openplanner.team/stops/H4lz117a", "https://tec.openplanner.team/stops/H4lz122a"], ["https://tec.openplanner.team/stops/N212aka", "https://tec.openplanner.team/stops/N212atb"], ["https://tec.openplanner.team/stops/Ljemont1", "https://tec.openplanner.team/stops/Ljewale2"], ["https://tec.openplanner.team/stops/LwMzoll1", "https://tec.openplanner.team/stops/X761aaa"], ["https://tec.openplanner.team/stops/X396aab", "https://tec.openplanner.team/stops/X917aka"], ["https://tec.openplanner.team/stops/N520aba", "https://tec.openplanner.team/stops/N520ajb"], ["https://tec.openplanner.team/stops/LSSvill1", "https://tec.openplanner.team/stops/LSSvill3"], ["https://tec.openplanner.team/stops/H4mo137b", "https://tec.openplanner.team/stops/H4wa148a"], ["https://tec.openplanner.team/stops/Bsamlon1", "https://tec.openplanner.team/stops/Bwagpco1"], ["https://tec.openplanner.team/stops/LLnec--1", "https://tec.openplanner.team/stops/LLnlimb1"], ["https://tec.openplanner.team/stops/LwAkett1", "https://tec.openplanner.team/stops/LwAstum2"], ["https://tec.openplanner.team/stops/N383aea", "https://tec.openplanner.team/stops/N874aja"], ["https://tec.openplanner.team/stops/X601bna", "https://tec.openplanner.team/stops/X601dga"], ["https://tec.openplanner.team/stops/Lchsaeg1", "https://tec.openplanner.team/stops/Lchsaeg2"], ["https://tec.openplanner.team/stops/H1he110b", "https://tec.openplanner.team/stops/H1he111b"], ["https://tec.openplanner.team/stops/H4au144a", "https://tec.openplanner.team/stops/H4og211b"], ["https://tec.openplanner.team/stops/N321aca", "https://tec.openplanner.team/stops/N321adb"], ["https://tec.openplanner.team/stops/X615bcb", "https://tec.openplanner.team/stops/X615bdb"], ["https://tec.openplanner.team/stops/N151aba", "https://tec.openplanner.team/stops/N151abb"], ["https://tec.openplanner.team/stops/LMapark3", "https://tec.openplanner.team/stops/LMawilh4"], ["https://tec.openplanner.team/stops/Lprsher1", "https://tec.openplanner.team/stops/Lprthie2"], ["https://tec.openplanner.team/stops/Llgptlo1", "https://tec.openplanner.team/stops/Llgptlo4"], ["https://tec.openplanner.team/stops/H4lg102a", "https://tec.openplanner.team/stops/H4lg106a"], ["https://tec.openplanner.team/stops/N536aea", "https://tec.openplanner.team/stops/N580aab"], ["https://tec.openplanner.team/stops/Cpcndce1", "https://tec.openplanner.team/stops/Cpcndce2"], ["https://tec.openplanner.team/stops/Lbocime2", "https://tec.openplanner.team/stops/Lbomc--5"], ["https://tec.openplanner.team/stops/X660ada", "https://tec.openplanner.team/stops/X660adb"], ["https://tec.openplanner.team/stops/Cgomerm1", "https://tec.openplanner.team/stops/Chpfoli3"], ["https://tec.openplanner.team/stops/X601asb", "https://tec.openplanner.team/stops/X601csb"], ["https://tec.openplanner.team/stops/Bjdsbro1", "https://tec.openplanner.team/stops/Bjdsbro2"], ["https://tec.openplanner.team/stops/N160ahb", "https://tec.openplanner.team/stops/NC14aub"], ["https://tec.openplanner.team/stops/Bchapir1", "https://tec.openplanner.team/stops/Bcrnncb2"], ["https://tec.openplanner.team/stops/Bmalsmc2", "https://tec.openplanner.team/stops/Btlbcha1"], ["https://tec.openplanner.team/stops/LBJlieg2", "https://tec.openplanner.team/stops/LBrbern1"], ["https://tec.openplanner.team/stops/Bspkkhe1", "https://tec.openplanner.team/stops/H1mk116b"], ["https://tec.openplanner.team/stops/X949aha", "https://tec.openplanner.team/stops/X949ahb"], ["https://tec.openplanner.team/stops/Cflhano1", "https://tec.openplanner.team/stops/Cwfmoul2"], ["https://tec.openplanner.team/stops/LSsmond1", "https://tec.openplanner.team/stops/LSssurl2"], ["https://tec.openplanner.team/stops/Cmlbeau2", "https://tec.openplanner.team/stops/Cmlrous1"], ["https://tec.openplanner.team/stops/X659ara", "https://tec.openplanner.team/stops/X672aha"], ["https://tec.openplanner.team/stops/LMOecsp3", "https://tec.openplanner.team/stops/LMOm64-1"], ["https://tec.openplanner.team/stops/Lanlona2", "https://tec.openplanner.team/stops/Lantonn2"], ["https://tec.openplanner.team/stops/H4cw107b", "https://tec.openplanner.team/stops/H4lz161b"], ["https://tec.openplanner.team/stops/Cacgare2", "https://tec.openplanner.team/stops/NC24aeb"], ["https://tec.openplanner.team/stops/LVMfoli2", "https://tec.openplanner.team/stops/LVMrout2"], ["https://tec.openplanner.team/stops/Clgpavi1", "https://tec.openplanner.team/stops/Clgpavi2"], ["https://tec.openplanner.team/stops/X730aaa", "https://tec.openplanner.team/stops/X753acb"], ["https://tec.openplanner.team/stops/N423aea", "https://tec.openplanner.team/stops/N423afb"], ["https://tec.openplanner.team/stops/X664aea", "https://tec.openplanner.team/stops/X664aeb"], ["https://tec.openplanner.team/stops/H4ty305a", "https://tec.openplanner.team/stops/H4ty406a"], ["https://tec.openplanner.team/stops/LSldurb2", "https://tec.openplanner.team/stops/X919aia"], ["https://tec.openplanner.team/stops/H4mb202a", "https://tec.openplanner.team/stops/H4mb205b"], ["https://tec.openplanner.team/stops/Llgbaro1", "https://tec.openplanner.team/stops/Llgglai2"], ["https://tec.openplanner.team/stops/X747aca", "https://tec.openplanner.team/stops/X747ada"], ["https://tec.openplanner.team/stops/X608ama", "https://tec.openplanner.team/stops/X608aob"], ["https://tec.openplanner.team/stops/Cmmserv2", "https://tec.openplanner.team/stops/Cmmserv4"], ["https://tec.openplanner.team/stops/H1wi150a", "https://tec.openplanner.team/stops/H1wi150b"], ["https://tec.openplanner.team/stops/H4lp121b", "https://tec.openplanner.team/stops/H4mg139a"], ["https://tec.openplanner.team/stops/LRmstat2", "https://tec.openplanner.team/stops/LTEziho2"], ["https://tec.openplanner.team/stops/N506apb", "https://tec.openplanner.team/stops/N537aia"], ["https://tec.openplanner.team/stops/X995aba", "https://tec.openplanner.team/stops/X995acb"], ["https://tec.openplanner.team/stops/Ljecocc1", "https://tec.openplanner.team/stops/Ljecoqu1"], ["https://tec.openplanner.team/stops/X801asa", "https://tec.openplanner.team/stops/X801avb"], ["https://tec.openplanner.team/stops/Ccogrha2", "https://tec.openplanner.team/stops/Ccomiau2"], ["https://tec.openplanner.team/stops/H4fo115a", "https://tec.openplanner.team/stops/H4ga162a"], ["https://tec.openplanner.team/stops/LHCpaci2", "https://tec.openplanner.team/stops/LMNpann2"], ["https://tec.openplanner.team/stops/N501bia", "https://tec.openplanner.team/stops/N501bla"], ["https://tec.openplanner.team/stops/LoUhein2", "https://tec.openplanner.team/stops/LoUpete2"], ["https://tec.openplanner.team/stops/X354aaa", "https://tec.openplanner.team/stops/X354abb"], ["https://tec.openplanner.team/stops/H4he101a", "https://tec.openplanner.team/stops/H4po130a"], ["https://tec.openplanner.team/stops/Bbiepre2", "https://tec.openplanner.team/stops/Bboncgs1"], ["https://tec.openplanner.team/stops/X597agb", "https://tec.openplanner.team/stops/X597aqb"], ["https://tec.openplanner.team/stops/H2na135b", "https://tec.openplanner.team/stops/H3so169a"], ["https://tec.openplanner.team/stops/Bwatcha1", "https://tec.openplanner.team/stops/Bwatcha3"], ["https://tec.openplanner.team/stops/Baudhan1", "https://tec.openplanner.team/stops/Baudstr1"], ["https://tec.openplanner.team/stops/Lseconc2", "https://tec.openplanner.team/stops/Lsehaut1"], ["https://tec.openplanner.team/stops/X999agb", "https://tec.openplanner.team/stops/X999aib"], ["https://tec.openplanner.team/stops/Brsrbbo1", "https://tec.openplanner.team/stops/Brsrbbo2"], ["https://tec.openplanner.team/stops/N103afa", "https://tec.openplanner.team/stops/N103agb"], ["https://tec.openplanner.team/stops/N166aaa", "https://tec.openplanner.team/stops/N167agb"], ["https://tec.openplanner.team/stops/LLRbleh2", "https://tec.openplanner.team/stops/LLRptma1"], ["https://tec.openplanner.team/stops/LaRkape2", "https://tec.openplanner.team/stops/LoDscha2"], ["https://tec.openplanner.team/stops/X747aka", "https://tec.openplanner.team/stops/X754afb"], ["https://tec.openplanner.team/stops/Lsecoop2", "https://tec.openplanner.team/stops/Lsetroq2"], ["https://tec.openplanner.team/stops/X899aaa", "https://tec.openplanner.team/stops/X899aca"], ["https://tec.openplanner.team/stops/Ccheden2", "https://tec.openplanner.team/stops/Cchfran1"], ["https://tec.openplanner.team/stops/N501dsb", "https://tec.openplanner.team/stops/N501eza"], ["https://tec.openplanner.team/stops/LCxcham2", "https://tec.openplanner.team/stops/LCxhall2"], ["https://tec.openplanner.team/stops/Lrc594-2", "https://tec.openplanner.team/stops/Lrclant3"], ["https://tec.openplanner.team/stops/H4bq100c", "https://tec.openplanner.team/stops/H4bq154b"], ["https://tec.openplanner.team/stops/LOV48--2", "https://tec.openplanner.team/stops/LOV62--2"], ["https://tec.openplanner.team/stops/Bglacsr1", "https://tec.openplanner.team/stops/Bmrssmc1"], ["https://tec.openplanner.team/stops/N515aob", "https://tec.openplanner.team/stops/NR27aab"], ["https://tec.openplanner.team/stops/H4hu115b", "https://tec.openplanner.team/stops/H4ld124a"], ["https://tec.openplanner.team/stops/LCleg--1", "https://tec.openplanner.team/stops/LCleg--2"], ["https://tec.openplanner.team/stops/H2go114a", "https://tec.openplanner.team/stops/H2go114b"], ["https://tec.openplanner.team/stops/N501byb", "https://tec.openplanner.team/stops/N501jla"], ["https://tec.openplanner.team/stops/X762aea", "https://tec.openplanner.team/stops/X762afa"], ["https://tec.openplanner.team/stops/Candett1", "https://tec.openplanner.team/stops/H1mg109a"], ["https://tec.openplanner.team/stops/N501bjy", "https://tec.openplanner.team/stops/N501jbb"], ["https://tec.openplanner.team/stops/X812ana", "https://tec.openplanner.team/stops/X812aua"], ["https://tec.openplanner.team/stops/Brixga13", "https://tec.openplanner.team/stops/Brixpla1"], ["https://tec.openplanner.team/stops/Cauglac2", "https://tec.openplanner.team/stops/Ctapn2"], ["https://tec.openplanner.team/stops/H1eu107a", "https://tec.openplanner.team/stops/H1fr113b"], ["https://tec.openplanner.team/stops/Lmoboeu2", "https://tec.openplanner.team/stops/Lmoknae4"], ["https://tec.openplanner.team/stops/N506aga", "https://tec.openplanner.team/stops/N506ahb"], ["https://tec.openplanner.team/stops/X728ada", "https://tec.openplanner.team/stops/X746acb"], ["https://tec.openplanner.team/stops/N348aba", "https://tec.openplanner.team/stops/N348abb"], ["https://tec.openplanner.team/stops/Lhrmura1", "https://tec.openplanner.team/stops/Lhrthie1"], ["https://tec.openplanner.team/stops/Bbauham2", "https://tec.openplanner.team/stops/Blilgar1"], ["https://tec.openplanner.team/stops/N209aic", "https://tec.openplanner.team/stops/N209aja"], ["https://tec.openplanner.team/stops/LBXhacb1", "https://tec.openplanner.team/stops/LMolone1"], ["https://tec.openplanner.team/stops/Lagjado2", "https://tec.openplanner.team/stops/Lagjado6"], ["https://tec.openplanner.team/stops/LHUfonc2", "https://tec.openplanner.team/stops/LHUhaum2"], ["https://tec.openplanner.team/stops/Lrctec-2", "https://tec.openplanner.team/stops/Lrcvill2"], ["https://tec.openplanner.team/stops/NL37ala", "https://tec.openplanner.team/stops/NL74aja"], ["https://tec.openplanner.team/stops/LAwec--2", "https://tec.openplanner.team/stops/LAweg--1"], ["https://tec.openplanner.team/stops/LVStige1", "https://tec.openplanner.team/stops/LVStige2"], ["https://tec.openplanner.team/stops/Lenauln2", "https://tec.openplanner.team/stops/Lvehauz3"], ["https://tec.openplanner.team/stops/N207aba", "https://tec.openplanner.team/stops/N207abb"], ["https://tec.openplanner.team/stops/Cmgpn1", "https://tec.openplanner.team/stops/Cmgpn2"], ["https://tec.openplanner.team/stops/H4ff115a", "https://tec.openplanner.team/stops/H4ff122a"], ["https://tec.openplanner.team/stops/LOUvign1", "https://tec.openplanner.team/stops/LOUvign2"], ["https://tec.openplanner.team/stops/X903ada", "https://tec.openplanner.team/stops/X992aka"], ["https://tec.openplanner.team/stops/N120aia", "https://tec.openplanner.team/stops/N120ala"], ["https://tec.openplanner.team/stops/LWAchpg2", "https://tec.openplanner.team/stops/LWAwegg2"], ["https://tec.openplanner.team/stops/N207aca", "https://tec.openplanner.team/stops/X221aac"], ["https://tec.openplanner.team/stops/X644aab", "https://tec.openplanner.team/stops/X645aab"], ["https://tec.openplanner.team/stops/X788aaa", "https://tec.openplanner.team/stops/X788abd"], ["https://tec.openplanner.team/stops/Lannico2", "https://tec.openplanner.team/stops/Lglcoun1"], ["https://tec.openplanner.team/stops/Lanhoud2", "https://tec.openplanner.team/stops/Lannico3"], ["https://tec.openplanner.team/stops/Cjufagn4", "https://tec.openplanner.team/stops/Cjumall6"], ["https://tec.openplanner.team/stops/Lalbout2", "https://tec.openplanner.team/stops/Lalhomb2"], ["https://tec.openplanner.team/stops/N368aea", "https://tec.openplanner.team/stops/N368aeb"], ["https://tec.openplanner.team/stops/Lchtche2", "https://tec.openplanner.team/stops/Lrahoig2"], ["https://tec.openplanner.team/stops/X717aha", "https://tec.openplanner.team/stops/X782aka"], ["https://tec.openplanner.team/stops/H4ty379a", "https://tec.openplanner.team/stops/H4ty406a"], ["https://tec.openplanner.team/stops/LMObut-1", "https://tec.openplanner.team/stops/LMOelva1"], ["https://tec.openplanner.team/stops/X896aab", "https://tec.openplanner.team/stops/X995aba"], ["https://tec.openplanner.team/stops/X784aia", "https://tec.openplanner.team/stops/X784ajb"], ["https://tec.openplanner.team/stops/LHTbaud2", "https://tec.openplanner.team/stops/LHTptha4"], ["https://tec.openplanner.team/stops/X888aca", "https://tec.openplanner.team/stops/X899afa"], ["https://tec.openplanner.team/stops/H4ar107a", "https://tec.openplanner.team/stops/H4ar107b"], ["https://tec.openplanner.team/stops/LPAmosa1", "https://tec.openplanner.team/stops/LPAmosa2"], ["https://tec.openplanner.team/stops/LClbloc1", "https://tec.openplanner.team/stops/LCltrib1"], ["https://tec.openplanner.team/stops/LSPwarf2", "https://tec.openplanner.team/stops/LSZjona2"], ["https://tec.openplanner.team/stops/H4bh105b", "https://tec.openplanner.team/stops/H4lp123a"], ["https://tec.openplanner.team/stops/N104afa", "https://tec.openplanner.team/stops/N106aab"], ["https://tec.openplanner.team/stops/H1ha183a", "https://tec.openplanner.team/stops/H1vg358a"], ["https://tec.openplanner.team/stops/X608ana", "https://tec.openplanner.team/stops/X608arb"], ["https://tec.openplanner.team/stops/N131agb", "https://tec.openplanner.team/stops/N132afa"], ["https://tec.openplanner.team/stops/H1qy132a", "https://tec.openplanner.team/stops/H1qy135b"], ["https://tec.openplanner.team/stops/H1fr109b", "https://tec.openplanner.team/stops/H1fr114a"], ["https://tec.openplanner.team/stops/H1cu125a", "https://tec.openplanner.team/stops/H1cu125c"], ["https://tec.openplanner.team/stops/X802asa", "https://tec.openplanner.team/stops/X802ata"], ["https://tec.openplanner.team/stops/N229ala", "https://tec.openplanner.team/stops/N229aob"], ["https://tec.openplanner.team/stops/N211akb", "https://tec.openplanner.team/stops/N214abb"], ["https://tec.openplanner.team/stops/N501geb", "https://tec.openplanner.team/stops/N501lrb"], ["https://tec.openplanner.team/stops/H4te252b", "https://tec.openplanner.team/stops/H4te253a"], ["https://tec.openplanner.team/stops/X993aaa", "https://tec.openplanner.team/stops/X993ahb"], ["https://tec.openplanner.team/stops/H1by100d", "https://tec.openplanner.team/stops/H1by102b"], ["https://tec.openplanner.team/stops/Bbsiabb2", "https://tec.openplanner.team/stops/Bbsipos2"], ["https://tec.openplanner.team/stops/N507afb", "https://tec.openplanner.team/stops/N507aja"], ["https://tec.openplanner.team/stops/N124aac", "https://tec.openplanner.team/stops/N124aba"], ["https://tec.openplanner.team/stops/N501bpa", "https://tec.openplanner.team/stops/N501bpb"], ["https://tec.openplanner.team/stops/X716acb", "https://tec.openplanner.team/stops/X716afa"], ["https://tec.openplanner.team/stops/Livfays1", "https://tec.openplanner.team/stops/LRaplac2"], ["https://tec.openplanner.team/stops/Buccobs2", "https://tec.openplanner.team/stops/Buccplj1"], ["https://tec.openplanner.team/stops/H1hy144a", "https://tec.openplanner.team/stops/H1qy135b"], ["https://tec.openplanner.team/stops/N118aob", "https://tec.openplanner.team/stops/N118atb"], ["https://tec.openplanner.team/stops/Lvereno1", "https://tec.openplanner.team/stops/Lvereno2"], ["https://tec.openplanner.team/stops/Llgandr2", "https://tec.openplanner.team/stops/Llgavro2"], ["https://tec.openplanner.team/stops/H1bg110b", "https://tec.openplanner.team/stops/H1mx122b"], ["https://tec.openplanner.team/stops/Bnivver1", "https://tec.openplanner.team/stops/Bnivzep2"], ["https://tec.openplanner.team/stops/Lticime2", "https://tec.openplanner.team/stops/Ltiegli3"], ["https://tec.openplanner.team/stops/H1ob330b", "https://tec.openplanner.team/stops/H1ob339a"], ["https://tec.openplanner.team/stops/N232ceb", "https://tec.openplanner.team/stops/N260aca"], ["https://tec.openplanner.team/stops/LlOkreu2", "https://tec.openplanner.team/stops/LlOpfar1"], ["https://tec.openplanner.team/stops/Bmrlhan3", "https://tec.openplanner.team/stops/Bmrllgr2"], ["https://tec.openplanner.team/stops/LBpecco1", "https://tec.openplanner.team/stops/LBpecco4"], ["https://tec.openplanner.team/stops/Bllnpaf1", "https://tec.openplanner.team/stops/Bllnpaf2"], ["https://tec.openplanner.team/stops/X901bma", "https://tec.openplanner.team/stops/X922aaa"], ["https://tec.openplanner.team/stops/LlAdorf1", "https://tec.openplanner.team/stops/LrUoudl1"], ["https://tec.openplanner.team/stops/Cmmami1", "https://tec.openplanner.team/stops/Cmmn1172"], ["https://tec.openplanner.team/stops/Bgnvcha1", "https://tec.openplanner.team/stops/Bgnvoha2"], ["https://tec.openplanner.team/stops/N553ahb", "https://tec.openplanner.team/stops/N566afb"], ["https://tec.openplanner.team/stops/Lemlacr2", "https://tec.openplanner.team/stops/Lemmc--1"], ["https://tec.openplanner.team/stops/Beceres1", "https://tec.openplanner.team/stops/H3br100b"], ["https://tec.openplanner.team/stops/Lrcastr3", "https://tec.openplanner.team/stops/Lrclohe2"], ["https://tec.openplanner.team/stops/N308aba", "https://tec.openplanner.team/stops/N308beb"], ["https://tec.openplanner.team/stops/N547alc", "https://tec.openplanner.team/stops/N547anb"], ["https://tec.openplanner.team/stops/X605aaa", "https://tec.openplanner.team/stops/X620afb"], ["https://tec.openplanner.team/stops/H4bo182a", "https://tec.openplanner.team/stops/H4hu120a"], ["https://tec.openplanner.team/stops/LLGramk1", "https://tec.openplanner.team/stops/LLGramk3"], ["https://tec.openplanner.team/stops/N117aqa", "https://tec.openplanner.team/stops/N117arb"], ["https://tec.openplanner.team/stops/LSythie2", "https://tec.openplanner.team/stops/LWZdtec1"], ["https://tec.openplanner.team/stops/H2le176b", "https://tec.openplanner.team/stops/H2re174b"], ["https://tec.openplanner.team/stops/LAvcani2", "https://tec.openplanner.team/stops/LMXroye1"], ["https://tec.openplanner.team/stops/Cgon52", "https://tec.openplanner.team/stops/Cjuapca2"], ["https://tec.openplanner.team/stops/H1fl136b", "https://tec.openplanner.team/stops/H1fl142a"], ["https://tec.openplanner.team/stops/Bcsegal2", "https://tec.openplanner.team/stops/Bcsempl1"], ["https://tec.openplanner.team/stops/Cgzblob1", "https://tec.openplanner.team/stops/Ctucamb2"], ["https://tec.openplanner.team/stops/Bnivvcw1", "https://tec.openplanner.team/stops/Bnivvri1"], ["https://tec.openplanner.team/stops/N535ajb", "https://tec.openplanner.team/stops/N538aza"], ["https://tec.openplanner.team/stops/N346adb", "https://tec.openplanner.team/stops/X346afb"], ["https://tec.openplanner.team/stops/Lfhmarn1", "https://tec.openplanner.team/stops/Lfhmarn2"], ["https://tec.openplanner.team/stops/N576afa", "https://tec.openplanner.team/stops/N576amb"], ["https://tec.openplanner.team/stops/X820aaa", "https://tec.openplanner.team/stops/X822amb"], ["https://tec.openplanner.team/stops/Bhmmlad1", "https://tec.openplanner.team/stops/Bhmmlad2"], ["https://tec.openplanner.team/stops/N512aca", "https://tec.openplanner.team/stops/N512acb"], ["https://tec.openplanner.team/stops/Bbougbl1", "https://tec.openplanner.team/stops/Bbounci1"], ["https://tec.openplanner.team/stops/H1so136a", "https://tec.openplanner.team/stops/H1so136d"], ["https://tec.openplanner.team/stops/Baudvdr2", "https://tec.openplanner.team/stops/Baudvdu2"], ["https://tec.openplanner.team/stops/LAWcorn1", "https://tec.openplanner.team/stops/LAWcorn4"], ["https://tec.openplanner.team/stops/N229asa", "https://tec.openplanner.team/stops/N229asb"], ["https://tec.openplanner.team/stops/N170aba", "https://tec.openplanner.team/stops/N170afa"], ["https://tec.openplanner.team/stops/LHUec--1", "https://tec.openplanner.team/stops/LHUfonc2"], ["https://tec.openplanner.team/stops/LThbatt1", "https://tec.openplanner.team/stops/LThchar1"], ["https://tec.openplanner.team/stops/Cflvxsa1", "https://tec.openplanner.team/stops/Cflvxsa2"], ["https://tec.openplanner.team/stops/Lgrchar2", "https://tec.openplanner.team/stops/Lgrramp2"], ["https://tec.openplanner.team/stops/Cfcecol4", "https://tec.openplanner.team/stops/Cvrfcho1"], ["https://tec.openplanner.team/stops/H2ha142b", "https://tec.openplanner.team/stops/H2hg156b"], ["https://tec.openplanner.team/stops/X601bca", "https://tec.openplanner.team/stops/X601bda"], ["https://tec.openplanner.team/stops/H2fy123b", "https://tec.openplanner.team/stops/H2jo161c"], ["https://tec.openplanner.team/stops/N501jhb", "https://tec.openplanner.team/stops/N501jib"], ["https://tec.openplanner.team/stops/N340aia", "https://tec.openplanner.team/stops/N340aib"], ["https://tec.openplanner.team/stops/H4fr144a", "https://tec.openplanner.team/stops/H4fr144b"], ["https://tec.openplanner.team/stops/Clddeve1", "https://tec.openplanner.team/stops/Clddeve2"], ["https://tec.openplanner.team/stops/X717aeb", "https://tec.openplanner.team/stops/X717aja"], ["https://tec.openplanner.team/stops/H1cu118a", "https://tec.openplanner.team/stops/H1fr115a"], ["https://tec.openplanner.team/stops/Lbbviad3", "https://tec.openplanner.team/stops/Lbbviad4"], ["https://tec.openplanner.team/stops/LVLcent1", "https://tec.openplanner.team/stops/LVLcent2"], ["https://tec.openplanner.team/stops/LoEauto1", "https://tec.openplanner.team/stops/LrDhund2"], ["https://tec.openplanner.team/stops/X901aaa", "https://tec.openplanner.team/stops/X901aab"], ["https://tec.openplanner.team/stops/LRagrch1", "https://tec.openplanner.team/stops/LRagrch2"], ["https://tec.openplanner.team/stops/LcRmich2", "https://tec.openplanner.team/stops/LnUneun3"], ["https://tec.openplanner.team/stops/H1fr113b", "https://tec.openplanner.team/stops/H1fr130b"], ["https://tec.openplanner.team/stops/Llieg--3", "https://tec.openplanner.team/stops/Llithon2"], ["https://tec.openplanner.team/stops/H1sg142a", "https://tec.openplanner.team/stops/H1sg150b"], ["https://tec.openplanner.team/stops/N347aea", "https://tec.openplanner.team/stops/X347ajb"], ["https://tec.openplanner.team/stops/H1hg178b", "https://tec.openplanner.team/stops/H1hg180a"], ["https://tec.openplanner.team/stops/X879aba", "https://tec.openplanner.team/stops/X880ahb"], ["https://tec.openplanner.team/stops/Bwavcar2", "https://tec.openplanner.team/stops/Bwavfol1"], ["https://tec.openplanner.team/stops/H4hx114a", "https://tec.openplanner.team/stops/H4ln155a"], ["https://tec.openplanner.team/stops/N515aia", "https://tec.openplanner.team/stops/N515aid"], ["https://tec.openplanner.team/stops/X659aqb", "https://tec.openplanner.team/stops/X659arb"], ["https://tec.openplanner.team/stops/LSShous1", "https://tec.openplanner.team/stops/LSShous2"], ["https://tec.openplanner.team/stops/LLMeg--2", "https://tec.openplanner.team/stops/LThpoli2"], ["https://tec.openplanner.team/stops/H2go118b", "https://tec.openplanner.team/stops/H2gy107b"], ["https://tec.openplanner.team/stops/N528ara", "https://tec.openplanner.team/stops/N528arc"], ["https://tec.openplanner.team/stops/LELhard1", "https://tec.openplanner.team/stops/LHCquat4"], ["https://tec.openplanner.team/stops/N111abb", "https://tec.openplanner.team/stops/N111afa"], ["https://tec.openplanner.team/stops/Lch179-2", "https://tec.openplanner.team/stops/Lchplai1"], ["https://tec.openplanner.team/stops/LBSchpl2", "https://tec.openplanner.team/stops/LWOcomm2"], ["https://tec.openplanner.team/stops/H1cu115b", "https://tec.openplanner.team/stops/H1cu120a"], ["https://tec.openplanner.team/stops/LSoboul2", "https://tec.openplanner.team/stops/LSoeg--2"], ["https://tec.openplanner.team/stops/LFChofv1", "https://tec.openplanner.team/stops/LFChuis2"], ["https://tec.openplanner.team/stops/H1me117c", "https://tec.openplanner.team/stops/H1so141a"], ["https://tec.openplanner.team/stops/H4bq102a", "https://tec.openplanner.team/stops/H4bq102b"], ["https://tec.openplanner.team/stops/N574aba", "https://tec.openplanner.team/stops/N574abb"], ["https://tec.openplanner.team/stops/Bopprju1", "https://tec.openplanner.team/stops/Bsrbtil2"], ["https://tec.openplanner.team/stops/Bgzdegl3", "https://tec.openplanner.team/stops/Bgzdfpo2"], ["https://tec.openplanner.team/stops/Lmodeja2", "https://tec.openplanner.team/stops/Lmodeni2"], ["https://tec.openplanner.team/stops/H1ba103a", "https://tec.openplanner.team/stops/H1ba105b"], ["https://tec.openplanner.team/stops/X604afd", "https://tec.openplanner.team/stops/X633akb"], ["https://tec.openplanner.team/stops/H4bi100a", "https://tec.openplanner.team/stops/H4bi156a"], ["https://tec.openplanner.team/stops/LsVgils1", "https://tec.openplanner.team/stops/LsVhupp1"], ["https://tec.openplanner.team/stops/X727aaa", "https://tec.openplanner.team/stops/X727aga"], ["https://tec.openplanner.team/stops/Bnilpco2", "https://tec.openplanner.team/stops/Bnilreg1"], ["https://tec.openplanner.team/stops/Bpercsp1", "https://tec.openplanner.team/stops/Bpersyn1"], ["https://tec.openplanner.team/stops/LBOholt2", "https://tec.openplanner.team/stops/LBWfusi1"], ["https://tec.openplanner.team/stops/LOmmer-1", "https://tec.openplanner.team/stops/LOmmer-2"], ["https://tec.openplanner.team/stops/Lgrfass1", "https://tec.openplanner.team/stops/Lgrfass2"], ["https://tec.openplanner.team/stops/Cmaegli2", "https://tec.openplanner.team/stops/Cmapeet1"], ["https://tec.openplanner.team/stops/Lsebegu3", "https://tec.openplanner.team/stops/Ltiferb1"], ["https://tec.openplanner.team/stops/X672aia", "https://tec.openplanner.team/stops/X672aic"], ["https://tec.openplanner.team/stops/Cbecarr2", "https://tec.openplanner.team/stops/Cbetrie1"], ["https://tec.openplanner.team/stops/X615arb", "https://tec.openplanner.team/stops/X687afa"], ["https://tec.openplanner.team/stops/Benimar2", "https://tec.openplanner.team/stops/Bmrlsau2"], ["https://tec.openplanner.team/stops/LHAlacr1", "https://tec.openplanner.team/stops/LHAlacr2"], ["https://tec.openplanner.team/stops/Lghchap1", "https://tec.openplanner.team/stops/Lghferr2"], ["https://tec.openplanner.team/stops/Bflccav1", "https://tec.openplanner.team/stops/NR30aab"], ["https://tec.openplanner.team/stops/Llaacca1", "https://tec.openplanner.team/stops/Llaacca2"], ["https://tec.openplanner.team/stops/LCFeg--1", "https://tec.openplanner.team/stops/LHaxhig2"], ["https://tec.openplanner.team/stops/LMAchod2", "https://tec.openplanner.team/stops/LMAptne2"], ["https://tec.openplanner.team/stops/X736abb", "https://tec.openplanner.team/stops/X952ada"], ["https://tec.openplanner.team/stops/Cgygayo3", "https://tec.openplanner.team/stops/Cgylouv1"], ["https://tec.openplanner.team/stops/Llghoch1", "https://tec.openplanner.team/stops/Llgwesp1"], ["https://tec.openplanner.team/stops/Lroeg--4", "https://tec.openplanner.team/stops/Lrolecl1"], ["https://tec.openplanner.team/stops/N501ada", "https://tec.openplanner.team/stops/N501aeb"], ["https://tec.openplanner.team/stops/Cauglac2", "https://tec.openplanner.team/stops/N543cbc"], ["https://tec.openplanner.team/stops/Lhecarc*", "https://tec.openplanner.team/stops/Lheneuv4"], ["https://tec.openplanner.team/stops/Lhrpwan1", "https://tec.openplanner.team/stops/Lwachal1"], ["https://tec.openplanner.team/stops/H4mo171a", "https://tec.openplanner.team/stops/H4mo181d"], ["https://tec.openplanner.team/stops/X347aja", "https://tec.openplanner.team/stops/X347ajb"], ["https://tec.openplanner.team/stops/X371aaa", "https://tec.openplanner.team/stops/X371abb"], ["https://tec.openplanner.team/stops/X715aab", "https://tec.openplanner.team/stops/X716aea"], ["https://tec.openplanner.team/stops/Brsga152", "https://tec.openplanner.team/stops/Brsga812"], ["https://tec.openplanner.team/stops/H1ch100b", "https://tec.openplanner.team/stops/H1ch106b"], ["https://tec.openplanner.team/stops/X986aaa", "https://tec.openplanner.team/stops/X986aha"], ["https://tec.openplanner.team/stops/Bsomwav1", "https://tec.openplanner.team/stops/Bsomwav2"], ["https://tec.openplanner.team/stops/X636awa", "https://tec.openplanner.team/stops/X636awb"], ["https://tec.openplanner.team/stops/H5el117a", "https://tec.openplanner.team/stops/H5el117b"], ["https://tec.openplanner.team/stops/Cptplac2", "https://tec.openplanner.team/stops/Cpttraz1"], ["https://tec.openplanner.team/stops/Cfcplac4", "https://tec.openplanner.team/stops/Cfcrdpr1"], ["https://tec.openplanner.team/stops/Bcbqhai1", "https://tec.openplanner.team/stops/Bitrnus2"], ["https://tec.openplanner.team/stops/Bclgmev2", "https://tec.openplanner.team/stops/Bclgpch1"], ["https://tec.openplanner.team/stops/NC02agc", "https://tec.openplanner.team/stops/NC11aia"], ["https://tec.openplanner.team/stops/Lhrcite2", "https://tec.openplanner.team/stops/Lhrwigi1"], ["https://tec.openplanner.team/stops/H1fr118b", "https://tec.openplanner.team/stops/H1fr133a"], ["https://tec.openplanner.team/stops/Btsllfp2", "https://tec.openplanner.team/stops/Btstbbu2"], ["https://tec.openplanner.team/stops/Lvegc--5", "https://tec.openplanner.team/stops/Lvevict1"], ["https://tec.openplanner.team/stops/Bhanath1", "https://tec.openplanner.team/stops/LHNecpr4"], ["https://tec.openplanner.team/stops/LGorysa2", "https://tec.openplanner.team/stops/Lpebeco1"], ["https://tec.openplanner.team/stops/Cctsncb4", "https://tec.openplanner.team/stops/NC02aob"], ["https://tec.openplanner.team/stops/X614aya", "https://tec.openplanner.team/stops/X614ayb"], ["https://tec.openplanner.team/stops/N501dnb", "https://tec.openplanner.team/stops/N501dob"], ["https://tec.openplanner.team/stops/Cwgmell1", "https://tec.openplanner.team/stops/Cwgmell2"], ["https://tec.openplanner.team/stops/H4ty286b", "https://tec.openplanner.team/stops/H4ty308e"], ["https://tec.openplanner.team/stops/H4ne132a", "https://tec.openplanner.team/stops/H4ne132d"], ["https://tec.openplanner.team/stops/Cmerdby1", "https://tec.openplanner.team/stops/Cmerued2"], ["https://tec.openplanner.team/stops/LMalarg3", "https://tec.openplanner.team/stops/LPldoua3"], ["https://tec.openplanner.team/stops/LLLvill1", "https://tec.openplanner.team/stops/X576aga"], ["https://tec.openplanner.team/stops/N390abb", "https://tec.openplanner.team/stops/N390adb"], ["https://tec.openplanner.team/stops/N230alb", "https://tec.openplanner.team/stops/N549ahb"], ["https://tec.openplanner.team/stops/X793afa", "https://tec.openplanner.team/stops/X793agb"], ["https://tec.openplanner.team/stops/LHUtrin1", "https://tec.openplanner.team/stops/LHUtrin2"], ["https://tec.openplanner.team/stops/Loualbe2", "https://tec.openplanner.team/stops/Lougare2"], ["https://tec.openplanner.team/stops/X833aaa", "https://tec.openplanner.team/stops/X833aab"], ["https://tec.openplanner.team/stops/LORgr8-1", "https://tec.openplanner.team/stops/LORgr8-2"], ["https://tec.openplanner.team/stops/Lstbarb2", "https://tec.openplanner.team/stops/Lstbarb6"], ["https://tec.openplanner.team/stops/LEBmoul1", "https://tec.openplanner.team/stops/LLAchpl1"], ["https://tec.openplanner.team/stops/Lrclant1", "https://tec.openplanner.team/stops/Lrclant2"], ["https://tec.openplanner.team/stops/H1vh137b", "https://tec.openplanner.team/stops/H3bo102b"], ["https://tec.openplanner.team/stops/LPleclu1", "https://tec.openplanner.team/stops/LPleclu2"], ["https://tec.openplanner.team/stops/N232byb", "https://tec.openplanner.team/stops/N232bzb"], ["https://tec.openplanner.team/stops/Bnivcom1", "https://tec.openplanner.team/stops/Bnivtra1"], ["https://tec.openplanner.team/stops/H1hc127c", "https://tec.openplanner.team/stops/H5gr138a"], ["https://tec.openplanner.team/stops/Bmlncle2", "https://tec.openplanner.team/stops/Bmlnsms2"], ["https://tec.openplanner.team/stops/Brsgm302", "https://tec.openplanner.team/stops/Brsgman2"], ["https://tec.openplanner.team/stops/NH01ajb", "https://tec.openplanner.team/stops/NH21aea"], ["https://tec.openplanner.team/stops/Lglcoun1", "https://tec.openplanner.team/stops/Lglcoun2"], ["https://tec.openplanner.team/stops/Ljerobi2", "https://tec.openplanner.team/stops/Ljetomb1"], ["https://tec.openplanner.team/stops/N565aja", "https://tec.openplanner.team/stops/N565alb"], ["https://tec.openplanner.team/stops/LHTeg--5", "https://tec.openplanner.team/stops/LHTmoul1"], ["https://tec.openplanner.team/stops/H2bh112b", "https://tec.openplanner.team/stops/H2fy119a"], ["https://tec.openplanner.team/stops/Bbealbu3", "https://tec.openplanner.team/stops/Bbealon3"], ["https://tec.openplanner.team/stops/LWepost1", "https://tec.openplanner.team/stops/LWepost4"], ["https://tec.openplanner.team/stops/LARgare1", "https://tec.openplanner.team/stops/LARgare2"], ["https://tec.openplanner.team/stops/X736aba", "https://tec.openplanner.team/stops/X736adb"], ["https://tec.openplanner.team/stops/H4mo148a", "https://tec.openplanner.team/stops/H4mo204b"], ["https://tec.openplanner.team/stops/H4ca121a", "https://tec.openplanner.team/stops/H4ca122a"], ["https://tec.openplanner.team/stops/N506aca", "https://tec.openplanner.team/stops/N506beb"], ["https://tec.openplanner.team/stops/H2ha128b", "https://tec.openplanner.team/stops/H2hg160b"], ["https://tec.openplanner.team/stops/X950aca", "https://tec.openplanner.team/stops/X950acb"], ["https://tec.openplanner.team/stops/N531agb", "https://tec.openplanner.team/stops/N531ahb"], ["https://tec.openplanner.team/stops/Cjudest4", "https://tec.openplanner.team/stops/Cloauln1"], ["https://tec.openplanner.team/stops/Cgoson12", "https://tec.openplanner.team/stops/Cjuepee1"], ["https://tec.openplanner.team/stops/X713aeb", "https://tec.openplanner.team/stops/X713ajb"], ["https://tec.openplanner.team/stops/LWHmath1", "https://tec.openplanner.team/stops/LWHmath2"], ["https://tec.openplanner.team/stops/N151ajc", "https://tec.openplanner.team/stops/N151aje"], ["https://tec.openplanner.team/stops/N515aea", "https://tec.openplanner.team/stops/N517aab"], ["https://tec.openplanner.team/stops/LhGbahn*", "https://tec.openplanner.team/stops/LhSfrei2"], ["https://tec.openplanner.team/stops/X808aac", "https://tec.openplanner.team/stops/X808abc"], ["https://tec.openplanner.team/stops/X908aia", "https://tec.openplanner.team/stops/X908aka"], ["https://tec.openplanner.team/stops/Bbcoben2", "https://tec.openplanner.team/stops/Bbcopre2"], ["https://tec.openplanner.team/stops/N225acb", "https://tec.openplanner.team/stops/N225aha"], ["https://tec.openplanner.team/stops/Caistro2", "https://tec.openplanner.team/stops/Crsrose1"], ["https://tec.openplanner.team/stops/X917aba", "https://tec.openplanner.team/stops/X919anb"], ["https://tec.openplanner.team/stops/N501fdd", "https://tec.openplanner.team/stops/N501flb"], ["https://tec.openplanner.team/stops/Bmoucoq2", "https://tec.openplanner.team/stops/Bottra91"], ["https://tec.openplanner.team/stops/H1ro133a", "https://tec.openplanner.team/stops/H5pe144a"], ["https://tec.openplanner.team/stops/LbOre3b2", "https://tec.openplanner.team/stops/LmOkape1"], ["https://tec.openplanner.team/stops/N211ava", "https://tec.openplanner.team/stops/N211avb"], ["https://tec.openplanner.team/stops/LSZlegr1", "https://tec.openplanner.team/stops/LSZlegr2"], ["https://tec.openplanner.team/stops/N506agb", "https://tec.openplanner.team/stops/N506alb"], ["https://tec.openplanner.team/stops/Blindel1", "https://tec.openplanner.team/stops/Blindel5"], ["https://tec.openplanner.team/stops/N301acb", "https://tec.openplanner.team/stops/N301ada"], ["https://tec.openplanner.team/stops/H2ll188b", "https://tec.openplanner.team/stops/H2ll190b"], ["https://tec.openplanner.team/stops/LAUbour1", "https://tec.openplanner.team/stops/LAUbour4"], ["https://tec.openplanner.team/stops/Cchlamb2", "https://tec.openplanner.team/stops/Clojone2"], ["https://tec.openplanner.team/stops/X641aka", "https://tec.openplanner.team/stops/X641axb"], ["https://tec.openplanner.team/stops/H4to134b", "https://tec.openplanner.team/stops/H4to139a"], ["https://tec.openplanner.team/stops/Ctmdema1", "https://tec.openplanner.team/stops/Ctmmonu1"], ["https://tec.openplanner.team/stops/X602aia", "https://tec.openplanner.team/stops/X602aja"], ["https://tec.openplanner.team/stops/H4og214a", "https://tec.openplanner.team/stops/H4to137a"], ["https://tec.openplanner.team/stops/LeUath2", "https://tec.openplanner.team/stops/LeUwais2"], ["https://tec.openplanner.team/stops/LJEniho1", "https://tec.openplanner.team/stops/LJEtige1"], ["https://tec.openplanner.team/stops/LFTec--1", "https://tec.openplanner.team/stops/LFTec--2"], ["https://tec.openplanner.team/stops/N501icy", "https://tec.openplanner.team/stops/N501ihz"], ["https://tec.openplanner.team/stops/LMaslav4", "https://tec.openplanner.team/stops/LMazonn4"], ["https://tec.openplanner.team/stops/Landolh2", "https://tec.openplanner.team/stops/Lanrois1"], ["https://tec.openplanner.team/stops/N207aea", "https://tec.openplanner.team/stops/N207afa"], ["https://tec.openplanner.team/stops/N229atb", "https://tec.openplanner.team/stops/N540apa"], ["https://tec.openplanner.team/stops/LLrbecc1", "https://tec.openplanner.team/stops/LLrlour1"], ["https://tec.openplanner.team/stops/Llaflot1", "https://tec.openplanner.team/stops/Llaflot2"], ["https://tec.openplanner.team/stops/Cmmgadi1", "https://tec.openplanner.team/stops/Cmmheur2"], ["https://tec.openplanner.team/stops/X624aea", "https://tec.openplanner.team/stops/X624aeb"], ["https://tec.openplanner.team/stops/Bbuztai1", "https://tec.openplanner.team/stops/Cobhaut2"], ["https://tec.openplanner.team/stops/LaUn1--3", "https://tec.openplanner.team/stops/LmSkape2"], ["https://tec.openplanner.team/stops/X982apb", "https://tec.openplanner.team/stops/X982aza"], ["https://tec.openplanner.team/stops/X614apa", "https://tec.openplanner.team/stops/X614asa"], ["https://tec.openplanner.team/stops/H2ep172b", "https://tec.openplanner.team/stops/H2le176b"], ["https://tec.openplanner.team/stops/H1si152a", "https://tec.openplanner.team/stops/H1si169a"], ["https://tec.openplanner.team/stops/Lprmoin1", "https://tec.openplanner.team/stops/Lprorph2"], ["https://tec.openplanner.team/stops/N201aha", "https://tec.openplanner.team/stops/N201ara"], ["https://tec.openplanner.team/stops/H5bl122b", "https://tec.openplanner.team/stops/H5bl143b"], ["https://tec.openplanner.team/stops/N538ana", "https://tec.openplanner.team/stops/N538aoa"], ["https://tec.openplanner.team/stops/H1bb113b", "https://tec.openplanner.team/stops/H1bb116c"], ["https://tec.openplanner.team/stops/H1wa143a", "https://tec.openplanner.team/stops/H1wl121a"], ["https://tec.openplanner.team/stops/X561aba", "https://tec.openplanner.team/stops/X561aeb"], ["https://tec.openplanner.team/stops/LThhoul2", "https://tec.openplanner.team/stops/LThsere2"], ["https://tec.openplanner.team/stops/N104aad", "https://tec.openplanner.team/stops/N116aad"], ["https://tec.openplanner.team/stops/H4ty322a", "https://tec.openplanner.team/stops/H4ty322c"], ["https://tec.openplanner.team/stops/N301abd", "https://tec.openplanner.team/stops/N301acb"], ["https://tec.openplanner.team/stops/N501hub", "https://tec.openplanner.team/stops/N501inb"], ["https://tec.openplanner.team/stops/LrAkape1", "https://tec.openplanner.team/stops/LrAmuhl1"], ["https://tec.openplanner.team/stops/X948ana", "https://tec.openplanner.team/stops/X949akb"], ["https://tec.openplanner.team/stops/Cdostco1", "https://tec.openplanner.team/stops/Cstgare1"], ["https://tec.openplanner.team/stops/X820aca", "https://tec.openplanner.team/stops/X820adb"], ["https://tec.openplanner.team/stops/Lvealbe2", "https://tec.openplanner.team/stops/Lvefran2"], ["https://tec.openplanner.team/stops/LBiberg1", "https://tec.openplanner.team/stops/LDOeg--1"], ["https://tec.openplanner.team/stops/H4ne140b", "https://tec.openplanner.team/stops/H4te251a"], ["https://tec.openplanner.team/stops/X739adb", "https://tec.openplanner.team/stops/X739alb"], ["https://tec.openplanner.team/stops/N501iba", "https://tec.openplanner.team/stops/N501ifb"], ["https://tec.openplanner.team/stops/H3lr111a", "https://tec.openplanner.team/stops/H3lr117b"], ["https://tec.openplanner.team/stops/X801aga", "https://tec.openplanner.team/stops/X801bsa"], ["https://tec.openplanner.team/stops/Bwatmch2", "https://tec.openplanner.team/stops/Bwatpct2"], ["https://tec.openplanner.team/stops/H1wi155a", "https://tec.openplanner.team/stops/H1wi157a"], ["https://tec.openplanner.team/stops/LVlfooz1", "https://tec.openplanner.team/stops/LVlledo1"], ["https://tec.openplanner.team/stops/X982bub", "https://tec.openplanner.team/stops/X982bxa"], ["https://tec.openplanner.team/stops/Bgrmpco1", "https://tec.openplanner.team/stops/N576ama"], ["https://tec.openplanner.team/stops/LOmlime1", "https://tec.openplanner.team/stops/LOmvill4"], ["https://tec.openplanner.team/stops/LHodomm2", "https://tec.openplanner.team/stops/LSBjoli1"], ["https://tec.openplanner.team/stops/Cgyduss1", "https://tec.openplanner.team/stops/Cgymast2"], ["https://tec.openplanner.team/stops/LMHec--1", "https://tec.openplanner.team/stops/LMHplac4"], ["https://tec.openplanner.team/stops/LnEfrie1", "https://tec.openplanner.team/stops/LnEkirc3"], ["https://tec.openplanner.team/stops/N166aba", "https://tec.openplanner.team/stops/N166ada"], ["https://tec.openplanner.team/stops/H1em103b", "https://tec.openplanner.team/stops/H1fa120b"], ["https://tec.openplanner.team/stops/Lstchim2", "https://tec.openplanner.team/stops/Lstphys2"], ["https://tec.openplanner.team/stops/N357aca", "https://tec.openplanner.team/stops/X351adb"], ["https://tec.openplanner.team/stops/LAUcarr2", "https://tec.openplanner.team/stops/LAUpind2"], ["https://tec.openplanner.team/stops/X923aba", "https://tec.openplanner.team/stops/X923ahb"], ["https://tec.openplanner.team/stops/N205ada", "https://tec.openplanner.team/stops/N219abb"], ["https://tec.openplanner.team/stops/N530agb", "https://tec.openplanner.team/stops/N534beb"], ["https://tec.openplanner.team/stops/LFRhock3", "https://tec.openplanner.team/stops/LHcbaro2"], ["https://tec.openplanner.team/stops/N122aaa", "https://tec.openplanner.team/stops/N122abb"], ["https://tec.openplanner.team/stops/Lsebrun1", "https://tec.openplanner.team/stops/Lsepaqu1"], ["https://tec.openplanner.team/stops/Lghleon1", "https://tec.openplanner.team/stops/Lmlbaro2"], ["https://tec.openplanner.team/stops/LAx17--1", "https://tec.openplanner.team/stops/LAx41--1"], ["https://tec.openplanner.team/stops/X738adb", "https://tec.openplanner.team/stops/X738aeb"], ["https://tec.openplanner.team/stops/N245aca", "https://tec.openplanner.team/stops/N340aea"], ["https://tec.openplanner.team/stops/N155ada", "https://tec.openplanner.team/stops/N155aja"], ["https://tec.openplanner.team/stops/Lpeatel2", "https://tec.openplanner.team/stops/Lpechin2"], ["https://tec.openplanner.team/stops/Clb4bra2", "https://tec.openplanner.team/stops/H1bi103b"], ["https://tec.openplanner.team/stops/Bnivsba1", "https://tec.openplanner.team/stops/Bnivsba2"], ["https://tec.openplanner.team/stops/X601cha", "https://tec.openplanner.team/stops/X662aja"], ["https://tec.openplanner.team/stops/X664aic", "https://tec.openplanner.team/stops/X664ajb"], ["https://tec.openplanner.team/stops/N538aia", "https://tec.openplanner.team/stops/N538aib"], ["https://tec.openplanner.team/stops/LSZdepo2", "https://tec.openplanner.team/stops/LSZjona1"], ["https://tec.openplanner.team/stops/H5fl100a", "https://tec.openplanner.team/stops/H5fl103a"], ["https://tec.openplanner.team/stops/Cobobjo1", "https://tec.openplanner.team/stops/Cobobjo2"], ["https://tec.openplanner.team/stops/X870abb", "https://tec.openplanner.team/stops/X870aca"], ["https://tec.openplanner.team/stops/H1hm175a", "https://tec.openplanner.team/stops/H1hm177a"], ["https://tec.openplanner.team/stops/N390aea", "https://tec.openplanner.team/stops/X390ana"], ["https://tec.openplanner.team/stops/Barqbar1", "https://tec.openplanner.team/stops/Barqhpe1"], ["https://tec.openplanner.team/stops/N515ala", "https://tec.openplanner.team/stops/N515alb"], ["https://tec.openplanner.team/stops/N309abb", "https://tec.openplanner.team/stops/N365aca"], ["https://tec.openplanner.team/stops/H1je211a", "https://tec.openplanner.team/stops/H1je211b"], ["https://tec.openplanner.team/stops/X318abb", "https://tec.openplanner.team/stops/X318aca"], ["https://tec.openplanner.team/stops/X733acb", "https://tec.openplanner.team/stops/X733afb"], ["https://tec.openplanner.team/stops/Bmanfbg1", "https://tec.openplanner.team/stops/H2mg139c"], ["https://tec.openplanner.team/stops/N232bnb", "https://tec.openplanner.team/stops/N232cca"], ["https://tec.openplanner.team/stops/H5is169b", "https://tec.openplanner.team/stops/H5is174b"], ["https://tec.openplanner.team/stops/LMOchpl2", "https://tec.openplanner.team/stops/LMOcorn1"], ["https://tec.openplanner.team/stops/LLR4bra2", "https://tec.openplanner.team/stops/LLRsalm1"], ["https://tec.openplanner.team/stops/Cmaacac1", "https://tec.openplanner.team/stops/Cmaacac2"], ["https://tec.openplanner.team/stops/N201aja", "https://tec.openplanner.team/stops/N211ala"], ["https://tec.openplanner.team/stops/Csuegli", "https://tec.openplanner.team/stops/Csycant1"], ["https://tec.openplanner.team/stops/X871aea", "https://tec.openplanner.team/stops/X871aeb"], ["https://tec.openplanner.team/stops/Bhercsj1", "https://tec.openplanner.team/stops/Bpiesta2"], ["https://tec.openplanner.team/stops/X888aba", "https://tec.openplanner.team/stops/X888afb"], ["https://tec.openplanner.team/stops/H2hg271a", "https://tec.openplanner.team/stops/H2lc170a"], ["https://tec.openplanner.team/stops/LrEborn1", "https://tec.openplanner.team/stops/LrEborn2"], ["https://tec.openplanner.team/stops/N501crb", "https://tec.openplanner.team/stops/N501cub"], ["https://tec.openplanner.team/stops/LFAsauv2", "https://tec.openplanner.team/stops/LFAwale2"], ["https://tec.openplanner.team/stops/LiVkreu2", "https://tec.openplanner.team/stops/LiVkreu3"], ["https://tec.openplanner.team/stops/LLz21--1", "https://tec.openplanner.team/stops/LSTmeiz1"], ["https://tec.openplanner.team/stops/LaAburt2", "https://tec.openplanner.team/stops/LaAkapi2"], ["https://tec.openplanner.team/stops/Brixwav1", "https://tec.openplanner.team/stops/Brixwav3"], ["https://tec.openplanner.team/stops/N141afb", "https://tec.openplanner.team/stops/N141apb"], ["https://tec.openplanner.team/stops/X805ada", "https://tec.openplanner.team/stops/X805afb"], ["https://tec.openplanner.team/stops/LMschap2", "https://tec.openplanner.team/stops/LMsec--2"], ["https://tec.openplanner.team/stops/LLrgobe1", "https://tec.openplanner.team/stops/LLrjeho1"], ["https://tec.openplanner.team/stops/LORhorp1", "https://tec.openplanner.team/stops/LORmont1"], ["https://tec.openplanner.team/stops/LRemorr1", "https://tec.openplanner.team/stops/LRemorr2"], ["https://tec.openplanner.team/stops/LWHwaas1", "https://tec.openplanner.team/stops/LWSstat1"], ["https://tec.openplanner.team/stops/Blempuc2", "https://tec.openplanner.team/stops/Btubcal2"], ["https://tec.openplanner.team/stops/LHThall4", "https://tec.openplanner.team/stops/LWOrout1"], ["https://tec.openplanner.team/stops/N155aed", "https://tec.openplanner.team/stops/N155afb"], ["https://tec.openplanner.team/stops/H1vg359a", "https://tec.openplanner.team/stops/H1vs146a"], ["https://tec.openplanner.team/stops/X908aha", "https://tec.openplanner.team/stops/X908aob"], ["https://tec.openplanner.team/stops/H4mo156a", "https://tec.openplanner.team/stops/H4mo157a"], ["https://tec.openplanner.team/stops/H4ta123b", "https://tec.openplanner.team/stops/H4wu377b"], ["https://tec.openplanner.team/stops/X901aua", "https://tec.openplanner.team/stops/X901bqa"], ["https://tec.openplanner.team/stops/Lcebarr1", "https://tec.openplanner.team/stops/Lcebarr2"], ["https://tec.openplanner.team/stops/H5el112b", "https://tec.openplanner.team/stops/H5el116b"], ["https://tec.openplanner.team/stops/LBUmara3", "https://tec.openplanner.team/stops/LBUrout2"], ["https://tec.openplanner.team/stops/LClberw2", "https://tec.openplanner.team/stops/LClflor2"], ["https://tec.openplanner.team/stops/H4wr173a", "https://tec.openplanner.team/stops/H4wr177a"], ["https://tec.openplanner.team/stops/X615aja", "https://tec.openplanner.team/stops/X615ajb"], ["https://tec.openplanner.team/stops/X370acb", "https://tec.openplanner.team/stops/X872adb"], ["https://tec.openplanner.team/stops/LGmcent1", "https://tec.openplanner.team/stops/LMtcent1"], ["https://tec.openplanner.team/stops/N331afa", "https://tec.openplanner.team/stops/N331afd"], ["https://tec.openplanner.team/stops/H5rx138b", "https://tec.openplanner.team/stops/H5rx145b"], ["https://tec.openplanner.team/stops/N510ada", "https://tec.openplanner.team/stops/N510aea"], ["https://tec.openplanner.team/stops/LHEchar2", "https://tec.openplanner.team/stops/LHEnaza1"], ["https://tec.openplanner.team/stops/N557aca", "https://tec.openplanner.team/stops/N557acb"], ["https://tec.openplanner.team/stops/H1ls109b", "https://tec.openplanner.team/stops/H1ls110a"], ["https://tec.openplanner.team/stops/N503aea", "https://tec.openplanner.team/stops/N535aoa"], ["https://tec.openplanner.team/stops/X684abb", "https://tec.openplanner.team/stops/X685afa"], ["https://tec.openplanner.team/stops/X630acb", "https://tec.openplanner.team/stops/X630adb"], ["https://tec.openplanner.team/stops/LTEkl122", "https://tec.openplanner.team/stops/LTEziho2"], ["https://tec.openplanner.team/stops/X673aaa", "https://tec.openplanner.team/stops/X673ada"], ["https://tec.openplanner.team/stops/X773aja", "https://tec.openplanner.team/stops/X773aka"], ["https://tec.openplanner.team/stops/Llxec--1", "https://tec.openplanner.team/stops/LSAvieu2"], ["https://tec.openplanner.team/stops/LhGadap1", "https://tec.openplanner.team/stops/LhGscha*"], ["https://tec.openplanner.team/stops/H1je216a", "https://tec.openplanner.team/stops/H1qu112a"], ["https://tec.openplanner.team/stops/LLRrape2", "https://tec.openplanner.team/stops/LLRrape4"], ["https://tec.openplanner.team/stops/H2ca100b", "https://tec.openplanner.team/stops/H2mo130b"], ["https://tec.openplanner.team/stops/Bmrlegl1", "https://tec.openplanner.team/stops/Bmrlhau1"], ["https://tec.openplanner.team/stops/N550agb", "https://tec.openplanner.team/stops/N550akb"], ["https://tec.openplanner.team/stops/H4ca123b", "https://tec.openplanner.team/stops/H4ca124b"], ["https://tec.openplanner.team/stops/Bhtipir1", "https://tec.openplanner.team/stops/Bhtirin1"], ["https://tec.openplanner.team/stops/LHUcamp1", "https://tec.openplanner.team/stops/LTimalv1"], ["https://tec.openplanner.team/stops/H4am113a", "https://tec.openplanner.team/stops/H4an112a"], ["https://tec.openplanner.team/stops/LFothie2", "https://tec.openplanner.team/stops/LJAgoff2"], ["https://tec.openplanner.team/stops/X801ata", "https://tec.openplanner.team/stops/X889aea"], ["https://tec.openplanner.team/stops/LCdchod2", "https://tec.openplanner.team/stops/LMAchod2"], ["https://tec.openplanner.team/stops/X607aja", "https://tec.openplanner.team/stops/X607ajb"], ["https://tec.openplanner.team/stops/X882aaa", "https://tec.openplanner.team/stops/X882aab"], ["https://tec.openplanner.team/stops/Ccuhsti2", "https://tec.openplanner.team/stops/Cpiegli2"], ["https://tec.openplanner.team/stops/Cchsud04", "https://tec.openplanner.team/stops/Cchsud05"], ["https://tec.openplanner.team/stops/Cmacoll1", "https://tec.openplanner.team/stops/Cromonn2"], ["https://tec.openplanner.team/stops/Cnaplan2", "https://tec.openplanner.team/stops/NC14afb"], ["https://tec.openplanner.team/stops/LWOcour1", "https://tec.openplanner.team/stops/LWOruis1"], ["https://tec.openplanner.team/stops/Cnaferr2", "https://tec.openplanner.team/stops/Cnahous2"], ["https://tec.openplanner.team/stops/X896afb", "https://tec.openplanner.team/stops/X897aoa"], ["https://tec.openplanner.team/stops/N514afa", "https://tec.openplanner.team/stops/N514agb"], ["https://tec.openplanner.team/stops/H1ne138a", "https://tec.openplanner.team/stops/H1ne150a"], ["https://tec.openplanner.team/stops/LWEchat2", "https://tec.openplanner.team/stops/LWEmerm2"], ["https://tec.openplanner.team/stops/X666aab", "https://tec.openplanner.team/stops/X666aeb"], ["https://tec.openplanner.team/stops/Cmacreu2", "https://tec.openplanner.team/stops/Cmmtomb2"], ["https://tec.openplanner.team/stops/LHThall4", "https://tec.openplanner.team/stops/LLxmonu2"], ["https://tec.openplanner.team/stops/N556aea", "https://tec.openplanner.team/stops/N556afb"], ["https://tec.openplanner.team/stops/LWAlong1", "https://tec.openplanner.team/stops/LWAloui1"], ["https://tec.openplanner.team/stops/LHoetie2", "https://tec.openplanner.team/stops/LHovill2"], ["https://tec.openplanner.team/stops/Bbcoroy1", "https://tec.openplanner.team/stops/Bhenfla2"], ["https://tec.openplanner.team/stops/Bhtihau1", "https://tec.openplanner.team/stops/Bhtirin2"], ["https://tec.openplanner.team/stops/N338aga", "https://tec.openplanner.team/stops/N338ahb"], ["https://tec.openplanner.team/stops/Cmlange2", "https://tec.openplanner.team/stops/Cmtrbra1"], ["https://tec.openplanner.team/stops/H1he111a", "https://tec.openplanner.team/stops/H1he111b"], ["https://tec.openplanner.team/stops/N547anb", "https://tec.openplanner.team/stops/N548aab"], ["https://tec.openplanner.team/stops/Caibras2", "https://tec.openplanner.team/stops/N543cia"], ["https://tec.openplanner.team/stops/LAWaube1", "https://tec.openplanner.team/stops/LAWcite3"], ["https://tec.openplanner.team/stops/LBspiet2", "https://tec.openplanner.team/stops/LBssucr1"], ["https://tec.openplanner.team/stops/N121aba", "https://tec.openplanner.team/stops/N121aeb"], ["https://tec.openplanner.team/stops/Ccycont1", "https://tec.openplanner.team/stops/Crclorc2"], ["https://tec.openplanner.team/stops/N115aca", "https://tec.openplanner.team/stops/N170adb"], ["https://tec.openplanner.team/stops/H1fr114b", "https://tec.openplanner.team/stops/H1fr122a"], ["https://tec.openplanner.team/stops/N232bia", "https://tec.openplanner.team/stops/N232cbb"], ["https://tec.openplanner.team/stops/X812ava", "https://tec.openplanner.team/stops/X812awa"], ["https://tec.openplanner.team/stops/H2sb258a", "https://tec.openplanner.team/stops/H2sb259b"], ["https://tec.openplanner.team/stops/X775aia", "https://tec.openplanner.team/stops/X775aic"], ["https://tec.openplanner.team/stops/N162aab", "https://tec.openplanner.team/stops/NC28aga"], ["https://tec.openplanner.team/stops/N508alb", "https://tec.openplanner.team/stops/N508ama"], ["https://tec.openplanner.team/stops/LPLcent2", "https://tec.openplanner.team/stops/LPLphar2"], ["https://tec.openplanner.team/stops/LlgCATH1", "https://tec.openplanner.team/stops/LlgPTAV6"], ["https://tec.openplanner.team/stops/Lemlacr1", "https://tec.openplanner.team/stops/Lemsely2"], ["https://tec.openplanner.team/stops/LOUherm2", "https://tec.openplanner.team/stops/Lvitomb2"], ["https://tec.openplanner.team/stops/H4ln128a", "https://tec.openplanner.team/stops/H4ln129b"], ["https://tec.openplanner.team/stops/N506boa", "https://tec.openplanner.team/stops/N506bob"], ["https://tec.openplanner.team/stops/Llghoch3", "https://tec.openplanner.team/stops/Llghoch4"], ["https://tec.openplanner.team/stops/H4mv187a", "https://tec.openplanner.team/stops/H4oe150a"], ["https://tec.openplanner.team/stops/H4ma401a", "https://tec.openplanner.team/stops/H4ma401b"], ["https://tec.openplanner.team/stops/Bjodeco2", "https://tec.openplanner.team/stops/Bjodeco3"], ["https://tec.openplanner.team/stops/Cmgbrou2", "https://tec.openplanner.team/stops/Cmghay2"], ["https://tec.openplanner.team/stops/X986aba", "https://tec.openplanner.team/stops/X986aha"], ["https://tec.openplanner.team/stops/LMAbass2", "https://tec.openplanner.team/stops/LMAcime1"], ["https://tec.openplanner.team/stops/N383aeb", "https://tec.openplanner.team/stops/N874akb"], ["https://tec.openplanner.team/stops/N501jna", "https://tec.openplanner.team/stops/N501joa"], ["https://tec.openplanner.team/stops/N214aca", "https://tec.openplanner.team/stops/N236ahb"], ["https://tec.openplanner.team/stops/Lanfran3", "https://tec.openplanner.team/stops/Lanfran4"], ["https://tec.openplanner.team/stops/N551anb", "https://tec.openplanner.team/stops/N551apb"], ["https://tec.openplanner.team/stops/X727aba", "https://tec.openplanner.team/stops/X727aha"], ["https://tec.openplanner.team/stops/H1ha185a", "https://tec.openplanner.team/stops/H1ha200a"], ["https://tec.openplanner.team/stops/N534aca", "https://tec.openplanner.team/stops/N534acb"], ["https://tec.openplanner.team/stops/LHVgoro1", "https://tec.openplanner.team/stops/LJAbois2"], ["https://tec.openplanner.team/stops/Bbaualz2", "https://tec.openplanner.team/stops/Bbauham2"], ["https://tec.openplanner.team/stops/H4ty276b", "https://tec.openplanner.team/stops/H4ty278a"], ["https://tec.openplanner.team/stops/X742ada", "https://tec.openplanner.team/stops/X742aeb"], ["https://tec.openplanner.team/stops/H1po138b", "https://tec.openplanner.team/stops/H1po154a"], ["https://tec.openplanner.team/stops/N524aaa", "https://tec.openplanner.team/stops/N525ajb"], ["https://tec.openplanner.team/stops/Ljuinte1", "https://tec.openplanner.team/stops/Llgcouv2"], ["https://tec.openplanner.team/stops/X801bde", "https://tec.openplanner.team/stops/X801cka"], ["https://tec.openplanner.team/stops/N260abb", "https://tec.openplanner.team/stops/N260abc"], ["https://tec.openplanner.team/stops/X925agb", "https://tec.openplanner.team/stops/X925ahb"], ["https://tec.openplanner.team/stops/H2gy100b", "https://tec.openplanner.team/stops/H2tz115a"], ["https://tec.openplanner.team/stops/Bwavdel2", "https://tec.openplanner.team/stops/Bwavnam3"], ["https://tec.openplanner.team/stops/X639acc", "https://tec.openplanner.team/stops/X639acd"], ["https://tec.openplanner.team/stops/LLegern1", "https://tec.openplanner.team/stops/X547ara"], ["https://tec.openplanner.team/stops/LLmvict2", "https://tec.openplanner.team/stops/LLmwaut1"], ["https://tec.openplanner.team/stops/X857aaa", "https://tec.openplanner.team/stops/X857abb"], ["https://tec.openplanner.team/stops/H4bo114c", "https://tec.openplanner.team/stops/H4bo181b"], ["https://tec.openplanner.team/stops/Bjodppe1", "https://tec.openplanner.team/stops/Bjodppe2"], ["https://tec.openplanner.team/stops/LEHhaut1", "https://tec.openplanner.team/stops/LEHhaut2"], ["https://tec.openplanner.team/stops/LAWgill1", "https://tec.openplanner.team/stops/LAWmc--2"], ["https://tec.openplanner.team/stops/LHaeg--1", "https://tec.openplanner.team/stops/LOurena1"], ["https://tec.openplanner.team/stops/N501aga", "https://tec.openplanner.team/stops/N501cla"], ["https://tec.openplanner.team/stops/LeYmosc2", "https://tec.openplanner.team/stops/LeYraaf1"], ["https://tec.openplanner.team/stops/Cmmn1171", "https://tec.openplanner.team/stops/Cmmtomb2"], ["https://tec.openplanner.team/stops/X768agb", "https://tec.openplanner.team/stops/X768ajb"], ["https://tec.openplanner.team/stops/Lhrhome1", "https://tec.openplanner.team/stops/Lhrstev2"], ["https://tec.openplanner.team/stops/Lagchen1", "https://tec.openplanner.team/stops/Llgpari1"], ["https://tec.openplanner.team/stops/LkEhaag1", "https://tec.openplanner.team/stops/LkEl1211"], ["https://tec.openplanner.team/stops/Cbupla2", "https://tec.openplanner.team/stops/Cbuplac4"], ["https://tec.openplanner.team/stops/X358aba", "https://tec.openplanner.team/stops/X358abb"], ["https://tec.openplanner.team/stops/Crewaba2", "https://tec.openplanner.team/stops/Crewath1"], ["https://tec.openplanner.team/stops/Ljuplpr1", "https://tec.openplanner.team/stops/Ljuprev1"], ["https://tec.openplanner.team/stops/Lmogerm1", "https://tec.openplanner.team/stops/Lmolama2"], ["https://tec.openplanner.team/stops/Cacragu2", "https://tec.openplanner.team/stops/NC24afb"], ["https://tec.openplanner.team/stops/Cflpost1", "https://tec.openplanner.team/stops/Cwgcroi1"], ["https://tec.openplanner.team/stops/Bhenhau1", "https://tec.openplanner.team/stops/Bvircsj1"], ["https://tec.openplanner.team/stops/X902afa", "https://tec.openplanner.team/stops/X999aia"], ["https://tec.openplanner.team/stops/Lmobrac2", "https://tec.openplanner.team/stops/Lsnbrac3"], ["https://tec.openplanner.team/stops/N531aab", "https://tec.openplanner.team/stops/N574aca"], ["https://tec.openplanner.team/stops/N509aga", "https://tec.openplanner.team/stops/N509akb"], ["https://tec.openplanner.team/stops/Llgchat1", "https://tec.openplanner.team/stops/Llgchat2"], ["https://tec.openplanner.team/stops/LOCeg--2", "https://tec.openplanner.team/stops/LOChuy-1"], ["https://tec.openplanner.team/stops/H4ce105a", "https://tec.openplanner.team/stops/H4mx115b"], ["https://tec.openplanner.team/stops/N505aoa", "https://tec.openplanner.team/stops/N505aob"], ["https://tec.openplanner.team/stops/Cmeptmi5", "https://tec.openplanner.team/stops/Cmerued1"], ["https://tec.openplanner.team/stops/LSldurb2", "https://tec.openplanner.team/stops/X919ajb"], ["https://tec.openplanner.team/stops/N501eoa", "https://tec.openplanner.team/stops/N501ggb"], ["https://tec.openplanner.team/stops/LFAplan1", "https://tec.openplanner.team/stops/LFAscie1"], ["https://tec.openplanner.team/stops/N501fbz", "https://tec.openplanner.team/stops/N501fna"], ["https://tec.openplanner.team/stops/N390aab", "https://tec.openplanner.team/stops/N390aca"], ["https://tec.openplanner.team/stops/Blasbgc2", "https://tec.openplanner.team/stops/Blasbh52"], ["https://tec.openplanner.team/stops/Ctrstro1", "https://tec.openplanner.team/stops/Ctrterm1"], ["https://tec.openplanner.team/stops/X601bcb", "https://tec.openplanner.team/stops/X601bda"], ["https://tec.openplanner.team/stops/N134alb", "https://tec.openplanner.team/stops/N135bea"], ["https://tec.openplanner.team/stops/LWAlong2", "https://tec.openplanner.team/stops/LWAlong5"], ["https://tec.openplanner.team/stops/X728adb", "https://tec.openplanner.team/stops/X746aba"], ["https://tec.openplanner.team/stops/N576aaa", "https://tec.openplanner.team/stops/N576aab"], ["https://tec.openplanner.team/stops/X765afa", "https://tec.openplanner.team/stops/X765afb"], ["https://tec.openplanner.team/stops/Bflegar5", "https://tec.openplanner.team/stops/Bflegar6"], ["https://tec.openplanner.team/stops/LSOcime1", "https://tec.openplanner.team/stops/LSOgard1"], ["https://tec.openplanner.team/stops/LBpbruy1", "https://tec.openplanner.team/stops/LBpbruy2"], ["https://tec.openplanner.team/stops/N308aya", "https://tec.openplanner.team/stops/N308aza"], ["https://tec.openplanner.team/stops/Bchacen1", "https://tec.openplanner.team/stops/Bchacen2"], ["https://tec.openplanner.team/stops/H4ty311b", "https://tec.openplanner.team/stops/H4ty326a"], ["https://tec.openplanner.team/stops/H1ch141b", "https://tec.openplanner.team/stops/H1hh112a"], ["https://tec.openplanner.team/stops/H1wa162a", "https://tec.openplanner.team/stops/H1wg131b"], ["https://tec.openplanner.team/stops/N123ada", "https://tec.openplanner.team/stops/N123adb"], ["https://tec.openplanner.team/stops/X938aba", "https://tec.openplanner.team/stops/X938adb"], ["https://tec.openplanner.team/stops/Bmarfjo1", "https://tec.openplanner.team/stops/Bmarpla1"], ["https://tec.openplanner.team/stops/Canrtth1", "https://tec.openplanner.team/stops/Canrtth3"], ["https://tec.openplanner.team/stops/X850agb", "https://tec.openplanner.team/stops/X850ahb"], ["https://tec.openplanner.team/stops/LLTfall1", "https://tec.openplanner.team/stops/LLTgole1"], ["https://tec.openplanner.team/stops/X633aia", "https://tec.openplanner.team/stops/X633ala"], ["https://tec.openplanner.team/stops/H4av103a", "https://tec.openplanner.team/stops/H4av106a"], ["https://tec.openplanner.team/stops/H2mm136b", "https://tec.openplanner.team/stops/H2mo131b"], ["https://tec.openplanner.team/stops/X344aeb", "https://tec.openplanner.team/stops/X362ada"], ["https://tec.openplanner.team/stops/N232bhb", "https://tec.openplanner.team/stops/N232bia"], ["https://tec.openplanner.team/stops/LLUadze2", "https://tec.openplanner.team/stops/LLUtrol2"], ["https://tec.openplanner.team/stops/LAmbach1", "https://tec.openplanner.team/stops/LAmwaut1"], ["https://tec.openplanner.team/stops/H1eo104a", "https://tec.openplanner.team/stops/H1mj128b"], ["https://tec.openplanner.team/stops/LHUalbe2", "https://tec.openplanner.team/stops/LHUgare*"], ["https://tec.openplanner.team/stops/H1bd100b", "https://tec.openplanner.team/stops/H1ol140a"], ["https://tec.openplanner.team/stops/Ccucroi1", "https://tec.openplanner.team/stops/Ccutill1"], ["https://tec.openplanner.team/stops/H1hc125a", "https://tec.openplanner.team/stops/H1hc127a"], ["https://tec.openplanner.team/stops/X346afb", "https://tec.openplanner.team/stops/X892acb"], ["https://tec.openplanner.team/stops/H4ir164b", "https://tec.openplanner.team/stops/H4to136a"], ["https://tec.openplanner.team/stops/Lvecrot2", "https://tec.openplanner.team/stops/Lvepoud2"], ["https://tec.openplanner.team/stops/N308bca", "https://tec.openplanner.team/stops/N308bhb"], ["https://tec.openplanner.team/stops/LGHplai1", "https://tec.openplanner.team/stops/LGHplai2"], ["https://tec.openplanner.team/stops/Bpelf961", "https://tec.openplanner.team/stops/Bpelf962"], ["https://tec.openplanner.team/stops/Cgxvkho2", "https://tec.openplanner.team/stops/Cmocime2"], ["https://tec.openplanner.team/stops/Cfcctru2", "https://tec.openplanner.team/stops/Cvrfema1"], ["https://tec.openplanner.team/stops/H5rx103b", "https://tec.openplanner.team/stops/H5rx146a"], ["https://tec.openplanner.team/stops/X652afb", "https://tec.openplanner.team/stops/X652ajb"], ["https://tec.openplanner.team/stops/Bbststa2", "https://tec.openplanner.team/stops/Csdetan1"], ["https://tec.openplanner.team/stops/X837akb", "https://tec.openplanner.team/stops/X837alb"], ["https://tec.openplanner.team/stops/X982asa", "https://tec.openplanner.team/stops/X982awa"], ["https://tec.openplanner.team/stops/LDOanes1", "https://tec.openplanner.team/stops/LGOdelv2"], ["https://tec.openplanner.team/stops/H1el132b", "https://tec.openplanner.team/stops/H1wi151a"], ["https://tec.openplanner.team/stops/N351anb", "https://tec.openplanner.team/stops/N357ada"], ["https://tec.openplanner.team/stops/N544afa", "https://tec.openplanner.team/stops/N544aga"], ["https://tec.openplanner.team/stops/Bjancha1", "https://tec.openplanner.team/stops/Bolppsn2"], ["https://tec.openplanner.team/stops/LHAvall1", "https://tec.openplanner.team/stops/LRItour2"], ["https://tec.openplanner.team/stops/H1hc151a", "https://tec.openplanner.team/stops/H1hc152a"], ["https://tec.openplanner.team/stops/X671aca", "https://tec.openplanner.team/stops/X671aeb"], ["https://tec.openplanner.team/stops/N501chb", "https://tec.openplanner.team/stops/N501chf"], ["https://tec.openplanner.team/stops/H4bn173b", "https://tec.openplanner.team/stops/H4bn174b"], ["https://tec.openplanner.team/stops/H4mo140b", "https://tec.openplanner.team/stops/H4mo145b"], ["https://tec.openplanner.team/stops/H1ha190a", "https://tec.openplanner.team/stops/H1ha192a"], ["https://tec.openplanner.team/stops/N203abb", "https://tec.openplanner.team/stops/N203afa"], ["https://tec.openplanner.team/stops/H2jo162b", "https://tec.openplanner.team/stops/H2lh126a"], ["https://tec.openplanner.team/stops/Cmomalg2", "https://tec.openplanner.team/stops/Crocona1"], ["https://tec.openplanner.team/stops/Bvlvmar1", "https://tec.openplanner.team/stops/Bvlvpco2"], ["https://tec.openplanner.team/stops/N508afb", "https://tec.openplanner.team/stops/N508apa"], ["https://tec.openplanner.team/stops/Bblaegl2", "https://tec.openplanner.team/stops/Bblasmo1"], ["https://tec.openplanner.team/stops/H1mm122d", "https://tec.openplanner.team/stops/H1mm125c"], ["https://tec.openplanner.team/stops/LHXmonu2", "https://tec.openplanner.team/stops/LLVfoss1"], ["https://tec.openplanner.team/stops/N501edb", "https://tec.openplanner.team/stops/N501gda"], ["https://tec.openplanner.team/stops/Lagpn6-2", "https://tec.openplanner.team/stops/Lemmath2"], ["https://tec.openplanner.team/stops/Crebien1", "https://tec.openplanner.team/stops/Crebien2"], ["https://tec.openplanner.team/stops/LBNgarn1", "https://tec.openplanner.team/stops/LMebove1"], ["https://tec.openplanner.team/stops/Bpercsp2", "https://tec.openplanner.team/stops/Bpermon3"], ["https://tec.openplanner.team/stops/H1ho138b", "https://tec.openplanner.team/stops/H1wa143a"], ["https://tec.openplanner.team/stops/Lchacie2", "https://tec.openplanner.team/stops/Lvitomb1"], ["https://tec.openplanner.team/stops/Bmsgmon1", "https://tec.openplanner.team/stops/Bmsgstj2"], ["https://tec.openplanner.team/stops/LDOprev1", "https://tec.openplanner.team/stops/LHVetoi2"], ["https://tec.openplanner.team/stops/X601aga", "https://tec.openplanner.team/stops/X662ata"], ["https://tec.openplanner.team/stops/X608aoa", "https://tec.openplanner.team/stops/X608atb"], ["https://tec.openplanner.team/stops/N531aba", "https://tec.openplanner.team/stops/N531abb"], ["https://tec.openplanner.team/stops/X633aka", "https://tec.openplanner.team/stops/X633amb"], ["https://tec.openplanner.team/stops/Lmocalv1", "https://tec.openplanner.team/stops/Lmogerm1"], ["https://tec.openplanner.team/stops/Baudtri2", "https://tec.openplanner.team/stops/Bwbfhip1"], ["https://tec.openplanner.team/stops/N505amb", "https://tec.openplanner.team/stops/N512aub"], ["https://tec.openplanner.team/stops/LBapeup1", "https://tec.openplanner.team/stops/LLrdrev1"], ["https://tec.openplanner.team/stops/X638aba", "https://tec.openplanner.team/stops/X638adb"], ["https://tec.openplanner.team/stops/N528aqa", "https://tec.openplanner.team/stops/N528arb"], ["https://tec.openplanner.team/stops/N501aay", "https://tec.openplanner.team/stops/N501esa"], ["https://tec.openplanner.team/stops/N568aea", "https://tec.openplanner.team/stops/N568aeb"], ["https://tec.openplanner.team/stops/H1hr121b", "https://tec.openplanner.team/stops/H1hr121c"], ["https://tec.openplanner.team/stops/X730aaa", "https://tec.openplanner.team/stops/X731aib"], ["https://tec.openplanner.team/stops/Chhlori1", "https://tec.openplanner.team/stops/Cmx3arb2"], ["https://tec.openplanner.team/stops/H1gh144b", "https://tec.openplanner.team/stops/H1gh155b"], ["https://tec.openplanner.team/stops/X943ada", "https://tec.openplanner.team/stops/X943afb"], ["https://tec.openplanner.team/stops/Bgnvpap1", "https://tec.openplanner.team/stops/Brsrpar2"], ["https://tec.openplanner.team/stops/H4mv192a", "https://tec.openplanner.team/stops/H4mv195b"], ["https://tec.openplanner.team/stops/Lfhpast1", "https://tec.openplanner.team/stops/Ljedepa2"], ["https://tec.openplanner.team/stops/N510aeb", "https://tec.openplanner.team/stops/N510afb"], ["https://tec.openplanner.team/stops/N561aca", "https://tec.openplanner.team/stops/N561afa"], ["https://tec.openplanner.team/stops/Bovecha1", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://tec.openplanner.team/stops/LLvgare2", "https://tec.openplanner.team/stops/NL81adb"], ["https://tec.openplanner.team/stops/H4hu121b", "https://tec.openplanner.team/stops/H4hu122b"], ["https://tec.openplanner.team/stops/Bgemfbo1", "https://tec.openplanner.team/stops/Bgemrom3"], ["https://tec.openplanner.team/stops/LVlfooz2", "https://tec.openplanner.team/stops/LVlfooz3"], ["https://tec.openplanner.team/stops/Bblaeur1", "https://tec.openplanner.team/stops/Bblamsj2"], ["https://tec.openplanner.team/stops/H2an103a", "https://tec.openplanner.team/stops/H2an109a"], ["https://tec.openplanner.team/stops/LCPgare2", "https://tec.openplanner.team/stops/LCPscay1"], ["https://tec.openplanner.team/stops/H4bu108b", "https://tec.openplanner.team/stops/H4bu109b"], ["https://tec.openplanner.team/stops/LeIpiro4", "https://tec.openplanner.team/stops/LiVkreu4"], ["https://tec.openplanner.team/stops/LSkdouf2", "https://tec.openplanner.team/stops/LSkrena2"], ["https://tec.openplanner.team/stops/X638aja", "https://tec.openplanner.team/stops/X638arb"], ["https://tec.openplanner.team/stops/Lhrpwan2", "https://tec.openplanner.team/stops/Lwachal2"], ["https://tec.openplanner.team/stops/X665aab", "https://tec.openplanner.team/stops/X665aba"], ["https://tec.openplanner.team/stops/N162aea", "https://tec.openplanner.team/stops/N162aeb"], ["https://tec.openplanner.team/stops/X633aaa", "https://tec.openplanner.team/stops/X633aab"], ["https://tec.openplanner.team/stops/Bsdafra1", "https://tec.openplanner.team/stops/Bsdafra2"], ["https://tec.openplanner.team/stops/LAmab751", "https://tec.openplanner.team/stops/LAmeclu1"], ["https://tec.openplanner.team/stops/LPLcent1", "https://tec.openplanner.team/stops/LPLphar1"], ["https://tec.openplanner.team/stops/H3bo101a", "https://tec.openplanner.team/stops/H3bo102a"], ["https://tec.openplanner.team/stops/H2pr118a", "https://tec.openplanner.team/stops/H2pr118b"], ["https://tec.openplanner.team/stops/Bgntpos2", "https://tec.openplanner.team/stops/Bsgeegl2"], ["https://tec.openplanner.team/stops/Bnilspe1", "https://tec.openplanner.team/stops/Bnilspe4"], ["https://tec.openplanner.team/stops/LWZeg--2", "https://tec.openplanner.team/stops/LWZponb1"], ["https://tec.openplanner.team/stops/X754aaa", "https://tec.openplanner.team/stops/X779agb"], ["https://tec.openplanner.team/stops/LaMhe421", "https://tec.openplanner.team/stops/LaMpost2"], ["https://tec.openplanner.team/stops/LESathe1", "https://tec.openplanner.team/stops/LESpont3"], ["https://tec.openplanner.team/stops/X738aab", "https://tec.openplanner.team/stops/X739aaa"], ["https://tec.openplanner.team/stops/LLrhest2", "https://tec.openplanner.team/stops/LTHturo3"], ["https://tec.openplanner.team/stops/N343acb", "https://tec.openplanner.team/stops/N343alb"], ["https://tec.openplanner.team/stops/H4gu106a", "https://tec.openplanner.team/stops/H4gu111a"], ["https://tec.openplanner.team/stops/LVbgend2", "https://tec.openplanner.team/stops/LVbstre1"], ["https://tec.openplanner.team/stops/N141afa", "https://tec.openplanner.team/stops/N141aga"], ["https://tec.openplanner.team/stops/Caccarr2", "https://tec.openplanner.team/stops/NC24aab"], ["https://tec.openplanner.team/stops/X908ara", "https://tec.openplanner.team/stops/X910aab"], ["https://tec.openplanner.team/stops/Ctm4che1", "https://tec.openplanner.team/stops/Ctmdema1"], ["https://tec.openplanner.team/stops/H4wi166b", "https://tec.openplanner.team/stops/H5pe144a"], ["https://tec.openplanner.team/stops/LHUfrai1", "https://tec.openplanner.team/stops/LHUmess1"], ["https://tec.openplanner.team/stops/LBCtros1", "https://tec.openplanner.team/stops/LGDgdou2"], ["https://tec.openplanner.team/stops/LHgdari2", "https://tec.openplanner.team/stops/LHgtomb2"], ["https://tec.openplanner.team/stops/LHrchez2", "https://tec.openplanner.team/stops/LHreg--1"], ["https://tec.openplanner.team/stops/N501ika", "https://tec.openplanner.team/stops/N501inb"], ["https://tec.openplanner.team/stops/H1au113b", "https://tec.openplanner.team/stops/H1fy118a"], ["https://tec.openplanner.team/stops/X947abb", "https://tec.openplanner.team/stops/X947abc"], ["https://tec.openplanner.team/stops/Lsehaut1", "https://tec.openplanner.team/stops/Lsehaut2"], ["https://tec.openplanner.team/stops/N553ada", "https://tec.openplanner.team/stops/N553anb"], ["https://tec.openplanner.team/stops/H1cu119a", "https://tec.openplanner.team/stops/H1je360b"], ["https://tec.openplanner.team/stops/H2ch102a", "https://tec.openplanner.team/stops/H2ch102b"], ["https://tec.openplanner.team/stops/H4ma401b", "https://tec.openplanner.team/stops/H4ma417a"], ["https://tec.openplanner.team/stops/H4rm107d", "https://tec.openplanner.team/stops/H4rm113b"], ["https://tec.openplanner.team/stops/Brixble5", "https://tec.openplanner.team/stops/Brixcro1"], ["https://tec.openplanner.team/stops/Cjucpui1", "https://tec.openplanner.team/stops/Cjumarc3"], ["https://tec.openplanner.team/stops/X912abb", "https://tec.openplanner.team/stops/X912ala"], ["https://tec.openplanner.team/stops/Cgocitn1", "https://tec.openplanner.team/stops/Cgocrus2"], ["https://tec.openplanner.team/stops/N528afz", "https://tec.openplanner.team/stops/N528aja"], ["https://tec.openplanner.team/stops/Bwavcui1", "https://tec.openplanner.team/stops/Bwavvpr1"], ["https://tec.openplanner.team/stops/H1hw119b", "https://tec.openplanner.team/stops/H1ls109b"], ["https://tec.openplanner.team/stops/N311aab", "https://tec.openplanner.team/stops/N311abb"], ["https://tec.openplanner.team/stops/H5qu142a", "https://tec.openplanner.team/stops/H5qu142b"], ["https://tec.openplanner.team/stops/Bgemga12", "https://tec.openplanner.team/stops/Bgemgcw1"], ["https://tec.openplanner.team/stops/N531anb", "https://tec.openplanner.team/stops/N531apa"], ["https://tec.openplanner.team/stops/H1ho136a", "https://tec.openplanner.team/stops/H1ho136b"], ["https://tec.openplanner.team/stops/H4hq132a", "https://tec.openplanner.team/stops/H4hq132b"], ["https://tec.openplanner.team/stops/LSIters2", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://tec.openplanner.team/stops/N562boa", "https://tec.openplanner.team/stops/N562bwb"], ["https://tec.openplanner.team/stops/H4ty274a", "https://tec.openplanner.team/stops/H4ty306b"], ["https://tec.openplanner.team/stops/Baudvdr1", "https://tec.openplanner.team/stops/Baudvdu1"], ["https://tec.openplanner.team/stops/Bbwacol2", "https://tec.openplanner.team/stops/Bwavlon2"], ["https://tec.openplanner.team/stops/H3br102a", "https://tec.openplanner.team/stops/H3br102b"], ["https://tec.openplanner.team/stops/X723aha", "https://tec.openplanner.team/stops/X775alb"], ["https://tec.openplanner.team/stops/Cci28ju1", "https://tec.openplanner.team/stops/Cciarfr1"], ["https://tec.openplanner.team/stops/Cprlpre2", "https://tec.openplanner.team/stops/Cprsapv2"], ["https://tec.openplanner.team/stops/H4es112b", "https://tec.openplanner.team/stops/H4ev126a"], ["https://tec.openplanner.team/stops/H1an100a", "https://tec.openplanner.team/stops/H1au103a"], ["https://tec.openplanner.team/stops/X657aba", "https://tec.openplanner.team/stops/X744aaa"], ["https://tec.openplanner.team/stops/LLOhest1", "https://tec.openplanner.team/stops/LLOspin1"], ["https://tec.openplanner.team/stops/Ltiegli1", "https://tec.openplanner.team/stops/Ltinico2"], ["https://tec.openplanner.team/stops/N351ana", "https://tec.openplanner.team/stops/N353ahb"], ["https://tec.openplanner.team/stops/LrAgier2", "https://tec.openplanner.team/stops/LrAplat2"], ["https://tec.openplanner.team/stops/X619aca", "https://tec.openplanner.team/stops/X619adb"], ["https://tec.openplanner.team/stops/N103aaa", "https://tec.openplanner.team/stops/N131aea"], ["https://tec.openplanner.team/stops/LAMvert1", "https://tec.openplanner.team/stops/LOmlime1"], ["https://tec.openplanner.team/stops/LHvvill*", "https://tec.openplanner.team/stops/LLz21--2"], ["https://tec.openplanner.team/stops/LHXfont1", "https://tec.openplanner.team/stops/X575aab"], ["https://tec.openplanner.team/stops/H4he103b", "https://tec.openplanner.team/stops/H4he107a"], ["https://tec.openplanner.team/stops/H1bb115a", "https://tec.openplanner.team/stops/H1bb117a"], ["https://tec.openplanner.team/stops/X717adb", "https://tec.openplanner.team/stops/X717ahb"], ["https://tec.openplanner.team/stops/H3lr106b", "https://tec.openplanner.team/stops/H3th135d"], ["https://tec.openplanner.team/stops/H4ga153b", "https://tec.openplanner.team/stops/H4ha171a"], ["https://tec.openplanner.team/stops/Bplnbal1", "https://tec.openplanner.team/stops/Bplncsd2"], ["https://tec.openplanner.team/stops/X604aja", "https://tec.openplanner.team/stops/X604ama"], ["https://tec.openplanner.team/stops/H4ka182a", "https://tec.openplanner.team/stops/H4ka394a"], ["https://tec.openplanner.team/stops/H1bo100a", "https://tec.openplanner.team/stops/H1bo108b"], ["https://tec.openplanner.team/stops/LHNland2", "https://tec.openplanner.team/stops/LHNtonn2"], ["https://tec.openplanner.team/stops/Llgamer2", "https://tec.openplanner.team/stops/Llgongr1"], ["https://tec.openplanner.team/stops/H1pa112b", "https://tec.openplanner.team/stops/H1pa166b"], ["https://tec.openplanner.team/stops/LHNland1", "https://tec.openplanner.team/stops/LHNtonn1"], ["https://tec.openplanner.team/stops/Cthalli2", "https://tec.openplanner.team/stops/Cthbifu2"], ["https://tec.openplanner.team/stops/Cctbois3", "https://tec.openplanner.team/stops/Cctkais2"], ["https://tec.openplanner.team/stops/H4mo132a", "https://tec.openplanner.team/stops/H4mo132b"], ["https://tec.openplanner.team/stops/X724aaa", "https://tec.openplanner.team/stops/X768aaa"], ["https://tec.openplanner.team/stops/H1ha193b", "https://tec.openplanner.team/stops/H1ms282a"], ["https://tec.openplanner.team/stops/LLUtill2", "https://tec.openplanner.team/stops/LLUtill3"], ["https://tec.openplanner.team/stops/X901adb", "https://tec.openplanner.team/stops/X901bpa"], ["https://tec.openplanner.team/stops/LAMfroi1", "https://tec.openplanner.team/stops/LAMweha1"], ["https://tec.openplanner.team/stops/X908abb", "https://tec.openplanner.team/stops/X955aeb"], ["https://tec.openplanner.team/stops/LFdbruy1", "https://tec.openplanner.team/stops/LFdbruy2"], ["https://tec.openplanner.team/stops/X808aga", "https://tec.openplanner.team/stops/X808agb"], ["https://tec.openplanner.team/stops/X718agb", "https://tec.openplanner.team/stops/X718ahb"], ["https://tec.openplanner.team/stops/Bdonlat2", "https://tec.openplanner.team/stops/Blthbss2"], ["https://tec.openplanner.team/stops/LmNha151", "https://tec.openplanner.team/stops/LmNha221"], ["https://tec.openplanner.team/stops/LRRbuta2", "https://tec.openplanner.team/stops/LRRmanc1"], ["https://tec.openplanner.team/stops/Cchcime1", "https://tec.openplanner.team/stops/Cchlamb1"], ["https://tec.openplanner.team/stops/H1gi118a", "https://tec.openplanner.team/stops/H1gi121b"], ["https://tec.openplanner.team/stops/H1cu110a", "https://tec.openplanner.team/stops/H1fl139b"], ["https://tec.openplanner.team/stops/Lanfont2", "https://tec.openplanner.team/stops/Lglsana1"], ["https://tec.openplanner.team/stops/X925aja", "https://tec.openplanner.team/stops/X925ajb"], ["https://tec.openplanner.team/stops/H1er105b", "https://tec.openplanner.team/stops/H1er111a"], ["https://tec.openplanner.team/stops/N501dab", "https://tec.openplanner.team/stops/N528akb"], ["https://tec.openplanner.team/stops/LWegdry2", "https://tec.openplanner.team/stops/LWevalf2"], ["https://tec.openplanner.team/stops/Ljuvert1", "https://tec.openplanner.team/stops/Ljuvert2"], ["https://tec.openplanner.team/stops/X666aja", "https://tec.openplanner.team/stops/X729aab"], ["https://tec.openplanner.team/stops/Cwxchap2", "https://tec.openplanner.team/stops/Cwxplac1"], ["https://tec.openplanner.team/stops/Bcbqcha1", "https://tec.openplanner.team/stops/Blemsta1"], ["https://tec.openplanner.team/stops/LBEoblu2", "https://tec.openplanner.team/stops/Lemfort1"], ["https://tec.openplanner.team/stops/Lsebuis2", "https://tec.openplanner.team/stops/Lsepcha4"], ["https://tec.openplanner.team/stops/N511apa", "https://tec.openplanner.team/stops/N511aqa"], ["https://tec.openplanner.team/stops/Brsrber2", "https://tec.openplanner.team/stops/Brsrpch1"], ["https://tec.openplanner.team/stops/LPTblan1", "https://tec.openplanner.team/stops/LPTgran1"], ["https://tec.openplanner.team/stops/H4be145b", "https://tec.openplanner.team/stops/H5bl121a"], ["https://tec.openplanner.team/stops/Cculgeo1", "https://tec.openplanner.team/stops/Ccuwil2"], ["https://tec.openplanner.team/stops/X882aab", "https://tec.openplanner.team/stops/X882ada"], ["https://tec.openplanner.team/stops/X908asa", "https://tec.openplanner.team/stops/X910acb"], ["https://tec.openplanner.team/stops/Btanpla1", "https://tec.openplanner.team/stops/Btanpla4"], ["https://tec.openplanner.team/stops/H1cv104b", "https://tec.openplanner.team/stops/H1ml110a"], ["https://tec.openplanner.team/stops/X917adb", "https://tec.openplanner.team/stops/X921ana"], ["https://tec.openplanner.team/stops/LNHbarr1", "https://tec.openplanner.team/stops/LNHbarr2"], ["https://tec.openplanner.team/stops/Cmmami1", "https://tec.openplanner.team/stops/Cmmcver2"], ["https://tec.openplanner.team/stops/Bhalcbr1", "https://tec.openplanner.team/stops/Bhaltre1"], ["https://tec.openplanner.team/stops/N147aca", "https://tec.openplanner.team/stops/N147acb"], ["https://tec.openplanner.team/stops/X654akb", "https://tec.openplanner.team/stops/X654ala"], ["https://tec.openplanner.team/stops/H4rm111a", "https://tec.openplanner.team/stops/H4rm112a"], ["https://tec.openplanner.team/stops/LhGkirc1", "https://tec.openplanner.team/stops/LhGkirc3"], ["https://tec.openplanner.team/stops/Cfabnat1", "https://tec.openplanner.team/stops/Cfanvmo2"], ["https://tec.openplanner.team/stops/NH01aia", "https://tec.openplanner.team/stops/NH01apb"], ["https://tec.openplanner.team/stops/H4pl117b", "https://tec.openplanner.team/stops/H4pl135a"], ["https://tec.openplanner.team/stops/H5ma180a", "https://tec.openplanner.team/stops/H5ma186b"], ["https://tec.openplanner.team/stops/H3so169a", "https://tec.openplanner.team/stops/H3so169b"], ["https://tec.openplanner.team/stops/Lcceg--1", "https://tec.openplanner.team/stops/Lfhhoul1"], ["https://tec.openplanner.team/stops/NL37aka", "https://tec.openplanner.team/stops/NL37ala"], ["https://tec.openplanner.team/stops/Louroos1", "https://tec.openplanner.team/stops/Louroos3"], ["https://tec.openplanner.team/stops/Bbcoeca1", "https://tec.openplanner.team/stops/H3br122b"], ["https://tec.openplanner.team/stops/H1gn149b", "https://tec.openplanner.team/stops/H1gn151b"], ["https://tec.openplanner.team/stops/X670amb", "https://tec.openplanner.team/stops/X670ana"], ["https://tec.openplanner.team/stops/LLrelec1", "https://tec.openplanner.team/stops/LLrvill2"], ["https://tec.openplanner.team/stops/Canrobe1", "https://tec.openplanner.team/stops/Canrobe2"], ["https://tec.openplanner.team/stops/H4do107a", "https://tec.openplanner.team/stops/H4do107d"], ["https://tec.openplanner.team/stops/LbRfrie1", "https://tec.openplanner.team/stops/LwTkabi3"], ["https://tec.openplanner.team/stops/Ljudeme1", "https://tec.openplanner.team/stops/Ljuinte2"], ["https://tec.openplanner.team/stops/X362aaa", "https://tec.openplanner.team/stops/X362abb"], ["https://tec.openplanner.team/stops/H4bu109b", "https://tec.openplanner.team/stops/H4oe150a"], ["https://tec.openplanner.team/stops/N501dsb", "https://tec.openplanner.team/stops/N501jra"], ["https://tec.openplanner.team/stops/Ljestat2", "https://tec.openplanner.team/stops/Ljestat3"], ["https://tec.openplanner.team/stops/Btubga06", "https://tec.openplanner.team/stops/Btubpla1"], ["https://tec.openplanner.team/stops/N207add", "https://tec.openplanner.team/stops/N210aaa"], ["https://tec.openplanner.team/stops/N308aaa", "https://tec.openplanner.team/stops/N308asb"], ["https://tec.openplanner.team/stops/Btslcel2", "https://tec.openplanner.team/stops/Btsllfp2"], ["https://tec.openplanner.team/stops/Clbptno3", "https://tec.openplanner.team/stops/Cthgrat2"], ["https://tec.openplanner.team/stops/LCEhayo1", "https://tec.openplanner.team/stops/LCEplac1"], ["https://tec.openplanner.team/stops/H1bb146a", "https://tec.openplanner.team/stops/H1do115b"], ["https://tec.openplanner.team/stops/Lticoq-2", "https://tec.openplanner.team/stops/Ltimarr2"], ["https://tec.openplanner.team/stops/H1me114b", "https://tec.openplanner.team/stops/H1me118a"], ["https://tec.openplanner.team/stops/Llgfusc1", "https://tec.openplanner.team/stops/Llgfusc4"], ["https://tec.openplanner.team/stops/H5pe130b", "https://tec.openplanner.team/stops/H5pe150b"], ["https://tec.openplanner.team/stops/Lemdupo2", "https://tec.openplanner.team/stops/Lempass2"], ["https://tec.openplanner.team/stops/H5bl119d", "https://tec.openplanner.team/stops/H5qu149b"], ["https://tec.openplanner.team/stops/Lsecime2", "https://tec.openplanner.team/stops/Lsepudd2"], ["https://tec.openplanner.team/stops/LOreg--2", "https://tec.openplanner.team/stops/LTywaut1"], ["https://tec.openplanner.team/stops/Lsmcime1", "https://tec.openplanner.team/stops/Lvepoud1"], ["https://tec.openplanner.team/stops/H2ma205b", "https://tec.openplanner.team/stops/H2ma210a"], ["https://tec.openplanner.team/stops/Lbocarr2", "https://tec.openplanner.team/stops/Lbogonh*"], ["https://tec.openplanner.team/stops/N509adb", "https://tec.openplanner.team/stops/N511aqa"], ["https://tec.openplanner.team/stops/Lcceg--1", "https://tec.openplanner.team/stops/LRaplac2"], ["https://tec.openplanner.team/stops/Cslbhau2", "https://tec.openplanner.team/stops/Cvtegli2"], ["https://tec.openplanner.team/stops/X921aca", "https://tec.openplanner.team/stops/X921ama"], ["https://tec.openplanner.team/stops/H2le146b", "https://tec.openplanner.team/stops/H2le152a"], ["https://tec.openplanner.team/stops/N121aaa", "https://tec.openplanner.team/stops/N121aca"], ["https://tec.openplanner.team/stops/X782aca", "https://tec.openplanner.team/stops/X782adb"], ["https://tec.openplanner.team/stops/H2be100a", "https://tec.openplanner.team/stops/H2mg151a"], ["https://tec.openplanner.team/stops/H4bo118b", "https://tec.openplanner.team/stops/H4bo118d"], ["https://tec.openplanner.team/stops/LhLbalt2", "https://tec.openplanner.team/stops/LmEdorf1"], ["https://tec.openplanner.team/stops/X784aeb", "https://tec.openplanner.team/stops/X784aga"], ["https://tec.openplanner.team/stops/Cmlbruy1", "https://tec.openplanner.team/stops/Cmmbmad1"], ["https://tec.openplanner.team/stops/Cptccas1", "https://tec.openplanner.team/stops/Cptegli3"], ["https://tec.openplanner.team/stops/H2lh128b", "https://tec.openplanner.team/stops/H2mo129b"], ["https://tec.openplanner.team/stops/Bhtihau2", "https://tec.openplanner.team/stops/Bhtirin1"], ["https://tec.openplanner.team/stops/H4ty280a", "https://tec.openplanner.team/stops/H4ty314a"], ["https://tec.openplanner.team/stops/Bbghcar2", "https://tec.openplanner.team/stops/Bpte1ma1"], ["https://tec.openplanner.team/stops/Lhrecol1", "https://tec.openplanner.team/stops/Lhrpost1"], ["https://tec.openplanner.team/stops/Cgoetun1", "https://tec.openplanner.team/stops/Cgoetun3"], ["https://tec.openplanner.team/stops/Cslbarb2", "https://tec.openplanner.team/stops/Cvtmaro2"], ["https://tec.openplanner.team/stops/N533aga", "https://tec.openplanner.team/stops/N533aoa"], ["https://tec.openplanner.team/stops/N557aaa", "https://tec.openplanner.team/stops/N557abb"], ["https://tec.openplanner.team/stops/LREgrot1", "https://tec.openplanner.team/stops/LREsoug3"], ["https://tec.openplanner.team/stops/Llgcite1", "https://tec.openplanner.team/stops/Llgmarc2"], ["https://tec.openplanner.team/stops/Bptrcra1", "https://tec.openplanner.team/stops/Bptrmar2"], ["https://tec.openplanner.team/stops/LMHmeha1", "https://tec.openplanner.team/stops/LWNcham1"], ["https://tec.openplanner.team/stops/Bwatms10", "https://tec.openplanner.team/stops/Bwatmsj6"], ["https://tec.openplanner.team/stops/NL79aaa", "https://tec.openplanner.team/stops/NL81ahb"], ["https://tec.openplanner.team/stops/H4mo155a", "https://tec.openplanner.team/stops/H4rx142b"], ["https://tec.openplanner.team/stops/LNEcite2", "https://tec.openplanner.team/stops/LNEvpn-2"], ["https://tec.openplanner.team/stops/LBNeup22", "https://tec.openplanner.team/stops/LBNvill1"], ["https://tec.openplanner.team/stops/H5rx105a", "https://tec.openplanner.team/stops/H5rx105b"], ["https://tec.openplanner.team/stops/H4wn126a", "https://tec.openplanner.team/stops/H4wn129b"], ["https://tec.openplanner.team/stops/X996aab", "https://tec.openplanner.team/stops/X996abb"], ["https://tec.openplanner.team/stops/X982aja", "https://tec.openplanner.team/stops/X982bja"], ["https://tec.openplanner.team/stops/Bmrsayw2", "https://tec.openplanner.team/stops/Bmrspel1"], ["https://tec.openplanner.team/stops/X597aaa", "https://tec.openplanner.team/stops/X597aab"], ["https://tec.openplanner.team/stops/X720ada", "https://tec.openplanner.team/stops/X721alb"], ["https://tec.openplanner.team/stops/Bllnein3", "https://tec.openplanner.team/stops/Bllnlen2"], ["https://tec.openplanner.team/stops/N201ahb", "https://tec.openplanner.team/stops/N201awa"], ["https://tec.openplanner.team/stops/Cmlbuis4", "https://tec.openplanner.team/stops/Cmllecl4"], ["https://tec.openplanner.team/stops/Cgygayo3", "https://tec.openplanner.team/stops/Cgyrrep1"], ["https://tec.openplanner.team/stops/LOLcroi2", "https://tec.openplanner.team/stops/LOLrafh1"], ["https://tec.openplanner.team/stops/N522bva", "https://tec.openplanner.team/stops/N522bvb"], ["https://tec.openplanner.team/stops/LLVerri1", "https://tec.openplanner.team/stops/X575aca"], ["https://tec.openplanner.team/stops/LPohoeg1", "https://tec.openplanner.team/stops/LPoxhav1"], ["https://tec.openplanner.team/stops/LOlvill2", "https://tec.openplanner.team/stops/LSevitu3"], ["https://tec.openplanner.team/stops/LaApost1", "https://tec.openplanner.team/stops/LaApost2"], ["https://tec.openplanner.team/stops/LLxcrem2", "https://tec.openplanner.team/stops/LLxnive2"], ["https://tec.openplanner.team/stops/H4ca123b", "https://tec.openplanner.team/stops/H4ws160a"], ["https://tec.openplanner.team/stops/X948aea", "https://tec.openplanner.team/stops/X948aga"], ["https://tec.openplanner.team/stops/LWycarr1", "https://tec.openplanner.team/stops/LWycarr2"], ["https://tec.openplanner.team/stops/Lkithie1", "https://tec.openplanner.team/stops/Lkithie2"], ["https://tec.openplanner.team/stops/Blimbet3", "https://tec.openplanner.team/stops/Bottpry1"], ["https://tec.openplanner.team/stops/N501jda", "https://tec.openplanner.team/stops/N501jja"], ["https://tec.openplanner.team/stops/H5rx102a", "https://tec.openplanner.team/stops/H5rx130b"], ["https://tec.openplanner.team/stops/X261aca", "https://tec.openplanner.team/stops/X982aab"], ["https://tec.openplanner.team/stops/LCaresi1", "https://tec.openplanner.team/stops/LVefont2"], ["https://tec.openplanner.team/stops/X801aeb", "https://tec.openplanner.team/stops/X801amb"], ["https://tec.openplanner.team/stops/X606aab", "https://tec.openplanner.team/stops/X620agb"], ["https://tec.openplanner.team/stops/H1wa147a", "https://tec.openplanner.team/stops/H1wa164a"], ["https://tec.openplanner.team/stops/X644aaa", "https://tec.openplanner.team/stops/X644abb"], ["https://tec.openplanner.team/stops/N424aaa", "https://tec.openplanner.team/stops/N424aab"], ["https://tec.openplanner.team/stops/X742acb", "https://tec.openplanner.team/stops/X742ada"], ["https://tec.openplanner.team/stops/LAmvent3", "https://tec.openplanner.team/stops/LAmwaut2"], ["https://tec.openplanner.team/stops/LMoeg--1", "https://tec.openplanner.team/stops/LMotrem1"], ["https://tec.openplanner.team/stops/H4ty293b", "https://tec.openplanner.team/stops/H4ty296b"], ["https://tec.openplanner.team/stops/Bflccav1", "https://tec.openplanner.team/stops/Bjaufca2"], ["https://tec.openplanner.team/stops/Ccuoise1", "https://tec.openplanner.team/stops/Ccurtra2"], ["https://tec.openplanner.team/stops/H2ch103c", "https://tec.openplanner.team/stops/H2ch111b"], ["https://tec.openplanner.team/stops/LNIdoma2", "https://tec.openplanner.team/stops/LSPmari2"], ["https://tec.openplanner.team/stops/Lprfoot1", "https://tec.openplanner.team/stops/LWetrib2"], ["https://tec.openplanner.team/stops/Bbeacha1", "https://tec.openplanner.team/stops/Bbeasta1"], ["https://tec.openplanner.team/stops/X902afd", "https://tec.openplanner.team/stops/X902apa"], ["https://tec.openplanner.team/stops/X638aka", "https://tec.openplanner.team/stops/X638aqa"], ["https://tec.openplanner.team/stops/Cchrmon1", "https://tec.openplanner.team/stops/Cchrmon4"], ["https://tec.openplanner.team/stops/Llggrav2", "https://tec.openplanner.team/stops/Llgnati1"], ["https://tec.openplanner.team/stops/X771aea", "https://tec.openplanner.team/stops/X771aeb"], ["https://tec.openplanner.team/stops/LeIdeid2", "https://tec.openplanner.team/stops/LiV19--2"], ["https://tec.openplanner.team/stops/LBkbamb1", "https://tec.openplanner.team/stops/LBkdahl2"], ["https://tec.openplanner.team/stops/N102aba", "https://tec.openplanner.team/stops/N151ajb"], ["https://tec.openplanner.team/stops/H1ms285a", "https://tec.openplanner.team/stops/H1ms294c"], ["https://tec.openplanner.team/stops/LHGikea1", "https://tec.openplanner.team/stops/LHGtige2"], ["https://tec.openplanner.team/stops/LJEtige2", "https://tec.openplanner.team/stops/LJEverd2"], ["https://tec.openplanner.team/stops/X685aca", "https://tec.openplanner.team/stops/X685acb"], ["https://tec.openplanner.team/stops/X786aaa", "https://tec.openplanner.team/stops/X786aab"], ["https://tec.openplanner.team/stops/X790acb", "https://tec.openplanner.team/stops/X790adb"], ["https://tec.openplanner.team/stops/Lpefler2", "https://tec.openplanner.team/stops/LTAchpl2"], ["https://tec.openplanner.team/stops/H1si151a", "https://tec.openplanner.team/stops/H4bo179a"], ["https://tec.openplanner.team/stops/N241aga", "https://tec.openplanner.team/stops/N270aab"], ["https://tec.openplanner.team/stops/X614aja", "https://tec.openplanner.team/stops/X614alb"], ["https://tec.openplanner.team/stops/H1bi100b", "https://tec.openplanner.team/stops/H1sa113a"], ["https://tec.openplanner.team/stops/H1ha194b", "https://tec.openplanner.team/stops/H3bo102a"], ["https://tec.openplanner.team/stops/N526aab", "https://tec.openplanner.team/stops/N526ada"], ["https://tec.openplanner.team/stops/N519aob", "https://tec.openplanner.team/stops/N525afb"], ["https://tec.openplanner.team/stops/H4ta121b", "https://tec.openplanner.team/stops/H4wu377b"], ["https://tec.openplanner.team/stops/H2mo124a", "https://tec.openplanner.team/stops/H2mo144a"], ["https://tec.openplanner.team/stops/Bstecal2", "https://tec.openplanner.team/stops/Bstetre2"], ["https://tec.openplanner.team/stops/Lgrchar1", "https://tec.openplanner.team/stops/Lgrfalc1"], ["https://tec.openplanner.team/stops/X921ajc", "https://tec.openplanner.team/stops/X921aka"], ["https://tec.openplanner.team/stops/LNCfawe1", "https://tec.openplanner.team/stops/LRRchea5"], ["https://tec.openplanner.team/stops/H1te186b", "https://tec.openplanner.team/stops/H1vt192b"], ["https://tec.openplanner.team/stops/LpEbins1", "https://tec.openplanner.team/stops/LrApark1"], ["https://tec.openplanner.team/stops/N501awb", "https://tec.openplanner.team/stops/N501dca"], ["https://tec.openplanner.team/stops/Lroboeg1", "https://tec.openplanner.team/stops/Lrogene1"], ["https://tec.openplanner.team/stops/LaFbruc1", "https://tec.openplanner.team/stops/LwPdorf2"], ["https://tec.openplanner.team/stops/N501gbb", "https://tec.openplanner.team/stops/N501lxa"], ["https://tec.openplanner.team/stops/LeYfeld2", "https://tec.openplanner.team/stops/LeYroth2"], ["https://tec.openplanner.team/stops/Bbstcoi1", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/LSkcoin1", "https://tec.openplanner.team/stops/LSkrena3"], ["https://tec.openplanner.team/stops/X604aab", "https://tec.openplanner.team/stops/X604aba"], ["https://tec.openplanner.team/stops/Lfhcoop1", "https://tec.openplanner.team/stops/Ljedepa1"], ["https://tec.openplanner.team/stops/Cjurogi1", "https://tec.openplanner.team/stops/Clostan1"], ["https://tec.openplanner.team/stops/X806aba", "https://tec.openplanner.team/stops/X806akc"], ["https://tec.openplanner.team/stops/N538atb", "https://tec.openplanner.team/stops/N538atd"], ["https://tec.openplanner.team/stops/H4ha169a", "https://tec.openplanner.team/stops/H4ha170b"], ["https://tec.openplanner.team/stops/X659aab", "https://tec.openplanner.team/stops/X669aeb"], ["https://tec.openplanner.team/stops/Cplelec1", "https://tec.openplanner.team/stops/Crsstem2"], ["https://tec.openplanner.team/stops/LVsboug1", "https://tec.openplanner.team/stops/LVsbrux1"], ["https://tec.openplanner.team/stops/Bgerd321", "https://tec.openplanner.team/stops/Bgrhcen1"], ["https://tec.openplanner.team/stops/X765aaa", "https://tec.openplanner.team/stops/X791abb"], ["https://tec.openplanner.team/stops/H4my120a", "https://tec.openplanner.team/stops/H4vz371b"], ["https://tec.openplanner.team/stops/N167add", "https://tec.openplanner.team/stops/N167aeb"], ["https://tec.openplanner.team/stops/LCeanne2", "https://tec.openplanner.team/stops/LFalieg2"], ["https://tec.openplanner.team/stops/Ccobinc2", "https://tec.openplanner.team/stops/Ccopeti2"], ["https://tec.openplanner.team/stops/Lalexpa2", "https://tec.openplanner.team/stops/Lrccomm1"], ["https://tec.openplanner.team/stops/X695aab", "https://tec.openplanner.team/stops/X695aka"], ["https://tec.openplanner.team/stops/X638aca", "https://tec.openplanner.team/stops/X638adb"], ["https://tec.openplanner.team/stops/H5qu143b", "https://tec.openplanner.team/stops/H5qu182a"], ["https://tec.openplanner.team/stops/H1gn151a", "https://tec.openplanner.team/stops/H1gq153b"], ["https://tec.openplanner.team/stops/X802aga", "https://tec.openplanner.team/stops/X836aha"], ["https://tec.openplanner.team/stops/N352afb", "https://tec.openplanner.team/stops/N367ada"], ["https://tec.openplanner.team/stops/N501cla", "https://tec.openplanner.team/stops/N503aca"], ["https://tec.openplanner.team/stops/LSZgare1", "https://tec.openplanner.team/stops/LSZlegr2"], ["https://tec.openplanner.team/stops/X344aea", "https://tec.openplanner.team/stops/X345aaa"], ["https://tec.openplanner.team/stops/X910aeb", "https://tec.openplanner.team/stops/X910agb"], ["https://tec.openplanner.team/stops/H1sy144b", "https://tec.openplanner.team/stops/H1sy145b"], ["https://tec.openplanner.team/stops/H4pi131b", "https://tec.openplanner.team/stops/H4pi134a"], ["https://tec.openplanner.team/stops/N507ala", "https://tec.openplanner.team/stops/N507alc"], ["https://tec.openplanner.team/stops/N244abb", "https://tec.openplanner.team/stops/N244ajb"], ["https://tec.openplanner.team/stops/LSkmarq1", "https://tec.openplanner.team/stops/LYechpl2"], ["https://tec.openplanner.team/stops/H2ll177a", "https://tec.openplanner.team/stops/H2ll257d"], ["https://tec.openplanner.team/stops/H1mh115b", "https://tec.openplanner.team/stops/H1po154a"], ["https://tec.openplanner.team/stops/H1so143a", "https://tec.openplanner.team/stops/H1so146a"], ["https://tec.openplanner.team/stops/H4mo149a", "https://tec.openplanner.team/stops/H4tg163a"], ["https://tec.openplanner.team/stops/N533ana", "https://tec.openplanner.team/stops/N533anb"], ["https://tec.openplanner.team/stops/H4ty341b", "https://tec.openplanner.team/stops/H4ty356b"], ["https://tec.openplanner.team/stops/N576ala", "https://tec.openplanner.team/stops/N576alb"], ["https://tec.openplanner.team/stops/N571aba", "https://tec.openplanner.team/stops/N571aca"], ["https://tec.openplanner.team/stops/Ckevela1", "https://tec.openplanner.team/stops/Cwfronc2"], ["https://tec.openplanner.team/stops/N104adb", "https://tec.openplanner.team/stops/N104afb"], ["https://tec.openplanner.team/stops/H1te183b", "https://tec.openplanner.team/stops/H1te187a"], ["https://tec.openplanner.team/stops/Bgemfbo2", "https://tec.openplanner.team/stops/Bgemga07"], ["https://tec.openplanner.team/stops/LWNberg2", "https://tec.openplanner.team/stops/LWNchar1"], ["https://tec.openplanner.team/stops/H4eg108b", "https://tec.openplanner.team/stops/H4ne135a"], ["https://tec.openplanner.team/stops/Lchmarc1", "https://tec.openplanner.team/stops/Lchmarc2"], ["https://tec.openplanner.team/stops/X822aia", "https://tec.openplanner.team/stops/X836afb"], ["https://tec.openplanner.team/stops/N212aea", "https://tec.openplanner.team/stops/N212agb"], ["https://tec.openplanner.team/stops/N576aab", "https://tec.openplanner.team/stops/N576afa"], ["https://tec.openplanner.team/stops/NL76aob", "https://tec.openplanner.team/stops/NL80aub"], ["https://tec.openplanner.team/stops/Cmlecha1", "https://tec.openplanner.team/stops/Cmlhotv1"], ["https://tec.openplanner.team/stops/N512aba", "https://tec.openplanner.team/stops/N512afb"], ["https://tec.openplanner.team/stops/X714aca", "https://tec.openplanner.team/stops/X714ada"], ["https://tec.openplanner.team/stops/N553aba", "https://tec.openplanner.team/stops/N553abc"], ["https://tec.openplanner.team/stops/X614aqa", "https://tec.openplanner.team/stops/X614asb"], ["https://tec.openplanner.team/stops/LCFcafe1", "https://tec.openplanner.team/stops/LCFchir1"], ["https://tec.openplanner.team/stops/X615bdb", "https://tec.openplanner.team/stops/X616ajb"], ["https://tec.openplanner.team/stops/H4bo118c", "https://tec.openplanner.team/stops/H4bo118d"], ["https://tec.openplanner.team/stops/X941abb", "https://tec.openplanner.team/stops/X941acc"], ["https://tec.openplanner.team/stops/Cchbrou1", "https://tec.openplanner.team/stops/CMsacm2"], ["https://tec.openplanner.team/stops/Lglcoun2", "https://tec.openplanner.team/stops/Lglvict2"], ["https://tec.openplanner.team/stops/Lhrdelv2", "https://tec.openplanner.team/stops/Lhrhosp2"], ["https://tec.openplanner.team/stops/N569aia", "https://tec.openplanner.team/stops/N569aic"], ["https://tec.openplanner.team/stops/X369aba", "https://tec.openplanner.team/stops/X858aba"], ["https://tec.openplanner.team/stops/X604akb", "https://tec.openplanner.team/stops/X604alb"], ["https://tec.openplanner.team/stops/X943aca", "https://tec.openplanner.team/stops/X943aha"], ["https://tec.openplanner.team/stops/Lbomc--5", "https://tec.openplanner.team/stops/Lbomc--8"], ["https://tec.openplanner.team/stops/Cchba06", "https://tec.openplanner.team/stops/Cchba09"], ["https://tec.openplanner.team/stops/H1hr127b", "https://tec.openplanner.team/stops/H1to153c"], ["https://tec.openplanner.team/stops/LPLaube1", "https://tec.openplanner.team/stops/LPLstat1"], ["https://tec.openplanner.team/stops/N534aya", "https://tec.openplanner.team/stops/N534bdb"], ["https://tec.openplanner.team/stops/H4bd108a", "https://tec.openplanner.team/stops/H4bd110b"], ["https://tec.openplanner.team/stops/Ccychco1", "https://tec.openplanner.team/stops/NH01agd"], ["https://tec.openplanner.team/stops/LMOecsp1", "https://tec.openplanner.team/stops/LMOs45-1"], ["https://tec.openplanner.team/stops/Lcepoul1", "https://tec.openplanner.team/stops/Lcepoul2"], ["https://tec.openplanner.team/stops/X949aia", "https://tec.openplanner.team/stops/X949amb"], ["https://tec.openplanner.team/stops/H4ma399b", "https://tec.openplanner.team/stops/H4ma401a"], ["https://tec.openplanner.team/stops/X818aja", "https://tec.openplanner.team/stops/X818ama"], ["https://tec.openplanner.team/stops/N117abb", "https://tec.openplanner.team/stops/N117acb"], ["https://tec.openplanner.team/stops/LSTchal1", "https://tec.openplanner.team/stops/LSTrema1"], ["https://tec.openplanner.team/stops/N135bda", "https://tec.openplanner.team/stops/N135beb"], ["https://tec.openplanner.team/stops/Cairous2", "https://tec.openplanner.team/stops/N543cbb"], ["https://tec.openplanner.team/stops/Bbchgod1", "https://tec.openplanner.team/stops/Bhalvla2"], ["https://tec.openplanner.team/stops/Lhurouh1", "https://tec.openplanner.team/stops/Lhurouh2"], ["https://tec.openplanner.team/stops/X882aca", "https://tec.openplanner.team/stops/X882ada"], ["https://tec.openplanner.team/stops/H2ll180b", "https://tec.openplanner.team/stops/H2ll193b"], ["https://tec.openplanner.team/stops/H2mi122a", "https://tec.openplanner.team/stops/H3lr108b"], ["https://tec.openplanner.team/stops/H4fr144b", "https://tec.openplanner.team/stops/H4ty328a"], ["https://tec.openplanner.team/stops/LBjpech1", "https://tec.openplanner.team/stops/X576ahb"], ["https://tec.openplanner.team/stops/Lhrabho1", "https://tec.openplanner.team/stops/Lvitomb2"], ["https://tec.openplanner.team/stops/H1bb146a", "https://tec.openplanner.team/stops/H1bb146b"], ["https://tec.openplanner.team/stops/X812awa", "https://tec.openplanner.team/stops/X812axa"], ["https://tec.openplanner.team/stops/H1ha186b", "https://tec.openplanner.team/stops/H1ha198b"], ["https://tec.openplanner.team/stops/N349ada", "https://tec.openplanner.team/stops/N349aeb"], ["https://tec.openplanner.team/stops/LsVeite2", "https://tec.openplanner.team/stops/LsVprum4"], ["https://tec.openplanner.team/stops/H5bs103a", "https://tec.openplanner.team/stops/H5bs104b"], ["https://tec.openplanner.team/stops/X725aef", "https://tec.openplanner.team/stops/X725aob"], ["https://tec.openplanner.team/stops/N390aba", "https://tec.openplanner.team/stops/N390abb"], ["https://tec.openplanner.team/stops/LBWbatt1", "https://tec.openplanner.team/stops/LBWeg--1"], ["https://tec.openplanner.team/stops/X899aha", "https://tec.openplanner.team/stops/X899ahb"], ["https://tec.openplanner.team/stops/Llgpier2", "https://tec.openplanner.team/stops/Llgterr1"], ["https://tec.openplanner.team/stops/LBEmich2", "https://tec.openplanner.team/stops/LGMhadr1"], ["https://tec.openplanner.team/stops/X629aba", "https://tec.openplanner.team/stops/X629aca"], ["https://tec.openplanner.team/stops/LEBdoct1", "https://tec.openplanner.team/stops/LEMec--2"], ["https://tec.openplanner.team/stops/N121aab", "https://tec.openplanner.team/stops/N121abb"], ["https://tec.openplanner.team/stops/LrTpost1", "https://tec.openplanner.team/stops/LtEnach2"], ["https://tec.openplanner.team/stops/LNCfawe1", "https://tec.openplanner.team/stops/LNCmada2"], ["https://tec.openplanner.team/stops/N117atb", "https://tec.openplanner.team/stops/N571afb"], ["https://tec.openplanner.team/stops/X316aab", "https://tec.openplanner.team/stops/X316abb"], ["https://tec.openplanner.team/stops/N149acb", "https://tec.openplanner.team/stops/N149adb"], ["https://tec.openplanner.team/stops/Cchheig2", "https://tec.openplanner.team/stops/Cchviad2"], ["https://tec.openplanner.team/stops/N134ala", "https://tec.openplanner.team/stops/N134alb"], ["https://tec.openplanner.team/stops/Cmabegh2", "https://tec.openplanner.team/stops/Cmaegli2"], ["https://tec.openplanner.team/stops/X812afa", "https://tec.openplanner.team/stops/X812agb"], ["https://tec.openplanner.team/stops/Bengvma2", "https://tec.openplanner.team/stops/H1mk123a"], ["https://tec.openplanner.team/stops/LwR140-1", "https://tec.openplanner.team/stops/LwRkirc2"], ["https://tec.openplanner.team/stops/Ccupbro1", "https://tec.openplanner.team/stops/Ccuwil2"], ["https://tec.openplanner.team/stops/N501cma", "https://tec.openplanner.team/stops/N501cmb"], ["https://tec.openplanner.team/stops/Cgylami1", "https://tec.openplanner.team/stops/Craferr1"], ["https://tec.openplanner.team/stops/X827aaa", "https://tec.openplanner.team/stops/X827aab"], ["https://tec.openplanner.team/stops/N167aba", "https://tec.openplanner.team/stops/N244axa"], ["https://tec.openplanner.team/stops/LVIacac1", "https://tec.openplanner.team/stops/LVIastr1"], ["https://tec.openplanner.team/stops/N505anb", "https://tec.openplanner.team/stops/N512aub"], ["https://tec.openplanner.team/stops/LeUbahn2", "https://tec.openplanner.team/stops/LkTkabi2"], ["https://tec.openplanner.team/stops/H4ty313a", "https://tec.openplanner.team/stops/H4ty343b"], ["https://tec.openplanner.team/stops/LBdmarr2", "https://tec.openplanner.team/stops/LWMcent1"], ["https://tec.openplanner.team/stops/LmSluxh1", "https://tec.openplanner.team/stops/LmSluxh2"], ["https://tec.openplanner.team/stops/H1qu107a", "https://tec.openplanner.team/stops/H1qu109a"], ["https://tec.openplanner.team/stops/Lalhomb1", "https://tec.openplanner.team/stops/Laltrap2"], ["https://tec.openplanner.team/stops/Ljujaur1", "https://tec.openplanner.team/stops/Ljujaur2"], ["https://tec.openplanner.team/stops/Cbtbras1", "https://tec.openplanner.team/stops/Cbtbras2"], ["https://tec.openplanner.team/stops/Cdagoss1", "https://tec.openplanner.team/stops/CMprov1"], ["https://tec.openplanner.team/stops/X896aaa", "https://tec.openplanner.team/stops/X898afa"], ["https://tec.openplanner.team/stops/H1cd110a", "https://tec.openplanner.team/stops/H1ne150a"], ["https://tec.openplanner.team/stops/Lagpass2", "https://tec.openplanner.team/stops/Lemjacq1"], ["https://tec.openplanner.team/stops/H4po124a", "https://tec.openplanner.team/stops/H4po129a"], ["https://tec.openplanner.team/stops/H5pe135a", "https://tec.openplanner.team/stops/H5pe146b"], ["https://tec.openplanner.team/stops/X820abb", "https://tec.openplanner.team/stops/X820afb"], ["https://tec.openplanner.team/stops/Llgoutr1", "https://tec.openplanner.team/stops/Llgoutr2"], ["https://tec.openplanner.team/stops/LcRmich1", "https://tec.openplanner.team/stops/LrD28--1"], ["https://tec.openplanner.team/stops/LaAdiep2", "https://tec.openplanner.team/stops/LaAzwei2"], ["https://tec.openplanner.team/stops/CMfbru1", "https://tec.openplanner.team/stops/Ctmsncb2"], ["https://tec.openplanner.team/stops/LhMwing2", "https://tec.openplanner.team/stops/LwPdorf1"], ["https://tec.openplanner.team/stops/LFdbruy2", "https://tec.openplanner.team/stops/LFdeg--1"], ["https://tec.openplanner.team/stops/X576agb", "https://tec.openplanner.team/stops/X717aia"], ["https://tec.openplanner.team/stops/Bsrgegl2", "https://tec.openplanner.team/stops/Bsrgm102"], ["https://tec.openplanner.team/stops/Lfhbail1", "https://tec.openplanner.team/stops/Lfhdonn2"], ["https://tec.openplanner.team/stops/LSHfief2", "https://tec.openplanner.team/stops/LSHneuv1"], ["https://tec.openplanner.team/stops/H2ep172a", "https://tec.openplanner.team/stops/H2ep172b"], ["https://tec.openplanner.team/stops/X615aga", "https://tec.openplanner.team/stops/X615agb"], ["https://tec.openplanner.team/stops/H1hw120b", "https://tec.openplanner.team/stops/H1hw122a"], ["https://tec.openplanner.team/stops/H4ty327a", "https://tec.openplanner.team/stops/H4ty327b"], ["https://tec.openplanner.team/stops/N505aga", "https://tec.openplanner.team/stops/N506apb"], ["https://tec.openplanner.team/stops/N127aca", "https://tec.openplanner.team/stops/N127ada"], ["https://tec.openplanner.team/stops/N357aca", "https://tec.openplanner.team/stops/N357afb"], ["https://tec.openplanner.team/stops/X982aya", "https://tec.openplanner.team/stops/X982bwa"], ["https://tec.openplanner.team/stops/LFEague1", "https://tec.openplanner.team/stops/X597apb"], ["https://tec.openplanner.team/stops/X347ajb", "https://tec.openplanner.team/stops/X892abb"], ["https://tec.openplanner.team/stops/LPLcarr1", "https://tec.openplanner.team/stops/LPLcent2"], ["https://tec.openplanner.team/stops/NC11aha", "https://tec.openplanner.team/stops/NC11ahb"], ["https://tec.openplanner.team/stops/H1ms256a", "https://tec.openplanner.team/stops/H1ms922a"], ["https://tec.openplanner.team/stops/Cauushm1", "https://tec.openplanner.team/stops/N543azb"], ["https://tec.openplanner.team/stops/Lkirenk1", "https://tec.openplanner.team/stops/Llgvalu2"], ["https://tec.openplanner.team/stops/Csycant1", "https://tec.openplanner.team/stops/Csygare1"], ["https://tec.openplanner.team/stops/Lcejobe2", "https://tec.openplanner.team/stops/Lgrjobe2"], ["https://tec.openplanner.team/stops/LHUlieg2", "https://tec.openplanner.team/stops/LHUpost3"], ["https://tec.openplanner.team/stops/Lemacac2", "https://tec.openplanner.team/stops/Lemdupo1"], ["https://tec.openplanner.team/stops/N506afb", "https://tec.openplanner.team/stops/N506aha"], ["https://tec.openplanner.team/stops/LWacime1", "https://tec.openplanner.team/stops/LWalibo1"], ["https://tec.openplanner.team/stops/H1sg149b", "https://tec.openplanner.team/stops/H1sg150c"], ["https://tec.openplanner.team/stops/N511ala", "https://tec.openplanner.team/stops/N511alc"], ["https://tec.openplanner.team/stops/X925aia", "https://tec.openplanner.team/stops/X925ana"], ["https://tec.openplanner.team/stops/X718aha", "https://tec.openplanner.team/stops/X718aia"], ["https://tec.openplanner.team/stops/LLycent*", "https://tec.openplanner.team/stops/LSochal1"], ["https://tec.openplanner.team/stops/N507ahb", "https://tec.openplanner.team/stops/N507amb"], ["https://tec.openplanner.team/stops/X633afa", "https://tec.openplanner.team/stops/X633agb"], ["https://tec.openplanner.team/stops/N308agb", "https://tec.openplanner.team/stops/N308aka"], ["https://tec.openplanner.team/stops/Csebasc1", "https://tec.openplanner.team/stops/Csequew1"], ["https://tec.openplanner.team/stops/Borbod92", "https://tec.openplanner.team/stops/Btstcar3"], ["https://tec.openplanner.team/stops/LMgbern2", "https://tec.openplanner.team/stops/LVImons2"], ["https://tec.openplanner.team/stops/X818aua", "https://tec.openplanner.team/stops/X818aub"], ["https://tec.openplanner.team/stops/H4ca124b", "https://tec.openplanner.team/stops/H4wi163a"], ["https://tec.openplanner.team/stops/N576aja", "https://tec.openplanner.team/stops/N576ajb"], ["https://tec.openplanner.team/stops/Livvill2", "https://tec.openplanner.team/stops/LRachen*"], ["https://tec.openplanner.team/stops/Bqueegl1", "https://tec.openplanner.team/stops/Bquereb2"], ["https://tec.openplanner.team/stops/LWDchab2", "https://tec.openplanner.team/stops/LWDcime2"], ["https://tec.openplanner.team/stops/N511aib", "https://tec.openplanner.team/stops/N511asb"], ["https://tec.openplanner.team/stops/Balswin2", "https://tec.openplanner.team/stops/Brsg7fo2"], ["https://tec.openplanner.team/stops/LCvmonu1", "https://tec.openplanner.team/stops/LCvneu-2"], ["https://tec.openplanner.team/stops/LmHbahn1", "https://tec.openplanner.team/stops/LmTgers1"], ["https://tec.openplanner.team/stops/Lmodeja1", "https://tec.openplanner.team/stops/Lmomarr3"], ["https://tec.openplanner.team/stops/N232apb", "https://tec.openplanner.team/stops/N232bpb"], ["https://tec.openplanner.team/stops/Cmlclos2", "https://tec.openplanner.team/stops/Cmmami2"], ["https://tec.openplanner.team/stops/H4ty397b", "https://tec.openplanner.team/stops/H4ty406a"], ["https://tec.openplanner.team/stops/N232bxa", "https://tec.openplanner.team/stops/N232bya"], ["https://tec.openplanner.team/stops/H4ry130a", "https://tec.openplanner.team/stops/H4ry131b"], ["https://tec.openplanner.team/stops/X925aga", "https://tec.openplanner.team/stops/X925alb"], ["https://tec.openplanner.team/stops/H4ka174b", "https://tec.openplanner.team/stops/H4ka181a"], ["https://tec.openplanner.team/stops/N204abb", "https://tec.openplanner.team/stops/N204acb"], ["https://tec.openplanner.team/stops/Cmazone2", "https://tec.openplanner.team/stops/Cmmegli3"], ["https://tec.openplanner.team/stops/Cjugill1", "https://tec.openplanner.team/stops/CMchag2"], ["https://tec.openplanner.team/stops/H4os223b", "https://tec.openplanner.team/stops/H5wo132b"], ["https://tec.openplanner.team/stops/Cclplac1", "https://tec.openplanner.team/stops/Cclrgiv2"], ["https://tec.openplanner.team/stops/Cfccabi1", "https://tec.openplanner.team/stops/Cfcpier2"], ["https://tec.openplanner.team/stops/Ljubods1", "https://tec.openplanner.team/stops/Ljubods2"], ["https://tec.openplanner.team/stops/LDLgran1", "https://tec.openplanner.team/stops/LHYlinc4"], ["https://tec.openplanner.team/stops/X802acb", "https://tec.openplanner.team/stops/X802aea"], ["https://tec.openplanner.team/stops/X639amd", "https://tec.openplanner.team/stops/X639ana"], ["https://tec.openplanner.team/stops/Btlgmou1", "https://tec.openplanner.team/stops/Btlgreg1"], ["https://tec.openplanner.team/stops/H5at128a", "https://tec.openplanner.team/stops/H5at128b"], ["https://tec.openplanner.team/stops/H1hw122b", "https://tec.openplanner.team/stops/H1ls109b"], ["https://tec.openplanner.team/stops/LBVclig1", "https://tec.openplanner.team/stops/LBVlamo1"], ["https://tec.openplanner.team/stops/Cchba08", "https://tec.openplanner.team/stops/Cchba11"], ["https://tec.openplanner.team/stops/LmFdorf2", "https://tec.openplanner.team/stops/LmNbirt2"], ["https://tec.openplanner.team/stops/X890aea", "https://tec.openplanner.team/stops/X890aeb"], ["https://tec.openplanner.team/stops/N217aaa", "https://tec.openplanner.team/stops/N217ada"], ["https://tec.openplanner.team/stops/X925ajb", "https://tec.openplanner.team/stops/X927aba"], ["https://tec.openplanner.team/stops/Llgjean1", "https://tec.openplanner.team/stops/Llgvelb2"], ["https://tec.openplanner.team/stops/LHTcerc1", "https://tec.openplanner.team/stops/LHTdelh1"], ["https://tec.openplanner.team/stops/H1cd110b", "https://tec.openplanner.team/stops/H1to152a"], ["https://tec.openplanner.team/stops/X347aab", "https://tec.openplanner.team/stops/X369acb"], ["https://tec.openplanner.team/stops/H1br125b", "https://tec.openplanner.team/stops/H2pe161b"], ["https://tec.openplanner.team/stops/X601cpa", "https://tec.openplanner.team/stops/X601cra"], ["https://tec.openplanner.team/stops/Lhrstev1", "https://tec.openplanner.team/stops/Lhrwigi2"], ["https://tec.openplanner.team/stops/H4bo112a", "https://tec.openplanner.team/stops/H4bo113b"], ["https://tec.openplanner.team/stops/X637aqb", "https://tec.openplanner.team/stops/X650aob"], ["https://tec.openplanner.team/stops/Cfaecmo2", "https://tec.openplanner.team/stops/Cpiegli2"], ["https://tec.openplanner.team/stops/N503aib", "https://tec.openplanner.team/stops/N503alb"], ["https://tec.openplanner.team/stops/Lalwaro1", "https://tec.openplanner.team/stops/LXhcite1"], ["https://tec.openplanner.team/stops/X663akb", "https://tec.openplanner.team/stops/X663aob"], ["https://tec.openplanner.team/stops/LPLfp2-2", "https://tec.openplanner.team/stops/LPLstat2"], ["https://tec.openplanner.team/stops/Lghecol*", "https://tec.openplanner.team/stops/Lghpara2"], ["https://tec.openplanner.team/stops/X725aca", "https://tec.openplanner.team/stops/X725adb"], ["https://tec.openplanner.team/stops/Baegpon2", "https://tec.openplanner.team/stops/Bramcar1"], ["https://tec.openplanner.team/stops/N210aab", "https://tec.openplanner.team/stops/NL82aga"], ["https://tec.openplanner.team/stops/H4mv194a", "https://tec.openplanner.team/stops/H4mv197a"], ["https://tec.openplanner.team/stops/Ltigare2", "https://tec.openplanner.team/stops/Ltinico1"], ["https://tec.openplanner.team/stops/Btubmfa2", "https://tec.openplanner.team/stops/Btubpla2"], ["https://tec.openplanner.team/stops/Cvlcen2", "https://tec.openplanner.team/stops/NH01ajb"], ["https://tec.openplanner.team/stops/Lsebrun4", "https://tec.openplanner.team/stops/Lsepuit1"], ["https://tec.openplanner.team/stops/N503aha", "https://tec.openplanner.team/stops/N503ahb"], ["https://tec.openplanner.team/stops/LHUlebe3", "https://tec.openplanner.team/stops/LHUlebe5"], ["https://tec.openplanner.team/stops/N501mha", "https://tec.openplanner.team/stops/N501msb"], ["https://tec.openplanner.team/stops/LLUmont1", "https://tec.openplanner.team/stops/LLUpier2"], ["https://tec.openplanner.team/stops/LCObouh1", "https://tec.openplanner.team/stops/LCOcarr1"], ["https://tec.openplanner.team/stops/X721aga", "https://tec.openplanner.team/stops/X721ajb"], ["https://tec.openplanner.team/stops/Bgnvdep2", "https://tec.openplanner.team/stops/Bgnvoha4"], ["https://tec.openplanner.team/stops/Blmlcim1", "https://tec.openplanner.team/stops/Blmlqlo1"], ["https://tec.openplanner.team/stops/Borblim1", "https://tec.openplanner.team/stops/Btstbes1"], ["https://tec.openplanner.team/stops/LESryon1", "https://tec.openplanner.team/stops/LESryon2"], ["https://tec.openplanner.team/stops/LWAaxhe1", "https://tec.openplanner.team/stops/LWAipes2"], ["https://tec.openplanner.team/stops/LMIcamp2", "https://tec.openplanner.team/stops/LMImc--1"], ["https://tec.openplanner.team/stops/Ldichat1", "https://tec.openplanner.team/stops/Ldicorb2"], ["https://tec.openplanner.team/stops/X982akb", "https://tec.openplanner.team/stops/X982boa"], ["https://tec.openplanner.team/stops/NC14ada", "https://tec.openplanner.team/stops/NC44adb"], ["https://tec.openplanner.team/stops/H5wo122b", "https://tec.openplanner.team/stops/H5wo132a"], ["https://tec.openplanner.team/stops/Bbsthpl2", "https://tec.openplanner.team/stops/Bbsttab2"], ["https://tec.openplanner.team/stops/N545abb", "https://tec.openplanner.team/stops/N545acb"], ["https://tec.openplanner.team/stops/LBRpier1", "https://tec.openplanner.team/stops/LBRpier2"], ["https://tec.openplanner.team/stops/H4fa128a", "https://tec.openplanner.team/stops/H4ms146a"], ["https://tec.openplanner.team/stops/H4hx109a", "https://tec.openplanner.team/stops/H4mo191b"], ["https://tec.openplanner.team/stops/H4wa149b", "https://tec.openplanner.team/stops/H4wa151a"], ["https://tec.openplanner.team/stops/Lagjado2", "https://tec.openplanner.team/stops/Lagpaix2"], ["https://tec.openplanner.team/stops/LCRchpl1", "https://tec.openplanner.team/stops/LRUhama2"], ["https://tec.openplanner.team/stops/LHUgdpl1", "https://tec.openplanner.team/stops/LHUgdpl2"], ["https://tec.openplanner.team/stops/H4bd109a", "https://tec.openplanner.team/stops/H4bd109b"], ["https://tec.openplanner.team/stops/Ljemont1", "https://tec.openplanner.team/stops/Ljemont2"], ["https://tec.openplanner.team/stops/Bwaunce2", "https://tec.openplanner.team/stops/Bwaunop1"], ["https://tec.openplanner.team/stops/H1mb125b", "https://tec.openplanner.team/stops/H1mb129a"], ["https://tec.openplanner.team/stops/H1ms362a", "https://tec.openplanner.team/stops/H1ob361b"], ["https://tec.openplanner.team/stops/X802aha", "https://tec.openplanner.team/stops/X802ahb"], ["https://tec.openplanner.team/stops/N120aha", "https://tec.openplanner.team/stops/N120aod"], ["https://tec.openplanner.team/stops/LDmcruc2", "https://tec.openplanner.team/stops/LDmdegi2"], ["https://tec.openplanner.team/stops/X626afb", "https://tec.openplanner.team/stops/X626agb"], ["https://tec.openplanner.team/stops/LVEhali2", "https://tec.openplanner.team/stops/LVErtt-2"], ["https://tec.openplanner.team/stops/H2gy103a", "https://tec.openplanner.team/stops/H2gy103b"], ["https://tec.openplanner.team/stops/N507ada", "https://tec.openplanner.team/stops/N507ahb"], ["https://tec.openplanner.team/stops/LCaalou2", "https://tec.openplanner.team/stops/Lmlcite*"], ["https://tec.openplanner.team/stops/H1fa120b", "https://tec.openplanner.team/stops/H1hl128a"], ["https://tec.openplanner.team/stops/LbUmurr1", "https://tec.openplanner.team/stops/LhOokat2"], ["https://tec.openplanner.team/stops/Laghetr1", "https://tec.openplanner.team/stops/Lagsauh1"], ["https://tec.openplanner.team/stops/Btubbai1", "https://tec.openplanner.team/stops/Btubstq1"], ["https://tec.openplanner.team/stops/LHgec--0", "https://tec.openplanner.team/stops/LHgeg--1"], ["https://tec.openplanner.team/stops/N501bhb", "https://tec.openplanner.team/stops/N501bwa"], ["https://tec.openplanner.team/stops/X804ajb", "https://tec.openplanner.team/stops/X804akb"], ["https://tec.openplanner.team/stops/Lrcvinc1", "https://tec.openplanner.team/stops/Lvopaqu1"], ["https://tec.openplanner.team/stops/H4ta117a", "https://tec.openplanner.team/stops/H4ta124a"], ["https://tec.openplanner.team/stops/X940aha", "https://tec.openplanner.team/stops/X946abb"], ["https://tec.openplanner.team/stops/X741aja", "https://tec.openplanner.team/stops/X741aob"], ["https://tec.openplanner.team/stops/X750bma", "https://tec.openplanner.team/stops/X784aaa"], ["https://tec.openplanner.team/stops/X999anb", "https://tec.openplanner.team/stops/X999aub"], ["https://tec.openplanner.team/stops/LVtespo1", "https://tec.openplanner.team/stops/LVtespo2"], ["https://tec.openplanner.team/stops/LNOsedo1", "https://tec.openplanner.team/stops/LREprea1"], ["https://tec.openplanner.team/stops/Btlgfto1", "https://tec.openplanner.team/stops/Btlgmee1"], ["https://tec.openplanner.team/stops/X661ahb", "https://tec.openplanner.team/stops/X661aia"], ["https://tec.openplanner.team/stops/LTPpres1", "https://tec.openplanner.team/stops/LTPpres2"], ["https://tec.openplanner.team/stops/Ccipier2", "https://tec.openplanner.team/stops/Ccisolv1"], ["https://tec.openplanner.team/stops/LMHmeha2", "https://tec.openplanner.team/stops/LMHplac4"], ["https://tec.openplanner.team/stops/X923aeb", "https://tec.openplanner.team/stops/X923ama"], ["https://tec.openplanner.team/stops/Cgy4bra1", "https://tec.openplanner.team/stops/CMgill1"], ["https://tec.openplanner.team/stops/Loubonc1", "https://tec.openplanner.team/stops/Lousimo2"], ["https://tec.openplanner.team/stops/LHHgare1", "https://tec.openplanner.team/stops/LHHgare2"], ["https://tec.openplanner.team/stops/LSZnive1", "https://tec.openplanner.team/stops/LSZnive2"], ["https://tec.openplanner.team/stops/Csdbosq2", "https://tec.openplanner.team/stops/Csdfboi1"], ["https://tec.openplanner.team/stops/LOesour2", "https://tec.openplanner.team/stops/LWAbett2"], ["https://tec.openplanner.team/stops/LvA12--4", "https://tec.openplanner.team/stops/LvA30--2"], ["https://tec.openplanner.team/stops/CMsama1", "https://tec.openplanner.team/stops/Cmtneuv1"], ["https://tec.openplanner.team/stops/N543bya", "https://tec.openplanner.team/stops/N566ada"], ["https://tec.openplanner.team/stops/LORgend2", "https://tec.openplanner.team/stops/LORvill1"], ["https://tec.openplanner.team/stops/Bsmgbsa2", "https://tec.openplanner.team/stops/Bsmgmas2"], ["https://tec.openplanner.team/stops/LrAdrie1", "https://tec.openplanner.team/stops/LrAdrie2"], ["https://tec.openplanner.team/stops/Ccosart1", "https://tec.openplanner.team/stops/Ccosart2"], ["https://tec.openplanner.team/stops/H1gh365a", "https://tec.openplanner.team/stops/H1ni317b"], ["https://tec.openplanner.team/stops/Lsnagne1", "https://tec.openplanner.team/stops/Lsnlibe1"], ["https://tec.openplanner.team/stops/Btlgegl2", "https://tec.openplanner.team/stops/Btlgmou1"], ["https://tec.openplanner.team/stops/LBhschu1", "https://tec.openplanner.team/stops/LmAaldr1"], ["https://tec.openplanner.team/stops/N573aoa", "https://tec.openplanner.team/stops/N573ara"], ["https://tec.openplanner.team/stops/LnDthel1", "https://tec.openplanner.team/stops/LnDthel2"], ["https://tec.openplanner.team/stops/LWOsass1", "https://tec.openplanner.team/stops/LWOsass2"], ["https://tec.openplanner.team/stops/Llgjenn2", "https://tec.openplanner.team/stops/Llgmass1"], ["https://tec.openplanner.team/stops/Cvpsawe1", "https://tec.openplanner.team/stops/Cvpsawe2"], ["https://tec.openplanner.team/stops/Bbrlpar1", "https://tec.openplanner.team/stops/Bbrlrph1"], ["https://tec.openplanner.team/stops/N539afb", "https://tec.openplanner.team/stops/N540aha"], ["https://tec.openplanner.team/stops/N501cra", "https://tec.openplanner.team/stops/N501cub"], ["https://tec.openplanner.team/stops/N562bwa", "https://tec.openplanner.team/stops/N562bwb"], ["https://tec.openplanner.team/stops/H1bs112a", "https://tec.openplanner.team/stops/H1sb144b"], ["https://tec.openplanner.team/stops/Caccera2", "https://tec.openplanner.team/stops/Cacragu2"], ["https://tec.openplanner.team/stops/Laddelc1", "https://tec.openplanner.team/stops/Ladjuif2"], ["https://tec.openplanner.team/stops/LFReg--1", "https://tec.openplanner.team/stops/LFreg--2"], ["https://tec.openplanner.team/stops/LWabela1", "https://tec.openplanner.team/stops/LWabela2"], ["https://tec.openplanner.team/stops/Cfcbosq1", "https://tec.openplanner.team/stops/Cfcecol1"], ["https://tec.openplanner.team/stops/LATmonu1", "https://tec.openplanner.team/stops/LATmonu2"], ["https://tec.openplanner.team/stops/Blhugai1", "https://tec.openplanner.team/stops/Bohngai1"], ["https://tec.openplanner.team/stops/N135aga", "https://tec.openplanner.team/stops/N135aha"], ["https://tec.openplanner.team/stops/Lfhchaf*", "https://tec.openplanner.team/stops/Lfhgare1"], ["https://tec.openplanner.team/stops/LLApavi1", "https://tec.openplanner.team/stops/LMgberw2"], ["https://tec.openplanner.team/stops/X897alc", "https://tec.openplanner.team/stops/X897awa"], ["https://tec.openplanner.team/stops/N141afa", "https://tec.openplanner.team/stops/N141ama"], ["https://tec.openplanner.team/stops/X670aca", "https://tec.openplanner.team/stops/X670aia"], ["https://tec.openplanner.team/stops/N232beb", "https://tec.openplanner.team/stops/N232bia"], ["https://tec.openplanner.team/stops/X605aaa", "https://tec.openplanner.team/stops/X605abb"], ["https://tec.openplanner.team/stops/H5rx130a", "https://tec.openplanner.team/stops/H5rx144b"], ["https://tec.openplanner.team/stops/Lmochpl2", "https://tec.openplanner.team/stops/Lmogoff2"], ["https://tec.openplanner.team/stops/LAUcose1", "https://tec.openplanner.team/stops/LAUcose2"], ["https://tec.openplanner.team/stops/X764abb", "https://tec.openplanner.team/stops/X764acb"], ["https://tec.openplanner.team/stops/Cjumarc2", "https://tec.openplanner.team/stops/Cjupuis1"], ["https://tec.openplanner.team/stops/N501bvb", "https://tec.openplanner.team/stops/N501bwb"], ["https://tec.openplanner.team/stops/H4ha167a", "https://tec.openplanner.team/stops/H4ru239b"], ["https://tec.openplanner.team/stops/X882aba", "https://tec.openplanner.team/stops/X882aia"], ["https://tec.openplanner.team/stops/LbUhons1", "https://tec.openplanner.team/stops/LbUhons2"], ["https://tec.openplanner.team/stops/Binccha1", "https://tec.openplanner.team/stops/Bincegl1"], ["https://tec.openplanner.team/stops/N338aha", "https://tec.openplanner.team/stops/N339aab"], ["https://tec.openplanner.team/stops/LBLplas2", "https://tec.openplanner.team/stops/LBLvici3"], ["https://tec.openplanner.team/stops/H1gy113b", "https://tec.openplanner.team/stops/H1og133a"], ["https://tec.openplanner.team/stops/LROandr1", "https://tec.openplanner.team/stops/LSokrin1"], ["https://tec.openplanner.team/stops/Lsehya-4", "https://tec.openplanner.team/stops/Lsepair2"], ["https://tec.openplanner.team/stops/H1hv132a", "https://tec.openplanner.team/stops/H1hv133b"], ["https://tec.openplanner.team/stops/N229aia", "https://tec.openplanner.team/stops/N229apa"], ["https://tec.openplanner.team/stops/N516aib", "https://tec.openplanner.team/stops/N517aca"], ["https://tec.openplanner.team/stops/Lcebail1", "https://tec.openplanner.team/stops/Lemmeha2"], ["https://tec.openplanner.team/stops/Lhrlaix1", "https://tec.openplanner.team/stops/Lhrlalo1"], ["https://tec.openplanner.team/stops/N117aja", "https://tec.openplanner.team/stops/N117bba"], ["https://tec.openplanner.team/stops/X994aka", "https://tec.openplanner.team/stops/X995aab"], ["https://tec.openplanner.team/stops/N251ada", "https://tec.openplanner.team/stops/N252aaa"], ["https://tec.openplanner.team/stops/X664aab", "https://tec.openplanner.team/stops/X664acb"], ["https://tec.openplanner.team/stops/Bmelenf2", "https://tec.openplanner.team/stops/Btilmon2"], ["https://tec.openplanner.team/stops/N113aca", "https://tec.openplanner.team/stops/N113ada"], ["https://tec.openplanner.team/stops/Ccoptca1", "https://tec.openplanner.team/stops/Crowall2"], ["https://tec.openplanner.team/stops/Lvoeg--2", "https://tec.openplanner.team/stops/Lvopaqu1"], ["https://tec.openplanner.team/stops/Blpgeco2", "https://tec.openplanner.team/stops/Blpglon2"], ["https://tec.openplanner.team/stops/X623aeb", "https://tec.openplanner.team/stops/X623afb"], ["https://tec.openplanner.team/stops/Lrcauto1", "https://tec.openplanner.team/stops/Lrcchpl1"], ["https://tec.openplanner.team/stops/H4ta121b", "https://tec.openplanner.team/stops/H4ta123b"], ["https://tec.openplanner.team/stops/H4vx362b", "https://tec.openplanner.team/stops/H4vx363a"], ["https://tec.openplanner.team/stops/LeUauto1", "https://tec.openplanner.team/stops/LeUwais2"], ["https://tec.openplanner.team/stops/Cmlfstt2", "https://tec.openplanner.team/stops/CMvil2"], ["https://tec.openplanner.team/stops/N149abb", "https://tec.openplanner.team/stops/N149ada"], ["https://tec.openplanner.team/stops/H2sb228c", "https://tec.openplanner.team/stops/H2tr248b"], ["https://tec.openplanner.team/stops/Cfldand2", "https://tec.openplanner.team/stops/NC23abb"], ["https://tec.openplanner.team/stops/LoUpete2", "https://tec.openplanner.team/stops/LoUzent1"], ["https://tec.openplanner.team/stops/X952ada", "https://tec.openplanner.team/stops/X952adb"], ["https://tec.openplanner.team/stops/Bwatfia1", "https://tec.openplanner.team/stops/Bwatfia2"], ["https://tec.openplanner.team/stops/Bitrbvo2", "https://tec.openplanner.team/stops/Bosqpqu2"], ["https://tec.openplanner.team/stops/X749abb", "https://tec.openplanner.team/stops/X754acb"], ["https://tec.openplanner.team/stops/Langare*", "https://tec.openplanner.team/stops/Lloross2"], ["https://tec.openplanner.team/stops/Ccupays1", "https://tec.openplanner.team/stops/Ccurtra2"], ["https://tec.openplanner.team/stops/X750aua", "https://tec.openplanner.team/stops/X750aub"], ["https://tec.openplanner.team/stops/N204aea", "https://tec.openplanner.team/stops/N208aaa"], ["https://tec.openplanner.team/stops/Cwfdupo2", "https://tec.openplanner.team/stops/Cwfronc1"], ["https://tec.openplanner.team/stops/Cfacamp4", "https://tec.openplanner.team/stops/Cfaetoi1"], ["https://tec.openplanner.team/stops/Bgrhcen2", "https://tec.openplanner.team/stops/Bgrhpos2"], ["https://tec.openplanner.team/stops/H2jo162b", "https://tec.openplanner.team/stops/H2jo163a"], ["https://tec.openplanner.team/stops/H2hp123c", "https://tec.openplanner.team/stops/H2hp124c"], ["https://tec.openplanner.team/stops/LmYeich2", "https://tec.openplanner.team/stops/LvAschw2"], ["https://tec.openplanner.team/stops/LLNbeau1", "https://tec.openplanner.team/stops/LLNbeau2"], ["https://tec.openplanner.team/stops/LSZarze1", "https://tec.openplanner.team/stops/LSZarze4"], ["https://tec.openplanner.team/stops/H1me116a", "https://tec.openplanner.team/stops/H1me116b"], ["https://tec.openplanner.team/stops/H4gu106b", "https://tec.openplanner.team/stops/H4ry130a"], ["https://tec.openplanner.team/stops/Bosqsam2", "https://tec.openplanner.team/stops/Bvirdco2"], ["https://tec.openplanner.team/stops/Clbgare1", "https://tec.openplanner.team/stops/H1lo119a"], ["https://tec.openplanner.team/stops/Bmelenf1", "https://tec.openplanner.team/stops/Btilsce2"], ["https://tec.openplanner.team/stops/N501hxy", "https://tec.openplanner.team/stops/N501ika"], ["https://tec.openplanner.team/stops/Ladplen*", "https://tec.openplanner.team/stops/LThsere1"], ["https://tec.openplanner.team/stops/LVnourt1", "https://tec.openplanner.team/stops/LVnourt4"], ["https://tec.openplanner.team/stops/Cctbois3", "https://tec.openplanner.team/stops/Ccupays2"], ["https://tec.openplanner.team/stops/H1si155a", "https://tec.openplanner.team/stops/H1vt195a"], ["https://tec.openplanner.team/stops/H1gr123b", "https://tec.openplanner.team/stops/H1gr123c"], ["https://tec.openplanner.team/stops/Lbbviad1", "https://tec.openplanner.team/stops/Lbbviad2"], ["https://tec.openplanner.team/stops/LNCcedr1", "https://tec.openplanner.team/stops/LNCgene1"], ["https://tec.openplanner.team/stops/N206abb", "https://tec.openplanner.team/stops/N206acb"], ["https://tec.openplanner.team/stops/Cprrvil2", "https://tec.openplanner.team/stops/NC44aea"], ["https://tec.openplanner.team/stops/LScd45-1", "https://tec.openplanner.team/stops/LScd45-2"], ["https://tec.openplanner.team/stops/X829ada", "https://tec.openplanner.team/stops/X829aea"], ["https://tec.openplanner.team/stops/N131afb", "https://tec.openplanner.team/stops/N152aac"], ["https://tec.openplanner.team/stops/N571aab", "https://tec.openplanner.team/stops/N571aba"], ["https://tec.openplanner.team/stops/LOrchau2", "https://tec.openplanner.team/stops/LORec--*"], ["https://tec.openplanner.team/stops/LLGec--*", "https://tec.openplanner.team/stops/LORpave2"], ["https://tec.openplanner.team/stops/N501fjb", "https://tec.openplanner.team/stops/N501mla"], ["https://tec.openplanner.team/stops/N562acb", "https://tec.openplanner.team/stops/N562aea"], ["https://tec.openplanner.team/stops/Lhrwigi1", "https://tec.openplanner.team/stops/Lhrwigi2"], ["https://tec.openplanner.team/stops/Btslcel1", "https://tec.openplanner.team/stops/Btsllfp1"], ["https://tec.openplanner.team/stops/X614ana", "https://tec.openplanner.team/stops/X614bdb"], ["https://tec.openplanner.team/stops/X561abc", "https://tec.openplanner.team/stops/X561aca"], ["https://tec.openplanner.team/stops/X625ada", "https://tec.openplanner.team/stops/X625aeb"], ["https://tec.openplanner.team/stops/H1as101a", "https://tec.openplanner.team/stops/H1as101b"], ["https://tec.openplanner.team/stops/LPcforg2", "https://tec.openplanner.team/stops/LVPbleh2"], ["https://tec.openplanner.team/stops/LXocomb2", "https://tec.openplanner.team/stops/LXopier1"], ["https://tec.openplanner.team/stops/X758ajb", "https://tec.openplanner.team/stops/X840aea"], ["https://tec.openplanner.team/stops/Cmtchas2", "https://tec.openplanner.team/stops/Cmtproc2"], ["https://tec.openplanner.team/stops/LWRbomb3", "https://tec.openplanner.team/stops/LWRgare1"], ["https://tec.openplanner.team/stops/X734aia", "https://tec.openplanner.team/stops/X734aib"], ["https://tec.openplanner.team/stops/N501bxb", "https://tec.openplanner.team/stops/N501hfb"], ["https://tec.openplanner.team/stops/LFHsucr1", "https://tec.openplanner.team/stops/LNveg--1"], ["https://tec.openplanner.team/stops/N515arb", "https://tec.openplanner.team/stops/N515asb"], ["https://tec.openplanner.team/stops/N528ana", "https://tec.openplanner.team/stops/N528anb"], ["https://tec.openplanner.team/stops/Bquepbr1", "https://tec.openplanner.team/stops/Bstecou1"], ["https://tec.openplanner.team/stops/X609aha", "https://tec.openplanner.team/stops/X610aaa"], ["https://tec.openplanner.team/stops/Cmmami1", "https://tec.openplanner.team/stops/Cmmtomb2"], ["https://tec.openplanner.team/stops/N501gpa", "https://tec.openplanner.team/stops/N501mtc"], ["https://tec.openplanner.team/stops/NL76ara", "https://tec.openplanner.team/stops/NL76asb"], ["https://tec.openplanner.team/stops/Bptrlux2", "https://tec.openplanner.team/stops/Bptrman1"], ["https://tec.openplanner.team/stops/N539aza", "https://tec.openplanner.team/stops/N539azb"], ["https://tec.openplanner.team/stops/LGogare1", "https://tec.openplanner.team/stops/LGogare2"], ["https://tec.openplanner.team/stops/H2ml110a", "https://tec.openplanner.team/stops/H2ml114b"], ["https://tec.openplanner.team/stops/Lhrpaix1", "https://tec.openplanner.team/stops/Lhrpost2"], ["https://tec.openplanner.team/stops/LMgkrui1", "https://tec.openplanner.team/stops/LMgkrui2"], ["https://tec.openplanner.team/stops/H2ll180a", "https://tec.openplanner.team/stops/H2ll258b"], ["https://tec.openplanner.team/stops/LmYeich2", "https://tec.openplanner.team/stops/LmYkreu2"], ["https://tec.openplanner.team/stops/N390aaa", "https://tec.openplanner.team/stops/N390aba"], ["https://tec.openplanner.team/stops/H4pi133a", "https://tec.openplanner.team/stops/H4pi133b"], ["https://tec.openplanner.team/stops/N506bfb", "https://tec.openplanner.team/stops/N512agc"], ["https://tec.openplanner.team/stops/H1mj122b", "https://tec.openplanner.team/stops/H1mj125b"], ["https://tec.openplanner.team/stops/Lstbold2", "https://tec.openplanner.team/stops/Lstchu-4"], ["https://tec.openplanner.team/stops/X626aea", "https://tec.openplanner.team/stops/X626afb"], ["https://tec.openplanner.team/stops/Brxmcha1", "https://tec.openplanner.team/stops/Brxmcna2"], ["https://tec.openplanner.team/stops/H4mo137a", "https://tec.openplanner.team/stops/H4mo170b"], ["https://tec.openplanner.team/stops/Lbocruc2", "https://tec.openplanner.team/stops/LPLcarr2"], ["https://tec.openplanner.team/stops/N553akb", "https://tec.openplanner.team/stops/N553alb"], ["https://tec.openplanner.team/stops/Blanath1", "https://tec.openplanner.team/stops/LORroma1"], ["https://tec.openplanner.team/stops/H4bd107a", "https://tec.openplanner.team/stops/H4te250b"], ["https://tec.openplanner.team/stops/Bbgeegl1", "https://tec.openplanner.team/stops/Bbgewal1"], ["https://tec.openplanner.team/stops/LHEches3", "https://tec.openplanner.team/stops/LHEecmo2"], ["https://tec.openplanner.team/stops/X982cba", "https://tec.openplanner.team/stops/X982cbb"], ["https://tec.openplanner.team/stops/LSzsurl2", "https://tec.openplanner.team/stops/NL57aia"], ["https://tec.openplanner.team/stops/X804aca", "https://tec.openplanner.team/stops/X882ajb"], ["https://tec.openplanner.team/stops/LBAcarr1", "https://tec.openplanner.team/stops/LBAcere2"], ["https://tec.openplanner.team/stops/X820agb", "https://tec.openplanner.team/stops/X820aha"], ["https://tec.openplanner.team/stops/Bsrgcur1", "https://tec.openplanner.team/stops/Bsrgcur2"], ["https://tec.openplanner.team/stops/X636bea", "https://tec.openplanner.team/stops/X636beb"], ["https://tec.openplanner.team/stops/X756agd", "https://tec.openplanner.team/stops/X756akb"], ["https://tec.openplanner.team/stops/X734aga", "https://tec.openplanner.team/stops/X734aha"], ["https://tec.openplanner.team/stops/LAmshel1", "https://tec.openplanner.team/stops/LAmshel2"], ["https://tec.openplanner.team/stops/LbRkirc2", "https://tec.openplanner.team/stops/LcRmuhl2"], ["https://tec.openplanner.team/stops/Cbwmato1", "https://tec.openplanner.team/stops/Cmqegl1"], ["https://tec.openplanner.team/stops/Llgcrah1", "https://tec.openplanner.team/stops/LlgPRVo1"], ["https://tec.openplanner.team/stops/X619afb", "https://tec.openplanner.team/stops/X619aga"], ["https://tec.openplanner.team/stops/X363aab", "https://tec.openplanner.team/stops/X363aba"], ["https://tec.openplanner.team/stops/N501fxa", "https://tec.openplanner.team/stops/N501gza"], ["https://tec.openplanner.team/stops/N203aab", "https://tec.openplanner.team/stops/N204agb"], ["https://tec.openplanner.team/stops/H5at109b", "https://tec.openplanner.team/stops/H5at128a"], ["https://tec.openplanner.team/stops/LBscasi2", "https://tec.openplanner.team/stops/LBseg--1"], ["https://tec.openplanner.team/stops/Cmasncb2", "https://tec.openplanner.team/stops/Cmastfi2"], ["https://tec.openplanner.team/stops/H4ea128b", "https://tec.openplanner.team/stops/H4ea130b"], ["https://tec.openplanner.team/stops/X923aia", "https://tec.openplanner.team/stops/X923ala"], ["https://tec.openplanner.team/stops/LWechea2", "https://tec.openplanner.team/stops/LWechpl1"], ["https://tec.openplanner.team/stops/LAmwaut1", "https://tec.openplanner.team/stops/LAmwaut2"], ["https://tec.openplanner.team/stops/X743aab", "https://tec.openplanner.team/stops/X756aaa"], ["https://tec.openplanner.team/stops/X901abb", "https://tec.openplanner.team/stops/X901bob"], ["https://tec.openplanner.team/stops/X750boa", "https://tec.openplanner.team/stops/X784aab"], ["https://tec.openplanner.team/stops/LVLcent1", "https://tec.openplanner.team/stops/LVNwanz1"], ["https://tec.openplanner.team/stops/N525aca", "https://tec.openplanner.team/stops/N525ana"], ["https://tec.openplanner.team/stops/LVEh16-1", "https://tec.openplanner.team/stops/LVEroum1"], ["https://tec.openplanner.team/stops/Ctachst1", "https://tec.openplanner.team/stops/N543cjb"], ["https://tec.openplanner.team/stops/LCsraws1", "https://tec.openplanner.team/stops/LFFchab2"], ["https://tec.openplanner.team/stops/Csebasc2", "https://tec.openplanner.team/stops/Cselait2"], ["https://tec.openplanner.team/stops/N337afa", "https://tec.openplanner.team/stops/N337afb"], ["https://tec.openplanner.team/stops/LVEeg--2", "https://tec.openplanner.team/stops/LVErtt-2"], ["https://tec.openplanner.team/stops/N137aca", "https://tec.openplanner.team/stops/N137ada"], ["https://tec.openplanner.team/stops/H4do100a", "https://tec.openplanner.team/stops/H4do105b"], ["https://tec.openplanner.team/stops/Bneeblo1", "https://tec.openplanner.team/stops/Bneepne2"], ["https://tec.openplanner.team/stops/N232bza", "https://tec.openplanner.team/stops/N232cab"], ["https://tec.openplanner.team/stops/Bbghepi1", "https://tec.openplanner.team/stops/Bquebth3"], ["https://tec.openplanner.team/stops/X982bmb", "https://tec.openplanner.team/stops/X982bnb"], ["https://tec.openplanner.team/stops/LRRecsc*", "https://tec.openplanner.team/stops/LRReg--2"], ["https://tec.openplanner.team/stops/N512aha", "https://tec.openplanner.team/stops/N512apb"], ["https://tec.openplanner.team/stops/N236aoa", "https://tec.openplanner.team/stops/N236aob"], ["https://tec.openplanner.team/stops/H2ll257a", "https://tec.openplanner.team/stops/H2ll257c"], ["https://tec.openplanner.team/stops/X991aka", "https://tec.openplanner.team/stops/X992aab"], ["https://tec.openplanner.team/stops/LkEgss-2", "https://tec.openplanner.team/stops/LMspont1"], ["https://tec.openplanner.team/stops/Lsmrwan1", "https://tec.openplanner.team/stops/Lsmsech3"], ["https://tec.openplanner.team/stops/Lgrfort1", "https://tec.openplanner.team/stops/Lgrlabo2"], ["https://tec.openplanner.team/stops/H1vb143a", "https://tec.openplanner.team/stops/H1wz171b"], ["https://tec.openplanner.team/stops/LhGbahn4", "https://tec.openplanner.team/stops/LhGlang1"], ["https://tec.openplanner.team/stops/H4ty292a", "https://tec.openplanner.team/stops/H4ty405a"], ["https://tec.openplanner.team/stops/LMYvill1", "https://tec.openplanner.team/stops/LXofont1"], ["https://tec.openplanner.team/stops/X802abb", "https://tec.openplanner.team/stops/X882alb"], ["https://tec.openplanner.team/stops/N211aha", "https://tec.openplanner.team/stops/N211ala"], ["https://tec.openplanner.team/stops/Bsampli1", "https://tec.openplanner.team/stops/Bsampli2"], ["https://tec.openplanner.team/stops/H1ba112b", "https://tec.openplanner.team/stops/H1si152c"], ["https://tec.openplanner.team/stops/N506aka", "https://tec.openplanner.team/stops/N506btb"], ["https://tec.openplanner.team/stops/LFFchab2", "https://tec.openplanner.team/stops/LFFmagr2"], ["https://tec.openplanner.team/stops/N576aha", "https://tec.openplanner.team/stops/N576aib"], ["https://tec.openplanner.team/stops/Csecout1", "https://tec.openplanner.team/stops/Csepost2"], ["https://tec.openplanner.team/stops/X713aia", "https://tec.openplanner.team/stops/X714aca"], ["https://tec.openplanner.team/stops/X801adb", "https://tec.openplanner.team/stops/X801bta"], ["https://tec.openplanner.team/stops/Bwatchb1", "https://tec.openplanner.team/stops/Bwatpai1"], ["https://tec.openplanner.team/stops/N127aia", "https://tec.openplanner.team/stops/N134alb"], ["https://tec.openplanner.team/stops/N520aea", "https://tec.openplanner.team/stops/N520aeb"], ["https://tec.openplanner.team/stops/H4fa124b", "https://tec.openplanner.team/stops/H4fa127a"], ["https://tec.openplanner.team/stops/X789aea", "https://tec.openplanner.team/stops/X789aja"], ["https://tec.openplanner.team/stops/H4og210b", "https://tec.openplanner.team/stops/H4og216b"], ["https://tec.openplanner.team/stops/Cchba11", "https://tec.openplanner.team/stops/Cchoues4"], ["https://tec.openplanner.team/stops/Cmlcent1", "https://tec.openplanner.team/stops/Cmlrang2"], ["https://tec.openplanner.team/stops/H4ru240b", "https://tec.openplanner.team/stops/H4ru244a"], ["https://tec.openplanner.team/stops/H2sb258b", "https://tec.openplanner.team/stops/H3lr108b"], ["https://tec.openplanner.team/stops/LLrmc--3", "https://tec.openplanner.team/stops/LLrmc--4"], ["https://tec.openplanner.team/stops/X764ada", "https://tec.openplanner.team/stops/X764adb"], ["https://tec.openplanner.team/stops/N232bub", "https://tec.openplanner.team/stops/N232bva"], ["https://tec.openplanner.team/stops/X601bub", "https://tec.openplanner.team/stops/X601cea"], ["https://tec.openplanner.team/stops/X354aib", "https://tec.openplanner.team/stops/X858ahb"], ["https://tec.openplanner.team/stops/H4ir163b", "https://tec.openplanner.team/stops/H4ir163d"], ["https://tec.openplanner.team/stops/LBkwind2", "https://tec.openplanner.team/stops/LHCpaci2"], ["https://tec.openplanner.team/stops/X640aha", "https://tec.openplanner.team/stops/X640aja"], ["https://tec.openplanner.team/stops/H2sv211b", "https://tec.openplanner.team/stops/H2sv218b"], ["https://tec.openplanner.team/stops/Cmtplac3", "https://tec.openplanner.team/stops/Cmtprey2"], ["https://tec.openplanner.team/stops/Becebju1", "https://tec.openplanner.team/stops/H2mi124b"], ["https://tec.openplanner.team/stops/X811aba", "https://tec.openplanner.team/stops/X811adb"], ["https://tec.openplanner.team/stops/NH01aib", "https://tec.openplanner.team/stops/NH01amb"], ["https://tec.openplanner.team/stops/X601cwa", "https://tec.openplanner.team/stops/X601dba"], ["https://tec.openplanner.team/stops/X652aga", "https://tec.openplanner.team/stops/X652agb"], ["https://tec.openplanner.team/stops/Cvsbois1", "https://tec.openplanner.team/stops/N530ahb"], ["https://tec.openplanner.team/stops/H1ch101b", "https://tec.openplanner.team/stops/H1ch104a"], ["https://tec.openplanner.team/stops/Ldipiss1", "https://tec.openplanner.team/stops/Ldipiss2"], ["https://tec.openplanner.team/stops/H1qu100a", "https://tec.openplanner.team/stops/H1qu120b"], ["https://tec.openplanner.team/stops/LSCc39-1", "https://tec.openplanner.team/stops/LSCchap2"], ["https://tec.openplanner.team/stops/X615afa", "https://tec.openplanner.team/stops/X681aia"], ["https://tec.openplanner.team/stops/X901anb", "https://tec.openplanner.team/stops/X901bqb"], ["https://tec.openplanner.team/stops/X604ala", "https://tec.openplanner.team/stops/X604ama"], ["https://tec.openplanner.team/stops/N217aba", "https://tec.openplanner.team/stops/N217acc"], ["https://tec.openplanner.team/stops/X733agb", "https://tec.openplanner.team/stops/X733aia"], ["https://tec.openplanner.team/stops/Bsambra1", "https://tec.openplanner.team/stops/Bsammon1"], ["https://tec.openplanner.team/stops/X796adb", "https://tec.openplanner.team/stops/X986aka"], ["https://tec.openplanner.team/stops/Bbcoubo2", "https://tec.openplanner.team/stops/H3br100a"], ["https://tec.openplanner.team/stops/Lprceri1", "https://tec.openplanner.team/stops/Lprspra1"], ["https://tec.openplanner.team/stops/X641azb", "https://tec.openplanner.team/stops/X823aab"], ["https://tec.openplanner.team/stops/LeMdorf2", "https://tec.openplanner.team/stops/LeMnr11"], ["https://tec.openplanner.team/stops/Bbgnvel2", "https://tec.openplanner.team/stops/Cwfghis2"], ["https://tec.openplanner.team/stops/X718aab", "https://tec.openplanner.team/stops/X718aba"], ["https://tec.openplanner.team/stops/LHHlomb1", "https://tec.openplanner.team/stops/LHHpt--2"], ["https://tec.openplanner.team/stops/X764aba", "https://tec.openplanner.team/stops/X764acb"], ["https://tec.openplanner.team/stops/Bfelcsa2", "https://tec.openplanner.team/stops/Bfelfde1"], ["https://tec.openplanner.team/stops/H2fa108a", "https://tec.openplanner.team/stops/H2fa108b"], ["https://tec.openplanner.team/stops/Lgrfrai1", "https://tec.openplanner.team/stops/Lgrspir2"], ["https://tec.openplanner.team/stops/Bcsempl2", "https://tec.openplanner.team/stops/Bcsepes1"], ["https://tec.openplanner.team/stops/Bnivfro1", "https://tec.openplanner.team/stops/Bnivsto2"], ["https://tec.openplanner.team/stops/H1je218a", "https://tec.openplanner.team/stops/H1ms932a"], ["https://tec.openplanner.team/stops/N507alc", "https://tec.openplanner.team/stops/N512asb"], ["https://tec.openplanner.team/stops/N557ada", "https://tec.openplanner.team/stops/N558aga"], ["https://tec.openplanner.team/stops/LRE154-2", "https://tec.openplanner.team/stops/LREchif2"], ["https://tec.openplanner.team/stops/Cgostro2", "https://tec.openplanner.team/stops/Ctmazeb1"], ["https://tec.openplanner.team/stops/LATfont2", "https://tec.openplanner.team/stops/LVNcoop1"], ["https://tec.openplanner.team/stops/H5bl124b", "https://tec.openplanner.team/stops/H5bl143a"], ["https://tec.openplanner.team/stops/X602adb", "https://tec.openplanner.team/stops/X602aea"], ["https://tec.openplanner.team/stops/LPRbrou1", "https://tec.openplanner.team/stops/LPRcha-*"], ["https://tec.openplanner.team/stops/LlEzoll2", "https://tec.openplanner.team/stops/LmLbeil2"], ["https://tec.openplanner.team/stops/Cthcrom1", "https://tec.openplanner.team/stops/Cthpibl1"], ["https://tec.openplanner.team/stops/H4mt214b", "https://tec.openplanner.team/stops/H4mt218a"], ["https://tec.openplanner.team/stops/LHMbelv2", "https://tec.openplanner.team/stops/LHMhind2"], ["https://tec.openplanner.team/stops/LAYlieg2", "https://tec.openplanner.team/stops/LAYthir1"], ["https://tec.openplanner.team/stops/Lhrspi-1", "https://tec.openplanner.team/stops/Lhrunir1"], ["https://tec.openplanner.team/stops/X602aga", "https://tec.openplanner.team/stops/X602aob"], ["https://tec.openplanner.team/stops/X940aab", "https://tec.openplanner.team/stops/X940aba"], ["https://tec.openplanner.team/stops/Cbfbies2", "https://tec.openplanner.team/stops/Cctsold1"], ["https://tec.openplanner.team/stops/Bhenpla1", "https://tec.openplanner.team/stops/Bhenpln1"], ["https://tec.openplanner.team/stops/LcRkirc1", "https://tec.openplanner.team/stops/LcRmich1"], ["https://tec.openplanner.team/stops/Lagkink1", "https://tec.openplanner.team/stops/Lagpera1"], ["https://tec.openplanner.team/stops/Bptrgri2", "https://tec.openplanner.team/stops/Bptrvil2"], ["https://tec.openplanner.team/stops/X948aaa", "https://tec.openplanner.team/stops/X948ara"], ["https://tec.openplanner.team/stops/LnDkreu2", "https://tec.openplanner.team/stops/LnDthel1"], ["https://tec.openplanner.team/stops/LFfeg--2", "https://tec.openplanner.team/stops/LPRpeti2"], ["https://tec.openplanner.team/stops/X542acb", "https://tec.openplanner.team/stops/X542aib"], ["https://tec.openplanner.team/stops/H4mx117a", "https://tec.openplanner.team/stops/H4mx120a"], ["https://tec.openplanner.team/stops/Cmoecol1", "https://tec.openplanner.team/stops/Cmohame1"], ["https://tec.openplanner.team/stops/H1le124b", "https://tec.openplanner.team/stops/H1le130b"], ["https://tec.openplanner.team/stops/X633aca", "https://tec.openplanner.team/stops/X633afa"], ["https://tec.openplanner.team/stops/Bgnpegl1", "https://tec.openplanner.team/stops/Bgnpegl4"], ["https://tec.openplanner.team/stops/Bgnvcom2", "https://tec.openplanner.team/stops/Bgnvval2"], ["https://tec.openplanner.team/stops/Bhalgja2", "https://tec.openplanner.team/stops/Blemwro1"], ["https://tec.openplanner.team/stops/LwYbruc3", "https://tec.openplanner.team/stops/LwYnr261"], ["https://tec.openplanner.team/stops/X359aib", "https://tec.openplanner.team/stops/X359aja"], ["https://tec.openplanner.team/stops/Cmastma1", "https://tec.openplanner.team/stops/Cmastma2"], ["https://tec.openplanner.team/stops/LHMbami1", "https://tec.openplanner.team/stops/LHMchbl2"], ["https://tec.openplanner.team/stops/N301aoa", "https://tec.openplanner.team/stops/X301ara"], ["https://tec.openplanner.team/stops/N538atc", "https://tec.openplanner.team/stops/N538aub"], ["https://tec.openplanner.team/stops/X662aba", "https://tec.openplanner.team/stops/X662abb"], ["https://tec.openplanner.team/stops/N260aeb", "https://tec.openplanner.team/stops/N270aga"], ["https://tec.openplanner.team/stops/NL76aia", "https://tec.openplanner.team/stops/NL76ama"], ["https://tec.openplanner.team/stops/H1wa135a", "https://tec.openplanner.team/stops/H1wa137a"], ["https://tec.openplanner.team/stops/Bpthcgo1", "https://tec.openplanner.team/stops/Bwanwar1"], ["https://tec.openplanner.team/stops/LBPmais1", "https://tec.openplanner.team/stops/LBPmais2"], ["https://tec.openplanner.team/stops/Cmqbasv2", "https://tec.openplanner.team/stops/H1ro131a"], ["https://tec.openplanner.team/stops/Bnivpba2", "https://tec.openplanner.team/stops/Bnivphs1"], ["https://tec.openplanner.team/stops/LFRhock4", "https://tec.openplanner.team/stops/LHcbaro1"], ["https://tec.openplanner.team/stops/Cmybefe1", "https://tec.openplanner.team/stops/Cmyvesa1"], ["https://tec.openplanner.team/stops/LLOcreu2", "https://tec.openplanner.team/stops/LLOnand2"], ["https://tec.openplanner.team/stops/H1fr117b", "https://tec.openplanner.team/stops/H1no140a"], ["https://tec.openplanner.team/stops/Cml3fon2", "https://tec.openplanner.team/stops/Cmlcons1"], ["https://tec.openplanner.team/stops/X761abb", "https://tec.openplanner.team/stops/X790amb"], ["https://tec.openplanner.team/stops/H4lg103a", "https://tec.openplanner.team/stops/H4lg103b"], ["https://tec.openplanner.team/stops/LmHflor2", "https://tec.openplanner.team/stops/LrTpost1"], ["https://tec.openplanner.team/stops/Bllnhoc1", "https://tec.openplanner.team/stops/Bllnhoc2"], ["https://tec.openplanner.team/stops/LEScham1", "https://tec.openplanner.team/stops/LEScham2"], ["https://tec.openplanner.team/stops/Cctmine2", "https://tec.openplanner.team/stops/Ccurtra1"], ["https://tec.openplanner.team/stops/N244aeb", "https://tec.openplanner.team/stops/N248aaa"], ["https://tec.openplanner.team/stops/LGObeth1", "https://tec.openplanner.team/stops/LGOmous1"], ["https://tec.openplanner.team/stops/N163aab", "https://tec.openplanner.team/stops/N165aca"], ["https://tec.openplanner.team/stops/Lsteg--2", "https://tec.openplanner.team/stops/Lstetud2"], ["https://tec.openplanner.team/stops/X896aaa", "https://tec.openplanner.team/stops/X896abb"], ["https://tec.openplanner.team/stops/X661amb", "https://tec.openplanner.team/stops/X661bca"], ["https://tec.openplanner.team/stops/LPbeg--1", "https://tec.openplanner.team/stops/LSIcour1"], ["https://tec.openplanner.team/stops/N557acb", "https://tec.openplanner.team/stops/N557aeb"], ["https://tec.openplanner.team/stops/Lghleon2", "https://tec.openplanner.team/stops/Lghprea4"], ["https://tec.openplanner.team/stops/N513ava", "https://tec.openplanner.team/stops/N513avb"], ["https://tec.openplanner.team/stops/Cmacart1", "https://tec.openplanner.team/stops/Cmamons1"], ["https://tec.openplanner.team/stops/H2tr248b", "https://tec.openplanner.team/stops/H2tr253a"], ["https://tec.openplanner.team/stops/H4bn173a", "https://tec.openplanner.team/stops/H4pi136a"], ["https://tec.openplanner.team/stops/N211avb", "https://tec.openplanner.team/stops/N211awa"], ["https://tec.openplanner.team/stops/X542aha", "https://tec.openplanner.team/stops/X542aia"], ["https://tec.openplanner.team/stops/X738aaa", "https://tec.openplanner.team/stops/X739aba"], ["https://tec.openplanner.team/stops/LBrbern1", "https://tec.openplanner.team/stops/LBrec--2"], ["https://tec.openplanner.team/stops/LHCandr1", "https://tec.openplanner.team/stops/LHCcroy1"], ["https://tec.openplanner.team/stops/LHZbren1", "https://tec.openplanner.team/stops/LVefont2"], ["https://tec.openplanner.team/stops/X717agf", "https://tec.openplanner.team/stops/X718aha"], ["https://tec.openplanner.team/stops/X773aia", "https://tec.openplanner.team/stops/X773aib"], ["https://tec.openplanner.team/stops/Cmitrie1", "https://tec.openplanner.team/stops/Csequew2"], ["https://tec.openplanner.team/stops/LNEmoul1", "https://tec.openplanner.team/stops/LOLfoss2"], ["https://tec.openplanner.team/stops/Bdoncen2", "https://tec.openplanner.team/stops/Bdonlat2"], ["https://tec.openplanner.team/stops/Lrc594-2", "https://tec.openplanner.team/stops/Lvopaqu1"], ["https://tec.openplanner.team/stops/N351afa", "https://tec.openplanner.team/stops/N351ata"], ["https://tec.openplanner.team/stops/LBNover2", "https://tec.openplanner.team/stops/LhEauto2"], ["https://tec.openplanner.team/stops/Bpthfus1", "https://tec.openplanner.team/stops/Bpthrsp1"], ["https://tec.openplanner.team/stops/LFIcabi1", "https://tec.openplanner.team/stops/LFIcabi2"], ["https://tec.openplanner.team/stops/Cctathe2", "https://tec.openplanner.team/stops/Cctjoue4"], ["https://tec.openplanner.team/stops/N514ajb", "https://tec.openplanner.team/stops/N514aka"], ["https://tec.openplanner.team/stops/N244alb", "https://tec.openplanner.team/stops/N244ara"], ["https://tec.openplanner.team/stops/X615bea", "https://tec.openplanner.team/stops/X695aaa"], ["https://tec.openplanner.team/stops/H1ms292a", "https://tec.openplanner.team/stops/H1ms911a"], ["https://tec.openplanner.team/stops/Btanbth2", "https://tec.openplanner.team/stops/Btanpla4"], ["https://tec.openplanner.team/stops/Bbgnvel1", "https://tec.openplanner.team/stops/Blig4br2"], ["https://tec.openplanner.team/stops/N113adb", "https://tec.openplanner.team/stops/N113aea"], ["https://tec.openplanner.team/stops/NC24aea", "https://tec.openplanner.team/stops/NC24aeb"], ["https://tec.openplanner.team/stops/Bhenron1", "https://tec.openplanner.team/stops/Bhenron2"], ["https://tec.openplanner.team/stops/LOL6che2", "https://tec.openplanner.team/stops/LSHfief2"], ["https://tec.openplanner.team/stops/N501ita", "https://tec.openplanner.team/stops/N501itb"], ["https://tec.openplanner.team/stops/Ltichif3", "https://tec.openplanner.team/stops/Ltihorl2"], ["https://tec.openplanner.team/stops/N525anb", "https://tec.openplanner.team/stops/N525aob"], ["https://tec.openplanner.team/stops/LHVgoro2", "https://tec.openplanner.team/stops/Lsmh3022"], ["https://tec.openplanner.team/stops/N113aea", "https://tec.openplanner.team/stops/N113aeb"], ["https://tec.openplanner.team/stops/N233aaa", "https://tec.openplanner.team/stops/N242agb"], ["https://tec.openplanner.team/stops/LHTbonn1", "https://tec.openplanner.team/stops/LHTmc--2"], ["https://tec.openplanner.team/stops/Bmrl4ch1", "https://tec.openplanner.team/stops/Bolphgr2"], ["https://tec.openplanner.team/stops/X989aba", "https://tec.openplanner.team/stops/X995aga"], ["https://tec.openplanner.team/stops/LoUzent1", "https://tec.openplanner.team/stops/X685apb"], ["https://tec.openplanner.team/stops/NL80ava", "https://tec.openplanner.team/stops/NL80avb"], ["https://tec.openplanner.team/stops/N501cza", "https://tec.openplanner.team/stops/N501czb"], ["https://tec.openplanner.team/stops/Bwatali1", "https://tec.openplanner.team/stops/Bwatcpl1"], ["https://tec.openplanner.team/stops/Cjuecho1", "https://tec.openplanner.team/stops/Cjuplho1"], ["https://tec.openplanner.team/stops/N223abb", "https://tec.openplanner.team/stops/X919ajb"], ["https://tec.openplanner.team/stops/H1fr112a", "https://tec.openplanner.team/stops/H1fr112b"], ["https://tec.openplanner.team/stops/H2fa106a", "https://tec.openplanner.team/stops/H2me113a"], ["https://tec.openplanner.team/stops/Bnivlai1", "https://tec.openplanner.team/stops/Bnivlai2"], ["https://tec.openplanner.team/stops/LBHgile1", "https://tec.openplanner.team/stops/LHbcent2"], ["https://tec.openplanner.team/stops/LMAcite1", "https://tec.openplanner.team/stops/LMAcomm2"], ["https://tec.openplanner.team/stops/LBWviad2", "https://tec.openplanner.team/stops/LMgbern1"], ["https://tec.openplanner.team/stops/LHcgare2", "https://tec.openplanner.team/stops/LSZcock2"], ["https://tec.openplanner.team/stops/Cjualed1", "https://tec.openplanner.team/stops/Cjucomb2"], ["https://tec.openplanner.team/stops/Cmlours1", "https://tec.openplanner.team/stops/Cmlours2"], ["https://tec.openplanner.team/stops/LVNroua2", "https://tec.openplanner.team/stops/LWzeg--*"], ["https://tec.openplanner.team/stops/LaMschw2", "https://tec.openplanner.team/stops/LvAschw1"], ["https://tec.openplanner.team/stops/Cbwdoua1", "https://tec.openplanner.team/stops/Cbwdoua2"], ["https://tec.openplanner.team/stops/X696aia", "https://tec.openplanner.team/stops/X696aja"], ["https://tec.openplanner.team/stops/N150acb", "https://tec.openplanner.team/stops/N150ada"], ["https://tec.openplanner.team/stops/N221ada", "https://tec.openplanner.team/stops/N222aba"], ["https://tec.openplanner.team/stops/Cchfaub2", "https://tec.openplanner.team/stops/Cchvil22"], ["https://tec.openplanner.team/stops/N351akd", "https://tec.openplanner.team/stops/N351asb"], ["https://tec.openplanner.team/stops/LTiec--2", "https://tec.openplanner.team/stops/LTieg--2"], ["https://tec.openplanner.team/stops/Lbocruc3", "https://tec.openplanner.team/stops/Lbopote1"], ["https://tec.openplanner.team/stops/X982bma", "https://tec.openplanner.team/stops/X986aha"], ["https://tec.openplanner.team/stops/X548abb", "https://tec.openplanner.team/stops/X548acb"], ["https://tec.openplanner.team/stops/Ladstat1", "https://tec.openplanner.team/stops/Ladstat2"], ["https://tec.openplanner.team/stops/Bettgar1", "https://tec.openplanner.team/stops/Bixlaca1"], ["https://tec.openplanner.team/stops/X662aca", "https://tec.openplanner.team/stops/X662aea"], ["https://tec.openplanner.team/stops/Bwavgar2", "https://tec.openplanner.team/stops/Bwavgar4"], ["https://tec.openplanner.team/stops/Llgcrev2", "https://tec.openplanner.team/stops/Llghong2"], ["https://tec.openplanner.team/stops/LEN183-1", "https://tec.openplanner.team/stops/LSkoran1"], ["https://tec.openplanner.team/stops/N104aea", "https://tec.openplanner.team/stops/N104afb"], ["https://tec.openplanner.team/stops/X898aeb", "https://tec.openplanner.team/stops/X898afb"], ["https://tec.openplanner.team/stops/LQacabi2", "https://tec.openplanner.team/stops/LQafond2"], ["https://tec.openplanner.team/stops/H1al106a", "https://tec.openplanner.team/stops/H1al108b"], ["https://tec.openplanner.team/stops/Crccamp2", "https://tec.openplanner.team/stops/Crcrgar2"], ["https://tec.openplanner.team/stops/X948bba", "https://tec.openplanner.team/stops/X948bbb"], ["https://tec.openplanner.team/stops/Cjuhden1", "https://tec.openplanner.team/stops/Clomart1"], ["https://tec.openplanner.team/stops/H3bi100a", "https://tec.openplanner.team/stops/H3bi106a"], ["https://tec.openplanner.team/stops/Bpiepla1", "https://tec.openplanner.team/stops/Bpiepla2"], ["https://tec.openplanner.team/stops/H5el100a", "https://tec.openplanner.team/stops/H5fl103a"], ["https://tec.openplanner.team/stops/LWZbeem1", "https://tec.openplanner.team/stops/X261aaa"], ["https://tec.openplanner.team/stops/Lrclant2", "https://tec.openplanner.team/stops/Lrclant3"], ["https://tec.openplanner.team/stops/X941acc", "https://tec.openplanner.team/stops/X941acd"], ["https://tec.openplanner.team/stops/LAUbour1", "https://tec.openplanner.team/stops/LAUbour3"], ["https://tec.openplanner.team/stops/Btubga03", "https://tec.openplanner.team/stops/Btubga05"], ["https://tec.openplanner.team/stops/Cml5ave2", "https://tec.openplanner.team/stops/Cnachcu2"], ["https://tec.openplanner.team/stops/N506bta", "https://tec.openplanner.team/stops/N506bxb"], ["https://tec.openplanner.team/stops/N501lja", "https://tec.openplanner.team/stops/N501ljb"], ["https://tec.openplanner.team/stops/Bgliron1", "https://tec.openplanner.team/stops/Bjcljau2"], ["https://tec.openplanner.team/stops/N155aab", "https://tec.openplanner.team/stops/N155agb"], ["https://tec.openplanner.team/stops/X824aea", "https://tec.openplanner.team/stops/X824afb"], ["https://tec.openplanner.team/stops/LkEkric2", "https://tec.openplanner.team/stops/LkEneus1"], ["https://tec.openplanner.team/stops/LHrchat1", "https://tec.openplanner.team/stops/LHrrard1"], ["https://tec.openplanner.team/stops/X601cia", "https://tec.openplanner.team/stops/X662aia"], ["https://tec.openplanner.team/stops/Bhalark2", "https://tec.openplanner.team/stops/Bhalpar3"], ["https://tec.openplanner.team/stops/Buccham2", "https://tec.openplanner.team/stops/Buccrac2"], ["https://tec.openplanner.team/stops/H2bh114b", "https://tec.openplanner.team/stops/H2bh117a"], ["https://tec.openplanner.team/stops/Lfhsoux2", "https://tec.openplanner.team/stops/Lfhvoye2"], ["https://tec.openplanner.team/stops/LGrfont2", "https://tec.openplanner.team/stops/LLGramk3"], ["https://tec.openplanner.team/stops/LAUbirv2", "https://tec.openplanner.team/stops/LHMaube1"], ["https://tec.openplanner.team/stops/LHTmoul2", "https://tec.openplanner.team/stops/LOUbleu1"], ["https://tec.openplanner.team/stops/H1fl134b", "https://tec.openplanner.team/stops/H1fl142a"], ["https://tec.openplanner.team/stops/H2ch104a", "https://tec.openplanner.team/stops/H2ch104b"], ["https://tec.openplanner.team/stops/LbUkrin2", "https://tec.openplanner.team/stops/LlSzoll1"], ["https://tec.openplanner.team/stops/LTheg--1", "https://tec.openplanner.team/stops/LThelse1"], ["https://tec.openplanner.team/stops/LOehart2", "https://tec.openplanner.team/stops/LOesour2"], ["https://tec.openplanner.team/stops/N132aba", "https://tec.openplanner.team/stops/N132aca"], ["https://tec.openplanner.team/stops/LSpogne1", "https://tec.openplanner.team/stops/LSpvanr2"], ["https://tec.openplanner.team/stops/H3lr120b", "https://tec.openplanner.team/stops/H3lr132a"], ["https://tec.openplanner.team/stops/Lhracec1", "https://tec.openplanner.team/stops/Lhrespe1"], ["https://tec.openplanner.team/stops/N170afa", "https://tec.openplanner.team/stops/N170afb"], ["https://tec.openplanner.team/stops/Bmaregl1", "https://tec.openplanner.team/stops/Bmaregl2"], ["https://tec.openplanner.team/stops/X359aac", "https://tec.openplanner.team/stops/X359aad"], ["https://tec.openplanner.team/stops/H4mo159b", "https://tec.openplanner.team/stops/H4mo192a"], ["https://tec.openplanner.team/stops/Lpegiet2", "https://tec.openplanner.team/stops/Lpevove2"], ["https://tec.openplanner.team/stops/N135bdb", "https://tec.openplanner.team/stops/N135beb"], ["https://tec.openplanner.team/stops/LLrquar1", "https://tec.openplanner.team/stops/LTHbelv1"], ["https://tec.openplanner.team/stops/Lstamph1", "https://tec.openplanner.team/stops/Lstauna2"], ["https://tec.openplanner.team/stops/N117arb", "https://tec.openplanner.team/stops/N117aya"], ["https://tec.openplanner.team/stops/LSdbvue1", "https://tec.openplanner.team/stops/LSdbvue2"], ["https://tec.openplanner.team/stops/N501ebb", "https://tec.openplanner.team/stops/N501ebz"], ["https://tec.openplanner.team/stops/X982azb", "https://tec.openplanner.team/stops/X982bba"], ["https://tec.openplanner.team/stops/LSpfond2", "https://tec.openplanner.team/stops/LSpunio2"], ["https://tec.openplanner.team/stops/Lvelobe1", "https://tec.openplanner.team/stops/Lvepire1"], ["https://tec.openplanner.team/stops/LSemc--1", "https://tec.openplanner.team/stops/LSemc--2"], ["https://tec.openplanner.team/stops/Chhlori2", "https://tec.openplanner.team/stops/Cjxvalh2"], ["https://tec.openplanner.team/stops/X640aia", "https://tec.openplanner.team/stops/X640aib"], ["https://tec.openplanner.team/stops/X747ala", "https://tec.openplanner.team/stops/X747alb"], ["https://tec.openplanner.team/stops/Cmmphai1", "https://tec.openplanner.team/stops/Cmmphai2"], ["https://tec.openplanner.team/stops/N538aab", "https://tec.openplanner.team/stops/N538ada"], ["https://tec.openplanner.team/stops/Lhragri1", "https://tec.openplanner.team/stops/Lvtpata1"], ["https://tec.openplanner.team/stops/LTicime1", "https://tec.openplanner.team/stops/LTigera2"], ["https://tec.openplanner.team/stops/Bniv4co2", "https://tec.openplanner.team/stops/Bnivcma2"], ["https://tec.openplanner.team/stops/N352aeb", "https://tec.openplanner.team/stops/N352afa"], ["https://tec.openplanner.team/stops/H4do103a", "https://tec.openplanner.team/stops/H4mo195b"], ["https://tec.openplanner.team/stops/Lghalli2", "https://tec.openplanner.team/stops/Lghremy2"], ["https://tec.openplanner.team/stops/Llgnico1", "https://tec.openplanner.team/stops/Llgnico2"], ["https://tec.openplanner.team/stops/LDOordi2", "https://tec.openplanner.team/stops/LGOcana1"], ["https://tec.openplanner.team/stops/Bwatpas2", "https://tec.openplanner.team/stops/Bwatrsg1"], ["https://tec.openplanner.team/stops/N501msa", "https://tec.openplanner.team/stops/N501mtc"], ["https://tec.openplanner.team/stops/LsVrodt1", "https://tec.openplanner.team/stops/LsVrodt2"], ["https://tec.openplanner.team/stops/X601bda", "https://tec.openplanner.team/stops/X601bia"], ["https://tec.openplanner.team/stops/H5at109b", "https://tec.openplanner.team/stops/H5at132b"], ["https://tec.openplanner.team/stops/N513ada", "https://tec.openplanner.team/stops/N513bbd"], ["https://tec.openplanner.team/stops/X721aaa", "https://tec.openplanner.team/stops/X721abb"], ["https://tec.openplanner.team/stops/N507aob", "https://tec.openplanner.team/stops/N507aqa"], ["https://tec.openplanner.team/stops/H1ms921a", "https://tec.openplanner.team/stops/H1ms923a"], ["https://tec.openplanner.team/stops/N308bcb", "https://tec.openplanner.team/stops/N308bib"], ["https://tec.openplanner.team/stops/X342ahb", "https://tec.openplanner.team/stops/X346abb"], ["https://tec.openplanner.team/stops/H4ty313b", "https://tec.openplanner.team/stops/H4ty320b"], ["https://tec.openplanner.team/stops/H1gr119a", "https://tec.openplanner.team/stops/H1gr122a"], ["https://tec.openplanner.team/stops/H1bg110a", "https://tec.openplanner.team/stops/H1hy125a"], ["https://tec.openplanner.team/stops/LCUmars2", "https://tec.openplanner.team/stops/LCUthie1"], ["https://tec.openplanner.team/stops/X744aea", "https://tec.openplanner.team/stops/X746ahb"], ["https://tec.openplanner.team/stops/LHUvege1", "https://tec.openplanner.team/stops/NL76alb"], ["https://tec.openplanner.team/stops/X982aac", "https://tec.openplanner.team/stops/X982bya"], ["https://tec.openplanner.team/stops/LBlplac2", "https://tec.openplanner.team/stops/LSEec--2"], ["https://tec.openplanner.team/stops/Bgzddub1", "https://tec.openplanner.team/stops/Bgzdpco2"], ["https://tec.openplanner.team/stops/LSZarze3", "https://tec.openplanner.team/stops/LSZptwa2"], ["https://tec.openplanner.team/stops/LFOcomb4", "https://tec.openplanner.team/stops/LKmmelo2"], ["https://tec.openplanner.team/stops/X602aha", "https://tec.openplanner.team/stops/X602ahb"], ["https://tec.openplanner.team/stops/Bbchndb1", "https://tec.openplanner.team/stops/Bbchpil1"], ["https://tec.openplanner.team/stops/LOltill1", "https://tec.openplanner.team/stops/LOmecol2"], ["https://tec.openplanner.team/stops/LRmsmvo3", "https://tec.openplanner.team/stops/LRmsmvo4"], ["https://tec.openplanner.team/stops/H1wa157a", "https://tec.openplanner.team/stops/H1wa162b"], ["https://tec.openplanner.team/stops/H5rx120b", "https://tec.openplanner.team/stops/H5rx137b"], ["https://tec.openplanner.team/stops/Clvlove1", "https://tec.openplanner.team/stops/Clvndam1"], ["https://tec.openplanner.team/stops/H2ll177b", "https://tec.openplanner.team/stops/H2ll188b"], ["https://tec.openplanner.team/stops/Llgbuis1", "https://tec.openplanner.team/stops/Lsccime2"], ["https://tec.openplanner.team/stops/Llgcham7", "https://tec.openplanner.team/stops/Llgcham8"], ["https://tec.openplanner.team/stops/Lanfont1", "https://tec.openplanner.team/stops/Lanlona1"], ["https://tec.openplanner.team/stops/N223aab", "https://tec.openplanner.team/stops/NL35aga"], ["https://tec.openplanner.team/stops/Cwfdupo1", "https://tec.openplanner.team/stops/Cwfplac1"], ["https://tec.openplanner.team/stops/LrAdrie3", "https://tec.openplanner.team/stops/LrAtitf2"], ["https://tec.openplanner.team/stops/Bquecar2", "https://tec.openplanner.team/stops/Bquereb2"], ["https://tec.openplanner.team/stops/H1ho123a", "https://tec.openplanner.team/stops/H1ho140b"], ["https://tec.openplanner.team/stops/LHmferm1", "https://tec.openplanner.team/stops/LLbrecu1"], ["https://tec.openplanner.team/stops/LLxcana1", "https://tec.openplanner.team/stops/LLxcana2"], ["https://tec.openplanner.team/stops/LSoboul1", "https://tec.openplanner.team/stops/LSomonu1"], ["https://tec.openplanner.team/stops/Cwgtill1", "https://tec.openplanner.team/stops/Cwgtill2"], ["https://tec.openplanner.team/stops/Cbfpoti1", "https://tec.openplanner.team/stops/NC11aib"], ["https://tec.openplanner.team/stops/H4mb203a", "https://tec.openplanner.team/stops/H4mb203b"], ["https://tec.openplanner.team/stops/X616aaa", "https://tec.openplanner.team/stops/X617aea"], ["https://tec.openplanner.team/stops/N103adb", "https://tec.openplanner.team/stops/N103aha"], ["https://tec.openplanner.team/stops/H4to131b", "https://tec.openplanner.team/stops/H4to139a"], ["https://tec.openplanner.team/stops/N244ana", "https://tec.openplanner.team/stops/N244aob"], ["https://tec.openplanner.team/stops/Cnaha561", "https://tec.openplanner.team/stops/Cnalava2"], ["https://tec.openplanner.team/stops/Lhrlico3", "https://tec.openplanner.team/stops/Lsweg--2"], ["https://tec.openplanner.team/stops/H1bx105a", "https://tec.openplanner.team/stops/H1qv113a"], ["https://tec.openplanner.team/stops/Clbhvil1", "https://tec.openplanner.team/stops/Clbptno3"], ["https://tec.openplanner.team/stops/H2re163b", "https://tec.openplanner.team/stops/H2re174b"], ["https://tec.openplanner.team/stops/LFochap1", "https://tec.openplanner.team/stops/LJAdeho2"], ["https://tec.openplanner.team/stops/LSIcour2", "https://tec.openplanner.team/stops/LSIters2"], ["https://tec.openplanner.team/stops/H4mv187b", "https://tec.openplanner.team/stops/H4mv189c"], ["https://tec.openplanner.team/stops/H2pe158b", "https://tec.openplanner.team/stops/H2re165a"], ["https://tec.openplanner.team/stops/Ctrleju1", "https://tec.openplanner.team/stops/Ctrleju2"], ["https://tec.openplanner.team/stops/H4bu109a", "https://tec.openplanner.team/stops/H4ms144b"], ["https://tec.openplanner.team/stops/LHEchar2", "https://tec.openplanner.team/stops/LHEcoll1"], ["https://tec.openplanner.team/stops/LESchac1", "https://tec.openplanner.team/stops/LPOeg--1"], ["https://tec.openplanner.team/stops/LaNdorf2", "https://tec.openplanner.team/stops/LaNmuhl2"], ["https://tec.openplanner.team/stops/N543aab", "https://tec.openplanner.team/stops/N543bxb"], ["https://tec.openplanner.team/stops/H4ka182b", "https://tec.openplanner.team/stops/H4ka190b"], ["https://tec.openplanner.team/stops/N520acb", "https://tec.openplanner.team/stops/N520ajb"], ["https://tec.openplanner.team/stops/H4by115d", "https://tec.openplanner.team/stops/H4tu171a"], ["https://tec.openplanner.team/stops/LhSfrep1", "https://tec.openplanner.team/stops/LhSfrep2"], ["https://tec.openplanner.team/stops/LFRfagn2", "https://tec.openplanner.team/stops/LSxeg--1"], ["https://tec.openplanner.team/stops/Bobacou1", "https://tec.openplanner.team/stops/Cobhaut2"], ["https://tec.openplanner.team/stops/H4co108a", "https://tec.openplanner.team/stops/H4co133a"], ["https://tec.openplanner.team/stops/LCRvert1", "https://tec.openplanner.team/stops/LCRvert2"], ["https://tec.openplanner.team/stops/LFAec--2", "https://tec.openplanner.team/stops/LFAtomb1"], ["https://tec.openplanner.team/stops/NC11aib", "https://tec.openplanner.team/stops/NC11ajb"], ["https://tec.openplanner.team/stops/LLocruc1", "https://tec.openplanner.team/stops/LLocruc2"], ["https://tec.openplanner.team/stops/H1je213b", "https://tec.openplanner.team/stops/H1je216b"], ["https://tec.openplanner.team/stops/Lhuderu2", "https://tec.openplanner.team/stops/Lhuleke2"], ["https://tec.openplanner.team/stops/Cgxalli1", "https://tec.openplanner.team/stops/Cgxprad1"], ["https://tec.openplanner.team/stops/Blascim2", "https://tec.openplanner.team/stops/Bohnr732"], ["https://tec.openplanner.team/stops/Bbeubos1", "https://tec.openplanner.team/stops/Bbeubos2"], ["https://tec.openplanner.team/stops/N228aaa", "https://tec.openplanner.team/stops/N228abb"], ["https://tec.openplanner.team/stops/N166acb", "https://tec.openplanner.team/stops/N166aeb"], ["https://tec.openplanner.team/stops/X907aeb", "https://tec.openplanner.team/stops/X908ara"], ["https://tec.openplanner.team/stops/H1ro136b", "https://tec.openplanner.team/stops/H1ro140b"], ["https://tec.openplanner.team/stops/Bstecou2", "https://tec.openplanner.team/stops/Bstetre2"], ["https://tec.openplanner.team/stops/X601bjb", "https://tec.openplanner.team/stops/X601cta"], ["https://tec.openplanner.team/stops/H1bu141a", "https://tec.openplanner.team/stops/H1bu141b"], ["https://tec.openplanner.team/stops/LGLc12-3", "https://tec.openplanner.team/stops/LGLlaur1"], ["https://tec.openplanner.team/stops/LVIpneu1", "https://tec.openplanner.team/stops/LVIsouv1"], ["https://tec.openplanner.team/stops/X629aba", "https://tec.openplanner.team/stops/X636ana"], ["https://tec.openplanner.team/stops/LPcforg2", "https://tec.openplanner.team/stops/LPclaro2"], ["https://tec.openplanner.team/stops/Lrcvill1", "https://tec.openplanner.team/stops/Lrcvill2"], ["https://tec.openplanner.team/stops/H4bo120a", "https://tec.openplanner.team/stops/H4bo120b"], ["https://tec.openplanner.team/stops/N383ada", "https://tec.openplanner.team/stops/N383afa"], ["https://tec.openplanner.team/stops/Cfaecwa1", "https://tec.openplanner.team/stops/Cflsabl2"], ["https://tec.openplanner.team/stops/Bbonegl2", "https://tec.openplanner.team/stops/Bchgvil1"], ["https://tec.openplanner.team/stops/H4ty281a", "https://tec.openplanner.team/stops/H4ty339a"], ["https://tec.openplanner.team/stops/Bnivite2", "https://tec.openplanner.team/stops/Bnivspi2"], ["https://tec.openplanner.team/stops/X728aaa", "https://tec.openplanner.team/stops/X728adb"], ["https://tec.openplanner.team/stops/H3bi102b", "https://tec.openplanner.team/stops/H3bi113b"], ["https://tec.openplanner.team/stops/Lligara1", "https://tec.openplanner.team/stops/Llithon1"], ["https://tec.openplanner.team/stops/Bwancal2", "https://tec.openplanner.team/stops/NL37aja"], ["https://tec.openplanner.team/stops/N501chc", "https://tec.openplanner.team/stops/N501cja"], ["https://tec.openplanner.team/stops/LPLarbo2", "https://tec.openplanner.team/stops/LPLaube2"], ["https://tec.openplanner.team/stops/Cflathe2", "https://tec.openplanner.team/stops/NC12adb"], ["https://tec.openplanner.team/stops/X548abb", "https://tec.openplanner.team/stops/X784aea"], ["https://tec.openplanner.team/stops/X721afa", "https://tec.openplanner.team/stops/X721aka"], ["https://tec.openplanner.team/stops/Bsgibla2", "https://tec.openplanner.team/stops/Bsgipha1"], ["https://tec.openplanner.team/stops/LFLgara1", "https://tec.openplanner.team/stops/LFLgara2"], ["https://tec.openplanner.team/stops/H4ty300a", "https://tec.openplanner.team/stops/H4ty300b"], ["https://tec.openplanner.team/stops/X908ala", "https://tec.openplanner.team/stops/X908ama"], ["https://tec.openplanner.team/stops/Cbuplac3", "https://tec.openplanner.team/stops/Cfnegli2"], ["https://tec.openplanner.team/stops/Bjauvch1", "https://tec.openplanner.team/stops/Bjauvch2"], ["https://tec.openplanner.team/stops/LHNhv--1", "https://tec.openplanner.team/stops/LHNhv--2"], ["https://tec.openplanner.team/stops/Cradado2", "https://tec.openplanner.team/stops/Craferr2"], ["https://tec.openplanner.team/stops/N542aba", "https://tec.openplanner.team/stops/N542abb"], ["https://tec.openplanner.team/stops/Bwspcar1", "https://tec.openplanner.team/stops/Bwspjon1"], ["https://tec.openplanner.team/stops/LAYharz2", "https://tec.openplanner.team/stops/LHrfang1"], ["https://tec.openplanner.team/stops/X361afa", "https://tec.openplanner.team/stops/X364ada"], ["https://tec.openplanner.team/stops/Ljubois1", "https://tec.openplanner.team/stops/Ljujaur2"], ["https://tec.openplanner.team/stops/LFTcroi2", "https://tec.openplanner.team/stops/LFTcroi3"], ["https://tec.openplanner.team/stops/Bmanfbg1", "https://tec.openplanner.team/stops/H2mg144b"], ["https://tec.openplanner.team/stops/LeUnisp1", "https://tec.openplanner.team/stops/LkTsch%C3%B62"], ["https://tec.openplanner.team/stops/N138aha", "https://tec.openplanner.team/stops/N426afa"], ["https://tec.openplanner.team/stops/X775akb", "https://tec.openplanner.team/stops/X775ama"], ["https://tec.openplanner.team/stops/X723aib", "https://tec.openplanner.team/stops/X723ajb"], ["https://tec.openplanner.team/stops/X346aba", "https://tec.openplanner.team/stops/X346alb"], ["https://tec.openplanner.team/stops/Berneco2", "https://tec.openplanner.team/stops/Bgemgjo2"], ["https://tec.openplanner.team/stops/LeUhaag2", "https://tec.openplanner.team/stops/LeUkehr4"], ["https://tec.openplanner.team/stops/H4bf107a", "https://tec.openplanner.team/stops/H4bf107b"], ["https://tec.openplanner.team/stops/X614adb", "https://tec.openplanner.team/stops/X614aga"], ["https://tec.openplanner.team/stops/N118aea", "https://tec.openplanner.team/stops/N155aka"], ["https://tec.openplanner.team/stops/N501bjy", "https://tec.openplanner.team/stops/N501bsa"], ["https://tec.openplanner.team/stops/LCUmars2", "https://tec.openplanner.team/stops/NL57ala"], ["https://tec.openplanner.team/stops/Bove4ko2", "https://tec.openplanner.team/stops/Bovetwe2"], ["https://tec.openplanner.team/stops/LSceg--3", "https://tec.openplanner.team/stops/LTNeau-2"], ["https://tec.openplanner.team/stops/Cjugohi4", "https://tec.openplanner.team/stops/Cjumarc1"], ["https://tec.openplanner.team/stops/Bwatfva2", "https://tec.openplanner.team/stops/Bwatjbo1"], ["https://tec.openplanner.team/stops/N526adb", "https://tec.openplanner.team/stops/N527aba"], ["https://tec.openplanner.team/stops/H1hn208a", "https://tec.openplanner.team/stops/H1ms287a"], ["https://tec.openplanner.team/stops/Canecbr2", "https://tec.openplanner.team/stops/Canlemo2"], ["https://tec.openplanner.team/stops/LNHbarr2", "https://tec.openplanner.team/stops/LSecomm1"], ["https://tec.openplanner.team/stops/N343aka", "https://tec.openplanner.team/stops/X345aaa"], ["https://tec.openplanner.team/stops/LHaeg--1", "https://tec.openplanner.team/stops/X982ahb"], ["https://tec.openplanner.team/stops/LhGcasi1", "https://tec.openplanner.team/stops/LkEbbl-*"], ["https://tec.openplanner.team/stops/LPlchpl2", "https://tec.openplanner.team/stops/LPlpomp2"], ["https://tec.openplanner.team/stops/N244afa", "https://tec.openplanner.team/stops/N244afb"], ["https://tec.openplanner.team/stops/LHTbaud1", "https://tec.openplanner.team/stops/LHTbaud2"], ["https://tec.openplanner.team/stops/LlgLEOP1", "https://tec.openplanner.team/stops/LlgLEOP3"], ["https://tec.openplanner.team/stops/LOUchen2", "https://tec.openplanner.team/stops/LOUsorb1"], ["https://tec.openplanner.team/stops/Lsedavy1", "https://tec.openplanner.team/stops/Lsepudd1"], ["https://tec.openplanner.team/stops/X730abb", "https://tec.openplanner.team/stops/X753acb"], ["https://tec.openplanner.team/stops/H1wg125a", "https://tec.openplanner.team/stops/H1wg125b"], ["https://tec.openplanner.team/stops/LrUbrac2", "https://tec.openplanner.team/stops/LrUbrac3"], ["https://tec.openplanner.team/stops/Csedoua1", "https://tec.openplanner.team/stops/Csequew1"], ["https://tec.openplanner.team/stops/Cjudaxi2", "https://tec.openplanner.team/stops/Cjufrat1"], ["https://tec.openplanner.team/stops/Buccbas1", "https://tec.openplanner.team/stops/Buccchu1"], ["https://tec.openplanner.team/stops/H1bu138b", "https://tec.openplanner.team/stops/H1bu142b"], ["https://tec.openplanner.team/stops/LLebibl3", "https://tec.openplanner.team/stops/X547aqb"], ["https://tec.openplanner.team/stops/Ljubonf1", "https://tec.openplanner.team/stops/Ljuroch2"], ["https://tec.openplanner.team/stops/Llgdepo5", "https://tec.openplanner.team/stops/Llgmare1"], ["https://tec.openplanner.team/stops/H4mv196b", "https://tec.openplanner.team/stops/H4oe149a"], ["https://tec.openplanner.team/stops/Canplal1", "https://tec.openplanner.team/stops/Canplal2"], ["https://tec.openplanner.team/stops/N539bga", "https://tec.openplanner.team/stops/N540aja"], ["https://tec.openplanner.team/stops/X713aib", "https://tec.openplanner.team/stops/X714aaa"], ["https://tec.openplanner.team/stops/Cwsegli1", "https://tec.openplanner.team/stops/Cwspavi1"], ["https://tec.openplanner.team/stops/LpEbins2", "https://tec.openplanner.team/stops/LpEzoll*"], ["https://tec.openplanner.team/stops/X398aaa", "https://tec.openplanner.team/stops/X999aub"], ["https://tec.openplanner.team/stops/X613aba", "https://tec.openplanner.team/stops/X613ada"], ["https://tec.openplanner.team/stops/N529afa", "https://tec.openplanner.team/stops/N584aoa"], ["https://tec.openplanner.team/stops/X640aba", "https://tec.openplanner.team/stops/X640aia"], ["https://tec.openplanner.team/stops/Cfbcal1", "https://tec.openplanner.team/stops/Cfcchen1"], ["https://tec.openplanner.team/stops/X768aeb", "https://tec.openplanner.team/stops/X768aga"], ["https://tec.openplanner.team/stops/Bpernov1", "https://tec.openplanner.team/stops/Bperwil1"], ["https://tec.openplanner.team/stops/LGreg--1", "https://tec.openplanner.team/stops/LHDpota3"], ["https://tec.openplanner.team/stops/LAvrout2", "https://tec.openplanner.team/stops/LLtwanz1"], ["https://tec.openplanner.team/stops/LCUjonc2", "https://tec.openplanner.team/stops/LEnvill1"], ["https://tec.openplanner.team/stops/LPLhest2", "https://tec.openplanner.team/stops/LVtchai1"], ["https://tec.openplanner.team/stops/H1sd342a", "https://tec.openplanner.team/stops/H3go100b"], ["https://tec.openplanner.team/stops/LsC216-2", "https://tec.openplanner.team/stops/LsCback2"], ["https://tec.openplanner.team/stops/Cgd4ven2", "https://tec.openplanner.team/stops/Cgdrhau2"], ["https://tec.openplanner.team/stops/LOTjacq2", "https://tec.openplanner.team/stops/LOTsava1"], ["https://tec.openplanner.team/stops/LCPaube2", "https://tec.openplanner.team/stops/LPOchan2"], ["https://tec.openplanner.team/stops/Cmmn1171", "https://tec.openplanner.team/stops/Cmmn1172"], ["https://tec.openplanner.team/stops/N118aza", "https://tec.openplanner.team/stops/N118azb"], ["https://tec.openplanner.team/stops/Bwategb1", "https://tec.openplanner.team/stops/Bwatras2"], ["https://tec.openplanner.team/stops/Bwatdmo1", "https://tec.openplanner.team/stops/Bwategl2"], ["https://tec.openplanner.team/stops/LhPheps1", "https://tec.openplanner.team/stops/LhPprum1"], ["https://tec.openplanner.team/stops/Bglitro2", "https://tec.openplanner.team/stops/Btlbtho2"], ["https://tec.openplanner.team/stops/H1ha188a", "https://tec.openplanner.team/stops/H1ha198a"], ["https://tec.openplanner.team/stops/Cauptsa1", "https://tec.openplanner.team/stops/Cauptsa2"], ["https://tec.openplanner.team/stops/Lhrespe1", "https://tec.openplanner.team/stops/Lhrespe2"], ["https://tec.openplanner.team/stops/H4wi163b", "https://tec.openplanner.team/stops/H4wi175b"], ["https://tec.openplanner.team/stops/H1hn208b", "https://tec.openplanner.team/stops/H1hn365b"], ["https://tec.openplanner.team/stops/N528aha", "https://tec.openplanner.team/stops/N528ahb"], ["https://tec.openplanner.team/stops/X318aba", "https://tec.openplanner.team/stops/X364acb"], ["https://tec.openplanner.team/stops/H1he104b", "https://tec.openplanner.team/stops/H1he106b"], ["https://tec.openplanner.team/stops/Brsrbbo2", "https://tec.openplanner.team/stops/Brsregl4"], ["https://tec.openplanner.team/stops/Cjuecho2", "https://tec.openplanner.team/stops/Cjuhden1"], ["https://tec.openplanner.team/stops/H4ef110a", "https://tec.openplanner.team/stops/H4ef112a"], ["https://tec.openplanner.team/stops/LLOberl2", "https://tec.openplanner.team/stops/LLOchpl2"], ["https://tec.openplanner.team/stops/X669ada", "https://tec.openplanner.team/stops/X669adb"], ["https://tec.openplanner.team/stops/N566aeb", "https://tec.openplanner.team/stops/N566afa"], ["https://tec.openplanner.team/stops/N576aka", "https://tec.openplanner.team/stops/N576alb"], ["https://tec.openplanner.team/stops/X777abb", "https://tec.openplanner.team/stops/X777aca"], ["https://tec.openplanner.team/stops/X922aaa", "https://tec.openplanner.team/stops/X922aca"], ["https://tec.openplanner.team/stops/Lemboul2", "https://tec.openplanner.team/stops/Lemmusc2"], ["https://tec.openplanner.team/stops/H4eg101b", "https://tec.openplanner.team/stops/H4eg102b"], ["https://tec.openplanner.team/stops/Cmocime2", "https://tec.openplanner.team/stops/Cmoscap2"], ["https://tec.openplanner.team/stops/LlOdrei1", "https://tec.openplanner.team/stops/LlOdrei2"], ["https://tec.openplanner.team/stops/LCPlacr1", "https://tec.openplanner.team/stops/LPOchan1"], ["https://tec.openplanner.team/stops/N534byb", "https://tec.openplanner.team/stops/N534cbg"], ["https://tec.openplanner.team/stops/X801asa", "https://tec.openplanner.team/stops/X801baa"], ["https://tec.openplanner.team/stops/LMNcite1", "https://tec.openplanner.team/stops/LMNentr1"], ["https://tec.openplanner.team/stops/H1cu113a", "https://tec.openplanner.team/stops/H1cu125c"], ["https://tec.openplanner.team/stops/Llgbron2", "https://tec.openplanner.team/stops/Llgdart4"], ["https://tec.openplanner.team/stops/LATcorp2", "https://tec.openplanner.team/stops/LHUzoni2"], ["https://tec.openplanner.team/stops/Cgocat2", "https://tec.openplanner.team/stops/Cgosoux2"], ["https://tec.openplanner.team/stops/X634akb", "https://tec.openplanner.team/stops/X636aoa"], ["https://tec.openplanner.team/stops/Bbcodam3", "https://tec.openplanner.team/stops/Bbcopre1"], ["https://tec.openplanner.team/stops/Lhr4ave1", "https://tec.openplanner.team/stops/Lhr4ave2"], ["https://tec.openplanner.team/stops/N351afa", "https://tec.openplanner.team/stops/X351aba"], ["https://tec.openplanner.team/stops/N540alb", "https://tec.openplanner.team/stops/N540apb"], ["https://tec.openplanner.team/stops/X746adb", "https://tec.openplanner.team/stops/X746aeb"], ["https://tec.openplanner.team/stops/Bllnpsc2", "https://tec.openplanner.team/stops/Bllnrod3"], ["https://tec.openplanner.team/stops/LLYtir-1", "https://tec.openplanner.team/stops/LOMcabi2"], ["https://tec.openplanner.team/stops/Bbsibou2", "https://tec.openplanner.team/stops/Bbsivil3"], ["https://tec.openplanner.team/stops/N503aea", "https://tec.openplanner.team/stops/N503aeb"], ["https://tec.openplanner.team/stops/Lmocalv2", "https://tec.openplanner.team/stops/Lmochan1"], ["https://tec.openplanner.team/stops/H1bo104b", "https://tec.openplanner.team/stops/H1bo145b"], ["https://tec.openplanner.team/stops/LGlbour1", "https://tec.openplanner.team/stops/LGlwarf1"], ["https://tec.openplanner.team/stops/LSeaque1", "https://tec.openplanner.team/stops/LSeaque4"], ["https://tec.openplanner.team/stops/LWAlieg1", "https://tec.openplanner.team/stops/LWAlieg2"], ["https://tec.openplanner.team/stops/X725aec", "https://tec.openplanner.team/stops/X725aed"], ["https://tec.openplanner.team/stops/LCvneuv4", "https://tec.openplanner.team/stops/LCvneuv5"], ["https://tec.openplanner.team/stops/X786ada", "https://tec.openplanner.team/stops/X786adb"], ["https://tec.openplanner.team/stops/LClsacr2", "https://tec.openplanner.team/stops/LThnouv2"], ["https://tec.openplanner.team/stops/Bhanmou2", "https://tec.openplanner.team/stops/LHNtonn2"], ["https://tec.openplanner.team/stops/LPT97--1", "https://tec.openplanner.team/stops/LPurech1"], ["https://tec.openplanner.team/stops/LFychpl1", "https://tec.openplanner.team/stops/LFychpl2"], ["https://tec.openplanner.team/stops/LmUkape1", "https://tec.openplanner.team/stops/LmUkape2"], ["https://tec.openplanner.team/stops/LHUec--2", "https://tec.openplanner.team/stops/LHUomni2"], ["https://tec.openplanner.team/stops/Llabrou1", "https://tec.openplanner.team/stops/Llaflot1"], ["https://tec.openplanner.team/stops/N501aqb", "https://tec.openplanner.team/stops/N501mca"], ["https://tec.openplanner.team/stops/H1fl136a", "https://tec.openplanner.team/stops/H1fl137a"], ["https://tec.openplanner.team/stops/LrAneus1", "https://tec.openplanner.team/stops/LrAneus3"], ["https://tec.openplanner.team/stops/H4we134a", "https://tec.openplanner.team/stops/H4we134b"], ["https://tec.openplanner.team/stops/LHAcite1", "https://tec.openplanner.team/stops/LHAprei1"], ["https://tec.openplanner.team/stops/X756acb", "https://tec.openplanner.team/stops/X756aed"], ["https://tec.openplanner.team/stops/LAweg--1", "https://tec.openplanner.team/stops/LAYfoot1"], ["https://tec.openplanner.team/stops/N577aea", "https://tec.openplanner.team/stops/N577aib"], ["https://tec.openplanner.team/stops/LTPpreh1", "https://tec.openplanner.team/stops/LTPwann1"], ["https://tec.openplanner.team/stops/Cmamonu1", "https://tec.openplanner.team/stops/Cmamonu2"], ["https://tec.openplanner.team/stops/LSPecho2", "https://tec.openplanner.team/stops/LWMchpl1"], ["https://tec.openplanner.team/stops/LwAkett2", "https://tec.openplanner.team/stops/LwArabo2"], ["https://tec.openplanner.team/stops/Lflheid2", "https://tec.openplanner.team/stops/Lqbeg--1"], ["https://tec.openplanner.team/stops/Bsmgmar1", "https://tec.openplanner.team/stops/Bsmgsuz1"], ["https://tec.openplanner.team/stops/N313aaa", "https://tec.openplanner.team/stops/N313aab"], ["https://tec.openplanner.team/stops/H4te413a", "https://tec.openplanner.team/stops/H4te413b"], ["https://tec.openplanner.team/stops/LCxhall1", "https://tec.openplanner.team/stops/LCxhall2"], ["https://tec.openplanner.team/stops/Lagjard1", "https://tec.openplanner.team/stops/Lagpera1"], ["https://tec.openplanner.team/stops/Bblague2", "https://tec.openplanner.team/stops/Bblaqsj2"], ["https://tec.openplanner.team/stops/H1hn364a", "https://tec.openplanner.team/stops/H1ms260a"], ["https://tec.openplanner.team/stops/H4ty302a", "https://tec.openplanner.team/stops/H4ty320b"], ["https://tec.openplanner.team/stops/LOcalbe2", "https://tec.openplanner.team/stops/LOcgdro4"], ["https://tec.openplanner.team/stops/Cmechnd1", "https://tec.openplanner.team/stops/Cmehels1"], ["https://tec.openplanner.team/stops/N506bba", "https://tec.openplanner.team/stops/N506bbb"], ["https://tec.openplanner.team/stops/Bsdecdi1", "https://tec.openplanner.team/stops/N574aeb"], ["https://tec.openplanner.team/stops/H1gn152a", "https://tec.openplanner.team/stops/H1mq198a"], ["https://tec.openplanner.team/stops/Lselimi1", "https://tec.openplanner.team/stops/Lselimi2"], ["https://tec.openplanner.team/stops/Bvilvil1", "https://tec.openplanner.team/stops/Bvilvil2"], ["https://tec.openplanner.team/stops/LMEgare1", "https://tec.openplanner.team/stops/LMEwerg2"], ["https://tec.openplanner.team/stops/Bgnpegl4", "https://tec.openplanner.team/stops/Bgnppem1"], ["https://tec.openplanner.team/stops/X607aia", "https://tec.openplanner.team/stops/X607aib"], ["https://tec.openplanner.team/stops/LMNheme1", "https://tec.openplanner.team/stops/LMNheme2"], ["https://tec.openplanner.team/stops/X870ahb", "https://tec.openplanner.team/stops/X870ajb"], ["https://tec.openplanner.team/stops/X824aga", "https://tec.openplanner.team/stops/X824agb"], ["https://tec.openplanner.team/stops/H4mo151b", "https://tec.openplanner.team/stops/H4mo207b"], ["https://tec.openplanner.team/stops/X818aqb", "https://tec.openplanner.team/stops/X818arb"], ["https://tec.openplanner.team/stops/X608aea", "https://tec.openplanner.team/stops/X608ayb"], ["https://tec.openplanner.team/stops/LSzetoi1", "https://tec.openplanner.team/stops/LSznoel1"], ["https://tec.openplanner.team/stops/Cvpbifu1", "https://tec.openplanner.team/stops/Cvpbifu2"], ["https://tec.openplanner.team/stops/X696aba", "https://tec.openplanner.team/stops/X696ada"], ["https://tec.openplanner.team/stops/H4ty308e", "https://tec.openplanner.team/stops/H4ty332c"], ["https://tec.openplanner.team/stops/X921aob", "https://tec.openplanner.team/stops/X982bvb"], ["https://tec.openplanner.team/stops/X725aeb", "https://tec.openplanner.team/stops/X725apb"], ["https://tec.openplanner.team/stops/N543aua", "https://tec.openplanner.team/stops/N543axa"], ["https://tec.openplanner.team/stops/H2bh112a", "https://tec.openplanner.team/stops/H2bh112b"], ["https://tec.openplanner.team/stops/LTHjevo2", "https://tec.openplanner.team/stops/LTHperr3"], ["https://tec.openplanner.team/stops/Cvsegli1", "https://tec.openplanner.team/stops/N530afa"], ["https://tec.openplanner.team/stops/LEN101-1", "https://tec.openplanner.team/stops/LENchem2"], ["https://tec.openplanner.team/stops/H2hg266a", "https://tec.openplanner.team/stops/H2hg266b"], ["https://tec.openplanner.team/stops/LWRtroi1", "https://tec.openplanner.team/stops/LWRtroi2"], ["https://tec.openplanner.team/stops/LTHchiv1", "https://tec.openplanner.team/stops/LTHchiv2"], ["https://tec.openplanner.team/stops/Bbgelre1", "https://tec.openplanner.team/stops/Bbgelre2"], ["https://tec.openplanner.team/stops/LBIrout1", "https://tec.openplanner.team/stops/LBIrout2"], ["https://tec.openplanner.team/stops/LVSbleu2", "https://tec.openplanner.team/stops/LVSeg--2"], ["https://tec.openplanner.team/stops/Llggram2", "https://tec.openplanner.team/stops/Llgrome1"], ["https://tec.openplanner.team/stops/X782aob", "https://tec.openplanner.team/stops/X783acc"], ["https://tec.openplanner.team/stops/Bhalath1", "https://tec.openplanner.team/stops/Bhalpar2"], ["https://tec.openplanner.team/stops/Bolgrsa2", "https://tec.openplanner.team/stops/Bolgsha2"], ["https://tec.openplanner.team/stops/H4ga154b", "https://tec.openplanner.team/stops/H4ru238a"], ["https://tec.openplanner.team/stops/Bpergar2", "https://tec.openplanner.team/stops/Bpergar3"], ["https://tec.openplanner.team/stops/X782aga", "https://tec.openplanner.team/stops/X782aha"], ["https://tec.openplanner.team/stops/Csychap3", "https://tec.openplanner.team/stops/Csyjumo1"], ["https://tec.openplanner.team/stops/X664amc", "https://tec.openplanner.team/stops/X664arb"], ["https://tec.openplanner.team/stops/X652ahb", "https://tec.openplanner.team/stops/X652ajb"], ["https://tec.openplanner.team/stops/LLbbons1", "https://tec.openplanner.team/stops/LPtchpl1"], ["https://tec.openplanner.team/stops/Lfhweri2", "https://tec.openplanner.team/stops/Lpomart2"], ["https://tec.openplanner.team/stops/Ccoacar1", "https://tec.openplanner.team/stops/Ccotemp2"], ["https://tec.openplanner.team/stops/Bgzddge1", "https://tec.openplanner.team/stops/Bgzddur2"], ["https://tec.openplanner.team/stops/X641apa", "https://tec.openplanner.team/stops/X641apc"], ["https://tec.openplanner.team/stops/N260aba", "https://tec.openplanner.team/stops/N260abc"], ["https://tec.openplanner.team/stops/H1fl133a", "https://tec.openplanner.team/stops/H1fl133c"], ["https://tec.openplanner.team/stops/LTaabba1", "https://tec.openplanner.team/stops/LVnvieg1"], ["https://tec.openplanner.team/stops/Bnilcha2", "https://tec.openplanner.team/stops/Bnilpje1"], ["https://tec.openplanner.team/stops/Btstbes2", "https://tec.openplanner.team/stops/Btstcar1"], ["https://tec.openplanner.team/stops/X640akb", "https://tec.openplanner.team/stops/X640ala"], ["https://tec.openplanner.team/stops/N305aaa", "https://tec.openplanner.team/stops/N331aja"], ["https://tec.openplanner.team/stops/N509afb", "https://tec.openplanner.team/stops/N509agb"], ["https://tec.openplanner.team/stops/Llgandr2", "https://tec.openplanner.team/stops/Llgavro1"], ["https://tec.openplanner.team/stops/Bvirduj1", "https://tec.openplanner.team/stops/Bvirhsa2"], ["https://tec.openplanner.team/stops/N550aga", "https://tec.openplanner.team/stops/N550ama"], ["https://tec.openplanner.team/stops/N501hwa", "https://tec.openplanner.team/stops/N501iqa"], ["https://tec.openplanner.team/stops/H1hy127b", "https://tec.openplanner.team/stops/H1hy130b"], ["https://tec.openplanner.team/stops/X995aab", "https://tec.openplanner.team/stops/X995acb"], ["https://tec.openplanner.team/stops/H1gh173a", "https://tec.openplanner.team/stops/H1ms297a"], ["https://tec.openplanner.team/stops/NL76abb", "https://tec.openplanner.team/stops/NL76afa"], ["https://tec.openplanner.team/stops/LJSeg--2", "https://tec.openplanner.team/stops/Lpechin2"], ["https://tec.openplanner.team/stops/NR21aba", "https://tec.openplanner.team/stops/NR21abd"], ["https://tec.openplanner.team/stops/LCdchod1", "https://tec.openplanner.team/stops/LMAbell1"], ["https://tec.openplanner.team/stops/LwAkape1", "https://tec.openplanner.team/stops/LwAprei1"], ["https://tec.openplanner.team/stops/LHMsipp2", "https://tec.openplanner.team/stops/LMNcite2"], ["https://tec.openplanner.team/stops/Cfmcoro1", "https://tec.openplanner.team/stops/Cfmnoci2"], ["https://tec.openplanner.team/stops/X774agb", "https://tec.openplanner.team/stops/X775aea"], ["https://tec.openplanner.team/stops/LeUath%C3%A41", "https://tec.openplanner.team/stops/LeUrath1"], ["https://tec.openplanner.team/stops/X663aoa", "https://tec.openplanner.team/stops/X663awa"], ["https://tec.openplanner.team/stops/LHAarge2", "https://tec.openplanner.team/stops/LHTlieg1"], ["https://tec.openplanner.team/stops/Blhueca1", "https://tec.openplanner.team/stops/Blhumpo1"], ["https://tec.openplanner.team/stops/LaTcolo1", "https://tec.openplanner.team/stops/LsEdorf1"], ["https://tec.openplanner.team/stops/Bwatbno1", "https://tec.openplanner.team/stops/Bwatgib1"], ["https://tec.openplanner.team/stops/H1ms264b", "https://tec.openplanner.team/stops/H1ms269b"], ["https://tec.openplanner.team/stops/X870aab", "https://tec.openplanner.team/stops/X870aba"], ["https://tec.openplanner.team/stops/X638aea", "https://tec.openplanner.team/stops/X638aeb"], ["https://tec.openplanner.team/stops/X812acb", "https://tec.openplanner.team/stops/X812aya"], ["https://tec.openplanner.team/stops/N121agb", "https://tec.openplanner.team/stops/N121ahb"], ["https://tec.openplanner.team/stops/X771aba", "https://tec.openplanner.team/stops/X771acb"], ["https://tec.openplanner.team/stops/Blhufro1", "https://tec.openplanner.team/stops/Blhufro2"], ["https://tec.openplanner.team/stops/N505aea", "https://tec.openplanner.team/stops/N505agb"], ["https://tec.openplanner.team/stops/Bvilcoq1", "https://tec.openplanner.team/stops/Bvilvil4"], ["https://tec.openplanner.team/stops/LHehacc2", "https://tec.openplanner.team/stops/LHThall4"], ["https://tec.openplanner.team/stops/N513arb", "https://tec.openplanner.team/stops/N513asb"], ["https://tec.openplanner.team/stops/Bnivjli2", "https://tec.openplanner.team/stops/Bnivrsh2"], ["https://tec.openplanner.team/stops/Llgbavi0", "https://tec.openplanner.team/stops/Llgbavi4"], ["https://tec.openplanner.team/stops/Cnahahe2", "https://tec.openplanner.team/stops/Cnawari1"], ["https://tec.openplanner.team/stops/X897abb", "https://tec.openplanner.team/stops/X897ana"], ["https://tec.openplanner.team/stops/H1em102a", "https://tec.openplanner.team/stops/H1em110a"], ["https://tec.openplanner.team/stops/LBImili2", "https://tec.openplanner.team/stops/LBIrout1"], ["https://tec.openplanner.team/stops/H1bo103a", "https://tec.openplanner.team/stops/H1sg142a"], ["https://tec.openplanner.team/stops/N118aab", "https://tec.openplanner.team/stops/N118abb"], ["https://tec.openplanner.team/stops/Cgxcite2", "https://tec.openplanner.team/stops/Cgxprad1"], ["https://tec.openplanner.team/stops/N424aab", "https://tec.openplanner.team/stops/N424abb"], ["https://tec.openplanner.team/stops/X805acb", "https://tec.openplanner.team/stops/X805aeb"], ["https://tec.openplanner.team/stops/H4an104a", "https://tec.openplanner.team/stops/H4an110b"], ["https://tec.openplanner.team/stops/H4mo162a", "https://tec.openplanner.team/stops/H4mo179a"], ["https://tec.openplanner.team/stops/Lagviad1", "https://tec.openplanner.team/stops/Lagviad2"], ["https://tec.openplanner.team/stops/LAWmc--1", "https://tec.openplanner.team/stops/LAWmc--4"], ["https://tec.openplanner.team/stops/X619ahb", "https://tec.openplanner.team/stops/X619aib"], ["https://tec.openplanner.team/stops/N538asa", "https://tec.openplanner.team/stops/N538asc"], ["https://tec.openplanner.team/stops/LLteg--1", "https://tec.openplanner.team/stops/LLteg--2"], ["https://tec.openplanner.team/stops/Lflchan2", "https://tec.openplanner.team/stops/Lmabott2"], ["https://tec.openplanner.team/stops/LTRespe2", "https://tec.openplanner.team/stops/LTRpeec1"], ["https://tec.openplanner.team/stops/X725aub", "https://tec.openplanner.team/stops/X725bfa"], ["https://tec.openplanner.team/stops/X901bga", "https://tec.openplanner.team/stops/X901bsa"], ["https://tec.openplanner.team/stops/N202aaa", "https://tec.openplanner.team/stops/N202aea"], ["https://tec.openplanner.team/stops/Cplbbro1", "https://tec.openplanner.team/stops/NC11afa"], ["https://tec.openplanner.team/stops/X614afb", "https://tec.openplanner.team/stops/X614aga"], ["https://tec.openplanner.team/stops/N151aha", "https://tec.openplanner.team/stops/N151aia"], ["https://tec.openplanner.team/stops/X768ala", "https://tec.openplanner.team/stops/X768alc"], ["https://tec.openplanner.team/stops/Llglave2", "https://tec.openplanner.team/stops/Llgwall1"], ["https://tec.openplanner.team/stops/X925ada", "https://tec.openplanner.team/stops/X925aea"], ["https://tec.openplanner.team/stops/Lprmc--2", "https://tec.openplanner.team/stops/Lprmc--3"], ["https://tec.openplanner.team/stops/H1cd112a", "https://tec.openplanner.team/stops/H1cd112b"], ["https://tec.openplanner.team/stops/X604aib", "https://tec.openplanner.team/stops/X604akb"], ["https://tec.openplanner.team/stops/LeMdorf2", "https://tec.openplanner.team/stops/LmFdorf2"], ["https://tec.openplanner.team/stops/Bnivaig2", "https://tec.openplanner.team/stops/Bnivcma2"], ["https://tec.openplanner.team/stops/Cpceclu1", "https://tec.openplanner.team/stops/Cpceclu2"], ["https://tec.openplanner.team/stops/NL37aib", "https://tec.openplanner.team/stops/NL37akb"], ["https://tec.openplanner.team/stops/Cfaetoi2", "https://tec.openplanner.team/stops/Cplcite2"], ["https://tec.openplanner.team/stops/LeYwald1", "https://tec.openplanner.team/stops/LeYwess2"], ["https://tec.openplanner.team/stops/Blhulor1", "https://tec.openplanner.team/stops/Blhuone2"], ["https://tec.openplanner.team/stops/LBLcalv2", "https://tec.openplanner.team/stops/LBLcalv3"], ["https://tec.openplanner.team/stops/X995add", "https://tec.openplanner.team/stops/X995afa"], ["https://tec.openplanner.team/stops/N117aab", "https://tec.openplanner.team/stops/N117bba"], ["https://tec.openplanner.team/stops/Cfobriq2", "https://tec.openplanner.team/stops/Cfogaul1"], ["https://tec.openplanner.team/stops/H4sl154b", "https://tec.openplanner.team/stops/H4sl155a"], ["https://tec.openplanner.team/stops/Blimd672", "https://tec.openplanner.team/stops/Blimmer2"], ["https://tec.openplanner.team/stops/LBIhann2", "https://tec.openplanner.team/stops/LBImili2"], ["https://tec.openplanner.team/stops/N232bca", "https://tec.openplanner.team/stops/N232bua"], ["https://tec.openplanner.team/stops/Bblmpro2", "https://tec.openplanner.team/stops/Bblmwma2"], ["https://tec.openplanner.team/stops/H4ae132d", "https://tec.openplanner.team/stops/H4au100a"], ["https://tec.openplanner.team/stops/Bwatath1", "https://tec.openplanner.team/stops/Bwatath3"], ["https://tec.openplanner.team/stops/LWaatel2", "https://tec.openplanner.team/stops/LWLtamb2"], ["https://tec.openplanner.team/stops/LDppana2", "https://tec.openplanner.team/stops/LTEcamp2"], ["https://tec.openplanner.team/stops/LLVboss1", "https://tec.openplanner.team/stops/X561aea"], ["https://tec.openplanner.team/stops/LHtdros2", "https://tec.openplanner.team/stops/LMRmont2"], ["https://tec.openplanner.team/stops/N501myb", "https://tec.openplanner.team/stops/N527aca"], ["https://tec.openplanner.team/stops/LMAgare*", "https://tec.openplanner.team/stops/LMAptne2"], ["https://tec.openplanner.team/stops/Lch179-2", "https://tec.openplanner.team/stops/Lchsaec2"], ["https://tec.openplanner.team/stops/LHGikea2", "https://tec.openplanner.team/stops/LHGzoni1"], ["https://tec.openplanner.team/stops/Lvccime1", "https://tec.openplanner.team/stops/Lvccime2"], ["https://tec.openplanner.team/stops/H2hl112b", "https://tec.openplanner.team/stops/H2ll179a"], ["https://tec.openplanner.team/stops/H1vb142b", "https://tec.openplanner.team/stops/H1vb147a"], ["https://tec.openplanner.team/stops/Cbfegch1", "https://tec.openplanner.team/stops/NC24aja"], ["https://tec.openplanner.team/stops/H1bu141b", "https://tec.openplanner.team/stops/H2le147a"], ["https://tec.openplanner.team/stops/Bwavnep2", "https://tec.openplanner.team/stops/Bwavpar1"], ["https://tec.openplanner.team/stops/LAmeclu2", "https://tec.openplanner.team/stops/LATcorn1"], ["https://tec.openplanner.team/stops/Lceourt2", "https://tec.openplanner.team/stops/Lemdupo1"], ["https://tec.openplanner.team/stops/H2ma209a", "https://tec.openplanner.team/stops/H3bo103a"], ["https://tec.openplanner.team/stops/LVIjacq1", "https://tec.openplanner.team/stops/LVIjacq2"], ["https://tec.openplanner.team/stops/LkEbruc1", "https://tec.openplanner.team/stops/LkEkric1"], ["https://tec.openplanner.team/stops/LBEfagn1", "https://tec.openplanner.team/stops/LBEfagn2"], ["https://tec.openplanner.team/stops/Cmlchan2", "https://tec.openplanner.team/stops/Cmltemp3"], ["https://tec.openplanner.team/stops/X638aoa", "https://tec.openplanner.team/stops/X638apb"], ["https://tec.openplanner.team/stops/LHGtong1", "https://tec.openplanner.team/stops/LHGtong2"], ["https://tec.openplanner.team/stops/N538ama", "https://tec.openplanner.team/stops/N538arb"], ["https://tec.openplanner.team/stops/Bsomjon1", "https://tec.openplanner.team/stops/Bsomjon2"], ["https://tec.openplanner.team/stops/LBWviad1", "https://tec.openplanner.team/stops/LBWviad2"], ["https://tec.openplanner.team/stops/Lbhfaye1", "https://tec.openplanner.team/stops/Lbhsion1"], ["https://tec.openplanner.team/stops/LJUmate2", "https://tec.openplanner.team/stops/Llaflot2"], ["https://tec.openplanner.team/stops/NL78adb", "https://tec.openplanner.team/stops/NL78aka"], ["https://tec.openplanner.team/stops/Cctrobe1", "https://tec.openplanner.team/stops/Cctvand2"], ["https://tec.openplanner.team/stops/Lghcise2", "https://tec.openplanner.team/stops/Lmocalv2"], ["https://tec.openplanner.team/stops/Bbchm382", "https://tec.openplanner.team/stops/Bhalvla2"], ["https://tec.openplanner.team/stops/LPtrefa1", "https://tec.openplanner.team/stops/LRfcent2"], ["https://tec.openplanner.team/stops/X754aqb", "https://tec.openplanner.team/stops/X754ava"], ["https://tec.openplanner.team/stops/X636afa", "https://tec.openplanner.team/stops/X636baa"], ["https://tec.openplanner.team/stops/Ccychba1", "https://tec.openplanner.team/stops/Cvlgrta2"], ["https://tec.openplanner.team/stops/H4va232a", "https://tec.openplanner.team/stops/H4va234a"], ["https://tec.openplanner.team/stops/N302acb", "https://tec.openplanner.team/stops/N302aea"], ["https://tec.openplanner.team/stops/LBrbern2", "https://tec.openplanner.team/stops/LMisour1"], ["https://tec.openplanner.team/stops/H5ma180b", "https://tec.openplanner.team/stops/H5ma186b"], ["https://tec.openplanner.team/stops/H1hl124a", "https://tec.openplanner.team/stops/H1hl124b"], ["https://tec.openplanner.team/stops/Bmonbor2", "https://tec.openplanner.team/stops/Bmonbri2"], ["https://tec.openplanner.team/stops/X224aha", "https://tec.openplanner.team/stops/X398aha"], ["https://tec.openplanner.team/stops/N531aea", "https://tec.openplanner.team/stops/N531ata"], ["https://tec.openplanner.team/stops/Bmsgbur1", "https://tec.openplanner.team/stops/Bmsgcap1"], ["https://tec.openplanner.team/stops/LrApark1", "https://tec.openplanner.team/stops/LrApark2"], ["https://tec.openplanner.team/stops/Lvecite2", "https://tec.openplanner.team/stops/Lvemahe2"], ["https://tec.openplanner.team/stops/Lroeg--1", "https://tec.openplanner.team/stops/Lromerl1"], ["https://tec.openplanner.team/stops/X608aua", "https://tec.openplanner.team/stops/X608aya"], ["https://tec.openplanner.team/stops/LAWeg--1", "https://tec.openplanner.team/stops/LAWmc--1"], ["https://tec.openplanner.team/stops/X636awa", "https://tec.openplanner.team/stops/X636bba"], ["https://tec.openplanner.team/stops/Lpegole1", "https://tec.openplanner.team/stops/Lpegole2"], ["https://tec.openplanner.team/stops/X548aaa", "https://tec.openplanner.team/stops/X784aib"], ["https://tec.openplanner.team/stops/N321aba", "https://tec.openplanner.team/stops/N321acb"], ["https://tec.openplanner.team/stops/N539atb", "https://tec.openplanner.team/stops/N539bfb"], ["https://tec.openplanner.team/stops/LnUcamp2", "https://tec.openplanner.team/stops/LnUneun3"], ["https://tec.openplanner.team/stops/N501dea", "https://tec.openplanner.team/stops/N501deb"], ["https://tec.openplanner.team/stops/LFacruc1", "https://tec.openplanner.team/stops/LFacruc2"], ["https://tec.openplanner.team/stops/Lsebelv1", "https://tec.openplanner.team/stops/Lsetrav2"], ["https://tec.openplanner.team/stops/LOuouff2", "https://tec.openplanner.team/stops/LOurena2"], ["https://tec.openplanner.team/stops/Bkrawil1", "https://tec.openplanner.team/stops/Bovesnh1"], ["https://tec.openplanner.team/stops/Cchfran2", "https://tec.openplanner.team/stops/Cchrmon1"], ["https://tec.openplanner.team/stops/Lvearle2", "https://tec.openplanner.team/stops/Lvescie1"], ["https://tec.openplanner.team/stops/Bborppa2", "https://tec.openplanner.team/stops/Bfelagb1"], ["https://tec.openplanner.team/stops/Bquepos1", "https://tec.openplanner.team/stops/Bquesta2"], ["https://tec.openplanner.team/stops/Bboufsm1", "https://tec.openplanner.team/stops/Bbstcoi2"], ["https://tec.openplanner.team/stops/Crolema2", "https://tec.openplanner.team/stops/Crowilb1"], ["https://tec.openplanner.team/stops/H4mv189c", "https://tec.openplanner.team/stops/H4mv194b"], ["https://tec.openplanner.team/stops/X999ala", "https://tec.openplanner.team/stops/X999aqb"], ["https://tec.openplanner.team/stops/X601awa", "https://tec.openplanner.team/stops/X612aaa"], ["https://tec.openplanner.team/stops/Ccupays2", "https://tec.openplanner.team/stops/Cmtproc2"], ["https://tec.openplanner.team/stops/Lvealbe2", "https://tec.openplanner.team/stops/Lvevert2"], ["https://tec.openplanner.team/stops/H1le125a", "https://tec.openplanner.team/stops/H1le125b"], ["https://tec.openplanner.team/stops/Llgcorn2", "https://tec.openplanner.team/stops/Llgrema2"], ["https://tec.openplanner.team/stops/Llgboux1", "https://tec.openplanner.team/stops/Lvtnico1"], ["https://tec.openplanner.team/stops/N351agb", "https://tec.openplanner.team/stops/X351acb"], ["https://tec.openplanner.team/stops/Lhrferr1", "https://tec.openplanner.team/stops/Lhrjaur1"], ["https://tec.openplanner.team/stops/X719ada", "https://tec.openplanner.team/stops/X719aea"], ["https://tec.openplanner.team/stops/X824aaa", "https://tec.openplanner.team/stops/X824aac"], ["https://tec.openplanner.team/stops/LhEauto1", "https://tec.openplanner.team/stops/LhEherb2"], ["https://tec.openplanner.team/stops/LoEauto2", "https://tec.openplanner.team/stops/LoEbach1"], ["https://tec.openplanner.team/stops/LFrcent1", "https://tec.openplanner.team/stops/LFrcent2"], ["https://tec.openplanner.team/stops/H1je219b", "https://tec.openplanner.team/stops/H1je369b"], ["https://tec.openplanner.team/stops/Lsnbrac4", "https://tec.openplanner.team/stops/Lsnbure1"], ["https://tec.openplanner.team/stops/H1do108b", "https://tec.openplanner.team/stops/H1do117a"], ["https://tec.openplanner.team/stops/Lhracec1", "https://tec.openplanner.team/stops/Lwachal2"], ["https://tec.openplanner.team/stops/H4ty305a", "https://tec.openplanner.team/stops/H4ty305d"], ["https://tec.openplanner.team/stops/X801bma", "https://tec.openplanner.team/stops/X801boa"], ["https://tec.openplanner.team/stops/H4ma200b", "https://tec.openplanner.team/stops/H4ma203a"], ["https://tec.openplanner.team/stops/Bdvmalo2", "https://tec.openplanner.team/stops/Bdvmcsa2"], ["https://tec.openplanner.team/stops/LBGcent2", "https://tec.openplanner.team/stops/LHDpota4"], ["https://tec.openplanner.team/stops/H2ch104b", "https://tec.openplanner.team/stops/H2ch106b"], ["https://tec.openplanner.team/stops/Lsefori1", "https://tec.openplanner.team/stops/Lsefori2"], ["https://tec.openplanner.team/stops/LLUmc--1", "https://tec.openplanner.team/stops/LLUreut1"], ["https://tec.openplanner.team/stops/LDOandr1", "https://tec.openplanner.team/stops/LDOdavi1"], ["https://tec.openplanner.team/stops/Bbwacol2", "https://tec.openplanner.team/stops/Bwavbwa1"], ["https://tec.openplanner.team/stops/N506arb", "https://tec.openplanner.team/stops/N506azb"], ["https://tec.openplanner.team/stops/Clbbonn2", "https://tec.openplanner.team/stops/H1lo120b"], ["https://tec.openplanner.team/stops/H1eu101a", "https://tec.openplanner.team/stops/H1lb152b"], ["https://tec.openplanner.team/stops/N538atc", "https://tec.openplanner.team/stops/N538bbb"], ["https://tec.openplanner.team/stops/Bbeaap12", "https://tec.openplanner.team/stops/Bbeaneu4"], ["https://tec.openplanner.team/stops/X618aka", "https://tec.openplanner.team/stops/X625ada"], ["https://tec.openplanner.team/stops/X812agb", "https://tec.openplanner.team/stops/X812aja"], ["https://tec.openplanner.team/stops/H4ty329a", "https://tec.openplanner.team/stops/H4ty336b"], ["https://tec.openplanner.team/stops/N535amb", "https://tec.openplanner.team/stops/N535amc"], ["https://tec.openplanner.team/stops/LBGcent1", "https://tec.openplanner.team/stops/LGrchpl1"], ["https://tec.openplanner.team/stops/N506bbb", "https://tec.openplanner.team/stops/N506bda"], ["https://tec.openplanner.team/stops/X899afa", "https://tec.openplanner.team/stops/X899aga"], ["https://tec.openplanner.team/stops/LeUmeye1", "https://tec.openplanner.team/stops/LtEnatu2"], ["https://tec.openplanner.team/stops/LAyheid1", "https://tec.openplanner.team/stops/LAyheid2"], ["https://tec.openplanner.team/stops/LSyec--1", "https://tec.openplanner.team/stops/LSypesy2"], ["https://tec.openplanner.team/stops/Csecarr1", "https://tec.openplanner.team/stops/Csecout1"], ["https://tec.openplanner.team/stops/X636amb", "https://tec.openplanner.team/stops/X636ara"], ["https://tec.openplanner.team/stops/LAChann1", "https://tec.openplanner.team/stops/LAChann2"], ["https://tec.openplanner.team/stops/X923ahb", "https://tec.openplanner.team/stops/X923aia"], ["https://tec.openplanner.team/stops/LBJchau*", "https://tec.openplanner.team/stops/LMAbass2"], ["https://tec.openplanner.team/stops/X999aib", "https://tec.openplanner.team/stops/X999ata"], ["https://tec.openplanner.team/stops/Cwgcamp1", "https://tec.openplanner.team/stops/Cwgcamp2"], ["https://tec.openplanner.team/stops/X741aab", "https://tec.openplanner.team/stops/X741aca"], ["https://tec.openplanner.team/stops/LAx41--1", "https://tec.openplanner.team/stops/LAx41--2"], ["https://tec.openplanner.team/stops/H4ka185a", "https://tec.openplanner.team/stops/H4mt218a"], ["https://tec.openplanner.team/stops/H1gi123a", "https://tec.openplanner.team/stops/H1hg179b"], ["https://tec.openplanner.team/stops/X685afa", "https://tec.openplanner.team/stops/X685agb"], ["https://tec.openplanner.team/stops/X804asa", "https://tec.openplanner.team/stops/X829aaa"], ["https://tec.openplanner.team/stops/X927aba", "https://tec.openplanner.team/stops/X996aha"], ["https://tec.openplanner.team/stops/X661amb", "https://tec.openplanner.team/stops/X661ara"], ["https://tec.openplanner.team/stops/H4ch114a", "https://tec.openplanner.team/stops/H4ch114b"], ["https://tec.openplanner.team/stops/Cmmlong1", "https://tec.openplanner.team/stops/Cmmmarl2"], ["https://tec.openplanner.team/stops/X938aca", "https://tec.openplanner.team/stops/X938aeb"], ["https://tec.openplanner.team/stops/Llochar1", "https://tec.openplanner.team/stops/Llocime1"], ["https://tec.openplanner.team/stops/H4co150a", "https://tec.openplanner.team/stops/H4co162a"], ["https://tec.openplanner.team/stops/X716aca", "https://tec.openplanner.team/stops/X781adb"], ["https://tec.openplanner.team/stops/Bbeubos2", "https://tec.openplanner.team/stops/N526abb"], ["https://tec.openplanner.team/stops/H1sp357b", "https://tec.openplanner.team/stops/H1ss352b"], ["https://tec.openplanner.team/stops/Btstche2", "https://tec.openplanner.team/stops/N524ala"], ["https://tec.openplanner.team/stops/LHaxhor1", "https://tec.openplanner.team/stops/LVvboma2"], ["https://tec.openplanner.team/stops/N562bja", "https://tec.openplanner.team/stops/N562bka"], ["https://tec.openplanner.team/stops/Lsn130-1", "https://tec.openplanner.team/stops/Lsnfont1"], ["https://tec.openplanner.team/stops/H5rx110a", "https://tec.openplanner.team/stops/H5rx146a"], ["https://tec.openplanner.team/stops/LSzetoi1", "https://tec.openplanner.team/stops/NL57afa"], ["https://tec.openplanner.team/stops/X897arb", "https://tec.openplanner.team/stops/X897aub"], ["https://tec.openplanner.team/stops/X601dba", "https://tec.openplanner.team/stops/X612afb"], ["https://tec.openplanner.team/stops/H4bf106a", "https://tec.openplanner.team/stops/H4by116b"], ["https://tec.openplanner.team/stops/H2an100a", "https://tec.openplanner.team/stops/H2an103a"], ["https://tec.openplanner.team/stops/H4ef110b", "https://tec.openplanner.team/stops/H4ef113b"], ["https://tec.openplanner.team/stops/LJOvill1", "https://tec.openplanner.team/stops/LXHbois2"], ["https://tec.openplanner.team/stops/H2lh125b", "https://tec.openplanner.team/stops/H2lh127a"], ["https://tec.openplanner.team/stops/N348aca", "https://tec.openplanner.team/stops/N348aea"], ["https://tec.openplanner.team/stops/LFRgode1", "https://tec.openplanner.team/stops/LFRspa-2"], ["https://tec.openplanner.team/stops/LBEairp2", "https://tec.openplanner.team/stops/LBEairp4"], ["https://tec.openplanner.team/stops/Bbiemse1", "https://tec.openplanner.team/stops/Bbiepon1"], ["https://tec.openplanner.team/stops/H4vx364a", "https://tec.openplanner.team/stops/H4vx364c"], ["https://tec.openplanner.team/stops/LBvnico1", "https://tec.openplanner.team/stops/LPUlecl2"], ["https://tec.openplanner.team/stops/H1ch142a", "https://tec.openplanner.team/stops/H4ld129b"], ["https://tec.openplanner.team/stops/LVsbrux2", "https://tec.openplanner.team/stops/NL57aib"], ["https://tec.openplanner.team/stops/X910aba", "https://tec.openplanner.team/stops/X910aca"], ["https://tec.openplanner.team/stops/N118aib", "https://tec.openplanner.team/stops/N118axa"], ["https://tec.openplanner.team/stops/LBLcalv3", "https://tec.openplanner.team/stops/LCEplac2"], ["https://tec.openplanner.team/stops/LREsoug2", "https://tec.openplanner.team/stops/LREsoug3"], ["https://tec.openplanner.team/stops/LXhvanh1", "https://tec.openplanner.team/stops/LXhvina2"], ["https://tec.openplanner.team/stops/X741aba", "https://tec.openplanner.team/stops/X758aka"], ["https://tec.openplanner.team/stops/LLGramk3", "https://tec.openplanner.team/stops/LORherl1"], ["https://tec.openplanner.team/stops/H1ju120a", "https://tec.openplanner.team/stops/H1ju120c"], ["https://tec.openplanner.team/stops/LWLhagi2", "https://tec.openplanner.team/stops/LXftche1"], ["https://tec.openplanner.team/stops/X767aha", "https://tec.openplanner.team/stops/X767aja"], ["https://tec.openplanner.team/stops/N501kfb", "https://tec.openplanner.team/stops/N538asa"], ["https://tec.openplanner.team/stops/X939ada", "https://tec.openplanner.team/stops/X939afa"], ["https://tec.openplanner.team/stops/H4ka175b", "https://tec.openplanner.team/stops/H4ka392a"], ["https://tec.openplanner.team/stops/Cobbuze2", "https://tec.openplanner.team/stops/Creoudo1"], ["https://tec.openplanner.team/stops/N110aba", "https://tec.openplanner.team/stops/N124aca"], ["https://tec.openplanner.team/stops/H4ft138a", "https://tec.openplanner.team/stops/H4wu377a"], ["https://tec.openplanner.team/stops/Cbfcham3", "https://tec.openplanner.team/stops/Cbfpauc1"], ["https://tec.openplanner.team/stops/LBhcent1", "https://tec.openplanner.team/stops/LBhcent2"], ["https://tec.openplanner.team/stops/X750bha", "https://tec.openplanner.team/stops/X750bja"], ["https://tec.openplanner.team/stops/Landolh2", "https://tec.openplanner.team/stops/Lanmouf1"], ["https://tec.openplanner.team/stops/H1bo105b", "https://tec.openplanner.team/stops/H1bo108b"], ["https://tec.openplanner.team/stops/LhUdenk2", "https://tec.openplanner.team/stops/LhUkape2"], ["https://tec.openplanner.team/stops/Ljewale1", "https://tec.openplanner.team/stops/Ljewale4"], ["https://tec.openplanner.team/stops/LSPfrai1", "https://tec.openplanner.team/stops/LSPpelz2"], ["https://tec.openplanner.team/stops/H4ty334a", "https://tec.openplanner.team/stops/H4ty345a"], ["https://tec.openplanner.team/stops/X982aua", "https://tec.openplanner.team/stops/X982cab"], ["https://tec.openplanner.team/stops/LLycent*", "https://tec.openplanner.team/stops/LMRmont1"], ["https://tec.openplanner.team/stops/Bperwil2", "https://tec.openplanner.team/stops/NB33aeb"], ["https://tec.openplanner.team/stops/Buccham1", "https://tec.openplanner.team/stops/Buccvoi1"], ["https://tec.openplanner.team/stops/LJAbell2", "https://tec.openplanner.team/stops/LJAbell4"], ["https://tec.openplanner.team/stops/N519akb", "https://tec.openplanner.team/stops/N525agb"], ["https://tec.openplanner.team/stops/N505aha", "https://tec.openplanner.team/stops/N506apb"], ["https://tec.openplanner.team/stops/LSImewi2", "https://tec.openplanner.team/stops/LSInd--2"], ["https://tec.openplanner.team/stops/N539apb", "https://tec.openplanner.team/stops/N539bdb"], ["https://tec.openplanner.team/stops/X664agb", "https://tec.openplanner.team/stops/X664aib"], ["https://tec.openplanner.team/stops/LFsherm2", "https://tec.openplanner.team/stops/LSLabba2"], ["https://tec.openplanner.team/stops/Lfhhosp1", "https://tec.openplanner.team/stops/Lfhweri1"], ["https://tec.openplanner.team/stops/X663aba", "https://tec.openplanner.team/stops/X663acb"], ["https://tec.openplanner.team/stops/H1hb197a", "https://tec.openplanner.team/stops/H1si156a"], ["https://tec.openplanner.team/stops/H2go114b", "https://tec.openplanner.team/stops/H2go119b"], ["https://tec.openplanner.team/stops/H1ca103a", "https://tec.openplanner.team/stops/H3so164a"], ["https://tec.openplanner.team/stops/X359aha", "https://tec.openplanner.team/stops/X359aib"], ["https://tec.openplanner.team/stops/X721aca", "https://tec.openplanner.team/stops/X721akb"], ["https://tec.openplanner.team/stops/N201aed", "https://tec.openplanner.team/stops/N201asb"], ["https://tec.openplanner.team/stops/X804abb", "https://tec.openplanner.team/stops/X804ama"], ["https://tec.openplanner.team/stops/H5pe145a", "https://tec.openplanner.team/stops/H5pe150b"], ["https://tec.openplanner.team/stops/LHCbran2", "https://tec.openplanner.team/stops/LHCpaci1"], ["https://tec.openplanner.team/stops/H1si151a", "https://tec.openplanner.team/stops/H4bo110a"], ["https://tec.openplanner.team/stops/LWZeg--1", "https://tec.openplanner.team/stops/LWZeg--2"], ["https://tec.openplanner.team/stops/N540akb", "https://tec.openplanner.team/stops/N540aoa"], ["https://tec.openplanner.team/stops/H1hr120a", "https://tec.openplanner.team/stops/H1hr121a"], ["https://tec.openplanner.team/stops/Bgzddge1", "https://tec.openplanner.team/stops/Bgzdpis2"], ["https://tec.openplanner.team/stops/Ccychba2", "https://tec.openplanner.team/stops/Crbecol2"], ["https://tec.openplanner.team/stops/X982bva", "https://tec.openplanner.team/stops/X982bwa"], ["https://tec.openplanner.team/stops/Bsmgmar2", "https://tec.openplanner.team/stops/Bsmgpla2"], ["https://tec.openplanner.team/stops/X663asa", "https://tec.openplanner.team/stops/X664amc"], ["https://tec.openplanner.team/stops/Lgrchar1", "https://tec.openplanner.team/stops/Lgrramp2"], ["https://tec.openplanner.team/stops/Cfocmed2", "https://tec.openplanner.team/stops/Cfovent2"], ["https://tec.openplanner.team/stops/LlgOPER1", "https://tec.openplanner.team/stops/LlgOPER2"], ["https://tec.openplanner.team/stops/H4eg104b", "https://tec.openplanner.team/stops/H4ne136a"], ["https://tec.openplanner.team/stops/Cfaplma2", "https://tec.openplanner.team/stops/Cfaysle1"], ["https://tec.openplanner.team/stops/Lsccdor2", "https://tec.openplanner.team/stops/Lscpamp1"], ["https://tec.openplanner.team/stops/Bcer4br1", "https://tec.openplanner.team/stops/Bottpin1"], ["https://tec.openplanner.team/stops/H4ag100a", "https://tec.openplanner.team/stops/H4ag102a"], ["https://tec.openplanner.team/stops/H2hg149a", "https://tec.openplanner.team/stops/H2hg149b"], ["https://tec.openplanner.team/stops/LWRbois2", "https://tec.openplanner.team/stops/LWRheyd1"], ["https://tec.openplanner.team/stops/X618aka", "https://tec.openplanner.team/stops/X618akb"], ["https://tec.openplanner.team/stops/Lsebegu2", "https://tec.openplanner.team/stops/Ltipass2"], ["https://tec.openplanner.team/stops/X750aga", "https://tec.openplanner.team/stops/X750agb"], ["https://tec.openplanner.team/stops/LgRzent1", "https://tec.openplanner.team/stops/LoDscha1"], ["https://tec.openplanner.team/stops/X734aab", "https://tec.openplanner.team/stops/X734acb"], ["https://tec.openplanner.team/stops/H4lz118b", "https://tec.openplanner.team/stops/H4lz126a"], ["https://tec.openplanner.team/stops/X782aab", "https://tec.openplanner.team/stops/X782apa"], ["https://tec.openplanner.team/stops/LHUneuv1", "https://tec.openplanner.team/stops/LHUpost4"], ["https://tec.openplanner.team/stops/LOVeg--2", "https://tec.openplanner.team/stops/LOVhetr1"], ["https://tec.openplanner.team/stops/Bwspcar2", "https://tec.openplanner.team/stops/Bwspmon3"], ["https://tec.openplanner.team/stops/LsVgesc1", "https://tec.openplanner.team/stops/LsVsimo1"], ["https://tec.openplanner.team/stops/Lsweg--1", "https://tec.openplanner.team/stops/Lwaaube1"], ["https://tec.openplanner.team/stops/X756aeb", "https://tec.openplanner.team/stops/X756agd"], ["https://tec.openplanner.team/stops/N501bxa", "https://tec.openplanner.team/stops/N501mia"], ["https://tec.openplanner.team/stops/Bhevwzw1", "https://tec.openplanner.team/stops/Bpecsta1"], ["https://tec.openplanner.team/stops/H1wa149c", "https://tec.openplanner.team/stops/H1wa152a"], ["https://tec.openplanner.team/stops/Boppegl2", "https://tec.openplanner.team/stops/Bsrbbas2"], ["https://tec.openplanner.team/stops/Cgomerm4", "https://tec.openplanner.team/stops/Chprobi1"], ["https://tec.openplanner.team/stops/N236aba", "https://tec.openplanner.team/stops/N254ahb"], ["https://tec.openplanner.team/stops/N553aaa", "https://tec.openplanner.team/stops/N553aka"], ["https://tec.openplanner.team/stops/H1mb138a", "https://tec.openplanner.team/stops/H1mb138b"], ["https://tec.openplanner.team/stops/N501mda", "https://tec.openplanner.team/stops/N501mdb"], ["https://tec.openplanner.team/stops/N501icb", "https://tec.openplanner.team/stops/N501inb"], ["https://tec.openplanner.team/stops/N241aaa", "https://tec.openplanner.team/stops/N585aba"], ["https://tec.openplanner.team/stops/Lrctec-1", "https://tec.openplanner.team/stops/Lrctec-2"], ["https://tec.openplanner.team/stops/Lceembo2", "https://tec.openplanner.team/stops/Lcegare2"], ["https://tec.openplanner.team/stops/H1qv112b", "https://tec.openplanner.team/stops/H1qv116b"], ["https://tec.openplanner.team/stops/X911abb", "https://tec.openplanner.team/stops/X911aob"], ["https://tec.openplanner.team/stops/Cbmind4", "https://tec.openplanner.team/stops/Cbmviv1"], ["https://tec.openplanner.team/stops/H1gr115a", "https://tec.openplanner.team/stops/H1gr115b"], ["https://tec.openplanner.team/stops/X626aka", "https://tec.openplanner.team/stops/X626akb"], ["https://tec.openplanner.team/stops/Cctchav1", "https://tec.openplanner.team/stops/Cplrymo1"], ["https://tec.openplanner.team/stops/X602alb", "https://tec.openplanner.team/stops/X602amb"], ["https://tec.openplanner.team/stops/H4ws159b", "https://tec.openplanner.team/stops/H4ws160b"], ["https://tec.openplanner.team/stops/Crbreve1", "https://tec.openplanner.team/stops/Crbreve2"], ["https://tec.openplanner.team/stops/LHgec--0", "https://tec.openplanner.team/stops/LOMdodi2"], ["https://tec.openplanner.team/stops/Lsemaqu1", "https://tec.openplanner.team/stops/Lsemaqu2"], ["https://tec.openplanner.team/stops/Bsencen1", "https://tec.openplanner.team/stops/Bsensab1"], ["https://tec.openplanner.team/stops/H4tu172b", "https://tec.openplanner.team/stops/H5pe128a"], ["https://tec.openplanner.team/stops/LCxhall2", "https://tec.openplanner.team/stops/LCxhame1"], ["https://tec.openplanner.team/stops/LbUbutg2", "https://tec.openplanner.team/stops/LbUgend1"], ["https://tec.openplanner.team/stops/Csuegli", "https://tec.openplanner.team/stops/Csygare4"], ["https://tec.openplanner.team/stops/X663aob", "https://tec.openplanner.team/stops/X663axb"], ["https://tec.openplanner.team/stops/N501axb", "https://tec.openplanner.team/stops/N501cvb"], ["https://tec.openplanner.team/stops/Llgmarc1", "https://tec.openplanner.team/stops/Llgvelb2"], ["https://tec.openplanner.team/stops/N501dva", "https://tec.openplanner.team/stops/N501ewa"], ["https://tec.openplanner.team/stops/Bwatmgo3", "https://tec.openplanner.team/stops/Bwatsan2"], ["https://tec.openplanner.team/stops/LBLghuy2", "https://tec.openplanner.team/stops/LBLghuy3"], ["https://tec.openplanner.team/stops/LmD27--2", "https://tec.openplanner.team/stops/LmDkirc1"], ["https://tec.openplanner.team/stops/H4es108a", "https://tec.openplanner.team/stops/H4hx120b"], ["https://tec.openplanner.team/stops/LJU493-1", "https://tec.openplanner.team/stops/LJUxhen1"], ["https://tec.openplanner.team/stops/X804aeb", "https://tec.openplanner.team/stops/X804bab"], ["https://tec.openplanner.team/stops/LAMec--1", "https://tec.openplanner.team/stops/LAMrich2"], ["https://tec.openplanner.team/stops/H4mt218a", "https://tec.openplanner.team/stops/H4mt220a"], ["https://tec.openplanner.team/stops/X763aha", "https://tec.openplanner.team/stops/X765aga"], ["https://tec.openplanner.team/stops/N501dba", "https://tec.openplanner.team/stops/N501dbb"], ["https://tec.openplanner.team/stops/X614aib", "https://tec.openplanner.team/stops/X623aia"], ["https://tec.openplanner.team/stops/X669abc", "https://tec.openplanner.team/stops/X669aca"], ["https://tec.openplanner.team/stops/H4hg157a", "https://tec.openplanner.team/stops/H4hg157b"], ["https://tec.openplanner.team/stops/Borbtre2", "https://tec.openplanner.team/stops/Btstpch2"], ["https://tec.openplanner.team/stops/LBEoblu1", "https://tec.openplanner.team/stops/Lemcort2"], ["https://tec.openplanner.team/stops/Bmalper2", "https://tec.openplanner.team/stops/Borbod92"], ["https://tec.openplanner.team/stops/X801cfb", "https://tec.openplanner.team/stops/X801cmb"], ["https://tec.openplanner.team/stops/N141aqb", "https://tec.openplanner.team/stops/N426aaa"], ["https://tec.openplanner.team/stops/X901bka", "https://tec.openplanner.team/stops/X901bnb"], ["https://tec.openplanner.team/stops/X604aha", "https://tec.openplanner.team/stops/X604ahb"], ["https://tec.openplanner.team/stops/LBichat1", "https://tec.openplanner.team/stops/LHCbois1"], ["https://tec.openplanner.team/stops/Cmgbras1", "https://tec.openplanner.team/stops/Cmgvpa"], ["https://tec.openplanner.team/stops/Cjumade3", "https://tec.openplanner.team/stops/CMmade1"], ["https://tec.openplanner.team/stops/H1ms273a", "https://tec.openplanner.team/stops/H1ms289b"], ["https://tec.openplanner.team/stops/LHthest1", "https://tec.openplanner.team/stops/LMemora1"], ["https://tec.openplanner.team/stops/Csubosa1", "https://tec.openplanner.team/stops/Csurela2"], ["https://tec.openplanner.team/stops/H4mv191a", "https://tec.openplanner.team/stops/H4mv196b"], ["https://tec.openplanner.team/stops/N118anc", "https://tec.openplanner.team/stops/N118azb"], ["https://tec.openplanner.team/stops/N110afa", "https://tec.openplanner.team/stops/N110ahb"], ["https://tec.openplanner.team/stops/H1gr110a", "https://tec.openplanner.team/stops/H1gr116a"], ["https://tec.openplanner.team/stops/N209aha", "https://tec.openplanner.team/stops/N209ahb"], ["https://tec.openplanner.team/stops/H4wr173a", "https://tec.openplanner.team/stops/H4wr173c"], ["https://tec.openplanner.team/stops/Btsleco1", "https://tec.openplanner.team/stops/Btsleco2"], ["https://tec.openplanner.team/stops/X639apb", "https://tec.openplanner.team/stops/X639aqa"], ["https://tec.openplanner.team/stops/Cmmadma1", "https://tec.openplanner.team/stops/Cmmegli2"], ["https://tec.openplanner.team/stops/H1hy126a", "https://tec.openplanner.team/stops/H1hy129a"], ["https://tec.openplanner.team/stops/X636ama", "https://tec.openplanner.team/stops/X636amb"], ["https://tec.openplanner.team/stops/X621abb", "https://tec.openplanner.team/stops/X622adb"], ["https://tec.openplanner.team/stops/Clodrio1", "https://tec.openplanner.team/stops/Clomart2"], ["https://tec.openplanner.team/stops/H4mt216a", "https://tec.openplanner.team/stops/H4mt216b"], ["https://tec.openplanner.team/stops/X638aab", "https://tec.openplanner.team/stops/X638abb"], ["https://tec.openplanner.team/stops/Bperwil2", "https://tec.openplanner.team/stops/Btlbegl2"], ["https://tec.openplanner.team/stops/X923apa", "https://tec.openplanner.team/stops/X923aqa"], ["https://tec.openplanner.team/stops/Ccipier2", "https://tec.openplanner.team/stops/Cmtstan2"], ["https://tec.openplanner.team/stops/X223acb", "https://tec.openplanner.team/stops/X261adb"], ["https://tec.openplanner.team/stops/N343ada", "https://tec.openplanner.team/stops/X343ama"], ["https://tec.openplanner.team/stops/LaAhaup1", "https://tec.openplanner.team/stops/LaAnorm2"], ["https://tec.openplanner.team/stops/X811aga", "https://tec.openplanner.team/stops/X811aha"], ["https://tec.openplanner.team/stops/LHolexh1", "https://tec.openplanner.team/stops/LHolexh2"], ["https://tec.openplanner.team/stops/N508ala", "https://tec.openplanner.team/stops/N508alb"], ["https://tec.openplanner.team/stops/N528ahb", "https://tec.openplanner.team/stops/N528aob"], ["https://tec.openplanner.team/stops/Lanrask1", "https://tec.openplanner.team/stops/Llgnaes2"], ["https://tec.openplanner.team/stops/N561aba", "https://tec.openplanner.team/stops/N561afa"], ["https://tec.openplanner.team/stops/Cgyblob1", "https://tec.openplanner.team/stops/Cgylouv1"], ["https://tec.openplanner.team/stops/N522aeb", "https://tec.openplanner.team/stops/N522ajb"], ["https://tec.openplanner.team/stops/N302aea", "https://tec.openplanner.team/stops/N305aba"], ["https://tec.openplanner.team/stops/H2hp114a", "https://tec.openplanner.team/stops/H2ll183b"], ["https://tec.openplanner.team/stops/N117aob", "https://tec.openplanner.team/stops/N117bcd"], ["https://tec.openplanner.team/stops/H4am102d", "https://tec.openplanner.team/stops/H4am113b"], ["https://tec.openplanner.team/stops/N513bia", "https://tec.openplanner.team/stops/N516adb"], ["https://tec.openplanner.team/stops/LHHplac2", "https://tec.openplanner.team/stops/LHHronh2"], ["https://tec.openplanner.team/stops/LCacoop1", "https://tec.openplanner.team/stops/Lfhmarn2"], ["https://tec.openplanner.team/stops/N202aeb", "https://tec.openplanner.team/stops/N202aec"], ["https://tec.openplanner.team/stops/LFsgend1", "https://tec.openplanner.team/stops/LFsgend2"], ["https://tec.openplanner.team/stops/H4oe148b", "https://tec.openplanner.team/stops/H4oe151b"], ["https://tec.openplanner.team/stops/LnN02--1", "https://tec.openplanner.team/stops/LrDhund1"], ["https://tec.openplanner.team/stops/H1ml112a", "https://tec.openplanner.team/stops/H1ne146b"], ["https://tec.openplanner.team/stops/X670apb", "https://tec.openplanner.team/stops/X670aqb"], ["https://tec.openplanner.team/stops/H1hw122b", "https://tec.openplanner.team/stops/H1hw124a"], ["https://tec.openplanner.team/stops/Cgxchan1", "https://tec.openplanner.team/stops/Cgxchan2"], ["https://tec.openplanner.team/stops/LLUreut1", "https://tec.openplanner.team/stops/LLUtill1"], ["https://tec.openplanner.team/stops/H4hu116b", "https://tec.openplanner.team/stops/H4ld127a"], ["https://tec.openplanner.team/stops/H1wl121b", "https://tec.openplanner.team/stops/H1wl125a"], ["https://tec.openplanner.team/stops/H1so135b", "https://tec.openplanner.team/stops/H1so139d"], ["https://tec.openplanner.team/stops/LDOchev1", "https://tec.openplanner.team/stops/LDOviad2"], ["https://tec.openplanner.team/stops/H4hq129b", "https://tec.openplanner.team/stops/H4hs135b"], ["https://tec.openplanner.team/stops/X921abb", "https://tec.openplanner.team/stops/X921anb"], ["https://tec.openplanner.team/stops/X754aub", "https://tec.openplanner.team/stops/X779acb"], ["https://tec.openplanner.team/stops/Clsferr1", "https://tec.openplanner.team/stops/H1ls110a"], ["https://tec.openplanner.team/stops/LRMeg--2", "https://tec.openplanner.team/stops/LRMn58-1"], ["https://tec.openplanner.team/stops/LWOcour1", "https://tec.openplanner.team/stops/LWOcour2"], ["https://tec.openplanner.team/stops/NR38acb", "https://tec.openplanner.team/stops/NR38ada"], ["https://tec.openplanner.team/stops/H2bh120b", "https://tec.openplanner.team/stops/H2mg141b"], ["https://tec.openplanner.team/stops/N874aia", "https://tec.openplanner.team/stops/N874ajb"], ["https://tec.openplanner.team/stops/X390alb", "https://tec.openplanner.team/stops/X991aeb"], ["https://tec.openplanner.team/stops/LAuvici1", "https://tec.openplanner.team/stops/LWRpl--1"], ["https://tec.openplanner.team/stops/H4ty324c", "https://tec.openplanner.team/stops/H4ty353b"], ["https://tec.openplanner.team/stops/X633aia", "https://tec.openplanner.team/stops/X654aia"], ["https://tec.openplanner.team/stops/H1ba100b", "https://tec.openplanner.team/stops/H1ba111b"], ["https://tec.openplanner.team/stops/LSIgera1", "https://tec.openplanner.team/stops/LSIters1"], ["https://tec.openplanner.team/stops/H2hl112b", "https://tec.openplanner.team/stops/H2hl113a"], ["https://tec.openplanner.team/stops/H4wr174b", "https://tec.openplanner.team/stops/H4wr175b"], ["https://tec.openplanner.team/stops/X638aaa", "https://tec.openplanner.team/stops/X638aba"], ["https://tec.openplanner.team/stops/H4he101a", "https://tec.openplanner.team/stops/H4he103a"], ["https://tec.openplanner.team/stops/LSTec--1", "https://tec.openplanner.team/stops/LSTrema2"], ["https://tec.openplanner.team/stops/Bjausan1", "https://tec.openplanner.team/stops/NR21ajb"], ["https://tec.openplanner.team/stops/Bjodath1", "https://tec.openplanner.team/stops/Bjodath2"], ["https://tec.openplanner.team/stops/N501hfb", "https://tec.openplanner.team/stops/N501mwa"], ["https://tec.openplanner.team/stops/LCPcomp1", "https://tec.openplanner.team/stops/LOnec--1"], ["https://tec.openplanner.team/stops/Blinbru2", "https://tec.openplanner.team/stops/Blinhue1"], ["https://tec.openplanner.team/stops/Lgdec--1", "https://tec.openplanner.team/stops/LMhvina1"], ["https://tec.openplanner.team/stops/X612afa", "https://tec.openplanner.team/stops/X626akb"], ["https://tec.openplanner.team/stops/X740aea", "https://tec.openplanner.team/stops/X740afb"], ["https://tec.openplanner.team/stops/N513awa", "https://tec.openplanner.team/stops/N513axb"], ["https://tec.openplanner.team/stops/H4be102b", "https://tec.openplanner.team/stops/H4be104d"], ["https://tec.openplanner.team/stops/LFTcroi2", "https://tec.openplanner.team/stops/LFTeg--2"], ["https://tec.openplanner.team/stops/Cci4092", "https://tec.openplanner.team/stops/Cctlimi1"], ["https://tec.openplanner.team/stops/N106aha", "https://tec.openplanner.team/stops/N106ahb"], ["https://tec.openplanner.team/stops/N584bba", "https://tec.openplanner.team/stops/N584bbb"], ["https://tec.openplanner.team/stops/LLeec--1", "https://tec.openplanner.team/stops/X547abb"], ["https://tec.openplanner.team/stops/LTIdumo1", "https://tec.openplanner.team/stops/LTIpire2"], ["https://tec.openplanner.team/stops/LBgbaga3", "https://tec.openplanner.team/stops/LBgnach1"], ["https://tec.openplanner.team/stops/LSJ38--1", "https://tec.openplanner.team/stops/LSJeg--1"], ["https://tec.openplanner.team/stops/LATabba2", "https://tec.openplanner.team/stops/LATphar2"], ["https://tec.openplanner.team/stops/LHycent*", "https://tec.openplanner.team/stops/LXofans1"], ["https://tec.openplanner.team/stops/Bquebth3", "https://tec.openplanner.team/stops/Bstecou1"], ["https://tec.openplanner.team/stops/Bnivpeu1", "https://tec.openplanner.team/stops/Bnivzep1"], ["https://tec.openplanner.team/stops/Cflsabl1", "https://tec.openplanner.team/stops/Cflvxsa2"], ["https://tec.openplanner.team/stops/Cmygrbr3", "https://tec.openplanner.team/stops/Cmygrbr4"], ["https://tec.openplanner.team/stops/LFNecpr*", "https://tec.openplanner.team/stops/LFNtill1"], ["https://tec.openplanner.team/stops/N229ata", "https://tec.openplanner.team/stops/N540apb"], ["https://tec.openplanner.team/stops/X750bpb", "https://tec.openplanner.team/stops/X784aja"], ["https://tec.openplanner.team/stops/Lstauna2", "https://tec.openplanner.team/stops/Lstbota1"], ["https://tec.openplanner.team/stops/X396afb", "https://tec.openplanner.team/stops/X917ajb"], ["https://tec.openplanner.team/stops/Ctaallo2", "https://tec.openplanner.team/stops/Ctachst2"], ["https://tec.openplanner.team/stops/LPurech1", "https://tec.openplanner.team/stops/LPurech2"], ["https://tec.openplanner.team/stops/Cmx3arb1", "https://tec.openplanner.team/stops/Cmyvesa2"], ["https://tec.openplanner.team/stops/N501iza", "https://tec.openplanner.team/stops/N501izb"], ["https://tec.openplanner.team/stops/Bspkdon2", "https://tec.openplanner.team/stops/Bspkker2"], ["https://tec.openplanner.team/stops/LHheg--1", "https://tec.openplanner.team/stops/LHhelia1"], ["https://tec.openplanner.team/stops/X664aja", "https://tec.openplanner.team/stops/X666aba"], ["https://tec.openplanner.team/stops/X618aba", "https://tec.openplanner.team/stops/X618aka"], ["https://tec.openplanner.team/stops/Bfelequ2", "https://tec.openplanner.team/stops/Bfelrav1"], ["https://tec.openplanner.team/stops/LBAcent1", "https://tec.openplanner.team/stops/LSAchef1"], ["https://tec.openplanner.team/stops/Ljubonf1", "https://tec.openplanner.team/stops/Ljubonf2"], ["https://tec.openplanner.team/stops/Bpte1ma2", "https://tec.openplanner.team/stops/Bptecar1"], ["https://tec.openplanner.team/stops/X512aja", "https://tec.openplanner.team/stops/X713ada"], ["https://tec.openplanner.team/stops/H4oq225a", "https://tec.openplanner.team/stops/H4oq225b"], ["https://tec.openplanner.team/stops/H5rx113b", "https://tec.openplanner.team/stops/H5rx140a"], ["https://tec.openplanner.team/stops/H1ss350a", "https://tec.openplanner.team/stops/H1ss352b"], ["https://tec.openplanner.team/stops/N537aba", "https://tec.openplanner.team/stops/N562bla"], ["https://tec.openplanner.team/stops/N501ahb", "https://tec.openplanner.team/stops/N501aib"], ["https://tec.openplanner.team/stops/LBNgarn2", "https://tec.openplanner.team/stops/LeUgeme2"], ["https://tec.openplanner.team/stops/LkRrauw1", "https://tec.openplanner.team/stops/LrOgara2"], ["https://tec.openplanner.team/stops/H2ch103c", "https://tec.openplanner.team/stops/H2ch105a"], ["https://tec.openplanner.team/stops/NL80aub", "https://tec.openplanner.team/stops/NL80avb"], ["https://tec.openplanner.team/stops/N553abb", "https://tec.openplanner.team/stops/N553abc"], ["https://tec.openplanner.team/stops/LAYcorn1", "https://tec.openplanner.team/stops/LAYgare1"], ["https://tec.openplanner.team/stops/LLegern1", "https://tec.openplanner.team/stops/X548acb"], ["https://tec.openplanner.team/stops/X602abb", "https://tec.openplanner.team/stops/X623ajb"], ["https://tec.openplanner.team/stops/Llgamer3", "https://tec.openplanner.team/stops/Llgrema2"], ["https://tec.openplanner.team/stops/Llianix2", "https://tec.openplanner.team/stops/Llianix3"], ["https://tec.openplanner.team/stops/Llginte1", "https://tec.openplanner.team/stops/Llginte2"], ["https://tec.openplanner.team/stops/Bblamsp4", "https://tec.openplanner.team/stops/Bwatcbo1"], ["https://tec.openplanner.team/stops/Lchacie2", "https://tec.openplanner.team/stops/Lwaelme2"], ["https://tec.openplanner.team/stops/N548ada", "https://tec.openplanner.team/stops/N548asa"], ["https://tec.openplanner.team/stops/N308apa", "https://tec.openplanner.team/stops/N331afd"], ["https://tec.openplanner.team/stops/Cciecol1", "https://tec.openplanner.team/stops/NC02aub"], ["https://tec.openplanner.team/stops/LWNchar2", "https://tec.openplanner.team/stops/NL72afb"], ["https://tec.openplanner.team/stops/LmNstaa1", "https://tec.openplanner.team/stops/LmNstaa2"], ["https://tec.openplanner.team/stops/Bnivall2", "https://tec.openplanner.team/stops/Bnivfra2"], ["https://tec.openplanner.team/stops/X645aaa", "https://tec.openplanner.team/stops/X645aba"], ["https://tec.openplanner.team/stops/H4hg154a", "https://tec.openplanner.team/stops/H4mv189a"], ["https://tec.openplanner.team/stops/LATlena1", "https://tec.openplanner.team/stops/LATpatu2"], ["https://tec.openplanner.team/stops/LaLkirc*", "https://tec.openplanner.team/stops/X793aqa"], ["https://tec.openplanner.team/stops/Bernpla1", "https://tec.openplanner.team/stops/Bwlhpec1"], ["https://tec.openplanner.team/stops/N501iey", "https://tec.openplanner.team/stops/N501ilb"], ["https://tec.openplanner.team/stops/H1go174a", "https://tec.openplanner.team/stops/H1mb138b"], ["https://tec.openplanner.team/stops/LLxalle2", "https://tec.openplanner.team/stops/LLxcana1"], ["https://tec.openplanner.team/stops/Bhenmal2", "https://tec.openplanner.team/stops/Bhenpln2"], ["https://tec.openplanner.team/stops/N501hna", "https://tec.openplanner.team/stops/N501jub"], ["https://tec.openplanner.team/stops/H5fl103a", "https://tec.openplanner.team/stops/H5fl103b"], ["https://tec.openplanner.team/stops/N501afa", "https://tec.openplanner.team/stops/N501afb"], ["https://tec.openplanner.team/stops/LBTcarr4", "https://tec.openplanner.team/stops/LBTfoot2"], ["https://tec.openplanner.team/stops/X808abb", "https://tec.openplanner.team/stops/X808abc"], ["https://tec.openplanner.team/stops/N501axb", "https://tec.openplanner.team/stops/N501bbc"], ["https://tec.openplanner.team/stops/Bborche2", "https://tec.openplanner.team/stops/Bmonbor1"], ["https://tec.openplanner.team/stops/Caindsa1", "https://tec.openplanner.team/stops/Caindsa2"], ["https://tec.openplanner.team/stops/Ljecocc2", "https://tec.openplanner.team/stops/Ljecoqu1"], ["https://tec.openplanner.team/stops/NH01ama", "https://tec.openplanner.team/stops/NH01amb"], ["https://tec.openplanner.team/stops/N509aka", "https://tec.openplanner.team/stops/N509beb"], ["https://tec.openplanner.team/stops/X768ada", "https://tec.openplanner.team/stops/X768ahb"], ["https://tec.openplanner.team/stops/LHhmohe1", "https://tec.openplanner.team/stops/NL68afa"], ["https://tec.openplanner.team/stops/X896adb", "https://tec.openplanner.team/stops/X995aca"], ["https://tec.openplanner.team/stops/LWblesp1", "https://tec.openplanner.team/stops/X713ala"], ["https://tec.openplanner.team/stops/Lkiblan1", "https://tec.openplanner.team/stops/Llgvalu2"], ["https://tec.openplanner.team/stops/X615acb", "https://tec.openplanner.team/stops/X615aua"], ["https://tec.openplanner.team/stops/X746aeb", "https://tec.openplanner.team/stops/X749aea"], ["https://tec.openplanner.team/stops/Blasclo1", "https://tec.openplanner.team/stops/Blascsl1"], ["https://tec.openplanner.team/stops/Lsebico1", "https://tec.openplanner.team/stops/Lseptsa2"], ["https://tec.openplanner.team/stops/Lcegeor1", "https://tec.openplanner.team/stops/Lceleje1"], ["https://tec.openplanner.team/stops/LFyec--1", "https://tec.openplanner.team/stops/LFypont2"], ["https://tec.openplanner.team/stops/X766acb", "https://tec.openplanner.team/stops/X791aca"], ["https://tec.openplanner.team/stops/Berncim4", "https://tec.openplanner.team/stops/Bernegl4"], ["https://tec.openplanner.team/stops/X750bib", "https://tec.openplanner.team/stops/X750bja"], ["https://tec.openplanner.team/stops/X812afa", "https://tec.openplanner.team/stops/X812ata"], ["https://tec.openplanner.team/stops/H1as100b", "https://tec.openplanner.team/stops/H1ci106a"], ["https://tec.openplanner.team/stops/Llgcorn1", "https://tec.openplanner.team/stops/Llgcorn2"], ["https://tec.openplanner.team/stops/H4bc101c", "https://tec.openplanner.team/stops/H5bs103b"], ["https://tec.openplanner.team/stops/Lflprev1", "https://tec.openplanner.team/stops/Lrovand2"], ["https://tec.openplanner.team/stops/LHhelia1", "https://tec.openplanner.team/stops/LHhelia2"], ["https://tec.openplanner.team/stops/LFdeg--2", "https://tec.openplanner.team/stops/LFdeg--3"], ["https://tec.openplanner.team/stops/LSAtrih1", "https://tec.openplanner.team/stops/LSAtrih2"], ["https://tec.openplanner.team/stops/H2hg266b", "https://tec.openplanner.team/stops/H2hg269b"], ["https://tec.openplanner.team/stops/N534aua", "https://tec.openplanner.team/stops/N534aub"], ["https://tec.openplanner.team/stops/X949adb", "https://tec.openplanner.team/stops/X949aga"], ["https://tec.openplanner.team/stops/Bfelequ2", "https://tec.openplanner.team/stops/Bsengma2"], ["https://tec.openplanner.team/stops/LMastat4", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://tec.openplanner.team/stops/Ctychen3", "https://tec.openplanner.team/stops/N137aga"], ["https://tec.openplanner.team/stops/Ljhcarr1", "https://tec.openplanner.team/stops/Ljhsart1"], ["https://tec.openplanner.team/stops/H5fl102a", "https://tec.openplanner.team/stops/H5fl102c"], ["https://tec.openplanner.team/stops/N254afa", "https://tec.openplanner.team/stops/N254aga"], ["https://tec.openplanner.team/stops/H1si162b", "https://tec.openplanner.team/stops/H1si167b"], ["https://tec.openplanner.team/stops/LrEdic11", "https://tec.openplanner.team/stops/LrEkirc1"], ["https://tec.openplanner.team/stops/Becepri2", "https://tec.openplanner.team/stops/H2ec106b"], ["https://tec.openplanner.team/stops/LaMbull1", "https://tec.openplanner.team/stops/LaMhe421"], ["https://tec.openplanner.team/stops/LAmbach1", "https://tec.openplanner.team/stops/LAmvent3"], ["https://tec.openplanner.team/stops/Clrrhau2", "https://tec.openplanner.team/stops/CMpetr2"], ["https://tec.openplanner.team/stops/N103aha", "https://tec.openplanner.team/stops/N103ahb"], ["https://tec.openplanner.team/stops/Bhevcur1", "https://tec.openplanner.team/stops/Bhvlpla1"], ["https://tec.openplanner.team/stops/N566ada", "https://tec.openplanner.team/stops/N566afb"], ["https://tec.openplanner.team/stops/H2re168a", "https://tec.openplanner.team/stops/H2re174a"], ["https://tec.openplanner.team/stops/N551aca", "https://tec.openplanner.team/stops/N551aeb"], ["https://tec.openplanner.team/stops/N540aib", "https://tec.openplanner.team/stops/N540amb"], ["https://tec.openplanner.team/stops/X746aia", "https://tec.openplanner.team/stops/X746aja"], ["https://tec.openplanner.team/stops/Lmlcher1", "https://tec.openplanner.team/stops/Lmlscie2"], ["https://tec.openplanner.team/stops/Cbflong1", "https://tec.openplanner.team/stops/NC02aaa"], ["https://tec.openplanner.team/stops/LaMahof1", "https://tec.openplanner.team/stops/LaMpark2"], ["https://tec.openplanner.team/stops/Bwatcha2", "https://tec.openplanner.team/stops/Bwatfau2"], ["https://tec.openplanner.team/stops/Bnivga51", "https://tec.openplanner.team/stops/Bnivrwi1"], ["https://tec.openplanner.team/stops/Bsences1", "https://tec.openplanner.team/stops/Bsenpeu1"], ["https://tec.openplanner.team/stops/LCacoop1", "https://tec.openplanner.team/stops/LCacoop2"], ["https://tec.openplanner.team/stops/X812aga", "https://tec.openplanner.team/stops/X812aoa"], ["https://tec.openplanner.team/stops/Bcseeco1", "https://tec.openplanner.team/stops/Bcseeco2"], ["https://tec.openplanner.team/stops/LjedTEC2", "https://tec.openplanner.team/stops/Ljegare1"], ["https://tec.openplanner.team/stops/H4ag105b", "https://tec.openplanner.team/stops/H4br110a"], ["https://tec.openplanner.team/stops/X826abb", "https://tec.openplanner.team/stops/X826ahb"], ["https://tec.openplanner.team/stops/N113aea", "https://tec.openplanner.team/stops/N139aba"], ["https://tec.openplanner.team/stops/H1fa121b", "https://tec.openplanner.team/stops/H1pe132b"], ["https://tec.openplanner.team/stops/Csepier1", "https://tec.openplanner.team/stops/Csepote1"], ["https://tec.openplanner.team/stops/X901aoa", "https://tec.openplanner.team/stops/X901apb"], ["https://tec.openplanner.team/stops/LlAdorf1", "https://tec.openplanner.team/stops/LoUzent1"], ["https://tec.openplanner.team/stops/N511aja", "https://tec.openplanner.team/stops/N511asb"], ["https://tec.openplanner.team/stops/N260aea", "https://tec.openplanner.team/stops/N260afb"], ["https://tec.openplanner.team/stops/N135aja", "https://tec.openplanner.team/stops/N135bbb"], ["https://tec.openplanner.team/stops/Llgdelb2", "https://tec.openplanner.team/stops/Llgnati2"], ["https://tec.openplanner.team/stops/LhLbalt1", "https://tec.openplanner.team/stops/LmEdorf1"], ["https://tec.openplanner.team/stops/N550ada", "https://tec.openplanner.team/stops/N550amb"], ["https://tec.openplanner.team/stops/Cgyrdid1", "https://tec.openplanner.team/stops/Cgystbe1"], ["https://tec.openplanner.team/stops/LmNpost2", "https://tec.openplanner.team/stops/LmNstaa2"], ["https://tec.openplanner.team/stops/N101aja", "https://tec.openplanner.team/stops/N101ama"], ["https://tec.openplanner.team/stops/X342ada", "https://tec.openplanner.team/stops/X363aca"], ["https://tec.openplanner.team/stops/X617ahb", "https://tec.openplanner.team/stops/X618ajb"], ["https://tec.openplanner.team/stops/X879aab", "https://tec.openplanner.team/stops/X879acb"], ["https://tec.openplanner.team/stops/N115afb", "https://tec.openplanner.team/stops/N170agb"], ["https://tec.openplanner.team/stops/X720aab", "https://tec.openplanner.team/stops/X721asb"], ["https://tec.openplanner.team/stops/H4br108b", "https://tec.openplanner.team/stops/H4br110b"], ["https://tec.openplanner.team/stops/Bnivbau2", "https://tec.openplanner.team/stops/Bnivfhu1"], ["https://tec.openplanner.team/stops/X224ada", "https://tec.openplanner.team/stops/X224aha"], ["https://tec.openplanner.team/stops/N219acb", "https://tec.openplanner.team/stops/N219afa"], ["https://tec.openplanner.team/stops/LSHhade1", "https://tec.openplanner.team/stops/LSHhade2"], ["https://tec.openplanner.team/stops/X840aca", "https://tec.openplanner.team/stops/X840acb"], ["https://tec.openplanner.team/stops/X923afa", "https://tec.openplanner.team/stops/X923ara"], ["https://tec.openplanner.team/stops/LSGcarr2", "https://tec.openplanner.team/stops/LVEmoul1"], ["https://tec.openplanner.team/stops/H1wl125a", "https://tec.openplanner.team/stops/H1wl126a"], ["https://tec.openplanner.team/stops/LJelava2", "https://tec.openplanner.team/stops/LJesole1"], ["https://tec.openplanner.team/stops/X831aaa", "https://tec.openplanner.team/stops/X831aea"], ["https://tec.openplanner.team/stops/Crbgare1", "https://tec.openplanner.team/stops/Crbrgar2"], ["https://tec.openplanner.team/stops/Cflchap1", "https://tec.openplanner.team/stops/Cflsncb3"], ["https://tec.openplanner.team/stops/X618adb", "https://tec.openplanner.team/stops/X696ada"], ["https://tec.openplanner.team/stops/LLNcime1", "https://tec.openplanner.team/stops/LLNcruc1"], ["https://tec.openplanner.team/stops/X826aca", "https://tec.openplanner.team/stops/X826acb"], ["https://tec.openplanner.team/stops/X823ada", "https://tec.openplanner.team/stops/X823aff"], ["https://tec.openplanner.team/stops/H1gh145a", "https://tec.openplanner.team/stops/H1gh158b"], ["https://tec.openplanner.team/stops/Cmtfoye2", "https://tec.openplanner.team/stops/Cmtgrim1"], ["https://tec.openplanner.team/stops/LBieg--3", "https://tec.openplanner.team/stops/LBivill1"], ["https://tec.openplanner.team/stops/NC14apa", "https://tec.openplanner.team/stops/NC14aua"], ["https://tec.openplanner.team/stops/LHUdelc2", "https://tec.openplanner.team/stops/LHUgdpl1"], ["https://tec.openplanner.team/stops/H4ty302b", "https://tec.openplanner.team/stops/H4ty330c"], ["https://tec.openplanner.team/stops/LSPcomm2", "https://tec.openplanner.team/stops/LSPplat2"], ["https://tec.openplanner.team/stops/LBBcamp1", "https://tec.openplanner.team/stops/LBBlaga1"], ["https://tec.openplanner.team/stops/X601acb", "https://tec.openplanner.team/stops/X601aqb"], ["https://tec.openplanner.team/stops/Lhurigu1", "https://tec.openplanner.team/stops/Lmnhorl3"], ["https://tec.openplanner.team/stops/Bbougbl2", "https://tec.openplanner.team/stops/Btanvil2"], ["https://tec.openplanner.team/stops/H4mo145a", "https://tec.openplanner.team/stops/H4mo165b"], ["https://tec.openplanner.team/stops/Bsdapir1", "https://tec.openplanner.team/stops/Csdpira2"], ["https://tec.openplanner.team/stops/N501eoa", "https://tec.openplanner.team/stops/N501eob"], ["https://tec.openplanner.team/stops/LHegame3", "https://tec.openplanner.team/stops/LOUbleu2"], ["https://tec.openplanner.team/stops/Bbsicas2", "https://tec.openplanner.team/stops/Blilgar1"], ["https://tec.openplanner.team/stops/H5st162b", "https://tec.openplanner.team/stops/H5st168b"], ["https://tec.openplanner.team/stops/Llgatel1", "https://tec.openplanner.team/stops/Llgatel2"], ["https://tec.openplanner.team/stops/H1ca104b", "https://tec.openplanner.team/stops/H1ca184a"], ["https://tec.openplanner.team/stops/LbOre3b2", "https://tec.openplanner.team/stops/LbOvith1"], ["https://tec.openplanner.team/stops/H5rx149a", "https://tec.openplanner.team/stops/H5rx151a"], ["https://tec.openplanner.team/stops/X660aia", "https://tec.openplanner.team/stops/X660aja"], ["https://tec.openplanner.team/stops/Cmyland1", "https://tec.openplanner.team/stops/Cmyland5"], ["https://tec.openplanner.team/stops/Lagptba2", "https://tec.openplanner.team/stops/Lgreg--1"], ["https://tec.openplanner.team/stops/Louairl1", "https://tec.openplanner.team/stops/Lscstan3"], ["https://tec.openplanner.team/stops/Lghmeun3", "https://tec.openplanner.team/stops/Ljetout2"], ["https://tec.openplanner.team/stops/X651aaa", "https://tec.openplanner.team/stops/X651abb"], ["https://tec.openplanner.team/stops/X839afb", "https://tec.openplanner.team/stops/X840abb"], ["https://tec.openplanner.team/stops/X986aca", "https://tec.openplanner.team/stops/X986acb"], ["https://tec.openplanner.team/stops/H1sy138b", "https://tec.openplanner.team/stops/H1sy144c"], ["https://tec.openplanner.team/stops/N215acb", "https://tec.openplanner.team/stops/N261aea"], ["https://tec.openplanner.team/stops/X818aha", "https://tec.openplanner.team/stops/X818ahb"], ["https://tec.openplanner.team/stops/Csedoua2", "https://tec.openplanner.team/stops/Csemacq4"], ["https://tec.openplanner.team/stops/Lhrmine1", "https://tec.openplanner.team/stops/Lhrmine2"], ["https://tec.openplanner.team/stops/LNCdoma2", "https://tec.openplanner.team/stops/LNCdoma3"], ["https://tec.openplanner.team/stops/Ccupdes2", "https://tec.openplanner.team/stops/Ccupetp1"], ["https://tec.openplanner.team/stops/Buccpor1", "https://tec.openplanner.team/stops/Buccpor2"], ["https://tec.openplanner.team/stops/LTNegli2", "https://tec.openplanner.team/stops/LTNsarl2"], ["https://tec.openplanner.team/stops/Bcsegar1", "https://tec.openplanner.team/stops/Bmoufil2"], ["https://tec.openplanner.team/stops/N512aib", "https://tec.openplanner.team/stops/NL68adb"], ["https://tec.openplanner.team/stops/H1hr116b", "https://tec.openplanner.team/stops/H1hr128c"], ["https://tec.openplanner.team/stops/N513arb", "https://tec.openplanner.team/stops/N513axb"], ["https://tec.openplanner.team/stops/H2gy101b", "https://tec.openplanner.team/stops/H2gy109b"], ["https://tec.openplanner.team/stops/LGLchap2", "https://tec.openplanner.team/stops/LGLgare*"], ["https://tec.openplanner.team/stops/N539bcb", "https://tec.openplanner.team/stops/N540arb"], ["https://tec.openplanner.team/stops/LEBeg--2", "https://tec.openplanner.team/stops/LWOrout2"], ["https://tec.openplanner.team/stops/NL78ada", "https://tec.openplanner.team/stops/NL78adb"], ["https://tec.openplanner.team/stops/LPutins2", "https://tec.openplanner.team/stops/LrDschl2"], ["https://tec.openplanner.team/stops/X619aea", "https://tec.openplanner.team/stops/X619aeb"], ["https://tec.openplanner.team/stops/H1bb119b", "https://tec.openplanner.team/stops/H1bb120a"], ["https://tec.openplanner.team/stops/X836adb", "https://tec.openplanner.team/stops/X836aea"], ["https://tec.openplanner.team/stops/N538axb", "https://tec.openplanner.team/stops/N538bbb"], ["https://tec.openplanner.team/stops/H2pe155b", "https://tec.openplanner.team/stops/H2pe159b"], ["https://tec.openplanner.team/stops/LHUec--2", "https://tec.openplanner.team/stops/LHUfonc2"], ["https://tec.openplanner.team/stops/Lvisere2", "https://tec.openplanner.team/stops/Lviweri2"], ["https://tec.openplanner.team/stops/N501ffa", "https://tec.openplanner.team/stops/N501fqa"], ["https://tec.openplanner.team/stops/N343aib", "https://tec.openplanner.team/stops/X345aca"], ["https://tec.openplanner.team/stops/LVSeg--2", "https://tec.openplanner.team/stops/LVStige1"], ["https://tec.openplanner.team/stops/Llgcham4", "https://tec.openplanner.team/stops/Llgmulh2"], ["https://tec.openplanner.team/stops/X512aia", "https://tec.openplanner.team/stops/X595aac"], ["https://tec.openplanner.team/stops/N548aga", "https://tec.openplanner.team/stops/N548aia"], ["https://tec.openplanner.team/stops/Cjucouc1", "https://tec.openplanner.team/stops/Clooues4"], ["https://tec.openplanner.team/stops/LWibare2", "https://tec.openplanner.team/stops/LWieg--*"], ["https://tec.openplanner.team/stops/N573ahb", "https://tec.openplanner.team/stops/N573aib"], ["https://tec.openplanner.team/stops/X790aca", "https://tec.openplanner.team/stops/X790aeb"], ["https://tec.openplanner.team/stops/X781aga", "https://tec.openplanner.team/stops/X781ahb"], ["https://tec.openplanner.team/stops/H1gy112a", "https://tec.openplanner.team/stops/H1gy113a"], ["https://tec.openplanner.team/stops/LScchpl1", "https://tec.openplanner.team/stops/LSceg--3"], ["https://tec.openplanner.team/stops/H4vx363a", "https://tec.openplanner.team/stops/H4vx366a"], ["https://tec.openplanner.team/stops/X754axa", "https://tec.openplanner.team/stops/X754aza"], ["https://tec.openplanner.team/stops/X542aaa", "https://tec.openplanner.team/stops/X542acb"], ["https://tec.openplanner.team/stops/Bgnvoha1", "https://tec.openplanner.team/stops/Bgnvoha6"], ["https://tec.openplanner.team/stops/LhP25--1", "https://tec.openplanner.team/stops/LmImirf2"], ["https://tec.openplanner.team/stops/H1cu114b", "https://tec.openplanner.team/stops/H1cu131b"], ["https://tec.openplanner.team/stops/H4po126a", "https://tec.openplanner.team/stops/H4po126b"], ["https://tec.openplanner.team/stops/H1hn203b", "https://tec.openplanner.team/stops/H1ms312b"], ["https://tec.openplanner.team/stops/Csecout2", "https://tec.openplanner.team/stops/Csepost2"], ["https://tec.openplanner.team/stops/Cfrcoop4", "https://tec.openplanner.team/stops/Cfrtry1"], ["https://tec.openplanner.team/stops/H1mb136b", "https://tec.openplanner.team/stops/H1mb138b"], ["https://tec.openplanner.team/stops/H4ss153a", "https://tec.openplanner.team/stops/H4ss153b"], ["https://tec.openplanner.team/stops/X818aia", "https://tec.openplanner.team/stops/X822ahb"], ["https://tec.openplanner.team/stops/N547aab", "https://tec.openplanner.team/stops/N547abb"], ["https://tec.openplanner.team/stops/LeLkalt1", "https://tec.openplanner.team/stops/LeLsied2"], ["https://tec.openplanner.team/stops/H1ba102a", "https://tec.openplanner.team/stops/H1ba106b"], ["https://tec.openplanner.team/stops/Bosqcar1", "https://tec.openplanner.team/stops/Bvirduj2"], ["https://tec.openplanner.team/stops/LHaeg--1", "https://tec.openplanner.team/stops/LHanest2"], ["https://tec.openplanner.team/stops/X982caa", "https://tec.openplanner.team/stops/X982cab"], ["https://tec.openplanner.team/stops/N204ajb", "https://tec.openplanner.team/stops/N204alb"], ["https://tec.openplanner.team/stops/H1er107a", "https://tec.openplanner.team/stops/H1er112a"], ["https://tec.openplanner.team/stops/LFHsucr2", "https://tec.openplanner.team/stops/LHolexh1"], ["https://tec.openplanner.team/stops/LbTkran2", "https://tec.openplanner.team/stops/LbTmons2"], ["https://tec.openplanner.team/stops/LXhhaka1", "https://tec.openplanner.team/stops/LXhhaka2"], ["https://tec.openplanner.team/stops/Ctrstro1", "https://tec.openplanner.team/stops/H2tz120a"], ["https://tec.openplanner.team/stops/Brsgfbl1", "https://tec.openplanner.team/stops/Brsgfbl3"], ["https://tec.openplanner.team/stops/Lfhchaf1", "https://tec.openplanner.team/stops/Livpost2"], ["https://tec.openplanner.team/stops/Bbalvil1", "https://tec.openplanner.team/stops/N530agb"], ["https://tec.openplanner.team/stops/Bblague2", "https://tec.openplanner.team/stops/Bblahop1"], ["https://tec.openplanner.team/stops/H4es111b", "https://tec.openplanner.team/stops/H4ln129b"], ["https://tec.openplanner.team/stops/Bgzddfh2", "https://tec.openplanner.team/stops/Bgzdegl4"], ["https://tec.openplanner.team/stops/LrAgier2", "https://tec.openplanner.team/stops/LrAputz1"], ["https://tec.openplanner.team/stops/N120afa", "https://tec.openplanner.team/stops/N120anb"], ["https://tec.openplanner.team/stops/Cnacroc2", "https://tec.openplanner.team/stops/Cnanoir2"], ["https://tec.openplanner.team/stops/Cmafafe1", "https://tec.openplanner.team/stops/Cmafafe2"], ["https://tec.openplanner.team/stops/X718aea", "https://tec.openplanner.team/stops/X718aha"], ["https://tec.openplanner.team/stops/H1wi152a", "https://tec.openplanner.team/stops/H1wi152c"], ["https://tec.openplanner.team/stops/H4do108a", "https://tec.openplanner.team/stops/H4eh100b"], ["https://tec.openplanner.team/stops/N529adb", "https://tec.openplanner.team/stops/N529aia"], ["https://tec.openplanner.team/stops/X601cba", "https://tec.openplanner.team/stops/X601cca"], ["https://tec.openplanner.team/stops/H5pe129b", "https://tec.openplanner.team/stops/H5pe149a"], ["https://tec.openplanner.team/stops/X615ayb", "https://tec.openplanner.team/stops/X615bgb"], ["https://tec.openplanner.team/stops/X602acb", "https://tec.openplanner.team/stops/X602afa"], ["https://tec.openplanner.team/stops/Bhen5ma1", "https://tec.openplanner.team/stops/Bhenfer1"], ["https://tec.openplanner.team/stops/LRIhous1", "https://tec.openplanner.team/stops/LVIlore2"], ["https://tec.openplanner.team/stops/X613ada", "https://tec.openplanner.team/stops/X613adb"], ["https://tec.openplanner.team/stops/LHYec--1", "https://tec.openplanner.team/stops/LHYec--2"], ["https://tec.openplanner.team/stops/Barcast2", "https://tec.openplanner.team/stops/Bgzdcwa2"], ["https://tec.openplanner.team/stops/LMHcant2", "https://tec.openplanner.team/stops/NL73adb"], ["https://tec.openplanner.team/stops/LhEbruc2", "https://tec.openplanner.team/stops/LhEcolo1"], ["https://tec.openplanner.team/stops/H1gr122b", "https://tec.openplanner.team/stops/H1mk116b"], ["https://tec.openplanner.team/stops/Bmrllgr2", "https://tec.openplanner.team/stops/Bpiehte2"], ["https://tec.openplanner.team/stops/LLAbure1", "https://tec.openplanner.team/stops/LLAvi651"], ["https://tec.openplanner.team/stops/X347aja", "https://tec.openplanner.team/stops/X890aea"], ["https://tec.openplanner.team/stops/N232bja", "https://tec.openplanner.team/stops/N261ada"], ["https://tec.openplanner.team/stops/H2mg143a", "https://tec.openplanner.team/stops/H2mg143b"], ["https://tec.openplanner.team/stops/LGHplai2", "https://tec.openplanner.team/stops/X542aea"], ["https://tec.openplanner.team/stops/X723aeb", "https://tec.openplanner.team/stops/X765aab"], ["https://tec.openplanner.team/stops/Bhenfer2", "https://tec.openplanner.team/stops/Bhenfla1"], ["https://tec.openplanner.team/stops/LmDkoel1", "https://tec.openplanner.team/stops/LmDkoel2"], ["https://tec.openplanner.team/stops/Bgercen2", "https://tec.openplanner.team/stops/Bgermco1"], ["https://tec.openplanner.team/stops/Brsgleq2", "https://tec.openplanner.team/stops/Buccpes1"], ["https://tec.openplanner.team/stops/Llmhalt1", "https://tec.openplanner.team/stops/Llmhalt2"], ["https://tec.openplanner.team/stops/LWbburn1", "https://tec.openplanner.team/stops/X512aia"], ["https://tec.openplanner.team/stops/N539acb", "https://tec.openplanner.team/stops/N539aja"], ["https://tec.openplanner.team/stops/Lhrespe2", "https://tec.openplanner.team/stops/Lhrpwan2"], ["https://tec.openplanner.team/stops/H2mg136a", "https://tec.openplanner.team/stops/H2mg140b"], ["https://tec.openplanner.team/stops/X728ada", "https://tec.openplanner.team/stops/X746ama"], ["https://tec.openplanner.team/stops/H4wn123a", "https://tec.openplanner.team/stops/H4wn123b"], ["https://tec.openplanner.team/stops/LBkbamb1", "https://tec.openplanner.team/stops/LkEl3251"], ["https://tec.openplanner.team/stops/NL74aca", "https://tec.openplanner.team/stops/NL74acb"], ["https://tec.openplanner.team/stops/NL76aha", "https://tec.openplanner.team/stops/NL76aia"], ["https://tec.openplanner.team/stops/Clihame1", "https://tec.openplanner.team/stops/Ctmmonu2"], ["https://tec.openplanner.team/stops/LSGbail2", "https://tec.openplanner.team/stops/LSGcent2"], ["https://tec.openplanner.team/stops/LkAkirc2", "https://tec.openplanner.team/stops/LkAsonn1"], ["https://tec.openplanner.team/stops/Ccaegli1", "https://tec.openplanner.team/stops/Ccaegli4"], ["https://tec.openplanner.team/stops/X364aab", "https://tec.openplanner.team/stops/X371ajb"], ["https://tec.openplanner.team/stops/H1hn202b", "https://tec.openplanner.team/stops/H1hn203b"], ["https://tec.openplanner.team/stops/Cmonvci1", "https://tec.openplanner.team/stops/Cmoprov2"], ["https://tec.openplanner.team/stops/H1au113a", "https://tec.openplanner.team/stops/H1au114a"], ["https://tec.openplanner.team/stops/H4hn113b", "https://tec.openplanner.team/stops/H4hn114b"], ["https://tec.openplanner.team/stops/NL68aab", "https://tec.openplanner.team/stops/NL68acb"], ["https://tec.openplanner.team/stops/Cchsud12", "https://tec.openplanner.team/stops/NC01aab"], ["https://tec.openplanner.team/stops/LAmarbo1", "https://tec.openplanner.team/stops/LAmcorn2"], ["https://tec.openplanner.team/stops/Bnetrbr2", "https://tec.openplanner.team/stops/Bnetrtb2"], ["https://tec.openplanner.team/stops/Cbmplac2", "https://tec.openplanner.team/stops/Cbmzoni2"], ["https://tec.openplanner.team/stops/LHUalbe1", "https://tec.openplanner.team/stops/LHUalbe2"], ["https://tec.openplanner.team/stops/N513atb", "https://tec.openplanner.team/stops/N520aha"], ["https://tec.openplanner.team/stops/Ladegli2", "https://tec.openplanner.team/stops/Lveptre2"], ["https://tec.openplanner.team/stops/LWApr%C3%A9s4", "https://tec.openplanner.team/stops/LWAwegg2"], ["https://tec.openplanner.team/stops/H1cu119b", "https://tec.openplanner.team/stops/H1je212b"], ["https://tec.openplanner.team/stops/Bnodeco1", "https://tec.openplanner.team/stops/Bnodtir4"], ["https://tec.openplanner.team/stops/H1er105b", "https://tec.openplanner.team/stops/H1er107a"], ["https://tec.openplanner.team/stops/H5bl117a", "https://tec.openplanner.team/stops/H5bl118a"], ["https://tec.openplanner.team/stops/LHGbeur1", "https://tec.openplanner.team/stops/LVlplan2"], ["https://tec.openplanner.team/stops/Cmewaya1", "https://tec.openplanner.team/stops/Cmewaya2"], ["https://tec.openplanner.team/stops/LhOokat2", "https://tec.openplanner.team/stops/LhZkape1"], ["https://tec.openplanner.team/stops/X808aab", "https://tec.openplanner.team/stops/X808amb"], ["https://tec.openplanner.team/stops/LERpouh1", "https://tec.openplanner.team/stops/LHrbast1"], ["https://tec.openplanner.team/stops/N203aeb", "https://tec.openplanner.team/stops/N204agb"], ["https://tec.openplanner.team/stops/Lmoboeu1", "https://tec.openplanner.team/stops/Lmoknae1"], ["https://tec.openplanner.team/stops/H4fl114b", "https://tec.openplanner.team/stops/H4fl179a"], ["https://tec.openplanner.team/stops/N331aga", "https://tec.openplanner.team/stops/N331ahb"], ["https://tec.openplanner.team/stops/Bhalalb2", "https://tec.openplanner.team/stops/Bhalgar1"], ["https://tec.openplanner.team/stops/H4ru239a", "https://tec.openplanner.team/stops/H4ru245b"], ["https://tec.openplanner.team/stops/N544agb", "https://tec.openplanner.team/stops/N545abb"], ["https://tec.openplanner.team/stops/Lghalle1", "https://tec.openplanner.team/stops/Lghterm*"], ["https://tec.openplanner.team/stops/H4ga162a", "https://tec.openplanner.team/stops/H4ga164a"], ["https://tec.openplanner.team/stops/N551acb", "https://tec.openplanner.team/stops/N577aha"], ["https://tec.openplanner.team/stops/LPRcha-*", "https://tec.openplanner.team/stops/LPRmc--3"], ["https://tec.openplanner.team/stops/Csefour1", "https://tec.openplanner.team/stops/NH01apa"], ["https://tec.openplanner.team/stops/X625aba", "https://tec.openplanner.team/stops/X625aea"], ["https://tec.openplanner.team/stops/H4oe147b", "https://tec.openplanner.team/stops/H4oe152a"], ["https://tec.openplanner.team/stops/H4ne131a", "https://tec.openplanner.team/stops/H4te251a"], ["https://tec.openplanner.team/stops/Bbchgod1", "https://tec.openplanner.team/stops/Bcbqa361"], ["https://tec.openplanner.team/stops/H2lc168a", "https://tec.openplanner.team/stops/H2ll200a"], ["https://tec.openplanner.team/stops/N232aia", "https://tec.openplanner.team/stops/N232cda"], ["https://tec.openplanner.team/stops/LFLcarr1", "https://tec.openplanner.team/stops/LFLcarr2"], ["https://tec.openplanner.team/stops/H4bl105b", "https://tec.openplanner.team/stops/H4ga160a"], ["https://tec.openplanner.team/stops/N111aaa", "https://tec.openplanner.team/stops/N113aba"], ["https://tec.openplanner.team/stops/X605acb", "https://tec.openplanner.team/stops/X605adb"], ["https://tec.openplanner.team/stops/LBMecol2", "https://tec.openplanner.team/stops/X982bqa"], ["https://tec.openplanner.team/stops/X623aia", "https://tec.openplanner.team/stops/X624aaa"], ["https://tec.openplanner.team/stops/LRRandr2", "https://tec.openplanner.team/stops/LRRoser2"], ["https://tec.openplanner.team/stops/LBItnt-*", "https://tec.openplanner.team/stops/Lmlrosa1"], ["https://tec.openplanner.team/stops/Bnivpeu2", "https://tec.openplanner.team/stops/Bnivsto1"], ["https://tec.openplanner.team/stops/X992aac", "https://tec.openplanner.team/stops/X992aca"], ["https://tec.openplanner.team/stops/H4fr393a", "https://tec.openplanner.team/stops/H4ka188a"], ["https://tec.openplanner.team/stops/Lvebiol1", "https://tec.openplanner.team/stops/Lvepala5"], ["https://tec.openplanner.team/stops/H1cd112b", "https://tec.openplanner.team/stops/H1cd113b"], ["https://tec.openplanner.team/stops/X634aab", "https://tec.openplanner.team/stops/X634abb"], ["https://tec.openplanner.team/stops/Bottcli2", "https://tec.openplanner.team/stops/Bottegl3"], ["https://tec.openplanner.team/stops/Bheneco1", "https://tec.openplanner.team/stops/Bheneco2"], ["https://tec.openplanner.team/stops/H1ni316b", "https://tec.openplanner.team/stops/H1ni319b"], ["https://tec.openplanner.team/stops/X937aab", "https://tec.openplanner.team/stops/X939ahb"], ["https://tec.openplanner.team/stops/Ccabois1", "https://tec.openplanner.team/stops/Ccabois2"], ["https://tec.openplanner.team/stops/X717aba", "https://tec.openplanner.team/stops/X782ada"], ["https://tec.openplanner.team/stops/LRUhama2", "https://tec.openplanner.team/stops/LTymahr1"], ["https://tec.openplanner.team/stops/H4ty336b", "https://tec.openplanner.team/stops/H4ty345a"], ["https://tec.openplanner.team/stops/Llglys-1", "https://tec.openplanner.team/stops/Llglys-2"], ["https://tec.openplanner.team/stops/Cfaauln2", "https://tec.openplanner.team/stops/Cfabaty1"], ["https://tec.openplanner.team/stops/Llgaba-1", "https://tec.openplanner.team/stops/Llgcouv4"], ["https://tec.openplanner.team/stops/Cdametr2", "https://tec.openplanner.team/stops/Cdaptca1"], ["https://tec.openplanner.team/stops/N141alb", "https://tec.openplanner.team/stops/N143aaa"], ["https://tec.openplanner.team/stops/H2ch104b", "https://tec.openplanner.team/stops/H2ch110a"], ["https://tec.openplanner.team/stops/H1so135c", "https://tec.openplanner.team/stops/H1so145a"], ["https://tec.openplanner.team/stops/LHGbeur2", "https://tec.openplanner.team/stops/LHGikea1"], ["https://tec.openplanner.team/stops/N509aob", "https://tec.openplanner.team/stops/N509arb"], ["https://tec.openplanner.team/stops/X725bfa", "https://tec.openplanner.team/stops/X767aib"], ["https://tec.openplanner.team/stops/N501atb", "https://tec.openplanner.team/stops/N501bab"], ["https://tec.openplanner.team/stops/H1ro134a", "https://tec.openplanner.team/stops/H1ro134b"], ["https://tec.openplanner.team/stops/H4ta130a", "https://tec.openplanner.team/stops/H4ta130b"], ["https://tec.openplanner.team/stops/H4an105a", "https://tec.openplanner.team/stops/H4rs117a"], ["https://tec.openplanner.team/stops/Llghoch2", "https://tec.openplanner.team/stops/Llgmart1"], ["https://tec.openplanner.team/stops/Bettcha1", "https://tec.openplanner.team/stops/Bettcha3"], ["https://tec.openplanner.team/stops/LrEborn2", "https://tec.openplanner.team/stops/LrEkais1"], ["https://tec.openplanner.team/stops/H1ms263b", "https://tec.openplanner.team/stops/H1ms269b"], ["https://tec.openplanner.team/stops/N517aea", "https://tec.openplanner.team/stops/N517afa"], ["https://tec.openplanner.team/stops/H1gn152a", "https://tec.openplanner.team/stops/H1ol146b"], ["https://tec.openplanner.team/stops/Lcepepi2", "https://tec.openplanner.team/stops/Lgrcral1"], ["https://tec.openplanner.team/stops/LREraph1", "https://tec.openplanner.team/stops/LREraph2"], ["https://tec.openplanner.team/stops/H1ht131a", "https://tec.openplanner.team/stops/H1ht131b"], ["https://tec.openplanner.team/stops/Lghflot2", "https://tec.openplanner.team/stops/Lghflot4"], ["https://tec.openplanner.team/stops/Bcsegar1", "https://tec.openplanner.team/stops/Bcsemon2"], ["https://tec.openplanner.team/stops/X947acb", "https://tec.openplanner.team/stops/X947afa"], ["https://tec.openplanner.team/stops/N501kma", "https://tec.openplanner.team/stops/N501kmz"], ["https://tec.openplanner.team/stops/H4rm107c", "https://tec.openplanner.team/stops/H4rm113b"], ["https://tec.openplanner.team/stops/Lmaelhe1", "https://tec.openplanner.team/stops/LPRfond2"], ["https://tec.openplanner.team/stops/LCxbeau2", "https://tec.openplanner.team/stops/LCxeg--1"], ["https://tec.openplanner.team/stops/Lemmath2", "https://tec.openplanner.team/stops/Lemsart2"], ["https://tec.openplanner.team/stops/LLNcruc2", "https://tec.openplanner.team/stops/LLNeg--1"], ["https://tec.openplanner.team/stops/LAMhaut2", "https://tec.openplanner.team/stops/LAMvert1"], ["https://tec.openplanner.team/stops/Bsampli2", "https://tec.openplanner.team/stops/NC12aab"], ["https://tec.openplanner.team/stops/LMOc50-1", "https://tec.openplanner.team/stops/LMOlens3"], ["https://tec.openplanner.team/stops/Cfrmoul2", "https://tec.openplanner.team/stops/Cliburl2"], ["https://tec.openplanner.team/stops/Crofrio1", "https://tec.openplanner.team/stops/Crorpai1"], ["https://tec.openplanner.team/stops/LmDgeme1", "https://tec.openplanner.team/stops/LmDkape1"], ["https://tec.openplanner.team/stops/LBGroma1", "https://tec.openplanner.team/stops/LBGroma2"], ["https://tec.openplanner.team/stops/Cgrgrce2", "https://tec.openplanner.team/stops/N160aea"], ["https://tec.openplanner.team/stops/N557aeb", "https://tec.openplanner.team/stops/N560abb"], ["https://tec.openplanner.team/stops/X952aca", "https://tec.openplanner.team/stops/X952ahb"], ["https://tec.openplanner.team/stops/H5rx139a", "https://tec.openplanner.team/stops/H5rx145a"], ["https://tec.openplanner.team/stops/Cdahtvi1", "https://tec.openplanner.team/stops/Cdamare1"], ["https://tec.openplanner.team/stops/Lhrdeme4", "https://tec.openplanner.team/stops/Lhrhome2"], ["https://tec.openplanner.team/stops/LFypfei1", "https://tec.openplanner.team/stops/LwYkreu1"], ["https://tec.openplanner.team/stops/LLrbano1", "https://tec.openplanner.team/stops/LLrjeho1"], ["https://tec.openplanner.team/stops/LFPdeme1", "https://tec.openplanner.team/stops/LFPzwaa2"], ["https://tec.openplanner.team/stops/LBTchai1", "https://tec.openplanner.team/stops/LBTxhen1"], ["https://tec.openplanner.team/stops/LLUtrol1", "https://tec.openplanner.team/stops/LLUvent6"], ["https://tec.openplanner.team/stops/NL72afa", "https://tec.openplanner.team/stops/NL76acb"], ["https://tec.openplanner.team/stops/H4tp145b", "https://tec.openplanner.team/stops/H4tp147a"], ["https://tec.openplanner.team/stops/N529aea", "https://tec.openplanner.team/stops/N576ama"], ["https://tec.openplanner.team/stops/Bpiehvi1", "https://tec.openplanner.team/stops/Bpielon1"], ["https://tec.openplanner.team/stops/LBEcroi2", "https://tec.openplanner.team/stops/LBEtroo2"], ["https://tec.openplanner.team/stops/Lhrchar3", "https://tec.openplanner.team/stops/Lhrchar4"], ["https://tec.openplanner.team/stops/N118apa", "https://tec.openplanner.team/stops/N118aqa"], ["https://tec.openplanner.team/stops/LFTec--2", "https://tec.openplanner.team/stops/LFTeg--1"], ["https://tec.openplanner.team/stops/LSZarze4", "https://tec.openplanner.team/stops/LSZsolw4"], ["https://tec.openplanner.team/stops/Bwaakap1", "https://tec.openplanner.team/stops/Bwaanwi2"], ["https://tec.openplanner.team/stops/X901aja", "https://tec.openplanner.team/stops/X901aqa"], ["https://tec.openplanner.team/stops/X687ada", "https://tec.openplanner.team/stops/X687afa"], ["https://tec.openplanner.team/stops/Cbmind2", "https://tec.openplanner.team/stops/Cbmind4"], ["https://tec.openplanner.team/stops/Lhuderu1", "https://tec.openplanner.team/stops/Lhueg--2"], ["https://tec.openplanner.team/stops/LVIecol1", "https://tec.openplanner.team/stops/LVIecol2"], ["https://tec.openplanner.team/stops/Bpecdel1", "https://tec.openplanner.team/stops/Bpecvme1"], ["https://tec.openplanner.team/stops/X840aea", "https://tec.openplanner.team/stops/X840aeb"], ["https://tec.openplanner.team/stops/X641ada", "https://tec.openplanner.team/stops/X641ajb"], ["https://tec.openplanner.team/stops/H2le153a", "https://tec.openplanner.team/stops/H2ml113a"], ["https://tec.openplanner.team/stops/X644aca", "https://tec.openplanner.team/stops/X644ada"], ["https://tec.openplanner.team/stops/Llglonh1", "https://tec.openplanner.team/stops/LlgOPER5"], ["https://tec.openplanner.team/stops/Blimbet3", "https://tec.openplanner.team/stops/Bottpre2"], ["https://tec.openplanner.team/stops/X938adb", "https://tec.openplanner.team/stops/X939aga"], ["https://tec.openplanner.team/stops/H1fr112a", "https://tec.openplanner.team/stops/H1fr127a"], ["https://tec.openplanner.team/stops/LhUrich1", "https://tec.openplanner.team/stops/LmUkape1"], ["https://tec.openplanner.team/stops/Bclgegl2", "https://tec.openplanner.team/stops/Bnilreg2"], ["https://tec.openplanner.team/stops/H4pi133b", "https://tec.openplanner.team/stops/H4ws160b"], ["https://tec.openplanner.team/stops/Cstbasc1", "https://tec.openplanner.team/stops/Cstbasc2"], ["https://tec.openplanner.team/stops/X641aba", "https://tec.openplanner.team/stops/X641alb"], ["https://tec.openplanner.team/stops/LRRlimi1", "https://tec.openplanner.team/stops/LRRlimi2"], ["https://tec.openplanner.team/stops/LhOfrie1", "https://tec.openplanner.team/stops/LhOzent1"], ["https://tec.openplanner.team/stops/X725aya", "https://tec.openplanner.team/stops/X725bab"], ["https://tec.openplanner.team/stops/X941aba", "https://tec.openplanner.team/stops/X941ada"], ["https://tec.openplanner.team/stops/H5rx115a", "https://tec.openplanner.team/stops/H5rx129b"], ["https://tec.openplanner.team/stops/X725aib", "https://tec.openplanner.team/stops/X725ajb"], ["https://tec.openplanner.team/stops/LBjflor2", "https://tec.openplanner.team/stops/X576aib"], ["https://tec.openplanner.team/stops/Ladboti2", "https://tec.openplanner.team/stops/Ladotto2"], ["https://tec.openplanner.team/stops/Cblcent2", "https://tec.openplanner.team/stops/Cmbcime4"], ["https://tec.openplanner.team/stops/Cnachat1", "https://tec.openplanner.team/stops/Cnachat2"], ["https://tec.openplanner.team/stops/H4we137c", "https://tec.openplanner.team/stops/H4we137d"], ["https://tec.openplanner.team/stops/H4fr139a", "https://tec.openplanner.team/stops/H4fr146a"], ["https://tec.openplanner.team/stops/LeYauss1", "https://tec.openplanner.team/stops/LeYauss2"], ["https://tec.openplanner.team/stops/X601bla", "https://tec.openplanner.team/stops/X612aba"], ["https://tec.openplanner.team/stops/LAascie2", "https://tec.openplanner.team/stops/X261adb"], ["https://tec.openplanner.team/stops/Cgyplst2", "https://tec.openplanner.team/stops/CMmarab1"], ["https://tec.openplanner.team/stops/H4br110a", "https://tec.openplanner.team/stops/H4cl112a"], ["https://tec.openplanner.team/stops/LvAkirc1", "https://tec.openplanner.team/stops/LvAkirc2"], ["https://tec.openplanner.team/stops/Lrchype1", "https://tec.openplanner.team/stops/Lrctec-1"], ["https://tec.openplanner.team/stops/H2lc145b", "https://tec.openplanner.team/stops/H2lc146a"], ["https://tec.openplanner.team/stops/N534ata", "https://tec.openplanner.team/stops/N534atb"], ["https://tec.openplanner.team/stops/Loualbe2", "https://tec.openplanner.team/stops/Louvira1"], ["https://tec.openplanner.team/stops/H3bi100a", "https://tec.openplanner.team/stops/H3bi119a"], ["https://tec.openplanner.team/stops/N506abb", "https://tec.openplanner.team/stops/N512afb"], ["https://tec.openplanner.team/stops/Lvcecol2", "https://tec.openplanner.team/stops/Lvcfogu1"], ["https://tec.openplanner.team/stops/H1ms308a", "https://tec.openplanner.team/stops/H1ms308c"], ["https://tec.openplanner.team/stops/N501cfb", "https://tec.openplanner.team/stops/N501cky"], ["https://tec.openplanner.team/stops/LVLbovy2", "https://tec.openplanner.team/stops/LVLecco1"], ["https://tec.openplanner.team/stops/N212akb", "https://tec.openplanner.team/stops/N225ahb"], ["https://tec.openplanner.team/stops/LHegame2", "https://tec.openplanner.team/stops/LHexhav2"], ["https://tec.openplanner.team/stops/LLTtour2", "https://tec.openplanner.team/stops/LTOplac2"], ["https://tec.openplanner.team/stops/X608ala", "https://tec.openplanner.team/stops/X609aka"], ["https://tec.openplanner.team/stops/N501lya", "https://tec.openplanner.team/stops/N501meb"], ["https://tec.openplanner.team/stops/LPLmonu2", "https://tec.openplanner.team/stops/LPLstri2"], ["https://tec.openplanner.team/stops/H1vh137b", "https://tec.openplanner.team/stops/H3lr106a"], ["https://tec.openplanner.team/stops/Cwfcast2", "https://tec.openplanner.team/stops/N543bmb"], ["https://tec.openplanner.team/stops/Cflglav1", "https://tec.openplanner.team/stops/Cflvxca1"], ["https://tec.openplanner.team/stops/Csbsart1", "https://tec.openplanner.team/stops/H1ls130a"], ["https://tec.openplanner.team/stops/Bgemibb1", "https://tec.openplanner.team/stops/Bgemkal1"], ["https://tec.openplanner.team/stops/Cgzcver1", "https://tec.openplanner.team/stops/Cmyronc2"], ["https://tec.openplanner.team/stops/N134afa", "https://tec.openplanner.team/stops/N134aha"], ["https://tec.openplanner.team/stops/Lantonn2", "https://tec.openplanner.team/stops/Lrchype1"], ["https://tec.openplanner.team/stops/Cbwdoua1", "https://tec.openplanner.team/stops/Cmgcabi1"], ["https://tec.openplanner.team/stops/H1ha201a", "https://tec.openplanner.team/stops/H1ss350b"], ["https://tec.openplanner.team/stops/H1hn207b", "https://tec.openplanner.team/stops/H1mv241a"], ["https://tec.openplanner.team/stops/X782aia", "https://tec.openplanner.team/stops/X782aib"], ["https://tec.openplanner.team/stops/LDmeg--2", "https://tec.openplanner.team/stops/LDmwaef2"], ["https://tec.openplanner.team/stops/Bgnvcom1", "https://tec.openplanner.team/stops/Bgnvtas1"], ["https://tec.openplanner.team/stops/LSNchen1", "https://tec.openplanner.team/stops/LSNchen4"], ["https://tec.openplanner.team/stops/X992aaa", "https://tec.openplanner.team/stops/X992aab"], ["https://tec.openplanner.team/stops/N553ala", "https://tec.openplanner.team/stops/N553alb"], ["https://tec.openplanner.team/stops/Cmlhauc3", "https://tec.openplanner.team/stops/Cmlhauc4"], ["https://tec.openplanner.team/stops/X629aba", "https://tec.openplanner.team/stops/X648aab"], ["https://tec.openplanner.team/stops/Cml5ave1", "https://tec.openplanner.team/stops/Cnachcu2"], ["https://tec.openplanner.team/stops/X879ala", "https://tec.openplanner.team/stops/X879alb"], ["https://tec.openplanner.team/stops/H4ta117b", "https://tec.openplanner.team/stops/H4ta135a"], ["https://tec.openplanner.team/stops/X607aha", "https://tec.openplanner.team/stops/X607aka"], ["https://tec.openplanner.team/stops/Cnabult4", "https://tec.openplanner.team/stops/Cnaplan2"], ["https://tec.openplanner.team/stops/Cgofabr2", "https://tec.openplanner.team/stops/Cgomoul1"], ["https://tec.openplanner.team/stops/LMAptne1", "https://tec.openplanner.team/stops/LMArave2"], ["https://tec.openplanner.team/stops/N205aca", "https://tec.openplanner.team/stops/N205acb"], ["https://tec.openplanner.team/stops/X622aba", "https://tec.openplanner.team/stops/X696ada"], ["https://tec.openplanner.team/stops/Lvemull2", "https://tec.openplanner.team/stops/Lvepris1"], ["https://tec.openplanner.team/stops/Bbeasta2", "https://tec.openplanner.team/stops/Btlgmee2"], ["https://tec.openplanner.team/stops/Bsenpbi2", "https://tec.openplanner.team/stops/H2mg149b"], ["https://tec.openplanner.team/stops/Bjodbat2", "https://tec.openplanner.team/stops/Bjodcdt1"], ["https://tec.openplanner.team/stops/H1do121b", "https://tec.openplanner.team/stops/H1wi147a"], ["https://tec.openplanner.team/stops/N357ada", "https://tec.openplanner.team/stops/N357adb"], ["https://tec.openplanner.team/stops/Ccogrha1", "https://tec.openplanner.team/stops/Ccojaur3"], ["https://tec.openplanner.team/stops/LWagare*", "https://tec.openplanner.team/stops/LWamass1"], ["https://tec.openplanner.team/stops/LBTfoot1", "https://tec.openplanner.team/stops/LBTnors1"], ["https://tec.openplanner.team/stops/LCeanne2", "https://tec.openplanner.team/stops/LFarhuy2"], ["https://tec.openplanner.team/stops/H2ch106a", "https://tec.openplanner.team/stops/H2go115a"], ["https://tec.openplanner.team/stops/X658afa", "https://tec.openplanner.team/stops/X659aka"], ["https://tec.openplanner.team/stops/LAIchpl1", "https://tec.openplanner.team/stops/LCschen2"], ["https://tec.openplanner.team/stops/N557acb", "https://tec.openplanner.team/stops/N559aaa"], ["https://tec.openplanner.team/stops/X713aab", "https://tec.openplanner.team/stops/X796ahb"], ["https://tec.openplanner.team/stops/LMOelva3", "https://tec.openplanner.team/stops/LMOf21-1"], ["https://tec.openplanner.team/stops/H2ca101b", "https://tec.openplanner.team/stops/H2ca109b"], ["https://tec.openplanner.team/stops/H1gc124b", "https://tec.openplanner.team/stops/H1go174a"], ["https://tec.openplanner.team/stops/LBJapol2", "https://tec.openplanner.team/stops/LBJlieg2"], ["https://tec.openplanner.team/stops/Bgntcbo1", "https://tec.openplanner.team/stops/Bmelsab2"], ["https://tec.openplanner.team/stops/Bllngal1", "https://tec.openplanner.team/stops/Bllngle1"], ["https://tec.openplanner.team/stops/X613acb", "https://tec.openplanner.team/stops/X614bda"], ["https://tec.openplanner.team/stops/Lfhdonn1", "https://tec.openplanner.team/stops/Lseegva1"], ["https://tec.openplanner.team/stops/Binccha1", "https://tec.openplanner.team/stops/Brxmbos2"], ["https://tec.openplanner.team/stops/H1sg150b", "https://tec.openplanner.team/stops/H1sg150c"], ["https://tec.openplanner.team/stops/X724aaa", "https://tec.openplanner.team/stops/X724aia"], ["https://tec.openplanner.team/stops/LWacime3", "https://tec.openplanner.team/stops/LWalibo1"], ["https://tec.openplanner.team/stops/N508ada", "https://tec.openplanner.team/stops/N509aob"], ["https://tec.openplanner.team/stops/Ccabois2", "https://tec.openplanner.team/stops/Ccaegli2"], ["https://tec.openplanner.team/stops/LBSchpl1", "https://tec.openplanner.team/stops/LRGcana1"], ["https://tec.openplanner.team/stops/N139aeb", "https://tec.openplanner.team/stops/N146adb"], ["https://tec.openplanner.team/stops/LdE179-2", "https://tec.openplanner.team/stops/LdElamb2"], ["https://tec.openplanner.team/stops/Cbtgemi1", "https://tec.openplanner.team/stops/Crewath2"], ["https://tec.openplanner.team/stops/Bwavdmo1", "https://tec.openplanner.team/stops/Bwavdmo4"], ["https://tec.openplanner.team/stops/LMAbell2", "https://tec.openplanner.team/stops/LMAbijo2"], ["https://tec.openplanner.team/stops/N117aca", "https://tec.openplanner.team/stops/N117azb"], ["https://tec.openplanner.team/stops/H1ro140b", "https://tec.openplanner.team/stops/H1ro141b"], ["https://tec.openplanner.team/stops/LlgguilA", "https://tec.openplanner.team/stops/LlgguilD"], ["https://tec.openplanner.team/stops/Creluth1", "https://tec.openplanner.team/stops/Crestan2"], ["https://tec.openplanner.team/stops/X953afb", "https://tec.openplanner.team/stops/X954afa"], ["https://tec.openplanner.team/stops/H2pe163a", "https://tec.openplanner.team/stops/H2tr257a"], ["https://tec.openplanner.team/stops/LeYdepo1", "https://tec.openplanner.team/stops/LeYdorf2"], ["https://tec.openplanner.team/stops/H4wi163a", "https://tec.openplanner.team/stops/H4wi163b"], ["https://tec.openplanner.team/stops/Cvretan2", "https://tec.openplanner.team/stops/Cvrfema2"], ["https://tec.openplanner.team/stops/N211aka", "https://tec.openplanner.team/stops/N211aya"], ["https://tec.openplanner.team/stops/Crachap2", "https://tec.openplanner.team/stops/Cradest1"], ["https://tec.openplanner.team/stops/Chthttr2", "https://tec.openplanner.team/stops/Cthdeco1"], ["https://tec.openplanner.team/stops/H4bn100b", "https://tec.openplanner.team/stops/H4pi135a"], ["https://tec.openplanner.team/stops/LHe3com2", "https://tec.openplanner.team/stops/LHegame1"], ["https://tec.openplanner.team/stops/Caujonc1", "https://tec.openplanner.team/stops/Causncb2"], ["https://tec.openplanner.team/stops/Ctisar1", "https://tec.openplanner.team/stops/Ctisart2"], ["https://tec.openplanner.team/stops/Bbeardu2", "https://tec.openplanner.team/stops/Bmlncle1"], ["https://tec.openplanner.team/stops/N201anb", "https://tec.openplanner.team/stops/N202aha"], ["https://tec.openplanner.team/stops/X946acb", "https://tec.openplanner.team/stops/X948adb"], ["https://tec.openplanner.team/stops/LVEdTEC2", "https://tec.openplanner.team/stops/LVEeg--2"], ["https://tec.openplanner.team/stops/Bhandub2", "https://tec.openplanner.team/stops/LABbert2"], ["https://tec.openplanner.team/stops/Cmx3arb1", "https://tec.openplanner.team/stops/Cmxpleg1"], ["https://tec.openplanner.team/stops/Blpgeco1", "https://tec.openplanner.team/stops/Blpgeco2"], ["https://tec.openplanner.team/stops/H4ta121a", "https://tec.openplanner.team/stops/H4ta121b"], ["https://tec.openplanner.team/stops/H1hl125a", "https://tec.openplanner.team/stops/H1hl126b"], ["https://tec.openplanner.team/stops/Cgynuto1", "https://tec.openplanner.team/stops/Cjulamb1"], ["https://tec.openplanner.team/stops/X617aia", "https://tec.openplanner.team/stops/X617aib"], ["https://tec.openplanner.team/stops/N118bba", "https://tec.openplanner.team/stops/N118bbb"], ["https://tec.openplanner.team/stops/H4hx114a", "https://tec.openplanner.team/stops/H4wa153b"], ["https://tec.openplanner.team/stops/X754aqa", "https://tec.openplanner.team/stops/X754ava"], ["https://tec.openplanner.team/stops/LLMcouv2", "https://tec.openplanner.team/stops/LLMeg--2"], ["https://tec.openplanner.team/stops/Llgbrab1", "https://tec.openplanner.team/stops/Llgpari2"], ["https://tec.openplanner.team/stops/N501cpb", "https://tec.openplanner.team/stops/N501ema"], ["https://tec.openplanner.team/stops/Ccutail1", "https://tec.openplanner.team/stops/Ccutail2"], ["https://tec.openplanner.team/stops/H2le147b", "https://tec.openplanner.team/stops/H2le147c"], ["https://tec.openplanner.team/stops/Lsehaut2", "https://tec.openplanner.team/stops/Lselimi1"], ["https://tec.openplanner.team/stops/N313aca", "https://tec.openplanner.team/stops/N313ada"], ["https://tec.openplanner.team/stops/X937aba", "https://tec.openplanner.team/stops/X952alb"], ["https://tec.openplanner.team/stops/Lrecomp2", "https://tec.openplanner.team/stops/Lrevaul1"], ["https://tec.openplanner.team/stops/Llgfran2", "https://tec.openplanner.team/stops/Llgriva2"], ["https://tec.openplanner.team/stops/Lghleon1", "https://tec.openplanner.team/stops/Lghmaha3"], ["https://tec.openplanner.team/stops/Cgy4bra2", "https://tec.openplanner.team/stops/Cgygazo5"], ["https://tec.openplanner.team/stops/N528afa", "https://tec.openplanner.team/stops/N528afz"], ["https://tec.openplanner.team/stops/X714aaa", "https://tec.openplanner.team/stops/X714aba"], ["https://tec.openplanner.team/stops/LMfsart1", "https://tec.openplanner.team/stops/LMfsart2"], ["https://tec.openplanner.team/stops/Csrcant1", "https://tec.openplanner.team/stops/Csregli1"], ["https://tec.openplanner.team/stops/H4mb203a", "https://tec.openplanner.team/stops/H4og207a"], ["https://tec.openplanner.team/stops/Llmcoop2", "https://tec.openplanner.team/stops/Llmeg--2"], ["https://tec.openplanner.team/stops/N501ebz", "https://tec.openplanner.team/stops/N501giy"], ["https://tec.openplanner.team/stops/X818ana", "https://tec.openplanner.team/stops/X820amb"], ["https://tec.openplanner.team/stops/X896aea", "https://tec.openplanner.team/stops/X896aec"], ["https://tec.openplanner.team/stops/LPRcasi2", "https://tec.openplanner.team/stops/LPRvill1"], ["https://tec.openplanner.team/stops/H2hl110b", "https://tec.openplanner.team/stops/H2ll179a"], ["https://tec.openplanner.team/stops/H4ne131b", "https://tec.openplanner.team/stops/H4ne138a"], ["https://tec.openplanner.team/stops/H1qu101a", "https://tec.openplanner.team/stops/H1qu129b"], ["https://tec.openplanner.team/stops/Llgglai2", "https://tec.openplanner.team/stops/Llgpere2"], ["https://tec.openplanner.team/stops/Bbsifml2", "https://tec.openplanner.team/stops/Bnivlpa2"], ["https://tec.openplanner.team/stops/X620aea", "https://tec.openplanner.team/stops/X620afb"], ["https://tec.openplanner.team/stops/Loubonc1", "https://tec.openplanner.team/stops/Louvivi1"], ["https://tec.openplanner.team/stops/X639aea", "https://tec.openplanner.team/stops/X644ada"], ["https://tec.openplanner.team/stops/H1gn148a", "https://tec.openplanner.team/stops/H1ol146b"], ["https://tec.openplanner.team/stops/H4vx361b", "https://tec.openplanner.team/stops/H4vx362a"], ["https://tec.openplanner.team/stops/LSdcent1", "https://tec.openplanner.team/stops/LSdcent2"], ["https://tec.openplanner.team/stops/Cgxvkho1", "https://tec.openplanner.team/stops/Cgxvkho3"], ["https://tec.openplanner.team/stops/H5qu141a", "https://tec.openplanner.team/stops/H5qu148a"], ["https://tec.openplanner.team/stops/H1hm173b", "https://tec.openplanner.team/stops/H1sp353b"], ["https://tec.openplanner.team/stops/Baudvdr2", "https://tec.openplanner.team/stops/Bwbfgar1"], ["https://tec.openplanner.team/stops/H1go118a", "https://tec.openplanner.team/stops/H1go118b"], ["https://tec.openplanner.team/stops/X636aea", "https://tec.openplanner.team/stops/X636afa"], ["https://tec.openplanner.team/stops/N506aha", "https://tec.openplanner.team/stops/N506asa"], ["https://tec.openplanner.team/stops/H4pi134b", "https://tec.openplanner.team/stops/H4pi136b"], ["https://tec.openplanner.team/stops/X941aga", "https://tec.openplanner.team/stops/X949afa"], ["https://tec.openplanner.team/stops/N147aaa", "https://tec.openplanner.team/stops/N147aea"], ["https://tec.openplanner.team/stops/N230aeb", "https://tec.openplanner.team/stops/N233aba"], ["https://tec.openplanner.team/stops/LAUbirv2", "https://tec.openplanner.team/stops/LHMhof-2"], ["https://tec.openplanner.team/stops/LLYcalv1", "https://tec.openplanner.team/stops/LLYhoch1"], ["https://tec.openplanner.team/stops/X745acb", "https://tec.openplanner.team/stops/X746alb"], ["https://tec.openplanner.team/stops/H5ar100a", "https://tec.openplanner.team/stops/H5ar127b"], ["https://tec.openplanner.team/stops/X790aba", "https://tec.openplanner.team/stops/X790aga"], ["https://tec.openplanner.team/stops/Lmihale2", "https://tec.openplanner.team/stops/Lmimili2"], ["https://tec.openplanner.team/stops/H1to151a", "https://tec.openplanner.team/stops/H1to153c"], ["https://tec.openplanner.team/stops/N243ada", "https://tec.openplanner.team/stops/N243aea"], ["https://tec.openplanner.team/stops/H4hq131b", "https://tec.openplanner.team/stops/H4hq132a"], ["https://tec.openplanner.team/stops/X901ana", "https://tec.openplanner.team/stops/X901aoa"], ["https://tec.openplanner.team/stops/X994afb", "https://tec.openplanner.team/stops/X994ama"], ["https://tec.openplanner.team/stops/N101aeb", "https://tec.openplanner.team/stops/N101arb"], ["https://tec.openplanner.team/stops/Bmrshan2", "https://tec.openplanner.team/stops/Bplncsd2"], ["https://tec.openplanner.team/stops/Bbeasta1", "https://tec.openplanner.team/stops/Bbeasta2"], ["https://tec.openplanner.team/stops/LLebibl3", "https://tec.openplanner.team/stops/LLeeg--1"], ["https://tec.openplanner.team/stops/Bhandub2", "https://tec.openplanner.team/stops/Bhantui2"], ["https://tec.openplanner.team/stops/LSShous2", "https://tec.openplanner.team/stops/LYEphar2"], ["https://tec.openplanner.team/stops/Borbod91", "https://tec.openplanner.team/stops/Borbode2"], ["https://tec.openplanner.team/stops/X850ana", "https://tec.openplanner.team/stops/X850aob"], ["https://tec.openplanner.team/stops/H4po124a", "https://tec.openplanner.team/stops/H4po124b"], ["https://tec.openplanner.team/stops/LETtemp2", "https://tec.openplanner.team/stops/Lremonu1"], ["https://tec.openplanner.team/stops/Cvvsncb1", "https://tec.openplanner.team/stops/Cvvsncb2"], ["https://tec.openplanner.team/stops/X736aea", "https://tec.openplanner.team/stops/X736afa"], ["https://tec.openplanner.team/stops/Cfrbrin1", "https://tec.openplanner.team/stops/Cfrbrin2"], ["https://tec.openplanner.team/stops/N501gab", "https://tec.openplanner.team/stops/N501gra"], ["https://tec.openplanner.team/stops/X757aab", "https://tec.openplanner.team/stops/X757abb"], ["https://tec.openplanner.team/stops/Lbrmc--2", "https://tec.openplanner.team/stops/Llgmara2"], ["https://tec.openplanner.team/stops/N134aac", "https://tec.openplanner.team/stops/N135aza"], ["https://tec.openplanner.team/stops/Lourose4", "https://tec.openplanner.team/stops/Lousite4"], ["https://tec.openplanner.team/stops/H1tl122a", "https://tec.openplanner.team/stops/H1tl122b"], ["https://tec.openplanner.team/stops/LAumari1", "https://tec.openplanner.team/stops/LWRchem1"], ["https://tec.openplanner.team/stops/X801bdd", "https://tec.openplanner.team/stops/X801bga"], ["https://tec.openplanner.team/stops/LmYwall2", "https://tec.openplanner.team/stops/LwL100-1"], ["https://tec.openplanner.team/stops/N559aba", "https://tec.openplanner.team/stops/N559abb"], ["https://tec.openplanner.team/stops/Bbcohou3", "https://tec.openplanner.team/stops/Bbcohou4"], ["https://tec.openplanner.team/stops/LWbburn1", "https://tec.openplanner.team/stops/LWbburn2"], ["https://tec.openplanner.team/stops/H4cl112a", "https://tec.openplanner.team/stops/H4cl113b"], ["https://tec.openplanner.team/stops/N543bba", "https://tec.openplanner.team/stops/N543cpb"], ["https://tec.openplanner.team/stops/N538aha", "https://tec.openplanner.team/stops/N538aqb"], ["https://tec.openplanner.team/stops/Btlbgla2", "https://tec.openplanner.team/stops/Btstcar4"], ["https://tec.openplanner.team/stops/LTecent3", "https://tec.openplanner.team/stops/LTecent4"], ["https://tec.openplanner.team/stops/Llghars5", "https://tec.openplanner.team/stops/Llghars7"], ["https://tec.openplanner.team/stops/Bblacco1", "https://tec.openplanner.team/stops/Bwateco1"], ["https://tec.openplanner.team/stops/X597aab", "https://tec.openplanner.team/stops/X597aqa"], ["https://tec.openplanner.team/stops/Llgblon2", "https://tec.openplanner.team/stops/Llgvero4"], ["https://tec.openplanner.team/stops/LNAbras4", "https://tec.openplanner.team/stops/LNAbras5"], ["https://tec.openplanner.team/stops/Lrosaun1", "https://tec.openplanner.team/stops/Lrosaun2"], ["https://tec.openplanner.team/stops/Cchtour2", "https://tec.openplanner.team/stops/CMwate1"], ["https://tec.openplanner.team/stops/LFabraa1", "https://tec.openplanner.team/stops/LFalieg2"], ["https://tec.openplanner.team/stops/X908ahb", "https://tec.openplanner.team/stops/X910aaa"], ["https://tec.openplanner.team/stops/X878aca", "https://tec.openplanner.team/stops/X878acb"], ["https://tec.openplanner.team/stops/Clshafa1", "https://tec.openplanner.team/stops/H1ls129a"], ["https://tec.openplanner.team/stops/LBVronx2", "https://tec.openplanner.team/stops/LSTmeiz1"], ["https://tec.openplanner.team/stops/Lgrlimi2", "https://tec.openplanner.team/stops/Llgcham7"], ["https://tec.openplanner.team/stops/Llghugo2", "https://tec.openplanner.team/stops/Llgpire1"], ["https://tec.openplanner.team/stops/Btileco1", "https://tec.openplanner.team/stops/Btilsnc1"], ["https://tec.openplanner.team/stops/N352ada", "https://tec.openplanner.team/stops/N352aja"], ["https://tec.openplanner.team/stops/LhGkirc2", "https://tec.openplanner.team/stops/LhGlang2"], ["https://tec.openplanner.team/stops/X608aja", "https://tec.openplanner.team/stops/X608aob"], ["https://tec.openplanner.team/stops/X620aaa", "https://tec.openplanner.team/stops/X620aab"], ["https://tec.openplanner.team/stops/X716aab", "https://tec.openplanner.team/stops/X716abb"], ["https://tec.openplanner.team/stops/X661akb", "https://tec.openplanner.team/stops/X672ala"], ["https://tec.openplanner.team/stops/X650aoa", "https://tec.openplanner.team/stops/X671agb"], ["https://tec.openplanner.team/stops/LWMcent1", "https://tec.openplanner.team/stops/LWMcent2"], ["https://tec.openplanner.team/stops/LQafond1", "https://tec.openplanner.team/stops/LREprea1"], ["https://tec.openplanner.team/stops/N120aea", "https://tec.openplanner.team/stops/N120aga"], ["https://tec.openplanner.team/stops/Bmlncle1", "https://tec.openplanner.team/stops/Bmlnsmv2"], ["https://tec.openplanner.team/stops/X663avb", "https://tec.openplanner.team/stops/X663aya"], ["https://tec.openplanner.team/stops/H1te175a", "https://tec.openplanner.team/stops/H1te177b"], ["https://tec.openplanner.team/stops/LhIfrie1", "https://tec.openplanner.team/stops/LwTzent2"], ["https://tec.openplanner.team/stops/Csebasc1", "https://tec.openplanner.team/stops/Csedoua1"], ["https://tec.openplanner.team/stops/LWeatel2", "https://tec.openplanner.team/stops/LWegdry2"], ["https://tec.openplanner.team/stops/Bnodcab2", "https://tec.openplanner.team/stops/Bnodegl1"], ["https://tec.openplanner.team/stops/N542asa", "https://tec.openplanner.team/stops/N542asb"], ["https://tec.openplanner.team/stops/LbUmalm1", "https://tec.openplanner.team/stops/LbUvith1"], ["https://tec.openplanner.team/stops/X901baa", "https://tec.openplanner.team/stops/X901bla"], ["https://tec.openplanner.team/stops/H4lu128a", "https://tec.openplanner.team/stops/H4mo206a"], ["https://tec.openplanner.team/stops/H1sy140b", "https://tec.openplanner.team/stops/H1sy141b"], ["https://tec.openplanner.team/stops/N501gfb", "https://tec.openplanner.team/stops/N501jab"], ["https://tec.openplanner.team/stops/Cbecarr1", "https://tec.openplanner.team/stops/Cbecarr2"], ["https://tec.openplanner.team/stops/H4eh101b", "https://tec.openplanner.team/stops/H4po124a"], ["https://tec.openplanner.team/stops/N539bga", "https://tec.openplanner.team/stops/N539bgb"], ["https://tec.openplanner.team/stops/Bgnvgir2", "https://tec.openplanner.team/stops/Bohngen2"], ["https://tec.openplanner.team/stops/Cobcent2", "https://tec.openplanner.team/stops/Cpcplac3"], ["https://tec.openplanner.team/stops/H1hh112b", "https://tec.openplanner.team/stops/H1hh118a"], ["https://tec.openplanner.team/stops/X657afb", "https://tec.openplanner.team/stops/X670agb"], ["https://tec.openplanner.team/stops/X902acb", "https://tec.openplanner.team/stops/X902asa"], ["https://tec.openplanner.team/stops/H1ho125c", "https://tec.openplanner.team/stops/H1ho139b"], ["https://tec.openplanner.team/stops/LWaanto1", "https://tec.openplanner.team/stops/LWarema2"], ["https://tec.openplanner.team/stops/Cgygazo1", "https://tec.openplanner.team/stops/Cgygazo8"], ["https://tec.openplanner.team/stops/LBBcamp2", "https://tec.openplanner.team/stops/LBBodet1"], ["https://tec.openplanner.team/stops/LRChote2", "https://tec.openplanner.team/stops/LSTamer2"], ["https://tec.openplanner.team/stops/X757aha", "https://tec.openplanner.team/stops/X757aja"], ["https://tec.openplanner.team/stops/X788acb", "https://tec.openplanner.team/stops/X789ahd"], ["https://tec.openplanner.team/stops/Becesbo2", "https://tec.openplanner.team/stops/H2ec100a"], ["https://tec.openplanner.team/stops/Cchcase1", "https://tec.openplanner.team/stops/Cmtrneu1"], ["https://tec.openplanner.team/stops/Lbrmour1", "https://tec.openplanner.team/stops/Llgrull2"], ["https://tec.openplanner.team/stops/Cfometr2", "https://tec.openplanner.team/stops/Clrpast1"], ["https://tec.openplanner.team/stops/Cgocitn1", "https://tec.openplanner.team/stops/CMemai1"], ["https://tec.openplanner.team/stops/Lsntvbi3", "https://tec.openplanner.team/stops/Ltibalt1"], ["https://tec.openplanner.team/stops/X649aba", "https://tec.openplanner.team/stops/X671aea"], ["https://tec.openplanner.team/stops/LHMbelv1", "https://tec.openplanner.team/stops/LHMthys1"], ["https://tec.openplanner.team/stops/X663aac", "https://tec.openplanner.team/stops/X663abb"], ["https://tec.openplanner.team/stops/H1do129a", "https://tec.openplanner.team/stops/H1do130a"], ["https://tec.openplanner.team/stops/X983aba", "https://tec.openplanner.team/stops/X983aca"], ["https://tec.openplanner.team/stops/H1mc126a", "https://tec.openplanner.team/stops/H1mc127a"], ["https://tec.openplanner.team/stops/X902axa", "https://tec.openplanner.team/stops/X902bgb"], ["https://tec.openplanner.team/stops/X923adb", "https://tec.openplanner.team/stops/X923ara"], ["https://tec.openplanner.team/stops/X725bbb", "https://tec.openplanner.team/stops/X725bfa"], ["https://tec.openplanner.team/stops/H2bh119a", "https://tec.openplanner.team/stops/H2bh119b"], ["https://tec.openplanner.team/stops/Cflvxca1", "https://tec.openplanner.team/stops/Cwgcroi1"], ["https://tec.openplanner.team/stops/H1sy139a", "https://tec.openplanner.team/stops/H1sy150b"], ["https://tec.openplanner.team/stops/Bbcomar1", "https://tec.openplanner.team/stops/Bhenasc1"], ["https://tec.openplanner.team/stops/X839aaa", "https://tec.openplanner.team/stops/X839aga"], ["https://tec.openplanner.team/stops/H1bo107b", "https://tec.openplanner.team/stops/H1bo150a"], ["https://tec.openplanner.team/stops/H1lb138a", "https://tec.openplanner.team/stops/H1lb138b"], ["https://tec.openplanner.team/stops/LCocasc2", "https://tec.openplanner.team/stops/LSTamer2"], ["https://tec.openplanner.team/stops/X790aga", "https://tec.openplanner.team/stops/X790ana"], ["https://tec.openplanner.team/stops/Cgzhour2", "https://tec.openplanner.team/stops/Cthrlef1"], ["https://tec.openplanner.team/stops/X982bcb", "https://tec.openplanner.team/stops/X982cba"], ["https://tec.openplanner.team/stops/LLrquar1", "https://tec.openplanner.team/stops/LLrquar2"], ["https://tec.openplanner.team/stops/N563amb", "https://tec.openplanner.team/stops/N563aob"], ["https://tec.openplanner.team/stops/LDLbaye2", "https://tec.openplanner.team/stops/LGMdrev1"], ["https://tec.openplanner.team/stops/Bperrma1", "https://tec.openplanner.team/stops/Bperrma2"], ["https://tec.openplanner.team/stops/Cmgpla1", "https://tec.openplanner.team/stops/Cmgpla2"], ["https://tec.openplanner.team/stops/Lmidarc1", "https://tec.openplanner.team/stops/Lmitroi1"], ["https://tec.openplanner.team/stops/LCPcomm2", "https://tec.openplanner.team/stops/LCPecli2"], ["https://tec.openplanner.team/stops/LROcham1", "https://tec.openplanner.team/stops/LROrtba2"], ["https://tec.openplanner.team/stops/Bbldass1", "https://tec.openplanner.team/stops/Bbldgar2"], ["https://tec.openplanner.team/stops/LLgcent2", "https://tec.openplanner.team/stops/LLgmini2"], ["https://tec.openplanner.team/stops/Lrcchpl1", "https://tec.openplanner.team/stops/Lvtchpl4"], ["https://tec.openplanner.team/stops/N542ajb", "https://tec.openplanner.team/stops/N542amb"], ["https://tec.openplanner.team/stops/LTIdumo2", "https://tec.openplanner.team/stops/LTIecma2"], ["https://tec.openplanner.team/stops/X756aib", "https://tec.openplanner.team/stops/X756ajb"], ["https://tec.openplanner.team/stops/LTrgibe2", "https://tec.openplanner.team/stops/LTrmaro2"], ["https://tec.openplanner.team/stops/Lgdec--1", "https://tec.openplanner.team/stops/Lgdegli2"], ["https://tec.openplanner.team/stops/X760aca", "https://tec.openplanner.team/stops/X788aca"], ["https://tec.openplanner.team/stops/LClflor1", "https://tec.openplanner.team/stops/LCltrib1"], ["https://tec.openplanner.team/stops/Bhancre1", "https://tec.openplanner.team/stops/NL37acb"], ["https://tec.openplanner.team/stops/LMEense2", "https://tec.openplanner.team/stops/LMEwerg2"], ["https://tec.openplanner.team/stops/LWAfabr2", "https://tec.openplanner.team/stops/LWArege2"], ["https://tec.openplanner.team/stops/H4lz155a", "https://tec.openplanner.team/stops/H4lz156b"], ["https://tec.openplanner.team/stops/LAMcloc1", "https://tec.openplanner.team/stops/LAMcloc2"], ["https://tec.openplanner.team/stops/N311aea", "https://tec.openplanner.team/stops/N368aba"], ["https://tec.openplanner.team/stops/LTRespe1", "https://tec.openplanner.team/stops/LTRpeec1"], ["https://tec.openplanner.team/stops/H4mb204b", "https://tec.openplanner.team/stops/H4mb205b"], ["https://tec.openplanner.team/stops/X742aca", "https://tec.openplanner.team/stops/X743aab"], ["https://tec.openplanner.team/stops/Llglaur1", "https://tec.openplanner.team/stops/Llglaur2"], ["https://tec.openplanner.team/stops/Cdaptca2", "https://tec.openplanner.team/stops/Cdaptca4"], ["https://tec.openplanner.team/stops/Bblaaca1", "https://tec.openplanner.team/stops/Bblaphi1"], ["https://tec.openplanner.team/stops/X605aab", "https://tec.openplanner.team/stops/X620afb"], ["https://tec.openplanner.team/stops/Bbeaap52", "https://tec.openplanner.team/stops/Bbeacha2"], ["https://tec.openplanner.team/stops/Lseecol1", "https://tec.openplanner.team/stops/Lsevecq2"], ["https://tec.openplanner.team/stops/Cfamate2", "https://tec.openplanner.team/stops/Cpictra1"], ["https://tec.openplanner.team/stops/LVNbale2", "https://tec.openplanner.team/stops/LVNcoop2"], ["https://tec.openplanner.team/stops/H4be105a", "https://tec.openplanner.team/stops/H4be107b"], ["https://tec.openplanner.team/stops/LOthiro2", "https://tec.openplanner.team/stops/LOtthie2"], ["https://tec.openplanner.team/stops/X876aaa", "https://tec.openplanner.team/stops/X876aeb"], ["https://tec.openplanner.team/stops/Bblatet2", "https://tec.openplanner.team/stops/Blilhay1"], ["https://tec.openplanner.team/stops/LNCecdo1", "https://tec.openplanner.team/stops/LNCneuv3"], ["https://tec.openplanner.team/stops/LHueg--2", "https://tec.openplanner.team/stops/LHuherm2"], ["https://tec.openplanner.team/stops/NL78acb", "https://tec.openplanner.team/stops/NL78adb"], ["https://tec.openplanner.team/stops/Lrccime3", "https://tec.openplanner.team/stops/Lvoeg--1"], ["https://tec.openplanner.team/stops/LBLplas2", "https://tec.openplanner.team/stops/LTrrich1"], ["https://tec.openplanner.team/stops/H4es108a", "https://tec.openplanner.team/stops/H4es113a"], ["https://tec.openplanner.team/stops/Lgrcoll1", "https://tec.openplanner.team/stops/Lgrcour2"], ["https://tec.openplanner.team/stops/N554aba", "https://tec.openplanner.team/stops/N554acc"], ["https://tec.openplanner.team/stops/H2ma203b", "https://tec.openplanner.team/stops/H2ma210b"], ["https://tec.openplanner.team/stops/LFRbaro2", "https://tec.openplanner.team/stops/LFRhock1"], ["https://tec.openplanner.team/stops/N533ada", "https://tec.openplanner.team/stops/N551aga"], ["https://tec.openplanner.team/stops/LkEgend2", "https://tec.openplanner.team/stops/LkEspor1"], ["https://tec.openplanner.team/stops/N524aja", "https://tec.openplanner.team/stops/N525akb"], ["https://tec.openplanner.team/stops/N527aaa", "https://tec.openplanner.team/stops/N527aga"], ["https://tec.openplanner.team/stops/N214aeb", "https://tec.openplanner.team/stops/N214aec"], ["https://tec.openplanner.team/stops/X768aed", "https://tec.openplanner.team/stops/X768afb"], ["https://tec.openplanner.team/stops/H1ms932a", "https://tec.openplanner.team/stops/H1ms935a"], ["https://tec.openplanner.team/stops/LVBmonu1", "https://tec.openplanner.team/stops/LVBmonu2"], ["https://tec.openplanner.team/stops/X897aca", "https://tec.openplanner.team/stops/X897aja"], ["https://tec.openplanner.team/stops/H4pl111a", "https://tec.openplanner.team/stops/H4pl115b"], ["https://tec.openplanner.team/stops/Btilhti2", "https://tec.openplanner.team/stops/Btilmon1"], ["https://tec.openplanner.team/stops/Ljubeyn1", "https://tec.openplanner.team/stops/Ljuvert2"], ["https://tec.openplanner.team/stops/X734afb", "https://tec.openplanner.team/stops/X734arb"], ["https://tec.openplanner.team/stops/LEN42--2", "https://tec.openplanner.team/stops/LENchem1"], ["https://tec.openplanner.team/stops/H1le121a", "https://tec.openplanner.team/stops/H1le130b"], ["https://tec.openplanner.team/stops/LBGcent1", "https://tec.openplanner.team/stops/LBGgeer1"], ["https://tec.openplanner.team/stops/N213aba", "https://tec.openplanner.team/stops/N348aab"], ["https://tec.openplanner.team/stops/LAyfren1", "https://tec.openplanner.team/stops/LAyheid2"], ["https://tec.openplanner.team/stops/Lcebarr1", "https://tec.openplanner.team/stops/Lcepont5"], ["https://tec.openplanner.team/stops/H4hu122b", "https://tec.openplanner.team/stops/H4ld124b"], ["https://tec.openplanner.team/stops/N576agb", "https://tec.openplanner.team/stops/N576aib"], ["https://tec.openplanner.team/stops/Borblim2", "https://tec.openplanner.team/stops/Borborb2"], ["https://tec.openplanner.team/stops/Cmmceri1", "https://tec.openplanner.team/stops/Cmmplac4"], ["https://tec.openplanner.team/stops/LGLecol1", "https://tec.openplanner.team/stops/LGLecol2"], ["https://tec.openplanner.team/stops/N111aba", "https://tec.openplanner.team/stops/N111aeb"], ["https://tec.openplanner.team/stops/N528afb", "https://tec.openplanner.team/stops/N528afy"], ["https://tec.openplanner.team/stops/LHCmais2", "https://tec.openplanner.team/stops/LHCpaci2"], ["https://tec.openplanner.team/stops/LPTgran1", "https://tec.openplanner.team/stops/X750asa"], ["https://tec.openplanner.team/stops/LDAalbe1", "https://tec.openplanner.team/stops/LDAalbe2"], ["https://tec.openplanner.team/stops/N551agb", "https://tec.openplanner.team/stops/N551agc"], ["https://tec.openplanner.team/stops/Bbstmco1", "https://tec.openplanner.team/stops/Bbstmco2"], ["https://tec.openplanner.team/stops/Cfccol1", "https://tec.openplanner.team/stops/Cfcrerp1"], ["https://tec.openplanner.team/stops/Lghmeun1", "https://tec.openplanner.team/stops/Lghmeun3"], ["https://tec.openplanner.team/stops/Llglibo3", "https://tec.openplanner.team/stops/Llgpitt1"], ["https://tec.openplanner.team/stops/H5rx140a", "https://tec.openplanner.team/stops/H5rx140b"], ["https://tec.openplanner.team/stops/H2ch121a", "https://tec.openplanner.team/stops/H2go118b"], ["https://tec.openplanner.team/stops/LENgend1", "https://tec.openplanner.team/stops/LENgend2"], ["https://tec.openplanner.team/stops/LTIdjal1", "https://tec.openplanner.team/stops/LTIdonn2"], ["https://tec.openplanner.team/stops/H1ry134a", "https://tec.openplanner.team/stops/H1ry134b"], ["https://tec.openplanner.team/stops/Cchprun1", "https://tec.openplanner.team/stops/Cchprun2"], ["https://tec.openplanner.team/stops/H1mj126a", "https://tec.openplanner.team/stops/H1mj126b"], ["https://tec.openplanner.team/stops/X811aga", "https://tec.openplanner.team/stops/X834aca"], ["https://tec.openplanner.team/stops/N211bba", "https://tec.openplanner.team/stops/N219adb"], ["https://tec.openplanner.team/stops/X730aga", "https://tec.openplanner.team/stops/X731akb"], ["https://tec.openplanner.team/stops/N501fsa", "https://tec.openplanner.team/stops/N501gpc"], ["https://tec.openplanner.team/stops/Cmehame2", "https://tec.openplanner.team/stops/Cwxchap2"], ["https://tec.openplanner.team/stops/Llgherm2", "https://tec.openplanner.team/stops/Llgmair2"], ["https://tec.openplanner.team/stops/N230aaa", "https://tec.openplanner.team/stops/N540ana"], ["https://tec.openplanner.team/stops/X745aca", "https://tec.openplanner.team/stops/X746alb"], ["https://tec.openplanner.team/stops/LHUaveu1", "https://tec.openplanner.team/stops/LHUaveu2"], ["https://tec.openplanner.team/stops/LBStec-2", "https://tec.openplanner.team/stops/LWOsudr2"], ["https://tec.openplanner.team/stops/Balswwe2", "https://tec.openplanner.team/stops/Bhalvel1"], ["https://tec.openplanner.team/stops/X664apb", "https://tec.openplanner.team/stops/X664arb"], ["https://tec.openplanner.team/stops/X652aja", "https://tec.openplanner.team/stops/X652ajb"], ["https://tec.openplanner.team/stops/Cacgare2", "https://tec.openplanner.team/stops/NC44aeb"], ["https://tec.openplanner.team/stops/H4ef112b", "https://tec.openplanner.team/stops/H4or113a"], ["https://tec.openplanner.team/stops/Bwaab122", "https://tec.openplanner.team/stops/Bwaak101"], ["https://tec.openplanner.team/stops/Lhrbell1", "https://tec.openplanner.team/stops/Lhrgall2"], ["https://tec.openplanner.team/stops/Cgxvkho1", "https://tec.openplanner.team/stops/CMmorg1"], ["https://tec.openplanner.team/stops/H1mq199b", "https://tec.openplanner.team/stops/H4ab101a"], ["https://tec.openplanner.team/stops/LAweg--1", "https://tec.openplanner.team/stops/LHrchat1"], ["https://tec.openplanner.team/stops/Benggar1", "https://tec.openplanner.team/stops/Bptecal2"], ["https://tec.openplanner.team/stops/X660aab", "https://tec.openplanner.team/stops/X660aba"], ["https://tec.openplanner.team/stops/H1cu108b", "https://tec.openplanner.team/stops/H1cu131a"], ["https://tec.openplanner.team/stops/Bwatpcs1", "https://tec.openplanner.team/stops/Bwatpcs2"], ["https://tec.openplanner.team/stops/H4tm140b", "https://tec.openplanner.team/stops/H4to133a"], ["https://tec.openplanner.team/stops/Louense2", "https://tec.openplanner.team/stops/Loutras1"], ["https://tec.openplanner.team/stops/H1wi150a", "https://tec.openplanner.team/stops/H1wi153b"], ["https://tec.openplanner.team/stops/Ccyga7", "https://tec.openplanner.team/stops/NH01aca"], ["https://tec.openplanner.team/stops/Cfasamb1", "https://tec.openplanner.team/stops/Cfasamb2"], ["https://tec.openplanner.team/stops/Llgnata1", "https://tec.openplanner.team/stops/Llgnata4"], ["https://tec.openplanner.team/stops/Caccent1", "https://tec.openplanner.team/stops/NC24abb"], ["https://tec.openplanner.team/stops/H4ev119a", "https://tec.openplanner.team/stops/H4sl155b"], ["https://tec.openplanner.team/stops/H2be100a", "https://tec.openplanner.team/stops/H2be102a"], ["https://tec.openplanner.team/stops/Lthfagn1", "https://tec.openplanner.team/stops/Lthfagn2"], ["https://tec.openplanner.team/stops/X775aea", "https://tec.openplanner.team/stops/X775agb"], ["https://tec.openplanner.team/stops/Cmqn5912", "https://tec.openplanner.team/stops/H1ro131b"], ["https://tec.openplanner.team/stops/H2sv214b", "https://tec.openplanner.team/stops/H2sv220a"], ["https://tec.openplanner.team/stops/X982alb", "https://tec.openplanner.team/stops/X982bwa"], ["https://tec.openplanner.team/stops/Cbfstry1", "https://tec.openplanner.team/stops/NC02aba"], ["https://tec.openplanner.team/stops/X869ada", "https://tec.openplanner.team/stops/X869afa"], ["https://tec.openplanner.team/stops/LHCpaci2", "https://tec.openplanner.team/stops/LMNheme1"], ["https://tec.openplanner.team/stops/N513bha", "https://tec.openplanner.team/stops/N521avb"], ["https://tec.openplanner.team/stops/H1cr100a", "https://tec.openplanner.team/stops/H1hl125a"], ["https://tec.openplanner.team/stops/X919aka", "https://tec.openplanner.team/stops/X919akd"], ["https://tec.openplanner.team/stops/X765aeb", "https://tec.openplanner.team/stops/X765afb"], ["https://tec.openplanner.team/stops/H1ht124b", "https://tec.openplanner.team/stops/H1ht197b"], ["https://tec.openplanner.team/stops/X824aba", "https://tec.openplanner.team/stops/X824acb"], ["https://tec.openplanner.team/stops/Lchorme1", "https://tec.openplanner.team/stops/LFebas-1"], ["https://tec.openplanner.team/stops/Bnstgar2", "https://tec.openplanner.team/stops/H3so187b"], ["https://tec.openplanner.team/stops/Lseivoz2", "https://tec.openplanner.team/stops/Lsevico2"], ["https://tec.openplanner.team/stops/N204aia", "https://tec.openplanner.team/stops/N204aja"], ["https://tec.openplanner.team/stops/Bsomtce1", "https://tec.openplanner.team/stops/N584asb"], ["https://tec.openplanner.team/stops/H4my120a", "https://tec.openplanner.team/stops/H4my120b"], ["https://tec.openplanner.team/stops/X818afa", "https://tec.openplanner.team/stops/X818aub"], ["https://tec.openplanner.team/stops/LAYsupe2", "https://tec.openplanner.team/stops/LREraph2"], ["https://tec.openplanner.team/stops/Lhrcite1", "https://tec.openplanner.team/stops/Lhrwigi1"], ["https://tec.openplanner.team/stops/LWHkape1", "https://tec.openplanner.team/stops/LWHmath2"], ["https://tec.openplanner.team/stops/N584bpc", "https://tec.openplanner.team/stops/N584bqa"], ["https://tec.openplanner.team/stops/LCsange1", "https://tec.openplanner.team/stops/LCseg--2"], ["https://tec.openplanner.team/stops/X597aab", "https://tec.openplanner.team/stops/X796afa"], ["https://tec.openplanner.team/stops/X650aib", "https://tec.openplanner.team/stops/X650aka"], ["https://tec.openplanner.team/stops/N501blb", "https://tec.openplanner.team/stops/N501bnb"], ["https://tec.openplanner.team/stops/LBUrout2", "https://tec.openplanner.team/stops/NL30afa"], ["https://tec.openplanner.team/stops/Ctrpn2", "https://tec.openplanner.team/stops/Ctrvert2"], ["https://tec.openplanner.team/stops/H4to137b", "https://tec.openplanner.team/stops/H4to139b"], ["https://tec.openplanner.team/stops/X948aab", "https://tec.openplanner.team/stops/X948arb"], ["https://tec.openplanner.team/stops/Bglacsr1", "https://tec.openplanner.team/stops/Bmrscol1"], ["https://tec.openplanner.team/stops/LVBchau2", "https://tec.openplanner.team/stops/LVBsevr2"], ["https://tec.openplanner.team/stops/H1ms293a", "https://tec.openplanner.team/stops/H1ms312b"], ["https://tec.openplanner.team/stops/LVEdTEC1", "https://tec.openplanner.team/stops/LVEjard2"], ["https://tec.openplanner.team/stops/Llgcbat1", "https://tec.openplanner.team/stops/Llgcbat2"], ["https://tec.openplanner.team/stops/Lrogene*", "https://tec.openplanner.team/stops/Lrogene1"], ["https://tec.openplanner.team/stops/LNCloui1", "https://tec.openplanner.team/stops/LNCpi331"], ["https://tec.openplanner.team/stops/LCelabi2", "https://tec.openplanner.team/stops/LCewaut2"], ["https://tec.openplanner.team/stops/Ceqcfra1", "https://tec.openplanner.team/stops/H1er110a"], ["https://tec.openplanner.team/stops/H5gr137b", "https://tec.openplanner.team/stops/H5st168a"], ["https://tec.openplanner.team/stops/LHEcoll2", "https://tec.openplanner.team/stops/LHEepur2"], ["https://tec.openplanner.team/stops/LPRbrou2", "https://tec.openplanner.team/stops/LPRcha-*"], ["https://tec.openplanner.team/stops/LOehart1", "https://tec.openplanner.team/stops/LOesour1"], ["https://tec.openplanner.team/stops/X824acb", "https://tec.openplanner.team/stops/X824adb"], ["https://tec.openplanner.team/stops/LSPchap2", "https://tec.openplanner.team/stops/LSPxhou1"], ["https://tec.openplanner.team/stops/Ccohotv1", "https://tec.openplanner.team/stops/Ccotrie3"], ["https://tec.openplanner.team/stops/Cchsud06", "https://tec.openplanner.team/stops/Cchsud13"], ["https://tec.openplanner.team/stops/H5qu142a", "https://tec.openplanner.team/stops/H5qu153a"], ["https://tec.openplanner.team/stops/H1el140c", "https://tec.openplanner.team/stops/H1wi151b"], ["https://tec.openplanner.team/stops/X624aib", "https://tec.openplanner.team/stops/X624ajb"], ["https://tec.openplanner.team/stops/Lfhchaf1", "https://tec.openplanner.team/stops/Lfhchaf3"], ["https://tec.openplanner.team/stops/H4hx116b", "https://tec.openplanner.team/stops/H4mo195b"], ["https://tec.openplanner.team/stops/LBkcarr3", "https://tec.openplanner.team/stops/LBkdahl2"], ["https://tec.openplanner.team/stops/H4vx362b", "https://tec.openplanner.team/stops/H4vx365b"], ["https://tec.openplanner.team/stops/NC12adb", "https://tec.openplanner.team/stops/NC23aab"], ["https://tec.openplanner.team/stops/X616afa", "https://tec.openplanner.team/stops/X616aha"], ["https://tec.openplanner.team/stops/LNCneuv1", "https://tec.openplanner.team/stops/LNCsart1"], ["https://tec.openplanner.team/stops/H4wi167b", "https://tec.openplanner.team/stops/H5pe146a"], ["https://tec.openplanner.team/stops/Cthathe1", "https://tec.openplanner.team/stops/Cthathe4"], ["https://tec.openplanner.team/stops/LmNkirc2", "https://tec.openplanner.team/stops/LmNpost1"], ["https://tec.openplanner.team/stops/LHUzoni3", "https://tec.openplanner.team/stops/LTieg--2"], ["https://tec.openplanner.team/stops/H4ma400b", "https://tec.openplanner.team/stops/H4ma417b"], ["https://tec.openplanner.team/stops/Cgyrdid1", "https://tec.openplanner.team/stops/Cgyrdid2"], ["https://tec.openplanner.team/stops/LOunebl1", "https://tec.openplanner.team/stops/X982aad"], ["https://tec.openplanner.team/stops/NL37aia", "https://tec.openplanner.team/stops/NL74aja"], ["https://tec.openplanner.team/stops/LlNbusc1", "https://tec.openplanner.team/stops/LWEcomp1"], ["https://tec.openplanner.team/stops/X882acb", "https://tec.openplanner.team/stops/X882adb"], ["https://tec.openplanner.team/stops/N543baa", "https://tec.openplanner.team/stops/N543bbc"], ["https://tec.openplanner.team/stops/LrAbe601", "https://tec.openplanner.team/stops/LrAknop1"], ["https://tec.openplanner.team/stops/Bchgflo1", "https://tec.openplanner.team/stops/Bopplon2"], ["https://tec.openplanner.team/stops/LWarema1", "https://tec.openplanner.team/stops/LWarema2"], ["https://tec.openplanner.team/stops/LCPecli2", "https://tec.openplanner.team/stops/LMtegli1"], ["https://tec.openplanner.team/stops/Lbogonh1", "https://tec.openplanner.team/stops/Lbogonh4"], ["https://tec.openplanner.team/stops/Lcceg--1", "https://tec.openplanner.team/stops/Lcchala2"], ["https://tec.openplanner.team/stops/LLelava1", "https://tec.openplanner.team/stops/X547ata"], ["https://tec.openplanner.team/stops/H4mb138a", "https://tec.openplanner.team/stops/H4mb138b"], ["https://tec.openplanner.team/stops/X717aha", "https://tec.openplanner.team/stops/X782afb"], ["https://tec.openplanner.team/stops/Blanath2", "https://tec.openplanner.team/stops/Bneelaa1"], ["https://tec.openplanner.team/stops/NC14aeb", "https://tec.openplanner.team/stops/NC14afa"], ["https://tec.openplanner.team/stops/LKmmelo2", "https://tec.openplanner.team/stops/LOdbuis2"], ["https://tec.openplanner.team/stops/X749aca", "https://tec.openplanner.team/stops/X749afa"], ["https://tec.openplanner.team/stops/Bbsifmo1", "https://tec.openplanner.team/stops/Bbsifmo2"], ["https://tec.openplanner.team/stops/LENmc--2", "https://tec.openplanner.team/stops/LENpt--1"], ["https://tec.openplanner.team/stops/X713ada", "https://tec.openplanner.team/stops/X713adb"], ["https://tec.openplanner.team/stops/N106aoa", "https://tec.openplanner.team/stops/N106aob"], ["https://tec.openplanner.team/stops/LoDschu1", "https://tec.openplanner.team/stops/LoDschu2"], ["https://tec.openplanner.team/stops/X910aga", "https://tec.openplanner.team/stops/X910agb"], ["https://tec.openplanner.team/stops/H1og136b", "https://tec.openplanner.team/stops/H5fl104a"], ["https://tec.openplanner.team/stops/Lmibove2", "https://tec.openplanner.team/stops/Lmibove4"], ["https://tec.openplanner.team/stops/LHNecpr1", "https://tec.openplanner.team/stops/LHNecpr4"], ["https://tec.openplanner.team/stops/Cmlcazi1", "https://tec.openplanner.team/stops/Cmlphai2"], ["https://tec.openplanner.team/stops/Crbhurt1", "https://tec.openplanner.team/stops/Crbhurt2"], ["https://tec.openplanner.team/stops/LAyegli2", "https://tec.openplanner.team/stops/LMIlac-1"], ["https://tec.openplanner.team/stops/LWAalou2", "https://tec.openplanner.team/stops/LWAwegg2"], ["https://tec.openplanner.team/stops/LhPprum2", "https://tec.openplanner.team/stops/LwEdorf2"], ["https://tec.openplanner.team/stops/X903aba", "https://tec.openplanner.team/stops/X903aga"], ["https://tec.openplanner.team/stops/X608ana", "https://tec.openplanner.team/stops/X608awa"], ["https://tec.openplanner.team/stops/Bblapin2", "https://tec.openplanner.team/stops/Bblapri1"], ["https://tec.openplanner.team/stops/N501cea", "https://tec.openplanner.team/stops/N521ada"], ["https://tec.openplanner.team/stops/LJAcent2", "https://tec.openplanner.team/stops/LJAhanq4"], ["https://tec.openplanner.team/stops/N551aiy", "https://tec.openplanner.team/stops/N551akb"], ["https://tec.openplanner.team/stops/N539aya", "https://tec.openplanner.team/stops/N585aia"], ["https://tec.openplanner.team/stops/H4lh118a", "https://tec.openplanner.team/stops/H4os223b"], ["https://tec.openplanner.team/stops/LMAbruy2", "https://tec.openplanner.team/stops/LMAchod1"], ["https://tec.openplanner.team/stops/H4be146a", "https://tec.openplanner.team/stops/H5bl118a"], ["https://tec.openplanner.team/stops/LmI82--2", "https://tec.openplanner.team/stops/LmIzent2"], ["https://tec.openplanner.team/stops/N308bib", "https://tec.openplanner.team/stops/N308bjb"], ["https://tec.openplanner.team/stops/X354aea", "https://tec.openplanner.team/stops/X354afa"], ["https://tec.openplanner.team/stops/X345aab", "https://tec.openplanner.team/stops/X345abb"], ["https://tec.openplanner.team/stops/Cpl4bra3", "https://tec.openplanner.team/stops/Cplstfa2"], ["https://tec.openplanner.team/stops/H4wg121b", "https://tec.openplanner.team/stops/H4wg122a"], ["https://tec.openplanner.team/stops/X902aqa", "https://tec.openplanner.team/stops/X902aub"], ["https://tec.openplanner.team/stops/N512aua", "https://tec.openplanner.team/stops/N512ava"], ["https://tec.openplanner.team/stops/Bborche1", "https://tec.openplanner.team/stops/Bhticbr1"], ["https://tec.openplanner.team/stops/H1ob330b", "https://tec.openplanner.team/stops/H1ob333a"], ["https://tec.openplanner.team/stops/H2ca102b", "https://tec.openplanner.team/stops/H2ca111b"], ["https://tec.openplanner.team/stops/H1sb149b", "https://tec.openplanner.team/stops/H1sb151a"], ["https://tec.openplanner.team/stops/LPUchpl2", "https://tec.openplanner.team/stops/LPUmang1"], ["https://tec.openplanner.team/stops/LBjcent1", "https://tec.openplanner.team/stops/X575aib"], ["https://tec.openplanner.team/stops/LLSbajo1", "https://tec.openplanner.team/stops/LLStour2"], ["https://tec.openplanner.team/stops/Lbrddef4", "https://tec.openplanner.team/stops/Llgddef1"], ["https://tec.openplanner.team/stops/X937ada", "https://tec.openplanner.team/stops/X937adb"], ["https://tec.openplanner.team/stops/Cchcase1", "https://tec.openplanner.team/stops/Cchcase2"], ["https://tec.openplanner.team/stops/LkEheyg1", "https://tec.openplanner.team/stops/LkEheyg2"], ["https://tec.openplanner.team/stops/X839afb", "https://tec.openplanner.team/stops/X840aga"], ["https://tec.openplanner.team/stops/LaAburt1", "https://tec.openplanner.team/stops/LaAkapi1"], ["https://tec.openplanner.team/stops/NC44aab", "https://tec.openplanner.team/stops/NC44afa"], ["https://tec.openplanner.team/stops/H5rx115d", "https://tec.openplanner.team/stops/H5rx129b"], ["https://tec.openplanner.team/stops/X801ajb", "https://tec.openplanner.team/stops/X801bma"], ["https://tec.openplanner.team/stops/N167aba", "https://tec.openplanner.team/stops/N234aab"], ["https://tec.openplanner.team/stops/Cfcrerp1", "https://tec.openplanner.team/stops/NH21agb"], ["https://tec.openplanner.team/stops/X637ajb", "https://tec.openplanner.team/stops/X637akb"], ["https://tec.openplanner.team/stops/LCschri1", "https://tec.openplanner.team/stops/LCsgend1"], ["https://tec.openplanner.team/stops/Lemparc2", "https://tec.openplanner.team/stops/Lemsely1"], ["https://tec.openplanner.team/stops/H1fr117a", "https://tec.openplanner.team/stops/H1fr119a"], ["https://tec.openplanner.team/stops/Lfhsoux2", "https://tec.openplanner.team/stops/Lmlboul2"], ["https://tec.openplanner.team/stops/H4ep126b", "https://tec.openplanner.team/stops/H4la199a"], ["https://tec.openplanner.team/stops/Bjdssta1", "https://tec.openplanner.team/stops/Blthvil1"], ["https://tec.openplanner.team/stops/H1pa100a", "https://tec.openplanner.team/stops/H1pa117b"], ["https://tec.openplanner.team/stops/Brixbou2", "https://tec.openplanner.team/stops/Brixroi1"], ["https://tec.openplanner.team/stops/N225aba", "https://tec.openplanner.team/stops/N225ahb"], ["https://tec.openplanner.team/stops/Crofrio2", "https://tec.openplanner.team/stops/Crolema2"], ["https://tec.openplanner.team/stops/LmTreic1", "https://tec.openplanner.team/stops/LmTreic2"], ["https://tec.openplanner.team/stops/LFmbure1", "https://tec.openplanner.team/stops/LFmbure2"], ["https://tec.openplanner.team/stops/H1em102a", "https://tec.openplanner.team/stops/H1em105b"], ["https://tec.openplanner.team/stops/H3so159b", "https://tec.openplanner.team/stops/H3so176a"], ["https://tec.openplanner.team/stops/H2ml114a", "https://tec.openplanner.team/stops/H2mo117b"], ["https://tec.openplanner.team/stops/Caicalv2", "https://tec.openplanner.team/stops/Caigibe2"], ["https://tec.openplanner.team/stops/LmNelis1", "https://tec.openplanner.team/stops/LmNkrew1"], ["https://tec.openplanner.team/stops/NH21aha", "https://tec.openplanner.team/stops/NH21ahb"], ["https://tec.openplanner.team/stops/H4mx116a", "https://tec.openplanner.team/stops/H4po125a"], ["https://tec.openplanner.team/stops/Cobobjo2", "https://tec.openplanner.team/stops/Cobvill2"], ["https://tec.openplanner.team/stops/N244aca", "https://tec.openplanner.team/stops/N251ada"], ["https://tec.openplanner.team/stops/Lbhgare2", "https://tec.openplanner.team/stops/Lbhpeti2"], ["https://tec.openplanner.team/stops/N538aua", "https://tec.openplanner.team/stops/N538aub"], ["https://tec.openplanner.team/stops/H1wa136a", "https://tec.openplanner.team/stops/H1wa137a"], ["https://tec.openplanner.team/stops/N501bka", "https://tec.openplanner.team/stops/N502adb"], ["https://tec.openplanner.team/stops/Cctbifu1", "https://tec.openplanner.team/stops/Cctwaut2"], ["https://tec.openplanner.team/stops/Lsechev2", "https://tec.openplanner.team/stops/Lsefoot1"], ["https://tec.openplanner.team/stops/Cmtpblo2", "https://tec.openplanner.team/stops/Cmtplac3"], ["https://tec.openplanner.team/stops/H5at122a", "https://tec.openplanner.team/stops/H5at133b"], ["https://tec.openplanner.team/stops/LSkmarq2", "https://tec.openplanner.team/stops/LYechpl1"], ["https://tec.openplanner.team/stops/N138aga", "https://tec.openplanner.team/stops/N426acb"], ["https://tec.openplanner.team/stops/Cgzchen1", "https://tec.openplanner.team/stops/Cthha502"], ["https://tec.openplanner.team/stops/LSecomm1", "https://tec.openplanner.team/stops/LTiruel1"], ["https://tec.openplanner.team/stops/Bperalv2", "https://tec.openplanner.team/stops/Btlbmel1"], ["https://tec.openplanner.team/stops/LSItert1", "https://tec.openplanner.team/stops/LSIvieu2"], ["https://tec.openplanner.team/stops/Blhueso1", "https://tec.openplanner.team/stops/Blhutma1"], ["https://tec.openplanner.team/stops/Ccugrtr2", "https://tec.openplanner.team/stops/Ccutill2"], ["https://tec.openplanner.team/stops/X608aia", "https://tec.openplanner.team/stops/X608aib"], ["https://tec.openplanner.team/stops/N230aga", "https://tec.openplanner.team/stops/N230agb"], ["https://tec.openplanner.team/stops/X547abb", "https://tec.openplanner.team/stops/X547ata"], ["https://tec.openplanner.team/stops/LaAgold2", "https://tec.openplanner.team/stops/LaAjahn2"], ["https://tec.openplanner.team/stops/N390afb", "https://tec.openplanner.team/stops/N390ama"], ["https://tec.openplanner.team/stops/X801aaa", "https://tec.openplanner.team/stops/X801abc"], ["https://tec.openplanner.team/stops/H1cu118a", "https://tec.openplanner.team/stops/H1fr122a"], ["https://tec.openplanner.team/stops/H1th182a", "https://tec.openplanner.team/stops/H3go103a"], ["https://tec.openplanner.team/stops/H1me112a", "https://tec.openplanner.team/stops/H1me113b"], ["https://tec.openplanner.team/stops/N503afa", "https://tec.openplanner.team/stops/N503ahb"], ["https://tec.openplanner.team/stops/Cchdagn2", "https://tec.openplanner.team/stops/Ccheden1"], ["https://tec.openplanner.team/stops/N565aia", "https://tec.openplanner.team/stops/N565aib"], ["https://tec.openplanner.team/stops/LDOanes1", "https://tec.openplanner.team/stops/LDObran1"], ["https://tec.openplanner.team/stops/X735aca", "https://tec.openplanner.team/stops/X735acb"], ["https://tec.openplanner.team/stops/N343aea", "https://tec.openplanner.team/stops/N350ada"], ["https://tec.openplanner.team/stops/LlgLAMB3", "https://tec.openplanner.team/stops/LlgLAMB5"], ["https://tec.openplanner.team/stops/N206aab", "https://tec.openplanner.team/stops/N206aba"], ["https://tec.openplanner.team/stops/LhGfl242", "https://tec.openplanner.team/stops/LkEschi2"], ["https://tec.openplanner.team/stops/LRIhous1", "https://tec.openplanner.team/stops/LRIhous2"], ["https://tec.openplanner.team/stops/Bhptpla1", "https://tec.openplanner.team/stops/Bhptpla2"], ["https://tec.openplanner.team/stops/Cbmgare2", "https://tec.openplanner.team/stops/Cbmviv1"], ["https://tec.openplanner.team/stops/H4ag102b", "https://tec.openplanner.team/stops/H4cl114b"], ["https://tec.openplanner.team/stops/Bsgebou1", "https://tec.openplanner.team/stops/Bvilpar1"], ["https://tec.openplanner.team/stops/Blhufro2", "https://tec.openplanner.team/stops/Blhutma1"], ["https://tec.openplanner.team/stops/Lchplai2", "https://tec.openplanner.team/stops/Lchsart1"], ["https://tec.openplanner.team/stops/H1ca104a", "https://tec.openplanner.team/stops/H1ca109a"], ["https://tec.openplanner.team/stops/NH01asa", "https://tec.openplanner.team/stops/NH01asb"], ["https://tec.openplanner.team/stops/Cfcbobr1", "https://tec.openplanner.team/stops/Cfcsaut4"], ["https://tec.openplanner.team/stops/LHUchh-1", "https://tec.openplanner.team/stops/NL80aua"], ["https://tec.openplanner.team/stops/Lhuecol2", "https://tec.openplanner.team/stops/Lhurouh2"], ["https://tec.openplanner.team/stops/Csoforc2", "https://tec.openplanner.team/stops/Csostoc1"], ["https://tec.openplanner.team/stops/N232bca", "https://tec.openplanner.team/stops/N232bcb"], ["https://tec.openplanner.team/stops/LROandr2", "https://tec.openplanner.team/stops/LROchap2"], ["https://tec.openplanner.team/stops/Ceqmeti1", "https://tec.openplanner.team/stops/H1er108a"], ["https://tec.openplanner.team/stops/Llgomal2", "https://tec.openplanner.team/stops/Llgwall1"], ["https://tec.openplanner.team/stops/N211aha", "https://tec.openplanner.team/stops/N211asa"], ["https://tec.openplanner.team/stops/H1qg138a", "https://tec.openplanner.team/stops/H1qg138c"], ["https://tec.openplanner.team/stops/Chhdubr2", "https://tec.openplanner.team/stops/Chhprai1"], ["https://tec.openplanner.team/stops/H4or113b", "https://tec.openplanner.team/stops/H4or116b"], ["https://tec.openplanner.team/stops/Lanothe1", "https://tec.openplanner.team/stops/Lrcchar2"], ["https://tec.openplanner.team/stops/Caihai82", "https://tec.openplanner.team/stops/Caimeno4"], ["https://tec.openplanner.team/stops/X991aea", "https://tec.openplanner.team/stops/X991afa"], ["https://tec.openplanner.team/stops/X749aba", "https://tec.openplanner.team/stops/X749aca"], ["https://tec.openplanner.team/stops/LSoboul2", "https://tec.openplanner.team/stops/LSochal2"], ["https://tec.openplanner.team/stops/Bquebth1", "https://tec.openplanner.team/stops/Bquegob4"], ["https://tec.openplanner.team/stops/LbUmurr1", "https://tec.openplanner.team/stops/LlSbuch1"], ["https://tec.openplanner.team/stops/LDapota1", "https://tec.openplanner.team/stops/LHgroso2"], ["https://tec.openplanner.team/stops/LSkb1352", "https://tec.openplanner.team/stops/LSkmarq1"], ["https://tec.openplanner.team/stops/Cmmjami2", "https://tec.openplanner.team/stops/Cmmschw2"], ["https://tec.openplanner.team/stops/X618ama", "https://tec.openplanner.team/stops/X618ana"], ["https://tec.openplanner.team/stops/LWM759-1", "https://tec.openplanner.team/stops/LWMcent1"], ["https://tec.openplanner.team/stops/LHycent*", "https://tec.openplanner.team/stops/LOnec--2"], ["https://tec.openplanner.team/stops/H4ty353a", "https://tec.openplanner.team/stops/H4ty353b"], ["https://tec.openplanner.team/stops/H2mm136a", "https://tec.openplanner.team/stops/H2mo126b"], ["https://tec.openplanner.team/stops/LATcorn1", "https://tec.openplanner.team/stops/LHUzoni3"], ["https://tec.openplanner.team/stops/H1ob336b", "https://tec.openplanner.team/stops/H1sd343a"], ["https://tec.openplanner.team/stops/N542adb", "https://tec.openplanner.team/stops/N542afa"], ["https://tec.openplanner.team/stops/X886adb", "https://tec.openplanner.team/stops/X886aea"], ["https://tec.openplanner.team/stops/H4ce102a", "https://tec.openplanner.team/stops/H4ce106a"], ["https://tec.openplanner.team/stops/X608ada", "https://tec.openplanner.team/stops/X608aja"], ["https://tec.openplanner.team/stops/LBJplan1", "https://tec.openplanner.team/stops/LMAbass2"], ["https://tec.openplanner.team/stops/H1al105b", "https://tec.openplanner.team/stops/H1al146b"], ["https://tec.openplanner.team/stops/Llgblon1", "https://tec.openplanner.team/stops/Llgblon2"], ["https://tec.openplanner.team/stops/LRObruy3", "https://tec.openplanner.team/stops/LRObruy4"], ["https://tec.openplanner.team/stops/X804awa", "https://tec.openplanner.team/stops/X804bgb"], ["https://tec.openplanner.team/stops/Cvtndam3", "https://tec.openplanner.team/stops/Cvtvois2"], ["https://tec.openplanner.team/stops/N232ahb", "https://tec.openplanner.team/stops/N232bqb"], ["https://tec.openplanner.team/stops/Llgchal2", "https://tec.openplanner.team/stops/Llgcoll1"], ["https://tec.openplanner.team/stops/N145akb", "https://tec.openplanner.team/stops/N150abb"], ["https://tec.openplanner.team/stops/H4co110a", "https://tec.openplanner.team/stops/H4co157a"], ["https://tec.openplanner.team/stops/X804akb", "https://tec.openplanner.team/stops/X804bpa"], ["https://tec.openplanner.team/stops/LLOberl1", "https://tec.openplanner.team/stops/LLOchpl1"], ["https://tec.openplanner.team/stops/X823aba", "https://tec.openplanner.team/stops/X823agb"], ["https://tec.openplanner.team/stops/LAVpequ2", "https://tec.openplanner.team/stops/LVHcent1"], ["https://tec.openplanner.team/stops/X750bpa", "https://tec.openplanner.team/stops/X780adb"], ["https://tec.openplanner.team/stops/X877aaa", "https://tec.openplanner.team/stops/X877aab"], ["https://tec.openplanner.team/stops/Bpermon4", "https://tec.openplanner.team/stops/Bperrcr2"], ["https://tec.openplanner.team/stops/N548ahb", "https://tec.openplanner.team/stops/N569ada"], ["https://tec.openplanner.team/stops/Cdajume1", "https://tec.openplanner.team/stops/Cdaptca2"], ["https://tec.openplanner.team/stops/Ccicent2", "https://tec.openplanner.team/stops/Ccivill2"], ["https://tec.openplanner.team/stops/LFLcent1", "https://tec.openplanner.team/stops/LMvrabo2"], ["https://tec.openplanner.team/stops/H1so136c", "https://tec.openplanner.team/stops/H1so145a"], ["https://tec.openplanner.team/stops/LTRferm2", "https://tec.openplanner.team/stops/LTRoasi2"], ["https://tec.openplanner.team/stops/X621aab", "https://tec.openplanner.team/stops/X621abb"], ["https://tec.openplanner.team/stops/LMIeg--2", "https://tec.openplanner.team/stops/LMIlac-2"], ["https://tec.openplanner.team/stops/N557ada", "https://tec.openplanner.team/stops/N558aab"], ["https://tec.openplanner.team/stops/Lmaelhe1", "https://tec.openplanner.team/stops/Lmagara1"], ["https://tec.openplanner.team/stops/N501jla", "https://tec.openplanner.team/stops/N501joa"], ["https://tec.openplanner.team/stops/LmDhoch2", "https://tec.openplanner.team/stops/LmDhoch3"], ["https://tec.openplanner.team/stops/N309aba", "https://tec.openplanner.team/stops/N313abb"], ["https://tec.openplanner.team/stops/H1qy134a", "https://tec.openplanner.team/stops/H1qy136b"], ["https://tec.openplanner.team/stops/Btsllfp2", "https://tec.openplanner.team/stops/Btsllsc2"], ["https://tec.openplanner.team/stops/Cthrlef2", "https://tec.openplanner.team/stops/Cthrpoi1"], ["https://tec.openplanner.team/stops/LPRbrou1", "https://tec.openplanner.team/stops/LPRbrou2"], ["https://tec.openplanner.team/stops/N501gkb", "https://tec.openplanner.team/stops/N501kxb"], ["https://tec.openplanner.team/stops/H1ms262a", "https://tec.openplanner.team/stops/H1ms265a"], ["https://tec.openplanner.team/stops/X730acb", "https://tec.openplanner.team/stops/X730adb"], ["https://tec.openplanner.team/stops/LHMbelv2", "https://tec.openplanner.team/stops/LHMgrun1"], ["https://tec.openplanner.team/stops/X634aja", "https://tec.openplanner.team/stops/X634akb"], ["https://tec.openplanner.team/stops/Cgzabur1", "https://tec.openplanner.team/stops/Cgzpjeu2"], ["https://tec.openplanner.team/stops/X359aca", "https://tec.openplanner.team/stops/X359aea"], ["https://tec.openplanner.team/stops/LRfcent2", "https://tec.openplanner.team/stops/LRffroi2"], ["https://tec.openplanner.team/stops/LFHjamo1", "https://tec.openplanner.team/stops/LFHjamo2"], ["https://tec.openplanner.team/stops/H4ty343b", "https://tec.openplanner.team/stops/H4ty344b"], ["https://tec.openplanner.team/stops/LBEoblu1", "https://tec.openplanner.team/stops/LTIsain1"], ["https://tec.openplanner.team/stops/X681afa", "https://tec.openplanner.team/stops/X681agb"], ["https://tec.openplanner.team/stops/Cnadepo1", "https://tec.openplanner.team/stops/Cnadepo2"], ["https://tec.openplanner.team/stops/H4ka193a", "https://tec.openplanner.team/stops/H4ka193b"], ["https://tec.openplanner.team/stops/LkEbran2", "https://tec.openplanner.team/stops/LMsbusc2"], ["https://tec.openplanner.team/stops/H4lz164a", "https://tec.openplanner.team/stops/H4tp147b"], ["https://tec.openplanner.team/stops/Blemhon1", "https://tec.openplanner.team/stops/Blempuc1"], ["https://tec.openplanner.team/stops/Cchalou2", "https://tec.openplanner.team/stops/Clojone1"], ["https://tec.openplanner.team/stops/LSPplat2", "https://tec.openplanner.team/stops/LSPptch1"], ["https://tec.openplanner.team/stops/X342abb", "https://tec.openplanner.team/stops/X342aca"], ["https://tec.openplanner.team/stops/Cmg4bra2", "https://tec.openplanner.team/stops/Cmghay1"], ["https://tec.openplanner.team/stops/LHEjose1", "https://tec.openplanner.team/stops/LHEjose2"], ["https://tec.openplanner.team/stops/Blincal1", "https://tec.openplanner.team/stops/Blincal2"], ["https://tec.openplanner.team/stops/X741aaa", "https://tec.openplanner.team/stops/X752aab"], ["https://tec.openplanner.team/stops/N543ala", "https://tec.openplanner.team/stops/N543alb"], ["https://tec.openplanner.team/stops/X619aic", "https://tec.openplanner.team/stops/X620aea"], ["https://tec.openplanner.team/stops/Cgycvie1", "https://tec.openplanner.team/stops/Cgygayo4"], ["https://tec.openplanner.team/stops/N308adb", "https://tec.openplanner.team/stops/N308afb"], ["https://tec.openplanner.team/stops/LBCtros1", "https://tec.openplanner.team/stops/LMTdeho1"], ["https://tec.openplanner.team/stops/N525aca", "https://tec.openplanner.team/stops/N525acb"], ["https://tec.openplanner.team/stops/N101aia", "https://tec.openplanner.team/stops/N101aic"], ["https://tec.openplanner.team/stops/LLUalou2", "https://tec.openplanner.team/stops/LLUvent5"], ["https://tec.openplanner.team/stops/LVLmabi1", "https://tec.openplanner.team/stops/LVLmart2"], ["https://tec.openplanner.team/stops/H4lh161a", "https://tec.openplanner.team/stops/H5wo127a"], ["https://tec.openplanner.team/stops/Bovesnh2", "https://tec.openplanner.team/stops/Bovetwe1"], ["https://tec.openplanner.team/stops/H1br129a", "https://tec.openplanner.team/stops/H3bo100c"], ["https://tec.openplanner.team/stops/LMEcour1", "https://tec.openplanner.team/stops/LMIpast2"], ["https://tec.openplanner.team/stops/N543btb", "https://tec.openplanner.team/stops/N543cpa"], ["https://tec.openplanner.team/stops/NL77ana", "https://tec.openplanner.team/stops/NL78aab"], ["https://tec.openplanner.team/stops/H4gz114a", "https://tec.openplanner.team/stops/H4gz114b"], ["https://tec.openplanner.team/stops/N304aba", "https://tec.openplanner.team/stops/N305aaa"], ["https://tec.openplanner.team/stops/LAMcime2", "https://tec.openplanner.team/stops/LAMjaur2"], ["https://tec.openplanner.team/stops/X753aab", "https://tec.openplanner.team/stops/X753abc"], ["https://tec.openplanner.team/stops/LaAmise2", "https://tec.openplanner.team/stops/LaAronh1"], ["https://tec.openplanner.team/stops/LNEcouc2", "https://tec.openplanner.team/stops/LNEpass2"], ["https://tec.openplanner.team/stops/N576abb", "https://tec.openplanner.team/stops/N576akb"], ["https://tec.openplanner.team/stops/LCEhayo2", "https://tec.openplanner.team/stops/LCEplac2"], ["https://tec.openplanner.team/stops/LMheg--2", "https://tec.openplanner.team/stops/Lprmana4"], ["https://tec.openplanner.team/stops/H5pe133b", "https://tec.openplanner.team/stops/H5pe141b"], ["https://tec.openplanner.team/stops/LaUn1--3", "https://tec.openplanner.team/stops/LmS11--2"], ["https://tec.openplanner.team/stops/Cmlener1", "https://tec.openplanner.team/stops/Cmlvesp1"], ["https://tec.openplanner.team/stops/Lengran2", "https://tec.openplanner.team/stops/Lenptsa2"], ["https://tec.openplanner.team/stops/N236aba", "https://tec.openplanner.team/stops/N236abb"], ["https://tec.openplanner.team/stops/LRarami1", "https://tec.openplanner.team/stops/LRarami2"], ["https://tec.openplanner.team/stops/Bvilcha1", "https://tec.openplanner.team/stops/Bvilcha2"], ["https://tec.openplanner.team/stops/H2mo122d", "https://tec.openplanner.team/stops/H2mo145b"], ["https://tec.openplanner.team/stops/Crarmas2", "https://tec.openplanner.team/stops/Cravign4"], ["https://tec.openplanner.team/stops/LEntrix2", "https://tec.openplanner.team/stops/NL67acb"], ["https://tec.openplanner.team/stops/LHYdogn2", "https://tec.openplanner.team/stops/LSEquar2"], ["https://tec.openplanner.team/stops/N528aab", "https://tec.openplanner.team/stops/N528arc"], ["https://tec.openplanner.team/stops/Cgobl%C3%A9r2", "https://tec.openplanner.team/stops/Cwxchap2"], ["https://tec.openplanner.team/stops/LSPmari1", "https://tec.openplanner.team/stops/LSPmari2"], ["https://tec.openplanner.team/stops/Bbiehec1", "https://tec.openplanner.team/stops/Bbiehpo1"], ["https://tec.openplanner.team/stops/Ccojaur2", "https://tec.openplanner.team/stops/Ccojaur3"], ["https://tec.openplanner.team/stops/H4av102a", "https://tec.openplanner.team/stops/H4ef165c"], ["https://tec.openplanner.team/stops/LKmcite1", "https://tec.openplanner.team/stops/LKmdani1"], ["https://tec.openplanner.team/stops/H1ho122a", "https://tec.openplanner.team/stops/H1ho137a"], ["https://tec.openplanner.team/stops/Cci4091", "https://tec.openplanner.team/stops/Ccimont1"], ["https://tec.openplanner.team/stops/N131afb", "https://tec.openplanner.team/stops/N132afa"], ["https://tec.openplanner.team/stops/Ccymabo2", "https://tec.openplanner.team/stops/Csrcarr1"], ["https://tec.openplanner.team/stops/Bitrhou1", "https://tec.openplanner.team/stops/Bitrhou2"], ["https://tec.openplanner.team/stops/Bboncfv1", "https://tec.openplanner.team/stops/Bchgegl1"], ["https://tec.openplanner.team/stops/Cgzabau3", "https://tec.openplanner.team/stops/Cgzmira1"], ["https://tec.openplanner.team/stops/Bincfer1", "https://tec.openplanner.team/stops/Binclon1"], ["https://tec.openplanner.team/stops/LkTraer2", "https://tec.openplanner.team/stops/LkTweih2"], ["https://tec.openplanner.team/stops/N543bba", "https://tec.openplanner.team/stops/N554aba"], ["https://tec.openplanner.team/stops/N103aab", "https://tec.openplanner.team/stops/N103aba"], ["https://tec.openplanner.team/stops/H1mr124a", "https://tec.openplanner.team/stops/H1mr125b"], ["https://tec.openplanner.team/stops/LMsviad1", "https://tec.openplanner.team/stops/LMsvill1"], ["https://tec.openplanner.team/stops/Lagpaix2", "https://tec.openplanner.team/stops/Llgcond2"], ["https://tec.openplanner.team/stops/Cchdigu2", "https://tec.openplanner.team/stops/Cchtram2"], ["https://tec.openplanner.team/stops/Livroch1", "https://tec.openplanner.team/stops/Livroch2"], ["https://tec.openplanner.team/stops/Bwolvan1", "https://tec.openplanner.team/stops/Bwolvan2"], ["https://tec.openplanner.team/stops/H4ss154b", "https://tec.openplanner.team/stops/H4ss156a"], ["https://tec.openplanner.team/stops/Lenclar2", "https://tec.openplanner.team/stops/Lvehout1"], ["https://tec.openplanner.team/stops/Ccobour1", "https://tec.openplanner.team/stops/Cgxvvel1"], ["https://tec.openplanner.team/stops/Llghori2", "https://tec.openplanner.team/stops/Llgtir-1"], ["https://tec.openplanner.team/stops/Blindel1", "https://tec.openplanner.team/stops/Blinhue1"], ["https://tec.openplanner.team/stops/Bbeardu2", "https://tec.openplanner.team/stops/Bbeascl2"], ["https://tec.openplanner.team/stops/LFocent2", "https://tec.openplanner.team/stops/LFothie2"], ["https://tec.openplanner.team/stops/LNCchau2", "https://tec.openplanner.team/stops/LNCvill2"], ["https://tec.openplanner.team/stops/LrDschl1", "https://tec.openplanner.team/stops/LrDschl2"], ["https://tec.openplanner.team/stops/LHTbonn1", "https://tec.openplanner.team/stops/LHTbonn2"], ["https://tec.openplanner.team/stops/LjeGRPMA", "https://tec.openplanner.team/stops/Lsekubo1"], ["https://tec.openplanner.team/stops/X641aka", "https://tec.openplanner.team/stops/X641ala"], ["https://tec.openplanner.team/stops/Bchgvil1", "https://tec.openplanner.team/stops/Bchgvil2"], ["https://tec.openplanner.team/stops/N557afa", "https://tec.openplanner.team/stops/N557afb"], ["https://tec.openplanner.team/stops/Ljuroch2", "https://tec.openplanner.team/stops/Ljuvert2"], ["https://tec.openplanner.team/stops/LWRferm2", "https://tec.openplanner.team/stops/LWRtroi2"], ["https://tec.openplanner.team/stops/Btslnil2", "https://tec.openplanner.team/stops/Btslpbr1"], ["https://tec.openplanner.team/stops/LhOzent1", "https://tec.openplanner.team/stops/LhOzent2"], ["https://tec.openplanner.team/stops/Lbococh2", "https://tec.openplanner.team/stops/Lbocorn1"], ["https://tec.openplanner.team/stops/Llgfoss2", "https://tec.openplanner.team/stops/Llglonh2"], ["https://tec.openplanner.team/stops/X817aaa", "https://tec.openplanner.team/stops/X817aba"], ["https://tec.openplanner.team/stops/Btubsam1", "https://tec.openplanner.team/stops/Btubsam2"], ["https://tec.openplanner.team/stops/N543bpb", "https://tec.openplanner.team/stops/N543cha"], ["https://tec.openplanner.team/stops/X822aga", "https://tec.openplanner.team/stops/X822aka"], ["https://tec.openplanner.team/stops/Cfcchas2", "https://tec.openplanner.team/stops/Cfcstan1"], ["https://tec.openplanner.team/stops/Cmecime1", "https://tec.openplanner.team/stops/Cmerlme1"], ["https://tec.openplanner.team/stops/H1by100a", "https://tec.openplanner.team/stops/H1by107b"], ["https://tec.openplanner.team/stops/LBRgare2", "https://tec.openplanner.team/stops/LBRpt--2"], ["https://tec.openplanner.team/stops/LBNlong1", "https://tec.openplanner.team/stops/LBNlong2"], ["https://tec.openplanner.team/stops/Csobail1", "https://tec.openplanner.team/stops/Csochea2"], ["https://tec.openplanner.team/stops/H4cp103a", "https://tec.openplanner.team/stops/H4cp103b"], ["https://tec.openplanner.team/stops/LHMchev1", "https://tec.openplanner.team/stops/LHMgulp2"], ["https://tec.openplanner.team/stops/Bbcoeco2", "https://tec.openplanner.team/stops/Bbcogpl2"], ["https://tec.openplanner.team/stops/X639aia", "https://tec.openplanner.team/stops/X639ata"], ["https://tec.openplanner.team/stops/N527aca", "https://tec.openplanner.team/stops/N527acb"], ["https://tec.openplanner.team/stops/X902ana", "https://tec.openplanner.team/stops/X902asa"], ["https://tec.openplanner.team/stops/H1eo106a", "https://tec.openplanner.team/stops/H1mj126a"], ["https://tec.openplanner.team/stops/N101aoa", "https://tec.openplanner.team/stops/N101aob"], ["https://tec.openplanner.team/stops/LbUhons2", "https://tec.openplanner.team/stops/LbUmolk2"], ["https://tec.openplanner.team/stops/Crcrgar1", "https://tec.openplanner.team/stops/NH03afb"], ["https://tec.openplanner.team/stops/LHEclef2", "https://tec.openplanner.team/stops/LHEjose2"], ["https://tec.openplanner.team/stops/X902agb", "https://tec.openplanner.team/stops/X902ajb"], ["https://tec.openplanner.team/stops/Cmitrie2", "https://tec.openplanner.team/stops/Cmivert2"], ["https://tec.openplanner.team/stops/H4am101a", "https://tec.openplanner.team/stops/H4am101b"], ["https://tec.openplanner.team/stops/X602aca", "https://tec.openplanner.team/stops/X602afa"], ["https://tec.openplanner.team/stops/Bnodlce2", "https://tec.openplanner.team/stops/Boplham1"], ["https://tec.openplanner.team/stops/LBLvici1", "https://tec.openplanner.team/stops/LBLvici2"], ["https://tec.openplanner.team/stops/LhEbruc1", "https://tec.openplanner.team/stops/LhEtivo2"], ["https://tec.openplanner.team/stops/H4eg103a", "https://tec.openplanner.team/stops/H4eg103b"], ["https://tec.openplanner.team/stops/Cgocalv2", "https://tec.openplanner.team/stops/CMcalv2"], ["https://tec.openplanner.team/stops/X768ald", "https://tec.openplanner.team/stops/X768amb"], ["https://tec.openplanner.team/stops/LETtemp1", "https://tec.openplanner.team/stops/LMIlac-2"], ["https://tec.openplanner.team/stops/Cmesncv1", "https://tec.openplanner.team/stops/Cmesncv3"], ["https://tec.openplanner.team/stops/Llgmass1", "https://tec.openplanner.team/stops/Llgsorb2"], ["https://tec.openplanner.team/stops/LCPaube1", "https://tec.openplanner.team/stops/LLNeg--1"], ["https://tec.openplanner.team/stops/Cdaptca1", "https://tec.openplanner.team/stops/CMdamp2"], ["https://tec.openplanner.team/stops/Bbldgar1", "https://tec.openplanner.team/stops/Bbldvaa1"], ["https://tec.openplanner.team/stops/N570aaa", "https://tec.openplanner.team/stops/N570aba"], ["https://tec.openplanner.team/stops/X659ara", "https://tec.openplanner.team/stops/X659arb"], ["https://tec.openplanner.team/stops/N501cia", "https://tec.openplanner.team/stops/N501cja"], ["https://tec.openplanner.team/stops/Cflpost2", "https://tec.openplanner.team/stops/Cwgcroi1"], ["https://tec.openplanner.team/stops/X750aia", "https://tec.openplanner.team/stops/X750aka"], ["https://tec.openplanner.team/stops/H4pp121b", "https://tec.openplanner.team/stops/H4qu230a"], ["https://tec.openplanner.team/stops/Lmlec--1", "https://tec.openplanner.team/stops/Lmleg--2"], ["https://tec.openplanner.team/stops/NR21aia", "https://tec.openplanner.team/stops/NR38aca"], ["https://tec.openplanner.team/stops/H4fr142b", "https://tec.openplanner.team/stops/H4fr145b"], ["https://tec.openplanner.team/stops/N532aja", "https://tec.openplanner.team/stops/N533adb"], ["https://tec.openplanner.team/stops/N251aab", "https://tec.openplanner.team/stops/N286aba"], ["https://tec.openplanner.team/stops/Bgemkal1", "https://tec.openplanner.team/stops/N541acb"], ["https://tec.openplanner.team/stops/Lprchat2", "https://tec.openplanner.team/stops/Lprperr1"], ["https://tec.openplanner.team/stops/Bcrncen1", "https://tec.openplanner.team/stops/Bcrnegl2"], ["https://tec.openplanner.team/stops/Bmarvil2", "https://tec.openplanner.team/stops/Csawagn2"], ["https://tec.openplanner.team/stops/Bhalrat2", "https://tec.openplanner.team/stops/Bhalwat2"], ["https://tec.openplanner.team/stops/H4gz114b", "https://tec.openplanner.team/stops/H4lz155a"], ["https://tec.openplanner.team/stops/LYegeor2", "https://tec.openplanner.team/stops/LYegeor4"], ["https://tec.openplanner.team/stops/LmDdenk2", "https://tec.openplanner.team/stops/LsVfeye1"], ["https://tec.openplanner.team/stops/Bixlfla2", "https://tec.openplanner.team/stops/Bixllep2"], ["https://tec.openplanner.team/stops/X614awa", "https://tec.openplanner.team/stops/X615aua"], ["https://tec.openplanner.team/stops/X892acb", "https://tec.openplanner.team/stops/X892afb"], ["https://tec.openplanner.team/stops/X879aca", "https://tec.openplanner.team/stops/X879afa"], ["https://tec.openplanner.team/stops/N521aja", "https://tec.openplanner.team/stops/N521alb"], ["https://tec.openplanner.team/stops/LBQmaye2", "https://tec.openplanner.team/stops/X919aba"], ["https://tec.openplanner.team/stops/N532aca", "https://tec.openplanner.team/stops/N533aga"], ["https://tec.openplanner.team/stops/H4ag104b", "https://tec.openplanner.team/stops/H4cl114b"], ["https://tec.openplanner.team/stops/X641aga", "https://tec.openplanner.team/stops/X641aja"], ["https://tec.openplanner.team/stops/H1ma230b", "https://tec.openplanner.team/stops/H1ma237b"], ["https://tec.openplanner.team/stops/H2bh103d", "https://tec.openplanner.team/stops/H2bh108b"], ["https://tec.openplanner.team/stops/N513abb", "https://tec.openplanner.team/stops/N513aea"], ["https://tec.openplanner.team/stops/Canmonu2", "https://tec.openplanner.team/stops/Canplal1"], ["https://tec.openplanner.team/stops/Llgddef2", "https://tec.openplanner.team/stops/Llgrass1"], ["https://tec.openplanner.team/stops/Ccogibr1", "https://tec.openplanner.team/stops/Ccostan1"], ["https://tec.openplanner.team/stops/Lmomarr1", "https://tec.openplanner.team/stops/Lmomarr4"], ["https://tec.openplanner.team/stops/LVNwanz2", "https://tec.openplanner.team/stops/LWzwanz2"], ["https://tec.openplanner.team/stops/Bottpar2", "https://tec.openplanner.team/stops/Bottvtc2"], ["https://tec.openplanner.team/stops/N553aaa", "https://tec.openplanner.team/stops/N553akb"], ["https://tec.openplanner.team/stops/X901afa", "https://tec.openplanner.team/stops/X901aia"], ["https://tec.openplanner.team/stops/Cchcase2", "https://tec.openplanner.team/stops/Cchcase4"], ["https://tec.openplanner.team/stops/H4mo151a", "https://tec.openplanner.team/stops/H4mo190a"], ["https://tec.openplanner.team/stops/X763aaa", "https://tec.openplanner.team/stops/X764aab"], ["https://tec.openplanner.team/stops/Bcrbrpb2", "https://tec.openplanner.team/stops/Bmsgrco1"], ["https://tec.openplanner.team/stops/N109aca", "https://tec.openplanner.team/stops/N122aaa"], ["https://tec.openplanner.team/stops/H1ci105b", "https://tec.openplanner.team/stops/H1mv238a"], ["https://tec.openplanner.team/stops/X653aaa", "https://tec.openplanner.team/stops/X667acb"], ["https://tec.openplanner.team/stops/Llgongr1", "https://tec.openplanner.team/stops/Llgongr4"], ["https://tec.openplanner.team/stops/N874acb", "https://tec.openplanner.team/stops/N874aeb"], ["https://tec.openplanner.team/stops/H1ha184a", "https://tec.openplanner.team/stops/H1ha184b"], ["https://tec.openplanner.team/stops/Ladfoot1", "https://tec.openplanner.team/stops/Lveptre2"], ["https://tec.openplanner.team/stops/X754aha", "https://tec.openplanner.team/stops/X754ahb"], ["https://tec.openplanner.team/stops/LWbburn2", "https://tec.openplanner.team/stops/LWbregn2"], ["https://tec.openplanner.team/stops/Lsteduc1", "https://tec.openplanner.team/stops/Lsteduc2"], ["https://tec.openplanner.team/stops/Bgnvgir1", "https://tec.openplanner.team/stops/Bgnvoha3"], ["https://tec.openplanner.team/stops/Cmcgoch2", "https://tec.openplanner.team/stops/Cmgvpa"], ["https://tec.openplanner.team/stops/LHMgulp1", "https://tec.openplanner.team/stops/LHMthys1"], ["https://tec.openplanner.team/stops/N124aba", "https://tec.openplanner.team/stops/N125aab"], ["https://tec.openplanner.team/stops/X917afa", "https://tec.openplanner.team/stops/X917ahb"], ["https://tec.openplanner.team/stops/H1ms260b", "https://tec.openplanner.team/stops/H1ms264a"], ["https://tec.openplanner.team/stops/N524afb", "https://tec.openplanner.team/stops/N524amb"], ["https://tec.openplanner.team/stops/Bsdabja2", "https://tec.openplanner.team/stops/Csdfboi1"], ["https://tec.openplanner.team/stops/Bwatcpe1", "https://tec.openplanner.team/stops/Bwatpro2"], ["https://tec.openplanner.team/stops/N514ahb", "https://tec.openplanner.team/stops/N515akb"], ["https://tec.openplanner.team/stops/Berngrt1", "https://tec.openplanner.team/stops/Bernrar2"], ["https://tec.openplanner.team/stops/LHMbach2", "https://tec.openplanner.team/stops/LHMthys2"], ["https://tec.openplanner.team/stops/X651aea", "https://tec.openplanner.team/stops/X651afb"], ["https://tec.openplanner.team/stops/NL76aqa", "https://tec.openplanner.team/stops/NL76aqb"], ["https://tec.openplanner.team/stops/LLNbeau2", "https://tec.openplanner.team/stops/LSpbawe2"], ["https://tec.openplanner.team/stops/N511aga", "https://tec.openplanner.team/stops/N511agb"], ["https://tec.openplanner.team/stops/Cbuegl2", "https://tec.openplanner.team/stops/Ceregl2"], ["https://tec.openplanner.team/stops/Ccicent3", "https://tec.openplanner.team/stops/Ccivill2"], ["https://tec.openplanner.team/stops/Bhenpln1", "https://tec.openplanner.team/stops/Bhenrcr1"], ["https://tec.openplanner.team/stops/H1lb137b", "https://tec.openplanner.team/stops/H1lb154a"], ["https://tec.openplanner.team/stops/X651acd", "https://tec.openplanner.team/stops/X651aea"], ["https://tec.openplanner.team/stops/LFPloob1", "https://tec.openplanner.team/stops/LFPzwaa1"], ["https://tec.openplanner.team/stops/X993ada", "https://tec.openplanner.team/stops/X994aka"], ["https://tec.openplanner.team/stops/H1er106b", "https://tec.openplanner.team/stops/H1gg145b"], ["https://tec.openplanner.team/stops/Lfhbott1", "https://tec.openplanner.team/stops/Lfhcime1"], ["https://tec.openplanner.team/stops/N506bba", "https://tec.openplanner.team/stops/N512axa"], ["https://tec.openplanner.team/stops/N501hza", "https://tec.openplanner.team/stops/N501ipb"], ["https://tec.openplanner.team/stops/Bwavnep1", "https://tec.openplanner.team/stops/Bwavnep2"], ["https://tec.openplanner.team/stops/LMOecsp1", "https://tec.openplanner.team/stops/LMOfleu1"], ["https://tec.openplanner.team/stops/LHdvill1", "https://tec.openplanner.team/stops/LVtvalu1"], ["https://tec.openplanner.team/stops/Lanpast1", "https://tec.openplanner.team/stops/Lanpast2"], ["https://tec.openplanner.team/stops/LCvneu-1", "https://tec.openplanner.team/stops/LCvneu-2"], ["https://tec.openplanner.team/stops/X611aca", "https://tec.openplanner.team/stops/X646ada"], ["https://tec.openplanner.team/stops/X619abb", "https://tec.openplanner.team/stops/X619abc"], ["https://tec.openplanner.team/stops/LHUtrin1", "https://tec.openplanner.team/stops/LVbsurr1"], ["https://tec.openplanner.team/stops/Lanfont1", "https://tec.openplanner.team/stops/Lanlona2"], ["https://tec.openplanner.team/stops/N525agb", "https://tec.openplanner.team/stops/N525ahb"], ["https://tec.openplanner.team/stops/X986aib", "https://tec.openplanner.team/stops/X986ata"], ["https://tec.openplanner.team/stops/H2re167a", "https://tec.openplanner.team/stops/H2re167b"], ["https://tec.openplanner.team/stops/N543bfa", "https://tec.openplanner.team/stops/N543bfb"], ["https://tec.openplanner.team/stops/X746ahc", "https://tec.openplanner.team/stops/X746ahd"], ["https://tec.openplanner.team/stops/N570aba", "https://tec.openplanner.team/stops/N570aca"], ["https://tec.openplanner.team/stops/LBavive2", "https://tec.openplanner.team/stops/LTAairi2"], ["https://tec.openplanner.team/stops/H1ni322a", "https://tec.openplanner.team/stops/H1ni322b"], ["https://tec.openplanner.team/stops/H1ms258a", "https://tec.openplanner.team/stops/H1ms279a"], ["https://tec.openplanner.team/stops/LWRcruc2", "https://tec.openplanner.team/stops/LWRgare1"], ["https://tec.openplanner.team/stops/N874aba", "https://tec.openplanner.team/stops/X887aab"], ["https://tec.openplanner.team/stops/N501cba", "https://tec.openplanner.team/stops/N521aqb"], ["https://tec.openplanner.team/stops/LrUgeme2", "https://tec.openplanner.team/stops/LrUlasc2"], ["https://tec.openplanner.team/stops/X911aib", "https://tec.openplanner.team/stops/X911akb"], ["https://tec.openplanner.team/stops/H4ch116a", "https://tec.openplanner.team/stops/H4ch116b"], ["https://tec.openplanner.team/stops/X747aaa", "https://tec.openplanner.team/stops/X747aab"], ["https://tec.openplanner.team/stops/N121abb", "https://tec.openplanner.team/stops/N122ada"], ["https://tec.openplanner.team/stops/Cmmheur2", "https://tec.openplanner.team/stops/Cmmjami1"], ["https://tec.openplanner.team/stops/H2hp116b", "https://tec.openplanner.team/stops/H2ll197a"], ["https://tec.openplanner.team/stops/LEMgren*", "https://tec.openplanner.team/stops/LPldoua3"], ["https://tec.openplanner.team/stops/H2bh107a", "https://tec.openplanner.team/stops/H2jo164a"], ["https://tec.openplanner.team/stops/Bllnjpa1", "https://tec.openplanner.team/stops/Bllnjpa2"], ["https://tec.openplanner.team/stops/LESchat1", "https://tec.openplanner.team/stops/LESchat2"], ["https://tec.openplanner.team/stops/LLReg--2", "https://tec.openplanner.team/stops/LLRsalm1"], ["https://tec.openplanner.team/stops/Lstpole1", "https://tec.openplanner.team/stops/Lstscie1"], ["https://tec.openplanner.team/stops/LMHtill1", "https://tec.openplanner.team/stops/NL73aea"], ["https://tec.openplanner.team/stops/LAxbott1", "https://tec.openplanner.team/stops/LHSlava2"], ["https://tec.openplanner.team/stops/LAMfrai2", "https://tec.openplanner.team/stops/LAMwall1"], ["https://tec.openplanner.team/stops/LLMjacq2", "https://tec.openplanner.team/stops/LThelse1"], ["https://tec.openplanner.team/stops/LPrcarr2", "https://tec.openplanner.team/stops/LSyeg--2"], ["https://tec.openplanner.team/stops/H1gy111b", "https://tec.openplanner.team/stops/H1gy115a"], ["https://tec.openplanner.team/stops/H1bo102a", "https://tec.openplanner.team/stops/H1ht126b"], ["https://tec.openplanner.team/stops/LSGbail1", "https://tec.openplanner.team/stops/LYechpl1"], ["https://tec.openplanner.team/stops/H1je213b", "https://tec.openplanner.team/stops/H1je220a"], ["https://tec.openplanner.team/stops/Blascim2", "https://tec.openplanner.team/stops/Bohncha1"], ["https://tec.openplanner.team/stops/Baudsta2", "https://tec.openplanner.team/stops/Bkrabhu2"], ["https://tec.openplanner.team/stops/N531aja", "https://tec.openplanner.team/stops/N531akb"], ["https://tec.openplanner.team/stops/Csepote1", "https://tec.openplanner.team/stops/Csesabo2"], ["https://tec.openplanner.team/stops/Bixllep1", "https://tec.openplanner.team/stops/Buccdho2"], ["https://tec.openplanner.team/stops/H3bi104a", "https://tec.openplanner.team/stops/H3bi105d"], ["https://tec.openplanner.team/stops/Cmybefe2", "https://tec.openplanner.team/stops/Cmymaco2"], ["https://tec.openplanner.team/stops/H4ba102a", "https://tec.openplanner.team/stops/H4ba103b"], ["https://tec.openplanner.team/stops/LDOandr2", "https://tec.openplanner.team/stops/LDOandr4"], ["https://tec.openplanner.team/stops/Bgzddfh2", "https://tec.openplanner.team/stops/Bgzddur2"], ["https://tec.openplanner.team/stops/H2bh113a", "https://tec.openplanner.team/stops/H2ll194b"], ["https://tec.openplanner.team/stops/Lousimo1", "https://tec.openplanner.team/stops/Lseblan*"], ["https://tec.openplanner.team/stops/LbTmons2", "https://tec.openplanner.team/stops/LbTmuhl1"], ["https://tec.openplanner.team/stops/H1lb154a", "https://tec.openplanner.team/stops/H1pa167a"], ["https://tec.openplanner.team/stops/Chppack1", "https://tec.openplanner.team/stops/Crachap2"], ["https://tec.openplanner.team/stops/X636ata", "https://tec.openplanner.team/stops/X636aua"], ["https://tec.openplanner.team/stops/X733ahb", "https://tec.openplanner.team/stops/X733aia"], ["https://tec.openplanner.team/stops/N534boh", "https://tec.openplanner.team/stops/N534bvb"], ["https://tec.openplanner.team/stops/X940aeb", "https://tec.openplanner.team/stops/X940aec"], ["https://tec.openplanner.team/stops/X638adb", "https://tec.openplanner.team/stops/X638aeb"], ["https://tec.openplanner.team/stops/LAUbirv1", "https://tec.openplanner.team/stops/LLCeg--2"], ["https://tec.openplanner.team/stops/Bbiehec2", "https://tec.openplanner.team/stops/Bbiehpo2"], ["https://tec.openplanner.team/stops/H1hn210a", "https://tec.openplanner.team/stops/H1hn363a"], ["https://tec.openplanner.team/stops/Bhengri2", "https://tec.openplanner.team/stops/Bvirrbo2"], ["https://tec.openplanner.team/stops/N501fna", "https://tec.openplanner.team/stops/N501fpb"], ["https://tec.openplanner.team/stops/N236aha", "https://tec.openplanner.team/stops/N236apa"], ["https://tec.openplanner.team/stops/Ctrrpla1", "https://tec.openplanner.team/stops/Ctrvert2"], ["https://tec.openplanner.team/stops/LMamuse4", "https://tec.openplanner.team/stops/LMazonn3"], ["https://tec.openplanner.team/stops/H5pe135a", "https://tec.openplanner.team/stops/H5pe153a"], ["https://tec.openplanner.team/stops/LSOcime2", "https://tec.openplanner.team/stops/LSOfech2"], ["https://tec.openplanner.team/stops/X840acd", "https://tec.openplanner.team/stops/X840adb"], ["https://tec.openplanner.team/stops/Bpieh171", "https://tec.openplanner.team/stops/Bpiehvi1"], ["https://tec.openplanner.team/stops/Cna4che2", "https://tec.openplanner.team/stops/Cna6che2"], ["https://tec.openplanner.team/stops/X886aaa", "https://tec.openplanner.team/stops/X886aab"], ["https://tec.openplanner.team/stops/X361afa", "https://tec.openplanner.team/stops/X371ajb"], ["https://tec.openplanner.team/stops/X882amc", "https://tec.openplanner.team/stops/X882amd"], ["https://tec.openplanner.team/stops/Brebblo1", "https://tec.openplanner.team/stops/Brebblo2"], ["https://tec.openplanner.team/stops/Bdlvpco2", "https://tec.openplanner.team/stops/Bdvmsar1"], ["https://tec.openplanner.team/stops/H1eo108b", "https://tec.openplanner.team/stops/H1ni319a"], ["https://tec.openplanner.team/stops/LLUdoya1", "https://tec.openplanner.team/stops/LLUdoya2"], ["https://tec.openplanner.team/stops/Lbrgrot1", "https://tec.openplanner.team/stops/Lbrgrot2"], ["https://tec.openplanner.team/stops/X762aeb", "https://tec.openplanner.team/stops/X762afb"], ["https://tec.openplanner.team/stops/Cbweco1", "https://tec.openplanner.team/stops/Cmgcabi1"], ["https://tec.openplanner.team/stops/H1bo108a", "https://tec.openplanner.team/stops/H1bo108b"], ["https://tec.openplanner.team/stops/X879aja", "https://tec.openplanner.team/stops/X898aaa"], ["https://tec.openplanner.team/stops/Bclgpla1", "https://tec.openplanner.team/stops/Bclgpla2"], ["https://tec.openplanner.team/stops/Blaspch1", "https://tec.openplanner.team/stops/Blasvil2"], ["https://tec.openplanner.team/stops/H1mj124b", "https://tec.openplanner.team/stops/H1mj130b"], ["https://tec.openplanner.team/stops/X609aib", "https://tec.openplanner.team/stops/X609ajb"], ["https://tec.openplanner.team/stops/LSZroqu1", "https://tec.openplanner.team/stops/LWycarr2"], ["https://tec.openplanner.team/stops/X757aaa", "https://tec.openplanner.team/stops/X757alb"], ["https://tec.openplanner.team/stops/H4bd109b", "https://tec.openplanner.team/stops/H4bd112b"], ["https://tec.openplanner.team/stops/H1ms270b", "https://tec.openplanner.team/stops/H1ob334a"], ["https://tec.openplanner.team/stops/H1hq126a", "https://tec.openplanner.team/stops/H1hq126b"], ["https://tec.openplanner.team/stops/Barcsta1", "https://tec.openplanner.team/stops/Barcsta2"], ["https://tec.openplanner.team/stops/X650aha", "https://tec.openplanner.team/stops/X671aga"], ["https://tec.openplanner.team/stops/H1ba108a", "https://tec.openplanner.team/stops/H1ba115a"], ["https://tec.openplanner.team/stops/H4mx118a", "https://tec.openplanner.team/stops/H4mx120a"], ["https://tec.openplanner.team/stops/Ljudeme4", "https://tec.openplanner.team/stops/Ljuinte2"], ["https://tec.openplanner.team/stops/Cplbbro2", "https://tec.openplanner.team/stops/Cplelec1"], ["https://tec.openplanner.team/stops/H5la177a", "https://tec.openplanner.team/stops/H5la177b"], ["https://tec.openplanner.team/stops/X224adb", "https://tec.openplanner.team/stops/X224aea"], ["https://tec.openplanner.team/stops/LkRrauw2", "https://tec.openplanner.team/stops/LrOgara3"], ["https://tec.openplanner.team/stops/H2mg137a", "https://tec.openplanner.team/stops/H2mg140b"], ["https://tec.openplanner.team/stops/N217aba", "https://tec.openplanner.team/stops/N261aha"], ["https://tec.openplanner.team/stops/N383aeb", "https://tec.openplanner.team/stops/N874agb"], ["https://tec.openplanner.team/stops/Ctucamb1", "https://tec.openplanner.team/stops/Ctuhouz1"], ["https://tec.openplanner.team/stops/Bgdhdet1", "https://tec.openplanner.team/stops/Bwaak101"], ["https://tec.openplanner.team/stops/X937aca", "https://tec.openplanner.team/stops/X945aea"], ["https://tec.openplanner.team/stops/N254aba", "https://tec.openplanner.team/stops/N254abb"], ["https://tec.openplanner.team/stops/X623acb", "https://tec.openplanner.team/stops/X623acc"], ["https://tec.openplanner.team/stops/H1gh148a", "https://tec.openplanner.team/stops/H1gh165b"], ["https://tec.openplanner.team/stops/N260abb", "https://tec.openplanner.team/stops/N260afb"], ["https://tec.openplanner.team/stops/N519ala", "https://tec.openplanner.team/stops/N519asb"], ["https://tec.openplanner.team/stops/Lchacie1", "https://tec.openplanner.team/stops/Lrapays1"], ["https://tec.openplanner.team/stops/H1fl133c", "https://tec.openplanner.team/stops/H1fl136a"], ["https://tec.openplanner.team/stops/X627aaa", "https://tec.openplanner.team/stops/X629aab"], ["https://tec.openplanner.team/stops/LkEbruc2", "https://tec.openplanner.team/stops/LkEneus2"], ["https://tec.openplanner.team/stops/X808abc", "https://tec.openplanner.team/stops/X808ajb"], ["https://tec.openplanner.team/stops/Bmonbri2", "https://tec.openplanner.team/stops/Bnivlai2"], ["https://tec.openplanner.team/stops/Bwatjbo2", "https://tec.openplanner.team/stops/Bwatprp1"], ["https://tec.openplanner.team/stops/LBNforg1", "https://tec.openplanner.team/stops/LDOordi1"], ["https://tec.openplanner.team/stops/LMHeg--1", "https://tec.openplanner.team/stops/LMHtill1"], ["https://tec.openplanner.team/stops/X719abb", "https://tec.openplanner.team/stops/X720aba"], ["https://tec.openplanner.team/stops/LElgerd3", "https://tec.openplanner.team/stops/LElgerd4"], ["https://tec.openplanner.team/stops/Csrcarr1", "https://tec.openplanner.team/stops/Csregli1"], ["https://tec.openplanner.team/stops/X804aaa", "https://tec.openplanner.team/stops/X804abb"], ["https://tec.openplanner.team/stops/H5pe125a", "https://tec.openplanner.team/stops/H5pe126a"], ["https://tec.openplanner.team/stops/N141aob", "https://tec.openplanner.team/stops/N146aeb"], ["https://tec.openplanner.team/stops/H1fl141b", "https://tec.openplanner.team/stops/H1je221b"], ["https://tec.openplanner.team/stops/Bbchcab1", "https://tec.openplanner.team/stops/Bbchdev2"], ["https://tec.openplanner.team/stops/X725aba", "https://tec.openplanner.team/stops/X725agb"], ["https://tec.openplanner.team/stops/H1bl104c", "https://tec.openplanner.team/stops/H1pd144a"], ["https://tec.openplanner.team/stops/LmTkirc1", "https://tec.openplanner.team/stops/LmTschi1"], ["https://tec.openplanner.team/stops/Cmyland5", "https://tec.openplanner.team/stops/Cmymarb1"], ["https://tec.openplanner.team/stops/Lemcarm1", "https://tec.openplanner.team/stops/Lemhenn2"], ["https://tec.openplanner.team/stops/LPLc65-1", "https://tec.openplanner.team/stops/LPLcarr1"], ["https://tec.openplanner.team/stops/X950aab", "https://tec.openplanner.team/stops/X950acb"], ["https://tec.openplanner.team/stops/Cvllerm1", "https://tec.openplanner.team/stops/NH21aeb"], ["https://tec.openplanner.team/stops/N507aea", "https://tec.openplanner.team/stops/N507ajb"], ["https://tec.openplanner.team/stops/H1ht126b", "https://tec.openplanner.team/stops/H1ht131b"], ["https://tec.openplanner.team/stops/Bgliaau2", "https://tec.openplanner.team/stops/Bmalwvi2"], ["https://tec.openplanner.team/stops/Cgzbouh2", "https://tec.openplanner.team/stops/Cgzgrru1"], ["https://tec.openplanner.team/stops/Cbtgemi1", "https://tec.openplanner.team/stops/Cbtgemi2"], ["https://tec.openplanner.team/stops/Lagvern1", "https://tec.openplanner.team/stops/Llgcond1"], ["https://tec.openplanner.team/stops/NC02bbb", "https://tec.openplanner.team/stops/NC14agb"], ["https://tec.openplanner.team/stops/X762aba", "https://tec.openplanner.team/stops/X762aca"], ["https://tec.openplanner.team/stops/Ljulieg1", "https://tec.openplanner.team/stops/Ljulieg2"], ["https://tec.openplanner.team/stops/LAieg--2", "https://tec.openplanner.team/stops/LGlcite2"], ["https://tec.openplanner.team/stops/Lbrfune*", "https://tec.openplanner.team/stops/Ljulieg2"], ["https://tec.openplanner.team/stops/H1so136d", "https://tec.openplanner.team/stops/H1so143b"], ["https://tec.openplanner.team/stops/LHThall2", "https://tec.openplanner.team/stops/LHThall3"], ["https://tec.openplanner.team/stops/N120ahb", "https://tec.openplanner.team/stops/N120aod"], ["https://tec.openplanner.team/stops/LBNburg2", "https://tec.openplanner.team/stops/LeUbael2"], ["https://tec.openplanner.team/stops/LHEpriv2", "https://tec.openplanner.team/stops/LHEzoni2"], ["https://tec.openplanner.team/stops/N134alb", "https://tec.openplanner.team/stops/N135aya"], ["https://tec.openplanner.team/stops/Lghmeun3", "https://tec.openplanner.team/stops/Ljegare1"], ["https://tec.openplanner.team/stops/Cjudelv3", "https://tec.openplanner.team/stops/Cjuepee2"], ["https://tec.openplanner.team/stops/H4wt159a", "https://tec.openplanner.team/stops/H5rx103a"], ["https://tec.openplanner.team/stops/H1fl138b", "https://tec.openplanner.team/stops/H1fr109a"], ["https://tec.openplanner.team/stops/X629aaa", "https://tec.openplanner.team/stops/X629aab"], ["https://tec.openplanner.team/stops/Csspn1", "https://tec.openplanner.team/stops/Csspn2"], ["https://tec.openplanner.team/stops/N347ada", "https://tec.openplanner.team/stops/N347aeb"], ["https://tec.openplanner.team/stops/X634aha", "https://tec.openplanner.team/stops/X634aib"], ["https://tec.openplanner.team/stops/LTyh24-1", "https://tec.openplanner.team/stops/LTywaut1"], ["https://tec.openplanner.team/stops/X796adb", "https://tec.openplanner.team/stops/X796aea"], ["https://tec.openplanner.team/stops/LBlchin2", "https://tec.openplanner.team/stops/LGMstin1"], ["https://tec.openplanner.team/stops/Lmnbass1", "https://tec.openplanner.team/stops/Lmnbass2"], ["https://tec.openplanner.team/stops/LSBjoli1", "https://tec.openplanner.team/stops/LSBsere4"], ["https://tec.openplanner.team/stops/X910aha", "https://tec.openplanner.team/stops/X910ajb"], ["https://tec.openplanner.team/stops/N542afb", "https://tec.openplanner.team/stops/N542ajb"], ["https://tec.openplanner.team/stops/N201aaa", "https://tec.openplanner.team/stops/N201ara"], ["https://tec.openplanner.team/stops/X782akb", "https://tec.openplanner.team/stops/X782amb"], ["https://tec.openplanner.team/stops/Lvimc--2", "https://tec.openplanner.team/stops/Lvitomb2"], ["https://tec.openplanner.team/stops/X595aeb", "https://tec.openplanner.team/stops/X595afc"], ["https://tec.openplanner.team/stops/LRteg--*", "https://tec.openplanner.team/stops/LVbpave2"], ["https://tec.openplanner.team/stops/N562bia", "https://tec.openplanner.team/stops/N562bja"], ["https://tec.openplanner.team/stops/N232awb", "https://tec.openplanner.team/stops/N232bqb"], ["https://tec.openplanner.team/stops/N209abb", "https://tec.openplanner.team/stops/N209acb"], ["https://tec.openplanner.team/stops/X770aca", "https://tec.openplanner.team/stops/X771aia"], ["https://tec.openplanner.team/stops/N207adb", "https://tec.openplanner.team/stops/N207add"], ["https://tec.openplanner.team/stops/H4an106b", "https://tec.openplanner.team/stops/H4an110b"], ["https://tec.openplanner.team/stops/X897aic", "https://tec.openplanner.team/stops/X897ajb"], ["https://tec.openplanner.team/stops/X663aga", "https://tec.openplanner.team/stops/X663aia"], ["https://tec.openplanner.team/stops/LOVhetr1", "https://tec.openplanner.team/stops/LSomonu2"], ["https://tec.openplanner.team/stops/Ccunvus2", "https://tec.openplanner.team/stops/Ccurtra1"], ["https://tec.openplanner.team/stops/Louaout1", "https://tec.openplanner.team/stops/Loufleu2"], ["https://tec.openplanner.team/stops/N524ama", "https://tec.openplanner.team/stops/N524amb"], ["https://tec.openplanner.team/stops/N232boa", "https://tec.openplanner.team/stops/N232bqb"], ["https://tec.openplanner.team/stops/H1je216b", "https://tec.openplanner.team/stops/H1je367a"], ["https://tec.openplanner.team/stops/Cjucouc1", "https://tec.openplanner.team/stops/Cjumest2"], ["https://tec.openplanner.team/stops/Lbopote2", "https://tec.openplanner.team/stops/Lsearbo1"], ["https://tec.openplanner.team/stops/Bolppla1", "https://tec.openplanner.team/stops/Bolppla2"], ["https://tec.openplanner.team/stops/H1ro131a", "https://tec.openplanner.team/stops/H1ro141b"], ["https://tec.openplanner.team/stops/X346aba", "https://tec.openplanner.team/stops/X346afb"], ["https://tec.openplanner.team/stops/LFypont1", "https://tec.openplanner.team/stops/LFypont2"], ["https://tec.openplanner.team/stops/Lcegeor1", "https://tec.openplanner.team/stops/Lvcecol1"], ["https://tec.openplanner.team/stops/LMAbruy2", "https://tec.openplanner.team/stops/LMAptne1"], ["https://tec.openplanner.team/stops/LVLeg--1", "https://tec.openplanner.team/stops/LVLeg--3"], ["https://tec.openplanner.team/stops/X948aoa", "https://tec.openplanner.team/stops/X949aka"], ["https://tec.openplanner.team/stops/Ctrpn1", "https://tec.openplanner.team/stops/Ctrvert1"], ["https://tec.openplanner.team/stops/H4sl154a", "https://tec.openplanner.team/stops/H4sl155a"], ["https://tec.openplanner.team/stops/X715aga", "https://tec.openplanner.team/stops/X731abb"], ["https://tec.openplanner.team/stops/H4mo144a", "https://tec.openplanner.team/stops/H4mo169a"], ["https://tec.openplanner.team/stops/LlNkirc1", "https://tec.openplanner.team/stops/LlNschu1"], ["https://tec.openplanner.team/stops/Crcpcom1", "https://tec.openplanner.team/stops/Crcplac4"], ["https://tec.openplanner.team/stops/N135aba", "https://tec.openplanner.team/stops/N135alb"], ["https://tec.openplanner.team/stops/Bcsen252", "https://tec.openplanner.team/stops/Bvilvil4"], ["https://tec.openplanner.team/stops/LeUfuss1", "https://tec.openplanner.team/stops/LeUkehr4"], ["https://tec.openplanner.team/stops/X636aoa", "https://tec.openplanner.team/stops/X636apb"], ["https://tec.openplanner.team/stops/CMmoul2", "https://tec.openplanner.team/stops/Cmohotv4"], ["https://tec.openplanner.team/stops/N501bib", "https://tec.openplanner.team/stops/N501bla"], ["https://tec.openplanner.team/stops/N548aca", "https://tec.openplanner.team/stops/N548acb"], ["https://tec.openplanner.team/stops/Crspana3", "https://tec.openplanner.team/stops/Crsstem1"], ["https://tec.openplanner.team/stops/X825aaa", "https://tec.openplanner.team/stops/X825aeb"], ["https://tec.openplanner.team/stops/Lgrclos2", "https://tec.openplanner.team/stops/Lgrdeni2"], ["https://tec.openplanner.team/stops/N521amb", "https://tec.openplanner.team/stops/N527aeb"], ["https://tec.openplanner.team/stops/N506bba", "https://tec.openplanner.team/stops/N506bfa"], ["https://tec.openplanner.team/stops/LHEgare2", "https://tec.openplanner.team/stops/LHEpriv2"], ["https://tec.openplanner.team/stops/Lseaven1", "https://tec.openplanner.team/stops/Lsecoll1"], ["https://tec.openplanner.team/stops/LHUlieg1", "https://tec.openplanner.team/stops/LHUpost1"], ["https://tec.openplanner.team/stops/Bcsgcou1", "https://tec.openplanner.team/stops/Blaspch2"], ["https://tec.openplanner.team/stops/LMfbacu1", "https://tec.openplanner.team/stops/LMfsart1"], ["https://tec.openplanner.team/stops/LSZsolw1", "https://tec.openplanner.team/stops/LSZsolw3"], ["https://tec.openplanner.team/stops/Btstpch2", "https://tec.openplanner.team/stops/N524ala"], ["https://tec.openplanner.team/stops/Cfamate1", "https://tec.openplanner.team/stops/Cpictra2"], ["https://tec.openplanner.team/stops/LaAbush*", "https://tec.openplanner.team/stops/LrTbahn2"], ["https://tec.openplanner.team/stops/LeMdorf1", "https://tec.openplanner.team/stops/LmFdorf2"], ["https://tec.openplanner.team/stops/N538acb", "https://tec.openplanner.team/stops/N538ajc"], ["https://tec.openplanner.team/stops/X661ana", "https://tec.openplanner.team/stops/X661aob"], ["https://tec.openplanner.team/stops/LNCvann1", "https://tec.openplanner.team/stops/LRRrimi2"], ["https://tec.openplanner.team/stops/N351axa", "https://tec.openplanner.team/stops/N390afa"], ["https://tec.openplanner.team/stops/Cna6che1", "https://tec.openplanner.team/stops/Cna6che2"], ["https://tec.openplanner.team/stops/N528aib", "https://tec.openplanner.team/stops/N528akb"], ["https://tec.openplanner.team/stops/H4ss158a", "https://tec.openplanner.team/stops/H5rx115a"], ["https://tec.openplanner.team/stops/X396afa", "https://tec.openplanner.team/stops/X396afb"], ["https://tec.openplanner.team/stops/H4rx141b", "https://tec.openplanner.team/stops/H4rx143b"], ["https://tec.openplanner.team/stops/Crefont1", "https://tec.openplanner.team/stops/Crefont2"], ["https://tec.openplanner.team/stops/Bmsgmon1", "https://tec.openplanner.team/stops/Bmsgmon2"], ["https://tec.openplanner.team/stops/LPclaro2", "https://tec.openplanner.team/stops/LPctrog2"], ["https://tec.openplanner.team/stops/LBjpech2", "https://tec.openplanner.team/stops/X575adb"], ["https://tec.openplanner.team/stops/X664abb", "https://tec.openplanner.team/stops/X664adc"], ["https://tec.openplanner.team/stops/Bclgmev1", "https://tec.openplanner.team/stops/Bclgpla1"], ["https://tec.openplanner.team/stops/NL76aaa", "https://tec.openplanner.team/stops/NL76anb"], ["https://tec.openplanner.team/stops/H1au113b", "https://tec.openplanner.team/stops/H1mr125b"], ["https://tec.openplanner.team/stops/X605ada", "https://tec.openplanner.team/stops/X605aeb"], ["https://tec.openplanner.team/stops/X650aia", "https://tec.openplanner.team/stops/X650aib"], ["https://tec.openplanner.team/stops/Lkigare2", "https://tec.openplanner.team/stops/Lkirenk1"], ["https://tec.openplanner.team/stops/Cmacart4", "https://tec.openplanner.team/stops/Cmamarc1"], ["https://tec.openplanner.team/stops/X630aab", "https://tec.openplanner.team/stops/X638alb"], ["https://tec.openplanner.team/stops/Lprfoot2", "https://tec.openplanner.team/stops/LWetrib2"], ["https://tec.openplanner.team/stops/Lladete3", "https://tec.openplanner.team/stops/Llaflot2"], ["https://tec.openplanner.team/stops/N514aaa", "https://tec.openplanner.team/stops/N514aab"], ["https://tec.openplanner.team/stops/LeYraaf1", "https://tec.openplanner.team/stops/LeYvoge1"], ["https://tec.openplanner.team/stops/LTyh51-1", "https://tec.openplanner.team/stops/LTyhapp3"], ["https://tec.openplanner.team/stops/H4mt215b", "https://tec.openplanner.team/stops/H4mx118a"], ["https://tec.openplanner.team/stops/X601acb", "https://tec.openplanner.team/stops/X601bgb"], ["https://tec.openplanner.team/stops/X630abb", "https://tec.openplanner.team/stops/X630acb"], ["https://tec.openplanner.team/stops/Bsaumlk2", "https://tec.openplanner.team/stops/Bsaumlk4"], ["https://tec.openplanner.team/stops/Bgrhche1", "https://tec.openplanner.team/stops/Bgrhche2"], ["https://tec.openplanner.team/stops/LSWscie1", "https://tec.openplanner.team/stops/LSWscie2"], ["https://tec.openplanner.team/stops/Bolgrsa1", "https://tec.openplanner.team/stops/Bolgsha2"], ["https://tec.openplanner.team/stops/N513ala", "https://tec.openplanner.team/stops/N513bbd"], ["https://tec.openplanner.team/stops/N553aqa", "https://tec.openplanner.team/stops/N553aqb"], ["https://tec.openplanner.team/stops/Beclaub1", "https://tec.openplanner.team/stops/Beclron1"], ["https://tec.openplanner.team/stops/X638aja", "https://tec.openplanner.team/stops/X638amb"], ["https://tec.openplanner.team/stops/X786aea", "https://tec.openplanner.team/stops/X786aeb"], ["https://tec.openplanner.team/stops/X982bjb", "https://tec.openplanner.team/stops/X982bkb"], ["https://tec.openplanner.team/stops/H4ty296a", "https://tec.openplanner.team/stops/H4ty416a"], ["https://tec.openplanner.team/stops/H4ty327b", "https://tec.openplanner.team/stops/H4ty350a"], ["https://tec.openplanner.team/stops/Cjubrul4", "https://tec.openplanner.team/stops/Cjugill1"], ["https://tec.openplanner.team/stops/LSIroch1", "https://tec.openplanner.team/stops/LSItert1"], ["https://tec.openplanner.team/stops/Bwatsan1", "https://tec.openplanner.team/stops/Bwatvco1"], ["https://tec.openplanner.team/stops/Cjxcoll2", "https://tec.openplanner.team/stops/Cjxpann2"], ["https://tec.openplanner.team/stops/N501lbb", "https://tec.openplanner.team/stops/N501lbd"], ["https://tec.openplanner.team/stops/Cmlbeau4", "https://tec.openplanner.team/stops/Cmlrous2"], ["https://tec.openplanner.team/stops/N236aja", "https://tec.openplanner.team/stops/N236ajb"], ["https://tec.openplanner.team/stops/LSzcoop2", "https://tec.openplanner.team/stops/NL67adb"], ["https://tec.openplanner.team/stops/H2sb232a", "https://tec.openplanner.team/stops/H2sb232b"], ["https://tec.openplanner.team/stops/LNCdoma2", "https://tec.openplanner.team/stops/LNCspor2"], ["https://tec.openplanner.team/stops/Lencham*", "https://tec.openplanner.team/stops/Lhuchev2"], ["https://tec.openplanner.team/stops/Bboncha1", "https://tec.openplanner.team/stops/Bboncha2"], ["https://tec.openplanner.team/stops/LBLvici2", "https://tec.openplanner.team/stops/LBLvici3"], ["https://tec.openplanner.team/stops/X948alb", "https://tec.openplanner.team/stops/X948anb"], ["https://tec.openplanner.team/stops/X740abd", "https://tec.openplanner.team/stops/X886aga"], ["https://tec.openplanner.team/stops/LCvneuv4", "https://tec.openplanner.team/stops/LHrparc1"], ["https://tec.openplanner.team/stops/X739aja", "https://tec.openplanner.team/stops/X912agb"], ["https://tec.openplanner.team/stops/H4hg158b", "https://tec.openplanner.team/stops/H4hg159a"], ["https://tec.openplanner.team/stops/X919aca", "https://tec.openplanner.team/stops/X919adb"], ["https://tec.openplanner.team/stops/Lhrcite1", "https://tec.openplanner.team/stops/Lhrcite2"], ["https://tec.openplanner.team/stops/LHgdari2", "https://tec.openplanner.team/stops/LHgroso1"], ["https://tec.openplanner.team/stops/LBSgeer1", "https://tec.openplanner.team/stops/LBSkann1"], ["https://tec.openplanner.team/stops/X982aka", "https://tec.openplanner.team/stops/X982anb"], ["https://tec.openplanner.team/stops/H4gz115b", "https://tec.openplanner.team/stops/H4ms145b"], ["https://tec.openplanner.team/stops/NL78aja", "https://tec.openplanner.team/stops/NL79aab"], ["https://tec.openplanner.team/stops/H2sv218a", "https://tec.openplanner.team/stops/H2sv259b"], ["https://tec.openplanner.team/stops/Bjodeco3", "https://tec.openplanner.team/stops/Bjodrga2"], ["https://tec.openplanner.team/stops/Bhevl3l2", "https://tec.openplanner.team/stops/Bleugar1"], ["https://tec.openplanner.team/stops/N525aoa", "https://tec.openplanner.team/stops/N525aob"], ["https://tec.openplanner.team/stops/X937aha", "https://tec.openplanner.team/stops/X937ahb"], ["https://tec.openplanner.team/stops/LhIfrie2", "https://tec.openplanner.team/stops/LrDneun2"], ["https://tec.openplanner.team/stops/H4oe151a", "https://tec.openplanner.team/stops/H4oe151b"], ["https://tec.openplanner.team/stops/LVvboma2", "https://tec.openplanner.team/stops/X982bfa"], ["https://tec.openplanner.team/stops/X633akb", "https://tec.openplanner.team/stops/X633alb"], ["https://tec.openplanner.team/stops/H2pr116b", "https://tec.openplanner.team/stops/H2pr117b"], ["https://tec.openplanner.team/stops/Llgcorn4", "https://tec.openplanner.team/stops/Llgmara2"], ["https://tec.openplanner.team/stops/LBNforg2", "https://tec.openplanner.team/stops/LBNvilv2"], ["https://tec.openplanner.team/stops/Llgangl1", "https://tec.openplanner.team/stops/Llgcadr3"], ["https://tec.openplanner.team/stops/N214agb", "https://tec.openplanner.team/stops/N225aaa"], ["https://tec.openplanner.team/stops/N118aeb", "https://tec.openplanner.team/stops/N118ata"], ["https://tec.openplanner.team/stops/X979aoa", "https://tec.openplanner.team/stops/X982bwa"], ["https://tec.openplanner.team/stops/Bdvmccu1", "https://tec.openplanner.team/stops/Bwavlon1"], ["https://tec.openplanner.team/stops/N501kwb", "https://tec.openplanner.team/stops/N501kzb"], ["https://tec.openplanner.team/stops/H5el101a", "https://tec.openplanner.team/stops/H5el105a"], ["https://tec.openplanner.team/stops/N558ada", "https://tec.openplanner.team/stops/N558aea"], ["https://tec.openplanner.team/stops/H4hu115a", "https://tec.openplanner.team/stops/H4hu122b"], ["https://tec.openplanner.team/stops/N573abb", "https://tec.openplanner.team/stops/NC44adb"], ["https://tec.openplanner.team/stops/X595aac", "https://tec.openplanner.team/stops/X595aad"], ["https://tec.openplanner.team/stops/Brsgecu2", "https://tec.openplanner.team/stops/Brsgman2"], ["https://tec.openplanner.team/stops/N525baa", "https://tec.openplanner.team/stops/N525bab"], ["https://tec.openplanner.team/stops/Cmastma1", "https://tec.openplanner.team/stops/Cmomoul6"], ["https://tec.openplanner.team/stops/N551afb", "https://tec.openplanner.team/stops/N551akb"], ["https://tec.openplanner.team/stops/Lra4bra1", "https://tec.openplanner.team/stops/LSAchef2"], ["https://tec.openplanner.team/stops/Cgrbert1", "https://tec.openplanner.team/stops/N160aea"], ["https://tec.openplanner.team/stops/H3bo101b", "https://tec.openplanner.team/stops/H3bo102b"], ["https://tec.openplanner.team/stops/N351akd", "https://tec.openplanner.team/stops/X351aob"], ["https://tec.openplanner.team/stops/X394aab", "https://tec.openplanner.team/stops/X394aba"], ["https://tec.openplanner.team/stops/Louoran2", "https://tec.openplanner.team/stops/Lseserv1"], ["https://tec.openplanner.team/stops/Lra4bra1", "https://tec.openplanner.team/stops/Lrafusi1"], ["https://tec.openplanner.team/stops/LhEherb2", "https://tec.openplanner.team/stops/LhElont1"], ["https://tec.openplanner.team/stops/LELeg--2", "https://tec.openplanner.team/stops/LELhard1"], ["https://tec.openplanner.team/stops/LRGgrov2", "https://tec.openplanner.team/stops/LRGmoul2"], ["https://tec.openplanner.team/stops/N204adb", "https://tec.openplanner.team/stops/N204agb"], ["https://tec.openplanner.team/stops/LBQplac1", "https://tec.openplanner.team/stops/LBQplac2"], ["https://tec.openplanner.team/stops/LSZjona1", "https://tec.openplanner.team/stops/LSZnive1"], ["https://tec.openplanner.team/stops/N167aab", "https://tec.openplanner.team/stops/N167adc"], ["https://tec.openplanner.team/stops/Lvtcime1", "https://tec.openplanner.team/stops/Lvteg--1"], ["https://tec.openplanner.team/stops/LHdvill2", "https://tec.openplanner.team/stops/LVnflox1"], ["https://tec.openplanner.team/stops/N141aqa", "https://tec.openplanner.team/stops/N426aaa"], ["https://tec.openplanner.team/stops/H4hx121b", "https://tec.openplanner.team/stops/H4hx124b"], ["https://tec.openplanner.team/stops/LBEmich2", "https://tec.openplanner.team/stops/LTRpery1"], ["https://tec.openplanner.team/stops/NL74aab", "https://tec.openplanner.team/stops/NL74aac"], ["https://tec.openplanner.team/stops/X619akb", "https://tec.openplanner.team/stops/X622aba"], ["https://tec.openplanner.team/stops/Bjodfco2", "https://tec.openplanner.team/stops/Bpiehvi1"], ["https://tec.openplanner.team/stops/Cthalli2", "https://tec.openplanner.team/stops/Cthalli3"], ["https://tec.openplanner.team/stops/Cfawain1", "https://tec.openplanner.team/stops/Cfawain4"], ["https://tec.openplanner.team/stops/X724aba", "https://tec.openplanner.team/stops/X724abb"], ["https://tec.openplanner.team/stops/N501cwb", "https://tec.openplanner.team/stops/N528akb"], ["https://tec.openplanner.team/stops/X907acb", "https://tec.openplanner.team/stops/X907ajb"], ["https://tec.openplanner.team/stops/H4wa150b", "https://tec.openplanner.team/stops/H4wa161b"], ["https://tec.openplanner.team/stops/X364aab", "https://tec.openplanner.team/stops/X364aba"], ["https://tec.openplanner.team/stops/X630ada", "https://tec.openplanner.team/stops/X630adb"], ["https://tec.openplanner.team/stops/H1by108a", "https://tec.openplanner.team/stops/H1by108b"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/NH03aeb"], ["https://tec.openplanner.team/stops/N501jia", "https://tec.openplanner.team/stops/N501jib"], ["https://tec.openplanner.team/stops/LlNlont2", "https://tec.openplanner.team/stops/LlNsc651"], ["https://tec.openplanner.team/stops/X922ahb", "https://tec.openplanner.team/stops/X922ama"], ["https://tec.openplanner.team/stops/H4wp150b", "https://tec.openplanner.team/stops/H4wp150c"], ["https://tec.openplanner.team/stops/X822aha", "https://tec.openplanner.team/stops/X822aia"], ["https://tec.openplanner.team/stops/X639ama", "https://tec.openplanner.team/stops/X639arb"], ["https://tec.openplanner.team/stops/X639alb", "https://tec.openplanner.team/stops/X639amd"], ["https://tec.openplanner.team/stops/N535aeb", "https://tec.openplanner.team/stops/N535aib"], ["https://tec.openplanner.team/stops/LmHabzw2", "https://tec.openplanner.team/stops/LmHperl1"], ["https://tec.openplanner.team/stops/H5wo125a", "https://tec.openplanner.team/stops/H5wo133a"], ["https://tec.openplanner.team/stops/X760afb", "https://tec.openplanner.team/stops/X788agb"], ["https://tec.openplanner.team/stops/N511apa", "https://tec.openplanner.team/stops/N511aub"], ["https://tec.openplanner.team/stops/X802acb", "https://tec.openplanner.team/stops/X882ala"], ["https://tec.openplanner.team/stops/H4tp145a", "https://tec.openplanner.team/stops/H4wr174b"], ["https://tec.openplanner.team/stops/N104abb", "https://tec.openplanner.team/stops/N104adb"], ["https://tec.openplanner.team/stops/Bhvlbet2", "https://tec.openplanner.team/stops/Bhvlpla2"], ["https://tec.openplanner.team/stops/H4lh161a", "https://tec.openplanner.team/stops/H4oe148b"], ["https://tec.openplanner.team/stops/N521ajb", "https://tec.openplanner.team/stops/N521ala"], ["https://tec.openplanner.team/stops/X745ada", "https://tec.openplanner.team/stops/X745aeb"], ["https://tec.openplanner.team/stops/LCtcref1", "https://tec.openplanner.team/stops/X780aaa"], ["https://tec.openplanner.team/stops/X780ajb", "https://tec.openplanner.team/stops/X790aja"], ["https://tec.openplanner.team/stops/Lsehtsa2", "https://tec.openplanner.team/stops/Lserena2"], ["https://tec.openplanner.team/stops/Cfabnat1", "https://tec.openplanner.team/stops/Cfabnat2"], ["https://tec.openplanner.team/stops/X660aea", "https://tec.openplanner.team/stops/X660ajb"], ["https://tec.openplanner.team/stops/Lflcle-3", "https://tec.openplanner.team/stops/Lflmaxi3"], ["https://tec.openplanner.team/stops/LrEkape1", "https://tec.openplanner.team/stops/LrErauw2"], ["https://tec.openplanner.team/stops/X614amb", "https://tec.openplanner.team/stops/X614anb"], ["https://tec.openplanner.team/stops/Cthcrom2", "https://tec.openplanner.team/stops/Cthoues1"], ["https://tec.openplanner.team/stops/Cprcalv2", "https://tec.openplanner.team/stops/Cprgran1"], ["https://tec.openplanner.team/stops/H1gn149b", "https://tec.openplanner.team/stops/H1gq153b"], ["https://tec.openplanner.team/stops/Binccha2", "https://tec.openplanner.team/stops/Binclon1"], ["https://tec.openplanner.team/stops/N150ahb", "https://tec.openplanner.team/stops/N150ajb"], ["https://tec.openplanner.team/stops/Cgocalv6", "https://tec.openplanner.team/stops/Cgostro1"], ["https://tec.openplanner.team/stops/LDmwaef2", "https://tec.openplanner.team/stops/LHodomm2"], ["https://tec.openplanner.team/stops/H1ht121b", "https://tec.openplanner.team/stops/H1ht124b"], ["https://tec.openplanner.team/stops/N543cba", "https://tec.openplanner.team/stops/N543cbb"], ["https://tec.openplanner.team/stops/Lghmavi2", "https://tec.openplanner.team/stops/Lghpero2"], ["https://tec.openplanner.team/stops/LSLfler1", "https://tec.openplanner.team/stops/LSLprov1"], ["https://tec.openplanner.team/stops/Bfelada2", "https://tec.openplanner.team/stops/Bptrgri2"], ["https://tec.openplanner.team/stops/H4ld124a", "https://tec.openplanner.team/stops/H4ld130b"], ["https://tec.openplanner.team/stops/Cjuecha1", "https://tec.openplanner.team/stops/Cragill2"], ["https://tec.openplanner.team/stops/X996aba", "https://tec.openplanner.team/stops/X996ahb"], ["https://tec.openplanner.team/stops/N507aha", "https://tec.openplanner.team/stops/N508ada"], ["https://tec.openplanner.team/stops/X601agb", "https://tec.openplanner.team/stops/X662asb"], ["https://tec.openplanner.team/stops/Ctubpos2", "https://tec.openplanner.team/stops/NC28aha"], ["https://tec.openplanner.team/stops/N505aca", "https://tec.openplanner.team/stops/N505aia"], ["https://tec.openplanner.team/stops/Bjodrrg2", "https://tec.openplanner.team/stops/Bzlucam2"], ["https://tec.openplanner.team/stops/Ccomiau1", "https://tec.openplanner.team/stops/Ccomiau2"], ["https://tec.openplanner.team/stops/N501dvb", "https://tec.openplanner.team/stops/N501ejd"], ["https://tec.openplanner.team/stops/LeUhaas1", "https://tec.openplanner.team/stops/LeUhaas4"], ["https://tec.openplanner.team/stops/H2sb238b", "https://tec.openplanner.team/stops/H2sb243b"], ["https://tec.openplanner.team/stops/X629aca", "https://tec.openplanner.team/stops/X637apa"], ["https://tec.openplanner.team/stops/LENoule1", "https://tec.openplanner.team/stops/LENoule2"], ["https://tec.openplanner.team/stops/Cwgrans1", "https://tec.openplanner.team/stops/Cwgrans4"], ["https://tec.openplanner.team/stops/LVEbors2", "https://tec.openplanner.team/stops/LVEtomb1"], ["https://tec.openplanner.team/stops/N560aba", "https://tec.openplanner.team/stops/N560abb"], ["https://tec.openplanner.team/stops/LXfcore1", "https://tec.openplanner.team/stops/LXflong2"], ["https://tec.openplanner.team/stops/N117aca", "https://tec.openplanner.team/stops/N147adb"], ["https://tec.openplanner.team/stops/Bmarchn1", "https://tec.openplanner.team/stops/Bmarfjo2"], ["https://tec.openplanner.team/stops/X634afb", "https://tec.openplanner.team/stops/X670ala"], ["https://tec.openplanner.team/stops/Lghjans1", "https://tec.openplanner.team/stops/Ljerouy2"], ["https://tec.openplanner.team/stops/X985adb", "https://tec.openplanner.team/stops/X985ahb"], ["https://tec.openplanner.team/stops/LFR201-2", "https://tec.openplanner.team/stops/LSxeg--1"], ["https://tec.openplanner.team/stops/LREprea2", "https://tec.openplanner.team/stops/LREsaul2"], ["https://tec.openplanner.team/stops/N331aha", "https://tec.openplanner.team/stops/N331aib"], ["https://tec.openplanner.team/stops/X733akb", "https://tec.openplanner.team/stops/X733ala"], ["https://tec.openplanner.team/stops/Llgbobu1", "https://tec.openplanner.team/stops/Llgbobu6"], ["https://tec.openplanner.team/stops/LPleclu1", "https://tec.openplanner.team/stops/LPlpomp2"], ["https://tec.openplanner.team/stops/N564afa", "https://tec.openplanner.team/stops/N564afb"], ["https://tec.openplanner.team/stops/LDLbeau2", "https://tec.openplanner.team/stops/LSEquar2"], ["https://tec.openplanner.team/stops/H2mi123b", "https://tec.openplanner.team/stops/H2mi125b"], ["https://tec.openplanner.team/stops/Cmmmarb1", "https://tec.openplanner.team/stops/Cmmp2052"], ["https://tec.openplanner.team/stops/NL78aka", "https://tec.openplanner.team/stops/NL78akb"], ["https://tec.openplanner.team/stops/Cbcegli3", "https://tec.openplanner.team/stops/Cbcegli6"], ["https://tec.openplanner.team/stops/LTIcime1", "https://tec.openplanner.team/stops/LTIsupe1"], ["https://tec.openplanner.team/stops/LMOf35-1", "https://tec.openplanner.team/stops/LMOf35-2"], ["https://tec.openplanner.team/stops/N209aea", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/LERdeho1", "https://tec.openplanner.team/stops/LERdeho2"], ["https://tec.openplanner.team/stops/X627ada", "https://tec.openplanner.team/stops/X631aca"], ["https://tec.openplanner.team/stops/Csoplac2", "https://tec.openplanner.team/stops/Csostoc1"], ["https://tec.openplanner.team/stops/H1do117b", "https://tec.openplanner.team/stops/H1do124a"], ["https://tec.openplanner.team/stops/LVNleco1", "https://tec.openplanner.team/stops/LWDplac1"], ["https://tec.openplanner.team/stops/N501gma", "https://tec.openplanner.team/stops/N501lcb"], ["https://tec.openplanner.team/stops/N553aab", "https://tec.openplanner.team/stops/N553aia"], ["https://tec.openplanner.team/stops/Bblacea2", "https://tec.openplanner.team/stops/Bblaece2"], ["https://tec.openplanner.team/stops/LMAbass1", "https://tec.openplanner.team/stops/LMAbass2"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N313adb"], ["https://tec.openplanner.team/stops/H4th139a", "https://tec.openplanner.team/stops/H4th141b"], ["https://tec.openplanner.team/stops/Bnivcol2", "https://tec.openplanner.team/stops/Bnivh%C3%B4p1"], ["https://tec.openplanner.team/stops/Bhenron2", "https://tec.openplanner.team/stops/Bquegen1"], ["https://tec.openplanner.team/stops/Lanclon1", "https://tec.openplanner.team/stops/Llglaha2"], ["https://tec.openplanner.team/stops/LSogare1", "https://tec.openplanner.team/stops/LSokrin2"], ["https://tec.openplanner.team/stops/N547amb", "https://tec.openplanner.team/stops/N548acb"], ["https://tec.openplanner.team/stops/LFmceli2", "https://tec.openplanner.team/stops/LFmroye1"], ["https://tec.openplanner.team/stops/Lagtilf2", "https://tec.openplanner.team/stops/Lceourt1"], ["https://tec.openplanner.team/stops/X318abb", "https://tec.openplanner.team/stops/X364ada"], ["https://tec.openplanner.team/stops/LSkoran2", "https://tec.openplanner.team/stops/LSkwarf3"], ["https://tec.openplanner.team/stops/N528avb", "https://tec.openplanner.team/stops/N542apa"], ["https://tec.openplanner.team/stops/Lstbarb3", "https://tec.openplanner.team/stops/Lstbold2"], ["https://tec.openplanner.team/stops/H1je215b", "https://tec.openplanner.team/stops/H1je360a"], ["https://tec.openplanner.team/stops/Cgpauln2", "https://tec.openplanner.team/stops/Cgpleco2"], ["https://tec.openplanner.team/stops/Cmasncb1", "https://tec.openplanner.team/stops/Cmastni2"], ["https://tec.openplanner.team/stops/LAbchpl2", "https://tec.openplanner.team/stops/LScd45-2"], ["https://tec.openplanner.team/stops/LESoneu3", "https://tec.openplanner.team/stops/LPLhout2"], ["https://tec.openplanner.team/stops/Bwatath3", "https://tec.openplanner.team/stops/Bwatgar3"], ["https://tec.openplanner.team/stops/Bmalsmc2", "https://tec.openplanner.team/stops/Bopprju2"], ["https://tec.openplanner.team/stops/X802aia", "https://tec.openplanner.team/stops/X802aka"], ["https://tec.openplanner.team/stops/X879aja", "https://tec.openplanner.team/stops/X882aab"], ["https://tec.openplanner.team/stops/Lmobrac1", "https://tec.openplanner.team/stops/Lmocoop2"], ["https://tec.openplanner.team/stops/LMttrou2", "https://tec.openplanner.team/stops/LSdsa8a1"], ["https://tec.openplanner.team/stops/Bmrl4ch2", "https://tec.openplanner.team/stops/Bolphgr2"], ["https://tec.openplanner.team/stops/H4wi161b", "https://tec.openplanner.team/stops/H4wi164b"], ["https://tec.openplanner.team/stops/N562afa", "https://tec.openplanner.team/stops/N562bha"], ["https://tec.openplanner.team/stops/Becepco2", "https://tec.openplanner.team/stops/Becepro1"], ["https://tec.openplanner.team/stops/Buccvbe2", "https://tec.openplanner.team/stops/Bwbfhip2"], ["https://tec.openplanner.team/stops/LSZlegr1", "https://tec.openplanner.team/stops/LSZroqu1"], ["https://tec.openplanner.team/stops/H2sb228d", "https://tec.openplanner.team/stops/H2sb236c"], ["https://tec.openplanner.team/stops/Bhenard1", "https://tec.openplanner.team/stops/Bhenmal1"], ["https://tec.openplanner.team/stops/LSWeg--3", "https://tec.openplanner.team/stops/LSZgare2"], ["https://tec.openplanner.team/stops/X812aca", "https://tec.openplanner.team/stops/X812acb"], ["https://tec.openplanner.team/stops/LHgdari2", "https://tec.openplanner.team/stops/LOMdodi2"], ["https://tec.openplanner.team/stops/H2ll192a", "https://tec.openplanner.team/stops/H2ll267b"], ["https://tec.openplanner.team/stops/H4gu108a", "https://tec.openplanner.team/stops/H4gu108c"], ["https://tec.openplanner.team/stops/H1ho124b", "https://tec.openplanner.team/stops/H1ho131a"], ["https://tec.openplanner.team/stops/N584baa", "https://tec.openplanner.team/stops/N584bba"], ["https://tec.openplanner.team/stops/N501cva", "https://tec.openplanner.team/stops/N501cwa"], ["https://tec.openplanner.team/stops/N512ata", "https://tec.openplanner.team/stops/N512atc"], ["https://tec.openplanner.team/stops/Bdonlat1", "https://tec.openplanner.team/stops/Blthbss2"], ["https://tec.openplanner.team/stops/X896aba", "https://tec.openplanner.team/stops/X896aca"], ["https://tec.openplanner.team/stops/LAWdefr1", "https://tec.openplanner.team/stops/LAWdefr2"], ["https://tec.openplanner.team/stops/H2ch100c", "https://tec.openplanner.team/stops/H2ch107a"], ["https://tec.openplanner.team/stops/H4av103b", "https://tec.openplanner.team/stops/H4ss156b"], ["https://tec.openplanner.team/stops/Cgyduss4", "https://tec.openplanner.team/stops/Cjulamb1"], ["https://tec.openplanner.team/stops/N548aab", "https://tec.openplanner.team/stops/N569aca"], ["https://tec.openplanner.team/stops/Llaeg--1", "https://tec.openplanner.team/stops/Llaeg--2"], ["https://tec.openplanner.team/stops/NL68afb", "https://tec.openplanner.team/stops/NL68agb"], ["https://tec.openplanner.team/stops/Lenabat1", "https://tec.openplanner.team/stops/Lengran1"], ["https://tec.openplanner.team/stops/Cwfdame1", "https://tec.openplanner.team/stops/Cwflouv3"], ["https://tec.openplanner.team/stops/X616ada", "https://tec.openplanner.team/stops/X624aba"], ["https://tec.openplanner.team/stops/N501hqa", "https://tec.openplanner.team/stops/N501ifb"], ["https://tec.openplanner.team/stops/X982apb", "https://tec.openplanner.team/stops/X982bja"], ["https://tec.openplanner.team/stops/X659afa", "https://tec.openplanner.team/stops/X659aoa"], ["https://tec.openplanner.team/stops/Bmsgfon1", "https://tec.openplanner.team/stops/Bmsgrco2"], ["https://tec.openplanner.team/stops/LMoeg--1", "https://tec.openplanner.team/stops/LMovieu2"], ["https://tec.openplanner.team/stops/LSOfech2", "https://tec.openplanner.team/stops/LSOgard2"], ["https://tec.openplanner.team/stops/Bpechos1", "https://tec.openplanner.team/stops/Bpechos2"], ["https://tec.openplanner.team/stops/N553aaa", "https://tec.openplanner.team/stops/N553aab"], ["https://tec.openplanner.team/stops/H1br126a", "https://tec.openplanner.team/stops/H2ma202b"], ["https://tec.openplanner.team/stops/N245aba", "https://tec.openplanner.team/stops/N340agb"], ["https://tec.openplanner.team/stops/LDOastr1", "https://tec.openplanner.team/stops/LDOviad1"], ["https://tec.openplanner.team/stops/Cwfcule1", "https://tec.openplanner.team/stops/N543bna"], ["https://tec.openplanner.team/stops/N501ebz", "https://tec.openplanner.team/stops/N501epd"], ["https://tec.openplanner.team/stops/Bgembhe1", "https://tec.openplanner.team/stops/N541aca"], ["https://tec.openplanner.team/stops/LLgmini1", "https://tec.openplanner.team/stops/LLgmini2"], ["https://tec.openplanner.team/stops/LGDgdou1", "https://tec.openplanner.team/stops/LWLhagi1"], ["https://tec.openplanner.team/stops/Bblabos1", "https://tec.openplanner.team/stops/Bblacar2"], ["https://tec.openplanner.team/stops/Cchplan1", "https://tec.openplanner.team/stops/Cchplan2"], ["https://tec.openplanner.team/stops/X727afa", "https://tec.openplanner.team/stops/X728aaa"], ["https://tec.openplanner.team/stops/X597anb", "https://tec.openplanner.team/stops/X597apb"], ["https://tec.openplanner.team/stops/Clgrsoc2", "https://tec.openplanner.team/stops/Ctipoui2"], ["https://tec.openplanner.team/stops/Bspkker1", "https://tec.openplanner.team/stops/H1mk113a"], ["https://tec.openplanner.team/stops/N117aba", "https://tec.openplanner.team/stops/N145agb"], ["https://tec.openplanner.team/stops/H4eq123b", "https://tec.openplanner.team/stops/H4he106b"], ["https://tec.openplanner.team/stops/LbOvith1", "https://tec.openplanner.team/stops/LnEkirc4"], ["https://tec.openplanner.team/stops/Cthbifu2", "https://tec.openplanner.team/stops/Cthhttr3"], ["https://tec.openplanner.team/stops/X948ajb", "https://tec.openplanner.team/stops/X948apa"], ["https://tec.openplanner.team/stops/X812aia", "https://tec.openplanner.team/stops/X812ava"], ["https://tec.openplanner.team/stops/N574aab", "https://tec.openplanner.team/stops/N576adb"], ["https://tec.openplanner.team/stops/Crgegli1", "https://tec.openplanner.team/stops/Crglyre2"], ["https://tec.openplanner.team/stops/H1vt195a", "https://tec.openplanner.team/stops/H1vt195b"], ["https://tec.openplanner.team/stops/H1ho131b", "https://tec.openplanner.team/stops/H1ho136a"], ["https://tec.openplanner.team/stops/Bwatppa1", "https://tec.openplanner.team/stops/Bwatras2"], ["https://tec.openplanner.team/stops/N562bha", "https://tec.openplanner.team/stops/N562bjb"], ["https://tec.openplanner.team/stops/LLrc1651", "https://tec.openplanner.team/stops/LLrc1991"], ["https://tec.openplanner.team/stops/H2ch101b", "https://tec.openplanner.team/stops/H2go113b"], ["https://tec.openplanner.team/stops/Cmecime2", "https://tec.openplanner.team/stops/Cmerdby2"], ["https://tec.openplanner.team/stops/Bhmmbog1", "https://tec.openplanner.team/stops/Btlgmar1"], ["https://tec.openplanner.team/stops/Cchbaza2", "https://tec.openplanner.team/stops/Cchccom2"], ["https://tec.openplanner.team/stops/H1to151b", "https://tec.openplanner.team/stops/H1to152a"], ["https://tec.openplanner.team/stops/H3so157a", "https://tec.openplanner.team/stops/H3so172a"], ["https://tec.openplanner.team/stops/Cfrcoqu2", "https://tec.openplanner.team/stops/Cfrfede1"], ["https://tec.openplanner.team/stops/LFPkape1", "https://tec.openplanner.team/stops/LFPknap2"], ["https://tec.openplanner.team/stops/Bbldass2", "https://tec.openplanner.team/stops/Bbldmun2"], ["https://tec.openplanner.team/stops/Bixlqll1", "https://tec.openplanner.team/stops/Bsgipha2"], ["https://tec.openplanner.team/stops/H4lp121a", "https://tec.openplanner.team/stops/H4lp121b"], ["https://tec.openplanner.team/stops/X873abb", "https://tec.openplanner.team/stops/X873aca"], ["https://tec.openplanner.team/stops/X805aaa", "https://tec.openplanner.team/stops/X869aeb"], ["https://tec.openplanner.team/stops/Bbeagae2", "https://tec.openplanner.team/stops/Bzlucam2"], ["https://tec.openplanner.team/stops/H4br107a", "https://tec.openplanner.team/stops/H4br108a"], ["https://tec.openplanner.team/stops/X879apb", "https://tec.openplanner.team/stops/X879ara"], ["https://tec.openplanner.team/stops/Bchgpap2", "https://tec.openplanner.team/stops/Bchgrco1"], ["https://tec.openplanner.team/stops/Bbuztai1", "https://tec.openplanner.team/stops/Bbuztai2"], ["https://tec.openplanner.team/stops/X793afc", "https://tec.openplanner.team/stops/X793afd"], ["https://tec.openplanner.team/stops/Clfbarr1", "https://tec.openplanner.team/stops/Clfbarr4"], ["https://tec.openplanner.team/stops/Cfaeclu1", "https://tec.openplanner.team/stops/Cfaysle1"], ["https://tec.openplanner.team/stops/LsVgesc1", "https://tec.openplanner.team/stops/LsVgesc2"], ["https://tec.openplanner.team/stops/Baegpon3", "https://tec.openplanner.team/stops/Baegpon4"], ["https://tec.openplanner.team/stops/Cjubien2", "https://tec.openplanner.team/stops/Cjuquai2"], ["https://tec.openplanner.team/stops/H1ho144a", "https://tec.openplanner.team/stops/H1ho144b"], ["https://tec.openplanner.team/stops/Bneehou1", "https://tec.openplanner.team/stops/Bneehou2"], ["https://tec.openplanner.team/stops/LFEmala1", "https://tec.openplanner.team/stops/LFEmala2"], ["https://tec.openplanner.team/stops/Bgerd321", "https://tec.openplanner.team/stops/Bgrhpos1"], ["https://tec.openplanner.team/stops/LFyec--2", "https://tec.openplanner.team/stops/LFyWarc1"], ["https://tec.openplanner.team/stops/H4my120a", "https://tec.openplanner.team/stops/H4vz367b"], ["https://tec.openplanner.team/stops/LLEfagn2", "https://tec.openplanner.team/stops/LQacabi1"], ["https://tec.openplanner.team/stops/N310aaa", "https://tec.openplanner.team/stops/N312ada"], ["https://tec.openplanner.team/stops/X898aea", "https://tec.openplanner.team/stops/X898afb"], ["https://tec.openplanner.team/stops/Bbcocou2", "https://tec.openplanner.team/stops/Bbcopre1"], ["https://tec.openplanner.team/stops/X637adb", "https://tec.openplanner.team/stops/X637aka"], ["https://tec.openplanner.team/stops/Cvpsthu1", "https://tec.openplanner.team/stops/Cvpsthu2"], ["https://tec.openplanner.team/stops/Bhlvgar2", "https://tec.openplanner.team/stops/Blpghou1"], ["https://tec.openplanner.team/stops/Cmlbras2", "https://tec.openplanner.team/stops/Cmlhotv1"], ["https://tec.openplanner.team/stops/H1gn151a", "https://tec.openplanner.team/stops/H1gn151b"], ["https://tec.openplanner.team/stops/Cladura3", "https://tec.openplanner.team/stops/NC23aaa"], ["https://tec.openplanner.team/stops/LBbbac-2", "https://tec.openplanner.team/stops/LHXmonu2"], ["https://tec.openplanner.team/stops/LBDcarr1", "https://tec.openplanner.team/stops/LJEniho1"], ["https://tec.openplanner.team/stops/Bbounci2", "https://tec.openplanner.team/stops/Bboupde2"], ["https://tec.openplanner.team/stops/N548aaa", "https://tec.openplanner.team/stops/N548aca"], ["https://tec.openplanner.team/stops/N244abb", "https://tec.openplanner.team/stops/N244afa"], ["https://tec.openplanner.team/stops/H5qu145a", "https://tec.openplanner.team/stops/H5qu145b"], ["https://tec.openplanner.team/stops/X766aab", "https://tec.openplanner.team/stops/X766aba"], ["https://tec.openplanner.team/stops/LTPplco1", "https://tec.openplanner.team/stops/LTPreco2"], ["https://tec.openplanner.team/stops/X796abb", "https://tec.openplanner.team/stops/X986aga"], ["https://tec.openplanner.team/stops/Bdvmc432", "https://tec.openplanner.team/stops/Bdvmsar1"], ["https://tec.openplanner.team/stops/Llgbavr1", "https://tec.openplanner.team/stops/Llgec--1"], ["https://tec.openplanner.team/stops/H1eq115b", "https://tec.openplanner.team/stops/H1eq116b"], ["https://tec.openplanner.team/stops/N571aba", "https://tec.openplanner.team/stops/N571aja"], ["https://tec.openplanner.team/stops/N110aca", "https://tec.openplanner.team/stops/N110acb"], ["https://tec.openplanner.team/stops/LOltill2", "https://tec.openplanner.team/stops/LScd45-1"], ["https://tec.openplanner.team/stops/X345aca", "https://tec.openplanner.team/stops/X363ada"], ["https://tec.openplanner.team/stops/X760aba", "https://tec.openplanner.team/stops/X760abb"], ["https://tec.openplanner.team/stops/LSImewi1", "https://tec.openplanner.team/stops/LSIroch1"], ["https://tec.openplanner.team/stops/N234aab", "https://tec.openplanner.team/stops/N234afa"], ["https://tec.openplanner.team/stops/H2lh125b", "https://tec.openplanner.team/stops/H2mm140a"], ["https://tec.openplanner.team/stops/N141aab", "https://tec.openplanner.team/stops/N141abb"], ["https://tec.openplanner.team/stops/Cgrchea1", "https://tec.openplanner.team/stops/Cgrchea2"], ["https://tec.openplanner.team/stops/N512aba", "https://tec.openplanner.team/stops/N512abb"], ["https://tec.openplanner.team/stops/Bbourel1", "https://tec.openplanner.team/stops/Bbourel2"], ["https://tec.openplanner.team/stops/Lsmpost1", "https://tec.openplanner.team/stops/Lveinva2"], ["https://tec.openplanner.team/stops/Lmlcite*", "https://tec.openplanner.team/stops/Lmlrosa1"], ["https://tec.openplanner.team/stops/NC44aea", "https://tec.openplanner.team/stops/NC44aeb"], ["https://tec.openplanner.team/stops/H1em110a", "https://tec.openplanner.team/stops/H1hl123a"], ["https://tec.openplanner.team/stops/Bgzddur1", "https://tec.openplanner.team/stops/Bgzdpis2"], ["https://tec.openplanner.team/stops/Bbsgrve1", "https://tec.openplanner.team/stops/Bnetvan1"], ["https://tec.openplanner.team/stops/LMffoot1", "https://tec.openplanner.team/stops/LMffoot2"], ["https://tec.openplanner.team/stops/X670apa", "https://tec.openplanner.team/stops/X670asa"], ["https://tec.openplanner.team/stops/H1ry135b", "https://tec.openplanner.team/stops/H1ry137a"], ["https://tec.openplanner.team/stops/H1mj125a", "https://tec.openplanner.team/stops/H1mj129a"], ["https://tec.openplanner.team/stops/H1cu113b", "https://tec.openplanner.team/stops/H1cu129a"], ["https://tec.openplanner.team/stops/N236ahb", "https://tec.openplanner.team/stops/N236aja"], ["https://tec.openplanner.team/stops/H1bu139b", "https://tec.openplanner.team/stops/H1bu141a"], ["https://tec.openplanner.team/stops/X946acb", "https://tec.openplanner.team/stops/X946ada"], ["https://tec.openplanner.team/stops/Bmalcar1", "https://tec.openplanner.team/stops/Bmalcar2"], ["https://tec.openplanner.team/stops/LhGfl242", "https://tec.openplanner.team/stops/LhGkirc4"], ["https://tec.openplanner.team/stops/Cthha501", "https://tec.openplanner.team/stops/Cthrpoi2"], ["https://tec.openplanner.team/stops/N230afb", "https://tec.openplanner.team/stops/N230ala"], ["https://tec.openplanner.team/stops/N103aaa", "https://tec.openplanner.team/stops/N103aab"], ["https://tec.openplanner.team/stops/H5rx148a", "https://tec.openplanner.team/stops/H5rx149a"], ["https://tec.openplanner.team/stops/N348abb", "https://tec.openplanner.team/stops/N348aca"], ["https://tec.openplanner.team/stops/H4ty265a", "https://tec.openplanner.team/stops/H4ty280a"], ["https://tec.openplanner.team/stops/LkAsonn1", "https://tec.openplanner.team/stops/LkAsonn2"], ["https://tec.openplanner.team/stops/X542aea", "https://tec.openplanner.team/stops/X542aga"], ["https://tec.openplanner.team/stops/Cmlipsm2", "https://tec.openplanner.team/stops/Cmlipsm3"], ["https://tec.openplanner.team/stops/LMsalen1", "https://tec.openplanner.team/stops/LMsviad1"], ["https://tec.openplanner.team/stops/LVMchpl1", "https://tec.openplanner.team/stops/LVMchpl2"], ["https://tec.openplanner.team/stops/LAYlieg1", "https://tec.openplanner.team/stops/LAYlieg2"], ["https://tec.openplanner.team/stops/Bbcogpl1", "https://tec.openplanner.team/stops/Bbcogpl2"], ["https://tec.openplanner.team/stops/LWElanc1", "https://tec.openplanner.team/stops/LWEmerm2"], ["https://tec.openplanner.team/stops/LAvambr2", "https://tec.openplanner.team/stops/LAvatri2"], ["https://tec.openplanner.team/stops/LPbeg--2", "https://tec.openplanner.team/stops/LPbusin1"], ["https://tec.openplanner.team/stops/X616ada", "https://tec.openplanner.team/stops/X616adb"], ["https://tec.openplanner.team/stops/N501kfb", "https://tec.openplanner.team/stops/N501kka"], ["https://tec.openplanner.team/stops/Chppack1", "https://tec.openplanner.team/stops/Chppack2"], ["https://tec.openplanner.team/stops/N131aeb", "https://tec.openplanner.team/stops/NH21ahb"], ["https://tec.openplanner.team/stops/H2ep172b", "https://tec.openplanner.team/stops/H2le176a"], ["https://tec.openplanner.team/stops/LmRkape1", "https://tec.openplanner.team/stops/LmRmuhl2"], ["https://tec.openplanner.team/stops/X796abb", "https://tec.openplanner.team/stops/X796aca"], ["https://tec.openplanner.team/stops/Bbgnvel1", "https://tec.openplanner.team/stops/Cwfghis2"], ["https://tec.openplanner.team/stops/N117asa", "https://tec.openplanner.team/stops/N117ata"], ["https://tec.openplanner.team/stops/LCUmonu2", "https://tec.openplanner.team/stops/NL67acb"], ["https://tec.openplanner.team/stops/Cbmvalt1", "https://tec.openplanner.team/stops/Cstmarz1"], ["https://tec.openplanner.team/stops/LmHbahn2", "https://tec.openplanner.team/stops/LmTgers2"], ["https://tec.openplanner.team/stops/X808ahb", "https://tec.openplanner.team/stops/X808ala"], ["https://tec.openplanner.team/stops/N522aga", "https://tec.openplanner.team/stops/N522aha"], ["https://tec.openplanner.team/stops/LVLeg--2", "https://tec.openplanner.team/stops/LVLeg--3"], ["https://tec.openplanner.team/stops/N331aja", "https://tec.openplanner.team/stops/N331akb"], ["https://tec.openplanner.team/stops/LRGmoul2", "https://tec.openplanner.team/stops/LRGunio3"], ["https://tec.openplanner.team/stops/X882aca", "https://tec.openplanner.team/stops/X882aha"], ["https://tec.openplanner.team/stops/LJSforg1", "https://tec.openplanner.team/stops/LTAchpl1"], ["https://tec.openplanner.team/stops/LMEpech1", "https://tec.openplanner.team/stops/LMEpech2"], ["https://tec.openplanner.team/stops/LHUlebe0", "https://tec.openplanner.team/stops/LHUlebe9"], ["https://tec.openplanner.team/stops/Bhevhha1", "https://tec.openplanner.team/stops/Bpecsta2"], ["https://tec.openplanner.team/stops/Lhrmemo2", "https://tec.openplanner.team/stops/Lmibove3"], ["https://tec.openplanner.team/stops/H4lz124a", "https://tec.openplanner.team/stops/H4lz127a"], ["https://tec.openplanner.team/stops/NL67acb", "https://tec.openplanner.team/stops/NL67ada"], ["https://tec.openplanner.team/stops/H4pq112a", "https://tec.openplanner.team/stops/H4pq112b"], ["https://tec.openplanner.team/stops/LSZchpl2", "https://tec.openplanner.team/stops/LSZstoc2"], ["https://tec.openplanner.team/stops/LmIvale2", "https://tec.openplanner.team/stops/LmIvale3"], ["https://tec.openplanner.team/stops/LmTschi1", "https://tec.openplanner.team/stops/LmTschi2"], ["https://tec.openplanner.team/stops/Cpcbrig1", "https://tec.openplanner.team/stops/Cpcbrig2"], ["https://tec.openplanner.team/stops/X939aga", "https://tec.openplanner.team/stops/X940ahb"], ["https://tec.openplanner.team/stops/LTHcime2", "https://tec.openplanner.team/stops/LTHmont2"], ["https://tec.openplanner.team/stops/LPLcite1", "https://tec.openplanner.team/stops/LPLcroi1"], ["https://tec.openplanner.team/stops/N505aab", "https://tec.openplanner.team/stops/N505adb"], ["https://tec.openplanner.team/stops/N501boa", "https://tec.openplanner.team/stops/N501bob"], ["https://tec.openplanner.team/stops/H4fa126a", "https://tec.openplanner.team/stops/H4fa126d"], ["https://tec.openplanner.team/stops/H4le127b", "https://tec.openplanner.team/stops/H4ry133a"], ["https://tec.openplanner.team/stops/LbTkreu1", "https://tec.openplanner.team/stops/LbTkreu4"], ["https://tec.openplanner.team/stops/X910aab", "https://tec.openplanner.team/stops/X910aca"], ["https://tec.openplanner.team/stops/X780aeb", "https://tec.openplanner.team/stops/X790aaa"], ["https://tec.openplanner.team/stops/H4ch115a", "https://tec.openplanner.team/stops/H4ch115b"], ["https://tec.openplanner.team/stops/X662aeb", "https://tec.openplanner.team/stops/X662agb"], ["https://tec.openplanner.team/stops/X637aab", "https://tec.openplanner.team/stops/X637arb"], ["https://tec.openplanner.team/stops/N517aab", "https://tec.openplanner.team/stops/N517afb"], ["https://tec.openplanner.team/stops/H1ht133a", "https://tec.openplanner.team/stops/H1ht135b"], ["https://tec.openplanner.team/stops/Bbauegl1", "https://tec.openplanner.team/stops/Bbautri1"], ["https://tec.openplanner.team/stops/LVLhalb3", "https://tec.openplanner.team/stops/LVLhalb4"], ["https://tec.openplanner.team/stops/LBCaube2", "https://tec.openplanner.team/stops/LMTvill1"], ["https://tec.openplanner.team/stops/LiVdorf2", "https://tec.openplanner.team/stops/LiVgirk1"], ["https://tec.openplanner.team/stops/Cfabaty4", "https://tec.openplanner.team/stops/Clacast2"], ["https://tec.openplanner.team/stops/LVLchem2", "https://tec.openplanner.team/stops/LVLhalb4"], ["https://tec.openplanner.team/stops/H1br130a", "https://tec.openplanner.team/stops/H1br134a"], ["https://tec.openplanner.team/stops/LTPgare*", "https://tec.openplanner.team/stops/LTPpreh2"], ["https://tec.openplanner.team/stops/LDOchev1", "https://tec.openplanner.team/stops/LDOgare2"], ["https://tec.openplanner.team/stops/N501imb", "https://tec.openplanner.team/stops/N501nba"], ["https://tec.openplanner.team/stops/N547aja", "https://tec.openplanner.team/stops/N573arb"], ["https://tec.openplanner.team/stops/Beclesp1", "https://tec.openplanner.team/stops/Beclesp2"], ["https://tec.openplanner.team/stops/H4to134a", "https://tec.openplanner.team/stops/H4to135a"], ["https://tec.openplanner.team/stops/H1ho144b", "https://tec.openplanner.team/stops/H1ho147b"], ["https://tec.openplanner.team/stops/N501gra", "https://tec.openplanner.team/stops/N501grc"], ["https://tec.openplanner.team/stops/X359aac", "https://tec.openplanner.team/stops/X371afa"], ["https://tec.openplanner.team/stops/LPOthom2", "https://tec.openplanner.team/stops/LSdbvue1"], ["https://tec.openplanner.team/stops/LSMec--1", "https://tec.openplanner.team/stops/LSMeg--1"], ["https://tec.openplanner.team/stops/LCxeg--1", "https://tec.openplanner.team/stops/LCxfawe1"], ["https://tec.openplanner.team/stops/N232asb", "https://tec.openplanner.team/stops/N232bya"], ["https://tec.openplanner.team/stops/H1th181a", "https://tec.openplanner.team/stops/H1th183b"], ["https://tec.openplanner.team/stops/H2bh110a", "https://tec.openplanner.team/stops/H2bh119a"], ["https://tec.openplanner.team/stops/H2re165a", "https://tec.openplanner.team/stops/H2re167b"], ["https://tec.openplanner.team/stops/H4ty269a", "https://tec.openplanner.team/stops/H4ty405a"], ["https://tec.openplanner.team/stops/LFTcroi3", "https://tec.openplanner.team/stops/LFTec--3"], ["https://tec.openplanner.team/stops/X614aub", "https://tec.openplanner.team/stops/X615ama"], ["https://tec.openplanner.team/stops/LHUfrai2", "https://tec.openplanner.team/stops/LHUsart2"], ["https://tec.openplanner.team/stops/Bnivgen1", "https://tec.openplanner.team/stops/Bnivsto1"], ["https://tec.openplanner.team/stops/X733aba", "https://tec.openplanner.team/stops/X733acb"], ["https://tec.openplanner.team/stops/X820abb", "https://tec.openplanner.team/stops/X820aib"], ["https://tec.openplanner.team/stops/Lbrfoid3", "https://tec.openplanner.team/stops/Lbrfoid4"], ["https://tec.openplanner.team/stops/H4wn128b", "https://tec.openplanner.team/stops/H4wn130b"], ["https://tec.openplanner.team/stops/LFHjamo2", "https://tec.openplanner.team/stops/LVGeg--1"], ["https://tec.openplanner.team/stops/LHUbail1", "https://tec.openplanner.team/stops/LHUhsar2"], ["https://tec.openplanner.team/stops/Bnivsnu1", "https://tec.openplanner.team/stops/Bnivvri2"], ["https://tec.openplanner.team/stops/X945acb", "https://tec.openplanner.team/stops/X948aqa"], ["https://tec.openplanner.team/stops/LTIdamr2", "https://tec.openplanner.team/stops/LTIpire1"], ["https://tec.openplanner.team/stops/H4fo116a", "https://tec.openplanner.team/stops/H4my123b"], ["https://tec.openplanner.team/stops/X750asa", "https://tec.openplanner.team/stops/X750asb"], ["https://tec.openplanner.team/stops/Cerrver3", "https://tec.openplanner.team/stops/Cerrver4"], ["https://tec.openplanner.team/stops/H1ju121b", "https://tec.openplanner.team/stops/H1mj126b"], ["https://tec.openplanner.team/stops/N501amb", "https://tec.openplanner.team/stops/N528aha"], ["https://tec.openplanner.team/stops/Bnilcim1", "https://tec.openplanner.team/stops/Bnilpje2"], ["https://tec.openplanner.team/stops/LNIec--2", "https://tec.openplanner.team/stops/LNIhaut2"], ["https://tec.openplanner.team/stops/Cgrsaul1", "https://tec.openplanner.team/stops/Cgrsaul2"], ["https://tec.openplanner.team/stops/X608acb", "https://tec.openplanner.team/stops/X608adb"], ["https://tec.openplanner.team/stops/LBNpleg1", "https://tec.openplanner.team/stops/LBNvill3"], ["https://tec.openplanner.team/stops/X614ana", "https://tec.openplanner.team/stops/X614aoa"], ["https://tec.openplanner.team/stops/LHEnaza1", "https://tec.openplanner.team/stops/LHEnaza2"], ["https://tec.openplanner.team/stops/Chhsncb1", "https://tec.openplanner.team/stops/Chhverr2"], ["https://tec.openplanner.team/stops/X775aka", "https://tec.openplanner.team/stops/X775ana"], ["https://tec.openplanner.team/stops/Cmcegli2", "https://tec.openplanner.team/stops/Cmcegli4"], ["https://tec.openplanner.team/stops/H4mo152a", "https://tec.openplanner.team/stops/H4mo204a"], ["https://tec.openplanner.team/stops/N534aqb", "https://tec.openplanner.team/stops/N534bbb"], ["https://tec.openplanner.team/stops/H4rc231a", "https://tec.openplanner.team/stops/H4rc231b"], ["https://tec.openplanner.team/stops/Cjudest2", "https://tec.openplanner.team/stops/Cjupn3"], ["https://tec.openplanner.team/stops/X925aia", "https://tec.openplanner.team/stops/X925aja"], ["https://tec.openplanner.team/stops/H5rx121a", "https://tec.openplanner.team/stops/H5rx121b"], ["https://tec.openplanner.team/stops/N204aaa", "https://tec.openplanner.team/stops/N204aab"], ["https://tec.openplanner.team/stops/LPAbour1", "https://tec.openplanner.team/stops/LPAmosa1"], ["https://tec.openplanner.team/stops/LsVbs--*", "https://tec.openplanner.team/stops/LsVsimo2"], ["https://tec.openplanner.team/stops/H1hw123a", "https://tec.openplanner.team/stops/H1hw124b"], ["https://tec.openplanner.team/stops/X949aea", "https://tec.openplanner.team/stops/X949aeb"], ["https://tec.openplanner.team/stops/Cgycime2", "https://tec.openplanner.team/stops/Cgytrie2"], ["https://tec.openplanner.team/stops/Lgrbill2", "https://tec.openplanner.team/stops/Lgrbonn6"], ["https://tec.openplanner.team/stops/Llgpbay1", "https://tec.openplanner.team/stops/Llgvolg2"], ["https://tec.openplanner.team/stops/H1gi123a", "https://tec.openplanner.team/stops/H1gi123b"], ["https://tec.openplanner.team/stops/Lvtchpl4", "https://tec.openplanner.team/stops/Lvtpepi1"], ["https://tec.openplanner.team/stops/H4oq225a", "https://tec.openplanner.team/stops/H4oq228b"], ["https://tec.openplanner.team/stops/LAYsupe1", "https://tec.openplanner.team/stops/LAYwerb2"], ["https://tec.openplanner.team/stops/X636bda", "https://tec.openplanner.team/stops/X636bha"], ["https://tec.openplanner.team/stops/Cmtmoul1", "https://tec.openplanner.team/stops/Cmtproc2"], ["https://tec.openplanner.team/stops/LVbcoul1", "https://tec.openplanner.team/stops/LVbsurr2"], ["https://tec.openplanner.team/stops/Cgzha622", "https://tec.openplanner.team/stops/Cgzmarb2"], ["https://tec.openplanner.team/stops/Cctathe2", "https://tec.openplanner.team/stops/Cpllimi4"], ["https://tec.openplanner.team/stops/LSPdesc2", "https://tec.openplanner.team/stops/LSPsous1"], ["https://tec.openplanner.team/stops/X725aja", "https://tec.openplanner.team/stops/X725ajb"], ["https://tec.openplanner.team/stops/Lsestap1", "https://tec.openplanner.team/stops/Lsestap2"], ["https://tec.openplanner.team/stops/H1hh112b", "https://tec.openplanner.team/stops/H1hh114a"], ["https://tec.openplanner.team/stops/LAMcime1", "https://tec.openplanner.team/stops/LAMfroi1"], ["https://tec.openplanner.team/stops/N425aaa", "https://tec.openplanner.team/stops/N425aha"], ["https://tec.openplanner.team/stops/N145aga", "https://tec.openplanner.team/stops/N145ahb"], ["https://tec.openplanner.team/stops/Bnivmat1", "https://tec.openplanner.team/stops/Bnivtec2"], ["https://tec.openplanner.team/stops/LCF1spa2", "https://tec.openplanner.team/stops/LVnrock1"], ["https://tec.openplanner.team/stops/X659arb", "https://tec.openplanner.team/stops/X659ava"], ["https://tec.openplanner.team/stops/X818apa", "https://tec.openplanner.team/stops/X820amb"], ["https://tec.openplanner.team/stops/Bnodblt2", "https://tec.openplanner.team/stops/Boplcsj3"], ["https://tec.openplanner.team/stops/X773afa", "https://tec.openplanner.team/stops/X773agb"], ["https://tec.openplanner.team/stops/LLycent*", "https://tec.openplanner.team/stops/LXfsolw1"], ["https://tec.openplanner.team/stops/Cgzmarb2", "https://tec.openplanner.team/stops/Ctuosso1"], ["https://tec.openplanner.team/stops/X614ahb", "https://tec.openplanner.team/stops/X614asb"], ["https://tec.openplanner.team/stops/X952abb", "https://tec.openplanner.team/stops/X952aga"], ["https://tec.openplanner.team/stops/X767aja", "https://tec.openplanner.team/stops/X769aaa"], ["https://tec.openplanner.team/stops/Blhucmo2", "https://tec.openplanner.team/stops/Blhumga1"], ["https://tec.openplanner.team/stops/N153aab", "https://tec.openplanner.team/stops/N153aeb"], ["https://tec.openplanner.team/stops/H1al106a", "https://tec.openplanner.team/stops/H1bs110c"], ["https://tec.openplanner.team/stops/H4ce108a", "https://tec.openplanner.team/stops/H4ce108b"], ["https://tec.openplanner.team/stops/LBkjenn1", "https://tec.openplanner.team/stops/LWEfati2"], ["https://tec.openplanner.team/stops/H1hr115b", "https://tec.openplanner.team/stops/H1hr118a"], ["https://tec.openplanner.team/stops/Bwavbmo1", "https://tec.openplanner.team/stops/Bwavche1"], ["https://tec.openplanner.team/stops/NH01aba", "https://tec.openplanner.team/stops/NH01atb"], ["https://tec.openplanner.team/stops/Cbmplac1", "https://tec.openplanner.team/stops/H1bt100a"], ["https://tec.openplanner.team/stops/Cbtgemi1", "https://tec.openplanner.team/stops/Cfrcoqu1"], ["https://tec.openplanner.team/stops/Lenvale1", "https://tec.openplanner.team/stops/Llmdavi1"], ["https://tec.openplanner.team/stops/Bwspbos1", "https://tec.openplanner.team/stops/Bwspm371"], ["https://tec.openplanner.team/stops/LDmeg--2", "https://tec.openplanner.team/stops/LHovach2"], ["https://tec.openplanner.team/stops/N531aba", "https://tec.openplanner.team/stops/N576ajb"], ["https://tec.openplanner.team/stops/Lbhfaye1", "https://tec.openplanner.team/stops/Lgrwill1"], ["https://tec.openplanner.team/stops/LOMbrou2", "https://tec.openplanner.team/stops/LOMdodi2"], ["https://tec.openplanner.team/stops/H1hn207a", "https://tec.openplanner.team/stops/H1hn363a"], ["https://tec.openplanner.team/stops/H1cd113b", "https://tec.openplanner.team/stops/H1to152a"], ["https://tec.openplanner.team/stops/H1wa151a", "https://tec.openplanner.team/stops/H1wa156a"], ["https://tec.openplanner.team/stops/LSPgend1", "https://tec.openplanner.team/stops/LSPgend2"], ["https://tec.openplanner.team/stops/Lmlbaro1", "https://tec.openplanner.team/stops/Lmldama2"], ["https://tec.openplanner.team/stops/N101arb", "https://tec.openplanner.team/stops/N117bda"], ["https://tec.openplanner.team/stops/Cmllait1", "https://tec.openplanner.team/stops/Cmlvesp1"], ["https://tec.openplanner.team/stops/N538ata", "https://tec.openplanner.team/stops/N538axb"], ["https://tec.openplanner.team/stops/Cfmcoro2", "https://tec.openplanner.team/stops/Cfmwaut1"], ["https://tec.openplanner.team/stops/N254aaa", "https://tec.openplanner.team/stops/N562bfa"], ["https://tec.openplanner.team/stops/Cdaviol2", "https://tec.openplanner.team/stops/Cmarroy2"], ["https://tec.openplanner.team/stops/Cvvgrsa1", "https://tec.openplanner.team/stops/Cvvsncb1"], ["https://tec.openplanner.team/stops/N549ada", "https://tec.openplanner.team/stops/N549aib"], ["https://tec.openplanner.team/stops/Cgoloca2", "https://tec.openplanner.team/stops/Cgonvro1"], ["https://tec.openplanner.team/stops/NH01aab", "https://tec.openplanner.team/stops/NH01abb"], ["https://tec.openplanner.team/stops/Lpecaze1", "https://tec.openplanner.team/stops/Lpecaze2"], ["https://tec.openplanner.team/stops/LCUthie1", "https://tec.openplanner.team/stops/LCUthie2"], ["https://tec.openplanner.team/stops/H1gr112b", "https://tec.openplanner.team/stops/H1gr123a"], ["https://tec.openplanner.team/stops/Cjxpris2", "https://tec.openplanner.team/stops/Cna4che1"], ["https://tec.openplanner.team/stops/LoDcorn1", "https://tec.openplanner.team/stops/LoDscha1"], ["https://tec.openplanner.team/stops/H4gr108a", "https://tec.openplanner.team/stops/H4gr112a"], ["https://tec.openplanner.team/stops/N579aab", "https://tec.openplanner.team/stops/N579ada"], ["https://tec.openplanner.team/stops/Lstetud1", "https://tec.openplanner.team/stops/Lsttech2"], ["https://tec.openplanner.team/stops/LAYcorn2", "https://tec.openplanner.team/stops/LFLgara2"], ["https://tec.openplanner.team/stops/LNAanne2", "https://tec.openplanner.team/stops/LSSfrai2"], ["https://tec.openplanner.team/stops/LBahaut1", "https://tec.openplanner.team/stops/LLrmeno1"], ["https://tec.openplanner.team/stops/Cmogrbu1", "https://tec.openplanner.team/stops/Cmopn1"], ["https://tec.openplanner.team/stops/H4bo112a", "https://tec.openplanner.team/stops/H4bo117a"], ["https://tec.openplanner.team/stops/H2bh114a", "https://tec.openplanner.team/stops/H2bh115a"], ["https://tec.openplanner.team/stops/Cbmgare1", "https://tec.openplanner.team/stops/Cbmgare2"], ["https://tec.openplanner.team/stops/X781aha", "https://tec.openplanner.team/stops/X781ahb"], ["https://tec.openplanner.team/stops/LMedoum1", "https://tec.openplanner.team/stops/LMedoum2"], ["https://tec.openplanner.team/stops/Ljudeme2", "https://tec.openplanner.team/stops/Ljudeme3"], ["https://tec.openplanner.team/stops/Lmlprie1", "https://tec.openplanner.team/stops/Lpocent2"], ["https://tec.openplanner.team/stops/N532abb", "https://tec.openplanner.team/stops/N532aia"], ["https://tec.openplanner.team/stops/X719aaa", "https://tec.openplanner.team/stops/X719afb"], ["https://tec.openplanner.team/stops/N154aba", "https://tec.openplanner.team/stops/N154abb"], ["https://tec.openplanner.team/stops/X762aab", "https://tec.openplanner.team/stops/X763aea"], ["https://tec.openplanner.team/stops/X767aea", "https://tec.openplanner.team/stops/X767afa"], ["https://tec.openplanner.team/stops/Cgxfo141", "https://tec.openplanner.team/stops/Cgxfo142"], ["https://tec.openplanner.team/stops/N506bwa", "https://tec.openplanner.team/stops/N506bwb"], ["https://tec.openplanner.team/stops/LhUrich1", "https://tec.openplanner.team/stops/LhUrich2"], ["https://tec.openplanner.team/stops/Cchmont2", "https://tec.openplanner.team/stops/Cchprun1"], ["https://tec.openplanner.team/stops/LCAcruc1", "https://tec.openplanner.team/stops/LTGvill2"], ["https://tec.openplanner.team/stops/LSZprie1", "https://tec.openplanner.team/stops/LSZsolw3"], ["https://tec.openplanner.team/stops/Lmabott1", "https://tec.openplanner.team/stops/Lmagara1"], ["https://tec.openplanner.team/stops/LwR129-1", "https://tec.openplanner.team/stops/LwRkirc1"], ["https://tec.openplanner.team/stops/X716aea", "https://tec.openplanner.team/stops/X716afa"], ["https://tec.openplanner.team/stops/X750aqa", "https://tec.openplanner.team/stops/X750bda"], ["https://tec.openplanner.team/stops/H4mv190b", "https://tec.openplanner.team/stops/H4mv192b"], ["https://tec.openplanner.team/stops/LMOeg--1", "https://tec.openplanner.team/stops/LMOeg--2"], ["https://tec.openplanner.team/stops/X950aba", "https://tec.openplanner.team/stops/X950acb"], ["https://tec.openplanner.team/stops/Crecouc2", "https://tec.openplanner.team/stops/Crefont2"], ["https://tec.openplanner.team/stops/N232bia", "https://tec.openplanner.team/stops/N232bja"], ["https://tec.openplanner.team/stops/LHUsaul2", "https://tec.openplanner.team/stops/LHUzoni2"], ["https://tec.openplanner.team/stops/Cculpre1", "https://tec.openplanner.team/stops/Ccuwil2"], ["https://tec.openplanner.team/stops/Cfrfede2", "https://tec.openplanner.team/stops/Csdpira2"], ["https://tec.openplanner.team/stops/LSsaxhe1", "https://tec.openplanner.team/stops/N506bda"], ["https://tec.openplanner.team/stops/Bbsgfva1", "https://tec.openplanner.team/stops/Bgzdn251"], ["https://tec.openplanner.team/stops/Lboeg--1", "https://tec.openplanner.team/stops/Lboeg--2"], ["https://tec.openplanner.team/stops/H4mb143b", "https://tec.openplanner.team/stops/H4mb143c"], ["https://tec.openplanner.team/stops/LBlplac2", "https://tec.openplanner.team/stops/LGMvoue2"], ["https://tec.openplanner.team/stops/N385aaa", "https://tec.openplanner.team/stops/N385aba"], ["https://tec.openplanner.team/stops/X818aea", "https://tec.openplanner.team/stops/X818aeb"], ["https://tec.openplanner.team/stops/Cmmbmad1", "https://tec.openplanner.team/stops/Cmmbmad2"], ["https://tec.openplanner.team/stops/H2mo120b", "https://tec.openplanner.team/stops/H2mo125a"], ["https://tec.openplanner.team/stops/Bmlncha2", "https://tec.openplanner.team/stops/Bmlnegl4"], ["https://tec.openplanner.team/stops/H1to151b", "https://tec.openplanner.team/stops/H1to154a"], ["https://tec.openplanner.team/stops/N101aba", "https://tec.openplanner.team/stops/N101abb"], ["https://tec.openplanner.team/stops/X801cda", "https://tec.openplanner.team/stops/X801ceb"], ["https://tec.openplanner.team/stops/Cmacart3", "https://tec.openplanner.team/stops/Cmacart4"], ["https://tec.openplanner.team/stops/LJvmart1", "https://tec.openplanner.team/stops/X781aaa"], ["https://tec.openplanner.team/stops/Bbeagae2", "https://tec.openplanner.team/stops/Bsrgcur2"], ["https://tec.openplanner.team/stops/LMOf21-1", "https://tec.openplanner.team/stops/LMOf35-1"], ["https://tec.openplanner.team/stops/X802apa", "https://tec.openplanner.team/stops/X802aqa"], ["https://tec.openplanner.team/stops/N585aka", "https://tec.openplanner.team/stops/N585akb"], ["https://tec.openplanner.team/stops/Lseathe1", "https://tec.openplanner.team/stops/Lsebeau1"], ["https://tec.openplanner.team/stops/H1ne140a", "https://tec.openplanner.team/stops/H1ne144a"], ["https://tec.openplanner.team/stops/X802aha", "https://tec.openplanner.team/stops/X802aoa"], ["https://tec.openplanner.team/stops/Cgrbert1", "https://tec.openplanner.team/stops/Cgrflac1"], ["https://tec.openplanner.team/stops/N232bzb", "https://tec.openplanner.team/stops/N232cdb"], ["https://tec.openplanner.team/stops/X664aaa", "https://tec.openplanner.team/stops/X667aea"], ["https://tec.openplanner.team/stops/Ccogera2", "https://tec.openplanner.team/stops/Csoforr1"], ["https://tec.openplanner.team/stops/NB33aea", "https://tec.openplanner.team/stops/NB33afb"], ["https://tec.openplanner.team/stops/X992ada", "https://tec.openplanner.team/stops/X992ajb"], ["https://tec.openplanner.team/stops/Clvimtr4", "https://tec.openplanner.team/stops/NC02aaa"], ["https://tec.openplanner.team/stops/Cgocnor4", "https://tec.openplanner.team/stops/Cgoetun5"], ["https://tec.openplanner.team/stops/Btancre2", "https://tec.openplanner.team/stops/Btannda2"], ["https://tec.openplanner.team/stops/N111ada", "https://tec.openplanner.team/stops/N127aha"], ["https://tec.openplanner.team/stops/X808ala", "https://tec.openplanner.team/stops/X808alb"], ["https://tec.openplanner.team/stops/LNCchev2", "https://tec.openplanner.team/stops/LNCgene2"], ["https://tec.openplanner.team/stops/Lmicoop3", "https://tec.openplanner.team/stops/Lmidarc2"], ["https://tec.openplanner.team/stops/N104aab", "https://tec.openplanner.team/stops/N104abb"], ["https://tec.openplanner.team/stops/LSNecol4", "https://tec.openplanner.team/stops/LSNmoul3"], ["https://tec.openplanner.team/stops/N501ivb", "https://tec.openplanner.team/stops/N521amb"], ["https://tec.openplanner.team/stops/N106aeb", "https://tec.openplanner.team/stops/N137afb"], ["https://tec.openplanner.team/stops/Cchsud03", "https://tec.openplanner.team/stops/Cchsud16"], ["https://tec.openplanner.team/stops/N167aaa", "https://tec.openplanner.team/stops/N167abb"], ["https://tec.openplanner.team/stops/H1ch132b", "https://tec.openplanner.team/stops/H5at128b"], ["https://tec.openplanner.team/stops/N348aaa", "https://tec.openplanner.team/stops/N348aab"], ["https://tec.openplanner.team/stops/LWZbeem1", "https://tec.openplanner.team/stops/LWZdtec1"], ["https://tec.openplanner.team/stops/N301aaa", "https://tec.openplanner.team/stops/N301apb"], ["https://tec.openplanner.team/stops/X741aja", "https://tec.openplanner.team/stops/X741ajc"], ["https://tec.openplanner.team/stops/H1fv100a", "https://tec.openplanner.team/stops/H1fv101a"], ["https://tec.openplanner.team/stops/H4bf108a", "https://tec.openplanner.team/stops/H4by119b"], ["https://tec.openplanner.team/stops/Lgrbill1", "https://tec.openplanner.team/stops/Lgrramp1"], ["https://tec.openplanner.team/stops/X940adb", "https://tec.openplanner.team/stops/X940aed"], ["https://tec.openplanner.team/stops/N506bdb", "https://tec.openplanner.team/stops/N506bha"], ["https://tec.openplanner.team/stops/N584aza", "https://tec.openplanner.team/stops/N584bab"], ["https://tec.openplanner.team/stops/X907ada", "https://tec.openplanner.team/stops/X908asb"], ["https://tec.openplanner.team/stops/X948aka", "https://tec.openplanner.team/stops/X948apa"], ["https://tec.openplanner.team/stops/N321afa", "https://tec.openplanner.team/stops/N352afb"], ["https://tec.openplanner.team/stops/LTPpres1", "https://tec.openplanner.team/stops/LTPspay2"], ["https://tec.openplanner.team/stops/Brixala2", "https://tec.openplanner.team/stops/Brixbou2"], ["https://tec.openplanner.team/stops/Llgoeil2", "https://tec.openplanner.team/stops/Llgpere1"], ["https://tec.openplanner.team/stops/Ccobinc1", "https://tec.openplanner.team/stops/Ccoconf1"], ["https://tec.openplanner.team/stops/LSMchat1", "https://tec.openplanner.team/stops/LTPcamp2"], ["https://tec.openplanner.team/stops/N351alb", "https://tec.openplanner.team/stops/N353awb"], ["https://tec.openplanner.team/stops/Blhugmo2", "https://tec.openplanner.team/stops/Blhutco3"], ["https://tec.openplanner.team/stops/X811aha", "https://tec.openplanner.team/stops/X811ahb"], ["https://tec.openplanner.team/stops/LNAbois2", "https://tec.openplanner.team/stops/LNAbouh1"], ["https://tec.openplanner.team/stops/Cbzfrom2", "https://tec.openplanner.team/stops/Creoudo2"], ["https://tec.openplanner.team/stops/Cgzabau1", "https://tec.openplanner.team/stops/Cgzabau2"], ["https://tec.openplanner.team/stops/N252aab", "https://tec.openplanner.team/stops/N252acc"], ["https://tec.openplanner.team/stops/Cthrpoi1", "https://tec.openplanner.team/stops/Cthrpoi2"], ["https://tec.openplanner.team/stops/LSU50--1", "https://tec.openplanner.team/stops/LSUroyo1"], ["https://tec.openplanner.team/stops/X663aca", "https://tec.openplanner.team/stops/X688abb"], ["https://tec.openplanner.team/stops/Bblapra1", "https://tec.openplanner.team/stops/Bwaunou1"], ["https://tec.openplanner.team/stops/H2sb236d", "https://tec.openplanner.team/stops/H2sb242a"], ["https://tec.openplanner.team/stops/N558aga", "https://tec.openplanner.team/stops/N558agb"], ["https://tec.openplanner.team/stops/H2sb239c", "https://tec.openplanner.team/stops/H2sb239d"], ["https://tec.openplanner.team/stops/Bsgipha1", "https://tec.openplanner.team/stops/Bsgipha2"], ["https://tec.openplanner.team/stops/X890aba", "https://tec.openplanner.team/stops/X890abb"], ["https://tec.openplanner.team/stops/Lvtpepi1", "https://tec.openplanner.team/stops/Lvtpepi2"], ["https://tec.openplanner.team/stops/X788aga", "https://tec.openplanner.team/stops/X789ahb"], ["https://tec.openplanner.team/stops/LWOsass1", "https://tec.openplanner.team/stops/LWOwaer2"], ["https://tec.openplanner.team/stops/Blmlbou1", "https://tec.openplanner.team/stops/Blmlfau1"], ["https://tec.openplanner.team/stops/LOTcarr1", "https://tec.openplanner.team/stops/LOTsava1"], ["https://tec.openplanner.team/stops/Bgnvcha1", "https://tec.openplanner.team/stops/Blhupcl1"], ["https://tec.openplanner.team/stops/X616aab", "https://tec.openplanner.team/stops/X695aba"], ["https://tec.openplanner.team/stops/X896adb", "https://tec.openplanner.team/stops/X896aib"], ["https://tec.openplanner.team/stops/Cgylami1", "https://tec.openplanner.team/stops/Cgylami2"], ["https://tec.openplanner.team/stops/N544abc", "https://tec.openplanner.team/stops/N544aca"], ["https://tec.openplanner.team/stops/N501fwb", "https://tec.openplanner.team/stops/N501fwz"], ["https://tec.openplanner.team/stops/H2pe156a", "https://tec.openplanner.team/stops/H2pe157a"], ["https://tec.openplanner.team/stops/N534bpa", "https://tec.openplanner.team/stops/N534bqa"], ["https://tec.openplanner.team/stops/Llgmara1", "https://tec.openplanner.team/stops/Llgongr1"], ["https://tec.openplanner.team/stops/Cmgvpa", "https://tec.openplanner.team/stops/H1mb129b"], ["https://tec.openplanner.team/stops/LWabela1", "https://tec.openplanner.team/stops/LWagare*"], ["https://tec.openplanner.team/stops/H2mo123a", "https://tec.openplanner.team/stops/H2mo123b"], ["https://tec.openplanner.team/stops/H1gr110b", "https://tec.openplanner.team/stops/H1gr119a"], ["https://tec.openplanner.team/stops/H1au111a", "https://tec.openplanner.team/stops/H1au114b"], ["https://tec.openplanner.team/stops/Lsemyrt2", "https://tec.openplanner.team/stops/Lsepcha1"], ["https://tec.openplanner.team/stops/Lsesabl1", "https://tec.openplanner.team/stops/Lsesabl2"], ["https://tec.openplanner.team/stops/LBbhupp1", "https://tec.openplanner.team/stops/X561ada"], ["https://tec.openplanner.team/stops/H4bf108a", "https://tec.openplanner.team/stops/H4bf108b"], ["https://tec.openplanner.team/stops/LBPxhav1", "https://tec.openplanner.team/stops/LRGile-1"], ["https://tec.openplanner.team/stops/H1ho134b", "https://tec.openplanner.team/stops/H1wa143b"], ["https://tec.openplanner.team/stops/LBpvue-1", "https://tec.openplanner.team/stops/LBpvue-2"], ["https://tec.openplanner.team/stops/H1ol140b", "https://tec.openplanner.team/stops/H1ol146a"], ["https://tec.openplanner.team/stops/X871abb", "https://tec.openplanner.team/stops/X871ada"], ["https://tec.openplanner.team/stops/H4mo146a", "https://tec.openplanner.team/stops/H4mo156a"], ["https://tec.openplanner.team/stops/LBSgeer1", "https://tec.openplanner.team/stops/LBSpail3"], ["https://tec.openplanner.team/stops/LAYwerb2", "https://tec.openplanner.team/stops/LREchal1"], ["https://tec.openplanner.team/stops/X992aha", "https://tec.openplanner.team/stops/X993ada"], ["https://tec.openplanner.team/stops/X811aaa", "https://tec.openplanner.team/stops/X811abb"], ["https://tec.openplanner.team/stops/LlNsc652", "https://tec.openplanner.team/stops/LlNschu2"], ["https://tec.openplanner.team/stops/Lseberg1", "https://tec.openplanner.team/stops/Lsetroq2"], ["https://tec.openplanner.team/stops/H4ld130a", "https://tec.openplanner.team/stops/H4ld130b"], ["https://tec.openplanner.team/stops/LOLfoss2", "https://tec.openplanner.team/stops/LOLvill1"], ["https://tec.openplanner.team/stops/X746ahb", "https://tec.openplanner.team/stops/X746aib"], ["https://tec.openplanner.team/stops/Lbralbe1", "https://tec.openplanner.team/stops/Llgabat1"], ["https://tec.openplanner.team/stops/N117aja", "https://tec.openplanner.team/stops/N117akb"], ["https://tec.openplanner.team/stops/X994aka", "https://tec.openplanner.team/stops/X995add"], ["https://tec.openplanner.team/stops/Lhecarc2", "https://tec.openplanner.team/stops/Lhepaqu2"], ["https://tec.openplanner.team/stops/X608aia", "https://tec.openplanner.team/stops/X609aeb"], ["https://tec.openplanner.team/stops/Lhrpont1", "https://tec.openplanner.team/stops/Lhrpont2"], ["https://tec.openplanner.team/stops/N135avb", "https://tec.openplanner.team/stops/N135bha"], ["https://tec.openplanner.team/stops/X636awb", "https://tec.openplanner.team/stops/X636axb"], ["https://tec.openplanner.team/stops/N551aaa", "https://tec.openplanner.team/stops/N551abb"], ["https://tec.openplanner.team/stops/Lmihale2", "https://tec.openplanner.team/stops/Lvtvici1"], ["https://tec.openplanner.team/stops/Blasren1", "https://tec.openplanner.team/stops/Brixroi2"], ["https://tec.openplanner.team/stops/X609aoa", "https://tec.openplanner.team/stops/X631aca"], ["https://tec.openplanner.team/stops/H4gu107a", "https://tec.openplanner.team/stops/H4gu112b"], ["https://tec.openplanner.team/stops/X758aib", "https://tec.openplanner.team/stops/X758ajb"], ["https://tec.openplanner.team/stops/Bwanorp2", "https://tec.openplanner.team/stops/NL75acb"], ["https://tec.openplanner.team/stops/N501gba", "https://tec.openplanner.team/stops/N501mja"], ["https://tec.openplanner.team/stops/Bbstasa1", "https://tec.openplanner.team/stops/Bbstdpa1"], ["https://tec.openplanner.team/stops/X742afa", "https://tec.openplanner.team/stops/X742afb"], ["https://tec.openplanner.team/stops/Cgrgrce2", "https://tec.openplanner.team/stops/NC14aqa"], ["https://tec.openplanner.team/stops/H1ha190a", "https://tec.openplanner.team/stops/H1ha190b"], ["https://tec.openplanner.team/stops/LVthest4", "https://tec.openplanner.team/stops/LVttarg2"], ["https://tec.openplanner.team/stops/X807abb", "https://tec.openplanner.team/stops/X807adb"], ["https://tec.openplanner.team/stops/Bjauvch2", "https://tec.openplanner.team/stops/Bjauwar1"], ["https://tec.openplanner.team/stops/NL73aaa", "https://tec.openplanner.team/stops/NL73aab"], ["https://tec.openplanner.team/stops/LAo170-1", "https://tec.openplanner.team/stops/LTPpres1"], ["https://tec.openplanner.team/stops/N232agb", "https://tec.openplanner.team/stops/N286abb"], ["https://tec.openplanner.team/stops/N140aab", "https://tec.openplanner.team/stops/N141ala"], ["https://tec.openplanner.team/stops/H1gi120d", "https://tec.openplanner.team/stops/H1vs145a"], ["https://tec.openplanner.team/stops/LHYec--1", "https://tec.openplanner.team/stops/LHYnoid1"], ["https://tec.openplanner.team/stops/N501ata", "https://tec.openplanner.team/stops/N501nca"], ["https://tec.openplanner.team/stops/Bplncba2", "https://tec.openplanner.team/stops/Clpsola2"], ["https://tec.openplanner.team/stops/N513awb", "https://tec.openplanner.team/stops/N520aea"], ["https://tec.openplanner.team/stops/Cgocolo2", "https://tec.openplanner.team/stops/Cgorosa2"], ["https://tec.openplanner.team/stops/LVParal1", "https://tec.openplanner.team/stops/LVPgrot1"], ["https://tec.openplanner.team/stops/X672aic", "https://tec.openplanner.team/stops/X672akb"], ["https://tec.openplanner.team/stops/LWAathe2", "https://tec.openplanner.team/stops/LWApr%C3%A9s3"], ["https://tec.openplanner.team/stops/H4lz128a", "https://tec.openplanner.team/stops/H4pi131a"], ["https://tec.openplanner.team/stops/X782aoa", "https://tec.openplanner.team/stops/X783aaa"], ["https://tec.openplanner.team/stops/N539ajb", "https://tec.openplanner.team/stops/N542aha"], ["https://tec.openplanner.team/stops/Lmimili2", "https://tec.openplanner.team/stops/Lvtvici2"], ["https://tec.openplanner.team/stops/Cchheig2", "https://tec.openplanner.team/stops/CMpige1"], ["https://tec.openplanner.team/stops/Cmlcent2", "https://tec.openplanner.team/stops/Cmtrneu2"], ["https://tec.openplanner.team/stops/X654aeb", "https://tec.openplanner.team/stops/X654akb"], ["https://tec.openplanner.team/stops/H1mq198b", "https://tec.openplanner.team/stops/H5me106a"], ["https://tec.openplanner.team/stops/Cbwdoua2", "https://tec.openplanner.team/stops/H1ro131b"], ["https://tec.openplanner.team/stops/Btsllsc1", "https://tec.openplanner.team/stops/Btsllsc2"], ["https://tec.openplanner.team/stops/LAUvict3", "https://tec.openplanner.team/stops/LAUvict4"], ["https://tec.openplanner.team/stops/Barchoc2", "https://tec.openplanner.team/stops/Barcpre1"], ["https://tec.openplanner.team/stops/LBapeup1", "https://tec.openplanner.team/stops/LLrmeno1"], ["https://tec.openplanner.team/stops/N351akb", "https://tec.openplanner.team/stops/N351ala"], ["https://tec.openplanner.team/stops/N521aub", "https://tec.openplanner.team/stops/N521avb"], ["https://tec.openplanner.team/stops/H4ms145b", "https://tec.openplanner.team/stops/H4ms146a"], ["https://tec.openplanner.team/stops/N513azb", "https://tec.openplanner.team/stops/N513bab"], ["https://tec.openplanner.team/stops/Cgocnor1", "https://tec.openplanner.team/stops/Cgocnor2"], ["https://tec.openplanner.team/stops/N501kxb", "https://tec.openplanner.team/stops/N501kzb"], ["https://tec.openplanner.team/stops/Lsehosp1", "https://tec.openplanner.team/stops/Lselibe2"], ["https://tec.openplanner.team/stops/H4oq226c", "https://tec.openplanner.team/stops/H4oq229b"], ["https://tec.openplanner.team/stops/LVBmonu4", "https://tec.openplanner.team/stops/LWDchpl1"], ["https://tec.openplanner.team/stops/X942afb", "https://tec.openplanner.team/stops/X943aca"], ["https://tec.openplanner.team/stops/Lfhbott2", "https://tec.openplanner.team/stops/Lfhtrxc1"], ["https://tec.openplanner.team/stops/H1hl126a", "https://tec.openplanner.team/stops/H1hl126b"], ["https://tec.openplanner.team/stops/H1cu110a", "https://tec.openplanner.team/stops/H1fl142b"], ["https://tec.openplanner.team/stops/H1by100d", "https://tec.openplanner.team/stops/H1by102a"], ["https://tec.openplanner.team/stops/X604acb", "https://tec.openplanner.team/stops/X634aab"], ["https://tec.openplanner.team/stops/Bnivfch1", "https://tec.openplanner.team/stops/Bnivgpl2"], ["https://tec.openplanner.team/stops/LBhcent2", "https://tec.openplanner.team/stops/LSochal2"], ["https://tec.openplanner.team/stops/Bgnvgar1", "https://tec.openplanner.team/stops/Bgnvpos1"], ["https://tec.openplanner.team/stops/LlgPTAV4", "https://tec.openplanner.team/stops/LlgPTAV6"], ["https://tec.openplanner.team/stops/H1en101b", "https://tec.openplanner.team/stops/H1mk112b"], ["https://tec.openplanner.team/stops/N218aab", "https://tec.openplanner.team/stops/N385acb"], ["https://tec.openplanner.team/stops/LLAeg--1", "https://tec.openplanner.team/stops/LMgkrui2"], ["https://tec.openplanner.team/stops/Bbiehpo2", "https://tec.openplanner.team/stops/Bbiehss1"], ["https://tec.openplanner.team/stops/LHUlebo2", "https://tec.openplanner.team/stops/LHUtfal2"], ["https://tec.openplanner.team/stops/LwYsarl1", "https://tec.openplanner.team/stops/LwYsarl2"], ["https://tec.openplanner.team/stops/N501fla", "https://tec.openplanner.team/stops/N501fqb"], ["https://tec.openplanner.team/stops/Ccusole1", "https://tec.openplanner.team/stops/Cgysarr1"], ["https://tec.openplanner.team/stops/X652adb", "https://tec.openplanner.team/stops/X652aga"], ["https://tec.openplanner.team/stops/X695aga", "https://tec.openplanner.team/stops/X695ala"], ["https://tec.openplanner.team/stops/X636bgb", "https://tec.openplanner.team/stops/X637ara"], ["https://tec.openplanner.team/stops/H4ar102b", "https://tec.openplanner.team/stops/H4ar107b"], ["https://tec.openplanner.team/stops/Cfojoli1", "https://tec.openplanner.team/stops/Cfoperz2"], ["https://tec.openplanner.team/stops/Bhalalb2", "https://tec.openplanner.team/stops/Bhalwat2"], ["https://tec.openplanner.team/stops/Llgborn1", "https://tec.openplanner.team/stops/Llgec--1"], ["https://tec.openplanner.team/stops/N528ana", "https://tec.openplanner.team/stops/N528arb"], ["https://tec.openplanner.team/stops/H1no141b", "https://tec.openplanner.team/stops/H1no142a"], ["https://tec.openplanner.team/stops/X818asa", "https://tec.openplanner.team/stops/X818asd"], ["https://tec.openplanner.team/stops/H4ty300b", "https://tec.openplanner.team/stops/H4ty331b"], ["https://tec.openplanner.team/stops/LLeeg--1", "https://tec.openplanner.team/stops/X547aqa"], ["https://tec.openplanner.team/stops/H1te190a", "https://tec.openplanner.team/stops/H1te190b"], ["https://tec.openplanner.team/stops/N528ava", "https://tec.openplanner.team/stops/N528avb"], ["https://tec.openplanner.team/stops/Bengvma1", "https://tec.openplanner.team/stops/H1en102a"], ["https://tec.openplanner.team/stops/H1eu107a", "https://tec.openplanner.team/stops/H1sb144a"], ["https://tec.openplanner.team/stops/H1po132b", "https://tec.openplanner.team/stops/H1po154a"], ["https://tec.openplanner.team/stops/LFEn6--1", "https://tec.openplanner.team/stops/LFtcarr1"], ["https://tec.openplanner.team/stops/Laleg--2", "https://tec.openplanner.team/stops/Laltrav1"], ["https://tec.openplanner.team/stops/LBYegli1", "https://tec.openplanner.team/stops/LBYwez-2"], ["https://tec.openplanner.team/stops/LLYcalv2", "https://tec.openplanner.team/stops/LLYpeup2"], ["https://tec.openplanner.team/stops/Bgrhcen1", "https://tec.openplanner.team/stops/Bgrhcro2"], ["https://tec.openplanner.team/stops/Bincfer2", "https://tec.openplanner.team/stops/Blonegl1"], ["https://tec.openplanner.team/stops/N211ara", "https://tec.openplanner.team/stops/N212agc"], ["https://tec.openplanner.team/stops/Llgcham6", "https://tec.openplanner.team/stops/Llgcham7"], ["https://tec.openplanner.team/stops/Cctecol1", "https://tec.openplanner.team/stops/Cctecol2"], ["https://tec.openplanner.team/stops/Cflcent1", "https://tec.openplanner.team/stops/Cflecep2"], ["https://tec.openplanner.team/stops/H1ge179a", "https://tec.openplanner.team/stops/H1no143b"], ["https://tec.openplanner.team/stops/Lrecite1", "https://tec.openplanner.team/stops/Lreclou1"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X666ahb"], ["https://tec.openplanner.team/stops/Cacscav1", "https://tec.openplanner.team/stops/NC24akb"], ["https://tec.openplanner.team/stops/Clcfall4", "https://tec.openplanner.team/stops/Csscrot2"], ["https://tec.openplanner.team/stops/LBAcent1", "https://tec.openplanner.team/stops/LBAtign2"], ["https://tec.openplanner.team/stops/Bwatcci1", "https://tec.openplanner.team/stops/Bwatceg1"], ["https://tec.openplanner.team/stops/X631aab", "https://tec.openplanner.team/stops/X631abb"], ["https://tec.openplanner.team/stops/LKmcite2", "https://tec.openplanner.team/stops/LOdkeme1"], ["https://tec.openplanner.team/stops/Cmaleri1", "https://tec.openplanner.team/stops/Cmmplac2"], ["https://tec.openplanner.team/stops/Lch179-1", "https://tec.openplanner.team/stops/Lchsaec1"], ["https://tec.openplanner.team/stops/X718ajb", "https://tec.openplanner.team/stops/X733agb"], ["https://tec.openplanner.team/stops/H4to131a", "https://tec.openplanner.team/stops/H4to138b"], ["https://tec.openplanner.team/stops/Cchdelf2", "https://tec.openplanner.team/stops/CMwate1"], ["https://tec.openplanner.team/stops/X823aeb", "https://tec.openplanner.team/stops/X823afd"], ["https://tec.openplanner.team/stops/LHUcamp1", "https://tec.openplanner.team/stops/LHUsaul2"], ["https://tec.openplanner.team/stops/Blaneli2", "https://tec.openplanner.team/stops/Blanraa1"], ["https://tec.openplanner.team/stops/Cjxthom1", "https://tec.openplanner.team/stops/Cjxthom2"], ["https://tec.openplanner.team/stops/H4ka186a", "https://tec.openplanner.team/stops/H4ka187a"], ["https://tec.openplanner.team/stops/Blpgbat1", "https://tec.openplanner.team/stops/Blpgbat2"], ["https://tec.openplanner.team/stops/X901abb", "https://tec.openplanner.team/stops/X901bka"], ["https://tec.openplanner.team/stops/X804brb", "https://tec.openplanner.team/stops/X804bua"], ["https://tec.openplanner.team/stops/H4ne140a", "https://tec.openplanner.team/stops/H4ne145b"], ["https://tec.openplanner.team/stops/LeLsied1", "https://tec.openplanner.team/stops/LeLzost1"], ["https://tec.openplanner.team/stops/Lvcreve2", "https://tec.openplanner.team/stops/Lvcvand2"], ["https://tec.openplanner.team/stops/N301aob", "https://tec.openplanner.team/stops/N301asa"], ["https://tec.openplanner.team/stops/LWAathe1", "https://tec.openplanner.team/stops/LWAfabr1"], ["https://tec.openplanner.team/stops/X780ada", "https://tec.openplanner.team/stops/X780aea"], ["https://tec.openplanner.team/stops/Bbaubru2", "https://tec.openplanner.team/stops/Bnivpar1"], ["https://tec.openplanner.team/stops/X650aea", "https://tec.openplanner.team/stops/X650aga"], ["https://tec.openplanner.team/stops/LlAdorf1", "https://tec.openplanner.team/stops/LoDmuhl1"], ["https://tec.openplanner.team/stops/Cbmind1", "https://tec.openplanner.team/stops/Cbmzoni1"], ["https://tec.openplanner.team/stops/X630aaa", "https://tec.openplanner.team/stops/X630aab"], ["https://tec.openplanner.team/stops/Bbiesbi1", "https://tec.openplanner.team/stops/Bbiesbi2"], ["https://tec.openplanner.team/stops/N365aca", "https://tec.openplanner.team/stops/X344acb"], ["https://tec.openplanner.team/stops/H4vz370a", "https://tec.openplanner.team/stops/H4vz371a"], ["https://tec.openplanner.team/stops/H4do100a", "https://tec.openplanner.team/stops/H4do101b"], ["https://tec.openplanner.team/stops/Cjuathe2", "https://tec.openplanner.team/stops/CMchag1"], ["https://tec.openplanner.team/stops/Bwlhpmt3", "https://tec.openplanner.team/stops/Bwlhpmt4"], ["https://tec.openplanner.team/stops/N551ada", "https://tec.openplanner.team/stops/N551aeb"], ["https://tec.openplanner.team/stops/LBNhegg1", "https://tec.openplanner.team/stops/LWEgare1"], ["https://tec.openplanner.team/stops/N501hva", "https://tec.openplanner.team/stops/N501hvb"], ["https://tec.openplanner.team/stops/H1mk111a", "https://tec.openplanner.team/stops/H1mk114b"], ["https://tec.openplanner.team/stops/X734ada", "https://tec.openplanner.team/stops/X734agb"], ["https://tec.openplanner.team/stops/LSEcent2", "https://tec.openplanner.team/stops/LSEec--2"], ["https://tec.openplanner.team/stops/X615apb", "https://tec.openplanner.team/stops/X615bra"], ["https://tec.openplanner.team/stops/N501epd", "https://tec.openplanner.team/stops/N501kba"], ["https://tec.openplanner.team/stops/Louaout2", "https://tec.openplanner.team/stops/Loumatt1"], ["https://tec.openplanner.team/stops/Lsebove2", "https://tec.openplanner.team/stops/Lseconc1"], ["https://tec.openplanner.team/stops/N150akb", "https://tec.openplanner.team/stops/N168aaa"], ["https://tec.openplanner.team/stops/Cmaegal1", "https://tec.openplanner.team/stops/Cmoruau2"], ["https://tec.openplanner.team/stops/Cjugend4", "https://tec.openplanner.team/stops/Cjuvign2"], ["https://tec.openplanner.team/stops/Bvirbie4", "https://tec.openplanner.team/stops/Bvirhsa1"], ["https://tec.openplanner.team/stops/X661asa", "https://tec.openplanner.team/stops/X661asb"], ["https://tec.openplanner.team/stops/H5pe148a", "https://tec.openplanner.team/stops/H5pe148b"], ["https://tec.openplanner.team/stops/N522aba", "https://tec.openplanner.team/stops/N522abd"], ["https://tec.openplanner.team/stops/X952aca", "https://tec.openplanner.team/stops/X952ada"], ["https://tec.openplanner.team/stops/Lsevill1", "https://tec.openplanner.team/stops/Lsevill2"], ["https://tec.openplanner.team/stops/Cmmjami2", "https://tec.openplanner.team/stops/Cmmphai1"], ["https://tec.openplanner.team/stops/Clgrsoc1", "https://tec.openplanner.team/stops/Csscrot2"], ["https://tec.openplanner.team/stops/NC11ana", "https://tec.openplanner.team/stops/NC11anb"], ["https://tec.openplanner.team/stops/Lvelimi2", "https://tec.openplanner.team/stops/Lvevert4"], ["https://tec.openplanner.team/stops/LGlcite1", "https://tec.openplanner.team/stops/LGlcite2"], ["https://tec.openplanner.team/stops/X647aab", "https://tec.openplanner.team/stops/X648aaa"], ["https://tec.openplanner.team/stops/Buccplj1", "https://tec.openplanner.team/stops/Buccplj2"], ["https://tec.openplanner.team/stops/X542ada", "https://tec.openplanner.team/stops/X542agb"], ["https://tec.openplanner.team/stops/X750asb", "https://tec.openplanner.team/stops/X750aza"], ["https://tec.openplanner.team/stops/X601ana", "https://tec.openplanner.team/stops/X601aoa"], ["https://tec.openplanner.team/stops/Ctisart1", "https://tec.openplanner.team/stops/Ctisart2"], ["https://tec.openplanner.team/stops/H4ea132b", "https://tec.openplanner.team/stops/H4ea132c"], ["https://tec.openplanner.team/stops/N874amc", "https://tec.openplanner.team/stops/X874apb"], ["https://tec.openplanner.team/stops/LMNeg--1", "https://tec.openplanner.team/stops/LMNgend1"], ["https://tec.openplanner.team/stops/LOccarr2", "https://tec.openplanner.team/stops/LOccarr3"], ["https://tec.openplanner.team/stops/Cstdona1", "https://tec.openplanner.team/stops/Cstdona4"], ["https://tec.openplanner.team/stops/H1ne141b", "https://tec.openplanner.team/stops/H1ne147b"], ["https://tec.openplanner.team/stops/H1ht135a", "https://tec.openplanner.team/stops/H1ht135b"], ["https://tec.openplanner.team/stops/Cdaptca1", "https://tec.openplanner.team/stops/Cmlfstt1"], ["https://tec.openplanner.team/stops/LAYcher1", "https://tec.openplanner.team/stops/LAYgare1"], ["https://tec.openplanner.team/stops/LHSfexh2", "https://tec.openplanner.team/stops/LHSlava2"], ["https://tec.openplanner.team/stops/Lghcise2", "https://tec.openplanner.team/stops/Lmochan2"], ["https://tec.openplanner.team/stops/Cpiegli2", "https://tec.openplanner.team/stops/Cplcite2"], ["https://tec.openplanner.team/stops/Bbaucai1", "https://tec.openplanner.team/stops/Blilgar1"], ["https://tec.openplanner.team/stops/Brsggde1", "https://tec.openplanner.team/stops/Brsggea2"], ["https://tec.openplanner.team/stops/X659aoa", "https://tec.openplanner.team/stops/X741akb"], ["https://tec.openplanner.team/stops/X771adb", "https://tec.openplanner.team/stops/X771anb"], ["https://tec.openplanner.team/stops/H2lh128a", "https://tec.openplanner.team/stops/H2lh132b"], ["https://tec.openplanner.team/stops/X615afa", "https://tec.openplanner.team/stops/X681aca"], ["https://tec.openplanner.team/stops/Lhrthie1", "https://tec.openplanner.team/stops/Lhrthie2"], ["https://tec.openplanner.team/stops/Balsnie2", "https://tec.openplanner.team/stops/Balswsa1"], ["https://tec.openplanner.team/stops/LBglign1", "https://tec.openplanner.team/stops/Lthfren1"], ["https://tec.openplanner.team/stops/X634aba", "https://tec.openplanner.team/stops/X634aha"], ["https://tec.openplanner.team/stops/LSBrouf3", "https://tec.openplanner.team/stops/LSktinc1"], ["https://tec.openplanner.team/stops/X908ana", "https://tec.openplanner.team/stops/X908aoa"], ["https://tec.openplanner.team/stops/H4mv195a", "https://tec.openplanner.team/stops/H4va231a"], ["https://tec.openplanner.team/stops/LAWhein3", "https://tec.openplanner.team/stops/LAWhein4"], ["https://tec.openplanner.team/stops/X796adb", "https://tec.openplanner.team/stops/X986aga"], ["https://tec.openplanner.team/stops/H4ru239a", "https://tec.openplanner.team/stops/H4ru239b"], ["https://tec.openplanner.team/stops/Bbauham1", "https://tec.openplanner.team/stops/Bbauham2"], ["https://tec.openplanner.team/stops/LJEmalg2", "https://tec.openplanner.team/stops/LSkyern1"], ["https://tec.openplanner.team/stops/Btslhau1", "https://tec.openplanner.team/stops/Btslpbr1"], ["https://tec.openplanner.team/stops/Cfmltas2", "https://tec.openplanner.team/stops/Cptchea1"], ["https://tec.openplanner.team/stops/Brsgman1", "https://tec.openplanner.team/stops/Bwategp1"], ["https://tec.openplanner.team/stops/N531aca", "https://tec.openplanner.team/stops/N531ahb"], ["https://tec.openplanner.team/stops/X714adb", "https://tec.openplanner.team/stops/X714aeb"], ["https://tec.openplanner.team/stops/H1sb145b", "https://tec.openplanner.team/stops/H1sb148b"], ["https://tec.openplanner.team/stops/H1br124b", "https://tec.openplanner.team/stops/H1br126b"], ["https://tec.openplanner.team/stops/Bnivfro1", "https://tec.openplanner.team/stops/Bnivver1"], ["https://tec.openplanner.team/stops/H1hv136a", "https://tec.openplanner.team/stops/H1hv136b"], ["https://tec.openplanner.team/stops/X993aia", "https://tec.openplanner.team/stops/X993aib"], ["https://tec.openplanner.team/stops/H2hl113a", "https://tec.openplanner.team/stops/H2hl113b"], ["https://tec.openplanner.team/stops/Bbrlmez2", "https://tec.openplanner.team/stops/Bbrlvil2"], ["https://tec.openplanner.team/stops/X636anb", "https://tec.openplanner.team/stops/X636aob"], ["https://tec.openplanner.team/stops/X641awa", "https://tec.openplanner.team/stops/X641aya"], ["https://tec.openplanner.team/stops/Llgchat2", "https://tec.openplanner.team/stops/Ltibell1"], ["https://tec.openplanner.team/stops/H1ms294a", "https://tec.openplanner.team/stops/H1ms364a"], ["https://tec.openplanner.team/stops/N550ana", "https://tec.openplanner.team/stops/N550anb"], ["https://tec.openplanner.team/stops/N547alb", "https://tec.openplanner.team/stops/N547ald"], ["https://tec.openplanner.team/stops/H1sd342a", "https://tec.openplanner.team/stops/H1sd343a"], ["https://tec.openplanner.team/stops/Cpccoss1", "https://tec.openplanner.team/stops/Cpccpas2"], ["https://tec.openplanner.team/stops/Cwfcule1", "https://tec.openplanner.team/stops/Cwflouv4"], ["https://tec.openplanner.team/stops/H1pa111a", "https://tec.openplanner.team/stops/H1pa111b"], ["https://tec.openplanner.team/stops/Cnachat1", "https://tec.openplanner.team/stops/Cnacroc1"], ["https://tec.openplanner.team/stops/H1so136b", "https://tec.openplanner.team/stops/H1so136c"], ["https://tec.openplanner.team/stops/X643aab", "https://tec.openplanner.team/stops/X644aab"], ["https://tec.openplanner.team/stops/N228aca", "https://tec.openplanner.team/stops/N260ada"], ["https://tec.openplanner.team/stops/LBveg--2", "https://tec.openplanner.team/stops/LPUlecl1"], ["https://tec.openplanner.team/stops/N141ada", "https://tec.openplanner.team/stops/N141amc"], ["https://tec.openplanner.team/stops/Cfaamio4", "https://tec.openplanner.team/stops/Cfaysle2"], ["https://tec.openplanner.team/stops/Ccubric2", "https://tec.openplanner.team/stops/Ccupays2"], ["https://tec.openplanner.team/stops/Bnivbng1", "https://tec.openplanner.team/stops/Bnivbng2"], ["https://tec.openplanner.team/stops/N131aea", "https://tec.openplanner.team/stops/N131afa"], ["https://tec.openplanner.team/stops/LSBrouf2", "https://tec.openplanner.team/stops/LSBsere4"], ["https://tec.openplanner.team/stops/H5el112c", "https://tec.openplanner.team/stops/H5el112d"], ["https://tec.openplanner.team/stops/LBbbac-1", "https://tec.openplanner.team/stops/LBbhupp2"], ["https://tec.openplanner.team/stops/LlEzoll1", "https://tec.openplanner.team/stops/X793aqa"], ["https://tec.openplanner.team/stops/LFfeg--2", "https://tec.openplanner.team/stops/LPRmoul2"], ["https://tec.openplanner.team/stops/Cgzrust1", "https://tec.openplanner.team/stops/Cmyvesa2"], ["https://tec.openplanner.team/stops/H4pl115a", "https://tec.openplanner.team/stops/H4pl121b"], ["https://tec.openplanner.team/stops/H4hs136a", "https://tec.openplanner.team/stops/H4th141a"], ["https://tec.openplanner.team/stops/LwYbrkr1", "https://tec.openplanner.team/stops/LwYsour1"], ["https://tec.openplanner.team/stops/Cgzchen2", "https://tec.openplanner.team/stops/Cgzfarc1"], ["https://tec.openplanner.team/stops/LAnvien2", "https://tec.openplanner.team/stops/LCFmoul1"], ["https://tec.openplanner.team/stops/H2na134a", "https://tec.openplanner.team/stops/H2na135a"], ["https://tec.openplanner.team/stops/X637ama", "https://tec.openplanner.team/stops/X650aob"], ["https://tec.openplanner.team/stops/LbHzent2", "https://tec.openplanner.team/stops/LmS11--2"], ["https://tec.openplanner.team/stops/X780aba", "https://tec.openplanner.team/stops/X780acb"], ["https://tec.openplanner.team/stops/LENalun1", "https://tec.openplanner.team/stops/LENparc1"], ["https://tec.openplanner.team/stops/H1qu109b", "https://tec.openplanner.team/stops/H1qu114a"], ["https://tec.openplanner.team/stops/Brsgm302", "https://tec.openplanner.team/stops/Brsgman1"], ["https://tec.openplanner.team/stops/H2ha129c", "https://tec.openplanner.team/stops/H2ha129e"], ["https://tec.openplanner.team/stops/LTobilz1", "https://tec.openplanner.team/stops/LTotrui1"], ["https://tec.openplanner.team/stops/H4bw101a", "https://tec.openplanner.team/stops/H4co150b"], ["https://tec.openplanner.team/stops/N135aea", "https://tec.openplanner.team/stops/N135afb"], ["https://tec.openplanner.team/stops/LMNjard2", "https://tec.openplanner.team/stops/LPbpl--2"], ["https://tec.openplanner.team/stops/LmNkrew1", "https://tec.openplanner.team/stops/LmNlieb1"], ["https://tec.openplanner.team/stops/N509aea", "https://tec.openplanner.team/stops/N509aqb"], ["https://tec.openplanner.team/stops/N534bbb", "https://tec.openplanner.team/stops/N534bfa"], ["https://tec.openplanner.team/stops/Lcceclu1", "https://tec.openplanner.team/stops/Lcchala1"], ["https://tec.openplanner.team/stops/Bcrnegl1", "https://tec.openplanner.team/stops/Bcrnpla1"], ["https://tec.openplanner.team/stops/Lougros2", "https://tec.openplanner.team/stops/Lstscie2"], ["https://tec.openplanner.team/stops/H1qg138d", "https://tec.openplanner.team/stops/H1qy136a"], ["https://tec.openplanner.team/stops/Cmyvesa1", "https://tec.openplanner.team/stops/Cmyvesa3"], ["https://tec.openplanner.team/stops/LGEbern2", "https://tec.openplanner.team/stops/LGEpt--1"], ["https://tec.openplanner.team/stops/LlNhube1", "https://tec.openplanner.team/stops/LlNlimb1"], ["https://tec.openplanner.team/stops/X715ajb", "https://tec.openplanner.team/stops/X715aka"], ["https://tec.openplanner.team/stops/N209aka", "https://tec.openplanner.team/stops/N209ala"], ["https://tec.openplanner.team/stops/X902aab", "https://tec.openplanner.team/stops/X902apa"], ["https://tec.openplanner.team/stops/Cmaegli1", "https://tec.openplanner.team/stops/Cmastch2"], ["https://tec.openplanner.team/stops/LkEfrie1", "https://tec.openplanner.team/stops/LkEfrie2"], ["https://tec.openplanner.team/stops/X651aba", "https://tec.openplanner.team/stops/X651aeb"], ["https://tec.openplanner.team/stops/Lveveou1", "https://tec.openplanner.team/stops/Lveveou2"], ["https://tec.openplanner.team/stops/H2ha128b", "https://tec.openplanner.team/stops/H2hg146b"], ["https://tec.openplanner.team/stops/X805ahb", "https://tec.openplanner.team/stops/X869aaa"], ["https://tec.openplanner.team/stops/Cgrchas2", "https://tec.openplanner.team/stops/Cgrflac2"], ["https://tec.openplanner.team/stops/LsVgend2", "https://tec.openplanner.team/stops/LsVmolk2"], ["https://tec.openplanner.team/stops/H1qv110b", "https://tec.openplanner.team/stops/H1qv112a"], ["https://tec.openplanner.team/stops/Bgemga07", "https://tec.openplanner.team/stops/N522bvg"], ["https://tec.openplanner.team/stops/N501eta", "https://tec.openplanner.team/stops/N501etc"], ["https://tec.openplanner.team/stops/N351afa", "https://tec.openplanner.team/stops/N351axa"], ["https://tec.openplanner.team/stops/LBLghuy3", "https://tec.openplanner.team/stops/LBLgobc2"], ["https://tec.openplanner.team/stops/Cchblne1", "https://tec.openplanner.team/stops/Cchjaur2"], ["https://tec.openplanner.team/stops/Cfmwaut1", "https://tec.openplanner.team/stops/Cfmwaut2"], ["https://tec.openplanner.team/stops/H2mo127d", "https://tec.openplanner.team/stops/H2mo130b"], ["https://tec.openplanner.team/stops/Csychap4", "https://tec.openplanner.team/stops/Csystan2"], ["https://tec.openplanner.team/stops/N229ama", "https://tec.openplanner.team/stops/N229amb"], ["https://tec.openplanner.team/stops/H1em110a", "https://tec.openplanner.team/stops/H1hl128a"], ["https://tec.openplanner.team/stops/N519aja", "https://tec.openplanner.team/stops/N519alb"], ["https://tec.openplanner.team/stops/Cauptsa1", "https://tec.openplanner.team/stops/N530aca"], ["https://tec.openplanner.team/stops/X633ama", "https://tec.openplanner.team/stops/X633amb"], ["https://tec.openplanner.team/stops/Brsregl2", "https://tec.openplanner.team/stops/Bwavtrt2"], ["https://tec.openplanner.team/stops/H4mv197a", "https://tec.openplanner.team/stops/H4mv197b"], ["https://tec.openplanner.team/stops/Cmgbras2", "https://tec.openplanner.team/stops/Cmgvpa"], ["https://tec.openplanner.team/stops/N230aaa", "https://tec.openplanner.team/stops/N230aab"], ["https://tec.openplanner.team/stops/X729abb", "https://tec.openplanner.team/stops/X729ada"], ["https://tec.openplanner.team/stops/Lghmont2", "https://tec.openplanner.team/stops/Lmochan2"], ["https://tec.openplanner.team/stops/H1qu103a", "https://tec.openplanner.team/stops/H1qu116c"], ["https://tec.openplanner.team/stops/Lagjado6", "https://tec.openplanner.team/stops/Lagpaix2"], ["https://tec.openplanner.team/stops/X601dbb", "https://tec.openplanner.team/stops/X626aka"], ["https://tec.openplanner.team/stops/N206aaa", "https://tec.openplanner.team/stops/X206aza"], ["https://tec.openplanner.team/stops/X892aia", "https://tec.openplanner.team/stops/X892ajb"], ["https://tec.openplanner.team/stops/X637aaa", "https://tec.openplanner.team/stops/X649aca"], ["https://tec.openplanner.team/stops/Ljubord2", "https://tec.openplanner.team/stops/Ljubruy*"], ["https://tec.openplanner.team/stops/LCPaywa2", "https://tec.openplanner.team/stops/LSpbawe1"], ["https://tec.openplanner.team/stops/Bmsaegl1", "https://tec.openplanner.team/stops/NB33ahb"], ["https://tec.openplanner.team/stops/Lhrchar1", "https://tec.openplanner.team/stops/Lhrchar2"], ["https://tec.openplanner.team/stops/Bpermon4", "https://tec.openplanner.team/stops/N524ajb"], ["https://tec.openplanner.team/stops/N425aab", "https://tec.openplanner.team/stops/N425ahb"], ["https://tec.openplanner.team/stops/H4mv193a", "https://tec.openplanner.team/stops/H4mv193b"], ["https://tec.openplanner.team/stops/N230aea", "https://tec.openplanner.team/stops/N230aeb"], ["https://tec.openplanner.team/stops/N506akb", "https://tec.openplanner.team/stops/N506bxa"], ["https://tec.openplanner.team/stops/H5at114a", "https://tec.openplanner.team/stops/H5at132b"], ["https://tec.openplanner.team/stops/LJOchar1", "https://tec.openplanner.team/stops/LMEwerg1"], ["https://tec.openplanner.team/stops/Bptbmco2", "https://tec.openplanner.team/stops/Brxmcha2"], ["https://tec.openplanner.team/stops/H1mq199a", "https://tec.openplanner.team/stops/H5ar127b"], ["https://tec.openplanner.team/stops/LPAeg--1", "https://tec.openplanner.team/stops/LPAvill1"], ["https://tec.openplanner.team/stops/LTIdamr1", "https://tec.openplanner.team/stops/LTIecma2"], ["https://tec.openplanner.team/stops/LKmmelo2", "https://tec.openplanner.team/stops/LMObouh1"], ["https://tec.openplanner.team/stops/Cgylami2", "https://tec.openplanner.team/stops/Cgynoir2"], ["https://tec.openplanner.team/stops/X561ada", "https://tec.openplanner.team/stops/X561adb"], ["https://tec.openplanner.team/stops/LhRandl1", "https://tec.openplanner.team/stops/LhRandl2"], ["https://tec.openplanner.team/stops/LrAkape1", "https://tec.openplanner.team/stops/LrAputz1"], ["https://tec.openplanner.team/stops/H3bi100a", "https://tec.openplanner.team/stops/H3bi112a"], ["https://tec.openplanner.team/stops/LJU51--2", "https://tec.openplanner.team/stops/LJUmate2"], ["https://tec.openplanner.team/stops/X823aca", "https://tec.openplanner.team/stops/X823ada"], ["https://tec.openplanner.team/stops/Cmaduna1", "https://tec.openplanner.team/stops/Cmmramb2"], ["https://tec.openplanner.team/stops/H2mo122c", "https://tec.openplanner.team/stops/H2mo126a"], ["https://tec.openplanner.team/stops/H2ch110a", "https://tec.openplanner.team/stops/H2ch112a"], ["https://tec.openplanner.team/stops/Bbgncnd1", "https://tec.openplanner.team/stops/Bsomtpm1"], ["https://tec.openplanner.team/stops/X947abc", "https://tec.openplanner.team/stops/X947acb"], ["https://tec.openplanner.team/stops/X542aab", "https://tec.openplanner.team/stops/X542aba"], ["https://tec.openplanner.team/stops/H1mm127a", "https://tec.openplanner.team/stops/H1pe131a"], ["https://tec.openplanner.team/stops/H2mg153a", "https://tec.openplanner.team/stops/H2se115a"], ["https://tec.openplanner.team/stops/N506bta", "https://tec.openplanner.team/stops/N506btb"], ["https://tec.openplanner.team/stops/N874aaa", "https://tec.openplanner.team/stops/N894aca"], ["https://tec.openplanner.team/stops/X612ada", "https://tec.openplanner.team/stops/X623afa"], ["https://tec.openplanner.team/stops/LFmroye2", "https://tec.openplanner.team/stops/LMObouh2"], ["https://tec.openplanner.team/stops/Bhoeboo1", "https://tec.openplanner.team/stops/Blhuibm1"], ["https://tec.openplanner.team/stops/N385adb", "https://tec.openplanner.team/stops/N385aeb"], ["https://tec.openplanner.team/stops/Llgpiet2", "https://tec.openplanner.team/stops/Llgthie2"], ["https://tec.openplanner.team/stops/LCeanne1", "https://tec.openplanner.team/stops/LGAnovi1"], ["https://tec.openplanner.team/stops/N245aaa", "https://tec.openplanner.team/stops/N248adb"], ["https://tec.openplanner.team/stops/X619aib", "https://tec.openplanner.team/stops/X619aka"], ["https://tec.openplanner.team/stops/LBOec--2", "https://tec.openplanner.team/stops/LBWfusi1"], ["https://tec.openplanner.team/stops/Buccham2", "https://tec.openplanner.team/stops/Buccvoi2"], ["https://tec.openplanner.team/stops/LJAbois1", "https://tec.openplanner.team/stops/Ljhjeha*"], ["https://tec.openplanner.team/stops/H1ms251a", "https://tec.openplanner.team/stops/H1ms913a"], ["https://tec.openplanner.team/stops/N501dfa", "https://tec.openplanner.team/stops/N501mxa"], ["https://tec.openplanner.team/stops/Bcseaba1", "https://tec.openplanner.team/stops/Bottpar1"], ["https://tec.openplanner.team/stops/N516alb", "https://tec.openplanner.team/stops/N516apa"], ["https://tec.openplanner.team/stops/Canlalu2", "https://tec.openplanner.team/stops/H2an110b"], ["https://tec.openplanner.team/stops/LTheg--1", "https://tec.openplanner.team/stops/LThgare1"], ["https://tec.openplanner.team/stops/Bmrlhan2", "https://tec.openplanner.team/stops/Bmrlhau2"], ["https://tec.openplanner.team/stops/Lflheid1", "https://tec.openplanner.team/stops/Lqbeg--2"], ["https://tec.openplanner.team/stops/N584aua", "https://tec.openplanner.team/stops/N584bpa"], ["https://tec.openplanner.team/stops/Llgamer3", "https://tec.openplanner.team/stops/Llglair1"], ["https://tec.openplanner.team/stops/X738aea", "https://tec.openplanner.team/stops/X738aeb"], ["https://tec.openplanner.team/stops/Ccychba1", "https://tec.openplanner.team/stops/Ccychba2"], ["https://tec.openplanner.team/stops/N512ala", "https://tec.openplanner.team/stops/N512awb"], ["https://tec.openplanner.team/stops/N212aha", "https://tec.openplanner.team/stops/N212ajb"], ["https://tec.openplanner.team/stops/N343ala", "https://tec.openplanner.team/stops/N343ana"], ["https://tec.openplanner.team/stops/Ccicent1", "https://tec.openplanner.team/stops/Ccicent2"], ["https://tec.openplanner.team/stops/Cfcpla1", "https://tec.openplanner.team/stops/Cfcplac3"], ["https://tec.openplanner.team/stops/N229aaa", "https://tec.openplanner.team/stops/N291aba"], ["https://tec.openplanner.team/stops/Bwspmon1", "https://tec.openplanner.team/stops/Bwsppos2"], ["https://tec.openplanner.team/stops/Bsampli2", "https://tec.openplanner.team/stops/N584bbb"], ["https://tec.openplanner.team/stops/Lgrcour1", "https://tec.openplanner.team/stops/Lgrcour2"], ["https://tec.openplanner.team/stops/Lanclon1", "https://tec.openplanner.team/stops/Llgchau1"], ["https://tec.openplanner.team/stops/H5is170a", "https://tec.openplanner.team/stops/H5is170b"], ["https://tec.openplanner.team/stops/H1cu125c", "https://tec.openplanner.team/stops/H1cu131a"], ["https://tec.openplanner.team/stops/Cstdona2", "https://tec.openplanner.team/stops/Cstdona4"], ["https://tec.openplanner.team/stops/Lbrlama1", "https://tec.openplanner.team/stops/Lbrlama2"], ["https://tec.openplanner.team/stops/N577ada", "https://tec.openplanner.team/stops/N577aja"], ["https://tec.openplanner.team/stops/LTPcamp1", "https://tec.openplanner.team/stops/LTPhenr2"], ["https://tec.openplanner.team/stops/LBmbara1", "https://tec.openplanner.team/stops/LMTfagn1"], ["https://tec.openplanner.team/stops/X757aab", "https://tec.openplanner.team/stops/X758aga"], ["https://tec.openplanner.team/stops/H4ep126b", "https://tec.openplanner.team/stops/H4ep131a"], ["https://tec.openplanner.team/stops/LbUmurr1", "https://tec.openplanner.team/stops/LmUvilz2"], ["https://tec.openplanner.team/stops/X607aga", "https://tec.openplanner.team/stops/X607aja"], ["https://tec.openplanner.team/stops/N368ada", "https://tec.openplanner.team/stops/N368aeb"], ["https://tec.openplanner.team/stops/H5at108b", "https://tec.openplanner.team/stops/H5at119a"], ["https://tec.openplanner.team/stops/H4ta131b", "https://tec.openplanner.team/stops/H4ta132a"], ["https://tec.openplanner.team/stops/LSZptwa1", "https://tec.openplanner.team/stops/LWycabi1"], ["https://tec.openplanner.team/stops/H1nv324b", "https://tec.openplanner.team/stops/H1sp355a"], ["https://tec.openplanner.team/stops/Cmecite1", "https://tec.openplanner.team/stops/Cvpcour1"], ["https://tec.openplanner.team/stops/LbUkrin1", "https://tec.openplanner.team/stops/LbUmurr1"], ["https://tec.openplanner.team/stops/X640aab", "https://tec.openplanner.team/stops/X673aeb"], ["https://tec.openplanner.team/stops/N501kea", "https://tec.openplanner.team/stops/N501kmb"], ["https://tec.openplanner.team/stops/Cctchea1", "https://tec.openplanner.team/stops/NC11aib"], ["https://tec.openplanner.team/stops/LRtcarr1", "https://tec.openplanner.team/stops/LSebott2"], ["https://tec.openplanner.team/stops/LScgore1", "https://tec.openplanner.team/stops/LScread2"], ["https://tec.openplanner.team/stops/Lagmair1", "https://tec.openplanner.team/stops/Lagmair4"], ["https://tec.openplanner.team/stops/X718aia", "https://tec.openplanner.team/stops/X718aja"], ["https://tec.openplanner.team/stops/N236afa", "https://tec.openplanner.team/stops/N254aab"], ["https://tec.openplanner.team/stops/H1he104a", "https://tec.openplanner.team/stops/H1he106b"], ["https://tec.openplanner.team/stops/X904aba", "https://tec.openplanner.team/stops/X904adb"], ["https://tec.openplanner.team/stops/Cmggthi1", "https://tec.openplanner.team/stops/Cmggthi2"], ["https://tec.openplanner.team/stops/Llggee52", "https://tec.openplanner.team/stops/Llgtir-2"], ["https://tec.openplanner.team/stops/LFAwale1", "https://tec.openplanner.team/stops/LLTther2"], ["https://tec.openplanner.team/stops/LAxchpl1", "https://tec.openplanner.team/stops/LAxchpl2"], ["https://tec.openplanner.team/stops/N501kva", "https://tec.openplanner.team/stops/N501kvb"], ["https://tec.openplanner.team/stops/X633amb", "https://tec.openplanner.team/stops/X634aaa"], ["https://tec.openplanner.team/stops/Lmnjeha2", "https://tec.openplanner.team/stops/Lmnsech2"], ["https://tec.openplanner.team/stops/X983aaa", "https://tec.openplanner.team/stops/X983aba"], ["https://tec.openplanner.team/stops/Livgera1", "https://tec.openplanner.team/stops/Livgera3"], ["https://tec.openplanner.team/stops/N351aub", "https://tec.openplanner.team/stops/N351ava"], ["https://tec.openplanner.team/stops/N503akb", "https://tec.openplanner.team/stops/N580afb"], ["https://tec.openplanner.team/stops/LRRbonr1", "https://tec.openplanner.team/stops/LRRcarr1"], ["https://tec.openplanner.team/stops/LsVbs--*", "https://tec.openplanner.team/stops/LsVlind*"], ["https://tec.openplanner.team/stops/H1vg359a", "https://tec.openplanner.team/stops/H1vg359b"], ["https://tec.openplanner.team/stops/Cctvche1", "https://tec.openplanner.team/stops/Cctvche2"], ["https://tec.openplanner.team/stops/Lgrdefr2", "https://tec.openplanner.team/stops/Lgrspir1"], ["https://tec.openplanner.team/stops/LOltill1", "https://tec.openplanner.team/stops/LOmpont2"], ["https://tec.openplanner.team/stops/LVLf37-1", "https://tec.openplanner.team/stops/LVLsabl2"], ["https://tec.openplanner.team/stops/Lsecoop1", "https://tec.openplanner.team/stops/Lsehtsa1"], ["https://tec.openplanner.team/stops/LRMeg--1", "https://tec.openplanner.team/stops/X595afb"], ["https://tec.openplanner.team/stops/Cmmgadi1", "https://tec.openplanner.team/stops/Cmyrens2"], ["https://tec.openplanner.team/stops/H4lu128a", "https://tec.openplanner.team/stops/H4mo195a"], ["https://tec.openplanner.team/stops/LrAalte2", "https://tec.openplanner.team/stops/LrAneue1"], ["https://tec.openplanner.team/stops/NC23aab", "https://tec.openplanner.team/stops/NC23abb"], ["https://tec.openplanner.team/stops/X898afa", "https://tec.openplanner.team/stops/X898amb"], ["https://tec.openplanner.team/stops/LVNroua2", "https://tec.openplanner.team/stops/LWDsott1"], ["https://tec.openplanner.team/stops/N531ada", "https://tec.openplanner.team/stops/N531aeb"], ["https://tec.openplanner.team/stops/LPAbour2", "https://tec.openplanner.team/stops/LWipaif3"], ["https://tec.openplanner.team/stops/X601ada", "https://tec.openplanner.team/stops/X601adb"], ["https://tec.openplanner.team/stops/Ccpetan1", "https://tec.openplanner.team/stops/Ccpsecp1"], ["https://tec.openplanner.team/stops/LATcham*", "https://tec.openplanner.team/stops/LATguis2"], ["https://tec.openplanner.team/stops/X346abb", "https://tec.openplanner.team/stops/X346afb"], ["https://tec.openplanner.team/stops/LElgerd3", "https://tec.openplanner.team/stops/LTaabba2"], ["https://tec.openplanner.team/stops/LHUresi3", "https://tec.openplanner.team/stops/LHUsaul1"], ["https://tec.openplanner.team/stops/N202aca", "https://tec.openplanner.team/stops/N202acb"], ["https://tec.openplanner.team/stops/N201agb", "https://tec.openplanner.team/stops/N201aua"], ["https://tec.openplanner.team/stops/H4ty314a", "https://tec.openplanner.team/stops/H4ty314c"], ["https://tec.openplanner.team/stops/LAibego2", "https://tec.openplanner.team/stops/LAipala2"], ["https://tec.openplanner.team/stops/X601aya", "https://tec.openplanner.team/stops/X601baa"], ["https://tec.openplanner.team/stops/X948ahb", "https://tec.openplanner.team/stops/X948asb"], ["https://tec.openplanner.team/stops/N558aea", "https://tec.openplanner.team/stops/N558amd"], ["https://tec.openplanner.team/stops/Bnivbau1", "https://tec.openplanner.team/stops/Bnivspi1"], ["https://tec.openplanner.team/stops/X902aga", "https://tec.openplanner.team/stops/X902aka"], ["https://tec.openplanner.team/stops/LBRtrag2", "https://tec.openplanner.team/stops/LLTcent1"], ["https://tec.openplanner.team/stops/Bsengma1", "https://tec.openplanner.team/stops/Bsengma2"], ["https://tec.openplanner.team/stops/H2re163b", "https://tec.openplanner.team/stops/H2re165b"], ["https://tec.openplanner.team/stops/H4bo110a", "https://tec.openplanner.team/stops/H4bo110b"], ["https://tec.openplanner.team/stops/Cjucpui2", "https://tec.openplanner.team/stops/Cjupuis2"], ["https://tec.openplanner.team/stops/Blhumpo4", "https://tec.openplanner.team/stops/Blhutco1"], ["https://tec.openplanner.team/stops/Lsmdepo2", "https://tec.openplanner.team/stops/Lsmeg--1"], ["https://tec.openplanner.team/stops/H1ev112a", "https://tec.openplanner.team/stops/H1ev116a"], ["https://tec.openplanner.team/stops/X982ara", "https://tec.openplanner.team/stops/X982bva"], ["https://tec.openplanner.team/stops/Bsrgegl1", "https://tec.openplanner.team/stops/Bsrgm101"], ["https://tec.openplanner.team/stops/N535afb", "https://tec.openplanner.team/stops/N535aub"], ["https://tec.openplanner.team/stops/Lveecol2", "https://tec.openplanner.team/stops/Lvemull2"], ["https://tec.openplanner.team/stops/Ccobour2", "https://tec.openplanner.team/stops/Csograf4"], ["https://tec.openplanner.team/stops/Lveanto1", "https://tec.openplanner.team/stops/Lvehodi1"], ["https://tec.openplanner.team/stops/Bvilcha2", "https://tec.openplanner.team/stops/Bvilvil2"], ["https://tec.openplanner.team/stops/LAivill2", "https://tec.openplanner.team/stops/LENarde1"], ["https://tec.openplanner.team/stops/N232aza", "https://tec.openplanner.team/stops/N232bab"], ["https://tec.openplanner.team/stops/Ccucora2", "https://tec.openplanner.team/stops/Ccucorb2"], ["https://tec.openplanner.team/stops/Ccypn1", "https://tec.openplanner.team/stops/NH01aeb"], ["https://tec.openplanner.team/stops/Baudhde1", "https://tec.openplanner.team/stops/Baudhde2"], ["https://tec.openplanner.team/stops/N513atb", "https://tec.openplanner.team/stops/N513aub"], ["https://tec.openplanner.team/stops/N507aib", "https://tec.openplanner.team/stops/N507aic"], ["https://tec.openplanner.team/stops/LBHinva1", "https://tec.openplanner.team/stops/LMeperk1"], ["https://tec.openplanner.team/stops/LLevaux1", "https://tec.openplanner.team/stops/X547adb"], ["https://tec.openplanner.team/stops/LBXhacb2", "https://tec.openplanner.team/stops/LHEjose2"], ["https://tec.openplanner.team/stops/LMnlogi1", "https://tec.openplanner.team/stops/N223aab"], ["https://tec.openplanner.team/stops/LOrchau2", "https://tec.openplanner.team/stops/LTychev1"], ["https://tec.openplanner.team/stops/Bmelenf2", "https://tec.openplanner.team/stops/Bmelsab1"], ["https://tec.openplanner.team/stops/X996adb", "https://tec.openplanner.team/stops/X996aga"], ["https://tec.openplanner.team/stops/LSPpelz1", "https://tec.openplanner.team/stops/LSPpelz2"], ["https://tec.openplanner.team/stops/Lcavign2", "https://tec.openplanner.team/stops/Lvcbasi*"], ["https://tec.openplanner.team/stops/N244aka", "https://tec.openplanner.team/stops/N244alb"], ["https://tec.openplanner.team/stops/H1ni320a", "https://tec.openplanner.team/stops/H1ni321b"], ["https://tec.openplanner.team/stops/Bjodrga1", "https://tec.openplanner.team/stops/Bjodrga2"], ["https://tec.openplanner.team/stops/NL76agb", "https://tec.openplanner.team/stops/NL76agd"], ["https://tec.openplanner.team/stops/N338aea", "https://tec.openplanner.team/stops/N368afb"], ["https://tec.openplanner.team/stops/H4lg100a", "https://tec.openplanner.team/stops/H4lg101a"], ["https://tec.openplanner.team/stops/Cplrymo2", "https://tec.openplanner.team/stops/Cplstfa1"], ["https://tec.openplanner.team/stops/X639asa", "https://tec.openplanner.team/stops/X652aha"], ["https://tec.openplanner.team/stops/LSlpays2", "https://tec.openplanner.team/stops/X919aoa"], ["https://tec.openplanner.team/stops/H2ll191b", "https://tec.openplanner.team/stops/H2ll193b"], ["https://tec.openplanner.team/stops/Brsgsan1", "https://tec.openplanner.team/stops/Buccron1"], ["https://tec.openplanner.team/stops/H2fy119a", "https://tec.openplanner.team/stops/H2fy120d"], ["https://tec.openplanner.team/stops/H1sg145b", "https://tec.openplanner.team/stops/H1sg147a"], ["https://tec.openplanner.team/stops/Cnachcu2", "https://tec.openplanner.team/stops/Cnagrro2"], ["https://tec.openplanner.team/stops/LLrhest1", "https://tec.openplanner.team/stops/LLrhest2"], ["https://tec.openplanner.team/stops/X721afa", "https://tec.openplanner.team/stops/X721agb"], ["https://tec.openplanner.team/stops/H5el107b", "https://tec.openplanner.team/stops/H5el112c"], ["https://tec.openplanner.team/stops/X636aka", "https://tec.openplanner.team/stops/X636bca"], ["https://tec.openplanner.team/stops/X983ada", "https://tec.openplanner.team/stops/X983aga"], ["https://tec.openplanner.team/stops/Lbhbalt2", "https://tec.openplanner.team/stops/Lbhpeti1"], ["https://tec.openplanner.team/stops/H1ro139a", "https://tec.openplanner.team/stops/H1ro139b"], ["https://tec.openplanner.team/stops/Bnivvai2", "https://tec.openplanner.team/stops/Bnivvco2"], ["https://tec.openplanner.team/stops/LAUnico1", "https://tec.openplanner.team/stops/LAUtism2"], ["https://tec.openplanner.team/stops/Bwspcar1", "https://tec.openplanner.team/stops/Bwsppos1"], ["https://tec.openplanner.team/stops/Beclesp2", "https://tec.openplanner.team/stops/H2ec104b"], ["https://tec.openplanner.team/stops/Llgmare6", "https://tec.openplanner.team/stops/Llgpoli2"], ["https://tec.openplanner.team/stops/N558anb", "https://tec.openplanner.team/stops/NL67aba"], ["https://tec.openplanner.team/stops/LBjpech1", "https://tec.openplanner.team/stops/LLelans1"], ["https://tec.openplanner.team/stops/H4fr388a", "https://tec.openplanner.team/stops/H4fr389a"], ["https://tec.openplanner.team/stops/H5gr138a", "https://tec.openplanner.team/stops/H5gr138b"], ["https://tec.openplanner.team/stops/Buccbou2", "https://tec.openplanner.team/stops/Bucccal3"], ["https://tec.openplanner.team/stops/LrDneun2", "https://tec.openplanner.team/stops/LrDzoll4"], ["https://tec.openplanner.team/stops/X858afa", "https://tec.openplanner.team/stops/X858afb"], ["https://tec.openplanner.team/stops/LwR129-1", "https://tec.openplanner.team/stops/LwR129-2"], ["https://tec.openplanner.team/stops/Llocime2", "https://tec.openplanner.team/stops/Llofort2"], ["https://tec.openplanner.team/stops/X354abb", "https://tec.openplanner.team/stops/X354aha"], ["https://tec.openplanner.team/stops/Bboseco1", "https://tec.openplanner.team/stops/Btiegma1"], ["https://tec.openplanner.team/stops/LCpegli1", "https://tec.openplanner.team/stops/LSPherd1"], ["https://tec.openplanner.team/stops/N569abb", "https://tec.openplanner.team/stops/N569acb"], ["https://tec.openplanner.team/stops/Blincal1", "https://tec.openplanner.team/stops/Bpelegl3"], ["https://tec.openplanner.team/stops/Berneco2", "https://tec.openplanner.team/stops/Bgemrom4"], ["https://tec.openplanner.team/stops/X662aga", "https://tec.openplanner.team/stops/X662agb"], ["https://tec.openplanner.team/stops/H4mb202b", "https://tec.openplanner.team/stops/H4vd230b"], ["https://tec.openplanner.team/stops/N543bba", "https://tec.openplanner.team/stops/N543bbc"], ["https://tec.openplanner.team/stops/X941afb", "https://tec.openplanner.team/stops/X941aga"], ["https://tec.openplanner.team/stops/Beclbar2", "https://tec.openplanner.team/stops/Becltri2"], ["https://tec.openplanner.team/stops/X982aub", "https://tec.openplanner.team/stops/X982axa"], ["https://tec.openplanner.team/stops/H4hq133b", "https://tec.openplanner.team/stops/H4hq133c"], ["https://tec.openplanner.team/stops/N543bda", "https://tec.openplanner.team/stops/N543bdb"], ["https://tec.openplanner.team/stops/Llgancd2", "https://tec.openplanner.team/stops/LlgguilE"], ["https://tec.openplanner.team/stops/LHUpsar2", "https://tec.openplanner.team/stops/LHUsauv1"], ["https://tec.openplanner.team/stops/Cmypast1", "https://tec.openplanner.team/stops/Cmyquen2"], ["https://tec.openplanner.team/stops/H4bo115b", "https://tec.openplanner.team/stops/H4bo117b"], ["https://tec.openplanner.team/stops/H1mv241a", "https://tec.openplanner.team/stops/H1sp355a"], ["https://tec.openplanner.team/stops/X824aeb", "https://tec.openplanner.team/stops/X824aec"], ["https://tec.openplanner.team/stops/X601bya", "https://tec.openplanner.team/stops/X601cna"], ["https://tec.openplanner.team/stops/LSypesy1", "https://tec.openplanner.team/stops/LWZbeem2"], ["https://tec.openplanner.team/stops/Llgcour3", "https://tec.openplanner.team/stops/Llgtcha1"], ["https://tec.openplanner.team/stops/LaMthei1", "https://tec.openplanner.team/stops/LeIkreu3"], ["https://tec.openplanner.team/stops/Bgoegma2", "https://tec.openplanner.team/stops/Bgoestu1"], ["https://tec.openplanner.team/stops/H5fl101a", "https://tec.openplanner.team/stops/H5fl104a"], ["https://tec.openplanner.team/stops/H2ep145a", "https://tec.openplanner.team/stops/H2re168b"], ["https://tec.openplanner.team/stops/X602aia", "https://tec.openplanner.team/stops/X653abb"], ["https://tec.openplanner.team/stops/Bcbqpon2", "https://tec.openplanner.team/stops/Bcbqufo2"], ["https://tec.openplanner.team/stops/X654aia", "https://tec.openplanner.team/stops/X667aeb"], ["https://tec.openplanner.team/stops/N204aaa", "https://tec.openplanner.team/stops/N208aaa"], ["https://tec.openplanner.team/stops/N505aga", "https://tec.openplanner.team/stops/N537aib"], ["https://tec.openplanner.team/stops/Bsjgegl1", "https://tec.openplanner.team/stops/Bzluvil1"], ["https://tec.openplanner.team/stops/N501aib", "https://tec.openplanner.team/stops/N501bka"], ["https://tec.openplanner.team/stops/Bbosdra2", "https://tec.openplanner.team/stops/Btiegar1"], ["https://tec.openplanner.team/stops/LHEzoni1", "https://tec.openplanner.team/stops/LJOferm2"], ["https://tec.openplanner.team/stops/N111aab", "https://tec.openplanner.team/stops/N111aba"], ["https://tec.openplanner.team/stops/Lghpier1", "https://tec.openplanner.team/stops/Lghpier2"], ["https://tec.openplanner.team/stops/X850abb", "https://tec.openplanner.team/stops/X858aba"], ["https://tec.openplanner.team/stops/Bpelegl3", "https://tec.openplanner.team/stops/Bpelegl4"], ["https://tec.openplanner.team/stops/LLebibl3", "https://tec.openplanner.team/stops/X547afb"], ["https://tec.openplanner.team/stops/NL74aad", "https://tec.openplanner.team/stops/NL74aja"], ["https://tec.openplanner.team/stops/X911adb", "https://tec.openplanner.team/stops/X911asb"], ["https://tec.openplanner.team/stops/Candett2", "https://tec.openplanner.team/stops/Canvane1"], ["https://tec.openplanner.team/stops/N505aib", "https://tec.openplanner.team/stops/N505aka"], ["https://tec.openplanner.team/stops/Bmanfbg2", "https://tec.openplanner.team/stops/H2mg137a"], ["https://tec.openplanner.team/stops/Bwaunce1", "https://tec.openplanner.team/stops/Bwaunop2"], ["https://tec.openplanner.team/stops/Cragoss2", "https://tec.openplanner.team/stops/Cravign3"], ["https://tec.openplanner.team/stops/X717aca", "https://tec.openplanner.team/stops/X717acb"], ["https://tec.openplanner.team/stops/N151aba", "https://tec.openplanner.team/stops/N152aaf"], ["https://tec.openplanner.team/stops/H1ls106a", "https://tec.openplanner.team/stops/H1ls106b"], ["https://tec.openplanner.team/stops/Bbchcab2", "https://tec.openplanner.team/stops/Bbchrra3"], ["https://tec.openplanner.team/stops/Lrolecl2", "https://tec.openplanner.team/stops/Lrovand1"], ["https://tec.openplanner.team/stops/N217acb", "https://tec.openplanner.team/stops/N217acd"], ["https://tec.openplanner.team/stops/Llgverg1", "https://tec.openplanner.team/stops/Lrcstad1"], ["https://tec.openplanner.team/stops/X759aaa", "https://tec.openplanner.team/stops/X886abb"], ["https://tec.openplanner.team/stops/H4ir162b", "https://tec.openplanner.team/stops/H5at135a"], ["https://tec.openplanner.team/stops/Bwategb1", "https://tec.openplanner.team/stops/Bwatppa2"], ["https://tec.openplanner.team/stops/X734and", "https://tec.openplanner.team/stops/X775aaa"], ["https://tec.openplanner.team/stops/Cfabaty1", "https://tec.openplanner.team/stops/Cfabaty2"], ["https://tec.openplanner.team/stops/Cmtplac4", "https://tec.openplanner.team/stops/Cmtplac5"], ["https://tec.openplanner.team/stops/H2ch107b", "https://tec.openplanner.team/stops/H2mo133a"], ["https://tec.openplanner.team/stops/Cgpmoul2", "https://tec.openplanner.team/stops/Cobobjo1"], ["https://tec.openplanner.team/stops/H4mo155a", "https://tec.openplanner.team/stops/H4mo170a"], ["https://tec.openplanner.team/stops/X993aea", "https://tec.openplanner.team/stops/X993aeb"], ["https://tec.openplanner.team/stops/LDmdomm2", "https://tec.openplanner.team/stops/LDmwarf1"], ["https://tec.openplanner.team/stops/N533afb", "https://tec.openplanner.team/stops/N533aib"], ["https://tec.openplanner.team/stops/Llgtill1", "https://tec.openplanner.team/stops/Llgtill2"], ["https://tec.openplanner.team/stops/LRRchea2", "https://tec.openplanner.team/stops/LRRchea3"], ["https://tec.openplanner.team/stops/N501hna", "https://tec.openplanner.team/stops/N501ivb"], ["https://tec.openplanner.team/stops/LWelogi1", "https://tec.openplanner.team/stops/LWevalf1"], ["https://tec.openplanner.team/stops/H1em101a", "https://tec.openplanner.team/stops/H1ev114b"], ["https://tec.openplanner.team/stops/X922ada", "https://tec.openplanner.team/stops/X922akb"], ["https://tec.openplanner.team/stops/N308aca", "https://tec.openplanner.team/stops/N308baa"], ["https://tec.openplanner.team/stops/H1bn114b", "https://tec.openplanner.team/stops/H1qp141b"], ["https://tec.openplanner.team/stops/X614aha", "https://tec.openplanner.team/stops/X614awa"], ["https://tec.openplanner.team/stops/N155afb", "https://tec.openplanner.team/stops/N155afd"], ["https://tec.openplanner.team/stops/X839ada", "https://tec.openplanner.team/stops/X839aea"], ["https://tec.openplanner.team/stops/Loucham1", "https://tec.openplanner.team/stops/Loucham3"], ["https://tec.openplanner.team/stops/LCTfair1", "https://tec.openplanner.team/stops/LCTmonu2"], ["https://tec.openplanner.team/stops/H4ty283a", "https://tec.openplanner.team/stops/H4ty322b"], ["https://tec.openplanner.team/stops/N137adb", "https://tec.openplanner.team/stops/N155aab"], ["https://tec.openplanner.team/stops/H4ka185b", "https://tec.openplanner.team/stops/H4ru236b"], ["https://tec.openplanner.team/stops/X661axb", "https://tec.openplanner.team/stops/X817acb"], ["https://tec.openplanner.team/stops/X746aaa", "https://tec.openplanner.team/stops/X747aia"], ["https://tec.openplanner.team/stops/Ccocroi2", "https://tec.openplanner.team/stops/H2tz120a"], ["https://tec.openplanner.team/stops/H1gi120d", "https://tec.openplanner.team/stops/H1gi154a"], ["https://tec.openplanner.team/stops/Lbbviad4", "https://tec.openplanner.team/stops/Lgrorch1"], ["https://tec.openplanner.team/stops/H4wt159a", "https://tec.openplanner.team/stops/H5rx128b"], ["https://tec.openplanner.team/stops/LBBabat1", "https://tec.openplanner.team/stops/LBBpech1"], ["https://tec.openplanner.team/stops/Bmlnbpr2", "https://tec.openplanner.team/stops/Bmlnsmv1"], ["https://tec.openplanner.team/stops/X634akb", "https://tec.openplanner.team/stops/X636aab"], ["https://tec.openplanner.team/stops/LCSmagn1", "https://tec.openplanner.team/stops/LSShous1"], ["https://tec.openplanner.team/stops/LMalarg4", "https://tec.openplanner.team/stops/LMaslav3"], ["https://tec.openplanner.team/stops/Bbxlmid4", "https://tec.openplanner.team/stops/Bhaldbo1"], ["https://tec.openplanner.team/stops/Barqpla2", "https://tec.openplanner.team/stops/Bfelbri1"], ["https://tec.openplanner.team/stops/X985aab", "https://tec.openplanner.team/stops/X985aba"], ["https://tec.openplanner.team/stops/LaAjahn1", "https://tec.openplanner.team/stops/LaAkapi1"], ["https://tec.openplanner.team/stops/LeYmero2", "https://tec.openplanner.team/stops/LkTweih1"], ["https://tec.openplanner.team/stops/LCpeg-*", "https://tec.openplanner.team/stops/LCpvill1"], ["https://tec.openplanner.team/stops/H4le127a", "https://tec.openplanner.team/stops/H4ry133a"], ["https://tec.openplanner.team/stops/Chhprai1", "https://tec.openplanner.team/stops/Cmx3arb2"], ["https://tec.openplanner.team/stops/H4er124b", "https://tec.openplanner.team/stops/H4ty282a"], ["https://tec.openplanner.team/stops/X898aca", "https://tec.openplanner.team/stops/X995aga"], ["https://tec.openplanner.team/stops/X955aab", "https://tec.openplanner.team/stops/X955ada"], ["https://tec.openplanner.team/stops/LWberno1", "https://tec.openplanner.team/stops/LWberno2"], ["https://tec.openplanner.team/stops/H1sg148b", "https://tec.openplanner.team/stops/H1te174a"], ["https://tec.openplanner.team/stops/X821aaa", "https://tec.openplanner.team/stops/X821aab"], ["https://tec.openplanner.team/stops/X615bba", "https://tec.openplanner.team/stops/X615bbb"], ["https://tec.openplanner.team/stops/LBXhacb1", "https://tec.openplanner.team/stops/LHEpriv2"], ["https://tec.openplanner.team/stops/Blmlbif1", "https://tec.openplanner.team/stops/Brixape2"], ["https://tec.openplanner.team/stops/H1ba100a", "https://tec.openplanner.team/stops/H1ba111b"], ["https://tec.openplanner.team/stops/X822afb", "https://tec.openplanner.team/stops/X822anb"], ["https://tec.openplanner.team/stops/H2go114a", "https://tec.openplanner.team/stops/H2go120a"], ["https://tec.openplanner.team/stops/N385ada", "https://tec.openplanner.team/stops/N385aed"], ["https://tec.openplanner.team/stops/Blinbru1", "https://tec.openplanner.team/stops/Blinhue1"], ["https://tec.openplanner.team/stops/X601ajb", "https://tec.openplanner.team/stops/X601aqa"], ["https://tec.openplanner.team/stops/N387aab", "https://tec.openplanner.team/stops/N387aba"], ["https://tec.openplanner.team/stops/Caicalv1", "https://tec.openplanner.team/stops/Caicalv2"], ["https://tec.openplanner.team/stops/N212afa", "https://tec.openplanner.team/stops/N212ahb"], ["https://tec.openplanner.team/stops/LAvcani2", "https://tec.openplanner.team/stops/LCIneuv1"], ["https://tec.openplanner.team/stops/X811apb", "https://tec.openplanner.team/stops/X812bbb"], ["https://tec.openplanner.team/stops/H4mo144a", "https://tec.openplanner.team/stops/H4mo147a"], ["https://tec.openplanner.team/stops/X746abb", "https://tec.openplanner.team/stops/X746aca"], ["https://tec.openplanner.team/stops/Bsmgmar1", "https://tec.openplanner.team/stops/Bsmgmou1"], ["https://tec.openplanner.team/stops/H1ho130a", "https://tec.openplanner.team/stops/H1wa164b"], ["https://tec.openplanner.team/stops/N533alb", "https://tec.openplanner.team/stops/N533aob"], ["https://tec.openplanner.team/stops/N521aeb", "https://tec.openplanner.team/stops/N523aba"], ["https://tec.openplanner.team/stops/LFUfonc1", "https://tec.openplanner.team/stops/LFUgare1"], ["https://tec.openplanner.team/stops/N531adb", "https://tec.openplanner.team/stops/N531ama"], ["https://tec.openplanner.team/stops/X641axa", "https://tec.openplanner.team/stops/X641aya"], ["https://tec.openplanner.team/stops/H1hr122b", "https://tec.openplanner.team/stops/H1hr124a"], ["https://tec.openplanner.team/stops/Cfccabi1", "https://tec.openplanner.team/stops/Cfccabi2"], ["https://tec.openplanner.team/stops/LBNeu712", "https://tec.openplanner.team/stops/LhEherb2"], ["https://tec.openplanner.team/stops/LLrpape2", "https://tec.openplanner.team/stops/LLrpape4"], ["https://tec.openplanner.team/stops/Lgrclos2", "https://tec.openplanner.team/stops/Lgrlabo2"], ["https://tec.openplanner.team/stops/H5rx129a", "https://tec.openplanner.team/stops/H5rx143b"], ["https://tec.openplanner.team/stops/Lgrmc--1", "https://tec.openplanner.team/stops/Lgrmc--2"], ["https://tec.openplanner.team/stops/X945aba", "https://tec.openplanner.team/stops/X945aca"], ["https://tec.openplanner.team/stops/LBlhaut2", "https://tec.openplanner.team/stops/LLUlieg2"], ["https://tec.openplanner.team/stops/X615ayb", "https://tec.openplanner.team/stops/X615azb"], ["https://tec.openplanner.team/stops/Bwatath2", "https://tec.openplanner.team/stops/Bwatdmo1"], ["https://tec.openplanner.team/stops/LPRecol1", "https://tec.openplanner.team/stops/LTResse1"], ["https://tec.openplanner.team/stops/Cjuquai1", "https://tec.openplanner.team/stops/Cjuvpla2"], ["https://tec.openplanner.team/stops/X986aka", "https://tec.openplanner.team/stops/X986amb"], ["https://tec.openplanner.team/stops/Cpccoss2", "https://tec.openplanner.team/stops/Cpclarm2"], ["https://tec.openplanner.team/stops/X986afb", "https://tec.openplanner.team/stops/X986ata"], ["https://tec.openplanner.team/stops/H1by102a", "https://tec.openplanner.team/stops/H1by103b"], ["https://tec.openplanner.team/stops/H1og130b", "https://tec.openplanner.team/stops/H5wo132a"], ["https://tec.openplanner.team/stops/N501aha", "https://tec.openplanner.team/stops/N501ahb"], ["https://tec.openplanner.team/stops/LHrrard1", "https://tec.openplanner.team/stops/LHrrard2"], ["https://tec.openplanner.team/stops/LsVviel1", "https://tec.openplanner.team/stops/LsVviel2"], ["https://tec.openplanner.team/stops/H1gh160a", "https://tec.openplanner.team/stops/H1gh160b"], ["https://tec.openplanner.team/stops/N106aoa", "https://tec.openplanner.team/stops/N106arb"], ["https://tec.openplanner.team/stops/X788aha", "https://tec.openplanner.team/stops/X788ahb"], ["https://tec.openplanner.team/stops/X719abb", "https://tec.openplanner.team/stops/X733aba"], ["https://tec.openplanner.team/stops/LhSfrep2", "https://tec.openplanner.team/stops/LhSheid1"], ["https://tec.openplanner.team/stops/Btstpch1", "https://tec.openplanner.team/stops/Btstpch2"], ["https://tec.openplanner.team/stops/N501kxb", "https://tec.openplanner.team/stops/N501mtd"], ["https://tec.openplanner.team/stops/N539aib", "https://tec.openplanner.team/stops/N539alb"], ["https://tec.openplanner.team/stops/N561aib", "https://tec.openplanner.team/stops/N584apa"], ["https://tec.openplanner.team/stops/LiV19--2", "https://tec.openplanner.team/stops/LiVkreu3"], ["https://tec.openplanner.team/stops/H4bc101a", "https://tec.openplanner.team/stops/H4bc101d"], ["https://tec.openplanner.team/stops/Bblatet2", "https://tec.openplanner.team/stops/Bbsibou1"], ["https://tec.openplanner.team/stops/LLReg--1", "https://tec.openplanner.team/stops/LLRgdma1"], ["https://tec.openplanner.team/stops/H4te250a", "https://tec.openplanner.team/stops/H4te250b"], ["https://tec.openplanner.team/stops/H1hr118d", "https://tec.openplanner.team/stops/H1hr122b"], ["https://tec.openplanner.team/stops/NL35aca", "https://tec.openplanner.team/stops/NL35agb"], ["https://tec.openplanner.team/stops/H1pw121a", "https://tec.openplanner.team/stops/H1pw123b"], ["https://tec.openplanner.team/stops/Lgrfalc1", "https://tec.openplanner.team/stops/Lgrrein1"], ["https://tec.openplanner.team/stops/N260aba", "https://tec.openplanner.team/stops/N260afb"], ["https://tec.openplanner.team/stops/Bbstchn2", "https://tec.openplanner.team/stops/Bbstrpo2"], ["https://tec.openplanner.team/stops/X836abb", "https://tec.openplanner.team/stops/X836aja"], ["https://tec.openplanner.team/stops/X773aib", "https://tec.openplanner.team/stops/X773ajb"], ["https://tec.openplanner.team/stops/LOReg--2", "https://tec.openplanner.team/stops/LORgend2"], ["https://tec.openplanner.team/stops/X760afb", "https://tec.openplanner.team/stops/X762aeb"], ["https://tec.openplanner.team/stops/H4ru235b", "https://tec.openplanner.team/stops/H4ru239b"], ["https://tec.openplanner.team/stops/N118aob", "https://tec.openplanner.team/stops/N118baa"], ["https://tec.openplanner.team/stops/H4ta118a", "https://tec.openplanner.team/stops/H4ta123a"], ["https://tec.openplanner.team/stops/LOuhalb1", "https://tec.openplanner.team/stops/LOumaro2"], ["https://tec.openplanner.team/stops/X805aaa", "https://tec.openplanner.team/stops/X805aha"], ["https://tec.openplanner.team/stops/Bvirduj1", "https://tec.openplanner.team/stops/Bvirduj2"], ["https://tec.openplanner.team/stops/Bcsebea4", "https://tec.openplanner.team/stops/Bcsen252"], ["https://tec.openplanner.team/stops/Lsmcime1", "https://tec.openplanner.team/stops/Lsmrcim1"], ["https://tec.openplanner.team/stops/H4ty296a", "https://tec.openplanner.team/stops/H4ty351a"], ["https://tec.openplanner.team/stops/H5fl102d", "https://tec.openplanner.team/stops/H5fl103b"], ["https://tec.openplanner.team/stops/Bgligli2", "https://tec.openplanner.team/stops/Bjcljau1"], ["https://tec.openplanner.team/stops/H5el104b", "https://tec.openplanner.team/stops/H5el114a"], ["https://tec.openplanner.team/stops/X542abb", "https://tec.openplanner.team/stops/X542aia"], ["https://tec.openplanner.team/stops/LkTweih1", "https://tec.openplanner.team/stops/LrAbe961"], ["https://tec.openplanner.team/stops/LsVfeye1", "https://tec.openplanner.team/stops/LsVfeye2"], ["https://tec.openplanner.team/stops/X805aba", "https://tec.openplanner.team/stops/X805abb"], ["https://tec.openplanner.team/stops/X733aja", "https://tec.openplanner.team/stops/X733ajb"], ["https://tec.openplanner.team/stops/X808adb", "https://tec.openplanner.team/stops/X808aea"], ["https://tec.openplanner.team/stops/H2fa106a", "https://tec.openplanner.team/stops/H2hg268b"], ["https://tec.openplanner.team/stops/Ccicent2", "https://tec.openplanner.team/stops/Ccicouc1"], ["https://tec.openplanner.team/stops/Bsdafra1", "https://tec.openplanner.team/stops/Csdbosq2"], ["https://tec.openplanner.team/stops/Lflcle-5", "https://tec.openplanner.team/stops/Lflsana2"], ["https://tec.openplanner.team/stops/X750aaa", "https://tec.openplanner.team/stops/X780aga"], ["https://tec.openplanner.team/stops/Lheazz-1", "https://tec.openplanner.team/stops/Lheelva1"], ["https://tec.openplanner.team/stops/Ccocorb2", "https://tec.openplanner.team/stops/Ccoha601"], ["https://tec.openplanner.team/stops/N501hta", "https://tec.openplanner.team/stops/N501ifa"], ["https://tec.openplanner.team/stops/Bllnfle1", "https://tec.openplanner.team/stops/Bllnfle2"], ["https://tec.openplanner.team/stops/X224afa", "https://tec.openplanner.team/stops/X224afb"], ["https://tec.openplanner.team/stops/LTatult2", "https://tec.openplanner.team/stops/LTatult3"], ["https://tec.openplanner.team/stops/X640aib", "https://tec.openplanner.team/stops/X640ajb"], ["https://tec.openplanner.team/stops/Bsdabja2", "https://tec.openplanner.team/stops/Bsdavpe2"], ["https://tec.openplanner.team/stops/X818afb", "https://tec.openplanner.team/stops/X818aua"], ["https://tec.openplanner.team/stops/X775acb", "https://tec.openplanner.team/stops/X775afa"], ["https://tec.openplanner.team/stops/Louoran1", "https://tec.openplanner.team/stops/Louroos1"], ["https://tec.openplanner.team/stops/LWechpl1", "https://tec.openplanner.team/stops/LWevalf2"], ["https://tec.openplanner.team/stops/X996abb", "https://tec.openplanner.team/stops/X996ahb"], ["https://tec.openplanner.team/stops/LGOdelv1", "https://tec.openplanner.team/stops/LHVeg--2"], ["https://tec.openplanner.team/stops/H1bu137a", "https://tec.openplanner.team/stops/H1bu137b"], ["https://tec.openplanner.team/stops/Lstbota2", "https://tec.openplanner.team/stops/Lsteduc1"], ["https://tec.openplanner.team/stops/LeYdepo2", "https://tec.openplanner.team/stops/LeYroth1"], ["https://tec.openplanner.team/stops/N576aea", "https://tec.openplanner.team/stops/N576anb"], ["https://tec.openplanner.team/stops/X608ara", "https://tec.openplanner.team/stops/X608arb"], ["https://tec.openplanner.team/stops/X922aia", "https://tec.openplanner.team/stops/X922ajb"], ["https://tec.openplanner.team/stops/Lsechev2", "https://tec.openplanner.team/stops/Lsemyrt1"], ["https://tec.openplanner.team/stops/N309aac", "https://tec.openplanner.team/stops/N365aca"], ["https://tec.openplanner.team/stops/X985aba", "https://tec.openplanner.team/stops/X985abb"], ["https://tec.openplanner.team/stops/LSNbouh3", "https://tec.openplanner.team/stops/LSNbouh4"], ["https://tec.openplanner.team/stops/N501bdb", "https://tec.openplanner.team/stops/N501hsb"], ["https://tec.openplanner.team/stops/X823aeb", "https://tec.openplanner.team/stops/X824aba"], ["https://tec.openplanner.team/stops/N340afa", "https://tec.openplanner.team/stops/N340aha"], ["https://tec.openplanner.team/stops/LSphote1", "https://tec.openplanner.team/stops/LSphote2"], ["https://tec.openplanner.team/stops/LWAvand1", "https://tec.openplanner.team/stops/LWAvand2"], ["https://tec.openplanner.team/stops/N515aka", "https://tec.openplanner.team/stops/N515akc"], ["https://tec.openplanner.team/stops/LFmlens2", "https://tec.openplanner.team/stops/LTychev2"], ["https://tec.openplanner.team/stops/H1ho143a", "https://tec.openplanner.team/stops/H1ho143c"], ["https://tec.openplanner.team/stops/Crorpai1", "https://tec.openplanner.team/stops/Crowilb2"], ["https://tec.openplanner.team/stops/Lsechan2", "https://tec.openplanner.team/stops/Lsevecq1"], ["https://tec.openplanner.team/stops/LGefron1", "https://tec.openplanner.team/stops/LGefron2"], ["https://tec.openplanner.team/stops/X608aia", "https://tec.openplanner.team/stops/X608avb"], ["https://tec.openplanner.team/stops/LNAmart2", "https://tec.openplanner.team/stops/LNAplac1"], ["https://tec.openplanner.team/stops/LSdcent2", "https://tec.openplanner.team/stops/LSdsa452"], ["https://tec.openplanner.team/stops/LeUarno1", "https://tec.openplanner.team/stops/LeUarno2"], ["https://tec.openplanner.team/stops/Lprchat2", "https://tec.openplanner.team/stops/Lprmc--2"], ["https://tec.openplanner.team/stops/LSLeg--1", "https://tec.openplanner.team/stops/LSLstra2"], ["https://tec.openplanner.team/stops/LAUjean1", "https://tec.openplanner.team/stops/LSJeg--2"], ["https://tec.openplanner.team/stops/H4ar100a", "https://tec.openplanner.team/stops/H4ar101a"], ["https://tec.openplanner.team/stops/NR21aea", "https://tec.openplanner.team/stops/NR21aeb"], ["https://tec.openplanner.team/stops/H1ca100a", "https://tec.openplanner.team/stops/H1ca100b"], ["https://tec.openplanner.team/stops/X897aib", "https://tec.openplanner.team/stops/X897ajb"], ["https://tec.openplanner.team/stops/H2ec100a", "https://tec.openplanner.team/stops/H2ec103b"], ["https://tec.openplanner.team/stops/X614aqb", "https://tec.openplanner.team/stops/X614asa"], ["https://tec.openplanner.team/stops/Ltiegli2", "https://tec.openplanner.team/stops/Ltimarq2"], ["https://tec.openplanner.team/stops/LOunebl2", "https://tec.openplanner.team/stops/X982abb"], ["https://tec.openplanner.team/stops/Btilgar2", "https://tec.openplanner.team/stops/Btilhti2"], ["https://tec.openplanner.team/stops/H1hi122a", "https://tec.openplanner.team/stops/H1hi122b"], ["https://tec.openplanner.team/stops/LLrcomb1", "https://tec.openplanner.team/stops/LLrcomb2"], ["https://tec.openplanner.team/stops/Crocona2", "https://tec.openplanner.team/stops/Croplom5"], ["https://tec.openplanner.team/stops/LLWcarr1", "https://tec.openplanner.team/stops/LLWcarr2"], ["https://tec.openplanner.team/stops/Lbhhomv2", "https://tec.openplanner.team/stops/Ljuvert1"], ["https://tec.openplanner.team/stops/LREelse1", "https://tec.openplanner.team/stops/LREsp902"], ["https://tec.openplanner.team/stops/Bgzddfh1", "https://tec.openplanner.team/stops/Bgzdpis1"], ["https://tec.openplanner.team/stops/Lhr1ave2", "https://tec.openplanner.team/stops/Lhr2ave2"], ["https://tec.openplanner.team/stops/H4hq129a", "https://tec.openplanner.team/stops/H4hq134a"], ["https://tec.openplanner.team/stops/X723aea", "https://tec.openplanner.team/stops/X766aja"], ["https://tec.openplanner.team/stops/X615alb", "https://tec.openplanner.team/stops/X615bra"], ["https://tec.openplanner.team/stops/Bhantui2", "https://tec.openplanner.team/stops/LABbert2"], ["https://tec.openplanner.team/stops/LEHpech1", "https://tec.openplanner.team/stops/LSSvill2"], ["https://tec.openplanner.team/stops/LLmvict2", "https://tec.openplanner.team/stops/LRemonu2"], ["https://tec.openplanner.team/stops/Lwagare1", "https://tec.openplanner.team/stops/Lwapont1"], ["https://tec.openplanner.team/stops/LLVboss1", "https://tec.openplanner.team/stops/X561aaa"], ["https://tec.openplanner.team/stops/X660afa", "https://tec.openplanner.team/stops/X741alb"], ["https://tec.openplanner.team/stops/X775ada", "https://tec.openplanner.team/stops/X775ana"], ["https://tec.openplanner.team/stops/N321abb", "https://tec.openplanner.team/stops/N321acb"], ["https://tec.openplanner.team/stops/H1en100a", "https://tec.openplanner.team/stops/H1en100b"], ["https://tec.openplanner.team/stops/X886aea", "https://tec.openplanner.team/stops/X886afa"], ["https://tec.openplanner.team/stops/X609aca", "https://tec.openplanner.team/stops/X609acb"], ["https://tec.openplanner.team/stops/H4ty312a", "https://tec.openplanner.team/stops/H4ty324a"], ["https://tec.openplanner.team/stops/Cgocalv2", "https://tec.openplanner.team/stops/Cgofleu3"], ["https://tec.openplanner.team/stops/H1au102b", "https://tec.openplanner.team/stops/H1wi151a"], ["https://tec.openplanner.team/stops/Bsammon3", "https://tec.openplanner.team/stops/Bsammon4"], ["https://tec.openplanner.team/stops/H1pa106a", "https://tec.openplanner.team/stops/H1pa106c"], ["https://tec.openplanner.team/stops/H3so153a", "https://tec.openplanner.team/stops/H3so162a"], ["https://tec.openplanner.team/stops/LSTdero1", "https://tec.openplanner.team/stops/LSTvaul2"], ["https://tec.openplanner.team/stops/N221aca", "https://tec.openplanner.team/stops/N221acb"], ["https://tec.openplanner.team/stops/H1ca102b", "https://tec.openplanner.team/stops/H3so164a"], ["https://tec.openplanner.team/stops/N501cea", "https://tec.openplanner.team/stops/N521aba"], ["https://tec.openplanner.team/stops/X354afb", "https://tec.openplanner.team/stops/X359alb"], ["https://tec.openplanner.team/stops/X912aka", "https://tec.openplanner.team/stops/X912ala"], ["https://tec.openplanner.team/stops/LLUvent4", "https://tec.openplanner.team/stops/LLUvent5"], ["https://tec.openplanner.team/stops/H2bh110b", "https://tec.openplanner.team/stops/H2bh110d"], ["https://tec.openplanner.team/stops/X891ada", "https://tec.openplanner.team/stops/X892aia"], ["https://tec.openplanner.team/stops/N543bqa", "https://tec.openplanner.team/stops/N543cja"], ["https://tec.openplanner.team/stops/Btilmar2", "https://tec.openplanner.team/stops/Btilsnc1"], ["https://tec.openplanner.team/stops/X731acc", "https://tec.openplanner.team/stops/X731ada"], ["https://tec.openplanner.team/stops/Cmlhauc1", "https://tec.openplanner.team/stops/NC01afa"], ["https://tec.openplanner.team/stops/X672aeb", "https://tec.openplanner.team/stops/X675aba"], ["https://tec.openplanner.team/stops/H4mn100a", "https://tec.openplanner.team/stops/H4mo192a"], ["https://tec.openplanner.team/stops/H1si152c", "https://tec.openplanner.team/stops/H1si164a"], ["https://tec.openplanner.team/stops/LCeterm2", "https://tec.openplanner.team/stops/LLWchat1"], ["https://tec.openplanner.team/stops/N522aja", "https://tec.openplanner.team/stops/N522bvh"], ["https://tec.openplanner.team/stops/H4ae100b", "https://tec.openplanner.team/stops/H4ae102a"], ["https://tec.openplanner.team/stops/Lalchar2", "https://tec.openplanner.team/stops/LXhcite1"], ["https://tec.openplanner.team/stops/H1me117c", "https://tec.openplanner.team/stops/H1me117e"], ["https://tec.openplanner.team/stops/X623aga", "https://tec.openplanner.team/stops/X623ahb"], ["https://tec.openplanner.team/stops/Lheneuv1", "https://tec.openplanner.team/stops/Lheneuv3"], ["https://tec.openplanner.team/stops/X982bfb", "https://tec.openplanner.team/stops/X982bld"], ["https://tec.openplanner.team/stops/X991akb", "https://tec.openplanner.team/stops/X991alb"], ["https://tec.openplanner.team/stops/LHNgend3", "https://tec.openplanner.team/stops/LHNgend4"], ["https://tec.openplanner.team/stops/H2sv217a", "https://tec.openplanner.team/stops/H2sv217b"], ["https://tec.openplanner.team/stops/Cchba04", "https://tec.openplanner.team/stops/Cchba1"], ["https://tec.openplanner.team/stops/Bmoucoq1", "https://tec.openplanner.team/stops/Bottcli4"], ["https://tec.openplanner.team/stops/Lflcime2", "https://tec.openplanner.team/stops/Lflweri1"], ["https://tec.openplanner.team/stops/X901amb", "https://tec.openplanner.team/stops/X901ara"], ["https://tec.openplanner.team/stops/X747afa", "https://tec.openplanner.team/stops/X749aab"], ["https://tec.openplanner.team/stops/LOCbois1", "https://tec.openplanner.team/stops/LOChuy-1"], ["https://tec.openplanner.team/stops/NL81afb", "https://tec.openplanner.team/stops/NL81aha"], ["https://tec.openplanner.team/stops/H1el132b", "https://tec.openplanner.team/stops/H1el140c"], ["https://tec.openplanner.team/stops/H1je222a", "https://tec.openplanner.team/stops/H1je366a"], ["https://tec.openplanner.team/stops/N539afa", "https://tec.openplanner.team/stops/N539aua"], ["https://tec.openplanner.team/stops/N118ava", "https://tec.openplanner.team/stops/N118avb"], ["https://tec.openplanner.team/stops/Bcrncce1", "https://tec.openplanner.team/stops/Bsgeqpb1"], ["https://tec.openplanner.team/stops/X615avb", "https://tec.openplanner.team/stops/X615bca"], ["https://tec.openplanner.team/stops/Bbstchn1", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/Ccopeti2", "https://tec.openplanner.team/stops/Ccovies2"], ["https://tec.openplanner.team/stops/N424aca", "https://tec.openplanner.team/stops/N424ada"], ["https://tec.openplanner.team/stops/X999aaa", "https://tec.openplanner.team/stops/X999amb"], ["https://tec.openplanner.team/stops/LLAcalv2", "https://tec.openplanner.team/stops/LLAchpl2"], ["https://tec.openplanner.team/stops/H4ne134b", "https://tec.openplanner.team/stops/H4ne144c"], ["https://tec.openplanner.team/stops/LhEklos2", "https://tec.openplanner.team/stops/LhEtivo2"], ["https://tec.openplanner.team/stops/Cctchea1", "https://tec.openplanner.team/stops/Cctvche1"], ["https://tec.openplanner.team/stops/H2ha133a", "https://tec.openplanner.team/stops/H2sb271a"], ["https://tec.openplanner.team/stops/N232axa", "https://tec.openplanner.team/stops/N232bpb"], ["https://tec.openplanner.team/stops/X548afa", "https://tec.openplanner.team/stops/X784aib"], ["https://tec.openplanner.team/stops/LmHdrei1", "https://tec.openplanner.team/stops/LmTkirc1"], ["https://tec.openplanner.team/stops/N506bub", "https://tec.openplanner.team/stops/N506bwa"], ["https://tec.openplanner.team/stops/N526aca", "https://tec.openplanner.team/stops/N526ada"], ["https://tec.openplanner.team/stops/Ljuargi1", "https://tec.openplanner.team/stops/Ljuplpr2"], ["https://tec.openplanner.team/stops/X723afa", "https://tec.openplanner.team/stops/X723ala"], ["https://tec.openplanner.team/stops/LWNberg2", "https://tec.openplanner.team/stops/NL72afa"], ["https://tec.openplanner.team/stops/LbUjost2", "https://tec.openplanner.team/stops/LbUjost4"], ["https://tec.openplanner.team/stops/LBslama2", "https://tec.openplanner.team/stops/NL72aca"], ["https://tec.openplanner.team/stops/Cmmcarr1", "https://tec.openplanner.team/stops/Cmmp2052"], ["https://tec.openplanner.team/stops/Bmlnegl1", "https://tec.openplanner.team/stops/Bmlnegl4"], ["https://tec.openplanner.team/stops/N110ahb", "https://tec.openplanner.team/stops/N113aga"], ["https://tec.openplanner.team/stops/X774afb", "https://tec.openplanner.team/stops/X774agb"], ["https://tec.openplanner.team/stops/X926afa", "https://tec.openplanner.team/stops/X926afb"], ["https://tec.openplanner.team/stops/LCvoufn1", "https://tec.openplanner.team/stops/X713ala"], ["https://tec.openplanner.team/stops/H1ms268a", "https://tec.openplanner.team/stops/H1ms308a"], ["https://tec.openplanner.team/stops/H5pe133a", "https://tec.openplanner.team/stops/H5pe147a"], ["https://tec.openplanner.team/stops/LrAdrie2", "https://tec.openplanner.team/stops/LrAdrie3"], ["https://tec.openplanner.team/stops/Bmsgbay1", "https://tec.openplanner.team/stops/Bmsgbay2"], ["https://tec.openplanner.team/stops/H1hy129a", "https://tec.openplanner.team/stops/H1hy144a"], ["https://tec.openplanner.team/stops/LmEdorf1", "https://tec.openplanner.team/stops/LmNsied2"], ["https://tec.openplanner.team/stops/LAWhein3", "https://tec.openplanner.team/stops/LXhjupr2"], ["https://tec.openplanner.team/stops/LESmart1", "https://tec.openplanner.team/stops/LESoneu3"], ["https://tec.openplanner.team/stops/X901aeb", "https://tec.openplanner.team/stops/X901bga"], ["https://tec.openplanner.team/stops/Bwlhpec1", "https://tec.openplanner.team/stops/Bwlhpmt4"], ["https://tec.openplanner.team/stops/N143aba", "https://tec.openplanner.team/stops/N143acb"], ["https://tec.openplanner.team/stops/X718aib", "https://tec.openplanner.team/stops/X718ajb"], ["https://tec.openplanner.team/stops/H1ms299a", "https://tec.openplanner.team/stops/H1ms943a"], ["https://tec.openplanner.team/stops/H5el114a", "https://tec.openplanner.team/stops/H5el114b"], ["https://tec.openplanner.team/stops/NC14afb", "https://tec.openplanner.team/stops/NC14aga"], ["https://tec.openplanner.team/stops/H4eh102a", "https://tec.openplanner.team/stops/H4eh102b"], ["https://tec.openplanner.team/stops/LLOhest2", "https://tec.openplanner.team/stops/LPLhest2"], ["https://tec.openplanner.team/stops/Lagarde2", "https://tec.openplanner.team/stops/Lgrgoff2"], ["https://tec.openplanner.team/stops/H1hn365a", "https://tec.openplanner.team/stops/H1ms260a"], ["https://tec.openplanner.team/stops/LETec--1", "https://tec.openplanner.team/stops/LETeg--2"], ["https://tec.openplanner.team/stops/Bauddel2", "https://tec.openplanner.team/stops/Baudvdr2"], ["https://tec.openplanner.team/stops/Blimbet3", "https://tec.openplanner.team/stops/Blmlcar1"], ["https://tec.openplanner.team/stops/X879aea", "https://tec.openplanner.team/stops/X882aga"], ["https://tec.openplanner.team/stops/H1wa152b", "https://tec.openplanner.team/stops/H1wa163b"], ["https://tec.openplanner.team/stops/Bjanfer2", "https://tec.openplanner.team/stops/Bpthcai2"], ["https://tec.openplanner.team/stops/Lchsaro2", "https://tec.openplanner.team/stops/Lchsart2"], ["https://tec.openplanner.team/stops/X801bja", "https://tec.openplanner.team/stops/X801bka"], ["https://tec.openplanner.team/stops/X979aeb", "https://tec.openplanner.team/stops/X979aoa"], ["https://tec.openplanner.team/stops/X784ala", "https://tec.openplanner.team/stops/X784alb"], ["https://tec.openplanner.team/stops/N220aaa", "https://tec.openplanner.team/stops/X394aca"], ["https://tec.openplanner.team/stops/Cchsud01", "https://tec.openplanner.team/stops/Cmlecha1"], ["https://tec.openplanner.team/stops/Cfaeclu2", "https://tec.openplanner.team/stops/Cplrmon2"], ["https://tec.openplanner.team/stops/N558afb", "https://tec.openplanner.team/stops/N558agb"], ["https://tec.openplanner.team/stops/H4hx114a", "https://tec.openplanner.team/stops/H4hx120a"], ["https://tec.openplanner.team/stops/LHvvill*", "https://tec.openplanner.team/stops/LPurech2"], ["https://tec.openplanner.team/stops/Cmgcabi1", "https://tec.openplanner.team/stops/Cmgslo1"], ["https://tec.openplanner.team/stops/Bsaucre1", "https://tec.openplanner.team/stops/Bsaupco1"], ["https://tec.openplanner.team/stops/Cnacroc1", "https://tec.openplanner.team/stops/Cnahous2"], ["https://tec.openplanner.team/stops/LkOzoll1", "https://tec.openplanner.team/stops/LkOzoll2"], ["https://tec.openplanner.team/stops/N385abb", "https://tec.openplanner.team/stops/N385acb"], ["https://tec.openplanner.team/stops/N220aca", "https://tec.openplanner.team/stops/N224aba"], ["https://tec.openplanner.team/stops/Lvtcalv2", "https://tec.openplanner.team/stops/Lvtcime2"], ["https://tec.openplanner.team/stops/Bwaygrg2", "https://tec.openplanner.team/stops/Cbtlong1"], ["https://tec.openplanner.team/stops/LSkb1351", "https://tec.openplanner.team/stops/LSkb1352"], ["https://tec.openplanner.team/stops/N539baa", "https://tec.openplanner.team/stops/N539bab"], ["https://tec.openplanner.team/stops/X611aba", "https://tec.openplanner.team/stops/X611aea"], ["https://tec.openplanner.team/stops/Ccychap2", "https://tec.openplanner.team/stops/Ccymabo2"], ["https://tec.openplanner.team/stops/NL74aaa", "https://tec.openplanner.team/stops/NL74ajb"], ["https://tec.openplanner.team/stops/LGMforg2", "https://tec.openplanner.team/stops/LTRoasi2"], ["https://tec.openplanner.team/stops/N506ata", "https://tec.openplanner.team/stops/N506azb"], ["https://tec.openplanner.team/stops/LSPvigi1", "https://tec.openplanner.team/stops/LSPvigi2"], ["https://tec.openplanner.team/stops/Lsn130-1", "https://tec.openplanner.team/stops/Lsnlhon1"], ["https://tec.openplanner.team/stops/H5rx110a", "https://tec.openplanner.team/stops/H5rx139a"], ["https://tec.openplanner.team/stops/Cgoson12", "https://tec.openplanner.team/stops/Cjudelv4"], ["https://tec.openplanner.team/stops/N536afb", "https://tec.openplanner.team/stops/N536aqa"], ["https://tec.openplanner.team/stops/N555aca", "https://tec.openplanner.team/stops/N573aba"], ["https://tec.openplanner.team/stops/Lccuner1", "https://tec.openplanner.team/stops/LRArami2"], ["https://tec.openplanner.team/stops/H5bl117b", "https://tec.openplanner.team/stops/H5qu182b"], ["https://tec.openplanner.team/stops/Lbrmc--2", "https://tec.openplanner.team/stops/Lbrptbr2"], ["https://tec.openplanner.team/stops/Bblague1", "https://tec.openplanner.team/stops/Bblasse1"], ["https://tec.openplanner.team/stops/X615akb", "https://tec.openplanner.team/stops/X615bia"], ["https://tec.openplanner.team/stops/H2sv214a", "https://tec.openplanner.team/stops/H2sv214b"], ["https://tec.openplanner.team/stops/H2lh125b", "https://tec.openplanner.team/stops/H2lh131b"], ["https://tec.openplanner.team/stops/X619aaa", "https://tec.openplanner.team/stops/X619aab"], ["https://tec.openplanner.team/stops/X999apa", "https://tec.openplanner.team/stops/X999apb"], ["https://tec.openplanner.team/stops/LTPbode1", "https://tec.openplanner.team/stops/LTPreco2"], ["https://tec.openplanner.team/stops/Bchadpt1", "https://tec.openplanner.team/stops/Bchamco2"], ["https://tec.openplanner.team/stops/Cmcceta1", "https://tec.openplanner.team/stops/Cmcegli3"], ["https://tec.openplanner.team/stops/X641asa", "https://tec.openplanner.team/stops/X823aab"], ["https://tec.openplanner.team/stops/X804ata", "https://tec.openplanner.team/stops/X804awa"], ["https://tec.openplanner.team/stops/Llgcamp1", "https://tec.openplanner.team/stops/Llgelis1"], ["https://tec.openplanner.team/stops/H1br120a", "https://tec.openplanner.team/stops/H1br125b"], ["https://tec.openplanner.team/stops/H2hg145b", "https://tec.openplanner.team/stops/H2hg265b"], ["https://tec.openplanner.team/stops/LRRbuta1", "https://tec.openplanner.team/stops/LRRbuta2"], ["https://tec.openplanner.team/stops/LWAcham1", "https://tec.openplanner.team/stops/LWAvisi2"], ["https://tec.openplanner.team/stops/Lfhncha1", "https://tec.openplanner.team/stops/Lfhncha2"], ["https://tec.openplanner.team/stops/LSTchat1", "https://tec.openplanner.team/stops/LSTchef1"], ["https://tec.openplanner.team/stops/H5ma185a", "https://tec.openplanner.team/stops/H5ma186b"], ["https://tec.openplanner.team/stops/N127aeb", "https://tec.openplanner.team/stops/N127aja"], ["https://tec.openplanner.team/stops/LSssurl1", "https://tec.openplanner.team/stops/N506bqa"], ["https://tec.openplanner.team/stops/X902awa", "https://tec.openplanner.team/stops/X902axa"], ["https://tec.openplanner.team/stops/LrDkirc1", "https://tec.openplanner.team/stops/LrDkirc2"], ["https://tec.openplanner.team/stops/X637acb", "https://tec.openplanner.team/stops/X637ala"], ["https://tec.openplanner.team/stops/Lhefoot2", "https://tec.openplanner.team/stops/Lhr4ave2"], ["https://tec.openplanner.team/stops/X760acb", "https://tec.openplanner.team/stops/X760aea"], ["https://tec.openplanner.team/stops/LLNcime2", "https://tec.openplanner.team/stops/LLNcruc2"], ["https://tec.openplanner.team/stops/X850aea", "https://tec.openplanner.team/stops/X850alb"], ["https://tec.openplanner.team/stops/LOtthie1", "https://tec.openplanner.team/stops/LOtthie2"], ["https://tec.openplanner.team/stops/Csobail1", "https://tec.openplanner.team/stops/Csograf1"], ["https://tec.openplanner.team/stops/Caigibe1", "https://tec.openplanner.team/stops/Caigibe2"], ["https://tec.openplanner.team/stops/X650aja", "https://tec.openplanner.team/stops/X650amb"], ["https://tec.openplanner.team/stops/X750afb", "https://tec.openplanner.team/stops/X750aia"], ["https://tec.openplanner.team/stops/LJSeg--1", "https://tec.openplanner.team/stops/LTHcime2"], ["https://tec.openplanner.team/stops/H1br132b", "https://tec.openplanner.team/stops/H2ma264a"], ["https://tec.openplanner.team/stops/X949afa", "https://tec.openplanner.team/stops/X949aja"], ["https://tec.openplanner.team/stops/Cldvign2", "https://tec.openplanner.team/stops/CMleer2"], ["https://tec.openplanner.team/stops/X396ada", "https://tec.openplanner.team/stops/X919ama"], ["https://tec.openplanner.team/stops/LARauto2", "https://tec.openplanner.team/stops/LARauto4"], ["https://tec.openplanner.team/stops/NL76ama", "https://tec.openplanner.team/stops/NL76aqa"], ["https://tec.openplanner.team/stops/LVlleme1", "https://tec.openplanner.team/stops/LVlleme3"], ["https://tec.openplanner.team/stops/H1ne143b", "https://tec.openplanner.team/stops/H1ne147a"], ["https://tec.openplanner.team/stops/Bbeacha1", "https://tec.openplanner.team/stops/Bbeacha2"], ["https://tec.openplanner.team/stops/LATphar2", "https://tec.openplanner.team/stops/LVNbale1"], ["https://tec.openplanner.team/stops/LBUvall2", "https://tec.openplanner.team/stops/LLtrout2"], ["https://tec.openplanner.team/stops/H4mx119a", "https://tec.openplanner.team/stops/H4ve131a"], ["https://tec.openplanner.team/stops/N116aba", "https://tec.openplanner.team/stops/N116aca"], ["https://tec.openplanner.team/stops/N106aqb", "https://tec.openplanner.team/stops/N106arb"], ["https://tec.openplanner.team/stops/Bmrscol1", "https://tec.openplanner.team/stops/Bmrscsp1"], ["https://tec.openplanner.team/stops/LFArela2", "https://tec.openplanner.team/stops/LFArela3"], ["https://tec.openplanner.team/stops/LHrkin-1", "https://tec.openplanner.team/stops/LREprea2"], ["https://tec.openplanner.team/stops/Cbfegch2", "https://tec.openplanner.team/stops/Cbfplch1"], ["https://tec.openplanner.team/stops/LSPclai1", "https://tec.openplanner.team/stops/LSPvigi2"], ["https://tec.openplanner.team/stops/Lanschu1", "https://tec.openplanner.team/stops/Lanstat1"], ["https://tec.openplanner.team/stops/N122afb", "https://tec.openplanner.team/stops/N304abb"], ["https://tec.openplanner.team/stops/LESgare1", "https://tec.openplanner.team/stops/LESlieg1"], ["https://tec.openplanner.team/stops/N352aea", "https://tec.openplanner.team/stops/N352aeb"], ["https://tec.openplanner.team/stops/Bpthcai1", "https://tec.openplanner.team/stops/Bpthcgo1"], ["https://tec.openplanner.team/stops/X837abb", "https://tec.openplanner.team/stops/X837acb"], ["https://tec.openplanner.team/stops/Bsompri1", "https://tec.openplanner.team/stops/N584awb"], ["https://tec.openplanner.team/stops/N554afa", "https://tec.openplanner.team/stops/N554aha"], ["https://tec.openplanner.team/stops/N506awa", "https://tec.openplanner.team/stops/N506bab"], ["https://tec.openplanner.team/stops/H4fr141a", "https://tec.openplanner.team/stops/H4te254b"], ["https://tec.openplanner.team/stops/N203aaa", "https://tec.openplanner.team/stops/N203aab"], ["https://tec.openplanner.team/stops/N549aaa", "https://tec.openplanner.team/stops/N578acb"], ["https://tec.openplanner.team/stops/H1sb144a", "https://tec.openplanner.team/stops/H1sb145b"], ["https://tec.openplanner.team/stops/NL68acb", "https://tec.openplanner.team/stops/NL68aea"], ["https://tec.openplanner.team/stops/X659asa", "https://tec.openplanner.team/stops/X741afa"], ["https://tec.openplanner.team/stops/Lghfore3", "https://tec.openplanner.team/stops/Lghwall1"], ["https://tec.openplanner.team/stops/LjedTEC1", "https://tec.openplanner.team/stops/Ljeespe2"], ["https://tec.openplanner.team/stops/Bbchm381", "https://tec.openplanner.team/stops/Bbchm382"], ["https://tec.openplanner.team/stops/LBTchai4", "https://tec.openplanner.team/stops/LCHsaul2"], ["https://tec.openplanner.team/stops/N305aca", "https://tec.openplanner.team/stops/N305acb"], ["https://tec.openplanner.team/stops/H4hs136a", "https://tec.openplanner.team/stops/H4hs136b"], ["https://tec.openplanner.team/stops/X796ada", "https://tec.openplanner.team/stops/X796agb"], ["https://tec.openplanner.team/stops/LWAlong3", "https://tec.openplanner.team/stops/LWApr%C3%A9s3"], ["https://tec.openplanner.team/stops/H2hg149a", "https://tec.openplanner.team/stops/H2hg154c"], ["https://tec.openplanner.team/stops/X786adb", "https://tec.openplanner.team/stops/X786aja"], ["https://tec.openplanner.team/stops/LElcent1", "https://tec.openplanner.team/stops/LElverl1"], ["https://tec.openplanner.team/stops/X917aaa", "https://tec.openplanner.team/stops/X917acb"], ["https://tec.openplanner.team/stops/Bdlmegl1", "https://tec.openplanner.team/stops/Bdvmcsa1"], ["https://tec.openplanner.team/stops/N548afa", "https://tec.openplanner.team/stops/N548aya"], ["https://tec.openplanner.team/stops/H1sg146a", "https://tec.openplanner.team/stops/H1sg150c"], ["https://tec.openplanner.team/stops/Cjuphil2", "https://tec.openplanner.team/stops/Cragill2"], ["https://tec.openplanner.team/stops/LeSsaal*", "https://tec.openplanner.team/stops/X793aqa"], ["https://tec.openplanner.team/stops/X937aka", "https://tec.openplanner.team/stops/X937ala"], ["https://tec.openplanner.team/stops/H4lz118b", "https://tec.openplanner.team/stops/H4lz121d"], ["https://tec.openplanner.team/stops/X901aob", "https://tec.openplanner.team/stops/X901bpa"], ["https://tec.openplanner.team/stops/Lmnfawe2", "https://tec.openplanner.team/stops/Lmnjeha1"], ["https://tec.openplanner.team/stops/N122aaa", "https://tec.openplanner.team/stops/N122aia"], ["https://tec.openplanner.team/stops/N548agc", "https://tec.openplanner.team/stops/N548agd"], ["https://tec.openplanner.team/stops/LHMchbl1", "https://tec.openplanner.team/stops/LMNheme1"], ["https://tec.openplanner.team/stops/N167aba", "https://tec.openplanner.team/stops/N167abb"], ["https://tec.openplanner.team/stops/H3th133a", "https://tec.openplanner.team/stops/H3th133b"], ["https://tec.openplanner.team/stops/H1em104a", "https://tec.openplanner.team/stops/H1em104b"], ["https://tec.openplanner.team/stops/LPRecol1", "https://tec.openplanner.team/stops/LPRecol2"], ["https://tec.openplanner.team/stops/LCvneuf2", "https://tec.openplanner.team/stops/LCvoufn2"], ["https://tec.openplanner.team/stops/H5fl100a", "https://tec.openplanner.team/stops/H5fl103b"], ["https://tec.openplanner.team/stops/Cchsud0", "https://tec.openplanner.team/stops/Cmlvitf2"], ["https://tec.openplanner.team/stops/N501gta", "https://tec.openplanner.team/stops/N501mta"], ["https://tec.openplanner.team/stops/X872agb", "https://tec.openplanner.team/stops/X890aea"], ["https://tec.openplanner.team/stops/H1gg116a", "https://tec.openplanner.team/stops/H1ry135a"], ["https://tec.openplanner.team/stops/N553aaa", "https://tec.openplanner.team/stops/N553afa"], ["https://tec.openplanner.team/stops/N517adc", "https://tec.openplanner.team/stops/NL74ahc"], ["https://tec.openplanner.team/stops/LMoviel1", "https://tec.openplanner.team/stops/LTrrich1"], ["https://tec.openplanner.team/stops/Bbldvaa1", "https://tec.openplanner.team/stops/Bnetegl1"], ["https://tec.openplanner.team/stops/X766aca", "https://tec.openplanner.team/stops/X766ada"], ["https://tec.openplanner.team/stops/H4ty299c", "https://tec.openplanner.team/stops/H4ty299f"], ["https://tec.openplanner.team/stops/N521alb", "https://tec.openplanner.team/stops/N527aea"], ["https://tec.openplanner.team/stops/LOTjacq1", "https://tec.openplanner.team/stops/LOTmonu2"], ["https://tec.openplanner.team/stops/N352aba", "https://tec.openplanner.team/stops/N353aba"], ["https://tec.openplanner.team/stops/N244abc", "https://tec.openplanner.team/stops/N244ajb"], ["https://tec.openplanner.team/stops/H2le147a", "https://tec.openplanner.team/stops/H2le152a"], ["https://tec.openplanner.team/stops/H4ae102b", "https://tec.openplanner.team/stops/H4eh100b"], ["https://tec.openplanner.team/stops/LHAheml2", "https://tec.openplanner.team/stops/LHAleru1"], ["https://tec.openplanner.team/stops/H1gr115a", "https://tec.openplanner.team/stops/H1gr120b"], ["https://tec.openplanner.team/stops/Cssgare2", "https://tec.openplanner.team/stops/Csspn1"], ["https://tec.openplanner.team/stops/LrAverb1", "https://tec.openplanner.team/stops/LrAwald2"], ["https://tec.openplanner.team/stops/X802aib", "https://tec.openplanner.team/stops/X802aoa"], ["https://tec.openplanner.team/stops/Cctchea1", "https://tec.openplanner.team/stops/NC11ahb"], ["https://tec.openplanner.team/stops/X763ahb", "https://tec.openplanner.team/stops/X763aib"], ["https://tec.openplanner.team/stops/Lbopote2", "https://tec.openplanner.team/stops/Lsevill2"], ["https://tec.openplanner.team/stops/Lghjans2", "https://tec.openplanner.team/stops/Ljejoli1"], ["https://tec.openplanner.team/stops/H2sv219a", "https://tec.openplanner.team/stops/H2sv219b"], ["https://tec.openplanner.team/stops/N553aoa", "https://tec.openplanner.team/stops/N553aob"], ["https://tec.openplanner.team/stops/LWEbr511", "https://tec.openplanner.team/stops/LWEbruy1"], ["https://tec.openplanner.team/stops/X666acb", "https://tec.openplanner.team/stops/X666aeb"], ["https://tec.openplanner.team/stops/LRCviad1", "https://tec.openplanner.team/stops/LTPbode2"], ["https://tec.openplanner.team/stops/Llglaha2", "https://tec.openplanner.team/stops/Llglys-2"], ["https://tec.openplanner.team/stops/Btslenf1", "https://tec.openplanner.team/stops/Btslhau1"], ["https://tec.openplanner.team/stops/Cmohotv3", "https://tec.openplanner.team/stops/Cmosaba4"], ["https://tec.openplanner.team/stops/Llmbouv1", "https://tec.openplanner.team/stops/Llmdeba1"], ["https://tec.openplanner.team/stops/LLNeg--1", "https://tec.openplanner.team/stops/LPOchan2"], ["https://tec.openplanner.team/stops/LBavive1", "https://tec.openplanner.team/stops/LTAairi2"], ["https://tec.openplanner.team/stops/LBWbatt1", "https://tec.openplanner.team/stops/LDArich1"], ["https://tec.openplanner.team/stops/Bitrcro3", "https://tec.openplanner.team/stops/Bitrh%C3%BBl2"], ["https://tec.openplanner.team/stops/Bboneta1", "https://tec.openplanner.team/stops/Bgzdfpo1"], ["https://tec.openplanner.team/stops/Ccpbrun2", "https://tec.openplanner.team/stops/H2ch125a"], ["https://tec.openplanner.team/stops/Llmeg--*", "https://tec.openplanner.team/stops/LWetrib1"], ["https://tec.openplanner.team/stops/LPLg90-1", "https://tec.openplanner.team/stops/LPLruis2"], ["https://tec.openplanner.team/stops/X901beb", "https://tec.openplanner.team/stops/X901bta"], ["https://tec.openplanner.team/stops/Lhrdelv2", "https://tec.openplanner.team/stops/Lhrpont2"], ["https://tec.openplanner.team/stops/LrcarsT3", "https://tec.openplanner.team/stops/Lrchero2"], ["https://tec.openplanner.team/stops/Bsdafra2", "https://tec.openplanner.team/stops/Csdplac1"], ["https://tec.openplanner.team/stops/LAWhein1", "https://tec.openplanner.team/stops/LAWxhen1"], ["https://tec.openplanner.team/stops/H1hg180b", "https://tec.openplanner.team/stops/H1qy131b"], ["https://tec.openplanner.team/stops/LHDchar3", "https://tec.openplanner.team/stops/LJelava1"], ["https://tec.openplanner.team/stops/Cjuecho1", "https://tec.openplanner.team/stops/Cjuecho2"], ["https://tec.openplanner.team/stops/N584aja", "https://tec.openplanner.team/stops/N584ama"], ["https://tec.openplanner.team/stops/Lpeptwa1", "https://tec.openplanner.team/stops/LWecorn1"], ["https://tec.openplanner.team/stops/N501iga", "https://tec.openplanner.team/stops/N501zaa"], ["https://tec.openplanner.team/stops/LBGjacq1", "https://tec.openplanner.team/stops/LBGvill1"], ["https://tec.openplanner.team/stops/X620abb", "https://tec.openplanner.team/stops/X620ada"], ["https://tec.openplanner.team/stops/LLWchat2", "https://tec.openplanner.team/stops/LVBdela1"], ["https://tec.openplanner.team/stops/X822abb", "https://tec.openplanner.team/stops/X822apa"], ["https://tec.openplanner.team/stops/Brixres1", "https://tec.openplanner.team/stops/Brixroi2"], ["https://tec.openplanner.team/stops/Bgzddfh1", "https://tec.openplanner.team/stops/Bgzddur1"], ["https://tec.openplanner.team/stops/N301aoa", "https://tec.openplanner.team/stops/N301apa"], ["https://tec.openplanner.team/stops/N232abb", "https://tec.openplanner.team/stops/N232bqa"], ["https://tec.openplanner.team/stops/X307aca", "https://tec.openplanner.team/stops/X307ada"], ["https://tec.openplanner.team/stops/Bwatb4s1", "https://tec.openplanner.team/stops/Bwatgib2"], ["https://tec.openplanner.team/stops/Cgygazo2", "https://tec.openplanner.team/stops/Cgygazo8"], ["https://tec.openplanner.team/stops/X609acb", "https://tec.openplanner.team/stops/X609ana"], ["https://tec.openplanner.team/stops/LHAstal2", "https://tec.openplanner.team/stops/Lviweri2"], ["https://tec.openplanner.team/stops/LAMjeha1", "https://tec.openplanner.team/stops/LAMrich1"], ["https://tec.openplanner.team/stops/LTNcarr1", "https://tec.openplanner.team/stops/LTNcarr4"], ["https://tec.openplanner.team/stops/N120ama", "https://tec.openplanner.team/stops/N120ana"], ["https://tec.openplanner.team/stops/Bbiecoc1", "https://tec.openplanner.team/stops/Bbsgbos3"], ["https://tec.openplanner.team/stops/LKmmelo2", "https://tec.openplanner.team/stops/LMOfrel2"], ["https://tec.openplanner.team/stops/X818aaa", "https://tec.openplanner.team/stops/X818aab"], ["https://tec.openplanner.team/stops/N118aba", "https://tec.openplanner.team/stops/N118abb"], ["https://tec.openplanner.team/stops/X670ama", "https://tec.openplanner.team/stops/X670anb"], ["https://tec.openplanner.team/stops/Bgligra2", "https://tec.openplanner.team/stops/Btlbtbe3"], ["https://tec.openplanner.team/stops/LLmwaut2", "https://tec.openplanner.team/stops/LRemorr1"], ["https://tec.openplanner.team/stops/LCPbatt2", "https://tec.openplanner.team/stops/LCTpt--2"], ["https://tec.openplanner.team/stops/Cmmadma1", "https://tec.openplanner.team/stops/Cmmadma2"], ["https://tec.openplanner.team/stops/X825aea", "https://tec.openplanner.team/stops/X826aca"], ["https://tec.openplanner.team/stops/LBGroma2", "https://tec.openplanner.team/stops/LLnpomp2"], ["https://tec.openplanner.team/stops/Clbentr2", "https://tec.openplanner.team/stops/H1bi103b"], ["https://tec.openplanner.team/stops/X641afd", "https://tec.openplanner.team/stops/X641aob"], ["https://tec.openplanner.team/stops/H3go101b", "https://tec.openplanner.team/stops/H3lr107a"], ["https://tec.openplanner.team/stops/LWaruth2", "https://tec.openplanner.team/stops/LwYsarl2"], ["https://tec.openplanner.team/stops/Cdadest1", "https://tec.openplanner.team/stops/Cdadest2"], ["https://tec.openplanner.team/stops/Cmlcaya1", "https://tec.openplanner.team/stops/Cmlhaie1"], ["https://tec.openplanner.team/stops/LNAbass1", "https://tec.openplanner.team/stops/LNAbouh2"], ["https://tec.openplanner.team/stops/X660aba", "https://tec.openplanner.team/stops/X672acb"], ["https://tec.openplanner.team/stops/Bsambra2", "https://tec.openplanner.team/stops/Bsammon3"], ["https://tec.openplanner.team/stops/H4ty354a", "https://tec.openplanner.team/stops/H4ty360a"], ["https://tec.openplanner.team/stops/X921aqb", "https://tec.openplanner.team/stops/X925aea"], ["https://tec.openplanner.team/stops/X595aaa", "https://tec.openplanner.team/stops/X595aab"], ["https://tec.openplanner.team/stops/LACeg--1", "https://tec.openplanner.team/stops/NL74aea"], ["https://tec.openplanner.team/stops/X903acb", "https://tec.openplanner.team/stops/X903adb"], ["https://tec.openplanner.team/stops/N512agc", "https://tec.openplanner.team/stops/NL57aea"], ["https://tec.openplanner.team/stops/Cwgcroi2", "https://tec.openplanner.team/stops/Cwgpatr2"], ["https://tec.openplanner.team/stops/N302aea", "https://tec.openplanner.team/stops/N302aeb"], ["https://tec.openplanner.team/stops/Csylaha2", "https://tec.openplanner.team/stops/Csystan2"], ["https://tec.openplanner.team/stops/N117aob", "https://tec.openplanner.team/stops/N117aoc"], ["https://tec.openplanner.team/stops/Lhrherm2", "https://tec.openplanner.team/stops/Lmirca-2"], ["https://tec.openplanner.team/stops/X662aeb", "https://tec.openplanner.team/stops/X662arb"], ["https://tec.openplanner.team/stops/X361aba", "https://tec.openplanner.team/stops/X371aja"], ["https://tec.openplanner.team/stops/H1do119a", "https://tec.openplanner.team/stops/H1do119b"], ["https://tec.openplanner.team/stops/Cbmpopr1", "https://tec.openplanner.team/stops/Csschat1"], ["https://tec.openplanner.team/stops/N501eea", "https://tec.openplanner.team/stops/N501eeb"], ["https://tec.openplanner.team/stops/H1th182a", "https://tec.openplanner.team/stops/H2na131b"], ["https://tec.openplanner.team/stops/H1ne145a", "https://tec.openplanner.team/stops/H1ne149b"], ["https://tec.openplanner.team/stops/LeSsaal*", "https://tec.openplanner.team/stops/LlE02--1"], ["https://tec.openplanner.team/stops/H3bi115b", "https://tec.openplanner.team/stops/H3bi117a"], ["https://tec.openplanner.team/stops/H4hq129b", "https://tec.openplanner.team/stops/H4hq132b"], ["https://tec.openplanner.team/stops/X670acb", "https://tec.openplanner.team/stops/X670aka"], ["https://tec.openplanner.team/stops/LHTptha4", "https://tec.openplanner.team/stops/LVIvert2"], ["https://tec.openplanner.team/stops/X738adb", "https://tec.openplanner.team/stops/X754amb"], ["https://tec.openplanner.team/stops/X717aea", "https://tec.openplanner.team/stops/X717aia"], ["https://tec.openplanner.team/stops/LCLgend2", "https://tec.openplanner.team/stops/NL35adc"], ["https://tec.openplanner.team/stops/H1gy114b", "https://tec.openplanner.team/stops/H1gy116a"], ["https://tec.openplanner.team/stops/H4mb205a", "https://tec.openplanner.team/stops/H4mb205b"], ["https://tec.openplanner.team/stops/Crodebr1", "https://tec.openplanner.team/stops/Crodebr2"], ["https://tec.openplanner.team/stops/Lanyser1", "https://tec.openplanner.team/stops/Lanyser2"], ["https://tec.openplanner.team/stops/LMNpann1", "https://tec.openplanner.team/stops/LMNpann2"], ["https://tec.openplanner.team/stops/N122afa", "https://tec.openplanner.team/stops/N122aga"], ["https://tec.openplanner.team/stops/N529abd", "https://tec.openplanner.team/stops/N529ahb"], ["https://tec.openplanner.team/stops/Cna4che2", "https://tec.openplanner.team/stops/Cnawari2"], ["https://tec.openplanner.team/stops/N569aca", "https://tec.openplanner.team/stops/N569aea"], ["https://tec.openplanner.team/stops/Bbcoroy1", "https://tec.openplanner.team/stops/Bhen5ma1"], ["https://tec.openplanner.team/stops/Bbsicea2", "https://tec.openplanner.team/stops/Bbsivil1"], ["https://tec.openplanner.team/stops/Cstcent2", "https://tec.openplanner.team/stops/Cstvape1"], ["https://tec.openplanner.team/stops/Brebblo1", "https://tec.openplanner.team/stops/Brebchb2"], ["https://tec.openplanner.team/stops/H4ft134b", "https://tec.openplanner.team/stops/H4rm108a"], ["https://tec.openplanner.team/stops/N501mxa", "https://tec.openplanner.team/stops/N527afb"], ["https://tec.openplanner.team/stops/LAUmerc1", "https://tec.openplanner.team/stops/LHMa2321"], ["https://tec.openplanner.team/stops/X910agb", "https://tec.openplanner.team/stops/X910ahb"], ["https://tec.openplanner.team/stops/H4le128a", "https://tec.openplanner.team/stops/H4ry130a"], ["https://tec.openplanner.team/stops/LLUdoya1", "https://tec.openplanner.team/stops/LLUvent5"], ["https://tec.openplanner.team/stops/N551aga", "https://tec.openplanner.team/stops/N568acb"], ["https://tec.openplanner.team/stops/LhSbruc1", "https://tec.openplanner.team/stops/LhSkirc1"], ["https://tec.openplanner.team/stops/N201aee", "https://tec.openplanner.team/stops/N201ata"], ["https://tec.openplanner.team/stops/LbThau11", "https://tec.openplanner.team/stops/LmR50--2"], ["https://tec.openplanner.team/stops/H4by117a", "https://tec.openplanner.team/stops/H4by119b"], ["https://tec.openplanner.team/stops/X224aab", "https://tec.openplanner.team/stops/X224abb"], ["https://tec.openplanner.team/stops/LlCgren1", "https://tec.openplanner.team/stops/LrAkape1"], ["https://tec.openplanner.team/stops/Cnaplbu1", "https://tec.openplanner.team/stops/Cnaplbu2"], ["https://tec.openplanner.team/stops/H4eh100a", "https://tec.openplanner.team/stops/H4sl154a"], ["https://tec.openplanner.team/stops/X664adc", "https://tec.openplanner.team/stops/X664add"], ["https://tec.openplanner.team/stops/H1ho132a", "https://tec.openplanner.team/stops/H1ho132b"], ["https://tec.openplanner.team/stops/Cjochap2", "https://tec.openplanner.team/stops/NC02abb"], ["https://tec.openplanner.team/stops/LoUzent1", "https://tec.openplanner.team/stops/X769arb"], ["https://tec.openplanner.team/stops/X902afc", "https://tec.openplanner.team/stops/X902afd"], ["https://tec.openplanner.team/stops/LJA65h-1", "https://tec.openplanner.team/stops/LJAfawe1"], ["https://tec.openplanner.team/stops/Lmlboul2", "https://tec.openplanner.team/stops/Lmlscie2"], ["https://tec.openplanner.team/stops/H1qg138a", "https://tec.openplanner.team/stops/H1qy133b"], ["https://tec.openplanner.team/stops/H1do113a", "https://tec.openplanner.team/stops/H1do131c"], ["https://tec.openplanner.team/stops/LBSpail3", "https://tec.openplanner.team/stops/LBSvi322"], ["https://tec.openplanner.team/stops/LHecime1", "https://tec.openplanner.team/stops/Lheelva2"], ["https://tec.openplanner.team/stops/LSomonu1", "https://tec.openplanner.team/stops/LSorobe1"], ["https://tec.openplanner.team/stops/LlNbusc2", "https://tec.openplanner.team/stops/LWEcomp1"], ["https://tec.openplanner.team/stops/H1ba116b", "https://tec.openplanner.team/stops/H1qu104a"], ["https://tec.openplanner.team/stops/LESslmo1", "https://tec.openplanner.team/stops/LESslmo2"], ["https://tec.openplanner.team/stops/N103abb", "https://tec.openplanner.team/stops/N103adb"], ["https://tec.openplanner.team/stops/H4ty281b", "https://tec.openplanner.team/stops/H4ty329a"], ["https://tec.openplanner.team/stops/LGMvoue2", "https://tec.openplanner.team/stops/LSEcent2"], ["https://tec.openplanner.team/stops/X636axa", "https://tec.openplanner.team/stops/X636ayb"], ["https://tec.openplanner.team/stops/X614bbb", "https://tec.openplanner.team/stops/X614bdb"], ["https://tec.openplanner.team/stops/Bptblma1", "https://tec.openplanner.team/stops/Bptbsar1"], ["https://tec.openplanner.team/stops/H1ba106b", "https://tec.openplanner.team/stops/H1ba114c"], ["https://tec.openplanner.team/stops/Landolh3", "https://tec.openplanner.team/stops/Lanmouf1"], ["https://tec.openplanner.team/stops/Bcercsa1", "https://tec.openplanner.team/stops/Bcercsa2"], ["https://tec.openplanner.team/stops/Lvc4bra1", "https://tec.openplanner.team/stops/Lvc4bra2"], ["https://tec.openplanner.team/stops/N501jrb", "https://tec.openplanner.team/stops/N501lfb"], ["https://tec.openplanner.team/stops/Cptberg1", "https://tec.openplanner.team/stops/Cptberg2"], ["https://tec.openplanner.team/stops/Clvimtr1", "https://tec.openplanner.team/stops/Clvimtr2"], ["https://tec.openplanner.team/stops/H5rx100b", "https://tec.openplanner.team/stops/H5rx102a"], ["https://tec.openplanner.team/stops/X396aab", "https://tec.openplanner.team/stops/X922aaa"], ["https://tec.openplanner.team/stops/Ctmmonu1", "https://tec.openplanner.team/stops/Ctmmonu2"], ["https://tec.openplanner.team/stops/Bbghepi1", "https://tec.openplanner.team/stops/Bsteegl1"], ["https://tec.openplanner.team/stops/X605aea", "https://tec.openplanner.team/stops/X605aeb"], ["https://tec.openplanner.team/stops/H1er109a", "https://tec.openplanner.team/stops/H1so142c"], ["https://tec.openplanner.team/stops/H1pa100b", "https://tec.openplanner.team/stops/H1pa118a"], ["https://tec.openplanner.team/stops/LBVzand1", "https://tec.openplanner.team/stops/LBVzand2"], ["https://tec.openplanner.team/stops/N222aea", "https://tec.openplanner.team/stops/X222azb"], ["https://tec.openplanner.team/stops/Bsamc7d1", "https://tec.openplanner.team/stops/Bsamc7d2"], ["https://tec.openplanner.team/stops/Laghetr1", "https://tec.openplanner.team/stops/Laghetr2"], ["https://tec.openplanner.team/stops/LHCmais1", "https://tec.openplanner.team/stops/LWEmito1"], ["https://tec.openplanner.team/stops/Cfccol2", "https://tec.openplanner.team/stops/Cfcgrat1"], ["https://tec.openplanner.team/stops/Cfojoli2", "https://tec.openplanner.team/stops/Cptberg1"], ["https://tec.openplanner.team/stops/LBEchan1", "https://tec.openplanner.team/stops/LBEcroi2"], ["https://tec.openplanner.team/stops/X396afa", "https://tec.openplanner.team/stops/X919amb"], ["https://tec.openplanner.team/stops/Cjucomb2", "https://tec.openplanner.team/stops/Clomakr1"], ["https://tec.openplanner.team/stops/H1hv135b", "https://tec.openplanner.team/stops/H1hv136a"], ["https://tec.openplanner.team/stops/H2mo145b", "https://tec.openplanner.team/stops/H2mo146b"], ["https://tec.openplanner.team/stops/H2ch103c", "https://tec.openplanner.team/stops/H2ch108a"], ["https://tec.openplanner.team/stops/NC14aba", "https://tec.openplanner.team/stops/NC44aba"], ["https://tec.openplanner.team/stops/H4fr145b", "https://tec.openplanner.team/stops/H4rc234a"], ["https://tec.openplanner.team/stops/LBhsign2", "https://tec.openplanner.team/stops/LtEnach1"], ["https://tec.openplanner.team/stops/Btsleco2", "https://tec.openplanner.team/stops/Btslnil2"], ["https://tec.openplanner.team/stops/LSPdesc2", "https://tec.openplanner.team/stops/LSPhapa1"], ["https://tec.openplanner.team/stops/N528atb", "https://tec.openplanner.team/stops/N542aqb"], ["https://tec.openplanner.team/stops/LBHinva1", "https://tec.openplanner.team/stops/LBHinva2"], ["https://tec.openplanner.team/stops/Bblapje1", "https://tec.openplanner.team/stops/Bblapje2"], ["https://tec.openplanner.team/stops/H5bl121a", "https://tec.openplanner.team/stops/H5bl124a"], ["https://tec.openplanner.team/stops/H1lb134a", "https://tec.openplanner.team/stops/H1lb153b"], ["https://tec.openplanner.team/stops/N537akb", "https://tec.openplanner.team/stops/N562bia"], ["https://tec.openplanner.team/stops/H4rs117b", "https://tec.openplanner.team/stops/H4rs119b"], ["https://tec.openplanner.team/stops/Lhr3jui2", "https://tec.openplanner.team/stops/Lhrferr2"], ["https://tec.openplanner.team/stops/X801aqb", "https://tec.openplanner.team/stops/X801bdd"], ["https://tec.openplanner.team/stops/N117ajb", "https://tec.openplanner.team/stops/N117bba"], ["https://tec.openplanner.team/stops/H1bn148b", "https://tec.openplanner.team/stops/H1qp150b"], ["https://tec.openplanner.team/stops/Cchprun1", "https://tec.openplanner.team/stops/Cchtiro3"], ["https://tec.openplanner.team/stops/Bzlufbo1", "https://tec.openplanner.team/stops/Bzlufbo2"], ["https://tec.openplanner.team/stops/LJAdeho3", "https://tec.openplanner.team/stops/LJAdeho4"], ["https://tec.openplanner.team/stops/X902aaa", "https://tec.openplanner.team/stops/X902aoa"], ["https://tec.openplanner.team/stops/H1wi150b", "https://tec.openplanner.team/stops/H1wi155b"], ["https://tec.openplanner.team/stops/X831aea", "https://tec.openplanner.team/stops/X831aeb"], ["https://tec.openplanner.team/stops/X899acb", "https://tec.openplanner.team/stops/X899adb"], ["https://tec.openplanner.team/stops/LrDhind2", "https://tec.openplanner.team/stops/LrDrose4"], ["https://tec.openplanner.team/stops/N106ala", "https://tec.openplanner.team/stops/N106anb"], ["https://tec.openplanner.team/stops/Btilmar1", "https://tec.openplanner.team/stops/Btilsnc1"], ["https://tec.openplanner.team/stops/LGLcour4", "https://tec.openplanner.team/stops/LGLecol1"], ["https://tec.openplanner.team/stops/Lhrbell1", "https://tec.openplanner.team/stops/Lhrpost1"], ["https://tec.openplanner.team/stops/Blascim1", "https://tec.openplanner.team/stops/Blasvil1"], ["https://tec.openplanner.team/stops/H1er110b", "https://tec.openplanner.team/stops/H1er112a"], ["https://tec.openplanner.team/stops/H2hg153b", "https://tec.openplanner.team/stops/H2hg156a"], ["https://tec.openplanner.team/stops/LFEland1", "https://tec.openplanner.team/stops/LMYvill1"], ["https://tec.openplanner.team/stops/Bgemga10", "https://tec.openplanner.team/stops/N522bvd"], ["https://tec.openplanner.team/stops/N390aab", "https://tec.openplanner.team/stops/N390adb"], ["https://tec.openplanner.team/stops/Bblafrn1", "https://tec.openplanner.team/stops/Bblasse1"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/Crcrlf2"], ["https://tec.openplanner.team/stops/X908afb", "https://tec.openplanner.team/stops/X908ala"], ["https://tec.openplanner.team/stops/X764aca", "https://tec.openplanner.team/stops/X764aga"], ["https://tec.openplanner.team/stops/Ccoh1211", "https://tec.openplanner.team/stops/Crodrai1"], ["https://tec.openplanner.team/stops/Ccychba1", "https://tec.openplanner.team/stops/Crbrgar1"], ["https://tec.openplanner.team/stops/H2ll195a", "https://tec.openplanner.team/stops/H2ll195b"], ["https://tec.openplanner.team/stops/H4bi156b", "https://tec.openplanner.team/stops/H4eg106b"], ["https://tec.openplanner.team/stops/X937aia", "https://tec.openplanner.team/stops/X937ajb"], ["https://tec.openplanner.team/stops/X611ada", "https://tec.openplanner.team/stops/X611aea"], ["https://tec.openplanner.team/stops/LaAbush*", "https://tec.openplanner.team/stops/LVAbuss1"], ["https://tec.openplanner.team/stops/LWieg--*", "https://tec.openplanner.team/stops/LXhmara1"], ["https://tec.openplanner.team/stops/LBAfort2", "https://tec.openplanner.team/stops/LBAtign2"], ["https://tec.openplanner.team/stops/X983aea", "https://tec.openplanner.team/stops/X983aeb"], ["https://tec.openplanner.team/stops/H1wa162a", "https://tec.openplanner.team/stops/H1wa162b"], ["https://tec.openplanner.team/stops/N214adb", "https://tec.openplanner.team/stops/N214afb"], ["https://tec.openplanner.team/stops/X744aaa", "https://tec.openplanner.team/stops/X744abb"], ["https://tec.openplanner.team/stops/Lhemilm1", "https://tec.openplanner.team/stops/Lhepaqu2"], ["https://tec.openplanner.team/stops/LRmkast*", "https://tec.openplanner.team/stops/LSInd--2"], ["https://tec.openplanner.team/stops/H1fr111a", "https://tec.openplanner.team/stops/H1fr127a"], ["https://tec.openplanner.team/stops/H1hc127a", "https://tec.openplanner.team/stops/H1hc127d"], ["https://tec.openplanner.team/stops/LBAcent2", "https://tec.openplanner.team/stops/LBApak2*"], ["https://tec.openplanner.team/stops/X791abb", "https://tec.openplanner.team/stops/X791aca"], ["https://tec.openplanner.team/stops/N543cbb", "https://tec.openplanner.team/stops/N543cfa"], ["https://tec.openplanner.team/stops/H4ht173a", "https://tec.openplanner.team/stops/H4te261a"], ["https://tec.openplanner.team/stops/Blincal2", "https://tec.openplanner.team/stops/Bolgfon2"], ["https://tec.openplanner.team/stops/Cgzclef2", "https://tec.openplanner.team/stops/Cgzha621"], ["https://tec.openplanner.team/stops/N139aaa", "https://tec.openplanner.team/stops/N146adb"], ["https://tec.openplanner.team/stops/LsCkirc2", "https://tec.openplanner.team/stops/LwPdorf1"], ["https://tec.openplanner.team/stops/Llmbouv2", "https://tec.openplanner.team/stops/Llmeg--2"], ["https://tec.openplanner.team/stops/H1sp356b", "https://tec.openplanner.team/stops/H1ss349b"], ["https://tec.openplanner.team/stops/Cmmmarl1", "https://tec.openplanner.team/stops/Cmmp2052"], ["https://tec.openplanner.team/stops/Cchbaza1", "https://tec.openplanner.team/stops/Cchccom1"], ["https://tec.openplanner.team/stops/H1by101b", "https://tec.openplanner.team/stops/H1by109b"], ["https://tec.openplanner.team/stops/N102aca", "https://tec.openplanner.team/stops/N103aaa"], ["https://tec.openplanner.team/stops/LScchpl1", "https://tec.openplanner.team/stops/LVTeg--2"], ["https://tec.openplanner.team/stops/H4ty295c", "https://tec.openplanner.team/stops/H4ty295d"], ["https://tec.openplanner.team/stops/Cmychap3", "https://tec.openplanner.team/stops/Cmychap4"], ["https://tec.openplanner.team/stops/Bblacim2", "https://tec.openplanner.team/stops/Bblavol2"], ["https://tec.openplanner.team/stops/LROgeuz1", "https://tec.openplanner.team/stops/LROmons1"], ["https://tec.openplanner.team/stops/LHCmais1", "https://tec.openplanner.team/stops/LHCpaci1"], ["https://tec.openplanner.team/stops/NL78aab", "https://tec.openplanner.team/stops/NL78aba"], ["https://tec.openplanner.team/stops/Bbstdpa1", "https://tec.openplanner.team/stops/Bbststa1"], ["https://tec.openplanner.team/stops/X804aob", "https://tec.openplanner.team/stops/X804brb"], ["https://tec.openplanner.team/stops/N141aja", "https://tec.openplanner.team/stops/N146abb"], ["https://tec.openplanner.team/stops/Bjodcoi2", "https://tec.openplanner.team/stops/Bjodtpo1"], ["https://tec.openplanner.team/stops/H4hu120a", "https://tec.openplanner.team/stops/H4og216b"], ["https://tec.openplanner.team/stops/NH01aka", "https://tec.openplanner.team/stops/NH01akb"], ["https://tec.openplanner.team/stops/Ccicloc1", "https://tec.openplanner.team/stops/Ccigene2"], ["https://tec.openplanner.team/stops/H4br107b", "https://tec.openplanner.team/stops/H4br111b"], ["https://tec.openplanner.team/stops/Ccoptca1", "https://tec.openplanner.team/stops/Cgosmoi2"], ["https://tec.openplanner.team/stops/N222ayb", "https://tec.openplanner.team/stops/X919ama"], ["https://tec.openplanner.team/stops/H1eu107a", "https://tec.openplanner.team/stops/H1eu107b"], ["https://tec.openplanner.team/stops/Bdlmgla4", "https://tec.openplanner.team/stops/Bwavdmo3"], ["https://tec.openplanner.team/stops/X804aga", "https://tec.openplanner.team/stops/X804bda"], ["https://tec.openplanner.team/stops/LSpfond1", "https://tec.openplanner.team/stops/LSpvanr1"], ["https://tec.openplanner.team/stops/LBaeg--1", "https://tec.openplanner.team/stops/LBajean1"], ["https://tec.openplanner.team/stops/LGepeck1", "https://tec.openplanner.team/stops/LMschap1"], ["https://tec.openplanner.team/stops/N118avd", "https://tec.openplanner.team/stops/N118bbb"], ["https://tec.openplanner.team/stops/H1me118a", "https://tec.openplanner.team/stops/H1me118b"], ["https://tec.openplanner.team/stops/N505adb", "https://tec.openplanner.team/stops/N505aea"], ["https://tec.openplanner.team/stops/N254aea", "https://tec.openplanner.team/stops/N254afb"], ["https://tec.openplanner.team/stops/Bottcli4", "https://tec.openplanner.team/stops/Bottra91"], ["https://tec.openplanner.team/stops/N135aha", "https://tec.openplanner.team/stops/N135aib"], ["https://tec.openplanner.team/stops/LCtcref1", "https://tec.openplanner.team/stops/X750bpb"], ["https://tec.openplanner.team/stops/Ljugode1", "https://tec.openplanner.team/stops/Ljuvert2"], ["https://tec.openplanner.team/stops/LJueg--1", "https://tec.openplanner.team/stops/LMolone1"], ["https://tec.openplanner.team/stops/H4mo140b", "https://tec.openplanner.team/stops/H4mo158a"], ["https://tec.openplanner.team/stops/H4fr385a", "https://tec.openplanner.team/stops/H4ka188a"], ["https://tec.openplanner.team/stops/LNCmarc1", "https://tec.openplanner.team/stops/LNCmc--1"], ["https://tec.openplanner.team/stops/X396aea", "https://tec.openplanner.team/stops/X919ama"], ["https://tec.openplanner.team/stops/N230aja", "https://tec.openplanner.team/stops/N230ajb"], ["https://tec.openplanner.team/stops/H1hw121b", "https://tec.openplanner.team/stops/H1hw123a"], ["https://tec.openplanner.team/stops/Bhvltol1", "https://tec.openplanner.team/stops/Bmsgpfo2"], ["https://tec.openplanner.team/stops/H1bo102a", "https://tec.openplanner.team/stops/H1te178b"], ["https://tec.openplanner.team/stops/Cfarcam1", "https://tec.openplanner.team/stops/Cfastan2"], ["https://tec.openplanner.team/stops/LeUkehr1", "https://tec.openplanner.team/stops/LeUkehr4"], ["https://tec.openplanner.team/stops/H4ma398a", "https://tec.openplanner.team/stops/H4ma419a"], ["https://tec.openplanner.team/stops/Bnivchh1", "https://tec.openplanner.team/stops/Bnivspi2"], ["https://tec.openplanner.team/stops/N301amb", "https://tec.openplanner.team/stops/N301ana"], ["https://tec.openplanner.team/stops/H1ob341a", "https://tec.openplanner.team/stops/H1ob341b"], ["https://tec.openplanner.team/stops/LESevie1", "https://tec.openplanner.team/stops/LFNhame1"], ["https://tec.openplanner.team/stops/X946afa", "https://tec.openplanner.team/stops/X946aga"], ["https://tec.openplanner.team/stops/Baudsju1", "https://tec.openplanner.team/stops/Bwolrod1"], ["https://tec.openplanner.team/stops/N222aab", "https://tec.openplanner.team/stops/X222alb"], ["https://tec.openplanner.team/stops/Bllnfle1", "https://tec.openplanner.team/stops/Bllnjpa1"], ["https://tec.openplanner.team/stops/X674aaa", "https://tec.openplanner.team/stops/X674aab"], ["https://tec.openplanner.team/stops/X784aca", "https://tec.openplanner.team/stops/X784ada"], ["https://tec.openplanner.team/stops/H4ve134b", "https://tec.openplanner.team/stops/H4ve136b"], ["https://tec.openplanner.team/stops/Lpegiet1", "https://tec.openplanner.team/stops/Lpevove2"], ["https://tec.openplanner.team/stops/H5qu143a", "https://tec.openplanner.team/stops/H5qu156d"], ["https://tec.openplanner.team/stops/X889abb", "https://tec.openplanner.team/stops/X889acb"], ["https://tec.openplanner.team/stops/LLTcent1", "https://tec.openplanner.team/stops/LLTeg--1"], ["https://tec.openplanner.team/stops/Cbbcent2", "https://tec.openplanner.team/stops/Cssgare1"], ["https://tec.openplanner.team/stops/X613aab", "https://tec.openplanner.team/stops/X613abb"], ["https://tec.openplanner.team/stops/N506ajb", "https://tec.openplanner.team/stops/N506asb"], ["https://tec.openplanner.team/stops/LLmwaut1", "https://tec.openplanner.team/stops/LLmwaut2"], ["https://tec.openplanner.team/stops/N501geb", "https://tec.openplanner.team/stops/N501hkb"], ["https://tec.openplanner.team/stops/H1mr124b", "https://tec.openplanner.team/stops/H1mr126a"], ["https://tec.openplanner.team/stops/N211aea", "https://tec.openplanner.team/stops/N211afa"], ["https://tec.openplanner.team/stops/X993aaa", "https://tec.openplanner.team/stops/X993abc"], ["https://tec.openplanner.team/stops/H4ir162a", "https://tec.openplanner.team/stops/H5at141b"], ["https://tec.openplanner.team/stops/Bovecha1", "https://tec.openplanner.team/stops/Bovetdo1"], ["https://tec.openplanner.team/stops/N501cnb", "https://tec.openplanner.team/stops/N501csb"], ["https://tec.openplanner.team/stops/H1br127b", "https://tec.openplanner.team/stops/H1vs144a"], ["https://tec.openplanner.team/stops/LSubass2", "https://tec.openplanner.team/stops/LSuusin1"], ["https://tec.openplanner.team/stops/H2an103a", "https://tec.openplanner.team/stops/H2ca102a"], ["https://tec.openplanner.team/stops/N349acb", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/Cgxchea2", "https://tec.openplanner.team/stops/Cgxdeba1"], ["https://tec.openplanner.team/stops/N423aab", "https://tec.openplanner.team/stops/N423afa"], ["https://tec.openplanner.team/stops/X685aib", "https://tec.openplanner.team/stops/X685ama"], ["https://tec.openplanner.team/stops/H4wa161a", "https://tec.openplanner.team/stops/H4wa161b"], ["https://tec.openplanner.team/stops/H2an110a", "https://tec.openplanner.team/stops/H2an110b"], ["https://tec.openplanner.team/stops/H4ka174a", "https://tec.openplanner.team/stops/H4ka180a"], ["https://tec.openplanner.team/stops/LRMn58-2", "https://tec.openplanner.team/stops/LSfcoll*"], ["https://tec.openplanner.team/stops/Cgocat1", "https://tec.openplanner.team/stops/Cgoetun3"], ["https://tec.openplanner.team/stops/N540aba", "https://tec.openplanner.team/stops/N540abb"], ["https://tec.openplanner.team/stops/Cfrfede1", "https://tec.openplanner.team/stops/Cfrfede2"], ["https://tec.openplanner.team/stops/LSznoel1", "https://tec.openplanner.team/stops/LSznoel2"], ["https://tec.openplanner.team/stops/Bsdecdi2", "https://tec.openplanner.team/stops/N574aeb"], ["https://tec.openplanner.team/stops/LPoewer2", "https://tec.openplanner.team/stops/LPoneuf1"], ["https://tec.openplanner.team/stops/H4gz114b", "https://tec.openplanner.team/stops/H4gz115a"], ["https://tec.openplanner.team/stops/Crcfdom1", "https://tec.openplanner.team/stops/Csspn1"], ["https://tec.openplanner.team/stops/X805ajb", "https://tec.openplanner.team/stops/X831aaa"], ["https://tec.openplanner.team/stops/Blimsob2", "https://tec.openplanner.team/stops/Blimvcg2"], ["https://tec.openplanner.team/stops/Lmopans2", "https://tec.openplanner.team/stops/Lmopans4"], ["https://tec.openplanner.team/stops/Cgoclad1", "https://tec.openplanner.team/stops/Cgoclad2"], ["https://tec.openplanner.team/stops/X758ama", "https://tec.openplanner.team/stops/X758amb"], ["https://tec.openplanner.team/stops/X908aaa", "https://tec.openplanner.team/stops/X908ada"], ["https://tec.openplanner.team/stops/Lcavign1", "https://tec.openplanner.team/stops/LNipla4"], ["https://tec.openplanner.team/stops/LGlbour2", "https://tec.openplanner.team/stops/LGlcite2"], ["https://tec.openplanner.team/stops/X359adb", "https://tec.openplanner.team/stops/X371aaa"], ["https://tec.openplanner.team/stops/X542adb", "https://tec.openplanner.team/stops/X542aea"], ["https://tec.openplanner.team/stops/Cwgmell2", "https://tec.openplanner.team/stops/Cwgmell3"], ["https://tec.openplanner.team/stops/Bpercsp1", "https://tec.openplanner.team/stops/N524ala"], ["https://tec.openplanner.team/stops/X837aec", "https://tec.openplanner.team/stops/X837ajb"], ["https://tec.openplanner.team/stops/Llgerac1", "https://tec.openplanner.team/stops/Llgfont4"], ["https://tec.openplanner.team/stops/LBYegli2", "https://tec.openplanner.team/stops/LHEelva1"], ["https://tec.openplanner.team/stops/X636aka", "https://tec.openplanner.team/stops/X636akb"], ["https://tec.openplanner.team/stops/N211apa", "https://tec.openplanner.team/stops/N211apb"], ["https://tec.openplanner.team/stops/Bjodfab1", "https://tec.openplanner.team/stops/Bjodfab2"], ["https://tec.openplanner.team/stops/N232beb", "https://tec.openplanner.team/stops/N232bvb"], ["https://tec.openplanner.team/stops/X727adb", "https://tec.openplanner.team/stops/X727aea"], ["https://tec.openplanner.team/stops/X836aaa", "https://tec.openplanner.team/stops/X836acb"], ["https://tec.openplanner.team/stops/NB33aia", "https://tec.openplanner.team/stops/NB33aja"], ["https://tec.openplanner.team/stops/N501cpa", "https://tec.openplanner.team/stops/N501kka"], ["https://tec.openplanner.team/stops/LhSbruc2", "https://tec.openplanner.team/stops/LhSgete2"], ["https://tec.openplanner.team/stops/N203abb", "https://tec.openplanner.team/stops/N560aba"], ["https://tec.openplanner.team/stops/Cjupuis2", "https://tec.openplanner.team/stops/Clolidl1"], ["https://tec.openplanner.team/stops/Bcbqcha2", "https://tec.openplanner.team/stops/Bhalcbr2"], ["https://tec.openplanner.team/stops/Lpeeg--1", "https://tec.openplanner.team/stops/Lpemata2"], ["https://tec.openplanner.team/stops/H4bh100a", "https://tec.openplanner.team/stops/H4bh101b"], ["https://tec.openplanner.team/stops/Csuptou1", "https://tec.openplanner.team/stops/Csuptou2"], ["https://tec.openplanner.team/stops/N343aba", "https://tec.openplanner.team/stops/X343ahb"], ["https://tec.openplanner.team/stops/N139aca", "https://tec.openplanner.team/stops/N139adb"], ["https://tec.openplanner.team/stops/LWepost2", "https://tec.openplanner.team/stops/LWexhav1"], ["https://tec.openplanner.team/stops/Cciecol2", "https://tec.openplanner.team/stops/NC02aua"], ["https://tec.openplanner.team/stops/Csufrom5", "https://tec.openplanner.team/stops/Csufrom6"], ["https://tec.openplanner.team/stops/LhIfrie2", "https://tec.openplanner.team/stops/LrDzoll3"], ["https://tec.openplanner.team/stops/H1te188a", "https://tec.openplanner.team/stops/H1te188b"], ["https://tec.openplanner.team/stops/X733aha", "https://tec.openplanner.team/stops/X733aia"], ["https://tec.openplanner.team/stops/X670aqb", "https://tec.openplanner.team/stops/X671aaa"], ["https://tec.openplanner.team/stops/LMOm48-1", "https://tec.openplanner.team/stops/LMOm64-1"], ["https://tec.openplanner.team/stops/X662afa", "https://tec.openplanner.team/stops/X662ana"], ["https://tec.openplanner.team/stops/Lmlmich1", "https://tec.openplanner.team/stops/Lmlmich2"], ["https://tec.openplanner.team/stops/N894acb", "https://tec.openplanner.team/stops/X887aaa"], ["https://tec.openplanner.team/stops/Lhrpont1", "https://tec.openplanner.team/stops/Lhrwigi2"], ["https://tec.openplanner.team/stops/LNIec--1", "https://tec.openplanner.team/stops/LNIhaut1"], ["https://tec.openplanner.team/stops/N340aba", "https://tec.openplanner.team/stops/N340acb"], ["https://tec.openplanner.team/stops/X823afd", "https://tec.openplanner.team/stops/X825aab"], ["https://tec.openplanner.team/stops/Becepon2", "https://tec.openplanner.team/stops/H2ec112a"], ["https://tec.openplanner.team/stops/Bspkker1", "https://tec.openplanner.team/stops/Bspkkhe2"], ["https://tec.openplanner.team/stops/Lrcauto1", "https://tec.openplanner.team/stops/Lrcstad1"], ["https://tec.openplanner.team/stops/Ctachst2", "https://tec.openplanner.team/stops/N543bqa"], ["https://tec.openplanner.team/stops/Cjupui02", "https://tec.openplanner.team/stops/Cjurogi1"], ["https://tec.openplanner.team/stops/Caimeno4", "https://tec.openplanner.team/stops/Crsaise1"], ["https://tec.openplanner.team/stops/Llgbour2", "https://tec.openplanner.team/stops/Lsccime2"], ["https://tec.openplanner.team/stops/X609aoa", "https://tec.openplanner.team/stops/X631acb"], ["https://tec.openplanner.team/stops/H4ty272b", "https://tec.openplanner.team/stops/H4ty306a"], ["https://tec.openplanner.team/stops/X754aga", "https://tec.openplanner.team/stops/X754amb"], ["https://tec.openplanner.team/stops/H1vb141a", "https://tec.openplanner.team/stops/H1vb148a"], ["https://tec.openplanner.team/stops/LCEcent1", "https://tec.openplanner.team/stops/LCEeg--1"], ["https://tec.openplanner.team/stops/H2sv213a", "https://tec.openplanner.team/stops/H2sv215a"], ["https://tec.openplanner.team/stops/N522aea", "https://tec.openplanner.team/stops/N522apb"], ["https://tec.openplanner.team/stops/Cslegli1", "https://tec.openplanner.team/stops/Cvtmaro2"], ["https://tec.openplanner.team/stops/Lalmakr1", "https://tec.openplanner.team/stops/Lanplat2"], ["https://tec.openplanner.team/stops/Llgcour2", "https://tec.openplanner.team/stops/Llgpitt1"], ["https://tec.openplanner.team/stops/H4cp103b", "https://tec.openplanner.team/stops/H4li178a"], ["https://tec.openplanner.team/stops/N513aha", "https://tec.openplanner.team/stops/N513awb"], ["https://tec.openplanner.team/stops/Braccen1", "https://tec.openplanner.team/stops/Braccen2"], ["https://tec.openplanner.team/stops/X908ada", "https://tec.openplanner.team/stops/X955aha"], ["https://tec.openplanner.team/stops/N120aja", "https://tec.openplanner.team/stops/N121aha"], ["https://tec.openplanner.team/stops/LAyfren1", "https://tec.openplanner.team/stops/Lflcle-5"], ["https://tec.openplanner.team/stops/H4ch120d", "https://tec.openplanner.team/stops/H4vx364c"], ["https://tec.openplanner.team/stops/Lmopota1", "https://tec.openplanner.team/stops/Lmopota2"], ["https://tec.openplanner.team/stops/LhUdenk1", "https://tec.openplanner.team/stops/LhUdenk2"], ["https://tec.openplanner.team/stops/H1bo100a", "https://tec.openplanner.team/stops/H1bo100b"], ["https://tec.openplanner.team/stops/NL77amb", "https://tec.openplanner.team/stops/NL78aha"], ["https://tec.openplanner.team/stops/H1wa142a", "https://tec.openplanner.team/stops/H1wa143a"], ["https://tec.openplanner.team/stops/H4hq131a", "https://tec.openplanner.team/stops/H4hq131b"], ["https://tec.openplanner.team/stops/N503abb", "https://tec.openplanner.team/stops/N509aja"], ["https://tec.openplanner.team/stops/LRmrode2", "https://tec.openplanner.team/stops/LTEkl162"], ["https://tec.openplanner.team/stops/LCRvert2", "https://tec.openplanner.team/stops/LKmdrie2"], ["https://tec.openplanner.team/stops/LGLdeni2", "https://tec.openplanner.team/stops/LGLecol2"], ["https://tec.openplanner.team/stops/X767aba", "https://tec.openplanner.team/stops/X767ada"], ["https://tec.openplanner.team/stops/LRRbuta2", "https://tec.openplanner.team/stops/LRRchea4"], ["https://tec.openplanner.team/stops/X630ada", "https://tec.openplanner.team/stops/X631ada"], ["https://tec.openplanner.team/stops/LBBabat2", "https://tec.openplanner.team/stops/LMnlogi1"], ["https://tec.openplanner.team/stops/N529adb", "https://tec.openplanner.team/stops/N584acb"], ["https://tec.openplanner.team/stops/LAmarbo1", "https://tec.openplanner.team/stops/LAMecse*"], ["https://tec.openplanner.team/stops/Bbchsac1", "https://tec.openplanner.team/stops/Bhtipir2"], ["https://tec.openplanner.team/stops/Csychap2", "https://tec.openplanner.team/stops/Csyjumo1"], ["https://tec.openplanner.team/stops/LHUalbe1", "https://tec.openplanner.team/stops/LHUaveu2"], ["https://tec.openplanner.team/stops/N120ala", "https://tec.openplanner.team/stops/N120amb"], ["https://tec.openplanner.team/stops/Bwaypav2", "https://tec.openplanner.team/stops/Cwsegli1"], ["https://tec.openplanner.team/stops/X359aga", "https://tec.openplanner.team/stops/X359aha"], ["https://tec.openplanner.team/stops/LCsgend2", "https://tec.openplanner.team/stops/LCsraws1"], ["https://tec.openplanner.team/stops/X649acb", "https://tec.openplanner.team/stops/X650aoa"], ["https://tec.openplanner.team/stops/H1fr125b", "https://tec.openplanner.team/stops/H1lb134b"], ["https://tec.openplanner.team/stops/N235agb", "https://tec.openplanner.team/stops/N241acb"], ["https://tec.openplanner.team/stops/Bgnttma1", "https://tec.openplanner.team/stops/Bgnttma2"], ["https://tec.openplanner.team/stops/H4be145b", "https://tec.openplanner.team/stops/H5bl144a"], ["https://tec.openplanner.team/stops/Lveabat1", "https://tec.openplanner.team/stops/Lvefluc2"], ["https://tec.openplanner.team/stops/LBJchau*", "https://tec.openplanner.team/stops/LBJplan2"], ["https://tec.openplanner.team/stops/N562akb", "https://tec.openplanner.team/stops/N562asb"], ["https://tec.openplanner.team/stops/Cfaterg6", "https://tec.openplanner.team/stops/NC23afb"], ["https://tec.openplanner.team/stops/LTHbelv2", "https://tec.openplanner.team/stops/LTHjevo1"], ["https://tec.openplanner.team/stops/LSeaque3", "https://tec.openplanner.team/stops/LVbgend1"], ["https://tec.openplanner.team/stops/Bbrycar2", "https://tec.openplanner.team/stops/Bmarcat1"], ["https://tec.openplanner.team/stops/H1pa116b", "https://tec.openplanner.team/stops/H1pa120a"], ["https://tec.openplanner.team/stops/H4lu125a", "https://tec.openplanner.team/stops/H4mo160a"], ["https://tec.openplanner.team/stops/Bhalalb2", "https://tec.openplanner.team/stops/Bhalber3"], ["https://tec.openplanner.team/stops/LJAverv1", "https://tec.openplanner.team/stops/LSUhage1"], ["https://tec.openplanner.team/stops/LStroch2", "https://tec.openplanner.team/stops/LWNberg1"], ["https://tec.openplanner.team/stops/Cauushm2", "https://tec.openplanner.team/stops/Cvsbois1"], ["https://tec.openplanner.team/stops/Cdalpla1", "https://tec.openplanner.team/stops/CMlpla2"], ["https://tec.openplanner.team/stops/H1ls108a", "https://tec.openplanner.team/stops/H1ls108b"], ["https://tec.openplanner.team/stops/Ceregl1", "https://tec.openplanner.team/stops/N103aea"], ["https://tec.openplanner.team/stops/LVIastr1", "https://tec.openplanner.team/stops/LVIsacr2"], ["https://tec.openplanner.team/stops/Bhlvlou1", "https://tec.openplanner.team/stops/Crewaba2"], ["https://tec.openplanner.team/stops/H2hl113a", "https://tec.openplanner.team/stops/H2hp121b"], ["https://tec.openplanner.team/stops/Lhrcols1", "https://tec.openplanner.team/stops/Lvtmeun1"], ["https://tec.openplanner.team/stops/X639aka", "https://tec.openplanner.team/stops/X639alb"], ["https://tec.openplanner.team/stops/Llgcrah2", "https://tec.openplanner.team/stops/LlgPRVo2"], ["https://tec.openplanner.team/stops/H1gy113a", "https://tec.openplanner.team/stops/H1og135a"], ["https://tec.openplanner.team/stops/H4al100a", "https://tec.openplanner.team/stops/H4ch115b"], ["https://tec.openplanner.team/stops/X733abb", "https://tec.openplanner.team/stops/X734aoa"], ["https://tec.openplanner.team/stops/LFLcent2", "https://tec.openplanner.team/stops/LFLgara2"], ["https://tec.openplanner.team/stops/LHHpt--2", "https://tec.openplanner.team/stops/LSkbo832"], ["https://tec.openplanner.team/stops/X790aea", "https://tec.openplanner.team/stops/X790afb"], ["https://tec.openplanner.team/stops/Lalwaro2", "https://tec.openplanner.team/stops/Llofort1"], ["https://tec.openplanner.team/stops/N584caa", "https://tec.openplanner.team/stops/N584cab"], ["https://tec.openplanner.team/stops/Bgnvpos1", "https://tec.openplanner.team/stops/Bgnvpos2"], ["https://tec.openplanner.team/stops/LHUmari1", "https://tec.openplanner.team/stops/LHUmari2"], ["https://tec.openplanner.team/stops/Cmtgrim1", "https://tec.openplanner.team/stops/Cmtyern1"], ["https://tec.openplanner.team/stops/H4ft134a", "https://tec.openplanner.team/stops/H4ma205b"], ["https://tec.openplanner.team/stops/H4tu170a", "https://tec.openplanner.team/stops/H4tu171b"], ["https://tec.openplanner.team/stops/X837ada", "https://tec.openplanner.team/stops/X837aea"], ["https://tec.openplanner.team/stops/LMOford1", "https://tec.openplanner.team/stops/LMOmome1"], ["https://tec.openplanner.team/stops/Ljeblum1", "https://tec.openplanner.team/stops/Ljeheur1"], ["https://tec.openplanner.team/stops/LNEvpn-1", "https://tec.openplanner.team/stops/LNEvpn-2"], ["https://tec.openplanner.team/stops/N310aca", "https://tec.openplanner.team/stops/N310acb"], ["https://tec.openplanner.team/stops/LOucarr2", "https://tec.openplanner.team/stops/LOunebl2"], ["https://tec.openplanner.team/stops/Caioign3", "https://tec.openplanner.team/stops/Caistro1"], ["https://tec.openplanner.team/stops/LbUvith1", "https://tec.openplanner.team/stops/LbUwhon2"], ["https://tec.openplanner.team/stops/X634aab", "https://tec.openplanner.team/stops/X634ahb"], ["https://tec.openplanner.team/stops/X608apa", "https://tec.openplanner.team/stops/X608ara"], ["https://tec.openplanner.team/stops/X717aba", "https://tec.openplanner.team/stops/X782apb"], ["https://tec.openplanner.team/stops/Cbweco2", "https://tec.openplanner.team/stops/Cbwegl2"], ["https://tec.openplanner.team/stops/X687aba", "https://tec.openplanner.team/stops/X688aab"], ["https://tec.openplanner.team/stops/H1bn114b", "https://tec.openplanner.team/stops/H1ge117a"], ["https://tec.openplanner.team/stops/H1le122d", "https://tec.openplanner.team/stops/H1le130b"], ["https://tec.openplanner.team/stops/LSOchau2", "https://tec.openplanner.team/stops/LSOgard1"], ["https://tec.openplanner.team/stops/N509awa", "https://tec.openplanner.team/stops/N509axb"], ["https://tec.openplanner.team/stops/CMparc1", "https://tec.openplanner.team/stops/NC01ahb"], ["https://tec.openplanner.team/stops/X725afc", "https://tec.openplanner.team/stops/X725afh"], ["https://tec.openplanner.team/stops/N230ada", "https://tec.openplanner.team/stops/N230ama"], ["https://tec.openplanner.team/stops/Bbsicas2", "https://tec.openplanner.team/stops/Bbsicul1"], ["https://tec.openplanner.team/stops/X940aec", "https://tec.openplanner.team/stops/X940afb"], ["https://tec.openplanner.team/stops/H2tr252b", "https://tec.openplanner.team/stops/H2tr255b"], ["https://tec.openplanner.team/stops/Bgemcha2", "https://tec.openplanner.team/stops/N522akb"], ["https://tec.openplanner.team/stops/LkAmess1", "https://tec.openplanner.team/stops/LmHdrei2"], ["https://tec.openplanner.team/stops/N545aba", "https://tec.openplanner.team/stops/N545aca"], ["https://tec.openplanner.team/stops/LETfort2", "https://tec.openplanner.team/stops/LETmagn1"], ["https://tec.openplanner.team/stops/X811apa", "https://tec.openplanner.team/stops/X811aqb"], ["https://tec.openplanner.team/stops/N522ana", "https://tec.openplanner.team/stops/N522ara"], ["https://tec.openplanner.team/stops/LWAhart1", "https://tec.openplanner.team/stops/LWAmouh1"], ["https://tec.openplanner.team/stops/H2tr248a", "https://tec.openplanner.team/stops/H2tr253a"], ["https://tec.openplanner.team/stops/H2bh105a", "https://tec.openplanner.team/stops/H2bh115a"], ["https://tec.openplanner.team/stops/Lpeathe*", "https://tec.openplanner.team/stops/Lpemata1"], ["https://tec.openplanner.team/stops/N528agb", "https://tec.openplanner.team/stops/N528aib"], ["https://tec.openplanner.team/stops/X721aia", "https://tec.openplanner.team/stops/X721aib"], ["https://tec.openplanner.team/stops/LWNwavr1", "https://tec.openplanner.team/stops/LWNwavr5"], ["https://tec.openplanner.team/stops/N206adb", "https://tec.openplanner.team/stops/N220aab"], ["https://tec.openplanner.team/stops/H4fa127b", "https://tec.openplanner.team/stops/H4ss153a"], ["https://tec.openplanner.team/stops/X624ada", "https://tec.openplanner.team/stops/X624adb"], ["https://tec.openplanner.team/stops/LHEcruc4", "https://tec.openplanner.team/stops/LHEoutr2"], ["https://tec.openplanner.team/stops/X723aga", "https://tec.openplanner.team/stops/X723aia"], ["https://tec.openplanner.team/stops/LOrpont1", "https://tec.openplanner.team/stops/LOrpont2"], ["https://tec.openplanner.team/stops/Bbosgar1", "https://tec.openplanner.team/stops/Btiegma1"], ["https://tec.openplanner.team/stops/H1qp150a", "https://tec.openplanner.team/stops/H1qp150b"], ["https://tec.openplanner.team/stops/X908aqa", "https://tec.openplanner.team/stops/X908ara"], ["https://tec.openplanner.team/stops/N576afb", "https://tec.openplanner.team/stops/N576amb"], ["https://tec.openplanner.team/stops/NL76ahb", "https://tec.openplanner.team/stops/NL76amb"], ["https://tec.openplanner.team/stops/N528ala", "https://tec.openplanner.team/stops/N551acb"], ["https://tec.openplanner.team/stops/X767abb", "https://tec.openplanner.team/stops/X767aia"], ["https://tec.openplanner.team/stops/Bincegl2", "https://tec.openplanner.team/stops/Binclib2"], ["https://tec.openplanner.team/stops/H2an102a", "https://tec.openplanner.team/stops/H2an110b"], ["https://tec.openplanner.team/stops/LTiespe4", "https://tec.openplanner.team/stops/LTiruel1"], ["https://tec.openplanner.team/stops/N308aqb", "https://tec.openplanner.team/stops/N331ajb"], ["https://tec.openplanner.team/stops/H1ob339a", "https://tec.openplanner.team/stops/H1sd366a"], ["https://tec.openplanner.team/stops/N524aba", "https://tec.openplanner.team/stops/N524ada"], ["https://tec.openplanner.team/stops/Cgzplac1", "https://tec.openplanner.team/stops/Cgzplac6"], ["https://tec.openplanner.team/stops/LFMkrut3", "https://tec.openplanner.team/stops/LFMveur1"], ["https://tec.openplanner.team/stops/X774aga", "https://tec.openplanner.team/stops/X774agb"], ["https://tec.openplanner.team/stops/H1si153b", "https://tec.openplanner.team/stops/H1si156d"], ["https://tec.openplanner.team/stops/Cgzplac3", "https://tec.openplanner.team/stops/Cgzplac4"], ["https://tec.openplanner.team/stops/Bbgerlr2", "https://tec.openplanner.team/stops/Bbgever2"], ["https://tec.openplanner.team/stops/LSogare1", "https://tec.openplanner.team/stops/LSoprom1"], ["https://tec.openplanner.team/stops/Bosqcim2", "https://tec.openplanner.team/stops/Bosqpco2"], ["https://tec.openplanner.team/stops/LHAvall2", "https://tec.openplanner.team/stops/LHTcarr1"], ["https://tec.openplanner.team/stops/Bllnjpa2", "https://tec.openplanner.team/stops/Bllnrod3"], ["https://tec.openplanner.team/stops/Lbogonh*", "https://tec.openplanner.team/stops/Lbogonh2"], ["https://tec.openplanner.team/stops/H1en103a", "https://tec.openplanner.team/stops/H1en105a"], ["https://tec.openplanner.team/stops/X982anb", "https://tec.openplanner.team/stops/X982byb"], ["https://tec.openplanner.team/stops/X940ada", "https://tec.openplanner.team/stops/X940aec"], ["https://tec.openplanner.team/stops/X947aba", "https://tec.openplanner.team/stops/X947abb"], ["https://tec.openplanner.team/stops/Bvirflu2", "https://tec.openplanner.team/stops/Bvirvol2"], ["https://tec.openplanner.team/stops/LFypfei1", "https://tec.openplanner.team/stops/LwYsarl1"], ["https://tec.openplanner.team/stops/LLzcruc1", "https://tec.openplanner.team/stops/LSTchen1"], ["https://tec.openplanner.team/stops/Ccheden1", "https://tec.openplanner.team/stops/Cchfran1"], ["https://tec.openplanner.team/stops/H1gg117a", "https://tec.openplanner.team/stops/H1gg117b"], ["https://tec.openplanner.team/stops/Ljuhava1", "https://tec.openplanner.team/stops/Ljuhava2"], ["https://tec.openplanner.team/stops/LCTcret2", "https://tec.openplanner.team/stops/LCTmonu2"], ["https://tec.openplanner.team/stops/Cchoues5", "https://tec.openplanner.team/stops/CMoues1"], ["https://tec.openplanner.team/stops/N522afa", "https://tec.openplanner.team/stops/N522aga"], ["https://tec.openplanner.team/stops/X910ahb", "https://tec.openplanner.team/stops/X910aib"], ["https://tec.openplanner.team/stops/LSPecho2", "https://tec.openplanner.team/stops/LSPgend2"], ["https://tec.openplanner.team/stops/H1er108a", "https://tec.openplanner.team/stops/H1mb125a"], ["https://tec.openplanner.team/stops/H2ch103a", "https://tec.openplanner.team/stops/H2ch103c"], ["https://tec.openplanner.team/stops/Bnivfch1", "https://tec.openplanner.team/stops/Bnivfch2"], ["https://tec.openplanner.team/stops/N565alb", "https://tec.openplanner.team/stops/N569afa"], ["https://tec.openplanner.team/stops/N501bua", "https://tec.openplanner.team/stops/N501eob"], ["https://tec.openplanner.team/stops/LDAalbe2", "https://tec.openplanner.team/stops/LTreg--1"], ["https://tec.openplanner.team/stops/LPtrefa1", "https://tec.openplanner.team/stops/LrEochs1"], ["https://tec.openplanner.team/stops/LLAchpl1", "https://tec.openplanner.team/stops/Llxcite2"], ["https://tec.openplanner.team/stops/Bsgihmo2", "https://tec.openplanner.team/stops/Bsgipmo2"], ["https://tec.openplanner.team/stops/Lhufont1", "https://tec.openplanner.team/stops/Lhuwaid2"], ["https://tec.openplanner.team/stops/Cvlbvir1", "https://tec.openplanner.team/stops/Cvlgrta2"], ["https://tec.openplanner.team/stops/LnEkirc2", "https://tec.openplanner.team/stops/LnEmett1"], ["https://tec.openplanner.team/stops/N155aia", "https://tec.openplanner.team/stops/NC14avb"], ["https://tec.openplanner.team/stops/H1pw120b", "https://tec.openplanner.team/stops/H1wa146a"], ["https://tec.openplanner.team/stops/LrAneue2", "https://tec.openplanner.team/stops/LrAneus3"], ["https://tec.openplanner.team/stops/Bottgar3", "https://tec.openplanner.team/stops/Bottgar6"], ["https://tec.openplanner.team/stops/H1ag106a", "https://tec.openplanner.team/stops/H1ro133a"], ["https://tec.openplanner.team/stops/N162aca", "https://tec.openplanner.team/stops/N162ada"], ["https://tec.openplanner.team/stops/X888acb", "https://tec.openplanner.team/stops/X899aga"], ["https://tec.openplanner.team/stops/H2ll173b", "https://tec.openplanner.team/stops/H2sv259a"], ["https://tec.openplanner.team/stops/H1pa167b", "https://tec.openplanner.team/stops/H1qu108b"], ["https://tec.openplanner.team/stops/Cchsud05", "https://tec.openplanner.team/stops/Cchsud06"], ["https://tec.openplanner.team/stops/LSIcour1", "https://tec.openplanner.team/stops/LSItert1"], ["https://tec.openplanner.team/stops/Bsensab2", "https://tec.openplanner.team/stops/H2se110a"], ["https://tec.openplanner.team/stops/LNCsera1", "https://tec.openplanner.team/stops/LNCspor2"], ["https://tec.openplanner.team/stops/N501kfb", "https://tec.openplanner.team/stops/N538axb"], ["https://tec.openplanner.team/stops/N534aqa", "https://tec.openplanner.team/stops/N534bbb"], ["https://tec.openplanner.team/stops/LrApark1", "https://tec.openplanner.team/stops/LrAwald1"], ["https://tec.openplanner.team/stops/X512ajb", "https://tec.openplanner.team/stops/X713afa"], ["https://tec.openplanner.team/stops/X761aaa", "https://tec.openplanner.team/stops/X764afb"], ["https://tec.openplanner.team/stops/H1fr112a", "https://tec.openplanner.team/stops/H1fr131a"], ["https://tec.openplanner.team/stops/LhUrich1", "https://tec.openplanner.team/stops/LmUzent1"], ["https://tec.openplanner.team/stops/Bbcoroy2", "https://tec.openplanner.team/stops/Brebrha2"], ["https://tec.openplanner.team/stops/N206acb", "https://tec.openplanner.team/stops/N206adb"], ["https://tec.openplanner.team/stops/LJuhaie2", "https://tec.openplanner.team/stops/LMovich2"], ["https://tec.openplanner.team/stops/LLrdrev1", "https://tec.openplanner.team/stops/LLUdeig2"], ["https://tec.openplanner.team/stops/H1hq158a", "https://tec.openplanner.team/stops/H1sy137c"], ["https://tec.openplanner.team/stops/LOLcroi1", "https://tec.openplanner.team/stops/LOLcroi2"], ["https://tec.openplanner.team/stops/H1ho122c", "https://tec.openplanner.team/stops/H1ho122d"], ["https://tec.openplanner.team/stops/Cmeptmi1", "https://tec.openplanner.team/stops/Cmerued1"], ["https://tec.openplanner.team/stops/LVEbors1", "https://tec.openplanner.team/stops/LVEcacq1"], ["https://tec.openplanner.team/stops/Bflccav1", "https://tec.openplanner.team/stops/Bjauwar2"], ["https://tec.openplanner.team/stops/X982blb", "https://tec.openplanner.team/stops/X982blc"], ["https://tec.openplanner.team/stops/Llgdart5", "https://tec.openplanner.team/stops/LlgguilF"], ["https://tec.openplanner.team/stops/N528awb", "https://tec.openplanner.team/stops/N577afa"], ["https://tec.openplanner.team/stops/H4fr139a", "https://tec.openplanner.team/stops/H4fr142a"], ["https://tec.openplanner.team/stops/N211awb", "https://tec.openplanner.team/stops/N212ada"], ["https://tec.openplanner.team/stops/Bperalv1", "https://tec.openplanner.team/stops/Bpernov2"], ["https://tec.openplanner.team/stops/N101aga", "https://tec.openplanner.team/stops/N101aib"], ["https://tec.openplanner.team/stops/Broscha2", "https://tec.openplanner.team/stops/H2gy109b"], ["https://tec.openplanner.team/stops/H1hg180b", "https://tec.openplanner.team/stops/H1hy128a"], ["https://tec.openplanner.team/stops/LSZcock1", "https://tec.openplanner.team/stops/LSZlegr1"], ["https://tec.openplanner.team/stops/Cchdelf2", "https://tec.openplanner.team/stops/Cchtour1"], ["https://tec.openplanner.team/stops/N562ala", "https://tec.openplanner.team/stops/N562bwa"], ["https://tec.openplanner.team/stops/N117auc", "https://tec.openplanner.team/stops/N117ayb"], ["https://tec.openplanner.team/stops/N136aeb", "https://tec.openplanner.team/stops/N143aba"], ["https://tec.openplanner.team/stops/Cfrchro2", "https://tec.openplanner.team/stops/Cfrempe2"], ["https://tec.openplanner.team/stops/H4ar177a", "https://tec.openplanner.team/stops/H4ar177b"], ["https://tec.openplanner.team/stops/N501eza", "https://tec.openplanner.team/stops/N501ezb"], ["https://tec.openplanner.team/stops/N540aoa", "https://tec.openplanner.team/stops/N540apb"], ["https://tec.openplanner.team/stops/LOMcabi1", "https://tec.openplanner.team/stops/LOMdTEC1"], ["https://tec.openplanner.team/stops/LBY4che1", "https://tec.openplanner.team/stops/LBY4che2"], ["https://tec.openplanner.team/stops/X724aab", "https://tec.openplanner.team/stops/X725bfb"], ["https://tec.openplanner.team/stops/Bcrnnpl1", "https://tec.openplanner.team/stops/Bernpla1"], ["https://tec.openplanner.team/stops/N558amb", "https://tec.openplanner.team/stops/N559aeb"], ["https://tec.openplanner.team/stops/Lsepair2", "https://tec.openplanner.team/stops/Lsevecq2"], ["https://tec.openplanner.team/stops/X950adb", "https://tec.openplanner.team/stops/X952alb"], ["https://tec.openplanner.team/stops/X949aga", "https://tec.openplanner.team/stops/X949ahb"], ["https://tec.openplanner.team/stops/H1hn365a", "https://tec.openplanner.team/stops/H1ms940b"], ["https://tec.openplanner.team/stops/LTIecma1", "https://tec.openplanner.team/stops/LTIsupe1"], ["https://tec.openplanner.team/stops/Lghmavi1", "https://tec.openplanner.team/stops/Lmopeup1"], ["https://tec.openplanner.team/stops/Bwanthi2", "https://tec.openplanner.team/stops/Bwanwar2"], ["https://tec.openplanner.team/stops/H2ll184a", "https://tec.openplanner.team/stops/H2ll184b"], ["https://tec.openplanner.team/stops/CMmoul2", "https://tec.openplanner.team/stops/Cmopn4"], ["https://tec.openplanner.team/stops/Lhrmeta1", "https://tec.openplanner.team/stops/Lhrmeta2"], ["https://tec.openplanner.team/stops/LAMjeha2", "https://tec.openplanner.team/stops/LJEtige1"], ["https://tec.openplanner.team/stops/Canbruy1", "https://tec.openplanner.team/stops/Canegbr1"], ["https://tec.openplanner.team/stops/Bhakmkr1", "https://tec.openplanner.team/stops/Btiegma1"], ["https://tec.openplanner.team/stops/LHXfont1", "https://tec.openplanner.team/stops/LHXfont2"], ["https://tec.openplanner.team/stops/X982bja", "https://tec.openplanner.team/stops/X982bjb"], ["https://tec.openplanner.team/stops/LElgerd6", "https://tec.openplanner.team/stops/LOumaro1"], ["https://tec.openplanner.team/stops/X750ata", "https://tec.openplanner.team/stops/X750ava"], ["https://tec.openplanner.team/stops/LhP25--2", "https://tec.openplanner.team/stops/LhPkirc1"], ["https://tec.openplanner.team/stops/LJAchat1", "https://tec.openplanner.team/stops/LJAwerf2"], ["https://tec.openplanner.team/stops/LTIecma2", "https://tec.openplanner.team/stops/LTIsupe2"], ["https://tec.openplanner.team/stops/H4wi167a", "https://tec.openplanner.team/stops/H5pe144a"], ["https://tec.openplanner.team/stops/H4am101b", "https://tec.openplanner.team/stops/H4or116b"], ["https://tec.openplanner.team/stops/Bwspmon2", "https://tec.openplanner.team/stops/Bwsppos2"], ["https://tec.openplanner.team/stops/X818aga", "https://tec.openplanner.team/stops/X820aca"], ["https://tec.openplanner.team/stops/LeUkabe2", "https://tec.openplanner.team/stops/LeUrote1"], ["https://tec.openplanner.team/stops/H1ch100a", "https://tec.openplanner.team/stops/H1ch102a"], ["https://tec.openplanner.team/stops/H4hx124a", "https://tec.openplanner.team/stops/H4wa149a"], ["https://tec.openplanner.team/stops/LXfsolw1", "https://tec.openplanner.team/stops/LXftche1"], ["https://tec.openplanner.team/stops/Cmaegal1", "https://tec.openplanner.team/stops/Cmocalv4"], ["https://tec.openplanner.team/stops/N517ada", "https://tec.openplanner.team/stops/N517aea"], ["https://tec.openplanner.team/stops/X801cca", "https://tec.openplanner.team/stops/X801cea"], ["https://tec.openplanner.team/stops/N557acb", "https://tec.openplanner.team/stops/N558aja"], ["https://tec.openplanner.team/stops/N352afb", "https://tec.openplanner.team/stops/N353aba"], ["https://tec.openplanner.team/stops/Bbeubos1", "https://tec.openplanner.team/stops/N576ada"], ["https://tec.openplanner.team/stops/N543ahb", "https://tec.openplanner.team/stops/N543ara"], ["https://tec.openplanner.team/stops/Lflcle-1", "https://tec.openplanner.team/stops/Lflfort*"], ["https://tec.openplanner.team/stops/X659aca", "https://tec.openplanner.team/stops/X659acb"], ["https://tec.openplanner.team/stops/NL77aka", "https://tec.openplanner.team/stops/NL77alb"], ["https://tec.openplanner.team/stops/LHZcouv1", "https://tec.openplanner.team/stops/LHZcouv2"], ["https://tec.openplanner.team/stops/Bwaygrg1", "https://tec.openplanner.team/stops/Bwaygrg2"], ["https://tec.openplanner.team/stops/LAMceri1", "https://tec.openplanner.team/stops/LOmpont1"], ["https://tec.openplanner.team/stops/H2ll172b", "https://tec.openplanner.team/stops/H2ll181b"], ["https://tec.openplanner.team/stops/Bnivlde1", "https://tec.openplanner.team/stops/Bnivlde2"], ["https://tec.openplanner.team/stops/H1hv130a", "https://tec.openplanner.team/stops/H3st119a"], ["https://tec.openplanner.team/stops/N515apb", "https://tec.openplanner.team/stops/N515ara"], ["https://tec.openplanner.team/stops/H4te255b", "https://tec.openplanner.team/stops/H4te261a"], ["https://tec.openplanner.team/stops/Brebrog1", "https://tec.openplanner.team/stops/H2pr115b"], ["https://tec.openplanner.team/stops/N549afa", "https://tec.openplanner.team/stops/N549aha"], ["https://tec.openplanner.team/stops/Creluth1", "https://tec.openplanner.team/stops/Creluth2"], ["https://tec.openplanner.team/stops/N501dtc", "https://tec.openplanner.team/stops/N501jsa"], ["https://tec.openplanner.team/stops/Lboeg--1", "https://tec.openplanner.team/stops/Lbomc--6"], ["https://tec.openplanner.team/stops/Lpeflec1", "https://tec.openplanner.team/stops/Lpeflec2"], ["https://tec.openplanner.team/stops/X879acb", "https://tec.openplanner.team/stops/X879ada"], ["https://tec.openplanner.team/stops/Ccofayt1", "https://tec.openplanner.team/stops/Crowall1"], ["https://tec.openplanner.team/stops/X822acb", "https://tec.openplanner.team/stops/X822aqb"], ["https://tec.openplanner.team/stops/N559acb", "https://tec.openplanner.team/stops/NL77afa"], ["https://tec.openplanner.team/stops/X999aka", "https://tec.openplanner.team/stops/X999ata"], ["https://tec.openplanner.team/stops/H4wp150a", "https://tec.openplanner.team/stops/H4wp150b"], ["https://tec.openplanner.team/stops/N513acd", "https://tec.openplanner.team/stops/N513agd"], ["https://tec.openplanner.team/stops/LVPcrok1", "https://tec.openplanner.team/stops/LVPcrok2"], ["https://tec.openplanner.team/stops/X878aba", "https://tec.openplanner.team/stops/X898aca"], ["https://tec.openplanner.team/stops/X750ara", "https://tec.openplanner.team/stops/X750aua"], ["https://tec.openplanner.team/stops/Cgycime3", "https://tec.openplanner.team/stops/Cgylami2"], ["https://tec.openplanner.team/stops/H4bc104a", "https://tec.openplanner.team/stops/H4wr173c"], ["https://tec.openplanner.team/stops/Llgcfra1", "https://tec.openplanner.team/stops/Llgchev2"], ["https://tec.openplanner.team/stops/H4ma202b", "https://tec.openplanner.team/stops/H4ma411a"], ["https://tec.openplanner.team/stops/NR21agb", "https://tec.openplanner.team/stops/NR21ahb"], ["https://tec.openplanner.team/stops/Bsdafra2", "https://tec.openplanner.team/stops/Csdrofr2"], ["https://tec.openplanner.team/stops/LmRmuhl1", "https://tec.openplanner.team/stops/LsHkreu4"], ["https://tec.openplanner.team/stops/N236aca", "https://tec.openplanner.team/stops/N254agb"], ["https://tec.openplanner.team/stops/Cctbifu1", "https://tec.openplanner.team/stops/NC11aha"], ["https://tec.openplanner.team/stops/LTamoul2", "https://tec.openplanner.team/stops/LTaxhos1"], ["https://tec.openplanner.team/stops/X780aib", "https://tec.openplanner.team/stops/X780ata"], ["https://tec.openplanner.team/stops/Blmlgar2", "https://tec.openplanner.team/stops/Blmlpla2"], ["https://tec.openplanner.team/stops/X718ada", "https://tec.openplanner.team/stops/X719abb"], ["https://tec.openplanner.team/stops/Landolh2", "https://tec.openplanner.team/stops/Landolh3"], ["https://tec.openplanner.team/stops/N538akb", "https://tec.openplanner.team/stops/N538apb"], ["https://tec.openplanner.team/stops/Bhaldbo1", "https://tec.openplanner.team/stops/Blemwob2"], ["https://tec.openplanner.team/stops/Lfh-sci2", "https://tec.openplanner.team/stops/Lseivoz1"], ["https://tec.openplanner.team/stops/LFslign2", "https://tec.openplanner.team/stops/LSLstra2"], ["https://tec.openplanner.team/stops/H1eq117a", "https://tec.openplanner.team/stops/H1fy142a"], ["https://tec.openplanner.team/stops/X992acb", "https://tec.openplanner.team/stops/X992ada"], ["https://tec.openplanner.team/stops/LNHhome1", "https://tec.openplanner.team/stops/LNHhome2"], ["https://tec.openplanner.team/stops/X882aea", "https://tec.openplanner.team/stops/X882aeb"], ["https://tec.openplanner.team/stops/N232bob", "https://tec.openplanner.team/stops/N232bqb"], ["https://tec.openplanner.team/stops/H1at110c", "https://tec.openplanner.team/stops/H1fy143a"], ["https://tec.openplanner.team/stops/Bbosgar1", "https://tec.openplanner.team/stops/Bbosgar2"], ["https://tec.openplanner.team/stops/N538aqa", "https://tec.openplanner.team/stops/N538aqb"], ["https://tec.openplanner.team/stops/X739alb", "https://tec.openplanner.team/stops/X771aeb"], ["https://tec.openplanner.team/stops/N534acb", "https://tec.openplanner.team/stops/N534ada"], ["https://tec.openplanner.team/stops/X811ahb", "https://tec.openplanner.team/stops/X811ala"], ["https://tec.openplanner.team/stops/X605aeb", "https://tec.openplanner.team/stops/X605ala"], ["https://tec.openplanner.team/stops/LTHec--1", "https://tec.openplanner.team/stops/LTHec--2"], ["https://tec.openplanner.team/stops/H2sv212b", "https://tec.openplanner.team/stops/H2sv219b"], ["https://tec.openplanner.team/stops/N548adb", "https://tec.openplanner.team/stops/N548asb"], ["https://tec.openplanner.team/stops/X982aba", "https://tec.openplanner.team/stops/X982aca"], ["https://tec.openplanner.team/stops/X636ama", "https://tec.openplanner.team/stops/X649aab"], ["https://tec.openplanner.team/stops/Bborbif1", "https://tec.openplanner.team/stops/Bborppa1"], ["https://tec.openplanner.team/stops/H4mb203a", "https://tec.openplanner.team/stops/H4og211a"], ["https://tec.openplanner.team/stops/Lcehipp2", "https://tec.openplanner.team/stops/Lcepass1"], ["https://tec.openplanner.team/stops/LGeduc-1", "https://tec.openplanner.team/stops/LGegare2"], ["https://tec.openplanner.team/stops/Bolgegl2", "https://tec.openplanner.team/stops/Bolgeva1"], ["https://tec.openplanner.team/stops/N515afb", "https://tec.openplanner.team/stops/N517aca"], ["https://tec.openplanner.team/stops/LkOaugu1", "https://tec.openplanner.team/stops/LkOzoll1"], ["https://tec.openplanner.team/stops/H1al106a", "https://tec.openplanner.team/stops/H1al108a"], ["https://tec.openplanner.team/stops/LFMrijk2", "https://tec.openplanner.team/stops/LFMvoge2"], ["https://tec.openplanner.team/stops/N573aia", "https://tec.openplanner.team/stops/N573aib"], ["https://tec.openplanner.team/stops/LFIinse2", "https://tec.openplanner.team/stops/LXocomb2"], ["https://tec.openplanner.team/stops/H4am100b", "https://tec.openplanner.team/stops/H4an108a"], ["https://tec.openplanner.team/stops/X877aba", "https://tec.openplanner.team/stops/X877aea"], ["https://tec.openplanner.team/stops/H4ne131b", "https://tec.openplanner.team/stops/H4ne134a"], ["https://tec.openplanner.team/stops/Bsomwav1", "https://tec.openplanner.team/stops/N584bnb"], ["https://tec.openplanner.team/stops/LPLcite1", "https://tec.openplanner.team/stops/LPLphar2"], ["https://tec.openplanner.team/stops/N343abb", "https://tec.openplanner.team/stops/N343alb"], ["https://tec.openplanner.team/stops/Cvvgrsa2", "https://tec.openplanner.team/stops/Cvvsncb2"], ["https://tec.openplanner.team/stops/Cgyblob1", "https://tec.openplanner.team/stops/Cgycvie2"], ["https://tec.openplanner.team/stops/Ccucorb2", "https://tec.openplanner.team/stops/Cgycorv2"], ["https://tec.openplanner.team/stops/H2hg267b", "https://tec.openplanner.team/stops/H2ll198b"], ["https://tec.openplanner.team/stops/Bhanwav2", "https://tec.openplanner.team/stops/NL37aab"], ["https://tec.openplanner.team/stops/N229aab", "https://tec.openplanner.team/stops/N229afb"], ["https://tec.openplanner.team/stops/X925aja", "https://tec.openplanner.team/stops/X996aba"], ["https://tec.openplanner.team/stops/N153aaa", "https://tec.openplanner.team/stops/N153afb"], ["https://tec.openplanner.team/stops/H1je220b", "https://tec.openplanner.team/stops/H1je223a"], ["https://tec.openplanner.team/stops/Bhancre1", "https://tec.openplanner.team/stops/Bhanwav1"], ["https://tec.openplanner.team/stops/LGogare2", "https://tec.openplanner.team/stops/LNEcite2"], ["https://tec.openplanner.team/stops/X890acb", "https://tec.openplanner.team/stops/X890aeb"], ["https://tec.openplanner.team/stops/Bperpla2", "https://tec.openplanner.team/stops/Bperrcr2"], ["https://tec.openplanner.team/stops/N501awb", "https://tec.openplanner.team/stops/N501mga"], ["https://tec.openplanner.team/stops/Bpiepnd1", "https://tec.openplanner.team/stops/Bpiesta1"], ["https://tec.openplanner.team/stops/LCPconf1", "https://tec.openplanner.team/stops/LCPvign1"], ["https://tec.openplanner.team/stops/LVLcent2", "https://tec.openplanner.team/stops/LVNcoop1"], ["https://tec.openplanner.team/stops/Llgdefr2", "https://tec.openplanner.team/stops/Llgmass2"], ["https://tec.openplanner.team/stops/Lbomc--4", "https://tec.openplanner.team/stops/Lbomc--5"], ["https://tec.openplanner.team/stops/Lsekubo1", "https://tec.openplanner.team/stops/Lsekubo4"], ["https://tec.openplanner.team/stops/Bolggar1", "https://tec.openplanner.team/stops/Bolgrsa1"], ["https://tec.openplanner.team/stops/H4he104a", "https://tec.openplanner.team/stops/H4he107a"], ["https://tec.openplanner.team/stops/X713ama", "https://tec.openplanner.team/stops/X713amb"], ["https://tec.openplanner.team/stops/N218aea", "https://tec.openplanner.team/stops/N287aca"], ["https://tec.openplanner.team/stops/LXhjupr1", "https://tec.openplanner.team/stops/LXhjupr3"], ["https://tec.openplanner.team/stops/H1hr122a", "https://tec.openplanner.team/stops/H1hr129a"], ["https://tec.openplanner.team/stops/LAmshel1", "https://tec.openplanner.team/stops/LNHbarr2"], ["https://tec.openplanner.team/stops/NL77aab", "https://tec.openplanner.team/stops/NL77adb"], ["https://tec.openplanner.team/stops/X661aqb", "https://tec.openplanner.team/stops/X840aga"], ["https://tec.openplanner.team/stops/LbEkirc*", "https://tec.openplanner.team/stops/LbTcarm2"], ["https://tec.openplanner.team/stops/Ltheg--2", "https://tec.openplanner.team/stops/Lthgros1"], ["https://tec.openplanner.team/stops/LBEairp3", "https://tec.openplanner.team/stops/LBEtroo1"], ["https://tec.openplanner.team/stops/Cfaplma1", "https://tec.openplanner.team/stops/Clafaub2"], ["https://tec.openplanner.team/stops/LHe3com1", "https://tec.openplanner.team/stops/LHSheur2"], ["https://tec.openplanner.team/stops/LBhsign2", "https://tec.openplanner.team/stops/LMRmont2"], ["https://tec.openplanner.team/stops/Cflfaub2", "https://tec.openplanner.team/stops/NC23aab"], ["https://tec.openplanner.team/stops/H4eg106b", "https://tec.openplanner.team/stops/H4eg107a"], ["https://tec.openplanner.team/stops/LaHzoll*", "https://tec.openplanner.team/stops/X685acb"], ["https://tec.openplanner.team/stops/Lendonh1", "https://tec.openplanner.team/stops/Lenhosp2"], ["https://tec.openplanner.team/stops/LGLbrus1", "https://tec.openplanner.team/stops/LGLgeer1"], ["https://tec.openplanner.team/stops/Bllngar1", "https://tec.openplanner.team/stops/Bllngar7"], ["https://tec.openplanner.team/stops/Bfelequ1", "https://tec.openplanner.team/stops/Bfelpla2"], ["https://tec.openplanner.team/stops/LsVfrie1", "https://tec.openplanner.team/stops/LsVrodt1"], ["https://tec.openplanner.team/stops/Bwatprp2", "https://tec.openplanner.team/stops/Bwatsuc1"], ["https://tec.openplanner.team/stops/X955aga", "https://tec.openplanner.team/stops/X955agb"], ["https://tec.openplanner.team/stops/H1be101a", "https://tec.openplanner.team/stops/H1be104a"], ["https://tec.openplanner.team/stops/Lkinyst1", "https://tec.openplanner.team/stops/Lkithie1"], ["https://tec.openplanner.team/stops/Cjuhame1", "https://tec.openplanner.team/stops/Cragill2"], ["https://tec.openplanner.team/stops/LVGeg--2", "https://tec.openplanner.team/stops/LVGeg--5"], ["https://tec.openplanner.team/stops/Brixblh3", "https://tec.openplanner.team/stops/Brixwav3"], ["https://tec.openplanner.team/stops/N501cky", "https://tec.openplanner.team/stops/N501mpa"], ["https://tec.openplanner.team/stops/Bdlvpco2", "https://tec.openplanner.team/stops/Bdvmc032"], ["https://tec.openplanner.team/stops/X622aab", "https://tec.openplanner.team/stops/X622acb"], ["https://tec.openplanner.team/stops/H1hw120b", "https://tec.openplanner.team/stops/H1hw123b"], ["https://tec.openplanner.team/stops/Bniv4co2", "https://tec.openplanner.team/stops/Bnivaig1"], ["https://tec.openplanner.team/stops/X765adb", "https://tec.openplanner.team/stops/X765afb"], ["https://tec.openplanner.team/stops/Bcbqh451", "https://tec.openplanner.team/stops/Btubois2"], ["https://tec.openplanner.team/stops/H1gn148a", "https://tec.openplanner.team/stops/H1hq126a"], ["https://tec.openplanner.team/stops/X759adb", "https://tec.openplanner.team/stops/X759aeb"], ["https://tec.openplanner.team/stops/LaMahof2", "https://tec.openplanner.team/stops/LmI82--1"], ["https://tec.openplanner.team/stops/LAMhopi1", "https://tec.openplanner.team/stops/LAMhopi2"], ["https://tec.openplanner.team/stops/H4ld125a", "https://tec.openplanner.team/stops/H4to135a"], ["https://tec.openplanner.team/stops/Bcbqcha1", "https://tec.openplanner.team/stops/Bhalcbr2"], ["https://tec.openplanner.team/stops/N874ana", "https://tec.openplanner.team/stops/N988aca"], ["https://tec.openplanner.team/stops/LHUfali3", "https://tec.openplanner.team/stops/LHUfali4"], ["https://tec.openplanner.team/stops/N313aeb", "https://tec.openplanner.team/stops/N313aec"], ["https://tec.openplanner.team/stops/Cmcgoch1", "https://tec.openplanner.team/stops/Cmggthi2"], ["https://tec.openplanner.team/stops/H1by109a", "https://tec.openplanner.team/stops/H1by109b"], ["https://tec.openplanner.team/stops/LHVgoro2", "https://tec.openplanner.team/stops/LSubass2"], ["https://tec.openplanner.team/stops/LrGzent2", "https://tec.openplanner.team/stops/LsVfeye2"], ["https://tec.openplanner.team/stops/X753aaa", "https://tec.openplanner.team/stops/X928aab"], ["https://tec.openplanner.team/stops/H1fr112b", "https://tec.openplanner.team/stops/H1fr127a"], ["https://tec.openplanner.team/stops/H1au111b", "https://tec.openplanner.team/stops/H1au112b"], ["https://tec.openplanner.team/stops/X730aeb", "https://tec.openplanner.team/stops/X730afb"], ["https://tec.openplanner.team/stops/LHheg--1", "https://tec.openplanner.team/stops/LHhvivi1"], ["https://tec.openplanner.team/stops/LSHmais1", "https://tec.openplanner.team/stops/LSOtheu2"], ["https://tec.openplanner.team/stops/Bbsicul2", "https://tec.openplanner.team/stops/Bbsigaz2"], ["https://tec.openplanner.team/stops/N204aaa", "https://tec.openplanner.team/stops/N204aea"], ["https://tec.openplanner.team/stops/X362aca", "https://tec.openplanner.team/stops/X363acb"], ["https://tec.openplanner.team/stops/Btsllbv1", "https://tec.openplanner.team/stops/Btsllnd1"], ["https://tec.openplanner.team/stops/X872abb", "https://tec.openplanner.team/stops/X872aca"], ["https://tec.openplanner.team/stops/Bpergar1", "https://tec.openplanner.team/stops/Bpergar3"], ["https://tec.openplanner.team/stops/H2hg149b", "https://tec.openplanner.team/stops/H2mi122b"], ["https://tec.openplanner.team/stops/Llgbatt2", "https://tec.openplanner.team/stops/Llgwesp1"], ["https://tec.openplanner.team/stops/X731aea", "https://tec.openplanner.team/stops/X731afa"], ["https://tec.openplanner.team/stops/Lchpniv2", "https://tec.openplanner.team/stops/Lchstat*"], ["https://tec.openplanner.team/stops/H4lh118b", "https://tec.openplanner.team/stops/H4lh120b"], ["https://tec.openplanner.team/stops/N351atb", "https://tec.openplanner.team/stops/N351atd"], ["https://tec.openplanner.team/stops/X901baa", "https://tec.openplanner.team/stops/X901bbb"], ["https://tec.openplanner.team/stops/H1wa154b", "https://tec.openplanner.team/stops/H1wg124b"], ["https://tec.openplanner.team/stops/LbTathe1", "https://tec.openplanner.team/stops/LbThau11"], ["https://tec.openplanner.team/stops/X999adb", "https://tec.openplanner.team/stops/X999afa"], ["https://tec.openplanner.team/stops/H1wz171b", "https://tec.openplanner.team/stops/H2pe161b"], ["https://tec.openplanner.team/stops/N261aha", "https://tec.openplanner.team/stops/N261ahb"], ["https://tec.openplanner.team/stops/Cptplac3", "https://tec.openplanner.team/stops/Cptplac4"], ["https://tec.openplanner.team/stops/N101adb", "https://tec.openplanner.team/stops/N116aea"], ["https://tec.openplanner.team/stops/N584bbb", "https://tec.openplanner.team/stops/N584bqb"], ["https://tec.openplanner.team/stops/LSseg--1", "https://tec.openplanner.team/stops/N506bcb"], ["https://tec.openplanner.team/stops/X723aeb", "https://tec.openplanner.team/stops/X723aka"], ["https://tec.openplanner.team/stops/Bkrabhu1", "https://tec.openplanner.team/stops/Boveklo2"], ["https://tec.openplanner.team/stops/Blhusor1", "https://tec.openplanner.team/stops/Bovepla2"], ["https://tec.openplanner.team/stops/X614ahb", "https://tec.openplanner.team/stops/X614aqa"], ["https://tec.openplanner.team/stops/LOLrafh1", "https://tec.openplanner.team/stops/LOLvill4"], ["https://tec.openplanner.team/stops/H1mv241a", "https://tec.openplanner.team/stops/H1mv241b"], ["https://tec.openplanner.team/stops/Ccucorb1", "https://tec.openplanner.team/stops/Cgyruis2"], ["https://tec.openplanner.team/stops/H1bd100a", "https://tec.openplanner.team/stops/H1gy115a"], ["https://tec.openplanner.team/stops/N513aaa", "https://tec.openplanner.team/stops/N513bhb"], ["https://tec.openplanner.team/stops/H2pe158b", "https://tec.openplanner.team/stops/H2pe159b"], ["https://tec.openplanner.team/stops/Cramadi2", "https://tec.openplanner.team/stops/Cravign4"], ["https://tec.openplanner.team/stops/X902aaa", "https://tec.openplanner.team/stops/X902ana"], ["https://tec.openplanner.team/stops/LPbec--2", "https://tec.openplanner.team/stops/LSItert1"], ["https://tec.openplanner.team/stops/H4mo145b", "https://tec.openplanner.team/stops/H4mo158a"], ["https://tec.openplanner.team/stops/LDAbois1", "https://tec.openplanner.team/stops/LRIcite1"], ["https://tec.openplanner.team/stops/LXhhaka2", "https://tec.openplanner.team/stops/LXhnouv2"], ["https://tec.openplanner.team/stops/H5pe134a", "https://tec.openplanner.team/stops/H5pe152a"], ["https://tec.openplanner.team/stops/X658aab", "https://tec.openplanner.team/stops/X658agc"], ["https://tec.openplanner.team/stops/N203aba", "https://tec.openplanner.team/stops/N203abb"], ["https://tec.openplanner.team/stops/Lveanto1", "https://tec.openplanner.team/stops/Lvefabr2"], ["https://tec.openplanner.team/stops/Llgcroi1", "https://tec.openplanner.team/stops/Llgpier1"], ["https://tec.openplanner.team/stops/Bbeubos1", "https://tec.openplanner.team/stops/N526abb"], ["https://tec.openplanner.team/stops/X361aca", "https://tec.openplanner.team/stops/X362abb"], ["https://tec.openplanner.team/stops/N229aea", "https://tec.openplanner.team/stops/N229aeb"], ["https://tec.openplanner.team/stops/LBEcomm1", "https://tec.openplanner.team/stops/LTIchev1"], ["https://tec.openplanner.team/stops/X907aeb", "https://tec.openplanner.team/stops/X907aga"], ["https://tec.openplanner.team/stops/X612aea", "https://tec.openplanner.team/stops/X613aaa"], ["https://tec.openplanner.team/stops/Lghsimo1", "https://tec.openplanner.team/stops/Lghsimo3"], ["https://tec.openplanner.team/stops/X955aaa", "https://tec.openplanner.team/stops/X955agb"], ["https://tec.openplanner.team/stops/LAmeclu2", "https://tec.openplanner.team/stops/LTipont2"], ["https://tec.openplanner.team/stops/LoEauto1", "https://tec.openplanner.team/stops/LoEbach1"], ["https://tec.openplanner.team/stops/LBpbruy2", "https://tec.openplanner.team/stops/LBpecco2"], ["https://tec.openplanner.team/stops/N520aib", "https://tec.openplanner.team/stops/N520aja"], ["https://tec.openplanner.team/stops/LaLkabi2", "https://tec.openplanner.team/stops/LmAaldr2"], ["https://tec.openplanner.team/stops/H2lh129a", "https://tec.openplanner.team/stops/H2lh129b"], ["https://tec.openplanner.team/stops/H4bc101c", "https://tec.openplanner.team/stops/H4tu172a"], ["https://tec.openplanner.team/stops/X804aea", "https://tec.openplanner.team/stops/X804aeb"], ["https://tec.openplanner.team/stops/LmOkape1", "https://tec.openplanner.team/stops/LmOkape2"], ["https://tec.openplanner.team/stops/Lstetud1", "https://tec.openplanner.team/stops/Lstetud2"], ["https://tec.openplanner.team/stops/X994aia", "https://tec.openplanner.team/stops/X994aib"], ["https://tec.openplanner.team/stops/Cmqbasv2", "https://tec.openplanner.team/stops/H4ar100a"], ["https://tec.openplanner.team/stops/H4gz114a", "https://tec.openplanner.team/stops/H4lz155a"], ["https://tec.openplanner.team/stops/NL57aja", "https://tec.openplanner.team/stops/NL57ajb"], ["https://tec.openplanner.team/stops/Bfelbri2", "https://tec.openplanner.team/stops/Bfelbri3"], ["https://tec.openplanner.team/stops/N556aeb", "https://tec.openplanner.team/stops/N557ada"], ["https://tec.openplanner.team/stops/H1cu126a", "https://tec.openplanner.team/stops/H1cu126b"], ["https://tec.openplanner.team/stops/Cctgaux2", "https://tec.openplanner.team/stops/Cctrobe1"], ["https://tec.openplanner.team/stops/N514afa", "https://tec.openplanner.team/stops/N514anb"], ["https://tec.openplanner.team/stops/LJEmalg1", "https://tec.openplanner.team/stops/LYegeor2"], ["https://tec.openplanner.team/stops/N135aib", "https://tec.openplanner.team/stops/N135akb"], ["https://tec.openplanner.team/stops/NL81afa", "https://tec.openplanner.team/stops/NL81afb"], ["https://tec.openplanner.team/stops/Bolppla2", "https://tec.openplanner.team/stops/Bolppsn2"], ["https://tec.openplanner.team/stops/H1mb130a", "https://tec.openplanner.team/stops/H1mx123a"], ["https://tec.openplanner.team/stops/H1qu111a", "https://tec.openplanner.team/stops/H1qu111b"], ["https://tec.openplanner.team/stops/X762acb", "https://tec.openplanner.team/stops/X762ada"], ["https://tec.openplanner.team/stops/LMTdeho1", "https://tec.openplanner.team/stops/LMTfagn1"], ["https://tec.openplanner.team/stops/X948anb", "https://tec.openplanner.team/stops/X948aoa"], ["https://tec.openplanner.team/stops/X995ada", "https://tec.openplanner.team/stops/X995adb"], ["https://tec.openplanner.team/stops/X666aka", "https://tec.openplanner.team/stops/X745aea"], ["https://tec.openplanner.team/stops/H2mo130b", "https://tec.openplanner.team/stops/H2mo130c"], ["https://tec.openplanner.team/stops/LSPguer2", "https://tec.openplanner.team/stops/LSPhapa1"], ["https://tec.openplanner.team/stops/LAwfans2", "https://tec.openplanner.team/stops/LHrbast1"], ["https://tec.openplanner.team/stops/X890ada", "https://tec.openplanner.team/stops/X890adb"], ["https://tec.openplanner.team/stops/Btilmon1", "https://tec.openplanner.team/stops/Btilmon2"], ["https://tec.openplanner.team/stops/X731aca", "https://tec.openplanner.team/stops/X731aja"], ["https://tec.openplanner.team/stops/X824aec", "https://tec.openplanner.team/stops/X824aed"], ["https://tec.openplanner.team/stops/LBaeg--2", "https://tec.openplanner.team/stops/LBafagn2"], ["https://tec.openplanner.team/stops/H1hr126a", "https://tec.openplanner.team/stops/H1hr126b"], ["https://tec.openplanner.team/stops/Bwavcui2", "https://tec.openplanner.team/stops/Bwavtas2"], ["https://tec.openplanner.team/stops/Cvlcalv1", "https://tec.openplanner.team/stops/Cvlpeau2"], ["https://tec.openplanner.team/stops/Cstgare2", "https://tec.openplanner.team/stops/Cstplac1"], ["https://tec.openplanner.team/stops/LHThall4", "https://tec.openplanner.team/stops/LHTmoul1"], ["https://tec.openplanner.team/stops/H4mb202b", "https://tec.openplanner.team/stops/H4va231a"], ["https://tec.openplanner.team/stops/Bmrqpla2", "https://tec.openplanner.team/stops/H1mk108d"], ["https://tec.openplanner.team/stops/LiV19--1", "https://tec.openplanner.team/stops/LiVgirk2"], ["https://tec.openplanner.team/stops/Lhufays1", "https://tec.openplanner.team/stops/LLrgare2"], ["https://tec.openplanner.team/stops/H1he109a", "https://tec.openplanner.team/stops/H1he110a"], ["https://tec.openplanner.team/stops/H2bh105b", "https://tec.openplanner.team/stops/H2bh112b"], ["https://tec.openplanner.team/stops/N145aka", "https://tec.openplanner.team/stops/N145akb"], ["https://tec.openplanner.team/stops/Bmarmpr2", "https://tec.openplanner.team/stops/Bmarmru2"], ["https://tec.openplanner.team/stops/Lbrdepo1", "https://tec.openplanner.team/stops/Ljucrah1"], ["https://tec.openplanner.team/stops/Bgemgcw1", "https://tec.openplanner.team/stops/N522aja"], ["https://tec.openplanner.team/stops/H1og131a", "https://tec.openplanner.team/stops/H1og133a"], ["https://tec.openplanner.team/stops/Bezebru2", "https://tec.openplanner.team/stops/Bezeksj2"], ["https://tec.openplanner.team/stops/Bgoegma2", "https://tec.openplanner.team/stops/Boplcsj2"], ["https://tec.openplanner.team/stops/H2se114b", "https://tec.openplanner.team/stops/H2se115a"], ["https://tec.openplanner.team/stops/Caihai81", "https://tec.openplanner.team/stops/Caihai82"], ["https://tec.openplanner.team/stops/X654aja", "https://tec.openplanner.team/stops/X654ala"], ["https://tec.openplanner.team/stops/LREchal2", "https://tec.openplanner.team/stops/LREprea2"], ["https://tec.openplanner.team/stops/LGemari1", "https://tec.openplanner.team/stops/LGemari2"], ["https://tec.openplanner.team/stops/N135adc", "https://tec.openplanner.team/stops/N135akb"], ["https://tec.openplanner.team/stops/N355aeb", "https://tec.openplanner.team/stops/N383aeb"], ["https://tec.openplanner.team/stops/LFsec--1", "https://tec.openplanner.team/stops/LFsguil1"], ["https://tec.openplanner.team/stops/H1el133a", "https://tec.openplanner.team/stops/H1el137a"], ["https://tec.openplanner.team/stops/X718ada", "https://tec.openplanner.team/stops/X733acb"], ["https://tec.openplanner.team/stops/H1pa108a", "https://tec.openplanner.team/stops/H1pa111a"], ["https://tec.openplanner.team/stops/H2be102a", "https://tec.openplanner.team/stops/H2mg151a"], ["https://tec.openplanner.team/stops/H1wa146a", "https://tec.openplanner.team/stops/H1wa158b"], ["https://tec.openplanner.team/stops/LSPbalm1", "https://tec.openplanner.team/stops/LSPwarf2"], ["https://tec.openplanner.team/stops/N535ada", "https://tec.openplanner.team/stops/N535aea"], ["https://tec.openplanner.team/stops/H1cr100a", "https://tec.openplanner.team/stops/H1ry134b"], ["https://tec.openplanner.team/stops/N525aba", "https://tec.openplanner.team/stops/N525ada"], ["https://tec.openplanner.team/stops/LDAandr1", "https://tec.openplanner.team/stops/LDAandr2"], ["https://tec.openplanner.team/stops/N512ara", "https://tec.openplanner.team/stops/N512aua"], ["https://tec.openplanner.team/stops/Bhalber2", "https://tec.openplanner.team/stops/Bhalber3"], ["https://tec.openplanner.team/stops/NC02aua", "https://tec.openplanner.team/stops/NC02aub"], ["https://tec.openplanner.team/stops/X940adb", "https://tec.openplanner.team/stops/X941aba"], ["https://tec.openplanner.team/stops/Llgarmu1", "https://tec.openplanner.team/stops/Llgfoy-1"], ["https://tec.openplanner.team/stops/N584aza", "https://tec.openplanner.team/stops/N584boa"], ["https://tec.openplanner.team/stops/H4ty293a", "https://tec.openplanner.team/stops/H4ty353a"], ["https://tec.openplanner.team/stops/X615agb", "https://tec.openplanner.team/stops/X615baa"], ["https://tec.openplanner.team/stops/Bwatifr1", "https://tec.openplanner.team/stops/Bwatrsg2"], ["https://tec.openplanner.team/stops/H1ol137a", "https://tec.openplanner.team/stops/H1ol137b"], ["https://tec.openplanner.team/stops/Llgbuis1", "https://tec.openplanner.team/stops/Llgcmes1"], ["https://tec.openplanner.team/stops/X638akb", "https://tec.openplanner.team/stops/X638apa"], ["https://tec.openplanner.team/stops/X770aab", "https://tec.openplanner.team/stops/X771aib"], ["https://tec.openplanner.team/stops/Bwatdmo1", "https://tec.openplanner.team/stops/Bwatlbs1"], ["https://tec.openplanner.team/stops/Lghferr2", "https://tec.openplanner.team/stops/Lmochan2"], ["https://tec.openplanner.team/stops/LaAdiep1", "https://tec.openplanner.team/stops/LaAkapi1"], ["https://tec.openplanner.team/stops/H1hh110b", "https://tec.openplanner.team/stops/H1hh117a"], ["https://tec.openplanner.team/stops/H4do103a", "https://tec.openplanner.team/stops/H4do106a"], ["https://tec.openplanner.team/stops/LDAcite2", "https://tec.openplanner.team/stops/LFethie2"], ["https://tec.openplanner.team/stops/Cflmarc2", "https://tec.openplanner.team/stops/Cwgmell1"], ["https://tec.openplanner.team/stops/Llgfont1", "https://tec.openplanner.team/stops/Llghoch1"], ["https://tec.openplanner.team/stops/Bdvmc031", "https://tec.openplanner.team/stops/Bdvmc032"], ["https://tec.openplanner.team/stops/LJEmalg1", "https://tec.openplanner.team/stops/LJEmalg2"], ["https://tec.openplanner.team/stops/X801ama", "https://tec.openplanner.team/stops/X801apb"], ["https://tec.openplanner.team/stops/N507afa", "https://tec.openplanner.team/stops/N507agb"], ["https://tec.openplanner.team/stops/LEBdoct2", "https://tec.openplanner.team/stops/LEBmoul1"], ["https://tec.openplanner.team/stops/LmSdorf2", "https://tec.openplanner.team/stops/LmSkape1"], ["https://tec.openplanner.team/stops/Ladplen*", "https://tec.openplanner.team/stops/Ladstat2"], ["https://tec.openplanner.team/stops/X941acb", "https://tec.openplanner.team/stops/X941ada"], ["https://tec.openplanner.team/stops/LBStec-2", "https://tec.openplanner.team/stops/LWOplat2"], ["https://tec.openplanner.team/stops/Bcrbrpb1", "https://tec.openplanner.team/stops/Bllnjpa2"], ["https://tec.openplanner.team/stops/LSZchpl1", "https://tec.openplanner.team/stops/LSZprie1"], ["https://tec.openplanner.team/stops/N874aca", "https://tec.openplanner.team/stops/N874acb"], ["https://tec.openplanner.team/stops/N346aaa", "https://tec.openplanner.team/stops/N346aab"], ["https://tec.openplanner.team/stops/LEnvill1", "https://tec.openplanner.team/stops/NL73aab"], ["https://tec.openplanner.team/stops/X602aea", "https://tec.openplanner.team/stops/X602agb"], ["https://tec.openplanner.team/stops/LOMtomb1", "https://tec.openplanner.team/stops/LOMtomb2"], ["https://tec.openplanner.team/stops/LNCecdo1", "https://tec.openplanner.team/stops/Lsearbo2"], ["https://tec.openplanner.team/stops/LCAeg--2", "https://tec.openplanner.team/stops/LTGsucr2"], ["https://tec.openplanner.team/stops/Cmcbriq2", "https://tec.openplanner.team/stops/Cmcgoch1"], ["https://tec.openplanner.team/stops/N539ara", "https://tec.openplanner.team/stops/N539bdb"], ["https://tec.openplanner.team/stops/LMAhall2", "https://tec.openplanner.team/stops/LMAroch3"], ["https://tec.openplanner.team/stops/Ljewale3", "https://tec.openplanner.team/stops/Lmocoop2"], ["https://tec.openplanner.team/stops/Cmyland4", "https://tec.openplanner.team/stops/Cmyvesa1"], ["https://tec.openplanner.team/stops/Bbghepi1", "https://tec.openplanner.team/stops/Bbghepi2"], ["https://tec.openplanner.team/stops/LBBlaga1", "https://tec.openplanner.team/stops/LBBlaga2"], ["https://tec.openplanner.team/stops/Cfasamb1", "https://tec.openplanner.team/stops/Cfaysle1"], ["https://tec.openplanner.team/stops/H1be100a", "https://tec.openplanner.team/stops/H1be104a"], ["https://tec.openplanner.team/stops/Lroeg--2", "https://tec.openplanner.team/stops/Lromerl2"], ["https://tec.openplanner.team/stops/Lbrfune*", "https://tec.openplanner.team/stops/Lbrfusi2"], ["https://tec.openplanner.team/stops/Cfrfaub2", "https://tec.openplanner.team/stops/Cfrfaub3"], ["https://tec.openplanner.team/stops/Balsnay1", "https://tec.openplanner.team/stops/Balssvi1"], ["https://tec.openplanner.team/stops/H2sb221a", "https://tec.openplanner.team/stops/H2sb221b"], ["https://tec.openplanner.team/stops/Bcbqcht2", "https://tec.openplanner.team/stops/Bcbqcim1"], ["https://tec.openplanner.team/stops/N120ahb", "https://tec.openplanner.team/stops/N340aba"], ["https://tec.openplanner.team/stops/H1br131a", "https://tec.openplanner.team/stops/H1br131b"], ["https://tec.openplanner.team/stops/X714adb", "https://tec.openplanner.team/stops/X715aja"], ["https://tec.openplanner.team/stops/X922aja", "https://tec.openplanner.team/stops/X942aea"], ["https://tec.openplanner.team/stops/N501lxa", "https://tec.openplanner.team/stops/N501mja"], ["https://tec.openplanner.team/stops/Lsnbrac1", "https://tec.openplanner.team/stops/Lsnvand3"], ["https://tec.openplanner.team/stops/H4ff115a", "https://tec.openplanner.team/stops/H4mb138b"], ["https://tec.openplanner.team/stops/Caih1631", "https://tec.openplanner.team/stops/N543bba"], ["https://tec.openplanner.team/stops/X640apb", "https://tec.openplanner.team/stops/X640aua"], ["https://tec.openplanner.team/stops/H4ne137b", "https://tec.openplanner.team/stops/H4te249a"], ["https://tec.openplanner.team/stops/NL76aea", "https://tec.openplanner.team/stops/NL76arb"], ["https://tec.openplanner.team/stops/N874aba", "https://tec.openplanner.team/stops/N874aca"], ["https://tec.openplanner.team/stops/Beclbar1", "https://tec.openplanner.team/stops/Bronrch2"], ["https://tec.openplanner.team/stops/Lougare3", "https://tec.openplanner.team/stops/Lscbarg2"], ["https://tec.openplanner.team/stops/H1wi157a", "https://tec.openplanner.team/stops/H1wi157b"], ["https://tec.openplanner.team/stops/LPOleli1", "https://tec.openplanner.team/stops/LPOpass1"], ["https://tec.openplanner.team/stops/LBlchin1", "https://tec.openplanner.team/stops/LGMvoue2"], ["https://tec.openplanner.team/stops/H1wa156b", "https://tec.openplanner.team/stops/H1wa163b"], ["https://tec.openplanner.team/stops/Lhrathe*", "https://tec.openplanner.team/stops/Lhrdeme2"], ["https://tec.openplanner.team/stops/LBDtill1", "https://tec.openplanner.team/stops/LJEniho2"], ["https://tec.openplanner.team/stops/Cfosurs2", "https://tec.openplanner.team/stops/Cptdubo2"], ["https://tec.openplanner.team/stops/N501blb", "https://tec.openplanner.team/stops/N501chf"], ["https://tec.openplanner.team/stops/Cmacreu1", "https://tec.openplanner.team/stops/Cmmtomb2"], ["https://tec.openplanner.team/stops/N228aba", "https://tec.openplanner.team/stops/N228acb"], ["https://tec.openplanner.team/stops/Bbstegl2", "https://tec.openplanner.team/stops/Bbstmco1"], ["https://tec.openplanner.team/stops/X639ada", "https://tec.openplanner.team/stops/X639aqa"], ["https://tec.openplanner.team/stops/Lbhbalt1", "https://tec.openplanner.team/stops/Lroeg--4"], ["https://tec.openplanner.team/stops/Bnstpla1", "https://tec.openplanner.team/stops/Bnstpla2"], ["https://tec.openplanner.team/stops/LVEdTEC1", "https://tec.openplanner.team/stops/LVEphar1"], ["https://tec.openplanner.team/stops/Ceqcfra1", "https://tec.openplanner.team/stops/H1er105b"], ["https://tec.openplanner.team/stops/X641aqb", "https://tec.openplanner.team/stops/X641ara"], ["https://tec.openplanner.team/stops/Cthgend1", "https://tec.openplanner.team/stops/Cthgend2"], ["https://tec.openplanner.team/stops/LPlchpl1", "https://tec.openplanner.team/stops/LPlchpl2"], ["https://tec.openplanner.team/stops/H1gq153a", "https://tec.openplanner.team/stops/H1sy147a"], ["https://tec.openplanner.team/stops/H1gh151b", "https://tec.openplanner.team/stops/H1gh365a"], ["https://tec.openplanner.team/stops/N547aba", "https://tec.openplanner.team/stops/N547abb"], ["https://tec.openplanner.team/stops/LWDsieg1", "https://tec.openplanner.team/stops/LWDsieg2"], ["https://tec.openplanner.team/stops/N357abb", "https://tec.openplanner.team/stops/N383aab"], ["https://tec.openplanner.team/stops/LVnroch1", "https://tec.openplanner.team/stops/LVnroch2"], ["https://tec.openplanner.team/stops/H5rx138a", "https://tec.openplanner.team/stops/H5rx138b"], ["https://tec.openplanner.team/stops/Canresi2", "https://tec.openplanner.team/stops/H2an104b"], ["https://tec.openplanner.team/stops/Llgcong2", "https://tec.openplanner.team/stops/Llgqmar2"], ["https://tec.openplanner.team/stops/H1er112a", "https://tec.openplanner.team/stops/H1pe130b"], ["https://tec.openplanner.team/stops/Bbsgbos1", "https://tec.openplanner.team/stops/Bbsgbos2"], ["https://tec.openplanner.team/stops/N516ada", "https://tec.openplanner.team/stops/N516ala"], ["https://tec.openplanner.team/stops/N252aaa", "https://tec.openplanner.team/stops/N252abb"], ["https://tec.openplanner.team/stops/H4ty273a", "https://tec.openplanner.team/stops/H4ty273d"], ["https://tec.openplanner.team/stops/LAYdieu1", "https://tec.openplanner.team/stops/LAYdieu2"], ["https://tec.openplanner.team/stops/H4ty272b", "https://tec.openplanner.team/stops/H4ty274a"], ["https://tec.openplanner.team/stops/X908aab", "https://tec.openplanner.team/stops/X908ala"], ["https://tec.openplanner.team/stops/X921ahb", "https://tec.openplanner.team/stops/X921ajc"], ["https://tec.openplanner.team/stops/Lvecote2", "https://tec.openplanner.team/stops/Lvemull2"], ["https://tec.openplanner.team/stops/X595aca", "https://tec.openplanner.team/stops/X595adb"], ["https://tec.openplanner.team/stops/X999aba", "https://tec.openplanner.team/stops/X999adb"], ["https://tec.openplanner.team/stops/Boplcsj3", "https://tec.openplanner.team/stops/Boplsma4"], ["https://tec.openplanner.team/stops/Cthathe1", "https://tec.openplanner.team/stops/Cthegli1"], ["https://tec.openplanner.team/stops/H1te182a", "https://tec.openplanner.team/stops/H1te185a"], ["https://tec.openplanner.team/stops/N585ahb", "https://tec.openplanner.team/stops/N585ajb"], ["https://tec.openplanner.team/stops/Bdoncar2", "https://tec.openplanner.team/stops/Bgliopp1"], ["https://tec.openplanner.team/stops/X882acb", "https://tec.openplanner.team/stops/X882ahb"], ["https://tec.openplanner.team/stops/H1ba106a", "https://tec.openplanner.team/stops/H1ba106b"], ["https://tec.openplanner.team/stops/X637agb", "https://tec.openplanner.team/stops/X637agd"], ["https://tec.openplanner.team/stops/Bnilcha1", "https://tec.openplanner.team/stops/Bnilpje2"], ["https://tec.openplanner.team/stops/Cmyplac2", "https://tec.openplanner.team/stops/Cmypost2"], ["https://tec.openplanner.team/stops/X723aha", "https://tec.openplanner.team/stops/X723ahb"], ["https://tec.openplanner.team/stops/X601aaa", "https://tec.openplanner.team/stops/X601bga"], ["https://tec.openplanner.team/stops/Cgpchgo2", "https://tec.openplanner.team/stops/Ctrterm1"], ["https://tec.openplanner.team/stops/Cmgpla2", "https://tec.openplanner.team/stops/Cmgvpa"], ["https://tec.openplanner.team/stops/LeUgend1", "https://tec.openplanner.team/stops/LeUrath2"], ["https://tec.openplanner.team/stops/X878adb", "https://tec.openplanner.team/stops/X879aaa"], ["https://tec.openplanner.team/stops/Cprbevu1", "https://tec.openplanner.team/stops/Cprbevu2"], ["https://tec.openplanner.team/stops/N543bxa", "https://tec.openplanner.team/stops/N543bxb"], ["https://tec.openplanner.team/stops/LTAchau1", "https://tec.openplanner.team/stops/LTHmont2"], ["https://tec.openplanner.team/stops/LiVkreu4", "https://tec.openplanner.team/stops/LONcroi2"], ["https://tec.openplanner.team/stops/N538aca", "https://tec.openplanner.team/stops/N538ama"], ["https://tec.openplanner.team/stops/N120ama", "https://tec.openplanner.team/stops/N121ahb"], ["https://tec.openplanner.team/stops/Llxeg--1", "https://tec.openplanner.team/stops/Llxeg--2"], ["https://tec.openplanner.team/stops/X771ahb", "https://tec.openplanner.team/stops/X771aia"], ["https://tec.openplanner.team/stops/Crapaep1", "https://tec.openplanner.team/stops/Crasocq2"], ["https://tec.openplanner.team/stops/X633ajc", "https://tec.openplanner.team/stops/X654aba"], ["https://tec.openplanner.team/stops/Cfrgare1", "https://tec.openplanner.team/stops/Cfrgivr1"], ["https://tec.openplanner.team/stops/LHupont1", "https://tec.openplanner.team/stops/LHurobi2"], ["https://tec.openplanner.team/stops/LWZponb2", "https://tec.openplanner.team/stops/LWZponh2"], ["https://tec.openplanner.team/stops/H5qu143a", "https://tec.openplanner.team/stops/H5qu143c"], ["https://tec.openplanner.team/stops/X633aha", "https://tec.openplanner.team/stops/X633aia"], ["https://tec.openplanner.team/stops/N535amc", "https://tec.openplanner.team/stops/N564aaa"], ["https://tec.openplanner.team/stops/LhBdorf1", "https://tec.openplanner.team/stops/LhBdorf2"], ["https://tec.openplanner.team/stops/Bsomwav2", "https://tec.openplanner.team/stops/N584abb"], ["https://tec.openplanner.team/stops/Bhevgar1", "https://tec.openplanner.team/stops/Bovesnh2"], ["https://tec.openplanner.team/stops/N166aaa", "https://tec.openplanner.team/stops/N565aab"], ["https://tec.openplanner.team/stops/H2ll187a", "https://tec.openplanner.team/stops/H2ll198a"], ["https://tec.openplanner.team/stops/H1ms279a", "https://tec.openplanner.team/stops/H1ms279b"], ["https://tec.openplanner.team/stops/H1wl121a", "https://tec.openplanner.team/stops/H1wl125a"], ["https://tec.openplanner.team/stops/LSkoran1", "https://tec.openplanner.team/stops/LSkoran2"], ["https://tec.openplanner.team/stops/X396aaa", "https://tec.openplanner.team/stops/X901ala"], ["https://tec.openplanner.team/stops/X982bra", "https://tec.openplanner.team/stops/X982brb"], ["https://tec.openplanner.team/stops/H1do109a", "https://tec.openplanner.team/stops/H1do109b"], ["https://tec.openplanner.team/stops/LHUdelc2", "https://tec.openplanner.team/stops/LHUloui2"], ["https://tec.openplanner.team/stops/N146aaa", "https://tec.openplanner.team/stops/N146aab"], ["https://tec.openplanner.team/stops/H4ga166a", "https://tec.openplanner.team/stops/H4ga166b"], ["https://tec.openplanner.team/stops/N229aca", "https://tec.openplanner.team/stops/N229acb"], ["https://tec.openplanner.team/stops/Cdanvpr2", "https://tec.openplanner.team/stops/Cmafafe1"], ["https://tec.openplanner.team/stops/N102aaa", "https://tec.openplanner.team/stops/N151ajf"], ["https://tec.openplanner.team/stops/Chpfoli3", "https://tec.openplanner.team/stops/Cracime1"], ["https://tec.openplanner.team/stops/Cchdaup1", "https://tec.openplanner.team/stops/Cchture1"], ["https://tec.openplanner.team/stops/Cctmari1", "https://tec.openplanner.team/stops/NC11aha"], ["https://tec.openplanner.team/stops/H1gr118a", "https://tec.openplanner.team/stops/H1gr119a"], ["https://tec.openplanner.team/stops/Clfbarr4", "https://tec.openplanner.team/stops/Clfbarr6"], ["https://tec.openplanner.team/stops/LDLgran2", "https://tec.openplanner.team/stops/LDLgran3"], ["https://tec.openplanner.team/stops/N536apa", "https://tec.openplanner.team/stops/N563anb"], ["https://tec.openplanner.team/stops/Bnetace1", "https://tec.openplanner.team/stops/Bnetrtb2"], ["https://tec.openplanner.team/stops/Crachap1", "https://tec.openplanner.team/stops/Crasocq1"], ["https://tec.openplanner.team/stops/LSceg--2", "https://tec.openplanner.team/stops/LTNegli1"], ["https://tec.openplanner.team/stops/H1ho122d", "https://tec.openplanner.team/stops/H1ho131b"], ["https://tec.openplanner.team/stops/N501lbb", "https://tec.openplanner.team/stops/N501zba"], ["https://tec.openplanner.team/stops/H4ne138b", "https://tec.openplanner.team/stops/H4ne141b"], ["https://tec.openplanner.team/stops/H5at115a", "https://tec.openplanner.team/stops/H5at115b"], ["https://tec.openplanner.team/stops/N348abb", "https://tec.openplanner.team/stops/N353awb"], ["https://tec.openplanner.team/stops/H1br120a", "https://tec.openplanner.team/stops/H2tr248b"], ["https://tec.openplanner.team/stops/LWDbure1", "https://tec.openplanner.team/stops/LWDplac1"], ["https://tec.openplanner.team/stops/N205acb", "https://tec.openplanner.team/stops/N205adb"], ["https://tec.openplanner.team/stops/Cgxbeau2", "https://tec.openplanner.team/stops/Cgxwaut2"], ["https://tec.openplanner.team/stops/LTigera2", "https://tec.openplanner.team/stops/LTiruel2"], ["https://tec.openplanner.team/stops/Bjdscnd1", "https://tec.openplanner.team/stops/Bjodgai2"], ["https://tec.openplanner.team/stops/LTAbran1", "https://tec.openplanner.team/stops/LTHmont1"], ["https://tec.openplanner.team/stops/H1pa100a", "https://tec.openplanner.team/stops/H1pa100b"], ["https://tec.openplanner.team/stops/N515afa", "https://tec.openplanner.team/stops/N515afb"], ["https://tec.openplanner.team/stops/H4ty323a", "https://tec.openplanner.team/stops/H4ty405a"], ["https://tec.openplanner.team/stops/X608asb", "https://tec.openplanner.team/stops/X622acb"], ["https://tec.openplanner.team/stops/H4bi100b", "https://tec.openplanner.team/stops/H4rc231c"], ["https://tec.openplanner.team/stops/X747aka", "https://tec.openplanner.team/stops/X747akb"], ["https://tec.openplanner.team/stops/LmTreic1", "https://tec.openplanner.team/stops/LmTzoll2"], ["https://tec.openplanner.team/stops/LVu03--1", "https://tec.openplanner.team/stops/LVu03--2"], ["https://tec.openplanner.team/stops/H2ml114a", "https://tec.openplanner.team/stops/H2ml114b"], ["https://tec.openplanner.team/stops/Balssvi2", "https://tec.openplanner.team/stops/Brsg7fo2"], ["https://tec.openplanner.team/stops/Bjodcsb1", "https://tec.openplanner.team/stops/Bjodppe2"], ["https://tec.openplanner.team/stops/Lvehodi1", "https://tec.openplanner.team/stops/Lveveou1"], ["https://tec.openplanner.team/stops/H1ca101b", "https://tec.openplanner.team/stops/H1ca184a"], ["https://tec.openplanner.team/stops/Csepote2", "https://tec.openplanner.team/stops/Csesabo2"], ["https://tec.openplanner.team/stops/Ccicent4", "https://tec.openplanner.team/stops/Cmtstan2"], ["https://tec.openplanner.team/stops/LBEpier1", "https://tec.openplanner.team/stops/LBEpier2"], ["https://tec.openplanner.team/stops/X831aba", "https://tec.openplanner.team/stops/X833aca"], ["https://tec.openplanner.team/stops/Lseberg1", "https://tec.openplanner.team/stops/Lsecoop2"], ["https://tec.openplanner.team/stops/X947aca", "https://tec.openplanner.team/stops/X947afa"], ["https://tec.openplanner.team/stops/N512aca", "https://tec.openplanner.team/stops/N512aid"], ["https://tec.openplanner.team/stops/H4fg116a", "https://tec.openplanner.team/stops/H4ho119a"], ["https://tec.openplanner.team/stops/N155aia", "https://tec.openplanner.team/stops/N170aab"], ["https://tec.openplanner.team/stops/X822aba", "https://tec.openplanner.team/stops/X822ana"], ["https://tec.openplanner.team/stops/Cgzplac2", "https://tec.openplanner.team/stops/Cgzplac6"], ["https://tec.openplanner.team/stops/Llggill2", "https://tec.openplanner.team/stops/Llgmaus1"], ["https://tec.openplanner.team/stops/N232bwb", "https://tec.openplanner.team/stops/N260acb"], ["https://tec.openplanner.team/stops/N521aqa", "https://tec.openplanner.team/stops/N521aub"], ["https://tec.openplanner.team/stops/Lpecaze1", "https://tec.openplanner.team/stops/LWeatel2"], ["https://tec.openplanner.team/stops/N539bfa", "https://tec.openplanner.team/stops/N539bga"], ["https://tec.openplanner.team/stops/LCOcrom2", "https://tec.openplanner.team/stops/LNEbo472"], ["https://tec.openplanner.team/stops/LVefont2", "https://tec.openplanner.team/stops/LVevill2"], ["https://tec.openplanner.team/stops/LSphote1", "https://tec.openplanner.team/stops/LSpvanr1"], ["https://tec.openplanner.team/stops/H4mo138b", "https://tec.openplanner.team/stops/H4mo158a"], ["https://tec.openplanner.team/stops/Csycant2", "https://tec.openplanner.team/stops/Csylaha1"], ["https://tec.openplanner.team/stops/Lheaaz-2", "https://tec.openplanner.team/stops/Lheelva2"], ["https://tec.openplanner.team/stops/N337aea", "https://tec.openplanner.team/stops/N337agb"], ["https://tec.openplanner.team/stops/H5pe141a", "https://tec.openplanner.team/stops/H5pe149b"], ["https://tec.openplanner.team/stops/Lhehoux2", "https://tec.openplanner.team/stops/Lheneuv4"], ["https://tec.openplanner.team/stops/X601bjb", "https://tec.openplanner.team/stops/X662aoa"], ["https://tec.openplanner.team/stops/X721akb", "https://tec.openplanner.team/stops/X721aoa"], ["https://tec.openplanner.team/stops/N120aab", "https://tec.openplanner.team/stops/N121agb"], ["https://tec.openplanner.team/stops/LWOruis1", "https://tec.openplanner.team/stops/LWOwaer1"], ["https://tec.openplanner.team/stops/LLvpost2", "https://tec.openplanner.team/stops/NL78aeb"], ["https://tec.openplanner.team/stops/X608aqa", "https://tec.openplanner.team/stops/X621adb"], ["https://tec.openplanner.team/stops/NL37ala", "https://tec.openplanner.team/stops/NL37aob"], ["https://tec.openplanner.team/stops/LSTchen1", "https://tec.openplanner.team/stops/LSTmast1"], ["https://tec.openplanner.team/stops/H1ho128a", "https://tec.openplanner.team/stops/H1wa135b"], ["https://tec.openplanner.team/stops/X672apa", "https://tec.openplanner.team/stops/X675aba"], ["https://tec.openplanner.team/stops/Bchgpap2", "https://tec.openplanner.team/stops/Bgisber2"], ["https://tec.openplanner.team/stops/Lglsana2", "https://tec.openplanner.team/stops/Lglvand1"], ["https://tec.openplanner.team/stops/N353aba", "https://tec.openplanner.team/stops/N355aea"], ["https://tec.openplanner.team/stops/Ccocroi1", "https://tec.openplanner.team/stops/Csocime1"], ["https://tec.openplanner.team/stops/LcRmich2", "https://tec.openplanner.team/stops/LnNkirc1"], ["https://tec.openplanner.team/stops/Lchsaeg1", "https://tec.openplanner.team/stops/LSReg--1"], ["https://tec.openplanner.team/stops/H4ir163c", "https://tec.openplanner.team/stops/H4ir164a"], ["https://tec.openplanner.team/stops/LbTathe2", "https://tec.openplanner.team/stops/LbTkran2"], ["https://tec.openplanner.team/stops/H1ch143b", "https://tec.openplanner.team/stops/H1hh112a"], ["https://tec.openplanner.team/stops/Bgntcbo2", "https://tec.openplanner.team/stops/Bgntcom2"], ["https://tec.openplanner.team/stops/H1ch142a", "https://tec.openplanner.team/stops/H1nm141b"], ["https://tec.openplanner.team/stops/LCSfagn2", "https://tec.openplanner.team/stops/LCSgend2"], ["https://tec.openplanner.team/stops/LsF39--2", "https://tec.openplanner.team/stops/LsFcafe1"], ["https://tec.openplanner.team/stops/Bwatgar1", "https://tec.openplanner.team/stops/Bwatgar2"], ["https://tec.openplanner.team/stops/Csdetan2", "https://tec.openplanner.team/stops/Csdpira1"], ["https://tec.openplanner.team/stops/X871aab", "https://tec.openplanner.team/stops/X873aaa"], ["https://tec.openplanner.team/stops/Cbmvalt2", "https://tec.openplanner.team/stops/Cstmarz2"], ["https://tec.openplanner.team/stops/N211aha", "https://tec.openplanner.team/stops/N211azb"], ["https://tec.openplanner.team/stops/N204aja", "https://tec.openplanner.team/stops/N205ada"], ["https://tec.openplanner.team/stops/LAVeg--2", "https://tec.openplanner.team/stops/LVHweri1"], ["https://tec.openplanner.team/stops/Bgntcom2", "https://tec.openplanner.team/stops/Bgnttma1"], ["https://tec.openplanner.team/stops/X911ada", "https://tec.openplanner.team/stops/X911asa"], ["https://tec.openplanner.team/stops/X713aia", "https://tec.openplanner.team/stops/X713aib"], ["https://tec.openplanner.team/stops/LAmsart2", "https://tec.openplanner.team/stops/LVLchem1"], ["https://tec.openplanner.team/stops/Lstphys1", "https://tec.openplanner.team/stops/Lstphys2"], ["https://tec.openplanner.team/stops/N524aba", "https://tec.openplanner.team/stops/N524ama"], ["https://tec.openplanner.team/stops/Bwatavo1", "https://tec.openplanner.team/stops/Bwatgar3"], ["https://tec.openplanner.team/stops/X607aaa", "https://tec.openplanner.team/stops/X608aza"], ["https://tec.openplanner.team/stops/N522aba", "https://tec.openplanner.team/stops/N522afa"], ["https://tec.openplanner.team/stops/X684aba", "https://tec.openplanner.team/stops/X684abb"], ["https://tec.openplanner.team/stops/H1lb153a", "https://tec.openplanner.team/stops/H1lb153b"], ["https://tec.openplanner.team/stops/H1ms257b", "https://tec.openplanner.team/stops/H1ss349a"], ["https://tec.openplanner.team/stops/LHCcroy1", "https://tec.openplanner.team/stops/LWEwilc1"], ["https://tec.openplanner.team/stops/X636aja", "https://tec.openplanner.team/stops/X636ala"], ["https://tec.openplanner.team/stops/LGLobor2", "https://tec.openplanner.team/stops/LGLspor1"], ["https://tec.openplanner.team/stops/H2mm136a", "https://tec.openplanner.team/stops/H2mo131b"], ["https://tec.openplanner.team/stops/Cbmpopr2", "https://tec.openplanner.team/stops/Clcfall2"], ["https://tec.openplanner.team/stops/LwYkreu1", "https://tec.openplanner.team/stops/LwYkreu4"], ["https://tec.openplanner.team/stops/H3lr110a", "https://tec.openplanner.team/stops/H3lr113b"], ["https://tec.openplanner.team/stops/X616ahb", "https://tec.openplanner.team/stops/X617aca"], ["https://tec.openplanner.team/stops/LlgLAMB1", "https://tec.openplanner.team/stops/LlgLEOP1"], ["https://tec.openplanner.team/stops/LNAbois1", "https://tec.openplanner.team/stops/LNAdemo1"], ["https://tec.openplanner.team/stops/N543avh", "https://tec.openplanner.team/stops/N543cob"], ["https://tec.openplanner.team/stops/N529afa", "https://tec.openplanner.team/stops/N529akb"], ["https://tec.openplanner.team/stops/N355aba", "https://tec.openplanner.team/stops/N355aeb"], ["https://tec.openplanner.team/stops/H2be101a", "https://tec.openplanner.team/stops/H2lh124a"], ["https://tec.openplanner.team/stops/N155afc", "https://tec.openplanner.team/stops/N155aga"], ["https://tec.openplanner.team/stops/H4ga155b", "https://tec.openplanner.team/stops/H4ga169b"], ["https://tec.openplanner.team/stops/LBPauto2", "https://tec.openplanner.team/stops/LBPrueg2"], ["https://tec.openplanner.team/stops/Lveptle4", "https://tec.openplanner.team/stops/Lveveou1"], ["https://tec.openplanner.team/stops/N232acb", "https://tec.openplanner.team/stops/N232adb"], ["https://tec.openplanner.team/stops/H4ty326a", "https://tec.openplanner.team/stops/H4wc373b"], ["https://tec.openplanner.team/stops/Cmtfabi1", "https://tec.openplanner.team/stops/Cmtfabi2"], ["https://tec.openplanner.team/stops/X999aea", "https://tec.openplanner.team/stops/X999aub"], ["https://tec.openplanner.team/stops/X725bab", "https://tec.openplanner.team/stops/X725bbb"], ["https://tec.openplanner.team/stops/Ccppn1", "https://tec.openplanner.team/stops/Ccpsecp1"], ["https://tec.openplanner.team/stops/X725afd", "https://tec.openplanner.team/stops/X725afh"], ["https://tec.openplanner.team/stops/LWOcour2", "https://tec.openplanner.team/stops/LWOmart2"], ["https://tec.openplanner.team/stops/H1bu139a", "https://tec.openplanner.team/stops/H1mm131a"], ["https://tec.openplanner.team/stops/LAvambr2", "https://tec.openplanner.team/stops/LMXempe2"], ["https://tec.openplanner.team/stops/H1hw123b", "https://tec.openplanner.team/stops/H1hw125a"], ["https://tec.openplanner.team/stops/LOljean2", "https://tec.openplanner.team/stops/LOltill1"], ["https://tec.openplanner.team/stops/LGHplai1", "https://tec.openplanner.team/stops/LTPwann2"], ["https://tec.openplanner.team/stops/H3bi107b", "https://tec.openplanner.team/stops/H3bi110a"], ["https://tec.openplanner.team/stops/Bcrnncb2", "https://tec.openplanner.team/stops/Bcrnnra1"], ["https://tec.openplanner.team/stops/Cbmclar2", "https://tec.openplanner.team/stops/H1tt109b"], ["https://tec.openplanner.team/stops/Cctjoue6", "https://tec.openplanner.team/stops/Cpllimi4"], ["https://tec.openplanner.team/stops/H1br124b", "https://tec.openplanner.team/stops/H1br130b"], ["https://tec.openplanner.team/stops/X812acb", "https://tec.openplanner.team/stops/X826abb"], ["https://tec.openplanner.team/stops/Bitrh%C3%BBl1", "https://tec.openplanner.team/stops/Bronpfe1"], ["https://tec.openplanner.team/stops/N508aba", "https://tec.openplanner.team/stops/N508acb"], ["https://tec.openplanner.team/stops/H1hq158a", "https://tec.openplanner.team/stops/H1sy148c"], ["https://tec.openplanner.team/stops/Caihai82", "https://tec.openplanner.team/stops/Crsaise1"], ["https://tec.openplanner.team/stops/N531acb", "https://tec.openplanner.team/stops/N531aeb"], ["https://tec.openplanner.team/stops/X653afb", "https://tec.openplanner.team/stops/X667acb"], ["https://tec.openplanner.team/stops/X871ada", "https://tec.openplanner.team/stops/X871aea"], ["https://tec.openplanner.team/stops/X725aya", "https://tec.openplanner.team/stops/X725bbb"], ["https://tec.openplanner.team/stops/H4ty269a", "https://tec.openplanner.team/stops/H4ty292a"], ["https://tec.openplanner.team/stops/N241aca", "https://tec.openplanner.team/stops/N241ada"], ["https://tec.openplanner.team/stops/LENaout1", "https://tec.openplanner.team/stops/LENchem1"], ["https://tec.openplanner.team/stops/Blanath2", "https://tec.openplanner.team/stops/Blanmde2"], ["https://tec.openplanner.team/stops/Bgisber1", "https://tec.openplanner.team/stops/Bgisber2"], ["https://tec.openplanner.team/stops/Lcealig1", "https://tec.openplanner.team/stops/Lcealig2"], ["https://tec.openplanner.team/stops/H1by108b", "https://tec.openplanner.team/stops/H1by108e"], ["https://tec.openplanner.team/stops/H1wa132a", "https://tec.openplanner.team/stops/H1wa145a"], ["https://tec.openplanner.team/stops/Bboncgs1", "https://tec.openplanner.team/stops/Bboneta2"], ["https://tec.openplanner.team/stops/N521aha", "https://tec.openplanner.team/stops/N521apa"], ["https://tec.openplanner.team/stops/LHEvign1", "https://tec.openplanner.team/stops/LHEvign2"], ["https://tec.openplanner.team/stops/Ljucano1", "https://tec.openplanner.team/stops/Ljuetie2"], ["https://tec.openplanner.team/stops/H1hh111a", "https://tec.openplanner.team/stops/H1hh114a"], ["https://tec.openplanner.team/stops/LLUmc--2", "https://tec.openplanner.team/stops/LLUtill2"], ["https://tec.openplanner.team/stops/Llgcadr2", "https://tec.openplanner.team/stops/Llgcadr3"], ["https://tec.openplanner.team/stops/N202ahb", "https://tec.openplanner.team/stops/N202aia"], ["https://tec.openplanner.team/stops/LSNecol3", "https://tec.openplanner.team/stops/LSNecol4"], ["https://tec.openplanner.team/stops/X801aib", "https://tec.openplanner.team/stops/X801boa"], ["https://tec.openplanner.team/stops/H3bo100c", "https://tec.openplanner.team/stops/H3th127a"], ["https://tec.openplanner.team/stops/Bhptcha1", "https://tec.openplanner.team/stops/Bhptpla2"], ["https://tec.openplanner.team/stops/Ljecoqu2", "https://tec.openplanner.team/stops/Ljexhav2"], ["https://tec.openplanner.team/stops/N301ama", "https://tec.openplanner.team/stops/N302afa"], ["https://tec.openplanner.team/stops/Cgycime4", "https://tec.openplanner.team/stops/Cgylami2"], ["https://tec.openplanner.team/stops/Cdogrro1", "https://tec.openplanner.team/stops/Cstplac2"], ["https://tec.openplanner.team/stops/H4ea132a", "https://tec.openplanner.team/stops/H4ea132c"], ["https://tec.openplanner.team/stops/Cmohotv4", "https://tec.openplanner.team/stops/Cmorgof2"], ["https://tec.openplanner.team/stops/H4fo118b", "https://tec.openplanner.team/stops/H4pe128b"], ["https://tec.openplanner.team/stops/H1og131b", "https://tec.openplanner.team/stops/H1og134b"], ["https://tec.openplanner.team/stops/Bblager1", "https://tec.openplanner.team/stops/Bplnfpa1"], ["https://tec.openplanner.team/stops/Bwatcap1", "https://tec.openplanner.team/stops/Bwatsan1"], ["https://tec.openplanner.team/stops/Crchutt1", "https://tec.openplanner.team/stops/Crcrwas2"], ["https://tec.openplanner.team/stops/Cgxchan1", "https://tec.openplanner.team/stops/Cmofosb2"], ["https://tec.openplanner.team/stops/LwYbruc3", "https://tec.openplanner.team/stops/LwYbruc4"], ["https://tec.openplanner.team/stops/N571adb", "https://tec.openplanner.team/stops/N573adb"], ["https://tec.openplanner.team/stops/LLOspin1", "https://tec.openplanner.team/stops/LLOspin2"], ["https://tec.openplanner.team/stops/N506bma", "https://tec.openplanner.team/stops/N506bqa"], ["https://tec.openplanner.team/stops/Btstbes1", "https://tec.openplanner.team/stops/Btstche2"], ["https://tec.openplanner.team/stops/LFymare3", "https://tec.openplanner.team/stops/LFypont1"], ["https://tec.openplanner.team/stops/LSubass1", "https://tec.openplanner.team/stops/LSuusin1"], ["https://tec.openplanner.team/stops/X654afa", "https://tec.openplanner.team/stops/X670ala"], ["https://tec.openplanner.team/stops/H4rm114a", "https://tec.openplanner.team/stops/H4rm114b"], ["https://tec.openplanner.team/stops/LVLeg--3", "https://tec.openplanner.team/stops/LVLruis1"], ["https://tec.openplanner.team/stops/LSssurl2", "https://tec.openplanner.team/stops/N506bqa"], ["https://tec.openplanner.team/stops/LMNheme2", "https://tec.openplanner.team/stops/LMNpann1"], ["https://tec.openplanner.team/stops/LPcforg1", "https://tec.openplanner.team/stops/LVParal1"], ["https://tec.openplanner.team/stops/N502aca", "https://tec.openplanner.team/stops/N502acb"], ["https://tec.openplanner.team/stops/LMNgare2", "https://tec.openplanner.team/stops/LMNgend2"], ["https://tec.openplanner.team/stops/H4ea131a", "https://tec.openplanner.team/stops/H4ea134a"], ["https://tec.openplanner.team/stops/LPoewer1", "https://tec.openplanner.team/stops/LPoneuf1"], ["https://tec.openplanner.team/stops/Bnetrtb2", "https://tec.openplanner.team/stops/Bnetvan1"], ["https://tec.openplanner.team/stops/Bbaubru1", "https://tec.openplanner.team/stops/Bbaulil1"], ["https://tec.openplanner.team/stops/LoUpete1", "https://tec.openplanner.team/stops/LoUpete2"], ["https://tec.openplanner.team/stops/X820ada", "https://tec.openplanner.team/stops/X820agc"], ["https://tec.openplanner.team/stops/H5pe133b", "https://tec.openplanner.team/stops/H5pe147a"], ["https://tec.openplanner.team/stops/NC14aab", "https://tec.openplanner.team/stops/NC14aua"], ["https://tec.openplanner.team/stops/N501hrb", "https://tec.openplanner.team/stops/N501isb"], ["https://tec.openplanner.team/stops/X923acb", "https://tec.openplanner.team/stops/X923aeb"], ["https://tec.openplanner.team/stops/X661amb", "https://tec.openplanner.team/stops/X661bcb"], ["https://tec.openplanner.team/stops/Bvilcha1", "https://tec.openplanner.team/stops/Bvilvil2"], ["https://tec.openplanner.team/stops/N550ajb", "https://tec.openplanner.team/stops/N550akb"], ["https://tec.openplanner.team/stops/X398aab", "https://tec.openplanner.team/stops/X398acb"], ["https://tec.openplanner.team/stops/LHdvill1", "https://tec.openplanner.team/stops/LLOspin1"], ["https://tec.openplanner.team/stops/LJUmc--2", "https://tec.openplanner.team/stops/LJUxhen3"], ["https://tec.openplanner.team/stops/Crglyre1", "https://tec.openplanner.team/stops/Crgmgri1"], ["https://tec.openplanner.team/stops/LAyegli2", "https://tec.openplanner.team/stops/LSHmais1"], ["https://tec.openplanner.team/stops/H1ho132b", "https://tec.openplanner.team/stops/H1ho144b"], ["https://tec.openplanner.team/stops/N170aba", "https://tec.openplanner.team/stops/NC14abb"], ["https://tec.openplanner.team/stops/H4hx110a", "https://tec.openplanner.team/stops/H4hx113b"], ["https://tec.openplanner.team/stops/LVLf10-1", "https://tec.openplanner.team/stops/LVLgotr3"], ["https://tec.openplanner.team/stops/X993ahb", "https://tec.openplanner.team/stops/X993aia"], ["https://tec.openplanner.team/stops/H1fa117a", "https://tec.openplanner.team/stops/H1fa117b"], ["https://tec.openplanner.team/stops/Bchgbar2", "https://tec.openplanner.team/stops/Bchgflo1"], ["https://tec.openplanner.team/stops/Lhurfay2", "https://tec.openplanner.team/stops/LLrgare2"], ["https://tec.openplanner.team/stops/X666aka", "https://tec.openplanner.team/stops/X666akb"], ["https://tec.openplanner.team/stops/LWapl--3", "https://tec.openplanner.team/stops/LWapl--4"], ["https://tec.openplanner.team/stops/X743acb", "https://tec.openplanner.team/stops/X756aka"], ["https://tec.openplanner.team/stops/Ctrleju2", "https://tec.openplanner.team/stops/Ctrstro1"], ["https://tec.openplanner.team/stops/LAYcher1", "https://tec.openplanner.team/stops/LAYcorn1"], ["https://tec.openplanner.team/stops/Bllnrod3", "https://tec.openplanner.team/stops/Bmsgaxp1"], ["https://tec.openplanner.team/stops/X771anb", "https://tec.openplanner.team/stops/X773anb"], ["https://tec.openplanner.team/stops/X888afb", "https://tec.openplanner.team/stops/X888aga"], ["https://tec.openplanner.team/stops/X822adb", "https://tec.openplanner.team/stops/X822agb"], ["https://tec.openplanner.team/stops/H2pe163a", "https://tec.openplanner.team/stops/H2tr249a"], ["https://tec.openplanner.team/stops/Cgpauln1", "https://tec.openplanner.team/stops/Cgpauln2"], ["https://tec.openplanner.team/stops/Lengran1", "https://tec.openplanner.team/stops/Lveoctr2"], ["https://tec.openplanner.team/stops/X750axa", "https://tec.openplanner.team/stops/X750beb"], ["https://tec.openplanner.team/stops/Cwgmutu1", "https://tec.openplanner.team/stops/Cwgplac2"], ["https://tec.openplanner.team/stops/Ldichat2", "https://tec.openplanner.team/stops/Ldilyce*"], ["https://tec.openplanner.team/stops/N513bab", "https://tec.openplanner.team/stops/N513bbd"], ["https://tec.openplanner.team/stops/X760ada", "https://tec.openplanner.team/stops/X760aeb"], ["https://tec.openplanner.team/stops/H2go114c", "https://tec.openplanner.team/stops/H2go115a"], ["https://tec.openplanner.team/stops/N574aaa", "https://tec.openplanner.team/stops/N574aba"], ["https://tec.openplanner.team/stops/LHHgare2", "https://tec.openplanner.team/stops/LSG111-1"], ["https://tec.openplanner.team/stops/H4ho119b", "https://tec.openplanner.team/stops/H4ho120a"], ["https://tec.openplanner.team/stops/LFMkrin2", "https://tec.openplanner.team/stops/LVu03--2"], ["https://tec.openplanner.team/stops/LAvatri1", "https://tec.openplanner.team/stops/LAvchpl2"], ["https://tec.openplanner.team/stops/N501evb", "https://tec.openplanner.team/stops/N501kjb"], ["https://tec.openplanner.team/stops/H4ty297a", "https://tec.openplanner.team/stops/H4ty314e"], ["https://tec.openplanner.team/stops/NL68add", "https://tec.openplanner.team/stops/NL68aga"], ["https://tec.openplanner.team/stops/LLUg82-1", "https://tec.openplanner.team/stops/LLUgend2"], ["https://tec.openplanner.team/stops/X660aib", "https://tec.openplanner.team/stops/X672ahb"], ["https://tec.openplanner.team/stops/Cobmara1", "https://tec.openplanner.team/stops/Cobmven1"], ["https://tec.openplanner.team/stops/LBEtrix2", "https://tec.openplanner.team/stops/LDLbois2"], ["https://tec.openplanner.team/stops/X818aab", "https://tec.openplanner.team/stops/X818aba"], ["https://tec.openplanner.team/stops/LSPfrai1", "https://tec.openplanner.team/stops/LSPfrai2"], ["https://tec.openplanner.team/stops/LAibego1", "https://tec.openplanner.team/stops/Lccaigr1"], ["https://tec.openplanner.team/stops/Cfocorn1", "https://tec.openplanner.team/stops/Cforpet2"], ["https://tec.openplanner.team/stops/H1ch106a", "https://tec.openplanner.team/stops/H5ma186a"], ["https://tec.openplanner.team/stops/X818anb", "https://tec.openplanner.team/stops/X818awa"], ["https://tec.openplanner.team/stops/H1on128a", "https://tec.openplanner.team/stops/H1on128d"], ["https://tec.openplanner.team/stops/LhEherb1", "https://tec.openplanner.team/stops/LhEklos1"], ["https://tec.openplanner.team/stops/Cmogtri1", "https://tec.openplanner.team/stops/Cmogtri2"], ["https://tec.openplanner.team/stops/N348aab", "https://tec.openplanner.team/stops/N348ada"], ["https://tec.openplanner.team/stops/H4mv193a", "https://tec.openplanner.team/stops/H4mv196a"], ["https://tec.openplanner.team/stops/H1ol142a", "https://tec.openplanner.team/stops/H1ol144a"], ["https://tec.openplanner.team/stops/Cgostex2", "https://tec.openplanner.team/stops/Cjuaero1"], ["https://tec.openplanner.team/stops/Lsn184-1", "https://tec.openplanner.team/stops/Lsnhoco2"], ["https://tec.openplanner.team/stops/H2ch100b", "https://tec.openplanner.team/stops/H2ch123c"], ["https://tec.openplanner.team/stops/Cmqcend1", "https://tec.openplanner.team/stops/Cmqchap2"], ["https://tec.openplanner.team/stops/Lhubriq1", "https://tec.openplanner.team/stops/Lmntast3"], ["https://tec.openplanner.team/stops/H4ve135a", "https://tec.openplanner.team/stops/H4ve135b"], ["https://tec.openplanner.team/stops/LBRmc--3", "https://tec.openplanner.team/stops/LBRruel2"], ["https://tec.openplanner.team/stops/N514acb", "https://tec.openplanner.team/stops/N514aka"], ["https://tec.openplanner.team/stops/N501ira", "https://tec.openplanner.team/stops/N501irb"], ["https://tec.openplanner.team/stops/X714ada", "https://tec.openplanner.team/stops/X714aeb"], ["https://tec.openplanner.team/stops/N531alb", "https://tec.openplanner.team/stops/N531arb"], ["https://tec.openplanner.team/stops/Lsephar2", "https://tec.openplanner.team/stops/Ltihala2"], ["https://tec.openplanner.team/stops/X670aka", "https://tec.openplanner.team/stops/X670amb"], ["https://tec.openplanner.team/stops/H1ha193a", "https://tec.openplanner.team/stops/H1ms282a"], ["https://tec.openplanner.team/stops/Csdpira2", "https://tec.openplanner.team/stops/Csdrofr1"], ["https://tec.openplanner.team/stops/X641aea", "https://tec.openplanner.team/stops/X641akb"], ["https://tec.openplanner.team/stops/Lghmavi1", "https://tec.openplanner.team/stops/Lghpero2"], ["https://tec.openplanner.team/stops/Bcsecar1", "https://tec.openplanner.team/stops/Bcsepes2"], ["https://tec.openplanner.team/stops/LTPbeau1", "https://tec.openplanner.team/stops/LTPpisc2"], ["https://tec.openplanner.team/stops/X837aia", "https://tec.openplanner.team/stops/X886aaa"], ["https://tec.openplanner.team/stops/NC23abb", "https://tec.openplanner.team/stops/NC23acb"], ["https://tec.openplanner.team/stops/Llgbour1", "https://tec.openplanner.team/stops/Llgcmes2"], ["https://tec.openplanner.team/stops/H2ch105c", "https://tec.openplanner.team/stops/H2ch108a"], ["https://tec.openplanner.team/stops/LHUaveu1", "https://tec.openplanner.team/stops/LHUfont1"], ["https://tec.openplanner.team/stops/N501hmb", "https://tec.openplanner.team/stops/N501iub"], ["https://tec.openplanner.team/stops/X938aea", "https://tec.openplanner.team/stops/X950aca"], ["https://tec.openplanner.team/stops/Cchba09", "https://tec.openplanner.team/stops/Cchba12"], ["https://tec.openplanner.team/stops/Lfhdonn1", "https://tec.openplanner.team/stops/Lfhxhor1"], ["https://tec.openplanner.team/stops/LPLbiol1", "https://tec.openplanner.team/stops/LPLline2"], ["https://tec.openplanner.team/stops/N343aab", "https://tec.openplanner.team/stops/N343abb"], ["https://tec.openplanner.team/stops/Blmlcle2", "https://tec.openplanner.team/stops/Blmlmco2"], ["https://tec.openplanner.team/stops/LESpaix1", "https://tec.openplanner.team/stops/LESslmo1"], ["https://tec.openplanner.team/stops/LNOning2", "https://tec.openplanner.team/stops/LNOsedo2"], ["https://tec.openplanner.team/stops/LMAroch3", "https://tec.openplanner.team/stops/LMAroch4"], ["https://tec.openplanner.team/stops/NC11aoa", "https://tec.openplanner.team/stops/NC11aob"], ["https://tec.openplanner.team/stops/H4cr110a", "https://tec.openplanner.team/stops/H4ff122b"], ["https://tec.openplanner.team/stops/H1hq124b", "https://tec.openplanner.team/stops/H1hq126b"], ["https://tec.openplanner.team/stops/LFPkape1", "https://tec.openplanner.team/stops/LFPkape4"], ["https://tec.openplanner.team/stops/X805aka", "https://tec.openplanner.team/stops/X807adb"], ["https://tec.openplanner.team/stops/H1er105a", "https://tec.openplanner.team/stops/H1er111a"], ["https://tec.openplanner.team/stops/Bnstmig2", "https://tec.openplanner.team/stops/Bnstver2"], ["https://tec.openplanner.team/stops/X921afa", "https://tec.openplanner.team/stops/X921apa"], ["https://tec.openplanner.team/stops/Cgzcorn2", "https://tec.openplanner.team/stops/Cgzplac6"], ["https://tec.openplanner.team/stops/LMNjard2", "https://tec.openplanner.team/stops/LPbusin2"], ["https://tec.openplanner.team/stops/X786adb", "https://tec.openplanner.team/stops/X789aga"], ["https://tec.openplanner.team/stops/H4bu108a", "https://tec.openplanner.team/stops/H4cw104a"], ["https://tec.openplanner.team/stops/LaMadam2", "https://tec.openplanner.team/stops/LaMschw2"], ["https://tec.openplanner.team/stops/LFehaut2", "https://tec.openplanner.team/stops/LFemoul1"], ["https://tec.openplanner.team/stops/Lpeeg--2", "https://tec.openplanner.team/stops/Lpevesd1"], ["https://tec.openplanner.team/stops/N145aja", "https://tec.openplanner.team/stops/N145aka"], ["https://tec.openplanner.team/stops/N505ada", "https://tec.openplanner.team/stops/N505aeb"], ["https://tec.openplanner.team/stops/N117aga", "https://tec.openplanner.team/stops/N117ara"], ["https://tec.openplanner.team/stops/Blthvil1", "https://tec.openplanner.team/stops/Blthwav3"], ["https://tec.openplanner.team/stops/H1gh163b", "https://tec.openplanner.team/stops/H1je225a"], ["https://tec.openplanner.team/stops/X746ada", "https://tec.openplanner.team/stops/X746aeb"], ["https://tec.openplanner.team/stops/Llgjose1", "https://tec.openplanner.team/stops/Llgware2"], ["https://tec.openplanner.team/stops/H2bh110a", "https://tec.openplanner.team/stops/H2bh110d"], ["https://tec.openplanner.team/stops/LBegare2", "https://tec.openplanner.team/stops/LWHmath2"], ["https://tec.openplanner.team/stops/Ccogibr1", "https://tec.openplanner.team/stops/Ccovies1"], ["https://tec.openplanner.team/stops/X983ada", "https://tec.openplanner.team/stops/X996aha"], ["https://tec.openplanner.team/stops/X917aca", "https://tec.openplanner.team/stops/X919aeb"], ["https://tec.openplanner.team/stops/Llgamer2", "https://tec.openplanner.team/stops/Llgamer4"], ["https://tec.openplanner.team/stops/LVnetan1", "https://tec.openplanner.team/stops/LVnetan2"], ["https://tec.openplanner.team/stops/X612aba", "https://tec.openplanner.team/stops/X623aaa"], ["https://tec.openplanner.team/stops/X666ada", "https://tec.openplanner.team/stops/X666aea"], ["https://tec.openplanner.team/stops/LFIinse1", "https://tec.openplanner.team/stops/LMYvill1"], ["https://tec.openplanner.team/stops/X575afb", "https://tec.openplanner.team/stops/X575agb"], ["https://tec.openplanner.team/stops/X749aab", "https://tec.openplanner.team/stops/X754aeb"], ["https://tec.openplanner.team/stops/X805aab", "https://tec.openplanner.team/stops/X805akb"], ["https://tec.openplanner.team/stops/X926aaa", "https://tec.openplanner.team/stops/X926afb"], ["https://tec.openplanner.team/stops/X793aaa", "https://tec.openplanner.team/stops/X793apb"], ["https://tec.openplanner.team/stops/Bcrncce2", "https://tec.openplanner.team/stops/N584acb"], ["https://tec.openplanner.team/stops/LAWcite2", "https://tec.openplanner.team/stops/LAWcorn1"], ["https://tec.openplanner.team/stops/Lsefive1", "https://tec.openplanner.team/stops/Lsemany2"], ["https://tec.openplanner.team/stops/N232bba", "https://tec.openplanner.team/stops/N232bsa"], ["https://tec.openplanner.team/stops/Ljekess2", "https://tec.openplanner.team/stops/Ljestat3"], ["https://tec.openplanner.team/stops/Bcbqcim2", "https://tec.openplanner.team/stops/Bcbqp252"], ["https://tec.openplanner.team/stops/Bblaccm1", "https://tec.openplanner.team/stops/Bblamer2"], ["https://tec.openplanner.team/stops/X601aga", "https://tec.openplanner.team/stops/X601cba"], ["https://tec.openplanner.team/stops/LdEkreu2", "https://tec.openplanner.team/stops/LdEschw2"], ["https://tec.openplanner.team/stops/Beclpma2", "https://tec.openplanner.team/stops/H2ec105a"], ["https://tec.openplanner.team/stops/LHMgulp1", "https://tec.openplanner.team/stops/LHMmarq1"], ["https://tec.openplanner.team/stops/N347adb", "https://tec.openplanner.team/stops/X347ajb"], ["https://tec.openplanner.team/stops/Cchblne1", "https://tec.openplanner.team/stops/Cdalpla2"], ["https://tec.openplanner.team/stops/X896aeb", "https://tec.openplanner.team/stops/X993aja"], ["https://tec.openplanner.team/stops/X743aab", "https://tec.openplanner.team/stops/X743abb"], ["https://tec.openplanner.team/stops/N301abb", "https://tec.openplanner.team/stops/N301abc"], ["https://tec.openplanner.team/stops/X898aib", "https://tec.openplanner.team/stops/X898aja"], ["https://tec.openplanner.team/stops/Bsjgmil1", "https://tec.openplanner.team/stops/Bsjgmil2"], ["https://tec.openplanner.team/stops/X942abb", "https://tec.openplanner.team/stops/X942abd"], ["https://tec.openplanner.team/stops/Ljedepa2", "https://tec.openplanner.team/stops/Ljemeca1"], ["https://tec.openplanner.team/stops/X788abb", "https://tec.openplanner.team/stops/X789ahd"], ["https://tec.openplanner.team/stops/Bhercsj1", "https://tec.openplanner.team/stops/Bpiehte2"], ["https://tec.openplanner.team/stops/H1fv102a", "https://tec.openplanner.team/stops/H1fv102b"], ["https://tec.openplanner.team/stops/X663aab", "https://tec.openplanner.team/stops/X663ana"], ["https://tec.openplanner.team/stops/LsVfrde2", "https://tec.openplanner.team/stops/LsVviel1"], ["https://tec.openplanner.team/stops/LVErtt-1", "https://tec.openplanner.team/stops/LVErtt-2"], ["https://tec.openplanner.team/stops/H1he104a", "https://tec.openplanner.team/stops/H1he109a"], ["https://tec.openplanner.team/stops/Bixlpat1", "https://tec.openplanner.team/stops/Buccbas2"], ["https://tec.openplanner.team/stops/N524afb", "https://tec.openplanner.team/stops/N524aid"], ["https://tec.openplanner.team/stops/X801cia", "https://tec.openplanner.team/stops/X801cib"], ["https://tec.openplanner.team/stops/Lmocail1", "https://tec.openplanner.team/stops/Lmocail2"], ["https://tec.openplanner.team/stops/Loubiez2", "https://tec.openplanner.team/stops/Loubour1"], ["https://tec.openplanner.team/stops/H4ea130b", "https://tec.openplanner.team/stops/H4ea134b"], ["https://tec.openplanner.team/stops/Bptecal1", "https://tec.openplanner.team/stops/Bptemch2"], ["https://tec.openplanner.team/stops/X601bta", "https://tec.openplanner.team/stops/X662atb"], ["https://tec.openplanner.team/stops/X824ada", "https://tec.openplanner.team/stops/X824adb"], ["https://tec.openplanner.team/stops/X983aaa", "https://tec.openplanner.team/stops/X983agb"], ["https://tec.openplanner.team/stops/H1lb137b", "https://tec.openplanner.team/stops/H1lb138a"], ["https://tec.openplanner.team/stops/LVMcent1", "https://tec.openplanner.team/stops/LVMcent2"], ["https://tec.openplanner.team/stops/Cgogare1", "https://tec.openplanner.team/stops/Cgostex1"], ["https://tec.openplanner.team/stops/X664aja", "https://tec.openplanner.team/stops/X664aqa"], ["https://tec.openplanner.team/stops/LVNroua1", "https://tec.openplanner.team/stops/LWDsott1"], ["https://tec.openplanner.team/stops/X673ada", "https://tec.openplanner.team/stops/X673aeb"], ["https://tec.openplanner.team/stops/Btgrpla1", "https://tec.openplanner.team/stops/N584aba"], ["https://tec.openplanner.team/stops/H1bs111a", "https://tec.openplanner.team/stops/H1bs111b"], ["https://tec.openplanner.team/stops/X625aea", "https://tec.openplanner.team/stops/X625aeb"], ["https://tec.openplanner.team/stops/N340ada", "https://tec.openplanner.team/stops/N340adb"], ["https://tec.openplanner.team/stops/Bsomthi1", "https://tec.openplanner.team/stops/N584bnb"], ["https://tec.openplanner.team/stops/NL77ala", "https://tec.openplanner.team/stops/NL78akb"], ["https://tec.openplanner.team/stops/N204aca", "https://tec.openplanner.team/stops/N204adb"], ["https://tec.openplanner.team/stops/LrAalte2", "https://tec.openplanner.team/stops/LrAneue2"], ["https://tec.openplanner.team/stops/LFCalte1", "https://tec.openplanner.team/stops/LFCkerk2"], ["https://tec.openplanner.team/stops/Bwatb4s1", "https://tec.openplanner.team/stops/Bwatcro2"], ["https://tec.openplanner.team/stops/Lanfont1", "https://tec.openplanner.team/stops/Lannico2"], ["https://tec.openplanner.team/stops/LkEfrie2", "https://tec.openplanner.team/stops/LkEhatt2"], ["https://tec.openplanner.team/stops/H2ch100b", "https://tec.openplanner.team/stops/H2ch107a"], ["https://tec.openplanner.team/stops/N501kga", "https://tec.openplanner.team/stops/N501kha"], ["https://tec.openplanner.team/stops/Livcoll2", "https://tec.openplanner.team/stops/Livroch1"], ["https://tec.openplanner.team/stops/H2sb227b", "https://tec.openplanner.team/stops/H2sb243b"], ["https://tec.openplanner.team/stops/H4va232b", "https://tec.openplanner.team/stops/H5at129b"], ["https://tec.openplanner.team/stops/X998aab", "https://tec.openplanner.team/stops/X999amb"], ["https://tec.openplanner.team/stops/H1em102a", "https://tec.openplanner.team/stops/H1ev114b"], ["https://tec.openplanner.team/stops/Cfcleco2", "https://tec.openplanner.team/stops/Cfcpier1"], ["https://tec.openplanner.team/stops/Lscbarg1", "https://tec.openplanner.team/stops/Lscbarg2"], ["https://tec.openplanner.team/stops/X926aab", "https://tec.openplanner.team/stops/X926aba"], ["https://tec.openplanner.team/stops/Louetan2", "https://tec.openplanner.team/stops/Louwuid2"], ["https://tec.openplanner.team/stops/Bnivga31", "https://tec.openplanner.team/stops/Bnivga41"], ["https://tec.openplanner.team/stops/Bbcogpl2", "https://tec.openplanner.team/stops/H3br108d"], ["https://tec.openplanner.team/stops/X870aea", "https://tec.openplanner.team/stops/X870aeb"], ["https://tec.openplanner.team/stops/Ldilyce*", "https://tec.openplanner.team/stops/Ldineuf2"], ["https://tec.openplanner.team/stops/Clvndam1", "https://tec.openplanner.team/stops/Cmlavch1"], ["https://tec.openplanner.team/stops/Bbsicea2", "https://tec.openplanner.team/stops/Bwaunop2"], ["https://tec.openplanner.team/stops/X608ana", "https://tec.openplanner.team/stops/X622acb"], ["https://tec.openplanner.team/stops/Ctrleju1", "https://tec.openplanner.team/stops/Ctrvert2"], ["https://tec.openplanner.team/stops/N118ayb", "https://tec.openplanner.team/stops/N155aka"], ["https://tec.openplanner.team/stops/LLReg--2", "https://tec.openplanner.team/stops/LLSba4-1"], ["https://tec.openplanner.team/stops/N501eza", "https://tec.openplanner.team/stops/N501jrb"], ["https://tec.openplanner.team/stops/H1cu111b", "https://tec.openplanner.team/stops/H1ms922a"], ["https://tec.openplanner.team/stops/H4ty349a", "https://tec.openplanner.team/stops/H4ty349b"], ["https://tec.openplanner.team/stops/X650aeb", "https://tec.openplanner.team/stops/X650afe"], ["https://tec.openplanner.team/stops/H1bi100a", "https://tec.openplanner.team/stops/H1bu139a"], ["https://tec.openplanner.team/stops/H1si151a", "https://tec.openplanner.team/stops/H1si163b"], ["https://tec.openplanner.team/stops/Ccodubo1", "https://tec.openplanner.team/stops/Cpcchau"], ["https://tec.openplanner.team/stops/X663apa", "https://tec.openplanner.team/stops/X663aqa"], ["https://tec.openplanner.team/stops/LOchalo2", "https://tec.openplanner.team/stops/NL35acb"], ["https://tec.openplanner.team/stops/N507aib", "https://tec.openplanner.team/stops/N508aca"], ["https://tec.openplanner.team/stops/Bwbfeta2", "https://tec.openplanner.team/stops/Bwbfgar1"], ["https://tec.openplanner.team/stops/Lsmpost1", "https://tec.openplanner.team/stops/Lsmpost2"], ["https://tec.openplanner.team/stops/LAipala1", "https://tec.openplanner.team/stops/LAipala2"], ["https://tec.openplanner.team/stops/LWNcham1", "https://tec.openplanner.team/stops/LWNcham2"], ["https://tec.openplanner.team/stops/LBXhacb2", "https://tec.openplanner.team/stops/LHEpriv2"], ["https://tec.openplanner.team/stops/Cfmsncb2", "https://tec.openplanner.team/stops/Cfmwaut2"], ["https://tec.openplanner.team/stops/X901awa", "https://tec.openplanner.team/stops/X902bfa"], ["https://tec.openplanner.team/stops/H5el110b", "https://tec.openplanner.team/stops/H5el117a"], ["https://tec.openplanner.team/stops/Becebju2", "https://tec.openplanner.team/stops/Beceres2"], ["https://tec.openplanner.team/stops/N110afb", "https://tec.openplanner.team/stops/N110aga"], ["https://tec.openplanner.team/stops/LCsbors1", "https://tec.openplanner.team/stops/LVBneuv1"], ["https://tec.openplanner.team/stops/Llgpier2", "https://tec.openplanner.team/stops/LlgPTAV6"], ["https://tec.openplanner.team/stops/LCRf14-1", "https://tec.openplanner.team/stops/LTymahr2"], ["https://tec.openplanner.team/stops/H3bi104a", "https://tec.openplanner.team/stops/H3bi110b"], ["https://tec.openplanner.team/stops/N229aga", "https://tec.openplanner.team/stops/N291aba"], ["https://tec.openplanner.team/stops/X629aba", "https://tec.openplanner.team/stops/X636anb"], ["https://tec.openplanner.team/stops/H1em103b", "https://tec.openplanner.team/stops/H1em106b"], ["https://tec.openplanner.team/stops/Llgchal1", "https://tec.openplanner.team/stops/Llgelis2"], ["https://tec.openplanner.team/stops/LROhaie1", "https://tec.openplanner.team/stops/LSorobe1"], ["https://tec.openplanner.team/stops/Bbiemor2", "https://tec.openplanner.team/stops/Bgzdast2"], ["https://tec.openplanner.team/stops/X850aja", "https://tec.openplanner.team/stops/X850aoa"], ["https://tec.openplanner.team/stops/X661ama", "https://tec.openplanner.team/stops/X661amb"], ["https://tec.openplanner.team/stops/H1le128a", "https://tec.openplanner.team/stops/H1le128d"], ["https://tec.openplanner.team/stops/X345aaa", "https://tec.openplanner.team/stops/X363aaa"], ["https://tec.openplanner.team/stops/Llgrame1", "https://tec.openplanner.team/stops/Llgwiar2"], ["https://tec.openplanner.team/stops/X623afa", "https://tec.openplanner.team/stops/X623aga"], ["https://tec.openplanner.team/stops/X636ata", "https://tec.openplanner.team/stops/X636ayb"], ["https://tec.openplanner.team/stops/Bmoucnd1", "https://tec.openplanner.team/stops/Bottrfa4"], ["https://tec.openplanner.team/stops/Cgygazo2", "https://tec.openplanner.team/stops/CMgazo2"], ["https://tec.openplanner.team/stops/LVAgemm1", "https://tec.openplanner.team/stops/LVAmaas1"], ["https://tec.openplanner.team/stops/N532aab", "https://tec.openplanner.team/stops/N532aha"], ["https://tec.openplanner.team/stops/N170ada", "https://tec.openplanner.team/stops/N170adb"], ["https://tec.openplanner.team/stops/Ctrrpla1", "https://tec.openplanner.team/stops/Ctrrpla2"], ["https://tec.openplanner.team/stops/Llgcite2", "https://tec.openplanner.team/stops/Llghong2"], ["https://tec.openplanner.team/stops/LFArela5", "https://tec.openplanner.team/stops/LWDchab2"], ["https://tec.openplanner.team/stops/H4bh102d", "https://tec.openplanner.team/stops/H4bh104a"], ["https://tec.openplanner.team/stops/LaHzoll*", "https://tec.openplanner.team/stops/LbAhenk1"], ["https://tec.openplanner.team/stops/H1fr111a", "https://tec.openplanner.team/stops/H1fr112b"], ["https://tec.openplanner.team/stops/N101ala", "https://tec.openplanner.team/stops/N101alb"], ["https://tec.openplanner.team/stops/X639aoa", "https://tec.openplanner.team/stops/X639aoc"], ["https://tec.openplanner.team/stops/LHThall4", "https://tec.openplanner.team/stops/LLxcana2"], ["https://tec.openplanner.team/stops/N501gfa", "https://tec.openplanner.team/stops/N501gva"], ["https://tec.openplanner.team/stops/N170aca", "https://tec.openplanner.team/stops/N170acb"], ["https://tec.openplanner.team/stops/Cfcrerp2", "https://tec.openplanner.team/stops/N103aea"], ["https://tec.openplanner.team/stops/LHehacc1", "https://tec.openplanner.team/stops/LHehacc2"], ["https://tec.openplanner.team/stops/Lchec--2", "https://tec.openplanner.team/stops/Lvieg--1"], ["https://tec.openplanner.team/stops/Blindel5", "https://tec.openplanner.team/stops/Blindel6"], ["https://tec.openplanner.team/stops/H1qu106a", "https://tec.openplanner.team/stops/H1qu109a"], ["https://tec.openplanner.team/stops/Clproi1", "https://tec.openplanner.team/stops/Clpsola2"], ["https://tec.openplanner.team/stops/LbTaral2", "https://tec.openplanner.team/stops/LbTmons1"], ["https://tec.openplanner.team/stops/Csyplac2", "https://tec.openplanner.team/stops/H1mb125a"], ["https://tec.openplanner.team/stops/NL76aab", "https://tec.openplanner.team/stops/NL76aba"], ["https://tec.openplanner.team/stops/N543aza", "https://tec.openplanner.team/stops/N543cga"], ["https://tec.openplanner.team/stops/Cfrtill2", "https://tec.openplanner.team/stops/Crewath2"], ["https://tec.openplanner.team/stops/X725axa", "https://tec.openplanner.team/stops/X725aza"], ["https://tec.openplanner.team/stops/Llgchat2", "https://tec.openplanner.team/stops/Llggcha1"], ["https://tec.openplanner.team/stops/X879aja", "https://tec.openplanner.team/stops/X898aeb"], ["https://tec.openplanner.team/stops/N522aka", "https://tec.openplanner.team/stops/N522ara"], ["https://tec.openplanner.team/stops/X725aia", "https://tec.openplanner.team/stops/X725ala"], ["https://tec.openplanner.team/stops/H4me211a", "https://tec.openplanner.team/stops/H4me213a"], ["https://tec.openplanner.team/stops/LELchap1", "https://tec.openplanner.team/stops/LELeg--1"], ["https://tec.openplanner.team/stops/N580acb", "https://tec.openplanner.team/stops/N580afb"], ["https://tec.openplanner.team/stops/H1gh150a", "https://tec.openplanner.team/stops/H1gh152b"], ["https://tec.openplanner.team/stops/LRtcarr1", "https://tec.openplanner.team/stops/LRtcarr2"], ["https://tec.openplanner.team/stops/H4ch116b", "https://tec.openplanner.team/stops/H4ch119b"], ["https://tec.openplanner.team/stops/X782anb", "https://tec.openplanner.team/stops/X783ada"], ["https://tec.openplanner.team/stops/N351arb", "https://tec.openplanner.team/stops/N351axa"], ["https://tec.openplanner.team/stops/X725afh", "https://tec.openplanner.team/stops/X725bga"], ["https://tec.openplanner.team/stops/H4ty329b", "https://tec.openplanner.team/stops/H4ty350a"], ["https://tec.openplanner.team/stops/H5bs102a", "https://tec.openplanner.team/stops/H5bs104b"], ["https://tec.openplanner.team/stops/X616aca", "https://tec.openplanner.team/stops/X616aja"], ["https://tec.openplanner.team/stops/Cobcent1", "https://tec.openplanner.team/stops/Cobobjo2"], ["https://tec.openplanner.team/stops/Llmbell2", "https://tec.openplanner.team/stops/Llmhalt1"], ["https://tec.openplanner.team/stops/N533ada", "https://tec.openplanner.team/stops/N551aib"], ["https://tec.openplanner.team/stops/LBCaube2", "https://tec.openplanner.team/stops/LMAchod2"], ["https://tec.openplanner.team/stops/LCIcent2", "https://tec.openplanner.team/stops/LCIpiet2"], ["https://tec.openplanner.team/stops/X657ada", "https://tec.openplanner.team/stops/X657aea"], ["https://tec.openplanner.team/stops/X743agb", "https://tec.openplanner.team/stops/X756aka"], ["https://tec.openplanner.team/stops/H4vx360a", "https://tec.openplanner.team/stops/H4vx363b"], ["https://tec.openplanner.team/stops/N504aca", "https://tec.openplanner.team/stops/N579aea"], ["https://tec.openplanner.team/stops/LmHvenn1", "https://tec.openplanner.team/stops/LmTkirc1"], ["https://tec.openplanner.team/stops/Lvimc--1", "https://tec.openplanner.team/stops/Lvimc--2"], ["https://tec.openplanner.team/stops/Bblapra2", "https://tec.openplanner.team/stops/Bwaunou2"], ["https://tec.openplanner.team/stops/X721ara", "https://tec.openplanner.team/stops/X721asb"], ["https://tec.openplanner.team/stops/Bmalsme1", "https://tec.openplanner.team/stops/Btlbgla1"], ["https://tec.openplanner.team/stops/Bhanath2", "https://tec.openplanner.team/stops/LHNland1"], ["https://tec.openplanner.team/stops/X921arb", "https://tec.openplanner.team/stops/X979aab"], ["https://tec.openplanner.team/stops/N151ajb", "https://tec.openplanner.team/stops/N151ajc"], ["https://tec.openplanner.team/stops/H1so131b", "https://tec.openplanner.team/stops/H1so131f"], ["https://tec.openplanner.team/stops/H4co148a", "https://tec.openplanner.team/stops/H4co149a"], ["https://tec.openplanner.team/stops/Laltrav1", "https://tec.openplanner.team/stops/Laltrav2"], ["https://tec.openplanner.team/stops/Cmlhubi2", "https://tec.openplanner.team/stops/Cmlpche2"], ["https://tec.openplanner.team/stops/H4ga153a", "https://tec.openplanner.team/stops/H4ga166b"], ["https://tec.openplanner.team/stops/X897afb", "https://tec.openplanner.team/stops/X985aab"], ["https://tec.openplanner.team/stops/LBYegli1", "https://tec.openplanner.team/stops/Lgdblom2"], ["https://tec.openplanner.team/stops/X641afa", "https://tec.openplanner.team/stops/X641afd"], ["https://tec.openplanner.team/stops/Bgnvgir2", "https://tec.openplanner.team/stops/Blhumpo4"], ["https://tec.openplanner.team/stops/X224acb", "https://tec.openplanner.team/stops/X224ahb"], ["https://tec.openplanner.team/stops/Cctpano1", "https://tec.openplanner.team/stops/NC11afa"], ["https://tec.openplanner.team/stops/N138aac", "https://tec.openplanner.team/stops/N138afa"], ["https://tec.openplanner.team/stops/LwYkreu2", "https://tec.openplanner.team/stops/LwYsarl2"], ["https://tec.openplanner.team/stops/X719abb", "https://tec.openplanner.team/stops/X719aca"], ["https://tec.openplanner.team/stops/Cgyplst2", "https://tec.openplanner.team/stops/Cgyplvi1"], ["https://tec.openplanner.team/stops/N522bvd", "https://tec.openplanner.team/stops/N522bve"], ["https://tec.openplanner.team/stops/H4la196a", "https://tec.openplanner.team/stops/H4la198d"], ["https://tec.openplanner.team/stops/Ljucaba1", "https://tec.openplanner.team/stops/Ljuvert2"], ["https://tec.openplanner.team/stops/Cfrsour2", "https://tec.openplanner.team/stops/Crewath2"], ["https://tec.openplanner.team/stops/H4ch119a", "https://tec.openplanner.team/stops/H4vx365a"], ["https://tec.openplanner.team/stops/X617acb", "https://tec.openplanner.team/stops/X617ada"], ["https://tec.openplanner.team/stops/LWHkerk1", "https://tec.openplanner.team/stops/LWHkerk2"], ["https://tec.openplanner.team/stops/Bramcom1", "https://tec.openplanner.team/stops/Bramcom2"], ["https://tec.openplanner.team/stops/LCaalou1", "https://tec.openplanner.team/stops/LCacoop2"], ["https://tec.openplanner.team/stops/Blhurcl1", "https://tec.openplanner.team/stops/Bovesog2"], ["https://tec.openplanner.team/stops/X740aab", "https://tec.openplanner.team/stops/X740agb"], ["https://tec.openplanner.team/stops/Lprfoot1", "https://tec.openplanner.team/stops/Lprfoot2"], ["https://tec.openplanner.team/stops/N543aeb", "https://tec.openplanner.team/stops/N543ara"], ["https://tec.openplanner.team/stops/LrDhind2", "https://tec.openplanner.team/stops/LrDrose3"], ["https://tec.openplanner.team/stops/H2ll172a", "https://tec.openplanner.team/stops/H2ll172d"], ["https://tec.openplanner.team/stops/X779aba", "https://tec.openplanner.team/stops/X779adb"], ["https://tec.openplanner.team/stops/N540aea", "https://tec.openplanner.team/stops/N540aha"], ["https://tec.openplanner.team/stops/H4an110a", "https://tec.openplanner.team/stops/H4an110b"], ["https://tec.openplanner.team/stops/H4mo191a", "https://tec.openplanner.team/stops/H4mo191b"], ["https://tec.openplanner.team/stops/H2ha129d", "https://tec.openplanner.team/stops/H2ha138a"], ["https://tec.openplanner.team/stops/N135aqa", "https://tec.openplanner.team/stops/N135aub"], ["https://tec.openplanner.team/stops/Bblacar2", "https://tec.openplanner.team/stops/Bbsivi11"], ["https://tec.openplanner.team/stops/X840aba", "https://tec.openplanner.team/stops/X840acc"], ["https://tec.openplanner.team/stops/N212aeb", "https://tec.openplanner.team/stops/N212agc"], ["https://tec.openplanner.team/stops/X784aka", "https://tec.openplanner.team/stops/X784akb"], ["https://tec.openplanner.team/stops/LETsaiv1", "https://tec.openplanner.team/stops/Lretill1"], ["https://tec.openplanner.team/stops/X741ala", "https://tec.openplanner.team/stops/X741alb"], ["https://tec.openplanner.team/stops/X804ama", "https://tec.openplanner.team/stops/X804bya"], ["https://tec.openplanner.team/stops/H1pe131b", "https://tec.openplanner.team/stops/H1pe132a"], ["https://tec.openplanner.team/stops/X922aaa", "https://tec.openplanner.team/stops/X922adb"], ["https://tec.openplanner.team/stops/Cflmarc1", "https://tec.openplanner.team/stops/Cflmarc2"], ["https://tec.openplanner.team/stops/N538ajc", "https://tec.openplanner.team/stops/N538ajd"], ["https://tec.openplanner.team/stops/H4lh161a", "https://tec.openplanner.team/stops/H4lh161b"], ["https://tec.openplanner.team/stops/N244ara", "https://tec.openplanner.team/stops/N244arb"], ["https://tec.openplanner.team/stops/Bwavbva1", "https://tec.openplanner.team/stops/Bwavbva2"], ["https://tec.openplanner.team/stops/LNAanne1", "https://tec.openplanner.team/stops/LNAmart1"], ["https://tec.openplanner.team/stops/X995aba", "https://tec.openplanner.team/stops/X995adb"], ["https://tec.openplanner.team/stops/H1fl139a", "https://tec.openplanner.team/stops/H1fl141b"], ["https://tec.openplanner.team/stops/LSkdouf1", "https://tec.openplanner.team/stops/LSkdouf2"], ["https://tec.openplanner.team/stops/N501bda", "https://tec.openplanner.team/stops/N501hsb"], ["https://tec.openplanner.team/stops/X902aeb", "https://tec.openplanner.team/stops/X902aia"], ["https://tec.openplanner.team/stops/N506aua", "https://tec.openplanner.team/stops/N506awa"], ["https://tec.openplanner.team/stops/LMNcite1", "https://tec.openplanner.team/stops/LMNjard1"], ["https://tec.openplanner.team/stops/Cfodepo2", "https://tec.openplanner.team/stops/Cfoermi2"], ["https://tec.openplanner.team/stops/X982alb", "https://tec.openplanner.team/stops/X982aqc"], ["https://tec.openplanner.team/stops/N509aeb", "https://tec.openplanner.team/stops/N509agb"], ["https://tec.openplanner.team/stops/H3bi110b", "https://tec.openplanner.team/stops/H3bi112a"], ["https://tec.openplanner.team/stops/Ccobour1", "https://tec.openplanner.team/stops/Ccobour2"], ["https://tec.openplanner.team/stops/Cjuhden3", "https://tec.openplanner.team/stops/Cjuhden4"], ["https://tec.openplanner.team/stops/X746adb", "https://tec.openplanner.team/stops/X746ala"], ["https://tec.openplanner.team/stops/X897apa", "https://tec.openplanner.team/stops/X897apb"], ["https://tec.openplanner.team/stops/Lbbremy1", "https://tec.openplanner.team/stops/Lbbremy2"], ["https://tec.openplanner.team/stops/N213aaa", "https://tec.openplanner.team/stops/N348aab"], ["https://tec.openplanner.team/stops/LFEmala1", "https://tec.openplanner.team/stops/LFtcarr2"], ["https://tec.openplanner.team/stops/Cgobl%C3%A9r2", "https://tec.openplanner.team/stops/Cgoclad2"], ["https://tec.openplanner.team/stops/LHUpost3", "https://tec.openplanner.team/stops/LHUpost4"], ["https://tec.openplanner.team/stops/LsVbell1", "https://tec.openplanner.team/stops/LsVhunn1"], ["https://tec.openplanner.team/stops/LBahome2", "https://tec.openplanner.team/stops/LBalacr2"], ["https://tec.openplanner.team/stops/LJAroue1", "https://tec.openplanner.team/stops/LJAverv1"], ["https://tec.openplanner.team/stops/N506aqa", "https://tec.openplanner.team/stops/N506bpa"], ["https://tec.openplanner.team/stops/X636aib", "https://tec.openplanner.team/stops/X636bja"], ["https://tec.openplanner.team/stops/LGorysa1", "https://tec.openplanner.team/stops/Lpeflec2"], ["https://tec.openplanner.team/stops/Bnetegl3", "https://tec.openplanner.team/stops/Bnetegl4"], ["https://tec.openplanner.team/stops/LFFmarc1", "https://tec.openplanner.team/stops/LFFmarc2"], ["https://tec.openplanner.team/stops/N218aba", "https://tec.openplanner.team/stops/N385acb"], ["https://tec.openplanner.team/stops/N207aca", "https://tec.openplanner.team/stops/N221aab"], ["https://tec.openplanner.team/stops/LHHcite1", "https://tec.openplanner.team/stops/LHHroua2"], ["https://tec.openplanner.team/stops/X638ara", "https://tec.openplanner.team/stops/X652ajb"], ["https://tec.openplanner.team/stops/X948apa", "https://tec.openplanner.team/stops/X948bab"], ["https://tec.openplanner.team/stops/H1fl136a", "https://tec.openplanner.team/stops/H1fl136c"], ["https://tec.openplanner.team/stops/Lmobras2", "https://tec.openplanner.team/stops/Lmojans1"], ["https://tec.openplanner.team/stops/LBdcarr1", "https://tec.openplanner.team/stops/LCpeg-*"], ["https://tec.openplanner.team/stops/Cmoruau1", "https://tec.openplanner.team/stops/Cmoruau2"], ["https://tec.openplanner.team/stops/LClange2", "https://tec.openplanner.team/stops/LFdeg--2"], ["https://tec.openplanner.team/stops/N517adb", "https://tec.openplanner.team/stops/NR30aab"], ["https://tec.openplanner.team/stops/H1ms261a", "https://tec.openplanner.team/stops/H1ms272c"], ["https://tec.openplanner.team/stops/H2sb225a", "https://tec.openplanner.team/stops/H2sb243a"], ["https://tec.openplanner.team/stops/Bwatgge1", "https://tec.openplanner.team/stops/Bwatgge2"], ["https://tec.openplanner.team/stops/Lcegeor2", "https://tec.openplanner.team/stops/Lcepass1"], ["https://tec.openplanner.team/stops/H4pl116a", "https://tec.openplanner.team/stops/H4pl137b"], ["https://tec.openplanner.team/stops/H1by106a", "https://tec.openplanner.team/stops/H1by108d"], ["https://tec.openplanner.team/stops/H3so155a", "https://tec.openplanner.team/stops/H3so172a"], ["https://tec.openplanner.team/stops/H1fr133a", "https://tec.openplanner.team/stops/H1no143b"], ["https://tec.openplanner.team/stops/Blhugar2", "https://tec.openplanner.team/stops/Blhuone1"], ["https://tec.openplanner.team/stops/Brixfro3", "https://tec.openplanner.team/stops/Brixpbs2"], ["https://tec.openplanner.team/stops/LHcbaro1", "https://tec.openplanner.team/stops/LSx309-2"], ["https://tec.openplanner.team/stops/LRGeg--2", "https://tec.openplanner.team/stops/LRGunio3"], ["https://tec.openplanner.team/stops/LMAgb--1", "https://tec.openplanner.team/stops/LMAgb--2"], ["https://tec.openplanner.team/stops/LFArela5", "https://tec.openplanner.team/stops/LFArela6"], ["https://tec.openplanner.team/stops/X775aeb", "https://tec.openplanner.team/stops/X775afa"], ["https://tec.openplanner.team/stops/Bmrshan1", "https://tec.openplanner.team/stops/Bmrshan2"], ["https://tec.openplanner.team/stops/H1wa144a", "https://tec.openplanner.team/stops/H1wa144b"], ["https://tec.openplanner.team/stops/LHUpsar1", "https://tec.openplanner.team/stops/NL76aqa"], ["https://tec.openplanner.team/stops/Cvrfcho2", "https://tec.openplanner.team/stops/Cvrhaie1"], ["https://tec.openplanner.team/stops/H2hl113b", "https://tec.openplanner.team/stops/H2ll179a"], ["https://tec.openplanner.team/stops/N528agb", "https://tec.openplanner.team/stops/N528ana"], ["https://tec.openplanner.team/stops/LSPfrai2", "https://tec.openplanner.team/stops/LSPpelz2"], ["https://tec.openplanner.team/stops/LAYcont2", "https://tec.openplanner.team/stops/LAYwerb2"], ["https://tec.openplanner.team/stops/N518acd", "https://tec.openplanner.team/stops/N520aib"], ["https://tec.openplanner.team/stops/LFPho8a2", "https://tec.openplanner.team/stops/LFPknap1"], ["https://tec.openplanner.team/stops/Cmechnd1", "https://tec.openplanner.team/stops/Cmesafi1"], ["https://tec.openplanner.team/stops/H4fr385a", "https://tec.openplanner.team/stops/H4ka176b"], ["https://tec.openplanner.team/stops/H4ty347b", "https://tec.openplanner.team/stops/H4ty416a"], ["https://tec.openplanner.team/stops/LRObarr1", "https://tec.openplanner.team/stops/LROcham1"], ["https://tec.openplanner.team/stops/H4fo117c", "https://tec.openplanner.team/stops/H4fo117d"], ["https://tec.openplanner.team/stops/X576aib", "https://tec.openplanner.team/stops/X715aka"], ["https://tec.openplanner.team/stops/N115aab", "https://tec.openplanner.team/stops/N147aeb"], ["https://tec.openplanner.team/stops/H1hc150a", "https://tec.openplanner.team/stops/H4be149a"], ["https://tec.openplanner.team/stops/LPRecol1", "https://tec.openplanner.team/stops/LTRgare1"], ["https://tec.openplanner.team/stops/N501gqb", "https://tec.openplanner.team/stops/N501mia"], ["https://tec.openplanner.team/stops/H4mo151b", "https://tec.openplanner.team/stops/H4mo190a"], ["https://tec.openplanner.team/stops/H3so157b", "https://tec.openplanner.team/stops/H3so177b"], ["https://tec.openplanner.team/stops/H4ne131a", "https://tec.openplanner.team/stops/H4ne142a"], ["https://tec.openplanner.team/stops/H4sm247a", "https://tec.openplanner.team/stops/H4sm247b"], ["https://tec.openplanner.team/stops/H1ba114c", "https://tec.openplanner.team/stops/H1ba114d"], ["https://tec.openplanner.team/stops/Blindel6", "https://tec.openplanner.team/stops/Blingar2"], ["https://tec.openplanner.team/stops/H3so154a", "https://tec.openplanner.team/stops/H3so167a"], ["https://tec.openplanner.team/stops/N562bna", "https://tec.openplanner.team/stops/N562boa"], ["https://tec.openplanner.team/stops/N351asb", "https://tec.openplanner.team/stops/N351axa"], ["https://tec.openplanner.team/stops/Cgythio2", "https://tec.openplanner.team/stops/CMsartc1"], ["https://tec.openplanner.team/stops/Bhmmgar1", "https://tec.openplanner.team/stops/Bhmmlad1"], ["https://tec.openplanner.team/stops/X949ada", "https://tec.openplanner.team/stops/X949aea"], ["https://tec.openplanner.team/stops/LOlvill1", "https://tec.openplanner.team/stops/LOmrela2"], ["https://tec.openplanner.team/stops/LWApt--1", "https://tec.openplanner.team/stops/LWAvisi2"], ["https://tec.openplanner.team/stops/H1wg124a", "https://tec.openplanner.team/stops/H1wg131a"], ["https://tec.openplanner.team/stops/LBPunic2", "https://tec.openplanner.team/stops/LGLeg--1"], ["https://tec.openplanner.team/stops/H4ha167a", "https://tec.openplanner.team/stops/H4mt222a"], ["https://tec.openplanner.team/stops/N125aaa", "https://tec.openplanner.team/stops/N125aba"], ["https://tec.openplanner.team/stops/X801aja", "https://tec.openplanner.team/stops/X801bma"], ["https://tec.openplanner.team/stops/Crodrai2", "https://tec.openplanner.team/stops/Crowilb2"], ["https://tec.openplanner.team/stops/LLbbons2", "https://tec.openplanner.team/stops/LrEviel2"], ["https://tec.openplanner.team/stops/N501faa", "https://tec.openplanner.team/stops/N501fda"], ["https://tec.openplanner.team/stops/X659ada", "https://tec.openplanner.team/stops/X659ava"], ["https://tec.openplanner.team/stops/LBEbelf1", "https://tec.openplanner.team/stops/LBEtilf2"], ["https://tec.openplanner.team/stops/H4hx118b", "https://tec.openplanner.team/stops/H4hx119b"], ["https://tec.openplanner.team/stops/LBrmeiz2", "https://tec.openplanner.team/stops/LFRfagn2"], ["https://tec.openplanner.team/stops/N201aia", "https://tec.openplanner.team/stops/N214aaa"], ["https://tec.openplanner.team/stops/Bitrcen2", "https://tec.openplanner.team/stops/Bitrpsr2"], ["https://tec.openplanner.team/stops/LHZbren1", "https://tec.openplanner.team/stops/LHZbren2"], ["https://tec.openplanner.team/stops/LVLmart1", "https://tec.openplanner.team/stops/LVLmart2"], ["https://tec.openplanner.team/stops/LSZclem2", "https://tec.openplanner.team/stops/LSZheid2"], ["https://tec.openplanner.team/stops/Lcemeta1", "https://tec.openplanner.team/stops/Lcepepi1"], ["https://tec.openplanner.team/stops/Bgemfbo1", "https://tec.openplanner.team/stops/Bgemfbo2"], ["https://tec.openplanner.team/stops/N234adb", "https://tec.openplanner.team/stops/N242aea"], ["https://tec.openplanner.team/stops/Ccoptca1", "https://tec.openplanner.team/stops/Cjuheig1"], ["https://tec.openplanner.team/stops/X773aib", "https://tec.openplanner.team/stops/X773aoa"], ["https://tec.openplanner.team/stops/N229aeb", "https://tec.openplanner.team/stops/N540aqa"], ["https://tec.openplanner.team/stops/LCljose1", "https://tec.openplanner.team/stops/LFdbagu1"], ["https://tec.openplanner.team/stops/N501eeb", "https://tec.openplanner.team/stops/N501kid"], ["https://tec.openplanner.team/stops/H4gr111b", "https://tec.openplanner.team/stops/H4ld130b"], ["https://tec.openplanner.team/stops/N534asb", "https://tec.openplanner.team/stops/N543ckb"], ["https://tec.openplanner.team/stops/LHHgare1", "https://tec.openplanner.team/stops/LSkrena2"], ["https://tec.openplanner.team/stops/LPRfour1", "https://tec.openplanner.team/stops/LPRfour2"], ["https://tec.openplanner.team/stops/H4bd109a", "https://tec.openplanner.team/stops/H4te254b"], ["https://tec.openplanner.team/stops/Cmqbasv1", "https://tec.openplanner.team/stops/Cmqegl1"], ["https://tec.openplanner.team/stops/LSGeg--2", "https://tec.openplanner.team/stops/LSGeg--3"], ["https://tec.openplanner.team/stops/X601cia", "https://tec.openplanner.team/stops/X601cka"], ["https://tec.openplanner.team/stops/LgAdorf1", "https://tec.openplanner.team/stops/LgAnr491"], ["https://tec.openplanner.team/stops/H4rm110a", "https://tec.openplanner.team/stops/H4rm112a"], ["https://tec.openplanner.team/stops/X624aeb", "https://tec.openplanner.team/stops/X624afb"], ["https://tec.openplanner.team/stops/LHTbeau1", "https://tec.openplanner.team/stops/LHTbonn1"], ["https://tec.openplanner.team/stops/Cnaplan1", "https://tec.openplanner.team/stops/Cnaplbu1"], ["https://tec.openplanner.team/stops/Ccogibr2", "https://tec.openplanner.team/stops/Ccovies2"], ["https://tec.openplanner.team/stops/Cauromi2", "https://tec.openplanner.team/stops/N543anh"], ["https://tec.openplanner.team/stops/Bengvma2", "https://tec.openplanner.team/stops/H1en104a"], ["https://tec.openplanner.team/stops/X639ajb", "https://tec.openplanner.team/stops/X639aua"], ["https://tec.openplanner.team/stops/H4ru246b", "https://tec.openplanner.team/stops/H4ty349a"], ["https://tec.openplanner.team/stops/Lveleje2", "https://tec.openplanner.team/stops/Lveoctr2"], ["https://tec.openplanner.team/stops/N516aca", "https://tec.openplanner.team/stops/N516acb"], ["https://tec.openplanner.team/stops/H4an104b", "https://tec.openplanner.team/stops/H4an112a"], ["https://tec.openplanner.team/stops/Bbxltou1", "https://tec.openplanner.team/stops/Bbxltrv1"], ["https://tec.openplanner.team/stops/Lbofrai1", "https://tec.openplanner.team/stops/Lbofrai2"], ["https://tec.openplanner.team/stops/Lsn130-2", "https://tec.openplanner.team/stops/Lsnagne1"], ["https://tec.openplanner.team/stops/X639aoa", "https://tec.openplanner.team/stops/X639arb"], ["https://tec.openplanner.team/stops/H2lc168a", "https://tec.openplanner.team/stops/H2lc170b"], ["https://tec.openplanner.team/stops/N202aba", "https://tec.openplanner.team/stops/N202aec"], ["https://tec.openplanner.team/stops/Cflcoro1", "https://tec.openplanner.team/stops/Cflglav2"], ["https://tec.openplanner.team/stops/X762aaa", "https://tec.openplanner.team/stops/X762abb"], ["https://tec.openplanner.team/stops/H4ca122a", "https://tec.openplanner.team/stops/H4wi162b"], ["https://tec.openplanner.team/stops/LAo161-1", "https://tec.openplanner.team/stops/LTPpreh1"], ["https://tec.openplanner.team/stops/X765acb", "https://tec.openplanner.team/stops/X765ada"], ["https://tec.openplanner.team/stops/LLRrape1", "https://tec.openplanner.team/stops/LLRrape2"], ["https://tec.openplanner.team/stops/H2sv218a", "https://tec.openplanner.team/stops/H2sv218b"], ["https://tec.openplanner.team/stops/LAUross1", "https://tec.openplanner.team/stops/LCxreno2"], ["https://tec.openplanner.team/stops/LNAbras3", "https://tec.openplanner.team/stops/LScgore1"], ["https://tec.openplanner.team/stops/H1bb113a", "https://tec.openplanner.team/stops/H1bb114a"], ["https://tec.openplanner.team/stops/N557aia", "https://tec.openplanner.team/stops/N557ajb"], ["https://tec.openplanner.team/stops/N501mta", "https://tec.openplanner.team/stops/N501mtd"], ["https://tec.openplanner.team/stops/N553ada", "https://tec.openplanner.team/stops/N553adb"], ["https://tec.openplanner.team/stops/N308aab", "https://tec.openplanner.team/stops/N308beb"], ["https://tec.openplanner.team/stops/N576aea", "https://tec.openplanner.team/stops/N576akc"], ["https://tec.openplanner.team/stops/N565aab", "https://tec.openplanner.team/stops/N565aea"], ["https://tec.openplanner.team/stops/N560aca", "https://tec.openplanner.team/stops/N560acb"], ["https://tec.openplanner.team/stops/X937adb", "https://tec.openplanner.team/stops/X952aab"], ["https://tec.openplanner.team/stops/LMvgare1", "https://tec.openplanner.team/stops/LMvrabo2"], ["https://tec.openplanner.team/stops/N229ahb", "https://tec.openplanner.team/stops/N229aia"], ["https://tec.openplanner.team/stops/LBOande1", "https://tec.openplanner.team/stops/LWRbomb4"], ["https://tec.openplanner.team/stops/H4bl105a", "https://tec.openplanner.team/stops/H4ga158a"], ["https://tec.openplanner.team/stops/H1bo102a", "https://tec.openplanner.team/stops/H1bo102b"], ["https://tec.openplanner.team/stops/Bdlmegl2", "https://tec.openplanner.team/stops/Bdvmtve2"], ["https://tec.openplanner.team/stops/Cnapair2", "https://tec.openplanner.team/stops/N160aab"], ["https://tec.openplanner.team/stops/X982ada", "https://tec.openplanner.team/stops/X982adb"], ["https://tec.openplanner.team/stops/LSJlabe1", "https://tec.openplanner.team/stops/LSJlabe2"], ["https://tec.openplanner.team/stops/Blhueso1", "https://tec.openplanner.team/stops/Blhueso2"], ["https://tec.openplanner.team/stops/LVnflox2", "https://tec.openplanner.team/stops/LVnourt4"], ["https://tec.openplanner.team/stops/N308aea", "https://tec.openplanner.team/stops/N308afc"], ["https://tec.openplanner.team/stops/Bflegar5", "https://tec.openplanner.team/stops/Cflsncb1"], ["https://tec.openplanner.team/stops/LOucarr2", "https://tec.openplanner.team/stops/LWZponb1"], ["https://tec.openplanner.team/stops/H2ca115a", "https://tec.openplanner.team/stops/H2ca115b"], ["https://tec.openplanner.team/stops/LBzec--1", "https://tec.openplanner.team/stops/LBzvill1"], ["https://tec.openplanner.team/stops/LAnchat2", "https://tec.openplanner.team/stops/LSdencl*"], ["https://tec.openplanner.team/stops/Bwatgar5", "https://tec.openplanner.team/stops/Bwattri1"], ["https://tec.openplanner.team/stops/X639amb", "https://tec.openplanner.team/stops/X639ata"], ["https://tec.openplanner.team/stops/X879aea", "https://tec.openplanner.team/stops/X879aob"], ["https://tec.openplanner.team/stops/X657aba", "https://tec.openplanner.team/stops/X742afb"], ["https://tec.openplanner.team/stops/Bblmwma1", "https://tec.openplanner.team/stops/Bnilpie1"], ["https://tec.openplanner.team/stops/LCLscie2", "https://tec.openplanner.team/stops/LLvpost2"], ["https://tec.openplanner.team/stops/LBIfore1", "https://tec.openplanner.team/stops/Llocime2"], ["https://tec.openplanner.team/stops/H4ru235a", "https://tec.openplanner.team/stops/H4ru235b"], ["https://tec.openplanner.team/stops/Lhurigu1", "https://tec.openplanner.team/stops/Lhurouh1"], ["https://tec.openplanner.team/stops/H2gy101a", "https://tec.openplanner.team/stops/H2gy101b"], ["https://tec.openplanner.team/stops/H4co106a", "https://tec.openplanner.team/stops/H4co110a"], ["https://tec.openplanner.team/stops/X307aba", "https://tec.openplanner.team/stops/X307aca"], ["https://tec.openplanner.team/stops/Llgnati1", "https://tec.openplanner.team/stops/Llgnati2"], ["https://tec.openplanner.team/stops/Blthbss1", "https://tec.openplanner.team/stops/Bmlnbpr1"], ["https://tec.openplanner.team/stops/X720aca", "https://tec.openplanner.team/stops/X720acb"], ["https://tec.openplanner.team/stops/H4jm118a", "https://tec.openplanner.team/stops/H4sm247a"], ["https://tec.openplanner.team/stops/LBLcalv2", "https://tec.openplanner.team/stops/LBLplac2"], ["https://tec.openplanner.team/stops/N536agb", "https://tec.openplanner.team/stops/N536aoa"], ["https://tec.openplanner.team/stops/X806aia", "https://tec.openplanner.team/stops/X806akc"], ["https://tec.openplanner.team/stops/X342ada", "https://tec.openplanner.team/stops/X342ahb"], ["https://tec.openplanner.team/stops/X999aob", "https://tec.openplanner.team/stops/X999aub"], ["https://tec.openplanner.team/stops/Bclgvse1", "https://tec.openplanner.team/stops/Bclgvse2"], ["https://tec.openplanner.team/stops/LSZeg--1", "https://tec.openplanner.team/stops/LSZmonu4"], ["https://tec.openplanner.team/stops/Cctecol2", "https://tec.openplanner.team/stops/Ccunvus2"], ["https://tec.openplanner.team/stops/LpEbins2", "https://tec.openplanner.team/stops/LrApark2"], ["https://tec.openplanner.team/stops/LCPaywa1", "https://tec.openplanner.team/stops/LMvgare2"], ["https://tec.openplanner.team/stops/LOCeg--1", "https://tec.openplanner.team/stops/LOCeg--2"], ["https://tec.openplanner.team/stops/LLg9---2", "https://tec.openplanner.team/stops/LSMfroi2"], ["https://tec.openplanner.team/stops/H5pe127a", "https://tec.openplanner.team/stops/H5pe127b"], ["https://tec.openplanner.team/stops/X850afb", "https://tec.openplanner.team/stops/X850ala"], ["https://tec.openplanner.team/stops/H1wa142a", "https://tec.openplanner.team/stops/H1wa164a"], ["https://tec.openplanner.team/stops/H1ms264a", "https://tec.openplanner.team/stops/H1ms266b"], ["https://tec.openplanner.team/stops/N241agb", "https://tec.openplanner.team/stops/N270aca"], ["https://tec.openplanner.team/stops/H1ms253a", "https://tec.openplanner.team/stops/H1ms278a"], ["https://tec.openplanner.team/stops/X634ajb", "https://tec.openplanner.team/stops/X634aka"], ["https://tec.openplanner.team/stops/Ccifies2", "https://tec.openplanner.team/stops/Ccimont1"], ["https://tec.openplanner.team/stops/Crs74em4", "https://tec.openplanner.team/stops/Crswaut2"], ["https://tec.openplanner.team/stops/X813aba", "https://tec.openplanner.team/stops/X813abb"], ["https://tec.openplanner.team/stops/N521ala", "https://tec.openplanner.team/stops/N527aga"], ["https://tec.openplanner.team/stops/LNCvann1", "https://tec.openplanner.team/stops/LNCvill1"], ["https://tec.openplanner.team/stops/N321afa", "https://tec.openplanner.team/stops/N321afb"], ["https://tec.openplanner.team/stops/Ctybaco2", "https://tec.openplanner.team/stops/N137aib"], ["https://tec.openplanner.team/stops/LTAchpl1", "https://tec.openplanner.team/stops/LTAchpl2"], ["https://tec.openplanner.team/stops/H1cv101b", "https://tec.openplanner.team/stops/H1cv102b"], ["https://tec.openplanner.team/stops/LGmloti2", "https://tec.openplanner.team/stops/LMAbijo1"], ["https://tec.openplanner.team/stops/Baegm501", "https://tec.openplanner.team/stops/Baegm502"], ["https://tec.openplanner.team/stops/Bchgegl1", "https://tec.openplanner.team/stops/Bchgegl2"], ["https://tec.openplanner.team/stops/Cerrver4", "https://tec.openplanner.team/stops/Cvrhab21"], ["https://tec.openplanner.team/stops/H2se113a", "https://tec.openplanner.team/stops/H2se113b"], ["https://tec.openplanner.team/stops/N531ajb", "https://tec.openplanner.team/stops/N534boh"], ["https://tec.openplanner.team/stops/LBabeco4", "https://tec.openplanner.team/stops/LBapeup1"], ["https://tec.openplanner.team/stops/H4co107a", "https://tec.openplanner.team/stops/H4co146a"], ["https://tec.openplanner.team/stops/N548aib", "https://tec.openplanner.team/stops/N548aka"], ["https://tec.openplanner.team/stops/Ldidefo1", "https://tec.openplanner.team/stops/Ldimeun2"], ["https://tec.openplanner.team/stops/NL57aia", "https://tec.openplanner.team/stops/NL57ajb"], ["https://tec.openplanner.team/stops/N501cnb", "https://tec.openplanner.team/stops/N501eoa"], ["https://tec.openplanner.team/stops/LXomc--4", "https://tec.openplanner.team/stops/LXopeti2"], ["https://tec.openplanner.team/stops/LHMparq2", "https://tec.openplanner.team/stops/LHMpatl2"], ["https://tec.openplanner.team/stops/N348aca", "https://tec.openplanner.team/stops/N351alb"], ["https://tec.openplanner.team/stops/LrAneud2", "https://tec.openplanner.team/stops/LrAtitf2"], ["https://tec.openplanner.team/stops/LNCecdo1", "https://tec.openplanner.team/stops/LPLc49-1"], ["https://tec.openplanner.team/stops/X681aca", "https://tec.openplanner.team/stops/X681ada"], ["https://tec.openplanner.team/stops/Cbfstry1", "https://tec.openplanner.team/stops/Cbfstry2"], ["https://tec.openplanner.team/stops/Cchhopi4", "https://tec.openplanner.team/stops/Cchwate4"], ["https://tec.openplanner.team/stops/H4ir161b", "https://tec.openplanner.team/stops/H4vd230a"], ["https://tec.openplanner.team/stops/Lwaelme2", "https://tec.openplanner.team/stops/Lwapomp2"], ["https://tec.openplanner.team/stops/Lvedepo*", "https://tec.openplanner.team/stops/Lveoctr1"], ["https://tec.openplanner.team/stops/N110aha", "https://tec.openplanner.team/stops/N111acb"], ["https://tec.openplanner.team/stops/Candett1", "https://tec.openplanner.team/stops/Canvane2"], ["https://tec.openplanner.team/stops/Balswsa1", "https://tec.openplanner.team/stops/Brsgfon1"], ["https://tec.openplanner.team/stops/Ladmoli1", "https://tec.openplanner.team/stops/Ladpara1"], ["https://tec.openplanner.team/stops/N308ada", "https://tec.openplanner.team/stops/N312abb"], ["https://tec.openplanner.team/stops/Cfocant1", "https://tec.openplanner.team/stops/Clrpast1"], ["https://tec.openplanner.team/stops/Lflcime2", "https://tec.openplanner.team/stops/Lflcle-5"], ["https://tec.openplanner.team/stops/N503aja", "https://tec.openplanner.team/stops/N580afa"], ["https://tec.openplanner.team/stops/Cgxchea1", "https://tec.openplanner.team/stops/Cgxvvel2"], ["https://tec.openplanner.team/stops/LCPaywa2", "https://tec.openplanner.team/stops/LLNcruc2"], ["https://tec.openplanner.team/stops/LeUdepo1", "https://tec.openplanner.team/stops/LkTkabi2"], ["https://tec.openplanner.team/stops/H4ht172a", "https://tec.openplanner.team/stops/H4te261a"], ["https://tec.openplanner.team/stops/Bvxgeta1", "https://tec.openplanner.team/stops/Bvxgeta2"], ["https://tec.openplanner.team/stops/LHSlava1", "https://tec.openplanner.team/stops/LHSlava2"], ["https://tec.openplanner.team/stops/Bpiehte1", "https://tec.openplanner.team/stops/Bpienod1"], ["https://tec.openplanner.team/stops/X614amb", "https://tec.openplanner.team/stops/X614arb"], ["https://tec.openplanner.team/stops/H1by103b", "https://tec.openplanner.team/stops/H1by108b"], ["https://tec.openplanner.team/stops/H1ne139b", "https://tec.openplanner.team/stops/H1ne148b"], ["https://tec.openplanner.team/stops/X654aib", "https://tec.openplanner.team/stops/X654aja"], ["https://tec.openplanner.team/stops/Croegli2", "https://tec.openplanner.team/stops/Cropcan1"], ["https://tec.openplanner.team/stops/Lvtauna2", "https://tec.openplanner.team/stops/Lvtmeun1"], ["https://tec.openplanner.team/stops/H4bi100b", "https://tec.openplanner.team/stops/H4pq120a"], ["https://tec.openplanner.team/stops/LmD163-1", "https://tec.openplanner.team/stops/LmYamel1"], ["https://tec.openplanner.team/stops/H4ta132a", "https://tec.openplanner.team/stops/H4ta132b"], ["https://tec.openplanner.team/stops/LbOhoff2", "https://tec.openplanner.team/stops/LmYwall1"], ["https://tec.openplanner.team/stops/Livgera6", "https://tec.openplanner.team/stops/Livjeu-2"], ["https://tec.openplanner.team/stops/Ccigill3", "https://tec.openplanner.team/stops/NC02aua"], ["https://tec.openplanner.team/stops/Lcebail2", "https://tec.openplanner.team/stops/Lcelhon3"], ["https://tec.openplanner.team/stops/LCRf14-1", "https://tec.openplanner.team/stops/LCRgdrt1"], ["https://tec.openplanner.team/stops/LMalarg3", "https://tec.openplanner.team/stops/LPlpomp1"], ["https://tec.openplanner.team/stops/X657aoa", "https://tec.openplanner.team/stops/X670ara"], ["https://tec.openplanner.team/stops/H3so163a", "https://tec.openplanner.team/stops/H3so163b"], ["https://tec.openplanner.team/stops/X773aga", "https://tec.openplanner.team/stops/X773agb"], ["https://tec.openplanner.team/stops/Cchheig1", "https://tec.openplanner.team/stops/CMvil2"], ["https://tec.openplanner.team/stops/X634aja", "https://tec.openplanner.team/stops/X636aaa"], ["https://tec.openplanner.team/stops/LHrkin-1", "https://tec.openplanner.team/stops/LREchal1"], ["https://tec.openplanner.team/stops/N565aic", "https://tec.openplanner.team/stops/N565ajb"], ["https://tec.openplanner.team/stops/LkEcoop2", "https://tec.openplanner.team/stops/LkEsada1"], ["https://tec.openplanner.team/stops/N551abb", "https://tec.openplanner.team/stops/N551aec"], ["https://tec.openplanner.team/stops/Csurela1", "https://tec.openplanner.team/stops/Csurela2"], ["https://tec.openplanner.team/stops/Lfhhaso2", "https://tec.openplanner.team/stops/Lfhweri1"], ["https://tec.openplanner.team/stops/N537agb", "https://tec.openplanner.team/stops/N537aja"], ["https://tec.openplanner.team/stops/LESslmo2", "https://tec.openplanner.team/stops/LTIdumo1"], ["https://tec.openplanner.team/stops/N123aaa", "https://tec.openplanner.team/stops/N123aab"], ["https://tec.openplanner.team/stops/Ccstord2", "https://tec.openplanner.team/stops/Chhthui2"], ["https://tec.openplanner.team/stops/LSznoel1", "https://tec.openplanner.team/stops/N512agc"], ["https://tec.openplanner.team/stops/Bwavlav1", "https://tec.openplanner.team/stops/Bwavzno1"], ["https://tec.openplanner.team/stops/Bbcogpl1", "https://tec.openplanner.team/stops/H3br108d"], ["https://tec.openplanner.team/stops/Cfaauln2", "https://tec.openplanner.team/stops/Cfanoci1"], ["https://tec.openplanner.team/stops/LHdfays1", "https://tec.openplanner.team/stops/LHdfays2"], ["https://tec.openplanner.team/stops/N301afa", "https://tec.openplanner.team/stops/N301afb"], ["https://tec.openplanner.team/stops/N236alb", "https://tec.openplanner.team/stops/N236apb"], ["https://tec.openplanner.team/stops/X899aia", "https://tec.openplanner.team/stops/X899ajb"], ["https://tec.openplanner.team/stops/Bnivasa1", "https://tec.openplanner.team/stops/Bnivpro1"], ["https://tec.openplanner.team/stops/LeYheid1", "https://tec.openplanner.team/stops/LeYwald2"], ["https://tec.openplanner.team/stops/Cmmmarb1", "https://tec.openplanner.team/stops/Cmmpjou4"], ["https://tec.openplanner.team/stops/Bnivrec1", "https://tec.openplanner.team/stops/Bnivsci1"], ["https://tec.openplanner.team/stops/Cmeptmi5", "https://tec.openplanner.team/stops/Cmewaya2"], ["https://tec.openplanner.team/stops/N501ija", "https://tec.openplanner.team/stops/N501ipa"], ["https://tec.openplanner.team/stops/N138afa", "https://tec.openplanner.team/stops/N138aia"], ["https://tec.openplanner.team/stops/Clsghoy1", "https://tec.openplanner.team/stops/H1ls105a"], ["https://tec.openplanner.team/stops/H4mo138a", "https://tec.openplanner.team/stops/H4mo138b"], ["https://tec.openplanner.team/stops/N351atb", "https://tec.openplanner.team/stops/X358aba"], ["https://tec.openplanner.team/stops/LMtcent2", "https://tec.openplanner.team/stops/LSdencl*"], ["https://tec.openplanner.team/stops/N548asb", "https://tec.openplanner.team/stops/N548aya"], ["https://tec.openplanner.team/stops/N163aba", "https://tec.openplanner.team/stops/N569alb"], ["https://tec.openplanner.team/stops/X672afa", "https://tec.openplanner.team/stops/X672aic"], ["https://tec.openplanner.team/stops/H1gr111a", "https://tec.openplanner.team/stops/H1mk111a"], ["https://tec.openplanner.team/stops/N149aba", "https://tec.openplanner.team/stops/N149abb"], ["https://tec.openplanner.team/stops/LAxbott2", "https://tec.openplanner.team/stops/LFsguil2"], ["https://tec.openplanner.team/stops/H4ty329a", "https://tec.openplanner.team/stops/H4ty329b"], ["https://tec.openplanner.team/stops/N501hca", "https://tec.openplanner.team/stops/N501mib"], ["https://tec.openplanner.team/stops/Lgrclos1", "https://tec.openplanner.team/stops/Lgrlabo2"], ["https://tec.openplanner.team/stops/X879afb", "https://tec.openplanner.team/stops/X879agb"], ["https://tec.openplanner.team/stops/Csytouq1", "https://tec.openplanner.team/stops/Csytouq2"], ["https://tec.openplanner.team/stops/H1ms310a", "https://tec.openplanner.team/stops/H1ms310b"], ["https://tec.openplanner.team/stops/X601cub", "https://tec.openplanner.team/stops/X601cva"], ["https://tec.openplanner.team/stops/Csecarr1", "https://tec.openplanner.team/stops/Csemacq4"], ["https://tec.openplanner.team/stops/N120aja", "https://tec.openplanner.team/stops/N120ala"], ["https://tec.openplanner.team/stops/X666aca", "https://tec.openplanner.team/stops/X666ada"], ["https://tec.openplanner.team/stops/Bbchmai2", "https://tec.openplanner.team/stops/Bhtibru2"], ["https://tec.openplanner.team/stops/Bnivmet1", "https://tec.openplanner.team/stops/Bnivmet2"], ["https://tec.openplanner.team/stops/LBLtroi2", "https://tec.openplanner.team/stops/LTrgibe2"], ["https://tec.openplanner.team/stops/N558aaa", "https://tec.openplanner.team/stops/N558anb"], ["https://tec.openplanner.team/stops/Creespi1", "https://tec.openplanner.team/stops/Crewath2"], ["https://tec.openplanner.team/stops/N553aha", "https://tec.openplanner.team/stops/N553aob"], ["https://tec.openplanner.team/stops/Loucent2", "https://tec.openplanner.team/stops/Louvira2"], ["https://tec.openplanner.team/stops/N214adb", "https://tec.openplanner.team/stops/N261aaa"], ["https://tec.openplanner.team/stops/LbTmons1", "https://tec.openplanner.team/stops/LbTmuhl1"], ["https://tec.openplanner.team/stops/X662aha", "https://tec.openplanner.team/stops/X662aoa"], ["https://tec.openplanner.team/stops/Beclfde2", "https://tec.openplanner.team/stops/Bronrch2"], ["https://tec.openplanner.team/stops/LFrfrai1", "https://tec.openplanner.team/stops/LSHfief2"], ["https://tec.openplanner.team/stops/X802aua", "https://tec.openplanner.team/stops/X802aub"], ["https://tec.openplanner.team/stops/X741agb", "https://tec.openplanner.team/stops/X741ana"], ["https://tec.openplanner.team/stops/LmNha152", "https://tec.openplanner.team/stops/LmNkess2"], ["https://tec.openplanner.team/stops/N218aba", "https://tec.openplanner.team/stops/N218aeb"], ["https://tec.openplanner.team/stops/Ccugend2", "https://tec.openplanner.team/stops/Ccuhsti2"], ["https://tec.openplanner.team/stops/LRRecdu2", "https://tec.openplanner.team/stops/LRRemul1"], ["https://tec.openplanner.team/stops/Bglitro3", "https://tec.openplanner.team/stops/Btlbtho2"], ["https://tec.openplanner.team/stops/LREgrot1", "https://tec.openplanner.team/stops/LREgrot2"], ["https://tec.openplanner.team/stops/LJSec--1", "https://tec.openplanner.team/stops/LTHcent2"], ["https://tec.openplanner.team/stops/LBRgend1", "https://tec.openplanner.team/stops/LBRmc--1"], ["https://tec.openplanner.team/stops/LSProya1", "https://tec.openplanner.team/stops/LSProya2"], ["https://tec.openplanner.team/stops/X661arc", "https://tec.openplanner.team/stops/X661asb"], ["https://tec.openplanner.team/stops/H1je215b", "https://tec.openplanner.team/stops/H1je221a"], ["https://tec.openplanner.team/stops/LFmcarr1", "https://tec.openplanner.team/stops/LFmcarr2"], ["https://tec.openplanner.team/stops/X804aba", "https://tec.openplanner.team/stops/X804acb"], ["https://tec.openplanner.team/stops/LREgar-1", "https://tec.openplanner.team/stops/LREsp301"], ["https://tec.openplanner.team/stops/N542abb", "https://tec.openplanner.team/stops/N542agb"], ["https://tec.openplanner.team/stops/Ladmoul1", "https://tec.openplanner.team/stops/Lveepar2"], ["https://tec.openplanner.team/stops/Cblbaiv2", "https://tec.openplanner.team/stops/Cblcent2"], ["https://tec.openplanner.team/stops/H4gz115a", "https://tec.openplanner.team/stops/H4th142a"], ["https://tec.openplanner.team/stops/X725ahb", "https://tec.openplanner.team/stops/X725bda"], ["https://tec.openplanner.team/stops/H1hr115a", "https://tec.openplanner.team/stops/H1hr115b"], ["https://tec.openplanner.team/stops/LHUbatt1", "https://tec.openplanner.team/stops/NL80ahb"], ["https://tec.openplanner.team/stops/Brsgges1", "https://tec.openplanner.team/stops/Brsggol2"], ["https://tec.openplanner.team/stops/N539aba", "https://tec.openplanner.team/stops/N539afa"], ["https://tec.openplanner.team/stops/Bnivbng1", "https://tec.openplanner.team/stops/Broscha2"], ["https://tec.openplanner.team/stops/X822alb", "https://tec.openplanner.team/stops/X822ana"], ["https://tec.openplanner.team/stops/X982aja", "https://tec.openplanner.team/stops/X982bra"], ["https://tec.openplanner.team/stops/X759aga", "https://tec.openplanner.team/stops/X759agb"], ["https://tec.openplanner.team/stops/H4ty319a", "https://tec.openplanner.team/stops/H4ty356b"], ["https://tec.openplanner.team/stops/Cgoetun4", "https://tec.openplanner.team/stops/Cgoetun5"], ["https://tec.openplanner.team/stops/X790ada", "https://tec.openplanner.team/stops/X790aea"], ["https://tec.openplanner.team/stops/Crbegli1", "https://tec.openplanner.team/stops/Crbhurt2"], ["https://tec.openplanner.team/stops/X715afb", "https://tec.openplanner.team/stops/X715amb"], ["https://tec.openplanner.team/stops/N212aba", "https://tec.openplanner.team/stops/N213aab"], ["https://tec.openplanner.team/stops/LFMvoge*", "https://tec.openplanner.team/stops/LFMvoge1"], ["https://tec.openplanner.team/stops/N209ajc", "https://tec.openplanner.team/stops/X209aza"], ["https://tec.openplanner.team/stops/Lvehauz3", "https://tec.openplanner.team/stops/Lvelieg2"], ["https://tec.openplanner.team/stops/Cmychpl2", "https://tec.openplanner.team/stops/Cmyland1"], ["https://tec.openplanner.team/stops/N501cva", "https://tec.openplanner.team/stops/N501daa"], ["https://tec.openplanner.team/stops/N150aeb", "https://tec.openplanner.team/stops/N150aec"], ["https://tec.openplanner.team/stops/Ltibalt1", "https://tec.openplanner.team/stops/Ltiplat1"], ["https://tec.openplanner.team/stops/X901aca", "https://tec.openplanner.team/stops/X901acb"], ["https://tec.openplanner.team/stops/LRE154-1", "https://tec.openplanner.team/stops/LREchif1"], ["https://tec.openplanner.team/stops/H2fa108a", "https://tec.openplanner.team/stops/H2lc172b"], ["https://tec.openplanner.team/stops/H4ty334b", "https://tec.openplanner.team/stops/H4ty336a"], ["https://tec.openplanner.team/stops/N504aba", "https://tec.openplanner.team/stops/N504abb"], ["https://tec.openplanner.team/stops/Lmomarr2", "https://tec.openplanner.team/stops/Lmomarr3"], ["https://tec.openplanner.team/stops/LHcaube1", "https://tec.openplanner.team/stops/LSWeg--3"], ["https://tec.openplanner.team/stops/Bsencen1", "https://tec.openplanner.team/stops/H2mg135a"], ["https://tec.openplanner.team/stops/N353aaa", "https://tec.openplanner.team/stops/N353aeb"], ["https://tec.openplanner.team/stops/H4mo188b", "https://tec.openplanner.team/stops/H4mo208b"], ["https://tec.openplanner.team/stops/NB33aia", "https://tec.openplanner.team/stops/NB59akb"], ["https://tec.openplanner.team/stops/N145aca", "https://tec.openplanner.team/stops/N145adb"], ["https://tec.openplanner.team/stops/H4ty293b", "https://tec.openplanner.team/stops/H4ty303a"], ["https://tec.openplanner.team/stops/H1ms245a", "https://tec.openplanner.team/stops/H1ms260a"], ["https://tec.openplanner.team/stops/X616aba", "https://tec.openplanner.team/stops/X616ada"], ["https://tec.openplanner.team/stops/H2mo138b", "https://tec.openplanner.team/stops/H2mo138c"], ["https://tec.openplanner.team/stops/Lfhhosp1", "https://tec.openplanner.team/stops/Lfhpass1"], ["https://tec.openplanner.team/stops/X784adb", "https://tec.openplanner.team/stops/X784ala"], ["https://tec.openplanner.team/stops/N102aab", "https://tec.openplanner.team/stops/N104aaa"], ["https://tec.openplanner.team/stops/LAUberg1", "https://tec.openplanner.team/stops/LLC170-2"], ["https://tec.openplanner.team/stops/Bgoesch3", "https://tec.openplanner.team/stops/Bgoesch4"], ["https://tec.openplanner.team/stops/Cchjaur1", "https://tec.openplanner.team/stops/Cchplan2"], ["https://tec.openplanner.team/stops/N424aea", "https://tec.openplanner.team/stops/N425agb"], ["https://tec.openplanner.team/stops/X750afa", "https://tec.openplanner.team/stops/X750afb"], ["https://tec.openplanner.team/stops/Cblcen3", "https://tec.openplanner.team/stops/Cblcent1"], ["https://tec.openplanner.team/stops/N544aab", "https://tec.openplanner.team/stops/N549aea"], ["https://tec.openplanner.team/stops/X782aea", "https://tec.openplanner.team/stops/X782aeb"], ["https://tec.openplanner.team/stops/NC14aoa", "https://tec.openplanner.team/stops/NC14aob"], ["https://tec.openplanner.team/stops/LnEmett1", "https://tec.openplanner.team/stops/LsVhunn2"], ["https://tec.openplanner.team/stops/H4hx120a", "https://tec.openplanner.team/stops/H4hx120b"], ["https://tec.openplanner.team/stops/X758aaa", "https://tec.openplanner.team/stops/X758ahb"], ["https://tec.openplanner.team/stops/LROmorf1", "https://tec.openplanner.team/stops/LWaccom2"], ["https://tec.openplanner.team/stops/X826aab", "https://tec.openplanner.team/stops/X826agb"], ["https://tec.openplanner.team/stops/X869aaa", "https://tec.openplanner.team/stops/X869adb"], ["https://tec.openplanner.team/stops/NL81ada", "https://tec.openplanner.team/stops/NL81aea"], ["https://tec.openplanner.team/stops/Chpceri1", "https://tec.openplanner.team/stops/Chprobi1"], ["https://tec.openplanner.team/stops/LLOspin1", "https://tec.openplanner.team/stops/LVtvalu1"], ["https://tec.openplanner.team/stops/Lhujonc1", "https://tec.openplanner.team/stops/Lhujonc2"], ["https://tec.openplanner.team/stops/Bwatppa1", "https://tec.openplanner.team/stops/Bwatppa2"], ["https://tec.openplanner.team/stops/LHMa2321", "https://tec.openplanner.team/stops/LLC170-2"], ["https://tec.openplanner.team/stops/Beclfde1", "https://tec.openplanner.team/stops/Bronrch2"], ["https://tec.openplanner.team/stops/Cchparc3", "https://tec.openplanner.team/stops/CMparc1"], ["https://tec.openplanner.team/stops/Cmlsart2", "https://tec.openplanner.team/stops/Cnadrev2"], ["https://tec.openplanner.team/stops/Bcbqcim1", "https://tec.openplanner.team/stops/Bcbqegl1"], ["https://tec.openplanner.team/stops/LaMschr2", "https://tec.openplanner.team/stops/LmDwei31"], ["https://tec.openplanner.team/stops/Bdvmcbo2", "https://tec.openplanner.team/stops/Bwavbva2"], ["https://tec.openplanner.team/stops/LFCotte1", "https://tec.openplanner.team/stops/LFMrijk2"], ["https://tec.openplanner.team/stops/N539bba", "https://tec.openplanner.team/stops/N539bbb"], ["https://tec.openplanner.team/stops/H1fr131a", "https://tec.openplanner.team/stops/H1fr133b"], ["https://tec.openplanner.team/stops/Cmechnd2", "https://tec.openplanner.team/stops/Cmecite1"], ["https://tec.openplanner.team/stops/N244apa", "https://tec.openplanner.team/stops/N244asa"], ["https://tec.openplanner.team/stops/Cfometr1", "https://tec.openplanner.team/stops/CMfont1"], ["https://tec.openplanner.team/stops/H1bu139a", "https://tec.openplanner.team/stops/H1bu142a"], ["https://tec.openplanner.team/stops/N501cja", "https://tec.openplanner.team/stops/N501ckb"], ["https://tec.openplanner.team/stops/Bbsihau2", "https://tec.openplanner.team/stops/Bwaunop1"], ["https://tec.openplanner.team/stops/LSeaque4", "https://tec.openplanner.team/stops/LVbgend1"], ["https://tec.openplanner.team/stops/H1wa135a", "https://tec.openplanner.team/stops/H1wa144a"], ["https://tec.openplanner.team/stops/H4de113b", "https://tec.openplanner.team/stops/H4de114a"], ["https://tec.openplanner.team/stops/N383afa", "https://tec.openplanner.team/stops/N383afb"], ["https://tec.openplanner.team/stops/N106aaa", "https://tec.openplanner.team/stops/N106abb"], ["https://tec.openplanner.team/stops/X806aba", "https://tec.openplanner.team/stops/X806acb"], ["https://tec.openplanner.team/stops/Cprcalv2", "https://tec.openplanner.team/stops/NC44aba"], ["https://tec.openplanner.team/stops/H4ae100a", "https://tec.openplanner.team/stops/H4ef111a"], ["https://tec.openplanner.team/stops/X747ahb", "https://tec.openplanner.team/stops/X747aia"], ["https://tec.openplanner.team/stops/LTGsucr2", "https://tec.openplanner.team/stops/LTGvill2"], ["https://tec.openplanner.team/stops/LsCbrau1", "https://tec.openplanner.team/stops/LsCbrau2"], ["https://tec.openplanner.team/stops/Cfcpla2", "https://tec.openplanner.team/stops/Cfcplac3"], ["https://tec.openplanner.team/stops/N585abb", "https://tec.openplanner.team/stops/N585aja"], ["https://tec.openplanner.team/stops/Bmarcat2", "https://tec.openplanner.team/stops/Bmaregl2"], ["https://tec.openplanner.team/stops/Bcbqa361", "https://tec.openplanner.team/stops/Bcbqcoi1"], ["https://tec.openplanner.team/stops/H1so137a", "https://tec.openplanner.team/stops/H1so143b"], ["https://tec.openplanner.team/stops/LMupont2", "https://tec.openplanner.team/stops/LSDheus2"], ["https://tec.openplanner.team/stops/LBJchau*", "https://tec.openplanner.team/stops/LMTfagn1"], ["https://tec.openplanner.team/stops/LBPeg--2", "https://tec.openplanner.team/stops/LBPxhav1"], ["https://tec.openplanner.team/stops/H4ob110b", "https://tec.openplanner.team/stops/H4rc234a"], ["https://tec.openplanner.team/stops/H4ve140a", "https://tec.openplanner.team/stops/H4ve140b"], ["https://tec.openplanner.team/stops/X922acb", "https://tec.openplanner.team/stops/X922ada"], ["https://tec.openplanner.team/stops/Bbcocou2", "https://tec.openplanner.team/stops/Bbcogpl1"], ["https://tec.openplanner.team/stops/X869adb", "https://tec.openplanner.team/stops/X870ahb"], ["https://tec.openplanner.team/stops/Canlalu2", "https://tec.openplanner.team/stops/Canpeup1"], ["https://tec.openplanner.team/stops/N539abb", "https://tec.openplanner.team/stops/N539adc"], ["https://tec.openplanner.team/stops/X715aaa", "https://tec.openplanner.team/stops/X715aqb"], ["https://tec.openplanner.team/stops/N894aab", "https://tec.openplanner.team/stops/N894age"], ["https://tec.openplanner.team/stops/Cjulucq1", "https://tec.openplanner.team/stops/Cjuvand1"], ["https://tec.openplanner.team/stops/X602aaa", "https://tec.openplanner.team/stops/X602aqa"], ["https://tec.openplanner.team/stops/N506bua", "https://tec.openplanner.team/stops/N506bwa"], ["https://tec.openplanner.team/stops/LBgcroi2", "https://tec.openplanner.team/stops/LBgcroi4"], ["https://tec.openplanner.team/stops/N205aba", "https://tec.openplanner.team/stops/N205abb"], ["https://tec.openplanner.team/stops/Bllnchv1", "https://tec.openplanner.team/stops/Bllnhoc2"], ["https://tec.openplanner.team/stops/Bllncyc2", "https://tec.openplanner.team/stops/Bllnrro1"], ["https://tec.openplanner.team/stops/H1as102a", "https://tec.openplanner.team/stops/H1hg180a"], ["https://tec.openplanner.team/stops/Baisbar1", "https://tec.openplanner.team/stops/N519abb"], ["https://tec.openplanner.team/stops/LBkdahl2", "https://tec.openplanner.team/stops/LMsheid1"], ["https://tec.openplanner.team/stops/X740aea", "https://tec.openplanner.team/stops/X758aha"], ["https://tec.openplanner.team/stops/X636aha", "https://tec.openplanner.team/stops/X636ala"], ["https://tec.openplanner.team/stops/Bbryfon1", "https://tec.openplanner.team/stops/Bsammon4"], ["https://tec.openplanner.team/stops/H1ms252c", "https://tec.openplanner.team/stops/H1ms308b"], ["https://tec.openplanner.team/stops/H1gn148a", "https://tec.openplanner.team/stops/H1gn150b"], ["https://tec.openplanner.team/stops/N340aea", "https://tec.openplanner.team/stops/N340afb"], ["https://tec.openplanner.team/stops/LVbpave1", "https://tec.openplanner.team/stops/NL78afa"], ["https://tec.openplanner.team/stops/LkEbran2", "https://tec.openplanner.team/stops/LkEwolf2"], ["https://tec.openplanner.team/stops/Bchgbar1", "https://tec.openplanner.team/stops/Bchgbel1"], ["https://tec.openplanner.team/stops/NR38aba", "https://tec.openplanner.team/stops/NR38aca"], ["https://tec.openplanner.team/stops/Cgdcent1", "https://tec.openplanner.team/stops/Cgdrhau1"], ["https://tec.openplanner.team/stops/LDArich1", "https://tec.openplanner.team/stops/LVImons1"], ["https://tec.openplanner.team/stops/LLrgare2", "https://tec.openplanner.team/stops/LTHturo2"], ["https://tec.openplanner.team/stops/X801aub", "https://tec.openplanner.team/stops/X801ava"], ["https://tec.openplanner.team/stops/Bixlpat1", "https://tec.openplanner.team/stops/Buccdho2"], ["https://tec.openplanner.team/stops/H4my120b", "https://tec.openplanner.team/stops/H4vz367b"], ["https://tec.openplanner.team/stops/H2go113b", "https://tec.openplanner.team/stops/H2mg152a"], ["https://tec.openplanner.team/stops/LsCbrau2", "https://tec.openplanner.team/stops/LsCkirc2"], ["https://tec.openplanner.team/stops/H4gu111a", "https://tec.openplanner.team/stops/H4ta116b"], ["https://tec.openplanner.team/stops/Cctgiss1", "https://tec.openplanner.team/stops/Cctgiss2"], ["https://tec.openplanner.team/stops/H1tl121a", "https://tec.openplanner.team/stops/H1tl121b"], ["https://tec.openplanner.team/stops/X729aaa", "https://tec.openplanner.team/stops/X729aab"], ["https://tec.openplanner.team/stops/X561abc", "https://tec.openplanner.team/stops/XODvill2"], ["https://tec.openplanner.team/stops/N540aab", "https://tec.openplanner.team/stops/N540acd"], ["https://tec.openplanner.team/stops/X614aib", "https://tec.openplanner.team/stops/X623aab"], ["https://tec.openplanner.team/stops/X662acb", "https://tec.openplanner.team/stops/X663aea"], ["https://tec.openplanner.team/stops/Cmeloti1", "https://tec.openplanner.team/stops/Cwxplac2"], ["https://tec.openplanner.team/stops/N166adb", "https://tec.openplanner.team/stops/N167aea"], ["https://tec.openplanner.team/stops/N501cca", "https://tec.openplanner.team/stops/N501ccb"], ["https://tec.openplanner.team/stops/NR38aca", "https://tec.openplanner.team/stops/NR38acb"], ["https://tec.openplanner.team/stops/N254aab", "https://tec.openplanner.team/stops/N254adb"], ["https://tec.openplanner.team/stops/Lanpast1", "https://tec.openplanner.team/stops/Lanstat1"], ["https://tec.openplanner.team/stops/N563ama", "https://tec.openplanner.team/stops/N570abb"], ["https://tec.openplanner.team/stops/Cchfaub2", "https://tec.openplanner.team/stops/Cchlefe2"], ["https://tec.openplanner.team/stops/LPAchpl1", "https://tec.openplanner.team/stops/LVSpota1"], ["https://tec.openplanner.team/stops/Lvtbocl2", "https://tec.openplanner.team/stops/Lvtlomb1"], ["https://tec.openplanner.team/stops/LmRkape1", "https://tec.openplanner.team/stops/LmRkape2"], ["https://tec.openplanner.team/stops/Llgnico3", "https://tec.openplanner.team/stops/Llgnico7"], ["https://tec.openplanner.team/stops/X948aga", "https://tec.openplanner.team/stops/X948aub"], ["https://tec.openplanner.team/stops/LAvrout2", "https://tec.openplanner.team/stops/LLteg--1"], ["https://tec.openplanner.team/stops/LTHec--1", "https://tec.openplanner.team/stops/LTHperr2"], ["https://tec.openplanner.team/stops/N522aga", "https://tec.openplanner.team/stops/N522ala"], ["https://tec.openplanner.team/stops/Cfmgara2", "https://tec.openplanner.team/stops/Cfmrrou2"], ["https://tec.openplanner.team/stops/LSGcent1", "https://tec.openplanner.team/stops/LYechpl1"], ["https://tec.openplanner.team/stops/N232ava", "https://tec.openplanner.team/stops/N232boa"], ["https://tec.openplanner.team/stops/LHUchh-2", "https://tec.openplanner.team/stops/LHUremy1"], ["https://tec.openplanner.team/stops/LBGroma2", "https://tec.openplanner.team/stops/LLncime2"], ["https://tec.openplanner.team/stops/H2mo129a", "https://tec.openplanner.team/stops/H2mo129b"], ["https://tec.openplanner.team/stops/X850aka", "https://tec.openplanner.team/stops/X872aab"], ["https://tec.openplanner.team/stops/H1th180a", "https://tec.openplanner.team/stops/H3go103a"], ["https://tec.openplanner.team/stops/LTEnuro1", "https://tec.openplanner.team/stops/LVAstjo1"], ["https://tec.openplanner.team/stops/N501jja", "https://tec.openplanner.team/stops/N501jjb"], ["https://tec.openplanner.team/stops/H3bi110a", "https://tec.openplanner.team/stops/H3bi110b"], ["https://tec.openplanner.team/stops/LkAbahn*", "https://tec.openplanner.team/stops/LtEnach1"], ["https://tec.openplanner.team/stops/Lghferr1", "https://tec.openplanner.team/stops/Lghgend2"], ["https://tec.openplanner.team/stops/Bwaypon2", "https://tec.openplanner.team/stops/Cwsegli1"], ["https://tec.openplanner.team/stops/H5el100a", "https://tec.openplanner.team/stops/H5rx121a"], ["https://tec.openplanner.team/stops/NH21agb", "https://tec.openplanner.team/stops/NH21ahb"], ["https://tec.openplanner.team/stops/N545aab", "https://tec.openplanner.team/stops/N545acb"], ["https://tec.openplanner.team/stops/Bhptegl1", "https://tec.openplanner.team/stops/Bhptpla2"], ["https://tec.openplanner.team/stops/Bzluqga2", "https://tec.openplanner.team/stops/Bzluvil1"], ["https://tec.openplanner.team/stops/Cgzchab1", "https://tec.openplanner.team/stops/Cgzcour1"], ["https://tec.openplanner.team/stops/H2ha128a", "https://tec.openplanner.team/stops/H2hg146b"], ["https://tec.openplanner.team/stops/LWHkape2", "https://tec.openplanner.team/stops/LWHtrui1"], ["https://tec.openplanner.team/stops/N539asa", "https://tec.openplanner.team/stops/N539bda"], ["https://tec.openplanner.team/stops/N543bna", "https://tec.openplanner.team/stops/N543bnb"], ["https://tec.openplanner.team/stops/X768adb", "https://tec.openplanner.team/stops/X769apa"], ["https://tec.openplanner.team/stops/Cci28ju2", "https://tec.openplanner.team/stops/Ccipano1"], ["https://tec.openplanner.team/stops/Bnstgar2", "https://tec.openplanner.team/stops/Bnstpla2"], ["https://tec.openplanner.team/stops/Cgoclad2", "https://tec.openplanner.team/stops/Cgoloca2"], ["https://tec.openplanner.team/stops/Cluplve4", "https://tec.openplanner.team/stops/Clusncb4"], ["https://tec.openplanner.team/stops/X901awa", "https://tec.openplanner.team/stops/X901awb"], ["https://tec.openplanner.team/stops/N517aab", "https://tec.openplanner.team/stops/N517aca"], ["https://tec.openplanner.team/stops/H4cr110a", "https://tec.openplanner.team/stops/H4cr111b"], ["https://tec.openplanner.team/stops/H4hu119b", "https://tec.openplanner.team/stops/H4hu121b"], ["https://tec.openplanner.team/stops/N134aab", "https://tec.openplanner.team/stops/N134ada"], ["https://tec.openplanner.team/stops/LHCpaci2", "https://tec.openplanner.team/stops/LHMhof-1"], ["https://tec.openplanner.team/stops/N510acf", "https://tec.openplanner.team/stops/N510afa"], ["https://tec.openplanner.team/stops/X901ava", "https://tec.openplanner.team/stops/X901avb"], ["https://tec.openplanner.team/stops/N308ayb", "https://tec.openplanner.team/stops/N308azb"], ["https://tec.openplanner.team/stops/X806aeb", "https://tec.openplanner.team/stops/X806aia"], ["https://tec.openplanner.team/stops/Ccugail2", "https://tec.openplanner.team/stops/Ccutill3"], ["https://tec.openplanner.team/stops/H1mh113a", "https://tec.openplanner.team/stops/H1mh113c"], ["https://tec.openplanner.team/stops/Ljegoss2", "https://tec.openplanner.team/stops/Ltimarq2"], ["https://tec.openplanner.team/stops/N501aha", "https://tec.openplanner.team/stops/N501mda"], ["https://tec.openplanner.team/stops/Bfelcsa1", "https://tec.openplanner.team/stops/Bfelpla1"], ["https://tec.openplanner.team/stops/LBjvill3", "https://tec.openplanner.team/stops/X575ahb"], ["https://tec.openplanner.team/stops/N101ala", "https://tec.openplanner.team/stops/N101apa"], ["https://tec.openplanner.team/stops/LaAseba1", "https://tec.openplanner.team/stops/LaAseba2"], ["https://tec.openplanner.team/stops/X818alb", "https://tec.openplanner.team/stops/X818ama"], ["https://tec.openplanner.team/stops/X923aab", "https://tec.openplanner.team/stops/X923aba"], ["https://tec.openplanner.team/stops/Cmobeau1", "https://tec.openplanner.team/stops/Cromart1"], ["https://tec.openplanner.team/stops/X661ayb", "https://tec.openplanner.team/stops/X661ayc"], ["https://tec.openplanner.team/stops/N224agc", "https://tec.openplanner.team/stops/N349abb"], ["https://tec.openplanner.team/stops/N517aga", "https://tec.openplanner.team/stops/NR30aab"], ["https://tec.openplanner.team/stops/H2ma204b", "https://tec.openplanner.team/stops/H2ma206b"], ["https://tec.openplanner.team/stops/H4gu108c", "https://tec.openplanner.team/stops/H4jm116a"], ["https://tec.openplanner.team/stops/N135axb", "https://tec.openplanner.team/stops/N135aya"], ["https://tec.openplanner.team/stops/Bkrapri2", "https://tec.openplanner.team/stops/Bwolvan1"], ["https://tec.openplanner.team/stops/NL72aca", "https://tec.openplanner.team/stops/NL72acb"], ["https://tec.openplanner.team/stops/N501gqa", "https://tec.openplanner.team/stops/N501nda"], ["https://tec.openplanner.team/stops/Lsecime1", "https://tec.openplanner.team/stops/Lserena1"], ["https://tec.openplanner.team/stops/N538azb", "https://tec.openplanner.team/stops/N538baa"], ["https://tec.openplanner.team/stops/N521aua", "https://tec.openplanner.team/stops/N521aub"], ["https://tec.openplanner.team/stops/X796afa", "https://tec.openplanner.team/stops/X796aib"], ["https://tec.openplanner.team/stops/N135bha", "https://tec.openplanner.team/stops/N135bhb"], ["https://tec.openplanner.team/stops/LOuhalb2", "https://tec.openplanner.team/stops/LOuouff2"], ["https://tec.openplanner.team/stops/LATabba2", "https://tec.openplanner.team/stops/LATgill1"], ["https://tec.openplanner.team/stops/N539aea", "https://tec.openplanner.team/stops/N539amb"], ["https://tec.openplanner.team/stops/H1ho132a", "https://tec.openplanner.team/stops/H1ho135a"], ["https://tec.openplanner.team/stops/N261adb", "https://tec.openplanner.team/stops/N261aha"], ["https://tec.openplanner.team/stops/Csdpira1", "https://tec.openplanner.team/stops/Csdpira2"], ["https://tec.openplanner.team/stops/Ccomott2", "https://tec.openplanner.team/stops/Cvvgrsa1"], ["https://tec.openplanner.team/stops/H4ws160a", "https://tec.openplanner.team/stops/H4ws160b"], ["https://tec.openplanner.team/stops/Llgchai1", "https://tec.openplanner.team/stops/Llgcoll1"], ["https://tec.openplanner.team/stops/N529aha", "https://tec.openplanner.team/stops/N529ahb"], ["https://tec.openplanner.team/stops/N221abb", "https://tec.openplanner.team/stops/N221adb"], ["https://tec.openplanner.team/stops/Beclpma1", "https://tec.openplanner.team/stops/H2ec108a"], ["https://tec.openplanner.team/stops/H1bu140b", "https://tec.openplanner.team/stops/H2le147a"], ["https://tec.openplanner.team/stops/X750baa", "https://tec.openplanner.team/stops/X750bib"], ["https://tec.openplanner.team/stops/LHUlieg2", "https://tec.openplanner.team/stops/LHUmala1"], ["https://tec.openplanner.team/stops/H4co158a", "https://tec.openplanner.team/stops/H4co158b"], ["https://tec.openplanner.team/stops/LWetrib1", "https://tec.openplanner.team/stops/LWetrib2"], ["https://tec.openplanner.team/stops/LVLgotr3", "https://tec.openplanner.team/stops/LVLgotr4"], ["https://tec.openplanner.team/stops/X763aba", "https://tec.openplanner.team/stops/X763acb"], ["https://tec.openplanner.team/stops/Blhunys1", "https://tec.openplanner.team/stops/Bohngen1"], ["https://tec.openplanner.team/stops/N109ada", "https://tec.openplanner.team/stops/N122aba"], ["https://tec.openplanner.team/stops/Bbeubos2", "https://tec.openplanner.team/stops/N576ada"], ["https://tec.openplanner.team/stops/H1el134b", "https://tec.openplanner.team/stops/H1wi153a"], ["https://tec.openplanner.team/stops/Cptberg1", "https://tec.openplanner.team/stops/Cptdubo2"], ["https://tec.openplanner.team/stops/LLAchpl1", "https://tec.openplanner.team/stops/LLApavi2"], ["https://tec.openplanner.team/stops/Bfelpmo1", "https://tec.openplanner.team/stops/Bronpfe2"], ["https://tec.openplanner.team/stops/Cfcleco1", "https://tec.openplanner.team/stops/Cfcpier2"], ["https://tec.openplanner.team/stops/H5rx100b", "https://tec.openplanner.team/stops/H5rx122b"], ["https://tec.openplanner.team/stops/X761aba", "https://tec.openplanner.team/stops/X761aca"], ["https://tec.openplanner.team/stops/LAieg--2", "https://tec.openplanner.team/stops/LAigrim2"], ["https://tec.openplanner.team/stops/LCPaube2", "https://tec.openplanner.team/stops/LCPhall2"], ["https://tec.openplanner.team/stops/Cwfaldi1", "https://tec.openplanner.team/stops/Cwfcast1"], ["https://tec.openplanner.team/stops/LCPaywa2", "https://tec.openplanner.team/stops/LSpxhig2"], ["https://tec.openplanner.team/stops/Cjualed1", "https://tec.openplanner.team/stops/Cjuplco3"], ["https://tec.openplanner.team/stops/Bnivros2", "https://tec.openplanner.team/stops/Bnivsnu1"], ["https://tec.openplanner.team/stops/H4ht173b", "https://tec.openplanner.team/stops/H4la198c"], ["https://tec.openplanner.team/stops/LLMcouv1", "https://tec.openplanner.team/stops/LLMeg--2"], ["https://tec.openplanner.team/stops/Bnivpba1", "https://tec.openplanner.team/stops/Bnivphs1"], ["https://tec.openplanner.team/stops/H2sb231b", "https://tec.openplanner.team/stops/H2sb231c"], ["https://tec.openplanner.team/stops/X754apb", "https://tec.openplanner.team/stops/X754ava"], ["https://tec.openplanner.team/stops/Lmojans1", "https://tec.openplanner.team/stops/Lmoweri1"], ["https://tec.openplanner.team/stops/Lsebelv1", "https://tec.openplanner.team/stops/Lsehcoc1"], ["https://tec.openplanner.team/stops/H1hn205a", "https://tec.openplanner.team/stops/H1hn363b"], ["https://tec.openplanner.team/stops/Bgliopp3", "https://tec.openplanner.team/stops/Boppcar2"], ["https://tec.openplanner.team/stops/LBNgarn2", "https://tec.openplanner.team/stops/LeUindu1"], ["https://tec.openplanner.team/stops/Cwfbarr1", "https://tec.openplanner.team/stops/NC23aaa"], ["https://tec.openplanner.team/stops/Lvedepa*", "https://tec.openplanner.team/stops/Lveepar2"], ["https://tec.openplanner.team/stops/H1ms287a", "https://tec.openplanner.team/stops/H1ms287b"], ["https://tec.openplanner.team/stops/X818apa", "https://tec.openplanner.team/stops/X818avb"], ["https://tec.openplanner.team/stops/LCHeg--1", "https://tec.openplanner.team/stops/LCHfond2"], ["https://tec.openplanner.team/stops/NC44afb", "https://tec.openplanner.team/stops/NC44ahb"], ["https://tec.openplanner.team/stops/LMIbois1", "https://tec.openplanner.team/stops/LSOathe2"], ["https://tec.openplanner.team/stops/X952abb", "https://tec.openplanner.team/stops/X952aka"], ["https://tec.openplanner.team/stops/LXHadam1", "https://tec.openplanner.team/stops/LXHfalh1"], ["https://tec.openplanner.team/stops/H2hp119c", "https://tec.openplanner.team/stops/H2ll260b"], ["https://tec.openplanner.team/stops/LVAflat1", "https://tec.openplanner.team/stops/LVAflat2"], ["https://tec.openplanner.team/stops/LhDkreu1", "https://tec.openplanner.team/stops/LmRkreu2"], ["https://tec.openplanner.team/stops/H1hn209a", "https://tec.openplanner.team/stops/H1ms293b"], ["https://tec.openplanner.team/stops/H4ef162a", "https://tec.openplanner.team/stops/H4ef162b"], ["https://tec.openplanner.team/stops/H4oq224a", "https://tec.openplanner.team/stops/H4ty331a"], ["https://tec.openplanner.team/stops/Bwatber1", "https://tec.openplanner.team/stops/Bwatgge1"], ["https://tec.openplanner.team/stops/X639aaa", "https://tec.openplanner.team/stops/X639apa"], ["https://tec.openplanner.team/stops/LNIbas-2", "https://tec.openplanner.team/stops/LSZstoc2"], ["https://tec.openplanner.team/stops/H1hy128a", "https://tec.openplanner.team/stops/H1hy130a"], ["https://tec.openplanner.team/stops/LBBpech1", "https://tec.openplanner.team/stops/LCLscie1"], ["https://tec.openplanner.team/stops/Bwaab121", "https://tec.openplanner.team/stops/LWSstat2"], ["https://tec.openplanner.team/stops/N534bqa", "https://tec.openplanner.team/stops/N553aca"], ["https://tec.openplanner.team/stops/LBYwez-2", "https://tec.openplanner.team/stops/LHEelva1"], ["https://tec.openplanner.team/stops/H1as104b", "https://tec.openplanner.team/stops/H1ci106a"], ["https://tec.openplanner.team/stops/Ccocorb1", "https://tec.openplanner.team/stops/Ctrepin2"], ["https://tec.openplanner.team/stops/LHSfexh1", "https://tec.openplanner.team/stops/LHSlava1"], ["https://tec.openplanner.team/stops/Cfmcoro2", "https://tec.openplanner.team/stops/Cfmpui81"], ["https://tec.openplanner.team/stops/Cjxcoll1", "https://tec.openplanner.team/stops/Cmyboci1"], ["https://tec.openplanner.team/stops/X740abd", "https://tec.openplanner.team/stops/X740aga"], ["https://tec.openplanner.team/stops/Cthpano2", "https://tec.openplanner.team/stops/Cthstre1"], ["https://tec.openplanner.team/stops/X999ajb", "https://tec.openplanner.team/stops/X999aob"], ["https://tec.openplanner.team/stops/X739aha", "https://tec.openplanner.team/stops/X773abb"], ["https://tec.openplanner.team/stops/H1mm121a", "https://tec.openplanner.team/stops/H1mm121b"], ["https://tec.openplanner.team/stops/LCsbors1", "https://tec.openplanner.team/stops/LCsraws2"], ["https://tec.openplanner.team/stops/X601avb", "https://tec.openplanner.team/stops/X601cya"], ["https://tec.openplanner.team/stops/H2sv220a", "https://tec.openplanner.team/stops/H2sv220b"], ["https://tec.openplanner.team/stops/N506bha", "https://tec.openplanner.team/stops/N506bhb"], ["https://tec.openplanner.team/stops/Cmregli3", "https://tec.openplanner.team/stops/N162abb"], ["https://tec.openplanner.team/stops/N424aba", "https://tec.openplanner.team/stops/N424abb"], ["https://tec.openplanner.team/stops/Becepri1", "https://tec.openplanner.team/stops/Becepri2"], ["https://tec.openplanner.team/stops/H4ir167a", "https://tec.openplanner.team/stops/H4og209a"], ["https://tec.openplanner.team/stops/Ccychco2", "https://tec.openplanner.team/stops/NH01acb"], ["https://tec.openplanner.team/stops/Ltibure2", "https://tec.openplanner.team/stops/Ltibure4"], ["https://tec.openplanner.team/stops/LTymahr2", "https://tec.openplanner.team/stops/LTywyna1"], ["https://tec.openplanner.team/stops/LHAstal2", "https://tec.openplanner.team/stops/LOUbleu1"], ["https://tec.openplanner.team/stops/LBGgeer2", "https://tec.openplanner.team/stops/LGrchpl2"], ["https://tec.openplanner.team/stops/X818acb", "https://tec.openplanner.team/stops/X818aeb"], ["https://tec.openplanner.team/stops/N349aga", "https://tec.openplanner.team/stops/N349aia"], ["https://tec.openplanner.team/stops/X993aca", "https://tec.openplanner.team/stops/X994amb"], ["https://tec.openplanner.team/stops/X750ana", "https://tec.openplanner.team/stops/X750aoa"], ["https://tec.openplanner.team/stops/X796afb", "https://tec.openplanner.team/stops/X796aib"], ["https://tec.openplanner.team/stops/N357acb", "https://tec.openplanner.team/stops/N357aea"], ["https://tec.openplanner.team/stops/H1hv135b", "https://tec.openplanner.team/stops/H1mk123b"], ["https://tec.openplanner.team/stops/Lsebrun4", "https://tec.openplanner.team/stops/Lsepapi3"], ["https://tec.openplanner.team/stops/X820acb", "https://tec.openplanner.team/stops/X820adb"], ["https://tec.openplanner.team/stops/Ccuwain2", "https://tec.openplanner.team/stops/Cgysole2"], ["https://tec.openplanner.team/stops/X633aeb", "https://tec.openplanner.team/stops/X633ahb"], ["https://tec.openplanner.team/stops/H1mr122a", "https://tec.openplanner.team/stops/H1mr122b"], ["https://tec.openplanner.team/stops/LLxcite1", "https://tec.openplanner.team/stops/LLxcrem1"], ["https://tec.openplanner.team/stops/Llgverg1", "https://tec.openplanner.team/stops/Llgverg2"], ["https://tec.openplanner.team/stops/H1ht129a", "https://tec.openplanner.team/stops/H1ht135a"], ["https://tec.openplanner.team/stops/Ljufler1", "https://tec.openplanner.team/stops/Ljumesa1"], ["https://tec.openplanner.team/stops/H1sg148b", "https://tec.openplanner.team/stops/H1sg149b"], ["https://tec.openplanner.team/stops/H4ln128b", "https://tec.openplanner.team/stops/H4ne144a"], ["https://tec.openplanner.team/stops/Cmastma4", "https://tec.openplanner.team/stops/Cmazsnc2"], ["https://tec.openplanner.team/stops/Bmlnsms1", "https://tec.openplanner.team/stops/Brxmcna1"], ["https://tec.openplanner.team/stops/N245aba", "https://tec.openplanner.team/stops/N245aca"], ["https://tec.openplanner.team/stops/LJAsuri1", "https://tec.openplanner.team/stops/LSUhage1"], ["https://tec.openplanner.team/stops/Lvegc--3", "https://tec.openplanner.team/stops/Lvegc--6"], ["https://tec.openplanner.team/stops/NL77ajb", "https://tec.openplanner.team/stops/NL77aka"], ["https://tec.openplanner.team/stops/Lgrfass2", "https://tec.openplanner.team/stops/Lgrfrcu2"], ["https://tec.openplanner.team/stops/Cgzclef1", "https://tec.openplanner.team/stops/Cgzvivi1"], ["https://tec.openplanner.team/stops/H4ka179a", "https://tec.openplanner.team/stops/H4ka189b"], ["https://tec.openplanner.team/stops/LCHfond2", "https://tec.openplanner.team/stops/Lprsher2"], ["https://tec.openplanner.team/stops/LhM07--1", "https://tec.openplanner.team/stops/LhM07--2"], ["https://tec.openplanner.team/stops/X940abb", "https://tec.openplanner.team/stops/X940ada"], ["https://tec.openplanner.team/stops/LMAbell1", "https://tec.openplanner.team/stops/LMAbijo1"], ["https://tec.openplanner.team/stops/H4bo120b", "https://tec.openplanner.team/stops/H4bo178a"], ["https://tec.openplanner.team/stops/X672afb", "https://tec.openplanner.team/stops/X672apa"], ["https://tec.openplanner.team/stops/X666ajb", "https://tec.openplanner.team/stops/X666akb"], ["https://tec.openplanner.team/stops/Cvscomb1", "https://tec.openplanner.team/stops/N530afa"], ["https://tec.openplanner.team/stops/X640aua", "https://tec.openplanner.team/stops/X640aub"], ["https://tec.openplanner.team/stops/Cmychau2", "https://tec.openplanner.team/stops/Cmyplac1"], ["https://tec.openplanner.team/stops/LLrc1651", "https://tec.openplanner.team/stops/LWMcent2"], ["https://tec.openplanner.team/stops/LJAcime2", "https://tec.openplanner.team/stops/LJAherb4"], ["https://tec.openplanner.team/stops/X817aaa", "https://tec.openplanner.team/stops/X822apb"], ["https://tec.openplanner.team/stops/X601bva", "https://tec.openplanner.team/stops/X601dga"], ["https://tec.openplanner.team/stops/Cgrbert1", "https://tec.openplanner.team/stops/Cgrchas1"], ["https://tec.openplanner.team/stops/LClange2", "https://tec.openplanner.team/stops/LLMcouv1"], ["https://tec.openplanner.team/stops/N135aja", "https://tec.openplanner.team/stops/N135aqa"], ["https://tec.openplanner.team/stops/LkEkric1", "https://tec.openplanner.team/stops/LkEneus1"], ["https://tec.openplanner.team/stops/H4an111b", "https://tec.openplanner.team/stops/H4cr110a"], ["https://tec.openplanner.team/stops/N526acb", "https://tec.openplanner.team/stops/N526aea"], ["https://tec.openplanner.team/stops/Ceregl1", "https://tec.openplanner.team/stops/Cfcrerp2"], ["https://tec.openplanner.team/stops/N501hua", "https://tec.openplanner.team/stops/N501hya"], ["https://tec.openplanner.team/stops/N242aeb", "https://tec.openplanner.team/stops/N243aaa"], ["https://tec.openplanner.team/stops/X604abb", "https://tec.openplanner.team/stops/X604acb"], ["https://tec.openplanner.team/stops/X609ahb", "https://tec.openplanner.team/stops/X609ara"], ["https://tec.openplanner.team/stops/LWDplac1", "https://tec.openplanner.team/stops/LWDplac2"], ["https://tec.openplanner.team/stops/Lousimo1", "https://tec.openplanner.team/stops/Louvand2"], ["https://tec.openplanner.team/stops/Bsdacab2", "https://tec.openplanner.team/stops/Bsdampe1"], ["https://tec.openplanner.team/stops/X390ahb", "https://tec.openplanner.team/stops/X390aia"], ["https://tec.openplanner.team/stops/Lghpara1", "https://tec.openplanner.team/stops/Lghpara2"], ["https://tec.openplanner.team/stops/Canboha1", "https://tec.openplanner.team/stops/Canboha2"], ["https://tec.openplanner.team/stops/X667aca", "https://tec.openplanner.team/stops/X667acb"], ["https://tec.openplanner.team/stops/Bjodcoi2", "https://tec.openplanner.team/stops/NR10aaa"], ["https://tec.openplanner.team/stops/LSOferr1", "https://tec.openplanner.team/stops/LSOferr3"], ["https://tec.openplanner.team/stops/Cragoss2", "https://tec.openplanner.team/stops/Craplac3"], ["https://tec.openplanner.team/stops/H4ff120a", "https://tec.openplanner.team/stops/H4ff122b"], ["https://tec.openplanner.team/stops/H1mj127a", "https://tec.openplanner.team/stops/H1mj128a"], ["https://tec.openplanner.team/stops/X825aga", "https://tec.openplanner.team/stops/X826aga"], ["https://tec.openplanner.team/stops/Clftour2", "https://tec.openplanner.team/stops/Crglyre2"], ["https://tec.openplanner.team/stops/X609afa", "https://tec.openplanner.team/stops/X609afb"], ["https://tec.openplanner.team/stops/N232ajb", "https://tec.openplanner.team/stops/N232cab"], ["https://tec.openplanner.team/stops/H4bu109a", "https://tec.openplanner.team/stops/H4fa167a"], ["https://tec.openplanner.team/stops/LAWaube1", "https://tec.openplanner.team/stops/LHGtong2"], ["https://tec.openplanner.team/stops/H1mc127a", "https://tec.openplanner.team/stops/H1mc127b"], ["https://tec.openplanner.team/stops/H4hx111a", "https://tec.openplanner.team/stops/H4hx112a"], ["https://tec.openplanner.team/stops/H2ch100a", "https://tec.openplanner.team/stops/H2ch100c"], ["https://tec.openplanner.team/stops/X651afa", "https://tec.openplanner.team/stops/X659acb"], ["https://tec.openplanner.team/stops/H1ho143c", "https://tec.openplanner.team/stops/H1sg147a"], ["https://tec.openplanner.team/stops/LAUabat2", "https://tec.openplanner.team/stops/LAUcose1"], ["https://tec.openplanner.team/stops/N512aka", "https://tec.openplanner.team/stops/N512akb"], ["https://tec.openplanner.team/stops/Boppegl1", "https://tec.openplanner.team/stops/Bopplon2"], ["https://tec.openplanner.team/stops/Lgdhall*", "https://tec.openplanner.team/stops/Lgdmaye1"], ["https://tec.openplanner.team/stops/N425adb", "https://tec.openplanner.team/stops/N425aeb"], ["https://tec.openplanner.team/stops/X597aaa", "https://tec.openplanner.team/stops/X796aib"], ["https://tec.openplanner.team/stops/Bneeace1", "https://tec.openplanner.team/stops/Bneehou1"], ["https://tec.openplanner.team/stops/N151aja", "https://tec.openplanner.team/stops/N151ajb"], ["https://tec.openplanner.team/stops/N549aab", "https://tec.openplanner.team/stops/N549acb"], ["https://tec.openplanner.team/stops/X730afb", "https://tec.openplanner.team/stops/X731aia"], ["https://tec.openplanner.team/stops/N576aia", "https://tec.openplanner.team/stops/N576aja"], ["https://tec.openplanner.team/stops/LVlroua2", "https://tec.openplanner.team/stops/LVlroua4"], ["https://tec.openplanner.team/stops/X946agb", "https://tec.openplanner.team/stops/X946aha"], ["https://tec.openplanner.team/stops/N573aca", "https://tec.openplanner.team/stops/N573acb"], ["https://tec.openplanner.team/stops/Balswwe2", "https://tec.openplanner.team/stops/Bhalcbr1"], ["https://tec.openplanner.team/stops/N501gcb", "https://tec.openplanner.team/stops/N501lda"], ["https://tec.openplanner.team/stops/LTEkl121", "https://tec.openplanner.team/stops/LTEkl122"], ["https://tec.openplanner.team/stops/Lccawir2", "https://tec.openplanner.team/stops/Lccawir3"], ["https://tec.openplanner.team/stops/Bclgavi2", "https://tec.openplanner.team/stops/Bclgpla1"], ["https://tec.openplanner.team/stops/Lhrbass2", "https://tec.openplanner.team/stops/Lhrdron2"], ["https://tec.openplanner.team/stops/H1gi118a", "https://tec.openplanner.team/stops/H1hl122b"], ["https://tec.openplanner.team/stops/X672apa", "https://tec.openplanner.team/stops/X817aga"], ["https://tec.openplanner.team/stops/N155afa", "https://tec.openplanner.team/stops/N155afb"], ["https://tec.openplanner.team/stops/X818awa", "https://tec.openplanner.team/stops/X820aeb"], ["https://tec.openplanner.team/stops/X781ada", "https://tec.openplanner.team/stops/X781adb"], ["https://tec.openplanner.team/stops/Blonegl2", "https://tec.openplanner.team/stops/Blontry1"], ["https://tec.openplanner.team/stops/LLedoya1", "https://tec.openplanner.team/stops/X782aba"], ["https://tec.openplanner.team/stops/H4fr140b", "https://tec.openplanner.team/stops/H4ma399b"], ["https://tec.openplanner.team/stops/X908afb", "https://tec.openplanner.team/stops/X911aoa"], ["https://tec.openplanner.team/stops/N308aic", "https://tec.openplanner.team/stops/N308aja"], ["https://tec.openplanner.team/stops/H4ag105a", "https://tec.openplanner.team/stops/H4ag105b"], ["https://tec.openplanner.team/stops/N311aeb", "https://tec.openplanner.team/stops/N311afb"], ["https://tec.openplanner.team/stops/X641acb", "https://tec.openplanner.team/stops/X641aob"], ["https://tec.openplanner.team/stops/LdElamb2", "https://tec.openplanner.team/stops/LeIdeid1"], ["https://tec.openplanner.team/stops/Lbhmc--1", "https://tec.openplanner.team/stops/Lrogene*"], ["https://tec.openplanner.team/stops/N511aea", "https://tec.openplanner.team/stops/N511afb"], ["https://tec.openplanner.team/stops/Crorogn2", "https://tec.openplanner.team/stops/Csograf4"], ["https://tec.openplanner.team/stops/LHCcroy1", "https://tec.openplanner.team/stops/LHCcroy2"], ["https://tec.openplanner.team/stops/LETeg--1", "https://tec.openplanner.team/stops/LMIlac-2"], ["https://tec.openplanner.team/stops/N149ahb", "https://tec.openplanner.team/stops/N149ala"], ["https://tec.openplanner.team/stops/LVIastr1", "https://tec.openplanner.team/stops/LVIdepo2"], ["https://tec.openplanner.team/stops/Cfocant2", "https://tec.openplanner.team/stops/Cfometr2"], ["https://tec.openplanner.team/stops/Cmqbert1", "https://tec.openplanner.team/stops/N425aba"], ["https://tec.openplanner.team/stops/Btanbth1", "https://tec.openplanner.team/stops/Btanvil1"], ["https://tec.openplanner.team/stops/X758aca", "https://tec.openplanner.team/stops/X758aha"], ["https://tec.openplanner.team/stops/N507aaa", "https://tec.openplanner.team/stops/NL68aac"], ["https://tec.openplanner.team/stops/Bcsgcou2", "https://tec.openplanner.team/stops/Blaspch2"], ["https://tec.openplanner.team/stops/X982ata", "https://tec.openplanner.team/stops/X982aub"], ["https://tec.openplanner.team/stops/X771aeb", "https://tec.openplanner.team/stops/X771afb"], ["https://tec.openplanner.team/stops/N101aea", "https://tec.openplanner.team/stops/N101aua"], ["https://tec.openplanner.team/stops/H5wo126b", "https://tec.openplanner.team/stops/H5wo136b"], ["https://tec.openplanner.team/stops/N118agb", "https://tec.openplanner.team/stops/N118ana"], ["https://tec.openplanner.team/stops/X750bma", "https://tec.openplanner.team/stops/X750bmb"], ["https://tec.openplanner.team/stops/Cjumarc2", "https://tec.openplanner.team/stops/Cjuvand1"], ["https://tec.openplanner.team/stops/X917acb", "https://tec.openplanner.team/stops/X919aeb"], ["https://tec.openplanner.team/stops/LCObouh2", "https://tec.openplanner.team/stops/Lpejonc2"], ["https://tec.openplanner.team/stops/Brebrha1", "https://tec.openplanner.team/stops/Brebrha2"], ["https://tec.openplanner.team/stops/Cptcamb1", "https://tec.openplanner.team/stops/Cptcamb2"], ["https://tec.openplanner.team/stops/LeYvoge2", "https://tec.openplanner.team/stops/LrAalte1"], ["https://tec.openplanner.team/stops/X351ada", "https://tec.openplanner.team/stops/X358afa"], ["https://tec.openplanner.team/stops/LFFchal2", "https://tec.openplanner.team/stops/LFFeg--1"], ["https://tec.openplanner.team/stops/N506aaa", "https://tec.openplanner.team/stops/N506bub"], ["https://tec.openplanner.team/stops/Cmgpthi1", "https://tec.openplanner.team/stops/Cmqbert1"], ["https://tec.openplanner.team/stops/Bettcha3", "https://tec.openplanner.team/stops/Bettlha1"], ["https://tec.openplanner.team/stops/X937adb", "https://tec.openplanner.team/stops/X952ama"], ["https://tec.openplanner.team/stops/LeLcrem2", "https://tec.openplanner.team/stops/LkAbahn*"], ["https://tec.openplanner.team/stops/Cjucar01", "https://tec.openplanner.team/stops/Cjucar02"], ["https://tec.openplanner.team/stops/H1bb146b", "https://tec.openplanner.team/stops/H1do115a"], ["https://tec.openplanner.team/stops/LSGmall2", "https://tec.openplanner.team/stops/LSGsurf1"], ["https://tec.openplanner.team/stops/N874abb", "https://tec.openplanner.team/stops/N874aha"], ["https://tec.openplanner.team/stops/X542aia", "https://tec.openplanner.team/stops/X542aib"], ["https://tec.openplanner.team/stops/Bjod7co1", "https://tec.openplanner.team/stops/Bjodeco2"], ["https://tec.openplanner.team/stops/Bplnfpa1", "https://tec.openplanner.team/stops/Bwatmgo3"], ["https://tec.openplanner.team/stops/N501kna", "https://tec.openplanner.team/stops/N501kpa"], ["https://tec.openplanner.team/stops/Bbiefon1", "https://tec.openplanner.team/stops/Bndbnod1"], ["https://tec.openplanner.team/stops/X801bwa", "https://tec.openplanner.team/stops/X802aza"], ["https://tec.openplanner.team/stops/N106ajb", "https://tec.openplanner.team/stops/N106ana"], ["https://tec.openplanner.team/stops/H2pe162a", "https://tec.openplanner.team/stops/H2pe163a"], ["https://tec.openplanner.team/stops/N514ama", "https://tec.openplanner.team/stops/N515ana"], ["https://tec.openplanner.team/stops/Bbcocvb1", "https://tec.openplanner.team/stops/Bbcomar2"], ["https://tec.openplanner.team/stops/Lflsana2", "https://tec.openplanner.team/stops/Lmabott2"], ["https://tec.openplanner.team/stops/X659aha", "https://tec.openplanner.team/stops/X659aib"], ["https://tec.openplanner.team/stops/LtH28a-1", "https://tec.openplanner.team/stops/LtHfrie1"], ["https://tec.openplanner.team/stops/N540acb", "https://tec.openplanner.team/stops/N540acd"], ["https://tec.openplanner.team/stops/LSZeg--1", "https://tec.openplanner.team/stops/LSZprie1"], ["https://tec.openplanner.team/stops/LbRfrie2", "https://tec.openplanner.team/stops/LbRkirc1"], ["https://tec.openplanner.team/stops/LFfeg--1", "https://tec.openplanner.team/stops/LPRmoul1"], ["https://tec.openplanner.team/stops/X917aha", "https://tec.openplanner.team/stops/X917ahb"], ["https://tec.openplanner.team/stops/H1ho122b", "https://tec.openplanner.team/stops/H1ho122c"], ["https://tec.openplanner.team/stops/NR21aaa", "https://tec.openplanner.team/stops/NR21abb"], ["https://tec.openplanner.team/stops/Ccucora1", "https://tec.openplanner.team/stops/Ccucorb3"], ["https://tec.openplanner.team/stops/X902ada", "https://tec.openplanner.team/stops/X902aga"], ["https://tec.openplanner.team/stops/X615bca", "https://tec.openplanner.team/stops/X615bcb"], ["https://tec.openplanner.team/stops/Cchcaya1", "https://tec.openplanner.team/stops/Cchcaya2"], ["https://tec.openplanner.team/stops/LeUbael1", "https://tec.openplanner.team/stops/LhEauto2"], ["https://tec.openplanner.team/stops/LmR50--2", "https://tec.openplanner.team/stops/LsHfrie2"], ["https://tec.openplanner.team/stops/H1by101b", "https://tec.openplanner.team/stops/H1mk116a"], ["https://tec.openplanner.team/stops/Lbrnanc1", "https://tec.openplanner.team/stops/Llginte1"], ["https://tec.openplanner.team/stops/LAMfroi1", "https://tec.openplanner.team/stops/LAMpirk1"], ["https://tec.openplanner.team/stops/Csysans1", "https://tec.openplanner.team/stops/Csysans2"], ["https://tec.openplanner.team/stops/X649aaa", "https://tec.openplanner.team/stops/X671aaa"], ["https://tec.openplanner.team/stops/X903aba", "https://tec.openplanner.team/stops/X903abb"], ["https://tec.openplanner.team/stops/Crcegli3", "https://tec.openplanner.team/stops/Crcverr2"], ["https://tec.openplanner.team/stops/X650aab", "https://tec.openplanner.team/stops/X650anb"], ["https://tec.openplanner.team/stops/Bgntcom1", "https://tec.openplanner.team/stops/Bmelmqu2"], ["https://tec.openplanner.team/stops/Bmrspel1", "https://tec.openplanner.team/stops/Bmrspel2"], ["https://tec.openplanner.team/stops/X394aea", "https://tec.openplanner.team/stops/X394aeb"], ["https://tec.openplanner.team/stops/X928aaa", "https://tec.openplanner.team/stops/X928aab"], ["https://tec.openplanner.team/stops/H1em101b", "https://tec.openplanner.team/stops/H1em109b"], ["https://tec.openplanner.team/stops/Bgerprg2", "https://tec.openplanner.team/stops/Bgrhche2"], ["https://tec.openplanner.team/stops/Cmlbulp3", "https://tec.openplanner.team/stops/Cmlcazi2"], ["https://tec.openplanner.team/stops/LFyanto1", "https://tec.openplanner.team/stops/LFyWarc2"], ["https://tec.openplanner.team/stops/N501lpb", "https://tec.openplanner.team/stops/N501lrb"], ["https://tec.openplanner.team/stops/H4ty301a", "https://tec.openplanner.team/stops/H4ty328b"], ["https://tec.openplanner.team/stops/H1as103a", "https://tec.openplanner.team/stops/H1as103b"], ["https://tec.openplanner.team/stops/H5rx127a", "https://tec.openplanner.team/stops/H5rx127b"], ["https://tec.openplanner.team/stops/NL76asa", "https://tec.openplanner.team/stops/NL80aub"], ["https://tec.openplanner.team/stops/Crcpla1", "https://tec.openplanner.team/stops/NH03aga"], ["https://tec.openplanner.team/stops/LBhcent2", "https://tec.openplanner.team/stops/LSoeg--2"], ["https://tec.openplanner.team/stops/H1cd112a", "https://tec.openplanner.team/stops/H1ne145a"], ["https://tec.openplanner.team/stops/Bolpmre1", "https://tec.openplanner.team/stops/Bolppsn1"], ["https://tec.openplanner.team/stops/LLmeg--2", "https://tec.openplanner.team/stops/LLmetat1"], ["https://tec.openplanner.team/stops/H1br131b", "https://tec.openplanner.team/stops/H1ev149a"], ["https://tec.openplanner.team/stops/N155aha", "https://tec.openplanner.team/stops/N160aga"], ["https://tec.openplanner.team/stops/N501gnb", "https://tec.openplanner.team/stops/N501gsa"], ["https://tec.openplanner.team/stops/LJOchar2", "https://tec.openplanner.team/stops/LXHbell2"], ["https://tec.openplanner.team/stops/Lmoboeu1", "https://tec.openplanner.team/stops/Lmomarr1"], ["https://tec.openplanner.team/stops/X695aga", "https://tec.openplanner.team/stops/X696aha"], ["https://tec.openplanner.team/stops/Csbberg1", "https://tec.openplanner.team/stops/H1sa113a"], ["https://tec.openplanner.team/stops/Bqueblo1", "https://tec.openplanner.team/stops/Bqueblo2"], ["https://tec.openplanner.team/stops/Crachap1", "https://tec.openplanner.team/stops/Crachap2"], ["https://tec.openplanner.team/stops/Bhalalb2", "https://tec.openplanner.team/stops/Bhalsro2"], ["https://tec.openplanner.team/stops/H2fy119b", "https://tec.openplanner.team/stops/H2mg137a"], ["https://tec.openplanner.team/stops/X609aha", "https://tec.openplanner.team/stops/X609aib"], ["https://tec.openplanner.team/stops/X725afg", "https://tec.openplanner.team/stops/X725bga"], ["https://tec.openplanner.team/stops/H1en100b", "https://tec.openplanner.team/stops/H1en101b"], ["https://tec.openplanner.team/stops/LSPmalc1", "https://tec.openplanner.team/stops/LSTamer2"], ["https://tec.openplanner.team/stops/Brsga152", "https://tec.openplanner.team/stops/Brsggol2"], ["https://tec.openplanner.team/stops/Blasbh52", "https://tec.openplanner.team/stops/Blasbti2"], ["https://tec.openplanner.team/stops/X953ada", "https://tec.openplanner.team/stops/X953aeb"], ["https://tec.openplanner.team/stops/X371aea", "https://tec.openplanner.team/stops/X371afb"], ["https://tec.openplanner.team/stops/Ccipech2", "https://tec.openplanner.team/stops/Cmttrie2"], ["https://tec.openplanner.team/stops/LLeeg--1", "https://tec.openplanner.team/stops/X547aeb"], ["https://tec.openplanner.team/stops/LHhchau1", "https://tec.openplanner.team/stops/NL30akb"], ["https://tec.openplanner.team/stops/X892aaa", "https://tec.openplanner.team/stops/X892aha"], ["https://tec.openplanner.team/stops/X955aea", "https://tec.openplanner.team/stops/X955aeb"], ["https://tec.openplanner.team/stops/LAuchau1", "https://tec.openplanner.team/stops/LAuchau2"], ["https://tec.openplanner.team/stops/LAncoup1", "https://tec.openplanner.team/stops/LVncarr1"], ["https://tec.openplanner.team/stops/Csshouy1", "https://tec.openplanner.team/stops/Csspn2"], ["https://tec.openplanner.team/stops/LLbcafe1", "https://tec.openplanner.team/stops/LRcjard2"], ["https://tec.openplanner.team/stops/LBMecol2", "https://tec.openplanner.team/stops/X982bfa"], ["https://tec.openplanner.team/stops/Lsmecol2", "https://tec.openplanner.team/stops/Lsmrwan2"], ["https://tec.openplanner.team/stops/H4by116a", "https://tec.openplanner.team/stops/H4by116b"], ["https://tec.openplanner.team/stops/H4bo122b", "https://tec.openplanner.team/stops/H4bo182b"], ["https://tec.openplanner.team/stops/Cacscav1", "https://tec.openplanner.team/stops/NC24afb"], ["https://tec.openplanner.team/stops/LmD27--1", "https://tec.openplanner.team/stops/LmD27--2"], ["https://tec.openplanner.team/stops/X890adb", "https://tec.openplanner.team/stops/X891aab"], ["https://tec.openplanner.team/stops/N117ayb", "https://tec.openplanner.team/stops/N117aza"], ["https://tec.openplanner.team/stops/H1wg125c", "https://tec.openplanner.team/stops/H1wg126a"], ["https://tec.openplanner.team/stops/Brsgleq1", "https://tec.openplanner.team/stops/Brsgleq2"], ["https://tec.openplanner.team/stops/Clolidl2", "https://tec.openplanner.team/stops/Cloravi1"], ["https://tec.openplanner.team/stops/H2hg271b", "https://tec.openplanner.team/stops/H2ll198b"], ["https://tec.openplanner.team/stops/H4to131a", "https://tec.openplanner.team/stops/H4to134b"], ["https://tec.openplanner.team/stops/Bheneco1", "https://tec.openplanner.team/stops/Bhenpln1"], ["https://tec.openplanner.team/stops/N503afb", "https://tec.openplanner.team/stops/N503aia"], ["https://tec.openplanner.team/stops/N501fxa", "https://tec.openplanner.team/stops/N501hja"], ["https://tec.openplanner.team/stops/LDmwaef2", "https://tec.openplanner.team/stops/LSBdelc1"], ["https://tec.openplanner.team/stops/N203aab", "https://tec.openplanner.team/stops/N203aeb"], ["https://tec.openplanner.team/stops/X991aga", "https://tec.openplanner.team/stops/X991agc"], ["https://tec.openplanner.team/stops/N506aba", "https://tec.openplanner.team/stops/N506aoa"], ["https://tec.openplanner.team/stops/Ljetout3", "https://tec.openplanner.team/stops/Ljetout4"], ["https://tec.openplanner.team/stops/Llgbruy2", "https://tec.openplanner.team/stops/Llgcmes2"], ["https://tec.openplanner.team/stops/X619adb", "https://tec.openplanner.team/stops/X619aea"], ["https://tec.openplanner.team/stops/H1ba108a", "https://tec.openplanner.team/stops/H1gh371a"], ["https://tec.openplanner.team/stops/N525adb", "https://tec.openplanner.team/stops/N525aeb"], ["https://tec.openplanner.team/stops/N543cib", "https://tec.openplanner.team/stops/N543cja"], ["https://tec.openplanner.team/stops/Clostan1", "https://tec.openplanner.team/stops/Clostan2"], ["https://tec.openplanner.team/stops/X911akb", "https://tec.openplanner.team/stops/X911ala"], ["https://tec.openplanner.team/stops/Ldimeun2", "https://tec.openplanner.team/stops/Ldipost1"], ["https://tec.openplanner.team/stops/N215aba", "https://tec.openplanner.team/stops/N215abb"], ["https://tec.openplanner.team/stops/Bnilpco1", "https://tec.openplanner.team/stops/Bnilpco2"], ["https://tec.openplanner.team/stops/H4ne140a", "https://tec.openplanner.team/stops/H4ne140b"], ["https://tec.openplanner.team/stops/X825ada", "https://tec.openplanner.team/stops/X825adb"], ["https://tec.openplanner.team/stops/Cjupier1", "https://tec.openplanner.team/stops/Cjupier2"], ["https://tec.openplanner.team/stops/X806abb", "https://tec.openplanner.team/stops/X806aia"], ["https://tec.openplanner.team/stops/Blhueca2", "https://tec.openplanner.team/stops/Blhugmo1"], ["https://tec.openplanner.team/stops/H1ba109b", "https://tec.openplanner.team/stops/H1te174a"], ["https://tec.openplanner.team/stops/H1gn147a", "https://tec.openplanner.team/stops/H1gn151a"], ["https://tec.openplanner.team/stops/N383adb", "https://tec.openplanner.team/stops/N383afa"], ["https://tec.openplanner.team/stops/X723akb", "https://tec.openplanner.team/stops/X723amb"], ["https://tec.openplanner.team/stops/X624ada", "https://tec.openplanner.team/stops/X624aga"], ["https://tec.openplanner.team/stops/Lagcolo2", "https://tec.openplanner.team/stops/LTIsain1"], ["https://tec.openplanner.team/stops/LHMbach4", "https://tec.openplanner.team/stops/LRmmabr2"], ["https://tec.openplanner.team/stops/Cmlbruy1", "https://tec.openplanner.team/stops/Cmlrbru1"], ["https://tec.openplanner.team/stops/H4fg116b", "https://tec.openplanner.team/stops/H4wn131b"], ["https://tec.openplanner.team/stops/N532aca", "https://tec.openplanner.team/stops/N532ajb"], ["https://tec.openplanner.team/stops/Llgphol2", "https://tec.openplanner.team/stops/Llgtcha1"], ["https://tec.openplanner.team/stops/N120aoc", "https://tec.openplanner.team/stops/N301aga"], ["https://tec.openplanner.team/stops/Cctecol2", "https://tec.openplanner.team/stops/Cctvill1"], ["https://tec.openplanner.team/stops/H1al146a", "https://tec.openplanner.team/stops/H1mb137b"], ["https://tec.openplanner.team/stops/LBsoha-1", "https://tec.openplanner.team/stops/LBsoha-2"], ["https://tec.openplanner.team/stops/Ltithie1", "https://tec.openplanner.team/stops/Ltithie2"], ["https://tec.openplanner.team/stops/N217ada", "https://tec.openplanner.team/stops/N232ada"], ["https://tec.openplanner.team/stops/LGLchap1", "https://tec.openplanner.team/stops/LGLobor1"], ["https://tec.openplanner.team/stops/LhGfl241", "https://tec.openplanner.team/stops/LhGfl242"], ["https://tec.openplanner.team/stops/Lagfour1", "https://tec.openplanner.team/stops/Lagfour2"], ["https://tec.openplanner.team/stops/Lsebove2", "https://tec.openplanner.team/stops/Lsecroi2"], ["https://tec.openplanner.team/stops/N501ldb", "https://tec.openplanner.team/stops/N538abb"], ["https://tec.openplanner.team/stops/Bhticbr1", "https://tec.openplanner.team/stops/Bhtihau1"], ["https://tec.openplanner.team/stops/N501ffb", "https://tec.openplanner.team/stops/N501mkb"], ["https://tec.openplanner.team/stops/LCPone92", "https://tec.openplanner.team/stops/LHycent*"], ["https://tec.openplanner.team/stops/X952aca", "https://tec.openplanner.team/stops/X952aha"], ["https://tec.openplanner.team/stops/H1pd145a", "https://tec.openplanner.team/stops/H1sb147a"], ["https://tec.openplanner.team/stops/LVGeg--1", "https://tec.openplanner.team/stops/LVGeg--5"], ["https://tec.openplanner.team/stops/LlNbene2", "https://tec.openplanner.team/stops/LlNlont1"], ["https://tec.openplanner.team/stops/Cstdona1", "https://tec.openplanner.team/stops/Cstplac2"], ["https://tec.openplanner.team/stops/Bnivros1", "https://tec.openplanner.team/stops/Bnivvri1"], ["https://tec.openplanner.team/stops/X601dfa", "https://tec.openplanner.team/stops/X612aba"], ["https://tec.openplanner.team/stops/X808aga", "https://tec.openplanner.team/stops/X811afb"], ["https://tec.openplanner.team/stops/N577aaa", "https://tec.openplanner.team/stops/N577acb"], ["https://tec.openplanner.team/stops/Ctybaco1", "https://tec.openplanner.team/stops/Ctybaco2"], ["https://tec.openplanner.team/stops/LeLdorf1", "https://tec.openplanner.team/stops/LkAkirc2"], ["https://tec.openplanner.team/stops/H4ga170a", "https://tec.openplanner.team/stops/H4ga170b"], ["https://tec.openplanner.team/stops/H2tr251a", "https://tec.openplanner.team/stops/H2tr253a"], ["https://tec.openplanner.team/stops/Lsebove1", "https://tec.openplanner.team/stops/Lsehaut2"], ["https://tec.openplanner.team/stops/N536aca", "https://tec.openplanner.team/stops/N536aoa"], ["https://tec.openplanner.team/stops/Bcrncen2", "https://tec.openplanner.team/stops/Bcrnpla3"], ["https://tec.openplanner.team/stops/Csobrou2", "https://tec.openplanner.team/stops/Ctrpn2"], ["https://tec.openplanner.team/stops/N234aab", "https://tec.openplanner.team/stops/N243adb"], ["https://tec.openplanner.team/stops/LDmhave2", "https://tec.openplanner.team/stops/LSGmale1"], ["https://tec.openplanner.team/stops/Canplch2", "https://tec.openplanner.team/stops/Canplch4"], ["https://tec.openplanner.team/stops/X782ana", "https://tec.openplanner.team/stops/X782anb"], ["https://tec.openplanner.team/stops/LeYauto2", "https://tec.openplanner.team/stops/LeYmuhl2"], ["https://tec.openplanner.team/stops/LRmrode1", "https://tec.openplanner.team/stops/LTEkl161"], ["https://tec.openplanner.team/stops/Llgauxc1", "https://tec.openplanner.team/stops/Llggee52"], ["https://tec.openplanner.team/stops/X760afb", "https://tec.openplanner.team/stops/X790agb"], ["https://tec.openplanner.team/stops/X910afc", "https://tec.openplanner.team/stops/X910aib"], ["https://tec.openplanner.team/stops/X768afa", "https://tec.openplanner.team/stops/X768afb"], ["https://tec.openplanner.team/stops/X669aga", "https://tec.openplanner.team/stops/X669agc"], ["https://tec.openplanner.team/stops/H2lh128a", "https://tec.openplanner.team/stops/H2lh128b"], ["https://tec.openplanner.team/stops/H4mb143a", "https://tec.openplanner.team/stops/H4mb143c"], ["https://tec.openplanner.team/stops/H4ty326a", "https://tec.openplanner.team/stops/H4vx366a"], ["https://tec.openplanner.team/stops/X685aga", "https://tec.openplanner.team/stops/X685apb"], ["https://tec.openplanner.team/stops/N351ajd", "https://tec.openplanner.team/stops/N351amb"], ["https://tec.openplanner.team/stops/H4bo112b", "https://tec.openplanner.team/stops/H4bo122b"], ["https://tec.openplanner.team/stops/X634aba", "https://tec.openplanner.team/stops/X634ala"], ["https://tec.openplanner.team/stops/N308ada", "https://tec.openplanner.team/stops/N308adb"], ["https://tec.openplanner.team/stops/H4hq133a", "https://tec.openplanner.team/stops/H4hq133b"], ["https://tec.openplanner.team/stops/Lrcchpl1", "https://tec.openplanner.team/stops/Lrcrars1"], ["https://tec.openplanner.team/stops/LCUgale1", "https://tec.openplanner.team/stops/LCUmars2"], ["https://tec.openplanner.team/stops/Cgoboll3", "https://tec.openplanner.team/stops/Cgotech2"], ["https://tec.openplanner.team/stops/LaR1G--1", "https://tec.openplanner.team/stops/LrUwenz2"], ["https://tec.openplanner.team/stops/H3lr113a", "https://tec.openplanner.team/stops/H3lr132a"], ["https://tec.openplanner.team/stops/Bcer4br3", "https://tec.openplanner.team/stops/Bcerldo1"], ["https://tec.openplanner.team/stops/H2le150b", "https://tec.openplanner.team/stops/H2ml110b"], ["https://tec.openplanner.team/stops/H4ae100a", "https://tec.openplanner.team/stops/H4ae100b"], ["https://tec.openplanner.team/stops/Lanclon1", "https://tec.openplanner.team/stops/Lanetie2"], ["https://tec.openplanner.team/stops/Btubcim1", "https://tec.openplanner.team/stops/Btubsal1"], ["https://tec.openplanner.team/stops/X636anb", "https://tec.openplanner.team/stops/X636arb"], ["https://tec.openplanner.team/stops/Lbofrai1", "https://tec.openplanner.team/stops/Lbotige2"], ["https://tec.openplanner.team/stops/LHHpt--1", "https://tec.openplanner.team/stops/LSkbo832"], ["https://tec.openplanner.team/stops/Livvill2", "https://tec.openplanner.team/stops/LNCmarc1"], ["https://tec.openplanner.team/stops/LBGjacq2", "https://tec.openplanner.team/stops/LORroma1"], ["https://tec.openplanner.team/stops/Bperros2", "https://tec.openplanner.team/stops/N519acb"], ["https://tec.openplanner.team/stops/LHHecol1", "https://tec.openplanner.team/stops/LHHindu2"], ["https://tec.openplanner.team/stops/Bwagpco2", "https://tec.openplanner.team/stops/Cwgmell3"], ["https://tec.openplanner.team/stops/LENaout1", "https://tec.openplanner.team/stops/LENparc2"], ["https://tec.openplanner.team/stops/Llghaye2", "https://tec.openplanner.team/stops/Llghenr2"], ["https://tec.openplanner.team/stops/Cthcrom1", "https://tec.openplanner.team/stops/Cthwaib2"], ["https://tec.openplanner.team/stops/H4ag102a", "https://tec.openplanner.team/stops/H4fo119a"], ["https://tec.openplanner.team/stops/Cmamarc2", "https://tec.openplanner.team/stops/Cmazone2"], ["https://tec.openplanner.team/stops/N226aba", "https://tec.openplanner.team/stops/N226acb"], ["https://tec.openplanner.team/stops/N219abb", "https://tec.openplanner.team/stops/N349afa"], ["https://tec.openplanner.team/stops/X804ana", "https://tec.openplanner.team/stops/X804aoa"], ["https://tec.openplanner.team/stops/X820aeb", "https://tec.openplanner.team/stops/X821aab"], ["https://tec.openplanner.team/stops/H2sb257b", "https://tec.openplanner.team/stops/H2sb257c"], ["https://tec.openplanner.team/stops/LCpeg-*", "https://tec.openplanner.team/stops/LLgmini2"], ["https://tec.openplanner.team/stops/X741ahb", "https://tec.openplanner.team/stops/X741aia"], ["https://tec.openplanner.team/stops/Cctrjus2", "https://tec.openplanner.team/stops/NC11aia"], ["https://tec.openplanner.team/stops/Cciethi2", "https://tec.openplanner.team/stops/Ccircar1"], ["https://tec.openplanner.team/stops/LBNauto1", "https://tec.openplanner.team/stops/LBNhegg1"], ["https://tec.openplanner.team/stops/LLz21--2", "https://tec.openplanner.team/stops/LLzcruc1"], ["https://tec.openplanner.team/stops/Lstbarb2", "https://tec.openplanner.team/stops/Lstpole2"], ["https://tec.openplanner.team/stops/Crasabl3", "https://tec.openplanner.team/stops/Crasocq2"], ["https://tec.openplanner.team/stops/X907abb", "https://tec.openplanner.team/stops/X907acb"], ["https://tec.openplanner.team/stops/N501fra", "https://tec.openplanner.team/stops/N501izb"], ["https://tec.openplanner.team/stops/LsVfrde1", "https://tec.openplanner.team/stops/LsVgend1"], ["https://tec.openplanner.team/stops/Cvsduve1", "https://tec.openplanner.team/stops/N530ahb"], ["https://tec.openplanner.team/stops/H2ll182a", "https://tec.openplanner.team/stops/H2ll257b"], ["https://tec.openplanner.team/stops/H2hl111b", "https://tec.openplanner.team/stops/H2sv211a"], ["https://tec.openplanner.team/stops/X641agb", "https://tec.openplanner.team/stops/X641ajb"], ["https://tec.openplanner.team/stops/N510aaa", "https://tec.openplanner.team/stops/N510aab"], ["https://tec.openplanner.team/stops/Brixala1", "https://tec.openplanner.team/stops/Brixpro4"], ["https://tec.openplanner.team/stops/N115adb", "https://tec.openplanner.team/stops/N115aeb"], ["https://tec.openplanner.team/stops/X624aia", "https://tec.openplanner.team/stops/X624aja"], ["https://tec.openplanner.team/stops/LMubras2", "https://tec.openplanner.team/stops/LMucarr3"], ["https://tec.openplanner.team/stops/Cchheig2", "https://tec.openplanner.team/stops/Cdadest2"], ["https://tec.openplanner.team/stops/H4ta117b", "https://tec.openplanner.team/stops/H4ta127b"], ["https://tec.openplanner.team/stops/LAYsupe1", "https://tec.openplanner.team/stops/LREraph1"], ["https://tec.openplanner.team/stops/Lghmaha2", "https://tec.openplanner.team/stops/Lghpier2"], ["https://tec.openplanner.team/stops/LsVbell2", "https://tec.openplanner.team/stops/LsVfrie1"], ["https://tec.openplanner.team/stops/N512aib", "https://tec.openplanner.team/stops/N512aid"], ["https://tec.openplanner.team/stops/X614acb", "https://tec.openplanner.team/stops/X614adb"], ["https://tec.openplanner.team/stops/H4pl114b", "https://tec.openplanner.team/stops/H4pl117b"], ["https://tec.openplanner.team/stops/Bnetrec2", "https://tec.openplanner.team/stops/Bnettou1"], ["https://tec.openplanner.team/stops/Lvemull2", "https://tec.openplanner.team/stops/Lvepala1"], ["https://tec.openplanner.team/stops/Cchbrou2", "https://tec.openplanner.team/stops/Cchfort1"], ["https://tec.openplanner.team/stops/LPLhout1", "https://tec.openplanner.team/stops/LPLstat1"], ["https://tec.openplanner.team/stops/N104aac", "https://tec.openplanner.team/stops/N104aad"], ["https://tec.openplanner.team/stops/H5pe141b", "https://tec.openplanner.team/stops/H5pe147c"], ["https://tec.openplanner.team/stops/H5rx134b", "https://tec.openplanner.team/stops/H5rx135a"], ["https://tec.openplanner.team/stops/X657aia", "https://tec.openplanner.team/stops/X657aib"], ["https://tec.openplanner.team/stops/CMfbru1", "https://tec.openplanner.team/stops/CMfbru2"], ["https://tec.openplanner.team/stops/Bbchdra1", "https://tec.openplanner.team/stops/Bbchm381"], ["https://tec.openplanner.team/stops/LhLbalt1", "https://tec.openplanner.team/stops/LhLbalt2"], ["https://tec.openplanner.team/stops/LNOpt--2", "https://tec.openplanner.team/stops/LREchif2"], ["https://tec.openplanner.team/stops/LFyec--1", "https://tec.openplanner.team/stops/LWamass1"], ["https://tec.openplanner.team/stops/Buccfja1", "https://tec.openplanner.team/stops/Buccfja2"], ["https://tec.openplanner.team/stops/X358abb", "https://tec.openplanner.team/stops/X358aea"], ["https://tec.openplanner.team/stops/N230acb", "https://tec.openplanner.team/stops/N230ahb"], ["https://tec.openplanner.team/stops/Bnivsto1", "https://tec.openplanner.team/stops/Bnivzep1"], ["https://tec.openplanner.team/stops/X780aca", "https://tec.openplanner.team/stops/X780adb"], ["https://tec.openplanner.team/stops/N509axb", "https://tec.openplanner.team/stops/N511aea"], ["https://tec.openplanner.team/stops/Cmmcomb1", "https://tec.openplanner.team/stops/Cmmschw1"], ["https://tec.openplanner.team/stops/Lrogene1", "https://tec.openplanner.team/stops/Lromerl2"], ["https://tec.openplanner.team/stops/H5at135a", "https://tec.openplanner.team/stops/H5at136a"], ["https://tec.openplanner.team/stops/LBivi--1", "https://tec.openplanner.team/stops/LHCcroy1"], ["https://tec.openplanner.team/stops/Bbxlfro1", "https://tec.openplanner.team/stops/Bbxlple2"], ["https://tec.openplanner.team/stops/X897aoa", "https://tec.openplanner.team/stops/X897aqb"], ["https://tec.openplanner.team/stops/X804amb", "https://tec.openplanner.team/stops/X804bja"], ["https://tec.openplanner.team/stops/Lansarm1", "https://tec.openplanner.team/stops/Lmobols1"], ["https://tec.openplanner.team/stops/Llghars5", "https://tec.openplanner.team/stops/Llgm%C3%A9di2"], ["https://tec.openplanner.team/stops/Lrc594-1", "https://tec.openplanner.team/stops/Lrc594-2"], ["https://tec.openplanner.team/stops/LHNcoll1", "https://tec.openplanner.team/stops/NL37aca"], ["https://tec.openplanner.team/stops/LHecime2", "https://tec.openplanner.team/stops/LHSheur1"], ["https://tec.openplanner.team/stops/LBLwaid2", "https://tec.openplanner.team/stops/LTrgibe2"], ["https://tec.openplanner.team/stops/Cflecep2", "https://tec.openplanner.team/stops/Cflhano2"], ["https://tec.openplanner.team/stops/X667aea", "https://tec.openplanner.team/stops/X670ara"], ["https://tec.openplanner.team/stops/LsCback2", "https://tec.openplanner.team/stops/LsF39--1"], ["https://tec.openplanner.team/stops/Ctufleu3", "https://tec.openplanner.team/stops/Ctufleu4"], ["https://tec.openplanner.team/stops/X985aeb", "https://tec.openplanner.team/stops/X985afb"], ["https://tec.openplanner.team/stops/H5rx101a", "https://tec.openplanner.team/stops/H5rx114b"], ["https://tec.openplanner.team/stops/Landeja1", "https://tec.openplanner.team/stops/Lanothe2"], ["https://tec.openplanner.team/stops/N106aab", "https://tec.openplanner.team/stops/N106abb"], ["https://tec.openplanner.team/stops/Cwfaldi2", "https://tec.openplanner.team/stops/Cwfghis2"], ["https://tec.openplanner.team/stops/N510acb", "https://tec.openplanner.team/stops/N513acb"], ["https://tec.openplanner.team/stops/Cgycime3", "https://tec.openplanner.team/stops/Cgysarr2"], ["https://tec.openplanner.team/stops/X725afe", "https://tec.openplanner.team/stops/X725aha"], ["https://tec.openplanner.team/stops/H5wo136a", "https://tec.openplanner.team/stops/H5wo136b"], ["https://tec.openplanner.team/stops/Bjaugar2", "https://tec.openplanner.team/stops/Bjaupro1"], ["https://tec.openplanner.team/stops/X826afb", "https://tec.openplanner.team/stops/X826aha"], ["https://tec.openplanner.team/stops/X840aab", "https://tec.openplanner.team/stops/X840adb"], ["https://tec.openplanner.team/stops/LSXbecc1", "https://tec.openplanner.team/stops/LSXbecc2"], ["https://tec.openplanner.team/stops/X640afb", "https://tec.openplanner.team/stops/X640ahb"], ["https://tec.openplanner.team/stops/N539aaa", "https://tec.openplanner.team/stops/N540aha"], ["https://tec.openplanner.team/stops/H1fr111b", "https://tec.openplanner.team/stops/H1fr127b"], ["https://tec.openplanner.team/stops/LMAcite1", "https://tec.openplanner.team/stops/LMAhall1"], ["https://tec.openplanner.team/stops/Lsnfoot2", "https://tec.openplanner.team/stops/Lsnpaqu1"], ["https://tec.openplanner.team/stops/X639akd", "https://tec.openplanner.team/stops/X639ata"], ["https://tec.openplanner.team/stops/N563ama", "https://tec.openplanner.team/stops/N563aob"], ["https://tec.openplanner.team/stops/X818arb", "https://tec.openplanner.team/stops/X818avb"], ["https://tec.openplanner.team/stops/NL57add", "https://tec.openplanner.team/stops/NL57afa"], ["https://tec.openplanner.team/stops/X992acb", "https://tec.openplanner.team/stops/X992ajb"], ["https://tec.openplanner.team/stops/LSogite2", "https://tec.openplanner.team/stops/LSopost2"], ["https://tec.openplanner.team/stops/LChvill*", "https://tec.openplanner.team/stops/LSUvill2"], ["https://tec.openplanner.team/stops/Bbghcar1", "https://tec.openplanner.team/stops/Brebpca2"], ["https://tec.openplanner.team/stops/LMIbois2", "https://tec.openplanner.team/stops/LMImc--1"], ["https://tec.openplanner.team/stops/Lhufont1", "https://tec.openplanner.team/stops/Lmncasi1"], ["https://tec.openplanner.team/stops/Canlemo2", "https://tec.openplanner.team/stops/Clbhour2"], ["https://tec.openplanner.team/stops/H4vz368a", "https://tec.openplanner.team/stops/H4vz368b"], ["https://tec.openplanner.team/stops/N584aoa", "https://tec.openplanner.team/stops/N584aob"], ["https://tec.openplanner.team/stops/LbUwhon2", "https://tec.openplanner.team/stops/LhPheps2"], ["https://tec.openplanner.team/stops/LhMdorf2", "https://tec.openplanner.team/stops/LhMmeil2"], ["https://tec.openplanner.team/stops/Lchmarc2", "https://tec.openplanner.team/stops/Lchsaro1"], ["https://tec.openplanner.team/stops/N141aia", "https://tec.openplanner.team/stops/N141aib"], ["https://tec.openplanner.team/stops/Lalbout1", "https://tec.openplanner.team/stops/Lalbout2"], ["https://tec.openplanner.team/stops/X659adb", "https://tec.openplanner.team/stops/X659adc"], ["https://tec.openplanner.team/stops/N311aga", "https://tec.openplanner.team/stops/N312aba"], ["https://tec.openplanner.team/stops/H4ne134a", "https://tec.openplanner.team/stops/H4ne144a"], ["https://tec.openplanner.team/stops/Brebpca1", "https://tec.openplanner.team/stops/Brebrog1"], ["https://tec.openplanner.team/stops/H1bl105a", "https://tec.openplanner.team/stops/H1bl105b"], ["https://tec.openplanner.team/stops/H4ga157a", "https://tec.openplanner.team/stops/H4ga158a"], ["https://tec.openplanner.team/stops/Blsmbfe2", "https://tec.openplanner.team/stops/Bneedia1"], ["https://tec.openplanner.team/stops/Ctrsema2", "https://tec.openplanner.team/stops/H2tz115b"], ["https://tec.openplanner.team/stops/Lmitech1", "https://tec.openplanner.team/stops/Lvtcime2"], ["https://tec.openplanner.team/stops/X823aca", "https://tec.openplanner.team/stops/X823aff"], ["https://tec.openplanner.team/stops/X634aea", "https://tec.openplanner.team/stops/X634aga"], ["https://tec.openplanner.team/stops/Cmtneuv1", "https://tec.openplanner.team/stops/Cmtpaix1"], ["https://tec.openplanner.team/stops/Bosqcim1", "https://tec.openplanner.team/stops/Bvirdco1"], ["https://tec.openplanner.team/stops/LATgill1", "https://tec.openplanner.team/stops/LAThach2"], ["https://tec.openplanner.team/stops/Bcbqcha1", "https://tec.openplanner.team/stops/Bcbqcha2"], ["https://tec.openplanner.team/stops/X805aha", "https://tec.openplanner.team/stops/X869aeb"], ["https://tec.openplanner.team/stops/X770aba", "https://tec.openplanner.team/stops/X770aca"], ["https://tec.openplanner.team/stops/H1fr107e", "https://tec.openplanner.team/stops/H1fr130a"], ["https://tec.openplanner.team/stops/X620aha", "https://tec.openplanner.team/stops/X620ahb"], ["https://tec.openplanner.team/stops/Broneco1", "https://tec.openplanner.team/stops/Broneco2"], ["https://tec.openplanner.team/stops/LTPec--1", "https://tec.openplanner.team/stops/LTPreco1"], ["https://tec.openplanner.team/stops/X614afa", "https://tec.openplanner.team/stops/X614ayb"], ["https://tec.openplanner.team/stops/Ljubrec2", "https://tec.openplanner.team/stops/Ljugode1"], ["https://tec.openplanner.team/stops/LVBbvin", "https://tec.openplanner.team/stops/LWDmass2"], ["https://tec.openplanner.team/stops/Bsaubra1", "https://tec.openplanner.team/stops/Bsaubra2"], ["https://tec.openplanner.team/stops/N874aia", "https://tec.openplanner.team/stops/X887aab"], ["https://tec.openplanner.team/stops/H2lc169a", "https://tec.openplanner.team/stops/H2lc170b"], ["https://tec.openplanner.team/stops/LHDchar4", "https://tec.openplanner.team/stops/LHDmc--2"], ["https://tec.openplanner.team/stops/N535ana", "https://tec.openplanner.team/stops/N535aoa"], ["https://tec.openplanner.team/stops/LWEhosp2", "https://tec.openplanner.team/stops/LWEpaul1"], ["https://tec.openplanner.team/stops/LBvnico1", "https://tec.openplanner.team/stops/LBvnico2"], ["https://tec.openplanner.team/stops/LThnouv1", "https://tec.openplanner.team/stops/LThnouv2"], ["https://tec.openplanner.team/stops/LFarhuy2", "https://tec.openplanner.team/stops/LGAbois1"], ["https://tec.openplanner.team/stops/Cmamonu2", "https://tec.openplanner.team/stops/Cmorgof2"], ["https://tec.openplanner.team/stops/Bsrgcur2", "https://tec.openplanner.team/stops/Bsrgegl2"], ["https://tec.openplanner.team/stops/H4ga149a", "https://tec.openplanner.team/stops/H4ga171a"], ["https://tec.openplanner.team/stops/Cblbaiv1", "https://tec.openplanner.team/stops/Cslbarb1"], ["https://tec.openplanner.team/stops/H1ms253b", "https://tec.openplanner.team/stops/H1ms926a"], ["https://tec.openplanner.team/stops/H4hg156a", "https://tec.openplanner.team/stops/H4mv194b"], ["https://tec.openplanner.team/stops/LWEcool1", "https://tec.openplanner.team/stops/LWEgend2"], ["https://tec.openplanner.team/stops/Bqueaga1", "https://tec.openplanner.team/stops/Bquepos2"], ["https://tec.openplanner.team/stops/Lbhhomv1", "https://tec.openplanner.team/stops/Lbhhomv2"], ["https://tec.openplanner.team/stops/X756ajb", "https://tec.openplanner.team/stops/X779aha"], ["https://tec.openplanner.team/stops/Bblaphi1", "https://tec.openplanner.team/stops/Bblaphi2"], ["https://tec.openplanner.team/stops/N519ada", "https://tec.openplanner.team/stops/N519aja"], ["https://tec.openplanner.team/stops/H4an108a", "https://tec.openplanner.team/stops/H4an108b"], ["https://tec.openplanner.team/stops/Bwaucig2", "https://tec.openplanner.team/stops/Bwaunce2"], ["https://tec.openplanner.team/stops/Cmlhotv2", "https://tec.openplanner.team/stops/Cmlvxmo1"], ["https://tec.openplanner.team/stops/LsHlenz2", "https://tec.openplanner.team/stops/LsHthom2"], ["https://tec.openplanner.team/stops/Bgzdcwa2", "https://tec.openplanner.team/stops/Bgzdgli2"], ["https://tec.openplanner.team/stops/H4ae102b", "https://tec.openplanner.team/stops/H4do108a"], ["https://tec.openplanner.team/stops/N219aeb", "https://tec.openplanner.team/stops/N219afb"], ["https://tec.openplanner.team/stops/Bjodcdt1", "https://tec.openplanner.team/stops/NR21aeb"], ["https://tec.openplanner.team/stops/N501jja", "https://tec.openplanner.team/stops/N521afa"], ["https://tec.openplanner.team/stops/Cvlbvir1", "https://tec.openplanner.team/stops/NH21ada"], ["https://tec.openplanner.team/stops/H1ci105a", "https://tec.openplanner.team/stops/H1hn206b"], ["https://tec.openplanner.team/stops/LAumari1", "https://tec.openplanner.team/stops/LWRbois1"], ["https://tec.openplanner.team/stops/H1nv325a", "https://tec.openplanner.team/stops/H1nv325b"], ["https://tec.openplanner.team/stops/X667aba", "https://tec.openplanner.team/stops/X667ada"], ["https://tec.openplanner.team/stops/H4pl112a", "https://tec.openplanner.team/stops/H4pl112b"], ["https://tec.openplanner.team/stops/Cmbborn1", "https://tec.openplanner.team/stops/Cmbborn2"], ["https://tec.openplanner.team/stops/X922aca", "https://tec.openplanner.team/stops/X922acb"], ["https://tec.openplanner.team/stops/H4ab101a", "https://tec.openplanner.team/stops/H5ma180b"], ["https://tec.openplanner.team/stops/X715aia", "https://tec.openplanner.team/stops/X715alb"], ["https://tec.openplanner.team/stops/N501fma", "https://tec.openplanner.team/stops/N501fna"], ["https://tec.openplanner.team/stops/X917aga", "https://tec.openplanner.team/stops/X917aia"], ["https://tec.openplanner.team/stops/LWEbr511", "https://tec.openplanner.team/stops/LWEwall1"], ["https://tec.openplanner.team/stops/LBgcroi1", "https://tec.openplanner.team/stops/LBgcroi2"], ["https://tec.openplanner.team/stops/X641aqa", "https://tec.openplanner.team/stops/X641ara"], ["https://tec.openplanner.team/stops/N339aca", "https://tec.openplanner.team/stops/N339acb"], ["https://tec.openplanner.team/stops/N531apb", "https://tec.openplanner.team/stops/N531aqa"], ["https://tec.openplanner.team/stops/N533aha", "https://tec.openplanner.team/stops/N551aba"], ["https://tec.openplanner.team/stops/Ccupomp1", "https://tec.openplanner.team/stops/Ccupomp2"], ["https://tec.openplanner.team/stops/X734ara", "https://tec.openplanner.team/stops/X734arb"], ["https://tec.openplanner.team/stops/LsVfrde2", "https://tec.openplanner.team/stops/LsVfrie2"], ["https://tec.openplanner.team/stops/N557abb", "https://tec.openplanner.team/stops/N557aca"], ["https://tec.openplanner.team/stops/Cpccpas1", "https://tec.openplanner.team/stops/Cpclibe3"], ["https://tec.openplanner.team/stops/Cmlbevu1", "https://tec.openplanner.team/stops/Cmlbevu2"], ["https://tec.openplanner.team/stops/LBRpier1", "https://tec.openplanner.team/stops/LBRruel1"], ["https://tec.openplanner.team/stops/Bbryfon1", "https://tec.openplanner.team/stops/Bmarcat1"], ["https://tec.openplanner.team/stops/LeUmeye2", "https://tec.openplanner.team/stops/LrApley1"], ["https://tec.openplanner.team/stops/N111aca", "https://tec.openplanner.team/stops/N111acb"], ["https://tec.openplanner.team/stops/LHMbach2", "https://tec.openplanner.team/stops/LHMbach4"], ["https://tec.openplanner.team/stops/Lgdmaye1", "https://tec.openplanner.team/stops/LWetrib2"], ["https://tec.openplanner.team/stops/H1be100a", "https://tec.openplanner.team/stops/H1er113b"], ["https://tec.openplanner.team/stops/X615ama", "https://tec.openplanner.team/stops/X615amb"], ["https://tec.openplanner.team/stops/N121afa", "https://tec.openplanner.team/stops/N121aia"], ["https://tec.openplanner.team/stops/Bgzdcen1", "https://tec.openplanner.team/stops/Bgzddub1"], ["https://tec.openplanner.team/stops/N141afb", "https://tec.openplanner.team/stops/N141agb"], ["https://tec.openplanner.team/stops/X736aca", "https://tec.openplanner.team/stops/X736acb"], ["https://tec.openplanner.team/stops/LNHhome2", "https://tec.openplanner.team/stops/LTibarb1"], ["https://tec.openplanner.team/stops/Crccarr2", "https://tec.openplanner.team/stops/Crcgmah2"], ["https://tec.openplanner.team/stops/Lqbecco2", "https://tec.openplanner.team/stops/LSAtrih2"], ["https://tec.openplanner.team/stops/N550abe", "https://tec.openplanner.team/stops/N550anb"], ["https://tec.openplanner.team/stops/Bhalvla1", "https://tec.openplanner.team/stops/Bhalvla2"], ["https://tec.openplanner.team/stops/X783aab", "https://tec.openplanner.team/stops/X789aab"], ["https://tec.openplanner.team/stops/LOltill1", "https://tec.openplanner.team/stops/LOmvill4"], ["https://tec.openplanner.team/stops/LGEcent1", "https://tec.openplanner.team/stops/LGEpt--2"], ["https://tec.openplanner.team/stops/Bsomthi1", "https://tec.openplanner.team/stops/N584ada"], ["https://tec.openplanner.team/stops/N539bga", "https://tec.openplanner.team/stops/N540aga"], ["https://tec.openplanner.team/stops/X818ata", "https://tec.openplanner.team/stops/X818awb"], ["https://tec.openplanner.team/stops/Cmxpleg2", "https://tec.openplanner.team/stops/Ctuosso1"], ["https://tec.openplanner.team/stops/LFMrijk1", "https://tec.openplanner.team/stops/LWRbois2"], ["https://tec.openplanner.team/stops/X878ada", "https://tec.openplanner.team/stops/X879aaa"], ["https://tec.openplanner.team/stops/N528aqb", "https://tec.openplanner.team/stops/N528arb"], ["https://tec.openplanner.team/stops/Bnivplt2", "https://tec.openplanner.team/stops/Bnivsho2"], ["https://tec.openplanner.team/stops/H2hg155c", "https://tec.openplanner.team/stops/H2ll195a"], ["https://tec.openplanner.team/stops/N542ala", "https://tec.openplanner.team/stops/N542ama"], ["https://tec.openplanner.team/stops/Lvedepa*", "https://tec.openplanner.team/stops/Lvereno2"], ["https://tec.openplanner.team/stops/LPLec131", "https://tec.openplanner.team/stops/LPLhout2"], ["https://tec.openplanner.team/stops/H3bi113b", "https://tec.openplanner.team/stops/H3bi116a"], ["https://tec.openplanner.team/stops/LCvmonu1", "https://tec.openplanner.team/stops/LCvneuf2"], ["https://tec.openplanner.team/stops/N564aaa", "https://tec.openplanner.team/stops/N564aab"], ["https://tec.openplanner.team/stops/LHtdros1", "https://tec.openplanner.team/stops/LHthest1"], ["https://tec.openplanner.team/stops/Ceqcfra2", "https://tec.openplanner.team/stops/H1er111b"], ["https://tec.openplanner.team/stops/Cjuspin1", "https://tec.openplanner.team/stops/Cjuspin2"], ["https://tec.openplanner.team/stops/Lghgoll1", "https://tec.openplanner.team/stops/Lghgoll2"], ["https://tec.openplanner.team/stops/Boveker1", "https://tec.openplanner.team/stops/Boveker2"], ["https://tec.openplanner.team/stops/Lmoknae1", "https://tec.openplanner.team/stops/Lmoknae4"], ["https://tec.openplanner.team/stops/H2sb227a", "https://tec.openplanner.team/stops/H2sb238b"], ["https://tec.openplanner.team/stops/H1hl126b", "https://tec.openplanner.team/stops/H1hl129a"], ["https://tec.openplanner.team/stops/Brsgece2", "https://tec.openplanner.team/stops/Brsgleq2"], ["https://tec.openplanner.team/stops/H1ag105a", "https://tec.openplanner.team/stops/H1ag107a"], ["https://tec.openplanner.team/stops/Bcseeco2", "https://tec.openplanner.team/stops/Bcsegar2"], ["https://tec.openplanner.team/stops/H4rc232b", "https://tec.openplanner.team/stops/H4rc234b"], ["https://tec.openplanner.team/stops/X601awa", "https://tec.openplanner.team/stops/X601cya"], ["https://tec.openplanner.team/stops/N343alb", "https://tec.openplanner.team/stops/N350aea"], ["https://tec.openplanner.team/stops/X774aeb", "https://tec.openplanner.team/stops/X774aha"], ["https://tec.openplanner.team/stops/LXHbois1", "https://tec.openplanner.team/stops/LXHeg--2"], ["https://tec.openplanner.team/stops/Clddeve2", "https://tec.openplanner.team/stops/Cmyland5"], ["https://tec.openplanner.team/stops/X604ada", "https://tec.openplanner.team/stops/X604aeb"], ["https://tec.openplanner.team/stops/X601bzb", "https://tec.openplanner.team/stops/X601dea"], ["https://tec.openplanner.team/stops/N512aqb", "https://tec.openplanner.team/stops/N512arb"], ["https://tec.openplanner.team/stops/Lhurigu1", "https://tec.openplanner.team/stops/Lvewaut1"], ["https://tec.openplanner.team/stops/X808aha", "https://tec.openplanner.team/stops/X808amb"], ["https://tec.openplanner.team/stops/LWAbett2", "https://tec.openplanner.team/stops/LWAmouh1"], ["https://tec.openplanner.team/stops/Loumair1", "https://tec.openplanner.team/stops/Lscstan3"], ["https://tec.openplanner.team/stops/Ljemake2", "https://tec.openplanner.team/stops/Ljerose3"], ["https://tec.openplanner.team/stops/LHMbelv1", "https://tec.openplanner.team/stops/LHMec--2"], ["https://tec.openplanner.team/stops/H1ha192a", "https://tec.openplanner.team/stops/H1vh136b"], ["https://tec.openplanner.team/stops/LAUvdab1", "https://tec.openplanner.team/stops/LCxross1"], ["https://tec.openplanner.team/stops/N150aha", "https://tec.openplanner.team/stops/N150ahb"], ["https://tec.openplanner.team/stops/Lpeptle2", "https://tec.openplanner.team/stops/LWevand2"], ["https://tec.openplanner.team/stops/H1sy139a", "https://tec.openplanner.team/stops/H1sy140b"], ["https://tec.openplanner.team/stops/Bboueta1", "https://tec.openplanner.team/stops/Bboueta2"], ["https://tec.openplanner.team/stops/LON02--2", "https://tec.openplanner.team/stops/LWamass1"], ["https://tec.openplanner.team/stops/H1au112a", "https://tec.openplanner.team/stops/H1ro136a"], ["https://tec.openplanner.team/stops/LOcgdro4", "https://tec.openplanner.team/stops/LTecent4"], ["https://tec.openplanner.team/stops/Lhuecol2", "https://tec.openplanner.team/stops/Lmntast1"], ["https://tec.openplanner.team/stops/X641apc", "https://tec.openplanner.team/stops/X823aab"], ["https://tec.openplanner.team/stops/Bflcneu2", "https://tec.openplanner.team/stops/NR27aba"], ["https://tec.openplanner.team/stops/LWinavi1", "https://tec.openplanner.team/stops/LWipaif1"], ["https://tec.openplanner.team/stops/N557aba", "https://tec.openplanner.team/stops/N558aja"], ["https://tec.openplanner.team/stops/X738acb", "https://tec.openplanner.team/stops/X771afb"], ["https://tec.openplanner.team/stops/Ldifoye1", "https://tec.openplanner.team/stops/Ldifoye2"], ["https://tec.openplanner.team/stops/X790ajb", "https://tec.openplanner.team/stops/X790aka"], ["https://tec.openplanner.team/stops/Clvorle1", "https://tec.openplanner.team/stops/Cmlstni2"], ["https://tec.openplanner.team/stops/X829abb", "https://tec.openplanner.team/stops/X831aca"], ["https://tec.openplanner.team/stops/LHAstal2", "https://tec.openplanner.team/stops/LOUpres1"], ["https://tec.openplanner.team/stops/Ljetomb2", "https://tec.openplanner.team/stops/Ljetout4"], ["https://tec.openplanner.team/stops/NL76aba", "https://tec.openplanner.team/stops/NL76abb"], ["https://tec.openplanner.team/stops/Bmrlnce1", "https://tec.openplanner.team/stops/Bmrlnce2"], ["https://tec.openplanner.team/stops/N261aab", "https://tec.openplanner.team/stops/N338aia"], ["https://tec.openplanner.team/stops/LeUbahn4", "https://tec.openplanner.team/stops/LeUhook2"], ["https://tec.openplanner.team/stops/LSteg--2", "https://tec.openplanner.team/stops/LStgare*"], ["https://tec.openplanner.team/stops/X684aaa", "https://tec.openplanner.team/stops/X684aab"], ["https://tec.openplanner.team/stops/H2an101a", "https://tec.openplanner.team/stops/H2an101b"], ["https://tec.openplanner.team/stops/Bcsempl2", "https://tec.openplanner.team/stops/Bsmgmou2"], ["https://tec.openplanner.team/stops/X660afa", "https://tec.openplanner.team/stops/X660afb"], ["https://tec.openplanner.team/stops/Cmacreu2", "https://tec.openplanner.team/stops/Cmmegli3"], ["https://tec.openplanner.team/stops/LkEbbl-*", "https://tec.openplanner.team/stops/LkEbbl-1"], ["https://tec.openplanner.team/stops/Bhmmtou2", "https://tec.openplanner.team/stops/Bndbdra2"], ["https://tec.openplanner.team/stops/Lemdieu1", "https://tec.openplanner.team/stops/Lemmc--2"], ["https://tec.openplanner.team/stops/Bblamsp1", "https://tec.openplanner.team/stops/Bwatcli2"], ["https://tec.openplanner.team/stops/Bovesol2", "https://tec.openplanner.team/stops/Brsrfen2"], ["https://tec.openplanner.team/stops/LlA43--1", "https://tec.openplanner.team/stops/LsBzent1"], ["https://tec.openplanner.team/stops/Chpatel2", "https://tec.openplanner.team/stops/Chppack2"], ["https://tec.openplanner.team/stops/LLUmont1", "https://tec.openplanner.team/stops/LLUreut2"], ["https://tec.openplanner.team/stops/N501mey", "https://tec.openplanner.team/stops/N501mkb"], ["https://tec.openplanner.team/stops/Cdadest2", "https://tec.openplanner.team/stops/CMdamp1"], ["https://tec.openplanner.team/stops/H4ty273c", "https://tec.openplanner.team/stops/H4ty273d"], ["https://tec.openplanner.team/stops/X575adb", "https://tec.openplanner.team/stops/X575aea"], ["https://tec.openplanner.team/stops/N134abb", "https://tec.openplanner.team/stops/N134aca"], ["https://tec.openplanner.team/stops/Bnilpor3", "https://tec.openplanner.team/stops/Bnilpor4"], ["https://tec.openplanner.team/stops/Brsrpch1", "https://tec.openplanner.team/stops/Brsrpmo1"], ["https://tec.openplanner.team/stops/X766aaa", "https://tec.openplanner.team/stops/X768agb"], ["https://tec.openplanner.team/stops/Cthalli1", "https://tec.openplanner.team/stops/Cthgend1"], ["https://tec.openplanner.team/stops/Bblaaca1", "https://tec.openplanner.team/stops/Bblasmo2"], ["https://tec.openplanner.team/stops/Cfrtill2", "https://tec.openplanner.team/stops/Crebien2"], ["https://tec.openplanner.team/stops/H4ef163b", "https://tec.openplanner.team/stops/H4ef164a"], ["https://tec.openplanner.team/stops/N244aia", "https://tec.openplanner.team/stops/N244aib"], ["https://tec.openplanner.team/stops/H3so170a", "https://tec.openplanner.team/stops/H3so175b"], ["https://tec.openplanner.team/stops/N135aaa", "https://tec.openplanner.team/stops/N136aaa"], ["https://tec.openplanner.team/stops/Bwavcui2", "https://tec.openplanner.team/stops/Bwavvpr2"], ["https://tec.openplanner.team/stops/Cgrsaul2", "https://tec.openplanner.team/stops/NC14aia"], ["https://tec.openplanner.team/stops/N501kka", "https://tec.openplanner.team/stops/N501kkb"], ["https://tec.openplanner.team/stops/LkEl1211", "https://tec.openplanner.team/stops/LkEl1212"], ["https://tec.openplanner.team/stops/X953aea", "https://tec.openplanner.team/stops/X953afa"], ["https://tec.openplanner.team/stops/Bmrqpla2", "https://tec.openplanner.team/stops/H1mk112a"], ["https://tec.openplanner.team/stops/Lboastr1", "https://tec.openplanner.team/stops/Lbosart1"], ["https://tec.openplanner.team/stops/X638agb", "https://tec.openplanner.team/stops/X638aha"], ["https://tec.openplanner.team/stops/N204afb", "https://tec.openplanner.team/stops/N204aga"], ["https://tec.openplanner.team/stops/H4mo153d", "https://tec.openplanner.team/stops/H4mo184b"], ["https://tec.openplanner.team/stops/Bcer4br5", "https://tec.openplanner.team/stops/Bottpin1"], ["https://tec.openplanner.team/stops/Llgbois2", "https://tec.openplanner.team/stops/Llgwild6"], ["https://tec.openplanner.team/stops/Beclbar2", "https://tec.openplanner.team/stops/Beclfde2"], ["https://tec.openplanner.team/stops/X717ada", "https://tec.openplanner.team/stops/X789aab"], ["https://tec.openplanner.team/stops/H1pa117a", "https://tec.openplanner.team/stops/H1pa117b"], ["https://tec.openplanner.team/stops/X741abc", "https://tec.openplanner.team/stops/X741abd"], ["https://tec.openplanner.team/stops/LCRrape1", "https://tec.openplanner.team/stops/LFmbure1"], ["https://tec.openplanner.team/stops/X681aga", "https://tec.openplanner.team/stops/X681aha"], ["https://tec.openplanner.team/stops/Bwaanwi1", "https://tec.openplanner.team/stops/LWscona2"], ["https://tec.openplanner.team/stops/H1sg144a", "https://tec.openplanner.team/stops/H1te177a"], ["https://tec.openplanner.team/stops/LCF1spa2", "https://tec.openplanner.team/stops/LCF2spa2"], ["https://tec.openplanner.team/stops/N212aka", "https://tec.openplanner.team/stops/N213aca"], ["https://tec.openplanner.team/stops/Cluplve3", "https://tec.openplanner.team/stops/Cluplve4"], ["https://tec.openplanner.team/stops/H5qu147a", "https://tec.openplanner.team/stops/H5qu155a"], ["https://tec.openplanner.team/stops/H4va231b", "https://tec.openplanner.team/stops/H4va234b"], ["https://tec.openplanner.team/stops/X801bwa", "https://tec.openplanner.team/stops/X801bwb"], ["https://tec.openplanner.team/stops/H4la198b", "https://tec.openplanner.team/stops/H4la198c"], ["https://tec.openplanner.team/stops/Csedoua1", "https://tec.openplanner.team/stops/Csedoua2"], ["https://tec.openplanner.team/stops/X901aga", "https://tec.openplanner.team/stops/X901agb"], ["https://tec.openplanner.team/stops/H4mo140b", "https://tec.openplanner.team/stops/H4mo165a"], ["https://tec.openplanner.team/stops/LHTmoul1", "https://tec.openplanner.team/stops/LHTmoul2"], ["https://tec.openplanner.team/stops/X672ahb", "https://tec.openplanner.team/stops/X672aja"], ["https://tec.openplanner.team/stops/Bwatbce1", "https://tec.openplanner.team/stops/Bwatbce2"], ["https://tec.openplanner.team/stops/N131ahb", "https://tec.openplanner.team/stops/N132afa"], ["https://tec.openplanner.team/stops/X801aua", "https://tec.openplanner.team/stops/X889aea"], ["https://tec.openplanner.team/stops/Cgzbouh1", "https://tec.openplanner.team/stops/Cgzvivi1"], ["https://tec.openplanner.team/stops/Cgohnda2", "https://tec.openplanner.team/stops/Ctmazeb1"], ["https://tec.openplanner.team/stops/Lscgare1", "https://tec.openplanner.team/stops/Lscpamp1"], ["https://tec.openplanner.team/stops/X897aea", "https://tec.openplanner.team/stops/X897ara"], ["https://tec.openplanner.team/stops/N101aeb", "https://tec.openplanner.team/stops/N147aba"], ["https://tec.openplanner.team/stops/Ljegare1", "https://tec.openplanner.team/stops/Ljetout2"], ["https://tec.openplanner.team/stops/Lhrcols4", "https://tec.openplanner.team/stops/Llghori1"], ["https://tec.openplanner.team/stops/LHgec--0", "https://tec.openplanner.team/stops/LHggeer1"], ["https://tec.openplanner.team/stops/X619aba", "https://tec.openplanner.team/stops/X619ama"], ["https://tec.openplanner.team/stops/LACeg--2", "https://tec.openplanner.team/stops/LAChann1"], ["https://tec.openplanner.team/stops/N536acb", "https://tec.openplanner.team/stops/N580aga"], ["https://tec.openplanner.team/stops/N528ama", "https://tec.openplanner.team/stops/N528aqa"], ["https://tec.openplanner.team/stops/Bpte1ma1", "https://tec.openplanner.team/stops/Bpte1ma2"], ["https://tec.openplanner.team/stops/Baegegl1", "https://tec.openplanner.team/stops/Bflccav2"], ["https://tec.openplanner.team/stops/LDAalbe1", "https://tec.openplanner.team/stops/LDAwich2"], ["https://tec.openplanner.team/stops/LStroch2", "https://tec.openplanner.team/stops/NL72afa"], ["https://tec.openplanner.team/stops/X636ama", "https://tec.openplanner.team/stops/X636aua"], ["https://tec.openplanner.team/stops/N101anb", "https://tec.openplanner.team/stops/N101ara"], ["https://tec.openplanner.team/stops/X741aia", "https://tec.openplanner.team/stops/X741aic"], ["https://tec.openplanner.team/stops/Cli4bra1", "https://tec.openplanner.team/stops/Cliegli1"], ["https://tec.openplanner.team/stops/Lanclon1", "https://tec.openplanner.team/stops/Lrctec-1"], ["https://tec.openplanner.team/stops/H4mv190a", "https://tec.openplanner.team/stops/H4mv197a"], ["https://tec.openplanner.team/stops/Cprbevu2", "https://tec.openplanner.team/stops/Cprvill2"], ["https://tec.openplanner.team/stops/Llxec--2", "https://tec.openplanner.team/stops/Llxeg--2"], ["https://tec.openplanner.team/stops/N165abb", "https://tec.openplanner.team/stops/N168aaa"], ["https://tec.openplanner.team/stops/X831abb", "https://tec.openplanner.team/stops/X831acb"], ["https://tec.openplanner.team/stops/NL76aka", "https://tec.openplanner.team/stops/NL77aib"], ["https://tec.openplanner.team/stops/H1fr109a", "https://tec.openplanner.team/stops/H1fr125a"], ["https://tec.openplanner.team/stops/LHdkenn1", "https://tec.openplanner.team/stops/LVnetan1"], ["https://tec.openplanner.team/stops/X359aja", "https://tec.openplanner.team/stops/X359ama"], ["https://tec.openplanner.team/stops/Bspkkhe1", "https://tec.openplanner.team/stops/H1mk116a"], ["https://tec.openplanner.team/stops/X736afa", "https://tec.openplanner.team/stops/X736aga"], ["https://tec.openplanner.team/stops/H2pe163a", "https://tec.openplanner.team/stops/H2pe163b"], ["https://tec.openplanner.team/stops/LBLplac3", "https://tec.openplanner.team/stops/LBLplas2"], ["https://tec.openplanner.team/stops/LSsmond1", "https://tec.openplanner.team/stops/LSssurl1"], ["https://tec.openplanner.team/stops/LhPhale1", "https://tec.openplanner.team/stops/LvA30--1"], ["https://tec.openplanner.team/stops/Bptblma2", "https://tec.openplanner.team/stops/Btlgfto1"], ["https://tec.openplanner.team/stops/N118adb", "https://tec.openplanner.team/stops/N118alb"], ["https://tec.openplanner.team/stops/Bbrycar1", "https://tec.openplanner.team/stops/N584bab"], ["https://tec.openplanner.team/stops/H2bh121b", "https://tec.openplanner.team/stops/H2lc172a"], ["https://tec.openplanner.team/stops/Cblcen3", "https://tec.openplanner.team/stops/Cmbcime4"], ["https://tec.openplanner.team/stops/X730aaa", "https://tec.openplanner.team/stops/X753aba"], ["https://tec.openplanner.team/stops/Bbghepi2", "https://tec.openplanner.team/stops/Bstecou2"], ["https://tec.openplanner.team/stops/H4te251b", "https://tec.openplanner.team/stops/H4te253b"], ["https://tec.openplanner.team/stops/Lsnagne1", "https://tec.openplanner.team/stops/Lsnagne2"], ["https://tec.openplanner.team/stops/N571afa", "https://tec.openplanner.team/stops/N571aja"], ["https://tec.openplanner.team/stops/H4os223a", "https://tec.openplanner.team/stops/H4os223b"], ["https://tec.openplanner.team/stops/N217abb", "https://tec.openplanner.team/stops/N217aca"], ["https://tec.openplanner.team/stops/Llgchan1", "https://tec.openplanner.team/stops/Llgcouv2"], ["https://tec.openplanner.team/stops/X720aba", "https://tec.openplanner.team/stops/X733aaa"], ["https://tec.openplanner.team/stops/H4pq112b", "https://tec.openplanner.team/stops/H4pq119b"], ["https://tec.openplanner.team/stops/LPTeg--2", "https://tec.openplanner.team/stops/LWneg--1"], ["https://tec.openplanner.team/stops/LBk79--2", "https://tec.openplanner.team/stops/LMsheid1"], ["https://tec.openplanner.team/stops/X823adb", "https://tec.openplanner.team/stops/X823aea"], ["https://tec.openplanner.team/stops/Cmovies1", "https://tec.openplanner.team/stops/Cmovies2"], ["https://tec.openplanner.team/stops/Bbeaech1", "https://tec.openplanner.team/stops/Bbeagae1"], ["https://tec.openplanner.team/stops/H4lu125a", "https://tec.openplanner.team/stops/H4lu127a"], ["https://tec.openplanner.team/stops/LCEeg--1", "https://tec.openplanner.team/stops/LMEpech2"], ["https://tec.openplanner.team/stops/X796aib", "https://tec.openplanner.team/stops/X986amb"], ["https://tec.openplanner.team/stops/N523aab", "https://tec.openplanner.team/stops/N523acb"], ["https://tec.openplanner.team/stops/Lveoctr1", "https://tec.openplanner.team/stops/Lverdep1"], ["https://tec.openplanner.team/stops/Boffegl2", "https://tec.openplanner.team/stops/Bramcom1"], ["https://tec.openplanner.team/stops/H2ca115b", "https://tec.openplanner.team/stops/H2ch125a"], ["https://tec.openplanner.team/stops/H4mo192a", "https://tec.openplanner.team/stops/H4mo206b"], ["https://tec.openplanner.team/stops/Bmrscsp1", "https://tec.openplanner.team/stops/Bmrsmco1"], ["https://tec.openplanner.team/stops/LNAdemo1", "https://tec.openplanner.team/stops/LNAdemo2"], ["https://tec.openplanner.team/stops/Blmlpla2", "https://tec.openplanner.team/stops/Blmlqlo1"], ["https://tec.openplanner.team/stops/X989aeb", "https://tec.openplanner.team/stops/X989agb"], ["https://tec.openplanner.team/stops/LJAroue2", "https://tec.openplanner.team/stops/LJAverv2"], ["https://tec.openplanner.team/stops/H5rx113b", "https://tec.openplanner.team/stops/H5rx125b"], ["https://tec.openplanner.team/stops/N537aba", "https://tec.openplanner.team/stops/N537aja"], ["https://tec.openplanner.team/stops/Cmacreu2", "https://tec.openplanner.team/stops/CMprov1"], ["https://tec.openplanner.team/stops/Bllnlb11", "https://tec.openplanner.team/stops/Bllnpsc1"], ["https://tec.openplanner.team/stops/N166aaa", "https://tec.openplanner.team/stops/N167aga"], ["https://tec.openplanner.team/stops/N535acb", "https://tec.openplanner.team/stops/N535acd"], ["https://tec.openplanner.team/stops/LChvill*", "https://tec.openplanner.team/stops/LChxhav2"], ["https://tec.openplanner.team/stops/LMOstat1", "https://tec.openplanner.team/stops/LNveg--2"], ["https://tec.openplanner.team/stops/H4vz369a", "https://tec.openplanner.team/stops/H4vz370b"], ["https://tec.openplanner.team/stops/LSznoel2", "https://tec.openplanner.team/stops/N506bvb"], ["https://tec.openplanner.team/stops/X899aaa", "https://tec.openplanner.team/stops/X899afb"], ["https://tec.openplanner.team/stops/Lhrlico3", "https://tec.openplanner.team/stops/Lwachal1"], ["https://tec.openplanner.team/stops/LSUhage2", "https://tec.openplanner.team/stops/LSUvill2"], ["https://tec.openplanner.team/stops/N423aba", "https://tec.openplanner.team/stops/N424aeb"], ["https://tec.openplanner.team/stops/Btslcej1", "https://tec.openplanner.team/stops/Btslhau2"], ["https://tec.openplanner.team/stops/Cgxcite2", "https://tec.openplanner.team/stops/Cgxvkho4"], ["https://tec.openplanner.team/stops/Bgembhe1", "https://tec.openplanner.team/stops/N576anb"], ["https://tec.openplanner.team/stops/Bcsebde1", "https://tec.openplanner.team/stops/Bcsempl2"], ["https://tec.openplanner.team/stops/N531apa", "https://tec.openplanner.team/stops/N576afb"], ["https://tec.openplanner.team/stops/X986adb", "https://tec.openplanner.team/stops/X986aeb"], ["https://tec.openplanner.team/stops/H4wn128a", "https://tec.openplanner.team/stops/H4wn128b"], ["https://tec.openplanner.team/stops/H1cv101a", "https://tec.openplanner.team/stops/H1cv101b"], ["https://tec.openplanner.team/stops/N125aba", "https://tec.openplanner.team/stops/N125acb"], ["https://tec.openplanner.team/stops/N170ada", "https://tec.openplanner.team/stops/NC14aca"], ["https://tec.openplanner.team/stops/Lghberl2", "https://tec.openplanner.team/stops/Lghviad1"], ["https://tec.openplanner.team/stops/Lmobras2", "https://tec.openplanner.team/stops/Lmopast1"], ["https://tec.openplanner.team/stops/H4ty308d", "https://tec.openplanner.team/stops/H4ty309a"], ["https://tec.openplanner.team/stops/NL68adb", "https://tec.openplanner.team/stops/NL68adc"], ["https://tec.openplanner.team/stops/H4rx141a", "https://tec.openplanner.team/stops/H4rx176b"], ["https://tec.openplanner.team/stops/H4ld123b", "https://tec.openplanner.team/stops/H4tm140a"], ["https://tec.openplanner.team/stops/N501cea", "https://tec.openplanner.team/stops/N501ckb"], ["https://tec.openplanner.team/stops/X750aga", "https://tec.openplanner.team/stops/X750ala"], ["https://tec.openplanner.team/stops/N301akb", "https://tec.openplanner.team/stops/N302afa"], ["https://tec.openplanner.team/stops/Ccipier1", "https://tec.openplanner.team/stops/Ccipier2"], ["https://tec.openplanner.team/stops/Ctarpoi2", "https://tec.openplanner.team/stops/N543cmb"], ["https://tec.openplanner.team/stops/X904acb", "https://tec.openplanner.team/stops/X904ada"], ["https://tec.openplanner.team/stops/Lrecomp1", "https://tec.openplanner.team/stops/Lrecomp2"], ["https://tec.openplanner.team/stops/Btubeur1", "https://tec.openplanner.team/stops/Btubsca1"], ["https://tec.openplanner.team/stops/Cmmcomb2", "https://tec.openplanner.team/stops/Cmmpjou1"], ["https://tec.openplanner.team/stops/N230ahb", "https://tec.openplanner.team/stops/N231adb"], ["https://tec.openplanner.team/stops/H1by108e", "https://tec.openplanner.team/stops/H1sy143a"], ["https://tec.openplanner.team/stops/X989abb", "https://tec.openplanner.team/stops/X989aca"], ["https://tec.openplanner.team/stops/H1en106a", "https://tec.openplanner.team/stops/H1en106b"], ["https://tec.openplanner.team/stops/N347aea", "https://tec.openplanner.team/stops/N347afb"], ["https://tec.openplanner.team/stops/X745aca", "https://tec.openplanner.team/stops/X745ada"], ["https://tec.openplanner.team/stops/Cmlceri2", "https://tec.openplanner.team/stops/Cmlcons1"], ["https://tec.openplanner.team/stops/LVIcarm1", "https://tec.openplanner.team/stops/LVItcm-1"], ["https://tec.openplanner.team/stops/X907aga", "https://tec.openplanner.team/stops/X907agb"], ["https://tec.openplanner.team/stops/H1cu118a", "https://tec.openplanner.team/stops/H1cu118b"], ["https://tec.openplanner.team/stops/Lvefran2", "https://tec.openplanner.team/stops/Lvepris1"], ["https://tec.openplanner.team/stops/N514aha", "https://tec.openplanner.team/stops/N515apb"], ["https://tec.openplanner.team/stops/N145aha", "https://tec.openplanner.team/stops/N149aaa"], ["https://tec.openplanner.team/stops/H1bg110a", "https://tec.openplanner.team/stops/H1go174a"], ["https://tec.openplanner.team/stops/Bbrlvil1", "https://tec.openplanner.team/stops/Buccptj2"], ["https://tec.openplanner.team/stops/N207aba", "https://tec.openplanner.team/stops/N207aea"], ["https://tec.openplanner.team/stops/X937akb", "https://tec.openplanner.team/stops/X945aeb"], ["https://tec.openplanner.team/stops/Caicalv2", "https://tec.openplanner.team/stops/Crspana4"], ["https://tec.openplanner.team/stops/X725aee", "https://tec.openplanner.team/stops/X725apb"], ["https://tec.openplanner.team/stops/H4ff115a", "https://tec.openplanner.team/stops/H4ff115b"], ["https://tec.openplanner.team/stops/Bhmmcor1", "https://tec.openplanner.team/stops/Btlgbro1"], ["https://tec.openplanner.team/stops/X724aea", "https://tec.openplanner.team/stops/X724aeb"], ["https://tec.openplanner.team/stops/X610aaa", "https://tec.openplanner.team/stops/X610aba"], ["https://tec.openplanner.team/stops/LWAchpg2", "https://tec.openplanner.team/stops/LWAwegg1"], ["https://tec.openplanner.team/stops/Cmccet2", "https://tec.openplanner.team/stops/Cmivert2"], ["https://tec.openplanner.team/stops/N513ahb", "https://tec.openplanner.team/stops/N521ata"], ["https://tec.openplanner.team/stops/N543baa", "https://tec.openplanner.team/stops/N543bba"], ["https://tec.openplanner.team/stops/LCxwade1", "https://tec.openplanner.team/stops/LJueg--1"], ["https://tec.openplanner.team/stops/Cchheig1", "https://tec.openplanner.team/stops/Cdaptca1"], ["https://tec.openplanner.team/stops/LPLhout2", "https://tec.openplanner.team/stops/LPLstat2"], ["https://tec.openplanner.team/stops/N509aib", "https://tec.openplanner.team/stops/N509bdb"], ["https://tec.openplanner.team/stops/LLelava1", "https://tec.openplanner.team/stops/X547abb"], ["https://tec.openplanner.team/stops/X829aea", "https://tec.openplanner.team/stops/X829aeb"], ["https://tec.openplanner.team/stops/H3so157b", "https://tec.openplanner.team/stops/H3so158b"], ["https://tec.openplanner.team/stops/N565akb", "https://tec.openplanner.team/stops/N565alb"], ["https://tec.openplanner.team/stops/Caiegli2", "https://tec.openplanner.team/stops/Caindsa1"], ["https://tec.openplanner.team/stops/X742aga", "https://tec.openplanner.team/stops/X743aca"], ["https://tec.openplanner.team/stops/H4ft135d", "https://tec.openplanner.team/stops/H4wu377b"], ["https://tec.openplanner.team/stops/LBSchar2", "https://tec.openplanner.team/stops/LBSgeer1"], ["https://tec.openplanner.team/stops/Clbchlo1", "https://tec.openplanner.team/stops/Cthrlef1"], ["https://tec.openplanner.team/stops/X870aba", "https://tec.openplanner.team/stops/X870acb"], ["https://tec.openplanner.team/stops/X839aeb", "https://tec.openplanner.team/stops/X839afb"], ["https://tec.openplanner.team/stops/N538apa", "https://tec.openplanner.team/stops/N538apb"], ["https://tec.openplanner.team/stops/Bbaualz1", "https://tec.openplanner.team/stops/Bbaualz2"], ["https://tec.openplanner.team/stops/N528aaa", "https://tec.openplanner.team/stops/N528aeb"], ["https://tec.openplanner.team/stops/Crapaep1", "https://tec.openplanner.team/stops/Crapaep2"], ["https://tec.openplanner.team/stops/X804afb", "https://tec.openplanner.team/stops/X804baa"], ["https://tec.openplanner.team/stops/X991acb", "https://tec.openplanner.team/stops/X991adb"], ["https://tec.openplanner.team/stops/N222acb", "https://tec.openplanner.team/stops/N222ada"], ["https://tec.openplanner.team/stops/H5pe146b", "https://tec.openplanner.team/stops/H5pe152a"], ["https://tec.openplanner.team/stops/Cobbusc2", "https://tec.openplanner.team/stops/Creoudo1"], ["https://tec.openplanner.team/stops/N425adb", "https://tec.openplanner.team/stops/N426ada"], ["https://tec.openplanner.team/stops/X882aha", "https://tec.openplanner.team/stops/X882ahb"], ["https://tec.openplanner.team/stops/LSdsa8a1", "https://tec.openplanner.team/stops/LSdsa8a2"], ["https://tec.openplanner.team/stops/LSGbail2", "https://tec.openplanner.team/stops/LSkathe1"], ["https://tec.openplanner.team/stops/N539aib", "https://tec.openplanner.team/stops/N539aqa"], ["https://tec.openplanner.team/stops/LMovich2", "https://tec.openplanner.team/stops/LSDgris2"], ["https://tec.openplanner.team/stops/Cnamonn2", "https://tec.openplanner.team/stops/Cnathib2"], ["https://tec.openplanner.team/stops/N563aaa", "https://tec.openplanner.team/stops/N563ana"], ["https://tec.openplanner.team/stops/LCSpoud1", "https://tec.openplanner.team/stops/LCSpoud4"], ["https://tec.openplanner.team/stops/H1te176a", "https://tec.openplanner.team/stops/H1te183a"]] \ No newline at end of file From e0f7ac5acd77e841299e1cb1962736db14c5d3f4 Mon Sep 17 00:00:00 2001 From: Harm Delva Date: Wed, 10 Jul 2019 14:55:30 +0200 Subject: [PATCH 07/85] Remove more ded stuff --- src/analytics/isochrones/demo.html | 2 -- src/index.ts | 13 ------------- 2 files changed, 15 deletions(-) diff --git a/src/analytics/isochrones/demo.html b/src/analytics/isochrones/demo.html index c0cc0be5..91bd86d2 100644 --- a/src/analytics/isochrones/demo.html +++ b/src/analytics/isochrones/demo.html @@ -89,8 +89,6 @@ polygonData.push(ring.map((p) => [p.latitude, p.longitude])); } - console.log(polygonData); - if (polygonData.length > 0) { var firstpolyline = new L.polygon(polygonData, { smoothFactor: 2, weight: 1, color: color }); firstpolyline.addTo(map); diff --git a/src/index.ts b/src/index.ts index 1c164857..15225cbb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -3,19 +3,6 @@ import "reflect-metadata"; import IsochroneGenerator from "./analytics/isochrones/main"; import Planner from "./Planner"; -/* -import defaultContainer from "./inversify.config"; -import Context from "./Context"; -import TYPES from "./types"; -import IProfileFetcher from "./fetcher/profiles/IProfileFetcher"; - -const x = new IsochroneGenerator(); -x.init({latitude: 51.0262973, longitude: 3.7110885}).then(async () => { - const i = await x.getIsochrone(10000); - let y = 9; -}) -*/ - export default { Planner, IsochroneGenerator, From 3464b173f2e9d407348bb008fc8fb36b4960a61d Mon Sep 17 00:00:00 2001 From: Harm Delva Date: Thu, 11 Jul 2019 11:47:07 +0200 Subject: [PATCH 08/85] Add support for development profiles --- src/Planner.ts | 7 +++++++ src/analytics/isochrones/main.ts | 9 +++++++++ src/fetcher/profiles/IProfileFetcher.ts | 1 + src/fetcher/profiles/IProfileProvider.ts | 1 + src/fetcher/profiles/ProfileFetcherDefault.ts | 13 +++++++++++++ .../profiles/ProfileProviderDefault.ts | 19 ++++++++++++++++++- 6 files changed, 49 insertions(+), 1 deletion(-) diff --git a/src/Planner.ts b/src/Planner.ts index 3a2c6b83..bb33e2ed 100644 --- a/src/Planner.ts +++ b/src/Planner.ts @@ -128,6 +128,13 @@ export default class Planner implements EventEmitter { } } + public async setDevelopmentProfile(blob: object) { + const profileID = await this.profileProvider.setDevelopmentProfile(blob); + this.profileProvider.setActiveProfileID(profileID); + + return this; + } + public setProfileID(profileID: string) { this.profileProvider.setActiveProfileID(profileID); diff --git a/src/analytics/isochrones/main.ts b/src/analytics/isochrones/main.ts index 163ae2d2..e095ea06 100644 --- a/src/analytics/isochrones/main.ts +++ b/src/analytics/isochrones/main.ts @@ -91,6 +91,15 @@ export default class IsochroneGenerator implements EventEmitter { return this; } + public async setDevelopmentProfile(blob: object) { + const id = await this.profileProvider.setDevelopmentProfile(blob); + this.loaded = this.profileProvider.setActiveProfileID(id).then(() => { + return this.embedBeginPoint(this.startPoint); + }).then(() => { + return true; + }); + } + public async setProfileID(profileID: string) { this.loaded = this.profileProvider.setActiveProfileID(profileID).then(() => { return this.embedBeginPoint(this.startPoint); diff --git a/src/fetcher/profiles/IProfileFetcher.ts b/src/fetcher/profiles/IProfileFetcher.ts index 9639269f..113ca61d 100644 --- a/src/fetcher/profiles/IProfileFetcher.ts +++ b/src/fetcher/profiles/IProfileFetcher.ts @@ -1,5 +1,6 @@ import Profile from "../../entities/profile/Profile"; export default interface IProfileFetcher { + parseProfileBlob(blob: object, id: string): Promise; get(url: string): Promise; } diff --git a/src/fetcher/profiles/IProfileProvider.ts b/src/fetcher/profiles/IProfileProvider.ts index ac3f9189..82a5877f 100644 --- a/src/fetcher/profiles/IProfileProvider.ts +++ b/src/fetcher/profiles/IProfileProvider.ts @@ -4,6 +4,7 @@ export default interface IProfileProvider { setActiveProfile(profile: Profile): void; setActiveProfileID(profileId: string): void; + setDevelopmentProfile(blob: object): Promise; addProfile(profile: Profile): void; getActiveProfile(): Profile; diff --git a/src/fetcher/profiles/ProfileFetcherDefault.ts b/src/fetcher/profiles/ProfileFetcherDefault.ts index 7bea1da6..6a0de0a6 100644 --- a/src/fetcher/profiles/ProfileFetcherDefault.ts +++ b/src/fetcher/profiles/ProfileFetcherDefault.ts @@ -1,4 +1,5 @@ import { inject, injectable } from "inversify"; +import jsonld = require("jsonld"); import LDFetch from "ldfetch"; import DynamicProfile from "../../entities/profile/DynamicProfile"; import Profile from "../../entities/profile/Profile"; @@ -32,6 +33,18 @@ export default class ProfileFetcherDefault implements IProfileFetcher { this.ldLoader.defineCollection(URI.inNS(PROFILE, "hasObstacleRules")); } + public async parseProfileBlob(blob: object, id: string): Promise { + const triples = await jsonld.toRDF(blob); + + const [profile] = this.ldLoader.process(triples, [ + this.getView(), + ]); + + profile.id = id; + + return profile; + } + public async get(url: string): Promise { const rdfThing = await this.ldFetch.get(url); const triples = rdfThing.triples; diff --git a/src/fetcher/profiles/ProfileProviderDefault.ts b/src/fetcher/profiles/ProfileProviderDefault.ts index 9396d828..649eb656 100644 --- a/src/fetcher/profiles/ProfileProviderDefault.ts +++ b/src/fetcher/profiles/ProfileProviderDefault.ts @@ -1,4 +1,4 @@ -import { inject, injectable } from "inversify"; +import { inject, injectable, interfaces } from "inversify"; import PedestrianProfile from "../../entities/profile/PedestrianProfile"; import Profile from "../../entities/profile/Profile"; import TYPES from "../../types"; @@ -19,12 +19,17 @@ export default class ProfileProviderDefault implements IProfileProvider { private activeProfile: Profile; private fetcher: IProfileFetcher; + private developmentProfile: Profile; // does not have a persistent id, will change often + private developmentProfileCounter: number; + constructor( @inject(TYPES.ProfileFetcher) fetcher: IProfileFetcher, ) { this.profiles = {}; this.activeProfile = undefined; this.fetcher = fetcher; + this.developmentProfile = undefined; + this.developmentProfileCounter = 0; // some placeholders const pedestrian = new PedestrianProfile(); @@ -48,6 +53,18 @@ export default class ProfileProviderDefault implements IProfileProvider { return this.activeProfile; } + public async setDevelopmentProfile(blob: object): Promise { + this.developmentProfileCounter += 1; + const newProfile = await this.fetcher.parseProfileBlob(blob, "" + this.developmentProfileCounter); + if (this.developmentProfile) { + delete this.profiles[this.developmentProfile.getID()]; + } + this.developmentProfile = newProfile; + this.profiles[this.developmentProfile.getID()] = Promise.resolve(newProfile); + this.activeProfile = newProfile; + return newProfile.getID(); + } + public addProfile(profile: Profile) { this.profiles[profile.getID()] = Promise.resolve(profile); } From 1d9c7b4fc2092828895443a72a6d1a5549055449 Mon Sep 17 00:00:00 2001 From: Harm Delva Date: Thu, 11 Jul 2019 11:52:57 +0200 Subject: [PATCH 09/85] Remove unnecessary import --- src/fetcher/profiles/ProfileProviderDefault.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fetcher/profiles/ProfileProviderDefault.ts b/src/fetcher/profiles/ProfileProviderDefault.ts index 649eb656..610a3823 100644 --- a/src/fetcher/profiles/ProfileProviderDefault.ts +++ b/src/fetcher/profiles/ProfileProviderDefault.ts @@ -1,4 +1,4 @@ -import { inject, injectable, interfaces } from "inversify"; +import { inject, injectable } from "inversify"; import PedestrianProfile from "../../entities/profile/PedestrianProfile"; import Profile from "../../entities/profile/Profile"; import TYPES from "../../types"; From 7597a1374415a711850c94dd913600058cb5c536 Mon Sep 17 00:00:00 2001 From: Harm Delva Date: Thu, 11 Jul 2019 12:14:21 +0200 Subject: [PATCH 10/85] Expose the road planner directly --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index 15225cbb..5c0ec2f1 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,8 +2,10 @@ import "isomorphic-fetch"; import "reflect-metadata"; import IsochroneGenerator from "./analytics/isochrones/main"; import Planner from "./Planner"; +import RoadPlannerPathfinding from "./planner/road/RoadPlannerPathfinding"; export default { + RoadPlannerPathfinding, Planner, IsochroneGenerator, }; From c85f8a303c11e156fb424b3834fe5ee52fefd86a Mon Sep 17 00:00:00 2001 From: Harm Delva Date: Thu, 11 Jul 2019 12:20:03 +0200 Subject: [PATCH 11/85] Allow for setting profiles in the road planner directly --- src/planner/road/RoadPlannerPathfinding.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/planner/road/RoadPlannerPathfinding.ts b/src/planner/road/RoadPlannerPathfinding.ts index 52b55dc8..c3c30a70 100644 --- a/src/planner/road/RoadPlannerPathfinding.ts +++ b/src/planner/road/RoadPlannerPathfinding.ts @@ -3,6 +3,7 @@ import { inject, injectable } from "inversify"; import inBBox from "tiles-in-bbox"; import { RoutableTileCoordinate } from "../../entities/tiles/coordinate"; import TravelMode from "../../enums/TravelMode"; +import IProfileProvider from "../../fetcher/profiles/IProfileProvider"; import IRoutableTileProvider from "../../fetcher/tiles/IRoutableTileProvider"; import ILocation from "../../interfaces/ILocation"; import IPath from "../../interfaces/IPath"; @@ -19,13 +20,16 @@ import IRoadPlanner from "./IRoadPlanner"; export default class RoadPlannerPathfinding implements IRoadPlanner { private tileProvider: IRoutableTileProvider; private pathfinderProvider: PathfinderProvider; + private profileProvider: IProfileProvider; constructor( @inject(TYPES.RoutableTileProvider) tileProvider: IRoutableTileProvider, @inject(TYPES.PathfinderProvider) pathfinderProvider: PathfinderProvider, + @inject(TYPES.ProfileProvider) profileProvider: IProfileProvider, ) { this.tileProvider = tileProvider; this.pathfinderProvider = pathfinderProvider; + this.profileProvider = profileProvider; } public async plan(query: IResolvedQuery): Promise> { @@ -56,6 +60,19 @@ export default class RoadPlannerPathfinding implements IRoadPlanner { return new ArrayIterator(paths); } + public async setDevelopmentProfile(blob: object) { + const profileID = await this.profileProvider.setDevelopmentProfile(blob); + this.profileProvider.setActiveProfileID(profileID); + + return this; + } + + public setProfileID(profileID: string) { + this.profileProvider.setActiveProfileID(profileID); + + return this; + } + private async getPathBetweenLocations( from: ILocation, to: ILocation, From 8eb97f368bf5ac9576b7d9470d348ee90dfb9f20 Mon Sep 17 00:00:00 2001 From: Harm Delva Date: Thu, 11 Jul 2019 16:16:20 +0200 Subject: [PATCH 12/85] Give the Planner a roadNetworkOnly option --- src/demo.ts | 1 + src/index.ts | 3 +-- src/interfaces/IQuery.ts | 1 + .../public-transport/CSAEarliestArrival.test.ts | 2 +- src/planner/public-transport/CSAProfile.test.ts | 2 +- src/planner/road/RoadPlannerPathfinding.ts | 13 ------------- src/query-runner/IResolvedQuery.ts | 1 + src/query-runner/QueryRunnerDefault.ts | 11 +++++++---- .../QueryRunnerEarliestArrivalFirst.test.ts | 1 + .../QueryRunnerEarliestArrivalFirst.ts | 10 +++++++++- .../exponential/QueryRunnerExponential.test.ts | 2 +- .../exponential/QueryRunnerExponential.ts | 10 ++++++++-- 12 files changed, 32 insertions(+), 25 deletions(-) diff --git a/src/demo.ts b/src/demo.ts index 1424a6c7..aef023ac 100644 --- a/src/demo.ts +++ b/src/demo.ts @@ -67,6 +67,7 @@ export default async (logResults) => { let i = 0; planner.query({ + // roadNetworkOnly: true, // don't mix with publicTranspotOnly, for obvious reasons publicTransportOnly: true, // from: "https://data.delijn.be/stops/201657", // to: "https://data.delijn.be/stops/205910", diff --git a/src/index.ts b/src/index.ts index 5c0ec2f1..c532234e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,11 +1,10 @@ import "isomorphic-fetch"; import "reflect-metadata"; + import IsochroneGenerator from "./analytics/isochrones/main"; import Planner from "./Planner"; -import RoadPlannerPathfinding from "./planner/road/RoadPlannerPathfinding"; export default { - RoadPlannerPathfinding, Planner, IsochroneGenerator, }; diff --git a/src/interfaces/IQuery.ts b/src/interfaces/IQuery.ts index 4e81ab42..7360bc05 100644 --- a/src/interfaces/IQuery.ts +++ b/src/interfaces/IQuery.ts @@ -8,6 +8,7 @@ export default interface IQuery { maximumArrivalTime?: Date; roadOnly?: boolean; publicTransportOnly?: boolean; + roadNetworkOnly?: boolean; walkingSpeed?: SpeedKmH; minimumWalkingSpeed?: SpeedKmH; maximumWalkingSpeed?: SpeedKmH; diff --git a/src/planner/public-transport/CSAEarliestArrival.test.ts b/src/planner/public-transport/CSAEarliestArrival.test.ts index 0b8b0799..5f3341ff 100644 --- a/src/planner/public-transport/CSAEarliestArrival.test.ts +++ b/src/planner/public-transport/CSAEarliestArrival.test.ts @@ -198,7 +198,7 @@ describe("[PublicTransportPlannerCSAEarliestArrival]", () => { defaultContainer.get(TYPES.Context), ); - return new QueryRunnerDefault(locationResolver, CSA); + return new QueryRunnerDefault(locationResolver, CSA, undefined); }; const checkStops = (result, query) => { diff --git a/src/planner/public-transport/CSAProfile.test.ts b/src/planner/public-transport/CSAProfile.test.ts index 8bcba17e..08371a11 100644 --- a/src/planner/public-transport/CSAProfile.test.ts +++ b/src/planner/public-transport/CSAProfile.test.ts @@ -198,7 +198,7 @@ describe("[PublicTransportPlannerCSAProfile]", () => { journeyExtractor, ); - return new QueryRunnerDefault(locationResolver, CSA); + return new QueryRunnerDefault(locationResolver, CSA, undefined); }; const checkStops = (result, query) => { diff --git a/src/planner/road/RoadPlannerPathfinding.ts b/src/planner/road/RoadPlannerPathfinding.ts index c3c30a70..5b191daa 100644 --- a/src/planner/road/RoadPlannerPathfinding.ts +++ b/src/planner/road/RoadPlannerPathfinding.ts @@ -60,19 +60,6 @@ export default class RoadPlannerPathfinding implements IRoadPlanner { return new ArrayIterator(paths); } - public async setDevelopmentProfile(blob: object) { - const profileID = await this.profileProvider.setDevelopmentProfile(blob); - this.profileProvider.setActiveProfileID(profileID); - - return this; - } - - public setProfileID(profileID: string) { - this.profileProvider.setActiveProfileID(profileID); - - return this; - } - private async getPathBetweenLocations( from: ILocation, to: ILocation, diff --git a/src/query-runner/IResolvedQuery.ts b/src/query-runner/IResolvedQuery.ts index f8f625dd..4a598ed1 100644 --- a/src/query-runner/IResolvedQuery.ts +++ b/src/query-runner/IResolvedQuery.ts @@ -13,6 +13,7 @@ export default interface IResolvedQuery { maximumArrivalTime?: Date; roadOnly?: boolean; publicTransportOnly?: boolean; + roadNetworkOnly?: boolean; minimumWalkingSpeed?: SpeedKmH; maximumWalkingSpeed?: SpeedKmH; maximumWalkingDuration?: DurationMs; diff --git a/src/query-runner/QueryRunnerDefault.ts b/src/query-runner/QueryRunnerDefault.ts index 829e47da..46fa8d56 100644 --- a/src/query-runner/QueryRunnerDefault.ts +++ b/src/query-runner/QueryRunnerDefault.ts @@ -7,6 +7,7 @@ import ILocation from "../interfaces/ILocation"; import IPath from "../interfaces/IPath"; import IQuery from "../interfaces/IQuery"; import IPublicTransportPlanner from "../planner/public-transport/IPublicTransportPlanner"; +import IRoadPlanner from "../planner/road/IRoadPlanner"; import TYPES from "../types"; import Units from "../util/Units"; import ILocationResolver from "./ILocationResolver"; @@ -23,13 +24,16 @@ import IResolvedQuery from "./IResolvedQuery"; export default class QueryRunnerDefault implements IQueryRunner { private locationResolver: ILocationResolver; private publicTransportPlanner: IPublicTransportPlanner; + private roadPlanner: IRoadPlanner; constructor( @inject(TYPES.LocationResolver) locationResolver: ILocationResolver, @inject(TYPES.PublicTransportPlanner) publicTransportPlanner: IPublicTransportPlanner, + @inject(TYPES.RoadPlanner) roadPlanner: IRoadPlanner, ) { this.locationResolver = locationResolver; this.publicTransportPlanner = publicTransportPlanner; + this.roadPlanner = roadPlanner; } public async run(query: IQuery): Promise> { @@ -37,14 +41,14 @@ export default class QueryRunnerDefault implements IQueryRunner { if (resolvedQuery.publicTransportOnly) { return this.publicTransportPlanner.plan(resolvedQuery); - + } else if (resolvedQuery.roadNetworkOnly) { + return this.roadPlanner.plan(resolvedQuery); } else { - throw new InvalidQueryError("Query should have publicTransportOnly = true"); + throw new InvalidQueryError("Query should have publicTransportOnly = true or roadNetworkOnly = true"); } } private async resolveEndpoint(endpoint: string | string[] | ILocation | ILocation[]): Promise { - if (Array.isArray(endpoint)) { const promises = (endpoint as Array) .map((singleEndpoint: string | ILocation) => @@ -52,7 +56,6 @@ export default class QueryRunnerDefault implements IQueryRunner { ); return await Promise.all(promises); - } else { return [await this.locationResolver.resolve(endpoint)]; } diff --git a/src/query-runner/earliest-arrival-first/QueryRunnerEarliestArrivalFirst.test.ts b/src/query-runner/earliest-arrival-first/QueryRunnerEarliestArrivalFirst.test.ts index d6fe132b..abc73ecf 100644 --- a/src/query-runner/earliest-arrival-first/QueryRunnerEarliestArrivalFirst.test.ts +++ b/src/query-runner/earliest-arrival-first/QueryRunnerEarliestArrivalFirst.test.ts @@ -65,6 +65,7 @@ describe("[QueryRunnerExponential]", () => { reachableStopsFinder, reachableStopsFinder, reachableStopsFinder, + undefined, ); }; diff --git a/src/query-runner/earliest-arrival-first/QueryRunnerEarliestArrivalFirst.ts b/src/query-runner/earliest-arrival-first/QueryRunnerEarliestArrivalFirst.ts index 51ca0e6a..105f9ca9 100644 --- a/src/query-runner/earliest-arrival-first/QueryRunnerEarliestArrivalFirst.ts +++ b/src/query-runner/earliest-arrival-first/QueryRunnerEarliestArrivalFirst.ts @@ -15,6 +15,7 @@ import Path from "../../planner/Path"; import CSAEarliestArrival from "../../planner/public-transport/CSAEarliestArrival"; import IPublicTransportPlanner from "../../planner/public-transport/IPublicTransportPlanner"; import JourneyExtractorEarliestArrival from "../../planner/public-transport/JourneyExtractorEarliestArrival"; +import IRoadPlanner from "../../planner/road/IRoadPlanner"; import IReachableStopsFinder from "../../planner/stops/IReachableStopsFinder"; import TYPES from "../../types"; import FilterUniqueIterator from "../../util/iterators/FilterUniqueIterator"; @@ -45,6 +46,7 @@ export default class QueryRunnerEarliestArrivalFirst implements IQueryRunner { private readonly connectionsProvider: IConnectionsProvider; private readonly locationResolver: ILocationResolver; private readonly publicTransportPlannerFactory: interfaces.Factory; + private readonly roadPlanner: IRoadPlanner; private readonly journeyExtractorEarliestArrival: JourneyExtractorEarliestArrival; @@ -70,6 +72,8 @@ export default class QueryRunnerEarliestArrivalFirst implements IQueryRunner { @inject(TYPES.ReachableStopsFinder) @tagged("phase", ReachableStopsSearchPhase.Final) finalReachableStopsFinder: IReachableStopsFinder, + @inject(TYPES.RoadPlanner) + roadPlanner: IRoadPlanner, ) { this.context = context; this.connectionsProvider = connectionsProvider; @@ -80,6 +84,8 @@ export default class QueryRunnerEarliestArrivalFirst implements IQueryRunner { this.transferReachableStopsFinder = transferReachableStopsFinder; this.finalReachableStopsFinder = finalReachableStopsFinder; + this.roadPlanner = roadPlanner; + this.journeyExtractorEarliestArrival = new JourneyExtractorEarliestArrival( locationResolver, context, @@ -141,8 +147,10 @@ export default class QueryRunnerEarliestArrivalFirst implements IQueryRunner { return new FilterUniqueIterator(prependedIterator, Path.compareEquals); + } else if (baseQuery.roadNetworkOnly) { + return this.roadPlanner.plan(baseQuery); } else { - throw new InvalidQueryError("Query should have publicTransportOnly = true"); + throw new InvalidQueryError("Query should have publicTransportOnly = true or roadNetworkOnly = true"); } } diff --git a/src/query-runner/exponential/QueryRunnerExponential.test.ts b/src/query-runner/exponential/QueryRunnerExponential.test.ts index 5a09c0bb..bff78885 100644 --- a/src/query-runner/exponential/QueryRunnerExponential.test.ts +++ b/src/query-runner/exponential/QueryRunnerExponential.test.ts @@ -58,7 +58,7 @@ describe("[QueryRunnerExponential]", () => { ); }; - return new QueryRunnerExponential(context, locationResolver, createPlanner); + return new QueryRunnerExponential(context, locationResolver, createPlanner, undefined); }; const result: IPath[] = []; diff --git a/src/query-runner/exponential/QueryRunnerExponential.ts b/src/query-runner/exponential/QueryRunnerExponential.ts index c834d12e..db7a0a34 100644 --- a/src/query-runner/exponential/QueryRunnerExponential.ts +++ b/src/query-runner/exponential/QueryRunnerExponential.ts @@ -10,6 +10,7 @@ import IPath from "../../interfaces/IPath"; import IQuery from "../../interfaces/IQuery"; import Path from "../../planner/Path"; import IPublicTransportPlanner from "../../planner/public-transport/IPublicTransportPlanner"; +import IRoadPlanner from "../../planner/road/IRoadPlanner"; import TYPES from "../../types"; import FilterUniqueIterator from "../../util/iterators/FilterUniqueIterator"; import FlatMapIterator from "../../util/iterators/FlatMapIterator"; @@ -37,6 +38,7 @@ export default class QueryRunnerExponential implements IQueryRunner { private readonly locationResolver: ILocationResolver; private readonly publicTransportPlannerFactory: interfaces.Factory; private readonly context: Context; + private readonly roadPlanner: IRoadPlanner; constructor( @inject(TYPES.Context) @@ -45,10 +47,13 @@ export default class QueryRunnerExponential implements IQueryRunner { locationResolver: ILocationResolver, @inject(TYPES.PublicTransportPlannerFactory) publicTransportPlannerFactory: interfaces.Factory, + @inject(TYPES.RoadPlanner) + roadPlanner: IRoadPlanner, ) { this.context = context; this.locationResolver = locationResolver; this.publicTransportPlannerFactory = publicTransportPlannerFactory; + this.roadPlanner = roadPlanner; } public async run(query: IQuery): Promise> { @@ -63,9 +68,10 @@ export default class QueryRunnerExponential implements IQueryRunner { ); return new FilterUniqueIterator(subqueryIterator, Path.compareEquals); - + } else if (baseQuery.roadNetworkOnly) { + return this.roadPlanner.plan(baseQuery); } else { - throw new InvalidQueryError("Query should have publicTransportOnly = true"); + throw new InvalidQueryError("Query should have publicTransportOnly = true or roadNetworkOnly = true"); } } From 2de8f51152e983b992ee34cbaf7223075f2d5d9c Mon Sep 17 00:00:00 2001 From: Harm Delva Date: Fri, 12 Jul 2019 13:41:52 +0200 Subject: [PATCH 13/85] Add incremental isochrones --- src/analytics/isochrones/demo.html | 28 +++++++++++++++++++++++++--- src/analytics/isochrones/main.ts | 24 +++++++++++++++++++++++- 2 files changed, 48 insertions(+), 4 deletions(-) diff --git a/src/analytics/isochrones/demo.html b/src/analytics/isochrones/demo.html index 91bd86d2..36409a62 100644 --- a/src/analytics/isochrones/demo.html +++ b/src/analytics/isochrones/demo.html @@ -52,9 +52,9 @@

Latitude:
-
+
Longitude:
-

+

@@ -74,11 +74,23 @@ let map; let generator; + let intermediate; + let first = true; async function drawIsochrone(distance, color) { - const data = await generator.getIsochrone(distance, true); + let data; + if (first) { + data = await generator.getIsochrone(distance, true); + first = false; + } else { + data = await generator.getIsochrone(distance, false); + } const isochrones = data.isochrones; + if (intermediate) { + map.removeLayer(intermediate); + } + for (const isochrone of isochrones) { const polygonData = []; @@ -118,12 +130,22 @@ const point = { latitude: focus[0], longitude: focus[1] }; const x = new Planner.IsochroneGenerator(point); + x.enableIncrementalResults(); + first = true; x.on("TILE", (coord) => { const bounds = getTileBoundingBox(coord); L.rectangle(bounds, { color: 'blue', weight: 1, fillOpacity: 0 }).addTo(map); }) + x.on("INTERMEDIATE", (shell) => { + if (intermediate) { + map.removeLayer(intermediate); + } + intermediate = new L.polygon([shell], { smoothFactor: 2, weight: 1, color: '#000000' }); + intermediate.addTo(map); + }) + return x; } diff --git a/src/analytics/isochrones/main.ts b/src/analytics/isochrones/main.ts index e095ea06..4f99c4b3 100644 --- a/src/analytics/isochrones/main.ts +++ b/src/analytics/isochrones/main.ts @@ -1,3 +1,4 @@ +import concaveman = require("concaveman"); // @ts-ignore import { EventEmitter, Listener } from "events"; import "isomorphic-fetch"; @@ -29,6 +30,8 @@ export default class IsochroneGenerator implements EventEmitter { private profileProvider: ProfileProvider; private loaded: Promise; + private showIncremental: boolean; + private reachedPoints: ILocation[]; constructor(point: ILocation, container = defaultContainer) { this.context = container.get(TYPES.Context); @@ -39,10 +42,16 @@ export default class IsochroneGenerator implements EventEmitter { this.profileProvider = container.get(TYPES.ProfileProvider); this.reachedTiles = new Set(); this.startPoint = point; + this.reachedPoints = [this.startPoint]; + this.showIncremental = false; this.setProfileID("http://hdelva.be/profile/car"); } + public enableIncrementalResults() { + this.showIncremental = true; + } + public addListener(type: string | symbol, listener: Listener): this { this.context.addListener(type, listener); @@ -143,6 +152,19 @@ export default class IsochroneGenerator implements EventEmitter { if (!tile.contains(node)) { boundaryNodes.add(nodeId); } + + if (this.showIncremental) { + if (Math.random() * this.reachedPoints.length < 100) { + pathfinder.setBreakPoint(nodeId, async (on: string) => { + const innerNode = self.registry.getNode(on); + this.reachedPoints.push(innerNode); + const internalNodes = this.reachedPoints + .map((n) => [n.longitude, n.latitude]); + + self.emit("INTERMEDIATE", concaveman(internalNodes, Infinity).map((e) => [e[1], e[0]])); + }); + } + } } const self = this; @@ -158,7 +180,7 @@ export default class IsochroneGenerator implements EventEmitter { private async embedBeginPoint(from: ILocation) { const zoom = 14; - const padding = 0.01; + const padding = 0.005; const fromBBox = { top: from.latitude + padding, From 3efb0d2ca9727436cf4fd3d51a7b4ae823a23c06 Mon Sep 17 00:00:00 2001 From: Harm Delva Date: Fri, 12 Jul 2019 14:56:56 +0200 Subject: [PATCH 14/85] Make the road pathfinder return all steps of the journey --- src/enums/TravelMode.ts | 1 + src/pathfinding/dijkstra/dijkstra-js.ts | 76 +++++++++++++++++++ src/pathfinding/pathfinder.ts | 1 + .../CSAEarliestArrival.test.ts | 5 +- .../public-transport/CSAProfile.test.ts | 5 +- src/planner/road/RoadPlannerBirdsEye.test.ts | 3 +- src/planner/road/RoadPlannerPathfinding.ts | 38 ++++++---- .../LocationResolverConvenience.test.ts | 4 +- .../LocationResolverConvenience.ts | 4 +- .../LocationResolverDefault.test.ts | 3 +- src/query-runner/LocationResolverDefault.ts | 9 +++ .../QueryRunnerEarliestArrivalFirst.test.ts | 4 +- .../QueryRunnerExponential.test.ts | 3 +- 13 files changed, 130 insertions(+), 26 deletions(-) diff --git a/src/enums/TravelMode.ts b/src/enums/TravelMode.ts index eba28087..693825cf 100644 --- a/src/enums/TravelMode.ts +++ b/src/enums/TravelMode.ts @@ -2,6 +2,7 @@ enum TravelMode { Train = "train", Bus = "bus", Walking = "walking", + Profile = "profile", // this could be more specific, maybe replace this enum with a data class } export default TravelMode; diff --git a/src/pathfinding/dijkstra/dijkstra-js.ts b/src/pathfinding/dijkstra/dijkstra-js.ts index 6a380997..87904d08 100644 --- a/src/pathfinding/dijkstra/dijkstra-js.ts +++ b/src/pathfinding/dijkstra/dijkstra-js.ts @@ -90,4 +90,80 @@ export class Dijkstra implements IShortestPathAlgorithm { return undefined; } + + public queryPath(from: string, to: string) { + const costs = [...Array(this.graph.getAdjacencyList().length)].map((_) => Infinity); + const previousNodes = [...Array(this.graph.getAdjacencyList().length)].map((_) => undefined); + + let queue: TinyQueue; + if (this.useWeightedCost) { + queue = new TinyQueue([], (a, b) => a.cost - b.cost); + } else { + queue = new TinyQueue([], (a, b) => a.duration - b.duration); + } + + const fromIndex = this.graph.getNodeIndex(from); + costs[fromIndex] = 0; + queue.push({ position: fromIndex, duration: 0, cost: 0, distance: 0 }); + + const toIndex = this.graph.getNodeIndex(to); + + while (queue.length) { + const { duration, distance, cost, position } = queue.pop(); + + if (position === toIndex) { + // it is done, break the loop and start reconstructing the path + break; + } + + if (cost > costs[position]) { + // we have already found a better way + continue; + } + + for (const edge of this.graph.getAdjacencyList()[position]) { + const next = { + distance: distance + edge.distance, + duration: duration + edge.duration, + cost: cost + edge.cost, + position: edge.node, + }; + + if (next.cost < costs[next.position]) { + queue.push(next); + costs[next.position] = next.cost; + previousNodes[next.position] = position; + } + } + } + + let currentPosition = toIndex; + const steps = []; + + // reconstruct the path + while (previousNodes[currentPosition]) { + const previousPosition = previousNodes[currentPosition]; + + for (const edge of this.graph.getAdjacencyList()[previousPosition]) { + // this seems inefficient, but memory consumption is way more important + if (edge.node === currentPosition) { + const distance = edge.distance; + const duration = edge.duration; + + steps.push({ + from: this.graph.getLabel(previousPosition), + to: this.graph.getLabel(currentPosition), + distance, + duration, + }); + + break; + } + } + + currentPosition = previousPosition; + } + + return steps.reverse(); + } } diff --git a/src/pathfinding/pathfinder.ts b/src/pathfinding/pathfinder.ts index 38f67d42..5ce5950e 100644 --- a/src/pathfinding/pathfinder.ts +++ b/src/pathfinding/pathfinder.ts @@ -25,6 +25,7 @@ interface IPathfinder { } export interface IShortestPathAlgorithm extends IPathfinder { + queryPath(from: string, to: string); queryPathSummary(from: string, to: string): IPathSummary; } diff --git a/src/planner/public-transport/CSAEarliestArrival.test.ts b/src/planner/public-transport/CSAEarliestArrival.test.ts index 5f3341ff..e9480006 100644 --- a/src/planner/public-transport/CSAEarliestArrival.test.ts +++ b/src/planner/public-transport/CSAEarliestArrival.test.ts @@ -2,6 +2,7 @@ import "jest"; import LDFetch from "ldfetch"; import Context from "../../Context"; import Defaults from "../../Defaults"; +import RoutableTileRegistry from "../../entities/tiles/registry"; import TravelMode from "../../enums/TravelMode"; import ConnectionsFetcherLazy from "../../fetcher/connections/lazy/ConnectionsFetcherLazy"; import ConnectionsFetcherNMBSTest from "../../fetcher/connections/tests/ConnectionsFetcherNMBSTest"; @@ -34,7 +35,7 @@ describe("[PublicTransportPlannerCSAEarliestArrival]", () => { const stopsFetcher = new StopsFetcherLDFetch(ldFetch); stopsFetcher.setAccessUrl("https://irail.be/stations/NMBS"); - const locationResolver = new LocationResolverDefault(stopsFetcher); + const locationResolver = new LocationResolverDefault(stopsFetcher, new RoutableTileRegistry()); const reachableStopsFinder = new ReachableStopsFinderBirdsEyeCached(stopsFetcher); return new CSAEarliestArrival( @@ -186,7 +187,7 @@ describe("[PublicTransportPlannerCSAEarliestArrival]", () => { const stopsFetcher = new StopsFetcherLDFetch(ldFetch); stopsFetcher.setAccessUrl("https://irail.be/stations/NMBS"); - const locationResolver = new LocationResolverDefault(stopsFetcher); + const locationResolver = new LocationResolverDefault(stopsFetcher, new RoutableTileRegistry()); const reachableStopsFinder = new ReachableStopsFinderBirdsEyeCached(stopsFetcher); const CSA = new CSAEarliestArrival( diff --git a/src/planner/public-transport/CSAProfile.test.ts b/src/planner/public-transport/CSAProfile.test.ts index 08371a11..ee3f8faf 100644 --- a/src/planner/public-transport/CSAProfile.test.ts +++ b/src/planner/public-transport/CSAProfile.test.ts @@ -1,6 +1,7 @@ import "jest"; import LDFetch from "ldfetch"; import Defaults from "../../Defaults"; +import RoutableTileRegistry from "../../entities/tiles/registry"; import TravelMode from "../../enums/TravelMode"; import ConnectionsFetcherLazy from "../../fetcher/connections/lazy/ConnectionsFetcherLazy"; import ConnectionsFetcherNMBSTest from "../../fetcher/connections/tests/ConnectionsFetcherNMBSTest"; @@ -32,7 +33,7 @@ describe("[PublicTransportPlannerCSAProfile]", () => { const stopsFetcher = new StopsFetcherLDFetch(ldFetch); stopsFetcher.setAccessUrl("https://irail.be/stations/NMBS"); - const locationResolver = new LocationResolverDefault(stopsFetcher); + const locationResolver = new LocationResolverDefault(stopsFetcher, new RoutableTileRegistry()); const reachableStopsFinder = new ReachableStopsFinderBirdsEyeCached(stopsFetcher); const journeyExtractor = new JourneyExtractorProfile( locationResolver, @@ -183,7 +184,7 @@ describe("[PublicTransportPlannerCSAProfile]", () => { const stopsFetcher = new StopsFetcherLDFetch(ldFetch); stopsFetcher.setAccessUrl("https://irail.be/stations/NMBS"); - const locationResolver = new LocationResolverDefault(stopsFetcher); + const locationResolver = new LocationResolverDefault(stopsFetcher, new RoutableTileRegistry()); const reachableStopsFinder = new ReachableStopsFinderBirdsEyeCached(stopsFetcher); const journeyExtractor = new JourneyExtractorProfile( locationResolver, diff --git a/src/planner/road/RoadPlannerBirdsEye.test.ts b/src/planner/road/RoadPlannerBirdsEye.test.ts index b15577ca..038a2a95 100644 --- a/src/planner/road/RoadPlannerBirdsEye.test.ts +++ b/src/planner/road/RoadPlannerBirdsEye.test.ts @@ -1,5 +1,6 @@ import "jest"; import LDFetch from "ldfetch"; +import RoutableTileRegistry from "../../entities/tiles/registry"; import StopsFetcherLDFetch from "../../fetcher/stops/ld-fetch/StopsFetcherLDFetch"; import IPath from "../../interfaces/IPath"; import LocationResolverDefault from "../../query-runner/LocationResolverDefault"; @@ -13,7 +14,7 @@ const planner: IRoadPlanner = new RoadPlannerBirdsEye(); const stopsFetcher = new StopsFetcherLDFetch(ldFetch); stopsFetcher.setAccessUrl("https://irail.be/stations/NMBS"); -const locationResolver = new LocationResolverDefault(stopsFetcher); +const locationResolver = new LocationResolverDefault(stopsFetcher, new RoutableTileRegistry()); test("[RoadPlannerBirdsEye] distance between stops", async () => { diff --git a/src/planner/road/RoadPlannerPathfinding.ts b/src/planner/road/RoadPlannerPathfinding.ts index 5b191daa..e9754f00 100644 --- a/src/planner/road/RoadPlannerPathfinding.ts +++ b/src/planner/road/RoadPlannerPathfinding.ts @@ -7,9 +7,9 @@ import IProfileProvider from "../../fetcher/profiles/IProfileProvider"; import IRoutableTileProvider from "../../fetcher/tiles/IRoutableTileProvider"; import ILocation from "../../interfaces/ILocation"; import IPath from "../../interfaces/IPath"; -import IProbabilisticValue from "../../interfaces/IProbabilisticValue"; -import { DurationMs, SpeedKmH } from "../../interfaces/units"; +import IStep from "../../interfaces/IStep"; import PathfinderProvider from "../../pathfinding/PathfinderProvider"; +import ILocationResolver from "../../query-runner/ILocationResolver"; import IResolvedQuery from "../../query-runner/IResolvedQuery"; import TYPES from "../../types"; import Geo from "../../util/Geo"; @@ -21,15 +21,18 @@ export default class RoadPlannerPathfinding implements IRoadPlanner { private tileProvider: IRoutableTileProvider; private pathfinderProvider: PathfinderProvider; private profileProvider: IProfileProvider; + private locationResolver: ILocationResolver; constructor( @inject(TYPES.RoutableTileProvider) tileProvider: IRoutableTileProvider, @inject(TYPES.PathfinderProvider) pathfinderProvider: PathfinderProvider, @inject(TYPES.ProfileProvider) profileProvider: IProfileProvider, + @inject(TYPES.LocationResolver) locationResolver: ILocationResolver, ) { this.tileProvider = tileProvider; this.pathfinderProvider = pathfinderProvider; this.profileProvider = profileProvider; + this.locationResolver = locationResolver; } public async plan(query: IResolvedQuery): Promise> { @@ -109,23 +112,26 @@ export default class RoadPlannerPathfinding implements IRoadPlanner { return this._innerPath(from, to); } - private _innerPath( + private async _innerPath( start: ILocation, stop: ILocation, - ): IPath { + ): Promise { const pathfinder = this.pathfinderProvider.getShortestPathAlgorithm(); - const summary = pathfinder.queryPathSummary(Geo.getId(start), Geo.getId(stop)); - - const duration: IProbabilisticValue = { - average: summary.duration, - }; + const summary = pathfinder.queryPath(Geo.getId(start), Geo.getId(stop)); + + const steps: IStep[] = []; + for (const step of summary) { + const to = await this.locationResolver.resolve(step.to); + const from = await this.locationResolver.resolve(step.from); + steps.push({ + startLocation: from, + stopLocation: to, + duration: { average: step.duration }, + distance: step.distance, + travelMode: TravelMode.Profile, + }); + } - return new Path([{ - startLocation: start, - stopLocation: stop, - distance: summary.distance, - duration, - travelMode: TravelMode.Walking, - }]); + return new Path(steps); } } diff --git a/src/query-runner/LocationResolverConvenience.test.ts b/src/query-runner/LocationResolverConvenience.test.ts index 3da63c76..041d9f41 100644 --- a/src/query-runner/LocationResolverConvenience.test.ts +++ b/src/query-runner/LocationResolverConvenience.test.ts @@ -1,14 +1,16 @@ import "jest"; import LDFetch from "ldfetch"; +import RoutableTileRegistry from "../entities/tiles/registry"; import StopsFetcherLDFetch from "../fetcher/stops/ld-fetch/StopsFetcherLDFetch"; import LocationResolverConvenience from "./LocationResolverConvenience"; const ldFetch = new LDFetch({ headers: { Accept: "application/ld+json" } }); const stopsFetcher = new StopsFetcherLDFetch(ldFetch); +const tileRegistry = new RoutableTileRegistry(); stopsFetcher.setAccessUrl("https://irail.be/stations/NMBS"); -const locationResolver = new LocationResolverConvenience(stopsFetcher); +const locationResolver = new LocationResolverConvenience(stopsFetcher, tileRegistry); describe("[LocationResolverConvenience]", () => { diff --git a/src/query-runner/LocationResolverConvenience.ts b/src/query-runner/LocationResolverConvenience.ts index f962119a..1bc0cf93 100644 --- a/src/query-runner/LocationResolverConvenience.ts +++ b/src/query-runner/LocationResolverConvenience.ts @@ -1,4 +1,5 @@ import { inject, injectable } from "inversify"; +import RoutableTileRegistry from "../entities/tiles/registry"; import LocationResolverError from "../errors/LocationResolverError"; import IStop from "../fetcher/stops/IStop"; import IStopsProvider from "../fetcher/stops/IStopsProvider"; @@ -20,9 +21,10 @@ export default class LocationResolverConvenience implements ILocationResolver { constructor( @inject(TYPES.StopsProvider) stopsProvider: IStopsProvider, + @inject(TYPES.RoutableTileRegistry) tileRegistry: RoutableTileRegistry, ) { this.stopsProvider = stopsProvider; - this.defaultLocationResolver = new LocationResolverDefault(this.stopsProvider); + this.defaultLocationResolver = new LocationResolverDefault(this.stopsProvider, tileRegistry); } public async resolve(input: ILocation | IStop | string): Promise { diff --git a/src/query-runner/LocationResolverDefault.test.ts b/src/query-runner/LocationResolverDefault.test.ts index 1ec1a03d..bf7dd9a6 100644 --- a/src/query-runner/LocationResolverDefault.test.ts +++ b/src/query-runner/LocationResolverDefault.test.ts @@ -1,5 +1,6 @@ import "jest"; import LDFetch from "ldfetch"; +import RoutableTileRegistry from "../entities/tiles/registry"; import StopsFetcherLDFetch from "../fetcher/stops/ld-fetch/StopsFetcherLDFetch"; import LocationResolverDefault from "./LocationResolverDefault"; @@ -8,7 +9,7 @@ const ldFetch = new LDFetch({ headers: { Accept: "application/ld+json" } }); const stopsFetcher = new StopsFetcherLDFetch(ldFetch); stopsFetcher.setAccessUrl("https://irail.be/stations/NMBS"); -const locationResolver = new LocationResolverDefault(stopsFetcher); +const locationResolver = new LocationResolverDefault(stopsFetcher, new RoutableTileRegistry()); test("[LocationResolverDefault] Input {id: 'http://...'}", async () => { diff --git a/src/query-runner/LocationResolverDefault.ts b/src/query-runner/LocationResolverDefault.ts index 88513161..86a31b00 100644 --- a/src/query-runner/LocationResolverDefault.ts +++ b/src/query-runner/LocationResolverDefault.ts @@ -1,4 +1,5 @@ import { inject, injectable } from "inversify"; +import RoutableTileRegistry from "../entities/tiles/registry"; import LocationResolverError from "../errors/LocationResolverError"; import IStop from "../fetcher/stops/IStop"; import IStopsProvider from "../fetcher/stops/IStopsProvider"; @@ -16,11 +17,14 @@ import ILocationResolver from "./ILocationResolver"; @injectable() export default class LocationResolverDefault implements ILocationResolver { private readonly stopsProvider: IStopsProvider; + private readonly tileRegistry: RoutableTileRegistry; constructor( @inject(TYPES.StopsProvider) stopsProvider: IStopsProvider, + @inject(TYPES.RoutableTileRegistry) tileRegistry: RoutableTileRegistry, ) { this.stopsProvider = stopsProvider; + this.tileRegistry = tileRegistry; } public async resolve(input: ILocation | IStop | string): Promise { @@ -65,6 +69,11 @@ export default class LocationResolverDefault implements ILocationResolver { }; } + const node = this.tileRegistry.getNode(id); + if (node) { + return node; + } + return Promise.reject(new LocationResolverError(`No fetcher for id ${id}`)); } diff --git a/src/query-runner/earliest-arrival-first/QueryRunnerEarliestArrivalFirst.test.ts b/src/query-runner/earliest-arrival-first/QueryRunnerEarliestArrivalFirst.test.ts index abc73ecf..daf2d294 100644 --- a/src/query-runner/earliest-arrival-first/QueryRunnerEarliestArrivalFirst.test.ts +++ b/src/query-runner/earliest-arrival-first/QueryRunnerEarliestArrivalFirst.test.ts @@ -1,6 +1,7 @@ import "jest"; import LDFetch from "ldfetch"; import Context from "../../Context"; +import RoutableTileRegistry from "../../entities/tiles/registry"; import TravelMode from "../../enums/TravelMode"; import ConnectionsFetcherLazy from "../../fetcher/connections/lazy/ConnectionsFetcherLazy"; import StopsFetcherLDFetch from "../../fetcher/stops/ld-fetch/StopsFetcherLDFetch"; @@ -12,6 +13,7 @@ import ReachableStopsFinderBirdsEyeCached from "../../planner/stops/ReachableSto import Units from "../../util/Units"; import LocationResolverDefault from "../LocationResolverDefault"; import QueryRunnerEarliestArrivalFirst from "./QueryRunnerEarliestArrivalFirst"; + describe("[QueryRunnerExponential]", () => { jest.setTimeout(100000); @@ -35,7 +37,7 @@ describe("[QueryRunnerExponential]", () => { const stopsFetcher = new StopsFetcherLDFetch(ldFetch); stopsFetcher.setAccessUrl("https://irail.be/stations/NMBS"); - const locationResolver = new LocationResolverDefault(stopsFetcher); + const locationResolver = new LocationResolverDefault(stopsFetcher, new RoutableTileRegistry()); const reachableStopsFinder = new ReachableStopsFinderBirdsEyeCached(stopsFetcher); const context = new Context(); diff --git a/src/query-runner/exponential/QueryRunnerExponential.test.ts b/src/query-runner/exponential/QueryRunnerExponential.test.ts index bff78885..ecf3042b 100644 --- a/src/query-runner/exponential/QueryRunnerExponential.test.ts +++ b/src/query-runner/exponential/QueryRunnerExponential.test.ts @@ -1,6 +1,7 @@ import "jest"; import LDFetch from "ldfetch"; import Context from "../../Context"; +import RoutableTileRegistry from "../../entities/tiles/registry"; import TravelMode from "../../enums/TravelMode"; import ConnectionsFetcherLazy from "../../fetcher/connections/lazy/ConnectionsFetcherLazy"; import StopsFetcherLDFetch from "../../fetcher/stops/ld-fetch/StopsFetcherLDFetch"; @@ -36,7 +37,7 @@ describe("[QueryRunnerExponential]", () => { const stopsFetcher = new StopsFetcherLDFetch(ldFetch); stopsFetcher.setAccessUrl("https://irail.be/stations/NMBS"); - const locationResolver = new LocationResolverDefault(stopsFetcher); + const locationResolver = new LocationResolverDefault(stopsFetcher, new RoutableTileRegistry()); const reachableStopsFinder = new ReachableStopsFinderBirdsEyeCached(stopsFetcher); const context = new Context(); From 740f999ab28e1ba530036c8f8594edaa3ad7be9d Mon Sep 17 00:00:00 2001 From: Harm Delva Date: Fri, 12 Jul 2019 18:33:42 +0200 Subject: [PATCH 15/85] Make the profiles way faster --- src/entities/profile/CharacteresticProfile.ts | 108 ++++++++++++++++++ src/entities/profile/DynamicProfile.ts | 13 ++- src/fetcher/profiles/ProfileFetcherDefault.ts | 4 +- 3 files changed, 118 insertions(+), 7 deletions(-) create mode 100644 src/entities/profile/CharacteresticProfile.ts diff --git a/src/entities/profile/CharacteresticProfile.ts b/src/entities/profile/CharacteresticProfile.ts new file mode 100644 index 00000000..3fbbe0f6 --- /dev/null +++ b/src/entities/profile/CharacteresticProfile.ts @@ -0,0 +1,108 @@ +import getOsmTagMapping from "../../enums/OSMTags"; +import { RoutableTileNode } from "../tiles/node"; +import { RoutableTileWay } from "../tiles/way"; +import DynamicProfile from "./DynamicProfile"; + +export default class CharacteristicProfile extends DynamicProfile { + public static create(url: string): CharacteristicProfile { + return new CharacteristicProfile(url); + } + + private accessCache: object; + private onewayCache: object; + private speedCache: object; + private priorityCache: object; + + constructor(url: string) { + super(url); + this.accessCache = {}; + this.onewayCache = {}; + this.speedCache = {}; + this.priorityCache = {}; + this.id = url; + } + + public getID(): string { + return this.id; + } + + public isOneWay(way: RoutableTileWay): boolean { + const characteristic = this.getWayCharacteristic(way); + if (this.onewayCache[characteristic] !== undefined) { + return this.onewayCache[characteristic]; + } + + const result = super.isOneWay(way); + this.onewayCache[characteristic] = result; + return result; + } + + public hasAccess(way: RoutableTileWay): boolean { + const characteristic = this.getWayCharacteristic(way); + if (this.accessCache[characteristic] !== undefined) { + return this.accessCache[characteristic]; + } + + const result = super.hasAccess(way); + this.accessCache[characteristic] = result; + return result; + } + + public getSpeed(way: RoutableTileWay): number { + const characteristic = this.getWayCharacteristic(way); + if (this.speedCache[characteristic] !== undefined) { + return this.speedCache[characteristic]; + } + + const result = super.getSpeed(way); + this.speedCache[characteristic] = result; + return result; + } + + public getMultiplier(way: RoutableTileWay): number { + const characteristic = this.getWayCharacteristic(way); + if (this.priorityCache[characteristic] !== undefined) { + return this.priorityCache[characteristic]; + } + + const result = super.getMultiplier(way); + this.priorityCache[characteristic] = result; + return result; + } + + public isObstacle(node: RoutableTileNode): boolean { + for (const rule of this.accessRules) { + if (rule.conclusion.isObstacle !== undefined) { + // should always be the case, but just in case + if (rule.condition !== undefined) { + const field = getOsmTagMapping()[rule.condition.predicate]; + if (node[field] === rule.condition.object) { + return rule.conclusion.isObstacle; + } + } else { + return rule.conclusion.isObstacle; + } + } + } + } + + private getWayCharacteristic(way: RoutableTileWay) { + return way.reachable + + way.accessRestrictions + + way.bicycleAccessRestrictions + + way.constructionKind + + way.crossingKind + + way.cyclewayKind + + way.footwayKind + + way.highwayKind + + way.maxSpeed + + way.motorVehicleAccessRestrictions + + way.motorcarAccessRestrictions + + way.onewayBicycleKind + + way.onewayKind + + way.smoothnessKind + + way.surfaceKind + + way.trackType + + way.vehicleAccessRestrictions; + } +} diff --git a/src/entities/profile/DynamicProfile.ts b/src/entities/profile/DynamicProfile.ts index 4a90e8de..af0b1ae2 100644 --- a/src/entities/profile/DynamicProfile.ts +++ b/src/entities/profile/DynamicProfile.ts @@ -24,9 +24,12 @@ export default class DynamicProfile extends Profile { public maxSpeed: number; public usePublicTransport: boolean; + private mapping; + constructor(url: string) { super(); this.id = url; + this.mapping = getOsmTagMapping(); } public getID(): string { @@ -39,7 +42,7 @@ export default class DynamicProfile extends Profile { if (rule.conclusion.isOneway !== undefined) { // should always be the case, but just in case if (rule.condition !== undefined) { - const field = getOsmTagMapping()[rule.condition.predicate]; + const field = this.mapping[rule.condition.predicate]; if (way[field] === rule.condition.object) { return rule.conclusion.isOneway; } @@ -55,7 +58,7 @@ export default class DynamicProfile extends Profile { if (rule.conclusion.hasAccess !== undefined) { // should always be the case, but just in case if (rule.condition !== undefined) { - const field = getOsmTagMapping()[rule.condition.predicate]; + const field = this.mapping[rule.condition.predicate]; if (way[field] === rule.condition.object) { return rule.conclusion.hasAccess; } @@ -79,7 +82,7 @@ export default class DynamicProfile extends Profile { if (rule.conclusion.speed !== undefined) { // should always be the case, but just in case if (rule.condition !== undefined) { - const field = getOsmTagMapping()[rule.condition.predicate]; + const field = this.mapping[rule.condition.predicate]; if (way[field] === rule.condition.object) { if (typeof (rule.conclusion.speed) === "number") { return rule.conclusion.speed; @@ -130,7 +133,7 @@ export default class DynamicProfile extends Profile { if (rule.conclusion.priority !== undefined) { // should always be the case, but just in case if (rule.condition !== undefined) { - const field = getOsmTagMapping()[rule.condition.predicate]; + const field = this.mapping[rule.condition.predicate]; if (way[field] === rule.condition.object) { return 1 - (rule.conclusion.priority - 1); } @@ -150,7 +153,7 @@ export default class DynamicProfile extends Profile { if (rule.conclusion.isObstacle !== undefined) { // should always be the case, but just in case if (rule.condition !== undefined) { - const field = getOsmTagMapping()[rule.condition.predicate]; + const field = this.mapping[rule.condition.predicate]; if (node[field] === rule.condition.object) { return rule.conclusion.isObstacle; } diff --git a/src/fetcher/profiles/ProfileFetcherDefault.ts b/src/fetcher/profiles/ProfileFetcherDefault.ts index 6a0de0a6..ed1365a9 100644 --- a/src/fetcher/profiles/ProfileFetcherDefault.ts +++ b/src/fetcher/profiles/ProfileFetcherDefault.ts @@ -1,7 +1,7 @@ import { inject, injectable } from "inversify"; import jsonld = require("jsonld"); import LDFetch from "ldfetch"; -import DynamicProfile from "../../entities/profile/DynamicProfile"; +import CharacteristicProfile from "../../entities/profile/CharacteresticProfile"; import Profile from "../../entities/profile/Profile"; import ProfileConclusion from "../../entities/profile/ProfileConclusion"; import ProfileCondition from "../../entities/profile/ProfileCondition"; @@ -59,7 +59,7 @@ export default class ProfileFetcherDefault implements IProfileFetcher { } protected getView() { - const view = new ThingView(DynamicProfile.create); + const view = new ThingView(CharacteristicProfile.create); view.addFilter((entity) => entity[URI.inNS(PROFILE, "hasAccessRules")] !== undefined || entity[URI.inNS(PROFILE, "hasOnewayRules")] !== undefined || From 29e5db54c43a7935949e8980b9399a0f6c8cbb5e Mon Sep 17 00:00:00 2001 From: harm Date: Tue, 16 Jul 2019 14:36:28 +0200 Subject: [PATCH 16/85] Ditch JSON-LD -- gotta go fast --- src/fetcher/tiles/RoutableTileFetcherRaw.ts | 103 ++++++++++++++++++++ src/inversify.config.ts | 3 +- src/uri/uri.ts | 5 + 3 files changed, 110 insertions(+), 1 deletion(-) create mode 100644 src/fetcher/tiles/RoutableTileFetcherRaw.ts diff --git a/src/fetcher/tiles/RoutableTileFetcherRaw.ts b/src/fetcher/tiles/RoutableTileFetcherRaw.ts new file mode 100644 index 00000000..b2ce98c8 --- /dev/null +++ b/src/fetcher/tiles/RoutableTileFetcherRaw.ts @@ -0,0 +1,103 @@ +import { inject, injectable } from "inversify"; +import { IRoutableTileNodeIndex, RoutableTileNode } from "../../entities/tiles/node"; +import RoutableTileRegistry from "../../entities/tiles/registry"; +import { RoutableTile } from "../../entities/tiles/tile"; +import { IRoutableTileWayIndex, RoutableTileWay } from "../../entities/tiles/way"; +import PathfinderProvider from "../../pathfinding/PathfinderProvider"; +import TYPES from "../../types"; +import { OSM } from "../../uri/constants"; +import URI from "../../uri/uri"; +import IRoutableTileFetcher from "./IRoutableTileFetcher"; + +@injectable() +export default class RoutableTileFetcherRaw implements IRoutableTileFetcher { + + protected mapping: object; + protected pathfinderProvider: PathfinderProvider; + protected routableTileRegistry: RoutableTileRegistry; + + constructor( + @inject(TYPES.PathfinderProvider) pathfinderProvider: PathfinderProvider, + @inject(TYPES.RoutableTileRegistry) routableTileRegistry: RoutableTileRegistry, + ) { + this.pathfinderProvider = pathfinderProvider; + this.routableTileRegistry = routableTileRegistry; + this.mapping = {}; + + this.mapping["osm:access"] = "accessRestrictions"; + this.mapping["osm:bicycle"] = "bicycleAccessRestrictions"; + this.mapping["osm:construction"] = "constructionKind"; + this.mapping["osm:crossing"] = "crossingKind"; + this.mapping["osm:cycleway"] = "cyclewayKind"; + this.mapping["osm:footway"] = "footwayKind"; + this.mapping["osm:highway"] = "highwayKind"; + this.mapping["osm:maxspeed"] = "maxSpeed"; + this.mapping["osm:motor_vehicle"] = "motorVehicleAccessRestrictions"; + this.mapping["osm:motorcar"] = "motorcarAccessRestrictions"; + this.mapping["osm:oneway_bicycle"] = "onewayBicycleKind"; + this.mapping["osm:oneway"] = "onewayKind"; + this.mapping["osm:smoothness"] = "smoothnessKind"; + this.mapping["osm:surface"] = "surfaceKind"; + this.mapping["osm:tracktype"] = "trackType"; + this.mapping["osm:vehicle"] = "vehicleAccessRestrictions"; + } + + public async get(url: string): Promise { + const response = await fetch(url); + const responseText = await response.text(); + const blob = JSON.parse(responseText); + + const nodes: IRoutableTileNodeIndex = {}; + const ways: IRoutableTileWayIndex = {}; + + for (const entity of blob["@graph"]) { + if (entity["@type"] === "osm:Node") { + const node = this.createNode(entity); + nodes[node.id] = node; + } else if (entity["@type"] === "osm:Way") { + const way = this.createWay(entity); + ways[way.id] = way; + } + } + + return this.processTileData(url, nodes, ways); + } + + protected processTileData(url: string, nodes: IRoutableTileNodeIndex, ways: IRoutableTileWayIndex) { + this.pathfinderProvider.registerEdges(ways, nodes); + + for (const node of Object.values(nodes)) { + this.routableTileRegistry.registerNode(node); + } + + for (const way of Object.values(ways)) { + this.routableTileRegistry.registerWay(way); + } + + return new RoutableTile(url, new Set(Object.keys(nodes)), new Set(Object.keys(ways))); + } + + private createNode(blob): RoutableTileNode { + const id = blob["@id"]; + const node = new RoutableTileNode(id); + node.latitude = parseFloat(blob["geo:lat"]); + node.longitude = parseFloat(blob["geo:long"]); + return node; + } + + private createWay(blob): RoutableTileWay { + const id = blob["@id"]; + const way = new RoutableTileWay(id); + way.maxSpeed = parseFloat(blob["osm:maxspeed"]); + way.segments = [blob["osm:hasNodes"]]; + way.name = blob["osm:name"]; + + for (const [tag, field] of Object.entries(this.mapping)) { + if (blob[tag] && !way[field]) { + way[field] = URI.fakeExpand(OSM, blob[tag]); + } + } + + return way; + } +} diff --git a/src/inversify.config.ts b/src/inversify.config.ts index 00c46172..58342947 100644 --- a/src/inversify.config.ts +++ b/src/inversify.config.ts @@ -28,6 +28,7 @@ import IRoutableTileFetcher from "./fetcher/tiles/IRoutableTileFetcher"; import IRoutableTileProvider from "./fetcher/tiles/IRoutableTileProvider"; import RoutableTileFetcherDefault from "./fetcher/tiles/RoutableTileFetcherDefault"; import RoutableTileFetcherExtended from "./fetcher/tiles/RoutableTileFetcherExtended"; +import RoutableTileFetcherRaw from "./fetcher/tiles/RoutableTileFetcherRaw"; import RoutableTileProviderDefault from "./fetcher/tiles/RoutableTileProviderDefault"; import { LDLoader } from "./loader/ldloader"; import DijkstraTree from "./pathfinding/dijkstra-tree/dijkstra-tree-js"; @@ -111,7 +112,7 @@ container.bind>(TYPES.StopsFetcherFactory) }, ); -container.bind(TYPES.RoutableTileFetcher).to(RoutableTileFetcherDefault); +container.bind(TYPES.RoutableTileFetcher).to(RoutableTileFetcherRaw); container.bind(TYPES.RoutableTileProvider) .to(RoutableTileProviderDefault).inSingletonScope(); container.bind(TYPES.RoutableTileRegistry).to(RoutableTileRegistry).inSingletonScope(); diff --git a/src/uri/uri.ts b/src/uri/uri.ts index d4f41a8e..0aa375f7 100644 --- a/src/uri/uri.ts +++ b/src/uri/uri.ts @@ -11,4 +11,9 @@ export default class URI { return `${ns}#${id}`; } } + + public static fakeExpand(ns: string, id: string): string { + // discards the prefix and places it the specified NS + return this.inNS(ns, id.substring(4)); + } } From efc56a425663e83c1c675f1d48f3c74266ac11bd Mon Sep 17 00:00:00 2001 From: Harm Delva Date: Tue, 16 Jul 2019 16:12:47 +0200 Subject: [PATCH 17/85] Fix profile swapping --- src/analytics/isochrones/demo.html | 13 +++++-------- src/analytics/isochrones/main.ts | 14 ++++++++------ src/fetcher/profiles/IProfileProvider.ts | 2 +- src/fetcher/profiles/ProfileProviderDefault.ts | 12 +++++------- src/index.ts | 15 +++++++++++++++ src/pathfinding/PathfinderProvider.ts | 8 ++++---- src/planner/road/RoadPlannerPathfinding.ts | 2 +- 7 files changed, 39 insertions(+), 27 deletions(-) diff --git a/src/analytics/isochrones/demo.html b/src/analytics/isochrones/demo.html index 36409a62..bf33a9e9 100644 --- a/src/analytics/isochrones/demo.html +++ b/src/analytics/isochrones/demo.html @@ -78,13 +78,8 @@ let first = true; async function drawIsochrone(distance, color) { - let data; - if (first) { - data = await generator.getIsochrone(distance, true); - first = false; - } else { - data = await generator.getIsochrone(distance, false); - } + const data = await generator.getIsochrone(distance, first); + first = false; const isochrones = data.isochrones; if (intermediate) { @@ -197,11 +192,13 @@ } async function setProfile() { + newMap(); const profileId = document.getElementById("profile").value; generator.setProfileID(profileId); + first = true; } - newMap(); + //newMap(); setProfile(); addIsochrone(); diff --git a/src/analytics/isochrones/main.ts b/src/analytics/isochrones/main.ts index 4f99c4b3..c54e6184 100644 --- a/src/analytics/isochrones/main.ts +++ b/src/analytics/isochrones/main.ts @@ -120,7 +120,7 @@ export default class IsochroneGenerator implements EventEmitter { public async getIsochrone(maxDuration: number, reset = true) { await this.loaded; - const pathfinder = this.pathfinderProvider.getShortestPathTreeAlgorithm(); + const pathfinder = await this.pathfinderProvider.getShortestPathTreeAlgorithm(); // wait for all data to arrive await this.tileProvider.wait(); @@ -142,7 +142,7 @@ export default class IsochroneGenerator implements EventEmitter { this.emit("TILE", coordinate); this.reachedTiles.add(tileId); - const pathfinder = this.pathfinderProvider.getShortestPathTreeAlgorithm(); + const pathfinder = await this.pathfinderProvider.getShortestPathTreeAlgorithm(); const tile = await this.tileProvider.getByTileCoords(coordinate); const boundaryNodes: Set = new Set(); @@ -157,11 +157,13 @@ export default class IsochroneGenerator implements EventEmitter { if (Math.random() * this.reachedPoints.length < 100) { pathfinder.setBreakPoint(nodeId, async (on: string) => { const innerNode = self.registry.getNode(on); - this.reachedPoints.push(innerNode); - const internalNodes = this.reachedPoints - .map((n) => [n.longitude, n.latitude]); + if (innerNode) { + this.reachedPoints.push(innerNode); + const internalNodes = this.reachedPoints + .map((n) => [n.longitude, n.latitude]); - self.emit("INTERMEDIATE", concaveman(internalNodes, Infinity).map((e) => [e[1], e[0]])); + self.emit("INTERMEDIATE", concaveman(internalNodes, Infinity).map((e) => [e[1], e[0]])); + } }); } } diff --git a/src/fetcher/profiles/IProfileProvider.ts b/src/fetcher/profiles/IProfileProvider.ts index 82a5877f..b41ed911 100644 --- a/src/fetcher/profiles/IProfileProvider.ts +++ b/src/fetcher/profiles/IProfileProvider.ts @@ -7,7 +7,7 @@ export default interface IProfileProvider { setDevelopmentProfile(blob: object): Promise; addProfile(profile: Profile): void; - getActiveProfile(): Profile; + getActiveProfile(): Promise; getProfile(profileId: string): Promise; getProfiles(): Promise; } diff --git a/src/fetcher/profiles/ProfileProviderDefault.ts b/src/fetcher/profiles/ProfileProviderDefault.ts index 610a3823..1f289b90 100644 --- a/src/fetcher/profiles/ProfileProviderDefault.ts +++ b/src/fetcher/profiles/ProfileProviderDefault.ts @@ -16,7 +16,7 @@ export default class ProfileProviderDefault implements IProfileProvider { // e.g. bicycle near a specific station private profiles: IProfileMap; - private activeProfile: Profile; + private activeProfile: Promise; private fetcher: IProfileFetcher; private developmentProfile: Profile; // does not have a persistent id, will change often @@ -40,16 +40,14 @@ export default class ProfileProviderDefault implements IProfileProvider { if (!this.profiles[profile.getID()]) { this.addProfile(profile); } - this.activeProfile = profile; + this.activeProfile = Promise.resolve(profile); } public async setActiveProfileID(profileId: string) { - await this.getProfile(profileId).then((profile) => { - this.activeProfile = profile; - }); + this.activeProfile = this.getProfile(profileId); } - public getActiveProfile(): Profile { + public getActiveProfile(): Promise { return this.activeProfile; } @@ -61,7 +59,7 @@ export default class ProfileProviderDefault implements IProfileProvider { } this.developmentProfile = newProfile; this.profiles[this.developmentProfile.getID()] = Promise.resolve(newProfile); - this.activeProfile = newProfile; + this.activeProfile = Promise.resolve(newProfile); return newProfile.getID(); } diff --git a/src/index.ts b/src/index.ts index c532234e..ee9f1d4d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -4,6 +4,21 @@ import "reflect-metadata"; import IsochroneGenerator from "./analytics/isochrones/main"; import Planner from "./Planner"; +/* +async function dostuff() { + const x = new IsochroneGenerator({ latitude: 51.03863, longitude: 3.72634 }); + x.setProfileID("PEDESTRIAN"); + let a = await x.getIsochrone(50000, true); + a = await x.getIsochrone(150000, false); + x.setProfileID("http://hdelva.be/profile/car"); + a = await x.getIsochrone(150000, true); +} + +dostuff().then(() => { + let a = 9; +}) +*/ + export default { Planner, IsochroneGenerator, diff --git a/src/pathfinding/PathfinderProvider.ts b/src/pathfinding/PathfinderProvider.ts index 67d409be..50da0989 100644 --- a/src/pathfinding/PathfinderProvider.ts +++ b/src/pathfinding/PathfinderProvider.ts @@ -45,15 +45,15 @@ export default class PathfinderProvider { this.graphs = {}; } - public getShortestPathAlgorithm(): IShortestPathAlgorithm { - const profile = this.profileProvider.getActiveProfile(); + public async getShortestPathAlgorithm(): Promise { + const profile = await this.profileProvider.getActiveProfile(); const graph = this.getGraphForProfile(profile); this.shortestPath.setGraph(graph); return this.shortestPath; } - public getShortestPathTreeAlgorithm(): IShortestPathTreeAlgorithm { - const profile = this.profileProvider.getActiveProfile(); + public async getShortestPathTreeAlgorithm(): Promise { + const profile = await this.profileProvider.getActiveProfile(); const graph = this.getGraphForProfile(profile); this.shortestPathTree.setGraph(graph); return this.shortestPathTree; diff --git a/src/planner/road/RoadPlannerPathfinding.ts b/src/planner/road/RoadPlannerPathfinding.ts index e9754f00..61d553ce 100644 --- a/src/planner/road/RoadPlannerPathfinding.ts +++ b/src/planner/road/RoadPlannerPathfinding.ts @@ -116,7 +116,7 @@ export default class RoadPlannerPathfinding implements IRoadPlanner { start: ILocation, stop: ILocation, ): Promise { - const pathfinder = this.pathfinderProvider.getShortestPathAlgorithm(); + const pathfinder = await this.pathfinderProvider.getShortestPathAlgorithm(); const summary = pathfinder.queryPath(Geo.getId(start), Geo.getId(stop)); const steps: IStep[] = []; From 9f91e4dfd75eddb3161aea61c1e07eecdad0f983 Mon Sep 17 00:00:00 2001 From: Harm Delva Date: Tue, 16 Jul 2019 16:14:33 +0200 Subject: [PATCH 18/85] Remove test code --- src/index.ts | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/index.ts b/src/index.ts index ee9f1d4d..c532234e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -4,21 +4,6 @@ import "reflect-metadata"; import IsochroneGenerator from "./analytics/isochrones/main"; import Planner from "./Planner"; -/* -async function dostuff() { - const x = new IsochroneGenerator({ latitude: 51.03863, longitude: 3.72634 }); - x.setProfileID("PEDESTRIAN"); - let a = await x.getIsochrone(50000, true); - a = await x.getIsochrone(150000, false); - x.setProfileID("http://hdelva.be/profile/car"); - a = await x.getIsochrone(150000, true); -} - -dostuff().then(() => { - let a = 9; -}) -*/ - export default { Planner, IsochroneGenerator, From 06ee03b84bfcb7cb9ce0804adca82cd0bb00ab49 Mon Sep 17 00:00:00 2001 From: Harm Delva Date: Wed, 17 Jul 2019 12:15:31 +0200 Subject: [PATCH 19/85] Fix isochrone generation crashing on empty path trees + Add debug logging --- src/analytics/isochrones/main.ts | 27 ++++++++++++++++++++++++++- src/analytics/isochrones/visualize.ts | 27 +++++++++++++++++++-------- 2 files changed, 45 insertions(+), 9 deletions(-) diff --git a/src/analytics/isochrones/main.ts b/src/analytics/isochrones/main.ts index c54e6184..fdfb5152 100644 --- a/src/analytics/isochrones/main.ts +++ b/src/analytics/isochrones/main.ts @@ -13,6 +13,7 @@ import ILocation from "../../interfaces/ILocation"; import defaultContainer from "../../inversify.config"; import { IPathTree } from "../../pathfinding/pathfinder"; import PathfinderProvider from "../../pathfinding/PathfinderProvider"; +import ILocationResolver from "../../query-runner/ILocationResolver"; import TYPES from "../../types"; import Geo from "../../util/Geo"; import { toTileCoordinate } from "./util"; @@ -28,9 +29,11 @@ export default class IsochroneGenerator implements EventEmitter { private startPoint: ILocation; private registry: RoutableTileRegistry; private profileProvider: ProfileProvider; + private locationResolver: ILocationResolver; private loaded: Promise; private showIncremental: boolean; + private showDebugLogs: boolean; private reachedPoints: ILocation[]; constructor(point: ILocation, container = defaultContainer) { @@ -40,10 +43,12 @@ export default class IsochroneGenerator implements EventEmitter { this.pathfinderProvider = container.get(TYPES.PathfinderProvider); this.registry = container.get(TYPES.RoutableTileRegistry); this.profileProvider = container.get(TYPES.ProfileProvider); + this.locationResolver = container.get(TYPES.LocationResolver); this.reachedTiles = new Set(); this.startPoint = point; this.reachedPoints = [this.startPoint]; this.showIncremental = false; + this.showDebugLogs = false; this.setProfileID("http://hdelva.be/profile/car"); } @@ -52,6 +57,10 @@ export default class IsochroneGenerator implements EventEmitter { this.showIncremental = true; } + public enableDebugLogs() { + this.showDebugLogs = true; + } + public addListener(type: string | symbol, listener: Listener): this { this.context.addListener(type, listener); @@ -118,8 +127,19 @@ export default class IsochroneGenerator implements EventEmitter { } public async getIsochrone(maxDuration: number, reset = true) { + console.time("execution time"); + if (this.showDebugLogs) { + console.log(`Generating the ${maxDuration / 1000}s isochrone ` + + `from ${this.startPoint.latitude}, ${this.startPoint.longitude}`); + } + await this.loaded; + if (this.showDebugLogs) { + const profile = await this.profileProvider.getActiveProfile(); + console.log(`Using the ${profile.getID()} profile`); + } + const pathfinder = await this.pathfinderProvider.getShortestPathTreeAlgorithm(); // wait for all data to arrive @@ -133,7 +153,12 @@ export default class IsochroneGenerator implements EventEmitter { pathTree = await pathfinder.continue(maxDuration); } - return visualizeConcaveIsochrone(this.registry, pathTree, maxDuration); + if (this.showDebugLogs) { + console.log(`Path tree computed using ${this.reachedTiles.size} tiles.`); + console.timeEnd("execution time"); + } + + return await visualizeConcaveIsochrone(this.locationResolver, pathTree, maxDuration); } private async fetchTile(coordinate: RoutableTileCoordinate) { diff --git a/src/analytics/isochrones/visualize.ts b/src/analytics/isochrones/visualize.ts index 19917c09..db1a2cf2 100644 --- a/src/analytics/isochrones/visualize.ts +++ b/src/analytics/isochrones/visualize.ts @@ -4,6 +4,8 @@ import { RoutableTileNode } from "../../entities/tiles/node"; import RoutableTileRegistry from "../../entities/tiles/registry"; import ILocation from "../../interfaces/ILocation"; import { IPathTree } from "../../pathfinding/pathfinder"; +import ILocationResolver from "../../query-runner/ILocationResolver"; +import Geo from "../../util/Geo"; import UnionFind from "../../util/UnionFind"; import { pointsOfTriangle } from "./util"; @@ -24,15 +26,19 @@ type Ring = ILocation[]; // The first being the outer ring, the others being holes. type Polygon = Ring[]; -export function visualizeConcaveIsochrone(registry: RoutableTileRegistry, pathTree: IPathTree, maxCost: number) { - const nodes: NodeList = []; +export async function visualizeConcaveIsochrone( + locationResolver: ILocationResolver, + pathTree: IPathTree, + maxCost: number, +) { + const nodes = []; const costs = {}; for (const [id, branch] of Object.entries(pathTree)) { const { duration } = branch; - const node = registry.getNode(id); + const node = await locationResolver.resolve(id); if (node && duration !== Infinity) { nodes.push(node); - costs[node.id] = duration; + costs[Geo.getId(node)] = duration; } } @@ -40,11 +46,16 @@ export function visualizeConcaveIsochrone(registry: RoutableTileRegistry, pathTr .filter((node) => costs[node.id] < maxCost) .map((n) => [n.longitude, n.latitude]); - const shell = concaveman(internalNodes); - return { - isochrones: [[shell.map((point) => { + let isochrones = []; + if (internalNodes.length > 0) { + const shell = concaveman(internalNodes); + isochrones = [[shell.map((point) => { return { longitude: point[0], latitude: point[1] }; - })]], + })]]; + } + + return { + isochrones, }; } From c225af056cad6b31df1467cee0ba7c3a3175edb3 Mon Sep 17 00:00:00 2001 From: Harm Delva Date: Wed, 17 Jul 2019 15:20:16 +0200 Subject: [PATCH 20/85] Remove activeProfile from ProfileProvider --- src/Planner.ts | 13 +++++----- src/analytics/isochrones/main.ts | 24 +++++++++---------- src/demo.ts | 8 +++---- src/fetcher/profiles/IProfileProvider.ts | 6 +---- .../profiles/ProfileProviderDefault.ts | 22 ++--------------- src/interfaces/IQuery.ts | 2 ++ src/isochrone.demo.ts | 1 + src/pathfinding/PathfinderProvider.ts | 6 ++--- .../CSAEarliestArrival.test.ts | 1 + .../public-transport/CSAEarliestArrival.ts | 5 +++- .../public-transport/CSAProfile.test.ts | 3 +++ src/planner/public-transport/CSAProfile.ts | 3 +++ src/planner/road/RoadPlannerBirdsEye.test.ts | 1 + src/planner/road/RoadPlannerPathfinding.ts | 10 ++++++-- src/planner/stops/IReachableStopsFinder.ts | 1 + .../stops/ReachableStopsFinderDelaunay.ts | 2 ++ .../ReachableStopsFinderRoadPlanner.test.ts | 1 + .../stops/ReachableStopsFinderRoadPlanner.ts | 2 ++ .../ReachableStopsFinderRoadPlannerCached.ts | 3 ++- src/query-runner/IResolvedQuery.ts | 1 + src/query-runner/QueryRunnerDefault.ts | 2 +- .../QueryRunnerEarliestArrivalFirst.ts | 2 +- .../exponential/QueryRunnerExponential.ts | 2 +- 23 files changed, 62 insertions(+), 59 deletions(-) diff --git a/src/Planner.ts b/src/Planner.ts index bb33e2ed..d4b8269a 100644 --- a/src/Planner.ts +++ b/src/Planner.ts @@ -22,6 +22,7 @@ import Units from "./util/Units"; export default class Planner implements EventEmitter { public static Units = Units; + private activeProfileID: string; private context: Context; private queryRunner: IQueryRunner; private profileProvider: ProfileProvider; @@ -37,6 +38,8 @@ export default class Planner implements EventEmitter { this.queryRunner = container.get(TYPES.QueryRunner); this.profileProvider = container.get(TYPES.ProfileProvider); + + this.activeProfileID = "PEDESTRIAN"; } /** @@ -47,6 +50,7 @@ export default class Planner implements EventEmitter { public query(query: IQuery): AsyncIterator { this.emit(EventType.Query, query); + query.profileID = this.activeProfileID; const iterator = new PromiseProxyIterator(() => this.queryRunner.run(query)); this.once(EventType.AbortQuery, () => { @@ -129,15 +133,12 @@ export default class Planner implements EventEmitter { } public async setDevelopmentProfile(blob: object) { - const profileID = await this.profileProvider.setDevelopmentProfile(blob); - this.profileProvider.setActiveProfileID(profileID); - - return this; + const profileID = await this.profileProvider.parseDevelopmentProfile(blob); + return this.setProfileID(profileID); } public setProfileID(profileID: string) { - this.profileProvider.setActiveProfileID(profileID); - + this.activeProfileID = profileID; return this; } diff --git a/src/analytics/isochrones/main.ts b/src/analytics/isochrones/main.ts index fdfb5152..99104977 100644 --- a/src/analytics/isochrones/main.ts +++ b/src/analytics/isochrones/main.ts @@ -5,6 +5,7 @@ import "isomorphic-fetch"; import "reflect-metadata"; import inBBox from "tiles-in-bbox"; import Context from "../../Context"; +import Profile from "../../entities/profile/Profile"; import { RoutableTileCoordinate } from "../../entities/tiles/coordinate"; import RoutableTileRegistry from "../../entities/tiles/registry"; import ProfileProvider from "../../fetcher/profiles/ProfileProviderDefault"; @@ -31,6 +32,7 @@ export default class IsochroneGenerator implements EventEmitter { private profileProvider: ProfileProvider; private locationResolver: ILocationResolver; + private activeProfile: Promise; private loaded: Promise; private showIncremental: boolean; private showDebugLogs: boolean; @@ -50,7 +52,7 @@ export default class IsochroneGenerator implements EventEmitter { this.showIncremental = false; this.showDebugLogs = false; - this.setProfileID("http://hdelva.be/profile/car"); + this.activeProfile = this.profileProvider.getProfile("http://hdelva.be/profile/car"); } public enableIncrementalResults() { @@ -110,18 +112,13 @@ export default class IsochroneGenerator implements EventEmitter { } public async setDevelopmentProfile(blob: object) { - const id = await this.profileProvider.setDevelopmentProfile(blob); - this.loaded = this.profileProvider.setActiveProfileID(id).then(() => { - return this.embedBeginPoint(this.startPoint); - }).then(() => { - return true; - }); + const id = await this.profileProvider.parseDevelopmentProfile(blob); + this.setProfileID(id); } public async setProfileID(profileID: string) { - this.loaded = this.profileProvider.setActiveProfileID(profileID).then(() => { - return this.embedBeginPoint(this.startPoint); - }).then(() => { + this.activeProfile = this.profileProvider.getProfile(profileID); + this.loaded = this.embedBeginPoint(this.startPoint).then(() => { return true; }); } @@ -134,13 +131,13 @@ export default class IsochroneGenerator implements EventEmitter { } await this.loaded; + const profile = await this.activeProfile; if (this.showDebugLogs) { - const profile = await this.profileProvider.getActiveProfile(); console.log(`Using the ${profile.getID()} profile`); } - const pathfinder = await this.pathfinderProvider.getShortestPathTreeAlgorithm(); + const pathfinder = this.pathfinderProvider.getShortestPathTreeAlgorithm(profile); // wait for all data to arrive await this.tileProvider.wait(); @@ -167,7 +164,8 @@ export default class IsochroneGenerator implements EventEmitter { this.emit("TILE", coordinate); this.reachedTiles.add(tileId); - const pathfinder = await this.pathfinderProvider.getShortestPathTreeAlgorithm(); + const profile = await this.activeProfile; + const pathfinder = this.pathfinderProvider.getShortestPathTreeAlgorithm(profile); const tile = await this.tileProvider.getByTileCoords(coordinate); const boundaryNodes: Set = new Set(); diff --git a/src/demo.ts b/src/demo.ts index aef023ac..23a37758 100644 --- a/src/demo.ts +++ b/src/demo.ts @@ -67,8 +67,8 @@ export default async (logResults) => { let i = 0; planner.query({ - // roadNetworkOnly: true, // don't mix with publicTranspotOnly, for obvious reasons - publicTransportOnly: true, + roadNetworkOnly: true, // don't mix with publicTranspotOnly, for obvious reasons + // publicTransportOnly: true, // from: "https://data.delijn.be/stops/201657", // to: "https://data.delijn.be/stops/205910", // from: "https://data.delijn.be/stops/200455", // Deinze weg op Grammene +456 @@ -76,9 +76,9 @@ export default async (logResults) => { // from: "https://data.delijn.be/stops/509927", // Tield Rameplein perron 1 // to: "https://data.delijn.be/stops/200455", // Deinze weg op Grammene +456 from: "Ingelmunster", // Ingelmunster - to: "http://irail.be/stations/NMBS/008892007", // Ghent-Sint-Pieters + // to: "http://irail.be/stations/NMBS/008892007", // Ghent-Sint-Pieters // from: { latitude: 50.93278, longitude: 5.32665 }, // Pita Aladin, Hasselt - // to: { latitude: 50.7980187, longitude: 3.1877779 }, // Burger Pita Pasta, Menen + to: { latitude: 50.7980187, longitude: 3.1877779 }, // Burger Pita Pasta, Menen // from: "Hasselt", // to: "Kortrijk", minimumDepartureTime: new Date(), diff --git a/src/fetcher/profiles/IProfileProvider.ts b/src/fetcher/profiles/IProfileProvider.ts index b41ed911..eb304101 100644 --- a/src/fetcher/profiles/IProfileProvider.ts +++ b/src/fetcher/profiles/IProfileProvider.ts @@ -1,13 +1,9 @@ import Profile from "../../entities/profile/Profile"; export default interface IProfileProvider { - setActiveProfile(profile: Profile): void; - setActiveProfileID(profileId: string): void; - - setDevelopmentProfile(blob: object): Promise; + parseDevelopmentProfile(blob: object): Promise; addProfile(profile: Profile): void; - getActiveProfile(): Promise; getProfile(profileId: string): Promise; getProfiles(): Promise; } diff --git a/src/fetcher/profiles/ProfileProviderDefault.ts b/src/fetcher/profiles/ProfileProviderDefault.ts index 1f289b90..cf265dde 100644 --- a/src/fetcher/profiles/ProfileProviderDefault.ts +++ b/src/fetcher/profiles/ProfileProviderDefault.ts @@ -16,7 +16,6 @@ export default class ProfileProviderDefault implements IProfileProvider { // e.g. bicycle near a specific station private profiles: IProfileMap; - private activeProfile: Promise; private fetcher: IProfileFetcher; private developmentProfile: Profile; // does not have a persistent id, will change often @@ -26,32 +25,16 @@ export default class ProfileProviderDefault implements IProfileProvider { @inject(TYPES.ProfileFetcher) fetcher: IProfileFetcher, ) { this.profiles = {}; - this.activeProfile = undefined; this.fetcher = fetcher; this.developmentProfile = undefined; this.developmentProfileCounter = 0; // some placeholders const pedestrian = new PedestrianProfile(); - this.setActiveProfile(pedestrian); + this.profiles[pedestrian.getID()] = Promise.resolve(pedestrian); } - public setActiveProfile(profile: Profile) { - if (!this.profiles[profile.getID()]) { - this.addProfile(profile); - } - this.activeProfile = Promise.resolve(profile); - } - - public async setActiveProfileID(profileId: string) { - this.activeProfile = this.getProfile(profileId); - } - - public getActiveProfile(): Promise { - return this.activeProfile; - } - - public async setDevelopmentProfile(blob: object): Promise { + public async parseDevelopmentProfile(blob: object): Promise { this.developmentProfileCounter += 1; const newProfile = await this.fetcher.parseProfileBlob(blob, "" + this.developmentProfileCounter); if (this.developmentProfile) { @@ -59,7 +42,6 @@ export default class ProfileProviderDefault implements IProfileProvider { } this.developmentProfile = newProfile; this.profiles[this.developmentProfile.getID()] = Promise.resolve(newProfile); - this.activeProfile = Promise.resolve(newProfile); return newProfile.getID(); } diff --git a/src/interfaces/IQuery.ts b/src/interfaces/IQuery.ts index 7360bc05..369ece1c 100644 --- a/src/interfaces/IQuery.ts +++ b/src/interfaces/IQuery.ts @@ -1,9 +1,11 @@ +import Profile from "../entities/profile/Profile"; import ILocation from "./ILocation"; import { DistanceM, DurationMs, SpeedKmH } from "./units"; export default interface IQuery { from?: string | string[] | ILocation | ILocation[]; to?: string | string[] | ILocation | ILocation[]; + profileID?: string; minimumDepartureTime?: Date; maximumArrivalTime?: Date; roadOnly?: boolean; diff --git a/src/isochrone.demo.ts b/src/isochrone.demo.ts index dbf89146..e3e8e8d5 100644 --- a/src/isochrone.demo.ts +++ b/src/isochrone.demo.ts @@ -1,6 +1,7 @@ import Planner from "."; const x = new Planner.IsochroneGenerator({ latitude: 51.0262973, longitude: 3.7110885 }); +x.enableDebugLogs(); x.getIsochrone(2500, true).then((y) => { console.log(y); }); diff --git a/src/pathfinding/PathfinderProvider.ts b/src/pathfinding/PathfinderProvider.ts index 50da0989..fb67832c 100644 --- a/src/pathfinding/PathfinderProvider.ts +++ b/src/pathfinding/PathfinderProvider.ts @@ -45,15 +45,13 @@ export default class PathfinderProvider { this.graphs = {}; } - public async getShortestPathAlgorithm(): Promise { - const profile = await this.profileProvider.getActiveProfile(); + public getShortestPathAlgorithm(profile: Profile): IShortestPathAlgorithm { const graph = this.getGraphForProfile(profile); this.shortestPath.setGraph(graph); return this.shortestPath; } - public async getShortestPathTreeAlgorithm(): Promise { - const profile = await this.profileProvider.getActiveProfile(); + public getShortestPathTreeAlgorithm(profile: Profile): IShortestPathTreeAlgorithm { const graph = this.getGraphForProfile(profile); this.shortestPathTree.setGraph(graph); return this.shortestPathTree; diff --git a/src/planner/public-transport/CSAEarliestArrival.test.ts b/src/planner/public-transport/CSAEarliestArrival.test.ts index e9480006..63937ac8 100644 --- a/src/planner/public-transport/CSAEarliestArrival.test.ts +++ b/src/planner/public-transport/CSAEarliestArrival.test.ts @@ -55,6 +55,7 @@ describe("[PublicTransportPlannerCSAEarliestArrival]", () => { publicTransportOnly: true, from: [{ latitude: 50.914326, longitude: 3.255415, id: "http://irail.be/stations/NMBS/008896925" }], to: [{ latitude: 51.035896, longitude: 3.710875, id: "http://irail.be/stations/NMBS/008892007" }], + profileID: "PEDESTRIAN", minimumDepartureTime: new Date("2018-11-06T09:00:00.000Z"), maximumArrivalTime: new Date("2018-11-06T19:00:00.000Z"), maximumTransfers: 8, diff --git a/src/planner/public-transport/CSAEarliestArrival.ts b/src/planner/public-transport/CSAEarliestArrival.ts index 74504dc0..fd3b9163 100644 --- a/src/planner/public-transport/CSAEarliestArrival.ts +++ b/src/planner/public-transport/CSAEarliestArrival.ts @@ -228,7 +228,7 @@ export default class CSAEarliestArrival implements IPublicTransportPlanner { this.profilesByStop[connection.arrivalStop] = arrivalProfile; } - private async scheduleExtraConnections(query: IQuery, sourceConnection: IConnection) { + private async scheduleExtraConnections(query: IResolvedQuery, sourceConnection: IConnection) { try { const arrivalStop: ILocation = await this.locationResolver.resolve(sourceConnection.arrivalStop); const reachableStops: IReachableStop[] = await this.transferReachableStopsFinder.findReachableStops( @@ -236,6 +236,7 @@ export default class CSAEarliestArrival implements IPublicTransportPlanner { ReachableStopsFinderMode.Source, query.maximumTransferDuration, query.minimumWalkingSpeed, + query.profileID, ); if (this.finalReachableStops[arrivalStop.id]) { @@ -284,6 +285,7 @@ export default class CSAEarliestArrival implements IPublicTransportPlanner { ReachableStopsFinderMode.Source, query.maximumWalkingDuration, query.minimumWalkingSpeed, + query.profileID, ); // Abort when we can't reach a single stop. @@ -335,6 +337,7 @@ export default class CSAEarliestArrival implements IPublicTransportPlanner { ReachableStopsFinderMode.Target, query.maximumWalkingDuration, query.minimumWalkingSpeed, + query.profileID, ); // Abort when we can't reach a single stop. diff --git a/src/planner/public-transport/CSAProfile.test.ts b/src/planner/public-transport/CSAProfile.test.ts index ee3f8faf..ad391fc6 100644 --- a/src/planner/public-transport/CSAProfile.test.ts +++ b/src/planner/public-transport/CSAProfile.test.ts @@ -56,6 +56,7 @@ describe("[PublicTransportPlannerCSAProfile]", () => { publicTransportOnly: true, from: [{latitude: 50.914326, longitude: 3.255415 }], to: [{ latitude: 51.035896, longitude: 3.710875 }], + profileID: "PEDESTRIAN", minimumDepartureTime: new Date("2018-11-06T09:00:00.000Z"), maximumArrivalTime: new Date("2018-11-06T19:00:00.000Z"), maximumTransfers: 8, @@ -97,6 +98,7 @@ describe("[PublicTransportPlannerCSAProfile]", () => { latitude: 50.859663, longitude: 4.360846, }], + profileID: "PEDESTRIAN", minimumDepartureTime: new Date("2017-12-19T15:50:00.000Z"), maximumArrivalTime: new Date("2017-12-19T16:50:00.000Z"), maximumTransfers: 1, @@ -142,6 +144,7 @@ describe("[PublicTransportPlannerCSAProfile]", () => { latitude: 51.2172, longitude: 4.421101, }], + profileID: "PEDESTRIAN", minimumDepartureTime: new Date("2017-12-19T16:20:00.000Z"), maximumArrivalTime: new Date("2017-12-19T16:50:00.000Z"), maximumTransfers: 1, diff --git a/src/planner/public-transport/CSAProfile.ts b/src/planner/public-transport/CSAProfile.ts index 97ad38ef..ca8602a8 100644 --- a/src/planner/public-transport/CSAProfile.ts +++ b/src/planner/public-transport/CSAProfile.ts @@ -266,6 +266,7 @@ export default class CSAProfile implements IPublicTransportPlanner { ReachableStopsFinderMode.Target, this.query.maximumWalkingDuration, this.query.minimumWalkingSpeed, + this.query.profileID, ); if (reachableStops.length < 1) { @@ -305,6 +306,7 @@ export default class CSAProfile implements IPublicTransportPlanner { ReachableStopsFinderMode.Source, this.query.maximumWalkingDuration, this.query.minimumWalkingSpeed, + this.query.profileID, ); for (const reachableStop of this.initialReachableStops) { @@ -453,6 +455,7 @@ export default class CSAProfile implements IPublicTransportPlanner { ReachableStopsFinderMode.Source, this.query.maximumTransferDuration, this.query.minimumWalkingSpeed, + this.query.profileID, ); reachableStops.forEach((reachableStop: IReachableStop) => { diff --git a/src/planner/road/RoadPlannerBirdsEye.test.ts b/src/planner/road/RoadPlannerBirdsEye.test.ts index 038a2a95..ad8ee63d 100644 --- a/src/planner/road/RoadPlannerBirdsEye.test.ts +++ b/src/planner/road/RoadPlannerBirdsEye.test.ts @@ -24,6 +24,7 @@ test("[RoadPlannerBirdsEye] distance between stops", async () => { const iterator = await planner.plan({ from: [kortrijkLocation], // Kortrijk to: [ghentLocation], // Ghent-Sint-Pieters, + profileID: "PEDESTRIAN", minimumWalkingSpeed: 3, maximumWalkingSpeed: 6, }); diff --git a/src/planner/road/RoadPlannerPathfinding.ts b/src/planner/road/RoadPlannerPathfinding.ts index 61d553ce..67b35edb 100644 --- a/src/planner/road/RoadPlannerPathfinding.ts +++ b/src/planner/road/RoadPlannerPathfinding.ts @@ -1,6 +1,7 @@ import { ArrayIterator, AsyncIterator } from "asynciterator"; import { inject, injectable } from "inversify"; import inBBox from "tiles-in-bbox"; +import Profile from "../../entities/profile/Profile"; import { RoutableTileCoordinate } from "../../entities/tiles/coordinate"; import TravelMode from "../../enums/TravelMode"; import IProfileProvider from "../../fetcher/profiles/IProfileProvider"; @@ -39,9 +40,11 @@ export default class RoadPlannerPathfinding implements IRoadPlanner { const { from: fromLocations, to: toLocations, + profileID, } = query; const paths = []; + const profile = await this.profileProvider.getProfile(profileID); if (fromLocations && toLocations && fromLocations.length && toLocations.length) { @@ -51,6 +54,7 @@ export default class RoadPlannerPathfinding implements IRoadPlanner { const newPath = await this.getPathBetweenLocations( from, to, + profile, ); if (newPath) { @@ -66,6 +70,7 @@ export default class RoadPlannerPathfinding implements IRoadPlanner { private async getPathBetweenLocations( from: ILocation, to: ILocation, + profile: Profile, ): Promise { const padding = 0.02; const zoom = 14; @@ -109,14 +114,15 @@ export default class RoadPlannerPathfinding implements IRoadPlanner { this.pathfinderProvider.embedLocation(to, toTileset, true), ]); - return this._innerPath(from, to); + return this._innerPath(from, to, profile); } private async _innerPath( start: ILocation, stop: ILocation, + profile: Profile, ): Promise { - const pathfinder = await this.pathfinderProvider.getShortestPathAlgorithm(); + const pathfinder = await this.pathfinderProvider.getShortestPathAlgorithm(profile); const summary = pathfinder.queryPath(Geo.getId(start), Geo.getId(stop)); const steps: IStep[] = []; diff --git a/src/planner/stops/IReachableStopsFinder.ts b/src/planner/stops/IReachableStopsFinder.ts index 19f235b7..7b906e09 100644 --- a/src/planner/stops/IReachableStopsFinder.ts +++ b/src/planner/stops/IReachableStopsFinder.ts @@ -13,6 +13,7 @@ export default interface IReachableStopsFinder { mode: ReachableStopsFinderMode, maximumDuration: DurationMs, minimumSpeed: SpeedKmH, + profileID: string, ) => Promise; } diff --git a/src/planner/stops/ReachableStopsFinderDelaunay.ts b/src/planner/stops/ReachableStopsFinderDelaunay.ts index 84ea6087..cc5122aa 100644 --- a/src/planner/stops/ReachableStopsFinderDelaunay.ts +++ b/src/planner/stops/ReachableStopsFinderDelaunay.ts @@ -34,6 +34,7 @@ export default class ReachableStopsFinderDelaunay implements IReachableStopsFind mode: ReachableStopsFinderMode, maximumDuration: DurationMs, minimumSpeed: SpeedKmH, + profileID: string, ): Promise { const minimumDepartureTime = new Date(); @@ -47,6 +48,7 @@ export default class ReachableStopsFinderDelaunay implements IReachableStopsFind minimumDepartureTime, maximumArrivalTime, minimumWalkingSpeed: minimumSpeed, + profileID, }; const stopsNearCell: IStop[] = await this.getNearbyStops(location); diff --git a/src/planner/stops/ReachableStopsFinderRoadPlanner.test.ts b/src/planner/stops/ReachableStopsFinderRoadPlanner.test.ts index 5d83f7b2..f3e6fc58 100644 --- a/src/planner/stops/ReachableStopsFinderRoadPlanner.test.ts +++ b/src/planner/stops/ReachableStopsFinderRoadPlanner.test.ts @@ -26,6 +26,7 @@ test("[ReachableStopsFinderRoadPlanner] reachable stops", async () => { ReachableStopsFinderMode.Source, Units.fromHours(1), 5, + "PEDESTRIAN", ); expect(reachableStops.length).toBeGreaterThan(1); diff --git a/src/planner/stops/ReachableStopsFinderRoadPlanner.ts b/src/planner/stops/ReachableStopsFinderRoadPlanner.ts index d56789fd..0f6cc65c 100644 --- a/src/planner/stops/ReachableStopsFinderRoadPlanner.ts +++ b/src/planner/stops/ReachableStopsFinderRoadPlanner.ts @@ -37,6 +37,7 @@ export default class ReachableStopsFinderRoadPlanner implements IReachableStopsF mode: ReachableStopsFinderMode, maximumDuration: DurationMs, minimumSpeed: SpeedKmH, + profileID: string, ): Promise { const minimumDepartureTime = new Date(); @@ -50,6 +51,7 @@ export default class ReachableStopsFinderRoadPlanner implements IReachableStopsF minimumDepartureTime, maximumArrivalTime, minimumWalkingSpeed: minimumSpeed, + profileID, }; const allStops: IStop[] = await this.stopsProvider.getAllStops(); diff --git a/src/planner/stops/ReachableStopsFinderRoadPlannerCached.ts b/src/planner/stops/ReachableStopsFinderRoadPlannerCached.ts index 0a0b8dd7..ca2fd73c 100644 --- a/src/planner/stops/ReachableStopsFinderRoadPlannerCached.ts +++ b/src/planner/stops/ReachableStopsFinderRoadPlannerCached.ts @@ -32,6 +32,7 @@ export default class ReachableStopsFinderRoadPlannerCached implements IReachable mode: ReachableStopsFinderMode, maximumDuration: DurationMs, minimumSpeed: SpeedKmH, + profileID: string, ): Promise { const id = location.id || Geo.getId(location); @@ -43,7 +44,7 @@ export default class ReachableStopsFinderRoadPlannerCached implements IReachable } const reachableStops = await this.reachableStopsFinder - .findReachableStops(location, mode, maximumDuration, minimumSpeed); + .findReachableStops(location, mode, maximumDuration, minimumSpeed, profileID); this.reachableStopsCache[cacheKey] = reachableStops; return reachableStops; diff --git a/src/query-runner/IResolvedQuery.ts b/src/query-runner/IResolvedQuery.ts index 4a598ed1..f286720a 100644 --- a/src/query-runner/IResolvedQuery.ts +++ b/src/query-runner/IResolvedQuery.ts @@ -9,6 +9,7 @@ import { DurationMs, SpeedKmH } from "../interfaces/units"; export default interface IResolvedQuery { from?: ILocation[]; to?: ILocation[]; + profileID: string; minimumDepartureTime?: Date; maximumArrivalTime?: Date; roadOnly?: boolean; diff --git a/src/query-runner/QueryRunnerDefault.ts b/src/query-runner/QueryRunnerDefault.ts index 46fa8d56..a7a43297 100644 --- a/src/query-runner/QueryRunnerDefault.ts +++ b/src/query-runner/QueryRunnerDefault.ts @@ -74,7 +74,7 @@ export default class QueryRunnerDefault implements IQueryRunner { } = query; // tslint:enable:trailing-comma - const resolvedQuery: IResolvedQuery = Object.assign({}, other); + const resolvedQuery: IResolvedQuery = Object.assign({}, other as IResolvedQuery); resolvedQuery.minimumDepartureTime = minimumDepartureTime || new Date(); diff --git a/src/query-runner/earliest-arrival-first/QueryRunnerEarliestArrivalFirst.ts b/src/query-runner/earliest-arrival-first/QueryRunnerEarliestArrivalFirst.ts index 105f9ca9..48aea275 100644 --- a/src/query-runner/earliest-arrival-first/QueryRunnerEarliestArrivalFirst.ts +++ b/src/query-runner/earliest-arrival-first/QueryRunnerEarliestArrivalFirst.ts @@ -190,7 +190,7 @@ export default class QueryRunnerEarliestArrivalFirst implements IQueryRunner { } = query; // tslint:enable:trailing-comma - const resolvedQuery: IResolvedQuery = Object.assign({}, other); + const resolvedQuery: IResolvedQuery = Object.assign({}, other as IResolvedQuery); resolvedQuery.minimumDepartureTime = minimumDepartureTime || new Date(); diff --git a/src/query-runner/exponential/QueryRunnerExponential.ts b/src/query-runner/exponential/QueryRunnerExponential.ts index db7a0a34..f925abc1 100644 --- a/src/query-runner/exponential/QueryRunnerExponential.ts +++ b/src/query-runner/exponential/QueryRunnerExponential.ts @@ -112,7 +112,7 @@ export default class QueryRunnerExponential implements IQueryRunner { } = query; // tslint:enable:trailing-comma - const resolvedQuery: IResolvedQuery = Object.assign({}, other); + const resolvedQuery: IResolvedQuery = Object.assign({}, other as IResolvedQuery); resolvedQuery.minimumDepartureTime = minimumDepartureTime || new Date(); From e1b3efb06261b5b65f6b3766d0d86c1df8ac23f9 Mon Sep 17 00:00:00 2001 From: Julian Rojas Date: Wed, 17 Jul 2019 16:15:17 +0200 Subject: [PATCH 21/85] Update the doc example: * It renders roadNetworkOnly routes better. * Can switch from publicTransportOnly to roadNetworkOnly --- docs/css/style.css | 99 ++++++++++++--- docs/example.html | 41 ++++--- docs/js/example.js | 291 ++++++++++++++++++++++++++++----------------- 3 files changed, 290 insertions(+), 141 deletions(-) diff --git a/docs/css/style.css b/docs/css/style.css index dfb84dd0..13b63e59 100644 --- a/docs/css/style.css +++ b/docs/css/style.css @@ -1,10 +1,83 @@ -html, -body { +html, body { margin: 0; height: 100%; width: 100%; } +#optionsBar { + margin-bottom: 5px; + text-align: center +} + +#optionsBar .optionLabel { + font-size: 19px; + font-family: sans-serif; + vertical-align: middle; + top: 6px; + position: relative; +} + +.switch { + position: relative; + display: inline-block; + width: 60px; + height: 34px; +} + +.switch input { + opacity: 0; + width: 0; + height: 0; +} + +.slider { + position: absolute; + cursor: pointer; + top: 0; + left: 0; + right: 0; + bottom: 0; + background-color: #ccc; + -webkit-transition: .4s; + transition: .4s; +} + +.slider:before { + position: absolute; + content: ""; + height: 26px; + width: 26px; + left: 4px; + bottom: 4px; + background-color: white; + -webkit-transition: .4s; + transition: .4s; +} + +input:checked+.slider { + background-color: #2196F3; +} + +input:focus+.slider { + box-shadow: 0 0 1px #2196F3; +} + +input:checked+.slider:before { + -webkit-transform: translateX(26px); + -ms-transform: translateX(26px); + transform: translateX(26px); +} + +/* Rounded sliders */ + +.slider.round { + border-radius: 34px; +} + +.slider.round:before { + border-radius: 50%; +} + #mapid { height: 100%; } @@ -23,7 +96,7 @@ body { width: 500px; } -#results > .path { +#results>.path { margin: 10px; background: rgba(255, 255, 255, .8); border: 1px solid #ccc; @@ -33,14 +106,14 @@ body { flex-wrap: wrap; } -#results > .path > .header { +#results>.path>.header { padding: 10px; - background: rgba(0, 0, 0, .25); + background: rgba(0, 0, 0, .7); color: #fff; text-shadow: 0 0 1px black; } -#results > .path > .step { +#results>.path>.step { display: flex; flex-direction: row; margin: 10px; @@ -53,8 +126,7 @@ body { background-repeat: no-repeat; } -.details { -} +.details {} .travelMode.walking { background-image: url(data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZGF0YS1wcmVmaXg9ImZhcyIgZGF0YS1pY29uPSJ3YWxraW5nIiBjbGFzcz0ic3ZnLWlubGluZS0tZmEgZmEtd2Fsa2luZyBmYS13LTEwIiByb2xlPSJpbWciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDMyMCA1MTIiPjxwYXRoIGZpbGw9ImN1cnJlbnRDb2xvciIgZD0iTTIwOCA5NmMyNi41IDAgNDgtMjEuNSA0OC00OFMyMzQuNSAwIDIwOCAwcy00OCAyMS41LTQ4IDQ4IDIxLjUgNDggNDggNDh6bTk0LjUgMTQ5LjFsLTIzLjMtMTEuOC05LjctMjkuNGMtMTQuNy00NC42LTU1LjctNzUuOC0xMDIuMi03NS45LTM2LS4xLTU1LjkgMTAuMS05My4zIDI1LjItMjEuNiA4LjctMzkuMyAyNS4yLTQ5LjcgNDYuMkwxNy42IDIxM2MtNy44IDE1LjgtMS41IDM1IDE0LjIgNDIuOSAxNS42IDcuOSAzNC42IDEuNSA0Mi41LTE0LjNMODEgMjI4YzMuNS03IDkuMy0xMi41IDE2LjUtMTUuNGwyNi44LTEwLjgtMTUuMiA2MC43Yy01LjIgMjAuOC40IDQyLjkgMTQuOSA1OC44bDU5LjkgNjUuNGM3LjIgNy45IDEyLjMgMTcuNCAxNC45IDI3LjdsMTguMyA3My4zYzQuMyAxNy4xIDIxLjcgMjcuNiAzOC44IDIzLjMgMTcuMS00LjMgMjcuNi0yMS43IDIzLjMtMzguOGwtMjIuMi04OWMtMi42LTEwLjMtNy43LTE5LjktMTQuOS0yNy43bC00NS41LTQ5LjcgMTcuMi02OC43IDUuNSAxNi41YzUuMyAxNi4xIDE2LjcgMjkuNCAzMS43IDM3bDIzLjMgMTEuOGMxNS42IDcuOSAzNC42IDEuNSA0Mi41LTE0LjMgNy43LTE1LjcgMS40LTM1LjEtMTQuMy00M3pNNzMuNiAzODUuOGMtMy4yIDguMS04IDE1LjQtMTQuMiAyMS41bC01MCA1MC4xYy0xMi41IDEyLjUtMTIuNSAzMi44IDAgNDUuM3MzMi43IDEyLjUgNDUuMiAwbDU5LjQtNTkuNGM2LjEtNi4xIDEwLjktMTMuNCAxNC4yLTIxLjVsMTMuNS0zMy44Yy01NS4zLTYwLjMtMzguNy00MS44LTQ3LjQtNTMuN2wtMjAuNyA1MS41eiI+PC9wYXRoPjwvc3ZnPg==); @@ -73,19 +145,18 @@ body { margin-top: 5px; } -.enterConnectionId, -.exitConnectionId { +.enterConnectionId, .exitConnectionId { opacity: 0.5; } #actions { position: absolute; - top: 10px; + top: 41px; right: 10px; z-index: 500; } -#actions > button { +#actions>button { border-radius: 100px; background: rgba(255, 255, 255, .8); font-size: 2em; @@ -94,7 +165,7 @@ body { #prefetch { position: absolute; - top: 10px; + top: 41px; left: 54px; max-width: calc(100% - 225px); z-index: 500; @@ -122,4 +193,4 @@ body { height: 17px; max-width: 100%; overflow: hidden; -} +} \ No newline at end of file diff --git a/docs/example.html b/docs/example.html index 919fae83..b658666a 100644 --- a/docs/example.html +++ b/docs/example.html @@ -1,26 +1,37 @@ + Map + integrity="sha512-puBpdR0798OZvTTbP4A8Ix/l+A4dHDD0DGqYW6RQ+9jxkRFclaxxQb/SJAWZfWAkuyeQUytO7+7N4QKrDh+drA==" + crossorigin="" /> + integrity="sha512-nMMmRyTVoLYqjP9hrbed9S+FzjZHW5gY1TWCHA5ckwXZBadntCNs8kEqAWdrb9O7rxbCaA4lKTIWjDXZxflOcA==" + crossorigin=""> + -

-
-
-
-
-
- -
- - +
+ Use Public Transport: + + +
+
+
+
+
+
+
+ +
+ + - + + \ No newline at end of file diff --git a/docs/js/example.js b/docs/js/example.js index 17251d5d..e8f5bfc8 100644 --- a/docs/js/example.js +++ b/docs/js/example.js @@ -18,11 +18,14 @@ planner.prefetchStops(); planner.prefetchConnections(); let plannerResult; +const usePublicTransport = document.querySelector('#usePublicTransport'); const resetButton = document.querySelector("#reset"); const results = document.querySelector("#results"); const prefetchWrapper = document.querySelector("#prefetch"); const prefetchBar = document.querySelector("#prefetch-bar"); let prefetchBarWidth = 0; +let publicTransportOnly = true; +let roadNetworkOnly = false; let lines = []; let polyLines = []; @@ -33,6 +36,12 @@ let prefetchViews = []; let firstPrefetch; +const removeStops = () => { + for (const stop of allStops) { + stop.remove(); + } +}; + const removeLines = () => { for (const line of polyLines) { line.remove(); @@ -40,7 +49,6 @@ const removeLines = () => { lines = []; polyLines = []; - lines = []; }; const removeResultObjects = () => { @@ -65,14 +73,30 @@ const removePrefetchView = () => { } }; +usePublicTransport.onclick = e => { + if (!usePublicTransport.checked) { + publicTransportOnly = false; + roadNetworkOnly = true; + removeStops(); + } else { + publicTransportOnly = true; + roadNetworkOnly = false; + for (const stop of allStops) { + stop.addTo(map); + } + } +}; + resetButton.onclick = (e) => { removeLines(); removeResultObjects(); query = []; results.innerHTML = ""; - for (const stop of allStops) { - stop.addTo(map); + if (usePublicTransport.checked) { + for (const stop of allStops) { + stop.addTo(map); + } } if (plannerResult) { @@ -313,128 +337,171 @@ function getTransferTime(path) { return time / 60000; } -function addResultPanel(path, color) { +function addResultPanel(query, path, color) { const pathElement = document.createElement("div"); pathElement.className = "path"; - const firstStep = path.steps[0]; - const lastStep = path.steps[path.steps.length - 1]; + const travelTime = getTravelTime(path); + const startTime = path.steps[0].startTime || query.minimumDepartureTime; + const stopTime = path.steps[path.steps.length - 1].stopTime || new Date(query.minimumDepartureTime.getTime() + (travelTime * 60 * 1000)); + const transferTime = Number.isNaN(getTransferTime(path)) ? 0 : getTransferTime(path); const headerElement = document.createElement("div"); headerElement.className = "header"; headerElement.innerHTML = ` - Departure: ${dateToTimeString(firstStep.startTime)}
- Arrival: ${dateToTimeString(lastStep.stopTime)}
- Travel time: ${getTravelTime(path)} min
- Transfer time: ${getTransferTime(path)} min + Departure: ${dateToTimeString(startTime)}
+ Arrival: ${dateToTimeString(stopTime)}
+ Travel time: ${Number(travelTime).toFixed(1)} min
+ Transfer time: ${Number(transferTime).toFixed(1)} min `; pathElement.appendChild(headerElement); - path.steps.forEach(step => { - const stepElement = document.createElement("div"); - stepElement.className = "step"; - - const travelMode = document.createElement("div"); - travelMode.className = "travelMode " + step.travelMode; - stepElement.appendChild(travelMode); - - const details = document.createElement("div"); - details.className = "details"; - stepElement.appendChild(details); - - const startLocation = document.createElement("div"); - startLocation.className = "startLocation"; - startLocation.innerHTML = - "Start location: " + step.startLocation.name; - details.appendChild(startLocation); - - if (step.startTime) { - const startTime = document.createElement("div"); - startTime.className = "startTime"; - startTime.innerHTML = step.startTime; - details.appendChild(startTime); - } + if (query.roadNetworkOnly) { + let unifiedStep = path.steps[0]; + unifiedStep.duration = { average: (travelTime * 60 * 1000) }; + unifiedStep.stopLocation = path.steps[path.steps.length - 1].stopLocation; - if (step.enterConnectionId) { - const enterConnectionId = document.createElement("div"); - enterConnectionId.className = "enterConnectionId"; - enterConnectionId.innerHTML = - "Enter connection: " + step.enterConnectionId; - details.appendChild(enterConnectionId); - } + drawStep(unifiedStep, pathElement, color); + } else { + path.steps.forEach(step => { + drawStep(step, pathElement, color) + }); + } - if (step.duration) { - const duration = document.createElement("div"); - duration.className = "duration"; - duration.innerHTML = - "Duration: average " + - step.duration.average / (60 * 1000) + - " min"; - details.appendChild(duration); - } + results.appendChild(pathElement); +} - const stopLocation = document.createElement("div"); - stopLocation.className = "stopLocation"; - stopLocation.innerHTML = "Stop location: " + step.stopLocation.name; - details.appendChild(stopLocation); +function drawStep(step, pathElement, color) { + const stepElement = document.createElement("div"); + stepElement.className = "step"; + + const travelMode = document.createElement("div"); + travelMode.className = "travelMode " + step.travelMode; + stepElement.appendChild(travelMode); + + const details = document.createElement("div"); + details.className = "details"; + stepElement.appendChild(details); + + const startLocation = document.createElement("div"); + startLocation.className = "startLocation"; + const startln = step.startLocation.name || "[ lat: " + step.startLocation.latitude + " long: " + step.startLocation.longitude + "]"; + startLocation.innerHTML = + "Start location: " + startln; + details.appendChild(startLocation); + + if (step.startTime) { + const startTime = document.createElement("div"); + startTime.className = "startTime"; + startTime.innerHTML = step.startTime; + details.appendChild(startTime); + } - if (step.stopTime) { - const stopTime = document.createElement("div"); - stopTime.className = "stopTime"; - stopTime.innerHTML = step.stopTime; - details.appendChild(stopTime); - } + if (step.enterConnectionId) { + const enterConnectionId = document.createElement("div"); + enterConnectionId.className = "enterConnectionId"; + enterConnectionId.innerHTML = + "Enter connection: " + step.enterConnectionId; + details.appendChild(enterConnectionId); + } - if (step.exitConnectionId) { - const exitConnectionId = document.createElement("div"); - exitConnectionId.className = "exitConnectionId"; - exitConnectionId.innerHTML = - "Exit connection: " + step.exitConnectionId; - details.appendChild(exitConnectionId); - } + if (step.duration) { + const duration = document.createElement("div"); + duration.className = "duration"; + duration.innerHTML = + "Duration: average " + + Number(step.duration.average / (60 * 1000)).toFixed(1) + + " min"; + details.appendChild(duration); + } - pathElement.style.borderLeft = "5px solid " + color; + const stopLocation = document.createElement("div"); + stopLocation.className = "stopLocation"; + const stopln = step.stopLocation.name || "[ lat: " + step.stopLocation.latitude + " long: " + step.stopLocation.longitude + "]"; + stopLocation.innerHTML = "Stop location: " + stopln; + details.appendChild(stopLocation); + + if (step.stopTime) { + const stopTime = document.createElement("div"); + stopTime.className = "stopTime"; + stopTime.innerHTML = step.stopTime; + details.appendChild(stopTime); + } - pathElement.appendChild(stepElement); - }); + if (step.exitConnectionId) { + const exitConnectionId = document.createElement("div"); + exitConnectionId.className = "exitConnectionId"; + exitConnectionId.innerHTML = + "Exit connection: " + step.exitConnectionId; + details.appendChild(exitConnectionId); + } - results.appendChild(pathElement); + pathElement.style.borderLeft = "5px solid " + color; + + pathElement.appendChild(stepElement); } -function addResultToMap(path, color) { - path.steps.forEach(step => { - const { startLocation, stopLocation, travelMode } = step; +function addResultToMap(q, path, color) { + if (q.roadNetworkOnly) { + + for (let i in path.steps) { + if (i > 0) { + const { startLocation, stopLocation, travelMode } = path.steps[i]; + const line = [ + [startLocation.latitude, startLocation.longitude], + [stopLocation.latitude, stopLocation.longitude] + ]; - const startMarker = L.marker([ - startLocation.latitude, - startLocation.longitude - ]).addTo(map); + drawLineBetweenPoints(line, travelMode, color); + } + } - startMarker.bindPopup(startLocation.name); + } else { + path.steps.forEach(step => { + addConnectionMarkers(step, color); + }); + } +} - const stopMarker = L.marker([ - stopLocation.latitude, - stopLocation.longitude - ]).addTo(map); +function addConnectionMarkers(step, color) { + const { startLocation, stopLocation, travelMode } = step; - stopMarker.bindPopup(stopLocation.name); - const line = [ - [startLocation.latitude, startLocation.longitude], - [stopLocation.latitude, stopLocation.longitude] - ]; + const startMarker = L.marker([ + startLocation.latitude, + startLocation.longitude + ]).addTo(map); - const polyline = new L.Polyline(line, { - color, - weight: 5, - smoothFactor: 1, - opacity: 0.7, - dashArray: travelMode === "walking" ? "8 8" : null - }).addTo(map); + startMarker.bindPopup(startLocation.name); - resultObjects.push(startMarker, stopMarker, polyline); - }); + const stopMarker = L.marker([ + stopLocation.latitude, + stopLocation.longitude + ]).addTo(map); + + stopMarker.bindPopup(stopLocation.name); + + resultObjects.push(startMarker, stopMarker); + + const line = [ + [startLocation.latitude, startLocation.longitude], + [stopLocation.latitude, stopLocation.longitude] + ]; + + drawLineBetweenPoints(line, travelMode, color); +} + +function drawLineBetweenPoints(line, travelMode, color) { + const polyline = new L.Polyline(line, { + color, + weight: 5, + smoothFactor: 1, + opacity: 0.7, + dashArray: travelMode === "walking" ? "8 8" : null + }).addTo(map); + + resultObjects.push(polyline); } function runQuery(query) { @@ -446,42 +513,42 @@ function runQuery(query) { color: "limegreen", fillColor: "limegreen", fillOpacity: 0.5, - radius: maximumWalkingDistance + radius: 10 // maximumWalkingDistance }).addTo(map); const arrivalCircle = L.circle([query[1].latitude, query[1].longitude], { color: "red", fillColor: "red", fillOpacity: 0.5, - radius: maximumWalkingDistance + radius: 10 // maximumWalkingDistance }).addTo(map); resultObjects.push(departureCircle, arrivalCircle); let i = 0; let amount = 4; + const q = { + roadNetworkOnly: roadNetworkOnly, + publicTransportOnly: publicTransportOnly, + from: query[0], + to: query[1], + minimumDepartureTime: new Date(), + maximumWalkingDistance, + maximumTransferDuration: Planner.Planner.Units.fromMinutes(30), // 30 minutes + minimumWalkingSpeed: 3 + }; planner - .query({ - publicTransportOnly: true, - from: query[0], - to: query[1], - minimumDepartureTime: new Date(), - maximumWalkingDistance, - maximumTransferDuration: Planner.Planner.Units.fromMinutes(30), // 30 minutes - minimumWalkingSpeed: 3 - }) + .query(q) .take(amount) .on("error", (error) => { console.error(error); }) .on("data", path => { i++; - const color = getRandomColor(); - - addResultPanel(path, color); - addResultToMap(path, color); + addResultPanel(q, path, color); + addResultToMap(q, path, color); }) .on("end", () => { From c9f5419e7e379c16507a93f6d9abe8de02b72b4f Mon Sep 17 00:00:00 2001 From: Julian Rojas Date: Wed, 17 Jul 2019 16:15:30 +0200 Subject: [PATCH 22/85] Fix demo test --- src/demo.ts | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/demo.ts b/src/demo.ts index 23a37758..ce7bb714 100644 --- a/src/demo.ts +++ b/src/demo.ts @@ -67,18 +67,19 @@ export default async (logResults) => { let i = 0; planner.query({ - roadNetworkOnly: true, // don't mix with publicTranspotOnly, for obvious reasons - // publicTransportOnly: true, + // roadNetworkOnly: true, // don't mix with publicTranspotOnly, for obvious reasons + publicTransportOnly: true, // from: "https://data.delijn.be/stops/201657", // to: "https://data.delijn.be/stops/205910", // from: "https://data.delijn.be/stops/200455", // Deinze weg op Grammene +456 // to: "https://data.delijn.be/stops/502481", // Tielt Metaalconstructie Goossens // from: "https://data.delijn.be/stops/509927", // Tield Rameplein perron 1 // to: "https://data.delijn.be/stops/200455", // Deinze weg op Grammene +456 - from: "Ingelmunster", // Ingelmunster - // to: "http://irail.be/stations/NMBS/008892007", // Ghent-Sint-Pieters + // from: "Ingelmunster", // Ingelmunster + from: "http://irail.be/stations/NMBS/008814001", // Brussel-Zuid + to: "http://irail.be/stations/NMBS/008892007", // Ghent-Sint-Pieters // from: { latitude: 50.93278, longitude: 5.32665 }, // Pita Aladin, Hasselt - to: { latitude: 50.7980187, longitude: 3.1877779 }, // Burger Pita Pasta, Menen + // to: { latitude: 50.7980187, longitude: 3.1877779 }, // Burger Pita Pasta, Menen // from: "Hasselt", // to: "Kortrijk", minimumDepartureTime: new Date(), From c131d28a9b8459ff5854bc97d0bba3036524288a Mon Sep 17 00:00:00 2001 From: Pieter Colpaert Date: Wed, 17 Jul 2019 17:53:00 +0200 Subject: [PATCH 23/85] New alpha release --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index da24841c..45257fa7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "plannerjs", - "version": "0.0.3-alpha", + "version": "0.0.4-alpha", "description": "The JavaScript framework for journey planning.", "main": "lib/index.js", "license": "MIT", From 9fb6157822197c30a5056a177efd04551a1bc3eb Mon Sep 17 00:00:00 2001 From: Harm Delva Date: Thu, 18 Jul 2019 10:25:09 +0200 Subject: [PATCH 24/85] Fixed duplicate timers --- src/analytics/isochrones/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/analytics/isochrones/main.ts b/src/analytics/isochrones/main.ts index 99104977..5f299417 100644 --- a/src/analytics/isochrones/main.ts +++ b/src/analytics/isochrones/main.ts @@ -124,8 +124,8 @@ export default class IsochroneGenerator implements EventEmitter { } public async getIsochrone(maxDuration: number, reset = true) { - console.time("execution time"); if (this.showDebugLogs) { + console.time(Geo.getId(this.startPoint)); console.log(`Generating the ${maxDuration / 1000}s isochrone ` + `from ${this.startPoint.latitude}, ${this.startPoint.longitude}`); } @@ -152,7 +152,7 @@ export default class IsochroneGenerator implements EventEmitter { if (this.showDebugLogs) { console.log(`Path tree computed using ${this.reachedTiles.size} tiles.`); - console.timeEnd("execution time"); + console.timeEnd(Geo.getId(this.startPoint)); } return await visualizeConcaveIsochrone(this.locationResolver, pathTree, maxDuration); From afc2decb811737becf0175b61d1c31e3f6c60d8e Mon Sep 17 00:00:00 2001 From: Harm Delva Date: Fri, 19 Jul 2019 11:47:24 +0200 Subject: [PATCH 25/85] Fix LocationResolving for negative coordinates --- src/query-runner/LocationResolverConvenience.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/query-runner/LocationResolverConvenience.ts b/src/query-runner/LocationResolverConvenience.ts index 1bc0cf93..556619f4 100644 --- a/src/query-runner/LocationResolverConvenience.ts +++ b/src/query-runner/LocationResolverConvenience.ts @@ -31,7 +31,7 @@ export default class LocationResolverConvenience implements ILocationResolver { if (typeof input === "string" && !this.isId(input)) { if (input.includes("geo:")) { - const expression = /geo:([0-9.]+),([0-9.]+)/; + const expression = /geo:([\-0-9.]+),([\-0-9.]+)/; const result = expression.exec(input); if (result && result.length) { From 24bc7dc89dc7f9a356975f886ffb9ebf63fadad8 Mon Sep 17 00:00:00 2001 From: Harm Delva Date: Fri, 19 Jul 2019 15:59:16 +0200 Subject: [PATCH 26/85] Follow the legal speed limits --- src/analytics/isochrones/demo.html | 2 +- src/analytics/isochrones/main.ts | 13 ++++++--- src/entities/profile/DynamicProfile.ts | 30 +++++---------------- src/fetcher/tiles/RoutableTileFetcherRaw.ts | 4 ++- 4 files changed, 20 insertions(+), 29 deletions(-) diff --git a/src/analytics/isochrones/demo.html b/src/analytics/isochrones/demo.html index bf33a9e9..ac529d03 100644 --- a/src/analytics/isochrones/demo.html +++ b/src/analytics/isochrones/demo.html @@ -59,7 +59,7 @@

Time (s):
-

+

diff --git a/src/analytics/isochrones/main.ts b/src/analytics/isochrones/main.ts index 5f299417..a315897c 100644 --- a/src/analytics/isochrones/main.ts +++ b/src/analytics/isochrones/main.ts @@ -34,6 +34,7 @@ export default class IsochroneGenerator implements EventEmitter { private activeProfile: Promise; private loaded: Promise; + private embedded: boolean; private showIncremental: boolean; private showDebugLogs: boolean; private reachedPoints: ILocation[]; @@ -51,8 +52,9 @@ export default class IsochroneGenerator implements EventEmitter { this.reachedPoints = [this.startPoint]; this.showIncremental = false; this.showDebugLogs = false; + this.embedded = false; - this.activeProfile = this.profileProvider.getProfile("http://hdelva.be/profile/car"); + this.setProfileID("http://hdelva.be/profile/car"); } public enableIncrementalResults() { @@ -118,9 +120,7 @@ export default class IsochroneGenerator implements EventEmitter { public async setProfileID(profileID: string) { this.activeProfile = this.profileProvider.getProfile(profileID); - this.loaded = this.embedBeginPoint(this.startPoint).then(() => { - return true; - }); + this.embedded = false; } public async getIsochrone(maxDuration: number, reset = true) { @@ -130,6 +130,11 @@ export default class IsochroneGenerator implements EventEmitter { `from ${this.startPoint.latitude}, ${this.startPoint.longitude}`); } + if (!this.embedded) { + await this.embedBeginPoint(this.startPoint); + this.embedded = true; + } + await this.loaded; const profile = await this.activeProfile; diff --git a/src/entities/profile/DynamicProfile.ts b/src/entities/profile/DynamicProfile.ts index af0b1ae2..6bfc2053 100644 --- a/src/entities/profile/DynamicProfile.ts +++ b/src/entities/profile/DynamicProfile.ts @@ -74,10 +74,12 @@ export default class DynamicProfile extends Profile { } public getMaxSpeed(): number { - return this.maxSpeed; + return this.maxSpeed || 300; } public getSpeed(way: RoutableTileWay): number { + const speedLimit = Math.min(way.maxSpeed || Infinity, this.getMaxSpeed()); + for (const rule of this.speedRules) { if (rule.conclusion.speed !== undefined) { // should always be the case, but just in case @@ -85,36 +87,18 @@ export default class DynamicProfile extends Profile { const field = this.mapping[rule.condition.predicate]; if (way[field] === rule.condition.object) { if (typeof (rule.conclusion.speed) === "number") { - return rule.conclusion.speed; - } - /* - // fixme: speeds are currently strings - else { - const uri = URI.inNS(PROFILE, "fromProperty"); - const sourceField = getOsmTagMapping()[rule.conclusion.speed[uri]]; - if (way[sourceField]) { - return way[sourceField]; - } + return Math.min(rule.conclusion.speed, speedLimit); } - */ } else { if (typeof (rule.conclusion.speed) === "number") { - return rule.conclusion.speed; + return Math.min(rule.conclusion.speed, speedLimit); } - /* - // fixme: speeds are currently strings - else { - const uri = URI.inNS(PROFILE, "fromProperty"); - const sourceField = getOsmTagMapping()[rule.conclusion.speed[uri]]; - if (way[sourceField]) { - return way[sourceField]; - } - } - */ } } } } + + return Math.min(speedLimit, this.getDefaultSpeed()); } public getDistance(from: RoutableTileNode, to: RoutableTileNode, way: RoutableTileWay): DistanceM { diff --git a/src/fetcher/tiles/RoutableTileFetcherRaw.ts b/src/fetcher/tiles/RoutableTileFetcherRaw.ts index b2ce98c8..af18be98 100644 --- a/src/fetcher/tiles/RoutableTileFetcherRaw.ts +++ b/src/fetcher/tiles/RoutableTileFetcherRaw.ts @@ -88,7 +88,9 @@ export default class RoutableTileFetcherRaw implements IRoutableTileFetcher { private createWay(blob): RoutableTileWay { const id = blob["@id"]; const way = new RoutableTileWay(id); - way.maxSpeed = parseFloat(blob["osm:maxspeed"]); + if (blob["osm:maxspeed"]) { + way.maxSpeed = parseFloat(blob["osm:maxspeed"]); + } way.segments = [blob["osm:hasNodes"]]; way.name = blob["osm:name"]; From 83bb2b1ff71a66a1ed38a1e41bdc0d95e65a7da9 Mon Sep 17 00:00:00 2001 From: Harm Delva Date: Fri, 19 Jul 2019 16:54:41 +0200 Subject: [PATCH 27/85] Make the demo boring again to please the unit --- src/demo.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/demo.ts b/src/demo.ts index 23a37758..aef023ac 100644 --- a/src/demo.ts +++ b/src/demo.ts @@ -67,8 +67,8 @@ export default async (logResults) => { let i = 0; planner.query({ - roadNetworkOnly: true, // don't mix with publicTranspotOnly, for obvious reasons - // publicTransportOnly: true, + // roadNetworkOnly: true, // don't mix with publicTranspotOnly, for obvious reasons + publicTransportOnly: true, // from: "https://data.delijn.be/stops/201657", // to: "https://data.delijn.be/stops/205910", // from: "https://data.delijn.be/stops/200455", // Deinze weg op Grammene +456 @@ -76,9 +76,9 @@ export default async (logResults) => { // from: "https://data.delijn.be/stops/509927", // Tield Rameplein perron 1 // to: "https://data.delijn.be/stops/200455", // Deinze weg op Grammene +456 from: "Ingelmunster", // Ingelmunster - // to: "http://irail.be/stations/NMBS/008892007", // Ghent-Sint-Pieters + to: "http://irail.be/stations/NMBS/008892007", // Ghent-Sint-Pieters // from: { latitude: 50.93278, longitude: 5.32665 }, // Pita Aladin, Hasselt - to: { latitude: 50.7980187, longitude: 3.1877779 }, // Burger Pita Pasta, Menen + // to: { latitude: 50.7980187, longitude: 3.1877779 }, // Burger Pita Pasta, Menen // from: "Hasselt", // to: "Kortrijk", minimumDepartureTime: new Date(), From d68d92784c1da30583793a9595deb3a0710b2d40 Mon Sep 17 00:00:00 2001 From: Harm Delva Date: Mon, 22 Jul 2019 14:10:00 +0200 Subject: [PATCH 28/85] Significant isochrone speedups --- src/analytics/isochrones/demo.html | 1 + src/analytics/isochrones/main.ts | 15 ++++++++--- src/analytics/isochrones/visualize.ts | 26 ++++++++----------- .../dijkstra-tree/dijkstra-tree-js.ts | 4 +++ src/query-runner/LocationResolverDefault.ts | 16 ++++-------- 5 files changed, 32 insertions(+), 30 deletions(-) diff --git a/src/analytics/isochrones/demo.html b/src/analytics/isochrones/demo.html index ac529d03..8f335523 100644 --- a/src/analytics/isochrones/demo.html +++ b/src/analytics/isochrones/demo.html @@ -126,6 +126,7 @@ const point = { latitude: focus[0], longitude: focus[1] }; const x = new Planner.IsochroneGenerator(point); x.enableIncrementalResults(); + x.enableDebugLogs(); first = true; x.on("TILE", (coord) => { diff --git a/src/analytics/isochrones/main.ts b/src/analytics/isochrones/main.ts index a315897c..4b6779c7 100644 --- a/src/analytics/isochrones/main.ts +++ b/src/analytics/isochrones/main.ts @@ -157,21 +157,27 @@ export default class IsochroneGenerator implements EventEmitter { if (this.showDebugLogs) { console.log(`Path tree computed using ${this.reachedTiles.size} tiles.`); + console.timeLog(Geo.getId(this.startPoint)); + } + + const result = await visualizeConcaveIsochrone(pathTree, maxDuration, this.registry); + + if (this.showDebugLogs) { console.timeEnd(Geo.getId(this.startPoint)); } - return await visualizeConcaveIsochrone(this.locationResolver, pathTree, maxDuration); + return result; } private async fetchTile(coordinate: RoutableTileCoordinate) { const tileId = this.tileProvider.getIdForTileCoords(coordinate); if (!this.reachedTiles.has(tileId)) { this.emit("TILE", coordinate); - this.reachedTiles.add(tileId); const profile = await this.activeProfile; const pathfinder = this.pathfinderProvider.getShortestPathTreeAlgorithm(profile); const tile = await this.tileProvider.getByTileCoords(coordinate); + this.reachedTiles.add(tileId); const boundaryNodes: Set = new Set(); for (const nodeId of tile.getNodes()) { @@ -199,9 +205,10 @@ export default class IsochroneGenerator implements EventEmitter { const self = this; for (const nodeId of boundaryNodes) { + const node = self.registry.getNode(nodeId); + const boundaryTileCoordinate = toTileCoordinate(node.latitude, node.longitude); + pathfinder.setBreakPoint(nodeId, async (on: string) => { - const node = self.registry.getNode(on); - const boundaryTileCoordinate = toTileCoordinate(node.latitude, node.longitude); await self.fetchTile(boundaryTileCoordinate); }); } diff --git a/src/analytics/isochrones/visualize.ts b/src/analytics/isochrones/visualize.ts index db1a2cf2..e56d532a 100644 --- a/src/analytics/isochrones/visualize.ts +++ b/src/analytics/isochrones/visualize.ts @@ -27,28 +27,24 @@ type Ring = ILocation[]; type Polygon = Ring[]; export async function visualizeConcaveIsochrone( - locationResolver: ILocationResolver, pathTree: IPathTree, maxCost: number, + registry: RoutableTileRegistry, ) { - const nodes = []; - const costs = {}; - for (const [id, branch] of Object.entries(pathTree)) { - const { duration } = branch; - const node = await locationResolver.resolve(id); - if (node && duration !== Infinity) { - nodes.push(node); - costs[Geo.getId(node)] = duration; + const locations = []; + for (const node of registry.getNodes()) { + const branch = pathTree[node.id]; + if (branch) { + const { duration } = branch; + if (duration < maxCost) { + locations.push([node.longitude, node.latitude]); + } } } - const internalNodes = nodes - .filter((node) => costs[node.id] < maxCost) - .map((n) => [n.longitude, n.latitude]); - let isochrones = []; - if (internalNodes.length > 0) { - const shell = concaveman(internalNodes); + if (locations.length > 0) { + const shell = concaveman(locations); isochrones = [[shell.map((point) => { return { longitude: point[0], latitude: point[1] }; })]]; diff --git a/src/pathfinding/dijkstra-tree/dijkstra-tree-js.ts b/src/pathfinding/dijkstra-tree/dijkstra-tree-js.ts index ac68e4bd..ca3c62fb 100644 --- a/src/pathfinding/dijkstra-tree/dijkstra-tree-js.ts +++ b/src/pathfinding/dijkstra-tree/dijkstra-tree-js.ts @@ -92,6 +92,10 @@ export default class DijkstraTree implements IShortestPathTreeAlgorithm { queue.push(next); this.costs[next.position] = next.duration; this.previousNodes[next.position] = position; + + if (this.breakPoints[next.position]) { + this.breakPoints[next.position](this.graph.getLabel(next.position)); + } } } } diff --git a/src/query-runner/LocationResolverDefault.ts b/src/query-runner/LocationResolverDefault.ts index 86a31b00..52d75145 100644 --- a/src/query-runner/LocationResolverDefault.ts +++ b/src/query-runner/LocationResolverDefault.ts @@ -58,22 +58,16 @@ export default class LocationResolverDefault implements ILocationResolver { } private async resolveById(id: string): Promise { - const stop: IStop = await this.stopsProvider.getStopById(id); - - if (stop) { - return { - id, - name: stop.name, - latitude: stop.latitude, - longitude: stop.longitude, - }; - } - const node = this.tileRegistry.getNode(id); if (node) { return node; } + const stop: IStop = await this.stopsProvider.getStopById(id); + if (stop) { + return stop; + } + return Promise.reject(new LocationResolverError(`No fetcher for id ${id}`)); } From 5d41bd1179b0fdbfac6b1d87d833e331a46fe4a0 Mon Sep 17 00:00:00 2001 From: Harm Delva Date: Mon, 22 Jul 2019 16:41:57 +0200 Subject: [PATCH 29/85] Add obstacle times --- src/analytics/isochrones/demo.html | 4 +- src/entities/profile/DynamicProfile.ts | 39 ++++++++++++++++--- src/entities/profile/PedestrianProfile.ts | 4 ++ src/entities/profile/Profile.ts | 1 + src/entities/profile/ProfileConclusion.ts | 1 + src/entities/tiles/node.ts | 4 ++ src/fetcher/profiles/ProfileFetcherDefault.ts | 9 ++++- src/fetcher/tiles/RoutableTileFetcherRaw.ts | 8 ++++ 8 files changed, 61 insertions(+), 9 deletions(-) diff --git a/src/analytics/isochrones/demo.html b/src/analytics/isochrones/demo.html index 8f335523..a9fc5871 100644 --- a/src/analytics/isochrones/demo.html +++ b/src/analytics/isochrones/demo.html @@ -47,7 +47,7 @@

-

+

@@ -125,7 +125,7 @@ const point = { latitude: focus[0], longitude: focus[1] }; const x = new Planner.IsochroneGenerator(point); - x.enableIncrementalResults(); + //x.enableIncrementalResults(); x.enableDebugLogs(); first = true; diff --git a/src/entities/profile/DynamicProfile.ts b/src/entities/profile/DynamicProfile.ts index 6bfc2053..0e077c45 100644 --- a/src/entities/profile/DynamicProfile.ts +++ b/src/entities/profile/DynamicProfile.ts @@ -1,8 +1,5 @@ -import Highway from "../../enums/Highway"; import getOsmTagMapping from "../../enums/OSMTags"; import { DistanceM, DurationMs } from "../../interfaces/units"; -import { PROFILE } from "../../uri/constants"; -import URI from "../../uri/uri"; import Geo from "../../util/Geo"; import { RoutableTileNode } from "../tiles/node"; import { RoutableTileWay } from "../tiles/way"; @@ -20,6 +17,7 @@ export default class DynamicProfile extends Profile { public speedRules: ProfileRule[]; public priorityRules: ProfileRule[]; public obstacleRules: ProfileRule[]; + public obstacleTimeRules: ProfileRule[]; public maxSpeed: number; public usePublicTransport: boolean; @@ -30,6 +28,16 @@ export default class DynamicProfile extends Profile { super(); this.id = url; this.mapping = getOsmTagMapping(); + + this.accessRules = []; + this.onewayRules = []; + this.speedRules = []; + this.priorityRules = []; + this.obstacleRules = []; + this.obstacleTimeRules = []; + + this.maxSpeed = 10; + this.usePublicTransport = true; } public getID(): string { @@ -129,11 +137,11 @@ export default class DynamicProfile extends Profile { } public getCost(from: RoutableTileNode, to: RoutableTileNode, way: RoutableTileWay): number { - return this.getMultiplier(way) * this.getDuration(from, to, way); + return this.getMultiplier(way) * (this.getDuration(from, to, way) + this.getObstacleTime(to)); } public isObstacle(node: RoutableTileNode): boolean { - for (const rule of this.accessRules) { + for (const rule of this.obstacleRules) { if (rule.conclusion.isObstacle !== undefined) { // should always be the case, but just in case if (rule.condition !== undefined) { @@ -147,4 +155,25 @@ export default class DynamicProfile extends Profile { } } } + + public getObstacleTime(node: RoutableTileNode): DurationMs { + for (const rule of this.obstacleTimeRules) { + if (rule.conclusion.obstacleTime !== undefined) { + // should always be the case, but just in case + if (rule.condition !== undefined) { + const field = this.mapping[rule.condition.predicate]; + if (node[field] && rule.condition.object === undefined) { + return rule.conclusion.obstacleTime * 1000; + } + if (node[field] === rule.condition.object && rule.condition.object !== undefined) { + return rule.conclusion.obstacleTime * 1000; + } + } else { + return rule.conclusion.obstacleTime * 1000; + } + } + } + + return 0; + } } diff --git a/src/entities/profile/PedestrianProfile.ts b/src/entities/profile/PedestrianProfile.ts index bc64dbcc..ffc6dfc8 100644 --- a/src/entities/profile/PedestrianProfile.ts +++ b/src/entities/profile/PedestrianProfile.ts @@ -90,4 +90,8 @@ export default class PedestrianProfile extends Profile { public isObstacle(node: RoutableTileNode): boolean { return false; } + + public getObstacleTime(node: RoutableTileNode): DurationMs { + return 0; + } } diff --git a/src/entities/profile/Profile.ts b/src/entities/profile/Profile.ts index 557d85e6..e63447c9 100644 --- a/src/entities/profile/Profile.ts +++ b/src/entities/profile/Profile.ts @@ -20,4 +20,5 @@ export default abstract class Profile { public abstract getCost(from: ILocation, to: ILocation, way: RoutableTileWay): number; public abstract isObstacle(node: RoutableTileNode): boolean; + public abstract getObstacleTime(node: RoutableTileNode): DurationMs; } diff --git a/src/entities/profile/ProfileConclusion.ts b/src/entities/profile/ProfileConclusion.ts index 802e6dcf..153cc5e4 100644 --- a/src/entities/profile/ProfileConclusion.ts +++ b/src/entities/profile/ProfileConclusion.ts @@ -13,6 +13,7 @@ export default class ProfileConclusion implements IEntity { public speed?: number | ProfileValueReference; public isObstacle?: boolean; public priority?: number; + public obstacleTime?: number; constructor(id: string) { this.id = id; diff --git a/src/entities/tiles/node.ts b/src/entities/tiles/node.ts index c07aaf7c..9125ed19 100644 --- a/src/entities/tiles/node.ts +++ b/src/entities/tiles/node.ts @@ -1,4 +1,6 @@ import Barrier from "../../enums/Barrier"; +import Crossing from "../../enums/Crossing"; +import Highway from "../../enums/Highway"; import ILocation from "../../interfaces/ILocation"; export class RoutableTileNode implements ILocation { @@ -11,6 +13,8 @@ export class RoutableTileNode implements ILocation { public id: string; public barrierKind?: Barrier; + public highwayKind?: Highway; + public crossingKind?: Crossing; constructor(id: string) { this.id = id; diff --git a/src/fetcher/profiles/ProfileFetcherDefault.ts b/src/fetcher/profiles/ProfileFetcherDefault.ts index ed1365a9..b8a0206f 100644 --- a/src/fetcher/profiles/ProfileFetcherDefault.ts +++ b/src/fetcher/profiles/ProfileFetcherDefault.ts @@ -31,6 +31,7 @@ export default class ProfileFetcherDefault implements IProfileFetcher { this.ldLoader.defineCollection(URI.inNS(PROFILE, "hasSpeedRules")); this.ldLoader.defineCollection(URI.inNS(PROFILE, "hasPriorityRules")); this.ldLoader.defineCollection(URI.inNS(PROFILE, "hasObstacleRules")); + this.ldLoader.defineCollection(URI.inNS(PROFILE, "hasObstacleTimeRules")); } public async parseProfileBlob(blob: object, id: string): Promise { @@ -65,13 +66,15 @@ export default class ProfileFetcherDefault implements IProfileFetcher { entity[URI.inNS(PROFILE, "hasOnewayRules")] !== undefined || entity[URI.inNS(PROFILE, "hasSpeedRules")] !== undefined || entity[URI.inNS(PROFILE, "hasPriorityRules")] !== undefined || - entity[URI.inNS(PROFILE, "hasObstacleRules")] !== undefined, + entity[URI.inNS(PROFILE, "hasObstacleRules")] !== undefined || + entity[URI.inNS(PROFILE, "hasObstacleTimeRules")] !== undefined, ); view.addMapping(URI.inNS(PROFILE, "hasAccessRules"), "accessRules", this.getRuleView()); view.addMapping(URI.inNS(PROFILE, "hasOnewayRules"), "onewayRules", this.getRuleView()); view.addMapping(URI.inNS(PROFILE, "hasSpeedRules"), "speedRules", this.getRuleView()); view.addMapping(URI.inNS(PROFILE, "hasPriorityRules"), "priorityRules", this.getRuleView()); view.addMapping(URI.inNS(PROFILE, "hasObstacleRules"), "obstacleRules", this.getRuleView()); + view.addMapping(URI.inNS(PROFILE, "hasObstacleTimeRules"), "obstacleTimeRules", this.getRuleView()); view.addMapping(URI.inNS(PROFILE, "hasMaxSpeed"), "maxSpeed"); view.addMapping(URI.inNS(PROFILE, "usePublicTransport"), "usePublicTransport"); return view; @@ -106,7 +109,8 @@ export default class ProfileFetcherDefault implements IProfileFetcher { (entity[URI.inNS(PROFILE, "isReversed")] !== undefined) || (entity[URI.inNS(PROFILE, "hasSpeed")] !== undefined) || (entity[URI.inNS(PROFILE, "isObstacle")] !== undefined) || - (entity[URI.inNS(PROFILE, "hasPriority")] !== undefined), + (entity[URI.inNS(PROFILE, "hasPriority")] !== undefined) || + (entity[URI.inNS(PROFILE, "hasObstacleTime")] !== undefined), ); view.addMapping(URI.inNS(PROFILE, "hasAccess"), "hasAccess"); view.addMapping(URI.inNS(PROFILE, "isOneway"), "isOneway"); @@ -114,6 +118,7 @@ export default class ProfileFetcherDefault implements IProfileFetcher { view.addMapping(URI.inNS(PROFILE, "hasSpeed"), "speed"); view.addMapping(URI.inNS(PROFILE, "isObstacle"), "isObstacle"); view.addMapping(URI.inNS(PROFILE, "hasPriority"), "priority"); + view.addMapping(URI.inNS(PROFILE, "hasObstacleTime"), "obstacleTime"); return view; } } diff --git a/src/fetcher/tiles/RoutableTileFetcherRaw.ts b/src/fetcher/tiles/RoutableTileFetcherRaw.ts index af18be98..a7365aed 100644 --- a/src/fetcher/tiles/RoutableTileFetcherRaw.ts +++ b/src/fetcher/tiles/RoutableTileFetcherRaw.ts @@ -24,6 +24,7 @@ export default class RoutableTileFetcherRaw implements IRoutableTileFetcher { this.routableTileRegistry = routableTileRegistry; this.mapping = {}; + this.mapping["osm:barrier"] = "barrierKind"; this.mapping["osm:access"] = "accessRestrictions"; this.mapping["osm:bicycle"] = "bicycleAccessRestrictions"; this.mapping["osm:construction"] = "constructionKind"; @@ -82,6 +83,13 @@ export default class RoutableTileFetcherRaw implements IRoutableTileFetcher { const node = new RoutableTileNode(id); node.latitude = parseFloat(blob["geo:lat"]); node.longitude = parseFloat(blob["geo:long"]); + + for (const [tag, field] of Object.entries(this.mapping)) { + if (blob[tag] && !node[field]) { + node[field] = URI.fakeExpand(OSM, blob[tag]); + } + } + return node; } From dcc232ac1ec4fc097930e03349784e61a8c89f60 Mon Sep 17 00:00:00 2001 From: Harm Delva Date: Mon, 22 Jul 2019 16:54:38 +0200 Subject: [PATCH 30/85] Bump package version --- package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 45257fa7..45561b19 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "plannerjs", - "version": "0.0.4-alpha", + "version": "0.0.5-alpha", "description": "The JavaScript framework for journey planning.", "main": "lib/index.js", "license": "MIT", @@ -59,5 +59,6 @@ "typescript": "^3.3.3", "webpack": "^4.25.1", "webpack-cli": "^3.1.2" - } + }, + "sideEffects": false } From 091601f094612bb8908faed81fbbd7b0662b8839 Mon Sep 17 00:00:00 2001 From: Julian Rojas Date: Mon, 22 Jul 2019 17:21:17 +0200 Subject: [PATCH 31/85] Update dependencies for fixing vulnerabilities --- package-lock.json | 1927 ++++++++++++++++++++++++++++++--------------- package.json | 22 +- 2 files changed, 1296 insertions(+), 653 deletions(-) diff --git a/package-lock.json b/package-lock.json index 4973f320..9c66fb85 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "plannerjs", - "version": "0.0.3-alpha", + "version": "0.0.5-alpha", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -41,9 +41,9 @@ }, "dependencies": { "@types/rdf-js": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/rdf-js/-/rdf-js-2.0.1.tgz", - "integrity": "sha512-x3Qct8TPilUos4znM1gANmtTvjOFdDRItmpEM2Nu9QgAx258FN9k22OvOu2TmPzOlx8a1FLdEW3o33UXHQt5ow==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@types/rdf-js/-/rdf-js-2.0.2.tgz", + "integrity": "sha512-rHtC0mtRmMc9JzITesWhzmAXqfyJZhY8MygmmWZc3oWS5DPsGsKs+t3RXxGYlM4UKOqlD9Ki4owS1Cx/GPMeqw==", "requires": { "@types/node": "*" } @@ -88,9 +88,9 @@ "dev": true }, "@types/haversine": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@types/haversine/-/haversine-1.1.0.tgz", - "integrity": "sha512-r3czDJZMjF/BpTzpzmehmAml68GMusKuD7es8qjl5kNtrfQAZ8PyARUUZudHq+qEk3VEln1WzSJ8KMQsxQQbPQ==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/@types/haversine/-/haversine-1.1.4.tgz", + "integrity": "sha512-Lcz1bIWVwuLeNVbNwMOSyQwf/F+2qW18lrEgJjp6Xh0iquZQuG25mgogP7RdUELq0uw2TKjZirw27ojybRMnuw==", "dev": true }, "@types/highlight.js": { @@ -100,9 +100,9 @@ "dev": true }, "@types/jest": { - "version": "23.3.7", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-23.3.7.tgz", - "integrity": "sha512-N0p6mHrS0RHC3A9hHN4QH1RM2fGSb2E8rt6ONEK5xKSnyKtn/JAhr1VritkCn6cdyDBephVB80THqJGWzK8FAw==", + "version": "23.3.14", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-23.3.14.tgz", + "integrity": "sha512-Q5hTcfdudEL2yOmluA1zaSyPbzWPmJ3XfSWeP3RyoYvS9hnje1ZyagrZOuQ6+1nQC1Gw+7gap3pLNL3xL6UBug==", "dev": true }, "@types/lodash": { @@ -148,175 +148,179 @@ } }, "@webassemblyjs/ast": { - "version": "1.7.11", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.7.11.tgz", - "integrity": "sha512-ZEzy4vjvTzScC+SH8RBssQUawpaInUdMTYwYYLh54/s8TuT0gBLuyUnppKsVyZEi876VmmStKsUs28UxPgdvrA==", + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.8.5.tgz", + "integrity": "sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ==", "dev": true, "requires": { - "@webassemblyjs/helper-module-context": "1.7.11", - "@webassemblyjs/helper-wasm-bytecode": "1.7.11", - "@webassemblyjs/wast-parser": "1.7.11" + "@webassemblyjs/helper-module-context": "1.8.5", + "@webassemblyjs/helper-wasm-bytecode": "1.8.5", + "@webassemblyjs/wast-parser": "1.8.5" } }, "@webassemblyjs/floating-point-hex-parser": { - "version": "1.7.11", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.7.11.tgz", - "integrity": "sha512-zY8dSNyYcgzNRNT666/zOoAyImshm3ycKdoLsyDw/Bwo6+/uktb7p4xyApuef1dwEBo/U/SYQzbGBvV+nru2Xg==", + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz", + "integrity": "sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ==", "dev": true }, "@webassemblyjs/helper-api-error": { - "version": "1.7.11", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.7.11.tgz", - "integrity": "sha512-7r1qXLmiglC+wPNkGuXCvkmalyEstKVwcueZRP2GNC2PAvxbLYwLLPr14rcdJaE4UtHxQKfFkuDFuv91ipqvXg==", + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz", + "integrity": "sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA==", "dev": true }, "@webassemblyjs/helper-buffer": { - "version": "1.7.11", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.7.11.tgz", - "integrity": "sha512-MynuervdylPPh3ix+mKZloTcL06P8tenNH3sx6s0qE8SLR6DdwnfgA7Hc9NSYeob2jrW5Vql6GVlsQzKQCa13w==", + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz", + "integrity": "sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q==", "dev": true }, "@webassemblyjs/helper-code-frame": { - "version": "1.7.11", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.7.11.tgz", - "integrity": "sha512-T8ESC9KMXFTXA5urJcyor5cn6qWeZ4/zLPyWeEXZ03hj/x9weSokGNkVCdnhSabKGYWxElSdgJ+sFa9G/RdHNw==", + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz", + "integrity": "sha512-VQAadSubZIhNpH46IR3yWO4kZZjMxN1opDrzePLdVKAZ+DFjkGD/rf4v1jap744uPVU6yjL/smZbRIIJTOUnKQ==", "dev": true, "requires": { - "@webassemblyjs/wast-printer": "1.7.11" + "@webassemblyjs/wast-printer": "1.8.5" } }, "@webassemblyjs/helper-fsm": { - "version": "1.7.11", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.7.11.tgz", - "integrity": "sha512-nsAQWNP1+8Z6tkzdYlXT0kxfa2Z1tRTARd8wYnc/e3Zv3VydVVnaeePgqUzFrpkGUyhUUxOl5ML7f1NuT+gC0A==", + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz", + "integrity": "sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow==", "dev": true }, "@webassemblyjs/helper-module-context": { - "version": "1.7.11", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.7.11.tgz", - "integrity": "sha512-JxfD5DX8Ygq4PvXDucq0M+sbUFA7BJAv/GGl9ITovqE+idGX+J3QSzJYz+LwQmL7fC3Rs+utvWoJxDb6pmC0qg==", - "dev": true + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz", + "integrity": "sha512-/O1B236mN7UNEU4t9X7Pj38i4VoU8CcMHyy3l2cV/kIF4U5KoHXDVqcDuOs1ltkac90IM4vZdHc52t1x8Yfs3g==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.8.5", + "mamacro": "^0.0.3" + } }, "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.7.11", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.7.11.tgz", - "integrity": "sha512-cMXeVS9rhoXsI9LLL4tJxBgVD/KMOKXuFqYb5oCJ/opScWpkCMEz9EJtkonaNcnLv2R3K5jIeS4TRj/drde1JQ==", + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz", + "integrity": "sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ==", "dev": true }, "@webassemblyjs/helper-wasm-section": { - "version": "1.7.11", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.7.11.tgz", - "integrity": "sha512-8ZRY5iZbZdtNFE5UFunB8mmBEAbSI3guwbrsCl4fWdfRiAcvqQpeqd5KHhSWLL5wuxo53zcaGZDBU64qgn4I4Q==", + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz", + "integrity": "sha512-VV083zwR+VTrIWWtgIUpqfvVdK4ff38loRmrdDBgBT8ADXYsEZ5mPQ4Nde90N3UYatHdYoDIFb7oHzMncI02tA==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.7.11", - "@webassemblyjs/helper-buffer": "1.7.11", - "@webassemblyjs/helper-wasm-bytecode": "1.7.11", - "@webassemblyjs/wasm-gen": "1.7.11" + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/helper-buffer": "1.8.5", + "@webassemblyjs/helper-wasm-bytecode": "1.8.5", + "@webassemblyjs/wasm-gen": "1.8.5" } }, "@webassemblyjs/ieee754": { - "version": "1.7.11", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.7.11.tgz", - "integrity": "sha512-Mmqx/cS68K1tSrvRLtaV/Lp3NZWzXtOHUW2IvDvl2sihAwJh4ACE0eL6A8FvMyDG9abes3saB6dMimLOs+HMoQ==", + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz", + "integrity": "sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g==", "dev": true, "requires": { "@xtuc/ieee754": "^1.2.0" } }, "@webassemblyjs/leb128": { - "version": "1.7.11", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.7.11.tgz", - "integrity": "sha512-vuGmgZjjp3zjcerQg+JA+tGOncOnJLWVkt8Aze5eWQLwTQGNgVLcyOTqgSCxWTR4J42ijHbBxnuRaL1Rv7XMdw==", + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.8.5.tgz", + "integrity": "sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A==", "dev": true, "requires": { - "@xtuc/long": "4.2.1" + "@xtuc/long": "4.2.2" } }, "@webassemblyjs/utf8": { - "version": "1.7.11", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.7.11.tgz", - "integrity": "sha512-C6GFkc7aErQIAH+BMrIdVSmW+6HSe20wg57HEC1uqJP8E/xpMjXqQUxkQw07MhNDSDcGpxI9G5JSNOQCqJk4sA==", + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.8.5.tgz", + "integrity": "sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw==", "dev": true }, "@webassemblyjs/wasm-edit": { - "version": "1.7.11", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.7.11.tgz", - "integrity": "sha512-FUd97guNGsCZQgeTPKdgxJhBXkUbMTY6hFPf2Y4OedXd48H97J+sOY2Ltaq6WGVpIH8o/TGOVNiVz/SbpEMJGg==", + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz", + "integrity": "sha512-A41EMy8MWw5yvqj7MQzkDjU29K7UJq1VrX2vWLzfpRHt3ISftOXqrtojn7nlPsZ9Ijhp5NwuODuycSvfAO/26Q==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.7.11", - "@webassemblyjs/helper-buffer": "1.7.11", - "@webassemblyjs/helper-wasm-bytecode": "1.7.11", - "@webassemblyjs/helper-wasm-section": "1.7.11", - "@webassemblyjs/wasm-gen": "1.7.11", - "@webassemblyjs/wasm-opt": "1.7.11", - "@webassemblyjs/wasm-parser": "1.7.11", - "@webassemblyjs/wast-printer": "1.7.11" + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/helper-buffer": "1.8.5", + "@webassemblyjs/helper-wasm-bytecode": "1.8.5", + "@webassemblyjs/helper-wasm-section": "1.8.5", + "@webassemblyjs/wasm-gen": "1.8.5", + "@webassemblyjs/wasm-opt": "1.8.5", + "@webassemblyjs/wasm-parser": "1.8.5", + "@webassemblyjs/wast-printer": "1.8.5" } }, "@webassemblyjs/wasm-gen": { - "version": "1.7.11", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.7.11.tgz", - "integrity": "sha512-U/KDYp7fgAZX5KPfq4NOupK/BmhDc5Kjy2GIqstMhvvdJRcER/kUsMThpWeRP8BMn4LXaKhSTggIJPOeYHwISA==", + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz", + "integrity": "sha512-BCZBT0LURC0CXDzj5FXSc2FPTsxwp3nWcqXQdOZE4U7h7i8FqtFK5Egia6f9raQLpEKT1VL7zr4r3+QX6zArWg==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.7.11", - "@webassemblyjs/helper-wasm-bytecode": "1.7.11", - "@webassemblyjs/ieee754": "1.7.11", - "@webassemblyjs/leb128": "1.7.11", - "@webassemblyjs/utf8": "1.7.11" + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/helper-wasm-bytecode": "1.8.5", + "@webassemblyjs/ieee754": "1.8.5", + "@webassemblyjs/leb128": "1.8.5", + "@webassemblyjs/utf8": "1.8.5" } }, "@webassemblyjs/wasm-opt": { - "version": "1.7.11", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.7.11.tgz", - "integrity": "sha512-XynkOwQyiRidh0GLua7SkeHvAPXQV/RxsUeERILmAInZegApOUAIJfRuPYe2F7RcjOC9tW3Cb9juPvAC/sCqvg==", + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz", + "integrity": "sha512-HKo2mO/Uh9A6ojzu7cjslGaHaUU14LdLbGEKqTR7PBKwT6LdPtLLh9fPY33rmr5wcOMrsWDbbdCHq4hQUdd37Q==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.7.11", - "@webassemblyjs/helper-buffer": "1.7.11", - "@webassemblyjs/wasm-gen": "1.7.11", - "@webassemblyjs/wasm-parser": "1.7.11" + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/helper-buffer": "1.8.5", + "@webassemblyjs/wasm-gen": "1.8.5", + "@webassemblyjs/wasm-parser": "1.8.5" } }, "@webassemblyjs/wasm-parser": { - "version": "1.7.11", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.7.11.tgz", - "integrity": "sha512-6lmXRTrrZjYD8Ng8xRyvyXQJYUQKYSXhJqXOBLw24rdiXsHAOlvw5PhesjdcaMadU/pyPQOJ5dHreMjBxwnQKg==", + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz", + "integrity": "sha512-pi0SYE9T6tfcMkthwcgCpL0cM9nRYr6/6fjgDtL6q/ZqKHdMWvxitRi5JcZ7RI4SNJJYnYNaWy5UUrHQy998lw==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.7.11", - "@webassemblyjs/helper-api-error": "1.7.11", - "@webassemblyjs/helper-wasm-bytecode": "1.7.11", - "@webassemblyjs/ieee754": "1.7.11", - "@webassemblyjs/leb128": "1.7.11", - "@webassemblyjs/utf8": "1.7.11" + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/helper-api-error": "1.8.5", + "@webassemblyjs/helper-wasm-bytecode": "1.8.5", + "@webassemblyjs/ieee754": "1.8.5", + "@webassemblyjs/leb128": "1.8.5", + "@webassemblyjs/utf8": "1.8.5" } }, "@webassemblyjs/wast-parser": { - "version": "1.7.11", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.7.11.tgz", - "integrity": "sha512-lEyVCg2np15tS+dm7+JJTNhNWq9yTZvi3qEhAIIOaofcYlUp0UR5/tVqOwa/gXYr3gjwSZqw+/lS9dscyLelbQ==", + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz", + "integrity": "sha512-daXC1FyKWHF1i11obK086QRlsMsY4+tIOKgBqI1lxAnkp9xe9YMcgOxm9kLe+ttjs5aWV2KKE1TWJCN57/Btsg==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.7.11", - "@webassemblyjs/floating-point-hex-parser": "1.7.11", - "@webassemblyjs/helper-api-error": "1.7.11", - "@webassemblyjs/helper-code-frame": "1.7.11", - "@webassemblyjs/helper-fsm": "1.7.11", - "@xtuc/long": "4.2.1" + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/floating-point-hex-parser": "1.8.5", + "@webassemblyjs/helper-api-error": "1.8.5", + "@webassemblyjs/helper-code-frame": "1.8.5", + "@webassemblyjs/helper-fsm": "1.8.5", + "@xtuc/long": "4.2.2" } }, "@webassemblyjs/wast-printer": { - "version": "1.7.11", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.7.11.tgz", - "integrity": "sha512-m5vkAsuJ32QpkdkDOUPGSltrg8Cuk3KBx4YrmAGQwCZPRdUHXxG4phIOuuycLemHFr74sWL9Wthqss4fzdzSwg==", + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz", + "integrity": "sha512-w0U0pD4EhlnvRyeJzBqaVSJAo9w/ce7/WPogeXLzGkO6hzhr4GnQIZ4W4uUt5b9ooAaXPtnXlj0gzsXEOUNYMg==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.7.11", - "@webassemblyjs/wast-parser": "1.7.11", - "@xtuc/long": "4.2.1" + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/wast-parser": "1.8.5", + "@xtuc/long": "4.2.2" } }, "@xtuc/ieee754": { @@ -326,9 +330,9 @@ "dev": true }, "@xtuc/long": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.1.tgz", - "integrity": "sha512-FZdkNBDqBRHKQ2MEbSC17xnPFOhZxeJ2YGSfr2BKf3sujG49Qe3bB+rGCwQfIaA7WHnGeGkSijX4FuBCdrzW/g==", + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", "dev": true }, "abab": { @@ -341,15 +345,6 @@ "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz", "integrity": "sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==" }, - "acorn-dynamic-import": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-3.0.0.tgz", - "integrity": "sha512-zVWV8Z8lislJoOKKqdNMOB+s6+XV5WERty8MnKBeFgwA+19XJjJHs2RP5dzM57FftIs+jQnRToLiWazKr6sSWg==", - "dev": true, - "requires": { - "acorn": "^5.0.0" - } - }, "acorn-globals": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.0.tgz", @@ -382,10 +377,16 @@ "json-schema-traverse": "^0.3.0" } }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "dev": true + }, "ajv-keywords": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz", - "integrity": "sha1-6GuBnGAs+IIa1jdBNpjx3sAhhHo=", + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.1.tgz", + "integrity": "sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==", "dev": true }, "ansi-escapes": { @@ -783,11 +784,12 @@ } }, "assert": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz", - "integrity": "sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", "dev": true, "requires": { + "object-assign": "^4.1.1", "util": "0.10.3" }, "dependencies": { @@ -799,7 +801,7 @@ }, "util": { "version": "0.10.3", - "resolved": "http://registry.npmjs.org/util/-/util-0.10.3.tgz", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", "dev": true, "requires": { @@ -835,9 +837,9 @@ } }, "async-each": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz", - "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", "dev": true }, "async-limiter": { @@ -1225,21 +1227,21 @@ } }, "big.js": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz", - "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==", + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", "dev": true }, "binary-extensions": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.12.0.tgz", - "integrity": "sha512-DYWGk01lDcxeS/K9IHPGWfT8PsJmbXRtRd2Sx72Tnb8pcYZQFF1oSDb8hJtS1vhp212q1Rzi5dUf9+nq0o9UIg==", + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", "dev": true }, "bluebird": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.3.tgz", - "integrity": "sha512-/qKPUQlaW1OyR51WeCPBvRnAlnZFUJkCSG5HzGnuIqhgyJtF+T94lFnn33eiazjRm2LAHVy2guNnaq48X9SJuw==", + "version": "3.5.5", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.5.tgz", + "integrity": "sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w==", "dev": true }, "bn.js": { @@ -1307,7 +1309,7 @@ }, "browserify-aes": { "version": "1.2.0", - "resolved": "http://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", "dev": true, "requires": { @@ -1344,7 +1346,7 @@ }, "browserify-rsa": { "version": "4.0.1", - "resolved": "http://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", "dev": true, "requires": { @@ -1377,12 +1379,12 @@ } }, "bs-logger": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.5.tgz", - "integrity": "sha512-uFLE0LFMxrH8Z5Hd9QgivvRbrl/NFkOTHzGhlqQxsnmx5JBLrp4bc249afLL+GccyY/8hkcGi2LpVaOzaEY0nQ==", + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", "dev": true, "requires": { - "fast-json-stable-stringify": "^2.0.0" + "fast-json-stable-stringify": "2.x" } }, "bser": { @@ -1396,7 +1398,7 @@ }, "buffer": { "version": "4.9.1", - "resolved": "http://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz", "integrity": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=", "dev": true, "requires": { @@ -1430,31 +1432,76 @@ "dev": true }, "cacache": { - "version": "10.0.4", - "resolved": "http://registry.npmjs.org/cacache/-/cacache-10.0.4.tgz", - "integrity": "sha512-Dph0MzuH+rTQzGPNT9fAnrPmMmjKfST6trxJeK7NQuHRaVw24VzPRWTmg9MpcwOVQZO0E1FBICUlFeNaKPIfHA==", - "dev": true, - "requires": { - "bluebird": "^3.5.1", - "chownr": "^1.0.1", - "glob": "^7.1.2", - "graceful-fs": "^4.1.11", - "lru-cache": "^4.1.1", - "mississippi": "^2.0.0", + "version": "11.3.3", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-11.3.3.tgz", + "integrity": "sha512-p8WcneCytvzPxhDvYp31PD039vi77I12W+/KfR9S8AZbaiARFBCpsPJS+9uhWfeBfeAtW7o/4vt3MUqLkbY6nA==", + "dev": true, + "requires": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", "mkdirp": "^0.5.1", "move-concurrently": "^1.0.1", "promise-inflight": "^1.0.1", - "rimraf": "^2.6.2", - "ssri": "^5.2.4", - "unique-filename": "^1.1.0", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", "y18n": "^4.0.0" }, "dependencies": { + "glob": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", + "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "graceful-fs": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.0.tgz", + "integrity": "sha512-jpSvDPV4Cq/bgtpndIWbI5hmYxhQGHPC4d4cqBPb4DLniCfhJokdXhwhaDuLBGLQdvvRum/UiX6ECVIPvDXqdg==", + "dev": true + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "requires": { + "yallist": "^3.0.2" + } + }, + "rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, "y18n": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", "dev": true + }, + "yallist": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz", + "integrity": "sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==", + "dev": true } } }, @@ -1541,24 +1588,23 @@ } }, "chokidar": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.0.4.tgz", - "integrity": "sha512-z9n7yt9rOvIJrMhvDtDictKrkFHeihkNl6uWMmZlmL6tJtX9Cs+87oK+teBx+JIgzvbX3yZHT3eF8vpbDxHJXQ==", + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.6.tgz", + "integrity": "sha512-V2jUo67OKkc6ySiRpJrjlpJKl9kDuG+Xb8VgsGzb+aEouhgS1D0weyPU4lEzdAcsCAvrih2J2BqyXqHWvVLw5g==", "dev": true, "requires": { "anymatch": "^2.0.0", - "async-each": "^1.0.0", - "braces": "^2.3.0", - "fsevents": "^1.2.2", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", "glob-parent": "^3.1.0", - "inherits": "^2.0.1", + "inherits": "^2.0.3", "is-binary-path": "^1.0.0", "is-glob": "^4.0.0", - "lodash.debounce": "^4.0.8", - "normalize-path": "^2.1.1", + "normalize-path": "^3.0.0", "path-is-absolute": "^1.0.0", - "readdirp": "^2.0.0", - "upath": "^1.0.5" + "readdirp": "^2.2.1", + "upath": "^1.1.1" }, "dependencies": { "array-unique": { @@ -1634,9 +1680,9 @@ "dev": true }, "is-glob": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz", - "integrity": "sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A=", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", + "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", "dev": true, "requires": { "is-extglob": "^2.1.1" @@ -1656,19 +1702,25 @@ "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", "dev": true + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true } } }, "chownr": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.1.tgz", - "integrity": "sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.2.tgz", + "integrity": "sha512-GkfeAQh+QNy3wquu9oIZr6SS5x7wGdSgNQvD10X3r+AZr1Oys22HW8kAmDMvNg2+Dm0TeGaEuO8gFwdBXxwO8A==", "dev": true }, "chrome-trace-event": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.0.tgz", - "integrity": "sha512-xDbVgyfDTT2piup/h8dK/y4QZfJRSa73bw1WZ8b4XM1o7fsFubUVGYcE+1ANtOzJJELGpYoG2961z0Z6OAld9A==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz", + "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==", "dev": true, "requires": { "tslib": "^1.9.0" @@ -1797,9 +1849,9 @@ } }, "commander": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz", - "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==" + "version": "2.20.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.0.tgz", + "integrity": "sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==" }, "commondir": { "version": "1.0.1", @@ -1917,7 +1969,7 @@ }, "create-hash": { "version": "1.2.0", - "resolved": "http://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", "dev": true, "requires": { @@ -1930,7 +1982,7 @@ }, "create-hmac": { "version": "1.1.7", - "resolved": "http://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", "dev": true, "requires": { @@ -2039,6 +2091,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, "requires": { "ms": "2.0.0" } @@ -2151,6 +2204,12 @@ "minimalistic-assert": "^1.0.0" } }, + "detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=", + "dev": true + }, "detect-indent": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz", @@ -2174,7 +2233,7 @@ }, "diffie-hellman": { "version": "5.0.3", - "resolved": "http://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", "dev": true, "requires": { @@ -2198,9 +2257,9 @@ } }, "duplexify": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.6.1.tgz", - "integrity": "sha512-vM58DwdnKmty+FSPzT14K9JXb90H+j5emaR4KYbr2KTIz00WHGbWOe5ghQTx233ZCLZtrGDALzKwcjEtSt35mA==", + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", "dev": true, "requires": { "end-of-stream": "^1.0.0", @@ -2219,9 +2278,9 @@ } }, "elliptic": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.4.1.tgz", - "integrity": "sha512-BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.0.tgz", + "integrity": "sha512-eFOJTMyCYb7xtE/caJ6JJu+bhi67WCYNbkGSknu20pmM8Ke/bqOfdnZWxyoGN26JgfxTbXrsCkEw4KheCT/KGg==", "dev": true, "requires": { "bn.js": "^4.4.0", @@ -2233,6 +2292,12 @@ "minimalistic-crypto-utils": "^1.0.0" } }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, "emojis-list": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", @@ -2335,9 +2400,9 @@ } }, "eslint-scope": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.0.tgz", - "integrity": "sha512-1G6UTDi7Jc1ELFwnR58HV4fK9OQK4S6N985f166xqXxpjU6plxFISJa2Ba9KCQuFa8RCnj/lSFJbHo7UFDBnUA==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", "dev": true, "requires": { "esrecurse": "^4.1.0", @@ -2370,9 +2435,9 @@ "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=" }, "events": { - "version": "1.1.1", - "resolved": "http://registry.npmjs.org/events/-/events-1.1.1.tgz", - "integrity": "sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.0.0.tgz", + "integrity": "sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA==", "dev": true }, "evp_bytestokey": { @@ -2433,6 +2498,15 @@ "fill-range": "^2.1.0" } }, + "expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=", + "dev": true, + "requires": { + "homedir-polyfill": "^1.0.1" + } + }, "expect": { "version": "23.6.0", "resolved": "https://registry.npmjs.org/expect/-/expect-23.6.0.tgz", @@ -2522,6 +2596,12 @@ "bser": "^2.0.0" } }, + "figgy-pudding": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.1.tgz", + "integrity": "sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w==", + "dev": true + }, "filename-regex": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", @@ -2552,14 +2632,68 @@ } }, "find-cache-dir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz", - "integrity": "sha1-kojj6ePMN0hxfTnq3hfPcfww7m8=", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", "dev": true, "requires": { "commondir": "^1.0.1", - "make-dir": "^1.0.0", - "pkg-dir": "^2.0.0" + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz", + "integrity": "sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "requires": { + "find-up": "^3.0.0" + } + } } }, "find-up": { @@ -2571,116 +2705,443 @@ "locate-path": "^2.0.0" } }, - "flush-write-stream": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.0.3.tgz", - "integrity": "sha512-calZMC10u0FMUqoiunI2AiGIIUtUIvifNwkHhNupZH4cbNnW1Itkoh/Nf5HFYmDrwWPjrUxpkZT0KhuCq0jmGw==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.4" - } - }, - "follow-redirects": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.6.1.tgz", - "integrity": "sha512-t2JCjbzxQpWvbhts3l6SH1DKzSrx8a+SsaVf4h6bG4kOXUuPYS/kg2Lr4gQSb7eemaHqJkOThF1BGyjlUkO1GQ==", - "requires": { - "debug": "=3.1.0" - } - }, - "for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", - "dev": true - }, - "for-own": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", - "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", - "dev": true, - "requires": { - "for-in": "^1.0.1" - } - }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" - }, - "form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - } - }, - "fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", - "dev": true, - "requires": { - "map-cache": "^0.2.2" - } - }, - "from2": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", - "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.0" - } - }, - "fs-extra": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", - "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - }, - "fs-write-stream-atomic": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", - "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "iferr": "^0.1.5", - "imurmurhash": "^0.1.4", - "readable-stream": "1 || 2" - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true - }, - "fsevents": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.9.tgz", - "integrity": "sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw==", + "findup-sync": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", + "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", "dev": true, - "optional": true, "requires": { - "nan": "^2.12.1", - "node-pre-gyp": "^0.12.0" + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" }, "dependencies": { - "abbrev": { - "version": "1.1.1", - "bundled": true, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "dev": true + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dev": true, + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", + "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", + "dev": true + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + } + } + }, + "flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "follow-redirects": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.7.0.tgz", + "integrity": "sha512-m/pZQy4Gj287eNy94nivy5wchN3Kp+Q5WgUPNy5lJSZ3sgkVKSYV/ZChMAQVIgx1SqfZ2zBZtPA2YlXIWxxJOQ==", + "requires": { + "debug": "^3.2.6" + }, + "dependencies": { + "debug": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", + "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + } + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true + }, + "for-own": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", + "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", + "dev": true, + "requires": { + "for-in": "^1.0.1" + } + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dev": true, + "requires": { + "map-cache": "^0.2.2" + } + }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "fsevents": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.9.tgz", + "integrity": "sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw==", + "dev": true, + "optional": true, + "requires": { + "nan": "^2.12.1", + "node-pre-gyp": "^0.12.0" + }, + "dependencies": { + "abbrev": { + "version": "1.1.1", + "bundled": true, "dev": true, "optional": true }, @@ -3280,11 +3741,46 @@ "is-glob": "^2.0.0" } }, - "global-modules-path": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/global-modules-path/-/global-modules-path-2.3.0.tgz", - "integrity": "sha512-HchvMJNYh9dGSCy8pOQ2O8u/hoXaL+0XhnrwH0RyLiSXMMTl9W3N6KUU73+JFOg5PGjtzl6VZzUQsnrpm7Szag==", - "dev": true + "global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dev": true, + "requires": { + "global-prefix": "^3.0.0" + }, + "dependencies": { + "global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dev": true, + "requires": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + } + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", + "dev": true + } + } + }, + "global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", + "dev": true, + "requires": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + } }, "globals": { "version": "9.18.0", @@ -3431,9 +3927,9 @@ } }, "hash.js": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.5.tgz", - "integrity": "sha512-eWI5HG9Np+eHV1KQhisXWwM+4EPPYe5dFX1UZZH7k/E3JzDEazVH+VGlZi6R94ZqImq+A3D1mCEtrFIfg/E7sA==", + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", "dev": true, "requires": { "inherits": "^2.0.3", @@ -3441,9 +3937,9 @@ } }, "haversine": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/haversine/-/haversine-1.1.0.tgz", - "integrity": "sha1-CyOAy22cEOnxIk/CtRPMYQGNX/c=" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/haversine/-/haversine-1.1.1.tgz", + "integrity": "sha512-KW4MS8+krLIeiw8bF5z532CptG0ZyGGFj0UbKMxx25lKnnJ1hMUbuzQl+PXQjNiDLnl1bOyz23U6hSK10r4guw==" }, "highlight.js": { "version": "9.13.1", @@ -3477,6 +3973,15 @@ "os-tmpdir": "^1.0.1" } }, + "homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "requires": { + "parse-passwd": "^1.0.0" + } + }, "hosted-git-info": { "version": "2.7.1", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz", @@ -3521,9 +4026,9 @@ } }, "ieee754": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.12.tgz", - "integrity": "sha512-GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA==", + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz", + "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==", "dev": true }, "iferr": { @@ -3548,12 +4053,6 @@ "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", "dev": true }, - "indexof": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", - "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=", - "dev": true - }, "inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", @@ -3570,6 +4069,12 @@ "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", "dev": true }, + "ini": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", + "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", + "dev": true + }, "interpret": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz", @@ -3819,6 +4324,12 @@ "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", "dev": true }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "dev": true + }, "isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", @@ -4474,11 +4985,11 @@ } }, "jsonld": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/jsonld/-/jsonld-1.5.0.tgz", - "integrity": "sha512-7jF9WXK4nuHvhz/qT6A4DEZ58tUYgrV98xBJEgHFhQ6GQaNT+oU1zqkFXKtDZsKsiEs/1K/VShNnat6SISb3jg==", + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/jsonld/-/jsonld-1.6.2.tgz", + "integrity": "sha512-eMzFHqhF2kPMrMUjw8+Lz9IF1QkrxTOIfVndkP/OpuoZs31VdDtfDs8mLa5EOC/ROdemFTQGLdYPZbRtmMe2Yw==", "requires": { - "rdf-canonize": "^1.0.1", + "rdf-canonize": "^1.0.2", "request": "^2.88.0", "semver": "^5.6.0", "xmldom": "0.1.19" @@ -4527,30 +5038,23 @@ } }, "ldfetch": { - "version": "1.1.1-alpha", - "resolved": "https://registry.npmjs.org/ldfetch/-/ldfetch-1.1.1-alpha.tgz", - "integrity": "sha512-9Mao1ltrI/EItYwZEq4W70aBYZ7iLHU+yYgpzSFTYTHGssxNRN8vZNJ/1nf9DHTGwcWmEEyfYeKsEU/SvHoxHg==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/ldfetch/-/ldfetch-1.1.2.tgz", + "integrity": "sha512-LLU0GKrI6+LqBNYeL5TenALkECDh01xZ97Ir1rTtxovgXsX037wyVk02c1mmBDzWr6zBvxAo4RlMKYRi1ij8Bg==", "requires": { - "@rdfjs/data-model": "^1.1.0", - "commander": "^2.17.1", - "follow-redirects": "^1.5.5", + "@rdfjs/data-model": "^1.1.1", + "commander": "^2.19.0", + "follow-redirects": "^1.7.0", "http-cache-semantics": "^3.7.3", "jsdom": "^11.12.0", - "jsonld": "^1.0.2", - "n3": "1.0.0-alpha", + "jsonld": "^1.5.4", + "n3": "^1.0.5", "node-cache": "^4.2.0", "q": "^1.5.1", - "rdfa-processor": "^0.0.5", + "rdfa-processor": "^0.0.6", "rdfxmlprocessor": "0.0.3-alpha", "wreck": "^12.5.1", "xmldom": "^0.1.27" - }, - "dependencies": { - "n3": { - "version": "1.0.0-alpha", - "resolved": "https://registry.npmjs.org/n3/-/n3-1.0.0-alpha.tgz", - "integrity": "sha512-JJCef2qbYZCkwWkH6GitR/QwJrQ0VMoeAM1EdTl+xx7m6OLRUI1zUh1afBMRjslIWdkZodROf8gudY2vhXmByA==" - } } }, "left-pad": { @@ -4587,20 +5091,37 @@ } }, "loader-runner": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.3.1.tgz", - "integrity": "sha512-By6ZFY7ETWOc9RFaAIb23IjJVcM4dvJC/N57nmdz9RSkMXvAXGI7SyVlAw3v8vjtDRlqThgVDVmTnr9fqMlxkw==", + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", + "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", "dev": true }, "loader-utils": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz", - "integrity": "sha1-yYrvSIvM7aL/teLeZG1qdUQp9c0=", + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", + "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", "dev": true, "requires": { - "big.js": "^3.1.3", + "big.js": "^5.2.2", "emojis-list": "^2.0.0", - "json5": "^0.5.0" + "json5": "^1.0.1" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + } } }, "locate-path": { @@ -4614,15 +5135,9 @@ } }, "lodash": { - "version": "4.17.11", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz", - "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==" - }, - "lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=", - "dev": true + "version": "4.17.15", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", + "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==" }, "lodash.sortby": { "version": "4.7.0", @@ -4649,18 +5164,19 @@ } }, "make-dir": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", - "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", "dev": true, "requires": { - "pify": "^3.0.0" + "pify": "^4.0.1", + "semver": "^5.6.0" }, "dependencies": { "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", "dev": true } } @@ -4680,6 +5196,12 @@ "tmpl": "1.0.x" } }, + "mamacro": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/mamacro/-/mamacro-0.0.3.tgz", + "integrity": "sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==", + "dev": true + }, "map-age-cleaner": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", @@ -4839,9 +5361,9 @@ "dev": true }, "mississippi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-2.0.0.tgz", - "integrity": "sha512-zHo8v+otD1J10j/tC+VNoGK9keCuByhKovAvdn74dmxJl9+mWHnx6EMsDN4lgRoMI/eYo2nchAxniIbUPb5onw==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", + "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", "dev": true, "requires": { "concat-stream": "^1.5.0", @@ -4850,16 +5372,16 @@ "flush-write-stream": "^1.0.0", "from2": "^2.1.0", "parallel-transform": "^1.1.0", - "pump": "^2.0.1", + "pump": "^3.0.0", "pumpify": "^1.3.3", "stream-each": "^1.1.0", "through2": "^2.0.0" } }, "mixin-deep": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz", - "integrity": "sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", "dev": true, "requires": { "for-in": "^1.0.2", @@ -4911,7 +5433,13 @@ "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "n3": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/n3/-/n3-1.1.1.tgz", + "integrity": "sha512-GEJXn+wc0f4l2noP1N/rMUH9Gei1DQ8IDN03eBsH+uQKkNQUOLgL7ZJVaDjY+pP3LmbLxL1LpUg/AvZ7Kc7KVw==" }, "nan": { "version": "2.14.0", @@ -4992,9 +5520,9 @@ "integrity": "sha1-D+t2xaBfNbVueG3m300zZK8o1Og=" }, "node-forge": { - "version": "0.7.6", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.7.6.tgz", - "integrity": "sha512-sol30LUpz1jQFBjOKwbjxijiE3b6pjd74YwfD0fJOKPjF+fONKb2Yg8rYgS6+bK6VDl+/wfr4IYpC7jDzLUIfw==" + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.8.5.tgz", + "integrity": "sha512-vFMQIWt+J/7FLNyKouZ9TazT74PRV3wgv9UT4cRjC8BffxFbKXkgIWR42URCPSnHm/QDz6BOlb2Q0U4+VQT67Q==" }, "node-int64": { "version": "0.4.0", @@ -5003,9 +5531,9 @@ "dev": true }, "node-libs-browser": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.1.0.tgz", - "integrity": "sha512-5AzFzdoIMb89hBGMZglEegffzgRg+ZFoUmisQ8HI4j1KDdpx13J0taNp2y9xPbur6W61gepGDDotGBVQ7mfUCg==", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", "dev": true, "requires": { "assert": "^1.1.1", @@ -5015,10 +5543,10 @@ "constants-browserify": "^1.0.0", "crypto-browserify": "^3.11.0", "domain-browser": "^1.1.1", - "events": "^1.0.0", + "events": "^3.0.0", "https-browserify": "^1.0.0", "os-browserify": "^0.3.0", - "path-browserify": "0.0.0", + "path-browserify": "0.0.1", "process": "^0.11.10", "punycode": "^1.2.4", "querystring-es3": "^0.2.0", @@ -5029,8 +5557,8 @@ "timers-browserify": "^2.0.4", "tty-browserify": "0.0.0", "url": "^0.11.0", - "util": "^0.10.3", - "vm-browserify": "0.0.4" + "util": "^0.11.0", + "vm-browserify": "^1.0.1" }, "dependencies": { "punycode": { @@ -5275,9 +5803,9 @@ "dev": true }, "p-is-promise": { - "version": "1.1.0", - "resolved": "http://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz", - "integrity": "sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4=", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz", + "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==", "dev": true }, "p-limit": { @@ -5305,9 +5833,9 @@ "dev": true }, "pako": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.6.tgz", - "integrity": "sha512-lQe48YPsMJAig+yngZ87Lus+NF+3mtu7DVOBu6b/gHO1YpKwIj5AWjZ/TOS7i46HD/UixzWb1zeWDZfGZ3iYcg==", + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.10.tgz", + "integrity": "sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw==", "dev": true }, "parallel-transform": { @@ -5322,16 +5850,17 @@ } }, "parse-asn1": { - "version": "5.1.1", - "resolved": "http://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.1.tgz", - "integrity": "sha512-KPx7flKXg775zZpnp9SxJlz00gTd4BmJ2yJufSc44gMCRrRQ7NSzAcSJQfifuOLgW6bEi+ftrALtsgALeB2Adw==", + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.4.tgz", + "integrity": "sha512-Qs5duJcuvNExRfFZ99HDD3z4mAi3r9Wl/FOjEOijlxwCZs7E7mW2vjTpgQ4J8LpTF8x5v+1Vn5UQFejmWT11aw==", "dev": true, "requires": { "asn1.js": "^4.0.0", "browserify-aes": "^1.0.0", "create-hash": "^1.1.0", "evp_bytestokey": "^1.0.0", - "pbkdf2": "^3.0.3" + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" } }, "parse-glob": { @@ -5355,6 +5884,12 @@ "error-ex": "^1.2.0" } }, + "parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=", + "dev": true + }, "parse5": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz", @@ -5367,9 +5902,9 @@ "dev": true }, "path-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz", - "integrity": "sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo=", + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", "dev": true }, "path-dirname": { @@ -5615,9 +6150,9 @@ } }, "pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", "dev": true, "requires": { "end-of-stream": "^1.1.0", @@ -5633,6 +6168,18 @@ "duplexify": "^3.6.0", "inherits": "^2.0.3", "pump": "^2.0.0" + }, + "dependencies": { + "pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + } } }, "punycode": { @@ -5693,9 +6240,9 @@ } }, "randombytes": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.0.6.tgz", - "integrity": "sha512-CIQ5OFxf4Jou6uOKe9t1AOgqpeU5fd70A8NPdHSGeYXqXsPe6peOwI0cUl88RWZ6sP1vPMV3avd/R6cZ5/sP1A==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", "dev": true, "requires": { "safe-buffer": "^5.1.0" @@ -5720,27 +6267,20 @@ } }, "rdf-canonize": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/rdf-canonize/-/rdf-canonize-1.0.1.tgz", - "integrity": "sha512-vQq6q7BIUwrVQijKRYdunxlodkn0Btjv2MnJ4S3rOUELsghq7fGuDaWuqBNbXca3KRbcRS6HwTIT2hJbJej2UA==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/rdf-canonize/-/rdf-canonize-1.0.3.tgz", + "integrity": "sha512-piLMOB5Q6LJSVx2XzmdpHktYVb8TmVTy8coXJBFtdkcMC96DknZOuzpAYqCWx2ERZX7xEW+mMi8/wDuMJS/95w==", "requires": { - "node-forge": "^0.7.6", + "node-forge": "^0.8.1", "semver": "^5.6.0" } }, "rdfa-processor": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/rdfa-processor/-/rdfa-processor-0.0.5.tgz", - "integrity": "sha512-272KPQ5xrBmTh4DijaBSoS0A1fXMzhqmctbvOl7Ud0R1X+km1aR/CZ3pD7Lbjiko30tNY1CTseysnCvZkW2jLg==", + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/rdfa-processor/-/rdfa-processor-0.0.6.tgz", + "integrity": "sha512-wA0ZyqHRWVvzFG0SESkfbWe2NAmKfZKsMivRlbt+xgxb1CiCEbheZHIJjfPf3YzAjOp9LIvhKN5kMFqmV62yCw==", "requires": { - "n3": "^1.0.0-alpha" - }, - "dependencies": { - "n3": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/n3/-/n3-1.0.3.tgz", - "integrity": "sha512-IdcCNqb/1gj9fX63hoVEn3/Z1u9iLJiYLSpesmqT3+5UrxcYG5YldUP6T2okNRZKzyVdqz+I0PExGkWkz9gcZw==" - } + "n3": "^1.0.x" } }, "rdfxmlprocessor": { @@ -5749,13 +6289,6 @@ "integrity": "sha512-QrA8AQIoQRKrOQ/6hasVVS7zPT80twfAyxmawjhjqYFUacyx2yqz1qOeCKHsYhKPk/VwgF15V7CwddPNvBlDTw==", "requires": { "n3": "^1.0.0-beta.1" - }, - "dependencies": { - "n3": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/n3/-/n3-1.0.3.tgz", - "integrity": "sha512-IdcCNqb/1gj9fX63hoVEn3/Z1u9iLJiYLSpesmqT3+5UrxcYG5YldUP6T2okNRZKzyVdqz+I0PExGkWkz9gcZw==" - } } }, "read-pkg": { @@ -6130,9 +6663,9 @@ } }, "reflect-metadata": { - "version": "0.1.12", - "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.12.tgz", - "integrity": "sha512-n+IyV+nGz3+0q3/Yf1ra12KpCyi001bi4XFxSjbiWWjfqb52iTTtpGXmCCAOWWIAn9KEuFZKGqBERHmrtScZ3A==" + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", + "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==" }, "regenerator-runtime": { "version": "0.11.1", @@ -6261,6 +6794,29 @@ "resolve-from": "^3.0.0" } }, + "resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=", + "dev": true, + "requires": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + }, + "dependencies": { + "global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "requires": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + } + } + } + }, "resolve-from": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", @@ -6676,19 +7232,20 @@ "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" }, "schema-utils": { - "version": "0.4.7", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz", - "integrity": "sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", "dev": true, "requires": { "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", "ajv-keywords": "^3.1.0" }, "dependencies": { "ajv": { - "version": "6.5.5", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.5.tgz", - "integrity": "sha512-7q7gtRQDJSyuEHjuVgHoUa2VuemFiCMrfQc9Tc08XTAc4Zj/5U1buQJ0HU6i7fKjXU09SVgSmxa4sLvuvS8Iyg==", + "version": "6.10.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz", + "integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==", "dev": true, "requires": { "fast-deep-equal": "^2.0.1", @@ -6717,9 +7274,9 @@ "integrity": "sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==" }, "serialize-javascript": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.5.0.tgz", - "integrity": "sha512-Ga8c8NjAAp46Br4+0oZ2WxJCwIzwP60Gq1YPgU+39PiTVxyed/iKE/zyZI6+UlVYH5Q4PaQdHhcegIFPZTUfoQ==", + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.7.0.tgz", + "integrity": "sha512-ke8UG8ulpFOxO8f8gRYabHQe/ZntKlcig2Mp+8+URDP1D8vJZ0KUt7LYo07q25Z/+JVSgpr/cui9PIp5H6/+nA==", "dev": true }, "set-blocking": { @@ -6729,9 +7286,9 @@ "dev": true }, "set-value": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz", - "integrity": "sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", "dev": true, "requires": { "extend-shallow": "^2.0.1", @@ -6759,7 +7316,7 @@ }, "sha.js": { "version": "2.4.11", - "resolved": "http://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", "dev": true, "requires": { @@ -7054,12 +7611,12 @@ } }, "ssri": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-5.3.0.tgz", - "integrity": "sha512-XRSIPqLij52MtgoQavH/x/dU1qVKtWUAAZeOHsR9c2Ddi4XerFy3mc1alf+dLJKl9EUIm/Ht+EowFkTUOA6GAQ==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz", + "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==", "dev": true, "requires": { - "safe-buffer": "^5.1.1" + "figgy-pudding": "^3.5.1" } }, "stack-utils": { @@ -7095,9 +7652,9 @@ "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=" }, "stream-browserify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz", - "integrity": "sha1-ZiZu5fm9uZQKTkUUyvtDu3Hlyds=", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", "dev": true, "requires": { "inherits": "~2.0.1", @@ -7232,11 +7789,40 @@ "integrity": "sha1-rifbOPZgp64uHDt9G8KQgZuFGeY=" }, "tapable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.0.tgz", - "integrity": "sha512-IlqtmLVaZA2qab8epUXbVWRn3aB1imbDMJtjB3nu4X0NqPkcY/JH9ZtCBWKHWPxs8Svi9tyo8w2dBoi07qZbBA==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", "dev": true }, + "terser": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.1.2.tgz", + "integrity": "sha512-jvNoEQSPXJdssFwqPSgWjsOrb+ELoE+ILpHPKXC83tIxOlh2U75F1KuB2luLD/3a6/7K3Vw5pDn+hvu0C4AzSw==", + "dev": true, + "requires": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + } + }, + "terser-webpack-plugin": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.3.0.tgz", + "integrity": "sha512-W2YWmxPjjkUcOWa4pBEv4OP4er1aeQJlSo2UhtCFQCuRXEHjOFscO8VyWHj9JLlA0RzQb8Y2/Ta78XZvT54uGg==", + "dev": true, + "requires": { + "cacache": "^11.3.2", + "find-cache-dir": "^2.0.0", + "is-wsl": "^1.1.0", + "loader-utils": "^1.2.3", + "schema-utils": "^1.0.0", + "serialize-javascript": "^1.7.0", + "source-map": "^0.6.1", + "terser": "^4.0.0", + "webpack-sources": "^1.3.0", + "worker-farm": "^1.7.0" + } + }, "test-exclude": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-4.2.3.tgz", @@ -7376,9 +7962,9 @@ "dev": true }, "ts-jest": { - "version": "23.10.4", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-23.10.4.tgz", - "integrity": "sha512-oV/wBwGUS7olSk/9yWMiSIJWbz5xO4zhftnY3gwv6s4SMg6WHF1m8XZNBvQOKQRiTAexZ9754Z13dxBq3Zgssw==", + "version": "23.10.5", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-23.10.5.tgz", + "integrity": "sha512-MRCs9qnGoyKgFc8adDEntAOP64fWK1vZKnOYU1o2HxaqjdJvGqmkLCPCnVq1/If4zkUmEjKPnCiUisTrlX2p2A==", "dev": true, "requires": { "bs-logger": "0.x", @@ -7387,6 +7973,7 @@ "json5": "2.x", "make-error": "1.x", "mkdirp": "0.x", + "resolve": "1.x", "semver": "^5.5", "yargs-parser": "10.x" }, @@ -7402,7 +7989,7 @@ }, "minimist": { "version": "1.2.0", - "resolved": "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", "dev": true }, @@ -7418,9 +8005,9 @@ } }, "ts-loader": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-5.3.0.tgz", - "integrity": "sha512-lGSNs7szRFj/rK9T1EQuayE3QNLg6izDUxt5jpmq0RG1rU2bapAt7E7uLckLCUPeO1jwxCiet2oRaWovc53UAg==", + "version": "5.4.5", + "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-5.4.5.tgz", + "integrity": "sha512-XYsjfnRQCBum9AMRZpk2rTYSVpdZBpZK+kDh0TeT3kxmQNBDVIeUjdPjY5RZry4eIAb8XHc4gYSUiUWPYvzSRw==", "dev": true, "requires": { "chalk": "^2.3.0", @@ -7716,29 +8303,30 @@ } }, "tslib": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz", - "integrity": "sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", + "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==", "dev": true }, "tslint": { - "version": "5.11.0", - "resolved": "https://registry.npmjs.org/tslint/-/tslint-5.11.0.tgz", - "integrity": "sha1-mPMMAurjzecAYgHkwzywi0hYHu0=", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/tslint/-/tslint-5.18.0.tgz", + "integrity": "sha512-Q3kXkuDEijQ37nXZZLKErssQVnwCV/+23gFEMROi8IlbaBG6tXqLPQJ5Wjcyt/yHPKBC+hD5SzuGaMora+ZS6w==", "dev": true, "requires": { - "babel-code-frame": "^6.22.0", + "@babel/code-frame": "^7.0.0", "builtin-modules": "^1.1.1", "chalk": "^2.3.0", "commander": "^2.12.1", "diff": "^3.2.0", "glob": "^7.1.1", - "js-yaml": "^3.7.0", + "js-yaml": "^3.13.1", "minimatch": "^3.0.4", + "mkdirp": "^0.5.1", "resolve": "^1.3.2", "semver": "^5.3.0", "tslib": "^1.8.0", - "tsutils": "^2.27.2" + "tsutils": "^2.29.0" } }, "tsutils": { @@ -7833,9 +8421,9 @@ "dev": true }, "typescript": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.3.3.tgz", - "integrity": "sha512-Y21Xqe54TBVp+VDSNbuDYdGw0BpoR/Q6wo/+35M8PAU0vipahnyduJWirxxdxjsAkS7hue53x2zp8gz7F05u0A==", + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.5.3.tgz", + "integrity": "sha512-ACzBtm/PhXBDId6a6sDJfroT2pOWt/oOnk4/dElG5G33ZL776N3Y6/6bKZJBFpd+b05F3Ct9qDjMeJmRWtE2/g==", "dev": true }, "uglify-js": { @@ -7858,73 +8446,16 @@ } } }, - "uglifyjs-webpack-plugin": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.3.0.tgz", - "integrity": "sha512-ovHIch0AMlxjD/97j9AYovZxG5wnHOPkL7T1GKochBADp/Zwc44pEWNqpKl1Loupp1WhFg7SlYmHZRUfdAacgw==", - "dev": true, - "requires": { - "cacache": "^10.0.4", - "find-cache-dir": "^1.0.0", - "schema-utils": "^0.4.5", - "serialize-javascript": "^1.4.0", - "source-map": "^0.6.1", - "uglify-es": "^3.3.4", - "webpack-sources": "^1.1.0", - "worker-farm": "^1.5.2" - }, - "dependencies": { - "commander": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz", - "integrity": "sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==", - "dev": true - }, - "uglify-es": { - "version": "3.3.9", - "resolved": "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.9.tgz", - "integrity": "sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==", - "dev": true, - "requires": { - "commander": "~2.13.0", - "source-map": "~0.6.1" - } - } - } - }, "union-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz", - "integrity": "sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ=", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", "dev": true, "requires": { "arr-union": "^3.1.0", "get-value": "^2.0.6", "is-extendable": "^0.1.1", - "set-value": "^0.4.3" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "set-value": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz", - "integrity": "sha1-fbCPnT0i3H945Trzw79GZuzfzPE=", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.1", - "to-object-path": "^0.3.0" - } - } + "set-value": "^2.0.1" } }, "unique-filename": { @@ -7937,9 +8468,9 @@ } }, "unique-slug": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.1.tgz", - "integrity": "sha512-n9cU6+gITaVu7VGj1Z8feKMmfAjEAQGhwD9fE3zvpRRa0wEIx8ODYkVGfSc94M2OX00tUFV8wH3zYbm1I8mxFg==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", "dev": true, "requires": { "imurmurhash": "^0.1.4" @@ -7998,9 +8529,9 @@ } }, "upath": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.1.0.tgz", - "integrity": "sha512-bzpH/oBhoS/QI/YtbkqCg6VEiPYjSZtrHQM6/QnJS6OL9pKUFLqb3aFh4Scvwm45+7iAgiMkLhSbaZxUqmrprw==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.1.2.tgz", + "integrity": "sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q==", "dev": true }, "uri-js": { @@ -8048,9 +8579,9 @@ "dev": true }, "util": { - "version": "0.10.4", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", - "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", "dev": true, "requires": { "inherits": "2.0.3" @@ -8078,9 +8609,9 @@ "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==" }, "v8-compile-cache": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.0.2.tgz", - "integrity": "sha512-1wFuMUIM16MDJRCrpbpuEPTUGmM5QMUg0cr3KFwra2XgOgFcPGDQHDh3CszSCD2Zewc/dh/pamNEW8CbfDebUw==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.0.3.tgz", + "integrity": "sha512-CNmdbwQMBjwr9Gsmohvm0pbL954tJrNzf6gWL3K+QMQf00PF7ERGrEiLgjuU3mKreLC2MeGhUsNV9ybTbLgd3w==", "dev": true }, "validate-npm-package-license": { @@ -8104,13 +8635,10 @@ } }, "vm-browserify": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz", - "integrity": "sha1-XX6kW7755Kb/ZflUOOCofDV9WnM=", - "dev": true, - "requires": { - "indexof": "0.0.1" - } + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.0.tgz", + "integrity": "sha512-iq+S7vZJE60yejDYM0ek6zg308+UZsdtPExWP9VZoCFCz1zkJoXFnAX7aZfd/ZwrkidzdUZL0C/ryW+JwAiIGw==", + "dev": true }, "w3c-hr-time": { "version": "1.0.1", @@ -8164,17 +8692,16 @@ "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" }, "webpack": { - "version": "4.25.1", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.25.1.tgz", - "integrity": "sha512-T0GU/3NRtO4tMfNzsvpdhUr8HnzA4LTdP2zd+e5zd6CdOH5vNKHnAlO+DvzccfhPdzqRrALOFcjYxx7K5DWmvA==", + "version": "4.36.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.36.1.tgz", + "integrity": "sha512-Ej01/N9W8DVyhEpeQnbUdGvOECw0L46FxS12cCOs8gSK7bhUlrbHRnWkjiXckGlHjUrmL89kDpTRIkUk6Y+fKg==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.7.11", - "@webassemblyjs/helper-module-context": "1.7.11", - "@webassemblyjs/wasm-edit": "1.7.11", - "@webassemblyjs/wasm-parser": "1.7.11", - "acorn": "^5.6.2", - "acorn-dynamic-import": "^3.0.0", + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/helper-module-context": "1.8.5", + "@webassemblyjs/wasm-edit": "1.8.5", + "@webassemblyjs/wasm-parser": "1.8.5", + "acorn": "^6.2.0", "ajv": "^6.1.0", "ajv-keywords": "^3.1.0", "chrome-trace-event": "^1.0.0", @@ -8188,17 +8715,23 @@ "mkdirp": "~0.5.0", "neo-async": "^2.5.0", "node-libs-browser": "^2.0.0", - "schema-utils": "^0.4.4", + "schema-utils": "^1.0.0", "tapable": "^1.1.0", - "uglifyjs-webpack-plugin": "^1.2.4", + "terser-webpack-plugin": "^1.1.0", "watchpack": "^1.5.0", "webpack-sources": "^1.3.0" }, "dependencies": { + "acorn": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.2.1.tgz", + "integrity": "sha512-JD0xT5FCRDNyjDda3Lrg/IxFscp9q4tiYtxE1/nOzlKCk7hIRuYjhq1kCNkbPjMRMZuFq20HNQn1I9k8Oj0E+Q==", + "dev": true + }, "ajv": { - "version": "6.5.5", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.5.tgz", - "integrity": "sha512-7q7gtRQDJSyuEHjuVgHoUa2VuemFiCMrfQc9Tc08XTAc4Zj/5U1buQJ0HU6i7fKjXU09SVgSmxa4sLvuvS8Iyg==", + "version": "6.10.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz", + "integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==", "dev": true, "requires": { "fast-deep-equal": "^2.0.1", @@ -8505,23 +9038,78 @@ } }, "webpack-cli": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.1.2.tgz", - "integrity": "sha512-Cnqo7CeqeSvC6PTdts+dywNi5CRlIPbLx1AoUPK2T6vC1YAugMG3IOoO9DmEscd+Dghw7uRlnzV1KwOe5IrtgQ==", - "dev": true, - "requires": { - "chalk": "^2.4.1", - "cross-spawn": "^6.0.5", - "enhanced-resolve": "^4.1.0", - "global-modules-path": "^2.3.0", - "import-local": "^2.0.0", - "interpret": "^1.1.0", - "loader-utils": "^1.1.0", - "supports-color": "^5.5.0", - "v8-compile-cache": "^2.0.2", - "yargs": "^12.0.2" + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.6.tgz", + "integrity": "sha512-0vEa83M7kJtxK/jUhlpZ27WHIOndz5mghWL2O53kiDoA9DIxSKnfqB92LoqEn77cT4f3H2cZm1BMEat/6AZz3A==", + "dev": true, + "requires": { + "chalk": "2.4.2", + "cross-spawn": "6.0.5", + "enhanced-resolve": "4.1.0", + "findup-sync": "3.0.0", + "global-modules": "2.0.0", + "import-local": "2.0.0", + "interpret": "1.2.0", + "loader-utils": "1.2.3", + "supports-color": "6.1.0", + "v8-compile-cache": "2.0.3", + "yargs": "13.2.4" }, "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, "cross-spawn": { "version": "6.0.5", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", @@ -8535,23 +9123,14 @@ "which": "^1.2.9" } }, - "decamelize": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-2.0.0.tgz", - "integrity": "sha512-Ikpp5scV3MSYxY39ymh45ZLEecsTdv/Xj2CaQfI8RLMuwi7XvjX9H/fhraiSuU+C5w5NTDu4ZU72xNiZnurBPg==", - "dev": true, - "requires": { - "xregexp": "4.0.0" - } - }, "execa": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.10.0.tgz", - "integrity": "sha512-7XOMnz8Ynx1gGo/3hyV9loYNPWM94jG3+3T3Y8tsfSstFmETmENCMU/A/zj8Lyaj1lkgEepKepvd6240tBRvlw==", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", "dev": true, "requires": { "cross-spawn": "^6.0.0", - "get-stream": "^3.0.0", + "get-stream": "^4.0.0", "is-stream": "^1.1.0", "npm-run-path": "^2.0.0", "p-finally": "^1.0.0", @@ -8568,6 +9147,21 @@ "locate-path": "^3.0.0" } }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, "import-local": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", @@ -8578,6 +9172,12 @@ "resolve-cwd": "^2.0.0" } }, + "interpret": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.2.0.tgz", + "integrity": "sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw==", + "dev": true + }, "invert-kv": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz", @@ -8604,31 +9204,37 @@ } }, "mem": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mem/-/mem-4.0.0.tgz", - "integrity": "sha512-WQxG/5xYc3tMbYLXoXPm81ET2WDULiU5FxbuIoNbJqLOOI8zehXFdZuiUEgfdrU2mVB1pxBZUGlYORSrpuJreA==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz", + "integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==", "dev": true, "requires": { "map-age-cleaner": "^0.1.1", - "mimic-fn": "^1.0.0", - "p-is-promise": "^1.1.0" + "mimic-fn": "^2.0.0", + "p-is-promise": "^2.0.0" } }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true + }, "os-locale": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.0.1.tgz", - "integrity": "sha512-7g5e7dmXPtzcP4bgsZ8ixDVqA7oWYuEz4lOSujeWyliPai4gfVDiFIcwBg3aGCPnmSGfzOKTK3ccPn0CKv3DBw==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz", + "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==", "dev": true, "requires": { - "execa": "^0.10.0", + "execa": "^1.0.0", "lcid": "^2.0.0", "mem": "^4.0.0" } }, "p-limit": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.0.0.tgz", - "integrity": "sha512-fl5s52lI5ahKCernzzIyAP0QAZbGIovtVHGwpcu1Jr/EpzLVDI2myISHwGqK7m8uQFugVWSrbxH7XnhGtvEc+A==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz", + "integrity": "sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==", "dev": true, "requires": { "p-try": "^2.0.0" @@ -8644,9 +9250,9 @@ } }, "p-try": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.0.0.tgz", - "integrity": "sha512-hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true }, "pkg-dir": { @@ -8658,42 +9264,85 @@ "find-up": "^3.0.0" } }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + }, "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", "dev": true, "requires": { "has-flag": "^3.0.0" } }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + } + }, + "y18n": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", + "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", + "dev": true + }, "yargs": { - "version": "12.0.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.2.tgz", - "integrity": "sha512-e7SkEx6N6SIZ5c5H22RTZae61qtn3PYUE8JYbBFlK9sYmh3DMQ6E5ygtaG/2BW0JZi4WGgTR2IV5ChqlqrDGVQ==", + "version": "13.2.4", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.2.4.tgz", + "integrity": "sha512-HG/DWAJa1PAnHT9JAhNa8AbAv3FPaiLzioSjCcmuXXhP8MlpHO5vwls4g4j6n30Z74GVQj8Xa62dWVx1QCGklg==", "dev": true, "requires": { - "cliui": "^4.0.0", - "decamelize": "^2.0.0", + "cliui": "^5.0.0", "find-up": "^3.0.0", - "get-caller-file": "^1.0.1", - "os-locale": "^3.0.0", + "get-caller-file": "^2.0.1", + "os-locale": "^3.1.0", "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", + "require-main-filename": "^2.0.0", "set-blocking": "^2.0.0", - "string-width": "^2.0.0", + "string-width": "^3.0.0", "which-module": "^2.0.0", - "y18n": "^3.2.1 || ^4.0.0", - "yargs-parser": "^10.1.0" + "y18n": "^4.0.0", + "yargs-parser": "^13.1.0" } }, "yargs-parser": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-10.1.0.tgz", - "integrity": "sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==", + "version": "13.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.1.tgz", + "integrity": "sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ==", "dev": true, "requires": { - "camelcase": "^4.1.0" + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" } } } @@ -8757,9 +9406,9 @@ "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=" }, "worker-farm": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.6.0.tgz", - "integrity": "sha512-6w+3tHbM87WnSWnENBUvA2pxJPLhQUg5LKwUQHq3r+XPhIM+Gh2R5ycbwPCyuGbNg+lPgdcnQUhuC02kJCvffQ==", + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", + "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", "dev": true, "requires": { "errno": "~0.1.7" @@ -8841,16 +9490,10 @@ "resolved": "https://registry.npmjs.org/xmldom/-/xmldom-0.1.27.tgz", "integrity": "sha1-1QH5ezvbQDr4757MIFcxh6rawOk=" }, - "xregexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-4.0.0.tgz", - "integrity": "sha512-PHyM+sQouu7xspQQwELlGwwd05mXUFqwFYfqPO0cC7x4fxyHnnuetmQr6CjJiafIDoH4MogHb9dOoJzR/Y4rFg==", - "dev": true - }, "xtend": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", - "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", "dev": true }, "y18n": { diff --git a/package.json b/package.json index 45561b19..4b4e12a3 100644 --- a/package.json +++ b/package.json @@ -31,12 +31,12 @@ "asynciterator-promiseproxy": "^2.0.0", "concaveman": "^1.1.1", "d3-delaunay": "^4.1.5", - "haversine": "^1.1.0", + "haversine": "^1.1.1", "inversify": "^5.0.1", "isomorphic-fetch": "^2.2.1", - "ldfetch": "^1.1.1-alpha", + "ldfetch": "^1.1.2", "node-dijkstra": "^2.5.0", - "reflect-metadata": "^0.1.12", + "reflect-metadata": "^0.1.13", "tiles-in-bbox": "^1.0.2", "tinyqueue": "^2.0.2", "uritemplate": "^0.3.4" @@ -45,20 +45,20 @@ "lint" ], "devDependencies": { - "@types/haversine": "^1.1.0", - "@types/jest": "^23.3.7", + "@types/haversine": "^1.1.4", + "@types/jest": "^23.3.14", "@types/rdf-js": "^1.0.1", "jest": "^23.6.0", "pre-commit": "^1.2.2", "prettier": "1.14.3", "source-map-support": "^0.5.11", - "ts-jest": "^23.10.4", - "ts-loader": "^5.3.0", - "tslint": "^5.11.0", + "ts-jest": "^23.10.5", + "ts-loader": "^5.4.5", + "tslint": "^5.18.0", "typedoc": "^0.14.2", - "typescript": "^3.3.3", - "webpack": "^4.25.1", - "webpack-cli": "^3.1.2" + "typescript": "^3.5.3", + "webpack": "^4.36.1", + "webpack-cli": "^3.3.6" }, "sideEffects": false } From f45d647d613e4260b71420ea813b5b181a14325c Mon Sep 17 00:00:00 2001 From: Julian Rojas Date: Mon, 22 Jul 2019 17:42:54 +0200 Subject: [PATCH 32/85] More dependency updates --- package-lock.json | 3251 ++++++++++++++++++++++----------------------- package.json | 2 +- 2 files changed, 1584 insertions(+), 1669 deletions(-) diff --git a/package-lock.json b/package-lock.json index 9c66fb85..8e500f5e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,6 +13,127 @@ "@babel/highlight": "^7.0.0" } }, + "@babel/core": { + "version": "7.5.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.5.5.tgz", + "integrity": "sha512-i4qoSr2KTtce0DmkuuQBV4AuQgGPUcPXMr9L5MyYAtk06z068lQ10a4O009fe5OB/DfNV+h+qqT7ddNV8UnRjg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.5.5", + "@babel/generator": "^7.5.5", + "@babel/helpers": "^7.5.5", + "@babel/parser": "^7.5.5", + "@babel/template": "^7.4.4", + "@babel/traverse": "^7.5.5", + "@babel/types": "^7.5.5", + "convert-source-map": "^1.1.0", + "debug": "^4.1.0", + "json5": "^2.1.0", + "lodash": "^4.17.13", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.5.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz", + "integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==", + "dev": true, + "requires": { + "@babel/highlight": "^7.0.0" + } + }, + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.5.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.5.5.tgz", + "integrity": "sha512-ETI/4vyTSxTzGnU2c49XHv2zhExkv9JHLTwDAFz85kmcwuShvYG2H08FwgIguQf4JC75CBnXAUM5PqeF4fj0nQ==", + "dev": true, + "requires": { + "@babel/types": "^7.5.5", + "jsesc": "^2.5.1", + "lodash": "^4.17.13", + "source-map": "^0.5.0", + "trim-right": "^1.0.1" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "@babel/helper-function-name": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz", + "integrity": "sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw==", + "dev": true, + "requires": { + "@babel/helper-get-function-arity": "^7.0.0", + "@babel/template": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz", + "integrity": "sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ==", + "dev": true, + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz", + "integrity": "sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==", + "dev": true + }, + "@babel/helper-split-export-declaration": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz", + "integrity": "sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q==", + "dev": true, + "requires": { + "@babel/types": "^7.4.4" + } + }, + "@babel/helpers": { + "version": "7.5.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.5.5.tgz", + "integrity": "sha512-nRq2BUhxZFnfEn/ciJuhklHvFOqjJUD5wpx+1bxUF2axL9C+v4DE/dmp5sT2dKnpOs4orZWzpAZqlCy8QqE/7g==", + "dev": true, + "requires": { + "@babel/template": "^7.4.4", + "@babel/traverse": "^7.5.5", + "@babel/types": "^7.5.5" + } + }, "@babel/highlight": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz", @@ -32,6 +153,294 @@ } } }, + "@babel/parser": { + "version": "7.5.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.5.5.tgz", + "integrity": "sha512-E5BN68cqR7dhKan1SfqgPGhQ178bkVKpXTPEXnFJBrEt8/DKRZlybmy+IgYLTeN7tp1R5Ccmbm2rBk17sHYU3g==", + "dev": true + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz", + "integrity": "sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.4.4.tgz", + "integrity": "sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.4.4", + "@babel/types": "^7.4.4" + } + }, + "@babel/traverse": { + "version": "7.5.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.5.5.tgz", + "integrity": "sha512-MqB0782whsfffYfSjH4TM+LMjrJnhCNEDMDIjeTpl+ASaUvxcjoiVCo/sM1GhS1pHOXYfWVCYneLjMckuUxDaQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.5.5", + "@babel/generator": "^7.5.5", + "@babel/helper-function-name": "^7.1.0", + "@babel/helper-split-export-declaration": "^7.4.4", + "@babel/parser": "^7.5.5", + "@babel/types": "^7.5.5", + "debug": "^4.1.0", + "globals": "^11.1.0", + "lodash": "^4.17.13" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.5.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz", + "integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==", + "dev": true, + "requires": { + "@babel/highlight": "^7.0.0" + } + }, + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + } + } + }, + "@babel/types": { + "version": "7.5.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.5.5.tgz", + "integrity": "sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw==", + "dev": true, + "requires": { + "esutils": "^2.0.2", + "lodash": "^4.17.13", + "to-fast-properties": "^2.0.0" + } + }, + "@cnakazawa/watch": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.3.tgz", + "integrity": "sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA==", + "dev": true, + "requires": { + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" + }, + "dependencies": { + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + } + } + }, + "@jest/console": { + "version": "24.7.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-24.7.1.tgz", + "integrity": "sha512-iNhtIy2M8bXlAOULWVTUxmnelTLFneTNEkHCgPmgd+zNwy9zVddJ6oS5rZ9iwoscNdT5mMwUd0C51v/fSlzItg==", + "dev": true, + "requires": { + "@jest/source-map": "^24.3.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + } + }, + "@jest/core": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-24.8.0.tgz", + "integrity": "sha512-R9rhAJwCBQzaRnrRgAdVfnglUuATXdwTRsYqs6NMdVcAl5euG8LtWDe+fVkN27YfKVBW61IojVsXKaOmSnqd/A==", + "dev": true, + "requires": { + "@jest/console": "^24.7.1", + "@jest/reporters": "^24.8.0", + "@jest/test-result": "^24.8.0", + "@jest/transform": "^24.8.0", + "@jest/types": "^24.8.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-changed-files": "^24.8.0", + "jest-config": "^24.8.0", + "jest-haste-map": "^24.8.0", + "jest-message-util": "^24.8.0", + "jest-regex-util": "^24.3.0", + "jest-resolve-dependencies": "^24.8.0", + "jest-runner": "^24.8.0", + "jest-runtime": "^24.8.0", + "jest-snapshot": "^24.8.0", + "jest-util": "^24.8.0", + "jest-validate": "^24.8.0", + "jest-watcher": "^24.8.0", + "micromatch": "^3.1.10", + "p-each-series": "^1.0.0", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "rimraf": "^2.5.4", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.0.tgz", + "integrity": "sha512-jpSvDPV4Cq/bgtpndIWbI5hmYxhQGHPC4d4cqBPb4DLniCfhJokdXhwhaDuLBGLQdvvRum/UiX6ECVIPvDXqdg==", + "dev": true + } + } + }, + "@jest/environment": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-24.8.0.tgz", + "integrity": "sha512-vlGt2HLg7qM+vtBrSkjDxk9K0YtRBi7HfRFaDxoRtyi+DyVChzhF20duvpdAnKVBV6W5tym8jm0U9EfXbDk1tw==", + "dev": true, + "requires": { + "@jest/fake-timers": "^24.8.0", + "@jest/transform": "^24.8.0", + "@jest/types": "^24.8.0", + "jest-mock": "^24.8.0" + } + }, + "@jest/fake-timers": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-24.8.0.tgz", + "integrity": "sha512-2M4d5MufVXwi6VzZhJ9f5S/wU4ud2ck0kxPof1Iz3zWx6Y+V2eJrES9jEktB6O3o/oEyk+il/uNu9PvASjWXQw==", + "dev": true, + "requires": { + "@jest/types": "^24.8.0", + "jest-message-util": "^24.8.0", + "jest-mock": "^24.8.0" + } + }, + "@jest/reporters": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-24.8.0.tgz", + "integrity": "sha512-eZ9TyUYpyIIXfYCrw0UHUWUvE35vx5I92HGMgS93Pv7du+GHIzl+/vh8Qj9MCWFK/4TqyttVBPakWMOfZRIfxw==", + "dev": true, + "requires": { + "@jest/environment": "^24.8.0", + "@jest/test-result": "^24.8.0", + "@jest/transform": "^24.8.0", + "@jest/types": "^24.8.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.2", + "istanbul-lib-coverage": "^2.0.2", + "istanbul-lib-instrument": "^3.0.1", + "istanbul-lib-report": "^2.0.4", + "istanbul-lib-source-maps": "^3.0.1", + "istanbul-reports": "^2.1.1", + "jest-haste-map": "^24.8.0", + "jest-resolve": "^24.8.0", + "jest-runtime": "^24.8.0", + "jest-util": "^24.8.0", + "jest-worker": "^24.6.0", + "node-notifier": "^5.2.1", + "slash": "^2.0.0", + "source-map": "^0.6.0", + "string-length": "^2.0.0" + } + }, + "@jest/source-map": { + "version": "24.3.0", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-24.3.0.tgz", + "integrity": "sha512-zALZt1t2ou8le/crCeeiRYzvdnTzaIlpOWaet45lNSqNJUnXbppUUFR4ZUAlzgDmKee4Q5P/tKXypI1RiHwgag==", + "dev": true, + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.0.tgz", + "integrity": "sha512-jpSvDPV4Cq/bgtpndIWbI5hmYxhQGHPC4d4cqBPb4DLniCfhJokdXhwhaDuLBGLQdvvRum/UiX6ECVIPvDXqdg==", + "dev": true + } + } + }, + "@jest/test-result": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-24.8.0.tgz", + "integrity": "sha512-+YdLlxwizlfqkFDh7Mc7ONPQAhA4YylU1s529vVM1rsf67vGZH/2GGm5uO8QzPeVyaVMobCQ7FTxl38QrKRlng==", + "dev": true, + "requires": { + "@jest/console": "^24.7.1", + "@jest/types": "^24.8.0", + "@types/istanbul-lib-coverage": "^2.0.0" + } + }, + "@jest/test-sequencer": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-24.8.0.tgz", + "integrity": "sha512-OzL/2yHyPdCHXEzhoBuq37CE99nkme15eHkAzXRVqthreWZamEMA0WoetwstsQBCXABhczpK03JNbc4L01vvLg==", + "dev": true, + "requires": { + "@jest/test-result": "^24.8.0", + "jest-haste-map": "^24.8.0", + "jest-runner": "^24.8.0", + "jest-runtime": "^24.8.0" + } + }, + "@jest/transform": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-24.8.0.tgz", + "integrity": "sha512-xBMfFUP7TortCs0O+Xtez2W7Zu1PLH9bvJgtraN1CDST6LBM/eTOZ9SfwS/lvV8yOfcDpFmwf9bq5cYbXvqsvA==", + "dev": true, + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.8.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.8.0", + "jest-regex-util": "^24.3.0", + "jest-util": "^24.8.0", + "micromatch": "^3.1.10", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.0.tgz", + "integrity": "sha512-jpSvDPV4Cq/bgtpndIWbI5hmYxhQGHPC4d4cqBPb4DLniCfhJokdXhwhaDuLBGLQdvvRum/UiX6ECVIPvDXqdg==", + "dev": true + } + } + }, + "@jest/types": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.8.0.tgz", + "integrity": "sha512-g17UxVr2YfBtaMUxn9u/4+siG1ptg9IGYAYwvpwn61nBg779RXnjE/m7CxYcIzEt0AbHZZAHSEZNhkE2WxURVg==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^12.0.9" + } + }, "@rdfjs/data-model": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/@rdfjs/data-model/-/data-model-1.1.1.tgz", @@ -50,6 +459,47 @@ } } }, + "@types/babel__core": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.2.tgz", + "integrity": "sha512-cfCCrFmiGY/yq0NuKNxIQvZFy9kY/1immpSpTngOnyIbD4+eJOG5mxphhHDv3CHL9GltO4GcKr54kGBg3RNdbg==", + "dev": true, + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "@types/babel__generator": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.0.2.tgz", + "integrity": "sha512-NHcOfab3Zw4q5sEE2COkpfXjoE7o+PmqD9DQW4koUT3roNxwziUdXGnRndMat/LJNUtePwn1TlP4do3uoe3KZQ==", + "dev": true, + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@types/babel__template": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.0.2.tgz", + "integrity": "sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg==", + "dev": true, + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@types/babel__traverse": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.7.tgz", + "integrity": "sha512-CeBpmX1J8kWLcDEnI3Cl2Eo6RfbGvzUctA+CjZUhOKDFbLfcr7fc4usEqLNWetrlJd7RhAkyYe2czXop4fICpw==", + "dev": true, + "requires": { + "@babel/types": "^7.3.0" + } + }, "@types/concaveman": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/@types/concaveman/-/concaveman-1.1.3.tgz", @@ -99,6 +549,31 @@ "integrity": "sha512-pGF/zvYOACZ/gLGWdQH8zSwteQS1epp68yRcVLJMgUck/MjEn/FBYmPub9pXT8C1e4a8YZfHo1CKyV8q1vKUnQ==", "dev": true }, + "@types/istanbul-lib-coverage": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz", + "integrity": "sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg==", + "dev": true + }, + "@types/istanbul-lib-report": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz", + "integrity": "sha512-3BUTyMzbZa2DtDI2BkERNC6jJw2Mr2Y0oGI7mRxYNBPxppbtEK1F66u3bKwU2g+wxwWI7PAoRpJnOY1grJqzHg==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "*" + } + }, + "@types/istanbul-reports": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz", + "integrity": "sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, "@types/jest": { "version": "23.3.14", "resolved": "https://registry.npmjs.org/@types/jest/-/jest-23.3.14.tgz", @@ -147,6 +622,18 @@ "@types/node": "*" } }, + "@types/stack-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz", + "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==", + "dev": true + }, + "@types/yargs": { + "version": "12.0.12", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-12.0.12.tgz", + "integrity": "sha512-SOhuU4wNBxhhTHxYaiG5NY4HBhDIDnJF60GU+2LqHAdKKer86//e4yg69aENCtQ04n0ovz+tq2YPME5t5yp4pw==", + "dev": true + }, "@webassemblyjs/ast": { "version": "1.8.5", "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.8.5.tgz", @@ -390,22 +877,25 @@ "dev": true }, "ansi-escapes": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz", - "integrity": "sha512-UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", "dev": true }, "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", "dev": true }, "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } }, "anymatch": { "version": "2.0.0", @@ -702,15 +1192,6 @@ } } }, - "append-transform": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/append-transform/-/append-transform-0.4.0.tgz", - "integrity": "sha1-126/jKlNJ24keja61EpLdKthGZE=", - "dev": true, - "requires": { - "default-require-extensions": "^1.0.0" - } - }, "aproba": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", @@ -727,13 +1208,10 @@ } }, "arr-diff": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", - "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", - "dev": true, - "requires": { - "arr-flatten": "^1.0.1" - } + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true }, "arr-flatten": { "version": "1.1.0", @@ -753,15 +1231,9 @@ "integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=" }, "array-unique": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", - "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=", - "dev": true - }, - "arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", "dev": true }, "asn1": { @@ -801,7 +1273,7 @@ }, "util": { "version": "0.10.3", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "resolved": "http://registry.npmjs.org/util/-/util-0.10.3.tgz", "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", "dev": true, "requires": { @@ -827,15 +1299,6 @@ "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", "dev": true }, - "async": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.1.tgz", - "integrity": "sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==", - "dev": true, - "requires": { - "lodash": "^4.17.10" - } - }, "async-each": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", @@ -881,264 +1344,74 @@ "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz", "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==" }, - "babel-code-frame": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", - "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", - "dev": true, - "requires": { - "chalk": "^1.1.3", - "esutils": "^2.0.2", - "js-tokens": "^3.0.2" + "babel-jest": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-24.8.0.tgz", + "integrity": "sha512-+5/kaZt4I9efoXzPlZASyK/lN9qdRKmmUav9smVc0ruPQD7IsfucQ87gpOE8mn2jbDuS6M/YOW6n3v9ZoIfgnw==", + "dev": true, + "requires": { + "@jest/transform": "^24.8.0", + "@jest/types": "^24.8.0", + "@types/babel__core": "^7.1.0", + "babel-plugin-istanbul": "^5.1.0", + "babel-preset-jest": "^24.6.0", + "chalk": "^2.4.2", + "slash": "^2.0.0" }, "dependencies": { "chalk": { - "version": "1.1.3", - "resolved": "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" } - } - } - }, - "babel-core": { - "version": "6.26.3", - "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz", - "integrity": "sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==", - "dev": true, - "requires": { - "babel-code-frame": "^6.26.0", - "babel-generator": "^6.26.0", - "babel-helpers": "^6.24.1", - "babel-messages": "^6.23.0", - "babel-register": "^6.26.0", - "babel-runtime": "^6.26.0", - "babel-template": "^6.26.0", - "babel-traverse": "^6.26.0", - "babel-types": "^6.26.0", - "babylon": "^6.18.0", - "convert-source-map": "^1.5.1", - "debug": "^2.6.9", - "json5": "^0.5.1", - "lodash": "^4.17.4", - "minimatch": "^3.0.4", - "path-is-absolute": "^1.0.1", - "private": "^0.1.8", - "slash": "^1.0.0", - "source-map": "^0.5.7" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "requires": { - "ms": "2.0.0" + "has-flag": "^3.0.0" } - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - } - } - }, - "babel-generator": { - "version": "6.26.1", - "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz", - "integrity": "sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==", - "dev": true, - "requires": { - "babel-messages": "^6.23.0", - "babel-runtime": "^6.26.0", - "babel-types": "^6.26.0", - "detect-indent": "^4.0.0", - "jsesc": "^1.3.0", - "lodash": "^4.17.4", - "source-map": "^0.5.7", - "trim-right": "^1.0.1" - }, - "dependencies": { - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true } } }, - "babel-helpers": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz", - "integrity": "sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=", - "dev": true, - "requires": { - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1" - } - }, - "babel-jest": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-23.6.0.tgz", - "integrity": "sha512-lqKGG6LYXYu+DQh/slrQ8nxXQkEkhugdXsU6St7GmhVS7Ilc/22ArwqXNJrf0QaOBjZB0360qZMwXqDYQHXaew==", - "dev": true, - "requires": { - "babel-plugin-istanbul": "^4.1.6", - "babel-preset-jest": "^23.2.0" - } - }, - "babel-messages": { - "version": "6.23.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz", - "integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=", - "dev": true, - "requires": { - "babel-runtime": "^6.22.0" - } - }, "babel-plugin-istanbul": { - "version": "4.1.6", - "resolved": "http://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz", - "integrity": "sha512-PWP9FQ1AhZhS01T/4qLSKoHGY/xvkZdVBGlKM/HuxxS3+sC66HhTNR7+MpbO/so/cz/wY94MeSWJuP1hXIPfwQ==", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz", + "integrity": "sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==", "dev": true, "requires": { - "babel-plugin-syntax-object-rest-spread": "^6.13.0", - "find-up": "^2.1.0", - "istanbul-lib-instrument": "^1.10.1", - "test-exclude": "^4.2.1" + "@babel/helper-plugin-utils": "^7.0.0", + "find-up": "^3.0.0", + "istanbul-lib-instrument": "^3.3.0", + "test-exclude": "^5.2.3" } }, "babel-plugin-jest-hoist": { - "version": "23.2.0", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-23.2.0.tgz", - "integrity": "sha1-5h+uBaHKiAGq3uV6bWa4zvr0QWc=", - "dev": true - }, - "babel-plugin-syntax-object-rest-spread": { - "version": "6.13.0", - "resolved": "http://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz", - "integrity": "sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=", - "dev": true - }, - "babel-preset-jest": { - "version": "23.2.0", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-23.2.0.tgz", - "integrity": "sha1-jsegOhOPABoaj7HoETZSvxpV2kY=", - "dev": true, - "requires": { - "babel-plugin-jest-hoist": "^23.2.0", - "babel-plugin-syntax-object-rest-spread": "^6.13.0" - } - }, - "babel-register": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz", - "integrity": "sha1-btAhFz4vy0htestFxgCahW9kcHE=", - "dev": true, - "requires": { - "babel-core": "^6.26.0", - "babel-runtime": "^6.26.0", - "core-js": "^2.5.0", - "home-or-tmp": "^2.0.0", - "lodash": "^4.17.4", - "mkdirp": "^0.5.1", - "source-map-support": "^0.4.15" - }, - "dependencies": { - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - }, - "source-map-support": { - "version": "0.4.18", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz", - "integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==", - "dev": true, - "requires": { - "source-map": "^0.5.6" - } - } - } - }, - "babel-runtime": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", - "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", - "dev": true, - "requires": { - "core-js": "^2.4.0", - "regenerator-runtime": "^0.11.0" - } - }, - "babel-template": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz", - "integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=", - "dev": true, - "requires": { - "babel-runtime": "^6.26.0", - "babel-traverse": "^6.26.0", - "babel-types": "^6.26.0", - "babylon": "^6.18.0", - "lodash": "^4.17.4" - } - }, - "babel-traverse": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz", - "integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=", + "version": "24.6.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.6.0.tgz", + "integrity": "sha512-3pKNH6hMt9SbOv0F3WVmy5CWQ4uogS3k0GY5XLyQHJ9EGpAT9XWkFd2ZiXXtkwFHdAHa5j7w7kfxSP5lAIwu7w==", "dev": true, "requires": { - "babel-code-frame": "^6.26.0", - "babel-messages": "^6.23.0", - "babel-runtime": "^6.26.0", - "babel-types": "^6.26.0", - "babylon": "^6.18.0", - "debug": "^2.6.8", - "globals": "^9.18.0", - "invariant": "^2.2.2", - "lodash": "^4.17.4" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - } + "@types/babel__traverse": "^7.0.6" } }, - "babel-types": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz", - "integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=", + "babel-preset-jest": { + "version": "24.6.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-24.6.0.tgz", + "integrity": "sha512-pdZqLEdmy1ZK5kyRUfvBb2IfTPb2BUvIJczlPspS8fWmBQslNNDBqVfh7BW5leOVJMDZKzjD8XEyABTk6gQ5yw==", "dev": true, "requires": { - "babel-runtime": "^6.26.0", - "esutils": "^2.0.2", - "lodash": "^4.17.4", - "to-fast-properties": "^1.0.3" + "@babel/plugin-syntax-object-rest-spread": "^7.0.0", + "babel-plugin-jest-hoist": "^24.6.0" } }, - "babylon": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", - "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==", - "dev": true - }, "balanced-match": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", @@ -1269,14 +1542,32 @@ } }, "braces": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", - "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "dev": true, "requires": { - "expand-range": "^1.8.1", - "preserve": "^0.2.0", - "repeat-element": "^1.1.2" + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } } }, "brorand": { @@ -1309,7 +1600,7 @@ }, "browserify-aes": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "resolved": "http://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", "dev": true, "requires": { @@ -1346,7 +1637,7 @@ }, "browserify-rsa": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", + "resolved": "http://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", "dev": true, "requires": { @@ -1388,9 +1679,9 @@ } }, "bser": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.0.0.tgz", - "integrity": "sha1-mseNPtXZFYBP2HrLFYvHlxR6Fxk=", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.0.tgz", + "integrity": "sha512-8zsjWrQkkBoLK6uxASk1nJ2SKv97ltiGDo6A3wA0/yRPz+CwmEyDo0hUrhIuukG2JHpAl3bvFIixw2/3Hi0DOg==", "dev": true, "requires": { "node-int64": "^0.4.0" @@ -1398,7 +1689,7 @@ }, "buffer": { "version": "4.9.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz", + "resolved": "http://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz", "integrity": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=", "dev": true, "requires": { @@ -1531,9 +1822,9 @@ } }, "callsites": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", - "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true }, "camelcase": { @@ -1543,12 +1834,12 @@ "dev": true }, "capture-exit": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-1.2.0.tgz", - "integrity": "sha1-HF/MSJ/QqwDU8ax64QcuMXP7q28=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", + "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", "dev": true, "requires": { - "rsvp": "^3.3.3" + "rsvp": "^4.8.4" } }, "caseless": { @@ -1727,9 +2018,9 @@ } }, "ci-info": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz", - "integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", "dev": true }, "cipher-base": { @@ -1946,12 +2237,6 @@ "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", "dev": true }, - "core-js": { - "version": "2.5.7", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz", - "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==", - "dev": true - }, "core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", @@ -1969,7 +2254,7 @@ }, "create-hash": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "resolved": "http://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", "dev": true, "requires": { @@ -1982,7 +2267,7 @@ }, "create-hmac": { "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "resolved": "http://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", "dev": true, "requires": { @@ -2088,9 +2373,9 @@ "dev": true }, "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "requires": { "ms": "2.0.0" @@ -2113,15 +2398,6 @@ "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" }, - "default-require-extensions": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-1.0.0.tgz", - "integrity": "sha1-836hXT4T/9m0N9M+GnW1+5eHTLg=", - "dev": true, - "requires": { - "strip-bom": "^2.0.0" - } - }, "define-properties": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", @@ -2210,15 +2486,6 @@ "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=", "dev": true }, - "detect-indent": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz", - "integrity": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=", - "dev": true, - "requires": { - "repeating": "^2.0.0" - } - }, "detect-newline": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz", @@ -2231,9 +2498,15 @@ "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==", "dev": true }, + "diff-sequences": { + "version": "24.3.0", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-24.3.0.tgz", + "integrity": "sha512-xLqpez+Zj9GKSnPWS0WZw1igGocZ+uua8+y+5dDNTT934N3QuY1sp2LkHzwiaYQGz60hMq0pjAshdeXm5VUOEw==", + "dev": true + }, "diffie-hellman": { "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "resolved": "http://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", "dev": true, "requires": { @@ -2351,16 +2624,17 @@ } }, "es-abstract": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz", - "integrity": "sha512-C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA==", + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.13.0.tgz", + "integrity": "sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg==", "dev": true, "requires": { - "es-to-primitive": "^1.1.1", + "es-to-primitive": "^1.2.0", "function-bind": "^1.1.1", - "has": "^1.0.1", - "is-callable": "^1.1.3", - "is-regex": "^1.0.4" + "has": "^1.0.3", + "is-callable": "^1.1.4", + "is-regex": "^1.0.4", + "object-keys": "^1.0.12" } }, "es-to-primitive": { @@ -2451,27 +2725,39 @@ } }, "exec-sh": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.2.2.tgz", - "integrity": "sha512-FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw==", - "dev": true, - "requires": { - "merge": "^1.2.0" - } + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.2.tgz", + "integrity": "sha512-9sLAvzhI5nc8TpuQUh4ahMdCrWT00wPWz7j47/emR5+2qEfoZP5zzUXvx+vdx+H6ohhnsYC31iX04QLYJK8zTg==", + "dev": true }, "execa": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", - "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", "dev": true, "requires": { - "cross-spawn": "^5.0.1", - "get-stream": "^3.0.0", + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", "is-stream": "^1.1.0", "npm-run-path": "^2.0.0", "p-finally": "^1.0.0", "signal-exit": "^3.0.0", "strip-eof": "^1.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + } } }, "exit": { @@ -2481,21 +2767,38 @@ "dev": true }, "expand-brackets": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", - "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", - "dev": true, - "requires": { - "is-posix-bracket": "^0.1.0" - } - }, - "expand-range": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", - "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", "dev": true, "requires": { - "fill-range": "^2.1.0" + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } } }, "expand-tilde": { @@ -2508,28 +2811,17 @@ } }, "expect": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/expect/-/expect-23.6.0.tgz", - "integrity": "sha512-dgSoOHgmtn/aDGRVFWclQyPDKl2CQRq0hmIEoUAuQs/2rn2NcvCWcSCovm6BLeuB/7EZuLGu2QfnR+qRt5OM4w==", + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-24.8.0.tgz", + "integrity": "sha512-/zYvP8iMDrzaaxHVa724eJBCKqSHmO0FA7EDkBiRHxg6OipmMn1fN+C8T9L9K8yr7UONkOifu6+LLH+z76CnaA==", "dev": true, "requires": { + "@jest/types": "^24.8.0", "ansi-styles": "^3.2.0", - "jest-diff": "^23.6.0", - "jest-get-type": "^22.1.0", - "jest-matcher-utils": "^23.6.0", - "jest-message-util": "^23.4.0", - "jest-regex-util": "^23.3.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - } + "jest-get-type": "^24.8.0", + "jest-matcher-utils": "^24.8.0", + "jest-message-util": "^24.8.0", + "jest-regex-util": "^24.3.0" } }, "extend": { @@ -2559,76 +2851,132 @@ } }, "extglob": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", - "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", - "dev": true, - "requires": { - "is-extglob": "^1.0.0" - } - }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" - }, - "fast-deep-equal": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz", - "integrity": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=" - }, - "fast-json-stable-stringify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", - "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=" - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" - }, - "fb-watchman": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.0.tgz", - "integrity": "sha1-VOmr99+i8mzZsWNsWIwa/AXeXVg=", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", "dev": true, "requires": { - "bser": "^2.0.0" - } - }, - "figgy-pudding": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.1.tgz", - "integrity": "sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w==", - "dev": true + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", + "dev": true + } + } }, - "filename-regex": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", - "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=", - "dev": true + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" }, - "fileset": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/fileset/-/fileset-2.0.3.tgz", - "integrity": "sha1-jnVIqW08wjJ+5eZ0FocjozO7oqA=", + "fast-deep-equal": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz", + "integrity": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=" + }, + "fast-json-stable-stringify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", + "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=" + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" + }, + "fb-watchman": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.0.tgz", + "integrity": "sha1-VOmr99+i8mzZsWNsWIwa/AXeXVg=", "dev": true, "requires": { - "glob": "^7.0.3", - "minimatch": "^3.0.3" + "bser": "^2.0.0" } }, + "figgy-pudding": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.1.tgz", + "integrity": "sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w==", + "dev": true + }, "fill-range": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", - "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", "dev": true, "requires": { - "is-number": "^2.1.0", - "isobject": "^2.0.0", - "randomatic": "^3.0.0", - "repeat-element": "^1.1.2", - "repeat-string": "^1.5.2" + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } } }, "find-cache-dir": { @@ -2697,12 +3045,12 @@ } }, "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "dev": true, "requires": { - "locate-path": "^2.0.0" + "locate-path": "^3.0.0" } }, "findup-sync": { @@ -3056,15 +3404,6 @@ "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", "dev": true }, - "for-own": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", - "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", - "dev": true, - "requires": { - "for-in": "^1.0.1" - } - }, "forever-agent": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", @@ -3689,10 +4028,13 @@ "dev": true }, "get-stream": { - "version": "3.0.0", - "resolved": "http://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", - "dev": true + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } }, "get-value": { "version": "2.0.6", @@ -3722,25 +4064,6 @@ "path-is-absolute": "^1.0.0" } }, - "glob-base": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", - "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", - "dev": true, - "requires": { - "glob-parent": "^2.0.0", - "is-glob": "^2.0.0" - } - }, - "glob-parent": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", - "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", - "dev": true, - "requires": { - "is-glob": "^2.0.0" - } - }, "global-modules": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", @@ -3783,9 +4106,9 @@ } }, "globals": { - "version": "9.18.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz", - "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==", + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true }, "graceful-fs": { @@ -3835,15 +4158,6 @@ "function-bind": "^1.1.1" } }, - "has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, "has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", @@ -3963,16 +4277,6 @@ "resolved": "https://registry.npmjs.org/hoek/-/hoek-4.2.1.tgz", "integrity": "sha512-QLg82fGkfnJ/4iy1xZ81/9SIJiq1NGFUMGs6ParyjBZr6jW2Ufj/snDqTHixNlHdPNwN2RLVD0Pi3igeK9+JfA==" }, - "home-or-tmp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz", - "integrity": "sha1-42w/LSyufXRqhX440Y1fMqeILbg=", - "dev": true, - "requires": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.1" - } - }, "homedir-polyfill": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", @@ -4038,12 +4342,12 @@ "dev": true }, "import-local": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-1.0.0.tgz", - "integrity": "sha512-vAaZHieK9qjGo58agRBg+bhHX3hoTZU/Oa3GESWLz7t1U62fk63aHuDJJEteXoDeTCcPmUT+z38gkHPZkkmpmQ==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", "dev": true, "requires": { - "pkg-dir": "^2.0.0", + "pkg-dir": "^3.0.0", "resolve-cwd": "^2.0.0" } }, @@ -4096,9 +4400,9 @@ "integrity": "sha512-Ieh06s48WnEYGcqHepdsJUIJUXpwH5o5vodAX+DK2JA/gjy4EbEcQZxw+uFfzysmKjiLXGYwNG3qDZsKVMcINQ==" }, "invert-kv": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", - "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz", + "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==", "dev": true }, "is-accessor-descriptor": { @@ -4131,15 +4435,6 @@ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", "dev": true }, - "is-builtin-module": { - "version": "1.0.0", - "resolved": "http://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", - "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", - "dev": true, - "requires": { - "builtin-modules": "^1.0.0" - } - }, "is-callable": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz", @@ -4147,12 +4442,12 @@ "dev": true }, "is-ci": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz", - "integrity": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", "dev": true, "requires": { - "ci-info": "^1.5.0" + "ci-info": "^2.0.0" } }, "is-data-descriptor": { @@ -4189,42 +4484,12 @@ } } }, - "is-dotfile": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz", - "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=", - "dev": true - }, - "is-equal-shallow": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", - "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", - "dev": true, - "requires": { - "is-primitive": "^2.0.0" - } - }, "is-extendable": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", "dev": true }, - "is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", - "dev": true - }, - "is-finite": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", - "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", - "dev": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, "is-fullwidth-code-point": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", @@ -4232,24 +4497,15 @@ "dev": true }, "is-generator-fn": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-1.0.0.tgz", - "integrity": "sha1-lp1J4bszKfa7fwkIm+JleLLd1Go=", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "dev": true }, - "is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", - "dev": true, - "requires": { - "is-extglob": "^1.0.0" - } - }, "is-number": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", - "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", "dev": true, "requires": { "kind-of": "^3.0.2" @@ -4272,18 +4528,6 @@ } } }, - "is-posix-bracket": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz", - "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=", - "dev": true - }, - "is-primitive": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", - "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=", - "dev": true - }, "is-regex": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", @@ -4312,12 +4556,6 @@ "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" }, - "is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", - "dev": true - }, "is-windows": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", @@ -4343,13 +4581,10 @@ "dev": true }, "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "dev": true, - "requires": { - "isarray": "1.0.0" - } + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true }, "isomorphic-fetch": { "version": "2.2.1", @@ -4376,522 +4611,563 @@ "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" }, - "istanbul-api": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/istanbul-api/-/istanbul-api-1.3.7.tgz", - "integrity": "sha512-4/ApBnMVeEPG3EkSzcw25wDe4N66wxwn+KKn6b47vyek8Xb3NBAcg4xfuQbS7BqcZuTX4wxfD5lVagdggR3gyA==", - "dev": true, - "requires": { - "async": "^2.1.4", - "fileset": "^2.0.2", - "istanbul-lib-coverage": "^1.2.1", - "istanbul-lib-hook": "^1.2.2", - "istanbul-lib-instrument": "^1.10.2", - "istanbul-lib-report": "^1.1.5", - "istanbul-lib-source-maps": "^1.2.6", - "istanbul-reports": "^1.5.1", - "js-yaml": "^3.7.0", - "mkdirp": "^0.5.1", - "once": "^1.4.0" - } - }, "istanbul-lib-coverage": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.1.tgz", - "integrity": "sha512-PzITeunAgyGbtY1ibVIUiV679EFChHjoMNRibEIobvmrCRaIgwLxNucOSimtNWUhEib/oO7QY2imD75JVgCJWQ==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz", + "integrity": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==", "dev": true }, - "istanbul-lib-hook": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-1.2.2.tgz", - "integrity": "sha512-/Jmq7Y1VeHnZEQ3TL10VHyb564mn6VrQXHchON9Jf/AEcmQ3ZIiyD1BVzNOKTZf/G3gE+kiGK6SmpF9y3qGPLw==", - "dev": true, - "requires": { - "append-transform": "^0.4.0" + "istanbul-lib-instrument": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz", + "integrity": "sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==", + "dev": true, + "requires": { + "@babel/generator": "^7.4.0", + "@babel/parser": "^7.4.3", + "@babel/template": "^7.4.0", + "@babel/traverse": "^7.4.3", + "@babel/types": "^7.4.0", + "istanbul-lib-coverage": "^2.0.5", + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.2.0.tgz", + "integrity": "sha512-jdFC1VdUGT/2Scgbimf7FSx9iJLXoqfglSF+gJeuNWVpiE37OIbc1jywR/GJyFdz3mnkz2/id0L0J/cr0izR5A==", + "dev": true + } } }, - "istanbul-lib-instrument": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.2.tgz", - "integrity": "sha512-aWHxfxDqvh/ZlxR8BBaEPVSWDPUkGD63VjGQn3jcw8jCp7sHEMKcrj4xfJn/ABzdMEHiQNyvDQhqm5o8+SQg7A==", + "istanbul-lib-report": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz", + "integrity": "sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ==", "dev": true, "requires": { - "babel-generator": "^6.18.0", - "babel-template": "^6.16.0", - "babel-traverse": "^6.18.0", - "babel-types": "^6.18.0", - "babylon": "^6.18.0", - "istanbul-lib-coverage": "^1.2.1", - "semver": "^5.3.0" + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "supports-color": "^6.1.0" } }, - "istanbul-lib-report": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-1.1.5.tgz", - "integrity": "sha512-UsYfRMoi6QO/doUshYNqcKJqVmFe9w51GZz8BS3WB0lYxAllQYklka2wP9+dGZeHYaWIdcXUx8JGdbqaoXRXzw==", + "istanbul-lib-source-maps": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz", + "integrity": "sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==", "dev": true, "requires": { - "istanbul-lib-coverage": "^1.2.1", - "mkdirp": "^0.5.1", - "path-parse": "^1.0.5", - "supports-color": "^3.1.2" + "debug": "^4.1.1", + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "rimraf": "^2.6.3", + "source-map": "^0.6.1" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", "dev": true, "requires": { - "has-flag": "^1.0.0" + "glob": "^7.1.3" } } } }, - "istanbul-lib-source-maps": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.6.tgz", - "integrity": "sha512-TtbsY5GIHgbMsMiRw35YBHGpZ1DVFEO19vxxeiDMYaeOFOCzfnYVxvl6pOUIZR4dtPhAGpSMup8OyF8ubsaqEg==", - "dev": true, - "requires": { - "debug": "^3.1.0", - "istanbul-lib-coverage": "^1.2.1", - "mkdirp": "^0.5.1", - "rimraf": "^2.6.1", - "source-map": "^0.5.3" - }, - "dependencies": { - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - } - } - }, "istanbul-reports": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-1.5.1.tgz", - "integrity": "sha512-+cfoZ0UXzWjhAdzosCPP3AN8vvef8XDkWtTfgaN+7L3YTpNYITnCaEkceo5SEYy644VkHka/P1FvkWvrG/rrJw==", + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-2.2.6.tgz", + "integrity": "sha512-SKi4rnMyLBKe0Jy2uUdx28h8oG7ph2PPuQPvIAh31d+Ci+lSiEu4C+h3oBPuJ9+mPKhOyW0M8gY4U5NM1WLeXA==", "dev": true, "requires": { - "handlebars": "^4.0.3" + "handlebars": "^4.1.2" } }, "jest": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-23.6.0.tgz", - "integrity": "sha512-lWzcd+HSiqeuxyhG+EnZds6iO3Y3ZEnMrfZq/OTGvF/C+Z4fPMCdhWTGSAiO2Oym9rbEXfwddHhh6jqrTF3+Lw==", + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-24.8.0.tgz", + "integrity": "sha512-o0HM90RKFRNWmAWvlyV8i5jGZ97pFwkeVoGvPW1EtLTgJc2+jcuqcbbqcSZLE/3f2S5pt0y2ZBETuhpWNl1Reg==", "dev": true, "requires": { - "import-local": "^1.0.0", - "jest-cli": "^23.6.0" + "import-local": "^2.0.0", + "jest-cli": "^24.8.0" }, "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, "jest-cli": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-23.6.0.tgz", - "integrity": "sha512-hgeD1zRUp1E1zsiyOXjEn4LzRLWdJBV//ukAHGlx6s5mfCNJTbhbHjgxnDUXA8fsKWN/HqFFF6X5XcCwC/IvYQ==", + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-24.8.0.tgz", + "integrity": "sha512-+p6J00jSMPQ116ZLlHJJvdf8wbjNbZdeSX9ptfHX06/MSNaXmKihQzx5vQcw0q2G6JsdVkUIdWbOWtSnaYs3yA==", "dev": true, "requires": { - "ansi-escapes": "^3.0.0", + "@jest/core": "^24.8.0", + "@jest/test-result": "^24.8.0", + "@jest/types": "^24.8.0", "chalk": "^2.0.1", "exit": "^0.1.2", - "glob": "^7.1.2", - "graceful-fs": "^4.1.11", - "import-local": "^1.0.0", - "is-ci": "^1.0.10", - "istanbul-api": "^1.3.1", - "istanbul-lib-coverage": "^1.2.0", - "istanbul-lib-instrument": "^1.10.1", - "istanbul-lib-source-maps": "^1.2.4", - "jest-changed-files": "^23.4.2", - "jest-config": "^23.6.0", - "jest-environment-jsdom": "^23.4.0", - "jest-get-type": "^22.1.0", - "jest-haste-map": "^23.6.0", - "jest-message-util": "^23.4.0", - "jest-regex-util": "^23.3.0", - "jest-resolve-dependencies": "^23.6.0", - "jest-runner": "^23.6.0", - "jest-runtime": "^23.6.0", - "jest-snapshot": "^23.6.0", - "jest-util": "^23.4.0", - "jest-validate": "^23.6.0", - "jest-watcher": "^23.4.0", - "jest-worker": "^23.2.0", - "micromatch": "^2.3.11", - "node-notifier": "^5.2.1", - "prompts": "^0.1.9", - "realpath-native": "^1.0.0", - "rimraf": "^2.5.4", - "slash": "^1.0.0", - "string-length": "^2.0.0", - "strip-ansi": "^4.0.0", - "which": "^1.2.12", - "yargs": "^11.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" + "import-local": "^2.0.0", + "is-ci": "^2.0.0", + "jest-config": "^24.8.0", + "jest-util": "^24.8.0", + "jest-validate": "^24.8.0", + "prompts": "^2.0.1", + "realpath-native": "^1.1.0", + "yargs": "^12.0.2" } } } }, "jest-changed-files": { - "version": "23.4.2", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-23.4.2.tgz", - "integrity": "sha512-EyNhTAUWEfwnK0Is/09LxoqNDOn7mU7S3EHskG52djOFS/z+IT0jT3h3Ql61+dklcG7bJJitIWEMB4Sp1piHmA==", + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-24.8.0.tgz", + "integrity": "sha512-qgANC1Yrivsq+UrLXsvJefBKVoCsKB0Hv+mBb6NMjjZ90wwxCDmU3hsCXBya30cH+LnPYjwgcU65i6yJ5Nfuug==", "dev": true, "requires": { + "@jest/types": "^24.8.0", + "execa": "^1.0.0", "throat": "^4.0.0" } }, "jest-config": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-23.6.0.tgz", - "integrity": "sha512-i8V7z9BeDXab1+VNo78WM0AtWpBRXJLnkT+lyT+Slx/cbP5sZJ0+NDuLcmBE5hXAoK0aUp7vI+MOxR+R4d8SRQ==", + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-24.8.0.tgz", + "integrity": "sha512-Czl3Nn2uEzVGsOeaewGWoDPD8GStxCpAe0zOYs2x2l0fZAgPbCr3uwUkgNKV3LwE13VXythM946cd5rdGkkBZw==", "dev": true, "requires": { - "babel-core": "^6.0.0", - "babel-jest": "^23.6.0", + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.8.0", + "@jest/types": "^24.8.0", + "babel-jest": "^24.8.0", "chalk": "^2.0.1", "glob": "^7.1.1", - "jest-environment-jsdom": "^23.4.0", - "jest-environment-node": "^23.4.0", - "jest-get-type": "^22.1.0", - "jest-jasmine2": "^23.6.0", - "jest-regex-util": "^23.3.0", - "jest-resolve": "^23.6.0", - "jest-util": "^23.4.0", - "jest-validate": "^23.6.0", - "micromatch": "^2.3.11", - "pretty-format": "^23.6.0" + "jest-environment-jsdom": "^24.8.0", + "jest-environment-node": "^24.8.0", + "jest-get-type": "^24.8.0", + "jest-jasmine2": "^24.8.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.8.0", + "jest-util": "^24.8.0", + "jest-validate": "^24.8.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.8.0", + "realpath-native": "^1.1.0" } }, "jest-diff": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-23.6.0.tgz", - "integrity": "sha512-Gz9l5Ov+X3aL5L37IT+8hoCUsof1CVYBb2QEkOupK64XyRR3h+uRpYIm97K7sY8diFxowR8pIGEdyfMKTixo3g==", + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-24.8.0.tgz", + "integrity": "sha512-wxetCEl49zUpJ/bvUmIFjd/o52J+yWcoc5ZyPq4/W1LUKGEhRYDIbP1KcF6t+PvqNrGAFk4/JhtxDq/Nnzs66g==", "dev": true, "requires": { "chalk": "^2.0.1", - "diff": "^3.2.0", - "jest-get-type": "^22.1.0", - "pretty-format": "^23.6.0" + "diff-sequences": "^24.3.0", + "jest-get-type": "^24.8.0", + "pretty-format": "^24.8.0" } }, "jest-docblock": { - "version": "23.2.0", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-23.2.0.tgz", - "integrity": "sha1-8IXh8YVI2Z/dabICB+b9VdkTg6c=", + "version": "24.3.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-24.3.0.tgz", + "integrity": "sha512-nlANmF9Yq1dufhFlKG9rasfQlrY7wINJbo3q01tu56Jv5eBU5jirylhF2O5ZBnLxzOVBGRDz/9NAwNyBtG4Nyg==", "dev": true, "requires": { "detect-newline": "^2.1.0" } }, "jest-each": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-23.6.0.tgz", - "integrity": "sha512-x7V6M/WGJo6/kLoissORuvLIeAoyo2YqLOoCDkohgJ4XOXSqOtyvr8FbInlAWS77ojBsZrafbozWoKVRdtxFCg==", + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-24.8.0.tgz", + "integrity": "sha512-NrwK9gaL5+XgrgoCsd9svsoWdVkK4gnvyhcpzd6m487tXHqIdYeykgq3MKI1u4I+5Zf0tofr70at9dWJDeb+BA==", "dev": true, "requires": { + "@jest/types": "^24.8.0", "chalk": "^2.0.1", - "pretty-format": "^23.6.0" + "jest-get-type": "^24.8.0", + "jest-util": "^24.8.0", + "pretty-format": "^24.8.0" } }, "jest-environment-jsdom": { - "version": "23.4.0", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-23.4.0.tgz", - "integrity": "sha1-BWp5UrP+pROsYqFAosNox52eYCM=", + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-24.8.0.tgz", + "integrity": "sha512-qbvgLmR7PpwjoFjM/sbuqHJt/NCkviuq9vus9NBn/76hhSidO+Z6Bn9tU8friecegbJL8gzZQEMZBQlFWDCwAQ==", "dev": true, "requires": { - "jest-mock": "^23.2.0", - "jest-util": "^23.4.0", + "@jest/environment": "^24.8.0", + "@jest/fake-timers": "^24.8.0", + "@jest/types": "^24.8.0", + "jest-mock": "^24.8.0", + "jest-util": "^24.8.0", "jsdom": "^11.5.1" } }, "jest-environment-node": { - "version": "23.4.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-23.4.0.tgz", - "integrity": "sha1-V+gO0IQd6jAxZ8zozXlSHeuv3hA=", + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-24.8.0.tgz", + "integrity": "sha512-vIGUEScd1cdDgR6sqn2M08sJTRLQp6Dk/eIkCeO4PFHxZMOgy+uYLPMC4ix3PEfM5Au/x3uQ/5Tl0DpXXZsJ/Q==", "dev": true, "requires": { - "jest-mock": "^23.2.0", - "jest-util": "^23.4.0" + "@jest/environment": "^24.8.0", + "@jest/fake-timers": "^24.8.0", + "@jest/types": "^24.8.0", + "jest-mock": "^24.8.0", + "jest-util": "^24.8.0" } }, "jest-get-type": { - "version": "22.4.3", - "resolved": "http://registry.npmjs.org/jest-get-type/-/jest-get-type-22.4.3.tgz", - "integrity": "sha512-/jsz0Y+V29w1chdXVygEKSz2nBoHoYqNShPe+QgxSNjAuP1i8+k4LbQNrfoliKej0P45sivkSCh7yiD6ubHS3w==", + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-24.8.0.tgz", + "integrity": "sha512-RR4fo8jEmMD9zSz2nLbs2j0zvPpk/KCEz3a62jJWbd2ayNo0cb+KFRxPHVhE4ZmgGJEQp0fosmNz84IfqM8cMQ==", "dev": true }, "jest-haste-map": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-23.6.0.tgz", - "integrity": "sha512-uyNhMyl6dr6HaXGHp8VF7cK6KpC6G9z9LiMNsst+rJIZ8l7wY0tk8qwjPmEghczojZ2/ZhtEdIabZ0OQRJSGGg==", + "version": "24.8.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.8.1.tgz", + "integrity": "sha512-SwaxMGVdAZk3ernAx2Uv2sorA7jm3Kx+lR0grp6rMmnY06Kn/urtKx1LPN2mGTea4fCT38impYT28FfcLUhX0g==", "dev": true, "requires": { + "@jest/types": "^24.8.0", + "anymatch": "^2.0.0", "fb-watchman": "^2.0.0", - "graceful-fs": "^4.1.11", + "fsevents": "^1.2.7", + "graceful-fs": "^4.1.15", "invariant": "^2.2.4", - "jest-docblock": "^23.2.0", - "jest-serializer": "^23.0.1", - "jest-worker": "^23.2.0", - "micromatch": "^2.3.11", - "sane": "^2.0.0" + "jest-serializer": "^24.4.0", + "jest-util": "^24.8.0", + "jest-worker": "^24.6.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.0.tgz", + "integrity": "sha512-jpSvDPV4Cq/bgtpndIWbI5hmYxhQGHPC4d4cqBPb4DLniCfhJokdXhwhaDuLBGLQdvvRum/UiX6ECVIPvDXqdg==", + "dev": true + } } }, "jest-jasmine2": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-23.6.0.tgz", - "integrity": "sha512-pe2Ytgs1nyCs8IvsEJRiRTPC0eVYd8L/dXJGU08GFuBwZ4sYH/lmFDdOL3ZmvJR8QKqV9MFuwlsAi/EWkFUbsQ==", + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-24.8.0.tgz", + "integrity": "sha512-cEky88npEE5LKd5jPpTdDCLvKkdyklnaRycBXL6GNmpxe41F0WN44+i7lpQKa/hcbXaQ+rc9RMaM4dsebrYong==", "dev": true, "requires": { - "babel-traverse": "^6.0.0", + "@babel/traverse": "^7.1.0", + "@jest/environment": "^24.8.0", + "@jest/test-result": "^24.8.0", + "@jest/types": "^24.8.0", "chalk": "^2.0.1", "co": "^4.6.0", - "expect": "^23.6.0", - "is-generator-fn": "^1.0.0", - "jest-diff": "^23.6.0", - "jest-each": "^23.6.0", - "jest-matcher-utils": "^23.6.0", - "jest-message-util": "^23.4.0", - "jest-snapshot": "^23.6.0", - "jest-util": "^23.4.0", - "pretty-format": "^23.6.0" + "expect": "^24.8.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^24.8.0", + "jest-matcher-utils": "^24.8.0", + "jest-message-util": "^24.8.0", + "jest-runtime": "^24.8.0", + "jest-snapshot": "^24.8.0", + "jest-util": "^24.8.0", + "pretty-format": "^24.8.0", + "throat": "^4.0.0" } }, "jest-leak-detector": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-23.6.0.tgz", - "integrity": "sha512-f/8zA04rsl1Nzj10HIyEsXvYlMpMPcy0QkQilVZDFOaPbv2ur71X5u2+C4ZQJGyV/xvVXtCCZ3wQ99IgQxftCg==", + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-24.8.0.tgz", + "integrity": "sha512-cG0yRSK8A831LN8lIHxI3AblB40uhv0z+SsQdW3GoMMVcK+sJwrIIyax5tu3eHHNJ8Fu6IMDpnLda2jhn2pD/g==", "dev": true, "requires": { - "pretty-format": "^23.6.0" + "pretty-format": "^24.8.0" } }, "jest-matcher-utils": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-23.6.0.tgz", - "integrity": "sha512-rosyCHQfBcol4NsckTn01cdelzWLU9Cq7aaigDf8VwwpIRvWE/9zLgX2bON+FkEW69/0UuYslUe22SOdEf2nog==", + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-24.8.0.tgz", + "integrity": "sha512-lex1yASY51FvUuHgm0GOVj7DCYEouWSlIYmCW7APSqB9v8mXmKSn5+sWVF0MhuASG0bnYY106/49JU1FZNl5hw==", "dev": true, "requires": { "chalk": "^2.0.1", - "jest-get-type": "^22.1.0", - "pretty-format": "^23.6.0" + "jest-diff": "^24.8.0", + "jest-get-type": "^24.8.0", + "pretty-format": "^24.8.0" } }, "jest-message-util": { - "version": "23.4.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-23.4.0.tgz", - "integrity": "sha1-F2EMUJQjSVCNAaPR4L2iwHkIap8=", + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-24.8.0.tgz", + "integrity": "sha512-p2k71rf/b6ns8btdB0uVdljWo9h0ovpnEe05ZKWceQGfXYr4KkzgKo3PBi8wdnd9OtNh46VpNIJynUn/3MKm1g==", "dev": true, "requires": { - "@babel/code-frame": "^7.0.0-beta.35", + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.8.0", + "@jest/types": "^24.8.0", + "@types/stack-utils": "^1.0.1", "chalk": "^2.0.1", - "micromatch": "^2.3.11", - "slash": "^1.0.0", + "micromatch": "^3.1.10", + "slash": "^2.0.0", "stack-utils": "^1.0.1" } }, "jest-mock": { - "version": "23.2.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-23.2.0.tgz", - "integrity": "sha1-rRxg8p6HGdR8JuETgJi20YsmETQ=", + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-24.8.0.tgz", + "integrity": "sha512-6kWugwjGjJw+ZkK4mDa0Df3sDlUTsV47MSrT0nGQ0RBWJbpODDQ8MHDVtGtUYBne3IwZUhtB7elxHspU79WH3A==", + "dev": true, + "requires": { + "@jest/types": "^24.8.0" + } + }, + "jest-pnp-resolver": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz", + "integrity": "sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ==", "dev": true }, "jest-regex-util": { - "version": "23.3.0", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-23.3.0.tgz", - "integrity": "sha1-X4ZylUfCeFxAAs6qj4Sf6MpHG8U=", + "version": "24.3.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-24.3.0.tgz", + "integrity": "sha512-tXQR1NEOyGlfylyEjg1ImtScwMq8Oh3iJbGTjN7p0J23EuVX1MA8rwU69K4sLbCmwzgCUbVkm0FkSF9TdzOhtg==", "dev": true }, "jest-resolve": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-23.6.0.tgz", - "integrity": "sha512-XyoRxNtO7YGpQDmtQCmZjum1MljDqUCob7XlZ6jy9gsMugHdN2hY4+Acz9Qvjz2mSsOnPSH7skBmDYCHXVZqkA==", + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-24.8.0.tgz", + "integrity": "sha512-+hjSzi1PoRvnuOICoYd5V/KpIQmkAsfjFO71458hQ2Whi/yf1GDeBOFj8Gxw4LrApHsVJvn5fmjcPdmoUHaVKw==", "dev": true, "requires": { + "@jest/types": "^24.8.0", "browser-resolve": "^1.11.3", "chalk": "^2.0.1", - "realpath-native": "^1.0.0" + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" } }, "jest-resolve-dependencies": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-23.6.0.tgz", - "integrity": "sha512-EkQWkFWjGKwRtRyIwRwI6rtPAEyPWlUC2MpzHissYnzJeHcyCn1Hc8j7Nn1xUVrS5C6W5+ZL37XTem4D4pLZdA==", + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-24.8.0.tgz", + "integrity": "sha512-hyK1qfIf/krV+fSNyhyJeq3elVMhK9Eijlwy+j5jqmZ9QsxwKBiP6qukQxaHtK8k6zql/KYWwCTQ+fDGTIJauw==", "dev": true, "requires": { - "jest-regex-util": "^23.3.0", - "jest-snapshot": "^23.6.0" + "@jest/types": "^24.8.0", + "jest-regex-util": "^24.3.0", + "jest-snapshot": "^24.8.0" } }, "jest-runner": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-23.6.0.tgz", - "integrity": "sha512-kw0+uj710dzSJKU6ygri851CObtCD9cN8aNkg8jWJf4ewFyEa6kwmiH/r/M1Ec5IL/6VFa0wnAk6w+gzUtjJzA==", + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-24.8.0.tgz", + "integrity": "sha512-utFqC5BaA3JmznbissSs95X1ZF+d+4WuOWwpM9+Ak356YtMhHE/GXUondZdcyAAOTBEsRGAgH/0TwLzfI9h7ow==", "dev": true, "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.8.0", + "@jest/test-result": "^24.8.0", + "@jest/types": "^24.8.0", + "chalk": "^2.4.2", "exit": "^0.1.2", - "graceful-fs": "^4.1.11", - "jest-config": "^23.6.0", - "jest-docblock": "^23.2.0", - "jest-haste-map": "^23.6.0", - "jest-jasmine2": "^23.6.0", - "jest-leak-detector": "^23.6.0", - "jest-message-util": "^23.4.0", - "jest-runtime": "^23.6.0", - "jest-util": "^23.4.0", - "jest-worker": "^23.2.0", + "graceful-fs": "^4.1.15", + "jest-config": "^24.8.0", + "jest-docblock": "^24.3.0", + "jest-haste-map": "^24.8.0", + "jest-jasmine2": "^24.8.0", + "jest-leak-detector": "^24.8.0", + "jest-message-util": "^24.8.0", + "jest-resolve": "^24.8.0", + "jest-runtime": "^24.8.0", + "jest-util": "^24.8.0", + "jest-worker": "^24.6.0", "source-map-support": "^0.5.6", "throat": "^4.0.0" }, "dependencies": { - "source-map-support": { - "version": "0.5.9", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.9.tgz", - "integrity": "sha512-gR6Rw4MvUlYy83vP0vxoVNzM6t8MUXqNuRsuBmBHQDu1Fh6X015FrLdgoDKcNdkwGubozq0P4N0Q37UyFVr1EA==", + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "graceful-fs": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.0.tgz", + "integrity": "sha512-jpSvDPV4Cq/bgtpndIWbI5hmYxhQGHPC4d4cqBPb4DLniCfhJokdXhwhaDuLBGLQdvvRum/UiX6ECVIPvDXqdg==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" + "has-flag": "^3.0.0" } } } }, "jest-runtime": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-23.6.0.tgz", - "integrity": "sha512-ycnLTNPT2Gv+TRhnAYAQ0B3SryEXhhRj1kA6hBPSeZaNQkJ7GbZsxOLUkwg6YmvWGdX3BB3PYKFLDQCAE1zNOw==", + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-24.8.0.tgz", + "integrity": "sha512-Mq0aIXhvO/3bX44ccT+czU1/57IgOMyy80oM0XR/nyD5zgBcesF84BPabZi39pJVA6UXw+fY2Q1N+4BiVUBWOA==", "dev": true, "requires": { - "babel-core": "^6.0.0", - "babel-plugin-istanbul": "^4.1.6", + "@jest/console": "^24.7.1", + "@jest/environment": "^24.8.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.8.0", + "@jest/types": "^24.8.0", + "@types/yargs": "^12.0.2", "chalk": "^2.0.1", - "convert-source-map": "^1.4.0", "exit": "^0.1.2", - "fast-json-stable-stringify": "^2.0.0", - "graceful-fs": "^4.1.11", - "jest-config": "^23.6.0", - "jest-haste-map": "^23.6.0", - "jest-message-util": "^23.4.0", - "jest-regex-util": "^23.3.0", - "jest-resolve": "^23.6.0", - "jest-snapshot": "^23.6.0", - "jest-util": "^23.4.0", - "jest-validate": "^23.6.0", - "micromatch": "^2.3.11", - "realpath-native": "^1.0.0", - "slash": "^1.0.0", - "strip-bom": "3.0.0", - "write-file-atomic": "^2.1.0", - "yargs": "^11.0.0" + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.8.0", + "jest-haste-map": "^24.8.0", + "jest-message-util": "^24.8.0", + "jest-mock": "^24.8.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.8.0", + "jest-snapshot": "^24.8.0", + "jest-util": "^24.8.0", + "jest-validate": "^24.8.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^12.0.2" }, "dependencies": { - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "graceful-fs": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.0.tgz", + "integrity": "sha512-jpSvDPV4Cq/bgtpndIWbI5hmYxhQGHPC4d4cqBPb4DLniCfhJokdXhwhaDuLBGLQdvvRum/UiX6ECVIPvDXqdg==", "dev": true } } }, "jest-serializer": { - "version": "23.0.1", - "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-23.0.1.tgz", - "integrity": "sha1-o3dq6zEekP6D+rnlM+hRAr0WQWU=", + "version": "24.4.0", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.4.0.tgz", + "integrity": "sha512-k//0DtglVstc1fv+GY/VHDIjrtNjdYvYjMlbLUed4kxrE92sIUewOi5Hj3vrpB8CXfkJntRPDRjCrCvUhBdL8Q==", "dev": true }, "jest-snapshot": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-23.6.0.tgz", - "integrity": "sha512-tM7/Bprftun6Cvj2Awh/ikS7zV3pVwjRYU2qNYS51VZHgaAMBs5l4o/69AiDHhQrj5+LA2Lq4VIvK7zYk/bswg==", + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-24.8.0.tgz", + "integrity": "sha512-5ehtWoc8oU9/cAPe6fez6QofVJLBKyqkY2+TlKTOf0VllBB/mqUNdARdcjlZrs9F1Cv+/HKoCS/BknT0+tmfPg==", "dev": true, "requires": { - "babel-types": "^6.0.0", + "@babel/types": "^7.0.0", + "@jest/types": "^24.8.0", "chalk": "^2.0.1", - "jest-diff": "^23.6.0", - "jest-matcher-utils": "^23.6.0", - "jest-message-util": "^23.4.0", - "jest-resolve": "^23.6.0", + "expect": "^24.8.0", + "jest-diff": "^24.8.0", + "jest-matcher-utils": "^24.8.0", + "jest-message-util": "^24.8.0", + "jest-resolve": "^24.8.0", "mkdirp": "^0.5.1", "natural-compare": "^1.4.0", - "pretty-format": "^23.6.0", + "pretty-format": "^24.8.0", "semver": "^5.5.0" } }, "jest-util": { - "version": "23.4.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-23.4.0.tgz", - "integrity": "sha1-TQY8uSe68KI4Mf9hvsLLv0l5NWE=", + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-24.8.0.tgz", + "integrity": "sha512-DYZeE+XyAnbNt0BG1OQqKy/4GVLPtzwGx5tsnDrFcax36rVE3lTA5fbvgmbVPUZf9w77AJ8otqR4VBbfFJkUZA==", "dev": true, "requires": { - "callsites": "^2.0.0", + "@jest/console": "^24.7.1", + "@jest/fake-timers": "^24.8.0", + "@jest/source-map": "^24.3.0", + "@jest/test-result": "^24.8.0", + "@jest/types": "^24.8.0", + "callsites": "^3.0.0", "chalk": "^2.0.1", - "graceful-fs": "^4.1.11", - "is-ci": "^1.0.10", - "jest-message-util": "^23.4.0", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", "mkdirp": "^0.5.1", - "slash": "^1.0.0", + "slash": "^2.0.0", "source-map": "^0.6.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.0.tgz", + "integrity": "sha512-jpSvDPV4Cq/bgtpndIWbI5hmYxhQGHPC4d4cqBPb4DLniCfhJokdXhwhaDuLBGLQdvvRum/UiX6ECVIPvDXqdg==", + "dev": true + } } }, "jest-validate": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-23.6.0.tgz", - "integrity": "sha512-OFKapYxe72yz7agrDAWi8v2WL8GIfVqcbKRCLbRG9PAxtzF9b1SEDdTpytNDN12z2fJynoBwpMpvj2R39plI2A==", + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-24.8.0.tgz", + "integrity": "sha512-+/N7VOEMW1Vzsrk3UWBDYTExTPwf68tavEPKDnJzrC6UlHtUDU/fuEdXqFoHzv9XnQ+zW6X3qMZhJ3YexfeLDA==", "dev": true, "requires": { + "@jest/types": "^24.8.0", + "camelcase": "^5.0.0", "chalk": "^2.0.1", - "jest-get-type": "^22.1.0", + "jest-get-type": "^24.8.0", "leven": "^2.1.0", - "pretty-format": "^23.6.0" + "pretty-format": "^24.8.0" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + } } }, "jest-watcher": { - "version": "23.4.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-23.4.0.tgz", - "integrity": "sha1-0uKM50+NrWxq/JIrksq+9u0FyRw=", + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-24.8.0.tgz", + "integrity": "sha512-SBjwHt5NedQoVu54M5GEx7cl7IGEFFznvd/HNT8ier7cCAx/Qgu9ZMlaTQkvK22G1YOpcWBLQPFSImmxdn3DAw==", "dev": true, "requires": { + "@jest/test-result": "^24.8.0", + "@jest/types": "^24.8.0", + "@types/yargs": "^12.0.9", "ansi-escapes": "^3.0.0", "chalk": "^2.0.1", + "jest-util": "^24.8.0", "string-length": "^2.0.0" } }, "jest-worker": { - "version": "23.2.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-23.2.0.tgz", - "integrity": "sha1-+vcGqNo2+uYOsmlXJX+ntdjqArk=", + "version": "24.6.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.6.0.tgz", + "integrity": "sha512-jDwgW5W9qGNvpI1tNnvajh0a5IE/PuGLFmHk6aR/BZFz8tSgGw17GsDPXAJ6p91IvYDjOw8GpFbvvZGAK+DPQQ==", "dev": true, "requires": { - "merge-stream": "^1.0.1" + "merge-stream": "^1.0.1", + "supports-color": "^6.1.0" } }, "js-tokens": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", - "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "dev": true }, "js-yaml": { @@ -4943,9 +5219,9 @@ } }, "jsesc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz", - "integrity": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s=", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "dev": true }, "json-parse-better-errors": { @@ -4970,10 +5246,21 @@ "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" }, "json5": { - "version": "0.5.1", - "resolved": "http://registry.npmjs.org/json5/-/json5-0.5.1.tgz", - "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=", - "dev": true + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.0.tgz", + "integrity": "sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + }, + "dependencies": { + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + } + } }, "jsonfile": { "version": "4.0.0", @@ -5023,18 +5310,18 @@ } }, "kleur": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-2.0.2.tgz", - "integrity": "sha512-77XF9iTllATmG9lSlIv0qdQ2BQ/h9t0bJllHlbvsQ0zUWfU7Yi0S8L5JXzPZgkefIiajLmBJJ4BsMJmqcf7oxQ==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "dev": true }, "lcid": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", - "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz", + "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==", "dev": true, "requires": { - "invert-kv": "^1.0.0" + "invert-kv": "^2.0.0" } }, "ldfetch": { @@ -5078,16 +5365,15 @@ } }, "load-json-file": { - "version": "1.1.0", - "resolved": "http://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", "dev": true, "requires": { "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", - "strip-bom": "^2.0.0" + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" } }, "loader-runner": { @@ -5125,12 +5411,12 @@ } }, "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "dev": true, "requires": { - "p-locate": "^2.0.0", + "p-locate": "^3.0.0", "path-exists": "^3.0.0" } }, @@ -5232,12 +5518,6 @@ "integrity": "sha512-tMsdNBgOsrUophCAFQl0XPe6Zqk/uy9gnue+jIIKhykO51hxyu6uNx7zBPy0+y/WKYVZZMspV9YeXLNdKk+iYw==", "dev": true }, - "math-random": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.1.tgz", - "integrity": "sha1-izqsWIuKZuSXXjzepn97sylgH6w=", - "dev": true - }, "md5.js": { "version": "1.3.5", "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", @@ -5250,12 +5530,14 @@ } }, "mem": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/mem/-/mem-1.1.0.tgz", - "integrity": "sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y=", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz", + "integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==", "dev": true, "requires": { - "mimic-fn": "^1.0.0" + "map-age-cleaner": "^0.1.1", + "mimic-fn": "^2.0.0", + "p-is-promise": "^2.0.0" } }, "memory-fs": { @@ -5268,12 +5550,6 @@ "readable-stream": "^2.0.1" } }, - "merge": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/merge/-/merge-1.2.1.tgz", - "integrity": "sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==", - "dev": true - }, "merge-stream": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz", @@ -5284,24 +5560,32 @@ } }, "micromatch": { - "version": "2.3.11", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", - "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", - "dev": true, - "requires": { - "arr-diff": "^2.0.0", - "array-unique": "^0.2.1", - "braces": "^1.8.2", - "expand-brackets": "^0.1.4", - "extglob": "^0.3.1", - "filename-regex": "^2.0.0", - "is-extglob": "^1.0.0", - "is-glob": "^2.0.1", - "kind-of": "^3.0.2", - "normalize-path": "^2.0.1", - "object.omit": "^2.0.0", - "parse-glob": "^3.0.4", - "regex-cache": "^0.4.2" + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", + "dev": true + } } }, "miller-rabin": { @@ -5328,9 +5612,9 @@ } }, "mimic-fn": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", - "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true }, "minimalistic-assert": { @@ -5569,28 +5853,46 @@ } } }, + "node-modules-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz", + "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=", + "dev": true + }, "node-notifier": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-5.3.0.tgz", - "integrity": "sha512-AhENzCSGZnZJgBARsUjnQ7DnZbzyP+HxlVXuD0xqAnvL8q+OqtSX7lGg9e8nHzwXkMMXNdVeqq4E2M3EUAqX6Q==", + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-5.4.0.tgz", + "integrity": "sha512-SUDEb+o71XR5lXSTyivXd9J7fCloE3SyP4lSgt3lU2oSANiox+SxlNRGPjDKrwU1YN3ix2KN/VGGCg0t01rttQ==", "dev": true, "requires": { "growly": "^1.3.0", + "is-wsl": "^1.1.0", "semver": "^5.5.0", "shellwords": "^0.1.1", "which": "^1.3.0" } }, "normalize-package-data": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", - "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, "requires": { "hosted-git-info": "^2.1.4", - "is-builtin-module": "^1.0.0", + "resolve": "^1.10.0", "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "resolve": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.11.1.tgz", + "integrity": "sha512-vIpgF6wfuJOZI7KKKSP+HmiKggadPQAdsp5HiC1mvqnfp0gF1vdwgBWZIdrVft9pgqoMFQN+R7BSWZiBxx+BBw==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + } } }, "normalize-path": { @@ -5656,9 +5958,9 @@ } }, "object-keys": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.12.tgz", - "integrity": "sha512-FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "dev": true }, "object-visit": { @@ -5688,16 +5990,6 @@ "es-abstract": "^1.5.1" } }, - "object.omit": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", - "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", - "dev": true, - "requires": { - "for-own": "^0.1.4", - "is-extendable": "^0.1.1" - } - }, "object.pick": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", @@ -5761,21 +6053,15 @@ "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=", "dev": true }, - "os-homedir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", - "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", - "dev": true - }, "os-locale": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz", - "integrity": "sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz", + "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==", "dev": true, "requires": { - "execa": "^0.7.0", - "lcid": "^1.0.0", - "mem": "^1.1.0" + "execa": "^1.0.0", + "lcid": "^2.0.0", + "mem": "^4.0.0" } }, "os-shim": { @@ -5784,18 +6070,21 @@ "integrity": "sha1-a2LDeRz3kJ6jXtRuF2WLtBfLORc=", "dev": true }, - "os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", - "dev": true - }, "p-defer": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=", "dev": true }, + "p-each-series": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-1.0.0.tgz", + "integrity": "sha1-kw89Et0fUOdDRFeiLNbwSsatf3E=", + "dev": true, + "requires": { + "p-reduce": "^1.0.0" + } + }, "p-finally": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", @@ -5809,27 +6098,33 @@ "dev": true }, "p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz", + "integrity": "sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==", "dev": true, "requires": { - "p-try": "^1.0.0" + "p-try": "^2.0.0" } }, "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "dev": true, "requires": { - "p-limit": "^1.1.0" + "p-limit": "^2.0.0" } }, - "p-try": { + "p-reduce": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz", + "integrity": "sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=", + "dev": true + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true }, "pako": { @@ -5863,25 +6158,14 @@ "safe-buffer": "^5.1.1" } }, - "parse-glob": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", - "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", - "dev": true, - "requires": { - "glob-base": "^0.3.0", - "is-dotfile": "^1.0.0", - "is-extglob": "^1.0.0", - "is-glob": "^2.0.0" - } - }, "parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", "dev": true, "requires": { - "error-ex": "^1.2.0" + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" } }, "parse-passwd": { @@ -5938,14 +6222,12 @@ "dev": true }, "path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", "dev": true, "requires": { - "graceful-fs": "^4.1.2", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" + "pify": "^3.0.0" } }, "pbkdf2": { @@ -5967,33 +6249,27 @@ "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" }, "pify": { - "version": "2.3.0", - "resolved": "http://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - }, - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", "dev": true }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "pirates": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz", + "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==", "dev": true, "requires": { - "pinkie": "^2.0.0" + "node-modules-regexp": "^1.0.0" } }, "pkg-dir": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", - "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", "dev": true, "requires": { - "find-up": "^2.1.0" + "find-up": "^3.0.0" } }, "pn": { @@ -6039,12 +6315,6 @@ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" }, - "preserve": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", - "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=", - "dev": true - }, "prettier": { "version": "1.14.3", "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.14.3.tgz", @@ -6052,38 +6322,17 @@ "dev": true }, "pretty-format": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-23.6.0.tgz", - "integrity": "sha512-zf9NV1NSlDLDjycnwm6hpFATCGl/K1lt0R/GdkAK2O5LN/rwJoB+Mh93gGJjut4YbmecbfgLWVGSTCr0Ewvvbw==", + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.8.0.tgz", + "integrity": "sha512-P952T7dkrDEplsR+TuY7q3VXDae5Sr7zmQb12JU/NDQa/3CH7/QW0yvqLcGN6jL+zQFKaoJcPc+yJxMTGmosqw==", "dev": true, "requires": { - "ansi-regex": "^3.0.0", - "ansi-styles": "^3.2.0" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - } + "@jest/types": "^24.8.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" } }, - "private": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz", - "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==", - "dev": true - }, "process": { "version": "0.11.10", "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", @@ -6109,13 +6358,13 @@ "dev": true }, "prompts": { - "version": "0.1.14", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-0.1.14.tgz", - "integrity": "sha512-rxkyiE9YH6zAz/rZpywySLKkpaj0NMVyNw1qhsubdbjjSgcayjTShDreZGlFMcGSu5sab3bAKPfFk78PB90+8w==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.1.0.tgz", + "integrity": "sha512-+x5TozgqYdOwWsQFZizE/Tra3fKvAoy037kOyU6cgz84n8f6zxngLOV4O32kTwt9FcLCxAqw0P/c8rOr9y+Gfg==", "dev": true, "requires": { - "kleur": "^2.0.1", - "sisteransi": "^0.1.1" + "kleur": "^3.0.2", + "sisteransi": "^1.0.0" } }, "prr": { @@ -6214,31 +6463,6 @@ "resolved": "https://registry.npmjs.org/quickselect/-/quickselect-1.1.1.tgz", "integrity": "sha512-qN0Gqdw4c4KGPsBOQafj6yj/PA6c/L63f6CaZ/DCF/xF4Esu3jVmKLUDYxghFx8Kb/O7y9tI7x2RjTSXwdK1iQ==" }, - "randomatic": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.0.tgz", - "integrity": "sha512-KnGPVE0lo2WoXxIZ7cPR8YBpiol4gsSuOwDSg410oHh80ZMp5EiypNqL2K4Z77vJn6lB5rap7IkAmcUlalcnBQ==", - "dev": true, - "requires": { - "is-number": "^4.0.0", - "kind-of": "^6.0.0", - "math-random": "^1.0.1" - }, - "dependencies": { - "is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", - "dev": true - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - } - } - }, "randombytes": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", @@ -6291,46 +6515,31 @@ "n3": "^1.0.0-beta.1" } }, + "react-is": { + "version": "16.8.6", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.8.6.tgz", + "integrity": "sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA==", + "dev": true + }, "read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", "dev": true, "requires": { - "load-json-file": "^1.0.0", + "load-json-file": "^4.0.0", "normalize-package-data": "^2.3.2", - "path-type": "^1.0.0" + "path-type": "^3.0.0" } }, "read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz", + "integrity": "sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==", "dev": true, "requires": { - "find-up": "^1.0.0", - "read-pkg": "^1.0.0" - }, - "dependencies": { - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", - "dev": true, - "requires": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", - "dev": true, - "requires": { - "pinkie-promise": "^2.0.0" - } - } + "find-up": "^3.0.0", + "read-pkg": "^3.0.0" } }, "readable-stream": { @@ -6645,9 +6854,9 @@ } }, "realpath-native": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/realpath-native/-/realpath-native-1.0.2.tgz", - "integrity": "sha512-+S3zTvVt9yTntFrBpm7TQmQ3tzpCrnA1a/y+3cUHAc9ZR6aIjG0WNLR+Rj79QpJktY+VeW/TQtFlQ1bzsehI8g==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/realpath-native/-/realpath-native-1.1.0.tgz", + "integrity": "sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==", "dev": true, "requires": { "util.promisify": "^1.0.0" @@ -6667,21 +6876,6 @@ "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==" }, - "regenerator-runtime": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", - "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==", - "dev": true - }, - "regex-cache": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz", - "integrity": "sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==", - "dev": true, - "requires": { - "is-equal-shallow": "^0.1.3" - } - }, "regex-not": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", @@ -6710,15 +6904,6 @@ "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", "dev": true }, - "repeating": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", - "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", - "dev": true, - "requires": { - "is-finite": "^1.0.0" - } - }, "request": { "version": "2.88.0", "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz", @@ -6771,9 +6956,9 @@ "dev": true }, "require-main-filename": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", "dev": true }, "resolve": { @@ -6803,421 +6988,138 @@ "expand-tilde": "^2.0.0", "global-modules": "^1.0.0" }, - "dependencies": { - "global-modules": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", - "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", - "dev": true, - "requires": { - "global-prefix": "^1.0.1", - "is-windows": "^1.0.1", - "resolve-dir": "^1.0.0" - } - } - } - }, - "resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", - "dev": true - }, - "resolve-url": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", - "dev": true - }, - "ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", - "dev": true - }, - "rimraf": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", - "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==", - "dev": true, - "requires": { - "glob": "^7.0.5" - } - }, - "ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", - "dev": true, - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" - } - }, - "robust-orientation": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/robust-orientation/-/robust-orientation-1.1.3.tgz", - "integrity": "sha1-2v9bANO+TmByLw6cAVbvln8cIEk=", - "requires": { - "robust-scale": "^1.0.2", - "robust-subtract": "^1.0.0", - "robust-sum": "^1.0.0", - "two-product": "^1.0.2" - } - }, - "robust-scale": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/robust-scale/-/robust-scale-1.0.2.tgz", - "integrity": "sha1-d1Ey7QlULQKOWLLMecBikLz3jDI=", - "requires": { - "two-product": "^1.0.2", - "two-sum": "^1.0.0" - } - }, - "robust-subtract": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/robust-subtract/-/robust-subtract-1.0.0.tgz", - "integrity": "sha1-4LFk4e2LpOOl3aRaEgODSNvtPpo=" - }, - "robust-sum": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/robust-sum/-/robust-sum-1.0.0.tgz", - "integrity": "sha1-FmRuUlKStNJdgnV6KGlV4Lv6U9k=" - }, - "rsvp": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-3.6.2.tgz", - "integrity": "sha512-OfWGQTb9vnwRjwtA2QwpG2ICclHC3pgXZO5xt8H2EfgDquO0qVdSb5T88L4qJVAEugbS56pAuV4XZM58UX8ulw==", - "dev": true - }, - "run-queue": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", - "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", - "dev": true, - "requires": { - "aproba": "^1.1.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", - "dev": true, - "requires": { - "ret": "~0.1.10" - } - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "sane": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/sane/-/sane-2.5.2.tgz", - "integrity": "sha1-tNwYYcIbQn6SlQej51HiosuKs/o=", - "dev": true, - "requires": { - "anymatch": "^2.0.0", - "capture-exit": "^1.2.0", - "exec-sh": "^0.2.0", - "fb-watchman": "^2.0.0", - "fsevents": "^1.2.3", - "micromatch": "^3.1.4", - "minimist": "^1.1.1", - "walker": "~1.0.5", - "watch": "~0.18.0" - }, - "dependencies": { - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", - "dev": true - }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", - "dev": true - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", - "dev": true, - "requires": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - } - }, - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "dev": true, - "requires": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { + "dependencies": { + "global-modules": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", "dev": true, "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" } - }, + } + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "dev": true + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "dev": true + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true + }, + "rimraf": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", + "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==", + "dev": true, + "requires": { + "glob": "^7.0.5" + } + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "robust-orientation": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/robust-orientation/-/robust-orientation-1.1.3.tgz", + "integrity": "sha1-2v9bANO+TmByLw6cAVbvln8cIEk=", + "requires": { + "robust-scale": "^1.0.2", + "robust-subtract": "^1.0.0", + "robust-sum": "^1.0.0", + "two-product": "^1.0.2" + } + }, + "robust-scale": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/robust-scale/-/robust-scale-1.0.2.tgz", + "integrity": "sha1-d1Ey7QlULQKOWLLMecBikLz3jDI=", + "requires": { + "two-product": "^1.0.2", + "two-sum": "^1.0.0" + } + }, + "robust-subtract": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/robust-subtract/-/robust-subtract-1.0.0.tgz", + "integrity": "sha1-4LFk4e2LpOOl3aRaEgODSNvtPpo=" + }, + "robust-sum": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/robust-sum/-/robust-sum-1.0.0.tgz", + "integrity": "sha1-FmRuUlKStNJdgnV6KGlV4Lv6U9k=" + }, + "rsvp": { + "version": "4.8.5", + "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", + "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==", + "dev": true + }, + "run-queue": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", + "dev": true, + "requires": { + "aproba": "^1.1.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dev": true, + "requires": { + "ret": "~0.1.10" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "sane": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", + "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", + "dev": true, + "requires": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "dependencies": { "minimist": { "version": "1.2.0", "resolved": "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", @@ -7316,7 +7218,7 @@ }, "sha.js": { "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "resolved": "http://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", "dev": true, "requires": { @@ -7363,15 +7265,15 @@ "dev": true }, "sisteransi": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-0.1.1.tgz", - "integrity": "sha512-PmGOd02bM9YO5ifxpw36nrNMBTptEtfRl4qUYl9SndkolplkrZZOW7PGHjrZL53QvMVj9nQ+TKqUnRsw4tJa4g==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.2.tgz", + "integrity": "sha512-ZcYcZcT69nSLAR2oLN2JwNmLkJEKGooFMCdvOkFrToUt/WfcRWqhIg4P4KwY4dmLbuyXIx4o4YmPsvMRJYJd/w==", "dev": true }, "slash": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", - "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", "dev": true }, "snapdragon": { @@ -7548,9 +7450,9 @@ } }, "spdx-correct": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.2.tgz", - "integrity": "sha512-q9hedtzyXHr5S0A1vEPoK/7l8NpfkFYTq6iCY+Pno2ZbdZR6WexZFtqeVGkGxW3TEJMN914Z55EnAGMmenlIQQ==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz", + "integrity": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==", "dev": true, "requires": { "spdx-expression-parse": "^3.0.0", @@ -7574,9 +7476,9 @@ } }, "spdx-license-ids": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.1.tgz", - "integrity": "sha512-TfOfPcYGBB5sDuPn3deByxPhmfegAhpDYKSOXZQN81Oyrrif8ZCodOLzK3AesELnCx03kikhyDwh0pfvvQvF8w==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz", + "integrity": "sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==", "dev": true }, "split-string": { @@ -7620,9 +7522,9 @@ } }, "stack-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.1.tgz", - "integrity": "sha1-1PM6tU6OOHeLDKXP07OvsS22hiA=", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.2.tgz", + "integrity": "sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA==", "dev": true }, "static-extend": { @@ -7754,22 +7656,19 @@ } }, "strip-ansi": { - "version": "3.0.1", - "resolved": "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "dev": true, "requires": { - "ansi-regex": "^2.0.0" + "ansi-regex": "^4.1.0" } }, "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", - "dev": true, - "requires": { - "is-utf8": "^0.2.0" - } + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "dev": true }, "strip-eof": { "version": "1.0.0", @@ -7778,10 +7677,13 @@ "dev": true }, "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } }, "symbol-tree": { "version": "3.2.2", @@ -7824,16 +7726,15 @@ } }, "test-exclude": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-4.2.3.tgz", - "integrity": "sha512-SYbXgY64PT+4GAL2ocI3HwPa4Q4TBKm0cwAVeKOt/Aoc0gSpNRjJX8w0pA1LMKZ3LBmd8pYBqApFNQLII9kavA==", + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-5.2.3.tgz", + "integrity": "sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==", "dev": true, "requires": { - "arrify": "^1.0.1", - "micromatch": "^2.3.11", - "object-assign": "^4.1.0", - "read-pkg-up": "^1.0.1", - "require-main-filename": "^1.0.1" + "glob": "^7.1.3", + "minimatch": "^3.0.4", + "read-pkg-up": "^4.0.0", + "require-main-filename": "^2.0.0" } }, "throat": { @@ -7884,9 +7785,9 @@ "dev": true }, "to-fast-properties": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz", - "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", "dev": true }, "to-object-path": { @@ -7989,7 +7890,7 @@ }, "minimist": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "resolved": "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", "dev": true }, @@ -8657,24 +8558,6 @@ "makeerror": "1.0.x" } }, - "watch": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/watch/-/watch-0.18.0.tgz", - "integrity": "sha1-KAlUdsbffJDJYxOJkMClQj60uYY=", - "dev": true, - "requires": { - "exec-sh": "^0.2.0", - "minimist": "^1.2.0" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "resolved": "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true - } - } - }, "watchpack": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz", @@ -9424,6 +9307,12 @@ "strip-ansi": "^3.0.1" }, "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, "is-fullwidth-code-point": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", @@ -9443,6 +9332,15 @@ "is-fullwidth-code-point": "^1.0.0", "strip-ansi": "^3.0.0" } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } } } }, @@ -9462,9 +9360,9 @@ } }, "write-file-atomic": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.3.0.tgz", - "integrity": "sha512-xuPeK4OdjWqtfi59ylvVL0Yn35SF3zgcAcv7rBPFHVaEapaDr4GdGgm3j7ckTwH9wHL7fGmgfAnb0+THrHb8tA==", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.1.tgz", + "integrity": "sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==", "dev": true, "requires": { "graceful-fs": "^4.1.11", @@ -9497,9 +9395,9 @@ "dev": true }, "y18n": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", - "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", + "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", "dev": true }, "yallist": { @@ -9509,32 +9407,49 @@ "dev": true }, "yargs": { - "version": "11.1.0", - "resolved": "http://registry.npmjs.org/yargs/-/yargs-11.1.0.tgz", - "integrity": "sha512-NwW69J42EsCSanF8kyn5upxvjp5ds+t3+udGBeTbFnERA+lF541DDpMawzo4z6W/QrzNM18D+BPMiOBibnFV5A==", + "version": "12.0.5", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz", + "integrity": "sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==", "dev": true, "requires": { "cliui": "^4.0.0", - "decamelize": "^1.1.1", - "find-up": "^2.1.0", + "decamelize": "^1.2.0", + "find-up": "^3.0.0", "get-caller-file": "^1.0.1", - "os-locale": "^2.0.0", + "os-locale": "^3.0.0", "require-directory": "^2.1.1", "require-main-filename": "^1.0.1", "set-blocking": "^2.0.0", "string-width": "^2.0.0", "which-module": "^2.0.0", - "y18n": "^3.2.1", - "yargs-parser": "^9.0.2" + "y18n": "^3.2.1 || ^4.0.0", + "yargs-parser": "^11.1.1" + }, + "dependencies": { + "require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", + "dev": true + } } }, "yargs-parser": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-9.0.2.tgz", - "integrity": "sha1-nM9qQ0YP5O1Aqbto9I1DuKaMwHc=", + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz", + "integrity": "sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==", "dev": true, "requires": { - "camelcase": "^4.1.0" + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + } } } } diff --git a/package.json b/package.json index 4b4e12a3..9f1e6ca0 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,7 @@ "@types/haversine": "^1.1.4", "@types/jest": "^23.3.14", "@types/rdf-js": "^1.0.1", - "jest": "^23.6.0", + "jest": "^24.8.0", "pre-commit": "^1.2.2", "prettier": "1.14.3", "source-map-support": "^0.5.11", From 6632294b240f08f41071e32531d2081b003dd767 Mon Sep 17 00:00:00 2001 From: Harm Delva Date: Tue, 23 Jul 2019 15:54:50 +0200 Subject: [PATCH 33/85] Remove console.timeLog --- src/analytics/isochrones/demo.html | 34 +++++++++++++++++++----- src/analytics/isochrones/img/circle.png | Bin 0 -> 1547 bytes src/analytics/isochrones/main.ts | 29 +++++++++----------- src/analytics/isochrones/visualize.ts | 2 +- 4 files changed, 41 insertions(+), 24 deletions(-) create mode 100644 src/analytics/isochrones/img/circle.png diff --git a/src/analytics/isochrones/demo.html b/src/analytics/isochrones/demo.html index a9fc5871..a810f72c 100644 --- a/src/analytics/isochrones/demo.html +++ b/src/analytics/isochrones/demo.html @@ -3,8 +3,8 @@ Isochrone demo - - + +